From 830910f6bcdc4b3270594bfb2503358687b84e0c Mon Sep 17 00:00:00 2001 From: Clayton Carney Date: Sun, 7 Aug 2022 09:47:02 -0600 Subject: [PATCH] Expand Mode --- bundle.js | 323 +++++++++++++++++++--------- help/about.html | 2 +- help/bookmark.html | 13 ++ icons.svg | 3 + js/Controller/BookmarkController.js | 17 +- js/Model/BookmarkModel.js | 153 ++++++++----- js/View/BookmarkListView.js | 112 ++++++++-- js/View/ReadView.js | 6 +- js/View/SearchResultView.js | 38 ++-- js/data/strongDb.js | 2 +- json/strong.json | 2 +- sw.js | 6 +- 12 files changed, 466 insertions(+), 211 deletions(-) diff --git a/bundle.js b/bundle.js index e312b84..9f3e5ef 100644 --- a/bundle.js +++ b/bundle.js @@ -286,7 +286,7 @@ }; const strongUrl = './json/strong.json'; - const strongVersion = 6; + const strongVersion = 7; let strongCitations = {}; let strongDb = null; @@ -804,11 +804,11 @@ { type: 'btn', icon: 'bookmark', label: 'Bookmark' }, { type: 'btn', icon: 'search', label: 'Search' }, { type: 'btn', icon: 'strong', label: 'Strong' }, - { type: 'btn', icon: 'strong-mode', label: 'Strong Mode' }, - { type: 'btn', icon: 'name-mode', label: 'Name Mode' }, - { type: 'btn', icon: 'column-mode', label: 'Column Mode' }, { type: 'btn', icon: 'setting', label: 'Setting' }, { type: 'btn', icon: 'help', label: 'Help' }, + { type: 'btn', icon: 'column-mode', label: 'Column Mode' }, + { type: 'btn', icon: 'name-mode', label: 'Name Mode' }, + { type: 'btn', icon: 'strong-mode', label: 'Strong Mode' }, { type: 'btn', icon: 'v-menu', label: 'Toolbar Menu' } ]; @@ -2242,18 +2242,18 @@ this.initialize(); } - activeFolderChange(activeFolderName) { + async activeFolderChange(activeFolderName) { this.activeFolderName = activeFolderName; this.updateActiveFolderName(); - this.updateActiveFolder(); + await this.updateActiveFolder(); } - add(verseIdx) { + async add(verseIdx) { let bookmarks = this.activeFolder.bookmarks; if (bookmarks.indexOf(verseIdx) === -1) { this.activeFolder.bookmarks = [verseIdx, ...bookmarks]; this.updateFolders(); - this.updateActiveFolder(); + await this.updateActiveFolder(); } } @@ -2274,33 +2274,43 @@ return [this.createFolder('Default')]; } - delete(verseIdx) { + async delete(verseIdx) { let bookmarks = this.activeFolder.bookmarks; let index = bookmarks.indexOf(verseIdx); if (index !== -1) { bookmarks.splice(index, 1); this.updateFolders(); - this.updateActiveFolder(); + await this.updateActiveFolder(); } } - down(verseIdx) { + async down(verseIdx) { let bookmarks = this.activeFolder.bookmarks; let index = bookmarks.indexOf(verseIdx); if (index !== bookmarks.length - 1 && index !== -1) { this.reorderBookmarks(index, index + 1); this.updateFolders(); - this.updateActiveFolder(); + await this.updateActiveFolder(); } } - folderAdd(folderName) { + expandModeChange(expandMode) { + this.expandMode = expandMode; + this.saveExpandMode(); + queue.publish('bookmark.expand-mode.update', this.expandMode); + } + + expandModeToogle() { + this.expandModeChange(!this.expandMode); + } + + async folderAdd(folderName) { let newFolder = this.getFolder(folderName); if (!newFolder) { newFolder = this.createFolder(folderName); this.folders.push(newFolder); this.updateFolders(); - this.activeFolderChange(folderName); + await this.activeFolderChange(folderName); this.updateFolderList(); queue.publish('bookmark.folder.added', null); } else { @@ -2308,15 +2318,15 @@ } } - folderDelete(folderName) { + async folderDelete(folderName) { let idx = this.getFolderIdx(folderName); this.folders.splice(idx, 1); if (this.folders.length === 0) { - this.folderAdd('Default'); + await this.folderAdd('Default'); } this.updateFolders(); let firstFolderName = this.folders[firstEntry].name; - this.activeFolderChange(firstFolderName); + await this.activeFolderChange(firstFolderName); this.updateFolderList(); } @@ -2352,7 +2362,7 @@ }); } - folderRename(namePkg) { + async folderRename(namePkg) { if (namePkg.old === namePkg.new) { queue.publish('bookmark.folder.rename.error', 'Duplicate Folder Name'); } else { @@ -2361,7 +2371,7 @@ this.updateFolders(); this.updateFolderList(); if (this.activeFolderName === namePkg.old) { - this.activeFolderChange(namePkg.new); + await this.activeFolderChange(namePkg.new); } queue.publish('bookmark.folder.renamed', null); } @@ -2462,7 +2472,7 @@ this.subscribe(); } - move(movePkg) { + async move(movePkg) { let toFolder = this.getFolder(movePkg.to); toFolder.bookmarks.push(movePkg.verseIdx); @@ -2471,7 +2481,7 @@ if (index !== -1) { bookmarks.splice(index, 1); this.updateFolders(); - this.updateActiveFolder(this.activeFolderName); + await this.updateActiveFolder(this.activeFolderName); } } @@ -2501,14 +2511,15 @@ ); } - restore() { + async restore() { this.restoreTask(); this.restoreFolders(); - this.restoreActiveFolderName(); - this.restoreMode(); + await this.restoreActiveFolderName(); + this.restoreExpandMode(); + this.restoreStrongMode(); } - restoreActiveFolderName() { + async restoreActiveFolderName() { let defaultFolderName = 'Default'; let activeFolderName = localStorage.getItem(`${appPrefix}-activeFolderName`); @@ -2524,7 +2535,25 @@ activeFolderName = defaultFolderName; } } - this.activeFolderChange(activeFolderName); + await this.activeFolderChange(activeFolderName); + } + + restoreExpandMode() { + let defaultMode = false; + let expandMode = localStorage.getItem(`${appPrefix}-bookmarkExpandMode`); + if (!expandMode) { + expandMode = defaultMode; + } else { + try { + expandMode = JSON.parse(expandMode); + } catch (error) { + expandMode = defaultMode; + } + if (typeof expandMode !== 'boolean') { + expandMode = defaultMode; + } + } + this.expandModeChange(expandMode); } restoreFolders() { @@ -2547,7 +2576,7 @@ this.updateFolderList(); } - restoreMode() { + restoreStrongMode() { let defaultMode = false; let strongMode = localStorage.getItem(`${appPrefix}-bookmarkStrongMode`); if (!strongMode) { @@ -2597,6 +2626,11 @@ JSON.stringify(this.bookmarkTask)); } + saveExpandMode() { + localStorage.setItem(`${appPrefix}-bookmarkExpandMode`, + JSON.stringify(this.expandMode)); + } + saveFolders() { localStorage.setItem(`${appPrefix}-folders`, JSON.stringify(this.folders)); } @@ -2606,20 +2640,20 @@ JSON.stringify(this.strongMode)); } - sort(sorter) { + async sort(sorter) { let bookmarks = this.activeFolder.bookmarks; if (bookmarks.length !== 0) { bookmarks.sort(sorter); this.updateFolders(); - this.updateActiveFolder(this.activeFolderName); + await this.updateActiveFolder(this.activeFolderName); } } - sortInvert() { + async sortInvert() { let bookmarks = this.activeFolder.bookmarks; bookmarks.reverse(); this.updateFolders(); - this.updateActiveFolder(this.activeFolderName); + await this.updateActiveFolder(this.activeFolderName); } strongModeChange(strongMode) { @@ -2633,53 +2667,56 @@ } subscribe() { - queue.subscribe('bookmark.active-folder.change', (folderName) => { - this.activeFolderChange(folderName); + queue.subscribe('bookmark.active-folder.change', async (folderName) => { + await this.activeFolderChange(folderName); }); - queue.subscribe('bookmark.add', (verseIdx) => { - this.add(verseIdx); + queue.subscribe('bookmark.add', async (verseIdx) => { + await this.add(verseIdx); }); queue.subscribe('bookmark.copy', (copyPkg) => { this.copy(copyPkg); }); - queue.subscribe('bookmark.delete', (verseIdx) => { - this.delete(verseIdx); + queue.subscribe('bookmark.delete', async (verseIdx) => { + await this.delete(verseIdx); + }); + queue.subscribe('bookmark.down', async (verseIdx) => { + await this.down(verseIdx); }); - queue.subscribe('bookmark.down', (verseIdx) => { - this.down(verseIdx); + queue.subscribe('bookmark.expand-mode.toggle', () => { + this.expandModeToogle(); }); - queue.subscribe('bookmark.folder.add', (folderName) => { - this.folderAdd(folderName); + queue.subscribe('bookmark.folder.add', async (folderName) => { + await this.folderAdd(folderName); }); - queue.subscribe('bookmark.folder.delete', (folderName) => { - this.folderDelete(folderName); + queue.subscribe('bookmark.folder.delete', async (folderName) => { + await this.folderDelete(folderName); }); queue.subscribe('bookmark.folder.down', (folderName) => { this.folderDown(folderName); }); - queue.subscribe('bookmark.pkg.import', (pkgStr) => { - this.folderImport(pkgStr); - }); - queue.subscribe('bookmark.folder.rename', (namePkg) => { - this.folderRename(namePkg); + queue.subscribe('bookmark.folder.rename', async (namePkg) => { + await this.folderRename(namePkg); }); queue.subscribe('bookmark.folder.up', (folderName) => { this.folderUp(folderName); }); - queue.subscribe('bookmark.move', (movePkg) => { - this.move(movePkg); + queue.subscribe('bookmark.move', async (movePkg) => { + await this.move(movePkg); }); queue.subscribe('bookmark.move-copy.change', async (verseIdx) => { await this.moveCopyChange(verseIdx); }); - queue.subscribe('bookmark.restore', () => { - this.restore(); + queue.subscribe('bookmark.pkg.import', (pkgStr) => { + this.folderImport(pkgStr); + }); + queue.subscribe('bookmark.restore', async () => { + await this.restore(); }); - queue.subscribe('bookmark.sort-ascend', () => { - this.sort(numSortAscend); + queue.subscribe('bookmark.sort-ascend', async () => { + await this.sort(numSortAscend); }); - queue.subscribe('bookmark.sort-invert', () => { - this.sortInvert(); + queue.subscribe('bookmark.sort-invert', async () => { + await this.sortInvert(); }); queue.subscribe('bookmark.strong-mode.toggle', () => { this.strongModeToogle(); @@ -2687,8 +2724,8 @@ queue.subscribe('bookmark.task.change', (bookmarkTask) => { this.taskChange(bookmarkTask); }); - queue.subscribe('bookmark.up', (verseIdx) => { - this.up(verseIdx); + queue.subscribe('bookmark.up', async (verseIdx) => { + await this.up(verseIdx); }); queue.subscribe('bookmark-move-copy.list.change', (verseIdx) => { @@ -2702,18 +2739,20 @@ queue.publish('bookmark.task.update', this.bookmarkTask); } - up(verseIdx) { + async up(verseIdx) { let bookmarks = this.activeFolder.bookmarks; let index = bookmarks.indexOf(verseIdx); if (index !== 0 && index !== -1) { this.reorderBookmarks(index, index - 1); this.updateFolders(); - this.updateActiveFolder(); + await this.updateActiveFolder(); } } - updateActiveFolder() { + async updateActiveFolder() { this.activeFolder = this.getFolder(this.activeFolderName); + this.activeFolder.verseObjs = await tomeDb.verses.bulkGet( + this.activeFolder.bookmarks); queue.publish('bookmark.active-folder.update', this.activeFolder); } @@ -2759,7 +2798,8 @@ { type: 'btn', icon: 'sort-ascend', label: 'Sort Ascending' }, { type: 'btn', icon: 'sort-invert', label: 'Sort Invert' }, { type: 'btn', icon: 'bookmark-folder', label: 'Bookmark Folder' }, - { type: 'btn', icon: 'strong-mode', label: 'Strong Mode' } + { type: 'btn', icon: 'expand-mode', label: 'Expand Bookmarks' }, + { type: 'btn', icon: 'strong-mode', label: 'Strong Mode' }, ]; const upperToolSet$k = [ @@ -2845,6 +2885,31 @@ container.appendChild(this.page); } + buildRefSpan(verseObj) { + let refSpan = document.createElement('span'); + refSpan.classList.add('font--bold'); + refSpan.textContent = verseObj.v[verseCitation] + ' '; + return refSpan; + } + + buildVerse(verseObj) { + let btn = document.createElement('button'); + btn.classList.add('btn-result'); + btn.dataset.verseIdx = verseObj.k; + let searchText = document.createElement('span'); + searchText.classList.add('span-result-text'); + let acrostic = templateAcrostic(verseObj); + let ref = this.buildRefSpan(verseObj); + let text = document.createTextNode(verseObj.v[verseText]); + searchText.appendChild(ref); + if (acrostic) { + searchText.appendChild(acrostic); + } + searchText.appendChild(text); + btn.appendChild(searchText); + return btn; + } + delete(verseIdx) { queue.publish('bookmark-list.delete', verseIdx); } @@ -2853,6 +2918,32 @@ queue.publish('bookmark-list.down', verseIdx); } + entryClick(target) { + if (target) { + if (target.classList.contains('btn-entry')) { + let verseIdx = parseInt(target.dataset.verseIdx); + if (this.strongMode) { + queue.publish('bookmark-list.strong-select', verseIdx); + } else { + queue.publish('bookmark-list.select', verseIdx); + } + } else if (target.classList.contains('btn-icon--h-menu')) { + let ref = target.previousSibling; + this.menuClick(ref); + } + } + } + + expandModeUpdate(expandMode) { + this.expandMode = expandMode; + if (this.expandMode) { + this.btnExpandMode.classList.add('btn-icon--active'); + } else { + this.btnExpandMode.classList.remove('btn-icon--active'); + } + this.updateBookmarks(); + } + getElements() { this.btnFolderAdd = this.toolbarUpper.querySelector( '.btn-icon--folder-add'); @@ -2869,6 +2960,8 @@ '.btn-icon--sort-ascend'); this.btnSortInvert = this.toolbarLower.querySelector( '.btn-icon--sort-invert'); + this.btnExpandMode = this.toolbarLower.querySelector( + '.btn-icon--expand-mode'); this.btnStrongMode = this.toolbarLower.querySelector( '.btn-icon--strong-mode'); this.btnBookmarkFolder = this.toolbarLower.querySelector( @@ -2890,18 +2983,10 @@ listClick(event) { event.preventDefault(); let target = event.target.closest('button'); - if (target) { - if (target.classList.contains('btn-entry')) { - let verseIdx = parseInt(target.dataset.verseIdx); - if (this.strongMode) { - queue.publish('bookmark-list.strong-select', verseIdx); - } else { - queue.publish('bookmark-list.select', verseIdx); - } - } else if (target.classList.contains('btn-icon--h-menu')) { - let ref = target.previousSibling; - this.menuClick(ref); - } + if (this.expandMode) { + this.verseClick(target); + } else { + this.entryClick(target); } } @@ -2948,6 +3033,9 @@ queue.subscribe('bookmark.active-folder.update', (activeFolder) => { this.updateActiveFolder(activeFolder); }); + queue.subscribe('bookmark.expand-mode.update', (expandMode) => { + this.expandModeUpdate(expandMode); + }); queue.subscribe('bookmark.strong-mode.update', (strongMode) => { this.strongModeUpdate(strongMode); }); @@ -2963,10 +3051,12 @@ queue.publish('bookmark-list.sort-ascend', null); } else if (target === this.btnSortInvert) { queue.publish('bookmark-list.sort-invert', null); - } else if (target === this.btnStrongMode) { - queue.publish('bookmark-list.strong-mode.click', null); } else if (target === this.btnBookmarkFolder) { queue.publish('bookmark-folder', null); + } else if (target === this.btnExpandMode) { + queue.publish('bookmark-list.expand-mode.click', null); + } else if (target === this.btnStrongMode) { + queue.publish('bookmark-list.strong-mode.click', null); } } } @@ -2993,15 +3083,35 @@ } else { this.empty.classList.add('empty--hide'); let fragment = document.createDocumentFragment(); - for (let verseIdx of this.activeFolder.bookmarks) { - let ref = this.buildEntry(verseIdx); - fragment.appendChild(ref); + if (this.expandMode) { + for (let verseObj of this.activeFolder.verseObjs) { + let ref = this.buildVerse(verseObj); + fragment.appendChild(ref); + } + } else { + for (let verseIdx of this.activeFolder.bookmarks) { + let ref = this.buildEntry(verseIdx); + fragment.appendChild(ref); + } } this.list.appendChild(fragment); } this.scroll.scrollTop = scrollSave; } + verseClick(target) { + if (target) { + if (target.classList.contains('btn-result')) { + let verseIdx = parseInt(target.dataset.verseIdx); + if (this.strongMode) { + queue.publish('bookmark-list.strong-select', verseIdx); + } else { + queue.publish('bookmark-list.select', verseIdx); + } + } + } + } + } const actionSet$1 = [ @@ -4109,6 +4219,10 @@ } } + expandModeToggle() { + queue.publish('bookmark.expand-mode.toggle', null); + } + exportPane() { queue.publish('bookmark.task.change', 'bookmark-export'); } @@ -4215,10 +4329,6 @@ queue.publish('bookmark.up', verseIdx); } - modeToggle() { - queue.publish('bookmark.strong-mode.toggle', null); - } - moveCopyCopy(copyPkg) { queue.publish('bookmark.copy', copyPkg); } @@ -4248,6 +4358,10 @@ this.sidebar = sidebar; } + strongModeToggle() { + queue.publish('bookmark.strong-mode.toggle', null); + } + strongSelect(verseIdx) { this.strongSelectPending = true; queue.publish('strong.verse.change', verseIdx); @@ -4315,6 +4429,9 @@ queue.subscribe('bookmark-list.down', (verseIdx) => { this.listDown(verseIdx); }); + queue.subscribe('bookmark-list.expand-mode.click', () => { + this.expandModeToggle(); + }); queue.subscribe('bookmark-list.move-copy', (verseIdx) => { this.moveCopyPane(verseIdx); }); @@ -4328,7 +4445,7 @@ this.listSortInvert(); }); queue.subscribe('bookmark-list.strong-mode.click', () => { - this.modeToggle(); + this.strongModeToggle(); }); queue.subscribe('bookmark-list.strong-select', (verseIdx) => { this.strongSelect(verseIdx); @@ -5029,24 +5146,6 @@ }); } - addVerse(verseObj) { - let btn = document.createElement('button'); - btn.classList.add('btn-result'); - btn.dataset.verseIdx = verseObj.k; - let searchText = document.createElement('span'); - searchText.classList.add('span-result-text'); - let acrostic = templateAcrostic(verseObj); - let ref = this.buildRefSpan(verseObj); - let text = document.createTextNode(verseObj.v[verseText]); - searchText.appendChild(ref); - if (acrostic) { - searchText.appendChild(acrostic); - } - searchText.appendChild(text); - btn.appendChild(searchText); - return btn; - } - applyFilter() { let tomeBin = this.rig.tomeBin; let bookIdx = this.searchFilter.bookIdx; @@ -5110,6 +5209,24 @@ return refSpan; } + buildVerse(verseObj) { + let btn = document.createElement('button'); + btn.classList.add('btn-result'); + btn.dataset.verseIdx = verseObj.k; + let searchText = document.createElement('span'); + searchText.classList.add('span-result-text'); + let acrostic = templateAcrostic(verseObj); + let ref = this.buildRefSpan(verseObj); + let text = document.createTextNode(verseObj.v[verseText]); + searchText.appendChild(ref); + if (acrostic) { + searchText.appendChild(acrostic); + } + searchText.appendChild(text); + btn.appendChild(searchText); + return btn; + } + changeFont() { if (this.lastFont) { this.list.classList.remove(this.lastFont.fontClass); @@ -5218,7 +5335,7 @@ let fragment = document.createDocumentFragment(); let verseObjs = this.searchVerseObjs.filter(x => verses.includes(x.k)); for (let verseObj of verseObjs) { - let verse = this.addVerse(verseObj); + let verse = this.buildVerse(verseObj); fragment.appendChild(verse); } this.list.appendChild(fragment); diff --git a/help/about.html b/help/about.html index aa6a048..1f468f7 100644 --- a/help/about.html +++ b/help/about.html @@ -5,7 +5,7 @@

KJS

ALL the power belongs to My King! The glory is all His.

"Heaven and earth shall pass away, but my words shall not pass away."

Version

-

2022.04.14

+

2022.08.07

Contact

Questions or comments?

Send email diff --git a/help/bookmark.html b/help/bookmark.html index ba7f4a5..01d2c2b 100644 --- a/help/bookmark.html +++ b/help/bookmark.html @@ -31,6 +31,19 @@

Sorting

+

Expand Mode

+

This toggle button in the lower toolbar sets the Expand Mode:

+
+
Expand Mode
+
+ + Expand Mode + + +
+
+
+

When Expand Mode is on, verse text for each bookmark is displayed

Strong Mode

This toggle button in the lower toolbar sets the Strong Mode:

diff --git a/icons.svg b/icons.svg index 60fe1ae..fbc365e 100644 --- a/icons.svg +++ b/icons.svg @@ -29,6 +29,9 @@ + + + diff --git a/js/Controller/BookmarkController.js b/js/Controller/BookmarkController.js index e89306a..953560c 100644 --- a/js/Controller/BookmarkController.js +++ b/js/Controller/BookmarkController.js @@ -30,6 +30,10 @@ class BookmarkController { } } + expandModeToggle() { + queue.publish('bookmark.expand-mode.toggle', null); + } + exportPane() { queue.publish('bookmark.task.change', 'bookmark-export'); } @@ -136,10 +140,6 @@ class BookmarkController { queue.publish('bookmark.up', verseIdx); } - modeToggle() { - queue.publish('bookmark.strong-mode.toggle', null); - } - moveCopyCopy(copyPkg) { queue.publish('bookmark.copy', copyPkg); } @@ -169,6 +169,10 @@ class BookmarkController { this.sidebar = sidebar; } + strongModeToggle() { + queue.publish('bookmark.strong-mode.toggle', null); + } + strongSelect(verseIdx) { this.strongSelectPending = true; queue.publish('strong.verse.change', verseIdx); @@ -236,6 +240,9 @@ class BookmarkController { queue.subscribe('bookmark-list.down', (verseIdx) => { this.listDown(verseIdx); }); + queue.subscribe('bookmark-list.expand-mode.click', () => { + this.expandModeToggle(); + }); queue.subscribe('bookmark-list.move-copy', (verseIdx) => { this.moveCopyPane(verseIdx); }); @@ -249,7 +256,7 @@ class BookmarkController { this.listSortInvert(); }); queue.subscribe('bookmark-list.strong-mode.click', () => { - this.modeToggle(); + this.strongModeToggle(); }); queue.subscribe('bookmark-list.strong-select', (verseIdx) => { this.strongSelect(verseIdx); diff --git a/js/Model/BookmarkModel.js b/js/Model/BookmarkModel.js index 4b4fd58..fdcac1a 100644 --- a/js/Model/BookmarkModel.js +++ b/js/Model/BookmarkModel.js @@ -24,18 +24,18 @@ class BookmarkModel { this.initialize(); } - activeFolderChange(activeFolderName) { + async activeFolderChange(activeFolderName) { this.activeFolderName = activeFolderName; this.updateActiveFolderName(); - this.updateActiveFolder(); + await this.updateActiveFolder(); } - add(verseIdx) { + async add(verseIdx) { let bookmarks = this.activeFolder.bookmarks; if (bookmarks.indexOf(verseIdx) === -1) { this.activeFolder.bookmarks = [verseIdx, ...bookmarks]; this.updateFolders(); - this.updateActiveFolder(); + await this.updateActiveFolder(); } } @@ -56,33 +56,43 @@ class BookmarkModel { return [this.createFolder('Default')]; } - delete(verseIdx) { + async delete(verseIdx) { let bookmarks = this.activeFolder.bookmarks; let index = bookmarks.indexOf(verseIdx); if (index !== -1) { bookmarks.splice(index, 1); this.updateFolders(); - this.updateActiveFolder(); + await this.updateActiveFolder(); } } - down(verseIdx) { + async down(verseIdx) { let bookmarks = this.activeFolder.bookmarks; let index = bookmarks.indexOf(verseIdx); if (index !== bookmarks.length - 1 && index !== -1) { this.reorderBookmarks(index, index + 1); this.updateFolders(); - this.updateActiveFolder(); + await this.updateActiveFolder(); } } - folderAdd(folderName) { + expandModeChange(expandMode) { + this.expandMode = expandMode; + this.saveExpandMode(); + queue.publish('bookmark.expand-mode.update', this.expandMode); + } + + expandModeToogle() { + this.expandModeChange(!this.expandMode); + } + + async folderAdd(folderName) { let newFolder = this.getFolder(folderName); if (!newFolder) { newFolder = this.createFolder(folderName); this.folders.push(newFolder); this.updateFolders(); - this.activeFolderChange(folderName); + await this.activeFolderChange(folderName); this.updateFolderList(); queue.publish('bookmark.folder.added', null); } else { @@ -90,15 +100,15 @@ class BookmarkModel { } } - folderDelete(folderName) { + async folderDelete(folderName) { let idx = this.getFolderIdx(folderName); this.folders.splice(idx, 1); if (this.folders.length === 0) { - this.folderAdd('Default'); + await this.folderAdd('Default'); } this.updateFolders(); let firstFolderName = this.folders[firstEntry].name; - this.activeFolderChange(firstFolderName); + await this.activeFolderChange(firstFolderName); this.updateFolderList(); } @@ -134,7 +144,7 @@ class BookmarkModel { }); } - folderRename(namePkg) { + async folderRename(namePkg) { if (namePkg.old === namePkg.new) { queue.publish('bookmark.folder.rename.error', 'Duplicate Folder Name'); } else { @@ -143,7 +153,7 @@ class BookmarkModel { this.updateFolders(); this.updateFolderList(); if (this.activeFolderName === namePkg.old) { - this.activeFolderChange(namePkg.new); + await this.activeFolderChange(namePkg.new); } queue.publish('bookmark.folder.renamed', null); } @@ -244,7 +254,7 @@ class BookmarkModel { this.subscribe(); } - move(movePkg) { + async move(movePkg) { let toFolder = this.getFolder(movePkg.to); toFolder.bookmarks.push(movePkg.verseIdx); @@ -253,7 +263,7 @@ class BookmarkModel { if (index !== -1) { bookmarks.splice(index, 1); this.updateFolders(); - this.updateActiveFolder(this.activeFolderName); + await this.updateActiveFolder(this.activeFolderName); } } @@ -283,14 +293,15 @@ class BookmarkModel { ); } - restore() { + async restore() { this.restoreTask(); this.restoreFolders(); - this.restoreActiveFolderName(); - this.restoreMode(); + await this.restoreActiveFolderName(); + this.restoreExpandMode(); + this.restoreStrongMode(); } - restoreActiveFolderName() { + async restoreActiveFolderName() { let defaultFolderName = 'Default'; let activeFolderName = localStorage.getItem(`${appPrefix}-activeFolderName`); @@ -306,7 +317,25 @@ class BookmarkModel { activeFolderName = defaultFolderName; } } - this.activeFolderChange(activeFolderName); + await this.activeFolderChange(activeFolderName); + } + + restoreExpandMode() { + let defaultMode = false; + let expandMode = localStorage.getItem(`${appPrefix}-bookmarkExpandMode`); + if (!expandMode) { + expandMode = defaultMode; + } else { + try { + expandMode = JSON.parse(expandMode); + } catch (error) { + expandMode = defaultMode; + } + if (typeof expandMode !== 'boolean') { + expandMode = defaultMode; + } + } + this.expandModeChange(expandMode); } restoreFolders() { @@ -329,7 +358,7 @@ class BookmarkModel { this.updateFolderList(); } - restoreMode() { + restoreStrongMode() { let defaultMode = false; let strongMode = localStorage.getItem(`${appPrefix}-bookmarkStrongMode`); if (!strongMode) { @@ -379,6 +408,11 @@ class BookmarkModel { JSON.stringify(this.bookmarkTask)); } + saveExpandMode() { + localStorage.setItem(`${appPrefix}-bookmarkExpandMode`, + JSON.stringify(this.expandMode)); + } + saveFolders() { localStorage.setItem(`${appPrefix}-folders`, JSON.stringify(this.folders)); } @@ -388,20 +422,20 @@ class BookmarkModel { JSON.stringify(this.strongMode)); } - sort(sorter) { + async sort(sorter) { let bookmarks = this.activeFolder.bookmarks; if (bookmarks.length !== 0) { bookmarks.sort(sorter); this.updateFolders(); - this.updateActiveFolder(this.activeFolderName); + await this.updateActiveFolder(this.activeFolderName); } } - sortInvert() { + async sortInvert() { let bookmarks = this.activeFolder.bookmarks; bookmarks.reverse(); this.updateFolders(); - this.updateActiveFolder(this.activeFolderName); + await this.updateActiveFolder(this.activeFolderName); } strongModeChange(strongMode) { @@ -415,53 +449,56 @@ class BookmarkModel { } subscribe() { - queue.subscribe('bookmark.active-folder.change', (folderName) => { - this.activeFolderChange(folderName); + queue.subscribe('bookmark.active-folder.change', async (folderName) => { + await this.activeFolderChange(folderName); }); - queue.subscribe('bookmark.add', (verseIdx) => { - this.add(verseIdx); + queue.subscribe('bookmark.add', async (verseIdx) => { + await this.add(verseIdx); }); queue.subscribe('bookmark.copy', (copyPkg) => { this.copy(copyPkg); }); - queue.subscribe('bookmark.delete', (verseIdx) => { - this.delete(verseIdx); + queue.subscribe('bookmark.delete', async (verseIdx) => { + await this.delete(verseIdx); + }); + queue.subscribe('bookmark.down', async (verseIdx) => { + await this.down(verseIdx); }); - queue.subscribe('bookmark.down', (verseIdx) => { - this.down(verseIdx); + queue.subscribe('bookmark.expand-mode.toggle', () => { + this.expandModeToogle(); }); - queue.subscribe('bookmark.folder.add', (folderName) => { - this.folderAdd(folderName); + queue.subscribe('bookmark.folder.add', async (folderName) => { + await this.folderAdd(folderName); }); - queue.subscribe('bookmark.folder.delete', (folderName) => { - this.folderDelete(folderName); + queue.subscribe('bookmark.folder.delete', async (folderName) => { + await this.folderDelete(folderName); }); queue.subscribe('bookmark.folder.down', (folderName) => { this.folderDown(folderName); }); - queue.subscribe('bookmark.pkg.import', (pkgStr) => { - this.folderImport(pkgStr); - }); - queue.subscribe('bookmark.folder.rename', (namePkg) => { - this.folderRename(namePkg); + queue.subscribe('bookmark.folder.rename', async (namePkg) => { + await this.folderRename(namePkg); }); queue.subscribe('bookmark.folder.up', (folderName) => { this.folderUp(folderName); }); - queue.subscribe('bookmark.move', (movePkg) => { - this.move(movePkg); + queue.subscribe('bookmark.move', async (movePkg) => { + await this.move(movePkg); }); queue.subscribe('bookmark.move-copy.change', async (verseIdx) => { await this.moveCopyChange(verseIdx); }); - queue.subscribe('bookmark.restore', () => { - this.restore(); + queue.subscribe('bookmark.pkg.import', (pkgStr) => { + this.folderImport(pkgStr); + }); + queue.subscribe('bookmark.restore', async () => { + await this.restore(); }); - queue.subscribe('bookmark.sort-ascend', () => { - this.sort(numSortAscend); + queue.subscribe('bookmark.sort-ascend', async () => { + await this.sort(numSortAscend); }); - queue.subscribe('bookmark.sort-invert', () => { - this.sortInvert(); + queue.subscribe('bookmark.sort-invert', async () => { + await this.sortInvert(); }); queue.subscribe('bookmark.strong-mode.toggle', () => { this.strongModeToogle(); @@ -469,8 +506,8 @@ class BookmarkModel { queue.subscribe('bookmark.task.change', (bookmarkTask) => { this.taskChange(bookmarkTask); }); - queue.subscribe('bookmark.up', (verseIdx) => { - this.up(verseIdx); + queue.subscribe('bookmark.up', async (verseIdx) => { + await this.up(verseIdx); }); queue.subscribe('bookmark-move-copy.list.change', (verseIdx) => { @@ -484,18 +521,20 @@ class BookmarkModel { queue.publish('bookmark.task.update', this.bookmarkTask); } - up(verseIdx) { + async up(verseIdx) { let bookmarks = this.activeFolder.bookmarks; let index = bookmarks.indexOf(verseIdx); if (index !== 0 && index !== -1) { this.reorderBookmarks(index, index - 1); this.updateFolders(); - this.updateActiveFolder(); + await this.updateActiveFolder(); } } - updateActiveFolder() { + async updateActiveFolder() { this.activeFolder = this.getFolder(this.activeFolderName); + this.activeFolder.verseObjs = await tomeDb.verses.bulkGet( + this.activeFolder.bookmarks); queue.publish('bookmark.active-folder.update', this.activeFolder); } diff --git a/js/View/BookmarkListView.js b/js/View/BookmarkListView.js index 8bb8cf0..1b5ecc7 100644 --- a/js/View/BookmarkListView.js +++ b/js/View/BookmarkListView.js @@ -3,6 +3,7 @@ import queue from '../CommandQueue.js'; import { templateActionMenu, + templateAcrostic, templateBtnIcon, templateElement, templatePage, @@ -11,6 +12,10 @@ import { templateToolbarUpper } from '../template.js'; import { citationByVerseIdx } from '../data/tomeDb.js'; +import { + verseCitation, + verseText +} from '../data/tomeIdx.js'; import { removeAllChildren } from '../util.js'; const actionSet = [ @@ -26,7 +31,8 @@ const lowerToolSet = [ { type: 'btn', icon: 'sort-ascend', label: 'Sort Ascending' }, { type: 'btn', icon: 'sort-invert', label: 'Sort Invert' }, { type: 'btn', icon: 'bookmark-folder', label: 'Bookmark Folder' }, - { type: 'btn', icon: 'strong-mode', label: 'Strong Mode' } + { type: 'btn', icon: 'expand-mode', label: 'Expand Bookmarks' }, + { type: 'btn', icon: 'strong-mode', label: 'Strong Mode' }, ]; const upperToolSet = [ @@ -112,6 +118,31 @@ class BookmarkListView { container.appendChild(this.page); } + buildRefSpan(verseObj) { + let refSpan = document.createElement('span'); + refSpan.classList.add('font--bold'); + refSpan.textContent = verseObj.v[verseCitation] + ' '; + return refSpan; + } + + buildVerse(verseObj) { + let btn = document.createElement('button'); + btn.classList.add('btn-result'); + btn.dataset.verseIdx = verseObj.k; + let searchText = document.createElement('span'); + searchText.classList.add('span-result-text'); + let acrostic = templateAcrostic(verseObj); + let ref = this.buildRefSpan(verseObj); + let text = document.createTextNode(verseObj.v[verseText]); + searchText.appendChild(ref); + if (acrostic) { + searchText.appendChild(acrostic); + } + searchText.appendChild(text); + btn.appendChild(searchText); + return btn; + } + delete(verseIdx) { queue.publish('bookmark-list.delete', verseIdx); } @@ -120,6 +151,32 @@ class BookmarkListView { queue.publish('bookmark-list.down', verseIdx); } + entryClick(target) { + if (target) { + if (target.classList.contains('btn-entry')) { + let verseIdx = parseInt(target.dataset.verseIdx); + if (this.strongMode) { + queue.publish('bookmark-list.strong-select', verseIdx); + } else { + queue.publish('bookmark-list.select', verseIdx); + } + } else if (target.classList.contains('btn-icon--h-menu')) { + let ref = target.previousSibling; + this.menuClick(ref); + } + } + } + + expandModeUpdate(expandMode) { + this.expandMode = expandMode; + if (this.expandMode) { + this.btnExpandMode.classList.add('btn-icon--active'); + } else { + this.btnExpandMode.classList.remove('btn-icon--active'); + } + this.updateBookmarks() + } + getElements() { this.btnFolderAdd = this.toolbarUpper.querySelector( '.btn-icon--folder-add'); @@ -136,6 +193,8 @@ class BookmarkListView { '.btn-icon--sort-ascend'); this.btnSortInvert = this.toolbarLower.querySelector( '.btn-icon--sort-invert'); + this.btnExpandMode = this.toolbarLower.querySelector( + '.btn-icon--expand-mode'); this.btnStrongMode = this.toolbarLower.querySelector( '.btn-icon--strong-mode'); this.btnBookmarkFolder = this.toolbarLower.querySelector( @@ -157,18 +216,10 @@ class BookmarkListView { listClick(event) { event.preventDefault(); let target = event.target.closest('button'); - if (target) { - if (target.classList.contains('btn-entry')) { - let verseIdx = parseInt(target.dataset.verseIdx); - if (this.strongMode) { - queue.publish('bookmark-list.strong-select', verseIdx); - } else { - queue.publish('bookmark-list.select', verseIdx); - } - } else if (target.classList.contains('btn-icon--h-menu')) { - let ref = target.previousSibling; - this.menuClick(ref); - } + if (this.expandMode) { + this.verseClick(target); + } else { + this.entryClick(target); } } @@ -215,6 +266,9 @@ class BookmarkListView { queue.subscribe('bookmark.active-folder.update', (activeFolder) => { this.updateActiveFolder(activeFolder); }); + queue.subscribe('bookmark.expand-mode.update', (expandMode) => { + this.expandModeUpdate(expandMode); + }); queue.subscribe('bookmark.strong-mode.update', (strongMode) => { this.strongModeUpdate(strongMode); }); @@ -230,10 +284,12 @@ class BookmarkListView { queue.publish('bookmark-list.sort-ascend', null); } else if (target === this.btnSortInvert) { queue.publish('bookmark-list.sort-invert', null); - } else if (target === this.btnStrongMode) { - queue.publish('bookmark-list.strong-mode.click', null); } else if (target === this.btnBookmarkFolder) { queue.publish('bookmark-folder', null); + } else if (target === this.btnExpandMode) { + queue.publish('bookmark-list.expand-mode.click', null); + } else if (target === this.btnStrongMode) { + queue.publish('bookmark-list.strong-mode.click', null); } } } @@ -260,15 +316,35 @@ class BookmarkListView { } else { this.empty.classList.add('empty--hide'); let fragment = document.createDocumentFragment(); - for (let verseIdx of this.activeFolder.bookmarks) { - let ref = this.buildEntry(verseIdx); - fragment.appendChild(ref); + if (this.expandMode) { + for (let verseObj of this.activeFolder.verseObjs) { + let ref = this.buildVerse(verseObj); + fragment.appendChild(ref); + } + } else { + for (let verseIdx of this.activeFolder.bookmarks) { + let ref = this.buildEntry(verseIdx); + fragment.appendChild(ref); + } } this.list.appendChild(fragment); } this.scroll.scrollTop = scrollSave; } + verseClick(target) { + if (target) { + if (target.classList.contains('btn-result')) { + let verseIdx = parseInt(target.dataset.verseIdx); + if (this.strongMode) { + queue.publish('bookmark-list.strong-select', verseIdx); + } else { + queue.publish('bookmark-list.select', verseIdx); + } + } + } + } + } export { BookmarkListView }; diff --git a/js/View/ReadView.js b/js/View/ReadView.js index d23adae..a952c00 100644 --- a/js/View/ReadView.js +++ b/js/View/ReadView.js @@ -40,11 +40,11 @@ const lowerToolSet = [ { type: 'btn', icon: 'bookmark', label: 'Bookmark' }, { type: 'btn', icon: 'search', label: 'Search' }, { type: 'btn', icon: 'strong', label: 'Strong' }, - { type: 'btn', icon: 'strong-mode', label: 'Strong Mode' }, - { type: 'btn', icon: 'name-mode', label: 'Name Mode' }, - { type: 'btn', icon: 'column-mode', label: 'Column Mode' }, { type: 'btn', icon: 'setting', label: 'Setting' }, { type: 'btn', icon: 'help', label: 'Help' }, + { type: 'btn', icon: 'column-mode', label: 'Column Mode' }, + { type: 'btn', icon: 'name-mode', label: 'Name Mode' }, + { type: 'btn', icon: 'strong-mode', label: 'Strong Mode' }, { type: 'btn', icon: 'v-menu', label: 'Toolbar Menu' } ]; diff --git a/js/View/SearchResultView.js b/js/View/SearchResultView.js index cf93e7d..37a2c08 100644 --- a/js/View/SearchResultView.js +++ b/js/View/SearchResultView.js @@ -70,24 +70,6 @@ class SearchResultView { }); } - addVerse(verseObj) { - let btn = document.createElement('button'); - btn.classList.add('btn-result'); - btn.dataset.verseIdx = verseObj.k; - let searchText = document.createElement('span'); - searchText.classList.add('span-result-text'); - let acrostic = templateAcrostic(verseObj); - let ref = this.buildRefSpan(verseObj); - let text = document.createTextNode(verseObj.v[verseText]); - searchText.appendChild(ref); - if (acrostic) { - searchText.appendChild(acrostic); - } - searchText.appendChild(text); - btn.appendChild(searchText); - return btn; - } - applyFilter() { let tomeBin = this.rig.tomeBin; let bookIdx = this.searchFilter.bookIdx; @@ -151,6 +133,24 @@ class SearchResultView { return refSpan; } + buildVerse(verseObj) { + let btn = document.createElement('button'); + btn.classList.add('btn-result'); + btn.dataset.verseIdx = verseObj.k; + let searchText = document.createElement('span'); + searchText.classList.add('span-result-text'); + let acrostic = templateAcrostic(verseObj); + let ref = this.buildRefSpan(verseObj); + let text = document.createTextNode(verseObj.v[verseText]); + searchText.appendChild(ref); + if (acrostic) { + searchText.appendChild(acrostic); + } + searchText.appendChild(text); + btn.appendChild(searchText); + return btn; + } + changeFont() { if (this.lastFont) { this.list.classList.remove(this.lastFont.fontClass); @@ -259,7 +259,7 @@ class SearchResultView { let fragment = document.createDocumentFragment(); let verseObjs = this.searchVerseObjs.filter(x => verses.includes(x.k)); for (let verseObj of verseObjs) { - let verse = this.addVerse(verseObj); + let verse = this.buildVerse(verseObj); fragment.appendChild(verse); } this.list.appendChild(fragment); diff --git a/js/data/strongDb.js b/js/data/strongDb.js index d0dc6b0..a880f77 100644 --- a/js/data/strongDb.js +++ b/js/data/strongDb.js @@ -14,7 +14,7 @@ const strongStores = { }; const strongUrl = './json/strong.json'; -const strongVersion = 6; +const strongVersion = 7; export let strongCitations = {}; export let strongDb = null; diff --git a/json/strong.json b/json/strong.json index 68410e2..bdf6a9c 100644 --- a/json/strong.json +++ b/json/strong.json @@ -1 +1 @@ -{"defs":[{"k":"H1","v":["אָב","ʼâb","awb","A primitive word; father in a literal and immediate, or figurative and remote application: - chief, (fore-) father ([-less]), X patrimony, principal. Compare names in “Abi-”"]},{"k":"H2","v":["אַב","ʼab","ab","(Chaldee); corresponding to H1: - father."]},{"k":"H3","v":["אֵב","ʼêb","abe","From the same as H24; a green plant: - greenness, fruit."]},{"k":"H4","v":["אֵב","ʼêb","abe","(Chaldee); corresponding to H3: - fruit."]},{"k":"H5","v":["אֲבַגְתָא","ʼĂbagthâʼ","ab-ag-thaw'","Of foreign origin; Abagtha, a eunuch of Xerxes: - Abagtha."]},{"k":"H6","v":["אָבַד","ʼâbad","aw-bad'","A primitive root; properly to wander away, that is lose oneself; by implication to perish (causatively, destroy): - break, destroy (-uction), + not escape, fail, lose, (cause to, make) perish, spend, X and surely, take, be undone, X utterly, be void of, have no way to flee."]},{"k":"H7","v":["אֲבַד","ʼăbad","ab-ad'","(Chaldee); corresponding to H6: - destroy, perish."]},{"k":"H8","v":["אֹבֵד","ʼôbêd","o-bade'","Active participle of H6; (concretely) wretched or (abstractly) destruction: - perish."]},{"k":"H9","v":["אֲבֵדָה","ʼăbêdâh","ab-ay-daw'","From H6; concretely something lost; abstractly destruction, that is Hades: - lost. Compare H10."]},{"k":"H10","v":["אֲבַדֹּה","ʼăbaddôh","ab-ad-do'","The same as H9, miswritten for H11; a perishing: - destruction."]},{"k":"H11","v":["אֲבַדּוֹן","ʼăbaddôwn","ab-ad-done'","Intensively from H6; abstractly a perishing; concretely Hades: - destruction."]},{"k":"H12","v":["אַבְדָן","ʼabdân","ab-dawn'","From H6; a perishing: - destruction."]},{"k":"H13","v":["אׇבְדַן","ʼobdan","ob-dawn'","From H6; a perishing: - destruction."]},{"k":"H14","v":["אָבָה","ʼâbâh","aw-baw'","A primitive root; to breathe after, that is (figuratively) to be acquiescent: - consent, rest content, will, be willing."]},{"k":"H15","v":["אָבֶה","ʼâbeh","aw-beh'","From H14; longing: - desire."]},{"k":"H16","v":["אֵבֶה","ʼêbeh","ay-beh'","From H14 (in the sense of bending towards); the papyrus: - swift."]},{"k":"H17","v":["אֲבוֹי","ʼăbôwy","ab-o'ee","From H14 (in the sense of desiring); want: - sorrow."]},{"k":"H18","v":["אֵבוּס","ʼêbûwç","ay-booce'","From H75; a manger or stall: - crib."]},{"k":"H19","v":["אִבְחָה","ʼibchâh","ib-khaw'","From an unused root (apparently meaning to turn); brandishing of a sword: - point."]},{"k":"H20","v":["אֲבַטִּיחַ","ʼăbaṭṭîyach","ab-at-tee'-akh","Of uncertain derivation; a melon (only plural): - melon."]},{"k":"H21","v":["אֲבִי","ʼĂbîy","ab-ee'","From H1; fatherly; Abi, Hezekiah’s mother: - Abi."]},{"k":"H22","v":["אֲבִיאֵל","ʼĂbîyʼêl","ab-ee-ale'","From H1 and H410; father (that is possessor) of God; Abiel, the name of two Israelites: - Abiel."]},{"k":"H23","v":["אֲבִיאָסָף","ʼĂbîyʼâçâph","ab-ee-aw-sawf'","From H1 and H622; father of gathering (that is gatherer); Abiasaph, an Israelite: - Abiasaph."]},{"k":"H24","v":["אָבִיב","ʼâbîyb","aw-beeb'","From an unused root (meaning to be tender); green, that is a young ear of grain; hence the name of the month Abib or Nisan: - Abib, ear, green ears of corn."]},{"k":"H25","v":["אֲבִי גִבְעוֹן","ʼĂbîy Gibʻôwn","ab-ee' ghib-one'","From H1 and H1391; father (that is founder) of Gibon; Abi-Gibon, perhaps an Israelite: - father of Gibeon."]},{"k":"H26","v":["אֲבִיגַיִל","ʼĂbîygayil","ab-ee-gah'-yil","From H1 and H1524; father (that is source) of joy; Abigail or Abigal, the name of two Israelitesses: - Abigal."]},{"k":"H27","v":["אֲבִידָן","ʼĂbîydân","ab-ee-dawn'","From H1 and H1777; father of judgment (that is judge); Abidan, an Israelite: - Abidan."]},{"k":"H28","v":["אֲבִידָע","ʼĂbîydâʻ","ab-ee-daw'","From H1 and H3045; father of knowledge (that is knowing); Abida, a son of Abraham by Keturah: - Abida, Abidah."]},{"k":"H29","v":["אֲבִיָּה","ʼĂbîyâh","ab-ee-yaw'","From H1 and H3050; father (that is worshipper) of Jah; Abijah, the name of several Israelite men and two Israelitesses: - Abiah, Abijah."]},{"k":"H30","v":["אֲבִיהוּא","ʼĂbîyhûwʼ","ab-ee-hoo'","From H1 and H1931; father (that is worshipper) of Him (that is God); Abihu, a son of Aaron: - Abihu."]},{"k":"H31","v":["אֲבִיהוּד","ʼĂbîyhûwd","ab-ee-hood'","From H1 and H1935; father (that is, possessor) of renown; Abihud, the name of two Israelites: - Abihud."]},{"k":"H32","v":["אֲבִיהַיִל","ʼĂbîyhayil","ab-ee-hah'-yil","(More correct in its second form); from H1 and H2428; father (that is, possessor) of might; Abihail or Abichail, the name of three Israelites and two Israelitesses: - Abihail."]},{"k":"H33","v":["אֲבִי הָעֶזְרִי","ʼĂbîy hâ-ʻEzrîy","ab-ee'-haw-ez-ree'","From H44 with the article inserted; father of the Ezrite; and Abiezrite or descendant of Abiezer: - Abiezrite."]},{"k":"H34","v":["אֶבְיוֹן","ʼebyôwn","eb-yone'","From H14, in the sense of want (especially in feeling); destitute: - beggar, needy, poor (man)."]},{"k":"H35","v":["אֲבִיּוֹנָה","ʼăbîyôwnâh","ab-ee-yo-naw'","From H14; provocative of desire; the caper berry (from its stimulative taste): - desire."]},{"k":"H36","v":["אֲבִיטוּב","ʼĂbîyṭûwb","ab-ee-toob'","From H1 and H2898; father of goodness (that is, good); Abitub, an Israelite: - Abitub."]},{"k":"H37","v":["אֲבִיטָל","ʼĂbîyṭâl","ab-ee-tal'","From H1 and H2919; father of dew (that is, fresh); Abital, a wife of King David: - Abital."]},{"k":"H38","v":["אֲבִיָּם","ʼĂbîyâm","ab-ee-yawm'","From H1 and H3220; father of (the) sea (that is, seaman); Abijam (or Abijah), a king of Judah: - Abijam."]},{"k":"H39","v":["אֲבִימָאֵל","ʼĂbîymâʼêl","ab-ee-maw-ale'","From H1 and an elsewhere unused (probably foreign) word; father of Mael (apparently some Arab tribe); Abimael, a son of Joktan: - Abimael."]},{"k":"H40","v":["אֲבִימֶלֶךְ","ʼĂbîymelek","ab-ee-mel'-ek","From H1 and H4428; father of (the) king; Abimelek, the name of two Philistine kings and of two Israelites: - Abimelech."]},{"k":"H41","v":["אֲבִינָדָב","ʼĂbîynâdâb","ab-ee-naw-dawb'","From H1 and H5068; father of generosity (that is, liberal); Abinadab, the name of four Israelites: - Abinadab."]},{"k":"H42","v":["אֲבִינֹעַם","ʼĂbîynôʻam","ab-ee-no'-am","From H1 and H5278; father of pleasantness (that is, gracious); Abinoam, an Israelite: - Abinoam."]},{"k":"H43","v":["אֶבְיָסָף","ʼEbyâçâph","eb-yaw-sawf'","Construction from H23; Ebjasaph, an Israelite: - Ebiasaph."]},{"k":"H44","v":["אֲבִיעֶזֶר","ʼĂbîyʻezer","ab-ee-ay'-zer","From H1 and H5829; father of help (that is, helpful); Abiezer, the name of two Israelites: - Abiezer."]},{"k":"H45","v":["אֲבִי־עַלְבוֹן","ʼĂbîy-ʻalbôwn","ab-ee-al-bone'","From H1 and an unused root of uncertain derivation; probably father of strength (that is, valiant); Abialbon, an Israelite: - Abialbon."]},{"k":"H46","v":["אָבִיר","ʼâbîyr","aw-beer'","From H82; mighty (spoken of God): - mighty (one)."]},{"k":"H47","v":["אַבִּיר","ʼabbîyr","ab-beer'","For H46: - angel, bull, chiefest, mighty (one), stout [-hearted], strong (one), valiant."]},{"k":"H48","v":["אֲבִירָם","ʼĂbîyrâm","ab-ee-rawm'","From H1 and H7311; father of height (that is, lofty); Abiram, the name of two Israelites: - Abiram."]},{"k":"H49","v":["אֲבִישַׁג","ʼĂbîyshag","ab-ee-shag'","From H1 and H7686; father of error (that is, blundering); Abishag, a concubine of David: - Abishag."]},{"k":"H50","v":["אֲבִישׁוּעַ","ʼĂbîyshûwaʻ","ab-ee-shoo'-ah","From H1 and H7171; father of plenty (that is, prosperous); Abishua, the name of two Israelites: - Abishua."]},{"k":"H51","v":["אֲבִישׁוּר","ʼĂbîyshûwr","ab-ee-shoor'","From H1 and H7791; father of (the) wall (that is, perhaps mason), Abishur, an Israelites: - Abishur."]},{"k":"H52","v":["אֲבִישַׁי","ʼĂbîyshay","ab-ee-shah'ee","From H1 and H7862; father of a gift (that is, probably generous); Abishai, an Israelite: - Abishai."]},{"k":"H53","v":["אֲבִישָׁלוֹם","ʼĂbîyshâlôwm","ab-ee-shaw-lome'","From H1 and H7965; father of peace (that is, friendly); Abshalom, a son of David; also (the fuller form) a later Israelite: - Abishalom, Absalom."]},{"k":"H54","v":["אֶבְיָתָר","ʼEbyâthâr","ab-yaw-thawr'","Contracted from H1 and H3498; father of abundance (that is, liberal); Ebjathar, an Israelite: - Abiathar."]},{"k":"H55","v":["אָבַךְ","ʼâbak","aw-bak'","A primitive root; probably to coil upward: - mount up."]},{"k":"H56","v":["אָבַל","ʼâbal","aw-bal'","A primitive root; to bewail: - lament, mourn."]},{"k":"H57","v":["אָבֵל","ʼâbêl","aw-bale'","From H56; lamenting: - mourn (er, -ing)."]},{"k":"H58","v":["אָבֵל","ʼâbêl","aw-bale'","From an unused root (meaning to be grassy); a meadow: - plain. Compare also the proper names beginning with Abel-."]},{"k":"H59","v":["אָבֵל","ʼÂbêl","aw-bale'","From H58; a meadow; Abel, the name of two places in Palestine: - Abel."]},{"k":"H60","v":["אֵבֶל","ʼêbel","ay'-bel","From H56; lamentation: - mourning."]},{"k":"H61","v":["אֲבָל","ʼăbâl","ab-awl'","Apparently from H56 through the idea of negation; nay, that is, truly or yet: - but, indeed, nevertheless, verily."]},{"k":"H62","v":["אָבֵל בֵּית־מֲעַכָה","ʼÂbêl Bêyth-Măʻakâh","aw-bale' bayth ma-akaw'","From H58 and H1004 and H4601; meadow of Beth-Maakah; Abel of Beth-Maakah, a place in Palestine: - Abel-beth-maachah, Abel of Beth-maachah."]},{"k":"H63","v":["אָבֵל הַשִּׁטִּים","ʼÂbêl hash-Shiṭṭîym","aw-bale' hash-shit-teem'","From H58 and the plural of H7848, with the article inserted; meadow of the acacias; Abel hash-Shittim, a place in Palestine: - Abel-shittim."]},{"k":"H64","v":["אָבֵל כְּרָמִים","ʼÂbêl Kᵉrâmîym","aw-bale' ker-aw-meem'","From H58 and the plural of H3754; meadow of vineyards; Abel-Keramim, a place in Palestine: - plain of the vineyards."]},{"k":"H65","v":["אָבֵל מְחוֹלָה","ʼÂbêl Mᵉchôwlâh","aw-bale' mekh-o-law'","From H58 and H4246; meadow of dancing; Abel-Mecholah, a place in Palestine: - Abel-meholah."]},{"k":"H66","v":["אַבֵל מַיִם","ʼAbêl Mayim","aw-bale' mah'-yim","From H58 and H4325; meadow of water; Abel-Majim, a place in Palestine: - Abel-maim."]},{"k":"H67","v":["אָבֵל מִצְרַיִם","ʼÂbêl Mitsrayim","aw-bale' mits-rah'-yim","From H58 and H4714; meadow of Egypt; Abel-Mitsrajim, a place in Palestine: - Abel-mizraim."]},{"k":"H68","v":["אֶבֶן","ʼeben","eh'-ben","From the root of H1129 through the meaning, to build; a stone: - + carbuncle, + mason, + plummet, [chalk-, hail-, bead-, sling-] stone (-ny), (divers) weight (-s)."]},{"k":"H69","v":["אֶבֶן","ʼeben","eh'-ben","(Chaldee); corresponding to H68: - stone."]},{"k":"H70","v":["אֹבֶן","ʼôben","o' ben","From the same as H68; a pair of stones (only dual); a potter’s wheel or a midwife’s stool (consisting alike of two horizontal disks with a support between): - wheel, stool."]},{"k":"H71","v":["אֲבָנָה","ʼĂbânâh","ab-aw-naw'","Perhaps feminine of H68; stony; Abanah, a river near Damascus: - Abana. Compare H549."]},{"k":"H72","v":["אֶבֶן הָעֵזֶר","ʼEben hâ-ʻÊzer","eh'-ben haw-e'-zer","From H68 and H5828 with the article inserted; stone of the help; Eben ha-Ezer, a place in Palestine: - Ebenezer."]},{"k":"H73","v":["אַבְנֵט","ʼabnêṭ","ab-nate'","Of uncertain derivation; a belt: - girdle."]},{"k":"H74","v":["אַבְנֵר","ʼAbnêr","ab-nare'","From H1 and H5216; father of light (that is, enlightening); Abner, an Israelite: - Abner."]},{"k":"H75","v":["אָבַס","ʼâbaç","aw-bas'","A primitive root; to fodder: - fatted, stalled."]},{"k":"H76","v":["אֲבַעְבֻּעָה","ʼăbaʻbuʻâh","ab-ah-boo-aw'","(By reduplication) from an unused root (meaning to belch forth); an inflammatory pustule (as eruption): - blains."]},{"k":"H77","v":["אֶבֶץ","ʼEbets","eh'-bets","From an unused root, probably means to gleam; conspicuous; Ebets, a place in Palestine: - Abez."]},{"k":"H78","v":["אִבְצָן","ʼIbtsân","ib-tsawn'","From the same as H76; splendid; Ibtsan, an Israelite: - Ibzan."]},{"k":"H79","v":["אָבַק","ʼâbaq","aw-bak'","A primitive root; probably to float away (as vapor), but used only as denominative from H80; to bedust, that is, grapple: - wrestle."]},{"k":"H80","v":["אָבָק","ʼâbâq","aw-bawk'","From root of H79; light particles (as volatile): - (small) dust, powder."]},{"k":"H81","v":["אֲבָקָה","ʼăbâqâh","ab-aw-kaw'","Feminine of H80: - powder."]},{"k":"H82","v":["אָבַר","ʼâbar","aw-bar'","A primitive root; to soar: - fly."]},{"k":"H83","v":["אֵבֶר","ʼêber","ay-ber'","From H82; a pinion: - [long-] wing (-ed)."]},{"k":"H84","v":["אֶבְרָה","ʼebrâh","eb-raw'","Feminine of H83: - feather, wing."]},{"k":"H85","v":["אַבְרָהָם","ʼAbrâhâm","ab-raw-hawm'","Contracted from H1 and an unused root (probably meaning to be populous); father of a multitude; Abraham, the later name of Abram: - Abraham."]},{"k":"H86","v":["אַבְרֵךְ","ʼabrêk","ab-rake'","Probably an Egyptian word meaning kneel: - bow the knee."]},{"k":"H87","v":["אַבְרָם","ʼAbrâm","ab-rawm'","Contracted from H48; high father; Abram, the original name of Abraham: - Abram."]},{"k":"H88","v":["אֹבֹת","ʼôbôth","o-both'","Plural of H178; water skins; oboth, a place in the Desert: - Oboth."]},{"k":"H89","v":["אָגֵא","ʼÂgêʼ","aw-gay'","Of uncertain derivation (compare H90); Age, an Israelite: - Agee."]},{"k":"H90","v":["אֲגַג","ʼĂgag","ag-ag'","Of uncertain derivation (compare H89); flame; Agag, a title of Amalekitish kings: - Agag."]},{"k":"H91","v":["אֲגָגִי","ʼĂgâgîy","ag-aw-ghee'","Patrial or patronymic from H90; an Agagite or descendant (subject) of Agag: - Agagite."]},{"k":"H92","v":["אֲגֻדָּה","ʼăguddâh","ag-ood-daw'","Feminine passive participle of an unused root (meaning to bind); a band, bundle, knot, or arch: - bunch, burden, troop."]},{"k":"H93","v":["אֱגוֹז","ʼĕgôwz","eg-oze'","Probably of Persian origin; a nut: - nut."]},{"k":"H94","v":["אָגוּר","ʼÂgûwr","aw-goor'","Passive participle of H103; gathered (that is, received among the sages); Agur, a fanciful name of Solomon: - Agur."]},{"k":"H95","v":["אֲגוֹרָה","ʼăgôwrâh","ag-o-raw'","From the same as H94; properly something gathered, that is, perhaps a grain or berry; used only of a small (silver) coin: - piece [of] silver."]},{"k":"H96","v":["אֶגֶל","ʼegel","eh'-ghel","From an unused root (meaning to flow down or together as drops); a reservoir: - drop."]},{"k":"H97","v":["אֶגְלַיִם","ʼEglayim","eg-lah'-yim","Dual of H96; a double pond; Eglajim, a place in Moab: - Eglaim."]},{"k":"H98","v":["אֲגַם","ʼăgam","ag-am'","From an unused root (meaning to collect as water); a marsh; hence a rush (as growing in swamps); hence a stockade of reeds: - pond, pool, standing [water]."]},{"k":"H99","v":["אָגֵם","ʼâgêm","aw-game'","Probably from the same as H98 (in the sense of stagnant water); figuratively sad: - pond."]},{"k":"H100","v":["אַגְמוֹן","ʼagmôwn","ag-mone'","From the same as H98; a marshy pool (others from a different root, a kettle); by implication a rush (as growing there); collectively a rope of rushes: - bulrush, caldron, hook, rush."]},{"k":"H101","v":["אַגָּן","ʼaggân","ag-gawn'","Probably from H5059; a bowl (as pounded out hollow): - basin, cup, goblet."]},{"k":"H102","v":["אַגָּף","ʼaggâph","ag-gawf'","Probably from H5062 (through the idea of impending); a cover or heap; that is, (only plural) wings of an army, or crowds of troops: - bands."]},{"k":"H103","v":["אָגַר","ʼâgar","aw-gar'","A primitive root; to harvest: - gather."]},{"k":"H104","v":["אִגְּרָא","ʼiggᵉrâʼ","ig-er-aw'","(Chaldee); of Persian origin; an epistle (as carried by a state courier or postman): - letter."]},{"k":"H105","v":["אֲגַרְטָל","ʼăgarṭâl","ag-ar-tawl'","Of uncertain derivation; a basin: - charger."]},{"k":"H106","v":["אֶגְרֹף","ʼegrôph","eg-rofe'","From H1640 (in the sense of grasping); the clenched hand: - fist."]},{"k":"H107","v":["אִגֶּרֶת","ʼiggereth","ig-eh'-reth","Feminine of H104; an epistle: - letter."]},{"k":"H108","v":["אֵד","ʼêd","ade","From the same as H181 (in the sense of enveloping); a fog: - mist, vapor."]},{"k":"H109","v":["אָדַב","ʼâdab","aw-dab'","A primitive root; to languish: - grieve."]},{"k":"H110","v":["אַדְבְּאֵל","ʼAdbᵉʼêl","ad-beh-ale'","Probably from H109 (in the sense of chastisement) and H410; disciplined of God; Adbeel, a son of Ishmael: - Adbeel."]},{"k":"H111","v":["אֲדַד","ʼĂdad","ad-ad'","Probably an orthographical variation for H2301; Adad (or Hadad), an Edomite: - Hadad."]},{"k":"H112","v":["אִדּוֹ","ʼIddôw","id-do","Of uncertain derivation; Iddo, an Israelite: - Iddo."]},{"k":"H113","v":["אָדוֹן","ʼâdôwn","aw-done'","From an unused root (meaning to rule); sovereign, that is, controller (human or divine): - lord, master, owner. Compare also names beginning with “Adoni-”."]},{"k":"H114","v":["אַדּוֹן","ʼAddôwn","ad-done'","Probably intensive for H113; powerful; Addon, apparently an Israelite: - Addon."]},{"k":"H115","v":["אֲדוֹרַיִם","ʼĂdôwrayim","ad-o-rah'-yim","Dual from H142 (in the sense of eminence); double mound; Adorajim, a place in Palestine: - Adoraim."]},{"k":"H116","v":["אֱדַיִן","ʼĕdayin","ed-ah'-yin","(Chaldee); of uncertain derivation; then (of time): - now, that time, then."]},{"k":"H117","v":["אַדִּיר","ʼaddîyr","ad-deer'","From H142; wide or (generally) large; figuratively powerful: - excellent, famous, gallant, glorious, goodly, lordly, mighty (-ier, one), noble, principal, worthy."]},{"k":"H118","v":["אֲדַלְיָא","ʼĂdalyâʼ","ad-al-yaw'","Of Persian derivation; Adalja, a son of Haman: - Adalia."]},{"k":"H119","v":["אָדַם","ʼâdam","aw-dam'","To show blood (in the face), that is, flush or turn rosy: - be (dyed, made) red (ruddy)."]},{"k":"H120","v":["אָדָם","ʼâdâm","aw-dawm'","From H119; ruddy, that is, a human being (an individual or the species, mankind, etc.): - X another, + hypocrite, + common sort, X low, man (mean, of low degree), person."]},{"k":"H121","v":["אָדָם","ʼÂdâm","aw-dawm'","The same as H120; Adam, the name of the first man, also of a place in Palestine: - Adam."]},{"k":"H122","v":["אָדֹם","ʼâdôm","aw-dome'","From H119; rosy: - red, ruddy."]},{"k":"H123","v":["אֱדֹם","ʼĔdôm","ed-ome'","From H122; red (see Gen_25:25); Edom, the elder twin-brother of Jacob; hence the region (Idumaea) occuped by him: - Edom, Edomites, Idumea."]},{"k":"H124","v":["אֹדֶם","ʼôdem","o'-dem","From H119; redness, that is, the ruby, garnet, or some other red gem: - sardius."]},{"k":"H125","v":["אֲדַמְדָּם","ʼădamdâm","ad-am-dawm'","Reduplicated from H119; reddish: - (somewhat) reddish."]},{"k":"H126","v":["אַדְמָה","ʼAdmâh","ad-maw'","Contracted for H127; earthy; Admah, a place near the Dead Sea: - Admah."]},{"k":"H127","v":["אֲדָמָה","ʼădâmâh","ad-aw-maw'","From H119; soil (from its general redness): - country, earth, ground, husband [-man] (-ry), land."]},{"k":"H128","v":["אֲדָמָה","ʼĂdâmâh","ad-aw-maw'","The same as H127; Adamah, a place in Palestine: - Adamah."]},{"k":"H129","v":["אֲדָמִי","ʼĂdâmîy","ad-aw-mee'","From H127; earthy; Adami, a place in Palestine: - Adami."]},{"k":"H130","v":["אֱדֹמִי","ʼĔdômîy","ed-o-mee'","Patronymic from H123; an Edomite, or descendant from (or inhabitant of) Edom: - Edomite. See H726."]},{"k":"H131","v":["אֲדֻמִּים","ʼĂdummîym","ad-oom-meem'","Plural of H121; red spots; Adummim, a pass in Palestine: - Adummim."]},{"k":"H132","v":["אַדְמֹנִי","ʼadmônîy","ad-mo-nee'","From H119; reddish (of the hair or the complexion): - red, ruddy."]},{"k":"H133","v":["אַדְמָתָא","ʼAdmâthâʼ","ad-maw-thaw'","Probably of Persian derivation; Admatha, a Persian nobleman: - Admatha."]},{"k":"H134","v":["אֶדֶן","ʼeden","eh'-den","From the same as H113 (in the sense of strength); a basis (of a building, a column, etc.): - foundation, socket."]},{"k":"H135","v":["אַדָּן","ʼAddân","ad-dawn'","Intensive from the same as H134; firm; Addan, an Israelite: - Addan."]},{"k":"H136","v":["אֲדֹנָי","ʼĂdônây","ad-o-noy'","An emphatic form of H113; the Lord (used as a proper name of God only): - (my) Lord."]},{"k":"H137","v":["אֲדֹנִי־בֶזֶק","ʼĂdônîy-Bezeq","ad-o''-nee-beh'-zek","From H113 and H966; lord of Bezek; Adoni-Bezek, a Canaanitish king: - Adoni-bezek."]},{"k":"H138","v":["אֲדֹנִיָּה","ʼĂdônîyâh","ad-o-nee-yaw'","From H113 and H3050; lord (that is, worshipper) of Jah; Adonijah, the name of three Israelites: - Adonijah."]},{"k":"H139","v":["אֲדֹנִי־צֶדֶק","ʼĂdônîy-Tsedeq","ad-o''-nee-tseh'-dek","From H113 and H6664; lord of justice; Adoni-Tsedek, a Canaanitish king: - Adonizedec."]},{"k":"H140","v":["אֲדֹנִיקָם","ʼĂdônîyqâm","ad-o-nee-kawm'","From H113 and H6965; lord of rising (that is, high); Adonikam, the name of one or two Israelites: - Adonikam"]},{"k":"H141","v":["אֲדֹנִירָם","ʼĂdônîyrâm","ad-o-nee-rawm'","From H113 and H7311; lord of height; Adoniram, an Israelite: - Adoniram."]},{"k":"H142","v":["אָדַר","ʼâdar","aw-dar'","A primitive root; to expand, that is, be great or (figuratively) magnificent: - (become) glorious, honourable."]},{"k":"H143","v":["אֲדָר","ʼĂdâr","ad-awr'","Probably of foreign derivation; perhaps meaning fire; Adar, the H12 th Hebrew month: - Adar."]},{"k":"H144","v":["אֲדָר","ʼĂdâr","ad-awr'","(Chaldee); corresponding to H143: - Adar."]},{"k":"H145","v":["אֶדֶר","ʼeder","eh'-der","From H142; amplitude, that is, (concretely) a mantle; also (figuratively) splendor: - goodly, robe."]},{"k":"H146","v":["אַדָּר","ʼAddâr","ad-dawr'","Intensive from H142; ample; Addar, a place in Palestine; also an Israelite: - Addar."]},{"k":"H147","v":["אִדַּר","ʼiddar","id-dar'","(Chaldee); intensive from a root corresponding to H142; ample, that is, a threshing-floor: - threshingfloor."]},{"k":"H148","v":["אֲדַרְגָּזֵר","ʼădargâzêr","ad-ar''-gaw-zare'","(Chaldee); from the same as H147, and H1505; a chief diviner, or astrologer: - judge."]},{"k":"H149","v":["אַדְרַזְדָּא","ʼadrazdâʼ","ad-raz-daw'","(Chaldee); probably of Persian origin; quickly or carefully: - dilligently."]},{"k":"H150","v":["אֲדַרְכֹּן","ʼădarkôn","ad-ar-kone'","Of Persian origin; a daric or Persian coin: - dram."]},{"k":"H151","v":["אֲדֹרָם","ʼĂdôrâm","ad-o-rawm'","Contracted for H141; Adoram (or Adoniram), an Israelite: - Adoram."]},{"k":"H152","v":["אֲדְרַמֶּלֶךְ","ʼĂdrammelek","ad-ram-meh'-lek","From H142 and H4428; splendor of (the) king; Adrammelek, the name of an Assyrian idol, also of a son of Sennacherib: - Adrammelech."]},{"k":"H153","v":["אֶדְרָע","ʼedrâʻ","ed-raw'","(Chaldee); an orthographical variation for H1872; an arm, that is, (figuratively) power: - force."]},{"k":"H154","v":["אֶדְרֶעִי","ʼedreʻîy","ed-reh'-ee","From the equivalent of H153; mighty; Edrei, the name of two places in Palestine: - Edrei."]},{"k":"H155","v":["אַדֶּרֶת","ʼaddereth","ad-deh'-reth","Feminine of H117; something ample (as a large vine, a wide dress); also the same as H145: - garment, glory, goodly, mantle, robe."]},{"k":"H156","v":["אָדַשׁ","ʼâdash","aw-dash'","A primitive root; to tread out (grain): - thresh."]},{"k":"H157","v":["אָהַב","ʼâhab","aw-hab'","A primitive root; to have affection for (sexually or otherwise): - (be-) love (-d, -ly, -r), like, friend."]},{"k":"H158","v":["אַהַב","ʼahab","ah'-hab","From H157; affection (in a good or a bad sense): - love (-r)."]},{"k":"H159","v":["אֹהַב","ʼôhab","o'-hab","From H156; meaning the same as H158: - love."]},{"k":"H160","v":["אַהֲבָה","ʼahăbâh","a-hab-aw","Feminine of H158 and meaning the same: - love."]},{"k":"H161","v":["אֹהַד","ʼÔhad","o'-had","From an unused root meaning to be united; unity; Ohad, an Israelite: - Ohad."]},{"k":"H162","v":["אֲהָהּ","ʼăhâhh","a-haw'","Apparently a primitive word expressing pain exclamatorily; Oh!: - ah, alas."]},{"k":"H163","v":["אַהֲוָא","ʼAhăvâʼ","a-hav-aw'","Probably of foreign origin; Ahava, a river of Babylonia: - Ahava."]},{"k":"H164","v":["אֵהוּד","ʼÊhûwd","ay-hood'","From the same as H161; united; Ehud, the name of two or three Israelite: - Ehud."]},{"k":"H165","v":["אֱהִי","ʼĕhîy","e-hee'","Apparently an orthographical variation for H346; where. (Used in Hos_13:10, Hos_13:14). “I will be” is often the rendering of the same Hebrew form from H1961: - I will be (Hos_13:10, Hos_13:14) [which is often the rendering of the same Hebrew form from H1961]."]},{"k":"H166","v":["אָהַל","ʼâhal","aw-hal'","A primitive root; to be clear: - shine."]},{"k":"H167","v":["אָהַל","ʼâhal","aw-hal'","A denominative from H168; to tent: - pitch (remove) a tent."]},{"k":"H168","v":["אֹהֶל","ʼôhel","o'-hel","From H166; a tent (as clearly conspicuous from a distance): - covering, (dwelling) (place), home, tabernacle, tent."]},{"k":"H169","v":["אֹהֶל","ʼÔhel","o'-hel","The same as H168; Ohel, an Israelite: - Ohel."]},{"k":"H170","v":["אׇהֳלָה","ʼOhŏlâh","o-hol-aw'","The first form is in form a feminine of H168, but is in fact for the second form; from H168; her tent (that is, idolatrous sanctuary); Oholah, a symbolic name for Samaria: - Aholah."]},{"k":"H171","v":["אׇהֳלִיאָב","ʼOhŏlîyʼâb","o''-hol-e-awb'","From H168 and H1; tent of (his) father; Oholiab, an Israelite: - Aholiab."]},{"k":"H172","v":["אׇהֳלִיבָה","ʼOhŏlîybâh","o''-hol-ee-baw'","(As with H170 the first form is in form a feminine of H168, but is in fact for the second form); from H168; my tent (is) in her; Oholibah, a symbolic name for Judah: - Aholibah."]},{"k":"H173","v":["אׇהֳלִיבָמָה","ʼOhŏlîybâmâh","o''-hol-ee-baw-maw'","From H168 and H1116; tent of (the) height; Oholibamah, a wife of Esau: - Aholibamah."]},{"k":"H174","v":["אֲהָלִים","ʼăhâlîym","a-haw-leem'","(The second form, which is feminine, is used only in the plural); of foreign origin; aloe wood (that is, sticks): - (tree of lign-) aloes."]},{"k":"H175","v":["אַהֲרוֹן","ʼAhărôwn","a-har-one'","Of uncertain derivation; Aharon, the brother of Moses: - Aaron."]},{"k":"H176","v":["אוֹ","ʼôw","o","The first form is presumed to be the “constructive” or genitival form of the second form which is short for H185; desire (and so probably in Pro_31:4); hence (by way of alternative) or, also if: - also, and, either, if, at the least, X nor, or, otherwise, then, whether."]},{"k":"H177","v":["אוּאֵל","ʼÛwʼêl","oo-ale'","From H176 and H410; wish of God; Uel, an Israelite: - Uel."]},{"k":"H178","v":["אוֹב","ʼôwb","obe","From the same as H1 (apparently through the idea of prattling a father’s name); properly a mumble, that is, a water skin (from its hollow sound); hence a necromancer (ventriloquist, as from a jar): - bottle, familiar spirit."]},{"k":"H179","v":["אוֹבִיל","ʼôwbîyl","o-beel'","Probably from H56; mournful; Obil, an Ishmaelite: - Obil."]},{"k":"H180","v":["אוּבָל","ʼûwbâl","oo-bawl'","From H2986 (in the sense of H2988); a stream: - river."]},{"k":"H181","v":["אוּד","ʼûwd","ood","From an unused root meaning to rake together; a poker (for turning or gathering embers): - (fire-) brand."]},{"k":"H182","v":["אוֹדוֹת","ʼôwdôwth","o-doth'","From the same as H181; turnings (that is, occasions); (adverbially) on account of: - (be-) cause, concerning, sake."]},{"k":"H183","v":["אָוָה","ʼâvâh","aw-vaw'","A primitive root; to wish for: - covet, (greatly) desire, be desirous, long, lust (after)."]},{"k":"H184","v":["אָוָה","ʼâvâh","aw-vaw'","A primitive root; to extend or mark out: - point out."]},{"k":"H185","v":["אַוָּה","ʼavvâh","av-vaw'","From H183; longing: - desire, lust after, pleasure."]},{"k":"H186","v":["אוּזַי","ʼÛwzay","oo-zah'-ee","Perhaps by permutation for H5813, strong; Uzai, an Israelite: - Uzai."]},{"k":"H187","v":["אוּזָל","ʼÛwzâl","oo-zawl'","Of uncertain derivation; Uzal, a son of Joktan: - Uzal."]},{"k":"H188","v":["אוֹי","ʼôwy","o'-ee","Probably from H183 (in the sense of crying out after); lamentation; also interjectionally, Oh!: - alas, woe."]},{"k":"H189","v":["אֱוִי","ʼĔvîy","ev-ee'","Probably from H183; desirous; Evi, a Midianitish chief: - Evi."]},{"k":"H190","v":["אוֹיָה","ʼôwyâh","o-yaw'","Feminine of H188: - woe."]},{"k":"H191","v":["אֱוִיל","ʼĕvîyl","ev-eel'","From an unused root (meaning to be perverse); (figuratively) silly: - fool (-ish) (man)."]},{"k":"H192","v":["אֱוִיל מְרֹדַךְ","ʼĔvîyl Mᵉrôdak","ev-eel' mer-o-dak'","Of Chaldee derivation and probably meaning soldier of Merodak; Evil-Merodak, a Babylonian king: - Evil-merodach."]},{"k":"H193","v":["אוּל","ʼûwl","ool","From an unused root meaning to twist, that is, (by implication) be strong; the body (as being rolled together) also powerful: - mighty, strength."]},{"k":"H194","v":["אוּלַי","ʼûwlay","oo-lah'ee","From H176; if not; hence perhaps: - if so be, may be, peradventure, unless."]},{"k":"H195","v":["אוּלַי","ʼÛwlay","oo-lah'ee","Of Persian derivation; the Ulai (or Eulaeus), a river of Persia: - Ulai."]},{"k":"H196","v":["אֱוִלִי","ʼĕvilîy","ev-ee-lee'","From H191; silly, foolish; hence (morally) impious: - foolish."]},{"k":"H197","v":["אוּלָם","ʼûwlâm","oo-lawm'","From H481 (in the sense of tying); a vestibule (as bound to the building): - porch."]},{"k":"H198","v":["אוּלָם","ʼÛwlâm","oo-lawm'","Apparently from H481 (in the sense of dumbness); solitary; Ulam, the name of two Israelites: - Ulam."]},{"k":"H199","v":["אוּלָם","ʼûwlâm","oo-lawm'","Apparently a variation of H194; however or on the contrary: - as for, but, howbeit, in very deed, surely, truly, wherefore."]},{"k":"H200","v":["אִוֶּלֶת","ʼivveleth","iv-veh'-leth","From the same as H191; silliness: - folly, foolishly (-ness)."]},{"k":"H201","v":["אוֹמָר","ʼÔwmâr","o-mawr'","From H559; talkative; Omar, a grandson of Esau: - Omar."]},{"k":"H202","v":["אוֹן","ʼôwn","one","Probably from the same as H205 (in the sense of effort, but successful); ability, power, (figuratively) wealth: - force, goods, might, strength, substance."]},{"k":"H203","v":["אוֹן","ʼÔwn","one","The same as H202; On, an Israelite: - On."]},{"k":"H204","v":["אוֹן","ʼÔwn","one","Of Egyptian derivation; On, a city of Egypt: - On."]},{"k":"H205","v":["אָוֶן","ʼâven","aw-ven'","From an unused root perhaps meaning properly to pant (hence to exert oneself, usually in vain; to come to naught); strictly nothingness; also trouble, vanity, wickedness; specifically an idol: - affliction, evil, false, idol, iniquity, mischief, mourners (-ing), naught, sorrow, unjust, unrighteous, vain, vanity, wicked (-ness.) Compare H369."]},{"k":"H206","v":["אָוֶן","ʼÂven","aw'-ven","The same as H205; idolatry; Aven, the contemptuous synonym of three places, one in Coele Syria, one in Egypt (On), and one in Palestine (Bethel): - Aven. See also H204, H1007."]},{"k":"H207","v":["אוֹנוֹ","ʼÔwnôw","o-no'","From H202; strong; Ono, a place in Palestine: - Ono."]},{"k":"H208","v":["אוֹנָם","ʼÔwnâm","o-nawm'","A variation of H209; strong; Onam, the name of an Edomite and of an Israelite: - Onam."]},{"k":"H209","v":["אוֹנָן","ʼÔwnân","o-nawn'","A variation of H207; strong; Onan, a son of Judah: - Onan."]},{"k":"H210","v":["אוּפָז","ʼÛwphâz","oo-fawz'","Perhaps a corruption of H211; Uphaz, a famous gold region: - Uphaz."]},{"k":"H211","v":["אוֹפִיר","ʼÔwphîyr","o-feer'","Of uncertain derivation; Ophir, the name of a son of Joktan, and of a gold region in the East: - Ophir."]},{"k":"H212","v":["אוֹפָן","ʼôwphân","o-fawn'","From an unused root meaning to revolve; a wheel: - wheel."]},{"k":"H213","v":["אוּץ","ʼûwts","oots","A primitive root; to press; (by implication) to be close, hurry, withdraw: - (make) haste (-n, -y), labor, be narrow."]},{"k":"H214","v":["אוֹצָר","ʼôwtsâr","o-tsaw'","From H686; a depository: - armory, cellar, garner, store(-house), treasure (-house) (-y)."]},{"k":"H215","v":["אוֹר","ʼôwr","ore","A primitive root; to be (causatively make) luminous (literally and metaphorically): - X break of day, glorious, kindle, (be, en-, give, show) light (-en, -ened), set on fire, shine."]},{"k":"H216","v":["אוֹר","ʼôwr","ore","From H215; illumination or (concretely) luminary (in every sense, including lightning, happiness, etc.): - bright, clear, + day, light (-ning), morning, sun."]},{"k":"H217","v":["אוּר","ʼûwr","ore","From H215; flame, hence (in the plural) the East (as being the region of light): - fire, light. See also H224."]},{"k":"H218","v":["אוּר","ʼÛwr","oor","The same as H217; Ur, a place in Chaldaea; also an Israelite: - Ur."]},{"k":"H219","v":["אוֹרָה","ʼôwrâh","o-raw'","Feminine of H216; luminousness, that is, (figuratively) prosperity; also a plant (as being bright): - herb light."]},{"k":"H220","v":["אֲוֵרָה","ʼăvêrâh","av-ay-raw'","By transposition for H723; a stall: - cote."]},{"k":"H221","v":["אוּרִי","ʼÛwrîy","oo-ree'","From H217; fiery; Uri, the name of three Israelites: - Uri."]},{"k":"H222","v":["אוּרִיאֵל","ʼÛwrîyʼêl","oo-ree-ale'","From H217 and H410; flame of God; Uriel, the name of two Israelites: - Uriel."]},{"k":"H223","v":["אוּרִיָּה","ʼÛwrîyâh","oo-ree-yaw'","From H217 and H3050; flame of Jah; Urijah, the name of one Hittite and five Israelites: - Uriah, Urijah."]},{"k":"H224","v":["אוּרִים","ʼÛwrîym","oo-reem'","Plural of H217; lights; Urim, the oracular brilliancy of the figures in the high priest’s breastplate: - Urim."]},{"k":"H225","v":["אוּת","ʼûwth","ooth","A primitive root; properly to come, that is, (impliedly) to assent: - consent."]},{"k":"H226","v":["אוֹת","ʼôwth","oth","Probably from H225 (in the sense of appearing); a signal (literally or figuratively), as a flag, beacon, monument, omen, prodigy, evidence, etc.: - mark, miracle, (en-) sign, token."]},{"k":"H227","v":["אָז","ʼâz","awz","A demonstrative adverb; at that time or place; also as a conjugation, therefore: - beginning, for, from, hitherto, now, of old, once, since, then, at which time, yet."]},{"k":"H228","v":["אֲזָא","ʼăzâʼ","az-zaw'","(Chaldee); to kindle; (by implication) to heat: - heat, hot."]},{"k":"H229","v":["אֶזְבַּי","ʼEzbay","ez-bah'ee","Probably from H231; hyssop like; Ezbai, an Israelite: - Ezbai."]},{"k":"H230","v":["אֲזָד","ʼăzâd","az-zawd'","(Chaldee); of uncertain derivation; firm: - be gone."]},{"k":"H231","v":["אֵזוֹב","ʼêzôwb","ay-zobe'","Probably of foreign derivation; hyssop: - hyssop."]},{"k":"H232","v":["אֵזוֹר","ʼêzôwr","ay-zore'","From H246; something girt; a belt, also a band: - girdle."]},{"k":"H233","v":["אֲזַי","ʼăzay","az-ah'ee","Probably from H227; at that time: - then."]},{"k":"H234","v":["אַזְכָּרָה","ʼazkârâh","az-kaw-raw'","From H2142; a reminder; specifically remembrance offering: - memorial."]},{"k":"H235","v":["אָזַל","ʼâzal","aw-zal'","A primitive root; to go away, hence to disappear: - fail, gad about, go to and fro [but in Eze_27:19 the word is rendered by many “from Uzal,” by others “yarn”], be gone (spent)."]},{"k":"H236","v":["אֲזַל","ʼăzal","az-al'","(Chaldee); the same as H235; to depart: - go (up)."]},{"k":"H237","v":["אֶזֶל","ʼezel","eh'-zel","From H235; departure; ezel, a memorial stone in Palestine: - Ezel."]},{"k":"H238","v":["אָזַן","ʼâzan","aw-zan'","A primitive root; probably to expand; but used only as a denominative from H241; to broaden out the ear (with the hand), that is, (by implication) to listen: - give (perceive by the) ear, hear (-ken). See H239."]},{"k":"H239","v":["אָזַן","ʼâzan","aw-zan'","A primitive root (rather identical with H238 through the idea of scales as if two ears); to weigh, that is, (figuratively) ponder: - give good heed."]},{"k":"H240","v":["אָזֵן","ʼâzên","aw-zane'","From H238; a spade or paddle (as having a broad end): - weapon."]},{"k":"H241","v":["אֹזֶן","ʼôzen","o'-zen","From H238; broadness, that is, (concretely) the ear (from its form in man): - + advertise, audience, + displease, ear, hearing, + show."]},{"k":"H242","v":["אֻזֵּן שֶׁאֱרָה","ʼUzzên Sheʼĕrâh","ooz-zane' sheh-er-aw'","From H238 and H7609; plat of Sheerah (that is, settled by him); Uzzen Sheerah, a place in Palestine: - Uzzen-sherah."]},{"k":"H243","v":["אַזְנוֹת תָּבוֹר","ʼAznôwth Tâbôwr","az-noth' taw-bore'","From H238 and H8396; flats (that is, tops) of Tabor (that is, situated on it); aznoth Tabor, a place in Palestine: - Aznoth-tabor."]},{"k":"H244","v":["אׇזְנִי","ʼOznîy","oz-nee'","From H241; having (quick) ears; Ozni, an Israelite; also an Oznite (collectively), his descendants: - Ozni, Oznites."]},{"k":"H245","v":["אֲזַנְיָה","ʼĂzanyâh","az-an-yaw'","From H238 and H3050; heard by Jah; Azanjah, an Israelite: - Azaniah."]},{"k":"H246","v":["אֲזִקִּים","ʼăziqqîym","az-ik-keem'","A variation for H2131; manacles: - chains."]},{"k":"H247","v":["אָזַר","ʼâzar","aw-zar'","A primitive root; to belt: - bind (compass) about, gird (up, with)."]},{"k":"H248","v":["אֶזְרוֹעַ","ʼezrôwaʻ","ez-ro'-a","A variation for H2220; the arm: - arm."]},{"k":"H249","v":["אֶזְרָח","ʼezrâch","ez-rawkh'","From H2224 (in the sense of springing up); a spontaneous growth, that is, native (tree or persons): - bay tree, (home-) born (in the land), of the (one’s own) country (nation)."]},{"k":"H250","v":["אֶזְרָחִי","ʼEzrâchîy","ez-raw-khee'","Patronymic from H2246; an Ezrachite or descendants of Zerach: - Ezrahite."]},{"k":"H251","v":["אָח","ʼâch","awkh","A primitive word; a brother (used in the widest sense of literal relationship and metaphorical affinity or resemblance (like H1)): - another, brother (-ly), kindred, like, other. Compare also the proper names beginning with “Ah-” or “Ahi-”."]},{"k":"H252","v":["אַח","ʼach","akh","(Chaldee); corresponding to H251: - brother."]},{"k":"H253","v":["אָח","ʼâch","awkh","A variation for H162; Oh! (expressive of grief or surprise): - ah, alas."]},{"k":"H254","v":["אָח","ʼâch","awkh","Of uncertain derivation; a fire pot or chafing dish: - hearth."]},{"k":"H255","v":["אֹחַ","ʼôach","o'-akh","Probably from H253; a howler or lonesome wild animal: - doleful creature."]},{"k":"H256","v":["אַחְאָב","ʼAchʼâb","akh-awb'","The second form used once (by contraction) in Jer_29:22; from H251 and H1; brother (that is, friend) of (his) father; Achab, the name of a king of Israel and of a prophet at Babylon: - Ahab."]},{"k":"H257","v":["אַחְבָן","ʼAchbân","akh-bawn'","From H251 and H995; brother (that is, possessor) of understanding; Achban, an Israelite: - Ahban."]},{"k":"H258","v":["אָחַד","ʼâchad","aw-khad'","Perhaps a primitive root; to unify, that is, (figuratively) collect (one’s thoughts): - go one way or other."]},{"k":"H259","v":["אֶחָד","ʼechâd","ekh-awd'","A numeral from H258; properly united, that is, one; or (as an ordinal) first: - a, alike, alone, altogether, and, any (-thing), apiece, a certain [dai-] ly, each (one), + eleven, every, few, first, + highway, a man, once, one, only, other, some, together."]},{"k":"H260","v":["אָחוּ","ʼâchûw","aw'-khoo","Of uncertain (perhaps Egyptian) derivation; a bulrush or any marshy grass (particularly that along the Nile): - flag, meadow."]},{"k":"H261","v":["אֵחוּד","ʼÊchûwd","ay-khood'","From H258; united; Echud, the name of three Israelites: - Ehud."]},{"k":"H262","v":["אַחְוָה","ʼachvâh","akh-vaw'","From H2331 (in the sense of H2324); an utterance: - declaration."]},{"k":"H263","v":["אַחֲוָה","ʼachăvâh","akh-av-aw'","(Chaldee); corresponding to H262; solution (of riddles): - showing."]},{"k":"H264","v":["אַחֲוָה","ʼachăvâh","akh-av-aw'","From H251; fraternity: - brotherhood."]},{"k":"H265","v":["אֲחוֹחַ","ʼĂchôwach","akh-o'-akh","By reduplication from H251; brotherly; Achoach, an Israelite: - Ahoah."]},{"k":"H266","v":["אֲחוֹחִי","ʼĂchôwchîy","akh-o-khee'","Patronymic from H264; an Achochite or descendants of Achoach: - Ahohite."]},{"k":"H267","v":["אֲחוּמַי","ʼĂchûwmay","akh-oo-mah'-ee","Perhaps from H251 and H4325; brother (that is, neighbour) of water; Achumai, an Israelite: - Ahumai."]},{"k":"H268","v":["אָחוֹר","ʼâchôwr","aw-khore'","From H299; the hinder part; hence (adverbially) behind, backward; also (as facing north) the West: - after (-ward), back (part, -side, -ward), hereafter, (be-) hind (-er part), time to come, without."]},{"k":"H269","v":["אָחוֹת","ʼâchôwth","aw-khoth'","Irregular feminine of H251; a sister (used very widely (like H250), literally and figuratively): - (an-) other, sister, together."]},{"k":"H270","v":["אָחַז","ʼâchaz","aw-khaz'","A primitive root; to seize (often with the accessory idea of holding in possession): -    + be affrighted, bar, (catch, lay, take) hold (back), come upon, fasten, handle, portion, (get, have or take) possess (-ion)."]},{"k":"H271","v":["אָחָז","ʼÂchâz","aw-khawz'","From H270; possessor; Achaz, the name of a Jewish king and of an Israelite: - Ahaz."]},{"k":"H272","v":["אֲחֻזָּה","ʼăchuzzâh","akh-ooz-zaw'","Feminine passive participle of H270; something seized, that is, a possession (especially of land): - possession."]},{"k":"H273","v":["אַחְזַי","ʼAchzay","akh-zah'ee","From H270; seizer; Achzai, an Israelite: - Ahasai."]},{"k":"H274","v":["אֲחַזְיָה","ʼĂchazyâh","akh-az-yaw'","From H270 and H3050; Jah has seized; Achazjah, the name of a Jewish and an Israelitish king: - Ahaziah."]},{"k":"H275","v":["אֲחֻזָּם","ʼĂchuzzâm","akh-ooz-zawm'","From H270; seizure; Achuzzam, an Israelite: - Ahuzam."]},{"k":"H276","v":["אֲחֻזַּת","ʼĂchuzzath","akh-ooz-zath'","A variation of H272; possession; Achuzzath, a Philistine: - Ahuzzath."]},{"k":"H277","v":["אֲחִי","ʼĂchîy","akh-ee'","From H251; brotherly; Achi, the name of two Israelites: - Ahi."]},{"k":"H278","v":["אֵחִי","ʼÊchîy","ay-khee'","Probably the same as H277; Echi, an Israelite: - Ehi."]},{"k":"H279","v":["אֲחִיאָם","ʼĂchîyʼâm","akh-ee-awm'","From H251 and H517; brother of the mother (that is, uncle); Achiam, an Israelite: - Ahiam."]},{"k":"H280","v":["אֲחִידָה","ʼăchîydâh","akh-ee-daw'","(Chaldee); corresponding to H2420, an enigma: - hard sentence."]},{"k":"H281","v":["אֲחִיָּה","ʼĂchîyâh","akh-ee-yaw","From H251 and H3050; brother (that is, worshipper) of Jah; Achijah, the name of nine Israelites: - Ahiah, Ahijah."]},{"k":"H282","v":["אֲחִיהוּד","ʼĂchîyhûwd","akh-ee-hood'","From H251 and H1935; brother (that is, possessor) of renown; Achihud, an Israelite: - Ahihud."]},{"k":"H283","v":["אַחְיוֹ","ʼAchyôw","akh-yo'","Prolonged from H251; brotherly; Achio, the name of three Israelites: - Ahio."]},{"k":"H284","v":["אֲחִיחֻד","ʼĂchîychud","akh-ee-khood'","From H251 and H2330; brother of a riddle (that is, mysterious); Achichud, an Israelite: - Ahihud."]},{"k":"H285","v":["אֲחִיטוּב","ʼĂchîyṭûwb","akh-ee-toob'","From H251 and H2898; brother of goodness; Achitub, the name of several priests: - Ahitub."]},{"k":"H286","v":["אֲחִילוּד","ʼĂchîylûwd","akh-ee-lood'","From H251 and H3205; brother of one born; Achilud, an Israelite: - Ahilud."]},{"k":"H287","v":["אֲחִימוֹת","ʼĂchîymôwth","akh-ee-moth'","From H251 and H4191; brother of death; Achimoth, an Israelite: - Ahimoth."]},{"k":"H288","v":["אֲחִימֶלֶךְ","ʼĂchîymelek","akh-ee-meh'-lek","From H251 and H4428; brother of (the) king; Achimelek, the name of an Israelite and of a Hittite: - Ahimelech."]},{"k":"H289","v":["אֲחִימַן","ʼĂchîyman","akh-ee-man'","From H251 and H4480; brother of a portion (that is, gift); Achiman, the name of an Anakite and of an Israelite: - Ahiman."]},{"k":"H290","v":["אֲחִימַעַץ","ʼĂchîymaʻats","akh-ee-mah'-ats","From H251 and the equivalent of H4619; brother of anger; Achimaats, the name of three Israelites: - Ahimaaz."]},{"k":"H291","v":["אַחְיָן","ʼAchyân","akh-yawn'","From H251; brotherly; Achjan, an Israelite: - Ahian."]},{"k":"H292","v":["אֲחִינָדָב","ʼĂchîynâdâb","akh-ee-naw-dawb'","From H251 and H5068; brother of liberality; Achinadab, an Israelite: - Ahinadab."]},{"k":"H293","v":["אֲחִינֹעַם","ʼĂchîynôʻam","akh-ee-no'-am","From H251 and H5278; brother of pleasantness; Achinoam, the name of two Israelitesses: - Ahinoam."]},{"k":"H294","v":["אֲחִיסָמָךְ","ʼĂchîyçâmâk","akh-ee-saw-mawk'","From H251 and H5564; brother of support; Achisamak, an Israelite: - Ahisamach."]},{"k":"H295","v":["אֲחִיעֶזֶר","ʼĂchîyʻezer","akh-ee-eh'-zer","From H251 and H5828; brother of help; Achiezer, the name of two Israelites: - Ahiezer."]},{"k":"H296","v":["אֲחִיקָם","ʼĂchîyqâm","akh-ee-kawm'","From H251 and H6965; brother of rising (that is, high); Achikam, an Israelite: - Ahikam."]},{"k":"H297","v":["אֲחִירָם","ʼĂchîyrâm","akh-ee-rawm'","From H251 and H7311; brother of height (that is, high); Achiram, an Israelite: - Ahiram."]},{"k":"H298","v":["אֲחִירָמִי","ʼĂchîyrâmîy","akh-ee-raw-mee'","Patronymic from H297; an Achiramite or descendants (collectively) of Achiram: - Ahiramites."]},{"k":"H299","v":["אֲחִירַע","ʼĂchîyraʻ","akh-ee-rah'","From H251 and H7451; brother of wrong; Achira, an Israelite: - Ahira."]},{"k":"H300","v":["אֲחִישַׁחַר","ʼĂchîyshachar","akh-ee-shakh'-ar","From H251 and H7837; brother of (the) dawn; Achishachar, an Israelite: - Ahishar."]},{"k":"H301","v":["אֲחִישָׁר","ʼĂchîyshâr","akh-ee-shawr'","From H251 and H7891; brother of (the) singer; Achishar, an Israelite: - Ahishar."]},{"k":"H302","v":["אֲחִיתֹפֶל","ʼĂchîythôphel","akh-ee-tho'-fel","From H251 and H8602; brother of folly; Achithophel, an Israelite: - Ahithophel."]},{"k":"H303","v":["אַחְלָב","ʼAchlâb","akh-lawb'","From the same root as H2459; fatness (that is, fertile); Achlab, a place in Palestine: - Ahlab."]},{"k":"H304","v":["אַחְלַי","ʼAchlay","akh-lah'ee","The same as H305; wishful; Achlai, the name of an Israelitess and of an Israelite: - Ahlai."]},{"k":"H305","v":["אַחֲלַי","ʼachălay","akh-al-ah'ee","Probably from H253 and a variation of H3863; would that!: - O that, would God."]},{"k":"H306","v":["אַחְלָמָה","ʼachlâmâh","akh-law'-maw","Perhaps from H2492 (and thus dream stone); a gem, probably the amethyst: - amethyst."]},{"k":"H307","v":["אַחְמְתָא","ʼAchmᵉthâʼ","akh-me-thaw'","Of Persian derivation; Achmetha (that is, Ecbatana), the summer capital of Persia: - Achmetha."]},{"k":"H308","v":["אֲחַסְבַּי","ʼĂchaçbay","akh-as-bah'ee","Of uncertain derivation; Achasbai, an Israelite: - Ahasbai."]},{"k":"H309","v":["אָחַר","ʼâchar","aw-khar'","A primitive root; to loiter (that is, be behind); by implication to procrastinate: - continue, defer, delay, hinder, be late (slack), stay (there), tarry (longer)."]},{"k":"H310","v":["אַחַר","ʼachar","akh-ar'","From H309; properly the hind part; generally used as an adverb or conjugation, after (in various senses): - after (that, -ward), again, at, away from, back (from, -side), behind, beside, by, follow (after, -ing), forasmuch, from, hereafter, hinder end, + out (over) live, + persecute, posterity, pursuing, remnant, seeing, since, thence [-forth], when, with."]},{"k":"H311","v":["אַחַר","ʼachar","akh-ar'","(Chaldee); corresponding to H310; after: - [here-] after."]},{"k":"H312","v":["אַחֵר","ʼachêr","akh-air'","From H309; properly hinder; generally next, other, etc.: - (an-) other (man), following, next, strange."]},{"k":"H313","v":["אַחֵר","ʼAchêr","akh-air'","The same as H312; Acher, an Israelite: - Aher."]},{"k":"H314","v":["אַחֲרוֹן","ʼachărôwn","akh-ar-one'","From H309; hinder; generally late or last; specifically (as facing the east) western: - after (-ward), to come, following, hind (-er, -ermost, -most), last, latter, rereward, ut(ter)most."]},{"k":"H315","v":["אַחְרַח","ʼAchrach","akh-rakh'","From H310 and H251; after (his) brother; Achrach, an Israelite: - Aharah."]},{"k":"H316","v":["אֲחַרְחֵל","ʼĂcharchêl","akh-ar-kale'","From H310 and H2426; behind (the) intrenchment (that is, safe); Acharchel, an Israelite: - Aharhel."]},{"k":"H317","v":["אׇחֳרִי","ʼochŏrîy","okh-or-ee'","(Chaldee); from H311; other: - (an-) other."]},{"k":"H318","v":["אׇחֳרֵין","ʼochŏrêyn","okh-or-ane'","(Chaldee); from H317; last: - at last."]},{"k":"H319","v":["אַחֲרִית","ʼachărîyth","akh-ar-eeth'","From H310; the last or end, hence the future; also posterity: - (last, latter) end (time), hinder (utter) -most, length, posterity, remnant, residue, reward."]},{"k":"H320","v":["אַחֲרִית","ʼachărîyth","akh-ar-eeth'","(Chaldee); from H311; the same as H319; later: - latter."]},{"k":"H321","v":["אׇחֳרָן","ʼochŏrân","okh-or-awn'","(Chaldee); from H311; the same as H317; other: - (an-) other."]},{"k":"H322","v":["אֲחֹרַנִּית","ʼăchôrannîyth","akh-o-ran-neeth'","Prolonged from H268; backwards: - back(-ward, again)."]},{"k":"H323","v":["אֲחַשְׁדַּרְפַּן","ʼăchashdarpan","akh-ash-dar-pan'","Of Persian derivation; a satrap or governor of a main province (of Persia): - lieutenant."]},{"k":"H324","v":["אֲחַשְׁדַּרְפַּן","ʼăchashdarpan","akh-ash-dar-pan'","(Chaldee); corresponding to H323: - prince."]},{"k":"H325","v":["אֲחַשְׁוֵרוֹשׁ","ʼĂchashvêrôwsh","akh-ash-vay-rosh'","Of Persian origin; Achashverosh (that is, Ahasuerus or Artaxerxes, but in this case Xerxes), the title (rather than name) of a Persian king: - Ahasuerus."]},{"k":"H326","v":["אֲחַשְׁתָּרִי","ʼăchashtârîy","akh-ash-taw-ree'","Probably of Persian derivation; an achastarite (that is, courier); the designation (rather than name) of an Israelite: - Haakashtari [includ. the article.]"]},{"k":"H327","v":["אֲחַשְׁתָּרָן","ʼăchashtârân","akh-ash-taw-rawn'","Of Persian origin; a mule: - camel."]},{"k":"H328","v":["אַט","ʼaṭ","at","From an unused root perhaps meaning to move softly; (as a noun) a necromancer (from their soft incantations), (as an adverb) gently: - charmer, gently, secret, softly."]},{"k":"H329","v":["אָטָד","ʼâṭâd","aw-tawd'","From an unused root probably meaning to pierce or make fast; a thorn tree (especially the buckthorn): - Atad, bramble, thorn."]},{"k":"H330","v":["אֵטוּן","ʼêṭûwn","ay-toon'","From an unused root (probably meaning to bind); properly twisted (yarn), that is, tapestry: - fine linen."]},{"k":"H331","v":["אָטַם","ʼâṭam","aw-tam'","A primitive root; to close (the lips or ears); by analogy to contract (a window by bevelled jambs): - narrow, shut, stop."]},{"k":"H332","v":["אָטַר","ʼâṭar","aw-tar'","A primitive root; to close up: - shut."]},{"k":"H333","v":["אָטֵר","ʼÂṭêr","aw-tare'","From H332; maimed; Ater, the name of three Israelites: - Ater."]},{"k":"H334","v":["אִטֵּר","ʼiṭṭêr","it-tare'","From H332; shut up, the is, impeded (as to the use of the right hand): -    + left-handed."]},{"k":"H335","v":["אַי","ʼay","ah'ee","Perhaps from H370; where? hence how?: - how, what, whence, where, whether, which (way)."]},{"k":"H336","v":["אִי","ʼîy","ee","Probably identical with H335 (through the idea of a query); not. (Job_22:30): - island (Job_22:30)."]},{"k":"H337","v":["אִי","ʼîy","ee","Shortened from H188; alas!: - woe."]},{"k":"H338","v":["אִי","ʼîy","ee","Probably identical with H337 (through the idea of a doleful sound); a howler (used only in the plural), that is, any solitary wild creature: - wild beast of the islands."]},{"k":"H339","v":["אִי","ʼîy","ee","From H183; properly a habitable spot (as desirable); dry land, a coast, an island: - country, isle, island."]},{"k":"H340","v":["אָיַב","ʼâyab","aw-yab'","A primitive root; to hate (as one of an opposite tribe or party); hence to be hostile: - be an enemy."]},{"k":"H341","v":["אֹיֵב","ʼôyêb","o-yabe'","Active participle of H340; hating; an adversary: - enemy, foe."]},{"k":"H342","v":["אֵיבָה","ʼêybâh","ay-baw'","From H340; hostility: - enmity, hatred."]},{"k":"H343","v":["אֵיד","ʼêyd","ade","From the same as H181 (in the sense of bending down); oppression; by implication misfortune, ruin: - calamity, destruction."]},{"k":"H344","v":["אַיָּה","ʼayâh","ah-yaw'","Perhaps from H337; the screamer, that is, a hawk: - kite, vulture."]},{"k":"H345","v":["אַיָּה","ʼAyâh","ah-yaw'","The same as H344; Ajah, the name of two Israelites: - Aiah, Ajah."]},{"k":"H346","v":["אַיֵּה","ʼayêh","ah-yay'","Prolonged from H335; where?: - where."]},{"k":"H347","v":["אִיּוֹב","ʼÎyôwb","ee-yobe'","From H340; hated (that is, persecuted); Ijob, the patriarch famous for his patience: - Job."]},{"k":"H348","v":["אִיזֶבֶל","ʼÎyzebel","ee-zeh'-bel","From H336 and H2083; chaste, Izebel, the wife of king Ahab: - Jezebel."]},{"k":"H349","v":["אֵיךְ","ʼêyk","ake","Prolonged from H335; how? or how!; also where: - how, what."]},{"k":"H350","v":["אִי־כָבוֹד","ʼÎy-kâbôwd","ee-kaw-bode'","From H336 and H3519; (there is) no glory, that is, inglorious; Ikabod, a son of Phineas: - I-chabod."]},{"k":"H351","v":["אֵיכֹה","ʼêykôh","ay-ko","Probably a variation for H349, but not as an interrogative; where: - where."]},{"k":"H352","v":["אַיִל","ʼayil","ah'-yil","From the same as H193; properly strength; hence anything strong; specifically a chief (politically); also a ram (from his strength); a pilaster (as a strong support); an oak or other strong tree: - mighty (man), lintel, oak, post, ram, tree."]},{"k":"H353","v":["אֱיָל","ʼĕyâl","eh-yawl'","A variation of H352; strength: - strength."]},{"k":"H354","v":["אַיָּל","ʼayâl","ah-yawl'","An intensive form of H352 (in the sense of ram); a stag or male deer: - hart."]},{"k":"H355","v":["אַיָּלָה","ʼayâlâh","ah-yaw-law'","Feminine of H354; a doe or female deer: - hind."]},{"k":"H356","v":["אֵילוֹן","ʼÊylôwn","ay-lone'","From H352; oakgrove; Elon, the name of a place in Palestine, and also of one Hittite, two Israelite: - Elon."]},{"k":"H357","v":["אַיָּלוֹן","ʼAyâlôwn","ah-yaw-lone'","From H354; deerfield; Ajalon, the name of five places in Palestine: - Aijalon, Ajalon."]},{"k":"H358","v":["אֵילוֹן בֵּית חָנָן","ʼÊylôwn Bêyth Chânân","ay-lone' bayth-chawnawn'","From H356, H1004, and H2603; oakgrove of (the) house of favor; Elon of Bethchanan, a place in Palestine: - Elon-beth-hanan."]},{"k":"H359","v":["אֵילוֹת","ʼÊylôwth","ay-loth'","From H352; trees or a grove (that is, palms); Eloth or Elath, a place on the Red Sea: - Elath, Eloth."]},{"k":"H360","v":["אֱיָלוּת","ʼĕyâlûwth","eh-yaw-looth'","Feminine of H353; power; by implication protection: - strength."]},{"k":"H361","v":["אֵילָם","ʼêylâm","ay-lawm'","Probably from H352; a pillar space (or colonnade), that is, a pale (or portico): - arch."]},{"k":"H362","v":["אֵילִם","ʼÊylim","ay-leem'","Plural of H352; palm trees; Elim, a place in the Desert: - Elim."]},{"k":"H363","v":["אִילָן","ʼîylân","ee-lawn'","(Chaldee); corresponding to H356; a tree: - tree."]},{"k":"H364","v":["אֵיל פָּארָן","ʼÊyl Pâʼrân","ale paw-rawn'","From H352 and H6290; oak of Paran; El Paran, a portion of the district of Paran: - El-paran."]},{"k":"H365","v":["אַיֶּלֶת","ʼayeleth","ah-yeh'-leth","The same as H355; a doe: - hind, Aijeleth."]},{"k":"H366","v":["אָיֹם","ʼâyôm","aw-yome'","From an unused root (meaning to frighten); frightful: - terrible."]},{"k":"H367","v":["אֵימָה","ʼêymâh","ay-maw'","From the same as H366; fright; concretely an idol (as a bugbear): - dread. fear, horror, idol, terrible, terror."]},{"k":"H368","v":["אֵימִים","ʼÊymîym","ay-meem'","Plural of H367; terrors; Emim, an early Canaanitish (or Moabitish) tribe: - Emims."]},{"k":"H369","v":["אַיִן","ʼayin","ah'-yin","As if from a primitive root meaning to be nothing or not exist; a non-entity; generally used as a negative particle: - else, except, fail [father-] less, be gone, in [-curable], neither, never, no (where), none, nor (any, thing), not, nothing, to nought, past, un [-searchable], well-nigh, without, Compare H370."]},{"k":"H370","v":["אַיִן","ʼayin","ah-yin'","Probably identical with H369 in the sense of query (compare H336); where? (only in connection with prepositional prefix, whence): - whence, where."]},{"k":"H371","v":["אִין","ʼîyn","een","Apparently a shortened form of H369; but (like H370) interrogitive; is it not?: - not"]},{"k":"H372","v":["אִיעֶזֵר","ʼÎyʻezêr","ee-eh'-zer","From H336 and H5828; helpless; Iezer, an Israelite: - Jeezer."]},{"k":"H373","v":["אִיעֶזְרִי","ʼÎyʻezrîy","ee-ez-ree'","Patronymic from H372; an Iezrite or descendant of Iezer: - Jezerite."]},{"k":"H374","v":["אֵיפָה","ʼêyphâh","ay-faw'","Of Egyptian derivation; an ephah or measure for grain; hence a measure in general: - ephah, (divers) measure (-s)."]},{"k":"H375","v":["אֵיפֹה","ʼêyphôh","ay-fo'","From H335 and H6311; what place?; also (of time) when?; or (of means) how?: - what manner, where."]},{"k":"H376","v":["אִישׁ","ʼîysh","eesh","Contracted for H582 (or perhaps rather from an unused root meaning to be extant); a man as an individual or a male person; often used as an adjunct to a more definite term (and in such cases frequently not expressed in translation.) : - also, another, any (man), a certain, + champion, consent, each, every (one), fellow, [foot-, husband-] man, (good-, great, mighty) man, he, high (degree), him (that is), husband, man [-kind], + none, one, people, person, + steward, what (man) soever, whoso (-ever), worthy. Compare H802."]},{"k":"H377","v":["אִישׁ","ʼîysh","eesh","Denominative from H376; to be a man, that is, act in a manly way: - show (one) self a man."]},{"k":"H378","v":["אִישׁ־בֹּשֶׁת","ʼÎysh-Bôsheth","eesh-bo'-sheth","From H376 and H1322; man of shame; IshBosheth, a son of King Saul: - Ish-bosheth."]},{"k":"H379","v":["אִישְׁהוֹד","ʼÎyshᵉhôwd","eesh-hode'","From H376 and H1935; man of renown; Ishod, an Israelite: - Ishod."]},{"k":"H380","v":["אִישׁוֹן","ʼîyshôwn","ee-shone'","Diminutive from H376; the little man of the eye; the pupil or ball; hence the middle (of night): - apple [of the eye], black, obscure."]},{"k":"H381","v":["אִישׁ־חַיִל","ʼÎysh-Chayil","eesh-khah'-yil","From H376 and H2428; man of might; (The second form is by defective transcription used in 2Sa_23:20); as if from H376 and H2416; living man; Ishchail (or Ishchai), an Israelite: - a valiant man."]},{"k":"H382","v":["אִישׁ־טוֹב","ʼÎysh-Ṭôwb","eesh-tobe'","From H376 and H2897; man of Tob; Ish-Tob, a place in Palestine: - Ish-tob."]},{"k":"H383","v":["אִיתַי","ʼîythay","ee-thah'ee","(Chaldee); corresponding to H3426; properly entity; used only as a particle of affirmation, there is: - art thou, can, do ye, have it be, there is (are), X we will not."]},{"k":"H384","v":["אִיתִיאֵל","ʼÎythîyʼêl","eeth-ee-ale'","Perhaps from H837 and H410; God has arrived; Ithiel, the name of an Israelite, also of a symbolic person: - Ithiel."]},{"k":"H385","v":["אִיתָמָר","ʼÎythâmâr","eeth-aw-mawr'","From H339 and H8558; coast of the palm tree; Ithamar, a son of Aaron: - Ithamar."]},{"k":"H386","v":["אֵיתָן","ʼêythân","ay-thawn'","From an unused root (meaning to continue); permanence; hence (concretely) permanent; specifically a chieftain: - hard, mighty, rough, strength, strong."]},{"k":"H387","v":["אֵיתָן","ʼÊythân","ay-thawn'","The same as H386; permanent; Ethan, the name of four Israelites: - Ethan."]},{"k":"H388","v":["אֵיתָנִים","ʼÊythânîym","ay-thaw-neem'","Plural of H386; always with the article; the permanent brooks; Ethanim, the name of a month: - Ethanim."]},{"k":"H389","v":["אַךְ","ʼak","ak","Akin to H403; a particle of affirmation, surely; hence (by limitation) only: - also, in any wise, at least, but, certainly, even, howbeit, nevertheless, notwithstanding, only, save, surely of a surety, truly, verily, + wherefore, yet (but)."]},{"k":"H390","v":["אַכַּד","ʼAkkad","ak-kad'","From an unused root probably meaning to strengthen; a fortress; Accad, a place in Babylon: - Accad."]},{"k":"H391","v":["אַכְזָב","ʼakzâb","ak-zawb'","From H3576; falsehood; by implication treachery: - liar, lie."]},{"k":"H392","v":["אַכְזִיב","ʼAkzîyb","ak-zeeb'","From H391; deceitful (in the sense of a winter torrent which fails in summer); Akzib, the name of two places in Palestine: - Achzib."]},{"k":"H393","v":["אַכְזָר","ʼakzâr","ak-zawr'","From an unused root (apparently meaning to act harshly); violent; by implication deadly; also (in a good sense) brave: - cruel, fierce."]},{"k":"H394","v":["אַכְזָרִי","ʼakzârîy","ak-zawr-ree'","From H393; terrible: - cruel (one)."]},{"k":"H395","v":["אַכְזְרִיּוּת","ʼakzᵉrîyûwth","ak-ze-ree-ooth'","From H394; fierceness: - cruel."]},{"k":"H396","v":["אֲכִילָה","ʼăkîylâh","ak-ee-law'","Feminine from H398; something eatable, that is, food: - meat."]},{"k":"H397","v":["אֲכִישׁ","ʼĂkîysh","aw-keesh'","Of uncertain derivation; Akish, a Philistine king: - Achish."]},{"k":"H398","v":["אָכַל","ʼâkal","aw-kal'","A primitive root; to eat (literally or figuratively): - X at all, burn up, consume, devour (-er, up), dine, eat (-er, up), feed (with), food, X freely, X in . . . wise (-deed, plenty), (lay) meat, X quite."]},{"k":"H399","v":["אֲכַל","ʼăkal","ak-al'","(Chaldee); corresponding to H398: - + accuse, devour, eat."]},{"k":"H400","v":["אֹכֶל","ʼôkel","o'-kel","From H398; food: - eating, food, meal [-time], meat, prey, victuals."]},{"k":"H401","v":["אֻכָל","ʼUkâl","oo-kawl'","Apparently from H398; devoured; Ucal, a fancy name: - Ucal."]},{"k":"H402","v":["אׇכְלָה","ʼoklâh","ok-law'","Feminine of H401; food: - consume, devour, eat, food, meat."]},{"k":"H403","v":["אָכֵן","ʼâkên","aw-kane'","From H3559 (compare H3651); firmly; figuratively surely; also (adversely) but: - but, certainly, nevertheless, surely, truly, verily."]},{"k":"H404","v":["אָכַף","ʼâkaph","aw-kaf'","A primitive root; apparent meaning to curve (as with a burden); to urge: - crave."]},{"k":"H405","v":["אֶכֶף","ʼekeph","eh'-kef","From H404; a load; by implication a stroke (others dignity): - hand."]},{"k":"H406","v":["אִכָּר","ʼikkâr","ik-kawr'","From an unused root meaning to dig; a farmer: - husbandman, ploughman."]},{"k":"H407","v":["אַכְשָׁף","ʼAkshâph","ak-shawf'","From H3784; fascination; Acshaph, a place in Palestine: - Achshaph."]},{"k":"H408","v":["אַל","ʼal","al","A negative particle (akin to H3808); not (the qualified negation, used as a deprecative); once (Job_24:25) as a noun, nothing: - nay, neither, + never, no, nor, not, nothing [worth], rather than."]},{"k":"H409","v":["אַל","ʼal","al","(Chaldee); corresponding to H408: - not."]},{"k":"H410","v":["אֵל","ʼêl","ale","Shortened from H352; strength; as adjective mighty; especially the Almighty (but used also of any deity): - God (god), X goodly, X great, idol, might (-y one), power, strong. Compare names in “-el.”"]},{"k":"H411","v":["אֵל","ʼêl","ale","A demonstrative particle (but only in a plural sense) these or those: - these, those, Compare H428."]},{"k":"H412","v":["אֵל","ʼêl","ale","(Chaldee); corresponding to H411: - these."]},{"k":"H413","v":["אֵל","ʼêl","ale","(Used only in the shortened constructive form (the second form)); a primitive particle, properly denoting motion towards, but occasionally used of a quiescent position, that is, near, with or among; often in general, to: - about, according to, after, against, among, as for, at, because (-fore, -side), both . . . and, by, concerning, for, from, X hath, in (-to), near, (out) of, over, through,to (-ward), under, unto, upon, whether, with(-in)."]},{"k":"H414","v":["אֵלָא","ʼÊlâʼ","ay-law'","A variation of H424; oak; Ela, an Israelite: - Elah."]},{"k":"H415","v":["אֵל אֱלֹהֵי יִשְׂרָאֵל","ʼÊl ʼĕlôhêy Yisrâʼêl","ale el-o-hay' yis-rawale'","From H410 and H430 and H3478; the mighty God of Jisrael; El Elohi Jisrael, the title given to a consecrated spot by Jacob: - El-elohe-israel."]},{"k":"H416","v":["אֵל בֵּית־אֵל","ʼÊl Bêyth-ʼÊl","ale bayth-ale'","From H410 and H1008; the God of Bethel; El-Bethel, the title given to a consecrated spot by Jacob: - El-beth-el."]},{"k":"H417","v":["אֶלְגָּבִישׁ","ʼelgâbîysh","el-gaw-beesh'","From H410 and H1378; hail (as if a great pearl): - great hail [-stones]."]},{"k":"H418","v":["אַלְגּוּמִּים","ʼalgûwmmîym","al-goom-meem'","By transposition for H484; sticks of algum wood: - algum [trees]."]},{"k":"H419","v":["אֶלְדָּד","ʼEldâd","el-dad'","From H410 and H1780; God has loved; Eldad, an Israelite: - Eldad."]},{"k":"H420","v":["אֶלְדָּעָה","ʼEldâʻâh","el-daw-aw'","From H410 and H3045; God of knowledge; Eldaah, a son of Midian: - Eldaah."]},{"k":"H421","v":["אָלָה","ʼâlâh","aw-law'","A primitive root (rather identical with H422 through the idea of invocation); to bewail: - lament."]},{"k":"H422","v":["אָלָה","ʼâlâh","aw-law'","A primitive root; properly to adjure, that is, (usually in a bad sense) imprecate: - adjure, curse, swear."]},{"k":"H423","v":["אָלָה","ʼâlâh","aw-law'","From H422; an imprecation: - curse, cursing, execration, oath, swearing."]},{"k":"H424","v":["אֵלָה","ʼêlâh","ay-law'","Feminine of H352; an oak or other strong tree: - elm, oak, teil tree"]},{"k":"H425","v":["אֵלָה","ʼÊlâh","ay-law'","The same as H424; Elah, the name of an Edomite, or four Israelites, and also of a place in Palestine: - Elah."]},{"k":"H426","v":["אֱלָהּ","ʼĕlâhh","el-aw'","(Chaldee); corresponding to H433; God: - God, god."]},{"k":"H427","v":["אַלָּה","ʼallâh","al-law'","A variation of H424: - oak."]},{"k":"H428","v":["אֵלֶּה","ʼêl-leh","ale'-leh","Prolonged from H411; these or those: - an- (the) other; one sort, so, some, such, them, these (same), they, this, those, thus, which, who (-m)."]},{"k":"H429","v":["אֵלֶּה","ʼêlleh","ale'-leh","(Chaldee); corresponding to H428: - these."]},{"k":"H430","v":["אֱלֹהִים","ʼĕlôhîym","el-o-heem'","Plural of H433; gods in the ordinary sense; but specifically used (in the plural thus, especially with the article) of the supreme God; occasionally applied by way of deference to magistrates; and sometimes as a superlative: - angels, X exceeding, God (gods) (-dess, -ly), X (very) great, judges, X mighty."]},{"k":"H431","v":["אֲלוּ","ʼălûw","al-oo'","(Chaldee); probably prolonged from H412; lo!: - behold."]},{"k":"H432","v":["אִלּוּ","ʼillûw","il-loo'","Probably from H408; nay, that is, (softened) if: - but if, yea though."]},{"k":"H433","v":["אֱלוֹהַּ","ʼĕlôwahh","el-o'-ah","(The second form is rare); probably prolonged (emphatically) from H410; a deity or the deity: - God, god. See H430."]},{"k":"H434","v":["אֱלוּל","ʼĕlûwl","el-ool'","For H457; good for nothing: - thing of nought."]},{"k":"H435","v":["אֱלוּל","ʼĔlûwl","el-ool'","Probably of foreign derivation; Elul, the sixth Jewish month: - Elul."]},{"k":"H436","v":["אֵלוֹן","ʼêlôwn","ay-lone'","Prolonged from H352; an oak or other strong tree: - plain. See also H356."]},{"k":"H437","v":["אַלּוֹן","ʼallôwn","al-lone'","A variation of H436: - oak."]},{"k":"H438","v":["אַלּוֹן","ʼAllôwn","al-lone'","The same as H437; Allon, an Israelite, also a place in Palestine: - Allon."]},{"k":"H439","v":["אַלּוֹן בָּכוּת","ʼAllôwn Bâkûwth","al-lone' baw-kooth'","From H437 and a variation of H1068; oak of weeping; Allon-Bakuth, a monumental tree: - Allon-bachuth."]},{"k":"H440","v":["אֵלוֹנִי","ʼÊlôwnîy","ay-lo-nee'","Patronymic from H438; an Elonite or descendant (collectively) of Elon: - Elonites."]},{"k":"H441","v":["אַלּוּף","ʼallûwph","al-loof'","From H502; familiar; a friend, also gentle; hence a bullock (as being tame; applied, although masculine, to a cow); and so a chieftain (as notable like neat cattle): - captain, duke, (chief) friend, governor, guide, ox."]},{"k":"H442","v":["אָלוּשׁ","ʼÂlûwsh","aw-loosh'","Of uncertain derivation; Alush, a place in the Desert: - Alush."]},{"k":"H443","v":["אֶלְזָבָד","ʼElzâbâd","el-zaw-bawd'","From H410 and H2064; God has bestowed; Elzabad, the name of two Israelites: - Elzabad."]},{"k":"H444","v":["אָלַח","ʼâlach","aw-lakh'","A primitive root; to muddle, that is, (figuratively and intransitively) to turn (morally) corrupt: - become filthy."]},{"k":"H445","v":["אֶלְחָנָן","ʼElchânân","el-khaw-nawn'","From H410 and H2603; God (is) gracious; Elchanan, an Israelite: - Elkanan."]},{"k":"H446","v":["אֱלִיאָב","ʼĔlîyʼâb","el-ee-awb'","From H410 and H1; God of (his) father; Eliab, the name of six Israelites: - Eliab."]},{"k":"H447","v":["אֱלִיאֵל","ʼĔlîyʼêl","el-ee-ale'","From H410 repeated; God of (his) God; Eliel, the name of nine Israelites: - Eliel."]},{"k":"H448","v":["אֱלִיאָתָה","ʼĔlîyʼâthâh","el-ee-aw-thaw'","From H410 and H225; God of (his) consent; Eliathah, an Israelite: - Eliathah."]},{"k":"H449","v":["אֱלִידָד","ʼĔlîydâd","el-ee-dawd'","From the same as H419; God of (his) love; Elidad, an Israelite: - Elidad."]},{"k":"H450","v":["אֶלְיָדָע","ʼElyâdâʻ","el-yaw-daw'","From H410 and H3045; God (is) knowing; Eljada, the name of two Israelites and of an Aramaean: - Eliada."]},{"k":"H451","v":["אַלְיָה","ʼalyâh","al-yaw'","From H422 (in the original sense of strength); the stout part, that is, the fat tail of the Oriental sheep: - rump."]},{"k":"H452","v":["אֵלִיָּה","ʼÊlîyâh","ay-lee-yaw'","From H410 and H3050; God of Jehovah; Elijah, the name of the famous prophet and of two other Israelites: - Elijah, Eliah."]},{"k":"H453","v":["אֱלִיהוּ","ʼĔlîyhûw","el-ee-hoo'","From H410 and H1931; God of him; Elihu, the name of one of Job’s friends, and of three Israelites: - Elihu."]},{"k":"H454","v":["אֶלְיְהוֹעֵינַי","ʼElyᵉhôwʻêynay","el-ye-ho-ay-nah'ee","From H413 and H3068 and H5869; towards Jehovah (are) my eyes; Eljehoenai or Eljoenai, the name of seven Israelites: - Elihoenai, Elionai."]},{"k":"H455","v":["אֶלְיַחְבָּא","ʼElyachbâʼ","el-yakh-baw'","From H410 and H2244; God will hide; Eljachba, an Israelite: - Eliahbah."]},{"k":"H456","v":["אֱלִיחֹרֶף","ʼĔlîychôreph","el-ee-kho'-ref","From H410 and H2779; God of autumn; Elichoreph, an Israelite: - Elihoreph."]},{"k":"H457","v":["אֱלִיל","ʼĕlîyl","el-eel'","Apparently from H408; good for nothing, by analogy vain or vanity; specifically an idol: - idol, no value, thing of nought."]},{"k":"H458","v":["אֱלִימֶלֶךְ","ʼĔlîymelek","el-ee-meh'-lek","From H410 and H4428; God of (the) king; Elimelek, an Israelite: - Elimelech."]},{"k":"H459","v":["אִלֵּין","ʼillêyn","il-lane'","(Chaldee); prolonged from H412; these: - the, these."]},{"k":"H460","v":["אֶלְיָסָף","ʼElyâçâph","el-yaw-sawf'","From H410 and H3254; God (is) gatherer; Eljasaph, the name of two Israelites: - Eliasaph."]},{"k":"H461","v":["אֱלִיעֶזֶר","ʼĔlîyʻezer","el-ee-eh'-zer","From H410 and H5828; God of help; Eliezer, the name of a Damascene and of ten Israelites: - Eliezer."]},{"k":"H462","v":["אֱלִיעֵינַי","ʼĔlîyʻêynay","el-ee-ay-nah'ee","Probably contracted for H454; Elienai, an Israelite: - Elienai."]},{"k":"H463","v":["אֱלִיעָם","ʼĔlîyʻâm","el-ee-awm'","From H410 and H5971; God of (the) people; Eliam, an Israelite: - Eliam."]},{"k":"H464","v":["אֱלִיפַז","ʼĔlîyphaz","el-ee-faz'","From H410 and H6337; God of gold; Eliphaz, the name of one of Job’s friends, and of a son of Esau: - Eliphaz."]},{"k":"H465","v":["אֱלִיפָל","ʼĔlîyphâl","el-ee-fawl'","From H410 and H6419; God of judgment; Eliphal, an Israelite: - Eliphal."]},{"k":"H466","v":["אֱלִיפְלֵהוּ","ʼĔlîyphᵉlêhûw","el-ee-fe-lay'-hoo","From H410 and H6395; God of his distinction; Eliphelehu, an Israelite: - Elipheleh."]},{"k":"H467","v":["אֱלִיפֶלֶט","ʼĔlîypheleṭ","el-ee-feh'-let","From H410 and H6405; God of deliverance; Eliphelet or Elpelet, the name of six Israelites: - Eliphalet, Eliphelet, Elpalet."]},{"k":"H468","v":["אֱלִיצוּר","ʼĔlîytsûwr","el-ee-tsoor'","From H410 and H6697; God of (the) rock; Elitsur, an Israelite: - Elizur."]},{"k":"H469","v":["אֱלִיצָפָן","ʼĔlîytsâphân","el-ee-tsaw-fawn'","From H410 and H6845; God of treasure; Elitsaphan or Eltsaphan, an Israelite: - Elizaphan, Elzaphan."]},{"k":"H470","v":["אֱלִיקָא","ʼĔlîyqâʼ","el-ee-kaw'","From H410 and H6958; God of rejection; Elika, an Israelite: - Elika."]},{"k":"H471","v":["אֶלְיָקִים","ʼElyâqîym","el-yaw-keem'","From H410 and H6965; God of raising; Eljakim, the name of four Israelites: - Eliakim."]},{"k":"H472","v":["אֱלִישֶׁבַע","ʼĔlîyshebaʻ","el-ee-sheh'-bah","From H410 and H7651 (in the sense of H7650); God of (the) oath; Elisheba, the wife of Aaron: - Elisheba."]},{"k":"H473","v":["אֱלִישָׁה","ʼĔlîyshâh","el-ee-shaw'","Probably of foreign derivation; Elishah, a son of Javan: - Elishah."]},{"k":"H474","v":["אֱלִישׁוּעַ","ʼĔlîyshûwaʻ","el-ee-shoo'-ah","From H410 and H7769; God of supplication (or of riches); Elishua, a son of King David: - Elishua."]},{"k":"H475","v":["אֶלְיָשִׁיב","ʼElyâshîyb","el-yaw-sheeb'","From H410 and H7725; God will restore; Eljashib, the name of six Israelites: - Eliashib."]},{"k":"H476","v":["אֱלִישָׁמָע","ʼĔlîyshâmâʻ","el-ee-shaw-maw'","From H410 and H8085; God of hearing; Elishama, the name of seven Israelites: - Elishama."]},{"k":"H477","v":["אֱלִישָׁע","ʼĔlîyshâʻ","el-ee-shaw'","Contracted for H474; Elisha, the famous prophet: - Elisha."]},{"k":"H478","v":["אֱלִישָׁפָט","ʼĔlîyshâphâṭ","el-ee-shaw-fawt'","From H410 and H8199; God of judgment; Elishaphat, an Israelite: - Elishaphat."]},{"k":"H479","v":["אִלֵּךְ","ʼillêk","il-lake'","(Chaldee); prolonged from H412; these: - these, those."]},{"k":"H480","v":["אַלְלַי","ʼalᵉlay","al-le-lah'ee","By reduplication from H421; alas!: - woe."]},{"k":"H481","v":["אָלַם","ʼâlam","aw-lam'","A primitive root; to tie fast; hence (of the mouth) to be tongue tied: - bind, be dumb, put to silence."]},{"k":"H482","v":["אֵלֶם","ʼêlem","ay'-lem","From H481; silence (that is, mute justice): - congregation. Compare H3128."]},{"k":"H483","v":["אִלֵּם","ʼillêm","il-lame'","From H481; speechless: - dumb (man)."]},{"k":"H484","v":["אַלְמֻגִּים","ʼalmuggîym","al-moog-gheem'","Probably of foreign derivation (used thus only in the plural); almug (that is, probably sandalwood) sticks: - almug trees. Compare H418."]},{"k":"H485","v":["אֲלֻמָּה","ʼălummâh","al-oom-maw'","Second form is masculine form; passive participle of H481; something bound; a sheaf: - sheaf."]},{"k":"H486","v":["אַלְמוֹדָד","ʼAlmôwdâd","al-mo-dawd'","Probably of foreign derivation; Almodad, a son of Joktan: - Almodad."]},{"k":"H487","v":["אַלַּמֶּלֶךְ","ʼAllammelek","al-lam-meh'-lek","From H427 and H4428; oak of (the) king; Allammelek, a place in Palestine: - Alammelech."]},{"k":"H488","v":["אַלְמָן","ʼalmân","al-mawn'","Prolonged from H481 in the sense of bereavement; discarded (as a divorced person): - forsaken."]},{"k":"H489","v":["אַלְמֹן","ʼalmôn","al-mone'","From H481 as in H488; bereavement: - widowhood."]},{"k":"H490","v":["אַלְמָנָה","ʼalmânâh","al-maw-naw'","Feminine of H488; a widow; also a desolate place: - desolate house (palace), widow."]},{"k":"H491","v":["אַלְמָנוּת","ʼalmânûwth","al-maw-nooth'","Feminine of H488; concretely a widow; abstractly widowhood: - widow, widowhood."]},{"k":"H492","v":["אַלְמֹנִי","ʼalmônîy","al-mo-nee'","From H489 in the sense of concealment; some one (that is, so and so, without giving the name of the person or place): - one, and such."]},{"k":"H493","v":["אֶלְנַעַם","ʼElnaʻam","el-nah'-am","From H410 and H5276; God (is his) delight; Elnaam, an Israelite: - Elnaam."]},{"k":"H494","v":["אֶלְנָתָן","ʼElnâthân","el-naw-thawn'","From H410 and H5414; God (is the) giver; Elnathan, the name of four Israelites: - Elnathan."]},{"k":"H495","v":["אֶלָּסָר","ʼEllâçâr","el-law-sawr'","Probably of foreign derivation; Ellasar, an early country of Asia: - Ellasar."]},{"k":"H496","v":["אֶלְעָד","ʼElʻâd","el-awd'","From H410 and H5749; God has testified; Elad, an Israelite: - Elead."]},{"k":"H497","v":["אֶלְעָדָה","ʼElʻâdâh","el-aw-daw'","From H410 and H5710; God has decked; Eladah, an Israelite: - Eladah."]},{"k":"H498","v":["אֶלְעוּזַי","ʼElʻûwzay","el-oo-zah'ee","From H410 and H5756 (in the sense of H5797); God (is) defensive; Eluzai, an Israelite: - Eluzai."]},{"k":"H499","v":["אֶלְעָזָר","ʼElʻâzâr","el-aw-zawr'","From H410 and H5826; God (is) helper; Elazar, the name of seven Israelites: - Eleazar."]},{"k":"H500","v":["אֶלְעָלֵא","ʼElʻâlêʼ","el-aw-lay'","From H410 and H5927; God (is) going up; Elale or Elaleh, a place east of the Jordan: - Elealeh."]},{"k":"H501","v":["אֶלְעָשָׂה","ʼElʻâsâh","el-aw-saw'","From H410 and H6213; God has made; Elasah, the name of four Israelites: - Elasah, Eleasah."]},{"k":"H502","v":["אָלַף","ʼâlaph","aw-lof'","A primitive root, to associate with; hence to learn (and causatively to teach): - learn, teach, utter."]},{"k":"H503","v":["אָלַף","ʼâlaph","aw-laf'","Denominative from H505; causatively to make a thousandfold: - bring forth thousands."]},{"k":"H504","v":["אֶלֶף","ʼeleph","eh'-lef","From H502; a family; also (from the sense of yoking or taming) an ox or cow: - family, kine, oxen."]},{"k":"H505","v":["אֶלֶף","ʼeleph","eh'-lef","Properly the same as H504; hence (an ox’s head being the first letter of the alphabet, and this eventually used as a numeral) a thousand: - thousand."]},{"k":"H506","v":["אֲלַף","ʼălaph","al-af'","(Chaldee); corresponding to H505: - thousand."]},{"k":"H507","v":["אֶלֶף","ʼEleph","eh'-lef","The same as H505; Eleph, a place in Palestine: - Eleph."]},{"k":"H508","v":["אֶלְפַּעַל","ʼElpaʻal","el-pah'-al","From H410 and H6466; God (is) act; Elpaal, an Israelite: - Elpaal."]},{"k":"H509","v":["אָלַץ","ʼâlats","aw-lats'","A primitive root; to press: - urge."]},{"k":"H510","v":["אַלְקוּם","ʼalqûwm","al-koom'","Probably from H408 and H6965; a non-rising (that is, resistlessness): - no rising up."]},{"k":"H511","v":["אֶלְקָנָה","ʼElqânâh","el-kaw-naw'","From H410 and H7069; God has obtained; Elkanah, the name of seven Israelites: - Elkanah."]},{"k":"H512","v":["אֶלְקֹשִׁי","ʼElqôshîy","el-ko-shee'","Patrial from a name of uncertain derivation; an Elkoshite or native of Elkosh: - Elkoshite."]},{"k":"H513","v":["אֶלְתּוֹלַד","ʼEltôwlad","el-to-lad'","Probably from H410 and a masculine form of H8435 (compare H8434); God (is) generator; Eltolad, a place in Palestine: - Eltolad."]},{"k":"H514","v":["אֶלְתְּקֵא","ʼEltᵉqêʼ","el-te-kay'","Of uncertain derivation; Eltekeh or Elteke, a place in Palestine: - Eltekeh."]},{"k":"H515","v":["אֶלְתְּקֹן","ʼEltᵉqôn","el-te-kone'","From H410 and H8626; God (is) straight; Eltekon, a place in Palestine: - Eltekon."]},{"k":"H516","v":["אַל תַּשְׁחֵת","ʼAl tashchêth","al tash-kayth'","From H408 and H7843; Thou must not destroy; probably the opening words of a popular song: - Al-taschith."]},{"k":"H517","v":["אֵם","ʼêm","ame","A primitive word; a mother (as the bond of the family); in a wide sense (both literally and figuratively); (like H1): - dam, mother, X parting."]},{"k":"H518","v":["אִם","ʼim","eem","A primitive particle; used very widely as demonstrative, lo!; interrogitive, whether?; or conditional, if, although; also Oh that!, when; hence as a negative, not: - (and, can-, doubtless, if, that) (not), + but, either, + except, + more (-over if, than), neither, nevertheless, nor, oh that, or, + save (only, -ing), seeing, since, sith, + surely (no more, none, not), though, + of a truth, + unless, + verily, when, whereas, whether, while, + yet."]},{"k":"H519","v":["אָמָה","ʼâmâh","aw-maw'","Apparently a primitive word; a maidservant or female slave: - (hand-) bondmaid (-woman,) maid (-servant)."]},{"k":"H520","v":["אַמָּה","ʼammâh","am-maw'","Prolonged from H517; properly a mother (that is, unit) of measure, or the forearm (below the elbow), that is, a cubit; also a door base (as a bond of the entrance): - cubit, + hundred [by exchange for H3967], measure, post."]},{"k":"H521","v":["אַמָּה","ʼammâh","am-maw'","(Chaldee); corresponding to H520: - cubit."]},{"k":"H522","v":["אַמָּה","ʼAmmâh","am-maw'","The same as H520; Ammah, a hill in Palestine: - Ammah."]},{"k":"H523","v":["אֻמַּה","ʼummah","oom-maw'","From the same as H517; a collection, that is, community of persons: - nation, people."]},{"k":"H524","v":["אֻמָּה","ʼummâh","oom-maw'","(Chaldee); corresponding to H523: - nation."]},{"k":"H525","v":["אָמוֹן","ʼâmôwn","aw-mone'","From H539, probably in the sense of training; skilled, that is, an architect (like H542): - one brought up."]},{"k":"H526","v":["אָמוֹן","ʼÂmôwn","aw-mone'","The same as H525; Amon, the name of three Israelites: - Amon."]},{"k":"H527","v":["אָמוֹן","ʼâmôwn","aw-mone'","A variation for H1995; a throng of people: - multitude."]},{"k":"H528","v":["אָמוֹן","ʼÂmôwn","aw-mone'","Of Egyptian derivation; Amon (that is, Ammon or Amn), a deity of Egypt (used only as an adjunct of H4996): - multitude, populous."]},{"k":"H529","v":["אֵמוּן","ʼêmûwn","ay-moon'","From H539; established, that is, (figuratively) trusty; also (abstractly) trustworthiness: - faith (-ful), truth."]},{"k":"H530","v":["אֱמוּנָה","ʼĕmûwnâh","em-oo-naw'","Feminine of H529; literally firmness; figuratively security; moral fidelity: - faith (-ful, -ly, -ness, [man]), set office, stability, steady, truly, truth, verily."]},{"k":"H531","v":["אָמוֹץ","ʼÂmôwts","aw-mohts'","From H553; strong; Amots, an Israelite: - Amoz."]},{"k":"H532","v":["אָמִי","ʼÂmîy","aw-mee'","An abbreviated for H526; Ami, an Israelite: - Ami."]},{"k":"H533","v":["אַמִּיץ","ʼammîyts","am-meets'","From H553; strong or (abstractly) strength: - courageous, mighty, strong (one)."]},{"k":"H534","v":["אָמִיר","ʼâmîyr","aw-meer'","Apparently from H559 (in the sense of self exaltation); a summit (of a tree or mountain): - bough, branch."]},{"k":"H535","v":["אָמַל","ʼâmal","aw-mal'","A primitive root; to droop; by implication to be sick, to mourn: - languish, be weak, wax feeble."]},{"k":"H536","v":["אֻמְלַל","ʼumlal","oom-lal'","From H535; sick: - weak."]},{"k":"H537","v":["אֲמֵלָל","ʼămêlâl","am-ay-lawl'","From H535; languid: - feeble."]},{"k":"H538","v":["אֲמָם","ʼĂmâm","am-awm'","From H517; gathering spot; Amam, a place in Palestine: - Amam."]},{"k":"H539","v":["אָמַן","ʼâman","aw-man'","A primitive root; properly to build up or support; to foster as a parent or nurse; figuratively to render (or be) firm or faithful, to trust or believe, to be permanent or quiet; morally to be true or certain; once (in Isa_30:21; by interchange for H541) to go to the right hand: - hence assurance, believe, bring up, establish, + fail, be faithful (of long continuance, stedfast, sure, surely, trusty, verified), nurse, (-ing father), (put), trust, turn to the right."]},{"k":"H540","v":["אֲמַן","ʼăman","am-an'","(Chaldee); corresponding to H539: - believe, faithful, sure."]},{"k":"H541","v":["אָמַן","ʼâman","aw-man'","Denominative from H3225; to take the right hand road: - turn to the right. See H539."]},{"k":"H542","v":["אָמָן","ʼâmân","aw-mawn'","From H539 (in the sense of training); an expert: - cunning workman."]},{"k":"H543","v":["אָמֵן","ʼâmên","aw-mane'","From H539; sure; abstractly faithfulness; adverbially truly: - Amen, so be it, truth."]},{"k":"H544","v":["אֹמֶן","ʼômen","oh-men'","From H539; verity: - truth."]},{"k":"H545","v":["אׇמְנָה","ʼomnâh","om-naw'","Feminine of H544 (in the specific sense of training); tutelage: - brought up."]},{"k":"H546","v":["אׇמְנָה","ʼomnâh","om-naw'","Feminine of H544 (in its usual sense); adverbially surely: - indeed."]},{"k":"H547","v":["אֹמְנָה","ʼômᵉnâh","om-me-naw'","Feminine active participle of H544 (in the original sense of supporting); a column: - pillar."]},{"k":"H548","v":["אֲמָנָה","ʼămânâh","am-aw-naw'","Feminine of H543; something fixed, that is, a covenant, an allowance: - certain portion, sure."]},{"k":"H549","v":["אֲמָנָה","ʼĂmânâh","am-aw-naw'","The same as H548; Amanah, a mountain near Damascus: - Amana."]},{"k":"H550","v":["אַמְנוֹן","ʼAmnôwn","am-nohn'","From H539; faithful; Amnon (or Aminon), a son of David: - Amnon."]},{"k":"H551","v":["אׇמְנָם","ʼomnâm","om-nawm'","Adverb from H544; verily: - indeed, no doubt, surely, (it is, of a) true (-ly, -th)."]},{"k":"H552","v":["אֻמְנָם","ʼumnâm","oom-nawm'","An orthographical variation of H551: - in (very) deed; of a surety."]},{"k":"H553","v":["אָמַץ","ʼâmats","aw-mats'","A primitive root; to be alert, physically (on foot) or mentally (in courage): - confirm, be courageous (of good courage, stedfastly minded, strong, stronger), establish, fortify, harden, increase, prevail, strengthen (self), make strong (obstinate, speed)."]},{"k":"H554","v":["אָמֹץ","ʼâmôts","aw-mohts'","Probably from H553; of a strong color, that is, red (others fleet): - bay."]},{"k":"H555","v":["אֹמֶץ","ʼômets","o'-mets","From H553; strength: - stronger."]},{"k":"H556","v":["אַמְצָה","ʼamtsâh","am-tsaw'","From H553; force: - strength."]},{"k":"H557","v":["אַמְצִי","ʼAmtsîy","am-tsee'","From H553; strong; Amtsi, an Israelite: - Amzi."]},{"k":"H558","v":["אֲמַצְיָה","ʼĂmatsyâh","am-ats-yaw'","From H553 and H3050; strength of Jah; Amatsjah, the name of four Israelites: - Amaziah."]},{"k":"H559","v":["אָמַר","ʼâmar","aw-mar'","A primitive root; to say (used with great latitude): - answer, appoint, avouch, bid, boast self, call, certify, challenge, charge, + (at the, give) command (ment), commune, consider, declare, demand, X desire, determine, X expressly, X indeed, X intend, name, X plainly, promise, publish, report, require, say, speak (against, of), X still, X suppose, talk, tell, term, X that is, X think, use [speech], utter, X verily, X yet."]},{"k":"H560","v":["אֲמַר","ʼămar","am-ar'","(Chaldee); corresponding to H559: - command, declare, say, speak, tell."]},{"k":"H561","v":["אֵמֶר","ʼêmer","ay'-mer","From H559; something said: - answer, X appointed unto him, saying, speech, word."]},{"k":"H562","v":["אֹמֶר","ʼômer","o'-mer","The same as H561: - promise, speech, thing, word."]},{"k":"H563","v":["אִמַּר","ʼimmar","im-mar'","(Chaldee); perhaps from H560 (in the sense of bringing forth); a lamb: - lamb."]},{"k":"H564","v":["אִמֵּר","ʼImmêr","im-mare'","From H559; talkative; Immer, the name of five Israelites: - Immer."]},{"k":"H565","v":["אִמְרָה","ʼimrâh","im-raw'","The second form is the feminine of H561, and meaning the same: - commandment, speech, word."]},{"k":"H566","v":["אִמְרִי","ʼImrîy","im-ree'","From H564; wordy; Imri, the name of two Israelites: - Imri."]},{"k":"H567","v":["אֱמֹרִי","ʼĔmôrîy","em-o-ree'","Probably a patronymic from an unused name derived from H559 in the sense of publicity, that is, prominence; thus a mountaineer; an Emorite, one of the Canaanitish tribes: - Amorite."]},{"k":"H568","v":["אֲמַרְיָה","ʼĂmaryâh","am-ar-yaw'","From H559 and H3050; Jah has said (that is, promised); Amarjah, the name of nine Israelites: - Amariah."]},{"k":"H569","v":["אַמְרָפֶל","ʼAmrâphel","am-raw-fel'","Of uncertain (perhaps foreign) derivation; Amraphel, a king of Shinar: - Amraphel."]},{"k":"H570","v":["אֶמֶשׁ","ʼemesh","eh'-mesh","Time past, that is, yesterday or last night: - former time, yesterday (-night)."]},{"k":"H571","v":["אֶמֶת","ʼemeth","eh'-meth","Contracted from H539; stability; figuratively certainty, truth, trustworthiness: - assured (-ly), establishment, faithful, right, sure, true (-ly, -th), verity."]},{"k":"H572","v":["אַמְתַּחַת","ʼamtachath","am-takh'-ath","From H4969; properly something expansive, that is, a bag: - sack."]},{"k":"H573","v":["אֲמִתַּי","ʼĂmittay","am-it-tah'ee","From H571; veracious; Amittai, an Israelite: - Amittai."]},{"k":"H574","v":["אֵמְתָּנִי","ʼêmᵉtânîy","em-taw-nee'","(Chaldee); from a root corresponding to that of H4975; well loined (that is, burly) or mighty: - terrible."]},{"k":"H575","v":["אָן","ʼân","awn","Contracted from H370; where?; hence whither?, when?; also hither and thither: -  + any (no) whither, now, where, whither (-soever)."]},{"k":"H576","v":["אֲנָא","ʼănâʼ","an-aw'","(Chaldee); corresponding to H589; I: - I, as for me."]},{"k":"H577","v":["אָנָּא","ʼânnâʼ","awn-naw'","Apparently contracted from H160 and H4994: oh now!: - I (me) beseech (pray) thee, O."]},{"k":"H578","v":["אָנָה","ʼânâh","aw-naw'","A primitive root; to groan: - lament, mourn."]},{"k":"H579","v":["אָנָה","ʼânâh","aw-naw'","A primitive root (perhaps rather identical with H578 through the idea of contraction in anguish); to approach; hence to meet in various senses: - befall, deliver, happen, seek a quarrel."]},{"k":"H580","v":["אֲנוּ","ʼănûw","an-oo'","Contracted for H587; we: - we."]},{"k":"H581","v":["אִנּוּן","ʼinnûwn","in-noon'","(Chaldee); the second form is the feminine of the first form; corresponding to H1992; they: -  X are, them, these."]},{"k":"H582","v":["אֱנוֹשׁ","ʼĕnôwsh","en-oshe'","From H605; properly a mortal (and thus differeing from the more dignified H120); hence a man in general (singly or collectively). It is often unexpressed in the English Version, especially when used in apposition with another word: - another, X [blood-] thirsty, certain, chap [-man], divers, fellow, X in the flower of their age, husband, (certain, mortal) man, people, person, servant, some (X of them), + stranger, those, + their trade. It is often unexpressed in the Engl. version, especially when used in apposition with another word. Compare H376."]},{"k":"H583","v":["אֱנוֹשׁ","ʼĔnôwsh","en-ohsh'","The same as H582; Enosh, a son of Seth: - Enos."]},{"k":"H584","v":["אָנַח","ʼânach","aw-nakh'","A primitive root; to sigh: - groan, mourn, sigh."]},{"k":"H585","v":["אֲנָחָה","ʼănâchâh","an-aw-khaw'","From H584; sighing: - groaning, mourn, sigh."]},{"k":"H586","v":["אֲנַחְנָא","ʼănachnâʼ","an-akh'-naw","(Chaldee); corresponding to H587; we: - we."]},{"k":"H587","v":["אֲנַחְנוּ","ʼănachnûw","an-akh'-noo","Apparently from H595; we: - ourselves, us, we."]},{"k":"H588","v":["אֲנָחֲרָת","ʼĂnâchărâth","an-aw-kha-rawth'","Probably from the same root as H5170; a gorge or narrow pass; Anacharath, a place in Palestine: - Anaharath."]},{"k":"H589","v":["אֲנִי","ʼănîy","an-ee'","Contracted from H595; I: - I, (as for) me, mine, myself, we, X which, X who."]},{"k":"H590","v":["אֳנִי","ʼŏnîy","on-ee'","Probably from H479 (in the sense of conveyance); a ship or (collectively) a fleet: - galley, navy (of ships)."]},{"k":"H591","v":["אֳנִיָּה","ʼŏnîyâh","on-ee-yaw'","Feminine of H590; a ship: - ship ([-men])."]},{"k":"H592","v":["אֲנִיָּה","ʼănîyâh","an-ee-yaw'","From H578; groaning: - lamentation, sorrow."]},{"k":"H593","v":["אֲנִיעָם","ʼĂnîyʻâm","an-ee-awm'","From H578 and H5971; groaning of (the) people; Aniam, an Israelite: - Aniam."]},{"k":"H594","v":["אֲנָךְ","ʼănâk","an-awk'","Probably from an unused root meaning to be narrow; according to most a plumb line, and to others a hook: - plumb-line."]},{"k":"H595","v":["אָנֹכִי","ʼânôkîy","aw-no-kee'","A primitive pronoun; I: - I, me, X which."]},{"k":"H596","v":["אָנַן","ʼânan","aw-nan'","A primitive root; to mourn, that is, complain: - complain."]},{"k":"H597","v":["אָנַס","ʼânaç","aw-nas'","To insist: - compel."]},{"k":"H598","v":["אֲנַס","ʼănaç","an-as'","(Chaldee); corresponding to H597; figuratively to distress: - trouble."]},{"k":"H599","v":["אָנַף","ʼânaph","aw-naf'","A primitive root; to breathe hard, that is, be enraged: - be angry (displeased)."]},{"k":"H600","v":["אֲנַף","ʼănaph","an-af'","(Chaldee); corresponding to H639 (only in the plural as a singular); the face: - face, visage."]},{"k":"H601","v":["אֲנָפָה","ʼănâphâh","an-aw-faw'","From H599; an unclean bird, perhaps the parrot (from its irascibility): - heron."]},{"k":"H602","v":["אָנַק","ʼânaq","aw-nak'","A primitive root; to shriek: - cry, groan."]},{"k":"H603","v":["אֲנָקָה","ʼănâqâh","an-aw-kaw'","From H602; shrieking: - crying out, groaning, sighing."]},{"k":"H604","v":["אֲנָקָה","ʼănâqâh","an-aw-kaw'","The same as H603; some kind of lizard, probably the gecko (from its wail): - ferret."]},{"k":"H605","v":["אָנַשׁ","ʼânash","aw-nash'","A primitive root; to be frail, feeble, or (figuratively) melancholy: - desperate (-ly wicked), incurable, sick, woeful."]},{"k":"H606","v":["אֱנָשׁ","ʼĕnâsh","en-awsh'","(Chaldee); corresponding to H582; a man: - man, + whosoever."]},{"k":"H607","v":["אַנְתָּה","ʼantâh","an-taw'","(Chaldee); corresponding to H859; thou: - as for thee, thou."]},{"k":"H608","v":["אַנְתּוּן","ʼantûwn","an-toon'","(Chaldee); plural of H607; ye: - ye."]},{"k":"H609","v":["אָסָא","ʼÂçâʼ","aw-saw'","Of uncertain derivation; Asa, the name of a king and of a Levite: - Asa."]},{"k":"H610","v":["אָסוּךְ","ʼâçûwk","aw-sook'","From H5480; anointed, that is, an oil flask: - pot."]},{"k":"H611","v":["אָסוֹן","ʼâçôwn","aws-sone'","Of uncertain derivation; hurt: - mischief."]},{"k":"H612","v":["אֵסוּר","ʼêçûwr","ay-soor'","From H631; a bond (especially manacles of a prisoner): - band, + prison."]},{"k":"H613","v":["אֱסוּר","ʼĕçûwr","es-oor'","(Chaldee); corresponding to H612: - band, imprisonment."]},{"k":"H614","v":["אָסִיף","ʼâçîyph","aw-seef'","From H622; gathered, that is, (abstractly) a gathering in of crops: - ingathering."]},{"k":"H615","v":["אָסִיר","ʼâçîyr","aw-sere'","From H631; bound, that is, a captive: - (those which are) bound, prisoner."]},{"k":"H616","v":["אַסִּיר","ʼaççîyr","as-sere'","For H615: - prisoner."]},{"k":"H617","v":["אַסִּיר","ʼAççîyr","as-sere'","The same as H616; prisoner; Assir, the name of two Israelites: - Assir."]},{"k":"H618","v":["אָסָם","ʼâçâm","aw-sawm'","From an unused root meaning to heap together; a storehouse (only in the plural): - barn, storehouse."]},{"k":"H619","v":["אַסְנָה","ʼAçnâh","as-naw'","Of uncertain derivation; Asnah, one of the Nethinim: - Asnah."]},{"k":"H620","v":["אׇסְנַפַּר","ʼOçnappar","os-nap-par'","Of foreign derivation; Osnappar, an Assyrian king: - Asnapper."]},{"k":"H621","v":["אָסְנַת","ʼÂçᵉnath","aw-se-nath'","Of Egyptian derivation; Asenath, the wife of Joseph: - Asenath."]},{"k":"H622","v":["אָסַף","ʼâçaph","aw-saf'","A primitive root; to gather for any purpose; hence to receive, take away, that is, remove (destroy, leave behind, put up, restore, etc.): - assemble, bring, consume, destroy, fetch, gather (in, together, up again), X generally, get (him), lose, put all together, receive, recover [another from leprosy], (be) rereward, X surely, take (away, into, up), X utterly, withdraw."]},{"k":"H623","v":["אָסָף","ʼÂçâph","aw-sawf'","From H622; collector; Asaph, the name of three Israelites, and of the family of the first: - Asaph."]},{"k":"H624","v":["אָסֻף","ʼâçuph","aw-soof'","Passive participle of H622; collected (only in the plural), that is, a collection (of offerings): - threshold, Asuppim."]},{"k":"H625","v":["אֹסֶף","ʼôçeph","o'-sef","From H622; a collection (of fruits): - gathering."]},{"k":"H626","v":["אֲסֵפָה","ʼăçêphâh","as-ay-faw'","From H622; a collection of people (only adverbially): -    X together."]},{"k":"H627","v":["אֲסֻפָּה","ʼăçuppâh","as-up-paw'","Feminine of H624; a collection of (learned) men (only in the plural): - assembly."]},{"k":"H628","v":["אֲסְפְּסֻף","ʼăçpᵉçuph","as-pes-oof'","By reduplication from H624; gathered up together, that is, a promiscuous assemblage (of people): - mixt multitude."]},{"k":"H629","v":["אׇסְפַּרְנָא","ʼoçparnâʼ","os-par-naw'","(Chaldee); of Persian derivation; diligently: - fast, forthwith, speed (-ily)"]},{"k":"H630","v":["אַסְפָּתָא","ʼAçpâthâʼ","as-paw-thaw'","Of Persian derivation; Aspatha, a son of Haman: - Aspatha."]},{"k":"H631","v":["אָסַר","ʼâçar","aw-sar'","A primitive root; to yoke or hitch; by analogy to fasten in any sense, to join battle: - bind, fast, gird, harness, hold, keep, make ready, order, prepare, prison (-er), put in bonds, set in array, tie."]},{"k":"H632","v":["אֱסָר","ʼĕçâr","es-sawr'","From H631; an obligation or vow (of abstinence): - binding, bond."]},{"k":"H633","v":["אֱסָר","ʼĕçâr","es-sawr'","(Chaldee); corresponding to H632 in a legal sense; an interdict: - decree."]},{"k":"H634","v":["אֵסַר־חַדּוֹן","ʼÊçar-Chaddôwn","ay-sar' Chad-dohn'","Of foreign derivation; Esarchaddon, an Assyrian king: - Esar-haddon."]},{"k":"H635","v":["אֶסְתֵּר","ʼEçtêr","es-tare'","Of Persian derivation; Ester, the Jewish heroine: - Esther."]},{"k":"H636","v":["אָע","ʼâʻ","aw","(Chaldee); corresponding to H6086; a tree or wood: - timber, wood."]},{"k":"H637","v":["אַף","ʼaph","af","A primitive particle; meaning accession (used as an adverb or conjugation); also or yea; adversatively though: - also, + although, and (furthermore, yet), but, even, + how much less (more, rather than), moreover, with, yea."]},{"k":"H638","v":["אַף","ʼaph","af","(Chaldee); corresponding to H637: - also."]},{"k":"H639","v":["אַף","ʼaph","af","From H599; properly the nose or nostril; hence the face, and occasionally a person; also (from the rapid breathing in passion) ire: - anger (-gry), + before, countenance, face, + forbearing, forehead, + [long-] suffering, nose, nostril, snout, X worthy, wrath."]},{"k":"H640","v":["אָפַד","ʼâphad","aw-fad'","A primitive root (rather a denominative from H636); to gird on (the ephod): - bind, gird."]},{"k":"H641","v":["אֵפֹד","ʼÊphôd","ay-fode'","The same as H646 shortened; Ephod, an Israelite: - Ephod."]},{"k":"H642","v":["אֵפֻדָּה","ʼêphuddâh","ay-food-daw'","Feminine of H646; a girding on (of the ephod); hence generally a plating (of metal): - ephod, ornament."]},{"k":"H643","v":["אַפֶּדֶן","ʼappeden","ap-peh'-den","Apparently of foreign derivation; a pavilion or palace tent: - palace."]},{"k":"H644","v":["אָפָה","ʼâphâh","aw-faw'","A primitive root; to cook, especially to bake: - bake, (-r, [-meats])."]},{"k":"H645","v":["אֵפוֹ","ʼêphôw","ay-fo'","From H6311; strictly a demonstrative particle, here; but used of time, now or then: - here, now, where?"]},{"k":"H646","v":["אֵפוֹד","ʼêphôwd","ay-fode'","Second form is a rare form; probably of foreign derivation; a girdle; specifically the ephod or high priest’s shoulder piece; also generally an image: - ephod."]},{"k":"H647","v":["אֲפִיחַ","ʼĂphîyach","af-ee'-akh","Perhaps from H6315; breeze; Aphiach, an Israelite: - Aphiah."]},{"k":"H648","v":["אָפִיל","ʼâphîyl","aw-feel'","From the same as H651 (in the sense of weakness); unripe: - not grown up."]},{"k":"H649","v":["אַפַּיִם","ʼAppayim","ap-pah'-yim","Dual of H639; two nostrils; Appajim, an Israelite: - Appaim."]},{"k":"H650","v":["אָפִיק","ʼâphîyq","aw-feek'","From H622; properly containing, that is, a tube; also a bed or valley of a stream; also a strong thing or a hero: - brook, channel, mighty, river, + scale, stream, strong piece."]},{"k":"H651","v":["אָפֵל","ʼâphêl","aw-fale'","From an unused root meaning to set as the sun; dusky: - very dark."]},{"k":"H652","v":["אֹפֶל","ʼôphel","o'fel","From the same as H651; dusk: - darkness, obscurity, privily."]},{"k":"H653","v":["אֲפֵלָה","ʼăphêlâh","af-ay-law'","Feminine of H651; duskiness, figuratively misfortune; concretely concealment: - dark, darkness, gloominess, X thick."]},{"k":"H654","v":["אֶפְלָל","ʼEphlâl","ef-lawl'","From H6419; judge; Ephlal, an Israelite: - Ephlal."]},{"k":"H655","v":["אֹפֶן","ʼôphen","o'-fen","From an unused root meaning to revolve; a turn, that is, a season: -  + fitly."]},{"k":"H656","v":["אָפֵס","ʼâphêç","aw-face'","A primitive root; to disappear, that is, cease: - be clean gone (at an end, brought to nought), fail."]},{"k":"H657","v":["אֶפֶס","ʼepheç","eh'-fes","From H656; cessation, that is, an end (especially of the earth); often used adverbially no further; also (like H6466) the ankle (in the dual), as being the extremity of the leg or foot: - ankle, but (only), end, howbeit, less than nothing, nevertheless (where), no, none (beside), not (any, -withstanding), thing of nought, save (-ing), there, uttermost part, want, without (cause)."]},{"k":"H658","v":["אֶפֶס דַּמִּים","ʼEpheç Dammîym","eh'-fes dam-meem'","From H657 and the plural of H1818; boundary of blood drops; Ephes-Dammim, a place in Palestine: - Ephes-dammim."]},{"k":"H659","v":["אֵפַע","ʼêphaʻ","eh'-fah","From an unused root probably meaning to breathe; properly a breath, that is, nothing: - of nought."]},{"k":"H660","v":["אֶפְעֶה","ʼephʻeh","ef-eh'","From H659 (in the sense of hissing); an asp or other venomous serpent: - viper."]},{"k":"H661","v":["אָפַף","ʼâphaph","aw-faf'","A primitive root; to surround: - compassive"]},{"k":"H662","v":["אָפַק","ʼâphaq","aw-fak'","A primitive root; to contain, that is, (reflexively) abstain: - force (oneself), restrain."]},{"k":"H663","v":["אֲפֵק","ʼĂphêq","af-ake'","From H662 (in the sense of strength); fortress; Aphek (or Aphik), the name of three places in Palestine: - Aphek, Aphik."]},{"k":"H664","v":["אֲפֵקָה","ʼĂphêqâh","af-ay-kaw'","Feminine of H663; fortress; Aphekah, a place in Palestine: - Aphekah."]},{"k":"H665","v":["אֵפֶר","ʼêpher","ay'-fer","From an unused root meaning to bestrew; ashes: - ashes."]},{"k":"H666","v":["אֲפֵר","ʼăphêr","af-ayr'","From the same as H665 (in the sense of covering); a turban: - ashes."]},{"k":"H667","v":["אֶפְרֹחַ","ʼephrôach","ef-ro'-akh","From H6524 (in the sense of bursting the shell); the brood of a bird: - young (one)."]},{"k":"H668","v":["אַפִּרְיוֹן","ʼappiryôwn","ap-pir-yone'","Probably of Egyptian derivation; a palanquin: - chariot."]},{"k":"H669","v":["אֶפְרַיִם","ʼEphrayim","ef-rah'-yim","Dual of a masculine form of H672; double fruit; Ephrajim, a son of Joseph; also the tribe descended from him, and its territory: - Ephraim Ephraimites"]},{"k":"H670","v":["אֲפָרְסַי","ʼĂphârᵉçay","af-aw-re-sah'ee","(Chaldee); of foreign origin (only in the plural); an Apharesite or inhabitant of an unknown region of Assyria: - Apharsite."]},{"k":"H671","v":["אֲפַרְסְכַי","ʼĂpharçᵉkay","af-ar-sek-ah'ee","(Chaldee); of foreign origin (only in the plural); an Apharsekite or Apharsathkite, an unknown Assyrian tribe: - Apharsachites, Apharsathchites."]},{"k":"H672","v":["אֶפְרָת","ʼEphrâth","ef-rawth'","From H6509; fruitfulness; Ephrath, another name for Bethlehem; once used in Psa_132:6 perhaps for Ephraim; also of an Israelitish woman: - Ephrath, Ephratah."]},{"k":"H673","v":["אֶפְרָתִי","ʼEphrâthîy","ef-rawth-ee'","Patrial from H672; an Ephrathite or an Ephraimite: - Ephraimite, Ephrathite."]},{"k":"H674","v":["אַפְּתֹם","ʼappᵉthôm","ap-pe-thome'","(Chaldee); of Persian origin; revenue; others at the last: - revenue."]},{"k":"H675","v":["אֶצְבּוֹן","ʼEtsbôwn","ets-bone'","Of uncertain derivation; Etsbon, the name of two Israelites: - Ezbon."]},{"k":"H676","v":["אֶצְבַּע","ʼetsbaʻ","ets-bah'","From the same as H6648 (in the sense of grasping); some thing to seize with, that is, a finger; by analogy a toe: - finger, toe."]},{"k":"H677","v":["אֶצְבַּע","ʼetsbaʻ","ets-bah'","(Chaldee); corresponding to H676: - finger, toe."]},{"k":"H678","v":["אָצִיל","ʼâtsîyl","aw-tseel'","From H680 (in its secondary sense of separation); an extremity (Isa_41:9), also a noble: - chief man, noble."]},{"k":"H679","v":["אַצִּיל","ʼatstsîyl","ats-tseel'","From H680 (in its primary sense of uniting); a joint of the hand (that is, knuckle); also (according to some) a partywall (Eze_41:8): - [arm] hole, great."]},{"k":"H680","v":["אָצַל","ʼâtsal","aw-tsal'","A primitive root; properly to join; used only as a denominative from H681; to separate; hence to select, refuse, contract: - keep, reserve, straiten, take."]},{"k":"H681","v":["אֵצֶל","ʼêtsel","ay'-tsel","From H680 (in the sense of joining); a side; (as a preposition) near: - at, (hard) by, (from) (beside), near (unto), toward, with. See also H1018."]},{"k":"H682","v":["אָצֵל","ʼÂtsêl","aw-tsale'","From H680; noble; Atsel, the name of an Israelite, and of a place in Palestine: - Azal, Azel."]},{"k":"H683","v":["אֲצַלְיָהוּ","ʼĂtsalyâhûw","ats-al-yaw'-hoo","From H680 and H3050 prolonged; Jah has reserved; Atsaljah, an Israelite: - Azaliah."]},{"k":"H684","v":["אֹצֶם","ʼÔtsem","o'-tsem","From an unused root probably meaning to be strong; strength (that is, strong); Otsem, the name of two Israelites: - Ozem."]},{"k":"H685","v":["אֶצְעָדָה","ʼetsʻâdâh","ets-aw-daw'","A variation from H6807; properly a step chain; by analogy a bracelet: - bracelet, chain."]},{"k":"H686","v":["אָצַר","ʼâtsar","aw-tsar'","A primitive root; to store up: - (lay up in ) store, (make) treasure (-r)."]},{"k":"H687","v":["אֶצֶר","ʼEtser","ay'-tser","From H686; treasure; Etser, an Idumaean: - Ezer."]},{"k":"H688","v":["אֶקְדָּח","ʼeqdâch","ek-dawkh'","From H6916; burning, that is, a carbuncle or other fiery gem: - carbuncle."]},{"k":"H689","v":["אַקּוֹ","ʼaqqôw","ak-ko'","Probably from H602; slender, that is, the ibex: - wild goat."]},{"k":"H690","v":["אֲרָא","ʼărâʼ","ar-aw'","Probably for H738; lion; Ara, an Israelite: - Ara."]},{"k":"H691","v":["אֶרְאֵל","ʼerʼêl","er-ale'","Probably for H739; a hero (collectively): - valiant one."]},{"k":"H692","v":["אַרְאֵלִי","ʼArʼêlîy","ar-ay-lee'","From H691; heroic; Areli (or an Arelite, collectively), an Israelite and his descendants: - Areli, Arelites."]},{"k":"H693","v":["אָרַב","ʼârab","aw-rab'","A primitive root; to lurk: - (lie in) ambush (-ment), lay (lie in) wait."]},{"k":"H694","v":["אֲרָב","ʼĂrâb","ar-awb'","From H693; ambush; Arab, a place in Palestine: - Arab."]},{"k":"H695","v":["אֶרֶב","ʼereb","eh'-reb","From H693; ambuscade: - den, lie in wait."]},{"k":"H696","v":["אֹרֶב","ʼôreb","o'-reb","The same as H695: - wait."]},{"k":"H697","v":["אַרְבֶּה","ʼarbeh","ar-beh'","From H7235; a locust (from its rapid increase): - grasshopper, locust."]},{"k":"H698","v":["אׇרֳבָה","ʼorŏbâh","or-ob-aw'","Feminine of H696 (only in the plural); ambuscades: - spoils."]},{"k":"H699","v":["אֲרֻבָּה","ʼărubbâh","ar-oob-baw'","Feminine participle passive of H693 (as if for lurking); a lattice; (by implication) a window, dove cot (because of the pigeon holes), chimney (with its apertures for smoke), sluice (with openings for water): - chimney, window."]},{"k":"H700","v":["אֲרֻבּוֹת","ʼĂrubbôwth","ar-oob-both","Plural of H699; Arubboth, a place in Palestine: - Aruboth."]},{"k":"H701","v":["אַרְבִּי","ʼArbîy","ar-bee'","Patrial from H694; an Arbite or native of Arab: - Arbite."]},{"k":"H702","v":["אַרְבַּע","ʼarbaʻ","ar-bah'","The second form is the masculine form; from H7251; four: - four."]},{"k":"H703","v":["אַרְבַּע","ʼarbaʻ","ar-bah'","(Chaldee); corresponding to H702: - four."]},{"k":"H704","v":["אַרְבַּע","ʼArbaʻ","ar-bah'","The same as H702; Arba, one of the Anakim: - Arba."]},{"k":"H705","v":["אַרְבָּעִים","ʼarbâʻîym","ar-baw-eem'","Multiple of H702; forty: - forty."]},{"k":"H706","v":["אַרְבַּעְתַּיִם","ʼarbaʻtayim","ar-bah-tah'-yim","Dual of H702; fourfold: - fourfold."]},{"k":"H707","v":["אָרַג","ʼârag","aw-rag'","A primitive root; to plait or weave: - weaver (-r)."]},{"k":"H708","v":["אֶרֶג","ʼereg","eh'-reg","From H707; a weaving; a braid; also a shuttle: - beam, weaver’s shuttle."]},{"k":"H709","v":["אַרְגֹּב","ʼArgôb","ar-gobe'","From the same as H7263; stony; Argob, a district of Palestine: - Argob."]},{"k":"H710","v":["אַרְגְּוָן","ʼargᵉvân","arg-ev-awn'","A variation for H713; purple: - purple."]},{"k":"H711","v":["אַרְגְּוָן","ʼargᵉvân","arg-ev-awn'","(Chaldee); corresponding to H710: - scarlet."]},{"k":"H712","v":["אַרְגָּז","ʼargâz","ar-gawz'","Perhaps from H7264 (in the sense of being suspended); a box (as a pannier): - coffer."]},{"k":"H713","v":["אַרְגָּמָן","ʼargâmân","ar-gaw-mawn'","Of foreign origin; purple (the color or the dyed stuff): - purple."]},{"k":"H714","v":["אַרְדְּ","ʼArd","ard","From an unused root probably meaning to wander; fugitive; Ard, the name of two Israelites: - Ard."]},{"k":"H715","v":["אַרְדּוֹן","ʼArdôwn","ar-dohn'","From the same as H714; roaming; Ardon, an Israelite: - Ardon."]},{"k":"H716","v":["אַרְדִּי","ʼArdîy","ar-dee","Patronymic from H714; an Ardite (collectively) or descendant of Ard: - Ardites."]},{"k":"H717","v":["אָרָה","ʼârâh","aw-raw'","A primitive root; to pluck: - gather, pluck."]},{"k":"H718","v":["אֲרוּ","ʼărûw","ar-oo'","(Chaldee); probably akin to H431; lo!: - behold, lo."]},{"k":"H719","v":["אַרְוַד","ʼArvad","ar-vad'","Probably from H7300; a refuge for the roving; Arvad, an island city of Palestine: - Arvad."]},{"k":"H720","v":["אֲרוֹד","ʼĂrôwd","ar-ode'","An orthographical variation of H719; fugitive; Arod, an Israelite: - Arod."]},{"k":"H721","v":["אַרְוָדִי","ʼArvâdîy","ar-vaw-dee'","Patrial from H719; an Arvadite or citizen of Arvad: - Arvadite."]},{"k":"H722","v":["אֲרוֹדִי","ʼĂrôwdîy","ar-o-dee'","Patronymic from H721; an Arodite or descendant of Arod: - Arodi, Arodites."]},{"k":"H723","v":["אֻרְוָה","ʼurvâh","oor-vaw'","From H717 (in the sense of feeding); a herding place for an animal: - stall."]},{"k":"H724","v":["אֲרוּכָה","ʼărûwkâh","ar-oo-kaw'","Feminine passive participle of H748 (in the sense of restoring to soundness); wholeness (literally or figuratively): - health, made up, perfected."]},{"k":"H725","v":["אֲרוּמָה","ʼĂrûwmâh","ar-oo-maw'","A variation of H7316; height; Arumah, a place in Palestine: - Arumah."]},{"k":"H726","v":["אֲרוֹמִי","ʼĂrôwmîy","ar-o-mee'","A clerical error for H130; an Edomite: - Syrian."]},{"k":"H727","v":["אָרוֹן","ʼârôwn","aw-rone'","From H717 (in the sense of gathering); a box: - ark, chest, coffin."]},{"k":"H728","v":["אֲרַוְנָה","ʼĂravnâh","ar-av-naw'","All forms by orthographical variation for H711; Aravnah (or Arnijah or Ornah), a Jebusite: - Araunah."]},{"k":"H729","v":["אָרַז","ʼâraz","aw-raz'","A primitive root; to be firm; used only in the passive participle as a denominative from H730; of cedar: - made of cedar."]},{"k":"H730","v":["אֶרֶז","ʼerez","eh-rez'","From H729; a cedar tree (from the tenacity of its roots): - cedar (tree)."]},{"k":"H731","v":["אַרְזָה","ʼarzâh","ar-zaw'","Feminine of H730; cedar wainscoting: - cedar work."]},{"k":"H732","v":["אָרַח","ʼârach","aw-rakh'","A primitive root; to travel: - go, wayfaring (man)."]},{"k":"H733","v":["אָרַח","ʼÂrach","aw-rakh'","From H732; wayfaring; Arach, the name of three Israelites: - Arah."]},{"k":"H734","v":["אֹרַח","ʼôrach","o'-rakh","From H732; a well trodden road (literally or figuratively); also a caravan: - manner, path, race, rank, traveller, troop, [by-, high-] way."]},{"k":"H735","v":["אֹרַח","ʼôrach","o'-rakh","(Chaldee); corresponding to H734; a road: - way."]},{"k":"H736","v":["אֹרְחָה","ʼôrᵉchâh","o-rekh-aw'","Feminine active participle of H732; a caravan: - (travelling) company."]},{"k":"H737","v":["אֲרֻחָה","ʼăruchâh","ar-oo-khaw'","Feminine passive participle of H732 (in the sense of appointing); a ration of food: - allowance, diet, dinner, victuals."]},{"k":"H738","v":["אֲרִי","ʼărîy","ar-ee'","From H717 (in the sense of violence); a lion: - (young) lion, + pierce [from the margin]."]},{"k":"H739","v":["אֲרִיאֵל","ʼărîyʼêl","ar-ee-ale'","From H738 and H410; lion of God, that is, heroic: - lionlike men."]},{"k":"H740","v":["אֲרִיאֵל","ʼĂrîyʼêl","ar-ee-ale'","The same as H739; Ariel, a symbolical name for Jerusalem, also the name of an Israelite: - Ariel."]},{"k":"H741","v":["אֲרִאֵיל","ʼăriʼêyl","ar-ee-ale'","Either by transposition for H739 or more probable, an orthographical variation for H2025; the altar of the Temple: - altar."]},{"k":"H742","v":["אֲרִידַי","ʼĂrîyday","ar-ee-dah'-ee","Of Persian origin; Aridai, a son of Haman: - Aridai."]},{"k":"H743","v":["אֲרִידָתָא","ʼĂrîydâthâʼ","ar-ee-daw-thaw'","Of Persian origin; Aridatha, a son of Haman: - Aridatha."]},{"k":"H744","v":["אַרְיֵה","ʼaryêh","ar-yay'","(Chaldee); corresponding to H738: - lion."]},{"k":"H745","v":["אַרְיֵה","ʼAryêh","ar-yay'","The same as H738; lion; Arjeh, an Israelite: - Arieh."]},{"k":"H746","v":["אֲרְיוֹךְ","ʼĂryôwk","ar-yoke'","Of foreign origin; Arjok, the name of two Babylonians: - Arioch."]},{"k":"H747","v":["אֲרִיסַי","ʼĂrîyçay","ar-ee-sah'-ee","Of Persian origin; Arisai, a son of Haman: - Arisai."]},{"k":"H748","v":["אָרַךְ","ʼârak","aw-rak'","A primitive root; to be (causatively make) long (literally or figuratively): - defer, draw out, lengthen, (be, become, make, pro-) long, + (out-, over-) live, tarry (long)."]},{"k":"H749","v":["אֲרַךְ","ʼărak","ar-ak'","(Chaldee); properly corresponding to H748, but used only in the sense of reaching to a given point; to suit: - be meet."]},{"k":"H750","v":["אָרֵךְ","ʼârêk","aw-rake'","From H748; long: - long [-suffering, -winged], patient, slow [to anger]."]},{"k":"H751","v":["אֶרֶךְ","ʼErek","eh'-rek","From H748; length; Erek, a place in Babylon: - Erech."]},{"k":"H752","v":["אָרֹךְ","ʼârôk","aw-roke'","From H748; long: - long."]},{"k":"H753","v":["אֹרֶךְ","ʼôrek","o'rek'","From H748; length: -  + for ever, length, long."]},{"k":"H754","v":["אַרְכָּא","ʼarkâʼ","ar-kaw'","(Chaldee); from H749; length: - lengthening, prolonged."]},{"k":"H755","v":["אַרְכֻבָה","ʼarkubâh","ar-koo-baw'","(Chaldee); from an unused root corresponding to H7392 (in the sense of bending the knee); the knee: - knee."]},{"k":"H756","v":["אַרְכְּוַי","ʼArkᵉvay","ar-kev-ah'ee","(Chaldee); patrial from H751; an Arkevite (collectively) or native of Erek: - Archevite."]},{"k":"H757","v":["אַרְכִּי","ʼArkîy","ar-kee'","Patrial from another place (in Palestine) of similar name with H751; an Arkite or native of Erek: - Archi, Archite."]},{"k":"H758","v":["אֲרָם","ʼĂrâm","arawm'","From the same as H759; the highland; Aram or Syria, and its inhabitants; also the name of a son of Shem, a grandson of Nahor, and of an Israelite: - Aram, Mesopotamia, Syria, Syrians."]},{"k":"H759","v":["אַרְמוֹן","ʼarmôwn","ar-mone'","From an unused root (meaning to be elevated); a citadel (from its height): - castle, palace. Compare H2038."]},{"k":"H760","v":["אֲרַם צוֹבָה","ʼĂram Tsôwbâh","ar-am' tso-baw'","From H758 and H6678; Aram of Tsoba (or Coele-syria): - Aram-zobah."]},{"k":"H761","v":["אֲרַמִּי","ʼĂrammîy","ar-am-mee'","Patrial from H758; an Aramite or Aramaean: - Syrian, Aramitess."]},{"k":"H762","v":["אֲרָמִית","ʼĂrâmîyth","ar-aw-meeth'","Feminine of H761; (only adverbially) in Aramaean: - in the Syrian language (tongue), in Syriack."]},{"k":"H763","v":["אֲרַם נַהֲרַיִם","ʼĂram Nahărayim","ar-am' nah-har-ah'-yim","From H758 and the dual of H5104; Aram of (the) two rivers (Euphrates and Tigris) or Mesopotamia: - Aham-naharaim, Mesopotamia."]},{"k":"H764","v":["אַרְמֹנִי","ʼArmônîy","ar-mo-nee'","From H759; palatial; Armoni, an Israelite: - Armoni."]},{"k":"H765","v":["אֲרָן","ʼĂrân","ar-awn'","From H7442; stridulous; Aran, an Edomite: - Aran."]},{"k":"H766","v":["אֹרֶן","ʼôren","o'-ren","From the same as H765 (in the sense of strength); the ash tree (from its toughness): - ash."]},{"k":"H767","v":["אֹרֶן","ʼÔren","o'-ren","The same as H766; Oren, an Israelite: - Oren."]},{"k":"H768","v":["אַרְנֶבֶת","ʼarnebeth","ar-neh'-beth","Of uncertain derivation; the hare: - hare."]},{"k":"H769","v":["אַרְנוֹן","ʼArnôwn","ar-nohn'","From H7442; a brawling stream; the Arnon, a river east of the Jordan; also its territory: - Arnon."]},{"k":"H770","v":["אַרְנָן","ʼArnân","ar-nawn'","Probably from the same as H769; noisy; Arnan, an Israelite: - Arnan."]},{"k":"H771","v":["אׇרְנָן","ʼOrnân","or-nawn'","Probably from H766; strong; Ornan, a Jebusite: - Ornan. See H728."]},{"k":"H772","v":["אֲרַע","ʼăraʻ","ar-ah'","(Chaldee); corresponding to H776; the earth; by implication (figuratively) low: - earth, inferior."]},{"k":"H773","v":["אַרְעִית","ʼarʻîyth","arh-eeth'","(Chaldee); feminine of H772; the bottom: - bottom."]},{"k":"H774","v":["אַרְפָּד","ʼArpâd","ar-pawd'","From H7502; spread out; Arpad, a place in Syria: - Arpad, Arphad."]},{"k":"H775","v":["אַרְפַּכְשַׁד","ʼArpakshad","ar-pak-shad'","Probably of foreign origin; Arpakshad, a son of Noah; also the region settled by him: - Arphaxad."]},{"k":"H776","v":["אֶרֶץ","ʼerets","eh'-rets","From an unused root probably meaning to be firm; the earth (at large, or partitively a land): -    X common, country, earth, field, ground, land, X nations, way, + wilderness, world."]},{"k":"H777","v":["אַרְצָא","ʼartsâʼ","ar-tsaw'","From H776; earthiness; Artsa, an Israelite: - Arza."]},{"k":"H778","v":["אֲרַק","ʼăraq","ar-ak'","(Chaldee); by transmutation for H772; the earth: - earth."]},{"k":"H779","v":["אָרַר","ʼârar","aw-rar'","A primitive root; to execrate: -  X bitterly curse."]},{"k":"H780","v":["אֲרָרַט","ʼĂrâraṭ","ar-aw-rat'","Of foreign origin; Ararat (or rather Armenia): - Ararat, Armenia."]},{"k":"H781","v":["אָרַשׂ","ʼâras","aw-ras'","A primitive root; to engage for matrimony: - betroth, espouse."]},{"k":"H782","v":["אֲרֶשֶׁת","ʼăresheth","ar-eh'-sheth","From H781 (in the sense of desiring to possess); a longing for: - request."]},{"k":"H783","v":["אַרְתַּחְשַׁשְׁתָּא","ʼArtachshashtâʼ","ar-takh-shash-taw'","Of foreign origin; Artachshasta (or Artaxerxes), a title (rather than name) of several Persian kings: - Artaxerxes."]},{"k":"H784","v":["אֵשׁ","ʼêsh","aysh","A primitive word; fire (literally or figuratively): - burning, fiery, fire, flaming, hot."]},{"k":"H785","v":["אֵשׁ","ʼêsh","aysh","(Chaldee); corresponding to H784: - flame."]},{"k":"H786","v":["אִשׁ","ʼish","eesh","Identical (in origin and formation) with H784; entity; used only adverbially, there is or are: - are there, none can. Compare H3426."]},{"k":"H787","v":["אֹשׁ","ʼôsh","ohsh","(Chaldee); corresponding (by transposition and abbreviation) to H803; a foundation: - foundation."]},{"k":"H788","v":["אַשְׁבֵּל","ʼAshbêl","ash-bale'","Probably from the same as H7640; flowing; Ashbel, an Israelite: - Ashbel."]},{"k":"H789","v":["אַשְׁבֵּלִי","ʼAshbêlîy","ash-bay-lee'","Patronymic from H788; an Ashbelite (collectively) or descendant of Ashbel: - Ashbelites."]},{"k":"H790","v":["אֶשְׁבָּן","ʼEshbân","esh-bawn'","Probably from the same as H7644; vigorous; Eshban, an Idumaean: - Eshban."]},{"k":"H791","v":["אַשְׁבֵּעַ","ʼAshbêaʻ","ash-bay'-ah","From H7650; adjurer; Asbea, an Israelite: - Ashbea."]},{"k":"H792","v":["אֶשְׁבַּעַל","ʼEshbaʻal","esh-bah'-al","From H376 and H1168; man of Baal; Eshbaal (or Ishbosheth), a son of King Saul: - Eshbaal."]},{"k":"H793","v":["אֶשֶׁד","ʼeshed","eh'-shed","From an unused root meaning to pour; an outpouring: - stream."]},{"k":"H794","v":["אֲשֵׁדָה","ʼăshêdâh","ash-ay-daw'","Feminine of H793; a ravine: - springs."]},{"k":"H795","v":["אַשְׁדּוֹד","ʼAshdôwd","ash-dode'","From H7703; ravager; Ashdod, a place in Palestine: - Ashdod."]},{"k":"H796","v":["אַשְׁדּוֹדִי","ʼAshdôwdîy","ash-do-dee'","Patrial from H795; an Ashdodite (often collectively) or inhabitant of Ashdod: - Ashdodites, of Ashdod."]},{"k":"H797","v":["אַשְׁדּוֹדִית","ʼAshdôwdîyth","ash-do-deeth'","Feminine of H796; (only adverbially) in the language of Ashdod: - in the speech of Ashdod."]},{"k":"H798","v":["אַשְׁדּוֹת הַפִּסְגָּה","ʼAshdôwth hap-Piçgâh","ash-doth' hap-pisgaw'","From the plural of H794 and H6449 with the article interposed; ravines of the Pisgah; Ashdoth-Pisgah, a place east of the Jordan: - Ashdoth-pisgah."]},{"k":"H799","v":["אֶשְׁדָּת","ʼeshdâth","esh-dawth'","From H784 and H1881; a fire law: - fiery law."]},{"k":"H800","v":["אֶשָּׁה","ʼeshshâh","esh-shaw'","Feminine of H784; fire: - fire."]},{"k":"H801","v":["אִשָּׁה","ʼishshâh","ish-shaw'","The same as H800, but used in a liturgical sense; properly a burnt offering; but occasionally of any sacrifice: - (offering, sacrifice), (made) by fire."]},{"k":"H802","v":["אִשָּׁה","ʼishshâh","ish-shaw'","The first form is the feminine of H376 or H582; the second form is an irregular plural; a woman (used in the same wide sense as H582).: - [adulter]ess, each, every, female, X many, + none, one, + together, wife, woman. Often unexpressed in English."]},{"k":"H803","v":["אֲשׁוּיָה","ʼăshûwyâh","ash-oo-yah'","Feminine passive participle from an unused root meaning to found; foundation: - foundation."]},{"k":"H804","v":["אַשּׁוּר","ʼAshshûwr","ash-shoor'","Apparently from H833 (in the sense of successful); Ashshur, the second son of Shem; also his descendants and the country occupied by them (that is, Assyria), its region and its empire: - Asshur, Assur, Assyria, Assyrians. See H838."]},{"k":"H805","v":["אֲשׁוּרִי","ʼĂshûwrîy","ash-oo-ree'","From a patrial word of the same form as H804; an Ashurite (collectively) or inhabitant of Ashur, a district in Palestine: - Asshurim, Ashurites."]},{"k":"H806","v":["אַשְׁחוּר","ʼAshchûwr","ash-khoor'","Probably from H7835; black; Ashchur, an Israelite: - Ashur."]},{"k":"H807","v":["אַשִׁימָא","ʼAshîymâʼ","ash-ee-maw'","Of foreign origin; Ashima, a deity of Hamath: - Ashima."]},{"k":"H808","v":["אָשִׁישׁ","ʼâshîysh","aw-sheesh'","From the same as H784 (in the sense of pressing down firmly; compare H803); a (ruined) foundation: - foundation."]},{"k":"H809","v":["אֲשִׁישָׁה","ʼăshîyshâh","ash-ee-shaw'","Feminine of H808; something closely pressed together, that is, a cake of raisins or other comfits: - flagon."]},{"k":"H810","v":["אֶשֶׁךְ","ʼeshek","eh'-shek","From an unused root (probably meaning to bunch together); a testicle (as a lump): - stone."]},{"k":"H811","v":["אֶשְׁכּוֹל","ʼeshkôwl","esh-kole'","Probably prolonged from H810; a bunch of grapes or other fruit: - cluster (of grapes)."]},{"k":"H812","v":["אֶשְׁכֹּל","ʼEshkôl","esh-kole'","The same as H811; Eshcol, the name of an Amorite, also of a valley in Palestine: - Eshcol."]},{"k":"H813","v":["אַשְׁכְּנַז","ʼAshkᵉnaz","ash-ken-az'","Of foreign origin; Ashkenaz, a Japhethite, also his descendants: - Ashkenaz."]},{"k":"H814","v":["אֶשְׁכָּר","ʼeshkâr","esh-cawr'","For H7939; a gratuity: - gift, present."]},{"k":"H815","v":["אֵשֶׁל","ʼêshel","ay'-shel","From a root of uncertain signification; a tamarisk tree; by extension a grove of any kind: - grove, tree."]},{"k":"H816","v":["אָשַׁם","ʼâsham","aw-sham'","A primitive root; to be guilty; by implication to be punished or perish: -  X certainly, be (-come, made) desolate, destroy, X greatly, be (-come, found, hold) guilty, offend (acknowledge offence), trespassive"]},{"k":"H817","v":["אָשָׁם","ʼâshâm","aw-shawm'","From H816; guilt; by implication a fault; also a sin offering: - guiltiness, (offering for) sin, trespass (offering)."]},{"k":"H818","v":["אָשֵׁם","ʼâshêm","aw-shame'","From H816; guilty; hence presenting a sin offering: - one which is faulty, guilty."]},{"k":"H819","v":["אַשְׁמָה","ʼashmâh","ash-maw'","Feminine of H817; guiltiness, a fault, the presentation of a sin offering: - offend, sin, (cause of) trespass (-ing, offering)."]},{"k":"H820","v":["אַשְׁמָן","ʼashmân","ash-mawn'","Probably from H8081; a fat field: - desolate place."]},{"k":"H821","v":["אַשְׁמֻרָה","ʼashmurâh","ash-moo-raw'","(Feminine) from H8104; a night watch: - watch."]},{"k":"H822","v":["אֶשְׁנָב","ʼeshnâb","esh-nawb'","Apparently from an unused root (Probably meaning to leave interstices); a latticed window: - casement, lattice."]},{"k":"H823","v":["אַשְׁנָה","ʼAshnâh","ash-naw'","Probably a variation for H3466; Ashnah, the name of two places in Palestine: - Ashnah."]},{"k":"H824","v":["אֶשְׁעָן","ʼEshʻân","esh-awn'","From H8172; support; Eshan, a place in Palestine: - Eshean."]},{"k":"H825","v":["אַשָּׁף","ʼashshâph","ash-shawf'","From an unused root (probably meaning to lisp, that is, practice enchantment); a conjurer: - astrologer."]},{"k":"H826","v":["אַשָּׁף","ʼashshâph","ash-shawf'","(Chaldee); corresponding to H825: - astrologer."]},{"k":"H827","v":["אַשְׁפָּה","ʼashpâh","ash-paw'","Perhaps (feminine) from the same as H825 (in the sense of covering); a quiver or arrow case: - quiver."]},{"k":"H828","v":["אַשְׁפְּנַז","ʼAshpᵉnaz","ash-pen-az'","Of foreign origin; Ashpenaz, a Babylonian eunuch: - Ashpenaz."]},{"k":"H829","v":["אֶשְׁפָּר","ʼeshpâr","esh-pawr'","Of uncertain derivation; a measured portion: - good piece (of flesh)."]},{"k":"H830","v":["אַשְׁפֹּת","ʼashpôth","ash-pohth'","Plural of a noun of the same form as H827, from H8192 (in the sense of scraping); a heap of rubbish or filth: - dung (hill)."]},{"k":"H831","v":["אַשְׁקְלוֹן","ʼAshqᵉlôwn","ash-kel-one'","Probably from H8254 in the sense of weighing place (that is, mart); Ashkelon, a place in Palestine: - Ashkelon, Askalon."]},{"k":"H832","v":["אֶשְׁקְלוֹנִי","ʼEshqᵉlôwnîy","esh-kel-o-nee'","Patrial from H831; an Ashkelonite (collectively) or inhabitant of Ashkelon: - Eshkalonites."]},{"k":"H833","v":["אָשַׁר","ʼâshar","aw-shar'","A primitive root; to be straight (used in the widest sense, especially to be level, right, happy); figuratively to go forward, be honest, prosper: - (call, be) bless (-ed, happy), go, guide, lead, relieve."]},{"k":"H834","v":["אֲשֶׁר","ʼăsher","ash-er'","A primitive relative pronoun (of every gender and number); who, which, what, that; also (as adverb and conjunction) when, where, how, because, in order that, etc.: - X after, X alike, as (soon as), because, X every, for, + forasmuch, + from whence, + how (-soever), X if, (so) that ([thing] which, wherein), X though, + until, + whatsoever, when, where (+ -as, -in, -of, -on, -soever, -with), which, whilst, + whither (-soever), who (-m, -soever, -se). As it is indeclinable, it is often accompanied by the personal pronoun expletively, used to show the connection."]},{"k":"H835","v":["אֶשֶׁר","ʼesher","eh'-sher","From H833; happiness; only in masculine plural construction as interjection, how happy!: - blessed, happy."]},{"k":"H836","v":["אָשֵׁר","ʼÂshêr","aw-share'","From H833; happy; Asher, a son of Jacob, and the tribe descended from him, with its territory; also a place in Palestine: - Asher."]},{"k":"H837","v":["אֹשֶׁר","ʼôsher","o'-sher","From H833; happiness: - happy."]},{"k":"H838","v":["אָשֻׁר","ʼâshur","aw-shoor'","From H833 in the sense of going; a step: - going, step."]},{"k":"H839","v":["אֲשֻׁר","ʼăshur","ash-oor'","Contracted for H8391; the cedar tree or some other light elastic wood: - Ashurite."]},{"k":"H840","v":["אֲשַׂרְאֵל","ʼĂsarʼêl","as-ar-ale'","By orthographical variation from H833 and H410; right of God; Asarelah, an Israelite: - Asareel."]},{"k":"H841","v":["אֲשַׂרְאֵלָה","ʼĂsarʼêlâh","as-ar-ale'-aw","From the same as H840; right towards God; Asarelah, an Israelite: - Asarelah. Compare H3840."]},{"k":"H842","v":["אֲשֵׁרָה","ʼăshêrâh","ash-ay-raw'","From H833; happy; asherah (or Astarte) a Phoenician goddess; also an image of the same: - grove. Compare H6253."]},{"k":"H843","v":["אָשֵׁרִי","ʼÂshêrîy","aw-shay-ree'","Patronymic from H836; an Asherite (collectively) or descendant of Asher: - Asherites."]},{"k":"H844","v":["אַשְׂרִיאֵל","ʼAsrîyʼêl","as-ree-ale'","An orthographical variation for H840; Asriel, the name of two Israelites: - Ashriel, Asriel."]},{"k":"H845","v":["אַשְׂרִאֵלִי","ʼAsriʼêlîy","as-ree-ale-ee'","Patronymic from H844; an Asrielite (collectively) or descendant of Asriel: - Asrielites."]},{"k":"H846","v":["אֻשַּׁרְנָא","ʼushsharnâʼ","oosh-ar-naw'","(Chaldee); from a root corresponding to H833; a wall (from its uprightness): - wall."]},{"k":"H847","v":["אֶשְׁתָּאֹל","ʼEshtâʼôl","esh-taw-ole'","Probably from H7592; intreaty; Eshtaol, a place in Palestine: - Eshtaol."]},{"k":"H848","v":["אֶשְׁתָּאֻלִי","ʼEshtâʼulîy","esh-taw-oo-lee'","Patrial from H847; an Eshtaolite (collectively) or inhabitant of Eshtaol: - Eshtaulites."]},{"k":"H849","v":["אֶשְׁתַּדּוּר","ʼeshtaddûwr","esh-tad-dure'","(Chaldee); from H7712 (in a bad sense); rebellion: - sedition."]},{"k":"H850","v":["אֶשְׁתּוֹן","ʼEshtôwn","esh-tone'","Probably from the same as H7764; restful; Eshton, an Israelite: - Eshton."]},{"k":"H851","v":["אֶשְׁתְּמֹעַ","ʼEshtᵉmôaʻ","esh-tem-o'-ah","From H8085 (in the sense of obedience); Eshtemoa or Eshtemoh, a place in Palestine: - Eshtemoa, Eshtemoh."]},{"k":"H852","v":["אָת","ʼâth","awth","(Chaldee); corresponding to H226; a portent: - sign."]},{"k":"H853","v":["אֵת","ʼêth","ayth","Apparently contracted from H226 in the demonstrative sense of entity; properly self (but generally used to point out more definitely the object of a verb or preposition, even or namely): - (As such unrepresented in English.)"]},{"k":"H854","v":["אֵת","ʼêth","ayth","Probably from H579; properly nearness (used only as a preposition or adverb), near; hence generally with, by, at, among, etc.: - against, among, before, by, for, from, in (-to), (out) of, with. Often with another preposition prefixed."]},{"k":"H855","v":["אֵת","ʼêth","ayth","Of uncertain derivation; a hoe or other digging implement: - coulter, plowshare."]},{"k":"H856","v":["אֶתְבַּעַל","ʼEthbaʻal","eth-bah'-al","From H854 and H1168; with Baal; Ethbaal, a Phoenician king: - Ethbaal."]},{"k":"H857","v":["אָתָה","ʼâthâh","aw-thaw'","A primitive root (collateral to H225 contracted); to arrive: - (be-, things to) come (upon), bring."]},{"k":"H858","v":["אָתָה","ʼâthâh","aw-thaw'","(Chaldee); corresponding to H857: -    (be-) come, bring."]},{"k":"H859","v":["אַתָּה","ʼattâh","at-taw'","A primitive pronoun of the second person; thou and thee, or (plural) ye and you: - thee, thou, ye, you."]},{"k":"H860","v":["אָתוֹן","ʼâthôwn","aw-thone'","Probably from the same as H386 (in the sense of patience); a female ass (from its docility): - (she) ass."]},{"k":"H861","v":["אַתּוּן","ʼattûwn","at-toon'","(Chaldee); probably corresponding to H784; probably a fireplace, that is, furnace: - furnace."]},{"k":"H862","v":["אַתּוּק","ʼattûwq","at-tooke'","From H5423 in the sense of decreasing; a ledge or offset in a building: - gallery."]},{"k":"H863","v":["אִתַּי","ʼIttay","it-tah'ee","From H854; near; Ittai or Ithai, the name of a Gittite and of an Israelite: - Ithai, Ittai."]},{"k":"H864","v":["אֵתָם","ʼÊthâm","ay-thawm'","Of Egyptian derivation; Etham, a place in the Desert: - Etham."]},{"k":"H865","v":["אֶתְמוֹל","ʼethmôwl","eth-mole'","Probably from H853 or H854 and H4136; heretofore; definitely yesterday: -  + before (that) time, + heretofore, of late (old), + times past, yester[day]."]},{"k":"H866","v":["אֶתְנָה","ʼethnâh","eth-naw'","From H8566; a present (as the price of harlotry): - reward."]},{"k":"H867","v":["אֶתְנִי","ʼEthnîy","eth-nee'","Perhaps from H866; munificence; Ethni, an Israelite: - Ethni."]},{"k":"H868","v":["אֶתְנַן","ʼethnan","eth-nan'","The same as H866; a gift (as the price of harlotry or idolatry): - hire, reward."]},{"k":"H869","v":["אֶתְנַן","ʼEthnan","eth-nan'","The same as H868 in the sense of H867; Ethnan, an Israelite: - Ethnan."]},{"k":"H870","v":["אֲתַר","ʼăthar","ath-ar'","(Chaldee); from a root corresponding to that of H871; a place; (adverbially) after: - after, place."]},{"k":"H871","v":["אֲתָרִים","ʼĂthârîym","ath-aw-reem'","Plural from an unused root (probably meaning to step); places; Atharim, a place near Palestine: - spies."]},{"k":"H872","v":["בְּאָה","bᵉʼâh","be-aw'","From H935; an entrance to a building: - entry."]},{"k":"H873","v":["בִּאוּשׁ","biʼûwsh","be-oosh'","(Chaldee); from H888; wicked: - bad."]},{"k":"H874","v":["בָּאַר","bâʼar","baw-ar'","A primitive root; to dig; by analogy to engrave; figuratively to explain: - declare, (make) plain (-ly)."]},{"k":"H875","v":["בְּאֵר","bᵉʼêr","be-ayr'","From H874; a pit; especially a well: - pit, well."]},{"k":"H876","v":["בְּאֵר","Bᵉʼêr","be-ayr'","The same as H875; Beer, a place in the Desert, also one in Palestine: - Beer."]},{"k":"H877","v":["בֹּאר","bôʼr","bore","From H874; a cistern: - cistern."]},{"k":"H878","v":["בְּאֵרָא","Bᵉʼêrâʼ","be-ay-raw'","From H875; a well; Beera, an Israelite: - Beera."]},{"k":"H879","v":["בְּאֵר אֵלִים","Bᵉʼêr ʼÊlîym","be-ayr' ay-leem'","From H875 and the plural of H410; well of heroes; Beer-elim, a place in the Desert: - Beer-elim."]},{"k":"H880","v":["בְּאֵרָה","Bᵉʼêrâh","be-ay-raw'","The same as H878; Berrah, an Israelite: - Beerah."]},{"k":"H881","v":["בְּאֵרוֹת","Bᵉʼêrôwth","be-ay-rohth'","Feminine plural of H875; wells; Beeroth, a place in Palestine: - Beeroth."]},{"k":"H882","v":["בְּאֵרִי","Bᵉʼêrîy","be-ay-ree'","From H875; fountained; Beeri, the name of a Hittite and of an Israelite: - Beeri."]},{"k":"H883","v":["בְּאֵר לַחַי רֹאִי","Bᵉʼêr la-Chay Rôʼîy","be-ayr' lakh-ah'ee ro-ee'","From H875 and H2416 (with prefix) and H7208; well of a living (One) my Seer; Beer-lachai-roi, a place in the Desert: - Beer-lahai-roi."]},{"k":"H884","v":["בְּאֵר שֶׁבַע","Bᵉʼêr Shebaʻ","be-ayr' sheh'-bah","From H875 and H7651 (in the sense of H7650); well of an oath; Beer Sheba, a place in Palestine: - Beer-shebah."]},{"k":"H885","v":["בְּאֵרֹת בְּנֵי־יַעֲקַן","Bᵉʼêrôth Bᵉnêy-Yaʻăqan","be-ay-roth' be-nay' yah-a-can'","From the feminine plural of H875, and the plural contraction of H1121, and H3292; wells of (the) sons of Jaakan; Beeroth Bene-Jaakan, a place in the Desert: - Beeroth of the children of Jaakan."]},{"k":"H886","v":["בְּאֵרֹתִי","Bᵉʼêrôthîy","be-ay-ro-thee'","Patrial from H881; a Beerothite or inhabitant of Beeroth: - Beerothite."]},{"k":"H887","v":["בָּאַשׁ","bâʼash","baw-ash'","A primitive root; to smell bad; figuratively to be offensive morally: - (make to) be abhorred (had in abomination, loathsome, odious), (cause a, make to) stink (-ing savour), X utterly."]},{"k":"H888","v":["בְּאֵשׁ","bᵉʼêsh","be-aysh'","(Chaldee); corresponding to H887: - displease."]},{"k":"H889","v":["בְּאֹשׁ","bᵉʼôsh","be-oshe'","From H887; a stench: - stink."]},{"k":"H890","v":["בׇּאְשָׁה","boʼshâh","bosh-aw'","Feminine of H889; stink weed or any other noxious or useless plant: - cockle."]},{"k":"H891","v":["בְּאֻשִׁים","bᵉʼushîym","be-oo-sheem'","Plural of H889; poison berries: - wild grapes."]},{"k":"H892","v":["בָּבָה","bâbâh","baw-baw'","Feminine active participle of an unused root meaning to hollow out; something hollowed (as a gate), that is, the pupil of the eye: - apple [of the eye]."]},{"k":"H893","v":["בֵּבַי","Bêbay","bay-bah'ee","Probably of foreign origin; Bebai, an Israelite: - Bebai."]},{"k":"H894","v":["בָּבֶל","Bâbel","baw-bel'","From H1101; confusion; Babel (that is, Babylon), including Babylonia and the Babylonian empire: - Babel, Babylon."]},{"k":"H895","v":["בַּבֶל","Babel","baw-bel'","(Chaldee); corresponding to H894: - Babylon."]},{"k":"H896","v":["בַּבְלִי","Bablîy","bab-lee'","(Chaldee); patrial from H895; a Babylonian: - Babylonia."]},{"k":"H897","v":["בַּג","bag","bag","A Persian word; food. For H957: - spoil [from the margin for H957.]"]},{"k":"H898","v":["בָּגַד","bâgad","baw-gad'","A primitive root; to cover (with a garment); figuratively to act covertly; by implication to pillage: - deal deceitfully (treacherously, unfaithfully), offend, transgress (-or), (depart), treacherous (dealer, -ly, man), unfaithful (-ly, man), X very."]},{"k":"H899","v":["בֶּגֶד","beged","behg'-ed","From H898; a covering, that is, clothing; also treachery or pillage: - apparel, cloth (-es, -ing), garment, lap, rag, raiment, robe, X very [treacherously], vesture, wardrobe."]},{"k":"H900","v":["בֹּגְדוֹת","bôgᵉdôwth","bohg-ed-ohth","Feminine plural active participle of H898; treacheries: - treacherous."]},{"k":"H901","v":["בָּגוֹד","bâgôwd","baw-gode'","From H898; treacherous: - treacherous."]},{"k":"H902","v":["בִּגְוַי","Bigvay","big-vah'ee","Probably of foreign origin; Bigvai, an Israelite: - Bigvai."]},{"k":"H903","v":["בִּגְתָא","Bigthâʼ","big-thaw'","Of Persian derivation; Bigtha, a eunuch of Xerxes: - Bigtha."]},{"k":"H904","v":["בִּגְתָן","Bigthân","big-thawn'","Of similar derivation to H903; Bigthan or Bigthana, a eunuch of Xerxes: - Bigthan, Bigthana."]},{"k":"H905","v":["בַּד","bad","bad","From H909; properly separation; by implication a part of the body, branch of a tree, bar for carrying; figuratively chief of a city; especially (with prepositional prefix) as adverb, apart, only, besides: - alone, apart, bar, besides, branch, by self, of each alike, except, only, part, staff, strength."]},{"k":"H906","v":["בַּד","bad","bad","Perhaps from H909 (in the sense of divided fibres); flaxen thread or yarn; hence a linen garment: - linen."]},{"k":"H907","v":["בַּד","bad","bad","From H908; a brag or lie; also a liar: - liar, lie."]},{"k":"H908","v":["בָּדָא","bâdâʼ","baw-daw'","A primitive root; (figuratively) to invent: - devise, feign."]},{"k":"H909","v":["בָּדַד","bâdad","baw-dad'","A primitive root; to divide, that is, (reflexively) be solitary: - alone."]},{"k":"H910","v":["בָּדָד","bâdâd","baw-dawd'","From H909; separate; adverbially separately: - alone, desolate, only, solitary."]},{"k":"H911","v":["בְּדַד","Bᵉdad","bed-ad'","From H909; separation; Bedad, an Edomite: - Bedad."]},{"k":"H912","v":["בֵּדְיָה","Bêdᵉyâh","bay-de-yaw'","Probably shortened for H5662; servant of Jehovah; Bedejah, an Israelite: - Bedeiah."]},{"k":"H913","v":["בְּדִיל","bᵉdîyl","bed-eel'","From H914; alloy (because removed by smelting); by analogy tin: -  + plummet, tin."]},{"k":"H914","v":["בָּדַל","bâdal","baw-dal'","A primitive root; to divide (in various senses literally or figuratively, separate, distinguish, differ, select, etc.): - (make, put) difference, divide (asunder), (make) separate (self, -ation), sever (out), X utterly."]},{"k":"H915","v":["בָּדָל","bâdâl","baw-dawl'","From H914; a part: - piece."]},{"k":"H916","v":["בְּדֹלַח","bᵉdôlach","bed-o'-lakh","Probably from H914; something in pieces, that is, bdellium, a (fragrant) gum (perhaps amber); others a pearl: - bdellium."]},{"k":"H917","v":["בְּדָן","Bᵉdân","bed-awn'","Probably shortened for H5658; servile; Bedan, the name of two Israelite: - Bedan."]},{"k":"H918","v":["בָּדַק","bâdaq","baw-dak'","A primitive root; to gap open; used only as a denominative from H919; to mend a breach: - repair."]},{"k":"H919","v":["בֶּדֶק","bedeq","beh'-dek","From H918; a gap or leak (in a building or a ship): - breach, + calker."]},{"k":"H920","v":["בִּדְקַר","Bidqar","bid-car'","Probably from H1856 with prepositional prefix; by stabbing, that is, assassin; Bidkar, an Israelite: - Bidkar."]},{"k":"H921","v":["בְּדַר","bᵉdar","bed-ar'","(Chaldee); corresponding (by transposition) to H6504: to scatter: - scatter."]},{"k":"H922","v":["בֹּהוּ","bôhûw","bo'-hoo","From an unused root (meaning to be empty); a vacuity, that is, (superficially) an undistinguishable ruin: - emptiness, void."]},{"k":"H923","v":["בַּהַט","bahaṭ","bah'-hat","From an unused root (probably meaning to glisten); white marble or perhaps alabaster: - red [marble]."]},{"k":"H924","v":["בְּהִילוּ","bᵉhîylûw","be-hee-loo'","(Chaldee); from H927; a hurry; only adverbially hastily: - in haste."]},{"k":"H925","v":["בָּהִיר","bâhîyr","baw-here'","From an unused root (meaning to be bright); shining: - bright."]},{"k":"H926","v":["בָּהַל","bâhal","baw-hal'","A primitive root; to tremble inwardly (or palpitate), that is, (figuratively) be (causatively make) (suddenly) alarmed or agitated; by implication to hasten anxiously: - be (make) affrighted (afraid, amazed, dismayed, rash), (be, get, make) haste (-n, -y, -ily), (give) speedy (-ily), thrust out, trouble, vex."]},{"k":"H927","v":["בְּהַל","bᵉhal","be-hal'","(Chaldee); corresponding to H926; to terrify, hasten: - in haste, trouble."]},{"k":"H928","v":["בֶּהָלָה","behâlâh","beh-haw-law'","From H926; panic, destruction: - terror, trouble."]},{"k":"H929","v":["בְּהֵמָה","bᵉhêmâh","be-hay-maw'","From an unused root (probably meaning to be mute); properly a dumb beast; especially any large quadruped or animal (often collectively): - beast, cattle."]},{"k":"H930","v":["בְּהֵמוֹת","bᵉhêmôwth","be-hay-mohth'","In form a plural of H929, but really a singular of Egyptian derivation: a water ox, that is, the hippopotamus or Nile horse: - Behemoth."]},{"k":"H931","v":["בֹּהֶן","bôhen","bo'-hen","From an unused root apparently meaning to be thick; the thumb of the hand or great toe of the foot: - thumb, great toe."]},{"k":"H932","v":["בֹּהַן","Bôhan","bo'han","An orthographical variation of H931; thumb; Bohan, an Israelite: - Bohan."]},{"k":"H933","v":["בֹּהַק","bôhaq","bo'-hak","From an unused root meaning to be pale; white scurf: - freckled spot."]},{"k":"H934","v":["בֹּהֶרֶת","bôhereth","bo-heh'-reth","Feminine active participle of the same as H925; a whitish spot on the skin: - bright spot."]},{"k":"H935","v":["בּוֹא","bôwʼ","bo","A primitive root; to go or come (in a wide variety of applications): - abide, apply, attain, X be, befall, + besiege, bring (forth, in, into, to pass), call, carry, X certainly, (cause, let, thing for) to come (against, in, out, upon, to pass), depart, X doubtless again, + eat, + employ, (cause to) enter (in, into, -tering, -trance, -try), be fallen, fetch, + follow, get, give, go (down, in, to war), grant, + have, X indeed, [in-]vade, lead, lift [up], mention, pull in, put, resort, run (down), send, set, X (well) stricken [in age], X surely, take (in), way."]},{"k":"H936","v":["בּוּז","bûwz","booz","A primitive root; to disrespect: - contemn, despise, X utterly."]},{"k":"H937","v":["בּוּז","bûwz","booz","From H936; disrespect: - contempt (-uously), despised, shamed."]},{"k":"H938","v":["בּוּז","Bûwz","booz","The same as H937; Buz, the name of a son of Nahor, and of an Israelite: - Buz."]},{"k":"H939","v":["בּוּזָה","bûwzâh","boo-zaw'","Feminine passive participle of H936; something scorned; an object of contempt: - despised."]},{"k":"H940","v":["בּוּזִי","Bûwzîy","boo-zee'","Patronymic from H938; a Buzite or descendant of Buz: - Buzite."]},{"k":"H941","v":["בּוּזִי","Bûwzîy","boo-zee'","The same as H940, Buzi, an Israelite: - Buzi."]},{"k":"H942","v":["בַּוַּי","Bavvay","bav-vah'ee","Probably of Persian origin; Bavvai, an Israelite: - Bavai."]},{"k":"H943","v":["בּוּךְ","bûwk","book","A primitive root; to involve (literally or figuratively): - be entangled (perplexed)."]},{"k":"H944","v":["בּוּל","bûwl","bool","For H2981; produce (of the earth, etc.): - food, stock."]},{"k":"H945","v":["בּוּל","Bûwl","bool","The same as H944 (in the sense of rain); Bul, the eight Hebrew month: - Bul."]},{"k":"H946","v":["בּוּנָה","Bûwnâh","boo-naw'","From H995; discretion; Bunah, an Israelite: - Bunah."]},{"k":"H947","v":["בּוּס","bûwç","boos","A primitive root; to trample (literally or figuratively): - loath, tread (down, under [foot]), be polluted."]},{"k":"H948","v":["בּוּץ","bûwts","boots","From an unused root (of the same form) meaning to bleach, that is, (intransitively) be white; probably cotton (of some sort): - fine (white) linen."]},{"k":"H949","v":["בּוֹצֵץ","Bôwtsêts","bo-tsates'","From the same as H948; shining; Botsets, a rock near Michmash: - Bozez."]},{"k":"H950","v":["בּוּקָה","bûwqâh","boo-kaw'","Feminine passive participle of an unused root (meaning to be hollow); emptiness (as adjective): - empty."]},{"k":"H951","v":["בּוֹקֵר","bôwqêr","bo-kare'","Properly active participle from H1239 as denominative from H1241; a cattletender: - herdman."]},{"k":"H952","v":["בּוּר","bûwr","boor","A primitive root; to bore, that is, (figuratively) examine: - declare."]},{"k":"H953","v":["בּוֹר","bôwr","bore","From H952 (in the sense of H877); a pit hole (especially one used as a cistern or prison): - cistern, dungeon, fountain, pit, well."]},{"k":"H954","v":["בּוּשׁ","bûwsh","boosh","A primitive root; properly to pale, that is, by implication to be ashamed; also (by implication) to be disappointed, or delayed: - (be, make, bring to, cause, put to, with, a-) shame (-d), be (put to) confounded (-fusion), become dry, delay, be long."]},{"k":"H955","v":["בּוּשָׁה","bûwshâh","boo-shaw'","Feminine participle passive of H954; shame: - shame."]},{"k":"H956","v":["בּוּת","bûwth","booth","(Chaldee); apparently denominative from H1005; to lodge over night: - pass the night."]},{"k":"H957","v":["בַּז","baz","baz","From H962; plunder: - booty, prey, spoil (-ed)."]},{"k":"H958","v":["בָּזָא","bâzâʼ","baw-zaw'","A primitive root; probably to cleave: - spoil."]},{"k":"H959","v":["בָּזָה","bâzâh","baw-zaw'","A primitive root; to disesteem: - despise, disdain, contemn (-ptible), + think to scorn, vile person."]},{"k":"H960","v":["בָּזֹה","bâzôh","baw-zo'","From H959; scorned: - despise."]},{"k":"H961","v":["בִּזָּה","bizzâh","biz-zaw'","Feminine of H957; booty: - prey, spoil."]},{"k":"H962","v":["בָּזַז","bâzaz","baw-zaz'","A primitive root; to plunder: - catch, gather, (take) for a prey, rob (-ber), spoil, take (away, spoil), X utterly."]},{"k":"H963","v":["בִּזָּיוֹן","bizzâyôwn","biz-zaw-yone'","From H959; disesteem: - disesteem: - contempt."]},{"k":"H964","v":["בִּזְיוֹתְיָה","bizyôwthᵉyâh","biz-yo-the-yaw'","From H959 and H3050; contempts of Jah; Bizjothjah, a place in Palestine: - Bizjothjah."]},{"k":"H965","v":["בָּזָק","bâzâq","baw-zawk'","From an unused root meaning to lighten; a flash of lighting: - flash of lightning."]},{"k":"H966","v":["בֶּזֶק","Bezeq","beh'-zak","From H965; lightning; Bezek, a place in Palestine: - Bezek."]},{"k":"H967","v":["בָּזַר","bâzar","baw-zar'","A primitive root; to disperse: - scatter."]},{"k":"H968","v":["בִּזְתָא","Bizthâʼ","biz-thaw'","Of Persian origin; Biztha, a eunuch of Xerxes: - Biztha."]},{"k":"H969","v":["בָּחוֹן","bâchôwn","baw-khone'","From H974; an assayer of metals: - tower."]},{"k":"H970","v":["בָּחוּר","bâchûwr","baw-khoor'","Participle passive of H977; properly selected, that is, a youth (often collectively): - (choice) young (man), chosen, X hole."]},{"k":"H971","v":["בַּחִין","bachîyn","bakh-een'","Another form of H975; a watch tower of besiegers: - tower."]},{"k":"H972","v":["בָּחִיר","bâchîyr","baw-kheer'","From H977; select: - choose, chosen one, elect."]},{"k":"H973","v":["בָּחַל","bâchal","baw-khal'","A primitive root; to loathe. For H926: - abhor, get hastily [from the margin for H926]."]},{"k":"H974","v":["בָּחַן","bâchan","baw-khan'","A primitive root; to test (especially metals); generally and figuratively to investigate: - examine, prove, tempt, try (trial)."]},{"k":"H975","v":["בַּחַן","bachan","bakh'-an","From H974 (in the sense of keeping a lookout); a watch tower: - tower."]},{"k":"H976","v":["בֹּחַן","bôchan","bo'-khan","From H974; trial: - tried."]},{"k":"H977","v":["בָּחַר","bâchar","baw-khar'","A primitive root; properly to try, that is, (by implication) select: - acceptable, appoint, choose (choice), excellent, join, be rather, require."]},{"k":"H978","v":["בַּחֲרוּמִי","Bachărûwmîy","bakh-ar-oo-mee'","Patrial from H980 (by transposition) a Bacharumite or inhabitant of Bachurim: - Baharumite."]},{"k":"H979","v":["בְּחֻרוֹת","bᵉchurôwth","bekh-oo-rothe'","Feminine plural of H970; also (masculine plural); youth (collectively and abstractly): - young men, youth."]},{"k":"H980","v":["בַּחֻרִים","Bachurîym","bakh-oo-reem'","Masculine plural of H970; young men; Bachurim, a place in Palestine: - Bahurim."]},{"k":"H981","v":["בָּטָא","bâṭâʼ","baw-taw'","A primitive root; to babble; hence to vociferate angrily: - pronounce, speak (unadvisedly)."]},{"k":"H982","v":["בָּטַח","bâṭach","baw-takh'","A primitive root; properly to hie for refuge (but not so precipitately as H2620); figuratively to trust, be confident or sure: - be bold (confident, secure, sure), careless (one, woman), put confidence, (make to) hope, (put, make to) trust."]},{"k":"H983","v":["בֶּטַח","beṭach","beh'takh","From H982; properly a place of refuge; abstractly safety, both the fact (security) and the feeling (trust); often (adverbially with or without preposition) safely: - assurance, boldly, (without) care (-less), confidence, hope, safe (-ly, -ty), secure, surely."]},{"k":"H984","v":["בֶּטַח","Beṭach","beh'takh","The same as H983; Betach, a place in Syria: - Betah."]},{"k":"H985","v":["בִּטְחָה","biṭchâh","bit-khaw'","Feminine of H984; trust: - confidence."]},{"k":"H986","v":["בִּטָּחוֹן","biṭṭâchôwn","bit-taw-khone'","From H982; trust: - confidence, hope."]},{"k":"H987","v":["בַּטֻּחוֹת","baṭṭuchôwth","bat-too-khoth'","Feminine plural from H982; security: - secure."]},{"k":"H988","v":["בָּטֵל","bâṭêl","baw-tale'","A primitive root; to desist from labor: - cease."]},{"k":"H989","v":["בְּטֵל","bᵉṭêl","bet-ale'","(Chaldee); corresponding to H988; to stop: - (cause, make to), cease, hinder."]},{"k":"H990","v":["בֶּטֶן","beṭen","beh'-ten","From an unused root probably meaning to be hollow; the belly, especially the womb; also the bosom or body of anything: - belly, body, + as they be born, + within, womb."]},{"k":"H991","v":["בֶּטֶן","Beṭen","beh'-ten","The same as H990; Beten, a place in Palestine: - Beten."]},{"k":"H992","v":["בֹּטֶן","bôṭen","bo'-ten","From H990; (only in plural) a pistachio nut (from its form): - nut."]},{"k":"H993","v":["בְּטֹנִים","Bᵉṭônîym","bet-o-neem'","Probably plural from H992; hollows; Betonim, a place in Palestine: - Betonim."]},{"k":"H994","v":["בִּי","bîy","bee","Perhaps from H1158 (in the sense of asking); properly a request; used only adverbially (always with “my Lord”); Oh that!; with leave, or if it please: - alas, O, oh."]},{"k":"H995","v":["בִּין","bîyn","bene","A primitive root; to separate mentally (or distinguish), that is, (generally) understand: - attend, consider, be cunning, diligently, direct, discern, eloquent, feel, inform, instruct, have intelligence, know, look well to, mark, perceive, be prudent, regard, (can) skill (-ful), teach, think, (cause, make to, get, give, have) understand (-ing), view, (deal) wise (-ly, man)."]},{"k":"H996","v":["בֵּין","bêyn","bane","(Sometimes in the plural masculine or feminine); properly the constructively contracted form of an otherwise unused noun from H995; a distinction; but used only as a preposition, between (repeated before each noun, often with other particles); also as a conjugation, either... or: - among, asunder, at, between (-twixt . . . and), + from (the widest), X in, out of, whether (it be... or), within."]},{"k":"H997","v":["בֵּין","bêyn","bane","(Chaldee); corresponding to H996: - among, between."]},{"k":"H998","v":["בִּינָה","bîynâh","bee-naw'","From H995; understanding: - knowledge, meaning, X perfectly, understanding, wisdom."]},{"k":"H999","v":["בִּינָה","bîynâh","bee-naw'","(Chaldee); corresponding to H998: - knowledge."]},{"k":"H1000","v":["בֵּיצָה","bêytsâh","bay-tsaw'","From the same as H948; an egg (from its whiteness): - egg."]},{"k":"H1001","v":["בִּירָא","bîyrâʼ","bee-raw'","(Chaldee); corresponding to H1002; a palace: - palace."]},{"k":"H1002","v":["בִּירָה","bîyrâh","bee-raw'","Of foreign origin; a castle or palace: - palace."]},{"k":"H1003","v":["בִּירָנִית","bîyrânîyth","bee-raw-neeth'","From H1002; a fortress: - castle."]},{"k":"H1004","v":["בַּיִת","bayith","bah'-yith","Probably from H1129 abbreviated; a house (in the greatest variation of applications, especially family, etc.): - court, daughter, door, + dungeon, family, + forth of, X great as would contain, hangings. home[born], [winter]house (-hold), inside(-ward), palace, place, + prison, + steward, + tablet, temple, web, + within (-out)."]},{"k":"H1005","v":["בַּיִת","bayith","bah-yith","(Chaldee); corresponding to H1004: - house."]},{"k":"H1006","v":["בַּיִת","Bayith","bah'-yith","The same as H1004; Bajith, a place in Palestine: - Bajith."]},{"k":"H1007","v":["בֵּית אָוֶן","Bêyth ʼÂven","bayth aw'-ven","From H1004 and H205; house of vanity; Beth-Aven, a place in Palestine: - Beth-aven."]},{"k":"H1008","v":["בֵּית־אֵל","Bêyth-ʼÊl","bayth-ale'","From H1004 and H410; house of God; Beth-El, a place in Palestine: - Beth-el."]},{"k":"H1009","v":["בֵּית אַרְבֵּאל","Bêyth ʼArbêʼl","bayth ar-bale'","From H1004 and H695 and H410; house of God's ambush; Beth Arbel, a place in Palestine: - Beth-Arbel."]},{"k":"H1010","v":["בֵּית בַּעַל מְעוֹן","Bêyth Baʻal Mᵉʻôwn","bayth bah'-al me-own'","From H1004 and H1168 and H4583; The first form meaning house of Baal of (the) habitation of (apparently by transposition). The second form meaning house of habitation of (Baal); Beth-Baal-Meon, a palce in Palestine: - Beth-baal-meon. Compare H1186 and H1194."]},{"k":"H1011","v":["בֵּית בִּרְאִי","Bêyth Birʼîy","bayth bir-ee'","From H1004 and H1254; house of a creative one; Beth-Biri, a place in Palestine: - Beth-birei."]},{"k":"H1012","v":["בֵּית בָּרָה","Bêyth Bârâh","bayth baw-raw'","Probably from H1004 and H5679; house of (the) ford; Beth Barah, a place in Palestine: - Beth-barah."]},{"k":"H1013","v":["בֵּית־גָּדֵר","Bêyth-Gâdêr","bayth-gaw-dare'","From H1004 and H1447; house of (the) wall; Beth Gader, a place in Palestine: - Beth-gader."]},{"k":"H1014","v":["בֵּית גָּמוּל","Bêyth Gâmûwl","bayth gaw-mool'","From H1004 and the passive participle of H1576; house of (the) weaned; Beth-Gamul, a place East of the Jordan: - Beth-gamul."]},{"k":"H1015","v":["בֵּית דִּבְלָתַיִם","Bêyth Diblâthayim","bayth dib-law-thah'-yim","From H1004 and the dual of H1690; house of (the) two fig cakes; Beth-Diblathajim, a place East of the Jordan: - Beth-diblathaim."]},{"k":"H1016","v":["בֵּית־דָּגוֹן","Bêyth-Dâgôwn","bayth-daw-gohn'","From H1004 and H1712; house of Dagon; Beth-Dagon, the name of two places in Palestine: - Beth-dagon."]},{"k":"H1017","v":["בֵּית הָאֱלִי","Bêyth hâ-ʼĔlîy","bayth haw-el-ee'","Patrial from H1008 with the article interposed; a Bethelite, or inhabitant of Bethel: - Bethelite."]},{"k":"H1018","v":["בֵּית הָאֵצֶל","Bêyth hâʼêtsel","bayth haw-ay'-tsel","From H1004 and H681 with the article interposed; house of the side; Beth-ha-Etsel, a place in Palestine: - Beth-ezel."]},{"k":"H1019","v":["בֵּית הַגִּלְגָּל","Bêyth hag-Gilgâl","bayth hag-gil gawl'","From H1004 and H1537 with the article interposed; house of the Gilgal (or rolling); Beth-hag-Gilgal, a place in Palestine: - Beth-gilgal."]},{"k":"H1020","v":["בֵּית הַיְשִׁימוֹת","Bêyth ha-Yshîy-môwth","bayth hah-yesh-eemoth'","From H1004 and the plural of H8451 with the article interposed; house of the deserts; Beth-ha-Jeshimoth, a town East of the Jordan: - Beth-jeshimoth."]},{"k":"H1021","v":["בֵּית הַכֶּרֶם","Bêyth hak-Kerem","bayth hak-keh'-rem","From H1004 and H3754 with the article interposed; house of the vineyard; Beth-hak-Kerem, a place in Palestine: - Beth-haccerem."]},{"k":"H1022","v":["בֵּית הַלַּחְמִי","Bêyth hal-Lachmîy","bayth hal-lakh-mee'","Patrial from H1035 with the article inserted; a Beth lechemite, or native of Bethlechem: - Bethlehemite."]},{"k":"H1023","v":["בֵּית הַמֶּרְחָק","Bêyth ham-Merchâq","bayth ham-mer-khawk'","From H1004 and H4801 with the article interposed; house of the breadth; Beth-ham-Merchak, a place in Palestine: - place that was far off."]},{"k":"H1024","v":["בֵּית הַמַּרְכָּבוֹת","Bêyth ham-Markâbôwth","bayth ham-markaw-both'","From H1004 and the plural of H4818 (with or without the article interposed); place of (the chariots; Beth-ham-Markaboth or Beth-Markaboth, a place in Palestine: - Beth-marcaboth."]},{"k":"H1025","v":["בֵּית הָעֵמֶק","Bêyth hâ-ʻÊmeq","bayth haw-Ay'-mek","From H1004 and H6010 with the article interposed; house of the valley; Beth-ha-Emek, a place in Palestine: - Beth-emek."]},{"k":"H1026","v":["בֵּית הָעֲרָבָה","Bêyth hâ-ʻĂrâbâh","bayth haw-ar-aw-baw","From H1004 and H6160 with the article interposed; house of the Desert; Beth-ha-Arabah, a place in Palestine: - Beth-arabah."]},{"k":"H1027","v":["בֵּית הָרָם","Bêyth hâ-Râm","bayth haw-rawm'","From H1004 and H7311 with the article interposed; house of the height; Beth-ha-Ram, a place East of the Jordan: - Beth-aram."]},{"k":"H1028","v":["בֵּית הָרָן","Bêyth hâ-Rân","bayth haw-rawn'","Probably for H1027; Beth-ha-ran, a place East of the Jordan: - Beth-haran."]},{"k":"H1029","v":["בֵּית הַשִּׁטָּה","Bêyth hash-Shiṭṭâh","bayth hash-shit-taw'","From H1004 and H7848 with the article interposed; house of the acacia; Beth-hash-Shittah, a place in Palestine: - Beth-shittah."]},{"k":"H1030","v":["בֵּית הַשִּׁמְשִׁי","Bêyth hash-Shimshîy","bayth hash-shim-shee'","Patrial from H1053 with the article inserted; a Beth shimshite, or inhabitant of Bethshemesh: - Bethshemite."]},{"k":"H1031","v":["בֵּית חׇגְלָה","Bêyth Choglâh","bayth chog-law'","From H1004 and the same as H2295; house of a partridge; Beth-Choglah, a place in Palestine: - Beth-hoglah."]},{"k":"H1032","v":["בֵּית חוֹרוֹן","Bêyth Chôwrôwn","bayth kho-rone'","From H1004 and H2356; house of hollowness; Beth-Choron, the name of two adjoining places in Palestine: - Beth-horon."]},{"k":"H1033","v":["בֵּית כַּר","Bêyth Kar","bayth kar","From H1004 and H3733; house of pasture; Beth-Car, a place in Palestine: - Beth-car."]},{"k":"H1034","v":["בֵּית לְבָאוֹת","Bêyth Lᵉbâʼôwth","bayth leb-aw-oth'","From H1004 and the plural of H3833; house of lionesses; Beth-Lebaoth, a place in Palestine: - Beth-lebaoth. Compare H3822."]},{"k":"H1035","v":["בֵּית לֶחֶם","Bêyth Lechem","bayth leh'-khem","From H1004 and H3899; house of bread; Beth-Lechem, a place in Palestine: - Beth-lehem."]},{"k":"H1036","v":["בֵּית לְעַפְרָה","Bêyth lᵉ-ʻAphrâh","bayth le-af-raw'","From H1004 and the feminine of H6083 (with preposition interposed); house to (that is, of) dust; Beth-le-Aphrah, a place in Palestine: - house of Aphrah."]},{"k":"H1037","v":["בֵּית מִלּוֹא","Bêyth Millôwʼ","bayth mil-lo'","From H1004 and H4407; house of (the) rampart; Beth-Millo, the name of two citadels: - house of Millo."]},{"k":"H1038","v":["בֵּית מַעֲכָה","Bêyth Maʻăkâh","bayth mah-ak-aw'","From H1004 and H4601; house of Maakah; Beth-Maakah, a place in Palestine: - Beth-maachah."]},{"k":"H1039","v":["בֵּית נִמְרָה","Bêyth Nimrâh","bayth nim-raw'","From H1004 and the feminine of H5246; house of (the) leopard; Beth-Nimrah, a place east of the Jordan: - Beth-nimrah. Compare H5247."]},{"k":"H1040","v":["בֵּית עֵדֶן","Bêyth ʻÊden","bayth ay'-den","From H1004 and H5730; house of pleasure; Beth-Eden, a place in Syria: - Beth-eden."]},{"k":"H1041","v":["בֵּית עַזְמָוֶת","Bêyth ʻAzmâveth","bayth az-maw'-veth","From H1004 and H5820; house of Azmaveth, a place in Palestine: - Beth-az-maveth. Compare H5820."]},{"k":"H1042","v":["בֵּית עֲנוֹת","Bêyth ʻĂnôwth","bayth an-oth'","From H1004 and a plural from H6030; house of replies; Beth-Anoth, a place in Palestine: - Beth-anoth."]},{"k":"H1043","v":["בֵּית עֲנָת","Bêyth ʻĂnâth","bayth an-awth'","An orthographical variation for H1042; Beth-Anath, a place in Palestine: - Beth-anath."]},{"k":"H1044","v":["בֵּית עֵקֶד","Bêyth ʻÊqed","bayth ay'-ked","From H1004 and a derivative of H6123; house of (the) binding (for sheep shearing); Beth-Eked, a place in Palestine: - shearing-house."]},{"k":"H1045","v":["בֵּית עַשְׁתָּרוֹת","Bêyth ʻAshtârôwth","bayth ash-taw-roth'","From H1004 and H6252; house of Ashtoreths; Beth-Ashtaroth, a place in Palestine: - house of Ashtaroth. Compare H1203, H6252."]},{"k":"H1046","v":["בֵּית פֶּלֶט","Bêyth Peleṭ","bayth peh'-let","From H1004 and H6412; house of escape; Beth-Palet, a place in Palestine: - Beth-palet."]},{"k":"H1047","v":["בֵּית פְּעוֹר","Bêyth Pᵉʻôwr","bayth pe-ore'","From H1004 and H6465; house of Peor; Beth-Peor, a place East of the Jordan: - Beth-peor."]},{"k":"H1048","v":["בֵּית פַּצֵּץ","Bêyth Patstsêts","bayth pats-tsates'","From H1004 and a derivative from H6327; house of dispersion; Beth-Patstsets, a place in Palestine: - Beth-pazzez."]},{"k":"H1049","v":["בֵּית צוּר","Bêyth Tsûwr","bayth tsoor'","From H1004 and H6697; house of (the) rock; Beth-Tsur, a place in Palestine: - Beth-zur."]},{"k":"H1050","v":["בֵּית רְחוֹב","Bêyth Rᵉchôwb","bayth re-khobe'","From H1004 and H7339; house of (the) street; Beth-Rechob, a place in Palestine: - Beth-rehob."]},{"k":"H1051","v":["בֵּית רָפָא","Bêyth Râphâʼ","bayth raw-faw'","From H1004 and H7497; house of (the) giant; Beth-Rapha, an Israelite: - Beth-rapha."]},{"k":"H1052","v":["בֵּית שְׁאָן","Bêyth Shᵉʼân","bayth she-awn'","From H1004 and H7599; house of ease; Beth-Shean or Beth-Shan, a place in Palestine: - Beth-shean, Beth-Shan."]},{"k":"H1053","v":["בֵּית שֶׁמֶשׁ","Bêyth Shemesh","bayth sheh'-mesh","From H1004 and H8121; house of (the) sun; Beth-Shemesh, a place in Palestine: - Beth-shemesh."]},{"k":"H1054","v":["בֵּית תַּפּוּחַ","Bêyth Tappûwach","bayth tap-poo'-akh","From H1004 and H8598; house of (the) apple; Beth-Tappuach, a place in Palestine: - Beth-tappuah."]},{"k":"H1055","v":["בִּיתָן","bîythân","bee-thawn'","Probably from H1004; a palace (that is, large house): - palace."]},{"k":"H1056","v":["בָּכָא","Bâkâʼ","baw-kaw'","From H1058; weeping; Baca, a valley in Palestine: - Baca."]},{"k":"H1057","v":["בָּכָא","bâkâʼ","baw-kaw'","The same as H1056; the weeping tree (some gum distilling tree, perhaps the balsam): - mulberry tree."]},{"k":"H1058","v":["בָּכָה","bâkâh","baw-kaw'","A primitive root; to weep; generally to bemoan: -  X at all, bewail, complain, make lamentation, X more, mourn, X sore, X with tears, weep."]},{"k":"H1059","v":["בֶּכֶה","bekeh","beh'-keh","From H1058; a weeping: -  X sore."]},{"k":"H1060","v":["בְּכוֹר","bᵉkôwr","bek-ore'","From H1069; firstborn; hence chief: - eldest (son), first-born (-ling)."]},{"k":"H1061","v":["בִּכּוּר","bikkûwr","bik-koor'","From H1069; the first fruits of the crop: - first fruit (-ripe [figuratively), hasty fruit."]},{"k":"H1062","v":["בְּכוֹרָה","bᵉkôwrâh","bek-o-raw'","Feminine of H1060; the firstling of man or beast; abstractly primogeniture: - birthright, firstborn (-ling)."]},{"k":"H1063","v":["בִּכּוּרָה","bikkûwrâh","bik-koo-raw'","Feminine of H1061; the early fig: - firstripe (fruit)."]},{"k":"H1064","v":["בְּכוֹרַת","Bᵉkôwrath","bek-o-rath'","Feminine of H1062; primogeniture; Bekorath, an Israelite: - Bechorath."]},{"k":"H1065","v":["בְּכִי","Bᵉkîy","bek-ee'","From H1058; a weeping; by analogy, a dripping: - overflowing, X sore, (continual) weeping, wept."]},{"k":"H1066","v":["בֹּכִים","Bôkîym","bo-keem'","Plural active participle of H1058; (with the article) the weepers; Bokim, a place in Palestine: - Bochim."]},{"k":"H1067","v":["בְּכִירָה","bᵉkîyrâh","bek-ee-raw'","Feminine from H1069; the eldest daughter: - firstborn."]},{"k":"H1068","v":["בְּכִית","bᵉkîyth","bek-eeth'","From H1058; a weeping: - mourning."]},{"k":"H1069","v":["בָּכַר","bâkar","baw-kar'","A primitive root; properly to burst the womb, that is, (causatively) bear or make early fruit (of woman or tree); also (as denominatively from H1061) to give the birthright: - make firstborn, be firstling, bring forth first child (new fruit)."]},{"k":"H1070","v":["בֶּכֶר","beker","beh'-ker","From H1069 (in the sense of youth); a young camel: - dromedary."]},{"k":"H1071","v":["בֶכֶר","Beker","beh'-ker","The same as H1070; Beker, the name of two Israelites: - Becher."]},{"k":"H1072","v":["בִּכְרָה","bikrâh","bik-raw'","Feminine of H1070; a young she camel: - dromedary."]},{"k":"H1073","v":["בַּכֻּרָה","bakkurâh","bak-koo-raw'","By orthographical variation for H1063; a first ripe fig: - first-ripe."]},{"k":"H1074","v":["בֹּכְרוּ","Bôkᵉrûw","bo-ker-oo'","From H1069; first born; Bokeru, an Israelite: - Bocheru."]},{"k":"H1075","v":["בִּכְרִי","Bikrîy","bik-ree'","From H1069; youthful; Bikri, an Israelite: - Bichri."]},{"k":"H1076","v":["בַּכְרִי","Bakrîy","bak-ree'","Patronymic from H1071; a Bakrite (collectively) or descendant of Beker: - Bachrites."]},{"k":"H1077","v":["בַּל","bal","bal","From H1086; properly a failure; by implication nothing; usually (adverbially) not at all; also lest: - lest, neither, no, none (that . . . ), not (any), nothing."]},{"k":"H1078","v":["בֵּל","Bêl","bale","By contraction for H1168; Bel, the Baal of the Babylonians: - Bel."]},{"k":"H1079","v":["בָּל","bâl","bawl","(Chaldee); from H1080; properly anxiety, that is, (by implication) the heart (as its seat): - heart."]},{"k":"H1080","v":["בְּלָא","bᵉlâʼ","bel-aw'","(Chaldee); corresponding to H1086 (but used only in a mental sense); to afflict: - wear out."]},{"k":"H1081","v":["בַּלְאֲדָן","Balʼădân","bal-ad-awn'","From H1078 and H113 (contracted); Bel (is his) lord; Baladan, the name of a Babylonian prince: - Baladan."]},{"k":"H1082","v":["בָּלַג","bâlag","baw-lag'","A primitive root; to break off or loose (in a favorable or unfavorable sense), that is, desist (from grief) or invade (with destruction): - comfort, (recover) strength(-en)."]},{"k":"H1083","v":["בִּלְגַה","Bilgah","bil-gaw'","From H1082; desistance; Bilgah, the name of two Israelites: - Bilgah."]},{"k":"H1084","v":["בִּלְגַּי","Bilgay","bil-gah'ee","From H1082; desistant; Bilgai, an Israelite: - Bilgai."]},{"k":"H1085","v":["בִּלְדַּד","Bildad","bil-dad'","Of uncertain derivation; Bildad, one of Job’s friends: - Bildad."]},{"k":"H1086","v":["בָּלָה","bâlâh","baw-law'","A primitive root; to fail; by implication to wear out, decay (causatively consume, spend): - consume, enjoy long, become (make, wax) old, spend, waste."]},{"k":"H1087","v":["בָּלֶה","bâleh","baw-leh'","From H1086; worn out: - old."]},{"k":"H1088","v":["בָּלָה","Bâlâh","baw-law'","Feminine of H1087; failure; Balah, a place in Palestine: - Balah."]},{"k":"H1089","v":["בָּלַהּ","bâlahh","baw-lah'","A primitive root (rather by transposition for H926); to palpitate; hence (causatively) to terrify: - trouble."]},{"k":"H1090","v":["בִּלְהָה","Bilhâh","bil-haw'","From H1089; timid; Bilhah, the name of one of Jacob’s concubines; also of a place in Palestine: - Bilhah."]},{"k":"H1091","v":["בַּלָּהָה","ballâhâh","bal-law-haw'","From H1089; alarm; hence destruction: - terror, trouble."]},{"k":"H1092","v":["בִּלְהָן","Bilhân","bil-hawn'","From H1089; timid; Bilhan, the name of an Edomite and of an Israelite: - Bilhan."]},{"k":"H1093","v":["בְּלוֹ","bᵉlôw","bel-o'","(Chaldee); from a root coresponding to H1086; excise (on articles consumed): - tribute."]},{"k":"H1094","v":["בְּלוֹא","bᵉlôwʼ","bel-o'","From H1086; (only in plural construction) rags: - old."]},{"k":"H1095","v":["בֵּלְטְשַׁאצַּר","Bêlṭᵉshaʼtstsar","bale-tesh-ats-tsar'","Of foreign derivation; Belteshatstsar, the Babylonian name of Daniel: - Belteshazzar."]},{"k":"H1096","v":["בֵּלְטְשַׁאצַּר","Bêlṭᵉshaʼtstsar","bale-tesh-ats-tsar'","(Chaldee); corresponding to H1095: - Belteshazzar."]},{"k":"H1097","v":["בְּלִי","bᵉlîy","bel-ee'","From H1086; properly failure, that is, nothing or destruction; usually (with preposition) without, not yet, because not, as long as, etc.: - corruption, ig[norantly], for lack of, where no . . . is, so that no, none, not, un[awares], without."]},{"k":"H1098","v":["בְּלִיל","bᵉlîyl","bel-eel'","From H1101; mixed, that is, (specifically) feed (for cattle): - corn, fodder, provender."]},{"k":"H1099","v":["בְּלִימָה","bᵉlîymâh","bel-ee-mah'","From H1097 and H4100; (as indefinite) nothing whatever: - nothing."]},{"k":"H1100","v":["בְּלִיַּעַל","bᵉlîyaʻal","bel-e-yah'-al","From H1097 and H3276; without profit, worthlessness; by extension destruction, wickedness (often in connection with H376, H802, H1121, etc.): - Belial, evil, naughty, ungodly (men), wicked."]},{"k":"H1101","v":["בָּלַל","bâlal","baw-lal'","A primitive root; to overflow (specifically with oil); by implication to mix; also (denominative from H1098) to fodder: - anoint, confound, X fade, mingle, mix (self), give provender, temper."]},{"k":"H1102","v":["בָּלַם","bâlam","baw-lam'","A primitive root; to muzzle: - be held in."]},{"k":"H1103","v":["בָּלַס","bâlaç","baw-las'","A primitive root; to pinch sycamore figs (a process necessary to ripen them): - gatherer."]},{"k":"H1104","v":["בָּלַע","bâlaʻ","baw-lah'","A primitive root; to make away with (specifically by swallowing); generally to destroy: - cover, destroy, devour, eat up, be at end, spend up, swallow down (up)."]},{"k":"H1105","v":["בֶּלַע","belaʻ","beh'-lah","From H1104; a gulp; figuratively destruction: - devouring, that which he hath swallowed up."]},{"k":"H1106","v":["בֶּלַע","Belaʻ","beh'-lah","The same as H1105; Bela, the name of a place, also of an Edomite and of two Israelites: - Bela."]},{"k":"H1107","v":["בִּלְעֲדֵי","bilʻădêy","bil-ad-ay'","Constructive plural from H1077 and H5703; not till, that is, (as preposition or adverb) except, without, besides: - beside, not (in), save, without."]},{"k":"H1108","v":["בַּלְעִי","Balʻîy","bel-ee'","Patronymic from H1106; a Belaite (collectively) or descendant of Bela: - Belaites."]},{"k":"H1109","v":["בִּלְעָם","Bilʻâm","bil-awm'","Probably from H1077 and H5971; not (of the) people, that is, foreigner; Bilam, a Mesopotamian prophet; also a place in Palestine: - Balaam, Bileam."]},{"k":"H1110","v":["בָּלַק","bâlaq","baw-lak'","A primitive root; to annihilate: - (make) waste."]},{"k":"H1111","v":["בָּלָק","Bâlâq","baw-lawk'","From H1110; waster; Balak, a Moabitish king: - Balak."]},{"k":"H1112","v":["בֵּלְשַׁאצַּר","Bêlshaʼtstsar","bale-shats-tsar'","Of foreign origin (compare H1095); Belshatstsar, a Babylonian king: - Belshazzar."]},{"k":"H1113","v":["בֵּלְשַׁאצַּר","Bêlshaʼtstsar","bale-shats-tsar'","(Chaldee); corresponding to H1112: - Belshazzar."]},{"k":"H1114","v":["בִּלְשָׁן","Bilshân","bil-shawn'","Of uncertain derivation; Bilshan, an Israelite: - Bilshan."]},{"k":"H1115","v":["בִּלְתִּי","biltîy","bil-tee'","Constructive feminine of H1086 (equivalent to H1097); properly a failure of, that is, (used only as a negative particle, usually with prepositional prefix) not, except, without, unless, besides, because not, until, etc.: - because un[satiable], beside, but, + continual, except, from, lest, neither, no more, none, not, nothing, save, that no, without."]},{"k":"H1116","v":["בָּמָה","bâmâh","bam-maw'","From an unused root (meaning to be high); an elevation: - height, high place, wave."]},{"k":"H1117","v":["בָּמָה","Bâmâh","baw-maw'","The same as H1116; Bamah, a place in Palestine: - Bamah. See also H1120."]},{"k":"H1118","v":["בִּמְהָל","Bimhâl","bim-hawl'","Probably from H4107 with prepositional prefix; with pruning; Bimhal, an Israelite: - Bimhal."]},{"k":"H1119","v":["בְּמוֹ","bᵉmôw","bem-o'","Prolonged for prepositional prefix; in, with, by, etc.: - for, in, into, through."]},{"k":"H1120","v":["בָּמוֹת","Bâmôwth","baw-moth'","Plural of H1116; heights; the second form is a more complete form of the first form; from the same and H1168; heights of Baal; Bamoth or Bamoth Baal, a place East of the Jordan: - Bamoth, Bamoth-baal."]},{"k":"H1121","v":["בֵּן","bên","bane","From H1129; a son (as a builder of the family name), in the widest sense (of literal and figurative relationship, including grandson, subject, nation, quality or condition, etc., (like H1, H251, etc.): -    + afflicted, age, [Ahoh-] [Ammon-] [Hachmon-] [Lev-]ite, [anoint-]ed one, appointed to, (+) arrow, [Assyr-] [Babylon-] [Egypt-] [Grec-]ian, one born, bough, branch, breed, + (young) bullock, + (young) calf, X came up in, child, colt, X common, X corn, daughter, X of first, + firstborn, foal, + very fruitful, + postage, X in, + kid, + lamb, (+) man, meet, + mighty, + nephew, old, (+) people, + rebel, + robber, X servant born, X soldier, son, + spark, + steward, + stranger, X surely, them of, + tumultuous one, + valiant[-est], whelp, worthy, young (one), youth."]},{"k":"H1122","v":["בֵּן","Bên","bane","The same as H1121; Ben, an Israelite: - Ben."]},{"k":"H1123","v":["בֵּן","bên","bane","(Chaldee); corresponding to H1121: - child, son, young."]},{"k":"H1124","v":["בְּנָא","bᵉnâʼ","ben-aw'","(Chaldee); corresponding to H1129; to build: - build, make."]},{"k":"H1125","v":["בֶּן־אֲבִינָדָב","Ben-ʼĂbîynâdâb","ben-ab-ee''-naw-dawb'","From H1121 and H40; (the) son of Abinadab; Ben Abinadab, an Israelite: - the son of Abinadab."]},{"k":"H1126","v":["בֶּן־אוֹנִי","Ben-ʼÔwnîy","ben-o-nee'","From H1121 and H205; son of my sorrow; Ben Oni, the original name of Benjamin: - Ben-oni."]},{"k":"H1127","v":["בֶּן־גֶּבֶר","Ben-Geber","ben-gheh'-ber","From H1121 and H1397; son of (the) hero; Ben Geber, an Israelite: - the son of Geber."]},{"k":"H1128","v":["בֶּן־דֶּקֶר","Ben-Deqer","ben-deh'-ker","From H1121 and a derivative of H1856; son of piercing (or of a lance); Ben Deker, an Israelite: - the son of Dekar."]},{"k":"H1129","v":["בָּנָה","bânâh","baw-naw'","A primitive root; to build (literally and figuratively): - (begin to) build (-er), obtain children, make, repair, set (up), X surely."]},{"k":"H1130","v":["בֶּן־הֲדַד","Ben-Hădad","ben-had-ad'","From H1121 and H1908; son of Hadad; Ben Hadad, the name of several Syrian kings: - Ben-hadad."]},{"k":"H1131","v":["בִּנּוּי","Binnûwy","bin-noo'-ee","From H1129; built up; Binnui, an Israelite: - Binnui."]},{"k":"H1132","v":["בֶּן־זוֹחֵת","Ben-Zôwchêth","ben-zo-khayth'","From H1121 and H2105; son of Zocheth; Ben Zocheth, an Israelite: - Ben-zoketh."]},{"k":"H1133","v":["בֶּן־חוּר","Ben-Chûwr","ben-khoor'","From H1121 and H2354; son of Chur; Ben Chur, an Israelite: - the son of Hur."]},{"k":"H1134","v":["בֶּן־חַיִל","Ben-Chayil","ben-khah'-yil","From H1121 and H2428; son of might; Ben Chail, an Israelite: - Ben-hail."]},{"k":"H1135","v":["בֶּן־חָנָן","Ben-Chânân","ben-khaw-nawn'","From H1121 and H2605; son of Chanan; Ben Chanan, an Israelite: - Ben-hanan."]},{"k":"H1136","v":["בֶּן־חֶסֶד","Ben-Cheçed","ben-kheh'-sed","From H1121 and H2617; son of kindness; Ben Chesed, an Israelite: - the son of Hesed."]},{"k":"H1137","v":["בָּנִי","Bânîy","baw-nee'","From H1129; built; Bani, the name of five Israelites: - Bani."]},{"k":"H1138","v":["בֻּנִּי","Bunnîy","boon-nee'","From H1129; built; Bunni or Buni, an Israelite: - Bunni."]},{"k":"H1139","v":["בְּנֵי־בְּרַק","Bᵉnêy-Bᵉraq","ben-ay'-ber-ak'","From the plural construction of H1121 and H1300; sons of lightning, Beneberak, a place in Palestine: - Bene-barak."]},{"k":"H1140","v":["בִּנְיָה","binyâh","bin-yaw'","Feminine of H1129; a structure: - building."]},{"k":"H1141","v":["בְּנָיָה","Bᵉnâyâh","ben-aw-yaw'","From H1129 and H3050; Jah has built; Benajah, the name of twelve Israelites: - Benaiah."]},{"k":"H1142","v":["בְּנֵי יַעֲקָן","Bᵉnêy Yaʻăqân","ben-ay' yah-ak-awn'","From the plural of H1121 and H3292; sons of Yaakan, Bene Jaakan, a place in the Desert: - Bene-jaakan."]},{"k":"H1143","v":["בֵּנַיִם","bênayim","bay-nah'-yim","Dual of H996; a double interval, that is, the space between two armies: -    + champion."]},{"k":"H1144","v":["בִּנְיָמִין","Binyâmîyn","bin-yaw-mene'","From H1121 and H3225; son of (the) right hand; Binjamin, youngest son of Jacob; also the tribe descended from him, and its territory: - Benjamin."]},{"k":"H1145","v":["בֶּן־יְמִינִי","Ben-yᵉmîynîy","ben-yem-ee-nee'","Multiple forms. Sometimes (with the article inserted); with H376 inserted (1Sa_9:1); son of a man of Jemini; or shorter (1Sa_9:4; Est_2:5); a man of Jemini; or (1Sa_20:1); more simply: a Jeminite; (plural patronymic from H1144; a Benjaminite, or descendant of Benjamin: - Benjamite, of Benjamin."]},{"k":"H1146","v":["בִּנְיָן","binyân","bin-yawn'","From H1129; an edifice: - building."]},{"k":"H1147","v":["בִּנְיָן","binyân","bin-yawn'","(Chaldee); corresponding to H1146: - building."]},{"k":"H1148","v":["בְּנִינוּ","Bᵉnîynûw","ben-ee-noo'","Probably from H1121 with pronominal suffix; our son; Beninu, an Israelite: - Beninu."]},{"k":"H1149","v":["בְּנַס","bᵉnaç","ben-as'","(Chaldee); of uncertain affinity; to be enraged: - be angry."]},{"k":"H1150","v":["בִּנְעָא","Binʻâʼ","bin-aw'","Of uncertain derivation; Bina or Binah, an Israelite: - Binea, Bineah."]},{"k":"H1151","v":["בֶּן־עַמִּי","Ben-ʻAmmîy","ben-am-mee'","From H1121 and H5971 with pronominal suffix; son of my people; Ben Ammi, a son of Lot: - Ben-ammi."]},{"k":"H1152","v":["בְּסוֹדְיָה","Bᵉçôwdᵉyâh","bes-o-deh-yaw'","From H5475 and H3050 with prepositional prefix; in (the) counsel of Jehovah; Besodejah, an Israelite: - Besodeiah."]},{"k":"H1153","v":["בְּסַי","Bᵉçay","bes-ah'-ee","From H947; domineering; Besai, one of the Nethinim: - Besai."]},{"k":"H1154","v":["בֶּסֶר","beçer","beh'-ser","From an unused root meaning to be sour; an immature grape: - unripe grape."]},{"k":"H1155","v":["בֹּסֶר","bôçer","bo'ser","From the same as H1154: - sour grape."]},{"k":"H1156","v":["בְּעָא","bᵉʻâʼ","beh-aw'","(Chaldee); corresponding to H1158; to seek or ask: - ask, desire, make [petition], pray, request, seek."]},{"k":"H1157","v":["בְּעַד","bᵉʻad","beh-ad'","From H5704 with prepositional prefix; in up to or over against; generally at, beside, among, behind, for, etc.: - about, at, by (means of), for, over, through, up (-on), within."]},{"k":"H1158","v":["בָּעָה","bâʻâh","baw-aw'","A primitive root; to gush over, that is, to swell; (figuratively) to desire earnestly; by implication to ask: - cause, inquire, seek up, swell out, boil."]},{"k":"H1159","v":["בָּעוּ","bâʻûw","baw-oo'","(Chaldee); from H1156; a request: - petition."]},{"k":"H1160","v":["בְּעוֹר","Bᵉʻôwr","beh-ore'","From H1197 (in the sense of burning); a lamp; Beor, the name of the father of an Edomitish king; also of that of Balaam: - Beor."]},{"k":"H1161","v":["בִּעוּתִים","biʻûwthîym","be-oo-theme'","Masculine plural from H1204; alarms: - terrors."]},{"k":"H1162","v":["בֹּעַז","Bôʻaz","bo'-az","From an unused root of uncertain meaning; Boaz, the ancestor of David; also the name of a pillar in front of the temple: - Boaz."]},{"k":"H1163","v":["בָּעַט","bâʻaṭ","baw-at'","A primitive root; to trample down, that is, (figuratively) despise: - kick."]},{"k":"H1164","v":["בְּעִי","bᵉʻîy","beh-ee'","From H1158; a prayer: - grave."]},{"k":"H1165","v":["בְּעִיר","bᵉʻîyr","beh-ere'","From H1197 (in the sense of eating): cattle: - beast, cattle."]},{"k":"H1166","v":["בָּעַל","bâʻal","baw-al'","A primitive root; to be master; hence (as denominative from H1167) to marry: - Beulah have dominion (over), be husband, marry (-ried, X wife)."]},{"k":"H1167","v":["בַּעַל","baʻal","bah'-al","From H1166; a master; hence a husband, or (figuratively) owner (often used with another noun in modifications of this latter sense: -    + archer, + babbler, + bird, captain, chief man, + confederate, + have to do, + dreamer, those to whom it is due, + furious, those that are given to it, great, + hairy, he that hath it, have, + horseman, husband, lord, man, + married, master, person, + sworn, they of."]},{"k":"H1168","v":["בַּעַל","Baʻal","bah'-al","The same as H1167; Baal, a Phoenician deity: - Baal, [plural] Baalim."]},{"k":"H1169","v":["בְּעֵל","bᵉʻêl","beh-ale'","(Chaldee); corresponding to H1167: -    + chancellor."]},{"k":"H1170","v":["בַּעַל בְּרִית","Baʻal Bᵉrîyth","bah'-al ber-eeth'","From H1168 and H1285; Baal of (the) covenant; Baal Berith, a special deity of the Shechemites: - Baal-berith."]},{"k":"H1171","v":["בַּעַל גָּד","Baʻal Gâd","bah'-al gawd","From H1168 and H1409; Baal of Fortune; Baal Gad, a place in Syria: - Baal-gad."]},{"k":"H1172","v":["בַּעֲלָה","baʻălâh","bah-al-aw'","Feminine of H1167; a mistress: - that hath, mistress."]},{"k":"H1173","v":["בַּעֲלָה","Baʻălâh","bah-al-aw'","The same as H1172; Baalah, the name of three places in Palestine: - Baalah."]},{"k":"H1174","v":["בַּעַל הָמוֹן","Baʻal Hâmôwn","bah'-al haw-mone'","From H1167 and H1995; possessor of a multitude; Baal Hamon, a place in Palestine: - Baal-hamon."]},{"k":"H1175","v":["בְּעָלוֹת","Bᵉʻâlôwth","beh-aw-loth'","Plural of H1172; mistresses; Bealoth, a place in Palestine: - Bealoth, in Aloth [by mistake for a plural from H5927 with preposition prefix]."]},{"k":"H1176","v":["בַּעַל זְבוּב","Baʻal Zᵉbûwb","bah'-al zeb-oob'","From H1168 and H2070; Baal of (the) Fly; Baal Zebub, a special deity of the Ekronites: - Baal-zebub."]},{"k":"H1177","v":["בַּעַל חָנָן","Baʻal Chânân","bah'-al khaw-nawn'","From H1167 and H2608; possessor of grace; Baal Chanan, the name of an Edomite, also of an Israelite: - Baal-hanan."]},{"k":"H1178","v":["בַּעַל חָצוֹר","Baʻal Châtsôwr","bah'-al khaw-tsore'","From H1167 and a modification of H2691; possessor of a village; Baal Chatsor, a place in Palestine: - Baal-hazor."]},{"k":"H1179","v":["בַּעַל חֶרְמוֹן","Baʻal Chermôwn","bah'-al kher-mone'","From H1167 and H2768; possessor of Hermon; Baal Chermon, a place in Palestine: - Baal-hermon."]},{"k":"H1180","v":["בַּעֲלִי","Baʻălîy","bah-al-ee'","From H1167 with pronominal suffix; my master; Baali, a symbolical name of Jehovah: - Baali."]},{"k":"H1181","v":["בַּעֲלֵי בָּמוֹת","Baʻălêy Bâmôwth","bah-al-ay' baw-moth'","From the plural of H1168 and the plural of H1116; Baals of (the) heights; Baale Bamoth, a place East of the Jordan: - lords of the high places."]},{"k":"H1182","v":["בְּעֶלְיָדָע","Bᵉʻelyâdâʻ","beh-el-yaw-daw'","From H1168 and H3045; Baal has known; Beeljada, an Israelite: - Beeliada."]},{"k":"H1183","v":["בְּעַלְיָה","Bᵉʻalyâh","beh-al-yaw'","From H1167 and H3050; Jah (is) master; Bealjah, an Israelite: - Bealiah."]},{"k":"H1184","v":["בַּעֲלֵי יְהוּדָה","Baʻălêy Yᵉhûwdâh","bah-al-ay' yeh-hoo-daw'","From the plural of H1167 and H3063; masters of Judah; Baale Jehudah, a place in Palestine: - Baale of Judah."]},{"k":"H1185","v":["בַּעֲלִיס","Baʻălîyç","bah-al-ece'","Probably from a derivative of H5965 with prepositional prefix; in exultation; Baalis, an Ammonitish king: - Baalis."]},{"k":"H1186","v":["בַּעַל מְעוֹן","Baʻal Mᵉʻôwn","bah-al meh-one'","From H1168 and H4583; Baal of (the) habitation (of) (compare H1010); Baal Meon, a place East of the Jordan: - Baal-meon."]},{"k":"H1187","v":["בַּעַל פְּעוֹר","Baʻal Pᵉʻôwr","bah'-al peh-ore'","From H1168 and H6465; Baal of Peor; Baal Peor, a Moabitish deity: - Baal-peor."]},{"k":"H1188","v":["בַּעַל פְּרָצִים","Baʻal Pᵉrâtsîym","bah'-al per-aw-tseem'","From H1167 and the plural of H6556; possessor of breaches; Baal peratsim, a place in Palestine: - Baal-perazim."]},{"k":"H1189","v":["בַּעַל צְפוֹן","Baʻal Tsᵉphôwn","bah'-al tsef-one'","From H1168 and H6828 (in the sense of cold) (according to others as Egyptian form of Typhon, the destroyer); Baal of winter; Baal Tsephon, a place in Egypt: - Baal-zephon."]},{"k":"H1190","v":["בַּעַל שָׁלִשָׁה","Baʻal Shâlishâh","bah'-al shaw-lee-shaw'","From H1168 and H8031; Baal of Shalishah; Baal Shalishah, a place in Palestine: - Baal-shalisha."]},{"k":"H1191","v":["בַּעֲלָת","Baʻălâth","bah-al-awth'","A modification of H1172; mistresship; Baalath, a place in Palestine: - Baalath."]},{"k":"H1192","v":["בַּעֲלַת בְּאֵר","Baʻălath Bᵉʼêr","bah-al-ath' beh-ayr'","From H1172 and H875; mistress of a well; Baalath Beer, a place in Palestine: - Baalath-beer."]},{"k":"H1193","v":["בַּעַל תָּמָר","Baʻal Tâmâr","bah'-al taw-mawr'","From H1167 and H8558; possessor of (the) palm tree; Baal Tamar, a place in Palestine: - Baal-tamar."]},{"k":"H1194","v":["בְּעֹן","Bᵉʻôn","beh-ohn'","Probably a contraction of H1010; Beon, a place East of the Jordan: - Beon."]},{"k":"H1195","v":["בַּעֲנָא","Baʻănâʼ","bah-an-aw'","The same as H1196; Baana, the name of four Israelites: - Baana, Baanah."]},{"k":"H1196","v":["בַּעֲנָה","Baʻănâh","bah-an-aw'","From a derivative of H6031 with prepositional prefix; in affliction: - Baanah, the name of four Isr: - Baanah."]},{"k":"H1197","v":["בָּעַר","bâʻar","baw-ar'","A primitive root; to kindle, that is, consume (by fire or by eating); also (as denominative from H1198) to be (become) brutish: - be brutish, bring (put, take) away, burn, (cause to) eat (up), feed, heat, kindle, set ([on fire]), waste."]},{"k":"H1198","v":["בַּעַר","baʻar","bah'-ar","From H1197; properly food (as consumed); that is, (be extension) of cattle brutishness; (concretely) stupid: - brutish (person), foolish."]},{"k":"H1199","v":["בָּעֲרָא","Bâʻărâʼ","bah-ar-aw'","From H1198; brutish; Baara, an Israelitish woman: - Baara."]},{"k":"H1200","v":["בְּעֵרָה","bᵉʻêrâh","be-ay-raw'","From H1197; a burning: - fire."]},{"k":"H1201","v":["בַּעְשָׁא","Baʻshâʼ","bah-shaw'","From an unused root meaning to stink; offensiveness; Basha, a king of Israel: - Baasha."]},{"k":"H1202","v":["בַּעֲשֵׂיָה","Baʻăsêyâh","bah-as-ay-yaw'","From H6213 and H3050 with prepositional prefix; in (the) work of Jah; Baasejah, an Israelite: - Baaseiah."]},{"k":"H1203","v":["בְּעֶשְׁתְּרָה","Bᵉʻeshtᵉrâh","beh-esh-ter-aw'","From H6251 (as singular of H6252) with prepositional prefix; with Ashtoreth; Beeshterah, a place East of the Jordan: - Beeshterah."]},{"k":"H1204","v":["בָּעַת","bâʻath","baw-ath'","A primitive root; to fear: - affright, be (make) afraid, terrify, trouble."]},{"k":"H1205","v":["בְּעָתָה","bᵉʻâthâh","beh-aw-thaw'","From H1204; fear: - trouble."]},{"k":"H1206","v":["בֹץ","bôts","botse","Probably the same as H948; mud (as whitish clay): - mire."]},{"k":"H1207","v":["בִּצָּה","bitstsâh","bits-tsaw'","Intensive from H1206; a swamp: - fen. mire (-ry place)."]},{"k":"H1208","v":["בָּצוֹר","bâtsôwr","baw-tsore'","From H1219; inaccessible, that is, lofty: - vintage [by confusion with H1210]."]},{"k":"H1209","v":["בֵּצַי","Bêtsay","bay-tsah'-ee","Perhaps the same as H1153; Betsai, the name of two Israelites: - Bezai."]},{"k":"H1210","v":["בָּצִיר","bâtsîyr","baw-tseer'","From H1219; clipped, that is, the grape crop: - vintage."]},{"k":"H1211","v":["בֶּצֶל","betsel","beh'-tsel","From an unused root apparently meaning to peel; an onion: - onion."]},{"k":"H1212","v":["בְּצַלְאֵל","Bᵉtsalʼêl","bets-al-ale'","Probably from H6738 and H410 with prepositional prefix; in (the) shadow (that is, protection) of God; Betsalel; the name of two Israelites: - Bezaleel."]},{"k":"H1213","v":["בַּצְלוּת","Batslûwth","bats-looth'","From the same as H1211; a peeling; Batsluth or Batslith; an Israelite: - Bazlith, Bazluth."]},{"k":"H1214","v":["בָּצַע","bâtsaʻ","baw-tsah'","A primitive root to break off, that is, (usually) plunder; figuratively to finish, or (intransitively) stop: - (be) covet (-ous), cut (off), finish, fulfill, gain (greedily), get, be given to [covetousness], greedy, perform, be wounded."]},{"k":"H1215","v":["בֶּצַע","betsaʻ","beh'-tsah","From H1214; plunder; by extension gain (usually unjust): - covetousness, (dishonest) gain, lucre, profit."]},{"k":"H1216","v":["בָּצֵק","bâtsêq","baw-tsake'","A primitive root; perhaps to swell up, that is, blister: - swell."]},{"k":"H1217","v":["בָּצֵק","bâtsêq","baw-tsake'","From H1216; dough (as swelling by fermentation): - dough, flour."]},{"k":"H1218","v":["בׇּצְקַת","Botsqath","bots-cath'","From H1216; a swell of ground; Botscath, a place in Palestine: - Bozcath, Boskath."]},{"k":"H1219","v":["בָּצַר","bâtsar","baw-tsar'","A primitive root; to clip off; specifically (as denominative from H1210) to gather grapes; also to be isolated (that is, inaccessible by height or fortification): - cut off, (de-) fenced, fortify, (grape) gather (-er), mighty things, restrain, strong, wall (up), withhold."]},{"k":"H1220","v":["בֶּצֶר","betser","beh'-tser","From H1219; strictly a clipping, that is, gold (as dug out): - gold defence."]},{"k":"H1221","v":["בֶּצֶר","Betser","beh'-tser","The same as H1220; an inaccessible spot; Betser, a place in Palestine: - Bezer."]},{"k":"H1222","v":["בְּצַר","bᵉtsar","bets-ar'","Another form for H1220; gold: - gold."]},{"k":"H1223","v":["בׇּצְרָה","botsrâh","bots-raw'","Feminine from H1219; an enclosure, that is, sheepfold: - Bozrah."]},{"k":"H1224","v":["בׇּצְרָה","Botsrâh","bots-raw'","The same as H1223; Botsrah, a place in Edom: - Bozrah."]},{"k":"H1225","v":["בִּצָּרוֹן","bitstsârôwn","bits-tsaw-rone'","Masculine intensive from H1219; a fortress: - stronghold."]},{"k":"H1226","v":["בַּצֹּרֶת","batstsôreth","bats-tso'-reth","Feminine intensive from H1219; restraint (of rain), that is, drought: - dearth, drought."]},{"k":"H1227","v":["בַּקְבּוּק","Baqbûwq","bak-book'","The same as H1228; Bakbuk, one of the Nethinim: - Bakbuk."]},{"k":"H1228","v":["בַּקְבֻּק","baqbuq","bak-book'","From H1238; a bottle (from the gurgling in emptying): - bottle, cruse."]},{"k":"H1229","v":["בַּקְבֻּקְיָה","Baqbuqyâh","bak-book-yaw'","From H1228 and H3050; emptying (that is, wasting) of Jah; Bakbukjah, an Israelite: - Bakbukiah."]},{"k":"H1230","v":["בַּקְבַּקַּר","Baqbaqqar","bak-bak-kar'","Reduplicated from H1239; searcher; Bakbakkar, an Israelite: - Bakbakkar."]},{"k":"H1231","v":["בֻּקִּי","Buqqîy","book-kee'","From H1238; wasteful; Bukki, the name of two Israelites: - Bukki."]},{"k":"H1232","v":["בֻּקִּיָּה","Buqqîyâh","book-kee-yaw'","From H1238 and H3050; wasting of Jah; Bukkijah, an Israelite: - Bukkiah."]},{"k":"H1233","v":["בְּקִיעַ","bᵉqîyaʻ","bek-ee'-ah","From H1234; a fissure: - breach, cleft."]},{"k":"H1234","v":["בָּקַע","bâqaʻ","baw-kah'","A primitive root; to cleave; generally to rend, break, rip or open: - make a breach, break forth (into, out, in pieces, through, up), be ready to burst, cleave (asunder), cut out, divide, hatch, rend (asunder), rip up, tear, win."]},{"k":"H1235","v":["בֶּקַע","beqaʻ","beh'-kah","From H1234; a section (half) of a shekel, that is, a beka (a weight and a coin): - bekah, half a shekel."]},{"k":"H1236","v":["בִּקְעָא","biqʻâʼ","bik-aw'","(Chaldee); corresponding to H1237: - plain."]},{"k":"H1237","v":["בִּקְעָה","biqʻâh","bik-aw'","From H1234; properly a split, that is, a wide level valley between mountains: - plain, valley."]},{"k":"H1238","v":["בָּקַק","bâqaq","baw-kah'","A primitive root; to pour out, that is, to empty, figuratively to depopulate; by analogy to spread out (as a fruitful vine): - (make) empty (out), fail, X utterly, make void."]},{"k":"H1239","v":["בָּקַר","bâqar","baw-kar","A primitive root; properly to plough, or (generally) break forth, that is, (figuratively) to inspect, admire, care for, consider: - (make) inquire (-ry), (make) search, seek out."]},{"k":"H1240","v":["בְּקַר","bᵉqar","bek-ar'","(Chaldee); corresponding to H1239: - inquire, make search."]},{"k":"H1241","v":["בָּקָר","bâqâr","baw-kawr'","From H1239; a beeve or animal of the ox kind of either gender (as used for ploughing); collectively a herd: - beeve, bull (+ -ock), + calf, + cow, great [cattle], + heifer, herd, kine, ox."]},{"k":"H1242","v":["בֹּקֶר","bôqer","bo'-ker","From H1239; properly dawn (as the break of day); generally morning: -  (+) day, early, morning, morrow."]},{"k":"H1243","v":["בַּקָּרָה","baqqârâh","bak-kaw-raw'","Intensive from H1239; a looking after: - seek out."]},{"k":"H1244","v":["בִּקֹּרֶת","biqqôreth","bik-ko-reth","From H1239; properly examination, that is, (by implication) punishment: - scourged."]},{"k":"H1245","v":["בָּקַשׁ","bâqash","baw-kash'","A primitive root; to search out (by any method; specifically in worship or prayer); by implication to strive after: - ask, beg, beseech, desire, enquire, get, make inquisition, procure, (make) request, require, seek (for)."]},{"k":"H1246","v":["בַּקָּשָׁה","baqqâshâh","bak-kaw-shaw'","From H1245; a petition: - request."]},{"k":"H1247","v":["בַּר","bar","bar","(Chaldee); corresponding to H1121; a son, grandson, etc.: -    X old, son."]},{"k":"H1248","v":["בַּר","bar","bar","Borrowed (as a title) from H1247; the heir (apparent to the throne): - son."]},{"k":"H1249","v":["בַּר","bar","bar","From H1305 (in its various senses); beloved; also pure, empty: - choice, clean, clear, pure."]},{"k":"H1250","v":["בָּר","bâr","bawr","From H1305 (in the sense of winnowing); grain of any kind (even while standing in the field); by extension the open country: - corn, wheat."]},{"k":"H1251","v":["בַּר","bar","bar","(Chaldee); corresponding to H1250; a field: - field."]},{"k":"H1252","v":["בֹּר","bôr","bore","From H1305; purity: - cleanness, pureness."]},{"k":"H1253","v":["בֹּר","bôr","bore","The same as H1252; vegetable lye (from its cleansing); used as a soap for washing, or a flux for metals: -    X never so, purely."]},{"k":"H1254","v":["בָּרָא","bârâʼ","baw-raw'","A primitive root; (absolutely) to create; (qualified) to cut down (a wood), select, feed (as formative processes): - choose, create (creator), cut down, dispatch, do, make (fat)."]},{"k":"H1255","v":["בְּרֹאדַךְ בַּלְאֲדָן","Bᵉrôʼdak Balʼădân","ber-o-dak' bal-ad-awn'","A variation of H4757; Berodak Baladan, a Babylonian king: - Berodach-baladan."]},{"k":"H1256","v":["בְּרָאיָה","Bᵉrâʼyâh","ber-aw-yaw'","From H1254 and H3050; Jah has created; Berajah, an Israelite: - Beraiah."]},{"k":"H1257","v":["בַּרְבֻּר","barbur","bar-boor'","By reduplication from H1250; a fowl (as fattened on grain): - fowl."]},{"k":"H1258","v":["בָּרַד","bârad","baw-rad'","A primitive root, to hail: - hail."]},{"k":"H1259","v":["בָּרָד","bârâd","baw-rawd'","From H1258; hail: - hail ([stones])."]},{"k":"H1260","v":["בֶּרֶד","Bered","beh'red","From H1258; hail; Bered, the name of a place south of Palestine, also of an Israelite: - Bered."]},{"k":"H1261","v":["בָּרֹד","bârôd","baw-rode'","From H1258; spotted (as if with hail): - grisled."]},{"k":"H1262","v":["בָּרָה","bârâh","baw-raw'","A primitive root; to select; also (as denominative from H1250) to feed; also (as equivalent to H1305) to render clear (Ecc_3:18): - choose, (cause to) eat, manifest, (give) meat."]},{"k":"H1263","v":["בָּרוּךְ","Bârûwk","baw-rook'","Passive participle from H1288; blessed; Baruk, the name of three Israelites: - Baruch."]},{"k":"H1264","v":["בְּרוֹם","bᵉrôwm","ber-ome'","Probably of foreign origin; damask (stuff of variegated thread): - rich apparel."]},{"k":"H1265","v":["בְּרוֹשׁ","bᵉrôwsh","ber-osh'","Of uncertain derivation; a cypress tree (perhaps); hence a lance or a musical instrument (as made of that wood): - fir (tree)."]},{"k":"H1266","v":["בְּרוֹת","bᵉrôwth","ber-oth'","A variation of H1265; the cypress (or some elastic tree): - fir."]},{"k":"H1267","v":["בָּרוּת","bârûwth","baw-rooth","From H1262; food: - meat."]},{"k":"H1268","v":["בֵּרוֹתָה","Bêrôwthâh","bay-ro-thaw'","Probably from H1266; cypress or cypresslike; Berothah or Berothai, a place north of Palestine: - Berothah, Berothai."]},{"k":"H1269","v":["בִּרְזוֹת","Birzôwth","beer-zoth'","Probably feminine plural from an unused root (apparently meaning to pierce); holes; Birzoth, an Israelite: - Birzavith [from the margin]."]},{"k":"H1270","v":["בַּרְזֶל","barzel","bar-zel'","Perhaps from the root of H1269; iron (as cutting); by extension an iron implement: - (ax) head, iron."]},{"k":"H1271","v":["בַּרְזִלַּי","Barzillay","bar-zil-lah'-ee","From H1270; iron hearted; Barzillai, the name of three Israelites: - Barzillai."]},{"k":"H1272","v":["בָּרַח","bârach","baw-rakh'","A primitive root; to bolt, that is, figuratively to flee suddenly: - chase (away); drive away, fain, flee (away), put to flight, make haste, reach, run away, shoot."]},{"k":"H1273","v":["בַּרְחֻמִי","Barchumîy","bar-khoo-mee'","By transposition for H978; a Barchumite, or native of Bachurim: - Barhumite."]},{"k":"H1274","v":["בְּרִי","bᵉrîy","ber-ee'","From H1262; fat: - fat."]},{"k":"H1275","v":["בֵּרִי","Bêrîy","bay-ree'","Probably by contraction from H882; Beri, an Israelite: - Beri."]},{"k":"H1276","v":["בֵּרִי","Bêrîy","bay-ree'","Of uncertain derivation; (only in the plural and with the article) the Berites, a place in Palestine: - Berites."]},{"k":"H1277","v":["בָּרִיא","bârîyʼ","baw-ree'","From H1254 (in the sense of H1262): fatted or plump: - fat ([fleshed], -ter), fed, firm, plenteous, rank."]},{"k":"H1278","v":["בְּרִיאָה","bᵉrîyʼâh","ber-ee-aw'","Feminine from H1254; a creation, that is, a novelty: - new thing."]},{"k":"H1279","v":["בִּרְיָה","biryâh","beer-yaw'","Feminine from H1262; food: - meat."]},{"k":"H1280","v":["בְּרִיחַ","bᵉrîyach","ber-ee'-akh","From H1272; a bolt: - bar, fugitive."]},{"k":"H1281","v":["בָּרִיחַ","bârîyach","baw-ree'-akh","From H1272; a fugitive, that is, the serpent (as fleeing), and the constellation by that name: - crooked, noble, piercing."]},{"k":"H1282","v":["בָּרִיחַ","Bârîyach","baw-ree'-akh","The same as H1281; Bariach, an Israelite: - Bariah."]},{"k":"H1283","v":["בְּרִיעָה","Bᵉrîyʻâh","ber-ee'-aw","Apparently from the feminine of H7451 with prepositional prefix; in trouble; Beriah, the name of four Israelites: - Beriah."]},{"k":"H1284","v":["בְּרִיעִי","Bᵉrîyʻîy","ber-ee-ee'","Patronymic from H1283; a Beriite (collectively) or descendant of Beriah: - Beerites."]},{"k":"H1285","v":["בְּרִית","bᵉrîyth","ber-eeth'","From H1262 (in the sense of cutting (like H1254)); a compact (because made by passing between pieces of flesh): - confederacy, [con-]feder[-ate], covenant, league."]},{"k":"H1286","v":["בְּרִית","Bᵉrîyth","ber-eeth'","The same as H1285; Berith, a Schechemitish deity: - Berith."]},{"k":"H1287","v":["בֹּרִית","bôrîyth","bo-reeth'","Feminine of H1253; vegetable alkali: - sope."]},{"k":"H1288","v":["בָרַךְ","bârak","baw-rak'","A primitive root; to kneel; by implication to bless God (as an act of adoration), and (vice-versa) man (as a benefit); also (by euphemism) to curse (God or the king, as treason): -    X abundantly, X altogether, X at all, blaspheme, bless, congratulate, curse, X greatly, X indeed, kneel (down), praise, salute, X still, thank."]},{"k":"H1289","v":["בְּרַךְ","bᵉrak","ber-ak'","(Chaldee); corresponding to H1288: - bless, kneel."]},{"k":"H1290","v":["בֶּרֶךְ","berek","beh'-rek","From H1288; a knee: - knee."]},{"k":"H1291","v":["בֶּרֶךְ","berek","beh'-rek","(Chaldee); corresponding to H1290: - knee."]},{"k":"H1292","v":["בָּרַכְאֵל","Bârakʼêl","baw-rak-ale'","From H1288 and H410, God has blessed; Barakel, the father of one of Job’s friends: - Barachel."]},{"k":"H1293","v":["בְּרָכָה","Bᵉrâkâh","ber-aw-kaw'","From H1288; benediction; by implication prosperity: - blessing, liberal, pool, present."]},{"k":"H1294","v":["בְּרָכָה","Bᵉrâkâh","ber-aw-kaw'","The same as H1293; Berakah, the name of an Israelite, and also of a valley in Palestine: - Berachah."]},{"k":"H1295","v":["בְּרֵכָה","bᵉrêkâh","ber-ay-kaw'","From H1288; a reservoir (at which camels kneel as a resting place): - (fish-) pool."]},{"k":"H1296","v":["בֶּרֶכְיָה","Berekyâh","beh-rek-yaw'","From H1290 and H3050; knee (that is, blessing) of Jah; Berekjah, the name of six Israelites: - Berachiah, Berechiah."]},{"k":"H1297","v":["בְּרַם","bᵉram","ber-am'","(Chaldee); perhaps from H7313 with prepositional prefix; properly highly, that is, surely; but used adversatively, however: - but, nevertheless, yet."]},{"k":"H1298","v":["בֶּרַע","Beraʻ","beh'-rah","Of uncertain derivation; Bera, a Sodomitish king: - Bera."]},{"k":"H1299","v":["בָּרַק","bâraq","baw-rak'","A primitive root; to lighten (lightning): - cast forth."]},{"k":"H1300","v":["בָּרָק","bârâq","baw-rawk'","From H1299; lightning; by analogy a gleam; concretely a flashing sword: - bright, glitter (-ing, sword), lightning."]},{"k":"H1301","v":["בָּרָק","Bârâq","baw-rawk'","The same as H1300; Barak, an Israelite: - Barak."]},{"k":"H1302","v":["בַּרְקוֹס","Barqôwç","bar-kose'","Of uncertain derivation; Barkos, one of the Nethimim: - Barkos."]},{"k":"H1303","v":["בַּרְקָן","barqân","bar-kwan'","From H1300; a thorn (perhaps as burning brightly): - brier."]},{"k":"H1304","v":["בָּרֶקֶת","bâreqeth","baw-reh'-keth","From H1300; a gem (as flashing), perhaps the emerald: - carbuncle."]},{"k":"H1305","v":["בָּרַר","bârar","baw-rar'","A primitive root; to clarify (that is, brighten), examine, select: - make bright, choice, chosen, cleanse (be clean), clearly, polished, (shew self) pure (-ify), purge (out)."]},{"k":"H1306","v":["בִּרְשַׁע","Birshaʻ","beer-shah'","Probably from H7562 with prepositional prefix; with wickedness; Birsha, a king of Gomorrah: - Birsha."]},{"k":"H1307","v":["בֵּרֹתִי","Bêrôthîy","bay-ro-thee'","Patrial from H1268; a Berothite, or inhabitant of Berothai: - Berothite."]},{"k":"H1308","v":["בְּשׂוֹר","Bᵉsôwr","bes-ore'","From H1319; cheerful; Besor, a stream of Palestine: - Besor."]},{"k":"H1309","v":["בְּשׂוֹרָה","bᵉsôwrâh","bes-o-raw'","Feminine from H1319; glad tidings; by implication reward for good news: - reward for tidings."]},{"k":"H1310","v":["בָּשַׁל","bâshal","baw-shal'","A primitive root; properly to boil up; hence to be done in cooking; figuratively to ripen: - bake, boil, bring forth, is ripe, roast, seethe, sod (be sodden)."]},{"k":"H1311","v":["בָּשֵׁל","bâshêl","baw-shale'","From H1310; boiled: -  X at all, sodden."]},{"k":"H1312","v":["בִּשְׁלָם","Bishlâm","bish-lawm'","Of foreign derivation; Bishlam, a Persian: - Bishlam."]},{"k":"H1313","v":["בָּשָׂם","bâsâm","baw-sawm'","From an unused root meaning to be fragrant; (compare H5561) the balsam plant: - spice."]},{"k":"H1314","v":["בֶּשֶׂם","besem","beh'-sem","From the same as H1313; fragrance; by implication spicery; also the balsam plant: - smell, spice, sweet (odour)."]},{"k":"H1315","v":["בׇּשְׂמַת","Bosmath","bos-math'","Feminine of the second form of H1314; fragrance; Bosmath, the name of a wife of Esau, and of a dughter of Solomon: - Bashemath, Basmath."]},{"k":"H1316","v":["בָּשָׁן","Bâshân","baw-shawn'","Of uncertain derivation; Bashan (often with the article), a region East of the Jordan: - Bashan."]},{"k":"H1317","v":["בׇּשְׁנָה","boshnâh","bosh-naw'","Feminine from H954; shamefulness: - shame."]},{"k":"H1318","v":["בָּשַׁס","bâshaç","baw-shas'","A primitive root; to trample down: - tread."]},{"k":"H1319","v":["בָּשַׂר","bâsar","baw-sar'","A primitive root; properly to be fresh, that is, full (rosy, figuratively cheerful); to announce (glad news): - messenger, preach, publish, shew forth, (bear, bring, carry, preach, good, tell good) tidings."]},{"k":"H1320","v":["בָּשָׂר","bâsâr","baw-sawr'","From H1319; flesh (from its freshness); by extension body, person; also (by euphemism) the pudenda of a man: - body, [fat, lean] flesh [-ed], kin, [man-] kind, + nakedness, self, skin."]},{"k":"H1321","v":["בְּשַׁר","bᵉshar","bes-ar'","(Chaldee); corresponding to H1320: - flesh."]},{"k":"H1322","v":["בֹּשֶׁת","bôsheth","bo'-sheth","From H954; shame (the feeling and the condition, as well as its cause); by implication (specifically) an idol: - ashamed, confusion, + greatly, (put to) shame (-ful thing)."]},{"k":"H1323","v":["בַּת","bath","bath","From H1129 (as feminine of H1121); a daughter (used in the same wide sense as other terms of relationship, literally and figuratively): - apple [of the eye], branch, company, daughter, X first, X old, + owl, town, village."]},{"k":"H1324","v":["בַּת","bath","bath","Probably from the same as H1327; a bath or Hebrew measure (as a means of division) of liquids: - bath."]},{"k":"H1325","v":["בַּת","bath","bath","(Chaldee); corresponding to H1324: - bath."]},{"k":"H1326","v":["בָּתָה","bâthâh","baw-thaw'","Probably an orthographical variation for H1327; desolation: - waste."]},{"k":"H1327","v":["בַּתָּה","battâh","bat-taw'","Feminine from an unused root (meaning to break in pieces); desolation: - desolate."]},{"k":"H1328","v":["בְּתוּאֵל","Bᵉthûwʼêl","beth-oo-ale'","Apparently from the same as H1326 and H410; destroyed of God; Bethuel, the name of a nephew of Abraham, and of a place in Palestine: - Bethuel. Compare H1329."]},{"k":"H1329","v":["בְּתוּל","Bᵉthûwl","beth-ool'","For H1328; Bethul (that is, Bethuel), a place in Palestine: - Bethuel."]},{"k":"H1330","v":["בְּתוּלָה","bᵉthûwlâh","beth-oo-law'","Feminine passive participle of an unused root meaning to separate; a virgin (from her privacy); sometimes (by continuation) a bride; also (figuratively) a city or state: - maid, virgin."]},{"k":"H1331","v":["בְּתוּלִים","bᵉthûwlîym","beth-oo-leem'","Masculine plural of the same as H1330; (collectively and abstractly) virginity; by implication and concretely the tokens of it: -    X maid, virginity."]},{"k":"H1332","v":["בִּתְיָה","Bithyâh","bith-yaw'","From H1323 and H3050; daughter (that is, worshipper) of Jah; Bithjah, an Egyptian woman: - Bithiah."]},{"k":"H1333","v":["בָּתַק","bâthaq","baw-thak'","A primitive root; to cut in pieces: - thrust through."]},{"k":"H1334","v":["בָּתַר","bâthar","baw-thar'","A primitive root, to chop up: - divide."]},{"k":"H1335","v":["בֶּתֶר","bether","beh'-ther","From H1334; a section: - part, piece."]},{"k":"H1336","v":["בֶּתֶר","Bether","beh'-ther","The same as H1335; Bether, a (craggy) place in Palestine: - Bether."]},{"k":"H1337","v":["בַּת רַבִּים","Bath Rabbîym","bath rab-beem'","From H1323 and a masculine plural from H7227; the daughter (that is, city) of Rabbah: - Bath-rabbim."]},{"k":"H1338","v":["בִּתְרוֹן","Bithrôwn","bith-rone'","From H1334; (with the article) the craggy spot; Bithron, a place East of the Jordan: - Bithron."]},{"k":"H1339","v":["בַּת־שֶׁבַע","Bath-Shebaʻ","bath-sheh'-bah","From H1323 and H7651 (in the sense of H7650); daughter of an oath; BathSheba, the mother of Solomon: - Bath-sheba."]},{"k":"H1340","v":["בַּת־שׁוּעַ","Bath-Shûwaʻ","bath-shoo'-ah","From H1323 and H7771; daughter of wealth; Bath shua, the same as H1339: - Bath-shua."]},{"k":"H1341","v":["גֵּא","gêʼ","gay'","For H1343; haughty: - proud."]},{"k":"H1342","v":["גָּאָה","gâʼâh","gaw-aw'","A primitive root; to mount up; hence in general to rise, (figuratively) be majestic: - gloriously, grow up, increase, be risen, triumph."]},{"k":"H1343","v":["גֵּאֶה","gêʼeh","gay-eh'","From H1342; lofty; figuratively arrogant: - proud."]},{"k":"H1344","v":["גֵּאָה","gêʼâh","gay-aw'","Feminine from H1342; arrogance: - pride."]},{"k":"H1345","v":["גְּאוּאֵל","Gᵉʼûwʼêl","gheh-oo-ale'","From H1342 and H410; majesty of God; Geuel, an Israelite: - Geuel."]},{"k":"H1346","v":["גַּאֲוָה","gaʼăvâh","gah-av-aw'","From H1342; arrogance or majesty; by implication (concretely) ornament: - excellency, haughtiness, highness, pride, proudly, swelling."]},{"k":"H1347","v":["גָּאוֹן","gâʼôwn","gaw-ohn'","From H1342; the same as H1346: - arrogancy, excellency (-lent), majesty, pomp, pride, proud, swelling."]},{"k":"H1348","v":["גֵּאוּת","gêʼûwth","gay-ooth'","From H1342; the same as H1346: - excellent things, lifting up, majesty, pride, proudly, raging."]},{"k":"H1349","v":["גַּאֲיוֹן","gaʼăyôwn","gah-ah-yone'","From H1342; haughty: - proud."]},{"k":"H1350","v":["גָּאַל","gâʼal","gaw-al'","A primitive root, to redeem (according to the Oriental law of kinship), that is, to be the next of kin (and as such to buy back a relative’s property, marry his widow, etc.): -    X in any wise, X at all, avenger, deliver, (do, perform the part of near, next) kinsfolk (-man), purchase, ransom, redeem (-er), revenger."]},{"k":"H1351","v":["גָּאַל","gâʼal","gaw-al'","A primitive root, (rather identical with H1350, through the idea of freeing, that is, repudiating); to soil or (figuratively) desecrate: - defile, pollute, stain."]},{"k":"H1352","v":["גֹּאֶל","gôʼel","go'-el","From H1351; profanation: - defile."]},{"k":"H1353","v":["גְּאֻלָּה","gᵉʼullâh","gheh-ool-law'","Feminine passive participle of H1350; redemption (including the right and the object); by implication relationship: - kindred, redeem, redemption, right."]},{"k":"H1354","v":["גַב","gab","gab","From an unused root meaning to hollow or curve; the back (as rounded (compare H1460 and H1479); by analogy the top or rim, a boss, a vault, arch of eye, bulwarks, etc.: - back, body, boss, eminent (higher) place, [eye] brows, nave, ring."]},{"k":"H1355","v":["גַּב","gab","gab","(Chaldee); corresponding to H1354: - back."]},{"k":"H1356","v":["גֵּב","gêb","gabe","From H1461; a log (as cut out); also well or cistern (as dug): - beam, ditch, pit."]},{"k":"H1357","v":["גֵּב","gêb","gabe","Probably from H1461 (compare H1462); a locust (from its cutting): - locust."]},{"k":"H1358","v":["גֹּב","gôb","gobe","From a root corresponding to H1461; a pit (for wild animals) (as cut out): - den."]},{"k":"H1359","v":["גֹּב","Gôb","gobe","From H1461; pit; Gob, a place in Palestine: - Gob."]},{"k":"H1360","v":["גֶּבֶא","gebeʼ","geh'-beh","From an unused root meaning probably to collect; a reservoir; by analogy a marsh: - marsh, pit."]},{"k":"H1361","v":["גָּבַהּ","gâbahh","gaw-bah'","A primitive root; to soar, that is, be lofty; figuratively to be haughty: - exalt, be haughty, be (make) high (-er), lift up, mount up, be proud, raise up great height, upward."]},{"k":"H1362","v":["גָּבָהּ","gâbâhh","gaw-bawh'","From H1361; lofty (literally or figuratively): - high, proud."]},{"k":"H1363","v":["גֹּבַהּ","gôbahh","go'-bah","From H1361; elation, grandeur, arrogance: - excellency, haughty, height, high, loftiness, pride."]},{"k":"H1364","v":["גָּבֹהַּ","gâbôahh","gaw-bo'-ah","From H1361; elevated (or elated), powerful, arrogant: - haughty, height, high (-er), lofty, proud, X exceeding proudly."]},{"k":"H1365","v":["גַּבְהוּת","gabhûwth","gab-hooth'","From H1361; pride: - loftiness, lofty."]},{"k":"H1366","v":["גְּבוּל","gᵉbûwl","gheb-ool'","From H1379; properly a cord (as twisted), that is, (by implication) a boundary; by extension the territory inclosed: - border, bound, coast, X great, landmark, limit, quarter, space."]},{"k":"H1367","v":["גְּבוּלָה","gᵉbûwlâh","gheb-oo-law'","Feminine of H1366; a boundary, region: - border, bound, coast, landmark, place."]},{"k":"H1368","v":["גִּבּוֹר","gibbôwr","ghib-bore'","Intensive from the same as H1397; powerful; by implication warrior, tyrant: - champion, chief, X excel, giant, man, mighty (man, one), strong (man), valiant man."]},{"k":"H1369","v":["גְּבוּרָה","gᵉbûwrâh","gheb-oo-raw'","Feminine passive participle from the same as H1368; force (literally or figuratively); by implication valor, victory: - force, mastery, might, mighty (act, power), power, strength."]},{"k":"H1370","v":["גְּבוּרָה","gᵉbûwrâh","gheb-oo-raw'","(Chaldee); corresponding to H1369; power: - might."]},{"k":"H1371","v":["גִּבֵּחַ","gibbêach","ghib-bay'-akh","From an unused root meaning to be high (in the forehead); bald in the forehead: - forehead bald."]},{"k":"H1372","v":["גַּבַּחַת","gabbachath","gab-bakh'-ath","From the same as H1371; baldness in the forehead; by analogy a bare spot on the right side of cloth: - bald forehead, X without."]},{"k":"H1373","v":["גַּבַּי","Gabbay","gab-bah'ee","From the same as H1354; collective: - Gabbai, an Isr: - Gabbai."]},{"k":"H1374","v":["גֵּבִים","Gêbîym","gay-beem'","Plural of H1356; cisterns; Gebim, a place in Palestine: - Gebim."]},{"k":"H1375","v":["גְּבִיעַ","gᵉbîyaʻ","gheb-ee'-ah","From an unused root (meaning to be convex); a goblet; by analogy the calyx of a flower: - house, cup, pot."]},{"k":"H1376","v":["גְּבִיר","gᵉbîyr","gheb-eer'","From H1396; a master: - lord."]},{"k":"H1377","v":["גְּבִירָה","gᵉbîyrâh","gheb-ee-raw'","Feminine of H1376; a mistress: - queen."]},{"k":"H1378","v":["גָּבִישׁ","gâbîysh","gaw-beesh'","From an unused root (probably meaning to freeze); crystal (from its resemblance to ice): - pearl."]},{"k":"H1379","v":["גָּבַל","gâbal","gaw-bal'","A primitive root; properly to twist as a rope; only (as a denominative from H1366) to bound (as by a line): - be border, set (bounds about)."]},{"k":"H1380","v":["גְּבַל","Gᵉbal","gheb-al'","From H1379 (in the sense of a chain of hills); a mountain; Gebal, a place in Phoenicia: - Gebal."]},{"k":"H1381","v":["גְּבָל","Gᵉbâl","gheb-awl'","The same as H1380; Gebal, a region in Idumaea: - Gebal."]},{"k":"H1382","v":["גִּבְלִי","Giblîy","ghib-lee'","Patrial from H1380; a Gebalite, or inhabitant of Gebal: - Giblites, stone-squarer."]},{"k":"H1383","v":["גַּבְלֻת","gabluth","gab-looth'","From H1379; a twisted chain or lace: - end."]},{"k":"H1384","v":["גִּבֵּן","gibbên","gib-bane'","From an unused root meaning to be arched or contracted; hunch backed: - crookbackt."]},{"k":"H1385","v":["גְּבִנָה","gᵉbinâh","gheb-ee-naw'","Feminine from the same as H1384; curdled milk: - cheese."]},{"k":"H1386","v":["גַּבְנֹן","gabnôn","gab-nohn'","From the same as H1384; a hump or peak of hills: - high."]},{"k":"H1387","v":["גֶּבַע","Gebaʻ","gheh'-bah","From the same as H1375, a hillock; Geba, a place in Palestine: - Gaba, Geba, Gibeah."]},{"k":"H1388","v":["גִּבְעָא","Gibʻâʼ","ghib-aw'","By permutation for H1389; a hill; Giba, a place in Palestine: - Gibeah."]},{"k":"H1389","v":["גִּבְעָה","gibʻâh","ghib-aw'","Feminine from the same as H1387; a hillock: - hill, little hill."]},{"k":"H1390","v":["גִּבְעָה","Gibʻâh","ghib-aw'","The same as H1389; Gibah; the name of three places in Palestine: - Gibeah, the hill."]},{"k":"H1391","v":["גִּבְעוֹן","Gibʻôwn","ghib-ohn'","From the same as H1387; hilly; Gibon, a place in Palestine: - Gibeon."]},{"k":"H1392","v":["גִּבְעֹל","gibʻôl","ghib-ole'","Prolonged H1375; the calyx of a flower: - bolled."]},{"k":"H1393","v":["גִּבְעֹנִי","Gibʻônîy","ghib-o-nee'","Patrial from H1391; a Gibonite, or inhabitant of Gibon: - Gibeonite."]},{"k":"H1394","v":["גִּבְעַת","Gibʻath","ghib-ath'","From the same as H1375; hilliness; Gibath: - Gibeath."]},{"k":"H1395","v":["גִּבְעָתִי","Gibʻâthîy","ghib-aw-thee'","Patrial from H1390; a Gibathite, or inhabitant of Gibath: - Gibeathite."]},{"k":"H1396","v":["גָּבַר","gâbar","gaw-bar'","A primitive root; to be strong; by implication to prevail, act insolently: - exceed, confirm, be great, be mighty, prevail, put to more [strength], strengthen, be stronger, be valiant."]},{"k":"H1397","v":["גֶּבֶר","geber","gheh'-ber","From H1396; properly a valiant man or warrior; generally a person simply: - every one, man, X mighty."]},{"k":"H1398","v":["גֶּבֶר","Geber","gheh'-ber","The same as H1397; Geber, the name of two Israelites: - Geber."]},{"k":"H1399","v":["גְּבַר","gᵉbar","gheb-ar'","From H1396; the same as H1397; a person: - man."]},{"k":"H1400","v":["גְּבַר","gᵉbar","gheb-ar'","(Chaldee); corresponding to H1399: - certain, man."]},{"k":"H1401","v":["גִּבָּר","gibbâr","ghib-bawr'","(Chaldee); intensive of H1400; valiant, or warrior: - mighty."]},{"k":"H1402","v":["גִּבָּר","Gibbâr","ghib-bawr'","Intensive of H1399; Gibbar, an Israelite: - Gibbar."]},{"k":"H1403","v":["גַּבְרִיאֵל","Gabrîyʼêl","gab-ree-ale'","From H1397 and H410; man of God; Gabriel, an archangel: - Gabriel."]},{"k":"H1404","v":["גְּבֶרֶת","gᵉbereth","gheb-eh'-reth","Feminine of H1376; mistress: - lady, mistress."]},{"k":"H1405","v":["גִּבְּתוֹן","Gibbᵉthôwn","ghib-beth-one'","Intensive of H1389; a hilly spot; Gibbethon, a place in Palestine: - Gibbethon."]},{"k":"H1406","v":["גָּג","gâg","gawg","Probably by reduplication from H1342; a roof; by analogy the top of an altar: - roof (of the house), (house) top (of the house)."]},{"k":"H1407","v":["גַּד","gad","gad","From H1413 (in the sense of cutting); coriander seed (from its furrows): - coriander."]},{"k":"H1408","v":["גַּד","Gad","gad","A variation of H1409; Fortune, a Babylonian deity: - that troop."]},{"k":"H1409","v":["גָּד","gâd","gawd","From H1464 (in the sense of distributing); fortune: - troop."]},{"k":"H1410","v":["גָּד","Gâd","gawd","From H1464; Gad, a son of Jacob, including his tribe and its territory; also a prophet: - Gad."]},{"k":"H1411","v":["גְּדָבָר","gᵉdâbâr","ghed-aw-bawr'","(Chaldee); corresponding to H1489; a treasurer: - treasurer."]},{"k":"H1412","v":["גֻּדְגֹּדָה","Gudgôdâh","gud-go'-daw","By reduplication from H1413 (in the sense of cutting) cleft; Gudgodah, a place in the Desert: - Gudgodah."]},{"k":"H1413","v":["גָּדַד","gâdad","gaw-dad'","A primitive root (compare H1461); to crowd; also to gash (as if by pressing into): - assemble (selves by troops), gather (selves together, self in troops), cut selves."]},{"k":"H1414","v":["גְּדַד","gᵉdad","ghed-ad'","(Chaldee); corresponding to H1413; to cut down: - hew down."]},{"k":"H1415","v":["גָּדָה","gâdâh","gaw-daw'","From an unused root (meaning to cut off); a border of a river (as cut into by the stream): - bank."]},{"k":"H1416","v":["גְּדוּד","gᵉdûwd","ghed-ood'","From H1413; a crowd (especially of soldiers): - army, band (of men), company, troop (of robbers)."]},{"k":"H1417","v":["גְּדוּד","gᵉdûwd","ghed-ood'","From H1413; a furrow (as cut): - furrow."]},{"k":"H1418","v":["גְּדוּדָה","gᵉdûwdâh","ghed-oo-daw'","Feminine participle passive of H1413; an incision: - cutting."]},{"k":"H1419","v":["גָּדוֹל","gâdôwl","gaw-dole'","From H1431; great (in any sense); hence older; also insolent: -  + aloud, elder (-est), + exceeding (-ly), + far, (man of) great (man, matter, thing, -er, -ness), high, long, loud, mighty, more, much, noble, proud thing, X sore, (´) very."]},{"k":"H1420","v":["גְּדוּלָה","gᵉdûwlâh","ghed-oo-law'","Feminine of H1419; greatness; (concretely) mighty acts: - dignity, great things (-ness), majesty."]},{"k":"H1421","v":["גִּדּוּף","giddûwph","ghid-doof'","From H1422; vilification: - reproach, reviling."]},{"k":"H1422","v":["גְּדוּפָה","gᵉdûwphâh","ghed-oo-faw'","Feminine passive participle of H1442; a revilement: - taunt."]},{"k":"H1423","v":["גְּדִי","gᵉdîy","ghed-ee'","From the same as H1415; a young goat (from browsing): - kid."]},{"k":"H1424","v":["גָּדִי","Gâdîy","gaw-dee'","From H1409; fortunate; Gadi, an Israelite: - Gadi."]},{"k":"H1425","v":["גָּדִי","Gâdîy","gaw-dee'","Patronymic from H1410; a Gadite (collectively) or descendant of Gad: - Gadites, children of Gad."]},{"k":"H1426","v":["גַּדִּי","Gaddîy","gad-dee'","Intensive for H1424; Gaddi, an Israelite: - Gaddi."]},{"k":"H1427","v":["גַּדִּיאֵל","Gaddîyʼêl","gad-dee-ale'","From H1409 and H410; fortune of God; Gaddiel, an Israelite: - Gaddiel."]},{"k":"H1428","v":["גִּדְיָה","gidyâh","ghid-yaw'","The same as H1415; a river brink: - bank."]},{"k":"H1429","v":["גְּדִיָּה","gᵉdîyâh","ghed-ee-yaw'","Feminine of H1423; a young female goat: - kid."]},{"k":"H1430","v":["גָּדִישׁ","gâdîysh","gaw-deesh'","From an unused root (meaning to heap up); a stack of sheaves; by analogy a tomb: - shock (stack) (of corn), tomb."]},{"k":"H1431","v":["גָּדַל","gâdal","gaw-dal'","A primitive root; properly to twist (compare H1434), that is, to be (causatively make) large (in various senses, as in body, mind, estate or honor, also in pride): - advance, boast, bring up, exceed, excellent, be (-come, do, give, make, wax), great (-er, come to . . estate, + things), grow (up), increase, lift up, magnify (-ifical), be much set by, nourish (up), pass, promote, proudly [spoken], tower."]},{"k":"H1432","v":["גָּדֵל","gâdêl","gaw-dale'","From H1431; large (literally or figuratively): - great, grew."]},{"k":"H1433","v":["גֹּדֶל","gôdel","go'-del","From H1431; magnitude (literally or figuratively): - greatness, stout (-ness)."]},{"k":"H1434","v":["גְּדִל","gᵉdil","ghed-eel'","From H1431 (in the sense of twisting); thread, that is, a tassel or festoon: - fringe, wreath."]},{"k":"H1435","v":["גִּדֵּל","Giddêl","ghid-dale'","From H1431; stout; Giddel, the name of one of the Nethinim, also of one of Solomon’s servants: - Giddel."]},{"k":"H1436","v":["גְּדַּלְיָה","Gᵉdalyâh","ghed-al-yaw'","From H1431 and H3050; Jah has become great; Gedaljah, the name of five Israelites: - Gedaliah."]},{"k":"H1437","v":["גִּדַּלְתִּי","Giddaltîy","ghid-dal'-tee","From H1431; I have made great; Giddalti, an Israelite: - Giddalti."]},{"k":"H1438","v":["גָּדַע","gâdaʻ","gaw-dah'","A primitive root; to fell a tree; generally to destroy anything: - cut (asunder, in sunder, down, off), hew down."]},{"k":"H1439","v":["גִּדְעוֹן","Gidʻôwn","ghid-ohn'","From H1438; feller (that is, warrior); Gidon, an Israelite: - Gideon."]},{"k":"H1440","v":["גִּדְעֹם","Gidʻôm","ghid-ohm'","From H1438; a cutting (that is, desolation); Gidom, a place in Palestine: - Gidom."]},{"k":"H1441","v":["גִּדְעֹנִי","Gidʻônîy","ghid-o-nee'","From H1438; warlike (compare H1439); Gidoni, an Israelite: - Gideoni."]},{"k":"H1442","v":["גָּדַף","gâdaph","gaw-daf'","A primitive root; to hack (with words), that is, revile: - blaspheme, reproach."]},{"k":"H1443","v":["גָּדַר","gâdar","gaw-dar'","A primitive root; to wall in or around: - close up, fence up, hedge, inclose, make up [a wall], mason, repairer."]},{"k":"H1444","v":["גֶּדֶר","geder","gheh'-der","From H1443; a circumvallation: - wall."]},{"k":"H1445","v":["גֶּדֶר","Geder","gheh'-der","The same as H1444; Geder, a place in Palestine: - Geder."]},{"k":"H1446","v":["גְדֹר","Gᵉdôr","ghed-ore'","From H1443; inclosure; Gedor, a place in Palestine; also the name of three Israelites: - Gedor."]},{"k":"H1447","v":["גָּדֵר","gâdêr","gaw-dare'","From H1443; a circumvallation; by implication an inclosure: - fence, hedge, wall."]},{"k":"H1448","v":["גְּדֵרָה","gᵉdêrâh","ghed-ay-raw'","Feminine of H1447; inclosure (especially for flocks): -    [sheep-]cote (fold) hedge, wall."]},{"k":"H1449","v":["גְּדֵרָה","Gᵉdêrâh","ghed-ay-raw'","The same as H1448; (with the article) Gederah, a place in Palestine: - Gederah, hedges."]},{"k":"H1450","v":["גְּדֵרוֹת","Gᵉdêrôwth","ghed-ay-rohth'","Plural of H1448; walls; Gederoth, a place in Palestine: - Gederoth."]},{"k":"H1451","v":["גְּדֵרִי","Gᵉdêrîy","ghed-ay-ree'","Patrial from H1445; a Gederite, or inhabitant of Geder: - Gederite."]},{"k":"H1452","v":["גְּדֵרָתִי","Gᵉdêrâthîy","ghed-ay-raw-thee'","Patrial from H1449; a Gederathite, or inhabitant of Gederah: - Gederathite."]},{"k":"H1453","v":["גְּדֵרֹתַיִם","Gᵉdêrôthayim","ghed-ay-ro-thah'-yim","Dual of H1448; double wall; Gederothajim, a place in Palestine: - Gederothaim."]},{"k":"H1454","v":["גֵּה","gêh","gay","Probably a clerical error for H2088; this: - this."]},{"k":"H1455","v":["גָּהָה","gâhâh","gaw-haw'","A primitive root; to remove (a bandage from a wound, that is, heal it): - cure."]},{"k":"H1456","v":["גֵּהָה","gêhâh","gay-haw'","From H1455; a cure: - medicine."]},{"k":"H1457","v":["גָּהַר","gâhar","gaw-har'","A primitive root; to prostrate oneself: - cast self down, stretch self."]},{"k":"H1458","v":["גַּו","gav","gav","Another form for H1460; the back: - back."]},{"k":"H1459","v":["גַּו","gav","gav","(Chaldee); corresponding to H1460; the middle: - midst, same, there- (where-) in."]},{"k":"H1460","v":["גֵּו","gêv","gave","From H1342 (corresponding to H1354); the back; by analogy the middle: -  + among, back, body."]},{"k":"H1461","v":["גּוּב","gûwb","goob","A primitive root; to dig: - husbandman."]},{"k":"H1462","v":["גּוֹב","gôwb","gobe","From H1461; the locust (from its grubbing as a larve): - grasshopper, X great."]},{"k":"H1463","v":["גּוֹג","Gôwg","gohg","Of uncertain derivation; Gog, the name of an Israelite, also of some northern nation: - Gog."]},{"k":"H1464","v":["גּוּד","gûwd","goode","A primitive root (akin to H1413); to crowd upon, that is, attack: - invade, overcome."]},{"k":"H1465","v":["גֵּוָה","gêvâh","gay-vaw'","Feminine of H1460; the back, that is, (by extension) the person: - body."]},{"k":"H1466","v":["גֵּוָה","gêvâh","gay-vaw'","The same as H1465; exaltation; (figuratively) arrogance: - lifting up, pride."]},{"k":"H1467","v":["גֵּוָה","gêvâh","gay-vaw'","(Chaldee); corresponding to H1466: - pride."]},{"k":"H1468","v":["גּוּז","gûwz","gooz","A primitive root (compare H1494); properly to shear off; but used only in the (figurative) sense of passing rapidly: - bring, cutoff."]},{"k":"H1469","v":["גּוֹזָל","gôwzâl","go-zawl'","From H1497; a nestling (as being comparatively nude of feathers): - young (pigeon)."]},{"k":"H1470","v":["גּוֹזָן","Gôwzân","go-zawn'","Probably from H1468; a quarry (as a place of cutting stones); Gozan, a province of Assyria: - Gozan."]},{"k":"H1471","v":["גּוֹי","gôwy","go'-ee","Apparently from the same root as H1465 (in the sense of massing); a foreign nation; hence a Gentile; also (figuratively) a troop of animals, or a flight of locusts: - Gentile, heathen, nation, people."]},{"k":"H1472","v":["גְּוִיָּה","gᵉvîyâh","ghev-ee-yaw'","Prolonged for H1465; a body, whether alive or dead: - (dead) body, carcase, corpse."]},{"k":"H1473","v":["גּוֹלָה","gôwlâh","go-law'","Active participle feminine of H1540; exile; concretely and collectively, exiles: - (carried away), captive (-ity), removing."]},{"k":"H1474","v":["גּוֹלָן","Gôwlân","go-lawn'","From H1473; captive; Golan, a place East of the Jordan: - Golan."]},{"k":"H1475","v":["גּוּמָּץ","gûwmmâts","goom-mawts'","Of uncertain derivation; a pit: - pit."]},{"k":"H1476","v":["גּוּנִי","Gûwnîy","goo-nee'","Probably from H1598; protected; Guni, the name of two Israelites: - Guni."]},{"k":"H1477","v":["גּוּנִי","Gûwnîy","goo-nee'","Patronymic from H1476; a Gunite (collectively with article prefixed) or descendant of Guni: - Gunites."]},{"k":"H1478","v":["גָּוַע","gâvaʻ","gaw-vah'","A primitive root; to breathe out, that is, (by implication) expire: - die, be dead, give up the ghost, perish."]},{"k":"H1479","v":["גּוּף","gûwph","goof","A primitive root; properly to hollow or arch, that is, (figuratively) close; to shut: - shut."]},{"k":"H1480","v":["גּוּפָה","gûwphâh","goo-faw'","From H1479; a corpse (as closed to sense): - body."]},{"k":"H1481","v":["גּוּר","gûwr","goor","A primitive root; properly to turn aside from the road (for a lodging or any other purpose), that is, sojourn (as a guest); also to shrink, fear (as in a strange place); also to gather for hostility (as afraid): - abide, assemble, be afraid, dwell, fear, gather (together), inhabitant, remain, sojourn, stand in awe, (be) stranger, X surely."]},{"k":"H1482","v":["גּוּר","gûwr","goor","Perhaps from H1481; a cub (as still abiding in the lair), especially of the lion: - whelp, young one."]},{"k":"H1483","v":["גּוּר","Gûwr","goor","The same as H1482; Gur, a place in Palestine: - Gur."]},{"k":"H1484","v":["גּוֹר","gôwr","gore","A variation of H1482: - whelp."]},{"k":"H1485","v":["גּוּר־בַּעַל","Gûwr-Baʻal","goor-bah'-al","From H1481 and H1168; dwelling of Baal; Gur Baal, a place in Arabia: - Gur-baal."]},{"k":"H1486","v":["גּוֹרָל","gôwrâl","go-rawl'","From an unused root meaning to be rough (as stone); properly a pebble, that is, a lot (small stones being used for that purpose); figuratively a portion or destiny (as if determined by lot): - lot."]},{"k":"H1487","v":["גּוּשׁ","gûwsh","goosh","Of uncertainly derivation; a mass of earth: - clod."]},{"k":"H1488","v":["גֵּז","gêz","gaze","From H1494; a fleece (as shorn); also mown grass: - fleece, mowing, mown grass."]},{"k":"H1489","v":["גִּזְבָּר","gizbâr","ghiz-bawr'","Of foreign derivation; treasurer: - treasurer."]},{"k":"H1490","v":["גִּזְבָּר","gizbâr","ghiz-bawr'","(Chaldee); corresponding to H1489: - treasurer."]},{"k":"H1491","v":["גָּזָה","gâzâh","gaw-zaw'","A primitive root (akin to H1468); to cut off, that is, portion out: - take."]},{"k":"H1492","v":["גָּזַּה","gâzzah","gaz-zaw'","Feminine from H1494; a fleece: - fleece."]},{"k":"H1493","v":["גִּזוֹנִי","Gizôwnîy","ghee-zo-nee'","Patrial from the unused name of a place apparently in Palestine; a Gizonite or inhabitant of Gizoh: - Gizonite."]},{"k":"H1494","v":["גַּזָז","gazâz","gaw-zaz'","A primitive root (akin to H1468); to cut off; specifically to shear a flock, or shave the hair; figuratively to destroy an enemy: - cut off (down), poll, shave, ([sheep-]) shear (-er)."]},{"k":"H1495","v":["גָּזֵז","Gâzêz","gaw-zaze'","From H1494; shearer; Gazez, the name of two Israelites: - Gazez."]},{"k":"H1496","v":["גָּזִית","gâzîyth","gaw-zeeth'","From H1491; something cut, that is, dressed stone: - hewed, hewn stone, wrought."]},{"k":"H1497","v":["גָּזַל","gâzal","gaw-zal'","A primitive root; to pluck off; specifically to flay, strip or rob: - catch, consume, exercise [robbery], pluck (off), rob, spoil, take away (by force, violence), tear."]},{"k":"H1498","v":["גָּזֵל","gâzêl","gaw-zale'","From H1497; robbery, or (concretely) plunder: - robbery, thing taken away by violence."]},{"k":"H1499","v":["גֵּזֶל","gêzel","ghe'-zel","From H1497; plunder, that is, violence: - violence, violent preverting."]},{"k":"H1500","v":["גְּזֵלָה","gᵉzêlâh","ghez-ay-law'","Feminine of H1498 and meaning the same: - that (he had robbed) [which he took violently away], spoil, violence."]},{"k":"H1501","v":["גָּזָם","gâzâm","gaw-zawm'","From an unused root meaning to devour; a kind of locust: - palmer-worm."]},{"k":"H1502","v":["גַּזָּם","Gazzâm","gaz-zawm'","From the same as H1501; devourer: - Gazzam, one of the Nethinim: - Gazzam."]},{"k":"H1503","v":["גֶּזַע","gezaʻ","geh'-zah","From an unused root meaning to cut down (trees); the trunk or stump of a tree (as felled or as planted): - stem, stock."]},{"k":"H1504","v":["גָּזַר","gâzar","gaw-zar'","A primitive root; to cut down or off; (figuratively) to destroy, divide, exclude or decide: - cut down (off), decree, divide, snatch."]},{"k":"H1505","v":["גְּזַר","gᵉzar","ghez-ar'","(Chaldee); corresponding to H1504; to quarry; determine: - cut out, soothsayer."]},{"k":"H1506","v":["גֶּזֶר","gezer","gheh'-zer","From H1504; something cut off; a portion: - part, piece."]},{"k":"H1507","v":["גֶּזֶר","Gezer","gheh'-zer","The same as H1506; Gezer, a place in Palestine: - Gazer, Gezer."]},{"k":"H1508","v":["גִּזְרָה","gizrâh","ghiz-raw'","Feminine of H1506; the figure or person (as if cut out); also an inclosure (as separated): - polishing, separate place."]},{"k":"H1509","v":["גְּזֵרָה","gᵉzêrâh","ghez-ay-raw'","From H1504; a desert (as separated): - not inhabited."]},{"k":"H1510","v":["גְּזֵרָה","gᵉzêrâh","ghez-ay-raw'","(Chaldee); From H1505 (as H1504); a decree: - decree."]},{"k":"H1511","v":["גִּזְרִי","Gizrîy","ghiz-ree'","The first form is patrial from H1507; a Gezerite (collectively) or inhabitant of Gezer; but the second form is better (as in the text) by transposition and is patrial of H1630; a Girzite (collectively) or member of a native tribe in Palestine: - Gezrites."]},{"k":"H1512","v":["גָּחוֹן","gâchôwn","gaw-khone'","Probably from H1518; the external abdomen, belly (as the source of the foetus (compare H1521)): - belly."]},{"k":"H1513","v":["גֶּחֶל","gechel","geh'-khel","From an unused root meaning to glow or kindle; an ember: - (burning) coal."]},{"k":"H1514","v":["גַּחַם","Gacham","gah'-kham","From an unused root meaning to burn; flame; Gacham, a son of Nahor: - Gaham."]},{"k":"H1515","v":["גַּחַר","Gachar","gah'-khar","From an unused root meaning to hide; lurker; Gachar, one of the Nethinim: - Gahar."]},{"k":"H1516","v":["גַּיְא","gayʼ","gah'-ee","Probably (by transmutation) from the same root as H1466 (abbreviated); a gorge (from its lofty sides; hence narrow, but not a gully or winter torrent): - valley."]},{"k":"H1517","v":["גִּיד","gîyd","gheed","Probably from H1464; a thong (as compressing); by analogy a tendon: - sinew."]},{"k":"H1518","v":["גִּיחַ","gîyach","ghee'-akh","A primitive root; to gush forth (as water), generally to issue: - break forth, labor to bring forth, come forth, draw up, take out."]},{"k":"H1519","v":["גִּיחַ","gîyach","ghee'-akh","(Chaldee); corresponding to H1518; to rush forth: - strive."]},{"k":"H1520","v":["גִּיחַ","Gîyach","ghee'-akh","From H1518; a fountain; Giach, a place in Palestine: - Giah."]},{"k":"H1521","v":["גִּיחוֹן","Gîychôwn","ghee-khone'","From H1518; stream; Gichon, a river of Paradise; also a valley (or pool) near Jerusalem: - Gihon."]},{"k":"H1522","v":["גֵּיחֲזִי","Gêychăzîy","gay-khah-zee'","Apparently from H1516 and H2372; valley of a visionary; Gechazi, the servant of Elisha: - Gehazi."]},{"k":"H1523","v":["גִּיל","gîyl","gheel","A primitive root; properly to spin around (under the influence of any violent emotion), that is, usually rejoice, or (as cringing) fear: - be glad, joy, be joyful, rejoice."]},{"k":"H1524","v":["גִּיל","gîyl","gheel","From H1523; a revolution (of time, that is, an age); also joy: -  X exceedingly, gladness, X greatly, joy, rejoice (-ing), sort."]},{"k":"H1525","v":["גִּילָה","gîylâh","ghee-law'","Feminine of H1524; joy: - joy, rejoicing."]},{"k":"H1526","v":["גִּילֹנִי","Gîylônîy","ghee-lo-nee'","Patrial from H1542; a Gilonite or inhabitant of Giloh: - Gilonite."]},{"k":"H1527","v":["גִּינַת","Gîynath","ghee-nath'","Of uncertain derivation; Ginath, an Israelite: - Ginath."]},{"k":"H1528","v":["גִּיר","gîyr","gheer","(Chaldee); corresponding to H1615; lime: - plaster."]},{"k":"H1529","v":["גֵּישָׁן","Gêyshân","gay-shawn'","From the same as H1487; lumpish; Geshan, an Israelite: - Geshan."]},{"k":"H1530","v":["גַּל","gal","gal","From H1556; something rolled, that is, a heap of stone or dung (plural ruins); by analogy a spring of water (plural waves): - billow, heap, spring, wave."]},{"k":"H1531","v":["גֹּל","gôl","gole","From H1556; a cup for oil (as round): - bowl."]},{"k":"H1532","v":["גַּלָּב","gallâb","gal-lawb'","From an unused root meaning to shave; a barber: - barber."]},{"k":"H1533","v":["גִּלְבֹּעַ","Gilbôaʻ","ghil-bo'-ah","From H1530 and H1158; fountain of ebullition; Gilboa, a mountain of Palestine: - Gilboa."]},{"k":"H1534","v":["גַּלְגַּל","galgal","gal-gal'","By reduplication from H1556; a wheel; by analogy a whirlwind; also dust (as whirled): - heaven, rolling thing, wheel."]},{"k":"H1535","v":["גַּלְגַּל","galgal","gal-gal'","(Chaldee); corresponding to H1534; a wheel: - wheel."]},{"k":"H1536","v":["גִּלְגָּל","gilgâl","ghil-gawl'","A variation of H1534: - wheel."]},{"k":"H1537","v":["גִּלְגָּל","Gilgâl","ghil-gawl'","The same as H1536 (with the article as a properly noun); Gilgal, the name of three places in Palestine: - Gilgal. See also H1019."]},{"k":"H1538","v":["גֻּלְגֹּלֶת","gulgôleth","gul-go'-leth","By reduplication from H1556; a skull (as round); by implication a head (in enumeration of persons): - head, every man, poll, skull."]},{"k":"H1539","v":["גֶּלֶד","geled","ghe'-led","From an unused root probably meaning to polish; the (human) skin (as smooth): - skin."]},{"k":"H1540","v":["גָּלָה","gâlâh","gaw-law'","A primitive root; to denude (especially in a disgraceful sense); by implication to exile (captives being usually stripped); figuratively to reveal: -  + advertise, appear, bewray, bring, (carry, lead, go) captive (into captivity), depart, disclose, discover, exile, be gone, open, X plainly, publish, remove, reveal, X shamelessly, shew, X surely, tell, uncover."]},{"k":"H1541","v":["גְּלָה","gᵉlâh","ghel-aw'","(Chaldee); corresponding to H1540: - bring over, carry away, reveal."]},{"k":"H1542","v":["גִּלֹה","Gilôh","ghee-lo'","From H1540; open; Giloh, a place in Palestine: - Giloh."]},{"k":"H1543","v":["גֻּלָּה","gullâh","gool-law'","Feminine from H1556; a fountain, bowl or globe (all as round): - bowl, pommel, spring."]},{"k":"H1544","v":["גִּלּוּל","gillûwl","ghil-lool'","From H1556; properly a log (as round); by implication an idol: - idol."]},{"k":"H1545","v":["גְּלוֹם","gᵉlôwm","ghel-ome'","From H1563; clothing (as wrapped): - clothes."]},{"k":"H1546","v":["גָּלוּת","gâlûwth","gaw-looth'","Feminine from H1540; captivity; concretely exiles (collectively): - (they that are carried away) captives (-ity.)"]},{"k":"H1547","v":["גָּלוּת","gâlûwth","gaw-looth'","(Chaldee); corresponding to H1546: - captivity."]},{"k":"H1548","v":["גָּלַח","gâlach","gaw-lakh'","A primitive root; properly to be bald, that is, (causatively) to shave; figuratively to lay waste: - poll, shave (off)."]},{"k":"H1549","v":["גִּלָּיוֹן","gillâyôwn","ghil-law-yone'","From H1540; a tablet for writing (as bare); by analogy a mirror (as a plate): - glass, roll."]},{"k":"H1550","v":["גָּלִיל","gâlîyl","gaw-leel'","From H1556; a valve of a folding door (as turning); also a ring (as round): - folding, ring."]},{"k":"H1551","v":["גָּלִיל","Gâlîyl","gaw-leel'","The same as H1550; a circle (with the article); Galil (as a special circuit) in the North of Palestine: - Galilee."]},{"k":"H1552","v":["גְלִילָה","gᵉlîylâh","ghel-ee-law'","Feminine of H1550; a circuit or region: - border, coast, country."]},{"k":"H1553","v":["גְּלִילוֹת","Gᵉlîylôwth","ghel-ee-lowth'","Plural of H1552; circles; Geliloth, a place in Palestine: - Geliloth."]},{"k":"H1554","v":["גַּלִּים","Gallîym","gal-leem'","Plural of H1530; springs, Gallim, a place in Palestine: - Gal-lim."]},{"k":"H1555","v":["גׇּלְיַת","Golyath","gol-yath'","Perhaps from H1540; exile; Goljath, a Philistine: - Goliath."]},{"k":"H1556","v":["גָּלַל","gâlal","gaw-lal'","A primitive root; to roll (literally or figuratively): - commit, remove, roll (away, down, together), run down, seek occasion, trust, wallow."]},{"k":"H1557","v":["גָּלָל","gâlâl","gaw-lawl'","From H1556; dung (as in balls): - dung."]},{"k":"H1558","v":["גָּלָל","gâlâl","gaw-lawl'","From H1556; a circumstance (as rolled around); only used adverbially, on account of: - because of, for (sake)."]},{"k":"H1559","v":["גָּלָל","Gâlâl","gaw-lawl'","From H1556, in the sense of H1560; great; Galal, the name of two Israelites: - Galal."]},{"k":"H1560","v":["גְּלָל","gᵉlâl","ghel-awl'","(Chaldee); from a root corresponding to H1556; weight or size (as if rolled): - great."]},{"k":"H1561","v":["גֵּלֶל","gêlel","gay'-lel","(Chaldee); A variation of H1557; dung (plural balls of dung): - dung."]},{"k":"H1562","v":["גִּלֲלַי","Gilălay","ghe-lal-ah'-ee","From H1561; dungy; Gilalai, an Israelite: - Gilalai."]},{"k":"H1563","v":["גָּלַם","gâlam","gaw-lam'","A primitive root; to fold: - wrap together."]},{"k":"H1564","v":["גֹּלֶם","gôlem","go'-lem","From H1563; a wrapped (and unformed mass, that is, as the embryo): - substance yet being unperfect."]},{"k":"H1565","v":["גַּלְמוּד","galmûwd","gal-mood'","Probably by prolongation from H1563; sterile (as wrapped up too hard); figuratively desolate: - desolate, solitary."]},{"k":"H1566","v":["גָּלַע","gâlaʻ","gaw-lah'","A primitive root; to be obstinate: - (inter-) meddle (with)."]},{"k":"H1567","v":["גַּלְעֵד","Galʻêd","gal-ade'","From H1530 and H5707; heap of testimony; Galed, a memorial cairn East of the Jordan: - Galeed."]},{"k":"H1568","v":["גִּלְעָד","Gilʻâd","ghil-awd'","Probably from H1567; Gilad, a region East of the Jordan; also the name of three Israelites: - Gilead, Gileadite."]},{"k":"H1569","v":["גִּלְעָדִי","Gilʻâdîy","ghil-aw-dee'","Patronymic from H1568; a Giladite or descendant of Gilad: - Gileadite."]},{"k":"H1570","v":["גָּלַשׁ","gâlash","gaw-lash'","A primitive root; probably to caper (as a goat): - appear."]},{"k":"H1571","v":["גַּם","gam","gam","By contraction from an unused root meaning to gather; properly assemblage; used only adverbially also, even, yea, though; often repeated as correlation both... and: - again, alike, also, (so much) as (soon), both (so) . . . and, but, either . . . or, even, for all, (in) likewise (manner), moreover, nay . . . neither, one, then (-refore), though, what, with, yea."]},{"k":"H1572","v":["גָּמָא","gâmâʼ","gaw-maw'","A primitive root (literally or figuratively) to absorb: - swallow, drink."]},{"k":"H1573","v":["גֹּמֶא","gômeʼ","go'-meh","From H1572; properly an absorbent, that is, the bulrush (from its porosity); specifically the papyrus: - (bul-) rush."]},{"k":"H1574","v":["גֹּמֶד","gômed","go'-med","From an unused root apparently meaning to grasp; properly a span: - cubit."]},{"k":"H1575","v":["גַּמָּד","gammâd","gam-mawd'","From the same as H1574; a warrior (as grasping weapons): - Grammadims."]},{"k":"H1576","v":["גְּמוּל","gᵉmûwl","ghem-ool'","From H1580; treatment, that is, an act (of good or ill); by implication service or requital: - + as hast served, benefit, desert, deserving, that which he hath given, recompence, reward."]},{"k":"H1577","v":["גָּמוּל","gâmûwl","gaw-mool'","Passive participle of H1580; rewarded; Gamul, an Israelite: - Gamul. See also H1014."]},{"k":"H1578","v":["גְּמוּלָה","gᵉmûwlâh","ghem-oo-law'","Feminine of H1576; meaning the same: - deed, recompence, such a reward."]},{"k":"H1579","v":["גִּמְזוֹ","Gimzôw","ghim-zo'","Of uncertain derivation; Gimzo, a place in Palestine: - Gimzo."]},{"k":"H1580","v":["גָּמַל","gâmal","gaw-mal'","A primitive root; to treat a person (well or ill), that is, benefit or requite; by implication (of toil) to ripen, that is, (specifically) to wean: - bestow on, deal bountifully, do (good), recompense, requite, reward, ripen, + serve, wean, yield."]},{"k":"H1581","v":["גָּמָל","gâmâl","gaw-mawl'","Apparently from H1580 (in the sense of labor or burden bearing): - camel."]},{"k":"H1582","v":["גְּמַלִּי","Gᵉmallîy","ghem-al-lee'","Probably from H1581; camel driver; Gemalli, an Israelite: - Gemalli."]},{"k":"H1583","v":["גַּמְלִיאֵל","Gamlîyʼêl","gam-lee-ale'","From H1580 and H410; reward of God; Gamliel, an Israelite: - Gamaliel."]},{"k":"H1584","v":["גָּמַר","gâmar","gaw-mar'","A primitive root; to end (in the sense of completion or failure): - cease, come to an end, fail, perfect, perform."]},{"k":"H1585","v":["גְּמַר","gᵉmar","ghem-ar'","(Chaldee); corresponding to H1584: - perfect."]},{"k":"H1586","v":["גֹּמֶר","Gômer","go'-mer","From H1584; completion; Gomer, the name of a son of Japheth and of his descendants; also of a Hebrewess: - Gomer."]},{"k":"H1587","v":["גְּמַרְיָה","Gᵉmaryâh","ghem-ar-yaw'","From H1584 and H3050; Jah has perfected; Gemarjah, the name of two Israelites: - Gemariah."]},{"k":"H1588","v":["גַּן","gan","gan","From H1598; a garden (as fenced): - garden."]},{"k":"H1589","v":["גָּנַב","gânab","gaw-nab'","A primitive root; to thieve (literally or figuratively); by implication to deceive: - carry away, X indeed, secretly bring, steal (away), get by stealth."]},{"k":"H1590","v":["גַּנָּב","gannâb","gaw-nab'","From H1589; a stealer: - thief."]},{"k":"H1591","v":["גְּנֵבָה","gᵉnêbâh","ghen-ay-baw'","From H1589; stealing, that is, (concretely) something stolen: - theft."]},{"k":"H1592","v":["גְּנֻבַת","Gᵉnubath","ghen-oo-bath'","From H1589; theft; Genubath, an Edomitish prince: - Genubath."]},{"k":"H1593","v":["גַּנָּה","gannâh","gan-naw'","Feminine of H1588; a garden: - garden."]},{"k":"H1594","v":["גִּנָּה","ginnâh","ghin-naw'","Another form for H1593: - garden."]},{"k":"H1595","v":["גֶּנֶז","genez","gheh'-nez","From an unused root meaning to store; treasure; by implication a coffer: - chest, treasury."]},{"k":"H1596","v":["גְּנַז","gᵉnaz","ghen-az'","(Chaldee); corresponding to H1595; treasure: - treasure."]},{"k":"H1597","v":["גִּנְזַךְ","ginzak","ghin-zak'","Prolonged from H1595; a treasury: - treasury."]},{"k":"H1598","v":["גָּנַן","gânan","gaw-nan'","A primitive root; to hedge about, that is, (generally) protect: - defend."]},{"k":"H1599","v":["גִּנְּתוֹן","Ginnᵉthôwn","ghin-neth-one","From H1598; gardener; Ginnethon or Ginnetho, an Israelite: - Ginnetho, Ginnethon."]},{"k":"H1600","v":["גָּעָה","gâʻâh","gaw-aw'","A primitive root; to bellow (as cattle): - low."]},{"k":"H1601","v":["גֹּעָה","Gôʻâh","go-aw'","Feminine active participle of H1600; lowing; Goah, a place near Jerusalem: - Goath."]},{"k":"H1602","v":["גָּעַל","gâʻal","gaw-al'","A primitive root; to detest; by implication to reject: - abhor, fail, lothe, vilely cast away."]},{"k":"H1603","v":["גַּעַל","Gaʻal","gah'-al","From H1602; loathing; Gaal, an Israelite: - Gaal."]},{"k":"H1604","v":["גֹּעַל","gôʻal","go'-al","From H1602; abhorrence: - loathing."]},{"k":"H1605","v":["גָּעַר","gâʻar","gaw-ar'","A primitive root; to chide: - corrupt, rebuke, reprove."]},{"k":"H1606","v":["גְּעָרָה","gᵉʻârâh","gheh-aw-raw'","From H1605; a chiding: - rebuke (-ing), reproof."]},{"k":"H1607","v":["גָּעַשׁ","gâʻash","gaw-ash'","A primitive root to agitate violently: - move, shake, toss, trouble."]},{"k":"H1608","v":["גַּעַשׁ","Gaʻash","ga'-ash","From H1607; a quaking; Gaash, a hill in Palestine: - Gaash."]},{"k":"H1609","v":["גַּעְתָּם","Gaʻtâm","gah-tawm'","Of uncertain derivation; Gatam, an Edomite: - Gatam."]},{"k":"H1610","v":["גַּף","gaph","gaf","From an unused root meaning to arch; the back; by extension the body or self: -    + highest places, himself."]},{"k":"H1611","v":["גַּף","gaph","gaf","(Chaldee); corresponding to H1610: - a wing: - wing."]},{"k":"H1612","v":["גֶּפֶן","gephen","gheh'-fen","From an unused root meaning to bend; a vine (as twining), especially the grape: - vine, tree."]},{"k":"H1613","v":["גֹּפֶר","gôpher","go'-fer","From an unused root, probably meaning to house in; a kind of tree or wood (as used for building), apparently the cypress: - gopher."]},{"k":"H1614","v":["גׇּפְרִית","gophrîyth","gof-reeth'","Probably feminine of H1613; properly cypress resin; by analogy sulphur (as equally inflammable): - brimstone."]},{"k":"H1615","v":["גִּר","gir","gheer","Perhaps from H3564; lime (from being burned in a kiln): - chalk [-stone]."]},{"k":"H1616","v":["גֵּר","gêr","gare","From H1481; properly a guest; by implication a foreigner: - alien, sojourner, stranger."]},{"k":"H1617","v":["גֵּרָא","Gêrâʼ","gay-raw'","Perhaps from H1626; a grain; Gera, the name of six Israelites: - Gera."]},{"k":"H1618","v":["גָּרָב","gârâb","gaw-rawb'","From an unused root meaning to scratch; scurf (from itching): - scab, scurvy."]},{"k":"H1619","v":["גָּרֵב","Gârêb","gaw-rabe'","From the same as H1618; scabby; Gareb, the name of an Israelite, also of a hill near Jerusalem: - Gareb."]},{"k":"H1620","v":["גַּרְגַּר","gargar","gar-gar'","By reduplication from H1641; a berry (as if a pellet of rumination): - berry."]},{"k":"H1621","v":["גַּרְגְּרוֹת","gargᵉrôwth","gar-gher-owth'","Feminine plural from H1641; the throat (as used in rumination): - neck."]},{"k":"H1622","v":["גִּרְגָּשִׁי","Girgâshîy","ghir-gaw-shee'","Patrial from an unused name (of uncertain derivation); a Girgashite, one of the native tribes of Canaan: - Girgashite, Girgasite."]},{"k":"H1623","v":["גָּרַד","gârad","gaw-rad'","A primitive root; to abrade: - scrape."]},{"k":"H1624","v":["גָּרָה","gârâh","gaw-raw'","A primitive root; properly to grate, that is, (figuratively) to anger: - contend, meddle, stir up, strive."]},{"k":"H1625","v":["גֵּרָה","gêrâh","gay-raw'","From H1641; the cud (as scraping the throat): - cud."]},{"k":"H1626","v":["גֵּרָה","gêrâh","gay-raw'","From H1641 (as in H1625); properly (like H1620) a kernel (round as if scraped), that is, a gerah or small weight (and coin): - gerah."]},{"k":"H1627","v":["גָּרוֹן","gârôwn","gaw-rone'","From H1641; the throat (compare H1621) (as roughened by swallowing): -    X aloud, mouth, neck, throat."]},{"k":"H1628","v":["גֵּרוּת","gêrûwth","gay-rooth'","From H1481; a (temporary) residence: - habitation."]},{"k":"H1629","v":["גָּרַז","gâraz","gaw-raz'","A primitive root; to cut off: - cut off."]},{"k":"H1630","v":["גְּרִזִים","Gᵉrizîym","gher-ee-zeem'","Plural of an unused noun from H1629 (compare H1511), cut up (that is, rocky); Gerizim, a mountain of Palestine: - Gerizim."]},{"k":"H1631","v":["גַּרְזֶן","garzen","gar-zen'","From H1629; an axe: - ax."]},{"k":"H1632","v":["גָּרֹל","gârôl","gaw-role'","From the same as H1486; harsh: - man of great [as in the margin which reads H1419]."]},{"k":"H1633","v":["גָּרַם","gâram","gaw-ram'","A primitive root; to be spare or skeleton like; used only as a denominative from H1634; (causatively) to bone, that is, denude (by extension craunch) the bones: - gnaw the bones, break."]},{"k":"H1634","v":["גֶּרֶם","gerem","gheh'-rem","From H1633; a bone (as the skeleton of the body); hence self, that is, (figuratively) very: - bone, strong, top."]},{"k":"H1635","v":["גֶּרֶם","gerem","gheh'-rem","(Chaldee); corresponding to H1634; a bone: - bone."]},{"k":"H1636","v":["גַּרְמִי","Garmîy","gar-mee'","From H1634; bony, that is, strong: - Garmite."]},{"k":"H1637","v":["גֹּרֶן","gôren","go'-ren","From an unused root meaning to smooth; a threshing floor (as made even); by analogy any open area: - (barn, corn, threshing-) floor, (threshing-, void) place."]},{"k":"H1638","v":["גָּרַס","gâraç","gaw-ras'","A primitive root; to crush; also (intransitively and figuratively) to dissolve: - break."]},{"k":"H1639","v":["גָּרַע","gâraʻ","gaw-rah'","A primitive root; to scrape off; by implication to shave, remove, lessen or withhold: - abate, clip, (di-) minish, do (take) away, keep back, restrain, make small, withdraw."]},{"k":"H1640","v":["גָּרַף","gâraph","gaw-raf'","A primitive root; to bear off violently: - sweep away."]},{"k":"H1641","v":["גָּרַר","gârar","gaw-rar'","A primitive root; to drag off roughly; by implication to bring up the cud (that is, ruminate); by analogy to saw: - catch, chew, X continuing, destroy, saw."]},{"k":"H1642","v":["גְּרָר","Gᵉrâr","gher-awr'","Probably from H1641; a rolling country; Gerar, a Philistine city: - Gerar."]},{"k":"H1643","v":["גֶּרֶשׂ","geres","gheh'-res","From an unused root meaning to husk; a kernel (collectively), that is, grain: - beaten corn."]},{"k":"H1644","v":["גָּרַשׁ","gârash","gaw-rash'","A primitive root; to drive out from a possession; especially to expatriate or divorce: - cast up (out), divorced (woman), drive away (forth, out), expel, X surely put away, trouble, thrust out."]},{"k":"H1645","v":["גֶּרֶשׁ","geresh","gheh'-resh","From H1644; produce (as if expelled): - put forth."]},{"k":"H1646","v":["גְרֻשָׁה","gᵉrushâh","gher-oo-shaw'","Feminine passive participle of H1644; (abstractly) dispossession: - exaction."]},{"k":"H1647","v":["גֵּרְשֹׁם","Gêrᵉshôm","gay-resh-ome'","For H1648; Gereshom, the name of four Israelites: - Gershom."]},{"k":"H1648","v":["גֵּרְשׁוֹן","Gêrᵉshôwn","gay-resh-one'","From H1644; a refugee; Gereshon or Gereshom, an Israelite: - Gershon, Gershom."]},{"k":"H1649","v":["גֵּרְשֻׁנִּי","Gêrᵉshunnîy","gay-resh-oon-nee'","Patronymic from H1648; a Gereshonite or descendant of Gereshon: - Gershonite, sons of Gershon."]},{"k":"H1650","v":["גְּשׁוּר","Gᵉshûwr","ghesh-oor'","From an unused root (meaning to join); bridge; Geshur, a district of Syria: - Geshur, Geshurite."]},{"k":"H1651","v":["גְּשׁוּרִי","Gᵉshûwrîy","ghe-shoo-ree'","Patrial from H1650; a Geshurite (also collectively) or inhabitant of Geshur: - Geshuri, Geshurites."]},{"k":"H1652","v":["גָּשַׁם","gâsham","gaw-sham'","A primitive root; to shower violently: - (cause to) rain."]},{"k":"H1653","v":["גֶּשֶׁם","geshem","gheh'-shem","From H1652; a shower: - rain, shower."]},{"k":"H1654","v":["גֶּשֶׁם","Geshem","gheh'-shem","The same as H1653; Geshem or Gashmu, an Arabian: - Geshem, Gashmu."]},{"k":"H1655","v":["גֶּשֶׁם","geshem","gheh'-shem","(Chaldee); apparently the same as H1653; used in a peculiar sense, the body (probably for the (figurative) idea of a hard rain): - body."]},{"k":"H1656","v":["גֹּשֶׁם","gôshem","go'-shem","From H1652; equivalent to H1653: - rained upon."]},{"k":"H1657","v":["גֹּשֶׁן","Gôshen","go'-shen","Probably of Egyptian origin; Goshen, the residence of the Israelites in Egypt; also a place in Palestine: - Goshen."]},{"k":"H1658","v":["גִּשְׁפָּא","Gishpâʼ","ghish-paw'","Of uncertain derivation; Gishpa, an Israelite: - Gispa."]},{"k":"H1659","v":["גָּשַׁשׁ","gâshash","gaw-shash'","A primitive root; apparently to feel about: - grope."]},{"k":"H1660","v":["גַּת","gath","gath","Probably from H5059 (in the sense of treading out grapes); a wine press (or vat for holding the grapes in pressing them): - (wine-) press (fat)."]},{"k":"H1661","v":["גַּת","Gath","gath","The same as H1660; Gath, a Philistine city: - Gath."]},{"k":"H1662","v":["גַּת־הַחֵפֶר","Gath-ha-Chêpher","gath-hah-khay'-fer","From H1660 and H2658 with the article inserted; wine press of (the) well; Gath Chepher, a place in Palestine: - Gath-kephr, Gittah-kephr."]},{"k":"H1663","v":["גִּתִּי","Gittîy","ghit-tee'","Patrial from H1661; a Gittite or inhabitant of Gath: - Gittite."]},{"k":"H1664","v":["גִּתַּיִם","Gittayim","ghit-tah'-yim","Dual of H1660; double wine press; Gittajim, a place in Palestine: - Gittaim."]},{"k":"H1665","v":["גִּתִּית","Gittîyth","ghit-teeth'","Feminine of H1663; a Gittite harp: - Gittith."]},{"k":"H1666","v":["גֶּתֶר","Gether","gheh'-ther","Of uncertain derivation; Gether, a son of Aram, and the region settled by him: - Gether."]},{"k":"H1667","v":["גַּת־רִמּוֹן","Gath-Rimmôwn","gath-rim-mone'","From H1660 and H7416; wine press of (the) pomegranate; Gath Rimmon, a place in Palestine: - Gath-rimmon."]},{"k":"H1668","v":["דָּא","dâʼ","daw","(Chaldee); corresponding to H2088; this: - one . . . another, this."]},{"k":"H1669","v":["דָּאַב","dâʼab","daw-ab'","A primitive root; to pine: - mourn, sorrow (-ful)."]},{"k":"H1670","v":["דְּאָבָה","dᵉʼâbâh","deh-aw-baw'","From H1669; properly pining; by analogy fear: - sorrow."]},{"k":"H1671","v":["דְּאָבוֹן","dᵉʼâbôwn","deh-aw-bone'","From H1669; pining: - sorrow."]},{"k":"H1672","v":["דָּאַג","dâʼag","daw-ag'","A primitive root; be anxious: - be afraid (careful, sorry), sorrow, take thought."]},{"k":"H1673","v":["דֹּאֵג","Dôʼêg","do-ayg'","Active participle of H1672; anxious; Doeg, an Edomite: - Doeg."]},{"k":"H1674","v":["דְּאָגָה","dᵉʼâgâh","deh-aw-gaw'","From H1672; anxiety: - care (-fulness), fear, heaviness, sorrow."]},{"k":"H1675","v":["דָּאָה","dâʼâh","daw-aw'","A primitive root; to dart, that is, fly rapidly: - fly."]},{"k":"H1676","v":["דָּאָה","dâʼâh","daw-aw'","From H1675; the kite (from its rapid flight): - vulture. See H7201."]},{"k":"H1677","v":["דֹּב","dôb","dobe","From H1680; the bear (as slow): - bear."]},{"k":"H1678","v":["דֹּב","dôb","dobe","(Chaldee); corresponding to H1677: - bear."]},{"k":"H1679","v":["דֹּבֶא","dôbeʼ","do'-beh","From an unused root (compare H1680) (probably meaning to be sluggish, that is, restful); quiet: - strength."]},{"k":"H1680","v":["דָּבַב","dâbab","daw-bab'","A primitive root (compare H1679); to move slowly, that is, glide: - cause to speak."]},{"k":"H1681","v":["דִּבָּה","dibbâh","dib-baw'","From H1680 (in the sense of furtive motion); slander: - defaming, evil report, infamy, slander."]},{"k":"H1682","v":["דְּבוֹרָה","dᵉbôwrâh","deb-o-raw'","From H1696 (in the sense of orderly motion); the bee (from its systematic instincts): - bee."]},{"k":"H1683","v":["דְּבּוֹרָה","Dᵉbôwrâh","deb-o-raw'","The same as H1682; Deborah, the name of two Hebrewesses: - Deborah."]},{"k":"H1684","v":["דְּבַח","dᵉbach","deb-akh'","(Chaldee); corresponding to H2076; to sacrifice (an animal): - offer [sacrifice]."]},{"k":"H1685","v":["דְּבַח","dᵉbach","deb-akh'","(Chaldee); from H1684; a sacrifice: - sacrifice."]},{"k":"H1686","v":["דִּבְיוֹן","dibyôwn","dib-yone'","Both (in the plural only and) of uncertain derivation; probably some cheap vegetable, perhaps a bulbous root: - dove’s dung."]},{"k":"H1687","v":["דְּבִיר","dᵉbîyr","deb-eer'","From H1696 (apparently in the sense of oracle); the shrine or innermost part of the sanctuary: - oracle."]},{"k":"H1688","v":["דְּבִיר","Dᵉbîyr","deb-eer'","The second form used in Jos_13:26 (but see H3810); the same as H1687; Debir, the name of an Amoritish king and of two places in Palestine: - Debir."]},{"k":"H1689","v":["דִּבְלָה","Diblâh","dib-law'","Probably an orthographical error for H7247; Diblah, a place in Syria: - Diblath."]},{"k":"H1690","v":["דְּבֵלָה","dᵉbêlâh","deb-ay-law'","From an unused root (akin to H2082) probably meaning to press together; a cake of pressed figs: - cake (lump) of figs."]},{"k":"H1691","v":["דִּבְלַיִם","Diblayim","dib-lah'-yim","Dual from the masculine of H1690; two cakes; Diblajim, a symbolical name: - Diblaim."]},{"k":"H1692","v":["דָּבַק","dâbaq","daw-bak'","A primitive root; properly to impinge, that is, cling or adhere; figuratively to catch by pursuit: - abide, fast, cleave (fast together), follow close (hard, after), be joined (together), keep (fast), overtake, pursue hard, stick, take."]},{"k":"H1693","v":["דְּבַק","dᵉbaq","deb-ak'","(Chaldee); corresponding to H1692; to stick to: - cleave."]},{"k":"H1694","v":["דֶּבֶק","debeq","deh'-bek","From H1692; a joint; by implication solder: - joint, solder."]},{"k":"H1695","v":["דָּבֵק","dâbêq","daw-bake'","From H1692; adhering: - cleave, joining, stick closer."]},{"k":"H1696","v":["דָבַר","dâbar","daw-bar'","A primitive root; perhaps properly to arrange; but used figuratively (of words) to speak; rarely (in a destructive sense) to subdue: - answer, appoint, bid, command, commune, declare, destroy, give, name, promise, pronounce, rehearse, say, speak, be spokesman, subdue, talk, teach, tell, think, use [entreaties], utter, X well, X work."]},{"k":"H1697","v":["דָּבָר","dâbâr","daw-baw'","From H1696; a word; by implication a matter (as spoken of) of thing; adverbially a cause: - act, advice, affair, answer, X any such (thing), + because of, book, business, care, case, cause, certain rate, + chronicles, commandment, X commune (-ication), + concern [-ing], + confer, counsel, + dearth, decree, deed, X disease, due, duty, effect, + eloquent, errand, [evil favoured-] ness, + glory, + harm, hurt, + iniquity, + judgment, language, + lying, manner, matter, message, [no] thing, oracle, X ought, X parts, + pertaining, + please, portion, + power, promise, provision, purpose, question, rate, reason, report, request, X (as hast) said, sake, saying, sentence, + sign, + so, some [uncleanness], somewhat to say, + song, speech, X spoken, talk, task, + that, X there done, thing (concerning), thought, + thus, tidings, what [-soever], + wherewith, which, word, work."]},{"k":"H1698","v":["דֶּבֶר","deber","deh'-ber","From H1696 (in the sense of destroying); a pestilence: - murrain, pestilence, plague."]},{"k":"H1699","v":["דֹּבֶר","dôber","do'-ber","The first form is from H1696 (in its original sense); a pasture (from its arrangement of the flock); translated fold or manner. The second form is for H1697; translated word: - fold, manner."]},{"k":"H1700","v":["דִּבְרָה","dibrâh","dib-raw'","Feminine of H1697; a reason, suit or style: - cause, end, estate, order, regard."]},{"k":"H1701","v":["דִּבְרָה","dibrâh","dib-raw'","(Chaldee); corresponding to H1700: - intent, sake."]},{"k":"H1702","v":["דֹּבְרָה","dôbᵉrâh","do-ber-aw'","Feminine active participle of H1696 in the sense of driving (compare H1699); a raft: - float."]},{"k":"H1703","v":["דַּבָּרָה","dabbârâh","dab-baw-raw'","Intensive from H1696; a word: - word."]},{"k":"H1704","v":["דִּבְרִי","Dibrîy","dib-ree'","From H1697; wordy; Dibri, an Israelite: - Dibri."]},{"k":"H1705","v":["דֲּבְרַת","Dăbrath","daw-ber-ath'","From H1697 (perhaps in the sense of H1699); Daberath, a place in Palestine: - Dabareh, Daberath."]},{"k":"H1706","v":["דְּבַשׁ","dᵉbash","deb-ash'","From an unused root meaning to be gummy; honey (from its stickiness); by analogy syrup: - honey ([-comb])."]},{"k":"H1707","v":["דַּבֶּשֶׁת","dabbesheth","dab-beh'-sheth","Intensive from the same as H1706; a sticky mass, that is, the hump of a camel: - hunch [of a camel]."]},{"k":"H1708","v":["דַּבֶּשֶׁת","Dabbesheth","dab-beh'-sheth","The same as H1707; Dabbesheth, a place in Palestine: - Dabbesheth."]},{"k":"H1709","v":["דָּג","dâg","dawg","From H1711; a fish (as prolific); or perhaps rather from H1672 (as timid); but still better from H1672 (in the sense of squirming, that is, moving by the vibratory action of the tail); a fish (often used collectively): - fish."]},{"k":"H1710","v":["דָּגָה","dâgâh","daw-gaw'","Feminine of H1709, and meaning the same: - fish."]},{"k":"H1711","v":["דָּגָה","dâgâh","daw-gaw'","A primitive root; to move rapidly; used only as a denominative from H1709; to spawn, that is, become numerous: - grow."]},{"k":"H1712","v":["דָּגוֹן","Dâgôwn","daw-gohn'","From H1709; the fish god; Dagon, a Philistine deity: - Dagon."]},{"k":"H1713","v":["דָּגַל","dâgal","daw-gal'","A primitive root; to flaunt, that is, raise a flag; figuratively to be conspicuous: - (set up, with) banners, chiefest."]},{"k":"H1714","v":["דֶּגֶל","degel","deh'-gel","From H1713; a flag: - banner, standard."]},{"k":"H1715","v":["דָּגָן","dâgân","daw-gawn'","From H1711; properly increase, that is, grain: - corn ([floor]), wheat."]},{"k":"H1716","v":["דָּגַר","dâgar","daw-gar'","A primitive root; to brood over eggs or young: - gather, sit."]},{"k":"H1717","v":["דַּד","dad","dad","Apparently from the same as H1730; the breast (as the seat of love, or from its shape): - breast, teat."]},{"k":"H1718","v":["דָּדָה","dâdâh","daw-daw'","A doubtful root; to walk gently: - go (softly, with)."]},{"k":"H1719","v":["דְּדָן","Dᵉdân","ded-awn'","Of uncertain derivation; Dedan, the name of two Cushites and of their territory. The second form used in Eze_25:13 : - Dedan."]},{"k":"H1720","v":["דְּדָנִים","Dᵉdânîym","ded-aw-neem'","Plural of H1719 (as patrial); Dedanites, the descendants or inhabitants of Dedan: - Dedanim."]},{"k":"H1721","v":["דֹּדָנִים","Dôdânîym","do-daw-neem'","The second form is used by orthographical error in 1Ch_1:7. A plural of uncertain derivation; Dodanites, or descendants of a son of Javan: - Dodanim."]},{"k":"H1722","v":["דְּהַב","dᵉhab","deh-hab'","(Chaldee); corresponding to H2091; gold: - gold (-en)."]},{"k":"H1723","v":["דַּהֲוָא","Dahăvâʼ","dah-hav-aw'","(Chaldee); of uncertain derivation; Dahava, a people colonized in Samaria: - Dehavites."]},{"k":"H1724","v":["דָּהַם","dâham","daw-ham'","A primitive root (compare H1740); to be dumb, that is, (figuratively) dumbfounded: - be astonished."]},{"k":"H1725","v":["דָּהַר","dâhar","daw-har'","A primitive root; to curvet or move irregularly: - pranse."]},{"k":"H1726","v":["דַּהֲהַר","dahăhar","dah-hah-har'","By reduplication from H1725; a gallop: - pransing."]},{"k":"H1727","v":["דּוּב","dûwb","doob","A primitive root; to mope, that is, (figuratively) pine: - sorrow."]},{"k":"H1728","v":["דַּוָּג","davvâg","dav-vawg'","An orthographical variation of H1709 as a denominative (H1771); a fisherman: - fisher."]},{"k":"H1729","v":["דּוּגָה","dûwgâh","doo-gaw'","Feminine from the same as H1728; properly fishery, that is, a hook for fishing: - fish [hook]."]},{"k":"H1730","v":["דּוֹד","dôwd","dode","From an unused root meaning properly to boil, that is, (figuratively) to love; by implication a love token, lover, friend; specifically an uncle: - (well-) beloved, father’s brother, love, uncle."]},{"k":"H1731","v":["דּוּד","dûwd","dood","From the same as H1730; a pot (for boiling); also (by resemblance of shape) a basket: - basket, caldron, kettle, (seething) pot."]},{"k":"H1732","v":["דָּוִד","Dâvid","daw-veed'","From the same as H1730; loving; David, the youngest son of Jesse: - David."]},{"k":"H1733","v":["דּוֹדָה","dôwdâh","do-daw'","Feminine of H1730; an aunt: - aunt, father’s sister, uncle’s wife."]},{"k":"H1734","v":["דּוֹדוֹ","Dôwdôw","do-do'","From H1730; loving; Dodo, the name of three Israelites: - Dodo."]},{"k":"H1735","v":["דּוֹדָוָהוּ","Dôwdâvâhûw","do-daw-vaw'-hoo","From H1730 and H3050; love of Jah; Dodavah, an Israelite: - Dodavah."]},{"k":"H1736","v":["דּוּדַי","dûwday","doo-dah'-ee","From H1731; a boiler or basket; also the mandrake (as aphrodisiac): - basket, mandrake."]},{"k":"H1737","v":["דּוֹדַי","Dôwday","do-dah'ee","Formed like H1736; amatory; Dodai, an Israelite: - Dodai."]},{"k":"H1738","v":["דָּוָה","dâvâh","daw-vaw'","A primitive root; to be sick (as if in menstruation): - infirmity."]},{"k":"H1739","v":["דָּוֶה","dâveh","daw-veh'","From H1738; sick (especially in menstruation): - faint, menstruous cloth, she that is sick, having sickness."]},{"k":"H1740","v":["דּוּחַ","dûwach","doo'-akh","A primitive root; to thrust away; figuratively to cleanse: - cast out, purge, wash."]},{"k":"H1741","v":["דְּוַי","dᵉvay","dev-ah'ee","From H1739; sickness; figuratively loathing: - languishing, sorrowful."]},{"k":"H1742","v":["דַּוָּי","davvây","dav-voy'","From H1739; sick; figuratively troubled: - faint."]},{"k":"H1743","v":["דּוּךְ","dûwk","dook","A primitive root; to bruise in a mortar: - beat."]},{"k":"H1744","v":["דּוּכִיפַת","dûwkîyphath","doo-kee-fath'","Of uncertain derivation; the hoopoe or else the grouse: - lapwing."]},{"k":"H1745","v":["דּוּמָה","dûwmâh","doo-maw'","From an unused root meaning to be dumb (compare H1820); silence; figuratively death: - silence."]},{"k":"H1746","v":["דּוּמָה","Dûwmâh","doo-maw'","The same as H1745; Dumah, a tribe and region of Arabia: - Dumah."]},{"k":"H1747","v":["דּוּמִיָּה","dûwmîyâh","doo-me-yaw'","From H1820; stillness; adverbially silently; abstractly quiet, trust: - silence, silent, waiteth."]},{"k":"H1748","v":["דּוּמָם","dûwmâm","doo-mawm'","From H1826; still; adverbially silently: - dumb, silent, quietly wait."]},{"k":"H1749","v":["דּוֹנַג","dôwnag","do-nag'","Of uncertain derivation; wax: - wax."]},{"k":"H1750","v":["דּוּץ","dûwts","doots","A primitive root; to leap: - be turned."]},{"k":"H1751","v":["דּוּק","dûwq","dook","(Chaldee); corresponding to H1854; to crumble: - be broken to pieces."]},{"k":"H1752","v":["דּוּר","dûwr","dure","A primitive root; properly to gyrate (or move in a circle), that is, to remain: - dwell."]},{"k":"H1753","v":["דּוּר","dûwr","dure","(Chaldee); corresponding to H1752; to reside: - dwell."]},{"k":"H1754","v":["דּוּר","dûwr","dure","From H1752; a circle, ball or pile: - ball, turn, round about."]},{"k":"H1755","v":["דּוֹר","dôwr","dore","From H1752; properly a revolution of time, that is, an age or generation; also a dwelling: - age, X evermore, generation, [n-]ever, posterity."]},{"k":"H1756","v":["דּוֹר","Dôwr","dore","From H1755; dwelling; Dor, a place in Palestine: - Dor."]},{"k":"H1757","v":["דּוּרָא","Dûwrâʼ","doo-raw'","(Chaldee); probably from H1753; circle or dwelling; Dura, a place in Babylon: - Dura."]},{"k":"H1758","v":["דּוּשׁ","dûwsh","doosh","A primitive root; to trample or thresh: - break, tear, thresh, tread out (down), at grass [Jer. H50 : H11, by mistake for H1877]."]},{"k":"H1759","v":["דּוּשׁ","dûwsh","doosh","(Chaldee); corresponding to H1758; to trample: - tread down."]},{"k":"H1760","v":["דָּחָה","dâchâh","daw-khaw'","A primitive root; to push down: - chase, drive away (on), overthrow, outcast, X sore, thrust, totter."]},{"k":"H1761","v":["דַּחֲוָה","dachăvâh","dakh-av-aw'","(Chaldee); from the equivalent of H1760; probably a musical instrument (as being struck): - instrument of music."]},{"k":"H1762","v":["דְּחִי","dᵉchîy","deh-khee'","From H1760; a push, that is, (by implication) a fall: - falling."]},{"k":"H1763","v":["דְּחַל","dᵉchal","deh-khal'","(Chaldee); corresponding to H2119; to slink, that is, (by implication) to fear, or (causatively) be formidable: - make afraid, dreadful, fear, terrible."]},{"k":"H1764","v":["דֹּחַן","dôchan","do'-khan","Of uncertain derivation; millet: - millet."]},{"k":"H1765","v":["דָּחַף","dâchaph","daw-khaf'","A primitive root; to urge, that is, hasten: - (be) haste (-ned), pressed on."]},{"k":"H1766","v":["דָּחַק","dâchaq","daw-khak'","A primitive root; to press, that is, oppress: - thrust, vex."]},{"k":"H1767","v":["דַּי","day","dahee","Of uncertain derivation; enough (as noun or adverb), used chiefly with preposition in phrases: - able, according to, after (ability), among, as (oft as), (more than) enough, from, in, since, (much as is) sufficient (-ly), too much, very, when."]},{"k":"H1768","v":["דִּי","dîy","dee","(Chaldee); apparently for H1668; that, used as relative, conjugational, and especially (with preposition) in adverbial phrases; also as a preposition of: -  X as, but, for (-asmuch +), + now, of, seeing, than, that, therefore, until, + what (-soever), when, which, whom, whose."]},{"k":"H1769","v":["דִּיבוֹן","Dîybôwn","dee-bome'","From H1727; pining; Dibon, the name of three places in Palestine. Also, with H1410 added, Dibon-gad: - Dibon, the name of three places in Palestine - Dibon. [Also, with H1410 added, Dibon-gad.]"]},{"k":"H1770","v":["דִּיג","dîyg","deeg","Denominative from H1709; to fish: - fish."]},{"k":"H1771","v":["דַּיָּג","dayâg","dah-yawg'","From H1770; a fisherman: - fisher."]},{"k":"H1772","v":["דַּיָּה","dayâh","dah-yaw'","Intensive from H1675; a falcon (from its rapid flight): - vulture."]},{"k":"H1773","v":["דְּיוֹ","dᵉyôw","deh-yo'","Of uncertain derivation; ink: - ink."]},{"k":"H1774","v":["דִּי זָהָב","Dîy zâhâb","dee zaw-hawb'","As if from H1768 and H2091; of gold; Dizahab, a place in the Desert: - Dizahab."]},{"k":"H1775","v":["דִּימוֹן","Dîymôwn","dee-mone'","Perhaps for H1769; Dimon, a place in Palestine: - Dimon."]},{"k":"H1776","v":["דִּימוֹנָה","Dîymôwnâh","dee-mo-naw'","Feminine of H1775; Dimonah, a place in Palestine: - Dimonah."]},{"k":"H1777","v":["דִּין","dîyn","deen","A primitive root (compare H113); to rule; by implication to judge (as umpire); also to strive (as at law): - contend, execute (judgment), judge, minister judgment, plead (the cause), at strife, strive."]},{"k":"H1778","v":["דִּין","dîyn","deen","(Chaldee); corresponding to H1777; to judge: - judge."]},{"k":"H1779","v":["דִּין","dîyn","deen","From H1777; judgment (the suit, justice, sentence or tribunal); by implication also strife: - cause, judgment, plea, strife."]},{"k":"H1780","v":["דִּין","dîyn","deen","(Chaldee); corresponding to H1779: - judgment."]},{"k":"H1781","v":["דַּיָּן","dayân","dah-yawn'","From H1777; a judge or advocate: - judge."]},{"k":"H1782","v":["דַּיָּן","dayân","dah-yawn'","(Chaldee); corresponding to H1781: - judge."]},{"k":"H1783","v":["דִּינָה","Dîynâh","dee-naw'","Feminine of H1779; justice; Dinah, the daughter of Jacob: - Dinah."]},{"k":"H1784","v":["דִּינַי","Dîynay","dee-nah'-ee","(Chaldee); patrial from an uncertain primitive; a Dinaite or inhabitant of some unknown Assyrian province: - Dinaite."]},{"k":"H1785","v":["דָּיֵק","dâyêq","daw-yake'","From a root corresponding to H1751; a battering tower: - fort."]},{"k":"H1786","v":["דַּיִשׁ","dayish","dah-yish'","From H1758; threshing time: - threshing."]},{"k":"H1787","v":["דִּישׁוֹן","Dîyshôwn","dee-shone'","The same as H1788; Dishon, the name of two Edomites: - Dishon."]},{"k":"H1788","v":["דִּישֹׁן","dîyshôn","dee-shone'","From H1758; the leaper, that is, an antelope: - pygarg."]},{"k":"H1789","v":["דִּישָׁן","Dîyshân","dee-shawn'","Another form of H1787; Dishan, an Edomite: - Dishan, Dishon."]},{"k":"H1790","v":["דַּךְ","dak","dak","From an unused root (compare H1794); crushed, that is, (figuratively) injured: - afflicted, oppressed."]},{"k":"H1791","v":["דֵּךְ","dêk","dake","(Chaldee); prolonged from H1668; this: - the same, this."]},{"k":"H1792","v":["דָּכָא","dâkâʼ","daw-kaw'","A primitive root (compare H1794) to crumble; transitively to bruise (literally or figuratively): - beat to pieces, break (in pieces), bruise, contrite, crush, destroy, humble, oppress, smite."]},{"k":"H1793","v":["דַּכָּא","dakkâʼ","dak-kaw'","From H1792; crushed (literally powder, or figuratively contrite): - contrite, destruction."]},{"k":"H1794","v":["דָּכָה","dâkâh","daw-kaw'","A primitive root (compare H1790, H1792); to collapse (physically or mentally): - break (sore), contrite, crouch."]},{"k":"H1795","v":["דַּכָּה","dakkâh","dak-kaw'","From H1794 like H1793; mutilated: -  + wounded."]},{"k":"H1796","v":["דֳּכִי","dŏkîy","dok-ee'","From H1794; a dashing of surf: - wave."]},{"k":"H1797","v":["דִּכֵּן","dikkên","dik-kane'","(Chaldee); prolonged from H1791; this: - same, that, this."]},{"k":"H1798","v":["דְּכַר","dᵉkar","dek-ar'","(Chaldee); corresponding to H2145; properly a male, i. e of sheep: - ram."]},{"k":"H1799","v":["דִּכְרוֹן","dikrôwn","dik-rone'","(Chaldee); corresponding to H2146; a register: - record."]},{"k":"H1800","v":["דַּל","dal","dal","From H1809; properly dangling, that is, (by implication) weak or thin: - lean, needy, poor (man), weaker."]},{"k":"H1801","v":["דָּלַג","dâlag","daw-lag'","A primitive root; to spring: - leap."]},{"k":"H1802","v":["דָּלָה","dâlâh","daw-law'","A primitive root (compare H1809); properly to dangle, that is, to let down a bucket (for drawing out water); figuratively to deliver: - draw (out), X enough, lift up."]},{"k":"H1803","v":["דַּלָּה","dallâh","dal-law'","From H1802; properly something dangling, that is, a loose thread or hair; figuratively indigent: - hair, pining sickness, poor (-est sort)."]},{"k":"H1804","v":["דָּלַח","dâlach","daw-lakh'","A primitive root; to roil water: - trouble."]},{"k":"H1805","v":["דְּלִי","dᵉlîy","del-ee'","From H1802; a pail or jar (for drawing water): - bucket."]},{"k":"H1806","v":["דְּלָיָה","Dᵉlâyâh","del-aw-yaw'","From H1802 adn H3050; Jah has delivered; Delajah, the name of five Israelites: - Dalaiah, Delaiah."]},{"k":"H1807","v":["דְּלִילָה","Dᵉlîylâh","del-ee-law'","From H1809; languishing: - Delilah, a Philistine woman: - Delilah."]},{"k":"H1808","v":["דָּלִיָּה","dâlîyâh","daw-lee-yaw'","From H1802; something dangling, that is, a bough: - branch."]},{"k":"H1809","v":["דָּלַל","dâlal","daw-lal'","A primitive root (compare H1802); to slacken or be feeble; figuratively to be oppressed: - bring low, dry up, be emptied, be not equal, fail, be impoverished, be made thin."]},{"k":"H1810","v":["דִּלְעָן","Dilʻân","dil-awn'","Of uncertain derivation; Dilan, a place in Palestine: - Dilean."]},{"k":"H1811","v":["דָּלַף","dâlaph","daw-laf'","A primitive root; to drip; by implication to weep: - drop through, melt, pour out."]},{"k":"H1812","v":["דֶּלֶף","deleph","deh'-lef","From H1811; a dripping: - dropping."]},{"k":"H1813","v":["דַּלְפוֹן","Dalphôwn","dal-fone'","From H1811; dripping; Dalphon, a son of Haman: - Dalphon."]},{"k":"H1814","v":["דָּלַק","dâlaq","daw-lak'","A primitive root; to flame (literally or figuratively): - burning, chase, inflame, kindle, persecute (-or), pursue hotly."]},{"k":"H1815","v":["דְּלַק","dᵉlaq","del-ak'","(Chaldee); corresponding to H1814: - burn."]},{"k":"H1816","v":["דַּלֶּקֶת","dalleqeth","dal-lek'-keth","From H1814; a burning fever: - inflammation."]},{"k":"H1817","v":["דֶּלֶת","deleth","deh'-leth","From H1802; something swinging, that is, the valve of a door: - door (two-leaved), gate, leaf, lid. [In Psa_141:3, dal, irreg.]"]},{"k":"H1818","v":["דָּם","dâm","dawm","From H1826 (compare H119); blood (as that which when shed causes death) of man or an animal; by analogy the juice of the grape; figuratively (especially in the plural) bloodshed (that is, drops of blood): - blood (-y, -guiltiness, [-thirsty]), + innocent."]},{"k":"H1819","v":["דָּמָה","dâmâh","daw-maw'","A primitive root; to compare; by implication to resemble, liken, consider: - compare, devise, (be) like (-n), mean, think, use similitudes."]},{"k":"H1820","v":["דָּמָה","dâmâh","daw-mam'","A primitive root; to be dumb or silent; hence to fail or perish; transitively to destroy: - cease, be cut down (off), destroy, be brought to silence, be undone, X utterly."]},{"k":"H1821","v":["דְּמָה","dᵉmâh","dem-aw'","(Chaldee); corresponding to H1819; to resemble: - be like."]},{"k":"H1822","v":["דֻּמָּה","dummâh","doom-maw'","From H1820; desolation; concretely desolate: - destroy."]},{"k":"H1823","v":["דְּמוּת","dᵉmûwth","dem-ooth'","From H1819; resemblance; concretely model, shape; adverbially like: - fashion, like (-ness, as), manner, similitude."]},{"k":"H1824","v":["דְּמִי","dᵉmîy","dem-ee'","From H1820; quiet: - cutting off, rest, silence."]},{"k":"H1825","v":["דִּמְיוֹן","dimyôwn","dim-yone'","From H1819; resemblance: -  X like."]},{"k":"H1826","v":["דָּמַם","dâmam","daw-man'","A primitive root (compare H1724, H1820); to be dumb; by implication to be astonished, to stop; also to perish: - cease, be cut down (off), forbear, hold peace, quiet self, rest, be silent, keep (put to) silence, be (stand), still, tarry, wait."]},{"k":"H1827","v":["דְּמָמָה","dᵉmâmâh","dem-aw-maw'","Feminine from H1826; quiet: - calm, silence, still."]},{"k":"H1828","v":["דֹּמֶן","dômen","do'-men","Of uncertain derivation; manure: - dung."]},{"k":"H1829","v":["דִּמְנָה","Dimnâh","dim-naw'","Feminine from the same as H1828; a dung heap; Dimnah, a place in Palestine: - Dimnah."]},{"k":"H1830","v":["דָּמַע","dâmaʻ","daw-mah'","A primitive root; to weep: -  X sore, weep."]},{"k":"H1831","v":["דֶּמַע","demaʻ","dah'-mah","From H1830; a tear; figuratively juice: - liquor."]},{"k":"H1832","v":["דִּמְעָה","dimʻâh","dim-aw'","Feminine of H1831; weeping: - tears."]},{"k":"H1833","v":["דְּמֶשֶׁק","dᵉmesheq","dem-eh'-shek","By orthographical variation from H1834; damask (as a fabric of Damascus): - in Damascus."]},{"k":"H1834","v":["דַּמֶּשֶׂק","Dammeseq","dam-meh'-sek","Of foreign origin; Damascus, a city of Syria: - Damascus."]},{"k":"H1835","v":["דָּן","Dân","dawn","From H1777; judge; Dan, one of the sons of Jacob; also the tribe descended from him, and its territory; likewise a place in Palestine colonized by them: - Dan."]},{"k":"H1836","v":["דֵּן","dên","dane","(Chaldee); an orthographical variation of H1791; this: - [afore-] time, + after this manner, here [-after], one . . . another, such, there [-fore], these, this (matter), + thus, where [-fore], which."]},{"k":"H1837","v":["דַּנָּה","Dannâh","dan-naw'","Of uncertain derivation; Dannah, a place in Palestine: - Dannah."]},{"k":"H1838","v":["דִּנְהָבָה","Dinhâbâh","din-haw-baw'","Of uncertain derivation; Dinhabah, an Edomitish town: - Dinhaban."]},{"k":"H1839","v":["דָּנִי","Dânîy","daw-nee'","Patronymic from H1835; a Danite (often collectively) or descendant (or inhabitant) of Dan: - Danites, of Dan."]},{"k":"H1840","v":["דָנִיֵּאל","Dânîyêʼl","daw-nee-yale'","From H1835 and H410; judge of God; Daniel or Danijel, the name of two Israelites: - Daniel."]},{"k":"H1841","v":["דָּנִיֵּאל","Dânîyêʼl","daw-nee-yale'","(Chaldee); corresponding to H1840; Danijel, the Hebrew prophet: - Daniel."]},{"k":"H1842","v":["דָּן יַעַן","Dân Yaʻan","dawn yah'-an","From H1835 and (apparently) H3282; judge of purpose; Dan Jaan, a place in Palestine: - Dan-jaan."]},{"k":"H1843","v":["דֵּעַ","dêaʻ","day'-ah","From H3045; knowledge: - knowledge, opinion."]},{"k":"H1844","v":["דֵּעָה","dêʻâh","day-aw'","Feminine of H1843; knowledge: - knowledge."]},{"k":"H1845","v":["דְּעוּאֵל","Dᵉʻûwʼêl","deh-oo-ale'","From H3045 and H410; known of God; Deuel, an Israelite: - Deuel."]},{"k":"H1846","v":["דָּעַךְ","dâʻak","daw-ak'","A primitive root; to be extinguished; figuratively to expire or be dried up: - be extinct, consumed, put out, quenched."]},{"k":"H1847","v":["דַּעַת","daʻath","dah'-ath","From H3045; knowledge: - cunning, [ig-] norantly, know(-ledge), [un-] awares (wittingly)."]},{"k":"H1848","v":["דׇּפִי","dophîy","dof'-ee","From an unused root (meaning to push over); a stumbling block: - slanderest."]},{"k":"H1849","v":["דָּפַק","dâphaq","daw-fak'","A primitive root; to knock; by analogy to press severely: - beat, knock, overdrive."]},{"k":"H1850","v":["דׇּפְקָה","Dophqâh","dof-kaw'","From H1849; a knock; Dophkah, a place in the Desert: - Dophkah."]},{"k":"H1851","v":["דַּק","daq","dak","From H1854; crushed, that is, (by implication) small or thin: - dwarf, lean [-fleshed], very little thing, small, thin."]},{"k":"H1852","v":["דֹּק","dôq","doke","From H1854; something crumbling, that is, fine (as a thin cloth): - curtain."]},{"k":"H1853","v":["דִּקְלָה","Diqlâh","dik-law'","Of foreign origin; Diklah, a region of Arabia: - Diklah."]},{"k":"H1854","v":["דָּקַק","dâqaq","daw-kak'","A primitive root (compare H1915); to crush (or intransitively) crumble: - beat in pieces (small), bruise, make dust, (into) X powder, (be, very) small, stamp (small)."]},{"k":"H1855","v":["דְּקַק","dᵉqaq","dek-ak'","(Chaldee); corresponding to H1854; to crumble or (transitively) crush: - break to pieces."]},{"k":"H1856","v":["דָּקַר","dâqar","daw-kar'","A primitive root; to stab; by analogy to starve; figuratively to revile: - pierce, strike (thrust) through, wound."]},{"k":"H1857","v":["דֶּקֶר","Deqer","deh'-ker","From H1856; a stab; Deker, an Israelite: - Dekar."]},{"k":"H1858","v":["דַּר","dar","dar","Apparently from the same as H1865; properly a pearl (from its sheen as rapidly turned); by analogy pearl stone, that is, mother of pearl or alabaster: -    X white."]},{"k":"H1859","v":["דָּר","dâr","dawr","(Chaldee); corresponding to H1755; an age: - generation."]},{"k":"H1860","v":["דְּרָאוֹן","dᵉrâʼôwn","der-aw-one'","From an unused root (meaning to repulse); an object of aversion: - abhorring, contempt."]},{"k":"H1861","v":["דׇּרְבוֹן","dorbôwn","dor-bone'","Of uncertain derivation; a goad: - goad."]},{"k":"H1862","v":["דַּרְדַּע","Dardaʻ","dar-dah'","Apparently from H1858 and H1843; pearl of knowledge; Darda, an Israelite: - Darda."]},{"k":"H1863","v":["דַּרְדַּר","dardar","dar-dar'","Of uncertain derivation; a thorn: - thistle."]},{"k":"H1864","v":["דָּרוֹם","dârôwm","daw-rome'","Of uncertain derivation; the south; poet, the south wind: - south."]},{"k":"H1865","v":["דְּרוֹר","dᵉrôwr","der-ore'","From an unused root (meaning to move rapidly); freedom; hence spontaneity of outflow, and so clear: - liberty, pure."]},{"k":"H1866","v":["דְּרוֹר","dᵉrôwr","der-ore'","The same as H1865, applied to a bird; the swift, a kind of swallow: - swallow."]},{"k":"H1867","v":["דָּֽרְיָוֵשׁ","Dârᵉyâvêsh","daw-reh-yaw-vaysh'","Of Persian origin; Darejavesh, a title (rather than name) of several Persian kings: - Darius."]},{"k":"H1868","v":["דָּֽרְיָוֵשׁ","Dârᵉyâvêsh","daw-reh-yaw-vaysh'","(Chaldee); corresponding to H1867: - Darius."]},{"k":"H1869","v":["דָּרַךְ","dârak","daw-rak'","A primitive root; to tread; by implication to walk; also to string a bow (by treading on it in bending): - archer, bend, come, draw, go (over), guide, lead (forth), thresh, tread (down), walk."]},{"k":"H1870","v":["דֶּרֶךְ","derek","deh'-rek","From H1869; a road (as trodden); figuratively a course of life or mode of action, often adverbially: - along, away, because of, + by, conversation, custom, [east-] ward, journey, manner, passenger, through, toward, [high-] [path-] way [-side], whither [-soever]."]},{"k":"H1871","v":["דַּרְכְּמוֹן","darkᵉmôwn","dar-kem-one'","Of Persian origin; a “drachma” or coin: - dram."]},{"k":"H1872","v":["דְּרַע","dᵉraʻ","der-aw'","(Chaldee); corresponding to H2220; an arm: - arm."]},{"k":"H1873","v":["דָּרַע","Dâraʻ","daw-rah'","Probably contracted from H1862; Dara, an Israelite: - Dara."]},{"k":"H1874","v":["דַּרְקוֹן","Darqôwn","dar-kone'","Of uncertain derivation; Darkon, one of Solomon’s servants: - Darkon."]},{"k":"H1875","v":["דָּרַשׁ","dârash","daw-rash'","A primitive root; properly to tread or frequent; usually to follow (for pursuit or search); by implication to seek or ask; specifically to worship: - ask, X at all, care for, X diligently, inquire, make inquisition, [necro-] mancer, question, require, search, seek [for, out], X surely."]},{"k":"H1876","v":["דָּשָׁא","dâshâʼ","daw-shaw'","A primitive root; to sprout: - bring forth, spring."]},{"k":"H1877","v":["דֶּשֶׁא","desheʼ","deh'-sheh","From H1876; a sprout; by analogy grass: - (tender) grass, green, (tender) herb."]},{"k":"H1878","v":["דָּשֵׁן","dâshên","daw-shane'","A primitive root; to be fat; transitively to fatten (or regard as fat); specifically to anoint; figuratively to satisfy; denominatively (from H1880) to remove (fat) ashes (of sacrifices): - accept, anoint, take away the (receive) ashes (from), make (wax) fat."]},{"k":"H1879","v":["דָּשֵׁן","dâshên","daw-shane'","From H1878; fat; figuratively rich, fertile: - fat."]},{"k":"H1880","v":["דֶּשֶׁן","deshen","deh'-shen","From H1878; the fat; abstractly fatness, that is, (figuratively) abundance; specifically the (fatty) ashes of sacrifices: - ashes, fatness."]},{"k":"H1881","v":["דָּת","dâth","dawth","Of uncertain (perhaps foreign) derivation; a royal edict or statute: - commandment, commission, decree, law, manner."]},{"k":"H1882","v":["דָּת","dâth","dawth","(Chaldee); corresponding to H1881; decree, law."]},{"k":"H1883","v":["דֶּתֶא","detheʼ","deh'-thay","(Chaldee); corresponding to H1877: - tender grass."]},{"k":"H1884","v":["דְּתָבָר","dᵉthâbâr","deth-aw-bawr'","(Chaldee); of Persian origin,; meaning one skilled in law; a judge: - counsellor."]},{"k":"H1885","v":["דָּתָן","Dâthân","daw-thawn'","Of uncertain derivation; Dathan, an Israelite: - Dathan."]},{"k":"H1886","v":["דֹּתָן","Dôthân","do'-thawn","Of uncertain derivation; Dothan, a place in Palestine: - Dothan."]},{"k":"H1887","v":["הֵא","hêʼ","hay","A primitive particle; lo!: - behold, lo."]},{"k":"H1888","v":["הֵא","hêʼ","hay","(Chaldee); corresponding to H1887: - even, lo."]},{"k":"H1889","v":["הֶאָח","heʼâch","heh-awkh'","From H1887 and H253; aha!: - ah, aha, ha."]},{"k":"H1890","v":["הַבְהָב","habhâb","hab-hawb'","By reduplication from H3051; gift (in sacrifice), that is, holocaust: - offering."]},{"k":"H1891","v":["הָבַל","hâbal","haw-bal'","A primitive root; to be vain in act, word, or expectation; specifically to lead astray: - be (become, make) vain."]},{"k":"H1892","v":["הֶבֶל","hebel","heh'bel","From H1891; emptiness or vanity; figuratively something transitory and unsatisfactory; often used as an adverb: -    X altogether, vain, vanity."]},{"k":"H1893","v":["הֶבֶל","Hebel","heh'-bel","The same as H1892; Hebel, the son of Adam: - Abel."]},{"k":"H1894","v":["הֹבֶן","hôben","ho'-ben","Only in plural, from an unused root meaning to be hard; ebony: - ebony."]},{"k":"H1895","v":["הָבַר","hâbar","haw-bar'","A primitive root of uncertain (perhaps foreign) derivation; to be a horoscopist: -  + (astro-) loger."]},{"k":"H1896","v":["הֵגֵא","Hêgêʼ","hay-gay'","Probably of Persian origin; Hege or Hegai, a eunuch of Xerxes: - Hegai, Hege."]},{"k":"H1897","v":["הָגָה","hâgâh","daw-gaw'","A primitive root (compare H1901); to murmur (in pleasure or anger); by implication to ponder: - imagine, meditate, mourn, mutter, roar, X sore, speak, study, talk, utter."]},{"k":"H1898","v":["הָגָה","hâgâh","haw-gaw'","A primitive root; to remove: - stay, take away."]},{"k":"H1899","v":["הֶגֶה","hegeh","heh'-geh","From H1897; a muttering (in sighing, thought, or as thunder): - mourning, sound, tale."]},{"k":"H1900","v":["הָגוּת","hâgûwth","haw-gooth'","From H1897; musing: - meditation."]},{"k":"H1901","v":["הָגִיג","hâgîyg","haw-gheeg'","From an unused root akin to H1897; properly a murmur, that is, complaint: - meditation, musing."]},{"k":"H1902","v":["הִגָּיוֹן","higgâyôwn","hig-gaw-yone'","Intensive from H1897; a murmuring sound, that is, a musical notation (probably similar to the moder affettuoso to indicate solemnity of movement); by implication a machination: - device, Higgaion, meditation, solemn sound."]},{"k":"H1903","v":["הָגִין","hâgîyn","haw-gheen'","Of uncertain derivation; perhaps suitable or turning: - directly."]},{"k":"H1904","v":["הָגָר","Hâgâr","haw-gawr'","Of uncertain (perhaps foreign) derivation; Hagar, the mother of Ishmael: - Hagar."]},{"k":"H1905","v":["הַגְרִי","Hagrîy","hag-ree'","Perhaps patronymic from H1904; a Hagrite or member of a certain Arabian clan: - Hagarene, Hagarite, Haggeri."]},{"k":"H1906","v":["הֵד","hêd","hade","For H1959; a shout: - sounding again."]},{"k":"H1907","v":["הַדָּבָר","haddâbâr","had-daw-bawr'","(Chaldee); probably of foreign origin; a vizier: - counsellor."]},{"k":"H1908","v":["הֲדַד","Hădad","had-ad'","Probably of foreign origin (compare H111); Hadad, the name of an idol, and of several kings of Edom: - Hadad."]},{"k":"H1909","v":["הֲדַדְעֶזֶר","Hădadʻezer","had-ad-eh'-zer","From H1908 and H5828; Hadad (is his) help; Hadadezer, a Syrian king: - Hadadezer. Compare H1928."]},{"k":"H1910","v":["הֲדַדְרִמּוֹן","Hădadrimmôwn","had-ad-rim-mone'","From H1908 and H7417; Hadad Rimmon, a place in Palestine: - Hadad-rimmon."]},{"k":"H1911","v":["הָדָה","hâdâh","haw-daw'","A primitive root (compare H3034); to stretch forth the hand: - put."]},{"k":"H1912","v":["הֹדוּ","Hôdûw","ho'-doo","Of foreign origin; Hodu (that is, Hindustan): - India."]},{"k":"H1913","v":["הֲדוֹרָם","Hădôwrâm","had-o-rawm'","Probably of foreign derivation; Hadoram, a son of Joktan, and the tribe descended from him: - Hadoram."]},{"k":"H1914","v":["הִדַּי","Hidday","hid-dah'ee","Of uncertain derivation; Hiddai, an Israelite: - Hiddai."]},{"k":"H1915","v":["הָדַךְ","hâdak","haw-dak'","A primitive root (compare H1854); to crush with the foot: - tread down."]},{"k":"H1916","v":["הֲדֹם","hădôm","had-ome'","From an unused root meaning to stamp upon; a foot stool: - [foot-] stool."]},{"k":"H1917","v":["הַדָּם","haddâm","had-dawm'","(Chaldee); from a root corresponding to that of H1916; something stamped to pieces, that is, a bit: - piece."]},{"k":"H1918","v":["הֲדַס","hădaç","had-as'","Of uncertain derivation; the myrtle: - myrtle (tree)."]},{"k":"H1919","v":["הֲדַסָּה","Hădaççâh","had-as-saw'","Feminine of H1918; Hadassah (or Esther): - Hadassah."]},{"k":"H1920","v":["הָדַף","Hâdaph","haw-daf'","A primitive root; to push away or down: - cast away (out), drive, expel, thrust (away)."]},{"k":"H1921","v":["הָדַר","hâdar","haw-dar'","A primitive root; to swell up (literally or figuratively, actively or passively); by implication to favor or honour, be high or proud: - countenance, crooked place, glorious, honour, put forth."]},{"k":"H1922","v":["הֲדַר","hădar","had-ar'","(Chaldee); corresponding to H1921; to magnify (figuratively): - glorify, honour."]},{"k":"H1923","v":["הֲדַר","hădar","had-ar'","(Chaldee); from H1922; magnificence: - honour, majesty."]},{"k":"H1924","v":["הֲדַר","Hădar","had-ar'","The same as H1926; Hadar, an Edomite: - Hadar."]},{"k":"H1925","v":["הֶדֶר","heder","heh'-der","From H1921; honour; used (figuratively) for the capital city (Jerusalem): - glory."]},{"k":"H1926","v":["הָדָר","hâdâr","haw-dawr'","From H1921; magnificence, that is, ornament or splendor: - beauty, comeliness, excellency, glorious, glory, goodly, honour, majesty."]},{"k":"H1927","v":["הֲדָרָה","hădârâh","had-aw-raw'","Feminine of H1926; decoration: - beauty, honour."]},{"k":"H1928","v":["הֲדַרְעֶזֶר","Hădarʻezer","had-ar-eh'-zer","From H1924 and H5828; Hadar (that is, Hadad, H1908) is his help; Hadarezer (that is, Hadadezer, H1909), a Syrian king: - Hadarezer."]},{"k":"H1929","v":["הָהּ","hâhh","haw","A shortened form of H162; ah! expressing grief: - woe worth."]},{"k":"H1930","v":["הוֹ","hôw","ho","By permutation from H1929; oh!: - alas."]},{"k":"H1931","v":["הוּא","hûwʼ","hoo","The second form is the feminine beyond the Pentateuch; a primitive word, the third person pronoun singular, he (she or it); only expressed when emphatic or without a verb; also (intensively) self, or (especially with the article) the same; sometimes (as demonstrative) this or that; occasionally (instead of copula) as or are: - he, as for her, him (-self), it, the same, she (herself), such, that (. . . it), these, they, this, those, which (is), who."]},{"k":"H1932","v":["הוּא","hûwʼ","hoo","(Chaldee); corresponding to H1931: -    X are, it, this."]},{"k":"H1933","v":["הָוָא","hâvâʼ","haw-vaw'","A primitive root (compare H183, H1961) supposed to mean properly to breathe; to be (in the sense of existence): - be, X have."]},{"k":"H1934","v":["הָוָא","hâvâʼ","hav-aw'","(Chaldee); corresponding to H1933; to exist; used in a great variety of applications (especially in connection with other words): - be, become, + behold, + came (to pass), + cease, + cleave, + consider, + do, + give, + have + judge, + keep, + labour, + mingle (self), + put, + see, + seek, + set, + slay, + take heed, tremble, + walk, + would."]},{"k":"H1935","v":["הוֹד","hôwd","hode","From an unused root; grandeur (that is, an imposing form and appearance): - beauty, comeliness, excellency, glorious, glory, goodly, honour, majesty."]},{"k":"H1936","v":["הוֹד","Hôwd","hode","The same as H1935; Hod, an Israelite: - Hod."]},{"k":"H1937","v":["הוֹדְוָה","Hôwdᵉvâh","ho-dev-aw'","A form of H1938; Hodevah (or Hodevjah), an Israelite: - Hodevah."]},{"k":"H1938","v":["הוֹדַוְיָה","Hôwdavyâh","ho-dav-yaw'","From H1935 and H3050; majesty of Jah; Hodavjah, the name of three Israelites: - Hodaviah."]},{"k":"H1939","v":["הוֹדַיְוָהוּ","Hôwdayvâhûw","ho-dah-yeh-vaw'-hoo","A form of H1938; Hodajvah, an Israelite: - Hodaiah."]},{"k":"H1940","v":["הוֹדִיָּה","Hôwdîyâh","ho-dee-yaw'","A form for the feminine of H3064; a Jewess: - Hodiah."]},{"k":"H1941","v":["הוֹדִיָּה","Hôwdîyâh","ho-dee-yaw'","A form of H1938; Hodijah, the name of three Israelites: - Hodijah."]},{"k":"H1942","v":["הַוָּה","havvâh","hav-vaw'","From H1933 (in the sense of eagerly coveting and rushing upon; by implication of falling); desire; also ruin: - calamity, iniquity, mischief, mischievous (thing), naughtiness, naughty, noisome, perverse thing, substance, very wickedness."]},{"k":"H1943","v":["הֹוָה","hôvâh","ho-vaw'","Another form for H1942; ruin: - mischief."]},{"k":"H1944","v":["הוֹהָם","Hôwhâm","ho-hawm'","Of uncertain derivation; Hoham, a Canaanitish king: - Hoham."]},{"k":"H1945","v":["הוֹי","hôwy","hoh'ee","A prolonged form of H1930 (akin to H188); oh!: - ah, alas, ho, O, woe."]},{"k":"H1946","v":["הוּךְ","hûwk","hook","(Chaldee); corresponding to H1981; to go; causatively to bring: - bring again, come, go (up)."]},{"k":"H1947","v":["הוֹלֵלָה","hôwlêlâh","ho-lay-law'","Feminine active participle of H1984; folly: - madness."]},{"k":"H1948","v":["הוֹלֵלוּת","hôwlêlûwth","ho-lay-looth'","From active participle of H1984; folly: - madness."]},{"k":"H1949","v":["הוּם","hûwm","hoom","A primitive root (compare H2000); to make an uproar, or agitate greatly: - destroy, move, make a noise, put, ring again."]},{"k":"H1950","v":["הוֹמָם","Hôwmâm","ho-mawm'","From H2000; raging; Homam, an Edomitish chieftain: - Homam. Compare H1967."]},{"k":"H1951","v":["הוּן","hûwn","hoon","A primitive root; properly to be naught, that is, (figuratively) to be (causatively act) light: - be ready."]},{"k":"H1952","v":["הוֹן","hôwn","hone","From the same as H1951 in the sense of H202; wealth; by implication enough: - enough, + for nought, riches, substance, wealth."]},{"k":"H1953","v":["הוֹשָׁמָע","Hôwshâmâʻ","ho-shaw-maw'","From H3068 and H8085; Jehovah has heard; Hoshama, an Israelite: - Hoshama."]},{"k":"H1954","v":["הוֹשֵׁעַ","Hôwshêaʻ","ho-shay'-ah","From H3467; deliverer; Hoshea, the name of five Israelites: - Hosea, Hoshea, Oshea."]},{"k":"H1955","v":["הוֹשַׁעְיָה","Hôwshaʻyâh","ho-shah-yaw'","From H3467 and H3050; Jah has saved; Hoshajah, the name of two Israelites: - Hoshaiah."]},{"k":"H1956","v":["הוֹתִיר","Hôwthîyr","ho-theer'","From H3498; he has caused to remain; Hothir, an Israelite: - Hothir."]},{"k":"H1957","v":["הָזָה","hâzâh","haw-zaw'","A primitive root (compare H2372); to dream: - sleep."]},{"k":"H1958","v":["הִי","hîy","he","For H5092; lamentation: - woe."]},{"k":"H1959","v":["הֵידָד","hêydâd","hay-dawd'","From an unused root (meaning to shout); acclamation: - shout (-ing)."]},{"k":"H1960","v":["הֻיְּדָה","huyᵉdâh","hoo-yed-aw'","From the same as H1959; properly an acclaim, that is, a choir of singers: - thanksgiving."]},{"k":"H1961","v":["הָיָה","hâyâh","haw-yaw","A primitive root (compare H1933); to exist, that is, be or become, come to pass (always emphatic, and not a mere copula or auxiliary): - beacon, X altogether, be (-come, accomplished, committed, like), break, cause, come (to pass), continue, do, faint, fall, + follow, happen, X have, last, pertain, quit (one-) self, require, X use."]},{"k":"H1962","v":["הַיָּה","hayâh","hah-yaw'","Another form for H1943; ruin: - calamity."]},{"k":"H1963","v":["הֵיךְ","hêyk","hake","Another form for H349; how?: - how."]},{"k":"H1964","v":["הֵיכָל","hêykâl","hay-kawl'","Probably from H3201 (in the sense of capacity); a large public building, such as a palace or temple: - palace, temple."]},{"k":"H1965","v":["הֵיכַל","hêykal","hay-kal'","(Chaldee); corresponding to H1964: - palace, temple."]},{"k":"H1966","v":["הֵילֵל","hêylêl","hay-lale'","From H1984 (in the sense of brightness); the morning star: - lucifer."]},{"k":"H1967","v":["הֵימָם","Hêymâm","hay-mawm'","Another form for H1950; Hemam, an Idumaean: - Hemam."]},{"k":"H1968","v":["הֵימָן","Hêymân","hay-mawn'","Probably from H530; faithful; Heman, the name of at least two Israelites: - Heman."]},{"k":"H1969","v":["הִין","hîyn","heen","Probably of Egyptian, origin; a hin or liquid measure: - hin."]},{"k":"H1970","v":["הָכַר","hâkar","haw-kar'","A primitive root; apparently to injure: - make self strange."]},{"k":"H1971","v":["הַכָּרָה","hakkârâh","hak-kaw-raw'","From H5234; respect, that is, partiality: - shew."]},{"k":"H1972","v":["הָלָא","hâlâʼ","haw-law'","Probably denominative from H1973; to remove or be remote: - cast far off."]},{"k":"H1973","v":["הָלְאָה","hâlᵉʼâh","haw-leh-aw'","From the primitive form of the article; to the distance, that is, far away; also (of time) thus far: - back, beyond, (hence-) forward, hitherto, thenceforth, yonder."]},{"k":"H1974","v":["הִלּוּל","hillûwl","hil-lool'","From H1984 (in the sense of rejoicing); a celebration of thanksgiving for harvest: - merry, praise."]},{"k":"H1975","v":["הַלָּז","hallâz","hal-lawz'","From H1976; this or that: - side, that, this."]},{"k":"H1976","v":["הַלָּזֶה","hallâzeh","hal-law-zeh'","From the article (see H1973) and H2088; this very: - this."]},{"k":"H1977","v":["הַלֵּזוּ","hallêzûw","hal-lay-zoo'","Another form of H1976; that: - this."]},{"k":"H1978","v":["הָלִיךְ","hâlîyk","haw-leek'","From H1980; a walk, that is, (by implication) a step: - step."]},{"k":"H1979","v":["הֲלִיכָה","hălîykâh","hal-ee-kaw'","Feminine of H1978; a walking; by implication a procession or march, a caravan: - company, going, walk, way."]},{"k":"H1980","v":["הָלַךְ","hâlak","haw-lak'","Akin to H3212; a primitive root; to walk (in a great variety of applications, literally and figuratively): - (all) along, apace, behave (self), come, (on) continually, be conversant, depart, + be eased, enter, exercise (self), + follow, forth, forward, get, go (about, abroad, along, away, forward, on, out, up and down), + greater, grow, be wont to haunt, lead, march, X more and more, move (self), needs, on, pass (away), be at the point, quite, run (along), + send, speedily, spread, still, surely, + tale-bearer, + travel (-ler), walk (abroad, on, to and fro, up and down, to places), wander, wax, [way-] faring man, X be weak, whirl."]},{"k":"H1981","v":["הֲלַךְ","hălak","hal-ak'","(Chaldee); corresponding to H1980 (compare H1946); to walk: - walk."]},{"k":"H1982","v":["הֵלֶךְ","hêlek","hay'-lek","From H1980; properly a journey, that is, (by implication) a wayfarer; also a flowing: -  X dropped, traveller."]},{"k":"H1983","v":["הֲלָךְ","hălâk","hal-awk'","(Chaldee); from H1981; properly a journey, that is, (by implication) toll on goods at a road: - custom."]},{"k":"H1984","v":["הָלַל","hâlal","haw-lal'","A primitive root; to be clear (originally of sound, but usually of color); to shine; hence to make a show; to boast; and thus to be (clamorously) foolish; to rave; causatively to celebrate; also to stultify: - (make) boast (self), celebrate, commend, (deal, make), fool (-ish, -ly), glory, give [light], be (make, feign self) mad (against), give in marriage, [sing, be worthy of] praise, rage, renowned, shine."]},{"k":"H1985","v":["הִלֵּל","Hillêl","hil-layl'","From H1984; praising (namely God); Hillel, an Israelite: - Hillel."]},{"k":"H1986","v":["הָלַם","hâlam","haw-lam'","A primitive root; to strike down; by implication to hammer, stamp, conquer, disband: - beat (down), break (down), overcome, smite (with the hammer)."]},{"k":"H1987","v":["הֶלֶם","Helem","hay'-lem","From H1986; smiter; Helem, the name of two Israelites: - Helem."]},{"k":"H1988","v":["הֲלֹם","hălôm","hal-ome'","From the article (see H1973); hither: - here, hither (-[to]), thither."]},{"k":"H1989","v":["הַלְמוּת","halmûwth","hal-mooth'","From H1986; a hammer (or mallet): - hammer."]},{"k":"H1990","v":["הָם","Hâm","hawm","Of uncertainly derivation; Ham, a region of Palestine: - Ham."]},{"k":"H1991","v":["הֵם","hêm","haym","From H1993; abundance, that is, wealth: - any of theirs."]},{"k":"H1992","v":["הֵם","hêm","haym","Masculine plural from H1931; they (only used when emphatic): - it, like, X (how, so) many (soever, more as) they (be), (the) same, X so, X such, their, them, these, they, those, which, who, whom, withal, ye."]},{"k":"H1993","v":["הָמָה","hâmâh","haw-maw'","A primitive root (compare H1949); to make a loud sound (like English “hum”); by implication to be in great commotion or tumult, to rage, war, moan, clamor: - clamorous, concourse, cry aloud, be disquieted, loud, mourn, be moved, make a noise, rage, roar, sound, be troubled, make in tumult, tumultuous, be in an uproar."]},{"k":"H1994","v":["הִמּוֹ","himmôw","him-mo'","(Chaldee); corresponding to H1992; they: -  X are, them, those."]},{"k":"H1995","v":["הָמוֹן","hâmôwn","haw-mone'","From H1993; a noise, tumult, crowd; also disquietude, wealth: - abundance, company, many, multitude, multiply, noise, riches, rumbling, sounding, store, tumult."]},{"k":"H1996","v":["הֲמוֹן גּוֹג","Hămôwn Gôwg","ham-one' gohg","From H1995 and H1463; the multitude of Gog; the fanciful name of an emblematic place in Palestine: - Hamon-gog."]},{"k":"H1997","v":["הֲמוֹנָה","Hămôwnâh","ham-o-naw'","Feminine of H1995; multitude; Hamonah, the same as H1996: - Hamonah."]},{"k":"H1998","v":["הֶמְיָה","hemyâh","hem-yaw'","From H1993; sound: - noise."]},{"k":"H1999","v":["הֲמֻלָּה","hămullâh","ham-ool-law'","Feminine passive participle of an unused root meaning to rush (as rain with a windy roar); a sound: - speech, tumult."]},{"k":"H2000","v":["הָמַם","hâmam","haw-mam'","A primitive root (compare H1949, H1993); properly to put in commotion; by implication to disturb, drive, destroy: - break, consume, crush, destroy, discomfit, trouble, vex."]},{"k":"H2001","v":["הָמָן","Hâmân","haw-mawn'","Of foreign derivation; Haman, a Persian vizier: - Haman."]},{"k":"H2002","v":["הַמְנִיךְ","hamnîyk","ham-neek'","(Chaldee); but the text is; of foreign origin; a necklace: - chain."]},{"k":"H2003","v":["הָמָס","hâmâç","haw-mawce'","From an unused root apparently meaning to crackle; a dry twig or brushwood: - melting."]},{"k":"H2004","v":["הֵן","hên","hane","Feminine plural from H1931; they (only used when emphatic): -    X in, such like, (with) them, thereby, therein, (more than) they, wherein, in which, whom, withal."]},{"k":"H2005","v":["הֵן","hên","hane","A primitive particle; lo! also (as expressing surprise) if: - behold, if, lo, though."]},{"k":"H2006","v":["הֵן","hên","hane","(Chaldee); corresponding to H2005; lo! also there, therefore, unless, less, whether, but, if: - (that) if, or, whether."]},{"k":"H2007","v":["הֵנָּה","hênnâh","hane'-naw","Prolonged for H2004; themselves (often used emphatically for the copula, also in indirect relation): -    X in, X such (and such things), their, (into) them, thence, therein, these, they (had), on this side, those, wherein."]},{"k":"H2008","v":["הֵנָּה","hênnâh","hane'-naw","From H2004; hither or thither (but used both of place and time): - here, hither [-to], now, on this (that) side, + since, this (that) way, thitherward, + thus far, to . . . fro, + yet."]},{"k":"H2009","v":["הִנֵּה","hinnêh","hin-nay'","Prolonged for H2005; lo!: - behold, lo, see."]},{"k":"H2010","v":["הֲנָחָה","hănâchâh","han-aw-khaw'","From H5117; permission of rest, that is, quiet: - release."]},{"k":"H2011","v":["הִנֹּם","Hinnôm","hin-nome'","Probably of foreign origin; Hinnom, apparently a Jebusite: - Hinnom."]},{"k":"H2012","v":["הֵנַע","Hênaʻ","hay-nah'","Probably of foreigner derivation Hena, a place apparently in Mesopotamia: - Hena."]},{"k":"H2013","v":["הָסָה","hâçâh","haw-saw'","A primitive root; to hush: - hold peace (tongue), (keep) silence, be silent, still."]},{"k":"H2014","v":["הֲפֻגָה","hăphugâh","haf-oo-gaw'","From H6313; relaxation: - intermission."]},{"k":"H2015","v":["הָפַךְ","hâphak","haw-fak'","A primitive root; to turn about or over; by implication to change, overturn, return, pervert: -  X become, change, come, be converted, give, make [a bed], overthrow (-turn), perverse, retire, tumble, turn (again, aside, back, to the contrary, every way)."]},{"k":"H2016","v":["הֶפֶךְ","hephek","heh'-fek","From H2015; a turn, that is, the reverse: - contrary."]},{"k":"H2017","v":["הֹפֶךְ","hôphek","ho'-fek","From H2015; an upset, that is, (abstractly) perversity: - turning of things upside down."]},{"k":"H2018","v":["הֲפֵכָה","hăphêkâh","haf-ay-kaw'","Feminine of H2016; destruction: - overthrow."]},{"k":"H2019","v":["הֲפַכְפַּךְ","hăphakpak","haf-ak-pak'","By reduplication from H2015; very perverse: - froward."]},{"k":"H2020","v":["הַצָּלָה","hatstsâlâh","hats-tsaw-law'","From H5337; rescue: - deliverance."]},{"k":"H2021","v":["הֹצֶן","hôtsen","ho'-tsen","From an unused root meaning apparently to be sharp or strong; a weapon of war: - chariot."]},{"k":"H2022","v":["הַר","har","har","A shortened form of H2042; a mountain or range of hills (sometimes used figuratively): - hill (country), mount (-ain), X promotion."]},{"k":"H2023","v":["הֹר","Hôr","hore","Another form for H2022; mountain; Hor, the name of a peak in Idumaea and of one in Syria: - Hor."]},{"k":"H2024","v":["הָרָא","Hârâʼ","haw-raw'","Perhaps from H2022; mountainousness; Hara, a region of Media: - Hara."]},{"k":"H2025","v":["הַרְאֵל","harʼêl","har-ale'","From H2022 and H410; mount of God; figuratively the altar of burnt offering: - altar. Compare H739."]},{"k":"H2026","v":["הָרַג","hârag","haw-rag'","A primitive root; to smite with deadly intent: - destroy, out of hand, kill, murder (-er), put to [death], make [slaughter], slay (-er), X surely."]},{"k":"H2027","v":["הֶרֶג","hereg","heh'-reg","From H2026; slaughter: - be slain, slaughter."]},{"k":"H2028","v":["הֲרֵגָה","hărêgâh","har-ay-gaw'","Feminine of H2027; slaughter: - slaughter."]},{"k":"H2029","v":["הָרָה","hârâh","haw-raw'","A primitive root; to be (or become) pregnant, conceive (literally of figuratively): - been, be with child, conceive, progenitor."]},{"k":"H2030","v":["הָרֶה","hâreh","haw-reh'","From H2029; pregnant: - (be, woman) with child, conceive, X great."]},{"k":"H2031","v":["הַרְהֹר","harhôr","har-hor'","(Chaldee); from a root corresponding to H2029; a mental conception: - thought."]},{"k":"H2032","v":["הֵרוֹן","hêrôwn","hay-rone'","From H2029; pregnancy: - conception."]},{"k":"H2033","v":["הֲרוֹרִי","Hărôwrîy","har-o-ree'","Another form for H2043; a Harorite or mountaineer: - Harorite."]},{"k":"H2034","v":["הֲרִיסָה","hărîyçâh","har-ee-saw'","From H2040; something demolished: - ruin."]},{"k":"H2035","v":["הֲרִיסוּת","hărîyçûwth","har-ee-sooth'","From H2040; demolition: - destruction."]},{"k":"H2036","v":["הֹרָם","Hôrâm","ho-rawm'","From an unused root (meaning to tower up); high; Horam, a Canaanitish king: - Horam."]},{"k":"H2037","v":["הָרֻם","Hârum","haw-room'","Passive participle of the same as H2036; high; Harum, an Israelite: - Harum."]},{"k":"H2038","v":["הַרְמוֹן","harmôwn","har-mone'","From the same as H2036; a castle (from its height): - palace."]},{"k":"H2039","v":["הָרָן","Hârân","haw-rawn'","Perhaps from H2022; mountaineer; Haran, the name of two men: - Haran."]},{"k":"H2040","v":["הָרַס","hâraç","haw-ras'","A primitive root; to pull down or in pieces, break, destroy: - beat down, break (down, through), destroy, overthrow, pluck down, pull down, ruin, throw down, X utterly."]},{"k":"H2041","v":["הֶרֶס","hereç","heh'-res","From H2040; demolition: - destruction."]},{"k":"H2042","v":["הָרָר","hârâr","haw-rawr'","From an unused root meaning to loom up; a mountain: - hill, mount (-ain)."]},{"k":"H2043","v":["הֲרָרִי","Hărârîy","hah-raw-ree'","Apparently from H2042; a mountaineer: - Hararite."]},{"k":"H2044","v":["הָשֵׁם","Hâshêm","haw-shame'","Perhaps from the same as H2828; wealthy; Hashem, an Israelite: - Hashem."]},{"k":"H2045","v":["הַשְׁמָעוּת","hashmâʻûwth","hashmaw-ooth'","From H8085; announcement: - to cause to hear."]},{"k":"H2046","v":["הִתּוּךְ","hittûwk","hit-took'","From H5413; a melting: - is melted."]},{"k":"H2047","v":["הֲתָךְ","Hăthâk","hath-awk'","Probably of foreign origin; Hathak, a Persian eunuch: - Hatach."]},{"k":"H2048","v":["הָתַל","hâthal","haw-thal'","A primitive root; to deride; by implication to cheat: - deal deceitfully, deceive, mock."]},{"k":"H2049","v":["הָתֹל","hâthôl","haw-thole'","From H2048 (only in plural collectively); a derision: - mocker."]},{"k":"H2050","v":["הָתַת","hâthath","haw-thath'","A primitive root; properly to break in upon, that is, to assail: - imagine mischief."]},{"k":"H2051","v":["וְדָן","Vᵉdân","ved-awn'","Perhaps for H5730; Vedan (or Aden), a place in Arabia: - Dan also."]},{"k":"H2052","v":["וָהֵב","Vâhêb","vaw-habe'","Of uncertain derivation; Vaheb, a place in Moab: - what he did."]},{"k":"H2053","v":["וָו","vâv","vaw","Probably a hook (the name of the sixth Hebrew letter): - hook."]},{"k":"H2054","v":["וָזָר","vâzâr","vaw-zawr'","Presumed to be from an unused root meaning to bear guilt; crime: -  X strange."]},{"k":"H2055","v":["וַיְזָתָא","Vayzâthâʼ","vah-yez-aw'-thaw","Of foreign origin; Vajezatha, a son of Haman: - Vajez-atha."]},{"k":"H2056","v":["וָלָד","vâlâd","vaw-lawd'","For H3206; a boy: - child."]},{"k":"H2057","v":["וַנְיָה","Vanyâh","van-yaw'","Perhaps for H6043; Vanjah, an Israelite: - Vaniah."]},{"k":"H2058","v":["וׇפְסִי","Vophçîy","vof-see'","Probably from H3254; additional; Vophsi, an Israelite: - Vophsi."]},{"k":"H2059","v":["וַשְׁנִי","Vashnîy","vash-nee'","Probably from H3461; weak; Vashni, an Israelite: - Vashni."]},{"k":"H2060","v":["וַשְׁתִּי","Vashtîy","vash-tee'","Of Persian origin; Vashti, the queen of Xerxes: - Vashti."]},{"k":"H2061","v":["זְאֵב","zᵉʼêb","zeh-abe'","From an unused root meaning to be yellow; a wolf: - wolf."]},{"k":"H2062","v":["זְאֵב","Zᵉʼêb","zeh-abe'","The same as H2061; Zeeb, a Midianitish prince: - Zeeb."]},{"k":"H2063","v":["זֹאת","zôʼth","zothe'","Irregular feminine of H2089; this (often used adverbially): - hereby (-in, -with), it, likewise, the one (other, same), she, so (much), such (deed), that, therefore, these, this (thing), thus."]},{"k":"H2064","v":["זָבַד","zâbad","zaw-bad'","A primitive root; to confer: - endure."]},{"k":"H2065","v":["זֶבֶד","zebed","zeh'-bed","From H2064; a gift: - dowry."]},{"k":"H2066","v":["זָבָד","Zâbâd","zaw-bawd'","From H2064; giver; Zabad, the name of seven Israelites: - Zabad."]},{"k":"H2067","v":["זַבְדִּי","Zabdîy","zab-dee'","From H2065; giving; Zabdi, the name of four Israelites: - Zabdi."]},{"k":"H2068","v":["זַבְדִּיאֵל","Zabdîyʼêl","zab-dee-ale'","From H2065 and H410; gift of God; Zabdiel, the name of two Israelites: - Zabdiel."]},{"k":"H2069","v":["זְבַדְיָה","Zᵉbadyâh","zeb-ad-yaw'","From H2064 and H3050; Jah has given; Zebadjah, the name of nine Israelites: - Zebadiah."]},{"k":"H2070","v":["זְבוּב","zᵉbûwb","zeb-oob'","From an unused root (meaning to flit); a fly (especially one of a stinging nature): - fly."]},{"k":"H2071","v":["זָבוּד","Zâbûwd","zaw-bood'","From H2054; given; Zabud, an Israelite: - Zabud."]},{"k":"H2072","v":["זַבּוּד","Zabbûwd","zab-bood'","A form of H2071; given; Zabbud, an Israelites: - Zabbud."]},{"k":"H2073","v":["זְבוּל","zᵉbûwl","ze-bool'","From H2082; a residence: - dwell in, dwelling, habitation."]},{"k":"H2074","v":["זְבוּלוּן","Zᵉbûwlûwn","zeb-oo-loon'","From H2082; habitation; Zebulon, a son of Jacob; also his territory and tribe: - Zebulun."]},{"k":"H2075","v":["זְבוּלֹנִי","Zᵉbûwlônîy","zeb-oo-lo-nee'","Patronymic from H2074; a Zebulonite or descendant of Zebulun: - Zebulonite."]},{"k":"H2076","v":["זָבַח","zâbach","zaw-bakh'","A primitive root; to slaughter an animal (usually in sacrifice): - kill, offer, (do) sacrifice, slay."]},{"k":"H2077","v":["זֶבַח","zebach","zeh'-bakh","From H2076; properly a slaughter, that is, the flesh of an animal; by implication a sacrifice (the victim or the act): - offer (-ing), sacrifice."]},{"k":"H2078","v":["זֶבַח","Zebach","zeh'-bakh","The same as H2077; sacrifice; Zebach, a Midianitish prince: - Zebah."]},{"k":"H2079","v":["זַבַּי","Zabbay","zab-bah'-ee","Probably by orthography error for H2140; Zabbai (or Zaccai), an Israelite: - Zabbai."]},{"k":"H2080","v":["זְבִידָה","Zᵉbîydâh","zeb-ee-daw'","Feminine from H2064; giving; Zebidah, an Israelitess: - Zebudah."]},{"k":"H2081","v":["זְבִינָא","Zᵉbîynâʼ","zeb-ee-naw'","From an unused root (meaning to purchase); gainfulness; Zebina, an Israelite: - Zebina."]},{"k":"H2082","v":["זָבַל","zâbal","zaw-bal'","A primitive root; apparently properly to inclose, that is, to reside: - dwell with."]},{"k":"H2083","v":["זְבֻל","Zᵉbul","zeb-ool'","The same as H2074; dwelling; Zebul, an Israelite: - Zebul. Compare H2073."]},{"k":"H2084","v":["זְבַן","zᵉban","zeb-an'","(Chaldee); corresponding to the root of H2081; to acquire by purchase: - gain."]},{"k":"H2085","v":["זָג","zâg","zawg","From an unused root probably meaning to inclose; the skin of a grape: - husk."]},{"k":"H2086","v":["זֵד","zêd","zade'","From H2102; arrogant: - presumptuous, proud."]},{"k":"H2087","v":["זָדוֹן","zâdôwn","zaw-done'","From H2102; arrogance: - presumptuously, pride, proud (man)."]},{"k":"H2088","v":["זֶה","zeh","zeh","A primitive word; the masculine demonstrative pronoun, this or that: - he, X hence, X here, it (-self), X now, X of him, the one . . . the other, X than the other, (X out of) the (self) same, such (an one) that, these, this (hath, man), on this side . . . on that side, X thus, very, which. Compare H2063, H2090, H2097, H2098."]},{"k":"H2089","v":["זֶה","zeh","zeh","By permutation for H7716; a sheep: - lamb."]},{"k":"H2090","v":["זֹה","zôh","zo","For H2088; this or that: - as well as another, it, this, that, thus and thus."]},{"k":"H2091","v":["זָהָב","zâhâb","zaw-hawb'","From an unused root meaning to shimmer; gold; figuratively something gold colored (that is, yellow), as oil, a clear sky: - gold (-en), fair weather."]},{"k":"H2092","v":["זָהַם","zâham","zaw-ham'","A primitive root; to be rancid, that is, (transitively) to loathe: - abhor."]},{"k":"H2093","v":["זַהַם","Zaham","zah'-ham","From H2092; loathing; Zaham, an Israelite: - Zaham."]},{"k":"H2094","v":["זָהַר","zâhar","zaw-har'","A primitive root; to gleam; figuratively to enlighten (by caution): - admonish, shine, teach, (give) warn (-ing)."]},{"k":"H2095","v":["זְהַר","zᵉhar","zeh-har'","(Chaldee); corresponding to H2094; (passively) be admonished: - take heed."]},{"k":"H2096","v":["זֹהַר","zôhar","zo'-har","From H2094; brilliancy: - brightness."]},{"k":"H2097","v":["זוֹ","zôw","zo","For H2088; this or that: - that, this."]},{"k":"H2098","v":["זוּ","zûw","zoo","For H2088; this or that: - that this, X wherein, which, whom."]},{"k":"H2099","v":["זִו","Ziv","zeev'","Probably from an unused root meaning to be prominent; properly brightness (compare H2111), that is, (figuratively) the month of flowers; Ziv (corresponding to Ijar or May): - Zif."]},{"k":"H2100","v":["זוּב","zûwb","zoob","A primitive root; to flow freely (as water), that is, (specifically) to have a (sexual) flux; figuratively to waste away; also to overflow: - flow, gush out, have a (running) issue, pine away, run."]},{"k":"H2101","v":["זוֹב","zôwb","zobe","From H2100; a seminal or menstrual flux: - issue."]},{"k":"H2102","v":["זוּד","zûwd","zood","A primitive root; to seethe; figuratively to be insolent: - be proud, deal proudly, presume, (come) presumptuously, sod."]},{"k":"H2103","v":["זוּד","zûwd","zood","(Chaldee); corresponding to H2102; to be proud: - in pride."]},{"k":"H2104","v":["זוּזִים","Zûwzîym","zoo-zeem'","Plural probably from the same as H2123; prominent; Zuzites, an aboriginal tribe of Palestine: - Zuzims."]},{"k":"H2105","v":["זוֹחֵת","Zôwchêth","zo-khayth'","Of uncertain origin; Zocheth, an Israelite: - Zoheth."]},{"k":"H2106","v":["זָוִית","zâvîyth","zaw-veeth'","Apparently from the same root as H2099 (in the sense of prominence); an angle (as projecting), that is, (by implication) a corner column (or anta): - corner (stone)."]},{"k":"H2107","v":["זוּל","zûwl","zool","A primitive root (compare H2151); probably to shake out, that is, (by implication) to scatter profusely; figuratively to treat lightly: - lavish, despise."]},{"k":"H2108","v":["זוּלָה","zûwlâh","zoo-law'","From H2107; properly scattering, that is, removal; used adverbially except: - beside, but, only, save."]},{"k":"H2109","v":["זוּן","zûwn","zoon","A primitive root; perhaps properly to be plump, that is, (transitively) to nourish: - feed."]},{"k":"H2110","v":["זוּן","zûwn","zoon","(Chaldee); corresponding to H2109: - feed."]},{"k":"H2111","v":["זוּעַ","zûwaʻ","zoo'-ah","A primitive root; properly to shake off, that is, (figuratively) to agitate (as with fear): - move, tremble, vex."]},{"k":"H2112","v":["זוּעַ","zûwaʻ","zoo'-ah","(Chaldee); corresponding to H2111; to shake (with fear): - tremble."]},{"k":"H2113","v":["זְוָעָה","zᵉvâʻâh","zev-aw-aw'","From H2111; agitation, fear: - be removed, trouble, vexation. Compare H2189."]},{"k":"H2114","v":["זוּר","zûwr","zoor","A primitive root; to turn aside (especially for lodging); hence to be a foreigner, strange, profane; specifically (active participle) to commit adultery: - (come from) another (man, place), fanner, go away, (e-) strange (-r, thing, woman)."]},{"k":"H2115","v":["זוּר","zûwr","zoor","A primitive root (compare H6695); to press together, tighten: - close, crush, thrust together."]},{"k":"H2116","v":["זוּרֶה","zûwreh","zoo-reh'","From H2115; trodden on: - that which is crushed."]},{"k":"H2117","v":["זָזָא","zâzâʼ","zaw-zaw'","Probably from the root of H2123; prominent; Zaza, an Israelite: - Zaza."]},{"k":"H2118","v":["זָחַח","zâchach","zaw-khakh'","A primitive root; to shove or displace: - loose."]},{"k":"H2119","v":["זָחַל","zâchal","zaw-khal'","A primitive root; to crawl; by implication to fear: - be afraid, serpent, worm."]},{"k":"H2120","v":["זֹחֶלֶת","Zôcheleth","zo-kheh'-leth","Feminine active participle of H2119; crawling (that is, serpent); Zocheleth, a boundary stone in Palestine: - Zoheleth."]},{"k":"H2121","v":["זֵידוֹן","zêydôwn","zay-dohn'","From H2102; boiling of water, that is, wave: - proud."]},{"k":"H2122","v":["זִיו","zîyv","zeev","(Chaldee); corresponding to H2099; (figuratively) cheerfulness: - brightness, countenance."]},{"k":"H2123","v":["זִיז","zîyz","zeez","From an unused root apparently meaning to be conspicuous; fulness of the breast; also a moving creature: - abundance, wild beast."]},{"k":"H2124","v":["זִיזָא","Zîyzâʼ","zee-zaw'","Apparently from the same as H2123; prominence; Ziza, the name of two Israelites: - Ziza."]},{"k":"H2125","v":["זִיזָה","Zîyzâh","zee-zaw'","Another form for H2124; Zizah, an Israelite: - Zizah."]},{"k":"H2126","v":["זִינָא","Zîynâʼ","zee-naw'","From H2109; well fed; or perhaps an orthographical error for H2124; Zina, an Israelite: - Zina."]},{"k":"H2127","v":["זִיעַ","Zîyaʻ","zee'-ah","From H2111; agitation; Zia, an Israelite: - Zia."]},{"k":"H2128","v":["זִיף","Zîyph","zeef","From the same as H2203; flowing; Ziph, the name of a place in Palestine; also of an Israelite: - Ziph."]},{"k":"H2129","v":["זִיפָה","Zîyphâh","zee-faw'","Feminine of H2128; a flowing; Ziphah, an Israelite: - Ziphah."]},{"k":"H2130","v":["זִיפִי","Zîyphîy","zee-fee'","Patrial from H2128; a Ziphite or inhabitant of Ziph: - Ziphim, Ziphite."]},{"k":"H2131","v":["זִיקָה","zîyqâh","zee-kaw'","From H2187; properly what leaps forth, that is, flash of fire, or a burning arrow; also (from the original sense of the root) a bond: - chain, fetter, firebrand, spark."]},{"k":"H2132","v":["זַיִת","zayith","zay'-yith","Probably from an unused root (akin to H2099); an olive (as yielding illuminating oil), the tree, the branch or the berry: - olive (tree, -yard), Olivet."]},{"k":"H2133","v":["זֵיתָן","Zêythân","zay-thawn'","From H2132; olive grove; Zethan, an Israelite: - Zethan."]},{"k":"H2134","v":["זַךְ","zak","zak","From H2141; clear: - clean, pure."]},{"k":"H2135","v":["זָכָה","zâkâh","zaw-kaw'","A primitive root (compare H2141); to be translucent; figuratively to be innocent: - be (make) clean, cleanse, be clear, count pure."]},{"k":"H2136","v":["זָכוּ","zâkûw","zaw-koo'","(Chaldee); from a root corresponding to H2135; purity: - innocency."]},{"k":"H2137","v":["זְכוּכִית","zᵉkûwkîyth","zek-oo-keeth","From H2135; properly transparency, that is, glass: - crystal."]},{"k":"H2138","v":["זָכוּר","zâkûwr","zaw-koor'","Properly passive participle of H2142; but used for H2145; a male (of man or animals): - males, men-children."]},{"k":"H2139","v":["זַכּוּר","Zakkûwr","zaw-koor'","From H2142; mindful; Zakkur, the name of seven Israelites: - Zaccur, Zacchur."]},{"k":"H2140","v":["זַכַּי","Zakkay","zak-kah'-ee","From H2141; pure; Zakkai, an Israelite: - Zaccai."]},{"k":"H2141","v":["זָכַךְ","zâkak","zaw-kak'","A primitive root (compare H2135); to be transparent or clean (physically or morally): - be (make) clean, be pure (-r)."]},{"k":"H2142","v":["זָכַר","zâkar","zaw-kar'","A primitive root; properly to mark (so as to be recognized), that is, to remember; by implication to mention; also (as denominative from H2145) to be male: -  X burn [incense], X earnestly, be male, (make) mention (of), be mindful, recount, record (-er), remember, make to be remembered, bring (call, come, keep, put) to (in) remembrance, X still, think on, X well."]},{"k":"H2143","v":["זֵכֶר","zêker","zay'-ker","From H2142; a memento, abstractly recollection (rarely if ever); by implication commemoration: - memorial, memory, remembrance, scent."]},{"k":"H2144","v":["זֶכֶר","Zeker","zeh'-ker","The same as H2143; Zeker, an Israelite: - Zeker."]},{"k":"H2145","v":["זָכָר","zâkâr","zaw-kawr'","From H2142; properly remembered, that is, a male (of man or animals, as being the most noteworthy sex): -    X him, male, man (child, -kind)."]},{"k":"H2146","v":["זִכְרוֹן","zikrôwn","zik-rone'","From H2142; a memento (or memorable thing, day or writing): - memorial, record."]},{"k":"H2147","v":["זִכְרִי","Zikrîy","zik-ree'","From H2142; memorable; Zicri, the name of twelve Israelites: - Zichri."]},{"k":"H2148","v":["זְכַרְיָה","Zᵉkaryâh","zek-ar-yaw'","From H2142 and H3050; Jah has remembered; Zecarjah, the name of twenty nine Israelites: - Zachariah, Zechariah."]},{"k":"H2149","v":["זֻלּוּת","zullûwth","zool-looth'","From H2151; properly a shaking, that is, perhaps a tempest: - vilest."]},{"k":"H2150","v":["זַלְזַל","zalzal","zal-zal'","By reduplication from H2151; tremulous, that is, a twig: - sprig."]},{"k":"H2151","v":["זָלַל","zâlal","zaw-lal'","A primitive root (compare H2107); to shake (as in the wind), that is, to quake; figuratively to be loose morally, worthless or prodigal: - blow down, glutton, riotous (eater), vile."]},{"k":"H2152","v":["זַלְעָפָה","zalʻâphâh","zal-aw-faw'","From H2196; a glow (of wind or anger); also a famine (as consuming): - horrible, horror, terrible."]},{"k":"H2153","v":["זִלְפָּה","Zilpâh","zil-paw","From an unused root apparently meaning to trickle, as myrrh; fragrant dropping; Zilpah, Leah’s maid: - Zilpah."]},{"k":"H2154","v":["זִמָּה","zimmâh","zim-maw'","From H2161; a plan, especially a bad one: - heinous crime, lewd (-ly, -ness), mischief, purpose, thought, wicked (device, mind, -ness)."]},{"k":"H2155","v":["זִמָּה","Zimmâh","zim-maw'","The same as H2154; Zimmah, the name of two Israelites: - Zimmah."]},{"k":"H2156","v":["זְמוֹרָה","zᵉmôwrâh","zem-o-raw'","(Feminine) and (masculine): from H2168; a twig (as pruned): - vine, branch, slip."]},{"k":"H2157","v":["זַמְזֹם","Zamzôm","zam-zome'","From H2161; intriguing; a Zamzumite, or native tribe of Palestine: - Zamzummim."]},{"k":"H2158","v":["זָמִיר","zâmîyr","zaw-meer'","(Feminine): from H2167; a song to be accompanied with instrumental music: - psalm (-ist), singing, song."]},{"k":"H2159","v":["זָמִיר","zâmîyr","zaw-meer'","From H2168; a twig (as pruned): - branch."]},{"k":"H2160","v":["זְמִירָה","Zᵉmîyrâh","zem-ee-raw'","Feminine of H2158; song; Zemirah, an Israelite: - Zemira."]},{"k":"H2161","v":["זָמַם","zâmam","zaw-mam'","A primitive root; to plan, usually in a bad sense: - consider, devise, imagine, plot, purpose, think (evil)."]},{"k":"H2162","v":["זָמָם","zâmâm","zaw-mawm'","From H2161; a plot: - wicked device."]},{"k":"H2163","v":["זָמַן","zâman","zaw-man'","A primitive root; to fix (a time): - appoint."]},{"k":"H2164","v":["זְמַן","zᵉman","zem-an'","(Chaldee); corresponding to H2163; to agree (on a time and place): - prepare."]},{"k":"H2165","v":["זְמָן","zᵉmân","zem-awn'","From H2163; an appointed occasion: - season, time."]},{"k":"H2166","v":["זְמָן","zᵉmân","zem-awn'","(Chaldee); from H2165; the same as H2165: - season, time."]},{"k":"H2167","v":["זָמַר","zâmar","zaw-mar'","A primitive root (perhaps identical with H2168 through the idea of striking with the fingers); properly to touch the strings or parts of a musical instrument, that is, play upon it; to make music, accompanied by the voice; hence to celebrate in song and music: - give praise, sing forth praises, psalms."]},{"k":"H2168","v":["זָמַר","zâmar","zaw-mar'","A primitive root (compare H2167, H5568, H6785); to trim (a vine): - prune."]},{"k":"H2169","v":["זֶמֶר","zemer","zeh'-mer","Apparently from H2167 or H2168; a gazelle (from its lightly touching the ground): - chamois."]},{"k":"H2170","v":["זְמָר","zᵉmâr","zem-awr'","(Chaldee); from a root corresponding to H2167; instrumental music: - musick."]},{"k":"H2171","v":["זַמָּר","zammâr","zam-mawr'","(Chaldee); from the same as H2170; an instrumental musician: - singer."]},{"k":"H2172","v":["זִמְרָה","zimrâh","zim-raw'","From H2167; a musical piece or song to be accompanied by an instrument: - melody, psalm."]},{"k":"H2173","v":["זִמְרָה","zimrâh","zim-raw'","From H2168; pruned (that is, choice) fruit: - best fruit."]},{"k":"H2174","v":["זִמְרִי","Zimrîy","zim-ree'","From H2167; musical; Zimri, the name of five Israelites, and of an Arabian tribe: - Zimri."]},{"k":"H2175","v":["זִמְרָן","Zimrân","zim-rawn'","From H2167; musical; Zimran, a son of Abraham by Keturah: - Zimran."]},{"k":"H2176","v":["זִמְרָת","zimrâth","zim-rawth'","From H2167; instrumental music; by implication praise: - song."]},{"k":"H2177","v":["זַן","zan","zan","From H2109; properly nourished (or fully developed), that is, a form or sort: - divers kinds, X all manner of store."]},{"k":"H2178","v":["זַן","zan","zan","(Chaldee); corresponding to H2177; sort: - kind."]},{"k":"H2179","v":["זָנַב","zânab","zaw-nab'","A primitive root meaning to wag; used only as a denominative from H2180; to curtail, that is, cut off the rear: - smite the hindmost."]},{"k":"H2180","v":["זָנָב","zânâb","zaw-nawb'","From H2179 (in the original sense of flapping); the tail (literally or figuratively): - tail."]},{"k":"H2181","v":["זָנָה","zânâh","zaw-naw'","A primitive root (highly fed and therefore wanton); to commit adultery (usually of the female, and less often of simple forniciation, rarely of involuntary ravishment); figuratively to commit idolatry (the Jewish people being regarded as the spouse of Jehovah): - (cause to) commit fornication, X continually, X great, (be an, play the) harlot, (cause to be, play the) whore, (commit, fall to) whoredom, (cause to) go a-whoring, whorish."]},{"k":"H2182","v":["זָנוֹחַ","Zânôwach","zaw-no'-akh","From H2186; rejected; Zanoach, the name of two places in Palestine: - Zanoah."]},{"k":"H2183","v":["זָנוּן","zânûwn","zaw-noon'","From H2181; adultery; figuratively idolatry: - whoredom."]},{"k":"H2184","v":["זְנוּת","zᵉnûwth","zen-ooth'","From H2181; adultery, that is, (figuratively) infidelity, idolatry: - whoredom."]},{"k":"H2185","v":["זֹנוֹת","zônôwth","zo-noth'","Regarded by some as if from H2109 or an unused root, and applied to military equipments; but evidently the feminine plural active participle of H2181; harlots: - armour."]},{"k":"H2186","v":["זָנַח","zânach","zaw-nakh'","A primitive root meaning to push aside, that is, reject, forsake, fail: - cast away (off), remove far away (off)."]},{"k":"H2187","v":["זָנַק","zânaq","zaw-nak'","A primitive root; properly to draw together the feet (as an animal about to dart upon its prey), that is, to spring forward: - leap."]},{"k":"H2188","v":["זֵעָה","zêʻâh","zay-aw'","From H2111 (in the sense of H3154); perspiration: - sweat."]},{"k":"H2189","v":["זַעֲוָה","zaʻăvâh","zah-av-aw'","By transposition for H2113; agitation, maltreatment: -  X removed, trouble."]},{"k":"H2190","v":["זַעֲוָן","Zaʻăvân","zah-av-awn'","From H2111; disquiet; Zaavan, an Idumaean: - Zaavan."]},{"k":"H2191","v":["זְעֵיר","zᵉʻêyr","zeh-ayr'","From an unused root (akin (by permutation) to H6819), meaning to dwindle; small: - little."]},{"k":"H2192","v":["זְעֵיר","zᵉʻêyr","zeh-ayr'","(Chaldee); corresponding to H2191: - little."]},{"k":"H2193","v":["זָעַךְ","zâʻak","zaw-ak'","A primitive root; to extinguish: - be extinct."]},{"k":"H2194","v":["זָעַם","zâʻam","zaw-am'","A primitive root; properly to foam at the mouth, that is, to be enraged: - abhor, abominable, (be) angry, defy, (have) indignation."]},{"k":"H2195","v":["זַעַם","zaʻam","zah'-am","From H2194; strictly froth at the mouth, that is, (figuratively) fury (especially of God’s displeasure with sin): - angry, indignation, rage."]},{"k":"H2196","v":["זָעַף","zâʻaph","zaw-af'","A primitive root; properly to boil up, that is, (figuratively) to be peevish or angry: - fret, sad, worse liking, be wroth."]},{"k":"H2197","v":["זַעַף","zaʻaph","zah'-af","From H2196; anger: - indignation, rage (-ing), wrath."]},{"k":"H2198","v":["זָעֵף","zâʻêph","zaw-afe'","From H2196; angry: - displeased."]},{"k":"H2199","v":["זָעַק","zâʻaq","zaw-ak'","A primitive root; to shriek (from anguish or danger); by analogy (as a herald) to announce or convene publicly: - assemble, call (together), (make a) cry (out), come with such a company, gather (together), cause to be proclaimed."]},{"k":"H2200","v":["זְעִק","zᵉʻiq","zek'-eek","(Chaldee); corresponding to H2199; to make an outcry: - cry."]},{"k":"H2201","v":["זַעַק","zaʻaq","zah'-ak","(Feminine): from H2199; a shriek or outcry: - cry (-ing)."]},{"k":"H2202","v":["זִפְרֹן","Ziphrôn","zi-frone'","From an unused root (meaning to be fragrant); Ziphron, a place in Palestine: - Ziphron."]},{"k":"H2203","v":["זֶפֶת","zepheth","zeh'-feth","From an unused root (meaning to liquify); asphalt (from its tendency to soften in the sun): - pitch."]},{"k":"H2204","v":["זָקֵן","zâqên","zaw-kane'","A primitive root; to be old: - aged man, be (wax) old (man)."]},{"k":"H2205","v":["זָקֵן","zâqên","zaw-kane'","From H2204; old: - aged, ancient (man), elder (-est), old (man, men and . . . women), senator."]},{"k":"H2206","v":["זָקָן","zâqân","zaw-kawn'","From H2204; the beard (as indicating age): - beard."]},{"k":"H2207","v":["זֹקֶן","zôqen","zo'-ken","From H2204; old age: - age."]},{"k":"H2208","v":["זָקֻן","zâqun","zaw-koon'","Properly passive participle of H2204 (used only in the plural as a noun); old age: - old age."]},{"k":"H2209","v":["זִקְנָה","ziqnâh","zik-naw'","Feminine of H2205; old age: - old (age)."]},{"k":"H2210","v":["זָקַף","zâqaph","zaw-kaf'","A primitive root; to lift, that is, (figuratively) comfort: - raise (up)."]},{"k":"H2211","v":["זְקַף","zᵉqaph","zek-af'","(Chaldee); corresponding to H2210; to hang, that is, impale: - set up."]},{"k":"H2212","v":["זָקַק","zâqaq","zaw-kak'","A primitive root; to strain, (figuratively) extract, clarify: - fine, pour down, purge, purify, refine."]},{"k":"H2213","v":["זֵר","zêr","zare","From H2237 (in the sense of scattering); a chaplet (as spread around the top), that is, (specifically) a border moulding: - crown."]},{"k":"H2214","v":["זָרָא","zârâʼ","zaw-raw'","From H2114 (in the sense of estrangement) (compare H2219); disgust: - loathsome."]},{"k":"H2215","v":["זָרַב","zârab","zaw-rab'","A primitive root; to flow away: - wax warm."]},{"k":"H2216","v":["זְרֻבָּבֶל","Zᵉrubbâbel","zer-oob-baw-bel'","From H2215 and H894; descended of (that is, from) Babylon, that is, born there; Zerubbabel, an Israelite: - Zerubbabel."]},{"k":"H2217","v":["זְרֻבָּבֶל","Zᵉrubbâbel","zer-oob-baw-bel'","(Chaldee); corresponding to H2216: - Zerubbabel."]},{"k":"H2218","v":["זֶרֶד","Zered","zeh'-red","From an unused root meaning to be exuberant in growth; lined with shrubbery; Zered, a brook East of the Dead Sea: - Zared, Zered."]},{"k":"H2219","v":["זָרָה","zârâh","zaw-raw'","A primitive root (compare H2114); to toss about; by implication to diffuse, winnow: - cast away, compass, disperse, fan, scatter (away), spread, strew, winnow."]},{"k":"H2220","v":["זְרוֹעַ","zᵉrôwaʻ","zer-o'-ah","From H2232; the arm (as stretched out), or (of animals) the foreleg; figuratively force: - arm, + help, mighty, power, shoulder, strength."]},{"k":"H2221","v":["זֵרוּעַ","zêrûwaʻ","zay-roo'-ah","From H2232; something sown, that is, a plant: - sowing, thing that is sown."]},{"k":"H2222","v":["זַרְזִיף","zarzîyph","zar-zeef'","By reduplication from an unused root meaning to flow; a pouring rain: - water."]},{"k":"H2223","v":["זַרְזִיר","zarzîyr","zar-zeer'","By reduplication from H2115; properly tightly girt, that is, probably a racer, or some fleet animal (as being slender in the waist): -    + greyhound."]},{"k":"H2224","v":["זָרַח","zârach","zaw-rakh'","A primitive root; properly to irradiate (or shoot forth beams), that is, to rise (as the sun); specifically to appear (as a symptom of leprosy): - arise, rise (up), as soon as it is up."]},{"k":"H2225","v":["זֶרַח","zerach","zeh'-rakh","From H2224; a rising of light: - rising."]},{"k":"H2226","v":["זֶרַח","Zerach","zeh'-rakh","The same as H2225; Zerach, the name of three Israelites, also of an Idumaean and an Ethiopian prince: - Zarah, Zerah."]},{"k":"H2227","v":["זַרְחִי","Zarchîy","zar-khee'","Patronymic from H2226; a Zarchite or descendant of Zerach: - Zarchite."]},{"k":"H2228","v":["זְרַחְיָה","Zᵉrachyâh","zer-akh-yaw'","From H2225 and H3050; Jah has risen; Zerachjah, the name of two Israelites: - Zerahiah."]},{"k":"H2229","v":["זָרַם","zâram","zaw-ram'","A primitive root; to gush (as water): - carry away as with a flood, pour out."]},{"k":"H2230","v":["זֶרֶם","zerem","zeh'-rem","From H2229; a gush of water: - flood, overflowing, shower, storm, tempest."]},{"k":"H2231","v":["זִרְמָה","zirmâh","zir-maw'","Feminine of H2230; a gushing of fluid (semen): - issue."]},{"k":"H2232","v":["זָרַע","zâraʻ","zaw-rah'","A primitive root; to sow; figuratively to disseminate, plant, fructify: - bear, conceive seed, set with, sow (-er), yield."]},{"k":"H2233","v":["זֶרַע","zeraʻ","zeh'-rah","From H2232; seed; figuratively fruit, plant, sowing time, posterity: -  X carnally, child, fruitful, seed (-time), sowing-time."]},{"k":"H2234","v":["זְרַע","zᵉraʻ","zer-ah'","(Chaldee); corresponding to H2233; posterity: - seed."]},{"k":"H2235","v":["זֵרֹעַ","zêrôaʻ","zay-ro'-ah","From H2232; something sown (only in the plural), that is, a vegetable (as food): - pulse."]},{"k":"H2236","v":["זָרַק","zâraq","zaw-rak'","A primitive root; to sprinkle (fluid or solid particles): - be here and there, scatter, sprinkle, strew."]},{"k":"H2237","v":["זָרַר","zârar","zaw-rar'","A primitive root (compare H2114); perhaps to diffuse, that is, (specifically) to sneeze: - sneeze."]},{"k":"H2238","v":["זֶרֶשׁ","Zeresh","zeh'-resh","Of Persian origin; Zeresh, Haman’s wife: - Zeresh."]},{"k":"H2239","v":["זֶרֶת","zereth","zeh'-reth","From H2219; the spread of the fingers, that is, a span: - span."]},{"k":"H2240","v":["זַתּוּא","Zattûwʼ","zat-too'","Of uncertain derivation; Zattu, an Israelite: - Zattu."]},{"k":"H2241","v":["זֵתָם","Zêthâm","zay-thawm'","Apparently a variation for H2133; Zetham, an Israelite: - Zetham."]},{"k":"H2242","v":["זֵתַר","Zêthar","zay-thar'","Of Persian origin; Zethar, a eunuch of Xerxes: - Zethar."]},{"k":"H2243","v":["חֹב","chôb","khobe","By contraction from H2245; properly a cherisher, that is, the bosom: - bosom."]},{"k":"H2244","v":["חָבָא","châbâʼ","khaw-baw'","A primitive root (compare H2245); to secrete: -  X held, hide (self), do secretly."]},{"k":"H2245","v":["חָבַב","châbab","khaw-bab'","A primitive root (compare H2244, H2247); properly to hide (as in the bosom), that is, to cherish (with affection): - love."]},{"k":"H2246","v":["חֹבָב","Chôbâb","kho-bawb'","From H2245; cherished; Chobab, father in law of Moses: - Hobab."]},{"k":"H2247","v":["חָבָה","châbâh","khaw-bah'","A primitive root (compare H2245); to secrete: - hide (self)."]},{"k":"H2248","v":["חֲבוּלָה","chăbûwlâh","khab-oo-law'","(Chaldee); from H2255; properly overthrown, that is, (morally) crime: - hurt."]},{"k":"H2249","v":["חָבוֹר","Châbôwr","khaw-bore'","From H2266; united; Chabor, a river of Assyria: - Habor."]},{"k":"H2250","v":["חַבּוּרָה","chabbûwrâh","khab-boo-raw'","From H2266; properly bound (with stripes), that is, a weal (or black and blue mark itself): - blueness, bruise, hurt, stripe, wound."]},{"k":"H2251","v":["חָבַט","châbaṭ","khaw-bat'","A primitive root; to knock out or off: - beat (off, out), thresh."]},{"k":"H2252","v":["חֲבַיָּה","Chăbayâh","khab-ah-yaw'","From H2247 and H3050; Jah has hidden; Chabajah, an Israelite: - Habaiah."]},{"k":"H2253","v":["חֶבְיוֹן","chebyôwn","kheb-yone'","From H2247; a concealment: - hiding."]},{"k":"H2254","v":["חָבַל","châbal","khaw-bal'","A primitive root; to wind tightly (as a rope), that is, to bind; specifically by a pledge; figuratively to pervert, destroy; also to writhe in pain (especially of parturition): -    X at all, band, bring forth, (deal) corrupt (-ly) destroy, offend, lay to (take a) pledge, spoil, travail, X very, withhold."]},{"k":"H2255","v":["חֲבַל","chăbal","khab-al'","(Chaldee); corresponding to H2254; to ruin: - destroy, hurt."]},{"k":"H2256","v":["חֶבֶל","chebel","kheh'-bel","From H2254; a rope (as twisted), especially a measuring line; by implication a district or inheritance (as measured); or a noose (as of cords); figuratively a company (as if tied together); also a throe (especially of parturition); also ruin: - band, coast, company, cord, country, destruction, line, lot, pain, pang, portion, region, rope, snare, sorrow, tackling."]},{"k":"H2257","v":["חֲבַל","chăbal","khab-al'","(Chaldee); from H2255; harm (personal or pecuniary): - damage, hurt."]},{"k":"H2258","v":["חֲבֹל","chăbôl","khab-ole'","From H2254; a pawn (as security for debt): - pledge."]},{"k":"H2259","v":["חֹבֵל","chôbêl","kho-bale'","Active participle from H2254 (in the sense of handling ropes); a sailor: - pilot, shipmaster."]},{"k":"H2260","v":["חִבֵּל","chibbêl","khib-bale'","From H2254 (in the sense of furnished with ropes); a mast: - mast."]},{"k":"H2261","v":["חֲבַצֶּלֶת","chăbatstseleth","khab-ats-tseh'-leth","Of uncertain derivation; probably meadow saffron: - rose."]},{"k":"H2262","v":["חֲבַצַּנְיָה","Chăbatstsanyâh","khab-ats-tsan-yaw'","Of uncertain derivation; Chabatstsanjah, a Rechabite: - Habazaniah."]},{"k":"H2263","v":["חָבַק","châbaq","khaw-bak'","A primitive root; to clasp (the hands or in embrace): - embrace, fold."]},{"k":"H2264","v":["חִבֻּק","chibbuq","khib-book'","From H2263; a clasping of the hands (in idleness): - fold."]},{"k":"H2265","v":["חֲבַקּוּק","Chăbaqqûwq","khab-ak-kook'","By reduplication from H2263; embrace; Chabakkuk, the prophet: - Habakkuk."]},{"k":"H2266","v":["חָבַר","châbar","khaw-bar'","A primitive root; to join (literally or figuratively); specifically (by means of spells) to fascinate: - charm (-er), be compact, couple (together), have fellowship with, heap up, join (self, together), league."]},{"k":"H2267","v":["חֶבֶר","cheber","kheh'-ber","From H2266; a society; also a spell: -  + charmer (-ing), company, enchantment, X wide."]},{"k":"H2268","v":["חֶבֶר","Cheber","kheh'-ber","The same as H2267; community; Cheber, the name of a Kenite and of three Israelites: - Heber."]},{"k":"H2269","v":["חֲבַר","chăbar","khab-ar'","(Chaldee); from a root corresponding to H2266; an associate: - companion, fellow."]},{"k":"H2270","v":["חָבֵר","châbêr","khaw-bare'","From H2266; an associate: - companion, fellow, knit together."]},{"k":"H2271","v":["חַבָּר","chabbâr","khab-bawr'","From H2266; a partner: - companion."]},{"k":"H2272","v":["חֲבַרְבֻּרָה","chăbarburâh","khab-ar-boo-raw'","By reduplication from H2266; a streak (like a line), as on the tiger: - spot."]},{"k":"H2273","v":["חַבְרָה","chabrâh","khab-raw'","(Chaldee); feminine of H2269; an associate: - other."]},{"k":"H2274","v":["חֶבְרָה","chebrâh","kheb-raw'","Feminine of H2267; association: - company."]},{"k":"H2275","v":["חֶבְרוֹן","Chebrôwn","kheb-rone'","From H2267; seat of association; Chebron, a place in Palestine, also the name of two Israelites: - Hebron."]},{"k":"H2276","v":["חֶבְרוֹנִי","Chebrôwnîy","kheb-ro-nee'","Patronymic from H2275; Chebronite (collectively), an inhabitant of Chebron: - Hebronites."]},{"k":"H2277","v":["חֶבְרִי","Chebrîy","kheb-ree'","Patronymic from H2268; a Chebrite (collectively) or descendant of Cheber: - Heberites."]},{"k":"H2278","v":["חֲבֶרֶת","chăbereth","khab-eh'-reth","Feminine of H2270; a consort: - companion."]},{"k":"H2279","v":["חֹבֶרֶת","chôbereth","kho-beh'-reth","Feminine active participle of H2266; a joint: - which coupleth, coupling."]},{"k":"H2280","v":["חָבַשׁ","châbash","khaw-bash'","A primitive root; to wrap firmly (especially a turban, compress, or saddle); figuratively to stop, to rule: - bind (up), gird about, govern, healer, put, saddle, wrap about."]},{"k":"H2281","v":["חָבֵת","châbêth","khaw-bayth'","From an unused root probably meaning to cook (compare H4227); something fried, probably a griddle cake: - pan."]},{"k":"H2282","v":["חַג","chag","khag","A festival, or a victim therefor: - (solemn) feast (day), sacrifice, solemnity."]},{"k":"H2283","v":["חָגָא","châgâʼ","khaw-gaw'","From an unused root meaning to revolve (compare H2287); properly vertigo, that is, (figuratively) fear: - terror."]},{"k":"H2284","v":["חָגָב","châgâb","khaw-gawb'","Of uncertain derivation; a locust: - locust."]},{"k":"H2285","v":["חָגָב","Châgâb","khaw-gawb'","The same as H2284; locust; Chagab, one of the Nethinim: - Hagab."]},{"k":"H2286","v":["חֲגָבָא","Chăgâbâʼ","khag-aw-baw'","Feminine of H2285; locust; Chagaba or Chagabah, one of the Nethinim: - Hagaba, Hagabah."]},{"k":"H2287","v":["חָגַג","châgag","khaw-gag'","A primitive root (compare H2283, H2328); properly to move in a circle, that is, (specifically) to march in a sacred procession, to observe a festival; by implication to be giddy: - celebrate, dance, (keep, hold) a (solemn) feast (holiday), reel to and fro."]},{"k":"H2288","v":["חֲגָו","chăgâv","khag-awv'","From an unused root meaning to take refuge; a rift in rocks: - cleft."]},{"k":"H2289","v":["חָגוֹר","châgôwr","khaw-gore'","From H2296; belted: - girded with."]},{"k":"H2290","v":["חֲגוֹר","chăgôwr","khag-ore'","From H2296; a belt (for the waist): - apron, armour, gird (-le)."]},{"k":"H2291","v":["חַגִּי","Chaggîy","khag-ghee'","From H2287; festive; Chaggi, an Israelite; also (patronymically) a Chaggite, or descendant of the same: - Haggi, Haggites."]},{"k":"H2292","v":["חַגַּי","Chaggay","khag-gah'-ee","From H2282; festive; Chaggai, a Hebrew prophet: - Haggai."]},{"k":"H2293","v":["חַגִּיָּה","Chaggîyâh","khag-ghee-yaw'","From H2282 and H3050; festival of Jah; Chaggijah, an Israelite: - Haggiah."]},{"k":"H2294","v":["חַגִּית","Chaggîyth","khag-gheeth'","Feminine of H2291; festive; Chaggith, a wife of David: - Haggith."]},{"k":"H2295","v":["חׇגְלָה","Choglâh","khog-law'","Of uncertain derivation; probably a partridge; Choglah, an Israelitess: - Hoglah. See also H1031."]},{"k":"H2296","v":["חָגַר","châgar","khaw-gar'","A primitive root; to gird on (as a belt, armor, etc.): - be able to put on, be afraid, appointed, gird, restrain, X on every side."]},{"k":"H2297","v":["חַד","chad","khad","Abridged from H259; one: - one."]},{"k":"H2298","v":["חַד","chad","khad","(Chaldee); corresponding to H2297; as cardinal one; as article single; as ordinal first; adverbially at once: - a, first, one, together."]},{"k":"H2299","v":["חַד","chad","khad","From H2300; sharp: - sharp."]},{"k":"H2300","v":["חָדַד","châdad","khaw-dad'","A primitive root; to be (causatively make) sharp or (figuratively) severe: - be fierce, sharpen."]},{"k":"H2301","v":["חֲדַד","Chădad","khad-ad'","From H2300; fierce; Chadad, an Ishmaelite: - Hadad."]},{"k":"H2302","v":["חָדָה","châdâh","khaw-daw'","A primitive root; to rejoice: - make glad, be joined, rejoice."]},{"k":"H2303","v":["חַדּוּד","chaddûwd","khad-dood'","From H2300; a point: - sharp."]},{"k":"H2304","v":["חֶדְוָה","chedvâh","khed-vaw'","From H2302; rejoicing: - gladness, joy."]},{"k":"H2305","v":["חֶדְוָה","chedvâh","khed-vaw'","(Chaldee); corresponding to H2304: - joy."]},{"k":"H2306","v":["חֲדִי","chădîy","khad-ee'","(Chaldee); corresponding to H2373; a breast: - breast."]},{"k":"H2307","v":["חָדִיד","Châdîyd","khaw-deed'","From H2300; a peak; Chadid, a place in Palestine: - Hadid."]},{"k":"H2308","v":["חָדַל","châdal","khaw-dal'","A primitive root; properly to be flabby, that is, (by implication) desist; (figuratively) be lacking or idle: - cease, end, fail, forbear, forsake, leave (off), let alone, rest, be unoccupied, want."]},{"k":"H2309","v":["חֶדֶל","chedel","kheh'-del","From H2308; rest, that is, the state of the dead: - world."]},{"k":"H2310","v":["חָדֵל","châdêl","khaw-dale'","From H2308; vacant, that is, ceasing or destitute: - he that forbeareth, frail, rejected."]},{"k":"H2311","v":["חַדְלַי","Chadlay","khad-lah'-ee","From H2309; idle; Chadlai, an Israelite: - Hadlai."]},{"k":"H2312","v":["חֵדֶק","chêdeq","khay'-dek","From an unused root meaning to sting; a prickly plant: - brier, thorn."]},{"k":"H2313","v":["חִדֶּקֶל","Chiddeqel","khid-deh'-kel","Probably of foreign origin; the Chiddekel (or Tigris) river: - Hiddekel."]},{"k":"H2314","v":["חָדַר","châdar","khaw-dar'","A primitive root; properly to inclose (as a room), that is, (by analogy) to beset (as in a siege): - enter a privy chamber."]},{"k":"H2315","v":["חֶדֶר","cheder","kheh'-der","From H2314; an apartment (usually literally): - ([bed] inner) chamber, innermost (-ward) part, parlour, + south, X within."]},{"k":"H2316","v":["חֲדַר","Chădar","khad-ar'","Another form for H2315; chamber; Chadar, an Ishmaelite: - Hadar."]},{"k":"H2317","v":["חַדְרָךְ","Chadrâk","khad-rawk'","Of uncertain derivation; Chadrak, a Syrian deity: - Hadrach."]},{"k":"H2318","v":["חָדַשׁ","châdash","khaw-dash'","A primitive root; to be new; causatively to rebuild: - renew, repair."]},{"k":"H2319","v":["חָדָשׁ","châdâsh","khaw-dawsh'","From H2318; new: - fresh, new thing."]},{"k":"H2320","v":["חֹדֶשׁ","chôdesh","kho'-desh","From H2318; the new moon; by implication a month: - month (-ly), new moon."]},{"k":"H2321","v":["חֹדֶשׁ","Chôdesh","kho'-desh","The same as H2320; Chodesh, an Israelitess: - Hodesh."]},{"k":"H2322","v":["חֲדָשָׁה","Chădâshâh","khad-aw-shaw'","Feminine of H2319; new; Chadashah, a place in Palestine: - Hadashah."]},{"k":"H2323","v":["חֲדָת","chădâth","khad-ath'","(Chaldee); corresponding to H2319; new: - new."]},{"k":"H2324","v":["חֲוָא","chăvâʼ","khav-aw'","(Chaldee); corresponding to H2331; to show: - shew."]},{"k":"H2325","v":["חוּב","chûwb","khoob","A primitive root; properly perhaps to tie, that is, (figuratively and reflexively) to owe, or (by implication) to forfeit: - make endanger."]},{"k":"H2326","v":["חוֹב","chôwb","khobe","From H2235; debt: - debtor."]},{"k":"H2327","v":["חוֹבָה","chôwbâh","kho-baw'","Feminine active participle of H2247; hiding place; Chobah, a place in Syria: - Hobah."]},{"k":"H2328","v":["חוּג","chûwg","khoog","A primitive root (compare H2287); to describe a circle: - compassive"]},{"k":"H2329","v":["חוּג","chûwg","khoog","From H2328; a circle: - circle, circuit, compassive"]},{"k":"H2330","v":["חוּד","chûwd","khood","A primitive root; properly to tie a knot, that is, (figuratively) to propound a riddle: - put forth."]},{"k":"H2331","v":["חָוָה","châvâh","khaw-vah'","A primitive root; (compare H2324, H2421); properly to live; by implication (intensively) to declare or show: - show."]},{"k":"H2332","v":["חַוָּה","Chavvâh","khav-vaw'","Causative from H2331; lifegiver; Chavvah (or Eve), the first woman: - Eve."]},{"k":"H2333","v":["חַוָּה","chavvâh","khav-vaw'","Properly the same as H2332 (lifegiving, that is, living place); by implication an encampment or village: - (small) town."]},{"k":"H2334","v":["חַוּוֹת יָעִיר","Chavvôwth Yâʻîyr","khav-vothe' yaw-eer'","From the plural of H2333 and a modification of H3265; hamlets of Jair, a region of Palestine: - [Bashan-] Havoth-jair."]},{"k":"H2335","v":["חוֹזַי","Chôwzay","kho-zah'-ee","From H2374; visionary; Chozai, an Israelite: - the seers."]},{"k":"H2336","v":["חוֹחַ","chôwach","kho'-akh","From an unused root apparently meaning to pierce; a thorn; by analogy a ring for the nose: - bramble, thistle, thorn."]},{"k":"H2337","v":["חָוָח","châvâch","khaw-vawkh'","Perhaps the same as H2336; a dell or crevice (as if pierced in the earth): - thicket."]},{"k":"H2338","v":["חוּט","chûwṭ","khoot","(Chaldee); corresponding to the root of H2339, perhaps as a denominative; to string together, that is, (figuratively) to repair: - join."]},{"k":"H2339","v":["חוּט","chûwṭ","khoot","From an unused root probably meaning to sew; a string; by implication a measuring tape: - cord, fillet, line, thread."]},{"k":"H2340","v":["חִוִּי","Chivvîy","khiv-vee'","Perhaps from H2333; a villager; a Chivvite, one of the aboriginal tribes of Palestine: - Hivite."]},{"k":"H2341","v":["חֲוִילָה","Chăvîylâh","khav-ee-law'","Probably from H2342; circular; Chavilah, the name of two or three eastern regions; also perhaps of two men: - Havilah."]},{"k":"H2342","v":["חוּל","chûwl","khool","A primitive root; properly to twist or whirl (in a circular or spiral manner), that is, (specifically) to dance, to writhe in pain (especially of parturition) or fear; figuratively to wait, to pervert: - bear, (make to) bring forth, (make to) calve, dance, drive away, fall grievously (with pain), fear, form, great, grieve, (be) grievous, hope, look, make, be in pain, be much (sore) pained, rest, shake, shapen, (be) sorrow (-ful), stay, tarry, travail (with pain), tremble, trust, wait carefully (patiently), be wounded."]},{"k":"H2343","v":["חוּל","Chûwl","khool","From H2342; a circle; Chul, a son of Aram; also the region settled by him: - Hul."]},{"k":"H2344","v":["חוֹל","chôwl","khole","From H2342; sand (as round or whirling particles): - sand."]},{"k":"H2345","v":["חוּם","chûwm","khoom","From an unused root meaning to be warm, that is, (by implication) sunburnt or swarthy (blackish): - brown."]},{"k":"H2346","v":["חוֹמָה","chôwmâh","kho-maw'","Feminine active participle of an unused root apparently meaning to join; a wall of protection: - wall, walled."]},{"k":"H2347","v":["חוּס","chûwç","khoos","A primitive root; properly to cover, that is, (figuratively) to compassionate: - pity, regard, spare."]},{"k":"H2348","v":["חוֹף","chôwph","khofe","From an unused root meaning to cover; a cove (as a sheltered bay): - coast [of the sea], haven, shore, [sea-] side."]},{"k":"H2349","v":["חוּפָם","Chûwphâm","khoo-fawm'","From the same as H2348; protection; Chupham, an Israelite: - Hupham."]},{"k":"H2350","v":["חוּפָמִי","Chûwphâmîy","khoo-faw-mee'","Patronymic from H2349; a Chuphamite or descendant of Chupham: - Huphamites."]},{"k":"H2351","v":["חוּץ","chûwts","khoots","(Both forms feminine in the plural); from an unused root meaning to sever; properly separate by a wall, that is, outside, outdoors: - abroad, field, forth, highway, more, out (-side, -ward), street, without."]},{"k":"H2352","v":["חוּר","chûwr","khoor","From an unused root probably meaning to bore; the crevice of a serpent; the cell of a prison: - hole."]},{"k":"H2353","v":["חוּר","chûwr","khoor","From H2357; white linen: - white."]},{"k":"H2354","v":["חוּר","Chûwr","khoor","The same as H2353 or H2352; Chur, the name of four Israelites and one Midianite: - Hur."]},{"k":"H2355","v":["חוֹר","chôwr","khore","The same as H2353; white linen: - network. Compare H2715."]},{"k":"H2356","v":["חוֹר","chôwr","khore","The same as H2352; a cavity, socket, den: - cave, hole."]},{"k":"H2357","v":["חָוַר","châvar","khaw-var'","A primitive root; to blanch (as with shame): - wax pale."]},{"k":"H2358","v":["חִוָּר","chivvâr","khiv-vawr'","(Chaldee); from a root corresponding to H2357; white: - white."]},{"k":"H2359","v":["חוּרִי","Chûwrîy","khoo-ree'","Probably from H2353; linen worker; Churi, an Israelite: - Huri."]},{"k":"H2360","v":["חוּרַי","Chûwray","khoo-rah'ee","Probably an orthographical variation for H2359; Churai, an Israelite: - Hurai."]},{"k":"H2361","v":["חוּרָם","Chûwrâm","khoo-rawm'","Probably from H2353; whiteness, that is, noble; Churam, the name of an Israelite and two Syrians: - Huram. Compare H2438."]},{"k":"H2362","v":["חַוְרָן","Chavrân","khav-rawn'","Apparently from H2357 (in the sense of H2352); cavernous; Chavran, a region East of the Jordan: - Hauran."]},{"k":"H2363","v":["חוּשׁ","chûwsh","koosh","A primitive root; to hurry; figuratively to be eager with excitement or enjoyment: - (make) haste (-n), ready."]},{"k":"H2364","v":["חוּשָׁה","Chûwshâh","khoo-shaw'","From H2363; haste; Chushah, an Israelite: - Hushah."]},{"k":"H2365","v":["חוּשַׁי","Chûwshay","khoo-shah'-ee","From H2363; hasty; Chushai, an Israelite: - Hushai."]},{"k":"H2366","v":["חוּשִׁים","Chûwshîym","khoo-sheem'","Plural from H2363; hasters; Chushim, the name of three Israelites: - Hushim."]},{"k":"H2367","v":["חוּשָׁם","Chûwshâm","khoo-shawm'","From H2363; hastily; Chusham, an Idumaean: - Husham."]},{"k":"H2368","v":["חוֹתָם","chôwthâm","kho-thawm'","From H2856; a signature ring: - seal, signet."]},{"k":"H2369","v":["חוֹתָם","Chôwthâm","kho-thawm'","The same as H2368; seal; Chotham, the name of two Israelites: - Hotham, Hothan."]},{"k":"H2370","v":["חֲזָא","chăzâʼ","khaz-aw'","(Chaldee); corresponding to H2372; to gaze upon; mentally to dream, be usual (that is, seem): - behold, have [a dream], see, be wont."]},{"k":"H2371","v":["חֲזָאֵל","Chăzâʼêl","khaz-aw-ale'","From H2372 and H410; God has seen; Chazael, a king of Syria: - Hazael."]},{"k":"H2372","v":["חָזָה","châzâh","khaw-zaw'","A primitive root; to gaze at; mentally to perceive, contemplate (with pleasure); specifically to have a vision of: - behold, look, prophesy, provide, see."]},{"k":"H2373","v":["חָזֶה","châzeh","khaw-zeh'","From H2372; the breast (as most seen in front): - breast."]},{"k":"H2374","v":["חֹזֶה","chôzeh","kho-zeh'","Active participle of H2372; a beholder in vision; also a compact (as looked upon with approval): - agreement, prophet, see that, seer, [star-] gazer."]},{"k":"H2375","v":["חֲזוֹ","Chăzôw","khaz-o'","From H2372; seer; Chazo, a nephew of Abraham: - Hazo."]},{"k":"H2376","v":["חֵזֵו","chêzêv","khay'-zev","(Chaldee); from H2370; a sight: - look, vision."]},{"k":"H2377","v":["חָזוֹן","châzôwn","khaw-zone'","From H2372; a sight (mentally), that is, a dream, revelation, or oracle: - vision."]},{"k":"H2378","v":["חָזוֹת","châzôwth","khaw-zooth'","From H2372; a revelation: - vision."]},{"k":"H2379","v":["חֲזוֹת","chăzôwth","khaz-oth'","(Chaldee); from H2370; a view: - sight."]},{"k":"H2380","v":["חָזוּת","châzûwth","khaw-zooth'","From H2372; a look; hence (figuratively) striking appearance, revelation or (by implication) compact: - agreement, notable (one), vision."]},{"k":"H2381","v":["חֲזִיאֵל","Chăzîyʼêl","khaz-ee-ale'","From H2371 and H410; seen of God; Chaziel, a Levite: - Haziel."]},{"k":"H2382","v":["חֲזָיָה","Chăzâyâh","khaz-aw-yaw'","From H2372 and H3050; Jah has seen; Chazajah, an Israelite: - Hazaiah."]},{"k":"H2383","v":["חֶזְיוֹן","Chezyôwn","khez-yone'","From H2372; vision; Chezjon, a Syrian: - Hezion."]},{"k":"H2384","v":["חִזָּיוֹן","chizzâyôwn","khiz-zaw-yone'","From H2372; a revelation, especially by dream: - vision."]},{"k":"H2385","v":["חֲזִיז","chăzîyz","khaw-zeez'","From an unused root meaning to glare; a flash of lightning: - bright cloud, lightning."]},{"k":"H2386","v":["חֲזִיר","chăzîyr","khaz-eer'","From an unused root probably meaning to inclose; a hog (perhaps as penned): - boar, swine."]},{"k":"H2387","v":["חֵזִיר","Chêzîyr","khay-zeer'","From the same as H2386; perhaps protected; Chezir, the name of two Israelites: - Hezir."]},{"k":"H2388","v":["חָזַק","châzaq","khaw-zak'","A primitive root; to fasten upon; hence to seize, be strong (figuratively courageous, causatively strengthen, cure, help, repair, fortify), obstinate; to bind, restrain, conquer: - aid, amend, X calker, catch, cleave, confirm, be constant, constrain, continue, be of good (take) courage (-ous, -ly), encourage (self), be established, fasten, force, fortify, make hard, harden, help, (lay) hold (fast), lean, maintain, play the man, mend, become (wax) mighty, prevail, be recovered, repair, retain, seize, be (wax) sore, strengten (self), be stout, be (make, shew, wax) strong (-er), be sure, take (hold), be urgent, behave self valiantly, withstand."]},{"k":"H2389","v":["חָזָק","châzâq","khaw-zawk'","From H2388; strong (usually in a bad sense, hard, bold, violent): - harder, hottest, + impudent, loud, mighty, sore, stiff [-hearted], strong (-er)."]},{"k":"H2390","v":["חָזֵק","châzêq","khaw-zake'","From H2388; powerful: -  X wax louder- stronger."]},{"k":"H2391","v":["חֵזֶק","chêzeq","khay'-zek","From H2388; help: - strength."]},{"k":"H2392","v":["חֹזֶק","chôzeq","kho'-zek","From H2388; power: - strength."]},{"k":"H2393","v":["חֶזְקָה","chezqâh","khez-kaw'","Feminine of H2391; prevailing power: - strength (-en self), (was) strong."]},{"k":"H2394","v":["חׇזְקָה","chozqâh","khoz-kaw'","Feminine of H2392; vehemence (usually in a bad sense): - force, mightily, repair, sharply."]},{"k":"H2395","v":["חִזְקִי","Chizqîy","khiz-kee'","From H2388; strong; Chizki, an Israelite: - Hezeki."]},{"k":"H2396","v":["חִזְקִיָּה","Chizqîyâh","khiz-kee-yaw'","From H2388 and H3050; strengthened of Jah; Chizkijah, a king of Judah, also the name of two other Israelites: - Hezekiah, Hizkiah, Hizkijah. Compare H3169."]},{"k":"H2397","v":["חָח","châch","khawkh","From the same as H2336; a ring for the nose (or lips): - bracelet, chain, hook."]},{"k":"H2398","v":["חָטָא","châṭâʼ","khaw-taw'","A primitive root; properly to miss; hence (figuratively and generally) to sin; by inference to forfeit, lack, expiate, repent, (causatively) lead astray, condemn: - bear the blame, cleanse, commit [sin], by fault, harm he hath done, loss, miss, (make) offend (-er), offer for sin, purge, purify (self), make reconciliation, (cause, make) sin (-ful, -ness), trespassive"]},{"k":"H2399","v":["חֵטְא","chêṭᵉʼ","khate","From H2398; a crime or its penalty: - fault, X grievously, offence, (punishment of) sin."]},{"k":"H2400","v":["חַטָּא","chaṭṭâʼ","khat-taw'","Intensive from H2398; a criminal, or one accounted guilty: - offender, sinful, sinner."]},{"k":"H2401","v":["חֲטָאָה","chăṭâʼâh","khat-aw-aw'","Feminine of H2399; an offence, or a sacrifice for it: - sin (offering), sinful."]},{"k":"H2402","v":["חַטָּאָה","chaṭṭâʼâh","khat-taw-aw'","(Chaldee); corresponding to H2401; an offence, and the penalty or sacrifice for it: - sin (offering)."]},{"k":"H2403","v":["חַטָּאָה","chaṭṭâʼâh","khat-taw-aw'","From H2398; an offence (sometimes habitual sinfulness), and its penalty, occasion, sacrifice, or expiation; also (concretely) an offender: - punishment (of sin), purifying (-fication for sin), sin (-ner, offering)."]},{"k":"H2404","v":["חָטַב","châṭab","khaw-tab'","A primitive root; to chop or carve wood: - cut down, hew (-er), polish."]},{"k":"H2405","v":["חֲטֻבָה","chăṭubâh","khat-oo-baw'","Feminine passive participle of H2404; properly a carving; hence a tapestry (as figured): - carved."]},{"k":"H2406","v":["חִטָּה","chiṭṭâh","khit-taw'","Of uncertain derivation; wheat, whether the grain or the plant: - wheat (-en)."]},{"k":"H2407","v":["חַטּוּשׁ","Chaṭṭûwsh","khat-toosh'","From an unused root of uncertain signification; Chattush, the name of four or five Israelites: - Hattush."]},{"k":"H2408","v":["חֲטִי","chăṭîy","khat-ee'","(Chaldee); from a root corresponding to H2398; an offence: - sin."]},{"k":"H2409","v":["חֲטָּיָא","chăṭṭâyâʼ","khat-taw-yaw'","(Chaldee); from the same as H2408; an expiation: - sin offering."]},{"k":"H2410","v":["חֲטִיטָא","Chăṭîyṭâʼ","khat-ee-taw'","From an unused root apparently meaning to dig out; explorer; Chatita, a temple porter: - Hatita."]},{"k":"H2411","v":["חַטִּיל","Chaṭṭîyl","khat-teel'","From an unused root apparently meaning to wave; fluctuating; Chattil, one of Solomon’s servants: - Hattil."]},{"k":"H2412","v":["חֲטִיפָא","Chăṭîyphâʼ","khat-ee-faw'","From H2414; robber; Chatipha, one of the Nethinim: - Hatipha."]},{"k":"H2413","v":["חָטַם","châṭam","khaw-tam'","A primitive root; to stop: - refrain."]},{"k":"H2414","v":["חָטַף","châṭaph","khaw-taf'","A primitive root; to clutch; hence to seize as a prisoner: - catch."]},{"k":"H2415","v":["חֹטֵר","chôṭêr","kho'-ter","From an unused root of uncertain signification; a twig: - rod."]},{"k":"H2416","v":["חַי","chay","khah'-ee","From H2421; alive; hence raw (flesh); fresh (plant, water, year), strong; also (as noun, especially in the feminine singular and masculine plural) life (or living thing), whether literally or figuratively: -    + age, alive, appetite, (wild) beast, company, congregation, life (-time), live (-ly), living (creature, thing), maintenance, + merry, multitude, + (be) old, quick, raw, running, springing, troop."]},{"k":"H2417","v":["חַי","chay","khah'-ee","(Chaldee); from H2418; alive; also (as noun in plural) life: - life, that liveth, living."]},{"k":"H2418","v":["חֲיָא","chăyâʼ","khah-yaw'","(Chaldee); corresponding to H2421; to live: - live, keep alive."]},{"k":"H2419","v":["חִיאֵל","Chîyʼêl","khee-ale'","From H2416 and H410; living of God; Chiel, an Israelite: - Hiel."]},{"k":"H2420","v":["חִידָה","chîydâh","khee-daw'","From H2330; a puzzle; hence a trick, conundrum, sententious maxim: - dark saying (sentence, speech), hard question, proverb, riddle."]},{"k":"H2421","v":["חָיָה","châyâh","khaw-yaw'","A prim root (compare H2331, H2424); to live, whether literally or figuratively; causatively to revive: - keep (leave, make) alive, X certainly, give (promise) life, (let, suffer to) live, nourish up, preserve (alive), quicken, recover, repair, restore (to life), revive, (X God) save (alive, life, lives), X surely, be whole."]},{"k":"H2422","v":["חָיֶה","châyeh","khaw-yeh'","From H2421; vigorous: - lively."]},{"k":"H2423","v":["חֵיוָא","chêyvâʼ","khay-vaw'","(Chaldee); from H2418; an animal: - beast."]},{"k":"H2424","v":["חַיּוּת","chayûwth","khah-yooth'","From H2421; life: -  X living."]},{"k":"H2425","v":["חָיַי","châyay","khaw-yah'-ee","A primitive root (compare H2421); to live; causatively to revive: - live, save life."]},{"k":"H2426","v":["חֵיל","chêyl","khale","A collateral form of H2428; an army; also (by analogy) an intrenchment: - army, bulwark, host, + poor, rampart, trench, wall."]},{"k":"H2427","v":["חִיל","chîyl","kheel","From H2342; a throe (especially of childbirth): - pain, pang, sorrow."]},{"k":"H2428","v":["חַיִל","chayil","khah'-yil","From H2342; probably a force, whether of men, means or other resources; an army, wealth, virtue, valor, strength: - able, activity, (+) army, band of men (soldiers), company, (great) forces, goods, host, might, power, riches, strength, strong, substance, train, (+) valiant (-ly), valour, virtuous (-ly), war, worthy (-ily)."]},{"k":"H2429","v":["חַיִל","chayil","khah'-yil","(Chaldee); corresponding to H2428; an army, or strength: - aloud, army, X most [mighty], power."]},{"k":"H2430","v":["חֵילָה","chêylâh","khay-law'","Feminine of H2428; an intrenchment: - bulwark."]},{"k":"H2431","v":["חֵילָם","Chêylâm","khay-lawm'","From H2428; fortress; Chelam, a place East of Palestine: - Helam."]},{"k":"H2432","v":["חִילֵן","Chîylên","khee-lane'","From H2428; fortress; Chilen, a place in Palestine: - Hilen."]},{"k":"H2433","v":["חִין","chîyn","kheen","Another form of H2580; beauty: - comely."]},{"k":"H2434","v":["חַיִץ","chayits","khah'-yits","Another form for H2351; a wall: - wall."]},{"k":"H2435","v":["חִיצוֹן","chîytsôwn","khee-tsone'","From H2434; properly the (outer) wall side; hence exterior; figuratively secular (as opposed to sacred): - outer, outward, utter, without."]},{"k":"H2436","v":["חֵיק","chêyq","khake","From an unused root, apparently meaning to inclose; the bosom (literally or figuratively): - bosom, bottom, lap, midst, within."]},{"k":"H2437","v":["חִירָה","Chîyrâh","khee-raw'","From H2357 in the sense of splendor; Chirah, an Adullamite: - Hirah."]},{"k":"H2438","v":["חִירָם","Chîyrâm","khee-rawm'","Another form of H2361; Chiram or Chirom, the name of two Tyrians: - Hiram, Huram."]},{"k":"H2439","v":["חִישׁ","chîysh","kheesh","Another form of H2363; to hurry: - make haste."]},{"k":"H2440","v":["חִישׁ","chîysh","kheesh","From H2439; properly a hurry; hence (adverbially) quickly: - soon."]},{"k":"H2441","v":["חֵךְ","chêk","khake","Probably from H2496 in the sense of tasting; properly the palate or inside of the mouth; hence the mouth itself (as the organ of speech, taste and kissing): - (roof of the) mouth, taste."]},{"k":"H2442","v":["חָכָה","châkâh","khaw-kaw'","A primitive root (apparently akin to H2707 through the idea of piercing); properly to adhere to; hence to await: - long, tarry, wait."]},{"k":"H2443","v":["חַכָּה","chakkâh","khak-kaw'","Probably from H2442; a hook (as adhering): - angle, hook."]},{"k":"H2444","v":["חֲכִילָה","Chăkîylâh","khak-ee-law'","From the same as H2447; dark; Chakilah, a hill in Palestine: - Hachilah."]},{"k":"H2445","v":["חַכִּים","chakkîym","khak-keem'","(Chaldee); from a root corresponding to H2449; wise, that is, a Magian: - wise."]},{"k":"H2446","v":["חֲכַלְיָה","Chăkalyâh","khak-al-yaw'","From the base of H2447 and H3050; darkness of Jah; Chakaljah, an Israelite: - Hachaliah."]},{"k":"H2447","v":["חַכְלִיל","chaklîyl","khak-leel'","By reduplication from an unused root apparently meaning to be dark; darkly flashing (only of the eyes); in a good sense, brilliant (as stimulated by wine): - red."]},{"k":"H2448","v":["חַכְלִלוּת","chaklilûwth","khak-lee-looth'","From H2447; flash (of the eyes); in a bad sense, blearedness: - redness."]},{"k":"H2449","v":["חָכַם","châkam","khaw-kam'","A primitive root, to be wise (in mind, word or act): -    X exceeding, teach wisdom, be (make self, shew self) wise, deal (never so) wisely, make wiser."]},{"k":"H2450","v":["חָכָם","châkâm","khaw-kawm'","From H2449; wise, (that is, intelligent, skilful or artful): - cunning (man), subtil, ([un-]), wise ([hearted], man)."]},{"k":"H2451","v":["חׇכְמָה","chokmâh","khok-maw'","From H2449; wisdom (in a good sense): - skillful, wisdom, wisely, wit."]},{"k":"H2452","v":["חׇכְמָה","chokmâh","khok-maw'","(Chaldee); corresponding to H2451; wisdom: - wisdom."]},{"k":"H2453","v":["חַכְמוֹנִי","Chakmôwnîy","khak-mo-nee'","From H2449; skilful; Chakmoni, an Israelite: - Hachmoni, Hachmonite."]},{"k":"H2454","v":["חׇכְמוֹת","chokmôwth","khok-moth'","Collateral forms of H2451; wisdom: - wisdom, every wise [woman]."]},{"k":"H2455","v":["חֹל","chôl","khole","From H2490; properly exposed; hence profane: - common, profane (place), unholy."]},{"k":"H2456","v":["חָלָא","châlâʼ","khaw-law'","A primitive root (compare H2470); to be sick: - be diseased."]},{"k":"H2457","v":["חֶלְאָה","chelʼâh","khel-aw'","From H2456; properly disease; hence rust: - scum."]},{"k":"H2458","v":["חֶלְאָה","Chelʼâh","khel-aw'","The same as H2457; Chelah, an Israelitess: - Helah."]},{"k":"H2459","v":["חֶלֶב","cheleb","kheh'-leb","From an unused root meaning to be fat; fat, whether literally or figuratively; hence the richest or choice part: -    X best, fat (-ness), X finest, grease, marrow."]},{"k":"H2460","v":["חֵלֶב","Chêleb","khay'-leb","The same as H2459; fatness; Cheleb, an Israelite: - Heleb."]},{"k":"H2461","v":["חָלָב","châlâb","khaw-lawb'","From the same as H2459; milk (as the richness of kine): -    + cheese, milk, sucking,"]},{"k":"H2462","v":["חֶלְבָּה","Chelbâh","khel-baw'","Feminine of H2459; fertility: Chelbah, a place in Palestine: - Helbah."]},{"k":"H2463","v":["חֶלְבּוֹן","Chelbôwn","khel-bone'","From H2459; fruitful; Chelbon, a place in Syria: - Helbon."]},{"k":"H2464","v":["חֶלְבְּנָה","chelbᵉnâh","khel-ben-aw'","From H2459; galbanam, an odorous gum (as if fatty): - galbanum."]},{"k":"H2465","v":["חֶלֶד","cheled","kheh'-led","From an unused root apparently meaning to glide swiftly; life (as a fleeting portion of time); hence the world (as transient): - age, short time, world."]},{"k":"H2466","v":["חֵלֶד","chêled","khay'-led","The same as H2465; cheled, an Israelite: - Heled."]},{"k":"H2467","v":["חֹלֶד","chôled","kho'-led","From the same as H2465; a weasel (from its gliding motion): - weasel."]},{"k":"H2468","v":["חֻלְדָּה","Chuldâh","khool-daw'","Feminine of H2467; Chuldah, an Israelitess: - Huldah."]},{"k":"H2469","v":["חֶלְדַּי","Chelday","khel-dah'-ee","From H2466; worldliness; Cheldai, the name of two Israelites: - Heldai."]},{"k":"H2470","v":["חָלָה","châlâh","khaw-law'","A primitive root (compare H2342, H2490); properly to be rubbed or worn; hence (figuratively) to be weak, sick, afflicted; or (causatively) to grieve, make sick; also to stroke (in flattering), entreat: - beseech, (be) diseased, (put to) grief, be grieved, (be) grievous, infirmity, intreat, lay to, put to pain, X pray, make prayer, be (fall, make) sick, sore, be sorry, make suit (X supplication), woman in travail, be (become) weak, be wounded."]},{"k":"H2471","v":["חַלָּה","challâh","khal-law'","From H2490; a cake (as usually punctured): - cake."]},{"k":"H2472","v":["חֲלוֹם","chălôwm","khal-ome'","From H2492; a dream: - dream (-er)."]},{"k":"H2473","v":["חֹלוֹן","Chôlôwn","kho-lone'","Probably from H2344; sandy; Cholon, the name of two places in Palestine: - Holon."]},{"k":"H2474","v":["חַלּוֹן","challôwn","khal-lone'","A window (as perforated): - window."]},{"k":"H2475","v":["חֲלוֹף","chălôwph","khal-ofe'","From H2498; properly surviving; by implication (collectively) orphans: -  X destruction."]},{"k":"H2476","v":["חֲלוּשָׁה","chălûwshâh","khal-oo-shaw'","Feminine passive participle of H2522; defeat: - being overcome."]},{"k":"H2477","v":["חֲלַח","Chălach","khal-akh'","Probably of foreign origin; Chalach, a region of Assyria: - Halah."]},{"k":"H2478","v":["חַלְחוּל","Chalchûwl","khal-khool'","By reduplication from H2342; contorted; Chalchul, a place in Palestine: - Halhul."]},{"k":"H2479","v":["חַלְחָלָה","chalchâlâh","khal-khaw-law'","Feminine from the same as H2478; writhing (in childbirth); by implication terror: - (great, much) pain."]},{"k":"H2480","v":["חָלַט","châlaṭ","khaw-lat'","A primitive root; to snatch at: - catch."]},{"k":"H2481","v":["חֲלִי","chălîy","khal-ee'","From H2470; a trinket (as polished): - jewel, ornament."]},{"k":"H2482","v":["חֲלִי","Chălîy","khal-ee'","The same as H2481; Chali, a place in Palestine: - Hali."]},{"k":"H2483","v":["חֳלִי","chŏlîy","khol-ee'","From H2470; malady, anxiety, calamity: - disease, grief, (is) sick (-ness)."]},{"k":"H2484","v":["חֶלְיָה","chelyâh","khel-yaw'","Feminine of H2481; a trinket: - jewel."]},{"k":"H2485","v":["חָלִיל","châlîyl","khaw-leel'","From H2490; a flute (as perforated): - pipe."]},{"k":"H2486","v":["חָלִילָה","châlîylâh","khaw-lee'-law","A directive from H2490; literally for a profaned thing; used (interjectionally) far be it!: - be far, (X God) forbid."]},{"k":"H2487","v":["חֲלִיפָה","chălîyphâh","khal-ee-faw'","From H2498; alternation: - change, course."]},{"k":"H2488","v":["חֲלִיצָה","chălîytsâh","khal-ee-tsaw'","From H2503; spoil: - armour."]},{"k":"H2489","v":["חֵלְכָא","chêlᵉkâʼ","khay-lek-aw'","Apparently from an unused root probably meaning to be dark or (figuratively) unhappy; a wretch, that is, unfortunate: - poor."]},{"k":"H2490","v":["חָלַל","châlal","khaw-lal'","A primitive root (compare H2470); properly to bore, that is, (by implication) to wound, to dissolve; figuratively to profane (a person, place or thing), to break (one’s word), to begin (as if by an opening-wedge); denominatively (from H2485) to play (the flute): - begin (X men began), defile, X break, defile, X eat (as common things), X first, X gather the grape thereof, X take inheritance, pipe, player on instruments, pollute, (cast as) profane (self), prostitute, slay (slain), sorrow, stain, wound."]},{"k":"H2491","v":["חָלָל","châlâl","khaw-lawl'","From H2490; pierced (especially to death); figuratively polluted: - kill, profane, slain (man), X slew, (deadly) wounded."]},{"k":"H2492","v":["חָלַם","châlam","khaw-lam'","A primitive root; properly to bind firmly, that is, (by implication) to be (causatively to make) plump; also (through the figurative sense of dumbness) to dream: - (cause to) dream (-er), be in good liking, recover."]},{"k":"H2493","v":["חֵלֶם","chêlem","khay'-lem","(Chaldee); from a root corresponding to H2492; a dream: - dream."]},{"k":"H2494","v":["חֵלֶם","Chêlem","khay'lem","From H2492; a dream; Chelem, an Israelite: - Helem. Compare H2469."]},{"k":"H2495","v":["חַלָּמוּת","challâmûwth","khal-law-mooth'","From H2492 (in the sense of insipidity); probably purslain: - egg."]},{"k":"H2496","v":["חַלָּמִישׁ","challâmîysh","klal-law-meesh'","Probably from H2492 (in the sense of hardness); flint: - flint (-y), rock."]},{"k":"H2497","v":["חֵלֹן","Chêlôn","khay-lone'","From H2428; strong; Chelon, an Israelite: - Helon"]},{"k":"H2498","v":["חָלַף","châlaph","khaw-laf'","A primitive root; properly to slide by, that is, (by implication) to hasten away, pass on, spring up, pierce or change: - abolish, alter change, cut off, go on forward, grow up, be over, pass (away, on, through), renew, sprout, strike through."]},{"k":"H2499","v":["חֲלַף","chălaph","khal-af'","(Chaldee); corresponding to H2498; to pass on (of time): - pass."]},{"k":"H2500","v":["חֵלֶף","chêleph","klay'-lef","From H2498; properly exchange; hence (as preposition) instead of: -    X for."]},{"k":"H2501","v":["חֶלֶף","Cheleph","kheh'lef","The same as H2500; change; Cheleph, a place in Palestine: - Heleph."]},{"k":"H2502","v":["חָלַץ","châlats","khaw-lats'","A primitive root; to pull off; hence (intensively) to strip, (reflexively) to depart; by implication to deliver, equip (for fight); present, strengthen: - arm (self), (go, ready) armed (X man, soldier), deliver, draw out, make fat, loose, (ready) prepared, put off, take away, withdraw self."]},{"k":"H2503","v":["חֶלֶץ","Chelets","kheh'-lets","From H2502; perhaps strength; Chelets, the name of two Israelites: - Helez."]},{"k":"H2504","v":["חָלָץ","châlâts","khaw-lawts'","From H2502 (in the sense of strength); only in the dual; the loins (as the seat of vigor): - loins, reins."]},{"k":"H2505","v":["חָלַק","châlaq","khaw-lak'","A primitive root; to be smooth (figuratively); by implication (as smooth stones were used for lots) to apportion or separate: - deal, distribute, divide, flatter, give, (have, im-) part (-ner), take away a portion, receive, separate self, (be) smooth (-er)."]},{"k":"H2506","v":["חֵלֶק","chêleq","khay'lek","From H2505; properly smoothness (of the tongue); also an allotment: - flattery, inheritance, part, X partake, portion."]},{"k":"H2507","v":["חֵלֶק","Chêleq","khay'-lek","The same as H2506; portion; Chelek, an Israelite: - Helek."]},{"k":"H2508","v":["חֲלָק","chălâq","khal-awk'","(Chaldee); from a root corresponding to H2505; a part: - portion."]},{"k":"H2509","v":["חָלָק","châlâq","khaw-lawk'","From H2505; smooth (especially of tongue): - flattering, smooth."]},{"k":"H2510","v":["חָלָק","Châlâq","khaw-lawk'","The same as H2500; bare; Chalak, a mountain of Idumaea: -    Halak."]},{"k":"H2511","v":["חַלָּק","challâq","khal-lawk'","From H2505; smooth: - smooth."]},{"k":"H2512","v":["חַלֻּק","challuq","khal-look'","From H2505; smooth: - smooth."]},{"k":"H2513","v":["חֶלְקָה","chelqâh","khel-kaw'","Feminine of H2506; properly smoothness; figuratively flattery; also an allotment: - field, flattering (-ry), ground, parcel, part, piece of land ([ground]), plat, portion, slippery place, smooth (thing)."]},{"k":"H2514","v":["חֲלַקָּה","chălaqqâh","khal-ak-kaw'","Feminine from H2505; flattery: - flattery."]},{"k":"H2515","v":["חֲלֻקָּה","chăluqqâh","khal-ook-kaw'","Feminine of H2512; a distribution: - division."]},{"k":"H2516","v":["חֶלְקִי","Chelqîy","khel-kee'","Patronymic from H2507; a Chelkite or descendant of Chelek: - Helkites."]},{"k":"H2517","v":["חֶלְקַי","Chelqay","khel-kah'ee","From H2505; apportioned; Chelkai, an Israelite: - Helkai."]},{"k":"H2518","v":["חִלְקִיָּה","Chilqîyâh","khil-kee-yaw'","From H2506 and H3050; portion of Jah; Chilhijah, the name of eight Israelites: - Hilkiah."]},{"k":"H2519","v":["חֲלַקְלַקָּה","chălaqlaqqâh","khal-ak-lak-kaw'","By reduplication from H2505; properly something very smooth; that is, a treacherous spot; figuratively blandishment: - flattery, slippery."]},{"k":"H2520","v":["חֶלְקַת","Chelqath","khel-kath'","A form of H2513; smoothness; Chelkath, a place in Palestine: - Helkath."]},{"k":"H2521","v":["חֶלְקַת הַצֻּרִים","Chelqath hats-Tsurîym","khel-kath' hatstsoo-reem'","From H2520 and the plural of H6697; with the article inserted; smoothness of the rocks; Chelkath Hatstsurim, a place in Palestine: - Helkath-hazzurim."]},{"k":"H2522","v":["חָלַשׁ","châlash","khaw-lash'","A primitive root; to prostrate; by implication to overthrow, decay: - discomfit, waste away, weaken."]},{"k":"H2523","v":["חַלָּשׁ","challâsh","khal-lawsh'","From H2322; frail: - weak."]},{"k":"H2524","v":["חָם","châm","khawm","From the same as H2346; a father in law (as in affinity): - father in law."]},{"k":"H2525","v":["חָם","châm","khawm","From H2552; hot: - hot, warm."]},{"k":"H2526","v":["חָם","Châm","khawm","The same as H2525; hot (from the tropical habitat); Cham, a son of Noah; also (as a patronymic) his descendants or their country: - Ham."]},{"k":"H2527","v":["חֹם","chôm","khome","From H2552; heat: - heat, to be hot (warm)."]},{"k":"H2528","v":["חֱמָא","chĕmâʼ","khem-aw'","(Chaldee); corresponding to H2534; anger: - fury."]},{"k":"H2529","v":["חֶמְאָה","chemʼâh","khem-aw'","From the same root as H2346; curdled milk or cheese: - butter."]},{"k":"H2530","v":["חָמַד","châmad","khaw-mad'","A primitive root; to delight in: - beauty, greatly beloved, covet, delectable thing, ( X great) delight, desire, goodly, lust, (be) pleasant (thing), precious (thing)."]},{"k":"H2531","v":["חֶמֶד","chemed","kheh'-med","A primitive root; to delight in: - desirable, pleasant."]},{"k":"H2532","v":["חֶמְדָּה","chemdâh","khem-daw'","Feminine of H2531; delight: - desire, goodly, pleasant, precious."]},{"k":"H2533","v":["חֶמְדָּן","Chemdân","khem-dawn'","From H2531; pleasant; Chemdan, an Idumaean: - Hemdan."]},{"k":"H2534","v":["חֵמָה","chêmâh","khay-maw'","From H3179; heat; figuratively anger, poison (from its fever): - anger, bottles, hot displeasure, furious (-ly, -ry), heat, indignation, poison, rage, wrath (-ful). See H2529."]},{"k":"H2535","v":["חַמָּה","chammâh","kham-maw'","From H2525; heat; by implication the sun: - heat, sun."]},{"k":"H2536","v":["חַמּוּאֵל","Chammûwʼêl","kham-moo-ale'","From H2535 and H410; anger of God; Chammuel, an Israelite: - Hamuel."]},{"k":"H2537","v":["חֲמוּטַל","Chămûwṭal","kham-oo-tal'","From H2524 and H2919; father in law of dew; Chamutal or Chamital, an Israelitess: - Hamutal."]},{"k":"H2538","v":["חָמוּל","Châmûwl","khaw-mool'","From H2550; pitied; Chamul, an Israelite: - Hamul."]},{"k":"H2539","v":["חָמוּלִי","Châmûwlîy","khaw-moo-lee'","Patronymic from H2538; a Chamulite (collectively) or descendant of Chamul: - Hamulites."]},{"k":"H2540","v":["חַמּוֹן","Chammôwn","kham-mone'","From H2552; warm spring; Chammon, the name of two places in Palestine: - Hammon."]},{"k":"H2541","v":["חָמוֹץ","châmôwts","khaw-motse'","From H2556; properly violent; by implication a robber: - oppressed."]},{"k":"H2542","v":["חַמּוּק","chammûwq","kham-mook'","From H2559; a wrapping, that is, drawers: - joints."]},{"k":"H2543","v":["חֲמוֹר","chămôwr","kham-ore'","From H2560; a male ass (from its dun red): - (he) ass."]},{"k":"H2544","v":["חֲמוֹר","Chămôwr","kham-ore'","The same as H2543; ass; Chamor, a Canaanite: - Hamor."]},{"k":"H2545","v":["חֲמוֹת","chămôwth","kham-oth'","Feminine of H2524; a mother in law: - mother in law."]},{"k":"H2546","v":["חֹמֶט","chômeṭ","kho'met","From an unused root probably meaning to lie low; a lizard (as creeping): - snail."]},{"k":"H2547","v":["חֻמְטָה","Chumṭâh","khoom-taw'","Feminine of H2546; low; Chumtah, a place in Palestine: - Humtah."]},{"k":"H2548","v":["חָמִיץ","châmîyts","khaw-meets'","From H2556; seasoned, that is, salt provender: - clean."]},{"k":"H2549","v":["חֲמִישִׁי","chămîyshîy","kham-ee-shee'","Ordinal from H2568; fifth; also a fifth: - fifth (part)."]},{"k":"H2550","v":["חָמַל","châmal","khaw-mal'","A primitive root; to commiserate; by implication to spare: - have compassion, (have) pity, spare."]},{"k":"H2551","v":["חֶמְלָה","chemlâh","khem-law'","From H2550; commiseration: - merciful, pity."]},{"k":"H2552","v":["חָמַם","châmam","khaw-mam'","A primitive root; to be hot (literally or figuratively): - enflame self, get (have) heat, be (wax) hot, (be, wax) warm (self, at)."]},{"k":"H2553","v":["חַמָּן","chammân","kham-mawn'","From H2535; a sun pillar: - idol, image."]},{"k":"H2554","v":["חָמַס","châmaç","khaw-mas'","A primitive root; to be violent; by implication to maltreat: - make bare, shake off, violate, do violence, take away violently, wrong, imagine wrongfully."]},{"k":"H2555","v":["חָמָס","châmâç","khaw-mawce'","From H2554; violence; by implication wrong; by metonymy unjust gain: - cruel (-ty), damage, false, injustice, X oppressor, unrighteous, violence (against, done), violent (dealing), wrong."]},{"k":"H2556","v":["חָמֵץ","châmêts","khaw-mates'","A primitive root; to be pungent; that is, in taste (sour, that is, literally fermented, or figuratively harsh), in color (dazzling): - cruel (man), dyed, be grieved, leavened."]},{"k":"H2557","v":["חָמֵץ","châmêts","khaw-mates'","From H2556; ferment, (figuratively) extortion: - leaven, leavened (bread)."]},{"k":"H2558","v":["חֹמֶץ","chômets","kho'-mets","From H2566; vinegar: - vinegar."]},{"k":"H2559","v":["חָמַק","châmaq","khaw-mak'","A primitive root; properly to enwrap; hence to depart (that is, turn about): - go about, withdraw self."]},{"k":"H2560","v":["חָמַר","châmar","khaw-mar'","A primitive root; properly to boil up; hence to ferment (with scum); to glow (with redness); as denominative (from H2564) to smear with pitch: - daub, foul, be red, trouble."]},{"k":"H2561","v":["חֶמֶר","chemer","kheh'-mer","From H2560; wine (as fermenting): -    X pure, red wine."]},{"k":"H2562","v":["חֲמַר","chămar","kham-ar'","(Chaldee); corresponding to H2561; wine: - wine."]},{"k":"H2563","v":["חֹמֶר","chômer","kho'mer","From H2560; properly a bubbling up, that is, of water, a wave; of earth, mire or clay (cement); also a heap; hence a chomer or dry measure: - clay, heap, homer, mire, motion, mortar."]},{"k":"H2564","v":["חֵמָר","chêmâr","khay-mawr'","From H2560; bitumen (as rising to the surface): - slime (-pit)."]},{"k":"H2565","v":["חֲמֹרָה","chămôrâh","kham-o-raw'","From H2560 (compare H2563); a heap: - heap."]},{"k":"H2566","v":["חַמְרָן","Chamrân","kham-rawn'","From H2560; red; Chamran, an Idumaean: - Amran."]},{"k":"H2567","v":["חָמַשׁ","châmash","khaw-mash'","A denominative from H2568; to tax a fifth: - take up the fifth part."]},{"k":"H2568","v":["חָמֵשׁ","châmêsh","khaw-maysh'","A primitive numeral; five: - fif [-teen], fifth, five (X apiece)."]},{"k":"H2569","v":["חֹמֶשׁ","chômesh","kho'-mesh","From H2567; a fifth tax: - fifth part."]},{"k":"H2570","v":["חֹמֶשׁ","chômesh","kho'-mesh","From an unused root probably meaning to be stout; the abdomen (as obese): - fifth [rib]."]},{"k":"H2571","v":["חָמֻשׁ","châmush","khaw-moosh'","Passive participle of the same as H2570; staunch, that is, able bodied soldiers: - armed (men), harnessed."]},{"k":"H2572","v":["חֲמִשִּׁים","chămishshîym","kham-ish-sheem'","Multiple of H2568; fifty: - fifty."]},{"k":"H2573","v":["חֵמֶת","chêmeth","klay'-meth","From the same as H2346; a skin bottle (as tied up): - bottle."]},{"k":"H2574","v":["חֲמָת","Chămâth","kham-awth'","From the same as H2346; walled; Chamath, a place in Syria: - Hamath, Hemath."]},{"k":"H2575","v":["חַמַּת","Chammath","klam-math'","A variation for the first part of H2576; hot springs; Chammath, a place in Palestine: - Hammath."]},{"k":"H2576","v":["חַמֹּת דֹּאר","Chammôth Dôʼr","kham-moth' dore","From the plural of H2535 and H1756; hot springs of Dor; Chammath Dor, a place in Palestine: - Hamath-Dor."]},{"k":"H2577","v":["חֲמָתִי","Chămâthîy","kham-aw-thee'","Patrial from H2574; a Chamathite or native of Chamath: - Hamathite."]},{"k":"H2578","v":["חֲמַת צוֹבָה","Chămath Tsôwbâh","kham-ath' tso-baw'","From H2574 and H6678; Chamath of Tsobah; Chamath Tsobah; probably the same as H2574: - Hamath-Zobah."]},{"k":"H2579","v":["חֲמַת רַבָּה","Chămath Rabbâh","kham-ath' rab-baw'","From H2574 and H7237; Chamath of Rabbah; Chamath Rabbah, probably the same as H2574."]},{"k":"H2580","v":["חֵן","chên","khane","From H2603; graciousness, that is, subjectively (kindness, favor) or objectively (beauty): - favour, grace (-ious), pleasant, precious, [well-] favoured."]},{"k":"H2581","v":["חֵן","Chên","khane","The same as H2580; grace; Chen, a figurative name for an Israelite: - Hen."]},{"k":"H2582","v":["חֵנָדָד","Chênâdâd","khay-naw-dawd'","Probably from H2580 and H1908; favor of Hadad; Chenadad, an Israelite: - Henadad."]},{"k":"H2583","v":["חָנָה","chânâh","khaw-naw'","A primitive root (compare H2603); properly to incline; by implication to decline (of the slanting rays of evening); specifically to pitch a tent; generally to encamp (for abode or siege): - abide (in tents), camp, dwell, encamp, grow to an end, lie, pitch (tent), rest in tent."]},{"k":"H2584","v":["חַנָּה","Channâh","khan-naw'","From H2603; favored; Channah, an Israelitess: - Hannah."]},{"k":"H2585","v":["חֲנוֹךְ","Chănôwk","khan-oke'","From H2596; initiated; Chanok, an antediluvian patriarch: - Enoch."]},{"k":"H2586","v":["חָנוּן","Chânûwn","khaw-noon'","From H2603; favored; Chanun, the name of an Ammonite and of two Israelites: - Hanun."]},{"k":"H2587","v":["חַנּוּן","channûwn","khan-noon'","From H2603; gracious: - gracious."]},{"k":"H2588","v":["חָנוּת","chânûwth","khaw-nooth'","From H2583; properly a vault or cell (with an arch); by implication a prison: - cabin."]},{"k":"H2589","v":["חַנּוֹת","channôwth","klan-noth'","From H2603 (in the sense of prayer); supplication: - be gracious, intreated."]},{"k":"H2590","v":["חָנַט","chânaṭ","khaw-nat'","A primitive root; to spice; by implication to embalm; also to ripen: - embalm, put forth."]},{"k":"H2591","v":["חִנְטָא","chinṭâʼ","khint-taw'","(Chaldee); corresponding to H2406; wheat: - wheat."]},{"k":"H2592","v":["חַנִּיאֵל","Channîyʼêl","khan-nee-ale'","From H2603 and H410; favor of God; Channiel, the name of two Israelites: - Hanniel."]},{"k":"H2593","v":["חָנִיךְ","chânîyk","kaw-neek'","From H2396; initiated; that is, practised: - trained."]},{"k":"H2594","v":["חֲנִינָה","chănîynâh","khan-ee-naw'","From H2603; graciousness: - favour."]},{"k":"H2595","v":["חֲנִית","chănîyth","khan-eeth'","From H2583; a lance (for thrusting, like pitching a tent): - javelin, spear."]},{"k":"H2596","v":["חָנַךְ","chânak","khaw-nak'","A primitive root; properly to narrow (compare H2614); figuratively to initiate or discipline: - dedicate, train up."]},{"k":"H2597","v":["חֲנֻכָּא","chănukkâʼ","chan-ook-kaw'","(Chaldee); corresponding to H2598; consecration: - dedication."]},{"k":"H2598","v":["חֲנֻכָּה","chănukkâh","khan-ook-kaw'","From H2596; initiation, that is, consecration: - dedicating (-tion)."]},{"k":"H2599","v":["חֲנֹכִי","Chănôkîy","khan-o-kee'","Patronymic from H2585; a Chanokite (collectively) or descendant of Chanok: - Hanochites."]},{"k":"H2600","v":["חִנָּם","chinnâm","khin-nawm'","From H2580; gratis, that is, devoid of cost, reason or advantage: - without a cause (cost, wages), causeless, to cost nothing, free (-ly), innocent, for nothing (nought), in vain."]},{"k":"H2601","v":["חֲנַמְאֵל","Chănamʼêl","khan-am-ale'","Probably by orthographical variation for H2606; Chanamel, an Israelite: - Hanameel."]},{"k":"H2602","v":["חֲנָמָל","chănâmâl","khan-aw-mawl'","Of uncertain derivation; perhaps the aphis or plant louse: - frost."]},{"k":"H2603","v":["חָנַן","chânan","khaw-nan'","A primitive root (compare H2583); properly to bend or stoop in kindness to an inferior; to favor, bestow; causatively to implore (that is, move to favor by petition): - beseech, X fair, (be, find, shew) favour (-able), be (deal, give, grant (gracious (-ly), intreat, (be) merciful, have (shew) mercy (on, upon), have pity upon, pray, make supplication, X very."]},{"k":"H2604","v":["חֲנַן","chănan","khan-an'","(Chaldee); corresponding to H2603; to favor or (causatively) to entreat: - shew mercy, make supplication."]},{"k":"H2605","v":["חָנָן","Chânân","khaw-nawn'","From H2603; favor; Chanan, the name of seven Israelites: - Canan."]},{"k":"H2606","v":["חֲנַנְאֵל","Chănanʼêl","khan-an-ale'","From H2603 and H410; God has favored; Chananel, probably an Israelite, from whom a tower of Jerusalem was named: - Hananeel."]},{"k":"H2607","v":["חֲנָנִי","Chănânîy","khan-aw-nee'","From H2603; gracious; Chanani, the name of six Israelites: - Hanani."]},{"k":"H2608","v":["חֲנַנְיָה","Chănanyâh","khan-an-yaw'","From H2603 and H3050; Jah has favored; Chananjah, the name of thirteen Israelites: - Hananiah."]},{"k":"H2609","v":["חָנֵס","Chânêç","khaw-nace'","Of Egyptian derivation; Chanes, a place in Egypt: - Hanes."]},{"k":"H2610","v":["חָנֵף","chânêph","khaw-nafe'","A primitive root; to soil, especially in a moral sense: - corrupt, defile, X greatly, pollute, profane."]},{"k":"H2611","v":["חָנֵף","chânêph","khaw-nafe'","From H2610; soiled (that is, with sin), impious: - hypocrite (-ical)."]},{"k":"H2612","v":["חֹנֶף","chôneph","kho'-nef","From H2610; moral filth, that is, wickedness: - hypocrisy."]},{"k":"H2613","v":["חֲנֻפָה","chănuphâh","khan-oo-faw'","Feminine from H2610; impiety: - profaneness."]},{"k":"H2614","v":["חָנַק","chânaq","khaw-nak'","A primitive root (compare H2596); to be narrow; by implication to throttle, or (reflexively) to choke oneself to death (by a rope): - hang self, strangle."]},{"k":"H2615","v":["חַנָּתֹן","Channâthôn","khan-naw-thone'","Probably from H2603; favored; Channathon, a place in Palestine: - Hannathon."]},{"k":"H2616","v":["חָסַד","châçad","khaw-sad'","A primitive root; properly perhaps to bow (the neck only (compare H2603) in courtesy to an equal), that is, to be kind; also (by euphemism (compare H1288), but rarely) to reprove: - shew self merciful, put to shame."]},{"k":"H2617","v":["חֵסֵד","chêçêd","kheh'-sed","From H2616; kindness; by implication (towards God) piety; rarely (by opprobrium) reproof, or (subjectively) beauty: - favour, good deed (-liness, -ness), kindly, (loving-) kindness, merciful (kindness), mercy, pity, reproach, wicked thing."]},{"k":"H2618","v":["חֶסֶד","Cheçed","kheh'-sed","The same as H2617; favor; Chesed, an Israelite: - Hesed."]},{"k":"H2619","v":["חֲסַדְיָה","Chăçadyâh","khas-ad-yaw'","From H2617 and H3050; Jah has favored; Chasadjah, an Israelite: - Hasadiah."]},{"k":"H2620","v":["חָסָה","châçâh","khaw-saw'","A primitive root; to flee for protection (compare H982); figuratively to confide in: - have hope, make refuge, (put) trust."]},{"k":"H2621","v":["חֹסָה","Chôçâh","kho-saw'","From H2620; hopeful; Chosah, an Israelite: - Hosah."]},{"k":"H2622","v":["חָסוּת","châçûwth","khaw-sooth'","From H2620; confidence: - trust."]},{"k":"H2623","v":["חָסִיד","châçîyd","khaw-seed'","From H2616; properly kind, that is, (religiously) pious (a saint): - godly (man), good, holy (one), merciful, saint, [un-] godly."]},{"k":"H2624","v":["חֲסִידָה","chăçîydâh","khas-ee-daw'","Feminine of H2623; the kind (maternal) bird, that is, a stork: -  X feather, stork."]},{"k":"H2625","v":["חָסִיל","châçîyl","khaw-seel'","From H2628; the ravager, that is, a locust: - caterpillar."]},{"k":"H2626","v":["חֲסִין","chăçîyn","khas-een'","From H2630; properly firm, that is, (by implication) mighty: - strong."]},{"k":"H2627","v":["חַסִּיר","chaççîyr","khas-seer'","(Chaldee); from a root corresponding to H2637; deficient: - wanting."]},{"k":"H2628","v":["חָסַל","châçal","khaw-sal'","A primitive root; to eat off: - consume."]},{"k":"H2629","v":["חָסַם","châçam","khaw-sam'","A primitive root; to muzzle; by analogy to stop the nose: - muzzle, stop."]},{"k":"H2630","v":["חָסַן","châçan","khaw-san'","A primitive root; properly to (be) compact; by implication to hoard: - lay up."]},{"k":"H2631","v":["חֲסַן","chăçan","khas-an'","(Chaldee); corresponding to H2630; to hold in occupancy: - possess."]},{"k":"H2632","v":["חֵסֶן","chêçen","khay'-sen","(Chaldee); from H2631; strength: - power."]},{"k":"H2633","v":["חֹסֶן","chôçen","kho'-sen","From H2630; wealth: - riches, strength, treasure."]},{"k":"H2634","v":["חָסֹן","châçôn","khaw-sone'","From H2630; powerful: - strong."]},{"k":"H2635","v":["חֲסַף","chăçaph","khas-af'","(Chaldee); from a root corresponding to that of H2636; a clod: - clay."]},{"k":"H2636","v":["חַסְפַּס","chaçpaç","khas-pas'","Reduplicated from an unused root meaning apparently to peel; a shred or scale: - round thing."]},{"k":"H2637","v":["חָסֵר","châçêr","khaw-sare'","A primitive root; to lack; by implication to fail, want, lessen: - be abated, bereave, decrease, (cause to) fail, (have) lack, make lower, want."]},{"k":"H2638","v":["חָסֵר","châçêr","khaw-sare'","From H2637; lacking; hence without: - destitute, fail, lack, have need, void, want."]},{"k":"H2639","v":["חֶסֶר","cheçer","kheh'-ler","From H2637; lack; hence destitution: - poverty, want."]},{"k":"H2640","v":["חֹסֶר","chôçer","kho'-ser","From H2637; poverty: - in want of."]},{"k":"H2641","v":["חַסְרָה","Chaçrâh","khas-raw'","From H2637; want: - Chasrah, an Isr: - Hasrah."]},{"k":"H2642","v":["חֶסְרוֹן","cheçrôwn","khes-rone'","From H2637; deficiency: - wanting."]},{"k":"H2643","v":["חַף","chaph","khaf","From H2653 (in the moral sense of covered from soil); pure: - innocent."]},{"k":"H2644","v":["חָפָא","châphâʼ","khaw-faw'","An orthographical variation of H2645; properly to cover, that is, (in a sinister sense) to act covertly: - do secretly."]},{"k":"H2645","v":["חָפָה","châphâh","khaw-faw'","A primitive root (compare H2644, H2653); to cover; by implication to veil, to incase, protect: - ceil, cover, overlay."]},{"k":"H2646","v":["חֻפָּה","chuppâh","khoop-paw'","From H2645; a canopy: - chamber, closet, defence."]},{"k":"H2647","v":["חֻפָּה","Chuppâh","khoop-paw'","The same as H2646; Chuppah, an Israelite: - Huppah."]},{"k":"H2648","v":["חָפַז","châphaz","khaw-faz'","A primitive root; properly to start up suddenly, that is, (by implication) to hasten away, to fear: - (make) haste (away), tremble."]},{"k":"H2649","v":["חִפָּזוֹן","chippâzôwn","khip-paw-zone'","From H2468; hasty flight: - haste."]},{"k":"H2650","v":["חֻפִּים","Chuppîym","khoop-peem'","Plural of H2646 (compare H2349); Chuppim, an Israelite: - Huppim."]},{"k":"H2651","v":["חֹפֶן","chôphen","kho'-fen","From an unused root of uncertain signification; a fist (only in the dual): - fists, (both) hands, hand [-full]."]},{"k":"H2652","v":["חׇפְנִי","Chophnîy","khof-nee'","From H2651; perhaps pugilist; Chophni, an Israelite: - Hophni."]},{"k":"H2653","v":["חׇפַף","chophaph","khaw-faf'","A primitive root (compare H2645, H3182); to cover (in protection): - cover."]},{"k":"H2654","v":["חָפֵץ","châphêts","khaw-fates'","A primitive root; properly to incline to; by implication (literally but rarely) to bend; figuratively to be pleased with, desire: -  X any at all, (have, take) delight, desire, favour, like, move, be (well) pleased, have pleasure, will, would."]},{"k":"H2655","v":["חָפֵץ","châphêts","khaw-fates'","From H2654; pleased with: - delight in, desire, favour, please, have pleasure, whosoever would, willing, wish."]},{"k":"H2656","v":["חֵפֶץ","chêphets","khay'-fets","From H2654; pleasure; hence (abstractly) desire; concretely a valuable thing; hence (by extension) a matter (as something in mind): - acceptable, delight (-some), desire, things desired, matter, pleasant (-ure), purpose, willingly."]},{"k":"H2657","v":["חֶפְצִי בָּהּ","Chephtsîy bâhh","khef-tsee'baw","From H2656 with suffixes; my delight (is) in her; Cheptsibah, a fanciful name for Palestine: - Hephzi-bah."]},{"k":"H2658","v":["חָפַר","châphar","khaw-far'","A primitive root; properly to pry into; by implication to delve, to explore: - dig, paw, search out, seek."]},{"k":"H2659","v":["חָפֵר","châphêr","khaw-fare'","A primitive root (perhaps rather the same as H2658 through the idea of detection): to blush; figuratively to be ashamed, disappointed; causatively to shame, reproach: - be ashamed, be confounded, be brought to confusion (unto shame), come (be put to) shame, bring reproach."]},{"k":"H2660","v":["חֵפֶר","Chêpher","khay'-fer","From H2658 or H2659; a pit or shame; Chepher, a place in Palestine; also the name of three Israelites: - Hepher."]},{"k":"H2661","v":["חֲפֹר","chăphôr","khaf-ore'","From H2658; a hole; only in connection with H6512, which ought rather to be joined as one word (shown as second form; by reduplication from H2658; a burrower, that is, probably a rat): -    + mole."]},{"k":"H2662","v":["חֶפְרִי","Chephrîy","khef-ree'","Patronymic from H2660; a Chephrite (collectively) or descendant of Chepher: - Hepherites."]},{"k":"H2663","v":["חֲפָרַיִם","Chăphârayim","khaf-aw-rah'-yim","Dual of H2660; double pit; Chapharajim, a place in Palestine: - Haphraim."]},{"k":"H2664","v":["חָפַשׂ","châphas","khaw-fas'","A primitive root; to seek; causatively to conceal oneself (that is, let be sought), or mask: - change, (make) diligent (search), disguise self, hide, search (for, out)."]},{"k":"H2665","v":["חֵפֶשׂ","chêphes","khay'-fes","From H2664; something covert, that is, a trick: - search."]},{"k":"H2666","v":["חָפַשׁ","châphash","khaw-fash'","A primitive root; to spread loose, figuratively to manumit: - be free."]},{"k":"H2667","v":["חֹפֶשׁ","Chôphesh","kho'-fesh","From H2666; something spread loosely, that is, a carpet: - precious."]},{"k":"H2668","v":["חֻפְשָׁה","chuphshâh","khoof-shaw'","From H2666; liberty (from slavery): - freedom."]},{"k":"H2669","v":["חׇפְשׁוּת","chophshûwth","khof-shooth'","From H2666; prostration by sickness (with H1004, a hospital): - several."]},{"k":"H2670","v":["חׇפְשִׁי","chophshîy","khof-shee'","From H2666; exempt (from bondage, tax or care): - free, liberty."]},{"k":"H2671","v":["חֵץ","chêts","khayts","From H2686; properly a piercer, that is, an arrow; by implication a wound; figuratively (of God) thunder bolt; (by interchange for H6086) the shaft of a spear: -    + archer, arrow, dart, shaft, staff, wound."]},{"k":"H2672","v":["חָצַב","châtsab","khaw-tsab'","A primitive root; to cut or carve (wood, stone or other material); by implication to hew, split, square, quarry, engrave: - cut, dig, divide, grave, hew (out, -er), make, mason."]},{"k":"H2673","v":["חָצָה","châtsâh","khaw-tsaw'","A primitive root (compare H2686); to cut or split in two; to halve: - divide, X live out half, reach to the midst, part."]},{"k":"H2674","v":["חָצוֹר","Châtsôwr","khaw-tsore'","A collective form of H2691; village; Chatsor, the name (thus simply) of two places in Palestine and of one in Arabia: - Hazor."]},{"k":"H2675","v":["חָצוֹר חֲדַתָּה","Châtsôwr Chădattâh","khaw-tsore' khad-attaw'","From H2674 and a Chaldaizing form of the feminine of H2319 (compare H2323); new Chatsor, a place in Palestine: - Hazor, Hadattah [as if two places]."]},{"k":"H2676","v":["חָצוֹת","châtsôwth","khaw-tsoth'","From H2673; the middle (of the night): - mid [-night]."]},{"k":"H2677","v":["חֵצִי","chêtsîy","khay-tsee'","From H2673; the half or middle: - half, middle, mid [-night], midst, part, two parts."]},{"k":"H2678","v":["חִצִּי","chitstsîy","khits-tsee'","Prolonged from H2671; an arrow: - arrow."]},{"k":"H2679","v":["חֲצִי הַמְּנֻחוֹת","Chătsîy ham-Mᵉnuchôwth","chat-tsee' hammen-oo-khoth'","From H2677 and the plural of H4496, with the article interposed; midst of the resting places; Chatsi ham-Menuchoth, an Israelite: - half of the Manahethites."]},{"k":"H2680","v":["חֲצִי הַמְּנַחְתִּי","Chătsîy ham-Mᵉnachtîy","khat-see' ham-menakh-tee'","Patronymic from H2679; a Chatsi ham-Menachtite or descendant of Chatsi ham-menuchoth: - half of the Manahethites."]},{"k":"H2681","v":["חָצִיר","châtsîyr","khaw-tseer'","A collateral form of H2691; a court or abode: - court."]},{"k":"H2682","v":["חָצִיר","châtsîyr","khaw-tseer'","Perhaps originally the same as H2681, from the greenness of a courtyard; grass; also a leek (collectively): - grass, hay, herb, leek."]},{"k":"H2683","v":["חֵצֶן","chêtsen","khay'-tsen","From an unused root meaning to hold firmly; the bosom (as comprised between the arms): - bosom."]},{"k":"H2684","v":["חֹצֶן","chôtsen","kho'tsen","A collateral form of H2683, and meaning the same: - arm, lap."]},{"k":"H2685","v":["חֲצַף","chătsaph","khats-af'","(Chaldee); a primitive root; properly to shear or cut close; figuratively to be severe: - hasty, be urgent."]},{"k":"H2686","v":["חָצַץ","châtsats","khaw-tsats'","A primitive root (compare H2673); properly to chop into, pierce or sever; hence to curtail, to distribute (into ranks); as denominative from H2671; to shoot an arrow: - archer, X bands, cut off in the midst."]},{"k":"H2687","v":["חָצָץ","châtsâts","khaw-tsawts'","From H2686; properly something cutting; hence gravel (as grit); also (like H2671) an arrow: - arrow, gravel (stone)."]},{"k":"H2688","v":["חַצְצוֹן תָּמָר","Chatsᵉtsôwn Tâmâr","khats-ets-one' taw-mawr'","From H2686 and H8558; division (that is, perhaps row) of (the palm tree; Chatsetson tamar, a place in Palestine: - Hazezon-tamar."]},{"k":"H2689","v":["חֲצֹצְרָה","chătsôtsᵉrâh","khats-o-tser-aw'","By reduplication from H2690; a trumpet (from its sundered or quavering note): - trumpet (-er)."]},{"k":"H2690","v":["חָצַר","châtsar","khaw-tsar'","A primitive root; properly to surround with a stockade, and thus separate from the open country; but used only in the reduplicated form (the second and third forms; to trumpet, that is, blow on that instrument): - blow, sound, trumpeter."]},{"k":"H2691","v":["חָצֵר","châtsêr","khaw-tsare'","From H2690 in its original sense; a yard (as inclosed by a fence); also a hamlet (as similarly surrounded with walls): - court, tower, village."]},{"k":"H2692","v":["חֲצַר אַדָּר","Chătsar ʼAddâr","khats-ar' addawr'","From H269 and H146: (the) village of Addar; Chatsar Addar, a place in Palestine: - Hazar-addar."]},{"k":"H2693","v":["חֲצַר גַּדָּה","Chătsar Gaddâh","khats-ar' gad-daw'","From H2691 and a feminine of H1408; (the) village of (female) Fortune; Chatsar Gaddah, a place in Palestine: - Hazar-gaddah."]},{"k":"H2694","v":["חֲצַר הַתִּיכוֹן","Chătsar hat-Tîykôwn","khats-ar' hat-tee-kone'","From H2691 and H8484 with the article interposed; village of the middle; Chatsar-hat-Tikon, a place in Palestine: - Hazar-hatticon."]},{"k":"H2695","v":["חֶצְרוֹ","Chetsrôw","khets-ro'","By an orthographical variation for H2696; inclosure; Chetsro, an Israelite: - Hezro, Hezrai."]},{"k":"H2696","v":["חֶצְרוֹן","Chetsrôwn","khets-rone'","From H2691; courtyard; Chetsron, the name of a place in Palestine; also fo two Israelites: - Hezron."]},{"k":"H2697","v":["חֶצְרוֹנִי","Chetsrôwnîy","khets-ro-nee'","Patron from H2696; a Chetsronite or (collectively) descendant of Chetsron: - Hezronites."]},{"k":"H2698","v":["חֲצֵרוֹת","Chătsêrôwth","khats-ay-roth'","Feminine plural of H2691; yards; Chatseroth, a place in Palestine: - Hazeroth."]},{"k":"H2699","v":["חֲצֵרִים","Chătsêrîym","khats-ay-reem'","Plural masculine of H2691; yards; Chatserim, a place in Palestine: - Hazerim."]},{"k":"H2700","v":["חֲצַרְמָוֶת","Chătsarmâveth","khats-ar-maw'-veth","From H2691 and H4194; village of death; Chatsarmaveth, a place in Arabia: - Hazarmaveth."]},{"k":"H2701","v":["חֲצַר סוּסָה","Chătsar Çûwçâh","khats-ar'soo-saw'","From H2691 and H5484; village of cavalry; Chatsar Susah, a place in Palestine: - Hazar-susah."]},{"k":"H2702","v":["חֲצַר סוּסִים","Chătsar Çûwçîym","khats-ar' soo-seem'","From H2691 and the plural of H5483; village of horses; Chatsar Susim, a place in Palestine: - Hazar-susim."]},{"k":"H2703","v":["חֲצַר עֵינוֹן","Chătsar ʻÊynôwn","khats-ar' ay-none'","From H2691 and a derivative of H5869; village of springs; Chatsar Enon, a place in Palestine: - Hazar-enon."]},{"k":"H2704","v":["חֲצַר עֵינָן","Chătsar ʻÊynân","khats-ar' ay-nawn'","From H2691 and the same as H5881; village of springs; Chatsar Enan, a place in Palestine: - Hazar-enan."]},{"k":"H2705","v":["חֲצַר שׁוּעָל","Chătsar Shûwʻâl","khats-ar' shoo-awl'","From H2691 and H7776; village of (the) fox; Chatsar Shual, a place in Palestine: - Hazar-shual."]},{"k":"H2706","v":["חֹק","chôq","khoke","From H2710; an enactment; hence an appointment (of time, space, quantity, labor or usage): - appointed, bound, commandment, convenient, custom, decree (-d), due, law, measure, X necessary, ordinance (-nary), portion, set time, statute, task."]},{"k":"H2707","v":["חָקָה","châqâh","khaw-kaw'","A primitive root; to carve; by implication to delineate; also to intrench: - carved work, portrayed, set a print."]},{"k":"H2708","v":["חֻקָּה","chuqqâh","khook-kaw'","Feminine of H2706, and meaning substantially the same: - appointed, custom, manner, ordinance, site, statute."]},{"k":"H2709","v":["חֲקוּפָא","Chăqûwphâʼ","khah-oo-faw'","From an unused root probably meaning to bend; crooked; Chakupha, one of the Nethinim: - Hakupha."]},{"k":"H2710","v":["חָקַק","châqaq","khaw-kak'","A primitive root; properly to hack, that is, engrave (Jdg_5:14, to be a scribe simply); by implication to enact (laws being cut in stone or metal tablets in primitive times) or (generally) prescribe: - appoint, decree, governor, grave, lawgiver, note, pourtray, print, set."]},{"k":"H2711","v":["חֵקֶק","chêqeq","khay'-kek","From H2710; an enactment, a resolution: - decree, thought."]},{"k":"H2712","v":["חֻקֹּק","Chuqqôq","Khook-koke'","From H2710; appointed; Chukkok or Chukok, a place in Palestine: - Hukkok, Hukok."]},{"k":"H2713","v":["חָקַר","châqar","khaw-kar'","A primitive root; properly to penetrate; hence to examine intimately: - find out, (make) search (out), seek (out), sound, try."]},{"k":"H2714","v":["חֵקֶר","chêqer","khay'-ker","From H2713; examination, enumeration, deliberation: - finding out, number, [un-] search (-able, -ed out, -ing)."]},{"k":"H2715","v":["חֹר","chôr","khore","From H2787; properly white or pure (from the cleansing or shining power of fire (compare H2751); hence (figuratively) noble (in rank): - noble."]},{"k":"H2716","v":["חֶרֶא","chereʼ","kheh'-reh","From an unused (and vulger) root probably meaning to evacuate the bowels; excrement: - dung. Also ` chary, khar-ee."]},{"k":"H2717","v":["חָרַב","chârab","khaw-rab'","A primitive root; to parch (through drought), that is, (by analogy) to desolate, destroy, kill: - decay, (be) desolate, destroy (-er), (be) dry (up), slay, X surely, (lay, lie, make) waste."]},{"k":"H2718","v":["חֲרַב","chărab","khar-ab'","(Chaldee); a root corresponding to H2717; to demolish: - destroy."]},{"k":"H2719","v":["חֶרֶב","chereb","kheh'-reb","From H2717; drought; also a cutting instrument (from its destructive effect), as a knife, sword, or other sharp implement: - axe, dagger, knife, mattock, sword, tool."]},{"k":"H2720","v":["חָרֵב","chârêb","khaw-rabe'","From H2717; parched or ruined: - desolate, dry, waste."]},{"k":"H2721","v":["חֹרֶב","chôreb","kho'-reb","A collateral form of H2719; drought or desolation: - desolation, drought, dry, heat, X utterly, waste."]},{"k":"H2722","v":["חֹרֵב","Chôrêb","kho-rabe'","From H2717; desolate; Choreb, a (generic) name for the Sinaitic mountains: - Horeb."]},{"k":"H2723","v":["חׇרְבָּה","chorbâh","khor-baw'","Feminine of H2721; properly drought, that is, (by implication) a desolation: - decayed place, desolate (place, -tion), destruction, (laid) waste (place)."]},{"k":"H2724","v":["חָרָבָה","chârâbâh","khaw-raw-baw'","Feminine of H2720; a desert: - dry (ground, land)."]},{"k":"H2725","v":["חֲרָבוֹן","chărâbôwn","khar-aw-bone'","From H2717; parching heat: - drought."]},{"k":"H2726","v":["חַרְבוֹנָא","Charbôwnâʼ","khar-bo-naw'","Of Persian origin; a eunuch of Xerxes: - Harbona, Harbonah."]},{"k":"H2727","v":["חָרַג","chârag","khaw-rag'","A primitive root; properly to leap suddenly, that is, (by implication) to be dismayed: - be afraid."]},{"k":"H2728","v":["חָרְגֹּל","chârᵉgôl","khar-gole'","From H2727; the leaping insect, that is, a locust: - beetle."]},{"k":"H2729","v":["חָרַד","chârad","khaw-rad'","A primitive root; to shudder with terror; hence to fear; also to hasten (with anxiety): - be (make) afraid, be careful, discomfit, fray (away), quake, tremble."]},{"k":"H2730","v":["חָרֵד","chârêd","khaw-rade'","From H2729; fearful; also reverential: - afraid, trembling."]},{"k":"H2731","v":["חֲרָדָה","chărâdâh","khar-aw-daw'","Feminine of H2730; fear, anxiety: - care, X exceedingly, fear, quaking, trembling."]},{"k":"H2732","v":["חֲרָדָה","Chărâdâh","khar-aw-daw'","The same as H2731; Charadah, a place in the Desert: - Haradah."]},{"k":"H2733","v":["חֲרֹדִי","Chărôdîy","khar-o-dee'","Patrial from a derivative of H2729 (compare H5878); a Charodite, or inhabitant of Charod: - Harodite."]},{"k":"H2734","v":["חָרָה","chârâh","khaw-raw'","A primitive root (compare H2787); to glow or grow warm; figuratively (usually) to blaze up, of anger, zeal, jealousy: - be angry, burn, be displeased, X earnestly, fret self, grieve, be (wax) hot, be incensed, kindle, X very, be wroth. See H8474."]},{"k":"H2735","v":["חֹר הַגִּדְגָּד","Chôr hag-Gidgâd","khore hag-ghid-gawd'","From H2356 and a collateral (masculine) form of H1412, with the article interposed; hole of the cleft; Chor hag Gidgad, a place in the Desert: - Hor-hagidgad."]},{"k":"H2736","v":["חַרְהֲיָה","Charhăyâh","khar-hah-yaw'","From H2734 and H3050; fearing Jah; Charhajah, an Israelite: - Harhaiah."]},{"k":"H2737","v":["חָרוּז","chârûwz","khaw-rooz'","From an unused root meaning to perforate; properly pierced, that is, a bead of pearl, gems or jewels (as strung): - chain."]},{"k":"H2738","v":["חָרוּל","chârûwl","khaw-rool'","Apparently passive participle of an unused root probably meaning to be prickly; properly pointed, that is, a bramble or other thorny weed: - nettle."]},{"k":"H2739","v":["חֲרוּמַף","chărûwmaph","khar-oo-maf'","From passive participle of H2763 and H639; snubnosed; Charumaph, an Israelite: - Harumaph."]},{"k":"H2740","v":["חָרוֹן","chârôwn","khaw-rone'","From H2734; a burning of anger: - sore displeasure, fierce (-ness), fury, (fierce) wrath (-ful)."]},{"k":"H2741","v":["חֲרוּפִי","Chărûwphîy","khar-oo-fee'","A patrial from (probably) a collateral form of H2756; a Charuphite or inhabitant of Charuph (or Chariph): - Haruphite."]},{"k":"H2742","v":["חֲרוּץ","chărûwts","khaw-roots'","Passive participle of H2782; properly incised or (active) incisive; hence (as noun masculine or feminine) a trench (as dug), gold (as mined), a threshing sledge (having sharp teeth); (figuratively) determination; also eager: - decision, diligent, (fine) gold, pointed things, sharp, threshing instrument, wall."]},{"k":"H2743","v":["חָרוּץ","Chârûwts","khaw-roots'","The same as H2742; earnest; Charuts, an Israelite: - Haruz."]},{"k":"H2744","v":["חַרְחוּר","Charchûwr","khar-khoor'","A fuller form of H2746; inflammation; Charchur, one of the Nethinim: - Harhur."]},{"k":"H2745","v":["חַרְחַס","Charchaç","khar-khas'","From the same as H2775; perhaps shining; Charchas, an Israelite: - Harbas."]},{"k":"H2746","v":["חַרְחֻר","charchur","khar-khoor'","From H2787; fever (as hot): - extreme burning."]},{"k":"H2747","v":["חֶרֶט","chereṭ","kheh'-ret","From a primitive root meaning to engrave; a chisel or graver; also a style for writing: - graving tool, pen."]},{"k":"H2748","v":["חַרְטֹם","charṭôm","khar-tome'","From the same as H2747; a horoscopist (as drawing magical lines or circles): - magician."]},{"k":"H2749","v":["חַרְטֹם","charṭôm","khar-tome'","(Chaldee); the same as H2748: - magician."]},{"k":"H2750","v":["חֳרִי","chŏrîy","khor-ee'","From H2734; a burning (that is, intense) anger: - fierce, X great, heat."]},{"k":"H2751","v":["חֹרִי","chôrîy","kho-ree'","From the same as H2353; white bread: - white."]},{"k":"H2752","v":["חֹרִי","Chôrîy","kho-ree'","From H2356; cave dweller or troglodyte; a Chorite or aboriginal Idumaean: - Horims, Horites."]},{"k":"H2753","v":["חֹרִי","Chôrîy","kho-ree'","The same as H2752; Chori, the name of two men: - Hori."]},{"k":"H2754","v":["חָרִיט","chârîyṭ","khaw-reet'","From the same as H2747; properly cut out (or hollow), that is, (by implication) a pocket: - bag, crisping pin."]},{"k":"H2755","v":["חֲרֵי־יוֹנִים","chărêy-yôwnîym","khar-ay'-yo-neem'","From the plural of H2716 and the plural of H3123; excrements of doves (or perhaps rather the plural of a single word, the second form; of similar or uncertain derivation); probably a kind of vegetable: - doves’ dung."]},{"k":"H2756","v":["חָרִיף","Chârîyph","khaw-reef'","From H2778; autumnal; the name of two Israelites: - Hariph."]},{"k":"H2757","v":["חָרִיץ","chârîyts","khaw-reets'","From H2782; properly incisure or (passive) incised (compare H2742); hence a threshing sledge (with sharp teeth); also a slice (as cut): -    + cheese, harrow."]},{"k":"H2758","v":["חָרִישׁ","chârîysh","khaw-reesh'","From H2790; ploughing or its season: - earing (time), ground."]},{"k":"H2759","v":["חֲרִישִׁי","chărîyshîy","khar-ee-shee'","From H2790 in the sense of silence; quiet, that is, sultry (as noun feminine the sirocco or hot east wind): - vehement."]},{"k":"H2760","v":["חָרַךְ","chârak","khaw-rak'","A primitive root; to braid (that is, to entangle or snare) or catch (game) in a net: - roast."]},{"k":"H2761","v":["חֲרַךְ","chărak","khar-ak'","(Chaldee); a root probably allied to the equivalent of H2787; to scorch: - singe."]},{"k":"H2762","v":["חֶרֶךְ","cherek","kheh'-rek","From H2760; properly a net, that is, (by analogy) lattice: - lattice."]},{"k":"H2763","v":["חָרַם","châram","khaw-ram'","A primitive root; to seclude; specifically (by a ban) to devote to religious uses (especially destruction); physically and reflexively to be blunt as to the nose: - make accursed, consecrate, (utterly) destroy, devote, forfeit, have a flat nose, utterly (slay, make away)."]},{"k":"H2764","v":["חֵרֶם","chêrem","khay'-rem","From H2763; physically (as shutting in) a net (either literally or figuratively); usually a doomed object; abstractly extermination: - (ac-)curse (-d, -d thing), dedicated thing, things which should have been utterly destroyed, (appointed to) utter destruction, devoted (thing), net."]},{"k":"H2765","v":["חֳרֵם","Chŏrêm","khor-ame'","From H2763; devoted; Chorem, a place in Palestine: - Horem."]},{"k":"H2766","v":["חָרִם","Chârim","khaw-reem'","From H2763; snubnosed; Charim, an Israelite: - Harim."]},{"k":"H2767","v":["חׇרְמָה","Chormâh","khor-maw'","From H2763; devoted; Chormah, a place in Palestine: - Hormah."]},{"k":"H2768","v":["חֶרְמוֹן","Chermôwn","kher-mone'","From H2763; abrupt; Chermon, a mount of Palestine: - Hermon."]},{"k":"H2769","v":["חֶרְמוֹנִים","Chermôwnîym","kher-mo-neem'","Plural of H2768; Hermons, that is, its peaks: - the Hermonites."]},{"k":"H2770","v":["חֶרְמֵשׁ","chermêsh","kher-mashe'","From H2763; a sickle (as cutting): - sickle."]},{"k":"H2771","v":["חָרָן","Chârân","kaw-rawn'","From H2787; parched; Charan, the name of a man and also of a place: - Haran."]},{"k":"H2772","v":["חֹרֹנִי","Chôrônîy","kho-ro-nee'","Patrial from H2773; a Choronite or inhabitant of Choronaim: - Horonite."]},{"k":"H2773","v":["חֹרֹנַיִם","Chôrônayim","kho-ro-nah'-yim","Dual of a derivative from H2356; double cave town; Choronajim, a place in Moab: - Horonaim."]},{"k":"H2774","v":["חַרְנֶפֶר","Charnepher","khar-neh'fer","Of uncertain derivation; Charnepher, an Israelite: - Harnepher."]},{"k":"H2775","v":["חֶרֶס","chereç","kheh'-res","From an unused root meaning to scrape; the itch; also (perhaps from the mediating idea of H2777) the sun: - itch, sun."]},{"k":"H2776","v":["חֶרֶס","Chereç","kheh'-res","The same as H2775; shining; Cheres, a mount in Palestine: - Heres."]},{"k":"H2777","v":["חַרְסוּת","charçûwth","khar-sooth'","From H2775 (Apparently in the sense of a red tile used for scraping); a potsherd, that is, (by implication) a pottery; the name of a gate at Jerusalem: - east."]},{"k":"H2778","v":["חָרַף","châraph","khaw-raf'","A primitive root; to pull off, that is, (by implication) to expose (as by stripping); specifically to betroth (as if a surrender); figuratively to carp at, that is, defame; denominatively (from H2779) to spend the winter: - betroth, blaspheme, defy, jeopard, rail, reproach, upbraid."]},{"k":"H2779","v":["חֹרֶף","chôreph","kho'-ref","From H2778; properly the crop gathered, that is, (by implication) the autumn (and winter) season; figuratively ripeness of age: - cold, winter ([-house]), youth."]},{"k":"H2780","v":["חָרֵף","Chârêph","khaw-rafe'","From H2778; reproachful; an Israelite: - Hareph."]},{"k":"H2781","v":["חֶרְפָּה","cherpâh","kher-paw'","From H2778; contumely, disgrace, the pudenda: - rebuke, reproach (-fully), shame."]},{"k":"H2782","v":["חָרַץ","chârats","khaw-rats'","A prim root; properly to point sharply, that is, (literally) to wound; figuratively to be alert, to decide: - bestir self, decide, decree, determine, maim, move."]},{"k":"H2783","v":["חֲרַץ","chărats","khar-ats'","(Chaldee) from a root corresponding to H2782 in the sense of vigor; the loin (as the seat of strength): - loin."]},{"k":"H2784","v":["חַרְצֻבָּה","chartsubbâh","khar-tsoob-baw'","Of uncertain derivation; a fetter; figuratively a pain: - band."]},{"k":"H2785","v":["חַרְצַן","chartsan","kchar-tsan'","From H2782; a sour grape (as sharp in taste): - kernel."]},{"k":"H2786","v":["חָרַק","châraq","khaw-rak'","A primitive root; to grate the teeth: - gnash."]},{"k":"H2787","v":["חָרַר","chârar","khaw-rar'","A primitive root; to glow, that is, literally (to melt, burn, dry up) or figuratively (to show or incite passion): - be angry, burn, dry, kindle."]},{"k":"H2788","v":["חָרֵר","chârêr","khaw-rare'","From H2787; arid: - parched place."]},{"k":"H2789","v":["חֶרֶשׂ","cheres","kheh'-res","A collateral form mediating between H2775 and H2791; a piece of pottery: - earth (-en), (pot-) sherd, + stone."]},{"k":"H2790","v":["חָרַשׁ","chârash","khaw-rash'","A primitive root; to scratch, that is, (by implication) to engrave, plough; hence (from the use of tools) to fabricate (of any material); figuratively to devise (in a bad sense); hence (from the idea of secrecy) to be silent, to let alone; hence (by implication) to be deaf (as an accompaniment of dumbness): -    X altogether, cease, conceal, be deaf, devise, ear, graven, imagine, leave off speaking, hold peace, plow (-er, -man), be quiet, rest, practise secretly, keep silence, be silent, speak not a word, be still, hold tongue, worker."]},{"k":"H2791","v":["חֶרֶשׁ","cheresh","kheh'-resh","From H2790; magical craft; also silence: - cunning, secretly."]},{"k":"H2792","v":["חֶרֶשׁ","Cheresh","kheh'-resh","The same as H2791; Cheresh, a Levite: - Cheresh, a Levite: - Heresh."]},{"k":"H2793","v":["חֹרֶשׁ","chôresh","kho'-resh","From H2790; a forest (perhaps as furnishing the material for fabric): - bough, forest, shroud, wood."]},{"k":"H2794","v":["חֹרֵשׁ","chôrêsh","kho-rashe'","Active participle of H2790; a fabricator or mechanic: - artificer."]},{"k":"H2795","v":["חֵרֵשׁ","chêrêsh","khay-rashe'","From H2790; deaf (whether literal or spiritual): - deaf."]},{"k":"H2796","v":["חָרָשׁ","chârâsh","khaw-rawsh'","From H2790; a fabricator of any material: - artificer, (+) carpenter, craftsman, engraver, maker, + mason, skilful, (+) smith, worker, workman, such as wrought."]},{"k":"H2797","v":["חַרְשָׁא","Charshâʼ","khar-shaw'","From H2792; magician; Charsha, one of the Nethinim: - Harsha."]},{"k":"H2798","v":["חֲרָשִׁים","Chărâshîym","khar-aw-sheem'","Plural of H2796; mechanics, the name of a valley in Jerusalem: - Charashim, craftsmen."]},{"k":"H2799","v":["חֲרֹשֶׁת","chărôsheth","khar-o'-sheth","From H2790; mechanical work: - carving, cutting."]},{"k":"H2800","v":["חֲרֹשֶׁת","Chărôsheth","khar-o'-sheth","The same as H2799; Charosheth, a place in Palestine: - Harosheth."]},{"k":"H2801","v":["חָרַת","chârath","khaw-rath'","A primitive root; to engrave: - graven."]},{"k":"H2802","v":["חֶרֶת","Chereth","kheh'-reth","From H2801 (but equivalent to H2793); forest; Chereth, a thicket in Palestine: - Hereth."]},{"k":"H2803","v":["חָשַׁב","châshab","khaw-shab'","A primitive root; properly to plait or interpenetrate, that is, (literally) to weave or (generally) to fabricate; figuratively to plot or contrive (usually in a malicious sense); hence (from the mental effort) to think, regard, value, compute: - (make) account (of), conceive, consider, count, cunning (man, work, workman), devise, esteem, find out, forecast, hold, imagine, impute, invent, be like, mean, purpose, reckon (-ing be made), regard, think."]},{"k":"H2804","v":["חֲשַׁב","chăshab","khash-ab'","(Chaldee); corresponding to H2803; to regard: - repute."]},{"k":"H2805","v":["חֵשֶׁב","chêsheb","khay'-sheb","From H2803; a belt or strap (as being interlaced): - curious girdle."]},{"k":"H2806","v":["חַשְׁבַּדָּנָה","Chashbaddânâh","khash-bad-daw'-naw","From H2803 and H1777; considerate judge; Chasbaddanah, an Israelite: - Hasbadana."]},{"k":"H2807","v":["חֲשֻׁבָה","Chăshubâh","khash-oo-baw'","From H2803; estimation; Chashubah, an Israelite: - Hashubah."]},{"k":"H2808","v":["חֶשְׁבּוֹן","cheshbôwn","khesh-bone'","From H2803; properly contrivance; by implication intelligence: - account, device, reason."]},{"k":"H2809","v":["חֶשְׁבּוֹן","Cheshbôwn","khesh-bone'","The same as H2808; Cheshbon, a place East of the Jordan: - Heshbon."]},{"k":"H2810","v":["חִשָּׁבוֹן","chishshâbôwn","khish-shaw-bone'","From H2803; a contrivance, that is, actual (a warlike machine) or mental (a machination): - engine, invention."]},{"k":"H2811","v":["חֲשַׁבְיָה","Chăshabyâh","khash-ab-yaw'","From H2803 and H3050; Jah has regarded; Chashabjah, the name of nine Israelites: - Hashabiah."]},{"k":"H2812","v":["חֲשַׁבְנָה","Chăshabnâh","khash-ab-naw'","Feminine of H2808; inventiveness; Chashnah, an Israelite: - Hashabnah."]},{"k":"H2813","v":["חֲשַׁבְנְיָה","Chăshabnᵉyâh","khash-ab-neh-yaw'","From H2808 and H3050; thought of Jah; Chashabnejah, the name of two Israelites: - Hashabniah."]},{"k":"H2814","v":["חָשָׁה","châshâh","khaw-shaw'","A primitive root; to hush or keep quiet: - hold peace, keep silence, be silent, (be) still."]},{"k":"H2815","v":["חַשּׁוּב","Chashshûwb","khash-shoob'","From H2803; intelligent; Chashshub, the name of two or three Israelites: - Hashub, Hasshub."]},{"k":"H2816","v":["חֲשׁוֹךְ","chăshôwk","khash-oke'","(Chaldee) from a root corresponding to H2821; the dark: - darkness."]},{"k":"H2817","v":["חֲשׂוּפָא","Chăsûwphâʼ","khas-oo-faw'","From H2834; nakedness; Chasupha, one of the Nethinim: - Hashupha, Hasupha."]},{"k":"H2818","v":["חֲשַׁח","chăshach","khash-akh'","(Chaldee); a collateral root to one corresponding to H2363 in the sense of readiness; to be necessary (from the idea of convenience) or (transitively) to need: - careful, have need of."]},{"k":"H2819","v":["חַשְׁחוּת","chashchûwth","khash-khooth'","From a root corresponding to H2818; necessity: - be needful."]},{"k":"H2820","v":["חָשַׂךְ","châsak","khaw-sak'","A prim root; to restrain or (reflexively) refrain; by implication to refuse, spare, preserve; also (by interchange with H2821) to observe: - assuage, X darken, forbear, hinder, hold back, keep (back), punish, refrain, reserve, spare, withhold."]},{"k":"H2821","v":["חָשַׁךְ","châshak","khaw-shak'","A primitive root; to be dark (as withholding light); transitively to darken: - be black, be (make) dark, darken, cause darkness, be dim, hide."]},{"k":"H2822","v":["חֹשֶׁךְ","chôshek","kho-shek'","From H2821; the dark; hence (literally) darkness; figuratively misery, destruction, death, ignorance, sorrow, wickedness: - dark (-ness), night, obscurity."]},{"k":"H2823","v":["חָשֹׁךְ","châshôk","khaw-shoke'","From H2821; dark (figuratively that is, obscure): - mean."]},{"k":"H2824","v":["חֶשְׁכָה","cheshkâh","khesh-kaw'","From H2821; darkness: - dark."]},{"k":"H2825","v":["חֲשֵׁכָה","chăshêkâh","khash-ay-kaw'","From H2821; darkness; figuratively misery: - darkness."]},{"k":"H2826","v":["חָשַׁל","châshal","khaw-shal'","A primitive root; to make (intransitively be) unsteady, that is, weak: - feeble."]},{"k":"H2827","v":["חֲשַׁל","chăshal","khash-al'","(Chaldee) a root corresponding to H2826; to weaken, that is, crush: - subdue."]},{"k":"H2828","v":["חָשֻׁם","Châshum","khaw-shoom'","From the same as H2831; enriched; Chashum, the name of two or three Israelites: - Hashum."]},{"k":"H2829","v":["חֶשְׁמוֹן","Cheshmôwn","klesh-mone'","The same as H2831; opulent; Cheshmon, a place in Palestine: - Heshmon."]},{"k":"H2830","v":["חַשְׁמַל","chashmal","khash-mal'","Of uncertain derivation; probably bronze or polished spectrum metal: - amber."]},{"k":"H2831","v":["חַשְׁמַן","chashman","khash-man'","From an unused root (probably meaning firm or capacious in resources); apparently wealthy: - princes."]},{"k":"H2832","v":["חַשְׁמֹנָה","Chashmônâh","khash-mo-naw'","Feminine of H2831; fertile; Chasmonah, a place in the Desert: - Hashmonah."]},{"k":"H2833","v":["חֹשֶׁן","chôshen","kho'-shen","From an unused root probably meaning to contain or sparkle; perhaps a pocket (as holding the Urim and Thummim), or rich (as containing gems), used only of the gorget of the highpriest: - breastplate."]},{"k":"H2834","v":["חָשַׂף","châsaph","khaw-saf'","A primitive root; to strip off, that is, generally to make naked (for exertion or in disgrace), to drain away or bail up (a liquid): - make bare, clean, discover, draw out, take, uncover."]},{"k":"H2835","v":["חָשִׂף","châsiph","khaw-seef'","From H2834; properly drawn off, that is, separated; hence a small company (as divided from the rest): - little flock."]},{"k":"H2836","v":["חָשַׁק","châshaq","khaw-shak'","A primitive root; to cling, that is, join (figuratively) to love, delight in; elliptically (or by interchange for H2820) to deliver: - have a delight, (have a) desire, fillet, long, set (in) love."]},{"k":"H2837","v":["חֵשֶׁק","chêsheq","khay'-shek","From H2836; delight: - desire, pleasure."]},{"k":"H2838","v":["חָשֻׁק","châshuq","khaw-shook'","Passive participle of H2836; attached, that is, a fence rail or rod connecting the posts or pillars: - fillet."]},{"k":"H2839","v":["חִשֻּׁק","chishshuq","khish-shook'","From H2836; conjoined, that is, a wheel spoke or rod connecting the hub with the rim: - felloe."]},{"k":"H2840","v":["חִשֻּׁר","chishshur","khish-shoor'","From an unused root meaning to bind together; combined, that is, the nave or hub of a wheel (as holding the spokes together): - spoke."]},{"k":"H2841","v":["חַשְׁרָה","chashrâh","khash-raw'","From the same as H2840; properly a combination or gathering, that is, of watery clouds: - dark."]},{"k":"H2842","v":["חָשַׁשׁ","châshash","khaw-shash'","By variation for H7179; dry grass: - chaff."]},{"k":"H2843","v":["חֻשָׁתִי","Chushâthîy","khoo-shaw-thee'","Patronymic from H2364; a Chushathite or descendant of Chushah: - Hushathite."]},{"k":"H2844","v":["חַת","chath","khath","From H2865; concretely crushed; also afraid; abstractly terror: - broken, dismayed, dread, fear."]},{"k":"H2845","v":["חֵת","Chêth","khayth","From H2865; terror; Cheth, an aboriginal Canaanite: - Heth."]},{"k":"H2846","v":["חָתָה","châthâh","khaw-thaw'","A primitive root; to lay hold of; especially to pick up fire: - heap, take (away)."]},{"k":"H2847","v":["חִתָּה","chittâh","khit-taw'","From H2865; fear: - terror."]},{"k":"H2848","v":["חִתּוּל","chittûwl","khit-tool'","From H2853; swathed, that is, a bandage: - roller."]},{"k":"H2849","v":["חַתְחַת","chathchath","khath-khath'","From H2844; terror: - fear."]},{"k":"H2850","v":["חִתִּי","Chittîy","khit-tee'","Patronymic from H2845; a Chittite, or descendant of Cheth: - Hittite, Hittites."]},{"k":"H2851","v":["חִתִּית","chittîyth","khit-teeth'","From H2865; fear: - terror."]},{"k":"H2852","v":["חָתַךְ","châthak","khaw-thak'","A primitive root; properly to cut off, that is, (figuratively) to decree: - determine."]},{"k":"H2853","v":["חָתַל","châthal","khaw-thal'","A primitive root; to swathe: -  X at all, swaddle."]},{"k":"H2854","v":["חֲתֻלָּה","chăthullâh","khath-ool-law'","From H2853; a swathing cloth (figuratively): - swaddling band."]},{"k":"H2855","v":["חֶתְלֹן","Chethlôn","kheth-lone'","From H2853; enswathed; Chethlon, a place in Palestine: - Hethlon."]},{"k":"H2856","v":["חָתַם","châtham","khaw-tham'","A primitive root; to close up; especially to seal: - make an end, mark, seal (up), stop."]},{"k":"H2857","v":["חֲתַם","chătham","khath-am'","(Chaldee); a root corresponding to H2856; to seal: - seal."]},{"k":"H2858","v":["חֹתֶמֶת","chôthemeth","kho-the-meth","Feminine active participle of H2856; a seal: - signet."]},{"k":"H2859","v":["חָתַן","châthan","khaw-than'","A primitive root; to give (a daughter) away in marriage; hence (generally) to contract affinity by marriage: - join in affinity, father in law, make marriages, mother in law, son in law."]},{"k":"H2860","v":["חָתָן","châthân","khaw-thawn'","From H2859; a relative by marriage (especially through the bride); figuratively a circumcised child (as a species of religious espousal): - bridegroom, husband, son in law."]},{"k":"H2861","v":["חֲתֻנָּה","chăthunnâh","khath-oon-naw'","From H2859; a wedding: - espousal."]},{"k":"H2862","v":["חָתַף","châthaph","khaw-thaf'","A primitive root; to clutch: - take away."]},{"k":"H2863","v":["חֶתֶף","chetheph","kheh'-thef","From H2862; properly rapine; figuratively robbery: - prey."]},{"k":"H2864","v":["חָתַר","châthar","khaw-thar'","A primitive root; to force a passage, as by burglary; figuratively with oars: - dig (through), row."]},{"k":"H2865","v":["חָתַת","châthath","khaw-thath'","A primitive root; properly to prostrate; hence to break down, either (literally) by violence, or (figuratively) by confusion and fear: - abolish, affright, be (make) afraid, amaze, beat down, discourage, (cause to) dismay, go down, scare, terrify."]},{"k":"H2866","v":["חֲתַת","chăthath","khath-ath'","From H2865; dismay: - casting down."]},{"k":"H2867","v":["חֲתַת","Chăthath","khath-ath'","The same as H2866; Chathath, an Israelite: - Hathath."]},{"k":"H2868","v":["טְאֵב","ṭᵉʼêb","teh-abe'","(Chaldee); a primitive root; to rejoice: - be glad."]},{"k":"H2869","v":["טָב","ṭâb","teh-abe'","(Chaldee); from H2868; the same as H2896; good: - fine, good."]},{"k":"H2870","v":["טָבְאֵל","ṭâbᵉʼêl","taw-beh-ale'","From H2895 and H410; pleasing (to) God; Tabeel, the name of a Syrian and of a Persian: - Tabeal, Tabeel."]},{"k":"H2871","v":["טָבוּל","ṭâbûwl","taw-bool'","Passive participle of H2881; properly dyed, that is, a turban (probably as of colored stuff): - dyed attire."]},{"k":"H2872","v":["טַבּוּר","ṭabbûwr","tab-boor'","From an unused root meaning to pile up; properly accumulated; that is, (by implication) a summit: - middle, midst."]},{"k":"H2873","v":["טָבַח","ṭâbach","taw-bakh'","A primitive root; to slaughter (animals or men): - kill, (make) slaughter, slay."]},{"k":"H2874","v":["טֶבַח","ṭebach","teh'-bakh","From H2873; properly something slaughtered; hence a beast (or meat, as butchered); abstractly butchery (or concretely a place of slaughter): -    X beast, slaughter, X slay, X sore."]},{"k":"H2875","v":["טֶבַח","Ṭebach","teh'-bakh","The same as H2874; massacre; Tebach, the name of a Mesopotamian and of an Israelite: - Tebah."]},{"k":"H2876","v":["טַבָּח","ṭabbâch","tab-bawkh'","From H2873; properly a butcher; hence a lifeguardsman (because acting as executioner); also a cook (as usually slaughtering the animal for food): - cook, guard."]},{"k":"H2877","v":["טַבָּח","ṭabbâch","tab-bawkh'","(Chaldee); the same as H2876; a lifeguardsman: - guard."]},{"k":"H2878","v":["טִבְחָה","ṭibchâh","tib-khaw'","Feminine of H2874 and meaning the same: - flesh, slaughter."]},{"k":"H2879","v":["טַבָּחָה","ṭabbâchâh","tab-baw-khaw'","Feminine of H2876; a female cook: - cook."]},{"k":"H2880","v":["טִבְחַת","Ṭibchath","tib-khath'","From H2878; slaughter; Tibchath, a place in Syria: - Tibhath."]},{"k":"H2881","v":["טָבַל","ṭâbal","taw-bal'","A primitive root; to dip: - dip, plunge."]},{"k":"H2882","v":["טְבַלְיָהוּ","Ṭᵉbalyâhûw","teb-al-yaw'-hoo","From H2881 and H3050; Jah has dipped; Tebaljah, an Israelite: - Tebaliah."]},{"k":"H2883","v":["טָבַע","ṭâbaʻ","taw-bah'","A primitive root; to sink: - drown, fasten, settle, sink."]},{"k":"H2884","v":["טַבָּעוֹת","Ṭabbâʻôwth","tab-baw-othe'","Plural of H2885; rings; Tabbaoth, one of the Nethinim: - Tabbaoth."]},{"k":"H2885","v":["טַבַּעַת","ṭabbaʻath","tab-bah'-ath","From H2883; properly a seal (as sunk into the wax), that is, signet (for sealing); hence (generically) a ring of any kind: - ring."]},{"k":"H2886","v":["טַבְרִמּוֹן","Ṭabrimmôwn","tab-rim-mone'","From H2895 and H7417; pleasing (to) Rimmon; Tabrimmon, a Syrian: - Tabrimmon."]},{"k":"H2887","v":["טֵבֶת","Ṭêbeth","tay'-beth","Probably of foreign derivation; Tebeth, the tenth Hebrew month: - Tebeth."]},{"k":"H2888","v":["טַבַּת","Ṭabbath","tab-bath'","Of uncertain derivation; Tabbath, a place East of the Jordan: - Tabbath."]},{"k":"H2889","v":["טָהוֹר","ṭâhôwr","taw-hore'","From H2891; pure (in a physical, chemical, ceremonial or moral sense): - clean, fair, pure (-ness)."]},{"k":"H2890","v":["טְהוֹר","ṭᵉhôwr","teh-hore'","From H2891; purity: - pureness."]},{"k":"H2891","v":["טָהֵר","ṭâhêr","taw-hare'","A primitive root; properly to be bright; that is, (by implication) to be pure (physically sound, clear, unadulterated; Levitically uncontaminated; morally innocent or holy): - be (make, make self, pronounce) clean, cleanse (self), purge, purify (-ier, self)."]},{"k":"H2892","v":["טֹהַר","ṭôhar","to'-har","From H2891; literally brightness; ceremonially purification: - clearness, glory, purifying."]},{"k":"H2893","v":["טׇהֳרָה","ṭohŏrâh","toh-or-aw'","Feminine of H2892; ceremonial purification; moral purity: -  X is cleansed, cleansing, purification (-fying)."]},{"k":"H2894","v":["טוּא","ṭûwʼ","too","A primitive root; to sweep away: - sweep."]},{"k":"H2895","v":["טוֹב","ṭôwb","tobe","A primitive root, to be (transitively do or make) good (or well) in the widest sense: - be (do) better, cheer, be (do, seem) good, (make), goodly, X please, (be, do, go, play) well."]},{"k":"H2896","v":["טוֹב","ṭôwb","tobe","From H2895; good (as an adjective) in the widest sense; used likewise as a noun, both in the masculine and the feminine, the singular and the plural (good, a good or good thing, a good man or woman; the good, goods or good things, good men or women), also as an adverb (well): - beautiful, best, better, bountiful, cheerful, at ease, X fair (word), (be in) favour, fine, glad, good (deed, -lier, liest, -ly, -ness, -s), graciously, joyful, kindly, kindness, liketh (best), loving, merry, X most, pleasant, + pleaseth, pleasure, precious, prosperity, ready, sweet, wealth, welfare, (be) well ([-favoured])."]},{"k":"H2897","v":["טוֹב","Ṭôwb","tobe","The same as H2896; good; Tob, a region apparently East of the Jordan: - Tob."]},{"k":"H2898","v":["טוּב","ṭûwb","toob","From H2895; good (as a noun), in the widest sense, especially goodness (superlatively concrete, the best), beauty, gladness, welfare: - fair, gladness, good (-ness, thing, -s), joy, go well with."]},{"k":"H2899","v":["טוֹב אֲדֹנִיָּהוּ","Ṭôwb ʼĂdônîyâhûw","tobe ado-nee-yah'-hoo","From H2896 and H138; pleasing (to) Adonijah; Tob-Adonijah, an Israelite: - Tob-adonijah."]},{"k":"H2900","v":["טוֹבִיָּה","Ṭôwbîyâh","to-bee-yaw'","From H2896 and H3050; goodness of Jehovah; Tobijah, the name of three Israelites and of one Samaritan: - Tobiah, Tobijah."]},{"k":"H2901","v":["טָוָה","ṭâvâh","taw-vaw'","A primitive root; to spin: - spin."]},{"k":"H2902","v":["טוּחַ","ṭûwach","too'-akh","A primitive root; to smear, especially with lime: - daub, overlay, plaister, smut."]},{"k":"H2903","v":["טוֹפָפָה","ṭôwphâphâh","to-faw-faw'","From an unused root meaning to go around or bind; a fillet for the forehead: - frontlet."]},{"k":"H2904","v":["טוּל","ṭûwl","tool","A primitive root; to pitch over or reel; hence (transitively) to cast down or out: - carry away, (utterly) cast (down, forth, out), send out."]},{"k":"H2905","v":["טוּר","ṭûwr","toor","From an unused root meaning to range in a regular manner; a row; hence a wall: - row."]},{"k":"H2906","v":["טוּר","ṭûwr","toor","(Chaldee); corresponding to H6697; a rock or hill: - mountain."]},{"k":"H2907","v":["טוּשׂ","ṭûws","toos","A primitive root; to pounce as a bird of prey: - haste."]},{"k":"H2908","v":["טְוָת","ṭᵉvâth","tev-awth'","(Chaldee); from a root corresponding to H2901; hunger (as twisting): - fasting."]},{"k":"H2909","v":["טָחָה","ṭâchâh","taw-khaw'","A primitive root; to stretch a bow, as an archer: - [bow-] shot."]},{"k":"H2910","v":["טֻחָה","ṭuchâh","too-khaw'","From H2909 (or H2902) in the sense of overlaying; (in the plural only) the kidneys (as being covered); hence (figuratively) the inmost thought: - inward parts."]},{"k":"H2911","v":["טְחוֹן","ṭᵉchôwn","tekh-one'","From H2912; a hand mill; hence a millstone: - to grind."]},{"k":"H2912","v":["טָחַן","ṭâchan","taw-khan'","A primitive root; to grind meal; hence to be a concubine (that being their employment): - grind (-er)."]},{"k":"H2913","v":["טַחֲנָה","ṭachănâh","takh-an-aw'","From H2912; a hand mill; hence (figuratively) chewing: - grinding."]},{"k":"H2914","v":["טְחֹר","ṭᵉchôr","tekh-ore'","From an unused root meaning to burn; a boil or ulcer (from the inflammation), especially a tumor in the anus or pudenda (the piles): - emerod."]},{"k":"H2915","v":["טִיחַ","ṭîyach","tee'akh","From (the equivalent of) H2902; mortar or plaster: - daubing."]},{"k":"H2916","v":["טִיט","ṭîyṭ","teet","From an unused root meaning apparently to be sticky (rather perhaps a denominative from H2894, through the idea of dirt to be swept away); mud or clay; figuratively calamity: - clay, dirt, mire."]},{"k":"H2917","v":["טִין","ṭîyn","teen","(Chaldee); perhaps by interchange for a word corresponding to H2916; clay: - miry."]},{"k":"H2918","v":["טִירָה","ṭîyrâh","tee-raw'","Feminine of (an equivalent to) H2905; a wall; hence a fortress or a hamlet: - (goodly) castle, habitation, palace, row."]},{"k":"H2919","v":["טַל","ṭal","tal","From H2926; dew (as covering vegetation): - dew."]},{"k":"H2920","v":["טַל","ṭal","tal","(Chaldee); the same as H2919: - dew."]},{"k":"H2921","v":["טָלָא","ṭâlâʼ","taw-law'","A primitive root; properly to cover with pieces; that is, (by implication) to spot or variegate (as tapestry): - clouted, with divers colours, spotted."]},{"k":"H2922","v":["טְלָא","ṭᵉlâʼ","tel-aw'","Apparently from H2921 in the (original) sense of covering (for protection); a lamb (compare H2924): - lamb."]},{"k":"H2923","v":["טְלָאִים","Ṭᵉlâʼîym","tel-aw-eem'","From the plural of H2922; lambs; Telaim, a place in Palestine: - Telaim."]},{"k":"H2924","v":["טָלֶה","ṭâleh","taw-leh'","By variation for H2922; a lamb: - lamb."]},{"k":"H2925","v":["טַלְטֵלָה","ṭalṭêlâh","tal-tay-law'","From H2904; overthrow or rejection: - captivity."]},{"k":"H2926","v":["טָלַל","ṭâlal","taw-lal'","A primitive root; properly to strew over, that is, (by implication) to cover in or plate (with beams): - cover."]},{"k":"H2927","v":["טְלַל","ṭᵉlal","tel-al'","(Chaldee); corresponding to H2926; to cover with shade: - have a shadow."]},{"k":"H2928","v":["טֶלֶם","Ṭelem","teh'-lem","From an unused root meaning to break up or treat violently; oppression; Telem, the name of a place in Idumaea, also of a temple doorkeeper: - Telem."]},{"k":"H2929","v":["טַלְמוֹן","Ṭalmôwn","tal-mone'","From the same as H2728; oppressive; Talmon, a temple doorkeeper: - Talmon."]},{"k":"H2930","v":["טָמֵא","ṭâmêʼ","taw-may'","A primitive root; to be foul, especially in a ceremonial or moral sense (contaminated): - defile (self), pollute (self), be (make, make self, pronounce) unclean, X utterly."]},{"k":"H2931","v":["טָמֵא","ṭâmêʼ","taw-may'","From H2930; foul in a religious sense: - defiled, + infamous, polluted (-tion), unclean."]},{"k":"H2932","v":["טֻמְאָה","ṭumʼâh","toom-aw'","From H2980; religious impurity: - filthiness, unclean (-ness)."]},{"k":"H2933","v":["טָמָה","ṭâmâh","taw-maw'","A collateral form of H2930; to be impure in a religious sense: - be defiled, be reputed vile."]},{"k":"H2934","v":["טָמַן","ṭâman","taw-man'","A primitive root; to hide (by covering over): - hide, lay privily, in secret."]},{"k":"H2935","v":["טֶנֶא","ṭeneʼ","teh'-neh","From an unused root probably meaning to weave; a basket (of interlaced osiers): - basket."]},{"k":"H2936","v":["טָנַף","ṭânaph","taw-naf'","A primitive root; to soil: - defile."]},{"k":"H2937","v":["טָעָה","ṭâʻâh","taw-aw'","A primitive root; to wander; causatively to lead astray: - seduce."]},{"k":"H2938","v":["טָעַם","ṭâʻam","taw-am'","A primitive root; to taste; figuratively to perceive: -  X but, perceive, taste."]},{"k":"H2939","v":["טְעַם","ṭᵉʻam","teh-am'","(Chaldee); corresponding to H2938; to taste; causatively to feed: - make to eat, feed."]},{"k":"H2940","v":["טַעַם","ṭaʻam","tah'-am","From H2938; properly a taste, that is, (figuratively) perception; by implication intelligence; transitively a mandate: - advice, behaviour, decree, discretion, judgment, reason, taste, understanding."]},{"k":"H2941","v":["טַעַם","ṭaʻam","tah'-am","(Chaldee); from H2939; properly a taste, that is, (as in H2940) a judicial sentence: - account, X to be commanded, commandment, matter."]},{"k":"H2942","v":["טְעֵם","ṭᵉʻêm","teh-ame'","(Chaldee); from H2939, and equivalent to H2941; properly flavor; figuratively judgment (both subjectively and objectively); hence account (both subjectively and objectively): -    + chancellor, + command, commandment, decree, + regard, taste, wisdom."]},{"k":"H2943","v":["טָעַן","ṭâʻan","taw-an'","A primitive root; to load a beast: - lade."]},{"k":"H2944","v":["טָעַן","ṭâʻan","taw-an'","A primitive root; to stab: - thrust through."]},{"k":"H2945","v":["טַף","ṭaph","taf","From H2952 (perhaps referring to the tripping gait of children); a family (mostly used collectively in the singular): - (little) children (ones), families."]},{"k":"H2946","v":["טָפַח","ṭâphach","taw-fakh'","A primitive root; to flatten out or extend (as a tent); figuratively to nurse a child (as promotive of growth); or perhaps a denominative from H2947, from dandling on the palms: - span, swaddle."]},{"k":"H2947","v":["טֵפַח","ṭêphach","tay'-fakh","From H2946; a spread of the hand, that is, a palm breadth (not “span” of the fingers); architecturally a corbel (as a supporting palm): - coping, hand-breadth."]},{"k":"H2948","v":["טֹפַח","ṭôphach","to'-fakh","From H2946 (the same as H2947): - hand-breadth (broad)."]},{"k":"H2949","v":["טִפֻּח","ṭippuch","tip-pookh'","From H2946; nursing: - span long."]},{"k":"H2950","v":["טָפַל","ṭâphal","taw-fal'","A primitive root; properly to stick on as a patch; figuratively to impute falsely: - forge (-r), sew up."]},{"k":"H2951","v":["טִפְסַר","ṭiphçar","tif-sar'","Of foreign derivation; a military governor: - captain."]},{"k":"H2952","v":["טָפַף","ṭâphaph","taw-faf'","A primitive root; apparently to trip (with short steps) coquettishly: - mince."]},{"k":"H2953","v":["טְפַר","ṭᵉphar","tef-ar'","(Chaldee); from a root corresponding to H6852, and meaning the same as H6856; a finger nail; also a hoof or claw: - nail."]},{"k":"H2954","v":["טָפַשׁ","ṭâphash","taw-fash'","A primitive root; properly apparently to be thick; figuratively to be stupid: - be fat."]},{"k":"H2955","v":["טָפַת","Ṭâphath","taw-fath'","Probably from H5197; a dropping (of ointment); Taphath, an Israelitess: - Taphath."]},{"k":"H2956","v":["טָרַד","ṭârad","taw-rad'","A primitive root; to drive on; figuratively to follow close: - continual."]},{"k":"H2957","v":["טְרַד","ṭᵉrad","ter-ad'","(Chaldee); corresponding to H2956; to expel: - drive."]},{"k":"H2958","v":["טְרוֹם","ṭᵉrôwm","ter-ome'","A variation of H2962; not yet: - before."]},{"k":"H2959","v":["טָרַח","ṭârach","taw-rakh'","A primitive root; to overburden: - weary."]},{"k":"H2960","v":["טֹרַח","ṭôrach","to'-rakh","From H2959; a burden: - cumbrance, trouble."]},{"k":"H2961","v":["טָרִי","ṭârîy","taw-ree'","From an unused root apparently meaning to be moist; properly dripping; hence fresh (that is, recently made such): - new, putrefying."]},{"k":"H2962","v":["טֶרֶם","ṭerem","teh'-rem","From an unused root apparently meaning to interrupt or suspend; properly non-occurrence; used adverbially not yet or before: - before, ere, not yet."]},{"k":"H2963","v":["טָרַף","ṭâraph","taw-raf'","A primitive root; to pluck off or pull to pieces; causatively to supply with food (as in morsels): - catch, X without doubt, feed, ravin, rend in pieces, X surely, tear (in pieces)."]},{"k":"H2964","v":["טֶרֶף","ṭereph","teh'-ref","From H2963; something torn, that is, a fragment, for example a fresh leaf, prey, food: - leaf, meat, prey, spoil."]},{"k":"H2965","v":["טָרָף","ṭârâph","taw-rawf'","From H2963; recently torn off, that is, fresh: - pluckt off."]},{"k":"H2966","v":["טְרֵפָה","ṭᵉrêphâh","ter-ay-faw'","Feminine (collectively) of H2964; prey, that is, flocks devoured by animals: - ravin, (that which was) torn (of beasts, in pieces)."]},{"k":"H2967","v":["טַרְפְּלַי","Ṭarpᵉlay","tar-pel-ah'-ee","(Chaldee); from a name of foreign derivation; a Tarpelite (collectively) or inhabitant of Tarpel, a place in Assyria: - Tarpelites."]},{"k":"H2968","v":["יָאַב","yâʼab","yaw-ab'","A primitive root; to desire: - long."]},{"k":"H2969","v":["יָאָה","yâʼâh","yaw-aw'","A primitive root; to be suitable: - appertain."]},{"k":"H2970","v":["יַאֲזַנְיָה","Yaʼăzanyâh","yah-az-an-yaw'","From H238 and H3050; heard of Jah; Jaazanjah, the name of four Israelites: - Jaazaniah. Compare H3153."]},{"k":"H2971","v":["יָאִיר","Yâʼîyr","yaw-ere'","From H215; enlightener; Jair, the name of four Israelites: - Jair."]},{"k":"H2972","v":["יָאִרִי","Yâʼirîy","yaw-ee-ree'","Patronymic from H2971; a Jairite or descendant of Jair: - Jairite."]},{"k":"H2973","v":["יָאַל","yâʼal","yaw-al'","A primitive root; properly to be slack, that is, (figuratively) to be foolish: - dote, be (become, do) foolish (-ly)."]},{"k":"H2974","v":["יָאַל","yâʼal","yaw-al'","A primitive root (probably rather the same as H2973 through the idea of mental weakness); properly to yield, especially assent; hence (positively) to undertake as an act of volition: - assay, begin, be content, please, take upon, X willingly, would."]},{"k":"H2975","v":["יְאֹר","yᵉʼôr","yeh-ore'","Of Egyptian origin; a channel, for example a fosse, canal, shaft; specifically the Nile, as the one river of Egypt, including its collateral trenches; also the Tigris, as the main river of Assyria: - brook, flood, river, stream."]},{"k":"H2976","v":["יָאַשׁ","yâʼash","yaw-ash'","A primitive root; to desist, that is, (figuratively) to despond: - (cause to) despair, one that is desperate, be no hope."]},{"k":"H2977","v":["יֹאשִׁיָּה","Yôʼshîyâh","yo-shee-yaw'","From the same root as H803 and H3050; founded of Jah; Joshijah, the name of two Israelites: - Josiah."]},{"k":"H2978","v":["יְאִתוֹן","yᵉʼithôwn","yeh-ee-thone'","From H857; an entry: - entrance."]},{"k":"H2979","v":["יְאָתְרַי","yᵉʼâthᵉray","yeh-aw-ther-ah'ee","From the same as H871; stepping; Jeatherai, an Israelite: - Jeaterai."]},{"k":"H2980","v":["יָבַב","yâbab","yaw-bab","A primitive root; to bawl: - cry out."]},{"k":"H2981","v":["יְבוּל","yᵉbûwl","yeb-ool'","From H2986; produce, that is, a crop or (figuratively) wealth: - fruit, increase."]},{"k":"H2982","v":["יְבוּס","Yᵉbûwç","yeb-oos'","From H947; trodden, that is, threshing place; Jebus, the aboriginal name of Jerusalem: - Jebus."]},{"k":"H2983","v":["יְבוּסִי","Yᵉbûwçîy","yeb-oo-see'","Patrial from H2982; a Jebusite or inhabitant of Jebus: - Jebusite(-s)."]},{"k":"H2984","v":["יִבְחַר","Yibchar","yib-khar'","From H977; choice; Jibchar, an Israelite: - Ibhar."]},{"k":"H2985","v":["יָבִין","Yâbîyn","yaw-bene'","From H995; intelligent; Jabin, the name of two Canaanitish kings: - Jabin."]},{"k":"H2986","v":["יָבַל","yâbal","yaw-bal'","A primitive root; properly to flow; causatively to bring (especially with pomp): - bring (forth), carry, lead (forth)."]},{"k":"H2987","v":["יְבַל","yᵉbal","yeb-al'","(Chaldee); corresponding to H2986; to bring: - bring, carry."]},{"k":"H2988","v":["יָבָל","yâbâl","yaw-bawl'","From H2986; a stream: - [water-] course, stream."]},{"k":"H2989","v":["יָבָל","Yâbâl","yaw-bawl'","The same as H2988; Jabal, an antediluvian: - Jabal."]},{"k":"H2990","v":["יַבֵּל","yabbêl","yab-bale'","From H2986; having running sores: - wen."]},{"k":"H2991","v":["יִבְלְעָם","Yiblᵉʻâm","yib-leh-awm'","From H1104 and H5971; devouring people; Jibleam, a place in Palestine: - Ibleam."]},{"k":"H2992","v":["יָבַם","yâbam","yaw-bam'","A primitive root of doubtful meaning; used only as a denominative from H2993; to marry a (deceased) brother’s widow: - perform the duty of a husband’s brother, marry."]},{"k":"H2993","v":["יָבָם","yâbâm","yaw-bawm'","From (the original of) H2992; a brother-in-law: - husband’sbrother."]},{"k":"H2994","v":["יְבֵמֶת","Yᵉbêmeth","yeb-ay'-meth","Feminine participle of H2992; a sister-in-law: - brother’s wife, sister in law."]},{"k":"H2995","v":["יַבְנְאֵל","Yabnᵉʼêl","yab-neh-ale'","From H1129 and H410; built of God; Jabneel, the name of two places in Palestine: - Jabneel."]},{"k":"H2996","v":["יַבְנֶה","Yabneh","yab-neh'","From H1129; a building; Jabneh, a place in Palestine: - Jabneh."]},{"k":"H2997","v":["יִבְנְיָה","Yibnᵉyâh","yib-neh-yaw'","From H1129 and H3050; built of Jah; Jibnejah, an Israelite: - Ibneiah."]},{"k":"H2998","v":["יִבְנִיָּה","Yibnîyâh","yib-nee-yaw'","From H1129 and H3050; building of Jah; Jibnijah, an Israelite: - Ibnijah."]},{"k":"H2999","v":["יַבֹּק","Yabbôq","yab-boke'","Probably from H1238; pouring forth; Jabbok, a river East of the Jordan: - Jabbok."]},{"k":"H3000","v":["יְבֶרֶכְיָהוּ","Yᵉberekyâhûw","yeb-eh-rek-yaw'-hoo","From H1288 and H3050; blessed of Jah; Jeberekjah, an Israelite: - Jeberechiah."]},{"k":"H3001","v":["יָבֵשׁ","yâbêsh","yaw-bashe'","A primitive root; to be ashamed, confused or disappointed; also (as failing) to dry up (as water) or wither (as herbage): - be ashamed, clean, be confounded, (make) dry (up), (do) shame (-fully), X utterly, wither (away)."]},{"k":"H3002","v":["יָבֵשׁ","yâbêsh","yaw-bashe'","From H3001; dry: - dried (away), dry."]},{"k":"H3003","v":["יָבֵשׁ","Yâbêsh","yaw-bashe'","The same as H3002.    (Also, often with the addition of H1568, i.e. Jabesh of Gilad); Jabesh,    the name of an Israelite and of a place in Palestine: - Jabesh ([-Gilead])."]},{"k":"H3004","v":["יַבָּשָׁה","yabbâshâh","yab-baw-shaw'","From H3001; dry ground: - dry (ground, land)."]},{"k":"H3005","v":["יִבְשָׂם","Yibsâm","yib-sawm'","From the same as H1314; fragrant; Jibsam, an Israelite: - Jibsam."]},{"k":"H3006","v":["יַבֶּשֶׁת","yabbesheth","yab-beh'-sheth","A variation of H3004; dry ground: - dry land."]},{"k":"H3007","v":["יַבֶּשֶׁת","yabbesheth","yab-beh'-sheth","(Chaldee); corresponding to H3006; dry land: - earth."]},{"k":"H3008","v":["יִגְאָל","Yigʼâl","yig-awl'","From H1350; avenger; Jigal, the name of three Israelite: - Igal, Igeal."]},{"k":"H3009","v":["יָגַב","yâgab","yaw-gab'","A primitive root; to dig or plough: - husbandman."]},{"k":"H3010","v":["יָגֵב","yâgêb","yaw-gabe'","From H3009; a ploughed field: - field."]},{"k":"H3011","v":["יׇגְבְּהָה","Yogbᵉhâh","yog-beh-haw'","Feminine from H1361; hillock; Jogbehah, a place East of the Jordan: - Jogbehah."]},{"k":"H3012","v":["יִגְדַּלְיָהוּ","Yigdalyâhûw","yig-dal-yaw'-hoo","From H1431 and H3050; magnified of Jah; Jigdaljah, an Israelite: - Igdaliah."]},{"k":"H3013","v":["יָגָה","yâgâh","yaw-gaw'","A primitive root; to grieve: - afflict, cause grief, grieve, sorrowful, vex."]},{"k":"H3014","v":["יָגָה","yâgâh","yaw-gaw'","A primitive root (probably rather the same as H3013 through the common idea of dissatisfaction); to push away: - be removed."]},{"k":"H3015","v":["יָגוֹן","yâgôwn","yaw-gohn'","From H3013; affliction: - grief, sorrow."]},{"k":"H3016","v":["יָגוֹר","yâgôwr","yaw-gore'","From H3025; fearful: - afraid, fearest."]},{"k":"H3017","v":["יָגוּר","Yâgûwr","yaw-goor'","Probably from H1481; a lodging; Jagur, a place in Palestine: - Jagur."]},{"k":"H3018","v":["יְגִיעַ","yᵉgîyaʻ","yeg-ee'-ah","From H3021; toil; hence a work, produce, property (as the result of labor): - labour, work."]},{"k":"H3019","v":["יָגִיעַ","yâgîyaʻ","yaw-ghee'-ah","From H3021; tired: - weary."]},{"k":"H3020","v":["יׇגְלִי","Yoglîy","yog-lee'","From H1540; exiled; Jogli, an Israelite: - Jogli."]},{"k":"H3021","v":["יָגַע","yâgaʻ","yaw-gah'","A primitive root; properly to gasp; hence to be exhausted, to tire, to toil: - faint, (make to) labour, (be) weary."]},{"k":"H3022","v":["יָגָע","yâgâʻ","yaw-gaw'","From H3021; earnings (as the product of toil): - that which he laboured for."]},{"k":"H3023","v":["יָגֵעַ","yâgêaʻ","yaw-gay'-ah","From H3021; tired; hence (transitively) tiresome: - full of labour, weary."]},{"k":"H3024","v":["יְגִעָה","yᵉgiʻâh","yeg-ee-aw'","Feminine of H3019; fatigue: - weariness."]},{"k":"H3025","v":["יָגֹר","yâgôr","yaw-gore'","A primitive root; to fear: - be afraid, fear."]},{"k":"H3026","v":["יְגַר שַׂהֲדוּתָא","Yᵉgar Sahădûwthâʼ","yegar' sah-had-oo-thaw'","(Chaldee); from a word derived from an unused root (meaning to gather) and a derivative of a root corresponding to H7717; heap of the testimony; Jegar-Sahadutha, a cairn East of the Jordan: - Jegar-Sahadutha."]},{"k":"H3027","v":["יָד","yâd","yawd","A primitive word; a hand (the open one (indicating power, means, direction, etc.), in distinction from H3709, the closed one); used (as noun, adverb, etc.) in a great variety of applications, both literally and figuratively, both proximate and remote: -    (+ be) able, X about, + armholes, at, axletree, because of, beside, border, X bounty, + broad, [broken-] handed, X by, charge, coast, + consecrate, + creditor, custody, debt, dominion, X enough, + fellowship, force, X from, hand [-staves, -y work], X he, himself, X in, labour, + large, ledge, [left-] handed, means, X mine, ministry, near, X of, X order, ordinance, X our, parts, pain, power, X presumptuously, service, side, sore, state, stay, draw with strength, stroke, + swear, terror, X thee, X by them, X them-selves, X thine own, X thou, through, X throwing, + thumb, times, X to, X under, X us, X wait on, [way-] side, where, + wide, X with (him, me, you), work, + yield, X your-selves."]},{"k":"H3028","v":["יַד","yad","yad","(Chaldee); corresponding to H3027: - hand, power."]},{"k":"H3029","v":["יְדָא","yᵉdâʼ","yed-aw'","(Chaldee); corresponding to H3034; to praise: - (give) thank (-s)."]},{"k":"H3030","v":["יִדְאֲלָה","Yidʼălâh","yid-al-aw'","Of uncertain derivation Jidalah, a place in Palestine: - Idalah."]},{"k":"H3031","v":["יִדְבָּשׁ","Yidbâsh","yid-bawsh'","From the same as H1706; perhaps honeyed; Jidbash, an Israelite: - Idbash."]},{"k":"H3032","v":["יָדַד","yâdad","yaw-dad'","A primitive root; properly to handle (compare H3034), that is, to throw, for example lots: - cast."]},{"k":"H3033","v":["יְדִדוּת","yᵉdidûwth","yed-ee-dooth'","From H3039; properly affection; concretely a darling object: - dearly beloved."]},{"k":"H3034","v":["יָדָה","yâdâh","yaw-daw'","A primitive root; used only as denominative from H3027; literally to use (that is, hold out) the hand; physically to throw (a stone, an arrow) at or away; especially to revere or worship (with extended hands); intensively to bemoan (by wringing the hands): - cast (out), (make) confess (-ion), praise, shoot, (give) thank (-ful, -s, -sgiving)."]},{"k":"H3035","v":["יִדּוֹ","Yiddôw","yid-do'","From H3034; praised; Jiddo, an Israelite: - Iddo."]},{"k":"H3036","v":["יָדוֹן","Yâdôwn","yaw-done'","From H3034; thankful; Jadon, an Israelite: - Jadon."]},{"k":"H3037","v":["יַדּוּעַ","Yaddûwaʻ","yad-doo'-ah","From H3045; knowing; Jaddua, the name of two Israelite: - Jaddua."]},{"k":"H3038","v":["יְדוּתוּן","Yᵉdûwthûwn","yed-oo-thoon'","Probably from H3034; laudatory; Jeduthun, an Israelite: - Jeduthun."]},{"k":"H3039","v":["יְדִיד","yᵉdîyd","yed-eed'","From the same as H1730; loved: - amiable, (well-) beloved, loves."]},{"k":"H3040","v":["יְדִידָה","Yᵉdîydâh","yed-ee-daw'","Feminine of H3039; beloved; Jedidah, an Israelitess: - Jedidah."]},{"k":"H3041","v":["יְדִידְיָה","Yᵉdîydᵉyâh","yed-ee-deh-yaw'","From H3089 and H3050; beloved of Jah; Jedidejah, a name of Solomon: - Jedidiah."]},{"k":"H3042","v":["יְדָיָה","Yᵉdâyâh","yed-aw-yaw'","From H3034 and H3050; praised of Jah; Jedajah, the name of two Israelites: - Jedaiah."]},{"k":"H3043","v":["יְדִיעֲאֵל","Yᵉdîyʻăʼêl","yed-ee-ah-ale'","From H3045 and H410; knowing God; Jediael, the name of three Israelites: - Jediael."]},{"k":"H3044","v":["יִדְלָף","Yidlâph","yid-lawf'","From H1811; tearful; Jidlaph, a Mesopotamian: - Jidlaph."]},{"k":"H3045","v":["יָדַע","yâdaʻ","yaw-dah'","A primitive root; to know (properly to ascertain by seeing); used in a great variety of senses, figuratively, literally, euphemistically and inferentially (including observation, care, recognition; and causatively instruction, designation, punishment, etc.): - acknowledge, acquaintance (-ted with), advise, answer, appoint, assuredly, be aware, [un-] awares, can [-not], certainly, for a certainty, comprehend, consider, X could they, cunning, declare, be diligent, (can, cause to) discern, discover, endued with, familiar friend, famous, feel, can have, be [ig-] norant, instruct, kinsfolk, kinsman, (cause to, let, make) know, (come to give, have, take) knowledge, have [knowledge], (be, make, make to be, make self) known, + be learned, + lie by man, mark, perceive, privy to, X prognosticator, regard, have respect, skilful, shew, can (man of) skill, be sure, of a surety, teach, (can) tell, understand, have [understanding], X will be, wist, wit, wot."]},{"k":"H3046","v":["יְדַע","yᵉdaʻ","yed-ah'","(Chaldee); corresponding to H3045: - certify, know, make known, teach."]},{"k":"H3047","v":["יָדָע","Yâdâʻ","yaw-daw'","From H3045; knowing; Jada, an Israelite: - Jada."]},{"k":"H3048","v":["יְדַעְיָה","Yᵉdaʻyâh","yed-ah-yaw'","From H3045 and H3050; Jah has known; Jedajah, the name of two Israelites: - Jedaiah."]},{"k":"H3049","v":["יִדְּעֹנִי","yiddᵉʻônîy","yid-deh-o-nee'","From H3045; properly a knowing one; specifically a conjurer; (by implication) a ghost: - wizard."]},{"k":"H3050","v":["יָהּ","Yâhh","yaw","Contracted for H3068, and meaning the same; Jah, the sacred name: - Jah, the Lord, most vehement. Cp. names in “-iah,” “-jah.”"]},{"k":"H3051","v":["יָהַב","yâhab","yaw-hab'","A primitive root; to give (whether literally or figuratively); generally to put; imperatively (reflexively) come: - ascribe, bring, come on, give, go, set, take."]},{"k":"H3052","v":["יְהַב","yᵉhab","yeh-hab'","(Chaldee); corresponding to H3051: - deliver, give, lay, + prolong, pay, yield."]},{"k":"H3053","v":["יְהָב","yᵉhâb","ye-hawb'","From H3051; properly what is given (by Providence), that is, a lot: - burden."]},{"k":"H3054","v":["יָהַד","yâhad","yaw-had'","Denominative from a form corresponding to H3061; to Judaize, that is, become Jewish: - become Jews."]},{"k":"H3055","v":["יְהֻד","Yᵉhud","yeh-hood'","A briefer form of one corresponding to H3061; Jehud, a place in Palestine: - Jehud."]},{"k":"H3056","v":["יֶהְדַי","Yehday","yeh-dah'-ee","Perhaps from a form corresponding to H3061; Judaistic; Jehdai, an Israelite: - Jehdai."]},{"k":"H3057","v":["יְהֻדִיָּה","Yᵉhudîyâh","yeh-hoo-dee-yaw'","Feminine of H3064; Jehudijah, a Jewess: - Jehudijah."]},{"k":"H3058","v":["יֵהוּא","Yêhûwʼ","yay-hoo'","From H3068 and H1931; Jehovah (is) He; Jehu, the name of five Israelites: - Jehu."]},{"k":"H3059","v":["יְהוֹאָחָז","Yᵉhôwʼâchâz","yeh-ho-aw-khawz'","From H3068 and H270; Jehovah seized; Jehoachaz, the name of three Israelites: - Jehoahaz. Compare H3099."]},{"k":"H3060","v":["יְהוֹאָשׁ","Yᵉhôwʼâsh","yeh-ho-awsh'","From H3068 and (perhaps) H784; Jehovah fired; Jehoash, the name of two Israelite kings: - Jehoash Compare H3101."]},{"k":"H3061","v":["יְהוּד","Yᵉhûwd","yeh-hood'","(Chaldee); contracted from a form. corresponding to H3063; properly Judah, hence Judaea: - Jewry, Judah, Judea."]},{"k":"H3062","v":["יְהוּדָאִי","Yᵉhûwdâʼîy","yeh-hoo-daw-ee'","(Chaldee); patrial from H3061; a Jehudaite (or Judaite), that is, Jew: - Jew."]},{"k":"H3063","v":["יְהוּדָה","Yᵉhûwdâh","yeh-hoo-daw'","From H3034; celebrated; Jehudah (or Judah), the name of five Israelites; also of the tribe descended from the first, and of its territory: - Judah."]},{"k":"H3064","v":["יְהוּדִי","Yᵉhûwdîy","yeh-hoo-dee'","Patronymic from H3063; a Jehudite (that is, Judaite or Jew), or descendant of Jehudah (that is, Judah): - Jew."]},{"k":"H3065","v":["יְהוּדִי","Yᵉhûwdîy","yeh-hoo-dee'","The same as H3064; Jehudi, an Israelite: - Jehudi."]},{"k":"H3066","v":["יְהוּדִית","Yᵉhûwdîyth","yeh-hoo-deeth'","Feminine of H3064; the Jewish (used adverbially) language: - in the Jews’ language."]},{"k":"H3067","v":["יְהוּדִית","Yᵉhûwdîyth","yeh-ho-deeth'","The same as H3066; Jewess; Jehudith, a Canaanitess: - Judith."]},{"k":"H3068","v":["יְהֹוָה","Yᵉhôvâh","yeh-ho-vaw'","From H1961; (the) self Existent or eternal; Jehovah, Jewish national name of God: - Jehovah, the Lord. Compare H3050, H3069."]},{"k":"H3069","v":["יְהֹוִה","Yᵉhôvih","yeh-ho-vee'","A variation of H3068 (used after H136, and pronounced by Jews as H430, in order to prevent the repetition of the same sound, since they elsewhere pronounce H3068 as H136): - God."]},{"k":"H3070","v":["יְהֹוָה יִרְאֶה","Yᵉhôvâh yirʼeh","yeh-ho-vaw' yir-eh'","From H3068 and H7200; Jehovah will see (to it); Jehovah-Jireh, a symbolical name for Mt. Moriah: - Jehovah-jireh."]},{"k":"H3071","v":["יְהֹוָה נִסִּי","Yᵉhôvâh niççîy","yeh-ho-vaw' nis-see'","From H3068 and H5251 with pronominal suffix.; Jehovah (is) my banner; Jehovah-Nissi, a symbolical name of an altar in the Desert: - Jehovah-nissi."]},{"k":"H3072","v":["יְהֹוָה צִדְקֵנוּ","Yᵉhôvâh tsidqênûw","ye-ho-vaw' tsid-kay'-noo","From H3068 and H6664 with pronominal suffix.; Jehovah (is) our right; Jehovah-Tsidkenu, a symbolical epithet of the Messiah and of Jerusalem: - the Lord our righteousness."]},{"k":"H3073","v":["יְהֹוָה שָׁלוֹם","Yᵉhôvâh shâlôwm","yeh-ho-vaw' shaw-lome'","From H3068 and H7965; Jehovah (is) peace; Jehovah-Shalom, a symbolical name of an altar in Palestine: - Jehovah-shalom."]},{"k":"H3074","v":["יְהֹוָה שָׁמָּה","Yᵉhôvâh shâmmâh","yeh-ho-vaw' shawm'-maw","From H3068 and H8038 with directive enclitic; Jehovah (is) thither; Jehovah-Shammah, a symbolical title of Jerusalem: - Jehovah-shammah."]},{"k":"H3075","v":["יְהוֹזָבָד","Yᵉhôwzâbâd","yeh-ho-zaw-bawd'","From H3068 and H2064; Jehovah-endowed; Jehozabad, the name of three Israelites: - Jehozabad. Compare H3107."]},{"k":"H3076","v":["יְהוֹחָנָן","Yᵉhôwchânân","yeh-ho-khaw-nawn'","From H3068 and H2603; Jehovah-favored; Jehochanan, the name of eight Israelites: - Jehohanan, Johanan. Compare H3110."]},{"k":"H3077","v":["יְהוֹיָדָע","Yᵉhôwyâdâʻ","yeh-ho-yaw-daw'","From H3068 and H3045; Jehovah-known; Jehojada, the name of three Israelites: - Jehoiada. Compare H3111."]},{"k":"H3078","v":["יְהוֹיָכִין","Yᵉhôwyâkîyn","yeh-ho-yaw-keen'","From H3068 and H3559; Jehovah will establish; Jehojakin, a Jewish king: - Jehoiachin. Compare H3112."]},{"k":"H3079","v":["יְהוֹיָקִים","Yᵉhôwyâqîym","yeh-ho-yaw-keem'","From H3068 abbreviated and H6965; Jehovah will raise; Jehojakim, a Jewish king: - Jehoiakim. Compare H3113."]},{"k":"H3080","v":["יְהוֹיָרִיב","Yᵉhôwyârîyb","yeh-ho-yaw-reeb'","From H3068 and H7378; Jehovah will contend; Jehojarib, the name of two Israelites: - Jehoiarib. Compare H3114."]},{"k":"H3081","v":["יְהוּכַל","Yᵉhûwkal","yeh-hoo-kal'","From H3201; potent; Jehukal, an Israelite: - Jehucal. Compare H3116."]},{"k":"H3082","v":["יְהוֹנָדָב","Yᵉhôwnâdâb","yeh-ho-naw-dawb'","From H3068 and H5068; Jehovah-largessed; Jehonadab, the name of an Israelite and of an Arab: - Jehonadab, Jonadab. Compare H3122."]},{"k":"H3083","v":["יְהוֹנָתָן","Yᵉhôwnâthân","yeh-ho-naw-thawn'","From H3068 and H5414; Jehovah-given; Jehonathan, the name of four Israelites: - Jonathan. Compare H3129."]},{"k":"H3084","v":["יְהוֹסֵף","Yᵉhôwçêph","yeh-ho-safe'","A fuller form of H3130; Jehoseph (that is, Joseph), a son of Jacob: - Joseph."]},{"k":"H3085","v":["יְהוֹעַדָּה","Yᵉhôwʻaddâh","yeh-ho-ad-daw'","From H3068 and H5710; Jehovah-adorned; Jehoaddah, an Israelite: - Jehoada."]},{"k":"H3086","v":["יְהוֹעַדִּין","Yᵉhôwʻaddîyn","yeh-ho-ad-deen'","From H3068 and H5727; Jehovah-pleased; Jehoaddin or Jehoaddan, an Israelitess: - Jehoaddan."]},{"k":"H3087","v":["יְהוֹצָדָק","Yᵉhôwtsâdâq","yeh-ho-tsaw-dawk'","From H3068 and H6663; Jehovah-righted; Jehotsadak, an Israelite: - Jehozadek, Josedech. Compare H3136."]},{"k":"H3088","v":["יְהוֹרָם","Yᵉhôwrâm","yeh-ho-rawm'","From H3068 and H7311; Jehovah-raised; Jehoram, the name of a Syrian and of three Israelites: - Jehoram, Joram. Compare H3141."]},{"k":"H3089","v":["יְהוֹשֶׁבַע","Yᵉhôwshebaʻ","yeh-ho-sheh'-bah","From H3068 and H7650; Jehovah-sworn; Jehosheba, an Israelitess: - Jehosheba. Compare H3090."]},{"k":"H3090","v":["יְהוֹשַׁבְעַת","Yᵉhôwshabʻath","yeh-ho-shab-ath'","A form of H3089; Jehoshabath, an Israelitess: - Jehoshabeath."]},{"k":"H3091","v":["יְהוֹשׁוּעַ","Yᵉhôwshûwaʻ","yeh-ho-shoo'-ah","From H3068 and H3467; Jehovah-saved; Jehoshua (that is, Joshua), the Jewish leader: - Jehoshua, Jehoshuah, Joshua. Compare H1954, H3442."]},{"k":"H3092","v":["יְהוֹשָׁפָט","Yᵉhôwshâphâṭ","yeh-ho-shaw-fawt'","From H3068 and H8199; Jehovah-judged; Jehoshaphat, the name of six Israelites; also of a valley near Jerusalem : - Jehoshaphat. Compare H3146."]},{"k":"H3093","v":["יָהִיר","yâhîyr","yaw-here'","Probably from the same as H2022; elated; hence arrogant: - haughty, proud."]},{"k":"H3094","v":["יְהַלֶּלְאֵל","Yᵉhallelʼêl","yeh-hal-lel-ale'","From H1984 and H410; praising God; Jehallelel, the name of two Israelites: - Jehaleleel, Jehalelel."]},{"k":"H3095","v":["יַהֲלֹם","yahălôm","yah-hal-ome'","From H1986 (in the sense of hardness); a precious stone, probably onyx: - diamond."]},{"k":"H3096","v":["יַהַץ","Yahats","yah'-hats","From an unused root meaning to stamp; perhaps threshing floor; Jahats or Jahtsah, a place East of the Jordan: - Jahaz, Jahazah, Jahzah."]},{"k":"H3097","v":["יוֹאָב","Yôwʼâb","yo-awb'","From H3068 and H1; Jehovah-fathered; Joab, the name of three Israelites: - Joab."]},{"k":"H3098","v":["יוֹאָח","Yôwʼâch","yo-awkh'","From H3068 and H251; Jehovah-brothered; Joach, the name of four Israelites: - Joah."]},{"k":"H3099","v":["יוֹאָחָז","Yôwʼâchâz","yo-aw-khawz'","A form of H3059; Joachaz, the name of two Israelites: - Jehoahaz, Joahaz."]},{"k":"H3100","v":["יוֹאֵל","Yôwʼêl","yo-ale'","From H3068 and H410; Jehovah (is his) God; Joel, the name of twelve Israelites: - Joel."]},{"k":"H3101","v":["יוֹאָשׁ","Yôwʼâsh","yo-awsh'","A form of H3060; Joash, the name of six Israelites: - Joash."]},{"k":"H3102","v":["יוֹב","Yôwb","yobe","Perhaps a form of H3103, but more probably by erroneous transcription for H3437; Job, an Israelite: - Job."]},{"k":"H3103","v":["יוֹבָב","Yôwbâb","yo-bawb'","From H2980; howler; Jobab, the name of two Israelites and of three foreigners: - Jobab."]},{"k":"H3104","v":["יוֹבֵל","yôwbêl","yo-bale'","Apparently from H2986; the blast of a horn (from its continuous sound); specifically the signal of the silver trumpets; hence the instrument itself and the festival thus introduced: - jubile, ram’s horn, trumpet."]},{"k":"H3105","v":["יוּבַל","yûwbal","yoo-bal'","From H2986; a stream: - river."]},{"k":"H3106","v":["יוּבַל","Yûwbal","yoo-bawl'","From H2986; stream; Jubal, an antediluvian: - Jubal."]},{"k":"H3107","v":["יוֹזָבָד","Yôwzâbâd","yo-zaw-bawd'","A form of H3075; Jozabad, the name of ten Israelites: - Josabad, Jozabad."]},{"k":"H3108","v":["יוֹזָכָר","Yôwzâkâr","yo-zaw-kawr'","From H3068 and H2142; Jehovah-remembered; Jozacar, an Israelite: - Jozacar."]},{"k":"H3109","v":["יוֹחָא","Yôwchâʼ","yo-khaw'","Probably from H3068 and a variation of H2421; Jehovah-revived; Jocha, the name of two Israelites: - Joha."]},{"k":"H3110","v":["יוֹחָנָן","Yôwchânân","yo-khaw-nawn'","A form of H3076; Jochanan, the name of nine Israelites: - Johanan."]},{"k":"H3111","v":["יוֹיָדָע","Yôwyâdâʻ","yo-yaw-daw'","A form of H3077; Jojada, the name of two Israelites: - Jehoiada, Joiada."]},{"k":"H3112","v":["יוֹיָכִין","Yôwyâkîyn","yo-yaw-keen'","A form of H3078; Jojakin, an Israelite king: - Jehoiachin."]},{"k":"H3113","v":["יוֹיָקִים","Yôwyâqîym","yo-yaw-keem'","A form of H3079; Jojakim, an Israelite: - Joiakim. Compare H3137."]},{"k":"H3114","v":["יוֹיָרִיב","Yôwyârîyb","yo-yaw-reeb'","A form of H3080; Jojarib, the name of four Israelites: - Joiarib."]},{"k":"H3115","v":["יוֹכֶבֶד","Yôwkebed","yo-keh'-bed","From H3068 contracted and H3513; Jehovah-gloried; Jokebed, the mother of Moses: - Jochebed."]},{"k":"H3116","v":["יוּכַל","Yûwkal","yoo-kal'","A form of H3081; Jukal, an Israelite: - Jucal."]},{"k":"H3117","v":["יוֹם","yôwm","yome","From an unused root meaning to be hot; a day (as the warm hours), whether literally (from sunrise to sunset, or from one sunset to the next), or figuratively (a space of time defined by an associated term), (often used adverbially): - age, + always, + chronicles, continually (-ance), daily, ([birth-], each, to) day, (now a, two) days (agone), + elder, X end, + evening, + (for) ever (-lasting, -more), X full, life, as (so) long as (. . . live), (even) now, + old, + outlived, + perpetually, presently, + remaineth, X required, season, X since, space, then, (process of) time, + as at other times, + in trouble, weather, (as) when, (a, the, within a) while (that), X whole (+ age), (full) year (-ly), + younger."]},{"k":"H3118","v":["יוֹם","yôwm","yome","(Chaldee); corresponding to H3117; a day: - day (by day), time."]},{"k":"H3119","v":["יוֹמָם","yôwmâm","yo-mawm'","From H3117; daily: - daily, (by, in the) day (-time)."]},{"k":"H3120","v":["יָוָן","Yâvân","yaw-vawn'","Probably from the same as H3196; effervescing (that is, hot and active); Javan, the name of a son of Joktan, and of the race (Ionians, that is, Greeks) descended from him, with their territory; also of a place in Arabia: - Javan."]},{"k":"H3121","v":["יָוֵן","yâvên","yaw-ven'","From the same as H3196; properly dregs (as effervescing); hence mud: - mire, miry."]},{"k":"H3122","v":["יוֹנָדָב","Yôwnâdâb","yo-naw-dawb'","A form of H3082; Jonadab, the name of an Israelite and of a Rechabite: - Jonadab."]},{"k":"H3123","v":["יוֹנָה","yôwnâh","yo-naw'","Probably from the same as H3196; a dove (apparently from the warmth of their mating): - dove, pigeon."]},{"k":"H3124","v":["יוֹנָה","Yôwnâh","yo-naw'","The same as H3123; Jonah, an Israelite: - Jonah."]},{"k":"H3125","v":["יְוָנִי","Yᵉvânîy","yev-aw-nee'","Patronymic from H3121; a Jevanite, or descendant of Javan: - Grecian."]},{"k":"H3126","v":["יוֹנֵק","yôwnêq","yo-nake'","Active participle of H3243; a sucker; hence a twig (of a tree felled and sprouting): - tender plant."]},{"k":"H3127","v":["יוֹנֶקֶת","yôwneqeth","yo-neh'-keth","Feminine of H3126; a sprout: - (tender) branch, young twig."]},{"k":"H3128","v":["יוֹנַת אֵלֶם רְחֹקִים","yôwnath ʼêlem rᵉchôqîym","yo-nath' ay'-lem rekh-o-keem'","From H3123 and H482 and the plural of H7350; dove of (the) silence (that is, dumb Israel) of (that is, among) distances (that is, strangers); the title of a ditty (used for a name of its melody): - Jonath-elem-rechokim."]},{"k":"H3129","v":["יוֹנָתָן","Yôwnâthân","yo-naw-thawn'","A form of H3083; Jonathan, the name of ten Israelites: - Jonathan."]},{"k":"H3130","v":["יוֹסֵף","Yôwçêph","yo-safe'","Future of H3254; let him add (or perhaps simply active participle adding); Joseph, the name of seven Israelites: - Joseph. Compare H3084."]},{"k":"H3131","v":["יוֹסִפְיָה","Yôwçiphyâh","yo-sif-yaw'","From active participle of H3254 and H3050; Jah (is) adding; Josiphjah, an Israelite: - Josiphiah."]},{"k":"H3132","v":["יוֹעֵאלָה","Yôwʻêʼlâh","yo-ay-law'","Perhaps feminine active participle of H3276; furthermore; Joelah, an Israelite: - Joelah."]},{"k":"H3133","v":["יוֹעֵד","Yôwʻêd","yo-ade'","Apparently active participle of H3259; appointer; Joed, an Israelite: - Joed."]},{"k":"H3134","v":["יוֹעֶזֶר","Yôwʻezer","yo-eh'-zer","From H3068 and H5828; Jehovah (is his) help; Joezer, an Israelite: - Joezer."]},{"k":"H3135","v":["יוֹעָשׁ","Yôwʻâsh","yo-awsh'","From H3068 and H5789; Jehovah-hastened; Joash, the name of two Israelites: - Joash."]},{"k":"H3136","v":["יוֹצָדָק","Yôwtsâdâq","yo-tsaw-dawk'","A form of H3087; Jotsadak, an Israelite: - Jozadak."]},{"k":"H3137","v":["יוֹקִים","Yôwqîym","yo-keem'","A form of H3113; Jokim, an Israelite: - Jokim."]},{"k":"H3138","v":["יוֹרֶה","yôwreh","yo-reh'","Active participle of H3384; sprinkling; hence a sprinkling (or autumnal showers): - first rain, former [rain]."]},{"k":"H3139","v":["יוֹרָה","Yôwrâh","yo-raw'","From H3384; rainy; Jorah, an Israelite: - Jorah."]},{"k":"H3140","v":["יוֹרַי","Yôwray","yo-rah'-ee","From H3384; rainy; Jorai, an Israelite: - Jorai."]},{"k":"H3141","v":["יוֹרָם","Yôwrâm","yo-rawm'","A form of H3088; Joram, the name of three Israelites and one Syrian: - Joram."]},{"k":"H3142","v":["יוּשַׁב חֶסֶד","Yûwshab Cheçed","yoo-shab' kheh'-sed","From H7725 and H2617; kindness will be returned; Jushab-Chesed, an Israelites: - Jushab-heshed."]},{"k":"H3143","v":["יוֹשִׁבְיָה","Yôwshibyâh","yo-shi-yaw'","From H3427 and H3050; Jehovah will cause to dwell; Joshibjah, an Israelite: - Josibiah."]},{"k":"H3144","v":["יוֹשָׁה","Yôwshâh","yo-shaw'","Probably a form of H3145; Joshah, an Israelite: - Joshah."]},{"k":"H3145","v":["יוֹשַׁוְיָה","Yôwshavyâh","yo-shav-yaw'","From H3068 and H7737; Jehovah-set; Joshavjah, an Israelite: - Joshaviah. Compare H3144."]},{"k":"H3146","v":["יוֹשָׁפָט","Yôwshâphâṭ","yo-shaw-fawt'","A form of H3092; Joshaphat, an Israelite: - Joshaphat."]},{"k":"H3147","v":["יוֹתָם","Yôwthâm","yo-thawm'","From H3068 and H8535; Jehovah (is) perfect; Jotham, the name of three Israelites: - Jotham."]},{"k":"H3148","v":["יוֹתֵר","yôwthêr","yo-thare'","Active participle of H8498; properly redundant; hence over and above, as adjective, noun, adverb or conjugation: - better, more (-over), over, profit."]},{"k":"H3149","v":["יְזַוְאֵל","Yᵉzavʼêl","yez-av-ale'","From an unused root (meaning to sprinkle) and H410; sprinkled of God; Jezavel, an Israelite: - Jeziel [from the margin]."]},{"k":"H3150","v":["יִזִּיָּה","Yizzîyâh","yiz-zee-yaw'","From the same as the first part of H3149 and H3050; sprinkled of Jah; Jizzijah, an Israelite: - Jeziah."]},{"k":"H3151","v":["יָזִיז","Yâzîyz","yaw-zeez'","From the same as H2123; he will make prominent; Jaziz, an Israelite: - Jaziz."]},{"k":"H3152","v":["יִזְלִיאָה","Yizlîyʼâh","yiz-lee-aw'","Perhaps from an unused root (meaning to draw up); he will draw out; Jizliah, an Israelite: - Jezliah."]},{"k":"H3153","v":["יְזַנְיָה","Yᵉzanyâh","yez-an-yaw'","Probably for H2970; Jezanjah, an Israelite: - Jezaniah."]},{"k":"H3154","v":["יֶזַע","yezaʻ","yeh'-zah","From an unused root mean to ooze; sweat, that is, (by implication) a sweating dress: - any thing that causeth sweat."]},{"k":"H3155","v":["יִזְרָח","Yizrâch","yiz-rawkh'","A variation for H250; a Jizrach (that is, Ezrachite or Zarchite) or descendant of Zerach: - Izrahite."]},{"k":"H3156","v":["יִזְרַחְיָה","Yizrachyâh","yiz-rakh-yaw'","From H2224 and H3050; Jah will shine; Jizrachjah, the name of two Israelites: - Izrahiah, Jezrahiah."]},{"k":"H3157","v":["יִזְרְעֵאל","Yizrᵉʻêʼl","yiz-reh-ale'","From H2232 and H410; God will sow; Jizreel, the name of two places in Palestine and of two Israelites: - Jezreel."]},{"k":"H3158","v":["יִזְרְעֵאלִי","Yizrᵉʻêʼlîy","yiz-reh-ay-lee'","Patronymic from H3157; a Jizreelite or native of Jizreel: - Jezreelite."]},{"k":"H3159","v":["יִזְרְעֵאלִית","Yizrᵉʻêʼlîyth","yiz-reh-ay-leeth'","Feminine of H3158; a Jezreelitess: - Jezreelitess."]},{"k":"H3160","v":["יְחֻבָּה","Yᵉchubbâh","yekh-oob-baw'","From H2247; hidden; Jechubbah, an Israelite: - Jehubbah."]},{"k":"H3161","v":["יָחַד","yâchad","yaw-khad'","A primitive root; to be (or become) one: - join, unite."]},{"k":"H3162","v":["יַחַד","yachad","yakh'-ad","From H3161; properly a unit, that is, (adverbially) unitedly: - alike, at all (once), both, likewise, only, (al-) together, withal."]},{"k":"H3163","v":["יַחְדוֹ","Yachdôw","yakh-doe'","From H3162 with pronominal suffix; his unity, that is, (adverbially) together; Jachdo, an Israelite: - Jahdo."]},{"k":"H3164","v":["יַחְדִּיאֵל","Yachdîyʼêl","yakh-dee-ale'","From H3162 and H410; unity of God; Jachdiel, an Israelite: - Jahdiel."]},{"k":"H3165","v":["יֶחְדִּיָּהוּ","Yechdîyâhûw","yekh-dee-yaw'-hoo","From H3162 and H3050; unity of Jah; Jechdijah, the name of two Israelites: - Jehdeiah."]},{"k":"H3166","v":["יַחֲזִיאֵל","Yachăzîyʼêl","yakh-az-ee-ale'","From H2372 and H410; beheld of God; Jachaziel, the name of five Israelites: - Jahaziel, Jahziel."]},{"k":"H3167","v":["יַחְזְיָה","Yachzᵉyâh","yakh-zeh-yaw'","From H2371 and H3050; Jah will behold; Jachzejah, an Israelite: - Jahaziah."]},{"k":"H3168","v":["יְחֶזְקֵאל","Yᵉchezqêʼl","yekh-ez-kale'","From H2388 and H410; God will strengthen; Jechezkel, the name of two Israelites: - Ezekiel, Jehezekel."]},{"k":"H3169","v":["יְחִזְקִיָּה","Yᵉchizqîyâh","yekh-iz-kee-yaw'","From H3388 and H3050; strengthened of Jah; Jechizkijah, the name of five Israelites: - Hezekiah, Jehizkiah. Compare H2396."]},{"k":"H3170","v":["יַחְזֵרָה","Yachzêrâh","yakh-zay-raw'","From the same as H2386; perhaps protection; Jachzerah, an Israelite: - Jahzerah."]},{"k":"H3171","v":["יְחִיאֵל","Yᵉchîyʼêl","yekh-ee-ale'","From H2421 and H410; God will live; Jechiel (or Jechavel), the name of eight Israelites: - Jehiel."]},{"k":"H3172","v":["יְחִיאֵלִי","Yᵉchîyʼêlîy","yekh-ee-ay-lee'","Patronymic from H3171; a Jechielite or descendant of Jechiel: - Jehieli."]},{"k":"H3173","v":["יָחִיד","yâchîyd","yaw-kheed'","From H3161; properly united, that is, sole; by implication beloved; also lonely; (feminine) the life (as not to be replace): - darling, desolate, only (child, son), solitary."]},{"k":"H3174","v":["יְחִיָּה","Yᵉchîyâh","yekh-ee-yaw'","From H2421 and H3050; Jah will live; Jechijah, an Israelite: - Jehiah."]},{"k":"H3175","v":["יָחִיל","yâchîyl","yaw-kheel'","From H3176; expectant: - should hope."]},{"k":"H3176","v":["יָחַל","yâchal","yaw-chal'","A primitive root; to wait; by implication to be patient, hope: - (cause to, have, make to) hope, be pained, stay, tarry, trust, wait."]},{"k":"H3177","v":["יַחְלְאֵל","Yachlᵉʼêl","yakh-leh-ale'","From H3176 and H410; expectant of God; Jachleel, an Israelite: - Jahleel."]},{"k":"H3178","v":["יַחְלְאֵלִי","Yachlᵉʼêlîy","yakh-leh-ay-lee'","Patronymic from H3177; a Jachleelite or descendant of Jachleel: - Jahleelites."]},{"k":"H3179","v":["יָחַם","yâcham","yaw-kham'","A primitive root; Probably to be hot; figuratively to conceive: - get heat, be hot, conceive, be warm."]},{"k":"H3180","v":["יַחְמוּר","yachmûwr","yakh-moor'","From H2560; a kind of deer (from the color; compare H2548): - fallow deer."]},{"k":"H3181","v":["יַחְמַי","Yachmay","yakh-mah'-ee","Probably from H3179; hot; Jachmai, an Israelite: - Jahmai."]},{"k":"H3182","v":["יָחֵף","yâchêph","yaw-khafe'","From an unused root meaning to take off the shoes; unsandalled: - barefoot, being unshod."]},{"k":"H3183","v":["יַחְצְאֵל","Yachtsᵉʼêl","yakh-tseh-ale'","From H2673 and H410; God will allot; Jachtseel, an Israelite: - Jahzeel. Compare H3185."]},{"k":"H3184","v":["יַחְצְאֵלִי","Yachtsᵉʼêlîy","yakh-tseh-ay-lee'","Patronymic from H3183; a Jachtseelite (collectively) or descendant of Jachtseel: - Jahzeelites."]},{"k":"H3185","v":["יַחְצִיאֵל","Yachtsîyʼêl","yakh-tsee-ale'","From H2673 and H410; allotted of God; Jachtsiel, an Israelite: - Jahziel. Compare H3183."]},{"k":"H3186","v":["יָחַר","yâchar","yaw-khar'","A primitive root; to delay: - tarry longer."]},{"k":"H3187","v":["יָחַשׂ","yâchas","yaw-khas'","A primitive root; to sprout; used only as denominative from H3188; to enroll by pedigree: - (number after, number throughout the) genealogy (to be reckoned), be reckoned by genealogies."]},{"k":"H3188","v":["יַחַשׂ","yachas","yakh'-as","From H3187; a pedigree or family list (as growing spontaneously): - genealogy."]},{"k":"H3189","v":["יַחַת","Yachath","yakh'-ath","From H3161; unity; Jachath, the name of four Israelites: - Jahath."]},{"k":"H3190","v":["יָטַב","yâṭab","yaw-tab'","A primitive root; to be (causatively) make well, literally (sound, beautiful) or figuratively (happy, successful, right): - be accepted, amend, use aright, benefit, be (make) better, seem best, make cheerful, be comely, + be content, diligent (-ly), dress, earnestly, find favour, give, be glad, do (be, make) good ([-ness]), be (make) merry, please (+ well), shew more [kindness], skilfully, X very small, surely, make sweet, thoroughly, tire, trim, very, be (can, deal, entreat, go, have) well [said, seen ]."]},{"k":"H3191","v":["יְטַב","yᵉṭab","yet-ab'","(Chaldee); corresponding to H3190: - seem good."]},{"k":"H3192","v":["יׇטְבָה","Yoṭbâh","yot-baw'","From H3190; pleasantness; Jotbah, a place in Palestine: - Jotbah."]},{"k":"H3193","v":["יׇטְבָתָה","Yoṭbâthâh","yot-baw'-thaw","From H3192; Jotbathah, a place in the Desert: - Jotbath, Jotbathah."]},{"k":"H3194","v":["יֻטָּה","Yuṭṭâh","yoo-taw'","From H5186; extended; Juttah (or Jutah), a place in Palestine: - Juttah."]},{"k":"H3195","v":["יְטוּר","Yᵉṭûwr","yet-oor'","Probably from the same as H2905; encircled (that is, inclosed); Jetur, a son of Ishmael: - Jetur."]},{"k":"H3196","v":["יַיִן","yayin","yah'-yin","From an unused root meaning to effervesce; wine (as fermented); by implication intoxication: - banqueting, wine, wine [-bibber]."]},{"k":"H3197","v":["יַךְ","yak","yak","By erroneous transcription for H3027; a hand or side: - [way-] side."]},{"k":"H3198","v":["יָכַח","yâkach","yaw-kahh'","A primitive root; to be right (that is, correct); reciprocally to argue; causatively to decide, justify or convict: - appoint, argue, chasten, convince, correct (-ion), daysman, dispute, judge, maintain, plead, reason (together), rebuke, reprove (-r), surely, in any wise."]},{"k":"H3199","v":["יָכִין","Yâkîyn","yaw-keen'","From H3559; he (or it) will establish; Jakin, the name of three Israelites and of a temple pillar: - Jachin."]},{"k":"H3200","v":["יָכִינִי","Yâkîynîy","yaw-kee-nee'","Patronymic from H3199; a Jakinite (collectively) or descendant of Jakin: - Jachinites."]},{"k":"H3201","v":["יָכֹל","yâkôl","yaw-kole'","A primitive root; to be able, literally (can, could) or morally (may, might): - be able, any at all (ways), attain, can (away with, [-not]), could, endure, might, overcome, have power, prevail, still, suffer."]},{"k":"H3202","v":["יְכֵל","yᵉkêl","yek-ale'","(Chaldee); corresponding to H3201: - be able, can, couldest, prevail."]},{"k":"H3203","v":["יְכׇלְיָה","Yᵉkolyâh","yek-ol-yaw'","From H3201 and H3050; Jah will enable; Jekoljah or Jekiljah, an Israelitess: - Jecholiah, Jecoliah."]},{"k":"H3204","v":["יְכׇנְיָה","Yᵉkonyâh","yek-on-yaw'","From H3559 and H3050; Jah will establish; Jekonjah, a Jewish king: - Jeconiah. Compare H3659."]},{"k":"H3205","v":["יָלַד","yâlad","yaw-lad'","A primitive root; to bear young; causatively to beget; medically to act as midwife; specifically to show lineage: - bear, beget, birth ([-day]), born, (make to) bring forth (children, young), bring up, calve, child, come, be delivered (of a child), time of delivery, gender, hatch, labour, (do the office of a) midwife, declare pedigrees, be the son of, (woman in, woman that) travail (-eth, -ing woman)."]},{"k":"H3206","v":["יֶלֶד","yeled","yeh'-led","From H3205; something born, that is, a lad or offspring: - boy, child, fruit, son, young man (one)."]},{"k":"H3207","v":["יַלְדָּה","yaldâh","yal-daw'","Feminine of H3206; a lass: - damsel, girl."]},{"k":"H3208","v":["יַלְדוּת","yaldûwth","yal-dooth'","Abstract from H3206; boyhood (or girlhood): - childhood, youth."]},{"k":"H3209","v":["יִלּוֹד","yillôwd","yil-lode'","Passive from H3205; born: - born."]},{"k":"H3210","v":["יָלוֹן","Yâlôwn","yaw-lone'","From H3885; lodging; Jalon, an Israelite: - Jalon."]},{"k":"H3211","v":["יָלִיד","yâlîyd","yaw-leed'","From H3205; born: - ([home-]) born, child, son."]},{"k":"H3212","v":["יָלַךְ","yâlak","yaw-lak'","A primitive root (compare H1980); to walk (literally or figuratively); causatively to carry (in various senses): -    X again, away, bear, bring, carry (away), come (away), depart, flow, + follow (-ing), get (away, hence, him), (cause to, make) go (away, -ing, -ne, one’s way, out), grow, lead (forth), let down, march, prosper, + pursue, cause to run, spread, take away ([-journey]), vanish, (cause to) walk (-ing), wax, X be weak."]},{"k":"H3213","v":["יָלַל","yâlal","yaw-lal'","A primitive root; to howl (with a wailing tone) or yell (with a boisterous one): - (make to) howl, be howling."]},{"k":"H3214","v":["יְלֵל","yᵉlêl","yel-ale'","From H3213; a howl: - howling."]},{"k":"H3215","v":["יְלָלָה","yᵉlâlâh","yel-aw-law'","Feminine of H3214; a howling: - howling."]},{"k":"H3216","v":["יָלַע","yâlaʻ","yaw-lah'","A primitive root; to blurt or utter inconsiderately: - devour."]},{"k":"H3217","v":["יַלֶּפֶת","yallepheth","yal-leh'-feth","From an unused root apparently meaning to stick or scrape; scurf or tetter: - scabbed."]},{"k":"H3218","v":["יֶלֶק","yeleq","yeh'-lek","From an unused root meaning to lick up; a devourer; specifically the young locust: - cankerworm, caterpillar."]},{"k":"H3219","v":["יַלְקוּט","yalqûwṭ","yal-koot'","From H3950; a travelling pouch (as if for gleanings): - scrip."]},{"k":"H3220","v":["יָם","yâm","yawm","From an unused root meaning to roar; a sea (as breaking in noisy surf) or large body of water; specifically (with the article) the Mediterranean; sometimes a large river, or an artificial basin; locally, the west, or (rarely) the south: - sea (X -faring man, [-shore]), south, west (-ern, side, -ward)."]},{"k":"H3221","v":["יָם","yâm","yawm","(Chaldee); corresponding to H3220: - sea."]},{"k":"H3222","v":["יֵם","yêm","yame","From the same as H3117; a warm spring: - mule."]},{"k":"H3223","v":["יְמוּאֵל","Yᵉmûwʼêl","yem-oo-ale'","From H3117 and H410; day of God; Jemuel, an Israelite: - Jemuel."]},{"k":"H3224","v":["יְמִימָה","Yᵉmîymâh","yem-ee-maw'","Perhaps from the same as H3117; properly warm, that is, affectionate; hence dove (compare H3123); Jemimah, one of Job’s daughters: - Jemimah."]},{"k":"H3225","v":["יָמִין","yâmîyn","yaw-meen'","From H3231; the right hand or side (leg, eye) of a person or other object (as the stronger and more dexterous); locally, the south: -  + left-handed, right (hand, side), south."]},{"k":"H3226","v":["יָמִין","Yâmîyn","yaw-meen'","The same as H3225; Jamin, the name of three Israelites: - Jamin. See also H1144."]},{"k":"H3227","v":["יְמִינִי","yᵉmîynîy","yem-ee-nee'","For H3225; right: - (on the) right (hand)."]},{"k":"H3228","v":["יְמִינִי","Yᵉmîynîy","yem-ee-nee'","Patronymic from H3226; a Jeminite (collectively) or descendant of Jamin: - Jaminites. See also H1145."]},{"k":"H3229","v":["יִמְלָא","Yimlâʼ","yeem-law'","From H4390; full; Jimla or Jimlah, an Israelite: - Imla, Imlah."]},{"k":"H3230","v":["יַמְלֵךְ","Yamlêk","yam-lake'","From H4427; he will make king; Jamlek, an Israelite: - Jamlech."]},{"k":"H3231","v":["יָמַן","yâman","yaw-man'","A primitive root; to be (physically) right (that is, firm); but used only as denominative from H3225 and transitively, to be right handed or take the right hand side: - go (turn) to (on, use) the right hand."]},{"k":"H3232","v":["יִמְנָה","Yimnâh","yim-naw'","From H3231; prosperity (as betokened by the right hand); Jimnah, the name of two Israelites; also (with the article) of the posterity of one of them: - Imna, Imnah, Jimnah, Jimnites."]},{"k":"H3233","v":["יְמָנִי","yᵉmânîy","yem-aw-nee'","From H3231; right (that is, at the right hand): - (on the) right (hand)."]},{"k":"H3234","v":["יִמְנָע","Yimnâʻ","yim-naw'","From H4513; he will restrain; Jimna, an Israelite: - Imna."]},{"k":"H3235","v":["יָמַר","yâmar","yaw-mar'","A primitive root; to exchange; by implication to change places: - boast selves, change."]},{"k":"H3236","v":["יִמְרָה","Yimrâh","yim-raw'","Probably from H3235; interchange; Jimrah, an Israelite: - Imrah."]},{"k":"H3237","v":["יָמַשׁ","yâmash","yaw-mash'","A primitive root; to touch: - feel."]},{"k":"H3238","v":["יָנָה","yânâh","yaw-naw'","A primitive root; to rage or be violent; by implication to suppress, to maltreat: - destroy, (thrust out by) oppress (-ing, -ion, -or), proud, vex, do violence."]},{"k":"H3239","v":["יָנוֹחַ","Yânôwach","yaw-no'-akh or (with enclitic) Yanowchah yaw-no'-khaw","From H3240; quiet; Janoach or Janochah, a place in Palestine: - Janoah, Janohah."]},{"k":"H3240","v":["יָנַח","yânach","yaw-nakh'","A primitive root; to deposit; by implication to allow to stay. (The Hiphil forms with the dagesh are here referred to, in accordance with the older grammarians; but if any distinction of the kind is to be made, these should rather be referred to H5117, and the others here): - bestow, cast down, lay (down, up), leave (off), let alone (remain), pacify, place, put, set (down), suffer, withdraw, withhold. (The Hiphil forms with the dagesh are here referred to, in accordance with the older grammarians; but if any distinction of the kind is to be made, these should rather be referred to H5117, and the others here.)"]},{"k":"H3241","v":["יָנִים","Yânîym","yaw-neem'","From H5123; asleep; Janim, a place in Palestine: - Janum [from the margin]."]},{"k":"H3242","v":["יְנִיקָה","yᵉnîyqâh","yen-ee-kaw'","From H3243; a sucker or sapling: - young twig."]},{"k":"H3243","v":["יָנַק","yânaq","yaw-nak'","A primitive root; to suck; causatively to give milk: - milch, nurse (-ing mother), give, make to) suck (-ing child, -ling)."]},{"k":"H3244","v":["יַנְשׁוּף","yanshûwph","yan-shoof'","Apparently from H4398; an unclean (aquatic) bird; probably the heron (perhaps from its blowing cry, or because the night heron is meant (compare H5399)): - (great) owl."]},{"k":"H3245","v":["יָסַד","yâçad","yaw-sad'","A primitive root; to set (literally or figuratively); intensively to found; reflexively to sit down together, that is, settle, consult: - appoint, take counsel, establish, (lay the, lay for a) found (-ation), instruct, lay, ordain, set, X sure."]},{"k":"H3246","v":["יְסֻד","yᵉçud","yes-ood'","From H3245; a foundation (figuratively that is, beginning): -    X began."]},{"k":"H3247","v":["יְסוֹד","yᵉçôwd","yes-ode'","From H3245; a foundation (literally or figuratively): - bottom, foundation, repairing."]},{"k":"H3248","v":["יְסוּדָה","yᵉçûwdâh","yes-oo-daw'","Feminine of H3246; a foundation: - foundation."]},{"k":"H3249","v":["יָסוּר","yâçûwr","yaw-soor'","From H5493; departing: - they that depart."]},{"k":"H3250","v":["יִסּוֹר","yiççôwr","yis-sore'","From H3256; a reprover: - instruct."]},{"k":"H3251","v":["יָסַךְ","yâçak","yaw-sak'","A primitive root; to pour (intransitively): - be poured."]},{"k":"H3252","v":["יִסְכָּה","Yiçkâh","yis-kaw'","From an unused root meaning to watch; observant; Jiskah, sister of Lot: - Iscah."]},{"k":"H3253","v":["יִסְמַכְיָהוּ","Yiçmakyâhûw","yis-mak-yaw-hoo'","From H5564 and H3050; Jah will sustain; Jismakjah, an Israelite: - Ismachiah."]},{"k":"H3254","v":["יָסַף","yâçaph","yaw-saf'","A primitive root; to add or augment (often adverbially to continue to do a thing): -    add, X again, X any more, X cease, X come more, + conceive again, continue, exceed, X further, X gather together, get more, give moreover, X henceforth, increase (more and more), join, X longer (bring, do, make, much, put), X (the, much, yet) more (and more), proceed (further), prolong, put, be [strong-] er, X yet, yield."]},{"k":"H3255","v":["יְסַף","yᵉçaph","yes-af'","(Chaldee); corresponding to H3254: - add."]},{"k":"H3256","v":["יָסַר","yâçar","yaw-sar'","A primitive root; to chastise, literally (with blows) or figuratively (with words); hence to instruct: - bind, chasten, chastise, correct, instruct, punish, reform, reprove, sore, teach."]},{"k":"H3257","v":["יָע","yâʻ","yaw","From H3261; a shovel: - shovel."]},{"k":"H3258","v":["יַעְבֵּץ","Yaʻbêts","yah-bates'","From an unused root probably meaning to grieve; sorrowful; Jabets, the name of an Israelite, and also of a place in Palestine: - Jabez."]},{"k":"H3259","v":["יָעַד","yâʻad","yaw-ad'","A primitive root; to fix upon (by agreement or appointment); by implication to meet (at a stated time), to summon (to trial), to direct (in a certain quarter or position), to engage (for marriage): - agree, (make an) appoint (-ment, a time), assemble (selves), betroth, gather (selves, together), meet (together), set (a time)."]},{"k":"H3260","v":["יֶעְדִּי","Yeʻdîy","yed-ee'","From H3259; appointed; Jedi, an Israelite: - Iddo [from the margin] See H3035."]},{"k":"H3261","v":["יָעָה","yâʻâh","yaw-aw'","A primitive root; apparently to brush aside: - sweep away."]},{"k":"H3262","v":["יְעוּאֵל","Yᵉʻûwʼêl","yeh-oo-ale'","From H3261 and H410; carried away of God; Jeuel, the name of four Israelites: - Jehiel, Jeiel, Jeuel. Comp H3273."]},{"k":"H3263","v":["יְעוּץ","Yᵉʻûwts","yeh-oots'","From H5779; counsellor; Jeuts, an Israelite: - Jeuz."]},{"k":"H3264","v":["יָעוֹר","yâʻôwr","yaw-ore'","A variation of H3298; a forest: - wood."]},{"k":"H3265","v":["יָעוּר","Yâʻûwr","yaw-oor'","Apparently passive participle of the same as H3293; wooded; Jaur, an Israelite: - Jair [from the margin]."]},{"k":"H3266","v":["יְעוּשׁ","Yᵉʻûwsh","yeh-oosh'","From H5789; hasty; Jeush, the name of an Edomite and of four Israelites: - Jehush, Jeush. Compare H3274."]},{"k":"H3267","v":["יָעַז","yâʻaz","yaw-az'","A primitive root; to be bold or obstinate: - fierce."]},{"k":"H3268","v":["יַעֲזִיאֵל","Yaʻăzîyʼêl","yah-az-ee-ale'","From H3267 and H410; emboldened of God; Jaziel, an Israelite: - Jaaziel."]},{"k":"H3269","v":["יַעֲזִיָּהוּ","Yaʻăzîyâhûw","yah-az-ee-yaw'-hoo","From H3267 and H3050; emboldened of Jah; Jaaziah, an Israelite: - Jaaziah."]},{"k":"H3270","v":["יַעֲזֵיר","Yaʻăzêyr","yah-az-ayr'","From H5826; helpful; Jaazer or Jazer, a place East of the Jordan: - Jaazer, Jazer."]},{"k":"H3271","v":["יָעַט","yâʻaṭ","yaw-at'","A primitive root; to clothe: - cover."]},{"k":"H3272","v":["יְעַט","yᵉʻaṭ","yeh-at'","(Chaldee); corresponding to to H3289; to counsel; reflexively to consult: - counsellor, consult together."]},{"k":"H3273","v":["יְעִיאֵל","Yᵉʻîyʼêl","yeh-ee-ale'","From H3261 and H410; carried away of God; Jeiel, the name of six Israelites: - Jeiel, Jehiel. Compare H3262."]},{"k":"H3274","v":["יְעִישׁ","Yᵉʻîysh","yeh-eesh'","From H5789; hasty; Jeish, the name of an Edomite and of an Israelite: - Jeush [from the margin]. Compare H3266."]},{"k":"H3275","v":["יַעְכָּן","Yaʻkân","yah-kawn'","From the same as H5912; troublesome; Jakan, an Israelite: - Jachan."]},{"k":"H3276","v":["יַעַל","yaʻal","yaw-al'","A primitive root; properly to ascend; figuratively to be valuable (objective useful, subjective benefited): -    X at all, set forward, can do good, (be, have) profit (-able)."]},{"k":"H3277","v":["יָעֵל","yâʻêl","yaw-ale'","From H3276; an ibex (as climbing): - wild goat."]},{"k":"H3278","v":["יָעֵל","Yâʻêl","yaw-ale'","The same as H3277; Jael, a Canaanite: - Jael."]},{"k":"H3279","v":["יַעֲלָא","Yaʻălâʼ","yah-al-aw'","The same as H3280 or direct from H3276; Jaala or Jaalah, one of the Nethinim: - Jaala, Jaalah."]},{"k":"H3280","v":["יַעֲלָה","yaʻălâh","yah-al-aw'","Feminine of H3277: - roe."]},{"k":"H3281","v":["יַעְלָם","Yaʻlâm","yah-lawm'","From H5956; occult; Jalam, an Edomite: - Jalam."]},{"k":"H3282","v":["יַעַן","yaʻan","yah'-an","From an unused root meaning to pay attention; properly heed; by implication purpose (sake or account); used adverbially to indicate the reason or cause: - because (that), forasmuch (+ as), seeing then, + that, + whereas, + why."]},{"k":"H3283","v":["יָעֵן","yâʻên","yaw-ane'","From the same as H3282; the ostrich (probably from its answering cry): - ostrich."]},{"k":"H3284","v":["יַעֲנָה","yaʻănâh","yah-an-aw'","Feminine of H3283, and meaning the same: -    + owl."]},{"k":"H3285","v":["יַעֲנַי","Yaʻănay","yah-an-ah'ee","From the same as H3283; responsive; Jaanai, an Israelite: - Jaanai."]},{"k":"H3286","v":["יָעַף","yâʻaph","yaw-af'","A primitive root; to tire (as if from wearisome flight): - faint, cause to fly, (be) weary (self)."]},{"k":"H3287","v":["יָעֵף","yâʻêph","yaw-afe'","From H3286; fatigued; figuratively exhausted: - faint, weary."]},{"k":"H3288","v":["יְעָף","yᵉʻâph","yeh-awf'","From H3286; fatigue (adverbially utterly exhausted): - swiftly."]},{"k":"H3289","v":["יָעַץ","yâʻats","yaw-ats'","A primitive root; to advise; reflexively to deliberate or resolve: - advertise, take advice, advise (well), consult, (give take) counsel (-lor), determine, devise, guide, purpose."]},{"k":"H3290","v":["יַעֲקֹב","Yaʻăqôb","yah-ak-obe'","From H6117; heel catcher (that is, supplanter); Jaakob, the Israelitish patriarch: - Jacob."]},{"k":"H3291","v":["יַעֲקֹבָה","Yaʻăqôbâh","yah-ak-o'-baw","From H3290; Jaakobah, an Israelite: - Jaakobah."]},{"k":"H3292","v":["יַעֲקָן","Yaʻăqân","yah-ak-awn'","From the same as H6130; Jaakan, an Idumaean: - Jaakan. Compare H1142."]},{"k":"H3293","v":["יַעַר","yaʻar","yah'-ar","From an unused root probably meaning to thicken with verdure; a copse of bushes; hence a forest; hence honey in the comb (as hived in trees): - [honey-] comb, forest, wood."]},{"k":"H3294","v":["יַעְרָה","Yaʻrâh","yah-raw'","A form of H3295; Jarah, an Israelite: - Jarah."]},{"k":"H3295","v":["יַעֲרָה","yaʻărâh","yah-ar-aw'","Feminine of H3293, and meaning the same: - [honey-] comb, forest."]},{"k":"H3296","v":["יַעֲרֵי אֹרְגִים","Yaʻărêy ʼÔrᵉgîym","yah-ar-ay' o-reg-eem'","From the plural of H3293 and the masculine plural participle active of H707; woods of weavers; Jaare-Oregim, an Israelite: - Jaare-oregim."]},{"k":"H3297","v":["יְעָרִים","Yᵉʻârîym","yeh-aw-reem'","Plural of H3293; forests; Jearim, a place in Palestine: - Jearim. Compare H7157."]},{"k":"H3298","v":["יַעֲרֶשְׁיָה","Yaʻăreshyâh","yah-ar-esh-yaw'","From an unused root or uncertain signification and H3050; Jaareshjah, an Israelite: - Jaresiah."]},{"k":"H3299","v":["יַעֲשׂוּ","Yaʻăsûw","yah-as-oo'","From H6213; they will do; Jaasu, an Israelite: - Jaasau."]},{"k":"H3300","v":["יַעֲשִׂיאֵל","Yaʻăsîyʼêl","yah-as-ee-ale'","From H6213 and H410; made of God; Jaasiel, an Israelite: - Jaasiel, Jasiel."]},{"k":"H3301","v":["יִפְדְּיָה","Yiphdᵉyâh","yif-deh-yaw'","From H6299 and H3050; Jah will liberate; Jiphdejah, an Israelite: - Iphedeiah."]},{"k":"H3302","v":["יָפָה","yâphâh","yaw-faw'","A primitive root; properly to be bright, that is, (by implication) beautiful: - be beautiful, be (make self) fair (-r), deck."]},{"k":"H3303","v":["יָפֶה","yâpheh","yaw-feh'","From H3302; beautiful (literally of figuratively): -    + beautiful, beauty, comely, fair (-est, one), + goodly, pleasant, well."]},{"k":"H3304","v":["יְפֵה־פִיָּה","yᵉphêh-phîyâh","yef-eh' fee-yaw'","From H3302 by reduplication; very beautiful: - very fair."]},{"k":"H3305","v":["יָפוֹ","Yâphôw","yaw-fo'","From H3302; beautiful; Japho, a place in Palestine: - Japha, Joppa."]},{"k":"H3306","v":["יָפַח","yâphach","yaw-fakh'","A primitive root; properly to breathe hard, that is, (by implication) to sigh: - bewail self."]},{"k":"H3307","v":["יָפֵחַ","yâphêach","yaw-fay'-akh","From H3306; properly puffing, that is, (figuratively) meditating: - such as breathe out."]},{"k":"H3308","v":["יֳפִי","yŏphîy","yof-ee'","From H3302; beauty: - beauty."]},{"k":"H3309","v":["יָפִיעַ","Yâphîyaʻ","yaw-fee'-ah","From H3313; bright; Japhia, the name of a Canaanite, an Israelite, and a place in Palestine: - Japhia."]},{"k":"H3310","v":["יַפְלֵט","Yaphlêṭ","yaf-late'","From H6403; he will deliver; Japhlet, an Israelite: - Japhlet."]},{"k":"H3311","v":["יַפְלֵטִי","Yaphlêṭîy","yaf-lay-tee'","Patronymic from H3310; a Japhletite or descendant of Japhlet: - Japhleti."]},{"k":"H3312","v":["יְפֻנֶּה","Yᵉphunneh","yef-oon-neh'","From H6437; he will be prepared; Jephunneh, the name of two Israelites: - Jephunneh."]},{"k":"H3313","v":["יָפַע","yâphaʻ","yaw-fah'","A primitive root; to shine: - be light, shew, self, (cause to) shine (forth)."]},{"k":"H3314","v":["יִפְעָה","yiphʻâh","yif-aw'","From H3313; splendor or (figuratively) beauty: - brightness."]},{"k":"H3315","v":["יֶפֶת","Yepheth","yeh'-feth","From H6601; expansion; Jepheth, a son of Noah; also his posterity: - Japheth."]},{"k":"H3316","v":["יִפְתָּח","Yiphtâch","yif-tawkh'","From H6605; he will open; Jiphtach, an Israelite; also a place in Palestine: - Jephthah, Jiphtah."]},{"k":"H3317","v":["יִפְתַּח־אֵל","Yiphtach-ʼêl","yif-tach-ale'","From H6605 and H410; God will open; Jiphtach-el, a place in Palestine: - Jiphthah-el."]},{"k":"H3318","v":["יָצָא","yâtsâʼ","yaw-tsaw'","A primitive root; to go (causatively bring) out, in a great variety of applications, literally and figuratively, direct and proximate: -    X after, appear, X assuredly, bear out, X begotten, break out, bring forth (out, up), carry out, come (abroad, out, thereat, without), + be condemned, depart (-ing, -ure), draw forth, in the end, escape, exact, fail, fall (out), fetch forth (out), get away (forth, hence, out), (able to, cause to, let) go abroad (forth, on, out), going out, grow, have forth (out), issue out, lay (lie) out, lead out, pluck out, proceed, pull out, put away, be risen, X scarce, send with commandment, shoot forth, spread, spring out, stand out, X still, X surely, take forth (out), at any time, X to [and fro], utter."]},{"k":"H3319","v":["יְצָא","yᵉtsâʼ","yets-aw'","(Chaldee); corresponding to H3318: - finish."]},{"k":"H3320","v":["יָצַב","yâtsab","yaw-tsab'","A primitive root; to place (any thing so as to stay); reflexively to station, offer, continue: - present selves, remaining, resort, set (selves), (be able to, can, with-) stand (fast, forth, -ing, still, up)."]},{"k":"H3321","v":["יְצַב","yᵉtsab","yets-abe'","(Chaldee); corresponding to H3320; to be firm; hence to speak surely: - truth."]},{"k":"H3322","v":["יָצַג","yâtsag","yaw-tsag'","A primitive root; to place permanently: - establish, leave, make, present, put, set, stay."]},{"k":"H3323","v":["יִצְהָר","yitshâr","yits-hawr'","From H6671; oil (as producing light); figuratively anointing: - + anointed, oil."]},{"k":"H3324","v":["יִצְהָר","Yitshâr","yits-hawr'","The same as H3323; Jitshar, an Israelite: - Izhar."]},{"k":"H3325","v":["יִצְהָרִי","Yitshârîy","yits-haw-ree'","Patronymic from H3324; a Jitsharite or descendant of Jitshar: - Izeharites, Izharites."]},{"k":"H3326","v":["יָצוּעַ","yâtsûwaʻ","yaw-tsoo'-ah","Passive participle of H3331; spread, that is, a bed; (architecturally) an extension, that is, wing or lean to (a single story or collection): - bed, chamber, couch."]},{"k":"H3327","v":["יִצְחָק","Yitschâq","yits-khawk'","From H6711; laughter (that is, mockery); Jitschak (or Isaac), son of Abraham: - Isaac. Compare H3446."]},{"k":"H3328","v":["יִצְחַר","Yitschar","yits-khar'","From the same as H6713; he will shine; Jitschar, an Israelite: - and Zehoar [from the margin]."]},{"k":"H3329","v":["יָצִיא","yâtsîyʼ","yaw-tsee'","From H3318; issue, that is, offspring: - those that came forth."]},{"k":"H3330","v":["יַצִּיב","yatstsîyb","yats-tseeb'","(Chaldee); from H3321; fixed, sure; concretely certainty: - certain (-ty), true, truth."]},{"k":"H3331","v":["יַצַע","yatsaʻ","yaw-tsah'","A primitive root; to strew as a surface: - make [one’s] bed, X lie, spread."]},{"k":"H3332","v":["יָצַק","yâtsaq","yaw-tsak'","A primitive root; properly to pour out (transitively or intransitively); by implication to melt or cast as metal; by extension to place firmly, to stiffen or grow hard: - cast, cleave fast, be (as) firm, grow, be hard, lay out, molten, overflow, pour (out), run out, set down, stedfast."]},{"k":"H3333","v":["יְצֻקָה","yᵉtsuqâh","yets-oo-kaw'","Passive participle feminine of H3332; poured out, that is, run into a mould: - when it was cast."]},{"k":"H3334","v":["יָצַר","yâtsar","yaw-tsar'","A primitive root; to press (intransitively), that is, be narrow; figuratively be in distress: - be distressed, be narrow, be straitened (in straits), be vexed."]},{"k":"H3335","v":["יָצַר","yâtsar","yaw-tsar'","probably identical with H3334 (through the squeezing into shape); (compare H3331); to mould into a form; especially as a potter; figuratively to determine (that is, form a resolution): -    X earthen, fashion, form, frame, make (-r), potter, purpose."]},{"k":"H3336","v":["יֵצֶר","yêtser","yay'-tser","From H3335; a form; figuratively conception (that is, purpose): - frame, thing framed, imagination, mind, work."]},{"k":"H3337","v":["יֵצֶר","Yêtser","yay-tser","The same as H3336; Jetser, an Israelite: - Jezer."]},{"k":"H3338","v":["יָצֻר","yâtsur","yaw-tsoor'","Passive participle of H3335; structure, that is, limb or part: - member."]},{"k":"H3339","v":["יִצְרִי","Yitsrîy","yits-ree'","From H3335; formative; Jitsri, an Israelite: - Isri."]},{"k":"H3340","v":["יִצְרִי","Yitsrîy","yits-ree'","Patronymic from H3337; a Jitsrite (collectively) or descendant of Jetser: - Jezerites."]},{"k":"H3341","v":["יָצַת","yâtsath","yaw-tsath'","A primitive root; to burn or set on fire; figuratively to desolate: - burn (up), be desolate, set (on) fire ([fire]), kindle."]},{"k":"H3342","v":["יֶקֶב","yeqeb","yeh'-keb","From unused root meaning to excavate; a trough (as dug out); specifically a wine vat (whether the lower one, into which the juice drains; or the upper, in which the grapes are crushed): - fats, presses, press-fat, wine (-press)."]},{"k":"H3343","v":["יְקַבְצְאֵל","Yᵉqabtsᵉʼêl","yek-ab-tseh-ale'","From H6908 and H410; God will gather; Jekabtseel, a place in Palestine: - Jekabzeel. Compare H6909."]},{"k":"H3344","v":["יָקַד","yâqad","yaw-kad'","A primitive root; to burn: - (be) burn (-ing), X from the hearth, kindle."]},{"k":"H3345","v":["יְקַד","yᵉqad","yek-ad'","(Chaldee); corresponding to H3344: - burning."]},{"k":"H3346","v":["יְקֵדָא","yᵉqêdâʼ","yek-ay-daw'","(Chaldee); from H3345; a conflagration: - burning."]},{"k":"H3347","v":["יׇקְדְעָם","Yoqdᵉʻâm","yok-deh-awm'","From H3344 and H5971; burning of (the) people; Jokdeam, a place in Palestine: - Jokdeam."]},{"k":"H3348","v":["יָקֶה","Yâqeh","yaw-keh'","From an unused root probably meaning to obey; obedient; Jakeh, a symbolical name (for Solomon): - Jakeh."]},{"k":"H3349","v":["יִקָּהָה","yiqqâhâh","yik-kaw-haw'","From the same as H3348; obedience: - gathering, to obey."]},{"k":"H3350","v":["יְקוֹד","yᵉqôwd","yek-ode'","From H3344; a burning: - burning."]},{"k":"H3351","v":["יְקוּם","yᵉqûwm","yek-oom'","From H6965; properly standing (extant), that is, by implication a living thing: - (living) substance."]},{"k":"H3352","v":["יָקוֹשׁ","yâqôwsh","yaw-koshe'","From H3369; properly entangling; hence a snarer: - fowler."]},{"k":"H3353","v":["יָקוּשׁ","yâqûwsh","yaw-koosh'","Passive participle of H3369; properly entangled, that is, by implication (intransitively) a snare, or (transitively) a snarer: - fowler, snare."]},{"k":"H3354","v":["יְקוּתִיאֵל","Yᵉqûwthîyʼêl","yek-ooth-ee'-ale","From the same as H3348 and H410; obedience of God; Jekuthiel, an Israelite: - Jekuthiel."]},{"k":"H3355","v":["יׇקְטָן","Yoqṭân","yok-tawn'","From H6994; he will be made little; Joktan, an Arabian patriarch: - Joktan."]},{"k":"H3356","v":["יָקִים","Yâqîym","yaw-keem'","From H6965; he will raise; Jakim, the name of two Israelites: - Jakim. Compare H3079."]},{"k":"H3357","v":["יַקִּיר","yaqqîyr","yak-keer'","From H3365; precious: - dear."]},{"k":"H3358","v":["יַקִּיר","yaqqîyr","yak-keer'","(Chaldee); corresponding to H3357: - noble, rare."]},{"k":"H3359","v":["יְקַמְיָה","Yᵉqamyâh","yek-am-yaw'","From H6965 and H3050; Jah will rise; Jekamjah, the name of two Israelites: - Jekamiah. Compare H3079."]},{"k":"H3360","v":["יְקַמְעָם","Yᵉqamʻâm","yek-am'-awm","From H6965 and H5971; (the) people will rise; Jekamam, an Israelite: - Jekameam. Compare H3079, H3361."]},{"k":"H3361","v":["יׇקְמְעָם","Yoqmᵉʻâm","yok-meh-awm'","From H6965 and H5971; (the) people will be raised; Jokmeam, a place in Palestine: - Jokmeam. Compare H3360, H3362."]},{"k":"H3362","v":["יׇקְנְעָם","Yoqnᵉʻâm","yok-neh-awm'","From H6969 and H5971; (the) people will be lamented; Jokneam, a place in Palestine: - Jokneam."]},{"k":"H3363","v":["יָקַע","yâqaʻ","yaw-kah'","A primitive root; properly to sever oneself, that is, (by implication) to be dislocated; figuratively to abandon; causatively to impale (and thus allow to drop to pieces by rotting): - be alienated, depart, hang (up), be out of joint."]},{"k":"H3364","v":["יָקַץ","yâqats","yaw-kats'","A primitive root; to awake (intransitively): - (be) awake (-d)."]},{"k":"H3365","v":["יָקַר","yâqar","yaw-kar'","A primitive root; properly apparently to be heavy, that is, (figuratively) valuable; causatively to make rare (figuratively to inhibit): - be (make) precious, be prized, be set by, withdraw."]},{"k":"H3366","v":["יְקָר","yᵉqâr","yek-awr'","From H3365; value, that is, (concretely) wealth; abstractly costliness, dignity: - honour, precious (things), price."]},{"k":"H3367","v":["יְקָר","yᵉqâr","yek-awr'","(Chaldee); corresponding to H3366: - glory, honour."]},{"k":"H3368","v":["יָקָר","yâqâr","yaw-kawr'","From H3365; valuable (objectively or subjectively): - brightness, clear, costly, excellent, fat, honourable women, precious, reputation."]},{"k":"H3369","v":["יָקֹשׁ","yâqôsh","yaw-koshe'","A primitive root; to ensnare (literally or figuratively): - fowler (lay a) snare."]},{"k":"H3370","v":["יׇקְשָׁן","Yoqshân","yok-shawn'","From H3369; insidious; Jokshan, an Arabian patriarch: - Jokshan."]},{"k":"H3371","v":["יׇקְתְאֵל","Yoqthᵉʼêl","yok-theh-ale'","Probably from the same as H3348 and H410; veneration of God (compare H3354); Joktheel, the name of a place in Palestine, and of one in Idumaea: - Joktheel."]},{"k":"H3372","v":["יָרֵא","yârêʼ","yaw-ray'","A primitive root; to fear; morally to revere; causatively to frighten: - affright, be (make) afraid, dread (-ful), (put in) fear (-ful, -fully, -ing). (be had in) reverence (-end), X see, terrible (act, -ness, thing)."]},{"k":"H3373","v":["יָרֵא","yârêʼ","yaw-ray'","From H3372; fearing; morally reverent: - afraid, fear (-ful)."]},{"k":"H3374","v":["יִרְאָה","yirʼâh","yir-aw'","Feminine of H3373; fear (also used as infinitive); morally reverence: -  X dreadful, X exceedingly, fear (-fulness)."]},{"k":"H3375","v":["יִרְאוֹן","Yirʼôwn","yir-ohn'","From H3372; fearfulness; Jiron, a place in Palestine: - Iron."]},{"k":"H3376","v":["יִרְאִיָּיה","Yirʼîyâyh","yir-ee-yaw'","From H3373 and H3050; fearful of Jah; Jirijah, an Israelite: - Irijah."]},{"k":"H3377","v":["יָרֵב","Yârêb","yaw-rabe'","From H7378; he will contend; Jareb, a symbolical name for Assyria: - Jareb. Compare H3402."]},{"k":"H3378","v":["יְרֻבַּעַל","Yᵉrubbaʻal","yer-oob-bah'-al","From H7378 and H1168; Baal will contend; Jerubbaal, a symbolical name of Gideon: - Jerubbaal."]},{"k":"H3379","v":["יָרׇבְעָם","Yârobʻâm","yaw-rob-awm'","From H7378 and H5971; (the) people will contend; Jarobam, the name of two Israelite kings: - Jeroboam."]},{"k":"H3380","v":["יְרֻבֶּשֶׁת","Yᵉrubbesheth","yer-oob-beh'-sheth","From H7378 and H1322; shame (that is, the idol) will contend; Jerubbesheth, a symbolical name for Gideon: - Jerubbesheth."]},{"k":"H3381","v":["יָרַד","yârad","yaw-rad'","A primitive root; to descend (literally to go downwards; or conventionally to a lower region, as the shore, a boundary, the enemy, etc.; or figuratively to fall); causatively to bring down (in all the above applications): -    X abundantly, bring down, carry down, cast down, (cause to) come (-ing) down, fall (down), get down, go (-ing) down (-ward), hang down, X indeed, let down, light (down), put down (off), (cause to, let) run down, sink, subdue, take down."]},{"k":"H3382","v":["יֶרֶד","Yered","yeh'-red","From H3381; a descent; Jered, the name of an antediluvian, and of an Israelite: - Jared."]},{"k":"H3383","v":["יַרְדֵּן","Yardên","yar-dane'","From H3381; a descender; Jarden, the principal river of Palestine: - Jordan."]},{"k":"H3384","v":["יָרָה","yârâh","yaw-raw'","A primitive root; properly to flow as water (that is, to rain); transitively to lay or throw (especially an arrow, that is, to shoot); figuratively to point out (as if by aiming the finger), to teach: -  (+) archer, cast, direct, inform, instruct, lay, shew, shoot, teach (-er, -ing), through."]},{"k":"H3385","v":["יְרוּאֵל","Yᵉrûwʼêl","yer-oo-ale'","From H3384 and H410; founded of God; Jeruel, a place in Palestine: - Jeruel"]},{"k":"H3386","v":["יָרוֹחַ","Yârôwach","yaw-ro'-akh","Perhaps denominative from H3394; (born at the) new moon; Jaroach, an Israelite: - Jaroah."]},{"k":"H3387","v":["יָרוֹק","yârôwq","yaw-roke'","From H3417; green, that is, an herb: - green thing."]},{"k":"H3388","v":["יְרוּשָׁא","Yᵉrûwshâʼ","yer-oo-shaw'","Feminine passive participle of H3423; possessed; Jerusha or Jerushah, an Israelitess: - Jerusha, Jerushah."]},{"k":"H3389","v":["יְרוּשָׁלַ͏ִם","Yᵉrûwshâlaim","yer-oo-shaw-lah'-im","A dual (in allusion to its two main hills (the true pointing, at least of the former reading, seems to be that of H3390)); probably from (the passive participle of) H3384 and H7999; founded peaceful; Jerushalaim or Jerushalem, the capital city of Palestine: - Jerusalem."]},{"k":"H3390","v":["יְרוּשָׁלֵם","Yᵉrûwshâlêm","yer-oo-shaw-lame'","(Chaldee); corresponding to H3389: - Jerusalem."]},{"k":"H3391","v":["יֶרַח","yerach","yeh'-rakh","From an unused root of uncertain signification; a lunation, that is, month: - month, moon."]},{"k":"H3392","v":["יֶרַח","Yerach","yeh'-rakh","The same as H3391; Jerach, an Arabian patriarch: - Jerah."]},{"k":"H3393","v":["יְרַח","yᵉrach","yeh-rakh'","(Chaldee); corresponding to H3391; a month: - month."]},{"k":"H3394","v":["יָרֵחַ","yârêach","yaw-ray'-akh","From the same as H3391; the moon: - moon."]},{"k":"H3395","v":["יְרֹחָם","Yᵉrôchâm","yer-o-khawm'","From H7355; compassionate; Jerocham, the name of seven or eight Israelites: - Jeroham."]},{"k":"H3396","v":["יְרַחְמְאֵל","Yᵉrachmᵉʼêl","yer-akh-meh-ale'","From H7355 and H410; God will compassionate; Jerachmeel, the name of three Israelites: - Jerahmeel."]},{"k":"H3397","v":["יְרַחְמְאֵלִי","Yᵉrachmᵉʼêlîy","yer-akh-meh-ay-lee'","Patronymic from H3396; a Jerachmeelite or descendant of Jerachmeel: - Jerahmeelites."]},{"k":"H3398","v":["יַרְחָע","Yarchâʻ","yar-khaw'","Probably of Egyptian origin; Jarcha, an Egyptian: - Jarha."]},{"k":"H3399","v":["יָרַט","yâraṭ","yaw-rat'","A primitive root; to precipitate or hurl (rush) headlong; (intransitively) to be rash: - be perverse, turn over."]},{"k":"H3400","v":["יְרִיאֵל","Yᵉrîyʼêl","yer-ee-ale'","From H3384 and H410; thrown of God; Jeriel, an Israelite: - Jeriel. Compare H3385."]},{"k":"H3401","v":["יָרִיב","yârîyb","yaw-rebe'","From H7378; literally he will contend; properly adjectively contentious; used as noun, an adversary: - that contend (-eth), that strive."]},{"k":"H3402","v":["יָרִיב","Yârîyb","yaw-rebe'","The same as H3401; Jarib, the name of three Israelites: - Jarib."]},{"k":"H3403","v":["יְרִיבַי","Yᵉrîybay","yer-eeb-ah'ee","From H3401; contentious; Jeribai, an Israelite: - Jeribai."]},{"k":"H3404","v":["יְרִיָּה","Yᵉrîyâh","yer-ee-yaw'","From H3384 and H3050; Jah will throw; Jerijah, an Israelite: - Jeriah, Jerijah."]},{"k":"H3405","v":["יְרִיחוֹ","Yᵉrîychôw","yer-ee-kho'","Perhaps from H3394; its month; or else from H7306; fragrant; Jericho or Jerecho, a place in Palestine: - Jericho."]},{"k":"H3406","v":["יְרִימוֹת","Yᵉrîymôwth","yer-ee-mohth'","Feminine plural from H7311; elevations; Jerimoth or Jeremoth, the name of twelve Israelites: - Jeremoth, Jerimoth, and Ramoth [from the margin]."]},{"k":"H3407","v":["יְרִיעָה","yᵉrîyʻâh","yer-ee-aw'","From H3415; a hanging (as tremulous): - curtain."]},{"k":"H3408","v":["יְרִיעוֹת","Yᵉrîyʻôwth","yer-ee-ohth'","Plural of H3407; curtains; Jerioth, an Israelitess: - Jerioth."]},{"k":"H3409","v":["יָרֵךְ","yârêk","yaw-rake'","From an unused root meaning to be soft; the thigh (from its fleshy softness); by euphemism the generative parts; figuratively a shank, flank, side: -  X body, loins, shaft, side, thigh."]},{"k":"H3410","v":["יַרְכָא","yarkâʼ","yar-kaw'","(Chaldee); corresponding to H3411; a thigh: - thigh."]},{"k":"H3411","v":["יְרֵכָה","yᵉrêkâh","yer-ay-kaw'","Feminine of H3409; properly the flank; but used only figuratively, the rear or recess: - border, coast, part, quarter, side."]},{"k":"H3412","v":["יַרְמוּת","Yarmûwth","yar-mooth'","From H7311; elevation; Jarmuth, the name of two places in Palestine: - Jarmuth."]},{"k":"H3413","v":["יְרֵמַי","Yᵉrêmay","yer-ay-mah'-ee","From H7311; elevated; Jeremai, an Israelite: - Jeremai."]},{"k":"H3414","v":["יִרְמְיָה","Yirmᵉyâh","yir-meh-yaw'","From H7311 and H3050; Jah will rise; Jirmejah, the name of eight or nine Israelites: - Jeremiah."]},{"k":"H3415","v":["יָרַע","yâraʻ","yaw-rah'","A primitive root; properly to be broken up (with any violent action), that is, (figuratively) to fear: - be grievous [only Isa_15:4; the rest belong to H7489]."]},{"k":"H3416","v":["יִרְפְּאֵל","Yirpᵉʼêl","yir-peh-ale'","From H7495 and H410; God will heal; Jirpeel, a place in Palestine: - Irpeel."]},{"k":"H3417","v":["יָרָק","yârâq","yaw-rak'","A primitive root; to spit: -  X but, spit."]},{"k":"H3418","v":["יֶרֶק","yereq","yeh'-rek","From H3417 (in the sense of vacuity of color); properly pallor, that is, hence the yellowish green of young and sickly vegetation; concretely verdure, that is, grass or vegetation: - grass, green (thing)."]},{"k":"H3419","v":["יָרָק","yârâq","yaw-rawk'","From the same as H3418; properly green; concretely a vegetable: - green, herbs."]},{"k":"H3420","v":["יֵרָקוֹן","yêrâqôwn","yay-raw-kone'","From H3418; paleness, whether of persons (from fright), or of plants (from drought): - mildew, paleness."]},{"k":"H3421","v":["יׇרְקְעָם","Yorqᵉʻâm","yor-keh-awm'","From H7324 and H5971; people will be poured forth; Jorkeam, a place in Palestine: - Jorkeam."]},{"k":"H3422","v":["יְרַקְרַק","yᵉraqraq","yer-ak-rak'","From the same as H3418; yellowishness: - greenish, yellow."]},{"k":"H3423","v":["יָרַשׁ","yârash","yaw-rash'","A primitive root; to occupy (be driving out previous tenants, and possessing in their place); by implication to seize, to rob, to inherit; also to expel, to impoverish, to ruin: - cast out, consume, destroy, disinherit, dispossess, drive (-ing) out, enjoy, expel, X without fail, (give to, leave for) inherit (-ance, -or), + magistrate, be (make) poor, come to poverty, (give to, make to) possess, get (have) in (take) possession, seize upon, succeed, X utterly."]},{"k":"H3424","v":["יְרֵשָׁה","yᵉrêshâh","yer-ay-shaw'","From H3423; occupancy: - possession."]},{"k":"H3425","v":["יְרֻשָּׁה","yᵉrushshâh","yer-oosh-shaw'","From H2423; something occupied; a conquest; also a patrimony: - heritage, inheritance, possession."]},{"k":"H3426","v":["יֵשׁ","yêsh","yaysh","Perhaps from an unused root meaning to stand out, or exist; entity; used adverbially or as a copula for the substantive verb (H1961); there is or are (or any other form of the verb to be, as may suit the connection): - (there) are, (he, it, shall, there, there may, there shall, there should) be, thou do, had, hast, (which) hath, (I, shalt, that) have, (he, it, there) is, substance, it (there) was, (there) were, ye will, thou wilt, wouldest."]},{"k":"H3427","v":["יָשַׁב","yâshab","yaw-shab'","A primitive root; properly to sit down (specifically as judge, in ambush, in quiet); by implication to dwell, to remain; causatively to settle, to marry: -  (make to) abide (-ing), continue, (cause to, make to) dwell (-ing), ease self, endure, establish, X fail, habitation, haunt, (make to) inhabit (-ant), make to keep [house], lurking, X marry (-ing), (bring again to) place, remain, return, seat, set (-tle), (down-) sit (-down, still, -ting down, -ting [place] -uate), take, tarry."]},{"k":"H3428","v":["יֶשֶׁבְאָב","Yeshebʼâb","yeh-sheb-awb'","From H3427 and H1; seat of (his) father; Jeshebab, an Israelite: - Jeshebeab."]},{"k":"H3429","v":["יֹשֵׁב בַּשֶּׁבֶת","Yôshêb bash-Shebeth","yo-shabe' bash-sheh'-beth","From the active participle of H3427 and H7674, with a preposition and the article interposed; sitting in the seat; Josheb-bash-Shebeht, an Israelite: - that sat in the seat."]},{"k":"H3430","v":["יִשְׁבּוֹ בְּנֹב","Yishbôw bᵉ-Nôb","yish-bo'beh-nobe","From H3427 and H5011, with a pronominal suffix and a preposition interposed; his dwelling (is) in Nob; Jishbo-be-Nob, a Philistine: - Ishbi-benob [from the margin]."]},{"k":"H3431","v":["יִשְׁבַּח","Yishbach","yish-bakh'","From H7623; he will praise; Jishbach, an Israelite: - Ishbah."]},{"k":"H3432","v":["יָשֻׁבִי","Yâshubîy","yaw-shoo-bee'","Patronymic from H3437; a Jashubite, or descendant of Jashub: - Jashubites."]},{"k":"H3433","v":["יָשֻׁבִי לֶחֶם","Yâshubîy Lechem","yaw-shoo-bee' leh'-khem","Shown as the first form; from H7725 and H3899; returner of bread; Jashubi-Lechem, an Israelite; but probably the text should be pointed (as in the second form) and rendered (they were) inhabitants of Lechem, that is, of Bethlehem (by contraction): - Jashubi-lehem. [Probably the text should be pointed    Yoshebey Lechem, yo-sheh-bay leh-khem, and rendered “(they were) inhabitants of Lechem,” That is,of Bethlehem (by contraction). Compare H3902.]"]},{"k":"H3434","v":["יָשׇׁבְעָם","Yâshobʻâm","yaw-shob-awm'","From H7725 and H5971; people will return; Jashobam, the name of two or three Israelites: - Jashobeam."]},{"k":"H3435","v":["יִשְׁבָּק","Yishbâq","yish-bawk'","From an unused root corresponding to H7662; he will leave; Jishbak, a son of Abraham: - Ishbak."]},{"k":"H3436","v":["יׇשְׁבְּקָשָׁה","Yoshbᵉqâshâh","yosh-bek-aw-shaw'","From H3427 and H7186; a hard seat; Joshbekashah, an Israelite: - Joshbekashah."]},{"k":"H3437","v":["יָשׁוּב","Yâshûwb","yaw-shoob'","From H7725; he will return; Jashub, the name of two Israelites: - Jashub."]},{"k":"H3438","v":["יִשְׁוָה","Yishvâh","yish-vaw'","From H7737; he will level; Jishvah, an Israelite: - Ishvah, Isvah."]},{"k":"H3439","v":["יְשׁוֹחָיָה","Yᵉshôwchâyâh","yesh-o-khaw-yaw'","From the same as H3445 and H3050; Jah will empty; Jeshochajah, an Israelite: - Jeshoaiah."]},{"k":"H3440","v":["יִשְׁוִי","Yishvîy","yish-vee'","From H7737; level; Jishvi, the name of two Israelites: - Ishuai, Ishvi, Isui, Jesui."]},{"k":"H3441","v":["יִשְׁוִי","Yishvîy","yish-vee'","Patronymic from H3440; a Jishvite (collectively) or descendant of Jishvi: - Jesuites."]},{"k":"H3442","v":["יֵשׁוּעַ","Yêshûwaʻ","yay-shoo'-ah","For H3091; he will save; Jeshua, the name of two Israelites, also of a place in Palestine: - Jeshua."]},{"k":"H3443","v":["יֵשׁוּעַ","Yêshûwaʻ","yay-shoo'-ah","(Chaldee); corresponding to H3442: - Jeshua."]},{"k":"H3444","v":["יְשׁוּעָה","yᵉshûwʻâh","yesh-oo'-aw","Feminine passive participle of H3467; something saved, that is, (abstractly) deliverance; hence aid, victory, prosperity: - deliverance, health, help (-ing), salvation, save, saving (health), welfare."]},{"k":"H3445","v":["יֶשַׁח","yeshach","yeh'-shakh","From an unused root meaning to gape (as the empty stomach); hunger: - casting down."]},{"k":"H3446","v":["יִשְׂחָק","Yischâq","yis-khawk'","From H7831; he will laugh; Jischak, the heir of Abraham: - Isaac. Compare H3327."]},{"k":"H3447","v":["יָשַׁט","yâshaṭ","yaw-shat'","A primitive root; to extend: - hold out."]},{"k":"H3448","v":["יִשַׁי","Yishay","yee-shah'-ee","From the same as H3426; extant; Jishai, David’s father: - Jesse."]},{"k":"H3449","v":["יִשִּׁיָּה","Yishshîyâh","yish-shee-yaw'","From H5383 and H3050; Jah will lend; Jishshijah, the name of five Israelites: - Ishiah, Isshiah, Ishijah, Jesiah."]},{"k":"H3450","v":["יְשִׁימָאֵל","Yᵉshîymâʼêl","yes-eem-aw-ale'","From H7760 and H410; God will place; Jesimael, an Israelite: - Jesimiel."]},{"k":"H3451","v":["יְשִׁימַה","yᵉshîymah","yesh-ee-maw'","From H3456; desolation: - let death seize [from the margin]."]},{"k":"H3452","v":["יְשִׁימוֹן","yᵉshîymôwn","yesh-ee-mone'","From H3456; a desolation: - desert, Jeshimon, solitary, wilderness."]},{"k":"H3453","v":["יָשִׁישׁ","yâshîysh","yaw-sheesh'","From H3486; an old man: - (very) aged (man), ancient, very old."]},{"k":"H3454","v":["יְשִׁישָׁי","Yᵉshîyshây","yesh-ee-shah'-ee","From H3453; aged; Jeshishai, an Israelite: - Jeshishai."]},{"k":"H3455","v":["יָשַׂם","yâsam","yaw-sam'","A primitive root; to place; intransitively to be placed: - be put (set)."]},{"k":"H3456","v":["יָשַׁם","yâsham","yaw-sham'","A primitive root; to lie waste: - be desolate."]},{"k":"H3457","v":["יִשְׁמָא","Yishmâʼ","yish-maw'","From H3456; desolate; Jishma, an Israelite: - Ishma."]},{"k":"H3458","v":["יִשְׁמָעֵאל","Yishmâʻêʼl","yish-maw-ale'","From H8085 and H410; God will hear; Jishmael, the name of Abraham’s oldest son, and of five Israelites: - Ishmael."]},{"k":"H3459","v":["יִשְׁמָעֵאלִי","Yishmâʻêʼlîy","yish-maw-ay-lee'","Patronymic from H3458; a Jishmaelite or descendant of Jishmael: - Ishmaelite."]},{"k":"H3460","v":["יִשְׁמַעְיָה","Yishmaʻyâh","yish-mah-yaw'","From H8085 and H3050; Jah will hear; Jishmajah, the name of two Israelites: - Ishmaiah."]},{"k":"H3461","v":["יִשְׁמְרַי","Yishmᵉray","yish-mer-ah'-ee","From H8104; preservative; Jishmerai, an Israelite: - Ishmerai."]},{"k":"H3462","v":["יָשֵׁן","yâshên","yaw-shane'","A primitive root; properly to be slack or languid, that is, (by implication) sleep (figuratively to die); also to grow old, stale or inveterate: - old (store), remain long, (make to) sleep."]},{"k":"H3463","v":["יָשֵׁן","yâshên","yaw-shane'","From H3462; sleepy: - asleep, (one out of) sleep (-eth, -ing), slept."]},{"k":"H3464","v":["יָשֵׁן","Yâshên","yaw-shane'","The same as H3463; Jashen, an Israelite: - Jashen."]},{"k":"H3465","v":["יָשָׁן","yâshân","yaw-shawn'","From H3462; old: - old."]},{"k":"H3466","v":["יְשָׁנָה","Yᵉshânâh","yesh-aw-naw'","Feminine of H3465; Jeshanah, a place in Palestine: - Jeshanah."]},{"k":"H3467","v":["יָשַׁע","yâshaʻ","yaw-shah'","A primitive root; properly to be open, wide or free, that is, (by implication) to be safe; causatively to free or succor: -  X at all, avenging, defend, deliver (-er), help, preserve, rescue, be safe, bring (having) salvation, save (-iour), get victory."]},{"k":"H3468","v":["יֶשַׁע","yeshaʻ","yeh'-shah","From H3467; liberty, deliverance, prosperity: - safety, salvation, saving."]},{"k":"H3469","v":["יִשְׁעִי","Yishʻîy","yish-ee'","From H3467; saving; Jishi, the name of four Israelites: - Ishi."]},{"k":"H3470","v":["יְשַׁעְיָה","Yᵉshaʻyâh","yesh-ah-yaw'","From H3467 and H3050; Jah has saved; Jeshajah, the name of seven Israelites: - Isaiah, Jesaiah, Jeshaiah."]},{"k":"H3471","v":["יָשְׁפֵה","yâshᵉphêh","yaw-shef-ay'","From an unused root meaning to polish; a gem supposed to be jasper (from the resemblance in name): - jasper."]},{"k":"H3472","v":["יִשְׁפָּה","Yishpâh","yish-paw'","Perhaps from H8192; he will scratch; Jishpah, an Israelite: - Ispah."]},{"k":"H3473","v":["יִשְׁפָּן","Yishpân","yish-pawn'","Probably from the same as H8227; he will hide; Jishpan, an Israelite: - Ishpan."]},{"k":"H3474","v":["יָשַׁר","yâshar","yaw-shar'","A primitive root; to be straight or even; figuratively to be (causatively to make) right, pleasant, prosperous: - direct, fit, seem good (meet), + please (well), be (esteem, go) right (on), bring (look, make, take the) straight (way), be upright (-ly)."]},{"k":"H3475","v":["יֵשֶׁר","Yêsher","yay'-sher","From H3474; the right; Jesher, an Israelite: - Jesher."]},{"k":"H3476","v":["יֹשֶׁר","yôsher","yo'-sher","From H3474; the right: - equity, meet, right, upright (-ness)."]},{"k":"H3477","v":["יָשָׁר","yâshâr","yaw-shawr'","From H3474; straight (literally or figuratively): - convenient, equity, Jasher, just, meet (-est), + pleased well right (-eous), straight, (most) upright (-ly, -ness)."]},{"k":"H3478","v":["יִשְׂרָאֵל","Yisrâʼêl","yis-raw-ale'","From H8280 and H410; he will rule as God; Jisrael, a symbolical name of Jacob; also (typically) of his posterity: - Israel."]},{"k":"H3479","v":["יִשְׂרָאֵל","Yisrâʼêl","yis-raw-ale'","(Chaldee); corresponding to H3478: - Israel."]},{"k":"H3480","v":["יְשַׂרְאֵלָה","Yᵉsarʼêlâh","yes-ar-ale'-aw","By variation from H3477 and H410 with directive enclitic; right towards God; Jesarelah, an Israelite: - Jesharelah. Compare H841"]},{"k":"H3481","v":["יִשְׂרְאֵלִי","Yisrᵉʼêlîy","yis-reh-ay-lee'","Patronymic from H3478; a Jisreelite or descendant of Jisrael: - of Israel, Israelite."]},{"k":"H3482","v":["יִשְׂרְאֵלִית","Yisrᵉʼêlîyth","yis-reh-ay-leeth'","Feminine of H3481; a Jisreelitess or female descendant of Jisrael: - Israelitish."]},{"k":"H3483","v":["יִשְׁרָה","yishrâh","yish-raw'","Feminine of H3477; rectitude: - uprightness."]},{"k":"H3484","v":["יְשֻׁרוּן","Yᵉshurûwn","yesh-oo-roon'","From H3474; upright; Jeshurun, a symbolical name for Israel: - Jeshurun."]},{"k":"H3485","v":["יִשָּׂשכָר","Yissâˢkâr","yis-saw-kawr'","From H5375 and H7939; he will bring a reward; Jissaskar, a son of Jacob: - Issachar."]},{"k":"H3486","v":["יָשֵׁשׁ","yâshêsh","yaw-shaysh'","From an unused root meaning to blanch; gray haired, that is, an aged man: - stoop for age."]},{"k":"H3487","v":["יַת","yath","yath","(Chaldee); corresponding to H853; a sign of the object of a verb: - + whom."]},{"k":"H3488","v":["יְתִב","yᵉthib","yeth-eeb'","(Chaldee); corresponding to H3427; to sit or dwell: - dwell, (be) set, sit."]},{"k":"H3489","v":["יָתֵד","yâthêd","yaw-thade'","From an unused root meaning to pin through or fast; a peg: - nail, paddle, pin, stake."]},{"k":"H3490","v":["יָתוֹם","yâthôwm","yaw-thome'","From an unused root meaning to be lonely; a bereaved person: - fatherless (child), orphan."]},{"k":"H3491","v":["יָתוּר","yâthûwr","yaw-thoor'","Passive participle of H3498; properly what is left, that is, (by implication) a gleaning: - range."]},{"k":"H3492","v":["יַתִּיר","Yattîyr","yat-teer'","From H3498; redundant; Jattir, a place in Palestine: - Jattir."]},{"k":"H3493","v":["יַתִּיר","yattîyr","yat-teer'","(Chaldee); corresponding to H3492; preeminent; adverbially very: - exceeding (-ly), excellent."]},{"k":"H3494","v":["יִתְלָה","Yithlâh","yith-law'","Probably from H8518; it will hang, that is, high; Jithlah, a place in Palestine: - Jethlah."]},{"k":"H3495","v":["יִתְמָה","Yithmâh","yith-maw'","From the same as H3490; orphanage; Jithmah, an Israelite: - Ithmah."]},{"k":"H3496","v":["יַתְנִיאֵל","Yathnîyʼêl","yath-nee-ale'","From an unused root meaning to endure, and H410; continued of God; Jathniel, an Israelite: - Jathniel."]},{"k":"H3497","v":["יִתְנָן","Yithnân","yith-nawn'","From the same as H8577; extensive; Jithnan, a place in Palestine: - Ithnan."]},{"k":"H3498","v":["יָתַר","yâthar","yaw-thar'","A primitive root; to jut over or exceed; by implication to excel; (intransitively) to remain or be left; causatively to leave, cause to abound, preserve: - excel, leave (a remnant), left behind, too much, make plenteous, preserve, (be, let) remain (-der, -ing, -nant), reserve, residue, rest."]},{"k":"H3499","v":["יֶתֶר","yether","yeh'-ther","Properly an overhanging, that is, (by implication) an excess, superiority, remainder; also a small rope (as hanging free): -    + abundant, cord, exceeding, excellency (-ent), what they leave, that hath left, plentifully, remnant, residue, rest, string, with."]},{"k":"H3500","v":["יֶתֶר","Yether","yeh'-ther","The same as H3499 Jether, the name of five or six Israelites and of one Midianite: - Jether, Jethro. Compare H3503."]},{"k":"H3501","v":["יִתְרָא","Yithrâʼ","yith-raw'","By variation for H3502; Jithra, an Israelite (or Ishmaelite): - Ithra."]},{"k":"H3502","v":["יִתְרָה","yithrâh","yith-raw'","Feminine of H3499; properly excellence, that is, (by implication) wealth: - abundance, riches."]},{"k":"H3503","v":["יִתְרוֹ","Yithrôw","yith-ro'","From H3499 with pronominal suffix; his excellence; Jethro, Moses’ father in law: - Jethro. Compare H3500."]},{"k":"H3504","v":["יִתְרוֹן","yithrôwn","yith-rone'","From H3498; preeminence, gain: - better, excellency (-leth), profit (-able)."]},{"k":"H3505","v":["יִתְרִי","Yithrîy","yith-ree'","Patronymic from H3500; a Jithrite or descendant of Jether: - Ithrite."]},{"k":"H3506","v":["יִתְרָן","Yithrân","yith-rawn'","From H3498; excellent; Jithran, the name of an Edomite and of an Israelite: - Ithran."]},{"k":"H3507","v":["יִתְרְעָם","Yithrᵉʻâm","yith-reh-awm'","From H3499 and H5971; excellence of people; Jithream, a son of David: - Ithream."]},{"k":"H3508","v":["יֹתֶרֶת","yôthereth","yo-theh'-reth","Feminine active participle of H3498; the lobe or flap of the liver (as if redundant or outhanging): - caul."]},{"k":"H3509","v":["יְתֵת","Yᵉthêth","yeh-thayth'","Of uncertain derivation; Jetheth, an Edomite: - Jetheth."]},{"k":"H3510","v":["כָּאַב","kâʼab","kaw-ab'","A primitive root; properly to feel pain; by implication to grieve; figuratively to spoil: - grieving, mar, have pain, make sad (sore), (be) sorrowful."]},{"k":"H3511","v":["כְּאֵב","kᵉʼêb","keh-abe'","From H3510; suffering (physical or mental), adversity: - grief, pain, sorrow."]},{"k":"H3512","v":["כָּאָה","kâʼâh","kaw-aw'","A primitive root; to despond; causatively to deject: - broken, be grieved, make sad."]},{"k":"H3513","v":["כָּבַד","kâbad","kaw-bad'","A primitive root; to be heavy, that is, in a bad sense (burdensome, severe, dull) or in a good sense (numerous, rich, honorable); causatively to make weighty (in the same two senses): - abounding with, more grievously afflict, boast, be chargeable, X be dim, glorify, be (make) glorious (things), glory, (very) great, be grievous, harden, be (make) heavy, be heavier, lay heavily, (bring to, come to, do, get, be had in) honour (self), (be) honourable (man), lade, X more be laid, make self many, nobles, prevail, promote (to honour), be rich, be (go) sore, stop."]},{"k":"H3514","v":["כֹּבֶד","kôbed","ko'-bed","From H3513; weight, multitude, vehemence: - grievousness, heavy, great number."]},{"k":"H3515","v":["כָּבֵד","kâbêd","kaw-bade'","From H3513; heavy; figuratively in a good sense (numerous) or in a bad sense (severe, difficult, stupid): - (so) great, grievous, hard (-ened), (too) heavy (-ier), laden, much, slow, sore, thick."]},{"k":"H3516","v":["כָּבֵד","kâbêd","kaw-bade'","The same as H3515; the liver (as the heaviest of the viscera): - liver."]},{"k":"H3517","v":["כְּבֵדֻת","kᵉbêduth","keb-ay-dooth'","Feminine of H3515; difficulty: -  X heavily."]},{"k":"H3518","v":["כָּבָה","kâbâh","kaw-baw'","A primitive root; to expire or (causatively) to extinguish (fire, light, anger): - go (put) out, quench."]},{"k":"H3519","v":["כָּבוֹד","kâbôwd","kaw-bode'","From H3513; properly weight; but only figuratively in a good sense, splendor or copiousness: - glorious (-ly), glory, honour (-able)."]},{"k":"H3520","v":["כְּבוּדָּה","kᵉbûwddâh","keb-ood-daw'","Irregular feminine passive participle of H3513; weightiness; that is, magnificence, wealth: - carriage, all glorious, stately."]},{"k":"H3521","v":["כָּבוּל","Kâbûwl","kaw-bool'","From the same as H3525 in the sense of limitation; sterile; Cabul, the name of two places in Palestine: - Cabul."]},{"k":"H3522","v":["כַּבּוֹן","Kabbôwn","kab-bone'","From an unused root meaning to heap up; hilly; Cabbon, a place in Palestine: - Cabbon."]},{"k":"H3523","v":["כְּבִיר","kᵉbîyr","keb-eer","From H3527 in the original sense of plaiting; a matrass (of intertwined materials): - pillow."]},{"k":"H3524","v":["כַּבִּיר","kabbîyr","kab-beer'","From H3727; vast, whether in extent (figuratively of power, mighty; of time, aged), or in number, many: -  + feeble, mighty, most, much, strong, valiant."]},{"k":"H3525","v":["כֶּבֶל","kebel","keh'-bel","From an unused root meaning to twine or braid together; a fetter: - fetter."]},{"k":"H3526","v":["כָּבַס","kâbaç","kaw-bas'","A primitive root; to trample; hence to wash (properly by stamping with the feet), whether literally (including the fulling process) or figuratively: - fuller, wash (-ing)."]},{"k":"H3527","v":["כָּבַר","kâbar","kaw-bar'","A primitive root; properly to plait together, that is, (figuratively) to augment (especially in number or quantity, to accumulate): - in abundance, multiply."]},{"k":"H3528","v":["כְּבָר","kᵉbâr","keb-awr'","From H3527; properly extent of time, that is, a great while; hence long ago, formerly, hitherto: - already, (seeing that which), now."]},{"k":"H3529","v":["כְּבָר","Kᵉbâr","keb-awr'","The same as H3528; length; Kebar, a river of Mesopotamia: - Chebar. Compare H2249."]},{"k":"H3530","v":["כִּבְרָה","kibrâh","kib-raw'","Feminine of H3528; properly length, that is, a measure (of uncertain dimension): -    X little."]},{"k":"H3531","v":["כְּבָרָה","kᵉbârâh","keb-aw-raw'","From H3527 in its original sense; a sieve (as netted): - sieve."]},{"k":"H3532","v":["כֶּבֶשׂ","kebes","keh-bes'","From an unused root meaning to dominate; a ram (just old enough to butt): - lamb, sheep."]},{"k":"H3533","v":["כָּבַשׁ","kâbash","kaw-bash'","A primitive root; to tread down; hence negatively to disregard; positively to conquer, subjugate, violate: - bring into bondage, force, keep under, subdue, bring into subjection."]},{"k":"H3534","v":["כֶּבֶשׁ","kebesh","keh'-besh","From H3533; a footstool (as trodden upon): - footstool."]},{"k":"H3535","v":["כִּבְשָׂה","kibsâh","kib-saw'","Feminine of H3532; a ewe: - (ewe) lamb."]},{"k":"H3536","v":["כִּבְשָׁן","kibshân","kib-shawn'","From H3533; a smelting furnace (as reducing metals): - furnace."]},{"k":"H3537","v":["כַּד","kad","kad","From an unused root meaning to deepen; properly a pail; but generally of earthenware; a jar for domestic purposes: - barrel, pitcher."]},{"k":"H3538","v":["כְּדַב","kᵉdab","ked-ab'","(Chaldee); from a root corresponding to H3576; false: - lying."]},{"k":"H3539","v":["כַּדְכֹּד","kadkôd","kad-kode'","From the same as H3537 in the sense of striking fire from a metal forged; a sparkling gem, probably the ruby: - agate."]},{"k":"H3540","v":["כְּדׇרְלָעֹמֶר","Kᵉdorlâʻômer","ked-or-law-o'-mer","Of foreign origin; Kedorlaomer, an early Persian king: - Chedorlaomer."]},{"k":"H3541","v":["כֹּה","kôh","ko","From the prefix K and H1931; properly like this, that is, by implication (of manner) thus (or so); also (of place) here (or hither); or (of time) now: - also, here, + hitherto, like, on the other side, so (and much), such, on that manner, (on) this (manner, side, way, way and that way), + mean while, yonder."]},{"k":"H3542","v":["כָּה","kâh","kaw","(Chaldee); corresponding to H3541: - hitherto."]},{"k":"H3543","v":["כָּהָה","kâhâh","kaw-haw'","A primitive root; to be weak, that is, (figuratively) to despond (causatively rebuke), or (of light, the eye) to grow dull: - darken, be dim, fail, faint, restrain, X utterly."]},{"k":"H3544","v":["כֵּהֶה","kêheh","kay-heh'","From H3543; feeble, obscure: - somewhat dark, darkish, wax dim, heaviness, smoking."]},{"k":"H3545","v":["כֵּהָה","kêhâh","kay-haw'","Feminine of H3544; properly a weakening; figuratively alleviation, that is, cure: - healing."]},{"k":"H3546","v":["כְּהַל","kᵉhal","keh-hal'","(Chaldee); a root corresponding to H3201 and H3557; to be able: - be able, could."]},{"k":"H3547","v":["כָּהַן","kâhan","kaw-han'","A primitive root, apparently meaning to mediate in religious services; but used only as denominative from H3548; to officiate as a priest; figuratively to put on regalia: - deck, be (do the office of a, execute the, minister in the) priest (‘s office)."]},{"k":"H3548","v":["כֹּהֵן","kôhên","ko-hane'","Active participle of H3547; literally one officiating, a priest; also (by courtesy) an acting priest (although a layman): - chief ruler, X own, priest, prince, principal officer."]},{"k":"H3549","v":["כָּהֵן","kâhên","kaw-hane'","(Chaldee); corresponding to H3548: - priest."]},{"k":"H3550","v":["כְּהֻנָּה","kᵉhunnâh","keh-hoon-naw'","From H3547; priesthood: - priesthood, priest’s office."]},{"k":"H3551","v":["כַּו","kav","kav","(Chaldee); from a root corresponding to H3854 in the sense of piercing; a window (as a perforation): - window."]},{"k":"H3552","v":["כּוּב","Kûwb","koob","Of foreign derivation; Kub, a country near Egypt: - Chub."]},{"k":"H3553","v":["כּוֹבַע","kôwbaʻ","ko'-bah","From an unused root meaning to be high or rounded; a helmet (as arched): - helmet. Compare H6959."]},{"k":"H3554","v":["כָּוָה","kâvâh","kaw-vaw'","A primitive root; properly to prick or penetrate; hence to blister (as smarting or eating into): - burn."]},{"k":"H3555","v":["כְּוִיָּה","kᵉvîyâh","kev-ee-yaw'","From H3554; a branding: - burning."]},{"k":"H3556","v":["כּוֹכָב","kôwkâb","ko-kawb'","Probably from the same as H3522 (in the sense of rolling) or H3554 (in the sense of blazing); a star (as round or as shining); figuratively a prince: - star ([-gazer])."]},{"k":"H3557","v":["כּוּל","kûwl","kool","A primitive root; properly to keep in; hence to measure; figuratively to maintain (in various senses): - (be able to, can) abide, bear, comprehend, contain, feed, forbearing, guide, hold (-ing in), nourish (-er), be present, make provision, receive, sustain, provide sustenance (victuals)."]},{"k":"H3558","v":["כּוּמָז","kûwmâz","koo-mawz'","From an unused root meaning to store away; a jewel (probably gold beads): - tablet."]},{"k":"H3559","v":["כּוּן","kûwn","koon","A primitive root; properly to be erect (that is, stand perpendicular);. hence (causatively) to set up, in a great variety of applications, whether literal (establish, fix, prepare, apply), or figurative (appoint, render sure, proper or prosperous): - certain (-ty), confirm, direct, faithfulness, fashion, fasten, firm, be fitted, be fixed, frame, be meet, ordain, order, perfect, (make) preparation, prepare (self), provide, make provision, (be, make) ready, right, set (aright, fast, forth), be stable, (e-) stablish, stand, tarry, X very deed."]},{"k":"H3560","v":["כּוּן","Kûwn","koon","Probably from H3559; established; Kun, a place in Syria: - Chun."]},{"k":"H3561","v":["כַּוָּן","kavvân","kav-vawn'","From H3559; something prepared, that is, a sacrificial wafer: - cake."]},{"k":"H3562","v":["כּוֹנַנְיָהוּ","Kôwnanyâhûw","ko-nan-yaw'-hoo","From H3559 and H3050; Jah has sustained; Conanjah, the name of two Israelites: - Conaniah, Cononiah. Compare H3663."]},{"k":"H3563","v":["כּוֹס","kôwç","koce","From an unused root meaning to hold together; a cup (as a container), often figuratively a lot (as if a potion); also some unclean bird, probably an owl (perhaps from the cup like cavity of its eye): - cup, (small) owl. Compare H3599."]},{"k":"H3564","v":["כּוּר","kûwr","koor","From an unused root meaning properly to dig through; a pot or furnace (as if excavated): - furnace. Compare H3600."]},{"k":"H3565","v":["כּוֹר עָשָׁן","Kôwr ʻÂshân","kore aw-shawn'","From H3564 and H6227; furnace of smoke; Cor-Ashan, a place in Palestine: - Chor-ashan."]},{"k":"H3566","v":["כּוֹרֶשׁ","Kôwresh","ko'-resh","From the Persian; Koresh (or Cyrus), the Persian king: - Cyrus."]},{"k":"H3567","v":["כּוֹרֶשׁ","Kôwresh","ko'-resh","(Chaldee); corresponding to H3566: - Cyrus."]},{"k":"H3568","v":["כּוּשׁ","Kûwsh","koosh","Probably of foreign origin; Cush (or Ethiopia), the name of a son of Ham, and of his territory; also of an Israelite: - Chush, Cush, Ethiopia."]},{"k":"H3569","v":["כּוּשִׁי","Kûwshîy","koo-shee'","Patronymic from H3568; a Cushite, or descendant of Cush: - Cushi, Cushite, Ethiopian (-s)."]},{"k":"H3570","v":["כּוּשִׁי","Kûwshîy","koo-shee'","The same as H3569; Cushi, the name of two Israelites: - Cushi."]},{"k":"H3571","v":["כּוּשִׁית","Kûwshîyth","koo-sheeth'","Feminine of H3569; a Cushite woman: - Ethiopian."]},{"k":"H3572","v":["כּוּשָׁן","Kûwshân","koo-shawn'","Perhaps from H3568; Cushan, a region of Arabia: - Cushan."]},{"k":"H3573","v":["כּוּשַׁן רִשְׁעָתַיִם","Kûwshan Rishʻâthayim","koo-shan' rish-awthah'-yim","Apparently from H3572 and the dual of H7564; Cushan of double wickedness; Cushan-Rishathajim, a Mesopotamian king: - Chushan-rishathayim."]},{"k":"H3574","v":["כּוֹשָׁרָה","kôwshârâh","ko-shaw-raw'","From H3787; prosperity; in plural freedom: -  X chain."]},{"k":"H3575","v":["כּוּת","Kûwth","kooth","Of foreign origin; Cuth or Cuthah, a province of Assyria: - Cuth."]},{"k":"H3576","v":["כָּזַב","kâzab","kaw-zab'","A primitive root; to lie (that is, deceive), literally or figuratively: - fail, (be found a, make a) liar, lie, lying, be in vain."]},{"k":"H3577","v":["כָּזָב","kâzâb","kaw-zawb'","From H3576; falsehood; literally (untruth) or figuratively (idol): - deceitful, false, leasing, + liar, lie, lying."]},{"k":"H3578","v":["כֹּזְבָא","Kôzᵉbâʼ","ko-zeb-aw'","From H3576; fallacious; Cozeba, a place in Palestine: - Choseba."]},{"k":"H3579","v":["כֹּזְבִי","Kôzᵉbîy","koz-bee'","From H3576; false; Cozbi, a Midianitess: - Cozbi."]},{"k":"H3580","v":["כְּזִיב","Kᵉzîyb","kez-eeb'","From H3576; falsified; Kezib, a place in Palestine: - Chezib."]},{"k":"H3581","v":["כֹּחַ","kôach","ko'-akh","From an unused root meaning to be firm; vigor, literally (force, in a good or a bad sense) or figuratively (capacity, means, produce); also (from its hardiness) a large lizard: - ability, able, chameleon, force, fruits, might, power (-ful), strength, substance, wealth."]},{"k":"H3582","v":["כָּחַד","kâchad","kaw-khad'","A primitive root; to secrete, by act or word; hence (intensively) to destroy: - conceal, cut down (off), desolate, hide."]},{"k":"H3583","v":["כָּחַל","kâchal","kaw-khal'","A primitive root; to paint (with stibium): - paint."]},{"k":"H3584","v":["כָּחַשׁ","kâchash","kaw-khash'","A primitive root; to be untrue, in word (to lie, feign, disown) or deed (to disappoint, fail, cringe): - deceive, deny, dissemble, fail, deal falsely, be found liars, (be-) lie, lying, submit selves."]},{"k":"H3585","v":["כַּחַשׁ","kachash","kakh'-ash","From H3584; literally a failure of flesh, that is, emaciation; figuratively hypocrisy: - leanness, lies, lying."]},{"k":"H3586","v":["כֶּחָשׁ","kechâsh","kekh-awsh'","From H3584; faithless: - lying."]},{"k":"H3587","v":["כִּי","kîy","kee","From H3554; a brand or scar: - burning."]},{"k":"H3588","v":["כִּי","kîy","kee","A primitive particle (the full form of the prepositional prefix) indicating causal relations of all kinds, antecedent or consequent; (by implication) very widely used as a relative conjugation or adverb; often largely modified by other particles annexed: - and, + (forasmuch, inasmuch, where-) as, assured [-ly], + but, certainly, doubtless, + else, even, + except, for, how, (because, in, so, than) that, + nevertheless, now, rightly, seeing, since, surely, then, therefore, + (al-) though, + till, truly, + until, when, whether, while, who, yea, yet,"]},{"k":"H3589","v":["כִּיד","kîyd","keed","From a primitive root meaning to strike; a crushing; figuratively calamity: - destruction."]},{"k":"H3590","v":["כִידוֹד","kîydôwd","kee-dode'","From the same as H3589 (compare H3539); properly something struck off, that is, a spark (as struck): - spark."]},{"k":"H3591","v":["כִּידוֹן","kîydôwn","kee-dohn'","From the same as H3589; properly something to strike with, that is, a dart (perhaps smaller than H2595): - lance, shield, spear, target."]},{"k":"H3592","v":["כִּידוֹן","Kîydôwn","kee-dohn'","The same as H3591; Kidon, a place in Palestine: - Chidon."]},{"k":"H3593","v":["כִּידוֹר","kîydôwr","kee-dore'","Of uncertain derivation; perhaps tumult: - battle."]},{"k":"H3594","v":["כִּיּוּן","Kîyûwn","kee-yoon'","From H3559; properly a statue, that is, idol; but used (by euphemism) for some heathen deity (perhaps corresponding to Priapus or Baal-peor): - Chiun."]},{"k":"H3595","v":["כִּיּוֹר","kîyôwr","kee-yore'","From the same as H3564; properly something round (as excavated or bored), that is, a chafing dish for coals or a caldron for cooking; hence (from similarity of form) a washbowl; also (for the same reason) a pulpit or platform: - hearth, laver, pan, scaffold."]},{"k":"H3596","v":["כִּילַי","kîylay","kee-lah'-ee","From H3557 in the sense of withholding; niggardly: - churl."]},{"k":"H3597","v":["כֵּילַף","kêylaph","kay-laf'","From an unused root meaning to clap or strike with noise; a club or sledge hammer: - hammer."]},{"k":"H3598","v":["כִּימָה","Kîymâh","kee-maw'","From the same as H3558; a cluster of stars, that is, the Pleiades: - Pleiades, seven stars."]},{"k":"H3599","v":["כִּיס","kîyç","keece","A form for H3563; a cup; also a bag for money or weights: - bag, cup, purse."]},{"k":"H3600","v":["כִּיר","kîyr","keer","A form for H3564 (only in the dual); a cooking range (consisting of two parallel stones, across which the boiler is set): - ranges for pots."]},{"k":"H3601","v":["כִּישׁוֹר","kîyshôwr","kee-shore'","From H3787; literally a director, that is, the spindle or shank of a distaff (H6418) by which it is twirled: - spindle."]},{"k":"H3602","v":["כָּכָה","kâkâh","kaw'-kaw","From H3541; just so, referring to the previous or following context: - after that (this) manner, this matter, (even) so, in such a case, thus."]},{"k":"H3603","v":["כִּכָּר","kikkâr","kik-kawr'","From H3769; a circle, that is, (by implication) a circumjacent tract or region, especially the Ghor or valley of the Jordan; also a (round) loaf; also a talent (or large (round) coin): - loaf, morsel, piece, plain, talent."]},{"k":"H3604","v":["כִּכֵּר","kikkêr","kik-kare'","(Chaldee); corresponding to H3603; a talent: - talent."]},{"k":"H3605","v":["כֹּל","kôl","kole","From H3634; properly the whole; hence all, any or every (in the singular only, but often in a plural sense): - (in) all (manner, [ye]), altogether, any (manner), enough, every (one, place, thing), howsoever, as many as, [no-] thing, ought, whatsoever, (the) whole, whoso (-ever)."]},{"k":"H3606","v":["כֹּל","kôl","kole","(Chaldee); corresponding to H3605: - all, any, + (forasmuch) as, + be- (for this) cause, every, + no (manner, -ne), + there (where) -fore, + though, what (where, who) -soever, (the) whole."]},{"k":"H3607","v":["כָּלָא","kâlâʼ","kaw-law'","A primitive root; to restrict, by act (hold back or in) or word (prohibit): - finish, forbid, keep (back), refrain, restrain, retain, shut up, be stayed, withhold."]},{"k":"H3608","v":["כֶּלֶא","keleʼ","keh'-leh","From H3607; a prison: - prison. Compare H3610, H3628."]},{"k":"H3609","v":["כִּלְאָב","Kilʼâb","kil-awb'","Apparently from H3607 and H1; restraint of (his) father; Kilab, an Israelite: - Chileab."]},{"k":"H3610","v":["כִּלְאַיִם","kilʼayim","kil-ah'-yim","Dual of H3608 in the original sense of separation; two heterogeneities: - divers seeds (-e kinds), mingled (seed)."]},{"k":"H3611","v":["כֶּלֶב","keleb","keh'-leb","From an unused root meaning to yelp, or else to attack; a dog; hence (by euphemism) a male prostitute: - dog."]},{"k":"H3612","v":["כָּלֵב","Kâlêb","kaw-labe'","Perhaps a form of H3611, or else from the same root in the sense of forcible; Caleb, the name of three Israelites: - Caleb."]},{"k":"H3613","v":["כָּלֵב אֶפְרָתָה","Kâlêb ʼEphrâthâh","kaw-labe' ef-raw'-thaw","From H3612 and H672; Caleb-Ephrathah, a place in Egypt (if the text is correct): - Caleb-ephrathah."]},{"k":"H3614","v":["כָּלִבּוֹ","Kâlibbôw","kaw-lib-bo'","The first form is probably by erroneous transcription for the second form; patronymic from H3612; a Calebite or descendant of Caleb: - of the house of Caleb."]},{"k":"H3615","v":["כָּלָה","kâlâh","kaw-law'","A primitive root; to end, whether intransitively (to cease, be finished, perish) or transitively (to complete, prepare, consume): - accomplish, cease, consume (away), determine, destroy (utterly), be (when . . . were) done, (be an) end (of), expire, (cause to) fail, faint, finish, fulfil, X fully, X have, leave (off), long, bring to pass, wholly reap, make clean riddance, spend, quite take away, waste."]},{"k":"H3616","v":["כָּלֶה","kâleh","kaw-leh'","From H3615; pining: - fail."]},{"k":"H3617","v":["כָּלָה","kâlâh","kaw-law'","From H3615; a completion; adverbially completely; also destruction: - altogether, (be, utterly) consume (-d), consummation (-ption), was determined, (full, utter) end, riddance."]},{"k":"H3618","v":["כַּלָּה","kallâh","kal-law'","From H3634; a bride (as if perfect); hence a son's wife: - bride, daughter-in-law, spouse."]},{"k":"H3619","v":["כְּלוּב","kᵉlûwb","kel-oob'","From the same as H3611; a bird trap (as furnished with a clapstick or treadle to spring it); hence a basket (as resembling a wicker cage): - basket, cage."]},{"k":"H3620","v":["כְּלוּב","Kᵉlûwb","kel-oob'","The same as H3619; Kelub, the name of two Israelites: - Chelub."]},{"k":"H3621","v":["כְּלוּבַי","Kᵉlûwbay","kel-oo-bay'-ee","A form of H3612; Kelubai, an Israelite: - Chelubai."]},{"k":"H3622","v":["כְּלוּהַי","Kᵉlûwhay","kel-oo-hah'-ee","From H3615; completed; Keluhai, an Israelite: - Chelluh."]},{"k":"H3623","v":["כְּלוּלָה","kᵉlûwlâh","kel-oo-law'","Denominative passive participle from H3618; bridehood (only in the plural): - espousal."]},{"k":"H3624","v":["כֶּלַח","kelach","keh'-lakh","From an unused root meaning to be complete; maturity: - full (old) age."]},{"k":"H3625","v":["כֶּלַח","Kelach","keh'-lakh","The same as H3624; Kelach, a place in Assyria: - Calah."]},{"k":"H3626","v":["כׇּל־חֹזֶה","Kol-Chôzeh","kol-kho-zeh'","From H3605 and H2374; every seer; Col-Cho-zeh, an Israelite: - Col-hozeh."]},{"k":"H3627","v":["כְּלִי","kᵉlîy","kel-ee'","From H3615; something prepared, that is, any apparatus (as an implement, utensil, dress, vessel or weapon): - armour ([-bearer]), artillery, bag, carriage, + furnish, furniture, instrument, jewel, that is made of, X one from another, that which pertaineth, pot, + psaltery, sack, stuff, thing, tool, vessel, ware, weapon, + whatsoever."]},{"k":"H3628","v":["כְּלִיא","kᵉlîyʼ","kel-ee'","From H3607 (compare H3608); a prison: - prison."]},{"k":"H3629","v":["כִּלְיָה","kilyâh","kil-yaw'","Feminine of H3627 (only in the plural); a kidney (as an essential organ); figuratively the mind (as the interior self): - kidneys, reins."]},{"k":"H3630","v":["כִּלְיוֹן","Kilyôwn","kil-yone'","A form of H3631; Kiljon, an Israelite: - Chilion."]},{"k":"H3631","v":["כִּלָּיוֹן","killâyôwn","kil-law-yone'","From H3615; pining, destruction: - consumption, failing."]},{"k":"H3632","v":["כָּלִיל","kâlîyl","kaw-leel'","From H3634; complete; as noun, the whole (specifically a sacrifice entirely consumed); as adverb fully: - all, every whit, flame, perfect (-ion), utterly, whole burnt offering (sacrifice), wholly."]},{"k":"H3633","v":["כַּלְכֹּל","Kalkôl","kal-kole'","From H3557; sustenance; Calcol, an Israelite: - Calcol, Chalcol."]},{"k":"H3634","v":["כָּלַל","kâlal","kaw-lal'","A primitive root; to complete: - (make) perfect."]},{"k":"H3635","v":["כְּלַל","kᵉlal","kel-al'","(Chaldee); corresponding to H3634; to complete: - finish, make (set) up."]},{"k":"H3636","v":["כְּלָל","Kᵉlâl","kel-awl'","From H3634; complete; Kelal, an Israelite: - Chelal."]},{"k":"H3637","v":["כָּלַם","kâlam","kaw-lawm'","A primitive root; properly to wound; but only figuratively, to taunt or insult: - be (make) ashamed, blush, be confounded, be put to confusion, hurt, reproach, (do, put to) shame."]},{"k":"H3638","v":["כִּלְמָד","Kilmâd","kil-mawd'","Of foreign derivation; Kilmad, a place apparently in the Assyrian empire: - Chilmad."]},{"k":"H3639","v":["כְּלִמָּה","kᵉlimmâh","kel-im-maw'","From H3637; disgrace: - confusion, dishonour, reproach, shame."]},{"k":"H3640","v":["כְּלִמּוּת","kᵉlimmûwth","kel-im-mooth'","From H3639; disgrace: - shame."]},{"k":"H3641","v":["כַּלְנֶה","Kalneh","kal-neh'","Of foreign derivation; Calneh or Calno, a place in the Assyrian empire: - Calneh, Calno. Compare H3656."]},{"k":"H3642","v":["כָּמַהּ","kâmahh","kaw-mah","A primitive root; to pine after: - long."]},{"k":"H3643","v":["כִּמְהָם","Kimhâm","kim-hawm'","From H3642; pining; Kimham, an Israelite: - Chimham."]},{"k":"H3644","v":["כְּמוֹ","kᵉmôw","kem-o'","A form of the prefix K, but used separately (compare H3651); as, thus, so: - according to, (such) as (it were, well as), in comparison of, like (as, to, unto), thus, when, worth."]},{"k":"H3645","v":["כְּמוֹשׁ","Kᵉmôwsh","kem-oshe'","From an unused root meaning to subdue; the powerful; Kemosh, the god of the Moabites: - Chemosh."]},{"k":"H3646","v":["כַּמֹּן","kammôn","kam-mone'","From an unused root meaning to store up or preserve; “cummin” (from its use as a condiment): - cummin."]},{"k":"H3647","v":["כָּמַס","kâmaç","kaw-mas'","A primitive root; to store away, that is, (figuratively) in the memory: - lay up in store."]},{"k":"H3648","v":["כָּמַר","kâmar","kaw-mar'","A primitive root; properly to intertwine or contract, that is, (by implication) to shrivel (as with heat); figuratively to be deeply affected with passion (love or pity): - be black, be kindled, yearn."]},{"k":"H3649","v":["כָּמָר","kâmâr","kaw-mawr'","From H3648; properly an ascetic (as if shrunk with self maceration), that is, an idolatrous priest (only in plural): - Chemarims, (idolatrous) priests."]},{"k":"H3650","v":["כִּמְרִיר","kimrîyr","kim-reer'","Reduplicated from H3648; obscuration (as if from shrinkage of light), that is, an eclipse (only in plural): - black-ness."]},{"k":"H3651","v":["כֵּן","kên","kane","From H3559; properly set upright; hence (figuratively as adjective) just; but usually (as adverb or conjugation) rightly or so (in various applications to manner, time and relation; often with other particles): -    + after that (this, -ward, -wards), as . . . as, + [for-] asmuch as yet, + be (for which) cause, + following, howbeit, in (the) like (manner, -wise), X the more, right, (even) so, state, straightway, such (thing), surely, + there (where) -fore, this, thus, true, well, X you."]},{"k":"H3652","v":["כֵּן","kên","kane","(Chaldee); corresponding to H3651; so: - thus."]},{"k":"H3653","v":["כֵּן","kên","kane","The same as H3651, used as a noun; a stand, that is, pedestal or station: - base, estate, foot, office, place, well."]},{"k":"H3654","v":["כֵּן","kên","kane","From H3661 in the sense of fastening; a gnat (from infixing its sting; used only in plural (and irregularly in Exo_8:16-18): - lice, X manner."]},{"k":"H3655","v":["כָּנָה","kânâh","kaw-naw'","A primitive root; to address by an additional name; hence, to eulogize: - give flattering titles, surname (himself)."]},{"k":"H3656","v":["כַּנֶּה","Kanneh","kan-neh'","For H3641; Canneh, a place in Assyria: - Canneh"]},{"k":"H3657","v":["כַּנָּה","kannâh","kaw-naw'","From H3661; a plant (as set): -    X vineyard."]},{"k":"H3658","v":["כִּנּוֹר","kinnôwr","kin-nore'","From an unused root meaning to twang; a harp: - harp."]},{"k":"H3659","v":["כׇּנְיָהוּ","Konyâhûw","kon-yaw'-hoo","For H3204; Conjah, an Israelite king: - Coniah."]},{"k":"H3660","v":["כְּנֵמָא","kᵉnêmâʼ","ken-ay-maw'","(Chaldee); corresponding to H3644; so or thus: - so, (in) this manner (sort), thus."]},{"k":"H3661","v":["כָּנַן","kânan","kaw-nan'","A primitive root; to set out, that is, plant: -  X vineyard."]},{"k":"H3662","v":["כְּנָנִי","Kᵉnânîy","ken-aw-nee'","From H3661; planted; Kenani, an Israelite: - Chenani."]},{"k":"H3663","v":["כְּנַנְיָה","Kᵉnanyâh","ken-an-yaw'","From H3661 and H3050; Jah has planted; Kenanjah, an Israelite: - Chenaniah."]},{"k":"H3664","v":["כָּנַס","kânaç","kaw-nas'","A primitive root; to collect; hence, to enfold: - gather (together), heap up, wrap self."]},{"k":"H3665","v":["כָּנַע","kânaʻ","kaw-nah'","A primitive root; properly to bend the knee; hence to humiliate, vanquish: - bring down (low), into subjection, under, humble (self), subdue."]},{"k":"H3666","v":["כִּנְעָה","kinʻâh","kin-aw'","From H3665 in the sense of folding (compare H3664); a package: - wares."]},{"k":"H3667","v":["כְּנַעַן","Kᵉnaʻan","ken-ah'-an","From H3665; humiliated; Kenaan, a son of Ham; also the country inhabited by him: - Canaan, merchant, traffick."]},{"k":"H3668","v":["כְּנַעֲנָה","Kᵉnaʻănâh","ken-ah-an-aw'","Feminine of H3667; Kenaanah, the name of two Israelites: - Chenaanah."]},{"k":"H3669","v":["כְּנַעַנִי","Kᵉnaʻanîy","ken-ah-an-ee'","Patrial from H3667; a Kenaanite or inhabitant of Kenaan; by implication a pedlar (the Cananites standing for their neighbors the Ishmaelites, who conducted mercantile caravans): - Canaanite, merchant, trafficker."]},{"k":"H3670","v":["כָּנַף","kânaph","kaw-naf'","A primitive root; properly to project laterally, that is, probably (reflexively) to withdraw: - be removed."]},{"k":"H3671","v":["כָּנָף","kânâph","kaw-nawf'","From H3670; an edge or extremity; specifically (of a bird or army) a wing, (of a garment or bed clothing) a flap, (of the earth) a quarter, (of a building) a pinnacle: -  + bird, border, corner, end, feather [-ed], X flying, + (one an-) other, overspreading, X quarters, skirt, X sort, uttermost part, wing ([-ed])."]},{"k":"H3672","v":["כִּנְּרוֹת","Kinnᵉrôwth","kin-ner-oth'","Respectively plural and singular feminine from the same as H3658; perhaps harp shaped; Kinneroth or Kinnereth, a place in Palestine: - Chinnereth, Chinneroth, Cinneroth."]},{"k":"H3673","v":["כָּנַשׁ","kânash","kaw-nash'","(Chaldee); corresponding to H3664; to assemble: - gather together."]},{"k":"H3674","v":["כְּנָת","kᵉnâth","ken-awth'","From H3655; a colleague (as having the same title): - companion."]},{"k":"H3675","v":["כְּנָת","kᵉnâth","ken-awth'","(Chaldee); corresponding to H3674: - companion."]},{"k":"H3676","v":["כֵּס","kêç","kace","Apparently a contraction for H3678, but probably by erroneous transcription for H5251: - sworn."]},{"k":"H3677","v":["כֶּסֶא","keçeʼ","keh'-seh","Apparently from H3680; properly fulness or the full moon, that is, its festival: - (time) appointed."]},{"k":"H3678","v":["כִּסֵּא","kiççêʼ","kis-say'","From H3680; properly covered, that is, a throne (as canopied): - seat, stool, throne."]},{"k":"H3679","v":["כַּסְדַּי","Kaçday","kas-dah'-ee","For H3778: - Chaldean."]},{"k":"H3680","v":["כָּסָה","kâçâh","kaw-saw'","A primitive root; properly to plump, that is, fill up hollows; by implication to cover (for clothing or secrecy): - clad self, close, clothe, conceal, cover (self), (flee to) hide, overwhelm. Compare H3780."]},{"k":"H3681","v":["כָּסוּי","kâçûwy","kaw-soo'-ee","Passive participle of H3680; properly covered, that is, (as noun) a covering: - covering."]},{"k":"H3682","v":["כְּסוּת","kᵉçûwth","kes-ooth'","From H3680; a cover (garment); figuratively a veiling: - covering, raiment, vesture."]},{"k":"H3683","v":["כָּסַח","kâçach","kaw-sakh'","A primitive root; to cut off: - cut down (up)."]},{"k":"H3684","v":["כְּסִיל","kᵉçîyl","kes-eel'","From H3688; properly fat, that is, (figuratively) stupid or silly: - fool (-ish)."]},{"k":"H3685","v":["כְּסִיל","Kᵉçîyl","kes-eel'","The same as H3684; any notable constellation; specifically Orion (as if a burly one): - constellation, Orion."]},{"k":"H3686","v":["כְּסִיל","Kᵉçîyl","kes-eel'","The same as H3684; Kesil, a place in Palestine: - Chesil."]},{"k":"H3687","v":["כְּסִילוּת","kᵉçîylûwth","kes-eel-ooth'","From H3684; silliness: - foolish."]},{"k":"H3688","v":["כָּסַל","kâçal","kaw-sal'","A primitive root; properly to be fat, that is, (figuratively) silly: - be foolish."]},{"k":"H3689","v":["כֶּסֶל","keçel","keh'-sel","From H3688; properly fatness, that is, by implication (literally) the loin (as the seat of the leaf fat) or (generally) the viscera; also (figuratively) silliness or (in a good sense) trust: - confidence, flank, folly, hope, loin."]},{"k":"H3690","v":["כִּסְלָה","kiçlâh","kis-law'","Feminine of H3689; in a good sense, trust; in a bad one, silliness: - confidence, folly."]},{"k":"H3691","v":["כִּסְלֵו","Kiçlêv","kis-lave'","Probably of foreign origin; Kisleu, the ninth Hebrew month: - Chisleu."]},{"k":"H3692","v":["כִּסְלוֹן","Kiçlôwn","kis-lone'","From H3688; hopeful; Kislon, an Israelite: - Chislon."]},{"k":"H3693","v":["כְּסָלוֹן","Kᵉçâlôwn","kes-aw-lone'","From H3688; fertile; Kesalon, a place in Palestine: - Chesalon."]},{"k":"H3694","v":["כְּסֻלּוֹת","Kᵉçullôwth","kes-ool-loth'","Feminine plural of passive participle of H3688; fattened, Kesulloth, a place in Palestine: - Chesulloth."]},{"k":"H3695","v":["כַּסְלֻחִים","Kaçluchîym","kas-loo'-kheem","A plural probably of foreign derivation; Casluchim, a people cognate to the Egyptian: - Casluhim."]},{"k":"H3696","v":["כִּסְלֹת תָּבֹר","Kiçlôth Tâbôr","kis-loth' taw-bore'","From the feminine plural of H3689 and H8396; flanks of Tabor; Kisloth Tabor, a place in Palestine: - Chisloth-tabor."]},{"k":"H3697","v":["כָּסַם","kâçam","kaw-sam'","A primitive root; to shear: -  X only, poll. Compare H3765."]},{"k":"H3698","v":["כֻּסֶּמֶת","kuççemeth","koos-seh'-meth","From H3697; spelt (from its bristliness as if just shorn): - fitches, rie."]},{"k":"H3699","v":["כָּסַס","kâçaç","kaw-sas'","A primitive root; to estimate: - make count."]},{"k":"H3700","v":["כָּסַף","kâçaph","kaw-saf'","A primitive root; properly to become pale, that is, (by implication) to pine after; also to fear: - [have] desire, be greedy, long, sore."]},{"k":"H3701","v":["כֶּסֶף","keçeph","keh'-sef","From H3700; silver (from its pale color); by implication money: - money, price, silver (-ling)."]},{"k":"H3702","v":["כְּסַף","kᵉçaph","kes-af'","(Chaldee); corresponding to H3701: - money, silver."]},{"k":"H3703","v":["כָּסִפְיָא","Kâçiphyâʼ","kaw-sif-yaw'","Perhaps from H3701; silvery; Casiphja, a place in Babylon: - Casiphia."]},{"k":"H3704","v":["כֶּסֶת","keçeth","keh'-seth","From H3680; a cushion or pillow (as covering a seat or bed): - pillow."]},{"k":"H3705","v":["כְּעַן","kᵉʻan","keh-an'","(Chaldee); probably from H3652; now: - now."]},{"k":"H3706","v":["כְּעֶנֶת","kᵉʻeneth","keh-eh'-neth","(Chaldee); feminine of H3705; thus (only in the formula “and so forth”): - at such a time."]},{"k":"H3707","v":["כַּעַס","kaʻaç","kaw-as'","A primitive root; to trouble; by implication to grieve, rage, be indignant: - be angry, be grieved, take indignation, provoke (to anger, unto wrath), have sorrow, vex, be wroth."]},{"k":"H3708","v":["כַּעַס","kaʻaç","kah'-as","From H3707; vexation: - anger, angry, grief, indignation, provocation, provoking, X sore, sorrow, spite, wrath."]},{"k":"H3709","v":["כַּף","kaph","kaf","From H3721; the hollow hand or palm (so of the paw of an animal, of the sole, and even of the bowl of a dish or sling, the handle of a bolt, the leaves of a palm tree); figuratively power: - branch, + foot, hand ([-ful], -dle, [-led]), hollow, middle, palm, paw, power, sole, spoon."]},{"k":"H3710","v":["כֵּף","kêph","kafe","From H3721; a hollow rock: - rock."]},{"k":"H3711","v":["כָּפָה","kâphâh","kaw-faw'","A primitive root; properly to bend, that is, (figuratively) to tame or subdue: - pacify."]},{"k":"H3712","v":["כִּפָּה","kippâh","kip-paw'","Feminine of H3709; a leaf of a palm tree: - branch."]},{"k":"H3713","v":["כְּפוֹר","kᵉphôwr","kef-ore'","From H3722; properly a cover, that is, (by implication) a tankard (or covered goblet); also white frost (as covering the ground): - bason, hoar (-y) frost."]},{"k":"H3714","v":["כָּפִיס","kâphîyç","kaw-fece'","From an unused root meaning to connect; a girder: - beam."]},{"k":"H3715","v":["כְּפִיר","kᵉphîyr","kef-eer'","From H3722; a village (as covered in by walls); also a young lion (perhaps as covered with a mane): - (young) lion, village. Compare H3723."]},{"k":"H3716","v":["כְּפִירָה","Kᵉphîyrâh","kef-ee-raw'","Feminine of H3715; the village (always with the article); Kephirah, a place in Palestine: - Chephirah."]},{"k":"H3717","v":["כָּפַל","kâphal","kaw-fal'","A primitive root; to fold together; figuratively to repeat: - double."]},{"k":"H3718","v":["כֶּפֶל","kephel","keh'-fel","From H3717; a duplicate: - double."]},{"k":"H3719","v":["כָּפַן","kâphan","kaw-fan'","A primitive root; to bend: - bend."]},{"k":"H3720","v":["כָּפָן","kâphân","kaw-fawn'","From H3719; hunger (as making to stoop with emptiness and pain): - famine."]},{"k":"H3721","v":["כָּפַף","kâphaph","kaw-faf'","A primitive root; to curve: - bow down (self)."]},{"k":"H3722","v":["כָּפַר","kâphar","kaw-far'","A primitive root; to cover (specifically with bitumen); figuratively to expiate or condone, to placate or cancel: - appease, make (an) atonement, cleanse, disannul, forgive, be merciful, pacify, pardon, to pitch, purge (away), put off, (make) reconcile (-liation)."]},{"k":"H3723","v":["כָּפָר","kâphâr","kaw-fawr'","From H3722; a village (as protected by walls): - village. Compare H3715."]},{"k":"H3724","v":["כֹּפֶר","kôpher","ko'-fer","From H3722; properly a cover, that is, (literally) a village (as covered in); (specifically) bitumen (as used for coating), and the henna plant (as used for dyeing); figuratively a redemption price: - bribe, camphire, pitch, ransom, satisfaction, sum of money, village."]},{"k":"H3725","v":["כִּפֻּר","kippur","kip-poor'","From H3722; expiation (only in plural): - atonement."]},{"k":"H3726","v":["כְּפַר הָעַמּוֹנִי","Kᵉphar hâ-ʻAmmôwnîy","kef-ar' haw-am-monee'","From H3723 and H5984, with the article interposed; village of the Ammonite; Kefarha Ammoni, a place in Palestine: - Chefar-haamonai."]},{"k":"H3727","v":["כַּפֹּרֶת","kappôreth","kap-po'-reth","From H3722; a lid (used only of the cover of the sacred Ark): - mercy seat."]},{"k":"H3728","v":["כָּפַשׁ","kâphash","kaw-fash'","A primitive root; to tread down; figuratively to humiliate: - cover."]},{"k":"H3729","v":["כְּפַת","kᵉphath","kef-ath'","(Chaldee); a root of uncertain correspondence; to fetter: - bind."]},{"k":"H3730","v":["כַּפְתֹּר","kaphtôr","kaf-tore'","Probably from an unused root meaning to encircle; a chaplet; but used only in an architectonic sense, that is, the capital of a column, or a wreath like button or disk on the candelabrum: - knop, (upper) lintel."]},{"k":"H3731","v":["כַּפְתֹּר","Kaphtôr","kaf-tore'","Apparently the same as H3730; Caphtor (that is, a wreath shaped island), the original seat of the Philistines: - Caphtor."]},{"k":"H3732","v":["כַּפְתֹּרִי","Kaphtôrîy","kaf-to-ree'","Patrial from H3731; a Caphtorite (collectively) or native of Caphtor: - Caphthorim, Caphtorim (-s)."]},{"k":"H3733","v":["כַּר","kar","kar","From H3769 in the sense of plumpness; a ram (as full grown and fat), including a battering ram (as butting); hence a meadow (as for sheep); also a pad or camel’s saddle (as puffed out): - captain, furniture, lamb, (large) pasture, ram. See also H1033, H3746."]},{"k":"H3734","v":["כֹּר","kôr","kore","From the same as H3564; properly a deep round vessel, that is, (specifically) a cor or measure for things dry. Chaldee the same: - cor, measure. Chaldee the same."]},{"k":"H3735","v":["כָּרָא","Kârâʼ","kaw-raw'","(Chaldee); probably corresponding to H3738 in the sense of piercing (figuratively); to grieve: - be grieved."]},{"k":"H3736","v":["כַּרְבֵּל","karbêl","kar-bale'","From the same as H3525; to gird or clothe: - clothed."]},{"k":"H3737","v":["כַּרְבְּלָא","karbᵉlâʼ","kar-bel-aw'","(Chaldee); from a verb corresponding to that of H3736; a mantle: - hat."]},{"k":"H3738","v":["כָּרָה","kârâh","kaw-raw'","A primitive root; properly to dig; figuratively to plot; generally to bore or open: - dig, X make (a banquet), open."]},{"k":"H3739","v":["כָּרָה","kârâh","kaw-raw'","Usually assigned as a primitive root, but probably only a special application of H3738 (through the common idea of planning implied in a bargain); to purchase: - buy, prepare."]},{"k":"H3740","v":["כֵּרָה","kêrâh","kay-raw'","From H3739; a purchase: - provision."]},{"k":"H3741","v":["כָּרָה","kârâh","kaw-raw'","Feminine of H3733; a meadow: - cottage."]},{"k":"H3742","v":["כְּרוּב","kᵉrûwb","ker-oob'","Of uncertain derivation; a cherub or imaginary figure: - cherub, [plural] cherubims."]},{"k":"H3743","v":["כְּרוּב","Kᵉrûwb","ker-oob'","The same as H3742; Kerub, a place in Babylon: - Cherub."]},{"k":"H3744","v":["כָּרוֹז","kârôwz","kaw-roze'","(Chaldee); from H3745; a herald: - herald."]},{"k":"H3745","v":["כְּרַז","kᵉraz","ker-az'","(Chaldee); probably of Greek origin [H2784]; to proclaim: - make a proclamation."]},{"k":"H3746","v":["כָּרִי","kârîy","kaw-ree'","Perhaps an abridged plural of H3733 in the sense of leader (of the flock); a life guardsman: - captains, Cherethites [from the margin]."]},{"k":"H3747","v":["כְּרִית","Kᵉrîyth","ker-eeth'","From H3772; a cut; Kerith, a brook of Palestine: - Cherith."]},{"k":"H3748","v":["כְּרִיתוּת","kᵉrîythûwth","ker-ee-thooth'","From H3772; a cutting (of the matrimonial bond), that is, divorce: - divorce (-ment)."]},{"k":"H3749","v":["כַּרְכֹּב","karkôb","kar-kobe'","Expanded from the same as H3522; a rim or top margin: - compassive"]},{"k":"H3750","v":["כַּרְכֹּם","karkôm","kar-kome'","Probably of foreign origin; the crocus: - saffron."]},{"k":"H3751","v":["כַּרְכְּמִישׁ","Karkᵉmîysh","kar-kem-eesh'","Of foreign derivation; Karkemish, a place in Syria: - Carchemish."]},{"k":"H3752","v":["כַּרְכַּס","Karkaç","kar-kas'","Of Persian origin; Karkas, a eunuch of Xerxes: - Carcas."]},{"k":"H3753","v":["כַּרְכָּרָה","karkârâh","kar-kaw-raw'","From H3769; a dromedary (from its rapid motion as if dancing): - swift beast."]},{"k":"H3754","v":["כֶּרֶם","kerem","keh'-rem","From an unused root of uncertain meaning; a garden or vineyard: - vines, (increase of the) vineyard (-s), vintage. See also H1021."]},{"k":"H3755","v":["כֹּרֵם","kôrêm","ko-rame'","Active participle of an imaginary denominative from H3754; a vinedresser; as one or two words: - vine dresser [as one or two words]."]},{"k":"H3756","v":["כַּרְמִי","Karmîy","kar-mee'","From H3754; gardener; Karmi, the name of three Israelites: - Carmi."]},{"k":"H3757","v":["כַּרְמִי","Karmîy","kar-mee'","Patronymic from H3756; a Karmite or descendant of Karmi: - Carmites."]},{"k":"H3758","v":["כַּרְמִיל","karmîyl","kar-mele'","Probably of foreign origin; carmine, a deep red: - crimson."]},{"k":"H3759","v":["כַּרְמֶל","karmel","kar-mel'","From H3754; a planted field (garden, orchard, vineyard or park); by implication garden produce: - full (green) ears (of corn), fruitful field (place), plentiful (field)."]},{"k":"H3760","v":["כַּרְמֶל","Karmel","kar-mel'","The same as H3759; Karmel, the name of a hill and of a town in Palestine: - Carmel, fruitful (plentiful) field, (place)."]},{"k":"H3761","v":["כַּרְמְלִי","Karmᵉlîy","kar-mel-ee'","Patronymic from H3760; a Karmelite or inhabitant of Karmel (the town): - Carmelite."]},{"k":"H3762","v":["כַּרְמְלִית","Karmᵉlîyth","kar-mel-eeth'","Feminine of H3761; a Karmelitess or female inhabitant of Karmel: - Carmelitess."]},{"k":"H3763","v":["כְּרָן","Kᵉrân","ker-awn'","Of uncertain derivation; Keran, an aboriginal Idumaean: - Cheran."]},{"k":"H3764","v":["כׇּרְסֵא","korçêʼ","kor-say'","(Chaldee); corresponding to H3678; a throne: - throne."]},{"k":"H3765","v":["כִּרְסֵם","kirçêm","kir-same'","From H3697; to lay waste: - waste."]},{"k":"H3766","v":["כָּרַע","kâraʻ","kaw-rah'","A primitive root; to bend the knee; by implication to sink, to prostrate: - bow (down, self), bring down (low), cast down, couch, fall, feeble, kneeling, sink, smite (stoop) down, subdue, X very."]},{"k":"H3767","v":["כָּרָע","kârâʻ","kaw-raw'","From H3766; the leg (from the knee to the ankle) of men or locusts (only in the dual): - leg."]},{"k":"H3768","v":["כַּרְפַּס","karpaç","kar-pas'","Of foreign origin; byssus or fine vegetable wool: - green."]},{"k":"H3769","v":["כָּרַר","kârar","kaw-rar'","A primitive root; to dance (that is, whirl): - dance (-ing)."]},{"k":"H3770","v":["כְּרֵשׂ","kᵉrês","ker-ace'","By variation from H7164; the paunch or belly (as swelling out): - belly."]},{"k":"H3771","v":["כַּרְשְׁנָא","Karshᵉnâʼ","kar-shen-aw'","Of foreign origin; Karshena, a courtier of Xerxes: - Carshena."]},{"k":"H3772","v":["כָּרַת","kârath","kaw-rath'","A primitive root; to cut (off, down or asunder); by implication to destroy or consume; specifically to covenant (that is, make an alliance or bargain, originally by cutting flesh and passing between the pieces): - be chewed, be con- [feder-] ate, covenant, cut (down, off), destroy, fail, feller, be freed, hew (down), make a league ([covenant]), X lose, perish, X utterly, X want."]},{"k":"H3773","v":["כָּרֻתָה","kâruthâh","kaw-rooth-aw'","Passive participle feminine of H3772; something cut, that is, a hewn timber: - beam."]},{"k":"H3774","v":["כְּרֵתִי","Kᵉrêthîy","ker-ay-thee'","Probably from H3772 in the sense of executioner; a Kerethite or life guardsman (compare H3876), (only collectively in the singular as plural): - Cherethims, Cherethites."]},{"k":"H3775","v":["כֶּשֶׂב","keseb","keh'-seb","Apparently by transposition for H3532; a young sheep: - lamb, sheep."]},{"k":"H3776","v":["כִּשְׂבָּה","kisbâh","kis-baw'","Feminine of H3775; a young ewe: - lamb."]},{"k":"H3777","v":["כֶּשֶׂד","Kesed","keh'-sed","From an unused root of uncertain meaning; Kesed, a relative of Abraham: - Chesed."]},{"k":"H3778","v":["כַּשְׂדִּי","Kasdîy","kas-dee'","(Occasionally shown as the second form with enclitic; meaning towards the Kasdites); patronymic from H3777 (only in the plural); a Kasdite, or descendant of Kesed; by implication a Chaldaean (as if so descended); also an astrologer (as if proverbial of that people): - into Chaldea), patronymicallyn. from H3777 (only in the plural); a Kasdite; or descendant of Kesed; by implication a Chaldan (as if so descended); also an astrologer (as if proverbial of that people): - Chaldeans, Chaldees, inhabitants of Chaldea."]},{"k":"H3779","v":["כַּשְׂדַּי","Kasday","kas-dah'-ee","(Chaldee); corresponding to H3778; a Chaldaean or inhabitant of Chaldaea; by implication a Magian or professional astrologer: - Chaldean."]},{"k":"H3780","v":["כָּשָׂה","kâsâh","kaw-saw'","A primitive root; to grow fat (that is, be covered with flesh): - be covered. Compare H3680."]},{"k":"H3781","v":["כַּשִּׁיל","kashshîyl","kash-sheel'","From H3782; properly a feller, that is, an axe: - ax."]},{"k":"H3782","v":["כָּשַׁל","kâshal","kaw-shal'","A primitive root; to totter or waver (through weakness of the legs, especially the ankle); by implication to falter, stumble, faint or fall: - bereave [from the margin], cast down, be decayed, (cause to) fail, (cause, make to) fall (down, -ing), feeble, be (the) ruin (-ed, of), (be) overthrown, (cause to) stumble, X utterly, be weak."]},{"k":"H3783","v":["כִּשָּׁלוֹן","kishshâlôwn","kish-shaw-lone'","From H3782; properly a tottering, that is, ruin: - fall."]},{"k":"H3784","v":["כָּשַׁף","kâshaph","kaw-shaf'","A primitive root; properly to whisper a spell, that is, to inchant or practise magic: - sorcerer, (use) witch (-craft)."]},{"k":"H3785","v":["כֶּשֶׁף","kesheph","keh'-shef","From H3784; magic: - sorcery, witchcraft."]},{"k":"H3786","v":["כַּשָּׁף","kashshâph","kash-shawf'","From H3784; a magician: - sorcerer."]},{"k":"H3787","v":["כָּשֵׁר","kâshêr","kaw-share'","A primitive root properly to be straight or right; by implication to be acceptable; also to succeed or proser: - direct, be right, prosper."]},{"k":"H3788","v":["כִּשְׁרוֹן","kishrôwn","kish-rone'","From H3787; success, advantage: - equity, good, right."]},{"k":"H3789","v":["כָּתַב","kâthab","kaw-thab'","A primitive root; to grave; by implication to write (describe, inscribe, prescribe, subscribe): - describe, record, prescribe, subscribe, write (-ing, -ten)."]},{"k":"H3790","v":["כְּתַב","kᵉthab","keth-ab'","(Chaldee); corresponding to H3789: - write (-ten)."]},{"k":"H3791","v":["כָּתָב","kâthâb","kaw-thawb'","From H3789; something written, that is, a writing, record or book: - register, scripture, writing."]},{"k":"H3792","v":["כְּתָב","kᵉthâb","keth-awb'","(Chaldee); corresponding to H3791: - prescribing, writing (-ten)."]},{"k":"H3793","v":["כְּתֹבֶת","kᵉthôbeth","keth-o'-beth","From H3789; a letter or other mark branded on the skin: -    X any [mark]."]},{"k":"H3794","v":["כִּתִּי","Kittîy","kit-tee'","Patrial from an unused name denoting Cyprus (only in the plural); a Kittite or Cypriote; hence an islander in general, that is, the Greeks or Romans on the shores opposite Palestine: - Chittim, Kittim."]},{"k":"H3795","v":["כָּתִית","kâthîyth","kaw-theeth'","From H3807; beaten, that is, pure (oil): - beaten."]},{"k":"H3796","v":["כֹּתֶל","kôthel","ko'-thel","From an unused root meaning to compact; a wall (as gathering inmates): - wall."]},{"k":"H3797","v":["כְּתַל","kᵉthal","keth-al'","(Chaldee); corresponding to H3796: - wall."]},{"k":"H3798","v":["כִּתְלִישׁ","Kithlîysh","kith-leesh'","From H3796 and H376; wall of a man; Kithlish, a place in Palestine: - Kithlish."]},{"k":"H3799","v":["כָּתַם","kâtham","kaw-tham'","A primitive root; properly to carve or engrave, that is, (by implication) to inscribe indelibly: - mark."]},{"k":"H3800","v":["כֶּתֶם","kethem","keh'-them","From H3799; properly something carved out, that is, ore; hence gold (pure as originally mined): - ([most] fine, pure) gold (-en wedge)."]},{"k":"H3801","v":["כְּתֹנֶת","kᵉthôneth","keth-o'-neth","From an unused root meaning to cover (compare H3802); a shirt: - coat, garment, robe."]},{"k":"H3802","v":["כָּתֵף","kâthêph","kaw-thafe'","From an unused root meaning to clothe; the shoulder (proper, that is, upper end of the arm; as being the spot where the garments hang); figuratively side piece or lateral projection or anything: - arm, corner, shoulder (-piece), side, undersetter."]},{"k":"H3803","v":["כָּתַר","kâthar","kaw-thar'","A primitive root; to enclose; hence (in a friendly sense) to crown, (in a hostile one) to besiege; also to wait (as restraining oneself): - beset round, compass about, be crowned inclose round, suffer."]},{"k":"H3804","v":["כֶּתֶר","kether","keh'-ther","From H3803; properly a circlet, that is, a diadem: - crown."]},{"k":"H3805","v":["כֹתֶרֶת","kôthereth","ko-theh'-reth","Feminine active participle of H3803; the capital of a column: - chapiter."]},{"k":"H3806","v":["כָּתַשׁ","kâthash","kaw-thash'","A primitive root; to butt or pound: - bray."]},{"k":"H3807","v":["כָּתַת","kâthath","kaw-thath'","A primitive root; to bruise or violently strike: - beat (down, to pieces), break in pieces, crushed, destroy, discomfit, smite, stamp."]},{"k":"H3808","v":["לֹא","lôʼ","lo","lo; a primitive particle; not (the simple or abstract negation); by implication no; often used with other particles: -    X before, + or else, ere, + except, ig [-norant], much, less, nay, neither, never, no ([-ne], -r, [-thing]), (X as though . . . , [can-], for) not (out of), of nought, otherwise, out of, + surely, + as truly as, + of a truth, + verily, for want, + whether, without."]},{"k":"H3809","v":["לָא","lâʼ","law","(Chaldee); corresponding to H3808: - or even, neither, no (-ne, -r), ([can-]) not, as nothing, without."]},{"k":"H3810","v":["לֹא דְבַר","Lôʼ Dᵉbar","lo deb-ar'","From H3808 and H1699; pastureless; lo Debar, a place in Palestine: - Debir, Lo-debar."]},{"k":"H3811","v":["לָאָה","lâʼâh","law-aw'","A primitive root; to tire; (figuratively) to be (or make) disgusted: - faint, grieve, lothe, (be, make) weary (selves)."]},{"k":"H3812","v":["לֵאָה","Lêʼâh","lay-aw'","From H3811; weary; Leah, a wife of Jacob: - Leah."]},{"k":"H3813","v":["לָאַט","lâʼaṭ","law-at'","A primitive root; to muffle: - cover."]},{"k":"H3814","v":["לָאט","lâʼṭ","lawt","From H3813 (or perhaps for active participle of H3874); properly muffled, that is, silently: - softly."]},{"k":"H3815","v":["לָאֵל","Lâʼêl","law-ale'","From the prepositional prefix and H410; (belonging) to God; Lael an Israelite: - Lael."]},{"k":"H3816","v":["לְאֹם","lᵉʼôm","leh-ome'","From an unused root meaning to gather; a community: - nation, people."]},{"k":"H3817","v":["לְאֻמִּים","Lᵉʼummîym","leh-oom-meem'","Plural of H3816; communities; Leum mim, an Arabian: - Leummim."]},{"k":"H3818","v":["לֹא עַמִּי","Lôʼ ʻAmmîy","lo am-mee'","From H3808 and H5971 with pronominal suffix, not my people; lo Ammi, the symbolical name of a son of Hosea: - Lo-ammi."]},{"k":"H3819","v":["לֹא רֻחָמָה","Lôʼ Ruchâmâh","lo roo-khaw-maw'","From H3808 and H7355; not pitied; lo Ruchamah, the symbolical name of a son of Hosea: - Lo-ruhamah."]},{"k":"H3820","v":["לֵב","lêb","labe","A form of H3824; the heart; also used (figuratively) very widely for the feelings, the will and even the intellect; likewise for the centre of anything: -    + care for, comfortably, consent, X considered, courag [-eous], friend [-ly], ([broken-], [hard-], [merry-], [stiff-], [stout-], double) heart ([-ed]), X heed, X I, kindly, midst, mind (-ed), X regard ([-ed)], X themselves, X unawares, understanding, X well, willingly, wisdom."]},{"k":"H3821","v":["לֵב","lêb","labe","(Chaldee); corresponding to H3820: - heart."]},{"k":"H3822","v":["לְבָאוֹת","Lᵉbâʼôwth","leb-aw-oth'","Plural of H3833; lionesses; Lebaoth, a place in Palestine: - Lebaoth. See also H1034."]},{"k":"H3823","v":["לָבַב","lâbab","law-bab'","A primitive root; properly to be enclosed (as if with fat); by implication (as denominative from H3824) to unheart, that is, (in a good sense) transport (with love), or (in a bad sense) stultify; also (as denominative from H3834) to make cakes: - make cakes, ravish, be wise."]},{"k":"H3824","v":["לֵבָב","lêbâb","lay-bawb'","From H3823; the heart (as the most interior organ); used also like H3820: -    + bethink themselves, breast, comfortably, courage, ([faint], [tender-] heart([-ed]), midst, mind, X unawares, understanding."]},{"k":"H3825","v":["לְבַב","lᵉbab","leb-ab'","(Chaldee); corresponding to H3824: - heart."]},{"k":"H3826","v":["לִבָּה","libbâh","lib-baw'","Feminine of H3820; the heart: - heart."]},{"k":"H3827","v":["לַבָּה","labbâh","lab-baw'","For H3852; flame: - flame."]},{"k":"H3828","v":["לְבוֹנָה","lᵉbôwnâh","leb-o-naw'","From H3826; frankincense (from its whiteness or perhaps that of its smoke): - (frank-) incense."]},{"k":"H3829","v":["לְבוֹנָה","Lᵉbôwnâh","leb-o-naw'","The same as H3828; Lebonah, a place in Palestine: - Lebonah."]},{"k":"H3830","v":["לְבוּשׁ","lᵉbûwsh","leb-oosh'","From H3847; a garment (literally or figuratively); by implication (euphemistically) a wife: - apparel, clothed with, clothing, garment, raiment, vestment, vesture."]},{"k":"H3831","v":["לְבוּשׁ","lᵉbûwsh","leb-oosh'","(Chaldee); corresponding to H3830: - garment."]},{"k":"H3832","v":["לָבַט","lâbaṭ","law-bat'","A primitive root; to overthrow; intransitively to fall: - fall."]},{"k":"H3833","v":["לָבִיא","lâbîyʼ","law-bee'","From an unused root meaning to roar; a lion (properly a lioness as the fiercer (although not a roarer; compare H738)): - (great, old, stout) lion, lioness, young [lion]."]},{"k":"H3834","v":["לָבִיבָה","lâbîybâh","law-bee-baw'","From H3823 in its original sense of fatness (or perhaps of folding); a cake (either as fried or turned): - cake."]},{"k":"H3835","v":["לָבַן","lâban","law-ban'","A primitive root; to be (or become) white; also (as denominative from H3843) to make bricks: - make brick, be (made, make) white (-r)."]},{"k":"H3836","v":["לָבָן","lâbân","law-bawn'","From H3835; white: - white."]},{"k":"H3837","v":["לָבָן","Lâbân","law-bawn'","The same as H3836; Laban, a Mesopotamian; also a place in the Desert: - Laban."]},{"k":"H3838","v":["לְבָנָא","Lᵉbânâʼ","leb-aw-naw'","The same as H3842; Lebana or Lebanah, one of the Nethinim: - Lebana, Lebanah."]},{"k":"H3839","v":["לִבְנֶה","libneh","lib-neh'","From H3835; some sort of whitish tree, perhaps the storax: - poplar."]},{"k":"H3840","v":["לִבְנָה","libnâh","lib-naw'","From H3835; properly whiteness, that is, (by implication) transparency: - paved."]},{"k":"H3841","v":["לִבְנָה","Libnâh","lib-naw'","The same as H3839; Libnah, a place in the Desert and one in Palestine: - Libnah."]},{"k":"H3842","v":["לְבָנָה","lᵉbânâh","leb-aw-naw'","From H3835; properly (the) white, that is, the moon: - moon. See also H3838."]},{"k":"H3843","v":["לְבֵנָה","lᵉbênâh","leb-ay-naw'","From H3835; a brick (from the whiteness of the clay): - (altar of) brick, tile."]},{"k":"H3844","v":["לְבָנוֹן","Lᵉbânôwn","leb-aw-nohn'","From H3825; (the) white mountain (from its snow); Lebanon, a mountain range in Palestine: - Lebanon."]},{"k":"H3845","v":["לִבְנִי","Libnîy","lib-nee'","From H3835; white; Libni, an Israelite: - Libni."]},{"k":"H3846","v":["לִבְנִי","Libnîy","lib-nee'","Patronymic from H3845; a Libnite or descendant of Libni (collectively): - Libnites."]},{"k":"H3847","v":["לָבַשׁ","lâbash","law-bash'","A primitive root; properly wrap around, that is, (by implication) to put on a garment or clothe (oneself, or another), literally or figuratively: - (in) apparel, arm, array (self), clothe (self), come upon, put (on, upon), wear."]},{"k":"H3848","v":["לְבַשׁ","lᵉbash","leb-ash'","(Chaldee); corresponding to H3847: - clothe."]},{"k":"H3849","v":["לֹג","lôg","lohg","From an unused root apparently meaning to deepen or hollow (like H3537); a log or measure for liquids: - log [of oil]."]},{"k":"H3850","v":["לֹד","Lôd","lode","From an unused root of uncertain signification; Lod, a place in Palestine: - Lod."]},{"k":"H3851","v":["לַהַב","lahab","lah'-hab","From an unused root meaning to gleam, a flash; figuratively a sharply polished blade or point of a weapon: - blade, bright, flame, glittering."]},{"k":"H3852","v":["לֶהָבָה","lehâbâh","leh-aw-baw'","Feminine of H3851, and meaning the same: - flame (-ming), head [of a spear]."]},{"k":"H3853","v":["לְהָבִים","Lᵉhâbîym","leh-haw-beem'","Plural of H3851; flames; Lehabim, a son of Mizrain, and his descendents: - Lehabim."]},{"k":"H3854","v":["לַהַג","lahag","lah'-hag","From an unused root meaning to be eager; intense mental application: - study."]},{"k":"H3855","v":["לַהַד","Lahad","lah'-had","From an unused root meaning to glow (compare H3851) or else to be earnest (compare H3854); Lahad, an Israelite: - Lahad."]},{"k":"H3856","v":["לָהַהּ","lâhahh","law-hah'","A primitive root meaning properly to burn, that is, (by implication) to be rabid (figuratively insane); also (from the exhaustion of frenzy) to languish: - faint, mad."]},{"k":"H3857","v":["לָהַט","lâhaṭ","law-hat'","A primitive root; properly to lick, that is, (by implication) to blaze: - burn (up), set on fire, flaming, kindle."]},{"k":"H3858","v":["לַהַט","lahaṭ","lah'-hat","From H3857; a blaze; also (from the idea of enwrapping) magic (as covert): - flaming, enchantment."]},{"k":"H3859","v":["לָהַם","lâham","law-ham'","A primitive root; properly to burn in, that is, (figuratively) to rankle: - wound."]},{"k":"H3860","v":["לָהֵן","lâhên","law-hane'","From the prefixed preposition meaning to or for and H2005; for if; hence therefore. for them by mistake for prepositional suffix: - for them [by mistake for prepositionsuffix]."]},{"k":"H3861","v":["לָהֵן","lâhên","law-hane'","(Chaldee); corresponding to H3860; therefore; also except: - but, except, save, therefore, wherefore."]},{"k":"H3862","v":["לַהֲקָה","lahăqâh","lah-hak-aw'","Probably from an unused root meaning to gather; an assembly: - company."]},{"k":"H3863","v":["לוּא","lûwʼ","loo","A conditional particle; if; by implication (interjectionally as a wish) would that!: - if (haply), peradventure, I pray thee, though, I would, would God (that)."]},{"k":"H3864","v":["לוּבִי","Lûwbîy","loo-bee'","Patrial from a name probably derived from an unused root meaning to thirst, that is, a dry region; apparently a Libyan or inhabitant of interior Africa (only in plural): - Lubim (-s), Libyans."]},{"k":"H3865","v":["לוּד","Lûwd","lood","Probably of foreign derivation; Lud, the name of two nations: - Lud, Lydia."]},{"k":"H3866","v":["לוּדִי","Lûwdîy","loo-dee'","Patrial from H3865; a Ludite or inhabitant of Lud (ony in plural): - Ludim, Lydians."]},{"k":"H3867","v":["לָוָה","lâvâh","law-vaw'","A primitive root; properly to twine, that is, (by implication) to unite, to remain; also to borrow (as a form of obligation) or (causatively) to lend: - abide with, borrow (-er), cleave, join (self), lend (-er)."]},{"k":"H3868","v":["לוּז","lûwz","looz","A primitive root; to turn aside (compare H3867, H3874 and H3885), that is, (literally) to depart, (figuratively) be perverse: - depart, froward, perverse (-ness)."]},{"k":"H3869","v":["לוּז","lûwz","looz","Probably of foreign origin; some kind of nut tree, perhaps the almond: - hazel."]},{"k":"H3870","v":["לוּז","Lûwz","looz","Probably from H3869 (as growing there); Luz, the name of two places in Palestine: - Luz."]},{"k":"H3871","v":["לוּחַ","lûwach","loo'-akh","From a primitive root; probably meaning to glisten; a tablet (as polished), of stone, wood or metal: - board, plate, table."]},{"k":"H3872","v":["לוּחִית","Lûwchîyth","loo-kheeth'","From the same as H3871; floored; Luchith, a place East of the Jordan: - Luhith."]},{"k":"H3873","v":["לוֹחֵשׁ","Lôwchêsh","lo-khashe'","Active participle of H3907; (the) enchanter; Lochesh, an Israelite: - Hallohesh, Haloshesh [includ. the article]"]},{"k":"H3874","v":["לוּט","lûwṭ","loot","A primitive root; to wrap up: - cast, wrap."]},{"k":"H3875","v":["לוֹט","lôwṭ","lote","From H3874; a veil: - covering."]},{"k":"H3876","v":["לוֹט","Lôwṭ","lote","The same as H3875; Lot, Abraham’s nephew: - Lot."]},{"k":"H3877","v":["לוֹטָן","Lôwṭân","lo-tawn'","From H3875; covering, Lotan, an Idumaean: - Lotan."]},{"k":"H3878","v":["לֵוִי","Lêvîy","lay-vee'","From H3867; attached; Levi, a son of Jacob: - Levi. See also H3879, H3881."]},{"k":"H3879","v":["לֵוִי","Lêvîy","lay-vee'","(Chaldee); corresponding to H3880: - Levite."]},{"k":"H3880","v":["לִוְיָה","livyâh","liv-yaw'","From H3867; something attached, that is, a wreath: - ornament."]},{"k":"H3881","v":["לֵוִיִּי","Lêvîyîy","lay-vee-ee'","Patronymic from H3878; a Leviite or descendant of Levi: - Levite."]},{"k":"H3882","v":["לִוְיָתָן","livyâthân","liv-yaw-thawn'","From H3867; a wreathed animal, that is, a serpent (especially the crocodile or some other large sea monster); figuratively the constellation of the dragon; also as a symbol of Babylon: - leviathan, mourning."]},{"k":"H3883","v":["לוּל","lûwl","lool","From an unused root meaning to fold back; a spiral step: - winding stair. Compare H3924."]},{"k":"H3884","v":["לוּלֵא","lûwlêʼ","loo-lay'","From H3863 and H3808; if not: - except, had not, if (. . . not), unless, were it not that."]},{"k":"H3885","v":["לוּן","lûwn","loon","A primitive root; to stop (usually over night); by implication to stay permanently; hence (in a bad sense) to be obstinate (especially in words, to complain): - abide (all night), continue, dwell, endure, grudge, be left, lie all night, (cause to) lodge (all night, in, -ing, this night), (make to) murmur, remain, tarry (all night, that night)."]},{"k":"H3886","v":["לוּעַ","lûwaʻ","loo'-ah","A primitive root; to gulp; figuratively to be rash: - swallow down (up)."]},{"k":"H3887","v":["לוּץ","lûwts","loots","A primitive root; properly to make mouths at, that is, to scoff; hence (from the effort to pronounce a foreign language) to interpret, or (generally) intercede: - ambassador, have in derision, interpreter, make a mock, mocker, scorn (-er, -ful), teacher."]},{"k":"H3888","v":["לוּשׁ","lûwsh","loosh","A primitive root; to knead: - knead."]},{"k":"H3889","v":["לוּשׁ","Lûwsh","loosh","From H3888; kneading; Lush, a place in Palestine: - Laish [from the margin]. Compare H3919."]},{"k":"H3890","v":["לְוָת","lᵉvâth","lev-awth'","(Chaldee); from a root corresponding to H3867; properly adhesion, that is, (as preposition) with: -  X thee."]},{"k":"H3891","v":["לְזוּת","lᵉzûwth","lez-ooth'","From H3868; perverseness: - perverse."]},{"k":"H3892","v":["לַח","lach","lakh","From an unused root meaning to be new; fresh, that is, unused or undried: - green, moist."]},{"k":"H3893","v":["לֵחַ","lêach","lay'-akh","From the same as H3892; freshness, that is, vigor: - natural force."]},{"k":"H3894","v":["לָחוּם","lâchûwm","law-khoom'","Passive participle of H3898; properly eaten, that is, food; also flesh, that is, body: - while . . . is eating, flesh."]},{"k":"H3895","v":["לְחִי","lᵉchîy","lekh-ee'","From an unused root meaning to be soft; the cheek (from its fleshiness); hence the jaw bone: - cheek (bone), jaw (bone)."]},{"k":"H3896","v":["לֶחִי","Lechîy","lekh'-ee","A form of H3895; Lechi, a place in Palestine: - Lehi. Compare also H7437."]},{"k":"H3897","v":["לָחַךְ","lâchak","law-khak'","A primitive root; to lick: - lick (up)."]},{"k":"H3898","v":["לָחַם","lâcham","law-kham'","A primitive root; to feed on; figuratively to consume; by implication to battle (as destruction): - devour, eat, X ever, fight (-ing), overcome, prevail, (make) war (-ring)."]},{"k":"H3899","v":["לֶחֶם","lechem","lekh'-em","From H3898; food (for man or beast), especially bread, or grain (for making it): - ([shew-]) bread, X eat, food, fruit, loaf, meat, victuals. See also H1036."]},{"k":"H3900","v":["לְחֶם","lᵉchem","lekh-em'","(Chaldee); corresponding to H3899: - feast."]},{"k":"H3901","v":["לָחֶם","lâchem","law-khem'","From H3898, battle: - war."]},{"k":"H3902","v":["לַחְמִי","Lachmîy","lakh-mee'","From H3899; foodful; Lachmi, an Israelite; or rather probably a brief form (or perhaps an erroneous transcription) for H1022: - Lahmi. See also H3433."]},{"k":"H3903","v":["לַחְמָס","Lachmâç","lakh-maws'","From H3899; food like; Lachmam or Lachmas, a place in Palestine: - Lahmam."]},{"k":"H3904","v":["לְחֵנָה","lᵉchênâh","lekh-ay-naw'","(Chaldee); from an unused root of uncertain meaning; a concubine: - concubine."]},{"k":"H3905","v":["לָחַץ","lâchats","law-khats'","A primitive root; properly to press, that is, (figuratively) to distress: - afflict, crush, force, hold fast, oppress (-or), thrust self."]},{"k":"H3906","v":["לַחַץ","lachats","lakh'-ats","From H3905; distress: - affliction, oppression."]},{"k":"H3907","v":["לָחַשׁ","lâchash","law-khash'","A primitive root; to whisper; by implication to mumble a spell (as a magician): - charmer, whisper (together)."]},{"k":"H3908","v":["לַחַשׁ","lachash","lakh'-ash","From H3907; properly a whisper, that is, by implication (in a good sense) a private prayer, (in a bad one) an incantation; concretely an amulet: - charmed, earring, enchantment, orator, prayer."]},{"k":"H3909","v":["לָט","lâṭ","lawt","A form of H3814 or else partly from H3874; properly covered, that is, secret; by implication incantation; also secrecy or (adverbially) covertly: - enchantment, privily, secretly, softly."]},{"k":"H3910","v":["לֹט","lôṭ","lote","Probably from H3874; a gum (from its sticky nature), probably ladanum: - myrrh."]},{"k":"H3911","v":["לְטָאָה","lᵉṭâʼâh","let-aw-aw'","From an unused root meaning to hide; a kind of lizard (from its covert habits): - lizard."]},{"k":"H3912","v":["לְטוּשִׁם","Lᵉṭûwshim","let-oo-sheem'","Masculine plural of passive participle of H3913; hammered (that is, oppressed) ones; Letushim, an Arabian tribe: - Letushim."]},{"k":"H3913","v":["לָטַשׁ","lâṭash","law-tash'","A primitive root; properly to hammer out (an edge), that is, to sharpen: - instructer, sharp (-en), whet."]},{"k":"H3914","v":["לֹיָה","lôyâh","lo-yaw'","A form of H3880; a wreath: - addition."]},{"k":"H3915","v":["לַיִל","layil","lah'-yil","From the same as H3883; properly a twist (away of the light), that is, night; figuratively adversity: - ([mid-]) night (season)."]},{"k":"H3916","v":["לֵילְיָא","lêylᵉyâʼ","lay-leh-yaw'","(Chaldee); corresponding to H3915: - night."]},{"k":"H3917","v":["לִילִית","lîylîyth","lee-leeth'","From H3915; a night spectre: - screech owl."]},{"k":"H3918","v":["לַיִשׁ","layish","lah'-yish","From H3888 in the sense of crushing; a lion (from his destructive blows): - (old) lion."]},{"k":"H3919","v":["לַיִשׁ","Layish","lah'-yish","The same as H3918; Laish, the name of two places in Palestine: - Laish. Compare H3889."]},{"k":"H3920","v":["לָכַד","lâkad","law-kad'","A primitive root; to catch (in a net, trap or pit); generally to capture or occupy; also to choose (by lot); figuratively to cohere: -  X at all, catch (self), be frozen, be holden, stick together, take."]},{"k":"H3921","v":["לֶכֶד","leked","leh'ked","From H3920; something to capture with, that is, a noose: - being taken."]},{"k":"H3922","v":["לֵכָה","lêkâh","lay-kaw'","From H3212; a journey; lekah, a place in Palestine: - Lecah."]},{"k":"H3923","v":["לָכִישׁ","Lâkîysh","law-keesh'","From an unused root of uncertain meaning; Lakish, a place in Palestine: - Lachish."]},{"k":"H3924","v":["לֻלָאָה","lulâʼâh","loo-law-aw'","From the same as H3883; a loop: - loop."]},{"k":"H3925","v":["לָמַד","lâmad","law-mad'","A primitive root; properly to goad, that is, (by implication) to teach (the rod being an Oriental incentive): - [un-] accustomed, X diligently, expert, instruct, learn, skilful, teach (-er, -ing)."]},{"k":"H3926","v":["לְמוֹ","lᵉmôw","lem-o'","A prolonged and separable form of the prefixed preposition; to or for: - at, for, to, upon."]},{"k":"H3927","v":["לְמוּאֵל","Lᵉmûwʼêl","lem-oo-ale'","From H3926 and H410; (belonging) to God; Lemuel or Lemoel, a symbolical name of Solomon: - Lemuel."]},{"k":"H3928","v":["לִמּוּד","limmûwd","lim-mood'","From H3925; instructed: - accustomed, disciple, learned, taught, used."]},{"k":"H3929","v":["לֶמֶךְ","Lemek","leh'-mek","From an unused root of uncertain meaning; Lemek, the name of two antediluvian patriarchs: - Lamech."]},{"k":"H3930","v":["לֹעַ","lôaʻ","lo'ah","From H3886; the gullet: - throat."]},{"k":"H3931","v":["לָעַב","lâʻab","law-ab'","A primitive root; to deride: - mock."]},{"k":"H3932","v":["לָעַג","lâʻag","law-ag'","A primitive root; to deride; by implication (as if imitating a foreigner) to speak unintelligibly: - have in derision, laugh (to scorn), mock (on), stammering."]},{"k":"H3933","v":["לַעַג","laʻag","lah'-ag","From H3932; derision, scoffing: - derision, scorn (-ing)."]},{"k":"H3934","v":["לָעֵג","lâʻêg","law-ayg'","From H3932; a buffoon; also a foreigner: - mocker, stammering."]},{"k":"H3935","v":["לַעְדָּה","Laʻdâh","lah-daw'","From an unused root of uncertain meaning; Ladah, an Israelite: - Laadah."]},{"k":"H3936","v":["לַעְדָּן","Laʻdân","lah-dawn'","From the same as H3935; Ladan, the name of two Israelites: - Laadan."]},{"k":"H3937","v":["לָעַז","lâʻaz","law-az'","A primitive root; to speak in a foreign tongue: - strange language."]},{"k":"H3938","v":["לָעַט","lâʻaṭ","law-at'","A primitive root; to swallow greedily; causatively to feed: - feed."]},{"k":"H3939","v":["לַעֲנָה","laʻănâh","lah-an-aw'","From an unused root supposed to mean to curse; wormwood (regarded as poisonous, and therefore accursed): - hemlock, wormwood."]},{"k":"H3940","v":["לַפִּיד","lappîyd","lap-peed'","From an unused root probably meaning to shine; a flambeau, lamp or flame: - (fire-) brand, (burning) lamp, lightning, torch."]},{"k":"H3941","v":["לַפִּידוֹת","Lappîydôwth","lap-pee-doth'","Feminine plural of H3940; Lappidoth, the husband of Deborah: - Lappidoth."]},{"k":"H3942","v":["לִפְנַי","liphnay","lif-nah'ee","From the prefixed preposition (to or for) and H6440; anterior: - before."]},{"k":"H3943","v":["לָפַת","lâphath","law-fath'","A primitive root; properly to bend, that is, (by implication) to clasp; also (reflexively) to turn around or aside: - take hold, turn aside (self)."]},{"k":"H3944","v":["לָצוֹן","lâtsôwn","law-tsone'","From H3887; derision: - scornful (-ning)."]},{"k":"H3945","v":["לָצַץ","lâtsats","law-tsats'","A primitive root; to deride: - scorn."]},{"k":"H3946","v":["לַקּוּם","Laqqûwm","lak-koom'","From an unused root thought to mean to stop up by a barricade; perhaps fortification; Lakkum, a place in Palestine: - Lakum."]},{"k":"H3947","v":["לָקַח","lâqach","law-kakh'","A primitive root; to take (in the widest variety of applications): - accept, bring, buy, carry away, drawn, fetch, get, infold, X many, mingle, place, receive (-ing), reserve, seize, send for, take (away, -ing, up), use, win."]},{"k":"H3948","v":["לֶקַח","leqach","leh'-kakh","From H3947; properly something received, that is, (mentally) instruction (whether on the part of the teacher or hearer); also (in an active and sinister sense) inveiglement: - doctrine, learning, fair speech."]},{"k":"H3949","v":["לִקְחִי","Liqchîy","lik-khee'","From H3947; learned; Likchi, an Israelite: - Likhi."]},{"k":"H3950","v":["לָקַט","lâqaṭ","law-kat'","A primitive root; properly to pick up, that is, (generally) to gather; specifically to glean: - gather (up), glean."]},{"k":"H3951","v":["לֶקֶט","leqeṭ","leh'-ket","From H3950; the gleaning: - gleaning."]},{"k":"H3952","v":["לָקַק","lâqaq","law-kak'","A primitive root; to lick or lap: - lap, lick."]},{"k":"H3953","v":["לָקַשׁ","lâqash","law-kash'","A primitive root; to gather the after crop: - gather."]},{"k":"H3954","v":["לֶקֶשׁ","leqesh","leh'-kesh","From H3953; the after crop: - latter growth."]},{"k":"H3955","v":["לְשַׁד","lᵉshad","lesh-ad'","From an unused root of uncertain meaning; apparently juice, that is, (figuratively) vigor; also a sweet or fat cake: - fresh, moisture."]},{"k":"H3956","v":["לָשׁוֹן","lâshôwn","law-shone'","From H3960; the tongue (of man or animals), used literally (as the instrument of licking, eating, or speech), and figuratively (speech, an ingot, a fork of flame, a cove of water): -    + babbler, bay, + evil speaker, language, talker, tongue, wedge."]},{"k":"H3957","v":["לִשְׁכָּה","lishkâh","lish-kaw'","From an unused root of uncertain meaning; a room in a building (whether for storage, eating, or lodging): - chamber, parlour. Compare H5393."]},{"k":"H3958","v":["לֶשֶׁם","leshem","leh'-shem","From an unused root of uncertain meaning; a gem, perhaps the jacinth: - ligure."]},{"k":"H3959","v":["לֶשֶׁם","Leshem","leh'-shem","The same as H3958; Leshem, a place in Palestine: - Leshem."]},{"k":"H3960","v":["לָשַׁן","lâshan","law-shan'","A primitive root; properly to lick; but used only as a denominative from H3956; to wag the tongue, that is, to calumniate: - accuse, slander."]},{"k":"H3961","v":["לִשָּׁן","lishshân","lish-shawn'","(Chaldee); corresponding to H3956; speech, that is, a nation: - language."]},{"k":"H3962","v":["לֶשַׁע","Leshaʻ","leh'-shah","From an unused root thought to mean to break through; a boiling spring; Lesha, a place probably East of the Jordan: - Lasha."]},{"k":"H3963","v":["לֶתֶךְ","lethek","leh'-thek","From an unused root of uncertain meaning; a measure for things dry: - half homer."]},{"k":"H3964","v":["מָא","mâʼ","maw","(Chaldee); corresponding to H4100; (as indefinite) that: -  + what."]},{"k":"H3965","v":["מַאֲבוּס","maʼăbûwç","mah-ab-ooce'","From H75; a granary: - storehouse."]},{"k":"H3966","v":["מְאֹד","mᵉʼôd","meh-ode'","From the same as H181; properly vehemence, that is, (with or without preposition) vehemently; by implication wholly, speedily, etc. (often with other words as an intensive or superlative; especially when repeated): - diligently, especially, exceeding (-ly), far, fast, good, great (-ly), X louder and louder, might (-ily, -y), (so) much, quickly, (so) sore, utterly, very (+ much, sore), well."]},{"k":"H3967","v":["מֵאָה","mêʼâh","may-aw'","Probably a primitive numeral; a hundred; also as a multiplicative and a fraction: - hundred ([-fold], -th), + sixscore."]},{"k":"H3968","v":["מֵאָה","Mêʼâh","may-aw'","The same as H3967; Meah, a tower in Jerusalem: - Meah."]},{"k":"H3969","v":["מְאָה","mᵉʼâh","meh-aw'","(Chaldee); corresponding to H3967: - hundred."]},{"k":"H3970","v":["מַאֲוַי","maʼăvay","mah-av-ah'ee","From H183; a desire: - desire."]},{"k":"H3971","v":["מאוּם","mʼûwm","moom","As if passive participle from an unused root probably meaning to stain; a blemish (physical or moral): - blemish, blot, spot."]},{"k":"H3972","v":["מְאוּמָה","mᵉʼûwmâh","meh-oo'-maw","Apparently a form of H3971; properly a speck or point, that is, (by implication) something; with negative nothing: - fault, + no (-ught), ought, somewhat, any ([no-]) thing."]},{"k":"H3973","v":["מָאוֹס","mâʼôwç","maw-oce'","From H3988; refuse: - refuse."]},{"k":"H3974","v":["מָאוֹר","mâʼôwr","maw-ore'","From H215; properly a luminous body or luminary, that is, (abstractly) light (as an element); figuratively brightness, that is, cheerfulness; specifically a chandelier: - bright, light."]},{"k":"H3975","v":["מְאוּרָה","mᵉʼûwrâh","meh-oo-raw'","Feminine passive participle of H215; something lighted, that is, an aperture; by implication a crevice or hole of a serpent: - den."]},{"k":"H3976","v":["מֹאזֵן","môʼzên","mo-zane'","From H239; (only in the dual) a pair of scales: - balances."]},{"k":"H3977","v":["מֹאזֵן","môʼzên","mo-zane'","(Chaldee); corresponding to H3976: - balances."]},{"k":"H3978","v":["מַאֲכָל","maʼăkâl","mah-ak-awl'","From H398; an eatable (including provender, flesh and fruit): - food, fruit, ([bake-]) meat (-s), victual."]},{"k":"H3979","v":["מַאֲכֶלֶת","maʼăkeleth","mah-ak-eh'-leth","From H398; something to eat with, that is, a knife: - knife."]},{"k":"H3980","v":["מַאֲכֹלֶת","maʼăkôleth","mah-ak-o'-leth","From H398; something eaten (by fire), that is, fuel: - fuel."]},{"k":"H3981","v":["מַאֲמָץ","maʼămâts","mah-am-awts'","From H553; strength, that is, (plural) resources: - force."]},{"k":"H3982","v":["מַאֲמַר","maʼămar","mah-am-ar'","From H559; something (authoritatively) said, that is, an edict: - commandment, decree."]},{"k":"H3983","v":["מֵאמַר","mêʼmar","may-mar'","(Chaldee); corresponding to H3982: - appointment, word."]},{"k":"H3984","v":["מָאן","mâʼn","mawn","(Chaldee); probably from a root corresponding to H579 in the sense of an inclosure by sides; a utensil: - vessel."]},{"k":"H3985","v":["מָאֵן","mâʼên","maw-ane'","A primitive root; to refuse: - refuse, X utterly."]},{"k":"H3986","v":["מָאֵן","mâʼên","maw-ane'","From H3985; unwilling: - refuse."]},{"k":"H3987","v":["מֵאֵן","mêʼên","may-ane'","From H3985; refractory: - refuse."]},{"k":"H3988","v":["מָאַס","mâʼaç","maw-as'","A primitive root; to spurn; also (intransitively) to disappear: - abhor, cast away (off), contemn, despise, disdain, (become) loathe (-some), melt away, refuse, reject, reprobate, X utterly, vile person."]},{"k":"H3989","v":["מַאֲפֶה","maʼăpheh","mah-af-eh'","From H644; something baked, that is, a batch: - baken"]},{"k":"H3990","v":["מַאֲפֵל","maʼăphêl","mah-af-ale'","From the same as H651; something opaque: - darkness."]},{"k":"H3991","v":["מַאְפֵלְיָה","maʼphêlᵉyâh","mah-af-ay-leh-yaw'","Prolonged feminine of H3990; opaqueness: - darkness."]},{"k":"H3992","v":["מָאַר","mâʼar","maw-ar'","A primitive root; to be bitter or (causatively) to embitter, that is, be painful: - fretting, picking."]},{"k":"H3993","v":["מַאֲרָב","maʼărâb","mah-ar-awb'","From H693; an ambuscade: - lie in ambush, ambushment, lurking place, lying in wait."]},{"k":"H3994","v":["מְאֵרָה","mᵉʼêrâh","meh-ay-raw'","From H779; an execration: - curse."]},{"k":"H3995","v":["מִבְדָּלָה","mibdâlâh","mib-daw-law'","From H914; a separation, that is, (concretely) a separate place: - separate."]},{"k":"H3996","v":["מָבוֹא","mâbôwʼ","maw-bo'","From H935; an entrance (the place or the act); specifically (with or without H8121) sunset or the west; also (adverbially with preposition) towards: - by which came, as cometh, in coming, as men enter into, entering, entrance into, entry, where goeth, going down, + westward. Compare H4126."]},{"k":"H3997","v":["מְבוֹאָה","mᵉbôwʼâh","meb-o-aw'","Feminine of H3996; a haven: - entry."]},{"k":"H3998","v":["מְבוּכָה","mᵉbûwkâh","meb-oo-kaw'","From H943; perplexity: - perplexity."]},{"k":"H3999","v":["מַבּוּל","mabbûwl","mab-bool'","From H2986 in the sense of flowing; a deluge: - flood."]},{"k":"H4000","v":["מָבוֹן","mâbôwn","maw-bone'","From H995; instructing: - taught."]},{"k":"H4001","v":["מְבוּסָה","mᵉbûwçâh","meb-oo-saw'","From H947; a trampling: - treading (trodden) down (under foot)."]},{"k":"H4002","v":["מַבּוּעַ","mabbûwaʻ","mab-boo'-ah","From H5042; a fountain: - fountain, spring."]},{"k":"H4003","v":["מְבוּקָה","mᵉbûwqâh","meb-oo-kah'","From the same as H950; emptiness: - void."]},{"k":"H4004","v":["מִבְחוֹר","mibchôwr","mib-khore'","From H977; select, that is, well fortified: - choice."]},{"k":"H4005","v":["מִבְחָר","mibchâr","mib-khawr'","From H977; select, that is, best: - choice (-st), chosen."]},{"k":"H4006","v":["מִבְחָר","Mibchâr","mib-khawr'","The same as H4005; Mibchar, an Israelite: - Mibhar."]},{"k":"H4007","v":["מַבָּט","mabbâṭ","mab-bawt'","From H5027; something expected, that is, (abstractly) expectation: - expectation."]},{"k":"H4008","v":["מִבְטָא","mibṭâʼ","mib-taw'","From H981; a rash utterance (hasty vow): - (that which . . . ) uttered (out of)."]},{"k":"H4009","v":["מִבְטָח","mibṭâch","mib-tawkh'","From H982; properly a refuge, that is, (objectively) security, or (subjectively) assurance: - confidence, hope, sure, trust."]},{"k":"H4010","v":["מַבְלִיגִית","mablîygîyth","mab-leeg-eeth'","From H1082; desistance (or rather desolation): - comfort self."]},{"k":"H4011","v":["מִבְנֶה","mibneh","mib-neh'","From H1129; a building: - frame."]},{"k":"H4012","v":["מְבֻנַּי","Mᵉbunnay","meb-oon-hah'-ee","From H1129; built up; Mebunnai, an Israelite: - Mebunnai."]},{"k":"H4013","v":["מִבְצָר","mibtsâr","mib-tsawr'","From H1219; a fortification, castle, or fortified city; figuratively a defender: - (de-, most) fenced, fortress, (most) strong (hold)."]},{"k":"H4014","v":["מִבְצָר","Mibtsâr","mib-tsawr'","The same as H4013; Mibtsar, an Idumaean: - Mibzar."]},{"k":"H4015","v":["מִבְרָח","mibrâch","mib-rawkh'","From H1272; a refugee: - fugitive."]},{"k":"H4016","v":["מָבֻשׁ","mâbush","maw-boosh'","From H954; (plural) the (male) pudenda: - secrets."]},{"k":"H4017","v":["מִבְשָׂם","Mibsâm","mib-sawm'","From the same as H1314; fragrant; Mibsam, the name of an Ishmaelite and of an Israelite: - Mibsam."]},{"k":"H4018","v":["מְבַשְּׁלָה","mᵉbashshᵉlâh","meb-ash-shel-aw'","From H1310; a cooking hearth: - boiling-place."]},{"k":"H4019","v":["מַגְבִּישׁ","Magbîysh","mag-beesh'","From the same as H1378; stiffening; Magbish, an Israelite, or a place in Palestine: - Magbish."]},{"k":"H4020","v":["מִגְבָּלָה","migbâlâh","mig-baw-law'","From H1379; a border: - end."]},{"k":"H4021","v":["מִגְבָּעָה","migbâʻâh","mig-baw-aw'","From the same as H1389; a cap (as hemispherical): - bonnet."]},{"k":"H4022","v":["מֶגֶד","meged","meh'-ghed","From an unused root properly meaning to be eminent; properly a distinguished thing; hence something valuable, as a product or fruit: - pleasant, precious fruit (thing)."]},{"k":"H4023","v":["מְגִדּוֹן","Mᵉgiddôwn","meg-id-done'","From H1413; rendezvous; Megiddon or Megiddo, a place in Palestine: - Megiddo, Megiddon."]},{"k":"H4024","v":["מִגְדּוֹל","Migdôwl","mig-dole'","Probably of Egyptian origin; Migdol, a place in Egypt: - Migdol, tower."]},{"k":"H4025","v":["מַגְדִּיאֵל","Magdîyʼêl","mag-dee-ale'","From H4022 and H410; preciousness of God; Magdiel, an Idumaean: - Magdiel."]},{"k":"H4026","v":["מִגְדָּל","migdâl","mig-dawl'","From H1431; a tower (from its size or height); by analogy a rostrum; figuratively a (pyramidal) bed of flowers: - castle, flower, pulpit, tower. Compare the names following."]},{"k":"H4027","v":["מִגְדַּל־אֵל","Migdal-ʼÊl","mig-dal-ale'","From H4026 and H410; tower of God; Migdal-El, a place in Palestine: - Migdal-el."]},{"k":"H4028","v":["מִגְדַּל־גָּד","Migdal-Gâd","migdal-gawd'","From H4026 and H1408; tower of Fortune; Migdal-Gad, a place in Palestine: - Migdal-gad."]},{"k":"H4029","v":["מִגְדַּל־עֵדֶר","Migdal-ʻÊder","mig-dal'-ay'-der","From H4026 and H5739; tower of a flock; Migdal-Eder, a place in Palestine: - Migdal-eder, tower of the flock."]},{"k":"H4030","v":["מִגְדָּנָה","migdânâh","mig-daw-naw'","From the same as H4022; preciousness, that is, a gem: - precious thing, present."]},{"k":"H4031","v":["מָגוֹג","Mâgôwg","maw-gogue'","From H1463; Magog, a son of Japheth; also a barbarous northern region: - Magog."]},{"k":"H4032","v":["מָגוֹר","mâgôwr","maw-gore'","From H1481 in the sense of fearing; a fright (objectively or subjectively): - fear, terror. Compare H4036."]},{"k":"H4033","v":["מָגוּר","mâgûwr","maw-goor'","From H1481 in the sense of lodging; a temporary abode; by extension a permanent residence: - dwelling, pilgrimage, where sojourn, be a stranger. Compare H4032."]},{"k":"H4034","v":["מְגוֹרַה","mᵉgôwrah","meg-o-raw'","Feminine of H4032; affright: - fear."]},{"k":"H4035","v":["מְגוּרָה","mᵉgûwrâh","meg-oo-raw'","Feminine of H4032 or of H4033; a fright; also a granary: - barn, fear."]},{"k":"H4036","v":["מָגוֹר מִסָּבִיב","Mâgôwr miç-Çâbîyb","maw-gore' mis-saw-beeb'","From H4032 and H5439 with the preposition inserted; affright from around; Magor-mis-Sabib, a symbolical name of Pashur: - Magor-missabib."]},{"k":"H4037","v":["מַגְזֵרָה","magzêrâh","mag-zay-raw'","From H1504; a cutting implement, that is, a blade: - axe."]},{"k":"H4038","v":["מַגָּל","maggâl","mag-gawl'","From an unused root meaning to reap; a sickle: - sickle."]},{"k":"H4039","v":["מְגִלָּה","mᵉgillâh","meg-il-law'","From H1556; a roll: - roll, volume."]},{"k":"H4040","v":["מְגִלָּה","mᵉgillâh","meg-il-law'","(Chaldee); corresponding to H4039: - roll."]},{"k":"H4041","v":["מְגַמָּה","mᵉgammâh","meg-am-maw'","From the same as H1571; properly accumulation, that is, impulse or direction: - sup up."]},{"k":"H4042","v":["מָגַן","mâgan","maw-gan'","A denominative from H4043; properly to shield; encompass with; figuratively to rescue, to hand safely over (that is, surrender): - deliver."]},{"k":"H4043","v":["מָגֵן","mâgên","maw-gane'","From H1598; a shield (that is, the small one or buckler); figuratively a protector; also the scaly hide of the crocodile: -    X armed, buckler, defence, ruler, + scale, shield."]},{"k":"H4044","v":["מְגִנָּה","mᵉginnâh","meg-in-naw'","From H4042; a covering (in a bad sense), that is, blindness or obduracy: - sorrow. See also H4043."]},{"k":"H4045","v":["מִגְעֶרֶת","migʻereth","mig-eh'-reth","From H1605; reproof (that is, curse): - rebuke."]},{"k":"H4046","v":["מַגֵּפָה","maggêphâh","mag-gay-faw'","From H5062; a pestilence; by analogy defeat: - (X be) plague (-d), slaughter, stroke."]},{"k":"H4047","v":["מַגְפִּיעָשׁ","Magpîyʻâsh","mag-pee-awsh'","Apparently from H1479 or H5062 and H6211; exterminator of (the) moth; Magpiash, an Israelite: - Magpiash."]},{"k":"H4048","v":["מָגַר","mâgar","maw-gar'","A primitive root; to yield up; intensively to precipitate: - cast down, terror."]},{"k":"H4049","v":["מְגַר","mᵉgar","meg-ar'","(Chaldee); corresponding to H4048; to overthrow: - destroy."]},{"k":"H4050","v":["מְגֵרָה","mᵉgêrâh","meg-ay-raw'","From H1641; a saw: - axe, saw."]},{"k":"H4051","v":["מִגְרוֹן","Migrôwn","mig-rone'","From H4048; precipice; Migron, a place in Palestine: - Migron."]},{"k":"H4052","v":["מִגְרָעָה","migrâʻâh","mig-raw-aw'","From H1639; a ledge or offset: - narrowed rest."]},{"k":"H4053","v":["מִגְרָפָה","migrâphâh","mig-raw-faw'","From H1640; something thrown off (by the spade), that is, a clod: - clod."]},{"k":"H4054","v":["מִגְרָשׁ","migrâsh","mig-rawsh'","From H1644; a suburb (that is, open country whither flocks are driven for pasture); hence the area around a building, or the margin of the sea: - cast out, suburb."]},{"k":"H4055","v":["מַד","mad","mad","From H4058; properly extent, that is, height; also a measure; by implication a vesture (as measured); also a carpet: - armour, clothes, garment, judgment, measure, raiment, stature."]},{"k":"H4056","v":["מַדְבַּח","madbach","mad-bakh'","(Chaldee); from H1648; a sacrificial altar: - altar."]},{"k":"H4057","v":["מִדְבָּר","midbâr","mid-bawr'","From H1696 in the sense of driving; a pasture (that is, open field, whither cattle are driven); by implication a desert; also speech (including its organs): - desert, south, speech, wilderness."]},{"k":"H4058","v":["מָדַד","mâdad","maw-dad'","A primitive root; properly to stretch; by implication to measure (as if by stretching a line); figuratively to be extended: - measure, mete, stretch self."]},{"k":"H4059","v":["מִדַּד","middad","mid-dad'","From H5074; flight: - be gone."]},{"k":"H4060","v":["מִדָּה","middâh","mid-daw'","Feminine of H4055; properly extension, that is, height or breadth; also a measure (including its standard); hence a portion (as measured) or a vestment; specifically tribute (as measured): - garment, measure (-ing, meteyard, piece, size, (great) stature, tribute, wide."]},{"k":"H4061","v":["מִדָּה","middâh","mid-daw'","(Chaldee); corresponding to H4060; tribute in money: - toll, tribute."]},{"k":"H4062","v":["מַדְהֵבָה","madhêbâh","mad-hay-baw'","Perhaps from the equivalent of H1722; gold making, that is, exactress: - golden city."]},{"k":"H4063","v":["מֶדֶו","medev","meh'-dev","From an unused root meaning to stretch; properly extent, that is, measure; by implication a dress (as measured): - garment."]},{"k":"H4064","v":["מַדְוֶה","madveh","mad-veh'","From H1738; sickness: - disease."]},{"k":"H4065","v":["מַדּוּחַ","maddûwach","mad-doo'akh","From H5080; seduction: - cause of banishment."]},{"k":"H4066","v":["מָדוֹן","mâdôwn","maw-dohn'","From H1777; a contest or quarrel: - brawling, contention (-ous), discord, strife. Compare H4079, H4090."]},{"k":"H4067","v":["מָדוֹן","mâdôwn","maw-dohn'","From the same as H4063; extensiveness, that is, height: - stature."]},{"k":"H4068","v":["מָדוֹן","Mâdôwn","maw-dohn'","The same as H4067; Madon, a place in Palestine: - Madon."]},{"k":"H4069","v":["מַדּוּעַ","maddûwaʻ","mad-doo'-ah","From H4100 and the passive participle of H3045; what (is) known?; that is, (by implication), (adverbially) why?: - how, wherefore, why."]},{"k":"H4070","v":["מְדוֹר","mᵉdôwr","med-ore'","From H1753; a dwelling: - dwelling."]},{"k":"H4071","v":["מְדוּרָה","mᵉdûwrâh","med-oo-raw'","From H1752 in the sense of accumulation; a pile of fuel: - pile (for fire)."]},{"k":"H4072","v":["מִדְחֶה","midcheh","mid-kheh'","From H1760; overthrow: - ruin."]},{"k":"H4073","v":["מְדַחְפָה","mᵉdachphâh","med-akh-faw'","From H1765; a push, that is, ruin: - overthrow."]},{"k":"H4074","v":["מָדַי","Mâday","maw-dah'-ee","Of foreign derivation; Madai, a country of central Asia: - Madai, Medes, Media."]},{"k":"H4075","v":["מָדַי","Mâday","maw-dah'-ee","Patrial from H4074; a Madian or native of Madai: - Mede."]},{"k":"H4076","v":["מָדַי","Mâday","maw-dah'-ee","(Chaldee); corresponding to H4074: - Mede (-s)."]},{"k":"H4077","v":["מָדַי","Mâday","maw-dah'-ee","(Chaldee); corresponding to H4075: - Median."]},{"k":"H4078","v":["מַדַּי","madday","mad-dah'-ee","From H4100 and H1767; what (is) enough, that is, sufficiently: - sufficiently."]},{"k":"H4079","v":["מִדְיָן","midyân","mid-yawn'","A variation for H4066: - brawling, contention (-ous)."]},{"k":"H4080","v":["מִדְיָן","Midyân","mid-yawn'","The same as H4079; Midjan, a son of Abraham; also his country and (collectively) his descendants: - Midian, Midianite."]},{"k":"H4081","v":["מִדִּין","Middîyn","mid-deen'","A variation for H4080: - Middin."]},{"k":"H4082","v":["מְדִינָה","mᵉdîynâh","med-ee-naw'","From H1777; properly a judgeship, that is, jurisdiction; by implication a district (as ruled by a judge); generally a region: - ( X every) province."]},{"k":"H4083","v":["מְדִינָה","mᵉdîynâh","med-ee-naw'","(Chaldee); corresponding to H4082: - province."]},{"k":"H4084","v":["מִדְיָנִי","Midyânîy","mid-yaw-nee'","Patronymic or patrial from H4080; a Midjanite or descendant (native) of Midjan: - Midianite. Compare H4092."]},{"k":"H4085","v":["מְדֹכָה","mᵉdôkâh","med-o-kaw'","From H1743; a mortar: - mortar."]},{"k":"H4086","v":["מַדְמֵן","Madmên","mad-mane'","From the same as H1828; dunghill; Madmen, a place in Palestine: - Madmen."]},{"k":"H4087","v":["מַדְמֵנָה","madmênâh","mad-may-naw'","Feminine from the same as H1828; a dunghill: - dunghill."]},{"k":"H4088","v":["מַדְמֵנָה","Madmênâh","mad-may-naw'","The same as H4087; Madmenah, a place in Palestine: - Madmenah."]},{"k":"H4089","v":["מַדְמַנָּה","Madmannâh","mad-man-naw'","A variation for H4087; Madmannah, a place in Palestine: - Madmannah."]},{"k":"H4090","v":["מְדָן","mᵉdân","med-awn'","A form of H4066: - discord, strife."]},{"k":"H4091","v":["מְדָן","Mᵉdân","med-awn'","The same as H4090; Medan, a son of Abraham: - Medan."]},{"k":"H4092","v":["מְדָנִי","Mᵉdânîy","med-aw-nee'","A variation of H4084: - Midianite."]},{"k":"H4093","v":["מַדָּע","maddâʻ","mad-daw'","From H3045; intelligence or consciousness: - knowledge, science, thought."]},{"k":"H4094","v":["מַדְקָרָה","madqârâh","mad-kaw-raw'","From H1856; a wound: - piercing."]},{"k":"H4095","v":["מַדְרֵגָה","madrêgâh","mad-ray-gaw'","From an unused root meaning to step; properly a step; by implication a steep or inaccessible place: - stair, steep place."]},{"k":"H4096","v":["מִדְרָךְ","midrâk","mid-rawk'","From H1869; a treading, that is, a place for stepping on: - [foot-] breadth."]},{"k":"H4097","v":["מִדְרָשׁ","midrâsh","mid-rawsh'","From H1875; properly an investigation, that is, (by implication) a treatise or elaborate compilation: - story."]},{"k":"H4098","v":["מְדֻשָּׁה","mᵉdushshâh","med-oosh-shaw'","From H1758; a threshing, that is, (concretely and figuratively) down trodden people: - threshing."]},{"k":"H4099","v":["מְדָתָא","Mᵉdâthâʼ","med-aw-thaw'","Of Persian origin; Medatha, the father of Haman. (Including the article.): - Hammedatha [includ. the article.]"]},{"k":"H4100","v":["מָה","mâh","maw","A primitive particle; properly interrogitive what? (including how?, why? and when?); but also exclamations like what! (including how!), or indefinitely what (including whatever, and even relatively that which); often used with prefixes in various adverbial or conjugational sneses: - how (long, oft, [-soever]), [no-] thing, what (end, good, purpose, thing), whereby (-fore, -in, -to, -with), (for) why."]},{"k":"H4101","v":["מָה","mâh","maw","(Chaldee); corresponding to H4100: - how great (mighty), that which, what (-soever), why."]},{"k":"H4102","v":["מָהַהּ","mâhahh","maw-hah'","Apparently a denominative from H4100; properly to question or hesitate, that is, (by implication) to be reluctant: - delay, linger, stay selves, tarry."]},{"k":"H4103","v":["מְהוּמָה","mᵉhûwmâh","meh-hoo-maw'","From H1949; confusion or uproar: - destruction, discomfiture, trouble, tumult, vexation, vexed."]},{"k":"H4104","v":["מְהוּמָן","Mᵉhûwmân","meh-hoo-mawn'","Of Persian origin; Mehuman, a eunuch of Xerxes: - Mehuman."]},{"k":"H4105","v":["מְהֵיטַבְאֵל","Mᵉhêyṭabʼêl","meh-hay-tab-ale'","From H3190 (augmented) and H410; bettered of God; Mehetabel, the name of an Edomitish man and woman: - Mehetabeel, Mehetabel."]},{"k":"H4106","v":["מָהִיר","mâhîyr","maw-here'","From H4116; quick; hence skilful: - diligent, hasty, ready."]},{"k":"H4107","v":["מָהַל","mâhal","maw-hal'","A primitive root; properly to cut down or reduce, that is, by implication to adulterate: - mixed."]},{"k":"H4108","v":["מַהְלֵךְ","mahlêk","mah-lake'","From H1980; a walking (plural collectively), that is, access: - place to walk."]},{"k":"H4109","v":["מַהֲלָךְ","mahălâk","mah-hal-awk'","From H1980; a walk, that is, a passage or a distance: - journey, walk."]},{"k":"H4110","v":["מַהֲלָל","mahălâl","mah-hal-awl'","From H1984; fame: - praise."]},{"k":"H4111","v":["מַהֲלַלְאֵל","Mahălalʼêl","mah-hal-al-ale'","From H4110 and H410; praise of God; Mahalalel, the name of an antediluvian patriarch and of an Israelite: - Mahalaleel."]},{"k":"H4112","v":["מַהֲלֻמָּה","mahălummâh","mah-hal-oom-maw'","From H1986; a blow: - stripe, stroke."]},{"k":"H4113","v":["מַהֲמֹרָה","mahămôrâh","mah-ham-o-raw'","From an unused root of uncertain meaning; perhaps an abyss: - deep pit."]},{"k":"H4114","v":["מַהְפֵּכָה","mahpêkâh","mah-pay-kaw'","From H2015; a destruction: - when . . . overthrew, overthrow (-n)."]},{"k":"H4115","v":["מַהְפֶּכֶת","mahpeketh","mah-peh'-keth","From H2015; a wrench, that is, the stocks: - prison, stocks."]},{"k":"H4116","v":["מָהַר","mâhar","maw-har'","A primitive root; properly to be liquid or flow easily, that is, (by implication); to hurry (in a good or bad sense); often used (with another verb) adverbially promptly: - be carried headlong, fearful, (cause to make, in, make) haste (-n, -ily, (be) hasty, (fetch, make ready) X quickly, rash, X shortly, (be so) X soon, make speed, X speedily, X straightway, X suddenly, swift."]},{"k":"H4117","v":["מָהַר","mâhar","maw-har'","A primitive root (perhaps rather the same as H4116 through the idea of readiness in assent); to bargain (for a wife), that is, to wed: - endow, X surely."]},{"k":"H4118","v":["מַהֵר","mahêr","mah-hare'","From H4116; properly hurrying; hence (adverbially) in a hurry: - hasteth, hastily, at once, quickly, soon, speedily, suddenly."]},{"k":"H4119","v":["מֹהַר","môhar","mo'-har","From H4117; a price (for a wife): - dowry."]},{"k":"H4120","v":["מְהֵרָה","mᵉhêrâh","meh-hay-raw'","Feminine of H4118; properly a hurry; hence (adverbially) promptly: - hastily, quickly, shortly, soon, make (with) speed (-ily), swiftly."]},{"k":"H4121","v":["מַהֲרַי","Mahăray","mah-har-ah'-ee","From H4116; hasty; Maharai, an Israelite: - Maharai."]},{"k":"H4122","v":["מַהֵר שָׁלָל חָשׁ בַּז","Mahêr Shâlâl Châsh Baz","mah-hare' shaw-lawl' khawsh baz","From H4118 and H7998 and H2363 and H957; hasting (as he (the enemy) to the) booty, swift (to the) prey; Maher-Shalal Chash-Baz; the symbolical name of the son of Isaiah: - Maher-shalal-hash-baz."]},{"k":"H4123","v":["מַהֲתַלָּה","mahăthallâh","mah-hath-al-law'","From H2048; a delusion: - deceit."]},{"k":"H4124","v":["מוֹאָב","Môwʼâb","mo-awb","From a prolonged form of the prepositional prefix “m-” and H1; from (her (the mother’s)) father; Moab, an incestuous son of Lot; also his territory and descendants: - Moab."]},{"k":"H4125","v":["מוֹאָבִי","Môwʼâbîy","mo-aw-bee'","Patronymic from H4124; a Moabite or Moabitess, that is, a descendant from Moab: - (woman) of Moab, Moabite (-ish, -ss)."]},{"k":"H4126","v":["מוֹבָא","môwbâʼ","mo-baw'","By transposition for H3996; an entrance: - coming."]},{"k":"H4127","v":["מוּג","mûwg","moog","A primitive root; to melt, that is, literally (to soften, flow down, disappear), or figuratively (to fear, faint): - consume, dissolve, (be) faint (-hearted), melt (away), make soft."]},{"k":"H4128","v":["מוּד","mûwd","mood","A primitive root; to shake: - measure."]},{"k":"H4129","v":["מוֹדַע","môwdaʻ","mo-dah'","From H3045; an acquaintance: - kinswoman."]},{"k":"H4130","v":["מוֹדַעַת","môwdaʻath","mo-dah'-ath","From H3045; acquaintance: - kindred."]},{"k":"H4131","v":["מוֹט","môwṭ","mote","A primitive root; to waver; by implication to slip, shake, fall: - be carried, cast, be out of course, be fallen in decay, X exceedingly, fall (-ing down), be (re-) moved, be ready shake, slide, slip."]},{"k":"H4132","v":["מוֹט","môwṭ","mote","From H4131; a wavering, that is, fall; by implication a pole (as shaking); hence a yoke (as essentially a bent pole): - bar, be moved, staff, yoke."]},{"k":"H4133","v":["מוֹטָה","môwṭâh","mo-taw'","Feminine of H4132; a pole; by implication an ox bow; hence a yoke (either literally or figuratively): - bands, heavy, staves, yoke."]},{"k":"H4134","v":["מוּךְ","mûwk","mook","A primitive root; to become thin, that is, (figuratively) be impoverished: - be (waxen) poor (-er)."]},{"k":"H4135","v":["מוּל","mûwl","mool","A primitive root; to cut short, that is, curtail (specifically the prepuce, that is, to circumcise); by implication to blunt; figuratively to destroy: - circumcise (-ing, selves), cut down (in pieces), destroy, X must needs."]},{"k":"H4136","v":["מוּל","mûwl","mool","From H4135; properly abrupt, that is, a precipice; by implication the front; used only adverbially (with prepositional prefix) opposite: - (over) against, before, [fore-] front, from, [God-] ward, toward, with."]},{"k":"H4137","v":["מוֹלָדָה","Môwlâdâh","mo-law-daw'","From H3205; birth; Moladah, a place in Palestine: - Moladah."]},{"k":"H4138","v":["מוֹלֶדֶת","môwledeth","mo-leh'-deth","From H3205; nativity (plural birth place); by implication lineage, native country; also offspring, family: - begotten, born, issue, kindred, native (-ity)."]},{"k":"H4139","v":["מוּלָה","mûwlâh","moo-law'","From H4135; circumcision: - circumcision."]},{"k":"H4140","v":["מוֹלִיד","Môwlîyd","mo-leed'","From H3205; genitor; Molid, an Israelite: - Molid."]},{"k":"H4141","v":["מוּסָב","mûwçâb","moo-sawb'","From H5437; a turn, that is, circuit (of a building): - winding about."]},{"k":"H4142","v":["מוּסַבָּה","mûwçabbâh","moo-sab-baw'","Feminine of H4141; a reversal, that is, the backside (of a gem), fold (of a double leaved door), transmutation (of a name): - being changed, inclosed, be set, turning."]},{"k":"H4143","v":["מוּסָד","mûwçâd","moo-sawd'","From H3245; a foundation: - foundation."]},{"k":"H4144","v":["מוֹסָד","môwçâd","mo-sawd'","From H3245; a foundation: - foundation."]},{"k":"H4145","v":["מוּסָדָה","mûwçâdâh","moo-saw-daw'","Feminine of H4143; a foundation; figuratively an appointment: - foundation, grounded. Compare H4328."]},{"k":"H4146","v":["מוֹסָדָה","môwçâdâh","mo-saw-daw'","Feminine of H4144; a foundation: - foundation."]},{"k":"H4147","v":["מוֹסֵר","môwçêr","mo-sare'","From H3256; properly chastisement, that is, (by implication) a halter; figuratively restraint: - band, bond."]},{"k":"H4148","v":["מוּסָר","mûwçâr","moo-sawr'","From H3256; properly chastisement; figuratively reproof, warning or instruction; also restraint: - bond, chastening ([-eth]), chastisement, check, correction, discipline, doctrine, instruction, rebuke."]},{"k":"H4149","v":["מוֹסֵרָה","Môwçêrâh","mo-say-raw'","Feminine of H4147; correction or corrections; Moserah or Moseroth, a place in the Desert: - Mosera, Moseroth."]},{"k":"H4150","v":["מוֹעֵד","môwʻêd","mo-ade'","From H3259; properly an appointment, that is, a fixed time or season; specifically a festival; conventionally a year; by implication, an assembly (as convened for a definite purpose); technically the congregation; by extension, the place of meeting; also a signal (as appointed beforehand): - appointed (sign, time), (place of, solemn) assembly, congregation, (set, solemn) feast, (appointed, due) season, solemn (-ity), synagogue, (set) time (appointed)."]},{"k":"H4151","v":["מוֹעָד","môwʻâd","mo-awd'","From H3259; properly an assembly (as in H4150); figuratively a troop: - appointed time."]},{"k":"H4152","v":["מוּעָדָה","mûwʻâdâh","moo-aw-daw'","From H3259; an appointed place, that is, asylum: - appointed."]},{"k":"H4153","v":["מוֹעַדְיָה","Môwʻadyâh","mo-ad-yaw'","From H4151 and H3050; assembly of Jah; Moadjah, an Israelite: - Moadiah. Compare H4573."]},{"k":"H4154","v":["מוּעֶדֶת","mûwʻedeth","moo-ay'-deth","Feminine passive participle of H4571; properly made to slip, that is, dislocated: - out of joint."]},{"k":"H4155","v":["מוּעָף","mûwʻâph","moo-awf'","From H5774; properly covered, that is, dark; abstractly obscurity, that is, distress: - dimness."]},{"k":"H4156","v":["מוֹעֵצָה","môwʻêtsâh","mo-ay-tsaw'","From H3289; a purpose: - counsel, device."]},{"k":"H4157","v":["מוּעָקָה","mûwʻâqâh","moo-aw-kaw'","From H5781; pressure, that is, (figuratively) distress: - affliction."]},{"k":"H4158","v":["מוֹפַעַת","Môwphaʻath","mo-fah'-ath","From H3313; illuminative; Mophaath or Mephaath, a place in Palestine: - Mephaath."]},{"k":"H4159","v":["מוֹפֵת","môwphêth","mo-faith'","From H3302 in the sense of conspicuousness; a miracle; by implication a token or omen: - miracle, sign, wonder (-ed at)."]},{"k":"H4160","v":["מוּץ","mûwts","moots","A primitive root; to press, that is, (figuratively) to oppress: - extortioner."]},{"k":"H4161","v":["מוֹצָא","môwtsâʼ","mo-tsaw'","From H3318; a going forth, that is, (the act) an egress, or (the place) an exit; hence a source or product; specifically dawn, the rising of the sun (the East), exportation, utterance, a gate, a fountain, a mine, a meadow (as producing grass): - brought out, bud, that which came out, east, going forth, goings out, that which (thing that) is gone out, outgoing, proceeded out, spring, vein, [water-] course [springs]."]},{"k":"H4162","v":["מוֹצָא","môwtsâʼ","mo-tsaw'","The same as H4161; Motsa, the name of two Israelites: - Moza."]},{"k":"H4163","v":["מוֹצָאָה","môwtsâʼâh","mo-tsaw-aw'","Feminine of H4161; a family descent; also a sewer (compare H6675): - draught house; going forth."]},{"k":"H4164","v":["מוּצַק","mûwtsaq","moo-tsak'","From H3332; narrowness; figuratively distress: - anguish, is straitened, straitness."]},{"k":"H4165","v":["מוּצָק","mûwtsâq","moo-tsawk'","From H5694; properly fusion, that is, literally a casting (of metal); figuratively a mass (of clay): - casting, hardness."]},{"k":"H4166","v":["מוּצָקָה","mûwtsâqâh","moo-tsaw-kaw'","From H3332; properly something poured out, that is, a casting (of metal); by implication a tube (as cast): - when it was cast, pipe."]},{"k":"H4167","v":["מוּק","mûwq","mook","A primitive root; to jeer, that is, (intensively) blaspheme: - be corrupt."]},{"k":"H4168","v":["מוֹקֵד","môwqêd","mo-kade'","From H3344; a fire or fuel; abstractly a conflagration: - burning, hearth."]},{"k":"H4169","v":["מוֹקְדָה","môwqᵉdâh","mo-ked-aw'","Feminine of H4168; fuel: - burning."]},{"k":"H4170","v":["מוֹקֵשׁ","môwqêsh","mo-kashe'","From H3369; a noose (for catching animals), (literally or figuratively); by implication a hook (for the nose): - be ensnared, gin, (is) snare (-d), trap."]},{"k":"H4171","v":["מוּר","mûwr","moor","A primitive root; to alter; by implication to barter, to dispose of: -  X at all, (ex-) change, remove."]},{"k":"H4172","v":["מוֹרָא","môwrâʼ","mo-raw'","From H3372; fear; by implication a fearful thing or deed: - dread, (that ought to be) fear (-ed), terribleness, terror."]},{"k":"H4173","v":["מוֹרַג","môwrag","mo-rag'","From an unused root meaning to triturate; a threshing sledge: - threshing instrument."]},{"k":"H4174","v":["מוֹרָד","môwrâd","mo-rawd'","From H3381; a descent; architecturally an ornamental appendage, perhaps a festoon: - going down, steep place, thin work."]},{"k":"H4175","v":["מוֹרֶה","môwreh","mo-reh'","From H3384; an archer; also teacher or teaching; also the early rain (see H3138): - (early) rain."]},{"k":"H4176","v":["מוֹרֶה","Môwreh","mo-reh'","The same as H4175; Moreh, a Canaanite; also a hill (perhaps named from him): - Moreh."]},{"k":"H4177","v":["מוֹרָה","môwrâh","mo-raw'","From H4171 in the sense of shearing; a razor: - razor."]},{"k":"H4178","v":["מוֹרָט","môwrâṭ","mo-rawt'","From H3399; obstinate, that is, independent: - peeled."]},{"k":"H4179","v":["מוֹרִיָּה","Môwrîyâh","mo-ree-yaw'","From H7200 and H3050; seen of Jah; Morijah, a hill in Palestine: - Moriah."]},{"k":"H4180","v":["מוֹרָשׁ","môwrâsh","mo-rawsh'","From H3423; a possession; figuratively delight: - possession, thought."]},{"k":"H4181","v":["מוֹרָשָׁה","môwrâshâh","mo-raw-shaw'","Feminine of H4180; a possession: - heritage, inheritance, possession."]},{"k":"H4182","v":["מוֹרֶשֶׁת גַּת","Môwresheth Gath","mo-reh'-sheth gath","From H3423 and H1661; possession of Gath; Moresheth-Gath, a place in Palestine: - Moresheth-gath."]},{"k":"H4183","v":["מוֹרַשְׁתִּי","Môwrashtîy","mo-rash-tee'","Patrial from H4182; a Morashtite or inhabitant of Moresheth Gath: - Morashthite."]},{"k":"H4184","v":["מוּשׁ","mûwsh","moosh","A primitive root; to touch: - feel, handle."]},{"k":"H4185","v":["מוּשׁ","mûwsh","moosh","A primitive root (perhaps rather the same as H4184 through the idea of receding by contact); to withdraw (both literally and figuratively, whether intransitively or transitively): - cease, depart, go back, remove, take away."]},{"k":"H4186","v":["מוֹשָׁב","môwshâb","mo-shawb'","From H3427; a seat; figuratively a site; abstractly a session; by extension an abode (the place or the time); by implication population: - assembly, dwell in, dwelling (-place), wherein (that) dwelt (in), inhabited place, seat, sitting, situation, sojourning."]},{"k":"H4187","v":["מוּשִׁי","Mûwshîy","moo-shee'","From H4184; sensitive; Mushi, a Levite: - Mushi."]},{"k":"H4188","v":["מוּשִׁי","Mûwshîy","moo-shee'","Patronymic from H4187; a Mushite (collectively) or descendant of Mushi: - Mushites."]},{"k":"H4189","v":["מוֹשְׁכָה","môwshᵉkâh","mo-shek-aw'","Active participle feminine of H4900; something drawing, that is, (figuratively) a cord: - band."]},{"k":"H4190","v":["מוֹשָׁעָה","môwshâʻâh","mo-shaw-aw'","From H3467; deliverance: - salvation."]},{"k":"H4191","v":["מוּת","mûwth","mooth","A primitive root; to die (literally or figuratively); causatively to kill: -  X at all, X crying, (be) dead (body, man, one), (put to, worthy of) death, destroy (-er), (cause to, be like to, must) die, kill, necro [-mancer], X must needs, slay, X surely, X very suddenly, X in [no] wise."]},{"k":"H4192","v":["מוּת","Mûwth","mooth","From H4191 and H1121 with the preposition and article interposed; “to die for the son”, probably the title of a popular song: - death, Muthlabben."]},{"k":"H4193","v":["מוֹת","môwth","mohth","(Chaldee); corresponding to H4194; death: - death."]},{"k":"H4194","v":["מָוֶת","mâveth","maw'-veth","From H4191; death (natural or violent); concretely the dead, their place or state (hades); figuratively pestilence, ruin: - (be) dead ([-ly]), death, die (-d)."]},{"k":"H4195","v":["מוֹתָר","môwthâr","mo-thar'","From H3498; literally gain; figuratively superiority: - plenteousness, preeminence, profit."]},{"k":"H4196","v":["מִזְבֵּחַ","mizbêach","miz-bay'-akh","From H2076; an altar: - altar."]},{"k":"H4197","v":["מֶזֶג","mezeg","meh'-zeg","From an unused root meaning to mingle (water with wine); tempered wine: - liquor."]},{"k":"H4198","v":["מָזֶה","mâzeh","maw-zeh'","From an unused root meaning to suck out; exhausted: - burnt."]},{"k":"H4199","v":["מִזָּה","Mizzâh","miz-zaw'","Probably from an unused root meaning to faint with fear; terror; Mizzah, an Edomite: - Mizzah."]},{"k":"H4200","v":["מֶזֶו","mezev","meh'-zev","Probably from an unused root meaning to gather in; a granary: - garner."]},{"k":"H4201","v":["מְזוּזָה","mᵉzûwzâh","mez-oo-zaw'","From the same as H2123; a door post (as prominent): - (door, side) post."]},{"k":"H4202","v":["מָזוֹן","mâzôwn","maw-zone'","From H2109; food: - meat, victual."]},{"k":"H4203","v":["מָזוֹן","mâzôwn","maw-zone'","(Chaldee); corresponding to H4202: - meat."]},{"k":"H4204","v":["מָזוֹר","mâzôwr","maw-zore'","From H2114 in the sense of turning aside from truth; treachery, that is, a plot: - wound."]},{"k":"H4205","v":["מָזוֹר","mâzôwr","maw-zore'","From H2115 in the sense of binding up; a bandage, that is, remedy; hence a sore (as needing a compress): - bound up, wound."]},{"k":"H4206","v":["מָזִיחַ","mâzîyach","maw-zee'-akh","From H2118; a belt (as movable): - girdle, strength."]},{"k":"H4207","v":["מַזְלֵג","mazlêg","maz-layg'","From an unused root meaning to draw up; a fork: - fleshhook."]},{"k":"H4208","v":["מַזָּלָה","mazzâlâh","maz-zaw-law'","Apparently from H5140 in the sense of raining; a constellation, that is, Zodiacal sign (perhaps as affecting the weather): - planet. Compare H4216."]},{"k":"H4209","v":["מְזִמָּה","mᵉzimmâh","mez-im-maw'","From H2161; a plan, usually evil (machination), sometimes good (sagacity): - (wicked) device, discretion, intent, witty invention, lewdness, mischievous (device), thought, wickedly."]},{"k":"H4210","v":["מִזְמוֹר","mizmôwr","miz-more'","From H2167; properly instrumental music; by implication a poem set to notes: - psalm."]},{"k":"H4211","v":["מַזְמֵרָה","mazmêrâh","maz-may-raw'","From H2168; a pruning knife: - pruning-hook."]},{"k":"H4212","v":["מְזַמְּרָה","mᵉzammᵉrâh","mez-am-mer-aw'","From H2168; a tweezer (only in the plural): - snuffers."]},{"k":"H4213","v":["מִזְעָר","mizʻâr","miz-awr'","From the same as H2191; fewness; by implication as superlative diminutiveness: - few, X very."]},{"k":"H4214","v":["מִזְרֶה","mizreh","miz-reh'","From H2219; a winnowing shovel (as scattering the chaff): - fan."]},{"k":"H4215","v":["מְזָרֶה","mᵉzâreh","mez-aw-reh'","Apparently from H2219; properly a scatterer, that is, the north wind (as dispersing clouds; only in plural): - north."]},{"k":"H4216","v":["מַזָּרָה","mazzârâh","maz-zaw-raw'","Apparently from H5144 in the sense of distinction; some noted constellation (only in the plural), perhaps collectively the zodiac: - Mazzoroth. Compare H4208."]},{"k":"H4217","v":["מִזְרָח","mizrâch","miz-rawkh'","From H2224; sunrise, that is, the east: - east (side, -ward), (sun-) rising (of the sun)."]},{"k":"H4218","v":["מִזְרָע","mizrâʻ","miz-raw'","From H2232; a planted field: - thing sown."]},{"k":"H4219","v":["מִזְרָק","mizrâq","miz-rawk'","From H2236; a bowl (as if for sprinkling): - bason, bowl."]},{"k":"H4220","v":["מֵחַ","mêach","may'-akh","From H4229 in the sense of greasing; fat; figuratively rich: - fatling (one)."]},{"k":"H4221","v":["מֹחַ","môach","mo'-akh","From the same as H4220; fat, that is, marrow: - marrow."]},{"k":"H4222","v":["מָחָא","mâchâʼ","maw-khaw'","A primitive root; to rub or strike the hands together (in exultation): - clap."]},{"k":"H4223","v":["מְחָא","mᵉchâʼ","mekh-aw'","(Chaldee); corresponding to H4222; to strike in pieces; also to arrest; specifically to impale: - hang, smite, stay."]},{"k":"H4224","v":["מַחֲבֵא","machăbêʼ","makh-ab-ay'","From H2244; a refuge: - hiding (lurking) place."]},{"k":"H4225","v":["מַחְבֶּרֶת","machbereth","makh-beh'-reth","From H2266; a junction, that is, seam or sewed piece: - coupling."]},{"k":"H4226","v":["מְחַבְּרָה","mᵉchabbᵉrâh","mekh-ab-ber-aw'","From H2266; a joiner, that is, brace or cramp: - coupling, joining."]},{"k":"H4227","v":["מַחֲבַת","machăbath","makh-ab-ath'","From the same as H2281; a pan for baking in: - pan."]},{"k":"H4228","v":["מַחֲגֹרֶת","machăgôreth","makh-ag-o'-reth","From H2296; a girdle: - girding."]},{"k":"H4229","v":["מָחָה","mâchâh","maw-khaw'","A primitive root; properly to stroke or rub; by implication to erase; also to smooth (as if with oil), that is, grease or make fat; also to touch, that is, reach to: - abolish, blot out, destroy, full of marrow, put out, reach unto, X utterly, wipe (away, out)."]},{"k":"H4230","v":["מְחוּגָה","mᵉchûwgâh","mekk-oo-gaw'","From H2328; an instrument for marking a circle, that is, compasses: - compassive"]},{"k":"H4231","v":["מָחוֹז","mâchôwz","maw-khoze'","From an unused root meaning to enclose; a harbor (as shut in by the shore): - haven."]},{"k":"H4232","v":["מְחוּיָאֵל","Mᵉchûwyâʼêl","mekh-oo-yaw-ale'","From H4229 and H410; smitten of God; Mechujael or Mechijael, an antediluvian patriarch: - Mehujael."]},{"k":"H4233","v":["מַחֲוִים","Machăvîym","makh-av-eem'","Apparently a patrial, but from an unknown place (in the plural only for a singular); a Machavite or inhabitant of some place named Machaveh: - Mahavite."]},{"k":"H4234","v":["מָחוֹל","mâchôwl","maw-khole'","From H2342; a (round) dance: - dance (-cing)."]},{"k":"H4235","v":["מָחוֹל","Mâchôwl","maw-khole'","The same as H4234; dancing; Machol, an Israelite: - Mahol."]},{"k":"H4236","v":["מַחֲזֶה","machăzeh","makh-az-eh'","From H2372; a vision: - vision."]},{"k":"H4237","v":["מֶחֱזָה","mechĕzâh","mekh-ez-aw'","From H2372; a window: - light."]},{"k":"H4238","v":["מַחֲזִיאוֹת","Machăzîyʼôwth","makh-az-ee-oth'","Feminine plural from H2372; visions; Machazioth, an Israelite: - Mahazioth."]},{"k":"H4239","v":["מְחִי","mᵉchîy","mekh-ee'","From H4229; a stroke, that is, battering ram: - engines."]},{"k":"H4240","v":["מְחִידָא","Mᵉchîydâʼ","mek-ee-daw'","From H2330; junction; Mechida, one of the Nethinim: - Mehida."]},{"k":"H4241","v":["מִחְיָה","michyâh","mikh-yaw'","From H2421; preservation of life; hence sustenance; also the live flesh, that is, the quick: - preserve life, quick, recover selves, reviving, sustenance, victuals."]},{"k":"H4242","v":["מְחִיר","mᵉchîyr","mekk-eer'","From an unused root meaning to buy; price, payment, wages: - gain, hire, price, sold, worth."]},{"k":"H4243","v":["מְחִיר","Mᵉchîyr","mekh-eer'","The same as H4242; price; Mechir, an Israelite: - Mehir."]},{"k":"H4244","v":["מַחְלָה","Machlâh","makh-law'","From H2470; sickness; Machlah, the name apparently of two Israelitesses: - Mahlah."]},{"k":"H4245","v":["מַחֲלֶה","machăleh","makh-al-eh'","From H2470; sickness: - disease, infirmity, sickness."]},{"k":"H4246","v":["מְחֹלָה","mᵉchôlâh","mek-o-law'","Feminine of H4234; a dance: - company, dances (-cing)."]},{"k":"H4247","v":["מְחִלָּה","mᵉchillâh","mekh-il-law'","From H2490; a cavern (as if excavated): - cave."]},{"k":"H4248","v":["מַחְלוֹן","Machlôwn","makh-lone'","From H2470; sick; Machlon, an Israelite: - Mahlon."]},{"k":"H4249","v":["מַחְלִי","Machlîy","makh-lee'","From H2470; sick; Machli, the name of two Israelites: - Mahli."]},{"k":"H4250","v":["מַחְלִי","Machlîy","makh-lee'","Patronymic from H4249; a Machlite or (collectively) descendant of Machli: - Mahlites."]},{"k":"H4251","v":["מַחְלֻי","machluy","makh-loo'-ee","From H2470; a disease: - disease."]},{"k":"H4252","v":["מַחֲלָף","machălâph","makh-al-awf'","From H2498; a (sacrificial) knife (as gliding through the flesh): - knife."]},{"k":"H4253","v":["מַחְלָפָה","machlâphâh","makh-law-faw'","From H2498; a ringlet of hair (as gliding over each other): - lock."]},{"k":"H4254","v":["מַחֲלָצָה","machălâtsâh","makh-al-aw-tsaw'","From H2502; a mantle (as easily drawn off): - changeable suit of apparel, change of raiment."]},{"k":"H4255","v":["מַחְלְקָה","machlᵉqâh","makh-lek-aw'","(Chaldee); corresponding to H4256; a section (of the Levites): - course."]},{"k":"H4256","v":["מַחֲלֹקֶת","machălôqeth","makh-al-o'-keth","From H2505; a section (of Levites, people or soldiers): - company, course, division, portion. See also H5555."]},{"k":"H4257","v":["מַחֲלַת","machălath","makh-al-ath'","From H2470; sickness; machalath, probably the title (initial word) of a popular song: - Mahalath."]},{"k":"H4258","v":["מַחֲלַת","Machălath","makh-al-ath'","The smae as H4257; sickness; Machalath, the name of an Ishmaelitess and of an Israelitess: - Mahalath."]},{"k":"H4259","v":["מְחֹלָתִי","Mᵉchôlâthîy","mekh-o-law-thee'","Patrial from H65; a Mecholathite or inhabitant of Abel Mecholah: - Mecholathite."]},{"k":"H4260","v":["מַחֲמָאָה","machămâʼâh","makh-am-aw-aw'","A denominative from H2529; something buttery (that is, unctuous and pleasant), as (figuratively) flattery: -  X than butter."]},{"k":"H4261","v":["מַחְמָד","machmâd","makh-mawd'","From H2530; delightful; hence a delight, that is, object of affection or desire: - beloved, desire, goodly, lovely, pleasant (thing)."]},{"k":"H4262","v":["מַחְמֻד","machmud","makh-mood'","From H2530; desired; hence a valuable: - pleasant thing."]},{"k":"H4263","v":["מַחְמָל","machmâl","makh-mawl'","From H2550; properly sympathy; (by paronomasia with H4261) delight: - pitieth."]},{"k":"H4264","v":["מַחֲנֶה","machăneh","makh-an-eh'","From H2583; an encampment (of travellers or troops); hence an army, whether literally (of soldiers) or figuratively (of dancers, angels, cattle, locusts, stars; or even the sacred courts): - army, band, battle, camp, company, drove, host, tents."]},{"k":"H4265","v":["מַחֲנֵה־דָן","Machănêh-Dân","makh-an-ay'-dawn","From H4264 and H1835; camp of Dan; Machaneh-Dan, a place in Palestine: - Mahaneh-dan."]},{"k":"H4266","v":["מַחֲנַיִם","Machănayim","makh-an-ah'-yim","Dual of H4264; double camp; Machanajim, a place in Palestine: - Mahanaim."]},{"k":"H4267","v":["מַחֲנַק","machănaq","makh-an-ak'","From H2614; choking: - strangling."]},{"k":"H4268","v":["מַחֲסֶה","machăçeh","makh-as-eh'","From H2620; a shelter (literally or figuratively): - hope, (place of) refuge, shelter, trust."]},{"k":"H4269","v":["מַחְסוֹם","machçôwm","makh-sohm'","From H2629; a muzzle: - bridle."]},{"k":"H4270","v":["מַחְסוֹר","machçôwr","makh-sore'","From H2637; deficiency; hence impoverishment: - lack, need, penury, poor, poverty, want."]},{"k":"H4271","v":["מַחְסֵיָה","Machçêyâh","makh-say-yaw'","From H4268 and H3050; refuge of (that is, in) Jah; Machsejah, an Israelite: - Maaseiah."]},{"k":"H4272","v":["מָחַץ","mâchats","maw-khats'","A primitive root; to dash asunder; by implication to crush, smash or violently plunge; figuratively to subdue or destroy: - dip, pierce (through), smite (through), strike through, wound."]},{"k":"H4273","v":["מַחַץ","machats","makh'-ats","From H4272; a contusion: - stroke."]},{"k":"H4274","v":["מַחְצֵב","machtsêb","makh-tsabe'","From H2672; properly a hewing; concretely a quarry: - hewed (-n)."]},{"k":"H4275","v":["מֶחֱצָה","mechĕtsâh","mekh-ets-aw'","From H2673; a halving: - half."]},{"k":"H4276","v":["מַחֲצִית","machătsîyth","makh-ats-eeth'","From H2673; a halving or the middle: - half (so much), mid [-day]."]},{"k":"H4277","v":["מָחַק","mâchaq","maw-khak'","A primitive root; to crush: - smite off."]},{"k":"H4278","v":["מֶחְקָר","mechqâr","mekh-kawr'","From H2713; properly scrutinized, that is, (by implication) a recess: - deep place."]},{"k":"H4279","v":["מָחָר","mâchâr","maw-khar'","Probably from H309; properly deferred, that is, the morrow; usually (adverbially) tomorrow; indefinitely hereafter: - time to come, tomorrow."]},{"k":"H4280","v":["מַחֲרָאָה","machărâʼâh","makh-ar-aw-aw'","From the same as H2716; a sink: - draught house."]},{"k":"H4281","v":["מַחֲרֵשָׁה","machărêshâh","makh-ar-ay-shaw'","From H2790; probably a pick axe: - mattock."]},{"k":"H4282","v":["מַחֲרֶשֶׁת","machăresheth","makh-ar-eh'-sheth","From H2790; probably a hoe: - share."]},{"k":"H4283","v":["מׇחֳרָת","mochŏrâth","mokh-or-awth'","Feminine from the same as H4279; the morrow or (adverbially) tomorrow: - morrow, next day."]},{"k":"H4284","v":["מַחֲשָׁבָה","machăshâbâh","makh-ash-aw-baw'","From H2803; a contrivance, that is, (concretely) a texture, machine, or (abstractly) intention, plan (whether bad, a plot; or good, advice): - cunning (work), curious work, device (-sed), imagination, invented, means, purpose, thought."]},{"k":"H4285","v":["מַחְשָׁךְ","machshâk","makh-shawk'","From H2821; darkness; concretely a dark place: - dark (-ness, place)."]},{"k":"H4286","v":["מַחְשֹׂף","machsôph","makh-sofe'","From H2834; a peeling: - made appear."]},{"k":"H4287","v":["מַחַת","Machath","makh'-ath","Probably from H4229; erasure; Machath, the name of two Israelites: - Mahath."]},{"k":"H4288","v":["מְחִתָּה","mᵉchittâh","mekh-it-taw'","From H2846; properly a dissolution; concretely a ruin, or (abstractly) consternation: - destruction, dismaying, ruin, terror."]},{"k":"H4289","v":["מַחְתָּה","machtâh","makh-taw'","The same as H4288 in the sense of removal; a pan for live coals: - censer, firepan, snuffdish."]},{"k":"H4290","v":["מַחְתֶּרֶת","machtereth","makh-teh'-reth","From H2864; a burglary; figuratively unexpected examination: - breaking up, secret search."]},{"k":"H4291","v":["מְטָא","mᵉṭâʼ","met-aw'","(Chaldee); apparently corresponding to H4672 in the intransitive sense of being found present; to arrive, extend or happen: - come, reach."]},{"k":"H4292","v":["מַטְאֲטֵא","maṭʼăṭêʼ","mat-at-ay'","Apparently a denominative from H2916; a broom (as removing dirt (compare English ‘to dust’, that is, remove dust)): - besom."]},{"k":"H4293","v":["מַטְבֵּחַ","maṭbêach","mat-bay'-akh","From H2873; slaughter: - slaughter."]},{"k":"H4294","v":["מַטֶּה","maṭṭeh","mat-teh'","From H5186; a branch (as extending); figuratively a tribe; also a rod, whether for chastising (figuratively correction), ruling (a sceptre), throwing (a lance), or walking (a staff; figuratively a support of life, for example bread): - rod, staff, tribe."]},{"k":"H4295","v":["מַטָּה","maṭṭâh","mat'-taw","From H5786 with directive enclitic appended; downward, below or beneath; often adverbially with or without prefixes: - beneath, down (-ward), less, very low, under (-neath)."]},{"k":"H4296","v":["מִטָּה","miṭṭâh","mit-taw'","From H5186; a bed (as extended) for sleeping or eating; by analogy a sofa, litter or bier: - bed ([-chamber]), bier."]},{"k":"H4297","v":["מֻטֶּה","muṭṭeh","moot-teh'","From H5186; a stretching, that is, distortion (figuratively iniquity): - perverseness."]},{"k":"H4298","v":["מֻטָּה","muṭṭâh","moot-taw'","From H5186; expansion: - stretching out."]},{"k":"H4299","v":["מַטְוֶה","maṭveh","mat-veh'","From H2901; something spun: - spun."]},{"k":"H4300","v":["מְטִיל","mᵉṭîyl","met-eel'","From H2904 in the sense of hammering out; an iron bar (as forged): - bar."]},{"k":"H4301","v":["מַטְמוֹן","maṭmôwn","mat-mone'","From H2934; a secret storehouse; hence a secreted valuable (buried); generally money: - hidden, riches, (hid) treasure (-s)."]},{"k":"H4302","v":["מַטָּע","maṭṭâʻ","mat-taw'","From H5193; something planted, that is, the place (a garden or vineyard), or the thing (a plant, figuratively of men); by implication the act, planting: - plant (-ation, -ing)."]},{"k":"H4303","v":["מַטְעַם","maṭʻam","mat-am'","From H2938; a delicacy: - dainty (meat), savoury meat."]},{"k":"H4304","v":["מִטְפַּחַת","miṭpachath","mit-pakh'-ath","From H2946; a wide cloak (for a woman): - vail, wimple."]},{"k":"H4305","v":["מָטַר","mâṭar","maw-tar'","A primitive root; to rain: - (cause to) rain (upon)."]},{"k":"H4306","v":["מָטַר","mâṭar","maw-tawr'","From H4305; rain: - rain."]},{"k":"H4307","v":["מַטָּרָא","maṭṭârâʼ","mat-taw-raw'","From H5201; a jail (as a guard house); also an aim (as being closely watched): - mark, prison."]},{"k":"H4308","v":["מַטְרֵד","Maṭrêd","mat-rade'","From H2956; propulsive; Matred, an Edomitess: - Matred."]},{"k":"H4309","v":["מַטְרִי","Maṭrîy","mat-ree'","From H4305; rainy; Matri, an Israelite: - Matri."]},{"k":"H4310","v":["מִי","mîy","me","An interrogitive pronoun of persons, as H4100 is of things, who? (occasionally, by a peculiar idiom, of things); also (indefinitely) whoever; often used in oblique construction with prefix or suffix: - any (man), X he, X him, + O that! what, which, who (-m, -se, -soever), + would to God."]},{"k":"H4311","v":["מֵידְבָא","Mêydᵉbâʼ","may-deb-aw'","From H4325 and H1679; water of quiet; Medeba, a place in Palestine."]},{"k":"H4312","v":["מֵידָד","Mêydâd","may-dawd'","From H3032 in the sense of loving; affectionate; Medad, an Israelite: - Medad."]},{"k":"H4313","v":["מֵי הַיַּרְקוֹן","Mêy hay-Yarqôwn","may hah'-ee-yar-kone'","From H4325 and H3420 with the article interposed; water of the yellowness; Me-haj-Jarkon, a place in Palestine: - Me-jarkon."]},{"k":"H4314","v":["מֵי זָהָב","Mêy Zâhâb","may zaw-hawb'","From H4325 and H2091, water of gold; Me-Zahab, an Edomite: - Mezahab."]},{"k":"H4315","v":["מֵיטָב","mêyṭâb","may-tawb'","From H3190; the best part: - best."]},{"k":"H4316","v":["מִיכָא","Mîykâʼ","mee-kaw'","A variation for H4318; Mica, the name of two Israelites: - Micha."]},{"k":"H4317","v":["מִיכָאֵל","Mîykâʼêl","me-kaw-ale'","From H4310 and (the prefixed derivation from) H3588 and H410; who (is) like God?; Mikael, the name of an archangel and of nine Israelites: - Michael."]},{"k":"H4318","v":["מִיכָה","Mîykâh","mee-kaw'","An abbreviation of H4320; Micah, the name of seven Israelites: - Micah, Micaiah, Michah."]},{"k":"H4319","v":["מִיכָהוּ","Mîykâhûw","me-kaw'-hoo","A contraction for H4321; Mikehu, an Israelitish prophet: - Micaiah (2Ch_18:8)."]},{"k":"H4320","v":["מִיכָיָה","Mîykâyâh","me-kaw-yaw'","From H4310 and (the prefixed derivation from) H3588 and H3050; who (is) like Jah?; Micajah, the name of two Israelites: - Micah, Michaiah. Compare H4318."]},{"k":"H4321","v":["מִיכָיְהוּ","Mîykâyᵉhûw","me-kaw-yeh-hoo'","Abbreviated for H4322; Mikajah, the name of three Israelites: - Micah, Micaiah, Michaiah."]},{"k":"H4322","v":["מִיכָיָהוּ","Mîykâyâhûw","me-kaw-yaw'-hoo","For H4320; Mikajah, the name of an Israelite and an Israelitess: - Michaiah."]},{"k":"H4323","v":["מִיכָל","mîykâl","me-kawl'","From H3201; properly a container, that is, a streamlet: - brook."]},{"k":"H4324","v":["מִיכָל","Mîykâl","me-kawl'","Apparently the same as H4323; rivulet; Mikal, Saul’s daughter: - Michal."]},{"k":"H4325","v":["מַיִם","mayim","mah'-yim","Dual of a primitive noun (but used in a singular sense); water; figuratively juice; by euphemism urine, semen: -  + piss, wasting, water (-ing, [-course, -flood, -spring])."]},{"k":"H4326","v":["מִיָּמִן","Mîyâmin","me-yaw-meem'","A form for H4509; Mijamin, the name of three Israelites: - Miamin, Mijamin."]},{"k":"H4327","v":["מִין","mîyn","meen","From an unused root meaning to portion out; a sort, that is, species: - kind. Compare H4480."]},{"k":"H4328","v":["מְיֻסָּדָה","mᵉyuççâdâh","meh-yoos-saw-daw'","Properly feminine passive participle of H3245; something founded, that is, a foundation: - foundation."]},{"k":"H4329","v":["מֵיסָךְ","mêyçâk","may-sawk'","From H5526; a portico (as covered): - covert."]},{"k":"H4330","v":["מִיץ","mîyts","meets","From H4160; pressure: - churning, forcing, wringing."]},{"k":"H4331","v":["מֵישָׁא","Mêyshâʼ","may-shaw'","From H4185; departure; Mesha, a place in Arabia; also an Israelite: - Mesha."]},{"k":"H4332","v":["מִישָׁאֵל","Mîyshâʼêl","mee-shaw-ale'","From H4310 and H410 with the abbreviation inceptively relative (see H834) interposed; who (is) what God (is)?; Mishael, the name of three Israelites: - Mishael."]},{"k":"H4333","v":["מִישָׁאֵל","Mîyshâʼêl","mee-shaw-ale'","(Chaldee); corresponding to H4332; Mishael, an Israelite: - Mishael."]},{"k":"H4334","v":["מִישׁוֹר","mîyshôwr","mee-shore'","From H3474; a level, that is, a plain (often used (with the article prefixed) as a proper name of certain districts); figuratively concord; also straightness, that is, (figuratively) justice (sometimes adverbially justly): - equity, even place, plain, right (-eously), (made) straight, uprightness."]},{"k":"H4335","v":["מֵישַׁךְ","Mêyshak","may-shak'","Borrowed from H4336; Meshak, an Israelite: - Meshak."]},{"k":"H4336","v":["מֵישַׁךְ","Mêyshak","may-shak'","(Chaldee); of foreign origin and doubtful signification; Meshak, the Babylonian name of H4333: - Meshak."]},{"k":"H4337","v":["מֵישָׁע","Mêyshâʻ","may-shah'","From H3467; safety; Mesha, an Israelite: - Mesha."]},{"k":"H4338","v":["מֵישַׁע","Mêyshaʻ","may-shaw'","A variation for H4337; safety; Mesha, a Moabite: - Mesha."]},{"k":"H4339","v":["מֵישָׁר","mêyshâr","may-shawr'","From H3474; evenness, that is, (figuratively) prosperity or concord; also straightness, that is, (figuratively) rectitude (only in plural with singular sense; often adverbially): - agreement, aright, that are equal, equity, (things that are) right (-eously, things), sweetly, upright (-ly, -ness)."]},{"k":"H4340","v":["מֵיתָר","mêythâr","may-thar'","From H3498; a cord (of a tent), (compare H3499) or the string (of a bow): - cord, string."]},{"k":"H4341","v":["מַכְאֹב","makʼôb","mak-obe'","From H3510; anguish or (figuratively) affliction: - grief, pain, sorrow."]},{"k":"H4342","v":["מַכְבִּיר","makbîyr","mak-beer'","Transitive participle of H3527; plenty: - abundance."]},{"k":"H4343","v":["מַכְבֵּנָא","Makbênâʼ","mak-bay-naw'","From the same as H3522; knoll; Macbena, a place in Palestine settled by him: - Machbenah."]},{"k":"H4344","v":["מַכְבַּנַּי","Makbannay","mak-ban-nah'-ee","Patrial from H4343; a Macbannite or native of Macbena: - Machbanai."]},{"k":"H4345","v":["מַכְבֵּר","makbêr","mak-bare'","From H3527 in the sense of covering (compare H3531); a grate: - grate."]},{"k":"H4346","v":["מַכְבָּר","makbâr","mak-bawr'","From H3527 in the sense of covering; a cloth (as netted (compare H4345)): - thick cloth."]},{"k":"H4347","v":["מַכָּה","makkâh","mak-kaw'","(Plural only) from H5221; a blow (in 2Ch_2:10, of the flail); by implication a wound; figuratively carnage, also pestilence: - beaten, blow, plague, slaughter, smote, X sore, stripe, stroke, wound ([-ed])."]},{"k":"H4348","v":["מִכְוָה","mikvâh","mik-vaw'","From H3554; a burn: - that burneth, burning."]},{"k":"H4349","v":["מָכוֹן","mâkôwn","maw-kone'","From H3559; properly a fixture, that is, a basis; generally a place, especially as an abode: - foundation, habitation, (dwelling-, settled) place."]},{"k":"H4350","v":["מְכוֹנָה","mᵉkôwnâh","mek-o-naw'","Feminine of H4349; a pedestal, also a spot: - base."]},{"k":"H4351","v":["מְכוּרָה","mᵉkûwrâh","mek-oo-raw'","From the same as H3564 in the sense of digging; origin (as if a mine): - birth, habitation, nativity."]},{"k":"H4352","v":["מָכִי","Mâkîy","maw-kee'","Probably from H4134; pining; Maki, an Israelite: - Machi."]},{"k":"H4353","v":["מָכִיר","Mâkîyr","maw-keer'","From H4376; salesman; Makir, an Israelite: - Machir."]},{"k":"H4354","v":["מָכִירִי","Mâkîyrîy","maw-kee-ree'","Patronymic from H4353; a Makirite or descendant of Makir: - of Machir."]},{"k":"H4355","v":["מָכַךְ","mâkak","maw-kak'","A primitive root; to tumble (in ruins); figuratively to perish: - be brought low, decay."]},{"k":"H4356","v":["מִכְלָאָה","miklâʼâh","mik-law-aw'","From H3607; a pen (for flocks): - ([sheep-]) fold. Compare H4357."]},{"k":"H4357","v":["מִכְלָה","miklâh","mik-law'","From H3615; completion (in plural concretely and adverbially wholly): - perfect. Compare H4356."]},{"k":"H4358","v":["מִכְלוֹל","miklôwl","mik-lole'","From H3634; perfection (that is, concretely adverbial splendidly): - most gorgeously, all sorts."]},{"k":"H4359","v":["מִכְלָל","miklâl","mik-lawl'","From H3634; perfection (of beauty): - perfection."]},{"k":"H4360","v":["מִכְלֻל","miklul","mik-lool'","From H3634; something perfect, that is, a splendid garment: - all sorts."]},{"k":"H4361","v":["מַכֹּלֶת","makkôleth","mak-ko'-leth","From H398; nourishment: - food."]},{"k":"H4362","v":["מִכְמַן","mikman","mik-man'","From the same as H3646 in the sense of hiding; treasure (as hidden): - treasure."]},{"k":"H4363","v":["מִכְמָס","Mikmâç","mik-maws'","From H3647; hidden; Mikmas or Mikmash, a place in Palestine: - Mikmas, Mikmash."]},{"k":"H4364","v":["מַכְמָר","makmâr","mak-mawr'","From H3648 in the sense of blackening by heat; a (hunter’s) net (as dark from concealment): - net."]},{"k":"H4365","v":["מִכְמֶרֶת","mikmereth","mik-meh'-reth","Feminine of H4364; a (fisher’s) net: - drag, net."]},{"k":"H4366","v":["מִכְמְתָת","Mikmᵉthâth","mik-meth-awth'","Apparently from an unused root meaning to hide; concealment; Mikmethath, a place in Palestine: - Michmethath."]},{"k":"H4367","v":["מַכְנַדְבַי","Maknadbay","mak-nad-bah'-ee","From H4100 and H5068 with a particle interposed; what (is) like (a) liberal (man)?; Maknadbai, an Israelite: - Machnadebai."]},{"k":"H4368","v":["מְכֹנָה","Mᵉkônâh","mek-o-naw'","The same as H4350; a base; Mekonah, a place in Palestine: - Mekonah."]},{"k":"H4369","v":["מְכֻנָה","mᵉkunâh","mek-oo-naw'","The same as H4350; a spot: - base."]},{"k":"H4370","v":["מִכְנָס","miknâç","mik-nawce'","From H3647 in the sense of hiding; (only in dual) drawers (from concealing the private parts): - breeches."]},{"k":"H4371","v":["מֶכֶס","mekeç","meh'-kes","Probably from an unused root meaning to enumerate; an assessment (as based upon a census): - tribute."]},{"k":"H4372","v":["מִכְסֶה","mikçeh","mik-seh'","From H3680; a covering, that is, weather boarding: - covering."]},{"k":"H4373","v":["מִכְסָה","mikçâh","mik-saw'","Feminine of H4371; an enumeration; by implication a valuation: - number, worth."]},{"k":"H4374","v":["מְכַסֶּה","mᵉkaççeh","mek-as-seh'","From H3680; a covering, that is, garment; specifically a coverlet (for a bed), an awning (from the sun); also the omentum (as covering the intestines): - clothing, to cover, that which covereth."]},{"k":"H4375","v":["מַכְפֵּלָה","Makpêlâh","mak-pay-law'","From H3717; a fold; Makpelah, a place in Palestine: - Machpelah."]},{"k":"H4376","v":["מָכַר","mâkar","maw-kar'","A primitive root; to sell, literally (as merchandise, a daughter in marriage, into slavery), or figuratively (to surrender): -    X at all, sell (away, -er, self)."]},{"k":"H4377","v":["מֶכֶר","meker","meh'-ker","From H4376; merchandise; also value: - pay, price, ware."]},{"k":"H4378","v":["מַכָּר","makkâr","mak-kawr'","From H5234; an acquaintance: - acquaintance."]},{"k":"H4379","v":["מִכְרֶה","mikreh","mik-reh'","From H3738; a pit (for salt): - [salt-] pit."]},{"k":"H4380","v":["מְכֵרָה","mᵉkêrâh","mek-ay-raw'","Probably from the same as H3564 in the sense of stabbing; a sword: - habitation."]},{"k":"H4381","v":["מִכְרִי","Mikrîy","mik-ree'","From H4376; salesman; Mikri, an Israelite: - Michri."]},{"k":"H4382","v":["מְכֵרָתִי","Mᵉkêrâthîy","mek-ay-raw-thee'","Patrial from an unused name (the same as H4380) of a place in Palestine; a Mekerathite, or inhabitant of Mekerah: - Mecherathite."]},{"k":"H4383","v":["מִכְשׁוֹל","mikshôwl","mik-shole'","Masculine from H3782; a stumblingblock, literally or figuratively (obstacle, enticement (specifically an idol), scruple): - caused to fall, offence, X [no-] thing offered, ruin, stumbling-block."]},{"k":"H4384","v":["מַכְשֵׁלָה","makshêlâh","mak-shay-law'","Feminine from H3782; a stumblingblock, but only figuratively (fall, enticement (idol)): - ruin, stumbling-block."]},{"k":"H4385","v":["מִכְתָּב","miktâb","mik-tawb'","From H3789; a thing written, the characters, or a document (letter, copy, edict, poem): - writing."]},{"k":"H4386","v":["מְכִתָּה","mᵉkittâh","mek-it-taw'","From H3807; a fracture: - bursting."]},{"k":"H4387","v":["מִכְתָּם","miktâm","mik-tawm'","From H3799; an engraving, that is, (technically) a poem: - Michtam."]},{"k":"H4388","v":["מַכְתֵּשׁ","maktêsh","mak-taysh'","From H3806; a mortar; by analogy a socket (of a tooth): - hollow place, mortar."]},{"k":"H4389","v":["מַכְתֵּשׁ","Maktêsh","mak-taysh'","The same as H4388; dell; the Maktesh, a place in Jerusalem: - Maktesh."]},{"k":"H4390","v":["מָלֵא","mâlêʼ","maw-lay'","A primitive root, to fill or (intransitively) be full of, in a wide application (literally and figuratively): - accomplish, confirm, + consecrate, be at an end, be expired, be fenced, fill, fulfil, (be, become, X draw, give in, go) fully (-ly, -ly set, tale), [over-] flow, fulness, furnish, gather (selves, together), presume, replenish, satisfy, set, space, take a [hand-] full, + have wholly."]},{"k":"H4391","v":["מְלָא","mᵉlâʼ","mel-aw'","(Chaldee); corresponding to H4390; to fill: - fill, be full."]},{"k":"H4392","v":["מָלֵא","mâlêʼ","maw-lay'","From H4390; full (literally or figuratively) or filling (literally); also (concretely) fulness; adverbially fully: -  X she that was with child, fill (-ed, -ed with), full (-ly), multitude, as is worth."]},{"k":"H4393","v":["מְלֹא","mᵉlôʼ","mel-o'","From H4390; fulness (literally or figuratively): -    X all along, X all that is (there-) in, fill, (X that whereof . . . was) full, fulness, [hand-] full, multitude."]},{"k":"H4394","v":["מִלֻּא","milluʼ","mil-loo'","From H4390; a fulfilling (only in plural), that is, (literally) a setting (of gems), or (technically) consecration (also concretely a dedicatory sacrifice): - consecration, be set."]},{"k":"H4395","v":["מְלֵאָה","mᵉlêʼâh","mel-ay-aw'","Feminine of H4392; something fulfilled, that is, abundance (of produce): - (first of ripe) fruit, fulness."]},{"k":"H4396","v":["מִלֻּאָה","milluʼâh","mil-loo-aw'","Feminine of H4394; a filling, that is, setting (of gems): - inclosing, setting."]},{"k":"H4397","v":["מֲלְאָךְ","mălʼâk","mal-awk'","From an unused root meaning to despatch as a deputy; a messenger; specifically of God, that is, an angel (also a prophet, priest or teacher): - ambassador, angel, king, messenger."]},{"k":"H4398","v":["מַלְאַךְ","malʼak","mal-ak'","(Chaldee); corresponding to H4397; an angel: - angel."]},{"k":"H4399","v":["מְלָאכָה","mᵉlâʼkâh","mel-aw-kaw'","From the same as H4397; properly deputyship, that is, ministry; generally employment (never servile) or work (abstractly or concretely); also property (as the result of labor): - business, + cattle, + industrious, occupation, (+ -pied), + officer, thing (made), use, (manner of) work ([-man], -manship)."]},{"k":"H4400","v":["מַלְאֲכוּת","malʼăkûwth","mal-ak-ooth'","From the same as H4397; a message: - message."]},{"k":"H4401","v":["מַלְאָכִי","Malʼâkîy","mal-aw-kee'","From the same as H4397; ministrative; Malaki, a prophet: - Malachi."]},{"k":"H4402","v":["מִלֵּאת","millêʼth","mil-layth'","From H4390; fulness, that is, (concretely) a plump socket (of the eye): -    X fitly."]},{"k":"H4403","v":["מַלְבּוּשׁ","malbûwsh","mal-boosh'","From H3847; a garment, or (collectively) clothing: - apparel, raiment, vestment."]},{"k":"H4404","v":["מַלְבֵּן","malbên","mal-bane'","From H3835 (denominatively); a brickkiln: - brickwork."]},{"k":"H4405","v":["מִלָּה","millâh","mil-law'","From H4448 (plural masculine as if from the second form); a word; collectively a discourse; figuratively a topic: -  + answer, by-word, matter, any thing (what) to say, to speak (-ing), speak, talking, word."]},{"k":"H4406","v":["מִלָּה","millâh","mil-law'","(Chaldee); corresponding to H4405; a word, command, discourse, or subject: - commandment, matter, thing, word."]},{"k":"H4407","v":["מִלּוֹא","millôwʼ","mil-lo'","From H4390; a rampart (as filled in), that is, the citadel: - Millo. See also H1037."]},{"k":"H4408","v":["מַלּוּחַ","mallûwach","mal-loo'-akh","From H4414; sea purslain (from its saltness): - mallows."]},{"k":"H4409","v":["מַלּוּךְ","Mallûwk","mal-luke'","From H4427; regnant; Malluk, the name of five Israelites: - Malluch, Melichu [from the margin]."]},{"k":"H4410","v":["מְלוּכָה","mᵉlûwkâh","mel-oo-kaw'","Feminine passive participle of H4427; something ruled, that is, a realm: - kingdom, king’s, X royal."]},{"k":"H4411","v":["מָלוֹן","mâlôwn","maw-lone'","From H3885; a lodgment, that is, caravanserai or encampment: - inn, place where . . . lodge, lodging (place)."]},{"k":"H4412","v":["מְלוּנָה","mᵉlûwnâh","mel-oo-naw'","Feminine from H3885; a hut, a hammock: - cottage, lodge."]},{"k":"H4413","v":["מַלּוֹתִי","Mallôwthîy","mal-lo'-thee","Apparently from H4448; I have talked (that is, loquacious); Mallothi, an Israelite: - Mallothi, an Isr: - Mallothi."]},{"k":"H4414","v":["מָלַח","mâlach","maw-lakh'","A primitive root; properly to rub to pieces or pulverize; intransitively to disappear as dust; also (as denominative from H4417) to salt whether internally (to season with salt) or externally (to rub with salt): -    X at all, salt, season, temper together, vanish away."]},{"k":"H4415","v":["מְלַח","mᵉlach","mel-akh'","(Chaldee); corresponding to H4414; to eat salt, that is, (generally) subsist: -  + have maintenance."]},{"k":"H4416","v":["מְלַח","mᵉlach","mel-akh'","(Chaldee); from H4415; salt: -  + maintenance, salt."]},{"k":"H4417","v":["מֶלַח","melach","meh'-lakh","From H4414; properly powder, that is, (specifically) salt (as easily pulverized and dissolved): - salt ([-pit])."]},{"k":"H4418","v":["מָלָח","mâlâch","maw-lawkh'","From H4414 in its original sense; a rag or old garment: - rotten rag."]},{"k":"H4419","v":["מַלָּח","mallâch","mal-lawkh'","From H4414 in its secondary sense; a sailor (as following ‘the salt’): - mariner."]},{"k":"H4420","v":["מְלֵחָה","mᵉlêchâh","mel-ay-khaw'","From H4414 (in its denominative sense); properly salted (that is, land (H776 being understood)), that is, a desert: - barren land (-ness), salt [land]."]},{"k":"H4421","v":["מִלְחָמָה","milchâmâh","mil-khaw-maw'","From H3898 (in the sense of fighting); a battle (that is, the engagement); generally war (that is, warfare): - battle, fight, (-ing), war ([-rior])."]},{"k":"H4422","v":["מָלַט","mâlaṭ","maw-lat'","A primitive root; properly to be smooth, that is, (by implication) to escape (as if by slipperiness); causatively to release or rescue; specifically to bring forth young, emit sparks: - deliver (self), escape, lay, leap out, let alone, let go, preserve, save, X speedily, X surely."]},{"k":"H4423","v":["מֶלֶט","meleṭ","meh'-let","From H4422, cement (from its plastic smoothness): - clay."]},{"k":"H4424","v":["מְלַטְיָה","Mᵉlaṭyâh","mel-at-yaw'","From H4423 and H3050; (whom) Jah has delivered; Melatjah, a Gibeonite: - Melatiah."]},{"k":"H4425","v":["מְלִילָה","mᵉlîylâh","mel-ee-law'","From H4449 (in the sense of cropping (compare H4135)); a head of grain (as cut off): - ear."]},{"k":"H4426","v":["מְלִיצָה","mᵉlîytsâh","mel-ee-tsaw'","From H3887; an aphorism; also a satire: - interpretation, taunting."]},{"k":"H4427","v":["מָלַךְ","mâlak","maw-lak'","A primitive root; to reign; inceptively to ascend the throne; causatively to induct into royalty; hence (by implication) to take counsel: - consult, X indeed, be (make, set a, set up) king, be (make) queen, (begin to, make to) reign (-ing), rule, X surely."]},{"k":"H4428","v":["מֶלֶךְ","melek","meh'-lek","From H4427; a king: - king, royal."]},{"k":"H4429","v":["מֶלֶךְ","Melek","meh'-lek","The same as H4428; king; Melek, the name of two Israelites. Hammelech is by including the article: - Melech, Hammelech [by includ. the article."]},{"k":"H4430","v":["מֶלֶךְ","melek","meh'-lek","(Chaldee); corresponding to H4428; a king: - king, royal."]},{"k":"H4431","v":["מְלַךְ","mᵉlak","mel-ak'","(Chaldee); from a root corresponding to H4427 in the sense of consultation; advice: - counsel."]},{"k":"H4432","v":["מֹלֶךְ","Môlek","mo'-lek","From H4427; Molek (that is, king), the chief deity of the Ammonites: - Molech. Compare H4445."]},{"k":"H4433","v":["מַלְכָּא","malkâʼ","mal-kaw'","(Chaldee); corresponding to H4436; a queen: - queen."]},{"k":"H4434","v":["מַלְכֹּדֶת","malkôdeth","mal-ko'-deth","From H3920; a snare: - trap."]},{"k":"H4435","v":["מִלְכָּה","Milkâh","mil-kaw'","A form of H4436; queen; Milcah, the name of a Hebrewess and of an Israelite: - Milcah."]},{"k":"H4436","v":["מַלְכָּה","malkâh","mal-kaw'","Feminine of H4428; a queen: - queen."]},{"k":"H4437","v":["מַלְכוּ","malkûw","mal-koo'","(Chaldee); corresponding to H4438; dominion (abstractly or concretely): - kingdom, kingly, realm, reign."]},{"k":"H4438","v":["מַלְכוּת","malkûwth","mal-kooth'","From H4427; a rule; concretely a dominion: - empire, kingdom, realm, reign, royal."]},{"k":"H4439","v":["מַלְכִּיאֵל","Malkîyʼêl","mal-kee-ale'","From H4428 and H410; king of (that is, appointed by) God; Malkiel, an Israelite: - Malchiel."]},{"k":"H4440","v":["מַלְכִּיאֵלִי","Malkîyʼêlîy","mal-kee-ay-lee'","Patronymic from H4439; a Malkielite or descendant of Malkiel: - Malchielite."]},{"k":"H4441","v":["מַלְכִּיָּה","Malkîyâh","mal-kee-yaw'","From H4428 and H3050; king of (that is, appointed by) Jah; Malkijah, the name of ten Israelites: - Malchiah, Malchijah."]},{"k":"H4442","v":["מַלְכִּי־צֶדֶק","Malkîy-Tsedeq","mal-kee-tseh'-dek","From H4428 and H6664; king of right; Malki-Tsedek, an early king in Palestine: - Melchizedek."]},{"k":"H4443","v":["מַלְכִּירָם","Malkîyrâm","mal-kee-rawm'","From H4428 and H7311; king of a high one (that is, of exaltation); Malkiram, an Israelite: - Malchiram."]},{"k":"H4444","v":["מַלְכִּישׁוּעַ","Malkîyshûwaʻ","mal-kee-shoo'-ah","From H4428 and H7769; king of wealth; Malkishua, an Israelite: - Malchishua."]},{"k":"H4445","v":["מַלְכָּם","Malkâm","mal-kawm'","From H4428 for H4432; Malcam or Milcom, the national idol of the Ammonites: - Malcham, Milcom."]},{"k":"H4446","v":["מְלֶכֶת","mᵉleketh","mel-eh'-keth","From H4427; a queen: - queen."]},{"k":"H4447","v":["מֹלֶכֶת","Môleketh","mo-leh'-keth","Feminine active participle of H4427; queen; Moleketh, an Israelitess, (including the article): - Hammoleketh [includ. the article.]"]},{"k":"H4448","v":["מָלַל","mâlal","maw-lal'","A primitive root; to speak (mostly poetical) or say: - say, speak, utter."]},{"k":"H4449","v":["מְלַל","mᵉlal","mel-al'","(Chaldee); corresponding to H4448; to speak: - say, speak (-ing)."]},{"k":"H4450","v":["מִלֲלַי","Milălay","mee-lal-ah'-ee","From H4448; talkative; Milalai, an Israelite: - Milalai."]},{"k":"H4451","v":["מַלְמָד","malmâd","mal-mawd'","From H3925; a goad for oxen: - goad."]},{"k":"H4452","v":["מָלַץ","mâlats","maw-lats'","A primitive root; to be smooth, that is, (figuratively) pleasant: - be sweet."]},{"k":"H4453","v":["מֶלְצָר","meltsâr","mel-tsawr'","Of Persian derivation; the butler or other oficer in the Babylonian court: - Melzar."]},{"k":"H4454","v":["מָלַק","mâlaq","maw-lak'","A primitive root; to crack a joint; by implication to wring the neck of a fowl (without separating it): - wring off."]},{"k":"H4455","v":["מַלְקוֹחַ","malqôwach","mal-ko'-akh","From H3947; transitively (in dual) the jaws (as taking food); intransitively spoil (and captives), (as taken): - booty, jaws, prey."]},{"k":"H4456","v":["מַלְקוֹשׁ","malqôwsh","mal-koshe'","From H3953; the spring rain (compare H3954); figuratively eloquence: - latter rain."]},{"k":"H4457","v":["מֶלְקָח","melqâch","mel-kawkh'","From H3947; (only in dual) tweezers: - snuffers, tongs."]},{"k":"H4458","v":["מֶלְתָּחָה","meltâchâh","mel-taw-khaw'","From an unused root meaning to spread out; a wardrobe (that is, room where clothing is spread): - vestry."]},{"k":"H4459","v":["מַלְתָּעָה","maltâʻâh","mal-taw-aw'","Transposition for H4973; a grinder, that is, back tooth: - great tooth."]},{"k":"H4460","v":["מַמְּגֻרָה","mammᵉgurâh","mam-meg-oo-raw'","From H4048 (in the sense of depositing); a granary: - barn."]},{"k":"H4461","v":["מֵמַד","mêmad","may-mad'","From H4058; a measure: - measure."]},{"k":"H4462","v":["מְמוּכָן","Mᵉmûwkân","mem-oo-kawn'","Of Persian derivation; Memucan or Momucan, a Persian satrap: - Memucan."]},{"k":"H4463","v":["מָמוֹת","mâmôwth","maw-mothe'","From H4191; a mortal disease; concretely a corpse: - death."]},{"k":"H4464","v":["מַמְזֵר","mamzêr","mam-zare'","From an unused root mian. to alienate; a mongrel, that is, born of a Jewish father and a heathen mother: - bastard."]},{"k":"H4465","v":["מִמְכָּר","mimkâr","mim-kawr'","From H4376; merchandise; abstractly a selling: -  X ought, (that which cometh of) sale, that which . . . sold, ware."]},{"k":"H4466","v":["מִמְכֶּרֶת","mimkereth","mim-keh'-reth","Feminine of H4465; a sale: -  + sold as."]},{"k":"H4467","v":["מַמְלָכָה","mamlâkâh","mam-law-kaw'","From H4427; dominion, that is, (abstractly) the estate (rule) or (concretely) the country (realm): - kingdom, king’s, reign, royal."]},{"k":"H4468","v":["מַמְלָכוּת","mamlâkûwth","mam-law-kooth'","A form of H4467 and equivalent to it: - kingdom, reign."]},{"k":"H4469","v":["מַמְסָךְ","mamçâk","mam-sawk'","From H4537; mixture, that is, (specifically) wine mixed (with water or spices): - drink-offering, mixed wine."]},{"k":"H4470","v":["מֶמֶר","memer","meh'-mer","From an unused root meaning to grieve; sorrow: - bitterness."]},{"k":"H4471","v":["מַמְרֵא","Mamrêʼ","mam-ray'","From H4754 (in the sense of vigor); lusty; Mamre, an Amorite: - Mamre."]},{"k":"H4472","v":["מַמְרֹר","mamrôr","mam-rore'","From H4843; a bitterness, that is, (figuratively) calamity: - bitterness."]},{"k":"H4473","v":["מִמְשַׁח","mimshach","mim-shakh'","From H4886, in the sense of expansion; outspread (that is, with outstretched wings): - anointed."]},{"k":"H4474","v":["מִמְשָׁל","mimshâl","mim-shawl'","From H4910; a ruler or (abstractly) rule: - dominion, that ruled."]},{"k":"H4475","v":["מֶמְשָׁלָה","memshâlâh","mem-shaw-law'","Feminine of H4474; rule; also (concretely in plural) a realm or a ruler: - dominion, government, power, to rule."]},{"k":"H4476","v":["מִמְשָׁק","mimshâq","mim-shawk'","From the same as H4943; a possession: - breeding."]},{"k":"H4477","v":["מַמְתַּק","mamtaq","mam-tak'","From H4985; something sweet (literally or figuratively): - (most) sweet."]},{"k":"H4478","v":["מָן","mân","mawn","From H4100; literally a whatness (so to speak), that is, manna (so called from the question about it): - manna."]},{"k":"H4479","v":["מָן","mân","mawn","(Chaldee); from H4101; who or what (properly interrogitive, hence also indefinite and relative): - what, who (-msoever, + so)."]},{"k":"H4480","v":["מִן","min","min","For H4482; properly a part of; hence (prepositionally), from or out of in many senses: - above, after, among, at, because of, by (reason of), from (among), in, X neither, X nor, (out) of, over, since, X then, through, X whether, with."]},{"k":"H4481","v":["מִן","min","min","(Chaldee); corresponding to H4480: - according, after, + because, + before, by, for, from, X him, X more than, (out) of, part, since, X these, to, upon, + when."]},{"k":"H4482","v":["מֵן","mên","mane","From an unused rot meaning to apportion; a part; hence a musical chord (as parted into strings): - in [the same] (Psa. H68 : H23), stringed instrument (Psa. H150 : H4), whereby (Psa. H45 : H8 [defective plural])."]},{"k":"H4483","v":["מְנָא","mᵉnâʼ","men-aw'","(Chaldee); corresponding to H4487; to count, appoint: - number, ordain, set."]},{"k":"H4484","v":["מְנֵא","mᵉnêʼ","men-ay'","(Chaldee); passive participle of H4483; numbered: - Mene."]},{"k":"H4485","v":["מַנְגִּינָה","mangîynâh","man-ghee-naw'","From H5059; a satire: - music."]},{"k":"H4486","v":["מַנְדַּע","mandaʻ","man-dah'","(Chaldee); corresponding to H4093; wisdom or intelligence: - knowledge, reason, understanding."]},{"k":"H4487","v":["מָנָה","mânâh","maw-naw'","A primitive root; properly to weigh out; by implication to allot or constitute officially; also to enumerate or enroll: - appoint, count, number, prepare, set, tell."]},{"k":"H4488","v":["מָנֶה","mâneh","maw-neh'","From H4487; properly a fixed weight or measured amount, that is, (technically) a maneh or mina: - maneh, pound."]},{"k":"H4489","v":["מֹנֶה","môneh","mo-neh'","From H4487; properly something weighed out, that is, (figuratively) a portion of time, that is, an instance: - time."]},{"k":"H4490","v":["מָנָה","mânâh","maw-naw'","From H4487; properly something weighed out, that is, (generally) a division; specifically (of food) a ration; also a lot: - such things as belonged, part, portion."]},{"k":"H4491","v":["מִנְהָג","minhâg","min-hawg'","From H5090; the driving (of a chariot): - driving."]},{"k":"H4492","v":["מִנְהָרָה","minhârâh","min-haw-raw'","From H5102; properly a channel or fissure, that is, (by implication) a cavern: - den."]},{"k":"H4493","v":["מָנוֹד","mânôwd","maw-node'","From H5110; a nodding or toss (of the head in derision): - shaking."]},{"k":"H4494","v":["מָנוֹחַ","mânôwach","maw-no'-akh","From H5117; quiet, that is, (concretely) a settled spot, or (figuratively) a home: - (place of) rest."]},{"k":"H4495","v":["מָנוֹחַ","Mânôwach","maw-no'-akh","The same as H4494; rest; Manoach, an Israelite: - Manoah."]},{"k":"H4496","v":["מְנוּחָה","mᵉnûwchâh","men-oo-khaw'","Feminine of H4495; repose or (adverbially) peacefully; figuratively consolation (specifically matrimony); hence (concretely) an abode: - comfortable, ease, quiet, rest (-ing place), still."]},{"k":"H4497","v":["מָנוֹן","mânôwn","maw-nohn'","From H5125; a continuator, that is, heir: - son."]},{"k":"H4498","v":["מָנוֹס","mânôwç","maw-noce'","From H5127; a retreat (literally or figuratively); abstractly a fleeing: -  X apace, escape, way to flee, flight, refuge."]},{"k":"H4499","v":["מְנוּסָה","mᵉnûwçâh","men-oo-saw'","Feminine of H4498; retreat: - fleeing, flight."]},{"k":"H4500","v":["מָנוֹר","mânôwr","maw-nore'","From H5214; a yoke (properly for ploughing), that is, the frame of a loom: - beam."]},{"k":"H4501","v":["מְנוֹרָה","mᵉnôwrâh","men-o-raw'","Feminine of H4500 (in the original sense of H5216); a chandelier: - candlestick."]},{"k":"H4502","v":["מִנְּזָר","minnᵉzâr","min-ez-awr'","From H5144; a prince: - crowned."]},{"k":"H4503","v":["מִנְחָה","minchâh","min-khaw'","From an unused root meaning to apportion, that is, bestow; a donation; euphemistically tribute; specifically a sacrificial offering (usually bloodless and voluntary): - gift, oblation, (meat) offering, present, sacrifice."]},{"k":"H4504","v":["מִנְחָה","minchâh","min-khaw'","(Chaldee); corresponding to H4503; a sacrificial offering: - oblation, meat offering."]},{"k":"H4505","v":["מְנַחֵם","Mᵉnachêm","men-akh-ame'","From H5162; comforter; Menachem, an Israelite: - Menahem."]},{"k":"H4506","v":["מָנַחַת","Mânachath","maw-nakh'-ath","From H5117; rest; Manachath, the name of an Edomite and of a place in Moab: - Manahath."]},{"k":"H4507","v":["מְנִי","Mᵉnîy","men-ee'","From H4487; the Apportioner, that is, Fate (as an idol): - number."]},{"k":"H4508","v":["מִנִּי","Minnîy","min-nee'","Of foreign derivation; Minni, an Armenian province: - Minni."]},{"k":"H4509","v":["מִנְיָמִין","Minyâmîyn","min-yaw-meen'","From H4480 and H3225; from (the) right hand; Minjamin, the name of two Israelites: - Miniamin. Compare H4326."]},{"k":"H4510","v":["מִנְיָן","minyân","min-yawn'","(Chaldee); from H4483; enumeration: - number."]},{"k":"H4511","v":["מִנִּית","Minnîyth","min-neeth'","From the same as H4482; enumeration; Minnith, a place East of the Jordan: - Minnith."]},{"k":"H4512","v":["מִנְלֶה","minleh","min-leh'","From H5239; completion, that is, (in produce) wealth: - perfection."]},{"k":"H4513","v":["מָנַע","mânaʻ","maw-nah'","A primitive root; to debar (negatively or positively) from benefit or injury: - deny, keep (back), refrain, restrain, withhold."]},{"k":"H4514","v":["מַנְעוּל","manʻûwl","man-ool'","From H5274; a bolt: - lock."]},{"k":"H4515","v":["מִנְעָל","minʻâl","man-awl'","From H5274; a bolt: - shoe."]},{"k":"H4516","v":["מַנְעַם","manʻam","man-am'","From H5276; a delicacy: - dainty."]},{"k":"H4517","v":["מְנַעְנַע","mᵉnaʻnaʻ","men-ah-ah'","From H5128; a sistrum (so called from its rattling sound): - cornet."]},{"k":"H4518","v":["מְנַקִּית","mᵉnaqqîyth","men-ak-keeth'","From H5352; a sacrificial basin (for holding blood): - bowl."]},{"k":"H4519","v":["מְנַשֶּׁה","Mᵉnashsheh","men-ash-sheh'","From H5382; causing to forget; Menashsheh, a grandson of jacob, also the tribe descendant from him, and its territory: - Manasseh."]},{"k":"H4520","v":["מְנַשִּׁי","Mᵉnashshîy","men-ash-shee'","From H4519; a Menashshite or descendant of Menashsheh: - of Manasseh, Manassites."]},{"k":"H4521","v":["מְנָת","mᵉnâth","men-awth'","From H4487; an allotment (by courtesy, law or providence): - portion."]},{"k":"H4522","v":["מַס","maç","mas","From H4549; properly a burden (as causing to faint), that is, a tax in the form of forced labor: - discomfited, levy, task [-master], tribute (-tary)."]},{"k":"H4523","v":["מָס","mâç","mawce","From H4549; fainting, that is, (figuratively) disconsolate: - is afflicted."]},{"k":"H4524","v":["מֵסַב","mêçab","may-sab'","From H5437; a divan (as enclosing the room); abstractly (adverbially) around: - that compass about, (place) round about, at table."]},{"k":"H4525","v":["מַסְגֵּר","maçgêr","mas-gare'","From H5462; a fastener, that is, (of a person) a smith, (of a thing) a prison: - prison, smith."]},{"k":"H4526","v":["מִסְגֶּרֶת","miçgereth","mis-gheh'-reth","From H5462; something enclosing, that is, a margin (of a region, of a panel); concretely a stronghold: - border, close place, hole."]},{"k":"H4527","v":["מַסַּד","maççad","mas-sad'","From H3245; a foundation: - foundation."]},{"k":"H4528","v":["מִסְדְּרוֹן","miçdᵉrôwn","mis-der-ohn'","From the same as H5468; a colonnade or internal portico (from its rows of pillars): - porch."]},{"k":"H4529","v":["מָסָה","mâçâh","maw-saw'","A primitive root; to dissolve: - make to consume away, (make to) melt, water."]},{"k":"H4530","v":["מִסָּה","miççâh","mis-saw'","From H4549 (in the sense of flowing); abundance, that is, (adverbially) liberally: - tribute."]},{"k":"H4531","v":["מַסָּה","maççâh","mas-saw'","From H5254; a testing, of men (judicial) or of God (querulous): - temptation, trial."]},{"k":"H4532","v":["מַסָּה","Maççâh","mas-saw'","The same as H4531; Massah, a place in the Desert: - Massah."]},{"k":"H4533","v":["מַסְוֶה","maçveh","mas-veh'","Apparently from an unused root meaning to cover; a veil: - vail."]},{"k":"H4534","v":["מְסוּכָה","mᵉçûwkâh","mes-oo-kaw'","For H4881; a hedge: - thorn hedge."]},{"k":"H4535","v":["מַסָּח","maççâch","mas-sawkh'","From H5255 in the sense of staving off; a cordon, (adverbially) or (as a) military barrier: - broken down."]},{"k":"H4536","v":["מִסְחָר","miçchâr","mis-khawr'","From H5503; trade: - traffic."]},{"k":"H4537","v":["מָסַךְ","mâçak","maw-sak'","A primitive root; to mix, especially wine (with spices): - mingle."]},{"k":"H4538","v":["מֶסֶךְ","meçek","meh'-sek","From H4537; a mixture, that is, of wine with spices: - mixture."]},{"k":"H4539","v":["מָסָךְ","mâçâk","maw-sawk'","From H5526; a cover, that is, veil: - covering, curtain, hanging."]},{"k":"H4540","v":["מְסֻכָּה","mᵉçukkâh","mes-ook-kaw'","From H5526; a covering, that is, garniture: - covering."]},{"k":"H4541","v":["מַסֵּכָה","maççêkâh","mas-say-kaw'","From H5258; properly a pouring over, that is, fusion of metal (especially a cast image); by implication a libation, that is, league; concretely a coverlet (as if poured out): - covering, molten (image), vail."]},{"k":"H4542","v":["מִסְכֵּן","miçkên","mis-kane'","From H5531; indigent: - poor (man)."]},{"k":"H4543","v":["מִסְכְּנָה","miçkᵉnâh","mis-ken-aw'","By transposition from H3664; a magazine: - store(-house), treasure."]},{"k":"H4544","v":["מִסְכֵּנֻת","miçkênuth","mis-kay-nooth'","From H4542; indigence: - scarceness."]},{"k":"H4545","v":["מַסֶּכֶת","maççeketh","mas-seh'-keth","From H5259 in the sense of spreading out; something expanded, that is, the warp in a loom (as stretched out to receive the woof): - web."]},{"k":"H4546","v":["מְסִלָּה","mᵉçillâh","mes-il-law'","From H5549; a thoroughfare (as turnpiked), literally or figuratively; specifically a viaduct, a staircase: - causeway, course, highway, path, terrace."]},{"k":"H4547","v":["מַסְלוּל","maçlûwl","mas-lool'","From H5549; a thoroughfare (as turnpiked): - highway."]},{"k":"H4548","v":["מַסְמֵר","maçmêr","mas-mare'","From H5568; a peg (as bristling from the surface): - nail."]},{"k":"H4549","v":["מָסַס","mâçaç","maw-sas'","A primitive root; to liquefy; figuratively to waste (with disease), to faint (with fatigue, fear or grief): - discourage, faint, be loosed, melt (away), refuse, X utterly."]},{"k":"H4550","v":["מַסַּע","maççaʻ","mas-sah'","From H5265; a departure (from striking the tents), that is, march (not necessarily a single day’s travel); by implication a station (or point of departure): - journey (-ing)."]},{"k":"H4551","v":["מַסָּע","maççâʻ","mas-saw'","From H5265 in the sense of projecting; a missile (spear or arrow); also a quarry (whence stones are, as it were, ejected): - before it was brought, darticle"]},{"k":"H4552","v":["מִסְעָד","miçʻâd","mis-awd'","From H5582; a balustrade (for stairs): - pillar."]},{"k":"H4553","v":["מִסְפֵּד","miçpêd","mis-pade'","From H5594; a lamentation: - lamentation, one mourneth, mourning, wailing."]},{"k":"H4554","v":["מִסְפּוֹא","miçpôwʼ","mis-po'","From an unused root meaning to collect; fodder: - provender."]},{"k":"H4555","v":["מִסְפָּחָה","miçpâchâh","mis-paw-khaw'","From H5596; a veil (as spread out): - kerchief."]},{"k":"H4556","v":["מִסְפַּחַת","miçpachath","mis-pakh'-ath","From H5596; scurf (as spreading over the surface): - scab."]},{"k":"H4557","v":["מִסְפָּר","miçpâr","mis-pawr'","From H5608; a number, definitely (arithmetical) or indefinitely (large, innumerable; small, a few); also (abstractly) narration: -  + abundance, account, X all, X few, [in-] finite, (certain) number (-ed), tale, telling, + time."]},{"k":"H4558","v":["מִסְפָּר","Miçpâr","mis-pawr'","The same as H4457; number; Mispar, an Israelite: - Mizpar. Compare H4559."]},{"k":"H4559","v":["מִסְפֶּרֶת","Miçpereth","mis-peh'-reth","Feminine of H4457; enumeration; Mispereth, an Israelite: - Mispereth. Compare H4458."]},{"k":"H4560","v":["מָסַר","mâçar","maw-sar'","A primitive root; to sunder, that is, (transitively) set apart, or (reflexively) apostatize: - commit, deliver."]},{"k":"H4561","v":["מֹסָר","môçâr","mo-sawr'","From H3256; admonition: - instruction."]},{"k":"H4562","v":["מָסֹרֶת","mâçôreth","maw-so'-reth","From H631; a band: - bond."]},{"k":"H4563","v":["מִסְתּוֹר","miçtôwr","mis-tore'","From H5641; a refuge: - covert."]},{"k":"H4564","v":["מַסְתֵּר","maçtêr","mas-tare'","From H5641; properly a hider, that is, (abstractly) a hiding, that is, aversion: - hid."]},{"k":"H4565","v":["מִסְתָּר","miçtâr","mis-tawr'","From H5641; properly a concealer, that is, a covert: - secret (-ly, place)."]},{"k":"H4566","v":["מַעְבָּד","maʻbâd","mah-bawd'","From H5647; an act: - work."]},{"k":"H4567","v":["מַעְבָד","maʻbâd","mah-bawd'","(Chaldee); corresponding to H4566; an act: - work."]},{"k":"H4568","v":["מַעֲבֶה","maʻăbeh","mah-ab-eh'","From H5666; properly compact (part of soil), that is, loam: - clay."]},{"k":"H4569","v":["מַעֲבָר","maʻăbâr","mah-ab-awr'","From H5674; a crossing place (of a river, a ford; of a mountain, a pass); abstractly a transit, that is, (figuratively) overwhelming: - ford, place where . . . pass, passage."]},{"k":"H4570","v":["מַעְגָּל","maʻgâl","mah-gawl'","From the same as H5696; a track (literally or figuratively); also a rampart (as circular): - going, path, trench, way([-side])."]},{"k":"H4571","v":["מָעַד","mâʻad","maw-ad'","A primitive root; to waver: - make to shake, slide, slip."]},{"k":"H4572","v":["מַעֲדַי","Maʻăday","mah-ad-ah'-ee","From H5710; ornamental; Maadai, an Israelite: - Maadai."]},{"k":"H4573","v":["מַעֲדְיָה","Maʻădyâh","mah-ad-yaw'","From H5710 and H3050; ornament of Jah; Maadjah, an Israelite: - Maadiah. Compare H4153."]},{"k":"H4574","v":["מַעֲדָן","maʻădân","mah-ad-awn'","From H5727; a delicacy or (abstractly) pleasure (adverbially cheerfully): - dainty, delicately, delight."]},{"k":"H4575","v":["מַעֲדַנָּה","maʻădannâh","mah-ad-an-naw'","By transposition from H6029; a bond, that is, group: - influence."]},{"k":"H4576","v":["מַעְדֵּר","maʻdêr","mah-dare'","From H5737; a (weeding) hoe: - mattock."]},{"k":"H4577","v":["מְעָה","mᵉʻâh","meh-aw'","(Chaldee); corresponding to H4578; only in plural the bowels: - belly."]},{"k":"H4578","v":["מֵעֶה","mêʻeh","may-aw'","From an unused root probably meaning to be soft; used only in plural the intestines, or (collectively) the abdomen, figuratively sympathy; by implication a vest; by extension the stomach, the uterus (or of men, the seat of generation), the heart (figuratively): - belly, bowels, X heart, womb."]},{"k":"H4579","v":["מֵעָה","mêʻâh","may-aw'","Feminine of H4578; the belly, that is, (figuratively) interior: - gravel."]},{"k":"H4580","v":["מָעוֹג","mâʻôwg","maw-ogue'","From H5746; a cake of bread (with H3934 a table buffoon, that is, parasite): - cake, feast."]},{"k":"H4581","v":["מָעוֹז","mâʻôwz","maw-oze'","From H5810; a fortified place; figuratively a defence: - force, fort (-ress), rock, strength (-en), (X most) strong (hold)."]},{"k":"H4582","v":["מָעוֹךְ","Mâʻôwk","maw-oke'","From H4600; oppressed; Maok, a Philistine: - Maoch."]},{"k":"H4583","v":["מָעוֹן","mâʻôwn","maw-ohn'","From the same as H5772; an abode, of God (the Tabernacle or the Temple), men (their home) or animals (their lair); hence a retreat (asylum): - den, dwelling ([-]) place), habitation."]},{"k":"H4584","v":["מָעוֹן","Mâʻôwn","maw-ohn'","The same as H4583; a residence; Maon, the name of an Israelite and of a place in Palestine: - Maon, Maonites. Compare H1010, H4586."]},{"k":"H4585","v":["מְעוֹנָה","mᵉʻôwnâh","meh-o-naw'","Feminine of H4583, and meaning the same: - den, habitation, (dwelling) place, refuge."]},{"k":"H4586","v":["מְעוּנִי","Mᵉʻûwnîy","meh-oo-nee'","Probably patrial from H4584; a Meunite, or inhabitant of Maon (only in plural): - Mehunim (-s), Meunim."]},{"k":"H4587","v":["מְעוֹנֹתַי","Mᵉʻôwnôthay","meh-o-no-thah'-ee","Plural of H4585; habitative; Meonothai, an Israelite: - Meonothai."]},{"k":"H4588","v":["מָעוּף","mâʻûwph","maw-off'","From H5774 in the sense of covering with shade (compare H4155); darkness: - dimness."]},{"k":"H4589","v":["מָעוֹר","mâʻôwr","maw-ore'","From H5783; nakedness, that is, (in plural) the pudenda: - nakedness."]},{"k":"H4590","v":["מַעַזְיָה","Maʻazyâh","mah-az-yaw'","Probably from H5756 (in the sense of protection) and H3050; rescue of Jah; Maazjah, the name of two Israelites: - Maaziah."]},{"k":"H4591","v":["מָעַט","mâʻaṭ","maw-at'","A primitive root; properly to pare off, that is, lessen; intransitively to be (or causatively to make) small or few (or figuratively ineffective): - suffer to decrease, diminish, (be, X borrow a, give, make) few (in number, -ness), gather least (little), be (seem) little, (X give the) less, be minished, bring to nothing."]},{"k":"H4592","v":["מְעַט","mᵉʻaṭ","meh-at'","From H4591; a little or few (often adverbial or comparative): - almost, (some, very) few (-er, -est), lightly, little (while), (very) small (matter, thing), some, soon, X very."]},{"k":"H4593","v":["מָעֹט","mâʻôṭ","maw-ote'","Passive adjective of H4591; thinned (as to the edge), that is, sharp: - wrapped up."]},{"k":"H4594","v":["מַעֲטֶה","maʻăṭeh","mah-at-eh'","From H5844; a vestment: - garment."]},{"k":"H4595","v":["מַעֲטָפָה","maʻăṭâphâh","mah-at-aw-faw'","From H5848; a cloak: - mantle."]},{"k":"H4596","v":["מְעִי","mᵉʻîy","meh-ee'","From H5753; a pile of rubbish (as contorted), that is, a ruin (compare H5856): - heap."]},{"k":"H4597","v":["מָעַי","Mâʻay","maw-ah'-ee","Probably from H4578; sympathetic; Maai, an Israelite: - Maai."]},{"k":"H4598","v":["מְעִיל","mᵉʻîyl","meh-eel'","From H4603 in the sense of covering; a robe (that is, upper and outer garment): - cloke, coat, mantle, robe."]},{"k":"H4599","v":["מַעְיָן","maʻyân","mah-yawn'","From H5869 (as a denominative in the sense of a spring); a fountain (also collectively), figuratively a source (of satisfaction): - fountain, spring, well."]},{"k":"H4600","v":["מָעַךְ","mâʻak","maw-ak'","A primitive root; to press, that is, to pierce, emasculate, handle: - bruised, stuck, be pressed."]},{"k":"H4601","v":["מַעֲכָה","Maʻăkâh","mah-ak-aw'","From H4600; depression; Maakah (or Maakath), the name of a place in Syria, also of a Mesopotamian, of three Israelites, and of four Israelitesses and one Syrian woman: - Maachah, Maachathites. See also H1038."]},{"k":"H4602","v":["מַעֲכָתִי","Maʻăkâthîy","mah-ak-aw-thee'","Patrial from H4601; a Maakathite, or inhabitant of Maakah: - Maachathite."]},{"k":"H4603","v":["מָעַל","mâʻal","maw-al'","A primitive root; properly to cover up; used only figuratively to act covertly, that is, treacherously: - transgress, (commit, do a) tresspass (-ing)."]},{"k":"H4604","v":["מַעַל","maʻal","mah'-al","From H4608; treachery, that is, sin: - falsehood, grievously, sore, transgression, trespass, X very."]},{"k":"H4605","v":["מַעַל","maʻal","mah'al","From H5927; properly the upper part, used only adverbially with prefix upward, above, overhead, from the top, etc.: - above, exceeding (-ly), forward, on (X very) high, over, up (-on, -ward), very."]},{"k":"H4606","v":["מֵעָל","mêʻâl","may-awl'","(Chaldee); from H5954; (only in plural as singular) the setting (of the sun): - going down."]},{"k":"H4607","v":["מֹעַל","môʻal","mo'-al","From H5927; a raising (of the hands): - lifting up."]},{"k":"H4608","v":["מַעֲלֶה","maʻăleh","mah-al-eh'","From H5927; an elevation, that is, (concretely) acclivity or platform; abstractly (the relation or state) a rise or (figuratively) priority: - ascent, before, chiefest, cliff, that goeth up, going up, hill, mounting up, stairs."]},{"k":"H4609","v":["מַעֲלָה","maʻălâh","mah-al-aw'","Feminine of H4608; elevation, that is, the act (literally a journey to a higher place, figuratively a thought arising), or (concretely) the condition (literally a step or grade mark, figuratively a superiority of station); specifically a climactic progression (in certain Psalms): - things that come up, (high) degree, deal, go up, stair, step, story."]},{"k":"H4610","v":["מַעֲלֵה עַקְרַבִּים","Maʻălêh ʻAqrabbîym","mah-al-ay' ak-rabbeem'","From H4608 and (the plural of) H6137; Steep of Scorpions, a place in the Desert: - Maaleh-accrabim, the ascent (going up) of Akrabbim."]},{"k":"H4611","v":["מַעֲלָל","maʻălâl","mah-al-awl'","From H5953; an act (good or bad): - doing, endeavour, invention, work."]},{"k":"H4612","v":["מַעֲמָד","maʻămâd","mah-am-awd'","From H5975; (figuratively) a position: - attendance, office, place, state."]},{"k":"H4613","v":["מׇעֳמָד","moʻŏmâd","moh-om-awd'","From H5975; literally a foothold: - standing."]},{"k":"H4614","v":["מַעֲמָסָה","maʻămâçâh","mah-am-aw-saw'","From H6006; burdensomeness: - burdensome."]},{"k":"H4615","v":["מַעֲמָק","maʻămâq","mah-am-awk'","From H6009; a deep: - deep, depth."]},{"k":"H4616","v":["מַעַן","maʻan","mah'-an","From H6030; properly heed, that is, purpose; used only adverbially, on account of (as a motive or an aim), teleologically in order that: - because of, to the end (intent) that, for (to, . . . ‘s sake), + lest, that, to."]},{"k":"H4617","v":["מַעֲנֶה","maʻăneh","mah-an-eh'","From H6030; a reply (favorable or contradictory): - answer, X himself."]},{"k":"H4618","v":["מַעֲנָה","maʻănâh","mah-an-aw'","From H6031, in the sense of depression or tilling; a furrow: -  + acre, furrow."]},{"k":"H4619","v":["מַעַץ","Maʻats","mah'-ats","From H6095; closure; Maats, an Israelite: - Maaz."]},{"k":"H4620","v":["מַעֲצֵבָה","maʻătsêbâh","mah-ats-ay-baw'","From H6087; anguish: - sorrow."]},{"k":"H4621","v":["מַעֲצָד","maʻătsâd","mah-ats-awd'","From an unused root meaning to hew; an axe: - ax, tongs."]},{"k":"H4622","v":["מַעְצוֹר","maʻtsôwr","mah-tsore'","From H6113; objectively a hindrance: - restraint."]},{"k":"H4623","v":["מַעְצָר","maʻtsâr","mah-tsawr'","From H6113; subjectively control: - rule."]},{"k":"H4624","v":["מַעֲקֶה","maʻăqeh","mah-ak-eh'","From an unused root meaning to repress; a parapet: - battlement."]},{"k":"H4625","v":["מַעֲקָשׁ","maʻăqâsh","mah-ak-awsh'","From H6140; a crook (in a road): - crooked thing."]},{"k":"H4626","v":["מַעַר","maʻar","mah'-ar","From H6168; a nude place, that is, (literally) the pudenda, or (figuratively) a vacant space: - nakedness, proportion."]},{"k":"H4627","v":["מַעֲרָב","maʻărâb","mah-ar-awb'","From H6148, in the sense of trading; traffic; by implication mercantile goods: - market, merchandise."]},{"k":"H4628","v":["מַעֲרָב","maʻărâb","mah-ar-awb'","From H6150, in the sense of shading; the west (as the region of the evening sun): - west."]},{"k":"H4629","v":["מַעֲרֶה","maʻăreh","mah-ar-eh'","From H6168; a nude place, that is, a common: - meadows."]},{"k":"H4630","v":["מַעֲרָה","maʻărâh","mah-ar-aw'","Feminine of H4629; an open spot: - army [from the margin]."]},{"k":"H4631","v":["מְעָרָה","mᵉʻârâh","meh-aw-raw'","From H5783; a cavern (as dark): - cave, den, hole."]},{"k":"H4632","v":["מְעָרָה","Mᵉʻârâh","meh-aw-raw'","The same as H4631; cave; Mearah, a place in Palestine: - Mearah."]},{"k":"H4633","v":["מַעֲרָךְ","maʻărâk","mah-ar-awk'","From H6168; an arrangement, that is, (figuratively) mental disposition: - preparation."]},{"k":"H4634","v":["מַעֲרָכָה","maʻărâkâh","mah-ar-aw-kaw'","Feminine of H4633; an arrangement; concretely a pile; specifically a military array: - army, fight, be set in order, ordered place, rank, row."]},{"k":"H4635","v":["מַעֲרֶכֶת","maʻăreketh","mah-ar-eh'-keth","From H6186; an arrangement, that is, (concretely) a pile (of loaves): - row, shewbread."]},{"k":"H4636","v":["מַעֲרֹם","maʻărôm","mah-ar-ome'","From H6191, in the sense of stripping; bare: - naked."]},{"k":"H4637","v":["מַעֲרָצָה","maʻărâtsâh","mah-ar-aw-tsaw'","From H6206; violence: - terror."]},{"k":"H4638","v":["מַעֲרָת","Maʻărâth","mah-ar-awth'","A form of H4630; waste; Maarath, a place in Palestine: - Maarath."]},{"k":"H4639","v":["מַעֲשֶׂה","maʻăseh","mah-as-eh'","From H6213; an action (good or bad); generally a transaction; abstractly activity; by implication a product (specifically a poem) or (generally) property: - act, art, + bakemeat, business, deed, do (-ing), labour, thing made, ware of making, occupation, thing offered, operation, possession, X well, ([handy-, needle-, net-]) work, (-ing, -manship), wrought."]},{"k":"H4640","v":["מַעֲשַׂי","Maʻăsay","mah-as-ah'ee","From H6213; operative; Maasai, an Israelite: - Maasiai."]},{"k":"H4641","v":["מַעֲשֵׂיָה","Maʻăsêyâh","mah-as-ay-yaw'","From H4639 and H3050; work of Jah; Maasejah, the name of sixteen Israelites: - Masseiah."]},{"k":"H4642","v":["מַעֲשַׁקָּה","maʻăshaqqâh","mah-ash-ak-kaw'","From H6231; oppression: - oppression, X oppressor."]},{"k":"H4643","v":["מַעֲשֵׂר","maʻăsêr","mah-as-ayr'","From H6240; a tenth; especially a tithe: - tenth (part), tithe (-ing)."]},{"k":"H4644","v":["מֹף","Môph","mofe","Of Egyptian origin; Moph, the capital of Lower Egypt: - Memphis. Compare H5297."]},{"k":"H4645","v":["מִפְגָּע","miphgâʻ","mif-gaw'","From H6293; an object of attack: - mark."]},{"k":"H4646","v":["מַפָּח","mappâch","map-pawkh'","From H5301; a breathing out (of life), that is, expiring: - giving up."]},{"k":"H4647","v":["מַפֻּחַ","mappuach","map-poo'-akh","From H5301; the bellows (that is, blower) of a forge: - bellows."]},{"k":"H4648","v":["מְפִיבֹשֶׁת","Mᵉphîybôsheth","mef-ee-bo'-sheth","Probably from H6284 and H1322; dispeller of shame (that is, of Baal); Mephibosheth, the name of two Israelites: - Mephibosheth."]},{"k":"H4649","v":["מֻפִּים","Muppîym","moop-peem'","A plural apparently from H5130; wavings; Muppim, an Israelite: - Muppim. Compare H8206."]},{"k":"H4650","v":["מֵפִיץ","mêphîyts","may-feets'","From H6327; a breaker, that is, mallet: - maul."]},{"k":"H4651","v":["מַפָּל","mappâl","map-pawl'","From H5307; a falling off, that is, chaff; also something pendulous, that is, a flap: - flake, refuse."]},{"k":"H4652","v":["מִפְלָאָה","miphlâʼâh","mif-law-aw'","From H6381; a miracle: - wondrous work."]},{"k":"H4653","v":["מִפְלַגָּה","miphlaggâh","mif-lag-gaw'","From H6385; a classification: - division."]},{"k":"H4654","v":["מַפָּלָה","mappâlâh","map-paw-law'","From H5307; something fallen, that is, a ruin: - ruin (-ous)."]},{"k":"H4655","v":["מִפְלָט","miphlâṭ","mif-lawt'","From H6403; an escape: - escape."]},{"k":"H4656","v":["מִפְלֶצֶת","miphletseth","mif-leh'-tseth","From H6426; a terror, that is, an idol: - idol."]},{"k":"H4657","v":["מִפְלָשׂ","miphlâs","mif-lawce'","From an unused root meaning to balance; a poising: - balancing."]},{"k":"H4658","v":["מַפֶּלֶת","mappeleth","map-peh'-leth","From H5307; fall, that is, decadence; concretely a ruin; specifically a carcase: - carcase, fall, ruin."]},{"k":"H4659","v":["מִפְעָל","miphʻâl","mif-awl'","From H6466; a performance: - work."]},{"k":"H4660","v":["מַפָּץ","mappâts","map-pawts'","From H5310; a smiting to pieces: - slaughter."]},{"k":"H4661","v":["מַפֵּץ","mappêts","map-pates'","From H5310; a smiter, that is, a war club: - battle ax."]},{"k":"H4662","v":["מִפְקָד","miphqâd","mif-kawd'","From H6485; an appointment, that is, mandate; concretely a designated spot; specifically a census: - appointed place, commandment, number."]},{"k":"H4663","v":["מִפְקָד","Miphqâd","mif-kawd'","The same as H4662; assignment; Miphkad, the name of a gate in Jerusalem: - Miphkad."]},{"k":"H4664","v":["מִפְרָץ","miphrâts","mif-rawts'","From H6555; a break (in the shore), that is, a haven: - breach."]},{"k":"H4665","v":["מִפְרֶקֶת","miphreqeth","mif-reh'-keth","From H6561; properly a fracture, that is, joint (vertebra) of the neck: - neck."]},{"k":"H4666","v":["מִפְרָשׂ","miphrâs","mif-rawce'","From H6566; an expansion: - that which . . . spreadest forth, spreading."]},{"k":"H4667","v":["מִפְשָׂעָה","miphsâʻâh","mif-saw-aw'","From H6585; a stride, that is, (by euphemism) the crotch: - buttocks."]},{"k":"H4668","v":["מַפְתֵּחַ","maphtêach","maf-tay'-akh","From H6605; an opener, that is, a key: - key."]},{"k":"H4669","v":["מִפְתָּח","miphtâch","mif-tawkh'","From H6605; an aperture, that is, (figuratively) utterance: - opening."]},{"k":"H4670","v":["מִפְתָּן","miphtân","mif-tawn'","From the same as H6620; a stretcher, that is, a sill: - threshold."]},{"k":"H4671","v":["מֹץ","môts","motes","From H4160; chaff (as pressed out, that is, winnowed or (rather) threshed loose): - chaff."]},{"k":"H4672","v":["מָצָא","mâtsâʼ","maw-tsaw'","A primitive root; properly to come forth to, that is, appear or exist; transitively to attain, that is, find or acquire; figuratively to occur, meet or be present: -  + be able, befall, being, catch, X certainly (cause to) come (on, to, to hand), deliver, be enough (cause to) find (-ing, occasion, out), get (hold upon), X have (here), be here, hit, be left, light (up-) on, meet (with), X occasion serve, (be) present, ready, speed, suffice, take hold on."]},{"k":"H4673","v":["מַצָּב","matstsâb","mats-tsawb'","From H5324; a fixed spot; figuratively an office, a military post: - garrison, station, place where . . . stood."]},{"k":"H4674","v":["מֻצָּב","mutstsâb","moots-tsawb'","From H5324; a station, that is, military post: - mount."]},{"k":"H4675","v":["מַצָּבָה","matstsâbâh","mats-tsaw-baw'","Feminine of H4673; a military guard: - army, garrison."]},{"k":"H4676","v":["מַצֵּבָה","matstsêbâh","mats-tsay-baw'","Feminine (causative) participle of H5324; something stationed, that is, a column or (memorial stone); by analogy an idol: - garrison, (standing) image, pillar."]},{"k":"H4677","v":["מְצֹבָיָה","Mᵉtsôbâyâh","mets-o-baw-yaw'","Apparently from H4672 and H3050; found of Jah; Metsobajah, a place in Palestine: - Mesobaite."]},{"k":"H4678","v":["מַצֶּבֶת","matstsebeth","mats-tseh'-beth","From H5324; something stationary, that is, a monumental stone; also the stock of a tree: - pillar, substance."]},{"k":"H4679","v":["מְצַד","mᵉtsad","mets-ad'","From H6679; a fastness (as a covert of ambush): - castle, fort, (strong) hold, munition."]},{"k":"H4680","v":["מָצָה","mâtsâh","maw-tsaw'","A primitive root; to suck out; by implication to drain, to squeeze out: - suck, wring (out)."]},{"k":"H4681","v":["מֹצָה","Môtsâh","mo-tsaw'","Active participle feminine of H4680; drained; Motsah, a place in Palestine: - Mozah."]},{"k":"H4682","v":["מַצָּה","matstsâh","mats-tsaw'","From H4711 in the sense of greedily devouring for sweetness; properly sweetness; concretely sweet (that is, not soured or bittered with yeast); specifically an unfermented cake or loaf, or (elliptically) the festival of Passover (because no leaven was then used): - unleavened (bread, cake), without leaven."]},{"k":"H4683","v":["מַצָּה","matstsâh","mats-tsaw'","From H5327; a quarrel: - contention, debate, strife."]},{"k":"H4684","v":["מַצְהָלָה","matshâlâh","mats-haw-law'","From H6670; a whinnying (through impatience for battle or lust): - neighing."]},{"k":"H4685","v":["מָצוֹד","mâtsôwd","maw-tsode'","From H6679; a net (for capturing animals or fishes); also (by interchange for H4679) a fastness or (besieging) tower: - bulwark, hold, munition, net, snare."]},{"k":"H4686","v":["מָצוּד","mâtsûwd","maw-tsood'","From H4685; a net, or (abstractly) capture; also a fastness: - castle, defence, fort (-ress), (strong) hold, be hunted, net, snare, strong place."]},{"k":"H4687","v":["מִצְוָה","mitsvâh","mits-vaw'","From H6680; a command, whether human or divine (collectively the Law): - (which was) commanded (-ment), law, ordinance, precept."]},{"k":"H4688","v":["מְצוֹלָה","mᵉtsôwlâh","mets-o-law'","From the same as H6683; a deep place (of water or mud): - bottom, deep, depth."]},{"k":"H4689","v":["מָצוֹק","mâtsôwq","maw-tsoke'","From H6693; a narrow place, that is, (abstractly and figuratively) confinement or disability: - anguish, distress, straitness."]},{"k":"H4690","v":["מָצוּק","mâtsûwq","maw-tsook'","From H6693; something narrow, that is, a column or hill top: - pillar, situate."]},{"k":"H4691","v":["מְצוּקָה","mᵉtsûwqâh","mets-oo-kaw'","Feminine of H4690; narrowness, that is, (figuratively) trouble: - anguish, distress."]},{"k":"H4692","v":["מָצוֹר","mâtsôwr","maw-tsore'","From H6696; something hemming in, that is, (objectively) a mound (of besiegers), (abstractly) a siege, (figuratively) distress; or (subjectively) a fastness: - besieged, bulwark, defence, fenced, fortress, siege, strong (hold), tower."]},{"k":"H4693","v":["מָצוֹר","mâtsôwr","maw-tsore'","The same as H4692 in the sense of a limit; Egypt (as the border of Palestine): - besieged places, defence, fortified."]},{"k":"H4694","v":["מְצוּרָה","mᵉtsûwrâh","mets-oo-raw'","Feminine of H4692; a hemming in, that is, (objectively) a mound (of siege), or (subjectively) a rampart (of protection), (abstractly) fortification: - fenced (city,) fort, munition, strong hold."]},{"k":"H4695","v":["מַצּוּת","matstsûwth","mats-tsooth'","From H5327; a quarrel: - that contended."]},{"k":"H4696","v":["מֵצַח","mêtsach","may'-tsakh","From an unused root meaning to be clear, that is, conspicuous; the forehead (as open and prominent): - brow, forehead, + impudent."]},{"k":"H4697","v":["מִצְחָה","mitschâh","mits-khaw'","From the same as H4696; a shin piece of armor (as prominent), only plural: - greaves."]},{"k":"H4698","v":["מְצִלָּה","mᵉtsillâh","mets-il-law'","From H6750; a tinkler, that is, a bell: - bell."]},{"k":"H4699","v":["מְצֻלָּה","mᵉtsullâh","mets-ool-law'","From H6751; shade: - bottom."]},{"k":"H4700","v":["מְצֵלֶת","mᵉtsêleth","mets-ay'-leth","From H6750; (only dual) double tinklers, that is, cymbals: - cymbals."]},{"k":"H4701","v":["מִצְנֶפֶת","mitsnepheth","mits-neh'-feth","From H6801; a tiara, that is, official turban (of a king or high priest): - diadem, mitre."]},{"k":"H4702","v":["מַצָּע","matstsâʻ","mats-tsaw'","From H3331; a couch: - bed."]},{"k":"H4703","v":["מִצְעָד","mitsʻâd","mits-awd'","From H6805; a step; figuratively companionship: - going, step."]},{"k":"H4704","v":["מִצְּעִירָה","mitstsᵉʻîyrâh","mits-tseh-ee-raw'","Feminine of H4705; properly littleness; concretely diminutive: - little."]},{"k":"H4705","v":["מִצְעָר","mitsʻâr","mits-awr'","From H6819; petty (in size or number); adverbially a short (time): - little one, (while), small."]},{"k":"H4706","v":["מִצְעָר","Mitsʻâr","mits-awr'","The same as H4705; Mitsar, a peak of Lebanon: - Mizar."]},{"k":"H4707","v":["מִצְפֶּה","mitspeh","mits-peh'","From H6822; an observatory, especially for military purposes: - watch tower."]},{"k":"H4708","v":["מִצְפֶּה","Mitspeh","mits-peh'","The same as H4707; Mitspeh, the name of five places in Palestine: - Mizpeh, watch tower. Compare H4709."]},{"k":"H4709","v":["מִצְפָּה","Mitspâh","mits-paw'","Feminine of H4708; Mitspah, the name of two places in Palestine. (This seems rather to be only an orthographical variation of H4708 when ‘in pause’.): - Mitspah. [This seems rather to be only an orthographical variationof H4708 when “in pause”.]"]},{"k":"H4710","v":["מִצְפֻּן","mitspun","mits-poon'","From H6845; a secret (place or thing, perhaps treasure): - hidden thing."]},{"k":"H4711","v":["מָצַץ","mâtsats","maw-tsats'","A primitive root; to suck: - milk."]},{"k":"H4712","v":["מֵצַר","mêtsar","may-tsar'","From H6896; something tight, that is, (figuratively) trouble: - distress, pain, strait."]},{"k":"H4713","v":["מִצְרִי","Mitsrîy","mits-ree'","From H4714; a Mitsrite, or inhabitant of Mitsrajim: - Egyptian, of Egypt."]},{"k":"H4714","v":["מִצְרַיִם","Mitsrayim","mits-rah'-yim","Dual of H4693; Mitsrajim, that is, Upper and Lower Egypt: - Egypt, Egyptians, Mizraim."]},{"k":"H4715","v":["מִצְרֵף","mitsrêph","mits-rafe'","From H6884; a crucible: - fining pot."]},{"k":"H4716","v":["מַק","maq","mak","From H4743; properly a melting, that is, putridity: - rottenness, stink."]},{"k":"H4717","v":["מַקָּבָה","maqqâbâh","mak-kaw-baw'","From H5344; properly a perforatrix, that is, a hammer (as piercing): - hammer."]},{"k":"H4718","v":["מַקֶּבֶת","maqqebeth","mak-keh'-beth","From H5344; properly a perforator, that is, a hammer (as piercing); also (intransitively) a perforation, that is, a quarry: - hammer, hole."]},{"k":"H4719","v":["מַקֵּדָה","Maqqêdâh","mak-kay-daw'","From the same as H5348 in the denominative sense of herding (compare H5349); fold; Makkedah, a place in Palestine: - Makkedah."]},{"k":"H4720","v":["מִקְדָּשׁ","miqdâsh","mik-dawsh'","From H6942; a consecrated thing or place, especially a palace, sanctuary (whether of Jehovah or of idols) or asylum: - chapel, hallowed part, holy place, sanctuary."]},{"k":"H4721","v":["מַקְהֵל","maqhêl","mak-hale'","From H6950; an assembly: - congregation."]},{"k":"H4722","v":["מַקְהֵלֹת","Maqhêlôth","mak-hay-loth'","Plural of H4721 (feminine); assemblies; Makheloth, a place in the Desert: - Makheloth."]},{"k":"H4723","v":["מִקְוֶה","miqveh","mik-veh'","From H6960; something waited for, that is, confidence (objectively or subjectively); also a collection, that is, (of water) a pond, or (of men and horses) a caravan or drove: - abiding, gathering together, hope, linen yarn, plenty [of water], pool."]},{"k":"H4724","v":["מִקְוָה","miqvâh","mik-vaw'","Feminine of H4723; a collection, that is, (of water) a reservoir: - ditch."]},{"k":"H4725","v":["מָקוֹם","mâqôwm","maw-kome'","From H6965; properly a standing, that is, a spot; but used widely of a locality (generally or specifically); also (figuratively) of a condition (of body or mind): - country, X home, X open, place, room, space, X whither [-soever]."]},{"k":"H4726","v":["מָקוֹר","mâqôwr","maw-kore'","From H6979; properly something dug, that is, a (generally) source (of water, even when naturally flowing; also of tears, blood (by euphemism of the female pudenda); figuratively of happiness, wisdom, progeny): - fountain, issue, spring, well (-spring)."]},{"k":"H4727","v":["מִקָּח","miqqâch","mik-kawkh'","From H3947; reception: - taking."]},{"k":"H4728","v":["מַקָּחָה","maqqâchâh","mak-kaw-khaw'","From H3947; something received, that is, merchandise (purchased): - ware."]},{"k":"H4729","v":["מִקְטָר","miqṭâr","mik-tawr'","From H6999; something to fume (incense) on, that is, a hearth place: - to burn . . . upon."]},{"k":"H4730","v":["מִקְטֶרֶת","miqṭereth","mik-teh'-reth","Feminine of H4729; something to fume (incense) in, that is, a coal pan: - censer."]},{"k":"H4731","v":["מַקֵּל","maqqêl","mak-kale","From an unused root meaning apparently to germinate; a shoot, that is, stick (with leaves on, or for walking, striking, guiding, divining): - rod, ([hand-]) staff."]},{"k":"H4732","v":["מִקְלוֹת","Miqlôwth","mik-lohth'","Plural of (feminine) H4731; rods; Mikloth, a place in the Desert: - Mikloth."]},{"k":"H4733","v":["מִקְלָט","miqlâṭ","mik-lawt'","From H7038 in the sense of taking in; an asylum (as a receptacle): - refuge."]},{"k":"H4734","v":["מִקְלַעַת","miqlaʻath","mik-lah'-ath","From H7049; a sculpture (probably in bass relief): - carved (figure), carving, graving."]},{"k":"H4735","v":["מִקְנֶה","miqneh","mik-neh'","From H7069; something bought, that is, property, but only live stock; abstractly acquisition: - cattle, flock, herd, possession, purchase, substance."]},{"k":"H4736","v":["מִקְנָה","miqnâh","mik-naw'","Feminine of H4735; properly a buying, that is, acquisition; concretely a piece of property (land or living); also the sum paid: - (he that is) bought, possession, piece, purchase."]},{"k":"H4737","v":["מִקְנֵיָהוּ","Miqnêyâhûw","mik-nay-yaw'-hoo","From H4735 and H3050; possession of Jah; Miknejah, an Israelite: - Mikneiah."]},{"k":"H4738","v":["מִקְסָם","miqçâm","mik-sawn'","From H7080; an augury: - divination."]},{"k":"H4739","v":["מָקַץ","Mâqats","maw-kats'","From H7112; end; Makats, a place in Palestine: - Makaz."]},{"k":"H4740","v":["מַקְצוֹעַ","maqtsôwaʻ","mak-tso'-ah","From H7106 in the denominative sense of bending; an angle or recess: - corner, turning."]},{"k":"H4741","v":["מַקְצֻעָה","maqtsuʻâh","mak-tsoo-aw'","From H7106; a scraper, that is, a carving chisel: - plane."]},{"k":"H4742","v":["מְקֻצְעָה","mᵉqutsʻâh","mek-oots-aw'","From H7106 in the denominative sense of bending; an angle: - corner."]},{"k":"H4743","v":["מָקַק","mâqaq","maw-kak'","A primitive root; to melt; figuratively to flow, dwindle, vanish: - consume away, be corrupt, dissolve, pine away."]},{"k":"H4744","v":["מִקְרָא","miqrâʼ","mik-raw'","From H7121; something called out, that is, a public meeting (the act, the persons, or the palce); also a rehearsal: - assembly, calling, convocation, reading."]},{"k":"H4745","v":["מִקְרֶה","miqreh","mik-reh'","From H7136; something met with, that is, an accident or fortune: - something befallen, befalleth, chance, event, hap (-peneth)."]},{"k":"H4746","v":["מְקָרֶה","mᵉqâreh","mek-aw-reh'","From H7136; properly something meeting, that is, a frame (of timbers): - building."]},{"k":"H4747","v":["מְקֵרָה","mᵉqêrâh","mek-ay-raw'","From the same as H7119; a cooling off: -    X summer."]},{"k":"H4748","v":["מִקְשֶׁה","miqsheh","mik-sheh'","From H7185 in the sense of knotting up round and hard; something turned (rounded), that is, a curl (of tresses): -    X well [set] hair."]},{"k":"H4749","v":["מִקְשָׁה","miqshâh","mik-shaw'","Feminine of H4748; rounded work, that is, moulded by hammering (repousse): - beaten (out of one piece, work), upright, whole piece."]},{"k":"H4750","v":["מִקְשָׁה","miqshâh","mik-shaw'","Denominative from H7180; literally a cucumbered field, that is, a cucumber patch: - garden of cucumbers."]},{"k":"H4751","v":["מַר","mar","mar","From H4843; bitter (literally or figuratively); also (as noun) bitterness, or (adverbially) bitterly: -  + angry, bitter (-ly, -ness), chafed, discontented, X great, heavy."]},{"k":"H4752","v":["מַר","mar","mar","From H4843 in its original sense of distillation; a drop: - drop."]},{"k":"H4753","v":["מֹר","môr","more","From H4843; myrrh (as distilling in drops, and also as bitter): - myrrh."]},{"k":"H4754","v":["מָרָא","mârâʼ","maw-raw'","A primitive root; to rebel; hence (through the idea of maltreating) to whip, that is, lash (self with wings, as the ostrich in running): - be filthy, lift up self."]},{"k":"H4755","v":["מָרָא","Mârâʼ","maw-raw'","For H4751 feminine; bitter; Mara, a symbolical name of Naomi: - Mara."]},{"k":"H4756","v":["מָרֵא","mârêʼ","maw-ray'","(Chaldee); from a root corresponding to H4754 in the sense of domineering; a master: - lord, Lord."]},{"k":"H4757","v":["מְרֹאדַךְ בַּלְאָדָן","Mᵉrôʼdak Balʼâdân","mer-o-dak' bal-awdawn'","Of foreign derivation; Merodak-Baladan, a Babylonian king: - Merodach-baladan. Compare H4781."]},{"k":"H4758","v":["מַרְאֶה","marʼeh","mar-eh'","From H7200; a view (the act of seeing); also an appearance (the thing seen), whether (real) a shape (especially if handsome, comeliness; often plural the looks), or (mental) a vision: -  X apparently, appearance (-reth), X as soon as beautiful (-ly), countenance, fair, favoured, form, goodly, to look (up) on (to), look [-eth], pattern, to see, seem, sight, visage, vision."]},{"k":"H4759","v":["מַרְאָה","marʼâh","mar-aw'","Feminine of H4758; a vision; also (causatively) a mirror: - looking glass, vision."]},{"k":"H4760","v":["מֻרְאָה","murʼâh","moor-aw'","Apparently feminine passive causative participle of H7200; something conspicuous, that is, the craw of a bird (from its prominence): - crop."]},{"k":"H4761","v":["מַרְאָשָׁה","marʼâshâh","mar-aw-shaw'","Denominative from H7218; properly headship, that is, (plural for collective) dominion: - principality."]},{"k":"H4762","v":["מַרְאֵשָׁה","Marʼêshâh","mar-ay-shaw'","Formed like H4761; summit; Mareshah, the name of two Israelites and of a place in Palestine: - Mareshah."]},{"k":"H4763","v":["מְרַאֲשָׁה","mᵉraʼăshâh","mer-ah-ash-aw'","Formed like H4761; properly a headpiece, that is, (plural for adverb) at (or as) the head rest (or pillow): - bolster, head, pillow. Compare H4772."]},{"k":"H4764","v":["מֵרָב","Mêrâb","may-rawb'","From H7231; increase; Merab, a daughter of Saul: - Merab."]},{"k":"H4765","v":["מַרְבַד","marbad","mar-bad'","From H7234; a coverlet: - covering of tapestry."]},{"k":"H4766","v":["מַרְבֶה","marbeh","mar-beh'","From H7235; properly increasing; as noun, greatness, or (adverbially) greatly: - great, increase."]},{"k":"H4767","v":["מִרְבָּה","mirbâh","meer-baw'","From H7235; abundance, that is, a great quantity: - much."]},{"k":"H4768","v":["מַרְבִּית","marbîyth","mar-beeth'","From H7235; a multitude; also offspring; specifically interest (on capital): - greatest part, greatness, increase, multitude."]},{"k":"H4769","v":["מַרְבֵּץ","marbêts","mar-bates'","From H7257; a reclining place, that is, fold (for flocks): - couching place, place to lie down."]},{"k":"H4770","v":["מַרְבֵּק","marbêq","mar-bake'","From an unused root meaning to tie up; a stall (for cattle): -    X fat (-ted), stall."]},{"k":"H4771","v":["מַרְגּוֹעַ","margôwaʻ","mar-go'-ah","From H7280; a resting place: - rest."]},{"k":"H4772","v":["מַרְגְלָה","margᵉlâh","mar-ghel-aw'","Denominative from H7272; (plural for collective) a foot piece, that is, (adverbially) at the foot, or (directly) the foot itself: - feet. Compare H4763."]},{"k":"H4773","v":["מַרְגֵּמָה","margêmâh","mar-gay-maw'","From H7275; a stone heap: - sling."]},{"k":"H4774","v":["מַרְגֵּעָה","margêʻâh","mar-gay-aw'","From H7280; rest: - refreshing."]},{"k":"H4775","v":["מָרַד","mârad","maw-rad'","A primitive root; to rebel: - rebel (-lious)."]},{"k":"H4776","v":["מְרַד","mᵉrad","mer-ad'","(Chaldee); from a root corresponding to H4775; rebellion: - rebellion."]},{"k":"H4777","v":["מֶרֶד","mered","meh'-red","From H4775; rebellion: - rebellion."]},{"k":"H4778","v":["מֶרֶד","Mered","meh'-red","The same as H4777; Mered, an Israelite: - Mered."]},{"k":"H4779","v":["מָרָד","mârâd","maw-rawd'","(Chaldee); from the same as H4776; rebellious: - rebellious."]},{"k":"H4780","v":["מַרְדּוּת","mardûwth","mar-dooth'","From H4775; rebelliousness: -  X rebellious."]},{"k":"H4781","v":["מְרֹדָךְ","Mᵉrôdâk","mer-o-dawk'","Of foreign derivation; Merodak, a Babylonian idol: - Merodach. Compare H4757."]},{"k":"H4782","v":["מׇרְדְּכַי","Mordᵉkay","mor-dek-ah'-ee","Of foreign derivation; Mordecai, an Israelite: - Mordecai."]},{"k":"H4783","v":["מֻרְדָּף","murdâph","moor-dawf'","From H7291; persecuted: - persecuted."]},{"k":"H4784","v":["מָרָה","mârâh","maw-raw'","A primitive root; to be (causatively make) bitter (or unpleasant); (figuratively) to rebel (or resist; causatively to provoke): - bitter, change, be disobedient, disobey, grievously, provocation, provoke (-ing), (be) rebel (against, -lious)."]},{"k":"H4785","v":["מָרָה","Mârâh","maw-raw'","The same as H4751 feminine; bitter; Marah, a place in the Desert: - Marah."]},{"k":"H4786","v":["מֹרָה","môrâh","mo-raw'","From H4843; bitterness, that is, (figuratively) trouble: - grief."]},{"k":"H4787","v":["מׇרָּה","morrâh","mor-raw'","A form of H4786; trouble: - bitterness."]},{"k":"H4788","v":["מָרוּד","mârûwd","maw-rood'","From H7300 in the sense of maltreatment; an outcast; (abstractly) destitution: - cast out, misery."]},{"k":"H4789","v":["מֵרוֹז","Mêrôwz","may-roze'","Of uncertain derivation; Meroz, a place in Palestine: - Meroz."]},{"k":"H4790","v":["מְרוֹחַ","mᵉrôwach","mer-o-akh'","From H4799; bruised, that is, emasculated: - broken."]},{"k":"H4791","v":["מָרוֹם","mârôwm","maw-rome'","From H7311; altitude, that is, concretely (an elevated place), abstractly (elevation), fig (elation), or adverbial (aloft): - (far) above, dignity, haughty, height, (most, on) high (one, place), loftily, upward."]},{"k":"H4792","v":["מֵרוֹם","Mêrôwm","may-rome'","Formed like H4791; height; Merom, a lake in Palestine: - Merom."]},{"k":"H4793","v":["מֵרוֹץ","mêrôwts","may-rotes'","From H7323; a run (the trial of speed): - race."]},{"k":"H4794","v":["מְרוּצָה","mᵉrûwtsâh","mer-oo-tsaw'","Feminine of H4793; a race (the act), whether the manner or the progress: - course, running. Compare H4835."]},{"k":"H4795","v":["מָרוּק","mârûwq","maw-rook'","From H4838; properly rubbed; but used abstractly, a rubbing (with perfumery): - purification."]},{"k":"H4796","v":["מָרוֹת","Mârôwth","maw-rohth'","Plural of H4751 feminine; bitter springs; Maroth, a place in Palestine: - Maroth."]},{"k":"H4797","v":["מִרְזַח","mirzach","meer-zakh'","From an unused root meaning to scream; a cry, that is, (of joy), a revel: - banquet."]},{"k":"H4798","v":["מַרְזֵחַ","marzêach","mar-zay'-akh","Formed like H4797; a cry, that is, (of grief) a lamentation: - mourning."]},{"k":"H4799","v":["מָרַח","mârach","maw-rakh'","A primitive root; properly to soften by rubbing or pressure; hence (medicinally) to apply as an emollient: - lay for a plaister."]},{"k":"H4800","v":["מֶרְחָב","merchâb","mer-khawb'","From H7337; enlargement, either literally (an open space, usually in a good sense), or figuratively (liberty): - breadth, large place (room)."]},{"k":"H4801","v":["מֶרְחָק","merchâq","mer-khawk'","From H7368; remoteness, that is, (concretely) a distant place; often (adverbially) from afar: -    (a, dwell in, very) far (country, off). See also H1023."]},{"k":"H4802","v":["מַרְחֶשֶׁת","marchesheth","mar-kheh'-sheth","From H7370; a stew pan: - fryingpan."]},{"k":"H4803","v":["מָרַט","mâraṭ","maw-rat'","A primitive root; to polish; by implication to make bald (the head), to gall (the shoulder); also, to sharpen: - bright, furbish, (have his) hair (be) fallen off, peeled, pluck off (hair.)"]},{"k":"H4804","v":["מְרַט","mᵉraṭ","mer-at'","(Chaldee); corresponding to H4803; to pull off: - be plucked."]},{"k":"H4805","v":["מְרִי","mᵉrîy","mer-ee'","From H4784; bitterness, that is, (figuratively) rebellion; concretely bitter, or rebellious: - bitter, (most) rebel (-ion, -lious)."]},{"k":"H4806","v":["מְרִיא","mᵉrîyʼ","mer-ee'","From H4754 in the sense of grossness, through the idea of domineering (compare H4756); stall fed; often (as noun) a beeve: - fat (fed) beast (cattle, -ling)."]},{"k":"H4807","v":["מְרִיב בַּעַל","Mᵉrîyb Baʻal","mer-eeb' bah'-al","From H7378 and H1168; quarreller of Baal; Merib-Baal, an epithet of Gideon: - Merib-baal. Compare H4810."]},{"k":"H4808","v":["מְרִיבָה","mᵉrîybâh","mer-ee-baw'","From H7378; quarrel: - provocation, strife."]},{"k":"H4809","v":["מְרִיבָה","Mᵉrîybâh","mer-ee-baw'","The same as H4808; Meribah, the name of two places in the Desert: - Meribah."]},{"k":"H4810","v":["מְרִי בַעַל","Mᵉrîy Baʻal","mer-ee' bah'-al","From H4805 and H1168; rebellion of (that is, against) Baal; Meri-Baal, an epithet of Gideon: - Meri-baal. Compare H4807."]},{"k":"H4811","v":["מְרָיָה","Mᵉrâyâh","mer-aw-yaw'","From H4784; rebellion; Merajah, an Israelite: - Meraiah. Compare H3236."]},{"k":"H4812","v":["מְרָיוֹת","Mᵉrâyôwth","mer-aw-yohth'","Plural of H4811; rebellious; Merajoth, the name of two Israelites: - Meraioth."]},{"k":"H4813","v":["מִרְיָם","Miryâm","meer-yawm'","From H4805; rebelliously; Mirjam, the name of two Israelitesses: - Miriam."]},{"k":"H4814","v":["מְרִירוּת","mᵉrîyrûwth","mer-ee-rooth'","From H4843; bitterness, that is, (figuratively) grief: - bitterness."]},{"k":"H4815","v":["מְרִירִי","mᵉrîyrîy","mer-ee-ree'","From H4843; bitter, that is, poisonous: - bitter."]},{"k":"H4816","v":["מֹרֶךְ","môrek","mo'-rek","Perhaps from H7401; softness, that is, (figuratively) fear: - faintness."]},{"k":"H4817","v":["מֶרְכָּב","merkâb","mer-kawb'","From H7392; a chariot; also a seat (in a vehicle): - chariot, covering, saddle."]},{"k":"H4818","v":["מֶרְכָּבָה","merkâbâh","mer-kaw-baw'","Feminine of H4817; a chariot: - chariot. See also H1024."]},{"k":"H4819","v":["מַרְכֹּלֶת","markôleth","mar-ko'-leth","From H7402; a mart: - merchandise."]},{"k":"H4820","v":["מִרְמָה","mirmâh","meer-maw'","From H7411 in the sense of deceiving; fraud: - craft, deceit (-ful, -fully), false, feigned, guile, subtilly, treachery."]},{"k":"H4821","v":["מִרְמָה","Mirmâh","meer-maw'","The same as H4820; Mirmah, an Israelite: - Mirma."]},{"k":"H4822","v":["מְרֵמוֹת","Mᵉrêmôwth","mer-ay-mohth'","Plural from H7311; heights; Meremoth, the name of two Israelites: - Meremoth."]},{"k":"H4823","v":["מִרְמָס","mirmâç","meer-mawce'","From H7429; abasement (the act or the thing): - tread (down) -ing, (to be) trodden (down) under foot."]},{"k":"H4824","v":["מֵרֹנֹתִי","Mêrônôthîy","may-ro-no-thee'","Patrial from an unused noun; a Meronothite, or inhabitant of some (otherwise unknown) Meronoth: - Meronothite."]},{"k":"H4825","v":["מֶרֶס","Mereç","meh'-res","Of foreign derivation; Meres, a Persian: - Meres."]},{"k":"H4826","v":["מַרְסְנָא","Marçᵉnâʼ","mar-sen-aw'","Of foreign derivation; Marsena, a Persian: - Marsena."]},{"k":"H4827","v":["מֵרַע","mêraʻ","may-rah'","From H7489; used as (abstraction) noun, wickedness: - do mischief."]},{"k":"H4828","v":["מֵרֵעַ","mêrêaʻ","may-ray'-ah","From H7462 in the sense of companionship; a friend: - companion, friend."]},{"k":"H4829","v":["מִרְעֶה","mirʻeh","meer-eh'","From H7462 in the sense of feeding; pasture (the palce or the act); also the haunt of wild animals: - feeding place, pasture."]},{"k":"H4830","v":["מִרְעִית","mirʻîyth","meer-eeth'","From H7462 in the sense of feeding; pasturage; concretely a flock: - flock, pasture."]},{"k":"H4831","v":["מַרְעֲלָה","Marʻălâh","mar-al-aw'","From H7477; perhaps earthquake; Maralah, a place in Palestine: - Maralah."]},{"k":"H4832","v":["מַרְפֵּא","marpêʼ","mar-pay'","From H7495; properly curative, that is, literally (concretely) a medicine, or (abstractly) a cure; figuratively (concretely) deliverance, or (abstractly) placidity: - ([in-]) cure (-able), healing (-lth), remedy, sound, wholesome, yielding."]},{"k":"H4833","v":["מִרְפָּשׂ","mirpâs","meer-paws'","From H7515; muddled water: - that which . . . have fouled."]},{"k":"H4834","v":["מָרַץ","mârats","maw-rats'","A primitive root; properly to press, that is, (figuratively) to be pungent or vehement; to irritate: - embolden, be forcible, grievous, sore."]},{"k":"H4835","v":["מְרֻצָה","mᵉrutsâh","mer-oo-tsaw'","From H7533; oppression: - violence. See also H4794."]},{"k":"H4836","v":["מַרְצֵעַ","martsêaʻ","mar-tsay'-ah","From H7527; an awl: - aul."]},{"k":"H4837","v":["מַרְצֶפֶת","martsepheth","mar-tseh'-feth","From H7528; a pavement: - pavement."]},{"k":"H4838","v":["מָרַק","mâraq","maw-rak'","A primitive root; to polish; by implication to sharpen; also to rinse: - bright, furbish, scour."]},{"k":"H4839","v":["מָרָק","mârâq","maw-rawk'","From H4838; soup (as if a rinsing): - broth. See also H6564."]},{"k":"H4840","v":["מֶרְקָח","merqâch","mer-kawkh'","From H7543; a spicy herb: -    X sweet."]},{"k":"H4841","v":["מֶרְקָחָה","merqâchâh","mer-kaw-khaw'","Feminine of H4840; abstractly a seasoning (with spicery); concretely an unguent kettle (for preparing spiced oil): - pot of ointment, X well."]},{"k":"H4842","v":["מִרְקַחַת","mirqachath","meer-kakh'-ath","From H7543; an aromatic unguent; also an unguent pot: - prepared by the apothecaries’ art, compound, ointment."]},{"k":"H4843","v":["מָרַר","mârar","maw-rar'","A primitive root; properly to trickle (see H4752); but used only as a denominative from H4751; to be (causatively make) bitter (literally or figuratively): - (be, be in, deal, have, make) bitter (-ly, -ness), be moved with choler, (be, have sorely, it) grieved (-eth), provoke, vex."]},{"k":"H4844","v":["מְרֹר","mᵉrôr","mer-ore'","From H4843; a bitter herb: - bitter (-ness)."]},{"k":"H4845","v":["מְרֵרָה","mᵉrêrâh","mer-ay-raw'","From H4843; bile (from its bitterness): - gall."]},{"k":"H4846","v":["מְרֹרָה","mᵉrôrâh","mer-o-raw'","From H4843; properly bitterness; concretely a bitter thing; specifically bile; also venom (of a serpent): - bitter (thing), gall."]},{"k":"H4847","v":["מְרָרִי","Mᵉrârîy","mer-aw-ree'","From H4843; bitter; Merari, an Israelite: - Merari. See also H4848."]},{"k":"H4848","v":["מְרָרִי","Mᵉrârîy","mer-aw-ree'","From H4847; a Merarite (collectively), or descendant of Merari: - Merarites."]},{"k":"H4849","v":["מִרְשַׁעַת","mirshaʻath","meer-shah'-ath","From H7561; a female wicked doer: - wicked woman."]},{"k":"H4850","v":["מְרָתַיִם","Mᵉrâthayim","mer-aw-thah'-yim","Dual of H4751 feminine; double bitterness; Merathajim, an epithet of Babylon: - Merathaim."]},{"k":"H4851","v":["מַשׁ","Mash","mash","Of foreign derivation; Mash, a son of Aram, and the people descendant from him: - Mash."]},{"k":"H4852","v":["מֵשָׁא","Mêshâʼ","may-shaw'","Of foreign derivation; Mesha, a place in Arabia: - Mesha."]},{"k":"H4853","v":["מַשָּׂא","massâʼ","mas-saw'","From H5375; a burden; specifically tribute, or (abstractly) porterage; figuratively an utterance, chiefly a doom, especially singing; mental, desire: - burden, carry away, prophecy, X they set, song, tribute."]},{"k":"H4854","v":["מַשָּׂא","Massâʼ","mas-saw'","The same as H4853; burden; Massa, a son of Ishmael: - Massa."]},{"k":"H4855","v":["מַשָּׁא","mashshâʼ","mash-shaw'","From H5383; a loan; by implication interest on a debt: - exaction, usury."]},{"k":"H4856","v":["מַשֹּׂא","massôʼ","mas-so'","From H5375; partiality (as a lifting up): - respect."]},{"k":"H4857","v":["מַשְׁאָב","mashʼâb","mash-awb'","From H7579; a trough for cattle to drink from: - place of drawing water."]},{"k":"H4858","v":["מַשָּׂאָה","massâʼâh","mas-saw-aw'","From H5375; a conflagration (from the rising of smoke): - burden."]},{"k":"H4859","v":["מַשָּׁאָה","mashshâʼâh","mash-shaw-aw'","Feminine of H4855; a loan: -  X any [-thing], debt."]},{"k":"H4860","v":["מַשָּׁאוֹן","mashshâʼôwn","mash-shaw-ohn'","From H5377; dissimulation: - deceit."]},{"k":"H4861","v":["מִשְׁאָל","Mishʼâl","mish-awl'","From H7592; request; Mishal, a place in Palestine: - Mishal, Misheal. Compare H4913."]},{"k":"H4862","v":["מִשְׁאָלָה","mishʼâlâh","mish-aw-law'","From H7592; a request: - desire, petition."]},{"k":"H4863","v":["מִשְׁאֶרֶת","mishʼereth","mish-eh'-reth","From H7604 in the original sense of swelling; a kneading trough (in which the dough rises): - kneading trough, store."]},{"k":"H4864","v":["מַשְׂאֵת","masʼêth","mas-ayth'","From H5375; properly (abstractly) a raising (as of the hands in prayer), or rising (of flame); figuratively an utterance; concretely a beacon (as raised); a present (as taken), mess, or tribute; figuratively a reproach (as a burden): - burden, collection, sign of fire, (great) flame, gift, lifting up, mess, oblation, reward."]},{"k":"H4865","v":["מִשְׁבְּצָה","mishbᵉtsâh","mish-bets-aw'","From H7660; a brocade; by analogy a (reticulated) setting of a gem: - ouch, wrought."]},{"k":"H4866","v":["מִשְׁבֵּר","mishbêr","mish-bare'","From H7665; the orifice of the womb (from which the foetus breaks forth): - birth, breaking forth."]},{"k":"H4867","v":["מִשְׁבָּר","mishbâr","mish-bawr'","From H7665; a breaker (of the sea): - billow, wave."]},{"k":"H4868","v":["מִשְׁבָּת","mishbâth","mish-bawth'","From H7673; cessation, that is, destruction: - sabbath."]},{"k":"H4869","v":["מִשְׂגָּב","misgâb","mis-gawb'","From H7682; properly a cliff (or other lofty or inaccessible place); abstractly altitude; figuratively a refuge; misgab; a place in Moab: - defence, high fort (tower), refuge. H4869; Misgab, a place in Moab: - Misgab."]},{"k":"H4870","v":["מִשְׁגֶּה","mishgeh","mish-gay'","From H7686; an error: - oversight."]},{"k":"H4871","v":["מָשָׁה","mâshâh","maw-shaw'","A primitive root; to pull out (literally or figuratively): - draw (out)."]},{"k":"H4872","v":["מֹשֶׁה","Môsheh","mo-sheh'","From H4871; drawing out (of the water), that is, rescued; Mosheh, the Israelitish lawgiver: - Moses."]},{"k":"H4873","v":["מֹשֶׁה","Môsheh","mo-sheh'","(Chaldee); corresponding to H4872: - Moses."]},{"k":"H4874","v":["מַשֶּׁה","mashsheh","mash-sheh'","From H5383; a debt: -  + creditor."]},{"k":"H4875","v":["מְשׁוֹאָה","mᵉshôwʼâh","meh-o-aw'","From the same as H7722; (a) ruin, abstractly (the act) or concretely (the wreck): - desolation, waste."]},{"k":"H4876","v":["מַשּׁוּאָה","mashshûwʼâh","mash-shoo-aw'","For H4875; ruin: - desolation, destruction."]},{"k":"H4877","v":["מְשׁוֹבָב","Mᵉshôwbâb","mesh-o-bawb'","From H7725; returned; Meshobab, an Israelite: - Meshobab."]},{"k":"H4878","v":["מְשׁוּבָה","mᵉshûwbâh","mesh-oo-baw'","From H7725; apostasy: - backsliding, turning away."]},{"k":"H4879","v":["מְשׁוּגָה","mᵉshûwgâh","mesh-oo-gaw'","From an unused root meaning to stray; mistake: - error."]},{"k":"H4880","v":["מָשׁוֹט","mâshôwṭ","maw-shote'","From H7751; an oar: - oar."]},{"k":"H4881","v":["מְשׂוּכָה","mᵉsûwkâh","mes-oo-kaw'","From H7753; a hedge: - hedge."]},{"k":"H4882","v":["מְשׁוּסָה","mᵉshûwçâh","mesh-oo-saw'","From an unused root meaning to plunder; spoliation: - spoil."]},{"k":"H4883","v":["מַשּׂוֹר","massôwr","mas-sore'","From an unused root meaning to rasp; a saw: - saw."]},{"k":"H4884","v":["מְשׂוּרָה","mᵉsûwrâh","mes-oo-raw'","From an unused root meaning apparently to divide; a measure (for liquids): - measure."]},{"k":"H4885","v":["מָשׂוֹשׂ","mâsôws","maw-soce'","From H7797; delight, concretely (the cause or object) or abstractly (the feeling): - joy, mirth, rejoice."]},{"k":"H4886","v":["מָשַׁח","mâshach","maw-shakh'","A primitive root; to rub with oil, that is, to anoint; by implication to consecrate; also to paint: - anoint, paint."]},{"k":"H4887","v":["מְשַׁח","mᵉshach","mesh-akh'","(Chaldee); from a root corresponding to H4886; oil: - oil."]},{"k":"H4888","v":["מִשְׁחָה","mishchâh","meesh-khaw'","From H4886; unction (the act); by implication a consecratory gift: - (to be) anointed (-ing), ointment."]},{"k":"H4889","v":["מַשְׁחִית","mashchîyth","mash-kheeth'","From H7843; destructive, that is, (as noun) destruction, literally (specifically a snare) or figuratively (corruption): - corruption, (to) destroy (-ing), destruction, trap, X utterly."]},{"k":"H4890","v":["מִשְׂחַק","mischaq","mis-khawk'","From H7831; a laughing stock: - scorn."]},{"k":"H4891","v":["מִשְׁחָר","mishchâr","mish-khawr'","From H7836 in the sense of day breaking; dawn: - morning."]},{"k":"H4892","v":["מַשְׁחֵת","mashchêth","mash-khayth'","For H4889; destruction: - destroying."]},{"k":"H4893","v":["מִשְׁחָת","mishchâth","mish-khawth'","From H7843; disfigurement: - corruption, marred."]},{"k":"H4894","v":["מִשְׁטוֹחַ","mishṭôwach","mish-to'-akh","From H7849; a spreading place: - (to) spread (forth, -ing, upon)."]},{"k":"H4895","v":["מַשְׂטֵמָה","masṭêmâh","mas-tay-maw'","From the same as H7850; enmity: - hatred."]},{"k":"H4896","v":["מִשְׁטָר","mishṭâr","mish-tawr'","From H7860; jurisdiction: - dominion."]},{"k":"H4897","v":["מֶשִׁי","meshîy","meh'-shee","From H4871; silk (as drawn from the cocoon): - silk."]},{"k":"H4898","v":["מְשֵׁיזַבְאֵל","Mᵉshêyzabʼêl","mesh-ay-zab-ale'","From an equivalent to H7804 and H410; delivered of God; Meshezabel, an Israelite: - Meshezabeel."]},{"k":"H4899","v":["מָשִׁיחַ","mâshîyach","maw-shee'-akh","From H4886; anointed; usually a consecrated person (as a king, priest, or saint); specifically the Messiah: - anointed, Messiah."]},{"k":"H4900","v":["מָשַׁךְ","mâshak","maw-shak'","A primitive root; to draw, used in a great variety of applications (including to sow, to sound, to prolong, to develop, to march, to remove, to delay, to be tall, etc.): - draw (along, out), continue, defer, extend, forbear, X give, handle, make (pro-, sound) long, X sow, scatter, stretch out."]},{"k":"H4901","v":["מֶשֶׁךְ","meshek","meh'shek","From H4900; a sowing; also a possession: - precious, price."]},{"k":"H4902","v":["מֶשֶׁךְ","Meshek","meh'-shek","The same in form as H4901, but probably of foreign derivation; Meshek, a son of Japheth, and the people descendant from him: - Mesech, Meshech."]},{"k":"H4903","v":["מִשְׁכַּב","mishkab","mish-kab'","(Chaldee); corresponding to H4904; a bed: - bed."]},{"k":"H4904","v":["מִשְׁכָּב","mishkâb","mish-kawb'","From H7901; a bed (figuratively a bier); abstractly sleep; by euphemism carnal intercourse: - bed ([-chamber]), couch, lieth (lying) with."]},{"k":"H4905","v":["מַשְׂכִּיל","maskîyl","mas-keel'","From H7919; instructive, that is, a didactic poem: - Maschil."]},{"k":"H4906","v":["מַשְׂכִּית","maskîyth","mas-keeth'","From the same as H7906; a figure (carved on stone, the wall, or any object); figuratively imagination: -  conceit, image (-ry), picture, X wish."]},{"k":"H4907","v":["מִשְׁכַּן","mishkan","mish-kan'","(Chaldee); corresponding to H4908; residence: - habitation."]},{"k":"H4908","v":["מִשְׁכָּן","mishkân","mish-kawn'","From H7931; a residence (including a shepherd’s hut, the lair of animals, figuratively the grave; also the Temple); specifically the Tabernacle (properly its wooden walls): - dwelleth, dwelling (place), habitation, tabernacle, tent."]},{"k":"H4909","v":["מַשְׂכֹּרֶת","maskôreth","mas-koh'-reth","From H7936; wages or a reward: - reward, wages."]},{"k":"H4910","v":["מָשַׁל","mâshal","maw-shal'","A primitive root; to rule: - (have, make to have) dominion, governor, X indeed, reign, (bear, cause to, have) rule (-ing, -r), have power."]},{"k":"H4911","v":["מָשַׁל","mâshal","maw-shal'","Denominative from H4912; to liken, that is, (transitively) to use figurative language (an allegory, adage, song or the like); intransitively to resemble: - be (-come) like, compare, use (as a) proverb, speak (in proverbs), utter."]},{"k":"H4912","v":["מָשָׁל","mâshâl","maw-shawl'","Apparently from H4910 in some original sense of superiority in mental action; properly a pithy maxim, usually of a metaphorical nature; hence a simile (as an adage, poem, discourse): - byword, like, parable, proverb."]},{"k":"H4913","v":["מָשָׁל","Mâshâl","maw-shawl'","From H4861; Mashal, a place in Palestine: - Mashal."]},{"k":"H4914","v":["מְשֹׁל","mᵉshôl","mesh-ol'","From H4911; a satire: - byword."]},{"k":"H4915","v":["מֹשֶׁל","môshel","mo'-shel","(1) from H4910; empire; (2) from H4911; a parallel: - dominion, like."]},{"k":"H4916","v":["מִשְׁלוֹחַ","mishlôwach","mish-lo'-akh","From H7971; a sending out, that is, (abstractly) presentation (favorable), or seizure (unfavorable); also (concretely) a place of dismissal, or a business to be discharged: - to lay, to put, sending (forth), to set."]},{"k":"H4917","v":["מִשְׁלַחַת","mishlachath","mish-lakh'-ath","Feminine of H4916; a mission, that is, (abstractly and favorable) release, or (concretely and unfavorable) an army: - discharge, sending."]},{"k":"H4918","v":["מְשֻׁלָּם","Mᵉshullâm","mesh-ool-lawm'","From H7999; allied; Meshullam, the name of seventeen Israelites: - Meshullam."]},{"k":"H4919","v":["מְשִׁלֵּמוֹת","Mᵉshillêmôwth","mesh-il-lay-mohth'","Plural from H7999; reconciliations; Meshillemoth, an Israelite: - Meshillemoth, an Isr: - Meshillemoth. Compare H4921."]},{"k":"H4920","v":["מְשֶׁלֶמְיָה","Mᵉshelemyâh","mesh-eh-lem-yaw'","From H7999 and H3050; ally of Jah; Meshelemjah, an Israelite: - Meshelemiah."]},{"k":"H4921","v":["מְשִׁלֵּמִית","Mᵉshillêmîyth","mesh-il-lay-meeth'","From H7999; reconciliation; Meshillemith, an Israelite: - Meshillemith. Compare H4919."]},{"k":"H4922","v":["מְשֻׁלֶּמֶת","Mᵉshullemeth","mesh-ool-leh'-meth'","Feminine of H4918; Meshullemeth, an Israelitess: - Meshullemeth."]},{"k":"H4923","v":["מְשַׁמָּה","mᵉshammâh","mesh-am-maw'","From H8074; a waste or amazement: - astonishment, desolate."]},{"k":"H4924","v":["מַשְׁמָן","mashmân","mash-mawn'","From H8080; fat, that is, (literally and abstractly) fatness; but usually (figuratively and concretely) a rich dish, a fertile field, a robust man: - fat (one, -ness, -test, -test place)."]},{"k":"H4925","v":["מִשְׁמַנָּה","Mishmannâh","mish-man-naw'","From H8080; fatness; Mashmannah, an Israelite: - Mishmannah."]},{"k":"H4926","v":["מִשְׁמָע","mishmâʻ","mish-maw'","From H8085; a report: - hearing."]},{"k":"H4927","v":["מִשְׁמָע","Mishmâʻ","mish-maw'","The same as H4926; Mishma, the name of a son of Ishmael, and of an Israelite: - Mishma."]},{"k":"H4928","v":["מִשְׁמַעַת","mishmaʻath","mish-mah'-ath","Feminine of H4926; audience, that is, the royal court; also obedience, that is, (concretely) a subject: - bidding, guard, obey."]},{"k":"H4929","v":["מִשְׁמָר","mishmâr","mish-mawr'","From H8104; a guard (the man, the post, or the prison); figuratively a deposit; also (as observed) a usage (abstractly), or an example (concretely): - diligence, guard, office, prison, ward, watch."]},{"k":"H4930","v":["מַשְׂמְרָה","masmᵉrâh","mas-mer-aw'","For H4548 feminine; a peg: - nail."]},{"k":"H4931","v":["מִשְׁמֶרֶת","mishmereth","mish-mer'-reth","Feminine of H4929; watch, that is, the act (custody) or (concretely) the sentry, the post; objectively preservation, or (concretely) safe; figuratively observance, that is, (abstractly) duty, or (objectively) a usage or party: - charge, keep, to be kept, office, ordinance, safeguard, ward, watch."]},{"k":"H4932","v":["מִשְׁנֶה","mishneh","mish-neh'","From H8138; properly a repetition, that is, a duplicate (copy of a document), or a double (in amount); by implication a second (in order, rank, age, quality or location): - college, copy, double, fatlings, next, second (order), twice as much."]},{"k":"H4933","v":["מְשִׁסָּה","mᵉshiççâh","mesh-is-saw'","From H8155; plunder: - booty, spoil."]},{"k":"H4934","v":["מִשְׁעוֹל","mishʻôwl","mish-ole'","From the same as H8168; a hollow, that is, a narrow passage: - path."]},{"k":"H4935","v":["מִשְׁעִי","mishʻîy","mish-ee'","Probably from H8159; inspection: - to supple."]},{"k":"H4936","v":["מִשְׁעָם","Mishʻâm","mish-awm'","Apparently from H8159; inspection; Misham, an Israelite: - Misham."]},{"k":"H4937","v":["מִשְׁעֵן","mishʻên","mish-ane'","From H8172; a support (concretely), that is, (figuratively) a protector or sustenance: - stay."]},{"k":"H4938","v":["מִשְׁעֵנָה","mishʻênâh","mish-ay-naw'","Feminine of H4937; support (abstractly), that is, (figuratively) sustenance or (concretely) a walking stick: - staff."]},{"k":"H4939","v":["מִשְׂפָּח","mispâch","mis-pawkh'","From H5596; slaughter: - oppression."]},{"k":"H4940","v":["מִשְׁפָּחָה","mishpâchâh","mish-paw-khaw'","From H8192 (compare H8198); a family, that is, circle of relatives; figuratively a class (of persons), a species (of animals) or sort (of things); by extension a tribe or people: - family, kind (-red)."]},{"k":"H4941","v":["מִשְׁפָּט","mishpâṭ","mish-pawt'","From H8199; properly a verdict (favorable or unfavorable) pronounced judicially, especially a sentence or formal decree (human or (particularly) divine law, individual or collectively), including the act, the place, the suit, the crime, and the penalty; abstractly justice, including a particular right, or privilege (statutory or customary), or even a style: -  + adversary, ceremony, charge, X crime, custom, desert, determination, discretion, disposing, due, fashion, form, to be judged, judgment, just (-ice, -ly), (manner of) law (-ful), manner, measure, (due) order, ordinance, right, sentence, usest, X worthy, + wrong."]},{"k":"H4942","v":["מִשְׁפָּת","mishpâth","mish-pawth'","From H8192; a stall for cattle (only dual): - burden, sheepfold."]},{"k":"H4943","v":["מֶשֶׁק","mesheq","meh'-shek","From an unused root meaning to hold; possession: -  + steward."]},{"k":"H4944","v":["מַשָּׁק","mashshâq","mash-shawk'","From H8264; a traversing, that is, rapid motion: - running to and fro."]},{"k":"H4945","v":["מַשְׁקֶה","mashqeh","mash-keh'","From H8248; properly causing to drink, that is, a butler; by implication (intransitively) drink (itself); figuratively a well watered region: - butler (-ship), cupbearer, drink (-ing), fat pasture, watered."]},{"k":"H4946","v":["מִשְׁקוֹל","mishqôwl","mish-kole'","From H8254; weight: - weight."]},{"k":"H4947","v":["מַשְׁקוֹף","mashqôwph","mash-kofe'","From H8259 in its original sense of overhanging; a lintel: - lintel, upper door post."]},{"k":"H4948","v":["מִשְׁקָל","mishqâl","mish-kawl'","From H8254; weight (numerically estimated); hence, weighing (the act): - (full) weight."]},{"k":"H4949","v":["מִשְׁקֶלֶת","mishqeleth","mish-keh'-leth","Feminine of H4948 or H4947; a weight, that is, a plummet (with line attached): - plummet."]},{"k":"H4950","v":["מִשְׁקָע","mishqâʻ","mish-kaw'","From H8257; a settling place (of water), that is, a pond: - deep."]},{"k":"H4951","v":["מִשְׂרָה","misrâh","mis-raw'","From H8280; empire: - government."]},{"k":"H4952","v":["מִשְׁרָה","mishrâh","mish-raw'","From H8281 in the sense of loosening; maceration, that is, steeped juice: - liquor."]},{"k":"H4953","v":["מַשְׁרוֹקִי","mashrôwqîy","mash-ro-kee'","(Chaldee); from a root corresponding to H8319; a (musical) pipe (from its whistling sound): - flute."]},{"k":"H4954","v":["מִשְׁרָעִי","Mishrâʻîy","mish-raw-ee'","Patrial from an unused noun from an unused root; probably meaning to stretch out; extension; a Mishraite, or inhabitant (collectively) of Mishra: - Mishraites."]},{"k":"H4955","v":["מִשְׂרָפָה","misrâphâh","mis-raw-faw'","From H8313; combustion, that is, cremation (of a corpse), or calcination (of lime): - burning."]},{"k":"H4956","v":["מִשְׂרְפוֹת מַיִם","Misrᵉphôwth mayim","mis-ref-ohth' mah'-yim","From the plural of H4955 and H4325; burnings of water; Misrephoth-Majim, a place in Palestine: - Misrephoth-mayim."]},{"k":"H4957","v":["מַשְׂרֵקָה","Masrêqâh","mas-ray-kaw'","A form for H7796 used denominatively; vineyard; Masrekah, a place in Idumaea: - Masrekah."]},{"k":"H4958","v":["מַשְׂרֵת","masrêth","mas-rayth'","Apparently from an unused root meaning to perforate, that is, hollow out; a pan: - pan."]},{"k":"H4959","v":["מָשַׁשׁ","mâshash","maw-shash'","A primitive root; to feel of; by implication to grope: - feel, grope, search."]},{"k":"H4960","v":["מִשְׁתֶּה","mishteh","mish-teh'","From H8354; drink; by implication drinking (the act); also (by implication), a banquet or (generally) feast: - banquet, drank, drink, feast ([-ed], -ing)."]},{"k":"H4961","v":["מִשְׁתֶּה","mishteh","mish-teh'","(Chaldee); corresponding to H4960; a banquet: - banquet."]},{"k":"H4962","v":["מַת","math","math","From the same as H4970; properly an adult (as of full length); by implication a man (only in the plural): -    + few, X friends, men, persons, X small."]},{"k":"H4963","v":["מַתְבֵּן","mathbên","math-bane'","Denominative from H8401; straw in the heap: - straw."]},{"k":"H4964","v":["מֶתֶג","metheg","meh-theg","From an unused root meaning to curb; a bit: - bit, bridle."]},{"k":"H4965","v":["מֶתֶג הָאַמָּה","Metheg hâ-ʼAmmâh","meh'-theg haw-am-maw'","From H4964 and H520 with the article interposed; bit of the metropolis; Metheg-ha-Ammah, an epithet of Gath: - Metheg-ammah."]},{"k":"H4966","v":["מָתוֹק","mâthôwq","maw-thoke'","From H4985; sweet: - sweet (-er, -ness)."]},{"k":"H4967","v":["מְתוּשָׁאֵל","Mᵉthûwshâʼêl","meth-oo-shaw-ale'","From H4962 and H410, with the relative interposed; man who (is) of God; Methushael, an antediluvian patriarch: - Methusael."]},{"k":"H4968","v":["מְתוּשֶׁלַח","Mᵉthûwshelach","meth-oo-sheh'-lakh","From H4962 and H7973; man of a dart; Methushelach, an antediluvian patriarch: - Methuselah."]},{"k":"H4969","v":["מָתַח","mâthach","maw-thakh'","A primitive root; to stretch out: - spread out."]},{"k":"H4970","v":["מָתַי","mâthay","maw-thah'ee","From an unused root meaning to extend; properly extent (of time); but used only adverbially (especially with other particles prefixed), when (either relative or interrogitive): - long, when."]},{"k":"H4971","v":["מַתְכֹנֶת","mathkôneth","math-ko'-neth","From H8505 in the transferred sense of measuring; proportion (in size, number or ingredients): - composition, measure, state, tale."]},{"k":"H4972","v":["מַתְּלָאָה","mattᵉlâʼâh","mat-tel-aw-aw'","From H4100 and H8518; what a trouble!: - what a weariness."]},{"k":"H4973","v":["מְתַלְּעָה","mᵉthallᵉʻâh","meth-al-leh-aw'","Contracted from H3216; properly a biter, that is, a tooth: - cheek (jaw) tooth, jaw."]},{"k":"H4974","v":["מְתֹם","mᵉthôm","meth-ohm'","From H8552; wholesomeness; also (adverbially) completely. (men is by reading H4962.): - men [by reading H4962], soundness."]},{"k":"H4975","v":["מֹתֶן","môthen","mo'-then","From an unused root meaning to be slender; properly the waist or small of the back; only in plural the loins: -  + greyhound, loins, side."]},{"k":"H4976","v":["מַתָּן","mattân","mat-tawn'","From H5414; a present: - gift, to give, reward."]},{"k":"H4977","v":["מַתָּן","Mattân","mat-tawn'","The same as H4976; Mattan, the name of a priest of Baal, and of an Israelite: - Mattan."]},{"k":"H4978","v":["מַתְּנָא","mattᵉnâʼ","mat-ten-aw'","(Chaldee); corresponding to H4979: - gift."]},{"k":"H4979","v":["מַתָּנָה","mattânâh","mat-taw-naw'","Feminine of H4976; a present; specifically (in a good sense) a sacrificial offering, (in a bad sense) a bribe: - gift."]},{"k":"H4980","v":["מַתָּנָה","Mattânâh","mat-taw-naw'","The same as H4979; Mattanah, a place in the Desert: - Mattanah."]},{"k":"H4981","v":["מִתְנִי","Mithnîy","mith-nee'","Probably patrial from an unused noun meaning slenderness; a Mithnite, or inhabitant of Methen: - Mithnite."]},{"k":"H4982","v":["מַתְּנַי","Mattᵉnay","mat-ten-ah'ee","From H4976; liberal; Mattenai, the name of three Israelites: - Mattenai."]},{"k":"H4983","v":["מַתַּנְיָה","Mattanyâh","mat-tan-yaw'","From H4976 and H3050; gift of Jah; Mattanjah, the name of ten Israelites: - Mattaniah."]},{"k":"H4984","v":["מִתְנַשֵּׂא","mithnassêʼ","mith-nas-say'","From H5375; (used as abstraction) supreme exaltation: - exalted."]},{"k":"H4985","v":["מָתַק","mâthaq","maw-thak'","A primitive root; to suck, by implication to relish, or (intransitively) be sweet: - be (made, X take) sweet."]},{"k":"H4986","v":["מֶתֶק","metheq","meh'-thek","From H4985; figuratively pleasantness (of discourse): - sweetness."]},{"k":"H4987","v":["מֹתֶק","môtheq","mo'-thek","From H4985; sweetness: - sweetness."]},{"k":"H4988","v":["מָתָק","mâthâq","maw-thawk'","From H4985; a dainty, that is, (generally) food: - feed sweetly."]},{"k":"H4989","v":["מִתְקָה","Mithqâh","mith-kaw'","Feminine of H4987; sweetness; Mithkah, a place in the Desert: - Mithcah."]},{"k":"H4990","v":["מִתְרְדָת","Mithrᵉdâth","mith-red-awth'","Of Persian origin; Mithredath, the name of two Persians: - Mithredath."]},{"k":"H4991","v":["מַתָּת","mattâth","mat-tawth'","Feminine of H4976 abbreviated; a present: - gift, reward."]},{"k":"H4992","v":["מַתַּתָּה","Mattattâh","mat-tat-taw'","For H4993; gift of Jah; Mattattah, an Israelite: - Mattathah."]},{"k":"H4993","v":["מַתִּתְיָה","Mattithyâh","mat-tith-yaw'","From H4991 and H3050; gift of Jah; Mattithjah, the name of four Israelites: - Mattithiah."]},{"k":"H4994","v":["נָא","nâʼ","naw","A primitive particle of incitement and entreaty, which may usually be rendered I pray, now or then; added mostly to verbs (in the imperative or future), or to interjections, occasionally to an adverb or conjugation: - I beseech (pray) thee (you), go to, now, oh."]},{"k":"H4995","v":["נָא","nâʼ","naw","Apparently from H5106 in the sense of harshness from refusal; properly tough, that is, uncooked (flesh): - raw."]},{"k":"H4996","v":["נֹא","Nôʼ","no","Of Egyptian origin; no (that is, Thebes), the capital of Upper Egypt: - No. Compare H528."]},{"k":"H4997","v":["נֹאד","nôʼd","node","From an unused root of uncertain signification; a (skin or leather) bag (for fluids): - bottle."]},{"k":"H4998","v":["נָאָה","nâʼâh","naw-aw'","A primitive root; properly to be at home, that is, (by implication) to be pleasant (or suitable), that is, beautiful: - be beautiful, become, be comely."]},{"k":"H4999","v":["נָאָה","nâʼâh","naw-aw'","From H4998; a home; figuratively a pasture: - habitation, house, pasture, pleasant place."]},{"k":"H5000","v":["נָאוֶה","nâʼveh","naw-veh'","From H4998 or H5116; suitable, or beautiful: - becometh, comely, seemly."]},{"k":"H5001","v":["נָאַם","nâʼam","naw-am'","A primitive root; properly to whisper, that is, (by implication) to utter as an oracle: - say."]},{"k":"H5002","v":["נְאֻם","nᵉʼum","neh-oom'","From H5001; an oracle: - (hath) said, saith."]},{"k":"H5003","v":["נָאַף","nâʼaph","naw-af'","A primitive root; to commit adultery; figuratively to apostatize: - adulterer (-ess), commit (-ing) adultery, woman that breaketh wedlock."]},{"k":"H5004","v":["נִאֻף","niʼuph","nee-oof'","From H5003; adultery: - adultery."]},{"k":"H5005","v":["נַאֲפוּף","naʼăphûwph","nah-af-oof'","From H5003; adultery: - adultery."]},{"k":"H5006","v":["נָאַץ","nâʼats","naw-ats'","A primitive root; to scorn; or (Ecc_12:5) by interchange for H5132, to bloom: - abhor, (give occasion to) blaspheme, contemn, despise, flourish, X great, provoke."]},{"k":"H5007","v":["נְאָצָה","nᵉʼâtsâh","neh-aw-tsaw'","From H5006; scorn: - blasphemy."]},{"k":"H5008","v":["נָאַק","nâʼaq","naw-ak'","A primitive root; to groan: - groan."]},{"k":"H5009","v":["נְאָקָה","nᵉʼâqâh","neh-aw-kaw'","From H5008; a groan: - groaning."]},{"k":"H5010","v":["נָאַר","nâʼar","naw-ar'","A primitive root; to reject: - abhor, make void."]},{"k":"H5011","v":["נֹב","Nôb","nobe","The same as H5108; fruit; Nob, a place in Palestine: - Nob."]},{"k":"H5012","v":["נָבָא","nâbâʼ","naw-baw'","A primitive root; to prophesy, that is, speak (or sing) by inspiration (in prediction or simple discourse): - prophesy (-ing) make self a prophet."]},{"k":"H5013","v":["נְבָא","nᵉbâʼ","neb-aw'","(Chaldee); corresponding to H5012: - prophesy."]},{"k":"H5014","v":["נָבַב","nâbab","naw-bab'","A primitive root; to pierce; to be hollow, or (figuratively) foolish: - hollow, vain."]},{"k":"H5015","v":["נְבוֹ","Nᵉbôw","neb-o'","Probably of foreign derivation; Nebo, the name of a Babylonian deity, also of a mountain in Moab, and of a place in Palestine: - Nebo."]},{"k":"H5016","v":["נְבוּאָה","nᵉbûwʼâh","neb-oo-aw'","From H5012; a prediction (spoken or written): - prophecy."]},{"k":"H5017","v":["נְבוּאָה","nᵉbûwʼâh","neb-oo-aw","(Chaldee); corresponding to H5016; inspired teaching: - prophesying."]},{"k":"H5018","v":["נְבוּזַרְאֲדָן","Nᵉbûwzarʼădân","neb-oo-zar-ad-awn'","Of foreign origin; Nebuzaradan, a Babylonian general: - Nebuzaradan."]},{"k":"H5019","v":["נְבוּכַדְנֶאצַּר","Nᵉbûwkadneʼtstsar","neb-oo-kad-nets-tsar'","Of foreign derivation; Nebukadnetstsar (or retstsar, or retstsor), king of Babylon: - Nebuchadnezzar, Nebuchadrezzar."]},{"k":"H5020","v":["נְבוּכַדְנֶצַּר","Nᵉbûwkadnetstsar","neb-oo-kad-nets-tsar'","(Chaldee); corresponding to H5019: - Nebuchadnezzar."]},{"k":"H5021","v":["נְבוּשַׁזְבָּן","Nᵉbûwshazbân","neb-oo-shaz-bawn'","Of foreign derivation; Nebushazban, Nebuchadnezzar’s chief eunuch: - Nebushazban."]},{"k":"H5022","v":["נָבוֹת","Nâbôwth","naw-both'","Feminine plural from the same as H5011; fruits; Naboth, an Israelite: - Naboth."]},{"k":"H5023","v":["נְבִזְבָּה","nᵉbizbâh","neb-iz-baw'","(Chaldee); of uncertain derivation; a largess: - reward."]},{"k":"H5024","v":["נָבַח","nâbach","naw-bakh'","A primitive root; to bark (as a dog): - bark."]},{"k":"H5025","v":["נֹבַח","Nôbach","no'-bach","From H5024; a bark; Nobach, the name of an Israelite and of a place East of the Jordan: - Nobah."]},{"k":"H5026","v":["נִבְחַז","Nibchaz","nib-khaz'","Of foreign origin; Nibchaz, a deity of the Avites: - Nibhaz."]},{"k":"H5027","v":["נָבַט","nâbaṭ","naw-bat'","A primitive root; to scan, that is, look intently at; by implication to regard with pleasure, favor or care: - (cause to) behold, consider, look (down), regard, have respect, see."]},{"k":"H5028","v":["נְבָט","Nᵉbâṭ","neb-awt'","From H5027; regard; Nebat, the father of Jeroboam (the first): - Nebat."]},{"k":"H5029","v":["נְבִיא","nᵉbîyʼ","neb-ee'","(Chaldee); corresponding to H5030; a prophet: - prophet."]},{"k":"H5030","v":["נָבִיא","nâbîyʼ","naw-bee'","From H5012; a prophet or (generally) inspired man: - prophecy, that prophesy, prophet."]},{"k":"H5031","v":["נְבִיאָה","nᵉbîyʼâh","neb-ee-yaw'","Feminine of H5030; a prophetess or (generally) inspired woman; by implication a poetess; by association a prophet's wife: - prophetess."]},{"k":"H5032","v":["נְבָיוֹת","Nᵉbâyôwth","neb-aw-yoth'","Feminine plural from H5107; fruitfulnesses; Nebajoth, a son of Ishmael, and the country settled by him: - Nebaioth, Nebajoth."]},{"k":"H5033","v":["נֵבֶךְ","nêbek","nay'-bek","From an unused root meaning to burst forth; a fountain: - spring."]},{"k":"H5034","v":["נָבֵל","nâbêl","naw-bale'","A primitive root; to wilt; generally to fall away, fail, faint; figuratively to be foolish or (morally) wicked; causatively to despise, disgrace: - disgrace, dishonour, lightly esteem, fade (away, -ing), fall (down, -ling, off), do foolishly, come to nought, X surely, make vile, wither."]},{"k":"H5035","v":["נֶבֶל","nebel","neh'-bel","From H5034; a skin bag for liquids (from collapsing when empty); hence, a vase (as similar in shape when full); also a lyre (as having a body of like form): - bottle, pitcher, psaltery, vessel, viol."]},{"k":"H5036","v":["נָבָל","nâbâl","naw-bawl'","From H5034; stupid; wicked (especially impious): - fool (-ish, -ish man, -ish woman), vile person."]},{"k":"H5037","v":["נָבָל","Nâbâl","naw-bawl'","The same as H5036; dolt; Nabal, an Israelite: - Nabal."]},{"k":"H5038","v":["נְבֵלָה","nᵉbêlâh","neb-ay-law'","From H5034; a flabby thing, that is, a carcase or carrion (human or bestial, often collective); figuratively an idol: -  (dead) body, (dead) carcase, dead of itself, which died, (beast) that (which) dieth of itself."]},{"k":"H5039","v":["נְבָלָה","nᵉbâlâh","neb-aw-law'","Feminine of H5036; foolishness, that is, (morally) wickedness; concretely a crime; by extension punishment: - folly, vile, villany."]},{"k":"H5040","v":["נַבְלוּת","nablûwth","nab-looth'","From H5036; properly disgrace, that is, the (female) pudenda: - lewdness."]},{"k":"H5041","v":["נְבַלָּט","Nᵉballâṭ","neb-al-lawt'","Apparently from H5036 and H3909; foolish secrecy; Neballat, a place in Palestine: - Neballat."]},{"k":"H5042","v":["נָבַע","nâbaʻ","naw-bah'","A primitive root; to gush forth; figuratively to utter (good or bad words); specifically to emit (a foul odor): - belch out, flowing, pour out, send forth, utter (abundantly)."]},{"k":"H5043","v":["נֶבְרְשָׁא","nebrᵉshâʼ","neb-reh-shaw'","(Chaldee); from an unused root meaning to shine; a light; plural (collectively) a chandelier: - candlestick."]},{"k":"H5044","v":["נִבְשָׁן","Nibshân","nib-shawn'","Of uncertain derivation; Nibshan, a place in Palestine: - Nibshan."]},{"k":"H5045","v":["נֶגֶב","negeb","neh'-gheb","From an unused root meaning to be parched; the south (from its drought); specifically the negeb or southern district of Judah, occasionally, Egypt (as south to Palestine): - south (country, side, -ward)."]},{"k":"H5046","v":["נָגַד","nâgad","naw-gad'","A primitive root; properly to front, that is, stand boldly out opposite; by implication (causatively), to manifest; figuratively to announce (always by word of mouth to one present); specifically to expose, predict, explain, praise: - bewray, X certainly, certify, declare (-ing), denounce, expound, X fully, messenger, plainly, profess, rehearse, report, shew (forth), speak, X surely, tell, utter."]},{"k":"H5047","v":["נְגַד","nᵉgad","neg-ad'","(Chaldee); corresponding to H5046; to flow (through the idea of clearing the way): - issue."]},{"k":"H5048","v":["נֶגֶד","neged","neh'-ghed","From H5046; a front, that is, part opposite; specifically a counterpart, or mate; usually (adverbially, especially with preposition) over against or before: - about, (over) against, X aloof, X far (off), X from, over, presence, X other side, sight, X to view."]},{"k":"H5049","v":["נֶגֶד","neged","neh'-ghed","(Chaldee); corresponding to H5048; opposite: - toward."]},{"k":"H5050","v":["נָגַהּ","nâgahh","naw-gah'","A primitive root; to glitter; causatively to illuminate: - (en-) lighten, (cause to) shine."]},{"k":"H5051","v":["נֹגַהּ","nôgahh","no'-gah","From H5050; brilliancy (literally or figuratively): - bright (-ness), light, (clear) shining."]},{"k":"H5052","v":["נֹגַהּ","Nôgahh","no'-gah","The same as H5051; Nogah, a son of David: - Nogah."]},{"k":"H5053","v":["נֹגַהּ","nôgahh","no'-gah","(Chaldee); corresponding to H5051; dawn: - morning."]},{"k":"H5054","v":["נְגֹהָה","nᵉgôhâh","neg-o-haw'","Feminine of H5051; splendor: - brightness."]},{"k":"H5055","v":["נָגַח","nâgach","naw-gakh'","A primitive root; to but with the horns; figuratively to war against: - gore, push (down, -ing)."]},{"k":"H5056","v":["נַגָּח","naggâch","nag-gawkh'","From H5055; butting, that is, vicious: - used (wont) to push."]},{"k":"H5057","v":["נָגִיד","nâgîyd","naw-gheed'","From H5046; a commander (as occupying the front), civil, military or religious; generally (abstract plural), honorable themes: - captain, chief, excellent thing, (chief) governor, leader, noble, prince, (chief) ruler."]},{"k":"H5058","v":["נְגִינָה","nᵉgîynâh","neg-ee-naw'","From H5059; properly instrumental music; by implication a stringed instrument; by extension a poem set to music; specifically an epigram: - stringed instrument, musick, Neginoth [plural], song."]},{"k":"H5059","v":["נָגַן","nâgan","naw-gan'","A primitive root; prop to thrum, that is, beat a tune with the fingers; especially to play on a stringed instrument; hence (generally) to make music: - player on instruments, sing to the stringed instruments, melody, ministrel, play (-er. -ing)."]},{"k":"H5060","v":["נָגַע","nâgaʻ","naw-gah'","A primitive root; properly to touch, that is, lay the hand upon (for any purpose; euphemistically, to lie with a woman); by implication to reach (figuratively to arrive, acquire); violently, to strike (punish, defeat, destroy, etc.): - beat, (X be able to) bring (down), cast, come (nigh), draw near (nigh), get up, happen, join, near, plague, reach (up), smite, strike, touch."]},{"k":"H5061","v":["נֶגַע","negaʻ","neh'-gah","From H5060; a blow (figuratively infliction); also (by implication) a spot (concretely a leprous person or dress): - plague, sore, stricken, stripe, stroke, wound."]},{"k":"H5062","v":["נָגַף","nâgaph","naw-gaf'","A primitive root; to push, gore, defeat, stub (the toe), inflict (a disease): - beat, dash, hurt, plague, slay, smite (down), strike, stumble, X surely, put to the worse."]},{"k":"H5063","v":["נֶגֶף","negeph","neh'-ghef","From H5062; a trip (of the foot); figuratively an infliction (of disease): - plague, stumbling."]},{"k":"H5064","v":["נָגַר","nâgar","naw-gar'","A primitive root; to flow; figuratively to stretch out; causatively to pour out or down; figuratively to deliver over: - fall, flow away, pour down (out), run, shed, split, trickle down."]},{"k":"H5065","v":["נָגַשׂ","nâgas","naw-gas'","A primitive root; to drive (an animal, a workman, a debtor, an army); by implication to tax, harass, tyrannize: - distress, driver, exact (-or), oppress (-or), X raiser of taxes, taskmaster."]},{"k":"H5066","v":["נָגַשׁ","nâgash","naw-gash'","A primitive root; to be or come (causatively bring) near (for any purpose); euphemistically to lie with a woman; as an enemy, to attack; religiously to worship; causatively to present; figuratively to adduce an argument; by reversal, to stand back: - (make to) approach (nigh), bring (forth, hither, near), (cause to) come (higher, near, nigh), give place, go hard (up), (be, draw, go) near (nigh), offer, overtake, present, put, stand."]},{"k":"H5067","v":["נֵד","nêd","nade","From H5110 in the sense of piling up; a mound, that is, wave: - heap."]},{"k":"H5068","v":["נָדַב","nâdab","naw-dab'","A primitive root; to impel; hence to volunteer (as a soldier), to present spontaneously: - offer freely, be (give, make, offer self) willing (-ly)."]},{"k":"H5069","v":["נְדַב","nᵉdab","ned-ab'","(Chaldee); corresponding to H5068; be (or give) liberal (liberally): - (be minded of . . . own) freewill (offering), offer freely (willingly)."]},{"k":"H5070","v":["נָדָב","Nâdâb","naw-dawb'","From H5068; liberal; Nadab, the name of four Israelites: - Nadab."]},{"k":"H5071","v":["נְדָבָה","nᵉdâbâh","ned-aw-baw'","From H5068; properly (abstractly) spontaneity, or (adjectively) spontaneous; also (concretely) a spontaneous or (by inference, in plural) abundant gift: - free (-will) offering, freely, plentiful, voluntary (-ily, offering), willing (-ly, offering)."]},{"k":"H5072","v":["נְדַבְיָה","Nᵉdabyâh","ned-ab-yaw'","From H5068 and H3050; largess of Jah; Nedabjah, an Israelite: - Nedabiah."]},{"k":"H5073","v":["נִדְבָּךְ","nidbâk","nid-bawk'","(Chaldee); from a rot meaning to stick; a layer (of building materials): - row."]},{"k":"H5074","v":["נָדַד","nâdad","naw-dad'","A primitive root; properly to wave to and fro (rarely to flap up and down); figuratively to rove, flee, or (causatively) to drive away: - chase (away), X could not, depart, flee (X apace, away), (re-) move, thrust away, wander (abroad, -er, -ing)."]},{"k":"H5075","v":["נְדַד","nᵉdad","ned-ad'","(Chaldee); corresponding to H5074; to depart: - go from."]},{"k":"H5076","v":["נָדֻד","nâdud","naw-dood'","Passive participle of H5074; properly tossed; abstractly a rolling (on the bed): - tossing to and fro."]},{"k":"H5077","v":["נָדָה","nâdâh","naw-daw'","A primitive root; properly to toss; figuratively to exclude, that is, banish, postpone, prohibit: - cast out, drive, put far away."]},{"k":"H5078","v":["נֵדֶה","nêdeh","nay'-deh","From H5077 in the sense of freely flinging money; a bounty (for prostitution): - gifts."]},{"k":"H5079","v":["נִדָּה","niddâh","nid-daw'","From H5074; properly rejection; by implication impurity, especially personal (menstruation) or moral (idolatry, incest): -    X far, filthiness, X flowers, menstruous (woman), put apart, X removed (woman), separation, set apart, unclean (-ness, thing, with filthiness)."]},{"k":"H5080","v":["נָדַח","nâdach","naw-dakh'","A primitive root; to push off; used in a great variety of applications, literally and figuratively (to expel, mislead, strike, inflict, etc.): - banish, bring, cast down (out), chase, compel, draw away, drive (away, out, quite), fetch a stroke, force, go away, outcast, thrust away (out), withdraw."]},{"k":"H5081","v":["נָדִיב","nâdîyb","naw-deeb'","From H5068; properly voluntary, that is, generous; hence, magnanimous; as noun, a grandee (sometimes a tyrant): - free, liberal (things), noble, prince, willing ([hearted])."]},{"k":"H5082","v":["נְדִיבָה","nᵉdîybâh","ned-ee-baw'","Feminine of H5081; properly nobility, that is, reputation: - soul."]},{"k":"H5083","v":["נָדָן","nâdân","naw-dawn'","Probably from an unused root meaning to give; a present (for prostitution): - gift."]},{"k":"H5084","v":["נָדָן","nâdân","naw-dawn'","Of uncertain derivation; a sheath (of a sword): - sheath."]},{"k":"H5085","v":["נִדְנֶה","nidneh","nid-neh'","(Chaldee); from the same as H5084; a sheath; figuratively the body (as the receptacle of the soul): - body."]},{"k":"H5086","v":["נָדַף","nâdaph","naw-daf'","A primitive root; to shove asunder, that is, disperse: - drive (away, to and fro), thrust down, shaken, tossed to and fro."]},{"k":"H5087","v":["נָדַר","nâdar","naw-dar'","A primitive root; to promise (positively, to do or give something to God): - (make a) vow."]},{"k":"H5088","v":["נֶדֶר","neder","neh'-der","From H5087; a promise (to God); also (concretely) a thing promised: - vow ([-ed])."]},{"k":"H5089","v":["נֹהַּ","nôahh","no'-ah","From an unused root meaning to lament; lamentation: - wailing."]},{"k":"H5090","v":["נָהַג","nâhag","naw-hag'","A primitive root; to drive forth (a person, an animal or chariot), that is, lead, carry away; reflexively to proceed (that is, impel or guide oneself); also (from the panting induced by effort), to sigh: - acquaint, bring (away), carry away, drive (away), lead (away, forth), (be) guide, lead (away, forth)."]},{"k":"H5091","v":["נָהָה","nâhâh","naw-haw'","A primitive root; to groan, that is, bewail; hence (through the idea of crying aloud) to assemble (as if on proclamation): - lament, wail."]},{"k":"H5092","v":["נְהִי","nᵉhîy","neh-hee'","From H5091; an elegy: - lamentation, wailing."]},{"k":"H5093","v":["נִהְיָה","nihyâh","nih-yaw'","Feminine of H5092; lamentation: - doleful."]},{"k":"H5094","v":["נְהִיר","nᵉhîyr","neh-heere'","(Chaldee); from the same as H5105; illumination, that is, (figuratively) wisdom: - light."]},{"k":"H5095","v":["נָהַל","nâhal","naw-hal'","A primitive root; properly to run with a sparkle, that is, flow; hence (transitively) to conduct, and (by inference) to protect, sustain: - carry, feed, guide, lead (gently, on)."]},{"k":"H5096","v":["נַהֲלָל","Nahălâl","nah-hal-awl'","The same as H5097; Nahalal or Nahalol, a place in Palestine: - Nahalal, Nahallal, Nahalol."]},{"k":"H5097","v":["נַהֲלֹל","nahălôl","nah-hal-ole'","From H5095; pasture: - bush."]},{"k":"H5098","v":["נָהַם","nâham","naw-ham'","A primitive root; to growl: - mourn, roar (-ing)."]},{"k":"H5099","v":["נַהַם","naham","nah'-ham","From H5098; a snarl: - roaring."]},{"k":"H5100","v":["נְהָמָה","nᵉhâmâh","neh-haw-maw'","Feminine of H5099; snarling: - disquietness, roaring."]},{"k":"H5101","v":["נָהַק","nâhaq","naw-hak'","A primitive root; to bray (as an ass), scream (from hunger): - bray."]},{"k":"H5102","v":["נָהַר","nâhar","naw-har'","A primitive root; to sparkle, that is, (figuratively) be cheerful; hence (from the sheen of a running stream) to flow, that is, (figuratively) assemble: - flow (together), be lightened."]},{"k":"H5103","v":["נְהַר","nᵉhar","neh-har'","(Chaldee); from a root corresponding to H5102; a river, especially the Euphrates: - river, stream."]},{"k":"H5104","v":["נָהָר","nâhâr","naw-hawr'","From H5102; a stream (including the sea; especially the Nile, Euphrates, etc.); figuratively, prosperity: - flood, river."]},{"k":"H5105","v":["נְהָרָה","nᵉhârâh","neh-haw-raw'","From H5102 in its original sense; daylight: - light."]},{"k":"H5106","v":["נוּא","nûwʼ","noo","A primitive root; to refuse, forbid, dissuade, or neutralize: - break, disallow, discourage, make of none effect."]},{"k":"H5107","v":["נוּב","nûwb","noob","A primitive root; to germinate, that is, (figuratively) to (causatively make) flourish; also (of words), to utter: - bring forth (fruit), make cheerful, increase."]},{"k":"H5108","v":["נוֹב","nôwb","nobe","From H5107; produce, literally or figuratively: - fruit."]},{"k":"H5109","v":["נוֹבַי","Nôwbay","no-bah'ee","From H5108; fruitful; Nobai, an Israelite: - Nebai [from the margin]."]},{"k":"H5110","v":["נוּד","nûwd","nood","A primitive root; to nod, that is, waver; figuratively to wander, flee, disappear; also (from shaking the head in sympathy), to console, deplore, or (from tossing the head in scorn) taunt: - bemoan, flee, get, mourn, make to move, take pity, remove, shake, skip for joy, be sorry, vagabond, way, wandering."]},{"k":"H5111","v":["נוּד","nûwd","nood","(Chaldee); corresponding to H5116; to flee: - get away."]},{"k":"H5112","v":["נוֹד","nôwd","node","From H5110; exile: - wandering."]},{"k":"H5113","v":["נוֹד","Nôwd","node","The same as H5112; vagrancy; Nod, the land of Cain: - Nod."]},{"k":"H5114","v":["נוֹדָב","Nôwdâb","no-dawb'","From H5068; noble; Nodab, an Arab tribe: - Nodab."]},{"k":"H5115","v":["נָוָה","nâvâh","naw-vaw'","A primitive root; to rest (as at home); causatively (through the implied idea of beauty (compare H5116)), to celebrate (with praises): - keep at home, prepare an habitation."]},{"k":"H5116","v":["נָוֶה","nâveh","naw-veh'","From H5115; (adjective) at home; hence (by implication of satisfaction) lovely; also (noun) a home, of God (temple), men (residence), flocks (pasture), or wild animals (den): - comely, dwelling (place), fold, habitation, pleasant place, sheepcote, stable, tarried."]},{"k":"H5117","v":["נוּחַ","nûwach","noo'-akh","A primitive root; to rest, that is, settle down; used in a great variety of applications, literally and figuratively, intransitively, transitively and causatively (to dwell, stay, let fall, place, let alone, withdraw, give comfort, etc.): - cease, be confederate, lay, let down, (be) quiet, remain, (cause to, be at, give, have, make to) rest, set down. Compare H3241."]},{"k":"H5118","v":["נוּחַ","nûwach","noo'-akh","From H5117; quiet: - rest (-ed, -ing place)."]},{"k":"H5119","v":["נוֹחָה","Nôwchâh","no-chaw'","Feminine of H5118; quietude; Nochah, an Israelite: - Nohah."]},{"k":"H5120","v":["נוּט","nûwṭ","noot","To quake: - be moved."]},{"k":"H5121","v":["נָוִית","Nâvîyth","naw-veeth'","From H5115; residence; Navith, a place in Palestine: - Naioth [from the margin]."]},{"k":"H5122","v":["נְוָלוּ","nᵉvâlûw","nev-aw-loo'","(Chaldee); from an unused root probably meaning to be foul; a sink: - dunghill."]},{"k":"H5123","v":["נוּם","nûwm","noom","A primitive root; to slumber (from drowsiness): - sleep, slumber."]},{"k":"H5124","v":["נוּמָה","nûwmâh","noo-maw'","From H5123; sleepiness: - drowsiness."]},{"k":"H5125","v":["נוּן","nûwn","noon","A primitive root; to resprout, that is, propagate by shoots; figuratively, to be perpetual: - be continued."]},{"k":"H5126","v":["נוּן","Nûwn","noon","From H5125; perpetuity; Nun or Non, the father of Joshua: - Non, Nun."]},{"k":"H5127","v":["נוּס","nûwç","noos","A primitive root; to flit, that is, vanish away (subside, escape; causatively chase, impel, deliver): -    X abate, away, be displayed, (make to) flee (away, -ing), put to flight, X hide, lift up a standard."]},{"k":"H5128","v":["נוּעַ","nûwaʻ","noo'-ah","A primitive root; to waver, in a great variety of applications, literally and figuratively (as subjoined): - continually, fugitive, X make to [go] up and down, be gone away, (be) move (-able, -d), be promoted, reel, remove, scatter, set, shake, sift, stagger, to and fro, be vagabond, wag, (make) wander (up and down)."]},{"k":"H5129","v":["נוֹעַדְיָה","Nôwʻadyâh","no-ad-yaw'","From H3259 and H3050; convened of Jah; Noadjah, the name of an Israelite, and a false prophetess: - Noadiah."]},{"k":"H5130","v":["נוּף","nûwph","noof","A primitive root; to quiver (that is, vibrate up and down, or rock to and fro); used in a great variety of applications (including sprinkling, beckoning, rubbing, bastinadoing, sawing, waving, etc.): - lift up, move, offer, perfume, send, shake, sift, strike, wave."]},{"k":"H5131","v":["נוֹף","nôwph","nofe","From H5130; elevation: - situation. Compare H5297."]},{"k":"H5132","v":["נוּץ","nûwts","noots","A primitive root; properly to flash; hence, to blossom (from the brilliancy of color); also, to fly away (from the quickness of motion): - flee away, bud (forth)."]},{"k":"H5133","v":["נוֹצָה","nôwtsâh","no-tsaw'","Feminine active participle of H5327 in the sense of flying; a pinion (or wing feather); often (collectively) plumage: - feather (-s), ostrich."]},{"k":"H5134","v":["נוּק","nûwq","nook","A primitive root; to suckle: - nurse."]},{"k":"H5135","v":["נוּר","nûwr","noor","(Chaldee); from an unused root (corresponding to that of H5216) meaning to shine; fire: - fiery, fire."]},{"k":"H5136","v":["נוּשׁ","nûwsh","noosh","A primitive root; to be sick, that is, (figuratively) distressed: - be full of heaviness."]},{"k":"H5137","v":["נָזָה","nâzâh","naw-zaw'","A primitive root; to spirt, that is, besprinkle (especially in expiation): - sprinkle."]},{"k":"H5138","v":["נָזִיד","nâzîyd","naw-zeed'","From H2102; something boiled, that is, soup: - pottage."]},{"k":"H5139","v":["נָזִיר","nâzîyr","naw-zeer'","From H5144; separate, that is, consecrated (as prince, a Nazirite); hence (figuratively from the latter) an unpruned vine (like an unshorn Nazirite). (The translation, Nazarite, is by a false alliteration with Nazareth.): - Nazarite [by a false alliteration with Nazareth], separate (-d), vine undressed."]},{"k":"H5140","v":["נָזַל","nâzal","naw-zal'","A primitive root; to drip, or shed by trickling: - distil, drop, flood, (cause to) flow (-ing), gush out, melt, pour (down), running water, stream."]},{"k":"H5141","v":["נֶזֶם","nezem","neh'-zem","From an unused root of uncertain meaning; a nose ring: - earring, jewel."]},{"k":"H5142","v":["נְזַק","nᵉzaq","nez-ak'","(Chaldee); corresponding to the root of H5143; to suffer (causatively inflict) loss: - have (en-) damage, hurt (-ful)."]},{"k":"H5143","v":["נֵזֶק","nêzeq","nay'zek","From an unused root meaning to injure; loss: - damage."]},{"k":"H5144","v":["נָזַר","nâzar","naw-zar'","A primitive root; to hold aloof, that is, (intransitively) abstain (from food and drink, from impurity, and even from divine worship (that is, apostatize)); specifically to set apart (to sacred purposes), that is, devote: - consecrate, separate (-ing, self)."]},{"k":"H5145","v":["נֶזֶר","nezer","neh'-zer","From H5144; properly something set apart, that is, (abstractly) dedication (of a priest or Nazirite); hence (concretely) unshorn locks; also (by implication) a chaplet (especially of royalty): - consecration, crown, hair, separation."]},{"k":"H5146","v":["נֹחַ","Nôach","no'-akh","The same as H5118; rest; Noach, the patriarch of the flood: - Noah."]},{"k":"H5147","v":["נַחְבִּי","Nachbîy","nakh-bee'","From H2247; occult; Nachbi, an Israelite: - Nakbi."]},{"k":"H5148","v":["נָחָה","nâchâh","naw-khaw'","A primitive root; to guide; by implication to transport (into exile, or as colonists): - bestow, bring, govern, guide, lead (forth), put, straiten."]},{"k":"H5149","v":["נְחוּם","Nᵉchûwm","neh-khoom'","From H5162; comforted; Nechum, an Israelite: - Nehum."]},{"k":"H5150","v":["נִחוּם","nichûwm","nee-khoom'","From H5162; properly consoled; abstractly solace: - comfort (-able), repenting."]},{"k":"H5151","v":["נַחוּם","Nachûwm","nakh-oom'","From H5162; comfortable; Nachum, an Israelitish prophet: - Nahum."]},{"k":"H5152","v":["נָחוֹר","Nâchôwr","naw-khore'","From the same as H5170; snorer; Nachor, the name of the grandfather and a brother of Abraham: - Nahor."]},{"k":"H5153","v":["נָחוּשׁ","nâchûwsh","naw-khoosh'","Apparently passive participle of H5172 (perhaps in the sense of ringing, that is, bell metal; or from the red color of the throat of a serpent (H5175, as denominative) when hissing); coppery, that is, (figuratively) hard: - of brass."]},{"k":"H5154","v":["נְחוּשָׁה","nᵉchûwshâh","nekh-oo-shaw'","Feminine of H5153; copper: - brass, steel. Compare H5176."]},{"k":"H5155","v":["נְחִילָה","nᵉchîylâh","nekh-ee-law'","Probably denominative from H2485; a flute: - [plural] Nehiloth."]},{"k":"H5156","v":["נְחִיר","nᵉchîyr","nekh-eer'","From the same as H5170; a nostril: - [dual] nostrils."]},{"k":"H5157","v":["נָחַל","nâchal","naw-khal'","A primitive root; to inherit (as a (figurative) mode of descent), or (generally) to occupy; causatively to bequeath, or (generally) distribute, instate: - divide, have ([inheritance]), take as an heritage, (cause to, give to, make to) inherit, (distribute for, divide [for, for an, by], give for, have, leave for, take [for]) inheritance, (have in, cause to be made to) possess (-ion)."]},{"k":"H5158","v":["נַחַל","nachal","nakh'-al","From H5157 in its original sense; a stream, especially a winter torrent; (by implication) a (narrow) valley (in which a brook runs); also a shaft (of a mine): - brook, flood, river, stream, valley."]},{"k":"H5159","v":["נַחֲלָה","nachălâh","nakh-al-aw'","From H5157 (in its usual sense); properly something inherited, that is, (abstractly) occupancy, or (concretely) an heirloom; generally an estate, patrimony or portion: - heritage, to inherit, inheritance, possession. Compare H5158."]},{"k":"H5160","v":["נַחֲלִיאֵל","Nachălîyʼêl","nakh-al-ee-ale'","From H5158 and H410; valley of God; Nachaliel, a place in the Desert: - Nahaliel."]},{"k":"H5161","v":["נֶחֱלָמִי","Nechĕlâmîy","nekh-el-aw-mee'","Apparently a patronymic from an unused name (apparently passive participle of H2492); dreamed; a Nechelamite, or descendant of Nechlam: - Nehelamite."]},{"k":"H5162","v":["נָחַם","nâcham","naw-kham'","A primitive root; properly to sigh, that is, breathe strongly; by implication to be sorry, that is, (in a favorable sense) to pity, console or (reflexively) rue; or (unfavorably) to avenge (oneself): - comfort (self), ease [one’s self], repent (-er, -ing, self)."]},{"k":"H5163","v":["נַחַם","Nacham","nakh'-am","From H5162; consolation; Nacham, an Israelite: - Naham."]},{"k":"H5164","v":["נֹחַם","nôcham","no'-kham","From H5162; ruefulness, that is, desistance: - repentance."]},{"k":"H5165","v":["נֶחָמָה","nechâmâh","nekh-aw-maw'","From H5162; consolation: - comfort."]},{"k":"H5166","v":["נְחֶמְיָה","Nᵉchemyâh","nekh-em-yaw'","From H5162 and H3050; consolation of Jah; Nechemjah, the name of three Israelites: - Nehemiah."]},{"k":"H5167","v":["נַחֲמָנִי","Nachămânîy","nakh-am-aw-nee'","From H5162; consolatory; Nachamani, an Israelite: - Nahamani."]},{"k":"H5168","v":["נַחְנוּ","nachnûw","nakh-noo'","For H587; we: - we."]},{"k":"H5169","v":["נָחַץ","nâchats","naw-khats'","A primitive root; to be urgent: - require haste."]},{"k":"H5170","v":["נַחַר","nachar","nakh'-ar","From an unused root meaning to snort or snore; a snorting: - nostrils, snorting."]},{"k":"H5171","v":["נַחֲרַי","Nachăray","nakh-ar-ah'-ee","From the same as H5170; snorer; Nacharai or Nachrai, an Israelite: - Naharai, Nahari."]},{"k":"H5172","v":["נָחַשׁ","nâchash","naw-khash'","A primitive root; properly to hiss, that is, whisper a (magic) spell; generally to prognosticate: -  X certainly, divine, enchanter, (use) X enchantment, learn by experience, X indeed, diligently observe."]},{"k":"H5173","v":["נַחַשׁ","nachash","nakh'-ash","From H5172; an incantation or augury: - enchantment."]},{"k":"H5174","v":["נְחָשׁ","nᵉchâsh","nekh-awsh'","(Chaldee); corresponding to H5154; copper: - brass."]},{"k":"H5175","v":["נָחָשׁ","nâchâsh","naw-khawsh'","From H5172; a snake (from its hiss): - serpent."]},{"k":"H5176","v":["נָחָשׁ","Nâchâsh","naw-khawsh'","The same as H5175; Nachash, the name of two persons apparently non Israelites: - Nahash."]},{"k":"H5177","v":["נַחְשׁוֹן","Nachshôwn","nakh-shone'","From H5172; enchanter; Nachshon, an Israelite: - Naashon, Nahshon."]},{"k":"H5178","v":["נְחֹשֶׁת","nᵉchôsheth","nekh-o'-sheth","For H5154; copper; hence, something made of that metal, that is, coin, a fetter; figuratively base (as compared with gold or silver): - brasen, brass, chain, copper, fetter (of brass), filthiness, steel."]},{"k":"H5179","v":["נְחֻשְׁתָּא","Nᵉchushtâʼ","nekh-oosh-taw'","From H5178; copper; Nechushta, an Israelitess: - Nehushta."]},{"k":"H5180","v":["נְחֻשְׁתָּן","Nᵉchushtân","nekh-oosh-tawn'","From H5178; something made of copper, that is, the copper serpent of the Desert: - Nehushtan."]},{"k":"H5181","v":["נָחַת","nâchath","naw-khath'","A primitive root; to sink, that is, descend; causatively, to press or lead down: - be broken, (cause to) come down, enter, go down, press sore, settle, stick fast."]},{"k":"H5182","v":["נְחַת","nᵉchath","nekh-ath'","(Chaldee); corresponding to H5181; to descend; causatively, to bring away, deposit, depose: - carry, come down, depose, lay up, place."]},{"k":"H5183","v":["נַחַת","Nachath","nakh'-ath","From H5182; a descent, that is, imposition, unfavorable (punishment) or favorable (food); also (intransitively; perhaps from H5117), restfulness: - lighting down, quiet (-ness), to rest, be set on."]},{"k":"H5184","v":["נַחַת","Nachath","nakh'-ath","The same as H5183; quiet; Nachath, the name of an Edomite and of two Israelites: - Nahath."]},{"k":"H5185","v":["נָחֵת","nâchêth","naw-khayth'","From H5181; descending: - come down."]},{"k":"H5186","v":["נָטָה","nâṭâh","naw-taw'","A primitive root; to stretch or spread out; by implication to bend away (including moral deflection); used in a great variety of applications: -    + afternoon, apply, bow (down, -ing), carry aside, decline, deliver, extend, go down, be gone, incline, intend, lay, let down, offer, outstretched, overthrown, pervert, pitch, prolong, put away, shew, spread (out), stretch (forth, out), take (aside), turn (aside, away), wrest, cause to yield."]},{"k":"H5187","v":["נְטִיל","nᵉṭîyl","net-eel'","From H5190; laden: - that bear."]},{"k":"H5188","v":["נְטִיפָה","nᵉṭîyphâh","net-ee-faw'","From H5197; a pendant for the ears (especially of pearls): - chain, collar."]},{"k":"H5189","v":["נְטִישָׁה","nᵉṭîyshâh","net-ee-shaw'","From H5203; a tendril (as an offshoot): - battlement, branch, plant."]},{"k":"H5190","v":["נָטַל","nâṭal","naw-tal'","A primitive root; to lift; by implication to impose: - bear, offer, take up."]},{"k":"H5191","v":["נְטַל","nᵉṭal","net-al'","(Chaldee); corresponding to H5190; to raise: - take up."]},{"k":"H5192","v":["נֵטֶל","nêṭel","nay'-tel","From H5190; a burden: - weighty."]},{"k":"H5193","v":["נָטַע","nâṭaʻ","naw-tah'","A primitive root; properly to strike in, that is, fix; specifically to plant (literally or figuratively): - fastened, plant (-er)."]},{"k":"H5194","v":["נֶטַע","neṭaʻ","neh'-tah","From H5193; a plant; collectively, a plantation; abstractly, a planting: - plant."]},{"k":"H5195","v":["נָטִיעַ","nâṭîyaʻ","naw-tee'-ah","From H5193; a plant: - plant."]},{"k":"H5196","v":["נְטָעִים","Nᵉṭâʻîym","net-aw-eem'","Plural of H5194; Netaim, a place in Palestine: - plants."]},{"k":"H5197","v":["נָטַף","nâṭaph","naw-taf'","A primitive root; to ooze, that is, distil gradually; by implication to fall in drops; figuratively to speak by inspiration: - drop (-ping), prophesy (-et)."]},{"k":"H5198","v":["נָטָף","nâṭâph","naw-tawf'","From H5197; a drop; specifically, an aromatic gum (probably stacte): - drop, stacte."]},{"k":"H5199","v":["נְטֹפָה","Nᵉṭôphâh","net-o-faw'","From H5197; distillation; Netophah, a place in Palestine: - Netophah."]},{"k":"H5200","v":["נְטֹפָתִי","Nᵉṭôphâthîy","net-o-faw-thee'","Patronymic from H5199; a Netophathite, or inhabitant of Netophah: - Netophathite."]},{"k":"H5201","v":["נָטַר","nâṭar","naw-tar'","A primitive root; to guard; figuratively, to cherish (anger): - bear grudge, keep (-er), reserve."]},{"k":"H5202","v":["נְטַר","nᵉṭar","net-ar'","(Chaldee); corresponding to H5201; to retain: - keep."]},{"k":"H5203","v":["נָטַשׁ","nâṭash","naw-tash'","A primitive root; properly to pound, that is, smite; by implication (as if beating out, and thus expanding) to disperse; also, to thrust off, down, out or upon (including reject, let alone, permit, remit, etc.): - cast off, drawn, let fall, forsake, join [battle], leave (off), lie still, loose, spread (self) abroad, stretch out, suffer."]},{"k":"H5204","v":["נִי","nîy","nee","A doubtful word; apparently from H5091; lamentation: - wailing."]},{"k":"H5205","v":["נִיד","nîyd","need","From H5110; motion (of the lips in speech): - moving."]},{"k":"H5206","v":["נִידָה","nîydâh","nee-daw'","Feminine of H5205; removal, that is, exile: - removed."]},{"k":"H5207","v":["נִיחוֹחַ","nîychôwach","nee-kho'-akh","From H5117; properly restful, that is, pleasant; abstractly delight: - sweet (odour)."]},{"k":"H5208","v":["נִיחוֹחַ","nîychôwach","nee-kho'-akh","(Chaldee); corresponding to H5207; pleasure: - sweet odour (savour)."]},{"k":"H5209","v":["נִין","nîyn","neen","From H5125; progeny: - son."]},{"k":"H5210","v":["נִינְוֵה","Nîynᵉvêh","nee-nev-ay'","Of foreign origin; Nineveh, the capital of Assyria: - Nineveh."]},{"k":"H5211","v":["נִיס","nîyç","neece","From H5127; fugitive: - that fleeth."]},{"k":"H5212","v":["נִיסָן","Nîyçân","nee-sawn'","Probably of foreign origin; Nisan, the first month of the Jewish sacred year: - Nisan."]},{"k":"H5213","v":["נִיצוֹץ","nîytsôwts","nee-tsotes'","From H5340; a spark: - spark."]},{"k":"H5214","v":["נִיר","nîyr","neer","A root probably identical with that of H5216, through the idea of the gleam of a fresh furrow; to till the soil: - break up."]},{"k":"H5215","v":["נִיר","nîyr","neer","From H5214; properly ploughing, that is, (concretely) freshly ploughed land: - fallow ground, ploughing, tillage."]},{"k":"H5216","v":["נִיר","nîyr","neer","From a primitive root (see H5214 and H5135) properly meaning to glisten; a lamp (that is, the burner) or light (literally or figuratively): - candle, lamp, light."]},{"k":"H5217","v":["נָכָא","nâkâʼ","naw-kaw'","A primitive root; to smite, that is, drive away: - be viler."]},{"k":"H5218","v":["נָכֵא","nâkêʼ","naw-kay'","From H5217; smitten, that is, (figuratively) afflicted: - broken, stricken, wounded."]},{"k":"H5219","v":["נְכֹאת","nᵉkôʼth","nek-ohth'","From H5218; properly a smiting, that is, (concretely) an aromatic gum (perhaps styrax), (as powdered): - spicery (-ces)."]},{"k":"H5220","v":["נֶכֶד","neked","neh'-ked","From an unused root meaning to propagate; offspring: - nephew, son’s son."]},{"k":"H5221","v":["נָכָה","nâkâh","naw-kaw'","A primitive root; to strike (lightly or severely, literally or figuratively): -    beat, cast forth, clap, give [wounds], X go forward, X indeed, kill, make [slaughter], murderer, punish, slaughter, slay (-er, -ing), smite (-r, -ing), strike, be stricken, (give) stripes, X surely, wound."]},{"k":"H5222","v":["נֵכֶה","nêkeh","nay-keh'","From H5221; a smiter, that is, (figuratively) traducer: - abject."]},{"k":"H5223","v":["נָכֶה","nâkeh","naw-keh'","smitten, that is, (literally) maimed, or (figuratively) dejected: - contrite, lame."]},{"k":"H5224","v":["נְכוֹ","Nᵉkôw","nek-o'","Probably of Egyptian origin; Neko an Egyptian king: - Necho. Compare H6549."]},{"k":"H5225","v":["נָכוֹן","Nâkôwn","naw-kone'","From H3559; prepared; Nakon, probably an Israelite: - Nachon."]},{"k":"H5226","v":["נֵכַח","nêkach","nay'-kakh","From an unused root meaning to be straightforward; properly the fore part; used adverbially, opposite: - before, over against."]},{"k":"H5227","v":["נֹכַח","nôkach","no'-kakh","From the same as H5226; properly, the front part; used adverbially (especially with a preposition), opposite, in front of, forward, in behalf of: - (over) against, before, direct [-ly], for, right (on)."]},{"k":"H5228","v":["נָכֹחַ","nâkôach","naw-ko'-akh","From the same as H5226; straightforward, that is, (figuratively), equitable, correct, or (abstractly), integrity: - plain, right, uprightness."]},{"k":"H5229","v":["נְכֹחָה","nᵉkôchâh","nek-o-khaw'","Feminine of H5228; properly straight forwardness, that is, (figuratively) integrity, or (concretely) a truth: - equity, right (thing), uprightness."]},{"k":"H5230","v":["נָכַל","nâkal","naw-kal'","A primitive root; to defraud, that is, act treacherously: - beguile, conspire, deceiver, deal subtilly."]},{"k":"H5231","v":["נֵכֶל","nêkel","nay'-kel","From H5230; deceit: - wile."]},{"k":"H5232","v":["נְכַס","nᵉkaç","nek-as'","(Chaldee); corresponding to H5233: - goods."]},{"k":"H5233","v":["נֶכֶס","nekeç","neh'-kes","From an unused root meaning to accumulate; treasure: - riches, wealth."]},{"k":"H5234","v":["נָכַר","nâkar","naw-kar'","A primitive root; properly to scrutinize, that is, look intently at; hence (with recognition implied), to acknowledge, be acquainted with, care for, respect, revere, or (with suspicion implied), to disregard, ignore, be strange toward, reject, resign, dissimulate (as if ignorant or disowning): - acknowledge, X could, deliver, discern, dissemble, estrange, feign self to be another, know, take knowledge (notice), perceive, regard, (have) respect, behave (make) self strange (-ly)."]},{"k":"H5235","v":["נֶכֶר","neker","neh'-ker","From H5234; something strange, that is, unexpected calamity: - strange."]},{"k":"H5236","v":["נֵכָר","nêkâr","nay-kawr'","From H5234; foreign, or (concretely) a foreigner, or (abstractly) heathendom: - alien, strange (+ -er)."]},{"k":"H5237","v":["נׇכְרִי","nokrîy","nok-ree'","From H5235 (second form); strange, in a variety of degrees and applications (foreign, non-relative, adulterous, different, wonderful): - alien, foreigner, outlandish, strange (-r, woman)."]},{"k":"H5238","v":["נְכֹת","nᵉkôth","nek-oth'","Probably for H5219; spicery, that is, (generally) valuables: - precious things."]},{"k":"H5239","v":["נָלָה","nâlâh","naw-law'","Apparently a primitive root; to complete: - make an end."]},{"k":"H5240","v":["נְמִבְזֶה","nᵉmibzeh","nem-ib-zeh'","From H959; despised: - vile."]},{"k":"H5241","v":["נְמוּאֵל","Nᵉmûwʼêl","nem-oo-ale'","Apparently for H3223; Nemuel, the name of two Israelites: - Nemuel."]},{"k":"H5242","v":["נְמוּאֵלִי","Nᵉmûwʼêlîy","nem-oo-ay-lee'","From H5241; a Nemuelite, or descendant of Nemuel: - Nemuelite."]},{"k":"H5243","v":["נָמַל","nâmal","naw-mal'","A primitive root; to become clipped or (specifically) circumcised: - (branch to) be cut down (off), circumcise."]},{"k":"H5244","v":["נְמָלָה","nᵉmâlâh","nem-aw-law'","Feminine from H5243; an ant (probably from its almost bisected form): - ant."]},{"k":"H5245","v":["נְמַר","nᵉmar","nem-ar'","(Chaldee); corresponding to H5246: - leopard."]},{"k":"H5246","v":["נָמֵר","nâmêr","naw-mare'","From an unused root meaning properly to filtrate, that is, be limpid (compare H5247 and H5249); and thus to spot or stain as if by dripping; a leopard (from its stripes): - leopard."]},{"k":"H5247","v":["נִמְרָה","Nimrâh","nim-raw'","From the same as H5246; clear water; Nimrah, a place East of the Jordan: - Nimrah. See also H1039, H5249."]},{"k":"H5248","v":["נִמְרוֹד","Nimrôwd","nim-rode'","Probably of foreign origin; Nimrod, a son of Cush: - Nimrod."]},{"k":"H5249","v":["נִמְרִים","Nimrîym","nim-reem'","Plural of a masculine corresponding to H5247; clear waters; Nimrim, a place East of the Jordan: - Nimrim. Compare H1039."]},{"k":"H5250","v":["נִמְשִׁי","Nimshîy","nim-shee'","Probably from H4871; extricated; Nimshi, the (grand-) father of Jehu: - Nimshi."]},{"k":"H5251","v":["נֵס","nêç","nace","From H5264; a flag; also a sail; by implication a flagstaff; generally a signal; figuratively a token: - banner, pole, sail, (en-) sign, standard."]},{"k":"H5252","v":["נְסִבָּה","nᵉçibbâh","nes-ib-baw'","Feminine participle passive of H5437; properly an environment, that is, circumstance or turn of affairs: - cause."]},{"k":"H5253","v":["נָסַג","nâçag","naw-sag'","A primitive root; to retreat: - departing away, remove, take (hold), turn away."]},{"k":"H5254","v":["נָסָה","nâçâh","naw-saw'","A primitive root; to test; by implication to attempt: - adventure, assay, prove, tempt, try."]},{"k":"H5255","v":["נָסַח","nâçach","naw-sakh'","A primitive root; to tear away: - destroy, pluck, root."]},{"k":"H5256","v":["נְסַח","nᵉçach","nes-akh'","(Chaldee); corresponding to H5255: - pull down."]},{"k":"H5257","v":["נְסִיךְ","nᵉçîyk","nes-eek'","From H5258; properly something poured out, that is, a libation; also a molten image; by implication a prince (as anointed): - drink offering, duke, prince (-ipal)."]},{"k":"H5258","v":["נָסַךְ","nâçak","naw-sak'","A primitive root; to pour out, especially a libation, or to cast (metal); by analogy to anoint a king: - cover, melt, offer, (cause to) pour (out), set (up)."]},{"k":"H5259","v":["נָסַךְ","nâçak","naw-sak'","A primitive root (probably identical with H5258 through the idea of fusion); to interweave, that is, (figuratively) to overspread: - that is spread."]},{"k":"H5260","v":["נְסַךְ","nᵉçak","nes-ak'","(Chaldee); corresponding to H5258; to pour out a libation: - offer."]},{"k":"H5261","v":["נְסַךְ","nᵉçak","nes-ak'","(Chaldee); corresponding to H5262; a libation: - drink offering."]},{"k":"H5262","v":["נֶסֶךְ","neçek","neh'-sek","From H5258; a libation; also a cast idol: - cover, drink offering, molten image."]},{"k":"H5263","v":["נָסַס","nâçaç","naw-sas'","A primitive root; to wane, that is, be sick."]},{"k":"H5264","v":["נָסַס","nâçaç","naw-sas'","A primitive root; to gleam from afar, that is, to be conspicuous as a signal; or rather perhaps a denominative from H5251 (and identical with H5263, through the idea of a flag as fluttering in the wind); to raise a beacon: - lift up as an ensign, standard bearer."]},{"k":"H5265","v":["נָסַע","nâçaʻ","naw-sah'","A primitive root; properly to pull up, especially the tent pins, that is, start on a journey: - cause to blow, bring, get, (make to) go (away, forth, forward, onward, out), (take) journey, march, remove, set aside (forward), X still, be on his (go their) way."]},{"k":"H5266","v":["נָסַק","nâçaq","naw-sak'","A primitive root; to go up: - ascend."]},{"k":"H5267","v":["נְסַק","nᵉçaq","nes-ak'","(Chaldee); corresponding to H5266: - take up."]},{"k":"H5268","v":["נִסְרֹךְ","Niçrôk","nis-roke'","Of foreign origin; Nisrok, a Babylonian idol: - Nisroch."]},{"k":"H5269","v":["נֵעָה","Nêʻâh","nay-aw'","From H5128; motion; Neah, a place in Palestine: - Neah."]},{"k":"H5270","v":["נֹעָה","Nôʻâh","no-aw'","From H5128; movement; Noah, an Israelitess: - Noah."]},{"k":"H5271","v":["נָעוּר","nâʻûwr","naw-oor'","Properly passive participle from H5288 as denominative; (only in plural collectively or emphatically) youth, the state (juvenility) or the persons (young people): - childhood, youth."]},{"k":"H5272","v":["נְעִיאֵל","Nᵉʻîyʼêl","neh-ee-ale'","From H5128 and H410; moved of God; Neiel, a place in Palestine: - Neiel."]},{"k":"H5273","v":["נָעִים","nâʻîym","naw-eem'","From H5276; delightful (objectively or subjectively, literally or figuratively): - pleasant (-ure), sweet."]},{"k":"H5274","v":["נָעַל","nâʻal","naw-al'","A primitive root; properly to fasten up, that is, with a bar or cord; hence (denominatively from H5275), to sandal, that is, furnish with slippers: - bolt, inclose, lock, shod, shut up."]},{"k":"H5275","v":["נַעַל","naʻal","nah'-al","From H5274; properly a sandal tongue; by extension a sandal or slipper (sometimes as a symbol of occupancy, a refusal to marry, or of something valueless): - dryshod, (pair of) shoe ([-latchet], -s)."]},{"k":"H5276","v":["נָעֵם","nâʻêm","naw-ame'","A primitive root; to be agreeable (literally or figuratively): - pass in beauty, be delight, be pleasant, be sweet."]},{"k":"H5277","v":["נַעַם","Naʻam","nah'-am","From H5276; pleasure; Naam, an Israelite: - Naam."]},{"k":"H5278","v":["נֹעַם","nôʻam","no'-am","From H5276; agreeableness, that is, delight, suitableness, splendor or grace: - beauty, pleasant (-ness)."]},{"k":"H5279","v":["נַעֲמָה","Naʻămâh","nah-am-aw'","Feminine of H5277; pleasantness; Naamah, the name of an antediluvian woman, of an Ammonitess, and of a place in Palestine: - Naamah."]},{"k":"H5280","v":["נַעֲמִי","Naʻămîy","nah-am-ee'","Patronymic from H5283; a Naamanite, or descendant of Naaman (collectively): - Naamites."]},{"k":"H5281","v":["נׇעֳמִי","Noʻŏmîy","no-om-ee'","From H5278; pleasant; Noomi, an Israelitess: - Naomi."]},{"k":"H5282","v":["נַעֲמָן","naʻămân","nah-am-awn'","From H5276; pleasantness (plural as concrete): - pleasant."]},{"k":"H5283","v":["נַעֲמָן","Naʻămân","nah-am-awn'","The same as H5282; Naaman, the name of an Israelite and of a Damascene: - Naaman."]},{"k":"H5284","v":["נַעֲמָתִי","Naʻămâthîy","nah-am-aw-thee'","Patrial from a place corresponding in nmae (but not identical) with H5279; a Naamathite, or inhabitant of Naamah: - Naamathite"]},{"k":"H5285","v":["נַעֲצוּץ","naʻătsûwts","nah-ats-oots'","From an unused root meaning to prick; probably a brier; by implication a thicket of thorny bushes: - thorn."]},{"k":"H5286","v":["נָעַר","nâʻar","naw-ar'","A primitive root; to growl: - yell."]},{"k":"H5287","v":["נָעַר","nâʻar","naw-ar'","A primitive root (probably identical with H5286, through the idea of the rustling of mane, which usually accompanies the lion’s roar); to tumble about: - shake (off, out, self), overthrow, toss up and down."]},{"k":"H5288","v":["נַעַר","naʻar","nah'-ar","From H5287; (concretely) a boy (as active), from the age of infancy to adolescence; by implication a servant; also (by interchange of sex), a girl (of similar latitude in age): - babe, boy, child, damsel [from the margin], lad, servant, young (man)."]},{"k":"H5289","v":["נַעַר","naʻar","nah'-ar","From H5287 in its derived sense of tossing about; a wanderer: - young one."]},{"k":"H5290","v":["נֹעַר","nôʻar","no'-ar","From H5287; (abstractly) boyhood (compare H5288): - child, youth."]},{"k":"H5291","v":["נַעֲרָה","naʻărâh","nah-ar-aw'","Feminine of H5288; a girl (from infancy to adolescence): - damsel, maid (-en), young (woman)."]},{"k":"H5292","v":["נַעֲרָה","Naʻărâh","nah-ar-aw'","The same as H5291; Naarah, the name of an Israelitess, and of a place in Palestine: - Naarah, Naarath."]},{"k":"H5293","v":["נַעֲרַי","Naʻăray","nah-ar-ah'-ee","From H5288; youthful; Naarai, an Israelite: - Naarai."]},{"k":"H5294","v":["נְעַרְיָה","Nᵉʻaryâh","neh-ar-yaw'","From H5288 and H3050; servant of Jah; Nearjah, the name of two Israelites: - Neariah."]},{"k":"H5295","v":["נַעֲרָן","Naʻărân","nah-ar-awn'","From H5288; juvenile; Naaran, a place in Palestine: - Naaran."]},{"k":"H5296","v":["נְעֹרֶת","nᵉʻôreth","neh-o'-reth","From H5287; something shaken out, that is, tow (as the refuse of flax): - tow."]},{"k":"H5297","v":["נֹף","Nôph","nofe","A variation of H4644; Noph, the capital of Upper Egypt: - Noph."]},{"k":"H5298","v":["נֶפֶג","Nepheg","neh'-feg","From an unused root probably meaning to spring forth; a sprout; Nepheg, the name of two Israelites: - Nepheg."]},{"k":"H5299","v":["נָפָה","nâphâh","naw-faw'","From H5130 in the sense of lifting; a height; also a sieve: - border, coast, region, sieve."]},{"k":"H5300","v":["נְפוּשְׁסִים","Nᵉphûwshᵉçîym","nef-oo-shes-eem'","For H5304; Nephushesim, a Temple Servant: - Nephisesim [from the margin]."]},{"k":"H5301","v":["נָפַח","nâphach","naw-fakh'","A primitive root; to puff, in various applications (literally, to inflate, blow hard, scatter, kindle, expire; figuratively, to disesteem): - blow, breath, give up, cause to lose [life], seething, snuff."]},{"k":"H5302","v":["נֹפַח","Nôphach","no'-fakh","From H5301; a gust; Nophach, a place in Moab: - Nophah."]},{"k":"H5303","v":["נְפִיל","nᵉphîyl","nef-eel'","From H5307; properly, a feller, that is, a bully or tyrant: - giant."]},{"k":"H5304","v":["נְפִיסִים","Nᵉphîyçîym","nef-ee-seem'","Plural from an unused root meaning to scatter; expansions; Nephisim, a Temple Servant: - Nephusim [from the margin]."]},{"k":"H5305","v":["נָפִישׁ","Nâphîysh","naw-feesh'","From H5314; refreshed; Naphish, a son of Ishmael, and his posterity: - Naphish."]},{"k":"H5306","v":["נֹפֶךְ","nôphek","no'-fek","From an unused root meaning to glisten; shining; a gem, probably the garnet: - emerald."]},{"k":"H5307","v":["נָפַל","nâphal","naw-fal'","A primitive root; to fall, in a great variety of applications (intransitively or causatively, literally or figuratively): - be accepted, cast (down, self, [lots], out), cease, die, divide (by lot), (let) fail, (cause to, let, make, ready to) fall (away, down, -en, -ing), fell (-ing), fugitive, have [inheritamce], inferior, be judged [by mistake for H6419], lay (along), (cause to) lie down, light (down), be (X hast) lost, lying, overthrow, overwhelm, perish, present (-ed, -ing), (make to) rot, slay, smite out, X surely, throw down."]},{"k":"H5308","v":["נְפַל","nᵉphal","nef-al'","(Chaldee); corresponding to H5307: - fall (down), have occasion."]},{"k":"H5309","v":["נֶפֶל","nephel","neh'-fel","From H5307; something fallen, that is, an abortion: - untimely birth."]},{"k":"H5310","v":["נָפַץ","nâphats","naw-fats'","A primitive root; to dash to pieces, or scatter: - be beaten in sunder, break (in pieces), broken, dash (in pieces), cause to be discharged, dispersed, be overspread, scatter."]},{"k":"H5311","v":["נֶפֶץ","nephets","neh'-fets","From H5310; a storm (as dispersing): - scattering."]},{"k":"H5312","v":["נְפַק","nᵉphaq","nef-ak'","(Chaldee); a primitive root; to issue; causatively, to bring out: - come (go, take) forth (out)."]},{"k":"H5313","v":["נִפְקָא","niphqâʼ","nif-kaw'","(Chaldee); from H5312; an outgo, that is, expense: - expense."]},{"k":"H5314","v":["נָפַשׁ","nâphash","naw-fash'","A primitive root; to breathe; passively, to be breathed upon, that is, (figuratively) refreshed (as if by a current of air): - (be) refresh selves (-ed)."]},{"k":"H5315","v":["נֶפֶשׁ","nephesh","neh'-fesh","From H5314; properly a breathing creature, that is, animal or (abstractly) vitality; used very widely in a literal, accommodated or figurative sense (bodily or mental): - any, appetite, beast, body, breath, creature, X dead (-ly), desire, X [dis-] contented, X fish, ghost, + greedy, he, heart (-y), (hath, X jeopardy of) life (X in jeopardy), lust, man, me, mind, mortality, one, own, person, pleasure, (her-, him-, my-, thy-) self, them (your) -selves, + slay, soul, + tablet, they, thing, (X she) will, X would have it."]},{"k":"H5316","v":["נֶפֶת","nepheth","neh'-feth","For H5299; a height: - country."]},{"k":"H5317","v":["נֹפֶת","nôpheth","no'-feth","From H5130 in the sense of shaking to pieces; a dripping that is, of honey (from the comb): - honeycomb."]},{"k":"H5318","v":["נֶפְתּוֹחַ","Nephtôwach","nef-to'-akh","From H6605; opened, that is, a spring; Nephtoach, a place in Palestine: - Neptoah."]},{"k":"H5319","v":["נַפְתּוּל","naphtûwl","naf-tool'","From H6617; properly wrestled; but used (in the plural) transitively, a struggle: - wrestling."]},{"k":"H5320","v":["נַפְתֻּחִים","Naphtuchîym","naf-too-kheem","Plural of foreign origin; Naphtuchim, an Egyptian tribe: - Naptuhim."]},{"k":"H5321","v":["נַפְתָּלִי","Naphtâlîy","naf-taw-lee'","From H6617; my wrestling; Naphtali, a son of Jacob, with the tribe descended from him, and its territory: - Naphtali."]},{"k":"H5322","v":["נֵץ","nêts","nayts","From H5340; a flower (from its brilliancy); also a hawk (from its flashing speed): - blossom, hawk."]},{"k":"H5323","v":["נָצָא","nâtsâʼ","naw-tsaw'","A primitive root; to go away: - flee."]},{"k":"H5324","v":["נָצַב","nâtsab","naw-tsab'","A primitive root; to station, in various applications (literally or figuratively): - appointed, deputy, erect, establish, X Huzzah [by mistake for a proper name], lay, officer, pillar, present, rear up, set (over, up), settle, sharpen, stablish, (make to) stand (-ing, still, up, upright), best state."]},{"k":"H5325","v":["נִצָּב","nitstsâb","nits-twawb'","Passive participle of H5324; fixed, that is, a handle: - haft."]},{"k":"H5326","v":["נִצְבָּה","nitsbâh","nits-baw'","(Chaldee); from a root corresponding to H5324; fixedness, that is, firmness: - strength."]},{"k":"H5327","v":["נָצָה","nâtsâh","naw-tsaw'","A primitive root; properly to go forth, that is, (by implication) to be expelled, and (consequently) desolate; causatively to lay waste; also (specifically), to quarrel: - be laid waste, ruinous, strive (together)."]},{"k":"H5328","v":["נִצָּה","nitstsâh","nits-tsaw'","Feminine of H5322; a blossom: - flower."]},{"k":"H5329","v":["נָצַח","nâtsach","naw-tsakh'","A primitive root; properly to glitter from afar, that is, to be eminent (as a superintendent, especially of the Temple services and its music); also (as denominative from H5331), to be permanent: - excel, chief musician (singer), oversee (-r), set forward."]},{"k":"H5330","v":["נְצַח","nᵉtsach","nets-akh'","(Chaldee); corresponding to H5329; to become chief: - be preferred."]},{"k":"H5331","v":["נֶצַח","netsach","neh'-tsakh","From H5329; properly a goal, that is, the bright object at a distance travelled towards; hence (figuratively), splendor, or (subjectively) truthfulness, or (objectively) confidence; but usually (adverbially), continually (that is, to the most distant point of view): - alway (-s), constantly, end, (+ n-) ever (more), perpetual, strength, victory."]},{"k":"H5332","v":["נֵצַח","Nêtsach","nay'-tsakh","Probably identical with H5331, through the idea of brilliancy of color; juice of the grape (as blood red): - blood, strength."]},{"k":"H5333","v":["נְצִיב","nᵉtsîyb","nets-eeb'","From H5324; something stationary, that is, a prefect, a military post, a statue: - garrison, officer, pillar."]},{"k":"H5334","v":["נְצִיב","Nᵉtsîyb","nets-eeb'","The same as H5333; station; Netsib, a place in Palestine: - Nezib."]},{"k":"H5335","v":["נְצִיחַ","nᵉtsîyach","nets-ee'-akh","From H5329; conspicuous; Netsiach, a Temple Servant: - Neziah."]},{"k":"H5336","v":["נָצִיר","nâtsîyr","naw-tsere'","From H5341; properly conservative; but used passively, delivered: - preserved."]},{"k":"H5337","v":["נָצַל","nâtsal","naw-tsal'","A primitive root; to snatch away, whether in a good or a bad sense: -    X at all, defend, deliver (self), escape, X without fail, part, pluck, preserve, recover, rescue, rid, save, spoil, strip, X surely, take (out)."]},{"k":"H5338","v":["נְצַל","nᵉtsal","nets-al'","(Chaldee); corresponding to H5337; to extricate: - deliver, rescue."]},{"k":"H5339","v":["נִצָּן","nitstsân","nits-tsawn'","From H5322; a blossom: - flower."]},{"k":"H5340","v":["נָצַץ","nâtsats","naw-tsats'","A primitive root; to glare, that is, be bright colored: - sparkle."]},{"k":"H5341","v":["נָצַר","nâtsar","naw-tsar'","A primitive root; to guard, in a good sense (to protect, maintain, obey, etc.) or a bad one (to conceal, etc.): - besieged, hidden thing, keep (-er, -ing), monument, observe, preserve (-r), subtil, watcher (-man)."]},{"k":"H5342","v":["נֵצֶר","nêtser","nay'-tser","From H5341 in the sense of greenness as a striking color; a shoot; figuratively, a descendant: - branch."]},{"k":"H5343","v":["נְקֵא","nᵉqêʼ","nek-ay'","(Chaldee); from a root corresponding to H5352; clean: - pure."]},{"k":"H5344","v":["נָקַב","nâqab","naw-kab'","A primitive root; to puncture, literally (to perforate, with more or less violence) or figuratively (to specify, designate, libel): - appoint, blaspheme, bore, curse, express, with holes, name, pierce, strike through."]},{"k":"H5345","v":["נֶקֶב","neqeb","neh'keb","A bezel (for a gem): - pipe."]},{"k":"H5346","v":["נֶקֶב","Neqeb","neh'-keb","The same as H5345; dell; Nekeb, a place in Palestine: - Nekeb."]},{"k":"H5347","v":["נְקֵבָה","nᵉqêbâh","nek-ay-baw'","From H5344; female (from the sexual form): - female, woman."]},{"k":"H5348","v":["נָקֹד","nâqôd","naw-kode'","From an unused root meaning to mark (by puncturing or branding); spotted: - speckled."]},{"k":"H5349","v":["נֹקֵד","nôqêd","no-kade'","Active participle from the same as H5348; a spotter (of sheep or cattle), that is, the owner or tender (who thus marks them): - herdman, sheepmaster."]},{"k":"H5350","v":["נִקֻּד","niqqud","nik-kood'","From the same as H5348; a crumb (as broken to spots); also a biscuit (as pricked): - cracknel, mouldy."]},{"k":"H5351","v":["נְקֻדָּה","nᵉquddâh","ned-ood-daw'","Feminine of H5348; a boss: - stud."]},{"k":"H5352","v":["נָקָה","nâqâh","naw-kaw'","A primitive root; to be (or make) clean (literally or figuratively); by implication (in an adverse sense) to be bare, that is, extirpated: - acquit X at all, X altogether, be blameless, cleanse, (be) clear (-ing), cut off, be desolate, be free, be (hold) guiltless, be (hold) innocent, X by no means, be quit, be (leave) unpunished, X utterly, X wholly."]},{"k":"H5353","v":["נְקוֹדָא","Nᵉqôwdâʼ","nek-o-daw'","Feminine of H5348 (in the figuratively sense of marked); distinction; Nekoda, a Temple Servant: - Nekoda."]},{"k":"H5354","v":["נָקַט","nâqaṭ","naw-kat'","A primitive root; to loathe: - weary."]},{"k":"H5355","v":["נָקִי","nâqîy","naw-kee'","From H5352; innocent: - blameless, clean, clear, exempted, free, guiltless, innocent, quit."]},{"k":"H5356","v":["נִקָּיוֹן","niqqâyôwn","nik-kaw-yone'","From H5352; clearness (literally or figuratively): - cleanness, innocency."]},{"k":"H5357","v":["נָקִיק","nâqîyq","naw-keek'","From an unused root meaning to bore; a cleft: - hole."]},{"k":"H5358","v":["נָקַם","nâqam","naw-kam'","A primitive root; to grudge, that is, avenge or punish: - avenge (-r, self), punish, revenge (self), X surely, take vengeance."]},{"k":"H5359","v":["נָקָם","nâqâm","naw-kawm'","From H5358; revenge: -  + avenged, quarrel, vengeance."]},{"k":"H5360","v":["נְקָמָה","nᵉqâmâh","nek-aw-maw'","Feminine of H5359; avengement, whether the act or the passion: -    + avenge, revenge (-ing), vengeance."]},{"k":"H5361","v":["נָקַע","nâqaʻ","naw-kah'","A primitive root; to feel aversion: - be alienated."]},{"k":"H5362","v":["נָקַף","nâqaph","naw-kaf'","A primitive root; to strike with more or less violence (beat, fell, corrode); by implication (of attack) to knock together, that is, surround or circulate: - compass (about, -ing), cut down, destroy, go round (about), inclose, round."]},{"k":"H5363","v":["נֹקֶף","nôqeph","no'-kef","From H5362; a threshing (of olives): - shaking."]},{"k":"H5364","v":["נִקְפָּה","niqpâh","nik-paw'","From H5362; probably a rope (as encircling): - rent."]},{"k":"H5365","v":["נָקַר","nâqar","naw-kar'","A primitive root; to bore (penetrate, quarry): - dig, pick out, pierce, put (thrust) out."]},{"k":"H5366","v":["נְקָרָה","nᵉqârâh","nek-aw-raw'","From H5365; a fissure: - cleft, clift."]},{"k":"H5367","v":["נָקַשׁ","nâqash","naw-kash'","A primitive root; to entrap (with a noose), literally or figuratively: - catch. (lay a) snare."]},{"k":"H5368","v":["נְקַשׁ","nᵉqash","nek-ash'","(Chaldee); corresponding to H5367; but used in the sense of H5362; to knock: - smote."]},{"k":"H5369","v":["נֵר","Nêr","nare","The same as H5216; lamp; Ner, an Israelite: - Ner."]},{"k":"H5370","v":["נֵרְגַּל","Nêrᵉgal","nare-gal'","Of foreign origin; Nergal, a Cuthite deity: - Nergal."]},{"k":"H5371","v":["נֵרְגַּל שַׁרְאֶצֶר","Nêrᵉgal Sharʼetser","nare-gal' shar-eh'-tser","From H5370 and H8272; Nergal-Sharetser, the name of two Babylonians: - Nergal-sharezer."]},{"k":"H5372","v":["נִרְגָּן","nirgân","neer-gawn'","From an unused root meaning to roll to pieces; a slanderer: - talebearer, whisperer."]},{"k":"H5373","v":["נֵרְדְּ","nêrd","nayrd","Of foreign origin; nard, an aromatic: - spikenard."]},{"k":"H5374","v":["נֵרִיָּה","Nêrîyâh","nay-ree-yaw'","From H5216 and H3050; light of Jah; Nerijah, an Israelite: - Neriah."]},{"k":"H5375","v":["נָשָׂא","nâsâʼ","naw-saw'","A primitive root; to lift, in a great variety of applications, literally and figuratively, absolutely and relatively: - accept, advance, arise, (able to, [armour], suffer to) bear (-er, up), bring (forth), burn, carry (away), cast, contain, desire, ease, exact, exalt (self), extol, fetch, forgive, furnish, further, give, go on, help, high, hold up, honourable (+ man), lade, lay, lift (self) up, lofty, marry, magnify, X needs, obtain, pardon, raise (up), receive, regard, respect, set (up), spare, stir up, + swear, take (away, up), X utterly, wear, yield."]},{"k":"H5376","v":["נְשָׂא","nᵉsâʼ","nes-aw'","(Chaldee); corresponding to H5375: - carry away, make insurrection, take."]},{"k":"H5377","v":["נָשָׁא","nâshâʼ","naw-shaw'","A primitive root; to lead astray, that is, (mentally) to delude, or (morally) to seduce: - beguile, deceive, X greatly, X utterly."]},{"k":"H5378","v":["נָשָׁא","nâshâʼ","naw-shaw'","A primitive root (perhaps identical with H5377, through the idea of imposition); to lend on interest; by implication to dun for debt: -    X debt, exact, give of usury."]},{"k":"H5379","v":["נִשֵּׂאת","nissêʼth","nis-sayth'","Passive participle feminine of H5375; something taken, that is, a present: - gift."]},{"k":"H5380","v":["נָשַׁב","nâshab","naw-shab'","A primitive root; to blow; by implication to disperse: -  (cause to) blow, drive away."]},{"k":"H5381","v":["נָשַׂג","nâsag","naw-sag'","A primitive root; to reach (literally or figuratively): - ability, be able, attain (unto), (be able to, can) get, lay at, put, reach, remove, wax rich, X surely, (over-) take (hold of, on, upon)."]},{"k":"H5382","v":["נָשָׁה","nâshâh","naw-shaw'","A primitive root; to forget; figuratively, to neglect; causatively, to remit, remove: - forget, deprive, exact."]},{"k":"H5383","v":["נָשָׁה","nâshâh","naw-shaw'","A primitive root (rather identical with H5382, in the sense of H5378); to lend or (by reciprocity) borrow on security or interest: - creditor, exact, extortioner, lend, usurer, lend on (taker of) usury."]},{"k":"H5384","v":["נָשֶׁה","nâsheh","naw-sheh'","From H5382, in the snese of failure; rheumatic or crippled (from the incident to Jacob): - which shrank."]},{"k":"H5385","v":["נְשׂוּאָה","nᵉsûwʼâh","nes-oo-aw'","Feminine passive participle of H5375; something borne, that is, a load: - carriage."]},{"k":"H5386","v":["נְשִׁי","nᵉshîy","nesh-ee'","From H5383; a debt: - debt."]},{"k":"H5387","v":["נָשִׂיא","nâsîyʼ","naw-see'","From H5375; properly an exalted one, that is, a king or sheik; also a rising mist: - captain, chief, cloud, governor, prince, ruler, vapour."]},{"k":"H5388","v":["נְשִׁיָּה","nᵉshîyâh","nesh-ee-yaw'","From H5382; oblivion: - forgetfulness."]},{"k":"H5389","v":["נָשִׁין","nâshîyn","naw-sheen'","(Chaldee); irregular plural feminine of H606: - women."]},{"k":"H5390","v":["נְשִׁיקָה","nᵉshîyqâh","nesh-ee-kaw'","From H5401; a kiss: - kiss."]},{"k":"H5391","v":["נָשַׁךְ","nâshak","naw-shak'","A primitive root; to strike with a sting (as a serpent); figuratively, to oppress with interest on a loan: - bite, lend upon usury."]},{"k":"H5392","v":["נֶשֶׁךְ","neshek","neh'-shek","From H5391; interest on a debt: - usury."]},{"k":"H5393","v":["נִשְׁכָּה","nishkâh","nish-kaw'","For H3957; a cell: - chamber."]},{"k":"H5394","v":["נָשַׁל","nâshal","naw-shal'","A primitive root; to pluck off, that is, divest, eject, or drop: - cast (out), drive, loose, put off (out), slip."]},{"k":"H5395","v":["נָשַׁם","nâsham","naw-sham'","A primitive root; properly to blow away, that is, destroy: - destroy."]},{"k":"H5396","v":["נִשְׁמָא","nishmâʼ","nish-maw'","(Chaldee); corresponding to H5397; vital breath: - breath."]},{"k":"H5397","v":["נְשָׁמָה","nᵉshâmâh","nesh-aw-maw'","From H5395; a puff, that is, wind, angry or vital breath, divine inspiration, intellect or (concretely) an animal: - blast, (that) breath (-eth), inspiration, soul, spirit."]},{"k":"H5398","v":["נָשַׁף","nâshaph","naw-shaf'","A primitive root; to breeze, that is, blow up fresh (as the wind): - blow."]},{"k":"H5399","v":["נֶשֶׁף","nesheph","neh'-shef","From H5398; properly a breeze, that is, (by implication) dusk (when the evening breeze prevails): - dark, dawning of the day (morning), night, twilight."]},{"k":"H5400","v":["נָשַׂק","nâsaq","naw-sak'","A primitive root; to catch fire: - burn, kindle."]},{"k":"H5401","v":["נָשַׁק","nâshaq","naw-shak'","A primitive root (identical with H5400, through the idea of fastening up; compare H2388 and H2836); to kiss, literally or figuratively (touch); also (as a mode of attachment), to equip with weapons: - armed (men), rule, kiss, that touched."]},{"k":"H5402","v":["נֶשֶׁק","nesheq","neh'-shek","From H5401; military equipment, that is, (collectively) arms (offensive or defensive), or (concretely) an arsenal: - armed men, armour (-y), battle, harness, weapon."]},{"k":"H5403","v":["נְשַׁר","nᵉshar","nesh-ar'","(Chaldee); corresponding to H5404; an eagle: - eagle."]},{"k":"H5404","v":["נֶשֶׁר","nesher","neh'-sher","From an unused root meaning to lacerate; the eagle (or other large bird of prey): - eagle."]},{"k":"H5405","v":["נָשַׁת","nâshath","naw-shath'","A primitive root; properly to eliminate, that is, (intransitively) to dry up: - fail."]},{"k":"H5406","v":["נִשְׁתְּוָן","nishtᵉvân","nish-tev-awn'","Probably of Persian origin; an epistle: - letter."]},{"k":"H5407","v":["נִשְׁתְּוָן","nishtᵉvân","nish-tev-awn'","(Chaldee); corresponding to H5406: - letter."]},{"k":"H5408","v":["נָתַח","nâthach","naw-thakh'","A primitive root; to dismember: - cut (in pieces), divide, hew in pieces."]},{"k":"H5409","v":["נֵתַח","nêthach","nay'-thakh","From H5408; a fragment: - part, piece."]},{"k":"H5410","v":["נָתִיב","nâthîyb","naw-theeb'","From an unused root meaning to tramp; a (beaten) track: - path ([-way]), X travel [-er], way."]},{"k":"H5411","v":["נָתִין","Nâthîyn","naw-theen'","The second form is the proper form, as passive participle; from H5414; one given, that is, (in the plural only) the Nethinim, or Temple Servants (as given up to that duty): - Nethinims."]},{"k":"H5412","v":["נְתִין","Nᵉthîyn","netheen'","(Chaldee); corresponding to H5411: - Nethinims."]},{"k":"H5413","v":["נָתַךְ","nâthak","naw-thak'","A primitive root; to flow forth (literally or figuratively); by implication to liquefy: - drop, gather (together), melt, pour (forth, out)."]},{"k":"H5414","v":["נָתַן","nâthan","naw-than'","A primitive root; to give, used with great latitude of application (put, make, etc.): - add, apply, appoint, ascribe, assign, X avenge, X be ([healed]), bestow, bring (forth, hither), cast, cause, charge, come, commit consider, count, + cry, deliver (up), direct, distribute do, X doubtless, X without fail, fasten, frame, X get, give (forth, over, up), grant, hang (up), X have, X indeed, lay (unto charge, up), (give) leave, lend, let (out), + lie, lift up, make, + O that, occupy, offer, ordain, pay, perform, place, pour, print, X pull, put (forth), recompense, render, requite, restore, send (out), set (forth), shew, shoot forth (up). + sing, + slander, strike, [sub-] mit, suffer, X surely, X take, thrust, trade, turn, utter, + weep, X willingly, + withdraw, + would (to) God, yield."]},{"k":"H5415","v":["נְתַן","nᵉthan","neth-an'","(Chaldee); corresponding to H5414; give: - bestow, give, pay."]},{"k":"H5416","v":["נָתָן","Nâthân","naw-thawn'","From H5414; given; Nathan, the name of five Israelites: - Nathan."]},{"k":"H5417","v":["נְתַנְאֵל","Nᵉthanʼêl","neth-an-ale'","From H5414 and H410; given of God; Nethanel, the name of ten Israelites: - Nethaneel."]},{"k":"H5418","v":["נְתַנְיָה","Nᵉthanyâh","neth-an-yaw'","From H5414 and H3050; given of Jah; Nethanjah, the name of four Israelites: - Nethaniah."]},{"k":"H5419","v":["נְתַן־מֶלֶךְ","Nᵉthan-Melek","neth-an' meh'-lek","From H5414 and H4428; given of (the) king; Nethan-Melek, an Israelite: - Nathan-melech."]},{"k":"H5420","v":["נָתָס","nâthâç","naw-thas'","A primitive root; to tear up: - mar."]},{"k":"H5421","v":["נָתַע","nâthaʻ","naw-thah'","For H5422; to tear out: - break."]},{"k":"H5422","v":["נָתַץ","nâthats","naw-thats'","A primitive root; to tear down: - beat down, break down (out), cast down, destroy, overthrow, pull down, throw down."]},{"k":"H5423","v":["נָתַק","nâthaq","naw-thak'","A primitive root; to tear off: - break (off), burst, draw (away), lift up, pluck (away, off), pull (out), root out."]},{"k":"H5424","v":["נֶתֶק","netheq","neh'-thek","From H5423; scurf: - (dry) scall."]},{"k":"H5425","v":["נָתַר","nâthar","naw-thar'","A primitive root; to jump, that is, be violently agitated; causatively, to terrify, shake off, untie: - drive asunder, leap, (let) loose, X make, move, undo."]},{"k":"H5426","v":["נְתַר","nᵉthar","neth-ar'","(Chaldee); corresponding to H5425: - shake off."]},{"k":"H5427","v":["נֶתֶר","nether","neh'-ther","From H5425; mineral potash (so called from effervescing with acid): - nitre."]},{"k":"H5428","v":["נָתַשׁ","nâthash","naw-thash'","A primitive root; to tear away: - destroy, forsake, pluck (out, up, by the roots), pull up, root out (up), X utterly."]},{"k":"H5429","v":["סְאָה","çᵉʼâh","seh-aw'","From an unused root meaning to define; a seah, or certain measure (as determinative) for grain: - measure."]},{"k":"H5430","v":["סְאוֹן","çᵉʼôwn","seh-own'","From H5431; perhaps a military boot (as a protection from mud): - battle."]},{"k":"H5431","v":["סָאַן","çâʼan","saw-an'","A primitive root; to be miry; used only as denominative from H5430; to shoe, that is, (active participle) a soldier shod: - warrior."]},{"k":"H5432","v":["סַאסְּאָה","çaʼçᵉʼâh","sah-seh-aw'","For H5429; measurement, that is, moderation: - measure."]},{"k":"H5433","v":["סָבָא","çâbâʼ","saw-baw'","A primitive root; to quaff to satiety, that is, become tipsy: - drunkard, fill self, Sabean, [wine-] bibber."]},{"k":"H5434","v":["סְבָא","Çᵉbâʼ","seb-aw'","Of foreign origin; Seba, a son of Cush, and the country settled by him: - Seba."]},{"k":"H5435","v":["סֹבֶא","çôbeʼ","so'-beh","From H5433; potation, concretely (wine), or abstractly (carousal): - drink, drunken, wine."]},{"k":"H5436","v":["סְבָאִי","Çᵉbâʼîy","seb-aw-ee'","Patrial from H5434; a Sebaite, or inhabitant of Seba: - Sabean."]},{"k":"H5437","v":["סָבַב","çâbab","saw-bab'","A primitive root; to revolve, surround or border; used in various applications, literally and figuratively: - bring, cast, fetch, lead, make, walk, X whirl, X round about, be about on every side, apply, avoid, beset (about), besiege, bring again, carry (about), change, cause to come about, X circuit, (fetch a) compass (about, round), drive, environ, X on every side, beset (close, come, compass, go, stand) round about, remove, return, set, sit down, turn (self) (about, aside, away, back)."]},{"k":"H5438","v":["סִבָּה","çibbâh","sib-baw'","From H5437; a (providential) turn (of affairs): - cause."]},{"k":"H5439","v":["סָבִיב","çâbîyb","saw-beeb'","From H5437; (as noun) a circle, neighbor, or environs; but chiefly (as adverb, with or without preposition) around: - (place, round) about, circuit, compass, on every side."]},{"k":"H5440","v":["סָבַךְ","çâbak","saw-bak'","A primitive root; to entwine: - fold together, wrap."]},{"k":"H5441","v":["סֹבֶךְ","çôbek","so'-bek","From H5440; a copse: - thicket."]},{"k":"H5442","v":["סְבָךְ","çᵉbâk","seb-awk'","From H5440; a copse: - thick (-et)."]},{"k":"H5443","v":["סַבְּכָא","çabbᵉkâʼ","sab-bek-aw'","(Chaldee); from a root corresponding to H5440; a lyre: - sackbut."]},{"k":"H5444","v":["סִבְּכַי","Çibbᵉkay","sib-bek-ah'-ee","From H5440; copse like; Sibbecai, an Israelite: - Sibbecai, Sibbechai."]},{"k":"H5445","v":["סָבַל","çâbal","saw-bal'","A primitive root; to carry (literally or figuratively), or (reflexively) be burdensome; specifically to be gravid: - bear, be a burden, carry, strong to labour."]},{"k":"H5446","v":["סְבַל","çᵉbal","seb-al'","(Chaldee); corresponding to H5445; to erect: - strongly laid."]},{"k":"H5447","v":["סֵבֶל","çêbel","say'-bel","From H5445; a load (literally or figuratively): - burden, charge."]},{"k":"H5448","v":["סֹבֶל","çôbel","so'-bel","From H5445; a load (figuratively): - burden."]},{"k":"H5449","v":["סַבָּל","çabbâl","sab-bawl'","From H5445; a porter: - (to bear, bearer of) burden (s)."]},{"k":"H5450","v":["סְבָלָה","çᵉbâlâh","seb-aw-law'","From H5447; porterage: - burden."]},{"k":"H5451","v":["סִבֹּלֶת","çibbôleth","sib-bo'-leth","For H7641; an ear of grain: - Sibboleth."]},{"k":"H5452","v":["סְבַר","çᵉbar","seb-ar'","(Chaldee); a primitive root; to bear in mind, that is, hope: - think."]},{"k":"H5453","v":["סִבְרַיִם","Çibrayim","sib-rah'-yim","Dual from a root corresponding to H5452; double hope; Sibrajim, a place in Syria: - Sibraim."]},{"k":"H5454","v":["סַבְתָּא","Çabtâʼ","sab-taw'","Probably of foreign derivation; Sabta or Sabtah, the name of a son of Cush, and the country occupied by his posterity: - Sabta, Sabtah."]},{"k":"H5455","v":["סַבְתְּכָא","Çabtᵉkâʼ","sab-tek-aw'","Probably of foreign derivation; Sabteca, the name of a son of Cush, and the region settled by him: - Sabtecha, Sabtechah."]},{"k":"H5456","v":["סָגַד","çâgad","saw-gad'","A primitive root; to prostrate oneself (in homage): - fall down."]},{"k":"H5457","v":["סְגִד","çᵉgid","seg-eed'","(Chaldee); corresponding to H5456: - worship."]},{"k":"H5458","v":["סְגוֹר","çᵉgôwr","seg-ore'","From H5462; properly shut up, that is, the breast (as inclosing the heart); also gold (as generally shut up safely): - caul, gold."]},{"k":"H5459","v":["סְגֻלָּה","çᵉgullâh","seg-ool-law'","Feminine passive participle of an unused root meaning to shut up; wealth (as closely shut up): - jewel, peculiar (treasure), proper good, special."]},{"k":"H5460","v":["סְגַן","çᵉgan","seg-an'","(Chaldee); corresponding to H5461: - governor."]},{"k":"H5461","v":["סָגָן","çâgân","saw-gawn'","From an unused root meaning to superintend; a proefect of a province: - prince, ruler."]},{"k":"H5462","v":["סָגַר","çâgar","saw-gar'","A primitive root; to shut up; figuratively to surrender: - close up, deliver (up), give over (up), inclose, X pure, repair, shut (in, self, out, up, up together), stop, X straitly."]},{"k":"H5463","v":["סְגַר","çᵉgar","seg-ar'","(Chaldee); corresponding to H5462: - shut up."]},{"k":"H5464","v":["סַגְרִיד","çagrîyd","sag-reed'","Probably from H5462 in the sense of sweeping away; a pouring rain: - very rainy."]},{"k":"H5465","v":["סַד","çad","sad","From an unused root meaning to estop; the stocks: - stocks."]},{"k":"H5466","v":["סָדִין","çâdîyn","saw-deen'","From an unused root meaning to envelop; a wrapper, that is, shirt: - fine linen, sheet."]},{"k":"H5467","v":["סְדֹם","Çᵉdôm","sed-ome'","From an unused root meaning to scorch; burnt (that is, volcanic or bituminous) district; Sedom, a place near the Dead Sea: - Sodom."]},{"k":"H5468","v":["סֶדֶר","çeder","seh'-der","From an unused root meaning to arrange; order: - order."]},{"k":"H5469","v":["סַהַר","çahar","cah'-har","From an unused root meaning to be round; roundness: - round."]},{"k":"H5470","v":["סֹהַר","çôhar","so'-har","From the same as H5469; a dungeon (as surrounded by walls): - prison."]},{"k":"H5471","v":["סוֹא","Çôwʼ","so","Of foreign derivation; so, an Egyptian king: - So."]},{"k":"H5472","v":["סוּג","çûwg","soog","A primitive root; properly to flinch, that is, (by implication) to go back, literally (to retreat) or figuratively (to apostatize): - backslider, drive, go back, turn (away, back)."]},{"k":"H5473","v":["סוּג","çûwg","soog","A primitive root (probably rather identical with H5472 through the idea of shrinking from a hedge; compare H7735); to hem in, that is, bind: - set about."]},{"k":"H5474","v":["סוּגַר","çûwgar","soo-gar'","From H5462; an inclosure, that is, cage (for an animal): - ward."]},{"k":"H5475","v":["סוֹד","çôwd","sode","From H3245; a session, that is, company of persons (in close deliberation); by implication intimacy, consultation, a secret: - assembly, counsel, inward, secret (counsel)."]},{"k":"H5476","v":["סוֹדִי","Çôwdîy","so-dee'","From H5475; a confidant; Sodi, an Israelite: - Sodi."]},{"k":"H5477","v":["סוּחַ","Çûwach","soo'-akh","From an unused root meaning to wipe away; sweeping; Suach, an Israelite: - Suah."]},{"k":"H5478","v":["סוּחָה","çûwchâh","soo-khaw'","From the same as H5477; something swept away, that is, filth: - torn."]},{"k":"H5479","v":["סוֹטַי","Çôwṭay","so-tah'-ee","From H7750; roving; Sotai, one of the Nethinim: - Sotai."]},{"k":"H5480","v":["סוּךְ","çûwk","sook","A primitive root; properly to smear over (with oil), that is, anoint: - anoint (self), X at all."]},{"k":"H5481","v":["סוּמְפּוֹנְיָה","çûwmᵉpôwnᵉyâh","soom-po-neh-yaw'","(Chaldee); Of Greek origin [H4858]; a bagpipe (with a double pipe): - dulcimer."]},{"k":"H5482","v":["סְוֵנֵה","Çᵉvênêh","sev-ay-nay'","Of Egyptian derivation; Seven, a place in Upper Egypt: - Syene."]},{"k":"H5483","v":["סוּס","çûwç","soos","From an unused root meaning to skip (properly for joy); a horse (as leaping); also a swallow (from its rapid flight): - crane, horse ([-back, -hoof]). Compare H6571."]},{"k":"H5484","v":["סוּסָה","çûwçâh","soo-saw'","Feminine of H5483; a mare: - company of horses."]},{"k":"H5485","v":["סוּסִי","Çûwçîy","soo-see'","From H5483; horse like; Susi, an Israelite: - Susi."]},{"k":"H5486","v":["סוּף","çûwph","soof","A primitive root; to snatch away, that is, terminate: - consume, have an end, perish, X be utterly."]},{"k":"H5487","v":["סוּף","çûwph","soof","(Chaldee); corresponding to H5486; to come to an end: - consumme, fulfil."]},{"k":"H5488","v":["סוּף","çûwph","soof","Probably of Egyptian origin; a reed, especially the papyrus: - flag. Red [sea], weed. Compare H5489."]},{"k":"H5489","v":["סוּף","Çûwph","soof","For H5488 (by ellipsis of H3220); the Reed (Sea): - Red sea."]},{"k":"H5490","v":["סוֹף","çôwph","sofe","From H5486; a termination: - conclusion, end, hinder part."]},{"k":"H5491","v":["סוֹף","çôwph","sofe","(Chaldee); corresponding to H5490: - end."]},{"k":"H5492","v":["סוּפָה","çûwphâh","soo-faw'","From H5486; a hurricane: - Red Sea, storm, tempest, whirlwind, Red sea."]},{"k":"H5493","v":["סוּר","çûwr","soor","A primitive root; to turn off (literally or figuratively): - be [-head], bring, call back, decline, depart, eschew, get [you], go (aside), X grievous, lay away (by), leave undone, be past, pluck away, put (away, down), rebel, remove (to and fro), revolt, X be sour, take (away, off), turn (aside, away, in), withdraw, be without."]},{"k":"H5494","v":["סוּר","çûwr","soor","Probably passive participle of H5493; turned off, that is, deteriorated: - degenerate."]},{"k":"H5495","v":["סוּר","Çûwr","soor","The same as H5494; Sur, a gate of the Temple: - Sur."]},{"k":"H5496","v":["סוּת","çûwth","sooth","Perhaps denominative from H7898; properly to prick, that is, (figuratively) stimulate; by implication to seduce: - entice, move, persuade, provoke, remove, set on, stir up, take away."]},{"k":"H5497","v":["סוּת","çûwth","sooth","Probably from the same root as H4533; covering, that is, clothing: - clothes."]},{"k":"H5498","v":["סָחַב","çâchab","saw-khab'","A primitive root; to trail along: - draw (out), tear."]},{"k":"H5499","v":["סְחָבָה","çᵉchâbâh","seh-khaw-baw'","From H5498; a rag: - cast clout."]},{"k":"H5500","v":["סָחָה","çâchâh","saw-khaw'","A primitive root; to sweep away: - scrape."]},{"k":"H5501","v":["סְחִי","çᵉchîy","seh-khee'","From H5500; refuse (as swept off): - offscouring."]},{"k":"H5502","v":["סָחַף","çâchaph","saw-khaf'","A primitive root; to scrape off: - sweep (away)."]},{"k":"H5503","v":["סָחַר","çâchar","saw-khar'","A primitive root; to travel round (specifically as a pedlar); intensively to palpitate: - go about, merchant (-man), occupy with, pant, trade, traffick."]},{"k":"H5504","v":["סַחַר","çachar","sakh'-ar","From H5503; profit (from trade): - merchandise."]},{"k":"H5505","v":["סָחַר","çâchar","saw-khar'","From H5503; an emporium; abstractly profit (from trade): - mart, merchandise."]},{"k":"H5506","v":["סְחֹרָה","çᵉchôrâh","sekh-o-raw'","From H5503; traffic: - merchandise."]},{"k":"H5507","v":["סֹחֵרָה","çôchêrâh","so-khay-raw'","Properly active participle feminine of H5503; something surrounding the person, that is, a shield: - buckler."]},{"k":"H5508","v":["סֹחֵרֶת","çôchêreth","so-kheh'-reth","Similar to H5507; probably a (black) tile (or tessara) for laying borders with: - black marble."]},{"k":"H5509","v":["סִיג","çîyg","seeg","From H5472 in the sense of refuse; scoria: - dross."]},{"k":"H5510","v":["סִיוָן","Çîyvân","see-vawn'","Probably of Persian origin; Sivan, the third Hebrew month: - Sivan."]},{"k":"H5511","v":["סִיחוֹן","Çîychôwn","see-khone'","From the same as H5477; tempestuous; Sichon, an Amoritish king: - Sihon."]},{"k":"H5512","v":["סִין","Çîyn","seen","Of uncertain derivation; Sin, the name of an Egyptian town and (probably) desert adjoining: - Sin."]},{"k":"H5513","v":["סִינִי","Çîynîy","see-nee'","From an otherwise unknown name of a man; a Sinite, or descendant of one of the sons of Canaan: - Sinite."]},{"k":"H5514","v":["סִינַי","Çîynay","see-nah'-ee","Of uncertain derivation; Sinai, a mountain of Arabia: - Sinai."]},{"k":"H5515","v":["סִינִים","Çîynîym","see-neem'","Plural of an otherwise unknown name; Sinim, a distant Oriental region: - Sinim."]},{"k":"H5516","v":["סִיסְרָא","Çîyçᵉrâʼ","see-ser-aw'","Of uncertain derivation; Sisera, the name of a Canaanitish king and of one of the Nethinim: - Sisera."]},{"k":"H5517","v":["סִיעָא","Çîyʻâʼ","see-ah'","From an unused root meaning to converse; congregation; Sia, or Siaha, one of the Nethinim: - Sia, Siaha."]},{"k":"H5518","v":["סִיר","çîyr","seer","From a primitive root meaning to boil up; a pot; also a thorn (as springing up rapidly); by implication a hook: - caldron, fishhook, pan, ([wash-]) pot, thorn."]},{"k":"H5519","v":["סָךְ","çâk","sawk","From H5526; properly a thicket of men, that is, a crowd: - multitude."]},{"k":"H5520","v":["סֹךְ","çôk","soke","From H5526; a hut (as of entwined boughs); also a lair: - covert, den, pavilion, tabernacle."]},{"k":"H5521","v":["סֻכָּה","çukkâh","sook-kaw'","Feminine of H5520; a hut or lair: - booth, cottage, covert, pavilion, tabernacle, tent."]},{"k":"H5522","v":["סִכּוּת","çikkûwth","sik-kooth'","Feminine of H5519; an (idolatrous) booth: - tabernacle."]},{"k":"H5523","v":["סֻכּוֹת","Çukkôwth","sook-kohth'","Plural of H5521; booths; Succoth, the name of a place in Egypt and of three in Palestine: - Succoth."]},{"k":"H5524","v":["סֻכּוֹת בְּנוֹת","Çukkôwth bᵉnôwth","sook-kohth' ben-ohth'","From H5523 and the (irregular) plural of H1323; booths of (the) daughters; brothels, that is, idolatrous tents for impure purposes: - Succoth-benoth."]},{"k":"H5525","v":["סֻכִּי","Çukkîy","sook-kee'","Patrial from an unknown name (perhaps H5520); a Sukkite, or inhabitant of some place near Egypt (that is, hut dwellers): - Sukkiims."]},{"k":"H5526","v":["סָכַךְ","çâkak","saw-kak'","A primitive root; properly to entwine as a screen; by implication to fence in, cover over, (figuratively) protect: - cover, defence, defend, hedge in, join together, set, shut up."]},{"k":"H5527","v":["סְכָכָה","Çᵉkâkâh","sek-aw-kaw'","From H5526; inclosure; Secacah, a place in Palestine: - Secacah."]},{"k":"H5528","v":["סָכַל","çâkal","saw-kal'","For H3688; to be silly: - do (make, play the, turn into) fool (-ish, -ishly, -ishness)."]},{"k":"H5529","v":["סֶכֶל","çekel","seh'-kal","From H5528; silliness; concretely and collectively, dolts: - folly."]},{"k":"H5530","v":["סָכָל","çâkâl","saw-kawl'","From H5528; silly: - fool (-ish), sottish."]},{"k":"H5531","v":["סִכְלוּת","çiklûwth","sik-looth'","From H5528; silliness: - folly, foolishness."]},{"k":"H5532","v":["סָכַן","çâkan","saw-kan'","A primitive root; to be familiar with; by implication to minister to, be serviceable to, be customary: - acquaint (self), be advantage, X ever, (be, [un-]) profit (-able), treasure, be wont."]},{"k":"H5533","v":["סָכַן","çâkan","saw-kan'","Probably a denominative from H7915; properly to cut, that is, damage; also to grow (causatively make) poor: - endanger, impoverish."]},{"k":"H5534","v":["סָכַר","çâkar","saw-kar'","A primitive root; to shut up; by implication to surrender: - stop, give over. See also H5462; H7936."]},{"k":"H5535","v":["סָכַת","çâkath","saw-kath'","A primitive root; to be silent; by implication to observe quietly: - take heed."]},{"k":"H5536","v":["סַל","çal","sal","From H5549; properly a willow twig (as pendulous), that is, an osier; but only as woven into a basket: - basket."]},{"k":"H5537","v":["סָלָא","çâlâʼ","saw-law'","A primitive root; to suspend in a balance, that is, weigh: - compare."]},{"k":"H5538","v":["סִלָּא","Çillâʼ","sil-law'","From H5549; an embankment; Silla, a place in Jerusalem: - Silla."]},{"k":"H5539","v":["סָלַד","çâlad","saw-lad'","A primitive root; probably to leap (with joy), that is, exult: - harden self."]},{"k":"H5540","v":["סֶלֶד","Çeled","seh'-led","From H5539; exultation; Seled, an Israelite: - Seled."]},{"k":"H5541","v":["סָלָה","çâlâh","saw-law'","A primitive root; to hang up, that is, weigh, or (figuratively) contemn: - tread down (under foot), value."]},{"k":"H5542","v":["סֶלָה","çelâh","seh'-law","From H5541; suspension (of music), that is, pause: - Selah."]},{"k":"H5543","v":["סַלּוּ","Çallûw","sal-loo'","From H5541; weighed; Sallu or Sallai, the name of two Israelites: - Sallai, Sallu, Salu."]},{"k":"H5544","v":["סִלּוֹן","çillôwn","sil-lone'","From H5541; a prickle (as if pendulous): - brier, thorn."]},{"k":"H5545","v":["סָלַח","çâlach","saw-lakh'","A primitive root; to forgive: - forgive, pardon, spare."]},{"k":"H5546","v":["סַלָּח","çallâch","saw-lawkh'","From H5545; placable: - ready to forgive."]},{"k":"H5547","v":["סְלִיחָה","çᵉlîychâh","sel-ee-khaw'","From H5545; pardon: - forgiveness, pardon."]},{"k":"H5548","v":["סַלְכָה","Çalkâh","sal-kaw'","From an unused root meaning to walk; walking; Salcah, a place East of the Jordan: - Salcah, Salchah."]},{"k":"H5549","v":["סָלַל","çâlal","saw-lal'","A primitive root; to mound up (especially a turnpike); figuratively to exalt; reflexively to oppose (as by a dam): - cast up, exalt (self), extol, make plain, raise up."]},{"k":"H5550","v":["סֹלְלָה","çôlᵉlâh","so-lel-aw'","Active participle feminine of H5549, but used passively; a military mound, that is, rampart of besiegers: - bank, mount."]},{"k":"H5551","v":["סֻלָּם","çullâm","sool-lawm'","From H5549; a stair case: - ladder."]},{"k":"H5552","v":["סַלְסִלָּה","çalçillâh","sal-sil-law'","From H5541; a twig (as pendulous): - basket."]},{"k":"H5553","v":["סֶלַע","çelaʻ","seh'-lah","From an unused root meaning to be lofty; a craggy rock, literally or figuratively (a fortress): - (ragged) rock, stone (-ny), strong hold."]},{"k":"H5554","v":["סֶלַע","Çelaʻ","seh'-lah","The same as H5553; Sela, the rock city of Idumaea: - rock, Sela (-h)."]},{"k":"H5555","v":["סֶלַע הַמַּחְלְקוֹת","Çelaʻ ham-machlᵉqôwth","seh'-lah hammakh-lek-oth'","From H5553 and the plural of H4256 with the article interposed; rock of the divisions; Sela ham Machlekoth, a place in Palestine: - Sela-hammalekoth."]},{"k":"H5556","v":["סׇלְעָם","çolʻâm","sol-awm'","Apparently from the same as H5553 in the sense of crushing as with a rock, that is, consuming; a kind of locust (from its destructiveness): - bald locust."]},{"k":"H5557","v":["סָלַף","çâlaph","saw-laf'","A primitive root; properly to wrench, that is, (figuratively) to subvert: - overthrow, pervert."]},{"k":"H5558","v":["סֶלֶף","çeleph","seh'-lef","From H5557; distortion, that is, (figuratively) viciousness: - perverseness."]},{"k":"H5559","v":["סְלִק","çᵉliq","sel-eek'","(Chaldee); a primitive root; to ascend: - come (up)."]},{"k":"H5560","v":["סֹלֶת","çôleth","so'-leth","From an unused root meaning to strip; flour (as chipped off): - (fine) flour, meal."]},{"k":"H5561","v":["סַם","çam","sam","From an unused root meaning to smell sweet; an aroma: - sweet (spice)."]},{"k":"H5562","v":["סַמְגַּר נְבוֹ","Çamgar Nᵉbôw","sam-gar' neb-o'","Of foreign origin; Samgar-Nebo, a Babylonian general: - Samgar-nebo."]},{"k":"H5563","v":["סְמָדַר","çᵉmâdar","sem-aw-dar'","Of uncertain derivation; a vine blossom; used also adverbially abloom: - tender grape."]},{"k":"H5564","v":["סָמַךְ","çâmak","saw-mak'","A primitive root; to prop (literally or figuratively); reflexively to lean upon or take hold of (in a favorable or unfavorable sense): - bear up, establish, (up-) hold, lay, lean, lie hard, put, rest self, set self, stand fast, stay (self), sustain."]},{"k":"H5565","v":["סְמַכְיָהוּ","Çᵉmakyâhûw","sem-ak-yaw'-hoo","From H5564 and H3050; supported of Jah; Semakjah, an Israelite: - Semachiah."]},{"k":"H5566","v":["סֶמֶל","çemel","seh'-mel","From an unused root meaning to resemble; a likeness: - figure, idol, image."]},{"k":"H5567","v":["סָמַן","çâman","saw-man'","A primitive root; to designate: - appointed."]},{"k":"H5568","v":["סָמַר","çâmar","saw-mar'","A primitive root; to be erect, that is, bristle as hair: - stand up, tremble."]},{"k":"H5569","v":["סָמָר","çâmâr","saw-mar'","From H5568; bristling, that is, shaggy: - rough."]},{"k":"H5570","v":["סְנָאָה","Çᵉnâʼâh","sen-aw-aw'","From an unused root meaning to prick; thorny; Senaah, a place in Palestine: - Senaah, Hassenaah [with the article."]},{"k":"H5571","v":["סַנְבַלַּט","Çanballaṭ","san-bal-lat'","Of foreign origin; Sanballat, a Persian satrap of Samaria: - Sanballat."]},{"k":"H5572","v":["סְנֶה","çᵉneh","sen-eh'","From an unused root meaning to prick; a bramble: - bush."]},{"k":"H5573","v":["סֶנֶה","Çeneh","seh-neh'","The same as H5572; thorn; Seneh, a crag in Palestine: - Seneh."]},{"k":"H5574","v":["סְנוּאָה","Çᵉnûwʼâh","sen-oo-aw'","From the same as H5570; pointed; (used with the article as a proper name) Senuah, the name of two Israelites. (Hasenuah includes the article.): - Hasenuah [includ. the article, Senuah."]},{"k":"H5575","v":["סַנְוֵר","çanvêr","san-vare'","Of uncertain derivation; (in plural) blindness: - blindness."]},{"k":"H5576","v":["סַנְחֵרִיב","Çanchêrîyb","san-khay-reeb'","Of foreign origin; Sancherib, an Assyrian king: - Sennacherib."]},{"k":"H5577","v":["סַנְסִן","çançin","san-seen'","From an unused root meaning to be pointed; a twig (as tapering): - bough."]},{"k":"H5578","v":["סַנְסַנָּה","Çançannâh","san-san-naw'","Feminine of a form of H5577; a bough; Sansannah, a place in Palestine: - Sansannah."]},{"k":"H5579","v":["סְנַפִּיר","çᵉnappîyr","sen-ap-peer'","Of uncertain derivation; a fin (collectively): - fins."]},{"k":"H5580","v":["סָס","çâç","sawce","From the same as H5483; a moth (from the agility of the fly): - moth."]},{"k":"H5581","v":["סִסְמַי","Çiçmay","sis-mah'-ee","Of uncertain derivation; Sismai, an Israelite: - Sisamai."]},{"k":"H5582","v":["סָעַד","çâʻad","saw-ad'","A primitive root; to support (mostly figuratively): - comfort, establish, hold up, refresh self, strengthen, be upholden."]},{"k":"H5583","v":["סְעַד","çᵉʻad","seh-ad'","(Chaldee); corresponding to H5582; to aid: - helping."]},{"k":"H5584","v":["סָעָה","çâʻâh","saw-aw'","A primitive root; to rush: - storm."]},{"k":"H5585","v":["סָעִיף","çâʻîyph","saw-eef'","From H5586; a fissure (of rocks); also a bough (as subdivided): - (outmost), branch, clift, top."]},{"k":"H5586","v":["סָעַף","çâʻaph","saw-af'","A primitive root; properly to divide up; but used only as denominative from H5585, to disbranch (a tree): - top."]},{"k":"H5587","v":["סָעִף","çâʻiph","saw-eef'","From H5586; divided (in mind), that is, (abstractly) a sentiment: - opinion."]},{"k":"H5588","v":["סֵעֵף","çêʻêph","say-afe'","From H5586; divided (in mind), that is, (concretely) a skeptic: - thought."]},{"k":"H5589","v":["סְעַפָּה","çᵉʻappâh","seh-ap-paw'","Feminine of H5585; a twig: - bough. Compare H5634."]},{"k":"H5590","v":["סָעַר","çâʻar","saw-ar'","A primitive root; to rush upon; by implication to toss (transitively or intransitively, literally or figuratively): - be (toss with) tempest (-uous), be sore troubled, come out as a (drive with the, scatter with a) whirlwind."]},{"k":"H5591","v":["סַעַר","çaʻar","sah'-ar","From H5590; a hurricane: - storm (-y), tempest, whirlwind."]},{"k":"H5592","v":["סַף","çaph","saf","From H5605, in its original sense of containing; a vestibule (as a limit); also a dish (for holding blood or wine): - bason, bowl, cup, door (post), gate, post, threshold."]},{"k":"H5593","v":["סַף","Çaph","saf","The same as H5592; Saph, a Philistine: - Saph. Compare H5598."]},{"k":"H5594","v":["סָפַד","çâphad","saw-fad'","A primitive root; properly to tear the hair and beat the breasts (as Orientals do in grief); generally to lament; by implication to wail: - lament, mourn (-er), wail."]},{"k":"H5595","v":["סָפָה","çâphâh","saw-faw'","A primitive root; properly to scrape (literally to shave; but usually figuratively) together (that is, to accumulate or increase) or away (that is, to scatter, remove or ruin; intransitively to perish): - add, augment, consume, destroy, heap, join, perish, put."]},{"k":"H5596","v":["סָפַח","çâphach","saw-fakh'","A primitive root; properly to scrape out, but in certain peculiar senses (of removal or association): - abiding, gather together, cleave, put, smite with a scab."]},{"k":"H5597","v":["סַפַּחַת","çappachath","sap-pakh'-ath","From H5596; the mange (as making the hair fall off): - scab."]},{"k":"H5598","v":["סִפַּי","Çippay","sip-pah'-ee","From H5592; bason like; Sippai, a Philistine: - Sippai. Compare H5593."]},{"k":"H5599","v":["סָפִיחַ","çâphîyach","saw-fee'-akh","From H5596; something (spontaneously) falling off, that is, a self sown crop; figuratively a freshet: - (such) things as (which) grow (of themselves), which groweth of its own accord (itself)."]},{"k":"H5600","v":["סְפִינָה","çᵉphîynâh","sef-ee-naw'","From H5603; a (sea going) vessel (as ceiled with a deck): - ship."]},{"k":"H5601","v":["סַפִּיר","çappîyr","sap-peer'","From H5608; a gem (perhaps as used for scratching other substances), probably the sapphire: - sapphire."]},{"k":"H5602","v":["סֵפֶל","çêphel","say'-fel","From an unused root meaning to depress; a basin (as deepened out): - bowl, dish."]},{"k":"H5603","v":["סָפַן","çâphan","saw-fan'","A primitive root; to hide by covering; specifically to roof (passive participle as noun, a roof) or wainscot; figuratively to reserve: - cieled, cover, seated."]},{"k":"H5604","v":["סִפֻּן","çippun","sip-poon'","From H5603; a wainscot: - cieling."]},{"k":"H5605","v":["סָפַף","çâphaph","saw-faf'","A primitive root; properly to snatch away, that is, terminate; but used only as denominative from H5592 (in the sense of a vestibule), to wait at the threshold: - be a doorkeeper."]},{"k":"H5606","v":["סָפַק","çâphaq","saw-fak'","A primitive root; to clap the hands (in token of compact, derision, grief, indignation or punishment); by implication of satisfaction, to be enough; by implication of excess, to vomit: - clap, smite, strike, suffice, wallow."]},{"k":"H5607","v":["סֵפֶק","çêpheq","say'-fek","From H5606; chastisement; also satiety: - stroke, sufficiency."]},{"k":"H5608","v":["סָפַר","çâphar","saw-far'","A primitive root; properly to score with a mark as a tally or record, that is, (by implication) to inscribe, and also to enumerate; intensively to recount, that is, celebrate: - commune, (ac-) count, declare, number, + penknife, reckon, scribe, shew forth, speak, talk, tell (out), writer."]},{"k":"H5609","v":["סְפַר","çᵉphar","sef-ar'","(Chaldee); from a root corresponding to H5608; a book: - book, roll."]},{"k":"H5610","v":["סְפָר","çᵉphâr","sef-awr'","From H5608; a census: - numbering."]},{"k":"H5611","v":["סְפָר","Çᵉphâr","sef-awr'","The same as H5610; Sephar, a place in Arabia: - Sephar."]},{"k":"H5612","v":["סֵפֶר","çêpher","say'-fer","From H5608; properly writing (the art or a document); by implication a book: - bill, book, evidence, X learn [-ed] (-ing), letter, register, scroll."]},{"k":"H5613","v":["סָפֵר","çâphêr","saw-fare'","(Chaldee); from the same as H5609; a scribe (secular or sacred): - scribe."]},{"k":"H5614","v":["סְפָרָד","Çᵉphârâd","sef-aw-rawd'","Of foreign derivation; Sepharad, a region of Assyria: - Sepharad."]},{"k":"H5615","v":["סְפֹרָה","çᵉphôrâh","sef-o-raw'","From H5608; a numeration: - number."]},{"k":"H5616","v":["סְפַרְוִי","Çᵉpharvîy","sef-ar-vee'","Patrial from H5617; a Sepharvite or inhabitant of Sepharvain: - Sepharvite."]},{"k":"H5617","v":["סְפַרְוַיִם","Çᵉpharvayim","sef-ar-vah'-yim","Of foreign derivation; Sepharvajim or Sepharim, a place in Assyria: - Sepharvaim."]},{"k":"H5618","v":["סֹפֶרֶת","Çôphereth","so-feh'-reth","Feminine active participle of H5608; a scribe (properly female); Sophereth, a temple servant: - Sophereth."]},{"k":"H5619","v":["סָקַל","çâqal","saw-kal'","A primitive root; properly to be weighty; but used only in the sense of lapidation or its contrary (as if a delapidation): - (cast, gather out, throw) stone (-s), X surely."]},{"k":"H5620","v":["סַר","çar","sar","From H5637 contracted; peevish: - heavy, sad."]},{"k":"H5621","v":["סָרָב","çârâb","saw-rawb'","From an unused root meaning to sting; a thistle: - brier."]},{"k":"H5622","v":["סַרְבַּל","çarbal","sar-bal'","(Chaldee); of uncertain derivation; a cloak: - coat."]},{"k":"H5623","v":["סַרְגּוֹן","Çargôwn","sar-gone'","Of foreign derivation; Sargon, an Assyrian king: - Sargon."]},{"k":"H5624","v":["סֶרֶד","Çered","seh'-red","From a primitive root meaning to tremble; trembling; Sered, an Israelite: - Sered."]},{"k":"H5625","v":["סַרְדִּי","Çardîy","sar-dee'","Patronymic from H5624; a Seredite (collectively) or descendant of Sered: - Sardites."]},{"k":"H5626","v":["סִרָה","Çirâh","see-raw'","From H5493; departure; Sirah, a cistern so called: - Sirah. See also H5518."]},{"k":"H5627","v":["סָרָה","çârâh","saw-raw'","From H5493; apostasy, crime; figuratively remission: -  X continual, rebellion, revolt ([-ed]), turn away, wrong."]},{"k":"H5628","v":["סָרַח","çârach","saw-rakh'","A primitive root; to extend (even to excess): - exceeding, hand, spread, stretch self, banish."]},{"k":"H5629","v":["סֶרַח","çerach","seh'-rakh","From H5628; a redundancy: - remnant."]},{"k":"H5630","v":["סִרְיֹן","çiryôn","sir-yone'","For H8302; a coat of mail: - brigandine."]},{"k":"H5631","v":["סָרִיס","çârîyç","saw-reece'","From an unused root meaning to castrate; a eunuch; by implication valet (especially of the female apartments), and thus a minister of state: - chamberlain, eunuch, officer. Compare H7249."]},{"k":"H5632","v":["סָרֵךְ","çârêk","saw-rake'","(Chaldee); of foreign origin; an emir: - president."]},{"k":"H5633","v":["סֶרֶן","çeren","seh'-ren","From an unused root of uncertain meaning; an axle; figuratively a peer: - lord, plate."]},{"k":"H5634","v":["סַרְעַפָּה","çarʻappâh","sar-ap-paw'","For H5589; a twig: - bough."]},{"k":"H5635","v":["סָרַף","çâraph","saw-raf'","A primitive root; to cremate, that is, to be (near) of kin (such being privileged to kindle the pyre): - burn."]},{"k":"H5636","v":["סַרְפָּד","çarpâd","sar-pawd'","From H5635; a nettle (as stinging like a burn): - brier."]},{"k":"H5637","v":["סָרַר","çârar","saw-rar'","A primitive root; to turn away, that is, (morally) be refractory: -  X away, backsliding, rebellious, revolter (-ing), slide back, stubborn, withdrew."]},{"k":"H5638","v":["סְתָו","çᵉthâv","seth-awv'","From an unused root meaning to hide; winter (as the dark season): - winter."]},{"k":"H5639","v":["סְתוּר","Çᵉthûwr","seth-oor'","From H5641; hidden; Sethur, an Israelite: - Sethur."]},{"k":"H5640","v":["סָתַם","çâtham","saw-tham'","A primitive root; to stop up; by implication to repair; figuratively to keep secret: - closed up, hidden, secret, shut out (up), stop."]},{"k":"H5641","v":["סָתַר","çâthar","saw-thar'","A primitive root; to hide (by covering), literally or figuratively: - be absent, keep close, conceal, hide (self), (keep) secret, X surely."]},{"k":"H5642","v":["סְתַר","çᵉthar","seth-ar'","(Chaldee); corresponding to H5641; to conceal; figuratively to demolish: - destroy, secret thing."]},{"k":"H5643","v":["סֵתֶר","çêther","say'-ther","From H5641; a cover (in a good or a bad, a literal or a figurative sense): - backbiting, covering, covert, X disguise [-th], hiding place, privily, protection, secret (-ly, place)."]},{"k":"H5644","v":["סִתְרִי","Çithrîy","sith-ree'","From H5643; protective; Sithri, an Israelite: - Zithri."]},{"k":"H5645","v":["עָב","ʻâb","awb","Masculine and feminine; from H5743; properly an envelope, that is, darkness (or density, 2Ch_4:17); specifically a (scud) cloud; also a copse: - clay, (thick) cloud, X thick, thicket. Compare H5672."]},{"k":"H5646","v":["עָב","ʻâb","awb","From an unused root meaning to cover; properly equivalent to H5645; but used only as an architectural term, an architrave (as shading the pillars): - thick (beam, plant)."]},{"k":"H5647","v":["עָבַד","ʻâbad","aw-bad'","A primitive root; to work (in any sense); by implication to serve, till, (causatively) enslave, etc.: -    X be, keep in bondage, be bondmen, bond-service, compel, do, dress, ear, execute, + husbandman, keep, labour (-ing man), bring to pass, (cause to, make to) serve (-ing, self), (be, become) servant (-s), do (use) service, till (-er), transgress [from margin], (set a) work, be wrought, worshipper."]},{"k":"H5648","v":["עֲבַד","ʻăbad","ab-bad'","(Chaldee); corresponding to H5647; to do, make, prepare, keep, etc.: -    X cut, do, execute, go on, make, move, work."]},{"k":"H5649","v":["עֲבַד","ʻăbad","ab-bad'","(Chaldee); from H5648; a servant: - servant."]},{"k":"H5650","v":["עֶבֶד","ʻebed","eh'-bed","From H5647; a servant: -  X bondage, bondman, [bond-] servant, (man-) servant."]},{"k":"H5651","v":["עֶבֶד","ʻEbed","eh'-bed","The same as H5650; Ebed, the name of two Israelites: - Ebed."]},{"k":"H5652","v":["עֲבָד","ʻăbâd","ab-awd'","From H5647; a deed: - work."]},{"k":"H5653","v":["עַבְדָּא","ʻAbdâʼ","ab-daw'","From H5647; work; Abda, the name of two Israelites: - Abda."]},{"k":"H5654","v":["עֹבֵד אֱדוֹם","ʻÔbêd ʼĔdôwm","o-bade' ed-ome'","From the active participle of H5647 and H123; worker of Edom; Obed-Edom, the name of five Israelites: - Obed-edom."]},{"k":"H5655","v":["עַבְדְּאֵל","ʻAbdᵉʼêl","ab-deh-ale'","From H5647 and H410; serving God; Abdeel, an Israelite: - Abdeel. Compare H5661."]},{"k":"H5656","v":["עֲבֹדָה","ʻăbôdâh","ab-o-daw'","From H5647; work of any kind: - act, bondage, + bondservant, effect, labour, ministering (-try), office, service (-ile, -itude), tillage, use, work, X wrought."]},{"k":"H5657","v":["עֲבֻדָּה","ʻăbuddâh","ab-ood-daw'","Passive participle of H5647; something wrought, that is, (concretely) service: - household, store of servants."]},{"k":"H5658","v":["עַבְדוֹן","ʻAbdôwn","ab-dohn'","From H5647; servitude; Abdon, the name of a place in Palestine and of four Israelites: - Abdon. Compare H5683."]},{"k":"H5659","v":["עַבְדוּת","ʻabdûwth","ab-dooth'","From H5647; servitude: - bondage."]},{"k":"H5660","v":["עַבְדִּי","ʻAbdîy","ab-dee'","From H5647; serviceable; Abdi, the name of two Israelites: - Abdi."]},{"k":"H5661","v":["עַבְדִיאֵל","ʻAbdîyʼêl","ab-dee-ale'","From H5650 and H410; servant of God; Abdiel, an Israelite: - Abdiel. Compare H5655."]},{"k":"H5662","v":["עֹבַדְיָה","ʻÔbadyâh","o-bad-yaw'","Active participle of H5647 and H3050; serving Jah; Obadjah, the name of thirteen Israelites: - Obadiah."]},{"k":"H5663","v":["עֶבֶד מֶלֶךְ","ʻEbed Melek","eh'-bed meh'-lek","From H5650 and H4428; servant of a king; Ebed-Melek, a eunuch of king Zedekeah: - Ebed-melech."]},{"k":"H5664","v":["עֲבֵד נְגוֹ","ʻĂbêd Nᵉgôw","ab-ade' neg-o'","The same as H5665; Abed-Nego, the Babylonian name of one of Daniel’s companions: - Abed-nego."]},{"k":"H5665","v":["עֲבֵד נְגוֹא","ʻĂbêd Nᵉgôwʼ","ab-ade' neg-o'","(Chaldee); of foreign origin; Abed-Nego, the name of Azariah: - Abed-nego."]},{"k":"H5666","v":["עָבָה","ʻâbâh","aw-baw'","A primitive root; to be dense: - be (grow) thick (-er)."]},{"k":"H5667","v":["עֲבוֹט","ʻăbôwṭ","ab-ote'","From H5670; a pawn: - pledge."]},{"k":"H5668","v":["עָבוּר","ʻâbûwr","aw-boor'","Passive participle of H5674; properly crossed, that is, (abstractly) transit; used only adverbially on account of, in order that: - because of, for (. . . ‘s sake), (intent) that, to."]},{"k":"H5669","v":["עָבוּר","ʻâbûwr","aw-boor'","The same as H5668; passed, that is, kept over; used only of stored grain: - old corn."]},{"k":"H5670","v":["עָבַט","ʻâbaṭ","aw-bat'","A primitive root; to pawn; causatively to lend (on security); figuratively to entangle: - borrow, break [ranks], fetch [a pledge], lend, X surely."]},{"k":"H5671","v":["עַבְטִיט","ʻabṭîyṭ","ab-teet'","From H5670; something pledged, that is, (collectively) pawned goods. (thick clay is by a false etym.): - thick clay [by a false etymology]."]},{"k":"H5672","v":["עֲבִי","ʻăbîy","ab-ee'","From H5666; density, that is, depth or width: - thick (-ness). Compare H5645."]},{"k":"H5673","v":["עֲבִידָה","ʻăbîydâh","ab-ee-daw'","(Chaldee); from H5648; labor or business: - affairs, service, work."]},{"k":"H5674","v":["עָבַר","ʻâbar","aw-bar'","A primitive root; to cross over; used very widely of any transition (literally or figuratively; transitively, intransitively, intensively or causatively); specifically to cover (in copulation): - alienate, alter, X at all, beyond, bring (over, through), carry over, (over-) come (on, over), conduct (over), convey over, current, deliver, do away, enter, escape, fail, gender, get over, (make) go (away, beyond, by, forth, his way, in, on, over, through), have away (more), lay, meddle, overrun, make partition, (cause to, give, make to, over) pass (-age, along, away, beyond, by, -enger, on, out, over, through), (cause to, make) + proclaim (-amation), perish, provoke to anger, put away, rage, + raiser of taxes, remove, send over, set apart, + shave, cause to (make) sound, X speedily, X sweet smelling, take (away), (make to) transgress (-or), translate, turn away, [way-] faring man, be wrath."]},{"k":"H5675","v":["עֲבַר","ʻăbar","ab-ar'","(Chaldee); corresponding to H5676: - beyond, this side."]},{"k":"H5676","v":["עֵבֶר","ʻêber","ay'-ber","From H5674; properly a region across; but used only adverbially (with or without a preposition) on the opposite side (especially of the Jordan; usually meaning the east): -    X against, beyond, by, X from, over, passage, quarter, (other, this) side, straight."]},{"k":"H5677","v":["עֵבֵר","ʻÊbêr","ay'-ber","The same as H5676; Eber, the name of two patriarchs and four Israelites: - Eber, Heber."]},{"k":"H5678","v":["עֶבְרָה","ʻebrâh","eb-raw'","Feminine of H5676; an outburst of passion: - anger, rage, wrath."]},{"k":"H5679","v":["עֲבָרָה","ʻăbârâh","ab-aw-raw'","From H5674; a crossing place: - ferry, plain [from the margin]."]},{"k":"H5680","v":["עִבְרִי","ʻIbrîy","ib-ree'","Patronymic from H5677; an Eberite (that is, Hebrew) or descendant of Eber: - Hebrew (-ess, woman)."]},{"k":"H5681","v":["עִבְרִי","ʻIbrîy","ib-ree'","The same as H5680; Ibri, an Israelite: - Ibri."]},{"k":"H5682","v":["עֲבָרִים","ʻĂbârîym","ab-aw-reem'","Plural of H5676; regions beyond; Abarim, a place in Palestine: - Abarim, passages."]},{"k":"H5683","v":["עֶבְרֹן","ʻEbrôn","eb-rone'","From H5676; transitional; Ebron, a place in Palestine. (Perhaps a clerical error for H5658.): - Hebron. Perhaps a clerical error for H5658."]},{"k":"H5684","v":["עֶבְרֹנָה","ʻEbrônâh","eb-raw-naw'","Feminine of H5683; Ebronah, a place in the Desert: - Ebronah."]},{"k":"H5685","v":["עָבַשׁ","ʻâbash","aw-bash'","A primitive root; to dry up: - be rotten."]},{"k":"H5686","v":["עָבַת","ʻâbath","aw-bath'","A primitive root; to interlace, that is, (figuratively) to pervert: - wrap up."]},{"k":"H5687","v":["עָבֹת","ʻâbôth","aw-both'","From H5686; intwined, that is, dense: - thick."]},{"k":"H5688","v":["עֲבֹת","ʻăbôth","ab-oth'","The same as H5687; something intwined, that is, a string, wreath or foliage: - band, cord, rope, thick bough (branch), wreathen (chain)."]},{"k":"H5689","v":["עֲגַב","ʻăgab","aw-gab'","A primitive root; to breathe after, that is, to love (sensually): - dote, lover."]},{"k":"H5690","v":["עֶגֶב","ʻegeb","eh'-gheb","From H5689; love (concretely), that is, amative words: - much love, very lovely."]},{"k":"H5691","v":["עֲגָבָה","ʻăgâbâh","ag-aw-baw'","From H5689; love (abstractly), that is, amorousness: - inordinate love."]},{"k":"H5692","v":["עֻגָּה","ʻuggâh","oog-gaw'","From H5746; an ashcake (as round): - cake (upon the hearth)."]},{"k":"H5693","v":["עָגוּר","ʻâgûwr","aw-goor'","Passive participle (but with active sense) of an unused root meaning to twitter; probably the swallow: - swallow."]},{"k":"H5694","v":["עָגִיל","ʻâgîyl","aw-gheel'","From the same as H5696; something round, that is, a ring (for the ears): - earring."]},{"k":"H5695","v":["עֵגֶל","ʻêgel","ay-ghel","From the same as H5696; a (male) calf (as frisking round), especially one nearly grown (that is, a steer): - bullock, calf."]},{"k":"H5696","v":["עָגֹל","ʻâgôl","aw-gole'","From an unused root meaning to revolve, circular: - round."]},{"k":"H5697","v":["עֶגְלָה","ʻeglâh","eg-law'","Feminine of H5695; a (female) calf, especially one nearly grown (that is, a heifer): - calf, cow, heifer."]},{"k":"H5698","v":["עֶגְלָה","ʻEglâh","eg-law'","The same as H5697; Eglah, a wife of David: - Eglah."]},{"k":"H5699","v":["עֲגָלָה","ʻăgâlâh","ag-aw-law'","From the same as H5696; something revolving, that is, a wheeled vehicle: - cart, chariot, wagon."]},{"k":"H5700","v":["עֶגְלוֹן","ʻEglôwn","eg-lawn'","From H5695; vituline; Eglon, the name of a place in Palestine and of a Moabitish king: - Eglon."]},{"k":"H5701","v":["עָגַם","ʻâgam","aw-gam'","A primitive root; to be sad: - grieve."]},{"k":"H5702","v":["עָגַן","ʻâgan","aw-gan'","A primitive root; to debar, that is, from marriage: - stay."]},{"k":"H5703","v":["עַד","ʻad","ad","From H5710; properly a (peremptory) terminus, that is, (by implication) duration, in the sense of perpetuity (substantially as a noun, either with or without a preposition): - eternity, ever (-lasting, -more), old, perpetually, + world without end."]},{"k":"H5704","v":["עַד","ʻad","ad","Properly the same as H5703 (used as a preposition, adverb or conjugation; especially with a preposition); as far (or long, or much) as, whether of space (even unto) or time (during, while, until) or degree (equally with): - against, and, as, at, before, by (that), even (to), for (-asmuch as), [hither-] to, + how long, into, as long (much) as, (so) that, till, toward, until, when, while, (+ as) yet."]},{"k":"H5705","v":["עַד","ʻad","ad","(Chaldee); corresponding to H5704: - X and, at, for, [hither-] to, on, till, (un-) to, until, within."]},{"k":"H5706","v":["עַד","ʻad","ad","The same as H5703 in the sense of the aim of an attack; booty: - prey."]},{"k":"H5707","v":["עֵד","ʻêd","ayd","From H5749 contracted; concretely a witness; abstractly testimony; specifically a recorder, that is, prince: - witness."]},{"k":"H5708","v":["עֵד","ʻêd","ayd","From an unused root meaning to set a period (compare H5710 and H5749); the menstrual flux (as periodical); by implication (in plural) soiling: - filthy."]},{"k":"H5709","v":["עֲדָא","ʻădâʼ","ad-aw'","(Chaldee); corresponding to H5710: - alter, depart, pass (away), remove, take (away)."]},{"k":"H5710","v":["עָדָה","ʻâdâh","aw-daw'","A primitive root; to advance, that is, pass on or continue; causatively to remove; specifically to bedeck (that is, bring an ornament upon): - adorn, deck (self), pass by, take away."]},{"k":"H5711","v":["עָדָה","ʻÂdâh","aw-daw'","From H5710; ornament; Adah, the name of two women: - Adah."]},{"k":"H5712","v":["עֵדָה","ʻêdâh","ay-daw'","Feminine of H5707 in the original sense of fixture; a stated assemblage (specifically a concourse, or generally a family or crowd): - assembly, company, congregation, multitude, people, swarm. Compare H5713."]},{"k":"H5713","v":["עֵדָה","ʻêdâh","ay-daw'","Feminine of H5707 in its technical sense; testimony: - testimony, witness. Compare H5712."]},{"k":"H5714","v":["עִדּוֹ","ʻIddôw","id-do'","From H5710; timely; Iddo (or Iddi), the name of five Israelites: - Iddo. Compare H3035, H3260."]},{"k":"H5715","v":["עֵדוּת","ʻêdûwth","ay-dooth'","Feminine of H5707; testimony: - testimony, witness."]},{"k":"H5716","v":["עֲדִי","ʻădîy","ad-ee'","From H5710 in the sense of trappings; finery; generally an outfit; specifically a headstall: -  X excellent, mouth, ornament."]},{"k":"H5717","v":["עֲדִיאֵל","ʻĂdîyʼêl","ad-ee-ale'","From H5716 and H410; ornament of God; Adiel, the name of three Israelites: - Adiel."]},{"k":"H5718","v":["עֲדָיָה","ʻĂdâyâh","ad-aw-yaw'","From H5710 and H3050; Jah has adorned; Adajah, the name of eight Israelites: - Adaiah."]},{"k":"H5719","v":["עָדִין","ʻâdîyn","aw-deen'","From H5727; voluptuous: - given to pleasures."]},{"k":"H5720","v":["עָדִין","ʻÂdîyn","aw-deen'","The same as H5719; Adin, the name of two Israelites: - Adin."]},{"k":"H5721","v":["עֲדִינָא","ʻĂdîynâʼ","ad-ee-naw'","From H5719; effeminacy; Adina, an Israelite: - Adina."]},{"k":"H5722","v":["עֲדִינוֹ","ʻădîynôw","ad-ee-no'","Probably from H5719 in the original sense of slender (that is, a spear); his spear: - Adino."]},{"k":"H5723","v":["עֲדִיתַיִם","ʻĂdîythayim","ad-ee-thah'-yim","Dual of a feminine of H5706; double prey; Adithajim, a place in Palestine: - Adithaim."]},{"k":"H5724","v":["עַדְלַי","ʻAdlay","ad-lah'-ee","Probably from an unused root of uncertain meaning; Adlai, an Israelite: - Adlai."]},{"k":"H5725","v":["עֲדֻלָּם","ʻĂdullâm","ad-ool-lawm'","Probably from the passive participle of the same as H5724; Adullam, a place in Palestine: - Adullam."]},{"k":"H5726","v":["עֲדֻלָּמִי","ʻĂdullâmîy","ad-ool-law-mee'","Patrial from H5725; an Adullamite or native of Adullam: - Adullamite."]},{"k":"H5727","v":["עָדַן","ʻâdan","aw-dan'","A primitive root; to be soft or pleasant; figuratively and reflexively to live voluptuously: - delight self."]},{"k":"H5728","v":["עֲדֶן","ʻăden","ad-en'","From H5704 and H2004; till now: - yet."]},{"k":"H5729","v":["עֶדֶן","ʻEden","eh'-den","From H5727; pleasure; Eden, a place in Mesopotamia: - Eden."]},{"k":"H5730","v":["עֵדֶן","ʻêden","ay'-den","From H5727; pleasure: - delicate, delight, pleasure. See also H1040."]},{"k":"H5731","v":["עֵדֶן","ʻÊden","ay'-den","The same as H5730 (masculine); Eden, the region of Adam’s home: - Eden."]},{"k":"H5732","v":["עִדָּן","ʻiddân","id-dawn'","(Chaldee); from a root corresponding to that of H5708; a set time; technically a year: - time."]},{"k":"H5733","v":["עַדְנָא","ʻAdnâʼ","ad-naw'","From H5727; pleasure; Adna, the name of two Israelites: - Adna."]},{"k":"H5734","v":["עַדְנָה","ʻAdnâh","ad-naw'","From H5727; pleasure; Adnah, the name of two Israelites: - Adnah."]},{"k":"H5735","v":["עֲדְעָדָה","ʻĂdʻâdâh","ad-aw-daw'","From H5712; festival; Adadah, a place in Palestine: - Adadah."]},{"k":"H5736","v":["עֲדַף","ʻădaph","aw-daf'","A primitive root; to be (causatively have) redundant: - be more, odd number, be (have) over (and above), overplus, remain."]},{"k":"H5737","v":["עֲדַר","ʻădar","aw-dar'","A primitive root; to arrange, as a battle, a vineyard (to hoe); hence to muster, and so to miss (or find wanting): - dig, fail, keep (rank), lack."]},{"k":"H5738","v":["עֶדֶר","ʻEder","eh'-der","From H5737; an arrangement (that is, drove); Eder, an Israelite: - Ader."]},{"k":"H5739","v":["עֵדֶר","ʻêder","ay'-der","From H5737; an arrangement, that is, muster (of animals): - drove, flock, herd."]},{"k":"H5740","v":["עֵדֶר","ʻÊder","ay'-der","The same as H5739; Eder, the name of an Israelite and of two places in Palestine: - Edar, Eder."]},{"k":"H5741","v":["עַדְרִיאֵל","ʻAdrîyʼêl","ad-ree-ale'","From H5739 and H410; flock of God; Adriel, an Israelite: - Adriel."]},{"k":"H5742","v":["עָדָשׁ","ʻâdâsh","aw-dawsh'","From an unused root of uncertain meaning; a lentil: - lentile."]},{"k":"H5743","v":["עוּב","ʻûwb","oob","A primitive root; to be dense or dark, that is, to becloud: - cover with a cloud."]},{"k":"H5744","v":["עוֹבֵד","ʻÔwbêd","o-bade'","Active participle of H5647; serving; Obed, the name of five Israelites: - Obed."]},{"k":"H5745","v":["עוֹבָל","ʻÔwbâl","o-bawl'","Of foreign derivation; Obal, a son of Joktan: - Obal."]},{"k":"H5746","v":["עוּג","ʻûwg","oog","A primitive root; properly to gyrate; but used only as denominative from H5692, to bake (round cakes on the hearth): - bake."]},{"k":"H5747","v":["עוֹג","ʻÔwg","ogue","Probably from H5746; round; Og, a king of Bashan: - Og."]},{"k":"H5748","v":["עוּגָב","ʻûwgâb","oo-gawb'","From H5689 in the original sense of breathing; a reed instrument of music: - organ."]},{"k":"H5749","v":["עוּד","ʻûwd","ood","A primitive root; to duplicate or repeat; by implication to protest, testify (as by reiteration); intensively to encompass, restore (as a sort of reduplication): - admonish, charge, earnestly, lift up, protest, call (take) to record, relieve, rob, solemnly, stand upright, testify, give warning, (bear, call to, give, take to) witness."]},{"k":"H5750","v":["עוֹד","ʻôwd","ode","From H5749; properly iteration or continuance; used only adverbially (with or without preposition), again, repeatedly, still, more: - again, X all life long, at all, besides, but, else, further (-more), henceforth, (any) longer, (any) more (-over), X once, since, (be) still, when, (good, the) while (having being), (as, because, whether, while) yet (within)."]},{"k":"H5751","v":["עוֹד","ʻôwd","ode","(Chaldee); corresponding to H5750: - while."]},{"k":"H5752","v":["עוֹדֵד","ʻÔwdêd","o-dade'","From H5749; reiteration; Oded, the name of two Israelites: - Oded."]},{"k":"H5753","v":["עָוָה","ʻâvâh","aw-vaw'","A primitive root; to crook, literally or figuratively: - do amiss, bow down, make crooked, commit iniquity, pervert, (do) perverse (-ly), trouble, X turn, do wickedly, do wrong."]},{"k":"H5754","v":["עַוָּה","ʻavvâh","av-vaw'","Intensive from H5753 abbreviated; overthrow: -  X overturn."]},{"k":"H5755","v":["עִוָּה","ʻIvvâh","iv-vaw'","For H5754; Ivvah or Avva, a region of Assyria: - Ava, Ivah."]},{"k":"H5756","v":["עוּז","ʻûwz","ooz","A primitive root; to be strong; causatively to strengthen, that is, (figuratively) to save (by flight): - gather (self, self to flee), retire."]},{"k":"H5757","v":["עַוִּי","ʻAvvîy","av-vee'","Patrial from H5755; an Avvite or native of Avvah (only plural): - Avims, Avites."]},{"k":"H5758","v":["עִוְיָא","ʻivyâʼ","iv-yaw'","(Chaldee); from a root corresponding to H5753; perverseness: - iniquity."]},{"k":"H5759","v":["עֲוִיל","ʻăvîyl","av-eel'","From H5764; a babe: - young child, little one."]},{"k":"H5760","v":["עֲוִיל","ʻăvîyl","av-eel'","From H5765; perverse (morally): - ungodly."]},{"k":"H5761","v":["עַוִּים","ʻAvvîym","av-veem'","Plural of H5757; Avvim (as inhabited by Avvites), a place in Palestine (with the article prefixed): - Avim."]},{"k":"H5762","v":["עֲוִית","ʻĂvîyth","av-veeth'","From H5753; ruin; Avvith (or Avvoth), a place in Palestine: - Avith."]},{"k":"H5763","v":["עוּל","ʻûwl","ool","A primitive root; to suckle, that is, give milk: - milch, (ewe great) with young."]},{"k":"H5764","v":["עוּל","ʻûwl","ool","From H5763; a babe: - sucking child, infant."]},{"k":"H5765","v":["עֲוַל","ʻăval","aw-val'","A primitive root; to distort (morally): - deal unjustly, unrighteous."]},{"k":"H5766","v":["עֶוֶל","ʻevel","eh'-vel","From H5765; (moral) evil: - iniquity, perverseness, unjust (-ly), unrighteousness (-ly), wicked (-ness)."]},{"k":"H5767","v":["עַוָּל","ʻavvâl","av-vawl'","Intensive from H5765; evil (morally): - unjust, unrighteous, wicked."]},{"k":"H5768","v":["עוֹלֵל","ʻôwlêl","o-lale'","From H5763; a suckling: - babe, (young) child, infant, little one."]},{"k":"H5769","v":["עוֹלָם","ʻôwlâm","o-lawm'","From H5956; properly concealed, that is, the vanishing point; generally time out of mind (past or future), that is, (practically) eternity; frequentative adverbially (especially with prepositional prefix) always: - always (-s), ancient (time), any more, continuance, eternal, (for, [n-]) ever (-lasting, -more, of old), lasting, long (time), (of) old (time), perpetual, at any time, (beginning of the) world (+ without end). Compare H5331, H5703."]},{"k":"H5770","v":["עָוַן","ʻâvan","aw-van'","Denominative from H5869; to watch (with jealousy): - eye."]},{"k":"H5771","v":["עָוֺן","ʻâvôn","aw-vone'","From H5753; perversity, that is, (moral) evil: - fault, iniquity, mischief, punishment (of iniquity), sin."]},{"k":"H5772","v":["עוֹנָה","ʻôwnâh","o-naw'","From an unused root apparently meaning to dwell together; (sexual) cohabitation: - duty of marriage."]},{"k":"H5773","v":["עַוְעֶה","ʻavʻeh","av-eh'","From H5753; perversity: -  X perverse."]},{"k":"H5774","v":["עוּף","ʻûwph","oof","A primitive root; to cover (with wings or obscurity); hence (as denominative from H5775) to fly; also (by implication of dimness) to faint (from the darkness of swooning): - brandish, be (wax) faint, flee away, fly (away - ), X set, shine forth, weary."]},{"k":"H5775","v":["עוֹף","ʻôwph","ofe","From H5774; a bird (as covered with feathers, or rather as covering with wings), often collective: - bird, that flieth, flying, fowl."]},{"k":"H5776","v":["עוֹף","ʻôwph","ofe","(Chaldee); corresponding to H5775: - fowl."]},{"k":"H5777","v":["עוֹפֶרֶת","ʻôwphereth","o-feh'-reth","Feminine participle active of H6080; lead (from its dusty color): - lead."]},{"k":"H5778","v":["עוֹפַי","ʻÔwphay","o-fah'-ee","From H5775; birdlike; Ephai, an Israelite: - Ephai [from margin]."]},{"k":"H5779","v":["עוּץ","ʻûwts","oots","A primitive root; to consult: - take advice ([counsel] together)."]},{"k":"H5780","v":["עוּץ","ʻÛwts","oots","Apparently from H5779; consultation; Uts, a son of Aram, also a Seirite, and the regions settled by them: - Uz."]},{"k":"H5781","v":["עוּק","ʻûwq","ook","A primitive root; to pack: - be pressed."]},{"k":"H5782","v":["עוּר","ʻûwr","oor","A primitive root (rather identical with H5783 through the idea of opening the eyes); to wake (literally or figuratively): - (a-) wake (-n, up), lift up (self), X master, raise (up), stir up (self)."]},{"k":"H5783","v":["עוּר","ʻûwr","oor","A primitive root; to (be) bare: -  be made naked."]},{"k":"H5784","v":["עוּר","ʻûwr","oor","(Chaldee); chaff (as the naked husk): - chaff."]},{"k":"H5785","v":["עוֹר","ʻôwr","ore","From H5783; skin (as naked); by implication hide, leather: - hide, leather, skin."]},{"k":"H5786","v":["עָוַר","ʻâvar","aw-var'","A primitive root (rather denominative from H5785 through the idea of a film over the eyes); to blind: - blind, put out. See also H5895."]},{"k":"H5787","v":["עִוֵּר","ʻivvêr","iv-vare'","Intensive from H5786; blind (literally or figuratively): - blind (men, people)."]},{"k":"H5788","v":["עִוָּרוֹן","ʻivvârôwn","iv-vaw-rone'","From H5787; blindness: - blind (-ness)."]},{"k":"H5789","v":["עוּשׁ","ʻûwsh","oosh","A primitive root; to hasten: - assemble self."]},{"k":"H5790","v":["עוּת","ʻûwth","ooth","From H5789; to hasten, that is, succor: - speak in season."]},{"k":"H5791","v":["עָוַת","ʻâvath","aw-vath'","A primitive root; to wrest: - bow self, (make) crooked, falsifying, overthrow, deal perversely, pervert, subvert, turn upside down."]},{"k":"H5792","v":["עַוָּתָה","ʻavvâthâh","av-vaw-thaw'","From H5791; oppression: - wrong."]},{"k":"H5793","v":["עוּתַי","ʻÛwthay","oo-thah'-ee","From H5790; succoring; Uthai, the name of two Israelites: - Uthai."]},{"k":"H5794","v":["עַז","ʻaz","az","From H5810; strong, vehement, harsh: - fierce, + greedy, mighty, power, roughly, strong."]},{"k":"H5795","v":["עֵז","ʻêz","aze","From H5810; a she goat (as strong), but masculine in plural (which also is used elliptically for goats' hair): - (she) goat, kid."]},{"k":"H5796","v":["עֵז","ʻêz","aze","(Chaldee); corresponding to H5795: - goat."]},{"k":"H5797","v":["עֹז","ʻôz","oze","From H5810; strength in various applications (force, security, majesty, praise): - boldness, loud, might, power, strength, strong."]},{"k":"H5798","v":["עֻזָּא","ʻUzzâʼ","ooz-zaw'","Feminine of H5797; strength; Uzza or Uzzah, the name of five Israelites: - Uzza, Uzzah."]},{"k":"H5799","v":["עֲזָאזֵל","ʻăzâʼzêl","az-aw-zale'","From H5795 and H235; goat of departure; the scapegoat: - scapegoat."]},{"k":"H5800","v":["עָזַב","ʻâzab","aw-zab'","A primitive root; to loosen, that is, relinquish, permit, etc.: - commit self, fail, forsake, fortify, help, leave (destitute, off), refuse, X surely."]},{"k":"H5801","v":["עִזָּבוֹן","ʻizzâbôwn","iz-zaw-bone'","From H5800 in the sense of letting go (for a price, that is, selling); trade, that is, the palce (mart) or the payment (revenue): - fair, ware."]},{"k":"H5802","v":["עַזְבּוּק","ʻAzbûwq","az-book'","From H5794 and the root of H950; stern depopulator; Azbuk, an Israelite: - Azbuk."]},{"k":"H5803","v":["עַזְגָּד","ʻAzgâd","az-gawd'","From H5794 and H1409; stern troop; Azgad, an Israelite: - Azgad."]},{"k":"H5804","v":["עַזָּה","ʻAzzâh","az-zaw'","Feminine of H5794; strong; Azzah, a place in Palestine: - Azzah, Gaza."]},{"k":"H5805","v":["עֲזוּבָה","ʻăzûwbâh","az-oo-baw'","Feminine passive participle of H5800; desertion (of inhabitants): - forsaking."]},{"k":"H5806","v":["עֲזוּבָה","ʻĂzûwbâh","az-oo-baw'","The same as H5805; Azubah, the name of two Israelitesses: - Azubah."]},{"k":"H5807","v":["עֱזוּז","ʻĕzûwz","ez-ooz'","From H5810; forcibleness: - might, strength."]},{"k":"H5808","v":["עִזּוּז","ʻizzûwz","iz-zooz'","From H5810; forcible; collectively and concretely an army: - power, strong."]},{"k":"H5809","v":["עַזּוּר","ʻAzzûwr","az-zoor'","From H5826; helpful; Azzur, the name of three Israelites: - Azur, Azzur."]},{"k":"H5810","v":["עָזַז","ʻâzaz","aw-zaz'","A primitive root; to be stout (literally or figuratively): - harden, impudent, prevail, strengthen (self), be strong."]},{"k":"H5811","v":["עָזָז","ʻÂzâz","aw-zawz'","From H5810; strong; Azaz, an Israelite: - Azaz."]},{"k":"H5812","v":["עֲזַזְיָהוּ","ʻĂzazyâhûw","az-az-yaw'-hoo","From H5810 and H3050; Jah has strengthened; Azazjah, the name of three Israelites: - Azaziah."]},{"k":"H5813","v":["עֻזִּי","ʻUzzîy","ooz-zee'","From H5810; forceful; Uzzi, the name of six Israelites: - Uzzi."]},{"k":"H5814","v":["עֻזִּיָּא","ʻUzzîyâʼ","ooz-zee-yaw'","Perhaps for H5818; Uzzija, an Israelite: - Uzzia."]},{"k":"H5815","v":["עֲזִיאֵל","ʻĂzîyʼêl","az-ee-ale'","From H5756 and H410; strengthened of God; Aziel, an Israelite: - Aziel. Compare H3268."]},{"k":"H5816","v":["עֻזִּיאֵל","ʻUzzîyʼêl","ooz-zee-ale'","From H5797 and H410; strength of God; Uzziel, the name of six Israelites: - Uzziel."]},{"k":"H5817","v":["עׇזִּיאֵלִי","ʻOzzîyʼêlîy","oz-zee-ay-lee'","Patronymic from H5816; an Uzzielite (collectively) or descendant of Uzziel: - Uzzielites."]},{"k":"H5818","v":["עֻזִּיָּה","ʻUzzîyâh","ooz-zee-yaw'","From H5797 and H3050; strength of Jah; Uzzijah, the name of five Israelites: - Uzziah."]},{"k":"H5819","v":["עֲזִיזָא","ʻĂzîyzâʼ","az-ee-zaw'","From H5756; strengthfulness; Aziza, an Israelite: - Aziza."]},{"k":"H5820","v":["עַזְמָוֶת","ʻAzmâveth","az-maw'-veth","From H5794 and H4194; strong one of death; Azmaveth, the name of three Israelites and of a place in Palestine: - Azmaveth. See also H1041."]},{"k":"H5821","v":["עַזָּן","ʻAzzân","az-zawn'","From H5794; strong one; Azzan, an Israelite: - Azzan."]},{"k":"H5822","v":["עׇזְנִיָּה","ʻoznîyâh","oz-nee-yaw'","Probably feminine of H5797; probably the sea eagle (from its strength): - ospray."]},{"k":"H5823","v":["עָזַק","ʻâzaq","aw-zak'","A primitive root; to grub over: - fence about."]},{"k":"H5824","v":["עִזְקָא","ʻizqâʼ","iz-kaw'","(Chaldee); from a root corresponding to H5823; a signet ring (as engraved): - signet."]},{"k":"H5825","v":["עֲזֵקָה","ʻĂzêqâh","az-ay-kaw'","From H5823; tilled; Azekah, a place in Palestine: - Azekah."]},{"k":"H5826","v":["עָזַר","ʻâzar","aw-zar'","A primitive root; to surround, that is, protect or aid: - help, succour."]},{"k":"H5827","v":["עֶזֶר","ʻEzer","eh'-zer","From H5826; help; Ezer, the name of two Israelites: - Ezer. Compare H5829."]},{"k":"H5828","v":["עֵזֶר","ʻêzer","ay'-zer","From H5826; aid: - help."]},{"k":"H5829","v":["עֵזֶר","ʻÊzer","ay'-zer","The same as H5828; Ezer, the name of four Israelites: - Ezer. Compare H5827."]},{"k":"H5830","v":["עֶזְרָא","ʻEzrâʼ","ez-raw'","A variation of H5833; Ezra, an Israelite: - Ezra."]},{"k":"H5831","v":["עֶזְרָא","ʻEzrâʼ","ez-raw'","(Chaldee); corresponding to H5830; Ezra, an Israelite: - Ezra."]},{"k":"H5832","v":["עֲזַרְאֵל","ʻĂzarʼêl","az-ar-ale'","From H5826 and H410; God has helped; Azarel, the name of five Israelites: - Azarael, Azareel."]},{"k":"H5833","v":["עֶזְרָה","ʻezrâh","ez-raw'","Feminine of H5828; aid: - help (-ed, -er)."]},{"k":"H5834","v":["עֶזְרָה","ʻEzrâh","ez-raw'","The same as H5833; Ezrah, an Israelite: - Ezrah."]},{"k":"H5835","v":["עֲזָרָה","ʻăzârâh","az-aw-raw'","From H5826 in its original meaning of surrounding; an inclosure; also a border: - court, settle."]},{"k":"H5836","v":["עֶזְרִי","ʻEzrîy","ez-ree'","From H5828; helpful; Ezri, an Israelite: - Ezri."]},{"k":"H5837","v":["עַזְרִיאֵל","ʻAzrîyʼêl","az-ree-ale'","From H5828 and H410; help of God; Azriel, the name of three Israelites: - Azriel."]},{"k":"H5838","v":["עֲזַרְיָה","ʻĂzaryâh","az-ar-yaw'","From H5826 and H3050; Jah has helped; Azarjah, the name of nineteen Israelites: - Azariah."]},{"k":"H5839","v":["עֲזַרְיָה","ʻĂzaryâh","az-ar-yaw'","(Chaldee); corresponding to H5838; Azarjah, one of Daniel’s companions: - Azariah."]},{"k":"H5840","v":["עַזְרִיקָם","ʻAzrîyqâm","az-ree-kawm'","From H5828 and active participle of H6965; help of an enemy; Azrikam, the name of four Israelites: - Azrikam."]},{"k":"H5841","v":["עַזָּתִי","ʻAzzâthîy","az-zaw-thee'","Patrial from H5804; an Azzathite or inhabitant of Azzah: - Gazathite, Gazite."]},{"k":"H5842","v":["עֵט","ʻêṭ","ate","From H5860 (contracted) in the sense of swooping, that is, side long stroke; a stylus or marking stick: - pen."]},{"k":"H5843","v":["עֵטָא","ʻêṭâʼ","ay-taw'","(Chaldee); from H3272; prudence: - counsel."]},{"k":"H5844","v":["עָטָה","ʻâṭâh","aw-taw'","A primitive root; to wrap, that is, cover, veil, clothe or roll: - array, self, be clad, (put a) cover (-ing, self), fill, put on, X surely, turn aside."]},{"k":"H5845","v":["עֲטִין","ʻăṭîyn","at-een'","From an unused root meaning apparently to contain; a receptacle (for milk, that is, pail; figuratively breast): - breast."]},{"k":"H5846","v":["עֲטִישָׁה","ʻăṭîyshâh","at-ee-shaw'","From an unused root meaning to sneeze; sneezing: - sneezing."]},{"k":"H5847","v":["עֲטַלֵּף","ʻăṭallêph","at-al-lafe'","Of uncertain derivation; a bat: - bat."]},{"k":"H5848","v":["עָטַף","ʻâṭaph","aw-taf'","A primitive root; to shroud, that is, clothe (whether transitively or reflexively); hence (from the idea of darkness) to languish: - cover (over), fail, faint, feebler, hide self, be overwhelmed, swoon."]},{"k":"H5849","v":["עָטַר","ʻâṭar","aw-tar'","A primitive root; to encircle (for attack or protection); especially to crown (literally or figuratively): - compass, crown."]},{"k":"H5850","v":["עֲטָרָה","ʻăṭârâh","at-aw-raw'","From H5849; a crown: - crown."]},{"k":"H5851","v":["עֲטָרָה","ʻĂṭârâh","at-aw-raw'","The same as H5850; Atarah, an Israelitess: - Atarah."]},{"k":"H5852","v":["עֲטָרוֹת","ʻĂṭârôwth","at-aw-roth'","Plural of H5850; Ataroth, the name (thus simply) of two places in Palestine: - Ataroth."]},{"k":"H5853","v":["עַטְרוֹת אַדָּר","ʻAṭrôwth ʼAddâr","at-roth' ad-dawr'","From the same as H5852 and H146; crowns of Addar; Atroth-Addar, a place in Palestine: - Ataroth-adar (-addar)."]},{"k":"H5854","v":["עַטְרוֹת בֵּית יוֹאָב","ʻAṭrôwth bêyth Yôwʼâb","at-roth' bayth yoawb'","From the same as H5852 and H1004 and H3097; crowns of the house of Joab; Atroth-beth-Joab, a place in Palestine: - Ataroth the house of Joab."]},{"k":"H5855","v":["עַטְרוֹת שׁוֹפָן","ʻAṭrôwth Shôwphân","at-roth' sho-fawn'","From the same as H5852 and a name otherwise unused (being from the same as H8226) meaning hidden; crowns of Shophan; Atroth-Shophan, a place in Palestine: - Atroth, Shophan [as if two places]."]},{"k":"H5856","v":["עִי","ʻîy","ee","From H5753; a ruin (as if overturned): - heap."]},{"k":"H5857","v":["עַי","ʻAy","ah'ee","For H5856; Ai, Aja or Ajath, a place in Palestine: - Ai, Aija, Aijath, Hai."]},{"k":"H5858","v":["עֵיבָל","ʻÊybâl","ay-bawl'","Perhaps from an unused root probably meaning to be bald; bare; Ebal, a mountain of Palestine: - Ebal."]},{"k":"H5859","v":["עִיּוֹן","ʻÎyôwn","ee-yone'","From H5856; ruin; Ijon, a place in Palestine: - Ijon."]},{"k":"H5860","v":["עִיט","ʻîyṭ","eet","A primitive root; to swoop down upon (literally or figuratively): - fly, rail."]},{"k":"H5861","v":["עַיִט","ʻayiṭ","ah'-yit","From H5860; a hawk or other bird of prey: - bird, fowl, ravenous (bird)."]},{"k":"H5862","v":["עֵיטָם","ʻÊyṭâm","ay-tawm'","From H5861; hawk ground; Etam, a place in Palestine: - Etam."]},{"k":"H5863","v":["עִיֵּי הָעֲבָרִים","ʻÎyêy hâ-ʻĂbârîym","ee-yay' haw-ab-aw-reem'","From the plural of H5856 and the plural of the active participle of H5674 with the article interposed; ruins of the passers; Ije-ha-Abarim, a place near Palestine: - Ije-abarim."]},{"k":"H5864","v":["עִיִּים","ʻÎyîym","ee-yeem'","Plural of H5856; ruins; Ijim, a place in the Desert: - Iim."]},{"k":"H5865","v":["עֵילוֹם","ʻêylôwm","ay-lome'","For H5769: - ever."]},{"k":"H5866","v":["עִילַי","ʻÎylay","ee-lah'-ee","From H5927; elevated; Ilai, an Israelite: - Ilai."]},{"k":"H5867","v":["עֵילָם","ʻÊylâm","ay-lawm'","Probably from H5956; hidden, that is, distant; Elam, a son of Shem, and his descendants, with their country; also of six Israelites: - Elam."]},{"k":"H5868","v":["עֲיָם","ʻăyâm","ah-yawm'","Of doubtful origin and authenticity; probably meaning strength: - mighty."]},{"k":"H5869","v":["עַיִן","ʻayin","ah'-yin","Probably a primitive word; an eye (literally or figuratively); by analogy a fountain (as the eye of the landscape): - affliction, outward appearance, + before, + think best, colour, conceit, + be content, countenance, + displease, eye ([-brow], [-d], -sight), face, + favour, fountain, furrow [from the margin], X him, + humble, knowledge, look, (+ well), X me, open (-ly), + (not) please, presence, + regard, resemblance, sight, X thee, X them, + think, X us, well, X you (-rselves)."]},{"k":"H5870","v":["עַיִן","ʻayin","ah'-yin","(Chaldee); corresponding to H5869; an eye: - eye."]},{"k":"H5871","v":["עַיִן","ʻAyin","ah'-yin","The same as H5869; fountain; Ajin, the name (thus simply) of two places in Palestine: - Ain."]},{"k":"H5872","v":["עֵין גֶּדִי","ʻÊyn Gedîy","ane geh'-dee","From H5869 and H1423; fountain of a kid; En-Gedi, a place in Palestine: - En-gedi."]},{"k":"H5873","v":["עֵין גַּנִּים","ʻÊyn Gannîym","ane gan-neem'","From H5869 and the plural of H1588; fountain of gardens; En-Gannim, a place in Palestine: - En-gannim."]},{"k":"H5874","v":["עֵין־דֹּאר","ʻÊyn-Dôʼr","ane-dore'","From H5869 and H1755; fountain of dwelling; En-Dor, a place in Palestine: - En-dor."]},{"k":"H5875","v":["עֵין הַקּוֹרֵא","ʻÊyn haq-Qôwrêʼ","ane-hak-ko-ray'","From H5869 and the active participle of H7121; fountain of One calling; En-hak-Kore, a place near Palestine: - En-hakhore."]},{"k":"H5876","v":["עֵין חַדָּה","ʻÊyn Chaddâh","ane khad-daw'","From H5869 and the feminine of a derivative from H2300; fountain of sharpness; En-Chaddah, a place in Palestine: - En-haddah."]},{"k":"H5877","v":["עֵין חָצוֹר","ʻÊyn Châtsôwr","ane khaw-tsore'","From H5869 and the same as H2674; fountain of a village; En-Chatsor, a place in Palestine: - En-hazor."]},{"k":"H5878","v":["עֵין חֲרֹד","ʻÊyn Chărôd","ane khar-ode'","From H5869 and a derivative of H2729; fountain of trembling; En-Charod, a place in Palestine: - well of Harod."]},{"k":"H5879","v":["עֵינַיִם","ʻÊynayim","ay-nah'-yim","Dual of H5869; double fountain; Enajim or Enam, a place in Palestine: - Enaim, openly (Gen. H38 : H21)."]},{"k":"H5880","v":["עֵין מִשְׁפָּט","ʻÊyn Mishpâṭ","ane mish-pawt'","From H5869 and H4941; fountain of judgment; En-Mishpat, a place near Palestine: - En-mishpat."]},{"k":"H5881","v":["עֵינָן","ʻÊynân","ay-nawn'","From H5869; having eyes; Enan, an Israelite: - Enan. Compare H2704."]},{"k":"H5882","v":["עֵין עֶגְלַיִם","ʻÊyn ʻEglayim","ane eg-lah'-yim","From H5869 and the dual of H5695; fountain of two calves; En-Eglajim, a place in Palestine: - En-eglaim."]},{"k":"H5883","v":["עֵין רֹגֵל","ʻÊyn Rôgêl","ane ro-gale'","From H5869 and the active participle of H7270; fountain of a traveller; En-Rogel, a place near Jerusalem: - En-rogel."]},{"k":"H5884","v":["עֵין רִמּוֹן","ʻÊyn Rimmôwn","ane rim-mone'","From H5869 and H7416; fountain of a pomegranate; En-Rimmon, a place in Palestine: - En-rimmon."]},{"k":"H5885","v":["עֵין שֶׁמֶשׁ","ʻÊyn Shemesh","ane sheh'-mesh","From H5869 and H8121; fountain of the sun; En-Shemesh, a place in Palestine: - En-Shemesh."]},{"k":"H5886","v":["עֵין תַּנִּים","ʻÊyn Tannîym","ane tan-neem'","From H5869 and the plural of H8565; fountain of jackals; En-Tannim, a pool near Jerusalem: - dragon well."]},{"k":"H5887","v":["עֵין תַּפּוּחַ","ʻÊyn Tappûwach","ane tap-poo'-akh","From H5869 and H8598; fountain of an apple tree; En-Tappuach, a place in Palestine: - En-tappuah."]},{"k":"H5888","v":["עָיֵף","ʻâyêph","aw-yafe'","A primitive root; to languish: - be wearied."]},{"k":"H5889","v":["עָיֵף","ʻâyêph","aw-yafe'","From H5888; languid: - faint, thirsty, weary."]},{"k":"H5890","v":["עֵיפָה","ʻêyphâh","ay-faw'","Feminine from H5774; obscurity (as if from covering): - darkness."]},{"k":"H5891","v":["עֵיפָה","ʻÊyphâh","ay-faw'","The same as H5890; Ephah, the name of a son of Midian, and of the region settled by him; also of an Israelite and of an Israelitess: - Ephah."]},{"k":"H5892","v":["עִיר","ʻîyr","eer","From H5782 a city (a place guarded by waking or a watch) in the widest sense (even of a mere encampment or post): - Ai [from margin], city, court [from margin], town."]},{"k":"H5893","v":["עִיר","ʻÎyr","eer","The same as H5892; Ir, an Israelite: - Ir."]},{"k":"H5894","v":["עִיר","ʻîyr","eer","(Chaldee); from a root corresponding to H5782; a watcher, that is, an angel (as guardian): - watcher."]},{"k":"H5895","v":["עַיִר","ʻayir","ah'-yeer","From H5782 in the sense of raising (that is, bearing a burden); properly a young ass (as just broken to a load); hence an ass colt: - (ass) colt, foal, young ass."]},{"k":"H5896","v":["עִירָא","ʻÎyrâʼ","ee-raw'","From H5782; wakefulness; Ira, the name of three Israelites: - Ira."]},{"k":"H5897","v":["עִירָד","ʻÎyrâd","ee-rawd'","From the same as H6166; fugitive; Irad, an antediluvian: - Irad."]},{"k":"H5898","v":["עִיר הַמֶּלַח","ʻÎyr ham-Melach","eer ham-meh'-lakh","From H5892 and H4417 with the article of substance interposed; city of (the) salt; Ir-ham-Melach, a place near Palestine: - the city of salt."]},{"k":"H5899","v":["עִיר הַתְּמָרִים","ʻÎyr hat-Tᵉmârîym","eer hat-tem-aw-reem'","From H5892 and the plural of H8558 with the article interposed; city of the palmtrees; Ir-hat-Temarim, a place in Palestine: - the city of palmtrees."]},{"k":"H5900","v":["עִירוּ","ʻÎyrûw","ee-roo'","From H5892; a citizen; Iru, an Israelite: - Iru."]},{"k":"H5901","v":["עִירִי","ʻÎyrîy","ee-ree'","From H5892; urbane; Iri, an Israelite: - Iri."]},{"k":"H5902","v":["עִירָם","ʻÎyrâm","ee-rawm'","From H5892; citywise; Iram, an Idumaean: - Iram."]},{"k":"H5903","v":["עֵירֹם","ʻêyrôm","ay-rome'","From H6191; nudity: - naked (-ness)."]},{"k":"H5904","v":["עִיר נָחָשׁ","ʻÎyr Nâchâsh","eer naw-khawsh'","From H5892 and H5175; city of a serpent; Ir-Nachash, a place in Palestine: - Ir-nahash."]},{"k":"H5905","v":["עִיר שֶׁמֶשׁ","ʻÎyr Shemesh","eer sheh'-mesh","From H5892 and H8121; city of the sun; Ir-Shemesh, a place in Palestine: - Ir-shemesh."]},{"k":"H5906","v":["עַיִשׁ","ʻAyish","ah'-yish","From H5789; the constellation of the Great Bear (perhaps from its migration through the heavens): - Arcturus."]},{"k":"H5907","v":["עַכְבּוֹר","ʻAkbôwr","ak-bore'","Probably for H5909; Akbor, the name of an Idumaean and two Israelites: - Achbor."]},{"k":"H5908","v":["עַכָּבִישׁ","ʻakkâbîysh","ak-kaw-beesh'","Probably from an unused root in the literal sense of entangling; a spider (as weaving a network): - spider."]},{"k":"H5909","v":["עַכְבָּר","ʻakbâr","ak-bawr'","Probably from the same as H5908 in the secondary sense of attacking; a mouse (as nibbling): - mouse."]},{"k":"H5910","v":["עַכּוֹ","ʻAkkôw","ak-ko'","Apparently from an unused root meaning to hem in; Akko (from its situation on a bay): - Accho."]},{"k":"H5911","v":["עָכוֹר","ʻÂkôwr","aw-kore'","From H5916; troubled; Akor, the name of a place in Palestine: - Achor."]},{"k":"H5912","v":["עָכָן","ʻÂkân","aw-kawn'","From an unused root meaning to trouble; troublesome; Akan, an Israelite: - Achan. Compare H5917."]},{"k":"H5913","v":["עָכַס","ʻâkaç","aw-kas'","A primitive root; properly to tie, specifically with fetters; but used only as denominative from H5914; to put on anklets: - make a tinkling ornament."]},{"k":"H5914","v":["עֶכֶס","ʻekeç","eh'-kes","From H5913; a fetter; hence an anklet: - stocks, tinkling ornament."]},{"k":"H5915","v":["עַכְסָה","ʻAkçâh","ak-saw'","Feminine of H5914; anklet; Aksah, an Israelitess: - Achsah."]},{"k":"H5916","v":["עָכַר","ʻâkar","aw-kar'","A primitive root; properly to roil water; figuratively to disturb or afflict: - trouble, stir."]},{"k":"H5917","v":["עָכָר","ʻÂkâr","aw-kawr'","From H5916; troublesome; Akar, an Israelite: - Achar. Compare H5912."]},{"k":"H5918","v":["עׇכְרָן","ʻOkrân","ok-rawn'","From H5916; muddler; Okran, an Israelite: - Ocran."]},{"k":"H5919","v":["עַכְשׁוּב","ʻakshûwb","ak-shoob'","Probably from an unused root meaning to coil; an asp (from lurking coiled up): - adder."]},{"k":"H5920","v":["עַל","ʻal","al","From H5927; properly the top; specifically the Highest (that is, God); also (adverbially) aloft, to Jehovah: - above, high, most High."]},{"k":"H5921","v":["עַל","ʻal","al","Properly the same as H5920 used as a preposition (in the singular or plural, often with prefix, or as conjugation with a particle following); above, over, upon, or against (yet always in this last relation with a downward aspect) in a great variety of applications: - above, according to (-ly), after, (as) against, among, and, X as, at, because of, beside (the rest of), between, beyond the time, X both and, by (reason of), X had the charge of, concerning for, in (that), (forth, out) of, (from) (off), (up-) on, over, than, through (-out), to, touching, X with."]},{"k":"H5922","v":["עַל","ʻal","al","(Chaldee); corresponding to H5921: - about, against, concerning, for, [there-] fore, from, in, X more, of, (there-, up-) on, (in-) to, + why with."]},{"k":"H5923","v":["עֹל","ʻôl","ole","From H5953; a yoke (as imposed on the neck), literally or figuratively: - yoke."]},{"k":"H5924","v":["עֵלָּא","ʻêllâʼ","ale-law'","(Chaldee); from H5922; above: - over."]},{"k":"H5925","v":["עֻלָּא","ʻUllâʼ","ool-law'","Feminine of H5923; burden; Ulla, an Israelite: - Ulla."]},{"k":"H5926","v":["עִלֵּג","ʻillêg","il-layg'","From an unused root meaning to stutter; stuttering: - stammerer."]},{"k":"H5927","v":["עָלָה","ʻâlâh","aw-law'","A primitive root; to ascend, intransitively (be high) or active (mount); used in a great variety of senses, primary and secondary, literally and figuratively: - arise (up). (cause to) ascend up, at once, break [the day] (up), bring (up), (cause to) burn, carry up, cast up, + shew, climb (up), (cause to, make to) come (up), cut off, dawn, depart, exalt, excel, fall, fetch up, get up, (make to) go (away, up), grow (over), increase, lay, leap, levy, lift (self) up, light, [make] up, X mention, mount up, offer, make to pay, + perfect, prefer, put (on), raise, recover, restore, (make to) rise (up), scale, set (up), shoot forth (up), (begin to) spring (up), stir up, take away (up), work."]},{"k":"H5928","v":["עֲלָה","ʻălâh","al-law'","(Chaldee); corresponding to H5930; a holocaust: - burnt offering."]},{"k":"H5929","v":["עָלֶה","ʻâleh","aw-leh'","From H5927; a leaf (as coming up on a tree); collectively foliage: - branch, leaf."]},{"k":"H5930","v":["עֹלָה","ʻôlâh","o-law'","Feminine active participle of H5927; a step or (collectively stairs, as ascending); usually a holocaust (as going up in smoke): - ascent, burnt offering (sacrifice), go up to. See also H5766."]},{"k":"H5931","v":["עִלָּה","ʻillâh","il-law'","(Chaldee); feminine from a root corresponding to H5927; a pretext (as arising artificially): - occasion."]},{"k":"H5932","v":["עַלְוָה","ʻalvâh","al-vaw'","From H5766; moral perverseness: - iniquity."]},{"k":"H5933","v":["עַלְוָה","ʻAlvâh","al-vaw'","The same as H5932; Alvah or Aljah, an Idumaean: - Aliah, Alvah."]},{"k":"H5934","v":["עָלוּם","ʻâlûwm","aw-loom'","Passive participle of H5956 in the denominative sense of H5958; (only in plural as abstraction) adolescence; figuratively vigor: - youth."]},{"k":"H5935","v":["עַלְוָן","ʻAlvân","al-vawn'","From H5927; lofty; Alvan or Aljan, an Idumaean: - Alian, Alvan."]},{"k":"H5936","v":["עֲלוּקָה","ʻălûwqâh","al-oo-kaw'","Feminine passive participle of an unused root meaning to suck; the leech: - horse-leech."]},{"k":"H5937","v":["עָלַז","ʻâlaz","aw-laz'","A primitive root; to jump for joy, that is, exult: - be joyful, rejoice, triumph."]},{"k":"H5938","v":["עָלֵז","ʻâlêz","aw-laze'","From H5937; exultant: - that rejoiceth."]},{"k":"H5939","v":["עֲלָטָה","ʻălâṭâh","al-aw-taw'","Feminine from an unused root meaning to cover; dusk: - dark, twilight."]},{"k":"H5940","v":["עֱלִי","ʻĕlîy","el-ee'","From H5927; a pestle (as lifted): - pestle."]},{"k":"H5941","v":["עֵלִי","ʻÊlîy","ay-lee'","From H5927; lofty; Eli, an Israelitish high priest: - Eli."]},{"k":"H5942","v":["עִלִּי","ʻillîy","il-lee'","From H5927; high, that is, comparatively: - upper."]},{"k":"H5943","v":["עִלַּי","ʻillay","il-lah'-ee","(Chaldee); corresponding to H5942; supreme (that is, God): - (most) high."]},{"k":"H5944","v":["עֲלִיָּה","ʻălîyâh","al-ee-yaw'","Feminine from H5927; something lofty, that is, a stair way; also a second story room (or even one on the roof); figuratively the sky: - ascent, (upper) chamber, going up, loft, parlour."]},{"k":"H5945","v":["עֶלְיוֹן","ʻelyôwn","el-yone'","From H5927; an elevation, that is, (adjectively) lofty (comparatively); as title, the Supreme: - (Most, on) high (-er, -est), upper (-most)."]},{"k":"H5946","v":["עֶלְיוֹן","ʻelyôwn","el-yone'","(Chaldee); corresponding to H5945; the supreme: - Most high."]},{"k":"H5947","v":["עַלִּיז","ʻallîyz","al-leez'","From H5937; exultant: - joyous, (that) rejoice (-ing)."]},{"k":"H5948","v":["עֲלִיל","ʻălîyl","al-eel'","From H5953 in the sense of completing; probably a crucible (as working over the metal): - furnace."]},{"k":"H5949","v":["עֲלִילָה","ʻălîylâh","al-ee-law'","From H5953 in the sense of effecting; an exploit (of God), or a performance (of man, often in a bad sense); by implication an opportunity: - act (-ion), deed, doing, invention, occasion, work."]},{"k":"H5950","v":["עֲלִילִיָּה","ʻălîylîyâh","al-ee-lee-yaw'","From H5949; (miraculous) execution: - work."]},{"k":"H5951","v":["עֲלִיצוּת","ʻălîytsûwth","al-ee-tsooth'","From H5970; exultation: - rejoicing."]},{"k":"H5952","v":["עַלִּית","ʻallîyth","al-leeth'","From H5927; a second story room: - chamber. Compare H5944."]},{"k":"H5953","v":["עָלַל","ʻâlal","aw-lal'","A primitive root; to effect thoroughly; specifically to glean (also figuratively); by implication (in a bad sense) to overdo, that is, maltreat, be saucy to, pain, impose (also literally): - abuse, affect, X child, defile, do, glean, mock, practise, throughly, work (wonderfully)."]},{"k":"H5954","v":["עֲלַל","ʻălal","al-al'","(Chaldee); corresponding to H5953 (in the sense of thrusting oneself in), to enter; causatively to introduce: - bring in, come in, go in."]},{"k":"H5955","v":["עֹלֵלָה","ʻôlêlâh","o-lay-law'","Feminine active participle of H5953; only in plural gleanings; by extension gleaning time: - (gleaning) (of the) grapes,grapegleanings."]},{"k":"H5956","v":["עָלַם","ʻâlam","aw-lam'","A primitive root; to veil from sight, that is, conceal (literally or figuratively): -    X any ways, blind, dissembler, hide (self), secret (thing)."]},{"k":"H5957","v":["עָלַם","ʻâlam","aw-lam'","(Chaldee); corresponding to H5769; remote time, that is, the future or past indefinitely; often adverbially forever: - for([n-]) ever (lasting), old."]},{"k":"H5958","v":["עֶלֶם","ʻelem","eh'-lem","From H5956; properly something kept out of sight (compare H5959), that is, a lad: - young man, stripling."]},{"k":"H5959","v":["עַלְמָה","ʻalmâh","al-maw'","Feminine of H5958; a lass (as veiled or private): - damsel, maid, virgin."]},{"k":"H5960","v":["עַלְמוֹן","ʻAlmôwn","al-mone'","From H5956; hidden; Almon, a place in Palestine: - See also H5963."]},{"k":"H5961","v":["עֲלָמוֹת","ʻĂlâmôwth","al-aw-moth'","Plural of H5959; properly girls, that is, the soprano or female voice, perhaps falsetto: - Alamoth."]},{"k":"H5962","v":["עַלְמִי","ʻAlmîy","al-mee'","(Chaldee); patrial from a name corresponding to H5867 contracted; an Elamite or inhabitant of Elam: - Elamite."]},{"k":"H5963","v":["עַלְמֹן דִּבְלָתָיְמָה","ʻAlmôn Diblâthâyᵉmâh","al-mone' dib-lawthaw'-yem-aw","From the same as H5960 and the dual of H1690 (compare H1015) with enclitic of direction; Almon towards Diblathajim; Almon Diblathajemah, a place in Moab: - Almon-diblathaim."]},{"k":"H5964","v":["עָלֶמֶת","ʻÂlemeth","aw-leh'-meth","From H5956; a covering; Alemeth, the name of a place in Palestine and two Israelites: - Alameth, Alemeth."]},{"k":"H5965","v":["עָלַס","ʻâlaç","aw-las'","A primitive root; to leap for joy, that is, exult, wave joyously: -    X peacock, rejoice, solace self."]},{"k":"H5966","v":["עָלַע","ʻâlaʻ","aw-lah'","A primitive root; to sip up: - suck up."]},{"k":"H5967","v":["עֲלַע","ʻălaʻ","al-ah'","(Chaldee); corresponding to H6763; a rib: - rib."]},{"k":"H5968","v":["עָלַף","ʻâlaph","aw-laf'","A primitive root; to veil or cover; figuratively to be languid: - faint, overlaid, wrap self."]},{"k":"H5969","v":["עֻלְפֶּה","ʻulpeh","ool-peh'","From H5968; an envelope, that is, (figuratively) mourning: - fainted."]},{"k":"H5970","v":["עָלַץ","ʻâlats","aw-lats'","A primitive root; to jump for joy, that is, exult: - be joyful, rejoice, triumph."]},{"k":"H5971","v":["עַם","ʻam","am","From H6004; a people (as a congregated unit); specifically a tribe (as those of Israel); hence (collectively) troops or attendants; figuratively a flock: - folk, men, nation, people."]},{"k":"H5972","v":["עַם","ʻam","am","(Chaldee); corresponding to H5971: - people."]},{"k":"H5973","v":["עִם","ʻim","eem","From H6004; adverb or preposition, with (that is, in conjunction with), in varied applications; specifically equally with; often with prepositional prefix (and then usually unrepresented in English): - accompanying, against, and, as (X long as), before, beside, by (reason of), for all, from (among, between), in, like, more than, of, (un-) to, with (-al)."]},{"k":"H5974","v":["עִם","ʻim","eem","(Chaldee); corresponding to H5973: - by, from, like, to (-ward), with."]},{"k":"H5975","v":["עָמַד","ʻâmad","aw-mad'","A primitive root; to stand, in various relations (literally and figuratively, intransitively and transitively): - abide (behind), appoint, arise, cease, confirm, continue, dwell, be employed, endure, establish, leave, make, ordain, be [over], place, (be) present (self), raise up, remain, repair, + serve, set (forth, over, -tle, up), (make to, make to be at a, with-) stand (by, fast, firm, still, up), (be at a) stay (up), tarry."]},{"k":"H5976","v":["עָמַד","ʻâmad","aw-mad'","From H4571; to shake: - be at a stand."]},{"k":"H5977","v":["עֹמֶד","ʻômed","o'-med","From H5975; a spot (as being fixed): - place, (+ where) stood, upright."]},{"k":"H5978","v":["עִמָּד","ʻimmâd","im-mawd'","Prolonged for H5973; along with: - against, by, from, in, + me, + mine, of, + that I take, unto, upon, with (-n)."]},{"k":"H5979","v":["עֶמְדָּה","ʻemdâh","em-daw'","From H5975; a station, that is, domicile: - standing."]},{"k":"H5980","v":["עֻמָּה","ʻummâh","oom-maw'","From H6004; conjunction, that is, society; mostly adverbial or prepositional (with prepositional prefix), near, beside, along with: - (over) against, at, beside, hard by, in points."]},{"k":"H5981","v":["עֻמָּה","ʻUmmâh","oom-maw'","The same as H5980; association; Ummah, a place in Palestine: - Ummah."]},{"k":"H5982","v":["עַמּוּד","ʻammûwd","am-mood'","From H5975; a column (as standing); also a stand, that is, platform: -    X apiece, pillar."]},{"k":"H5983","v":["עַמּוֹן","ʻAmmôwn","am-mone'","From H5971; tribal, that is, inbred; Ammon, a son of Lot; also his posterity and their country: - Ammon, Ammonites."]},{"k":"H5984","v":["עַמּוֹנִי","ʻAmmôwnîy","am-mo-nee'","Patronymic from H5983; an Ammonite or (adjectively) Ammonitish: - Ammonite (-s)."]},{"k":"H5985","v":["עַמּוֹנִית","ʻAmmôwnîyth","am-mo-neeth'","Feminine of H5984; an Ammonitess: - Ammonite (-ss)."]},{"k":"H5986","v":["עָמוֹס","ʻÂmôwç","aw-moce'","From H6006; burdensome; Amos, an Israelitish prophet: - Amos."]},{"k":"H5987","v":["עָמוֹק","ʻÂmôwq","aw-moke'","From H6009; deep; Amok, an Israelite: - Amok."]},{"k":"H5988","v":["עַמִּיאֵל","ʻAmmîyʼêl","am-mee-ale'","From H5971 and H410; people of God; Ammiel, the name of three or four Israelites: - Ammiel."]},{"k":"H5989","v":["עַמִּיהוּד","ʻAmmîyhûwd","am-mee-hood'","From H5971 and H1935; people of splendor; Ammihud, the name of three Israelites: - Ammihud."]},{"k":"H5990","v":["עַמִּיזָבָד","ʻAmmîyzâbâd","am-mee-zaw-bawd'","From H5971 and H2064; people of endowment; Ammizabad, an Israelite: - Ammizabad."]},{"k":"H5991","v":["עַמִּיחוּר","ʻAmmîychûwr","am-mee-khoor'","From H5971 and H2353; people of nobility; Ammichur, a Syrian prince: - Ammihud [from the margin]."]},{"k":"H5992","v":["עַמִּינָדָב","ʻAmmîynâdâb","am-mee-naw-dawb'","From H5971 and H5068; people of liberality; Amminadab, the name of four Israelites: - Amminadab."]},{"k":"H5993","v":["עַמִּי נָדִיב","ʻAmmîy Nâdîyb","am-mee' naw-deeb'","From H5971 and H5081; my people (is) liberal; Amminadib, probably an Israelite: - Amminadib."]},{"k":"H5994","v":["עֲמִיק","ʻămîyq","am-eek'","(Chaldee); corresponding to H6012; profound, that is, unsearchable: - deep."]},{"k":"H5995","v":["עָמִיר","ʻâmîyr","aw-meer'","From H6014; a bunch of grain: - handful, sheaf."]},{"k":"H5996","v":["עַמִּישַׁדַּי","ʻAmmîyshadday","am-mee-shad-dah'ee","From H5971 and H7706; people of (the) Almighty; Ammishaddai, an Israelite: - Ammishaddai."]},{"k":"H5997","v":["עָמִית","ʻâmîyth","aw-meeth'","From a primitive root meaning to associate; companionship; hence (concretely) a comrade or kindred man: - another, fellow, neighbour."]},{"k":"H5998","v":["עָמַל","ʻâmal","aw-mal'","A primitive root; to toil, that is, work severely and with irksomeness: - [take] labour (in)."]},{"k":"H5999","v":["עָמָל","ʻâmâl","aw-mawl'","From H5998; toil, that is, wearing effort; hence worry, whether of body or mind: - grievance (-vousness), iniquity, labour, mischief, miserable (-sery), pain (-ful), perverseness, sorrow, toil, travail, trouble, wearisome, wickedness."]},{"k":"H6000","v":["עָמָל","ʻÂmâl","aw-mawl'","The same as H5999; Amal, an Israelite: - Amal."]},{"k":"H6001","v":["עָמֵל","ʻâmêl","aw-male'","From H5998; toiling; concretely a laborer; figuratively sorrowful: - that laboureth, that is a misery, had taken [labour], wicked, workman."]},{"k":"H6002","v":["עֲמָלֵק","ʻĂmâlêq","am-aw-lake'","Probably of foreign origin; Amalek, a descendant of Esau; also his posterity and their country: - Amalek."]},{"k":"H6003","v":["עֲמָלֵקִי","ʻĂmâlêqîy","am-aw-lay-kee'","Patronymic from H6002; an Amalekite (or collectively the Amalekites) or descendant of Amalek: - Amalekite (-s)."]},{"k":"H6004","v":["עָמַם","ʻâmam","aw-mam'","A primitive root; to associate; by implication to overshadow (by huddling together): - become dim, hide."]},{"k":"H6005","v":["עִמָּנוּאֵל","ʻImmânûwʼêl","im-maw-noo-ale'","From H5973 and H410 with suffix pronoun inserted; with us (is) God; Immanuel, a name of Isaiah’s son: - Immanuel."]},{"k":"H6006","v":["עָמַס","ʻâmaç","aw-mas'","A primitive root; to load, that is, impose a burden (or figuratively infliction): - be borne, (heavy) burden (self), lade, load, put."]},{"k":"H6007","v":["עֲמַסְיָה","ʻĂmaçyâh","am-as-yaw'","From H6006 and H3050; Jah has loaded; Amasjah, an Israelite: - Amasiah."]},{"k":"H6008","v":["עַמְעָד","ʻAmʻâd","am-awd'","From H5971 and H5703; people of time; Amad, a place in Palestine: - Amad."]},{"k":"H6009","v":["עָמַק","ʻâmaq","aw-mak'","A primitive root; to be (causatively make) deep (literally or figuratively): - (be, have, make, seek) deep (-ly), depth, be profound."]},{"k":"H6010","v":["עֵמֶק","ʻêmeq","ay'-mek","From H6009; a vale (that is, broad depression).: - dale, vale, valley [often used as a part of proper names]. See also H1025."]},{"k":"H6011","v":["עֹמֶק","ʻômeq","o'-mek","From H6009; depth: - depth."]},{"k":"H6012","v":["עָמֵק","ʻâmêq","aw-make'","From H6009; deep (literally or figuratively): - deeper, depth, strange."]},{"k":"H6013","v":["עָמֹק","ʻâmôq","aw-moke'","From H6009; deep (literally or figuratively): -    (X exceeding) deep (thing)"]},{"k":"H6014","v":["עָמַר","ʻâmar","aw-mar'","A primitive root; properly apparently to heap; figuratively to chastise (as if piling blows); specifically (as denominative from H6016) to gather grain: - bind sheaves, make merchandise of."]},{"k":"H6015","v":["עֲמַר","ʻămar","am-ar'","(Chaldee); corresponding to H6785; wool: - wool."]},{"k":"H6016","v":["עֹמֶר","ʻômer","o'-mer","From H6014; properly a heap, that is, a sheaf; also an omer, as a dry measure: - omer, sheaf."]},{"k":"H6017","v":["עֲמֹרָה","ʻĂmôrâh","am-o-raw'","From H6014; a (ruined) heap; Amorah, a place in Palestine: - Gomorrah."]},{"k":"H6018","v":["עׇמְרִי","ʻOmrîy","om-ree'","From H6014; heaping; Omri, an Israelite: - Omri."]},{"k":"H6019","v":["עַמְרָם","ʻAmrâm","am-rawm'","Probably from H5971 and H7311; high people; Amram, the name of two Israelites: - Amram."]},{"k":"H6020","v":["עַמְרָמִי","ʻAmrâmîy","am-raw-mee'","Patronymic from H6019; an Amramite or descendant of Amram: - Amramite."]},{"k":"H6021","v":["עֲמָשָׂא","ʻĂmâsâʼ","am-aw-saw'","From H6006; burden; Amasa, the name of two Israelites: - Amasa."]},{"k":"H6022","v":["עֲמָשַׂי","ʻĂmâsay","am-aw-sah'-ee","From H6006; burdensome; Amasai, the name of three Israelites: - Amasai."]},{"k":"H6023","v":["עֲמַשְׁסַי","ʻĂmashçay","am-ash-sah'-ee","Probably form H6006; burdensome; Amashsay, an Israelite: - Amashai."]},{"k":"H6024","v":["עֲנָב","ʻĂnâb","an-awb'","From the same as H6025; fruit; Anab, a place in Palestine: - Anab."]},{"k":"H6025","v":["עֵנָב","ʻênâb","ay-nawb'","From an unused root probably meaning to bear fruit; a grape: - (ripe) grape, wine."]},{"k":"H6026","v":["עָנַג","ʻânag","aw-nag'","A primitive root; to be soft or pliable, that is, (figuratively) effeminate or luxurious: - delicate (-ness), (have) delight (self), sport self."]},{"k":"H6027","v":["עֹנֶג","ʻôneg","o'-neg","From H6026; luxury: - delight, pleasant."]},{"k":"H6028","v":["עָנֹג","ʻânôg","aw-nogue'","From H6026; luxurious: - delicate."]},{"k":"H6029","v":["עָנַד","ʻânad","aw-nad'","A primitive root; ot lace fast: - bind, tie."]},{"k":"H6030","v":["עָנָה","ʻânâh","aw-naw'","A primitive root; properly to eye or (generally) to heed, that is, pay attention; by implication to respond; by extension to begin to speak; specifically to sing, shout, testify, announce: - give account, afflict [by mistake for H6031], (cause to, give) answer, bring low [by mistake for H6031], cry, hear, Leannoth, lift up, say, X scholar, (give a) shout, sing (together by course), speak, testify, utter, (bear) witness. See also H1042, H1043."]},{"k":"H6031","v":["עָנָה","ʻânâh","aw-naw'","A primitive root (possibly rather identical with H6030 through the idea of looking down or browbeating); to depress literally or figuratively, transitively or intransitively (in various applications). (sing is by mistake for H6030.): - abase self, afflict (-ion, self), answer [by mistake for H6030], chasten self, deal hardly with, defile, exercise, force, gentleness, humble (self), hurt, ravish, sing [by mistake for H6030], speak [by mistake for H6030], submit self, weaken, X in any wise."]},{"k":"H6032","v":["עֲנָה","ʻănâh","an-aw'","(Chaldee); corresponding to H6030: - answer, speak."]},{"k":"H6033","v":["עֲנָה","ʻănâh","an-aw'","(Chaldee); corresponding to H6031: - poor."]},{"k":"H6034","v":["עֲנָה","ʻĂnâh","an-aw'","Probably form H6030; an answer; Anah, the name of two Edomites and one Edomitess: - Anah."]},{"k":"H6035","v":["עָנָו","ʻânâv","aw-nawv'","The second form is by intermixture with H6041; from H6031; depressed (figuratively), in mind (gentle) or circumstances (needy, especially saintly): - humble, lowly, meek, poor`. Compare H6041."]},{"k":"H6036","v":["עָנוּב","ʻÂnûwb","aw-noob'","Passive participle from the same as H6025; borne (as fruit); Anub, an Israelite: - Anub."]},{"k":"H6037","v":["עַנְוָה","ʻanvâh","an-vaw'","Feminine of H6035; mildness (royal); also (concretely) oppressed: - gentleness, meekness."]},{"k":"H6038","v":["עֲנָוָה","ʻănâvâh","an-aw-vaw'","From H6035; condescension, human and subjective (modesty), or divine and objective (clemency): - gentleness, humility, meekness."]},{"k":"H6039","v":["עֱנוּת","ʻĕnûwth","en-ooth'","From H6031; affliction: - affliction."]},{"k":"H6040","v":["עֳנִי","ʻŏnîy","on-ee'","From H6031; depression, that is, misery: - afflicted (-ion), trouble."]},{"k":"H6041","v":["עָנִי","ʻânîy","aw-nee'","From H6031; depressed, in mind or circumstances (practically the same as H6035 subjectively and H6041 objectively): - afflicted, humble`, lowly`, needy, poor."]},{"k":"H6042","v":["עֻנִּי","ʻUnnîy","oon-nee'","From H6031; afflicted; Unni, the name of two Israelites: - Unni."]},{"k":"H6043","v":["עֲנָיָה","ʻĂnâyâh","an-aw-yaw'","From H6030; Jah has answered; Anajah, the name of two Israelites: - Anaiah."]},{"k":"H6044","v":["עָנִים","ʻÂnîym","aw-neem'","For the plural of H5869; fountains; Anim, a place in Palestine: - Anim."]},{"k":"H6045","v":["עִנְיָן","ʻinyân","in-yawn'","From H6031; ado, that is, (generally) employment or (specifically) an affair: - business, travail."]},{"k":"H6046","v":["עָנֵם","ʻÂnêm","aw-name'","From the dual of H5869; two fountains; Anem, a place in Palestine: - Anem."]},{"k":"H6047","v":["עֲנָמִים","ʻĂnâmîym","an-aw-meem'","As if plural of some Egyptian word; Anamim, a son of Mizraim and his descendants, with their country: - Anamim."]},{"k":"H6048","v":["עֲנַמֶּלֶךְ","ʻĂnammelek","an-am-meh'-lek","Of foreign origin; Anammelek, an Assyrian deity: - Anammelech."]},{"k":"H6049","v":["עָנַן","ʻânan","aw-nan'","A primitive root; to cover; used only as denominative from H6051, to cloud over; figuratively to act covertly, that is, practise magic: -    X bring, enchanter, Meonemin, observe (-r of) times, soothsayer, sorcerer."]},{"k":"H6050","v":["עֲנַן","ʻănan","an-an'","(Chaldee); corresponding to H6051: - cloud."]},{"k":"H6051","v":["עָנָן","ʻânân","aw-nawn'","From H6049; a cloud (as covering the sky), that is, the nimbus or thunder cloud: - cloud (-y)."]},{"k":"H6052","v":["עָנָן","ʻÂnân","aw-nawn'","The same as H6051; cloud; Anan, an Israelite: - Anan."]},{"k":"H6053","v":["עֲנָנָה","ʻănânâh","an-aw-naw'","Feminine of H6051; cloudiness: - cloud."]},{"k":"H6054","v":["עֲנָנִי","ʻĂnânîy","an-aw-nee'","From H6051; cloudy; Anani, an Israelite: - Anani."]},{"k":"H6055","v":["עֲנַנְיָה","ʻĂnanyâh","an-an-yaw'","From H6049 and H3050; Jah has covered; Ananjah, the name of an Israelite and of a place in Palestine: - Ananiah."]},{"k":"H6056","v":["עֲנַף","ʻănaph","an-af'","(Chaldee); corresponding to H6057: - bough, branch."]},{"k":"H6057","v":["עָנָף","ʻânâph","aw-nawf'","From an unused root meaning to cover; a twig (as covering the limbs): - bough, branch."]},{"k":"H6058","v":["עָנֵף","ʻânêph","aw-nafe'","From the same as H6057; branching: - full of branches."]},{"k":"H6059","v":["עָנַק","ʻânaq","aw-nak'","A primitive root; properly to choke; used only as denominative from H6060, to collar, that is, adorn with a necklace; figuratively to fit out with supplies: - compass about as a chain, furnish, liberally."]},{"k":"H6060","v":["עָנָק","ʻânâq","aw-nawk'","From H6059; a necklace (as if strangling): - chain."]},{"k":"H6061","v":["עָנָק","ʻÂnâq","aw-nawk'","The same as H6060; Anak, a Canaanite: - Anak."]},{"k":"H6062","v":["עֲנָקִי","ʻĂnâqîy","an-aw-kee'","Patronymic from H6061; an Anakite or descendant of Anak: - Anakim."]},{"k":"H6063","v":["עָנֵר","ʻÂnêr","aw-nare'","Probably for H5288; Aner, an Amorite, also a place in Palestine: - Aner."]},{"k":"H6064","v":["עָנַשׁ","ʻânash","aw-nash'","A primitive root; properly to urge; by implication to inflict a penalty, specifically to fine: - amerce, condemn, punish, X surely."]},{"k":"H6065","v":["עֲנַשׁ","ʻănash","an-ash'","H1 (Chaldee); coresp. to H6066; a mulct: - confiscation."]},{"k":"H6066","v":["עֹנֶשׁ","ʻônesh","o'-nesh","From H6064; a fine: - punishment, tribute."]},{"k":"H6067","v":["עֲנָת","ʻĂnâth","an-awth'","From H6030; answer; Anath, an Israelite: - Anath."]},{"k":"H6068","v":["עֲנָתוֹת","ʻĂnâthôwth","an-aw-thoth'","Plural of H6067; Anathoth, the name of two Israelites, also of a place in Palestine: - Anathoth."]},{"k":"H6069","v":["עַנְתֹתִי","ʻAnthôthîy","an-tho-thee'","Patrial from H6068; an Antothite or inhabitant of Anathoth: - of Anathoth, Anethothite, Anetothite, Antothite."]},{"k":"H6070","v":["עַנְתֹתִיָּה","ʻAnthôthîyâh","an-tho-thee-yaw'","From the same as H6068 and H3050; answers of Jah; Anthothijah, an Israelite: - Antothijah."]},{"k":"H6071","v":["עָסִיס","ʻâçîyç","aw-sees'","From H6072; must or fresh grape juice (as just trodden out): - juice, new (sweet) wine."]},{"k":"H6072","v":["עָסַס","ʻâçaç","aw-sas'","A primitive root; to squeeze out juice; figuratively to trample: - tread down."]},{"k":"H6073","v":["עֳפֶא","ʻŏpheʼ","of-eh'","From an unused root meaning to cover; a bough (as covering the tree): - branch."]},{"k":"H6074","v":["עֳפִי","ʻŏphîy","of-ee'","(Chaldee); corresponding to H6073; a twig; bough, that is, (collectively) foliage: - leaves."]},{"k":"H6075","v":["עָפַל","ʻâphal","aw-fal'","A primitive root; to swell; figuratively be elated: - be lifted up, presume."]},{"k":"H6076","v":["עֹפֶל","ʻôphel","o'-fel","From H6075; a turior; also a mound, that is, fortress: - emerod, fort, strong hold, tower."]},{"k":"H6077","v":["עֹפֶל","ʻÔphel","o'-fel","The same as H6076; Ophel, a ridge in Jerusalem: - Ophel."]},{"k":"H6078","v":["עׇפְנִי","ʻOphnîy","of-nee'","From an unused noun (denoting a place in Palestine; from an unused root of uncertain meaning); an Ophnite (collectively) or inhabitant of Ophen: - Ophni."]},{"k":"H6079","v":["עַפְעַף","ʻaphʻaph","af-af'","From H5774; an eyelash (as fluttering); figuratively morning ray: - dawning, eye-lid."]},{"k":"H6080","v":["עָפַר","ʻâphar","aw-far'","A primitive root; meaning either to be gray or perhaps rather to pulverize; used only as denominative from H6083, to be dust: - cast [dust]."]},{"k":"H6081","v":["עֵפֶר","ʻÊpher","ay'-fer","Probably a variation of H6082; gazelle; Epher, the name of an Arabian and of two Israelites: - Epher."]},{"k":"H6082","v":["עֹפֶר","ʻôpher","o'-fer","From H6080; a fawn (from the dusty color): - young roe [hart]."]},{"k":"H6083","v":["עָפָר","ʻâphâr","aw-fawr'","From H6080; dust (as powdered or gray); hence clay, earth, mud: - ashes, dust, earth, ground, morter, powder, rubbish."]},{"k":"H6084","v":["עׇפְרָה","ʻOphrâh","of-raw'","Feminine of H6082; female fawn; Ophrah, the name of an Israelite and of two places in Palestine: - Ophrah."]},{"k":"H6085","v":["עֶפְרוֹן","ʻEphrôwn","ef-rone'","From the same as H6081; fawn like; Ephron, the name of a Canaanite and of two places in Palestine: - Ephron, Ephrain [from the margin]."]},{"k":"H6086","v":["עֵץ","ʻêts","ates","From H6095; a tree (from its firmness); hence wood (plural sticks): -    + carpenter, gallows, helve, + pine, plank, staff, stalk, stick, stock, timber, tree, wood."]},{"k":"H6087","v":["עָצַב","ʻâtsab","aw-tsab'","A primitive root; properly to carve, that is, fabricate or fashion; hence (in a bad sense) to worry, pain or anger: - displease, grieve, hurt, make, be sorry, vex, worship, wrest."]},{"k":"H6088","v":["עֲצַב","ʻătsab","ats-ab'","(Chaldee); corresponding to H6087; to afflict: - lamentable."]},{"k":"H6089","v":["עֶצֶב","ʻetseb","eh'-tseb","From H6087; an earthen vessel; usually (painful) toil; also a pang (whether of body or mind): - grievous, idol, labor, sorrow."]},{"k":"H6090","v":["עֹצֶב","ʻôtseb","o'-tseb","A variation of H6089; an idol (as fashioned); also pain (bodily or mental): - idol, sorrow, X wicked."]},{"k":"H6091","v":["עָצָב","ʻâtsâb","aw-tsawb'","From H6087; an (idolatrous) image: - idol, image."]},{"k":"H6092","v":["עָצֵב","ʻâtsêb","aw-tsabe'","From H6087; a (hired) workman: - labour."]},{"k":"H6093","v":["עִצָּבוֹן","ʻitstsâbôwn","its-tsaw-bone'","From H6087; worrisomeness, that is, labor or pain: - sorrow, toil."]},{"k":"H6094","v":["עַצֶּבֶת","ʻatstsebeth","ats-tseh'-beth","From H6087; an idol; also a pain or wound: - sorrow, wound."]},{"k":"H6095","v":["עָצָה","ʻâtsâh","aw-tsaw'","A primitive root; properly to fasten (or make firm), that is, to close (the eyes): - shut."]},{"k":"H6096","v":["עָצֶה","ʻâtseh","aw-tseh'","From H6095; the spine (as giving firmness to the body): - back bone."]},{"k":"H6097","v":["עֵצָה","ʻêtsâh","ay-tsaw'","Feminine of H6086; timber: - trees."]},{"k":"H6098","v":["עֵצָה","ʻêtsâh","ay-tsaw'","From H3289; advice; by implication plan; also prudence: - advice, advisement, counsel ([-lor]), purpose."]},{"k":"H6099","v":["עָצוּם","ʻâtsûwm","aw-tsoom'","Passive participle of H6105; powerful (specifically a paw); by implication numerous: -  + feeble, great, mighty, must, strong."]},{"k":"H6100","v":["עֶצְיוֹן גֶּבֶר","ʻEtsyôwn Geber","ets-yone' gheh'ber","From H6096 and H1397; backbone like of a man; Etsjon-Geber, a place on the Red Sea: - Ezion-gaber, Ezion-geber."]},{"k":"H6101","v":["עָצַל","ʻâtsal","aw-tsal'","A primitive root; to lean idly, that is, to be indolent or slack: - be slothful."]},{"k":"H6102","v":["עָצֵל","ʻâtsêl","aw-tsale'","From H6101; indolent: - slothful, sluggard."]},{"k":"H6103","v":["עַצְלָה","ʻatslâh","ats-law'","Feminine of H6102; (as abstraction) indolence: - slothfulness."]},{"k":"H6104","v":["עַצְלוּת","ʻatslûwth","ats-looth'","From H6101; indolence: - idleness."]},{"k":"H6105","v":["עָצַם","ʻâtsam","aw-tsam'","A primitive root; to bind fast, that is, close (the eyes); intransitively to be (causatively make) powerful or numerous; denominatively (from H6106) to craunch the bones: - break the bones, close, be great, be increased, be (wax) mighty (-ier), be more, shut, be (-come, make) strong (-er)."]},{"k":"H6106","v":["עֶצֶם","ʻetsem","eh'tsem","From H6105; a bone (as strong); by extension the body; figuratively the substance, that is, (as pronoun) selfsame: - body, bone, X life, (self-) same, strength, X very."]},{"k":"H6107","v":["עֶצֶם","ʻEtsem","eh'-tsem","The same as H6106; bone; Etsem, a place in Palestine: - Azem, Ezem."]},{"k":"H6108","v":["עֹצֶם","ʻôtsem","o'-tsem","From H6105; power; hence body: - might, strong, substance."]},{"k":"H6109","v":["עׇצְמָה","ʻotsmâh","ots-maw'","Feminine of H6108; powerfulness; by extension numerousness: - abundance, strength."]},{"k":"H6110","v":["עַצֻּמָה","ʻatstsumâh","ats-tsoo-maw'","Feminine of H6099; a bulwark, that is, (figuratively) argument: - strong."]},{"k":"H6111","v":["עַצְמוֹן","ʻAtsmôwn","ats-mone'","From H6107; bone like; Atsmon, a place near Palestine: - Azmon."]},{"k":"H6112","v":["עֵצֶן","ʻêtsen","ay'-tsen","From an unused root meaning to be sharp or strong; a spear: - Eznite [from the margin]."]},{"k":"H6113","v":["עָצָר","ʻâtsâr","aw-tsar'","A primitive root; to inclose; by analogy to hold back; also to maintain, rule, assemble: -  X be able, close up, detain, fast, keep (self close, still), prevail, recover, refrain, X reign, restrain, retain, shut (up), slack, stay, stop, withhold (self)."]},{"k":"H6114","v":["עֶצֶר","ʻetser","eh'-tser","From H6113; restraint: -  + magistrate."]},{"k":"H6115","v":["עֹצֶר","ʻôtser","o'-tser","From H6113; closure; also constraint: -  X barren, oppression, X prison."]},{"k":"H6116","v":["עֲצָרָה","ʻătsârâh","ats-aw-raw'","From H6113; an assembly, especially on a festival or holiday: - (solemn) assembly (meeting)."]},{"k":"H6117","v":["עָקַב","ʻâqab","aw-kab'","A primitive root; properly to swell out or up; used only as denominative from H6119, to seize by the heel; figuratively to circumvent (as if tripping up the heels); also to restrain (as if holding by the heel): - take by the heel, stay, supplant, X utterly."]},{"k":"H6118","v":["עֵקֶב","ʻêqeb","ay'-keb","From H6117 in the sense of H6119; a heel, that is, (figuratively) the last of anything (used adverbially for ever); also result, that is, compensation; and so (adverbially with preposition or relatively) on account of: -    X because, by, end, for, if, reward."]},{"k":"H6119","v":["עָקֵב","ʻâqêb","aw-kabe'","From H6117; a heel (as protuberant); hence a track; figuratively the rear (of an army). (lier in wait is by mistake for H6120.): - heel, [horse-] hoof, last, lier in wait [by mistake for H6120], (foot-) step."]},{"k":"H6120","v":["עָקֵב","ʻâqêb","aw-kabe'","From H6117 in its denominative sense; a lier in wait. (heel is by mistake for H6119.): - heel [by mistake for H6119]."]},{"k":"H6121","v":["עָקֹב","ʻâqôb","aw-kobe'","From H6117; in the original sense, a knoll (as swelling up); in the denominative sense (transitively) fraudulent or (intransitively) tracked: - crooked, deceitful, polluted."]},{"k":"H6122","v":["עׇקְבָה","ʻoqbâh","ok-baw'","Feminine of an unused form from H6117 meaning a trick; trickery: - subtilty."]},{"k":"H6123","v":["עָקַד","ʻâqad","aw-kad'","A primitive root; to tie with thongs: - bind."]},{"k":"H6124","v":["עָקֹד","ʻâqôd","aw-kode'","From H6123; striped (with bands): - ring straked."]},{"k":"H6125","v":["עָקָה","ʻâqâh","aw-kaw'","From H5781; constraint: - oppression."]},{"k":"H6126","v":["עַקּוּב","ʻAqqûwb","ak-koob'","From H6117; insidious; Akkub, the name of five Israelites: - Akkub."]},{"k":"H6127","v":["עָקַל","ʻâqal","aw-kal'","A primitive root; to wrest: - wrong."]},{"k":"H6128","v":["עֲקַלְקַל","ʻăqalqal","ak-al-kal'","From H6127; winding: - by [-way], crooked way."]},{"k":"H6129","v":["עֲקַלָּתוֹן","ʻăqallâthôwn","ak-al-law-thone'","From H6127; tortuous: - crooked."]},{"k":"H6130","v":["עָקָן","ʻÂqân","aw-kawn'","From an unused root meaning to twist; tortuous; Akan, an Idumaean: - Akan. Compare H3292."]},{"k":"H6131","v":["עָקַר","ʻâqar","aw-kar'","A primitive root; to pluck up (especially by the roots); specifically to hamstring; figuratively to exterminate: - dig down, hough, pluck up, root up."]},{"k":"H6132","v":["עֲקַר","ʻăqar","ak-ar'","(Chaldee); corresponding to H6131: - pluck up by the roots."]},{"k":"H6133","v":["עֵקֶר","ʻêqer","ay'-ker","From H6131; figuratively a transplanted person, that is, naturalized citizen: - stock."]},{"k":"H6134","v":["עֵקֶר","ʻÊqer","ay'-ker","The same as H6133; Eker, an Israelite: - Eker."]},{"k":"H6135","v":["עָקָר","ʻâqâr","aw-kawr'","From H6131; sterile (as if extirpated in the generative organs): -    (X male or female) barren (woman)."]},{"k":"H6136","v":["עִקַּר","ʻiqqar","ik-kar'","(Chaldee); from H6132; a stock: - stump."]},{"k":"H6137","v":["עַקְרָב","ʻaqrâb","ak-rawb'","Of uncertain derivation; a scorpion; figuratively a scourge or knotted whip: - scorpion."]},{"k":"H6138","v":["עֶקְרוֹן","ʻEqrôwn","ek-rone'","From H6131; eradication; Ekron, a place in Palestine: - Ekron."]},{"k":"H6139","v":["עֶקְרוֹנִי","ʻEqrôwnîy","ek-ro-nee'","Patrial from H6138; an Ekronite or inhabitant of Ekron: - Ekronite."]},{"k":"H6140","v":["עָקַשׁ","ʻâqash","aw-kash'","A primitive root; to knot or distort; figuratively to pervert (act or declare perverse): - make crooked, (prove, that is) perverse (-rt)."]},{"k":"H6141","v":["עִקֵּשׁ","ʻiqqêsh","ik-kashe'","From H6140; distorted; hence false: - crooked, froward, perverse."]},{"k":"H6142","v":["עִקֵּשׁ","ʻIqqêsh","ik-kashe'","The same as H6141; perverse; Ikkesh, an Israelite: - Ikkesh."]},{"k":"H6143","v":["עִקְּשׁוּת","ʻiqqᵉshûwth","ik-kesh-ooth'","From H6141; perversity: -  X froward."]},{"k":"H6144","v":["עָר","ʻÂr","awr","The same as H5892; a city; Ar, a place in Moab: - Ar."]},{"k":"H6145","v":["עָר","ʻâr","awr","From H5782; a foe (as watchful for mischief): - enemy."]},{"k":"H6146","v":["עָר","ʻâr","awr","(Chaldee); corresponding to H6145: - enemy."]},{"k":"H6147","v":["עֵר","ʻÊr","ayr","From H5782; watchful; Er, the name of two Israelites: - Er."]},{"k":"H6148","v":["עָרַב","ʻârab","aw-rab'","A primitive root; to braid, that is, intermix; technically to traffic (as if by barter); also to give or be security (as a kind of exchange): - engage, (inter-) meddle (with), mingle (self), mortgage, occupy, give pledges, be (-come, put in) surety, undertake."]},{"k":"H6149","v":["עָרֵב","ʻârêb","aw-rabe'","A primitive root (rather identical with H6148 through the idea of close association); to be agreeable: - be pleasant (-ing), take pleasure in, be sweet."]},{"k":"H6150","v":["עָרַב","ʻârab","aw-rab'","A primitive root (rather identical with H6148 through the idea of covering with a texture); to grow dusky at sundown: - be darkened, (toward) evening."]},{"k":"H6151","v":["עֲרַב","ʻărab","ar-ab'","(Chaldee); corresponding to H6148; to commingle: - mingle (self), mix."]},{"k":"H6152","v":["עֲרָב","ʻĂrâb","ar-awb'","From H6150 in the figuratively sense of sterility; Arab (that is, Arabia), a country East of Palestine: - Arabia."]},{"k":"H6153","v":["עֶרֶב","ʻereb","eh'-reb","From H6150; dusk: -  + day, even (-ing, tide), night."]},{"k":"H6154","v":["עֵרֶב","ʻêreb","ay'-reb","The second form used in 1Ki_10:15 with the article prefixed); from H6148; the web (or transverse threads of cloth); also a mixture, (or mongrel race): - Arabia, mingled people, mixed (multitude), woof."]},{"k":"H6155","v":["עָרָב","ʻârâb","aw-rawb'","From H6148; a willow (from the use of osiers as wattles): - willow."]},{"k":"H6156","v":["עָרֵב","ʻârêb","aw-rabe'","From H6149; pleasant: - sweet."]},{"k":"H6157","v":["עָרֹב","ʻârôb","aw-robe'","From H6148; a mosquito (from its swarming): - divers sorts or flies, swarm."]},{"k":"H6158","v":["עֹרֵב","ʻôrêb","o-rabe'","From H6150; a raven (from its dusky hue): - raven."]},{"k":"H6159","v":["עֹרֵב","ʻÔrêb","o-rabe'","The same as H6158; Oreb, the name of a Midianite and of a cliff near the Jordan: - Oreb."]},{"k":"H6160","v":["עֲרָבָה","ʻărâbâh","ar-aw-baw'","From H6150 (in the sense of sterility); a desert; especially (with the article prefixed) the (generally) sterile valley of the Jordan and its continuation to the Red Sea: - Arabah, champaign, desert, evening, heaven, plain, wilderness. See also H1026."]},{"k":"H6161","v":["עֲרֻבָּה","ʻărubbâh","ar-oob-baw'","Feminine passive participle of H6048 in the sense of a bargain or exchange; something given as security, that is, (literally) a token (of safety) or (metaphorically) a bondsman: - pledge, surety."]},{"k":"H6162","v":["עֲרָבוֹן","ʻărâbôwn","ar-aw-bone'","From H6148 (in the sense of exchange); a pawn (given as security): - pledge."]},{"k":"H6163","v":["עֲרָבִי","ʻĂrâbîy","ar-aw-bee'","Patrial from H6152; an Arabian or inhabitant of Arab (that is, Arabia): - Arabian."]},{"k":"H6164","v":["עַרְבָתִי","ʻArbâthîy","ar-baw-thee'","Patrial from H1026; an Arbathite or inhabitant of (Beth-) Arabah: - Arbathite."]},{"k":"H6165","v":["עָרַג","ʻârag","aw-rag'","A primitive root; to long for: - cry, pant."]},{"k":"H6166","v":["עֲרָד","ʻĂrâd","ar-awd'","From an unused root meaning to sequester itself; fugitive; Arad, the name of a place near Palestine, also of a Canaanite and an Israelite: - Arad."]},{"k":"H6167","v":["עֲרָד","ʻărâd","ar-awd'","(Chaldee); corresponding to H6171; an onager: - wild ass."]},{"k":"H6168","v":["עָרָה","ʻârâh","aw-raw'","A primitive root; to be (causatively make) bare; hence to empty, pour out, demolish: - leave destitute, discover, empty, make naked, pour (out), rase, spread self, uncover."]},{"k":"H6169","v":["עָרָה","ʻârâh","aw-raw'","Feminine from H6168; a naked (that is, level) plot: - paper reed."]},{"k":"H6170","v":["עֲרוּגָה","ʻărûwgâh","ar-oo-gaw'","Feminine passive participle of H6165; something piled up (as if (figuratively) raised by mental aspiration), that is, a parterre: - bed, furrow."]},{"k":"H6171","v":["עָרוֹד","ʻârôwd","aw-rode'","From the same as H6166; an onager (from his lonesome habits): - wild ass."]},{"k":"H6172","v":["עֶרְוָה","ʻervâh","er-vaw'","From H6168; nudity, literally (especially the pudenda) or figuratively (disgrace, blemish): - nakedness, shame, unclean (-ness)."]},{"k":"H6173","v":["עַרְוָה","ʻarvâh","ar-vaw'","(Chaldee); corresponding to H6172; nakedness, that is, (figuratively) impoverishment: - dishonour."]},{"k":"H6174","v":["עָרוֹם","ʻârôwm","aw-rome'","From H6191 (in its original sense); nude, either partially or totally: - naked."]},{"k":"H6175","v":["עָרוּם","ʻârûwm","aw-room'","Passive participle of H6191; cunning (usually in a bad sense): - crafty, prudent, subtil."]},{"k":"H6176","v":["עֲרוֹעֵר","ʻărôwʻêr","ar-o-ayr'","From H6209 reduplicated; a juniper (from its nudity of situation): - heath."]},{"k":"H6177","v":["עֲרוֹעֵר","ʻĂrôwʻêr","ar-o-ayr'","The same as H6176; nudity of situation; Aroer, the name of three places in or near Palestine: - Aroer."]},{"k":"H6178","v":["עָרוּץ","ʻârûwts","aw-roots'","Passive participle of H6206; feared, that is, (concretely) a horrible place or chasm: - cliffs."]},{"k":"H6179","v":["עֵרִי","ʻÊrîy","ay-ree'","From H5782; watchful; Eri, an Israelite: - Eri."]},{"k":"H6180","v":["עֵרִי","ʻÊrîy","ay-ree'","Patronymic of H6179; an Erite (collectively) or descendant of Eri: - Erites."]},{"k":"H6181","v":["עֶרְיָה","ʻeryâh","er-yaw'","For H6172; nudity: - bare, naked, X quite."]},{"k":"H6182","v":["עֲרִיסָה","ʻărîyçâh","ar-ee-saw'","From an unused root meaning to comminute; meal: - dough."]},{"k":"H6183","v":["עָרִיף","ʻârîyph","aw-reef'","From H6201; the sky (as drooping at the horizon): - heaven."]},{"k":"H6184","v":["עָרִיץ","ʻârîyts","aw-reets'","From H6206; fearful, that is, powerful or tyrannical: - mighty, oppressor, in great power, strong, terrible, violent."]},{"k":"H6185","v":["עֲרִירִי","ʻărîyrîy","ar-e-ree'","From H6209; bare, that is, destitute (of children): - childless."]},{"k":"H6186","v":["עָרַךְ","ʻârak","aw-rak'","A primitive root; to set in a row, that is, arrange, put in order (in a very wide variety of applications): - put (set) (the battle, self) in array, compare, direct, equal, esteem, estimate, expert [in war], furnish, handle, join [battle], ordain, (lay, put, reckon up, set) (in) order, prepare, tax, value."]},{"k":"H6187","v":["עֵרֶךְ","ʻêrek","eh'rek","From H6186; a pile, equipment, estimate: - equal, estimation, (things that are set in) order, price, proportion, X set at, suit, taxation, X valuest."]},{"k":"H6188","v":["עָרֵל","ʻârêl","aw-rale'","A primitive root; properly to strip; but used only as denominative from H6189; to expose or remove the prepuce, whether literally (to go naked) or figuratively (to refrain from using): - count uncircumcised, foreskin to be uncovered."]},{"k":"H6189","v":["עָרֵל","ʻârêl","aw-rale'","From H6188; properly exposed, that is, projecting loose (as to the prepuce); used only technically uncircumcised (that is, still having the prepuce uncurtailed): - uncircumcised (person)."]},{"k":"H6190","v":["עׇרְלָה","ʻorlâh","or-law'","Feminine of H6189; the prepuce: - foreskin, + uncircumcised."]},{"k":"H6191","v":["עָרַם","ʻâram","aw-ram'","A primitive root; properly to be (or make) bare; but used only in the derived sense (through the idea perhaps of smoothness) bo be cunning (usually in a bad sense): -    X very, beware, take crafty [counsel], be prudent, deal subtilly."]},{"k":"H6192","v":["עָרַם","ʻâram","aw-ram'","A primitive root; to pile up: - gather together."]},{"k":"H6193","v":["עֹרֶם","ʻôrem","o'-rem","From H6191; a stratagem: - craftiness."]},{"k":"H6194","v":["עָרֵם","ʻârêm","aw-rame'","From H6192; a heap; specifically a sheaf: - heap (of corn), sheaf."]},{"k":"H6195","v":["עׇרְמָה","ʻormâh","or-maw'","Feminine of H6193; trickery; or (in a good sense) discretion: - guile, prudence, subtilty, wilily, wisdom."]},{"k":"H6196","v":["עַרְמוֹן","ʻarmôwn","ar-mone'","Probably from H6191; the plane tree (from its smooth and shed bark): - chestnut tree."]},{"k":"H6197","v":["עֵרָן","ʻÊrân","ay-rawn'","Probably from H5782; watchful; Eran, an Israelite: - Eran."]},{"k":"H6198","v":["עֵרָנִי","ʻÊrânîy","ay-raw-nee'","Patronymic from H6197; an Eranite or descendant (collectively) of Eran: - Eranites."]},{"k":"H6199","v":["עַרעָר","ʻarʻâr","ar-awr'","From H6209; naked, that is, (figuratively) poor: - destitute. See also H6176."]},{"k":"H6200","v":["עֲרֹעֵרִי","ʻĂrôʻêrîy","ar-o-ay-ree'","Patronymic from H6177; an Aroerite or inhabitant of Aroer: - Aroerite."]},{"k":"H6201","v":["עָרַף","ʻâraph","aw-raf'","A primitive root; to droop; hence to drip: - drop (down)."]},{"k":"H6202","v":["עָרַף","ʻâraph","aw-raf'","A primitive root (rather identical with H6201 through the idea of sloping); properly to bend downward; but used only as a denominative from H6203, to break the neck; hence (figuratively) to destroy: - that is beheaded, break down, break (cut off, strike off) neck."]},{"k":"H6203","v":["עֹרֶף","ʻôreph","o-ref'","From H6202; the nape or back of the neck (as declining); hence the back generally (whether literally or figuratively): - back ([stiff-]) neck ([-ed])."]},{"k":"H6204","v":["עׇרְפָּה","ʻOrpâh","or-paw'","Feminine of H6203; mane; Orpah, a Moabitess: - Orpah."]},{"k":"H6205","v":["עֲרָפֶל","ʻărâphel","ar-aw-fel'","Probably from H6201; gloom (as of a lowering sky): - (gross, thick) dark (cloud, -ness)."]},{"k":"H6206","v":["עָרַץ","ʻârats","aw-rats'","A primitive root; to awe or (intransitively) to dread; hence to harass: - be affrighted (afraid, dread, feared, terrified), break, dread, fear, oppress, prevail, shake terribly."]},{"k":"H6207","v":["עָרַק","ʻâraq","aw-rak'","A primitive root; to gnaw, that is, (figuratively) eat (by hyberbole); also (participle) a pain: - fleeing, sinew."]},{"k":"H6208","v":["עַרְקִי","ʻArqîy","ar-kee'","Patrial from an unused name meaning a tush; an Arkite or inhabitant of Erek: - Arkite."]},{"k":"H6209","v":["עָרַר","ʻârar","aw-rar'","A primitive root; to bare; figuratively to demolish: - make bare, break, raise up [perhaps by clerical error for raze], X utterly."]},{"k":"H6210","v":["עֶרֶשׂ","ʻeres","eh'res","From an unused root meaning perhaps to arch; a couch (properly with a canopy): - bed (-stead), couch."]},{"k":"H6211","v":["עָשׁ","ʻâsh","awsh","From H6244; a moth: - moth. (The second form is Chaldee, from H6212 and is translated grass)"]},{"k":"H6212","v":["עֶשֶׂב","ʻeseb","eh'seb","From an unused root meaning to glisten (or be green); grass (or any tender shoot): - grass, herb."]},{"k":"H6213","v":["עָשָׂה","ʻâsâh","aw-saw'","A primitive root; to do or make, in the broadest sense and widest application: - accomplish, advance, appoint, apt, be at, become, bear, bestow, bring forth, bruise, be busy, X certainly, have the charge of, commit, deal (with), deck, + displease, do, (ready) dress (-ed), (put in) execute (-ion), exercise, fashion, + feast, [fight-] ing man, + finish, fit, fly, follow, fulfil, furnish, gather, get, go about, govern, grant, great, + hinder, hold ([a feast]), X indeed, + be industrious, + journey, keep, labour, maintain, make, be meet, observe, be occupied, offer, + officer, pare, bring (come) to pass, perform, practise, prepare, procure, provide, put, requite, X sacrifice, serve, set, shew, X sin, spend, X surely, take, X thoroughly, trim, X very, + vex, be [warr-] ior, work (-man), yield, use."]},{"k":"H6214","v":["עֲשָׂהאֵל","ʻĂsâhʼêl","as-aw-ale'","From H6213 and H410; God has made; Asahel, the name of four Israelites: - Asahel."]},{"k":"H6215","v":["עֵשָׂו","ʻÊsâv","ay-sawv'","Apparently a form of the passive participle of H6213 in the original sense of handling; rough (that is, sensibly felt); Esav, a son of Isaac, including his posterity: - Esau."]},{"k":"H6216","v":["עָשׁוֹק","ʻâshôwq","aw-shoke'","From H6231; oppressive (as noun, a tyrant): - oppressor."]},{"k":"H6217","v":["עָשׁוּק","ʻâshûwq","aw-shook'","Passive participle of H6231; used in plural masculine as abstraction tyranny: - oppressed (-ion). [Doubtful.]"]},{"k":"H6218","v":["עָשׂוֹר","ʻâsôwr","aw-sore'","From H6235; ten; by abbreviation ten strings, and so a decachord: - (instrument of) ten (strings, -th)."]},{"k":"H6219","v":["עָשׁוֹת","ʻâshôwth","aw-shoth'","From H6245; shining, that is, polished: - bright."]},{"k":"H6220","v":["עַשְׁוָת","ʻAshvâth","ash-vawth'","For H6219; bright; Ashvath, an Israelite: - Ashvath."]},{"k":"H6221","v":["עֲשִׂיאֵל","ʻĂsîyʼêl","as-ee-ale'","From H6213 and H410; made of God; Asiel, an Israelite: - Asiel."]},{"k":"H6222","v":["עֲשָׂיָה","ʻĂsâyâh","aw-saw-yaw'","From H6213 and H3050; Jah has made; Asajah, the name of three or four Israelites: - Asaiah."]},{"k":"H6223","v":["עָשִׁיר","ʻâshîyr","aw-sheer'","From H6238; rich, whether literally or figuratively (noble): - rich (man)"]},{"k":"H6224","v":["עֲשִׂירִי","ʻăsîyrîy","as-ee-ree'","From H6235; tenth; by abbreviation tenth month or (feminine) part: - tenth (participle)."]},{"k":"H6225","v":["עָשַׁן","ʻâshan","aw-shan'","A primitive root; to smoke, whether literally or figuratively: - be angry (be on a) smoke."]},{"k":"H6226","v":["עָשֵׁן","ʻâshên","aw-shane'","From H6225; smoky: - smoking."]},{"k":"H6227","v":["עָשָׁן","ʻâshân","aw-shawn'","From H6225; smoke, literally or figuratively (vapor, dust, anger): - smoke (-ing)."]},{"k":"H6228","v":["עָשָׁן","ʻÂshân","aw-shawn'","The same as H6227; Ashan, a place in Palestine: - Ashan."]},{"k":"H6229","v":["עָשַׂק","ʻâsaq","aw-sak","A primitive root (identical with H6231); to press upon, that is, quarrel: - strive with."]},{"k":"H6230","v":["עֵשֶׂק","ʻêseq","ay'sek","From H6229; strife: - Esek."]},{"k":"H6231","v":["עָשַׁק","ʻâshaq","aw-shak'","A primitive root (compare H6229); to press upon, that is, oopress, defraud, violate, overflow: - get deceitfully, deceive, defraud, drink up, (use) oppress ([-ion], -or), do violence (wrong)."]},{"k":"H6232","v":["עֵשֶׁק","ʻÊsheq","ay-shek'","From H6231; oppression; Eshek, an Israelite: - Eshek."]},{"k":"H6233","v":["עֹשֶׁק","ʻôsheq","o'-shek","From H6231; injury, fraud, (subjectively) distress, (concretely) unjust gain: - cruelly, extortion, oppression, thing [deceitfully gotten]."]},{"k":"H6234","v":["עׇשְׁקָה","ʻoshqâh","osh-kaw'","Feminine of H6233; anguish: - oppressed."]},{"k":"H6235","v":["עֶשֶׂר","ʻeser","eh'ser","From H6237; ten (as an accumulation to the extent of the digits): - ten, [fif-, seven-] teen."]},{"k":"H6236","v":["עֲשַׂר","ʻăsar","as-ar'","(Chaldee); corresponding to H6235; ten: - ten, + twelve."]},{"k":"H6237","v":["עָשַׂר","ʻâsar","aw-sar'","A primitive root (identical with H6238); to accumulate; but used only as denominative from H6235; to tithe, that is, take or give a tenth: -    X surely, give (take) the tenth, (have, take) tithe (-ing, -s), X truly."]},{"k":"H6238","v":["עָשַׁר","ʻâshar","aw-shar'","A primitive root; properly to accumulate; chiefly (specifically) to grow (causatively make) rich: - be (-come, en-, make, make self, wax) rich, make [H1 Kings H22 : H48 margin]. See H6240."]},{"k":"H6239","v":["עֹשֶׁר","ʻôsher","o'-sher","From H6238; wealth: -  X far [richer], riches."]},{"k":"H6240","v":["עָשָׂר","ʻâsâr","aw-sawr'","For H6235; ten (only in combination), that is, the “teens”; also (ordinal) a “teenth”: - [eigh-, fif-, four-, nine-, seven-, six-, thir-] teen (-th), + eleven (-th), + sixscore thousand, + twelve (-th)."]},{"k":"H6241","v":["עִשָּׂרוֹן","ʻissârôwn","is-saw-rone'","From H6235; (fractional) a tenth part: - tenth deal."]},{"k":"H6242","v":["עֶשְׂרִים","ʻesrîym","es-reem'","From H6235; twenty; also (ordinal) twentieth: - [six-] score, twenty (-ieth)."]},{"k":"H6243","v":["עֶשְׂרִין","ʻesrîyn","es-reen'","(Chaldee); corresponding to H6242: - twenty."]},{"k":"H6244","v":["עָשֵׁשׁ","ʻâshêsh","aw-shaysh'","A primitive root; probably to shrink, that is, fail: - be consumed."]},{"k":"H6245","v":["עָשַׁת","ʻâshath","aw-shath'","A primitive root; probably to be sleek, that is, glossy; hence (through the idea of polishing) to excogitate (as if forming in the mind): - shine, think."]},{"k":"H6246","v":["עֲשִׁת","ʻăshith","ash-eeth'","(Chaldee); corresponding to H6245; to purpose: - think."]},{"k":"H6247","v":["עֶשֶׁת","ʻesheth","eh'-sheth","From H6245; a fabric: - bright."]},{"k":"H6248","v":["עַשְׁתּוּת","ʻashtûwth","ash-tooth'","From H6245; cogitation: - thought."]},{"k":"H6249","v":["עַשְׁתֵּי","ʻashtêy","ash-tay'","Apparently masculine plural construction of H6247 in the sense of an after thought; (used only in connection with H6240 in lieu of H259) eleven or (ordinal) eleventh: -  + eleven (-th)."]},{"k":"H6250","v":["עֶשְׁתֹּנָה","ʻeshtônâh","esh-to-naw'","From H6245; thinking: - thought."]},{"k":"H6251","v":["עַשְׁתְּרָה","ʻashtᵉrâh","ash-ter-aw'","Probably from H6238; increase: - flock."]},{"k":"H6252","v":["עַשְׁתָּרוֹת","ʻAshtârôwth","ash-taw-roth'","Plural of H6251; Ashtaroth, the name of a Sidonian deity, and of a place East of the Jordan: - Ashtaroth, Astaroth. See also H1045, H6253, H6255."]},{"k":"H6253","v":["עַשְׁתֹּרֶת","ʻAshtôreth","ash-to'reth","Probably for H6251; Ashtoreth, the Phoenician goddess of love (and increase): - Ashtoreth."]},{"k":"H6254","v":["עַשְׁתְּרָתִי","ʻAshtᵉrâthîy","ash-ter-aw-thee'","Patrial from H6252; an Ashterathite or inhabitant of Ashtaroth: - Ashterathite."]},{"k":"H6255","v":["עַשְׁתְּרֹת קַרְנַיִם","ʻAshtᵉrôth Qarnayim","ash-ter-oth' kar-nah'-yim","From H6252 and the dual of H7161; Ashtaroth of (the) double horns (a symbol of the deity); Ashteroth Karnaim, a place East of the Jordan: - Ashtoreth Karnaim."]},{"k":"H6256","v":["עֵת","ʻêth","ayth","From H5703; time, especially (adverbially with preposition) now, when, etc.: -    + after, [al-] ways, X certain, + continually, + evening, long, (due) season, so [long] as, [even-, evening-, noon-] tide, ([meal-], what) time, when."]},{"k":"H6257","v":["עָתַד","ʻâthad","aw-thad'","A primitive root; to prepare: - make fit, be ready to become."]},{"k":"H6258","v":["עַתָּה","ʻattâh","at-taw'","From H6256; at this time, whether adverbial, conjugational or expletive: - henceforth, now, straightway, this time, whereas."]},{"k":"H6259","v":["עָתוּד","ʻâthûwd","aw-thood'","Passive participle of H6257; prepared: - ready, treasures."]},{"k":"H6260","v":["עַתּוּד","ʻattûwd","at-tood'","From H6257; prepared, that is, full grown; spoken only (in plural) of he goats, or (figuratively) leaders of the people: - chief one, (he) goat, ram."]},{"k":"H6261","v":["עִתִּי","ʻittîy","it-tee'","From H6256; timely: - fit."]},{"k":"H6262","v":["עַתַּי","ʻAttay","at-tah'ee","From H6261; Attai, the name of three Israelites: - Attai."]},{"k":"H6263","v":["עֲתִיד","ʻăthîyd","ath-eed'","(Chaldee); corresponding to H6264; prepared: - ready."]},{"k":"H6264","v":["עָתִיד","ʻâthîyd","aw-theed'","From H6257; prepared; by implication skilful; feminine plural the future; also treasure: - things that shall come, ready, treasures."]},{"k":"H6265","v":["עֲתָיָה","ʻĂthâyâh","ath-aw-yaw'","From H5790 and H3050; Jah has helped; Athajah, an Israelite: - Athaiah."]},{"k":"H6266","v":["עָתִיק","ʻâthîyq","aw-theek'","From H6275; properly antique, that is, venerable or splendid: - durable."]},{"k":"H6267","v":["עַתִּיק","ʻattîyq","at-teek'","From H6275; removed, that is, weaned; also antique: - ancient, drawn."]},{"k":"H6268","v":["עַתִּיק","ʻattîyq","at-teek'","(Chaldee); corresponding to H6267; venerable: - ancient."]},{"k":"H6269","v":["עֲתָךְ","ʻĂthâk","ath-awk'","From an unused root meaning to sojourn; lodging; Athak, a place in Palestine: - Athach."]},{"k":"H6270","v":["עַתְלַי","ʻAthlay","ath-lah'ee","From an unused root meaning to compress; constringent; Athlai, an Israelite: - Athlai."]},{"k":"H6271","v":["עֲתַלְיָה","ʻĂthalyâh","ath-al-yaw'","From the same as H6270 and H3050; Jah has constrained; Athaljah, the name of an Israelitess and two Israelites: - Athaliah."]},{"k":"H6272","v":["עָתַם","ʻâtham","aw-tham","A primitive root; probably to glow, that is, (figuratively) be desolated: - be darkened."]},{"k":"H6273","v":["עׇתְנִי","ʻOthnîy","oth-nee'","From an unused root meaning to force; forcible; Othni, an Israelite: - Othni."]},{"k":"H6274","v":["עׇתְנִיאֵל","ʻOthnîyʼêl","oth-nee-ale'","From the same as H6273 and H410; force of God; Othniel, an Israelite: - Othniel."]},{"k":"H6275","v":["עָתַק","ʻâthaq","aw-thak'","A primitive root; to remove (intransitively or transitively); figuratively to grow old; specifically to transcribe: - copy out, leave off, become (wax) old, remove."]},{"k":"H6276","v":["עָתֵק","ʻâthêq","aw-thake'","From H6275; antique, that is, valued: - durable."]},{"k":"H6277","v":["עָתָק","ʻâthâq","aw-thawk'","From H6275 in the sense of license; impudent: - arrogancy, grievous (hard) things, stiff."]},{"k":"H6278","v":["עֵת קָצִין","ʻÊth Qâtsîyn","ayth kaw-tseen'","From H6256 and H7011; time of a judge; Eth-Katsin, a place in Palestine. (Formed by including the directive enclitic.): - Ittah-kazin [by includ. directive enclitic]."]},{"k":"H6279","v":["עָתַר","ʻâthar","aw-thar'","A primitive root (rather denominative from H6281); to burn incense in worship, that is, intercede (reciprocally listen to prayer): - intreat, (make) pray (-er)."]},{"k":"H6280","v":["עָתַר","ʻâthar","aw-thar'","A primitive root; to be (causatively make) abundant: - deceitful, multiply."]},{"k":"H6281","v":["עֶתֶר","ʻEther","eh'ther","From H6280; abundance; Ether, a place in Palestine: - Ether."]},{"k":"H6282","v":["עָתָר","ʻâthâr","aw-thawr'","From H6280; incense (as increasing to a volume of smoke); hence (from H6279) a worshipper: - suppliant, thick."]},{"k":"H6283","v":["עֲתֶרֶת","ʻăthereth","ath-eh'-reth","From H6280; copiousness: - abundance."]},{"k":"H6284","v":["פָּאָה","pâʼâh","paw-aw'","A primitive root; to puff, that is, blow away: - scatter into corners."]},{"k":"H6285","v":["פֵּאָה","pêʼâh","pay-aw'","Feminine of H6311; properly mouth in a figurative sense, that is, direction, region, extremity: - corner, end, quarter, side."]},{"k":"H6286","v":["פָּאַר","pâʼar","paw-ar'","A primitive root; to gleam, that is, (causatively) embellish; figuratively to boast; also to explain (that is, make clear) oneself; denominatively from H6288, to shake a tree: - beautify, boast self, go over the boughs, glorify (self), glory, vaunt self."]},{"k":"H6287","v":["פְּאֵר","pᵉʼêr","peh-ayr'","From H6286; an embellishment, that is, fancy head dress: - beauty, bonnet, goodly, ornament, tire."]},{"k":"H6288","v":["פְּאֹרָה","pᵉʼôrâh","peh-o-raw'","From H6286; properly ornamentation, that is, (plural) foliage (including the limbs) as bright green: - bough, branch, sprig."]},{"k":"H6289","v":["פָּארוּר","pâʼrûwr","paw-roor'","From H6286; properly illuminated, that is, a glow; as noun, a flush (of anxiety): - blackness."]},{"k":"H6290","v":["פָּארָן","Pâʼrân","paw-rawn'","From H6286; ornamental; Paran, a desert of Arabia: - Paran."]},{"k":"H6291","v":["פַּג","pag","pag","From an unused root meaning to be torpid, that is, crude; an unripe fig: - green fig."]},{"k":"H6292","v":["פִּגּוּל","piggûwl","pig-gool'","From an unused root meaning to stink; properly fetid, that is, (figuratively) unclean (ceremonially): - abominable (-tion, thing)."]},{"k":"H6293","v":["פָּגַע","pâgaʻ","paw-gah'","A primitive root; to impinge, by accident or violence, or (figuratively) by importunity: - come (betwixt), cause to entreat, fall (upon), make intercession, intercessor, intreat, lay, light [upon], meet (together), pray, reach, run."]},{"k":"H6294","v":["פֶּגַע","pegaʻ","peh'-gah","From H6293; impact (casual): - chance, occurrent."]},{"k":"H6295","v":["פַּגְעִיאֵל","Pagʻîyʼêl","pag-ee-ale'","From H6294 and H410; accident of God; Pagiel, an Israelite: - Pagiel."]},{"k":"H6296","v":["פָּגַר","pâgar","paw-gar'","A primitive root; to relax, that is, become exhausted: - be faint."]},{"k":"H6297","v":["פֶּגֶר","peger","peh'gher","From H6296; a carcase (as limp), whether of man or beast; figuratively an idolatrous image: - carcase, corpse, dead body."]},{"k":"H6298","v":["פָּגַשׁ","pâgash","paw-gash'","A primitive root; to come in contact with, whether by accident or violence; figuratively to concur: - meet (with, together)."]},{"k":"H6299","v":["פָּדָה","pâdâh","paw-daw'","A primitive root; to sever, that is, ransom; generally to release, preserve: -  X at all, deliver, X by any means, ransom, (that are to be, let be) redeem (-ed), rescue, X surely."]},{"k":"H6300","v":["פְּדַהְאֵל","Pᵉdahʼêl","ped-ah-ale'","From H6299 and H410; God has ransomed; Pedahel, an Israelite: - Pedahel."]},{"k":"H6301","v":["פְּדָהצוּר","Pᵉdâhtsûwr","ped-aw-tsoor'","From H6299 and H6697; a rock (that is, God) has ransomed; Pedahtsur, an Israelite: - Pedahzur."]},{"k":"H6302","v":["פָּדוּי","pâdûwy","paw-doo'ee","Passive participle of H6299; ransomed (and so occuring under H6299); as abstraction (in plural masculine) a ransom: - (that are) to be (that were) redeemed."]},{"k":"H6303","v":["פָּדוֹן","Pâdôwn","paw-done'","From H6299; ransom; Padon, one of the Nethinim: - Padon."]},{"k":"H6304","v":["פְּדוּת","pᵉdûwth","ped-ooth'","From H6929; distinction; also deliverance: - division, redeem, redemption."]},{"k":"H6305","v":["פְּדָיָה","Pᵉdâyâh","ped-aw-yaw'","From H6299 and H3050; Jah has ransomed; Pedajah, the name of six Israelites: - Pedaiah."]},{"k":"H6306","v":["פִּדְיוֹם","pidyôwm","pid-yome'","From H6299; a ransom: - ransom, that were redeemed, redemption."]},{"k":"H6307","v":["פַּדָּן","Paddân","pad-dawn'","From an unused root meaning to extend; a plateau; or the second form which is from the same and H758; the table land of Aram; Paddan or Paddan-Aram, a region of Syria: - Padan, Padan-aram."]},{"k":"H6308","v":["פָּדַע","pâdaʻ","paw-dah'","A primitive root; to retrieve: - deliver."]},{"k":"H6309","v":["פֶּדֶר","peder","peh'der","From an unused root meaning to be greasy; suet: - fat."]},{"k":"H6310","v":["פֶּה","peh","peh","From H6284; the mouth (as the means of blowing), whether literally or figuratively (particularly speech); specifically edge, portion or side; adverbially (with preposition) according to: - accord (-ing as, -ing to), after, appointment, assent, collar, command (-ment), X eat, edge, end, entry, + file, hole, X in, mind, mouth, part, portion, X (should) say (-ing), sentence, skirt, sound, speech, X spoken, talk, tenor, X to, + two-edged, wish, word."]},{"k":"H6311","v":["פֹּה","pôh","po","Probably from a primitive inseparable particle פּ p (the second form; of demonstrative force) and H1931; this place (French, icil), that is, here or hence: - here, hither, the one (other, this, that) side."]},{"k":"H6312","v":["פּוּאָה","Pûwʼâh","poo-aw'","From H6284; a blast; Puah or Puvvah, the name of two Israelites: - Phuvah, Pua, Puah."]},{"k":"H6313","v":["פּוּג","pûwg","poog","A primitive root; to be sluggish: - cease, be feeble, faint, be slacked."]},{"k":"H6314","v":["פּוּגָה","pûwgâh","poo-gaw'","From H6313; intermission: - rest."]},{"k":"H6315","v":["פּוּחַ","pûwach","poo'akh","A primitive root; to puff, that is, blow with the breath or air; hence to fan (as a breeze), to utter, to kindle (a fire), to scoff: - blow (upon), break, puff, bring into a snare, speak, utter."]},{"k":"H6316","v":["פּוּט","Pûwṭ","poot","Of foreign origin; Put, a son of Ham, also the name of his descendants or thier region, and of a Persian tribe: - Phut, Put."]},{"k":"H6317","v":["פּוּטִיאֵל","Pûwṭîyʼêl","poo-tee-ale'","From an unused root (probably meaning to disparage) and H410; contempt of God; Putiel, an Israelite: - Putiel."]},{"k":"H6318","v":["פּוֹטִיפַר","Pôwṭîyphar","po-tee-far'","Of Egyptian derivation; Potiphar, an Egyptian: - Potiphar."]},{"k":"H6319","v":["פּוֹטִי פֶרַע","Pôwṭîy Pheraʻ","po-tee feh'-rah","Of Egyptian derivation; Poti-Phera, an Egyptian: - Poti-pherah."]},{"k":"H6320","v":["פּוּךְ","pûwk","pook","From an unused root meaning to paint; dye (specifically stibium for the eyes): - fair colours, glistering, paint [-ed] (-ing)."]},{"k":"H6321","v":["פּוֹל","pôwl","pole","From an unused root meaning to be thick; a bean (a plump): - beans."]},{"k":"H6322","v":["פּוּל","Pûwl","pool","Of foreign origin; Pul, the name of an Assyrian king and of an Ethiopian tribe: - Pul."]},{"k":"H6323","v":["פּוּן","pûwn","poon","A primitive root meaning to turn, that is, be perplexed: - be distracted."]},{"k":"H6324","v":["פּוּנִי","Pûwnîy","poo-nee'","Patronymic from an unused name meaning a turn; a Punite (collectively) or descendant of an unknown Pun: - Punites."]},{"k":"H6325","v":["פּוּנֹן","Pûwnôn","poo-none'","From H6323; perplexity; Punon, a place in the Desert: - Punon."]},{"k":"H6326","v":["פּוּעָה","Pûwʻâh","poo-aw'","From an unused root meaning to glitter; brilliancy; Puah, an Israelitess: - Puah."]},{"k":"H6327","v":["פּוּץ","pûwts","poots","A primitive root; to dash in pieces, literally or figuratively (especially to disperse): - break (dash, shake) in (to) pieces, cast (abroad), disperse (selves), drive, retire, scatter (abroad), spread abroad."]},{"k":"H6328","v":["פּוּק","pûwq","pook","A primitive root; to waver: - stumble, move."]},{"k":"H6329","v":["פּוּק","pûwq","pook","A primitive root (rather identical with H6328 through the idea of dropping out; compare H5312); to issue, that is, furnish; causatively to secure; figuratively to succeed: - afford, draw out, further, get, obtain."]},{"k":"H6330","v":["פּוּקָה","pûwqâh","poo-kaw'","From H6328; a stumbling block: - grief."]},{"k":"H6331","v":["פּוּר","pûwr","poor","A primitive root; to crush: - break, bring to nought, X utterly take."]},{"k":"H6332","v":["פּוּר","Pûwr","poor","From H6331; a lot (as by means of a broken piece): - Pur, Purim."]},{"k":"H6333","v":["פּוּרָה","pûwrâh","poo-raw'","From H6331; a wine press (as crushing the grapes): - winepress."]},{"k":"H6334","v":["פּוֹרָתָא","Pôwrâthâʼ","po-raw-thaw'","Of Persian origin; Poratha, a son of Haman: - Poratha."]},{"k":"H6335","v":["פּוּשׁ","pûwsh","poosh","A primitive root; to spread; figuratively act proudly: - grow up, be grown fat, spread selves, be scattered."]},{"k":"H6336","v":["פּוּתִי","Pûwthîy","poo-thee'","Patronymic from an unused name meaning a hinge; a Puthite (collectively) or descendant of an unknown Puth. (As if from H6312.): - Puhites [as if from H6312]."]},{"k":"H6337","v":["פָּז","pâz","pawz","From H6388; pure (gold); hence gold itself (as refined): - fine (pure) gold."]},{"k":"H6338","v":["פָּזַז","pâzaz","paw-zaz'","A primitive root; to refine (gold): - best [gold]."]},{"k":"H6339","v":["פָּזַז","pâzaz","paw-zaz'","A primitive root (rather identical with H6338); to solidify (as if by refining); also to spring (as if separating the limbs): - leap, be made strong."]},{"k":"H6340","v":["פָּזַר","pâzar","paw-zar'","A primitive root; to scatter, whether in enmity or bounty: - disperse, scatter (abroad)."]},{"k":"H6341","v":["פַּח","pach","pakh","From H6351; a (metallic) sheet (as pounded thin); also a spring net (as spread out like a lamina): - gin, (thin) plate, snare."]},{"k":"H6342","v":["פָּחַד","pâchad","paw-kkad'","A primitive root; to be startled (by a sudden alarm); hence to fear in general: - be afraid, stand in awe, (be in) fear, make to shake."]},{"k":"H6343","v":["פַּחַד","pachad","pakh'-ad","From H6342; a (sudden) alarm (properly the object feared, by implication the feeling): - dread (-ful), fear, (thing) great [fear, -ly feared], terror."]},{"k":"H6344","v":["פַּחַד","pachad","pakh'-ad","The same as H6343; a testicle (as a cause of shame akin to fear): - stone."]},{"k":"H6345","v":["פַּחְדָּה","pachdâh","pakh-daw'","Feminine of H6343; alarm (that is, awe): - fear."]},{"k":"H6346","v":["פֶּחָה","pechâh","peh-khaw'","Of foreign origin; a prefect (of a city or small district): - captain, deputy, governor."]},{"k":"H6347","v":["פֶּחָה","pechâh","peh-khaw'","(Chaldee); corresponding to H6346: - captain, governor."]},{"k":"H6348","v":["פָּחַז","pâchaz","paw-khaz'","A primitive root; to bubble up or froth (as boiling water), that is, (figuratively) to be unimportant: - light."]},{"k":"H6349","v":["פַּחַז","pachaz","pakh'-az","From H6348; ebullition, that is, froth (figuratively lust): - unstable."]},{"k":"H6350","v":["פַּחֲזוּת","pachăzûwth","pakh-az-ooth'","From H6348; frivolity: - lightness."]},{"k":"H6351","v":["פָּחַח","pâchach","paw-khakh'","A primitive root; to batter out; but used only as denominative from H6341, to spread a net: - be snared."]},{"k":"H6352","v":["פֶּחָם","pechâm","peh-khawm'","Perhaps from an unused root probably meaning to be black; a coal, whether charred or live: - coals."]},{"k":"H6353","v":["פֶּחָר","pechâr","peh-khawr'","(Chaldee); from an unused root probably meaning to fashion; a potter: - potter."]},{"k":"H6354","v":["פַּחַת","pachath","pakh'-ath","Probably from an unused root apparently meaning to dig; a pit, especially for catching animals: - hole, pit, snare."]},{"k":"H6355","v":["פַּחַת מוֹאָב","Pachath Môwʼâb","pakh'-ath mo-awb'","From H6354 and H4124; pit of Moab; Pachath Moab, an Israelite: - Pahath-moab."]},{"k":"H6356","v":["פְּחֶתֶת","pᵉchetheth","pekh-eh'-theth","From the same as H6354; a hole (by mildew in a garment): - fret inward."]},{"k":"H6357","v":["פִּטְדָה","piṭdâh","pit-daw'","Of foreign derivation; a gem, probably the topaz: - topaz."]},{"k":"H6358","v":["פָּטוּר","pâṭûwr","paw-toor'","Passive participle of H6362; opened, that is, (as noun) a bud: - open."]},{"k":"H6359","v":["פָּטִיר","pâṭîyr","paw-teer'","From H6362; open, that is, unoccupied: - free."]},{"k":"H6360","v":["פַּטִּישׁ","paṭṭîysh","pat-teesh'","Intensive from an unused root meaning to pound; a hammer: - hammer."]},{"k":"H6361","v":["פַּטִּישׁ","paṭṭîysh","pat-teesh'","(Chaldee); from a root corresponding to that of H6260; a gown (as if hammered out wide): - hose."]},{"k":"H6362","v":["פָּטַר","pâṭar","paw-tar'","A primitive root; to cleave or burst through, that is, (causatively) to emit, whether literally or figuratively (gape): - dismiss, free, let (shoot) out, slip away."]},{"k":"H6363","v":["פֶּטֶר","peṭer","peh'-ter","From H6362; a fissure, that is, (concretely) firstling (as opening the matrix): - firstling, openeth, such as open."]},{"k":"H6364","v":["פִּי־בֶסֶת","Pîy-Beçeth","pee beh'-seth","Of Egyptian origin; Pi-Beseth, a place in Egypt: - Pi-beseth."]},{"k":"H6365","v":["פִּיד","pîyd","peed","From an unused root probably meaning to pierce; (figuratively) misfortune: - destruction, ruin."]},{"k":"H6366","v":["פֵּיָה","pêyâh","pay-aw'","Feminine of H6310; an edge: - (two-) edge (-d)."]},{"k":"H6367","v":["פִּי הַחִירֹת","Pîy ha-Chîyrôth","pee hah-khee-roth'","From H6310 and the feminine plural of a noun (from the same root as H2356), with the article interposed; mouth of the gorges; Pi-ha-Chiroth, a place in Egypt. (Found in Num_14:19 without the “pi”.): - Pi-hahiroth. [In Num. H14 : H19 without Pi-.]"]},{"k":"H6368","v":["פִּיחַ","pîyach","pee'-akh","From H6315; a powder (as easily puffed away), that is, ashes or dust: - ashes."]},{"k":"H6369","v":["פִּיכֹל","Pîykôl","pee-kole'","Apparently from H6310 and H3605; mouth of all; Picol, a Phillistine: - Phichol."]},{"k":"H6370","v":["פִּילֶגֶשׁ","pîylegesh","pee-leh'-ghesh","Of uncertain derivation; a concubine; also (masculine) a paramour: - concubine, paramour."]},{"k":"H6371","v":["פִּימָה","pîymâh","pee-maw'","Probably from an unused root meaning to be plump; obesity: - collops."]},{"k":"H6372","v":["פִּינְחָס","Pîynᵉchâç","pee-nekh-aws'","Apparently from H6310 and a variation of H5175; mouth of a serpent; Pinechas, the name of three Israelites: - Phinehas."]},{"k":"H6373","v":["פִּינֹן","pîynôn","pee-none'","Probably the same as H6325; Pinon, an Idumaean: - Pinon."]},{"k":"H6374","v":["פִּיפִיָּה","pîyphîyâh","pee-fee-yaw'","For H6366; an edge or tooth: - tooth, X two-edged"]},{"k":"H6375","v":["פִּיק","pîyq","peek","From H6329; a tottering: - smite together."]},{"k":"H6376","v":["פִּישׁוֹן","Pîyshôwn","pee-shone'","From H6335; dispersive; Pishon, a river of Eden: - Pison."]},{"k":"H6377","v":["פִּיתוֹן","Pîythôwn","pee-thone'","Probably from the same as H6596; expansive; Pithon, an Israelite: - Pithon."]},{"k":"H6378","v":["פַּךְ","pak","pak","From H6379; a flask (from which a liquid may flow): - box, vial."]},{"k":"H6379","v":["פָּכָה","pâkâh","paw-kaw'","A primitive root; to pour: - run out."]},{"k":"H6380","v":["פֹּכֶרֶת צְבָיִים","Pôkereth Tsᵉbâyîym","po-keh'-reth tseb-awyeem'","From the active participle (of the same form as the first word) feminine of an unused root (meaning to entrap) and plural of H6643; trap of gazelles; Pokereth Tsebajim, one of the servants of Solomon: - Pochereth of Zebaim."]},{"k":"H6381","v":["פָּלָא","pâlâʼ","paw-law'","A primitive root; properly perhaps to separate, that is, distinguish (literally or figuratively); by implication to be (causatively make) great, difficult, wonderful: - accomplish, (arise . . . too, be too) hard, hidden, things too high, (be, do, do a, shew) marvelous (-ly, -els, things, work), miracles, perform, separate, make singular, (be, great, make) wonderful (-ers, -ly, things, works), wondrous (things, works, -ly)."]},{"k":"H6382","v":["פֶּלֶא","peleʼ","peh'-leh","From H6381; a miracle: - marvellous thing, wonder (-ful, -fully)."]},{"k":"H6383","v":["פִּלְאִי","pilʼîy","pil-ee'","From H6381; remarkable: - secret, wonderful."]},{"k":"H6384","v":["פַּלֻּאִי","Palluʼîy","pal-loo-ee'","Patronymic from H6396; a Palluite (collectively) or descendant of Pallu: - Palluites."]},{"k":"H6385","v":["פָּלַג","pâlag","paw-lag'","A primitive root; to split (literally or figuratively): - divide."]},{"k":"H6386","v":["פְּלַג","pᵉlag","pel-ag'","(Chaldee); corresponding to H6385: - divided."]},{"k":"H6387","v":["פְּלַג","pᵉlag","pel-ag'","(Chaldee); from H6386; a half: - dividing."]},{"k":"H6388","v":["פֶּלֶג","peleg","peh'-leg","From H6385; a rill (that is, small channel of water, as in irrigation): - river, stream."]},{"k":"H6389","v":["פֶּלֶג","Peleg","peh'-leg","The same as H6388; earthquake; Peleg, a son of Shem: - Peleg."]},{"k":"H6390","v":["פְּלַגָּה","pᵉlaggâh","pel-ag-gaw'","From H6385; a runlet, that is, gully: - division, river."]},{"k":"H6391","v":["פְּלֻגָּה","pᵉluggâh","pel-oog-gaw'","From H6385; a section: - division."]},{"k":"H6392","v":["פְּלֻגָּה","pᵉluggâh","pel-oog-gaw'","(Chaldee); corresponding to H6391: - division."]},{"k":"H6393","v":["פְּלָדָה","pᵉlâdâh","pel-aw-daw'","From an unused root meaning to divide; a cleaver, that is, iron armature (of a chariot): - torch."]},{"k":"H6394","v":["פִּלְדָּשׁ","Pildâsh","pil-dawsh'","Of uncertain derivation; Pildash, a relative of Abraham: - Pildash."]},{"k":"H6395","v":["פָּלָה","pâlâh","paw-law'","A primitive root; to distinguish (literally or figuratively): - put a difference, show marvellous, separate, set apart, sever, make wonderfully."]},{"k":"H6396","v":["פַּלּוּא","Pallûwʼ","pal-loo'","From H6395; distinguished; Pallu, an Israelite: - Pallu, Phallu."]},{"k":"H6397","v":["פְּלוֹנִי","Pᵉlôwnîy","pel-o-nee'","Patronymic from an unused name (from H6395) meaning separate; a Pelonite or inhabitant of an unknown Palon: - Pelonite."]},{"k":"H6398","v":["פָּלַח","pâlach","paw-lakh'","A primitive root; to slice, that is, break open or pierce: - bring forth, cleave, cut, shred, strike through."]},{"k":"H6399","v":["פְּלַח","pᵉlach","pel-akh'","(Chaldee); corresponding to H6398; to serve or worship: - minister, serve."]},{"k":"H6400","v":["פֶּלַח","pelach","peh'-lakh","From H6398; a slice: - piece."]},{"k":"H6401","v":["פִּלְחָא","Pilchâʼ","pil-khaw'","From H6400; slicing; Pilcha, an Israelite: - Pilcha."]},{"k":"H6402","v":["פׇּלְחָן","polchân","pol-khawn'","(Chaldee); from H6399; worship: - service."]},{"k":"H6403","v":["פָּלַט","pâlaṭ","paw-lat'","A primitive root; to slip out, that is, escape; causatively to deliver: - calve, carry away safe, deliver, (cause to) escape."]},{"k":"H6404","v":["פֶּלֶט","Peleṭ","peh'-let","From H6403; escape; Pelet, the name of two Israelites: - Pelet. See also H1046."]},{"k":"H6405","v":["פַּלֵּט","pallêṭ","pal-late'","From H6403; escape: - deliverance, escape."]},{"k":"H6406","v":["פַּלְטִי","Palṭîy","pal-tee'","From H6403; delivered; Palti, the name of two Israelites: - Palti, Phalti."]},{"k":"H6407","v":["פַּלְטִי","Palṭîy","pal-tee'","Patronymic from H6406; a Paltite or descendant of Palti: - Paltite."]},{"k":"H6408","v":["פִּלְטַי","Pilṭay","pil-tah'-ee","For H6407; Piltai, an Israelite: - Piltai."]},{"k":"H6409","v":["פַּלְטִיאֵל","Palṭîyʼêl","pal-tee-ale'","From the same as H6404 and H410; deliverance of God; Paltiel, the name of two Israelites: - Paltiel, Phaltiel."]},{"k":"H6410","v":["פְּלַטְיָה","Pᵉlaṭyâh","pel-at-yaw'","From H6403 and H3050; Jah has delivered; Pelatjah, the name of four Israelites: - Pelatiah."]},{"k":"H6411","v":["פְּלָיָה","Pᵉlâyâh","pel-aw-yaw'","From H6381 and H3050; Jah has distinguished; Pelajah, the name of three Israelites: - Pelaiah."]},{"k":"H6412","v":["פָּלִיט","pâlîyṭ","paw-leet'","From H6403; a refugee: - (that have) escape (-d, -th), fugitive."]},{"k":"H6413","v":["פְּלֵיטָה","pᵉlêyṭâh","pel-ay-taw'","Feminine of H6412; deliverance; concretely an escaped portion: - deliverance, (that is) escape (-d), remnant."]},{"k":"H6414","v":["פָּלִיל","pâlîyl","paw-leel'","From H6419; a magistrate: - judge."]},{"k":"H6415","v":["פְּלִילָה","pᵉlîylâh","pel-ee-law'","Feminine of H6414; justice: - judgment."]},{"k":"H6416","v":["פְּלִילִי","pᵉlîylîy","pel-ee-lee'","From H6414; judicial: - judge."]},{"k":"H6417","v":["פְּלִילִיָּה","pᵉlîylîyâh","pel-ee-lee-yaw'","Feminine of H6416; judicature: - judgment."]},{"k":"H6418","v":["פֶּלֶךְ","pelek","peh'-lek","From an unused root meaning to be round; a circuit (that is, district); also a spindle (as whirled); hence a crutch: - (di-) staff, part."]},{"k":"H6419","v":["פָּלַל","pâlal","paw-lal'","A primitive root; to judge (officially or mentally); by extension to intercede, pray: - intreat, judge (-ment), (make) pray (-er, -ing), make supplication."]},{"k":"H6420","v":["פָּלָל","Pâlâl","paw-lawl'","From H6419; judge; Palal, an Israelite: - Palal."]},{"k":"H6421","v":["פְּלַלְיָה","Pᵉlalyâh","pel-al-yaw'","From H6419 and H3050; Jah has judged; Pelaljah, an Israelite: - Pelaliah."]},{"k":"H6422","v":["פַּלְמוֹנִי","palmôwnîy","pal-mo-nee'","Probably for H6423; a certain one, that is, so and so: - certain."]},{"k":"H6423","v":["פְּלֹנִי","pᵉlônîy","pel-o-nee'","From H6395; such a one, that is, a specified person: - such."]},{"k":"H6424","v":["פָּלַס","pâlaç","paw-las'","A primitive root; properly to roll flat, that is, prepare (a road); also to revolve, that is, weigh (mentally): - make, ponder, weigh."]},{"k":"H6425","v":["פֶּלֶס","peleç","peh'-les","From H6424; a balance: - scales, weight."]},{"k":"H6426","v":["פָּלַץ","pâlats","paw-lats'","A primitive root; properly perhaps to rend, that is, (by implication) to quiver: - tremble."]},{"k":"H6427","v":["פַּלָּצוּת","pallâtsûwth","pal-law-tsooth'","From H6426; affright: - fearfulness, horror, trembling."]},{"k":"H6428","v":["פָּלַשׁ","pâlash","paw-lash'","A primitive root; to roll (in dust): - roll (wallow) self."]},{"k":"H6429","v":["פְּלֶשֶׁת","Pᵉlesheth","pel-eh'-sheth","From H6428; rolling, that is, migratory; Pelesheth, a region of Syria: - Palestina, Palestine, Philistia, Philistines."]},{"k":"H6430","v":["פְּלִשְׁתִּי","Pᵉlishtîy","pel-ish-tee'","Patrial from H6429; a Pelishtite or inhabitant of Pelesheth: - Philistine."]},{"k":"H6431","v":["פֶּלֶת","Peleth","peh'-leth","From an unused root meaning to flee; swiftness; Peleth, the name of two Israelites: - Peleth."]},{"k":"H6432","v":["פְּלֵתִי","Pᵉlêthîy","pel-ay-thee'","From the same form as H6431; a courier (collectively) or official messenger: - Pelethites."]},{"k":"H6433","v":["פֻּם","pum","poom","(Chaldee); probably for H6310; the mouth (literally or figuratively): - mouth."]},{"k":"H6434","v":["פֵּן","pên","pane","From an unused root meaning to turn; an angle (of a street or wall): - corner."]},{"k":"H6435","v":["פֵּן","pên","pane","From H6437; properly removal; used only (in the constructive) adverbially as conjugation lest: - (lest) (peradventure), that . . . not."]},{"k":"H6436","v":["פַּנַּג","pannag","pan-nag'","Of uncertain derivation; probably pastry: - Pannag."]},{"k":"H6437","v":["פָּנָה","pânâh","paw-naw'","A primitive root; to turn; by implication to face, that is, appear, look, etc.: - appear, at [even-] tide, behold, cast out, come on, X corner, dawning, empty, go away, lie, look, mark, pass away, prepare, regard, (have) respect (to), (re-) turn (aside, away, back, face, self), X right [early]."]},{"k":"H6438","v":["פִּנָּה","pinnâh","pin-naw'","Feminine of H6434; an angle; by implication a pinnacle; figuratively a chieftain: - bulwark, chief, corner, stay, tower."]},{"k":"H6439","v":["פְּנוּאֵל","Pᵉnûwʼêl","pen-oo-ale'","From H6437 and H410; face of God; Penuel or Peniel, a place East of Jordan; also (as Penuel) the name of two Israelites: - Peniel, Penuel."]},{"k":"H6440","v":["פָּנִים","pânîym","paw-neem'","Plural (but always used as a singular) of an unused noun (פָּנֶה pâneh, paw-neh'; from 6437); the face (as the part that turns); used in a great variety of applications (literally and figuratively); also (with prepositional prefix) as a preposition (before, etc.): -    + accept, a (be-) fore (-time), against, anger, X as (long as), at, + battle, + because (of), + beseech, countenance, edge, + employ, endure, + enquire, face, favour, fear of, for, forefront (-part), form (-er time, -ward), from, front, heaviness, X him (-self), + honourable, + impudent, + in, it, look [-eth] (-s), X me, + meet, X more than, mouth, of, off, (of) old (time), X on, open, + out of, over against, the partial, person, + please, presence, prospect, was purposed, by reason, of, + regard, right forth, + serve, X shewbread, sight, state, straight, + street, X thee, X them (-selves), through (+ -out), till, time (-s) past, (un-) to (-ward), + upon, upside (+ down), with (-in, + stand), X ye, X you."]},{"k":"H6441","v":["פְּנִימָה","pᵉnîymâh","pen-ee'-maw","From H6440 with directive enclitic; faceward, that is, indoors: - (with-) in (-ner part, -ward)."]},{"k":"H6442","v":["פְּנִימִי","pᵉnîymîy","pen-ee-mee'","From H6440; interior: - (with-) in (-ner, -ward)."]},{"k":"H6443","v":["פָּנִין","pânîyn","paw-neen'","From the same as H6434; probably a pearl (as round): - ruby."]},{"k":"H6444","v":["פְּנִנָּה","Pᵉninnâh","pen-in-naw'","Probably feminine from H6443 contracted; Peninnah, an Israelitess: - Peninnah."]},{"k":"H6445","v":["פָּנַק","pânaq","paw-nak'","A primitive root; to enervate: - bring up."]},{"k":"H6446","v":["פַּס","paç","pas","From H6461; properly the palm (of the hand) or sole (of the foot), (compare H6447); by implication (plural) a long and sleeved tunic (perhaps simply a wide one; from the original sense of the root, that is, of many breadths): - (divers) colours."]},{"k":"H6447","v":["פַּס","paç","pas","(Chaldee); from a root corresponding to H6461; to palm (of the hand, as being spread out): - part."]},{"k":"H6448","v":["פָּסַג","pâçag","paw-sag'","A primitive root; to cut up, that is, (figuratively) contemplate: - consider."]},{"k":"H6449","v":["פִּסְגָּה","Piçgâh","pis-gaw'","From H6448; a cleft; Pisgah, a mountain East of Jordan: - Pisgah."]},{"k":"H6450","v":["פַּס דַּמִּים","Paç Dammîym","pas dam-meem'","From H6446 and the plural of H1818; palm (that is, dell) of bloodshed; Pas-Dammim, a place in Palestine: - Pas-dammim. Compare H658."]},{"k":"H6451","v":["פִּסָּה","piççâh","pis-saw'","From H6461; expansion, that is, abundance: - handful."]},{"k":"H6452","v":["פָּסַח","pâçach","paw-sakh'","A primitive root; to hop, that is, (figuratively) skip over (or spare); by implication to hesitate; also (literally) to limp, to dance: - halt, become lame, leap, pass over."]},{"k":"H6453","v":["פֶּסַח","peçach","peh'-sakh","From H6452; a pretermission, that is, exemption; used only technically of the Jewish Passover (the festival or the victim): - passover (offering)."]},{"k":"H6454","v":["פָּסֵחַ","Pâçêach","paw-say'-akh","From H6452; limping; Paseach, the name of two Israelites: - Paseah, Phaseah."]},{"k":"H6455","v":["פִּסֵּחַ","piççêach","pis-say'-akh","From H6452; lame: - lame."]},{"k":"H6456","v":["פְּסִיל","pᵉçîyl","pes-eel'","From H6458; an idol: - carved (graven) image, quarry."]},{"k":"H6457","v":["פָּסַךְ","Pâçak","paw-sak'","From an unused root meaning to divide; divider; Pasak, an Israelite: - Pasach."]},{"k":"H6458","v":["פָּסַל","pâçal","paw-sal'","A primitive root; to carve, whether wood or stone: - grave, hew."]},{"k":"H6459","v":["פֶּסֶל","peçel","peh'-sel","From H6458; an idol: - carved (graven) image."]},{"k":"H6460","v":["פְּסַנְטֵרִין","pᵉçanṭêrîyn","pes-an-tay-reen'","(Chaldee); a transliteration of the Greek (not in lexicon) psalterion; a lyre: - psaltery."]},{"k":"H6461","v":["פָּסַס","pâçaç","paw-sas'","A primitive root; probably to disperse, that is, (intransitively) disappear: - cease."]},{"k":"H6462","v":["פִּסְפָּה","Piçpâh","pis-paw'","Perhaps from H6461; dispersion; Pispah, an Israelite: - Pispah."]},{"k":"H6463","v":["פָּעָה","pâʻâh","paw-aw'","A primitive root; to scream: - cry."]},{"k":"H6464","v":["פָּעוּ","Pâʻûw","paw-oo'","From H6463; screaming; Pau or Pai, a place in Edom: - Pai, Pau."]},{"k":"H6465","v":["פְּעוֹר","Pᵉʻôwr","peh-ore'","From H6473; a gap; Peor, a mountain East of Jordan; also (for H1187) a deity worshipped there: - Peor. See also H1047."]},{"k":"H6466","v":["פָּעַל","pâʻal","paw-al'","A primitive root; to do or make (systematically and habitually), especially to practise: - commit, [evil-] do (-er), make (-r), ordain, work (-er), wrought."]},{"k":"H6467","v":["פֹּעַל","pôʻal","po'-al","From H6466; an act or work (concretely): - act, deed, do, getting, maker, work."]},{"k":"H6468","v":["פְּעֻלָּה","pᵉʻullâh","peh-ool-law'","Feminine passive participle of H6466; (abstractly) work: - labour, reward, wages, work."]},{"k":"H6469","v":["פְּעֻלְּתַי","Pᵉʻullᵉthay","peh-ool-leh-thah'-ee","From H6468; laborious; Peullethai, an Israelite: - Peulthai."]},{"k":"H6470","v":["פָּעַם","pâʻam","paw-am'","A primitive root; to tap, that is, beat regularly; hence (generally) to impel or agitate: - move, trouble."]},{"k":"H6471","v":["פַּעַם","paʻam","pah'-am","From H6470; a stroke, literally or figuratively (in various applications): - anvil, corner, foot (-step), going, [hundred-] fold, X now, (this) + once, order, rank, step, + thrice, [often-], second, this, two) time (-s), twice, wheel."]},{"k":"H6472","v":["פַּעֲמֹן","paʻămôn","pah-am-one'","From H6471; a bell (as struck): - bell."]},{"k":"H6473","v":["פָּעַר","pâʻar","paw-ar'","A primitive root; to yawn, that is, open wide (literally or figuratively): - gape, open (wide)."]},{"k":"H6474","v":["פַּעֲרַי","Paʻăray","pah-ar-ah'-ee","From H6473; yawning; Paarai, an Israelite: - Paarai."]},{"k":"H6475","v":["פָּצָה","pâtsâh","paw-tsaw'","A primitive root; to rend, that is, open (especially the mouth): - deliver, gape, open, rid, utter."]},{"k":"H6476","v":["פָּצַח","pâtsach","paw-tsakh'","A primitive root; to break out (in joyful sound): - break (forth, forth into joy), make a loud noise."]},{"k":"H6477","v":["פְּצִירָה","pᵉtsîyrâh","pets-ee-raw'","From H6484; bluntness: -  + file."]},{"k":"H6478","v":["פָּצַל","pâtsal","paw-tsal'","A primitive root; to peel: - pill."]},{"k":"H6479","v":["פְּצָלָה","pᵉtsâlâh","pets-aw-law'","From H6478; a peeling: - strake."]},{"k":"H6480","v":["פָּצַם","pâtsam","paw-tsam'","A primitive root; to rend (by earthquake): - break."]},{"k":"H6481","v":["פָּצַע","pâtsaʻ","paw-tsah'","A primitive root; to split, that is, wound: - wound."]},{"k":"H6482","v":["פֶּצַע","petsaʻ","peh'-tsah","From H6481; a wound: - wound (-ing)."]},{"k":"H6483","v":["פִּצֵּץ","Pitstsêts","pits-tsates'","From an unused root meaning to dissever; dispersive; Pitstsets, a priest: - Apses [includ. the article.]"]},{"k":"H6484","v":["פָּצַר","pâtsar","paw-tsar'","A primitive root; to peck at, that is, (figuratively) stun or dull: - press, urge, stubbornness."]},{"k":"H6485","v":["פָּקַד","pâqad","paw-kad'","A primitive root; to visit (with friendly or hostile intent); by analogy to oversee, muster, charge, care for, miss, deposit, etc.: - appoint, X at all, avenge, bestow, (appoint to have the, give a) charge, commit, count, deliver to keep, be empty, enjoin, go see, hurt, do judgment, lack, lay up look, make X by any means, miss, number, officer, (make) overseer have (the) oversight, punish, reckon, (call to) remember (-brance), set (over), sum, X surely, visit, want."]},{"k":"H6486","v":["פְּקֻדָּה","pᵉquddâh","pek-ood-daw'","Feminine passive participle of H6485; visitation (in many senses, chiefly official): - account, (that have the) charge, custody, that which . . . laid up, numbers, office (-r), ordering, oversight, + prison, reckoning, visitation."]},{"k":"H6487","v":["פִּקָּדוֹן","piqqâdôwn","pik-kaw-done'","From H6485; a deposit: - that which was delivered (to keep), store."]},{"k":"H6488","v":["פְּקִדֻת","pᵉqiduth","pek-ee-dooth'","From H6496; supervision: - ward."]},{"k":"H6489","v":["פְּקוֹד","Pᵉqôwd","pek-ode'","From H6485; punishment; Pekod, a symbolical name for Babylon: - Pekod."]},{"k":"H6490","v":["פִּקּוּד","piqqûwd","pik-kood'","From H6485; properly appointed, that is, a mandate (of God; plural only, collectively for the Law): - commandment, precept, statute."]},{"k":"H6491","v":["פָּקַח","pâqach","paw-kakh'","A primitive root; to open (the senses, especially the eyes); figuratively to be observant: - open."]},{"k":"H6492","v":["פֶּקַח","Peqach","peh'-kakh","From H6491; watch; Pekach, an Israelite king: - Pekah."]},{"k":"H6493","v":["פִּקֵּחַ","piqqêach","pik-kay'-akh","From H6491; clear sighted; figuratively intelligent: - seeing, wise."]},{"k":"H6494","v":["פְּקַחְיָה","Pᵉqachyâh","pek-akh-yaw'","From H6491 and H3050; Jah has observed; Pekachjah, an Israelitish king: - Pekahiah."]},{"k":"H6495","v":["פְּקַח־קוֹחַ","pᵉqach-qôwach","pek-akh-ko'-akh","From H6491 redoubled; opening (of a dungeon), that is, jail delivery (figuratively salvation from sin): - opening of the prison."]},{"k":"H6496","v":["פָּקִיד","pâqîyd","paw-keed'","From H6485; a superintendent (civil, military or religious): - which had the charge, governor, office, overseer, [that] was set."]},{"k":"H6497","v":["פֶּקַע","peqaʻ","peh'-kah","From an unused root meaning to burst; only used as an architectural term of an ornament similar to H6498, a semi-globe: - knop."]},{"k":"H6498","v":["פַּקֻּעָה","paqquʻâh","pak-koo-aw'","From the same as H6497; the wild cucumber (from splitting open to shed its seeds): - gourd."]},{"k":"H6499","v":["פַּר","par","par","From H6565; a bullock (apparently as breaking forth in wild strength, or perhaps as dividing the hoof): -    (+ young) bull (-ock), calf, ox."]},{"k":"H6500","v":["פָּרָא","pârâʼ","paw-raw'","A primitive root; to bear fruit: - be fruitful."]},{"k":"H6501","v":["פֶּרֶא","pereʼ","peh'-reh","From H6500 in the secondary sense of running wild; the onager: - wild (ass)."]},{"k":"H6502","v":["פִּרְאָם","Pirʼâm","pir-awm'","From H6501; wildly; Piram, a Canaanite: - Piram."]},{"k":"H6503","v":["פַּרְבָּר","Parbâr","par-bawr'","Of foreign origin; Parbar or Parvar, a quarter of Jerusalem: - Parbar, suburb."]},{"k":"H6504","v":["פָּרַד","pârad","paw-rad'","A primitive root; to break through, that is, spread or separate (oneself): - disperse, divide, be out of joint, part, scatter (abroad), separate (self), sever self, stretch, sunder."]},{"k":"H6505","v":["פֶּרֶד","pered","peh'-red","From H6504; a mule (perhaps from his lonely habits): - mule."]},{"k":"H6506","v":["פִּרְדָּה","pirdâh","pir-daw'","Feminine of H6505; a she mule: - mule."]},{"k":"H6507","v":["פְּרֻדָה","pᵉrudâh","per-oo-daw'","Feminine passive participle of H6504; something separated, that is, a kernel: - seed."]},{"k":"H6508","v":["פַּרְדֵּס","pardêç","par-dace'","Of foreign origin; a park: - forest, orchard."]},{"k":"H6509","v":["פָּרָה","pârâh","paw-raw'","A primitive root; to bear fruit (literally or figuratively): - bear, bring forth (fruit), (be, cause to be, make) fruitful, grow, increase."]},{"k":"H6510","v":["פָּרָה","pârâh","paw-raw'","Feminine of H6499; a heifer: - cow, heifer, kine."]},{"k":"H6511","v":["פָּרָה","Pârâh","paw-raw'","The same as H6510; Parah, a place in Palestine: - Parah."]},{"k":"H6512","v":["פֵּרָה","pêrâh","pay-raw'","From H6331; a hole (as broken, that is, dug): -    + mole. Compare H2661."]},{"k":"H6513","v":["פֻּרָה","Purâh","poo-raw'","For H6288; foliage; Purah, an Israelite: - Phurah."]},{"k":"H6514","v":["פְּרוּדָא","Pᵉrûwdâʼ","per-oo-daw'","From H6504; dispersion; Peruda or Perida, one of Solomon’s servants: - Perida, Peruda."]},{"k":"H6515","v":["פָּרוּחַ","Pârûwach","paw-roo'-akh","Passive participle of H6524; blossomed; Paruach, an Israelite: - Paruah."]},{"k":"H6516","v":["פַּרְוַיִם","Parvayim","par-vah'-yim","Of foreign origin; Parvajim, an Oriental region: - Parvaim."]},{"k":"H6517","v":["פָּרוּר","pârûwr","paw-roor'","Passive participle of H6565 in the sense of spreading out (compare H6524); a skillet (as flat or deep): - pan, pot."]},{"k":"H6518","v":["פָּרָז","pârâz","paw-rawz'","From an unused root meaning to separate, that is, decide; a chieftain: - village."]},{"k":"H6519","v":["פְּרָזָה","pᵉrâzâh","per-aw-zaw'","From the same as H6518; an open country: - (unwalled) town (without walls), unwalled village."]},{"k":"H6520","v":["פְּרָזוֹן","pᵉrâzôwn","per-aw-zone'","From the same as H6518; magistracy, that is, leadership (also concretely chieftains): - village."]},{"k":"H6521","v":["פְּרָזִי","pᵉrâzîy","per-aw-zee'","From H6519; a rustic: - village."]},{"k":"H6522","v":["פְּרִזִּי","Pᵉrizzîy","per-iz-zee'","For H6521; inhabitant of the open country; a Perizzite, one of the Canaanitish tribes: - Perizzite."]},{"k":"H6523","v":["פַּרְזֶל","parzel","par-zel'","(Chaldee); corresponding to H1270; iron: - iron."]},{"k":"H6524","v":["פָּרַח","pârach","paw-rakh'","A primitive root; to break forth as a bud, that is, bloom; generally to spread; specifically to fly (as extending the wings); figuratively to flourish: -  X abroad, X abundantly, blossom, break forth (out), bud, flourish, make fly, grow, spread, spring (up)."]},{"k":"H6525","v":["פֶּרַח","perach","peh'-rakh","From H6524; calyx (natural or artificial); generally bloom: - blossom, bud, flower."]},{"k":"H6526","v":["פִּרְחַח","pirchach","pir-khakh'","From H6524; progeny, that is, a brood: - youth."]},{"k":"H6527","v":["פָּרַט","pâraṭ","paw-rat'","A primitive root; to scatter words, that is, prate (or hum): - chant."]},{"k":"H6528","v":["פֶּרֶט","pereṭ","peh'-ret","From H6527; a stray or single berry: - grape."]},{"k":"H6529","v":["פְּרִי","pᵉrîy","per-ee'","From H6509; fruit (literally or figuratively): - bough, ([first-]) fruit ([-ful]), reward."]},{"k":"H6530","v":["פְּרִיץ","pᵉrîyts","per-eets'","From H6555; violent, that is, a tyrant: - destroyer, ravenous, robber."]},{"k":"H6531","v":["פֶּרֶךְ","perek","peh'-rek","From an unused root meaning to break apart; fracture, that is, severity: - cruelty, rigour."]},{"k":"H6532","v":["פֹּרֶכֶת","pôreketh","po-reh'-keth","Feminine active participle of the same as H6531; a separatrix, that is, (the sacred) screen: - vail."]},{"k":"H6533","v":["פָּרַם","pâram","paw-ram'","A primitive root; to tear: - rend."]},{"k":"H6534","v":["פַּרְמַשְׁתָּא","Parmashtâʼ","par-mash-taw'","Of Persian origin; Parmashta, a son of Haman: - Parmasta."]},{"k":"H6535","v":["פַּרְנַךְ","Parnak","par-nak'","Of uncertain derivation; Parnak, an Israelite: - Parnach."]},{"k":"H6536","v":["פָּרַס","pâraç","paw-ras'","A primitive root; to break in pieces, that is, (usually without violence) to split, distribute: - deal, divide, have hoofs, part, tear."]},{"k":"H6537","v":["פְּרַס","pᵉraç","per-as'","(Chaldee); corresponding to H6536; to split up: - divide, [U-] pharsin."]},{"k":"H6538","v":["פֶּרֶס","pereç","peh'-res","From H6536; a claw; also a kind of eagle: - claw, ossifrage."]},{"k":"H6539","v":["פָּרַס","Pâraç","paw-ras'","Of foreign origin; Paras (that is, Persia), an Eastern country, including its inhabitants: - Persia, Persians."]},{"k":"H6540","v":["פָּרַס","Pâraç","paw-ras'","(Chaldee); corresponding to H6539: - Persia, Persians."]},{"k":"H6541","v":["פַּרְסָה","parçâh","par-saw'","Feminine of H6538; a claw or split hoof: - claw, [cloven-] footed, hoof."]},{"k":"H6542","v":["פַּרְסִי","Parçîy","par-see'","Patrial from H6539; a Parsite (that is, Persian), or inhabitant of Peres: - Persian."]},{"k":"H6543","v":["פַּרְסִי","Parçîy","par-see'","(Chaldee); corresponding to H6542: - Persian."]},{"k":"H6544","v":["פָּרַע","pâraʻ","paw-rah'","A primitive root; to loosen; by implication to expose, dismiss; figuratively absolve, begin: - avenge, avoid, bare, go back, let, (make) naked, set at nought, perish, refuse, uncover."]},{"k":"H6545","v":["פֶּרַע","peraʻ","peh'-rah","From H6544; the hair (as dishevelled): - locks."]},{"k":"H6546","v":["פַּרְעָה","parʻâh","par-aw'","Feminine of H6545 (in the sense of beginning); leadership (plural concretely leaders): -    + avenging, revenge."]},{"k":"H6547","v":["פַּרְעֹה","Parʻôh","par-o'","Of Egyptian derivation; Paroh, a generic title of Egyptian kings: - Pharaoh."]},{"k":"H6548","v":["פַּרְעֹה חׇפְרַע","Parʻôh Chophraʻ","par-o' khof-rah'","Of Egyptian derivation; Paroh-Chophra, an Egyptian king: - Pharaoh-hophra."]},{"k":"H6549","v":["פַּרְעֹה נְכֹה","Parʻôh Nᵉkôh","par-o' nek-o'","Of Egyptian derivation; Paroh Nekoh (or Neko), an Egyptian king: - Pharaoh-necho, Pharaoh-nechoh."]},{"k":"H6550","v":["פַּרְעֹשׁ","parʻôsh","par-oshe'","Probably from H6544 and H6211; a flea (as the isolated insect): - flea."]},{"k":"H6551","v":["פַּרְעֹשׁ","Parʻôsh","par-oshe'","The same as H6550; Parosh, the name of four Israelites: - Parosh, Pharosh."]},{"k":"H6552","v":["פִּרְעָתוֹן","Pirʻâthôwn","pir-aw-thone'","From H6546; chieftaincy; Pirathon, a place in Palestine: - Pirathon."]},{"k":"H6553","v":["פִּרְעָתוֹנִי","Pirʻâthôwnîy","pir-aw-tho-nee'","Patrial from H6552; a Pirathonite or inhabitant of Pirathon: - Pirathonite."]},{"k":"H6554","v":["פַּרְפַּר","Parpar","par-par'","Probably from H6565 in the sense of rushing; rapid; Parpar, a river of Syria: - Pharpar."]},{"k":"H6555","v":["פָּרַץ","pârats","paw-rats'","A primitive root; to break out (in many applications, direct and indirect, literally and figuratively): -    X abroad, (make a) breach, break (away, down, -er, forth, in, up), burst out come (spread) abroad, compel, disperse, grow, increase, open, press, scatter, urge."]},{"k":"H6556","v":["פֶּרֶץ","perets","peh'-rets","From H6555; a break (literally or figuratively): - breach, breaking forth (in), X forth, gap."]},{"k":"H6557","v":["פֶּרֶץ","Perets","peh'-rets","The same as H6556; Perets, the name of two Israelites: - Perez, Pharez."]},{"k":"H6558","v":["פַּרְצִי","Partsîy","par-tsee'","Patronymic from H6557; a Partsite (collectively) or descendant of Perets: - Pharzites."]},{"k":"H6559","v":["פְּרָצִים","pᵉrâtsîym","per-aw-tseem'","Plural of H6556; breaks; Peratsim, a mountain in Palestine: - Perazim."]},{"k":"H6560","v":["פֶּרֶץ עֻזָּא","Perets ʻUzzâʼ","peh'-rets ooz-zaw'","From H6556 and H5798; break of Uzza; Perets-Uzza, a place in Palestine: - Perez-uzza."]},{"k":"H6561","v":["פָּרַק","pâraq","paw-rak'","A primitive root; to break off or craunch; figuratively to deliver: - break (off), deliver, redeem, rend (in pieces), tear in pieces."]},{"k":"H6562","v":["פְּרַק","pᵉraq","per-ak'","(Chaldee); corresponding to H6561; to discontinue: - break off."]},{"k":"H6563","v":["פֶּרֶק","pereq","peh'-rek","From H6561; rapine; also a fork (in roads): - crossway, robbery."]},{"k":"H6564","v":["פָּרָק","pârâq","paw-rawk'","From H6561; soup (as full of crumbed meat): - broth. See also H4832."]},{"k":"H6565","v":["פָּרַר","pârar","paw-rar'","A primitive root; to break up (usually figuratively, that is, to violate, frustrate): -    X any ways, break (asunder), cast off, cause to cease, X clean, defeat, disannul, disappoint, dissolve, divide, make of none effect, fail, frustrate, bring (come) to nought, X utterly, make void."]},{"k":"H6566","v":["פָּרַשׂ","pâras","paw-ras'","A primitive root; to break apart, disperse, etc.: - break, chop in pieces, lay open, scatter, spread (abroad, forth, selves, out), stretch (forth, out)."]},{"k":"H6567","v":["פָּרָשׁ","pârâsh","paw-rash'","A primitive root; to separate, literally (to disperse) or figuratively (to specify); also (by implication) to wound: - scatter, declare, distinctly, shew, sting."]},{"k":"H6568","v":["פְּרַשׁ","pᵉrash","per-ash'","(Chaldee); corresponding to H6567; to specify: - distinctly."]},{"k":"H6569","v":["פֶּרֶשׁ","peresh","peh'-resh","From H6567; excrement (as eliminated): - dung."]},{"k":"H6570","v":["פֶּרֶשׁ","Peresh","peh'-resh","The same as H6569; Peresh, an Israelite: - Peresh."]},{"k":"H6571","v":["פָּרָשׁ","pârâsh","paw-rawsh'","From H6567; a steed (as stretched out to a vehicle, not single nor for mounting (compare H5483)); also (by implication) a driver (in a chariot), that is, (collectively) cavalry: - horseman."]},{"k":"H6572","v":["פַּרְשֶׁגֶן","parshegen","par-sheh'-ghen","Of foreign origin; a transcript: - copy."]},{"k":"H6573","v":["פַּרְשֶׁגֶן","parshegen","par-sheh'-ghen","(Chaldee); corresponding to H6572: - copy."]},{"k":"H6574","v":["פַּרְשְׁדֹן","parshᵉdôn","par-shed-one'","Perhaps by compounding H6567 and H6504 (in the sense of straddling), (compare H6576); the crotch (or anus): - dirt."]},{"k":"H6575","v":["פָּרָשָׁה","pârâshâh","paw-raw-shaw'","From H6567; exposition: - declaration, sum."]},{"k":"H6576","v":["פַּרְשֵׁז","parshêz","par-shaze'","A root apparently formed by compounding H6567 and that of H6518 (compare H6574); to expand: - spread."]},{"k":"H6577","v":["פַּרְשַׁנְדָּתָא","Parshandâthâʼ","par-shan-daw-thaw'","Of Persian origin; Parshandatha, a son of Haman: - Parshandatha."]},{"k":"H6578","v":["פְּרָת","Pᵉrâth","per-awth'","From an unused root meaning to break forth; rushing; Perath (that is, Euphrates), a river of the East: - Euphrates."]},{"k":"H6579","v":["פַּרְתַּם","partam","par-tam'","Of Persian origin; a grandee: - (most) noble, prince."]},{"k":"H6580","v":["פַּשׁ","pash","pash","Probably from an unused root meaning to disintegrate; stupidity (as a result of grossness or of degeneracy): - extremity."]},{"k":"H6581","v":["פָּשָׂה","pâsâh","paw-saw'","A primitive root; to spread: - spread."]},{"k":"H6582","v":["פָּשַׁח","pâshach","paw-shakh'","A primitive root; to tear in pieces: - pull in pieces."]},{"k":"H6583","v":["פַּשְׁחוּר","Pashchûwr","pash-khoor'","Probably from H6582; liberation; Pashchur, the name of four Israelites: - Pashur."]},{"k":"H6584","v":["פָּשַׁט","pâshaṭ","paw-shat'","A primitive root; to spread out (that is, deploy in hostile array); by analogy to strip (that is, unclothe, plunder, flay, etc.): - fall upon, flay, invade, make an invasion, pull off, put off, make a road, run upon, rush, set, spoil, spread selves (abroad), strip (off, self)."]},{"k":"H6585","v":["פָּשַׂע","pâsaʻ","paw-sah'","A primitive root; to stride (from spreading the legs), that is, rush upon: - go."]},{"k":"H6586","v":["פָּשַׁע","pâshaʻ","paw-shah'","A primitive root (rather identical with H6585 through the idea of expansion); to break away (from just authority), that is, trespass, apostatize, quarrel: - offend, rebel, revolt, transgress (-ion, -or)."]},{"k":"H6587","v":["פֶּשַׂע","pesaʻ","peh'-sah","From H6585; a stride: - step."]},{"k":"H6588","v":["פֶּשַׁע","peshaʻ","peh'-shah","From H6586; a revolt (national, moral or religious): - rebellion, sin, transgression, trespassive"]},{"k":"H6589","v":["פָּשַׂק","pâsaq","paw-sak'","A primitive root; to dispart (the feet or lips), that is, become licentious: - open (wide)."]},{"k":"H6590","v":["פְּשַׁר","pᵉshar","pesh-ar'","(Chaldee); corresponding to H6622; to interpret: - make [interpretations], interpreting."]},{"k":"H6591","v":["פְּשַׁר","pᵉshar","pesh-ar'","(Chaldee); from H6590; an interpretation: - interpretation."]},{"k":"H6592","v":["פֵּשֶׁר","pêsher","pay'-sher","Corresponding to H6591: - interpretation."]},{"k":"H6593","v":["פִּשְׁתֶּה","pishteh","pish-teh'","From the same as H6580 as in the sense of comminuting; linen (that is, the thread, as carded): - flax, linen."]},{"k":"H6594","v":["פִּשְׁתָּה","pishtâh","pish-taw'","Feminine of H6593; flax; by implication a wick: - flax, tow."]},{"k":"H6595","v":["פַּת","path","path","From H6626; a bit: - meat, morsel, piece."]},{"k":"H6596","v":["פֹּת","pôth","pohth","From an unused root meaning to open; a hole, that is, hinge or the female pudenda: - hinge, secret part."]},{"k":"H6597","v":["פִּתְאוֹם","pithʼôwm","pith-ome'","From H6621; instantly: - straightway, sudden (-ly)."]},{"k":"H6598","v":["פַּתְבַּג","pathbag","pathbag'","Of Persian origin; a dainty: - portion (provision) of meat."]},{"k":"H6599","v":["פִּתְגָּם","pithgâm","pith-gawm'","Of Persian origin; a (judicial) sentence: - decree, sentence."]},{"k":"H6600","v":["פִּתְגָּם","pithgâm","pith-gawm'","(Chaldee); corresponding to H6599; a word, answer, letter or decree: - answer, letter, matter, word."]},{"k":"H6601","v":["פָּתָה","pâthâh","paw-thaw'","A primitive root; to open, that is, be (causatively make) roomy; usually figuratively (in a mental or moral sense) to be (causatively make) simple or (in a sinister way) delude: - allure, deceive, enlarge, entice, flatter, persuade, silly (one)."]},{"k":"H6602","v":["פְּתוּאֵל","Pᵉthûwʼêl","peth-oo-ale'","From H6601 and H410; enlarged of God; Pethuel, an Israelite: - Pethuel."]},{"k":"H6603","v":["פִּתּוּחַ","pittûwach","pit-too'-akh","Passive participle of H6605; sculpture (in low or high relief or even intaglio): - carved (work) (are, en-) grave (-ing, -n)."]},{"k":"H6604","v":["פְּתוֹר","Pᵉthôwr","peth-ore'","Of foreign origin; Pethor, a place in Mesopotamia: - Pethor."]},{"k":"H6605","v":["פָּתַח","pâthach","paw-thakh'","A primitive root; to open wide (literally or figuratively); specifically to loosen, begin, plough, carve: - appear, break forth, draw (out), let go free, (en-) grave (-n), loose (self), (be, beset) open (-ing), put off, ungird, unstop, have vent."]},{"k":"H6606","v":["פְּתַח","pᵉthach","peth-akh'","(Chaldee); corresponding to H6605; to open: - open."]},{"k":"H6607","v":["פֶּתַח","pethach","peh'-thakh","From H6605; an opening (literally), that is, door (gate) or entrance way: - door, entering (in), entrance (-ry), gate, opening, place."]},{"k":"H6608","v":["פֵּתַח","pêthach","pay'-thakh","From H6605; opening (figuratively) that is, disclosure: - entrance."]},{"k":"H6609","v":["פְּתִחָה","pᵉthichâh","peth-ee-khaw'","From H6605; something opened, that is, a drawn sword: - drawn sword."]},{"k":"H6610","v":["פִּתְחוֹן","pithchôwn","pith-khone'","From H6605; opening (the act): - open (-ing)."]},{"k":"H6611","v":["פְּתַחְיָה","Pᵉthachyâh","peth-akh-yaw'","From H6605 and H3050; Jah has opened; Pethachjah, the name of four Israelites: - Pethakiah."]},{"k":"H6612","v":["פְּתִי","pᵉthîy","peth-ee'","From H6601; silly (that is, seducible): - foolish, simple (-icity, one)."]},{"k":"H6613","v":["פְּתַי","pᵉthay","peth-ah'-ee","(Chaldee); from a root corresponding to H6601; open, that is, (as noun) width: - breadth."]},{"k":"H6614","v":["פְּתִיגִיל","pᵉthîygîyl","peth-eeg-eel'","Of uncertain derivation; probably a figured mantle for holidays: - stomacher."]},{"k":"H6615","v":["פְּתַיּוּת","pᵉthayûwth","peth-ah-yooth'","From H6612; silliness (that is, seducibility): - simple."]},{"k":"H6616","v":["פָּתִיל","pâthîyl","paw-theel'","From H6617; twine: - bound, bracelet, lace, line, ribband, thread, wire."]},{"k":"H6617","v":["פָּתַל","pâthal","paw-thal'","A primitive root; to twine, that is, (literally) to struggle or (figuratively) be (morally) tortuous: - (shew self) froward, shew self unsavoury, wrestle."]},{"k":"H6618","v":["פְּתַלְתֹּל","pᵉthaltôl","peth-al-tole'","From H6617; tortuous (that is, crafty): - crooked."]},{"k":"H6619","v":["פִּתֹם","Pithôm","pee-thome'","Of Egyptian derivation; Pithom, a place in Egypt: - Pithom."]},{"k":"H6620","v":["פֶּתֶן","pethen","peh'-then","From an unused root meaning to twist; an asp (from its contortions): - adder."]},{"k":"H6621","v":["פֶּתַע","pethaʻ","peh'-thah","From an unused root meaning to open (the eyes); a wink, that is, moment (compare H6597), (used only (with or without preposition) adverbially quickly or unexpectedly): - at an instant suddenly, X very."]},{"k":"H6622","v":["פָּתַר","pâthar","paw-thar'","A primitive root; to open up, that is, (figuratively) interpret (a dream): - interpret (-ation, -er)."]},{"k":"H6623","v":["פִּתְרוֹן","pithrôwn","pith-rone'","From H6622; interpretation (of a dream): - interpretation."]},{"k":"H6624","v":["פַּתְרוֹס","Pathrôwç","path-roce'","Of Egyptian derivation; Pathros, a part of Egypt: - Pathros."]},{"k":"H6625","v":["פַּתְרֻסִי","Pathruçîy","path-roo-see'","Partrial from H6624; a Pathrusite, or inhabitant of Pathros: - Pathrusim."]},{"k":"H6626","v":["פָּתַת","pâthath","paw-thath'","A primitive root; to open, that is, break: - part."]},{"k":"H6627","v":["צָאָה","tsâʼâh","tsaw-aw'","From H3318; issue, that is, (human) excrement: - that (which) cometh from (out)."]},{"k":"H6628","v":["צֶאֶל","tseʼel","tseh'-el","From an unused root meaning to be slender; the lotus tree: - shady tree."]},{"k":"H6629","v":["צֹאן","tsôʼn","tsone","From an unused root meaning to migrate; a collective name for a flock (of sheep or goats); also figuratively (of men): - (small) cattle, flock (+ -s), lamb (+ -s), sheep ([-cote, -fold, -shearer, -herds])."]},{"k":"H6630","v":["צַאֲנָן","Tsaʼănân","tsah-an-awn'","From the same as H6629 used denominatively; sheep pasture; Zaanan, a place in Palestine: - Zaanan."]},{"k":"H6631","v":["צֶאֱצָא","tseʼĕtsâʼ","tseh-ets-aw'","From H3318; issue, that is, produce, children: - that which cometh forth (out), offspring."]},{"k":"H6632","v":["צָב","tsâb","tsawb","From an unused root meaning to establish; a palanquin or canopy (as a fixture); also a species of lizard (probably as clinging fast): - covered, litter, tortoise."]},{"k":"H6633","v":["צָבָא","tsâbâʼ","tsaw-baw'","A primitive root; to mass (an army or servants): - assemble, fight, perform, muster, wait upon, war."]},{"k":"H6634","v":["צְבָא","tsᵉbâʼ","tseb-aw'","(Chaldee); corresponding to H6633 in the figuratively sense of summoning one’s wishes; to please: - will, would."]},{"k":"H6635","v":["צָבָא","tsâbâʼ","tsaw-baw'","From H6633; a mass of persons (or figurative things), especially regularly organized for war (an army); by implication a campaign, literally or figuratively (specifically hardship, worship): - appointed time, (+) army, (+) battle, company, host, service, soldiers, waiting upon, war (-fare)."]},{"k":"H6636","v":["צְבֹאִים","Tsᵉbôʼîym","tseb-o-eem'","Plural of H6643; gazelles; Tseboim or Tsebijim, a place in Palestine: - Zeboiim, Zeboim."]},{"k":"H6637","v":["צֹבֵבָה","Tsôbêbâh","tso-bay-baw'","Feminine active participle of the same as H6632; the canopier (with the article); Tsobebah, an Israelitess: - Zobebah."]},{"k":"H6638","v":["צָבָה","tsâbâh","tsaw-baw'","A primitive root; to amass, that is, grow turgid; specifically to array an army against: - fight, swell."]},{"k":"H6639","v":["צָבֶה","tsâbeh","tsaw-beh'","From H6638; turgid: - swell."]},{"k":"H6640","v":["צְבוּ","tsᵉbûw","tseb-oo'","From H6634; properly will; concretely an affair (as a matter of determination): - purpose."]},{"k":"H6641","v":["צָבוּעַ","tsâbûwaʻ","tsaw-boo'-ah","Passive participle of the same as H6648; dyed (in stripes), that is, the hyena: - speckled."]},{"k":"H6642","v":["צָבַט","tsâbaṭ","tsaw-bat'","A primitive root; to grasp, that is, hand out: - reach."]},{"k":"H6643","v":["צְבִי","tsᵉbîy","tseb-ee'","From H6638 in the sense of prominence; splendor (as conspicuous); also a gazelle (as beautiful): - beautiful (-ty), glorious (-ry), goodly, pleasant, roe (-buck)."]},{"k":"H6644","v":["צִבְיָא","Tsibyâʼ","tsib-yaw'","For H6645; Tsibja, an Israelite: - Zibia."]},{"k":"H6645","v":["צִבְיָּה","Tsibyâh","tsib-yaw'","For H6646; Tsibjah, an Israelitess: - Zibiah."]},{"k":"H6646","v":["צְבִיָּה","tsᵉbîyâh","tseb-ee-yaw'","Feminine of H6643; a female gazelle: - roe."]},{"k":"H6647","v":["צְבַע","tsᵉbaʻ","tseb-ah'","(Chaldee); a root corresponding to that of H6648; to dip: - wet."]},{"k":"H6648","v":["צֶבַע","tsebaʻ","tseh'-bah","From an unused root meaning to dip (into coloring fluid); a dye: - divers, colours."]},{"k":"H6649","v":["צִבְעוֹן","Tsibʻôwn","tsib-one'","From the same as H6648; variegated; Tsibon, an Idumaean: - Zibeon."]},{"k":"H6650","v":["צְבֹעִים","Tsᵉbôʻîym","tseb-o-eem'","Plural of H6641; hyenas; Tseboim, a place in Palestine: - Zeboim."]},{"k":"H6651","v":["צָבַר","tsâbar","tsaw-bar'","A primitive root; to aggregate: - gather (together), heap (up), lay up."]},{"k":"H6652","v":["צִבֻּר","tsibbur","tsib-boor'","From H6551; a pile: - heap."]},{"k":"H6653","v":["צֶבֶת","tsebeth","tseh'-beth","From an unused root apparently meaning to grip; a lock of stalks: - handful."]},{"k":"H6654","v":["צַד","tsad","tsad","Contracted from an unused root meaning to sidle off; a side; figuratively an adversary: - (be-) side."]},{"k":"H6655","v":["צַד","tsad","tsad","(Chaldee); corresponding to H6654; used adverbially (with preposition) at or upon the side of: - against, concerning."]},{"k":"H6656","v":["צְדָא","tsᵉdâʼ","tsed-aw'","(Chaldee); from an unused root corresponding to H6658 in the sense of intentness; a (sinister) design: - true."]},{"k":"H6657","v":["צְדָד","Tsᵉdâd","tsed-awd'","From the same as H6654; a siding; Tsedad, a place near Palestine: - Zedad."]},{"k":"H6658","v":["צָדָה","tsâdâh","tsaw-daw'","A primitive root; to chase; by implication to desolate: - destroy, hunt, lie in wait."]},{"k":"H6659","v":["צָדוֹק","Tsâdôwq","tsaw-doke'","From H6663; just; Tsadok, the name of eight or nine Israelites: - Zadok."]},{"k":"H6660","v":["צְדִיָּה","tsᵉdîyâh","tsed-ee-yaw'","From H6658; design (compare H6656): - lying in wait."]},{"k":"H6661","v":["צִדִּים","Tsiddîym","tsid-deem'","Plural of H6654; sides; Tsiddim (with the article), a place in Palestine: - Ziddim."]},{"k":"H6662","v":["צַדִּיק","tsaddîyq","tsad-deek'","From H6663; just: - just, lawful, righteous (man)."]},{"k":"H6663","v":["צָדַק","tsâdaq","tsaw-dak'","A primitive root; to be (causatively make) right (in a moral or forensic sense): - cleanse, clear self, (be, do) just (-ice, -ify, -ify self), (be, turn to) righteous (-ness)."]},{"k":"H6664","v":["צֶדֶק","tsedeq","tseh'-dek","From H6663; the right (natural, moral or legal); also (abstractly) equity or (figuratively) prosperity: -  X even, (X that which is altogether) just (-ice), ([un-]) right (-eous) (cause, -ly, -ness)."]},{"k":"H6665","v":["צִדְקָה","tsidqâh","tsid-kaw'","(Chaldee); corresponding to H6666; beneficence: - righteousness."]},{"k":"H6666","v":["צְדָקָה","tsᵉdâqâh","tsed-aw-kaw'","From H6663; rightness (abstractly), subjectively (rectitude), objectively (justice), morally (virtue) or figuratively (prosperity): - justice, moderately, right (-eous) (act, -ly, -ness)."]},{"k":"H6667","v":["צִדְקִיָּה","Tsidqîyâh","tsid-kee-yaw'","From H6664 and H3050; right of Jah; Tsidkijah, the name of six Israelites: - Zedekiah, Zidkijah."]},{"k":"H6668","v":["צָהַב","tsâhab","tsaw-hab'","A primitive root; to glitter, that is, be golden in color: -    X fine."]},{"k":"H6669","v":["צָהֹב","tsâhôb","tsaw-obe'","From H6668; golden in color: - yellow."]},{"k":"H6670","v":["צָהַל","tsâhal","tsaw-hal'","A primitive root; to gleam, that is, (figuratively) be cheerful; by transference, to sound clear (of various animal or human expressions): - bellow, cry aloud (out), lift up, neigh, rejoice, make to shine, shout."]},{"k":"H6671","v":["צָהַר","tsâhar","tsaw-har'","A primitive root; to glisten; used only as denominative from H3323, to press out oil: - make oil."]},{"k":"H6672","v":["צֹהַר","tsôhar","tso'-har","From H6671; a light (that is, window); dual double light, that is, noon: - midday, noon (-day, -tide), window."]},{"k":"H6673","v":["צַו","tsav","tsav","From H6680; an injunction: - commandment, precept."]},{"k":"H6674","v":["צוֹא","tsôwʼ","tso","From an unused root meaning to issue; soiled (as if excrementitious): - filthy."]},{"k":"H6675","v":["צוֹאָה","tsôwʼâh","tso-aw'","Feminine of H6674; excrement; generally dirt; figuratively pollution: - dung, filth (-iness). Marg. for H2716."]},{"k":"H6676","v":["צַוַּאר","tsavvaʼr","tsav-var'","(Chaldee); corresponding to H6677: - neck."]},{"k":"H6677","v":["צַוָּאר","tsavvâʼr","tsav-vawr'","Intensive from H6696 in the sense of binding; the back of the neck (as that on which burdens are bound): - neck."]},{"k":"H6678","v":["צוֹבָא","Tsôwbâʼ","tso-baw'","From an unused root meaning to station; a station; Zoba or Zobah, a region of Syria: - Zoba, Zobah."]},{"k":"H6679","v":["צוּד","tsûwd","tsood","A primitive root; to lie alongside (that is, in wait); by implication to catch an animal (figuratively men); (denominative from H6718) to victual (for a journey): - chase, hunt, sore, take (provision)."]},{"k":"H6680","v":["צָוָה","tsâvâh","tsaw-vaw'","A primitive root; (intensively) to constitute, enjoin: - appoint, (for-) bid. (give a) charge, (give a, give in, send with) command (-er, ment), send a messenger, put, (set) in order."]},{"k":"H6681","v":["צָוַח","tsâvach","tsaw-vakh'","A primitive root; to screech (exultingly): - shout."]},{"k":"H6682","v":["צְוָחָה","tsᵉvâchâh","tsev-aw-khaw'","From H6681; a screech (of anguish): - cry (-ing)."]},{"k":"H6683","v":["צוּלָה","tsûwlâh","tsoo-law'","From an unused root meaning to sink; an abyss (of the sea): - deep."]},{"k":"H6684","v":["צוּם","tsûwm","tsoom","A primitive root; to cover over (the mouth), that is, to fast: -  X at all, fast."]},{"k":"H6685","v":["צוֹם","tsôwm","tsome","From H6684; a fast: - fast (-ing)."]},{"k":"H6686","v":["צוּעָר","Tsûwʻâr","tsoo-awr'","From H6819; small; Tsuar, an Israelite: - Zuar."]},{"k":"H6687","v":["צוּף","tsûwph","tsoof","A primitive root; to overflow: - (make to over-) flow, swim."]},{"k":"H6688","v":["צוּף","tsûwph","tsoof","From H6687; comb of honey (from dripping): - honeycomb."]},{"k":"H6689","v":["צוּף","Tsûwph","tsoof","From H6688; honey comb; Tsuph or Tsophai or Tsiph, the name of an Israelite and a place in Palestine: - Zophai, Zuph."]},{"k":"H6690","v":["צוֹפַח","Tsôwphach","tso-fakh'","From an unused root meaning to expand, breadth; Tsophach, an Israelite: - Zophah."]},{"k":"H6691","v":["צוֹפַר","Tsôwphar","tso-far'","From H6852; departing; Tsophar, a friend of Job: - Zophar."]},{"k":"H6692","v":["צוּץ","tsûwts","tsoots","A primitive root; to twinkle, that is, glance; by analogy to blossom (figuratively flourish): - bloom, blossom, flourish, shew self."]},{"k":"H6693","v":["צוּק","tsûwq","tsook","A primitive root; to compress, that is, (figuratively) oppress, distress: - constrain, distress, lie sore, (op-) press (-or), straiten."]},{"k":"H6694","v":["צוּק","tsûwq","tsook","A pirm. root (rather identical with H6693 through the idea of narrowness (of orifice)); to pour out, that is, (figuratively) smelt, utter: - be molten, pour."]},{"k":"H6695","v":["צוֹק","tsôwq","tsoke","From H6693; a strait, that is, (figuratively) distress: - anguish, X troublous."]},{"k":"H6696","v":["צוּר","tsûwr","tsoor","A primitive root; to cramp, that is, confine (in many applications, literally and figuratively, formative or hostile): - adversary, assault, beset, besiege, bind (up), cast, distress, fashion, fortify, inclose, lay siege, put up in bags."]},{"k":"H6697","v":["צוּר","tsûwr","tsoor","From H6696; properly a cliff (or sharp rock, as compressed); generally a rock or boulder; figuratively a refuge; also an edge (as precipitous): - edge, X (mighty) God (one), rock, X sharp, stone, X strength, X strong. See also H1049."]},{"k":"H6698","v":["צוּר","Tsûwr","tsoor","The same as H6697; rock; Tsur, the name of a Midianite and of an Israelite: - Zur."]},{"k":"H6699","v":["צוּרָה","tsûwrâh","tsoo-raw'","Feminine of H6697; a rock (Job_28:10); also a form (as if pressed out): - form, rock."]},{"k":"H6700","v":["צוּרִיאֵל","Tsûwrîyʼêl","tsoo-ree-ale'","From H6697 and H410; rock of God; Tsuriel, an Israelite: - Zuriel."]},{"k":"H6701","v":["צוּרִישַׁדַּי","Tsûwrîyshadday","tsoo-ree-shad-dah'-ee","From H6697 and H7706; rock of (the) Almighty; Tsurishaddai, an Israelite: - Zurishaddai."]},{"k":"H6702","v":["צוּת","tsûwth","tsooth","A primitive root; to blaze: - burn."]},{"k":"H6703","v":["צַח","tsach","tsakh","From H6705; dazzling, that is, sunny, bright, (figuratively) evident: - clear, dry, plainly, white."]},{"k":"H6704","v":["צִחֶה","tsicheh","tsee-kheh'","From an unused root meaning to glow; parched: - dried up."]},{"k":"H6705","v":["צָחַח","tsâchach","tsaw-khakh'","A primitive root; to glare, that is, be dazzling white: - be whiter."]},{"k":"H6706","v":["צְחִיחַ","tsᵉchîyach","tsekh-ee'-akh","From H6705; glaring, that is, exposed to the bright sun: - higher place, top."]},{"k":"H6707","v":["צְחִיחָה","tsᵉchîychâh","tsekh-ee-khaw'","Feminine of H6706; a parched region, that is, the desert: - dry land."]},{"k":"H6708","v":["צְחִיחִי","tsᵉchîychîy","tsekh-ee-khee'","From H6706; bare spot, that is, in the glaring sun: - higher place."]},{"k":"H6709","v":["צַחֲנָה","tsachănâh","tsakh-an-aw'","From an unused root meaning to putrefy; stench: - ill savour."]},{"k":"H6710","v":["צַחְצָחָה","tsachtsâchâh","tsakh-tsaw-khaw'","From H6705; a dry place, that is, desert: - drought."]},{"k":"H6711","v":["צָחַק","tsâchaq","tsaw-khak'","A primitive root; to laugh outright (in merriment or scorn); by implication to sport: - laugh, mock, play, make sport."]},{"k":"H6712","v":["צְחֹק","tsᵉchôq","tsekh-oke'","From H6711; laughter (in pleasure or derision): - laugh (-ed to scorn)."]},{"k":"H6713","v":["צַחַר","tsachar","tsakh'-ar","From an unused root meaning to dazzle; sheen, that is, whiteness: - white."]},{"k":"H6714","v":["צֹחַר","Tsôchar","tso'-khar","From the same as H6713; whiteness; Tsochar, the name of a Hittite and of an Israelite: - Zohar. Compare H3328."]},{"k":"H6715","v":["צָחֹר","tsâchôr","tsaw-khore'","From the same as H6713; white: - white."]},{"k":"H6716","v":["צִי","tsîy","tsee","From H6680; a ship (as a fixture): - ship."]},{"k":"H6717","v":["צִיבָא","Tsîybâʼ","tsee-baw'","From the same as H6678; station; Tsiba, an Israelite: - Ziba."]},{"k":"H6718","v":["צַיִד","tsayid","tsah'-yid","From a form of H6679 and meaning the same; the chase; also game (thus taken); (generally) lunch (especially for a journey): -    X catcheth, food, X hunter, (that which he took in) hunting, venison, victuals."]},{"k":"H6719","v":["צַיָּד","tsayâd","tsah'-yawd","From the same as H6718; a huntsman: - hunter."]},{"k":"H6720","v":["צֵידָה","tsêydâh","tsay-daw'","Feminine of H6718; food: - meat, provision, venison, victuals."]},{"k":"H6721","v":["צִידוֹן","Tsîydôwn","tsee-done'","From H6679 in the sense of catching fish; fishery; Tsidon, the name of a son of Canaan, and of a place in Palestine: - Sidon, Zidon."]},{"k":"H6722","v":["צִידֹנִי","Tsîydônîy","tsee-do-nee'","Patrial from H6721; a Tsidonian or inhabitant of Tsidon: - Sidonian, of Sidon, Zidonian."]},{"k":"H6723","v":["צִיָּה","tsîyâh","tsee-yaw'","From an unused root meaning to parch; aridity; concretely a desert: - barren, drought, dry (land, place), solitary place, wilderness."]},{"k":"H6724","v":["צִיוֹן","tsîyôwn","tsee-yone'","From the same as H6723; a desert: - dry place."]},{"k":"H6725","v":["צִיּוּן","tsîyûwn","tsee-yoon'","From the same as H6723 in the sense of conspicuousness (compare H5329); a monumental or guiding pillar: - sign, title, waymark."]},{"k":"H6726","v":["צִיּוֹן","Tsîyôwn","tsee-yone'","The same (regular) as H6725; Tsijon (as a permanent capital), a mountain of Jerusalem: - Zion."]},{"k":"H6727","v":["צִיחָא","Tsîychâʼ","tsee-khaw'","As if feminine of H6704; drought; Tsicha, the name of two Nethinim: - Ziha."]},{"k":"H6728","v":["צִיִּי","tsîyîy","tsee-ee'","From the same as H6723; a desert dweller, that is, nomad or wild beast: - wild beast of the desert, that dwell in (inhabiting) the wilderness."]},{"k":"H6729","v":["צִינֹק","tsîynôq","tsee-noke'","From an unused root meaning to confine; the pillory: - stocks."]},{"k":"H6730","v":["צִיעֹר","Tsîyʻôr","tsee-ore'","From H6819; small; Tsior, a place in Palestine: - Zior."]},{"k":"H6731","v":["צִיץ","tsîyts","tseets","From H6692; properly glistening, that is, a burnished plate; also a flower (as bright colored); a wing (as gleaming in the air): - blossom, flower, plate, wing."]},{"k":"H6732","v":["צִיץ","Tsîyts","tseets","The same as H6731; bloom; Tsits, a place in Palestine: - Ziz."]},{"k":"H6733","v":["צִיצָה","tsîytsâh","tsee-tsaw'","Feminine of H6731; a flower: - flower."]},{"k":"H6734","v":["צִיצִת","tsîytsith","tsee-tseeth'","Feminine of H6731; a floral or wing like projection, that is, a fore lock of hair, a tassel: - fringe, lock."]},{"k":"H6735","v":["צִיר","tsîyr","tseer","From H6696; a hinge (as pressed in turning); also a throe (as a physical or mental pressure); also a herald or errand doer (as constrained by the principal): - ambassador, hinge, messenger, pain, pang, sorrow. Compare H6736."]},{"k":"H6736","v":["צִיר","tsîyr","tseer","The same as H6735; a form (of beauty; as if pressed out, that is, carved); hence an (idolatrous) image: - beauty, idol."]},{"k":"H6737","v":["צָיַר","tsâyar","tsaw-yar'","A denominative from H6735 in the sense of ambassador; to make an errand, that is, betake oneself: - make as if . . . had been ambassador."]},{"k":"H6738","v":["צֵל","tsêl","tsale","From H6751; shade, whether literally or figuratively: - defence, shade (-ow)."]},{"k":"H6739","v":["צְלָא","tsᵉlâʼ","tsel-aw'","(Chaldee); probably corresponding to H6760 in the sense of bowing; pray: - pray."]},{"k":"H6740","v":["צָלָה","tsâlâh","tsaw-law'","A primitive root; to roast: - roast."]},{"k":"H6741","v":["צִלָּה","Tsillâh","tsil-law'","Feminine of H6738; Tsillah, an antediluvian woman: - Zillah."]},{"k":"H6742","v":["צְלוּל","tsᵉlûwl","tsel-ool'","From H6749 in the sense of rolling; a (round or flattened) cake: - cake."]},{"k":"H6743","v":["צָלַח","tsâlach","tsaw-lakh'","A primitive root; to push forward, in various senses (literally or figuratively, transitively or intransitively): - break out, come (mightily), go over, be good, be meet, be profitable, (cause to, effect, make to, send) prosper (-ity, -ous, -ously)."]},{"k":"H6744","v":["צְלַח","tsᵉlach","tsel-akh'","(Chaldee); corresponding to H6743; to advance (transitively or intransitively): - promote, prosper."]},{"k":"H6745","v":["צֵלָחָה","tsêlâchâh","tsay-law-khaw'","From H6743; something protracted or flattened out, that is, a platter: - pan."]},{"k":"H6746","v":["צְלֹחִית","tsᵉlôchîyth","tsel-o-kheeth'","From H6743; something prolonged or tall, that is, a vial or salt cellar: - cruse."]},{"k":"H6747","v":["צַלַּחַת","tsallachath","tsal-lakh'-ath","From H6743; something advanced or deep, that is, a bowl; figuratively the bosom: - bosom, dish."]},{"k":"H6748","v":["צָלִי","tsâlîy","tsaw-lee'","Passive participle of H6740; roasted: - roast."]},{"k":"H6749","v":["צָלַל","tsâlal","tsaw-lal'","A primitive root; properly to tumble down, that is, settle by a waving motion: - sink. Compare H6750, H6751."]},{"k":"H6750","v":["צָלַל","tsâlal","tsaw-lal'","A primitive root (rather identical with H6749 through the idea of vibration); to tinkle, that is, rattle together (as the ears in reddening with shame, or the teeth in chattering with fear): - quiver, tingle."]},{"k":"H6751","v":["צָלַל","tsâlal","tsaw-lal'","A primitive root (rather identical with H6749 through the idea of hovering over (compare H6754)); to shade, as twilight or an opaque object: - begin to be dark, shadowing."]},{"k":"H6752","v":["צֵלֶל","tsêlel","tsay'-lel","From H6751; shade: - shadow."]},{"k":"H6753","v":["צְלֶלְפּוֹנִי","Tsᵉlelpôwnîy","tsel-el-po-nee'","From H6752 and the active participle of H6437; shade facing; Tselelponi, an Israelitess: - Hazelelponi [includ. the article.]"]},{"k":"H6754","v":["צֶלֶם","tselem","tseh'-lem","From an unused root meaning to shade; a phantom, that is, (figuratively) illusion, resemblance; hence a representative figure, especially an idol: - image, vain shew."]},{"k":"H6755","v":["צֶלֶם","tselem","tseh'-lem","(Chaldee); corresponding to H6754; an idolatrous figure: - form, image."]},{"k":"H6756","v":["צַלְמוֹן","Tsalmôwn","tsal-mone'","From H6754; shady; Tsalmon, the name of a place in Palestine and of an Israelite: - Zalmon."]},{"k":"H6757","v":["צַלְמָוֶת","tsalmâveth","tsal-maw'-veth","From H6738 and H4194; shade of death, that is, the grave (figuratively calamity): - shadow of death."]},{"k":"H6758","v":["צַלְמֹנָה","Tsalmônâh","tsal-mo-naw'","Feminine of H6757; shadiness; Tsalmonah, a palce in the Desert: - Zalmonah."]},{"k":"H6759","v":["צַלְמֻנָּע","Tsalmunnâʻ","tsal-moon-naw'","From H6738 and H4513; shade has been denied; Tsalmunna, a Midianite: - Zalmunna."]},{"k":"H6760","v":["צָלַע","tsâlaʻ","tsaw-lah'","A primitive root; probably to curve; used only as denominative from H6763, to limp (as if one sided): - halt."]},{"k":"H6761","v":["צֶלַע","tselaʻ","tseh'-lah","From H6760; a limping or fall (figuratively): - adversity, halt (-ing)."]},{"k":"H6762","v":["צֶלַע","Tselaʻ","tseh'-lah","The same as H6761; Tsela, a place in Palestine: - Zelah."]},{"k":"H6763","v":["צֵלָע","tsêlâʻ","tsay-law'","From H6760; a rib (as curved), literally (of the body) or figuratively (of a door, that is, leaf); hence a side, literally (of a person) or figuratively (of an object or the sky, that is, quarter); arcitecturally a timber (especially floor or ceiling) or plank (single or collectively, that is, a flooring): - beem, board, chamber, corner, leaf, plank, rib, side (chamber)."]},{"k":"H6764","v":["צָלָף","Tsâlâph","tsaw-lawf'","From an unused root of unknown meaning; Tsalaph, an Israelite: - Zalaph."]},{"k":"H6765","v":["צְלׇפְחָד","Tsᵉlophchâd","tsel-of-chawd'","From the same as H6764 and H259; Tselophchad, an Israelite: - Zelophehad."]},{"k":"H6766","v":["צֶלְצַח","Tseltsach","tsel-tsakh'","From H6738 and H6703; clear shade; Tseltsach, a place in Palestine: - Zelzah."]},{"k":"H6767","v":["צְלָצַל","tsᵉlâtsal","tsel-aw-tsal'","From H6750 reduplicated; a clatter, that is, (abstractly) whirring (of wings); (concretely) a cricket; also a harpoon (as rattling), a cymbal (as clanging): - cymbal, locust, shadowing, spear."]},{"k":"H6768","v":["צֶלֶק","Tseleq","tseh'-lek","From an unused root meaning to split; fissure; Tselek, an Israelite: - Zelek."]},{"k":"H6769","v":["צִלְּתַי","Tsillᵉthay","tsil-leth-ah'-ee","From the feminine of H6738; shady; Tsillethai, the anme of two Israelites: - Zilthai."]},{"k":"H6770","v":["צָמֵא","tsâmêʼ","tsaw-may'","A primitive root; to thirst (literally or figuratively): - (be a-, suffer) thirst (-y)."]},{"k":"H6771","v":["צָמֵא","tsâmêʼ","tsaw-may'","From H6770; thirsty (literally or figuratively): - (that) thirst (-eth, -y)."]},{"k":"H6772","v":["צָמָא","tsâmâʼ","tsaw-maw'","From H6770; thirst (literally or figuratively): - thirst (-y)."]},{"k":"H6773","v":["צִמְאָה","tsimʼâh","tsim-aw'","Feminine of H6772; thirst (figuratively of libidinousnes): - thirst."]},{"k":"H6774","v":["צִמָּאוֹן","tsimmâʼôwn","tsim-maw-one'","From H6771; a thirsty place, that is, desert: - drought, dry ground, thirsty land."]},{"k":"H6775","v":["צָמַד","tsâmad","tsaw-mad'","A primitive root; to link, that is, gird; figuratively to serve, (mentally) contrive: - fasten, frame, join (self)."]},{"k":"H6776","v":["צֶמֶד","tsemed","tseh'-med","A yoke or team (that is, pair); hence an acre (that is, day’s task for a yoke of cattle to plough): - acre, couple, X together, two [asses], yoke (of oxen)."]},{"k":"H6777","v":["צַמָּה","tsammâh","tsam-maw'","From an unused root meaning to fasten on; a veil: - locks."]},{"k":"H6778","v":["צַמּוּק","tsammûwq","tsam-mook'","From H6784; a cake of dried grapes: - bunch (cluster) of raisins."]},{"k":"H6779","v":["צָמַח","tsâmach","tsaw-makh'","A primitive root; to sprout (transitively or intransitively, literally or figuratively): - bear, bring forth, (cause to, make to) bud (forth), (cause to, make to) grow (again, up), (cause to) spring (forth, up)."]},{"k":"H6780","v":["צֶמַח","tsemach","tseh'-makh","From H6779; a sprout (usually concretely), literally or figuratively: - branch, bud, that which (where) grew (upon), spring (-ing)."]},{"k":"H6781","v":["צָמִיד","tsâmîyd","tsaw-meed'","From H6775; a bracelet or arm clasp; generally a lid: - bracelet, covering."]},{"k":"H6782","v":["צַמִּים","tsammîym","tsam-meem'","From the same as H6777; a noose (as fastening); figuratively destruction: - robber."]},{"k":"H6783","v":["צְמִיתֻת","tsᵉmîythuth","tsem-ee-thooth'","From H6789; excision, that is, destruction; used only (adverbially) with prepositional prefix to extinction, that is, perpetually: - ever."]},{"k":"H6784","v":["צָמַק","tsâmaq","tsaw-mak'","A primitive root; to dry up: - dry."]},{"k":"H6785","v":["צֶמֶר","tsemer","tseh'-mer","From an unused root probably meaning to be shaggy; wool: - wool (-len)."]},{"k":"H6786","v":["צְמָרִי","Tsᵉmârîy","tsem-aw-ree'","Patrial from an unused name of a place in Palestine; a Tsemarite or branch of the Canaanites: - Zemarite."]},{"k":"H6787","v":["צְמָרַיִם","Tsᵉmârayim","tsem-aw-rah'-yim","Dual of H6785; double fleece; Tsemarajim, a place in Palestine: - Zemaraim."]},{"k":"H6788","v":["צַמֶּרֶת","tsammereth","tsam-meh'-reth","From the same as H6785; fleeciness, that is, foliage: - highest branch, top."]},{"k":"H6789","v":["צָמַת","tsâmath","tsaw-math'","A primitive root; to extirpate (literally or figuratively): - consume, cut off, destroy, vanish."]},{"k":"H6790","v":["צִן","Tsin","tseen","From an unused root meaning to prick; a crag; Tsin, a part of the Desert: - Zin."]},{"k":"H6791","v":["צֵן","tsên","tsane","From an unused root meaning to be prickly; a thorn; hence a cactus hedge: - thorn."]},{"k":"H6792","v":["צֹנֵא","tsônêʼ","tso-nay'","For H6629; a flock: - sheep."]},{"k":"H6793","v":["צִנָּה","tsinnâh","tsin-naw'","Feminine of H6791; a hook (as pointed); also a (large) shield (as if guarding by prickliness); also cold (as piercing): - buckler, cold, hook, shield, target."]},{"k":"H6794","v":["צִנּוּר","tsinnûwr","tsin-noor'","From an unused root perhaps meaning to be hollow; a culvert: - gutter, water-spout."]},{"k":"H6795","v":["צָנַח","tsânach","tsaw-nakh'","A primitive root; to alight; (transitively) to cause to descend, that is, drive down: - fasten, light [from off]."]},{"k":"H6796","v":["צָנִין","tsânîyn","tsaw-neen'","From the same as H6791; a thorn: - thorn."]},{"k":"H6797","v":["צָנִיף","tsânîyph","tsaw-neef'","From H6801; a head dress (that is, piece of cloth wrapped around): - diadem, hood, mitre."]},{"k":"H6798","v":["צָנַם","tsânam","tsaw-nam'","A primitive root; to blast or shrink: - withered."]},{"k":"H6799","v":["צְנָן","Tsᵉnân","tsen-awn'","Probably for H6630; Tsenan, a place near Palestine: - Zenan."]},{"k":"H6800","v":["צָנַע","tsânaʻ","tsaw-nah'","A primitive root; to humiliate: - humbly, lowly."]},{"k":"H6801","v":["צָנַף","tsânaph","tsaw-naf'","A primitive root; to wrap, that is, roll or dress: - be attired, X surely, violently turn."]},{"k":"H6802","v":["צְנֵפָה","tsᵉnêphâh","tsen-ay-faw'","From H6801; a ball: -  X toss."]},{"k":"H6803","v":["צִנְצֶנֶת","tsintseneth","tsin-tseh'-neth","From the same as H6791; a vase (probably a vial tapering at the top): - pot."]},{"k":"H6804","v":["צַנְתָּרָה","tsantârâh","tsan-taw-raw'","Probably from the same as H6794; a tube: - pipe."]},{"k":"H6805","v":["צָעַד","tsâʻad","tsaw-ad'","A primitive root; to pace, that is, step regularly; (upward) to mount; (along) to march; (down and causatively) to hurl: - bring, go, march (through), run over."]},{"k":"H6806","v":["צַעַד","tsaʻad","tsah'-ad","From H6804; a pace or regular step: - pace, step."]},{"k":"H6807","v":["צְעָדָה","tsᵉʻâdâh","tseh-aw-daw'","Feminine of H6806; a march; (concretely) an (ornamental) ankle chain: - going, ornament of the legs."]},{"k":"H6808","v":["צָעָה","tsâʻâh","tsaw-aw'","A primitive root; to tip over (for the purpose of spilling or pouring out), that is, (figuratively) depopulate; by implication to imprison or conquer; (reflexively) to lie down (for coition): -    captive exile, travelling, (cause to) wander (-er)."]},{"k":"H6809","v":["צָעִיף","tsâʻîyph","tsaw-eef'","From an unused root meaning to wrap over; a veil: - vail."]},{"k":"H6810","v":["צָעִיר","tsâʻîyr","tsaw-eer'","From H6819; little; (in number) few; (in age) young, (in value) ignoble: - least, little (one), small (one), + young (-er, -est)."]},{"k":"H6811","v":["צָעִיר","Tsâʻîyr","tsaw-eer'","The same as H6810; Tsair, a place in Idumaea: - Zair."]},{"k":"H6812","v":["צְעִירָה","tsᵉʻîyrâh","tseh-ee-raw'","Feiminine of H6810; smallness (of age), that is, juvenility: - youth."]},{"k":"H6813","v":["צָעַן","tsâʻan","tsaw-an'","A primitive root; to load up (beasts), that is, to migrate: - be taken down."]},{"k":"H6814","v":["צֹעַן","Tsôʻan","tso'-an","Of Egyptian derivation; Tsoan, a place in Egypt: - Zoan."]},{"k":"H6815","v":["צַעֲנַנִּים","Tsaʻănannîym","tsah-an-an-neem'","Plural from H6813; removals; Tsaanannim or Tsaanajim, a place in Palestine: - Zaannannim, Zaanaim."]},{"k":"H6816","v":["צַעְצֻעַ","tsaʻtsuaʻ","tsah-tsoo'-ah","From an unused root meaning to bestrew with carvings; sculpture: - image [work]."]},{"k":"H6817","v":["צָעַק","tsâʻaq","tsaw-ak'","A primitive root; to shriek; (by implication) to proclaim (an assembly): -    X at all, call together, cry (out), gather (selves) (together)."]},{"k":"H6818","v":["צַעֲקָה","tsaʻăqâh","tsah-ak-aw'","From H6817; a shriek: - cry (-ing)."]},{"k":"H6819","v":["צָעַר","tsâʻar","tsaw-ar'","A primitive root; to be small, that is, (figuratively) ignoble: - be brought low, little one, be small."]},{"k":"H6820","v":["צֹעַר","Tsôʻar","tso'ar","From H6819; little; Tsoar, a place East of the Jordan: - Zoar."]},{"k":"H6821","v":["צָפַד","tsâphad","tsaw-fad'","A primitive root; to adhere: - cleave."]},{"k":"H6822","v":["צָפָה","tsâphâh","tsaw-faw'","A primitive root; properly to lean forward, that is, to peer into the distance; by implication to observe, await: - behold, espy, look up (well), wait for, (keep the) watch (-man)."]},{"k":"H6823","v":["צָפָה","tsâphâh","tsaw-faw'","A primitive root (probably rather identical with H6822 through the idea of expansion in outlook transformed to act); to sheet over (especially with metal): - cover, overlay."]},{"k":"H6824","v":["צָפָה","tsâphâh","tsaw-faw'","From H6823; an inundation (as covering): -    X swimmest."]},{"k":"H6825","v":["צְפוֹ","Tsᵉphôw","tsef-o'","From H6822; observant; Tsepho or Tsephi, an Idumaean: - Zephi, Zepho."]},{"k":"H6826","v":["צִפּוּי","tsippûwy","tsip-poo'-ee","From H6823; encasement (with metal): - covering, overlaying."]},{"k":"H6827","v":["צְפוֹן","Tsᵉphôwn","tsef-one'","Probably for H6837; Tsephon, an Israelite: - Zephon."]},{"k":"H6828","v":["צָפוֹן","tsâphôwn","tsaw-fone'","From H6845; properly hidden, that is, dark; used only of the north as a quarter (gloomy and unknown): - north (-ern, side, -ward, wind)."]},{"k":"H6829","v":["צָפוֹן","Tsâphôwn","tsaw-fone'","The same as H6828; boreal; Tsaphon, a place in Palestine: - Zaphon."]},{"k":"H6830","v":["צְפוֹנִי","tsᵉphôwnîy","tsef-o-nee'","From H6828; northern: - northern."]},{"k":"H6831","v":["צְפוֹנִי","Tsᵉphôwnîy","tsef-o-nee'","Patronymic from H6827; a Tsephonite, or (collectively) a descendant of Tsephon: - Zephonites."]},{"k":"H6832","v":["צְפוּעַ","tsᵉphûwaʻ","tsef-oo'-ah","From the same as H6848; excrement (as protruded): - dung."]},{"k":"H6833","v":["צִפּוֹר","tsippôwr","tsip-pore'","From H6852; a little bird (as hopping): - bird, fowl, sparrow."]},{"k":"H6834","v":["צִפּוֹר","Tsippôwr","tsip-pore'","The same as H6833; Tsippor, a Moabite: - Zippor."]},{"k":"H6835","v":["צַפַּחַת","tsappachath","tsap-pakh'-ath","From an unused root meaning to expand; a saucer (as flat): - cruse."]},{"k":"H6836","v":["צְפִיָּה","tsᵉphîyâh","tsef-ee-yaw'","From H6822; watchfulness: - watching."]},{"k":"H6837","v":["צִפְיוֹן","Tsiphyôwn","tsif-yone'","From H6822; watch tower; Tsiphjon, an Israelite: - Ziphion. Compare H6827."]},{"k":"H6838","v":["צַפִּיחִת","tsappîychith","tsap-pee-kheeth'","From the same as H6835; a flat thin cake: - wafer."]},{"k":"H6839","v":["צֹפִים","Tsôphîym","tso-feem'","Plural of active participle of H6822; watchers; Tsophim, a place East of Jordan: - Zophim."]},{"k":"H6840","v":["צָפִין","tsâphîyn","tsaw-feen'","From H6845; a treasure (as hidden): - hid."]},{"k":"H6841","v":["צְפִיר","tsᵉphîyr","tsef-eer'","(Chaldee); corresponding to H6842; a he goat: - he [goat]."]},{"k":"H6842","v":["צָפִיר","tsâphîyr","tsaw-feer'","From H6852; a male goat (as prancing): - (he) goat."]},{"k":"H6843","v":["צְפִירָה","tsᵉphîyrâh","tsef-ee-raw'","Feminine formed like H6842; a crown (as encircling the head); also a turn of affairs (that is, mishap): - diadem, morning."]},{"k":"H6844","v":["צָפִית","tsâphîyth","tsaw-feeth'","From H6822; a sentry: - watchtower."]},{"k":"H6845","v":["צָפַן","tsâphan","tsaw-fan'","A primitive root; to hide (by covering over); by implication to hoard or reserve; figuratively to deny; specifically (favorably) to protect, (unfavorably) to lurk: - esteem, hide (-den one, self), lay up, lurk (be set) privily, (keep) secret (-ly, place)."]},{"k":"H6846","v":["צְפַנְיָה","Tsᵉphanyâh","tsef-an-yaw'","From H6845 and H3050; Jah has secreted; Tsephanjah, the name of four Israelites: - Zephaniah."]},{"k":"H6847","v":["צׇפְנַת פַּעְנֵחַ","Tsophnath Paʻnêach","tsof-nath' pah-nay'-akh","Of Egyptian derivation; Tsophnath-Paneach, Joseph’s Egyptian name: - Zaphnath-paaneah."]},{"k":"H6848","v":["צֶפַע","tsephaʻ","tseh'-fah or tsiphoniy tsif-o-nee'","From an unused root meaning to extrude; a viper (as thrusting out the tongue, that is, hissing): - adder, cockatrice."]},{"k":"H6849","v":["צְפִעָה","tsᵉphiʻâh","tsef-ee-aw'","Feminine from the same as H6848; an outcast thing: - issue."]},{"k":"H6850","v":["צָפַף","tsâphaph","tsaw-faf'","A primitive root; to coo or chirp (as a bird): - chatter, peep, whisper."]},{"k":"H6851","v":["צַפְצָפָה","tsaphtsâphâh","tsaf-tsaw-faw'","From H6687; a willow (as growing in overflowed places): - willow tree."]},{"k":"H6852","v":["צָפַר","tsâphar","tsaw-far'","A primitive root; to skip about, that is, return: - depart early."]},{"k":"H6853","v":["צְפַר","tsᵉphar","tsef-ar'","(Chaldee); corresponding to H6833; a bird: - bird."]},{"k":"H6854","v":["צְפַרְדֵּעַ","tsᵉphardêaʻ","tsef-ar-day'-ah","From H6852 and a word elsewhere unused meaning a swamp; a marsh leaper, that is, frog: - frog."]},{"k":"H6855","v":["צִפֹּרָה","Tsippôrâh","tsip-po-raw'","Feminine of H6833; bird; tsipporah, Moses’ wife: - Zipporah."]},{"k":"H6856","v":["צִפֹּרֶן","tsippôren","tsip-po'-ren","From H6852 (in the denominative sense (from H6833) of scratching); properly a claw, that is, (human) nail; also the point of a style (or pen, tipped with adamant): - nail, point."]},{"k":"H6857","v":["צְפַת","Tsᵉphath","tsef-ath'","From H6822; watch tower; Tsephath, a place in Palestine: - Zephath."]},{"k":"H6858","v":["צֶפֶת","tsepheth","tseh'-feth","From an unused root meaning to encircle; a capital of a column: - chapiter."]},{"k":"H6859","v":["צְפָתָה","Tsᵉphâthâh","tsef-aw'-thaw","The same as H6857; Tsephathah, a place in Palestine: - Zephathah."]},{"k":"H6860","v":["צִקְלַג","Tsiqlag","tsik-lag'","Of uncertain derivation; Tsiklag or Tsikelag, a place in Palestine: - Ziklag."]},{"k":"H6861","v":["צִקְלֹן","tsiqlôn","tsik-lone'","From an unused root meaning to wind; a sack (as tied at the mouth): - husk."]},{"k":"H6862","v":["צַר","tsar","tsar","From H6887; narrow; (as a noun) a tight place (usually figuratively, that is, trouble); also a pebble (as in H6864); (transitively) an opponent (as crowding): - adversary, afflicted (-tion), anguish, close, distress, enemy, flint, foe, narrow, small, sorrow, strait, tribulation, trouble."]},{"k":"H6863","v":["צֵר","Tsêr","tsare","From H6887; Tser, a place in Palestine: - Zer."]},{"k":"H6864","v":["צֹר","tsôr","tsore","From H6696; a stone (as if pressed hard or to a point); (by implication of use) a knife: - flint, sharp stone."]},{"k":"H6865","v":["צֹר","Tsôr","tsore","The same as H6864; a rock; Tsor, a place in Palestine: - Tyre, Tyrus."]},{"k":"H6866","v":["צָרַב","tsârab","tsaw-rab'","A primitive root; to burn: - burn."]},{"k":"H6867","v":["צָרֶבֶת","tsârebeth","tsaw-reh'-beth","From H6686; conflagration (of fire or disease): - burning, inflammation."]},{"k":"H6868","v":["צְרֵדָה","Tsᵉrêdâh","tser-ay-daw'","Apparently from an unused root meaning to pierce; puncture; Tseredah, a place in Palestine: - Zereda, Zeredathah."]},{"k":"H6869","v":["צָרָה","tsârâh","tsaw-raw'","Feminine of H6862; tightness (that is, figuratively trouble); transitively a female rival: - adversary, adversity, affliction, anguish, distress, tribulation, trouble."]},{"k":"H6870","v":["צְרוּיָה","Tsᵉrûwyâh","tser-oo-yaw'","Feminine participle passive from the same as H6875; wounded; Tserujah, an Israelitess: - Zeruiah."]},{"k":"H6871","v":["צְרוּעָה","Tsᵉrûwʻâh","tser-oo-aw'","Feminine passive participle of H6879; leprous; Tseruah, an Israelitess: - Zeruah."]},{"k":"H6872","v":["צְרוֹר","tsᵉrôwr","tser-ore'","From H6887; a parcel (as packed up); also a kernel or particle (as if a package): - bag, X bendeth, bundle, least grain, small stone."]},{"k":"H6873","v":["צָרַח","tsârach","tsaw-rakh'","A primitive root; to be clear (in tone, that is, shrill), that is, to whoop: - cry, roar."]},{"k":"H6874","v":["צְרִי","Tsᵉrîy","tser-ee'","The same as H6875; Tseri, an Israelite: - Zeri. Compare H3340."]},{"k":"H6875","v":["צְרִי","tsᵉrîy","tser-ee'","From an unused root meaning to crack (as by pressure), hence to leak; distillation, that is, balsam: - balm."]},{"k":"H6876","v":["צֹרִי","Tsôrîy","tso-ree'","Patrial from H6865; a Tsorite or inhabitant of Tsor (that is, Syrian): - (man) of Tyre."]},{"k":"H6877","v":["צְרִיחַ","tsᵉrîyach","tser-ee'-akh","From H6873 in the sense of clearness of vision; a citadel: - high place, hold."]},{"k":"H6878","v":["צֹרֶךְ","tsôrek","tso'-rek","From an unused root meaning to need; need: - need."]},{"k":"H6879","v":["צָרַע","tsâraʻ","tsaw-rah'","A primitive root; to scourge, that is, (intransitively and figuratively) to be stricken with leprosy: - leper, leprous."]},{"k":"H6880","v":["צִרְעָה","tsirʻâh","tsir-aw'","From H6879; a wasp (as stinging): - hornet."]},{"k":"H6881","v":["צׇרְעָה","Tsorʻâh","tsor-aw'","Apparently another form for H6880; Tsorah, a place in Palestine: - Zareah, Zorah, Zoreah."]},{"k":"H6882","v":["צׇרְעִי","Tsorʻîy","tsor-ee'","Patrial from H6881; a Tsorite or Tsorathite, that is, inhabitant of Tsorah: - Zorites, Zareathites, Zorathites."]},{"k":"H6883","v":["צָרַעַת","tsâraʻath","tsaw-rah'-ath","From H6879; leprosy: - leprosy."]},{"k":"H6884","v":["צָרַף","tsâraph","tsaw-raf'","A primitive root; to fuse (metal), that is, refine (literally or figuratively): - cast, (re-) fine (-er), founder, goldsmith, melt, pure, purge away, try."]},{"k":"H6885","v":["צֹרְפִי","Tsôrᵉphîy","tso-ref-ee'","From H6884; refiner; Tsorephi (with the article), an Israelite: - goldsmith’s."]},{"k":"H6886","v":["צָרְפַת","Tsârᵉphath","tsaq-ref-ath'","From H6884; refinement; Tsarephath, a place in Palestine: - Zarephath."]},{"k":"H6887","v":["צָרַר","tsârar","tsaw-rar'","A primitive root; to cramp, literally or figuratively, transitively or intransitively: - adversary, (be in) afflict (-ion), besiege, bind (up), (be in, bring) distress, enemy, narrower, oppress, pangs, shut up, be in a strait (trouble), vex."]},{"k":"H6888","v":["צְרֵרָה","Tsᵉrêrâh","tser-ay-raw'","Apparently by erroneous transcription for H6868; Tsererah for Tseredah: - Zereath."]},{"k":"H6889","v":["צֶרֶת","Tsereth","tseh'-reth","Perhaps from H6671; splendor; Tsereth, an Israelite: - Zereth."]},{"k":"H6890","v":["צֶרֶת הַשַּׁחַר","Tsereth hash-Shachar","tseh'-reth hash-shakh'-ar","From the same as H6889 and H7837 with the article interposed; splendor of the dawn; Tsereth hash Shachar, a place in Palestine: - Zareth-shahar."]},{"k":"H6891","v":["צָרְתָן","Tsârᵉthân","tsaw-reth-awn'","Perhaps for H6868; Tsarethan, a place in Palestine: - Zarthan."]},{"k":"H6892","v":["קֵא","qêʼ","kay","From H6958; vomit: - vomit."]},{"k":"H6893","v":["קָאַת","qâʼath","kaw-ath'","From H6958; probably the pelican (from vomiting): - cormorant."]},{"k":"H6894","v":["קַב","qab","kab","From H6895; a hollow, that is, vessel used as a (dry) measure: - cab."]},{"k":"H6895","v":["קָבַב","qâbab","kaw-bab'","A primitive root; to scoop out, that is, (figuratively) to malign or execrate (that is, stab with words): -    X at all, curse."]},{"k":"H6896","v":["קֵבָה","qêbâh","kay-baw'","From H6895; the paunch (as a cavity) or first stomach of ruminants: - maw."]},{"k":"H6897","v":["קֹבָה","qôbâh","ko'-baw","From H6895; the abdomen (as a cavity): - belly."]},{"k":"H6898","v":["קֻבָּה","qubbâh","koob-baw'","From H6895; a pavilion (as a domed cavity): - tent."]},{"k":"H6899","v":["קִבּוּץ","qibbûwts","kib-boots'","From H6908; a throng: - company."]},{"k":"H6900","v":["קְבוּרָה","qᵉbûwrâh","keb-oo-raw'","Feminine passive participle of H6912; sepulture; (concretely) a sepulchre: - burial, burying place, grave, sepulchre."]},{"k":"H6901","v":["קָבַל","qâbal","kaw-bal'","A primitive root; to admit, that is, take (literally or figuratively): - choose, (take) hold, receive, (under-) take."]},{"k":"H6902","v":["קְבַל","qᵉbal","keb-al'","(Chaldee); corresponding to H6901; to acquire: - receive, take."]},{"k":"H6903","v":["קְבֵל","qᵉbêl","keb-ale'","(Chaldee); corresponding to H6905; (adverbially) in front of; usually (with other particles) on account of, so as, since, hence: -  + accounting to, + as, + because, before, + for this cause, + forasmuch as, + by this means, over against, by reason of, + that, + therefore, + though, + wherefore."]},{"k":"H6904","v":["קֹבֶל","qôbel","ko'-bel","From H6901 in the sense of confronting (as standing opposite in order to receive); a battering ram: - war."]},{"k":"H6905","v":["קָבָל","qâbâl","kaw-bawl'","From H6901 in the sense of opposite (see H6904); the presence, that is, (adverbially) in front of: - before."]},{"k":"H6906","v":["קָבַע","qâbaʻ","kaw-bah'","A primitive root; to cover, that is, (figuratively) defraud: - rob, spoil."]},{"k":"H6907","v":["קֻבַּעַת","qubbaʻath","koob-bah'-ath","From H6906; a goblet (as deep like a cover): - dregs."]},{"k":"H6908","v":["קָבַץ","qâbats","kaw-bats'","A primitive root; to grasp, that is, collect: - assemble (selves), gather (bring) (together, selves together, up), heap, resort, X surely, take up."]},{"k":"H6909","v":["קַבְצְאֵל","Qabtsᵉʼêl","kab-tseh-ale'","From H6908 and H410; God has gathered; Kabtseel, a place in Palestine: - Kabzeel. Compare H3343."]},{"k":"H6910","v":["קְבֻצָה","qᵉbutsâh","keb-oo-tsaw'","Feminine passive participle of H6908; a hoard: -  X gather."]},{"k":"H6911","v":["קִבְצַיִם","Qibtsayim","kib-tsah'-yim","Dual from H6908; a double heap; Kibtsajim, a place in Palestine: - Kibzaim."]},{"k":"H6912","v":["קָבַר","qâbar","kaw-bar'","A primitive root; to inter: -  X in any wise, bury (-ier)."]},{"k":"H6913","v":["קֶבֶר","qeber","keh'-ber","From H6912; a sepulchre: - burying place, grave, sepulchre."]},{"k":"H6914","v":["קִבְרוֹת הַתַּאֲוָה","Qibrôwth hat-Taʼă-vâh","kib-roth' hat-tahav-aw'","From the feminine plural of H6913 and H8378 with the article inteposed; graves of the longing; Kibroth hat Taavh, a place in the Desert: - Kibroth-hattaavah."]},{"k":"H6915","v":["קָדַד","qâdad","kaw-dad'","A primitive root; to shrivel up, that is, contract or bend the body (or neck) in deference: - bow (down) (the) head, stoop."]},{"k":"H6916","v":["קִדָּה","qiddâh","kid-daw'","From H6915; cassia bark (as in shrivelled rolls): - cassia."]},{"k":"H6917","v":["קָדוּם","qâdûwm","kaw-doom'","Passive participle of H6923; a pristine hero: - ancient."]},{"k":"H6918","v":["קָדוֹשׁ","qâdôwsh","kaw-doshe'","From H6942; sacred (ceremonially or morally); (as noun) God (by eminence), an angel, a saint, a sanctuary: - holy (One), saint."]},{"k":"H6919","v":["קָדַח","qâdach","kaw-dakh'","A primitive root to inflame: - burn, kindle."]},{"k":"H6920","v":["קַדַּחַת","qaddachath","kad-dakh'-ath","From H6919; inflammation, that is, febrile disease: - burning ague, fever."]},{"k":"H6921","v":["קָדִים","qâdîym","kaw-deem'","From H6923; the fore or front part; hence (by orientation) the East (often adverbially eastward, for brevity the East wind): - east (-ward, wind)."]},{"k":"H6922","v":["קַדִּישׁ","qaddîysh","kad-deesh'","(Chaldee); corresponding to H6918: - holy (One), saint."]},{"k":"H6923","v":["קָדַם","qâdam","kaw-dam'","A primitive root; to project (one self), that is, precede; hence to anticipate, hasten, meet (usually for help): - come (go, [flee]) before, + disappoint, meet, prevent."]},{"k":"H6924","v":["קֶדֶם","qedem","keh'-dem","From H6923; the front, of palce (absolutely the fore part, relatively the East) or time (antiquity); often used adverbially (before, anciently, eastward): - aforetime, ancient (time), before, east (end, part, side, -ward), eternal, X ever (-lasting), forward, old, past. Compare H6926."]},{"k":"H6925","v":["קֳדָם","qŏdâm","kod-awm'","(Chaldee); corresponding to H6924; before: -  before, X from, X I (thought), X me, + of, X it pleased, presence."]},{"k":"H6926","v":["קִדְמָה","qidmâh","kid-maw'","Feminine of H6924; the forward part (or relatively) East (often adverbially on the East or in front): - east (-ward)."]},{"k":"H6927","v":["קַדְמָה","qadmâh","kad-maw'","From H6923; priority (in time); also used adverbially (before): - afore, antiquity, former (old) estate."]},{"k":"H6928","v":["קַדְמָה","qadmâh","kad-maw'","(Chaldee); corresponding to H6927; former time: - afore [-time], ago."]},{"k":"H6929","v":["קֵדְמָה","Qêdᵉmâh","kayd'-maw","From H6923; precedence; Kedemah, a son of Ishmael: - Kedemah."]},{"k":"H6930","v":["קַדְמוֹן","qadmôwn","kad-mone'","From H6923; eastern: - east."]},{"k":"H6931","v":["קַדְמוֹנִי","qadmôwnîy","kad-mo-nee'","From H6930; (of time) anterior or (of place) oriental: - ancient, they that went before, east, (thing of) old."]},{"k":"H6932","v":["קְדֵמוֹת","Qᵉdêmôwth","ked-ay-mothe'","From H6923; beginnings; Kedemoth, a place in eastern Palestine: - Kedemoth."]},{"k":"H6933","v":["קַדְמַי","qadmay","kad-mah'-ee","(Chaldee); from a root corresponding to H6923; first: - first."]},{"k":"H6934","v":["קַדְמִיאֵל","Qadmîyʼêl","kad-mee-ale'","From H6924 and H410; presence of God; Kadmiel, the name of three Israelites: - Kadmiel."]},{"k":"H6935","v":["קַדְמֹנִי","Qadmônîy","kad-mo-nee'","The same as H6931; ancient, that is, aboriginal; Kadmonite (collectively), the name of a tribe in Palestine: - Kadmonites."]},{"k":"H6936","v":["קׇדְקֹד","qodqôd","kod-kode'","From H6915; the crown of the head (as the part most bowed): - crown (of the head), pate, scalp, top of the head."]},{"k":"H6937","v":["קָדַר","qâdar","kaw-dar'","A primitive root; to be ashy, that is, dark colored; by implication to mourn (in sackcloth or sordid garments): - be black (-ish), be (make) dark (-en), X heavily, (cause to) mourn."]},{"k":"H6938","v":["קֵדָר","Qêdâr","kay-dawr'","From H6937; dusky (of the skin or the tent); Kedar, a son of Ishmael; also (collectively) bedawin (as his descendants or representatives): - Kedar."]},{"k":"H6939","v":["קִדְרוֹן","Qidrôwn","kid-rone'","From H6937; dusky place; Kidron, a brook near Jerusalem: - Kidron."]},{"k":"H6940","v":["קַדְרוּת","qadrûwth","kad-rooth'","From H6937; duskiness: - blackness."]},{"k":"H6941","v":["קְדֹרַנִּית","qᵉdôrannîyth","ked-o-ran-neeth'","Adverb from H6937; blackish ones (that is, in sackcloth); used adverbially in mourning weeds: - mournfully."]},{"k":"H6942","v":["קָדַשׁ","qâdash","kaw-dash'","A primitive root; to be (causatively make, pronounce or observe as) clean (ceremonially or morally): - appoint, bid, consecrate, dedicate, defile, hallow, (be, keep) holy (-er, place), keep, prepare, proclaim, purify, sanctify (-ied one, self), X wholly."]},{"k":"H6943","v":["קֶדֶשׁ","Qedesh","keh'-desh","From H6942; a sanctum; Kedesh, the name of four places in Palestine: - Kedesh."]},{"k":"H6944","v":["קֹדֶשׁ","qôdesh","ko'-desh","From H6942; a sacred place or thing; rarely abstractly sanctity: - consecrated (thing), dedicated (thing), hallowed (thing), holiness, (X most) holy (X day, portion, thing), saint, sanctuary."]},{"k":"H6945","v":["קָדֵשׁ","qâdêsh","kaw-dashe'","From H6942; a (quasi) sacred person, that is, (technically) a (male) devotee (by prostitution) to licentious idolatry: - sodomite, unclean."]},{"k":"H6946","v":["קָדֵשׁ","Qâdêsh","kaw-dashe'","The same as H6945; sanctuary; Kadesh, a place in the Desert: - Kadesh. Compare H6947."]},{"k":"H6947","v":["קָדֵשׁ בַּרְנֵעַ","Qâdêsh Barnêaʻ","kaw-dashe' bar-nay'-ah","From the same as H6946 and an otherwise unused word (apparently compounded of a correspondent to H1251 and a derivative of H5128) meaning desert of a fugitive; Kadesh of (the) Wilderness of Wandering; Kadesh-Barnea, a place in the Desert: - Kadesh-barnea."]},{"k":"H6948","v":["קְדֵשָׁה","qᵉdêshâh","ked-ay-shaw'","Feminine of H6945; a female devotee (that is, prostitute): - harlot, whore."]},{"k":"H6949","v":["קָהָה","qâhâh","kaw-haw'","A primitive root; to be dull: - be set on edge, be blunt."]},{"k":"H6950","v":["קָהַל","qâhal","'kaw-hal'","A primitive root; to convoke: - assemble (selves) (together), gather (selves) (together)."]},{"k":"H6951","v":["קָהָל","qâhâl","kaw-hawl'","From H6950; assemblage (usually concretely): - assembly, company, congregation, multitude."]},{"k":"H6952","v":["קְהִלָּה","qᵉhillâh","keh-hil-law'","From H6950; an assemblage: - assembly, congregation."]},{"k":"H6953","v":["קֹהֶלֶת","qôheleth","ko-heh'-leth","Feminine of active participle from H6950; a (female) assembler (that is, lecturer); abstractly preaching (used as a ‘nom de plume’, Koheleth): - preacher."]},{"k":"H6954","v":["קְהֵלָתָה","Qᵉhêlâthâh","keh-hay-law'-thaw","From H6950; convocation; Kehelathah, a place in the Desert: - Kehelathah."]},{"k":"H6955","v":["קְהָת","Qᵉhâth","keh-hawth'","From an unused root meaning to ally oneself; allied; Kehath, an Israelite: - Kohath."]},{"k":"H6956","v":["קֳהָתִי","Qŏhâthîy","ko-haw-thee'","Patronymic from H6955; a Kohathite (collectively) or descendant of Kehath: - Kohathites."]},{"k":"H6957","v":["קַו","qav","kav","From H6960 (compare H6961); a cord (as connecting), especially for measuring; figuratively a rule; also a rim, a musical string or accord: - line. Compare H6978."]},{"k":"H6958","v":["קוֹא","qôwʼ","ko","A primitive root; to vomit: - spue (out), vomit (out, up, up again)."]},{"k":"H6959","v":["קוֹבַע","qôwbaʻ","ko'-bah or ko-bah'","A form collateral to H3553; a helmet: - helmet."]},{"k":"H6960","v":["קָוָה","qâvâh","kaw-vaw'","A primitive root; to bind together (perhaps by twisting), that is, collect; (figuratively) to expect: - gather (together), look, patiently, tarry, wait (for, on, upon)."]},{"k":"H6961","v":["קָוֶה","qâveh","kaw-veh'","From H6960; a (measuring) cord (as if for binding): - line."]},{"k":"H6962","v":["קוּט","qûwṭ","koot","A primitive root; properly to cut off, that is, (figuratively) detest: - be grieved, lothe self."]},{"k":"H6963","v":["קוֹל","qôwl","kole","From an unused root meaning to call aloud; a voice or sound: -  + aloud, bleating, crackling, cry (+ out), fame, lightness, lowing, noise, + hold peace, [pro-] claim, proclamation, + sing, sound, + spark, thunder (-ing), voice, + yell."]},{"k":"H6964","v":["קוֹלָיָה","Qôwlâyâh","ko-law-yaw'","From H6963 and H3050; voice of Jah; Kolajah, the name of two Israelites: - Kolaiah."]},{"k":"H6965","v":["קוּם","qûwm","koom","A primitive root; to rise (in various applications, literally, figuratively, intensively and causatively): - abide, accomplish, X be clearer, confirm, continue, decree, X be dim, endure, X enemy, enjoin, get up, make good, help, hold, (help to) lift up (again), make, X but newly, ordain, perform, pitch, raise (up), rear (up), remain, (a-) rise (up) (again, against), rouse up, set (up), (e-) stablish, (make to) stand (up), stir up, strengthen, succeed, (as-, make) sure (-ly), (be) up (-hold, -rising)."]},{"k":"H6966","v":["קוּם","qûwm","koom","(Chaldee); corresponding to H6965: - appoint, establish, make, raise up self, (a-) rise (up), (make to) stand, set (up)."]},{"k":"H6967","v":["קוֹמָה","qôwmâh","ko-maw'","From H6965; height: -  X along, height, high, stature, tall."]},{"k":"H6968","v":["קוֹמְמִיּוּת","qôwmᵉmîyûwth","ko-mem-ee-yooth'","From H6965; elevation, that is, (adverbially) erectly (figuratively): - upright."]},{"k":"H6969","v":["קוּן","qûwn","koon","A primitive root; to strike a musical note, that is, chant or wail (at a funeral): - lament, mourning woman."]},{"k":"H6970","v":["קוֹעַ","Qôwaʻ","ko'-ah","Probably from H6972 in the original sense of cutting off; curtailment; Koa, a region of Babylon: - Koa."]},{"k":"H6971","v":["קוֹף","qôwph","kofe","Probably of foreign origin; a monkey: - ape."]},{"k":"H6972","v":["קוּץ","qûwts","koots","A primitive root; to clip off; used only as denominative from H7019; to spend the harvest season: - summer."]},{"k":"H6973","v":["קוּץ","qûwts","koots","A primitive root (rather identical with H6972 through the idea of severing oneself from (compare H6962)); to be (causatively make) disgusted or anxious: - abhor, be distressed, be grieved, loathe, vex, be weary."]},{"k":"H6974","v":["קוּץ","qûwts","koots","A primitive root (rather identical with H6972 through the idea of abruptness in starting up from sleep (compare H3364)); to awake (literally or figuratively): - arise, (be) (a-) wake, watch."]},{"k":"H6975","v":["קוֹץ","qôwts","kotse","From H6972 (in the sense of pricking); a thorn: - thorn."]},{"k":"H6976","v":["קוֹץ","Qôwts","kotse","The same as H6975; Kots, the name of two Israelites: - Koz, Hakkoz [includ. the article.]"]},{"k":"H6977","v":["קְוֻצָּה","qᵉvutstsâh","kev-oots-tsaw'","Feminine passive participle of H6972 in its original sense; a forelock (as shorn): - lock."]},{"k":"H6978","v":["קַו־קַו","qav-qav","kav-kav'","From H6957 (in the sense of a fastening); stalwart: -  X meted out."]},{"k":"H6979","v":["קוּר","qûwr","koor","A primitive root; to trench; by implication to throw forth; also (denominative from H7023) to wall up, whether literally (to build a wall) or figuratively (to estop): - break down, cast out, destroy, dig."]},{"k":"H6980","v":["קוּר","qûwr","koor","From H6979; (only plural) trenches, that is, a web (as if so formed): - web."]},{"k":"H6981","v":["קוֹרֵא","Qôwrêʼ","ko-ray'","Active participle of H7121; crier; Kore, the name of two Israelites: - Kore."]},{"k":"H6982","v":["קוֹרָה","qôwrâh","ko-raw'","From H6979; a rafter (forming trenches as it were); by implication a roof: - beam, roof."]},{"k":"H6983","v":["קוֹשׁ","qôwsh","koshe","A primitive root; to bend; used only as denominative for H3369, to set a trap: - lay a snare."]},{"k":"H6984","v":["קוּשָׁיָהוּ","qûwshâyâhûw","koo-shaw-yaw'-hoo","From the passive participle of H6983 and H3050; entrapped of Jah; Kushajah, an Israelite: - Kushaiah."]},{"k":"H6985","v":["קַט","qaṭ","kat","From H6990 in the sense of abbreviation; a little, that is, (adverbially) merely: - very."]},{"k":"H6986","v":["קֶטֶב","qeṭeb","keh'-teb","From an unused root meaning to cut off; ruin: - destroying, destruction."]},{"k":"H6987","v":["קֹטֶב","qôṭeb","ko'-teb","From the same as H6986; extermination: - destruction."]},{"k":"H6988","v":["קְטוֹרָה","qᵉṭôwrâh","ket-o-raw'","From H6999; perfume: - incense."]},{"k":"H6989","v":["קְטוּרָה","Qᵉṭûwrâh","ket-oo-raw'","Feminine passive participle of H6999; perfumed; Keturah, a wife of Abraham: - Keturah."]},{"k":"H6990","v":["קָטַט","qâṭaṭ","kaw-tat'","A primitive root; to clip off, that is, (figuratively) destroy: - be cut off."]},{"k":"H6991","v":["קָטַל","qâṭal","kaw-tal'","A primitive root; properly to cut off, that is, (figuratively) put to death: - kill, slay."]},{"k":"H6992","v":["קְטַל","qᵉṭal","ket-al'","(Chaldee); corresponding to H6991; to kill: - slay."]},{"k":"H6993","v":["קֶטֶל","qeṭel","keh'-tel","From H6991; a violent death: - slaughter."]},{"k":"H6994","v":["קָטֹן","qâṭôn","kaw-tone'","A primitive root (rather denominative from H6996); to diminish, that is, be (causatively make) diminutive or (figuratively) of no account: - be a (make) small (thing), be not worthy."]},{"k":"H6995","v":["קֹטֶן","qôṭen","ko'-ten","From H6994; a pettiness, that is, the little finger: - little finger."]},{"k":"H6996","v":["קָטָן","qâṭân","kaw-tawn'","From H6962; abbreviated, that is, diminutive, literally (in quantity, size or number) or figuratively (in age or importance): - least, less (-ser), little (one), small (-est, one, quantity, thing), young (-er, -est)."]},{"k":"H6997","v":["קָטָן","Qâṭân","kaw-tawn'","The same as H6996; small; Katan, an Israelite: - Hakkatan [includ. the article.]"]},{"k":"H6998","v":["קָטַף","qâṭaph","kaw-taf'","A primitive root; to strip off: - crop off, cut down (up), pluck."]},{"k":"H6999","v":["קָטַר","qâṭar","kaw-tar'","A primitive root (rather identical with H7000 through the idea of fumigation in a close place and perhaps thus driving out the occupants); to smoke, that is, turn into fragrance by fire (especially as an act of worship): - burn (incense, sacrifice) (upon), (altar for) incense, kindle, offer (incense, a sacrifice)."]},{"k":"H7000","v":["קָטַר","qâṭar","kaw-tar'","A primitive root; to inclose: - join."]},{"k":"H7001","v":["קְטַר","qᵉṭar","ket-ar'","(Chaldee); from a root corresponding to H7000; a knot (as tied up), that is, (figuratively) a riddle; also a vertebra (as if a knot): - doubt, joint."]},{"k":"H7002","v":["קִטֵּר","qiṭṭêr","kit-tare'","From H6999; perfume: - incense."]},{"k":"H7003","v":["קִטְרוֹן","Qiṭrôwn","kit-rone'","From H6999; fumigative; Kitron, a place in Palestine: - Kitron."]},{"k":"H7004","v":["קְטֹרֶת","qᵉṭôreth","ket-o'-reth","From H6999; a fumigation: - (sweet) incense, perfume."]},{"k":"H7005","v":["קַטָּת","Qaṭṭâth","kat-tawth'","From H6996; littleness, Kattath, a place in Palestine: - Kattath."]},{"k":"H7006","v":["קָיָה","qâyâh","kaw-yaw'","A primitive root; to vomit: - spue."]},{"k":"H7007","v":["קַיִט","qayiṭ","kah'-yit","(Chaldee); corresponding to H7019; harvest: - summer."]},{"k":"H7008","v":["קִיטוֹר","qîyṭôwr","kee-tore'","From H6999; a fume, that is, cloud: - smoke, vapour."]},{"k":"H7009","v":["קִים","qîym","keem","From H6965; an opponent (as rising against one), that is, (collectively) enemies: - substance."]},{"k":"H7010","v":["קְיָם","qᵉyâm","keh-yawm'","(Chaldee); from H6966; an edict (as arising in law): - decree, statute."]},{"k":"H7011","v":["קַיָּם","qayâm","kah-yawm'","(Chaldee); from H6966; permanent (a rising firmly): - stedfast, sure."]},{"k":"H7012","v":["קִימָה","qîymâh","kee-maw'","From H6965; an arising: - rising up."]},{"k":"H7013","v":["קַיִן","qayin","kah'-yin","From H6969 in the original sense of fixity; a lance (as striking fast): - spear."]},{"k":"H7014","v":["קַיִן","Qayin","kah'-yin","The same as H7013 (with a play upon the affinity to H7069); Kajin, the name of the first child, also of a place in Palestine, and of an Oriental tribe: - Cain, Kenite (-s)."]},{"k":"H7015","v":["קִינָה","qîynâh","kee-naw'","From H6969; a dirge (as accompanied by beating the breasts or on instruments): - lamentation."]},{"k":"H7016","v":["קִינָה","Qîynâh","kee-naw'","The same as H7015; Kinah, a place in Palestine: - Kinah."]},{"k":"H7017","v":["קֵינִי","Qêynîy","kay-nee'","Patronymic from H7014; a Kenite or member of the tribe of Kajin: - Kenite."]},{"k":"H7018","v":["קֵינָן","Qêynân","kay-nawn'","From the same as H7064; fixed; Kenan, an antediluvian: - Cainan, Kenan."]},{"k":"H7019","v":["קַיִץ","qayits","kah'-yits","From H6972; harvest (as the crop), whether the product (grain or fruit) or the (dry) season: - summer (fruit, house)."]},{"k":"H7020","v":["קִיצוֹן","qîytsôwn","kee-tsone'","From H6972; terminal: - out- (utter-) most."]},{"k":"H7021","v":["קִיקָיוֹן","qîyqâyôwn","kee-kaw-yone'","Perhaps from H7006; the gourd (as nauseous): - gourd."]},{"k":"H7022","v":["קִיקָלוֹן","qîyqâlôwn","kee-kaw-lone'","From H7036; intense disgrace: - shameful spewing."]},{"k":"H7023","v":["קִיר","qîyr","keer","From H6979; a wall (as built in a trench): -    + mason, side, town, X very, wall."]},{"k":"H7024","v":["קִיר","Qîyr","keer","The same as H7023; fortress; Kir, a place in Assyrian; also one in Moab: - Kir. Compare H7025."]},{"k":"H7025","v":["קִיר חֶרֶשׂ","Qîyr Cheres","keer kheh'-res","From H7023 and H2789; fortress of earthenware; Kir-Cheres or Kir-Chares-eth, a place in Moab: - Kir-haraseth, Kir-hareseth, Kir-haresh, Kir-heres."]},{"k":"H7026","v":["קֵירֹס","Qêyrôç","kay-roce'","From the same as H7166; ankled; Keros, one of the Nethinim: - Keros."]},{"k":"H7027","v":["קִישׁ","Qîysh","keesh","From H6983; a bow; Kish, the name of five Israelites: - Kish."]},{"k":"H7028","v":["קִישׁוֹן","Qîyshôwn","kee-shone'","From H6983; winding; Kishon, a river of Palestine: - Kishon, Kison."]},{"k":"H7029","v":["קִישִׁי","Qîyshîy","kee-shee'","From H6983; bowed; Kishi, an Israelite: - Kishi."]},{"k":"H7030","v":["קִיתָרֹס","qîythârôç","kee-thaw-roce'","(Chaldee); Of Greek origin [H2788]; a lyre: - harp."]},{"k":"H7031","v":["קַל","qal","kal","Contracted from H7043; light; (by implication) rapid (also adverbially): - light, swift (-ly)."]},{"k":"H7032","v":["קָל","qâl","kawl","(Chaldee); corresponding to H6963: - sound, voice."]},{"k":"H7033","v":["קָלָה","qâlâh","kaw-law'","A primitive root (rather identical with H7034 through the idea of shrinkage by heat); to toast, that is, scorch partially or slowly: - dried, loathsome, parch, roast."]},{"k":"H7034","v":["קָלָה","qâlâh","kaw-law'","A primitive root; to be light (as implied in rapid motion), but figuratively only (be (causatively hold) in contempt): - base, contemn, despise, lightly esteem, set light, seem vile."]},{"k":"H7035","v":["קָלַהּ","qâlahh","kaw-lah'","For H6950; to assemble: - gather together."]},{"k":"H7036","v":["קָלוֹן","qâlôwn","kaw-lone'","From H7034; disgrace; (by implication) the pudenda: - confusion, dishonour, ignominy, reproach, shame."]},{"k":"H7037","v":["קַלַּחַת","qallachath","kal-lakh'-ath","Apparently but a form for H6747; a kettle: - caldron."]},{"k":"H7038","v":["קָלַט","qâlaṭ","kaw-lat'","A primitive root; to maim: - lacking in his parts."]},{"k":"H7039","v":["קָלִי","qâlîy","kaw-lee'","From H7033; roasted ears of grain: - parched corn."]},{"k":"H7040","v":["קַלַּי","Qallay","kal-lah'-ee","From H7043; frivolous; Kallai, an Israelite: - Kallai."]},{"k":"H7041","v":["קֵלָיָה","Qêlâyâh","kay-law-yaw'","From H7034; insignificance; Kelajah, an Israelite: - Kelaiah."]},{"k":"H7042","v":["קְלִיטָא","Qᵉlîyṭâʼ","kel-ee-taw'","From H7038; maiming; Kelita, the name of three Israelites: - Kelita."]},{"k":"H7043","v":["קָלַל","qâlal","kaw-lal'","A primitive root; to be (causatively make) light, literally (swift, small, sharp, etc.) or figuratively (easy, trifling, vile, etc.): - abate, make bright, bring into contempt, (ac-) curse, despise, (be) ease (-y, -ier), (be a, make, make somewhat, move, seem a, set) light (-en, -er, ly, -ly afflict, -ly esteem, thing), X slight [-ly], be swift (-er), (be, be more, make, re-) vile, whet."]},{"k":"H7044","v":["קָלָל","qâlâl","kaw-lawl'","From H7043; brightened (as if sharpened): - burnished, pol-ished."]},{"k":"H7045","v":["קְלָלָה","qᵉlâlâh","kel-aw-law'","From H7043; vilification: - (ac-) curse (-d, -ing)."]},{"k":"H7046","v":["קָלַס","qâlaç","kaw-las'","A primitive root; to disparage, that is, ridicule: - mock, scoff, scorn."]},{"k":"H7047","v":["קֶלֶס","qeleç","keh'-les","From H7046; a laughing stock: - derision."]},{"k":"H7048","v":["קַלָּסָה","qallâçâh","kal-law-saw'","Intensive from H7046; ridicule: - mocking."]},{"k":"H7049","v":["קָלַע","qâlaʻ","kaw-lah'","A primitive root; to sling; also to carve (as if a circular motion, or into light forms): - carve, sling (out)."]},{"k":"H7050","v":["קֶלַע","qelaʻ","keh'-lah","From H7049; a sling; also a (door) screen (as if slung across), or the valve (of the door) itself: - hanging, leaf, sling."]},{"k":"H7051","v":["קַלָּע","qallâʻ","kal-law'","Intensive from H7049; a slinger: - slinger."]},{"k":"H7052","v":["קְלֹקֵל","qᵉlôqêl","kel-o-kale'","From H7043; insubstantial: - light."]},{"k":"H7053","v":["קִלְּשׁוֹן","qillᵉshôwn","kil-lesh-one'","From an unused root meaning to prick; a prong, that is, hay fork: - fork."]},{"k":"H7054","v":["קָמָה","qâmâh","kuw-maw'","Feminine of active participle of H6965; something that rises, that is, a stalk of grain: - (standing) corn, grown up, stalk."]},{"k":"H7055","v":["קְמוּאֵל","Qᵉmûwʼêl","kem-oo-ale'","From H6965 and H410; raised of God; Kemuel, the name of a relative of Abraham, and of two Israelites: - Kemuel."]},{"k":"H7056","v":["קָמוֹן","Qâmôwn","kaw-mone'","From H6965; an elevation; Kamon, a place East of the Jordan: - Camon."]},{"k":"H7057","v":["קִמּוֹשׁ","qimmôwsh","kim-moshe'","From an unused root meaning to sting; a prickly plant: - nettle. Compare H7063."]},{"k":"H7058","v":["קֶמַח","qemach","keh'-makh","From an unused root probably meaning to grind; flour: - flour, meal."]},{"k":"H7059","v":["קָמַט","qâmaṭ","kaw-mat'","A primitive root; to pluck, that is, destroy: - cut down, fill with wrinkles."]},{"k":"H7060","v":["קָמַל","qâmal","kaw-mal'","A primitive root; to wither: - hew down, wither."]},{"k":"H7061","v":["קָמַץ","qâmats","kaw-mats'","A primitive root; to grasp with the hand: - take an handful."]},{"k":"H7062","v":["קֹמֶץ","qômets","ko'mets","From H7061; a grasp, that is, handful: - handful."]},{"k":"H7063","v":["קִמָּשׁוֹן","qimmâshôwn","kim-maw-shone'","From the same as H7057; a prickly plant: - thorn."]},{"k":"H7064","v":["קֵן","qên","kane","Contracted from H7077; a nest (as fixed), sometimes including the nestlings; figuratively a chamber or dwelling: - nest, room."]},{"k":"H7065","v":["קָנָא","qânâʼ","kaw-naw'","A primitive root; to be (causatively make) zealous, that is, (in a bad sense) jealous or envious: -  (be) envy (-ious), be (move to, provoke to) jealous (-y), X very, (be) zeal (-ous)."]},{"k":"H7066","v":["קְנָא","qᵉnâʼ","ken-aw'","(Chaldee); corresponding to H7069; to purchase: - buy."]},{"k":"H7067","v":["קַנָּא","qannâʼ","kan-naw'","From H7065; jealous: - jealous. Compare H7072."]},{"k":"H7068","v":["קִנְאָה","qinʼâh","kin-aw'","From H7065; jealousy or envy: - envy (-ied), jealousy, X sake, zeal."]},{"k":"H7069","v":["קָנָה","qânâh","kaw-naw'","A primitive root; to erect, that is, create; by extension to procure, especially by purchase (causatively sell); by implication to own: - attain, buy (-er), teach to keep cattle, get, provoke to jealousy, possess (-or), purchase, recover, redeem, X surely, X verily."]},{"k":"H7070","v":["קָנֶה","qâneh","kaw-neh'","From H7069; a reed (as erect); by resemblance a rod (especially for measuring), shaft, tube, stem, the radius (of the arm), beam (of a steelyard): - balance, bone, branch, calamus, cane, reed, X spearman, stalk."]},{"k":"H7071","v":["קָנָה","Qânâh","kaw-naw'","Feminine of H7070; reediness; Kanah, the name of a stream and of a place in Palestine: - Kanah."]},{"k":"H7072","v":["קַנּוֹא","qannôwʼ","kan-no'","For H7067; jealous or angry: - jealous."]},{"k":"H7073","v":["קְנַז","Qᵉnaz","ken-az'","Probably from an unused root meaning to hunt; hunter; Kenaz, the name of an Edomite and of two Israelites: - Kenaz."]},{"k":"H7074","v":["קְנִזִּי","Qᵉnizzîy","ken-iz-zee'","Patronymic from H7073, a Kenizzite or descendant of Kenaz: - Kenezite, Kenizzites."]},{"k":"H7075","v":["קִנְיָן","qinyân","kin-yawn'","From H7069; creation, that is, (concretely) creatures; also acquisition, purchase, wealth: - getting, goods, X with money, riches, substance."]},{"k":"H7076","v":["קִנָּמוֹן","qinnâmôwn","kin-naw-mone'","From an unused root (meaning to erect); cinnamon bark (as in upright rolls): - cinnamon."]},{"k":"H7077","v":["קָנַן","qânan","kaw-nan'","A primitive root; to erect; but used only as denominative from H7064; to nestle, that is, build or occupy as a nest: - make . . . nest."]},{"k":"H7078","v":["קֶנֶץ","qenets","keh'-nets","From an unused root probably meaning to wrench; perversion: - end."]},{"k":"H7079","v":["קְנָת","Qᵉnâth","ken-awth'","From H7069; possession; Kenath, a place East of the Jordan: - Kenath."]},{"k":"H7080","v":["קָסַם","qâçam","kaw-sam'","A primitive root; properly to distribute, that is, determine by lot or magical scroll; by implication to divine: - divine (-r, -ation), prudent, soothsayer, use [divination]."]},{"k":"H7081","v":["קֶסֶם","qeçem","keh'-sem","From H7080; a lot; also divination (including its fee), oracle: - (reward of) divination, divine sentence, witchcraft."]},{"k":"H7082","v":["קָסַס","qâçaç","kaw-sas'","A primitive root; to lop off: - cut off."]},{"k":"H7083","v":["קֶסֶת","qeçeth","keh'-seth","From the same as H3563 (or as H7185); properly a cup, that is, an ink stand: - inkhorn."]},{"k":"H7084","v":["קְעִילָה","Qᵉʻîylâh","keh-ee-law'","Perhaps from H7049 in the sense of inclosing; citadel; Keilah, a place in Palestine: - Keilah."]},{"k":"H7085","v":["קַעֲקַע","qaʻăqaʻ","kah-ak-ah'","From the same as H6970; an incision or gash: -    + mark."]},{"k":"H7086","v":["קְעָרָה","qᵉʻârâh","keh-aw-raw'","Probably from H7167; a bowl (as cut out hollow): - charger, dish."]},{"k":"H7087","v":["קָפָא","qâphâʼ","kaw-faw'","A primitive root; to shrink, that is, thicken (as unracked wine, curdled milk, clouded sky, frozen water): - congeal, curdle, dark`, settle."]},{"k":"H7088","v":["קָפַד","qâphad","kaw-fad'","A primitive root; to contract, that is, roll together: - cut off."]},{"k":"H7089","v":["קְפָדָה","qᵉphâdâh","kef-aw-daw'","From H7088; shrinking, that is, terror: - destruction."]},{"k":"H7090","v":["קִפּוֹד","qippôwd","kip-pode'","From H7088; a species of bird, perhaps the bittern (from its contracted form): - bittern."]},{"k":"H7091","v":["קִפּוֹז","qippôwz","kip-poze'","From an unused root meaning to contract, that is, spring forward; an arrow snake (as darting on its prey): - great owl."]},{"k":"H7092","v":["קָפַץ","qâphats","kaw-fats'","A primitive root; to draw together, that is, close; by implication to leap (by contracting the limbs); specifically to die (from gathering up the feet): - shut (up), skip, stop, take out of the way."]},{"k":"H7093","v":["קֵץ","qêts","kates","Contracted from H7112; an extremity; adverbially (with prepositional prefix) after: -  + after, (utmost) border, end, [in-] finite, X process."]},{"k":"H7094","v":["קָצַב","qâtsab","kaw-tsab'","A primitive root; to clip, or (generally) chop: - cut down, shorn."]},{"k":"H7095","v":["קֶצֶב","qetseb","keh'-tseb","From H7094; shape (as if cut out); base (as if there cut off): - bottom, size."]},{"k":"H7096","v":["קָצָה","qâtsâh","kaw-tsaw'","A primitive root; to cut off; (figuratively) to destroy; (partially) to scrape off: - cut off, cut short, scrape (off)."]},{"k":"H7097","v":["קָצֶה","qâtseh","kaw-tseh'","The second form is negative only; from H7096; an extremity (used in a great variety of applications and idioms; compare H7093): -    X after, border, brim, brink, edge, end, [in-] finite, frontier, outmost coast, quarter, shore, (out-) side, X some, ut (-ter-) most (part)."]},{"k":"H7098","v":["קָצָה","qâtsâh","kaw-tsaw'","Feminine of H7097; a termination (used like H7097): - coast, corner, (selv-) edge, lowest, (uttermost) part."]},{"k":"H7099","v":["קֶצֶו","qetsev","keh'-tsev","From H7096; a limit (used like H7097, but with less variety): - end, edge, uttermost part."]},{"k":"H7100","v":["קֶצַח","qetsach","keh'-tsakh","From an unused root apparently meaning to incise; fennel flower (from its pungency): - fitches."]},{"k":"H7101","v":["קָצִין","qâtsîyn","kaw-tseen'","From H7096 in the sense of determining; a magistrate (as deciding) or other leader: - captain, guide, prince, ruler. Compare H6278."]},{"k":"H7102","v":["קְצִיעָה","qᵉtsîyʻâh","kets-ee-aw'","From H7106; cassia (as peeled; plural the bark): - cassia."]},{"k":"H7103","v":["קְצִיעָה","Qᵉtsîyʻâh","kets-ee-aw'","The same as H7102; Ketsiah, a daughter of Job: - Kezia."]},{"k":"H7104","v":["קְצִיץ","Qᵉtsîyts","kets-eets'","From H7112; abrupt; Keziz, a valley in Palestine: - Keziz."]},{"k":"H7105","v":["קָצִיר","qâtsîyr","kaw-tseer'","From H7114; severed, that is, harvest (as reaped), the crop, the time, the reaper, or figuratively; also a limb (of a tree, or simply foliage): - bough, branch, harvest (man)."]},{"k":"H7106","v":["קָצַע","qâtsaʻ","kaw-tsah'","A primitive root; to strip off, that is, (partially) scrape; by implication to segregate (as an angle): - cause to scrape, corner."]},{"k":"H7107","v":["קָצַף","qâtsaph","kaw-tsaf'","A primitive root; to crack off, that is, (figuratively) burst out in rage: - (be) anger (-ry), displease, fret self, (provoke to) wrath (come), be wroth."]},{"k":"H7108","v":["קְצַף","qᵉtsaph","kets-af'","(Chaldee); corresponding to H7107; to become enraged: - be furious."]},{"k":"H7109","v":["קְצַף","qᵉtsaph","kets-af'","(Chaldee); from H7108; rage: - wrath."]},{"k":"H7110","v":["קֶצֶף","qetseph","keh'-tsef","From H7107; a splinter (as chipped off); figuratively rage or strife: - foam, indignation, X sore, wrath."]},{"k":"H7111","v":["קְצָפָה","qᵉtsâphâh","kets-aw-faw'","From H7107; a fragment: - bark [-ed]."]},{"k":"H7112","v":["קָצַץ","qâtsats","kaw-tsats'","A primitive root; to chop off (literally or figuratively): - cut (asunder, in pieces, in sunder, off), X utmost."]},{"k":"H7113","v":["קְצַץ","qᵉtsats","kets-ats'","(Chaldee); corresponding to H7112: - cut off."]},{"k":"H7114","v":["קָצַר","qâtsar","kaw-tsar'","A primitive root; to dock off, that is, curtail (transitively or intransitively, literally or figuratively); especially to harvest (grass or grain): -    X at all, cut down, much discouraged, grieve, harvestman, lothe, mourn, reap (-er), (be, wax) short (-en, -er), straiten, trouble, vex."]},{"k":"H7115","v":["קֹצֶר","qôtser","ko'-tser","From H7114; shortness (of spirit), that is, impatience: - anguish."]},{"k":"H7116","v":["קָצֵר","qâtsêr","kaw-tsare'","From H7114; short (whether in size, number, life, strength or temper): - few, hasty, small, soon."]},{"k":"H7117","v":["קְצָת","qᵉtsâth","kets-awth'","From H7096; a termination (literally or figuratively); also (by implication) a portion; adverbially (with prepositional prefix) after: - end, part, X some."]},{"k":"H7118","v":["קְצָת","qᵉtsâth","kets-awth'","(Chaldee); corresponding to H7117: - end, partly."]},{"k":"H7119","v":["קַר","qar","kar","Contracted from an unused root meaning to chill; cool; figuratively quiet: - cold, excellent [from the margin]."]},{"k":"H7120","v":["קֹר","qôr","kore","From the same as H7119; cold: - cold."]},{"k":"H7121","v":["קָרָא","qârâʼ","kaw-raw'","A primitive root (rather identical with H7122 through the idea of accosting a person met); to call out to (that is, properly address by name, but used in a wide variety of applications): - bewray [self], that are bidden, call (for, forth, self, upon), cry (unto), (be) famous, guest, invite, mention, (give) name, preach, (make) proclaim (-ation), pronounce, publish, read, renowned, say."]},{"k":"H7122","v":["קָרָא","qârâʼ","kaw-raw'","A primitive root; to encounter, whether accidentally or in a hostile manner: - befall, (by) chance, (cause to) come (upon), fall out, happen, meet."]},{"k":"H7123","v":["קְרָא","qᵉrâʼ","ker-aw'","(Chaldee); corresponding to H7121: - call, cry, read."]},{"k":"H7124","v":["קֹרֵא","qôrêʼ","ko-ray'","Properly active participle of H7121; a caller, that is, partridge (from its cry): - partridge. See also H6981."]},{"k":"H7125","v":["קִרְאָה","qirʼâh","keer-aw'","From H7122; an encountering, accidental, friendly or hostile (also adverbially opposite): -    X against (he come), help, meet, seek, X to, X in the way."]},{"k":"H7126","v":["קָרַב","qârab","kaw-rab'","A primitive root; to approach (causatively bring near) for whatever purpose: - (cause to) approach, (cause to) bring (forth, near), (cause to) come (near, nigh), (cause to) draw near (nigh), go (near), be at hand, join, be near, offer, present, produce, make ready, stand, take."]},{"k":"H7127","v":["קְרֵב","qᵉrêb","ker-abe'","(Chaldee); corresponding to H7126: - approach, come (near, nigh), draw near."]},{"k":"H7128","v":["קְרָב","qᵉrâb","ker-awb'","From H7126; hostile encounter: - battle, war."]},{"k":"H7129","v":["קְרָב","qᵉrâb","ker-awb'","(Chaldee); corresponding to H7128: - war."]},{"k":"H7130","v":["קֶרֶב","qereb","keh'-reb","From H7126; properly the nearest part, that is, the centre, whether literally, figuratively or adverbially (especially with preposition): -    X among, X before, bowels, X unto charge, + eat (up), X heart, X him, X in, inward (X -ly, part, -s, thought), midst, + out of, purtenance, X therein, X through, X within self."]},{"k":"H7131","v":["קָרֵב","qârêb","kaw-rabe'","From H7126; near: - approach, come (near, nigh), draw near."]},{"k":"H7132","v":["קְרָבָה","qᵉrâbâh","ker-aw-baw'","From H7126; approach: - approaching, draw near."]},{"k":"H7133","v":["קׇרְבָּן","qorbân","kor-bawn'","From H7126; something brought near the altar, that is, a sacrificial present: - oblation, that is offered, offering."]},{"k":"H7134","v":["קַרְדֹּם","qardôm","kar-dome'","Perhaps from H6923 in the sense of striking upon; an axe: - ax."]},{"k":"H7135","v":["קָרָה","qârâh","kaw-raw'","Feminine of H7119; coolness: - cold."]},{"k":"H7136","v":["קָרָה","qârâh","kaw-raw'","A primitive root; to light upon (chiefly by accident); causatively to bring about; specifically to impose timbers (for roof or floor): - appoint, lay (make) beams, befall, bring, come (to pass unto), floor, [hap] was, happen (unto), meet, send good speed."]},{"k":"H7137","v":["קָרֶה","qâreh","kaw-reh'","From H7136; an (unfortunate) occurrence, that is, some accidental (ceremonial) disqualification: - uncleanness that chanceth."]},{"k":"H7138","v":["קָרוֹב","qârôwb","kaw-robe'","From H7126; near (in place, kindred or time): - allied, approach, at hand, + any of kin, kinsfolk (-sman), (that is) near (of kin), neighbour, (that is) next, (them that come) nigh (at hand), more ready, short (-ly)."]},{"k":"H7139","v":["קָרַח","qârach","kaw-rakh'","A primitive root; to depilate: - make (self) bald."]},{"k":"H7140","v":["קֶרַח","qerach","keh'-rakh","From H7139; ice (as if bald, that is, smooth); hence, hail; by resemblance, rock crystal: - crystal, frost, ice."]},{"k":"H7141","v":["קֹרַח","Qôrach","ko'rakh","From H7139; ice; Korach, the name of two Edomites and three Israelites: - Korah."]},{"k":"H7142","v":["קֵרֵחַ","qêrêach","kay-ray'-akh","From H7139; bald (on the back of the head): - bald (head)."]},{"k":"H7143","v":["קָרֵחַ","Qârêach","kaw-ray'-akh","From H7139; bald; Kareach, an Israelite: - Careah, Kareah."]},{"k":"H7144","v":["קׇרְחָה","qorchâh","kor-khaw'","From H7139; baldness: - bald (-ness), X utterly."]},{"k":"H7145","v":["קׇרְחִי","Qorchîy","kor-khee'","Patronymic from H7141; a Korchite (collectively) or descendant of Korach: - Korahite, Korathite, sons of Kore, Korhite."]},{"k":"H7146","v":["קָרַחַת","qârachath","kaw-rakh'-ath","From H7139; a bald spot (on the back of the head); figuratively a threadbare spot (on the back side of the cloth): - bald head, bare within."]},{"k":"H7147","v":["קְרִי","qᵉrîy","ker-ee'","From H7136; hostile encounter: - contrary."]},{"k":"H7148","v":["קָרִיא","qârîyʼ","kaw-ree'","From H7121; called, that is, select: - famous, renowned."]},{"k":"H7149","v":["קִרְיָא","qiryâʼ","keer-yaw'","(Chaldee); corresponding to H7151: - city."]},{"k":"H7150","v":["קְרִיאָה","qᵉrîyʼâh","ker-ee-aw'","From H7121; a proclamation: - preaching."]},{"k":"H7151","v":["קִרְיָה","qiryâh","kir-yaw'","From H7136 in the sense of flooring, that is, building; a city: - city."]},{"k":"H7152","v":["קְרִיּוֹת","Qᵉrîyôwth","ker-ee-yoth'","Plural of H7151; buildings; Kerioth, the name of two places in Palestine: - Kerioth, Kirioth."]},{"k":"H7153","v":["קִרְיַת אַרְבַּע","Qiryath ʼArbaʻ","keer-yath' ar-bah'","The second form, used in Neh_11:25, has the article interposed; from H7151 and H704 or H702; city of Arba, or city of the four (giants); Kirjath-Arba or Kirjath-ha-Arba, a place in Palestine: - Kirjath-arba."]},{"k":"H7154","v":["קִרְיַת בַּעַל","Qiryath Baʻal","keer-yath' bah'-al","From H7151 and H1168; city of Baal; Kirjath Baal, a place in Palestine: - Kirjath-baal."]},{"k":"H7155","v":["קִרְיַת חֻצוֹת","Qiryath Chutsôwth","keer-yath' khoo-tsoth'","From H7151 and the feminine plural of H2351; city of streets; Kirjath Chutsoth, a place in Moab: - Kirjath-huzoth."]},{"k":"H7156","v":["קִרְיָתַיִם","Qiryâthayim","keer-yaw-thah'-yim","Dual of H7151; double city; Kirjathaim, the name of two places in Palestine: - Kiriathaim, Kirjathaim."]},{"k":"H7157","v":["קִרְיַת יְעָרִים","Qiryath Yᵉʻârîym","keer-yath' yeh-aw-reem'","Used in Jer_26:20 with the article interposed; or in Jos_18:28 using simply the former part of the word; from H7151 and the plural of H3293 or H5892; city of forests, or city of towns; Kirjath Jearim or Kirjath Arim, a place in Palestine: - Kirjath, Kirjath-jearim, Kirjath-arim."]},{"k":"H7158","v":["קִרְיַת סַנָּה","Qiryath Çannâh","keer-yath' san-naw'","From H7151 and a simpler feminine from the same as H5577, or (for the second form) H5612; city of branches, or of a book; Kirjath Sannah or Kirjath Sepher, a place in Palestine: - Kirjath-sannah, Kirjath-sepher."]},{"k":"H7159","v":["קָרַם","qâram","kaw-ram'","A primitive root; to cover: - cover."]},{"k":"H7160","v":["קָרַן","qâran","kaw-ran'","A primitive root; to push or gore; used only as denominative from H7161, to shoot out horns; figuratively rays: - have horns, shine."]},{"k":"H7161","v":["קֶרֶן","qeren","keh'-ren","From H7160; a horn (as projecting); by implication a flask, cornet; by resemblance an elephant’s tooth (that is, ivory), a corner (of the altar), a peak (of a mountain), a ray (of light); figuratively power: -  X hill, horn."]},{"k":"H7162","v":["קֶרֶן","qeren","keh'-ren","(Chaldee); corresponding to H7161; a horn (literally or for sound): - horn, cornet."]},{"k":"H7163","v":["קֶרֶן הַפּוּךְ","qeren hap-pûwk","keh'-ren hap-pook'","From H7161 and H6320; horn of cosmetic; Keren-hap-Puk, one of Job’s daughters: - Keren-happuch."]},{"k":"H7164","v":["קָרַס","qâraç","kaw-ras'","A primitive root; properly to protrude; used only as denominative from H7165 (for alliteration with H7167), to hunch, that is, be humpbacked: - stoop."]},{"k":"H7165","v":["קֶרֶס","qereç","keh'-res","From H7164; a knob or belaying pin (from its swelling form): - tache."]},{"k":"H7166","v":["קַרְסֹל","qarçôl","kar-sole'","From H7164; an ankle (as a protuberance or joint): - foot."]},{"k":"H7167","v":["קָרַע","qâraʻ","kaw-rah'","A primitive root; to rend, literally or figuratively (revile, paint the eyes, as if enlarging them): - cut out, rend, X surely, tear."]},{"k":"H7168","v":["קֶרַע","qeraʻ","keh'-rah","From H7167; a rag: - piece, rag."]},{"k":"H7169","v":["קָרַץ","qârats","kaw-rats'","A primitive root; to pinch, that is, (partially) to bite the lips, blink the eyes (as a gesture of malice), or (fully) to squeeze off (a piece of clay in order to mould a vessel from it): - form, move, wink."]},{"k":"H7170","v":["קְרַץ","qᵉrats","ker-ats'","(Chaldee); corresponding to H7171 in the sense of a bit (to eat the morsels of any one, that is, chew him up (figuratively) by slander): -    + accuse."]},{"k":"H7171","v":["קֶרֶץ","qerets","keh'-rets","From H7169; extirpation (as if by constriction): - destruction."]},{"k":"H7172","v":["קַרְקַע","qarqaʻ","kar-kah'","From H7167; floor (as if a pavement of pieces or tesserae), of a building or the sea: - bottom, (X one side of the) floor."]},{"k":"H7173","v":["קַרְקַע","Qarqaʻ","kar-kah'","The same as H7172; ground floor; Karka (with the article prefixed), a place in Palestine: - Karkaa."]},{"k":"H7174","v":["קַרְקֹר","Qarqôr","kar-kore'","From H6979; foundation; Karkor, a place East of the Jordan: - Karkor."]},{"k":"H7175","v":["קֶרֶשׁ","qeresh","keh'-resh","From an unused root meaning to split off; a slab or plank; by implication a deck of a ship: - bench, board."]},{"k":"H7176","v":["קֶרֶת","qereth","keh'-reth","From H7136 in the sense of building; a city: - city."]},{"k":"H7177","v":["קַרְתָּה","Qartâh","kar-taw'","From H7176; city; Kartah, a place in Palestine: - Kartah."]},{"k":"H7178","v":["קַרְתָּן","Qartân","kar-tawn'","From H7176; city plot; Kartan, a place in Palestine: - Kartan."]},{"k":"H7179","v":["קַשׁ","qash","kash","From H7197; straw (as dry): - stubble."]},{"k":"H7180","v":["קִשֻּׁא","qishshuʼ","kish-shoo'","From an unused root (meaning to be hard); a cucumber (from the difficulty of digestion): - cucumber."]},{"k":"H7181","v":["קָשַׁב","qâshab","kaw-shab'","A primitive root; to prick up the ears, that is, hearken: - attend, (cause to) hear (-ken), give heed, incline, mark (well), regard."]},{"k":"H7182","v":["קֶשֶׁב","qesheb","keh'-sheb","From H7181; a hearkening: -  X diligently, hearing, much heed, that regarded."]},{"k":"H7183","v":["קַשָּׁב","qashshâb","kash-shawb'","From H7181; hearkening: - attent (-ive)."]},{"k":"H7184","v":["קָשָׂה","qâsâh","kaw-saw'","From an unused root meaning to be round; a jug (from its shape): - cover, cup."]},{"k":"H7185","v":["קָשָׁה","qâshâh","kaw-shaw'","A primitive root; properly to be dense, that is, tough or severe (in various applications): - be cruel, be fiercer, make grievous, be ([ask a], be in, have, seem, would) hard (-en, [labour], -ly, thing), be sore, (be, make) stiff (-en, [-necked])."]},{"k":"H7186","v":["קָשֶׁה","qâsheh","kaw-sheh'","From H7185; severe (in various applications): - churlish, cruel, grievous, hard ([-hearted], thing), heavy, + impudent, obstinate, prevailed, rough (-ly), sore, sorrowful, stiff ([-necked]), stubborn, + in trouble."]},{"k":"H7187","v":["קְשׁוֹט","qᵉshôwṭ","kesh-ote'","(Chaldee); corresponding to H7189; fidelity: - truth."]},{"k":"H7188","v":["קָשַׁח","qâshach","kaw-shakh'","A primitive root; to be (causatively make) unfeeling: - harden."]},{"k":"H7189","v":["קֹשֶׁט","qôsheṭ","ko'-shet","From an unused root meaning to balance; equity (as evenly weighed), that is, reality: - certainty, truth."]},{"k":"H7190","v":["קְשִׁי","qᵉshîy","kesh-ee'","From H7185; obstinacy: - stubbornness."]},{"k":"H7191","v":["קִשְׁיוֹן","Qishyôwn","kish-yone'","From H7190; hard ground; Kishjon, a place in Palestine: - Kishion, Keshon."]},{"k":"H7192","v":["קְשִׂיטָה","qᵉsîyṭâh","kes-ee-taw'","From an unused root (probably meaning to weigh out); an ingot (as definitely estimated and stamped for a coin): - piece of money (silver)."]},{"k":"H7193","v":["קַשְׂקֶשֶׂת","qasqeseth","kas-keh'-seth","By reduplication from an unused root meaning to shale off as bark; a scale (of a fish); hence a coat of mail (as composed of or covered with jointed plates of metal): - mail, scale."]},{"k":"H7194","v":["קָשַׁר","qâshar","kaw-shar'","A primitive root; to tie, physically (gird, confine, compact) or mentally (in love, league): - bind (up), (make a) conspire (-acy, -ator), join together, knit, stronger, work [treason]."]},{"k":"H7195","v":["קֶשֶׁר","qesher","keh'-sher","From H7194; an (unlawful) alliance: - confederacy, conspiracy, treason."]},{"k":"H7196","v":["קִשֻּׁר","qishshur","kish-shoor'","From H7194; an (ornamental) girdle (for women): - attire, headband."]},{"k":"H7197","v":["קָשַׁשׁ","qâshash","kaw-shash'","A primitive root; to become sapless through drought; used only as denominative from H7179; to forage for straw, stubble or wood; figuratively to assemble: - gather (selves) (together)."]},{"k":"H7198","v":["קֶשֶׁת","qesheth","keh'-sheth","From H7185 in the original sense (of H6983) of bending; a bow, for shooting (hence figuratively strength) or the iris: -  X arch (-er), + arrow, bow ([-man, -shot])."]},{"k":"H7199","v":["קַשָּׁת","qashshâth","kash-shawth'","Intensive (as denominative) from H7198; a bowman: -  X archer."]},{"k":"H7200","v":["רָאָה","râʼâh","raw-aw'","A primitive root; to see, literally or figuratively (in numerous applications, direct and implied, transitively, intransitively and causatively): - advise self, appear, approve, behold, X certainly, consider, discern, (make to) enjoy, have experience, gaze, take heed, X indeed, X joyfully, lo, look (on, one another, one on another, one upon another, out, up, upon), mark, meet, X be near, perceive, present, provide, regard, (have) respect, (fore-, cause to, let) see (-r, -m, one another), shew (self), X sight of others, (e-) spy, stare, X surely, X think, view, visions."]},{"k":"H7201","v":["רָאָה","râʼâh","raw-aw'","From H7200; a bird of prey (probably the vulture, from its sharp sight): - glede. Compare H1676."]},{"k":"H7202","v":["רָאֶה","râʼeh","raw-eh'","From H7200; seeing, that is, experiencing: - see."]},{"k":"H7203","v":["רֹאֶה","rôʼeh","ro-eh'","Active participle of H7200; a seer (as often rendered); but also (abstractly) a vision: - vision."]},{"k":"H7204","v":["רֹאֵה","Rôʼêh","ro-ay'","From H7203; prophet; Roeh, an Israelite: - Haroeh [includ. the article.]"]},{"k":"H7205","v":["רְאוּבֵן","Rᵉʼûwbên","reh-oo-bane'","From the imperative of H7200 and H1121; see ye a son; Reuben, a son of Jacob: - Reuben."]},{"k":"H7206","v":["רְאוּבֵנִי","Rᵉʼûwbênîy","reh-oob-ay-nee'","Patronymic from H7205; a Reubenite or descendant of Reuben: - children of Reuben, Reubenites."]},{"k":"H7207","v":["רַאֲוָה","raʼăvâh","rah-av-aw'","From H7200; sight, that is, satisfaction: - behold."]},{"k":"H7208","v":["רְאוּמָה","Rᵉʼûwmâh","reh-oo-maw'","Feminine passive participle of H7213; raised; Reumah, a Syrian woman: - Reumah."]},{"k":"H7209","v":["רְאִי","rᵉʼîy","reh-ee'","From H7200; a mirror (as seen): - looking glass."]},{"k":"H7210","v":["רֳאִי","rŏʼîy","ro-ee'","From H7200; sight, whether abstractly (vision) or concretely (a spectacle): - gazingstock, look to, (that) see (-th)."]},{"k":"H7211","v":["רְאָיָה","Rᵉʼâyâh","reh-aw-yaw'","From H7200 and H3050; Jah has seen; Reajah, the name of three Israelites: - Reaia, Reaiah."]},{"k":"H7212","v":["רְאִית","rᵉʼîyth","reh-eeth'","From H7200; sight: - beholding."]},{"k":"H7213","v":["רָאַם","râʼam","raw-am'","A primitive root; to rise: - be lifted up."]},{"k":"H7214","v":["רְאֵם","rᵉʼêm","reh-ame'","From H7213; a wild bull (from its conspicuousness): - unicorn."]},{"k":"H7215","v":["רָאמָה","râʼmâh","raw-maw'","From H7213; something high in value, that is, perhaps coral: - coral."]},{"k":"H7216","v":["רָאמוֹת","Râʼmôwth","raw-moth'","Plural of H7215; heights; Ramoth, the name of two places in Palestine: - Ramoth."]},{"k":"H7217","v":["רֵאשׁ","rêʼsh","raysh","(Chaldee); corresponding to H7218; the head; figuratively the sum: - chief, head, sum."]},{"k":"H7218","v":["רֹאשׁ","rôʼsh","roshe","From an unused root apparently meaning to shake; the head (as most easily shaken), whether literally or figuratively (in many applications, of place, time, rank, etc.): - band, beginning, captain, chapiter, chief (-est place, man, things), company, end, X every [man], excellent, first, forefront, ([be-]) head, height, (on) high (-est part, [priest]), X lead, X poor, principal, ruler, sum, top."]},{"k":"H7219","v":["רֹאשׁ","rôʼsh","roshe","Apparently the same as H7218; a poisonous plant, probably the poppy (from its conspicuous head); generally poison (even of serpents): - gall, hemlock, posion, venom."]},{"k":"H7220","v":["רֹאשׁ","Rôʼsh","roshe","Probably the same as H7218; Rosh, the name of an Israelite and of a foreign nation: - Rosh."]},{"k":"H7221","v":["רִאשָׁה","riʼshâh","ree-shaw'","From the same as H7218; a beginning: - beginning."]},{"k":"H7222","v":["רֹאשָׁה","rôʼshâh","ro-shaw'","Feminine of H7218; the head: - head [-stone]."]},{"k":"H7223","v":["רִאשׁוֹן","riʼshôwn","ree-shone'","From H7221; first, in place, time or rank (as adjective or noun): - ancestor, (that were) before (-time), beginning, eldest, first, fore [-father] (-most), former (thing), of old time, past."]},{"k":"H7224","v":["רִאשֹׁנִי","riʼshônîy","ree-sho-nee'","From H7223; first: - first."]},{"k":"H7225","v":["רֵאשִׁית","rêʼshîyth","ray-sheeth'","From the same as H7218; the first, in place, time, order or rank (specifically a firstfruit): - beginning, chief (-est), first (-fruits, part, time), principal thing."]},{"k":"H7226","v":["רַאֲשֹׁת","raʼăshôth","rah-ash-oth'","From H7218; a pillow (being for the head): - bolster."]},{"k":"H7227","v":["רַב","rab","rab","By contraction from H7231; abundant (in quantity, size, age, number, rank, quality): - (in) abound (-undance, -ant, -antly), captain, elder, enough, exceedingly, full, great (-ly, man, one), increase, long (enough, [time]), (do, have) many (-ifold, things, a time), ([ship-]) master, mighty, more, (too, very) much, multiply (-tude), officer, often [-times], plenteous, populous, prince, process [of time], suffice (-ient)."]},{"k":"H7228","v":["רַב","rab","rab","By contraction from H7232; an archer (or perhaps the same as H7227): - archer."]},{"k":"H7229","v":["רַב","rab","rab","(Chaldee); corresponding to H7227: - captain, chief, great, lord, master, stout."]},{"k":"H7230","v":["רֹב","rôb","robe","From H7231; abundance (in any respect): - abundance (-antly), all, X common [sort], excellent, great (-ly, -ness, number), huge, be increased, long, many, more in number, most, much, multitude, plenty (-ifully), X very [age]."]},{"k":"H7231","v":["רָבַב","râbab","raw-bab'","A primitive root; properly to cast together (compare H7241), that is, increase, especially in number; also (as denominative from H7233) to multiply by the myriad: - increase, be many (-ifold), be more, multiply, ten thousands."]},{"k":"H7232","v":["רָבַב","râbab","raw-bab'","A primitive root (rather identical with H7231 through the idea of projection); to shoot an arrow: - shoot."]},{"k":"H7233","v":["רְבָבָה","rᵉbâbâh","reb-aw-baw'","From H7231; abundance (in number), that is, (specifically) a myriad (whether definite or indefinite): - many, million, X multiply, ten thousand."]},{"k":"H7234","v":["רָבַד","râbad","raw-bad'","A primitive root; to spread: - deck."]},{"k":"H7235","v":["רָבָה","râbâh","raw-baw'","A primitive root; to increase (in whatever respect): - [bring in] abundance (X -antly), + archer [by mistake for H7232], be in authority, bring up, X continue, enlarge, excel, exceeding (-ly), be full of, (be, make) great (-er, -ly), X -ness), grow up, heap, increase, be long, (be, give, have, make, use) many (a time), (any, be, give, give the, have) more (in number), (ask, be, be so, gather, over, take, yield) much (greater, more), (make to) multiply, nourish, plenty (-eous), X process [of time], sore, store, thoroughly, very."]},{"k":"H7236","v":["רְבָה","rᵉbâh","reb-aw'","(Chaldee); corresponding to H7235: - make a great man, grow."]},{"k":"H7237","v":["רַבָּה","Rabbâh","rab-baw'","Feminine of H7227; great; Rabbah, the name of two places in Palestine, East and West: - Rabbah, Rabbath."]},{"k":"H7238","v":["רְבוּ","rᵉbûw","reb-oo'","(Chaldee); from a root corresponding to H7235; increase (of dignity): - greatness, majesty."]},{"k":"H7239","v":["רִבּוֹ","ribbôw","rib-bo'","From H7231; a myriad, that is, indefinite large number: - great things, ten ([eight] -een, [for] -ty, + sixscore, + threescore, X twenty, [twen] -ty) thousand."]},{"k":"H7240","v":["רִבּוֹ","ribbôw","rib-bo'","(Chaldee); corresponding to H7239: -    X ten thousand times ten thousand."]},{"k":"H7241","v":["רָבִיב","râbîyb","raw-beeb'","From H7231; a rain (as an accumulation of drops): - shower."]},{"k":"H7242","v":["רָבִיד","râbîyd","raw-beed'","From H7234; a collar (as spread around the neck): - chain."]},{"k":"H7243","v":["רְבִיעִי","rᵉbîyʻîy","reb-ee-ee'","From H7251; fourth; also (fractionally) a fourth: - four-square, fourth (part)."]},{"k":"H7244","v":["רְבִיעַי","rᵉbîyʻay","reb-ee-ah'-ee","(Chaldee); corresponding to H7243: - fourth."]},{"k":"H7245","v":["רַבִּית","Rabbîyth","rab-beeth'","From H7231; multitude; Rabbith, a place in Palestine: - Rabbith."]},{"k":"H7246","v":["רָבַךְ","râbak","raw-bak'","A primitive root; to soak (bread in oil): - baken, (that which is) fried."]},{"k":"H7247","v":["רִבְלָה","Riblâh","rib-law'","From an unused root meaning to be fruitful; fertile; Riblah, a place in Syria: - Riblah."]},{"k":"H7248","v":["רַב־מָג","Rab-Mâg","rab-mawg'","From H7227 and a foreign word for a Magian; chief Magian; Rab-Mag, a Babylonian official: - Rab-mag."]},{"k":"H7249","v":["רַב־סָרִיס","Rab-Çârîyç","rab-saw-reece'","From H7227 and a foreign word for a eunuch; chief chamberlain; Rab-Saris, a Babylonian official: - Rab-saris."]},{"k":"H7250","v":["רָבַע","râbaʻ","raw-bah'","A primitive root; to squat or lie out flat, that is, (specifically) in copulation: - let gender, lie down."]},{"k":"H7251","v":["רָבַע","râbaʻ","raw-bah'","A primitive root (rather identical with H7250 through the idea of sprawling at all fours (or possibly the reverse is the order of derivation); compare H702); properly to be four (sided); used only as denominative of H7253; to be quadrate: - (four-) square (-d)."]},{"k":"H7252","v":["רֶבַע","rebaʻ","reh'-bah","From H7250; prostration (for sleep): - lying down."]},{"k":"H7253","v":["רֶבַע","rebaʻ","reh'-bah","From H7251; a fourth (part or side): - fourth part, side, square."]},{"k":"H7254","v":["רֶבַע","Rebaʻ","reh'-bah","The same as H7253; Reba, a Midianite: - Reba."]},{"k":"H7255","v":["רֹבַע","rôbaʻ","ro'-bah","From H7251; a quarter: - fourth part."]},{"k":"H7256","v":["רִבֵּעַ","ribbêaʻ","rib-bay'-ah","From H7251; a descendant of the fourth generation, that is, great great grandchild: - fourth."]},{"k":"H7257","v":["רָבַץ","râbats","raw-bats'","A primitive root; to crouch (on all four legs folded, like a recumbent animal); by implication to recline, repose, brood, lurk, imbed: - crouch (down), fall down, make a fold, lay (cause to, make to) lie (down), make to rest, sit."]},{"k":"H7258","v":["רֵבֶץ","rêbets","reh'-bets","From H7257; a couch or place of repose: - where each lay, lie down in, resting place."]},{"k":"H7259","v":["רִבְקָה","Ribqâh","rib-kaw'","From an unused root probably meaning to clog by tying up the fetlock; fettering (by beauty); Ribkah, the wife of Isaac: - Rebekah."]},{"k":"H7260","v":["רַבְרַב","rabrab","rab-rab'","(Chaldee); from H7229; huge (in size); domineering (in character): - (very) great (things)."]},{"k":"H7261","v":["רַבְרְבָן","rabrᵉbân","rab-reb-awn'","(Chaldee); from H7260; a magnate: - lord, prince."]},{"k":"H7262","v":["רַבְשָׁקֵה","Rabshâqêh","rab-shaw-kay'","From H7227 and H8284; chief butler; Rabshakeh, a Babylonian official: - Rabshakeh."]},{"k":"H7263","v":["רֶגֶב","regeb","reh'-gheb","From an unused root meaning to pile together; a lump of clay: - clod."]},{"k":"H7264","v":["רָגַז","râgaz","raw-gaz'","A primitive root; to quiver (with any violent emotion, especially anger or fear): - be afraid, stand in awe, disquiet, fall out, fret, move, provoke, quake, rage, shake, tremble, trouble, be wroth."]},{"k":"H7265","v":["רְגַז","rᵉgaz","reg-az'","(Chaldee); corresponding to H7264: - provoke unto wrath."]},{"k":"H7266","v":["רְגַז","rᵉgaz","reg-az'","(Chaldee); from H7265; violent anger: - rage."]},{"k":"H7267","v":["רֹגֶז","rôgez","ro'-ghez","From H7264; commotion, restlessness (of a horse), crash (of thunder), disquiet, anger: - fear, noise, rage, trouble, (-ing), wrath."]},{"k":"H7268","v":["רַגָּז","raggâz","rag-gawz'","Intensive from H7264; timid: - trembling."]},{"k":"H7269","v":["רׇגְזָה","rogzâh","rog-zaw'","Feminine of H7267; trepidation: - trembling."]},{"k":"H7270","v":["רָגַל","râgal","raw-gal'","A primitive root; to walk along; but only in specific applications, to reconnoitre, to be a tale bearer (that is, slander); also (as denominative from H7272) to lead about: - backbite, search, slander, (e-) spy (out), teach to go, view."]},{"k":"H7271","v":["רְגַל","rᵉgal","reg-al'","(Chaldee); corresponding to H7272: - foot."]},{"k":"H7272","v":["רֶגֶל","regel","reh'-gel","From H7270; a foot (as used in walking); by implication a step; by euphemism the pudenda: -  X be able to endure, X according as, X after, X coming, X follow, ([broken-]) foot ([-ed, -stool]), X great toe, X haunt, X journey, leg, + piss, + possession, time."]},{"k":"H7273","v":["רַגְלִי","raglîy","rag-lee'","From H7272; a foot man (soldier): - (on) foot (-man)."]},{"k":"H7274","v":["רֹגְלִים","Rôgᵉlîym","ro-gel-eem'","Plural of active participle of H7270; fullers (as tramping the cloth in washing); Rogelim, a place East of the Jordan: - Rogelim."]},{"k":"H7275","v":["רָגַם","râgam","raw-gam'","A primitive root (compare H7263, H7321 and H7551); to cast together (stones), that is, to lapidate: -  X certainly, stone."]},{"k":"H7276","v":["רֶגֶם","Regem","reh'-gem","From H7275; stone heap; Regem, an Israelite: - Regem."]},{"k":"H7277","v":["רִגְמָה","rigmâh","rig-maw'","Feminine of the same as H7276; a pile (of stones), that is, (figuratively) a throng: - council."]},{"k":"H7278","v":["רֶגֶם מֶלֶךְ","Regem Melek","reh'-gem meh'-lek","From H7276 and H4428; king's heap; Regem Melek, an Israelite: - Regem-melech."]},{"k":"H7279","v":["רָגַן","râgan","raw-gan'","A primitive root; to grumble, that is, rebel: - murmur."]},{"k":"H7280","v":["רָגַע","râgaʻ","raw-gah'","A primitive root; properly to toss violently and suddenly (the sea with waves, the skin with boils); figuratively (in a favorable manner) to settle, that is, quiet; specifically to wink (from the motion of the eye lids): - break, divide, find ease, be a moment, (cause, give, make to) rest, make suddenly."]},{"k":"H7281","v":["רֶגַע","regaʻ","reh'-gah","From H7280; a wink (of the eyes), that is, a very short space of time: - instant, moment, space, suddenly."]},{"k":"H7282","v":["רָגֵעַ","râgêaʻ","raw-gay'-ah","From H7280; restful, that is, peaceable: - that are quiet."]},{"k":"H7283","v":["רָגַשׁ","râgash","raw-gash'","A primitive root; to be tumultuous: - rage."]},{"k":"H7284","v":["רְגַשׁ","rᵉgash","reg-ash'","(Chaldee); corresponding to H7283; to gather tumultuously: - assemble (together)."]},{"k":"H7285","v":["רֶגֶשׁ","regesh","reh'-ghesh","From H7283; a tumultuous crowd: - company, insurrection."]},{"k":"H7286","v":["רָדַד","râdad","raw-dad'","A primitive root; to tread in pieces, that is, (figuratively) to conquer, or (specifically) to overlay: - spend, spread, subdue."]},{"k":"H7287","v":["רָדָה","râdâh","raw-daw'","A primitive root; to tread down, that is, subjugate; specifically to crumble off: - (come to, make to) have dominion, prevail against, reign, (bear, make to) rule, (-r, over), take."]},{"k":"H7288","v":["רַדַּי","Radday","rad-dah'-ee","Intensive from H7287; domineering; Raddai, an Israelite: - Raddai."]},{"k":"H7289","v":["רָדִיד","râdîyd","raw-deed'","From H7286 in the sense of spreading; a veil (as expanded): - vail, veil."]},{"k":"H7290","v":["רָדַם","râdam","raw-dam'","A primitive root; to stun, that is, stupefy (with sleep or death): - (be fast a-, be in a deep, cast into a dead, that) sleep (-er, -eth)."]},{"k":"H7291","v":["רָדַף","râdaph","raw-daf'","A primitive root; to run after (usually with hostile intent; figuratively (of time) gone by): - chase, put to flight, follow (after, on), hunt, (be under) persecute (-ion, -or), pursue (-r)."]},{"k":"H7292","v":["רָהַב","râhab","raw-hab'","A primitive root; to urge severely, that is, (figuratively) importune, embolden, capture, act insolently: - overcome, behave self proudly, make sure, strengthen."]},{"k":"H7293","v":["רַהַב","rahab","rah'-hab","From H7292, bluster (blusterer): - proud, strength."]},{"k":"H7294","v":["רַהַב","Rahab","rah'-hab","The same as H7293; Rahab (that is, boaster), an epithet of Egypt: - Rahab."]},{"k":"H7295","v":["רָהָב","râhâb","raw-hawb'","From H7292; insolent: - proud."]},{"k":"H7296","v":["רֹהָב","rôhâb","ro'-hab","From H7292; pride: - strength."]},{"k":"H7297","v":["רָהָה","râhâh","raw-haw'","A primitive root; to fear: - be afraid."]},{"k":"H7298","v":["רַהַט","rahaṭ","rah'-hat","From an unused root apparently meaning to hollow out; a channel or watering box; by resemblance a ringlet of hair (as forming parallel lines): - gallery, gutter, trough."]},{"k":"H7299","v":["רֵו","rêv","rave","(Chaldee); from a root corresponding to H7200; aspect: - form."]},{"k":"H7300","v":["רוּד","rûwd","rood","A primitive root; to tramp about, that is, ramble (free or disconsolate): - have the dominion, be lord, mourn, rule."]},{"k":"H7301","v":["רָוָה","râvâh","raw-vaw'","A primitive root; to slake the thirst (occasionally of other appetites): - bathe, make drunk, (take the) fill, satiate, (abundantly) satisfy, soak, water (abundantly)."]},{"k":"H7302","v":["רָוֶה","râveh","raw-veh'","From H7301; sated (with drink): - drunkenness, watered."]},{"k":"H7303","v":["רוֹהֲגָה","Rôwhăgâh","ro-hag-aw'","From an unused root probably meaning to cry out; outcry; Rohagah, an Israelite: - Rohgah."]},{"k":"H7304","v":["רָוַח","râvach","raw-vakh'","A primitive root (rather identical with H7306); properly to breathe freely, that is, revive; by implication to have ample room: - be refreshed, large."]},{"k":"H7305","v":["רֶוַח","revach","reh'-vakh","From H7304; room, literally (an interval) or figuratively (deliverance): - enlargement, space."]},{"k":"H7306","v":["רוּחַ","rûwach","roo'-akh","A primitive root; properly to blow, that is, breathe; only (literally) to smell or (by implication perceive (figuratively to anticipate, enjoy): - accept, smell, X touch, make of quick understanding."]},{"k":"H7307","v":["רוּחַ","rûwach","roo'-akh","From H7306; wind; by resemblance breath, that is, a sensible (or even violent) exhalation; figuratively life, anger, unsubstantiality; by extension a region of the sky; by resemblance spirit, but only of a rational being (including its expression and functions): - air, anger, blast, breath, X cool, courage, mind, X quarter, X side, spirit ([-ual]), tempest, X vain, ([whirl-]) wind (-y)."]},{"k":"H7308","v":["רוּחַ","rûwach","roo'-akh","(Chaldee); corresponding to H7307: - mind, spirit, wind."]},{"k":"H7309","v":["רְוָחָה","rᵉvâchâh","rev-aw-khaw'","Feminine of H7305; relief: - breathing, respite."]},{"k":"H7310","v":["רְוָיָה","rᵉvâyâh","rev-aw-yaw'","From H7301; satisfaction: - runneth over, wealthy."]},{"k":"H7311","v":["רוּם","rûwm","room","A primitive root; to be high actively to rise or raise (in various applications, literally or figuratively): - bring up, exalt (self), extol, give, go up, haughty, heave (up), (be, lift up on, make on, set up on, too) high (-er, one), hold up, levy, lift (-er) up, (be) lofty, (X a-) loud, mount up, offer (up), + presumptuously, (be) promote (-ion), proud, set up, tall (-er), take (away, off, up), breed worms."]},{"k":"H7312","v":["רוּם","rûwm","room","From H7311; (literally) elevation or (figuratively) elation: - haughtiness, height, X high."]},{"k":"H7313","v":["רוּם","rûwm","room","(Chaldee); corresponding to H7311; (figuratively only): - extol, lift up (self), set up."]},{"k":"H7314","v":["רוּם","rûwm","room","(Chaldee); from H7313; (literally) altitude: - height."]},{"k":"H7315","v":["רוֹם","rôwm","rome","From H7311; elevation, that is, (adverbially) aloft: - on high."]},{"k":"H7316","v":["רוּמָה","Rûwmâh","roo-maw'","From H7311; height; Rumah, a place in Palestine: - Rumah."]},{"k":"H7317","v":["רוֹמָה","rôwmâh","ro-maw'","Feminine of H7315; elation, that is, (adverbially) proudly: - haughtily."]},{"k":"H7318","v":["רוֹמָם","rôwmâm","ro-mawm'","From H7426; exaltation, that is, (figuratively and specifically) praise: - be extolled."]},{"k":"H7319","v":["רוֹמְמָה","rôwmᵉmâh","ro-mem-aw'","Feminine active participle of H7426; exaltation, that is, praise: - high."]},{"k":"H7320","v":["רוֹמַמְתִּי עֶזֶר","Rôwmamtîy ʻEzer","ro-mam'-tee eh'-zer","From H7311 and H5828; I have raised up a help; Romamti-Ezer, an Israelite: - Romamti-ezer."]},{"k":"H7321","v":["רוּעַ","rûwaʻ","roo-ah'","A primitive root; to mar (especially by breaking); figuratively to split the ears (with sound), that is, shout (for alarm or joy): - blow an alarm, cry (alarm, aloud, out), destroy, make a joyful noise, smart, shout (for joy), sound an alarm, triumph."]},{"k":"H7322","v":["רוּף","rûwph","roof","A primitive root; properly to triturate (in a mortar), that is, (figuratively) to agitate (by concussion): - tremble."]},{"k":"H7323","v":["רוּץ","rûwts","roots","A primitive root; to run (for whatever reason, especially to rush): - break down, divide speedily, footman, guard, bring hastily, (make) run (away, through), post, stretch out."]},{"k":"H7324","v":["רוּק","rûwq","rook","A primitive root; to pour out (literally or figuratively), that is, empty: -  X arm, cast out, draw (out), (make) empty, pour forth (out)."]},{"k":"H7325","v":["רוּר","rûwr","roor","A primitive root; to slaver (with spittle), that is, (by analogy) to emit a fluid (ulcerous or natural): - run."]},{"k":"H7326","v":["רוּשׁ","rûwsh","roosh","A primitive root; to be destitute: - lack, needy, (make self) poor (man)."]},{"k":"H7327","v":["רוּת","Rûwth","rooth","Probably for H7468; friend; Ruth, a Moabitess: - Ruth."]},{"k":"H7328","v":["רָז","râz","rawz","(Chaldee); from an unused root probably meaning to attenuate, that is, (figuratively) hide; a mystery: - secret."]},{"k":"H7329","v":["רָזָה","râzâh","raw-zaw'","A primitive root; to emaciate, that is, make (become) thin (literally or figuratively): - famish, wax lean."]},{"k":"H7330","v":["רָזֶה","râzeh","raw-zeh'","From H7329; thin: - lean."]},{"k":"H7331","v":["רְזוֹן","Rᵉzôwn","rez-one'","From H7336; prince; Rezon, a Syrian: - Rezon."]},{"k":"H7332","v":["רָזוֹן","râzôwn","raw-zone'","From H7329; thinness: - leanness, X scant."]},{"k":"H7333","v":["רָזוֹן","râzôwn","raw-zone'","From H7336; a dignitary: - prince."]},{"k":"H7334","v":["רָזִי","râzîy","raw-zee'","From H7329; thinness: - leanness."]},{"k":"H7335","v":["רָזַם","râzam","raw-zam'","A primitive root; to twinkle the eye (in mockery): - wink."]},{"k":"H7336","v":["רָזַן","râzan","raw-zan'","A primitive root; probably to be heavy, that is, (figuratively) honorable: - prince, ruler."]},{"k":"H7337","v":["רָחַב","râchab","raw-khab'","A primitive root; to broaden (intransitively or transitively, literally or figuratively): - be an en- (make) large (-ing), make room, make (open) wide."]},{"k":"H7338","v":["רַחַב","rachab","rakh'-ab","From H7337; a width: - breadth, broad place."]},{"k":"H7339","v":["רְחֹב","rᵉchôb","rekh-obe'","From H7337; a width, that is, (concretely) avenue or area: - broad place (way), street. See also H1050."]},{"k":"H7340","v":["רְחֹב","Rᵉchôb","rekh-obe'","The same as H7339; Rechob, the name of a place in Syria, also of a Syrian and an Israelite: - Rehob."]},{"k":"H7341","v":["רֹחַב","rôchab","ro'-khab","From H7337; width (literally or figuratively): - breadth, broad, largeness, thickness, wideness."]},{"k":"H7342","v":["רָחָב","râchâb","raw-khawb'","From H7337; roomy, in any (or every) direction, literally or figuratively: - broad, large, at liberty, proud, wide."]},{"k":"H7343","v":["רָחָב","Râchâb","raw-khawb'","The same as H7342; proud; Rachab, a Canaanitess: - Rahab."]},{"k":"H7344","v":["רְחֹבוֹת","Rᵉchôbôwth","rekh-o-both'","Plural of H7339; streets; Rechoboth, a place in Assyria and one in Palestine: - Rehoboth."]},{"k":"H7345","v":["רְחַבְיָה","Rᵉchabyâh","rekh-ab-yaw'","From H7337 and H3050; Jah has enlarged; Rechabjah, an Israelite: - Rehabiah."]},{"k":"H7346","v":["רְחַבְעָם","Rᵉchabʻâm","rekh-ab-awm'","From H7337 and H5971; a people has enlarged; Rechabam, an Israelite king: - Rehoboam."]},{"k":"H7347","v":["רֵחֶה","rêcheh","ray-kheh'","From an unused root meaning to pulverize; a mill stone: - mill (stone)."]},{"k":"H7348","v":["רְחוּם","Rᵉchûwm","rekh-oom'","A form of H7349; Rechum, the name of a Persian and of three Israelites: - Rehum."]},{"k":"H7349","v":["רַחוּם","rachûwm","rakh-oom'","From H7355; compassionate: - full of compassion, merciful."]},{"k":"H7350","v":["רָחוֹק","râchôwq","raw-khoke'","From H7368; remote, literally of figuratively, of place or time; specifically precious; often used adverbially (with preposition): - (a-) far (abroad, off), long ago, of old, space, great while to come."]},{"k":"H7351","v":["רְחִיט","rᵉchîyṭ","rekh-eet'","From the same as H7298; a panel (as resembling a trough): - rafter."]},{"k":"H7352","v":["רַחִיק","rachîyq","rakh-eek'","(Chaldee); corresponding to H7350: - far."]},{"k":"H7353","v":["רָחֵל","râchêl","raw-kale'","From an unused root meaning to journey; a ewe (the females being the predominant element of a flock), (as a good traveller): - ewe, sheep."]},{"k":"H7354","v":["רָחֵל","Râchêl","raw-khale'","The same as H7353; Rachel, a wife of Jacob: - Rachel."]},{"k":"H7355","v":["רָחַם","râcham","raw-kham'","A primitive root; to fondle; by implication to love, especially to compassionate: - have compassion (on, upon), love, (find, have, obtain, shew) mercy (-iful, on, upon), (have) pity, Ruhamah, X surely."]},{"k":"H7356","v":["רַחַם","racham","rakh'-am","From H7355; compassion (in the plural); by extension the womb (as cherishing the foetus); by implication a maiden: - bowels, compassion, damsel, tender love, (great, tender) mercy, pity, womb."]},{"k":"H7357","v":["רַחַם","Racham","rakh'-am","The same as H7356; pity; Racham, an Israelite: - Raham."]},{"k":"H7358","v":["רֶחֶם","rechem","rekh'-em","From H7355; the womb (compare H7356): - matrix, womb."]},{"k":"H7359","v":["רְחֵם","rᵉchêm","rekh-ame'","(Chaldee); corresponding to H7356; (plural) pity: - mercy."]},{"k":"H7360","v":["רָחָם","râchâm","raw-khawm'","From H7355; a kind of vulture (supposed to be tender towards its young): - gier-eagle."]},{"k":"H7361","v":["רַחֲמָה","rachămâh","rakh-am-aw'","Feminine of H7356; a maiden: - damsel."]},{"k":"H7362","v":["רַחְמָנִי","rachmânîy","rakh-maw-nee'","From H7355; compassionate: - pitiful."]},{"k":"H7363","v":["רָחַף","râchaph","raw-khaf'","A primitive root; to brood; by implication to be relaxed: - flutter, move, shake."]},{"k":"H7364","v":["רָחַץ","râchats","raw-khats'","A primitive root; to lave (the whole or a part of the thing): - bathe (self), wash (self)."]},{"k":"H7365","v":["רְחַץ","rᵉchats","rekh-ats'","(Chaldee); corresponding to H7364 (probably through the accessory idea of ministering as a servant at the bath); to attend upon: - trust."]},{"k":"H7366","v":["רַחַץ","rachats","rakh'-ats","From H7364; a bath: - wash [-pot]."]},{"k":"H7367","v":["רַחְצָה","rachtsâh","rakh-tsaw'","Feminine of H7366; a bathing place: - washing."]},{"k":"H7368","v":["רָחַק","râchaq","raw-khak'","A primitive root; to widen (in any direction), that is, (intransitively) recede or (transitively) remove (literally or figuratively, of place or relation): - (a, be, cast, drive, get, go, keep [self], put, remove, be too, [wander], withdraw) far (away, off), loose, X refrain, very, (be) a good way (off)."]},{"k":"H7369","v":["רָחֵק","râchêq","raw-khake'","From H7368; remote: - that are far."]},{"k":"H7370","v":["רָחַשׁ","râchash","raw-khash'","A primitive root; to gush: - indite."]},{"k":"H7371","v":["רַחַת","rachath","rakh'-ath","From H7306; a winnowing fork (as blowing the chaff away): - shovel."]},{"k":"H7372","v":["רָטַב","râṭab","raw-tab'","A primitive root; to be moist: - be wet."]},{"k":"H7373","v":["רָטֹב","râṭôb","raw-tobe'","From H7372; moist (with sap): - green."]},{"k":"H7374","v":["רֶטֶט","reṭeṭ","reh'-tet","From an unused root meaning to tremble; terror: - fear."]},{"k":"H7375","v":["רֻטֲפַשׁ","ruṭăphash","roo-taf-ash'","A root compounded from H7373 and H2954; to be rejuvenated: - be fresh."]},{"k":"H7376","v":["רָטָשׁ","râṭâsh","raw-tash'","A primitive root; to dash down: - dash (in pieces)."]},{"k":"H7377","v":["רִי","rîy","ree","From H7301; irrigation, that is, a shower: - watering."]},{"k":"H7378","v":["רִיב","rîyb","reeb","A primitive root; properly to toss, that is, grapple; mostly figuratively to wrangle, that is, hold a controversy; (by implication) to defend: - adversary, chide, complain, contend, debate, X ever, X lay wait, plead, rebuke, strive, X thoroughly."]},{"k":"H7379","v":["רִיב","rîyb","reeb","From H7378; a contest (personal or legal): -    + adversary, cause, chiding, contend (-tion), controversy, multitude [from the margin], pleading, strife, strive (-ing), suit."]},{"k":"H7380","v":["רִיבַי","Rîybay","ree-bah'-ee","From H7378; contentious; Ribai, an Israelite: - Ribai."]},{"k":"H7381","v":["רֵיחַ","rêyach","ray'-akh","From H7306; odor (as if blown): - savour, scent, smell."]},{"k":"H7382","v":["רֵיחַ","rêyach","ray'-akh","(Chaldee); corresponding to H7381: - smell."]},{"k":"H7383","v":["רִיפָה","rîyphâh","ree-faw'","From H7322; (only plural), grits (as pounded): - ground corn, wheat."]},{"k":"H7384","v":["רִיפַת","Rîyphath","ree-fath'","The second form is probably by orthographical error; of foreign origin; Riphath, a grandson of Jepheth and his descendants: - Riphath."]},{"k":"H7385","v":["רִיק","rîyq","reek","From H7324; emptiness; figuratively a worthless thing; adverbially in vain: - empty, to no purpose, (in) vain (thing), vanity."]},{"k":"H7386","v":["רֵיק","rêyq","rake","From H7324; empty; figuratively worthless: - emptied (-ty), vain (fellow, man)."]},{"k":"H7387","v":["רֵיקָם","rêyqâm","ray-kawm'","From H7386; emptily; figuratively (objectively) ineffectually, (subjectively) undeservedly: - without cause, empty, in vain, void."]},{"k":"H7388","v":["רִיר","rîyr","reer","From H7325; saliva; by resemblance broth: - spittle, white [of an egg]."]},{"k":"H7389","v":["רֵישׁ","rêysh","raysh","From H7326; poverty: - poverty."]},{"k":"H7390","v":["רַךְ","rak","rak","From H7401; tender (literally or figuratively); by implication weak: - faint [-hearted], soft, tender ([-hearted], one), weak."]},{"k":"H7391","v":["רֹךְ","rôk","roke","From H7401; softness (figuratively): - tenderness."]},{"k":"H7392","v":["רָכַב","râkab","raw-kab'","A primitive root; to ride (on an animal or in a vehicle); causatively to place upon (for riding or generally), to despatch: - bring (on [horse-] back), carry, get [oneself] up, on [horse-] back, put, (cause to, make to) ride (in a chariot, on, -r), set."]},{"k":"H7393","v":["רֶכֶב","rekeb","reh'-keb","From H7392; a vehicle; by implication a team; by extension cavalry; by analogy a rider, that is, the upper millstone: - chariot, (upper) millstone, multitude [from the margin], wagon."]},{"k":"H7394","v":["רֵכָב","Rêkâb","ray-kawb'","From H7392; rider; Rekab, the name of two Arabs and of two Israelites: - Rechab."]},{"k":"H7395","v":["רַכָּב","rakkâb","rak-kawb'","From H7392; a charioteer: - chariot man, driver of a chariot, horseman."]},{"k":"H7396","v":["רִכְבָּה","rikbâh","rik-baw'","Feminine of H7393; a chariot (collectively): - chariots."]},{"k":"H7397","v":["רֵכָה","Rêkâh","ray-kaw'","Probably feminine from H7401; softness; Rekah, a place in Palestine: - Rechah."]},{"k":"H7398","v":["רְכוּב","rᵉkûwb","rek-oob'","From passive participle of H7392; a vehicle (as ridden on): - chariot."]},{"k":"H7399","v":["רְכוּשׁ","rᵉkûwsh","rek-oosh'","From passive participle of H7408; property (as gathered): - good, riches, substance."]},{"k":"H7400","v":["רָכִיל","râkîyl","raw-keel'","From H7402; a scandal monger (as travelling about): - slander, carry tales, talebearer."]},{"k":"H7401","v":["רָכַךְ","râkak","raw-kak'","A primitive root; to soften (intransitively or transitively), used figuratively: - (be) faint ([-hearted]), mollify, (be, make) soft (-er), be tender."]},{"k":"H7402","v":["רָכַל","râkal","raw-kal'","A primitive root; to travel for trading: - (spice) merchant."]},{"k":"H7403","v":["רָכָל","Râkâl","raw-kawl'","From H7402; merchant; Rakal, a place in Palestine: - Rachal."]},{"k":"H7404","v":["רְכֻלָּה","rᵉkullâh","rek-ool-law'","Feminine passive participle of H7402; trade (as peddled): - merchandise, traffic."]},{"k":"H7405","v":["רָכַס","râkaç","raw-kas'","A primitive root; to tie: - bind."]},{"k":"H7406","v":["רֶכֶס","rekeç","reh'-kes","From H7405; a mountain ridge (as of tied summits): - rough place."]},{"k":"H7407","v":["רֹכֶס","rôkeç","ro'-kes","From H7405; a snare (as of tied meshes): - pride."]},{"k":"H7408","v":["רָכַשׁ","râkash","raw-kash'","A primitive root; to lay up, that is, collect: - gather, get."]},{"k":"H7409","v":["רֶכֶשׁ","rekesh","reh'-kesh","From H7408; a relay of animals on a post route (as stored up for that purpose); by implication a courser: - dromedary, mule, swift beast."]},{"k":"H7410","v":["רָם","Râm","rawm","Active participle of H7311; high; Ram, the name of an Arabian and of an Israelite: - Ram. See also H1027."]},{"k":"H7411","v":["רָמָה","râmâh","raw-maw'","A primitive root; to hurl; specifically to shoot; figuratively to delude or betray (as if causing to fall): - beguile, betray, [bow-] man, carry, deceive, throw."]},{"k":"H7412","v":["רְמָה","rᵉmâh","rem-aw'","(Chaldee); corresponding to H7411; to throw, set, (figuratively) assess: - cast (down), impose."]},{"k":"H7413","v":["רָמָה","râmâh","raw-maw'","Feminine active participle of H7311; a height (as a seat of idolatry): - high place."]},{"k":"H7414","v":["רָמָה","Râmâh","raw-maw'","The same as H7413; Ramah, the name of four places in Palestine: - Ramah."]},{"k":"H7415","v":["רִמָּה","rimmâh","rim-maw'","From H7426 in the sense of breeding (compare H7311); a maggot (as rapidly bred), literally or figuratively: - worm."]},{"k":"H7416","v":["רִמּוֹן","rimmôwn","rim-mone'","From H7426; a pomegranate, the tree (from its upright growth) or the fruit (also an artificial ornament): - pomegranate."]},{"k":"H7417","v":["רִמּוֹן","Rimmôwn","rim-mone'","The same as H7416; Rimmon, the name of a Syrian deity, also of five places in Palestine. The additon of “-methoar” (the fourth form) is a passive participle of H8388 with the article; the (one) marked off, that is, which pertains; mistaken for part of the name: - Remmon, Rimmon. The addition “-methoar” (Jos_19:13) is הַמְּתֹאָר hammethô'âr, ham-meth-o-awr; passive participle of H8388 with the article the (one) marked off, That is,which pertains; mistaken for part of the name."]},{"k":"H7418","v":["רָמוֹת","Râmôwth","raw-moth","From the plural or constructive of H7413 and H5045; heights (or height) of the South; Ramoth-Negeb or Ramoth-Negeb, a place in Palestine: - south Ramoth, Ramath of the south."]},{"k":"H7419","v":["רָמוּת","râmûwth","raw-mooth'","From H7311; a heap (of carcases): - height."]},{"k":"H7420","v":["רֹמַח","rômach","ro'-makh","From an unused root meaning to hurl; a lance (as thrown); especially the iron point: - buckler, javelin, lancet, spear."]},{"k":"H7421","v":["רַמִּי","rammîy","ram-mee'","For H761; a Ramite, that is, Aramaean: - Syrian."]},{"k":"H7422","v":["רַמְיָה","Ramyâh","ram-yaw'","From H7311 and H3050; Jah has raised; Ramjah, an Israelite: - Ramiah."]},{"k":"H7423","v":["רְמִיָּה","rᵉmîyâh","rem-ee-yaw'","From H7411; remissness, treachery: - deceit (-ful, -fully), false, guile, idle, slack, slothful."]},{"k":"H7424","v":["רַמָּךְ","rammâk","ram-mawk'","Of foreign origin; a brood mare: - dromedary."]},{"k":"H7425","v":["רְמַלְיָהוּ","Rᵉmalyâhûw","rem-al-yaw'-hoo","From an unused root and H3050 (perhaps meaning to deck); Jah has bedecked; Remaljah, an Israelite: - Remaliah."]},{"k":"H7426","v":["רָמַם","râmam","raw-mam'","A primitive root; to rise (literally or figuratively): - exalt, get [oneself] up, lift up (self), mount up."]},{"k":"H7427","v":["רֹמֵמֻת","rômêmuth","ro-may-mooth'","From the active participle of H7426; exaltation: - lifting up of self."]},{"k":"H7428","v":["רִמֹּן פֶּרֶץ","Rimmôn Perets","rim-mone' peh'-rets","From H7416 and H6556; pomegranate of the breach; Rimmon Perets, a place in the Desert: - Rimmon-parez."]},{"k":"H7429","v":["רָמַס","râmaç","raw-mas'","A primitive root; to tread upon (as a potter, in walking or abusively): - oppressor, stamp upon, trample (under feet), tread (down, upon)."]},{"k":"H7430","v":["רָמַשׂ","râmas","raw-mas'","A primitive root; properly to glide swiftly, that is, to crawl or move with short steps; by analogy to swarm: - creep, move."]},{"k":"H7431","v":["רֶמֶשׂ","remes","reh'-mes","From H7430; a reptile or any other rapidly moving animal: - that creepeth, creeping (moving) thing."]},{"k":"H7432","v":["רֶמֶת","Remeth","reh'-meth","From H7411; height; Remeth, a place in Palestine: - Remeth."]},{"k":"H7433","v":["רָמֹת גִּלעָד","Râmôth Gilʻâd","raw-moth' gil-awd'","From the plural of H7413 and H1568; heights of Gilad; Ramoth Gilad, a place East of the Jordan: - Ramoth-gilead, Ramoth in Gilead. See also H7216."]},{"k":"H7434","v":["רָמַת הַמִּצְפֶּה","Râmath ham-Mit-speh","raw-math' ham-mitspeh'","From H7413 and H4707 with the article interposed; height of the watch tower; Ramath ham Mitspeh, a place in Palestine: - Ramath-mizpeh."]},{"k":"H7435","v":["רָמָתִי","Râmâthîy","raw-maw-thee'","Patronymic of H7414; a Ramathite or inhabitant of Ramah: - Ramathite."]},{"k":"H7436","v":["רָמָתַיִם צוֹפִים","Râmâthayim Tsôwphîym","raw-maw-thah'-yim tso-feem'","From the dual of H7413 and the plural of the active participle of H6822; double height of watchers; Ramathajim Tsophim, a place in Palestine: - Ramathaim-zophim."]},{"k":"H7437","v":["רָמַת לֶחִי","Râmath Lechîy","raw'-math lekh'-ee","From H7413 and H3895; height of a jaw bone; Ramath Lechi, a place in Palestine: - Ramath-lehi."]},{"k":"H7438","v":["רֹן","rôn","rone","From H7442; a shout (of deliverance): - song."]},{"k":"H7439","v":["רָנָה","rânâh","raw-naw'","A primitive root; to whiz: - rattle."]},{"k":"H7440","v":["רִנָּה","rinnâh","rin-naw'","From H7442; properly a creaking (or shrill sound), that is, shout (of joy or grief): - cry, gladness, joy, proclamation, rejoicing, shouting, sing (-ing), triumph."]},{"k":"H7441","v":["רִנָּה","Rinnâh","rin-naw'","The same as H7440; Rinnah, an Israelite: - Rinnah."]},{"k":"H7442","v":["רָנַן","rânan","raw-nan'","A primitive root; properly to creak (or emit a stridulous sound), that is, to shout (usually for joy): - aloud for joy, cry out, be joyful, (greatly, make to) rejoice, (cause to) shout (for joy), (cause to) sing (aloud, for joy, out), triumph."]},{"k":"H7443","v":["רֶנֶן","renen","reh'-nen","From H7442; an ostrich (from its wail): -    X goodly."]},{"k":"H7444","v":["רַנֵּן","rannên","ran-nane'","Intensive from H7442; shouting (for joy): - singing."]},{"k":"H7445","v":["רְנָנָה","rᵉnânâh","ren-aw-naw'","From H7442; a shout (for joy): - joyful (voice), singing, triumphing."]},{"k":"H7446","v":["רִסָּה","Riççâh","ris-saw'","From H7450; a ruin (as dripping to pieces); Rissah, a place in the Desert: - Rissah."]},{"k":"H7447","v":["רָסִיס","râçîyç","raw-sees'","From H7450; properly dripping to pieces, that is, a ruin; also a dew drop: - breach, drop."]},{"k":"H7448","v":["רֶסֶן","reçen","reh'-sen","From an unused root meaning to curb; a halter (as restraining); by implication the jaw: - bridle."]},{"k":"H7449","v":["רֶסֶן","Reçen","reh'-sen","The same as H7448; Resen, a place in Assyria: - Resen."]},{"k":"H7450","v":["רָסַס","râçaç","raw-sas'","A primitive root; to comminute; used only as denominative from H7447, to moisten (with drops): - temper."]},{"k":"H7451","v":["רַע","raʻ","rah","From H7489; bad or (as noun) evil (naturally or morally). This includes the second (feminine) form; as adjective or noun: - adversity, affliction, bad, calamity, + displease (-ure), distress, evil ([-favouredness], man, thing), + exceedingly, X great, grief (-vous), harm, heavy, hurt (-ful), ill (favoured), + mark, mischief, (-vous), misery, naught (-ty), noisome, + not please, sad (-ly), sore, sorrow, trouble, vex, wicked (-ly, -ness, one), worse (-st) wretchedness, wrong. [Including feminine ra’ah; as adjective or noun.]"]},{"k":"H7452","v":["רֵעַ","rêaʻ","ray'-ah","From H7321; a crash (of thunder), noise (of war), shout (of joy): -    X aloud, noise, shouted."]},{"k":"H7453","v":["רֵעַ","rêaʻ","ray'-ah","From H7462; an associate (more or less close): - brother, companion, fellow, friend, husband, lover, neighbour, X (an-) other."]},{"k":"H7454","v":["רֵעַ","rêaʻ","ray'-ah","From H7462; a thought (as association of ideas): - thought."]},{"k":"H7455","v":["רֹעַ","rôaʻ","ro'-ah","From H7489; badness (as marring), physically or morally: -    X be so bad, badness, (X be so) evil, naughtiness, sadness, sorrow, wickedness."]},{"k":"H7456","v":["רָעֵב","râʻêb","raw-abe'","A primitive root; to hunger: - (suffer to) famish, (be, have, suffer, suffer to) hunger (-ry)."]},{"k":"H7457","v":["רָעֵב","râʻêb","raw-abe'","From H7456; hungry (more or less intensely): - hunger bitten, hungry."]},{"k":"H7458","v":["רָעָב","râʻâb","raw-awb'","From H7456; hunger (more or less extensive): - dearth, famine, + famished, hunger."]},{"k":"H7459","v":["רְעָבוֹן","rᵉʻâbôwn","reh-aw-bone'","From H7456; famine: - famine."]},{"k":"H7460","v":["רָעַד","râʻad","raw-ad'","A primitive root; to shudder (more or less violently): - tremble."]},{"k":"H7461","v":["רַעַד","raʻad","rah'-ad","From H7460; a shudder: - fear, trembling."]},{"k":"H7462","v":["רָעָה","râʻâh","raw-aw'","A primitive root; to tend a flock, that is, pasture it; intransitively to graze (literally or figuratively); generally to rule; by extension to associate with (as a friend): -    X break, companion, keep company with, devour, eat up, evil entreat, feed, use as a friend, make friendship with, herdman, keep [sheep] (-er), pastor, + shearing house, shepherd, wander, waste."]},{"k":"H7463","v":["רֵעֶה","rêʻeh","ray-eh'","From H7462; a (male) companion: - friend."]},{"k":"H7464","v":["רֵעָה","rêʻâh","ray'-aw","Feminine of H7453; a female associate: - companion, fellow."]},{"k":"H7465","v":["רֹעָה","rôʻâh","ro-aw'","For H7455; breakage: - broken, utterly."]},{"k":"H7466","v":["רְעוּ","Rᵉʻûw","reh-oo'","For H7471 in the sense of H7453; friend; Reu, a postdiluvian patriarch: - Reu."]},{"k":"H7467","v":["רְעוּאֵל","Rᵉʻûwʼêl","reh-oo-ale'","From the same as H7466 and H410; friend of God; Reuel, the name of Moses’ father in law, also of an Edomite and an Israelite: - Raguel, Reuel."]},{"k":"H7468","v":["רְעוּת","rᵉʻûwth","reh-ooth'","From H7462 in the sense of H7453; a female associate; generally an additional one: -    + another, mate, neighbour."]},{"k":"H7469","v":["רְעוּת","rᵉʻûwth","reh-ooth'","Probably from H7462; a feeding upon, that is, grasping after: - vexation."]},{"k":"H7470","v":["רְעוּת","rᵉʻûwth","reh-ooth'","(Chaldee); corresponding to H7469; desire: - pleasure, will."]},{"k":"H7471","v":["רְעִי","rᵉʻîy","reh-ee'","From H7462; pasture: - pasture."]},{"k":"H7472","v":["רֵעִי","Rêʻîy","ray-ee'","From H7453; social; Rei, an Israelite: - Rei."]},{"k":"H7473","v":["רֹעִי","rôʻîy","ro-ee'","From active participle of H7462; pastoral; as noun, a shepherd: - shepherd."]},{"k":"H7474","v":["רַעְיָה","raʻyâh","rah-yaw'","Feminine of H7453; a female associate: - love."]},{"k":"H7475","v":["רַעְיוֹן","raʻyôwn","rah-yone'","From H7462 in the sense of H7469; desire: - vexation."]},{"k":"H7476","v":["רַעְיוֹן","raʻyôwn","rah-yone'","(Chaldee); corresponding to H7475; a grasp, that is, (figuratively) mental conception: - cogitation, thought."]},{"k":"H7477","v":["רָעַל","râʻal","raw-al'","A primitive root; to reel, that is, (figuratively) to brandish: - terribly shake."]},{"k":"H7478","v":["רַעַל","raʻal","rah'-al","From H7477; a reeling (from intoxication): - trembling."]},{"k":"H7479","v":["רַעֲלָה","raʻălâh","rah-al-aw'","Feminine of H7478; a long veil (as fluttering): - muffler."]},{"k":"H7480","v":["רְעֵלָיָה","Rᵉʻêlâyâh","reh-ay-law-yaw'","From H7477 and H3050; made to tremble (that is, fearful) of Jah; Reelajah, an Israelite: - Reeliah."]},{"k":"H7481","v":["רָעַם","râʻam","raw-am'","A primitive root; to tumble, that is, be violently agitated; specifically to crash (of thunder); figuratively to irritate (with anger): - make to fret, roar, thunder, trouble."]},{"k":"H7482","v":["רַעַם","raʻam","rah'am","From H7481; a peal of thunder: - thunder."]},{"k":"H7483","v":["רַעְמָה","raʻmâh","rah-maw'","Feminine of H7482; the mane of a horse (as quivering in the wind): - thunder."]},{"k":"H7484","v":["רַעְמָה","Raʻmâh","rah-maw'","The same as H7483; Ramah, the name of a grandson of Ham, and of a place (perhaps founded by him): - Raamah."]},{"k":"H7485","v":["רַעַמְיָה","Raʻamyâh","rah-am-yaw'","From H7481 and H3050; Jah has shaken; Raamjah, an Israelite: - Raamiah."]},{"k":"H7486","v":["רַעְמְסֵס","Raʻmᵉçêç","rah-mes-ace'","Of Egypt origin; Rameses or Raamses, a place in Egypt: - Raamses, Rameses."]},{"k":"H7487","v":["רַעֲנַן","raʻănan","rah-aw-nan'","(Chaldee); corresponding to H7488; green, that is, (figuratively) prosperous: - flourishing."]},{"k":"H7488","v":["רַעֲנָן","raʻănân","rah-an-awn'","From an unused root meaning to be green; verdant; by analogy new; figuratively prosperous: - green, flourishing."]},{"k":"H7489","v":["רָעַע","râʻaʻ","raw-ah'","A primitive root; properly to spoil (literally by breaking to pieces); figuratively to make (or be) good for nothing, that is, bad (physically, socially or morally). (associate selves and show self friendly are by mistake for H7462.): - afflict, associate selves [by mistake for H7462], break (down, in pieces), + displease, (be, bring, do) evil (doer, entreat, man), show self friendly [by mistake for H7462], do harm, (do) hurt, (behave self, deal) ill, X indeed, do mischief, punish, still vex, (do) wicked (doer, -ly), be (deal, do) worse."]},{"k":"H7490","v":["רְעַע","rᵉʻaʻ","reh-ah'","(Chaldee); corresponding to H7489: - break, bruise."]},{"k":"H7491","v":["רָעַף","râʻaph","raw-af'","A primitive root; to drip: - distil, drop (down)."]},{"k":"H7492","v":["רָעַץ","râʻats","raw-ats'","A primitive root; to break in pieces; figuratively harass: - dash in pieces, vex."]},{"k":"H7493","v":["רָעַשׁ","râʻash","raw-ash","A primitive root; to undulate (as the earth, the sky, etc.; also a field of grain), particularly through fear; specifically to spring (as a locust): - make afraid, (re-) move, quake, (make to) shake, (make to) tremble."]},{"k":"H7494","v":["רַעַשׁ","raʻash","rah'-ash","From H7493; vibration, bounding, uproar: - commotion, confused noise, earthquake, fierceness, quaking, rattling, rushing, shaking."]},{"k":"H7495","v":["רָפָא","râphâʼ","raw-faw'","A primitive root; properly to mend (by stitching), that is, (figuratively) to cure: - cure, (cause to) heal, physician, repair, X thoroughly, make whole. See H7503."]},{"k":"H7496","v":["רָפָא","râphâʼ","raw-faw'","From H7495 in the sense of H7503; properly lax, that is, (figuratively) a ghost (as dead; in plural only): - dead, deceased."]},{"k":"H7497","v":["רָפָא","râphâʼ","raw-faw'","From H7495 in the sense of invigorating; a giant: - giant, Rapha, Rephaim (-s). See also H1051."]},{"k":"H7498","v":["רָפָא","Râphâʼ","raw-faw'","Probably the same as H7497; giant; Rapha or Raphah, the name of two Israelites: - Rapha."]},{"k":"H7499","v":["רְפֻאָה","rᵉphuʼâh","ref-oo-aw'","Feminine passive participle of H7495; a medicament: - heal [-ed], medicine."]},{"k":"H7500","v":["רִפְאוּת","riphʼûwth","rif-ooth'","From H7495; a cure: - health."]},{"k":"H7501","v":["רְפָאֵל","Rᵉphâʼêl","ref-aw-ale'","From H7495 and H410; God has cured; Rephael, an Israelite: - Rephael."]},{"k":"H7502","v":["רָפַד","râphad","raw-fad'","A primitive root; to spread (a bed); by implication to refresh: - comfort, make [a bed], spread."]},{"k":"H7503","v":["רָפָה","râphâh","raw-faw'","A primitive root; to slacken (in many applications, literally or figuratively): - abate, cease, consume, draw [toward evening], fail, (be) faint, be (wax) feeble, forsake, idle, leave, let alone (go, down), (be) slack, stay, be still, be slothful, (be) weak (-en). See H7495."]},{"k":"H7504","v":["רָפֶה","râpheh","raw-feh'","From H7503; slack (in body or mind): - weak."]},{"k":"H7505","v":["רָפוּא","Râphûwʼ","raw-foo'","Passive participle of H7495; cured; Raphu, an Israelite: - Raphu."]},{"k":"H7506","v":["רֶפַח","Rephach","reh'-fakh","From an unused root apparently meaning to sustain; support; Rephach, an Israelite: - Rephah."]},{"k":"H7507","v":["רְפִידָה","rᵉphîydâh","ref-ee-daw'","From H7502; a railing (as spread along): - bottom."]},{"k":"H7508","v":["רְפִידִים","Rᵉphîydîym","ref-ee-deem'","Plural of the masculine of the same as H7507; ballusters; Rephidim, a place in the Desert: - Rephidim."]},{"k":"H7509","v":["רְפָיָה","Rᵉphâyâh","ref-aw-yaw'","From H7495 and H3050; Jah has cured; Rephajah, the name of five Israelites: - Rephaiah."]},{"k":"H7510","v":["רִפְיוֹן","riphyôwn","rif-yone'","From H7503; slackness: - feebleness."]},{"k":"H7511","v":["רָפַס","râphaç","raw-fas'","A primitive root; to trample, that is, prostrate: - humble self, submit self."]},{"k":"H7512","v":["רְפַס","rᵉphaç","ref-as'","(Chaldee); corresponding to H7511: - stamp."]},{"k":"H7513","v":["רַפְסֹדָה","raphçôdâh","raf-so-daw'","From H7511; a raft (as flat on the water): - flote."]},{"k":"H7514","v":["רָפַק","râphaq","raw-fak'","A primitive root; to recline: - lean."]},{"k":"H7515","v":["רָפַשׂ","râphas","raw-fas'","A primitive root; to trample, that is, roil water: - foul, trouble."]},{"k":"H7516","v":["רֶפֶשׁ","rephesh","reh'-fesh","From H7515; mud (as roiled): - mire."]},{"k":"H7517","v":["רֶפֶת","repheth","reh'-feth","Probably form H7503; a stall for cattle (from their resting there): - stall."]},{"k":"H7518","v":["רַץ","rats","rats","Contracted from H7538; a fragment: - piece."]},{"k":"H7519","v":["רָצָא","râtsâʼ","raw-tsaw'","A primitive root; to run; also to delight in: - accept, run."]},{"k":"H7520","v":["רָצַד","râtsad","raw-tsad'","A primitive root; probably to look askant, that is, (figuratively) be jealous: - leap."]},{"k":"H7521","v":["רָצָה","râtsâh","raw-tsaw'","A primitive root; to be pleased with; specifically to satisfy a debt: - (be) accept (-able), accomplish, set affection, approve, consent with, delight (self), enjoy, (be, have a) favour (-able), like, observe, pardon, (be, have, take) please (-ure), reconcile self."]},{"k":"H7522","v":["רָצוֹן","râtsôwn","raw-tsone'","From H7521; delight: - (be) acceptable (-ance, -ed), delight, desire, favour, (good) pleasure, (own, self, voluntary) will, as . . . (what) would."]},{"k":"H7523","v":["רָצַח","râtsach","raw-tsakh'","A primitive root; properly to dash in pieces, that is, kill (a human being), especially to murder: - put to death, kill, (man-) slay (-er), murder (-er)."]},{"k":"H7524","v":["רֶצַח","retsach","reh-tsakh","From H7523; a crushing; specifically a murder cry: - slaughter, sword."]},{"k":"H7525","v":["רִצְיָא","Ritsyâʼ","rits-yaw'","From H7521; delight; Ritsjah, an Israelite: - Rezia."]},{"k":"H7526","v":["רְצִין","Rᵉtsîyn","rets-een'","Probably for H7522; Retsin, the name of a Syrian and of an Israelite: - Rezin."]},{"k":"H7527","v":["רָצַע","râtsaʻ","raw-tsah'","A primitive root; to pierce: - bore."]},{"k":"H7528","v":["רָצַף","râtsaph","raw-tsaf'","A denominative from H7529; to tessellate, that is, embroider (as if with bright stones): - pave."]},{"k":"H7529","v":["רֶצֶף","retseph","reh'-tsef","For H7565; a red hot stone (for baking): - coal."]},{"k":"H7530","v":["רֶצֶף","Retseph","reh'-tsef","The same as H7529; Retseph, a place in Assyria: - Rezeph."]},{"k":"H7531","v":["רִצְפָּה","ritspâh","rits-paw'","Feminine of H7529; a hot stone; also a tessellated pavement: - live coal, pavement."]},{"k":"H7532","v":["רִצְפָּה","Ritspâh","rits-paw'","The same as H7531; Ritspah, an Israelitess: - Rizpah."]},{"k":"H7533","v":["רָצַץ","râtsats","raw-tsats'","A primitive root; to crack in pieces, literally or figuratively: - break, bruise, crush, discourage, oppress, struggle together."]},{"k":"H7534","v":["רַק","raq","rak","From H7556 in its original sense; emaciated (as if flattened out): - lean([-fleshed]), thin."]},{"k":"H7535","v":["רַק","raq","rak","The same as H7534 as a noun; properly leanness, that is, (figuratively) limitation; only adverbially merely, or conjugationally although: - but, even, except, howbeit howsoever, at the least, nevertheless, nothing but, notwithstanding, only, save, so [that], surely, yet (so), in any wise."]},{"k":"H7536","v":["רֹק","rôq","roke","From H7556; spittle: - spit (-ting, -tle)."]},{"k":"H7537","v":["רָקַב","râqab","raw-kab'","A primitive root; to decay (as by worm eating): - rot."]},{"k":"H7538","v":["רָקָב","râqâb","raw-kawb'","From H7537; decay (by caries): - rottenness (thing)."]},{"k":"H7539","v":["רִקָּבוֹן","riqqâbôwn","rik-kaw-bone'","From H7538; decay (by caries): - rotten."]},{"k":"H7540","v":["רָקַד","râqad","raw-kad'","A primitive root; properly to stamp, that is, to spring about (wildly or for joy): - dance, jump, leap, skip."]},{"k":"H7541","v":["רַקָּה","raqqâh","rak-kaw'","Feminine of H7534; properly thinness, that is, the side of the head: - temple."]},{"k":"H7542","v":["רַקּוֹן","Raqqôwn","rak-kone'","From H7534; thinness; Rakkon, a place in Palestine: - Rakkon."]},{"k":"H7543","v":["רָקַח","râqach","raw-kakh'","A primitive root; to perfume: - apothecary, compound, make [ointment], prepare, spice."]},{"k":"H7544","v":["רֶקַח","reqach","reh'-kakh","From H7543; properly perfumery, that is, (by implication) spicery (for flavor): - spiced."]},{"k":"H7545","v":["רֹקַח","rôqach","ro'-kakh","From H7542; an aromatic: - confection, ointment."]},{"k":"H7546","v":["רַקָּח","raqqâch","rak-kawkh'","From H7543; a male perfumer: - apothecary."]},{"k":"H7547","v":["רַקֻּחַ","raqquach","rak-koo'-akh","From H7543; a scented substance: - perfume."]},{"k":"H7548","v":["רַקָּחָה","raqqâchâh","rak-kaw-khaw'","Feminine of H7547; a female perfumer: - confectioner."]},{"k":"H7549","v":["רָקִיעַ","râqîyaʻ","raw-kee'-ah","From H7554; properly an expanse, that is, the firmament or (apparently) visible arch of the sky: - firmament."]},{"k":"H7550","v":["רָקִיק","râqîyq","raw-keek'","From H7556 in its original sense; a thin cake: - cake, wafer."]},{"k":"H7551","v":["רָקַם","râqam","raw-kam'","A primitive root; to variegate color, that is, embroider; by implication to fabricate: - embroiderer, needlework, curiously work."]},{"k":"H7552","v":["רֶקֶם","Reqem","reh'-kem","From H7551; versicolor; Rekem, the name of a place in Palestine, also of a Midianite and an Israelite: - Rekem."]},{"k":"H7553","v":["רִקְמָה","riqmâh","rik-maw'","From H7551; variegation of color; specifically embroidery: - broidered (work), divers colours, (raiment of) needlework (on both sides)."]},{"k":"H7554","v":["רָקַע","râqaʻ","raw-kah'","A primitive root; to pound the earth (as a sign of passion); by analogy to expand (by hammering); by implication to overlay (with thin sheets of metal): - beat, make broad, spread abroad (forth, over, out, into plates), stamp, stretch."]},{"k":"H7555","v":["רִקֻּעַ","riqquaʻ","rik-koo'-ah","From H7554; beaten out, that is, a (metallic) plate: - broad."]},{"k":"H7556","v":["רָקַק","râqaq","raw-kak'","A primitive root; to spit: - spit."]},{"k":"H7557","v":["רַקַּת","Raqqath","rak-kath'","From H7556 in its original sense of diffusing; a beach (as expanded shingle); Rakkath, a place in Palestine: - Rakkath."]},{"k":"H7558","v":["רִשְׁיוֹן","rishyôwn","rish-yone'","From an unused root meaning to have leave; a permit: - grant."]},{"k":"H7559","v":["רָשַׁם","râsham","raw-sham'","A primitive root; to record: - note."]},{"k":"H7560","v":["רְשַׁם","rᵉsham","resh-am'","(Chaldee); corresponding to H7559: - sign, write."]},{"k":"H7561","v":["רָשַׁע","râshaʻ","raw-shah'","A primitive root; to be (causatively do or declare) wrong; by implication to disturb, violate: - condemn, make trouble, vex, be (commit, deal, depart, do) wicked (-ly, -ness)."]},{"k":"H7562","v":["רֶשַׁע","reshaʻ","reh'-shah","From H7561; a wrong (especially moral): - iniquity, wicked(-ness)."]},{"k":"H7563","v":["רָשָׁע","râshâʻ","raw-shaw'","From H7561; morally wrong; concretely an (actively) bad person: -    + condemned, guilty, ungodly, wicked (man), that did wrong."]},{"k":"H7564","v":["רִשְׁעָה","rishʻâh","rish-aw'","Feminine of H7562; wrong (especially moral): - fault, wickedly (-ness)."]},{"k":"H7565","v":["רֶשֶׁף","resheph","reh'-shef","From H8313; a live coal; by analogy lightning; figuratively an arrow (as flashing through the air); specifically fever: - arrow, (burning) coal, burning heat, + spark, hot thunderbolt."]},{"k":"H7566","v":["רֶשֶׁף","Resheph","reh'-shef","The same as H7565; Resheph, an Israelite: - Resheph."]},{"k":"H7567","v":["רָשַׁשׁ","râshash","raw-shash'","A primitive root; to demolish: - impoverish."]},{"k":"H7568","v":["רֶשֶׁת","resheth","reh'-sheth","From H3423; a net (as catching animals): - net [-work]."]},{"k":"H7569","v":["רַתּוֹק","rattôwq","rat-toke'","From H7576; a chain: - chain."]},{"k":"H7570","v":["רָתַח","râthach","raw-thakh'","A primitive root; to boil: - boil."]},{"k":"H7571","v":["רֶתַח","rethach","reh'-thakh","From H7570; a boiling: - X [boil] well."]},{"k":"H7572","v":["רַתִּיקָה","rattîyqâh","rat-tee-kaw'","From H7576; a chain: - chain."]},{"k":"H7573","v":["רָתַם","râtham","raw-tham'","A primitive root; to yoke up (to the pole of a vehicle): - bind."]},{"k":"H7574","v":["רֶתֶם","rethem","reh'-them","From H7573; the Spanish broom (from its pole like stems): - juniper (tree)."]},{"k":"H7575","v":["רִתְמָה","Rithmâh","rith-maw'","Feminine of H7574; Rithmah, a place in the Desert: - Rithmah."]},{"k":"H7576","v":["רָתַק","râthaq","raw-thak'","A primitive root; to fasten: - bind."]},{"k":"H7577","v":["רְתֻקָה","rᵉthuqâh","reth-oo-kaw'","Feminine passive participle of H7576; something fastened, that is, a chain: - chain."]},{"k":"H7578","v":["רְתֵת","rᵉthêth","reth-ayth'","For H7374; terror: - trembling."]},{"k":"H7579","v":["שָׁאַב","shâʼab","sahw-ab'","A primitive root; to bale up water: - (woman to) draw (-er, water)."]},{"k":"H7580","v":["שָׁאַג","shâʼag","shaw-ag'","A primitive root; to rumble or moan: -  X mightily, roar."]},{"k":"H7581","v":["שְׁאָגָה","shᵉʼâgâh","sheh-aw-gaw'","From H7580; a rumbling or moan: -  roaring."]},{"k":"H7582","v":["שָׁאָה","shâʼâh","shaw-aw'","A primitive root; to rush; by implication to desolate: - be desolate, (make a) rush (-ing), (lay) waste."]},{"k":"H7583","v":["שָׁאָה","shâʼâh","shaw-aw'","A primitive root (rather identical with H7582 through the idea of whirling to giddiness); to stun, that is, (intransitively) be astonished: - wonder."]},{"k":"H7584","v":["שַׁאֲוָה","shaʼăvâh","shah-av-aw'","From H7582; a tempest (as rushing): - desolation."]},{"k":"H7585","v":["שְׁאוֹל","shᵉʼôwl","sheh-ole'","From H7592; hades or the world of the dead (as if a subterranian retreat), including its accessories and inmates: - grave, hell, pit."]},{"k":"H7586","v":["שָׁאוּל","Shâʼûwl","shaw-ool'","Passive participle of H7592; asked; Shaul, the name of an Edomite and two Israelites: - Saul, Shaul."]},{"k":"H7587","v":["שָׁאוּלִי","Shâʼûwlîy","shaw-oo-lee'","Patronymic from H7856; a Shaulite or descendant of Shaul: - Shaulites."]},{"k":"H7588","v":["שָׁאוֹן","shâʼôwn","shaw-one'","From H7582; uproar (as of rushing); by implication destruction: -  X horrible, noise, pomp, rushing, tumult (X -uous)."]},{"k":"H7589","v":["שְׁאָט","shᵉʼâṭ","sheh-awt'","From an unused root meaning to push aside; contempt: - despite (-ful)."]},{"k":"H7590","v":["שָׁאט","shâʼṭ","shawt","For active participle of H7750 (compare H7589); one contemning: - that (which) despise (-d)."]},{"k":"H7591","v":["שְׁאִיָּה","shᵉʼîyâh","sheh-ee-yaw'","From H7582; desolation: - destruction."]},{"k":"H7592","v":["שָׁאַל","shâʼal","shaw-al'","A primitive root; to inquire; by implication to request; by extension to demand: - ask (counsel, on), beg, borrow, lay to charge, consult, demand, desire, X earnestly, enquire, + greet, obtain leave, lend, pray, request, require, + salute, X straitly, X surely, wish."]},{"k":"H7593","v":["שְׁאֵל","shᵉʼêl","sheh-ale'","(Chaldee); corresponding to H7592: - ask, demand, require."]},{"k":"H7594","v":["שְׁאָל","Shᵉʼâl","sheh-awl'","From H7592; request; Sheal, an Israelite: - Sheal."]},{"k":"H7595","v":["שְׁאֵלָא","shᵉʼêlâʼ","sheh-ay-law'","(Chaldee); from H7593; properly a question (at law), that is, judicial decision or mandate: - demand."]},{"k":"H7596","v":["שְׁאֵלָה","shᵉʼêlâh","sheh-ay-law'","From H7592; a petition; by implication a loan: - loan, petition, request."]},{"k":"H7597","v":["שְׁאַלְתִּיאֵל","Shᵉʼaltîyʼêl","sheh-al-tee-ale'","From H7592 and H410; I have asked God; Shealtiel, an Israelite: - Shalthiel, Shealtiel."]},{"k":"H7598","v":["שְׁאַלְתִּיאֵל","Shᵉʼaltîyʼêl","sheh-al-tee-ale'","(Chaldee); corresponding to H7597: - Shealtiel."]},{"k":"H7599","v":["שָׁאַן","shâʼan","shaw-an'","A primitive root; to loll, that is, be peaceful: - be at ease, be quiet, rest. See also H1052."]},{"k":"H7600","v":["שַׁאֲנָן","shaʼănân","shah-an-awn'","From H7599; secure; in a bad sense, haughty: - that is at ease, quiet, tumult. Compare H7946."]},{"k":"H7601","v":["שָׁאַס","shâʼaç","shaw-as'","A primitive root; to plunder: - spoil."]},{"k":"H7602","v":["שָׁאַף","shâʼaph","shaw-af'","A primitive root; to inhale eagerly; figuratively to covet; by implication to be angry; also to hasten: - desire (earnestly), devour, haste, pant, snuff up, swallow up."]},{"k":"H7603","v":["שְׂאֹר","sᵉʼôr","seh-ore'","From H7604; barm or yeast cake (as swelling by fermentation): - leaven."]},{"k":"H7604","v":["שָׁאַר","shâʼar","shaw-ar'","A primitive root; properly to swell up, that is, be (causatively make) redundant: - leave, (be) left, let, remain, remnant, reserve, the rest."]},{"k":"H7605","v":["שְׁאָר","shᵉʼâr","sheh-awr'","From H7604; a remainder: -  X other, remnant, residue, rest."]},{"k":"H7606","v":["שְׁאָר","shᵉʼâr","sheh-awr'","(Chaldee); corresponding to H7605: -    X whatsoever more, residue, rest."]},{"k":"H7607","v":["שְׁאֵר","shᵉʼêr","sheh-ayr'","From H7604; flesh (as swelling out), as living or for food; generally food of any kind; figuratively kindred by blood: - body, flesh, food, (near) kin (-sman, -swoman), near (nigh) [of kin]"]},{"k":"H7608","v":["שַׁאֲרָה","shaʼărâh","shah-ar-aw'","Feminine of H7607; female kindred by blood: - near kinswomen."]},{"k":"H7609","v":["שֶׁאֱרָה","Sheʼĕrâh","sheh-er-aw'","The same as H7608; Sheerah, an Israelitess: - Sherah."]},{"k":"H7610","v":["שְׁאָר יָשׁוּב","Shᵉʼâr Yâshûwb","sheh-awr'yaw-shoob'","From H7605 and H7725; a remnant will return; Shear-Jashub, the symbolical name of one of Isaiah’s sons: - Shear-jashub."]},{"k":"H7611","v":["שְׁאֵרִית","shᵉʼêrîyth","sheh-ay-reeth'","From H7604; a remainder or residual (surviving, final) portion: - that had escaped, be left, posterity, remain (-der), remnant, residue, rest."]},{"k":"H7612","v":["שֵׁאת","shêʼth","shayth","From H7582; devastation: - desolation."]},{"k":"H7613","v":["שְׂאֵת","sᵉʼêth","seh-ayth'","From H5375; an elevation or leprous scab; figuratively elation or cheerfulness; exaltation in rank or character: - be accepted, dignity, excellency, highness, raise up self, rising."]},{"k":"H7614","v":["שְׁבָא","Shᵉbâʼ","sheb-aw'","Of foreign origin; Sheba, the name of three early progenitors of tribes and of an Ethiopian district: - Sheba, Sabeans."]},{"k":"H7615","v":["שְׁבָאִי","Shᵉbâʼîy","sheb-aw-ee'","Patronymic from H7614; a Shebaite or descendant of Sheba: - Sabean."]},{"k":"H7616","v":["שָׁבָב","shâbâb","shaw-bawb'","From an unused root meaning to break up; a fragment, that is, ruin: - broken in pieces."]},{"k":"H7617","v":["שָׁבָה","shâbâh","shaw-baw'","A primitive root; to transport into captivity: - (bring away, carry, carry away, lead, lead away, take) captive (-s), drive (take) away."]},{"k":"H7618","v":["שְׁבוּ","shᵉbûw","sheb-oo'","From an unused root (probably identical with that of H7617 through the idea of subdivision into flashes or streamers (compare H7632)) meaning to flame; a gem (from its sparkle), probably the agate: - agate."]},{"k":"H7619","v":["שְׁבוּאֵל","Shᵉbûwʼêl","sheb-oo-ale'","From H7617 (abbreviated) or H7725 and H410; captive (or returned) of God; Shebuel or Shubael, the name of two Israelites: - Shebuel, Shubael."]},{"k":"H7620","v":["שָׁבוּעַ","shâbûwaʻ","shaw-boo'-ah","Properly passive participle of H7650 as a denominative of H7651; literally sevened, that is, a week (specifically of years): - seven, week."]},{"k":"H7621","v":["שְׁבוּעָה","shᵉbûwʻâh","sheb-oo-aw'","Feminine passive participle of H7650; properly something sworn, that is, an oath: - curse, oath, X sworn."]},{"k":"H7622","v":["שְׁבוּת","shᵉbûwth","sheb-ooth'","From H7617; exile; concretely prisoners; figuratively a former state of prosperity: - captive (-ity)."]},{"k":"H7623","v":["שָׁבַח","shâbach","shaw-bakh'","A primitive root; properly to address in a loud tone, that is, (specifically) loud; figuratively to pacify (as if by words): - commend, glory, keep in, praise, still, triumph."]},{"k":"H7624","v":["שְׁבַח","shᵉbach","sheb-akh'","(Chaldee); corresponding to H7623; to adulate, that is, adore: - praise."]},{"k":"H7625","v":["שְׁבַט","shᵉbaṭ","sheb-at'","(Chaldee); corresponding to H7626; a clan: - tribe."]},{"k":"H7626","v":["שֵׁבֶט","shêbeṭ","shay'-bet","From an unused root probably meaning to branch off; a scion, that is, (literally) a stick (for punishing, writing, fighting, ruling, walking, etc.) or (figuratively) a clan: -  X correction, dart, rod, sceptre, staff, tribe."]},{"k":"H7627","v":["שְׁבָט","Shᵉbâṭ","sheb-awt'","Of foreign origin; Shebat, a Jewish month: - Sebat."]},{"k":"H7628","v":["שְׁבִי","shᵉbîy","sheb-ee'","From H7618; exiled; captured; as noun, exile (abstractly or concretely and collectively); by extension booty: - captive (-ity), prisoners, X take away, that was taken."]},{"k":"H7629","v":["שֹׁבִי","Shôbîy","sho-bee'","From H7617; captor; Shobi, an Ammonite: - Shobi."]},{"k":"H7630","v":["שֹׁבַי","Shôbay","sho-bah'-ee","For H7629; Shobai, an Israelite: - Shobai."]},{"k":"H7631","v":["שְׂבִיב","sᵉbîyb","seb-eeb'","(Chaldee); corresponding to H7632: - flame."]},{"k":"H7632","v":["שָׁבִיב","shâbîyb","shaw-beeb'","From the same as H7616; flame (as split into tongues): - spark."]},{"k":"H7633","v":["שִׁבְיָה","shibyâh","shib-yaw'","Feminine of H7628; exile (abstractly or concretely and collectively): - captives (-ity)."]},{"k":"H7634","v":["שׇׁבְיָה","Shobyâh","shob-yaw'","Feminine of the same as H7629; captivation; Shobjah, an Israelite: - Shachia [from the margin]."]},{"k":"H7635","v":["שָׁבִיל","shâbîyl","shaw-beel'","From the same as H7640; a track or passage way (as if flowing along): - path."]},{"k":"H7636","v":["שָׁבִיס","shâbîyç","shaw-beece'","From an unused root meaning to interweave; a netting for the hair: - caul."]},{"k":"H7637","v":["שְׁבִיעִי","shᵉbîyʻîy","sheb-ee-ee'","Ordinal from H7657; seventh: - seventh (time)."]},{"k":"H7638","v":["שָׂבָךְ","sâbâk","saw-bawk'","From an unused root meaning to intwine; a netting (ornament to the capital of a column): - net."]},{"k":"H7639","v":["שְׂבָכָה","sᵉbâkâh","seb-aw-kaw'","Feminine of H7638; a net work, that is, (in hunting) a snare, (in architecture) a ballustrade; also a reticulated ornament to a pillar: - checker, lattice, network, snare, wreath (-enwork)."]},{"k":"H7640","v":["שֹׁבֶל","shôbel","show'-bel","From an unused root meaning to flow; a lady’s train (as trailing after her): - leg."]},{"k":"H7641","v":["שִׁבֹּל","shibbôl","shib-bole","From the same as H7640; a stream (as flowing); also an ear of grain (as growing out); by analogy a branch: - branch, channel, ear (of corn), ([water-]) flood, Shibboleth. Compare H5451."]},{"k":"H7642","v":["שַׁבְלוּל","shablûwl","shab-lool'","From the same as H7640; a snail (as if floating in its own slime): - snail."]},{"k":"H7643","v":["שְׂבָם","Sᵉbâm","seb-awm'","Probably from H1313; spice; Sebam or Sibmah, a place in Moab: - Shebam, Shibmah, Sibmah."]},{"k":"H7644","v":["שֶׁבְנָא","Shebnâʼ","sheb-naw'","From an unused root meaning to grow; growth; Shebna or Shebnah, an Israelite: - Shebna, Shebnah."]},{"k":"H7645","v":["שְׁבַנְיָה","Shᵉbanyâh","sheb-an-yaw'","From the same as H7644 and H3050; Jah has grown (that is, prospered); Shebanjah, the name of three or four Israelites: - Shebaniah."]},{"k":"H7646","v":["שָׂבַע","sâbaʻ","saw-bah'","A primitive root; to sate, that is, fill to satisfaction (literally or figuratively): - have enough, fill (full, self, with), be (to the) full (of), have plenty of, be satiate, satisfy (with), suffice, be weary of."]},{"k":"H7647","v":["שָׂבָע","sâbâʻ","saw-baw'","From H7646; copiousness: - abundance, plenteous (-ness, -ly)."]},{"k":"H7648","v":["שֹׂבַע","sôbaʻ","so'-bah","From H7646; satisfaction (of food or (figuratively) joy): - fill, full (-ness), satisfying, be satisfied."]},{"k":"H7649","v":["שָׂבֵעַ","sâbêaʻ","saw-bay'-ah","From H7646; satiated (in a pleasant or disagreeable sense): - full (of), satisfied (with)."]},{"k":"H7650","v":["שָׁבַע","shâbaʻ","shaw-bah'","A primitive root; properly to be complete, but used only as a denominative from H7651; to seven oneself, that is, swear (as if by repeating a declaration seven times): - adjure, charge (by an oath, with an oath), feed to the full [by mistake for H7646], take an oath, X straitly, (cause to, make to) swear."]},{"k":"H7651","v":["שֶׁבַע","shebaʻ","sheh'-bah","From H7650; a primitive cardinal number; seven (as the sacred full one); also (adverbially) seven times; by implication a week; by extension an indefinite number: -    (+ by) seven ([-fold], -s, [-teen, -teenth], -th, times). Compare H7658."]},{"k":"H7652","v":["שֶׁבַע","shebaʻ","sheh'-bah","The same as H7651; seven; Sheba, the name of a place in Palestine, and of two Israelites: - Sheba."]},{"k":"H7653","v":["שִׂבְעָה","sibʻâh","sib-aw'","Feminine of H7647; satiety: - fulness."]},{"k":"H7654","v":["שׇׂבְעָה","sobʻâh","sob-aw'","Feminine of H7648; satiety: - (to have) enough, X till . . . be full, [un-] satiable, satisfy, X sufficiently."]},{"k":"H7655","v":["שִׁבְעָה","shibʻâh","shib-aw'","(Chaldee); corresponding to H7651: - seven (times)."]},{"k":"H7656","v":["שִׁבְעָה","Shibʻâh","shib-aw'","Masculine of H7651; seven (seventh); Shebah, a well in Palestine: - Shebah."]},{"k":"H7657","v":["שִׁבְעִים","shibʻîym","shib-eem'","Multiple of H7651; seventy: - seventy, threescore and ten (+ -teen)."]},{"k":"H7658","v":["שִׁבְעָנָה","shibʻânâh","shib-aw-naw'","Prolonged for the masculine of H7651; seven: - seven."]},{"k":"H7659","v":["שִׁבְעָתַיִם","shibʻâthayim","shib-aw-thah'-yim","Dual (adverb) of H7651; seven times: - seven (-fold, times)."]},{"k":"H7660","v":["שָׁבַץ","shâbats","shaw-bats'","A primitive root; to interweave (colored) threads in squares; by implication (of reticulation) to inchase gems in gold: - embroider, set."]},{"k":"H7661","v":["שָׁבָץ","shâbâts","shaw-bawts'","From H7660; intanglement, that is, (figuratively) perplexity: - anguish."]},{"k":"H7662","v":["שְׁבַק","shᵉbaq","sheb-ak'","(Chaldee); corresponding to the root of H7733; to quit, that is, allow to remain: - leave, let alone."]},{"k":"H7663","v":["שָׂבַר","sâbar","saw-bar'","The second form being used erroneously in Neh_2:13, Neh_2:15; a primitive root; to scrutinize; by implication (of watching) to expect (with hope and patience): - hope, tarry, view, wait."]},{"k":"H7664","v":["שֵׂבֶר","sêber","say'-ber","From H7663; expectation: - hope."]},{"k":"H7665","v":["שָׁבַר","shâbar","shaw-bar'","A primitive root; to burst (literally or figuratively): - break (down, off, in pieces, up), broken ([-hearted]), bring to the birth, crush, destroy, hurt, quench, X quite, tear, view [by mistake for H7663]."]},{"k":"H7666","v":["שָׁבַר","shâbar","shaw-bar'","Denominative from H7668; to deal in grain: - buy, sell."]},{"k":"H7667","v":["שֶׁבֶר","sheber","sheh'-ber","From H7665; a fracture, figuratively ruin; specifically a solution (of a dream): - affliction, breach, breaking, broken [-footed, -handed], bruise, crashing, destruction, hurt, interpretation, vexation."]},{"k":"H7668","v":["שֶׁבֶר","sheber","sheh'-ber","The same as H7667; grain (as if broken into kernels): - corn, victuals."]},{"k":"H7669","v":["שֶׁבֶר","Sheber","sheh'-ber","The same as H7667; Sheber, an Israelite: - Sheber."]},{"k":"H7670","v":["שִׁבְרוֹן","shibrôwn","shib-rone'","From H7665; rupture, that is, a pang; figuratively ruin: - breaking, destruction."]},{"k":"H7671","v":["שְׁבָרִים","Shᵉbârîym","sheb-aw-reem'","Plural of H7667; ruins; Shebarim, a place in Palestine: - Shebarim."]},{"k":"H7672","v":["שְׁבַשׁ","shᵉbash","sheb-ash'","(Chaldee); corresponding to H7660; to intangle, that is, perplex: - be astonished."]},{"k":"H7673","v":["שָׁבַת","shâbath","shaw-bath'","A primitive root; to repose, that is, desist from exertion; used in many implied relations (causatively, figuratively or specifically): - (cause to, let, make to) cease, celebrate, cause (make) to fail, keep (sabbath), suffer to be lacking, leave, put away (down), (make to) rest, rid, still, take away."]},{"k":"H7674","v":["שֶׁבֶת","shebeth","sheh'-beth","From H7673; rest, interruption, cessation: - cease, sit still, loss of time."]},{"k":"H7675","v":["שֶׁבֶת","shebeth","sheh'-beth","Infinitive of H3427; properly session; but used also concretely, an abode or locality. Comapre H3429: - place, seat. Compare H3429."]},{"k":"H7676","v":["שַׁבָּת","shabbâth","shab-bawth'","Intensive from H7673; intermission, that is, (specifically) the Sabbath: -  (+ every) sabbath."]},{"k":"H7677","v":["שַׁבָּתוֹן","shabbâthôwn","shab-baw-thone'","From H7676; a sabbatism or special holiday: - rest, sabbath."]},{"k":"H7678","v":["שַׁבְּתַי","Shabbᵉthay","shab-beth-ah'-ee","From H7676; restful; Shabbethai, the name of three Israelites: - Shabbethai."]},{"k":"H7679","v":["שָׂגָא","sâgâʼ","saw-gaw'","A primitive root; to grow, that is, (causatively) to enlarge, (figuratively) laud: - increase, magnify."]},{"k":"H7680","v":["שְׂגָא","sᵉgâʼ","seg-aw'","(Chaldee); corresponding to H7679; to increase: - grow, be multiplied."]},{"k":"H7681","v":["שָׁגֶא","Shâgeʼ","shaw-gay'","Probably from H7686; erring; Shage, an Israelite: - Shage."]},{"k":"H7682","v":["שָׂגַב","sâgab","saw-gab'","A primitive root; to be (causatively make) lofty, especially inaccessible; by implication safe, strong; used literally and figuratively: - defend, exalt, be excellent, (be, set on) high, lofty, be safe, set up (on high), be too strong."]},{"k":"H7683","v":["שָׁגַג","shâgag","shaw-gag'","A primitive root; to stray, that is, (figuratively) sin (with more or less apology): -    X also for that, deceived, err, go astray, sin ignorantly."]},{"k":"H7684","v":["שְׁגָגָה","shᵉgâgâh","sheg-aw-gaw'","From H7683; a mistake or inadvertent transgression: - error, ignorance, at unawares, unwittingly."]},{"k":"H7685","v":["שָׂגָה","sâgâh","saw-gaw'","A primitive root; to enlarge (especially upward, also figuratively): - grow (up), increase."]},{"k":"H7686","v":["שָׁגָה","shâgâh","shaw-gaw'","A primitive root; to stray (causatively mislead), usually (figuratively) to mistake, especially (morally) to transgress; by extension (through the idea of intoxication) to reel, (figuratively) be enraptured: - (cause to) go astray, deceive, err, be ravished, sin through ignorance, (let, make to) wander."]},{"k":"H7687","v":["שְׂגוּב","Sᵉgûwb","seg-oob'","From H7682; aloft; Segub, the name of two Israelites: - Segub."]},{"k":"H7688","v":["שָׁגַח","shâgach","shaw-gakh'","A primitive root; to peep, that is, glance sharply at: - look (narrowly)."]},{"k":"H7689","v":["שַׂגִּיא","saggîyʼ","sag-ghee'","From H7679; (superlatively) mighty: - excellent, great."]},{"k":"H7690","v":["שַׂגִּיא","saggîyʼ","sag-ghee'","H3 (Chaldee); corresponding to H7689; large (in size, quantity or number, also adverbially): - exceeding, great (-ly), many, much, sore, very."]},{"k":"H7691","v":["שְׁגִיאָה","shᵉgîyʼâh","sheg-ee-aw'","From H7686; a moral mistake: - error."]},{"k":"H7692","v":["שִׁגָּיוֹן","shiggâyôwn","shig-gaw-yone'","From H7686; properly aberration, that is, (technically) a dithyramb or rambling poem: - Shiggaion, Shigio-noth."]},{"k":"H7693","v":["שָׁגַל","shâgal","shaw-gal'","A primitive root; to copulate with: - lie with, ravish."]},{"k":"H7694","v":["שֵׁגָל","shêgâl","shay-gawl'","From H7693; a queen (from cohabitation): - queen."]},{"k":"H7695","v":["שֵׁגָל","shêgâl","shay-gawl'","(Chaldee); corresponding to H7694; a (legitimate) queen: - wife."]},{"k":"H7696","v":["שָׁגַע","shâgaʻ","shaw-gah'","A primitive root; to rave through insanity: - (be, play the) mad (man)."]},{"k":"H7697","v":["שִׁגָּעוֹן","shiggâʻôwn","shig-gaw-yone'","From H7696; craziness: - furiously, madness."]},{"k":"H7698","v":["שֶׁגֶר","sheger","sheh'-ger","From an unused root probably meaning to eject; the foetus (as finally expelled): - that cometh of, increase."]},{"k":"H7699","v":["שַׁד","shad","shad","Probably from H7736 (in its original sense) contracted; the breast of a woman or animal (as bulging): - breast, pap, teat."]},{"k":"H7700","v":["שֵׁד","shêd","shade","From H7736; a daemon (as malignant): - devil."]},{"k":"H7701","v":["שֹׁד","shôd","shode","From H7736; violence, ravage: - desolation, destruction, oppression, robbery, spoil (-ed, -er, -ing), wasting."]},{"k":"H7702","v":["שָׂדַד","sâdad","saw-dad'","A primitive root; to abrade, that is, harrow a field: - break clods, harrow."]},{"k":"H7703","v":["שָׁדַד","shâdad","shaw-dad'","A primitive root; properly to be burly, that is, (figuratively) powerful (passively impregnable); by implication to ravage: - dead, destroy (-er), oppress, robber, spoil (-er), X utterly, (lay) waste."]},{"k":"H7704","v":["שָׂדֶה","sâdeh","saw-deh'","From an unused root meaning to spread out; a field (as flat): - country, field, ground, land, soil, X wild."]},{"k":"H7705","v":["שִׁדָּה","shiddâh","shid-dah'","From H7703; a wife (as mistress of the house): - X all sorts, musical instrument."]},{"k":"H7706","v":["שַׁדַּי","Shadday","shad-dah'-ee","From H7703; the Almighty: - Almighty."]},{"k":"H7707","v":["שְׁדֵיאוּר","Shᵉdêyʼûwr","shed-ay-oor'","From the same as H7704 and H217; spreader of light; Shedejur, an Israelite: - Shedeur."]},{"k":"H7708","v":["שִׂדִּים","Siddîym","sid-deem'","Plural from the same as H7704; flats; Siddim, a valley in Palestine: - Siddim."]},{"k":"H7709","v":["שְׁדֵמָה","shᵉdêmâh","shed-ay-maw'","Apparently from H7704; a cultivated field: - blasted, field."]},{"k":"H7710","v":["שָׁדַף","shâdaph","shaw-daf'","A primitive root; to scorch: - blast."]},{"k":"H7711","v":["שְׁדֵפָה","shᵉdêphâh","shed-ay-faw'","From H7710; blight: - blasted (-ing)."]},{"k":"H7712","v":["שְׁדַר","shᵉdar","shed-ar'","(Chaldee); a primitive root; to endeavor: - labour."]},{"k":"H7713","v":["שְׂדֵרָה","sᵉdêrâh","sed-ay-raw'","From an unused root meaning to regulate; a row, that is, rank (of soldiers), story (of rooms): - board, range."]},{"k":"H7714","v":["שַׁדְרַךְ","Shadrak","shad-rak'","Probably of foreign origin; Shadrak, the Babylonian name of one of Daniel’s companions: - Shadrach."]},{"k":"H7715","v":["שַׁדְרַךְ","Shadrak","shad-rak'","(Chaldee); the same as H7714: - Shadrach."]},{"k":"H7716","v":["שֶׂה","seh","seh","Probably from H7582 through the idea of pushing out to graze; a member of a flock, that is, a sheep or goat: - (lesser, small) cattle, ewe, lamb, sheep."]},{"k":"H7717","v":["שָׂהֵד","sâhêd","saw-hade'","From an unused root meaning to testify; a witness: - record."]},{"k":"H7718","v":["שֹׁהַם","shôham","sho'-ham","From an unused root probably meaning to blanch; a gem, probably the beryl (from its pale green color): - onyx."]},{"k":"H7719","v":["שֹׁהַם","Shôham","sho'-ham","The same as H7718; Shoham, an Israelite: - Shoham."]},{"k":"H7720","v":["שַׂהֲרֹן","sahărôn","sah-har-one'","From the same as H5469; a round pendant for the neck: - ornament, round tire like the moon."]},{"k":"H7721","v":["שׂוֹא","sôwʼ","so","From an unused root (akin to H5375 and H7722) meaning to rise; a rising: - arise."]},{"k":"H7722","v":["שׁוֹא","shôwʼ","sho","From an unused root meaning to rush over; a tempest; by implication devastation: - desolate (-ion), destroy, destruction, storm, wasteness."]},{"k":"H7723","v":["שָׁוְא","shâvᵉʼ","shawv","From the same as H7722 in the sense of desolating; evil (as destructive), literally (ruin) or morally (especially guile); figuratively idolatry (as false, subjectively), uselessness (as deceptive, objectively; also adverbially in vain): - false (-ly), lie, lying, vain, vanity."]},{"k":"H7724","v":["שְׁוָא","Shᵉvâʼ","shev-aw'","From the same as H7723; false; Sheva, an Israelite: - Sheva."]},{"k":"H7725","v":["שׁוּב","shûwb","shoob","A primitive root; to turn back (hence, away) transitively or intransitively, literally or figuratively (not necessarily with the idea of return to the starting point); generally to retreat; often adverbially again: -  ([break, build, circumcise, dig, do anything, do evil, feed, lay down, lie down, lodge, make, rejoice, send, take, weep]) X again, (cause to) answer (+ again), X in any case (wise), X at all, averse, bring (again, back, home again), call [to mind], carry again (back), cease, X certainly, come again (back) X consider, + continually, convert, deliver (again), + deny, draw back, fetch home again, X fro, get [oneself] (back) again, X give (again), go again (back, home), [go] out, hinder, let, [see] more, X needs, be past, X pay, pervert, pull in again, put (again, up again), recall, recompense, recover, refresh, relieve, render (again), X repent, requite, rescue, restore, retrieve, (cause to, make to) return, reverse, reward, + say nay, send back, set again, slide back, still, X surely, take back (off), (cause to, make to) turn (again, self again, away, back, back again, backward, from, off), withdraw."]},{"k":"H7726","v":["שׁוֹבָב","shôwbâb","sho-bawb'","From H7725; apostate, that is, idolatrous: - backsliding, frowardly, turn away [from margin]."]},{"k":"H7727","v":["שׁוֹבָב","Shôwbâb","sho-bawb'","The same as H7726; rebellious; Shobab, the name of two Israelites: - Shobab."]},{"k":"H7728","v":["שׁוֹבֵב","shôwbêb","sho-babe'","From H7725; apostate, that is, heathenish or (actually) heathen: - backsliding."]},{"k":"H7729","v":["שׁוּבָה","shûwbâh","shoo-baw'","From H7725; a return: - returning."]},{"k":"H7730","v":["שׂוֹבֶךְ","sôwbek","so'-bek","From H5441; a thicket, that is, interlaced branches: - thick boughs."]},{"k":"H7731","v":["שׁוֹבָךְ","Shôwbâk","sho-bawk'","Perhaps for H7730; Shobak, a Syrian: - Shobach."]},{"k":"H7732","v":["שׁוֹבָל","Shôwbâl","sho-bawl'","From the same as H7640; overflowing; Shobal, the name of an Edomite and two Israelites: - Shobal."]},{"k":"H7733","v":["שׁוֹבֵק","Shôwbêq","sho-bake'","Active participle from a primitive root meaning to leave (compare H7662); forsaking; Shobek, an Israelite: - Shobek."]},{"k":"H7734","v":["שׂוּג","sûwg","soog","A primitive root; to retreat: - turn back."]},{"k":"H7735","v":["שׂוּג","sûwg","soog","A primitive root; to hedge in: - make to grow."]},{"k":"H7736","v":["שׁוּד","shûwd","shood","A primitive root; properly to swell up, that is, figuratively (by implication of insolence) to devastate: - waste."]},{"k":"H7737","v":["שָׁוָה","shâvâh","shaw-vaw'","A primitive root; properly to level, that is, equalize; figuratively to resemble; by implication to adjust (that is, counterbalance, be suitable, compose, place, yield, etc.): - avail, behave, bring forth, compare, countervail, (be, make) equal, lay, be (make, a-) like, make plain, profit, reckon."]},{"k":"H7738","v":["שָׁוָה","shâvâh","shaw-vaw'","A primitive root; to destroy: -  X substance [from the margin]."]},{"k":"H7739","v":["שְׁוָה","shᵉvâh","shev-aw'","(Chaldee); corresponding to H7737; to resemble: - make like."]},{"k":"H7740","v":["שָׁוֵה","Shâvêh","shaw-vay'","From H7737; plain; Shaveh, a place in Palestine: - Shaveh."]},{"k":"H7741","v":["שָׁוֵה קִרְיָתַיִם","Shâvêh Qiryâthayim","shaw-vay' kir-yawthah'-yim","From the same as H7740 and the dual of H7151; plain of a double city; Shaveh Kirjathajim, a place East of the Jordan: - Shaveh Kiriathaim."]},{"k":"H7742","v":["שׂוּחַ","sûwach","soo'-akh","A primitive root; to muse pensively: - meditate."]},{"k":"H7743","v":["שׁוּחַ","shûwach","shoo'-akh","A primitive root; to sink, literally or figuratively: - bow down, incline, humble."]},{"k":"H7744","v":["שׁוּחַ","Shûwach","shoo'-akh","From H7743; dell; Shuach, a son of Abraham: - Shuah."]},{"k":"H7745","v":["שׁוּחָה","shûwchâh","shoo-khaw'","From H7743; a chasm: - ditch, pit."]},{"k":"H7746","v":["שׁוּחָה","Shûwchâh","shoo-khaw'","The same as H7745; Shuchah, an Israelite: - Shuah."]},{"k":"H7747","v":["שׁוּחִי","Shûwchîy","shoo-khee'","Patronymic from H7744; a Shuchite or descendant of Shuach: - Shuhite."]},{"k":"H7748","v":["שׁוּחָם","Shûwchâm","shoo-khawm'","From H7743; humbly; Shucham, an Israelite: - Shuham."]},{"k":"H7749","v":["שׁוּחָמִי","Shûwchâmîy","shoo-khaw-mee'","Patronymic from H7748; a Shuchamite (collectively): - Shuhamites."]},{"k":"H7750","v":["שׂוּט","sûwṭ","soot","A primitive root; to detrude, that is, (intransitively and figuratively) become derelict (wrongly practise; namely, idolatry): - turn aside to."]},{"k":"H7751","v":["שׁוּט","shûwṭ","shoot","A primitive root; properly to push forth; (but used only figuratively) to lash, that is, (the sea with oars) to row; by implication to travel: - go (about, through, to and fro), mariner, rower, run to and fro."]},{"k":"H7752","v":["שׁוֹט","shôwṭ","shote","From H7751; a lash (literally or figuratively): - scourge, whip."]},{"k":"H7753","v":["שׂוּךְ","sûwk","sook","A primitive root; to entwine, that is, shut in (for formation, protection or restraint): - fence. (make an) hedge (up)."]},{"k":"H7754","v":["שׂוֹךְ","sôwk","soke","The second form being feminine; from H7753; a branch (as interleaved): - bough."]},{"k":"H7755","v":["שׂוֹכֹה","Sôwkôh","so-ko'","From H7753; Sokoh or Soko, the name of two places in Palestine: - Shocho, Shochoh, Sochoh, Soco, Socoh."]},{"k":"H7756","v":["שׂוּכָתִי","Sûwkâthîy","soo-kaw-thee'","Probably patronymic from a name corresponding to H7754 (feminine); a Sukathite or descendant of an unknown Israelite named Sukah: - Suchathite."]},{"k":"H7757","v":["שׁוּל","shûwl","shool","From an unused root meaning to hang down; a skirt; by implication a bottom edge: - hem, skirt, train."]},{"k":"H7758","v":["שׁוֹלָל","shôwlâl","sho-lawl'","The second form being used in Mic_1:8; from H7997; nude (especially bare foot); by implication captive: - spoiled, stripped."]},{"k":"H7759","v":["שׁוּלַמִּית","Shûwlammîyth","shoo-lam-meeth'","From H7999; peaceful (with the article always prefixed, making it a pet name); the Shulammith, an epithet of Solomon’s queen: - Shulamite."]},{"k":"H7760","v":["שׂוּם","sûwm","soom","A primitive root; to put (used in a great variety of applications, literally, figuratively, inferentially and elliptically): -    X any wise, appoint, bring, call [a name], care, cast in, change, charge, commit, consider, convey, determine, + disguise, dispose, do, get, give, heap up, hold, impute, lay (down, up), leave, look, make (out), mark, + name, X on, ordain, order, + paint, place, preserve, purpose, put (on), + regard, rehearse, reward, (cause to) set (on, up), shew, + stedfastly, take, X tell, + tread down, ([over-]) turn, X wholly, work."]},{"k":"H7761","v":["שׂוּם","sûwm","soom","(Chaldee); corresponding to H7760: -    + command, give, lay, make, + name, + regard, set."]},{"k":"H7762","v":["שׁוּם","shûwm","shoom","From an unused root meaning to exhale; garlic (from its rank odor): - garlic."]},{"k":"H7763","v":["שׁוֹמֵר","Shôwmêr","sho-mare'","Active participle of H8104; keeper; Shomer, the name of two Israelites: - Shomer."]},{"k":"H7764","v":["שׁוּנִי","Shûwnîy","shoo-nee'","From an unused root meaning to rest; quiet; Shuni, an Israelite: - Shuni."]},{"k":"H7765","v":["שׁוּנִי","Shûwnîy","shoo-nee'","Patronymic from H7764; a Shunite (collectively) or descendant of Shuni: - Shunites."]},{"k":"H7766","v":["שׁוּנֵם","Shûwnêm","shoo-name'","Probably from the same as H7764; quietly; Shunem, a place in Palestine: - Shunem."]},{"k":"H7767","v":["שׁוּנַמִּית","Shûwnammîyth","shoo-nam-meeth'","Patrial from H7766; a Shunammitess, or female inhabitant of Shunem: - Shunamite."]},{"k":"H7768","v":["שָׁוַע","shâvaʻ","shaw-vah'","A primitive root; properly to be free; but used only causatively and reflexively to halloo (for help, that is, freedom from some trouble): - cry (aloud, out), shout."]},{"k":"H7769","v":["שׁוּעַ","shûwaʻ","shoo'-ah","From H7768; a halloo: - cry, riches."]},{"k":"H7770","v":["שׁוּעַ","Shûwaʻ","shoo'-ah","The same as H7769; shua, a Canaanite: - Shua, Shuah."]},{"k":"H7771","v":["שׁוֹעַ","shôwaʻ","sho'-ah","From H7768 in the original sense of freedom; a noble, that is, liberal, opulent; also (as noun in the derived sense) a halloo: - bountiful, crying, rich."]},{"k":"H7772","v":["שׁוֹעַ","Shôwaʻ","sho'-ah","The same as H7771; rich; Shoa, an Oriental people: - Shoa."]},{"k":"H7773","v":["שֶׁוַע","shevaʻ","sheh'-vah","From H7768; a halloo: - cry."]},{"k":"H7774","v":["שׁוּעָא","Shûwʻâʼ","shoo-aw'","From H7768; wealth; Shua, an Israelitess: - Shua."]},{"k":"H7775","v":["שַׁוְעָה","shavʻâh","shav-aw'","Feminine of H7773; a hallooing: - crying."]},{"k":"H7776","v":["שׁוּעָל","shûwʻâl","shoo-awl'","From the same as H8168; a jackal (as a burrower): - fox."]},{"k":"H7777","v":["שׁוּעָל","Shûwʻâl","shoo-awl'","The same as H7776; Shual, the name of an Israelite and of a place in Palestine: - Shual."]},{"k":"H7778","v":["שׁוֹעֵר","shôwʻêr","sho-are'","Active participle of H8176 (as denominative from H8179); a janitor: - doorkeeper, porter."]},{"k":"H7779","v":["שׁוּף","shûwph","shoof","A primitive root; properly to gape, that is, snap at; figuratively to overwhelm: - break, bruise, cover."]},{"k":"H7780","v":["שׁוֹפָךְ","Shôwphâk","sho-fawk'","From H8210; poured; Shophak, a Syrian: - Shophach."]},{"k":"H7781","v":["שׁוּפָמִי","Shûwphâmîy","shoo-faw-mee'","Patronymic from H8197; a Shuphamite (collectively) or descendant of Shephupham: - Shuphamite."]},{"k":"H7782","v":["שׁוֹפָר","shôwphâr","sho-far'","From H8231 in the original sense of incising; a cornet (as giving a clear sound) or curved horn: - cornet, trumpet."]},{"k":"H7783","v":["שׁוּק","shûwq","shook","A primitive root; to run after or over, that is, overflow: - overflow, water."]},{"k":"H7784","v":["שׁוּק","shûwq","shook","From H7783; a street (as run over): - street."]},{"k":"H7785","v":["שׁוֹק","shôwq","shoke","From H7783; the (lower) leg (as a runner): - hip, leg, shoulder, thigh."]},{"k":"H7786","v":["שׂוּר","sûwr","soor","A primitive root; properly to vanquish; by implication to rule (causatively crown): - make princes, have power, reign. See H5493."]},{"k":"H7787","v":["שׂוּר","sûwr","soor","A primitive root (rather identical with H7786 through the idea of reducing to pieces; compare H4883); to saw: - cut."]},{"k":"H7788","v":["שׁוּר","shûwr","shoor","A primitive root; properly to turn, that is, travel about (as a harlot or a merchant): - go, sing. See also H7891."]},{"k":"H7789","v":["שׁוּר","shûwr","shoor","A primitive root (rather identical with H7788 through the idea of going round for inspection); to spy out, that is, (generally) survey, (for evil) lurk for, (for good) care for: - behold, lay wait, look, observe, perceive, regard, see."]},{"k":"H7790","v":["שׁוּר","shûwr","shoor","From H7889; a foe (as lying in wait): - enemy."]},{"k":"H7791","v":["שׁוּר","shûwr","shoor","From H7788; a wall (as going about): - wall."]},{"k":"H7792","v":["שׁוּר","shûwr","shoor","(Chaldee); corresponding to H7791: - wall."]},{"k":"H7793","v":["שׁוּר","Shûwr","shoor","The same as H7791; Shur, a region of the Desert: - Shur."]},{"k":"H7794","v":["שׁוֹר","shôwr","shore","From H7788; a bullock (as a traveller). wall used by mistake for H7791: - bull (-ock), cow, ox, wall [by mistake for H7791]."]},{"k":"H7795","v":["שׂוֹרָה","sôwrâh","so-raw'","From H7786 in the primitive sense of H5493; properly a ring, that is, (by analogy) a row (adverbially): - principal."]},{"k":"H7796","v":["שׂוֹרֵק","Sôwrêq","so-rake'","The same as H8321; a vine; Sorek, a valley in Palestine: - Sorek."]},{"k":"H7797","v":["שׂוּשׂ","sûws","soos","A primitive root; to be bright, that is, cheerful: - be glad, X greatly, joy, make mirth, rejoice."]},{"k":"H7798","v":["שַׁוְשָׁא","Shavshâʼ","shav-shaw'","From H7797; joyful; Shavsha, an Israelite: - Shavsha."]},{"k":"H7799","v":["שׁוּשַׁן","shûwshan","shoo-shan'","From H7797; a lily (from its whiteness), as a flower or architectural ornament; also a (straight) trumpet (from the tubular shape): - lily, Shoshannim."]},{"k":"H7800","v":["שׁוּשַׁן","Shûwshan","shoo-shan'","The same as H7799; Shushan, a place in Persia: - Shushan."]},{"k":"H7801","v":["שׁוּשַׁנְכִי","Shûwshankîy","shoo-shan-kee'","(Chaldee); of foreign origin; a Shushankite (collectively) or inhabitant of some unknown place in Assyria: - Susanchites."]},{"k":"H7802","v":["שׁוּשַׁן עֵדוּת","Shûwshan ʻÊdûwth","shoo-shan' ay-dooth'","The second form being plural; from H7799 and H5715; lily (or trumpet) of assemblage; Shushan Eduth or Shoshannim Eduth, the title of a popular song: - Shoshannim-Eduth, Shushan-eduth."]},{"k":"H7803","v":["שׁוּתֶלַח","Shûwthelach","shoo-theh'-lakh","Probably from H7582 and the same as H8520; crash of breakage; Shuthelach, the name of two Israelites: - Shuthelah."]},{"k":"H7804","v":["שְׁזַב","shᵉzab","shez-ab'","(Chaldee); corresponding to H5800; to leave, that is, (causatively) free: - deliver."]},{"k":"H7805","v":["שָׁזַף","shâzaph","shaw-zaf'","A primitive root; to tan (by sun burning); figuratively (as if by a piercing ray) to scan: - look up, see."]},{"k":"H7806","v":["שָׁזַר","shâzar","shaw-zar'","A primitive root; to twist (a thread of straw): - twine."]},{"k":"H7807","v":["שַׁח","shach","shakh","From H7817; sunk, that is, downcast: -  + humble."]},{"k":"H7808","v":["שֵׂחַ","sêach","say'-akh","From H7879; communion, that is, (reflexively) meditation: - thought."]},{"k":"H7809","v":["שָׁחַד","shâchad","shaw-khad'","A primitive root; to donate, that is, bribe: - hire, give a reward."]},{"k":"H7810","v":["שַׁחַד","shachad","shakh'-ad","From H7809; a donation (venal or redemptive): - bribe (-ry), gift, present, reward."]},{"k":"H7811","v":["שָׂחָה","sâchâh","saw-khaw'","A primitive root; to swim; causatively to inundate: - (make to) swim."]},{"k":"H7812","v":["שָׁחָה","shâchâh","shaw-khaw'","A primitive root; to depress, that is, prostrate (especially reflexively in homage to royalty or God): - bow (self) down, crouch, fall down (flat), humbly beseech, do (make) obeisance, do reverence, make to stoop, worship."]},{"k":"H7813","v":["שָׂחוּ","sâchûw","saw'-khoo","From H7811; a pond (for swimming): - to swim in."]},{"k":"H7814","v":["שְׂחוֹק","sᵉchôwq","sekh-oke'","From H7832; laughter (in meriment or defiance): - derision, laughter (-ed to scorn, -ing), mocked, sport."]},{"k":"H7815","v":["שְׁחוֹר","shᵉchôwr","shekh-ore'","From H7835; dinginess, that is, perhaps soot: - coal."]},{"k":"H7816","v":["שְׁחוּת","shᵉchûwth","shekh-ooth'","From H7812; pit: - pit."]},{"k":"H7817","v":["שָׁחַח","shâchach","shaw-khakh'","A primitive root; to sink or depress (reflexively or causatively): - bend, bow (down), bring (cast) down, couch, humble self, be (bring) low, stoop."]},{"k":"H7818","v":["שָׂחַט","sâchaṭ","saw-khat'","A primitive root; to tread out, that is, squeeze (grapes): - press."]},{"k":"H7819","v":["שָׁחַט","shâchaṭ","shaw-khat'","A primitive root; to slaughter (in sacrifice or massacre): - kill, offer, shoot out, slay, slaughter."]},{"k":"H7820","v":["שָׁחַט","shâchaṭ","shaw-khat'","A primitive root (rather identical with H7819 through the idea of striking); to hammer out: - beat."]},{"k":"H7821","v":["שְׁחִיטָה","shᵉchîyṭâh","shekh-ee-taw'","From H7819; slaughter: - killing."]},{"k":"H7822","v":["שְׁחִין","shᵉchîyn","shekh-een'","From an unused root probably meaning to burn; inflammation, that is, an ulcer: - boil, botch."]},{"k":"H7823","v":["שָׁחִיס","shâchîyç","shaw-khece'","From an unused root apparently meaning to sprout; after growth: - (that) which springeth of the same."]},{"k":"H7824","v":["שָׁחִיף","shâchîyph","shaw-kheef'","From the same as H7828; a board (as chipped thin): - cieled with."]},{"k":"H7825","v":["שְׁחִית","shᵉchîyth","shekh-eeth'","From H7812; a pit fall (literally or figuratively): - destruction, pit."]},{"k":"H7826","v":["שַׁחַל","shachal","shakh'-al","From an unused root probably meaning to roar; a lion (from his characteristic roar): - (fierce) lion."]},{"k":"H7827","v":["שְׁחֵלֶת","shᵉchêleth","shekh-ay'-leth","Apparently from the same as H7826 through some obscure idea, perhaps that of peeling off by concussion of sound; a scale or shell, that is, the aromatic mussel: - onycha."]},{"k":"H7828","v":["שַׁחַף","shachaph","shakh'-af","From an unused root meaning to peel, that is, emaciate; the gull (as thin): - cuckoo."]},{"k":"H7829","v":["שַׁחֶפֶת","shachepheth","shakh-eh'-feth","From the same as H7828; emaciation: - consumption."]},{"k":"H7830","v":["שַׁחַץ","shachats","shakh'-ats","From an unused root apparently meaning to strut; haughtiness (as evinced by the attitude): -    X lion, pride."]},{"k":"H7831","v":["שַׁחֲצוֹם","Shachătsôwm","shakh-ats-ome'","From the same as H7830; proudly; Shachatsom, a place in Palestine: - Shahazimah [from the margin]."]},{"k":"H7832","v":["שָׂחַק","sâchaq","saw-khak'","A primitive root; to laugh (in pleasure or detraction); by implication to play: - deride, have in derision, laugh, make merry, mock (-er), play, rejoice, (laugh to) scorn, be in (make) sport."]},{"k":"H7833","v":["שָׁחַק","shâchaq","shaw-khak'","A primitive root; to comminute (by trituration or attrition): - beat, wear."]},{"k":"H7834","v":["שַׁחַק","shachaq","shakh'-ak","From H7833; a powder (as beaten small); by analogy a thin vapor; by extension the firmament: - cloud, small dust, heaven, sky."]},{"k":"H7835","v":["שָׁחַר","shâchar","shaw-khar'","A primitive root (rather identical with H7836 through the idea of the duskiness of early dawn); to be dim or dark (in color): - be black."]},{"k":"H7836","v":["שָׁחַר","shâchar","shaw-khar'","A primitive root; properly to dawn, that is, (figuratively) be (up) early at any task (with the implication of earnestness); by extension to search for (with painstaking): - [do something] betimes, enquire early, rise (seek) betimes, seek (diligently) early, in the morning)."]},{"k":"H7837","v":["שַׁחַר","shachar","shakh'-ar","From H7836; dawn (literally, figuratively or adverbially): - day (-spring), early, light, morning, whence riseth."]},{"k":"H7838","v":["שָׁחֹר","shâchôr","shaw-khore'","From H7835; properly dusky, but also (absolutely) jetty: - black."]},{"k":"H7839","v":["שַׁחֲרוּת","shachărûwth","shakh-ar-ooth'","From H7836; a dawning, that is, (figuratively) juvenescence: - youth."]},{"k":"H7840","v":["שְׁחַרְחֹרֶת","shᵉcharchôreth","shekh-ar-kho'-reth","From H7835; swarthy: - black."]},{"k":"H7841","v":["שְׁחַרְיָה","Shᵉcharyâh","shekh-ar-yaw'","From H7836 and H3050; Jah has sought; Shecharjah, an Israelite: - Shehariah."]},{"k":"H7842","v":["שַׁחֲרַיִם","Shachărayim","shakh-ar-ah'-yim","Dual of H7837; double dawn; Shacharajim, an Israelite: - Shaharaim."]},{"k":"H7843","v":["שָׁחַת","shâchath","shaw-khath'","A primitive root; to decay, that is, (causatively) ruin (literally or figuratively): - batter, cast off, corrupt (-er, thing), destroy (-er, -uction), lose, mar, perish, spill, spoiler, X utterly, waste (-r)."]},{"k":"H7844","v":["שְׁחַת","shᵉchath","shekh-ath'","(Chaldee); corresponding to H7843: - corrupt, fault."]},{"k":"H7845","v":["שַׁחַת","shachath","shakh'-ath","From H7743; a pit (especially as a trap); figuratively destruction: - corruption, destruction, ditch, grave, pit."]},{"k":"H7846","v":["שֵׂט","sêṭ","sayte","From H7750; a departure from right, that is, sin: - revolter, that turn aside."]},{"k":"H7847","v":["שָׂטָה","sâṭâh","saw-taw'","A primitive root; to deviate from duty: - decline, go aside, turn."]},{"k":"H7848","v":["שִׁטָּה","shiṭṭâh","shit-taw'","Feminine of a derivative (the second form being only in the plural, meaning the sticks of wood) from the same as H7850; the acacia (from its scourging thorns): - shittah, shittim. See also H1029."]},{"k":"H7849","v":["שָׁטַח","shâṭach","shaw-takh'","A primitive root; to expand: - all abroad, enlarge, spread, stretch out."]},{"k":"H7850","v":["שֹׁטֵט","shôṭêṭ","sho-tate'","Active participle of an otherwise unused root meaning (properly to pierce; but only as a denominative from H7752) to flog; a goad: - scourge."]},{"k":"H7851","v":["שִׁטִּים","Shiṭṭîym","shit-teem'","The same as the plural of H7848; acacia trees; Shittim, a place East of the Jordan: - Shittim."]},{"k":"H7852","v":["שָׂטַם","sâṭam","saw-tam'","A primitive root; properly to lurk for, that is, persecute: - hate, oppose self against."]},{"k":"H7853","v":["שָׂטַן","sâṭan","saw-tan'","A primitive root; to attack, (figuratively) accuse: - (be an) adversary, resist."]},{"k":"H7854","v":["שָׂטָן","sâṭân","saw-tawn'","From H7853; an opponent; especially (with the article prefixed) Satan, the arch enemy of good: - adversary, Satan, withstand."]},{"k":"H7855","v":["שִׂטְנָה","siṭnâh","sit-naw'","From H7853; opposition (by letter): - accusation."]},{"k":"H7856","v":["שִׂטְנָה","Siṭnâh","sit-naw'","The same as H7855; Sitnah, the name of a well in Palestine: - Sitnah."]},{"k":"H7857","v":["שָׁטַף","shâṭaph","shaw-taf'","A primitive root; to gush; by implication to inundate, cleanse; by analogy to gallop, conquer: - drown, (over-) flow (-whelm), rinse, run, rush, (throughly) wash (away)."]},{"k":"H7858","v":["שֶׁטֶף","sheṭeph","sheh'-tef","From H7857; a deluge (literally or figuratively): - flood, outrageous, overflowing."]},{"k":"H7859","v":["שְׁטַר","shᵉṭar","shet-ar'","(Chaldee); of uncertain derivation; a side: - a side."]},{"k":"H7860","v":["שֹׁטֵר","shôṭêr","sho-tare'","Active participle of an otherwise unused root probably meaning to write; properly a scribe, that is, (by analogy or implication) an official superintendent or magistrate: - officer, overseer, ruler."]},{"k":"H7861","v":["שִׁטְרַי","Shiṭray","shit-rah'-ee","From the same as H7860; magisterial; Shitrai, an Israelite: - Shitrai."]},{"k":"H7862","v":["שַׁי","shay","shah'-ee","Probably from H7737; a gift (as available): - present."]},{"k":"H7863","v":["שִׂיא","sîyʼ","see","From the same as H7721 by permutation; elevation: - excellency."]},{"k":"H7864","v":["שְׁיָא","Shᵉyâʼ","sheh-yaw'","For H7724; Sheja, an Israelite: - Sheva [from the margin]."]},{"k":"H7865","v":["שִׂיאֹן","Sîyʼôn","see-ohn'","From H7863; peak; Sion, the summit of Mt. Hermon: - Sion."]},{"k":"H7866","v":["שִׁיאוֹן","Shîyʼôwn","shee-ohn'","From the same as H7722; ruin; Shijon, a place in Palestine: - Shihon."]},{"k":"H7867","v":["שִׂיב","sîyb","seeb","A primitive root; properly to become aged, that is, (by implication) to grow gray: - (be) grayheaded."]},{"k":"H7868","v":["שִׂיב","sîyb","seeb","(Chaldee); corresponding to H7867: - elder."]},{"k":"H7869","v":["שֵׂיב","sêyb","sabe","From H7867; old age: - age."]},{"k":"H7870","v":["שִׁיבָה","shîybâh","shee-baw'","By permutation from H7725; a return (of property): - captivity."]},{"k":"H7871","v":["שִׁיבָה","shîybâh","shee-baw'","From H3427; residence: - while . . . lay."]},{"k":"H7872","v":["שֵׂיבָה","sêybâh","say-baw'","Feminine of H7869; old age: - (be) gray (grey, hoar, -y) hairs (head, -ed), old age."]},{"k":"H7873","v":["שִׂיג","sîyg","seeg","From H7734; a withdrawl (into a private place): - pursuing."]},{"k":"H7874","v":["שִׂיד","sîyd","seed","A primitive root probably meaning to boil up (compare H7736); used only as denominative from H7875; to plaster: - plaister."]},{"k":"H7875","v":["שִׂיד","sîyd","seed","From H7874; lime (as boiling when slacked): - lime, plaister."]},{"k":"H7876","v":["שָׁיָה","shâyâh","shaw-yaw'","A primitive root; to keep in memory: - be unmindful. [Render Deu_32:18, “A Rock bore thee, thou must recollect; and (yet) thou hast forgotten,” etc.]"]},{"k":"H7877","v":["שִׁיזָא","Shîyzâʼ","shee-zaw'","Of unknown derivation; Shiza, an Israelite: - Shiza."]},{"k":"H7878","v":["שִׂיחַ","sîyach","see'-akh","A primitive root; to ponder, that is, (by implication) converse (with oneself, and hence aloud) or (transitively) utter: - commune, complain, declare, meditate, muse, pray, speak, talk (with)."]},{"k":"H7879","v":["שִׂיחַ","sîyach","see'-akh","From H7878; a contemplation; by implication an utterance: - babbling, communication, complaint, meditation, prayer, talk."]},{"k":"H7880","v":["שִׂיחַ","sîyach","see'-akh","From H7878; a shoot (as if uttered or put forth), that is, (generically) shrubbery: - bush, plant, shrub."]},{"k":"H7881","v":["שִׂיחָה","sîychâh","see-khaw'","Feminine of H7879; reflection; by extension devotion: - meditation, prayer."]},{"k":"H7882","v":["שִׁיחָה","shîychâh","shee-khaw'","From H7745; a pit fall: - pit."]},{"k":"H7883","v":["שִׁיחוֹר","Shîychôwr","shee-khore'","Probably from H7835; dark, that is, turbid; Shichor, a stream of Egypt: - Shihor, Sihor."]},{"k":"H7884","v":["שִׁיחוֹר לִבְנָת","Shîychôwr Libnâth","shee-khore' lib-nawth'","From the same as H7883 and H3835; darkish whiteness; Shichor Libnath, a stream of Palestine: - Shihor-libnath."]},{"k":"H7885","v":["שַׁיִט","shayiṭ","shay'-yit","From H7751; an oar; also (compare H7752) a scourge (figuratively): - oar, scourge."]},{"k":"H7886","v":["שִׁילֹה","Shîylôh","shee-lo'","From H7951; tranquil; Shiloh, an epithet of the Messiah: - Shiloh."]},{"k":"H7887","v":["שִׁילֹה","Shîylôh","shee-lo'","From the same as H7886; Shiloh, a place in Palestine: - Shiloh."]},{"k":"H7888","v":["שִׁילוֹנִי","Shîylôwnîy","shee-lo-nee'","From H7887; a Shilonite or inhabitant of Shiloh: - Shilonite."]},{"k":"H7889","v":["שִׁימוֹן","Shîymôwn","shee-mone'","Apparently for H3452; desert; Shimon, an Israelite: - Shimon."]},{"k":"H7890","v":["שַׁיִן","shayin","shah'-yin","From an unused root meaning to urinate; urine: - piss."]},{"k":"H7891","v":["שִׁיר","shîyr","sheer","The second form being the original form, used in (1Sa_18:6); a primitive root (rather identical with H7788 through the idea of strolling minstrelsy); to sing: - behold [by mistake for H7789], sing (-er, -ing man, -ing woman)."]},{"k":"H7892","v":["שִׁיר","shîyr","sheer","The second form being feminine; from H7891; a song; abstractly singing: - musical (-ick), X sing (-er, -ing), song."]},{"k":"H7893","v":["שַׁיִשׁ","shayish","shah'-yish","From an unused root meaning to bleach, that is, whiten; white, that is, marble: - marble. See H8336."]},{"k":"H7894","v":["שִׁישָׁא","Shîyshâʼ","shee-shaw'","From the same as H7893; whiteness; Shisha, an Israelite: - Shisha."]},{"k":"H7895","v":["שִׁישַׁק","Shîyshaq","shee-shak'","Of Egyptian derivation; Shishak, an Egyptian king: - Shishak."]},{"k":"H7896","v":["שִׁית","shîyth","sheeth","A primitive root; to place (in a very wide application): - apply, appoint, array, bring, consider, lay (up), let alone, X look, make, mark, put (on), + regard, set, shew, be stayed, X take."]},{"k":"H7897","v":["שִׁית","shîyth","sheeth","From H7896; a dress (as put on): - attire."]},{"k":"H7898","v":["שַׁיִת","shayith","shah'-yith","From H7896; scrub or trash, that is, wild growth of weeds or briers (as if put on the field): - thorns."]},{"k":"H7899","v":["שֵׂךְ","sêk","sake","From H5526 in the sense of H7753; a brier (as of a hedge): - prick."]},{"k":"H7900","v":["שֹׂךְ","sôk","soke","From H5526 in the sense of H7753; a booth (as interlaced): - tabernacle."]},{"k":"H7901","v":["שָׁכַב","shâkab","shaw-kab'","A primitive root; to lie down (for rest, sexual connection, decease or any other purpose): -    X at all, cast down, ([over-]) lay (self) (down), (make to) lie (down, down to sleep, still, with), lodge, ravish, take rest, sleep, stay."]},{"k":"H7902","v":["שְׁכָבָה","shᵉkâbâh","shek-aw-baw'","From H7901; a lying down (of dew, or for the sexual act): -    X carnally, copulation, X lay, seed."]},{"k":"H7903","v":["שְׁכֹבֶת","shᵉkôbeth","shek-o'-beth","From H7901; a (sexual) lying with: -    X lie."]},{"k":"H7904","v":["שָׁכָה","shâkâh","shaw-kaw'","A primitive root; to roam (through lust). in the morning is by mistake for H7925: - in the morning [by mistake for H7925]."]},{"k":"H7905","v":["שֻׂכָּה","sukkâh","sook-kaw'","Feminine of H7900 in the sense of H7899; a dart (as pointed like a thorn): - barbed iron."]},{"k":"H7906","v":["שֵׂכוּ","Sêkûw","say'-koo","From an unused root apparently mean to surmount; an observatory (with the article); Seku, a place in Palestine: - Sechu."]},{"k":"H7907","v":["שֶׂכְוִי","sekvîy","sek-vee'","From the same as H7906; observant, that is, (concretely) the mind: - heart."]},{"k":"H7908","v":["שְׁכוֹל","shᵉkôwl","shek-ole'","Infinitive of H7921; bereavement: - loss of children, spoiling."]},{"k":"H7909","v":["שַׁכּוּל","shakkûwl","shak-kool'","From H7921; bereaved: - barren, bereaved (robbed) of children (whelps)."]},{"k":"H7910","v":["שִׁכּוֹר","shikkôwr","shik-kore'","From H7937; intoxicated, as a state or a habit: - drunk (-ard, -en, -en man)."]},{"k":"H7911","v":["שָׁכַח","shâkach","shaw-kakh'","A primitive root; to mislay, that is, to be oblivious of, from want of memory or attention: -    X at all, (cause to) forget."]},{"k":"H7912","v":["שְׁכַח","shᵉkach","shek-akh'","(Chaldee); corresponding to H7911 through the idea of disclosure of a covered or forgotten thing; to discover (literally or figuratively): - find."]},{"k":"H7913","v":["שָׁכֵחַ","shâkêach","shaw-kay'-akh","From H7911; oblivious: - forget."]},{"k":"H7914","v":["שְׂכִיָּה","sᵉkîyâh","sek-ee-yaw'","Feminine from the same as H7906; a conspicuous object: - picture."]},{"k":"H7915","v":["שַׂכִּין","sakkîyn","sak-keen'","Intensive perhaps from the same as H7906 in the sense of H7753; a knife (as pointed or edged): - knife."]},{"k":"H7916","v":["שָׂכִיר","sâkîyr","saw-keer'","From H7936; a man at wages by the day or year: - hired (man, servant), hireling."]},{"k":"H7917","v":["שְׂכִירָה","sᵉkîyrâh","sek-ee-raw'","Feminine of H7916; a hiring: - that is hired."]},{"k":"H7918","v":["שָׁכַךְ","shâkak","shaw-kak'","A primitive root; to weave (that is, lay) a trap; figuratively (ghrough the idea of secreting) to allay (passions; physically abate a flood): - appease, assuage, make to cease, pacify, set."]},{"k":"H7919","v":["שָׂכַל","sâkal","saw-kal'","A primitive root; to be (causeatively make or act) circumspect and hence intelligent: - consider, expert, instruct, prosper, (deal) prudent (-ly), (give) skill (-ful), have good success, teach, (have, make to) understand (-ing), wisdom, (be, behave self, consider, make) wise (-ly), guide wittingly."]},{"k":"H7920","v":["שְׂכַל","sᵉkal","sek-al'","(Chaldee); corresponding to H7919: - consider."]},{"k":"H7921","v":["שָׁכֹל","shâkôl","shaw-kole'","A primitive root; properly to miscarry, that is, suffer abortion; by analogy to bereave (literally or figuratively): - bereave (of children), barren, cast calf (fruit, young), be (make) childless, deprive, destroy, X expect, lose children, miscarry, rob of children, spoil."]},{"k":"H7922","v":["שֶׂכֶל","sekel","seh'-kel","From H7919; intelligence; by implication success: - discretion, knowledge, policy, prudence, sense, understanding, wisdom, wise."]},{"k":"H7923","v":["שִׁכֻּלִים","shikkulîym","shik-koo-leem'","Plural from H7921; childlessness (by continued bereavements): - to have after loss of others."]},{"k":"H7924","v":["שׇׂכְלְתָנוּ","soklᵉthânûw","sok-leth-aw-noo'","(Chaldee); from H7920; intelligence: - understanding."]},{"k":"H7925","v":["שָׁכַם","shâkam","shaw-kam'","A primitive root; properly to incline (the shoulder to a burden); but used only as denominative from H7926; literally to load up (on the back of man or beast), that is, to start early in the morning: - (arise, be up, get [oneself] up, rise up) early (betimes), morning."]},{"k":"H7926","v":["שְׁכֶם","shᵉkem","shek-em'","From H7925; the neck (between the shoulders) as the place of burdens; figuratively the spur of a hill: - back, X consent, portion, shoulder."]},{"k":"H7927","v":["שְׁכֶם","Shᵉkem","shek-em'","The same as H7926; ridge; Shekem, a place in Palestine: - Shechem."]},{"k":"H7928","v":["שֶׁכֶם","Shekem","sheh'-kem","From H7926; Shekem, the name of a Hivite and two Israelites: - Shechem."]},{"k":"H7929","v":["שִׁכְמָה","shikmâh","shik-maw'","Feminine of H7926; the shoulder bone: - shoulder blade."]},{"k":"H7930","v":["שִׁכְמִי","Shikmîy","shik-mee'","Patronymic from H7928; a Shikmite (collectively), or descendant of Shekem: - Shichemites."]},{"k":"H7931","v":["שָׁכַן","shâkan","shaw-kan'","A primitive root (apparently akin (by transmutation) to H7901 through the idea of lodging; compare H5531 and H7925); to reside or permanently stay (literally or figuratively): - abide, continue, (cause to, make to) dwell (-er), have habitation, inhabit, lay, place, (cause to) remain, rest, set (up)."]},{"k":"H7932","v":["שְׁכַן","shᵉkan","shek-an'","(Chaldee); corresponding to H7931: - cause to dwell, have habitation."]},{"k":"H7933","v":["שֶׁכֶן","sheken","sheh'-ken","From H7931; a residence: - habitation."]},{"k":"H7934","v":["שָׁכֵן","shâkên","shaw-kane'","From H7931; a resident; by extension a fellow citizen: - inhabitant, neighbour, nigh."]},{"k":"H7935","v":["שְׁכַנְיָה","Shᵉkanyâh","shek-an-yaw'","From H7931 and H3050; Jah has dwelt; Shekanjah, the name of nine Israelites: - Shecaniah, Shechaniah."]},{"k":"H7936","v":["שָׂכַר","sâkar","saw-kar'","The second form by permutation and used in Ezr_4:5; a primitive root (apparently akin (by prosthesis) to H3739 through the idea of temporary purchase; compare H7937); to hire: - earn wages, hire (out self), reward, X surely."]},{"k":"H7937","v":["שָׁכַר","shâkar","shaw-kar'","A primitive root; to become tipsy; in a qualified sense, to satiate with a stimulating drink or (figuratively) influence. (Superlative of H8248.): - (be filled with) drink (abundantly), (be, make) drunk (-en), be merry. [Superlative of H8248.]"]},{"k":"H7938","v":["שֶׂכֶר","seker","seh'-ker","From H7936; wages: - reward, sluices."]},{"k":"H7939","v":["שָׂכָר","sâkâr","saw-kawr'","From H7986; payment of contract; concretely salary, fare, maintenance; by implication compensation, benefit: - hire, price, reward [-ed], wages, worth."]},{"k":"H7940","v":["שָׂכָר","Sâkâr","saw-kar'","The same as H7939; recompense; Sakar, the name of two Israelites: - Sacar."]},{"k":"H7941","v":["שֵׁכָר","shêkâr","shay-kawr'","From H7937; an intoxicant, that is, intensely alcoholic liquor: - strong drink, + drunkard, strong wine."]},{"k":"H7942","v":["שִׁכְּרוֹן","Shikkᵉrôwn","shik-ker-one'","For H7943; drunkenness; Shikkeron, a place in Palestine: - Shicron."]},{"k":"H7943","v":["שִׁכָּרוֹן","shikkârôwn","shik-kaw-rone'","From H7937; intoxication: - (be) drunken (-ness)."]},{"k":"H7944","v":["שַׁל","shal","shal","From H7952 abbreviated; a fault: - error."]},{"k":"H7945","v":["שֶׁל","shel","shel","For the relative H834; used with prepositional prefix, and often followed by some pronoun affixed; on account of, what soever, which soever: - cause, sake."]},{"k":"H7946","v":["שַׁלְאֲנָן","shalʼănân","shal-an-awn'","For H7600; tranquil: - being at ease."]},{"k":"H7947","v":["שָׁלַב","shâlab","shaw-lab'","A primitive root; to space off; intensively (evenly) to make equidistant: - equally distant, set in order."]},{"k":"H7948","v":["שָׁלָב","shâlâb","shaw-lawb'","From H7947; a spacer or raised interval, that is, the stile in a frame or panel: - ledge."]},{"k":"H7949","v":["שָׁלַג","shâlag","shaw-lag'","A primitive root; properly meaning to be white; used only as denominative from H7950; to be snow white (with the linen clothing of the slain): - be as snow."]},{"k":"H7950","v":["שֶׁלֶג","sheleg","sheh'-leg","From H7949; snow (probably from its whiteness): - snow (-y)."]},{"k":"H7951","v":["שָׁלָה","shâlâh","shaw-law'","The second form being used in Job_3:26; a primitive root; to be tranquil, that is, secure or successful: - be happy, prosper, be in safety."]},{"k":"H7952","v":["שָׁלָה","shâlâh","shaw-law'","A primitive root (probably rather identical with H7953 through the idea of educing); to mislead: - deceive, be negligent."]},{"k":"H7953","v":["שָׁלָה","shâlâh","shaw-law'","A primitive root (rather cognate (by contraction) to the base of H5394, H7997 and their congeners through the idea of extracting); to draw out or off, that is, remove (the soul by death): - take away."]},{"k":"H7954","v":["שְׁלָה","shᵉlâh","shel-aw'","(Chaldee); corresponding to H7951; to be secure: - at rest."]},{"k":"H7955","v":["שָׁלָה","shâlâh","shaw-law'","(Chaldee); from a root corresponding to H7952; a wrong: - thing amiss."]},{"k":"H7956","v":["שֵׁלָה","Shêlâh","shay-law'","The same as H7596 (shortened); request; Shelah, the name of a postdiluvian patriarch and of an Israelite: - Shelah."]},{"k":"H7957","v":["שַׁלְהֶבֶת","shalhebeth","shal-heh'-beth","From the same as H3851 with sibilant prefixed; a flare of fire: - (flaming) flame."]},{"k":"H7958","v":["שְׂלָו","sᵉlâv","sel-awv'","By orthographical variation from H7951 through the idea of sluggishness; the quail collectively (as slow in flight from its weight): - quails."]},{"k":"H7959","v":["שֶׁלֶו","shelev","sheh'-lev","From H7951; security: - prosperity."]},{"k":"H7960","v":["שָׁלוּ","shâlûw","shaw-loo'","(Chaldee); from the same as H7955; a fault: - error, X fail, thing amiss."]},{"k":"H7961","v":["שָׁלֵו","shâlêv","shaw-lave'","From H7951; tranquil; (in a bad sense) careless; abstractly security: - (being) at ease, peaceable, (in) prosper (-ity), quiet (-ness), wealthy."]},{"k":"H7962","v":["שַׁלְוָה","shalvâh","shal-vaw'","From H7951; security (genuine or false): - abundance, peace (-ably), prosperity, quietness."]},{"k":"H7963","v":["שְׁלֵוָה","shᵉlêvâh","shel-ay-vaw'","(Chaldee); corresponding to H7962; safety: - tranquility. See also H7961."]},{"k":"H7964","v":["שִׁלּוּחַ","shillûwach","shil-loo'-akh","From H7971; (only in plural) a dismissal, that is, (of a wife) divorce (especially the document); also (of a daughter) dower: - presents, have sent back."]},{"k":"H7965","v":["שָׁלוֹם","shâlôwm","shaw-lome'","From H7999; safe, that is, (figuratively) well, happy, friendly; also (abstractly) welfare, that is, health, prosperity, peace: -    X do, familiar, X fare, favour, + friend, X greet, (good) health, (X perfect, such as be at) peace (-able, -ably), prosper (-ity, -ous), rest, safe (-ly), salute, welfare, (X all is, be) well, X wholly."]},{"k":"H7966","v":["שִׁלּוּם","shillûwm","shil-loom'","From H7999; a requital, that is, (secure) retribution, (venal) a fee: - recompense, reward."]},{"k":"H7967","v":["שַׁלּוּם","Shallûwm","shal-loom'","The same as H7966; Shallum, the name of fourteen Israelites: - Shallum."]},{"k":"H7968","v":["שַׁלּוּן","Shallûwn","shal-loon'","Probably for H7967; Shallun, an Israelite: - Shallum."]},{"k":"H7969","v":["שָׁלוֹשׁ","shâlôwsh","shaw-loshe'","The last two forms being masculine; a primitive number; three; occasionally (ordinal) third, or (multiplicative) thrice: -    + fork, + often [-times], third, thir [-teen, -teenth], three, + thrice. Compare H7991."]},{"k":"H7970","v":["שְׁלוֹשִׁים","shᵉlôwshîym","shel-o-sheem'","Multiple of H7969; thirty; or (ordinal) thirtieth: -    thirty, thirtieth. Compare H7991."]},{"k":"H7971","v":["שָׁלַח","shâlach","shaw-lakh'","A primitive root; to send away, for, or out (in a great variety of applications): -    X any wise, appoint, bring (on the way), cast (away, out), conduct, X earnestly, forsake, give (up), grow long, lay, leave, let depart (down, go, loose), push away, put (away, forth, in, out), reach forth, send (away, forth, out), set, shoot (forth, out), sow, spread, stretch forth (out)."]},{"k":"H7972","v":["שְׁלַח","shᵉlach","shel-akh'","(Chaldee); corresponding to H7971: - put, send."]},{"k":"H7973","v":["שֶׁלַח","shelach","sheh'-lakh","From H7971; a missile of attack, that is, spear; also (figuratively) a shoot of growth, that is, branch: - dart, plant, X put off, sword, weapon."]},{"k":"H7974","v":["שֶׁלַח","Shelach","sheh'-lakh","The same as H7973; Shelach, a postdiluvian patriarch: - Salah, Shelah. Compare H7975."]},{"k":"H7975","v":["שִׁלֹחַ","Shilôach","shee-lo'-akh","The second form is in imitation of H7974, used in Neh_3:15; from H7971; rill; Shiloach, a fountain of Jerusalem: - Shiloah, Siloah."]},{"k":"H7976","v":["שִׁלֻּחָה","shilluchâh","shil-loo-khaw'","Feminine of H7964; a shoot: - branch."]},{"k":"H7977","v":["שִׁלְחִי","Shilchîy","shil-khee'","From H7973; missive, that is, armed; Shilchi, an Israelite: - Shilhi."]},{"k":"H7978","v":["שִׁלְחִים","Shilchîym","shil-kheem'","Plural of H7973; javelins or sprouts; Shilchim, a place in Palestine: - Shilhim."]},{"k":"H7979","v":["שֻׁלְחָן","shulchân","shool-khawn'","From H7971; a table (as spread out); by implication a meal: - table."]},{"k":"H7980","v":["שָׁלַט","shâlaṭ","shaw-lat'","A primitive root; to dominate, that is, govern; by implication to permit: - (bear, have) rule, have dominion, give (have) power."]},{"k":"H7981","v":["שְׁלֵט","shᵉlêṭ","shel-ate'","(Chaldee); corresponding to H7980: - have the mastery, have power, bear rule, be (make) ruler."]},{"k":"H7982","v":["שֶׁלֶט","sheleṭ","sheh'-let","From H7980; probably a shield (as controlling, that is, protecting the person): - shield."]},{"k":"H7983","v":["שִׁלְטוֹן","shilṭôwn","shil-tone'","From H7980; a potentate: - power."]},{"k":"H7984","v":["שִׁלְטוֹן","shilṭôwn","shil-tone'","(Chaldee); corresponding to H7983: - ruler."]},{"k":"H7985","v":["שׇׁלְטָן","sholṭân","shol-tawn'","(Chaldee); from H7981; empire (abstractly or concretely.): - dominion."]},{"k":"H7986","v":["שַׁלֶּטֶת","shalleṭeth","shal-leh'-teth","Feminine from H7980; a vixen: - imperious."]},{"k":"H7987","v":["שְׁלִי","shᵉlîy","shel-ee'","From H7951; privacy: -  + quietly."]},{"k":"H7988","v":["שִׁלְיָה","shilyâh","shil-yaw'","Feminine from H7953; a foetus or babe (as extruded in birth): - young one."]},{"k":"H7989","v":["שַׁלִּיט","shallîyṭ","shal-leet'","From H7980; potent; concretely a prince or warrior: - governor, mighty, that hath power, ruler."]},{"k":"H7990","v":["שַׁלִּיט","shallîyṭ","shal-leet'","(Chaldee); corresponding to H7989; mighty; abstractly permission; concretely a premier: - captain, be lawful, rule (-r)."]},{"k":"H7991","v":["שָׁלִישׁ","shâlîysh","shaw-leesh'","(The second form used in 1Ch_11:11-12, 1Ch_11:18; the third form used in 2Sa_23:13); from H7969; a triple, that is, (as a musical instrument) a triangle (or perhaps rather three stringed lute); also (as an indefinitely great quantity) a three fold measure (perhaps a treble ephah); also (as an officer) a general of the third rank (upward, that is, the highest): - captain, instrument of musick, (great) lord, (great) measure, prince, three [from the margin]."]},{"k":"H7992","v":["שְׁלִישִׁי","shᵉlîyshîy","shel-ee-shee'","Ordinal from H7969; third; feminine a third (part); by extension a third (day, year or time); specifically a third story cell): - third (part, rank, time), three (years old)."]},{"k":"H7993","v":["שָׁלַךְ","shâlak","shaw-lak","A primitive root; to throw out, down or away (literally or figuratively): - adventure, cast (away, down, forth, off, out), hurl, pluck, throw."]},{"k":"H7994","v":["שָׁלָךְ","shâlâk","shaw-lawk'","From H7993; bird of prey, usually thought to be the pelican (from casting itself into the sea): - cormorant."]},{"k":"H7995","v":["שַׁלֶּכֶת","shalleketh","shal-leh'-keth","From H7993; a felling (of trees): - when cast."]},{"k":"H7996","v":["שַׁלֶּכֶת","Shalleketh","shal-leh'-keth","The same as H7995; Shalleketh, a gate in Jerusalem: - Shalleketh."]},{"k":"H7997","v":["שָׁלַל","shâlal","shaw-lal'","A primitive root; to drop or strip; by implication to plunder: - let fall, make self a prey, X of purpose, (make a, [take]) spoil."]},{"k":"H7998","v":["שָׁלָל","shâlâl","shaw-lawl'","From H7997; booty: - prey, spoil."]},{"k":"H7999","v":["שָׁלַם","shâlam","shaw-lam'","A primitive root; to be safe (in mind, body or estate); figuratively to be (causatively make) completed; by implication to be friendly; by extension to reciprocate (in various applications): - make amends, (make an) end, finish, full, give again, make good, (re-) pay (again), (make) (to) (be at) peace (-able), that is perfect, perform, (make) prosper (-ous), recompense, render, requite, make restitution, restore, reward, X surely."]},{"k":"H8000","v":["שְׁלַם","shᵉlam","shel-am'","(Chaldee); corresponding to H7999; to complete, to restore: - deliver, finish."]},{"k":"H8001","v":["שְׁלָם","shᵉlâm","shel-awm'","(Chaldee); corresponding to H7965; prosperity: - peace."]},{"k":"H8002","v":["שֶׁלֶם","shelem","sheh'-lem","From H7999; properly requital, that is, a (voluntary) sacrifice in thanks: - peace offering."]},{"k":"H8003","v":["שָׁלֵם","shâlêm","shaw-lame'","From H7999; complete (literally or figuratively); especially friendly. (shalem used by mistake for a name.): - full, just, made ready, peaceable, perfect (-ed), quiet, Shalem [by mistake for a name], whole."]},{"k":"H8004","v":["שָׁלֵם","Shâlêm","shaw-lame'","The same as H8003; peaceful; Shalem, an early name of Jerusalem: - Salem."]},{"k":"H8005","v":["שִׁלֵּם","shillêm","shil-lame'","From H7999; requital: - recompense."]},{"k":"H8006","v":["שִׁלֵּם","Shillêm","shil-lame'","The same as H8005; Shillem, an Israelite: - Shillem."]},{"k":"H8007","v":["שַׂלְמָא","Salmâʼ","sal-maw'","Probably for H8008; clothing; Salma, the name of two Israelites: - Salma."]},{"k":"H8008","v":["שַׂלְמָה","salmâh","sal-maw'","Transposition for H8071; a dress ;: - clothes, garment, raiment."]},{"k":"H8009","v":["שַׂלְמָה","Salmâh","sal-maw'","The same as H8008; clothing; Salmah, an Israelite: - Salmon. Compare H8012."]},{"k":"H8010","v":["שְׁלֹמֹה","Shᵉlômôh","shel-o-mo'","From H7965; peaceful; Shelomoh, David’s successor: - Solomon."]},{"k":"H8011","v":["שִׁלֻּמָה","shillumâh","shil-loo-maw'","Feminine of H7966; retribution: - reward."]},{"k":"H8012","v":["שַׂלְמוֹן","Salmôwn","sal-mone'","From H8008; investiture; Salmon, an Israelite: - Salmon. Compare H8009."]},{"k":"H8013","v":["שְׁלֹמוֹת","Shᵉlômôwth","shel-o-moth'","Feminine plural of H7965; pacifications; Shelomoth, the name of two Israelites: - Shelomith [from the margin], Shelomoth. Compare H8019."]},{"k":"H8014","v":["שַׂלְמַי","Salmay","sal-mah'-ee","From H8008; clothed; Salmai, an Israelite: - Shalmai."]},{"k":"H8015","v":["שְׁלֹמִי","Shᵉlômîy","shel-o-mee'","From H7965; peaceable; Shelomi, an Israelite: - Shelomi."]},{"k":"H8016","v":["שִׁלֵּמִי","Shillêmîy","shil-lay-mee'","Patronymic from H8006; a Shilemite (collectively) or descendant of Shillem: - Shillemites."]},{"k":"H8017","v":["שְׁלֻמִיאֵל","Shᵉlumîyʼêl","shel-oo-mee-ale'","From H7965 and H410; peace of God; Shelumiel, an Israelite: - Shelumiel."]},{"k":"H8018","v":["שֶׁלֶמְיָה","Shelemyâh","shel-em-yaw'","From H8002 and H3050; thank offering of Jah; Shelemjah, the name of nine Israelites: - Shelemiah."]},{"k":"H8019","v":["שְׁלֹמִית","Shᵉlômîyth","shel-o-meeth'","The second form being used in Ezr_8:10; from H7965; peaceableness; Shelomith, the name of five Israelites and three Israelitesses: - Shelomith."]},{"k":"H8020","v":["שַׁלְמַן","Shalman","shal-man'","Of foreign derivation; Shalman, a king apparently of Assyria: - Shalman. Compare H8022."]},{"k":"H8021","v":["שַׁלְמֹן","shalmôn","shal-mone'","From H7999; a bribe: - reward."]},{"k":"H8022","v":["שַׁלְמַנְאֶסֶר","Shalmanʼeçer","shal-man-eh'-ser","Of foreign derivation; Shalmaneser, an Assyrian king: - Shalmaneser. Compare H8020."]},{"k":"H8023","v":["שִׁלֹנִי","Shilônîy","shee-lo-nee'","The same as H7888; Shiloni, an Israelite: - Shiloni."]},{"k":"H8024","v":["שֵׁלָנִי","Shêlânîy","shay-law-nee'","From H7956; a Shelanite (collectively), or descendant of Shelah: - Shelanites."]},{"k":"H8025","v":["שָׁלַף","shâlaph","saw-laf'","A primitive root; to pull out, up or off: - draw (off), grow up, pluck off."]},{"k":"H8026","v":["שֶׁלֶף","sheleph","sheh'-lef","From H8025; extract; sheleph, a son of Jokthan: - Sheleph."]},{"k":"H8027","v":["שָׁלַשׁ","shâlash","shaw-lash'","A primitive root perhaps originally to intensify, that is, treble; but apparently used only as denominative from H7969, to be (causatively make) triplicate (by restoration, in portions, strands, days or years): - do the third time, (divide into, stay) three (days, -fold, parts, years old)."]},{"k":"H8028","v":["שֶׁלֶשׁ","Shelesh","sheh'-lesh","From H8027; triplet; Shelesh, an Israelite: - Shelesh."]},{"k":"H8029","v":["שִׁלֵּשׁ","shillêsh","shil-laysh'","From H8027; a descendant of the third degree, that is, great grandchild: - third [generation]."]},{"k":"H8030","v":["שִׁלְשָׁה","Shilshâh","shil-shaw'","Feminine from the same as H8028; triplication; Shilshah, an Israelite: - Shilshah."]},{"k":"H8031","v":["שָׁלִשָׁה","Shâlishâh","shaw-lee-shaw'","Feminine from H8027; trebled land; Shalishah, a place in Palestine: - Shalisha."]},{"k":"H8032","v":["שִׁלְשׁוֹם","shilshôwm","shil-shome'","From the same as H8028; trebly, that is, (in time) day before yesterday: -  + before (that time, -time), excellent things [from the margin], + heretofore, three days, + time past."]},{"k":"H8033","v":["שָׁם","shâm","shawm","A primitive particle (rather from the relative H834); there (transfered to time) then; often thither, or thence: - in it, + thence, there (-in, + of, + out), + thither, + whither."]},{"k":"H8034","v":["שֵׁם","shêm","shame","A primitive word (perhaps rather from H7760 through the idea of definite and conspicuous position; compare H8064); an appellation, as a mark or memorial of individuality; by implication honor, authority, character: -  + base, [in-] fame [-ous], name (-d), renown, report."]},{"k":"H8035","v":["שֵׁם","Shêm","shame","The same as H8034; name; Shem, a son of Noah (often including his posterity): - Sem, Shem."]},{"k":"H8036","v":["שֻׁם","shum","shoom","(Chaldee); shoom; corresponding to H8034: - name."]},{"k":"H8037","v":["שַׁמָּא","Shammâʼ","sham-maw'","From H8074; desolation; Shamma, an Israelite: - Shamma."]},{"k":"H8038","v":["שֶׁמְאֵבֶר","Shemʼêber","shem-ay'-ber","Apparently from H8034 and H83; name of pinion, that is, illustrious; Shemeber, a king of Zeboim: - Shem-eber."]},{"k":"H8039","v":["שִׁמְאָה","Shimʼâh","shim-aw'","Perhaps for H8093; Shimah, an Israelite: - Shimah. Compare H8043."]},{"k":"H8040","v":["שְׂמֹאול","sᵉmôʼwl","sem-ole'","A primitive word (rather perhaps from the same as H8071 (by insertion of the 'aleph) through the idea of wrapping up); properly dark (as enveloped), that is, the north; hence (by orientation) the left hand: - left (hand, side)."]},{"k":"H8041","v":["שָׂמַאל","sâmaʼl","saw-mal'","A primitive root (rather denominative from H8040); to use the left hand or pass in that direction: - (go, turn) (on the, to the) left."]},{"k":"H8042","v":["שְׂמָאלִי","sᵉmâʼlîy","sem-aw-lee'","From H8040; situated on the left side: - left."]},{"k":"H8043","v":["שִׁמְאָם","Shimʼâm","shim-awm'","For H8039 (compare H38); Shimam, an Israelite: - Shimeam."]},{"k":"H8044","v":["שַׁמְגַּר","Shamgar","sham-gar'","Of uncertain derivation; Shamgar, an Israelite judge: - Shamgar."]},{"k":"H8045","v":["שָׁמַד","shâmad","shaw-mad'","A primitive root; to desolate: - destroy (-uction), bring to nought, overthrow, perish, pluck down, X utterly."]},{"k":"H8046","v":["שְׁמַד","shᵉmad","shem-ad'","(Chaldee); corresponding to H8045: - consume."]},{"k":"H8047","v":["שַׁמָּה","shammâh","sham-maw'","From H8074; ruin; by implication consternation: - astonishment, desolate (-ion), waste, wonderful thing."]},{"k":"H8048","v":["שַׁמָּה","Shammâh","sham-maw'","The same as H8047; Shammah, the name of an Edomite and four Israelites: - Shammah."]},{"k":"H8049","v":["שַׁמְהוּת","Shamhûwth","sham-hooth'","For H8048; desolation; Shamhuth, an Israelite: - Shamhuth."]},{"k":"H8050","v":["שְׁמוּאֵל","Shᵉmûwʼêl","sehm-oo-ale'","From the passive participle of H8085 and H410; heard of God; Shemuel, the name of three Israelites: - Samuel, Shemuel."]},{"k":"H8051","v":["שַׁמּוּעַ","Shammûwaʻ","sham-moo'-ah","From H8074; renowned; Shammua, the name of four Israelites: - Shammua, Shammuah."]},{"k":"H8052","v":["שְׁמוּעָה","shᵉmûwʻâh","sehm-oo-aw'","Feminine passive participle of H8074; something heard, that is, an announcement: - bruit, doctrine, fame, mentioned, news, report, rumor, tidings."]},{"k":"H8053","v":["שָׁמוּר","Shâmûwr","shaw-moor'","Passive participle of H8103; observed; Shamur, an Israelite: - Shamir [from the margin]."]},{"k":"H8054","v":["שַׁמּוֹת","Shammôwth","sham-moth'","Plural of H8047; ruins; Shammoth, an Israelite: - Shamoth."]},{"k":"H8055","v":["שָׂמַח","sâmach","saw-makh'","A primitive root; probably to brighten up, that is, (figuratively) be (causatively make) blithe or gleesome: - cheer up, be (make) glad, (have make) joy (-ful), be (make) merry, (cause to, make to) rejoice, X very."]},{"k":"H8056","v":["שָׂמֵחַ","sâmêach","saw-may'-akh","From H8055; blithe or gleeful: - (be) glad, joyful, (making) merry ([-hearted]), rejoice (-ing)."]},{"k":"H8057","v":["שִׂמְחָה","simchâh","sim-khaw'","From H8056; blithesomeness or glee, (religious or festival): -    X exceeding (-ly), gladness, joy (-fulness), mirth, pleasure, rejoice (-ing)."]},{"k":"H8058","v":["שָׁמַט","shâmaṭ","shaw-mat'","A primitive root; to fling down; incipiently to jostle; figuratively to let alone, desist, remit: - discontinue, overthrow, release, let rest, shake, stumble, throw down."]},{"k":"H8059","v":["שְׁמִטָּה","shᵉmiṭṭâh","shem-it-taw'","From H8058; remission (of debt) or suspension (of labor): - release."]},{"k":"H8060","v":["שַׁמַּי","Shammay","sham-mah'-ee","From H8073; destructive; Shammai, the name of three Israelites: - Shammai."]},{"k":"H8061","v":["שְׁמִידָע","Shᵉmîydâʻ","shem-ee-daw'","Apparently from H8034 and H3045; name of knowing; Shemida, an Israelite: - Shemida, Shemidah."]},{"k":"H8062","v":["שְׁמִידָעִי","Shᵉmîydâʻîy","shem-ee-daw-ee'","Patronymic from H8061; a Shemidaite (collectively) or descendant of Shemida: - Shemidaites."]},{"k":"H8063","v":["שְׂמִיכָה","sᵉmîykâh","sem-ee-kaw'","From H5564; a rug (as sustaining the Oriental sitter): - mantle."]},{"k":"H8064","v":["שָׁמַיִם","shâmayim","shaw-mah'-yim","The second form being dual of an unused singular; from an unused root meaning to be lofty; the sky (as aloft; the dual perhaps alluding to the visible arch in which the clouds move, as well as to the higher ether where the celestial bodies revolve): - air, X astrologer, heaven (-s)."]},{"k":"H8065","v":["שָׁמַיִן","shâmayin","shaw-mah'-yin","(Chaldee); corresponding to H8064: - heaven."]},{"k":"H8066","v":["שְׁמִינִי","shᵉmîynîy","shem-ee-nee'","From H8083; eight: - eight."]},{"k":"H8067","v":["שְׁמִינִית","shᵉmîynîyth","shem-ee-neeth'","Feminine of H8066; probably an eight stringed lyre: - Sheminith."]},{"k":"H8068","v":["שָׁמִיר","shâmîyr","shaw-meer'","From H8104 in the original sense of pricking; a thorn; also (from its keenness for scratching) a gem, probably the diamond: - adamant (stone), brier, diamond."]},{"k":"H8069","v":["שָׁמִיר","Shâmîyr","shaw-meer'","The same as H8068; Shamir, the name of two places in Palestine: - Shamir. Compare H8053."]},{"k":"H8070","v":["שְׁמִירָמוֹת","Shᵉmîyrâmôwth","shem-ee-raw-moth'","Probably from H8034 and plural of H7413; name of heights; Shemiramoth, the name of two Israelites: - Shemiramoth."]},{"k":"H8071","v":["שִׂמְלָה","simlâh","sim-law'","Perhaps by permutation for the feminine of H5566 (through the idea of a cover assuming the shape of the object beneath); a dress, especially a mantle: - apparel, cloth (-es, -ing), garment, raiment. Compare H8008."]},{"k":"H8072","v":["שַׂמְלָה","Samlâh","sam-law'","Probably for the same se H8071; Samlah, an Edomite: - Samlah."]},{"k":"H8073","v":["שַׁמְלַי","Shamlay","sham-lah'-ee","From H8014; Shamlai, one of the Nethinim: - Shalmai [from the margin]."]},{"k":"H8074","v":["שָׁמֵם","shâmêm","shaw-mame'","A primitive root; to stun (or intransitively grow numb), that is, devastate or (figuratively) stupefy (both usually in a passive sense): - make amazed, be astonied, (be an) astonish (-ment), (be, bring into, unto, lay, lie, make) desolate (-ion, places), be destitute, destroy (self), (lay, lie, make) waste, wonder."]},{"k":"H8075","v":["שְׁמַם","shᵉmam","shem-am'","(Chaldee); corresponding to H8074: - be astonied."]},{"k":"H8076","v":["שָׁמֵם","shâmêm","shaw-mame'","From H8074; ruined: - desolate."]},{"k":"H8077","v":["שְׁמָמָה","shᵉmâmâh","shem-aw-maw'","Feminine of H8076; devastation; figuratively astonishment: - (laid, X most) desolate (-ion), waste."]},{"k":"H8078","v":["שִׁמָּמוֹן","shimmâmôwn","shim-maw-mone'","From H8074; stupefaction: - astonishment."]},{"k":"H8079","v":["שְׂמָמִית","sᵉmâmîyth","sem-aw-meeth'","Probably from H8074 (in the sense of poisoning); a lizard (from the superstition of its noxiousness): - spider."]},{"k":"H8080","v":["שָׁמַן","shâman","shaw-man'","A primitive root; to shine, that is, (by analogy) be (causatively make) oily or gross: - become (make, wax) fat."]},{"k":"H8081","v":["שֶׁמֶן","shemen","sheh'-men","From H8080; grease, especially liquid (as from the olive, often perfumed); figuratively richness: - anointing, X fat (things), X fruitful, oil ([-ed]), ointment, olive, + pine."]},{"k":"H8082","v":["שָׁמֵן","shâmên","shaw-mane'","From H8080; greasy, that is, gross; figuratively rich: - fat, lusty, plenteous."]},{"k":"H8083","v":["שְׁמֹנֶה","shᵉmôneh","shem-o-neh'","Apparently from H8082 through the idea of plumpness; a cardinal number, eight (as if a surplus above the “perfect” seven); also (as ordinal) eighth: - eight ([-een, -eenth]), eighth."]},{"k":"H8084","v":["שְׁמֹנִים","shᵉmônîym","shem-o-neem'","Multiplicative from H8083; eighty; also eightieth: - eighty (-ieth), fourscore."]},{"k":"H8085","v":["שָׁמַע","shâmaʻ","shaw-mah'","A primitive root; to hear intelligently (often with implication of attention, obedience, etc.; causatively to tell, etc.): -    X attentively, call (gather) together, X carefully, X certainly, consent, consider, be content, declare, X diligently, discern, give ear, (cause to, let, make to) hear (-ken, tell), X indeed, listen, make (a) noise, (be) obedient, obey, perceive, (make a) proclaim (-ation), publish, regard, report, shew (forth), (make a) sound, X surely, tell, understand, whosoever [heareth], witness."]},{"k":"H8086","v":["שְׁמַע","shᵉmaʻ","shem-ah'","(Chaldee); corresponding to H8085: - hear, obey."]},{"k":"H8087","v":["שֶׁמַע","Shemaʻ","sheh'-mah","For the same as H8088; Shema, the name of a place in Palestine and of four Israelites: - Shema."]},{"k":"H8088","v":["שֵׁמַע","shêmaʻ","shay'-mah","From H8085; something heard, that is, a sound, rumor, announcement; abstractly audience: - bruit, fame, hear (-ing), loud, report, speech, tidings."]},{"k":"H8089","v":["שֹׁמַע","shômaʻ","sho'-mah","From H8085; a report: - fame."]},{"k":"H8090","v":["שְׁמָע","Shᵉmâʻ","shem-aw'","For H8087; Shema, a place in Palestine: - Shema."]},{"k":"H8091","v":["שָׁמָע","Shâmâʻ","shaw-maw'","From H8085; obedient; Shama, an Israelite: - Shama."]},{"k":"H8092","v":["שִׁמְעָא","Shimʻâʼ","shim-aw'","For H8093; Shima, the name of four Israelites: - Shimea, Shimei, Shamma."]},{"k":"H8093","v":["שִׁמְעָה","Shimʻâh","shim-aw'","Feminine of H8088; annunciation; Shimah, an Israelite: - Shimeah."]},{"k":"H8094","v":["שְׁמָעָה","Shᵉmâʻâh","shem-aw-aw'","For H8093; Shemaah, an Israelite: - Shemaah."]},{"k":"H8095","v":["שִׁמְעוֹן","Shimʻôwn","shim-one'","From H8085; hearing; Shimon, one of Jacob’s sons, also the tribe descendant from him: - Simeon."]},{"k":"H8096","v":["שִׁמְעִי","Shimʻîy","shim-ee'","From H8088; famous; Shimi, the name of twenty Israelites: - Shimeah [from the margin], Shimei, Shimhi, Shimi."]},{"k":"H8097","v":["שִׁמְעִי","Shimʻîy","shim-ee'","Patronymic from H8096; a Shimite (collectively) or descendant of Shimi: - of Shimi, Shimites."]},{"k":"H8098","v":["שְׁמַעְיָה","Shᵉmaʻyâh","shem-aw-yaw'","From H8085 and H3050; Jah has heard; Shemajah, the name of twenty five Israelites: - Shemaiah."]},{"k":"H8099","v":["שִׁמְעֹנִי","Shimʻônîy","shim-o-nee'","Patronymic from H8095; a Shimonite (collectively) or descendant of Shimon: - tribe of Simeon, Simeonites."]},{"k":"H8100","v":["שִׁמְעַת","Shimʻath","shim-awth'","Feminine of H8088; annunciation; Shimath, an Ammonitess: - Shimath."]},{"k":"H8101","v":["שִׁמְעָתִי","Shimʻâthîy","shim-aw-thee'","Patronymic from H8093; a Shimathite (collectively) or descendant of Shimah: - Shimeathites."]},{"k":"H8102","v":["שֶׁמֶץ","shemets","sheh'-mets","From an unused root meaning to emit a sound; an inkling: - a little."]},{"k":"H8103","v":["שִׁמְצָה","shimtsâh","shim-tsaw'","Feminine of H8102; scornful whispering (of hostile spectators): - shame."]},{"k":"H8104","v":["שָׁמַר","shâmar","shaw-mar'","A primitive root; properly to hedge about (as with thorns), that is, guard; generally to protect, attend to, etc.: - beware, be circumspect, take heed (to self), keep (-er, self), mark, look narrowly, observe, preserve, regard, reserve, save (self), sure, (that lay) wait (for), watch (-man)."]},{"k":"H8105","v":["שֶׁמֶר","shemer","sheh'-mer","From H8104; something preserved, that is, the settlings (plural only) of wine: - dregs, (wines on the) lees."]},{"k":"H8106","v":["שֶׁמֶר","Shemer","sheh'-mer","The same as H8105; Shemer, the name of three Israelites: - Shamer, Shemer."]},{"k":"H8107","v":["שִׁמֻּר","shimmur","shim-moor'","From H8104; an observance: -  X be (much) observed."]},{"k":"H8108","v":["שׇׁמְרָה","shomrâh","shom-raw'","Feminine of an unused noun from H8104 meaning a guard; watchfulness: - watch."]},{"k":"H8109","v":["שְׁמֻרָה","shᵉmurâh","shem-oo-raw'","Feminine of passive participle of H8104; something guarded, that is, an eye lid: - waking."]},{"k":"H8110","v":["שִׁמְרוֹן","Shimrôwn","shim-rone'","From H8105 in its original sense; guardianship; Shimron, the name of an Israelite and of a place in Palestine: - Shimron."]},{"k":"H8111","v":["שֹׁמְרוֹן","Shômᵉrôwn","sho-mer-one'","From the active participle of H8104; watch station; Shomeron, a place in Palestine: - Samaria."]},{"k":"H8112","v":["שִׁמְרוֹן מְראוֹן","Shimrôwn Mᵉrʼôwn","shim-rone' mer-one'","From H8110 and a derivative of H4754; guard of lashing; Shimron Meron, a place in Palestine: - Shimon-meron."]},{"k":"H8113","v":["שִׁמְרִי","Shimrîy","shim-ree'","From H8105 in its original sense; watchful; Shimri, the name of four Israelites: - Shimri."]},{"k":"H8114","v":["שְׁמַרְיָה","Shᵉmaryâh","shem-ar-yaw'","From H8104 and H3050; Jah has guarded; Shemarjah, the name of four Israelites: - Shamariah, Shemariah."]},{"k":"H8115","v":["שׇׁמְרַיִן","Shomrayin","shom-rah'-yin","(Chaldee); corresponding to H8111; Shomrain, a place in Palestine: - Samaria."]},{"k":"H8116","v":["שִׁמְרִית","Shimrîyth","shim-reeth'","Feminine of H8113; female guard; Shimrith, a Moabitess: - Shimrith."]},{"k":"H8117","v":["שִׁמְרֹנִי","Shimrônîy","shim-ro-nee'","Patronymic from H8110; a Shimronite (collectively) or descendant of Shimron: - Shimronites."]},{"k":"H8118","v":["שֹׁמרֹנִי","Shômrônîy","sho-mer-o-nee'","Patrial from H8111; a Shomeronite (collectively) or inhabitant of Shomeron: - Samaritans."]},{"k":"H8119","v":["שִׁמְרָת","Shimrâth","shim-rawth'","From H8104; guardship; Shimrath, an Israelite: - Shimrath."]},{"k":"H8120","v":["שְׁמַשׁ","shᵉmash","shem-ash'","(Chaldee); corresponding to the root of H8121 through the idea of activity implied in daylight; to serve: - minister."]},{"k":"H8121","v":["שֶׁמֶשׁ","shemesh","sheh'-mesh","From an unused root meaning to be brilliant; the sun; by implication the east; figuratively a ray, that is, (architecturally) a notched battlement: -    + east side (-ward), sun ([rising]), + west (-ward), window. See also H1053."]},{"k":"H8122","v":["שֶׁמֶשׁ","shemesh","sheh'-mesh","(Chaldee); corresponding to H8121; to sun: - sun."]},{"k":"H8123","v":["שִׁמְשׁוֹן","Shimshôwn","shim-shone'","From H8121; sunlight; Shimshon, an Israelite: - Samson."]},{"k":"H8124","v":["שִׁמְשַׁי","Shimshay","shim-shah'-ee","(Chaldee); from H8122; sunny; Shimshai, a Samaritan: - Shimshai."]},{"k":"H8125","v":["שַׁמְשְׁרַי","Shamshᵉray","sham-sher-ah'-ee","Apparently from H8121; sunlike; Shamsherai, an Israelite: - Shamsherai."]},{"k":"H8126","v":["שֻׁמָתִי","Shumâthîy","shoo-maw-thee'","Patronymic from an unused name from H7762 probably meaning garlic smell; a Shumathite (collectively) or descendant of Shumah: - Shumathites."]},{"k":"H8127","v":["שֵׁן","shên","shane","From H8150; a tooth (as sharp); specifically (for H8143) ivory; figuratively a cliff: - crag, X forefront, ivory, X sharp, tooth."]},{"k":"H8128","v":["שֵׁן","shên","shane","(Chaldee); corresponding to H8127; a tooth: - tooth."]},{"k":"H8129","v":["שֵׁן","Shên","shane","The same as H8127; crag; Shen, a palce in Palestine: - Shen."]},{"k":"H8130","v":["שָׂנֵא","sânêʼ","saw-nay'","A primitive root; to hate (personally): - enemy, foe, (be) hate (-ful, -r), odious, X utterly."]},{"k":"H8131","v":["שְׂנֵא","sᵉnêʼ","sen-ay'","(Chaldee); corresponding to H8130: - hate."]},{"k":"H8132","v":["שָׁנָא","shânâʼ","shaw-naw'","A primitive root; to alter: - change."]},{"k":"H8133","v":["שְׁנָא","shᵉnâʼ","shen-aw'","(Chaldee); corresponding to H8132: - alter, change, (be) diverse."]},{"k":"H8134","v":["שִׁנְאָב","Shinʼâb","shin-awb'","Probably from H8132 and H1; a father has turned; Shinab, a Canaanite: - Shinab."]},{"k":"H8135","v":["שִׂנְאָה","sinʼâh","sin-aw'","From H8130; hate: -  + exceedingly, hate (-ful, -red)."]},{"k":"H8136","v":["שִׁנְאָן","shinʼân","shin-awn'","From H8132; change, that is, repetition: -  X angels."]},{"k":"H8137","v":["שֶׁנְאַצַּר","Shenʼatstsar","shen-ats-tsar'","Apparently of Babylonian origin; Shenatstsar, an Israelite: - Senazar."]},{"k":"H8138","v":["שָׁנָה","shânâh","shaw-naw'","A primitive root; to fold, that is, duplicate (literally or figuratively (); by implication to transmute (transitively or intransitively): - do (speak, strike) again, alter, double, (be given to) change, disguise, (be) diverse, pervert, prefer, repeat, return, do the second time."]},{"k":"H8139","v":["שְׁנָה","shᵉnâh","shen-aw'","(Chaldee); corresponding to H8142: - sleep."]},{"k":"H8140","v":["שְׁנָה","shᵉnâh","shen-aw'","(Chaldee); corresponding to H8141: - year."]},{"k":"H8141","v":["שָׁנֶה","shâneh","shaw-neh'","(The first form being in plural only, the second form being feminine); from H8138; a year (as a revolution of time): -    + whole age, X long, + old, year (X -ly)."]},{"k":"H8142","v":["שֵׁנָה","shênâh","shay-naw'","(The second form used in Psa_127:2); from H3462; sleep: - sleep."]},{"k":"H8143","v":["שֶׁנְהַבִּים","shenhabbîym","shen-hab-beem'","From H8127 and the plural apparently of a foreign word; probably tooth of elephants, that is, ivory tusk: - ivory."]},{"k":"H8144","v":["שָׁנִי","shânîy","shaw-nee'","Of uncertain derivation; crimson, properly the insect or its color, also stuff dyed with it: - crimson, scarlet (thread)."]},{"k":"H8145","v":["שֵׁנִי","shênîy","shay-nee'","From H8138; properly double, that is, second; also adverbially again: - again, either [of them], (an-) other, second (time)."]},{"k":"H8146","v":["שָׂנִיא","sânîyʼ","saw-nee'","From H8130; hated: - hated."]},{"k":"H8147","v":["שְׁנַיִם","shᵉnayim","shen-ah'-yim","(The first form being dual of H8145; the second form being feminine); two; also (as ordinal) twofold: - both, couple, double, second, twain, + twelfth, + twelve, + twenty (sixscore) thousand, twice, two."]},{"k":"H8148","v":["שְׁנִינָה","shᵉnîynâh","shen-ee-naw'","From H8150; something pointed, that is, a gibe: - byword, taunt."]},{"k":"H8149","v":["שְׁנִיר","Shᵉnîyr","shen-eer'","From an unused root meaning to be pointed; peak; Shenir or Senir, a summit of Lebanon: - Senir, Shenir."]},{"k":"H8150","v":["שָׁנַן","shânan","shaw-nan'","A primitive root; to point (transitively or intransitively); intensively to pierce; figuratively to inculcate: - prick, sharp (-en), teach diligently, whet."]},{"k":"H8151","v":["שָׁנַס","shânaç","shaw-nas'","A primitive root; to compress (with a belt): - gird up."]},{"k":"H8152","v":["שִׁנְעָר","Shinʻâr","shin-awr'","Probably of foreign derivation; Shinar, a plain in Babylon: - Shinar."]},{"k":"H8153","v":["שְׁנָת","shᵉnâth","shen-awth'","From H3462; sleep: - sleep."]},{"k":"H8154","v":["שָׁסָה","shâçâh","shaw-saw'","(The second form being used in Isa_10:13); a primitive root; to plunder: - destroyer, rob, spoil (-er)."]},{"k":"H8155","v":["שָׁסַס","shâçaç","shaw-sas'","A primitive root; to plunder: - rifle, spoil."]},{"k":"H8156","v":["שָׁסַע","shâçaʻ","shaw-sah'","A primitive root; to split or tear; figuratively to upbraid: - cleave, (be) cloven ([footed]), rend, stay."]},{"k":"H8157","v":["שֶׁסַע","sheçaʻ","sheh'-sah","From H8156; a fissure: - cleft, clovenfooted."]},{"k":"H8158","v":["שָׁסַף","shâçaph","shaw-saf'","A primitive root; to cut in pieces, that is, slaughter: - hew in pieces."]},{"k":"H8159","v":["שָׁעָה","shâʻâh","shaw-aw'","A primitive root; to gaze at or about (properly for help); by implication to inspect, consider, compassionate, be nonplussed (as looking around in amazement) or bewildered: - depart, be dim, be dismayed, look (away), regard, have respect, spare, turn."]},{"k":"H8160","v":["שָׁעָה","shâʻâh","shaw-aw'","(Chaldee); from a root corresponding to H8159; properly a look, that is, a moment: - hour."]},{"k":"H8161","v":["שַׁעֲטָה","shaʻăṭâh","shah'-at-aw","Feminine from an unused root meaning to stamp; a clatter (of hoofs): - stamping."]},{"k":"H8162","v":["שַׁעַטְנֵז","shaʻaṭnêz","shah-at-naze'","Probably of foreign derivation; linsey woolsey, that is, cloth of linen and wool carded and spun together: - garment of divers sorts, linen and woollen."]},{"k":"H8163","v":["שָׂעִיר","sâʻîyr","saw-eer'","From H8175; shaggy; as noun, a he goat; by analogy a faun: - devil, goat, hairy, kid, rough, satyr."]},{"k":"H8164","v":["שָׂעִיר","sâʻîyr","saw-eer'","Formed the same as H8163; a shower (as tempestuous): - small rain."]},{"k":"H8165","v":["שֵׂעִיר","Sêʻîyr","say-eer'","Formed like H8163; rough; Seir, a mountain of Idumaea and its aboriginal occupants, also one in Palestine: - Seir."]},{"k":"H8166","v":["שְׂעִירָה","sᵉʻîyrâh","seh-ee-raw'","Feminine of H8163; a she goat: - kid."]},{"k":"H8167","v":["שְׂעִירָה","Sᵉʻîyrâh","seh-ee-raw'","Formed as H8166; roughness; Seirah, a place in Palestine: - Seirath."]},{"k":"H8168","v":["שֹׁעַל","shôʻal","sho'-al","From an unused root meaning to hollow out; the palm; by extension a handful: - handful, hollow of the band."]},{"k":"H8169","v":["שַׁעַלְבִים","Shaʻalbîym","shah-al-beem'","Plural from H7776; fox holes; Shaalbim or Shaalabbin, a place in Palestine: - Shaalabbin, Shaalbim."]},{"k":"H8170","v":["שַׁעַלְבֹנִי","Shaʻalbônîy","shah-al-bo-nee'","Patrial from H8169; a Shaalbonite or inhabitant of Shaalbin: - Shaalbonite."]},{"k":"H8171","v":["שַׁעֲלִים","Shaʻălîym","shah-al-eem'","Plural of H7776; foxes; Shaalim, a place in Palestine: - Shalim."]},{"k":"H8172","v":["שָׁעַן","shâʻan","shaw-an'","A primitive root; to support one’s self: - lean, lie, rely, rest (on, self), stay."]},{"k":"H8173","v":["שָׁעַע","shâʻaʻ","shaw-ah'","A primitive root; (in a good acceptation) to look upon (with complacency), that is, fondle, please or amuse (self); (in a bad one) to look about (in dismay), that is, stare. (cry out is by confusion with H7768.): - cry (out) [by confusion with H7768], dandle, delight (self), play, shut."]},{"k":"H8174","v":["שַׁעַף","Shaʻaph","shah'-af","From H5586; fluctuation; Shaaph, the name of two Israelites: - Shaaph."]},{"k":"H8175","v":["שָׂעַר","sâʻar","saw-ar'","A primitive root; to storm; by implication to shiver, that is, fear: - be (horribly) afraid, fear, hurl as a storm, be tempestuous, come like (take away as with) a whirlwind."]},{"k":"H8176","v":["שָׁעַר","shâʻar","shaw-ar'","A primitive root; to split or open, that is, (literally, but only as denominative from H8179) to act as gate keeper (see H7778); (figuratively) to estimate: - think."]},{"k":"H8177","v":["שְׂעַר","sᵉʻar","seh-ar'","(Chaldee); corresponding to H8181; hair: - hair."]},{"k":"H8178","v":["שַׂעַר","saʻar","sah'-ar","From H8175; a tempest; also a terror: - affrighted, X horribly, X sore, storm. See H8181."]},{"k":"H8179","v":["שַׁעַר","shaʻar","shah'-ar","From H8176 in its original sense; an opening, that is, door or gate: - city, door, gate, port (X -er)."]},{"k":"H8180","v":["שַׁעַר","shaʻar","shah'-ar","From H8176; a measure (as a section): - [hundred-] fold."]},{"k":"H8181","v":["שֵׂעָר","sêʻâr","say-awr'","(The second form used in Isa_7:20); from H8175 in the sense of dishevelling; hair (as if tossed or bristling): - hair (-y), X rough."]},{"k":"H8182","v":["שֹׁעָר","shôʻâr","sho-awr'","From H8176; harsh or horrid, that is, offensive: - vile."]},{"k":"H8183","v":["שְׂעָרָה","sᵉʻârâh","seh-aw-raw'","Feminine of H8178; a hurricane: - storm, tempest."]},{"k":"H8184","v":["שְׂעֹרָה","sᵉʻôrâh","seh-o-raw'","(The feminine form meaning the plant and the masculine form meaning the grain (second form)); from H8175 in the sense of roughness; barley (as villose): - barley."]},{"k":"H8185","v":["שַׂעֲרָה","saʻărâh","sah-ar-aw'","Feminine of H8181; hairiness: - hair."]},{"k":"H8186","v":["שַׁעֲרוּרָה","shaʻărûwrâh","shah-ar-oo-raw'","Feminine from H8176 in the sense of H8175; something fearful: - horrible thing."]},{"k":"H8187","v":["שְׁעַרְיָה","Shᵉʻaryâh","sheh-ar-yaw'","From H8176 and H3050; Jah has stormed; Shearjah, an Israelite: - Sheariah."]},{"k":"H8188","v":["שְׂעֹרִים","Sᵉʻôrîym","seh-o-reem'","Masculine plural of H8184; barley grains; Seorim, an Israelite: - Seorim."]},{"k":"H8189","v":["שַׁעֲרַיִם","Shaʻărayim","shah-ar-ah'-yim","Dual of H8179; double gates; Shaarajim, a place in Palestine: - Shaaraim."]},{"k":"H8190","v":["שַׁעַשְׁגַּז","Shaʻashgaz","shah-ash-gaz'","Of Persian derivation; Shaashgaz, a eunuch of Xerxes: - Shaashgaz."]},{"k":"H8191","v":["שַׁעְשֻׁעַ","shaʻshuaʻ","shah-shoo'-ah","From H8173; enjoyment: - delight, pleasure."]},{"k":"H8192","v":["שָׁפָה","shâphâh","shaw-faw'","A primitive root; to abrade, that is, bare: - high, stick out."]},{"k":"H8193","v":["שָׂפָה","sâphâh","saw-faw'","(The second form is in dual and plural); Probably from H5595 or H8192 through the idea of termination (compare H5490); the lip (as a natural boundary); by implication language; by analogy a margin (of a vessel, water, cloth, etc.): - band, bank, binding, border, brim, brink, edge, language, lip, prating, ([sea-]) shore, side, speech, talk, [vain] words."]},{"k":"H8194","v":["שָׁפָה","shâphâh","shaw-faw'","From H8192 in the sense of clarifying; a cheese (as strained from the whey): - cheese."]},{"k":"H8195","v":["שְׁפוֹ","Shᵉphôw","shef-o'","From H8192; baldness (compare H8205); Shepho or Shephi, an Idumaean: - Shephi, Shepho."]},{"k":"H8196","v":["שְׁפוֹט","shᵉphôwṭ","shef-ote'","From H8199; a judicial sentence, that is, punishment: - judgment."]},{"k":"H8197","v":["שְׁפוּפָם","Shᵉphûwphâm","shef-oo-fawm'","From the same as H8207; serpent like; Shephupham or Shephuphan, an Israelite: - Shephuphan, Shupham."]},{"k":"H8198","v":["שִׁפְחָה","shiphchâh","shif-khaw'","Feminine from an unused root meaning to spread out (as a family; see H4940); a female slave (as a member of the household): - (bond-, hand-) maid (-en, -servant), wench, bondwoman, womanservant."]},{"k":"H8199","v":["שָׁפַט","shâphaṭ","shaw-fat'","A primitive root; to judge, that is, pronounce sentence (for or against); by implication to vindicate or punish; by extension to govern; passively to litigate (literally or figuratively): -    + avenge, X that condemn, contend, defend, execute (judgment), (be a) judge (-ment), X needs, plead, reason, rule."]},{"k":"H8200","v":["שְׁפַט","shᵉphaṭ","shef-at'","(Chaldee); corresponding to H8199; to judge: - magistrate."]},{"k":"H8201","v":["שֶׁפֶט","shepheṭ","sheh'-fet","From H8199; a sentence, that is, infliction: - judgment."]},{"k":"H8202","v":["שָׁפָט","Shâphâṭ","shaw-fawt'","From H8199; judge; Shaphat, the name of four Israelites: - Shaphat."]},{"k":"H8203","v":["שְׁפַטְיָה","Shᵉphaṭyâh","shef-at-yaw'","From H8199 and H3050; Jah has judged; Shephatjah, the name of ten Israelites: - Shephatiah."]},{"k":"H8204","v":["שִׁפְטָן","Shiphṭân","shif-tawn'","From H8199; judge like; Shiphtan, an Israelite."]},{"k":"H8205","v":["שְׁפִי","shᵉphîy","shef-ee'","From H8192; bareness; concretely a bare hill or plain: - high place, stick out."]},{"k":"H8206","v":["שֻׁפִּים","Shuppîym","shoop-peem'","Plural of an unused noun from the same as H8207 and meaning the same; serpents; Shuppim, an Israelite: - Shuppim."]},{"k":"H8207","v":["שְׁפִיפֹן","shᵉphîyphôn","shef-ee-fone'","From an unused root meaning the same as H7779; a kind of serpent (as snapping), probably the cerastes or horned adder: - adder."]},{"k":"H8208","v":["שָׁפִיר","Shâphîyr","shaf-eer'","From H8231; beautiful; Shaphir, a place in Palestine: - Saphir."]},{"k":"H8209","v":["שַׁפִּיר","shappîyr","shap-peer'","(Chaldee); intensive of a form corresponding to H8208; beautiful: - fair."]},{"k":"H8210","v":["שָׁפַךְ","shâphak","shaw-fak'","A primitive root; to spill forth (blood, a libation, liquid metal; or even a solid, that is, to mound up); also (figuratively) to expend (life, soul, complaint, money, etc.); intensively to sprawl out: - cast (up), gush out, pour (out), shed (-der, out), slip."]},{"k":"H8211","v":["שֶׁפֶךְ","shephek","sheh'-fek","From H8210; an emptying place, for example an ash heap: - are poured out."]},{"k":"H8212","v":["שׇׁפְכָה","shophkâh","shof-kaw'","Feminine of a derivative from H8210; a pipe (for pouring forth, for example wine), that is, the penis: - privy member."]},{"k":"H8213","v":["שָׁפֵל","shâphêl","shaw-fale'","A primitive root; to depress or sink (especially figuratively to humiliate, intransitively or transitively): - abase, bring (cast, put) down, debase, humble (self), be (bring, lay, make, put) low (-er)."]},{"k":"H8214","v":["שְׁפַל","shᵉphal","shef-al'","(Chaldee); corresponding to H8213: - abase, humble, put down, subdue."]},{"k":"H8215","v":["שְׁפַל","shᵉphal","shef-al'","(Chaldee); from H8214; low: - basest."]},{"k":"H8216","v":["שֶׁפֶל","shephel","shay'-fel","From H8213; an humble rank: - low estate (place)."]},{"k":"H8217","v":["שָׁפָל","shâphâl","shaw-fawl'","From H8213; depressed, literally or figuratively: - base (-st), humble, low (-er, -ly)."]},{"k":"H8218","v":["שִׁפְלָה","shiphlâh","shif-law'","Feminine of H8216; depression: - low place."]},{"k":"H8219","v":["שְׁפֵלָה","shᵉphêlâh","shef-ay-law'","From H8213; Lowland, that is, (with the article) the maritime slope of Palestine: - low country, (low) plain, vale (-ley)."]},{"k":"H8220","v":["שִׁפְלוּת","shiphlûwth","shif-looth'","From H8213; remissness: - idleness."]},{"k":"H8221","v":["שְׁפָם","Shᵉphâm","shef-awm'","Probably from H8192; bare spot; Shepham, a place in or near Palestine: - Shepham."]},{"k":"H8222","v":["שָׂפָם","sâphâm","saw-fawm'","From H8193; the beard (as a lip piece): - beard, (upper) lip."]},{"k":"H8223","v":["שָׁפָם","Shâphâm","shaw-fawm'","Formed like H8221; baldly; Shapham, an Israelite: - Shapham."]},{"k":"H8224","v":["שִׂפְמוֹת","Siphmôwth","sif-moth'","Feminine plural of H8221; Siphmoth, a place in Palestine: - Siphmoth."]},{"k":"H8225","v":["שִׁפְמִי","Shiphmîy","shif-mee'","Patrial from H8221; a Shiphmite or inhabitant of Shepham: - Shiphmite."]},{"k":"H8226","v":["שָׂפַן","sâphan","saw-fan'","A primitive root; to conceal (as a valuable): - treasure."]},{"k":"H8227","v":["שָׁפָן","shâphân","shaw-fawn'","From H8226; a species of rock rabbit (from its hiding), that is, probably the hyrax: - coney."]},{"k":"H8228","v":["שֶׁפַע","shephaʻ","sheh'-fah","From an unused root meaning to abound; resources: - abundance."]},{"k":"H8229","v":["שִׁפְעָה","shiphʻâh","shif-aw'","Feminine of H8228; copiousness: - abundance, company, multitude."]},{"k":"H8230","v":["שִׁפְעִי","Shiphʻîy","shif-ee'","From H8228; copious; Shiphi, an Israelite: - Shiphi."]},{"k":"H8231","v":["שָׁפַר","shâphar","shaw-far'","A primitive root; to glisten, that is, (figuratively) be (causatively make) fair: -  X goodly."]},{"k":"H8232","v":["שְׁפַר","shᵉphar","shef-ar'","(Chaldee); corresponding to H8231; to be beautiful: - be acceptable, please, + think good."]},{"k":"H8233","v":["שֶׁפֶר","shepher","sheh'-fer","From H8231; beauty: -  X goodly."]},{"k":"H8234","v":["שֶׁפֶר","Shepher","sheh'-fer","The same as H8233; Shepher, a place in the Desert: - Shapper."]},{"k":"H8235","v":["שִׁפְרָה","shiphrâh","shif-raw'","From H8231; brightness: - garnish."]},{"k":"H8236","v":["שִׁפְרָה","Shiphrâh","shif-raw'","The same as H8235; Shiphrah, an Israelitess: - Shiphrah."]},{"k":"H8237","v":["שַׁפְרוּר","shaphrûwr","shaf-roor'","From H8231; splendid, that is, a tapestry or canopy: - royal pavilion."]},{"k":"H8238","v":["שְׁפַרְפַר","shᵉpharphar","shef-ar-far'","(Chaldee); from H8231; the dawn (as brilliant with aurora): -    X very early in the morning."]},{"k":"H8239","v":["שָׁפַת","shâphath","shaw-fath'","A primitive root; to locate, that is, (generally) hang on or (figuratively) establish, reduce: - bring, ordain, set on."]},{"k":"H8240","v":["שָׁפָת","shâphâth","shaw-fawth'","From H8239; a (double) stall (for cattle); also a (two pronged) hook (for flaying animals on): - hook, pot."]},{"k":"H8241","v":["שֶׁצֶף","shetseph","sheh'-tsef","From H7857 (for alliteration with H7110); an outburst (of anger): - little."]},{"k":"H8242","v":["שַׂק","saq","sak","From H8264; properly a mesh (as allowing a liquid to run through), that is, coarse loose cloth or sacking (used in mourning and for bagging); hence a bag (for grain, etc.): - sack (-cloth, -clothes)."]},{"k":"H8243","v":["שָׁק","shâq","shawk","(Chaldee); corresponding to H7785; the leg: - leg."]},{"k":"H8244","v":["שָׂקַד","sâqad","saw-kad'","A primitive root; to fasten: - bind."]},{"k":"H8245","v":["שָׁקַד","shâqad","shaw-kad'","A primitive root; to be alert, that is, sleepless; hence to be on the lookout (whether for good or ill): - hasten, remain, wake, watch (for)."]},{"k":"H8246","v":["שָׁקַד","shâqad","shaw-kad'","A denominative from H8247; to be (intensively make) almond shaped: - make like (unto, after the fashion of) almonds."]},{"k":"H8247","v":["שָׁקֵד","shâqêd","shaw-kade'","From H8245; the almond (tree or nut; as being the earliest in bloom): - almond (tree)."]},{"k":"H8248","v":["שָׁקָה","shâqâh","shaw-kaw'","A primitive root; to quaff, that is, (causatively) to irrigate or furnish a potion to: - cause to (give, give to, let, make to) drink, drown, moisten, water. See H7937, H8354."]},{"k":"H8249","v":["שִׁקֻּו","shiqquv","shif-koov'","From H8248; (plural collectively) a draught: - drink."]},{"k":"H8250","v":["שִׁקּוּי","shiqqûwy","shik-koo'-ee","From H8248; a beverage; moisture, that is, (figuratively) refreshment: - drink, marrow."]},{"k":"H8251","v":["שִׁקּוּץ","shiqqûwts","shik-koots'","From H8262; disgusting, that is, filthy; especially idolatrous or (concretely) an idol: - abominable filth (idol, -ation), detestable (thing)."]},{"k":"H8252","v":["שָׁקַט","shâqaṭ","shaw-kat'","A primitive root; to repose (usually figuratively): - appease, idleness, (at, be at, be in, give) quiet (-ness), (be at, be in, give, have, take) rest, settle, be still."]},{"k":"H8253","v":["שֶׁקֶט","sheqeṭ","sheh'-ket","From H8252; tranquillity: - quietness."]},{"k":"H8254","v":["שָׁקַל","shâqal","shaw-kal'","A primitive root; to suspend or poise (especially in trade): - pay, receive (-r), spend, X throughly, weigh."]},{"k":"H8255","v":["שֶׁקֶל","sheqel","sheh'-kel","From H8254; probably a weight; used as a commercial standard: - shekel."]},{"k":"H8256","v":["שִׁקְמָה","shiqmâh","shik-maw'","(The second form is feminine); of uncertain derivation; a sycamore (usually the tree): - sycamore (fruit, tree)."]},{"k":"H8257","v":["שָׁקַע","shâqaʻ","shaw-kah'","(Abbreviated in Amo_8:8); a primitive root; to subside; by implication to be overflowed, cease; causatively to abate, subdue: - make deep, let down, drown, quench, sink."]},{"k":"H8258","v":["שְׁקַעְרוּרָה","shᵉqaʻrûwrâh","shek-ah-roo-raw'","From H8257; a depression: - hollow strake."]},{"k":"H8259","v":["שָׁקַף","shâqaph","shaw-kaf'","A primitive root; properly to lean out (of a window), that is, (by implication) peep or gaze (passively be a spectacle): - appear, look (down, forth, out)."]},{"k":"H8260","v":["שֶׁקֶף","sheqeph","sheh'-kef","From H8259; a loophole (for looking out), to admit light and air: - window."]},{"k":"H8261","v":["שָׁקֻף","shâquph","shaw-koof'","Passive participle of H8259; an embrasure or opening (compare H8260) with bevelled jam: - light, window."]},{"k":"H8262","v":["שָׁקַץ","shâqats","shaw-kats'","A primitive root; to be filthy, that is, (intensively) to loathe, pollute: - abhor, make abominable, have in abomination, detest, X utterly."]},{"k":"H8263","v":["שֶׁקֶץ","sheqets","sheh'-kets","From H8262; filth, that is, (figuratively and specifically) an idolatrous object: - abominable (-tion)."]},{"k":"H8264","v":["שָׁקַק","shâqaq","shaw-kak'","A primitive root; to course (like a beast of prey); by implication to seek greedily: - have appetite, justle one against another, long, range, run (to and fro)."]},{"k":"H8265","v":["שָׂקַר","sâqar","saw-kar'","A primitive root; to ogle, that is, blink coquettishly: - wanton."]},{"k":"H8266","v":["שָׁקַר","shâqar","shaw-kar'","A primitive root; to cheat, that is, be untrue (usually in words): - fail, deal falsely, lie."]},{"k":"H8267","v":["שֶׁקֶר","sheqer","sheh'-ker","From H8266; an untruth; by implication a sham (often adverbially): - without a cause, deceit (-ful), false (-hood, -ly), feignedly, liar, + lie, lying, vain (thing), wrongfully."]},{"k":"H8268","v":["שֹׁקֶת","shôqeth","sho'-keth","From H8248; a trough (for watering): - trough."]},{"k":"H8269","v":["שַׂר","sar","sar","From H8323; a head person (of any rank or class): - captain (that had rule), chief (captain), general, governor, keeper, lord, ([-task-]) master, prince (-ipal), ruler, steward."]},{"k":"H8270","v":["שֹׁר","shôr","shore","From H8324; a string (as twisted (compare H8306)), that is, (specifically) the umbilical cord (also figuratively as the centre of strength): - navel."]},{"k":"H8271","v":["שְׁרֵא","shᵉrêʼ","sher-ay'","(Chaldee); a root corresponding to that of H8293; to free, separate; figuratively to unravel, commence; by implication (of unloading beasts) to reside: - begin dissolve, dwell, loose."]},{"k":"H8272","v":["שַׁרְאֶצֶר","Sharʼetser","shar-eh'-tser","Of foreign derivation; Sharetser, the name of an Assyrian and an Israelite: - Sharezer."]},{"k":"H8273","v":["שָׁרָב","shârâb","shaw-rawb'","From an unused root meaning to glare; quivering glow (of the air), especially the mirage: - heat, parched ground."]},{"k":"H8274","v":["שֵׁרֵבְיָה","Shêrêbᵉyâh","shay-rayb-yaw'","From H8273 and H3050; Jah has brought heat; Sherebjah, the name of two Israelites: - Sherebiah."]},{"k":"H8275","v":["שַׁרְבִיט","sharbîyṭ","shar-beet'","From H7626; a rod of empire: - sceptre."]},{"k":"H8276","v":["שָׂרַג","sârag","saw-rag'","A primitive root; to intwine: - wrap together, wreath."]},{"k":"H8277","v":["שָׂרַד","sârad","saw-rad'","A primitive root; properly to puncture (compare H8279), that is, (figuratively through the idea of slipping out) to escape or survive: - remain."]},{"k":"H8278","v":["שְׂרָד","sᵉrâd","ser-awd'","From H8277; stitching (as pierced with a needle): - service."]},{"k":"H8279","v":["שֶׂרֶד","sered","seh'-red","From H8277; a (carpenter’s) scribing awl (for pricking or scratching measurements): - line."]},{"k":"H8280","v":["שָׂרָה","sârâh","saw-raw'","A primitive root; to prevail: - have power (as a prince)."]},{"k":"H8281","v":["שָׁרָה","shârâh","shaw-raw'","A primitive root; to free: - direct."]},{"k":"H8282","v":["שָׂרָה","sârâh","saw-raw'","Feminine of H8269; a mistress, that is, female noble: - lady, princess, queen."]},{"k":"H8283","v":["שָׂרָה","Sârâh","saw-raw'","The same as H8282; Sarah, Abraham’s wife: - Sarah."]},{"k":"H8284","v":["שָׁרָה","shârâh","shaw-raw'","Probably feminine of H7791; a fortification (literally or figuratively). (“sing” is by mistake for H7891.): - sing [by mistake for H7891], wall."]},{"k":"H8285","v":["שֵׁרָה","shêrâh","shay-raw'","From H8324 in its original sense of pressing; a wrist band (as compact or clasping): - bracelet."]},{"k":"H8286","v":["שְׂרוּג","Sᵉrûwg","ser-oog'","From H8276; tendril; Serug, a postdiluvian patriarch: - Serug."]},{"k":"H8287","v":["שָׁרוּחֶן","Shârûwchen","shaw-roo-khen'","Probably from H8281 (in the sense of dwelling (compare H8271)) and H2580; abode of pleasure; Sharuchen, a place in Palestine: - Sharuhen."]},{"k":"H8288","v":["שְׂרוֹךְ","sᵉrôwk","ser-oke'","From H8308; a thong (as laced or tied): - ([shoe-]) latchet."]},{"k":"H8289","v":["שָׁרוֹן","Shârôwn","shaw-rone'","Probably abridged from H3474; plain; Sharon, the name of a place in Palestine: - Lasharon, Sharon."]},{"k":"H8290","v":["שָׁרוֹנִי","Shârôwnîy","shaw-ro-nee'","Patrial from H8289; a Sharonite or inhabitant of Sharon: - Sharonite."]},{"k":"H8291","v":["שָׂרוּק","sârûwq","sar-ook'","Passive participle from the same as H8321; a grapevine: - principal plant. See H8320, H8321."]},{"k":"H8292","v":["שְׁרוּקָה","shᵉrûwqâh","sher-oo-kaw'","(The second form is by permutation); feminine passive participle of H8319; a whistling (in scorn); by analogy a piping: - bleating, hissing."]},{"k":"H8293","v":["שֵׁרוּת","shêrûwth","shay-rooth'","From H8281 abbreviated; freedom: - remnant."]},{"k":"H8294","v":["שֶׂרַח","Serach","seh'-rakh","By permutation for H5629; superfluity; Serach, an Israelitess: - Sarah, Serah."]},{"k":"H8295","v":["שָׂרַט","sâraṭ","saw-rat'","A primitive root; to gash: - cut in pieces, make [cuttings] pieces."]},{"k":"H8296","v":["שֶׂרֶט","sereṭ","seh'-ret","From H8295; an incision: - cutting."]},{"k":"H8297","v":["שָׂרַי","Sâray","saw-rah'-ee","From H8269; dominative; Sarai, the wife of Abraham: - Sarai."]},{"k":"H8298","v":["שָׁרַי","Shâray","shaw-rah'-ee","Probably from H8324; hostile; Sharay, an Israelite: - Sharai."]},{"k":"H8299","v":["שָׂרִיג","sârîyg","saw-reeg'","From H8276; a tendril (as intwining): - branch."]},{"k":"H8300","v":["שָׂרִיד","sârîyd","saw-reed'","From H8277; a survivor: -  X alive, left, remain (-ing), remnant, rest."]},{"k":"H8301","v":["שָׂרִיד","Sârîyd","suw-reed'","The same as H8300; Sarid, a place in Palestine: - Sarid."]},{"k":"H8302","v":["שִׁרְיוֹן","shiryôwn","shir-yone'","From H8281 in the original sense of turning; a corslet (as if twisted): - breastplate, coat of mail, habergeon, harness. See H5030."]},{"k":"H8303","v":["שִׁרְיוֹן","Shiryôwn","shir-yone'","The same as H8304 (that is, sheeted with snow); Shirjon or Sirjon, a peak of the Lebanon: - Sirion."]},{"k":"H8304","v":["שְׂרָיָה","Sᵉrâyâh","ser-aw-yaw'","From H8280 and H3050; Jah has prevailed; Serajah, the name of nine Israelites: - Seraiah."]},{"k":"H8305","v":["שְׂרִיקָה","sᵉrîyqâh","ser-ee-kaw'","From the same as H8321 in the original sense of piercing; hetchelling (or combing flax), that is, (concretely) tow (by extension linen cloth): - fine."]},{"k":"H8306","v":["שָׁרִיר","shârîyr","shaw-reer'","From H8324 in the original sense as in H8270 (compare H8326); a cord, that is, (by analogy) sinew: - navel."]},{"k":"H8307","v":["שְׁרִירוּת","shᵉrîyrûwth","sher-ee-rooth'","From H8324 in the sense of twisted, that is, firm; obstinacy: - imagination, lust."]},{"k":"H8308","v":["שָׂרַךְ","sârak","saw-rak'","A primitive root; to interlace: - traverse."]},{"k":"H8309","v":["שְׁרֵמָה","shᵉrêmâh","sher-ay-maw'","Probably by orthographical error for H7709; a common: - field."]},{"k":"H8310","v":["שַׂרְסְכִים","Sarçᵉkîym","sar-seh-keem'","Of foreign derivation; Sarsekim, a Babylonian general: - Sarsechim."]},{"k":"H8311","v":["שָׂרַע","sâraʻ","saw-rah'","A primitive root; to prolong, that is, (reflexively) be deformed by excess of members: - stretch out self, (have any) superfluous thing."]},{"k":"H8312","v":["שַׂרְעַף","sarʻaph","sar-af'","For H5587; cogitation: - thought."]},{"k":"H8313","v":["שָׂרַף","sâraph","saw-raf'","A primitive root; to be (causatively set) on fire: - (cause to, make a) burn ([-ing], up), kindle, X utterly."]},{"k":"H8314","v":["שָׂרָף","sârâph","saw-rawf'","From H8313; burning, that is, (figuratively) poisonous (serpent); specifically a saraph or symbolical creature (from their copper color): - fiery (serpent), seraph."]},{"k":"H8315","v":["שָׂרָף","Sârâph","saw-raf'","The same as H8314; Saraph, an Israelite: - Saraph."]},{"k":"H8316","v":["שְׂרֵפָה","sᵉrêphâh","ser-ay-faw'","From H8313; cremation: - burning."]},{"k":"H8317","v":["שָׁרַץ","shârats","shaw-rats'","A primitive root; to wriggle, that is, (by implication) swarm or abound: - breed (bring forth, increase) abundantly (in abundance), creep, move."]},{"k":"H8318","v":["שֶׁרֶץ","sherets","sheh'-rets","From H8317; a swarm, that is, active mass of minute animals: - creep (-ing thing), move (-ing creature)."]},{"k":"H8319","v":["שָׁרַק","shâraq","shaw-rak'","A primitive root; properly to be shrill, that is, to whistle or hiss (as a call or in scorn): - hiss."]},{"k":"H8320","v":["שָׂרֻק","sâruq","saw-rook'","From H8319; bright red (as piercing to the sight), that is, bay: - speckled. See H8291."]},{"k":"H8321","v":["שֹׂרֵק","sôrêq","so-rake'","(The third form is feminine); from H8319 in the sense of redness (compare H8320); a vine stock (properly one yielding purple grapes, the richest variety): - choice (-st, noble) wine. Compare H8291."]},{"k":"H8322","v":["שְׁרֵקָה","shᵉrêqâh","sher-ay-kaw'","From H8319; a derision: - hissing."]},{"k":"H8323","v":["שָׂרַר","sârar","saw-rar'","A primitive root; to have (transitively exercise; reflexively get) dominion: -  X altogether, make self a prince, (bear) rule."]},{"k":"H8324","v":["שָׁרַר","shârar","shaw-rar'","A primitive root; to be hostile (only active participle an opponent): - enemy."]},{"k":"H8325","v":["שָׁרַר","Shârar","shaw-rawr'","From H8324; hostile; Sharar, an Israelite: - Sharar."]},{"k":"H8326","v":["שֹׁרֶר","shôrer","sho'-rer","From H8324 in the sense of twisting (compare H8270); the umbilical cord, that is, (by extension) a bodice: - navel."]},{"k":"H8327","v":["שָׁרַשׁ","shârash","shaw-rash'","A primitive root; to root, that is, strike into the soil, or (by implication) to pluck from it: - (take, cause to take) root (out)."]},{"k":"H8328","v":["שֶׁרֶשׁ","sheresh","sheh'-resh","From H8327; a root (literally or figuratively): - bottom, deep, heel, root."]},{"k":"H8329","v":["שֶׁרֶשׁ","Sheresh","sheh'-resh","The same as H8328; Sheresh, an Israelite: - Sharesh."]},{"k":"H8330","v":["שֹׁרֶשׁ","shôresh","sho'-resh","(Chaldee); corresponding to H8328: - root."]},{"k":"H8331","v":["שַׁרְשָׁה","sharshâh","shar-shaw'","From H8327; a chain (as rooted, that is, linked): - chain. Compare H8333."]},{"k":"H8332","v":["שְׁרֹשׁוּ","shᵉrôshûw","sher-o-shoo'","(Chaldee); from a root corresponding to H8327; eradication, that is, (figuratively) exile: - banishment."]},{"k":"H8333","v":["שַׁרְשְׁרָה","sharshᵉrâh","shar-sher-aw'","From H8327 (compare H8331); a chain; (architecturally) probably a garland: - chain."]},{"k":"H8334","v":["שָׁרַת","shârath","shaw-rath'","A primitive root; to attend as a menial or worshipper; figuratively to contribute to: - minister (unto), (do) serve (-ant, -ice, -itor), wait on."]},{"k":"H8335","v":["שָׁרֵת","shârêth","shaw-rayth'","infinitive of H8334; service (in the Temple): - minister (-ry)."]},{"k":"H8336","v":["שֵׁשׁ","shêsh","shaysh","(The second form for alliteration with H4897); for H7893; bleached stuff, that is, white linen or (by analogy) marble: -    X blue, fine [(twined]) linen, marble, silk."]},{"k":"H8337","v":["שֵׁשׁ","shêsh","shaysh","(The second form is masculine); a primitive number; six (as an overplus (see H7797) beyond five or the fingers of the hand); as ordinal sixth: - six ([-teen, -teenth]), sixth."]},{"k":"H8338","v":["שָׁשָׁא","shâshâʼ","shaw-shaw'","A primitive root; apparently to annihilate. (Translated by confusion with H8341.): - leave but the sixth part [by confusion with H8341]."]},{"k":"H8339","v":["שֵׁשְׁבַּצַּר","Shêshᵉbatstsar","shaysh-bats-tsar'","Of foreign derivation; Sheshbatstsar, Zerubbabel’s Persian name: - Sheshbazzar."]},{"k":"H8340","v":["שֵׁשְׁבַּצַּר","Shêshᵉbatstsar","shaysh-bats-tsar'","(Chaldee); corresponding to H8339: - Sheshbazzar."]},{"k":"H8341","v":["שָׁשָׁה","shâshâh","shaw-shaw'","A denominative from H8337; to sixth or divide into sixths: - give the sixth part."]},{"k":"H8342","v":["שָׂשׂוֹן","sâsôwn","saw-sone'","From H7797; cheerfulness; specifically welcome: - gladness, joy, mirth, rejoicing."]},{"k":"H8343","v":["שָׁשַׁי","Shâshay","shaw-shah'-ee","Perhaps from H8336; whitish; Shashai, an Israelite: - Shashai."]},{"k":"H8344","v":["שֵׁשַׁי","Shêshay","shay-shah'-ee","Probably for H8343; Sheshai, a Canaanite: - Sheshai."]},{"k":"H8345","v":["שִׁשִּׁי","shishshîy","shish-shee'","From H8337; sixth, ordinal or (feminine) fractional: - sixth (part)."]},{"k":"H8346","v":["שִׁשִּׁים","shishshîym","shish-sheem'","Multiple of H8337; sixty: - sixty, three score."]},{"k":"H8347","v":["שֵׁשַׁךְ","Shêshak","shay-shak'","Of foreign derivation; Sheshak, a symbolical name of Babylonian: - Sheshach."]},{"k":"H8348","v":["שֵׁשָׁן","Shêshân","shay-shawn'","Perhaps for H7799; lily; Sheshan, an Israelite: - Sheshan."]},{"k":"H8349","v":["שָׁשַׁק","Shâshaq","shaw-shak'","Probably from the base of H7785; pedestrian; Shashak, an Israelite: - Shashak."]},{"k":"H8350","v":["שָׁשַׁר","shâshar","shaw-shar'","Perhaps from the base of H8324 in the sense of that of H8320; red ochre (from its piercing color): - vermillion."]},{"k":"H8351","v":["שֵׁת","shêth","shayth","Used in Num_24:17; from H7582; tumult: - Sheth."]},{"k":"H8352","v":["שֵׁת","Shêth","shayth","From H7896; put, that is, substituted; Sheth, third son of Adam: - Seth, Sheth."]},{"k":"H8353","v":["שֵׁת","shêth","shayth","(Chaldee); corresponding to H8337: - six (-th)."]},{"k":"H8354","v":["שָׁתָה","shâthâh","shaw-thaw'","A primitive root; to imbibe (literally or figuratively).    : -    X assuredly, banquet, X certainly, drink (-er, -ing), drunk (X -ard), surely. [Prop. intensive of H8248.]"]},{"k":"H8355","v":["שְׁתָה","shᵉthâh","sheth-aw'","(Chaldee); corresponding to H8354: - drink."]},{"k":"H8356","v":["שָׁתָה","shâthâh","shaw-thaw'","From H7896; a basis, that is, (figuratively) political or moral support: - foundation, purpose."]},{"k":"H8357","v":["שֵׁתָה","shêthâh","shay-thaw'","From H7896; the seat (of the person): - buttock."]},{"k":"H8358","v":["שְׁתִי","shᵉthîy","sheth-ee'","From H8354; intoxication: - drunkenness."]},{"k":"H8359","v":["שְׁתִי","shᵉthîy","sheth-ee'","From H7896; a fixture, that is, the warp in weaving: - warp."]},{"k":"H8360","v":["שְׁתִיָּה","shᵉthîyâh","sheth-ee-yaw'","Feminine of H8358; potation: - drinking."]},{"k":"H8361","v":["שִׁתִּין","shittîyn","shit-teen'","(Chaldee); corresponding to H8346 (compare H8353); sixty: - three-score."]},{"k":"H8362","v":["שָׁתַל","shâthal","shaw-thal'","A primitive root; to transplant: - plant."]},{"k":"H8363","v":["שְׁתִל","shᵉthil","sheth-eel'","From H8362; a sprig (as if transplanted), that is, sucker: - plant."]},{"k":"H8364","v":["שֻׁתַלְחִי","Shuthalchîy","shoo-thal-kee'","Patronymic from H7803; a Shuthalchite (collectively) or descendant of Shuthelach: - Shuthalhites."]},{"k":"H8365","v":["שָׁתַם","shâtham","shaw-tham'","A primitive root; to unveil (figuratively): - be open."]},{"k":"H8366","v":["שָׁתַן","shâthan","shaw-than'","A primitive root; (causatively) to make water, that is, urinate: - piss."]},{"k":"H8367","v":["שָׁתַק","shâthaq","shaw-thak'","A primitive root; to subside: - be calm, cease, be quiet."]},{"k":"H8368","v":["שָׂתַר","sâthar","saw-thar'","A primitive root; to break out (as an eruption): - have in [one’s] secret parts."]},{"k":"H8369","v":["שֵׁתָר","Shêthâr","shay-thawr'","Of foreign derivation; Shethar, a Persian satrap: - Shethar."]},{"k":"H8370","v":["שְׁתַר בּוֹזְנַי","Shᵉthar Bôwzᵉnay","sheth-ar' bo-zen-ah'-ee","Of foreign derivation; Shethar-Bozenai, a Persian officer: - Shethar-boznai."]},{"k":"H8371","v":["שָׁתַת","shâthath","shaw-thath'","A primitive root; to place, that is, array; reflexively to lie: - be laid, set."]},{"k":"H8372","v":["תָּא","tâʼ","taw","(The second form being feminine and used in Eze_40:12); from (the base of) H8376; a room (as circumscribed): - (little) chamber."]},{"k":"H8373","v":["תָּאַב","tâʼab","taw-ab'","A primitive root; to desire: - long."]},{"k":"H8374","v":["תָּאַב","tâʼab","taw-ab'","A primitive root (probably rather identical with H8373 through the idea of puffing disdainfully at; compare H340); to loathe (morally): - abhor."]},{"k":"H8375","v":["תַּאֲבָה","taʼăbâh","tah-ab-aw'","From H8374 (compare H15); desire: - longing."]},{"k":"H8376","v":["תָּאָה","tâʼâh","taw-aw'","A primitive root; to mark off, that is, (intensively) designate: - point out."]},{"k":"H8377","v":["תְּאוֹ","tᵉʼôw","teh-o'","The second form being the original form; from H8376; a species of antelope (probably from the white stripe on the cheek): - wild bull (ox)."]},{"k":"H8378","v":["תַּאֲוָה","taʼăvâh","tah-av-aw'","From H183 (abbreviated); a longing; by implication a delight (subjectively satisfaction, objectively a charm): - dainty, desire, X exceedingly, X greedily, lust (ing), pleasant. See also H6914."]},{"k":"H8379","v":["תַּאֲוָה","taʼăvâh","tah-av-aw'","From H8376; a limit, that is, full extent: - utmost bound."]},{"k":"H8380","v":["תָּאוֹם","tâʼôwm","taw-ome'","From H8382; a twin (in plural only), literally or figuratively: - twins."]},{"k":"H8381","v":["תַּאֲלָה","taʼălâh","tah-al-aw'","From H422; an imprecation: - curse."]},{"k":"H8382","v":["תָּאַם","tâʼam","taw-am'","A primitive root; to be complete; but used only as denominative from H8380, to be (causatively make) twinned, that is, (figuratively) duplicate or (architecturally) jointed: - coupled (together), bear twins."]},{"k":"H8383","v":["תְּאֻן","tᵉʼun","teh-oon'","From H205; naughtiness, that is, toil: - lie."]},{"k":"H8384","v":["תְּאֵן","tᵉʼên","teh-ane'","The second form being singular and feminine; perhaps of foreign derivation; the fig (tree or fruit): - fig (tree)."]},{"k":"H8385","v":["תַּאֲנָה","taʼănâh","tah-an-aw'","From H579; an opportunity or (subjectively) purpose: - occasion."]},{"k":"H8386","v":["תַּאֲנִיָּה","taʼănîyâh","tah-an-ee-yaw'","From H578; lamentation: - heaviness, mourning."]},{"k":"H8387","v":["תַּאֲנַת שִׁלֹה","Taʼănath Shilôh","tah-an-ath' shee-lo'","From H8385 and H7887; approach of Shiloh; Taanath Shiloh, a place in Palestine: - Taanath-shiloh."]},{"k":"H8388","v":["תָּאַר","tâʼar","taw-ar'","A primitive root; to delineate; reflexively to extend. (Rimmon methoar by union with H7417.): - be drawn, mark out, [Rimmon-] methoar [by union with H7417]."]},{"k":"H8389","v":["תֹּאַר","tôʼar","to'-ar","From H8388; outline, that is, figure or appearance: -  + beautiful, X comely, countenance, + fair, X favoured, form, X goodly, X resemble, visage."]},{"k":"H8390","v":["תַּאֲרֵעַ","Taʼărêaʻ","tah-ar-ay'-ah","Perhaps from H772; Taarea, an Israelite: - Tarea. See H8475."]},{"k":"H8391","v":["תְּאַשּׁוּר","tᵉʼashshûwr","teh-ash-shoor'","From H833; a species of cedar (from its erectness): - box (tree)."]},{"k":"H8392","v":["תֵּבָה","têbâh","tay-baw'","Perhaps of foreign derivation; a box: - ark."]},{"k":"H8393","v":["תְּבוּאָה","tᵉbûwʼâh","teb-oo-aw'","From H935; income, that is, produce (literally or figuratively): - fruit, gain, increase, revenue."]},{"k":"H8394","v":["תָּבוּן","tâbûwn","taw-boon'","The second and third forms being feminine; from H995; intelligence; by implication an argument; by extension caprice: - discretion, reason, skilfulness, understanding, wisdom."]},{"k":"H8395","v":["תְּבוּסָה","tᵉbûwçâh","teb-oo-saw'","From H947; a treading down, that is, ruin: - destruction."]},{"k":"H8396","v":["תָּבוֹר","Tâbôwr","taw-bore'","From a root corresponding to H8406; broken region; Tabor, a mountain in Palestine, also a city adjacent: - Tabor."]},{"k":"H8397","v":["תֶּבֶל","tebel","teh'-bel","Apparently from H1101; mixture, that is, unnatural bestiality: - confusion."]},{"k":"H8398","v":["תֵּבֵל","têbêl","tay-bale'","From H2986; the earth (as moist and therefore inhabited); by extension the globe; by implication its inhabitants; specifically a particular land, as Babylonia or Palestine: - habitable part, world."]},{"k":"H8399","v":["תַּבְלִית","tablîyth","tab-leeth'","From H1086; consumption: - destruction."]},{"k":"H8400","v":["תְּבַּלֻּל","tᵉballul","teb-al-lool'","From H1101 in the original sense of flowing; a cataract (in the eye): - blemish."]},{"k":"H8401","v":["תֶּבֶן","teben","teh'-ben","Probably from H1129; properly material, that is, (specifically) refuse haum or stalks of grain (as chopped in threshing and used for fodder): - chaff, straw, stubble."]},{"k":"H8402","v":["תִּבְנִי","Tibnîy","tib-nee'","From H8401; strawy; Tibni, an Israelite: - Tibni."]},{"k":"H8403","v":["תַּבְנִית","tabnîyth","tab-neeth'","From H1129; structure; by implication a model, resemblance: - figure, form, likeness, pattern, similitude."]},{"k":"H8404","v":["תַּבְעֵרָה","Tabʻêrâh","tab-ay-raw'","From H1197; burning; Taberah, a place in the Desert: - Taberah."]},{"k":"H8405","v":["תֵּבֵץ","Têbêts","tay-bates'","From the same as H948; whiteness; Tebets, a place in Palestine: - Thebez."]},{"k":"H8406","v":["תְּבַר","tᵉbar","teb-ar'","(Chaldee); corresponding to H7665; to be fragile (figuratively): - broken."]},{"k":"H8407","v":["תִּגְלַת פִּלְאֶסֶר","Tiglath Pilʼeçer","tig-lath' pil-eh'-ser","Of foreign derivation; Tiglath-Pileser or Tilgath-pilneser, an Assyrian king: - Tiglath-pileser, Tilgath-pilneser."]},{"k":"H8408","v":["תַּגְמוּל","tagmûwl","tag-mool'","From H1580; a bestowment: - benefit."]},{"k":"H8409","v":["תִּגְרָה","tigrâh","tig-raw'","From H1624; strife, that is, infliction: - blow."]},{"k":"H8410","v":["תִּדְהָר","tidhâr","tid-hawr'","Apparently from H1725; enduring; a species of hard wood or lasting tree (perhaps oak): - pine (tree)."]},{"k":"H8411","v":["תְּדִירָא","tᵉdîyrâʼ","ted-ee-raw'","(Chaldee); from H1753 in the original sense of enduring; permanence, that is, (adverbially) constantly: - continually."]},{"k":"H8412","v":["תַּדְמֹר","Tadmôr","tad-more'","(The second form used in 1Ki_9:18), apparently from H8558; palm city; Tadmor, a place near Palestine: - Tadmor."]},{"k":"H8413","v":["תִּדְעָל","Tidʻâl","tid-awl'","Perhaps from H1763; fearfulness; Tidal, a Canaanite: - Tidal."]},{"k":"H8414","v":["תֹּהוּ","tôhûw","to'-hoo","From an unused root meaning to lie waste; a desolation (of surface), that is, desert; figuratively a worthless thing; adverbially in vain: - confusion, empty place, without form, nothing, (thing of) nought, vain, vanity, waste, wilderness."]},{"k":"H8415","v":["תְּהוֹם","tᵉhôwm","teh-home'","(Usually feminine) from H1949; an abyss (as a surging mass of water), especially the deep (the main sea or the subterranean water supply): - deep (place), depth."]},{"k":"H8416","v":["תְּהִלָּה","tᵉhillâh","teh-hil-law'","From H1984; laudation; specifically (concretely) a hymn: - praise."]},{"k":"H8417","v":["תׇּהֳלָה","tohŏlâh","to-hol-aw'","Feminine of an unused noun (apparently from H1984) meaning bluster; braggadocio, that is, (by implication) fatuity: - folly."]},{"k":"H8418","v":["תַּהֲלֻכָה","tahălukâh","tah-hal-oo-kaw'","From H1980; a procession: -  X went."]},{"k":"H8419","v":["תַּהְפֻּכָה","tahpukâh","tah-poo-kaw'","From H2015; a perversity or fraud: -  (very) froward (-ness, thing), perverse thing."]},{"k":"H8420","v":["תָּו","tâv","tawv","From H8427; a mark; by implication a signature: - desire, mark."]},{"k":"H8421","v":["תּוּב","tûwb","toob","(Chaldee), corresponding to H7725; to come back; specifically (transitively and elliptically) to reply: - answer, restore, return (an answer)."]},{"k":"H8422","v":["תּוּבַל","Tûwbal","too-bal'","Probably of foreign derivation; Tubal, a postdiluvian patriarch and his posterity: - Tubal."]},{"k":"H8423","v":["תּוּבַל קַיִן","Tûwbal Qayin","too-bal' kah'-yin","Apparently from H2986 (compare H2981) and H7014; offspring of Cain; Tubal Kajin, an antediluvian patriarch: - Tubal-cain."]},{"k":"H8424","v":["תּוּגָה","tûwgâh","too-gaw'","From H3013; depression (of spirits); concretely a grief: - heaviness, sorrow."]},{"k":"H8425","v":["תּוֹגַרְמָה","Tôwgarmâh","to-gar-maw'","Probably of foreign derivation; Togarmah, a son of Gomer and his posterity: - Togarmah."]},{"k":"H8426","v":["תּוֹדָה","tôwdâh","to-daw'","From H3034; properly an extension of the hand, that is, (by implication) avowal, or (usually) adoration; specifically a choir of worshippers: - confession, (sacrifice of) praise, thanks (-giving, offering)."]},{"k":"H8427","v":["תָּוָה","tâvâh","taw-vaw'","A primitive root; to mark out, that is, (primitive) scratch or (definitely) imprint: - scrabble, set [a mark]."]},{"k":"H8428","v":["תָּוָה","tâvâh","taw-vaw'","A primitive root (or perhaps identical with H8427 through a similar idea from scraping to pieces); to grieve. (By confusion with H8427): - limit [by confusion with H8427]."]},{"k":"H8429","v":["תְּוַהּ","tᵉvahh","tev-ah'","(Chaldee), corresponding to H8539 or perhaps to H7582 through the idea of sweeping to ruin (compare H8428); to amaze, that is, (reflexively by implication) take alarm: - be astonied."]},{"k":"H8430","v":["תּוֹחַ","Tôwach","to'-akh","From an unused root meaning to depress; humble; Toach, an Israelite: - Toah."]},{"k":"H8431","v":["תּוֹחֶלֶת","tôwcheleth","to-kheh'-leth","From H3176; expectation: - hope."]},{"k":"H8432","v":["תָּוֶךְ","tâvek","taw'-vek","From an unused root meaning to sever; a bisection, that is, (by implication) the centre: - among (-st), X between, half, X (there-, where-) in (-to), middle, mid [-night], midst (among), X out (of), X through, X with (-in)."]},{"k":"H8433","v":["תּוֹכֵחָה","tôwkêchâh","to-kay-khaw'","From H3198; chastisement; figuratively (by words) correction, refutation, proof (even in defence): - argument, X chastened, correction, reasoning, rebuke, reproof, X be (often) reproved."]},{"k":"H8434","v":["תּוֹלָד","Tôwlâd","to-lawd'","From H3205; posterity; Tolad, a place in Palestine: - Tolad. Compare H513."]},{"k":"H8435","v":["תּוֹלְדָה","tôwlᵉdâh","to-led-aw'","From H3205; (plural only) descent, that is, family; (figuratively) history: - birth, generations."]},{"k":"H8436","v":["תּוּלוֹן","Tûwlôwn","too-lone'","From H8524; suspension; Tulon, an Israelite: - Tilon [from the margin]."]},{"k":"H8437","v":["תּוֹלָל","tôwlâl","to-lawl'","From H3213; causing to howl, that is, an oppressor: - that wasted."]},{"k":"H8438","v":["תּוֹלָע","tôwlâʻ","to-law'","From H3216; a maggot (as voracious); specifically (often with ellipsis of H8144) the crimson grub, but used only (in this connection) of the color from it, and cloths dyed therewith: - crimson, scarlet, worm."]},{"k":"H8439","v":["תּוֹלָע","Tôwlâʻ","to-law'","The same as H8438; worm; Tola, the name of two Israelites: - Tola."]},{"k":"H8440","v":["תּוֹלָעִי","Tôwlâʻîy","to-law-ee'","Patronymic from H8439; a Tolaite (collectively) or descendant of Tola: - Tolaites."]},{"k":"H8441","v":["תּוֹעֵבַה","tôwʻêbah","to-ay-baw'","Feminine active participle of H8581; properly something disgusting (morally), that is, (as noun) an abhorrence; especially idolatry or (concretely) an idol: - abominable (custom, thing), abomination."]},{"k":"H8442","v":["תּוֹעָה","tôwʻâh","to-aw'","Feminine active participle of H8582; mistake, that is, (morally) impiety, or (political) injury: - error, hinder."]},{"k":"H8443","v":["תּוֹעָפָה","tôwʻâphâh","to-aw-faw'","From H3286; (only in plural collective) weariness, that is, (by implication) toil (treasure so obtained) or speed: - plenty, strength."]},{"k":"H8444","v":["תּוֹצָאָה","tôwtsâʼâh","to-tsaw-aw'","From H3318; (only in plural collective) exit, that is, (geographical) boundary, or (figuratively) deliverance, (actively) source: - border (-s), going (-s) forth (out), issues, outgoings."]},{"k":"H8445","v":["תּוֹקַהַת","Tôwqahath","to-kah'-ath","From the same as H3349; obedience; Tokahath, an Israelite. (By correction for H8616.): - Tikvath [by correction for H8616]."]},{"k":"H8446","v":["תּוּר","tûwr","toor","A primitive root; to meander (causatively guide) about, especially for trade or reconnoitring: - chap [-man], sent to descry, be excellent, merchant [-man], search (out), seek, (e-) spy (out)."]},{"k":"H8447","v":["תּוֹר","tôwr","tore","From H8446; a succession, that is, a string or (abstractly) order: - border, row, turn."]},{"k":"H8448","v":["תּוֹר","tôwr","tore","Probably the same as H8447; a manner (as a sort of turn): - estate."]},{"k":"H8449","v":["תּוֹר","tôwr","tore","Probably the same as H8447; a ring dove, often (figuratively) as a term of endearment: - (turtle) dove."]},{"k":"H8450","v":["תּוֹר","tôwr","tore","(Chaldee), corresponding (by permutation) to H7794; a bull: - bullock, ox."]},{"k":"H8451","v":["תּוֹרָה","tôwrâh","to-raw'","From H3384; a precept or statute, especially the Decalogue or Pentateuch: - law."]},{"k":"H8452","v":["תּוֹרָה","tôwrâh","to-raw'","Probably feminine of H8448; a custom: - manner."]},{"k":"H8453","v":["תּוֹשָׁב","tôwshâb","to-shawb'","(The second form used in Kings Num_17:1); from H3427; a dweller (but not outlandish, H5237); especially (as distinguished from a native citizen (active participle of H3427) and a temporary inmate, H1616, or mere lodger, H3885) resident alien: - foreigner-inhabitant, sojourner, stranger."]},{"k":"H8454","v":["תּוּשִׁיָּה","tûwshîyâh","too-shee-yaw'","From an unused root probably meaning to substantiate; support or (by implication) ability, that is, (direct) help, (in purpose) an undertaking, (intellectual) understanding: - enterprise, that which (thing as it) is, substance, (sound) wisdom, working."]},{"k":"H8455","v":["תּוֹתָח","tôwthâch","to-thawkh'","From an unused root meaning to smite: - darts."]},{"k":"H8456","v":["תָּזַז","tâzaz","taw-zaz'","A primitive root; to lop off: - cut down."]},{"k":"H8457","v":["תַּזְנוּת","taznûwth","taz-nooth'","From H2181; harlotry, that is, (figuratively) idolatry: - fornication, whoredom."]},{"k":"H8458","v":["תַּחְבֻּלָה","tachbulâh","takh-boo-law'","From H2254 as denominative from H2256; (only in plural) properly steerage (as a management of ropes), that is, (figuratively) guidance or (by implication) a plan: - good advice, (wise) counsels."]},{"k":"H8459","v":["תֹּחוּ","Tôchûw","to'-khoo","From an unused root meaning to depress; abasement; Tochu, an Israelite: - Tohu."]},{"k":"H8460","v":["תְּחוֹת","tᵉchôwth","tekh-oth'","(Chaldee), corresponding to H8478; beneath: - under."]},{"k":"H8461","v":["תַּחְכְּמֹנִי","Tachkᵉmônîy","takh-kem-o-nee'","Probably for H2453; sagacious; Tachkemoni, an Israelite: - Tachmonite."]},{"k":"H8462","v":["תְּחִלָּה","tᵉchillâh","tekh-il-law'","From H2490 in the sense of opening; a commencement; relatively original (adverbially originally): - begin (-ning), first (time)."]},{"k":"H8463","v":["תַּחֲלוּא","tachălûwʼ","takh-al-oo'","From H2456; a malady: - disease, X grievous, (that are) sick (-ness)."]},{"k":"H8464","v":["תַּחְמָס","tachmâç","takh-mawce'","From H2554; a species of unclean bird (from its violence), perhaps an owl: - night hawk."]},{"k":"H8465","v":["תַּחַן","Tachan","takh'-an","Probably from H2583; station; Tachan, the name of two Israelites: - Tahan."]},{"k":"H8466","v":["תַּחֲנָה","tachănâh","takh-an-aw'","From H2583; (only plural collectively) an encampment: - camp."]},{"k":"H8467","v":["תְּחִנָּה","tᵉchinnâh","tekh-in-naw'","From H2603; graciousness; causatively entreaty: - favour, grace, supplication."]},{"k":"H8468","v":["תְּחִנָּה","Tᵉchinnâh","tekh-in-naw'","The same as H8467; Techinnah, an Israelite: - Tehinnah."]},{"k":"H8469","v":["תַּחֲנוּן","tachănûwn","takh-an-oon'","From H2603; earnest prayer: - intreaty, supplication."]},{"k":"H8470","v":["תַּחֲנִי","Tachănîy","takh-an-ee'","Patronymic from H8465; a Tachanite (collectively) or descendant of Tachan: - Tahanites."]},{"k":"H8471","v":["תַּחְפַּנְחֵס","Tachpanchêç","takh-pan-khace'","(The second form used in Eze_30:18); (the third form used in Jer_2:16); of Egyptian derivation; Tachpanches, Techaphneches or Tachpenes, a place in Egypt: - Tahapanes, Tahpanhes, Tehaphnehes."]},{"k":"H8472","v":["תַּחְפְּנֵיס","Tachpᵉnêyç","takh-pen-ace'","Of Egyptian derivation; Tachpenes, an Egyptian woman: - Tahpenes."]},{"k":"H8473","v":["תַּחֲרָא","tachărâʼ","takh-ar-aw'","From H2734 in the original sense of H2352 or H2353; a linen corslet (as white or hollow): - habergeon."]},{"k":"H8474","v":["תַּחָרָה","tachârâh","takh-aw-raw'","A factitious root from H2734 through the idea of the heat of jealousy; to vie with a rival: - close, contend."]},{"k":"H8475","v":["תַּחְרֵעַ","Tachrêaʻ","takh-ray'-ah","For H8390; Tachrea, an Israelite: - Tahrea."]},{"k":"H8476","v":["תַּחַשׁ","tachash","takh'-ash","Probably of foreign derivation; a (clean) animal with fur, probably a species of antelope: - badger."]},{"k":"H8477","v":["תַּחַשׁ","Tachash","takh'-ash","The same as H8476; Tachash, a relative of Abraham: - Thahash."]},{"k":"H8478","v":["תַּחַת","tachath","takh'-ath","From the same as H8430; the bottom (as depressed); only adverbially below (often with prepositional prefix underneath), in lieu of, etc.: - as, beneath, X flat, in (-stead), (same) place (where . . . is), room, for . . . sake, stead of, under, X unto, X when . . . was mine, whereas, [where-] fore, with."]},{"k":"H8479","v":["תַּחַת","tachath","takh'-ath","(Chaldee); corresponding to H8478: - under."]},{"k":"H8480","v":["תַּחַת","Tachath","takh'-ath","The same as H8478; Tachath, the name of a place in the Desert, also of three Israelites: - Tahath."]},{"k":"H8481","v":["תַּחְתּוֹן","tachtôwn","takh-tone'","From H8478; bottommost: - lower (-est), nether (-most)."]},{"k":"H8482","v":["תַּחְתִּי","tachtîy","takh-tee'","From H8478; lowermost; as noun (feminine plural) the depths (figuratively a pit, the womb): - low (parts, -er, -er parts, -est), nether (part)."]},{"k":"H8483","v":["תַּחְתִּים חׇדְשִׁי","Tachtîym Chodshîy","takh-teem' khod-shee'","Apparently from the plural masculine of H8482 or H8478 and H2320; lower (ones) monthly; Tachtim Chodshi, a place in Palestine: - Tahtim-hodshi."]},{"k":"H8484","v":["תִּיכוֹן","tîykôwn","tee-kone'","From H8432; central: - middle (-most), midst."]},{"k":"H8485","v":["תֵּימָא","Têymâʼ","tay-maw'","Probably of foreign derivation; Tema, a son of Ishmael, and the region settled by him: - Tema."]},{"k":"H8486","v":["תֵּימָן","têymân","tay-mawn'","Denominative from H3225; the south (as being on the right hand of a person facing the east): - south (side, -ward, wind)."]},{"k":"H8487","v":["תֵּימָן","Têymân","tay-mawn'","The same as H8486; Teman, the name of two Edomites, and of the region and descendants of one of them: - south, Teman."]},{"k":"H8488","v":["תֵּימְנִי","Têymᵉnîy","tay-men-ee'","Probably for H8489; Temeni, an Israelite: - Temeni."]},{"k":"H8489","v":["תֵּימָנִי","Têymânîy","tay-maw-nee'","Patronymic from H8487; a Temanite or descendant of Teman: - Temani, Temanite."]},{"k":"H8490","v":["תִּימָרָה","tîymârâh","tee-maw-raw'","From the same as H8558; a column, that is, cloud: - pillar."]},{"k":"H8491","v":["תִּיצִי","Tîytsîy","tee-tsee'","Partrial or patronymic from an unused noun of uncertain meaning; a Titsite or descendant or inhabitant of an unknown Tits: - Tizite."]},{"k":"H8492","v":["תִּירוֹשׁ","tîyrôwsh","tee-roshe'","From H3423 in the sense of expulsion; must or fresh grape juice (as just squeezed out); by implication (rarely) fermented wine: - (new, sweet) wine."]},{"k":"H8493","v":["תִּירְיָא","Tîyrᵉyâʼ","tee-reh-yaw'","Probably from H3372; fearful; Tirja, an Israelite: - Tiria."]},{"k":"H8494","v":["תִּירָס","Tîyrâç","tee-rawce'","Probably of foreign derivation; Tiras, a son of Japheth: - Tiras."]},{"k":"H8495","v":["תַּיִשׁ","tayish","tah'-yeesh","From an unused root meaning to butt; a buck or he goat (as given to butting): - he goat."]},{"k":"H8496","v":["תֹּךְ","tôk","toke","(The second form used in Psa_72:14); from the same base as H8432 (in the sense of cutting to pieces); oppression: - deceit, fraud."]},{"k":"H8497","v":["תָּכָה","tâkâh","taw-kaw'","A primitive root; to strew, that is, encamp: - sit down."]},{"k":"H8498","v":["תְּכוּנָה","tᵉkûwnâh","tek-oo-naw'","Feminine passive participle of H8505; adjustment, that is, structure; by implication equipage: - fashion, store."]},{"k":"H8499","v":["תְּכוּנָה","tᵉkûwnâh","tek-oo-naw'","From H3559; or probably identical with H8498; something arranged or fixed, that is, a place: - seat."]},{"k":"H8500","v":["תֻּכִּי","tukkîy","took-kee'","Probably of foreign derivation; some imported creature, probably a peacock: - peacock."]},{"k":"H8501","v":["תָּכָךְ","tâkâk","taw-kawk'","From an unused root meaning to dissever, that is, crush: - deceitful."]},{"k":"H8502","v":["תִּכְלָה","tiklâh","tik-law'","From H3615; completeness: - perfection."]},{"k":"H8503","v":["תַּכְלִית","taklîyth","tak-leeth'","From H3615; completion; by implication an extremity: - end, perfect (-ion)."]},{"k":"H8504","v":["תְּכֵלֶת","tᵉkêleth","tek-ay'-leth","Probably for H7827; the cerulean mussel, that is, the color (violet) obtained therefrom or stuff dyed therewith: - blue."]},{"k":"H8505","v":["תָּכַן","tâkan","taw-kan'","A primitive root; to balance, that is, measure out (by weight or dimension); figuratively to arrange, equalize, through the idea of levelling (mentally estimate, test): - bear up, direct, be ([un-]) equal, mete, ponder, tell, weigh."]},{"k":"H8506","v":["תֹּכֶן","tôken","to'-ken","From H8505; a fixed quantity: - measure, tale."]},{"k":"H8507","v":["תֹּכֶן","Tôken","to'-ken","The same as H8506; Token, a place in Palestine: - Tochen."]},{"k":"H8508","v":["תׇּכְנִית","toknîyth","tok-neeth'","From H8506; admeasurement, that is, consummation: - pattern, sum."]},{"k":"H8509","v":["תַּכְרִיךְ","takrîyk","tak-reek'","Apparently from an unused root meaning to encompass; a wrapper or robe: - garment."]},{"k":"H8510","v":["תֵּל","têl","tale","By contraction from H8524; a mound: - heap, X strength."]},{"k":"H8511","v":["תָּלָא","tâlâʼ","taw-law'","A primitive root; to suspend; figuratively (through hesitation) to be uncertain; by implication (of mental dependence) to habituate: - be bent, hang (in doubt)."]},{"k":"H8512","v":["תֵּל אָבִיב","Têl ʼÂbîyb","tale aw-beeb'","From H8510 and H24; mound of green growth; Tel-Abib, a place in Chaldaea: - Tel-abib."]},{"k":"H8513","v":["תְּלָאָה","tᵉlâʼâh","tel-aw-aw'","From H3811; distress: - travail, travel, trouble."]},{"k":"H8514","v":["תַּלְאוּבָה","talʼûwbâh","tal-oo-baw'","From H3851; desiccation: - great drought."]},{"k":"H8515","v":["תְּלַאשַּׂר","Tᵉlaʼssar","tel-as-sar'","Of foreign derivation; Telassar, a region of Assyria: - Telassar."]},{"k":"H8516","v":["תַּלְבֹּשֶׁת","talbôsheth","tal-bo'-sheth","From H3847; a garment: - clothing."]},{"k":"H8517","v":["תְּלַג","tᵉlag","tel-ag'","(Chaldee); corresponding to H7950; snow: - snow."]},{"k":"H8518","v":["תָּלָה","tâlâh","taw-law'","A primitive root; to suspend (especially to gibbet): - hang (up)."]},{"k":"H8519","v":["תְּלוּנָה","tᵉlûwnâh","tel-oo-naw'","From H3885 in the sense of obstinacy; a grumbling: - murmuring."]},{"k":"H8520","v":["תֶּלַח","Telach","teh'-lakh","Probably form an unused root meaning to dissever; breach; Telach, an Israelite: - Telah."]},{"k":"H8521","v":["תֵּל חַרְשָׁא","Têl Charshâʼ","tale khar-shaw'","From H8510 and the feminine of H2798; mound of workmanship; Tel-Charsha, a place in Babylon: - Tel-haresha, Tel-harsa."]},{"k":"H8522","v":["תְּלִי","tᵉlîy","tel-ee'","Probably from H8518; a quiver (as slung): - quiver."]},{"k":"H8523","v":["תְּלִיתַי","tᵉlîythay","tel-ee-thah'-ee","(Chaldee); ordinal from H8532; third: - third."]},{"k":"H8524","v":["תָּלַל","tâlal","taw-lal'","A primitive root; to pile up, that is, elevate: - eminent. Compare H2048."]},{"k":"H8525","v":["תֶּלֶם","telem","teh'-lem","From an unused root meaning to accumulate; a bank or terrace: - furrow, ridge."]},{"k":"H8526","v":["תַּלְמַי","Talmay","tal-mah'-ee","From H8525; ridged; Talmai, the name of a Canaanite and a Syrian: - Talmai."]},{"k":"H8527","v":["תַּלְמִיד","talmîyd","tal-meed'","From H3925; a pupil: - scholar."]},{"k":"H8528","v":["תֵּל מֶלַח","Têl Melach","tale meh'-lakh","From H8510 and H4417; mound of salt; Tel-Melach, a palce in Babylon: - Tel-melah."]},{"k":"H8529","v":["תָּלַע","tâlaʻ","taw-law'","A denominative from H8438; to crimson, that is, dye that color: -    X scarlet."]},{"k":"H8530","v":["תַּלְפִּיָּה","talpîyâh","tal-pee-yaw'","Feminine from an unused root meaning to tower; something tall, that is, (plural collectively) slenderness: - armoury."]},{"k":"H8531","v":["תְּלַת","tᵉlath","tel-ath'","(Chaldee); from H8532; a tertiary rank: - third."]},{"k":"H8532","v":["תְּלָת","tᵉlâth","tel-awth'","(Chaldee); corresponding to H7969; three or third: - third, three."]},{"k":"H8533","v":["תְּלָתִין","tᵉlâthîyn","tel-aw-theen'","Multiplicative of H8532; ten times three: - thirty."]},{"k":"H8534","v":["תַּלְתַּל","taltal","tal-tal'","By reduplication from H8524 through the idea of vibration; a trailing bough (as pendulous): - bushy."]},{"k":"H8535","v":["תָּם","tâm","tawm","From H8552; complete; usually (morally) pious; specifically gentle, dear: -  coupled together, perfect, plain, undefiled, upright."]},{"k":"H8536","v":["תָּם","tâm","tawm","(Chaldee); corresponding to H8033; there: -  X thence, there, X where."]},{"k":"H8537","v":["תֹּם","tôm","tome","From H8552; completeness; figuratively prosperity; usually (morally) innocence: - full, integrity, perfect (-ion), simplicity, upright (-ly, -ness), at a venture. See H8550."]},{"k":"H8538","v":["תֻּמָּה","tummâh","toom-maw'","Feminine of H8537; innocence: - integrity."]},{"k":"H8539","v":["תָּמַהּ","tâmahh","taw-mah'","A primitive root; to be in consternation: - be amazed, be astonished, marvel (-lously), wonder."]},{"k":"H8540","v":["תְּמַהּ","tᵉmahh","tem-ah'","(Chaldee); from a root corresponding to H8539; a miracle: - wonder."]},{"k":"H8541","v":["תִּמָּהוֹן","timmâhôwn","tim-maw-hone'","From H8539; consternation: - astonishment."]},{"k":"H8542","v":["תַּמּוּז","Tammûwz","tam-mooz'","Of uncertain derivation; Tammuz, a Phoenician deity: - Tammuz."]},{"k":"H8543","v":["תְּמוֹל","tᵉmôwl","tem-ole'","Probably for H865; properly ago, that is, a (short or long) time since; especially yesterday, or (with H8032) day before yesterday: -    + before (-time), + these [three] days, + heretofore, + time past, yesterday."]},{"k":"H8544","v":["תְּמוּנָה","tᵉmûwnâh","tem-oo-naw'","From H4327; something portioned (that is, fashioned) out, as a shape, that is, (indefinitely) phantom, or (specifically) embodiment, or (figuratively) manifestation (of favor): - image, likeness, similitude."]},{"k":"H8545","v":["תְּמוּרָה","tᵉmûwrâh","tem-oo-raw'","From H4171; barter, compensation: -  (ex-) change (-ing), recompense, restitution."]},{"k":"H8546","v":["תְּמוּתָה","tᵉmûwthâh","tem-oo-thaw'","From H4191; execution (as a doom): - death, die."]},{"k":"H8547","v":["תֶּמַח","Temach","teh'-makh","Of uncertain derivation; Temach, one of the Nethinim: - Tamah, Thamah."]},{"k":"H8548","v":["תָּמִיד","tâmîyd","taw-meed'","From an unused root meaning to stretch; properly continuance (as indefinite extension); but used only (attributively as adjective) constant (or adverbially constantly); elliptically the regular (daily) sacrifice: -    alway (-s), continual (employment, -ly), daily, ([n-]) ever (-more), perpetual."]},{"k":"H8549","v":["תָּמִים","tâmîym","taw-meem'","From H8552; entire (literally, figuratively or morally); also (as noun) integrity, truth: - without blemish, complete, full, perfect, sincerely (-ity), sound, without spot, undefiled, upright (-ly), whole."]},{"k":"H8550","v":["תֻּמִּים","Tummîym","toom-meem'","Plural of H8537; perfections, that is, (technically) one of the epithets of the objects in the high priest’s breastplate as an emblem of complete Truth: - Thummim."]},{"k":"H8551","v":["תָּמַךְ","tâmak","taw-mak'","A primitive root; to sustain; by implication to obtain, keep fast; figuratively to help, follow close: - (take, up-) hold (up), maintain, retain, stay (up)."]},{"k":"H8552","v":["תָּמַם","tâmam","taw-mam'","A primitive root; to complete, in a good or a bad sense, literally or figuratively, transitively or intransitively: - accomplish, cease, be clean [pass-] ed, consume, have done, (come to an, make an) end, fail, come to the full, be all gone, X be all here, be (make) perfect, be spent, sum, be (shew self) upright, be wasted, whole."]},{"k":"H8553","v":["תִּמְנָה","Timnâh","tim-naw'","From H4487; a portion assigned; Timnah, the name of two places in Palestine: - Timnah, Timnath, Thimnathah."]},{"k":"H8554","v":["תִּמְנִי","Timnîy","tim-nee'","Patrial from H8553; a Timnite or inhabitant of Timnah: - Timnite."]},{"k":"H8555","v":["תִּמְנָע","Timnâʻ","tim-naw'","From H4513; restraint; Timna, the name of two Edomites: - Timna, Timnah."]},{"k":"H8556","v":["תִּמְנַת חֶרֶס","Timnath Chereç","tim-nath kheh'-res","From H8553 and H2775; portion of (the sun; Timnath Cheres, a place in Palestine: - Timnath-heres, Timnath-serah."]},{"k":"H8557","v":["תֶּמֶס","temeç","teh'-mes","From H4529; liquefaction, that is, disappearance: - melt."]},{"k":"H8558","v":["תָּמָר","tâmâr","taw-mawr'","From an unused root meaning to be erect; a palm tree: - palm (tree)."]},{"k":"H8559","v":["תָּמָר","Tâmâr","taw-mawr'","The same as H8558; Tamar, the name of three women and a place: - Tamar."]},{"k":"H8560","v":["תֹּמֶר","tômer","to'-mer","From the same root as H8558; a palm trunk: - palm tree."]},{"k":"H8561","v":["תִּמֹּר","timmôr","tim-more'","(The first is plural only, while the second is feminine, singular and plural); from the same root as H8558; (architecturally) a palm like pilaster (that is, umbellate): - palm tree."]},{"k":"H8562","v":["תַּמְרוּק","tamrûwq","tam-rook'","From H4838; properly a scouring, that is, soap or perfumery for the bath; figuratively a detergent: -  X cleanse, (thing for) purification (-fying)."]},{"k":"H8563","v":["תַּמְרוּר","tamrûwr","tam-roor'","From H4843; bitterness (plural as collective): -    X most bitter (-ly)."]},{"k":"H8564","v":["תַּמְרוּר","tamrûwr","tam-roor'","From the same root as H8558; an erection, that is, pillar (probably for a guide board): - high heap."]},{"k":"H8565","v":["תַּן","tan","tan","From an unused root probably meaning to elongate; a monster (as preternaturally formed), that is, a sea serpent (or other huge marine animal); also a jackal (or other hideous land animal): - dragon, whale. Compare H8577."]},{"k":"H8566","v":["תָּנָה","tânâh","taw-naw'","A primitive root; to present (a mercenary inducement), that is, bargain with (a harlot): - hire."]},{"k":"H8567","v":["תָּנָה","tânâh","taw-naw'","A primitive root (rather identical with H8566 through the idea of attributing honor); to ascribe (praise), that is, celebrate, commemorate: - lament, rehearse."]},{"k":"H8568","v":["תַּנָּה","tannâh","tan-naw'","Probably feminine of H8565; a female jackal: - dragon."]},{"k":"H8569","v":["תְּנוּאָה","tᵉnûwʼâh","ten-oo-aw'","From H5106; alienation; by implication enmity: - breach of promise, occasion."]},{"k":"H8570","v":["תְּנוּבָה","tᵉnûwbâh","ten-oo-baw'","From H5107; produce: - fruit, increase."]},{"k":"H8571","v":["תְּנוּךְ","tᵉnûwk","ten-ook'","Perhaps form the same as H594 through the idea of protraction; a pinnacle, that is, extremity: - tip."]},{"k":"H8572","v":["תְּנוּמָה","tᵉnûwmâh","ten-oo-maw'","From H5123; drowsiness, that is, sleep: - slumber (-ing)."]},{"k":"H8573","v":["תְּנוּפָה","tᵉnûwphâh","ten-oo-faw'","From H5130; a brandishing (in threat); by implication tumult; specifically the official undulation of sacrificial offerings: - offering, shaking, wave (offering)."]},{"k":"H8574","v":["תַּנּוּר","tannûwr","tan-noor'","From H5216; a fire pot: - furnace, oven."]},{"k":"H8575","v":["תַּנְחוּם","tanchûwm","tan-khoom'","The third form is feminine; from H5162; compassion, solace: - comfort, consolation."]},{"k":"H8576","v":["תַּנְחֻמֶת","Tanchumeth","tan-khoo'-meth","For H8575 (feminine); Tanchumeth, an Israelite: - Tanhumeth."]},{"k":"H8577","v":["תַּנִּין","tannîyn","tan-neen'","(The second form used in Eze_29:3); intensive from the same as H8565; a marine or land monster, that is, sea serpent or jackal: - dragon, sea-monster, serpent, whale."]},{"k":"H8578","v":["תִּנְיָן","tinyân","tin-yawn'","(Chaldee), corresponding to H8147; second: - second."]},{"k":"H8579","v":["תִּנְיָנוּת","tinyânûwth","tin-yaw-nooth'","(Chaldee), from H8578; a second time: - again."]},{"k":"H8580","v":["תַּנְשֶׁמֶת","tanshemeth","tan-sheh'-meth","From H5395; properly a hard breather, that is, the name of two unclean creatures, a lizard and a bird (both perhaps from changing color through their irascibility), probably the tree toad and the water hen: - mole, swan."]},{"k":"H8581","v":["תַּעָב","taʻâb","taw-ab'","A primitive root; to loathe, that is, (morally) detest: - (make to be) abhor (-red), (be, commit more, do) abominable (-y), X utterly."]},{"k":"H8582","v":["תָּעָה","tâʻâh","taw-aw'","A primitive root; to vacillate, that is, reel or stray (literally or figuratively); also causatively of both: - (cause to) go astray, deceive, dissemble, (cause to, make to) err, pant, seduce, (make to) stagger, (cause to) wander, be out of the way."]},{"k":"H8583","v":["תֹּעוּ","Tôʻûw","to'-oo","From H8582; error; Tou or Toi, a Syran king: - Toi, Tou."]},{"k":"H8584","v":["תְּעוּדָה","tᵉʻûwdâh","teh-oo-daw'","From H5749; attestation, that is, a precept, usage: - testimony."]},{"k":"H8585","v":["תְּעָלָה","tᵉʻâlâh","teh-aw-law'","From H5927; a channel (into which water is raised for irrigation); also a bandage or plaster (as placed upon a wound): - conduit, cured, healing, little river, trench, watercourse."]},{"k":"H8586","v":["תַּעֲלוּל","taʻălûwl","tah-al-ool'","From H5953; caprice (as a fit coming on), that is, vexation; concretely a tyrant: - babe, delusion."]},{"k":"H8587","v":["תַּעֲלֻמָּה","taʻălummâh","tah-al-oom-maw'","From H5956; a secret: - thing that is hid, secret."]},{"k":"H8588","v":["תַּעֲנוּג","taʻănûwg","tah-an-oog'","The third form being feminine; from H6026; luxury: - delicate, delight, pleasant."]},{"k":"H8589","v":["תַּעֲנִית","taʻănîyth","tah-an-eeth'","From H6031; affliction (of self), that is, fasting: - heaviness."]},{"k":"H8590","v":["תַּעֲנָךְ","Taʻănâk","tah-an-awk'","Of uncertain derivation; Taanak or Tanak, a place in Palestine: - Taanach, Tanach."]},{"k":"H8591","v":["תָּעַע","tâʻaʻ","taw-ah'","A primitive root; to cheat; by analogy to maltreat: - deceive, misuse."]},{"k":"H8592","v":["תַּעֲצֻמָה","taʻătsumâh","tah-ats-oo-maw'","From H6105; might (plural collective): - power."]},{"k":"H8593","v":["תַּעַר","taʻar","tah'-ar","From H6168; a knife or razor (as making bare); also a scabbard (as being bare, that is, empty): - [pen-] knife, rasor, scabbard, shave, sheath."]},{"k":"H8594","v":["תַּעֲרֻבָה","taʻărubâh","tah-ar-oo-baw'","From H6148; suretyship, that is, (concretely) a pledge: -  + hostage."]},{"k":"H8595","v":["תַּעְתֻּעַ","taʻtuaʻ","tah-too'-ah","From H8591; a fraud: - error."]},{"k":"H8596","v":["תֹּף","tôph","tofe","From H8608 contracted; a tambourine: - tabret, timbrel."]},{"k":"H8597","v":["תִּפְאָרָה","tiphʼârâh","tif-aw-raw'","From H6286; ornament (abstractly or concretely, literally or figuratively): - beauty (-iful), bravery, comely, fair, glory (-ious), honour, majesty."]},{"k":"H8598","v":["תַּפּוּחַ","tappûwach","tap-poo'-akh","From H5301; an apple (from its fragrance), that is, the fruit or the tree (probably including others of the pome order, as the quince, the orange, etc.): - apple (tree). See also H1054."]},{"k":"H8599","v":["תַּפּוּחַ","Tappûwach","tap-poo'-akh","The same as H8598; Tappuach, the name of two places in Palestine, also of an Israelite: - Tappuah."]},{"k":"H8600","v":["תְּפוֹצָה","tᵉphôwtsâh","tef-o-tsaw'","From H6327; a dispersal: - dispersion."]},{"k":"H8601","v":["תֻּפִין","tuphîyn","too-feen'","From H644; cookery, that is, (concretely) a cake: - baked piece."]},{"k":"H8602","v":["תָּפֵל","tâphêl","taw-fale'","From an unused root meaning to smear; plaster (as gummy) or slime; (figuratively) frivolity: - foolish things, unsavoury, untempered."]},{"k":"H8603","v":["תֹּפֶל","Tôphel","to'-fel","From the same as H8602; quagmire; Tophel, a place near the Desert: - Tophel."]},{"k":"H8604","v":["תִּפְלָה","tiphlâh","tif-law'","From the same as H8602; frivolity: - folly, foolishly."]},{"k":"H8605","v":["תְּפִלָּה","tᵉphillâh","tef-il-law'","From H6419; intercession, supplication; by implication a hymn: - prayer."]},{"k":"H8606","v":["תִּפְלֶצֶת","tiphletseth","tif-leh'-tseth","From H6426; fearfulness: - terrible."]},{"k":"H8607","v":["תִּפְסַח","Tiphçach","tif-sakh'","From H6452; ford; Tiphsach, a place in Mesopotamia: - Tipsah."]},{"k":"H8608","v":["תָּפַף","tâphaph","taw-faf'","A primitive root; to drum, that is, play (as) on the tambourine: - taber, play with timbrels."]},{"k":"H8609","v":["תָּפַר","tâphar","taw-far'","A primitive root; to sew: - (women that) sew (together)."]},{"k":"H8610","v":["תָּפַשׂ","tâphas","taw-fas'","A primitive root; to manipulate, that is, seize; chiefly to capture, wield; specifically to overlay; figuratively to use unwarrantably: - catch, handle, (lay, take) hold (on, over), stop, X surely, surprise, take."]},{"k":"H8611","v":["תֹּפֶת","tôpheth","to'-feth","From the base of H8608; a smiting, that is, (figuratively) contempt: - tabret."]},{"k":"H8612","v":["תֹּפֶת","Tôpheth","to'-feth","The same as H8611; Topheth, a place near Jerusalem: - Tophet, Topheth."]},{"k":"H8613","v":["תׇּפְתֶּה","Tophteh","tof-teh'","Probably a form of H8612; Tophteh, a place of cremation: - Tophet."]},{"k":"H8614","v":["תִּפְתַּי","tiphtay","tif-tah'-ee","(Chaldee), perhaps from H8199; judicial, that is, a lawyer: - sheriff."]},{"k":"H8615","v":["תִּקְוָה","tiqvâh","tik-vaw'","From H6960; literally a cord (as an attachment (compare H6961)); figuratively expectancy: - expectation ([-ted]), hope, live, thing that I long for."]},{"k":"H8616","v":["תִּקְוָה","Tiqvâh","tik-vaw'","The same as H8615; Tikvah, the name of two Israelites: - Tikvah."]},{"k":"H8617","v":["תְּקוּמָה","tᵉqûwmâh","tek-oo-maw'","From H6965; resistfulness: - power to stand."]},{"k":"H8618","v":["תְּקוֹמֵם","tᵉqôwmêm","tek-o-mame'","From H6965; an opponent: - rise up against."]},{"k":"H8619","v":["תָּקוֹעַ","tâqôwaʻ","taw-ko'-ah","From H8628 (in the muscal sense); a trumpet: - trumpet."]},{"k":"H8620","v":["תְּקוֹעַ","Tᵉqôwaʻ","tek-o'-ah","A form of H8619; Tekoa, a place in Palestine: - Tekoa, Tekoah."]},{"k":"H8621","v":["תְּקוֹעִי","Tᵉqôwʻîy","tek-o-ee'","Patronymic from H8620; a Tekoite or inhabitant of Tekoah: - Tekoite."]},{"k":"H8622","v":["תְּקוּפָה","tᵉqûwphâh","tek-oo-faw'","From H5362; a revolution, that is, (of the sun) course, (of time) lapse: - circuit, come about, end."]},{"k":"H8623","v":["תַּקִּיף","taqqîyph","tak-keef'","From H8630; powerful: - mightier."]},{"k":"H8624","v":["תַּקִּיף","taqqîyph","tak-keef'","(Chaldee), corresponding to H8623: - mighty, strong."]},{"k":"H8625","v":["תְּקַל","tᵉqal","tek-al'","(Chaldee); corresponding to H8254; to balance: - Tekel, be weighed."]},{"k":"H8626","v":["תָּקַן","tâqan","taw-kan'","A primitive root; to equalize, that is, straighten (intransitively or transitively); figuratively to compose: - set in order, make straight."]},{"k":"H8627","v":["תְּקַן","tᵉqan","tek-an'","(Chaldee), corresponding to H8626; to straighten up, that is, confirm: - establish."]},{"k":"H8628","v":["תָּקַע","tâqaʻ","taw-kah'","A primitive root; to clatter, that is, slap (the hands together), clang (an instrument); by analogy to drive (a nail or tent pin, a dart, etc.); by implication to become bondsman (by handclasping): - blow ([a trumpet]), cast, clap, fasten, pitch [tent], smite, sound, strike, X suretiship, thrust."]},{"k":"H8629","v":["תֵּקַע","têqaʻ","tay-kah'","From H8628; a blast of a trumpet: - sound."]},{"k":"H8630","v":["תָּקַף","tâqaph","taw-kaf'","A primitive root; to overpower: - prevail (against.)."]},{"k":"H8631","v":["תְּקֵף","tᵉqêph","tek-afe'","(Chaldee), corresponding to H8630; to become (causatively make) mighty or (figuratively) obstinate: - make firm, harden, be (-come) strong."]},{"k":"H8632","v":["תְּקֹף","tᵉqôph","tek-ofe'","(Chaldee), corresponding to H8633; power: - might, strength."]},{"k":"H8633","v":["תֹּקֶף","tôqeph","to'-kef","From H8630; might or (figuratively) positiveness: - authority, power, strength."]},{"k":"H8634","v":["תַּרְאֲלָה","Tarʼălâh","tar-al-aw'","Probably for H8653; a reeling; Taralah, a place in Palestine: - Taralah."]},{"k":"H8635","v":["תַּרְבּוּת","tarbûwth","tar-booth'","From H7235; multiplication, that is, progeny: - increase."]},{"k":"H8636","v":["תַּרְבִּית","tarbîyth","tar-beeth'","From H7235; multiplication, that is, percentage or bonus in addition to principal: - increase, unjust gain."]},{"k":"H8637","v":["תִּרְגַּל","tirgal","teer-gal'","A denominative from H7270; to cause to walk: - teach to go."]},{"k":"H8638","v":["תִּרְגַּם","tirgam","teer-gam'","A denominative from H7275 in the sense of throwing over; to transfer, that is, translate: - interpret."]},{"k":"H8639","v":["תַּרְדֵּמָה","tardêmâh","tar-day-maw'","From H7290; a lethargy or (by implication) trance: - deep sleep."]},{"k":"H8640","v":["תִּרְהָקָה","Tirhâqâh","teer-haw'-kaw","Of foreign derivation; Tirhakah, a king of Kush: - Tirhakah."]},{"k":"H8641","v":["תְּרוּמָה","tᵉrûwmâh","ter-oo-maw'","(The second form used in Deu_12:11); from H7311; a present (as offered up), especially in sacrifice or as tribute: - gift, heave offering ([shoulder]), oblation, offered (-ing)."]},{"k":"H8642","v":["תְּרוּמִיָּה","tᵉrûwmîyâh","ter-oo-mee-yaw'","Formed as H8641; a sacrificial offering: - oblation."]},{"k":"H8643","v":["תְּרוּעָה","tᵉrûwʻâh","ter-oo-aw'","From H7321; clamor, that is, acclamation of joy or a battle cry; especially clangor of trumpets, as an alarum: - alarm, blow (-ing) (of, the) (trumpets), joy, jubile, loud noise, rejoicing, shout (-ing), (high, joyful) sound (-ing)."]},{"k":"H8644","v":["תְּרוּפָה","tᵉrûwphâh","ter-oo-faw'","From H7322 in the sense of its congener H7495; a remedy: - medicine."]},{"k":"H8645","v":["תִּרְזָה","tirzâh","teer-zaw'","Probably from H7329; a species of tree (apparently from its slenderness), perhaps the cypress: - cypress."]},{"k":"H8646","v":["תֶּרַח","Terach","teh'-rakh","Of uncertain derivation; Terach, the father of Abraham; also a place in the Desert: - Tarah, Terah."]},{"k":"H8647","v":["תִּרְחֲנָה","Tirchănâh","teer-khan-aw'","Of uncertain derivation; Tirchanah, an Israelite: - Tirhanah."]},{"k":"H8648","v":["תְּרֵין","tᵉrêyn","ter-ane'","(Chaldee), the secend form is feminine; corresponding to H8147; two: - second, + twelve, two."]},{"k":"H8649","v":["תׇּרְמָה","tormâh","tor-maw'","From H7411; fraud: - deceit (-ful), privily."]},{"k":"H8650","v":["תֹּרֶן","tôren","to'-ren","Probably for H766; a pole (as a mast or flag staff): - beacon, mast."]},{"k":"H8651","v":["תְּרַע","tᵉraʻ","ter-ah'","(Chaldee), corresponding to H8179; a door; by implication a palace: - gate mouth."]},{"k":"H8652","v":["תָּרָע","târâʻ","taw-raw'","(Chaldee), from H8651; a doorkeeper: - porter."]},{"k":"H8653","v":["תַּרְעֵלָה","tarʻêlâh","tar-ay-law'","From H7477; reeling: - astonishment, trembling."]},{"k":"H8654","v":["תִּרְעָתִי","Tirʻâthîy","teer-aw-thee'","Patrial from an unused name meaning gate; a Tirathite or inhabitant of an unknown Tirah: - Tirathite."]},{"k":"H8655","v":["תְּרָפִים","tᵉrâphîym","ter-aw-feme'","Plural perhaps from H7495; a healer; Teraphim (singular or plural) a family idol: - idols (-atry), images, teraphim."]},{"k":"H8656","v":["תִּרְצָה","Tirtsâh","teer-tsaw'","From H7521; delightsomeness; Tirtsah, a place in Palestine; also an Israelitess: - also an Israelitess: - Tirzah."]},{"k":"H8657","v":["תֶּרֶשׁ","Teresh","teh'-resh","Of foreign derivation; Teresh, a eunuch of Xerxes: - Teresh."]},{"k":"H8658","v":["תַּרְשִׁישׁ","tarshîysh","tar-sheesh'","Probably of foreign derivation (compare H8659); a gem, perhaps the topaz: - beryl."]},{"k":"H8659","v":["תַּרְשִׁישׁ","Tarshîysh","tar-sheesh'","Probably the same as H8658 (as the region of the stone, or the reverse); Tarshish, a place on the Mediterranean, hence the epithet of a merchant vessel (as if for or from that port); also the name of a Persian and of an Israelite: - Tarshish, Tharshish."]},{"k":"H8660","v":["תִּרְשָׁתָא","Tirshâthâʼ","teer-shaw-thaw'","Of foreign derivation; the title of a Persian deputy or governor: - Tirshatha."]},{"k":"H8661","v":["תַּרְתָּן","Tartân","tar-tawn'","Of foreign derivation; Tartan, an Assyrian: - Tartan."]},{"k":"H8662","v":["תַּרְתָּק","Tartâq","tar-tawk'","Of foreign derivation; Tartak, a deity of the Avvites: - Tartak."]},{"k":"H8663","v":["תְּשֻׁאָה","tᵉshuʼâh","tesh-oo-aw'","From H7722; a crashing or loud clamor: - crying, noise, shouting, stir."]},{"k":"H8664","v":["תִּשְׁבִּי","Tishbîy","tish-bee'","Patrial from an unused name meaning recourse; a Tishbite or inhabitant of Tishbeh (in Gilead): - Tishbite."]},{"k":"H8665","v":["תַּשְׁבֵּץ","tashbêts","tash-bates'","From H7660; checkered stuff (as reticulated): - broidered."]},{"k":"H8666","v":["תְּשׁוּבָה","tᵉshûwbâh","tesh-oo-baw'","From H7725; a recurrence (of time or place); a reply (as returned): - answer, be expired, return."]},{"k":"H8667","v":["תְּשׂוּמֶת","tᵉsûwmeth","tes-oo-meth'","From H7760; a deposit, that is, pledging: -  + fellowship."]},{"k":"H8668","v":["תְּשׁוּעָה","tᵉshûwʻâh","tesh-oo-aw'","From H7768 in the sense of H3467; rescue (literally or figuratively, personal, national or spiritual): - deliverance, help, safety, salvation, victory."]},{"k":"H8669","v":["תְּשׁוּקָה","tᵉshûwqâh","tesh-oo-kaw'","From H7783 in the original sense of stretching out after; a longing: - desire."]},{"k":"H8670","v":["תְּשׁוּרָה","tᵉshûwrâh","tesh-oo-raw'","From H7788 in the sense of arrival; a gift: - present."]},{"k":"H8671","v":["תְּשִׁיעִי","tᵉshîyʻîy","tesh-ee-ee'","Ordinal from H8672; ninth: - ninth."]},{"k":"H8672","v":["תֵּשַׁע","têshaʻ","tay'-shah","The second form is the masculine of the first; perhaps from H8159 through the idea of a turn to the next or full number ten; nine or (ordinal) ninth: - nine (+ -teen, + -teenth, -th)."]},{"k":"H8673","v":["תִּשְׁעִים","tishʻîym","tish-eem'","Multiple from H8672; ninety: - ninety."]},{"k":"H8674","v":["תַּתְּנַי","Tattᵉnay","tat-ten-ah'-ee","Of foreign derivation; Tattenai, a Persian: - Tatnai."]},{"k":"G1","v":["Α","A","al'-fah","Of Hebrew origin; the first letter of the alphabet: figuratively only (from its use as a numeral) the first. Often used (usually “an”, before a vowel) also in composition (as a contraction from G427) in the sense of privation; so in many words beginning with this letter; occasionally in the sense of union (as a contraction of G260): - Alpha."]},{"k":"G2","v":["Ἀαρών","Aarṓn","ah-ar-ohn'","Of Hebrew origin [H175]; Aaron, the brother of Moses: - Aaron."]},{"k":"G3","v":["Ἀβαδδών","Abaddṓn","ab-ad-dohn'","Of Hebrew origin [H11]; a destroying angel: - Abaddon."]},{"k":"G4","v":["ἀβαρής","abarḗs","ab-ar-ace'","From G1 (as a negative particle) and G922; weightless, that is (figuratively) not burdensome: - from being burdensome."]},{"k":"G5","v":["Ἀββᾶ","Abbâ","ab-bah'","Of Chaldee origin [H2]; father (as a vocative): - Abba."]},{"k":"G6","v":["Ἄβελ","Ábel","ab'-el","Of Hebrew origin [H1893]; Abel, the son of Adam: - Abel."]},{"k":"G7","v":["Ἀβιά","Abiá","ab-ee-ah'","Of Hebrew origin [H29]; Abijah, the name of two Israelites: - Abia."]},{"k":"G8","v":["Ἀβιαθάρ","Abiathár","ab-ee-ath'-ar","Of Hebrew origin [H54]; Abiathar, an Israelite: - Abiathar."]},{"k":"G9","v":["Ἀβιληνή","Abilēnḗ","ab-ee-lay-nay'","Of foreign origin (compare [H58]); Abilene, a region of Syria: - Abilene."]},{"k":"G10","v":["Ἀβιούδ","Abioúd","ab-ee-ood'","Of Hebrew origin [H31]; Abihud, an Israelite: - Abiud."]},{"k":"G11","v":["Ἀβραάμ","Abraám","ab-rah-am'","Of Hebrew origin [H85]; Abraham, the Hebrew patriarch. In Act_7:16 the text should probably read Jacob: - Abraham."]},{"k":"G12","v":["ἄβυσσος","ábyssos","ab'-us-sos","From G1 (as a negative particle) and a variation of G1037; depthless, that is, (specifically), (infernal) “abyss”: - deep, (bottomless) pit."]},{"k":"G13","v":["Ἄγαβος","Ágabos","ag'-ab-os","Of Hebrew origin (compare [H2285]); Agabus, an Israelite: - Agabus."]},{"k":"G14","v":["ἀγαθοεργέω","agathoergéō","ag-ath-er-gheh'-o","From G18 and G2041; to work good: - do good."]},{"k":"G15","v":["ἀγαθοποιέω","agathopoiéō","ag-ath-op-oy-eh'-o","From G17; to be a well-doer (as a favor or a duty): - (when) do good (well)."]},{"k":"G16","v":["ἀγαθοποιΐα","agathopoiḯa","ag-ath-op-oy-ee'-ah","From G17; well-doing, that is, virtue: - well-doing."]},{"k":"G17","v":["ἀγαθοποιός","agathopoiós","ag-ath-op-oy-os'","From G18 and G4160; a well-doer, that is, virtuous: - them that do well."]},{"k":"G18","v":["ἀγαθός","agathós","ag-ath-os'","A primary word; “good” (in any sense, often as noun): - benefit, good (-s, things), well. Compare G2570."]},{"k":"G19","v":["ἀγαθωσύνη","agathōsýnē","ag-ath-o-soo'-nay","From G18; goodness, that is, virtue or beneficence: - goodness."]},{"k":"G20","v":["ἀγαλλίασις","agallíasis","ag-al-lee'-as-is","From G21; exultation; specifically welcome: - gladness, (exceeding) joy."]},{"k":"G21","v":["ἀγαλλιάω","agalliáō","ag-al-lee-ah'-o","From ἄγαν agan (much) and G242; properly to jump for joy, that is, exult: - be (exceeding) glad, with exceeding joy, rejoice (greatly)."]},{"k":"G22","v":["ἄγαμος","ágamos","ag'-am-os","From G1 (as a negative particle) and G1062; unmarried: - unmarried."]},{"k":"G23","v":["ἀγανακτέω","aganaktéō","ag-an-ak-teh'-o","From ἄγαν agan (much) and ἄχθος achhos̄ (grief; akin to the base of G43); to be greatly afflicted, that is, (figuratively) indignant: - be much (sore) displeased, have (be moved with, with) indignation."]},{"k":"G24","v":["ἀγανάκτησις","aganáktēsis","ag-an-ak'-tay-sis","From G23; indignation: - indignation."]},{"k":"G25","v":["ἀγαπάω","agapáō","ag-ap-ah'-o","Perhaps from ἄγαν agan (much; or compare [H5689]); to love (in a social or moral sense): - (be-) love (-ed). Compare G5368."]},{"k":"G26","v":["ἀγάπη","agápē","ag-ah'-pay","From G25; love, that is, affection or benevolence; specifically (plural) a love feast: - (feast of) charity ([-ably]), dear, love."]},{"k":"G27","v":["ἀγαπητός","agapētós","ag-ap-ay-tos'","From G25; beloved: - (dearly, well) beloved, dear."]},{"k":"G28","v":["Ἄγαρ","Ágar","ag'-ar","Of Hebrew origin [H1904]; Hagar, the concubine of Abraham: - Hagar."]},{"k":"G29","v":["ἀγγαρεύω","angareúō","ang-ar-yew'-o","Of foreign origin (compare [H104]); properly to be a courier, that is, (by implication) to press into public service: - compel (to go)."]},{"k":"G30","v":["ἀγγεῖον","angeîon","ang-eye'-on","From ἄγκάλη aggos (a pail, perhaps as bent; compare the base of G43); a receptacle: - vessel."]},{"k":"G31","v":["ἀγγελία","angelía","ang-el-ee'-ah","From G32; an announcement, that is, (by implication) precept: - message."]},{"k":"G32","v":["ἄγγελος","ángelos","ang'-el-os","From ἀγγέλλω aggellō (probably derived from G71; compare G34; to bring tidings); a messenger; especially an “angel”; by implication a pastor: - angel, messenger."]},{"k":"G33","v":["ἄγε","áge","ag'-eh","Imperative of G71; properly lead, that is, come on: - go to."]},{"k":"G34","v":["ἀγέλη","agélē","ag-el'-ay","From G71 (compare G32); a drove: - herd."]},{"k":"G35","v":["ἀγενεαλόγητος","agenealógētos","ag-en-eh-al-og'-ay-tos","From G1 (as negative particle) and G1075; unregistered as to birth: - without descent."]},{"k":"G36","v":["ἀγενής","agenḗs","ag-en-ace'","From G1 (as negative particle) and G1085; properly without kin, that is, (of unknown descent, and by implication) ignoble: - base things."]},{"k":"G37","v":["ἁγιάζω","hagiázō","hag-ee-ad'-zo","From G40; to make holy, that is, (ceremonially) purify or consecrate; (mentally) to venerate: - hallow, be holy, sanctify."]},{"k":"G38","v":["ἁγιασμός","hagiasmós","hag-ee-as-mos'","From G37; properly purification, that is, (the state) purity; concretely (by Hebraism) a purifier: - holiness, sanctification."]},{"k":"G39","v":["ἅγιον","hágion","hag'-ee-on","Neuter of G40; a sacred thing (that is, spot): - holiest (of all), holy place, sanctuary."]},{"k":"G40","v":["ἅγιος","hágios","hag'-ee-os","From ἅγος hagos (an awful thing) compare G53, [H2282]; sacred (physically pure, morally blameless or religious, ceremonially consecrated): - (most) holy (one, thing), saint."]},{"k":"G41","v":["ἁγιότης","hagiótēs","hag-ee-ot'-ace","From G40; sanctity (that is, properly the state): - holiness."]},{"k":"G42","v":["ἁγιωσύνη","hagiōsýnē","hag-ee-o-soo'-nay","From G40; sacredness (that is, properly the quality): - holiness."]},{"k":"G43","v":["ἀγκάλη","ankálē","ang-kal'-ay","From ἄγκος agkos (a bend, 'ache'); an arm (as curved): - arm."]},{"k":"G44","v":["ἄγκιστρον","ánkistron","ang'-kis-tron","From the same as G43; a hook (as bent): - hook."]},{"k":"G45","v":["ἄγκυρα","ánkyra","ang'-koo-rah","From the same as G43; an “anchor” (as crooked): - anchor."]},{"k":"G46","v":["ἄγναφος","ágnaphos","ag'-naf-os","From G1 (as a negative particle) and the same as G1102; properly unfulled, that is, (by implication) new (cloth): - new."]},{"k":"G47","v":["ἁγνεία","hagneía","hag-ni'-ah","From G53; cleanliness (the quality), that is, (specifically) chastity: - purity."]},{"k":"G48","v":["ἁγνίζω","hagnízō","hag-nid'-zo","From G53; to make clean, that is, (figuratively) sanctify (ceremonially or morally): - purity (self)."]},{"k":"G49","v":["ἁγνισμός","hagnismós","hag-nis-mos'","From G48; a cleansing (the act), that is, (ceremonially) lustration: - purification."]},{"k":"G50","v":["ἀγνοέω","agnoéō","ag-no-eh'-o","From G1 (as a negative particle) and G3539; not to know (through lack of information or intelligence); by implication to ignore (through disinclination): - (be) ignorant (-ly), not know, not understand, unknown."]},{"k":"G51","v":["ἀγνόημα","agnóēma","ag-no'-ay-mah","From G50; a thing ignored, that is, shortcoming: - error."]},{"k":"G52","v":["ἄγνοια","ágnoia","ag'-noy-ah","From G50; ignorance (properly the quality): - ignorance."]},{"k":"G53","v":["ἁγνός","hagnós","hag-nos'","From the same as G40; properly clean, that is, (figuratively) innocent, modest, perfect: - chaste, clean, pure."]},{"k":"G54","v":["ἁγνότης","hagnótēs","hag-not'-ace","From G53; cleanness (the state), that is, (figuratively) blamelessness: - pureness."]},{"k":"G55","v":["ἁγνῶς","hagnōs","hag-noce'","Adverb from G53; purely, that is, honestly: - sincerely."]},{"k":"G56","v":["ἀγνωσία","agnōsía","ag-no-see'-ah","From G1 (as negative particle) and G1108; ignorance (properly the state): - ignorance, not the knowledge."]},{"k":"G57","v":["ἄγνωστος","ágnōstos","ag'-noce-tos'","From G1 (as negative particle) and G1110; unknown: - unknown."]},{"k":"G58","v":["ἀγορά","agorá","ag-or-ah'","From ἀγείρω “ageiro” (to gather; probably akin to G1453); properly the town square (as a place of public resort); by implication a market or thoroughfare: - market (-place), street."]},{"k":"G59","v":["ἀγοράζω","agorázō","ag-or-ad'-zo","From G58; properly to go to market, that is, (by implication) to purchase; specifically to redeem: - buy, redeem."]},{"k":"G60","v":["ἀγοραῖος","agoraîos","ag-or-ah'-yos","From G58; relating to the market place, that is, forensic (times); by implication vulgar: - baser sort, low."]},{"k":"G61","v":["ἄγρα","ágra","ag'-rah","From G71; (abstractly) a catching (of fish); also (concretely) a haul (of fish): - draught."]},{"k":"G62","v":["ἀγράμματος","agrámmatos","ag-ram-mat-os","From G1 (as negative particle) and G1121; unlettered, that is, illiterate: - unlearned."]},{"k":"G63","v":["ἀγραυλέω","agrauléō","ag-row-leh'-o","From G68 and G832 (in the sense of G833); to camp out: - abide in the field."]},{"k":"G64","v":["ἀγρεύω","agreúō","ag-rew'-o","From G61; to hunt, that is, (figuratively) to entrap: - catch."]},{"k":"G65","v":["ἀγριέλαιος","agriélaios","ag-ree-el'-ah-yos","From G66 and G1636; an oleaster: - olive tree (which is) wild."]},{"k":"G66","v":["ἄγριος","ágrios","ag'-ree-os","From G68; wild (as pertaining to the country), literally (natural) or figuratively (fierce): - wild, raging."]},{"k":"G67","v":["Ἀγρίππας","Agríppas","ag-rip'-pas","Apparently from G66 and G2462; wild-horse tamer; Agrippas, one of the Herods: - Agrippa."]},{"k":"G68","v":["ἀγρός","agrós","ag-ros'","From G71; a field (as a drive for cattle); generally the country; specifically a farm, that is, hamlet: - country, farm, piece of ground, land."]},{"k":"G69","v":["ἀγρυπνέω","agrypnéō","ag-roop-neh'-o","Ultimately from G1 (as negative particle) and G5258; to be sleepless, that is, keep awake: - watch."]},{"k":"G70","v":["ἀγρυπνία","agrypnía","ag-roop-nee'-ah","From G69; sleeplessness, that is, a keeping awake: - watch."]},{"k":"G71","v":["ἄγω","ágō","ag'-o","A primary verb; properly to lead; by implication to bring, drive, (reflexively) go, (specifically) pass (time), or (figuratively) induce: - be, bring (forth), carry, (let) go, keep, lead away, be open."]},{"k":"G72","v":["ἀγωγή","agōgḗ","ag-o-gay'","Reduplicated from G71; a bringing up, that is, mode of living: - manner of life."]},{"k":"G73","v":["ἀγών","agṓn","ag-one'","From G71; properly a place of assembly (as if led), that is, (by implication) a contest (held there); figuratively an effort or anxiety: - conflict, contention, fight, race."]},{"k":"G74","v":["ἀγωνία","agōnía","ag-o-nee'-ah","From G73; a struggle (properly the state), that is, (figuratively) anguish: - agony."]},{"k":"G75","v":["ἀγωνίζομαι","agōnízomai","ag-o-nid'-zom-ahee","From G73; to struggle, literally (to compete for a prize), figuratively (to contend with an adversary), or generally (to endeavor to accomplish something): - fight, labor fervently, strive."]},{"k":"G76","v":["Ἀδάμ","Adám","ad-am'","Of Hebrew origin [H121]; Adam, the first man; typically (of Jesus) man (as his representative): - Adam."]},{"k":"G77","v":["ἀδάπανος","adápanos","ad-ap'-an-os","From G1 (as a negative particle) and G1160; costless, that is, gratuitous: - without expense."]},{"k":"G78","v":["Ἀδδί","Addí","ad-dee'","Probably of Hebrew origin (compare [H5716]); Addi, an Israelite: - Addi."]},{"k":"G79","v":["ἀδελφή","adelphḗ","ad-el-fay'","Feminine of G80; a sister (natural or ecclesiastical): - sister."]},{"k":"G80","v":["ἀδελφός","adelphós","ad-el-fos'","From G1 (as a connective particle) and δελφύς delphus (the womb); a brother (literally or figuratively) near or remote (much like [H1]): - brother."]},{"k":"G81","v":["ἀδελφότης","adelphótēs","ad-el-fot'-ace","From G80; brotherhood (properly the feeling of brotherliness), that is, (the (Christian) fraternity: - brethren, brotherhood."]},{"k":"G82","v":["ἄδηλος","ádēlos","ad'-ay-los","From G1 (as a negative particle) and G1212; hidden, figuratively indistinct: - appear not, uncertain."]},{"k":"G83","v":["ἀδηλότης","adēlótēs","ad-ay-lot'-ace","From G82; uncertainty: - X uncertain."]},{"k":"G84","v":["ἀδήλως","adḗlōs","ad-ay'-loce","Adverb from G82; uncertainly: - uncertainly."]},{"k":"G85","v":["ἀδημονέω","adēmonéō","ad-ay-mon-eh'-o","From a derivative of ἀδέω adeō (to be sated to loathing); to be in distress (of mind): - be full of heaviness, be very heavy."]},{"k":"G86","v":["ᾅδης","háidēs","hah'-dace","From G1 (as a negative particle) and G1492; properly unseen, that is, “Hades” or the place (state) of departed souls: - grave, hell."]},{"k":"G87","v":["ἀδιάκριτος","adiákritos","ad-ee-ak'-ree-tos","From G1 (as a negative particle) and a derivative of G1252; properly undistinguished, that is, (actively) impartial: - without partiality."]},{"k":"G88","v":["ἀδιάλειπτος","adiáleiptos","ad-ee-al'-ipe-tos","From G1 (as a negative particle) and a derivative of a compound of G1223 and G3007; unintermitted, that is, permanent: - without ceasing, continual."]},{"k":"G89","v":["ἀδιαλείπτως","adialeíptōs","ad-ee-al-ipe'-toce","Adverb from G88; uninterruptedly, that is, without omission (on an appropriate occasion): - without ceasing."]},{"k":"G90","v":["ἀδιαφθορία","adiaphthoría","ad-ee-af-thor-ee'-ah","From a derivative of a compound of G1 (as a negative particle) and a derivative of G1311; incorruptibleness, that is, (figuratively) purity (of doctrine): - uncorruptness."]},{"k":"G91","v":["ἀδικέω","adikéō","ad-ee-keh'-o","From G94; to be unjust, that is, (actively) do wrong (morally, socially or physically): - hurt, injure, be an offender, be unjust, (do, suffer, take) wrong."]},{"k":"G92","v":["ἀδίκημα","adíkēma","ad-eek'-ay-mah","From G91; a wrong done: - evil doing, iniquity, matter of wrong."]},{"k":"G93","v":["ἀδικία","adikía","ad-ee-kee'-ah","From G94; (legal) injustice (properly the quality, by implication the act); moral wrongfulness (of charater, life or act): - iniquity, unjust, unrighteousness, wrong."]},{"k":"G94","v":["ἄδικος","ádikos","ad'-ee-kos","From G1 (as a negative particle) and G1349; unjust; by extension wicked; by implication treacherous; specifically heathen: - unjust, unrighteous."]},{"k":"G95","v":["ἀδίκως","adíkōs","ad-ee'-koce","Adverb from G94; unjustly: - wrongfully."]},{"k":"G96","v":["ἀδόκιμος","adókimos","ad-ok'-ee-mos","From G1 (as a negative particle) and G1384; unapproved, that is, rejected; by implication worthless (literally or morally): - castaway, rejected, reprobate."]},{"k":"G97","v":["ἄδολος","ádolos","ad'-ol-os","From G1 (as a negative particle) and G1388; undeceitful, that is, (figuratively) unadulterated: - sincere."]},{"k":"G98","v":["Ἀδραμυττηνός","Adramyttēnós","ad-ram-oot-tay-nos'","From Ἀδραμύττειον Adramutteion (a place in Asia Minor); Adramyttene or belonging to Adramyttium: - of Adramyttium."]},{"k":"G99","v":["Ἀδρίας","Adrías","ad-ree'-as","From Ἀδρία Adria (a place near its shore); the Adriatic sea (including the Ionian): - Adria."]},{"k":"G100","v":["ἁδρότης","hadrótēs","had-rot'-ace","From ἁδρός hadros (stout); plumpness, that is, (figuratively) liberality: - abundance."]},{"k":"G101","v":["ἀδυνατέω","adynatéō","ad-oo-nat-eh'-o","From G102; to be unable, that is, (passively) impossible: - be impossible."]},{"k":"G102","v":["ἀδύνατος","adýnatos","ad-oo'-nat-os","From G1 (as a negative particle) and G1415; unable, that is, weak (literally or figuratively); passively impossible: - could not do, impossible, impotent, not possible, weak."]},{"k":"G103","v":["ᾄδω","áidō","ad'-o","A primary verb; to sing: - sing."]},{"k":"G104","v":["ἀεί","aeí","ah-eye'","From an obsolete primary noun (apparently meaning continued duration); “ever”; by qualification regularly; by implication earnestly: - always, ever."]},{"k":"G105","v":["ἀετός","aetós","ah-et-os'","From the same as G109; an eagle (from its wind like flight): - eagle."]},{"k":"G106","v":["ἄζυμος","ázymos","ad'-zoo-mos","From G1 (as a negative particle) and G2219; unleavened, that is, (figuratively) uncorrupted; (in the neuter plural) specifically (by implication) the Passover week: - unleavened (bread)."]},{"k":"G107","v":["Ἀζώρ","Azṓr","ad-zore'","Of Hebrew origin (compare [H5809]); Azor, an Israelite: - Azor."]},{"k":"G108","v":["Ἄζωτος","Ázōtos","ad'-zo-tos","Of Hebrew origin [H795]; Azotus (that is, Ashdod), a place in Palestine: - Azotus."]},{"k":"G109","v":["ἀήρ","aḗr","ah-ayr'","From ἄημι aēmi (to breathe unconsciously, that is, respire; by analogy to blow); “air” (as naturally circumambient): - air. Compare G5594."]},{"k":"G110","v":["ἀθανασία","athanasía","ath-an-as-ee'-ah","From a compound of G1 (as a negative particle) and G2288; deathlessness: - immortality."]},{"k":"G111","v":["ἀθέμιτος","athémitos","ath-em'-ee-tos","From G1 (as a negative particle) and a derivative of θέμις themis (statute; from the base of G5087); illegal; by implication flagitious: - abominable, unlawful thing."]},{"k":"G112","v":["ἄθεος","átheos","ath'-eh-os","From G1 (as a negative particle) and G2316; godless: - without God."]},{"k":"G113","v":["ἄθεσμος","áthesmos","ath'-es-mos","From G1 (as a negative particle) and a derivative of G5087 (in the sense of enacting); lawless, that is, (by implication) criminal: - wicked."]},{"k":"G114","v":["ἀθετέω","athetéō","ath-et-eh'-o","From a compound of G1 (as a negative particle) and a derivative of G5087; to set aside, that is, (by implication) to disesteem, neutralize or violate: - cast off, despise, disannul, frustrate, bring to nought, reject."]},{"k":"G115","v":["ἀθέτησις","athétēsis","ath-et'-ay-sis","From G114; cancellation (literally or figuratively): - disannulling, put away."]},{"k":"G116","v":["Ἀθῆναι","Athēnai","ath-ay-nahee","Plural of Ἀθήνη Athēnē (the goddess of wisdom, who was reputed to have founded the city); Athenae, the captital of Greece: - Athens."]},{"k":"G117","v":["Ἀθηναῖος","Athēnaîos","ath-ay-nah'-yos","From G116; an Athenaean or inhabitant of Athenae: - Athenian."]},{"k":"G118","v":["ἀθλέω","athléō","ath-leh'-o","From ἄθλος athlos (a contest in the public lists); to contend in the competitive games: - strive."]},{"k":"G119","v":["ἄθλησις","áthlēsis","ath'-lay-sis","From G118; a struggle (figuratively): - fight."]},{"k":"G120","v":["ἀθυμέω","athyméō","ath-oo-meh'-o","From a compound of G1 (as a negative particle) and G2372; to be spiritless, that is, disheartened: - be dismayed."]},{"k":"G121","v":["ἄθωος","áthōos","ath'-o-os","From G1 (as a negative particle) and a probable derivative of G5087 (meaning a penalty); not guilty: - innocent."]},{"k":"G122","v":["αἴγειος","aígeios","ah'-ee-ghi-os","Form αἴξ aix (a goat); belonging to a goat: - goat."]},{"k":"G123","v":["αἰγιαλός","aigialós","ahee-ghee-al-os'","From ἀΐ́σσω aissō (to rush) and G251 (in the sense of the sea); a beach (on which the waves dash): - shore."]},{"k":"G124","v":["Αἰγύπτιος","Aigýptios","ahee-goop'-tee-os","From G125; an Egyptian or inhabitant of AEgyptus: - Egyptian."]},{"k":"G125","v":["Αἴγυπτος","Aígyptos","ah'-ee-goop-tos","Of uncertain derivation; AEgyptus, the land of the Nile: - Egypt."]},{"k":"G126","v":["ἀΐδιος","aḯdios","ah-id'-ee-os","From G104; everduring (forward and backward, or foward only): - eternal, everlasting."]},{"k":"G127","v":["αἰδώς","aidṓs","ahee-doce'","Perhaps from G1 (as a negative particle) and G1492 (through the idea of downcast eyes); bashfulness, that is, (towards men), modesty or (towards God) awe: - reverence, shamefacedness."]},{"k":"G128","v":["Αἰθίοψ","Aithíops","ahee-thee'-ops","From αἴθω aithō (to scorch) and ὤψ ōps (the face, from G3700); an Ethiopian (as a blackamoor): - Ethiopian."]},{"k":"G129","v":["αἷμα","haîma","hah'-ee-mah","Of uncertain derivation; blood, literally (of men or animals), figuratively (the juice of grapes) or specifically (the atoning blood of Christ); by implication bloodshed, also kindred: - blood."]},{"k":"G130","v":["αἱματεκχυσία","haimatekchysía","hahee-mat-ek-khoo-see'-ah","From G129 and a derivative of G1632; an effusion of blood: - shedding of blood."]},{"k":"G131","v":["αἱμοῤῥέω","haimorrhéō","hahee-mor-hreh'-o","From G129 and G4482; to flow blood, that is, have a haemorrhage: - diseased with an issue of blood."]},{"k":"G132","v":["Αἰνέας","Ainéas","ahee-neh'-as","Of uncertain derivation; AEneas, an Israelite: - AEneas."]},{"k":"G133","v":["αἴνεσις","aínesis","ah'-ee-nes-is","From G134; a praising (the act), that is, (specifically) a thank (offering): - praise."]},{"k":"G134","v":["αἰνέω","ainéō","ahee-neh'-o","From G136; to praise (God): - praise."]},{"k":"G135","v":["αἴνιγμα","aínigma","ah'-ee-nig-ma","From a derivative of G136 (in its primary sense); an obscure saying (“enigma”), that is, (abstractly) obscureness: - X darkly."]},{"k":"G136","v":["αἶνος","aînos","ah'-ee-nos","Apparently a primary word; properly a story, but used in the sense of G1868; praise (of God): - praise."]},{"k":"G137","v":["Αἰνών","Ainṓn","ahee-nohn'","Of Hebrew origin (a derivative of [H5869], place of springs); AEnon, a place in Palestine: - AEnon."]},{"k":"G138","v":["αἱρέομαι","hairéomai","hahee-reh'-om-ahee","Probably akin to G142; to take for oneself, that is, to prefer. Some of the forms are borrowed from a cognate (ἕλλομαι hellomai), which is otherwise obsolete: - choose. Some of the forms are borrowed from a cognate hellomai, hel-lom-ahee; which is otherwise obsolete."]},{"k":"G139","v":["αἵρεσις","haíresis","hah'-ee-res-is","From G138; properly a choice, that is, (specifically) a party or (abstractly) disunion. (“heresy” is the Greek word itself.): - heresy [which is the Greekord itself], sect."]},{"k":"G140","v":["αἱρετίζω","hairetízō","hahee-ret-id'-zo","From a derivative of G138; to make a choice: - choose."]},{"k":"G141","v":["αἱρετικός","hairetikós","hahee-ret-ee-kos'","From the same as G140; a schismatic. (“heretic” is the Greek word itself.): - heretic [the Greekord itself]."]},{"k":"G142","v":["αἴρω","aírō","ah'-ee-ro","A primary verb; to lift; by implication to take up or away; figuratively to raise (the voice), keep in suspense (the mind); specifically to sail away (that is, weigh anchor); by Hebraism (compare [H5375]) to expiate sin: - away with, bear (up), carry, lift up, loose, make to doubt, put away, remove, take (away, up)."]},{"k":"G143","v":["αἰσθάνομαι","aisthánomai","ahee-sthan'-om-ahee","Of uncertain derivation; to apprehend (properly by the senses): - perceive."]},{"k":"G144","v":["αἴσθησις","aísthēsis","ah'-ee-sthay-sis","From G143; perception, that is, (figuratively) discernment: - judgment."]},{"k":"G145","v":["αἰσθητήριον","aisthētḗrion","ahee-sthay-tay'-ree-on","From a derivative of G143; properly an organ of perception, that is, (figuratively) judgment: - senses."]},{"k":"G146","v":["αἰσχροκερδής","aischrokerdḗs","ahee-skhrok-er-dace'","From G150 and κέρδος kerdos (gain); sordid: - given to (greedy of) filthy lucre."]},{"k":"G147","v":["αἰσχροκερδῶς","aischrokerdōs","ahee-skhrok-er-doce'","Adverb from G146; sordidly: - for filthy lucre’s sake."]},{"k":"G148","v":["αἰσχρολογία","aischrología","ahee-skhrol-og-ee'-ah","From G150 and G3056; vile conversation: - filthy communication."]},{"k":"G149","v":["αἰσχρόν","aischrón","ahee-skhron'","Neuter of G150; a shameful thing, that is, indecorum: - shame."]},{"k":"G150","v":["αἰσχρός","aischrós","ahee-skhros'","From the same as G153; shameful, that is, base (specifically venal): - filthy."]},{"k":"G151","v":["αἰσχρότης","aischrótēs","ahee-skhrot'-ace","From G150; shamefulness, that is, obscenity: - filthiness."]},{"k":"G152","v":["αἰσχύνη","aischýnē","ahee-skhoo'-nay","From G153; shame or disgrace (abstractly or concretely): - dishonesty, shame."]},{"k":"G153","v":["αἰσχύνομαι","aischýnomai","ahee-skhoo'-nom-ahee","From αἶσχος aischos (disfigurement, that is, disgrace); to feel shame (for oneself): - be ashamed."]},{"k":"G154","v":["αἰτέω","aitéō","ahee-teh'-o","Of uncertain derivation; to ask (in generally): - ask, beg, call for, crave, desire, require. Compare G4441."]},{"k":"G155","v":["αἴτημα","aítēma","ah'-ee-tay-mah","From G154; a thing asked or (abstractly) an asking: - petition, request, required."]},{"k":"G156","v":["αἰτία","aitía","ahee-tee'-a","From the same as G154; a cause (as if asked for), that is, (logical) reason (motive, matter), (legal) crime (alleged or proved): - accusation, case, cause, crime, fault, [wh-]ere[-fore]."]},{"k":"G157","v":["αἰτίαμα","aitíama","ahee-tee'-am-ah","From a derivative of G156; a thing charged: - complaint."]},{"k":"G158","v":["αἴτιον","aítion","ah'-ee-tee-on","Neuter of G159; a reason or crime (like G156): - cause, fault."]},{"k":"G159","v":["αἴτιος","aítios","ah'-ee-tee-os","From the same as G154; causative, that is, (concretely) a causer: - author."]},{"k":"G160","v":["αἰφνίδιος","aiphnídios","aheef-nid'-ee-os","From a compound of G1 (as a negative particle) and G5316 (compare G1810), (meaning non apparent); unexpected, that is, (adverbially) suddenly: - sudden, unawares."]},{"k":"G161","v":["αἰχμαλωσία","aichmalōsía","aheekh-mal-o-see'-ah","From G164; captivity: - captivity."]},{"k":"G162","v":["αἰχμαλωτεύω","aichmalōteúō","aheekh-mal-o-tew'-o","From G164; to capture (like G163): - lead captive."]},{"k":"G163","v":["αἰχμαλωτίζω","aichmalōtízō","aheekh-mal-o-tid'-zo","From G164; to make captive: - lead away captive, bring into captivity."]},{"k":"G164","v":["αἰχμάλωτος","aichmálōtos","aheekh-mal-o-tos'","From αἰχμή aichmē (a spear) and a derivative of the same as G259; properly a prisoner of war, that is, (generally) a captive: - captive."]},{"k":"G165","v":["αἰών","aiṓn","ahee-ohn'","From the same as G104; properly an age; by extension perpetuity (also past); by implication the world; specifically (Jewish) a Messianic period (present or future): - age, course, eternal, (for) ever (-more), [n-]ever, (beginning of the, while the) world (began, without end). Compare G5550."]},{"k":"G166","v":["αἰώνιος","aiṓnios","ahee-o'-nee-os","From G165; perpetual (also used of past time, or past and future as well): - eternal, for ever, everlasting, world (began)."]},{"k":"G167","v":["ἀκαθαρσία","akatharsía","ak-ath-ar-see'-ah","From G169; impurity (the quality), physically or morally: - uncleanness."]},{"k":"G168","v":["ἀκαθάρτης","akathártēs","ak-ath-ar'-tace","From G169; impurity (the state), morally: - filthiness."]},{"k":"G169","v":["ἀκάθαρτος","akáthartos","ak-ath'-ar-tos","From G1 (as a negative particle) and a presumed derivative of G2508 (meaning cleansed); impure (ceremonially, morally (lewd) or specifically (demonic)): - foul, unclean."]},{"k":"G170","v":["ἀκαιρέομαι","akairéomai","ak-ahee-reh'-om-ahee","From a compound of G1 (as a negative particle) and G2540 (meaning unseasonable); to be inopportune (for oneself), that is, to fail of a proper occasion: - lack opportunity."]},{"k":"G171","v":["ἀκαίρως","akaírōs","ak-ah'-ee-roce","Adverb from the same as G170; inopportunely: - out of season."]},{"k":"G172","v":["ἄκακος","ákakos","ak'-ak-os","From G1 (as a negative particle) and G2556; not bad, that is, (objectively) innocent or (subjectively) unsuspecting: - harmless, simple."]},{"k":"G173","v":["ἄκανθα","ákantha","ak'-an-thah","Probably from the same as G188; a thorn: - thorn."]},{"k":"G174","v":["ἀκάνθινος","akánthinos","ak-an'-thee-nos","From G173; thorny: - of thorns."]},{"k":"G175","v":["ἄκαρπος","ákarpos","ak'-ar-pos","From G1 (as a negative particle) and G2590; barren (literally or figuratively): - without fruit, unfruitful."]},{"k":"G176","v":["ἀκατάγνωστος","akatágnōstos","ak-at-ag'-noce-tos","From G1 (as a negative particle) and a derivative of G2607; unblamable: - that cannot be condemned."]},{"k":"G177","v":["ἀκατακάλυπτος","akatakályptos","ak-at-ak-al'-oop-tos","From G1 (as a negative particle) and a derivative of a compound of G2596 and G2572; unveiled: - uncovered."]},{"k":"G178","v":["ἀκατάκριτος","akatákritos","ak-at-ak'-ree-tos","From G1 (as a negative particle) and a derivative of G2632; without (legal) trial: - uncondemned."]},{"k":"G179","v":["ἀκατάλυτος","akatálytos","ak-at-al'-oo-tos","From G1 (as a negative particle) and a derivative of G2647; indissoluble, that is, (figuratively) permanent: - endless."]},{"k":"G180","v":["ἀκατάπαυστος","akatápaustos","ak-at-ap'-ow-stos","From G1 (as a negative particle) and a derivative of G2664; unrefraining: - that cannot cease."]},{"k":"G181","v":["ἀκαταστασία","akatastasía","ak-at-as-tah-see'-ah","From G182; instability, that is, disorder: - commotion, confusion, tumult."]},{"k":"G182","v":["ἀκατάστατος","akatástatos","ak-at-as'-tat-os","From G1 (as a negative particle) and a derivative of G2525; inconstant: - unstable."]},{"k":"G183","v":["ἀκατάσχετος","akatáschetos","ak-at-as'-khet-os","From G1 (as a negative particle) and a derivative of G2722; unrestrainable: - unruly."]},{"k":"G184","v":["Ἀκελδαμά","Akeldamá","ak-el-dam-ah'","Of Chaldee origin (meaning field of blood; corresponding to [H2506] and [H1818]); Akeldama, a place near Jerusalem: - Aceldama."]},{"k":"G185","v":["ἀκέραιος","akéraios","ak-er'-ah-yos","From G1 (as a negative particle) and a presumed derivative of G2767; unmixed, that is, (figuratively) innocent: - harmless, simple."]},{"k":"G186","v":["ἀκλινής","aklinḗs","ak-lee-nace'","From G1 (as a negative particle) and G2827; not leaning, (that is, (figuratively) firm: - without wavering."]},{"k":"G187","v":["ἀκμάζω","akmázō","ak-mad'-zo","From the same as G188; to make a point, that is, (figuratively) mature: - be fully ripe."]},{"k":"G188","v":["ἀκμήν","akmḗn","ak-mane'","Accusative case of a noun (“acme”) akin to ἀκή akē (a point) and meaning the same; adverbially just now, that is, still: - yet."]},{"k":"G189","v":["ἀκοή","akoḗ","ak-o-ay'","From G191; hearing (the act, the sense or the thing heard): - audience, ear, fame, which ye heard, hearing, preached, report, rumor."]},{"k":"G190","v":["ἀκολουθέω","akolouthéō","ak-ol-oo-theh'-o","From G1 (as a particle of union) and κέλευθος keleuthos (a road); properly to be in the same way with, that is, to accompany (specifically as a disciple): - follow, reach."]},{"k":"G191","v":["ἀκούω","akoúō","ak-oo'-o","A primary verb; to hear (in various senses): - give (in the) audience (of), come (to the ears), ([shall]) hear (-er, -ken), be noised, be reported, understand."]},{"k":"G192","v":["ἀκρασία","akrasía","ak-ras-ee'-a","From G193; want of self restraint: - excess, incontinency."]},{"k":"G193","v":["ἀκρατής","akratḗs","ak-rat'-ace","From G1 (as a negative particle) and G2904; powerless, that is, without self control: - incontinent."]},{"k":"G194","v":["ἄκρατος","ákratos","ak'-rat-os","From G1 (as a negative particle) and a presumed derivative of G2767; undiluted: - without mixture."]},{"k":"G195","v":["ἀκρίβεια","akríbeia","ak-ree'-bi-ah","From the same as G196; exactness: - perfect manner."]},{"k":"G196","v":["ἀκριβέστατος","akribéstatos","ak-ree-bes'-ta-tos","Superlative of ἀκριβης akribēs (a derivative of the same as G206); most exact: - most straitest."]},{"k":"G197","v":["ἀκριβέστερον","akribésteron","ak-ree-bes'-ter-on","Neuter of the comparative of the same as G196; (adverbially) more exactly: - more perfect (-ly)."]},{"k":"G198","v":["ἀκριβόω","akribóō","ak-ree-bo'-o","From the same as G196; to be exact, that is, ascertain: - enquire diligently."]},{"k":"G199","v":["ἀκριβῶς","akribōs","ak-ree-boce'","Adverb from the same as G196; exactly: - circumspectly, diligently, perfect (-ly)."]},{"k":"G200","v":["ἀκρίς","akrís","ak-rece'","Apparently from the same as G206; a locust (as pointed, or as lighting on the top of vegetation): - locust."]},{"k":"G201","v":["ἀκροατήριον","akroatḗrion","ak-ro-at-ay'-ree-on","From G202; an audience room: - place of hearing."]},{"k":"G202","v":["ἀκροατής","akroatḗs","ak-ro-at-ace'","From ἀκροάομαι akroaomai (to listen; apparently an intensive of G191); a hearer (merely): - hearer."]},{"k":"G203","v":["ἀκροβυστία","akrobystía","ak-rob-oos-tee'-ah","From G206 and probably a modified form of πόσθη posthē (the penis or male sexual organ); the prepuce; by implication an uncircumcised (that is, gentile, figuratively unregenerate) state or person: - not circumcised, uncircumcised [with G2192], uncircumcision."]},{"k":"G204","v":["ἀκρογωνιαῖος","akrogōniaîos","ak-rog-o-nee-ah'-yos","From G206 and G1137; belonging to the extreme corner: - chief corner."]},{"k":"G205","v":["ἀκροθίνιον","akrothínion","ak-roth-in'-ee-on","From G206 and θίς this (a heap); properly (in the plural) the top of the heap, that is, (by implication) best of the booty: - spoils."]},{"k":"G206","v":["ἄκρον","ákron","ak'-ron","Neuter of an adjective probably akin to the base of G188; the extremity: - one end . . . other, tip, top, uttermost part."]},{"k":"G207","v":["Ἀκύλας","Akýlas","ak-oo'-las","Probably for the Latin Aquila (an eagle); Akulas, an Israelite: - Aquila."]},{"k":"G208","v":["ἀκυρόω","akyróō","ak-oo-ro'-o","From G1 (as a negative particle) and G2964; to invalidate: - disannul, make of none effect."]},{"k":"G209","v":["ἀκωλύτως","akōlýtōs","ak-o-loo'-toce","Adverb from a compound of G1 (as a negative particle) and a derivative of G2967; in an unhindered manner, that is, freely: - no man forbidding him."]},{"k":"G210","v":["ἄκων","ákōn","ak'-ohn","From G1 (as a negative particle) and G1635; unwilling: - against the will."]},{"k":"G211","v":["ἀλάβαστρον","alábastron","al-ab'-as-tron","Neuter of ἀλάβαστρος alabastros (of uncertain derivation), the name of a stone; properly an “alabaster” box, that is, (by extension) a perfume vase (of any material): - (alabaster) box."]},{"k":"G212","v":["ἀλαζονεία","alazoneía","al-ad-zon-i'-a","From G213; braggadocio, that is, (by implication) self confidence: - boasting, pride."]},{"k":"G213","v":["ἀλαζών","alazṓn","al-ad-zone'","From ἄλη alē (vagrancy); braggart: - boaster."]},{"k":"G214","v":["ἀλαλάζω","alalázō","al-al-ad'-zo","From ἀλαλή alalē (a shout, “halloo”); to vociferate, that is, (by implication) to wail; figuratively to clang: - tinkle, wail."]},{"k":"G215","v":["ἀλάλητος","alálētos","al-al'-ay-tos","From G1 (as a negative particle) and a derivative of G2980; unspeakable: - unutterable, which cannot be uttered."]},{"k":"G216","v":["ἄλαλος","álalos","al'-al-os","From G1 (as a negative particle) and G2980; mute: - dumb."]},{"k":"G217","v":["ἅλας","hálas","hal'-as","From G251; salt; figuratively prudence: - salt."]},{"k":"G218","v":["ἀλείφω","aleíphō","al-i'-fo","From G1 (as a particle of union) and the base of G3045; to oil (with perfume): - anoint."]},{"k":"G219","v":["ἀλεκτοροφωνία","alektorophōnía","al-ek-tor-of-o-nee'-ah","From G220 and G5456; cock crow, that is, the third night watch: - cockcrowing."]},{"k":"G220","v":["ἀλέκτωρ","aléktōr","al-ek'-tore","From ἀλέκω alekō (to ward off); a cock or male fowl: - cock."]},{"k":"G221","v":["Ἀλεξανδρεύς","Alexandreús","al-ex-and-reuce'","From Ἀλεξάνδρεια Alexandreia (the city so called); an Alexandreian or inhabitant of Alexandria: - of Alexandria, Alexandrian."]},{"k":"G222","v":["Ἀλεξανδρῖνος","Alexandrînos","al-ex-an-dree'-nos","From the same as G221; Alexandrine, or belonging to Alexandria: - of Alexandria."]},{"k":"G223","v":["Ἀλέξανδρος","Aléxandros","al-ex'-an-dros","From the same as (the first part of) G220 and G435; man-defender; Alexander, the name of three Israelites and one other man: - Alexander."]},{"k":"G224","v":["ἄλευρον","áleuron","al'-yoo-ron","From ἀλέω aleō (to grind); flour: - meal."]},{"k":"G225","v":["ἀλήθεια","alḗtheia","al-ay'-thi-a","From G227; truth: - true, X truly, truth, verity."]},{"k":"G226","v":["ἀληθεύω","alētheúō","al-ayth-yoo'-o","From G227; to be true (in doctrine and profession): - speak (tell) the truth."]},{"k":"G227","v":["ἀληθής","alēthḗs","al-ay-thace'","From G1 (as a negative particle) and G2990; true (as not concealing): - true, truly, truth."]},{"k":"G228","v":["ἀληθινός","alēthinós","al-ay-thee-nos'","From G227; truthful: - true."]},{"k":"G229","v":["ἀλήθω","alḗthō","al-ay'-tho","From the same as G224; to grind: - grind."]},{"k":"G230","v":["ἀληθῶς","alēthōs","al-ay-thoce'","Adverb from G227; truly: - indeed, surely, of a surety, truly, of a (in) truth, verily, very."]},{"k":"G231","v":["ἁλιεύς","halieús","hal-ee-yoos'","From G251; a sailor (as engaged on the salt water), that is, (by implication) a fisher: - fisher (-man)."]},{"k":"G232","v":["ἁλιεύω","halieúō","hal-ee-yoo'-o","From G231; to be a fisher, that is, (by implication) to fish: - go a-fishing."]},{"k":"G233","v":["ἁλίζω","halízō","hal-id'-zo","From G251; to salt: - salt."]},{"k":"G234","v":["ἀλίσγεμα","alísgema","al-is'-ghem-ah","From ἀλισγέω alisgeō (to soil); (ceremonial) defilement: - pollution."]},{"k":"G235","v":["ἀλλά","allá","al-lah'","Neuter plural of G243; properly other things, that is, (adverbially) contrariwise (in many relations): - and, but (even), howbeit, indeed, nay, nevertheless, no, notwithstanding, save, therefore, yea, yet."]},{"k":"G236","v":["ἀλλάσσω","allássō","al-las'-so","From G243; to make different: - change."]},{"k":"G237","v":["ἀλλαχόθεν","allachóthen","al-lakh-oth'-en","From G243; from elsewhere: - some other way."]},{"k":"G238","v":["ἀλληγορέω","allēgoréō","al-lay-gor-eh'-o","From G243 and ἀγορέω agoreō (to harangue). Compare G58; to allegorize: - be an allegory (the Greek word itself)."]},{"k":"G239","v":["ἀλληλουϊα","allēlouïa","al-lay-loo'-ee-ah","Of hebrew origin (imperative of [H1984] and [H3050]); praise ye Jah!, an adoring exclamation: - alleluiah."]},{"k":"G240","v":["ἀλλήλων","allḗlōn","al-lay'-lone","Genitive plural from G243 reduplicated; one another. (Sometimes with G3326 or G4314.): - each other, mutual, one another, (the other), (them-, your-) selves, (selves) together [sometimes with G3326 or G4314]."]},{"k":"G241","v":["ἀλλογενής","allogenḗs","al-log-en-ace'","From G243 and G1085; foreign, that is, not a Jew: - stranger."]},{"k":"G242","v":["ἅλλομαι","hállomai","hal'-lom-ahee","Middle voice of apparently a primary verb; to jump; figuratively to gush: - leap, spring up."]},{"k":"G243","v":["ἄλλος","állos","al'-los","A primary word; “else”, that is, different (in many applications): - more, one (another), (an-, some an-) other (-s, -wise)."]},{"k":"G244","v":["ἀλλοτριεπίσκοπος","allotriepískopos","al-lot-ree-ep-is'-kop-os","From G245 and G1985; overseeing others' affairs, that is, a meddler (specifically in Gentile customs): - busybody in other men’s matters."]},{"k":"G245","v":["ἀλλότριος","allótrios","al-lot'-ree-os","From G243; another's, that is, not one’s own; by extension foreign, not akin, hostile: - alien, (an-) other (man’s, men’s), strange (-r)."]},{"k":"G246","v":["ἀλλόφυλος","allóphylos","al-lof'-oo-los","From G243 and G5443; foreign, that is, (specifically) Gentile: - one of another nation."]},{"k":"G247","v":["ἄλλως","állōs","al'-loce","Adverb from G243; differently: - otherwise."]},{"k":"G248","v":["ἀλοάω","aloáō","al-o-ah'-o","From the same as G257; to tread out grain: - thresh, tread out the corn."]},{"k":"G249","v":["ἄλογος","álogos","al'-og-os","From G1 (as a negative particle) and G3056; irrational: - brute, unreasonable."]},{"k":"G250","v":["ἀλόη","alóē","al-o-ay'","Of foreign origin (compare [H174]); aloes (the gum): - aloes."]},{"k":"G251","v":["ἅλς","háls","halce","A primary word; “salt”: - salt."]},{"k":"G252","v":["ἁλυκός","halykós","hal-oo-kos'","From G251; briny: - salt."]},{"k":"G253","v":["ἀλυπότερος","alypóteros","al-oo-pot'-er-os","Comparative of a compound of G1 (as a negative particle) and G3077; more without grief: - less sorrowful."]},{"k":"G254","v":["ἅλυσις","hálysis","hal'-oo-sis","Of uncertain derivation; a fetter or manacle: - bonds, chain."]},{"k":"G255","v":["ἀλυσιτελής","alysitelḗs","al-oo-sit-el-ace'","From G1 (as a negative particle) and the base of G3081; gainless, that is, (by implication) pernicious: - unprofitable."]},{"k":"G256","v":["Ἀλφαῖος","Alphaîos","al-fah'-yos","Of Hebrew origin (compare [H2501]); Alpheus, an Israelite: - Alpheus."]},{"k":"G257","v":["ἅλων","hálōn","hal'-ohn","Probably form the base of G1507; a threshing floor (as rolled hard), that is, (figuratively) the grain (and chaff, as just threshed): - floor."]},{"k":"G258","v":["ἀλώπηξ","alṓpēx","al-o'-pakes","Of uncertain derivation; a fox, that is, (figuratively) a cunning person: - fox"]},{"k":"G259","v":["ἅλωσις","hálōsis","hal'-o-sis","From a collateral form of G138; capture: - be taken."]},{"k":"G260","v":["ἅμα","háma","ham'-ah","A primary particle; properly at the “same” time, but freely used as a preposition or adverb denoting close association: - also, and, together, with (-al)."]},{"k":"G261","v":["ἀμαθής","amathḗs","am-ath-ace'","From G1 (as a negative particle) and G3129; ignorant: - unlearned."]},{"k":"G262","v":["ἀμαράντινος","amarántinos","am-ar-an'-tee-nos","From G263; “amaranthine”, that is, (by implication) fadeless: - that fadeth not away."]},{"k":"G263","v":["ἀμάραντος","amárantos","am-ar'-an-tos","From G1 (as a negative particle) and a presumed derivative of G3133; unfading, that is, (by implication) perpetual: - that fadeth not away."]},{"k":"G264","v":["ἁμαρτάνω","hamartánō","ham-ar-tan'-o","Perhaps from G1 (as a negative particle) and the base of G3313; properly to miss the mark (and so not share in the prize), that is, (figuratively) to err, especially (morally) to sin: - for your faults, offend, sin, trespass."]},{"k":"G265","v":["ἁμάρτημα","hamártēma","ham-ar'-tay-mah","From G264; a sin (properly concrete): - sin."]},{"k":"G266","v":["ἁμαρτία","hamartía","ham-ar-tee'-ah","From G264; sin (properly abstract): - offence, sin (-ful)."]},{"k":"G267","v":["ἀμάρτυρος","amártyros","am-ar'-too-ros","From G1 (as a negative particle) and a form of G3144; unattested: - without witness."]},{"k":"G268","v":["ἁμαρτωλός","hamartōlós","ham-ar-to-los'","From G264; sinful, that is, a sinner: - sinful, sinner."]},{"k":"G269","v":["ἄμαχος","ámachos","am'-akh-os","From G1 (as a negative particle) and G3163; peaceable: - not a brawler."]},{"k":"G270","v":["ἀμάω","amáō","am-ah'-o","From G260; properly to collect, that is, (by implication) reap: - reap down."]},{"k":"G271","v":["ἀμέθυστος","améthystos","am-eth'-oos-tos","From G1 (as a negative particle) and a derivative of G3184; the amethyst (supposed to prevent intoxication): - amethyst."]},{"k":"G272","v":["ἀμελέω","ameléō","am-el-eh'-o","From G1 (as a negative particle) and G3199; to be careless of: - make light of, neglect, be negligent, not regard."]},{"k":"G273","v":["ἄμεμπτος","ámemptos","am'-emp-tos","From G1 (as a negative particle) and a derivative of G3201; irreproachable: - blameless, faultless, unblamable."]},{"k":"G274","v":["ἀμέμπτως","amémptōs","am-emp'-toce","Adverb from G273; faultlessly: - blameless, unblamably."]},{"k":"G275","v":["ἀμέριμνος","amérimnos","am-er'-im-nos","From G1 (as a negative particle) and G3308; not anxious: - without care (-fulness), secure."]},{"k":"G276","v":["ἀμετάθετος","ametáthetos","am-et-ath'-et-os","From G1 (as a negative particle) and a derivative of G3346; unchangeable, or (neuter as abstract) unchangeability: - immutable (-ility)."]},{"k":"G277","v":["ἀμετακίνητος","ametakínētos","am-et-ak-in'-ay-tos","From G1 (as a negative particle) and a derivative of G3334; immovable: - unmovable."]},{"k":"G278","v":["ἀμεταμέλητος","ametamélētos","am-et-am-el'-ay-tos","From G1 (as a negative particle) and a presumed derivative of G3338; irrevocable: - without repentance, not to be repented of."]},{"k":"G279","v":["ἀμετανόητος","ametanóētos","am-et-an-o'-ay-tos","From G1 (as a negative particle) and a presumed derivative of G3340; unrepentant: - impenitent."]},{"k":"G280","v":["ἄμετρος","ámetros","am'-et-ros","From G1 (as a negative particle) and G3358; immoderate: - (thing) without measure."]},{"k":"G281","v":["ἀμήν","amḗn","am-ane'","Of Hebrew origin [H543]; properly firm, that is, (figuratively) trustworthy; adverbially surely (often as interjection so be it): - amen, verily."]},{"k":"G282","v":["ἀμήτωρ","amḗtōr","am-ay'-tore","From G1 (as a negative particle) and G3384; motherless, that is, of unknown maternity: - without mother."]},{"k":"G283","v":["ἀμίαντος","amíantos","am-ee'-an-tos","From G1 (as a negative particle) and a derivative of G3392; unsoiled, that is, (figuratively) pure: - undefiled."]},{"k":"G284","v":["Ἀμιναδάβ","Aminadáb","am-ee-nad-ab'","Of Hebrew origin [H5992]; Aminadab, an Israelite: - Aminadab."]},{"k":"G285","v":["ἄμμος","ámmos","am'-mos","Perhaps from G260; sand (as heaped on the beach): - sand."]},{"k":"G286","v":["ἀμνός","amnós","am-nos'","Apparently a primary word; a lamb: - lamb."]},{"k":"G287","v":["ἀμοιβή","amoibḗ","am-oy-bay'","From ἀμείβω ameibō (to exchange); requital: - requite."]},{"k":"G288","v":["ἄμπελος","ámpelos","am'-pel-os","Probably from the base of G297 and that of G257; a vine (as coiling about a support): - vine."]},{"k":"G289","v":["ἀμπελουργός","ampelourgós","am-pel-oor-gos'","From G288 and G2041; a vine worker, that is, pruner: - vine-dresser."]},{"k":"G290","v":["ἀμπελών","ampelṓn","am-pel-ohn'","From G288; a vineyard: - vineyard."]},{"k":"G291","v":["Ἀμπλίας","Amplías","am-plee'-as","Contracted for the Latin ampliatus (enlarged); Amplias, a Roman Christian: - Amplias."]},{"k":"G292","v":["ἀμύνομαι","amýnomai","am-oo'-nom-ahee","Middle voice of a primary verb; to ward off (for oneself), that is, protect: - defend."]},{"k":"G293","v":["ἀμφίβληστρον","amphíblēstron","am-fib'-lace-tron","From a compound of the base of G297 and G906; a (fishing) net (as thrown about the fish): - net."]},{"k":"G294","v":["ἀμφιέννυμι","amphiénnymi","am-fee-en'-noo-mee","From the base of G297 and ἕννυμι hennumi (to invest); to enrobe: - clothe."]},{"k":"G295","v":["Ἀμφίπολις","Amphípolis","am-fip'-ol-is","From the base of G297 and G4172; a city surrounded by a river; Amphipolis, a place in Macedonia: - Amphipolis."]},{"k":"G296","v":["ἄμφοδον","ámphodon","am'-fod-on","From the base of G297 and G3598; a fork in the road: - where two ways meet."]},{"k":"G297","v":["ἀμφότερος","amphóteros","am-fot'-er-os","Comparative of ἀμφί amphi (around); (in plural) both: - both."]},{"k":"G298","v":["ἀμώμητος","amṓmētos","am-o'-may-tos","From G1 (as a negative particle) and a derivative of G3469; unblameable: - blameless."]},{"k":"G299","v":["ἄμωμος","ámōmos","am'-o-mos","From G1 (as a negative particle) and G3470; unblemished (literally or figuratively): - without blame (blemish, fault, spot), faultless, unblameable."]},{"k":"G300","v":["Ἀμών","Amṓn","am-one'","Of hebrew origin [H526]; Amon, an Israelite: - Amon."]},{"k":"G301","v":["Ἀμώς","Amṓs","am-oce'","Of Hebrew origin [H531]; Amos, an Israelite: - Amos."]},{"k":"G302","v":["ἄν","án","an","A primary particle, denoting a supposition, wish, possibility or uncertainty: - [what-, where-, whither-, who-]soever. Usually unexpressed except by the subjunctive or potential mood. Also contraction for G1437."]},{"k":"G303","v":["ἀνά","aná","an-ah'","A primary preposition and adverb; properly up; but (by extension) used (distributively) severally, or (locally) at (etc.): - and, apiece, by, each, every (man), in, through. In compounds (as a prefix) it often means (by implication) repetition, intensity, reversal, etc."]},{"k":"G304","v":["ἀναβαθμός","anabathmós","an-ab-ath-mos'","From G305 (compare G898); a stairway: - stairs."]},{"k":"G305","v":["ἀναβαίνω","anabaínō","an-ab-ah'-ee-no","From G303 and the base of G939; to go up (literally or figuratively): - arise, ascend (up), climb (go, grow, rise, spring) up, come (up)."]},{"k":"G306","v":["ἀναβάλλομαι","anabállomai","an-ab-al'-lom-ahee","Middle voice from G303 and G906; to put off (for oneself): - defer."]},{"k":"G307","v":["ἀναβιβάζω","anabibázō","an-ab-ee-bad'-zo","From G303 and a derivative of the base of G939; to cause to go up, that is, haul (a net): - draw."]},{"k":"G308","v":["ἀναβλέπω","anablépō","an-ab-lep'-o","From G303 and G991; to look up; by implication to recover sight: - look (up), see, receive sight."]},{"k":"G309","v":["ἀνάβλεψις","anáblepsis","an-ab'-lep-sis","From G308; restoration of sight: - recovering of sight."]},{"k":"G310","v":["ἀναβοάω","anaboáō","an-ab-o-ah'-o","From G303 and G994; to halloo: - cry (aloud, out)."]},{"k":"G311","v":["ἀναβολή","anabolḗ","an-ab-ol-ay'","From G306; a putting off: - delay."]},{"k":"G312","v":["ἀναγγέλλω","anangéllō","an-ang-el'-lo","From G303 and the base of G32; to announce (in detail): - declare, rehearse, report, show, speak, tell."]},{"k":"G313","v":["ἀναγεννάω","anagennáō","an-ag-en-nah'-o","From G303 and G1080; to beget or (by extension) bear (again): - beget, (bear) X again."]},{"k":"G314","v":["ἀναγινώσκω","anaginṓskō","an-ag-in-oce'-ko","From G303 and G1097; to know again, that is, (by extension) to read: - read."]},{"k":"G315","v":["ἀναγκάζω","anankázō","an-ang-kad'-zo","From G318; to necessitate: - compel, constrain."]},{"k":"G316","v":["ἀναγκαῖος","anankaîos","an-ang-kah'-yos","From G318; necessary; by implication close (of kin): - near, necessary, necessity, needful."]},{"k":"G317","v":["ἀναγκαστῶς","anankastōs","an-ang-kas-toce'","Adverb from a derivative of G315; compulsorily: - by constraint."]},{"k":"G318","v":["ἀνάγκη","anánkē","an-ang-kay'","From G303 and the base of G43; constraint (literally or figuratively); by implication distress: - distress, must needs, (of) necessity (-sary), neededth, needful."]},{"k":"G319","v":["ἀναγνωρίζομαι","anagnōrízomai","an-ag-no-rid'-zom-ahee","Middle voice from G303 and G1107; to make (oneself) known: - be made known."]},{"k":"G320","v":["ἀνάγνωσις","anágnōsis","an-ag'-no-sis","From G314; (the act of) reading: - reading."]},{"k":"G321","v":["ἀνάγω","anágō","an-ag'-o","From G303 and G71; to lead up; by extension to bring out; specifically to sail away: - bring (again, forth, up again), depart, launch (forth), lead (up), loose, offer, sail, set forth, take up."]},{"k":"G322","v":["ἀναδείκνυμι","anadeíknymi","an-ad-ike'-noo-mee","From G303 and G1166; to exhibit, that is, (by implication) to indicate, appoint: - appoint, shew."]},{"k":"G323","v":["ἀνάδειξις","anádeixis","an-ad'-ike-sis","From G322; (the act of) exhibition: - shewing."]},{"k":"G324","v":["ἀναδέχομαι","anadéchomai","an-ad-ekh'-om-ahee","From G303 and G1209; to entertain (as a guest): - receive."]},{"k":"G325","v":["ἀναδίδωμι","anadídōmi","an-ad-eed'-om-ee","From G303 and G1325; to hand over: - deliver."]},{"k":"G326","v":["ἀναζάω","anazáō","an-ad-zah'-o","From G303 and G2198; to recover life (literally or figuratively): - (be a-) live again, revive."]},{"k":"G327","v":["ἀναζητέω","anazētéō","an-ad-zay-teh'-o","From G303 and G2212; to search out: - seek."]},{"k":"G328","v":["ἀναζώννυμι","anazṓnnymi","an-ad-zone'-noo-mee","From G303 and G2224; to gird afresh: - gird up."]},{"k":"G329","v":["ἀναζωπυρέω","anazōpyréō","an-ad-zo-poor-eh'-o","From G303 and a compound of the base of G2226 and G4442; to re-enkindle: - stir up."]},{"k":"G330","v":["ἀναθάλλω","anathállō","an-ath-al'-lo","From G303 and θάλλω thallō (to flourish); to revive: - flourish again."]},{"k":"G331","v":["ἀνάθεμα","anáthema","an-ath'-em-ah","From G394; a (religious) ban or (concretely) excommunicated (thing or person): - accursed, anathema, curse, X great."]},{"k":"G332","v":["ἀναθεματίζω","anathematízō","an-ath-em-at-id'-zo","From G331; to declare or vow under penalty of execration: - (bind under a) curse, bind with an oath."]},{"k":"G333","v":["ἀναθεωρέω","anatheōréō","an-ath-eh-o-reh'-o","From G303 and G2334; to look again (that is, attentively) at (literally or figuratively): - behold, consider."]},{"k":"G334","v":["ἀνάθημα","anáthēma","an-ath'-ay-mah","From G394 (like G331, but in a good sense); a votive offering: - gift."]},{"k":"G335","v":["ἀναίδεια","anaídeia","an-ah'-ee-die-ah'","From a compound of G1 (as a negative particle (compare G427)) and G127; impudence, that is, (by implication) importunity: - importunity."]},{"k":"G336","v":["ἀναίρεσις","anaíresis","an-ah'-ee-res-is","From G337; (the act of) killing: - death."]},{"k":"G337","v":["ἀναιρέω","anairéō","an-ahee-reh'-o","From G303 and (the active of) G138; to take up, that is, adopt; by implication to take away (violently), that is, abolish, murder: - put to death, kill, slay, take away, take up."]},{"k":"G338","v":["ἀναίτιος","anaítios","an-ah'-ee-tee-os","From G1 (as a negative particle) and G159 (in the sense of G156); innocent: - blameless, guiltless."]},{"k":"G339","v":["ἀνακαθίζω","anakathízō","an-ak-ath-id'-zo","From G303 and G2523; properly to set up, that is, (reflexively) to sit up: - sit up."]},{"k":"G340","v":["ἀνακαινίζω","anakainízō","an-ak-ahee-nid'-zo","From G303 and a derivative of G2537; to restore: - renew."]},{"k":"G341","v":["ἀνακαινόω","anakainóō","an-ak-ahee-no'-o","From G303 and a derivative of G2537; to renovate: - renew."]},{"k":"G342","v":["ἀνακαίνωσις","anakaínōsis","an-ak-ah'-ee-no-sis","From G341; renovation: - renewing."]},{"k":"G343","v":["ἀνακαλύπτω","anakalýptō","an-ak-al-oop'-to","From G303 (in the sense of reversal) and G2572; to unveil: - open, ([un-]) taken away."]},{"k":"G344","v":["ἀνακάμπτω","anakámptō","an-ak-amp'-to","From G303 and G2578; to turn back: - (re-) turn."]},{"k":"G345","v":["ἀνακεῖμαι","anakeîmai","an-ak-i'-mahee","From G303 and G2749; to recline (as a corpse or at a meal): - guest, lean, lie, sit (down, at meat), at the table."]},{"k":"G346","v":["ἀνακεφαλαίομαι","anakephalaíomai","an-ak-ef-al-ah'-ee-om-ahee","From G303 and G2775 (in its original sense); to sum up: - briefly comprehend, gather together in one."]},{"k":"G347","v":["ἀνακλίνω","anaklínō","an-ak-lee'-no","From G303 and G2827; to lean back: - lay, (make) sit down."]},{"k":"G348","v":["ἀνακόπτω","anakóptō","an-ak-op'-to","From G303 and G2875; to beat back, that is, check: - hinder."]},{"k":"G349","v":["ἀνακράζω","anakrázō","an-ak-rad'-zo","From G303 and G2896; to scream up (aloud): - cry out."]},{"k":"G350","v":["ἀνακρίνω","anakrínō","an-ak-ree'-no","From G303 and G2919; properly to scrutinize, that is, (by implication) investigate, interrogate, determine: - ask, question, discern, examine, judge, search."]},{"k":"G351","v":["ἀνάκρισις","anákrisis","an-ak'-ree-sis","From G350; a (judicial) investigation: - examination."]},{"k":"G352","v":["ἀνακύπτω","anakýptō","an-ak-oop'-to","From G303 (in the sense of reversal) and G2955; to unbend, that is, rise; figuratively be elated: - lift up, look up."]},{"k":"G353","v":["ἀναλαμβάνω","analambánō","an-al-am-ban'-o","From G303 and G2983; to take up: - receive up, take (in, unto, up)."]},{"k":"G354","v":["ἀνάληψις","análēpsis","an-al'-ape-sis","From G353; ascension: - taking up."]},{"k":"G355","v":["ἀναλίσκω","analískō","an-al-is'-ko","From G303 and a form of the alternate of G138; properly to use up, that is, destroy: - consume."]},{"k":"G356","v":["ἀναλογία","analogía","an-al-og-ee'-ah","From a compound of G303 and G3056; proportion: - proportion."]},{"k":"G357","v":["ἀναλογίζομαι","analogízomai","an-al-og-id'-zom-ahee","Middle voice from G356; to estimate, that is, (figuratively) contemplate: - consider."]},{"k":"G358","v":["ἄναλος","ánalos","an'-al-os","From G1 (as a negative particle) and G251; saltless, that is, insipid: - X lose saltness."]},{"k":"G359","v":["ἀνάλυσις","análysis","an-al'-oo-sis","From G360; departure: - departure."]},{"k":"G360","v":["ἀναλύω","analýō","an-al-oo'-o","From G303 and G3089; to break up, that is, depart (literally or figuratively): - depart, return."]},{"k":"G361","v":["ἀναμάρτητος","anamártētos","an-am-ar'-tay-tos","From G1 (as a negative particle) and a presumed derivative of G264; sinless: - that is without sin."]},{"k":"G362","v":["ἀναμένω","anaménō","an-am-en'-o","From G303 and G3306; to await: - wait for."]},{"k":"G363","v":["ἀναμιμνήσκω","anamimnḗskō","an-am-im-nace'-ko","From G303 and G3403; to remind; reflexively to recollect: - call to mind, (bring to, call to, put in), remember (-brance)."]},{"k":"G364","v":["ἀνάμνησις","anámnēsis","an-am'-nay-sis","From G363; recollection: - remembrance (again)."]},{"k":"G365","v":["ἀνανεόω","ananeóō","an-an-neh-o'-o","From G303 and a derivative of G3501; to renovate, that is, reform: - renew."]},{"k":"G366","v":["ἀνανήφω","ananḗphō","an-an-ay'-fo","From G303 and G3525; to become sober again, that is, (figuratively) regain (one’s) senses: - recover self."]},{"k":"G367","v":["Ἀνανίας","Ananías","an-an-ee'-as","Of Hebrew origin [H2608]; Ananias, the name of three Israelites: - Ananias."]},{"k":"G368","v":["ἀναντίῤῥητος","anantírrhētos","an-an-tir'-hray-tos","From G1 (as a negatively particle) and a presumed derivative of a compound of G473 and G4483; indisputable: - cannot be spoken against."]},{"k":"G369","v":["ἀναντιῤῥήτως","anantirrhḗtōs","an-an-tir-hray'-toce","Adverb from G368; promptly: - without gainsaying."]},{"k":"G370","v":["ἀνάξιος","anáxios","an-ax'-ee-os","From G1 (as a negative particle) and G514; unfit: - unworthy."]},{"k":"G371","v":["ἀναξίως","anaxíōs","an-ax-ee'-oce","Adverb from G370; irreverently: - unworthily."]},{"k":"G372","v":["ἀνάπαυσις","anápausis","an-ap'-ow-sis","From G373; intermission; by implication recreation: - rest."]},{"k":"G373","v":["ἀναπαύω","anapaúō","an-ap-ow'-o","From G303 and G3973; (reflexively) to repose (literally or figuratively (be exempt), remain); by implication to refresh: - take ease, refresh, (give, take) rest."]},{"k":"G374","v":["ἀναπείθω","anapeíthō","an-ap-i'-tho","From G303 and G3982; to incite: - persuade."]},{"k":"G375","v":["ἀναπέμπω","anapémpō","an-ap-em'-po","From G303 and G3992; to send up or back: - send (again)."]},{"k":"G376","v":["ἀνάπηρος","anápēros","an-ap'-ay-ros","From G303 (in the sense of intensity) and πῆρος pēros (maimed); crippled: - maimed."]},{"k":"G377","v":["ἀναπίπτω","anapíptō","an-ap-ip'-to","From G303 and G4098; to fall back, that is, lie down, lean back: - lean, sit down (to meat)."]},{"k":"G378","v":["ἀναπληρόω","anaplēróō","an-ap-lay-ro'-o","From G303 and G4137; to complete; by implication to occupy, supply; figuratively to accomplish (by coincidence or obedience): - fill up, fulfil, occupy, supply."]},{"k":"G379","v":["ἀναπολόγητος","anapológētos","an-ap-ol-og'-ay-tos","From G1 (as a negative particle) and a presumed derivative of G626; indefensible: - without excuse, inexcuseable."]},{"k":"G380","v":["ἀναπτύσσω","anaptýssō","an-ap-toos'-o","From G303 (in the sense of reversal) and G4428; to unroll (a scroll or volume): - open."]},{"k":"G381","v":["ἀνάπτω","anáptō","an-ap'-to","From G303 and G681; to enkindle: - kindle, light."]},{"k":"G382","v":["ἀναρίθμητος","anaríthmētos","an-ar-ith'-may-tos","From G1 (as a negative particle) and a derivative of G705; unnumbered, that is, without number: - innumerable."]},{"k":"G383","v":["ἀνασείω","anaseíō","an-as-i'-o","From G303 and G4579; figuratively to excite: - move, stir up."]},{"k":"G384","v":["ἀνασκευάζω","anaskeuázō","an-ask-yoo-ad'-zo","From G303 (in the sense of reversal) and a derivative of G4632; properly to pack up (baggage), that is, (by implication and figuratively) to upset: - subvert."]},{"k":"G385","v":["ἀνασπάω","anaspáō","an-as-pah'-o","From G303 and G4685; to take up or extricate: - draw up, pull out."]},{"k":"G386","v":["ἀνάστασις","anástasis","an-as'-tas-is","From G450; a standing up again, that is, (literally) a resurrection from death (individual, general or by implication (its author)), or (figuratively) a (moral) recovery (of spiritual truth): - raised to life again, resurrection, rise from the dead, that should rise, rising again."]},{"k":"G387","v":["ἀναστατόω","anastatóō","an-as-tat-o'-o","From a derivative of G450 (in the sense of removal); properly to drive out of home, that is, (by implication) to disturb (literally or figuratively): - trouble, turn upside down, make an uproar."]},{"k":"G388","v":["ἀνασταυρόω","anastauróō","an-as-tow-ro'-o","From G303 and G4717; to recrucify (figuratively): - crucify afresh."]},{"k":"G389","v":["ἀναστενάζω","anastenázō","an-as-ten-ad'-zo","From G303 and G4727; to sigh deeply: - sigh deeply."]},{"k":"G390","v":["ἀναστρέφω","anastréphō","an-as-tref'-o","From G303 and G4762; to overturn; also to return; by implication to busy oneself, that is, remain, live: - abide, behave self, have conversation, live, overthrow, pass, return, be used."]},{"k":"G391","v":["ἀναστροφή","anastrophḗ","an-as-trof-ay'","From G390; behavior: - conversation."]},{"k":"G392","v":["ἀνατάσσομαι","anatássomai","an-at-as'-som-ahee","From G303 and the middle of G5021; to arrange: - set in order."]},{"k":"G393","v":["ἀνατέλλω","anatéllō","an-at-el'-lo","From G303 and the base of G5056; to (cause to) arise: - (a-, make to) rise, at the rising of, spring (up), be up."]},{"k":"G394","v":["ἀνατίθεμαι","anatíthemai","an-at-ith'-em-ahee","From G303 and the middle of G5087; to set forth (for oneself), that is, propound: - communicate, declare."]},{"k":"G395","v":["ἀνατολή","anatolḗ","an-at-ol-ay'","From G393; a rising of light, that is, dawn (figuratively); by implication the east (also in plural): - dayspring, east, rising."]},{"k":"G396","v":["ἀνατρέπω","anatrépō","an-at-rep'-o","From G303 and the base of G5157; to overturn (figuratively): - overthrow, subvert."]},{"k":"G397","v":["ἀνατρέφω","anatréphō","an-at-ref'-o","From G303 and G5142; to rear (physically or mentally): - bring up, nourish (up)."]},{"k":"G398","v":["ἀναφαίνω","anaphaínō","an-af-ah'-ee-no","From G303 and G5316; to show, that is, (reflexively) appear, or (passively) have pointed out: - (should) appear, discover."]},{"k":"G399","v":["ἀναφέρω","anaphérō","an-af-er'-o","From G303 and G5342; to take up (literally or figuratively): - bear, bring (carry, lead) up, offer (up)."]},{"k":"G400","v":["ἀναφωνέω","anaphōnéō","an-af-o-neh'-o","From G303 and G5455; to exclaim: - speak out."]},{"k":"G401","v":["ἀνάχυσις","anáchysis","an-akh'-oo-sis","From a compound of G303 and χέω cheō (to pour); properly effusion, that is, (figuratively) license: - excess."]},{"k":"G402","v":["ἀναχωρέω","anachōréō","an-akh-o-reh'-o","From G303 and G5562; to retire: - depart, give place, go (turn) aside, withdraw self."]},{"k":"G403","v":["ἀνάψυξις","anápsyxis","an-aps'-ook-sis","From G404; properly a recovery of breath, that is, (figuratively) revival: - revival."]},{"k":"G404","v":["ἀναψύχω","anapsýchō","an-aps-oo'-kho","From G303 and G5594; properly to cool off, that is, (figuratively) relieve: - refresh."]},{"k":"G405","v":["ἀνδραποδιστής","andrapodistḗs","an-drap-od-is-tace'","From a derivative of a compound of G435 and G4228; an enslaver (as bringing men to his feet): - men-stealer."]},{"k":"G406","v":["Ἀνδρέας","Andréas","an-dreh'-as","From G435; manly; Andreas, an Israelite: - Andrew."]},{"k":"G407","v":["ἀνδρίζομαι","andrízomai","an-drid'-zom-ahee","Middle voice from G435; to act manly: - quit like men."]},{"k":"G408","v":["Ἀνδρόνικος","Andrónikos","an-dron'-ee-kos","From G435 and G3534; man of victory; Andronicos, an Israelite: - Andronicus."]},{"k":"G409","v":["ἀνδροφόνος","androphónos","an-drof-on'-os","From G435 and G5408; a murderer: - manslayer."]},{"k":"G410","v":["ἀνέγκλητος","anénklētos","an-eng'-klay-tos","From G1 (as a negative particle) and a derivative of G1458; unaccused, that is, (by implication) irreproachable: - blameless."]},{"k":"G411","v":["ἀνεκδιήγητος","anekdiḗgētos","an-ek-dee-ay'-gay-tos","From G1 (as a negative particle) and a presumed derivative of G1555; not expounded in full, that is, indescribable: - unspeakable."]},{"k":"G412","v":["ἀνεκλάλητος","aneklálētos","an-ek-lal'-ay-tos","From G1 (as a negative particle) and a presumed derivative of G1583; not spoken out, that is, (by implication) unutterable: - unspeakable."]},{"k":"G413","v":["ἀνέκλειπτος","anékleiptos","an-ek'-lipe-tos","From G1 (as a negative particle) and a presumed derivative of G1587; not left out, that is, (by implication) inexhaustible: - that faileth not."]},{"k":"G414","v":["ἀνεκτότερος","anektóteros","an-ek-tot'-er-os","Comparative of a derivative of G430; more endurable: - more tolerable."]},{"k":"G415","v":["ἀνελεήμων","aneleḗmōn","an-eleh-ay'-mone","From G1 (as a negative particle) and G1655; merciless: - unmerciful."]},{"k":"G416","v":["ἀνεμίζω","anemízō","an-em-id'-zo","From G417; to toss with the wind: - drive with the wind."]},{"k":"G417","v":["ἄνεμος","ánemos","an'-em-os","From the base of G109; wind; (plural) by implication (the four) quarters (of the earth): - wind."]},{"k":"G418","v":["ἀνένδεκτος","anéndektos","an-en'-dek-tos","From G1 (as a negative particle) and a derivative of the same as G1735; unadmitted, that is, (by implication) not supposable: - impossible."]},{"k":"G419","v":["ἀνεξερεύνητος","anexereúnētos","an-ex-er-yoo'-nay-tos","From G1 (as a negative particle) and a presumed derivative of G1830; not searched out, that is, (by implication) inscrutable: - unsearchable."]},{"k":"G420","v":["ἀνεξίκακος","anexíkakos","an-ex-ik'-ak-os","From G430 and G2556; enduring of ill, that is, forbearing: - patient."]},{"k":"G421","v":["ἀνεξιχνίαστος","anexichníastos","an-ex-ikh-nee'-as-tos","From G1 (as a negative particle) and a presumed derivative of a compound of G1537 and a derivative of G2487; not tracked out, that is, (by implication) untraceable: - past finding out, unsearchable."]},{"k":"G422","v":["ἀνεπαίσχυντος","anepaíschyntos","an-ep-ah'-ee-skhoon-tos","From G1 (as a negative particle) and a presumed derivative of a compound of G1909 and G153; not ashamed, that is, (by implication) irreprehensible: - that neededth not to be ashamed."]},{"k":"G423","v":["ἀνεπίληπτος","anepílēptos","an-ep-eel'-ape-tos","From G1 (as a negative particle) and a derivative of G1949; not arrested, that is, (by implication) inculpable: - blameless, unrebukeable."]},{"k":"G424","v":["ἀνέρχομαι","anérchomai","an-erkh'-om-ahee","From G303 and G2064; to ascend: - go up."]},{"k":"G425","v":["ἄνεσις","ánesis","an'-es-is","From G447; relaxation or (figuratively) relief: - eased, liberty, rest."]},{"k":"G426","v":["ἀνετάζω","anetázō","an-et-ad'-zo","From G303 and ἐτάζω etazō (to test); to investigate (judicially): - (should have) examine (-d)."]},{"k":"G427","v":["ἄνευ","áneu","an'-yoo","A primary particle; without: - without. Compare G1."]},{"k":"G428","v":["ἀνεύθετος","aneúthetos","an-yoo'-the-tos","From G1 (as a negative particle) and G2111; not well set, that is, inconvenient: - not commodious."]},{"k":"G429","v":["ἀνευρίσκω","aneurískō","an-yoo-ris'-ko","From G303 and G2147; to find out: - find."]},{"k":"G430","v":["ἀνέχομαι","anéchomai","an-ekh'-om-ahee","Middle voice from G303 and G2192; to hold oneself up against, that is, (figuratively) put up with: - bear with endure, forbear, suffer."]},{"k":"G431","v":["ἀνεψιός","anepsiós","an-eps'-ee-os","From G1 (as a particle of union) and an obsolete form νέπος nepos (a brood); properly akin, that is, (specifically) a cousin: - sister’s son."]},{"k":"G432","v":["ἄνηθον","ánēthon","an'-ay-thon","Probably of foreign origin; dill: - anise."]},{"k":"G433","v":["ἀνήκω","anḗkō","an-ay'-ko","From G303 and G2240; to attain to, that is, (figuratively) be proper: - convenient, be fit."]},{"k":"G434","v":["ἀνήμερος","anḗmeros","an-ay'-mer-os","From G1 (as a negative particle) and ἥμερος hēmeros (lame); savage: - fierce."]},{"k":"G435","v":["ἀνήρ","anḗr","an'-ayr","A primary word (compare G444); a man (properly as an individual male): - fellow, husband, man, sir."]},{"k":"G436","v":["ἀνθίστημι","anthístēmi","anth-is'-tay-mee","From G473 and G2476; to stand against, that is, oppose: - resist, withstand."]},{"k":"G437","v":["ἀνθομολογέομαι","anthomologéomai","anth-om-ol-og-eh'-om-ahee","From G473 and the middle of G3670; to confess in turn, that is, respond in praise: - give thanks."]},{"k":"G438","v":["ἄνθος","ánthos","anth'-os","A primary word; a blossom: - flower."]},{"k":"G439","v":["ἀνθρακιά","anthrakiá","anth-rak-ee-ah'","From G440; a bed of burning coals: - fire of coals."]},{"k":"G440","v":["ἄνθραξ","ánthrax","anth'-rax","Of uncertain derivation; a live coal: - coal of fire."]},{"k":"G441","v":["ἀνθρωπάρεσκος","anthrōpáreskos","anth-ro-par'-es-kos","From G444 and G700; man courting, that is, fawning: - men-pleaser."]},{"k":"G442","v":["ἀνθρώπινος","anthrṓpinos","anth-ro'-pee-nos","From G444; human: - human, common to man, man[-kind], [man-]kind, men’s, after the manner of men."]},{"k":"G443","v":["ἀνθρωποκτόνος","anthrōpoktónos","anth-ro-pok-ton'-os","From G444 and κτείνω kteinē (to kill); a manslayer: - murderer. Compare G5406."]},{"k":"G444","v":["ἄνθρωπος","ánthrōpos","anth'-ro-pos","From G435 and ὤψ ōps (the countenance; from G3700); manfaced, that is, a human being: - certain, man."]},{"k":"G445","v":["ἀνθυπατεύω","anthypateúō","anth-oo-pat-yoo'-o","From G446; to act as proconsul: - be the deputy."]},{"k":"G446","v":["ἀνθύπατος","anthýpatos","anth-oo'-pat-os","From G473 and a superlative of G5228; instead of the highest officer, that is, (specifically) a Roman proconsul: - deputy."]},{"k":"G447","v":["ἀνίημι","aníēmi","an-ee'-ay-mee","From G303 and ἵημι hiēmi (to send); to let up, that is, (literally) slacken, or (figuratively) desert, desist from: - forbear, leave, loose."]},{"k":"G448","v":["ἀνίλεως","aníleōs","an-ee'-leh-oce","From G1 (as a negative particle) and G2436; inexorable: - without mercy."]},{"k":"G449","v":["ἄνιπτος","ániptos","an'-ip-tos","From G1 (as a negative particle) and a presumed derivative of G3538; without ablution: - unwashen."]},{"k":"G450","v":["ἀνίστημι","anístēmi","an-is'-tay-mee","From G303 and G2476; to stand up (literally or figuratively, transitively or intransitively): - arise, lift up, raise up (again), rise (again), stand up (-right)."]},{"k":"G451","v":["Ἄννα","Ánna","an'-nah","Of Hebrew origin [H2584]; Anna, an Israelitess: - Anna."]},{"k":"G452","v":["Ἄννας","Ánnas","an'-nas","Of Hebrew origin [H2608]; Annas (that is, G367), an Israelite: - Annas."]},{"k":"G453","v":["ἀνόητος","anóētos","an-o'-ay-tos","From G1 (as a negative particle) and a derivative of G3539; unintelligent; by implication sensual: - fool (-ish), unwise."]},{"k":"G454","v":["ἄνοια","ánoia","an'-oy-ah","From a compound of G1 (as a negative particle) and G3563; stupidity; by implication rage: - folly, madness."]},{"k":"G455","v":["ἀνοίγω","anoígō","an-oy'-go","From G303 and οἴγω oigō (to open); to open up (literally or figuratively, in various applications): - open."]},{"k":"G456","v":["ἀνοικοδομέω","anoikodoméō","an-oy-kod-om-eh'-o","From G303 and G3618; to rebuild: - build again."]},{"k":"G457","v":["ἄνοιξις","ánoixis","an'-oix-is","From G455; opening (throat): - X open."]},{"k":"G458","v":["ἀνομία","anomía","an-om-ee'-ah","From G459; illegality, that is, violation of law or (generally) wickedness: - iniquity, X transgress (-ion of) the law, unrighteousness."]},{"k":"G459","v":["ἄνομος","ánomos","an'-om-os","From G1 (as a negative particle) and G3551; lawless, that is, (negatively) not subject to (the Jewish) law; (by implication a Gentile), or (positively) wicked: - without law, lawless, transgressor, unlawful, wicked."]},{"k":"G460","v":["ἀνόμως","anómōs","an-om'-oce","Adverb from G459; lawlessly, that is, (specifically) not amenable to (the Jewish) law: - without law."]},{"k":"G461","v":["ἀνορθόω","anorthóō","an-orth-o'-o","From G303 and a derivative of the base of G3717; to straighten up: - lift (set) up, make straight."]},{"k":"G462","v":["ἀνόσιος","anósios","an-os'-ee-os","From G1 (as a negative particle) and G3741; wicked: - unholy."]},{"k":"G463","v":["ἀνοχή","anochḗ","an-okh-ay'","From G430; selfrestraint, that is, tolerance: - forbearance."]},{"k":"G464","v":["ἀνταγωνίζομαι","antagōnízomai","an-tag-o-nid'-zom-ahee","From G473 and G75; to struggle against (figuratively), (“antagonize”): - strive against."]},{"k":"G465","v":["ἀντάλλαγμα","antállagma","an-tal'-ag-mah","From a compound of G473 and G236; an equivalent or ransom: - in exchange."]},{"k":"G466","v":["ἀνταναπληρόω","antanaplēróō","an-tan-ap-lay-ro'-o","From G473 and G378; to supplement: - fill up."]},{"k":"G467","v":["ἀνταποδίδωμι","antapodídōmi","an-tap-od-ee'-do-mee","From G473 and G591; to requite (good or evil): - recompense, render, repay."]},{"k":"G468","v":["ἀνταπόδομα","antapódoma","an-tap-od'-om-ah","From G467; a requital (properly the thing): - recompense."]},{"k":"G469","v":["ἀνταπόδοσις","antapódosis","an-tap-od'-os-is","From G467; requital (properly the act): - reward."]},{"k":"G470","v":["ἀνταποκρίνομαι","antapokrínomai","an-tap-ok-ree'-nom-ahee","From G473 and G611; to contradict or dispute: - answer again, reply against."]},{"k":"G471","v":["ἀντέπω","antépō","an-tep'-o","From G473 and G2036; to refute or deny: - gainsay, say against."]},{"k":"G472","v":["ἀντέχομαι","antéchomai","an-tekh'-om-ahee","From G473 and the middle of G2192; to hold oneself opposite to, that is, (by implication) adhere to; by extension to care for: - hold fast, hold to, support."]},{"k":"G473","v":["ἀντί","antí","an-tee'","A primary particle; opposite, that is, instead or because of (rarely in addition to): - for, in the room of. Often used in composition to denote contrast, requital, substitution, correspondence, etc."]},{"k":"G474","v":["ἀντιβάλλω","antibállō","an-tee-bal'-lo","From G473 and G906; to bandy: - have."]},{"k":"G475","v":["ἀντιδιατίθεμαι","antidiatíthemai","an-tee-dee-at-eeth'-em-ahee","From G473 and G1303; to set oneself opposite, that is, be disputatious: - that oppose themselves."]},{"k":"G476","v":["ἀντίδικος","antídikos","an-tid'-ee-kos","From G473 and G1349; an opponent (in a lawsuit); specifically Satan (as the arch enemy): - adversary."]},{"k":"G477","v":["ἀντίθεσις","antíthesis","an-tith'-es-is","From a compound of G473 and G5087; opposition, that is, a conflict (of theories): - opposition."]},{"k":"G478","v":["ἀντικαθίστημι","antikathístēmi","an-tee-kath-is'-tay-mee","From G473 and G2525; to set down (troops) against, that is, withstand: - resist."]},{"k":"G479","v":["ἀντικαλέω","antikaléō","an-tee-kal-eh'-o","From G473 and G2564; to invite in return: - bid again."]},{"k":"G480","v":["ἀντίκειμαι","antíkeimai","an-tik'-i-mahee","From G473 and G2749; to lie opposite, that is, be adverse (figuratively repugnant) to: - adversary, be contrary, oppose."]},{"k":"G481","v":["ἀντικρύ","antikrý","an-tee-kroo'","Prolonged from G473; opposite: - over against."]},{"k":"G482","v":["ἀντιλαμβάνομαι","antilambánomai","an-tee-lam-ban'-om-ahee","From G473 and the middle of G2983; to take hold of in turn, that is, succor; also to participate: - help, partaker support."]},{"k":"G483","v":["ἀντιλέγω","antilégō","an-til'-eg-o","From G473 and G3004; to dispute, refuse: - answer again, contradict, deny, gainsay (-er), speak against."]},{"k":"G484","v":["ἀντίληψις","antílēpsis","an-til'-ape-sis","From G482; relief: - help."]},{"k":"G485","v":["ἀντιλογία","antilogía","an-tee-log-ee'-ah","From a derivative of G483; dispute, disobedience: - contradiction, gainsaying, strife."]},{"k":"G486","v":["ἀντιλοιδορέω","antiloidoréō","an-tee-loy-dor-eh'-o","From G473 and G3058; to rail in reply: - revile again."]},{"k":"G487","v":["ἀντίλυτρον","antílytron","an-til'-oo-tron","From G473 and G3083; a redemption price: - ransom."]},{"k":"G488","v":["ἀντιμετρέω","antimetréō","an-tee-met-reh'-o","From G473 and G3354; to mete in return: - measure again."]},{"k":"G489","v":["ἀντιμισθία","antimisthía","an-tee-mis-thee'-ah","From a compound of G473 and G3408; requital, correspondence: - recompense."]},{"k":"G490","v":["Ἀντιόχεια","Antiócheia","an-tee-okh'-i-ah","From Ἀντίοχος Antiochos (a Syrian king); Antiochia, a place in Syria: - Antioch."]},{"k":"G491","v":["Ἀντιοχεύς","Antiocheús","an-tee-okh-yoos'","From G490; an Antiochian or inhabitant of Antiochia: - of Antioch."]},{"k":"G492","v":["ἀντιπαρέρχομαι","antiparérchomai","an-tee-par-er'-khom-ahee","From G473 and G3928; to go along opposite: - pass by on the other side."]},{"k":"G493","v":["Ἀντίπας","Antípas","an-tee'-pas","Contracted for a compound of G473 and a derivative of G3962; Antipas, a Christian: - Antipas."]},{"k":"G494","v":["Ἀντιπατρίς","Antipatrís","an-tip-at-rece'","From the same as G493; Antipatris, a place in Palestine: - Antipatris."]},{"k":"G495","v":["ἀντιπέραν","antipéran","an-tee-per'-an","From G473 and G4008; on the opposite side: - over against."]},{"k":"G496","v":["ἀντιπίπτω","antipíptō","an-tee-pip'-to","From G473 and G4098 (including its alternate); to oppose: - resist."]},{"k":"G497","v":["ἀντιστρατεύομαι","antistrateúomai","an-tee-strat-yoo'-om-ahee","From G473 and G4754; (figuratively) to attack, that is, (by implication) destroy: - war against."]},{"k":"G498","v":["ἀντιτάσσομαι","antitássomai","an-tee-tas'-som-ahee","From G473 and the middle of G5021; to range oneself against, that is, oppose: - oppose themselves, resist."]},{"k":"G499","v":["ἀντίτυπον","antítypon","an-teet'-oo-pon","Neuter of a compound of G473 and G5179; corresponding (“antitype”), that is, a representative, counterpart: - (like) figure (whereunto)."]},{"k":"G500","v":["ἀντίχριστος","antíchristos","an-tee'-khris-tos","From G473 and G5547; an opponent of the Messiah: - antichrist."]},{"k":"G501","v":["ἀντλέω","antléō","ant-leh-o","From ἄντλος antlos (the hold of a ship); to bale up (properly bilge water), that is, dip water (with a bucket, pitcher, etc.): - draw (out)."]},{"k":"G502","v":["ἄντλημα","ántlēma","ant'-lay-mah","From G501; a baling vessel: - thing to draw with."]},{"k":"G503","v":["ἀντοφθαλμέω","antophthalméō","ant-of-thal-meh'-o","From a compound of G473 and G3788; to face: - bear up into."]},{"k":"G504","v":["ἄνυδρος","ánydros","an'-oo-dros","From G1 (as a negative particle) and G5204; waterless, that is, dry: - dry, without water."]},{"k":"G505","v":["ἀνυπόκριτος","anypókritos","an-oo-pok'-ree-tos","From G1 (as a negative particle) and a presumed derivative of G5271; undissembled, that is, sincere: - without dissimulation (hypocrisy), unfeigned."]},{"k":"G506","v":["ἀνυπότακτος","anypótaktos","an-oo-pot'-ak-tos","From G1 (as a negative particle) and a presumed derivative of G5293; unsubdued, that is, insubordinate (in fact or temper): - disobedient, that is not put under, unruly."]},{"k":"G507","v":["ἄνω","ánō","an'-o","Adverb from G473; upward or on the top: - above, brim, high, up."]},{"k":"G508","v":["ἀνώγεον","anṓgeon","an-ogue'-eh-on","From G507 and G1093; above the ground, that is, (properly) the second floor of a building; used for a dome or a balcony on the upper story: - upper room."]},{"k":"G509","v":["ἄνωθεν","ánōthen","an'-o-then","From G507; from above; by analogy from the first; by implication anew: - from above, again, from the beginning (very first), the top."]},{"k":"G510","v":["ἀνωτερικός","anōterikós","an-o-ter-ee-kos'","From G511; superior, that is, (locally) more remote: - upper."]},{"k":"G511","v":["ἀνώτερος","anṓteros","an-o'-ter-os","Comparative degree of G507; upper, that is, (neuter as adverb) to a more conspicuous place, in a former part of the book: - above, higher."]},{"k":"G512","v":["ἀνωφελής","anōphelḗs","an-o-fel'-ace","From G1 (as a negative particle) and the base of G5624; useless or (neuter) inutility: - unprofitable(-ness)."]},{"k":"G513","v":["ἀξίνη","axínē","ax-ee'-nay","Probably from ἄγνυμι agnumi (to break; compare G4486); an axe: - axe."]},{"k":"G514","v":["ἄξιος","áxios","ax'-ee-os","Probably from G71; deserving, comparable or suitable (as if drawing praise): - due reward, meet, [un-] worthy."]},{"k":"G515","v":["ἀξιόω","axióō","ax-ee-o'-o","From G514; to deem entitled or fit: - desire, think good, count (think) worthy."]},{"k":"G516","v":["ἀξίως","axíōs","ax-ee'-oce","Adverb from G514; appropriately: - as becometh, after a godly sort, worthily (-thy)."]},{"k":"G517","v":["ἀόρατος","aóratos","ah-or'-at-os","From G1 (as a negative particle) and G3707; invisible: - invisible (thing)."]},{"k":"G518","v":["ἀπαγγέλλω","apangéllō","ap-ang-el'-lo","From G575 and the base of G32; to announce: - bring word (again), declare, report, shew (again), tell."]},{"k":"G519","v":["ἀπάγχομαι","apánchomai","ap-ang'-khom-ahee","From G575 and ἄγχω agchō (to choke; akin to the base of G43); to strangle oneself off (that is, to death): - hang himself."]},{"k":"G520","v":["ἀπάγω","apágō","ap-ag'-o","From G575 and G71; to take off (in various senses): - bring, carry away, lead (away), put to death, take away."]},{"k":"G521","v":["ἀπαίδευτος","apaídeutos","ap-ah'-ee-dyoo-tos","From G1 (as a negative particle) and a derivative of G3811; uninstructed, that is, (figuratively) stupid: - unlearned."]},{"k":"G522","v":["ἀπαίρω","apaírō","ap-ah'-ee-ro","From G575 and G142; to lift off, that is, remove: - take (away)."]},{"k":"G523","v":["ἀπαιτέω","apaitéō","ap-ah'-ee-teh-o","From G575 and G154; to demand back: - ask again, require."]},{"k":"G524","v":["ἀπαλγέω","apalgéō","ap-alg-eh'-o","From G575 and ἀλγέω algeō (to smart); to grieve out, that is, become apathetic: - be past feeling."]},{"k":"G525","v":["ἀπαλλάσσω","apallássō","ap-al-las'-so","From G575 and G236; to change away, that is, release, (reflexively) remove: - deliver, depart."]},{"k":"G526","v":["ἀπαλλοτριόω","apallotrióō","ap-al-lot-ree-o'-o","From G575 and a derivative of G245; to estrange away, that is, (passively and figuratively) to be non participant: - alienate, be alien."]},{"k":"G527","v":["ἀπαλός","apalós","ap-al-os'","Of uncertain derivation; soft: - tender."]},{"k":"G528","v":["ἀπαντάω","apantáō","ap-an-tah'-o","From G575 and a derivative of G473; to meet away, that is, encounter: - meet."]},{"k":"G529","v":["ἀπάντησις","apántēsis","ap-an'-tay-sis","From G528; a (friendly) encounter: - meet."]},{"k":"G530","v":["ἅπαξ","hápax","hap'-ax","Probably from G537; one (or a single) time (numerically or conclusively): - once."]},{"k":"G531","v":["ἀπαράβατος","aparábatos","ap-ar-ab'-at-os","From G1 (as a negative particle) and a derivative of G3845; not passing away, that is, untransferable (perpetual): - unchangeable."]},{"k":"G532","v":["ἀπαρασκεύαστος","aparaskeúastos","ap-ar-ask-yoo'-as-tos","From G1 (as a negative particle) and a derivative of G3903; unready: - unprepared."]},{"k":"G533","v":["ἀπαρνέομαι","aparnéomai","ap-ar-neh'-om-ahee","From G575 and G720; to deny utterly, that is, disown, abstain: - deny."]},{"k":"G534","v":["ἀπάρτι","apárti","ap-ar'-tee","From G575 and G737; from now, that is, henceforth (already): - from henceforth."]},{"k":"G535","v":["ἀπαρτισμός","apartismós","ap-ar-tis-mos'","From a derivative of G534; completion: - finishing."]},{"k":"G536","v":["ἀπαρχή","aparchḗ","ap-ar-khay'","From a compound of G575 and G756; a beginning of sacrifice, that is, the (Jewish) first fruit (figuratively): - first-fruits."]},{"k":"G537","v":["ἅπας","hápas","hap'-as","From G1 (as a particle of union) and G3956; absolutely all or (singular) every one: - all (things), every (one), whole."]},{"k":"G538","v":["ἀπατάω","apatáō","ap-at-ah'-o","Of uncertain derivation; to cheat, that is, delude: - deceive."]},{"k":"G539","v":["ἀπάτη","apátē","ap-at'-ay","From G538; delusion: - deceit (-ful, -fulness), deceivableness (-ving)."]},{"k":"G540","v":["ἀπάτωρ","apátōr","ap-at'-ore","From G1 (as a negative particle) and G3962; fatherless, that is, of unrecorded paternity: - without father."]},{"k":"G541","v":["ἀπαύγασμα","apaúgasma","ap-ow'-gas-mah","From a compound of G575 and G826; an off flash, that is, effulgence: - brightness."]},{"k":"G542","v":["ἀπείδω","apeídō","ap-i'-do","From G575 and the same as G1492; to see fully: - see."]},{"k":"G543","v":["ἀπείθεια","apeítheia","ap-i'-thi-ah","From G545; disbelief (obstinate and rebellious): - disobedience, unbelief."]},{"k":"G544","v":["ἀπειθέω","apeithéō","ap-i-theh'-o","From G545; to disbelieve (wilfully and perversely): - not believe, disobedient, obey not, unbelieving."]},{"k":"G545","v":["ἀπειθής","apeithḗs","ap-i-thace'","From G1 (as a negative particle) and G3982; unpersuadable, that is, contumacious: - disobedient."]},{"k":"G546","v":["ἀπειλέω","apeiléō","ap-i-leh'-o","Of uncertain derivation; to menace; by implication to forbid: - threaten."]},{"k":"G547","v":["ἀπειλή","apeilḗ","ap-i-lay'","From G546; a menace: - X straitly, threatening."]},{"k":"G548","v":["ἄπειμι","ápeimi","ap'-i-mee","From G575 and G1510; to be away: - be absent. Compare G549."]},{"k":"G549","v":["ἄπειμι","ápeimi","ap'-i-mee","From G575 and εἶμι eimi (to go); to go away: - go. Compare G548."]},{"k":"G550","v":["ἀπειπόμην","apeipómēn","ap-i-pom'-ane","Reflexive past of a compound of G575 and G2036; to say off for oneself, that is, disown: - renounce."]},{"k":"G551","v":["ἀπείραστος","apeírastos","ap-i'-ras-tos","From G1 (as a negative particle) and a presumed derivative of G3987; untried, that is, not temptable: - not to be tempted."]},{"k":"G552","v":["ἄπειρος","ápeiros","ap'-i-ros","From G1 (as a negative particle) and G3984; inexperienced, that is, ignorant: - unskilful."]},{"k":"G553","v":["ἀπεκδέχομαι","apekdéchomai","ap-ek-dekh'-om-ahee","From G575 and G1551; to expect fully: - look (wait) for."]},{"k":"G554","v":["ἀπεκδύομαι","apekdýomai","ap-ek-doo'-om-ahee","Middle voice from G575 and G1562; to divest wholly oneself, or (for oneself) despoil: - put off, spoil."]},{"k":"G555","v":["ἀπέκδυσις","apékdysis","ap-ek'-doo-sis","From G554; divestment: - putting off."]},{"k":"G556","v":["ἀπελαύνω","apelaúnō","ap-el-ow'-no","From G575 and G1643; to dismiss: - drive."]},{"k":"G557","v":["ἀπελεγμός","apelegmós","ap-el-eg-mos'","From a compound of G575 and G1651; refutation, that is, (by implication) contempt: - nought."]},{"k":"G558","v":["ἀπελεύθερος","apeleútheros","ap-el-yoo'-ther-os","From G575 and G1658; one freed away, that is, a freedman: - freeman."]},{"k":"G559","v":["Ἀπελλῆς","Apellēs","ap-el-lace'","Of Latin origin; Apelles, a Christian: - Apelles."]},{"k":"G560","v":["ἀπελπίζω","apelpízō","ap-el-pid'-zo","From G575 and G1679; to hope out, that is, fully expect: - hope for again."]},{"k":"G561","v":["ἀπέναντι","apénanti","ap-en'-an-tee","From G575 and G1725; from in front, that is, opposite, before or against: - before, contrary, over against, in the presence of."]},{"k":"G562","v":["ἀπέραντος","apérantos","ap-er'-an-tos","From G1 (as a negative particle) and a secondary derivative of G4008; unfinished, that is, (by implication) interminable: - endless."]},{"k":"G563","v":["ἀπερισπάστως","aperispástōs","ap-er-is-pas-toce'","Adverb from a compound of G1 (as a negative particle) and a presumed derivative of G4049; undistractedly, that is, free from (domestic) solicitude: - without distraction."]},{"k":"G564","v":["ἀπερίτμητος","aperítmētos","ap-er-eet'-may-tos","From G1 (as a negative particle) and a presumed derivative of G4059; uncircumcised (figuratively): - uncircumcised."]},{"k":"G565","v":["ἀπέρχομαι","apérchomai","ap-erkh'-om-ahee","From G575 and G2064; to go off (that is, depart), aside (that is, apart) or behind (that is, follow), literally or figuratively: - come, depart, go (aside, away, back, out, . . . ways), pass away, be past."]},{"k":"G566","v":["ἀπέχει","apéchei","ap-ekh'-i","Third person singular present indicative active of G568 used impersonally; it is sufficient: - it is enough."]},{"k":"G567","v":["ἀπέχομαι","apéchomai","ap-ekh'-om-ahee","Middle voice (reflexive) of G568; to hold oneself off, that is, refrain: - abstain."]},{"k":"G568","v":["ἀπέχω","apéchō","ap-ekh'-o","From G575 and G2192; (active) to have out, that is, receive in full; (intransitive) to keep (oneself) away, that is, be distant (literally or figuratively): - be, have, receive."]},{"k":"G569","v":["ἀπιστέω","apistéō","ap-is-teh'-o","From G571; to be unbelieving, that is, (transitively) disbelieve, or (by implication) disobey: - believe not."]},{"k":"G570","v":["ἀπιστία","apistía","ap-is-tee'-ah","From G571; faithlessness, that is, (negatively) disbelief (want of Christian faith), or (positively) unfaithfulness (disobedience): - unbelief."]},{"k":"G571","v":["ἄπιστος","ápistos","ap'-is-tos","From G1 (as a negative particle) and G4103; (actively) disbelieving, that is, without Christian faith (specifically a heathen); (passively) untrustworthy (person), or incredible (thing): - that believeth not, faithless, incredible thing, infidel, unbeliever (-ing)."]},{"k":"G572","v":["ἁπλότης","haplótēs","hap-lot'-ace","From G573; singleness, that is, (subjectively) sincerity (without dissimulation or self seeking), or (objectively) generosity (copious bestowal): - bountifulness, liberal (-ity), simplicity, singleness."]},{"k":"G573","v":["ἁπλοῦς","haploûs","hap-looce'","Probably from G1 (as a particle of union) and the base of G4120; properly folded together, that is, single (figuratively clear): - single."]},{"k":"G574","v":["ἁπλῶς","haplōs","hap-loce'","Adverb from G573 (in the objective sense of G572); bountifully: - liberally."]},{"k":"G575","v":["ἀπό","apó","apo'","A primary particle; “off”, that is, away (from something near), in various senses (of place, time, or relation; literally or figuratively): - (X here-) after, ago, at, because of, before, by (the space of), for (-th), from, in, (out) of, off, (up-) on (-ce), since, with. In composition (as a prefix) it usually denotes separation, departure, cessation, completion, reversal, etc."]},{"k":"G576","v":["ἀποβαίνω","apobaínō","ap-ob-ah'-ee-no","From G575 and the base of G939; literally to disembark; figuratively to eventuate: - become, go out, turn."]},{"k":"G577","v":["ἀποβάλλω","apobállō","ap-ob-al'-lo","From G575 and G906; to throw off; figuratively to lose: - cast away."]},{"k":"G578","v":["ἀποβλέπω","apoblépō","ap-ob-lep'-o","From G575 and G991; to look away from everything else, that is, (figuratively) intently regard: - have respect."]},{"k":"G579","v":["ἀπόβλητος","apóblētos","ap-ob'-lay-tos","From G577; cast off, that is, (figuratively) such as to be rejected: - be refused."]},{"k":"G580","v":["ἀποβολή","apobolḗ","ap-ob-ol-ay'","From G577; rejection; figuratively loss: - casting away, loss."]},{"k":"G581","v":["ἀπογενόμενος","apogenómenos","ap-og-en-om'-en-os","Past participle of a compound of G575 and G1096; absent, that is, deceased (figuratively renounced): - being dead."]},{"k":"G582","v":["ἀπογραφή","apographḗ","ap-og-raf-ay'","From G583; an enrollment; by implication an assessment: - taxing."]},{"k":"G583","v":["ἀπογράφω","apográphō","ap-og-raf'-o","From G575 and G1125; to write off (a copy or list), that is, enrol: - tax, write."]},{"k":"G584","v":["ἀποδείκνυμι","apodeíknymi","ap-od-ike'-noo-mee","From G575 and G1166; to show off, that is, exhibit; figuratively to demonstrate, that is, accredit: - (ap-) prove, set forth, shew."]},{"k":"G585","v":["ἀπόδειξις","apódeixis","ap-od'-ike-sis","From G584; manifestation: - demonstration."]},{"k":"G586","v":["ἀποδεκατόω","apodekatóō","ap-od-ek-at-o'-o","From G575 and G1183; to tithe (as debtor or creditor): - (give, pay, take) tithe."]},{"k":"G587","v":["ἀπόδεκτος","apódektos","ap-od'-ek-tos","From G588; accepted, that is, agreeable: - acceptable."]},{"k":"G588","v":["ἀποδέχομαι","apodéchomai","ap-od-ekh'-om-ahee","From G575 and G1209; to take fully, that is, welcome (persons), approve (things): - accept, receive (gladly)."]},{"k":"G589","v":["ἀποδημέω","apodēméō","ap-od-ay-meh'-o","From G590; to go abroad, that is, visit a foreign land: - go (travel) into a far country, journey."]},{"k":"G590","v":["ἀπόδημος","apódēmos","ap-od'-ay-mos","From G575 and G1218; absent from one’s own people, that is, a foreign traveller: - taking a far journey."]},{"k":"G591","v":["ἀποδίδωμι","apodídōmi","ap-od-eed'-o-mee","From G575 and G1325; to give away, that is, up, over, back, etc. (in various applications): - deliver (again), give (again), (re-) pay (-ment be made), perform, recompense, render, requite, restore, reward, sell, yield,"]},{"k":"G592","v":["ἀποδιορίζω","apodiorízō","ap-od-ee-or-id'-zo","From G575 and a compound of G1223 and G3724; to disjoin (by a boundary, figuratively a party): - separate."]},{"k":"G593","v":["ἀποδοκιμάζω","apodokimázō","ap-od-ok-ee-mad'-zo","From G575 and G1381; to disapprove, that is, (by implication) to repudiate: - disallow, reject."]},{"k":"G594","v":["ἀποδοχή","apodochḗ","ap-od-okh-ay'","From G588; acceptance: - acceptation."]},{"k":"G595","v":["ἀπόθεσις","apóthesis","ap-oth'-es-is","From G659; a laying aside (literally or figuratively): - putting away (off)."]},{"k":"G596","v":["ἀποθήκη","apothḗkē","ap-oth-ay'-kay","From G659; a repository, that is, granary: - barn, garner."]},{"k":"G597","v":["ἀποθησαυρίζω","apothēsaurízō","ap-oth-ay-sow-rid'-zo","From G575 and G2343; to treasure away: - lay up in store."]},{"k":"G598","v":["ἀποθλίβω","apothlíbō","ap-oth-lee'-bo","From G575 and G2346; to crowd from (every side): - press."]},{"k":"G599","v":["ἀποθνήσκω","apothnḗskō","ap-oth-nace'-ko","From G575 and G2348; to die off (literally or figuratively): - be dead, death, die, lie a-dying, be slain (X with)."]},{"k":"G600","v":["ἀποκαθίστημι","apokathístēmi","ap-ok-ath-is'-tay-mee","From G575 and G2525; to reconstitute (in health, home or organization): - restore (again)."]},{"k":"G601","v":["ἀποκαλύπτω","apokalýptō","ap-ok-al-oop'-to","From G575 and G2572; to take off the cover, that is, disclose: - reveal."]},{"k":"G602","v":["ἀποκάλυψις","apokálypsis","ap-ok-al'-oop-sis","From G601; disclosure: - appearing, coming, lighten, manifestation, be revealed, revelation."]},{"k":"G603","v":["ἀποκαραδοκία","apokaradokía","ap-ok-ar-ad-ok-ee'-ah","From a compound of G575 and a compound of κάρα kara (the head) and G1380 (in the sense of watching); intense anticipation: - earnest expectation."]},{"k":"G604","v":["ἀποκαταλλάσσω","apokatallássō","ap-ok-at-al-las'-so","From G575 and G2644; to reconcile fully: - reconcile."]},{"k":"G605","v":["ἀποκατάστασις","apokatástasis","ap-ok-at-as'-tas-is","From G600; reconstitution: - restitution."]},{"k":"G606","v":["ἀπόκειμαι","apókeimai","ap-ok'-i-mahee","From G575 and G2749; to be reserved; figuratively to await: - be appointed, (be) laid up."]},{"k":"G607","v":["ἀποκεφαλίζω","apokephalízō","ap-ok-ef-al-id'-zo","From G575 and G2776; to decapitate: - behead."]},{"k":"G608","v":["ἀποκλείω","apokleíō","ap-ok-li'-o","From G575 and G2808; to close fully: - shut up."]},{"k":"G609","v":["ἀποκόπτω","apokóptō","ap-ok-op'-to","From G575 and G2875; to amputate; reflexively (by irony) to mutilate (the privy parts): - cut off. Compare G2699."]},{"k":"G610","v":["ἀπόκριμα","apókrima","ap-ok'-ree-mah","From G611 (in its original sense of judging); a judicial decision: - sentence."]},{"k":"G611","v":["ἀποκρίνομαι","apokrínomai","ap-ok-ree'-nom-ahee","From G575 and κρινω krino; to conclude for oneself, that is, (by implication) to respond; by Hebraism (compare [H6030]) to begin to speak (where an address is expected): - answer."]},{"k":"G612","v":["ἀπόκρισις","apókrisis","ap-ok'-ree-sis","From G611; a response: - answer."]},{"k":"G613","v":["ἀποκρύπτω","apokrýptō","ap-ok-roop'-to","From G575 and G2928; to conceal away (that is, fully); figuratively to keep secret: - hide."]},{"k":"G614","v":["ἀπόκρυφος","apókryphos","ap-ok'-roo-fos","From G613; secret; by implication treasured: - hid, kept secret."]},{"k":"G615","v":["ἀποκτείνω","apokteínō","ap-ok-ti'-no","From G575 and κτείνω kteinō (to slay); to kill outright; figuratively to destroy: - put to death, kill, slay."]},{"k":"G616","v":["ἀποκυέω","apokyéō","ap-ok-oo-eh'-o","From G575 and the base of G2949; to breed forth, that is, (by transformation) to generate (figuratively): - beget, bring forth."]},{"k":"G617","v":["ἀποκυλίω","apokylíō","ap-ok-oo-lee'-o","From G575 and G2947; to roll away: - roll away (back)."]},{"k":"G618","v":["ἀπολαμβάνω","apolambánō","ap-ol-am-ban'-o","From G575 and G2983; to receive (specifically in full, or as a host); also to take aside: - receive, take."]},{"k":"G619","v":["ἀπόλαυσις","apólausis","ap-ol'-ow-sis","From a compound of G575 and λαύω lauō (to enjoy); full enjoyment: - enjoy (-ment)."]},{"k":"G620","v":["ἀπολείπω","apoleípō","ap-ol-ipe'-o","From G575 and G3007; to leave behind (passively remain); by implication to forsake: - leave, remain."]},{"k":"G621","v":["ἀπολείχω","apoleíchō","ap-ol-i'-kho","From G575 and λείχω leichō (to “lick”); to lick clean: - lick."]},{"k":"G622","v":["ἀπόλλυμι","apóllymi","ap-ol'-loo-mee","From G575 and the base of G3639; to destroy fully (reflexively to perish, or lose), literally or figuratively: - destroy, die, lose, mar, perish."]},{"k":"G623","v":["Ἀπολλύων","Apollýōn","ap-ol-loo'-ohn","Active participle of G622; a destroyer (that is, Satan): - Apollyon."]},{"k":"G624","v":["Ἀπολλωνία","Apollōnía","ap-ol-lo-nee'-ah","From the pagan deity Ἀπόλλων Apollōn (that is, the sun; from G622); Apollonia, a place in Macedonia: - Apollonia."]},{"k":"G625","v":["Ἀπολλῶς","Apollōs","ap-ol-loce'","Probably from the same as G624; Apollos, an Israelite: - Apollos."]},{"k":"G626","v":["ἀπολογέομαι","apologéomai","ap-ol-og-eh'-om-ahee","Middle voice from a compound of G575 and G3056; to give an account (legal plea) of oneself, that is, exculpate (self): - answer (for self), make defence, excuse (self), speak for self."]},{"k":"G627","v":["ἀπολογία","apología","ap-ol-og-ee'-ah","From the same as G626; a plea (“apology”): - answer (for self), clearing of self, defence."]},{"k":"G628","v":["ἀπολούω","apoloúō","ap-ol-oo'-o","From G575 and G3068; to wash fully, that is, (figuratively) have remitted (reflexively): - wash (away)."]},{"k":"G629","v":["ἀπολύτρωσις","apolýtrōsis","ap-ol-oo'-tro-sis","From a compound of G575 and G3083; (the act) ransom in full, that is, (figuratively) riddance, or (specifically) Christian salvation: - deliverance, redemption."]},{"k":"G630","v":["ἀπολύω","apolýō","ap-ol-oo'-o","From G575 and G3089; to free fully, that is, (literally) relieve, release, dismiss (reflexively depart), or (figuratively) let die, pardon, or (specifically) divorce: - (let) depart, dismiss, divorce, forgive, let go, loose, put (send) away, release, set at liberty."]},{"k":"G631","v":["ἀπομάσσομαι","apomássomai","ap-om-as'-som-ahee","Middle voice from G575 and μάσσω massō (to squeeze, knead, smear); to scrape away: - wipe off."]},{"k":"G632","v":["ἀπονέμω","aponémō","ap-on-em'-o","From G575 and the base of G3551; to apportion, that is, bestow: - give."]},{"k":"G633","v":["ἀπονίπτω","aponíptō","ap-on-ip'-to","From G575 and G3538; to wash off (reflexively one’s own hands symbolically): - wash."]},{"k":"G634","v":["ἀποπίπτω","apopíptō","ap-op-ip'-to","From G575 and G4098; to fall off: - fall."]},{"k":"G635","v":["ἀποπλανάω","apoplanáō","ap-op-lan-ah'-o","From G575 and G4105; to lead astray (figuratively); passively to stray (from truth): - err, seduce."]},{"k":"G636","v":["ἀποπλέω","apopléō","ap-op-leh'-o","From G575 and G4126; to set sail: - sail away."]},{"k":"G637","v":["ἀποπλύνω","apoplýnō","ap-op-loo'-no","From G575 and G4150; to rinse off: - wash."]},{"k":"G638","v":["ἀποπνίγω","apopnígō","ap-op-nee'-go","From G575 and G4155; to stifle (by drowning or overgrowth): - choke."]},{"k":"G639","v":["ἀπορέω","aporéō","ap-or-eh'-o","From a compound of G1 (as a negative particle) and the base of G4198; to have no way out, that is, be at a loss (mentally): - (stand in) doubt, be perplexed."]},{"k":"G640","v":["ἀπορία","aporía","ap-or-ee'-a","From the same as G639; a (state of) quandary: - perplexity."]},{"k":"G641","v":["ἀποῤῥίπτω","aporrhíptō","ap-or-hrip'-to","From G575 and G4496; to hurl off, that is, precipitate (oneself): - cast."]},{"k":"G642","v":["ἀπορφανίζω","aporphanízō","ap-or-fan-id'-zo","From G575 and a derivative of G3737; to bereave wholly, that is, (figuratively) separate (from intercourse): - take."]},{"k":"G643","v":["ἀποσκευάζω","aposkeuázō","ap-osk-yoo-ad'-zo","From G575 and a derivative of G4632; to pack up (one’s) baggage: - take up . . . carriages."]},{"k":"G644","v":["ἀποσκίασμα","aposkíasma","ap-os-kee'-as-mah","From a compound of G575 and a derivative of G4639; a shading off, that is, obscuration: - shadow."]},{"k":"G645","v":["ἀποσπάω","apospáō","ap-os-pah'-o","From G575 and G4685; to drag forth, that is, (literally) unsheathe (a sword), or relatively (with a degree of force implied) retire (personally or factiously): - (with-) draw (away), after we were gotten from."]},{"k":"G646","v":["ἀποστασία","apostasía","ap-os-tas-ee'-ah","Feminine of the same as G647; defection from truth (properly the state), (“apostasy”): - falling away, forsake."]},{"k":"G647","v":["ἀποστάσιον","apostásion","ap-os-tas'-ee-on","Neuter of a (presumed) adjective from a derivative of G868; properly something separative, that is, (specifically) divorce: - (writing of) divorcement."]},{"k":"G648","v":["ἀποστεγάζω","apostegázō","ap-os-teg-ad'-zo","From G575 and a derivative of G4721; to unroof: - uncover."]},{"k":"G649","v":["ἀποστέλλω","apostéllō","ap-os-tel'-lo","From G575 and G4724; set apart, that is, (by implication) to send out (properly on a mission) literally or figuratively: - put in, send (away, forth, out), set [at liberty]."]},{"k":"G650","v":["ἀποστερέω","aposteréō","ap-os-ter-eh'-o","From G575 and στερέω stereō (to deprive); to despoil: - defraud, destitute, kept back by fraud."]},{"k":"G651","v":["ἀποστολή","apostolḗ","ap-os-tol-ay'","From G649; commission, that is, (specifically) apostolate: - apostleship."]},{"k":"G652","v":["ἀπόστολος","apóstolos","ap-os'-tol-os","From G649; a delegate; specifically an ambassador of the Gospel; officially a commissioner of Christ (“apostle”), (with miraculous powers): - apostle, messenger, he that is sent."]},{"k":"G653","v":["ἀποστοματίζω","apostomatízō","ap-os-tom-at-id'-zo","From G575 and a (presumed) derivative of G4750; to speak off hand (properly dictate), that is, to catechize (in an invidious manner): - provoke to speak."]},{"k":"G654","v":["ἀποστρέφω","apostréphō","ap-os-tref'-o","From G575 and G4762; to turn away or back (literally or figuratively): - bring again, pervert, turn away (from)."]},{"k":"G655","v":["ἀποστυγέω","apostygéō","ap-os-toog-eh'-o","From G575 and the base of G4767; to detest utterly: - abhor."]},{"k":"G656","v":["ἀποσυνάγωγος","aposynágōgos","ap-os-oon-ag'-o-gos","From G575 and G4864; excommunicated: - (put) out of the synagogue (-s)."]},{"k":"G657","v":["ἀποτάσσομαι","apotássomai","ap-ot-as'-som-ahee","Middle voice from G575 and G5021; literally to say adieu (by departing or dismissing); figuratively to renounce: - bid farewell, forsake, take leave, send away."]},{"k":"G658","v":["ἀποτελέω","apoteléō","ap-ot-el-eh'-o","From G575 and G5055; to complete entirely, that is, consummate: - finish."]},{"k":"G659","v":["ἀποτίθημι","apotíthēmi","ap-ot-eeth'-ay-mee","From G575 and G5087; to put away (literally or figuratively): - cast off, lay apart (aside, down), put away (off)."]},{"k":"G660","v":["ἀποτινάσσω","apotinássō","ap-ot-in-as'-so","From G575 and τινάσσω tinassō (to jostle); to brush off: - shake off."]},{"k":"G661","v":["ἀποτίνω","apotínō","ap-ot-ee'-no","From G575 and G5099; to pay in full: - repay."]},{"k":"G662","v":["ἀποτολμάω","apotolmáō","ap-ot-ol-mah'-o","From G575 and G5111; to venture plainly: - be very bold."]},{"k":"G663","v":["ἀποτομία","apotomía","ap-ot-om-ee'-ah","From the base of G664; (figuratively) decisiveness, that is, rigor: - severity."]},{"k":"G664","v":["ἀποτόμως","apotómōs","ap-ot-om'-oce","Adverb from a derivative of a compound of G575 and τέμνω temnō (to cut); abruptly, that is, peremptorily: - sharply (-ness)."]},{"k":"G665","v":["ἀποτρέπω","apotrépō","ap-ot-rep'-o","From G575 and the base of G5157; to deflect, that is, (reflexively) avoid: - turn away."]},{"k":"G666","v":["ἀπουσία","apousía","ap-oo-see'-ah","From the participle of G548; a being away: - absence."]},{"k":"G667","v":["ἀποφέρω","apophérō","ap-of-er'-o","From G575 and G5342; to bear off (literally or relatively): - bring, carry (away)."]},{"k":"G668","v":["ἀποφεύγω","apopheúgō","ap-of-yoo'-go","From G575 and G5343; (figuratively) to escape: - escape."]},{"k":"G669","v":["ἀποφθέγγομαι","apophthéngomai","ap-of-theng'-om-ahee","From G575 and G5350; to enunciate plainly, that is, declare: - say, speak forth, utterance."]},{"k":"G670","v":["ἀποφορτίζομαι","apophortízomai","ap-of-or-tid'-zom-ahee","From G575 and the middle voice of G5412; to unload: - unlade."]},{"k":"G671","v":["ἀπόχρησις","apóchrēsis","ap-okh'-ray-sis","From a compound of G575 and G5530; the act of using up, that is, consumption: - using."]},{"k":"G672","v":["ἀποχωρέω","apochōréō","ap-okh-o-reh'-o","From G575 and G5562; to go away: - depart."]},{"k":"G673","v":["ἀποχωρίζω","apochōrízō","ap-okh-o-rid'-zo","From G575 and G5563; to rend apart; reflexively to separate: - depart (asunder)."]},{"k":"G674","v":["ἀποψύχω","apopsýchō","ap-ops-oo'-kho","From G575 and G5594; to breathe out, that is, faint: - hearts failing."]},{"k":"G675","v":["Ἄππιος","Áppios","ap'-pee-os","Of Latin origin; (in the genitive, that is, possessive case) of Appius, the name of a Roman: - Appii."]},{"k":"G676","v":["ἀπρόσιτος","aprósitos","ap-ros'-ee-tos","From G1 (as a negative particle) and a derivative of a compound of G4314 and εἶμι eimi (to go); inaccessible: - which no man can approach."]},{"k":"G677","v":["ἀπρόσκοπος","apróskopos","ap-ros'-kop-os","From G1 (as a negative particle) and a presumed derivative of G4350; actively inoffensive, that is, not leading into sin; passively faultless, that is, not led into sin: - none (void of, without) offence."]},{"k":"G678","v":["ἀπροσωπολήπτως","aprosōpolḗptōs","ap-ros-o-pol-ape'-tos","Adverb from a compound of G1 (as a negative particle) and a presumed derivative of a presumed compound of G4383 and G2983 (compare G4381); in a way not accepting the person, that is, impartially: - without respect of persons."]},{"k":"G679","v":["ἄπταιστος","áptaistos","ap-tah'-ee-stos","From G1 (as a negative particle) and a derivative of G4417; not stumbling, that is, (figuratively) without sin: - from falling."]},{"k":"G680","v":["ἅπτομαι","háptomai","hap'-tom-ahee","Reflexive of G681; properly to attach oneself to, that is, to touch (in many implied relations): - touch."]},{"k":"G681","v":["ἅπτω","háptō","hap'-to","A primary verb; properly to fasten to, that is, (specifically) to set on fire: - kindle, light."]},{"k":"G682","v":["Ἀπφία","Apphía","ap-fee'-a","Probably of foreign origin; Apphia, a woman of Colossae: - Apphia."]},{"k":"G683","v":["ἀπωθέομαι","apōthéomai","ap-o-theh'-om-ahee","From G575 and the middle voice of ὠθέω ōtheō or ὤθω ōthō (to shove); to push off, figuratively to reject: - cast away, put away (from), thrust way (from)."]},{"k":"G684","v":["ἀπώλεια","apṓleia","ap-o'-li-a","From a presumed derivative of G622; ruin or loss (physical, spiritual or eternal): - damnable (-nation), destruction, die, perdition, X perish, pernicious ways, waste."]},{"k":"G685","v":["ἀρά","ará","ar-ah'","Probably from G142; properly prayer (as lifted to Heaven), that is, (by implication) imprecation: - curse."]},{"k":"G686","v":["ἄρα","ára","ar'-ah","Probably from G142 (through the idea of drawing a conclusion); a particle denoting an inference more or less decisive (as follows): - haply, (what) manner (of man), no doubt, perhaps, so be, then, therefore, truly, wherefore. Often used in connection with other particles, especially G1065 or G3767 (after) or G1487 (before). Compare also G687."]},{"k":"G687","v":["ἆρα","âra","ar'-ah","A form of G686, denoting an interrogation to which a negative answer is presumed: - therefore."]},{"k":"G688","v":["Ἀραβία","Arabía","ar-ab-ee'-ah","Of Hebrew origin [H6152]; Arabia, a region of Asia: - Arabia."]},{"k":"G689","v":["Ἀράμ","Arám","ar-am'","Of Hebrew origin [H7410]; Aram (that is, Ram), an Israelite: - Aram."]},{"k":"G690","v":["Ἄραψ","Áraps","ar'-aps","From G688; an Arab or native of Arabia: - Arabian."]},{"k":"G691","v":["ἀργέω","argéō","arg-eh'-o","From G692; to be idle, that is, (figuratively) to delay: - linger."]},{"k":"G692","v":["ἀργός","argós","ar-gos'","From G1 (as a negative particle) and G2041; inactive, that is, unemployed; (by implication) lazy, useless: - barren, idle, slow."]},{"k":"G693","v":["ἀργύρεος","argýreos","ar-goo'-reh-os","From G696; made of silver: - (of) silver."]},{"k":"G694","v":["ἀργύριον","argýrion","ar-goo'-ree-on","Neuter of a presumed derivative of G696; silvery, that is, (by implication) cash; specifically a silverling (that is, drachma or shekel): - money, (piece of) silver (piece)."]},{"k":"G695","v":["ἀργυροκόπος","argyrokópos","ar-goo-rok-op'-os","From G696 and G2875; a beater (that is, worker) of silver: - silversmith."]},{"k":"G696","v":["ἄργυρος","árgyros","ar'-goo-ros","From ἀργός argos (shining); silver (the metal, in the articles or coin): - silver."]},{"k":"G697","v":["Ἄρειος Πάγος","Áreios Págos","ar'-i-os pag'-os","From Ἄρης Arēs (the name of the Greek deity of war) and a derivative of G4078; rock of Ares, a place in Athens: - Areopagus, Mars’ Hill."]},{"k":"G698","v":["Ἀρεοπαγίτης","Areopagítēs","ar-eh-op-ag-ee'-tace","From G697; an Areopagite or member of the court held on Mars’ Hill: - Areopagite."]},{"k":"G699","v":["ἀρεσκεία","areskeía","ar-es'-ki-ah","From a derivative of G700; complaisance: - pleasing."]},{"k":"G700","v":["ἀρέσκω","aréskō","ar-es'-ko","Probably from G142 (through the idea of exciting emotion); to be agreeable (or by implication to seek to be so): - please."]},{"k":"G701","v":["ἀρεστός","arestós","ar-es-tos'","From G700; agreeable; by implication fit: - (things that) please (-ing), reason."]},{"k":"G702","v":["Ἀρέτας","Arétas","ar-et'-as","Of foreign origin; Aretas, an Arabian: - Aretas."]},{"k":"G703","v":["ἀρέτη","arétē","ar-et'-ay","From the same as G730; properly manliness (valor), that is, excellence (intrinsic or attributed): - praise, virtue."]},{"k":"G704","v":["ἀρήν","arḗn","ar-ane'","Perhaps the same as G730; a lamb (as a male): - lamb."]},{"k":"G705","v":["ἀριθμέω","arithméō","ar-ith-meh'-o","From G706; to enumerate or count: - number."]},{"k":"G706","v":["ἀριθμός","arithmós","ar-ith-mos'","From G142; a number (as reckoned up): - number."]},{"k":"G707","v":["Ἀριμαθαία","Arimathaía","ar-ee-math-ah'-ee-ah","Of hebrew origin [H7414]; Arimathaea (or Ramah), a place in Palestine: - Arimatha."]},{"k":"G708","v":["Ἀρίσταρχος","Arístarchos","ar-is'-tar-khos","From the same as G712 and G757; best ruling; Aristarchus, a Macedonian: - Aristarchus."]},{"k":"G709","v":["ἀριστάω","aristáō","ar-is-tah'-o","From G712; to take the principal meal: - dine."]},{"k":"G710","v":["ἀριστερός","aristerós","ar-is-ter-os'","Apparently a compound of the same as G712; the left hand (as second best): - left [hand]."]},{"k":"G711","v":["Ἀριστόβουλος","Aristóboulos","ar-is-tob'-oo-los","From the same as G712 and G1012; best counselling; Aristoboulus, a Christian: - Aristobulus."]},{"k":"G712","v":["ἄριστον","áriston","ar'-is-ton","Apparent neuter of a superlative from the same as G730; the best meal [or breakfast; perhaps from ἦρι ēri (“early”)], that is, luncheon: - dinner."]},{"k":"G713","v":["ἀρκετός","arketós","ar-ket-os'","From G714; satisfactory: - enough, suffice (-ient)."]},{"k":"G714","v":["ἀρκέω","arkéō","ar-keh'-o","Apparently a primary verb (but probably akin to G142 through the idea of raising a barrier); properly to ward off, that is, (by implication) to avail (figuratively be satisfactory): - be content, be enough, suffice, be sufficient."]},{"k":"G715","v":["ἄρκτος","árktos","ark'-tos","Probably from G714; a bear (as obstructing by ferocity): - bear."]},{"k":"G716","v":["ἅρμα","hárma","har'-mah","Probably from G142 (perhaps with G1 (as a particle of union) prefixed); a chariot (as raised or fitted together (compare G719)): - chariot."]},{"k":"G717","v":["Ἀρμαγεδδών","Armageddṓn","ar-mag-ed-dohn'","Of Hebrew origin [H2022] and [H4023]; Armageddon (or Har-Megiddon), a symbolical name: - Armageddon."]},{"k":"G718","v":["ἁρμόζω","harmózō","har-mod'-zo","From G719; to joint, that is, (figuratively) to woo (reflexively to betroth): - espouse."]},{"k":"G719","v":["ἁρμός","harmós","har-mos'","From the same as G716; an articulation (of the body): - joint."]},{"k":"G720","v":["ἀρνέομαι","arnéomai","ar-neh'-om-ahee","Perhaps from G1 (as a negative particle) and the middle of G4483; to contradict, that is, disavow, reject, abnegate: - deny, refuse."]},{"k":"G721","v":["ἀρνίον","arníon","ar-nee'-on","Diminutive from G704; a lambkin: - lamb."]},{"k":"G722","v":["ἀροτριόω","arotrióō","ar-ot-ree-o'-o","From G723; to plough: - plow."]},{"k":"G723","v":["ἄροτρον","árotron","ar'-ot-ron","From ἀρόω aroō (to till); a plough: - plow."]},{"k":"G724","v":["ἁρπαγή","harpagḗ","har-pag-ay'","From G726; pillage (properly abstract): - extortion, ravening, spoiling."]},{"k":"G725","v":["ἁρπαγμός","harpagmós","har-pag-mos'","From G726; plunder (properly concrete): - robbery."]},{"k":"G726","v":["ἁρπάζω","harpázō","har-pad'-zo","From a derivative of G138; to seize (in various applications): - catch (away, up), pluck, pull, take (by force)."]},{"k":"G727","v":["ἅρπαξ","hárpax","har'-pax","From G726; rapacious: - extortion, ravening."]},{"k":"G728","v":["ἀῤῥαβών","arrhabṓn","ar-hrab-ohn'","Of Hebrew origin [H6162]; a pledge, that is, part of the purchase money or property given in advance as security for the rest: - earnest."]},{"k":"G729","v":["ἄῤῥαφος","árrhaphos","ar'-hhraf-os","From G1 (as a negative particle) and a presumed derivative of the same as G4476; unsewed, that is, of a single piece: - without seam."]},{"k":"G730","v":["ἄῤῥην","árrhēn","ar'-hrane","Probably from G142; male (as stronger for lifting): - male, man."]},{"k":"G731","v":["ἄῤῥητος","árrhētos","ar'-hray-tos","From G1 (as a negative particle) and the same as G4490; unsaid, that is, (by implication) inexpressible: - unspeakable."]},{"k":"G732","v":["ἄῤῥωστος","árrhōstos","ar'-hroce-tos","From G1 (as a negative particle) and a presumed derivative of G4517; infirm: - sick (folk, -ly)."]},{"k":"G733","v":["ἀρσενοκοίτης","arsenokoítēs","ar-sen-ok-oy'-tace","From G730 and G2845; a sodomite: - abuser of (that defile) self with mankind."]},{"k":"G734","v":["Ἀρτεμάς","Artemás","ar-tem-as'","Contracted from a compound of G735 and G1435; gift of Artemis; Artemas (or Artemidorus), a Christian: - Artemas."]},{"k":"G735","v":["Ἄρτεμις","Ártemis","ar'-tem-is","Probably from the same as G736; prompt; Artemis, the name of a Grecian goddess borrowed by the Asiatics for one of their deities: - Diana."]},{"k":"G736","v":["ἀρτέμων","artémōn","ar-tem'-ohn","From a derivative of G737; properly something ready (or else more remotely from G142 (compare G740); something hung up), that is, (specifically) the topsail (rather foresail or jib) of a vessel: - mainsail."]},{"k":"G737","v":["ἄρτι","árti","ar'-tee","Adverb from a derivative of G142 (compare G740) through the idea of suspension; just now: - this day (hour), hence [-forth], here [-after], hither [-to], (even) now, (this) present."]},{"k":"G738","v":["ἀρτιγέννητος","artigénnētos","ar-teeg-en'-nay-tos","From G737 and G1084; just born, that is, (figuratively) a young convert: - new born."]},{"k":"G739","v":["ἄρτιος","ártios","ar'-tee-os","From G737; fresh, that is, (by implication) complete: - perfect."]},{"k":"G740","v":["ἄρτος","ártos","ar'-tos","From G142; bread (as raised) or a loaf: - (shew-) bread, loaf."]},{"k":"G741","v":["ἀρτύω","artýō","ar-too'-o","From a presumed derivative of G142; to prepare, that is, spice (with stimulating condiments): - season."]},{"k":"G742","v":["Ἀρφαξάδ","Arphaxád","ar-fax-ad'","Of Hebrew origin [H775]; Arphaxad, a post diluvian patriarch: - Arphaxad."]},{"k":"G743","v":["ἀρχάγγελος","archángelos","ar-khang'-el-os","From G757 and G32; a chief angel: - archangel."]},{"k":"G744","v":["ἀρχαῖος","archaîos","ar-khah'-yos","From G746; original or primeval: - (them of) old (time)."]},{"k":"G745","v":["Ἀρχέλαος","Archélaos","ar-khel'-ah-os","From G757 and G2994; people ruling; Archelaus, a Jewish king: - Archelaus."]},{"k":"G746","v":["ἀρχή","archḗ","ar-khay'","From G756; (properly abstract) a commencement, or (concrete) chief (in various applications of order, time, place or rank): - beginning, corner, (at the, the) first (estate), magistrate, power, principality, principle, rule."]},{"k":"G747","v":["ἀρχηγός","archēgós","ar-khay-gos'","From G746 and G71; a chief leader: - author, captain, prince."]},{"k":"G748","v":["ἀρχιερατικός","archieratikós","ar-khee-er-at-ee-kos'","From G746 and a derivative of G2413; high priestly: - of the high-priest."]},{"k":"G749","v":["ἀρχιερεύς","archiereús","ar-khee-er-yuce'","From G746 and G2409; the high priest (literally of the Jews, typically Christ); by extension a chief priest: - chief (high) priest, chief of the priests."]},{"k":"G750","v":["ἀρχιποίμην","archipoímēn","ar-khee-poy'-mane","From G746 and G4166; a head shepherd: - chief shepherd."]},{"k":"G751","v":["Ἄρχιππος","Árchippos","ar'-khip-pos","From G746 and G2462; horse ruler; Archippus, a Christian: - Archippus."]},{"k":"G752","v":["ἀρχισυνάγωγος","archisynágōgos","ar-khee-soon-ag'-o-gos","From G746 and G4864; director of the synagogue services: - (chief) ruler of the synagogue."]},{"k":"G753","v":["ἀρχιτέκτων","architéktōn","ar-khee-tek'-tone","From G746 and G5045; a chief constructor, that is, “architect”: - masterbuilder."]},{"k":"G754","v":["ἀρχιτελώνης","architelṓnēs","ar-khee-tel-o'-nace","From G746 and G5057; a principal tax gatherer: - chief among the publicans."]},{"k":"G755","v":["ἀρχιτρίκλινος","architríklinos","ar-khee-tree'-klee-nos","From G746 and a compound of G5140 and G2827 (a dinner bed, because composed of three couches); director of the entertainment: - governor (ruler) of the feast."]},{"k":"G756","v":["ἄρχομαι","árchomai","ar'-khom-ahee","Middle voice of G757 (through the implication of precedence); to commence (in order of time): - rehearse from the) begin (-ning)."]},{"k":"G757","v":["ἄρχω","árchō","ar'-kho","A primary verb; to be first (in political rank or power): - reign (rule) over."]},{"k":"G758","v":["ἄρχων","árchōn","ar'-khone","Present participle of G757; a first (in rank or power): - chief (ruler), magistrate, prince, ruler."]},{"k":"G759","v":["ἄρωμα","árōma","ar'-o-mah","From G142 (in the sense of sending off scent); an aromatic: - (sweet) spice."]},{"k":"G760","v":["Ἀσά","Asá","as-ah'","Of Hebrew origin [H609]; Asa, an Israelite: - Asa."]},{"k":"G761","v":["ἀσάλευτος","asáleutos","as-al'-yoo-tos","From G1 (as a negative particle) and a derivative of G4531; unshaken, that is, (by implication) immovable (figuratively): - which cannot be moved, ummovable."]},{"k":"G762","v":["ἄσβεστος","ásbestos","as'-bes-tos","From G1 (as a negative particle) and a derivative of G4570; not extinguished, that is, (by implication) perpetual: - not to be quenched, unquenchable."]},{"k":"G763","v":["ἀσέβεια","asébeia","as-eb'-i-ah","From G765; impiety, that is, (by implication) wickedness: - ungodly (-liness)."]},{"k":"G764","v":["ἀσεβέω","asebéō","as-eb-eh'-o","From G765; to be (by implication act) impious or wicked: - commit (live, that after should live) ungodly."]},{"k":"G765","v":["ἀσεβής","asebḗs","as-eb-ace'","From G1 (as a negative particle) and a presumed derivative of G4576; irreverent, that is, (by extension) impious or wicked: - ungodly (man)."]},{"k":"G766","v":["ἀσέλγεια","asélgeia","as-elg'-i-a","From a compound of G1 (as a negative particle) and a presumed σελγής selgēs (of uncertain derivation, but apparently meaning continent); licentiousness (sometimes including other vices): - filthy, lasciviousness, wantonness."]},{"k":"G767","v":["ἄσημος","ásēmos","as'-ay-mos","From G1 (as a negative particle) and the base of G4591; unmarked, that is, (figuratively) ignoble: - mean."]},{"k":"G768","v":["Ἀσήρ","Asḗr","as-ayr'","Of Hebrew origin [H836]; Aser (that is, Asher), an Israelite tribe: - Aser."]},{"k":"G769","v":["ἀσθένεια","asthéneia","as-then'-i-ah","From G772; feebleness (of body or mind); by implication malady; moral frailty: - disease, infirmity, sickness, weakness."]},{"k":"G770","v":["ἀσθενέω","asthenéō","as-then-eh'-o","From G772; to be feeble (in any sense): - be diseased, impotent folk (man), (be) sick, (be, be made) weak."]},{"k":"G771","v":["ἀσθένημα","asthénēma","as-then'-ay-mah","From G770; a scruple of conscience: - infirmity."]},{"k":"G772","v":["ἀσθενής","asthenḗs","as-then-ace'","From G1 (as a negative particle) and the base of G4599; strengthless (in various applications, literally, or figuratively and morally): - more feeble, impotent, sick, without strength, weak (-er, -ness, thing)."]},{"k":"G773","v":["Ἀσία","Asía","as-ee'-ah","Of uncertain derivation; Asia, that is, Asia Minor, or (usually) only its western shore: - Asia."]},{"k":"G774","v":["Ἀσιανός","Asianós","as-ee-an-os'","From G773; an Asian (that is, Asiatic) or inhabitant of Asia: - of Asia."]},{"k":"G775","v":["Ἀσιάρχης","Asiárchēs","as-ee-ar'-khace","From G773 and G746; an Asiarch or president of the public festivities in a city of Asia Minor: - chief of Asia."]},{"k":"G776","v":["ἀσιτία","asitía","as-ee-tee'-ah","From G777; fasting (the state): - abstinence."]},{"k":"G777","v":["ἄσιτος","ásitos","as'-ee-tos","From G1 (as a negative particle) and G4621; without (taking) food: - fasting."]},{"k":"G778","v":["ἀσκέω","askéō","as-keh'-o","Probably from the same as G4632; to elaborate, that is, (figuratively) train (by implication strive): - exercise."]},{"k":"G779","v":["ἀσκός","askós","as-kos'","From the same as G778; a leathern (or skin) bag used as a bottle: - bottle."]},{"k":"G780","v":["ἀσμένως","asménōs","as-men'-oce","Adverb from a derivative of the base of G2237; with pleasure: - gladly."]},{"k":"G781","v":["ἄσοφος","ásophos","as'-of-os","From G1 (as a negative particle) and G4680; unwise: - fool."]},{"k":"G782","v":["ἀσπάζομαι","aspázomai","as-pad'-zom-ahee","From G1 (as a particle of union) and a presumed form of G4685; to enfold in the arms, that is, (by implication) to salute, (figuratively) to welcome: - embrace, greet, salute, take leave."]},{"k":"G783","v":["ἀσπασμός","aspasmós","as-pas-mos'","From G782; a greeting (in person or by letter): - greeting, salutation."]},{"k":"G784","v":["ἄσπιλος","áspilos","as'-pee-los","From G1 (as a negative particle) and G4695; unblemished (physically or morally): - without spot, unspotted."]},{"k":"G785","v":["ἀσπίς","aspís","as-pece'","Of uncertain derivation; a buckler (or round shield); used of a serpent (as coiling itself), probably the “asp”: - asp."]},{"k":"G786","v":["ἄσπονδος","áspondos","as'-pon-dos","From G1 (as a negative particle) and a derivative of G4689; literally without libation (which usually accompanied a treaty), that is, (by implication) truceless: - implacable, truce-breaker."]},{"k":"G787","v":["ἀσσάριον","assárion","as-sar'-ee-on","Of Latin origin; an assarius or as, a Roman coin: - farthing."]},{"k":"G788","v":["ἆσσον","âsson","as'-son","Neuter comparative of the base of G1451; more nearly, that is, very near: - close."]},{"k":"G789","v":["Ἄσσος","Ássos","as'-sos","Probably of foreign origin; Assus, a city of Asia Minor: - Assos."]},{"k":"G790","v":["ἀστατέω","astatéō","as-tat-eh'-o","From G1 (as a negative particle) and a derivative of G2476; to be non stationary, that is, (figuratively) homeless: - have no certain dwelling-place."]},{"k":"G791","v":["ἀστεῖος","asteîos","as-ti'-os","From ἄστυ astu (a city); urbane, that is, (by implication) handsome: - fair."]},{"k":"G792","v":["ἀστήρ","astḗr","as-tare'","Probably from the base of G4766; a star (as strown over the sky), literally or figuratively: - star."]},{"k":"G793","v":["ἀστήρικτος","astḗriktos","as-tay'-rik-tos","From G1 (as a negative particle) and a presumed derivation of G4741; unfixed, that is, (figuratively) vacillating: - unstable."]},{"k":"G794","v":["ἄστοργος","ástorgos","as'-tor-gos","From G1 (as a negative particle) and a presumed derivative of στέργω stergō (to cherish affectionately); hard hearted towards kindred: - without natural affection."]},{"k":"G795","v":["ἀστοχέω","astochéō","as-tokh-eh'-o","From a compound of G1 (as a negative particle) and στόιχος stoichos (an aim); to miss the mark, that is, (figuratively) deviate from truth: - err, swerve."]},{"k":"G796","v":["ἀστραπή","astrapḗ","as-trap-ay'","From G797; lightning; by analogy glare: - lightning, bright shining."]},{"k":"G797","v":["ἀστράπτω","astráptō","as-trap'-to","Probably from G792; to flash as lightning: - lighten, shine."]},{"k":"G798","v":["ἄστρον","ástron","as'-tron","Neuter from G792; properly a constellation; put for a single star (natural or artificial): - star."]},{"k":"G799","v":["Ἀσύγκριτος","Asýnkritos","as-oong'-kree-tos","From G1 (as a negative particle) and a derivative of G4793; incomparable; Asyncritus, a Christian: - Asyncritus."]},{"k":"G800","v":["ἀσύμφωνος","asýmphōnos","as-oom'-fo-nos","From G1 (as a negative particle) and G4859; inharmonious (figuratively): - agree not."]},{"k":"G801","v":["ἀσύνετος","asýnetos","as-oon'-ay-tos","From G1 (as a negative particle) and G4908; unintelligent; by implication wicked: - foolish, without understanding."]},{"k":"G802","v":["ἀσύνθετος","asýnthetos","as-oon'-thet-os","From G1 (as a negative particle) and a derivative of G4934; properly not agreed, that is, treacherous to compacts: - covenant-breaker"]},{"k":"G803","v":["ἀσφάλεια","aspháleia","as-fal'-i-ah","From G804; security (literally or figuratively): - certainty, safety."]},{"k":"G804","v":["ἀσφαλής","asphalḗs","as-fal-ace'","From G1 (as a negative particle) and σφάλλω sphallō (to “fail”); secure (literally or figuratively): - certain (-ty), safe, sure."]},{"k":"G805","v":["ἀσφαλίζω","asphalízō","as-fal-id'-zo","From G804; to render secure: - make fast (sure)."]},{"k":"G806","v":["ἀσφαλῶς","asphalōs","as-fal-oce'","Adverb from G804; securely (literally or figuratively): - assuredly, safely."]},{"k":"G807","v":["ἀσχημονέω","aschēmonéō","as-kay-mon-eh'-o","From G809; to be (that is, act) unbecoming: - behave self uncomely (unseemly)."]},{"k":"G808","v":["ἀσχημοσύνη","aschēmosýnē","as-kay-mos-oo'-nay","From G809; an indecency; by implication the pudenda: - shame, that which is unseemly."]},{"k":"G809","v":["ἀσχήμων","aschḗmōn","as-kay'-mone","From G1 (as a negative particle) and a presumed derivative of G2192 (in the sense of its congener G4976); properly shapeless, that is, (figuratively) inelegant: - uncomely."]},{"k":"G810","v":["ἀσωτία","asōtía","as-o-tee'-ah","From a compound of G1 (as a negative particle) and a presumed derivative of G4982; properly unsavedness, that is, (by implication) profligacy: - excess, riot."]},{"k":"G811","v":["ἀσώτως","asṓtōs","as-o'-toce","Adverb from the same as G810; dissolutely: - riotous."]},{"k":"G812","v":["ἀτακτέω","ataktéō","at-ak-teh'-o","From G813; to be (that is, act) irregular: - behave self disorderly."]},{"k":"G813","v":["ἄτακτος","átaktos","at'-ak-tos","From G1 (as a negative particle) and a derivative of G5021; unarranged, that is, (by implication) insubordinate (religiously): - unruly."]},{"k":"G814","v":["ἀτάκτως","atáktōs","at-ak'-toce","Adverb from G813; irregularly (morally): - disorderly."]},{"k":"G815","v":["ἄτεκνος","áteknos","at'-ek-nos","From G1 (as a negative particle) and G5043; childless: - childless, without children."]},{"k":"G816","v":["ἀτενίζω","atenízō","at-en-id'-zo","From a compound of G1 (as a particle of union) and τείνω teinō (to stretch); to gaze intently: - behold earnestly (stedfastly), fasten (eyes), look (earnestly, stedfastly, up stedfastly), set eyes."]},{"k":"G817","v":["ἄτερ","áter","at'-er","A particle probably akin to G427; aloof, that is, apart from (literally or figuratively): - in the absence of, without."]},{"k":"G818","v":["ἀτιμάζω","atimázō","at-im-ad'-zo","From G820; to render infamous, that is, (by implication) contemn or maltreat: - despise, dishonour, suffer shame, entreat shamefully."]},{"k":"G819","v":["ἀτιμία","atimía","at-ee-mee'-ah","From G820; infamy, that is, (subjectively) comparative indignity, (objectively) disgrace: - dishonour, reproach, shame, vile."]},{"k":"G820","v":["ἄτιμος","átimos","at'-ee-mos","From G1 (as a negative particle) and G5092; (negatively) unhonoured or (positively) dishonoured. May show a comparative degree such as less honourable: - despised, without honour, less honourable [comparative degree]."]},{"k":"G821","v":["ἀτιμόω","atimóō","at-ee-mo'-o","From G820; used like G818, to maltreat: - handle shamefully."]},{"k":"G822","v":["ἀτμίς","atmís","at-mece'","From the same as G109; mist: - vapour."]},{"k":"G823","v":["ἄτομος","átomos","at'-om-os","From G1 (as a negative particle) and the base of G5114; uncut, that is, (by implication) indivisible (an “atom” of time): - moment."]},{"k":"G824","v":["ἄτοπος","átopos","at'-op-os","From G1 (as a negative particle) and G5117; out of place, that is, (figuratively) improper, injurious, wicked: - amiss, harm, unreasonable."]},{"k":"G825","v":["Ἀττάλεια","Attáleia","at-tal'-i-ah","From Ἄτταλος Attalos (a king of Pergamus); Attaleia, a place in Pamphylia: - Attalia."]},{"k":"G826","v":["αὐγάζω","augázō","ow-gad'-zo","From G827; to beam forth (figuratively): - shine."]},{"k":"G827","v":["αὐγή","augḗ","owg'-ay","Of uncertain derivation; a ray of light, that is, (by implication) radiance, dawn: - break of day."]},{"k":"G828","v":["Αὐγοῦστος","Augoûstos","ow'-goos-tos","From Latin (“august”); Augustus, a title of the Roman emperor: - Augustus."]},{"k":"G829","v":["αὐθάδης","authádēs","ow-thad'-ace","From G846 and the base of G2237; self pleasing, that is, arrogant: - self-willed."]},{"k":"G830","v":["αὐθαίρετος","authaíretos","ow-thah'-ee-ret-os","From G846 and the same as G140; self chosen, that is, (by implication) voluntary: - of own accord, willing of self."]},{"k":"G831","v":["αὐθεντέω","authentéō","ow-then-teh'-o","From a compound of G846 and ἕντης hentēs (obsolete; a worker); to act of oneself, that is, (figuratively) dominate: - usurp authority over."]},{"k":"G832","v":["αὐλέω","auléō","ow-leh'-o","From G836; to play the flute: - pipe."]},{"k":"G833","v":["αὐλή","aulḗ","ow-lay'","From the same as G109; a yard (as open to the wind); by implication a mansion: - court, ([sheep-]) fold, hall, palace."]},{"k":"G834","v":["αὐλητής","aulētḗs","ow-lay-tace'","From G832; a flute player: - minstrel, piper."]},{"k":"G835","v":["αὐλίζομαι","aulízomai","ow-lid'-zom-ahee","Middle voice from G833; to pass the night (properly in the open air): - abide, lodge."]},{"k":"G836","v":["αὐλός","aulós","ow-los'","From the same as G109, a flute (as blown): - pipe."]},{"k":"G837","v":["αὐξάνω","auxánō","owx-an'-o","A prolonged form of a primary verb; to grow (“wax”), that is, enlarge (literally or figuratively, actively or passively): - grow (up), (give the) increase."]},{"k":"G838","v":["αὔξησις","aúxēsis","owx'-ay-sis","From G837; growth: - increase."]},{"k":"G839","v":["αὔριον","aúrion","ow'-ree-on","From a derivative of the same as G109 (meaning a breeze, that is, the morning air); properly fresh, that is, (adverbially with ellipsis of G2250) tomorrow: - (to-) morrow, next day."]},{"k":"G840","v":["αὐστηρός","austērós","ow-stay-ros'","From a (presumed) derivative of the same as G109 (meaning blown); rough (properly as a gale), that is, (figuratively) severe: - austere."]},{"k":"G841","v":["αὐτάρκεια","autárkeia","ow-tar'-ki-ah","From G842; self satisfaction, that is, (abstractly) contentedness, or (concretely) a competence: - contentment, sufficiency."]},{"k":"G842","v":["αὐτάρκης","autárkēs","ow-tar'-kace","From G846 and G714; self complacent, that is, contented: - content."]},{"k":"G843","v":["αὐτοκατάκριτος","autokatákritos","ow-tok-at-ak'-ree-tos","From G846 and a derivative of G2632; self condemned: - condemned of self."]},{"k":"G844","v":["αὐτόματος","autómatos","ow-tom'-at-os","From G846 and the same as G3155; self moved (“automatic”), that is, spontaneous: - of own accord, of self."]},{"k":"G845","v":["αὐτόπτης","autóptēs","ow-top'-tace","From G846 and G3700; self seeing, that is, an eye witness: - eye-witness."]},{"k":"G846","v":["αὐτός","autós","ow-tos'","From the particle αὖ au (perhaps akin to the base of G109 through the idea of a baffling wind; backward); the reflexive pronoun self, used (alone or in the compound of G1438) of the third person, and (with the proper personal pronoun) of the other persons: - her, it (-self), one, the other, (mine) own, said, ([self-], the) same, ([him-, my-, thy-]) self, [your-] selves, she, that, their (-s), them ([-selves]), there [-at, -by, -in, -into, -of, -on, -with], they, (these) things, this (man), those, together, very, which. Compare G848."]},{"k":"G847","v":["αὐτοῦ","autoû","ow-too'","Genitive (that is, possessive) of G846, used as an adverb of location; properly belonging to the same spot, that is, in this (or that) place: - (t-) here."]},{"k":"G848","v":["αὑτοῦ","hautoû","how-too'","Contraction for G1438; self (in some oblique case or reflexive relation): - her (own), (of) him (-self), his (own), of it, thee, their (own), them (-selves), they."]},{"k":"G849","v":["αὐτόχειρ","autócheir","ow-tokh'-ire","From G846 and G5495; self handed, that is, doing personally: - with . . . own hands."]},{"k":"G850","v":["αὐχμηρός","auchmērós","owkh-may-ros'","From αὐχμός auchmos (probably from a base akin to that of G109; dust, as dried by wind); properly dirty, that is, (by implication) obscure: - dark."]},{"k":"G851","v":["ἀφαιρέω","aphairéō","af-ahee-reh'-o","From G575 and G138; to remove (literally or figuratively): - cut (smite) off, take away."]},{"k":"G852","v":["ἀφανής","aphanḗs","af-an-ace'","From G1 (as a negative particle) and G5316; non apparent: - that is not manifest."]},{"k":"G853","v":["ἀφανίζω","aphanízō","af-an-id'-zo","From G852; to render unapparent, that is, (actively) consume (becloud), or (passively) disappear (be destroyed): - corrupt, disfigure, perish, vanish away."]},{"k":"G854","v":["ἀφανισμός","aphanismós","af-an-is-mos'","From G853; disappearance, that is, (figuratively) abrogation: - vanish away."]},{"k":"G855","v":["ἄφαντος","áphantos","af'-an-tos","From G1 (as a negative particle) and a derivative of G5316; non manifested, that is, invisible: - vanished out of sight."]},{"k":"G856","v":["ἀφεδρών","aphedrṓn","af-ed-rone'","From a compound of G575 and the base of G1476; a place of sitting apart, that is, a privy: - draught."]},{"k":"G857","v":["ἀφειδία","apheidía","af-i-dee'-ah","From a compound of G1 (as a negative particle) and G5339; unsparingness, that is, austerity (ascetism): - neglecting."]},{"k":"G858","v":["ἀφελότης","aphelótēs","af-el-ot'-ace","From a compound of G1 (as a negative particle) and φέλλος phellos (in the sense of a stone as stubbing the foot); smoothness, that is, (figuratively) simplicity: - singleness."]},{"k":"G859","v":["ἄφεσις","áphesis","af'-es-is","From G863; freedom; (figuratively) pardon: - deliverance, forgiveness, liberty, remission."]},{"k":"G860","v":["ἁφή","haphḗ","haf-ay'","From G680; probably a ligament (as fastening): - joint."]},{"k":"G861","v":["ἀφθαρσία","aphtharsía","af-thar-see'-ah","From G862; incorruptibility; generally unending existence; (figuratively) genuineness: - immortality, incorruption, sincerity."]},{"k":"G862","v":["ἄφθαρτος","áphthartos","af'-thar-tos","From G1 (as a negative particle) and a derivative of G5351; undecaying (in essence or continuance): - not (in-, un-) corruptible, immortal."]},{"k":"G863","v":["ἀφίημι","aphíēmi","af-ee'-ay-mee","From G575 and ἵημι hiēmi (to send; an intensive form of εἶμι eimi (to go)); to send forth, in various applications: - cry, forgive, forsake, lay aside, leave, let (alone, be, go, have), omit, put (send) away, remit, suffer, yield up."]},{"k":"G864","v":["ἀφικνέομαι","aphiknéomai","af-ik-neh'-om-ahee","From G575 and the base of G2425; to go (that is, spread) forth (by rumor): - come abroad."]},{"k":"G865","v":["ἀφιλάγαθος","aphilágathos","af-il-ag'-ath-os","From G1 (as a negative particle) and G5358; hostile to virtue: - depiser of those that are good."]},{"k":"G866","v":["ἀφιλάργυρος","aphilárgyros","af-il-ar'-goo-ros","From G1 (as a negative particle) and G5366; unavaricious: - without covetousness, not greedy of filthy lucre."]},{"k":"G867","v":["ἄφιξις","áphixis","af'-ix-is","From G864; properly arrival, that is, (by implication) departure: - departing."]},{"k":"G868","v":["ἀφίστημι","aphístēmi","af-is'-tay-mee","From G575 and G2476; to remove, that is, (actively) instigate to revolt; usually (reflexively) to desist, desert, etc.: - depart, draw (fall) away, refrain, withdraw self."]},{"k":"G869","v":["ἄφνω","áphnō","af'-no","Adverb from G852 (contracted); unawares, that is, unexpectedly: - suddenly."]},{"k":"G870","v":["ἀφόβως","aphóbōs","af-ob'-oce","Adveb from a compound of G1 (as a negative particle) and G5401; fearlessly: - without fear."]},{"k":"G871","v":["ἀφομοιόω","aphomoióō","af-om-oy-o'-o","From G575 and G3666; to assimilate closely: - make like."]},{"k":"G872","v":["ἀφοράω","aphoráō","af-or-ah'-o","From G575 and G3708; to consider attentively: - look."]},{"k":"G873","v":["ἀφορίζω","aphorízō","af-or-id'-zo","From G575 and G3724; to set off by boundary, that is, (figuratively) limit, exclude, appoint, etc.: - divide, separate, sever."]},{"k":"G874","v":["ἀφορμή","aphormḗ","af-or-may'","From a compound of G575 and G3729; a starting point, that is, (figuratively) an opportunity: - occasion."]},{"k":"G875","v":["ἀφρίζω","aphrízō","af-rid'-zo","From G876; to froth at the mouth (in epilepsy): - foam."]},{"k":"G876","v":["ἀφρός","aphrós","af-ros'","Apparently a primary word; froth, that is, slaver: - foaming."]},{"k":"G877","v":["ἀφροσύνη","aphrosýnē","af-ros-oo'-nay","From G878; senselessness, that is, (euphemistically) egotism; (morally) recklessness: - folly, foolishly (-ness)."]},{"k":"G878","v":["ἄφρων","áphrōn","af'-rone","From G1 (as a negative particle) and G5424; properly mindless, that is, stupid, (by implication) ignorant, (specifically) egotistic, (practically) rash, or (morally) unbelieving: - fool (-ish), unwise."]},{"k":"G879","v":["ἀφυπνόω","aphypnóō","af-oop-no'-o","From a compound of G575 and G5258; properly to become awake, that is, (by implication) to drop (off) in slumber: - fall asleep."]},{"k":"G880","v":["ἄφωνος","áphōnos","af'-o-nos","From G1 (as a negative particle) and G5456; voiceless, that is, mute (by nature or choice); figuratively unmeaning: - dumb, without signification."]},{"k":"G881","v":["Ἀχάζ","Acház","akh-adz'","Of Hebrew origin [H271]; Achaz, an Israelite: - Achaz."]},{"k":"G882","v":["Ἀχαΐα","Achaḯa","ach-ah-ee'-ah","Of uncertain derivation; Achaia (that is, Greece), a country of Europe: - Achaia."]},{"k":"G883","v":["Ἀχαϊκός","Achaïkós","ach-ah-ee-kos'","From G882; an Achaian; Achaicus, a Christian: - Achaicus."]},{"k":"G884","v":["ἀχάριστος","acháristos","ach-ar'-is-tos","From G1 (as a negative particle) and a presumed derivative of G5483; thankless, that is, ungrateful: - unthankful."]},{"k":"G885","v":["Ἀχείμ","Acheím","akh-ime'","Probably of Hebrew origin (compare [H3137]); Achim, an Israelite: - Achim."]},{"k":"G886","v":["ἀχειροποίητος","acheiropoíētos","akh-i-rop-oy'-ay-tos","From G1 (as a negative particle) and G5499; unmanufactured, that is, inartificial: - made without (not made with) hands."]},{"k":"G887","v":["ἀχλύς","achlýs","akh-looce'","Of uncertain derivation; dimness of sight, that is, (probably) a cataract: - mist."]},{"k":"G888","v":["ἀχρεῖος","achreîos","akh-ri'-os","From G1 (as a negative particle) and a derivative of G5534 (compare G5532); useless, that is, (euphemistically) unmeritorious: - unprofitable."]},{"k":"G889","v":["ἀχρειόω","achreióō","akh-ri-o'-o","From G888; to render useless, that is, spoil: - become unprofitable."]},{"k":"G890","v":["ἄχρηστος","áchrēstos","akh'-race-tos","From G1 (as a negative particle) and G5543; inefficient, that is, (by implication) detrimental: - unprofitable."]},{"k":"G891","v":["ἄχρι","áchri","akh'-ree","Akin to G206 (through the idea of a terminus); (of time) until or (of place) up to: - as far as, for, in (-to), till, (even, un-) to, until, while. Compare G3360."]},{"k":"G892","v":["ἄχυρον","áchyron","akh'-oo-ron","Perhaps remotely from χέω cheō (to shed forth); chaff (as diffusive): - chaff."]},{"k":"G893","v":["ἀψευδής","apseudḗs","aps-yoo-dace'","From G1 (as a negative particle) and G5579; veracious: - that cannot lie."]},{"k":"G894","v":["ἄψινθος","ápsinthos","ap'-sin-thos","Of uncertain derivation; wormwood (as a type of bitterness, that is, [figuratively] calamity): - wormwood."]},{"k":"G895","v":["ἄψυχος","ápsychos","ap'-soo-khos","From G1 (as a negative particle) and G5590; lifeless, that is, inanimate (mechanical): - without life."]},{"k":"G896","v":["Βάαλ","Báal","bah'-al","Of Hebrew origin [H1168]; Baal, a Phaenician deity (used as a symbol of idolatry): - Baal."]},{"k":"G897","v":["Βαβυλών","Babylṓn","bab-oo-lone'","Of Hebrew origin [H894]; Babylon, the capital of Chaldaea (literally or figuratively as a type of tyranny): - Babylon."]},{"k":"G898","v":["βαθμός","bathmós","bath-mos'","From the same as G899; a step, that is, (figuratively) grade (of dignity): - degree."]},{"k":"G899","v":["βάθος","báthos","bath'-os","From the same as G901; profundity, that is, (by implication) extent; (figuratively) mystery: - deep (-ness, things), depth."]},{"k":"G900","v":["βαθύνω","bathýnō","bath-oo'-no","From G901; to deepen: - deep."]},{"k":"G901","v":["βαθύς","bathýs","bath-oos'","From the base of G939; profound (as going down), literally or figuratively: - deep, very early."]},{"k":"G902","v":["βαΐον","baḯon","bah-ee'-on","A diminutive of a derivative probably of the base of G939; a palm twig (as going out far): - branch."]},{"k":"G903","v":["Βαλαάμ","Balaám","bal-ah-am'","Of Hebrew origin [H1109]; Balaam, a mesopotamian (symbolic of a false teacher): - Balaam."]},{"k":"G904","v":["Βαλάκ","Balák","bal-ak'","Of Hebrew origin [H1111]; Balak, a Moabite: - Balac."]},{"k":"G905","v":["βαλάντιον","balántion","bal-an'-tee-on","Probably remotely from G906 (as a depository); a pouch (for money): - bag, purse."]},{"k":"G906","v":["βάλλω","bállō","bal'-lo","A primary verb; to throw (in various applications, more or less violent or intense): - arise, cast (out), X dung, lay, lie, pour, put (up), send, strike, throw (down), thrust. Compare G4496."]},{"k":"G907","v":["βαπτίζω","baptízō","bap-tid'-zo","From a derivative of G911; to make whelmed (that is, fully wet); used only (in the New Testament) of ceremonial ablution, especially (technically) of the ordinance of Christian baptism: - baptist, baptize, wash."]},{"k":"G908","v":["βάπτισμα","báptisma","bap'-tis-mah","From G907; baptism (technically or figuratively): - baptism."]},{"k":"G909","v":["βαπτισμός","baptismós","bap-tis-mos'","From G907; ablution (ceremonially or Christian): - baptism, washing."]},{"k":"G910","v":["Βαπτιστής","Baptistḗs","bap-tis-tace'","From G907; a baptizer, as an epithet of Christ’s forerunner: - Baptist."]},{"k":"G911","v":["βάπτω","báptō","bap'-to","A primary verb; to whelm, that is, cover wholly with a fluid; in the New Testament only in a qualified or specific sense, that is, (literally) to moisten (a part of one’s person), or (by implication) to stain (as with dye): - dip."]},{"k":"G912","v":["Βαραββᾶς","Barabbâs","bar-ab-bas'","Of Chaldee origin ([H1347] and G5 (Greek)); son of Abba; Bar-abbas, an Israelite: - Barabbas."]},{"k":"G913","v":["Βαράκ","Barák","bar-ak'","Of Hebrew origin [H1301]; Barak, an Israelite: - Barak."]},{"k":"G914","v":["Βαραχίας","Barachías","bar-akh-ee'-as","Of Hebrew origin [H1296]; Barachias (that is, Berechijah), an Israelite: - Barachias."]},{"k":"G915","v":["βάρβαρος","bárbaros","bar'-bar-os","Of uncertain derivation; a foreigner (that is, non Greek): - barbarian (-rous)."]},{"k":"G916","v":["βαρέω","baréō","bar-eh'-o","From G926; to weigh down (figuratively): - burden, charge, heavy, press."]},{"k":"G917","v":["βαρέως","baréōs","bar-eh'-oce","Adverb from G926; heavily (figuratively): - dull."]},{"k":"G918","v":["Βαρθολομαῖος","Bartholomaîos","bar-thol-om-ah'-yos","Of Chaldee origin [H1247] and [H8526]; son of Tolmai; Bar-tholomaeus, a Christian apostle: - Bartholomeus."]},{"k":"G919","v":["Βαριησοῦς","Bariēsoûs","bar-ee-ay-sooce'","Of Chaldee origin [H1247] and [H3091]; son of Jesus (or Joshua); Barjesus, an Israelite: - Barjesus."]},{"k":"G920","v":["Βαριωνᾶς","Bariōnâs","bar-ee-oo-nas'","Of Chaldee origin [H1247] and [H3124]; son of Jonas (or Jonah); Bar-jonas, an Israelite: - Bar-jona."]},{"k":"G921","v":["Βαρνάβας","Barnábas","bar-nab'-as","Of Chaldee origin [H1247] and [H5029]; son of Nabas (that is, prophecy); Barnabas, an Israelite: - Barnabas."]},{"k":"G922","v":["βάρος","báros","bar'-os","Probably from the same as G939 (through the notion of going down; compare G899); weight; in the New Testament only, figuratively a load, abundance, authority: - burden (-some), weight."]},{"k":"G923","v":["Βαρσαβᾶς","Barsabâs","bar-sab-as'","Of Chaldee origin [H1247] and probably [H6634]; son of Sabas (or Tsaba); Barsabas, the name of two Israelites: - Barsabas."]},{"k":"G924","v":["Βαρτιμαῖος","Bartimaîos","bar-tim-ah'-yos","Of Chaldee origin [H1247] and [H2931]; son of Timaeus (or the unclean); Bartimaeus, an Israelite: - Bartimus."]},{"k":"G925","v":["βαρύνω","barýnō","bar-oo'-no","From G926; to burden (figuratively): - overcharge."]},{"k":"G926","v":["βαρύς","barýs","bar-ooce'","From the same as G922; weighty, that is, (figuratively) burdensome, grave: - grievous, heavy, weightier."]},{"k":"G927","v":["βαρύτιμος","barýtimos","bar-oo'-tim-os","From G926 and G5092; highly valuable: - very precious."]},{"k":"G928","v":["βασανίζω","basanízō","bas-an-id'-zo","From G931; to torture: - pain, toil, torment, toss, vex."]},{"k":"G929","v":["βασανισμός","basanismós","bas-an-is-mos'","From G928; torture: - torment."]},{"k":"G930","v":["βασανιστής","basanistḗs","bas-an-is-tace'","From G928; a torturer: - tormentor."]},{"k":"G931","v":["βάσανος","básanos","bas'-an-os","Perhaps remotely from the same as G939 (through the notion of going to the bottom); a touch stone, that is, (by analogy) torture: - torment."]},{"k":"G932","v":["βασιλεία","basileía","bas-il-i'-ah","From G935; properly royalty, that is, (abstractly) rule, or (concretely) a realm (literally or figuratively): - kingdom, + reign."]},{"k":"G933","v":["βασίλειον","basíleion","bas-il'-i-on","Neuter of G934; a palace: - king’s court."]},{"k":"G934","v":["βασίλειος","basíleios","bas-il'-i-os","From G935; kingly (in nature): - royal."]},{"k":"G935","v":["βασιλεύς","basileús","bas-il-yooce'","Probably from G939 (through the notion of a foundation of power); a sovereign (abstractly, relatively or figuratively): - king."]},{"k":"G936","v":["βασιλεύω","basileúō","bas-il-yoo'-o","From G935; to rule (literally or figuratively): - king, reign."]},{"k":"G937","v":["βασιλικός","basilikós","bas-il-ee-kos'","From G935; regal (in relation), that is, (literally) belonging to (or befitting) the sovereign (as land, dress, or a courtier), or (figuratively) preeminent: - king’s, nobleman, royal."]},{"k":"G938","v":["βασίλισσα","basílissa","bas-il'-is-sah","Feminine from G936; a queen: - queen."]},{"k":"G939","v":["βάσις","básis","bas'-ece","From βαίνω bainō (to walk); a pace (“base”), that is, (by implication) the foot: - foot."]},{"k":"G940","v":["βασκαίνω","baskaínō","bas-kah'-ee-no","Akin to G5335; to malign, that is, (by extension) to fascinate (by false representations): - bewitch."]},{"k":"G941","v":["βαστάζω","bastázō","bas-tad'-zo","Perhaps remotely derived from the base of G939 (through the idea of removal); to lift, literally or figuratively (endure, declare, sustain, receive, etc.): - bear, carry, take up."]},{"k":"G942","v":["βάτος","bátos","bat'-os","Of uncertain derivation; a brier shrub: - bramble, bush."]},{"k":"G943","v":["βάτος","bátos","bat'-os","Of Hebrew origin [H1324]; a bath, or measure for liquids: - measure."]},{"k":"G944","v":["βάτραχος","bátrachos","bat'-rakh-os","Of uncertain derivation; a frog: - frog."]},{"k":"G945","v":["βαττολογέω","battologéō","bat-tol-og-eh'-o","From Βάττος Battos (a proverbial stammerer) and G3056; to stutter, that is, (by implication) to prate tediously: - use vain repetitions."]},{"k":"G946","v":["βδέλυγμα","bdélygma","bdel'-oog-mah","From G948; a detestation, that is, (specifically) idolatry: - abomination."]},{"k":"G947","v":["βδελυκτός","bdelyktós","bdel-ook-tos'","From G948; detestable, that is, (specifically) idolatrous: - abominable."]},{"k":"G948","v":["βδελύσσω","bdelýssō","bdel-oos'-so","From a (presumed) derivative of βδέω bdeō (to stink); to be disgusted, that is, (by implication) detest (especially of idolatry): - abhor, abominable."]},{"k":"G949","v":["βέβαιος","bébaios","beb'-ah-yos","From the base of G939 (through the idea of basality); stable (literally or figuratively): - firm, of force, stedfast, sure."]},{"k":"G950","v":["βεβαιόω","bebaióō","beb-ah-yo'-o","From G949; to stabilitate (figuratively): - confirm, (e-) stablish."]},{"k":"G951","v":["βεβαίωσις","bebaíōsis","beb-ah'-yo-sis","From G950; stabiliment: - confirmation."]},{"k":"G952","v":["βέβηλος","bébēlos","beb'-ay-los","From the base of G939 and βηλός bēlos (a threshold); accessible (as by crossing the door way), that is, (by implication of Jewish notions) heathenish, wicked: - profane (person)."]},{"k":"G953","v":["βεβηλόω","bebēlóō","beb-ay-lo'-o","From G952; to desecrate: - profane."]},{"k":"G954","v":["Βεελζεβούλ","Beelzeboúl","beh-el-zeb-ool'","Of Chaldee origin (by parody upon [H1176]); dung god; Beelzebul, a name of Satan: - Beelzebub."]},{"k":"G955","v":["Βελίαλ","Belíal","bel-ee'-al","Of Hebrew origin [H1100]; worthlessness; Belial, as an epithet of Satan: - Belial."]},{"k":"G956","v":["βέλος","bélos","bel'-os","From G906; a missile, that is, spear or arrow: - dart."]},{"k":"G957","v":["βελτίον","beltíon","bel-tee'-on","Neuter of a compound of a derivative of G906 (used for the compound of G18); better: - very well."]},{"k":"G958","v":["Βενιαμίν","Beniamín","ben-ee-am-een'","Of Hebrew origin [H1144]; Benjamin, an Israelite: - Benjamin."]},{"k":"G959","v":["Βερνίκη","Berníkē","ber-nee'-kay","From a provincial form of G5342 and G3529; victorious; Bernice, a member of the Herodian family: - Bernice."]},{"k":"G960","v":["Βέροια","Béroia","ber'-oy-ah","Perhaps a provincial from a derivative of G4008 (Peraea, that is, the region beyond the coast line); Beraea, a place in Macedonia: - Berea."]},{"k":"G961","v":["Βεροιαῖος","Beroiaîos","ber-oy-ah'-yos","From G960; a Beraeaean or native of Beraea: - of Berea."]},{"k":"G962","v":["Βηθαβαρά","Bēthabará","bay-thab-ar-ah'","Of Hebrew origin ([H1004] and [H5679]); ferry house; Bethabara (that is, Bethabarah), a place on the Jordan: - Bethabara."]},{"k":"G963","v":["Βηθανία","Bēthanía","bay-than-ee'-ah","Of Chaldee origin; date house; Bethany, a place in Palestine: - Bethany."]},{"k":"G964","v":["Βηθεσδά","Bēthesdá","bay-thes-dah'","Of Chaldee origin (compare [H1004] and [H2617]); house of kindness; Bethesda, a pool in Jerusalem: - Bethesda."]},{"k":"G965","v":["Βηθλεέμ","Bēthleém","bayth-leh-em'","Of Hebrew origin [H1036]; Bethleem (that is, Beth-lechem), a place in Palestine: - Bethlehem."]},{"k":"G966","v":["Βηθσαϊδά","Bēthsaïdá","bayth-sahee-dah'","Of Chaldee origin (compare [H1004] and [H6719]); fishing house; Bethsaida, a place in Palestine: - Bethsaida."]},{"k":"G967","v":["Βηθφαγή","Bēthphagḗ","bayth-fag-ay'","Of Chaldee origin (compare [H1004] and [H6291]); fig house; Bethphage, a place in Palestine: - Bethphage."]},{"k":"G968","v":["βῆμα","bēma","bay'-ma","From the base of G939; a step, that is, foot breath; by implication a rostrum, that is, tribunal: - judgment-seat, set [foot] on, throne."]},{"k":"G969","v":["βήρυλλος","bḗryllos","bay'-rool-los","Of uncertain derivation; a “beryl”: - beryl."]},{"k":"G970","v":["βία","bía","bee'-ah","Probably akin to G979 (through the idea of vital activity); force: - violence."]},{"k":"G971","v":["βιάζω","biázō","bee-ad'-zo","From G970; to force, that is, (reflexively) to crowd oneself (into), or (passively) to be seized: - press, suffer violence."]},{"k":"G972","v":["βίαιος","bíaios","bee'-ah-yos","From G970; violent: - mighty."]},{"k":"G973","v":["βιαστής","biastḗs","bee-as-tace'","From G971; a forcer, that is, (figuratively) energetic: - violent."]},{"k":"G974","v":["βιβλιαρίδιον","bibliarídion","bib-lee-ar-id'-ee-on","A diminutive of G975; a booklet: - little book."]},{"k":"G975","v":["βιβλίον","biblíon","bib-lee'-on","A diminutive of G976; a roll: - bill, book, scroll, writing."]},{"k":"G976","v":["βίβλος","bíblos","bib'-los","Properly the inner bark of the papyrus plant, that is, (by implication) a sheet or scroll of writing: - book."]},{"k":"G977","v":["βιβρώσκω","bibrṓskō","bib-ro'-sko","A reduplicated and prolonged form of an obsolete primary verb (perhaps causative of G1006); to eat: - eat."]},{"k":"G978","v":["Βιθυνία","Bithynía","bee-thoo-nee'-ah","Of uncertain derivation; Bithynia, a region of Asia: - Bithynia."]},{"k":"G979","v":["βίος","bíos","bee'-os","A primary word; life, that is, (literally) the present state of existence; by implication the means of livelihood: - good, life, living."]},{"k":"G980","v":["βιόω","bióō","bee-o'-o","From G979; to spend existence: - live."]},{"k":"G981","v":["βίωσις","bíōsis","bee'-o-sis","From G980; living (properly the act, by implication the mode): - manner of life"]},{"k":"G982","v":["βιωτικός","biōtikós","bee-o-tee-kos'","From a derivative of G980; relating to the present existence: - of (pertaining to, things that pertain to) this life."]},{"k":"G983","v":["βλαβερός","blaberós","blab-er-os'","From G984; injurious: - hurtful."]},{"k":"G984","v":["βλάπτω","bláptō","blap'-to","A primary verb; properly to hinder, that is, (by implication) to injure: - hurt."]},{"k":"G985","v":["βλαστάνω","blastánō","blas-tan'-o","From βλαστός blastos (a sprout); to germinate; by implication to yield fruit: - bring forth, bud, spring (up)."]},{"k":"G986","v":["Βλάστος","Blástos","blas'-tos","Perhaps the same as the base of G985; Blastus, an officer of Herod Agrippa: - Blastus."]},{"k":"G987","v":["βλασφημέω","blasphēméō","blas-fay-meh'-o","From G989; to vilify; specifically to speak impiously: - (speak) blaspheme (-er, -mously, -my), defame, rail on, revile, speak evil."]},{"k":"G988","v":["βλασφημία","blasphēmía","blas-fay-me'-ah","From G989; vilification (especially against God): - blasphemy, evil speaking, railing."]},{"k":"G989","v":["βλάσφημος","blásphēmos","blas'-fay-mos","From a derivative of G984 and G5345; scurrilous, that is, calumnious (against man), or (specifically) impious (against God): - blasphemer (-mous), railing."]},{"k":"G990","v":["βλέμμα","blémma","blem'-mah","From G991; vision (properly concrete; by implication abstract): - seeing."]},{"k":"G991","v":["βλέπω","blépō","blep'-o","A primary verb; to look at (literally or figuratively): - behold, beware, lie, look (on, to), perceive, regard, see, sight, take heed. Compare G3700."]},{"k":"G992","v":["βλητέος","blētéos","blay-teh'-os","From G906; fit to be cast (that is, applied): - must be put."]},{"k":"G993","v":["Βοανεργές","Boanergés","bo-an-erg-es'","Of Chald origin ([H1123] and [H7266]); sons of commotion; Boanerges, an epithet of two of the Apostles: - Boanerges."]},{"k":"G994","v":["βοάω","boáō","bo-ah'-o","Apparently a prolonged form of a primary verb; to halloo, that is, shout (for help or in a tumultuous way): - cry."]},{"k":"G995","v":["βοή","boḗ","bo-ay'","From G994; a halloo, that is, call (for aid, etc.): - cry."]},{"k":"G996","v":["βοήθεια","boḗtheia","bo-ay'-thi-ah","From G998; aid; specifically a rope or chain for frapping a vessel: - help."]},{"k":"G997","v":["βοηθέω","boēthéō","bo-ay-theh'-o","From G998; to aid or relieve: - help, succour."]},{"k":"G998","v":["βοηθός","boēthós","bo-ay-thos'","From G995 and θέω theō (to run); a succorer: - helper."]},{"k":"G999","v":["βόθυνος","bóthynos","both'-oo-nos","Akin to G900; a hole (in the ground); specifically a cistern: - ditch, pit."]},{"k":"G1000","v":["βολή","bolḗ","bol-ay'","From G906; a throw (as a measure of distance): - cast."]},{"k":"G1001","v":["βολίζω","bolízō","bol-id'-zo","From G1002; to heave the lead: - sound."]},{"k":"G1002","v":["βολίς","bolís","bol-ece'","From G906; a missile, that is, javelin: - dart."]},{"k":"G1003","v":["Βοόζ","Boóz","bo-oz'","Of Hebrew origin [H1162]; Booz, (that is, Boaz), an Israelite: - Booz."]},{"k":"G1004","v":["βόρβορος","bórboros","bor'-bor-os","Of uncertain derivation; mud: - mire."]},{"k":"G1005","v":["βοῤῥᾶς","borrhâs","bor-hras'","Of uncertain derivation; the north (properly wind): - north."]},{"k":"G1006","v":["βόσκω","bóskō","bos'-ko","A prolonged form of a primary verb (compare G977 and G1016); to pasture; by extension to fodder; reflexively to graze: - feed, keep."]},{"k":"G1007","v":["Βοσόρ","Bosór","bos-or'","Of Hebrew origin [H1160]; Bosor (that is, Beor), a Moabite: - Bosor."]},{"k":"G1008","v":["βοτάνη","botánē","bot-an'-ay","From G1006; herbage (as if for grazing): - herb."]},{"k":"G1009","v":["βότρυς","bótrys","bot'-rooce","Of uncertain derivation; a bunch (of grapes): - (vine) cluster (of the vine)."]},{"k":"G1010","v":["βουλευτής","bouleutḗs","bool-yoo-tace'","From G1011; an adviser, that is, (specifically) a councillor or member of the Jewish Sanhedrim: - counsellor."]},{"k":"G1011","v":["βουλεύω","bouleúō","bool-yoo'-o","From G1012; to advise, that is, (reflexively) deliberate, or (by implication) resolve: - consult, take counsel, determine, be minded, purpose."]},{"k":"G1012","v":["βουλή","boulḗ","boo-lay'","From G1014; volition, that is, (objectively) advice, or (by implication) purpose: - + advise, counsel, will."]},{"k":"G1013","v":["βούλημα","boúlēma","boo'-lay-mah","From G1014; a resolve: - purpose, will."]},{"k":"G1014","v":["βούλομαι","boúlomai","boo'-lom-ahee","Middle voice of a primary verb; to “will”, that is, (reflexively) be willing: - be disposed, minded, intend, list (be, of own) will (-ing). Compare G2309."]},{"k":"G1015","v":["βουνός","bounós","boo-nos'","Probably of foreign origin; a hillock: - hill."]},{"k":"G1016","v":["βοῦς","boûs","booce","Probably from the base of G1006; an ox (as grazing), that is, an animal of that species (“beef”): - ox."]},{"k":"G1017","v":["βραβεῖον","brabeîon","brab-i'-on","From βραβεύς brabeus (an umpire; of uncertain derivation); an award (of arbitration), that is, (specifically) a prize in the public games: - prize."]},{"k":"G1018","v":["βραβεύω","brabeúō","brab-yoo'-o","From the same as G1017; to arbitrate, that is, (generally) to govern (figuratively prevail): - rule."]},{"k":"G1019","v":["βραδύνω","bradýnō","brad-oo'-no","From G1021; to delay: - be slack, tarry."]},{"k":"G1020","v":["βραδυπλοέω","bradyploéō","brad-oo-plo-eh'-o","From G1021 and a prolonged form of G4126; to sail slowly: - sail slowly."]},{"k":"G1021","v":["βραδύς","bradýs","brad-ooce'","Of uncertain affinity; slow; figuratively dull: - slow."]},{"k":"G1022","v":["βραδύτης","bradýtēs","brad-oo'-tace","From G1021; tardiness: - slackness."]},{"k":"G1023","v":["βραχίων","brachíōn","brakh-ee'-own","Properly a compound of G1024, but apparently in the sense of βράσσω brassō (to wield); the arm, that is, (figuratively) strength: - arm."]},{"k":"G1024","v":["βραχύς","brachýs","brakh-ooce'","Of uncertain affinity; short (of time, place, quantity, or number): - few words, little (space, while)."]},{"k":"G1025","v":["βρέφος","bréphos","bref'-os","Of uncertain affinity; an infant (properly unborn) literally or figuratively: - babe, (young) child, infant."]},{"k":"G1026","v":["βρέχω","bréchō","brekh'-o","A primary verb; to moisten (especially by a shower): - (send) rain, wash."]},{"k":"G1027","v":["βροντή","brontḗ","bron-tay'","Akin to βρέμω bremō (to roar); thunder: - thunder (-ing)."]},{"k":"G1028","v":["βροχή","brochḗ","brokh-ay'","From G1026; rain: - rain."]},{"k":"G1029","v":["βρόχος","bróchos","brokh'-os","Of uncertain derivation; a noose: - snare."]},{"k":"G1030","v":["βρυγμός","brygmós","broog-mos'","From G1031; a grating (of the teeth): - gnashing."]},{"k":"G1031","v":["βρύχω","brýchō","broo'-kho","A primary verb; to grate the teeth (in pain or rage): - gnash."]},{"k":"G1032","v":["βρύω","brýō","broo'-o","A primary verb; to swell out, that is, (by implication) to gush: - send forth."]},{"k":"G1033","v":["βρῶμα","brōma","bro'-mah","From the base of G977; food (literally or figuratively), especially (ceremonial) articles allowed or forbiden by the Jewish law: - meat, victuals."]},{"k":"G1034","v":["βρώσιμος","brṓsimos","bro'-sim-os","From G1035; eatable: - meat."]},{"k":"G1035","v":["βρῶσις","brōsis","bro'-sis","From the base of G977; (abstractly) eating (literally or figuratively); by extension (concretely) food (literally or figuratively): - eating, food, meat."]},{"k":"G1036","v":["βυθίζω","bythízō","boo-thid'-zo","From G1037; to sink; by implication to drown: - begin to sink, drown."]},{"k":"G1037","v":["βυθός","bythós","boo-thos'","A variation of G899; depth, that is, (by implication) the sea: - deep."]},{"k":"G1038","v":["βυρσεύς","byrseús","boorce-yooce'","From βύρσα bursa (a hide); a tanner: - tanner."]},{"k":"G1039","v":["βύσσινος","býssinos","boos'-see-nos","From G1040; made of linen (neuter of linen cloth): - fine linen."]},{"k":"G1040","v":["βύσσος","býssos","boos'-sos","Of Hebrew origin [H948]; white linen: - fine linen."]},{"k":"G1041","v":["βωμός","bōmós","bo'-mos","From the base of G939; properly a stand, that is, (specifically) an altar: - altar."]},{"k":"G1042","v":["γαββαθά","gabbathá","gab-bath-ah'","Of Chaldee origin (compare [H1355]); the knoll; gabbatha, a vernacular term for the Roman tribunal in Jerusalem: - Gabbatha."]},{"k":"G1043","v":["Γαβριήλ","Gabriḗl","gab-ree-ale'","Of Hebrew origin [H1403]; Gabriel, an archangel: - Gabriel."]},{"k":"G1044","v":["γάγγραινα","gángraina","gang'-grahee-nah","From γραίνω grainō (to gnaw); an ulcer (“gangrene”): - canker."]},{"k":"G1045","v":["Γάδ","Gád","gad","Of Hebrew origin [H1410]; Gad, a tribe of Israelite: - Gad."]},{"k":"G1046","v":["Γαδαρηνός","Gadarēnós","gad-ar-ay-nos'","From Γαδαρά Gadara (a town East of the Jordan); a Gadarene or inhabitant of Gadara: - Gadarene."]},{"k":"G1047","v":["γάζα","gáza","gad'-zah","Of foreign origin; a treasure: - treasure."]},{"k":"G1048","v":["Γάζα","Gáza","gad'-zah","Of Hebrew origin [H5804]; Gazah (that is, Azzah), a place in Palestine: - Gaza."]},{"k":"G1049","v":["γαζοφυλάκιον","gazophylákion","gad-zof-oo-lak'-ee-on","From G1047 and G5438; a treasure house, that is, a court in the temple for the collection boxes: - treasury."]},{"k":"G1050","v":["Γάϊος","Gáïos","gah'-ee-os","Of Latin origin; Gaius (that is, Caius), a Christian: - Gaius."]},{"k":"G1051","v":["γάλα","gála","gal'-ah","Of uncertain affinity; milk (figuratively): - milk."]},{"k":"G1052","v":["Γαλάτης","Galátēs","gal-at'-ace","From G1053; a Galatian or inhabitant of Galatia: - Galatian."]},{"k":"G1053","v":["Γαλατία","Galatía","gal-at-ee'-ah","Of foreign origin; Galatia, a region of Asia: - Galatia."]},{"k":"G1054","v":["Γαλατικός","Galatikós","gal-at-ee-kos'","From G1053; Galatic or relating to Galatia: - of Galatia."]},{"k":"G1055","v":["γαλήνη","galḗnē","gal-ay'-nay","Of uncertain derivation; tranquillity: - calm."]},{"k":"G1056","v":["Γαλιλαία","Galilaía","gal-il-ah'-yah","Of hebrew origin [H1551]; Galilaea (that is, the heathen circle), a region of Palestine: - Galilee."]},{"k":"G1057","v":["Γαλιλαῖος","Galilaîos","gal-ee-lah'-yos","From G1056; Galilaean or belonging to Galilaea: - Galilan, of Galilee."]},{"k":"G1058","v":["Γαλλίων","Gallíōn","gal-lee'-own","Of Latin origin; Gallion (that is, Gallio), a Roman officer: - Gallio"]},{"k":"G1059","v":["Γαμαλιήλ","Gamaliḗl","gam-al-ee-ale'","Of Hebrew origin [H1583]; Gamaliel (that is, Gamliel), an Israelite: - Gamaliel."]},{"k":"G1060","v":["γαμέω","gaméō","gam-eh'-o","From G1062; to wed (of either sex): - marry (a wife)."]},{"k":"G1061","v":["γαμίσκω","gamískō","gam-is'-ko","From G1062; to espouse (a daughter to a husband): - give in marriage."]},{"k":"G1062","v":["γάμος","gámos","gam'-os","Of uncertain affinity; nuptials: - marriage, wedding."]},{"k":"G1063","v":["γάρ","gár","gar","A primary particle; properly assigning a reason (used in argument, explanation or intensification; often with other particles): - and, as, because (that), but, even, for indeed, no doubt, seeing, then, therefore, verily, what, why, yet."]},{"k":"G1064","v":["γαστήρ","gastḗr","gas-tare'","Of uncertain derivation; the stomach; by analogy the matrix; figuratively a gourmand: - belly, + with child, womb."]},{"k":"G1065","v":["γέ","gé","gheh","A primary particle of emphasis or qualification (often used with other particles prefixed): - and besides, doubtless, at least, yet."]},{"k":"G1066","v":["Γεδεών","Gedeṓn","ghed-eh-own'","Of Hebrew origin [H1439]; Gedeon (that is, Gideon), an Israelite: - Gedeon."]},{"k":"G1067","v":["γέεννα","géenna","gheh'-en-nah","Of Hebrew origin ([H1516] and [H2011]); valley of (the son of) Hinnom; gehenna (or Ge-Hinnom), a valley of Jerusalem, used (figuratively) as a name for the place (or state) of everlasting punishment: - hell."]},{"k":"G1068","v":["Γεθσημανῆ","Gethsēmanē","gheth-say-man-ay'","Of Chaldee origin (compare [H1660] and [H8081]); oil press; Gethsemane, a garden near Jerusalem: - Gethsemane."]},{"k":"G1069","v":["γείτων","geítōn","ghi'-tone","From G1093; a neighbor (as adjoining one’s ground); by implication a friend: - neighbour."]},{"k":"G1070","v":["γελάω","geláō","ghel-ah'-o","Of uncertain affinity; to laugh (as a sign of joy or satisfaction): - laugh."]},{"k":"G1071","v":["γέλως","gélōs","ghel'-os","From G1070; laughter (as a mark of gratification): - laughter."]},{"k":"G1072","v":["γεμίζω","gemízō","ghem-id'-zo","Transitive from G1073; to fill entirely: - fill (be) full."]},{"k":"G1073","v":["γέμω","gémō","ghem'-o","A primary verb; to swell out, that is, be full: - be full."]},{"k":"G1074","v":["γενεά","geneá","ghen-eh-ah'","From (a presumed derivative of) G1085; a generation; by implication an age (the period or the persons): - age, generation, nation, time."]},{"k":"G1075","v":["γενεαλογέω","genealogéō","ghen-eh-al-og-eh'-o","From G1074 and G3056; to reckon by generations, that is, trace in genealogy: - count by descent."]},{"k":"G1076","v":["γενεαλογία","genealogía","ghen-eh-al-og-ee'-ah","From the same as G1075; tracing by generations, that is, “genealogy”: - genealogy."]},{"k":"G1077","v":["γενέσια","genésia","ghen-es'-ee-ah","Neuter plural of a derivative of G1078; birthday ceremonies: - birthday."]},{"k":"G1078","v":["γένεσις","génesis","ghen'-es-is","From the same as G1074; nativity; figuratively nature: - generation, nature (-ral)."]},{"k":"G1079","v":["γενετή","genetḗ","ghen-et-ay","Feminine of a presumed derivative of the base of G1074; birth: - birth."]},{"k":"G1080","v":["γεννάω","gennáō","ghen-nah'-o","From a variation of G1085; to procreate (properly of the father, but by extension of the mother); figuratively to regenerate: - bear, beget, be born, bring forth, conceive, be delivered of, gender, make, spring."]},{"k":"G1081","v":["γέννημα","génnēma","ghen'-nay-mah","From G1080; offspring; by analogy produce (literally or figuratively): - fruit, generation."]},{"k":"G1082","v":["Γεννησαρέτ","Gennēsarét","ghen-nay-sar-et'","Of Hebrew origin (compare [H3672]); Gennesaret (that is, Kinnereth), a lake and plain in Palestine: - Gennesaret."]},{"k":"G1083","v":["γέννησις","génnēsis","ghen'-nay-sis","From G1080; nativity: - birth."]},{"k":"G1084","v":["γεννητός","gennētós","ghen-nay-tos'","From G1080; born: - they that are born."]},{"k":"G1085","v":["γένος","génos","ghen'-os","From G1096; “kin” (abstractly or concretely, literally or figuratively, individually or collectively): - born, country (-man), diversity, generation, kind (-red), nation, offspring, stock."]},{"k":"G1086","v":["Γεργεσηνός","Gergesēnós","gher-ghes-ay-nos'","Of Hebrew origin [H1622]; a Gergesene (that is, Girgashite) or one of the aborigines of Palestine: - Gergesene."]},{"k":"G1087","v":["γερουσία","gerousía","gher-oo-see'-ah","From G1088; the eldership, that is, (collectively) the Jewish Sanhedrim: - senate."]},{"k":"G1088","v":["γέρων","gérōn","gher'-own","Of uncertain affinity (compare G1094); aged: - old."]},{"k":"G1089","v":["γεύομαι","geúomai","ghyoo'-om-ahee","A primary verb; to taste; by implication to eat; figuratively to experience (good or ill): - eat, taste."]},{"k":"G1090","v":["γεωργέω","geōrgéō","gheh-or-gheh'-o","From G1092; to till (the soil): - dress."]},{"k":"G1091","v":["γεώργιον","geṓrgion","gheh-ore'-ghee-on","Neuter of a (presumed) derivative of G1092; cultivable, that is, a farm: - husbandry."]},{"k":"G1092","v":["γεωργός","geōrgós","gheh-ore-gos'","From G1093 and the base of G2041; a land worker, that is, farmer: - husbandman."]},{"k":"G1093","v":["γῆ","gē","ghay","Contracted from a primary word; soil; by extension a region, or the solid part or the whole of the terrene globe (including the occupants in each application): - country, earth (-ly), ground, land, world."]},{"k":"G1094","v":["γῆρας","gēras","ghay'-ras","Akin to G1088; senility: - old age."]},{"k":"G1095","v":["γηράσκω","gēráskō","ghay-ras'-ko","From G1094; to be senescent: - be (wax) old."]},{"k":"G1096","v":["γίνομαι","gínomai","ghin'-om-ahee","A prolonged and middle form of a primary verb; to cause to be (“gen” -erate), that is, (reflexively) to become (come into being), used with great latitude (literally, figuratively, intensively, etc.): - arise be assembled, be (come, -fall, -have self), be brought (to pass), (be) come (to pass), continue, be divided, be done, draw, be ended, fall, be finished, follow, be found, be fulfilled, + God forbid, grow, happen, have, be kept, be made, be married, be ordained to be, partake, pass, be performed, be published, require, seem, be showed, X soon as it was, sound, be taken, be turned, use, wax, will, would, be wrought."]},{"k":"G1097","v":["γινώσκω","ginṓskō","ghin-oce'-ko","A prolonged form of a primary verb; to “know” (absolutely), in a great variety of applications and with many implications (as shown at left, with others not thus clearly expressed): - allow, be aware (of), feel, (have) known (-ledge), perceive, be resolved, can speak, be sure, understand."]},{"k":"G1098","v":["γλεῦκος","gleûkos","glyoo'-kos","Akin to G1099; sweet wine, that is, (properly) must (fresh juice), but used of the more saccharine (and therefore highly inebriating) fermented wine: - new wine."]},{"k":"G1099","v":["γλυκύς","glykýs","gloo-koos'","Of uncertain affinity; sweet (that is, not bitter nor salt): - sweet, fresh."]},{"k":"G1100","v":["γλῶσσα","glōssa","gloce-sah'","Of uncertain affinity; the tongue; by implication a language (specifically one naturally unacquired): - tongue."]},{"k":"G1101","v":["γλωσσόκομον","glōssókomon","gloce-sok'-om-on","From G1100 and the base of G2889; properly a case (to keep mouthpieces of wind instruments in), that is, (by extension) a casket or (specifically) purse: - bag."]},{"k":"G1102","v":["γναφεύς","gnapheús","gnaf-yuce'","By variation for a derivative from κνάπτω knaptō (to tease cloth); a cloth dresser: - fuller."]},{"k":"G1103","v":["γνήσιος","gnḗsios","gnay'-see-os","From the same as G1077; legitimate (of birth), that is, genuine: - own, sincerity, true."]},{"k":"G1104","v":["γνησίως","gnēsíōs","gnay-see'-ose","Adverb from G1103; genuinely, that is, really: - naturally."]},{"k":"G1105","v":["γνόφος","gnóphos","gnof'-os","Akin to G3509; gloom (as of a storm): - blackness."]},{"k":"G1106","v":["γνώμη","gnṓmē","gno'-may","From G1097; cognition, that is, (subjectively) opinion, or (objectively) resolve (counsel, consent, etc.): - advice, + agree, judgment, mind, purpose, will."]},{"k":"G1107","v":["γνωρίζω","gnōrízō","gno-rid'-zo","From a derivative of G1097; to make known; subjectively to know: - certify, declare, make known, give to understand, do to wit, wot."]},{"k":"G1108","v":["γνῶσις","gnōsis","gno'-sis","From G1097; knowing (the act), that is, (by implication) knowledge: - knowledge, science."]},{"k":"G1109","v":["γνώστης","gnṓstēs","gnoce'-tace","From G1097; a knower: - expert."]},{"k":"G1110","v":["γνωστός","gnōstós","gnoce-tos'","From G1097; well known: - acquaintance, (which may be) known, notable."]},{"k":"G1111","v":["γογγύζω","gongýzō","gong-good'-zo","Of uncertain derivation; to grumble: - murmur."]},{"k":"G1112","v":["γογγυσμός","gongysmós","gong-goos-mos'","From G1111; a grumbling: - grudging, murmuring."]},{"k":"G1113","v":["γογγυστής","gongystḗs","gong-goos-tace'","From G1111; a grumbler: - murmurer."]},{"k":"G1114","v":["γόης","góēs","go'-ace","From γοάω goaō (to wail); properly a wizard (as muttering spells), that is, (by implication) an impostor: - seducer."]},{"k":"G1115","v":["Γολγοθᾶ","Golgothâ","gol-goth-ah'","Of Chaldee origin (compare [H1538]); the skull; Golgotha, a knoll near Jerusalem: - Golgotha."]},{"k":"G1116","v":["Γόμοῤῥα","Gómorrha","gom'-or-hrhah","Of Hebrew origin [H6017]; Gomorrha (that is, Amorah), a place near the Dead Sea: - Gomorrha."]},{"k":"G1117","v":["γόμος","gómos","gom'-os","From G1073; a load (as filling), that is, (specifically) a cargo, or (by extension) wares: - burden, merchandise."]},{"k":"G1118","v":["γονεύς","goneús","gon-yooce'","From the base of G1096; a parent: - parent."]},{"k":"G1119","v":["γόνυ","góny","gon-oo'","Of uncertain affinity; the “knee”: - knee (X -l)."]},{"k":"G1120","v":["γονυπετέω","gonypetéō","gon-oo-pet-eh'-o","From a compound of G1119 and the alternate of G4098; to fall on the knee: - bow the knee, kneel down."]},{"k":"G1121","v":["γράμμα","grámma","gram'-mah","From G1125; a writing, that is, a letter, note, epistle, book, etc.; plural learning: - bill, learning, letter, scripture, writing, written."]},{"k":"G1122","v":["γραμματεύς","grammateús","gram-mat-yooce'","From G1121; a writer, that is, (professionally) scribe or secretary: - scribe, town-clerk."]},{"k":"G1123","v":["γραπτός","graptós","grap-tos'","From G1125; inscribed (figuratively): - written."]},{"k":"G1124","v":["γραφή","graphḗ","graf-ay'","From G1125; a document, that is, holy Writ (or its contents or a statement in it): - scripture."]},{"k":"G1125","v":["γράφω","gráphō","graf'-o","A primary verb; to “grave”, especially to write; figuratively to describe: - describe, write (-ing, -ten)."]},{"k":"G1126","v":["γραώδης","graṓdēs","grah-o'-dace","From γραῦς graus (an old woman) and G1491; crone like, that is, silly: - old wives’."]},{"k":"G1127","v":["γρηγορεύω","grēgoreúō","gray-gor-yoo'-o","From G1453; to keep awake, that is, watch (literally or figuratively): - be vigilant, wake, (be) watch (-ful)."]},{"k":"G1128","v":["γυμνάζω","gymnázō","goom-nad'-zo","From G1131; to practise naked (in the games), that is, train (figuratively): - exercise."]},{"k":"G1129","v":["γυμνασία","gymnasía","goom-nas-ee'-ah","From G1128; training, that is, (figuratively) asceticism: - exercise."]},{"k":"G1130","v":["γυμνητεύω","gymnēteúō","goom-nayt-yoo'-o","From a derivative of G1131; to strip, that is, (reflexively) go poorly clad: - be naked."]},{"k":"G1131","v":["γυμνός","gymnós","goom-nos'","Of uncertain affinity; nude (absolutely or relatively, literally or figuratively): - naked."]},{"k":"G1132","v":["γυμνότης","gymnótēs","goom-not'-ace","From G1131; nudity (absolutely or comparatively): - nakedness."]},{"k":"G1133","v":["γυναικάριον","gynaikárion","goo-nahee-kar'-ee-on","A diminutive from G1135; a little (that is, foolish) woman: - silly woman."]},{"k":"G1134","v":["γυναικεῖος","gynaikeîos","goo-nahee-ki'-os","From G1135; feminine: - wife."]},{"k":"G1135","v":["γυνή","gynḗ","goo-nay'","Probably from the base of G1096; a woman; specifically a wife: - wife, woman."]},{"k":"G1136","v":["Γώγ","Gṓg","gogue","Of Hebrew origin [H1463]; Gog, a symbolic name for some future Antichrist: - Gog."]},{"k":"G1137","v":["γωνία","gōnía","go-nee'-ah","Probably akin to G1119; an angle: - corner, quarter."]},{"k":"G1138","v":["Δαβίδ","Dabíd","dab-eed'","Of Hebrew origin [H1732]; Dabid (that is, David), the Israelite king: - David."]},{"k":"G1139","v":["δαιμονίζομαι","daimonízomai","dahee-mon-id'-zom-ahee","Middle voice from G1142; to be exercised by a daemon: - have a (be vexed with, be possessed with) devil (-s)."]},{"k":"G1140","v":["δαιμόνιον","daimónion","dahee-mon'-ee-on","Neuter of a derivative of G1142; a daemonic being; by extension a deity: - devil, god."]},{"k":"G1141","v":["δαιμονιώδης","daimoniṓdēs","dahee-mon-ee-o'-dace","From G1140 and G1142; daemon like: - devilish."]},{"k":"G1142","v":["δαίμων","daímōn","dah'-ee-mown","From δαίω daiō (to distribute fortunes); a demon or super natural spirit (of a bad nature): - devil."]},{"k":"G1143","v":["δάκνω","dáknō","dak'-no","A prolonged form of a primary root; to bite, that is, (figuratively) thwart: - bite."]},{"k":"G1144","v":["δάκρυ","dákry","dak'-roo","Of uncertain affinity; a tear: - tear."]},{"k":"G1145","v":["δακρύω","dakrýō","dak-roo'-o","From G1144; to shed tears: - weep. Compare G2799."]},{"k":"G1146","v":["δακτύλιος","daktýlios","dak-too'-lee-os","From G1147; a finger ring: - ring."]},{"k":"G1147","v":["δάκτυλος","dáktylos","dak'-too-los","Probably from G1176; a finger: - finger."]},{"k":"G1148","v":["Δαλμανουθά","Dalmanouthá","dal-man-oo-thah'","Probably of Chaldee origin; Dalmanutha, a place in Palestine: - Dalmanutha."]},{"k":"G1149","v":["Δαλματία","Dalmatía","dal-mat-ee'-ah","Probably of foreign derivation; Dalmatia, a region of Europe: - Dalmatia."]},{"k":"G1150","v":["δαμάζω","damázō","dam-ad'-zo","A variation of an obsolete primary of the same meaning; to tame: - tame."]},{"k":"G1151","v":["δάμαλις","dámalis","dam'-al-is","Probably from the base of G1150; a heifer (as tame): - heifer."]},{"k":"G1152","v":["Δάμαρις","Dámaris","dam'-ar-is","Probably from the base of G1150; perhaps gentle; Damaris, an Athenian woman: - Damaris."]},{"k":"G1153","v":["Δαμασκηνός","Damaskēnós","dam-as-kay-nos'","From G1154; a Damascene or inhabitant of Damascus: - Damascene."]},{"k":"G1154","v":["Δαμασκός","Damaskós","dam-as-kos'","Of Hebrew origin [H1834]; Damascus, a city of Syria: - Damascus."]},{"k":"G1155","v":["δανείζω","daneízō","dan-ide'-zo","From G1156; to loan on interest; reflexively to borrow: - borrow, lend."]},{"k":"G1156","v":["δάνειον","dáneion","dan'-i-on","From δάνος danos (a gift); probably akin to the base of G1325; a loan: - debt."]},{"k":"G1157","v":["δανειστής","daneistḗs","dan-ice-tace'","From G1155; a lender: - creditor."]},{"k":"G1158","v":["Δανιήλ","Daniḗl","dan-ee-ale'","Of Hebrew origin [H1840]; Daniel, an Israelite: - Daniel."]},{"k":"G1159","v":["δαπανάω","dapanáō","dap-an-ah'-o","From G1160; to expend, that is, (in a good sense) to incur cost, or (in a bad one) to waste: - be at charges, consume, spend."]},{"k":"G1160","v":["δαπάνη","dapánē","dap-an'-ay","From δάπτω daptō (to devour); expense (as consuming): - cost."]},{"k":"G1161","v":["δέ","dé","deh","A primary particle (adversative or continuative); but, and, etc.: - also, and, but, moreover, now [often unexpressed in English]."]},{"k":"G1162","v":["δέησις","déēsis","deh'-ay-sis","From G1189; a petition: - prayer, request, supplication."]},{"k":"G1163","v":["δεῖ","deî","die","Third person singular active present of G1210; also δεόν deon which is neuter active participle of the same; both used impersonally; it is (was, etc.) necessary (as binding): - behoved, be meet, must (needs), (be) need (-ful), ought, should."]},{"k":"G1164","v":["δεῖγμα","deîgma","digh'-mah","From the base of G1166; a specimen (as shown): - example."]},{"k":"G1165","v":["δειγματίζω","deigmatízō","digh-mat-id'-zo","From G1164; to exhibit: - make a shew."]},{"k":"G1166","v":["δεικνύω","deiknýō","dike-noo'-o","A prolonged form of an obsolete primary of the same meaning; to show (literally or figuratively): - shew."]},{"k":"G1167","v":["δειλία","deilía","di-lee'-ah","From G1169; timidity: - fear."]},{"k":"G1168","v":["δειλιάω","deiliáō","di-lee-ah'-o","From G1167; to be timid: - be afraid."]},{"k":"G1169","v":["δειλός","deilós","di-los'","From δέος deos (dread); timid, that is, (by implication) faithless: - fearful."]},{"k":"G1170","v":["δεῖνα","deîna","di'-nah","Probably from the same as G1171 (through the idea of forgetting the name as fearful, that is, strange); so and so (when the person is not specified): - such a man."]},{"k":"G1171","v":["δεινῶς","deinōs","di-noce'","Adverb from a derivative of the same as G1169; terribly, that is, excessively: - grievously, vehemently."]},{"k":"G1172","v":["δειπνέω","deipnéō","dipe-neh'-o","From G1173; to dine, that is, take the principal (or evening) meal: - sup (X -per)."]},{"k":"G1173","v":["δεῖπνον","deîpnon","dipe'-non","From the same as G1160; dinner, that is, the chief meal (usually in the evening): - feast, supper."]},{"k":"G1174","v":["δεισιδαιμονέστερος","deisidaimonésteros","dice-ee-dahee-mon-es'-ter-os","The compound of a derivative of the base of G1169 and G1142; more religious than others: - too superstitious."]},{"k":"G1175","v":["δεισιδαιμονία","deisidaimonía","dice-ee-dahee-mon-ee'-ah","From the same as G1174; religion: - superstition."]},{"k":"G1176","v":["δέκα","déka","dek'-ah","A primary number; ten: - [eight-] een, ten."]},{"k":"G1177","v":["δεκαδύο","dekadýo","dek-ad-oo'-o","From G1176 and G1417; two and ten, that is, twelve: - twelve."]},{"k":"G1178","v":["δεκαπέντε","dekapénte","dek-ap-en'-teh","From G1176 and G4002; ten and five, that is, fifteen: - fifteen."]},{"k":"G1179","v":["Δεκάπολις","Dekápolis","dek-ap'-ol-is","From G1176 and G4172; the ten city region; the Decapolis, a district in Syria: - Decapolis."]},{"k":"G1180","v":["δεκατέσσαρες","dekatéssares","dek-at-es'-sar-es","From G1176 and G5064; ten and four, that is, fourteen: - fourteen."]},{"k":"G1181","v":["δεκάτη","dekátē","dek-at'-ay","Feminine of G1182; a tenth, that is, as a percentage or (technically) tithe: - tenth (part), tithe."]},{"k":"G1182","v":["δέκατος","dékatos","dek'-at-os","Ordinal from G1176; tenth: - tenth."]},{"k":"G1183","v":["δεκατόω","dekatóō","dek-at-o'-o","From G1181; to tithe, that is, to give or take a tenth: - pay (receive) tithes."]},{"k":"G1184","v":["δεκτός","dektós","dek-tos'","From G1209; approved; (figuratively) propitious: - accepted (-table)."]},{"k":"G1185","v":["δελεάζω","deleázō","del-eh-ad'-zo","From the baes of G1388; to entrap, that is, (figuratively) delude: - allure, beguile, entice."]},{"k":"G1186","v":["δένδρον","déndron","den'-dron","Probably from δρύς drus (an oak); a tree: - tree."]},{"k":"G1187","v":["δεξιολάβος","dexiolábos","dex-ee-ol-ab'-os","From G1188 and G2983; a guardsman (as if taking the right) or light armed soldier: - spearman."]},{"k":"G1188","v":["δεξιός","dexiós","dex-ee-os'","From G1209; the right side or (feminine) hand (as that which usually takes): - right (hand, side)."]},{"k":"G1189","v":["δέομαι","déomai","deh'-om-ahee","Middle voice of G1210; to beg (as binding oneself), that is, petition: - beseech, pray (to), make request. Compare G4441."]},{"k":"G1190","v":["Δερβαῖος","Derbaîos","der-bah'-ee-os","From G1191; a Derbaean or inhabitant of Derbe: - of Derbe."]},{"k":"G1191","v":["Δέρβη","Dérbē","der-bay'","Of foreign origin; Derbe, a place in Asia Minor: - Derbe."]},{"k":"G1192","v":["δέρμα","dérma","der'-mah","From G1194; a hide: - skin."]},{"k":"G1193","v":["δερμάτινος","dermátinos","der-mat'-ee-nos","From G1192; made of hide: - leathern, of a skin."]},{"k":"G1194","v":["δέρω","dérō","der'-o","A primary verb; properly to flay, that is, (by implication) to scourge, or (by analogy) to thrash: - beat, smite."]},{"k":"G1195","v":["δεσμεύω","desmeúō","des-myoo'-o","From a (presumed) derivative of G1196; to be a binder (captor), that is, to enchain (a prisoner), to tie on (a load): - bind."]},{"k":"G1196","v":["δεσμέω","desméō","des-meh'-o","From G1199; to tie, that is, shackle: - bind."]},{"k":"G1197","v":["δέσμη","désmē","des-may'","From G1196; a bundle: - bundle."]},{"k":"G1198","v":["δέσμιος","désmios","des'-mee-os","From G1199; a captive (as bound): - in bonds, prisoner."]},{"k":"G1199","v":["δεσμόν","desmón","des-mon'","Neuter and masculine respectively from G1210; a band, that is, ligament (of the body) or shackle (of a prisoner); figuratively an impediment or disability: - band, bond, chain, string."]},{"k":"G1200","v":["δεσμοφύλαξ","desmophýlax","des-mof-oo'-lax","From G1199 and G5441; a jailer (as guarding the prisoners): - jailer, keeper of the prison."]},{"k":"G1201","v":["δεσμωτήριον","desmōtḗrion","des-mo-tay'-ree-on","From a derivative of G1199 (equivalent to G1196); a place of bondage, that is, a dungeon: - prison."]},{"k":"G1202","v":["δεσμώτης","desmṓtēs","des-mo'-tace","From the same as G1201; (passively) a captive: - prisoner."]},{"k":"G1203","v":["δεσπότης","despótēs","des-pot'-ace","Perhaps from G1210 and πόσις posis (a husband); an absolute ruler (“despot”): - Lord, master."]},{"k":"G1204","v":["δεῦρο","deûro","dyoo'-ro","Of uncertain affinity; here; used also as an imperative hither!; and of time, hitherto: - come (hither), hither [-to]."]},{"k":"G1205","v":["δεῦτε","deûte","dyoo'-teh","From G1204 and an imperative of εἶμι eimi (to go); come hither!: - come, X follow."]},{"k":"G1206","v":["δευτεραῖος","deuteraîos","dyoo-ter-ah'-yos","From G1208; secondary, that is, (specifically) on the second day: - next day."]},{"k":"G1207","v":["δευτερόπρωτος","deuteróprōtos","dyoo-ter-op'-ro-tos","From G1208 and G4413; second first, that is, (specifically) a designation of the Sabbath immediately after the Paschal week (being the second after Passover day, and the first of the seven Sabbaths intervening before Pentecost): - second . . . after the first."]},{"k":"G1208","v":["δεύτερος","deúteros","dyoo'-ter-os","As the compound of G1417; (ordinal) second (in time, place or rank; also adverbially): - afterward, again, second (-arily, time)."]},{"k":"G1209","v":["δέχομαι","déchomai","dekh'-om-ahee","Middle voice of a primary verb; to receive (in various applications, literally or figuratively): - accept, receive, take. Compare G2983."]},{"k":"G1210","v":["δέω","déō","deh'-o","A primary verb; to bind (in various applications, literally or figuratively): - bind, be in bonds, knit, tie, wind. See also G1163, G1189."]},{"k":"G1211","v":["δή","dḗ","day","Probably akin to G1161; a particle of emphasis or explicitness; now, then, etc.: - also, and, doubtless, now, therefore."]},{"k":"G1212","v":["δῆλος","dēlos","day'-los","Of uncertain derivation; clear: - + bewray, certain, evident, manifest."]},{"k":"G1213","v":["δηλόω","dēlóō","day-lo'-o","From G1212; to make plain (by words): - declare, shew, signify."]},{"k":"G1214","v":["Δημᾶς","Dēmâs","day-mas'","Probably for G1216; Demas, a Christian: - Demas."]},{"k":"G1215","v":["δημηγορέω","dēmēgoréō","day-may-gor-eh'-o","From a compound of G1218 and G58; to be a people gatherer, that is, to address a public assembly: - make an oration."]},{"k":"G1216","v":["Δημήτριος","Dēmḗtrios","day-may'-tree-os","From Δημήτηρ Dēmētēr (Ceres); Demetrius, the name of an Ephesian and of a Christian: - Demetrius."]},{"k":"G1217","v":["δημιουργός","dēmiourgós","day-me-oor-gos'","From G1218 and G2041; a worker for the people, that is, mechanic (spoken of the Creator): - maker."]},{"k":"G1218","v":["δῆμος","dēmos","day'-mos","From G1210; the public (as bound together socially): - people."]},{"k":"G1219","v":["δημόσιος","dēmósios","day-mos'ee-os","From G1218; public; (feminine singular dative as adverb) in public: - common, openly, publickly."]},{"k":"G1220","v":["δηνάριον","dēnárion","day-nar'-ee-on","Of Latin origin; a denarius (or ten asses): - pence, penny [-worth]."]},{"k":"G1221","v":["δήποτε","dḗpote","day'-pot-eh","From G1211 and G4218; a particle of generalization; indeed, at any time: - (what-) soever."]},{"k":"G1222","v":["δήπου","dḗpou","day'-poo","From G1211 and G4225; a particle of asseveration; indeed doubtless: - verily."]},{"k":"G1223","v":["διά","diá","dee-ah'","A primary preposition denoting the channel of an act; through (in very wide applications, local, causal or occasional). In composition it retains the same general import: - after, always, among, at, to avoid, because of (that), briefly, by, for (cause) . . . fore, from, in, by occasion of, of, by reason of, for sake, that, thereby, therefore, X though, through (-out), to, wherefore, with (-in). In composition it retains the same general import."]},{"k":"G1224","v":["διαβαίνω","diabaínō","dee-ab-ah'-ee-no","From G1223 and the base of G939; to cross: - come over, pass (through)."]},{"k":"G1225","v":["διαβάλλω","diabállō","dee-ab-al'-lo","From G1223 and G906; (figuratively) to traduce: - accuse."]},{"k":"G1226","v":["διαβεβαιόομαι","diabebaióomai","dee-ab-eb-ahee-o'-om-ahee","Middle voice of a compound of G1223 and G950; to confirm thoroughly (by words), that is, asseverate: - affirm constantly."]},{"k":"G1227","v":["διαβλέπω","diablépō","dee-ab-lep'-o","From G1223 and G991; to look through, that is, recover full vision: - see clearly."]},{"k":"G1228","v":["διάβολος","diábolos","dee-ab'-ol-os","From G1225; a traducer; specifically Satan (compare [H7854]): - false accuser, devil, slanderer."]},{"k":"G1229","v":["διαγγέλλω","diangéllō","de-ang-gel'-lo","From G1223 and the base of G32; to herald thoroughly: - declare, preach, signify."]},{"k":"G1230","v":["διαγίνομαι","diagínomai","dee-ag-in'-om-ahee","From G1223 and G1096; to elapse meanwhile: - X after, be past, be spent."]},{"k":"G1231","v":["διαγινώσκω","diaginṓskō","dee-ag-in-o'-sko","From G1223 and G1097; to know thoroughly, that is, ascertain exactly: - (would) enquire, know the uttermost."]},{"k":"G1232","v":["διαγνωρίζω","diagnōrízō","dee-ag-no-rid'-zo","From G1223 and G1107; to tell abroad: - make known."]},{"k":"G1233","v":["διάγνωσις","diágnōsis","dee-ag'-no-sis","From G1231; (magisterial) examination (“diagnosis”): - hearing."]},{"k":"G1234","v":["διαγογγύζω","diagongýzō","dee-ag-ong-good'-zo","From G1223 and G1111; to complain throughout a crowd: - murmur."]},{"k":"G1235","v":["διαγρηγορέω","diagrēgoréō","dee-ag-ray-gor-eh'-o","From G1223 and G1127; to waken thoroughly: - be awake."]},{"k":"G1236","v":["διάγω","diágō","dee-ag'-o","From G1223 and G71; to pass time or life: - lead life, living."]},{"k":"G1237","v":["διαδέχομαι","diadéchomai","dee-ad-ekh'-om-ahee","From G1223 and G1209; to receive in turn, that is, (figuratively) succeed to: - come after."]},{"k":"G1238","v":["διάδημα","diádēma","dee-ad'-ay-mah","From a compound of G1223 and G1210; a “diadem” (as bound about the head): - crown. Compare G4735."]},{"k":"G1239","v":["διαδίδωμι","diadídōmi","dee-ad-id'-o-mee","From G1223 and G1325; to give throughout a crowd, that is, deal out; also to deliver over (as to a successor): - (make) distribute (-ion), divide, give."]},{"k":"G1240","v":["διάδοχος","diádochos","dee-ad'-okh-os","From G1237; a successor in office: - room."]},{"k":"G1241","v":["διαζώννυμι","diazṓnnymi","dee-az-own'-noo-mee","From G1223 and G2224; to gird tightly: - gird."]},{"k":"G1242","v":["διαθήκη","diathḗkē","dee-ath-ay'-kay","From G1303; properly a disposition, that is, (specifically) a contract (especially a devisory will): - covenant, testament."]},{"k":"G1243","v":["διαίρεσις","diaíresis","dee-ah'-ee-res-is","From G1244; a distinction or (concretely) variety: - difference, diversity."]},{"k":"G1244","v":["διαιρέω","diairéō","dee-ahee-reh'-o","From G1223 and G138; to separate, that is, distribute: - divide."]},{"k":"G1245","v":["διακαθαρίζω","diakatharízō","dee-ak-ath-ar-id'-zo","From G1223 and G2511; to cleanse perfectly, that is, (specifically) winnow: - throughly purge."]},{"k":"G1246","v":["διακατελέγχομαι","diakatelénchomai","dee-ak-at-el-eng'-khom-ahee","Middle voice from G1223 and a compound of G2596 and G1651; to prove downright, that is, confute: - convince."]},{"k":"G1247","v":["διακονέω","diakonéō","dee-ak-on-eh'-o","From G1249; to be an attendant, that is, wait upon (menially or as a host, friend or [figuratively] teacher); technically to act as a Christian deacon: - (ad-) minister (unto), serve, use the office of a deacon."]},{"k":"G1248","v":["διακονία","diakonía","dee-ak-on-ee'-ah","From G1249; attendance (as a servant, etc.); figuratively (eleemosynary) aid, (official) service (especially of the Christian teacher, or technically of the diaconate): - (ad-) minister (-ing, -tration, -try), office, relief, service (-ing)."]},{"k":"G1249","v":["διάκονος","diákonos","dee-ak'-on-os","Probably from διάκω diakō (obsolete, to run on errands; compare G1377); an attendant, that is, (generally) a waiter (at table or in other menial duties); specifically a Christian teacher and pastor (technically a deacon or deaconess): - deacon, minister, servant."]},{"k":"G1250","v":["διακόσιοι","diakósioi","dee-ak-os'-ee-oy","From G1364 and G1540; two hundred: - two hundred."]},{"k":"G1251","v":["διακούομαι","diakoúomai","dee-ak-oo'-om-ahee","Middle voice from G1223 and G191; to hear throughout, that is, patiently listen (to a prisoner’s plea): - hear."]},{"k":"G1252","v":["διακρίνω","diakrínō","dee-ak-ree'-no","From G1223 and G2919; to separate thoroughly, that is, (literally and reflexively) to withdraw from, or (by implication) oppose; figuratively to discriminate (by implication decide), or (reflexively) hesitate: - contend, make (to) differ (-ence), discern, doubt, judge, be partial, stagger, waver."]},{"k":"G1253","v":["διάκρισις","diákrisis","dee-ak'-ree-sis","From G1252; judicial estimation: - discern (-ing), disputation."]},{"k":"G1254","v":["διακωλύω","diakōlýō","dee-ak-o-loo'-o","From G1223 and G2967; to hinder altogether, that is, utterly prohibit: - forbid."]},{"k":"G1255","v":["διαλαλέω","dialaléō","dee-al-al-eh'-o","From G1223 and G2980; to talk throughout a company, that is, converse or (generally) publish: - commune, noise abroad."]},{"k":"G1256","v":["διαλέγομαι","dialégomai","dee-al-eg'-om-ahee","Middle voice from G1223 and G3004; to say thoroughly, that is, discuss (in argument or exhortation): - dispute, preach (unto), reason (with), speak."]},{"k":"G1257","v":["διαλείπω","dialeípō","dee-al-i'-po","From G1223 and G3007; to leave off in the middle, that is, intermit: - cease."]},{"k":"G1258","v":["διάλεκτος","diálektos","dee-al'-ek-tos","From G1256; a (mode of) discourse, that is, “dialect”: - language, tongue."]},{"k":"G1259","v":["διαλλάσσω","diallássō","dee-al-las'-so","From G1223 and G236; to change thoroughly, that is, (mentally) to conciliate: - reconcile."]},{"k":"G1260","v":["διαλογίζομαι","dialogízomai","dee-al-og-id'-zom-ahee","From G1223 and G3049; to reckon thoroughly, that is, (generally) to deliberate (by reflection or discussion): - cast in mind, consider, dispute, muse, reason, think."]},{"k":"G1261","v":["διαλογισμός","dialogismós","dee-al-og-is-mos'","From G1260; discussion, that is, (internal) consideration (by implication purpose), or (external) debate: - dispute, doubtful (-ing), imagination, reasoning, thought."]},{"k":"G1262","v":["διαλύω","dialýō","dee-al-oo'-o","From G1223 and G3089; to dissolve utterly: - scatter."]},{"k":"G1263","v":["διαμαρτύρομαι","diamartýromai","dee-am-ar-too'-rom-ahee","From G1223 and G3140; to attest or protest earnestly, or (by implication) hortatively: - charge, testify (unto), witness."]},{"k":"G1264","v":["διαμάχομαι","diamáchomai","dee-am-akh'-om-ahee","From G1223 and G3164; to fight fiercely (in altercation): - strive."]},{"k":"G1265","v":["διαμένω","diaménō","dee-am-en'-o","From G1223 and G3306; to stay constantly (in being or relation): - continue, remain."]},{"k":"G1266","v":["διαμερίζω","diamerízō","dee-am-er-id'-zo","From G1223 and G3307; to partition thoroughly (literally in distribution, figuratively in dissension): - cloven, divide, part."]},{"k":"G1267","v":["διαμερισμός","diamerismós","dee-am-er-is-mos'","From G1266; disunion (of opinion and conduct): - division."]},{"k":"G1268","v":["διανέμω","dianémō","dee-an-em'-o","From G1223 and the base of G3551; to distribute, that is, (of information) to disseminate: - spread."]},{"k":"G1269","v":["διανεύω","dianeúō","dee-an-yoo'-o","From G1223 and G3506; to nod (or express by signs) across an intervening space: - beckon."]},{"k":"G1270","v":["διανόημα","dianóēma","dee-an-o'-ay-mah","From a compound of G1223 and G3539; something thought through, that is, a sentiment: - thought."]},{"k":"G1271","v":["διάνοια","diánoia","dee-an'-oy-ah","From G1223 and G3563; deep thought, properly the faculty (mind or its disposition), by implication its exercise: - imagination, mind, understanding."]},{"k":"G1272","v":["διανοίγω","dianoígō","dee-an-oy'-go","From G1223 and G455; to open thoroughly, literally (as a first born) or figuratively (to expound): - open."]},{"k":"G1273","v":["διανυκτερεύω","dianyktereúō","dee-an-ook-ter-yoo'-o","From G1223 and a derivative of G3571; to sit up the whole night: - continue all night."]},{"k":"G1274","v":["διανύω","dianýō","dee-an-oo'-o","From G1223 and ἀνύω anuō (to effect); to accomplish thoroughly: - finish."]},{"k":"G1275","v":["διαπαντός","diapantós","dee-ap-an-tos'","From G1223 and the genitive of G3956; through all time, that is, (adverbially) constantly: - alway (-s), continually."]},{"k":"G1276","v":["διαπεράω","diaperáō","dee-ap-er-ah'-o","From G1223 and a derivative of the base of G4008; to cross entirely: - go over, pass (over), sail over."]},{"k":"G1277","v":["διαπλέω","diapléō","dee-ap-leh'-o","From G1223 and G4126; to sail through: - sail over."]},{"k":"G1278","v":["διαπονέω","diaponéō","dee-ap-on-eh'-o","From G1223 and a derivative of G4192; to toil through, that is, (passively) be worried: - be grieved."]},{"k":"G1279","v":["διαπορεύομαι","diaporeúomai","dee-ap-or-yoo'-om-ahee","From G1223 and G4198; to travel through: - go through, journey in, pass by."]},{"k":"G1280","v":["διαπορέω","diaporéō","dee-ap-or-eh'-o","From G1223 and G639; to be thoroughly nonplussed: - (be in) doubt, be (much) perplexed."]},{"k":"G1281","v":["διαπραγματεύομαι","diapragmateúomai","dee-ap-rag-mat-yoo'-om-ahee","From G1223 and G4231; to thoroughly occupy oneself, that is, (transitively and by implication) to earn in business: - gain by trading."]},{"k":"G1282","v":["διαπρίω","diapríō","dee-ap-ree'-o","From G1223 and the base of G4249; to saw asunder, that is, (figuratively) to exasperate: - cut (to the heart)."]},{"k":"G1283","v":["διαρπάζω","diarpázō","dee-ar-pad'-zo","From G1223 and G726; to seize asunder, that is, plunder: - spoil."]},{"k":"G1284","v":["διαῤῥήσσω","diarrhḗssō","dee-ar-hrayce'-so","From G1223 and G4486; to tear asunder: - break, rend."]},{"k":"G1285","v":["διασαφέω","diasaphéō","dee-as-af-eh'-o","From G1223 and σαφής saphēs (clear); to clear thoroughly, that is, (figuratively) declare: - tell unto."]},{"k":"G1286","v":["διασείω","diaseíō","dee-as-i'-o","From G1223 and G4579; to shake thoroughly, that is, (figuratively) to intimidate: - do violence to."]},{"k":"G1287","v":["διασκορπίζω","diaskorpízō","dee-as-kor-pid'-zo","From G1223 and G4650; to dissipate, that is, (generally) to rout or separate; specifically to winnow; figuratively to squander: - disperse, scatter (abroad), strew, waste."]},{"k":"G1288","v":["διασπάω","diaspáō","dee-as-pah'-o","From G1223 and G4685; to draw apart, that is, sever or dismember: - pluck asunder, pull in pieces."]},{"k":"G1289","v":["διασπείρω","diaspeírō","dee-as-pi'-ro","From G1223 and G4687; to sow throughout, that is, (figuratively) distribute in foreign lands: - scatter abroad."]},{"k":"G1290","v":["διασπορά","diasporá","dee-as-por-ah'","From G1289; dispersion, that is, (specifically and concretely) the (converted) Israelites resident in Gentile countries: - (which are) scattered (abroad)."]},{"k":"G1291","v":["διαστέλλομαι","diastéllomai","dee-as-tel'-lom-ahee","Middle voice from G1223 and G4724; to set (oneself) apart (figuratively distinguish), that is, (by implication) to enjoin: - charge, that which was (give) commanded (-ment)."]},{"k":"G1292","v":["διάστημα","diástēma","dee-as'-tay-mah","From G1339; an interval: - space."]},{"k":"G1293","v":["διαστολή","diastolḗ","dee-as-tol-ay'","From G1291; a variation: - difference, distinction."]},{"k":"G1294","v":["διαστρέφω","diastréphō","dee-as-tref'-o","From G1223 and G4762; to distort, that is, (figuratively) misinterpret, or (morally) corrupt: - perverse (-rt), turn away."]},{"k":"G1295","v":["διασώζω","diasṓzō","dee-as-odze'-o","From G1223 and G4982; to save thoroughly, that is, (by implication or analogy) to cure, preserve, rescue, etc.: - bring safe, escape (safe), heal, make perfectly whole, save."]},{"k":"G1296","v":["διαταγή","diatagḗ","dee-at-ag-ay'","From G1299; arrangement, that is, institution: - instrumentality."]},{"k":"G1297","v":["διάταγμα","diátagma","dee-at'-ag-mah","From G1299; an arrangement, that is, (authoritative) edict: - commandment."]},{"k":"G1298","v":["διαταράσσω","diatarássō","dee-at-ar-as'-so","From G1223 and G5015; to disturb wholly, that is, agitate (with alarm): - trouble."]},{"k":"G1299","v":["διατάσσω","diatássō","dee-at-as'-so","From G1223 and G5021; to arrange thoroughly, that is, (specifically) institute, prescribe, etc.: - appoint, command, give, (set in) order, ordain."]},{"k":"G1300","v":["διατελέω","diateléō","dee-at-el-eh'-o","From G1223 and G5055; to accomplish thoroughly, that is, (subjectively) to persist: - continue."]},{"k":"G1301","v":["διατηρέω","diatēréō","dee-at-ay-reh'-o","From G1223 and G5083; to watch thoroughly, that is, (positively and transitively) to observe strictly, or (negatively and reflexively) to avoid wholly: - keep."]},{"k":"G1302","v":["διατί","diatí","dee-at-ee'","From G1223 and G5101; through what cause?, that is, why?: - wherefore, why."]},{"k":"G1303","v":["διατίθεμαι","diatíthemai","dee-at-ith'-em-ahee","Middle voice from G1223 and G5087; to put apart, that is, (figuratively) dispose (by assignment, compact or bequest): - appoint, make, testator."]},{"k":"G1304","v":["διατρίβω","diatríbō","dee-at-ree'-bo","From G1223 and the base of G5147; to wear through (time), that is, remain: - abide, be, continue, tarry."]},{"k":"G1305","v":["διατροφή","diatrophḗ","dee-at-rof-ay'","From a compound of G1223 and G5142; nourishment: - food."]},{"k":"G1306","v":["διαυγάζω","diaugázō","dee-ow-gad'-zo","From G1223 and G826; to glimmer through, that is, break (as day): - dawn."]},{"k":"G1307","v":["διαφανής","diaphanḗs","dee-af-an-ace'","From G1223 and G5316; appearing through, that is, “diaphanous”: - transparent."]},{"k":"G1308","v":["διαφέρω","diaphérō","dee-af-er'-o","From G1223 and G5342; to bear through, that is, (literally) transport; usually to bear apart, that is, (objectively) to toss about (figuratively report); subjectively to “differ”, or (by implication) surpass: - be better, carry, differ from, drive up and down, be (more) excellent, make matter, publish, be of more value."]},{"k":"G1309","v":["διαφεύγω","diapheúgō","dee-af-yoo'-go","From G1223 and G5343; to flee through, that is, escape: - escape."]},{"k":"G1310","v":["διαφημίζω","diaphēmízō","dee-af-ay-mid'-zo","From G1223 and a derivative of G5345; to report thoroughly, that is, divulgate: - blaze abroad, commonly report, spread abroad, fame."]},{"k":"G1311","v":["διαφθείρω","diaphtheírō","dee-af-thi'-ro","From G1223 and G5351; to rot thoroughly, that is, (by implication) to ruin (passively decay utterly, figuratively pervert): - corrupt, destroy, perish."]},{"k":"G1312","v":["διαφθορά","diaphthorá","dee-af-thor-ah'","From G1311; decay: - corruption."]},{"k":"G1313","v":["διάφορος","diáphoros","dee-af'-or-os","From G1308; varying; also surpassing: - differing, divers, more excellent."]},{"k":"G1314","v":["διαφυλάσσω","diaphylássō","dee-af-oo-las'-so","From G1223 and G5442; to guard thoroughly, that is, protect: - keep."]},{"k":"G1315","v":["διαχειρίζομαι","diacheirízomai","dee-akh-i-rid'-zom-ahee","From G1223 and a derivative of G5495; to handle thoroughly, that is, lay violent hands upon: - kill, slay."]},{"k":"G1316","v":["διαχωρίζομαι","diachōrízomai","dee-akh-o-rid'-zom-ahee","From G1223 and the middle voice of G5563; to remove (oneself) wholly, that is, retire: - depart."]},{"k":"G1317","v":["διδακτικός","didaktikós","did-ak-tik-os'","From G1318; instructive (“didactic”): - apt to teach."]},{"k":"G1318","v":["διδακτός","didaktós","did-ak-tos'","From G1321; (subjectively) instructed or (objectively) communicated by teaching: - taught, which . . . teacheth."]},{"k":"G1319","v":["διδασκαλία","didaskalía","did-as-kal-ee'-ah","From G1320; instruction (the function or the information): - doctrine, learning, teaching."]},{"k":"G1320","v":["διδάσκαλος","didáskalos","did-as'-kal-os","From G1321; an instructor (generally or specifically): - doctor, master, teacher."]},{"k":"G1321","v":["διδάσκω","didáskō","did-as'-ko","A prolonged (causative) form of a primary verb δάω daō (to learn); to teach (in the same broad application): - teach."]},{"k":"G1322","v":["διδαχή","didachḗ","did-akh-ay'","From G1321; instruction (the act or the matter): - doctrine, hath been taught."]},{"k":"G1323","v":["δίδραχμον","dídrachmon","did'-rakh-mon","From G1364 and G1406; a double drachma (didrachm): - tribute."]},{"k":"G1324","v":["Δίδυμος","Dídymos","did'-oo-mos","Prolonged from G1364; double, that is, twin; Didymus, a Christian: - Didymus."]},{"k":"G1325","v":["δίδωμι","dídōmi","did'-o-mee","A prolonged form of a primary verb (which is used as an alternate in most of the tenses); to give (used in a very wide application, properly or by implication, literally or figuratively; greatly modified by the connection): - adventure, bestow, bring forth, commit, deliver (up), give, grant, hinder, make, minister, number, offer, have power, put, receive, set, shew, smite (+ with the hand), strike (+ with the palm of the hand), suffer, take, utter, yield."]},{"k":"G1326","v":["διεγείρω","diegeírō","dee-eg-i'-ro","From G1223 and G1453; to wake fully, that is, arouse (literally or figuratively): - arise, awake, raise, stir up."]},{"k":"G1327","v":["διέξοδος","diéxodos","dee-ex'-od-os","From G1223 and G1841; an outlet through, that is, probably an open square (from which roads diverge): - highway."]},{"k":"G1328","v":["διερμηνευτής","diermēneutḗs","dee-er-main-yoo-tace'","From G1329; an explainer: - interpreter."]},{"k":"G1329","v":["διερμηνεύω","diermēneúō","dee-er-main-yoo'-o","From G1223 and G2059; to explain thoroughly; by implication to translate: - expound, interpret (-ation)."]},{"k":"G1330","v":["διέρχομαι","diérchomai","dee-er'-khom-ahee","From G1223 and G2064; to traverse (literally): - come, depart, go (about, abroad, every where, over, through, throughout), pass (by, over, through, throughout), pierce through, travel, walk through."]},{"k":"G1331","v":["διερωτάω","dierōtáō","dee-er-o-tah'-o","From G1223 and G2065; to question throughout, that is, ascertain by interrogation: - make enquiry for."]},{"k":"G1332","v":["διετής","dietḗs","dee-et-ace'","From G1364 and G2094; of two years (in age): - two years old."]},{"k":"G1333","v":["διετία","dietía","dee-et-ee'-a","From G1332; a space of two years (biennium): - two years."]},{"k":"G1334","v":["διηγέομαι","diēgéomai","dee-ayg-eh'-om-ahee","From G1223 and G2233; to relate fully: - declare, shew, tell."]},{"k":"G1335","v":["διήγεσις","diḗgesis","dee-ayg'-es-is","From G1334; a recital: - declaration."]},{"k":"G1336","v":["διηνεκής","diēnekḗs","dee-ay-nek-es'","Neuter of a compound of G1223 and a derivative of an alternate of G5342; carried through, that is, (adverb with G1519 and G3588 prefixed) perpetually: - +continually, for ever."]},{"k":"G1337","v":["διθάλασσος","dithálassos","dee-thal'-as-sos","From G1364 and G2281; having two seas, that is, a sound with a double outlet: - where two seas met."]},{"k":"G1338","v":["διϊκνέομαι","diïknéomai","dee-ik-neh'-om-ahee","From G1223 and the base of G2425; to reach through, that is, penetrate: - pierce."]},{"k":"G1339","v":["διΐστημι","diḯstēmi","dee-is'-tay-mee","From G1223 and G2476; to stand apart, that is, (reflexively) to remove, intervene: - go further, be parted, after the space of."]},{"k":"G1340","v":["διϊσχυρίζομαι","diïschyrízomai","dee-is-khoo-rid'-zom-ahee","From G1223 and a derivative of G2478; to stout it through, that is, asseverate: - confidently (constantly) affirm."]},{"k":"G1341","v":["δικαιοκρισία","dikaiokrisía","dik-ah-yok-ris-ee'-ah","From G1342 and G2920; a just sentence: - righteous judgment."]},{"k":"G1342","v":["δίκαιος","díkaios","dik'-ah-yos","From G1349; equitable (in character or act); by implication innocent, holy (absolutely or relatively): - just, meet, right (-eous)."]},{"k":"G1343","v":["δικαιοσύνη","dikaiosýnē","dik-ah-yos-oo'-nay","From G1342; equity (of character or act); specifically (Christian) justification: - righteousness."]},{"k":"G1344","v":["δικαιόω","dikaióō","dik-ah-yo'-o","From G1342; to render (that is, show or regard as) just or innocent: - free, justify (-ier), be righteous."]},{"k":"G1345","v":["δικαίωμα","dikaíōma","dik-ah'-yo-mah","From G1344; an equitable deed; by implication a statute or decision: - judgment, justification, ordinance, righteousness."]},{"k":"G1346","v":["δικαίως","dikaíōs","dik-ah'-yoce","Adverb from G1342; equitably: - justify, (to) righteously (-ness)."]},{"k":"G1347","v":["δικαίωσις","dikaíōsis","dik-ah'-yo-sis","From G1344; acquittal (for Christ’s sake): - justification."]},{"k":"G1348","v":["δικαστής","dikastḗs","dik-as-tace'","From a derivative of G1349; a judger: - judge."]},{"k":"G1349","v":["δίκη","díkē","dee'-kay","Probably from G1166; right (as self evident), that is, justice (the principle, a decision, or its execution): - judgment, punish, vengeance."]},{"k":"G1350","v":["δίκτυον","díktyon","dik'-too-on","Probably from a primary verb δίκω dikō (to cast); a seine (for fishing): - net."]},{"k":"G1351","v":["δίλογος","dílogos","dil'-og-os","From G1364 and G3056; equivocal, that is, telling a different story: - double-tongued."]},{"k":"G1352","v":["διό","dió","dee-o'","From G1223 and G3739; through which thing, that is, consequently: - for which cause, therefore, wherefore."]},{"k":"G1353","v":["διοδεύω","diodeúō","dee-od-yoo'-o","From G1223 and G3593; to travel through: - go throughout, pass through."]},{"k":"G1354","v":["Διονύσιος","Dionýsios","dee-on-oo'-see-os","From Διόνυσος Dionusos (Bacchus); reveller; Dionysius, an Athenian: - Dionysius."]},{"k":"G1355","v":["διόπερ","dióper","dee-op'-er","From G1352 and G4007; on which very account: - wherefore."]},{"k":"G1356","v":["διοπετής","diopetḗs","dee-op-et'-ace","From the alternate of G2203 and the alternate of G4098; sky fallen (that is, an aerolite): - which fell down from Jupiter."]},{"k":"G1357","v":["διόρθωσις","diórthōsis","dee-or'-tho-sis","From a compound of G1223 and a derivative of G3717, meaning to straighten thoroughly; rectification, that is, (specifically) the Messianic restoration: - reformation."]},{"k":"G1358","v":["διορύσσω","diorýssō","dee-or-oos'-so","From G1223 and G3736; to penetrate burglariously: - break through (up)."]},{"k":"G1359","v":["Διόσκουροι","Dióskouroi","dee-os'-koo-roy","From the alternate of G2203 and a form of the base of G2877; sons of Jupiter, that is, the twins Dioscuri: - Castor and Pollux."]},{"k":"G1360","v":["διότι","dióti","dee-ot'-ee","From G1223 and G3754; on the very account that, or inasmuch as: - because (that), for, therefore."]},{"k":"G1361","v":["Διοτρεφής","Diotrephḗs","dee-ot-ref-ace'","From the alternate of G2203 and G5142; Jove nourished; Diotrephes, an opponent of Christianity: - Diotrephes."]},{"k":"G1362","v":["διπλοῦς","diploûs","dip-looce'","From G1364 and (probably) the base of G4119; two fold: - double, two-fold more."]},{"k":"G1363","v":["διπλόω","diplóō","dip-lo'-o","From G1362; to render two fold: - double."]},{"k":"G1364","v":["δίς","dís","dece","Adverb from G1417; twice: - again, twice."]},{"k":"G1365","v":["διστάζω","distázō","dis-tad'-zo","From G1364 properly to duplicate, that is, (mentally) to waver (in opinion): - doubt."]},{"k":"G1366","v":["δίστομος","dístomos","dis'-tom-os","From G1364 and G4750; double edged: - with two edges, two-edged."]},{"k":"G1367","v":["δισχίλιοι","dischílioi","dis-khil'-ee-oy","From G1364 and G5507; two thousand: - two thousand."]},{"k":"G1368","v":["διϋλίζω","diÿlízō","dee-oo-lid'-zo","From G1223 and ὑλίζω hulizō (to filter); to strain out. (“strain at” is probably by misprint.): - strain at [prob. by misprint]."]},{"k":"G1369","v":["διχάζω","dicházō","dee-khad'-zo","From a derivative of G1364; to make apart, that is, sunder (figuratively alienate): - set at variance."]},{"k":"G1370","v":["διχοστασία","dichostasía","dee-khos-tas-ee'-ah","From a derivative of G1364 and G4714; disunion, that is, (figuratively) dissension: - division, sedition."]},{"k":"G1371","v":["διχοτομέω","dichotoméō","dee-khot-om-eh'-o","From a compound of a derivative of G1364 and a derivative of τέμνω temnō (to cut); to bisect, that is, (by extension) to flog severely: - cut asunder (in sunder)."]},{"k":"G1372","v":["διψάω","dipsáō","dip-sah'-o","From a variation of G1373; to thirst for (literally or figuratively): - (be, be a-) thirst (-y)."]},{"k":"G1373","v":["δίψος","dípsos","dip'-sos","Of uncertain affinity; thirst: - thirst."]},{"k":"G1374","v":["δίψυχος","dípsychos","dip'-soo-khos","From G1364 and G5590; two spirited, that is, vacillating (in opinion or purpose): - double minded."]},{"k":"G1375","v":["διωγμός","diōgmós","dee-ogue-mos'","From G1377; persecution: - persecution."]},{"k":"G1376","v":["διώκτης","diṓktēs","dee-oke'-tace","From G1377; a persecutor: - persecutor."]},{"k":"G1377","v":["διώκω","diṓkō","dee-o'-ko","A prolonged (and causative) form of a primary verb δίω diō (to flee; compare the base of G1169 and G1249); to pursue (literally or figuratively); by implication to persecute: - ensue, follow (after), given to, (suffer) persecute (-ion), press toward."]},{"k":"G1378","v":["δόγμα","dógma","dog'-mah","From the base of G1380; a law (civil, ceremonial or ecclesiastical): - decree, ordinance."]},{"k":"G1379","v":["δογματίζω","dogmatízō","dog-mat-id'-zo","From G1378; to prescribe by statute, that is, (reflexively) to submit to ceremonial rule: - be subject to ordinances."]},{"k":"G1380","v":["δοκέω","dokéō","dok-eh'-o","A prolonged form of a primary verb δόκω dokō (used only as an alternate in certain tenses; compare the base of G1166); of the same meaning; to think; by implication to seem (truthfully or uncertainly): - be accounted, (of own) please (-ure), be of reputation, seem (good), suppose, think, trow."]},{"k":"G1381","v":["δοκιμάζω","dokimázō","dok-im-ad'-zo","From G1384; to test (literally or figuratively); by implication to approve: - allow, discern, examine, X like, (ap-) prove, try."]},{"k":"G1382","v":["δοκιμή","dokimḗ","dok-ee-may'","From the same as G1384; test (abstractly or concretely); by implication trustiness: - experience (-riment), proof, trial."]},{"k":"G1383","v":["δοκίμιον","dokímion","dok-im'-ee-on","Neuter of a presumed derivative of G1382; a testing; by implication trustworthiness: - trial, trying."]},{"k":"G1384","v":["δόκιμος","dókimos","dok'-ee-mos","From G1380; properly acceptable (current after assayal), that is, approved: - approved, tried."]},{"k":"G1385","v":["δοκός","dokós","dok-os'","From G1209 (through the idea of holding up); a stick of timber: - beam."]},{"k":"G1386","v":["δόλιος","dólios","dol'-ee-os","From G1388; guileful: - deceitful."]},{"k":"G1387","v":["δολιόω","dolióō","dol-ee-o'-o","From G1386; to be guileful: - use deceit."]},{"k":"G1388","v":["δόλος","dólos","dol'-os","From δέλλω dellō (an obsolete primary probably meaning to decoy; compare G1185); a trick (bait), that is, (figuratively) wile: - craft, deceit, guile, subtilty."]},{"k":"G1389","v":["δολόω","dolóō","dol-o'-o","From G1388; to ensnare, that is, (figuratively) adulterate: - handle deceitfully."]},{"k":"G1390","v":["δόμα","dóma","dom'-ah","From the base of G1325; a present: - gift."]},{"k":"G1391","v":["δόξα","dóxa","dox'-ah","From the base of G1380; glory (as very apparent), in a wide application (literally or figuratively, objectively or subjectively): - dignity, glory (-ious), honour, praise, worship."]},{"k":"G1392","v":["δοξάζω","doxázō","dox-ad'-zo","From G1391; to render (or esteem) glorious (in a wide application): - (make) glorify (-ious), full of (have) glory, honour, magnify."]},{"k":"G1393","v":["Δορκάς","Dorkás","dor-kas'","gazelle; Dorcas, a Christian woman: - Dorcas."]},{"k":"G1394","v":["δόσις","dósis","dos'-is","From the base of G1325; a giving; by implication (concretely) a gift: - gift, giving."]},{"k":"G1395","v":["δότης","dótēs","dot'-ace","From the base of G1325; a giver: - giver."]},{"k":"G1396","v":["δουλαγωγέω","doulagōgéō","doo-lag-ogue-eh'-o","From a presumed compound of G1401 and G71; to be a slave driver, that is, to enslave (figuratively subdue): - bring into subjection."]},{"k":"G1397","v":["δουλεία","douleía","doo-li'-ah","From G1398; slavery (ceremonially or figuratively): - bondage."]},{"k":"G1398","v":["δουλεύω","douleúō","dool-yoo'-o","From G1401; to be a slave to (literally or figuratively, involuntarily or voluntarily): - be in bondage, (do) serve (-ice)."]},{"k":"G1399","v":["δούλη","doúlē","doo'-lay","Feminine of G1401; a female slave (involuntarily or voluntarily): - handmaid (-en)."]},{"k":"G1400","v":["δοῦλον","doûlon","doo'-lon","Neuter of G1401; subservient: - servant."]},{"k":"G1401","v":["δοῦλος","doûlos","doo'-los","From G1210; a slave (literally or figuratively, involuntarily or voluntarily; frequently therefore in a qualified sense of subjection or subserviency): - bond (-man), servant."]},{"k":"G1402","v":["δουλόω","doulóō","doo-lo'-o","From G1401; to enslave (literally or figuratively): - bring into (be under) bondage, X given, become (make) servant."]},{"k":"G1403","v":["δοχή","dochḗ","dokh-ay'","From G1209; a reception, that is, convivial entertainment: - feast."]},{"k":"G1404","v":["δράκων","drákōn","drak'-own","Probably from an alternate form of δέρκομαι derkomai (to look); a fabulous kind of serpent (perhaps as supposed to fascinate): - dragon."]},{"k":"G1405","v":["δράσσομαι","drássomai","dras'-som-ahee","Perhaps akin to the base of G1404 (through the idea of capturing); to grasp, that is, (figuratively) entrap: - take."]},{"k":"G1406","v":["δραχμή","drachmḗ","drakh-may'","From G1405; a drachma or (silver) coin (as handled): - piece (of silver)."]},{"k":"G1407","v":["δρέπανον","drépanon","drep'-an-on","From δρέπω drepō (to pluck); a gathering hook (especially for harvesting): - sickle."]},{"k":"G1408","v":["δρόμος","drómos","drom'-os","From the alternate of G5143; a race, that is, (figuratively) career: - course."]},{"k":"G1409","v":["Δρούσιλλα","Droúsilla","droo'-sil-lah","A feminine diminutive of Drusus (a Roman name); Drusilla, a member of the Herodian family: - Drusilla."]},{"k":"G1410","v":["δύναμαι","dýnamai","doo'-nam-ahee","Of uncertain affinity; to be able or possible: - be able, can (do, + -not), could, may, might, be possible, be of power."]},{"k":"G1411","v":["δύναμις","dýnamis","doo'-nam-is","From G1410; force (literally or figuratively); specifically miraculous power (usually by implication a miracle itself): - ability, abundance, meaning, might (-ily, -y, -y deed), (worker of) miracle (-s), power, strength, violence, mighty (wonderful) work."]},{"k":"G1412","v":["δυναμόω","dynamóō","doo-nam-o'-o","From G1411; to enable: - strengthen."]},{"k":"G1413","v":["δυνάστης","dynástēs","doo-nas'-tace","From G1410; a ruler or officer: - of great authority, mighty, potentate."]},{"k":"G1414","v":["δυνατέω","dynatéō","doo-nat-eh'-o","From G1415; to be efficient (figuratively): - be mighty."]},{"k":"G1415","v":["δυνατός","dynatós","doo-nat-os'","From G1410; powerful or capable (literally or figuratively); neuter possible: - able, could, (that is) mighty (man), possible, power, strong."]},{"k":"G1416","v":["δύνω","dýnō","doo'-no","Prolonged forms of an obsolete primary word δύω duō (to sink); to go “down”: - set."]},{"k":"G1417","v":["δύο","dýo","doo'-o","A primary numeral; “two”: - both, twain, two."]},{"k":"G1418","v":["δυσ-","dys-","doos","A primary inseparable particle of uncertain derivation; used only in composition as a prefix; hard, that is, with difficulty: - + hard, + grievous, etc."]},{"k":"G1419","v":["δυσβάστακτος","dysbástaktos","doos-bas'-tak-tos","From G1418 and a derivative of G941; oppressive: - grievous to be borne."]},{"k":"G1420","v":["δυσεντερία","dysentería","doos-en-ter-ee'-ah","From G1418 and a compound of G1787 (meaning a bowel); a “dysentery”: - bloody flux."]},{"k":"G1421","v":["δυσερμήνευτος","dysermḗneutos","doos-er-mane'-yoo-tos","From G1418 and a presumed derivative of G2059; difficult of explanation: - hard to be uttered."]},{"k":"G1422","v":["δύσκολος","dýskolos","doo'-kol-os","From G1418 and κόλον kolon (food); properly fastidious about eating (peevish), that is, (generally) impracticable: - hard."]},{"k":"G1423","v":["δυσκόλως","dyskólōs","doos-kol'-oce","Adverb from G1422; impracticably: - hardly."]},{"k":"G1424","v":["δυσμή","dysmḗ","doos-may'","From G1416; the sun set, that is, (by implication) the western region: - west."]},{"k":"G1425","v":["δυσνόητος","dysnóētos","doos-no'-ay-tos","From G1418 and a derivation of G3539; difficult of perception: - hard to be understood."]},{"k":"G1426","v":["δυσφημία","dysphēmía","doos-fay-mee'-ah","From a compound of G1418 and G5345; defamation: - evil report."]},{"k":"G1427","v":["δώδεκα","dṓdeka","do'-dek-ah","From G1417 and G1176; two and ten, that is, a dozen: - twelve."]},{"k":"G1428","v":["δωδέκατος","dōdékatos","do-dek'-at-os","From G1427; twelfth: - twelfth."]},{"k":"G1429","v":["δωδεκάφυλον","dōdekáphylon","do-dek-af'-oo-lon","From G1427 and G5443; the commonwealth of Israel: - twelve tribes."]},{"k":"G1430","v":["δῶμα","dōma","do'-mah","From δέμο demō (to build); properly an edifice, that is, (specifically) a roof: - housetop."]},{"k":"G1431","v":["δωρεά","dōreá","do-reh-ah'","From G1435; a gratuity: - gift."]},{"k":"G1432","v":["δωρεάν","dōreán","do-reh-an'","Accusative case of G1431 as adverb; gratuitously (literally or figuratively): - without a cause, freely, for naught, in vain."]},{"k":"G1433","v":["δωρέομαι","dōréomai","do-reh'-om-ahee","Middle voice from G1435; to bestow gratuitously: - give."]},{"k":"G1434","v":["δώρημα","dṓrēma","do'-ray-mah","From G1433; a bestowment: - gift."]},{"k":"G1435","v":["δῶρον","dōron","do'-ron","A present; specifically a sacrifice: - gift, offering."]},{"k":"G1436","v":["ἔα","éa","eh'-ah","Apparent imperative of G1439; properly let it be, that is, (as interjection) aha !: - let alone."]},{"k":"G1437","v":["ἐάν","eán","eh-an'","From G1487 and G302; a conditional particle; in case that, provided, etc.; often used in connection with other particles to denote indefiniteness or uncertainty: - before, but, except, (and) if, (if) so, (what-, whither-) soever, though, when (-soever), whether (or), to whom, [who-] so (-ever). See G3361."]},{"k":"G1438","v":["ἑαυτοῦ","heautoû","heh-ow-too'","(Including all the other cases); from a reflexive pronoun otherwise obsolete and the genitive (dative or accusative) of G846; him (her, it, them, also [in conjunction with the personal pronoun of the other persons] my, thy, our, your) -self (-selves), etc.: - alone, her (own, -self), (he) himself, his (own), itself, one (to) another, our (thine) own (-selves), + that she had, their (own, own selves), (of) them (-selves), they, thyself, you, your (own, own conceits, own selves, -selves)."]},{"k":"G1439","v":["ἐάω","eáō","eh-ah'-o","Of uncertain affinity; to let be, that is, permit or leave alone: - commit, leave, let (alone), suffer. See also G1436."]},{"k":"G1440","v":["ἑβδομήκοντα","hebdomḗkonta","heb-dom-ay'-kon-tah","From G1442 and a modified form of G1176, seventy: - seventy, three score and ten."]},{"k":"G1441","v":["ἑβδομηκοντάκις","hebdomēkontákis","heb-dom-ay-kon-tak-is","Multiple adverb from G1440; seventy times: - seventy times."]},{"k":"G1442","v":["ἕβδομος","hébdomos","heb'-dom-os","Ordinal from G2033; seventh: - seventh."]},{"k":"G1443","v":["Ἐβέρ","Ebér","eb-er'","Of Hebrew origin [H5677]; Eber, a patriarch: - Eber."]},{"k":"G1444","v":["Ἑβραϊκός","Hebraïkós","heb-rah-ee-kos'","From G1443; Hebraic or the Jewish language: - Hebrew."]},{"k":"G1445","v":["Ἑβραῖος","Hebraîos","heb-rah'-yos","From G1443; a Hebraean (that is, Hebrew) or Jew: - Hebrew."]},{"k":"G1446","v":["Ἑβραΐς","Hebraḯs","heb-rah-is'","From G1443; the Hebraistic (that is, Hebrew) or Jewish (Chaldee) language: - Hebrew."]},{"k":"G1447","v":["Ἑβραϊστί","Hebraïstí","heb-rah-is-tee'","Adverb from G1446; Hebraistically or in the Jewish (Chaldee) language: - in (the) Hebrew (tongue)."]},{"k":"G1448","v":["ἐγγίζω","engízō","eng-id'-zo","From G1451; to make near, that is, (reflexively) approach: - approach, be at hand, come (draw) near, be (come, draw) nigh."]},{"k":"G1449","v":["ἐγγράφω","engráphō","eng-graf'-o","From G1722 and G1125; to “engrave”, that is, inscribe: - write (in)."]},{"k":"G1450","v":["ἔγγυος","éngyos","eng'-goo-os","From G1722 and γυῖον guion (a limb); pledged (as if articulated by a member), that is, a bondsman: - surety."]},{"k":"G1451","v":["ἐγγύς","engýs","eng-goos'","From a primary verb ἄγχω agchō (to squeeze or throttle; akin to the base of G43); near (literally or figuratively, of place or time): - from, at hand, near, nigh (at hand, unto), ready."]},{"k":"G1452","v":["ἐγγύτερον","engýteron","eng-goo'-ter-on","Neuter of the compound of G1451; nearer: - nearer."]},{"k":"G1453","v":["ἐγείρω","egeírō","eg-i'-ro","Probably akin to the base of G58 (through the idea of collecting one’s faculties); to waken (transitively or intransitively), that is, rouse (literally from sleep, from sitting or lying, from disease, from death; or figuratively from obscurity, inactivity, ruins, nonexistence): - awake, lift (up), raise (again, up), rear up, (a-) rise (again, up), stand, take up."]},{"k":"G1454","v":["ἔγερσις","égersis","eg'-er-sis","From G1453; a resurgence (from death): - resurrection."]},{"k":"G1455","v":["ἐγκάθετος","enkáthetos","eng-kath'-et-os","From G1722 and a derivative of G2524; subinduced, that is, surreptitiously suborned as a lier in wait: - spy."]},{"k":"G1456","v":["ἐγκαίνια","enkaínia","eng-kah'-ee-nee-ah","Neuter plural of a presumed compound from G1722 and G2537; innovatives, that is, (specifically) renewal (of religious services after the Antiochian interruption): - dedication."]},{"k":"G1457","v":["ἐγκαινίζω","enkainízō","eng-kahee-nid'-zo","From G1456; to renew, that is, inaugurate: - consecrate, dedicate."]},{"k":"G1458","v":["ἐγκαλέω","enkaléō","eng-kal-eh'-o","From G1722 and G2564; to call in (as a debt or demand), that is, bring to account (charge, criminate, etc.): - accuse, call in question, implead, lay to the charge."]},{"k":"G1459","v":["ἐγκαταλείπω","enkataleípō","eng-kat-al-i'-po","From G1722 and G2641; to leave behind in some place, that is, (in a good sense) let remain over, or (in a bad one) to desert: - forsake, leave."]},{"k":"G1460","v":["ἐγκατοικέω","enkatoikéō","eng-kat-oy-keh'-o","From G1722 and G2730; to settle down in a place, that is, reside: - dwell among."]},{"k":"G1461","v":["ἐγκεντρίζω","enkentrízō","eng-ken-trid'-zo","From G1722 and a derivative of G2759; to prick in, that is, ingraft: - graff in (-to)."]},{"k":"G1462","v":["ἔγκλημα","énklēma","eng'-klay-mah","From G1458; an accusation, that is, offence alleged: - crime laid against, laid to charge."]},{"k":"G1463","v":["ἐγκομβόομαι","enkombóomai","eng-kom-bo'-om-ahee","Middle voice from G1722 κομβόω komboō (to gird); to engirdle oneself (for labor), that is, figuratively (the apron being a badge of servitude) to wear (in token of mutual deference): - be clothed with."]},{"k":"G1464","v":["ἐγκοπή","enkopḗ","eng-kop-ay'","From G1465; a hindrance: - X hinder."]},{"k":"G1465","v":["ἐγκόπτω","enkóptō","eng-kop'-to","From G1722 and G2875; to cut into, that is, (figuratively) impede, detain: - hinder, be tedious unto."]},{"k":"G1466","v":["ἐγκράτεια","enkráteia","eng-krat'-i-ah","From G1468; self control (especially continence): - temperance."]},{"k":"G1467","v":["ἐγκρατεύομαι","enkrateúomai","eng-krat-yoo'-om-ahee","Middle voice from G1468; to exercise self restraint (in diet and chastity): - can([-not]) contain, be temperate."]},{"k":"G1468","v":["ἐγκρατής","enkratḗs","eng-krat-ace'","From G1722 and G2904; strong in a thing (masterful), that is, (figuratively and reflexively) self controlled (in appetite, etc.): - temperate."]},{"k":"G1469","v":["ἐγκρίνω","enkrínō","eng-kree'-no","From G1722 and G2919; to judge in, that is, count among: - make of the number."]},{"k":"G1470","v":["ἐγκρύπτω","enkrýptō","eng-kroop'-to","From G1722 and G2928; to conceal in, that is, incorporate with: - hid in."]},{"k":"G1471","v":["ἔγκυος","énkyos","eng'-koo-os","From G1722 and the base of G2949; swelling inside, that is, pregnant: - great with child."]},{"k":"G1472","v":["ἐγχρίω","enchríō","eng-khree'-o","From G1722 and G5548; to rub in (oil), that is, besmear: - anoint."]},{"k":"G1473","v":["ἐγώ","egṓ","eg-o'","A primary pronoun of the first person, “I” (only expressed when emphatic): - I, me. For the other cases and the plural see G1691, G1698, G1700, G2248, G2249, G2254, G2257, etc."]},{"k":"G1474","v":["ἐδαφίζω","edaphízō","ed-af-id'-zo","From G1475; to raze: - lay even with the ground."]},{"k":"G1475","v":["ἔδαφος","édaphos","ed'-af-os","From the base of G1476; a basis (bottom), that is, the soil: - ground."]},{"k":"G1476","v":["ἑδραῖος","hedraîos","hed-rah'-yos","From a derivative of ἕζομαι hezomai (to sit); sedentary, that is, (by implication) immovable: - settled, stedfast."]},{"k":"G1477","v":["ἑδραίωμα","hedraíōma","hed-rah'-yo-mah","From a derivative of G1476; a support, that is, (figuratively) basis: - ground."]},{"k":"G1478","v":["Ἐζεκίας","Ezekías","ed-zek-ee'-as","Of Hebrew origin [H2396]; Ezekias (that is, Hezekiah), an Israelite: - Ezekias."]},{"k":"G1479","v":["ἐθελοθρησκεία","ethelothrēskeía","eth-el-oth-race-ki'-ah","From G2309 and G2356; voluntary (arbitrary and unwarranted) piety, that is, sanctimony: - will worship."]},{"k":"G1480","v":["ἐθίζω","ethízō","eth-id'-zo","From G1485; to accustom, that is, (neuter passive participle) customary: - custom."]},{"k":"G1481","v":["ἐθνάρχης","ethnárchēs","eth-nar'-khace","From G1484 and G746; the governor [not king] of a district: - ethnarch."]},{"k":"G1482","v":["ἐθνικός","ethnikós","eth-nee-kos'","From G1484; national (“ethnic”), that is, (specifically) a Gentile: - heathen (man)."]},{"k":"G1483","v":["ἐθνικῶς","ethnikōs","eth-nee-koce'","Adverb from G1482; as a Gentile: - after the manner of Gentiles."]},{"k":"G1484","v":["ἔθνος","éthnos","eth'-nos","Probably from G1486; a race (as of the same habit), that is, a tribe; specifically a foreign (non-Jewish) one (usually by implication pagan): - Gentile, heathen, nation, people."]},{"k":"G1485","v":["ἔθος","éthos","eth'-os","From G1486; a usage (prescribed by habit or law): - custom, manner, be wont."]},{"k":"G1486","v":["ἔθω","éthō","eth'-o","A primary verb; to be used (by habit or conventionality); neuter perfect participle usage: - be custom (manner, wont)."]},{"k":"G1487","v":["εἰ","ei","i","A primary particle of conditionality; if, whether, that, etc.: - forasmuch as, if, that, ([al-]) though, whether. Often used in connection or composition with other particles, especially as in G1489, G1490, G1499, G1508, G1509, G1512, G1513, G1536, and G1537. See also G1437."]},{"k":"G1488","v":["εἶ","eî","i","Second parson singular present of G1510; thou art: - art, be."]},{"k":"G1489","v":["εἴγε","eíge","i'-gheh","From G1487 and G1065; if indeed, seeing that, unless, (with negative) otherwise: - if (so be that, yet)."]},{"k":"G1490","v":["εἰ δὲ μή(γε)","ei dè mḗ(ge)","i deh may'-(gheh)","From G1487, G1161 and G3361 (sometimes with G1065 added); but if not: - (or) else, if (not, otherwise), otherwise."]},{"k":"G1491","v":["εἶδος","eîdos","i'-dos","From G1492; a view, that is, form (literally or figuratively): - appearance, fashion, shape, sight."]},{"k":"G1492","v":["εἴδω","eídō","i'-do","A primary verb; used only in certain past tenses, the others being borrowed from the equivalent, G3700 and G3708; properly to see (literally or figuratively); by implication (in the perfect only) to know: - be aware, behold, X can (+ not tell), consider, (have) known (-ledge), look (on), perceive, see, be sure, tell, understand, wist, wot. Compare G3700."]},{"k":"G1493","v":["εἰδωλεῖον","eidōleîon","i-do-li'-on","Neuter of a presumed derivative of G1497; an image fane: - idol’s temple."]},{"k":"G1494","v":["εἰδωλόθυτον","eidōlóthyton","i-do-loth'-oo-ton","Neuter of a compound of G1497 and a presumed derivative of G2380; an image sacrifice, that is, part of an idolatrous offering: - (meat, thing that is) offered (in sacrifice, sacrificed) to (unto) idols."]},{"k":"G1495","v":["εἰδωλολατρεία","eidōlolatreía","i-do-lol-at-ri'-ah","From G1497 and G2999; image worship (literally or figuratively): - idolatry."]},{"k":"G1496","v":["εἰδωλολάτρης","eidōlolátrēs","i-do-lol-at'-race","From G1497 and the base of G3000; an image (servant or) worshipper (literally or figuratively): - idolater."]},{"k":"G1497","v":["εἴδωλον","eídōlon","i'-do-lon","From G1491; an image (that is, for worship); by implication a heathen god, or (plural) the worship of such: - idol."]},{"k":"G1498","v":["εἴην","eíēn","i'-ane","Optative (that is, English subjunctive) present of G1510 (including the other person); might (could, would or should) be: - mean, + perish, should be, was, were."]},{"k":"G1499","v":["εἰ καί","ei kaí","i kahee","From G1487 and G2532; if also (or even): - if (that), though."]},{"k":"G1500","v":["εἰκῆ","eikē","i-kay'","Probably from G1502 (through the idea of failure); idly, that is, without reason (or effect): - without a cause, (in) vain (-ly.)"]},{"k":"G1501","v":["εἴκοσι","eíkosi","i'-kos-ee","Of uncertain affinity; a score: - twenty."]},{"k":"G1502","v":["εἴκω","eíkō","i'-ko","Apparently a primary verb; properly to be weak, that is, yield: - give place."]},{"k":"G1503","v":["εἴκω","eíkō","i'-ko","Apparently a primary verb (perhaps akin to G1502 through the idea of faintness as a copy); to resemble: - be like."]},{"k":"G1504","v":["εἰκών","eikṓn","i-kone'","From G1503; a likeness, that is, (literally) statue, profile, or (figuratively) representation, resemblance: - image."]},{"k":"G1505","v":["εἰλικρίνεια","eilikríneia","i-lik-ree'-ni-ah","From G1506; clearness, that is, (by implication) purity (figuratively): - sincerity."]},{"k":"G1506","v":["εἰλικρινής","eilikrinḗs","i-lik-ree-nace'","From εἵλη heilē (the sun’s ray) and G2919; judged by sunlight, that is, tested as genuine (figuratively): - pure, sincere."]},{"k":"G1507","v":["εἱλίσσω","heilíssō","hi-lis'-so","A prolonged form of a primary but defective verb εἵλω heilō (of the same meaning); to coil or wrap: - roll together. See also G1667."]},{"k":"G1508","v":["εἰ μή","ei mḗ","i may","From G1487 and G3361; if not: - but, except (that), if not, more than, save (only) that, saving, till."]},{"k":"G1509","v":["εἰ μή τι","ei mḗ ti","i may tee","From G1508 and the neuter of G5100; if not somewhat: - except."]},{"k":"G1510","v":["εἰμί","eimí","i-mee'","First person singular present indicative; a prolonged form of a primary and defective verb; I exist (used only when emphatic): - am, have been, X it is I, was. See also G1488, G1498, G1511, G1527, G2258, G2071, G2070, G2075, G2076, G2771, G2468, G5600."]},{"k":"G1511","v":["εἶναι","eînai","i'-nahee","Present infinitive from G1510; to exist: - am, are, come, is, X lust after, X please well, there is, to be, was."]},{"k":"G1512","v":["εἴ περ","eí per","i per","From G1487 and G4007; if perhaps: - if so be (that), seeing, though."]},{"k":"G1513","v":["εἴ πως","eí pōs","i poce","From G1487 and G4458; if somehow: - if by any means."]},{"k":"G1514","v":["εἰρηνεύω","eirēneúō","i-rane-yoo'-o","From G1515; to be (act) peaceful: - be at (have, live in) peace, live peaceably."]},{"k":"G1515","v":["εἰρήνη","eirḗnē","i-ray'-nay","Probably from a primary verb εἴρω eirō (to join); peace (literally or figuratively); by implication prosperity: - one, peace, quietness, rest, + set at one again."]},{"k":"G1516","v":["εἰρηνικός","eirēnikós","i-ray-nee-kos'","From G1515; pacific; by implication salutary: - peaceable."]},{"k":"G1517","v":["εἰρηνοποιέω","eirēnopoiéō","i-ray-nop-oy-eh'-o","From G1518; to be a peace maker, that is, (figuratively) to harmonize: - make peace."]},{"k":"G1518","v":["εἰρηνοποιός","eirēnopoiós","i-ray-nop-oy-os'","From G1518 and G4160; pacificatory, that is, (subjectively) peaceable: - peacemaker."]},{"k":"G1519","v":["εἰς","eis","ice","A primary preposition; to or into (indicating the point reached or entered), of place, time, or (figuratively) purpose (result, etc.); also in adverbial phrases.: - [abundant-] ly, against, among, as, at, [back-] ward, before, by, concerning, + continual, + far more exceeding, for [intent, purpose], fore, + forth, in (among, at unto, -so much that, -to), to the intent that, + of one mind, + never, of, (up-) on, + perish, + set at one again, (so) that, therefore (-unto), throughout, till, to (be, the end, -ward), (here-) until (-to), . . . ward, [where-] fore, with. Often used in composition with the same general import, but only with verbs (etc.) expressing motion (literallyor figuratively."]},{"k":"G1520","v":["εἷς","heîs","hice","(Including the neuter [etc.] ἕν hen); a primary numeral; one: - a (-n, -ny, certain), + abundantly, man, one (another), only, other, some. See also G1527, G3367, G3391, G3762."]},{"k":"G1521","v":["εἰσάγω","eiságō","ice-ag'-o","From G1519 and G71; to introduce (literally or figuratively): - bring in (-to), (+ as to) lead into."]},{"k":"G1522","v":["εἰσακούω","eisakoúō","ice-ak-oo'-o","From G1519 and G191; to listen to: - hear."]},{"k":"G1523","v":["εἰσδέχομαι","eisdéchomai","ice-dekh'-om-ahee","From G1519 and G1209; to take into one’s favor: - receive."]},{"k":"G1524","v":["εἴσειμι","eíseimi","ice'-i-mee","From G1519 and εἶμι eimi (to go); to enter: - enter (go) into."]},{"k":"G1525","v":["εἰσέρχομαι","eisérchomai","ice-er'-khom-ahee","From G1519 and G2064; to enter (literally or figuratively): - X arise, come (in, into), enter in (-to), go in (through)."]},{"k":"G1526","v":["εἰσί","eisí","i-see'","Third person plural present indicative of G1510; they are: - agree, are, be, dure, X is, were."]},{"k":"G1527","v":["εἷς καθ’ εἷς","heîs kath’ heîs","hice kath hice","From G1520 repeated with G2596 inserted; severally: - one by one."]},{"k":"G1528","v":["εἰσκαλέω","eiskaléō","ice-kal-eh'-o","From G1519 and G2564; to invite in: - call in."]},{"k":"G1529","v":["εἴσοδος","eísodos","ice'-od-os","From G1519 and G3598; an entrance (literally or figuratively): - coming, enter (-ing) in (to)."]},{"k":"G1530","v":["εἰσπηδάω","eispēdáō","ice-pay-dah'-o","From G1519 and πηδάω pēdaō (to leap); to rush in: - run (spring) in."]},{"k":"G1531","v":["εἰσπορεύομαι","eisporeúomai","ice-por-yoo'-om-ahee","From G1519 and G4198; to enter (literally or figuratively): - come (enter) in, go into."]},{"k":"G1532","v":["εἰστρέχω","eistréchō","ice-trekh'-o","From G1519 and G5143; to hasten inward: - run in."]},{"k":"G1533","v":["εἰσφέρω","eisphérō","ice-fer'-o","From G1519 and G5342; to carry inward (literally or figuratively): - bring (in), lead into."]},{"k":"G1534","v":["εἶτα","eîta","i'-tah","Of uncertain affinity; a particle of succession (in time or logical enumeration), then, moreover: - after that (-ward), furthermore, then. See also G1899."]},{"k":"G1535","v":["εἴτε","eíte","i'-teh","From G1487 and G5037; if too: - if, or, whether."]},{"k":"G1536","v":["εἴ τις","eí tis","i tis","From G1487 and G5100; if any: - he that, if a (-ny) man (‘s thing, from any, ought), whether any, whosoever."]},{"k":"G1537","v":["ἐκ","ek","ek","A primary preposition denoting origin (the point whence motion or action proceeds), from, out (of place, time or cause; literally or figuratively; direct or remote): - after, among, X are, at betwixt (-yond), by (the means of), exceedingly, (+ abundantly above), for (-th), from (among, forth, up), + grudgingly, + heartily, X heavenly, X hereby, + very highly, in, . . . ly, (because, by reason) of, off (from), on, out among (from, of), over, since, X thenceforth, through, X unto, X vehemently, with (-out). Often used in composition, with the same general import; often of completion."]},{"k":"G1538","v":["ἕκαστος","hékastos","hek'-as-tos","As if a superlative of ἕκας hekas (afar); each or every: - any, both, each (one), every (man, one, woman), particularly."]},{"k":"G1539","v":["ἑκάστοτε","hekástote","hek-as'-tot-eh","As if from G1538 and G5119; at every time: - always."]},{"k":"G1540","v":["ἑκατόν","hekatón","hek-at-on'","Of uncertain affinity; a hundred: - hundred."]},{"k":"G1541","v":["ἑκατονταέτης","hekatontaétēs","hek-at-on-tah-et'-ace","From G1540 and G2094; centenarian: - hundred years old."]},{"k":"G1542","v":["ἑκατονταπλασίων","hekatontaplasíōn","hek-at-on-ta-plah-sec'-own","From G1540 and a presumed derivative of G4111; a hundred times: - hundredfold."]},{"k":"G1543","v":["ἑκατοντάρχης","hekatontárchēs","hek-at-on-tar'-khace","From G1540 and G757; the captain of one hundred men: - centurion."]},{"k":"G1544","v":["ἐκβάλλω","ekbállō","ek-bal'-lo","From G1537 and G906; to eject (literally or figuratively): - bring forth, cast (forth, out), drive (out), expel, leave, pluck (pull, take, thrust) out, put forth (out), send away (forth, out)."]},{"k":"G1545","v":["ἔκβασις","ékbasis","ek'-bas-is","From a compound of G1537 and the base of G939 (meaning to go out); an exit (literally or figuratively): - end, way to escape."]},{"k":"G1546","v":["ἐκβολή","ekbolḗ","ek-bol-ay'","From G1544; ejection, that is, (specifically) a throwing overboard of the cargo: - + lighten the ship."]},{"k":"G1547","v":["ἐκγαμίζω","ekgamízō","ek-gam-id'-zo","From G1537 and a form of G1061 (compare G1548); to marry off a daughter: - give in marriage."]},{"k":"G1548","v":["ἐκγαμίσκω","ekgamískō","ek-gam-is'-ko","From G1537 and G1061; the same as G1547: - give in marriage."]},{"k":"G1549","v":["ἔκγονον","ékgonon","ek'-gon-on","Neuter of a derivative of a compound of G1537 and G1096; a descendant, that is, (specifically) grandchild: - nephew."]},{"k":"G1550","v":["ἐκδαπανάω","ekdapanáō","ek-dap-an-ah'-o","From G1537 and G1159; to expend (wholly), that is, (figuratively) exhaust: - spend."]},{"k":"G1551","v":["ἐκδέχομαι","ekdéchomai","ek-dekh'-om-ahee","From G1537 and G1209; to accept from some source, that is, (by implication) to await: - expect, look (tarry) for, wait (for)."]},{"k":"G1552","v":["ἔκδηλος","ékdēlos","ek'-day-los","From G1537 and G1212; wholly evident: - manifest."]},{"k":"G1553","v":["ἐκδημέω","ekdēméō","ek-day-meh'-o","From a compound of G1537 and G1218; to emigrate, that is, (figuratively) vacate or quit: - be absent."]},{"k":"G1554","v":["ἐκδίδωμι","ekdídōmi","ek-did-o'-mee","From G1537 and G1325; to give forth, that is, (specifically) to lease: - let forth (out)."]},{"k":"G1555","v":["ἐκδιηγέομαι","ekdiēgéomai","ek-dee-ayg-eh'-om-ahee","From G1537 and a compound of G1223 and G2233; to narrate through wholly: - declare."]},{"k":"G1556","v":["ἐκδικέω","ekdikéō","ek-dik-eh'-o","From G1558; to vindicate, retaliate, punish: - a (re-) venge."]},{"k":"G1557","v":["ἐκδίκησις","ekdíkēsis","ek-dik'-ay-sis","From G1556; vindication, retribution: - (a-, re-) venge (-ance), punishment."]},{"k":"G1558","v":["ἔκδικος","ékdikos","ek'-dik-os","From G1537 and G1349; carrying justice out, that is, a punisher: - a (re-) venger."]},{"k":"G1559","v":["ἐκδιώκω","ekdiṓkō","ek-dee-o'-ko","From G1537 and G1377; to pursue out, that is, expel or persecute implacably: - persecute."]},{"k":"G1560","v":["ἔκδοτος","ékdotos","ek'-dot-os","From G1537 and a derivative of G1325; given out or over, that is, surrendered: - delivered."]},{"k":"G1561","v":["ἐκδοχή","ekdochḗ","ek-dokh-ay'","From G1551; expectation: - looking for."]},{"k":"G1562","v":["ἐκδύω","ekdýō","ek-doo'-o","From G1537 and the base of G1416; to cause to sink out of, that is, (specifically as of clothing) to divest: - strip, take off from, unclothe."]},{"k":"G1563","v":["ἐκεῖ","ekeî","ek-i'","Of uncertain affinity; there; by extension thither: - there, thither (-ward), (to) yonder (place)."]},{"k":"G1564","v":["ἐκεῖθεν","ekeîthen","ek-i'-then","From G1563; thence: - from that place, (from) thence, there."]},{"k":"G1565","v":["ἐκεῖνος","ekeînos","ek-i'-nos","From G1563; that one (or [neuter] thing); often intensified by the article prefixed: - he, it, the other (same), selfsame, that (same, very), X their, X them, they, this, those. See also G3778."]},{"k":"G1566","v":["ἐκεῖσε","ekeîse","ek-i'-seh","From G1563; thither: - there."]},{"k":"G1567","v":["ἐκζητέω","ekzētéō","ek-zay-teh'-o","From G1537 and G2212; to search out, that is, (figuratively) investigate, crave, demand, (by Hebraism) worship: - en- (re-) quire, seek after (carefully, diligently)."]},{"k":"G1568","v":["ἐκθαμβέω","ekthambéō","ek-tham-beh'-o","From G1569; to astonish utterly: - affright, greatly (sore) amaze."]},{"k":"G1569","v":["ἔκθαμβος","ékthambos","ek'-tham-bos","From G1537 and G2285; utterly astounded: - greatly, wondering."]},{"k":"G1570","v":["ἔκθετος","ékthetos","ek'-thet-os","From G1537 and a derivative of G5087; put out, that is, exposed to perish: - cast out."]},{"k":"G1571","v":["ἐκκαθαίρω","ekkathaírō","ek-kath-ah'-ee-ro","From G1537 and G2508; to cleanse thoroughly: - purge (out)."]},{"k":"G1572","v":["ἐκκαίω","ekkaíō","ek-kah'-yo","From G1537 and G2545; to inflame deeply: - burn."]},{"k":"G1573","v":["ἐκκακέω","ekkakéō","ek-kak-eh'-o","From G1537 and G2556; to be (bad or) weak, that is, (by implication) to fail (in heart): - faint, be weary."]},{"k":"G1574","v":["ἐκκεντέω","ekkentéō","ek-ken-teh'-o","From G1537 and the base of G2759; to transfix: - pierce."]},{"k":"G1575","v":["ἐκκλάω","ekkláō","ek-klah'-o","From G1537 and G2806; to exscind: - break off."]},{"k":"G1576","v":["ἐκκλείω","ekkleíō","ek-kli'-o","From G1537 and G2808; to shut out (literally or figuratively): - exclude."]},{"k":"G1577","v":["ἐκκλησία","ekklēsía","ek-klay-see'-ah","From a compound of G1537 and a derivative of G2564; a calling out, that is, (concretely) a popular meeting, especially a religious congregation (Jewish synagogue, or Christian community of members on earth or saints in heaven or both): - assembly, church."]},{"k":"G1578","v":["ἐκκλίνω","ekklínō","ek-klee'-no","From G1537 and G2827; to deviate, that is, (absolutely) to shun (literally or figuratively), or (relatively) to decline (from piety): - avoid, eschew, go out of the way."]},{"k":"G1579","v":["ἐκκολυμβάω","ekkolymbáō","ek-kol-oom-bah'-o","From G1537 and G2860; to escape by swimming: - swim out."]},{"k":"G1580","v":["ἐκκομίζω","ekkomízō","ek-kom-id'-zo","From G1537 and G2865; to bear forth (to burial): - carry out."]},{"k":"G1581","v":["ἐκκόπτω","ekkóptō","ek-kop'-to","From G1537 and G2875; to exscind; figuratively to frustrate: - cut down (off, out), hew down, hinder."]},{"k":"G1582","v":["ἐκκρέμαμαι","ekkrémamai","ek-krem'-am-ahee","Middle voice from G1537 and G2910; to hang upon the lips of a speaker, that is, listen closely: - be very attentive."]},{"k":"G1583","v":["ἐκλαλέω","eklaléō","ek-lal-eh'-o","From G1537 and G2980; to divulge: - tell."]},{"k":"G1584","v":["ἐκλάμπω","eklámpō","ek-lam'-po","From G1537 and G2989; to be resplendent: - shine forth."]},{"k":"G1585","v":["ἐκλανθάνομαι","eklanthánomai","ek-lan-than'-om-ahee","Middle voice from G1537 and G2990; to be utterly oblivious of: - forget."]},{"k":"G1586","v":["ἐκλέγομαι","eklégomai","ek-leg'-om-ahee","Middle voice from G1537 and G3004 (in its primary sense); to select: - make choice, choose (out), chosen."]},{"k":"G1587","v":["ἐκλείπω","ekleípō","ek-li'-po","From G1537 and G3007; to omit, that is, (by implication) cease (die): - fail."]},{"k":"G1588","v":["ἐκλεκτός","eklektós","ek-lek-tos'","From G1586; select; by implication favorite: - chosen, elect."]},{"k":"G1589","v":["ἐκλογή","eklogḗ","ek-log-ay'","From G1586; (divine) selection (abstractly or concretely): - chosen, election."]},{"k":"G1590","v":["ἐκλύω","eklýō","ek-loo'-o","From G1537 and G3089; to relax (literally or figuratively): - faint."]},{"k":"G1591","v":["ἐκμάσσω","ekmássō","ek-mas'-so","From G1537 and the base of G3145; to knead out, that is, (by analogy) to wipe dry: - wipe."]},{"k":"G1592","v":["ἐκμυκτηρίζω","ekmyktērízō","ek-mook-ter-id'-zo","From G1537 and G3456; to sneer outright at: - deride."]},{"k":"G1593","v":["ἐκνεύω","ekneúō","ek-nyoo'-o","From G1537 and G3506; (by analogy) to slip off, that is, quietly withdraw: - convey self away."]},{"k":"G1594","v":["ἐκνήφω","eknḗphō","ek-nay'-fo","From G1537 and G3525; (figuratively) to rouse (oneself) out of stupor: - awake."]},{"k":"G1595","v":["ἑκούσιον","hekoúsion","hek-oo'-see-on","Neuter of a derivative from G1635; voluntariness: - willingly."]},{"k":"G1596","v":["ἑκουσίως","hekousíōs","hek-oo-see'-ose","Adverb from the same as G1595; voluntarily: - wilfully, willingly."]},{"k":"G1597","v":["ἔκπαλαι","ékpalai","eh'-pal-ahee","From G1537 and G3819; long ago, for a long while: - of a long time, of old."]},{"k":"G1598","v":["ἐκπειράζω","ekpeirázō","ek-pi-rad'-zo","From G1537 and G3985; to test thoroughly: - tempt."]},{"k":"G1599","v":["ἐκπέμπω","ekpémpō","ek-pem'-po","From G1537 and G3992; to despatch: - send away (forth)."]},{"k":"G1600","v":["ἐκπετάννυμι","ekpetánnymi","ek-pet-an'-noo-mee","From G1537 and a form of G4072; to fly out, that is, (by analogy) extend: - stretch forth."]},{"k":"G1601","v":["ἐκπίπτω","ekpíptō","ek-pip'-to","From G1537 and G4098; to drop away; specifically be driven out of one’s course; figuratively to lose, become inefficient: - be cast, fail, fall (away, off), take none effect."]},{"k":"G1602","v":["ἐκπλέω","ekpléō","ek-pleh'-o","From G1537 and G4126; to depart by ship: - sail (away, thence)."]},{"k":"G1603","v":["ἐκπληρόω","ekplēróō","ek-play-ro'-o","From G1537 and G4137; to accomplish entirely: - fulfill."]},{"k":"G1604","v":["ἐκπλήρωσις","ekplḗrōsis","ek-play'-ro-sis","From G1603; completion: - accomplishment."]},{"k":"G1605","v":["ἐκπλήσσω","ekplḗssō","ek-place'-so","From G1537 and G4141; to strike with astonishment: - amaze, astonish."]},{"k":"G1606","v":["ἐκπνέω","ekpnéō","ek-pneh'-o","From G1537 and G4154; to expire: - give up the ghost."]},{"k":"G1607","v":["ἐκπορεύομαι","ekporeúomai","ek-por-yoo'-om-ahee","From G1537 and G4198; to depart, be discharged, proceed, project: - come (forth, out of), depart, go (forth, out), issue, proceed (out of)."]},{"k":"G1608","v":["ἐκπορνεύω","ekporneúō","ek-porn-yoo'-o","From G1537 and G4203; to be utterly unchaste: - give self over to fornication."]},{"k":"G1609","v":["ἐκπτύω","ekptýō","ek-ptoo'-o","From G1537 and G4429; to spit out, that is, (figuratively) spurn: - reject."]},{"k":"G1610","v":["ἐκριζόω","ekrizóō","ek-rid-zo'-o","From G1537 and G4492; to uproot: - pluck up by the root, root up."]},{"k":"G1611","v":["ἔκστασις","ékstasis","ek'-stas-is","From G1839; a displacement of the mind, that is, bewilderment, “ecstasy”: - + be amazed, amazement, astonishment, trance."]},{"k":"G1612","v":["ἐκστρέφω","ekstréphō","ek-stref'-o","From G1537 and G4762; to pervert (figuratively): - subvert."]},{"k":"G1613","v":["ἐκταράσσω","ektarássō","ek-tar-as'-so","From G1537 and G5015; to disturb wholly: - exceedingly trouble."]},{"k":"G1614","v":["ἐκτείνω","ekteínō","ek-ti'-no","From G1537 and τείνω teinō (to stretch); to extend: - cast, put forth, stretch forth (out)."]},{"k":"G1615","v":["ἐκτελέω","ekteléō","ek-tel-eh'-o","From G1537 and G5055; to complete fully: - finish."]},{"k":"G1616","v":["ἐκτένεια","ekténeia","ek-ten'-i-ah","From G1618; intentness: - X instantly."]},{"k":"G1617","v":["ἐκτενέστερον","ektenésteron","ek-ten-es'-ter-on","Neuter of the compound of G1618; more intently: - more earnestly."]},{"k":"G1618","v":["ἐκτενής","ektenḗs","ek-ten-ace'","From G1614; intent: - without ceasing, fervent."]},{"k":"G1619","v":["ἐκτενῶς","ektenōs","ek-ten-oce'","Adverb from G1618; intently: - fervently."]},{"k":"G1620","v":["ἐκτίθημι","ektíthēmi","ek-tith'-ay-mee","From G1537 and G5087; to expose; figuratively to declare: - cast out, expound."]},{"k":"G1621","v":["ἐκτινάσσω","ektinássō","ek-tin-as'-so","From G1537 and τινάσσω tinassō (to swing); to shake violently: - shake (off)."]},{"k":"G1622","v":["ἐκτός","ektós","ek-tos'","From G1537; the exterior; figuratively (as a preposition) aside from, besides: - but, except (-ed), other than, out of, outside, unless, without."]},{"k":"G1623","v":["ἕκτος","héktos","hek'-tos","Ordinal from G1803; sixth: - sixth."]},{"k":"G1624","v":["ἐκτρέπω","ektrépō","ek-trep'-o","From G1537 and the base of G5157; to deflect, that is, turn away (literally or figuratively): - avoid, turn (aside, out of the way)."]},{"k":"G1625","v":["ἐκτρέφω","ektréphō","ek-tref'-o","From G1537 and G5142; to rear up to maturity, that is, (generally) to cherish or train: - bring up, nourish."]},{"k":"G1626","v":["ἔκτρωμα","éktrōma","ek'-tro-mah","From a compound of G1537 and τιτρώσκω titrōskō (to wound); a miscarriage (abortion), that is, (by analogy) untimely birth: - born out of due time."]},{"k":"G1627","v":["ἐκφέρω","ekphérō","ek-fer'-o","From G1537 and G5342; to bear out (literally or figuratively): - bear, bring forth, carry forth (out)."]},{"k":"G1628","v":["ἐκφεύγω","ekpheúgō","ek-fyoo'-go","From G1537 and G5343; to flee out: - escape, flee."]},{"k":"G1629","v":["ἐκφοβέω","ekphobéō","ek-fob-eh'-o","From G1537 and G5399; to frighten utterly: - terrify."]},{"k":"G1630","v":["ἔκφοβος","ékphobos","ek'-fob-os","From G1537 and G5401; frightened out of one’s wits: - sore afraid, exceedingly fear."]},{"k":"G1631","v":["ἐκφύω","ekphýō","ek-foo'-o","From G1537 and G5453; to sprout up: - put forth."]},{"k":"G1632","v":["ἐκχέω","ekchéō","ek-kheh'-o","From G1537 and χέω cheō (to pour); to pour forth; figuratively to bestow: - gush (pour) out, run greedily (out), shed (abroad, forth), spill."]},{"k":"G1633","v":["ἐκχωρέω","ekchōréō","ek-kho-reh'-o","From G1537 and G5562; to depart: - depart out."]},{"k":"G1634","v":["ἐκψύχω","ekpsýchō","ek-psoo'-kho","From G1537 and G5594; to expire: - give (yield) up the ghost."]},{"k":"G1635","v":["ἑκών","hekṓn","hek-own'","Of uncertain affinity; voluntary: - willingly."]},{"k":"G1636","v":["ἐλαία","elaía","el-ah'-yah","Feminine of a presumed derivative from an obsolete primary; an olive (the tree or the fruit): - olive (berry, tree)."]},{"k":"G1637","v":["ἔλαιον","élaion","el'-ah-yon","Neuter of the same as G1636; olive oil: - oil."]},{"k":"G1638","v":["ἐλαιών","elaiṓn","el-ah-yone'","From G1636; an olive orchard, that is, (specifically) the Mount of Olives: - Olivet."]},{"k":"G1639","v":["Ἐλαμίτης","Elamítēs","el-am-ee'-tace","Of Hebrew origin [H5867]; an Elamite or Persian: - Elamite."]},{"k":"G1640","v":["ἐλάσσων","elássōn","el-as'-sone","Compound of the same as G1646; smaller (in size, quantity, age or quality): - less, under, worse, younger."]},{"k":"G1641","v":["ἐλαττονέω","elattonéō","el-at-ton-eh-o","From G1640; to diminish, that is, fall short: - have lack."]},{"k":"G1642","v":["ἐλαττόω","elattóō","el-at-to'-o","From G1640; to lessen (in rank or influence): - decrease, make lower."]},{"k":"G1643","v":["ἐλαύνω","elaúnō","el-ow'-no","A prolonged form of a primary verb (obsolete except in certain tenses as an alternate of this) of uncertain affinity; to push (as wind, oars or daemoniacal power): - carry, drive, row."]},{"k":"G1644","v":["ἐλαφρία","elaphría","el-af-ree'-ah","From G1645; levity (figuratively), that is, fickleness: - lightness."]},{"k":"G1645","v":["ἐλαφρός","elaphrós","el-af-ros'","Probably akin to G1643 and the base of G1640; light, that is, easy: - light."]},{"k":"G1646","v":["ἐλάχιστος","eláchistos","el-akh'-is-tos","The superlative of ἔλαχυς elachus (short); used as equivalent to G3398; least (in size, amount, dignity, etc.): - least, very little (small), smallest."]},{"k":"G1647","v":["ἐλαχιστότερος","elachistóteros","el-akh-is-tot'-er-os","Compound of G1646; far less: - less than the least."]},{"k":"G1648","v":["Ἐλεάζαρ","Eleázar","el-eh-ad'-zar","Of Hebrew origin [H499]; Eleazar, an Israelite: - Eleazar."]},{"k":"G1649","v":["ἔλεγξις","élenxis","el'-eng-xis","From G1651; refutation, that is, reproof: - rebuke."]},{"k":"G1650","v":["ἔλεγχος","élenchos","el'-eng-khos","From G1651; proof, conviction: - evidence, reproof."]},{"k":"G1651","v":["ἐλέγχω","elénchō","el-eng'-kho","Of uncertain affinity; to confute, admonish: - convict, convince, tell a fault, rebuke, reprove."]},{"k":"G1652","v":["ἐλεεινός","eleeinós","el-eh-i-nos'","From G1656; pitiable: - miserable."]},{"k":"G1653","v":["ἐλεέω","eleéō","el-eh-eh'-o","From G1656; to compassionate (by word or deed, specifically by divine grace): - have compassion (pity on), have (obtain, receive, shew) mercy (on)."]},{"k":"G1654","v":["ἐλεημοσύνη","eleēmosýnē","el-eh-ay-mos-oo'-nay","From G1656; compassionateness, that is, (as exercised towards the poor) beneficence, or (concretely) a benefaction: - alms (-deeds)."]},{"k":"G1655","v":["ἐλεήμων","eleḗmōn","el-eh-ay'-mone","From G1653; compassionate (actively): - merciful."]},{"k":"G1656","v":["ἔλεος","éleos","el'-eh-os","Of uncertain affinity; compassion (human or divine, especially active): - (+ tender) mercy."]},{"k":"G1657","v":["ἐλευθερία","eleuthería","el-yoo-ther-ee'-ah","From G1658; freedom (legitimate or licentious, chiefly moral or ceremonial): - liberty."]},{"k":"G1658","v":["ἐλεύθερος","eleútheros","el-yoo'-ther-os","Probably from the alternate of G2064; unrestrained (to go at pleasure), that is, (as a citizen) not a slave (whether freeborn or manumitted), or (generally) exempt (from obligation or liability): - free (man, woman), at liberty."]},{"k":"G1659","v":["ἐλευθερόω","eleutheróō","el-yoo-ther-o'-o","From G1658; to liberate, that is, (figuratively) to exempt (from moral, ceremonial or mortal liability): - deliver, make free."]},{"k":"G1660","v":["ἔλευσις","éleusis","el'-yoo-sis","From the alternate of G2064; an advent: - coming."]},{"k":"G1661","v":["ἐλεφάντινος","elephántinos","el-ef-an'-tee-nos","From ἔλεφας elephas (an “elephant”); elephantine, that is, (by implication) composed of ivory: - of ivory."]},{"k":"G1662","v":["Ἐλιακείμ","Eliakeím","el-ee-ak-ime'","Of Hebrew origin [H471]; Eliakim, an Israelite: - Eliakim."]},{"k":"G1663","v":["Ἐλιέζερ","Eliézer","el-ee-ed'-zer","Of Hebrew origin [H461]; Eliezer, an Israelite: - Eliezer."]},{"k":"G1664","v":["Ἐλιούδ","Elioúd","el-ee-ood'","Of Hebrew origin ([H410] and [H1935]); God of majesty; Eliud, an Israelite: - Eliud."]},{"k":"G1665","v":["Ἐλισάβετ","Elisábet","el-ee-sab'-et","Of Hebrew origin [H472]; Elisabet, an Israelitess: - Elisabeth."]},{"k":"G1666","v":["Ἐλισσαῖος","Elissaîos","el-is-sah'-yos","Of Hebrew origin [H477]; Elissaeus, an Israelite: - Elissus."]},{"k":"G1667","v":["ἑλίσσω","helíssō","hel-is'-so","A form of G1507; to coil or wrap: - fold up."]},{"k":"G1668","v":["ἕλκος","hélkos","hel'-kos","Probably from G1670; an ulcer (as if drawn together): - sore."]},{"k":"G1669","v":["ἑλκόω","helkóō","hel-ko'-o","From G1668; to cause to ulcerate, that is, (passively) be ulcerous: - full of sores."]},{"k":"G1670","v":["ἑλκύω","helkýō","hel-koo'-o","Probably akin to G138; to drag (literally or figuratively): - draw. Compare G1667."]},{"k":"G1671","v":["Ἑλλάς","Hellás","hel-las'","Of uncertain affinity; Hellas (or Greece), a country of Europe: - Greece."]},{"k":"G1672","v":["Ἕλλην","Héllēn","hel'-lane","From G1671; a Hellen (Grecian) or inhabitant of Hellas; by extension a Greek speaking person, especially a non-Jew: - Gentile, Greek."]},{"k":"G1673","v":["Ἑλληνικός","Hellēnikós","hel-lay-nee-kos'","From G1672; Hellenic, that is, Grecian (in language): - Greek."]},{"k":"G1674","v":["Ἑλληνίς","Hellēnís","hel-lay-nis'","Feminine of G1672; a Grecian (that is, non-Jewish) woman: - Greek."]},{"k":"G1675","v":["Ἑλληνιστής","Hellēnistḗs","hel-lay-nis-tace'","From a derivative of G1672; a Hellenist or Greek speaking Jew: - Grecian."]},{"k":"G1676","v":["Ἑλληνιστί","Hellēnistí","hel-lay-nis-tee'","Adverb from the same as G1675; Hellenistically, that is, in the Grecian language: - Greek."]},{"k":"G1677","v":["ἐλλογέω","ellogéō","el-log-eh'-o","From G1722 and G3056 (in the sense of account); to reckon in, that is, attribute: - impute, put on account."]},{"k":"G1678","v":["Ἐλμωδάμ","Elmōdám","el-mo-dam'","Of Hebrew origin (perhaps for [H486]); Elmodam, an Israelite: - Elmodam."]},{"k":"G1679","v":["ἐλπίζω","elpízō","el-pid'-zo","From G1680; to expect or confide: - (have, thing) hope (-d) (for), trust."]},{"k":"G1680","v":["ἐλπίς","elpís","el-pece'","From ἔλπω elpō which is a primary word (to anticipate, usually with pleasure); expectation (abstract or concrete) or confidence: - faith, hope."]},{"k":"G1681","v":["Ἐλύμας","Elýmas","el-oo'-mas","Of foreign origin; Elymas, a wizard: - Elymas."]},{"k":"G1682","v":["ἐλοΐ","eloḯ","el-o-ee'","Of Chaldee origin ([H426] with pronoun suffix); my God: - Eloi."]},{"k":"G1683","v":["ἐμαυτοῦ","emautoû","em-ow-too'","Genitive, dative and accusative of a compound of G1700 and G846; of myself: - me, mine own (self), myself."]},{"k":"G1684","v":["ἐμβαίνω","embaínō","em-ba'-hee-no","From G1722 and the base of G939; to walk on, that is, embark (aboard a vessel), reach (a pool): - come (get) into, enter (into), go (up) into, step in, take ship."]},{"k":"G1685","v":["ἐμβάλλω","embállō","em-bal'-lo","From G1722 and G906; to throw on, that is, (figuratively) subject to (eternal punishment): - cast into."]},{"k":"G1686","v":["ἐμβάπτω","embáptō","em-bap'-to","From G1722 and G911; to whelm on, that is, wet (a part of the person, etc.) by contact with a fluid: - dip."]},{"k":"G1687","v":["ἐμβατεύω","embateúō","em-bat-yoo'-o","From G1722 and a presumed derivative of the base of G939; equivalent to G1684; to intrude on (figuratively): - intrude into."]},{"k":"G1688","v":["ἐμβιβάζω","embibázō","em-bib-ad'-zo","From G1722 and βιβάζω bibazō (to mount; causative of G1684); to place on, that is, transfer (aboard a vessel): - put in."]},{"k":"G1689","v":["ἐμβλέπω","emblépō","em-blep'-o","From G1722 and G991; to look on, that is, (relatively) to observe fixedly, or (absolutely) to discern clearly: - behold, gaze up, look upon, (could) see."]},{"k":"G1690","v":["ἐμβριμάομαι","embrimáomai","em-brim-ah'-om-ahee","From G1722 and βριμάομαι brimaomai (to snort with anger); to have indignation on, that is, (transitively) to blame, (intransitively) to sigh with chagrin, (specifically) to sternly enjoin: - straitly charge, groan, murmur against."]},{"k":"G1691","v":["ἐμέ","emé","em-eh'","A prolonged form of G3165; me: - I, me, my (-self)."]},{"k":"G1692","v":["ἐμέω","eméō","em-eh'-o","Of uncertain affinity; to vomit: - (will) spue."]},{"k":"G1693","v":["ἐμμαίνομαι","emmaínomai","em-mah'-ee-nom-ahee","From G1722 and G3105; to rave on, that is, rage at: - be mad against."]},{"k":"G1694","v":["Ἐμμανουήλ","Emmanouḗl","em-man-oo-ale'","Of Hebrew origin [H6005]; God with us; Emmanuel, a name of Christ: - Emmanuel."]},{"k":"G1695","v":["Ἐμμαούς","Emmaoús","em-mah-ooce'","Probably of Hebrew origin (compare [H3222]); Emmaus, a place in Palestine: - Emmaus."]},{"k":"G1696","v":["ἐμμένω","emménō","em-men'-o","From G1722 and G3306; to stay in the same place, that is, (figuratively) to persevere: - continue."]},{"k":"G1697","v":["Ἐμμόρ","Emmór","em-mor'","Of Hebrew origin [H2544]; Emmor (that is, Chamor), a Canaanite: - Emmor."]},{"k":"G1698","v":["ἐμοί","emoí","em-oy'","A prolonged form of G3427; to me: - I, me, mine, my."]},{"k":"G1699","v":["ἐμός","emós","em-os'","From the oblique cases of G1473 (G1698, G1700, G1691); my: - of me, mine (own), my."]},{"k":"G1700","v":["ἐμοῦ","emoû","em-oo'","A prolonged form of G3449; of me: - me, mine, my."]},{"k":"G1701","v":["ἐμπαιγμός","empaigmós","emp-aheeg-mos'","From G1702; derision: - mocking."]},{"k":"G1702","v":["ἐμπαίζω","empaízō","emp-aheed'-zo","From G1722 and G3815; to jeer at, that is, deride: - mock."]},{"k":"G1703","v":["ἐμπαίκτης","empaíktēs","emp-aheek-tace'","From G1702; a derider, that is, (by implication) a false teacher: - mocker, scoffer."]},{"k":"G1704","v":["ἐμπεριπατέω","emperipatéō","em-per-ee-pat-eh'-o","From G1722 and G4043; to perambulate on a place, that is, (figuratively) to be occupied among persons: - walk in."]},{"k":"G1705","v":["ἐμπίπλημι","empíplēmi","em-pip'-lay-mee","From G1722 and the base of G4118; to fill in (up), that is, (by implication) to satisfy (literally or figuratively): - fill."]},{"k":"G1706","v":["ἐμπίπτω","empíptō","em-pip'-to","From G1722 and G4098; to fall on, that is, (literally) be entrapped by, or (figuratively) be overwhelmed with: - fall among (into)."]},{"k":"G1707","v":["ἐμπλέκω","emplékō","em-plek'-o","From G1722 and G4120; to entwine, that is, (figuratively) involve with: - entangle (in, self with)."]},{"k":"G1708","v":["ἐμπλοκή","emplokḗ","em-plok-ay'","From G1707; elaborate braiding of the hair: - plaiting."]},{"k":"G1709","v":["ἐμπνέω","empnéō","emp-neh'-o","From G1722 and G4154; to inhale, that is, (figuratively) to be animated by (bent upon): - breathe."]},{"k":"G1710","v":["ἐμπορεύομαι","emporeúomai","em-por-yoo'-om-ahee","From G1722 and G4198; to travel in (a country as a pedlar), that is, (by implication) to trade: - buy and sell, make merchandise."]},{"k":"G1711","v":["ἐμπορία","emporía","em-por-ee'-ah","Feminine from G1713; traffic: - merchandise."]},{"k":"G1712","v":["ἐμπόριον","empórion","em-por'-ee-on","Neuter from G1713; a mart (“emporium”): - merchandise."]},{"k":"G1713","v":["ἔμπορος","émporos","em'-por-os","From G1722 and the base of G4198; a (wholesale) tradesman: - merchant."]},{"k":"G1714","v":["ἐμπρήθω","emprḗthō","em-pray'-tho","From G1722 and πρήθω prēthō (to blow a flame); to enkindle, that is, set on fire: - burn up."]},{"k":"G1715","v":["ἔμπροσθεν","émprosthen","em'-pros-then","From G1722 and G4314; in front of (in place [literally or figuratively] or time): - against, at, before, (in presence, sight) of."]},{"k":"G1716","v":["ἐμπτύω","emptýō","emp-too'-o","From G1722 and G4429; to spit at or on: - spit (upon)."]},{"k":"G1717","v":["ἐμφανής","emphanḗs","em-fan-ace'","From a compound of G1722 and G5316; apparent in self: - manifest, openly."]},{"k":"G1718","v":["ἐμφανίζω","emphanízō","em-fan-id'-zo","From G1717; to exhibit (in person) or disclose (by words): - appear, declare (plainly), inform, (will) manifest, shew, signify."]},{"k":"G1719","v":["ἔμφοβος","émphobos","em'-fob-os","From G1722 and G5401; in fear, that is, alarmed: - affrighted, afraid, tremble."]},{"k":"G1720","v":["ἐμφυσάω","emphysáō","em-foo-sah'-o","From G1722 and φυσάω phusaō (to puff; compare G5453); to blow at or on: - breathe on."]},{"k":"G1721","v":["ἔμφυτος","émphytos","em'-foo-tos","From G1722 and a derivative of G5453; implanted (figuratively): - engrafted."]},{"k":"G1722","v":["ἐν","en","en","A primary preposition denoting (fixed) position (in place, time or state), and (by implication) instrumentality (medially or constructively), that is, a relation of rest (intermediate between G1519 and G1537); “in”, at, (up-) on, by, etc.: - about, after, against, + almost, X altogether, among, X as, at, before, between, (here-) by (+ all means), for (. . . sake of), + give self wholly to, (here-) in (-to, -wardly), X mightily, (because) of, (up-) on, [open-] ly, X outwardly, one, X quickly, X shortly, [speedi-] ly, X that, X there (-in, -on), through (-out), (un-) to(-ward), under, when, where (-with), while, with (-in). Often used in compounds, with substantially the same import; rarely with verbs of motion, and then not to indicate direction, except (elliptically) by a separate (and different) prep."]},{"k":"G1723","v":["ἐναγκαλίζομαι","enankalízomai","en-ang-kal-id'-zom-ahee","From G1722 and a derivative of G43; to take in one’s arms, that is, embrace: - take up in arms."]},{"k":"G1724","v":["ἐνάλιος","enálios","en-al'-ee-os","From G1722 and G251; in the sea, that is, marine: - thing in the sea."]},{"k":"G1725","v":["ἔναντι","énanti","en'-an-tee","From G1722 and G473; in front (that is, figuratively presence) of: - before."]},{"k":"G1726","v":["ἐναντίον","enantíon","en-an-tee'-on","Neuter of G1727; (adverb) in the presence (view) of: - before, in the presence of."]},{"k":"G1727","v":["ἐναντίος","enantíos","en-an-tee'-os","From G1725; opposite; figuratively antagonistic: - (over) against, contrary."]},{"k":"G1728","v":["ἐνάρχομαι","enárchomai","en-ar'-khom-ahee","From G1722 and G756; to commence on: - rule [by mistake for G757]."]},{"k":"G1729","v":["ἐνδεής","endeḗs","en-deh-ace'","From a compound of G1722 and G1210 (in the sense of lacking); deficient in: - lacking."]},{"k":"G1730","v":["ἔνδειγμα","éndeigma","en'-dighe-mah","From G1731; an indication (concretely): - manifest token."]},{"k":"G1731","v":["ἐνδείκνυμι","endeíknymi","en-dike'-noo-mee","From G1722 and G1166; to indicate (by word or act): - do, show (forth)."]},{"k":"G1732","v":["ἔνδειξις","éndeixis","en'-dike-sis","From G1731; indication (abstractly): - declare, evident token, proof."]},{"k":"G1733","v":["ἕνδεκα","héndeka","hen'-dek-ah","From (the neuter of) G1520 and G1176; one and ten, that is, eleven: - eleven."]},{"k":"G1734","v":["ἑνδέκατος","hendékatos","hen-dek'-at-os","Ordinal from G1733; eleventh: - eleventh."]},{"k":"G1735","v":["ἐνδέχεται","endéchetai","en-dekh'-et-ahee","Third person singular present of a compound of G1722 and G1209; (impersonally) it is accepted in, that is, admitted (possible): - can (+ not) be."]},{"k":"G1736","v":["ἐνδημέω","endēméō","en-day-meh'-o","From a compound of G1722 and G1218; to be in one’s own country, that is, home (figuratively): - be at home (present)."]},{"k":"G1737","v":["ἐνδιδύσκω","endidýskō","en-did-oos'-ko","A prolonged form of G1746; to invest (with a garment): - clothe in, wear."]},{"k":"G1738","v":["ἔνδικος","éndikos","en'-dee-kos","From G1722 and G1349; in the right, that is, equitable: - just."]},{"k":"G1739","v":["ἐνδόμησις","endómēsis","en-dom'-ay-sis","From a compound of G1722 and a derivative of the base of G1218; a housing in (residence), that is, structure: - building."]},{"k":"G1740","v":["ἐνδοξάζω","endoxázō","en-dox-ad'-zo","From G1741; to glorify: - glorify."]},{"k":"G1741","v":["ἔνδοξος","éndoxos","en'-dox-os","From G1722 and G1391; in glory, that is, splendid, (figuratively) noble: - glorious, gorgeous [-ly], honourable."]},{"k":"G1742","v":["ἔνδυμα","éndyma","en'-doo-mah","From G1746; apparel (especially the outer robe): - clothing, garment, raiment."]},{"k":"G1743","v":["ἐνδυναμόω","endynamóō","en-doo-nam-o'-o","From G1722 and G1412; to empower: - enable, (increase in) strength (-en), be (make) strong."]},{"k":"G1744","v":["ἐνδύνω","endýnō","en-doo'-no","From G1722 and G1416; to sink (by implication wrap (compare G1746)) on, that is, (figuratively) sneak: - creep."]},{"k":"G1745","v":["ἔνδυσις","éndysis","en'-doo-sis","From G1746; investment with clothing: - putting on."]},{"k":"G1746","v":["ἐνδύω","endýō","en-doo'-o","From G1722 and G1416 (in the senese of sinking into a garment); to invest with clothing (literally or figuratively): - array, clothe (with), endue, have (put) on."]},{"k":"G1747","v":["ἐνέδρα","enédra","en-ed'-rah","Feminine from G1722 and the base of G1476; an ambuscade, that is, (figuratively) murderous purpose: - lay wait. See also G1749."]},{"k":"G1748","v":["ἐνεδρεύω","enedreúō","en-ed-ryoo'-o","From G1747; to lurk, that is, (figuratively) plot assassination: - lay wait for."]},{"k":"G1749","v":["ἔνεδρον","énedron","en'-ed-ron","Neuter of the same as G1747; an ambush, that is, (figuratively) murderous design: - lying in wait."]},{"k":"G1750","v":["ἐνειλέω","eneiléō","en-i-leh'-o","From G1722 and the base of G1507; to enwrap: - wrap in."]},{"k":"G1751","v":["ἔνειμι","éneimi","en'-i-mee","From G1722 and G1510; to be within (neuter participle plural): - such things as . . . have. See also G1762."]},{"k":"G1752","v":["ἕνεκα","héneka","hen'-ek-ah","Of uncertain affinity; on account of: - because, for (cause, sake), (where-) fore, by reason of, that."]},{"k":"G1753","v":["ἐνέργεια","enérgeia","en-erg'-i-ah","From G1756; efficiency (“energy”): - operation, strong, (effectual) working."]},{"k":"G1754","v":["ἐνεργέω","energéō","en-erg-eh'-o","From G1756; to be active, efficient: - do, (be) effectual (fervent), be mighty in, shew forth self, work (effectually in)."]},{"k":"G1755","v":["ἐνέργημα","enérgēma","en-erg'-ay-mah","From G1754; an effect: - operation, working."]},{"k":"G1756","v":["ἐνεργής","energḗs","en-er-gace'","From G1722 and G2041; active, operative: - effectual, powerful."]},{"k":"G1757","v":["ἐνευλογέω","eneulogéō","en-yoo-log-eh'-o","From G1722 and G2127; to confer a benefit on: - bless."]},{"k":"G1758","v":["ἐνέχω","enéchō","en-ekh'-o","From G1722 and G2192; to hold in or upon, that is, ensnare; by implication to keep a grudge: - entangle with, have a quarrel against, urge."]},{"k":"G1759","v":["ἐνθάδε","entháde","en-thad'-eh","From a prolonged form of G1722; properly within, that is, (of place) here, hither: - (t-) here, hither."]},{"k":"G1760","v":["ἐνθυμέομαι","enthyméomai","en-thoo-meh'-om-ahee","From a compound of G1722 and G2372; to be inspirited, that is, ponder: - think."]},{"k":"G1761","v":["ἐνθύμησις","enthýmēsis","en-thoo'-may-sis","From G1760; deliberation: - device, thought."]},{"k":"G1762","v":["ἔνι","éni","en'-ee","Contracted for third person singular present indicative of G1751; impersonally there is in or among: - be, (there) is."]},{"k":"G1763","v":["ἐνιαυτός","eniautós","en-ee-ow-tos'","Prolonged from a primary word ἔνος enos (a year); a year: - year."]},{"k":"G1764","v":["ἐνίστημι","enístēmi","en-is'-tay-mee","From G1722 and G2476; to place on hand, that is, (reflexively) impend, (participle) be instant: - come, be at hand, present."]},{"k":"G1765","v":["ἐνισχύω","enischýō","en-is-khoo'-o","From G1722 and G2480; to invigorate (transitively or reflexively): - strengthen."]},{"k":"G1766","v":["ἔννατος","énnatos","en'-nat-os","Ordinal from G1767; ninth: - ninth."]},{"k":"G1767","v":["ἐννέα","ennéa","en-neh'-ah","A primary number; nine: - nine."]},{"k":"G1768","v":["ἐννενηκονταεννέα","ennenēkontaennéa","en-nen-ay-kon-tah-en-neh'-ah","From a (tenth) multiple of G1767 and G1767 itself; ninety nine: - ninety and nine."]},{"k":"G1769","v":["ἐννεός","enneós","en-neh-os'","From G1770; dumb (as making signs), that is, silent from astonishment: - speechless."]},{"k":"G1770","v":["ἐννεύω","enneúō","en-nyoo'-o","From G1722 and G3506; to nod at, that is, beckon or communicate by gesture: - make signs."]},{"k":"G1771","v":["ἔννοια","énnoia","en'-noy-ah","From a compound of G1722 and G3563; thoughtfulness, that is, moral understanding: - intent, mind."]},{"k":"G1772","v":["ἔννομος","énnomos","en'-nom-os","From G1722 and G3551; (subjectively) legal, or (objectively) subject to: - lawful, under law."]},{"k":"G1773","v":["ἔννυχον","énnychon","en'-noo-khon","Neuter of a compound of G1722 and G3571; (adverbially) by night: - before day."]},{"k":"G1774","v":["ἐνοικέω","enoikéō","en-oy-keh'-o","From G1722 and G3611; to inhabit (figuratively): - dwell in."]},{"k":"G1775","v":["ἑνότης","henótēs","hen-ot-ace'","From G1520; oneness, that is, (figuratively) unanimity: - unity."]},{"k":"G1776","v":["ἐνοχλέω","enochléō","en-okh-leh'-o","From G1722 and G3791; to crowd in, that is, (figuratively) to annoy: - trouble."]},{"k":"G1777","v":["ἔνοχος","énochos","en'-okh-os","From G1758; liable to (a condition, penalty or imputation): - in danger of, guilty of, subject to."]},{"k":"G1778","v":["ἔνταλμα","éntalma","en'-tal-mah","From G1781; an injunction, that is, religious precept: - commandment."]},{"k":"G1779","v":["ἐνταφιάζω","entaphiázō","en-taf-ee-ad'-zo","From a compound of G1722 and G5028; to inswathe with cerements for interment: - bury."]},{"k":"G1780","v":["ἐνταφιασμός","entaphiasmós","en-taf-ee-as-mos'","From G1779; preparation for interment: - burying."]},{"k":"G1781","v":["ἐντέλλομαι","entéllomai","en-tel'-lom-ahee","From G1722 and the base of G5056; to enjoin: - (give) charge, (give) command(-ments), injoin."]},{"k":"G1782","v":["ἐντεῦθεν","enteûthen","ent-yoo'-then","From the same as G1759; hence (literally or figuratively); (repeated) on both sides: - (from) hence, on either side."]},{"k":"G1783","v":["ἔντευξις","énteuxis","ent'-yook-sis","From G1793; an interview, that is, (specifically) supplication: - intercession, prayer."]},{"k":"G1784","v":["ἔντιμος","éntimos","en'-tee-mos","From G1722 and G5092; valued (figuratively): - dear, more honourable, precious, in reputation."]},{"k":"G1785","v":["ἐντολή","entolḗ","en-tol-ay'","From G1781; injunction, that is, an authoritative prescription: - commandment, precept."]},{"k":"G1786","v":["ἐντόπιος","entópios","en-top'-ee-os","From G1722 and G5117; a resident: - of that place."]},{"k":"G1787","v":["ἐντός","entós","en-tos'","From G1722; inside (adverb or noun): - within."]},{"k":"G1788","v":["ἐντρέπω","entrépō","en-trep'-o","From G1722 and the base of G5157; to invert, that is, (figuratively and reflexively) in a good sense, to respect; or in a bad one, to confound: - regard, (give) reverence, shame."]},{"k":"G1789","v":["ἐντρέφω","entréphō","en-tref'-o","From G1722 and G5142; (figuratively) to educate: - nourish up in."]},{"k":"G1790","v":["ἔντρομος","éntromos","en'-trom-os","From G1722 and G5156; terrified: - X quake, X trembled."]},{"k":"G1791","v":["ἐντροπή","entropḗ","en-trop-ay'","From G1788; confusion: - shame."]},{"k":"G1792","v":["ἐντρυφάω","entrypháō","en-troo-fah'-o","From G1722 and G5171; to revel in: - sporting selves."]},{"k":"G1793","v":["ἐντυγχάνω","entynchánō","en-toong-khan'-o","From G1722 and G5177; to chance upon, that is, (by implication) confer with; by extension to entreat (in favor or against): - deal with, make intercession."]},{"k":"G1794","v":["ἐντυλίσσω","entylíssō","en-too-lis'-so","From G1722 and τυλίσσω tulissō (to twist; probably akin to G1507); to entwine, that is, wind up in: - wrap in (together)."]},{"k":"G1795","v":["ἐντυπόω","entypóō","en-too-po'-o","From G1722 and a derivative of G5179; to enstamp, that is, engrave: - engrave."]},{"k":"G1796","v":["ἐνυβρίζω","enybrízō","en-oo-brid'-zo","From G1722 and G5195; to insult: - do despite unto."]},{"k":"G1797","v":["ἐνυπνιάζομαι","enypniázomai","en-oop-nee-ad'-zom-ahee","Middle voice from G1798; to dream: - dream (-er)."]},{"k":"G1798","v":["ἐνύπνιον","enýpnion","en-oop'-nee-on","From G1722 and G5258; something seen in sleep, that is, a dream (vision in a dream): - dream."]},{"k":"G1799","v":["ἐνώπιον","enṓpion","en-o'-pee-on","Neuter of a compound of G1722 and a derivation of G3700; in the face of (literally or figuratively): - before, in the presence (sight) of, to."]},{"k":"G1800","v":["Ἐνώς","Enṓs","en-oce'","Of Hebrew origin [H583]; Enos (that is, Enosh), a patriarch: - Enos."]},{"k":"G1801","v":["ἐνωτίζομαι","enōtízomai","en-o-tid'-zom-ahee","Middle voice from a compound of G1722 and G3775; to take in one's ear, that is, to listen: - hearken."]},{"k":"G1802","v":["Ἐνώχ","Enṓch","en-oke'","Of Hebrew origin [H2585]; Enoch (that is, Chanok), an antediluvian: - Enoch."]},{"k":"G1803","v":["ἕξ","héx","hex","A primary numeral; six: - six."]},{"k":"G1804","v":["ἐξαγγέλλω","exangéllō","ex-ang-el'-lo","From G1537 and the base of G32; to publish, that is, celebrate: - shew forth."]},{"k":"G1805","v":["ἐξαγοράζω","exagorázō","ex-ag-or-ad'-zo","From G1537 and G59; to buy up, that is, ransom; figuratively to rescue from loss (improve opportunity): - redeem."]},{"k":"G1806","v":["ἐξάγω","exágō","ex-ag'-o","From G1537 and G71; to lead forth: - bring forth (out), fetch (lead) out."]},{"k":"G1807","v":["ἐξαιρέω","exairéō","ex-ahee-reh'-o","From G1537 and G138; active voice to tear out; middle voice to select; figuratively to release: - deliver, pluck out, rescue."]},{"k":"G1808","v":["ἐξαίρω","exaírō","ex-ah'-ee-ro","From G1537 and G142; to remove: - put (take) away."]},{"k":"G1809","v":["ἐξαιτέομαι","exaitéomai","ex-ahee-teh'-om-ahee","Middle voice from G1537 and G154; to demand (for trial): - desire."]},{"k":"G1810","v":["ἐξαίφνης","exaíphnēs","ex-ah'-eef-nace","From G1537 and the base of G160; of a sudden (unexpectedly): - suddenly. Compare G1819."]},{"k":"G1811","v":["ἐξακολουθέω","exakolouthéō","ex-ak-ol-oo-theh'-o","From G1537 and G190; to follow out, that is, (figuratively) to imitate, obey, yield to: - follow."]},{"k":"G1812","v":["ἑξακόσιοι","hexakósioi","hex-ak-os'-ee-oy","Plural ordinal from G1803 and G1540; six hundred: - six hundred."]},{"k":"G1813","v":["ἐξαλείφω","exaleíphō","ex-al-i'-fo","From G1537 and G218; to smear out, that is, obliterate (erase tears, figuratively pardon sin): - blot out, wipe away."]},{"k":"G1814","v":["ἐξάλλομαι","exállomai","ex-al'-lom-ahee","From G1537 and G242; to spring forth: - leap up."]},{"k":"G1815","v":["ἐξανάστασις","exanástasis","ex-an-as'-tas-is","From G1817; a rising from death: - resurrection."]},{"k":"G1816","v":["ἐξανατέλλω","exanatéllō","ex-an-at-el'-lo","From G1537 and G393; to start up out of the ground, that is, germinate: - spring up."]},{"k":"G1817","v":["ἐξανίστημι","exanístēmi","ex-an-is'-tay-mee","From G1537 and G450; objectively to produce, that is, (figuratively) beget; subjectively to arise, that is, (figuratively) object: - raise (rise) up."]},{"k":"G1818","v":["ἐξαπατάω","exapatáō","ex-ap-at-ah'-o","From G1537 and G538; to seduce wholly: - beguile, deceive."]},{"k":"G1819","v":["ἐξάπινα","exápina","ex-ap'-ee-nah","From G1537 and a derivative of the same as G160; of a sudden, that is, unexpectedly: - suddenly. Compare G1810."]},{"k":"G1820","v":["ἐξαπορέομαι","exaporéomai","ex-ap-or-eh'-om-ahee","Middle voice from G1537 and G639; to be utterly at a loss, that is, despond: - (in) despair."]},{"k":"G1821","v":["ἐξαποστέλλω","exapostéllō","ex-ap-os-tel'-lo","From G1537 and G649; to send away forth, that is, (on a mission) to despatch, or (peremptorily) to dismiss: - send (away, forth, out)."]},{"k":"G1822","v":["ἐξαρτίζω","exartízō","ex-ar-tid'-zo","From G1537 and a derivative of G739; to finish out (time); figuratively to equip fully (a teacher): - accomplish, thoroughly furnish."]},{"k":"G1823","v":["ἐξαστράπτω","exastráptō","ex-as-trap'-to","From G1537 and G797; to lighten forth, that is, (figuratively) to be radiant (of very white garments): - glistening."]},{"k":"G1824","v":["ἐξαυτῆς","exautēs","ex-ow'-tace","From G1537 and the genitive singular feminine of G846 (G5610 being understood); from that hour, that is, instantly: - by and by, immediately, presently, straightway."]},{"k":"G1825","v":["ἐξεγείρω","exegeírō","ex-eg-i'-ro","From G1537 and G1453; to rouse fully, that is, (figuratively) to resuscitate (from death), release (from infliction): - raise up."]},{"k":"G1826","v":["ἔξειμι","éxeimi","ex'-i-mee","From G1537 and εἶμι eimi (to go); to issue, that is, leave (a place), escape (to the shore): - depart, get [to land], go out."]},{"k":"G1827","v":["ἐξελέγχω","exelénchō","ex-el-eng'-kho","From G1537 and G1651; to convict fully, that is, (by implication) to punish: - convince."]},{"k":"G1828","v":["ἐξέλκω","exélkō","ex-el'-ko","From G1537 and G1670; to drag forth, that is, (figuratively) to entice (to sin): - draw away."]},{"k":"G1829","v":["ἐξέραμα","exérama","ex-er'-am-ah","From a compound of G1537 and a presumed form of ἐραω eraō (to spue); vomit, that is, food disgorged: - vomit."]},{"k":"G1830","v":["ἐξερευνάω","exereunáō","ex-er-yoo-nah'-o","From G1537 and G2045; to explore (figuratively): - search diligently."]},{"k":"G1831","v":["ἐξέρχομαι","exérchomai","ex-er'-khom-ahee","From G1537 and G2064; to issue (literally or figuratively): - come-(forth, out), depart (out of), escape, get out, go (abroad, away, forth, out, thence), proceed (forth), spread abroad."]},{"k":"G1832","v":["ἔξεστι","éxesti","ex'-es-tee","Third person singular present indicative of a compound of G1537 and G1510; so also ἐξόν exon; neuter present participle of the same (with or without some form of G1510 expressed); impersonally it is right (through the figurative idea of being out in public): - be lawful, let, X may (-est)."]},{"k":"G1833","v":["ἐξετάζω","exetázō","ex-et-ad'-zo","From G1537 and ἐτάζω etazō (to examine); to test thoroughly (by questions), that is, ascertain or interrogate: - ask, enquire, search."]},{"k":"G1834","v":["ἐξηγέομαι","exēgéomai","ex-ayg-eh'-om-ahee","From G1537 and G2233; to consider out (aloud), that is, rehearse, unfold: - declare, tell."]},{"k":"G1835","v":["ἑξήκοντα","hexḗkonta","hex-ay'-kon-tah","The tenth multiple of G1803; sixty: - sixty [-fold], threescore."]},{"k":"G1836","v":["ἑξῆς","hexēs","hex-ace'","From G2192 (in the sense of taking hold of, that is, adjoining); successive: - after, following, X morrow, next."]},{"k":"G1837","v":["ἐξηχέομαι","exēchéomai","ex-ay-kheh'-om-ahee","Middle voice from G1537 and G2278; to “echo” forth, that is, resound (be generally reported): - sound forth."]},{"k":"G1838","v":["ἕξις","héxis","hex'-is","From G2192; habit, that is, (by implication) practice: - use."]},{"k":"G1839","v":["ἐξίστημι","exístēmi","ex-is'-tay-mee","From G1537 and G2476; to put (stand) out of wits, that is, astound, or (reflexively) become astounded, insane: - amaze, be (make) astonished, be beside self (selves), bewitch, wonder."]},{"k":"G1840","v":["ἐξισχύω","exischýō","ex-is-khoo'-o","From G1537 and G2480; to have full strength, that is, be entirely competent: - be able."]},{"k":"G1841","v":["ἔξοδος","éxodos","ex'-od-os","From G1537 and G3598; an exit, that is, (figuratively) death: - decease, departing."]},{"k":"G1842","v":["ἐξολοθρεύω","exolothreúō","ex-ol-oth-ryoo'-o","From G1537 and G3645; to extirpate: - destroy."]},{"k":"G1843","v":["ἐξομολογέω","exomologéō","ex-om-ol-og-eh'-o","From G1537 and G3670; to acknowledge or (by implication of assent) agree fully: - confess, profess, promise."]},{"k":"G1844","v":["ἐξορκίζω","exorkízō","ex-or-kid'-zo","From G1537 and G3726; to exact an oath, that is, conjure: - adjure."]},{"k":"G1845","v":["ἐξορκιστής","exorkistḗs","ex-or-kis-tace'","From G1844; one that binds by an oath (or spell), that is, (by implication) an “exorcist” (conjurer): - exorcist."]},{"k":"G1846","v":["ἐξορύσσω","exorýssō","ex-or-oos'-so","From G1537 and G3736; to dig out, that is, (by extension) to extract (an eye), remove (a roofing): - break up, pluck out."]},{"k":"G1847","v":["ἐξουδενόω","exoudenóō","ex-oo-den-o'-o","From G1537 and a derivative of the neuter of G3762; to make utterly nothing of, that is, despise: - set at nought. See also G1848."]},{"k":"G1848","v":["ἐξουθενέω","exouthenéō","ex-oo-then-eh'-o","A variation of G1847 and meaning the same: - contemptible, despise, least esteemed, set at nought."]},{"k":"G1849","v":["ἐξουσία","exousía","ex-oo-see'-ah","From G1832 (in the sense of ability); privilege, that is, (subjectively) force, capacity, competency, freedom, or (objectively) mastery (concretely magistrate, superhuman, potentate, token of control), delegated influence: - authority, jurisdiction, liberty, power, right, strength."]},{"k":"G1850","v":["ἐξουσιάζω","exousiázō","ex-oo-see-ad'-zo","From G1849; to control: - exercise authority upon, bring under the (have) power of."]},{"k":"G1851","v":["ἐξοχή","exochḗ","ex-okh-ay'","From a compound of G1537 and G2192 (meaning to stand out); prominence (figuratively): - principal."]},{"k":"G1852","v":["ἐξυπνίζω","exypnízō","ex-oop-nid'-zo","From G1853; to waken: - awake out of sleep."]},{"k":"G1853","v":["ἔξυπνος","éxypnos","ex'-oop-nos","From G1537 and G5258; awake: - X out of sleep."]},{"k":"G1854","v":["ἔξω","éxō","ex'-o","Adverb from G1537; out (side, of doors), literally or figuratively: - away, forth, (with-) out (of, -ward), strange."]},{"k":"G1855","v":["ἔξωθεν","éxōthen","ex'-o-then","From G1854; external (-ly): - out (-side, -ward, -wardly), (from) without."]},{"k":"G1856","v":["ἐξωθέω","exōthéō","ex-o-theh'-o","From G1537 and ὠθέω ōtheō (to push); to expel; by implication to propel: - drive out, thrust in."]},{"k":"G1857","v":["ἐξώτερος","exṓteros","ex-o'-ter-os","Compound of G1854; exterior: - outer."]},{"k":"G1858","v":["ἑορτάζω","heortázō","heh-or-tad'-zo","From G1859; to observe a festival: - keep the feast."]},{"k":"G1859","v":["ἑορτή","heortḗ","heh-or-tay'","Of uncertain affinity; a festival: - feast, holyday."]},{"k":"G1860","v":["ἐπαγγελία","epangelía","ep-ang-el-ee'-ah","From G1861; an announcement (for information, assent or pledge; especially a divine assurance of good): - message, promise."]},{"k":"G1861","v":["ἐπαγγέλλω","epangéllō","ep-ang-el'-lo","From G1909 and the base of G32; to announce upon (reflexively), that is, (by implication) to engage to do something, to assert something respecting oneself: - profess, (make) promise."]},{"k":"G1862","v":["ἐπάγγελμα","epángelma","ep-ang'-el-mah","From G1861; a self committal (by assurance of conferring some good): - promise."]},{"k":"G1863","v":["ἐπάγω","epágō","ep-ag'-o","From G1909 and G71; to superinduce, that is, inflict (an evil), charge (a crime): - bring upon."]},{"k":"G1864","v":["ἐπαγωνίζομαι","epagōnízomai","ep-ag-o-nid'-zom-ahee","From G1909 and G75; to struggle for: - earnestly contend for."]},{"k":"G1865","v":["ἐπαθροίζω","epathroízō","ep-ath-roid'-zo","From G1909 and ἀθροίζω athroizō (to assemble); to accumulate: - gather thick together."]},{"k":"G1866","v":["Ἐπαίνετος","Epaínetos","ep-a'-hee-net-os","From G1867; praised; Epaenetus, a Christian: - Epenetus."]},{"k":"G1867","v":["ἐπαινέω","epainéō","ep-ahee-neh'-o","From G1909 and G134; to applaud: - commend, laud, praise."]},{"k":"G1868","v":["ἔπαινος","épainos","ep'-ahee-nos","From G1909 and the base of G134; laudation; concretely a commendable thing: - praise."]},{"k":"G1869","v":["ἐπαίρω","epaírō","ep-ahee'-ro","From G1909 and G142; to raise up (literally or figuratively): - exalt self, poise (lift, take) up."]},{"k":"G1870","v":["ἐπαισχύνομαι","epaischýnomai","ep-ahee-skhoo'-nom-ahee","From G1909 and G153; to feel shame for something: - be ashamed."]},{"k":"G1871","v":["ἐπαιτέω","epaitéō","ep-ahee-teh'-o","From G1909 and G154; to ask for: - beg."]},{"k":"G1872","v":["ἐπακολουθέω","epakolouthéō","ep-ak-ol-oo-theh'-o","From G1909 and G190; to accompany: - follow (after)."]},{"k":"G1873","v":["ἐπακούω","epakoúō","ep-ak-oo'-o","From G1909 and G191; to hearken (favorably) to: - hear."]},{"k":"G1874","v":["ἐπακροάομαι","epakroáomai","ep-ak-ro-ah'-om-ahee","From G1909 and the base of G202; to listen (intently) to: - hear."]},{"k":"G1875","v":["ἐπάν","epán","ep-an'","From G1909 and G302; a particle of indefinite contemporaneousnes; whenever, as soon as: - when."]},{"k":"G1876","v":["ἐπάναγκες","epánankes","ep-an'-ang-kes","Neuter of a presumed compound of G1909 and G318; (adverb) on necessity, that is, necessarily: - necessary."]},{"k":"G1877","v":["ἐπανάγω","epanágō","ep-an-ag'-o","From G1909 and G321; to lead up on, that is, (technically) to put out (to sea); (intransitively) to return: - launch (thrust) out, return."]},{"k":"G1878","v":["ἐπαναμιμνήσκω","epanamimnḗskō","ep-an-ah-mim-nace'-ko","From G1909 and G363; to remind of: - put in mind."]},{"k":"G1879","v":["ἐπαναπαύομαι","epanapaúomai","ep-an-ah-pow'-om-ahee","Middle voice from G1909 and G373; to settle on; literally (remain) or figuratively (rely): - rest in (upon)."]},{"k":"G1880","v":["ἐπανέρχομαι","epanérchomai","ep-an-er'-khom-ahee","From G1909 and G424; to come up on, that is, return: - come again, return."]},{"k":"G1881","v":["ἐπανίσταμαι","epanístamai","ep-an-is'-tam-ahee","Middle voice from G1909 and G450; to stand up on, that is, (figuratively) to attack: - rise up against."]},{"k":"G1882","v":["ἐπανόρθωσις","epanórthōsis","ep-an-or'-tho-sis","From a compound of G1909 and G461; a straightening up again, that is, (figuratively) rectification (reformation): - correction."]},{"k":"G1883","v":["ἐπάνω","epánō","ep-an'-o","From G1909 and G507; up above, that is, over or on (of place, amount, rank, etc.): - above, more than, (up-) on, over."]},{"k":"G1884","v":["ἐπαρκέω","eparkéō","ep-ar-keh'-o","From G1909 and G714; to avail for, that is, help: - relieve."]},{"k":"G1885","v":["ἐπαρχία","eparchía","ep-ar-khee'-ah","From a compound of G1909 and G757 (meaning a governor of a district, “eparch”); a special region of government, that is, a Roman praefecture: - province."]},{"k":"G1886","v":["ἔπαυλις","épaulis","ep'-ow-lis","From G1909 and an equivalent of G833; a hut over the head, that is, a dwelling."]},{"k":"G1887","v":["ἐπαύριον","epaúrion","ep-ow'-ree-on","From G1909 and G839; occuring on the succeeding day, that is, (G2250 being implied) tomorrow: - day following, morrow, next day (after)."]},{"k":"G1888","v":["ἐπαυτοφώρῳ","epautophṓrōi","ep-ow-tof-o'-ro","From G1909 and G846 and (the dative singular of) a derivative of φώρ phōr (a thief); in theft itself, that is, (by analogy) in actual crime: - in the very act."]},{"k":"G1889","v":["Ἐπαφρᾶς","Epaphrâs","ep-af-ras'","Contracted from G1891; Epaphras, a Christian: - Epaphras."]},{"k":"G1890","v":["ἐπαφρίζω","epaphrízō","ep-af-rid'-zo","From G1909 and G875; to foam upon, that is, (figuratively) to exhibit (a vile passion): - foam out."]},{"k":"G1891","v":["Ἐπαφρόδιτος","Epaphróditos","ep-af-rod'-ee-tos","From G1909 (in the sense of devoted to) and Ἀφροδίτη Aphroditē (Venus); Epaphroditus, a Christian: - Epaphroditus. Compare G1889."]},{"k":"G1892","v":["ἐπεγείρω","epegeírō","ep-eg-i'-ro","From G1909 and G1453; to rouse upon, that is, (figuratively) to excite against: - raise, stir up."]},{"k":"G1893","v":["ἐπεί","epeí","ep-i'","From G1909 and G1487; there upon, that is, since (of time or cause): - because, else, for that (then, -asmuch as), otherwise, seeing that, since, when."]},{"k":"G1894","v":["ἐπειδή","epeidḗ","ep-i-day'","From G1893 and G1211; since now, that is, (of time) when, or (of cause) whereas: - after that, because, for, (that, -asmuch as), seeing, since."]},{"k":"G1895","v":["ἐπειδήπερ","epeidḗper","ep-i-day'-per","From G1894 and G4007; since indeed (of cause): - forasmuch."]},{"k":"G1896","v":["ἐπεῖδον","epeîdon","ep-i'-don","From G1909 and G1492; to regard (favorably or otherwise): - behold, look upon."]},{"k":"G1897","v":["ἐπείπερ","epeíper","ep-i'-per","From G1893 and G4007; since indeed (of cause): - seeing."]},{"k":"G1898","v":["ἐπεισαγωγή","epeisagōgḗ","ep-ice-ag-o-gay'","From a compound of G1909 and G1521; a superintroduction: - bringing in."]},{"k":"G1899","v":["ἔπειτα","épeita","ep'-i-tah","From G1909 nad G1534; thereafter: - after that (-ward), then."]},{"k":"G1900","v":["ἐπέκεινα","epékeina","ep-ek'-i-nah","From G1909 and (the accusative plural neuter of) G1565; upon those parts of, that is, on the further side of: - beyond."]},{"k":"G1901","v":["ἐπεκτείνομαι","epekteínomai","ep-ek-ti'-nom-ahee","Middle voice from G1909 and G1614; to stretch (oneself) forward upon: - reach forth."]},{"k":"G1902","v":["ἐπενδύομαι","ependýomai","ep-en-doo'-om-ahee","Middle voice from G1909 and G1746; to invest upon oneself: - be clothed upon."]},{"k":"G1903","v":["ἐπενδύτης","ependýtēs","ep-en-doo'-tace","From G1902; a wrapper, that is, outer garment: - fisher’s coat."]},{"k":"G1904","v":["ἐπέρχομαι","epérchomai","ep-er'-khom-ahee","From G1909 and G2064; to supervene, that is, arrive, occur, impend, attack, (figuratively) influence: - come (in, upon)."]},{"k":"G1905","v":["ἐπερωτάω","eperōtáō","ep-er-o-tah'-o","From G1909 and G2065; to ask for, that is, inquire, seek: - ask (after, questions), demand, desire, question."]},{"k":"G1906","v":["ἐπερώτημα","eperṓtēma","ep-er-o'-tay-mah","From G1905; an inquiry: - answer."]},{"k":"G1907","v":["ἐπέχω","epéchō","ep-ekh'-o","From G1909 and G2192; to hold upon, that is, (by implication) to retain; (by extension) to detain; (with implication of G3563) to pay attention to: - give (take) heed unto, hold forth, mark, stay."]},{"k":"G1908","v":["ἐπηρεάζω","epēreázō","ep-ay-reh-ad'-zo","From a compound of G1909 and (probably) ἀρειά areia (threats); to insult, slander: - use despitefully, falsely accuse."]},{"k":"G1909","v":["ἐπί","epí","ep-ee'","A primary preposition properly meaning superimposition (of time, place, order, etc.), as a relation of distribution [with the genitive case], that is, over, upon, etc.; of rest (with the dative case) at, on, etc.; of direction (with the accusative case) towards, upon, etc.: - about (the times), above, after, against, among, as long as (touching), at, beside, X have charge of, (be-, [where-]) fore, in (a place, as much as, the time of, -to), (because) of, (up-) on (behalf of) over, (by, for) the space of, through (-out), (un-) to (-ward), with. In compounds it retains essentially the same import, at, upon, etc. (literally or figuratively)."]},{"k":"G1910","v":["ἐπιβαίνω","epibaínō","ep-ee-bah'-ee-no","From G1909 and the base of G939; to walk upon, that is, mount, ascend, embark, arrive: - come (into), enter into, go aboard, sit upon, take ship."]},{"k":"G1911","v":["ἐπιβάλλω","epibállō","ep-ee-bal'-lo","From G1909 and G906; to throw upon (literally or figuratively, transitively or reflexively; usually with more or less force); specifically (with G1438 implied) to reflect; impersonally to belong to: - beat into, cast (up-), on, fall, lay (on), put (unto), stretch forth, think on."]},{"k":"G1912","v":["ἐπιβαρέω","epibaréō","ep-ee-bar-eh'-o","From G1909 and G916; to be heavy upon, that is, (pecuniarily) to be expensive to; figuratively to be severe towards: - be chargeable to, overcharge."]},{"k":"G1913","v":["ἐπιβιβάζω","epibibázō","ep-ee-bee-bad'-zo","From G1909 and a reduplicated derivation of the base of G939 (compare G307); to cause to mount (an animal): - set on."]},{"k":"G1914","v":["ἐπιβλέπω","epiblépō","ep-ee-blep'-o","From G1909 and G991; to gaze at (with favor, pity or partiality): - look upon, regard, have respect to."]},{"k":"G1915","v":["ἐπίβλημα","epíblēma","ep-ib'-lay-mah","From G1911; a patch: - piece."]},{"k":"G1916","v":["ἐπιβοάω","epiboáō","ep-ee-bo-ah'-o","From G1909 and G994; to exclaim against: - cry."]},{"k":"G1917","v":["ἐπιβουλή","epiboulḗ","ep-ee-boo-lay'","From a presumed compound of G1909 and G1014; a plan against someone, that is, a plot: - laying (lying) in wait."]},{"k":"G1918","v":["ἐπιγαμβρεύω","epigambreúō","ep-ee-gam-bryoo'-o","From G1909 and a derivative of G1062; to form affinity with, that is, (specifically) in a levirate way: - marry."]},{"k":"G1919","v":["ἐπίγειος","epígeios","ep-ig'-i-os","From G1909 and G1093; worldly (physically or morally): - earthly, in earth, terrestrial."]},{"k":"G1920","v":["ἐπιγίνομαι","epigínomai","ep-ig-in'-om-ahee","From G1909 and G1096; to arrive upon, that is, spring up (as a wind): - blow."]},{"k":"G1921","v":["ἐπιγινώσκω","epiginṓskō","ep-ig-in-oce'-ko","From G1909 and G1097; to know upon some mark, that is, recognise; by implication to become fully acquainted with, to acknowledge: - (ac-, have, take) know (-ledge, well), perceive."]},{"k":"G1922","v":["ἐπίγνωσις","epígnōsis","ep-ig'-no-sis","From G1921; recognition, that is, (by implication) full discernment, acknowledgement: - (ac-) knowledge (-ing, -ment)."]},{"k":"G1923","v":["ἐπιγραφή","epigraphḗ","ep-ig-raf-ay'","From G1924; an inscription: - superscription."]},{"k":"G1924","v":["ἐπιγράφω","epigráphō","ep-ee-graf'-o","From G1909 and G1125; to inscribe (physically or mentally): - inscription, write in (over, thereon)."]},{"k":"G1925","v":["ἐπιδείκνυμι","epideíknymi","ep-ee-dike'-noo-mee","From G1909 and G1166; to exhibit (physically or mentally): - shew."]},{"k":"G1926","v":["ἐπιδέχομαι","epidéchomai","ep-ee-dekh'-om-ahee","From G1909 and G1209; to admit (as a guest or [figuratively] teacher): - receive."]},{"k":"G1927","v":["ἐπιδημέω","epidēméō","ep-ee-day-meh'-o","From a compound of G1909 and G1218; to make oneself at home, that is, (by extension) to reside (in a foreign country): - [be] dwelling (which were) there, stranger."]},{"k":"G1928","v":["ἐπιδιατάσσομαι","epidiatássomai","ep-ee-dee-ah-tas'-som-ahee","Middle voice from G1909 and G1299; to appoint besides, that is, supplement (as a codicil): - add to."]},{"k":"G1929","v":["ἐπιδίδωμι","epidídōmi","ep-ee-did'-o-mee","From G1909 and G1325; to give over (by hand or surrender): - deliver unto, give, let (+ [her drive]), offer."]},{"k":"G1930","v":["ἐπιδιορθόω","epidiorthóō","ep-ee-dee-or-tho'-o","From G1909 and a derivative of G3717; to straighten further, that is, (figuratively) arrange additionally: - set in order."]},{"k":"G1931","v":["ἐπιδύω","epidýō","ep-ee-doo'-o","From G1909 and G1416; to set fully (as the sun): - go down."]},{"k":"G1932","v":["ἐπιείκεια","epieíkeia","ep-ee-i'-ki-ah","From G1933; suitableness, that is, (by implication) equity, mildness: - clemency, gentleness."]},{"k":"G1933","v":["ἐπιεικής","epieikḗs","ep-ee-i-kace'","From G1909 and G1503; appropriate, that is, (by implication) mild: - gentle, moderation, patient."]},{"k":"G1934","v":["ἐπιζητέω","epizētéō","ep-eed-zay-teh'-o","From G1909 and G2212; to search (inquire) for; intensively to demand, to crave: - desire, enquire, seek (after, for)."]},{"k":"G1935","v":["ἐπιθανάτιος","epithanátios","ep-ee-than-at'-ee-os","From G1909 and G2288; doomed to death: - appointed to death."]},{"k":"G1936","v":["ἐπίθεσις","epíthesis","ep-ith'-es-is","From G2007; an imposition (of hands officially): - laying (putting) on."]},{"k":"G1937","v":["ἐπιθυμέω","epithyméō","ep-ee-thoo-meh'-o","From G1909 and G2372; to set the heart upon, that is, long for (rightfully or otherwise): - covet, desire, would fain, lust (after)."]},{"k":"G1938","v":["ἐπιθυμητής","epithymētḗs","ep-ee-thoo-may-tace'","From G1937; a craver: - + lust after."]},{"k":"G1939","v":["ἐπιθυμία","epithymía","ep-ee-thoo-mee'-ah","From G1937; a longing (especially for what is forbidden): - concupiscence, desire, lust (after)."]},{"k":"G1940","v":["ἐπικαθίζω","epikathízō","ep-ee-kath-id'-zo","From G1909 and G2523; to seat upon: - set on."]},{"k":"G1941","v":["ἐπικαλέομαι","epikaléomai","ep-ee-kal-eh'-om-ahee","Middle voice from G1909 and G2564; to entitle; by implication to invoke (for aid, worship, testimony, decision, etc.): - appeal (unto), call (on, upon), surname."]},{"k":"G1942","v":["ἐπικάλυμα","epikályma","ep-ee-kal'-oo-mah","From G1943; a covering, that is, (figuratively) pretext: - cloke."]},{"k":"G1943","v":["ἐπικαλύπτω","epikalýptō","ep-ee-kal-oop'-to","From G1909 and G2572; to conceal, that is, (figuratively) forgive: - cover."]},{"k":"G1944","v":["ἐπικατάρατος","epikatáratos","ep-ee-kat-ar'-at-os","From G1909 and a derivative of G2672; imprecated, that is, execrable: - accursed."]},{"k":"G1945","v":["ἐπίκειμαι","epíkeimai","ep-ik'-i-mahee","From G1909 and G2749; to rest upon (literally or figuratively): - impose, be instant, (be) laid (there-, up-) on, (when) lay (on), lie (on), press upon."]},{"k":"G1946","v":["Ἐπικούρειος","Epikoúreios","ep-ee-koo'-ri-os","From Ἐπίκουρος Epikouros (compare G1947; a noted philosopher); an Epicurean or follower of Epicurus: - Epicurean."]},{"k":"G1947","v":["ἐπικουρία","epikouría","ep-ee-koo-ree'-ah","From a compound of G1909 and a (prolonged) form of the base of G2877 (in the sense of servant); assistance: - help."]},{"k":"G1948","v":["ἐπικρίνω","epikrínō","ep-ee-kree'-no","From G1909 and G2919; to adjudge: - give sentence."]},{"k":"G1949","v":["ἐπιλαμβάνομαι","epilambánomai","ep-ee-lam-ban'-om-ahee","Middle voice from G1909 and G2983; to seize (for help, injury, attainment or any other purpose; literally or figuratively): - catch, lay hold (up-) on, take (by, hold of, on)."]},{"k":"G1950","v":["ἐπιλανθάνομαι","epilanthánomai","ep-ee-lan-than'-om-ahee","Middle voice from G1909 and G2990; to lose out of mind; by implication to neglect: - (be) forget (-ful of)."]},{"k":"G1951","v":["ἐπιλέγομαι","epilégomai","ep-ee-leg'-om-ahee","Middle voice from G1909 and G3004; to surname, select: - call, choose."]},{"k":"G1952","v":["ἐπιλείπω","epileípō","ep-ee-li'-po","From G1909 and G3007; to leave upon, that is, (figuratively) to be insufficient for: - fall."]},{"k":"G1953","v":["ἐπιλησμονή","epilēsmonḗ","ep-ee-lace-mon-ay'","From a derivative of G1950; negligence: - X forgetful."]},{"k":"G1954","v":["ἐπίλοιπος","epíloipos","ep-il'-oy-pos","From G1909 and G3062; left over, that is, remaining: - rest."]},{"k":"G1955","v":["ἐπίλυσις","epílysis","ep-il'-oo-sis","From G1956; explanation, that is, application: - interpretation."]},{"k":"G1956","v":["ἐπιλύω","epilýō","ep-ee-loo'-o","From G1909 and G3089; to solve further, that is, (figuratively) to explain, decide: - determine, expound."]},{"k":"G1957","v":["ἐπιμαρτυρέω","epimartyréō","ep-ee-mar-too-reh'-o","From G1909 and G3140; to attest further, that is, corroborate: - testify."]},{"k":"G1958","v":["ἐπιμέλεια","epiméleia","ep-ee-mel'-i-ah","From G1959; carefulness, that is, kind attention (hospitality): - + refresh self."]},{"k":"G1959","v":["ἐπιμελέομαι","epimeléomai","ep-ee-mel-eh'-om-ahee","Middle voice from G1909 and the same as G3199; to care for (physically or otherwise): - take care of."]},{"k":"G1960","v":["ἐπιμελῶς","epimelōs","ep-ee-mel-oce'","Adverb from a derivative of G1959; carefully: - diligently."]},{"k":"G1961","v":["ἐπιμένω","epiménō","ep-ee-men'-o","From G1909 and G3306; to stay over, that is, remain (figuratively persevere): - abide (in), continue (in), tarry."]},{"k":"G1962","v":["ἐπινεύω","epineúō","ep-een-yoo'-o","From G1909 and G3506; to nod at, that is, (by implication) to assent: - consent."]},{"k":"G1963","v":["ἐπίνοια","epínoia","ep-in'-oy-ah","From G1909 and G3563; attention of the mind, that is, (by implication) purpose: - thought."]},{"k":"G1964","v":["ἐπιορκέω","epiorkéō","ep-ee-or-keh'-o","From G1965; to commit perjury: - forswear self."]},{"k":"G1965","v":["ἐπίορκος","epíorkos","ep-ee'-or-kos","From G1909 and G3727; on oath, that is, (falsely) a forswearer: - perjured person."]},{"k":"G1966","v":["ἐπιοῦσα","epioûsa","ep-ee-oo'-sah","Feminine singular participle of a compound of G1909 and εἷμι heimi (to go); supervening, that is, (G2250 or G3571 being expressed or implied) the ensuing day or night: - following, next."]},{"k":"G1967","v":["ἐπιούσιος","epioúsios","ep-ee-oo'-see-os","Perhaps from the same as G1966; to-morrow's; but more probably from G1909 and a derivative of the present participle feminine of G1510; for subsistence, that is, needful: - daily."]},{"k":"G1968","v":["ἐπιπίπτω","epipíptō","ep-ee-pip'-to","From G1909 and G4098; to embrace (with affection) or seize (with more or less violence; literally or figuratively): - fall into (on, upon), lie on, press upon."]},{"k":"G1969","v":["ἐπιπλήσσω","epiplḗssō","ep-ee-place'-so","From G1909 and G4141; to chastise, that is, (with words) to upbraid: - rebuke."]},{"k":"G1970","v":["ἐπιπνίγω","epipnígō","ep-ee-pnee'-go","From G1909 and G4155; to throttle upon, that is, (figuratively) overgrow: - choke."]},{"k":"G1971","v":["ἐπιποθέω","epipothéō","ep-ee-poth-eh'-o","From G1909 and ποθέω potheō (to yearn); to dote upon, that is, intensely crave possession (lawfully or wrongfully): - (earnestly) desire (greatly), (greatly) long (after), lust."]},{"k":"G1972","v":["ἐπιπόθησις","epipóthēsis","ep-ee-poth'-ay-sis","From G1971; a longing for: - earnest (vehement) desire."]},{"k":"G1973","v":["ἐπιπόθητος","epipóthētos","ep-ee-poth'-ay-tos","From G1909 and a derivative of the latter part of G1971; yearned upon, that is, greatly loved: - longed for."]},{"k":"G1974","v":["ἐπιποθία","epipothía","ep-ee-poth-ee'-ah","From G1971; intense longing: - great desire."]},{"k":"G1975","v":["ἐπιπορεύομαι","epiporeúomai","ep-ee-por-yoo'-om-ahee","From G1909 and G4198; to journey further, that is, travel on (reach): - come."]},{"k":"G1976","v":["ἐπιῤῥάπτω","epirrháptō","ep-ir-hrap'-to","From G1909 and the base of G4476; to stitch upon, that is, fasten with the needle: - sew on."]},{"k":"G1977","v":["ἐπιῤῥίπτω","epirrhíptō","ep-ir-hrip'-to","From G1909 and G4496; to throw upon (literally or figuratively): - cast upon."]},{"k":"G1978","v":["ἐπίσημος","epísēmos","ep-is'-ay-mos","From G1909 and some form of the base of G4591; remarkable, that is, (figuratively) eminent: - notable, of note."]},{"k":"G1979","v":["ἐπισιτισμός","episitismós","ep-ee-sit-is-mos'","From a compound of G1909 and a derivative of G4621; a provisioning, that is, (concretely) food: - victuals."]},{"k":"G1980","v":["ἐπισκέπτομαι","episképtomai","ep-ee-skep'-tom-ahee","Middle voice from G1909 and the base of G4649; to inspect, that is, (by implication) to select; by extension to go to see, relieve: - look out, visit."]},{"k":"G1981","v":["ἐπισκηνόω","episkēnóō","ep-ee-skay-no'-o","From G1909 and G4637; to tent upon, that is, (figuratively) abide with: - rest upon."]},{"k":"G1982","v":["ἐπισκιάζω","episkiázō","ep-ee-skee-ad'-zo","From G1909 and a derivative of G4639; to cast a shade upon, that is, (by analogy) to envelop in a haze of brilliancy; figuratively to invest with preternatural influence: - overshadow."]},{"k":"G1983","v":["ἐπισκοπέω","episkopéō","ep-ee-skop-eh'-o","From G1909 and G4648; to oversee; by implication to beware: - look diligently, take the oversight."]},{"k":"G1984","v":["ἐπισκοπή","episkopḗ","ep-is-kop-ay'","From G1980; inspection (for relief); by implication superintendence; specifically the Christian “episcopate”: - the office of a “bishop”, bishoprick, visitation."]},{"k":"G1985","v":["ἐπίσκοπος","epískopos","ep-is'-kop-os","From G1909 and G4649 (in the sense of G1983); a superintendent, that is, Christian officer in general charge of a (or the) church (literally or figuratively): - bishop, overseer."]},{"k":"G1986","v":["ἐπισπάομαι","epispáomai","ep-ee-spah'-om-ahee","From G1909 and G4685; to draw over, that is, (with G203 implied) efface the mark of circumcision (by recovering with the foreskin): - become uncircumcised."]},{"k":"G1987","v":["ἐπίσταμαι","epístamai","ep-is'-tam-ahee","Apparently a middle voice of G2186 (with G3563 implied); to put the mind upon, that is, comprehend, or be acquainted with: - know, understand."]},{"k":"G1988","v":["ἐπιστάτης","epistátēs","ep-is-tat'-ace","From G1909 and a presumed derivative of G2476; an appointee over, that is, commander (teacher): - master."]},{"k":"G1989","v":["ἐπιστέλλω","epistéllō","ep-ee-stel'-lo","From G1909 and G4724; to enjoin (by writing), that is, (generally) to communicate by letter (for any purpose): - write (a letter, unto)."]},{"k":"G1990","v":["ἐπιστήμων","epistḗmōn","ep-ee-stay'-mone","From G1987; intelligent: - endued with knowledge."]},{"k":"G1991","v":["ἐπιστηρίζω","epistērízō","ep-ee-stay-rid'-zo","From G1909 and G4741; to support further, that is, reestablish: - confirm, strengthen."]},{"k":"G1992","v":["ἐπιστολή","epistolḗ","ep-is-tol-ay'","From G1989; a written message: - ”epistle”, letter."]},{"k":"G1993","v":["ἐπιστομίζω","epistomízō","ep-ee-stom-id'-zo","From G1909 and G4750; to put something over the mouth, that is, (figuratively) to silence: - stop mouths."]},{"k":"G1994","v":["ἐπιστρέφω","epistréphō","ep-ee-stref'-o","From G1909 and G4762; to revert (literally, figuratively or morally): - come (go) again, convert, (re-) turn (about, again)."]},{"k":"G1995","v":["ἐπιστροφή","epistrophḗ","ep-is-trof-ay'","From G1994; reversion, that is, moral revolution: - conversion."]},{"k":"G1996","v":["ἐπισυνάγω","episynágō","ep-ee-soon-ag'-o","From G1909 and G4863; to collect upon the same place: - gather (together)."]},{"k":"G1997","v":["ἐπισυναγωγή","episynagōgḗ","ep-ee-soon-ag-o-gay'","From G1996; a complete collection; specifically a Christian meeting (for worship): - assembling (gathering) together."]},{"k":"G1998","v":["ἐπισυντρέχω","episyntréchō","ep-ee-soon-trekh'-o","From G1909 and G4936; to hasten together upon one place (or a particular occasion): - come running together."]},{"k":"G1999","v":["ἐπισύστασις","episýstasis","ep-ee-soo'-stas-is","From the middle of a compound of G1909 and G4921; a conspiracy, that is, concourse (riotous or friendly): - that which cometh upon, + raising up."]},{"k":"G2000","v":["ἐπισφαλής","episphalḗs","ep-ee-sfal-ace'","From a compound of G1909 and σφάλλω sphallō (to trip); figuratively insecure: - dangerous."]},{"k":"G2001","v":["ἐπισχύω","epischýō","ep-is-khoo'-o","From G1909 and G2480; to avail further, that is, (figuratively) insist stoutly: - be the more fierce."]},{"k":"G2002","v":["ἐπισωρεύω","episōreúō","ep-ee-so-ryoo'-o","From G1909 and G4987; to accumulate further, that is, (figuratively) seek additionally: - heap."]},{"k":"G2003","v":["ἐπιταγή","epitagḗ","ep-ee-tag-ay'","From G2004; an injunction or decree; by implication authoritativeness: - authority, commandment."]},{"k":"G2004","v":["ἐπιτάσσω","epitássō","ep-ee-tas'-so","From G1909 and G5021; to arrange upon, that is, order: - charge, command, injoin."]},{"k":"G2005","v":["ἐπιτελέω","epiteléō","ep-ee-tel-eh'-o","From G1909 and G5055; to fulfill further (or completely), that is, execute; by implication to terminate, undergo: - accomplish, do, finish, (make) (perfect), perform (X -ance)."]},{"k":"G2006","v":["ἐπιτήδειος","epitḗdeios","ep-ee-tay'-di-os","From ἐπιτηδές epitēdes (enough); serviceable, that is, (by implication) requisite: - things which are needful."]},{"k":"G2007","v":["ἐπιτίθημι","epitíthēmi","ep-ee-tith'-ay-mee","From G1909 and G5087; to impose (in a friendly or hostile sense): - add unto, lade, lay upon, put (up) on, set on (up), + surname, X wound."]},{"k":"G2008","v":["ἐπιτιμάω","epitimáō","ep-ee-tee-mah'-o","From G1909 and G5091; to tax upon, that is, censure or admonish; by implication forbid: - (straitly) charge, rebuke."]},{"k":"G2009","v":["ἐπιτιμία","epitimía","ep-ee-tee-mee'-ah","From a compound of G1909 and G5092; properly esteem, that is, citizenship; used (in the sense of G2008) of a penalty: - punishment."]},{"k":"G2010","v":["ἐπιτρέπω","epitrépō","ep-ee-trep'-o","From G1909 and the base of G5157; to turn over (transfer), that is, allow: - give leave (liberty, license), let, permit, suffer."]},{"k":"G2011","v":["ἐπιτροπή","epitropḗ","ep-ee-trop-ay'","From G2010; permission, that is, (by implication) full power: - commission."]},{"k":"G2012","v":["ἐπίτροπος","epítropos","ep-it'-rop-os","From G1909 and G5158 (in the sense of G2011); a commissioner, that is, domestic manager, guardian: - steward, tutor."]},{"k":"G2013","v":["ἐπιτυγχάνω","epitynchánō","ep-ee-toong-khan'-o","From G1909 and G5177; to chance upon, that is, (by implication) attain: - obtain."]},{"k":"G2014","v":["ἐπιφαίνω","epiphaínō","ep-ee-fah'-ee-no","From G1909 and G5316; to shine upon, that is, become (literally) visible or (figuratively) known: - appear, give light."]},{"k":"G2015","v":["ἐπιφάνεια","epipháneia","ep-if-an'-i-ah","From G2016; a manifestation, that is, (specifically) the advent of Christ (past or future): - appearing, brightness."]},{"k":"G2016","v":["ἐπιφανής","epiphanḗs","ep-if-an-ace'","From G2014; conspicuous, that is, (figuratively) memorable: - notable."]},{"k":"G2017","v":["ἐπιφαύω","epiphaúō","ep-ee-fow'-o","A form of G2014; to illuminate (figuratively): - give light."]},{"k":"G2018","v":["ἐπιφέρω","epiphérō","ep-ee-fer'-o","From G1909 and G5342; to bear upon (or further), that is, adduce (personally or judicially [accuse, inflict]), superinduce: - add, bring (against), take."]},{"k":"G2019","v":["ἐπιφωνέω","epiphōnéō","ep-ee-fo-neh'-o","From G1909 and G5455; to call at something, that is, exclaim: - cry (against), give a shout."]},{"k":"G2020","v":["ἐπιφώσκω","epiphṓskō","ep-ee-foce'-ko","A form of G2017; to begin to grow light: - begin to dawn, X draw on."]},{"k":"G2021","v":["ἐπιχειρέω","epicheiréō","ep-ee-khi-reh'-o","From G1909 and G5495; to put the hand upon, that is, undertake: - go about, take in hand (upon)."]},{"k":"G2022","v":["ἐπιχέω","epichéō","ep-ee-kheh'-o","From G1909 and χέω cheō (to pour); to pour upon: - pour in."]},{"k":"G2023","v":["ἐπιχορηγέω","epichorēgéō","ep-ee-khor-ayg-eh'-o","From G1909 and G5524; to furnish besides, that is, fully supply, (figuratively) aid or contribute: - add, minister (nourishment, unto)."]},{"k":"G2024","v":["ἐπιχορηγία","epichorēgía","ep-ee-khor-ayg-ee'-ah","From G2023; contribution: - supply."]},{"k":"G2025","v":["ἐπιχρίω","epichríō","ep-ee-khree'-o","From G1909 and G5548; to smear over: - anoint."]},{"k":"G2026","v":["ἐποικοδομέω","epoikodoméō","ep-oy-kod-om-eh'-o","From G1909 and G3618; to build upon, that is, (figuratively) to rear up: - build thereon (thereupon, on, upon)."]},{"k":"G2027","v":["ἐποκέλλω","epokéllō","ep-ok-el'-lo","From G1909 and ὀκέλλω okellō (to urge); to drive upon the shore, that is, to beach a vessel: - run aground."]},{"k":"G2028","v":["ἐπονομάζω","eponomázō","ep-on-om-ad'-zo","From G1909 and G3687; to name further, that is, denominate: - call."]},{"k":"G2029","v":["ἐποπτεύω","epopteúō","ep-opt-yoo'-o","From G1909 and a derivative of G3700; to inspect, that is, watch: - behold."]},{"k":"G2030","v":["ἐπόπτης","epóptēs","ep-op'-tace","From G1909 and a presumed derivative of G3700; a looker on: - eye-witness."]},{"k":"G2031","v":["ἔπος","épos","ep'-os","From G2036; a word: - X say."]},{"k":"G2032","v":["ἐπουράνιος","epouránios","ep-oo-ran'-ee-os","From G1909 and G3772; above the sky: - celestial, (in) heaven (-ly), high."]},{"k":"G2033","v":["ἑπτά","heptá","hep-tah'","A primary number; seven: - seven."]},{"k":"G2034","v":["ἑπτάκις","heptákis","hep-tak-is'","Adverb from G2033; seven times: - seven times."]},{"k":"G2035","v":["ἑπτακισχίλιοι","heptakischílioi","hep-tak-is-khil'-ee-oy","From G2034 and G5507; seven times a thousand: - seven thousand."]},{"k":"G2036","v":["ἔπω","épō","ep'-o","A primary verb (used only in the definite past tense, the others being borrowed from G2046, G4483 and G5346); to speak or say (by word or writting): - answer, bid, bring word, call, command, grant, say (on), speak, tell. Compare G3004."]},{"k":"G2037","v":["Ἔραστος","Érastos","er'-as-tos","From ἐράω eraō (to love); beloved; Erastus, a Christian: - Erastus."]},{"k":"G2038","v":["ἐργάζομαι","ergázomai","er-gad'-zom-ahee","Middle voice from G2041; to toil (as a task, occupation, etc.), (by implication) effect, be engaged in or with, etc.: - commit, do, labor for, minister about, trade (by), work."]},{"k":"G2039","v":["ἐργασία","ergasía","er-gas-ee'-ah","From G2040; occupation; by implication profit, pains: - craft, diligence, gain, work."]},{"k":"G2040","v":["ἐργάτης","ergátēs","er-gat'-ace","From G2041; a toiler; figuratively a teacher: - labourer, worker (-men)."]},{"k":"G2041","v":["ἔργον","érgon","er'-gon","From ἔργω ergō (a primary but obsolete word; to work); toil (as an effort or occupation); by implication an act: - deed, doing, labour, work."]},{"k":"G2042","v":["ἐρεθίζω","erethízō","er-eth-id'-zo","From a presumed prolonged form of G2054; to stimulate (especially to anger): - provoke."]},{"k":"G2043","v":["ἐρείδω","ereídō","er-i'-do","Of obscure affinity; to prop, that is, (reflexively) get fast: - stick fast."]},{"k":"G2044","v":["ἐρεύγομαι","ereúgomai","er-yoog'-om-ahee","Of uncertain affinity; to belch, that is, (figuratively) to speak out: - utter."]},{"k":"G2045","v":["ἐρευνάω","ereunáō","er-yoo-nah'-o","Apparently from G2046 (through the idea of inquiry); to seek, that is, (figuratively) to investigate: - search."]},{"k":"G2046","v":["ἐρέω","eréō","er-eh'-o","Probably a fuller form of G4483; an alternate for G2036 in certain tenses; to utter, that is, speak or say: - call, say, speak (of), tell."]},{"k":"G2047","v":["ἐρημία","erēmía","er-ay-mee'-ah","From G2048; solitude (concretely): - desert, wilderness."]},{"k":"G2048","v":["ἔρημος","érēmos","er'-ay-mos","Of uncertain affinity; lonesome, that is, (by implication) waste (usually as a noun, G5561 being implied): - desert, desolate, solitary, wilderness."]},{"k":"G2049","v":["ἐρημόω","erēmóō","er-ay-mo'-o","From G2048; to lay waste (literally or figuratively): - (bring to, make) desolate (-ion), come to nought."]},{"k":"G2050","v":["ἐρήμωσις","erḗmōsis","er-ay'-mo-sis","From G2049; despoliation: - desolation."]},{"k":"G2051","v":["ἐρίζω","erízō","er-id'-zo","From G2054; to wrangle: - strive."]},{"k":"G2052","v":["ἐριθεία","eritheía","er-ith-i'-ah","Perhaps from the same as G2042; properly intrigue, that is, (by implication) faction: - contention (-ious), strife."]},{"k":"G2053","v":["ἔριον","érion","er'-ee-on","Of obscure affinity; wool: - wool."]},{"k":"G2054","v":["ἔρις","éris","er'-is","Of uncertain affinity; a quarrel, that is, (by implication) wrangling: - contention, debate, strife, variance."]},{"k":"G2055","v":["ἐρίφιον","eríphion","er-if'-ee-on","From G2056; a kidling, that is, (generally) goat (symbolically wicked person): - goat."]},{"k":"G2056","v":["ἔριφος","ériphos","er'-if-os","Perhaps from the same as G2053 (through the idea of hairiness); a kid or (generally) goat: - goat, kid."]},{"k":"G2057","v":["Ἑρμᾶς","Hermâs","her-mas'","Probably from G2060; Hermas, a Christian: - Hermas."]},{"k":"G2058","v":["ἑρμηνεία","hermēneía","her-may-ni'-ah","From the same as G2059; translation: - interpretation."]},{"k":"G2059","v":["ἑρμηνεύω","hermēneúō","her-mayn-yoo'-o","From a presumed derivative of G2060 (as the god of language); to translate: - interpret."]},{"k":"G2060","v":["Ἑρμῆς","Hermēs","her-mace'","Perhaps from G2046; Hermes, the name of the messenger of the Greek deities; also of a Christian: - Hermes, Mercury."]},{"k":"G2061","v":["Ἑρμογένης","Hermogénēs","her-mog-en'-ace","From G2060 and G1096; born of Hermes; Hermogenes, an apostate Christian: - Hermogenes."]},{"k":"G2062","v":["ἑρπετόν","herpetón","her-pet-on'","Neuter of a derivative of ἕρπω herpō (to creep); a reptile, that is, (by Hebraism (compare [H7431]) a small animal: - creeping thing, serpent."]},{"k":"G2063","v":["ἐρυθρός","erythrós","er-oo-thros'","Of uncertain affinity; red, that is, (with G2281) the red Sea: - red."]},{"k":"G2064","v":["ἔρχομαι","érchomai","er'-khom-ahee","Middle voice of a primary verb (used only in the present and imperfect tenses, the others being supplied by a kindred [middle voice] word, ἐλεύθομαι eleuthomai or ἔλθω elthō; which do not otherwise occur); to come or go (in a great variety of applications, literally and figuratively): - accompany, appear, bring, come enter, fall out, go, grow, X light, X next, pass, resort, be set."]},{"k":"G2065","v":["ἐρωτάω","erōtáō","er-o-tah'-o","Apparently from G2046 (compare G2045); to interrogate; by implication to request: - ask, beseech, desire, intreat, pray. Compare G4441."]},{"k":"G2066","v":["ἐσθής","esthḗs","es-thace'","From ἔννυμι hennumi (to clothe); dress: - apparel, clothing, raiment, robe."]},{"k":"G2067","v":["ἔσθησις","ésthēsis","es'-thay-sis","From a derivative of G2066; clothing (concretely): - garment."]},{"k":"G2068","v":["ἐσθίω","esthíō","es-thee'-o","Strengthened for a primary word ἔδω edō (to eat); used only in certain tenses, the rest being supplied by G5315; to eat (usually literally): - devour, eat, live."]},{"k":"G2069","v":["Ἐσλί","Eslí","es-lee'","Of Hebrew origin (probably for [H454]); Esli, an Israelite: - Esli."]},{"k":"G2070","v":["ἐσμέν","esmén","es-men'","Frist person plural indicative of G1510; we are: - are, be, have our being, X have hope, + [the gospel] was [preached unto] us."]},{"k":"G2071","v":["ἔσομαι","ésomai","es'-om-ahee","Future tense of G1510; will be: - shall (should) be (have), (shall) come (to pass), X may have, X fall, what would follow, X live long, X sojourn."]},{"k":"G2072","v":["ἔσοπτρον","ésoptron","es'-op-tron","From G1519 and a presumed derivative of G3700; a mirror (for looking into): - glass. Compare G2734."]},{"k":"G2073","v":["ἑσπέρα","hespéra","hes-per'-ah","Feminine of an adjective ἑσπερός hesperos (evening); the eve (G5610 being implied): - evening (-tide)."]},{"k":"G2074","v":["Ἐσρώμ","Esrṓm","es-rome","Of Hebrew origin [H2696]; Esrom (that is, Chetsron), an Israelite: - Esrom."]},{"k":"G2075","v":["ἐστέ","esté","es-teh'","Second person plural present indicative of G1510; ye are: - be, have been, belong."]},{"k":"G2076","v":["ἐστί","estí","es-tee'","Third person singular present indicative of G1510; he (she or it) is; also (with neuter plural) they are: - are, be (-long), call, X can [-not], come, consisteth, X dure for awhile, + follow, X have, (that) is (to say), make, meaneth, X must needs, + profit, + remaineth, + wrestle."]},{"k":"G2077","v":["ἔστω","éstō","es'-to","Second person singular present imperative and third person of G1510; be thou; let them be: - be."]},{"k":"G2078","v":["ἔσχατος","éschatos","es'-khat-os","A superlative probably from G2192 (in the sense of contiguity); farthest, final (of place or time): - ends of, last, latter end, lowest, uttermost."]},{"k":"G2079","v":["ἐσχάτως","eschátōs","es-khat'-oce","Adverb from G2078; finally, that is, (with G2192) at the extremity of life: - point of death."]},{"k":"G2080","v":["ἔσω","ésō","es'-o","From G1519; inside (as preposition or adjective): - (with-) in (-ner, -to, -ward)."]},{"k":"G2081","v":["ἔσωθεν","ésōthen","es'-o-then","From G2080; from inside; also used as equivalent to G2080 (inside): - inward (-ly), (from) within, without."]},{"k":"G2082","v":["ἐσώτερος","esṓteros","es-o'-ter-os","Comparative of G2080; interior: - inner, within."]},{"k":"G2083","v":["ἑταῖρος","hetaîros","het-ah'-ee-ros","From ἔτης etēs (a clansman); a comrade: - fellow, friend."]},{"k":"G2084","v":["ἑτερόγλωσσος","heteróglōssos","het-er-og'-loce-sos","From G2087 and G1100; other tongued, that is, a foreigner: - man of other tongue."]},{"k":"G2085","v":["ἑτεροδιδασκαλέω","heterodidaskaléō","het-er-od-id-as-kal-eh'-o","From G2087 and G1320; to instruct differently: - teach other doctrine (-wise)."]},{"k":"G2086","v":["ἑτεροζυγέω","heterozygéō","het-er-od-zoog-eh'-o","From a compound of G2087 and G2218; to yoke up differently, that is, (figuratively) to associate discordantly: - unequally yoke together with."]},{"k":"G2087","v":["ἕτερος","héteros","het'-er-os","Of uncertain affinity; (an-, the) other or different: - altered, else, next (day), one, (an-) other, some, strange."]},{"k":"G2088","v":["ἑτέρως","hetérōs","het-er'-oce","Adverb from G2087; differently: - otherwise."]},{"k":"G2089","v":["ἔτι","éti","et'-ee","Perhaps akin to G2094; “yet”, still (of time or degree): - after that, also, ever, (any) further, (t-) henceforth (more), hereafter, (any) longer, (any) more (-one), now, still, yet."]},{"k":"G2090","v":["ἑτοιμάζω","hetoimázō","het-oy-mad'-zo","From G2092; to prepare: - prepare, provide, make ready. Compare G2680."]},{"k":"G2091","v":["ἑτοιμασία","hetoimasía","het-oy-mas-ee'-ah","From G2090; preparation: - preparation."]},{"k":"G2092","v":["ἕτοιμος","hétoimos","het-oy'-mos","From an old noun ἕτεος heteos (fitness); adjusted, that is, ready: - prepared, (made) ready (-iness, to our hand)."]},{"k":"G2093","v":["ἑτοίμως","hetoímōs","het'-oy-moce","Adverb from G2092; in readiness: - ready."]},{"k":"G2094","v":["ἔτος","étos","et'-os","Apparently a primary word; a year: - year."]},{"k":"G2095","v":["εὖ","eû","yoo","Neuter of a primary word εὖς eus (good); (adverbially) well: - good, well (done)."]},{"k":"G2096","v":["Εὖα","Eûa","yoo'-ah","Of Hebrew origin [H2332]; Eua (or Eva, that is, Chavvah), the first woman: - Eve."]},{"k":"G2097","v":["εὐαγγελίζω","euangelízō","yoo-ang-ghel-id'-zo","From G2095 and G32; to announce good news (“evangelize”) especially the gospel: - declare, bring (declare, show) glad (good) tidings, preach (the gospel)."]},{"k":"G2098","v":["εὐαγγέλιον","euangélion","yoo-ang-ghel'-ee-on","From the same as G2097; a good message, that is, the gospel: - gospel."]},{"k":"G2099","v":["εὐαγγελιστής","euangelistḗs","yoo-ang-ghel-is-tace'","From G2097; a preacher of the gospel: - evangelist."]},{"k":"G2100","v":["εὐαρεστέω","euarestéō","yoo-ar-es-teh'-o","From G2101; to gratify entirely: - please (well)."]},{"k":"G2101","v":["εὐάρεστος","euárestos","yoo-ar'-es-tos","From G2095 and G701; fully agreeable: - acceptable (-ted), wellpleasing."]},{"k":"G2102","v":["εὐαρέστως","euaréstōs","yoo-ar-es'-toce","From G2101; quite agreeably: - acceptably, + please well."]},{"k":"G2103","v":["Εὔβουλος","Eúboulos","yoo'-boo-los","From G2095 and G1014; good willer; Eubulus, a Christian: - Eubulus."]},{"k":"G2104","v":["εὐγενής","eugenḗs","yoog-en'-ace","From G2095 and G1096; well born, that is, (literally) high in rank, or (figuratively) generous: - more noble, nobleman."]},{"k":"G2105","v":["εὐδία","eudía","yoo-dee'-ah","Feminine from G2095 and the alternate of G2203 (as the god of the weather); a clear sky, that is, fine weather: - fair weather."]},{"k":"G2106","v":["εὐδοκέω","eudokéō","yoo-dok-eh'-o","From G2095 and G1380; to think well of, that is, approve (an act); specifically to approbate (a person or thing): - think good, (be well) please (-d), be the good (have, take) pleasure, be willing."]},{"k":"G2107","v":["εὐδοκία","eudokía","yoo-dok-ee'-ah","From a presumed compound of G2095 and the base of G1380; satisfaction, that is, (subjectively) delight, or (objectively) kindness, wish, purpose: - desire, good pleasure (will), X seem good."]},{"k":"G2108","v":["εὐεργεσία","euergesía","yoo-erg-es-ee'-ah","From G2110; beneficence (generally or specifically): - benefit, good deed done."]},{"k":"G2109","v":["εὐεργετέω","euergetéō","yoo-erg-et-eh'-o","From G2110; to be philanthropic: - do good."]},{"k":"G2110","v":["εὐεργέτης","euergétēs","yoo-erg-et'-ace","From G2095 and the base of G2041; a worker of good, that is, (specifically) a philanthropist: - benefactor."]},{"k":"G2111","v":["εὔθετος","eúthetos","yoo'-thet-os","From G2095 and a derivative of G5087; well placed, that is, (figuratively) appropriate: - fit, meet."]},{"k":"G2112","v":["εὐθέως","euthéōs","yoo-theh'-oce","Adverb from G2117; directly, that is, at once or soon: - anon, as soon as, forthwith, immediately, shortly, straightway."]},{"k":"G2113","v":["εὐθυδρομέω","euthydroméō","yoo-thoo-drom-eh'-o","From G2117 and G1408; to lay a straight course, that is, sail direct: - (come) with a straight course."]},{"k":"G2114","v":["εὐθυμέω","euthyméō","yoo-thoo-meh'-o","From G2115; to cheer up, that is, (intransitively) be cheerful; neuter comparative (adverb) more cheerfully: - be of good cheer (merry)."]},{"k":"G2115","v":["εὔθυμος","eúthymos","yoo'-thoo-mos","From G2095 and G2372; in fine spirits, that is, cheerful: - of good cheer, the more cheerfully."]},{"k":"G2116","v":["εὐθύνω","euthýnō","yoo-thoo'-no","From G2117; to straighten (level); technically to steer: - governor, make straight."]},{"k":"G2117","v":["εὐθύς","euthýs","yoo-thoos'","Perhaps from G2095 and G5087; straight, that is, (literally) level, or (figuratively) true; adverbially (of time) at once: - anon, by and by, forthwith, immediately, straightway."]},{"k":"G2118","v":["εὐθύτης","euthýtēs","yoo-thoo'-tace","From G2117; rectitude: - righteousness."]},{"k":"G2119","v":["εὐκαιρέω","eukairéō","yoo-kahee-reh'-o","From G2121; to have good time, that is, opportunity or leisure: - have leisure (convenient time), spend time."]},{"k":"G2120","v":["εὐκαιρία","eukairía","yoo-kahee-ree'-ah","From G2121; a favorable occasion: - opportunity."]},{"k":"G2121","v":["εὔκαιρος","eúkairos","yoo'-kahee-ros","From G2095 and G2540; well timed, that is, opportune: - convenient, in time of need."]},{"k":"G2122","v":["εὐκαίρως","eukaírōs","yoo-kah'-ee-roce","Adverb from G2121; opportunely: - conveniently, in season."]},{"k":"G2123","v":["εὐκοπώτερος","eukopṓteros","yoo-kop-o'-ter-os","Comparative of a compound of G2095 and G2873; better for toil, that is, more facile: - easier."]},{"k":"G2124","v":["εὐλάβεια","eulábeia","yoo-lab'-i-ah","From G2126; properly caution, that is, (religiously) reverence (piety); by implication dread (concretely): - fear (-ed)."]},{"k":"G2125","v":["εὐλαβέομαι","eulabéomai","yoo-lab-eh'-om-ahee","Middle voice from G2126; to be circumspect, that is, (by implication) to be apprehensive; religiously, to reverence: - (moved with) fear."]},{"k":"G2126","v":["εὐλαβής","eulabḗs","yoo-lab-ace'","From G2095 and G2983; taking well (carefully), that is, circumspect (religiously, pious): - devout."]},{"k":"G2127","v":["εὐλογέω","eulogéō","yoo-log-eh'-o","From a compound of G2095 and G3056; to speak well of, that is, (religiously) to bless (thank or invoke a benediction upon, prosper): - bless, praise."]},{"k":"G2128","v":["εὐλογητός","eulogētós","yoo-log-ay-tos'","From G2127; adorable: - blessed."]},{"k":"G2129","v":["εὐλογία","eulogía","yoo-log-ee'-ah","From the same as G2127; fine speaking, that is, elegance of language; commendation (“eulogy”), that is, (reverentially) adoration; religiously, benediction; by implication consecration; by extension benefit or largess: - blessing (a matter of) bounty (X -tifully), fair speech."]},{"k":"G2130","v":["εὐμετάδοτος","eumetádotos","yoo-met-ad'-ot-os","From G2095 and a presumed derivative of G3330; good at imparting, that is, liberal: - ready to distribute."]},{"k":"G2131","v":["Εὐνίκη","Euníkē","yoo-nee'-kay","From G2095 and G3529; victorious; Eunice, a Jewess: - Eunice."]},{"k":"G2132","v":["εὐνοέω","eunoéō","yoo-no-eh'-o","From a compound of G2095 and G3563; to be well minded, that is, reconcile: - agree."]},{"k":"G2133","v":["εὔνοια","eúnoia","yoo'-noy-ah","From the same as G2132; kindness; euphemistically conjugal duty: - benevolence, good will."]},{"k":"G2134","v":["εὐνουχίζω","eunouchízō","yoo-noo-khid'-zo","From G2135; to castrate (figuratively live unmarried): - make . . . eunuch."]},{"k":"G2135","v":["εὐνοῦχος","eunoûchos","yoo-noo'-khos","From εὐνή eunē (a bed) and G2192; a castrated person (such being employed in Oriental bed chambers); by extension an impotent or unmarried man; by implication a chamberlain (state officer): - eunuch."]},{"k":"G2136","v":["Εὐοδία","Euodía","yoo-od-ee'-ah","From the same as G2137; fine travelling; Euodia, a Christian woman: - Euodias."]},{"k":"G2137","v":["εὐοδόω","euodóō","yoo-od-o'-o","From a compound of G2095 and G3598; to help on the road, that is, (passively) succeed in reaching; figuratively to succeed in business affairs: - (have a) prosper (-ous journey)."]},{"k":"G2138","v":["εὐπειθής","eupeithḗs","yoo-pi-thace'","From G2095 and G3982; good for persuasion, that is, (intransitively) compliant: - easy to be intreated."]},{"k":"G2139","v":["εὐπερίστατος","euperístatos","yoo-per-is'-tat-os","From G2095 and a derivative of a presumed compound of G4012 and G2476; well standing around, that is, (a competitor) thwarting (a racer) in every direction (figuratively of sin in general): - which doth so easily beset."]},{"k":"G2140","v":["εὐποιΐα","eupoiḯa","yoo-poy-ee'-ah","From a compound of G2095 and G4160; well doing, that is, beneficence: - to do good."]},{"k":"G2141","v":["εὐπορέω","euporéō","yoo-por-eh'-o","From a compound of G2090 and the base of G4197; (intransitively) to be good for passing through, that is, (figuratively) have pecuniary means: - ability."]},{"k":"G2142","v":["εὐπορία","euporía","yoo-por-ee'-ah","From the same as G2141; pecuniary resources: - wealth."]},{"k":"G2143","v":["εὐπρέπεια","euprépeia","yoo-prep'-i-ah","From a compound of G2095 and G4241; good suitableness, that is, gracefulness: - grace."]},{"k":"G2144","v":["εὐπρόσδεκτος","euprósdektos","yoo-pros'-dek-tos","From G2095 and a derivative of G4327; well received, that is, approved, favorable: - acceptable (-ted)."]},{"k":"G2145","v":["εὐπρόσεδρος","euprósedros","yoo-pros'-ed-ros","From G2095 and the same as G4332; sitting well towards, that is, (figuratively) assiduous (neuter diligent service): - X attend upon."]},{"k":"G2146","v":["εὐπροσωπέω","euprosōpéō","yoo-pros-o-peh'-o","From a compound of G2095 and G4383; to be of good countenance, that is, (figuratively) to make a display: - make a fair show."]},{"k":"G2147","v":["εὑρίσκω","heurískō","hyoo-ris'-ko","A prolonged form of a primary word εὕρω heurō; which (together with another cognate form, εὑρέω heureō) is used for it in all the tenses except the present and imperfect; to find (literally or figuratively): - find, get, obtain, perceive, see."]},{"k":"G2148","v":["Εὐροκλύδων","Euroklýdōn","yoo-rok-loo'-dohn","From Εὖρος Euros (the east wind) and G2830; a storm from the east (or south east), that is, (in modern phrase) a Levanter: - Euroklydon."]},{"k":"G2149","v":["εὐρύχωρος","eurýchōros","yoo-roo'-kho-ros","From εὐρύς eurus (wide) and G5561; spacious: - broad."]},{"k":"G2150","v":["εὐσέβεια","eusébeia","yoo-seb'-i-ah","From G2152; piety; specifically the gospel scheme: - godliness, holiness."]},{"k":"G2151","v":["εὐσεβέω","eusebéō","yoo-seb-eh'-o","From G2152; to be pious, that is, (towards God) to worship, or (towards parents) to respect (support): - show piety, worship."]},{"k":"G2152","v":["εὐσεβής","eusebḗs","yoo-seb-ace'","From G2095 and G4576; well reverent, that is, pious: - devout, godly."]},{"k":"G2153","v":["εὐσεβῶς","eusebōs","yoo-seb-oce'","Adverb from G2152; piously: - godly."]},{"k":"G2154","v":["εὔσημος","eúsēmos","yoo'-say-mos","From G2095 and the base of G4591; well indicated, that is, (figuratively) significant: - easy to be understood."]},{"k":"G2155","v":["εὔσπλαγχνος","eúsplanchnos","yoo'-splangkh-nos","From G2095 and G4698; well compassioned, that is, sympathetic: - pitiful, tender-hearted."]},{"k":"G2156","v":["εὐσχημόνως","euschēmónōs","yoo-skhay-mon'-ose","Adverb from G2158; decorously: - decently, honestly."]},{"k":"G2157","v":["εὐσχημοσύνη","euschēmosýnē","yoo-skhay-mos-oo'-nay","From G2158; decorousness: - comeliness."]},{"k":"G2158","v":["εὐσχήμων","euschḗmōn","yoo-skhay'-mone","From G2095 and G4976; well formed, that is, (figuratively) decorous, noble (in rank): - comely, honourable."]},{"k":"G2159","v":["εὐτόνως","eutónōs","yoo-ton'-oce","Adverb from a compound of G2095 and a derivation of τείνω teinō (to stretch); in a well strung manner, that is, (figuratively) intensely (in a good sense, cogently; in a bad one, fiercely): - mightily, vehemently."]},{"k":"G2160","v":["εὐτραπελία","eutrapelía","yoo-trap-el-ee'-ah","From a compound of G2095 and a derivative of the base of G5157 (meaning well turned, that is, ready at repartee, jocose); witticism, that is, (in a vulgar sense) ribaldry: - jesting."]},{"k":"G2161","v":["Εὔτυχος","Eútychos","yoo'-too-khos","From G2095 and a derivative of G5177; well fated, that is, fortunate; Eutychus, a young man: - Eutychus."]},{"k":"G2162","v":["εὐφημία","euphēmía","yoo-fay-mee'-ah","From G2163; good language (“euphemy”), that is, praise (repute): - good report."]},{"k":"G2163","v":["εὔφημος","eúphēmos","yoo'-fay-mos","From G2095 and G5345; well spoken of, that is, reputable: - of good report."]},{"k":"G2164","v":["εὐφορέω","euphoréō","yoo-for-eh'-o","From G2095 and G5409; to bear well, that is, be fertile: - bring forth abundantly."]},{"k":"G2165","v":["εὐφραίνω","euphraínō","yoo-frah'-ee-no","From G2095 and G5424; to put (middle voice or passive voice be) in a good frame of mind, that is, rejoice: - fare, make glad, be (make) merry, rejoice."]},{"k":"G2166","v":["Εὐφράτης","Euphrátēs","yoo-frat'-ace","Of foreign origin (compare [H6578]); Euphrates, a river of Asia: - Euphrates."]},{"k":"G2167","v":["εὐφροσύνη","euphrosýnē","yoo-fros-oo'-nay","From the same as G2165; joyfulness: - gladness, joy."]},{"k":"G2168","v":["εὐχαριστέω","eucharistéō","yoo-khar-is-teh'-o","From G2170; to be grateful, that is, (actually) to express gratitude (towards); specifically to say grace at a meal: - (give) thank (-ful, -s)."]},{"k":"G2169","v":["εὐχαριστία","eucharistía","yoo-khar-is-tee'-ah","From G2170; gratitude; actually grateful language (to God, as an act of worship): - thankfulness, (giving of) thanks (-giving)."]},{"k":"G2170","v":["εὐχάριστος","eucháristos","yoo-khar'-is-tos","From G2095 and a derivative of G5483; well favored, that is, (by implication) grateful: - thankful."]},{"k":"G2171","v":["εὐχή","euchḗ","yoo-khay'","From G2172; properly a wish, expressed as a petition to God, or in votive obligation: - prayer, vow."]},{"k":"G2172","v":["εὔχομαι","eúchomai","yoo'-khom-ahee","Middle voice of a primary verb; to wish; by implication to pray to God: - pray, will, wish."]},{"k":"G2173","v":["εὔχρηστος","eúchrēstos","yoo'-khrays-tos","From G2095 and G5543; easily used, that is, useful: - profitable, meet for use."]},{"k":"G2174","v":["εὐψυχέω","eupsychéō","yoo-psoo-kheh'-o","From a compound of G2095 and G5590; to be in good spirits, that is, feel encouraged: - be of good comfort."]},{"k":"G2175","v":["εὐωδία","euōdía","yoo-o-dee'-ah","From a compound of G2095 and a derivative of G3605; good scentedness, that is, fragrance: - sweet savour (smell, -smelling)."]},{"k":"G2176","v":["εὐώνυμος","euṓnymos","yoo-o'-noo-mos","From G2095 and G3686; properly well named (good omened), that is, the left (which was the lucky side among the pagan Greeks); neuter as adverb at the left hand: - (on the) left."]},{"k":"G2177","v":["ἐφάλλομαι","ephállomai","ef-al'-lom-ahee","From G1909 and G242; to spring upon: - leap on."]},{"k":"G2178","v":["ἐφάπαξ","ephápax","ef-ap'-ax","From G1909 and G530; upon one occasion (only): - (at) once (for all)."]},{"k":"G2179","v":["Ἐφεσῖνος","Ephesînos","ef-es-ee'-nos","From G2181; Ephesine, or situated at Ephesus: - of Ephesus."]},{"k":"G2180","v":["Ἐφέσιος","Ephésios","ef-es'-ee-os","From G2181; an Ephesian or inhabitant of Ephesus: - Ephesian, of Ephesus."]},{"k":"G2181","v":["Ἔφεσος","Éphesos","ef'-es-os","Probably of foreign origin; Ephesus, a city of Asia Minor: - Ephesus."]},{"k":"G2182","v":["ἐφευρετής","epheuretḗs","ef-yoo-ret'-ace","From a compound of G1909 and G2147; a discoverer, that is, contriver: - inventor."]},{"k":"G2183","v":["ἐφημερία","ephēmería","ef-ay-mer-ee'-ah","From G2184; diurnality, that is, (specifically) the quotidian rotation or class of the Jewish priests’ service at the Temple, as distributed by families: - course."]},{"k":"G2184","v":["ἐφήμερος","ephḗmeros","ef-ay'-mer-os","From G1909 and G2250; for a day (“ephemeral”), that is, diurnal: - daily."]},{"k":"G2185","v":["ἐφικνέομαι","ephiknéomai","ef-ik-neh'-om-ahee","From G1909 and a cognate of G2240; to arrive upon, that is, extend to: - reach."]},{"k":"G2186","v":["ἐφίστημι","ephístēmi","ef-is'-tay-mee","From G1909 and G2476; to stand upon, that is, be present (in various applications, friendly or otherwise, usually literally): - assault, come (in, to, unto, upon), be at hand (instant), present, stand (before, by, over)."]},{"k":"G2187","v":["Ἐφραίμ","Ephraím","ef-rah-im'","Of Hebrew origin ([H669] or better [H6085]); Ephraim, a place in Palestine: - Ephraim."]},{"k":"G2188","v":["ἐφφαθά","ephphathá","ef-fath-ah'","Of Chaldee origin [H6606]; be opened!: - Ephphatha."]},{"k":"G2189","v":["ἔχθρα","échthra","ekh'-thrah","Feminine of G2190; hostility; by implication a reason for opposition: - enmity, hatred."]},{"k":"G2190","v":["ἐχθρός","echthrós","ech-thros'","From a primary word ἔχθω echthō (to hate); hateful (passively odious, or actively hostile); usually as a noun, an adversary (especially Satan): - enemy, foe."]},{"k":"G2191","v":["ἔχιδνα","échidna","ekh'-id-nah","Of uncertain origin; an adder or other poisonous snake (literally or figuratively): - viper."]},{"k":"G2192","v":["ἔχω","échō","ekh'-o","A primary verb (including an alternate form σχέω scheō skheh'-o used in certain tenses only); to hold (used in very various applications, literally or figuratively, direct or remote; such as possession, ability, contiguity, relation or condition): - be (able, X hold, possessed with), accompany, + begin to amend, can (+ -not), X conceive, count, diseased, do, + eat, + enjoy, + fear, following, have, hold, keep, + lack, + go to law, lie, + must needs, + of necessity, + need, next, + recover, + reign, + rest, return, X sick, take for, + tremble, + uncircumcised, use."]},{"k":"G2193","v":["ἕως","héōs","heh'-oce","Of uncertain affinity; a conjugation, preposition and adverb of continuance, until (of time and place): - even (until, unto), (as) far (as), how long, (un-) til (-l), (hither-, un-, up) to, while (-s)."]},{"k":"G2194","v":["Ζαβουλών","Zaboulṓn","dzab-oo-lone'","Of Hebrew origin [H2074]; Zabulon (that is, Zebulon), a region of Palestine: - Zabulon."]},{"k":"G2195","v":["Ζακχαῖος","Zakchaîos","dzak-chah'-ee-yos","Of Hebrew origin (compare [H2140]); Zacchaeus, an Israelite: - Zacchus."]},{"k":"G2196","v":["Ζαρά","Zará","dzar-ah'","Of Hebrew origin [H2226]; Zara (that is, Zerach), an Israelite: - Zara."]},{"k":"G2197","v":["Ζαχαρίας","Zacharías","dzakh-ar-ee'-as","Of Hebrew origin [H2148]; Zacharias (that is, Zechariah), the name of two Israelites: - Zacharias."]},{"k":"G2198","v":["ζάω","záō","dzah'-o","A primary verb; to live (literally or figuratively): - life (-time), (a-) live (-ly), quick."]},{"k":"G2199","v":["Ζεβεδαῖος","Zebedaîos","dzeb-ed-ah'-yos","Of Hebrew origin (compare [H2067]); Zebedaeus, an Israelite: - Zebedee."]},{"k":"G2200","v":["ζεστός","zestós","dzes-tos'","From G2204; boiled, that is, (by implication) calid (figuratively fervent): - hot."]},{"k":"G2201","v":["ζεῦγος","zeûgos","dzyoo'-gos","From the same as G2218; a couple, that is, a team (of oxen yoked together) or brace (of birds tied together): - yoke, pair."]},{"k":"G2202","v":["ζευκτηρία","zeuktēría","dzook-tay-ree'-ah","Feminine of a derivative (at the second stage) from the same as G2218; a fastening (tiller rope): - band."]},{"k":"G2203","v":["Ζεύς","Zeús","dzyooce","Of uncertain affinity; in the oblique cases there is used instead of it a (probably cognate) name Δίς Dis deece which is otherwise obsolete; Zeus or Dis (among the Latins Jupiter or Jove), the supreme deity of the Greeks: - Jupiter."]},{"k":"G2204","v":["ζέω","zéō","dzeh'-o","A primary verb; to be hot (boil, of liquids; or glow, of solids), that is, (figuratively) be fervid (earnest): - be fervent."]},{"k":"G2205","v":["ζῆλος","zēlos","dzay'-los","From G2204; properly heat, that is, (figuratively) “zeal” (in a favorable sense, ardor; in an unfavorable one, jealousy, as of a husband [figuratively of God], or an enemy, malice): - emulation, envy (-ing), fervent mind, indignation, jealousy, zeal."]},{"k":"G2206","v":["ζηλόω","zēlóō","dzay-lo'-o","From G2205; to have warmth of feeling for or against: - affect, covet (earnestly), (have) desire, (move with) envy, be jealous over, (be) zealous (-ly affect)."]},{"k":"G2207","v":["ζηλωτής","zēlōtḗs","dzay-lo-tace'","From G2206; a “zealot”: - zealous."]},{"k":"G2208","v":["Ζηλωτής","Zēlōtḗs","dzay-lo-tace'","The same as G2207; a Zealot, that is, (specifically) partisan for Jewish political independence: - Zelotes."]},{"k":"G2209","v":["ζημία","zēmía","dzay-mee'-ah","Probably akin to the base of G1150 (through the idea of violence); detriment: - damage, loss."]},{"k":"G2210","v":["ζημιόω","zēmióō","dzay-mee-o'-o","From G2209; to injure, that is, (reflexively or passively) to experience detriment: - be cast away, receive damage, lose, suffer loss."]},{"k":"G2211","v":["Ζηνᾶς","Zēnâs","dzay-nas'","Probably contracted from a poetic form of G2203 and G1435; Jove given; Zenas, a Christian: - Zenas."]},{"k":"G2212","v":["ζητέω","zētéō","dzay-teh'-o","Of uncertain affinity; to seek (literally or figuratively); specifically (by Hebraism) to worship (God), or (in a bad sense) to plot (against life): - be (go) about, desire, endeavour, enquire (for), require, (X will) seek (after, for, means). Compare G4441."]},{"k":"G2213","v":["ζήτημα","zḗtēma","dzay'-tay-mah","From G2212; a search (properly concrete), that is, (in words) a debate: - question."]},{"k":"G2214","v":["ζήτησις","zḗtēsis","dzay'-tay-sis","From G2212; a searching (properly the act), that is, a dispute or its theme: - question."]},{"k":"G2215","v":["ζιζάνιον","zizánion","dziz-an'-ee-on","Of uncertain origin; darnel or false grain: - tares."]},{"k":"G2216","v":["Ζοροβάβελ","Zorobábel","dzor-ob-ab'-el","Of Hebrew origin [H2216]; Zorobabel (that is, Zerubbabel), an Israelite: - Zorobabel."]},{"k":"G2217","v":["ζόφος","zóphos","dzof'-os","Akin to the base of G3509; gloom (as shrouding like a cloud): - blackness, darkness, mist."]},{"k":"G2218","v":["ζυγός","zygós","dzoo-gos'","From the root of ζεύγνυμι zeugnumi (to join, especially by a “yoke”); a coupling, that is, (figuratively) servitude (a law or obligation); also (literally) the beam of the balance (as connecting the scales): - pair of balances, yoke."]},{"k":"G2219","v":["ζύμη","zýmē","dzoo'-may","Probably from G2204; ferment (as if boiling up): - leaven."]},{"k":"G2220","v":["ζυμόω","zymóō","dzoo-mo'-o","From G2219; to cause to ferment: - leaven."]},{"k":"G2221","v":["ζωγρέω","zōgréō","dzogue-reh'-o","From the same as G2226 and G64; to take alive (make a prisoner of war), that is, (figuratively) to capture or ensnare: - take captive, catch."]},{"k":"G2222","v":["ζωή","zōḗ","dzo-ay'","From G2198; life (literally or figuratively): - life (-time). Compare G5590."]},{"k":"G2223","v":["ζώνη","zṓnē","dzo'-nay","Probably akin to the base of G2218; a belt; by implication a pocket: - girdle, purse."]},{"k":"G2224","v":["ζώννυμι","zṓnnymi","dzone'-noo-mi","From G2223; to bind about (especially with a belt): - gird."]},{"k":"G2225","v":["ζωογονέω","zōogonéō","dzo-og-on-eh'-o","From the same as G2226 and a derivative of G1096; to engender alive that is, (by analogy) to rescue (passively be saved) from death: - live, preserve."]},{"k":"G2226","v":["ζῶον","zōon","dzo'-on","Neuter of a derivative of G2198; a live thing, that is, an animal: - beast."]},{"k":"G2227","v":["ζωοποιέω","zōopoiéō","dzo-op-oy-eh'-o","From the same as G2226 and G4160; to (re-) vitalize (literally or figuratively): - make alive, give life, quicken."]},{"k":"G2228","v":["ἤ","ḗ","ay","A primary particle of distinction between two connected terms; disjunctive, or; comparative, than: - and, but (either), (n-) either, except it be, (n-) or (else), rather, save, than, that, what, yea. Often used in connection with other particles. Compare especially G2235, G2260, G2273."]},{"k":"G2229","v":["ἦ","ē","ay","An adverb of confirmation; perhaps intensive of G2228; used only (in the N. T.) before G3303; assuredly: - surely."]},{"k":"G2230","v":["ἡγεμονεύω","hēgemoneúō","hayg-em-on-yoo'-o","From G2232; to act as ruler: - be governor."]},{"k":"G2231","v":["ἡγεμονία","hēgemonía","hayg-em-on-ee'-ah","From G2232; government, that is, (in time) official term: - reign."]},{"k":"G2232","v":["ἡγεμών","hēgemṓn","hayg-em-ohn'","From G2233; a leader, that is, chief person (or figuratively place) of a province: - governor, prince, ruler."]},{"k":"G2233","v":["ἡγέομαι","hēgéomai","hayg-eh'-om-ahee","Middle voice of a (presumed) strengthened form of G71; to lead, that is, command (with official authority); figuratively to deem, that is, consider: - account, (be) chief, count, esteem, governor, judge, have the rule over, suppose, think."]},{"k":"G2234","v":["ἡδέως","hēdéōs","hay-deh'-oce","Adverb from a derivative of the base of G2237; sweetly, that is, (figuratively) with pleasure: - gladly."]},{"k":"G2235","v":["ἤδη","ḗdē","ay'-day","Apparently from G2228 (or possibly G2229) and G1211; even now: - already, (even) now (already), by this time."]},{"k":"G2236","v":["ἥδιστα","hḗdista","hay'-dis-tah","Neuter plural of the superlative of the same as G2234; with great pleasure: - most (very) gladly."]},{"k":"G2237","v":["ἡδονή","hēdonḗ","hay-don-ay'","From ἁνδάνω handanō (to please); sensual delight; by implication desire: - lust, pleasure."]},{"k":"G2238","v":["ἡδύοσμον","hēdýosmon","hay-doo'-os-mon","Neuter of a compound of the same as G2234 and G3744; a sweet scented plant, that is, mint: - mint."]},{"k":"G2239","v":["ἦθος","ēthos","ay'-thos","A strengthened form of G1485; usage, that is, (plural) moral habits: - manners."]},{"k":"G2240","v":["ἥκω","hḗkō","hay'-ko","A primary verb; to arrive, that is, be present (literally or figuratively): - come."]},{"k":"G2241","v":["ἠλί","ēlí","ay-lee'","Of Hebrew origin ([H410] with pronoun suffix); my God: - Eli."]},{"k":"G2242","v":["Ἡλί","Hēlí","hay-lee'","Of Hebrew origin [H5941]; Heli (that is, Eli), an Israelite: - Heli."]},{"k":"G2243","v":["Ἡλίας","Hēlías","hay-lee'-as","Of Hebrew origin [H452]; Helias (that is, Elijah), an Israelite: - Elias."]},{"k":"G2244","v":["ἡλικία","hēlikía","hay-lik-ee'-ah","From the same as G2245; maturity (in years or size): - age, stature."]},{"k":"G2245","v":["ἡλίκος","hēlíkos","hay-lee'-kos","From ἧλιξ hēlix (a comrade, that is, one of the same age); as big as, that is, (interjectively) how much: - how (what) great."]},{"k":"G2246","v":["ἥλιος","hḗlios","hay'-lee-os","From ἕλη helē (a ray; perhaps akin to the alternate of G138); the sun; by implication light: - + east, sun."]},{"k":"G2247","v":["ἧλος","hēlos","hay'-los","Of uncertain affinity; a stud, that is, spike: - nail."]},{"k":"G2248","v":["ἡμᾶς","hēmâs","hay-mas'","Accusative plural of G1473; us: - our, us, we."]},{"k":"G2249","v":["ἡμεῖς","hēmeîs","hay-mice'","Nomitive plural of G1473; we (only used when emphatic): - us, we (ourselves)."]},{"k":"G2250","v":["ἡμέρα","hēméra","hay-mer'-ah","Feminine (with G5610 implied) of a derivative of ἧμαι hēmai (to sit; akin to the base of G1476) meaning tame, that is, gentle; day, that is, (literally) the time space between dawn and dark, or the whole 24 hours (but several days were usually reckoned by the Jews as inclusive of the parts of both extremes); figuratively a period (always defined more or less clearly by the context): - age, + alway, (mid-) day (by day, [-ly]), + for ever, judgment, (day) time, while, years."]},{"k":"G2251","v":["ἡμέτερος","hēméteros","hay-met'-er-os","From G2349; our. (Or your by a different reading.): - our, your [by a different reading]."]},{"k":"G2252","v":["ἤμην","ḗmēn","ay'-mane","A prolonged form of G2358; I was. (Sometimes unexpressed.): - be, was. [Sometimes unexpressed.]"]},{"k":"G2253","v":["ἡμιθανής","hēmithanḗs","hay-mee-than-ace'","From a presumed compound of the base of G2255 and G2348; half dead, that is, entirely exhausted: - half dead."]},{"k":"G2254","v":["ἡμῖν","hēmîn","hay-meen'","Dative plural of G1473; to (or for, with, by) us: - our, (for) us, we."]},{"k":"G2255","v":["ἥμισυ","hḗmisy","hay'-mee-soo","Neuter of a derivative from an inseparable prefix akin to G260 (through the idea of partition involved in connection) and meaning semi-; (as noun) half: - half."]},{"k":"G2256","v":["ἡμιώριον","hēmiṓrion","hay-mee-o'-ree-on","From the base of G2255 and G5610; a half hour: - half an hour."]},{"k":"G2257","v":["ἡμῶν","hēmōn","hay-mone'","Genitive plural of G1473; of (or from) us: - our (company), us, we."]},{"k":"G2258","v":["ἦν","ēn","ane","Imperfect of G1510; I (thou, etc.) was (wast or were): - + agree, be, X have (+ charge of), hold, use, was (-t), were."]},{"k":"G2259","v":["ἡνίκα","hēníka","hay-nee'-kah","Of uncertain affinity; at which time: - when."]},{"k":"G2260","v":["ἤπερ","ḗper","ay'-per","From G2228 and G4007; than at all (or than perhaps, than indeed): - than."]},{"k":"G2261","v":["ἤπιος","ḗpios","ay'-pee-os","Probably from G2031; properly affable, that is, mild or kind: - gentle."]},{"k":"G2262","v":["Ἤρ","Ḗr","ayr","Of Hebrew origin [H6147]; Er, an Israelite: - Er."]},{"k":"G2263","v":["ἤρεμος","ḗremos","ay'-rem-os","Perhaps by transposition from G2048 (through the idea of stillness); tranquil: - quiet."]},{"k":"G2264","v":["Ἡρώδης","Hērṓdēs","hay-ro'-dace","Compound of ἥρως hērōs (a “hero”) and G1491; heroic; Herodes, the name of four Jewish kings: - Herod."]},{"k":"G2265","v":["Ἡρωδιανοί","Hērōdianoí","hay-ro-dee-an-oy'","Plural of a derivative of G2264; Herodians, that is, partisans of Herodes: - Herodians."]},{"k":"G2266","v":["Ἡρωδιάς","Hērōdiás","hay-ro-dee-as'","From G2264; Herodias, a woman of the Herodian family: - Herodias."]},{"k":"G2267","v":["Ἡρωδίων","Hērōdíōn","hay-ro-dee'-ohn","From G2264; Herodion, a Christian: - Herodion."]},{"k":"G2268","v":["Ἡσαΐας","Hēsaḯas","hay-sah-ee'-as","Of Hebrew origin [H3470]; Hesaias (that is, Jeshajah), an Israelite: - Esaias."]},{"k":"G2269","v":["Ἠσαῦ","Ēsaû","ay-sow'","Of Hebrew origin [H6215]; Esau, an Edomite: - Esau."]},{"k":"G2270","v":["ἡσυχάζω","hēsycházō","hay-soo-khad'-zo","From the same as G2272; to keep still (intransitively), that is, refrain from labor, meddlesomeness or speech: - cease, hold peace, be quiet, rest."]},{"k":"G2271","v":["ἡσυχία","hēsychía","hay-soo-khee'-ah","Feminine of G2272; (as noun) stillness, that is, desistance from bustle or language: - quietness, silence."]},{"k":"G2272","v":["ἡσύχιος","hēsýchios","hay-soo'-khee-os","A prolonged form of a compound probably of a derivative of the base of G1476 and perhaps G2192; properly keeping one’s seat (sedentary), that is, (by implication) still (undisturbed, undisturbing): - peaceable, quiet."]},{"k":"G2273","v":["ἤτοι","ḗtoi","ay'-toy","From G2228 and G5104; either indeed: - whether."]},{"k":"G2274","v":["ἡττάω","hēttáō","hayt-tah'-o","From the same as G2276; to make worse, that is, vanquish (literally or figuratively); by implication to rate lower: - be inferior, overcome."]},{"k":"G2275","v":["ἥττημα","hḗttēma","hayt'-tay-mah","From G2274; a deterioration, that is, (objectively) failure or (subjectively) loss: - diminishing, fault."]},{"k":"G2276","v":["ἥττον","hḗtton","hate'-ton","Neuter of a compound of ἧκα hēka ( slightly) used for that of G2556; worse (as noun); by implication less (as adverb): - less, worse."]},{"k":"G2277","v":["ἤτω","ḗtō","ay'-to","Third person singular imperative of G1510; let him (or it) be: - let . . . be."]},{"k":"G2278","v":["ἠχέω","ēchéō","ay-kheh'-o","From G2279; to make a loud noise, that is, reverberate: - roar, sound."]},{"k":"G2279","v":["ἦχος","ēchos","ay'-khos","Of uncertain affinity; a loud or confused noise (“echo”), that is, roar; figuratively a rumor: - fame, sound."]},{"k":"G2280","v":["Θαδδαῖος","Thaddaîos","thad-dah'-yos","Of uncertain origin; Thaddaeus, one of the Apostles: - Thaddus."]},{"k":"G2281","v":["θάλασσα","thálassa","thal'-as-sah","Probably prolonged from G251; the sea (generally or specifically): - sea."]},{"k":"G2282","v":["θάλπω","thálpō","thal'-po","Probably akin to θάλλω thallō (to warm); to brood, that is, (figuratively) to foster: - cherish."]},{"k":"G2283","v":["Θάμαρ","Thámar","tham'-ar","Of Hebrew origin [H8559]; Thamar (that is, Tamar), an Israelitess: - Thamar."]},{"k":"G2284","v":["θαμβέω","thambéō","tham-beh'-o","From G2285; to stupefy (with surprise), that is, astound: - amaze, astonish."]},{"k":"G2285","v":["θάμβος","thámbos","tham'-bos","Akin to an obsolete τάφω taphō (to dumbfound); stupefaction (by surprise), that is, astonishment: - X amazed, + astonished, wonder."]},{"k":"G2286","v":["θανάσιμος","thanásimos","than-as'-ee-mos","From G2288; fatal, that is, poisonous: - deadly."]},{"k":"G2287","v":["θανατήφορος","thanatḗphoros","than-at-ay'-for-os","From (the feminine form of) G2288 and G5342; death bearing, that is, fatal: - deadly."]},{"k":"G2288","v":["θάνατος","thánatos","than'-at-os","From G2348; (properly an adjective used as a noun) death (literally or figuratively): - X deadly, (be . . .) death."]},{"k":"G2289","v":["θανατόω","thanatóō","than-at-o'-o","From G2288; to kill (literally or figuratively): - become dead, (cause to be) put to death, kill, mortify."]},{"k":"G2290","v":["θάπτω","tháptō","thap'-to","A primary verb; to celebrate funeral rites, that is, inter: - bury."]},{"k":"G2291","v":["Θάρα","Thára","thar'-ah","Of Hebrew origin [H8646]; Thara (that is, Terach), the father of Abraham: - Thara."]},{"k":"G2292","v":["θαῤῥέω","tharrhéō","thar-hreh'-o","Another form for G2293; to exercise courage: - be bold, X boldly, have confidence, be confident. Compare G5111."]},{"k":"G2293","v":["θαρσέω","tharséō","thar-seh'-o","From G2294; to have courage: - be of good cheer (comfort). Compare G2292."]},{"k":"G2294","v":["θάρσος","thársos","thar'-sos","Akin (by transposition) to θράσος thrasos (daring); boldness (subjectively): - courage."]},{"k":"G2295","v":["θαῦμα","thaûma","thos'-mah","Apparently from a form of G2300; wonder (properly concrete; but by implication abstract): - admiration."]},{"k":"G2296","v":["θαυμάζω","thaumázō","thou-mad'-zo","From G2295; to wonder; by implication to admire: - admire, have in admiration, marvel, wonder."]},{"k":"G2297","v":["θαυμάσιος","thaumásios","thow-mas'-ee-os","From G2295; wondrous, that is, (neuter as noun) a miracle: - wonderful thing."]},{"k":"G2298","v":["θαυμαστός","thaumastós","thow-mas-tos'","From G2296; wondered at, that is, (by implication) wonderful: - marvel (-lous)."]},{"k":"G2299","v":["θεά","theá","theh-ah'","Feminine of G2316; a female deity: - goddess."]},{"k":"G2300","v":["θεάομαι","theáomai","theh-ah'-om-ahee","A prolonged form of a primary verb; to look closely at, that is, (by implication) to perceive (literally or figuratively); by extension to visit: - behold, look (upon), see. Compare G3700."]},{"k":"G2301","v":["θεατρίζω","theatrízō","theh-at-rid'-zo","From G2302; to expose as a spectacle: - make a gazing stock."]},{"k":"G2302","v":["θέατρον","théatron","theh'-at-ron","From G2300; a place for public show (“theatre”), that is, general audience room; by implication a show itself (figuratively): - spectacle, theatre."]},{"k":"G2303","v":["θεῖον","theîon","thi'-on","Probably neuter of G2304 (in its original sense of flashing); sulphur: - brimstone."]},{"k":"G2304","v":["θεῖος","theîos","thi'-os","From G2316; godlike (neuter as noun, divinity): - divine, godhead."]},{"k":"G2305","v":["θειότης","theiótēs","thi-ot'-ace","From G2304; divinity (abstractly): - godhead."]},{"k":"G2306","v":["θειώδης","theiṓdēs","thi-o'-dace","From G2303 and G1491; sulphur like, that is, sulphurous: - brimstone."]},{"k":"G2307","v":["θέλημα","thélēma","thel'-ay-mah","From the prolonged form of G2309; a determination (properly the thing), that is, (actively) choice (specifically purpose, decree; abstractly volition) or (passively) inclination: - desire, pleasure, will."]},{"k":"G2308","v":["θέλησις","thélēsis","thel'-ay-sis","From G2309; determination (properly the act), that is, option: - will."]},{"k":"G2309","v":["θέλω","thélō","thel'-o","Either the first or the second form may be used. In certain tenses θελέω theleō    thel-eh'-o (and ἐθέλέω  etheleō eth-el-eh'-o) are used, which are otherwise obsolete; apparently strengthened from the alternate form of G138; to determine (as an active voice option from subjective impulse; whereas G1014 properly denotes rather a passive voice acquiescence in objective considerations), that is, choose or prefer (literally or figuratively); by implication to wish, that is, be inclined to (sometimes adverbially gladly); impersonally for the future tense, to be about to; by Hebraism to delight in: - desire, be disposed (forward), intend, list, love, mean, please, have rather, (be) will (have, -ling, -ling [ly])."]},{"k":"G2310","v":["θεμέλιος","themélios","them-el'-ee-os","From a derivative of G5087; something put down, that is, a substruction (of a building, etc.), (literally or figuratively): - foundation."]},{"k":"G2311","v":["θεμελιόω","themelióō","them-el-ee-o'-o","From G2310; to lay a basis for, that is, (literally) erect, or (figuratively) consolidate: - (lay the) found (-ation), ground, settle."]},{"k":"G2312","v":["θεοδίδακτος","theodídaktos","theh-od-id'-ak-tos","From G2316 and G1321; divinely instructed: - taught of God."]},{"k":"G2313","v":["θεομαχέω","theomachéō","theh-o-makh-eh'-o","From G2314; to resist deity: - fight against God."]},{"k":"G2314","v":["θεομάχος","theomáchos","theh-om'-akh-os","From G2316 and G3164; an opponent of deity: - to fight against God."]},{"k":"G2315","v":["θεόπνευστος","theópneustos","theh-op'-nyoo-stos","From G2316 and a presumed derivative of G4154; divinely breathed in: - given by inspiration of God."]},{"k":"G2316","v":["θεός","theós","theh'-os","Of uncertain affinity; a deity, especially (with G3588) the supreme Divinity; figuratively a magistrate; by Hebraism very: - X exceeding, God, god [-ly, -ward]."]},{"k":"G2317","v":["θεοσέβεια","theosébeia","theh-os-eb'-i-ah","From G2318; devoutness, that is, piety: - godliness."]},{"k":"G2318","v":["θεοσεβής","theosebḗs","theh-os-eb-ace'","From G2316 and G4576; reverent of God, that is, pious: - worshipper of God."]},{"k":"G2319","v":["θεοστυγής","theostygḗs","theh-os-too-gace'","From G2316 and the base of G4767; hateful to God, that is, impious: - hater of God."]},{"k":"G2320","v":["θεότης","theótēs","theh-ot'-ace","From G2316; divinity (abstractly): - godhead."]},{"k":"G2321","v":["Θεόφιλος","Theóphilos","theh-of'-il-os","From G2316 and G5384; friend of God; Theophilus, a Christian: - Theophilus."]},{"k":"G2322","v":["θεραπεία","therapeía","ther-ap-i'-ah","From G2323; attendance (specifically medical, that is, cure); figuratively and collectively domestics: - healing, household."]},{"k":"G2323","v":["θεραπεύω","therapeúō","ther-ap-yoo'-o","From the same as G2324; to wait upon menially, that is, (figuratively) to adore (God), or (specifically) to relieve (of disease): - cure, heal, worship."]},{"k":"G2324","v":["θεράπων","therápōn","ther-ap'-ohn","Apparently a participle from an otherwise obsolete derivation of the base of G2330; a menial attendant (as if cherishing): - servant."]},{"k":"G2325","v":["θερίζω","therízō","ther-id'-zo","From G2330 (in the sense of the crop); to harvest: - reap."]},{"k":"G2326","v":["θερισμός","therismós","ther-is-mos'","From G2325; reaping, that is, the crop: - harvest."]},{"k":"G2327","v":["θεριστής","theristḗs","ther-is-tace'","From G2325; a harvester: - reaper."]},{"k":"G2328","v":["θερμαίνω","thermaínō","ther-mah'-ee-no","From G2329; to heat (oneself): - (be) warm (-ed, self)."]},{"k":"G2329","v":["θέρμη","thérmē","ther'-may","From the base of G2330; warmth: - heat."]},{"k":"G2330","v":["θέρος","théros","ther'-os","From a primary word θέρω therō (to heat); properly heat, that is, summer: - summer."]},{"k":"G2331","v":["Θεσσαλονικεύς","Thessalonikeús","thes-sal-on-ik-yoos'","From G2332; a Thessalonican, that is, inhabitant of Thessalonice: - Thessalonian."]},{"k":"G2332","v":["Θεσσαλονίκη","Thessaloníkē","thes-sal-on-ee'-kay","From Θεσσαλός Thessalos (a Thessalian) and G3529; Thessalonice, a place in Asia Minor: - Thessalonica."]},{"k":"G2333","v":["Θευδᾶς","Theudâs","thyoo-das'","Of uncertain origin; Theudas, as Israelite: - Theudas."]},{"k":"G2334","v":["θεωρέω","theōréō","theh-o-reh'-o","From a derivative of G2300 (perhaps by adverb of G3708); to be a spectator of, that is, discern, (literally, figuratively [experience] or intensively [acknowledge]): - behold, consider, look on, perceive, see. Compare G3700."]},{"k":"G2335","v":["θεωρία","theōría","theh-o-ree'-ah","From the same as G2334; spectatorship, that is, (concretely) a spectacle: - sight."]},{"k":"G2336","v":["θήκη","thḗkē","thay'-kay","From G5087; a receptacle, that is, scabbard: - sheath."]},{"k":"G2337","v":["θηλάζω","thēlázō","thay-lad'-zo","From θηλή thēlē (the nipple); to suckle; by implication to suck: - (give) suck (-ling)."]},{"k":"G2338","v":["θῆλυς","thēlys","thay'-loos","From the same as G2337; female: - female, woman."]},{"k":"G2339","v":["θήρα","thḗra","thay'-rah","From θήρ thēr (a wild animal, as game); hunting, that is, (figuratively) destruction: - trap."]},{"k":"G2340","v":["θηρεύω","thēreúō","thay-ryoo'-o","From G2339; to hunt (an animal), that is, (figuratively) to carp at: - catch."]},{"k":"G2341","v":["θηριομαχέω","thēriomachéō","thay-ree-om-akh-eh'-o","From a compound of G2342 and G3164; to be a beast fighter (in the gladiatorial show), that is, (figuratively) to encounter (furious men): - fight with wild beasts."]},{"k":"G2342","v":["θηρίον","thēríon","thay-ree'-on","Diminutive from the same as G2339; a dangerous animal: - (venomous, wild) beast."]},{"k":"G2343","v":["θησαυρίζω","thēsaurízō","thay-sow-rid'-zo","From G2344; to amass or reserve (literally or figuratively): - lay up (treasure), (keep) in store, (heap) treasure (together, up)."]},{"k":"G2344","v":["θησαυρός","thēsaurós","thay-sow-ros'","From G5087; a deposit, that is, wealth (literally or figuratively): - treasure."]},{"k":"G2345","v":["θιγγάνω","thingánō","thing-gan'-o","A prolonged form of an obsolete primary word θίγω thigō (to finger); to manipulate, that is, have to do with; by implication to injure: - handle, touch."]},{"k":"G2346","v":["θλίβω","thlíbō","thlee'-bo","Akin to the base of G5147; to crowd (literally or figuratively): - afflict, narrow, throng, suffer tribulation, trouble."]},{"k":"G2347","v":["θλῖψις","thlîpsis","thlip'-sis","From G2346; pressure (literally or figuratively): - afflicted, (-tion), anguish, burdened, persecution, tribulation, trouble."]},{"k":"G2348","v":["θνήσκω","thnḗskō","thnay'-sko","A strengthened form of a simpler primary word θάνω thanō (which is used for it only in certain tenses); to die (literally or figuratively): - be dead, die."]},{"k":"G2349","v":["θνητός","thnētós","thnay-tos'","From G2348; liable to die: - mortal (-ity)."]},{"k":"G2350","v":["θορυβέω","thorybéō","thor-oo-beh'-o","From G2351; to be in tumult, that is, disturb, clamor: - make ado (a noise), trouble self, set on an uproar."]},{"k":"G2351","v":["θόρυβος","thórybos","thor'-oo-bos","From the base of G2360; a disturbance: - tumult, uproar."]},{"k":"G2352","v":["θραύω","thraúō","throw'-o","A primary verb; to crush: - bruise. Compare G4486."]},{"k":"G2353","v":["θρέμμα","thrémma","threm'-mah","From G5142; stock (as raised on a farm): - cattle."]},{"k":"G2354","v":["θρηνέω","thrēnéō","thray-neh'-o","From G2355; to bewail: - lament, mourn."]},{"k":"G2355","v":["θρῆνος","thrēnos","thray'-nos","From the base of G2360; wailing: - lamentation."]},{"k":"G2356","v":["θρησκεία","thrēskeía","thrace-ki'-ah","From a derivative of G2357; ceremonial observance: - religion, worshipping."]},{"k":"G2357","v":["θρησκός","thrēskós","thrace'-kos","Probably from the base of G2360; ceremonious in worship (as demonstrative), that is, pious: - religious."]},{"k":"G2358","v":["θριαμβεύω","thriambeúō","three-am-byoo'-o","From a prolonged compound of the base of G2360 and a derivative of G680 (meaning a noisy iambus, sung in honor of Bacchus); to make an acclamatory procession, that is, (figuratively) to conquer or (by Hebraism) to give victory: - (cause) to triumph (over)."]},{"k":"G2359","v":["θρίξ","thríx","threeks","Of uncertain derivation; hair: - hair. Compare G2864."]},{"k":"G2360","v":["θροέω","throéō","thro-eh'-o","From θρέομαι threomai (to wail); to clamor, that is, (by implication) to frighten: - trouble."]},{"k":"G2361","v":["θρόμβος","thrómbos","throm'-bos","Perhaps from G5142 (in the sense of thickening); a clot: - great drop."]},{"k":"G2362","v":["θρόνος","thrónos","thron'-os","From θράω thraō (to sit); a stately seat (“throne”); by implication power or (concretely) a potentate: - seat, throne."]},{"k":"G2363","v":["Θυάτειρα","Thyáteira","thoo-at'-i-rah","Of uncertain derivation; Thyatira, a place in Asia Minor: - Thyatira."]},{"k":"G2364","v":["θυγάτηρ","thygátēr","thoo-gat'-air","Apparently a primary word (compare “daughter”); a female child, or (by Hebraism) descendant (or inhabitant): - daughter."]},{"k":"G2365","v":["θυγάτριον","thygátrion","thoo-gat'-ree-on","From G2364; a daughterling: - little (young) daughter."]},{"k":"G2366","v":["θύελλα","thýella","thoo'-el-lah","From G2380 (in the sense of blowing) a storm: - tempest."]},{"k":"G2367","v":["θύϊνος","thýïnos","thoo'-ee-nos","From a derivative of G2380 (in the sense of blowing; denoting a certain fragrant tree); made of citron wood: - thyine."]},{"k":"G2368","v":["θυμίαμα","thymíama","thoo-mee'-am-ah","From G2370; an aroma, that is, fragrant powder burnt in religious service; by implication the burning itself: - incense, odour."]},{"k":"G2369","v":["θυμιαστήριον","thymiastḗrion","thoo-mee-as-tay'-ree-on","From a derivative of G2370; a place of fumigation, that is, the altar of incense (in the Temple): - censer."]},{"k":"G2370","v":["θυμιάω","thymiáō","thoo-mee-ah'-o","From a derivative of G2380 (in the sense of smoking); to fumigate, that is, offer aromatic fumes: - burn incense."]},{"k":"G2371","v":["θυμομαχέω","thymomachéō","thoo-mom-akh-eh'-o","From a presumed compound of G2372 and G3164; to be in a furious fight, that is, (figuratively) to be exasperated: - be highly displeased."]},{"k":"G2372","v":["θυμός","thymós","thoo-mos'","From G2380; passion (as if breathing hard): - fierceness, indignation, wrath. Compare G5590."]},{"k":"G2373","v":["θυμόω","thymóō","tho-mo'-o","From G2372; to put in a passion, that is, enrage: - be wroth."]},{"k":"G2374","v":["θύρα","thýra","thoo'-rah","Apparently a primary word (compare “door”); a portal or entrance (the opening or the closure, literally or figuratively): - door, gate."]},{"k":"G2375","v":["θυρεός","thyreós","thoo-reh-os'","From G2374; a large shield (as door shaped): - shield."]},{"k":"G2376","v":["θυρίς","thyrís","thoo-rece'","From G2374; an aperture, that is, window: - window."]},{"k":"G2377","v":["θυρωρός","thyrōrós","thoo-ro-ros'","From G2374 and οὖρος ouros (a watcher); a gate warden: - that kept the door, porter."]},{"k":"G2378","v":["θυσία","thysía","thoo-see'-ah","From G2380; sacrifice (the act or the victim, literally or figuratively): - sacrifice."]},{"k":"G2379","v":["θυσιαστήριον","thysiastḗrion","thoo-see-as-tay'-ree-on","From a derivative of G2378; a place of sacrifice, that is, an altar (specifically or generally, literally or figuratively): - altar."]},{"k":"G2380","v":["θύω","thýō","thoo'-o","A primary verb; properly to rush (breathe hard, blow, smoke), that is, (by implication) to sacrifice (properly by fire, but generally); by extension to immolate (slaughter for any purpose): - kill, (do) sacrifice, slay."]},{"k":"G2381","v":["Θωμᾶς","Thōmâs","tho-mas'","Of Chaldee origin (compare [H8380]); the twin; Thomas, a Christian: - Thomas."]},{"k":"G2382","v":["θώραξ","thṓrax","tho'-rax","Of uncertain affinity; the chest (“thorax”), that is, (by implication) a corslet: - breastplate."]},{"k":"G2383","v":["Ἰάειρος","Iáeiros","ee-ah'-i-ros","Of Hebrew origin [H2971]; Jairus (that is, Jair), an Israelite: - Jairus."]},{"k":"G2384","v":["Ἰακώβ","Iakṓb","ee-ak-obe'","Of Hebrew origin [H3290]; Jacob (that is, Ja'akob), the pogenitor of the Israelites; also an Israelite: - Jacob."]},{"k":"G2385","v":["Ἰάκωβος","Iákōbos","ee-ak'-o-bos","The same as G2384 Graecized; Jacobus, the name of three Israelites: - James."]},{"k":"G2386","v":["ἴαμα","íama","ee'-am-ah","From G2390; a cure (the effect): - healing."]},{"k":"G2387","v":["Ἰαμβρῆς","Iambrēs","ee-am-brace'","Of Egyptian origin; Jambres, an Egyptian: - Jambres."]},{"k":"G2388","v":["Ἰαννά","Ianná","ee-an-nah'","Probably of Hebrew origin (compare [H3238]); Janna, an Israelite: - Janna."]},{"k":"G2389","v":["Ἰαννῆς","Iannēs","ee-an-nace'","Of Egyptian origin; Jannes, an Egyptian: - Jannes."]},{"k":"G2390","v":["ἰάομαι","iáomai","ee-ah'-om-ahee","Middle voice of apparently a primary verb; to cure (literally or figuratively): - heal, make whole."]},{"k":"G2391","v":["Ἰάρεδ","Iáred","ee-ar'-ed","Of Hebrew origin [H3382]; Jared (that is, Jered), an antediluvian: - Jared."]},{"k":"G2392","v":["ἴασις","íasis","ee'-as-is","From G2390; curing (the act): - cure, heal (-ing)."]},{"k":"G2393","v":["ἴασπις","íaspis","ee'-as-pis","Probably of foreign origin (see [H3471]); “jasper”, a gem: - jasper."]},{"k":"G2394","v":["Ἰάσων","Iásōn","ee-as'-oan","Future active participle masculine of G2390; about to cure; Jason, a Christian: - Jason."]},{"k":"G2395","v":["ἰατρός","iatrós","ee-at-ros'","From G2390; a physician: - physician."]},{"k":"G2396","v":["ἴδε","íde","id'-eh","Second person singular imperative active of G1492; used as interjection to denote surprise; lo!: - behold, lo, see."]},{"k":"G2397","v":["ἰδέα","idéa","id-eh'-ah","From G1492; a sight (compare figuratively “idea”), that is, aspect: - countenance."]},{"k":"G2398","v":["ἴδιος","ídios","id'-ee-os","Of uncertain affinity; pertaining to self, that is, one's own; by implication private or separate: - X his acquaintance, when they were alone, apart, aside, due, his (own, proper, several), home, (her, our, thine, your) own (business), private (-ly), proper, severally, their (own)."]},{"k":"G2399","v":["ἰδιώτης","idiṓtēs","id-ee-o'-tace","From G2398; a private person, that is, (by implication) an ignoramus (compare “idiot”): - ignorant, rude, unlearned."]},{"k":"G2400","v":["ἰδού","idoú","id-oo'","Second person singular imperative middle voice of G1492; used as imperative lo!: - behold, lo, see."]},{"k":"G2401","v":["Ἰδουμαία","Idoumaía","id-oo-mah'-yah","Of Hebrew origin [H123]; Idumaea (that is, Edom), a region East (and South) of Palestine: - Iduma."]},{"k":"G2402","v":["ἱδρώς","hidrṓs","hid-roce'","A strengthened form of a primary word ἴδος idos (sweat); perspiration: - sweat."]},{"k":"G2403","v":["Ἰεζαβήλ","Iezabḗl","ee-ed-zab-ale'","Of Hebrew origin [H348]; Jezabel (that is, Jezebel), a Tyrian woman (used as a synonym of a termagant or false teacher): - Jezabel."]},{"k":"G2404","v":["Ἱεράπολις","Hierápolis","hee-er-ap'-ol-is","From G2413 and G4172; holy city; Hierapolis, a place in Asia Minor: - Hierapolis."]},{"k":"G2405","v":["ἱερατεία","hierateía","hee-er-at-i'-ah","From G2407; priestliness, that is, the sacerdotal function: - office of the priesthood, priest’s office."]},{"k":"G2406","v":["ἱεράτευμα","hieráteuma","hee-er-at'-yoo-mah","From G2407; the priestly fraternity, that is, a sacerdotal order (figuratively): - priesthood."]},{"k":"G2407","v":["ἱερατεύω","hierateúō","hee-er-at-yoo'-o","Prolongation from G2409; to be a priest, that is, perform his functions: - execute the priest’s office."]},{"k":"G2408","v":["Ἱερεμίας","Hieremías","hee-er-em-ee'-as","Of Hebrew origin [H3414]; Hieremias (that is, Jermijah), an Israelite: - Jeremiah."]},{"k":"G2409","v":["ἱερεύς","hiereús","hee-er-yooce'","From G2413; a priest (literally or figuratively): - (high) priest."]},{"k":"G2410","v":["Ἱεριχώ","Hierichṓ","hee-er-ee-kho'","Of Hebrew origin [H3405]; Jericho, a place in Palestine: - Jericho."]},{"k":"G2411","v":["ἱερόν","hierón","hee-er-on'","Neuter of G2413; a sacred place, that is, the entire precincts (whereas G3485 denotes the central sanctuary itself) of the Temple (at Jerusalem or elsewhere): - temple."]},{"k":"G2412","v":["ἱεροπρεπής","hieroprepḗs","hee-er-op-rep-ace'","From G2413 and the same as G4241; reverent: - as becometh holiness."]},{"k":"G2413","v":["ἱερός","hierós","hee-er-os'","Of uncertain affinity; sacred: - holy."]},{"k":"G2414","v":["Ἱεροσόλυμα","Hierosólyma","hee-er-os-ol'-oo-mah","Of Hebrew origin [H3389]; Hierosolyma (that is, Jerushalaim), the capital of Palestine: - Jerusalem. Compare G2419."]},{"k":"G2415","v":["Ἱεροσολυμίτης","Hierosolymítēs","hee-er-os-ol-oo-mee'-tace","From G2414; a Hierosolymite, that is, inhabitant of Hierosolyma: - of Jerusalem."]},{"k":"G2416","v":["ἱεροσυλέω","hierosyléō","hee-er-os-ool-eh'-o","From G2417; to be a temple robber (figuratively): - commit sacrilege."]},{"k":"G2417","v":["ἱερόσυλος","hierósylos","hee-er-os'-oo-los","From G2411 and G4813; a temple despoiler: - robber of churches."]},{"k":"G2418","v":["ἱερουργέω","hierourgéō","hee-er-oorg-eh'-o","From a compound of G2411 and the base of G2041; to be a temple worker, that is, officiate as a priest (figuratively): - minister."]},{"k":"G2419","v":["Ἱερουσαλήμ","Hierousalḗm","hee-er-oo-sal-ame'","Of Hebrew origin [H3389]; Hierusalem (that is, Jerushalem), the capital of Palestine: - Jerusalem. Compare G2414."]},{"k":"G2420","v":["ἱερωσύνη","hierōsýnē","hee-er-o-soo'-nay","From G2413; sacredness, that is, (by implication) the priestly office: - priesthood."]},{"k":"G2421","v":["Ἰεσσαί","Iessaí","es-es-sah'-ee","Of Hebrew origin [H3448]; Jessae (that is, Jishai), an Israelite: - Jesse."]},{"k":"G2422","v":["Ἰεφθάε","Iephtháe","ee-ef-thah'-eh","Of Hebrew origin [H3316]; Jephthae (that is, Jiphtach), an Israelite: - Jephthah."]},{"k":"G2423","v":["Ἰεχονίας","Iechonías","ee-ekh-on-ee'-as","Of Hebrew origin [H3204]; Jechonias (. e. Jekonjah), an Israelite: - Jechonias."]},{"k":"G2424","v":["Ἰησοῦς","Iēsoûs","ee-ay-sooce'","Of Hebrew origin [H3091]; Jesus (that is, Jehoshua), the name of our Lord and two (three) other Israelites: - Jesus."]},{"k":"G2425","v":["ἱκανός","hikanós","hik-an-os'","From ἵκω hikō (ἱκάνω or ἱκνέομαι; akin to G2240; to arrive); competent (as if coming in season), that is, ample (in amount) or fit (in character): - able, + content, enough, good, great, large, long (while), many, meet, much, security, sore, sufficient, worthy."]},{"k":"G2426","v":["ἱκανότης","hikanótēs","hik-an-ot'-ace","From G2425; ability: - sufficiency."]},{"k":"G2427","v":["ἱκανόω","hikanóō","hik-an-o'-o","From G2425; to enable, that is, qualify: - make able (meet)."]},{"k":"G2428","v":["ἱκετηρία","hiketēría","hik-et-ay-ree'-ah","From a derivative of the base of G2425 (through the idea of approaching for a favor); intreaty: - supplication."]},{"k":"G2429","v":["ἱκμάς","hikmás","hik-mas'","Of uncertain affinity; dampness: - moisture."]},{"k":"G2430","v":["Ἰκόνιον","Ikónion","ee-kon'-ee-on","Perhaps from G1504; image like; Iconium, a place in Asia Minor: - Iconium."]},{"k":"G2431","v":["ἱλαρός","hilarós","hil-ar-os'","From the same as G2436; propitious or merry (“hilarious”), that is, prompt or willing: - cheerful."]},{"k":"G2432","v":["ἱλαρότης","hilarótēs","hil-ar-ot'-ace","From G2431; alacrity: - cheerfulness."]},{"k":"G2433","v":["ἱλάσκομαι","hiláskomai","hil-as'-kom-ahee","Middle voice from the same as G2436; to conciliate, that is, (transitively) to atone for (sin), or (intransitively) be propitious: - be merciful, make reconciliation for."]},{"k":"G2434","v":["ἱλασμός","hilasmós","hil-as-mos'","atonement, that is, (concretely) an expiator: - propitiation."]},{"k":"G2435","v":["ἱλαστήριον","hilastḗrion","hil-as-tay'-ree-on","Neuter of a derivative of G2433; an expiatory (place or thing), that is, (concretely) an atoning victim, or (specifically) the lid of the Ark (in the Temple): - mercyseat, propitiation."]},{"k":"G2436","v":["ἵλεως","híleōs","hil'-eh-oce","Perhaps from the alternate form of G138; cheerful (as attractive), that is, propitious; adverbially (by Hebraism) God be gracious!, that is, (in averting some calamity) far be it: - be it far, merciful."]},{"k":"G2437","v":["Ἰλλυρικόν","Illyrikón","il-loo-ree-kon'","Neuter of an adjective from a name of uncertain derivation; (the) Illyrican (shore), that is, (as a name itself) Illyricum, a region of Europe: - Illyricum."]},{"k":"G2438","v":["ἱμάς","himás","hee-mas'","Perhaps from the same as G260; a strap, that is, (specifically) the tie (of a sandal) or the lash (of a scourge): - latchet, thong."]},{"k":"G2439","v":["ἱματίζω","himatízō","him-at-id'-zo","From G2440; to dress: - clothe."]},{"k":"G2440","v":["ἱμάτιον","himátion","him-at'-ee-on","Neuter of a presumed derivative of ἕννυμι hennumi (to put on); a dress (inner or outer): - apparel, cloke, clothes, garment, raiment, robe, vesture."]},{"k":"G2441","v":["ἱματισμός","himatismós","him-at-is-mos'","From G2439; clothing: - apparel (X -led), array, raiment, vesture."]},{"k":"G2442","v":["ἱμείρομαι","himeíromai","him-i'-rom-ahee","Middle voice from ἵμερος himeros (a yearning; of uncertain affinity); to long for: - be affectionately desirous."]},{"k":"G2443","v":["ἵνα","hína","hin'-ah","Probably from the same as the former part of G1438 (through the demonstrative idea; compare G3588); in order that (denoting the purpose or the result): - albeit, because, to the intent (that), lest, so as, (so) that, (for) to. Compare G3363."]},{"k":"G2444","v":["ἱνατί","hinatí","hin-at-ee'","From G2443 and G5101; for what reason?, that is, why?: - wherefore, why."]},{"k":"G2445","v":["Ἰόππη","Ióppē","ee-op'-pay","Of Hebrew origin [H3305]; Joppe (that is, Japho), a place in Palestine: - Joppa."]},{"k":"G2446","v":["Ἰορδάνης","Iordánēs","ee-or-dan'-ace","Of Hebrew origin [H3383]; the Jordanes (that is, Jarden), a river of Palestine: - Jordan."]},{"k":"G2447","v":["ἰός","iós","ee-os'","Perhaps from εἶμι eimi (to go) or ἵημι hiēmi (to send); rust (as if emitted by metals); also venom (as emitted by serpents): - poison, rust."]},{"k":"G2448","v":["Ἰουδά","Ioudá","ee-oo-dah'","Of Hebrew origin [H3063] or perhaps [H3194]; Judah (that is, Jehudah or Juttah), a part of (or place in) Palestine: - Judah."]},{"k":"G2449","v":["Ἰουδαία","Ioudaía","ee-oo-dah'-yah","Feminine of G2453 (with G1093 implied); the Judaean land (that is, judaea), a region of Palestine: - Juda."]},{"k":"G2450","v":["Ἰουδαΐζω","Ioudaḯzō","ee-oo-dah-id'-zo","From G2453; to become a Judaean, that is, “judaize”: - live as the Jews."]},{"k":"G2451","v":["Ἰουδαϊκός","Ioudaïkós","ee-oo-dah-ee-kos'","From G2453; Judaic, that is, resembling a Judaean: - Jewish."]},{"k":"G2452","v":["Ἰουδαϊκῶς","Ioudaïkōs","ee-oo-dah-ee-koce'","Adverb from G2451; Judaically or in a manner resembling a Judaean: - as do the Jews."]},{"k":"G2453","v":["Ἰουδαῖος","Ioudaîos","ee-oo-dah'-yos","From G2448 (in the sense of G2455 as a country); udaean, that is, belonging to Jehudah: - Jew (-ess), of Juda."]},{"k":"G2454","v":["Ἰουδαϊσμός","Ioudaïsmós","ee-oo-dah-is-mos'","From G2450; “judaism”, that is, the Jewish faith and usages: - Jews’ religion."]},{"k":"G2455","v":["Ἰούδας","Ioúdas","ee-oo-das'","Of Hebrew origin [H3063]; Judas (that is, Jehudah), the name of ten Israelites; also of the posterity of one of them and its region: - Juda (-h, -s); Jude."]},{"k":"G2456","v":["Ἰουλία","Ioulía","ee-oo-lee'-ah","Feminine of the same as G2457; Julia, a Christian woman: - Julia."]},{"k":"G2457","v":["Ἰούλιος","Ioúlios","ee-oo'-lee-os","Of Latin origin; Julius, a centurion: - Julius."]},{"k":"G2458","v":["Ἰουνιᾶς","Iouniâs","ee-oo-nee'-as","Of Latin origin; Junias, a Christian: - Junias."]},{"k":"G2459","v":["Ἰοῦστος","Ioûstos","ee-ooce'-tos","Of Latin origin (“just”); Justus, the name of three Christians: - Justus."]},{"k":"G2460","v":["ἱππεύς","hippeús","hip-yooce'","From G2462; an equestrian, that is, member of a cavalry corps: - horseman."]},{"k":"G2461","v":["ἱππικόν","hippikón","hip-pee-kon'","Neuter of a derivative of G2462; the cavalry force: - horse [-men]."]},{"k":"G2462","v":["ἵππος","híppos","hip'-pos","Of uncertain affinity; a horse: - horse."]},{"k":"G2463","v":["ἶρις","îris","ee'-ris","Perhaps from G2046 (as a symbol of the female messenger of the pagan deities); a rainbow (“iris”): - rainbow."]},{"k":"G2464","v":["Ἰσαάκ","Isaák","ee-sah-ak'","Of Hebrew origin [H3327]; Isaac (that is, Jitschak), the son of Abraham: - Isaac."]},{"k":"G2465","v":["ἰσάγγελος","isángelos","ee-sang'-el-los","From G2470 and G32; like an angel, that is, angelic: - equal unto the angels."]},{"k":"G2466","v":["Ἰσαχάρ","Isachár","ee-sakh-ar'","Of Hebrew origin [H3485]; Isachar (that is, Jissaskar), a son of Jacob (figuratively his descendants): - Issachar."]},{"k":"G2467","v":["ἴσημι","ísēmi","is'-ay-mee","Assumed by some as the base of certain irregular forms of G1942; to know: - know."]},{"k":"G2468","v":["ἴσθι","ísthi","is'-thee","Second person imperative present of G1510; be thou: - + agree, be, X give thyself wholly to."]},{"k":"G2469","v":["Ἰσκαριώτης","Iskariṓtēs","is-kar-ee-o'-tace","Of Hebrew origin (probably [H377] and [H7149]); inhabitants of Kerioth; Iscariotes (that is, Keriothite), an epithet of Judas the traitor: - Iscariot."]},{"k":"G2470","v":["ἴσος","ísos","ee'-sos","Probably from G1492 (through the idea of seeming); similar (in amount or kind): - + agree, as much, equal, like."]},{"k":"G2471","v":["ἰσότης","isótēs","ee-sot'-ace","likeness (in condition or proportion); by implication equity: - equal (-ity)."]},{"k":"G2472","v":["ἰσότιμος","isótimos","ee-sot'-ee-mos","From G2470 and G5092; of equal value or honor: - like precious."]},{"k":"G2473","v":["ἰσόψυχος","isópsychos","ee-sop'-soo-khos","From G2470 and G5590; of similar spirit: - likeminded."]},{"k":"G2474","v":["Ἰσραήλ","Israḗl","is-rah-ale'","Of Hebrew origin [H3478]; Israel (that is, Jisrael), the adopted name of Jacob, including his descendants (literally or figuratively): - Israel."]},{"k":"G2475","v":["Ἰσραηλίτης","Israēlítēs","is-rah-ale-ee'-tace","From G2474; an “israelite”, that is, descendant of Israel (literally or figuratively): - Israelite."]},{"k":"G2476","v":["ἵστημι","hístēmi","his'-tay-mee","A prolonged form of a primary word στάω staō (of the same meaning, and used for it in certain tenses); to stand (transitively or intransitively), used in various applications (literally or figuratively): - abide, appoint, bring, continue, covenant, establish, hold up, lay, present, set (up), stanch, stand (by, forth, still, up). Compare G5087."]},{"k":"G2477","v":["ἱστορέω","historéō","his-tor-eh'-o","From a derivative of G1492; to be knowing (learned), that is, (by implication) to visit for information (interview): - see."]},{"k":"G2478","v":["ἰσχυρός","ischyrós","is-khoo-ros'","From G2479; forcible (literally or figuratively): - boisterous, mighty (-ier), powerful, strong (-er, man), valiant."]},{"k":"G2479","v":["ἰσχύς","ischýs","is-khoos'","From a derivative of ἱς his (force; compare ἔσχον eschon; a form of G2192); forcefulness (literally or figuratively): - ability, might ([-ily]), power, strength."]},{"k":"G2480","v":["ἰσχύω","ischýō","is-khoo'-o","From G2479; to have (or exercise) force (literally or figuratively): - beable, avail, can do ([-not]), could, be good, might, prevail, be of strength, be whole, + much work."]},{"k":"G2481","v":["ἴσως","ísōs","ee'-soce","Adverb from G2470; likely, that is, perhaps: - it may be."]},{"k":"G2482","v":["Ἰταλία","Italía","ee-tal-ee'-ah","Probably of foreign origin; Italia, a region of Europe: - Italy."]},{"k":"G2483","v":["Ἰταλικός","Italikós","ee-tal-ee-kos'","From G2482; Italic, that is, belonging to Italia: - Italian."]},{"k":"G2484","v":["Ἰτουραΐα","Itouraḯa","ee-too-rah'-yah","Of Hebrew origin [H3195]; Ituraea (that is, Jetur), a region of Palestine: - Itura."]},{"k":"G2485","v":["ἰχθύδιον","ichthýdion","ikh-thoo'-dee-on","Diminutive from G2486; a petty fish: - little (small) fish."]},{"k":"G2486","v":["ἰχθύς","ichthýs","ikh-thoos'","Of uncertain affinity; a fish: - fish."]},{"k":"G2487","v":["ἴχνος","íchnos","ikh'-nos","From ἰκνέομαι ikneomai (to arrive; compare G2240); a track (figuratively): - step."]},{"k":"G2488","v":["Ἰωάθαμ","Iōátham","ee-o-ath'-am","Of Hebrew origin [H3147]; Joatham (that is, Jotham), an Israelite: - Joatham."]},{"k":"G2489","v":["Ἰωάννα","Iōánna","ee-o-an'-nah","Feminine of the same as G2491; Joanna, a Christian: - Joanna."]},{"k":"G2490","v":["Ἰωαννᾶς","Iōannâs","ee-o-an-nas'","A form of G2491; Joannas, an Israelite: - Joannas."]},{"k":"G2491","v":["Ἰωάννης","Iōánnēs","ee-o-an'-nace","Of Hebrew origin [H3110]; Joannes (that is, Jochanan), the name of four Israelites: - John."]},{"k":"G2492","v":["Ἰώβ","Iṓb","ee-obe'","Of Hebrew origin [H347]; Job (that is, Ijob), a patriarch: - Job."]},{"k":"G2493","v":["Ἰωήλ","Iōḗl","ee-o-ale'","Of Hebrew origin [H3100]; Joel, an Israelite: - Joel."]},{"k":"G2494","v":["Ἰωνάν","Iōnán","ee-o-nan'","Probably for G2491 or G2495; Jonan, an Israelite: - Jonan."]},{"k":"G2495","v":["Ἰωνᾶς","Iōnâs","ee-o-nas'","Of Hebrew origin [H3124]; Jonas (that is, Jonah), the name of two Israelites: - Jonas."]},{"k":"G2496","v":["Ἰωράμ","Iōrám","ee-o-ram'","Of Hebrew origin [H3141]; Joram, an Israelite: - Joram."]},{"k":"G2497","v":["Ἰωρείμ","Iōreím","ee-o-rime'","Perhaps for G2496; Jorim, an Israelite: - Jorim."]},{"k":"G2498","v":["Ἰωσαφάτ","Iōsaphát","ee-o-saf-at'","Of Hebrew origin [H3092]; Josaphat (that is, Jehoshaphat), an Israelite: - Josaphat."]},{"k":"G2499","v":["Ἰωσή","Iōsḗ","ee-o-say'","Genitive case of G2500; Jose, an Israelite: - Jose."]},{"k":"G2500","v":["Ἰωσῆς","Iōsēs","ee-o-sace'","Perhaps from G2501; Joses, the name of two Israelites: - Joses. Compare G2499."]},{"k":"G2501","v":["Ἰωσήφ","Iōsḗph","ee-o-safe'","Of Hebrew origin [H3130]; Joseph, the name of seven Israelites: - Joseph."]},{"k":"G2502","v":["Ἰωσίας","Iōsías","ee-o-see'-as","Of Hebrew origin [H2977]; Josias (that is, Joshiah), an Israelite: - Josias."]},{"k":"G2503","v":["ἰῶτα","iōta","ee-o'-tah","Of Hebrew origin (the tenth letter of the Hebrew alphabet); “iota”, the name of the eighth letter of the Greek alphabet, put (figuratively) for a very small part of anything: - jot."]},{"k":"G2504","v":["κἀγώ","kagṓ","kag-o'","So also the dative (second form) and accusative (third form); from G2532 and G1473; and (or also, even, etc.) I, (to) me: - (and, even, even so, so) I (also, in like wise), both me, me also."]},{"k":"G2505","v":["καθά","kathá","kath-ah'","From G2596 and the neuter plural of G3739; according to which things, that is, just as: - as."]},{"k":"G2506","v":["καθαίρεσις","kathaíresis","kath-ah'-ee-res-is","From G2507; demolition; figuratively extinction: - destruction, pulling down."]},{"k":"G2507","v":["καθαιρέω","kathairéō","kath-ahee-reh'-o","From G2596 and G138 (including its alternate); to lower (or with violence) demolish (literally or figuratively): - cast (pull, put, take) down, destroy."]},{"k":"G2508","v":["καθαίρω","kathaírō","kath-ah'-ee-ro","From G2513; to cleanse, that is, (specifically) to prune; figuratively to expiate: - purge."]},{"k":"G2509","v":["καθάπερ","katháper","kath-ap'-er","From G2505 and G4007; exactly as: - (even, as well) as."]},{"k":"G2510","v":["καθάπτω","katháptō","kath-ap'-to","From G2596 and G680; to seize upon: - fasten on."]},{"k":"G2511","v":["καθαρίζω","katharízō","kath-ar-id'-zo","From G2513; to cleanse (literally or figuratively): - (make) clean (-se), purge, purify."]},{"k":"G2512","v":["καθαρισμός","katharismós","kath-ar-is-mos'","From G2511; a washing off, that is, (ceremonially) ablution, (morally) expiation: - cleansing, + purge, purification, (-fying)."]},{"k":"G2513","v":["καθαρός","katharós","kath-ar-os'","Of uncertain affinity; clean (literally or figuratively): - clean, clear, pure."]},{"k":"G2514","v":["καθαρότης","katharótēs","kath-ar-ot'-ace","From G2513; cleanness (ceremonially): - purification."]},{"k":"G2515","v":["καθέδρα","kathédra","kath-ed'-rah","From G2596 and the same as G1476; a bench (literally or figuratively): - seat."]},{"k":"G2516","v":["καθέζομαι","kathézomai","kath-ed'-zom-ahee","From G2596 and the base of G1476; to sit down: - sit."]},{"k":"G2517","v":["καθεξῆς","kathexēs","kath-ex-ace'","From G2596 and G1836; thereafter, that is, consecutively; as a noun (by ellipsis of noun) a subsequent person or time: - after (-ward), by (in) order."]},{"k":"G2518","v":["καθεύδω","katheúdō","kath-yoo'-do","From G2596 and εὕδω heudō (to sleep); to lie down to rest, that is, (by implication) to fall asleep (literally or figuratively): - (be a-) sleep."]},{"k":"G2519","v":["καθηγητής","kathēgētḗs","kath-ayg-ay-tace'","From a compound of G2596 and G2233; a guide, that is, (figuratively) a teacher: - master."]},{"k":"G2520","v":["καθήκω","kathḗkō","kath-ay'-ko","From G2596 and G2240; to reach to, that is, (neuter of present active participle, figuratively as adjective) becoming: - convenient, fit."]},{"k":"G2521","v":["κάθημαι","káthēmai","kath'-ay-mahee","From G2596 and ἧμαι hēmai (to sit; akin to the base of G1476); to sit down; figuratively to remain, reside: - dwell, sit (by, down)."]},{"k":"G2522","v":["καθημερινός","kathēmerinós","kath-ay-mer-ee-nos'","From G2596 and G2250; quotidian: - daily."]},{"k":"G2523","v":["καθίζω","kathízō","kath-id'-zo","Another (active) form for G2516; to seat down, that is, set (figuratively appoint); intransitively to sit (down); figuratively to settle (hover, dwell): - continue, set, sit (down), tarry."]},{"k":"G2524","v":["καθίημι","kathíēmi","kath-ee'-ay-mee","From G2596 and ἵημι hiēmi (to send); to lower: - let down."]},{"k":"G2525","v":["καθίστημι","kathístēmi","kath-is'-tay-mee","From G2596 and G2476; to place down (permanently), that is, (figuratively) to designate, constitute, convoy: - appoint, be, conduct, make, ordain, set."]},{"k":"G2526","v":["καθό","kathó","kath-o'","From G2596 and G3739; according to which thing, that is, precisely as, in proportion as: - according to that, (inasmuch) as."]},{"k":"G2527","v":["καθόλου","kathólou","kath-ol'-oo","From G2596 and G3650; on the whole, that is, entirely: - at all."]},{"k":"G2528","v":["καθοπλίζω","kathoplízō","kath-op-lid'-zo","From G2596 and G3695; to equip fully with armor: - arm."]},{"k":"G2529","v":["καθοράω","kathoráō","kath-or-ah'-o","From G2596 and G3708; to behold fully, that is, (figuratively) distinctly apprehend: - clearly see."]},{"k":"G2530","v":["καθότι","kathóti","kath-ot'-ee","From G2596 and G3739 and G5100; according to which certain thing, that is, as far (or inasmuch) as: - (according, forasmuch) as, because (that)."]},{"k":"G2531","v":["καθώς","kathṓs","kath-oce'","From G2596 and G5613; just (or inasmuch) as, that: - according to, (according, even) as, how, when."]},{"k":"G2532","v":["καί","kaí","kahee","Apparently a primary particle, having a copulative and sometimes also a cumulative force; and, also, even, so, then, too, etc.; often used in connection (or composition) with other particles or small words: - and, also, both, but, even, for, if, indeed, likewise, moreover, or, so, that, then, therefore, when, yea, yet."]},{"k":"G2533","v":["Καϊάφας","Kaïáphas","kah-ee-af'-as","Of Chaldee origin; the dell; Caiaphas (that is, Cajepha), an Israelite: - Caiaphas."]},{"k":"G2534","v":["καίγε","kaíge","kah'-ee-gheh","From G2532 and G1065; and at least (or even, indeed): - and, at least."]},{"k":"G2535","v":["Κάϊν","Káïn","kah'-in","Of Hebrew origin [H7014]; Cain (that is, Cajin), the son of Adam: - Cain."]},{"k":"G2536","v":["Καϊνάν","Kaïnán","kah-ee-nan'","Of Hebrew origin [H7018]; Cainan (that is, Kenan), the name of two patriarchs: - Cainan."]},{"k":"G2537","v":["καινός","kainós","kahee-nos'","Of uncertain affinity; new (especially in freshness; while G3501 is properly so with respect to age): - new."]},{"k":"G2538","v":["καινότης","kainótēs","kahee-not'-ace","From G2537; renewal (figuratively): - newness."]},{"k":"G2539","v":["καίπερ","kaíper","kah'-ee-per","From G2532 and G4007; and indeed, that is, nevertheless or notwithstanding: - and yet, although."]},{"k":"G2540","v":["καιρός","kairós","kahee-ros'","Of uncertain affinity; an occasion, that is, set or proper time: - X always, opportunity, (convenient, due) season, (due, short, while) time, a while. Compare G5550."]},{"k":"G2541","v":["Καῖσαρ","Kaîsar","kah'-ee-sar","Of Latin origin; Caesar, a title of the Roman emperor: - Csar."]},{"k":"G2542","v":["Καισάρεια","Kaisáreia","kahee-sar'-i-a","From G2541; Caesaria, the name of two places in Palestine: - Csarea."]},{"k":"G2543","v":["καίτοι","kaítoi","kah'-ee-toy","From G2532 and G5104; and yet, that is, nevertheless: - although."]},{"k":"G2544","v":["καίτοιγε","kaítoige","kah'-ee-toyg-eh","From G2543 and G1065; and yet indeed, that is, although really: - nevertheless, though."]},{"k":"G2545","v":["καίω","kaíō","kah'-yo","Apparently a primary verb; to set on fire, that is, kindle or (by implication) consume: - burn, light."]},{"k":"G2546","v":["κἀκεῖ","kakeî","kak-i'","From G2532 and G1563; likewise in that place: - and there, there (thither) also."]},{"k":"G2547","v":["κἀκεῖθεν","kakeîthen","kak-i'-then","From G2532 and G1564; likewise from that place (or time): - and afterward (from) (thence), thence also."]},{"k":"G2548","v":["κἀκεῖνος","kakeînos","kak-i'-nos","From G2532 and G1565; likewise that (or those): - and him (other, them), even he, him also, them (also), (and) they."]},{"k":"G2549","v":["κακία","kakía","kak-ee'-ah","From G2556; badness, that is, (subjectively) depravity, or (actively) malignity, or (passively) trouble: - evil, malice (-iousness), naughtiness, wickedness."]},{"k":"G2550","v":["κακοήθεια","kakoḗtheia","kak-o-ay'-thi-ah","From a compound of G2556 and G2239; bad character, that is, (specifically) mischievousness: - malignity."]},{"k":"G2551","v":["κακολογέω","kakologéō","kak-ol-og-eh'-o","From a compound of G2556 nad G3056; to revile: - curse, speak evil of."]},{"k":"G2552","v":["κακοπάθεια","kakopátheia","kak-op-ath'-i-ah","From a compound of G2256 and G3806; hardship: - suffering affliction."]},{"k":"G2553","v":["κακοπαθέω","kakopathéō","kak-op-ath-eh'-o","From the same as G2552; to undergo hardship: - be afflicted, endure afflictions (hardness), suffer trouble."]},{"k":"G2554","v":["κακοποιέω","kakopoiéō","kak-op-oy-eh'-o","From G2555; to be a bad doer, that is, (objectively) to injure, or (generally) to sin: - do (-ing) evil."]},{"k":"G2555","v":["κακοποιός","kakopoiós","kak-op-oy-os'","From G2556 and G4160; a bad doer; (specifically) a criminal: - evil-doer, malefactor."]},{"k":"G2556","v":["κακός","kakós","kak-os'","Apparently a primary word; worthless (intrinsically such; whereas G4190 properly refers to effects), that is, (subjectively) depraved, or (objectively) injurious: - bad, evil, harm, ill, noisome, wicked."]},{"k":"G2557","v":["κακοῦργος","kakoûrgos","kak-oor'-gos","From G2556 and the base of G2041; a wrong doer, that is, criminal: - evil-doer, malefactor."]},{"k":"G2558","v":["κακουχέω","kakouchéō","kak-oo-kheh'-o","From a presumed compound of G2556 and G2192; to maltreat: - which suffer adversity, torment."]},{"k":"G2559","v":["κακόω","kakóō","kak-o'-o","From G2556; to injure; figuratively to exasperate: - make evil affected, entreat evil, harm, hurt, vex."]},{"k":"G2560","v":["κακῶς","kakōs","kak-oce'","Adverb from G2556; badly (physically or morally): - amiss, diseased, evil, grievously, miserably, sick, sore."]},{"k":"G2561","v":["κάκωσις","kákōsis","kak'-o-sis","From G2559; maltreatment: - affliction."]},{"k":"G2562","v":["καλάμη","kalámē","kal-am'-ay","Feminine of G2563; a stalk of grain, that is, (collectively) stubble: - stubble."]},{"k":"G2563","v":["κάλαμος","kálamos","kal'-am-os","Of uncertain affinity; a reed (the plant or its stem, or that of a similar plant); by implication a pen: - pen, reed."]},{"k":"G2564","v":["καλέω","kaléō","kal-eh'-o","Akin to the base of G2753; to “call” (properly aloud, but used in a variety of applications, directly or otherwise): - bid, call (forth), (whose, whose sur-) name (was [called])."]},{"k":"G2565","v":["καλλιέλαιος","kalliélaios","kal-le-el'-ah-yos","From the base of G2566 and G1636; a cultivated olive tree, that is, a domesticated or improved one: - good olive tree."]},{"k":"G2566","v":["καλλίον","kallíon","kal-lee'-on","Neuter of the (irregular) compound of G2570; (adverbially) better than many: - very well."]},{"k":"G2567","v":["καλοδιδάσκαλος","kalodidáskalos","kal-od-id-as'-kal-os","From G2570 and G1320; a teacher of the right: - teacher of good things."]},{"k":"G2568","v":["Καλοὶ Λιμένες","Kaloì Liménes","kal-oy' lee-men'-es","Plural of G2570 and G3040; Good Harbors, that is, Fairhaven, a bay of Crete: - fair havens."]},{"k":"G2569","v":["καλοποιέω","kalopoiéō","kal-op-oy-eh'-o","From G2570 and G4160; to do well, that is, live virtuously: - well doing."]},{"k":"G2570","v":["καλός","kalós","kal-os'","Of uncertain affinity; properly beautiful, but chiefly (figuratively) good (literally or morally), that is, valuable or virtuous (for appearance or use, and thus distinguished from G18, which is properly intrinsic): - X better, fair, good (-ly), honest, meet, well, worthy."]},{"k":"G2571","v":["κάλυμα","kályma","kal'-oo-mah","From G2572; a cover, that is, veil: - vail."]},{"k":"G2572","v":["καλύπτω","kalýptō","kal-oop'-to","Akin to G2813 and G2928; to cover up (literally or figuratively): - cover, hide."]},{"k":"G2573","v":["καλῶς","kalōs","kal-oce'","Adverb from G2570; well (usually morally): - (in a) good (place), honestly, + recover, (full) well."]},{"k":"G2574","v":["κάμηλος","kámēlos","kam'-ay-los","Of Hebrew origin [H1581]; a “camel”: - camel."]},{"k":"G2575","v":["κάμινος","káminos","kam'-ee-nos","Probably from G2545; a furnace: - furnace."]},{"k":"G2576","v":["καμμύω","kammýō","kam-moo'-o","For a compound of G2596 and the base of G3466; to shut down, that is, close the eyes: - close."]},{"k":"G2577","v":["κάμνω","kámnō","kam'-no","Apparently a primary verb; properly to toil, that is, (by implication) to tire (figuratively faint, sicken): - faint, sicken, be wearied."]},{"k":"G2578","v":["κάμπτω","kámptō","kamp'-to","Apparently a primary verb; to bend: - bow."]},{"k":"G2579","v":["κἄν","kán","kan","From G2532 nad G1437; and (or even) if: - and (also) if (so much as), if but, at the least, though, yet."]},{"k":"G2580","v":["Κανᾶ","Kanâ","kan-ah'","Of Hebrew origin (compare [H7071]); Cana, a place in Palestine: - Cana."]},{"k":"G2581","v":["Κανανίτης","Kananítēs","kan-an-ee'-tace","Of Chaldee origin (compare [H7067]); zealous; Cananites, an epithet. (By mistake for a derivative from G5477): - Canaanite [by mistake for a derivationfrom G5477]."]},{"k":"G2582","v":["Κανδάκη","Kandákē","kan-dak'-ay","Of foreign origin; Candace, an Egyptian queen: - Candace."]},{"k":"G2583","v":["κανών","kanṓn","kan-ohn'","From κάνη kanē (a straight reed, that is, rod); a rule (“canon”), that is, (figuratively) a standard (of faith and practice); by implication a boundary, that is, (figuratively) a sphere (of activity): - line, rule."]},{"k":"G2584","v":["Καπερναούμ","Kapernaoúm","cap-er-nah-oom'","Of Hebrew origin (probably [H3723] and [H5151]); Capernaum (that is, Caphanachum), a place in Palestine: - Capernaum."]},{"k":"G2585","v":["καπηλεύω","kapēleúō","kap-ale-yoo'-o","From κάπηλος kapēlos (a huckster); to retail, that is, (by implication) to adulterate (figuratively): - corrupt."]},{"k":"G2586","v":["καπνός","kapnós","kap-nos'","Of uncertain affinity; smoke: - smoke."]},{"k":"G2587","v":["Καππαδοκία","Kappadokía","kap-pad-ok-ee'-ah","Of foreign origin; Cappadocia, a region of Asia Minor: - Cappadocia."]},{"k":"G2588","v":["καρδία","kardía","kar-dee'-ah","Prolonged from a primary κάρ kar (Latin cor, “heart”); the heart, that is, (figuratively) the thoughts or feelings (mind); also (by analogy) the middle: - (+ broken-) heart (-ed)."]},{"k":"G2589","v":["καρδιογνώστης","kardiognṓstēs","kar-dee-og-noce'-tace","From G2588 and G1097; a heart knower: - which knowest the hearts."]},{"k":"G2590","v":["καρπός","karpós","kar-pos'","Probably from the base of G726; fruit (as plucked), literally or figuratively: - fruit."]},{"k":"G2591","v":["Κάρπος","Kárpos","kar'-pos","Perhaps for G2590; Carpus, probably a Christian: - Carpus."]},{"k":"G2592","v":["καρποφορέω","karpophoréō","kar-pof-or-eh'-o","From G2593; to be fertile (literally or figuratively): - be (bear, bring forth) fruit (-ful)."]},{"k":"G2593","v":["καρποφόρος","karpophóros","kar-pof-or'-os","From G2590 and G5342; fruitbearing (figuratively): - fruitful."]},{"k":"G2594","v":["καρτερέω","karteréō","kar-ter-eh'-o","From a derivative of G2904 (transposed); to be strong, that is, (figuratively) steadfast (patient): - endure."]},{"k":"G2595","v":["κάρφος","kárphos","kar'-fos","From κάρφω karpho (to wither); a dry twig or straw: - mote."]},{"k":"G2596","v":["κατά","katá","kat-ah'","A primary particle; (preposition) down (in place or time), in varied relations (according to the case [genitive, dative or accusative] with which it is joined): - about, according as (to), after, against, (when they were) X alone, among, and, X apart, (even, like) as (concerning, pertaining to, touching), X aside, at, before, beyond, by, to the charge of, [charita-] bly, concerning, + covered, [dai-] ly, down, every, (+ far more) exceeding, X more excellent, for, from . . . to, godly, in (-asmuch, divers, every, -to, respect of), . . . by, after the manner of, + by any means, beyond (out of) measure, X mightily, more, X natural, of (up-) on (X part), out (of every), over against, (+ your) X own, + particularly, so, through (-oughout, -oughout every), thus, (un-) to (-gether, -ward), X uttermost, where (-by), with. In composition it retains many of these applications, and frequently denotes opposition, distribution or intensity."]},{"k":"G2597","v":["καταβαίνω","katabaínō","kat-ab-ah'-ee-no","From G2596 and the base of G939; to descend (literally or figuratively): - come (get, go, step) down, descend, fall (down)."]},{"k":"G2598","v":["καταβάλλω","katabállō","kat-ab-al'-lo","From G2596 and G906; to throw down: - cast down, lay."]},{"k":"G2599","v":["καταβαρέω","katabaréō","kat-ab-ar-eh'-o","From G2596 and G916; to impose upon: - burden"]},{"k":"G2600","v":["κατάβασις","katábasis","kat-ab'-as-is","From G2597; a declivity: - descent."]},{"k":"G2601","v":["καταβιβάζω","katabibázō","kat-ab-ib-ad'-zo","From G2596 and a derivative of the base of G939; to cause to go down, that is, precipitate: - bring (thrust) down."]},{"k":"G2602","v":["καταβολή","katabolḗ","kat-ab-ol-ay'","From G2598; a deposition, that is, founding; figuratively conception: - conceive, foundation."]},{"k":"G2603","v":["καταβραβεύω","katabrabeúō","kat-ab-rab-yoo'-o","From G2596 and G1018 (in its original sense); to award the price against, that is, (figuratively) to defraud (of salvation): - beguile of reward."]},{"k":"G2604","v":["καταγγελεύς","katangeleús","kat-ang-gel-yooce'","From G2605; a proclaimer: - setter forth."]},{"k":"G2605","v":["καταγγέλλω","katangéllō","kat-ang-gel'-lo","From G2596 and the base of G32; to proclaim, promulgate: - declare, preach, shew, speak of, teach."]},{"k":"G2606","v":["καταγελάω","katageláō","kat-ag-el-ah'-o","To laugh down, that is, deride: - laugh to scorn."]},{"k":"G2607","v":["καταγινώσκω","kataginṓskō","kat-ag-in-o'-sko","From G2596 and G1097; to note against, that is, find fault with: - blame, condemn."]},{"k":"G2608","v":["κατάγνυμι","katágnymi","kat-ag'-noo-mee","From G2596 and the base of G4486; to rend in pieces, that is, crack apart: - break."]},{"k":"G2609","v":["κατάγω","katágō","kat-ag'-o","From G2596 and G71; to lead down; specifically to moor a vessel: - bring (down, forth), (bring to) land, touch."]},{"k":"G2610","v":["καταγωνίζομαι","katagōnízomai","kat-ag-o-nid'-zom-ahee","From G2596 and G75; to struggle against, that is, (by implication) to overcome: - subdue."]},{"k":"G2611","v":["καταδέω","katadéō","kat-ad-eh'-o","From G2596 and G1210; to tie down, that is, bandage (a wound): - bind up."]},{"k":"G2612","v":["κατάδηλος","katádēlos","kat-ad'-ay-los","From G2596 intensively and G1212; manifest: - far more evident."]},{"k":"G2613","v":["καταδικάζω","katadikázō","kat-ad-ik-ad'-zo","From G2596 and a derivative of G1349; to adjudge against, that is, pronounce guilty: - condemn."]},{"k":"G2614","v":["καταδιώκω","katadiṓkō","kat-ad-ee-o'-ko","From G2596 and G1377; to hunt down, that is, search for: - follow after."]},{"k":"G2615","v":["καταδουλόω","katadoulóō","kat-ad-oo-lo'-o","From G2596 and G1402; to enslave utterly: - bring into bondage."]},{"k":"G2616","v":["καταδυναστεύω","katadynasteúō","kat-ad-oo-nas-tyoo'-o","From G2596 and a derivative of G1413; to exercise dominion against, that is, oppress: - oppress."]},{"k":"G2617","v":["καταισχύνω","kataischýnō","kat-ahee-skhoo'-no","From G2596 and G153; to shame down, that is, disgrace or (by implication) put to the blush: - confound, dishonour, (be a-, make a-) shame (-d)."]},{"k":"G2618","v":["κατακαίω","katakaíō","kat-ak-ah'-ee-o","From G2596 and G2545; to burn down (to the ground), that is, consume wholly: - burn (up, utterly)."]},{"k":"G2619","v":["κατακαλύπτω","katakalýptō","kat-ak-al-oop'-to","From G2596 and G2572; to cover wholly, that is, veil: - cover, hide."]},{"k":"G2620","v":["κατακαυχάομαι","katakaucháomai","kat-ak-ow-khah'-om-ahee","From G2596 and G2744; to exult against (that is, over): - boast (against), glory, rejoice against."]},{"k":"G2621","v":["κατάκειμαι","katákeimai","kat-ak'-i-mahee","From G2596 and G2749; to lie down, that is, (by implication) be sick; specifically to recline at a meal: - keep, lie, sit at meat (down)."]},{"k":"G2622","v":["κατακλάω","katakláō","kat-ak-lah'-o","From G2596 and G2806; to break down, that is, divide: - break."]},{"k":"G2623","v":["κατακλείω","katakleíō","kat-ak-li'-o","From G2596 and G2808; to shut down (in a dungeon), that is, incarcerate: - shut up."]},{"k":"G2624","v":["κατακληροδοτέω","kataklērodotéō","kat-ak-lay-rod-ot-eh'-o","From G2596 and a derivative of a compound of G2819 and G1325; to be a giver of lots to each, that is, (by implication) to apportion an estate: - divide by lot."]},{"k":"G2625","v":["κατακλίνω","kataklínō","kat-ak-lee'-no","From G2596 and G2827; to recline down, that is, (specifically) to take a place at table: - (make) sit down (at meat)."]},{"k":"G2626","v":["κατακλύζω","kataklýzō","kat-ak-lood'-zo","From G2596 and the base of G2830; to dash (wash) down, that is, (by implication) to deluge: - overflow."]},{"k":"G2627","v":["κατακλυσμός","kataklysmós","kat-ak-looce-mos'","From G2626; an inundation: - flood."]},{"k":"G2628","v":["κατακολουθέω","katakolouthéō","kat-ak-ol-oo-theh'-o","From G2596 and G190; to accompany closely: - follow (after)."]},{"k":"G2629","v":["κατακόπτω","katakóptō","kat-ak-op'-to","From G2596 and G2875; to chop down, that is, mangle: - cut."]},{"k":"G2630","v":["κατακρημνίζω","katakrēmnízō","kat-ak-rame-nid'-zo","From G2596 and a derivative of G2911; to precipitate down: - cast down headlong."]},{"k":"G2631","v":["κατάκριμα","katákrima","kat-ak'-ree-mah","From G2632; an adverse sentence (the verdict): - condemnation."]},{"k":"G2632","v":["κατακρίνω","katakrínō","kat-ak-ree'-no","From G2596 and G2919; to judge against, that is, sentence: - condemn, damn."]},{"k":"G2633","v":["κατάκρισις","katákrisis","kat-ak'-ree-sis","From G2632; sentencing adversely (the act): - condemn (-ation)."]},{"k":"G2634","v":["κατακυριεύω","katakyrieúō","kat-ak-oo-ree-yoo'-o","From G2596 and G2961; to lord against, that is, control, subjugate: - exercise dominion over (lordship), be lord over, overcome."]},{"k":"G2635","v":["καταλαλέω","katalaléō","kat-al-al-eh'-o","From G2637; to be a traducer, that is, to slander: - speak against (evil of)."]},{"k":"G2636","v":["καταλαλία","katalalía","kat-al-al-ee'-ah","From G2637; defamation: - backbiting, evil speaking."]},{"k":"G2637","v":["κατάλαλος","katálalos","kat-al'-al-os","From G2596 and the base of G2980; talkative against, that is, a slanderer: - backbiter."]},{"k":"G2638","v":["καταλαμβάνω","katalambánō","kat-al-am-ban'-o","From G2596 and G1983; to take eagerly, that is, seize, possess, etc. (literally or figuratively): - apprehend, attain, come upon, comprehend, find, obtain, perceive, (over-) take."]},{"k":"G2639","v":["καταλέγω","katalégō","kat-al-eg'-o","From G2596 and G3004 (in its original meaning); to lay down, that is, (figuratively) to enrol: - take into the number."]},{"k":"G2640","v":["κατάλειμμα","katáleimma","kat-al'-ime-mah","From G2641; a remainder, that is, (by implication) a few: - remnant."]},{"k":"G2641","v":["καταλείπω","kataleípō","kat-al-i'-po","From G2596 and G3007; to leave down, that is, behind; by implication to abandon, have remaining: - forsake, leave, reserve."]},{"k":"G2642","v":["καταλιθάζω","katalitházō","kat-al-ith-ad'-zo","From G2596 and G3034; to stone down, that is, to death: - stone."]},{"k":"G2643","v":["καταλλαγή","katallagḗ","kat-al-lag-ay'","From G2644; exchange (figuratively adjustment), that is, restoration to (the divine) favor: - atonement, reconciliation (-ing)."]},{"k":"G2644","v":["καταλλάσσω","katallássō","kat-al-las'-so","From G2596 and G236; to change mutually, that is, (figuratively) to compound a difference: - reconcile."]},{"k":"G2645","v":["κατάλοιπος","katáloipos","kat-al'-oy-pos","From G2596 and G3062; left down (behind), that is, remaining (plural the rest): - residue."]},{"k":"G2646","v":["κατάλυμα","katályma","kat-al'-oo-mah","From G2647; properly a dissolution (breaking up of a journey), that is, (by implication) a lodging place: - guestchamber, inn."]},{"k":"G2647","v":["καταλύω","katalýō","kat-al-oo'-o","From G2596 and G3089; to loosen down (disintegrate), that is, (by implication) to demolish (literally or figuratively); specifically (compare G2646) to halt for the night: - destroy, dissolve, be guest, lodge, come to nought, overthrow, throw down."]},{"k":"G2648","v":["καταμανθάνω","katamanthánō","kat-am-an-than'-o","From G2596 and G3129; to learn thoroughly, that is, (by implication) to note carefully: - consider."]},{"k":"G2649","v":["καταμαρτυρέω","katamartyréō","kat-am-ar-too-reh'-o","From G2596 and G3140; to testify against: - witness against."]},{"k":"G2650","v":["καταμένω","kataménō","kat-am-en'-o","From G2596 and G3306; to stay fully, that is, reside: - abide."]},{"k":"G2651","v":["καταμόνας","katamónas","kat-am-on'-as","From G2596 and the accusative plural feminine of G3441 (with G5561 implied); according to sole places, that is, (adverbially) separately: - alone."]},{"k":"G2652","v":["κατανάθεμα","katanáthema","kat-an-ath'-em-ah","From G2596 (intensive) and G331; an imprecation: - curse."]},{"k":"G2653","v":["καταναθεματίζω","katanathematízō","kat-an-ath-em-at-id'-zo","From G2596 (intensive) and G332; to imprecate: - curse."]},{"k":"G2654","v":["καταναλίσκω","katanalískō","kat-an-al-is'-ko","From G2596 and G355; to consume utterly: - consume."]},{"k":"G2655","v":["καταναρκάω","katanarkáō","kat-an-ar-kah'-o","From G2596 and ναρκάω narkaō (to be numb); to grow utterly torpid, that is, (by implication) slothful (figuratively expensive): - be burdensome (chargeable)."]},{"k":"G2656","v":["κατανεύω","kataneúō","kat-an-yoo'-o","From G2596 and G3506; to nod down (towards), that is, (by analogy) to make signs to: - beckon."]},{"k":"G2657","v":["κατανοέω","katanoéō","kat-an-o-eh'-o","From G2596 and G3539; to observe fully: - behold, consider, discover, perceive."]},{"k":"G2658","v":["καταντάω","katantáō","kat-an-tah'-o","From G2596 and a derivative of G473; to meet against, that is, arrive at (literally or figuratively): - attain, come."]},{"k":"G2659","v":["κατάνυξις","katányxis","kat-an'-oox-is","From G2660; a prickling (sensation, as of the limbs asleep), that is, (by implication [perhaps by some confusion with G3506 or even with G3571]) stupor (lethargy): - slumber."]},{"k":"G2660","v":["κατανύσσω","katanýssō","kat-an-oos'-so","From G2596 and G3572; to pierce thoroughly, that is, (figuratively) to agitate violently (“sting to the quick”): - prick."]},{"k":"G2661","v":["καταξιόω","kataxióō","kat-ax-ee-o'-o","From G2596 and G515; to deem entirely deserving: - (ac-) count worthy."]},{"k":"G2662","v":["καταπατέω","katapatéō","kat-ap-at-eh'-o","From G2596 and G3961; to trample down; figuratively to reject with disdain: - trample, tread (down, underfoot)."]},{"k":"G2663","v":["κατάπαυσις","katápausis","kat-ap'-ow-sis","From G2664; reposing down, that is, (by Hebraism) abode: - rest."]},{"k":"G2664","v":["καταπαύω","katapaúō","kat-ap-ow'-o","From G2596 and G3973; to settle down, that is, (literally) to colonize, or (figuratively) to (cause to) desist: - cease, (give) rest (-rain)."]},{"k":"G2665","v":["καταπέτασμα","katapétasma","kat-ap-et'-as-mah","From a compound of G2596 and a congener of G4072; something spread thoroughly, that is, (specifically) the door screen (to the Most Holy Place) in the Jewish Temple: - vail."]},{"k":"G2666","v":["καταπίνω","katapínō","kat-ap-ee'-no","From G2596 and G4095; to drink down, that is, gulp entire (literally or figuratively): - devour, drown, swallow (up)."]},{"k":"G2667","v":["καταπίπτω","katapíptō","kat-ap-ip'-to","From G2596 and G4098; to fall down: - fall (down)."]},{"k":"G2668","v":["καταπλέω","katapléō","kat-ap-leh'-o","From G2596 and G4126; to sail down upon a place, that is, to land at: - arrive."]},{"k":"G2669","v":["καταπονέω","kataponéō","kat-ap-on-eh'-o","From G2596 and a derivative of G4192; to labor down, that is, wear with toil (figuratively harass): - oppress, vex."]},{"k":"G2670","v":["καταποντίζω","katapontízō","kat-ap-on-tid'-zo","From G2596 and a derivative of the same as G4195; to plunge down, that is, submerge: - drown, sink."]},{"k":"G2671","v":["κατάρα","katára","kat-ar'-ah","From G2596 (intensive) and G685; imprecation, execration: - curse (-d, -ing)."]},{"k":"G2672","v":["καταράομαι","kataráomai","kat-ar-ah'-om-ahee","Middle voice from G2671; to execrate; by analogy to doom: - curse."]},{"k":"G2673","v":["καταργέω","katargéō","kat-arg-eh'-o","From G2596 and G691; to be (render) entirely idle (useless), literally or figuratively: - abolish, cease, cumber, deliver, destroy, do away, become (make) of no (none, without) effect, fail, loose, bring (come) to nought, put away (down), vanish away, make void."]},{"k":"G2674","v":["καταριθμέω","katarithméō","kat-ar-ith-meh'-o","From G2596 and G705; to reckon among: - number with."]},{"k":"G2675","v":["καταρτίζω","katartízō","kat-ar-tid'-zo","From G2596 and a derivative of G739; to complete thoroughly, that is, repair (literally or figuratively) or adjust: - fit, frame, mend, (make) perfect (-ly join together), prepare, restore."]},{"k":"G2676","v":["κατάρτισις","katártisis","kat-ar'-tis-is","From G2675; thorough equipment (subjectively): - perfection."]},{"k":"G2677","v":["καταρτισμός","katartismós","kat-ar-tis-mos'","From G2675; complete furnishing (objectively): - perfecting."]},{"k":"G2678","v":["κατασείω","kataseíō","kat-as-i'-o","From G2596 and G4579; to sway downward, that is, make a signal: - beckon."]},{"k":"G2679","v":["κατασκάπτω","kataskáptō","kat-as-kap'-to","From G2596 and G4626; to undermine, that is, (by implication) destroy: - dig down, ruin."]},{"k":"G2680","v":["κατασκευάζω","kataskeuázō","kat-ask-yoo-ad'-zo","From G2596 and a derivative of G4632; to prepare thoroughly (properly by external equipment; whereas G2090 refers rather to internal fitness); by implication to construct, create: - build, make, ordain, prepare."]},{"k":"G2681","v":["κατασκηνόω","kataskēnóō","kat-as-kay-no'-o","From G2596 and G4637; to camp down, that is, haunt; figuratively to remain: - lodge, rest."]},{"k":"G2682","v":["κατασκήνωσις","kataskḗnōsis","kat-as-kay'-no-sis","From G2681; an encamping, that is, (figuratively) a perch: - nest."]},{"k":"G2683","v":["κατασκιάζω","kataskiázō","kat-as-kee-ad'-zo","From G2596 and a derivative of G4639; to overshade, that is, cover: - shadow."]},{"k":"G2684","v":["κατασκοπέω","kataskopéō","kat-as-kop-eh'-o","From G2685; to be a sentinel, that is, to inspect insidiously: - spy out."]},{"k":"G2685","v":["κατάσκοπος","katáskopos","kat-as'-kop-os","From G2596 (intensive) and G4649 (in the sense of a watcher); a reconnoiterer: - spy."]},{"k":"G2686","v":["κατασοφίζομαι","katasophízomai","kat-as-of-id'-zom-ahee","Middle voice from G2596 and G4679; to be crafty against, that is, circumvent: - deal subtilly with."]},{"k":"G2687","v":["καταστέλλω","katastéllō","kat-as-tel'-lo","From G2596 and G4724; to put down, that is, quell: - appease, quiet."]},{"k":"G2688","v":["κατάστημα","katástēma","kat-as'-tay-mah","From G2525; properly a position or condition, that is, (subjectively) demeanor: - behaviour."]},{"k":"G2689","v":["καταστολή","katastolḗ","kat-as-tol-ay'","From G2687; a deposit, that is, (specifically) costume: - apparel."]},{"k":"G2690","v":["καταστρέφω","katastréphō","kat-as-tref'-o","From G2596 and G4762; to turn upside down, that is, upset: - overthrow."]},{"k":"G2691","v":["καταστρηνιάω","katastrēniáō","kat-as-tray-nee-ah'-o","From G2596 and G4763; to become voluptuous against: - begin to wax wanton against."]},{"k":"G2692","v":["καταστροφή","katastrophḗ","kat-as-trof-ay'","From G2690; an overturn (“catastrophe”), that is, demolition; figuratively apostasy: - overthrow, subverting."]},{"k":"G2693","v":["καταστρώννυμι","katastrṓnnymi","kat-as-trone'-noo-mee","From G2596 and G4766; to strew down, that is, (by implication) to prostrate (slay): - overthrow."]},{"k":"G2694","v":["κατασύρω","katasýrō","kat-as-oo'-ro","From G2596 and G4951; to drag down, that is, arrest judicially: - hale."]},{"k":"G2695","v":["κατασφάττω","kataspháttō","kat-as-fat'-to","From G2596 and G4969; to kill down, that is, slaughter: - slay."]},{"k":"G2696","v":["κατασφραγίζω","katasphragízō","kat-as-frag-id'-zo","From G2596 and G4972; to seal closely: - seal."]},{"k":"G2697","v":["κατάσχεσις","katáschesis","kat-as'-khes-is","From G2722; a holding down, that is, occupancy: - possession."]},{"k":"G2698","v":["κατατίθημι","katatíthēmi","kat-at-ith'-ay-mee","From G2596 and G5087; to place down, that is, deposit (literally or figuratively): - do, lay, shew."]},{"k":"G2699","v":["κατατομή","katatomḗ","kat-at-om-ay'","From a compound of G2596 and τέμνω temnō (to cut); a cutting down (off), that is, mutilation (ironically): - concision. Compare G609."]},{"k":"G2700","v":["κατατοξεύω","katatoxeúō","kat-at-ox-yoo'-o","From G2596 and a derivative of G5115; to shoot down with an arrow or other missile: - thrust through."]},{"k":"G2701","v":["κατατρέχω","katatréchō","kat-at-rekh'-o","From G2596 and G5143; to run down, that is, hasten from a tower: - run down."]},{"k":"G2702","v":["καταφέρω","kataphérō","kat-af-er'-o","From G2596 and G5342 (including its alternate); to bear down, that is, (figuratively) overcome (with drowsiness); specifically to cast a vote: - fall, give, sink down."]},{"k":"G2703","v":["καταφεύγω","katapheúgō","kat-af-yoo'-go","From G2596 and G5343; to flee down (away): - flee."]},{"k":"G2704","v":["καταφθείρω","kataphtheírō","kat-af-thi'-ro","From G2596 and G5351; to spoil entirely, that is, (literally) to destroy; or (figuratively) to deprave: - corrupt, utterly perish."]},{"k":"G2705","v":["καταφιλέω","kataphiléō","kat-af-ee-leh'-o","From G2596 and G5368; to kiss earnestly: - kiss."]},{"k":"G2706","v":["καταφρονέω","kataphronéō","kat-af-ron-eh'-o","From G2596 and G5426; to think against, that is, disesteem: - despise."]},{"k":"G2707","v":["καταφροντής","kataphrontḗs","kat-af-ron-tace'","From G2706; a contemner: - despiser."]},{"k":"G2708","v":["καταχέω","katachéō","kat-akh-eh'-o","From G2596 and χέω cheō (to pour); to pour down (out): - pour."]},{"k":"G2709","v":["καταχθόνιος","katachthónios","kat-akh-thon'-ee-os","From G2596 and χθών chthōn (the ground); subterranean, that is, infernal (belonging to the world of departed spirits): - under the earth."]},{"k":"G2710","v":["καταχράομαι","katachráomai","kat-akh-rah'-om-ahee","From G2596 and G5530; to overuse, that is, misuse: - abuse."]},{"k":"G2711","v":["καταψύχω","katapsýchō","kat-ap-soo'-kho","From G2596 and G5594; to cool down (off), that is, refresh: - cool."]},{"k":"G2712","v":["κατείδωλος","kateídōlos","kat-i'-do-los","From G2596 (intensive) and G1497; utterly idolatrous: - wholly given to idolatry."]},{"k":"G2713","v":["κατέναντι","katénanti","kat-en'-an-tee","From G2596 and G1725; directly opposite: - before, over against."]},{"k":"G2714","v":["κατενώπιον","katenṓpion","kat-en-o'-pee-on","From G2596 and G1799; directly in front of: - before (the presence of), in the sight of."]},{"k":"G2715","v":["κατεξουσιάζω","katexousiázō","kat-ex-oo-see-ad'-zo","From G2596 and G1850; to have (wield) full privilege over: - exercise authority."]},{"k":"G2716","v":["κατεργάζομαι","katergázomai","kat-er-gad'-zom-ahee","From G2596 and G2038; to work fully, that is, accomplish; by implication to finish, fashion: - cause, do (deed), perform, work (out)."]},{"k":"G2718","v":["κατέρχομαι","katérchomai","kat-er'-khom-ahee","From G2596 and G2064 (including its alternate); to come (or go) down (literally or figuratively): - come (down), depart, descend, go down, land."]},{"k":"G2719","v":["κατεσθίω","katesthíō","kat-es-thee'-o","From G2596 and G2068 (including its alternate); to eat down, that is, devour (literally or figuratively): - devour."]},{"k":"G2720","v":["κατευθύνω","kateuthýnō","kat-yoo-thoo'-no","From G2590 and G2116; to straighten fully, that is, (figuratively) direct: - guide, direct."]},{"k":"G2721","v":["κατεφίστημι","katephístēmi","kat-ef-is'-tay-mee","From G2596 and G2186; to stand over against, that is, rush upon (assault): - make insurrection against."]},{"k":"G2722","v":["κατέχω","katéchō","kat-ekh'-o","From G2596 and G2192; to hold down (fast), in various applications (literally or figuratively): - have, hold (fast), keep (in memory), let, X make toward, possess, retain, seize on, stay, take, withhold."]},{"k":"G2723","v":["κατηγορέω","katēgoréō","kat-ay-gor-eh'-o","From G2725; to be a plaintiff, that is, to charge with some offence: - accuse, object."]},{"k":"G2724","v":["κατηγορία","katēgoría","kat-ay-gor-ee'-ah","From G2725; a complaint (“category”), that is, criminal charge: - accusation (X -ed)."]},{"k":"G2725","v":["κατήγορος","katḗgoros","kat-ay'-gor-os","From G2596 and G58; against one in the assembly, that is, a complainant at law; specifically Satan: - accuser."]},{"k":"G2726","v":["κατήφεια","katḗpheia","kat-ay'-fi-ah","From a compound of G2596 and perhaps a derivative of the base of G5316 (meaning downcast in look); demureness, that is, (by implication) sadness: - heaviness."]},{"k":"G2727","v":["κατηχέω","katēchéō","kat-ay-kheh'-o","From G2596 and G2279; to sound down into the ears, that is, (by implication) to indoctrinate (“catechize”) or (generally) to apprise of: - inform, instruct, teach."]},{"k":"G2728","v":["κατιόω","katióō","kat-ee-o'-o","From G2596 and a derivative of G2447; to rust down, that is, corrode: - canker."]},{"k":"G2729","v":["κατισχύω","katischýō","kat-is-khoo'-o","From G2596 and G2480; to overpower: - prevail (against)."]},{"k":"G2730","v":["κατοικέω","katoikéō","kat-oy-keh'-o","From G2596 and G3611; to house permanently, that is, reside (literally or figuratively): - dwell (-er), inhabitant (-ter)."]},{"k":"G2731","v":["κατοίκησις","katoíkēsis","kat-oy'-kay-sis","From G2730; residence (properly the act; but by implication concretely the mansion): - dwelling."]},{"k":"G2732","v":["κατοικητήριον","katoikētḗrion","kat-oy-kay-tay'-ree-on","From a derivative of G2730; a dwelling place: - habitation."]},{"k":"G2733","v":["κατοικία","katoikía","kat-oy-kee'-ah","residence (properly the condition; but by implication the abode itself): - habitation."]},{"k":"G2734","v":["κατοπτρίζομαι","katoptrízomai","kat-op-trid'-zom-ahee","Middle voice from a compound of G2596 and a derivative of G3700 (compare G2072); to mirror oneself, that is, to see reflected (figuratively): - behold as in a glass."]},{"k":"G2735","v":["κατόρθωμα","katórthōma","kat-or'-tho-mah","From a compound of G2596 and a derivative of G3717 (compare G1357); something made fully upright, that is, (figuratively) rectification (specifically good public administration): - very worthy deed."]},{"k":"G2736","v":["κάτω","kátō","kat'-o","[Compare G2737]; adverb from G2596; downwards: - beneath, bottom, down, under."]},{"k":"G2737","v":["κατώτερος","katṓteros","kat-o'-ter-os","Compound from G2736; inferior (locally, of Hades): - lower."]},{"k":"G2738","v":["καῦμα","kaûma","kow'-mah","From G2545; properly a burn (concretely), but used (abstractly) of a glow: - heat."]},{"k":"G2739","v":["καυματίζω","kaumatízō","kow-mat-id'-zo","From G2738; to burn: - scorch."]},{"k":"G2740","v":["καῦσις","kaûsis","kow'-sis","From G2545; burning (the act): - be burned."]},{"k":"G2741","v":["καυσόω","kausóō","kow-so'-o","From G2740; to set on fire: - with fervent heat."]},{"k":"G2742","v":["καύσων","kaúsōn","kow'-sone","From G2741; a glare: - (burning) heat."]},{"k":"G2743","v":["καυτηριάζω","kautēriázō","kow-tay-ree-ad'-zo","From a derivative of G2545; to brand (“cauterize”), that is, (by implication) to render unsensitive (figuratively): - sear with a hot iron."]},{"k":"G2744","v":["καυχάομαι","kaucháomai","kow-khah'-om-ahee","From some (obsolete) base akin to that of αὐχέω aucheō (to boast) and G2172; to vaunt (in a good or a bad sense): - (make) boast, glory, joy, rejoice."]},{"k":"G2745","v":["καύχημα","kaúchēma","kow'-khay-mah","From G2744; a boast (properly the objective; by implication the act) in a good or bad sense: - boasting, (whereof) to glory (of), glorying, rejoice (-ing)."]},{"k":"G2746","v":["καύχησις","kaúchēsis","kow'-khay-sis","From G2744; boasting (properly the act; by implication the objective), in a good or a bad sense: - boasting, whereof I may glory, glorifying, rejoicing."]},{"k":"G2747","v":["Κεγχρεαί","Kenchreaí","keng-khreh-a'-hee","Probably from κέγχρος kegchros (millet); Cenchreae, a port of Corinth: - Cenchrea."]},{"k":"G2748","v":["Κεδρών","Kedrṓn","ked-rone'","Of Hebrew origin [H6939]; Cedron (that is, Kidron), a brook near Jerusalem: - Cedron."]},{"k":"G2749","v":["κεῖμαι","keîmai","ki'-mahee","Middle voice of a primary verb; to lie outstretched (literally or figuratively): - be (appointed, laid up, made, set), lay, lie. Compare G5087."]},{"k":"G2750","v":["κειρία","keiría","ki-ree'-ah","Of uncertain affinity; a swathe, that is, winding sheet: - graveclothes."]},{"k":"G2751","v":["κείρω","keírō","ki'-ro","A primary verb; to shear: - shear (-er)."]},{"k":"G2752","v":["κέλευμα","kéleuma","kel'-yoo-mah","From G2753; a cry of incitement: - shout."]},{"k":"G2753","v":["κελεύω","keleúō","kel-yoo'-o","From a primary word κέλλω kellō (to urge on); “hail”; to incite by word, that is, order: - bid, (at, give) command (-ment)."]},{"k":"G2754","v":["κενοδοξία","kenodoxía","ken-od-ox-ee'-ah","From G2755; empty glorying, that is, self conceit: - vain-glory."]},{"k":"G2755","v":["κενόδοξος","kenódoxos","ken-od'-ox-os","From G2756 and G1391; vainly glorifying, that is, self conceited: - desirous of vain-glory."]},{"k":"G2756","v":["κενός","kenós","ken-os'","Apparently a primary word; empty (literally or figuratively): - empty, (in) vain."]},{"k":"G2757","v":["κενοφωνία","kenophōnía","ken-of-o-nee'-ah","From a presumed compound of G2756 and G5456; empty sounding, that is, fruitless discussion: - vain."]},{"k":"G2758","v":["κενόω","kenóō","ken-o'-o","From G2756; to make empty, that is, (figuratively) to abase, neutralize, falsify: - make (of none effect, of no reputation, void), be in vain."]},{"k":"G2759","v":["κέντρον","kéntron","ken'-tron","From κεντέω kenteō (to prick); a point (“centre”), that is, a sting (figuratively poison) or goad (figuratively divine impulse): - prick, sting."]},{"k":"G2760","v":["κεντυρίων","kentyríōn","ken-too-ree'-ohn","Of Latin origin; a centurion, that is, captain of one hundred soldiers: - centurion."]},{"k":"G2761","v":["κενῶς","kenōs","ken-oce'","Adverb from G2756; vainly, that is, to no purpose: - in vain."]},{"k":"G2762","v":["κεραία","keraía","ker-ah'-yah","Feminine of a presumed derivative of the base of G2768; something horn like, that is, (specifically) the apex of a Hebrew letter (figuratively the least particle): - tittle."]},{"k":"G2763","v":["κεραμεύς","kerameús","ker-am-yooce'","From G2766; a potter: - potter."]},{"k":"G2764","v":["κεραμικός","keramikós","ker-am-ik-os'","From G2766; made of clay, that is, earthen: - of a potter."]},{"k":"G2765","v":["κεράμιον","kerámion","ker-am'-ee-on","Neuter of a presumed derivative of G2766; an earthenware vessel, that is, jar: - pitcher."]},{"k":"G2766","v":["κέραμος","kéramos","ker'-am-os","Probably from the base of G2767 (through the idea of mixing clay and water); earthenware, that is, a tile (by analogy a thin roof or awning): - tiling."]},{"k":"G2767","v":["κεράννυμι","keránnymi","ker-an'-noo-mee","A prolonged form of a more primary word κεράω keraō (which is used in certain tenses); to mingle, that is, (by implication) to pour out (for drinking): - fill, pour out. Compare G3396."]},{"k":"G2768","v":["κέρας","kéras","ker'-as","From a primary word κάρ kar (the hair of the head); a horn (literally or figuratively): - horn."]},{"k":"G2769","v":["κεράτιον","kerátion","ker-at'-ee-on","Neuter of a presumed derivative of G2768; something horned, that is, (specifically) the pod of the carob tree: - husk."]},{"k":"G2770","v":["κερδαίνω","kerdaínō","ker-dah'-ee-no","From G2771; to gain (literally or figuratively): - (get) gain, win."]},{"k":"G2771","v":["κέρδος","kérdos","ker'-dos","Of uncertain affinity; gain (pecuniary or generally): - gain, lucre."]},{"k":"G2772","v":["κέρμα","kérma","ker'-mah","From G2751; a clipping (bit), that is, (specifically) a coin: - money."]},{"k":"G2773","v":["κερματιστής","kermatistḗs","ker-mat-is-tace'","From a derivative of G2772; a handler of coins, that is, money broker: - changer of money."]},{"k":"G2774","v":["κεφάλαιον","kephálaion","kef-al'-ah-yon","Neuter of a derivative of G2776; a principal thing, that is, main point; specifically an amount (of money): - sum."]},{"k":"G2775","v":["κεφαλαιόω","kephalaióō","kef-al-ahee-o'-o","From the same as G2774; (specifically) to strike on the head: - wound in the head."]},{"k":"G2776","v":["κεφαλή","kephalḗ","kef-al-ay'","Probably from the primary word κάπτω kaptō (in the sense of seizing); the head (as the part most readily taken hold of), literally or figuratively: - head."]},{"k":"G2777","v":["κεφαλίς","kephalís","kef-al-is'","From G2776; properly a knob, that is, (by implication) a roll (by extension from the end of a stick on which the manuscript was rolled): - volume."]},{"k":"G2778","v":["κῆνσος","kēnsos","kane'-sos","Of Latin origin; properly an enrolment (“census”), that is, (by implication) a tax: - tribute."]},{"k":"G2779","v":["κῆπος","kēpos","kay'-pos","Of uncertain affinity; a garden: - garden."]},{"k":"G2780","v":["κηπουρός","kēpourós","kay-poo-ros'","From G2779 and οὖρος ouros (a warden); a garden keeper, that is, gardener: - gardener."]},{"k":"G2781","v":["κηρίον","kēríon","kay-ree'-on","Diminutive from κηός kēos (wax); a cell for honey, that is, (collectively) the comb: - [honey-] comb."]},{"k":"G2782","v":["κήρυγμα","kḗrygma","kay'-roog-mah","From G2784; a proclamation (especially of the gospel; by implication the gospel itself): - preaching."]},{"k":"G2783","v":["κῆρυξ","kēryx","kay'-roox","From G2784; a herald, that is, of divine truth (especially of the gospel): - preacher."]},{"k":"G2784","v":["κηρύσσω","kērýssō","kay-roos'-so","Of uncertain affinity; to herald (as a public crier), especially divine truth (the gospel): - preach (-er), proclaim, publish."]},{"k":"G2785","v":["κῆτος","kētos","kay'-tos","Probably from the base of G5490; a huge fish (as gaping for prey): - whale."]},{"k":"G2786","v":["Κηφᾶς","Kēphâs","kay-fas'","Of Chaldee origin (compare [H3710]); the Rock; Cephas (that is, Kepha), surname of Peter: - Cephas."]},{"k":"G2787","v":["κιβωτός","kibōtós","kib-o-tos'","Of uncertain derivative; a box, that is, the sacred ark and that of Noah: - ark."]},{"k":"G2788","v":["κιθάρα","kithára","kith-ar'-ah","Of uncertain affinity; a lyre: - harp."]},{"k":"G2789","v":["κιθαρίζω","kitharízō","kith-ar-id'-zo","From G2788; to play on a lyre: - harp."]},{"k":"G2790","v":["κιθαρῳδός","kitharōidós","kith-ar-o'-dos","From G2788 and a derivative of the same as G5603; a lyre singer (player), that is, harpist: - harper."]},{"k":"G2791","v":["Κιλικία","Kilikía","kil-ik-ee'-ah","Probably of foreign origin; Cilicia, a region of Asia Minor: - Cilicia."]},{"k":"G2792","v":["κινάμωμον","kinámōmon","kin-am'-o-mon","Of foreign origin (compare [H7076]); cinnamon: - cinnamon."]},{"k":"G2793","v":["κινδυνεύω","kindyneúō","kin-doon-yoo'-o","From G2794; to undergo peril: - be in danger, be (stand) in jeopardy."]},{"k":"G2794","v":["κίνδυνος","kíndynos","kin'-doo-nos","Of uncertain derivation; danger: - peril."]},{"k":"G2795","v":["κινέω","kinéō","kin-eh'-o","From κίω kiō (poetic for [εἶμι eimi to go]); to stir (transitively), literally or figuratively: - (re-) move (-r), way."]},{"k":"G2796","v":["κίνησις","kínēsis","kin'-ay-sis","From G2795; a stirring: - moving."]},{"k":"G2797","v":["Κίς","Kís","kis","Of Hebrew origin [H7027]); Cis (that is, Kish), an Israelite: - Cis."]},{"k":"G2798","v":["κλάδος","kládos","klad'-os","From G2806; a twig or bough (as if broken off): - branch."]},{"k":"G2799","v":["κλαίω","klaíō","klah'-yo","Of uncertain affinity; to sob, that is, wail aloud (whereas G1145 is rather to cry silently): - bewail. weep."]},{"k":"G2800","v":["κλάσις","klásis","klas'-is","From G2806; fracture (the act): - breaking."]},{"k":"G2801","v":["κλάσμα","klásma","klas'-mah","From G2806; a piece (bit): - broken, fragment."]},{"k":"G2802","v":["Κλαύδη","Klaúdē","klow'-day","Of uncertain derivation; Claude, an island near Crete: - Clauda."]},{"k":"G2803","v":["Κλαυδία","Klaudía","klow-dee'-ah","Feminine of G2804; Claudia, a Christian woman: - Claudia."]},{"k":"G2804","v":["Κλαύδιος","Klaúdios","klow'-dee-os","Of Latin origin; Claudius, the name of two Romans: - Claudius."]},{"k":"G2805","v":["κλαυθμός","klauthmós","klowth-mos'","From G2799; lamentation: - wailing, weeping, X wept."]},{"k":"G2806","v":["κλάω","kláō","klah'-o","A primary verb; to break (specifically of bread): - break."]},{"k":"G2807","v":["κλείς","kleís","klice","From G2808; a key (as shutting a lock), literally or figuratively: - key."]},{"k":"G2808","v":["κλείω","kleíō","kli'-o","A primary verb; to close (literally or figuratively): - shut (up)."]},{"k":"G2809","v":["κλέμμα","klémma","klem'-mah","From G2813; stealing (properly the thing stolen, but used of the act): - theft."]},{"k":"G2810","v":["Κλεόπας","Kleópas","kleh-op'-as","Probably contracted from Κλεόπατρος Kleopatros (compounded from G2811 and G3962); Cleopas, a Christian: - Cleopas."]},{"k":"G2811","v":["κλέος","kléos","kleh'-os","From a shorter form of G2564; renown (as if being called): - glory."]},{"k":"G2812","v":["κλέπτης","kléptēs","klep'-tace","From G2813; a stealer (literally or figuratively): - thief. Compare G3027."]},{"k":"G2813","v":["κλέπτω","kléptō","klep'-to","A primary verb; to filch: - steal."]},{"k":"G2814","v":["κλῆμα","klēma","kaly'-mah","From G2806; a limb or shoot (as if broken off): - branch."]},{"k":"G2815","v":["Κλήμης","Klḗmēs","klay'-mace","Of Latin origin; merciful; Clemes (that is, Clemens), a Christian: - Clement."]},{"k":"G2816","v":["κληρονομέω","klēronoméō","klay-ron-om-eh'-o","From G2818; to be an heir to (literally or figuratively): - be heir, (obtain by) inherit (-ance)."]},{"k":"G2817","v":["κληρονομία","klēronomía","klay-ron-om-ee'-ah","From G2818; heirship, that is, (concretely) a patrimony or (generally) a possession: - inheritance."]},{"k":"G2818","v":["κληρονόμος","klēronómos","klay-ron-om'-os","From G2819 and the base of G3551 (in its original sense of partitioning, that is, [reflexively] getting by apportionment); a sharer by lot, that is, an inheritor (literally or figuratively); by implication a possessor: - heir."]},{"k":"G2819","v":["κλῆρος","klēros","klay'-ros","Probably from G2806 (through the idea of using bits of wood, etc., for the purpose); a die (for drawing chances); by implication a portion (as if so secured); by extension an acquisition (especially a patrimony, figuratively): - heritage, inheritance, lot, part."]},{"k":"G2820","v":["κληρόω","klēróō","klay-ro'-o","From G2819; to allot, that is, (figuratively) to assign (a privilege): - obtain an inheritance."]},{"k":"G2821","v":["κλῆσις","klēsis","klay'-sis","From a shorter form of G2564; an invitation (figuratively): - calling."]},{"k":"G2822","v":["κλητός","klētós","klay-tos'","From the same as G2821; invited, that is, appointed, or (specifically) a saint: - called."]},{"k":"G2823","v":["κλίβανος","klíbanos","klib'-an-os","Of uncertain derivation; an earthen pot used for baking in: - oven."]},{"k":"G2824","v":["κλίμα","klíma","klee'-mah","From G2827; a slope, that is, (specifically) a “clime” or tract of country: - part, region."]},{"k":"G2825","v":["κλίνη","klínē","klee'-nay","From G2827; a couch (for sleep, sickness, sitting or eating): - bed, table."]},{"k":"G2826","v":["κλινίδιον","klinídion","klin-id'-ee-on","Neuter of a presumed derivative of G2825; a pallet or little couch: - bed."]},{"k":"G2827","v":["κλίνω","klínō","klee'-no","A primary verb; to slant or slope, that is, incline or recline (literally or figuratively): - bow (down), be far spent, lay, turn to flight, wear away."]},{"k":"G2828","v":["κλισία","klisía","klee-see'-ah","From a derivative of G2827; properly reclination, that is, (concretely and specifically) a party at a meal: - company."]},{"k":"G2829","v":["κλοπή","klopḗ","klop-ay'","From G2813; stealing: - theft."]},{"k":"G2830","v":["κλύδων","klýdōn","kloo'-dohn","From κλύζω kluzō (to billow or dash over); a surge of the sea (literally or figuratively): - raging, wave."]},{"k":"G2831","v":["κλυδωνίζομαι","klydōnízomai","kloo-do-nid'-zom-ahee","Middle voice from G2830; to surge, that is, (figuratively) to fluctuate: - toss to and fro."]},{"k":"G2832","v":["Κλωπᾶς","Klōpâs","klo-pas'","Of Chaldee origin (corresponding to G256); Clopas, an Israelite: - Clopas."]},{"k":"G2833","v":["κνήθω","knḗthō","knay'-tho","From a primary word κνάω knaō (to scrape); to scratch, that is, (by implication) to tickle: - X itching."]},{"k":"G2834","v":["Κνίδος","Knídos","knee'-dos","Probably of foreign origin; Cnidus, a place in Asia Minor: - Cnidus."]},{"k":"G2835","v":["κοδράντης","kodrántēs","kod-ran'-tace","Of Latin origin; a quadrans, that is, fourth part of an as: - farthing."]},{"k":"G2836","v":["κοιλία","koilía","koy-lee'-ah","From κοῖλος koilos (“hollow”); a cavity, that is, (specifically) the abdomen; by implication the matrix; figuratively the heart: - belly, womb."]},{"k":"G2837","v":["κοιμάω","koimáō","koy-mah'-o","From G2749; to put to sleep, that is, (passively or reflexively) to slumber; figuratively to decease: - (be a-, fall a-, fall on) sleep, be dead."]},{"k":"G2838","v":["κοίμησις","koímēsis","koy'-may-sis","From G2837; sleeping, that is, (by implication) repose: - taking of rest."]},{"k":"G2839","v":["κοινός","koinós","koy-nos'","Probably from G4862; common, that is, (literally) shared by all or several, or (ceremonially) profane: - common, defiled, unclean, unholy."]},{"k":"G2840","v":["κοινόω","koinóō","koy-no'-o","From G2839; to make (or consider) profane (ceremonially): - call common, defile, pollute, unclean."]},{"k":"G2841","v":["κοινωνέω","koinōnéō","koy-no-neh'-o","From G2844; to share with others (objectively or subjectively): - communicate, distribute, be partaker."]},{"k":"G2842","v":["κοινωνία","koinōnía","koy-nohn-ee'-ah","From G2844; partnership, that is, (literally) participation, or (social) intercourse, or (pecuniary) benefaction: - (to) communicate (-ation), communion, (contri-), distribution, fellowship."]},{"k":"G2843","v":["κοινωνικός","koinōnikós","koy-no-nee-kos'","From G2844; communicative, that is, (pecuniarily) liberal: - willing to communicate."]},{"k":"G2844","v":["κοινωνός","koinōnós","koy-no-nos'","From G2839; a sharer, that is, associate: - companion, X fellowship, partaker, partner."]},{"k":"G2845","v":["κοίτη","koítē","koy'-tay","From G2749; a couch; by extension cohabitation; by implication the male sperm: - bed, chambering, X conceive."]},{"k":"G2846","v":["κοιτών","koitṓn","koy-tone'","From G2845; a bed room: - + chamberlain."]},{"k":"G2847","v":["κόκκινος","kókkinos","kok'-kee-nos","From G2848 (from the kernel shape of the insect); crimson colored: - scarlet (colour, coloured)."]},{"k":"G2848","v":["κόκκος","kókkos","kok'-kos","Apparently a primary word; a kernel of seed: - corn, grain."]},{"k":"G2849","v":["κολάζω","kolázō","kol-ad'-zo","From κόλος kolos (dwarf); properly to curtail, that is, (figuratively) to chastise (or reserve for infliction): - punish."]},{"k":"G2850","v":["κολακεία","kolakeía","kol-ak-i'-ah","From a derivative of κόλαξ kolax (a fawner); flattery: - X flattering."]},{"k":"G2851","v":["κόλασις","kólasis","kol'-as-is","From G2849; penal infliction: - punishment, torment."]},{"k":"G2852","v":["κολαφίζω","kolaphízō","kol-af-id'-zo","From a derivative of the base of G2849; to rap with the fist: - buffet."]},{"k":"G2853","v":["κολλάω","kolláō","kol-lah'-o","From κόλλα kolla (“glue”); to glue, that is, (passively or reflexively) to stick (figuratively): - cleave, join (self), keep company."]},{"k":"G2854","v":["κολλούριον","kolloúrion","kol-loo'-ree-on","Neuter of a presumed derivative of κολλύρα kollura (a cake; probably akin to the base of G2853); properly a poultice (as made of or in the form of crackers), that is, (by analogy) a plaster: - eyesalve."]},{"k":"G2855","v":["κολλυβιστής","kollybistḗs","kol-loo-bis-tace'","From a presumed derivative of κόλλυβος kollubos (a small coin; probably akin to G2854); a coin dealer: - (money-) changer."]},{"k":"G2856","v":["κολοβόω","kolobóō","kol-ob-o'-o","From a derivative of the base of G2849; to dock, that is, (figuratively) abridge: - shorten."]},{"k":"G2857","v":["Κολοσσαί","Kolossaí","kol-os-sah'-ee","Apparently feminine plural of κολοσσός kolossos (“colossal”); Colossae, a place in Asia Minor: - Colosse."]},{"k":"G2858","v":["Κολοσσαεύς","Kolossaeús","kol-os-sayoos'","From G2857; a Colossaean, that is, inhabitant of Colossae: - Colossian."]},{"k":"G2859","v":["κόλπος","kólpos","kol'-pos","Apparently a primary word; the bosom; by analogy a bay: - bosom, creek."]},{"k":"G2860","v":["κολυμβάω","kolymbáō","kol-oom-bah'-o","From κολυμβος kolumbos (a diver); to plunge into water: - swim."]},{"k":"G2861","v":["κολυμβήθρα","kolymbḗthra","kol-oom-bay'-thrah","From G2860; a diving place, that is, pond for bathing (or swimming): - pool."]},{"k":"G2862","v":["κολωνία","kolōnía","kol-o-nee'-ah","Of Latin origin; a Roman “colony” for veterans: - colony."]},{"k":"G2863","v":["κομάω","komáō","kom-ah'-o","From G2864; to wear tresses of hair: - have long hair."]},{"k":"G2864","v":["κόμη","kómē","kom'-ay","Apparently from the same as G2865; the hair of the head (locks, as ornamental, and thus differing from G2359, which properly denotes merely the scalp): - hair."]},{"k":"G2865","v":["κομίζω","komízō","kom-id'-zo","From a primary word κολυμβος kolumbos (to tend, that is, take care of); properly to provide for, that is, (by implication) to carry off (as if from harm; generally obtain): - bring, receive."]},{"k":"G2866","v":["κομψότερον","kompsóteron","komp-sot'-er-on","Neuter comparative of a derivative of the base of G2865 (meaning properly well dressed, that is, nice); figuratively convalescent: - + began to amend."]},{"k":"G2867","v":["κονιάω","koniáō","kon-ee-ah'-o","From κονία konia (dust; by analogy lime); to whitewash: - whiten."]},{"k":"G2868","v":["κονιορτός","koniortós","kon-ee-or-tos'","From the base of G2867 and ὄρνυμι ornumi (to “rouse”); pulverulence (as blown about): - dust."]},{"k":"G2869","v":["κοπάζω","kopázō","kop-ad'-zo","From G2873; to tire, that is, (figuratively) to relax: - cease."]},{"k":"G2870","v":["κοπετός","kopetós","kop-et-os'","From G2875; mourning (properly by beating the breast): - lamentation."]},{"k":"G2871","v":["κοπή","kopḗ","kop-ay'","From G2875; cutting, that is, carnage: - slaughter."]},{"k":"G2872","v":["κοπιάω","kopiáō","kop-ee-ah'-o","From a derivative of G2873; to feel fatigue; by implication to work hard: - (bestow) labour, toil, be wearied."]},{"k":"G2873","v":["κόπος","kópos","kop'-os","From G2875; a cut, that is, (by analogy) toil (as reducing the strength), literally or figuratively; by implication pains: - labour, + trouble, weariness."]},{"k":"G2874","v":["κοπρία","kopría","kop-ree'-ah","From κόπρος kopros (ordure; perhaps akin to G2875); manure: - dung (-hill)."]},{"k":"G2875","v":["κόπτω","kóptō","kop'-to","A primary verb; to “chop”; specifically to beat the breast in grief: - cut down, lament, mourn, (be-) wail. Compare the base of G5114."]},{"k":"G2876","v":["κόραξ","kórax","kor'-ax","Perhaps from G2880; a crow (from its voracity): - raven."]},{"k":"G2877","v":["κοράσιον","korásion","kor-as'-ee-on","Neuter of a presumed derivative of κόρη korē (a maiden); a (little) girl: - damsel, maid."]},{"k":"G2878","v":["κορβᾶν","korbân","kor-ban'","Of Hebrew and Chaldee origin respectively [H7133]; a votive offering and the offering; a consecrated present (to the Temple fund); by extension (the latter term) the Treasury itself, that is, the room where the contribution boxes stood: - Corban, treasury."]},{"k":"G2879","v":["Κορέ","Koré","kor-eh'","Of Hebrew origin [H7141]; Core (that is, Korach), an Israelite: - Core."]},{"k":"G2880","v":["κορέννυμι","korénnymi","kor-en'-noo-mee","A primary verb; to cram, that is, glut or sate: - eat enough, full."]},{"k":"G2881","v":["Κορίνθιος","Korínthios","kor-in'-thee-os","From G2882; a Corinthian, that is, inhabitant of Corinth: - Corinthian."]},{"k":"G2882","v":["Κόρινθος","Kórinthos","kor'-in-thos","Of uncertain derivation; Corinthus, a city of Greece: - Corinth."]},{"k":"G2883","v":["Κορνήλιος","Kornḗlios","kor-nay'-lee-os","Of Latin original; Cornelius, a Roman: - Cornelius."]},{"k":"G2884","v":["κόρος","kóros","kor'-os","Of Hebrew origin [H3734]; a cor, that is, a specific measure: - measure."]},{"k":"G2885","v":["κοσμέω","kosméō","kos-meh'-o","From G2889; to put in proper order, that is, decorate (literally or figuratively); specifically to snuff (a wick): - adorn, garnish, trim."]},{"k":"G2886","v":["κοσμικός","kosmikós","kos-mee-kos'","From G2889 (in its secondary sense); terrene (“cosmic”), literally (mundane) or figuratively (corrupt): - worldly."]},{"k":"G2887","v":["κόσμιος","kósmios","kos'-mee-os","From G2889 (in its primary sense); orderly, that is, decorous: - of good behaviour, modest."]},{"k":"G2888","v":["κοσμοκράτωρ","kosmokrátōr","kos-mok-fat'-ore","From G2889 and G2902; a world ruler, an epithet of Satan: - ruler."]},{"k":"G2889","v":["κόσμος","kósmos","kos'-mos","Probably from the base of G2865; orderly arrangement, that is, decoration; by implication the world (in a wide or narrow sense, including its inhabitants, literally or figuratively [morally]): - adorning, world."]},{"k":"G2890","v":["Κούαρτος","Koúartos","koo'-ar-tos","Of Latin origin (fourth); Quartus, a Christian: - Quartus."]},{"k":"G2891","v":["κοῦμι","koûmi","koo'-mee","Of Chaldee origin [H6966]; cumi (that is, rise!): - cumi."]},{"k":"G2892","v":["κουστωδία","koustōdía","koos-to-dee'-ah","Of Latin origin; “custody”, that is, a Roman sentry: - watch."]},{"k":"G2893","v":["κουφίζω","kouphízō","koo-fid'-zo","From κοῦφος kouphos (light in weight); to unload: - lighten."]},{"k":"G2894","v":["κόφινος","kóphinos","kof'-ee-nos","Of uncertain derivation; a (small) basket: - basket."]},{"k":"G2895","v":["κράββατος","krábbatos","krab'-bat-os","Probably of foreign origin; a mattress: - bed."]},{"k":"G2896","v":["κράζω","krázō","krad'-zo","A primary verb; properly to “croak” (as a raven) or scream, that is, (generally) to call aloud (shriek, exclaim, intreat): - cry (out)."]},{"k":"G2897","v":["κραιπάλη","kraipálē","krahee-pal'-ay","Probably from the same as G726; properly a headache (as a seizure of pain) from drunkenness, that is, (by implication) a debauch (by analogy a glut): - surfeiting."]},{"k":"G2898","v":["κρανίον","kraníon","kran-ee'-on","Diminutive of a derivative of the base of G2768; a skull (“cranium”): - Calvary, skull."]},{"k":"G2899","v":["κράσπεδον","kráspedon","kras'-ped-on","Of uncertain derivation; a margin, that is, (specifically) a fringe or tassel: -    border, hem."]},{"k":"G2900","v":["κραταιός","krataiós","krat-ah-yos'","From G2904; powerful: - mighty."]},{"k":"G2901","v":["κραταιόω","krataióō","krat-ah-yo'-o","From G2900; to empower, that is, (passively) increase in vigor: - be strenghtened, be (wax) strong."]},{"k":"G2902","v":["κρατέω","kratéō","krat-eh'-o","From G2904; to use strength, that is, seize or retain (literally or figuratively): - hold (by, fast), keep, lay hand (hold) on, obtain, retain, take (by)."]},{"k":"G2903","v":["κράτιστος","krátistos","krat'-is-tos","Superlative of a derivative of G2904; strongest, that is, (in dignity) very honorable: - most excellent (noble)."]},{"k":"G2904","v":["κράτος","krátos","krat'-os","Perhaps a primary word; vigor [“great”], (literally or figuratively): - dominion, might [-ily], power, strength."]},{"k":"G2905","v":["κραυγάζω","kraugázō","krow-gad'-zo","From G2906; to clamor: - cry out."]},{"k":"G2906","v":["κραυγή","kraugḗ","krow-gay'","From G2896; an outcry (in notification, tumult or grief): - clamour, cry (-ing)."]},{"k":"G2907","v":["κρέας","kréas","kreh'-as","Perhaps a primary word; (butcher’s) meat: - flesh."]},{"k":"G2908","v":["κρεῖσσον","kreîsson","krice'-son","Neuter of an alternate form of G2909; (as noun) better, that is, greater advantage: - better."]},{"k":"G2909","v":["κρείττων","kreíttōn","krite'-tohn","Comparative of a derivative of G2904; stronger, that is, (figuratively) better, that is, nobler: - best, better."]},{"k":"G2910","v":["κρεμάννυμι","kremánnymi","krem-an'-noo-mee","A prolonged form of a primary verb; to hang: - hang."]},{"k":"G2911","v":["κρημνός","krēmnós","krame-nos'","From G2910; overhanging, that is, a precipice: - steep place."]},{"k":"G2912","v":["Κρής","Krḗs","krace","From G2914; a Cretan, that is, inhabitant of Crete: - Crete, Cretian."]},{"k":"G2913","v":["Κρήσκης","Krḗskēs","krace'-kace","Of Latin origin; growing; Cresces (that is, Crescens), a Christian: - Crescens."]},{"k":"G2914","v":["Κρήτη","Krḗtē","kray'-tay","Of uncertain derivation; Crete, an island in the Mediterranean: - Crete."]},{"k":"G2915","v":["κριθή","krithḗ","kree-thay'","Of uncertain derivation; barley: - barley."]},{"k":"G2916","v":["κρίθινος","kríthinos","kree'-thee-nos","From G2915; consisting of barley: - barley."]},{"k":"G2917","v":["κρίμα","kríma","kree'-mah","From G2919; a decision (the function or the effect, for or against [“crime”]): - avenge, condemned, condemnation, damnation, + go to law, judgment."]},{"k":"G2918","v":["κρίνον","krínon","kree'-non","Perhaps a primary word; a lily: - lily."]},{"k":"G2919","v":["κρίνω","krínō","kree'-no","Properly to distinguish, that is, decide (mentally or judicially); by implication to try, condemn, punish: - avenge, conclude, condemn, damn, decree, determine, esteem, judge, go to (sue at the) law, ordain, call in question, sentence to, think."]},{"k":"G2920","v":["κρίσις","krísis","kree'-sis","(Subjectively or objectively, for or against); by extension a tribunal; by implication justice (specifically divine law): - accusation, condemnation, damnation, judgment."]},{"k":"G2921","v":["Κρίσπος","Kríspos","kris'-pos","Of Latin origin; “crisp”; Crispus, a Corinthian: - Crispus."]},{"k":"G2922","v":["κριτήριον","kritḗrion","kree-tay'-ree-on","Neuter of a presumed derivative of G2923; a rule of judging (“criterion”), that is, (by implication) a tribunal: - to judge, judgment (seat)."]},{"k":"G2923","v":["κριτής","kritḗs","kree-tace'","From G2919; a judge (generally or specifically): - judge."]},{"k":"G2924","v":["κριτικός","kritikós","krit-ee-kos'","From G2923; decisive (“critical”), that is, discriminative: - discerner."]},{"k":"G2925","v":["κρούω","kroúō","kroo'-o","Apparently a primary verb; to rap: - knock."]},{"k":"G2926","v":["κρύπτη","krýptē","kroop-tay'","Feminine of G2927; a hidden place, that is, cellar (“crypt”): - secret."]},{"k":"G2927","v":["κρυπτός","kryptós","kroop-tos'","From G2928; concealed, that is, private: - hid (-den), inward [-ly], secret."]},{"k":"G2928","v":["κρύπτω","krýptō","kroop'-to","A primary verb; to conceal (properly by covering): - hide (self), keep secret, secret [-ly]."]},{"k":"G2929","v":["κρυσταλλίζω","krystallízō","kroos-tal-lid'-zo","From G2930; to make (that is, intransitively resemble) ice (“crystallize”): - be clear as crystal."]},{"k":"G2930","v":["κρύσταλλος","krýstallos","kroos'-tal-los","From a derivative of κρύος kruos (frost); ice, that is, (by analogy) rock “crystal”: - crystal."]},{"k":"G2931","v":["κρυφῆ","kryphē","kroo-fay'","Adverb from G2928; privately: - in secret."]},{"k":"G2932","v":["κτάομαι","ktáomai","ktah'-om-ahee","A primary verb; to get, that is, acquire (by any means; own): - obtain, possess, provide, purchase."]},{"k":"G2933","v":["κτῆμα","ktēma","ktay'-mah","From G2932; an acquirement, that is, estate: - possession."]},{"k":"G2934","v":["κτῆνος","ktēnos","ktay'-nos","From G2932; property, that is, (specifically) a domestic animal: - beast."]},{"k":"G2935","v":["κτήτωρ","ktḗtōr","ktay'-tore","From G2932; an owner: - possessor."]},{"k":"G2936","v":["κτίζω","ktízō","ktid'-zo","Probably akin to G2932 (through the idea of the proprietorship of the manufacturer); to fabricate, that is, found (form originally): - create, Creator, make."]},{"k":"G2937","v":["κτίσις","ktísis","ktis'-is","From G2936; original formation (properly the act; by implication the thing, literally or figuratively): - building, creation, creature, ordinance."]},{"k":"G2938","v":["κτίσμα","ktísma","ktis'-mah","From G2936; an original formation (concretely), that is, product (created thing): - creature."]},{"k":"G2939","v":["κτίστης","ktístēs","ktis-tace'","From G2936; a founder, that is, God (as author of all things): - Creator."]},{"k":"G2940","v":["κυβεία","kybeía","koo-bi'-ah","From κύβος kubos (a “cube”, that is, die for playing); gambling, that is, (figuratively) artifice or fraud: - sleight."]},{"k":"G2941","v":["κυβέρνησις","kybérnēsis","koo-ber'-nay-sis","From κυβερνάω kubernaō (of Latin origin, to steer); pilotage, that is, (figuratively) directorship (in the church): - government."]},{"k":"G2942","v":["κυβερνήτης","kybernḗtēs","koo-ber-nay'-tace","From the same as G2941; helmsman, that is, (by implication) captain: - (ship) master."]},{"k":"G2943","v":["κυκλόθεν","kyklóthen","koo-kloth'-en","Adverb from the same as G2945; from the circle, that is, all around: - (round) about."]},{"k":"G2944","v":["κυκλόω","kyklóō","koo-klo'-o","From the same as G2945; to encircle, that is, surround: - compass (about), come (stand) round about."]},{"k":"G2945","v":["κύκλῳ","kýklōi","koo'-klo","As if dative case of κύκλος kuklos (a ring, “cycle”; akin to G2947); that is, in a circle (by implication of G1722), that is, (adverbially) all around: - round about."]},{"k":"G2946","v":["κύλισμα","kýlisma","koo'-lis-mah","From G2947; a wallow (the effect of rolling), that is, filth: - wallowing."]},{"k":"G2947","v":["κυλιόω","kylióō","koo-lee-o'-o","From the base of G2949 (through the idea of circularity; compare G2945 and G1507); to roll about: - wallow."]},{"k":"G2948","v":["κυλλός","kyllós","kool-los'","From the same as G2947; rocking about, that is, crippled (maimed, in feet or hands): - maimed."]},{"k":"G2949","v":["κῦμα","kŷma","koo'-mah","From κύω kuō (to swell [with young], that is, bend, curve); a billow (as bursting or toppling): - wave."]},{"k":"G2950","v":["κύμβαλον","kýmbalon","koom'-bal-on","From a derivative of the base of G2949; a “cymbal” (as hollow): - cymbal."]},{"k":"G2951","v":["κύμινον","kýminon","koo'-min-on","Of foreign origin (compare [H3646]); dill or fennel (“cummin”): - cummin."]},{"k":"G2952","v":["κυνάριον","kynárion","koo-nar'-ee-on","Neuter of a presumed derivative of G2965; a puppy: - dog."]},{"k":"G2953","v":["Κύπριος","Kýprios","koo'-pree-os","From G2954; a Cyprian (Cypriot), that is, inhabitant of Cyprus: - of Cyprus."]},{"k":"G2954","v":["Κύπρος","Kýpros","koo'-pros","Of uncertain origin; Cyprus, an island in the Mediterranean: - Cyprus."]},{"k":"G2955","v":["κύπτω","kýptō","koop'-to","Probably from the base of G2949; to bend forward: - stoop (down)."]},{"k":"G2956","v":["Κυρηναῖος","Kyrēnaîos","koo-ray-nah'-yos","From G2957; a Cyrenaean, that is, inhabitant of Cyrene: - of Cyrene, Cyrenian."]},{"k":"G2957","v":["Κυρήνη","Kyrḗnē","koo-ray'-nay","Of uncertain derivation; Cyrene, a region of Africa: - Cyrene."]},{"k":"G2958","v":["Κυρήνιος","Kyrḗnios","koo-ray'-nee-os","Of Latin origin; Cyrenius (that is, Quirinus), a Roman: - Cyrenius."]},{"k":"G2959","v":["Κυρία","Kyría","koo-ree'-ah","Feminine of G2962; Cyria, a Christian woman: - lady."]},{"k":"G2960","v":["κυριακός","kyriakós","koo-ree-ak-os'","From G2962; belonging to the Lord (Jehovah or Jesus): - Lord’s."]},{"k":"G2961","v":["κυριεύω","kyrieúō","ko-ree-yoo'-o","From G2962; to rule: - have dominion over, lord, be lord of, exercise lordship over."]},{"k":"G2962","v":["κύριος","kýrios","koo'-ree-os","From κῦρος kuros (supremacy); supreme in authority, that is, (as noun) controller; by implication Mr. (as a respectful title): - God, Lord, master, Sir."]},{"k":"G2963","v":["κυριότης","kyriótēs","koo-ree-ot'-ace","From G2962; mastery, that is, (concretely and collectively) rulers: - dominion, government."]},{"k":"G2964","v":["κυρόω","kyróō","koo-ro'-o","From the same as G2962; to make authoritative, that is, ratify: - confirm."]},{"k":"G2965","v":["κύων","kýōn","koo'-ohn","A primary word; a dog (“hound”), (literally or figuratively): - dog."]},{"k":"G2966","v":["κῶλον","kōlon","ko'-lon","From the base of G2849; a limb of the body (as if lopped): - carcase."]},{"k":"G2967","v":["κωλύω","kōlýō","ko-loo'-o","From the base of G2849; to estop, that is, prevent (by word or act): - forbid, hinder, keep from, let, not suffer, withstand."]},{"k":"G2968","v":["κώμη","kṓmē","ko'-may","From G2749; a hamlet (as if laid down): - town, village."]},{"k":"G2969","v":["κωμόπολις","kōmópolis","ko-mop'-ol-is","From G2968 and G4172; an unwalled city: - town."]},{"k":"G2970","v":["κῶμος","kōmos","ko'-mos","From G2749; a carousal (as if a letting loose): - revelling, rioting."]},{"k":"G2971","v":["κώνωψ","kṓnōps","ko'-nopes","Apparently from a derivative of the base of G2759 and a derivative of G3700; a mosquito (from its stinging proboscis): - gnat."]},{"k":"G2972","v":["Κώς","Kṓs","koce","Of uncertain origin; Cos, an island in the Mediterranean: - Cos."]},{"k":"G2973","v":["Κωσάμ","Kōsám","ko-sam'","Of Hebrew origin (compare [H7081]); Cosam (that is, Kosam), an Israelite: - Cosam."]},{"k":"G2974","v":["κωφός","kōphós","ko-fos'","From G2875; blunted, that is, (figuratively) of hearing (deaf) or speech (dumb): - deaf, dumb, speechless."]},{"k":"G2975","v":["λαγχάνω","lanchánō","lang-khan'-o","A prolonged form of a primary verb, which is only used as an alternate in certain tenses; to lot, that is, determine (by implication receive) especially by lot: - his lot be, cast lots, obtain."]},{"k":"G2976","v":["Λάζαρος","Lázaros","lad'-zar-os","Probably of Hebrew origin [H499]; Lazarus (that is, Elazar), the name of two Israelites (one imaginary): - Lazarus."]},{"k":"G2977","v":["λάθρα","láthra","lath'-rah","Adverb from G2990; privately: - privily, secretly."]},{"k":"G2978","v":["λαῖλαψ","laîlaps","lah'-ee-laps","Of uncertain derivation; a whirlwind (squall): - storm, tempest."]},{"k":"G2979","v":["λακτίζω","laktízō","lak-tid'-zo","From adverb λάξ lax (heelwise); to recalcitrate: - kick."]},{"k":"G2980","v":["λαλέω","laléō","lal-eh'-o","A prolonged form of an otherwise obsolete verb; to talk, that is, utter words: - preach, say, speak (after), talk, tell, utter. Compare G3004."]},{"k":"G2981","v":["λαλιά","laliá","lal-ee-ah'","From G2980; talk: - saying, speech."]},{"k":"G2982","v":["λαμά","lamá","lam-ah'","Of Hebrew origin ([H4100] with preposition prefixed); lama (that is, why): - lama."]},{"k":"G2983","v":["λαμβάνω","lambánō","lam-ban'-o","A prolonged form of a primary verb, which is used only as an alternate in certain tenses; to take (in very many applications, literally and figuratively [probably objective or active, to get hold of; whereas G1209 is rather subjective or passive, to have offered to one; while G138 is more violent, to seize or remove]): - accept, + be amazed, assay, attain, bring, X when I call, catch, come on (X unto), + forget, have, hold, obtain, receive (X after), take (away, up)."]},{"k":"G2984","v":["Λάμεχ","Lámech","lam'-ekh","Of Hebrew origin [H3929]; Lamech (that is, Lemek), a patriarch: - Lamech."]},{"k":"G2985","v":["λαμπάς","lampás","lam-pas'","From G2989; a “lamp” or flambeau: - lamp, light, torch."]},{"k":"G2986","v":["λαμπρός","lamprós","lam-pros'","From the same as G2985; radiant; by analogy limpid; figuratively magnificent or sumptuous (in appearance): - bright, clear, gay, goodly, gorgeous, white."]},{"k":"G2987","v":["λαμπρότης","lamprótēs","lam-prot'-ace","From G2896; brilliancy: - brightness."]},{"k":"G2988","v":["λαμπρῶς","lamprōs","lam-proce'","Adverb from G2986; brilliantly, that is, (figuratively) luxuriously: - sumptuously."]},{"k":"G2989","v":["λάμπω","lámpō","lam'-po","A primary verb; to beam, that is, radiate brilliancy (literally or figuratively): - give light, shine."]},{"k":"G2990","v":["λανθάνω","lanthánō","lan-than'-o","A prolonged form of a primary verb, which is used only as an alternate in certain tenses; to lie hid (literally or figuratively); often used adverbially unwittingly: - be hid, be ignorant of, unawares."]},{"k":"G2991","v":["λαξευτός","laxeutós","lax-yoo-tos'","From a compound of λᾶς las (a stone) and the base of G3584 (in its original sense of scraping); rock quarried: - hewn in stone."]},{"k":"G2992","v":["λαός","laós","lah-os'","Apparently a primary word; a people (in general; thus differing from G1218, which denotes one’s own populace): - people."]},{"k":"G2993","v":["Λαοδίκεια","Laodíkeia","lah-od-ik'-i-ah","From a compound of G2992 and G1349; Laodicia, a place in Asia Minor: - Laodicea."]},{"k":"G2994","v":["Λαοδικεύς","Laodikeús","lah-od-ik-yooce'","From G2993; a Laodicean, that is, inhabitant of Laodicia: - Laodicean."]},{"k":"G2995","v":["λάρυγξ","lárynx","lar'-oongks","Of uncertain derivative; the throat (“larynx”): - throat."]},{"k":"G2996","v":["Λασαία","Lasaía","las-ah'-yah","Of uncertain origin; Lasaea, a place in Crete: - Lasea."]},{"k":"G2997","v":["λάσχω","láschō","las'-kho","A strengthened form of a primary verb, which only occurs in this and another prolonged form as an alternate in certain tenses; to crack open (from a fall): - burst asunder."]},{"k":"G2998","v":["λατομέω","latoméō","lat-om-eh'-o","From the same as the first part of G2991 and the base of G5114; to quarry: - hew."]},{"k":"G2999","v":["λατρεία","latreía","lat-ri'-ah","From G3000; ministration of God, that is, worship: - (divine) service."]},{"k":"G3000","v":["λατρεύω","latreúō","lat-ryoo'-o","From λάτρις latris (a hired menial); to minister (to God), that is, render religious homage: - serve, do the service, worship (-per)."]},{"k":"G3001","v":["λάχανον","láchanon","lakh'-an-on","From λαχαίνω lachainō (to dig); a vegetable: - herb."]},{"k":"G3002","v":["Λεββαῖος","Lebbaîos","leb-bah'-yos","Of uncertain origin; Lebbaeus, a Christian: - Lebbus."]},{"k":"G3003","v":["λεγεών","legeṓn","leg-eh-ohn'","Of Latin origin; a “legion”, that is, Roman regiment (figuratively): - legion."]},{"k":"G3004","v":["λέγω","légō","leg'-o","A primary verb; properly to “lay” forth, that is, (figuratively) relate (in words [usually of systematic or set discourse; whereas G2036 and G5346 generally refer to an individual expression or speech respectively; while G4483 is properly to break silence merely, and G2980 means an extended or random harangue]); by implication to mean: - ask, bid, boast, call, describe, give out, name, put forth, say (-ing, on), shew, speak, tell, utter."]},{"k":"G3005","v":["λεῖμμα","leîmma","lime'-mah","From G3007; a remainder: - remnant."]},{"k":"G3006","v":["λεῖος","leîos","li'-os","Apparently a primary word; smooth, that is, “level”: - smooth."]},{"k":"G3007","v":["λείπω","leípō","li'-po","A primary verb; to leave, that is, (intransitive or passive) to fail or be absent: - be destitute (wanting), lack."]},{"k":"G3008","v":["λειτουργέω","leitourgéō","li-toorg-eh'-o","From G3011; to be a public servant, that is, (by analogy) to perform religious or charitable functions (worship, obey, relieve): - minister."]},{"k":"G3009","v":["λειτουργία","leitourgía","li-toorg-ee'-ah","From G3008; public function (as priest [“liturgy”] or almsgiver): - ministration (-try), service."]},{"k":"G3010","v":["λειτουργικός","leitourgikós","li-toorg-ik-os'","From the same as G3008; functional publicly (“liturgic”), that is, beneficent: - ministering."]},{"k":"G3011","v":["λειτουργός","leitourgós","li-toorg-os'","From a derivative of G2992 and G2041; a public servant, that is, a functionary in the Temple or Gospel, or (generally) a worshipper (of God) or benefactor (of man): - minister (-ed)."]},{"k":"G3012","v":["λέντιον","léntion","len'-tee-on","Of Latin origin; a “linen” cloth, that is, apron: - towel."]},{"k":"G3013","v":["λεπίς","lepís","lep-is'","From λέπω lepō (to peel); a flake: - scale."]},{"k":"G3014","v":["λέπρα","lépra","lep'-rah","From the same as G3013; scaliness, that is, “leprosy”: - leprosy."]},{"k":"G3015","v":["λεπρός","leprós","lep-ros'","From the same as G3014; scaly, that is, leprous (a leper): - leper."]},{"k":"G3016","v":["λεπτόν","leptón","lep-ton'","Neuter of a derivative of the same as G3013; something scaled (light), that is, a small coin: - mite."]},{"k":"G3017","v":["Λευΐ","Leuḯ","lyoo'-ee","Of Hebrew origin [H3878]; Levi, the name of three Israelites: - Levi. Compare G3018."]},{"k":"G3018","v":["Λευΐς","Leuḯs","lyoo-is'","A form of G3017; Lewis (that is, Levi), a Christian: - Levi."]},{"k":"G3019","v":["Λευΐτης","Leuḯtēs","lyoo-ee'-tace","From G3017; a Levite, that is, descendant of Levi: - Levite."]},{"k":"G3020","v":["Λευϊτικός","Leuïtikós","lyoo-it'-ee-kos","From G3019; Levitic, that is, relating to the Levites: - Levitical."]},{"k":"G3021","v":["λευκαίνω","leukaínō","lyoo-kah'-ee-no","From G3022; to whiten: - make white, whiten."]},{"k":"G3022","v":["λευκός","leukós","lyoo-kos'","From λύκη lukē (“light”); white: - white."]},{"k":"G3023","v":["λέων","léōn","leh-ohn'","A primary word; a “lion”: - lion."]},{"k":"G3024","v":["λήθη","lḗthē","lay'-thay","From G2990; forgetfulness: - + forget."]},{"k":"G3025","v":["ληνός","lēnós","lay-nos'","Apparently a primary word; a trough, that is, wine vat: - winepress."]},{"k":"G3026","v":["λῆρος","lēros","lay'-ros","Apparently a primary word; twaddle, that is, an incredible story: - idle tale."]},{"k":"G3027","v":["λῃστής","lēistḗs","lace-tace'","From ληΐ́ζομαι lēizomai (to “plunder”); a brigand: - robber, thief."]},{"k":"G3028","v":["λῆμψις","lēmpsis","lape'-sis","From G2983; receipt (the act): - receiving."]},{"k":"G3029","v":["λίαν","lían","lee'-an","Of uncertain affinity; much (adverb): - exceeding, great (-ly), sore, very (+ chiefest)."]},{"k":"G3030","v":["λίβανος","líbanos","lib'-an-os","Of foreign origin [H3828]; the incense tree, that is, (by implication) incense itself: - frankincense."]},{"k":"G3031","v":["λιβανωτός","libanōtós","lib-an-o-tos'","From G3030; frankincense, that is, (by extension) a censer for burning it: - censer."]},{"k":"G3032","v":["Λιβερτῖνος","Libertînos","lib-er-tee'-nos","Of Latin origin; a Roman freedman: - Libertine."]},{"k":"G3033","v":["Λιβύη","Libýē","lib-oo'-ay","Probably from G3047; Libye, a region of Africa: - Libya."]},{"k":"G3034","v":["λιθάζω","litházō","lith-ad'-zo","From G3037; to lapidate: - stone."]},{"k":"G3035","v":["λίθινος","líthinos","lith-ee'-nos","From G3037; stony, that is, made of stone: - of stone."]},{"k":"G3036","v":["λιθοβολέω","lithoboléō","lith-ob-ol-eh'-o","From a compound of G3037 and G906; to throw stones, that is, lapidate: - stone, cast stones."]},{"k":"G3037","v":["λίθος","líthos","lee'-thos","Apparently a primary word; a stone (literally or figuratively): - (mill-, stumbling-) stone."]},{"k":"G3038","v":["λιθόστρωτος","lithóstrōtos","lith-os'-tro-tos","From G3037 and a derivative of G4766; stone strewed, that is, a tessellated mosaic on which the Roman tribunal was placed: - Pavement."]},{"k":"G3039","v":["λικμάω","likmáō","lik-mah'-o","From λικμός likmos, the equivalent. of λίκνον liknon (a winnowing fan or basket); to winnow, that is, (by analogy) to triturate: - grind to powder."]},{"k":"G3040","v":["λιμήν","limḗn","lee-mane'","Apparently a primary word; a harbor: - haven. Compare G2568."]},{"k":"G3041","v":["λίμνη","límnē","lim'-nay","Probably from G3040 (through the idea of the nearness of shore); a pond (large or small): - lake."]},{"k":"G3042","v":["λιμός","limós","lee-mos'","Probably from G3007 (through the idea of destitution); a scarcity of food: - dearth, famine, hunger."]},{"k":"G3043","v":["λίνον","línon","lee'-non","Probably a primary word; flax, that is, (by implication) “linen”: - linen."]},{"k":"G3044","v":["Λίνος","Línos","lee'-nos","Perhaps from G3043; Linus, a Christian: - Linus."]},{"k":"G3045","v":["λιπαρός","liparós","lip-ar-os'","From λιπος lipos (grease); fat, that is, (figuratively) sumptuous: - dainty."]},{"k":"G3046","v":["λίτρα","lítra","lee'-trah","Of Latin origin (libra); a pound in weight: - pound."]},{"k":"G3047","v":["λίψ","líps","leeps","Probably from λείβω leibō (to pour a “libation”); the south (southwest) wind (as bringing rain), that is, (by extension) the south quarter: - southwest."]},{"k":"G3048","v":["λογία","logía","log-ee'-ah","From G3056 (in the commercial sense); a contribution: - collection, gathering."]},{"k":"G3049","v":["λογίζομαι","logízomai","log-id'-zom-ahee","Middle voice from G3056; to take an inventory, that is, estimate (literally or figuratively): - conclude, (ac-) count (of), + despise, esteem, impute, lay, number, reason, reckon, suppose, think (on)."]},{"k":"G3050","v":["λογικός","logikós","log-ik-os'","From G3056; rational (“logical”): - reasonable, of the word."]},{"k":"G3051","v":["λόγιον","lógion","log'-ee-on","Neuter of G3052; an utterance (of God): - oracle."]},{"k":"G3052","v":["λόγιος","lógios","log'-ee-os","From G3056; fluent, that is, an orator: - eloquent."]},{"k":"G3053","v":["λογισμός","logismós","log-is-mos'","From G3049; computation, that is, (figuratively) reasoning (conscience, conceit): - imagination, thought."]},{"k":"G3054","v":["λογομαχέω","logomachéō","log-om-akh-eh'-o","From a compound of G3056 and G3164; to be disputatious (on trifles): - strive about words."]},{"k":"G3055","v":["λογομαχία","logomachía","log-om-akh-ee'-ah","From the same as G3054; disputation about trifles (“logomachy”): - strife of words."]},{"k":"G3056","v":["λόγος","lógos","log'-os","From G3004; something said (including the thought); by implication a topic (subject of discourse), also reasoning (the mental faculty) or motive; by extension a computation; specifically (with the article in John) the Divine Expression (that is, Christ): - account, cause, communication, X concerning, doctrine, fame, X have to do, intent, matter, mouth, preaching, question, reason, + reckon, remove, say (-ing), shew, X speaker, speech, talk, thing, + none of these things move me, tidings, treatise, utterance, word, work."]},{"k":"G3057","v":["λόγχη","lónchē","long'-khay","Perhaps a primary word; a “lance”: - spear."]},{"k":"G3058","v":["λοιδορέω","loidoréō","loy-dor-eh'-o","From G3060; to reproach, that is, vilify: - revile."]},{"k":"G3059","v":["λοιδορία","loidoría","loy-dor-ee'-ah","From G3060; slander or vituperation: - railing, reproach [-fully]."]},{"k":"G3060","v":["λοίδορος","loídoros","loy'-dor-os","From λοιδός loidos (mischief); abusive, that is, a black guard: - railer, reviler."]},{"k":"G3061","v":["λοιμός","loimós","loy'-mos","Of uncertain affinity; a plague (literally the disease, or figuratively a pest): - pestilence (-t)."]},{"k":"G3062","v":["λοιποί","loipoí","loy-poy'","Masculine plural of a derivative of G3007; remaining ones: - other, which remain, remnant, residue, rest."]},{"k":"G3063","v":["λοιπόν","loipón","loy-pon'","Neuter singular of the same as G3062; something remaining (adverb): - besides, finally, furthermore, (from) henceforth, moreover, now, + it remaineth, then."]},{"k":"G3064","v":["λοιποῦ","loipoû","loy-poo'","Genitive singular of the same as G3062; remaining time: - from henceforth."]},{"k":"G3065","v":["Λουκᾶς","Loukâs","loo-kas'","Contracted from the Latin Lucanus; Lucas, a Christian: - Lucas, Luke."]},{"k":"G3066","v":["Λούκιος","Loúkios","loo'-kee-os","Of Latin origin; illuminative; Lucius, a Christian: - Lucius."]},{"k":"G3067","v":["λουτρόν","loutrón","loo-tron'","From G3068; a bath, that is, (figuratively) baptism: - washing."]},{"k":"G3068","v":["λούω","loúō","loo'-o","A primary verb; to bathe (the whole person; whereas G3538 means to wet a part only, and G4150 to wash, cleanse garments exclusively): - wash."]},{"k":"G3069","v":["Λύδδα","Lýdda","lud'-dah","Of Hebrew origin [H3850]; Lydda (that is, Lod), a place in Palestine: - Lydda."]},{"k":"G3070","v":["Λυδία","Lydía","loo-dee'-ah","Properly feminine of Λύδιος Ludios (of foreign origin; a Lydian, in Asia Minor); Lydia, a Christian woman: - Lydia."]},{"k":"G3071","v":["Λυκαονία","Lykaonía","loo-kah-on-ee'-ah","Perhaps remotely from G3074; Lycaonia, a region of Asia Minor: - Lycaonia."]},{"k":"G3072","v":["Λυκαονιστί","Lykaonistí","loo-kah-on-is-tee'","Adverb from a derivative of G3071; Lycaonistically, that is, in the language of the Lycaonians: - in the speech of Lycaonia."]},{"k":"G3073","v":["Λυκία","Lykía","loo-kee'-ah","Probably remotely from G3074; Lycia, a province of Asia Minor: - Lycia."]},{"k":"G3074","v":["λύκος","lýkos","loo'-kos","Perhaps akin to the base of G3022 (from the whitish hair); a wolf: - wolf."]},{"k":"G3075","v":["λυμαίνομαι","lymaínomai","loo-mah'-ee-nom-ahee","Middle voice from a probable derivative of G3089 (meaning filth); properly to soil, that is, (figuratively) insult (maltreat): - make havock of."]},{"k":"G3076","v":["λυπέω","lypéō","loo-peh'-o","From G3077; to distress; reflexively or passively to be sad: - cause grief, grieve, be in heaviness, (be) sorrow (-ful), be (make) sorry."]},{"k":"G3077","v":["λύπη","lýpē","loo'-pay","Apparently a primary word; sadness: - grief, grievous, + grudgingly, heaviness, sorrow."]},{"k":"G3078","v":["Λυσανίας","Lysanías","loo-san-ee'-as","From G3080 and ἀνία ania (trouble); grief dispelling; Lysanias, a governor of Abilene: - Lysanias."]},{"k":"G3079","v":["Λυσίας","Lysías","loo-see'-as","Of uncertain affinity; Lysias, a Roman: - Lysias."]},{"k":"G3080","v":["λύσις","lýsis","loo'-sis","From G3089; a loosening, that is, (specifically) divorce: - to be loosed."]},{"k":"G3081","v":["λυσιτελεῖ","lysiteleî","loo-sit-el-i'","Third person singular present indicative active of a derivative of a compound of G3080 and G5056; impersonally it answers the purpose, that is, is advantageous: - it is better."]},{"k":"G3082","v":["Λύστρα","Lýstra","loos'-trah","Of uncertain origin; Lystra, a place in Asia Minor: - Lystra."]},{"k":"G3083","v":["λύτρον","lýtron","loo'-tron","From G3089; something to loosen with, that is, a redemption price (figuratively atonement): - ransom."]},{"k":"G3084","v":["λυτρόω","lytróō","loo-tro'-o","From G3083; to ransom (literally or figuratively): - redeem."]},{"k":"G3085","v":["λύτρωσις","lýtrōsis","loo'-tro-sis","From G3084; a ransoming (figuratively): - + redeemed, redemption."]},{"k":"G3086","v":["λυτρωτής","lytrōtḗs","loo-tro-tace'","From G3084; a redeemer (figuratively): - deliverer."]},{"k":"G3087","v":["λυχνία","lychnía","lookh-nee'-ah","From G3088; a lamp stand (literally or figuratively): - candlestick."]},{"k":"G3088","v":["λύχνος","lýchnos","lookh'-nos","From the base of G3022; a portable lamp or other illuminator (literally or figuratively): - candle, light."]},{"k":"G3089","v":["λύω","lýō","loo'-o","A primary verb; to “loosen” (literally or figuratively): - break (up), destroy, dissolve, (un-) loose, melt, put off. Compare G4486."]},{"k":"G3090","v":["Λωΐς","Lōḯs","lo-ece'","Of uncertain origin; Lois, a Christian woman: - Lois."]},{"k":"G3091","v":["Λώτ","Lṓt","lote","Of Hebrew origin [H3876]; Lot, a patriarch: - Lot."]},{"k":"G3092","v":["Μαάθ","Maáth","mah-ath'","Probably of Hebrew origin; Maath, an Israelite: - Maath."]},{"k":"G3093","v":["Μαγδαλά","Magdalá","mag-dal-ah'","Of Chaldee origin (compare [H4026]); the tower; Magadala (that is, Migdala), a place in Palestine: - Magdala."]},{"k":"G3094","v":["Μαγδαληνή","Magdalēnḗ","mag-dal-ay-nay'","Feminine of a derivative of G3093; a female Magdalene, that is, inhabitant of Magdala: - Magdalene."]},{"k":"G3095","v":["μαγεία","mageía","mag-i'-ah","From G3096; “magic”: - sorcery."]},{"k":"G3096","v":["μαγεύω","mageúō","mag-yoo'-o","From G3097; to practice magic: - use sorcery."]},{"k":"G3097","v":["μάγος","mágos","mag'-os","Of foreign origin [H7248]; a Magian, that is, Oriental scientist; by implication a magician: - sorcerer, wise man."]},{"k":"G3098","v":["Μαγώγ","Magṓg","mag-ogue'","Of Hebrew origin [H4031]; Magog, a foreign nation, that is, (figuratively) an Antichristian party: - Magog."]},{"k":"G3099","v":["Μαδιάν","Madián","mad-ee-on'","Of Hebrew origin [H4080]; Madian (that is, Midian), a region of Arabia: - Madian."]},{"k":"G3100","v":["μαθητεύω","mathēteúō","math-ayt-yoo'-o","From G3101; intransitively to become a pupil; transitively to disciple, that is, enrol as scholar: - be disciple, instruct, teach."]},{"k":"G3101","v":["μαθητής","mathētḗs","math-ay-tes'","From G3129; a learner, that is, pupil: - disciple."]},{"k":"G3102","v":["μαθήτρια","mathḗtria","math-ay'-tree-ah","Feminine from G3101; a female pupil: - disciple."]},{"k":"G3103","v":["Μαθουσάλα","Mathousála","math-oo-sal'-ah","Of Hebrew origin [H4968]; Mathusala (that is, Methushelach), an antediluvian: - Mathusala."]},{"k":"G3104","v":["Μαϊνάν","Maïnán","mahee-nan'","Probably of Hebrew origin; Mainan, an Israelite: - Mainan."]},{"k":"G3105","v":["μαίνομαι","maínomai","mah'-ee-nom-ahee","Middle voice from a primary word μάω maō (to long for; through the idea of insensate craving); to rave as a “maniac”: - be beside self (mad)."]},{"k":"G3106","v":["μακαρίζω","makarízō","mak-ar-id'-zo","From G3107; to beatify, that is, pronounce (or esteem) fortunate: - call blessed, count happy."]},{"k":"G3107","v":["μακάριος","makários","mak-ar'-ee-os","A prolonged form of the poetical μάκαρ makar (meaning the same); supremely blest; by extension fortunate, well off: - blessed, happy (X -ier)."]},{"k":"G3108","v":["μακαρισμός","makarismós","mak-ar-is-mos'","From G3106; beatification, that is, attribution of good fortune: - blessedness."]},{"k":"G3109","v":["Μακεδονία","Makedonía","mak-ed-on-ee'-ah","From G3110; Macedonia, a region of Greece: - Macedonia."]},{"k":"G3110","v":["Μακεδών","Makedṓn","mak-ed'-ohn","Of uncertain derivation; a Macedon (Macedonian), that is, inhabitant of Macedonia: - of Macedonia, Macedonian."]},{"k":"G3111","v":["μάκελλον","mákellon","mak'-el-lon","Of Latin origin [macellum]; a butcher's stall, meat market or provision shop: - shambles."]},{"k":"G3112","v":["μακράν","makrán","mak-ran'","Feminine accusative singular of G3117 (G3598 being implied); at a distance (literally or figuratively): - (a-) far (off), good (great) way off."]},{"k":"G3113","v":["μακρόθεν","makróthen","mak-roth'-en","Adverb from G3117; from a distance or afar: - afar off, from far."]},{"k":"G3114","v":["μακροθυμέω","makrothyméō","mak-roth-oo-meh'-o","From the same as G3116; to be long spirited, that is, (objectively) forbearing or (subjectively) patient: - bear (suffer) long, be longsuffering, have (long) patience, be patient, patiently endure."]},{"k":"G3115","v":["μακροθυμία","makrothymía","mak-roth-oo-mee'-ah","From the same as G3116; longanimity, that is, (objectively) forbearance or (subjectively) fortitude: - longsuffering, patience."]},{"k":"G3116","v":["μακροθυμώς","makrothymṓs","mak-roth-oo-moce'","Adverb of a compound of G3117 and G2372; with long (enduring) temper, that is, leniently: - patiently."]},{"k":"G3117","v":["μακρός","makrós","mak-ros'","From G3372; long (in place [distant] or time [neuter plural]): - far, long."]},{"k":"G3118","v":["μακροχρόνιος","makrochrónios","mak-rokh-ron'-ee-os","From G3117 and G5550; long timed, that is, long lived: - live long."]},{"k":"G3119","v":["μαλακία","malakía","mal-ak-ee'-ah","From G3120; softness, that is, enervation (debility): - disease."]},{"k":"G3120","v":["μαλακός","malakós","mal-ak-os'","Of uncertain affinity; soft, that is, fine (clothing); figuratively a catamite: - effeminate, soft."]},{"k":"G3121","v":["Μαλελεήλ","Maleleḗl","mal-el-eh-ale'","Of Hebrew origin [H4111]; Maleleel (that is, Mahalalel), an antediluvian: - Maleleel."]},{"k":"G3122","v":["μάλιστα","málista","mal'-is-tah","Neuter plural of the superlative of an apparently primary adverb μάλα mala (very); (adverb) most (in the greatest degree) or particularly: - chiefly, most of all, (e-) specially."]},{"k":"G3123","v":["μᾶλλον","mâllon","mal'-lon","Neuter of the comparative of the same as G3122; (adverb) more (in a greater degree) or rather: - + better, X far, (the) more (and more), (so) much (the more), rather."]},{"k":"G3124","v":["Μάλχος","Málchos","mal'-khos","Of Hebrew origin [H4429]; Malchus, an Israelite: - Malchus."]},{"k":"G3125","v":["μάμμη","mámmē","mam'-may","Of natural origin [“mammy”]; a grandmother: - grandmother."]},{"k":"G3126","v":["μαμμωνᾶς","mammōnâs","mam-mo-nas'","Of Chaldee origin (confidence, that is, figuratively wealth, personified); mammonas, that is, avarice (deified): - mammon."]},{"k":"G3127","v":["Μαναήν","Manaḗn","man-ah-ane'","Of uncertain origin; Manaen, a Christian: - Manaen."]},{"k":"G3128","v":["Μανασσῆς","Manassēs","man-as-sace'","Of Hebrew origin [H4519]; Manasses (that is, Menashsheh), an Israelite: - Manasses."]},{"k":"G3129","v":["μανθάνω","manthánō","man-than'-o","Prolonged from a primary verb, another form of which, μαθέω matheō, is used as an alternate in certain tenses; to learn (in any way): - learn, understand."]},{"k":"G3130","v":["μανία","manía","man-ee'-ah","From G3105; craziness: - [+ make] X mad."]},{"k":"G3131","v":["μάννα","mánna","man'-nah","Of Hebrew origin [H4478]; manna (that is, man), an edible gum: - manna."]},{"k":"G3132","v":["μαντεύομαι","manteúomai","mant-yoo'-om-ahee","From a derivative of G3105 (meaning a prophet, as supposed to rave through inspiration); to divine, that is, utter spells (under pretence of foretelling): - by soothsaying."]},{"k":"G3133","v":["μαραίνω","maraínō","mar-ah'-ee-no","Of uncertain affinity; to extinguish (as fire), that is, (figuratively and passively) to pass away: - fade away."]},{"k":"G3134","v":["μαρὰν ἀθά","maràn athá","mar'-an ath'-ah","Of Chaldee origin (meaning our Lord has come); maranatha, that is, an exclamation of the approaching divine judgment: - Maran-atha."]},{"k":"G3135","v":["μαργαρίτης","margarítēs","mar-gar-ee'-tace","From μάργαρος margaros (a pearl oyster); a pearl: - pearl."]},{"k":"G3136","v":["Μάρθα","Mártha","mar'-thah","Probably of Chaldee origin (meaning mistress); Martha, a Christian woman: - Martha."]},{"k":"G3137","v":["Μαρία","María","mar-ee'-ah","Of Hebrew origin [H4813]; Maria or Mariam (that is, Mirjam), the name of six Christian females: - Mary."]},{"k":"G3138","v":["Μάρκος","Márkos","mar'-kos","Of Latin origin; Marcus, a Christian: - Marcus, Mark."]},{"k":"G3139","v":["μάρμαρος","mármaros","mar'-mar-os","From μαρμαίρω marmairō (to glisten); marble (as sparkling white): - marble."]},{"k":"G3140","v":["μαρτυρέω","martyréō","mar-too-reh'-o","From G3144; to be a witness, that is, testify (literally or figuratively): - charge, give [evidence], bear record, have (obtain, of) good (honest) report, be well reported of, testify, give (have) testimony, (be, bear, give, obtain) witness."]},{"k":"G3141","v":["μαρτυρία","martyría","mar-too-ree'-ah","From G3144; evidence given (judicially or generally): - record, report, testimony, witness."]},{"k":"G3142","v":["μαρτύριον","martýrion","mar-too'-ree-on","Neuter of a presumed derivative of G3144; something evidential, that is, (generally) evidence given or (specifically) the Decalogue (in the sacred Tabernacle): - to be testified, testimony, witness."]},{"k":"G3143","v":["μαρτύρομαι","martýromai","mar-too'-rom-ahee","Middle voice from G3144; to be adduced as a witness, that is, (figuratively) to obtest (in affirmation or exhortation): - take to record, testify."]},{"k":"G3144","v":["μάρτυς","mártys","mar'-toos","Of uncertain affinity; a witness (literally [judicially] or figuratively [generally]); by analogy a “martyr”: - martyr, record, witness."]},{"k":"G3145","v":["μασσάομαι","massáomai","mas-sah'-om-ahee","From a primary word μάσσω massō (to handle or squeeze); to chew: - gnaw."]},{"k":"G3146","v":["μαστιγόω","mastigóō","mas-tig-o'-o","From G3148; to flog (literally or figuratively): - scourge."]},{"k":"G3147","v":["μαστίζω","mastízō","mas-tid'-zo","From G3149; to whip (literally): - scourge."]},{"k":"G3148","v":["μάστιξ","mástix","mas'-tix","Probably from the base of G3145 (through the idea of contact); a whip (literally the Roman flagellum for criminals; figuratively a disease): - plague, scourging."]},{"k":"G3149","v":["μαστός","mastós","mas-tos'","From the base of G3145; a (properly female) breast (as if kneaded up): - pap."]},{"k":"G3150","v":["ματαιολογία","mataiología","mat-ah-yol-og-ee'-ah","From G3151; random talk, that is, babble: - vain jangling."]},{"k":"G3151","v":["ματαιολόγος","mataiológos","mat-ah-yol-og'-os","From G3152 and G3004; an idle (that is, senseless or mischievous) talker, that is, a wrangler: - vain talker."]},{"k":"G3152","v":["μάταιος","mátaios","mat'-ah-yos","From the base of G3155; empty, that is, (literally) profitless, or (specifically) an idol: - vain, vanity."]},{"k":"G3153","v":["ματαιότης","mataiótēs","mat-ah-yot'-ace","From G3152; inutility; figuratively transientness; morally depravity: - vanity."]},{"k":"G3154","v":["ματαιόω","mataióō","mat-ah-yo'-o","From G3152; to render (passively become) foolish, that is, (morally) wicked or (specifically) idolatrous: - become vain."]},{"k":"G3155","v":["μάτην","mátēn","mat'-ane","Accusative case of a derivative of the base of G3145 (through the idea of tentative manipulation, that is, unsuccessful search, or else of punishment); folly, that is, (adverbially) to no purpose: - in vain."]},{"k":"G3156","v":["Ματθαῖος","Matthaîos","mat-thah'-yos","A shorter form of G3161; Matthaeus (that is, Matthitjah), an Israelite and Christian: - Matthew."]},{"k":"G3157","v":["Ματθάν","Matthán","mat-than'","Of Hebrew origin [H4977]; Matthan (that is, Mattan), an Israelite: - Matthan."]},{"k":"G3158","v":["Ματθάτ","Matthát","mat-that'","Probably a shortened form of G3161; Matthat (that is, Mattithjah), the name of two Israelites: - Mathat."]},{"k":"G3159","v":["Ματθίας","Matthías","mat-thee'-as","Apparently a shortened form of G3161; Matthias (that is, Mattithjah), an Israelite: - Matthias."]},{"k":"G3160","v":["Ματταθά","Mattathá","mat-tath-ah'","Probably a shortened form of G3161 (compare [H4992]); Mattatha (that is, Mattithjah), an Israelite: - Mattatha."]},{"k":"G3161","v":["Ματταθίας","Mattathías","mat-tath-ee'-as","Of Hebrew origin [H4993]; Mattathias (that is, Mattithjah), an Israelite and Christian: - Mattathias."]},{"k":"G3162","v":["μάχαιρα","máchaira","makh'-ahee-rah","Probably feminine of a presumed derivative of G3163; a knife, that is, dirk; figuratively war, judicial punishment: - sword."]},{"k":"G3163","v":["μάχη","máchē","makh'-ay","From G3164; a battle, that is, (figuratively) controversy: - fighting, strive, striving."]},{"k":"G3164","v":["μάχομαι","máchomai","makh'-om-ahee","Middle voice of an apparently primary verb; to war, that is, (figuratively) to quarrel, dispute: - fight, strive."]},{"k":"G3165","v":["μέ","mé","meh","A shorter (and probably original) form of G1691; me: - I, me, my."]},{"k":"G3166","v":["μεγαλαυχέω","megalauchéō","meg-al-ow-kheh'-o","From a compound of G3173 and αὐχέω aucheō (to boast; akin to G837 and G2744); to talk big, that is, be grandiloquent (arrogant, egotistic): - boast great things."]},{"k":"G3167","v":["μεγαλεῖος","megaleîos","meg-al-i'-os","From G3173; magnificent, that is, (neuter plural as noun) a conspicuous favor, or (subjectively) perfection: - great things, wonderful works."]},{"k":"G3168","v":["μεγαλειότης","megaleiótēs","meg-al-i-ot'-ace","From G3167; superbness, that is, glory or splendor: - magnificence, majesty, mighty power."]},{"k":"G3169","v":["μεγαλοπρεπής","megaloprepḗs","meg-al-op-rep-ace'","From G3173 and G4241; befitting greatness or magnificence (majestic): - excellent."]},{"k":"G3170","v":["μεγαλύνω","megalýnō","meg-al-oo'-no","From G3173; to make (or declare) great, that is, increase or (figuratively) extol: - enlarge, magnify, shew great."]},{"k":"G3171","v":["μεγάλως","megálōs","meg-al'-oce","Adverb from G3173; much: - greatly."]},{"k":"G3172","v":["μεγαλωσύνη","megalōsýnē","meg-al-o-soo'-nay","From G3173; greatness, that is, (figuratively) divinity (often God himself): - majesty."]},{"k":"G3173","v":["μέγας","mégas","meg'-as","Including the prolonged forms, femine μεγάλη megalē, plural μέγάλοι megaloi, etc.; compare also G3176, G3187], big (literally or figuratively, in a very wide application): - (+ fear) exceedingly, great (-est), high, large, loud, mighty, + (be) sore (afraid), strong, X to years."]},{"k":"G3174","v":["μέγεθος","mégethos","meg'-eth-os","From G3173; magnitude (figuratively): - greatness."]},{"k":"G3175","v":["μεγιστᾶνες","megistânes","meg-is-tan'-es","Plural from G3176; grandees: - great men, lords."]},{"k":"G3176","v":["μέγιστος","mégistos","meg'-is-tos","Superlative of G3173; greatest or very great: - exceeding great."]},{"k":"G3177","v":["μεθερμηνεύω","methermēneúō","meth-er-mane-yoo'-o","From G3326 and G2059; to explain over, that is, translate: - (by) interpret (-ation)."]},{"k":"G3178","v":["μέθη","méthē","meth'-ay","Apparently a primary word; an intoxicant, that is, (by implication) intoxication: - drunkenness."]},{"k":"G3179","v":["μεθίστημι","methístēmi","meth-is'-tay-mee","From G3326 and G2476; (second form used at 1Co_13:2) to transfer, that is, carry away, depose or (figuratively) exchange, seduce: - put out, remove, translate, turn away."]},{"k":"G3180","v":["μεθοδεία","methodeía","meth-od-i'-ah","From a compound of G3326 and G3593 [compare “method”]; traveling over, that is, travesty, (trickery): - wile, lie in wait."]},{"k":"G3181","v":["μεθόριος","methórios","meth-or'-ee-os","From G3326 and G3725; bounded alongside, that is, contiguous (neuter plural as noun, frontier): - border."]},{"k":"G3182","v":["μεθύσκω","methýskō","meth-oos'-ko","A prolonged (transitive) form of G3184; to intoxicate: - be drunk (-en)."]},{"k":"G3183","v":["μέθυσος","méthysos","meth'-oo-sos","From G3184; tipsy, that is, (as noun) a sot: - drunkard."]},{"k":"G3184","v":["μεθύω","methýō","meth-oo'-o","From another form of G3178; to drink to intoxication, that is, get drunk: - drink well, make (be) drunk (-en)."]},{"k":"G3185","v":["μεῖζον","meîzon","mide'-zon","Neuter of G3187; (adverbially) in a greater degree: - the more."]},{"k":"G3186","v":["μειζότερος","meizóteros","mide-zot'-er-os","Continued comparative of G3187; still larger (figuratively): - greater."]},{"k":"G3187","v":["μείζων","meízōn","mide'-zone","Irregular comparative of G3173; larger (literally or figuratively, specifically in age): - elder, greater (-est), more."]},{"k":"G3188","v":["μέλαν","mélan","mel'-an","Neuter of G3189 as noun; ink: - ink."]},{"k":"G3189","v":["μέλας","mélas","mel'-as","Apparently a primary word; black: - black."]},{"k":"G3190","v":["Μελεᾶς","Meleâs","mel-eh-as'","Of uncertain origin; Meleas, an Israelite: - Meleas."]},{"k":"G3191","v":["μελετάω","meletáō","mel-et-ah'-o","From a presumed derivative of G3199; to take care of, that is, (by implication) revolve in the mind: - imagine, (pre-) meditate."]},{"k":"G3192","v":["μέλι","méli","mel'-ee","Apparently a primary word; honey: - honey."]},{"k":"G3193","v":["μελίσσιος","melíssios","mel-is'-see-os","From G3192; relating to honey, that is, bee (comb): - honeycomb."]},{"k":"G3194","v":["Μελίτη","Melítē","mel-ee'-tay","Of uncertain origin; Melita, an island in the Mediterranean: - Melita."]},{"k":"G3195","v":["μέλλω","méllō","mel'-lo","A strengthened form of G3199 (through the idea of expectation); to intend, that is, be about to be, do, or suffer something (of persons or things, especially events; in the sense of purpose, duty, necessity, probability, possibility, or hesitation): - about, after that, be (almost), (that which is, things, + which was for) to come, intend, was to (be), mean, mind, be at the point, (be) ready, + return, shall (begin), (which, that) should (after, afterwards, hereafter) tarry, which was for, will, would, be yet."]},{"k":"G3196","v":["μέλος","mélos","mel'-os","Of uncertain affinity; a limb or part of the body: - member."]},{"k":"G3197","v":["Μελχί","Melchí","mel-khee'","Of Hebrew origin ([H4428] with pronominal suffix, my king); Melchi (that is, Malki), the name of two Israelites: - Melchi."]},{"k":"G3198","v":["Μελχισεδέκ","Melchisedék","mel-khis-ed-ek'","Of Hebrew origin [H4442]; Melchisedek (that is, Malkitsedek), a patriarch: - Melchisedec."]},{"k":"G3199","v":["μέλω","mélō","mel'-o","A primary verb; to be of interest to, that is, to concern (only third person singular present indicative used impersonally it matters): - (take) care."]},{"k":"G3200","v":["μεμβράνα","membrána","mem-bran'-ah","Of Latin origin (“membrane”); a (written) sheep skin: - parchment."]},{"k":"G3201","v":["μέμφομαι","mémphomai","mem'-fom-ahee","Middle voice of an apparently primary verb; to blame: - find fault."]},{"k":"G3202","v":["μεμψίμοιρος","mempsímoiros","mem-psim'-oy-ros","From a presumed derivative of G3201 and μοῖρα moira (fate; akin to the base of G3313); blaming fate, that is, querulous (discontented): - complainer."]},{"k":"G3303","v":["μέν","mén","men","A primary particle; properly indicative of affirmation or concession (in fact); usually followed by a contrasted clause with G1161 (this one, the former, etc.: - even, indeed, so, some, truly, verily. Often compounded with other particles in an intensive or asseverative sense."]},{"k":"G3304","v":["μενοῦνγε","menoûnge","men-oon'-geh","From G3303 and G3767 and G1065; so then at least: - nay but, yea doubtless (rather, verily)."]},{"k":"G3305","v":["μέντοι","méntoi","men'-toy","From G3303 and G5104; indeed though, that is, however: - also, but, howbeit, nevertheless, yet."]},{"k":"G3306","v":["μένω","ménō","men'-o","A primary verb; to stay (in a given place, state, relation or expectancy): - abide, continue, dwell, endure, be present, remain, stand, tarry (for), X thine own."]},{"k":"G3307","v":["μερίζω","merízō","mer-id'-zo","From G3313; to part, that is, (literally) to apportion, bestow, share, or (figuratively) to disunite, differ: - deal, be difference between, distribute, divide, give part."]},{"k":"G3308","v":["μέριμνα","mérimna","mer'-im-nah","From G3307 (through the idea of distraction); solicitude: - care."]},{"k":"G3309","v":["μεριμνάω","merimnáō","mer-im-nah'-o","From G3308; to be anxious about: - (be, have) care (-ful), take thought."]},{"k":"G3310","v":["μερίς","merís","mer-ece'","Feminine of G3313; a portion, that is, province, share or (abstractly) participation: - part (X -akers)."]},{"k":"G3311","v":["μερισμός","merismós","mer-is-mos'","From G3307; a separation or distribution: - dividing asunder, gift."]},{"k":"G3312","v":["μεριστής","meristḗs","mer-is-tace'","From G3307; an apportioner (administrator): - divider."]},{"k":"G3313","v":["μέρος","méros","mer'-os","From an obsolete but more primary form of μείρομαι meiromai (to get as a section or allotment); a division or share (literally or figuratively, in a wide application): - behalf, coast, course, craft, particular (+ -ly), part (+ -ly), piece, portion, respect, side, some sort (-what)."]},{"k":"G3314","v":["μεσημβρία","mesēmbría","mes-ame-bree'-ah","From G3319 and G2250; midday; by implication the south: - noon, south."]},{"k":"G3315","v":["μεσιτεύω","mesiteúō","mes-it-yoo'-o","From G3316; to interpose (as arbiter), that is, (by implication) to ratify (as surety): - confirm."]},{"k":"G3316","v":["μεσίτης","mesítēs","mes-ee'-tace","From G3319; a go between, that is, (simply) an internunciator, or (by implication) a reconciler (intercessor): - mediator."]},{"k":"G3317","v":["μεσονύκτιον","mesonýktion","mes-on-ook'-tee-on","Neuter of a compound of G3319 and G3571; midnight (especially as a watch): - midnight."]},{"k":"G3318","v":["Μεσοποταμία","Mesopotamía","mes-op-ot-am-ee'-ah","From G3319 and G4215; Mesopotamia (as lying between the Euphrates and the Tigris; compare [H763]), a region of Asia: - Mesopotamia."]},{"k":"G3319","v":["μέσος","mésos","mes'-os","From G3326; middle (as adjective or [neuter] noun): - among, X before them, between, + forth, mid [-day, -night], midst, way."]},{"k":"G3320","v":["μεσότοιχον","mesótoichon","mes-ot'-oy-khon","From G3319 and G5109; a partition (figuratively): - middle wall."]},{"k":"G3321","v":["μεσουράνημα","mesouránēma","mes-oo-ran'-ay-mah","From a presumed compound of G3319 and G3772; mid-sky: - midst of heaven."]},{"k":"G3322","v":["μεσόω","mesóō","mes-o'-o","From G3319; to form the middle, that is, (in point of time), to be half way over: - be about the midst."]},{"k":"G3323","v":["Μεσσίας","Messías","mes-see'-as","Of Hebrew origin [H4899]; the Messias (that is, Mashiach), or Christ: - Messias."]},{"k":"G3324","v":["μεστός","mestós","mes-tos'","Of uncertain derivative; replete (literally or figuratively): - full."]},{"k":"G3325","v":["μεστόω","mestóō","mes-to'-o","From G3324; to replenish, that is, (by implication) to intoxicate: - fill."]},{"k":"G3326","v":["μετά","metá","met-ah'","A primary preposition (often used adverbially); properly denoting accompaniment; “amid” (local or causal); modified variously according to the case (genitive case association, or accusative case succession) with which it is joined; occupying an intermediate position between G575 or G1537 and G1519 or G4314; less intimate than G1722, and less close than G4862): - after (-ward),X that he again, against, among, X and, + follow, hence, hereafter, in, of, (up-) on, + our, X and setting, since, (un-) to, + together, when, with (+ -out). Often used in composition, in substantially the same relations of participation or proximity, and transfer or sequence."]},{"k":"G3327","v":["μεταβαίνω","metabaínō","met-ab-ah'-ee-no","From G3326 and the base of G939; to change place: - depart, go, pass, remove."]},{"k":"G3328","v":["μεταβάλλω","metabállō","met-ab-al'-lo","From G3326 and G906; to throw over, that is, (middle voice, figuratively) to turn about in opinion: - change mind."]},{"k":"G3329","v":["μετάγω","metágō","met-ag'-o","From G3326 and G71; to lead over, that is, transfer (direct): - turn about."]},{"k":"G3330","v":["μεταδίδωμι","metadídōmi","met-ad-id'-o-mee","From G3326 and G1325; to give over, that is, share: - give, impart."]},{"k":"G3331","v":["μετάθεσις","metáthesis","met-ath'-es-is","From G3346; transposition, that is, transferral (to heaven), disestablishment (of a law): - change, removing, translation."]},{"k":"G3332","v":["μεταίρω","metaírō","met-ah'-ee-ro","From G3326 and G142; to betake oneself, that is, remove (locally): - depart."]},{"k":"G3333","v":["μετακαλέω","metakaléō","met-ak-al-eh'-o","From G3326 and G2564; to call elsewhere, that is, summon: - call (for, hither)."]},{"k":"G3334","v":["μετακινέω","metakinéō","met-ak-ee-neh'-o","From G3326 and G2795; to stir to a place elsewhere, that is, remove (figuratively): - move away."]},{"k":"G3335","v":["μεταλαμβάνω","metalambánō","met-al-am-ban'-o","From G3326 and G2983; to participate; generally to accept (and use): - eat, have, be partaker, receive, take."]},{"k":"G3336","v":["μετάλημψις","metálēmpsis","met-al'-ape-sis","From G3335; participation: - taking."]},{"k":"G3337","v":["μεταλλάσσω","metallássō","met-al-las'-so","From G3326 and G236; to exchange: - change."]},{"k":"G3338","v":["μεταμέλλομαι","metaméllomai","met-am-el'-lom-ahee","From G3326 and the middle of G3199; to care afterwards, that is, regret: - repent (self)."]},{"k":"G3339","v":["μεταμορφόω","metamorphóō","met-am-or-fo'-o","From G3326 and G3445; to transform (literally or figuratively “metamorphose”): - change, transfigure, transform."]},{"k":"G3340","v":["μετανοέω","metanoéō","met-an-o-eh'-o","From G3326 and G3539; to think differently or afterwards, that is, reconsider (morally to feel compunction): - repent."]},{"k":"G3341","v":["μετάνοια","metánoia","met-an'-oy-ah","From G3340; (subjectively) compunction (for guilt, including reformation); by implication reversal (of [another’s] decision): - repentance."]},{"k":"G3342","v":["μεταξύ","metaxý","met-ax-oo'","From G3326 and a form of G4862; betwixt (of place or person); (of time) as adjective intervening, or (by implication) adjoining: - between, mean while, next."]},{"k":"G3343","v":["μεταπέμπω","metapémpō","met-ap-emp'-o","From G3326 and G3992; to send from elsewhere, that is, (middle voice) to summon or invite: - call (send) for."]},{"k":"G3344","v":["μεταστρέφω","metastréphō","met-as-tref'-o","From G3326 and G4762; to turn across, that is, transmute or (figuratively) corrupt: - pervert, turn."]},{"k":"G3345","v":["μετασχηματίζω","metaschēmatízō","met-askh-ay-mat-id'-zo","From G3326 and a derivative of G4976; to transfigure or disguise; figuratively to apply (by accommodation): - transfer, transform (self)."]},{"k":"G3346","v":["μετατίθημι","metatíthēmi","met-at-ith'-ay-mee","From G3326 and G5087; to transfer, that is, (literally) transport, (by implication) exchange, (reflexively) change sides, or (figuratively) pervert: - carry over, change, remove, translate, turn."]},{"k":"G3347","v":["μετέπειτα","metépeita","met-ep'-i-tah","From G3326 and G1899; thereafter: - afterward."]},{"k":"G3348","v":["μετέχω","metéchō","met-ekh'-o","From G3326 and G2192; to share or participate; by implication belong to, eat (or drink): - be partaker, pertain, take part, use."]},{"k":"G3349","v":["μετεωρίζω","meteōrízō","met-eh-o-rid'-zo","From a compound of G3326 and a collateral form of G142 or perhaps rather of G109 (compare “meteor”); to raise in mid-air, that is, (figuratively) suspend (passively fluctuate or be anxious): - be of doubtful mind."]},{"k":"G3350","v":["μετοικεσία","metoikesía","met-oy-kes-ee'-ah","From a derivative of a compound of G3326 and G3624; a change of abode, that is, (specifically) expatriation: - X brought, carried (-ying) away (in-) to."]},{"k":"G3351","v":["μετοικίζω","metoikízō","met-oy-kid'-zo","From the same as G3350; to transfer as a settler or captive, that is, colonize or exile: - carry away, remove into."]},{"k":"G3352","v":["μετοχή","metochḗ","met-okh-ay'","From G3348; participation, that is, intercourse: - fellowship."]},{"k":"G3353","v":["μέτοχος","métochos","met'-okh-os","From G3348; participant, that is, (as noun) a sharer; by implication an associate: - fellow, partaker, partner."]},{"k":"G3354","v":["μετρέω","metréō","met-reh'-o","From G3358; to measure (that is, ascertain in size by a fixed standard); by implication to admeasure (that is, allot by rule); figuratively to estimate: - measure, mete."]},{"k":"G3355","v":["μετρητής","metrētḗs","met-ray-tace'","From G3354; a measurer, that is, (specifically) a certain standard measure of capacity for liquids: - firkin."]},{"k":"G3356","v":["μετριοπαθέω","metriopathéō","met-ree-op-ath-eh'-o","From a compound of the base of G3357 and G3806; to be moderate in passion, that is, gentle (to treat indulgently): - have compassion."]},{"k":"G3357","v":["μετρίως","metríōs","met-ree'-oce","Adverb from a derivative of G3358; moderately, that is, slightly: - a little."]},{"k":"G3358","v":["μέτρον","métron","met'-ron","An apparently primary word; a measure (“metre”), literally or figuratively; by implication a limited portion (degree): - measure."]},{"k":"G3359","v":["μέτωπον","métōpon","met'-o-pon","From G3326 and ὤψ ōps (the face); the forehead (as opposite the countenance): - forehead."]},{"k":"G3360","v":["μέχρι","méchri","mekh'-ree","From G3372; as far as, that is, up to a certain point (as preposition of extent [denoting the terminus, whereas G891 refers especially to the space of time or place intervening] or conjugation): - till, (un-) to, until."]},{"k":"G3361","v":["μή","mḗ","may","A primary particle of qualified negation (whereas G3756 expresses an absolute denial); (adverbially) not, (conjugationally) lest; also (as interrogitive implying a negative answer [whereas G3756 expects an affirmative one]); whether: - any, but, (that), X forbear, + God forbid, + lack, lest, neither, never, no (X wise in), none, nor, [can-] not, nothing, that not, un [-taken], without. Often used in compounds in substantially the same relations. See also G3362, G3363, G3364, G3372, G3373, G3375, G3378."]},{"k":"G3362","v":["ἐὰν μή","eàn mḗ","eh-an' may","That is, G1437 and G3361; if not, that is, unless: - X before, but, except, if no, (if, + whosoever) not."]},{"k":"G3363","v":["ἵνα μή","hína mḗ","hin'-ah may","That is, G2443 and G3361; in order (or so) that not: - albeit not, lest, that no (-t, [-thing])."]},{"k":"G3364","v":["οὐ μή","ou mḗ","oo may","That is, G3756 and G3361; a double negative strengthening the denial; not at all: - any more, at all, by any (no) means, neither, never, no (at all), in no case (wise), nor ever, not (at all, in any wise). Compare G3378."]},{"k":"G3365","v":["μηδαμῶς","mēdamōs","may-dam-oce'","Adverb from a compound of G3361 and ἀμός amos (somebody); by no means: - not so."]},{"k":"G3366","v":["μηδέ","mēdé","may-deh'","From G3361 and G1161; but not, not even; in a continued negation, nor: - neither, nor (yet), (no) not (once, so much as)."]},{"k":"G3367","v":["μηδείς","mēdeís","may-dice'","The masculine, feminine irregular (second form) and neuter (third form) from G3361 and G1520; not even one (man, woman, thing): - any (man, thing), no (man), none, not (at all, any man, a whit), nothing, + without delay."]},{"k":"G3368","v":["μηδέποτε","mēdépote","may-dep'-ot-eh","From G3366 and G4218; not even ever: - never."]},{"k":"G3369","v":["μηδέπω","mēdépō","may-dep'-o","From G3366 and G4452; not even yet: - not yet."]},{"k":"G3370","v":["Μῆδος","Mēdos","may'-dos","Of foreign origin (compare [H4074]); a Median, or inhabitant of Media: - Mede."]},{"k":"G3371","v":["μηκέτι","mēkéti","may-ket'-ee","From G3361 and G2089; no further: - any longer, (not) henceforth, hereafter, no henceforward (longer, more, soon), not any more."]},{"k":"G3372","v":["μῆκος","mēkos","may'-kos","Probably akin to G3173; length (literally or figuratively): - length."]},{"k":"G3373","v":["μηκύνω","mēkýnō","may-koo'-no","From G3372; to lengthen, that is, (middle voice) to enlarge: - grow up."]},{"k":"G3374","v":["μηλωτή","mēlōtḗ","may-lo-tay'","From μῆλον mēlon (a sheep); a sheep skin: - sheepskin."]},{"k":"G3375","v":["μήν","mḗn","mane","A stronger form of G3303; a particle of affirmation (only with G2229); assuredly: - + surely."]},{"k":"G3376","v":["μήν","mḗn","mane","A primary word; a month: - month."]},{"k":"G3377","v":["μηνύω","mēnýō","may-noo'-o","Probably from the same base as G3145 and G3415 (that is, μάω maō [to strive]); to disclose (through the idea of mental effort and thus calling to mind), that is, report, declare, intimate: - shew, tell."]},{"k":"G3378","v":["μὴ οὐκ","mḕ ouk","ouk","That is, G3361 and G3756; as interrogitive and negative is it not that? : - neither (followed by no), + never, not. Compare G3364."]},{"k":"G3379","v":["μήποτε","mḗpote","may'-pot-eh","From G3361 and G4218; not ever; also if (or lest) ever (or perhaps): - if peradventure, lest (at any time, haply), not at all, whether or not."]},{"k":"G3380","v":["μήπω","mḗpō","may'-po","From G3361 and G4452; not yet: - not yet."]},{"k":"G3381","v":["μήπως","mḗpōs","may'-pos","From G3361 and G4458; lest somehow: - lest (by any means, by some means, haply, perhaps)."]},{"k":"G3382","v":["μηρός","mērós","may-ros'","Perhaps a primary word; a thigh: - thigh."]},{"k":"G3383","v":["μήτε","mḗte","may'-teh","From G3361 and G5037; not too, that is, (in continued negation) neither or nor; also, not even: - neither, (n-) or, so much as."]},{"k":"G3384","v":["μήτηρ","mḗtēr","may'-tare","Apparently a primary word; a “mother” (literally or figuratively, immediate or remote): - mother."]},{"k":"G3385","v":["μήτι","mḗti","may'-tee","From G3361 and the neuter of G5100; whether at all: - not [the particle usually not expressed, except by the form of the question]."]},{"k":"G3386","v":["μήτιγε","mḗtige","may'-tig-eh","From G3385 and G1065; not at all then, that is, not to say (the rather still): - how much more."]},{"k":"G3387","v":["μήτις","mḗtis","may'-tis","From G3361 and G5100; whether any: - any [sometimes unexpressed except by the simple interrogative form of the sentence]."]},{"k":"G3388","v":["μήτρα","mḗtra","may'-trah","From G3384; the matrix: - womb."]},{"k":"G3389","v":["μητραλῴας","mētralṓias","may-tral-o'-as","From G3384 and the base of G257; a mother thresher, that is, matricide: - murderer of mothers."]},{"k":"G3390","v":["μητρόπολις","mētrópolis","may-trop'-ol-is","From G3384 and G4172; a mother city, that is, “metropolis”: - chiefest city."]},{"k":"G3391","v":["μία","mía","mee'-ah","Irregular feminine of G1520; one or first: - a (certain), + agree, first, one, X other."]},{"k":"G3392","v":["μιαίνω","miaínō","me-ah'-ee-no","Perhaps a primary verb; to sully or taint, that is, contaminate (ceremonially or morally): - defile."]},{"k":"G3393","v":["μίασμα","míasma","mee'-as-mah","From G3392 (“miasma”); (morally) foulness (properly the effect): - pollution."]},{"k":"G3394","v":["μιασμός","miasmós","mee-as-mos'","From G3392; (morally) contamination (properly the act): - uncleanness."]},{"k":"G3395","v":["μίγμα","mígma","mig'-mah","From G3396; a compound: - mixture."]},{"k":"G3396","v":["μίγνυμι","mígnymi","mig'-noo-mee","A primary verb; to mix: - mingle."]},{"k":"G3397","v":["μικρόν","mikrón","mik-ron'","Masculine or neuter singular of G3398 (as noun); a small space of time or degree: - a (little) (while)."]},{"k":"G3398","v":["μικρός","mikrós","mik-ros'","Apparently a primary word, including the comparative (second form); small (in size, quantity, number or (figuratively) dignity): - least, less, little, small."]},{"k":"G3399","v":["Μίλητος","Mílētos","mil'-ay-tos","Of uncertain origin; Miletus, a city of Asia Minor: - Miletus."]},{"k":"G3400","v":["μίλιον","mílion","mil'-ee-on","Of Latin origin; a thousand paces, that is, a “mile”: - mile."]},{"k":"G3401","v":["μιμέομαι","miméomai","mim-eh'-om-ahee","Middle voice from μῖμος mimos (a “mimic”); to imitate: - follow."]},{"k":"G3402","v":["μιμητής","mimētḗs","mim-ay-tace'","From G3401; an imitator: - follower."]},{"k":"G3403","v":["μιμνήσκω","mimnḗskō","mim-nace'-ko","A prolonged form of G3415 (from which some of the tenses are borrowed); to remind, that is, (middle voice) to recall to mind: - be mindful, remember."]},{"k":"G3404","v":["μισέω","miséō","mis-eh'-o","From a primary word μῖσος misos (hatred); to detest (especially to persecute); by extension to love less: - hate (-ful)."]},{"k":"G3405","v":["μισθαποδοσία","misthapodosía","mis-thap-od-os-ee'-ah","From G3406; requital (good or bad): - recompence of reward."]},{"k":"G3406","v":["μισθαποδότης","misthapodótēs","mis-thap-od-ot'-ace","From G3409 and G591; a remunerator: - rewarder."]},{"k":"G3407","v":["μίσθιος","místhios","mis'-thee-os","From G3408; a wage earner: - hired servant."]},{"k":"G3408","v":["μισθός","misthós","mis-thos'","Apparently a primary word; pay for service (literally or figuratively), good or bad: - hire, reward, wages."]},{"k":"G3409","v":["μισθόω","misthóō","mis-tho'-o","From G3408; to let out for wages, that is, (middle voice) to hire: - hire."]},{"k":"G3410","v":["μίσθωμα","místhōma","mis'-tho-mah","From G3409; a rented building: - hired house."]},{"k":"G3411","v":["μισθωτός","misthōtós","mis-tho-tos'","From G3409; a wage worker (good or bad): - hired servant, hireling."]},{"k":"G3412","v":["Μιτυλήνη","Mitylḗnē","mit-oo-lay'-nay","For μυτιλήνη mutilēnē (abounding in shell fish); Mitylene (or Mytilene), a town in the island Lesbos: - Mitylene."]},{"k":"G3413","v":["Μιχαήλ","Michaḗl","mikh-ah-ale'","Of Hebrew origin [H4317]; Michael, an archangel: - Michael."]},{"k":"G3414","v":["μνᾶ","mnâ","mnah","Of Latin origin; a mna (that is, mina), a certain weight: - pound."]},{"k":"G3415","v":["μνάομαι","mnáomai","mnah'-om-ahee","Middle voice of a derivative of G3306 or perhaps of the base of G3145 (through the idea of fixture in the mind or of mental grasp); to bear in mind, that is, recollect; by implication to reward or punish: - be mindful, remember, come (have) in remembrance. Compare G3403."]},{"k":"G3416","v":["Μνάσων","Mnásōn","mnah'-sohn","Of uncertain origin; Mnason, a Christian: - Mnason."]},{"k":"G3417","v":["μνεία","mneía","mni'-ah","From G3415 or G3403; recollection; by implication recital: - mention, remembrance."]},{"k":"G3418","v":["μνῆμα","mnēma","mnay'-mah","From G3415; a memorial, that is, sepulchral monument (burial place): - grave, sepulchre, tomb."]},{"k":"G3419","v":["μνημεῖον","mnēmeîon","mnay-mi'-on","From G3420; a remembrance, that is, cenotaph (place of interment): - grave, sepulchre, tomb."]},{"k":"G3420","v":["μνήμη","mnḗmē","mnay'-may","From G3403; memory: - remembrance."]},{"k":"G3421","v":["μνημονεύω","mnēmoneúō","mnay-mon-yoo'-o","From a derivative of G3420; to exercise memory, that is, recollect; by implication to punish; also to rehearse: - make mention, be mindful, remember."]},{"k":"G3422","v":["μνημόσυνον","mnēmósynon","mnay-mos'-oo-non","From G3421; a reminder (memorandum), that is, record: - memorial."]},{"k":"G3423","v":["μνηστεύω","mnēsteúō","mnace-tyoo'-o","From a derivative of G3415; to give a souvenir (engagement present), that is, betroth: - espouse."]},{"k":"G3424","v":["μογιλάλος","mogilálos","mog-il-al'-os","From G3425 and G2980; hardly talking, that is, dumb (tongue tied): - having an impediment in his speech."]},{"k":"G3425","v":["μόγις","mógis","mog'-is","Adverb from a primary word μόγος mogos (toil); with difficulty: - hardly."]},{"k":"G3426","v":["μόδιος","módios","mod'-ee-os","Of Latin origin; a modius, that is, certain measure for things dry (the quantity or the utensil): - bushel."]},{"k":"G3427","v":["μοί","moí","moy","The simpler form of G1698; to me: - I, me, mine, my."]},{"k":"G3428","v":["μοιχαλίς","moichalís","moy-khal-is'","A prolonged form of the feminine of G3432; an adulteress (literally or figuratively): - adulteress (-ous, -y)."]},{"k":"G3429","v":["μοιχάω","moicháō","moy-khah'-o","From G3432; (middle voice) to commit adultery: - commit adultery."]},{"k":"G3430","v":["μοιχεία","moicheía","moy-khi'-ah","From G3431; adultery: - adultery."]},{"k":"G3431","v":["μοιχεύω","moicheúō","moy-khyoo'-o","From G3432; to commit adultery: - commit adultery."]},{"k":"G3432","v":["μοιχός","moichós","moy-khos'","Perhaps a primary word; a (male) paramour; figuratively apostate: - adulterer."]},{"k":"G3433","v":["μόλις","mólis","mol'-is","Probably by a variation for G3425; with difficulty: - hardly, scarce (-ly), + with much work."]},{"k":"G3434","v":["Μολόχ","Molóch","mol-okh'","Of Hebrew origin [H4432]; Moloch (that is, Molek), an idol: - Moloch."]},{"k":"G3435","v":["μολύνω","molýnō","mol-oo'-no","Probably from G3189; to soil (figuratively): - defile."]},{"k":"G3436","v":["μολυσμός","molysmós","mol-oos-mos'","From G3435; a stain, that is, (figuratively) immorality: - filthiness."]},{"k":"G3437","v":["μομφή","momphḗ","mom-fay'","From G3201; blame, that is, (by implication) a fault: - quarrel."]},{"k":"G3438","v":["μονή","monḗ","mon-ay'","From G3306; a staying, that is, residence (the act or the place): - abode, mansion."]},{"k":"G3439","v":["μονογενής","monogenḗs","mon-og-en-ace'","From G3441 and G1096; only born, that is, sole: - only (begotten, child)."]},{"k":"G3440","v":["μόνον","mónon","mon'-on","Neuter of G3441 as adverb; merely: - alone, but, only."]},{"k":"G3441","v":["μόνος","mónos","mon'-os","Probably from G3306; remaining, that is, sole or single; by implication mere: - alone, only, by themselves."]},{"k":"G3442","v":["μονόφθαλμος","monóphthalmos","mon-of'-thal-mos","From G3441 and G3788; one eyed: - with one eye."]},{"k":"G3443","v":["μονόω","monóō","mon-o'-o","From G3441; to isolate, that is, bereave: - be desolate."]},{"k":"G3444","v":["μορφή","morphḗ","mor-fay'","Perhaps from the base of G3313 (through the idea of adjustment of parts); shape; figuratively nature: - form."]},{"k":"G3445","v":["μορφόω","morphóō","mor-fo'-o","From the same as G3444; to fashion (figuratively): - form."]},{"k":"G3446","v":["μόρφωσις","mórphōsis","mor'-fo-sis","From G3445; formation, that is, (by implication) appearance (semblance or [concretely] formula): - form."]},{"k":"G3447","v":["μοσχοποιέω","moschopoiéō","mos-khop-oy-eh'-o","From G3448 and G4160; to fabricate the image of a bullock: - make a calf."]},{"k":"G3448","v":["μόσχος","móschos","mos'-khos","Probably strengthened for ὄσχος oschos (a shoot); a young bullock: - calf."]},{"k":"G3449","v":["μόχθος","móchthos","mokh'-thos","From the base of G3425; toil, that is, (by implication) sadness: - painfulness, travail."]},{"k":"G3450","v":["μοῦ","moû","moo","The simpler from of G1700; of me: - I, me, mine (own), my."]},{"k":"G3451","v":["μουσικός","mousikós","moo-sik-os'","From μουσς Mousa (a Muse); “musical”, that is, (as noun) a minstrel: - musician."]},{"k":"G3452","v":["μυελός","myelós","moo-el-os'","Perhaps a primary word; the marrow: - marrow."]},{"k":"G3453","v":["μυέω","myéō","moo-eh'-o","From the base of G3466; to initiate, that is, (by implication) to teach: - instruct."]},{"k":"G3454","v":["μῦθος","mŷthos","moo'-thos","Perhaps from the same as G3453 (through the idea of tuition); a tale, that is, fiction (“myth”): - fable."]},{"k":"G3455","v":["μυκάομαι","mykáomai","moo-kah'-om-ahee","From a presumed derivative of μύζω muzō (to “moo”); to bellow (roar): - roar."]},{"k":"G3456","v":["μυκτηρίζω","myktērízō","mook-tay-rid'-zo","From a derivative of the base of G3455 (meaning snout, as that whence lowing proceeds from); to make mouths at, that is, ridicule: - mock."]},{"k":"G3457","v":["μυλικός","mylikós","moo-lee-kos'","From G3458; belonging to a mill: - mill [-stone]."]},{"k":"G3458","v":["μύλος","mýlos","moo'-los","Probably ultimately from the base of G3433 (through the idea of hardship); a “mill”, that is, (by implication) a grinder (millstone): - millstone."]},{"k":"G3459","v":["μύλων","mýlōn","moo'-lone","From G3458; a mill house: - mill."]},{"k":"G3460","v":["Μύρα","Mýra","moo'-rah","Of uncertain derivation; Myra, a place in Asia Minor: - Myra."]},{"k":"G3461","v":["μυριάς","myriás","moo-ree'-as","From G3463; a ten thousand; by extension a “myriad” or indefinite number: - ten thousand."]},{"k":"G3462","v":["μυρίζω","myrízō","moo-rid'-zo","From G3463; to apply (perfumed) unguent to: - anoint."]},{"k":"G3463","v":["μύριοι","mýrioi","moo'-ree-oi","Plural of an apparently primary word (properly meaning very many); ten thousand; by extension innumerably many: - ten thousand."]},{"k":"G3464","v":["μύρον","mýron","moo'-ron","Probably of foreign origin (compare [H4753] and G4666); “myrrh”, that is, (by implication) perfumed oil: - ointment."]},{"k":"G3465","v":["Μυσία","Mysía","moo-see'-ah","Of uncertain origin; Mysia, a region of Asia Minor: - Mysia."]},{"k":"G3466","v":["μυστήριον","mystḗrion","moos-tay'-ree-on","From a derivative of μύω muō (to shut the mouth); a secret or “mystery” (through the idea of silence imposed by initiation into religious rites): - mystery."]},{"k":"G3467","v":["μυωπάζω","myōpázō","moo-ope-ad'-zo","From a compound of the base of G3466 and ωψōps (the face: from G3700); to shut the eyes, that is, blink (see indistinctly): - cannot see afar off."]},{"k":"G3468","v":["μώλωψ","mṓlōps","mo'-lopes","From μῶλος mōlos (“moil”; probably akin to the base of G3433) and probably ὤψ ōps (the face; from G3700); a mole (“black eye”) or blow mark: - stripe."]},{"k":"G3469","v":["μωμάομαι","mōmáomai","mo-mah'-om-ahee","From G3470; to carp at, that is, censure (discredit): - blame."]},{"k":"G3470","v":["μῶμος","mōmos","mo'-mos","Perhaps from G3201; a flaw or blot, that is, (figuratively) disgraceful person: - blemish."]},{"k":"G3471","v":["μωραίνω","mōraínō","mo-rah'-ee-no","From G3474; to become insipid; figuratively to make (passively act) as a simpleton: - become fool, make foolish, lose savour."]},{"k":"G3472","v":["μωρία","mōría","mo-ree'-ah","From G3474; silliness, that is, absurdity: - foolishness."]},{"k":"G3473","v":["μωρολογία","mōrología","mo-rol-og-ee'-ah","From a compound of G3474 and G3004; silly talk, that is, buffoonery: - foolish talking."]},{"k":"G3474","v":["μωρός","mōrós","mo-ros'","Probably form the base of G3466; dull or stupid (as if shut up), that is, heedless, (morally) blockhead, (apparently) absurd: - fool (-ish, X -ishness)."]},{"k":"G3475","v":["Μωσεύς","Mōseús","moce-yoos'","Of Hebrew origin [H4872]; Moseus, Moses or Mouses (that is, Mosheh), the Hebrew lawgiver: - Moses."]},{"k":"G3476","v":["Ναασσών","Naassṓn","nah-as-sone'","Of Hebrew origin [H5177]; Naasson (that is, Nachshon), an Israelite: - Naasson."]},{"k":"G3477","v":["Ναγγαί","Nangaí","nang-gah'-ee","Probably of Hebrew origin (compare [H5052]); Nangae (that is, perhaps Nogach), an Israelite: - Nagge."]},{"k":"G3478","v":["Ναζαρέθ","Nazaréth","nad-zar-eth'","Of uncertain derivation; Nazareth or Nazaret, a place in Palestine: - Nazareth."]},{"k":"G3479","v":["Ναζαρηνός","Nazarēnós","nad-zar-ay-nos'","From G3478; a Nazarene, that is, inhabitant of Nazareth: - of Nazareth."]},{"k":"G3480","v":["Ναζωραῖος","Nazōraîos","nad-zo-rah'-yos","From G3478; a Nazoraean, that is, inhabitant of Nazareth; by extension a Christian: - Nazarene, of Nazareth."]},{"k":"G3481","v":["Ναθάν","Nathán","nath-an'","Of Hebrew origin [H5416]; Nathan, an Israelite: - Nathan."]},{"k":"G3482","v":["Ναθαναήλ","Nathanaḗl","nath-an-ah-ale'","Of Hebrew origin [H5417]; Nathanael (that is, Nathanel), an Israelite and Christian: - Nathanael."]},{"k":"G3483","v":["ναί","naí","nahee","A primary particle of strong affirmation; yes: - even so, surely, truth, verily, yea, yes."]},{"k":"G3484","v":["Ναΐν","Naḯn","nah-in'","Probably of Hebrew origin (compare [H4999]); Nain, a place in Palestine: - Nain."]},{"k":"G3485","v":["ναός","naós","nah-os'","From a primary word ναίω naiō (to dwell); a fane, shrine, temple: - shrine, temple. Compare G2411."]},{"k":"G3486","v":["Ναούμ","Naoúm","nah-oom'","Of Hebrew origin [H5151]; Naum (that is, Nachum), an Israelite: - Naum."]},{"k":"G3487","v":["νάρδος","nárdos","nar'dos","Of foreign origin (compare [H5373]); “nard”: - [spike-] nard."]},{"k":"G3488","v":["Νάρκισσος","Nárkissos","nar'-kis-sos","A flower of the same name, from νάρκη narkē (stupefaction, as a “narcotic”); Narcissus, a Roman: - Narcissus."]},{"k":"G3489","v":["ναυαγέω","nauagéō","now-ag-eh'-o","From a compound of G3491 and G71; to be shipwrecked (stranded, “navigate”), literally or figuratively: - make (suffer) shipwreck."]},{"k":"G3490","v":["ναύκληρος","naúklēros","now'-klay-ros","From G3491 and G2819 (“clerk”); a captain: - owner of a ship."]},{"k":"G3491","v":["ναῦς","naûs","nowce","From νάω naō̄ and νέω neō (to float); a boat (of any size): - ship."]},{"k":"G3492","v":["ναύτης","naútēs","now'-tace","From G3491; a boatman, that is, seaman: - sailor, shipman."]},{"k":"G3493","v":["Ναχώρ","Nachṓr","nakh-ore'","Of Hebrew origin [H5152]; Nachor, the grandfather of Abraham: - Nachor."]},{"k":"G3494","v":["νεανίας","neanías","neh-an-ee'-as","From a derivative of G3501; a youth (up to about forty years): - young man."]},{"k":"G3495","v":["νεανίσκος","neanískos","neh-an-is'-kos","From the same as G3494; a youth (under forty): - young man."]},{"k":"G3496","v":["Νεάπολις","Neápolis","neh-ap'-ol-is","From G3501 and G4172; new town; Neapolis, a place in Macedonia: - Neapolis."]},{"k":"G3497","v":["Νεεμάν","Neemán","neh-eh-man'","Of Hebrew origin [H5283]; Neeman (that is, Naaman), a Syrian: - Naaman."]},{"k":"G3498","v":["νεκρός","nekrós","nek-ros'","From an apparently primary word νέκυς nekus (a corpse); dead (literally or figuratively; also as noun): - dead."]},{"k":"G3499","v":["νεκρόω","nekróō","nek-ro'-o","From G3498; to deaden, that is, (figuratively) to subdue: - be dead, mortify."]},{"k":"G3500","v":["νέκρωσις","nékrōsis","nek'-ro-sis","From G3499; decease; figuratively impotency: - deadness, dying."]},{"k":"G3501","v":["νέος","néos","neh'-os","A primary word, including the comparative (second form); “new”, that is, (of persons) youthful, or (of things) fresh; figuratively regenerate: - new, young."]},{"k":"G3502","v":["νεοσσός","neossós","neh-os-sos'","From G3501; a youngling (nestling): - young."]},{"k":"G3503","v":["νεότης","neótēs","neh-ot'-ace","From G3501; newness, that is, youthfulness: - youth."]},{"k":"G3504","v":["νεόφυτος","neóphytos","neh-of'-oo-tos","From G3501 and a derivative of G5453; newly planted, that is, (figuratively) a young convert (“neophyte”): - novice."]},{"k":"G3505","v":["Νέρων","Nérōn","ner'-ohn","Of Latin origin; Neron (that is, Nero), a Roman emperor: - Nero."]},{"k":"G3506","v":["νεύω","neúō","nyoo'-o","Apparently a primary verb; to “nod”, that is, (by analogy) to signal: - beckon."]},{"k":"G3507","v":["νεφέλη","nephélē","nef-el'-ay","From G3509; properly cloudiness, that is, (concretely) a cloud: - cloud."]},{"k":"G3508","v":["Νεφθαλείμ","Nephthaleím","nef-thal-ime'","Of Hebrew origin [H5321]; Nephthaleim (that is, Naphthali), a tribe in Palestine: - Nephthalim."]},{"k":"G3509","v":["νέφος","néphos","nef'-os","Apparently a primary word; a cloud: - cloud."]},{"k":"G3510","v":["νεφρός","nephrós","nef-ros'","Of uncertain affinity; a kidney (plural), that is, (figuratively) the inmost mind: - reins."]},{"k":"G3511","v":["νεωκόρος","neōkóros","neh-o-kor'-os","From a form of G3485 and κορέω koreō (to sweep); a temple servant, that is, (by implication) a votary: - worshipper."]},{"k":"G3512","v":["νεωτερικός","neōterikós","neh-o-ter'-ik-os","From the compound of G3501; appertaining to younger persons, that is, juvenile: - youthful."]},{"k":"G3513","v":["νή","nḗ","nay","Probably an intensive form of G3483; a particle of attestation (accompanied by the object invoked or appealed to in confirmation); as sure as: - I protest by."]},{"k":"G3514","v":["νήθω","nḗthō","nay'-tho","From νέω neō of like meaning; to spin: - spin."]},{"k":"G3515","v":["νηπιάζω","nēpiázō","nay-pee-ad'-zo","From G3516; to act as a babe, that is, (figuratively) innocently: - be a child."]},{"k":"G3516","v":["νήπιος","nḗpios","nay'-pee-os","From an obsolete particle νη ne; implying negation and G2031; not speaking, that is, an infant (minor); figuratively a simple minded person, an immature Christian: - babe, child (+ -ish)."]},{"k":"G3517","v":["Νηρεύς","Nēreús","nare-yoos'","Apparently from a derivative of the base of G3491 (meaning wet); Nereus, a Christian: - Nereus."]},{"k":"G3518","v":["Νηρί","Nērí","nay-ree'","Of Hebrew origin [H5374]; Neri (that is, Nerijah), an Israelite: - Neri."]},{"k":"G3519","v":["νησίον","nēsíon","nay-see'-on","Diminutive of G3520; an islet: - island."]},{"k":"G3520","v":["νῆσος","nēsos","nay'-sos","Probably from the base of G3491; an island: - island, isle."]},{"k":"G3521","v":["νηστεία","nēsteía","nace-ti'-ah","From G3522; abstinence (from lack of food, or voluntary and religious); specifically the fast of the Day of Atonement: - fast (-ing.)"]},{"k":"G3522","v":["νηστεύω","nēsteúō","nace-tyoo'-o","From G3523; to abstain from food (religiously): - fast."]},{"k":"G3523","v":["νῆστις","nēstis","nace'-tis","From the negative particle νη nē and G2068; not eating, that is, abstinent from food (religiously): - fasting."]},{"k":"G3524","v":["νηφάλεος","nēpháleos","nay-fal'-eh-os","From G3525; sober, that is, (figuratively) circumspect: - sober, vigilant."]},{"k":"G3525","v":["νήφω","nḗphō","nay'-fo","Of uncertain affinity; to abstain from wine (keep sober), that is, (figuratively) be discreet: - be sober, watch."]},{"k":"G3526","v":["Νίγερ","Níger","neeg'-er","Of Latin origin; black; Niger, a Christian: - Niger."]},{"k":"G3527","v":["Νικάνωρ","Nikánōr","nik-an'-ore","Probably from G3528; victorious; Nicanor, a Christian: - Nicanor."]},{"k":"G3528","v":["νικάω","nikáō","nik-ah'-o","From G3529; to subdue (literally or figuratively): - conquer, overcome, prevail, get the victory."]},{"k":"G3529","v":["νίκη","níkē","nee'-kay","Apparently a primary word; conquest (abstractly), that is, (figuratively) the means of success: - victory."]},{"k":"G3530","v":["Νικόδημος","Nikódēmos","nik-od'-ay-mos","From G3534 and G1218; victorious among his people; Nicodemus, an Israelite: - Nicodemus."]},{"k":"G3531","v":["Νικολαΐτης","Nikolaḯtēs","nik-ol-ah-ee'-tace","From G3532; a Nicolaite, that is, adherent of Nicolaus: - Nicolaitane."]},{"k":"G3532","v":["Νικόλαος","Nikólaos","nik-ol'-ah-os","From G3534 and G2004; victorious over the people; Nicolaus, a heretic: - Nicolaus."]},{"k":"G3533","v":["Νικόπολις","Nikópolis","nik-op'-ol-is","From G3534 and G4172; victorious city; Nicopolis, a place in Macedonia: - Nicopolis."]},{"k":"G3534","v":["νῖκος","nîkos","nee'-kos","From G3529; a conquest (concretely), that is, (by implication) triumph: - victory."]},{"k":"G3535","v":["Νινευΐ","Nineuḯ","nin-yoo-ee'","Of Hebrew origin [H5210]; Ninevi (that is, Nineveh), the capital of Assyria: - Nineve."]},{"k":"G3536","v":["Νινευΐτης","Nineuḯtēs","nin-yoo-ee'-tace","From G3535; a Ninevite, that is, inhabitant of Nineveh: - of Nineve, Ninevite."]},{"k":"G3537","v":["νιπτήρ","niptḗr","nip-tare'","From G3538; a ewer: - bason."]},{"k":"G3538","v":["νίπτω","níptō","nip'-to","To cleanse (especially the hands or the feet or the face); ceremonially to perform ablution: - wash. Compare G3068."]},{"k":"G3539","v":["νοιέω","noiéō","noy-eh'-o","From G3563; to exercise the mind (observe), that is, (figuratively) to comprehend, heed: - consider, perceive, think, understand."]},{"k":"G3540","v":["νόημα","nóēma","no'-ay-mah","From G3539; a perception, that is, purpose, or (by implication) the intellect, disposition, itself: - device, mind, thought."]},{"k":"G3541","v":["νόθος","nóthos","noth'-os","Of uncertain affinity; a spurious or illegitimate son: - bastard."]},{"k":"G3542","v":["νομή","nomḗ","nom-ay'","Feminine from the same as G3551; pasture, that is, (the act) feeding (figuratively spreading of a gangrene), or (the food) pasturage: - X eat, pasture."]},{"k":"G3543","v":["νομίζω","nomízō","nom-id'-zo","From G3551; properly to do by law (usage), that is, to accustom (passively be usual); by extension to deem or regard: - suppose, think, be wont."]},{"k":"G3544","v":["νομικός","nomikós","nom-ik-os'","From G3551; according (or pertaining) to law, that is, legal (ceremonially); as noun, an expert in the (Mosaic) law: - about the law, lawyer."]},{"k":"G3545","v":["νομίμως","nomímōs","nom-im'-oce","Adverb from a derivative of G3551; legitimately (specifically agreeably to the rules of the lists): - lawfully."]},{"k":"G3546","v":["νόμισμα","nómisma","nom'-is-mah","From G3543; what is reckoned as of value (after the Latin numisma), that is, current coin: - money."]},{"k":"G3547","v":["νομοδιδάσκαλος","nomodidáskalos","nom-od-id-as'-kal-os","From G3551 and G1320; an expounder of the (Jewish) law, that is, a Rabbi: - doctor (teacher) of the law."]},{"k":"G3548","v":["νομοθεσία","nomothesía","nom-oth-es-ee'-ah","From G3550; legislation (specifically the institution of the Mosaic code): - giving of the law."]},{"k":"G3549","v":["νομοθετέω","nomothetéō","nom-oth-et-eh'-o","From G3550; to legislate, that is, (passively) to have (the Mosaic) enactments injoined, be sanctioned (by them): - establish, receive the law."]},{"k":"G3550","v":["νομοθέτης","nomothétēs","nom-oth-et'-ace","From G3551 and a derivative of G5087; a legislator: - lawgiver."]},{"k":"G3551","v":["νόμος","nómos","nom'-os","From a primary word νέμω nemō (to parcel out, especially food or grazing to animals); law (through the idea of prescriptive usage), generally (regulation), specifically (of Moses [including the volume]; also of the Gospel), or figuratively (a principle): - law."]},{"k":"G3552","v":["νοσέω","noséō","nos-eh'-o","From G3554; to be sick, that is, (by implication of a diseased appetite) to hanker after (figuratively to harp upon): - dote."]},{"k":"G3553","v":["νόσημα","nósēma","nos'-ay-ma","From G3552; an ailment: - disease."]},{"k":"G3554","v":["νόσος","nósos","nos'-os","Of uncertain affinity; a malady (rarely figurative of moral disability): - disease, infirmity, sickness."]},{"k":"G3555","v":["νοσσιά","nossiá","nos-see-ah'","From G3502; a brood (of chickens): - brood."]},{"k":"G3556","v":["νοσσίον","nossíon","nos-see'-on","Diminutive of G3502; a birdling: - chicken."]},{"k":"G3557","v":["νοσφίζομαι","nosphízomai","nos-fid'-zom-ahee","Middle voice from νοσφί nosphi (apart or clandestinely); to sequestrate for oneself, that is, embezzle: - keep back, purloin."]},{"k":"G3558","v":["νότος","nótos","not'-os","Of uncertain affinity; the south (southwest) wind; by extension the southern quarter itself: - south (wind)."]},{"k":"G3559","v":["νουθεσία","nouthesía","noo-thes-ee'-ah","From G3563 and a derivative of G5087; calling attention to, that is, (by implication) mild rebuke or warning: - admonition."]},{"k":"G3560","v":["νουθετέω","nouthetéō","noo-thet-eh'-o","From the same as G3559; to put in mind, that is, (by implication) to caution or reprove gently: - admonish, warn."]},{"k":"G3561","v":["νουμηνία","noumēnía","noo-may-nee'-ah","Feminine of a compound of G3501 and G3376 (as noun by implication of G2250); the festival of new moon: - new moon."]},{"k":"G3562","v":["νουνεχῶς","nounechōs","noon-ekh-oce'","Adverb from a compound of the accusative of G3563 and G2192; in a mind having way, that is, prudently: - discreetly."]},{"k":"G3563","v":["νοῦς","noûs","nooce","Probably from the base of G1097; the intellect, that is, mind (divine or human; in thought, feeling, or will); by implication meaning: - mind, understanding. Compare G5590."]},{"k":"G3564","v":["Νυμφᾶς","Nymphâs","noom-fas'","Probably contracted for a compound of G3565 and G1435; nymph given (that is, born); Nymphas, a Christian: - Nymphas."]},{"k":"G3565","v":["νύμφη","nýmphē","noom-fay'","From a primary but obsolete verb νύπτω nuptō (to veil as a bride; compare the Latin “nupto”, to marry); a young married woman (as veiled), including a betrothed girl; by implication, a son's wife: - bride, daughter in law."]},{"k":"G3566","v":["νυμφίος","nymphíos","noom-fee'-os","From G3565; a bride groom (literally or figuratively): - bridegroom."]},{"k":"G3567","v":["νυμφών","nymphṓn","noom-fohn'","From G3565; the bridal room: - bridechamber."]},{"k":"G3568","v":["νῦν","nŷn","noon","A primary particle of present time; “now” (as adverb of date, a transition or emphasis); also as noun or adjective present or immediate: - henceforth, + hereafter, of late, soon, present, this (time). See also G3569, G3570."]},{"k":"G3569","v":["τανῦν","tanŷn","tan-oon'","From neuter plural of G3588 and G3568; the things now, that is, (adverb) at present: - (but) now."]},{"k":"G3570","v":["νυνί","nyní","noo-nee'","A prolonged form of G3568 for emphasis; just now: - now."]},{"k":"G3571","v":["νύξ","nýx","noox","A primary word; “night” (literally or figuratively): - (mid-) night."]},{"k":"G3572","v":["νύσσω","nýssō","noos'-so","Apparently a primary word; to prick (“nudge”): - pierce."]},{"k":"G3573","v":["νυστάζω","nystázō","noos-tad'-zo","From a presumed derivative of G3506; to nod, that is, (by implication) to fall asleep; figuratively to delay: - slumber."]},{"k":"G3574","v":["νυχθήμερον","nychthḗmeron","nookh-thay'-mer-on","From G3571 and G2250; a day and night, that is, full day of twenty four hours: - night and day."]},{"k":"G3575","v":["Νῶε","Nōe","no'-eh","Of Hebrew origin [H5146]; Noe, (that is, Noach), a patriarch: - Noe."]},{"k":"G3576","v":["νωθρός","nōthrós","no-thros'","From a derivative of G3541; sluggish, that is, (literally) lazy, or (figuratively) stupid: - dull, slothful."]},{"k":"G3577","v":["νῶτος","nōtos","no'-tos","Of uncertain affinity; the back: - back."]},{"k":"G3578","v":["ξενία","xenía","xen-ee'-ah","From G3581; hospitality, that is, (by implication) a place of entertainment: - lodging."]},{"k":"G3579","v":["ξενίζω","xenízō","xen-id'-zo","From G3581; to be a host (passively a guest); by implication be (make, appear) strange: - entertain, lodge, (think it) strange."]},{"k":"G3580","v":["ξενοδοχέω","xenodochéō","xen-od-okh-eh'-o","From a compound of G3581 and G1209; to be hospitable: - lodge strangers."]},{"k":"G3581","v":["ξένος","xénos","xen'-os","Apparently a primary word; foreign (literally alien, or figuratively novel); by implication a guest or (vice-versa) entertainer: - host, strange (-r)."]},{"k":"G3582","v":["ξέστης","xéstēs","xes'-tace","As if from ξέω xeō (which properly means to smooth; by implication [of friction] to boil or heat); a vessel (as fashioned or for cooking), (or perhaps by corruption from the Latin sextarius, the sixth of a modius, that is, about a pint), that is, (specifically) a measure for liquids or solids, (by analogy a pitcher): - pot."]},{"k":"G3583","v":["ξηραίνω","xēraínō","xay-rah'-ee-no","From G3584; to desiccate; by implication to shrivel, to mature: - dry up, pine away, be ripe, wither (away)."]},{"k":"G3584","v":["ξηρός","xērós","xay-ros'","From the base of G3582 (through the idea of scorching); arid; by implication shrunken, earth (as opposed to water): - dry, land, withered."]},{"k":"G3585","v":["ξύλινος","xýlinos","xoo'-lin-os","From G3586; wooden: - of wood."]},{"k":"G3586","v":["ξύλον","xýlon","xoo'-lon","From another form of the base of G3582; timber (as fuel or material); by implication a stick, club or tree or other wooden article or substance: - staff, stocks, tree, wood."]},{"k":"G3587","v":["ξυράω","xyráō","xoo-rah'-o","From a derivative of the same as G3586 (meaning a razor); to shave or “shear” the hair: - shave."]},{"k":"G3588","v":["ὁ","ho","ho","The masculine, feminine (second) and neuter (third) forms, in all their inflections; the definite article; the (sometimes to be supplied, at others omitted, in English idiom): - the, this, that, one, he, she, it, etc."]},{"k":"G3589","v":["ὀγδοήκοντα","ogdoḗkonta","og-do-ay'-kon-tah","From G3590; ten times eight: - fourscore."]},{"k":"G3590","v":["ὄγδοος","ógdoos","og'-do-os","From G3638; the eighth: - eighth."]},{"k":"G3591","v":["ὄγκος","ónkos","ong'-kos","Probably from the same as G43; a mass (as bending or bulging by its load), that is, burden (hindrance): - weight."]},{"k":"G3592","v":["ὅδε","hóde","hod'-eh","The masculine, feminine (second) and neuter (third) forms. From G3588 and G1161; the same, that is, this or that one (plural these or those); often used as personal pronoun: - he, she, such, these, thus."]},{"k":"G3593","v":["ὁδεύω","hodeúō","hod-yoo'-o","From G3598; to travel: - journey."]},{"k":"G3594","v":["ὁδηγέω","hodēgéō","hod-ayg-eh'-o","From G3595; to show the way (literally or figuratively [teach]): - guide, lead."]},{"k":"G3595","v":["ὁδηγός","hodēgós","hod-ayg-os'","From G3598 and G2233; a conductor (literally or figuratively [teacher]): - guide, leader."]},{"k":"G3596","v":["ὁδοιπορέω","hodoiporéō","hod-oy-por-eh'-o","From a compound of G3598 and G4198; to be a wayfarer, that is, travel: - go on a journey."]},{"k":"G3597","v":["ὁδοιπορία","hodoiporía","hod-oy-por-ee'-ah","From the same as G3596; travel: - journey (-ing)."]},{"k":"G3598","v":["ὁδός","hodós","hod-os'","Apparently a primary word; a road; by implication a progress (the route, act or distance); figuratively a mode or means: - journey, (high-) way."]},{"k":"G3599","v":["ὀδούς","odoús","od-ooce","Perhaps from the base of G2068; a “tooth”: - tooth."]},{"k":"G3600","v":["ὀδυνάω","odynáō","od-oo-nah'-o","From G3601; to grieve: - sorrow, torment."]},{"k":"G3601","v":["ὀδύνη","odýnē","od-oo'-nay","From G1416; grief (as dejecting): - sorrow."]},{"k":"G3602","v":["ὀδυρμός","odyrmós","od-oor-mos'","From a derivative of the base of G1416; moaning, that is, lamentation: - mourning."]},{"k":"G3603","v":["ὅ ἐστι","hó esti","ho es-tee'","From the neuter of G3739 and the third person singular present indicative of G1510; which is: - called, which is (make), that is (to say)."]},{"k":"G3604","v":["Ὀζίας","Ozías","od-zee'-as","Of Hebrew origin [H5818]; Ozias (that is, Uzzijah), an Israelite: - Ozias."]},{"k":"G3605","v":["ὄζω","ózō","od'-zo","A primary verb (in a strengthened form); to scent (usually an ill “oder”): - stink."]},{"k":"G3606","v":["ὅθεν","hóthen","hoth'-en","From G3739 with the directive enclitic of source; from which place or source or cause (adverbially or conjugationally): - from thence, (from) whence, where (-by, -fore, -upon)."]},{"k":"G3607","v":["ὀθόνη","othónē","oth-on'-ay","Of uncertain affinity; a linen cloth, that is, (especially) a sail: - sheet."]},{"k":"G3608","v":["ὀθόνιον","othónion","oth-on'-ee-on","Neuter of a presumed derivative of G3607; a linen bandage: - linen clothes."]},{"k":"G3609","v":["οἰκεῖος","oikeîos","oy-ki'-os","From G3624; domestic, that is, (as noun), a relative, adherent: - (those) of the (his own) house (-hold)."]},{"k":"G3610","v":["οἰκέτης","oikétēs","oy-ket'-ace","From G3611; a fellow resident, that is, menial domestic: - (household) servant."]},{"k":"G3611","v":["οἰκέω","oikéō","oy-keh'-o","From G3624; to occupy a house that is, reside (figuratively inhabit, remain, inhere); by implication to cohabit: - dwell. See also G3625."]},{"k":"G3612","v":["οἴκημα","oíkēma","oy'-kay-mah","From G3611; a tenement, that is, (specifically) a jail: - prison."]},{"k":"G3613","v":["οἰκητήριον","oikētḗrion","oy-kay-tay'-ree-on","Neuter of a presumed derivative of G3611 (equivalent to G3612); a residence (literally or figuratively): - habitation, house."]},{"k":"G3614","v":["οἰκία","oikía","oy-kee'-ah","From G3624; properly residence (abstractly), but usually (concretely) an abode (literally or figuratively); by implication a family (especially domestics): - home, house (-hold)."]},{"k":"G3615","v":["οἰκιακός","oikiakós","oy-kee-ak-os'","From G3614; familiar, that is, (as noun) relatives: - they (them) of (his own) household."]},{"k":"G3616","v":["οἰκοδεσποτέω","oikodespotéō","oy-kod-es-pot-eh'-o","From G3617; to be the head of (that is, rule) a family: - guide the house."]},{"k":"G3617","v":["οἰκοδεσπότης","oikodespótēs","oy-kod-es-pot'-ace","From G3624 and G1203; the head of a family: - goodman (of the house), householder, master of the house."]},{"k":"G3618","v":["οἰκοδομέω","oikodoméō","oy-kod-om-eh'-o","From the same as G3619; to be a house builder, that is, construct or (figuratively) confirm: - (be in) build (-er, -ing, up), edify, embolden."]},{"k":"G3619","v":["οἰκοδομή","oikodomḗ","oy-kod-om-ay'","Feminine (abstraction) of a compound of G3624 and the base of G1430; architecture, that is, (concretely) a structure; figuratively confirmation: - building, edify (-ication, -ing)."]},{"k":"G3620","v":["οἰκοδομία","oikodomía","oy-kod-om-ee'-ah","From the same as G3619; confirmation: - edifying."]},{"k":"G3621","v":["οἰκονομέω","oikonoméō","oy-kon-om-eh'-o","From G3623; to manage (a house, that is, an estate): - be steward."]},{"k":"G3622","v":["οἰκονομία","oikonomía","oy-kon-om-ee'-ah","From G3623; administration (of a household or estate); specifically a (religious) “economy”: - dispensation, stewardship."]},{"k":"G3623","v":["οἰκονόμος","oikonómos","oy-kon-om'-os","From G3624 and the base of G3551; a house distributor (that is, manager), or overseer, that is, an employee in that capacity; by extension a fiscal agent (treasurer); figuratively a preacher (of the Gospel): - chamberlain, governor, steward."]},{"k":"G3624","v":["οἶκος","oîkos","oy'-kos","Of uncertain affinity; a dwelling (more or less extensive, literally or figuratively); by implication a family (more or less related, literally or figuratively): - home, house (-hold), temple."]},{"k":"G3625","v":["οἰκουμένη","oikouménē","oy-kou-men'-ay","Feminine participle present passive of G3611 (as noun, by implication of G1093); land, that is, the (terrene part of the) globe; specifically the Roman empire: - earth, world."]},{"k":"G3626","v":["οἰκουρός","oikourós","oy-koo-ros'","From G3624 and οὖρος ouros (a guard; be “ware”); a stayer at home, that is, domestically inclined (a “good housekeeper”): - keeper at home."]},{"k":"G3627","v":["οἰκτείρω","oikteírō","oyk-ti'-ro","Also in certain tenses οἰκτερέω oiktereō oyk-ter-eh'-o; from οἰκτος oiktos (pity); to exercise pity: - have compassion on."]},{"k":"G3628","v":["οἰκτιρμός","oiktirmós","oyk-tir-mos'","From G3627; pity: - mercy."]},{"k":"G3629","v":["οἰκτίρμων","oiktírmōn","oyk-tir'-mone","From G3627; compassionate: - merciful, of tender mercy."]},{"k":"G3630","v":["οἰνοπότης","oinopótēs","oy-nop-ot'-ace","From G3631 and a derivative of the alternate of G4095; a tippler: - winebibber."]},{"k":"G3631","v":["οἶνος","oînos","oy'-nos","A primary word (or perhaps of Hebrew origin [H3196]); “wine” (literally or figuratively): - wine."]},{"k":"G3632","v":["οἰνοφλυγία","oinophlygía","oy-nof-loog-ee'-ah","From G3631 and a form of the base of G5397; an overflow (or surplus) of wine, that is, vinolency (drunkenness): - excess of wine."]},{"k":"G3633","v":["οἴομαι","oíomai","oy'-om-ahee","Middle voice apparently from G3634; to make like (oneself), that is, imagine (be of the opinion): - suppose, think."]},{"k":"G3634","v":["οἷος","hoîos","hoy'-os","Probably akin to G3588, G3739, and G3745; such or what sort of (as a correlation or exclamation); especially the neuter (adverb) with the negative not so: - so (as), such as, what (manner of), which."]},{"k":"G3635","v":["ὀκνέω","oknéō","ok-neh'-o","From ὄκνος oknos (hesitation); to be slow (figuratively loath): - delay."]},{"k":"G3636","v":["ὀκνηρός","oknērós","ok-nay-ros'","From G3635; tardy, that is, indolent; (figuratively) irksome: - grievous, slothful."]},{"k":"G3637","v":["ὀκταήμερος","oktaḗmeros","ok-tah-ay'-mer-os","From G3638 and G2250; an eight day old person or act: - the eighth day."]},{"k":"G3638","v":["ὀκτώ","oktṓ","ok-to'","A primary numeral; “eight”: - eight."]},{"k":"G3639","v":["ὄλεθρος","ólethros","ol'-eth-ros","From ὄλλυμι ollumi a primary word (to destroy; a prolonged form); ruin, that is, death, punishment: - destruction."]},{"k":"G3640","v":["ὀλιγόπιστος","oligópistos","ol-ig-op'-is-tos","From G3641 and G4102; incredulous, that is, lacking confidence (in Christ): - of little faith."]},{"k":"G3641","v":["ὀλίγος","olígos","ol-ee'-gos","Of uncertain affinity; puny (in extent, degree, number, duration or value); especially neuter (adverbially) somewhat: - + almost, brief [-ly], few, (a) little, + long, a season, short, small, a while."]},{"k":"G3642","v":["ὀλιγόψυχος","oligópsychos","ol-ig-op'-soo-khos","From G3641 and G5590; little spirited, that is, faint hearted: - feebleminded."]},{"k":"G3643","v":["ὀλιγωρέω","oligōréō","ol-ig-o-reh'-o","From a compound of G3641 and ὤρα ōra (“care”); to have little regard for, that is, to disesteem: - despise."]},{"k":"G3644","v":["ὀλοθρευτής","olothreutḗs","ol-oth-ryoo-tace'","From G3645; a ruiner, that is, (specifically) a venomous serpent: - destroyer."]},{"k":"G3645","v":["ὀλοθρεύω","olothreúō","ol-oth-ryoo'-o","From G3639; to spoil, that is, slay: - destroy."]},{"k":"G3646","v":["ὁλοκαύτωμα","holokaútōma","hol-ok-ow'-to-mah","From a derivative of a compound of G3650 and a derivative of G2545; a wholly consumed sacrifice (“holocaust”): - (whole) burnt offering."]},{"k":"G3647","v":["ὁλοκληρία","holoklēría","hol-ok-lay-ree'-ah","From G3648; integrity, that is, physical wholeness: - perfect soundness."]},{"k":"G3648","v":["ὁλόκληρος","holóklēros","hol'-ok'-lay-ros","From G3650 and G2819; complete in every part, that is, perfectly sound (in body): - entire, whole."]},{"k":"G3649","v":["ὀλολύζω","ololýzō","ol-ol-odd'-zo","A reduplicated primary verb; to “howl” or “halloo”, that is, shriek: - howl."]},{"k":"G3650","v":["ὅλος","hólos","hol'-os","A primary word; “whole” or “all”, that is, complete (in extent, amount, time or degree), especially (neuter) as noun or adverb: - all, altogether, every whit, + throughout, whole."]},{"k":"G3651","v":["ὁλοτελής","holotelḗs","hol-ot-el-ace'","From G3650 and G5056; complete to the end, that is, absolutely perfect: - wholly."]},{"k":"G3652","v":["Ὀλυμπᾶς","Olympâs","ol-oom-pas'","Probably a contraction from Ὀλυμπιόδωρος Ŏlumpiodōros (Olympian bestowed, that is, heaven descended); Olympas, a Christian: - Olympas."]},{"k":"G3653","v":["ὄλυνθος","ólynthos","ol'-oon-thos","Of uncertain derivative; an unripe (because out of season) fig: - untimely fig."]},{"k":"G3654","v":["ὅλως","hólōs","hol'-oce","Adverb from G3650; completely, that is, altogether; (by analogy) everywhere; (negative) not by any means: - at all, commonly, utterly."]},{"k":"G3655","v":["ὄμβρος","ómbros","om'-bros","Of uncertain affinity; a thunder storm: - shower."]},{"k":"G3656","v":["ὁμιλέω","homiléō","hom-il-eh'-o","From G3658; to be in company with, that is, (by implication) to converse: - commune, talk."]},{"k":"G3657","v":["ὁμιλία","homilía","hom-il-ee'-ah","From G3658; companionship (“homily”), that is, (by implication) intercourse: - communication."]},{"k":"G3658","v":["ὅμιλος","hómilos","hom'-il-os","From the base of G3674 and a derivative of the alternate of G138 (meaning a crowd); association together, that is, a multitude: - company."]},{"k":"G3659","v":["ὄμμα","ómma","om'-mah","From G3700; a sight, that is, (by implication) the eye: - eye."]},{"k":"G3660","v":["ὀμνύω","omnýō","om-noo'-o","A prolonged form of a primary but obsolete word, ὄμω omō, for which another prolonged form (ὀμόω omoō    om-o'-o) is used in certain tenses. To swear, that is, take (or declare on) oath: - swear."]},{"k":"G3661","v":["ὁμοθυμαδόν","homothymadón","hom-oth-oo-mad-on'","Adverb from a compound of the base of G3674 and G2372; unanimously: - with one accord (mind)."]},{"k":"G3662","v":["ὁμοιάζω","homoiázō","hom-oy-ad'-zo","From G3664; to resemble: - agree."]},{"k":"G3663","v":["ὁμοιοπαθής","homoiopathḗs","hom-oy-op-ath-ace'","From G3664 and the alternate of G3958; similarly affected: - of (subject to) like passions."]},{"k":"G3664","v":["ὅμοιος","hómoios","hom'-oy-os","From the base of G3674; similar (in appearance or character): - like, + manner."]},{"k":"G3665","v":["ὁμοιότης","homoiótēs","hom-oy-ot'-ace","From G3664; resemblance: - like as, similitude."]},{"k":"G3666","v":["ὁμοιόω","homoióō","hom-oy-o'-o","From G3664; to assimilate, that is, compare; passively to become similar: - be (make) like, (in the) liken (-ess), resemble."]},{"k":"G3667","v":["ὁμοίωμα","homoíōma","hom-oy'-o-mah","From G3666; a form; abstractly resemblance: - made like to, likeness, shape, similitude."]},{"k":"G3668","v":["ὁμοίως","homoíōs","hom-oy'-oce","Adverb from G3664; similarly: - likewise, so."]},{"k":"G3669","v":["ὁμοίωσις","homoíōsis","hom-oy'-o-sis","From G3666; assimilation, that is, resemblance: - similitude."]},{"k":"G3670","v":["ὁμολογέω","homologéō","hom-ol-og-eh'-o","From a compound of the base of G3674 and G3056; to assent, that is, covenant, acknowledge: - con- (pro-) fess, confession is made, give thanks, promise."]},{"k":"G3671","v":["ὁμολογία","homología","hom-ol-og-ee'-ah","From the same as G3670; acknowledgment: - con- (pro-) fession, professed."]},{"k":"G3672","v":["ὁμολογουμένως","homologouménōs","hom-ol-og-ow-men'-oce","Adverb of present passive participle of G3670; confessedly: - without controversy."]},{"k":"G3673","v":["ὁμότεχνος","homótechnos","hom-ot'-ekh-nos","From the base of G3674 and G5078; a fellow artificer: - of the same craft."]},{"k":"G3674","v":["ὁμοῦ","homoû","hom-oo'","Genitive case of ὁμός homos (the same; akin to G260) as adverb; at the same place or time: - together."]},{"k":"G3675","v":["ὁμόφρων","homóphrōn","hom-of'-rone","From the base of G3674 and G5424; like minded, that is, harmonious: - of one mind."]},{"k":"G3676","v":["ὅμως","hómōs","hom'-oce","Adverb from the base of G3674; at the same time, that is, (conjugationally) notwithstanding, yet still: - and even, nevertheless, though but."]},{"k":"G3677","v":["ὄναρ","ónar","on'-ar","Of uncertain derivation; a dream: - dream."]},{"k":"G3678","v":["ὀνάριον","onárion","on-ar'-ee-on","Neuter of a presumed derivative of G3688; a little ass: - young ass."]},{"k":"G3679","v":["ὀνειδίζω","oneidízō","on-i-did'-zo","From G3681; to defame, that is, rail at, chide, taunt: - cast in teeth, (suffer) reproach, revile, upbraid."]},{"k":"G3680","v":["ὀνειδισμός","oneidismós","on-i-dis-mos'","From G3679; contumely: - reproach."]},{"k":"G3681","v":["ὄνειδος","óneidos","on'-i-dos","Probably akin to the base of G3686; notoriety, that is, a taunt (disgrace): - reproach."]},{"k":"G3682","v":["Ὀνήσιμος","Onḗsimos","on-ay'-sim-os","From G3685; profitable; Onesimus, a Christian: - Onesimus."]},{"k":"G3683","v":["Ὀνησίφορος","Onēsíphoros","on-ay-sif'-or-os","From a derivative of G3685 and G5411; profit bearer; Onesiphorus, a Christian: - Onesiphorus."]},{"k":"G3684","v":["ὀνικός","onikós","on-ik-os'","From G3688; belonging to an ass, that is, large (so as to be turned by an ass): - millstone."]},{"k":"G3685","v":["ὀνίνημι","onínēmi","on-in'-ay-mee","A prolonged form of an apparent primary verb ὄνομαι onomai; for which another prolonged form ὀνάω onaō is used as an alternate in some tenses (unless indeed it be identical with the base of G3686 through the idea of notoriety); to gratify, that is, (middle voice) to derive pleasure or advantage from: - have joy."]},{"k":"G3686","v":["ὄνομα","ónoma","on'-om-ah","From a presumed derivative of the base of G1097 (compare G3685); a “name” (literally or figuratively), (authority, character): - called, (+ sur-) name (-d)."]},{"k":"G3687","v":["ὀνομάζω","onomázō","on-om-ad'-zo","From G3686; to name, that is, assign an appellation; by extension to utter, mention, profess: - call, name."]},{"k":"G3688","v":["ὄνος","ónos","on'-os","Apparently a primary word; a donkey: - ass."]},{"k":"G3689","v":["ὄντως","óntōs","on'-toce","Adverb of the oblique cases of G5607; really: - certainly, clean, indeed, of a truth, verily."]},{"k":"G3690","v":["ὄξος","óxos","oz-os","From G3691; vinegar, that is, sour wine: - vinegar."]},{"k":"G3691","v":["ὀξύς","oxýs","oz-oos'","Probably akin to the base of G188 (“acid”); keen; by analogy rapid: - sharp, swift."]},{"k":"G3692","v":["ὀπή","opḗ","op-ay'","Probably from G3700; a hole (as if for light), that is, cavern; by analogy a spring (of water): - cave, place."]},{"k":"G3693","v":["ὄπισθεν","ópisthen","op'-is-then","From ὄπις opis (regard; from G3700) with enclitic of source; from the rear (as a secure aspect), that is, at the back (adverb and preposition of palce or time): - after, backside, behind."]},{"k":"G3694","v":["ὀπίσω","opísō","op-is'-o","From the same as G3693 with enclitic of direction; to the back, that is, aback (as adverb or preposition of time or place; or as noun): - after, back (-ward), (+ get) behind, + follow."]},{"k":"G3695","v":["ὁπλίζω","hoplízō","hop-lid'-zo","From G3696; to equip (with weapons [middle voice and figuratively]): - arm self."]},{"k":"G3696","v":["ὅπλον","hóplon","hop'-lon","Probably from the primary word ἕπω hepō(to be busy about); an implement or utensil or tool (literally or figuratively, especially offensive for war): - armour, instrument, weapon."]},{"k":"G3697","v":["ὁποῖος","hopoîos","hop-oy'-os","From G3739 and G4169; of what kind that, that is, how (as) great (excellent) (specifically as indefinite correlation to antecedent definitely G5108 of quality): - what manner (sort) of, such as, whatsoever."]},{"k":"G3698","v":["ὁπότε","hopóte","hop-ot'-eh","From G3739 and G4218; what (-ever) then, that is, (of time) as soon as: - when."]},{"k":"G3699","v":["ὅπου","hópou","hop'-oo","From G3739 and G4225; what (-ever) where, that is, at whichever spot: - in what place, where (-as, -soever), whither (+ soever)."]},{"k":"G3700","v":["ὀπτάνομαι","optánomai","op-tan'-om-ahee","The first a (middle voice) prolonged form of the second (primary) which is used for it in certain tenses; and both as alternates of G3708; to gaze (that is, with wide open eyes, as at something remarkable; and thus differing from G991, which denotes simply voluntary observation; and from G1492, which expresses merely mechanical, passive or casual vision; while G2300, and still more emphatically its intensive G2334, signifies an earnest but more continued inspection; and G4648 a watching from a distance): - appear, look, see, shew self."]},{"k":"G3701","v":["ὀπτασία","optasía","op-tas-ee'-ah","From a presumed derivative of G3700; visuality, that is, (concretely) an apparition: - vision."]},{"k":"G3702","v":["ὀπτός","optós","op-tos'","From an obsolete verb akin to ἕψω hepsō (to steep); cooked, that is, roasted: - broiled."]},{"k":"G3703","v":["ὀπώρα","opṓra","op-o'-rah","Apparently from the base of G3796 and G5610; properly even tide of the (summer) season (dog days), that is, (by implication) ripe fruit: - fruit."]},{"k":"G3704","v":["ὅπως","hópōs","hop'-oce","From G3739 nad G4459; what (-ever) how, that is, in the manner that (as adverb or conjugation of coincidence, intentional or actual): - because, how, (so) that, to, when."]},{"k":"G3705","v":["ὅραμα","hórama","hor'-am-ah","From G3708; something gazed at, that is, a spectacle (especially supernatural): - sight, vision."]},{"k":"G3706","v":["ὅρασις","hórasis","hor'-as-is","From G3708; the act of gazing, that is, (external) an aspect or (internal) an inspired appearance: - sight, vision."]},{"k":"G3707","v":["ὁρατός","horatós","hor-at-os'","From G3708; gazed at, that is, (by implication) capable of being seen: - visible."]},{"k":"G3708","v":["ὁράω","horáō","hor-ah'-o","Properly to stare at (compare G3700), that is, (by implication) to discern clearly (physically or mentally); by extension to attend to; by Hebraism to experience; passively to appear: - behold, perceive, see, take heed."]},{"k":"G3709","v":["ὀργή","orgḗ","or-gay'","From G3713; properly desire (as a reaching forth or excitement of the mind), that is, (by analogy) violent passion (ire, or [justifiable] abhorrence); by implication punishment: - anger, indignation, vengeance, wrath."]},{"k":"G3710","v":["ὀργίζω","orgízō","or-gid'-zo","From G3709; to provoke or enrage, that is, (passively) become exasperated: - be angry (wroth)."]},{"k":"G3711","v":["ὀργίλος","orgílos","org-ee'-los","From G3709; irascible: - soon angry."]},{"k":"G3712","v":["ὀργυιά","orguiá","org-wee-ah'","From G3713; a stretch of the arms, that is, a fathom: - fathom."]},{"k":"G3713","v":["ὀρέγομαι","orégomai","or-eg'-om-ahee","Middle voice of apparently a prolonged form of an obsolete primary (compare G3735); to stretch oneself, that is, reach out after (long for): - covet after, desire."]},{"k":"G3714","v":["ὀρεινός","oreinós","or-i-nos","From G3735; mountainous, that is, (feminine by implication of G5561) the Highlands (of Judaea): - hill country."]},{"k":"G3715","v":["ὄρεξις","órexis","or'-ex-is","From G3713; excitement of the mind, that is, longing after: - lust."]},{"k":"G3716","v":["ὀρθοποδέω","orthopodéō","or-thop-od-eh'-o","From a compound of G3717 and G4228; to be straight footed, that is, (figuratively) to go directly forward: - walk uprightly."]},{"k":"G3717","v":["ὀρθός","orthós","or-thos'","Probably from the base of G3735; right (as rising), that is, (perpendicularly) erect (figuratively honest), or (horizontally) level or direct: - straight, upright."]},{"k":"G3718","v":["ὀρθοτομέω","orthotoméō","or-thot-om-eh'-o","From a compound of G3717 and the base of G5114; to make a straight cut, that is, (figuratively) to dissect (expound) correctly (the divine message): - rightly divide."]},{"k":"G3719","v":["ὀρθρίζω","orthrízō","or-thrid'-zo","From G3722; to use the dawn, that is, (by implication) to repair betimes: - come early in the morning."]},{"k":"G3720","v":["ὀρθρινός","orthrinós","or-thrin-os'","From G3722; relating to the dawn, that is, matutinal (as an epithet of Venus, especially brilliant in the early day): - morning."]},{"k":"G3721","v":["ὄρθριος","órthrios","or'-three-os","From G3722; in the dawn, that is, up at day break: - early."]},{"k":"G3722","v":["ὄρθρος","órthros","or'-thros","From the same as G3735; dawn (as sun rise, rising of light); by extension morn: - early in the morning."]},{"k":"G3723","v":["ὀρθῶς","orthōs","or-thoce'","Adverb from G3717; in a straight manner, that is, (figuratively) correctly (also morally): - plain, right (-ly)."]},{"k":"G3724","v":["ὁρίζω","horízō","hor-id'-zo","From G3725; to mark out or bound (“horizon”), that is, (figuratively) to appoint, decree, specify: - declare, determine, limit, ordain."]},{"k":"G3725","v":["ὅριον","hórion","hor'-ee-on","Neuter of a derivative of an apparently primary word ὅρος horos (a bound or limit); a boundary line, that is, (by implication) a frontier (region): - border, coast."]},{"k":"G3726","v":["ὁρκίζω","horkízō","hor-kid'-zo","From G3727; to put on oath, that is, make swear; by analogy to solemnly enjoin: - adjure, charge."]},{"k":"G3727","v":["ὅρκος","hórkos","hor'-kos","From ἕρκος herkos (a fence; perhaps akin to G3725); a limit, that is, (sacred) restraint (specifically oath): - oath."]},{"k":"G3728","v":["ὁρκωμοσία","horkōmosía","hor-ko-mos-ee'ah","From a compound of G3727 and a derivative of G3660; asseveration on oath: - oath."]},{"k":"G3729","v":["ὁρμάω","hormáō","hor-mah'-o","From G3730; to start, spur or urge on, that is, (reflexively) to dash or plunge: - run (violently), rush."]},{"k":"G3730","v":["ὁρμή","hormḗ","hor-may'","Of uncertain affinity; a violent impulse, that is, onset: - assault."]},{"k":"G3731","v":["ὅρμημα","hórmēma","hor'-may-mah","From G3730; an attack, that is, (abstractly) precipitancy: - violence."]},{"k":"G3732","v":["ὄρνεον","órneon","or'-neh-on","Neuter of a presumed derivative of G3733; a birdling: - bird, fowl."]},{"k":"G3733","v":["ὄρνις","órnis","or'-nis","Probably from a prolonged form of the base of G3735; a bird (as rising in the air), that is, (specifically) a hen (or female domestic fowl): - hen."]},{"k":"G3734","v":["ὁροθεσία","horothesía","hor-oth-es-ee'-ah","From a compound of the base of G3725 and a derivative of G5087; a limit placing, that is, (concretely) boundary line: - bound."]},{"k":"G3735","v":["ὄρος","óros","or'-os","Probably a from an obsolete word ὄρω orō (to rise or “rear”; perhaps akin to G142; compare G3733); a mountain (as lifting itself above the plain): - hill, mount (-ain)."]},{"k":"G3736","v":["ὀρύσσω","orýssō","or-oos'-so","Apparently a primary verb; to “burrow” in the ground, that is, dig: - dig."]},{"k":"G3737","v":["ὀρφανός","orphanós","or-fan-os'","Of uncertain affinity; bereaved (“orphan”), that is, parentless: - comfortless, fatherless."]},{"k":"G3738","v":["ὀρχέομαι","orchéomai","or-kheh'-om-ahee","Middle voice from όρχος orchos (a row or ring); to dance (from the ranklike or regular motion): - dance."]},{"k":"G3739","v":["ὅς","hós","hos","Probably a primary word (or perhaps a form of the article G3588); the relative (sometimes demonstrative) pronoun, who, which, what, that: - one, (an-, the) other, some, that, what, which, who (-m, -se), etc. See also G3757."]},{"k":"G3740","v":["ὁσάκις","hosákis","hos-ak'-is","Multiple adverb from G3739; how (that is, with G302, so) many times as: - as oft (-en) as."]},{"k":"G3741","v":["ὅσιος","hósios","hos'-ee-os","Of uncertain affinity; properly right (by intrinsic or divine character; thus distinguished from G1342, which refers rather to human statutes and relations; from G2413, which denotes formal consecration; and from G40, which relates to purity from defilement), that is, hallowed (pious, sacred, sure): - holy, mercy, shalt be."]},{"k":"G3742","v":["ὁσιότης","hosiótēs","hos-ee-ot'-ace","From G3741; piety: - holiness."]},{"k":"G3743","v":["ὁσίως","hosíōs","hos-ee-oce'","Adverb from G3741; piously: - holily."]},{"k":"G3744","v":["ὀσμή","osmḗ","os-may'","From G3605; fragrance (literally or figuratively): - odour, savour."]},{"k":"G3745","v":["ὅσος","hósos","hos'-os","By reduplication from G3739; as (much, great, long, etc.) as: - all (that), as (long, many, much) (as), how great (many, much), [in-] asmuch as, so many as, that (ever), the more, those things, what (great, -soever), wheresoever, wherewithsoever, which, X while, who (-soever)."]},{"k":"G3746","v":["ὅσπερ","hósper","hos'-per","From G3739 and G4007; who especially: - whomsoever."]},{"k":"G3747","v":["ὀστέον","ostéon","os-teh'-on","Of uncertain affinity; a bone: - bone."]},{"k":"G3748","v":["ὅστις","hóstis","hos'-tis","From G3739 and G5100; which some, that is, any that; also (definitely) which same: - X and (they), (such) as, (they) that, in that they, what (-soever), whereas ye, (they) which, who (-soever). Compare G3754."]},{"k":"G3749","v":["ὀστράκινος","ostrákinos","os-tra'-kin-os","From ὄστρακον ostrakon (“oyster”), (a tile, that is, terra cotta); earthen ware, that is, clayey; by implication frail: - of earth, earthen."]},{"k":"G3750","v":["ὄσφρησις","ósphrēsis","os'-fray-sis","From a derivative of G3605; smell (the sense): - smelling."]},{"k":"G3751","v":["ὀσφῦς","osphŷs","os-foos'","Of uncertain affinity; the loin (externally), that is, the hip; internally (by extension) procreative power: - loin."]},{"k":"G3752","v":["ὅταν","hótan","hot'-an","From G3753 and G302; whenever (implying hypothesis or more or less uncertainty); also causative (conjugationally) inasmuch as: - as long (soon) as, that, + till, when (-soever), while."]},{"k":"G3753","v":["ὅτε","hóte","hot'-eh","From G3739 and G5037; at which (thing) too, that is, when: - after (that), as soon as, that, when, while."]},{"k":"G3754","v":["ὅτι","hóti","hot'-ee","Neuter of G3748 as conjugation; demonstrative that (sometimes redundant); causatively because: - as concerning that, as though, because (that), for (that), how (that), (in) that, though, why."]},{"k":"G3755","v":["ὅτου","hótou","hot'-oo","From the genitive case of G3748 (as adverb); during which same time, that is, whilst: - whiles."]},{"k":"G3756","v":["οὐ","ou","oo","Also οὐκ ouk ook used before a vowel and οὐχ ouch ookh before an aspirate. A primary word; the absolutely negative (compare G3361) adverb; no or not: - + long, nay, neither, never, no (X man), none, [can-] not, + nothing, + special, un ([-worthy]), when, + without, + yet but. See also G3364, G3372."]},{"k":"G3757","v":["οὗ","hoû","hoo","Genitive case of G3739 as adverb; at which place, that is, where: - where (-in), whither ([-soever])."]},{"k":"G3758","v":["οὐά","ouá","oo-ah'","A primary exclamation of surprise; “ah”: - ah."]},{"k":"G3759","v":["οὐαί","ouaí","oo-ah'-ee","A primary excamation of grief; “woe”: - alas, woe."]},{"k":"G3760","v":["οὐδαμῶς","oudamōs","oo-dam-oce'","Adverb from (the feminine) of G3762; by no means: - not."]},{"k":"G3761","v":["οὐδέ","oudé","oo-deh'","From G3756 and G1161; not however, that is, neither, nor, not even: - neither (indeed), never, no (more, nor, not), nor (yet), (also, even, then) not (even, so much as), + nothing, so much as."]},{"k":"G3762","v":["οὐδείς","oudeís","oo-dice'","Including the feminine οὐδεμία oudemiaoo-dem-ee'-ah and the neuter οὐδέν ouden oo-den'. From G3761 and G1520; not even one (man woman or thing) that is none: nobody nothing: - any (man) aught man neither any (thing) never (man) no (man) none (+ of these things) not (any at all -thing) nought."]},{"k":"G3763","v":["οὐδέποτε","oudépote","oo-dep'-ot-eh","From G3761 and G4218; not even at any time, that is, never at all: - neither at any time, never, nothing at any time."]},{"k":"G3764","v":["οὐδέπω","oudépō","oo-dep'-o","From G3761 and G4452; not even yet: - as yet not, never before (yet), (not) yet."]},{"k":"G3765","v":["οὐκέτι","oukéti","ook-et'-ee","Also (separately) οὐκ ἔτι ouk eti ook et'-ee. From G3756 and G2089; not yet, no longer: - after that (not), (not) any more, henceforth (hereafter), not, no longer (more), not as yet (now), now no more (not), yet (not)."]},{"k":"G3766","v":["οὐκοῦν","oukoûn","ook-oon'","From G3756 and G3767; is it not therefore that, that is, (affirmatively) hence or so: - then."]},{"k":"G3767","v":["οὖν","oûn","oon","Apparently a primary word; (adverbially) certainly, or (conjugationally) accordingly: - and (so, truly), but, now (then), so (likewise then), then, therefore, verily, wherefore."]},{"k":"G3768","v":["οὔπω","oúpō","oo'-po","From G3756 and G4452; not yet: - hitherto not, (no . . .) as yet, not yet."]},{"k":"G3769","v":["οὐρά","ourá","oo-rah'","Apparently a primary word; a tail: - tail."]},{"k":"G3770","v":["οὐράνιος","ouránios","oo-ran'-ee-os","From G3772; celestial, that is, belonging to or coming from the sky: - heavenly."]},{"k":"G3771","v":["οὐρανόθεν","ouranóthen","oo-ran-oth'-en","From G3772 and the enclitic of source; from the sky: - from heaven."]},{"k":"G3772","v":["οὐρανός","ouranós","oo-ran-os'","Perhaps from the same as G3735 (through the idea of elevation); the sky; by extension heaven (as the abode of God); by implication happiness, power, eternity; specifically the Gospel (Christianity): - air, heaven ([-ly]), sky."]},{"k":"G3773","v":["Οὐρβανός","Ourbanós","oor-ban-os'","Of Latin origin; Urbanus (of the city, “urbane”), a Christian: - Urbanus."]},{"k":"G3774","v":["Οὐρίας","Ourías","oo-ree'-as","Of Hebrew origin [H223]; Urias (that is, Urijah), a Hittite: - Urias."]},{"k":"G3775","v":["οὖς","oûs","ooce","Apparently a primary word; the ear (physically or mentally): - ear."]},{"k":"G3776","v":["οὐσία","ousía","oo-see'-ah","From the feminine of G5607; substance, that is, property (possessions): - goods, substance."]},{"k":"G3777","v":["οὔτε","oúte","oo'-teh","From G3756 and G5037; not too, that is, neither or nor; by analogy not even: - neither, none, nor (yet), (no, yet) not, nothing."]},{"k":"G3778","v":["οὗτος","hoûtos","hoo'-tos","Including the nominative masculine plural (second form), nominative feminine signular (third form), and the nominate feminine plural, (fourth form). From the article G3588 and G846; the he (she or it), that is, this or that (often with the article repeated): - he (it was that), hereof, it, she, such as, the same, these, they, this (man, same, woman), which, who."]},{"k":"G3779","v":["οὕτω","hoútō","hoo'-to","Or, before a vowel, οὕτως houtōs hoo'-toce. From G3778; in this way (referring to what precedes or follows): - after that, after (in) this manner, as, even (so), for all that, like (-wise), no more, on this fashion (-wise), so (in like manner), thus, what."]},{"k":"G3780","v":["οὐχί","ouchí","oo-khee'","Intensive of G3756; not indeed: - nay, not."]},{"k":"G3781","v":["ὀφειλέτης","opheilétēs","of-i-let'-ace","From G3784; an ower, that is, a person indebted; figuratively a delinquent; morally a transgressor (against God): - debtor, which owed, sinner."]},{"k":"G3782","v":["ὀφειλή","opheilḗ","of-i-lay'","From G3784; indebtedness, that is, (concretely) a sum owed; figuratively obligation, that is, (conjugal) duty: - debt, due."]},{"k":"G3783","v":["ὀφείλημα","opheílēma","of-i'-lay-mah","From (the alternate of) G3784; something owed, that is, (figuratively) a due.; morally a fault: - debt."]},{"k":"G3784","v":["ὀφείλω","opheílō","of-i'-lo","Including its prolonged form (second form) used in certain tenses. Probably from the base of G3786 (through the idea of accruing); to owe (pecuniarily); figuratively to be under obligation (ought, must, should); morally to fail in duty: - behove, be bound, (be) debt (-or), (be) due (-ty), be guilty (indebted), (must) need (-s), ought, owe, should. See also G3785."]},{"k":"G3785","v":["ὄφελον","óphelon","of'-el-on","First person singular of a past tense of G3784; I ought (wish), that is, (interjectionally) oh that!: - would (to God)."]},{"k":"G3786","v":["ὄφελος","óphelos","of'-el-os","From ὀφέλλω ophellō (to heap up, that is, accumulate or benefit); gain: - advantageth, profit."]},{"k":"G3787","v":["ὀφθαλμοδουλεία","ophthalmodouleía","of-thal-mod-oo-li'-ah","From G3788 and G1397; sight labor, that is, that needs watching (remissness): - eye-service."]},{"k":"G3788","v":["ὀφθαλμός","ophthalmós","of-thal-mos'","From G3700; the eye (literally or figuratively); by implication vision; figuratively envy (from the jealous side glance): - eye, sight."]},{"k":"G3789","v":["ὄφις","óphis","of'-is","Probably from G3700 (through the idea of sharpness of vision); a snake, figuratively (as a type of sly cunning) an artful malicious person, especially Satan: - serpent."]},{"k":"G3790","v":["ὀφρῦς","ophrŷs","of-roos'","Perhaps from G3700 (through the idea of the shading or proximity to the organ of vision); the eye “brow” or forehead, that is, (figuratively) the brink of a precipice: - brow."]},{"k":"G3791","v":["ὀχλέω","ochléō","okh-leh'-o","From G3793; to mob, that is, (by implication) to harass: - vex."]},{"k":"G3792","v":["ὀχλοποιέω","ochlopoiéō","okh-lop-oy-eh'-o","From G3793 and G4160; to make a crowd, that is, raise a public disturbance: - gather a company."]},{"k":"G3793","v":["ὄχλος","óchlos","okh'los","From a derivative of G2192 (meaning a vehicle); a throng (as borne along); by implication the rabble; by extension a class of people; figuratively a riot: - company, multitude, number (of people), people, press."]},{"k":"G3794","v":["ὀχύρωμα","ochýrōma","okh-oo'-ro-mah","From a remote derivative of G2192 (meaning to fortify, through the idea of holding safely); a castle (figuratively argument): - stronghold."]},{"k":"G3795","v":["ὀψάριον","opsárion","op-sar'-ee-on","Neuter of a presumed derivative of the base of G3702; a relish to other food (as if cooked sauce), that is, (specifically) fish (presumably salted and dried as a condiment): - fish."]},{"k":"G3796","v":["ὀψέ","opsé","op-seh'","From the same as G3694 (through the idea of backwardness); (adverbially) late in the day; by extension after the close of the day: - (at) even, in the end."]},{"k":"G3797","v":["ὄψιμος","ópsimos","op'-sim-os","From G3796; later, that is, vernal (showering): - latter."]},{"k":"G3798","v":["ὄψιος","ópsios","op'-see-os","From G3796; late; feminine (as noun) afternoon (early eve) or nightfall (later eve): - even (-ing, [-tide])."]},{"k":"G3799","v":["ὄψις","ópsis","op'-sis","From G3700; properly sight (the act), that is, (by implication) the visage, an external show: - appearance, countenance, face."]},{"k":"G3800","v":["ὀψώνιον","opsṓnion","op-so'-nee-on","Neuter of a presumed derivative of the same as G3795; rations for a soldier, that is, (by extension) his stipend or pay: - wages."]},{"k":"G3801","v":["ὁ ὢν καί ὁ ἦν καί ὁ ἐρχόμενος","ho ṑn kaí ho ēn kaí ho erchómenos","ho own kahee ho ane kahee ho er-khom'-en-os","A phrase combining G3588 with the present participle and imperfect of G1510 and the present participle of G2064 by means of G2532; the one being and the one that was and the one coming, that is, the Eternal, as a divine epithet of Christ. (Each “and” (G2532) was ommited from the phrase because of limited space.): - which art (is, was), and (which) wast (is, was), and art (is) to come (shalt be)."]},{"k":"G3802","v":["παγιδεύω","pagideúō","pag-id-yoo'-o","From G3803; to ensnare (figuratively): - entangle."]},{"k":"G3803","v":["παγίς","pagís","pag-ece'","From G4078; a trap (as fastened by a noose or notch); figuratively a trick or stratagem (temptation): - snare"]},{"k":"G3804","v":["πάθημα","páthēma","path'-ay-mah","From a presumed derivative of G3806; something undergone, that is, hardship or pain; subjectively an emotion or influence: - affection, affliction, motion, suffering."]},{"k":"G3805","v":["παθητός","pathētós","path-ay-tos'","From the same as G3804; liable (that is, doomed) to experience pain: - suffer."]},{"k":"G3806","v":["πάθος","páthos","path'-os","From the alternate of G3958; properly suffering (“pathos”), that is, (subjectively) a passion (especially concupiscence): - (inordinate) affection, lust."]},{"k":"G3807","v":["παιδαγωγός","paidagōgós","pahee-dag-o-gos'","From G3816 and a reduplication form of G71; a boy leader, that is, a servant whose office it was to take the children to school; (by implication [figuratively] a tutor [“paedagogue”]): - instructor, schoolmaster."]},{"k":"G3808","v":["παιδάριον","paidárion","pahee-dar'-ee-on","Neuter of a presumed derivative of G3816; a little boy: - child, lad."]},{"k":"G3809","v":["παιδεία","paideía","pahee-di'-ah","From G3811; tutorage, that is, education or training; by implication disciplinary correction: - chastening, chastisement, instruction, nurture."]},{"k":"G3810","v":["παιδευτής","paideutḗs","pahee-dyoo-tace'","From G3811; a trainer, that is, teacher or (by implication) discipliner: - which corrected, instructor."]},{"k":"G3811","v":["παιδεύω","paideúō","pahee-dyoo'-o","From G3816; to train up a child, that is, educate, or (by implication) discipline (by punishment): - chasten (-ise), instruct, learn, teach."]},{"k":"G3812","v":["παιδιόθεν","paidióthen","pahee-dee-oth'-en","Adverb (of source) from G3813; from infancy: - of a child."]},{"k":"G3813","v":["παιδίον","paidíon","pahee-dee'-on","Neuter diminutive of G3816; a childling (of either sex), that is, (properly) an infant, or (by extension) a half grown boy or girl; figuratively an immature Christian: - (little, young) child, damsel."]},{"k":"G3814","v":["παιδίσκη","paidískē","pahee-dis'-kay","Feminine diminutive of G3816; a girl, that is, (specifically) a female slave or servant: - bondmaid (-woman), damsel, maid (-en)."]},{"k":"G3815","v":["παίζω","paízō","paheed'-zo","From G3816; to sport (as a boy): - play."]},{"k":"G3816","v":["παῖς","paîs","paheece","Perhaps from G3817; a boy (as often beaten with impunity), or (by analogy) a girl, and (generally) a child; specifically a slave or servant (especially a minister to a king; and by eminence to God): - child, maid (-en), (man) servant, son, young man."]},{"k":"G3817","v":["παίω","paíō","pah'-yo","A primary verb; to hit (as if by a single blow and less violently than G5180); specifically to sting (as a scorpion): - smite, strike."]},{"k":"G3818","v":["Πακατιανή","Pakatianḗ","pak-at-ee-an-ay'","Feminine of an adjective of uncertain derivation; Pacatianian, a section of Phrygia: - Pacatiana."]},{"k":"G3819","v":["πάλαι","pálai","pal'-ahee","Probably another form for G3825 (through the idea of retrocession); (adverbially) formerly, or (relatively) sometime since; (elliptically as adjective) ancient: - any while, a great while ago, (of) old, in time past."]},{"k":"G3820","v":["παλαιός","palaiós","pal-ah-yos'","From G3819; antique, that is, not recent, worn out: - old."]},{"k":"G3821","v":["παλαιότης","palaiótēs","pal-ah-yot'-ace","From G3820; antiquatedness: - oldness."]},{"k":"G3822","v":["παλαιόω","palaióō","pal-ah-yo'-o","From G3820; to make (passively become) worn out, or declare obsolete: - decay, make (wax) old."]},{"k":"G3823","v":["πάλη","pálē","pal'-ay","From πάλλω pallō (to vibrate; another form for G906); wrestling: - + wrestle."]},{"k":"G3824","v":["παλιγγενεσία","palingenesía","pal-ing-ghen-es-ee'-ah","From G3825 and G1078; (spiritual) rebirth (the state or the act), that is, (figuratively) spiritual renovation; specifically Messianic restoration: - regeneration."]},{"k":"G3825","v":["πάλιν","pálin","pal'-in","Probably from the same as G3823 (through the idea of oscillatory repetition); (adverbially) anew, that is, (of place) back, (of time) once more, or (conjugationally) furthermore or on the other hand: - again."]},{"k":"G3826","v":["παμπληθεί","pamplētheí","pam-play-thi'","Dative case (adverb) of a compound of G3956 and G4128; in full multitude, that is, concertedly or simultaneously: - all at once."]},{"k":"G3827","v":["πάμπολυς","pámpolys","pam-pol-ooce","From G3956 and G4183; full many, that is, immense: - very great."]},{"k":"G3828","v":["Παμφυλία","Pamphylía","pam-fool-ee'-ah","From a compound of G3956 and G5443; every tribal, that is, heterogeneous (G5561 being implied); Pamphylia, a region of Asia Minor: - Pamphylia."]},{"k":"G3829","v":["πανδοχεῖον","pandocheîon","pan-dokk-i'-on","Neuter of a presumed compound of G3956 and a derivative of G1209; all receptive, that is, a public lodging place (caravanserai or khan): - inn."]},{"k":"G3830","v":["πανδοχεύς","pandocheús","pan-dokh-yoos'","From the same as G3829; an innkeeper (warden of a caravanserai): - host."]},{"k":"G3831","v":["πανήγυρις","panḗgyris","pan-ay'-goo-ris","From G3956 and a derivative of G58; a mass meeting, that is, (figuratively) universal companionship: - general assembly."]},{"k":"G3832","v":["πανοικί","panoikí","pan-oy-kee'","Adverb from G3956 and G3624; with the whole family: - with all his house."]},{"k":"G3833","v":["πανοπλία","panoplía","pan-op-lee'-ah","From a compound of G3956 and G3696; full armor (“panoply”): - all (whole) armour."]},{"k":"G3834","v":["πανουργία","panourgía","pan-oorg-ee'-ah","From G3835; adroitness, that is, (in a bad sense) trickery or sophistry: - (cunning) craftiness, subtilty."]},{"k":"G3835","v":["πανοῦργος","panoûrgos","pan-oor'-gos","From G3956 and G2041; all working, that is, adroit (shrewd): - crafty."]},{"k":"G3836","v":["πανταχόθεν","pantachóthen","pan-takh-oth'-en","Adverb (of source) from G3837; from all directions: - from every quarter."]},{"k":"G3837","v":["πανταχοῦ","pantachoû","pan-takh-oo'","Genitive case (as adverb of place) of a presumed derivative of G3956; universally: - in all places, everywhere."]},{"k":"G3838","v":["παντελής","pantelḗs","pan-tel-ace'","From G3956 and G5056; full ended, that is, entire (neuter as noun, completion): -    + in [no] wise, uttermost."]},{"k":"G3839","v":["πάντη","pántē","pan'-tay","Adverb (of manner) from G3956; wholly: - always."]},{"k":"G3840","v":["πάντοθεν","pántothen","pan-toth'-en","Adverb (of source) from G3956; from (that is, on) all sides: - on every side, round about."]},{"k":"G3841","v":["παντοκράτωρ","pantokrátōr","pan-tok-rat'-ore","From G3956 and G2904; the all ruling, that is, God (as absolute and universal sovereign): - Almighty, Omnipotent."]},{"k":"G3842","v":["πάντοτε","pántote","pan'-tot-eh","From G3956 and G3753; every when, that is, at all times: - always (-s), ever (-more)."]},{"k":"G3843","v":["πάντως","pántōs","pan'-toce","From G3956; entirely; specifically at all events, (with negative following) in no event: - by all means, altogether, at all, needs, no doubt, in [no] wise, surely."]},{"k":"G3844","v":["παρά","pará","par-ah'","A primary preposition; properly near, that is, (with genitive case) from beside (literally or figuratively), (with dative case) at (or in) the vicinity of (objectively or subjectively), (with accusative case) to the proximity with (local [especially beyond or opposed to] or causal [on account of]). In compounds it retains the same variety of application: - above, against, among, at, before, by, contrary to, X friend, from, + give [such things as they], + that [she] had, X his, in, more than, nigh unto, (out) of, past, save, side . . . by, in the sight of, than, [there-] fore, with. In compounds it retains the same variety of application."]},{"k":"G3845","v":["παραβαίνω","parabaínō","par-ab-ah'-ee-no","From G3844 and the base of G939; to go contrary to, that is, violate a command: - (by) transgress (-ion)."]},{"k":"G3846","v":["παραβάλλω","parabállō","par-ab-al'-lo","From G3844 and G906; to throw alongside, that is, (reflexively) to reach a place, or (figuratively) to liken: - arrive, compare."]},{"k":"G3847","v":["παράβασις","parábasis","par-ab'-as-is","From G3845; violation: - breaking, transgression."]},{"k":"G3848","v":["παραβάτης","parabátēs","par-ab-at'-ace","From G3845; a violator: - breaker, transgress (-or)."]},{"k":"G3849","v":["παραβιάζομαι","parabiázomai","par-ab-ee-ad'-zom-ahee","From G3844 and the middle voice of G971; to force contrary to (nature), that is, compel (by entreaty): - constrain."]},{"k":"G3850","v":["παραβολή","parabolḗ","par-ab-ol-ay'","From G3846; a similitude (“parable”), that is, (symbolically) fictitious narrative (of common life conveying a moral), apoth gm or adage: - comparison, figure, parable, proverb."]},{"k":"G3851","v":["παραβουλεύομαι","parabouleúomai","par-ab-ool-yoo'-om-ahee","From G3844 and the middle of G1011; to misconsult, that is, disregard: - not (to) regard (-ing)."]},{"k":"G3852","v":["παραγγελία","parangelía","par-ang-gel-ee'-ah","From G3853; a mandate: - charge, command."]},{"k":"G3853","v":["παραγγέλλω","parangéllō","par-ang-gel'-lo","From G3844 and the base of G32; to transmit a message, that is, (by implication) to enjoin: - (give in) charge, (give) command (-ment), declare."]},{"k":"G3854","v":["παραγίνομαι","paragínomai","par-ag-in'-om-ahee","From G3844 and G1096; to become near, that is, approach (have arrived); by implication to appear publicly: - come, go, be present."]},{"k":"G3855","v":["παράγω","parágō","par-ag'-o","From G3844 and G71; to lead near, that is, (reflexively or intransitively) to go along or away: - depart, pass (away, by, forth)."]},{"k":"G3856","v":["παραδειγματίζω","paradeigmatízō","par-ad-igue-mat-id'-zo","From G3844 and G1165; to show alongside (the public), that is, expose to infamy: - make a public example, put to an open shame."]},{"k":"G3857","v":["παράδεισος","parádeisos","par-ad'-i-sos","Of Oriental origin (compare [H6508]); a park, that is, (specifically) an Eden (place of future happiness, “paradise”): - paradise."]},{"k":"G3858","v":["παραδέχομαι","paradéchomai","par-ad-ekh'-om-ahee","From G3844 and G1209; to accept near, that is, admit or (by implication) delight in: - receive."]},{"k":"G3859","v":["παραδιατριβή","paradiatribḗ","par-ad-ee-at-ree-bay'","From a compound of G3844 and G1304; misemployment, that is, meddlesomeness: - perverse disputing."]},{"k":"G3860","v":["παραδίδωμι","paradídōmi","par-ad-id'-o-mee","From G3844 and G1325; to surrender, that is, yield up, intrust, transmit: - betray, bring forth, cast, commit, deliver (up), give (over, up), hazard, put in prison, recommend."]},{"k":"G3861","v":["παράδοξος","parádoxos","par-ad'-ox-os","From G3844 and G1391 (in the sense of seeming); contrary to expectation, that is, extraordinary (“paradox”): - strange."]},{"k":"G3862","v":["παράδοσις","parádosis","par-ad'-os-is","From G3860; transmission, that is, (concretely) a precept; specifically the Jewish traditionary law: - ordinance, tradition."]},{"k":"G3863","v":["παραζηλόω","parazēlóō","par-ad-zay-lo'-o","From G3844 and G2206; to stimulate alongside, that is, excite to rivalry: - provoke to emulation (jealousy)."]},{"k":"G3864","v":["παραθαλάσσιος","parathalássios","par-ath-al-as'-see-os","From G3844 and G2281; along the sea, that is, maritime (lacustrine): - upon the sea coast."]},{"k":"G3865","v":["παραθεωρέω","paratheōréō","par-ath-eh-o-reh'-o","From G3844 and G2334; to overlook or disregard: - neglect."]},{"k":"G3866","v":["παραθήκη","parathḗkē","par-ath-ay'-kay","From G3908; a deposit, that is, (figuratively) trust: - committed unto."]},{"k":"G3867","v":["παραινέω","parainéō","par-ahee-neh'-o","From G3844 and G134; to mispraise, that is, recommend or advise (a different course): - admonish, exhort."]},{"k":"G3868","v":["παραιτέομαι","paraitéomai","par-ahee-teh'-om-ahee","From G3844 and the middle of G154; to beg off, that is, deprecate, decline, shun: - avoid, (make) excuse, intreat, refuse, reject."]},{"k":"G3869","v":["παρακαθίζω","parakathízō","par-ak-ath-id'-zo","From G3844 and G2523; to sit down near: - sit."]},{"k":"G3870","v":["παρακαλέω","parakaléō","par-ak-al-eh'-o","From G3844 and G2564; to call near, that is, invite, invoke (by imploration, hortation or consolation): - beseech, call for, (be of good) comfort, desire, (give) exhort (-ation), intreat, pray."]},{"k":"G3871","v":["παρακαλύπτω","parakalýptō","par-ak-al-oop'-to","From G3844 and G2572; to cover alongside, that is, veil (figuratively): - hide."]},{"k":"G3872","v":["παρακαταθήκη","parakatathḗkē","par-ak-at-ath-ay'-kay","From a compound of G3844 and G2698; something put down alongside, that is, a deposit (sacred trust): - that (thing) which is committed (un-) to (trust)."]},{"k":"G3873","v":["παράκειμαι","parákeimai","par-ak'-i-mahee","From G3844 and G2749; to lie near, that is, be at hand (figuratively be prompt or easy): - be present."]},{"k":"G3874","v":["παράκλησις","paráklēsis","par-ak'-lay-sis","From G3870; imploration, hortation, solace: - comfort, consolation, exhortation, intreaty."]},{"k":"G3875","v":["παράκλητος","paráklētos","par-ak'-lay-tos","An intercessor, consoler: - advocate, comforter."]},{"k":"G3876","v":["παρακοή","parakoḗ","par-ak-o-ay'","From G3878; inattention, that is, (by implication) disobedience: - disobedience."]},{"k":"G3877","v":["παρακολουθέω","parakolouthéō","par-ak-ol-oo-theh'-o","From G3844 and G190; to follow near, that is, (figuratively) attend (as a result), trace out, conform to: - attain, follow, fully know, have understanding."]},{"k":"G3878","v":["παρακούω","parakoúō","par-ak-oo'-o","From G3844 and G191; to mishear, that is, (by implication) to disobey: - neglect to hear."]},{"k":"G3879","v":["παρακύπτω","parakýptō","par-ak-oop'-to","From G3844 and G2955; to bend beside, that is, lean over (so as to peer within): - look (into), stoop down."]},{"k":"G3880","v":["παραλαμβάνω","paralambánō","par-al-am-ban'-o","From G3844 and G2983; to receive near, that is, associate with oneself (in any familiar or intimate act or relation); by analogy to assume an office; figuratively to learn: - receive, take (unto, with)."]},{"k":"G3881","v":["παραλέγομαι","paralégomai","par-al-eg'-om-ahee","From G3844 and the middle of G3004 (in its original sense); (specifically) to lay one’s course near, that is, sail past: - pass, sail by."]},{"k":"G3882","v":["παράλιος","parálios","par-al'-ee-os","From G3844 and G251; beside the salt (sea), that is, maritime: - sea coast."]},{"k":"G3883","v":["παραλλαγή","parallagḗ","par-al-lag-ay'","From a compound of G3844 and G236; transmutation (of phase or orbit), that is, (figuratively) fickleness: - variableness."]},{"k":"G3884","v":["παραλογίζομαι","paralogízomai","par-al-og-id'-zom-ahee","From G3844 and G3049; to misreckon, that is, delude: - beguile, deceive."]},{"k":"G3885","v":["παραλυτικός","paralytikós","par-al-oo-tee-kos'","From a derivative of G3886; as if dissolved, that is, “paralytic”: - that had (sick of) the palsy."]},{"k":"G3886","v":["παραλύω","paralýō","par-al-oo'-o","From G3844 and G3089; to loosen beside, that is, relax (perfect passive participle paralyzed or enfeebled): - feeble, sick of the (taken with) palsy."]},{"k":"G3887","v":["παραμένω","paraménō","par-am-en'-o","From G3844 and G3306; to stay near, that is, remain (literally tarry; or figuratively be permanent, persevere): - abide, continue."]},{"k":"G3888","v":["παραμυθέομαι","paramythéomai","par-am-oo-theh'-om-ahee","From G3844 and the middle of a derivative of G3454; to relate near, that is, (by implication) encourage, console: - comfort."]},{"k":"G3889","v":["παραμυθία","paramythía","par-am-oo-thee'-ah","From G3888; consolation (properly abstract): - comfort."]},{"k":"G3890","v":["παραμύθιον","paramýthion","par-am-oo'-thee-on","Neuter of G3889; consolation (properly concrete): - comfort."]},{"k":"G3891","v":["παρανομέω","paranoméō","par-an-om-eh'-o","From a compound of G3844 and G3551; to be opposed to law, that is, to transgress: - contrary to law."]},{"k":"G3892","v":["παρανομία","paranomía","par-an-om-ee'-ah","From the same as G3891; transgression: - iniquity."]},{"k":"G3893","v":["παραπικραίνω","parapikraínō","par-ap-ik-rah'-ee-no","From G3844 and G4087; to embitter alongside, that is, (figuratively) to exasperate: - provoke."]},{"k":"G3894","v":["παραπικρασμός","parapikrasmós","par-ap-ik-ras-mos'","From G3893; irritation: - provocation."]},{"k":"G3895","v":["παραπίπτω","parapíptō","par-ap-ip'-to","From G3844 and G4098; to fall aside, that is, (figuratively) to apostatize: - fall away."]},{"k":"G3896","v":["παραπλέω","parapléō","par-ap-leh'-o","From G3844 and G4126; to sail near: - sail by."]},{"k":"G3897","v":["παραπλήσιον","paraplḗsion","par-ap-lay'-see-on","Neuter of a compound of G3844 and the base of G4139 (as adverb); close by, that is, (figuratively) almost: - nigh unto."]},{"k":"G3898","v":["παραπλησίως","paraplēsíōs","par-ap-lay-see'-oce","Adverb from the same as G3897; in a manner near by, that is, (figuratively) similarly: - likewise."]},{"k":"G3899","v":["παραπορεύομαι","paraporeúomai","par-ap-or-yoo'-om-ahee","From G3844 and G4198; to travel near: - go, pass (by)."]},{"k":"G3900","v":["παράπτωμα","paráptōma","par-ap'-to-mah","From G3895; a side slip (lapse or deviation), that is, (unintentional) error or (wilful) transgression: - fall, fault, offence, sin, trespass."]},{"k":"G3901","v":["παραῤῥυέω","pararrhyéō","par-ar-hroo-eh'-o","From G3844 and the alternate of G4482; to flow by, that is, (figuratively) carelessly pass (miss): - let slip."]},{"k":"G3902","v":["παράσημος","parásēmos","par-as'-ay-mos","From G3844 and the base of G4591; side marked, that is, labelled (with a badge [figure head] of a ship): - sign."]},{"k":"G3903","v":["παρασκευάζω","paraskeuázō","par-ask-yoo-ad'-zo","From G3844 and a derivative of G4632; to furnish aside, that is, get ready: - prepare self, be (make) ready."]},{"k":"G3904","v":["παρασκευή","paraskeuḗ","par-ask-yoo-ay'","As if from G3903; readiness: - preparation."]},{"k":"G3905","v":["παρατείνω","parateínō","par-at-i'-no","From G3844 and τείνω teinō (to stretch); to extend along, that is, prolong (in point of time): - continue."]},{"k":"G3906","v":["παρατηρέω","paratēréō","par-at-ay-reh'-o","From G3844 and G5083; to inspect alongside, that is, note insidiously or scrupulously: - observe, watch."]},{"k":"G3907","v":["παρατήρησις","paratḗrēsis","par-at-ay'-ray-sis","From G3906; inspection, that is, ocular evidence: - observation."]},{"k":"G3908","v":["παρατίθημι","paratíthēmi","par-at-ith'-ay-mee","From G3844 and G5087; to place alongside, that is, present (food, truth); by implication to deposit (as a trust or for protection): - allege, commend, commit (the keeping of), put forth, set before."]},{"k":"G3909","v":["παρατυγχάνω","paratynchánō","par-at-oong-khan'-o","From G3844 and G5177; to chance near, that is, fall in with: - meet with."]},{"k":"G3910","v":["παραυτίκα","parautíka","par-ow-tee'-kah","From G3844 and a derivative of G846; at the very instant, that is, momentary: - but for a moment."]},{"k":"G3911","v":["παραφέρω","paraphérō","par-af-er'-o","From G3844 and G5342 (including its alternate forms); to bear along or aside, that is, carry off (literally or figuratively); by implication to avert: - remove, take away."]},{"k":"G3912","v":["παραφρονέω","paraphronéō","par-af-ron-eh'-o","From G3844 and G5426; to misthink, that is, be insane (silly): - as a fool."]},{"k":"G3913","v":["παραφρονία","paraphronía","par-af-ron-ee'-ah","From G3912; insanity, that is, foolhardiness: - madness."]},{"k":"G3914","v":["παραχειμάζω","paracheimázō","par-akh-i-mad'-zo","From G3844 and G5492; to winter near, that is, stay with over the rainy season: - winter."]},{"k":"G3915","v":["παραχειμασία","paracheimasía","par-akh-i-mas-ee'-ah","From G3914; a wintering over: - winter in."]},{"k":"G3916","v":["παραχρῆμα","parachrēma","par-akh-ray'-mah","From G3844 and G5536 (in its original sense); at the thing itself, that is, instantly: - forthwith, immediately, presently, straightway, soon."]},{"k":"G3917","v":["πάρδαλις","párdalis","par'-dal-is","Feminine of πάρδος pardos (a panther); a leopard: - leopard."]},{"k":"G3918","v":["πάρειμι","páreimi","par'-i-mee","From G3844 and G1510 (including its various forms); to be near, that is, at hand; neuter present participle (singular) time being, or (plural) property: - come, X have, be here, + lack, (be here) present."]},{"k":"G3919","v":["παρεισάγω","pareiságō","par-ice-ag'-o","From G3844 and G1521; to lead in aside, that is, introduce surreptitiously: - privily bring in."]},{"k":"G3920","v":["παρείσακτος","pareísaktos","par-ice'-ak-tos","From G3919; smuggled in: - unawares brought in."]},{"k":"G3921","v":["παρεισδύνω","pareisdýnō","par-ice-doo'-no","From G3844 and a compound of G1519 and G1416; to settle in alongside, that is, lodge stealthily: - creep in unawares."]},{"k":"G3922","v":["παρεισέρχομαι","pareisérchomai","par-ice-er'-khom-ahee","From G3844 and G1525; to come in along side, that is, supervene additionally or stealthily: - come in privily, enter."]},{"k":"G3923","v":["παρεισφέρω","pareisphérō","par-ice-fer'-o","From G3844 and G1533; to bear in alongside, that is, introduce simultaneously: - give."]},{"k":"G3924","v":["παρεκτός","parektós","par-ek-tos'","From G3844 and G1622; near outside, that is, besides: - except, saving, without."]},{"k":"G3925","v":["παρεμβολή","parembolḗ","par-em-bol-ay'","From a compound of G3844 and G1685; a throwing in beside (juxtaposition), that is, (specifically) battle array, encampment or barracks (tower Antonia): - army, camp, castle."]},{"k":"G3926","v":["παρενοχλέω","parenochléō","par-en-okh-leh'-o","From G3844 and G1776; to harass further, that is, annoy: - trouble."]},{"k":"G3927","v":["παρεπίδημος","parepídēmos","par-ep-id'-ay-mos","From G3844 and the base of G1927; an alien alongside, that is, a resident foreigner: - pilgrim, stranger."]},{"k":"G3928","v":["παρέρχομαι","parérchomai","par-er'-khom-ahee","From G3844 and G2064; to come near or aside, that is, to approach (arrive), go by (or away), (figuratively) perish or neglect, (causatively) avert: - come (forth), go, pass (away, by, over), past, transgress."]},{"k":"G3929","v":["πάρεσις","páresis","par'-es-is","From G2935; praetermission, that is, toleration: - remission."]},{"k":"G3930","v":["παρέχω","paréchō","par-ekh'-o","From G3844 and G2192; to hold near, that is, present, afford, exhibit, furnish occasion: - bring, do, give, keep, minister, offer, shew, + trouble."]},{"k":"G3931","v":["παρηγορία","parēgoría","par-ay-gor-ee'-ah","From a compound of G3844 and a derivative of G58 (meaning to harangue an assembly); an address alongside, that is, (specifically) consolation: - comfort."]},{"k":"G3932","v":["παρθενία","parthenía","par-then-ee'-ah","From G3933; maidenhood: - virginity."]},{"k":"G3933","v":["παρθένος","parthénos","par-then'-os","Of unknown origin; a maiden; by implication an unmarried daughter: - virgin."]},{"k":"G3934","v":["Πάρθος","Párthos","par'-thos","Probably of foreign origin; a Parthian, that is, inhabitant of Parthia: - Parthian."]},{"k":"G3935","v":["παρίημι","paríēmi","par-ee'-ay-mi","From G3844 and ίημι    hiēmi (to send); to let by, that is, relax: - hang down."]},{"k":"G3936","v":["παρίστημι","parístēmi","par-is'-tay-mee","From G3488 and G2476; to stand beside, that is, (transitively) to exhibit, proffer, (specifically) recommend, (figuratively) substantiate; or (intransitively) to be at hand (or ready), aid: - assist, bring before, command, commend, give presently, present, prove, provide, shew, stand (before, by, here, up, with), yield."]},{"k":"G3937","v":["Παρμενᾶς","Parmenâs","par-men-as'","Probaby by contraction for Παρμενίδης Parmenidēs (a derivative of a compound of G3844 and G3306); constant; Parmenas, a Christian: - Parmenas."]},{"k":"G3938","v":["πάροδος","párodos","par'-od-os","From G3844 adn G3598; a by road, that is, (actively) a route: - way."]},{"k":"G3939","v":["παροικέω","paroikéō","par-oy-keh'-o","From G3844 and G3611; to dwell near, that is, reside as a foreigner: - sojourn in, be a stranger."]},{"k":"G3940","v":["παροικία","paroikía","par-oy-kee'-ah","From G3941; foreign residence: - sojourning, X as strangers."]},{"k":"G3941","v":["πάροικος","pároikos","par'-oy-kos","From G3844 and G3624; having a home near, that is, (as noun) a by-dweller (alien resident): - foreigner, sojourn, stranger."]},{"k":"G3942","v":["παροιμία","paroimía","par-oy-mee'-ah","From a compound of G3844 and perhaps a derivative of G3633; apparently a state alongside of supposition, that is, (concretely) an adage; specifically an enigmatical or fictitious illustration: - parable, proverb."]},{"k":"G3943","v":["πάροινος","pároinos","par'-oy-nos","From G3844 and G3631; staying near wine, that is, tippling (a toper): - given to wine."]},{"k":"G3944","v":["παροίχομαι","paroíchomai","par-oy'-khom-ahee","From G3844 and οίχομαι oichomai (to depart); to escape along, that is, be gone: - past."]},{"k":"G3945","v":["παρομοιάζω","paromoiázō","par-om-oy-ad'-zo","From G3946; to resemble: - be like unto."]},{"k":"G3946","v":["παρόμοιος","parómoios","par-om'-oy-os","From G3844 and G3664; alike nearly, that is, similar: - like."]},{"k":"G3947","v":["παροξύνω","paroxýnō","par-ox-oo'-no","From G3844 and a derivative of G3691; to sharpen alongside, that is, (figuratively) to exasperate: - easily provoke, stir."]},{"k":"G3948","v":["παροξυσμός","paroxysmós","par-ox-oos-mos'","From G3947 (“paroxysm”); incitement (to good), or dispute (in anger): - contention, provoke unto."]},{"k":"G3949","v":["παροργίζω","parorgízō","par-org-id'-zo","From G3844 and G3710; to anger alongside, that is, enrage: - anger, provoke to wrath."]},{"k":"G3950","v":["παροργισμός","parorgismós","par-org-is-mos'","From G3949; rage: - wrath."]},{"k":"G3951","v":["παροτρύνω","parotrýnō","par-ot-roo'-no","From G3844 and ὀτρύνω    otrunō (to spur); to urge along, that is, stimulate (to hostility): - stir up."]},{"k":"G3952","v":["παρουσία","parousía","par-oo-see'-ah","From the present participle of G3918; a being near, that is, advent (often, return; specifically of Christ to punish Jerusalem, or finally the wicked); (by implication) physical aspect: - coming, presence."]},{"k":"G3953","v":["παροψίς","paropsís","par-op-sis'","From G3844 and the base of G3795; a side dish (the receptacle): - platter."]},{"k":"G3954","v":["παῤῥησία","parrhēsía","par-rhay-see'-ah","From G3956 and a derivative of G4483; all out spokenness, that is, frankness, bluntness, publicity; by implication assurance: - bold (X -ly, -ness, -ness of speech), confidence, X freely, X openly, X plainly (-ness)."]},{"k":"G3955","v":["παῤῥησιάζομαι","parrhēsiázomai","par-hray-see-ad'-zom-ahee","Middle voice from G3954; to be frank in utterance, or confident in spirit and demeanor: - be (wax) bold, (preach, speak) boldly."]},{"k":"G3956","v":["πᾶς","pâs","pas","Including all the forms of declension; apparently a primary word; all, any, every, the whole: - all (manner of, means) alway (-s), any (one), X daily, + ever, every (one, way), as many as, + no (-thing), X throughly, whatsoever, whole, whosoever."]},{"k":"G3957","v":["πάσχα","páscha","pas'-khah","Of Chaldee origin (compare [H6453]); the Passover (the meal, the day, the festival or the special sacrifices connected with it): - Easter, Passover."]},{"k":"G3958","v":["πάσχω","páschō","pas'-kho","Apparently a primary verb (the third form used only in certain tenses for it); to experience a sensation or impression (usually painful): - feel, passion, suffer, vex."]},{"k":"G3959","v":["Πάταρα","Pátara","pat'-ar-ah","Probably of foreign origin; Patara, a place in Asia Minor: - Patara."]},{"k":"G3960","v":["πατάσσω","patássō","pat-as'-so","Probably a prolongation from G3817; to knock (gently or with a weapon or fatally): - smite, strike. Compare G5180."]},{"k":"G3961","v":["πατέω","patéō","pat-eh'-o","From a derivative probably of G3817 (meaning a “path”); to trample (literally or figuratively): - tread (down, under foot)."]},{"k":"G3962","v":["πατήρ","patḗr","pat-ayr'","Apparently a primary word; a “father” (literally or figuratively, near or more remote): - father, parent."]},{"k":"G3963","v":["Πάτμος","Pátmos","pat'-mos","Of uncertain derivation; Patmus, an islet in the Mediterranean: - Patmos."]},{"k":"G3964","v":["πατραλῴας","patralṓias","pat-ral-o'-as","From G3962 and the same as the latter part of G3389; a parricide: - murderer of fathers."]},{"k":"G3965","v":["πατριά","patriá","pat-ree-ah'","As if feminine of a derivative of G3962; paternal descent, that is, (concretely) a group of families or a whole race (nation): - family, kindred, lineage."]},{"k":"G3966","v":["πατριάρχης","patriárchēs","pat-ree-arkh'-ace","From G3965 and G757; a progenitor (“patriarch”): - patriarch."]},{"k":"G3967","v":["πατρικός","patrikós","pat-ree-kos'","From G3962; paternal, that is, ancestral: - of fathers."]},{"k":"G3968","v":["πατρίς","patrís","pat-rece'","From G3962; a father land, that is, native town; (figuratively) heavenly home: - (own) country."]},{"k":"G3969","v":["Πατροβᾶς","Patrobâs","pat-rob'-as","Perhaps a contraction for “patrobios” (a compound of G3962 and G979); father's life; Patrobas, a Christian: - Patrobas."]},{"k":"G3970","v":["πατροπαράδοτος","patroparádotos","pat-rop-ar-ad'-ot-os","From G3962 and a derivative of G3860 (in the sense of handing over or down); traditionary: - received by tradition from fathers."]},{"k":"G3971","v":["πατρῷος","patrōios","pat-ro'-os","From G3962; paternal, that is, hereditary: - of fathers."]},{"k":"G3972","v":["Παῦλος","Paûlos","pow'-los","Of Latin origin; (little; but remotely from a derivative of G3973, meaning the same); Paulus, the name of a Roman and of an apostle: - Paul, Paulus."]},{"k":"G3973","v":["παύω","paúō","pow'-o","A primn. verb (“pause”); to stop (transitive or intransitive), that is, restrain, quit, desist, come to an end: - cease, leave, refrain."]},{"k":"G3974","v":["Πάφος","Páphos","paf'-os","Of uncertain derivative; Paphus, a place in Cyprus: - Paphos."]},{"k":"G3975","v":["παχύνω","pachýnō","pakh-oo'-no","From a derivative of G4078 (meaning thick); to thicken, that is, (by implication) to fatten (figuratively stupefy or render callous): - wax gross."]},{"k":"G3976","v":["πέδη","pédē","ped'-ay","Ultimately from G4228; a shackle for the feet: - fetter."]},{"k":"G3977","v":["πεδινός","pedinós","ped-ee-nos'","From a derivative of G4228 (meaning the ground); level (as easy for the feet): - plain."]},{"k":"G3978","v":["πεζεύω","pezeúō","ped-zyoo'-o","From the same as G3979; to foot a journey, that is, travel by land: - go afoot."]},{"k":"G3979","v":["πεζῇ","pezēi","ped-zay'","Dative feminine of a derivative of G4228 (as adverb); foot wise, that is, by walking: - a- (on) foot."]},{"k":"G3980","v":["πειθαρχέω","peitharchéō","pi-tharkh-eh'-o","From a compound of G3982 and G757; to be persuaded by a ruler, that is, (generally) to submit to authority; by analogy to conform to advice: - hearken, obey (magistrates)."]},{"k":"G3981","v":["πειθός","peithós","pi-thos'","From G3982; persuasive: - enticing."]},{"k":"G3982","v":["πείθω","peíthō","pi'-tho","A primary verb; to convince (by argument, true or false); by analogy to pacify or conciliate (by other fair means); reflexively or passively to assent (to evidence or authority), to rely (by inward certainty): - agree, assure, believe, have confidence, be (wax) content, make friend, obey, persuade, trust, yield."]},{"k":"G3983","v":["πεινάω","peináō","pi-nah'-o","From the same as G3993 (through the idea of pinching toil; “pine”); to famish (absolutely or comparatively); figuratively to crave: - be an hungered."]},{"k":"G3984","v":["πεῖρα","peîra","pi'-rah","From the base of G4008 (through the idea of piercing); a test, that is, attempt, experience: - assaying, trial."]},{"k":"G3985","v":["πειράζω","peirázō","pi-rad'-zo","From G3984; to test (objectively), that is, endeavor, scrutinize, entice, discipline: - assay, examine, go about, prove, tempt (-er), try."]},{"k":"G3986","v":["πειρασμός","peirasmós","pi-ras-mos'","From G3985; a putting to proof (by experiment [of good], experience [of evil], solicitation, discipline or provocation); by implication adversity: - temptation, X try."]},{"k":"G3987","v":["πειράω","peiráō","pi-rah'-o","From G3984; to test (subjectively), that is, (reflexively) to attempt: - assay."]},{"k":"G3988","v":["πεισμονή","peismonḗ","pice-mon-ay'","From a presumed derivative of G3982; persuadableness, that is, credulity: - persuasion."]},{"k":"G3989","v":["πέλαγος","pélagos","pel'-ag-os","Of uncertain affinity; deep or open sea, that is, the main: - depth, sea."]},{"k":"G3990","v":["πελεκίζω","pelekízō","pel-ek-id'-zo","From a derivative of G4141 (meaning an axe); to chop off (the head), that is, truncate: - behead."]},{"k":"G3991","v":["πέμπτος","pémptos","pemp'-tos","From G4002; fifth: - fifth."]},{"k":"G3992","v":["πέμπω","pémpō","pem'-po","Apparently a primary verb; to dispatch (from the subjective view or point of departure, whereas ἵημι hiēmi [as a stronger form of εἶμι eimi] refers rather to the objective point or terminus ad quem, and G4724 denotes properly the orderly motion involved), especially on a temporary errand; also to transmit, bestow, or wield: - send, thrust in."]},{"k":"G3993","v":["πένης","pénēs","pen'-ace","From a primary “peno” (to toil for daily subsistence); starving, that is, indigent: - poor. Compare G4434."]},{"k":"G3994","v":["πενθερά","pentherá","pen-ther-ah'","Feminine of G3995; a wife's mother: - mother in law, wife’s mother."]},{"k":"G3995","v":["πενθερός","pentherós","pen-ther-os'","Of uncertain affinity; a wife's father: - father in law."]},{"k":"G3996","v":["πενθέω","penthéō","pen-theh'-o","From G3997; to grieve (the feeling or the act): - mourn, (be-) wail."]},{"k":"G3997","v":["πένθος","pénthos","pen'-thos","Strengthened from the alternate of G3958; grief: - mourning, sorrow."]},{"k":"G3998","v":["πενιχρός","penichrós","pen-tikh-ros'","Prolonged from the base of G3993; necessitous: - poor."]},{"k":"G3999","v":["πεντάκις","pentákis","pen-tak-ece'","Multiplicative adverb from G4002; five times: - five times."]},{"k":"G4000","v":["πεντακισχίλιοι","pentakischílioi","pen-tak-is-khil'-ee-oy","From G3999 and G5507; five times a thousand: - five thousand."]},{"k":"G4001","v":["πεντακόσιοι","pentakósioi","pen-tak-os'-ee-oy","From G4002 and G1540; five hundred: - five hundred."]},{"k":"G4002","v":["πέντε","pénte","pen'-teh","A primary number; “five”: - five."]},{"k":"G4003","v":["πεντεκαιδέκατος","pentekaidékatos","pen-tek-ahee-dek'-at-os","From G4002 and G2532 and G1182; five and tenth: - fifteenth."]},{"k":"G4004","v":["πεντήκοντα","pentḗkonta","pen-tay'-kon-tah","Multiplicative of G4002; fifty: - fifty."]},{"k":"G4005","v":["πεντηκοστή","pentēkostḗ","pen-tay-kos-tay'","Feminine of G4004; fiftieth (G2250 being implied) from Passover, that is, the festival of “pentecost”: - Pentecost."]},{"k":"G4006","v":["πεποίθησις","pepoíthēsis","pep-oy'-thay-sis","From the perfect of the alternate of G3958; reliance: - confidence, trust."]},{"k":"G4007","v":["περ","per","per","From the base of G4008; an enclitic particle significant of abundance (thoroughness), that is, emphasis; much, very or ever: - [whom-] soever."]},{"k":"G4008","v":["πέραν","péran","per'-an","Apparently the accusative case of an obsolete derivation of πείρω peirō (to “peirce”); through (as adverb or preposition), that is, across: - beyond, farther (other) side, over."]},{"k":"G4009","v":["πέρας","péras","per'-as","From the same as G4008; an extremity: - end, ut- (ter-) most part."]},{"k":"G4010","v":["Πέργαμος","Pérgamos","per'-gam-os","From G4444; fortified; Pergamus, a place in Asia Minor: - Pergamos."]},{"k":"G4011","v":["Πέργη","Pérgē","perg'-ay","Probably from the same as G4010; a tower; Perga, a place in Asia Minor: - Perga."]},{"k":"G4012","v":["περί","perí","per-ee'","From the base of G4008; properly through (all over), that is, around; figuratively with respect to; used in various applications, of place, cause or time (with the genitive case denoting the subject or occasion or superlative point; with the accusative case the locality, circuit, matter, circumstance or general period): - (there-) about, above, against, at, on behalf of, X and his company, which concern, (as) concerning, for, X how it will go with, ([there-, where-]) of, on, over, pertaining (to), for sake, X (e-) state, (as) touching, [where-] by (in), with. In compounds it retains substantially the same meaning of circuit (around), excess (beyond), or completeness (through)."]},{"k":"G4013","v":["περιάγω","periágō","per-ee-ag'-o","From G4012 and G71; to take around (as a companion); reflexively to walk around: - compass, go (round) about, lead about."]},{"k":"G4014","v":["περιαιρέω","periairéō","per-ee-ahee-reh'-o","From G4012 and G138 (including its alternate); to remove all around, that is, unveil, cast off (anchor); figuratively to expiate: - take away (up)."]},{"k":"G4015","v":["περιαστράπτω","periastráptō","per-ee-as-trap'-to","From G4012 and G797; to flash all around, that is, envelop in light: - shine round (about)."]},{"k":"G4016","v":["περιβάλλω","peribállō","per-ee-bal'-lo","From G4012 and G906; to throw all around, that is, invest (with a palisade or with clothing): - array, cast about, clothe (-d me), put on."]},{"k":"G4017","v":["περιβλέπω","periblépō","per-ee-blep'-o","From G4012 and G991; to look all around: - look (round) about (on)."]},{"k":"G4018","v":["περιβόλαιον","peribólaion","per-ib-ol'-ah-yon","Neuter of a presumed derivative of G4016; something thrown around one, that is, a mantle, veil: - covering, vesture."]},{"k":"G4019","v":["περιδέω","peridéō","per-ee-deh'-o","From G4012 and G1210; to bind around one, that is, enwrap: - bind about."]},{"k":"G4020","v":["περιεργάζομαι","periergázomai","per-ee-er-gad'-zom-ahee","From G4012 and G2038; to work all around, that is, bustle about (meddle): - be a busybody."]},{"k":"G4021","v":["περίεργος","períergos","per-ee'-er-gos","From G4012 and G2041; working all around, that is, officious (meddlesome, neuter plural magic): - busybody, curious arts."]},{"k":"G4022","v":["περιέρχομαι","periérchomai","per-ee-er'-khom-ahee","From G4012 and G2064 (including its alternate); to come all around, that is, stroll, vacillate, veer: - fetch a compass, vagabond, wandering about."]},{"k":"G4023","v":["περιέχω","periéchō","per-ee-ekh'-o","From G4012 and G2192; to hold all around, that is, include, clasp (figuratively): - + astonished, contain, after [this manner]."]},{"k":"G4024","v":["περιζώννυμι","perizṓnnymi","per-id-zone'-noo-mee","From G4012 and G2224; to gird all around, that is, (middle or passive voice) to fasten on one's belt (literally or figuratively): - gird (about, self)."]},{"k":"G4025","v":["περίθεσις","períthesis","per-ith'-es-is","From G4060; a putting all around, that is, decorating oneself with: - wearing."]},{"k":"G4026","v":["περιΐστημι","periḯstēmi","per-ee-is'-tay-mee","From G4012 and G2476; to stand all around, that is, (near) to be a bystander, or (aloof) to keep away from: - avoid, shun, stand by (round about)."]},{"k":"G4027","v":["περικάθαρμα","perikátharma","per-ee-kath'-ar-mah","From a compound of G4012 and G2508; something cleaned off all around, that is, refuse (figuratively): - filth."]},{"k":"G4028","v":["περικαλύπτω","perikalýptō","per-ee-kal-oop'-to","From G4012 and G2572; to cover all around, that is, entirely (the face, a surface): - blindfold, cover, overlay."]},{"k":"G4029","v":["περίκειμαι","períkeimai","per-ik'-i-mahee","From G4012 and G2749; to lie all around, that is, inclose, encircle, hamper (literally or figuratively): - be bound (compassed) with, hang about."]},{"k":"G4030","v":["περικεφαλαία","perikephalaía","per-ee-kef-al-ah'-yah","Feminine of a compound of G4012 and G2776; encirclement of the head, that is, a helmet: - helmet."]},{"k":"G4031","v":["περικρατής","perikratḗs","per-ee-krat-ace'","From G4012 and G2904; strong all around, that is, a master (manager): - + come by."]},{"k":"G4032","v":["περικρύπτω","perikrýptō","per-ee-kroop'-to","From G4012 and G2928; to conceal all around, that is, entirely: - hide."]},{"k":"G4033","v":["περικυκλόω","perikyklóō","per-ee-koo-klo'-o","From G4012 and G2944; to encircle all around, that is, blockade completely: - compass round."]},{"k":"G4034","v":["περιλάμπω","perilámpō","per-ee-lam'-po","From G4012 and G2989; to illuminate all around, that is, invest with a halo: - shine round about."]},{"k":"G4035","v":["περιλείπω","perileípō","per-ee-li'-po","From G4012 and G3007; to leave all around, that is, (passively) survive: - remain."]},{"k":"G4036","v":["περίλυπος","perílypos","per-il'-oo-pos","From G4012 and G3077; grieved all around, that is, intensely sad: - exceeding (very) sorry (-owful)."]},{"k":"G4037","v":["περιμένω","periménō","per-ee-men'-o","From G4012 and G3306; to stay around, that is, await: - wait for."]},{"k":"G4038","v":["πέριξ","périx","per'-ix","Adverb from G4012; all around, that is, (as adjective) circumjacent: - round about."]},{"k":"G4039","v":["περιοικέω","perioikéō","per-ee-oy-keh'-o","From G4012 and G3611; to reside around, that is, be a neighbor: - dwell round about."]},{"k":"G4040","v":["περίοικος","períoikos","per-ee'-oy-kos","From G4012 and G3624; housed around, that is, neighboring (elliptically as noun): - neighbour."]},{"k":"G4041","v":["περιούσιος","perioúsios","per-ee-oo'-see-os","From the present participle feminine of a compound of G4012 and G1510; being beyond usual, that is, special (one’s own): - peculiar."]},{"k":"G4042","v":["περιοχή","periochḗ","per-ee-okh-ay'","From G4023; a being held around, that is, (concretely) a passage (of Scripture, as circumscribed): - place."]},{"k":"G4043","v":["περιπατέω","peripatéō","per-ee-pat-eh'-o","From G4012 and G3961; to tread all around, that is, walk at large (especially as proof of ability); figuratively to live, deport oneself, follow (as a companion or votary): - go, be occupied with, walk (about)."]},{"k":"G4044","v":["περιπείρω","peripeírō","per-ee-pi'-ro","From G4012 and the base of G4008; to penetrate entirely, that is, transfix (figuratively): - pierce through."]},{"k":"G4045","v":["περιπίπτω","peripíptō","per-ee-pip'-to","From G4012 and G4098; to fall into something that is all around, that is, light among or upon, be surrounded with: - fall among (into)."]},{"k":"G4046","v":["περιποιέομαι","peripoiéomai","per-ee-poy-eh'-om-ahee","Middle voice from G4012 and G4160; to make around oneself, that is, acquire (buy): - purchase."]},{"k":"G4047","v":["περιποίησις","peripoíēsis","per-ee-poy'-ay-sis","From G4046; acquisition (the act or the thing); by extension preservation: - obtain (-ing), peculiar, purchased, possession, saving."]},{"k":"G4048","v":["περιῤῥήγνυμι","perirrhḗgnymi","per-ir-hrayg'-noo-mee","From G4012 and G4486; to tear all around, that is, completely away: - rend off."]},{"k":"G4049","v":["περισπάω","perispáō","per-ee-spah'-o","From G4012 and G4685; to drag all around, that is, (figuratively) to distract (with care): - cumber."]},{"k":"G4050","v":["περισσεία","perisseía","per-is-si'-ah","From G4052; surplusage, that is, superabundance: - abundance (-ant, [-ly]), superfluity."]},{"k":"G4051","v":["περίσσευμα","perísseuma","per-is'-syoo-mah","From G4052; a surplus, or superabundance: - abundance, that was left, over and above."]},{"k":"G4052","v":["περισσεύω","perisseúō","per-is-syoo'-o","From G4053; to superabound (in quantity or quality), be in excess, be superfluous; also (transitively) to cause to superabound or excel: - (make, more) abound, (have, have more) abundance, (be more) abundant, be the better, enough and to spare, exceed, excel, increase, be left, redound, remain (over and above)."]},{"k":"G4053","v":["περισσός","perissós","per-is-sos'","From G4012 (in the sense of beyond); superabundant (in quantity) or superior (in quality); by implication excessive; adverb (with G1537) violently; neuter (as noun) preeminence: - exceeding abundantly above, more abundantly, advantage, exceedingly, very highly, beyond measure, more, superfluous, vehement [-ly]."]},{"k":"G4054","v":["περισσότερον","perissóteron","per-is-sot'-er-on","Neuter of G4055 (as adverb); in a more superabundant way: - more abundantly, a great deal, far more."]},{"k":"G4055","v":["περισσότερος","perissóteros","per-is-sot'-er-os","Comparative of G4053; more superabundant (in number, degree or character): - more abundant, greater (much) more, overmuch."]},{"k":"G4056","v":["περισσοτέρως","perissotérōs","per-is-sot-er'-oce","Adverb from G4055; more superabundantly: - more abundant (-ly), X the more earnest, (more) exceedingly, more frequent, much more, the rather."]},{"k":"G4057","v":["περισσῶς","perissōs","per-is-soce'","Adverb from G4053; superabundantly: - exceedingly, out of measure, the more."]},{"k":"G4058","v":["περιστερά","peristerá","per-is-ter-ah'","Of uncertain derivation; a pigeon: - dove, pigeon."]},{"k":"G4059","v":["περιτέμνω","peritémnō","per-ee-tem'-no","From G4012 and the base of G5114; to cut around, that is, (specifically) to circumcise: - circumcise."]},{"k":"G4060","v":["περιτίθημι","peritíthēmi","per-ee-tith'-ay-mee","From G4012 and G5087; to place around; by implication to present: - bestow upon, hedge round about, put about (on, upon), set about."]},{"k":"G4061","v":["περιτομή","peritomḗ","per-it-om-ay'","From G4059; circumcision (the rite, the condition or the people, literally or figuratively): - X circumcised, circumcision."]},{"k":"G4062","v":["περιτρέπω","peritrépō","per-ee-trep'-o","From G4012 and the base of G5157; to turn around, that is, (mentally) to craze: - + make mad."]},{"k":"G4063","v":["περιτρέχω","peritréchō","per-ee-trekh'-o","From G4012 and G5143 (including its alternate); to run around, that is, traverse: - run through."]},{"k":"G4064","v":["περιφέρω","periphérō","per-ee-fer'-o","From G4012 and G5342; to convey around, that is, transport hither and thither: - bear (carry) about."]},{"k":"G4065","v":["περιφρονέω","periphronéō","per-ee-fron-eh'-o","From G4012 and G5426; to think beyond, that is, depreciate (contemn): - despise."]},{"k":"G4066","v":["περίχωρος","períchōros","per-ikh'-o-ros","From G4012 and G5561; around the region, that is, circumjacent (as noun, with G1093 implied, vicinity): - country (round) about, region (that lieth) round about."]},{"k":"G4067","v":["περίψωμα","perípsōma","per-ip'-so-mah","From a compound of G4012 and “psao” (to rub); something brushed all around, that is, off scrapings (figuratively scum): - offscouring."]},{"k":"G4068","v":["περπερεύομαι","perpereúomai","per-per-yoo'-om-ahee","Middle voice from πέρπερος perperos (braggart; perhaps by reduplication of the base of G4008); to boast: - vaunt itself."]},{"k":"G4069","v":["Περσίς","Persís","per-sece'","A Persian woman; Persis, a Christian female: - Persis."]},{"k":"G4070","v":["πέρυσι","pérysi","per'-oo-si","Adverb from G4009; the by gone, that is, (as noun) last year: - + a year ago."]},{"k":"G4071","v":["πετεινόν","peteinón","pet-i-non'","Neuter of a derivative of G4072; a flying animal, that is, bird: - bird, fowl."]},{"k":"G4072","v":["πέτομαι","pétomai","pet'-om-ahee","Including the prolonged form (second form) and contraction (third form) of the middle voice of a primary verb; to fly: - fly (-ing)."]},{"k":"G4073","v":["πέτρα","pétra","pet'-ra","Feminine of the same as G4074; a (mass of) rock (literally or figuratively): - rock."]},{"k":"G4074","v":["Πέτρος","Pétros","pet'-ros","Apparently a primary word; a (piece of) rock (larger than G3037); as a name, Petrus, an apostle: - Peter, rock. Compare G2786."]},{"k":"G4075","v":["πετρώδης","petrṓdēs","pet-ro'-dace","From G4073 and G1491; rock like, that is, rocky: - stony."]},{"k":"G4076","v":["πήγανον","pḗganon","pay'-gan-on","From G4078; rue (from its thick or fleshy leaves): - rue."]},{"k":"G4077","v":["πηγή","pēgḗ","pay-gay'","Probably from G4078 (through the idea of gushing plumply); a fount (literally or figuratively), that is, source or supply (of water, blood, enjoyment), (not necessarily the original spring): - fountain, well."]},{"k":"G4078","v":["πήγνυμι","pḗgnymi","payg'-noo-mee","A prolonged form of a primary verb (which in its simpler form occurs only as an alternate in certain tenses); to fix (“peg”), that is, (specifically) to set up (a tent): - pitch."]},{"k":"G4079","v":["πηδάλιον","pēdálion","pay-dal'-ee-on","Neuter of a (presumed) derivative of πηδόν pēdon (the blade of an oar; from the same as G3976); a “pedal”, that is, helm: - rudder."]},{"k":"G4080","v":["πηλίκος","pēlíkos","pay-lee'-kos","A quantitative form (the feminine) of the base of G4225; how much (as indefinite), that is, in size or (figuratively) dignity: - how great (large)."]},{"k":"G4081","v":["πηλός","pēlós","pay-los'","Perhaps a primary word; clay: - clay."]},{"k":"G4082","v":["πήρα","pḗra","pay'-rah","Of uncertain affinity; a wallet or leather pouch for food: - scrip."]},{"k":"G4083","v":["πῆχυς","pēchys","pay'-khoos","Of uncertain affinity; the fore arm, that is, (as a measure) a cubit: - cubit."]},{"k":"G4084","v":["πιάζω","piázō","pee-ad'-zo","Probably another form of G971; to squeeze, that is, seize (gently by the hand [press], or officially [arrest], or in hunting [capture]): - apprehend, catch, lay hand on, take. Compare G4085."]},{"k":"G4085","v":["πιέζω","piézō","pee-ed'-zo","Another form for G4084; to pack: - press down."]},{"k":"G4086","v":["πιθανολογία","pithanología","pith-an-ol-og-ee'-ah","From a compound of a derivative of G3982 and G3056; persuasive language: - enticing words."]},{"k":"G4087","v":["πικραίνω","pikraínō","pik-rah'-ee-no","From G4089; to embitter (literally or figuratively): - be (make) bitter."]},{"k":"G4088","v":["πικρία","pikría","pik-ree'-ah","From G4089; acridity (especially poison), literally or figuratively: - bitterness."]},{"k":"G4089","v":["πικρός","pikrós","pik-ros'","Perhaps from G4078 (through the idea of piercing); sharp (pungent), that is, acrid (literally or figuratively): - bitter."]},{"k":"G4090","v":["πικρῶς","pikrōs","pik-roce'","Adverb from G4089; bitterly, that is, (figuratively) violently: - bitterly."]},{"k":"G4091","v":["Πιλᾶτος","Pilâtos","pil-at'-os","Of Latin origin; close pressed, that is, firm; Pilatus, a Roman: - Pilate."]},{"k":"G4092","v":["πίμπρημι","pímprēmi","pim'-pray-mee","A reduplicated and prolonged form of a primary word, πρέω preō, (which occurs only as an alternate in certain tenses); to fire, that is, burn (figuratively and passively become inflamed with fever): - be (X should have) swollen."]},{"k":"G4093","v":["πινακίδιον","pinakídion","pin-ak-id'-ee-on","Diminutive of G4094; a tablet (for writing on): - writing table."]},{"k":"G4094","v":["πίναξ","pínax","pin'-ax","Apparently a form of G4109; a plate: - charger, platter."]},{"k":"G4095","v":["πίνω","pínō","pee'-no","The first is a prolonged form of the second, which (together with the third form) occurs only as an alternate in certain tenses; to imbibe (literally or figuratively): - drink."]},{"k":"G4096","v":["πιότης","piótēs","pee-ot'-ace","From πίων piōn (fat; perhaps akin to the alternate of G4095 through the idea of repletion); plumpness, that is, (by implication) richness (oiliness): - fatness."]},{"k":"G4097","v":["πιπράσκω","pipráskō","pip-ras'-ko","The first is a reduplicated and prolonged form of the second (which occurs only as an alternate in certain tenses); contracted from περάω peraō (to traverse; from the base of G4008); to traffic (by travelling), that is, dispose of as merchandise or into slavery (literally or figuratively): - sell."]},{"k":"G4098","v":["πίπτω","píptō","pip'-to","The first is a reduplicated and contracted form of the second (which occurs only as an alternate in certain tenses); probably akin to G4072 through the idea of alighting; to fall (literally of figuratively): - fail, fall (down), light on."]},{"k":"G4099","v":["Πισιδία","Pisidía","pis-id-ee'-ah","Probably of foreign origin; Pisidia, a region of Asia Minor: - Pisidia."]},{"k":"G4100","v":["πιστεύω","pisteúō","pist-yoo'-o","From G4102; to have faith (in, upon, or with respect to, a person or thing), that is, credit; by implication to entrust (especially one’s spiritual well being to Christ): - believe (-r), commit (to trust), put in trust with."]},{"k":"G4101","v":["πιστικός","pistikós","pis-tik-os'","From G4102; trustworthy, that is, genuine (unadulterated): - spike-[nard]."]},{"k":"G4102","v":["πίστις","pístis","pis'-tis","From G3982; persuasion, that is, credence; moral conviction (of religious truth, or the truthfulness of God or a religious teacher), especially reliance upon Christ for salvation; abstractly constancy in such profession; by extension the system of religious (Gospel) truth itself: - assurance, belief, believe, faith, fidelity."]},{"k":"G4103","v":["πιστός","pistós","pis-tos'","From G3982; objectively trustworthy; subjectively trustful: - believe (-ing, -r), faithful (-ly), sure, true."]},{"k":"G4104","v":["πιστόω","pistóō","pis-to'-o","From G4103; to assure: - assure of."]},{"k":"G4105","v":["πλανάω","planáō","plan-ah'-o","From G4106; to (properly cause to) roam (from safety, truth, or virtue): - go astray, deceive, err, seduce, wander, be out of the way."]},{"k":"G4106","v":["πλάνη","plánē","plan'-ay","Feminine of G4108 (as abstraction); objectively fraudulence; subjectively a straying from orthodoxy or piety: - deceit, to deceive, delusion, error."]},{"k":"G4107","v":["πλανήτης","planḗtēs","plan-ay'-tace","From G4108; a rover (“planet”), that is, (figuratively) an erratic teacher: - wandering."]},{"k":"G4108","v":["πλάνος","plános","plan'-os","Of uncertain affinity; roving (as a tramp), that is, (by implication) an impostor or misleader: - deceiver, seducing."]},{"k":"G4109","v":["πλάξ","pláx","plax","From G4111; a moulding board, that is, flat surface (“plate”, or tablet, literally or figuratively): - table."]},{"k":"G4110","v":["πλάσμα","plásma","plas'-mah","From G4111; something moulded: - thing formed."]},{"k":"G4111","v":["πλάσσω","plássō","plas'-so","A primary verb; to mould, that is, shape or fabricate: - form."]},{"k":"G4112","v":["πλαστός","plastós","plas-tos'","From G4111; moulded, that is, (by implication) artificial or (figuratively) fictitious (false): - feigned."]},{"k":"G4113","v":["πλατεῖα","plateîa","plat-i'-ah","Feminine of G4116; a wide “plat” or “place”, that is, open square: - street."]},{"k":"G4114","v":["πλάτος","plátos","plat'-os","From G4116; width: - breadth."]},{"k":"G4115","v":["πλατύνω","platýnō","plat-oo'-no","From G4116; to widen (literally or figuratively): - make broad, enlarge."]},{"k":"G4116","v":["πλατύς","platýs","plat-oos'","From G4111; spread out “flat” (“plot”), that is, broad: - wide."]},{"k":"G4117","v":["πλέγμα","plégma","pleg'-mah","From G4120; a plait (of hair): - broidered hair."]},{"k":"G4118","v":["πλεῖστος","pleîstos","plice'-tos","Irregular superlative of G4183; the largest number or very large: - very great, most."]},{"k":"G4119","v":["πλείων","pleíōn","pli-own","Comparative of G4183; more in quantity, number, or quality; also (in plural) the major portion: - X above, + exceed, more excellent, further, (very) great (-er), long (-er), (very) many, greater (more) part, + yet but."]},{"k":"G4120","v":["πλέκω","plékō","plek'-o","A primary word; to twine or braid: - plait."]},{"k":"G4121","v":["πλεονάζω","pleonázō","pleh-on-ad'-zo","From G4119; to do, make or be more, that is, increase (transitively or intransitively); by extension to superabound: - abound, abundant, make to increase, have over."]},{"k":"G4122","v":["πλεονεκτέω","pleonektéō","pleh-on-cek-teh'-o","From G4123; to be covetous, that is, (by implication) to over reach: - get an advantage, defraud, make a gain."]},{"k":"G4123","v":["πλεονέκτης","pleonéktēs","pleh-on-ek'-tace","From G4119 and G2192; holding (desiring) more, that is, eager for gain (avaricious, hence a defrauder): - covetous."]},{"k":"G4124","v":["πλεονεξία","pleonexía","pleh-on-ex-ee'-ah","From G4123; avarice, that is, (by implication) fraudulency, extortion: - covetous (-ness) practices, greediness."]},{"k":"G4125","v":["πλευρά","pleurá","plyoo-rah'","Of uncertain affinity; a rib, that is, (by extension) side: - side."]},{"k":"G4126","v":["πλέω","pléō","pleh'-o","The first is another form for the second which is used as an alternate in certain tenses; probably a form of G4150 (through the idea of plunging through the water); to pass in a vessel: - sail. See also G4130."]},{"k":"G4127","v":["πληγή","plēgḗ","play-gay'","From G4141; a stroke; by implication a wound; figuratively a calamity: - plague, stripe, wound (-ed)."]},{"k":"G4128","v":["πλῆθος","plēthos","play'-thos","From G4130; a fulness, that is, a large number, throng, populace: - bundle, company, multitude."]},{"k":"G4129","v":["πληθύνω","plēthýnō","play-thoo'-no","From another form of G4128; to increase (transitively or intransitively): - abound, multiply."]},{"k":"G4130","v":["πλήθω","plḗthō","play'-tho","A prolonged form of a primary word πλέω pleō (which appears only as an alternate in certain tenses and in the reduplicated form of πίμπλημι pimplēmi to “fill” (literally or figuratively [imbue, influence, supply]); specifically to fulfil (time): - accomplish, full (. . . come), furnish."]},{"k":"G4131","v":["πλήκτης","plḗktēs","plake'-tace","From G4141; a smiter, that is, pugnacious (quarrelsome): - striker."]},{"k":"G4132","v":["πλήμμυρα","plḗmmyra","plame-moo'-rah","Prolongation from G4130; flood tide, that is, (by analogy) a freshet: - flood."]},{"k":"G4133","v":["πλήν","plḗn","plane","From G4119; moreover (besides), that is, albeit, save that, rather, yet: - but (rather), except, nevertheless, notwithstanding, save, than."]},{"k":"G4134","v":["πλήρης","plḗrēs","play'-race","From G4130; replete, or covered over; by analogy complete: - full."]},{"k":"G4135","v":["πληροφορέω","plērophoréō","play-rof-or-eh'-o","From G4134 and G5409; to carry out fully (in evidence), that is, completely assure (or convince), entirely accomplish: - most surely believe, fully know (persuade), make full proof of."]},{"k":"G4136","v":["πληροφορία","plērophoría","play-rof-or-ee'-ah","From G4135; entire confidence: - (full) assurance."]},{"k":"G4137","v":["πληρόω","plēróō","play-ro'-o","From G4134; to make replete, that is, (literally) to cram (a net), level up (a hollow), or (figuratively) to furnish (or imbue, diffuse, influence), satisfy, execute (an office), finish (a period or task), verify (or coincide with a prediction), etc.: - accomplish, X after, (be) complete, end, expire, fill (up), fulfil, (be, make) full (come), fully preach, perfect, supply."]},{"k":"G4138","v":["πλήρωμα","plḗrōma","play'-ro-mah","From G4137; repletion or completion, that is, (subjectively) what fills (as contents, supplement, copiousness, multitude), or (objectively) what is filled (as container, performance, period): - which is put in to fill up, piece that filled up, fulfilling, full, fulness."]},{"k":"G4139","v":["πλησίον","plēsíon","play-see'-on","Neuter of a derivative of πέλας pelas (near); (adverb) close by; as noun, a neighbor, that is, fellow (as man, countryman, Christian or friend): - near, neighbour."]},{"k":"G4140","v":["πλησμονή","plēsmonḗ","place-mon-ay'","From a presumed derivative of G4130; a filling up, that is, (figuratively) gratification: - satisfying."]},{"k":"G4141","v":["πλήσσω","plḗssō","place'-so","Apparently another form of G4111 (through the idea of flattening out); to pound, that is, (figuratively) to inflict with (calamity): - smite. Compare G5180."]},{"k":"G4142","v":["πλοιάριον","ploiárion","ploy-ar'-ee-on","Neuter of a presumed derivative of G4143; a boat: - boat, little (small) ship."]},{"k":"G4143","v":["πλοῖον","ploîon","ploy'-on","From G4126; a sailer, that is, vessel: - ship (-ping)."]},{"k":"G4144","v":["πλόος","plóos","plo'-os","From G4126; a sail, that is, navigation: - course, sailing, voyage."]},{"k":"G4145","v":["πλούσιος","ploúsios","ploo'-see-os","From G4149; wealthy; figuratively abounding with: - rich."]},{"k":"G4146","v":["πλουσίως","plousíōs","ploo-see'-oce","From G4145; copiously: - abundantly, richly."]},{"k":"G4147","v":["πλουτέω","ploutéō","ploo-teh'-o","From G4148; to be (or become) wealthy (literally or figuratively): - be increased with goods, (be made, wax) rich."]},{"k":"G4148","v":["πλουτίζω","ploutízō","ploo-tid'-zo","From G4149; to make wealthy (figuratively): - en- (make) rich."]},{"k":"G4149","v":["πλοῦτος","ploûtos","ploo'-tos","From the base of G4130; wealth (as fulness), that is, (literally) money, possessions, or (figuratively) abundance, richness, (specifically) valuable bestowment: - riches."]},{"k":"G4150","v":["πλύνω","plýnō","ploo'-no","A prolonged form of an obsolete πλύω pluō ploo'-o (to “flow”); to “plunge”, that is, launder clothing: - wash. Compare G3068, G3538."]},{"k":"G4151","v":["πνεῦμα","pneûma","pnyoo'-mah","From G4154; a current of air, that is, breath (blast) or a breeze; by analogy or figuratively a spirit, that is, (human) the rational soul, (by implication) vital principle, mental disposition, etc., or (superhuman) an angel, daemon, or (divine) God, Christ’s spirit, the Holy spirit: - ghost, life, spirit (-ual, -ually), mind. Compare G5590."]},{"k":"G4152","v":["πνευματικός","pneumatikós","pnyoo-mat-ik-os'","From G4151; non-carnal, that is, (humanly) ethereal (as opposed to gross), or (daemoniacally) a spirit (concretely), or (divinely) supernatural, regenerate, religious: - spiritual. Compare G5591."]},{"k":"G4153","v":["πνευματικῶς","pneumatikōs","pnyoo-mat-ik-oce'","Adverb from G4152; non-physically, that is, divinely, figuratively: - spiritually."]},{"k":"G4154","v":["πνέω","pnéō","pneh'-o","A primary word; to breathe hard, that is, breeze: - blow. Compare G5594."]},{"k":"G4155","v":["πνίγω","pnígō","pnee'-go","Strengthened from G4154; to wheeze, that is, (causative by implication) to throttle or strangle (drown): - choke, take by the throat."]},{"k":"G4156","v":["πνικτός","pniktós","pnik-tos'","From G4155; throttled, that is, (neuter concretely) an animal choked to death (not bled): - strangled."]},{"k":"G4157","v":["πνοή","pnoḗ","pno-ay'","From G4154; respiration, a breeze: - breath, wind."]},{"k":"G4158","v":["ποδήρης","podḗrēs","pod-ay'-race","From G4228 and another element of uncertain affinity; a dress (G2066 implied) reaching the ankles: - garment down to the foot."]},{"k":"G4159","v":["πόθεν","póthen","poth'-en","From the base of G4213 with enclitic adverb of origin; from which (as interrogitive) or what (as relative) place, state, source or cause: - whence."]},{"k":"G4160","v":["ποιέω","poiéō","poy-eh'-o","Apparently a prolonged form of an obsolete primary; to make or do (in a very wide application, more or less direct): - abide, + agree, appoint, X avenge, + band together, be, bear, + bewray, bring (forth), cast out, cause, commit, + content, continue, deal, + without any delay, (would) do (-ing), execute, exercise, fulfil, gain, give, have, hold, X journeying, keep, + lay wait, + lighten the ship, make, X mean, + none of these things move me, observe, ordain, perform, provide, + have purged, purpose, put, + raising up, X secure, shew, X shoot out, spend, take, tarry, + transgress the law, work, yield. Compare G4238."]},{"k":"G4161","v":["ποίημα","poíēma","poy'-ay-mah","From G4160; a product, that is, fabric (literally or figuratively): - thing that is made, workmanship."]},{"k":"G4162","v":["ποίησις","poíēsis","poy'-ay-sis","From G4160; action, that is, performance (of the law): - deed."]},{"k":"G4163","v":["ποιητής","poiētḗs","poy-ay-tace'","From G4160; a performer; specifically a “poet”: - doer, poet."]},{"k":"G4164","v":["ποικίλος","poikílos","poy-kee'-los","Of uncertain derivation; motley, that is, various in character: - divers, manifold."]},{"k":"G4165","v":["ποιμαίνω","poimaínō","poy-mah'-ee-no","From G4166; to tend as a shepherd (or figuratively superviser): - feed (cattle), rule."]},{"k":"G4166","v":["ποιμήν","poimḗn","poy-mane'","Of uncertain affinity; a shepherd (literally or figuratively): - shepherd, pastor."]},{"k":"G4167","v":["ποίμνη","poímnē","poym'-nay","Contracted from G4165; a flock (literally or figuratively): - flock, fold."]},{"k":"G4168","v":["ποίμνιον","poímnion","poym'-nee-on","Neuter of a presumed derivative of G4167; a flock, that is, (figuratively) group (of believers): - flock."]},{"k":"G4169","v":["ποῖος","poîos","poy'-os","From the base of G4226 and G3634; individualizing interrogitive (of character) what sort of, or (of number) which one: - what (manner of), which."]},{"k":"G4170","v":["πολεμέω","poleméō","pol-em-eh'-o","From G4171; to be (engaged) in warfare, that is, to battle (literally or figuratively): - fight, (make) war."]},{"k":"G4171","v":["πόλεμος","pólemos","pol'-em-os","From πέλομαι pelomai (to bustle); warfare (literally or figuratively; a single encounter or a series): - battle, fight, war."]},{"k":"G4172","v":["πόλις","pólis","pol'-is","Probably from the same as G4171, or perhaps from G4183; a town (properly with walls, of greater or less size): - city."]},{"k":"G4173","v":["πολιτάρχης","politárchēs","pol-it-ar'-khace","From G4172 and G757; a town officer, that is, magistrate: - ruler of the city."]},{"k":"G4174","v":["πολιτεία","politeía","pol-ee-ti'-ah","From G4177 (“polity”); citizenship; concretely a community: - commonwealth, freedom."]},{"k":"G4175","v":["πολίτευμα","políteuma","pol-it'-yoo-mah","From G4176; a community, that is, (abstractly) citizenship (figuratively): - conversation."]},{"k":"G4176","v":["πολιτεύομαι","politeúomai","pol-it-yoo'-om-ahee","Middle voice of a derivative of G4177; to behave as a citizen (figuratively): - let conversation be, live."]},{"k":"G4177","v":["πολίτης","polítēs","pol-ee'-tace","From G4172; a townsman: - citizen."]},{"k":"G4178","v":["πολλάκις","pollákis","pol-lak'-is","Multiplicative adverb from G4183; many times, that is, frequently: - oft (-en, -en-times, -times)."]},{"k":"G4179","v":["πολλαπλασίων","pollaplasíōn","pol-lap-las-ee'-ohn","From G4183 and probably a derivative of G4120; manifold, that is, (neuter as noun) very much more: - manifold more."]},{"k":"G4180","v":["πολυλογία","polylogía","pol-oo-log-ee'-ah","From a compound of G4183 and G3056; loquacity, that is, prolixity: - much speaking."]},{"k":"G4181","v":["πολυμερῶς","polymerōs","pol-oo-mer'-oce","Adverb from a compound of G4183 and G3313; in many portions, that is, variously as to time and agency (piecemeal): - at sundry times."]},{"k":"G4182","v":["πολυποίκιλος","polypoíkilos","pol-oo-poy'-kil-os","From G4183 and G4164; much variegated, that is, multifarious: - manifold."]},{"k":"G4183","v":["πολύς","polýs","pol-oos'","Including the forms from the alternate “pollos”; (singular) much (in any respect) or (plural) many; neuter (singular) as adverb largely; neuter (plural) as adverb or noun often, mostly, largely: - abundant, + altogether, common, + far (passed, spent), (+ be of a) great (age, deal, -ly, while), long, many, much, oft (-en [-times]), plenteous, sore, straitly. Compare G4118, G4119."]},{"k":"G4184","v":["πολύσπλαγχνος","polýsplanchnos","pol-oo'-splankh-nos","From G4183 and G4698 (figuratively), extremely compassionate: - very pitiful."]},{"k":"G4185","v":["πολυτελής","polytelḗs","pol-oo-tel-ace'","From G4183 and G5056; extremely expensive: - costly, very precious, of great price."]},{"k":"G4186","v":["πολύτιμος","polýtimos","pol-oot'-ee-mos","From G4183 and G5092; extremely valuable: - very costly, of great price."]},{"k":"G4187","v":["πολυτρόπως","polytrópōs","pol-oot-rop'-oce","Adverb from a compound of G4183 and G5158; in many ways, that is, variously as to method or form: - in divers manners."]},{"k":"G4188","v":["πόμα","póma","pom'-ah","From the alternate of G4095; a beverage: - drink."]},{"k":"G4189","v":["πονηρία","ponēría","pon-ay-ree'-ah","From G4190; depravity, that is, (specifically) malice; plural (concretely) plots, sins: - iniquity, wickedness."]},{"k":"G4190","v":["πονηρός","ponērós","pon-ay-ros'","From a derivative of G4192; hurtful, that is, evil (properly in effect or influence, and thus differing from G2556, which refers rather to essential character, as well as from G4550, which indicates degeneracy from original virtue); figuratively calamitous; also (passively) ill, that is, diseased; but especially (morally) culpable, that is, derelict, vicious, facinorous; neuter (singular) mischief, malice, or (plural) guilt; masculine (singular) the devil, or (plural) sinners: - bad, evil, grievous, harm, lewd, malicious, wicked (-ness). See also G4191."]},{"k":"G4191","v":["πονηρότερος","ponēróteros","pon-ay-rot'-er-os","Comparative of G4190; more evil: - more wicked."]},{"k":"G4192","v":["πόνος","pónos","pon'-os","From the base of G3993; toil, that is, (by implication) anguish: - pain."]},{"k":"G4193","v":["Ποντικός","Pontikós","pon-tik-os'","From G4195; a Pontican, that is, native of Pontus: - born in Pontus."]},{"k":"G4194","v":["Πόντιος","Póntios","pon'-tee-os","Of Latin origin; apparently bridged; Pontius, a Roman: - Pontius."]},{"k":"G4195","v":["Πόντος","Póntos","pon'-tos","A sea; Pontus, a region of Asia Minor: - Pontus."]},{"k":"G4196","v":["Πόπλιος","Póplios","pop'-lee-os","Of Latin origin; apparently “popular”; Poplius (that is, Publius), a Roman: - Publius."]},{"k":"G4197","v":["πορεία","poreía","por-i'-ah","From G4198; travel (by land); figuratively (plural) proceedings, that is, career: - journey [-ing], ways."]},{"k":"G4198","v":["πορεύομαι","poreúomai","por-yoo'-om-ahee","Middle voice from a derivative of the same as G3984; to traverse, that is, travel (literally or figuratively; especially to remove [figuratively die], live, etc.): - depart, go (away, forth, one’s way, up), (make a, take a) journey, walk."]},{"k":"G4199","v":["πορθέω","porthéō","por-theh'-o","Prolonged version of πέρθω porthō (to sack); to ravage (figuratively): - destroy, waste."]},{"k":"G4200","v":["πορισμός","porismós","por-is-mos'","From a derivative of πόρος poros (a way, that is, means); furnishing (procuring), that is, (by implication) money getting (acquisition): - gain."]},{"k":"G4201","v":["Πόρκιος","Pórkios","por'-kee-os","Of Latin origin; apparently swinish; Porcius, a Roman: - Porcius."]},{"k":"G4202","v":["πορνεία","porneía","por-ni'-ah","From G4203; harlotry (including adultery and incest); figuratively idolatry: - fornication."]},{"k":"G4203","v":["πορνεύω","porneúō","porn-yoo'-o","From G4204; to act the harlot, that is, (literally) indulge unlawful lust (of either sex), or (figuratively) practise idolatry: - commit (fornication)."]},{"k":"G4204","v":["πόρνη","pórnē","por'-nay","Feminine of G4205; a strumpet; figuratively an idolater: - harlot, whore."]},{"k":"G4205","v":["πόρνος","pórnos","por'-nos","From πέρνημι pernēmi (to sell; akin to the base of G4097); a (male) prostitute (as venal), that is, (by analogy) a debauchee (libertine): - fornicator, whoremonger."]},{"k":"G4206","v":["πόῤῥω","pórrhō","por'-rho","Adverb from G4253; forwards, that is, at a distance: - far, a great way off. See also G4207."]},{"k":"G4207","v":["πόῤῥωθεν","pórrhōthen","por'-rho-then","From G4206 with adverbial enclitic of source; from far, or (by implication) at a distance, that is, distantly: - afar off."]},{"k":"G4208","v":["ποῤῥωτέρω","porrhōtérō","por-rho-ter'-o","Adverb comparative of G4206; farther, that is, a greater distance: - further."]},{"k":"G4209","v":["πορφύρα","porphýra","por-foo'-rah","Of Latin origin; the “purple” mussel, that is, (by implication) the red blue color itself, and finally, a garment dyed with it: - purple."]},{"k":"G4210","v":["πορφυροῦς","porphyroûs","por-foo-rooce'","From G4209; purpureal, that is, bluish red: - purple."]},{"k":"G4211","v":["πορφυρόπωλις","porphyrópōlis","por-foo-rop'-o-lis","Feminine of a compound of G4209 and G4453; a female trader in purple cloth: - seller of purple."]},{"k":"G4212","v":["ποσάκις","posákis","pos-ak'-is","Multiplicative from G4214; how many times: - how oft (-en)."]},{"k":"G4213","v":["πόσις","pósis","pos'-is","From the alternate of G4095; a drinking (the act), that is, (concretely) a draught: - drink."]},{"k":"G4214","v":["πόσος","pósos","pos'-os","From an obsolete “pos” (who, what) and G3739; interrogitive pronoun (of amount) how much (large, long or [plural] many): - how great (long, many), what."]},{"k":"G4215","v":["ποταμός","potamós","pot-am-os'","Probably from a derivative of the alternate of G4095 (compare G4224); a current, brook or freshet (as drinkable), that is, running water: - flood, river, stream, water."]},{"k":"G4216","v":["ποταμοφόρητος","potamophórētos","pot-am-of-or'-ay-tos","From G4215 and a derivative of G5409; river borne, that is, overwhelmed by a stream: - carried away of the flood."]},{"k":"G4217","v":["ποταπός","potapós","pot-ap-os'","Apparently from G4219 and the base of G4226; interrogitive whatever, that is, of what possible sort: - what (manner of)."]},{"k":"G4218","v":["ποτέ","poté","pot-eh'","From the base of G4225 and G5037; indefinite adverb, at some time, ever: - afore- (any, some-) time (-s), at length (the last), (+ n-) ever, in the old time, in time past, once, when."]},{"k":"G4219","v":["πότε","póte","pot'-eh","From the base of G4226 and G5037; interrogitive adverb, at what time: - + how long, when."]},{"k":"G4220","v":["πότερον","póteron","pot'-er-on","Neuter of a comparative of the base of G4226; interrogitive as adverb, which (of two), that is, is it this or that: - whether."]},{"k":"G4221","v":["ποτήριον","potḗrion","pot-ay'-ree-on","Neuter of a derivative of the alternate of G4095; a drinking vessel; by extension the contents thereof, that is, a cupful (draught); figuratively a lot or fate: - cup."]},{"k":"G4222","v":["ποτίζω","potízō","pot-id'-zo","From a derivative of the alternate of G4095; to furnish drink, irrigate: - give (make) to drink, feed, water."]},{"k":"G4223","v":["Ποτίολοι","Potíoloi","pot-ee'-ol-oy","Of Latin origin; little wells, that is, mineral springs; Potioli (that is, Puteoli), a place in Italy: - Puteoli."]},{"k":"G4224","v":["πότος","pótos","pot'-os","From the alternate of G4095; a drinking bout or carousal: - banqueting."]},{"k":"G4225","v":["πού","poú","poo","Genitive case of πός pos, an indefinite pronoun    (some) otherwise obsolete (compare G4214); as adverb of place, somewhere, that is, nearly: - about, a certain place."]},{"k":"G4226","v":["ποῦ","poû","poo","Genitive case of πός pos, an interrogitive pronoun, (what) otherwise obsolete (perhaps the same as G4225 used with the rising slide of inquiry); as adverb of place; at (by implication to) what locality: - where, whither."]},{"k":"G4227","v":["Πούδης","Poúdēs","poo'-dace","Of Latin origin; modest; Pudes (that is, Pudens), a Christian: - Pudens."]},{"k":"G4228","v":["πούς","poús","pooce","A primary word; a “foot” (figuratively or literally): - foot (-stool)."]},{"k":"G4229","v":["πρᾶγμα","prâgma","prag'-mah","From G4238; a deed; by implication an affair; by extension an object (material): - business, matter, thing, work."]},{"k":"G4230","v":["πραγματεία","pragmateía","prag-mat-i'-ah","From G4231; a transaction, that is, negotiation: - affair."]},{"k":"G4231","v":["πραγματεύομαι","pragmateúomai","prag-mat-yoo'-om-ahee","From G4229; to busy oneself with, that is, to trade: - occupy."]},{"k":"G4232","v":["πραιτώριον","praitṓrion","prahee-to'-ree-on","Of Latin origin; the praetorium or governor’s court room (sometimes including the whole edifice and camp): - (common, judgment) hall (of judgment), palace, praetorium."]},{"k":"G4233","v":["πράκτωρ","práktōr","prak'-tor","From a derivative of G4238; a practiser, that is, (specifically) an official collector: - officer."]},{"k":"G4234","v":["πρᾶξις","prâxis","prax'-is","From G4238; practice, that is, (concretely) an act; by extension a function: - deed, office, work."]},{"k":"G4235","v":["πρᾷος","prâios","prah'-os","A form of G4239, used in certain parts; gentle, that is, humble: - meek."]},{"k":"G4236","v":["πρᾳότης","praiótēs","prah-ot'-ace","From G4235; gentleness; by implication humility: - meekness."]},{"k":"G4237","v":["πρασιά","prasiá","pras-ee-ah'","Perhaps from πράσον prason (a leek, and so an onion patch); a garden plot, that is, (by implication of regular beds) a row (repeated in plural by Hebraism to indicate an arrangement): - in ranks."]},{"k":"G4238","v":["πράσσω","prássō","pras'-so","A primary verb; to “practise”, that is, perform repeatedly or habitually (thus differing from G4160, which properly refers to a single act); by implication to execute, accomplish, etc.; specifically to collect (dues), fare (personally): - commit, deeds, do, exact, keep, require, use arts."]},{"k":"G4239","v":["πραΰς","praÿs","prah-ooce'","Apparently a primary word; mild, that is, (by implication) humble: - meek. See also G4235."]},{"k":"G4240","v":["πραΰτης","praÿtēs","prah-oo'-tace","From G4239; mildness, that is, (by implication) humility: - meekness."]},{"k":"G4241","v":["πρέπω","prépō","prep'-o","Apparently a primary verb; to tower up (be conspicuous), that is, (by implication) to be suitable or proper (third person singular present indicative, often used impersonally, it is fit or right): - become, comely."]},{"k":"G4242","v":["πρεσβεία","presbeía","pres-bi'-ah","From G4243; seniority (eldership), that is, (by implication) an embassy (concretely ambassadors): - ambassage, message."]},{"k":"G4243","v":["πρεσβεύω","presbeúō","pres-byoo'-o","From the base of G4245; to be a senior, that is, (by implication) act as a representative (figuratively preacher): - be an ambassador."]},{"k":"G4244","v":["πρεσβυτέριον","presbytérion","pres-boo-ter'-ee-on","Neuter of a presumed derivative of G4245; the order of elders, that is, (specifically) Israelite Sanhedrim or Christian “presbytery”: - (estate of) elder (-s), presbytery."]},{"k":"G4245","v":["πρεσβύτερος","presbýteros","pres-boo'-ter-os","Comparative of πρέσβυς presbus (elderly); older; as noun, a senior; specifically an Israelite Sanhedrist (also figuratively, member of the celestial council) or Christian “presbyter”: - elder (-est), old."]},{"k":"G4246","v":["πρεσβύτης","presbýtēs","pres-boo'-tace","From the same as G4245; an old man: - aged (man), old man."]},{"k":"G4247","v":["πρεσβῦτις","presbŷtis","pres-boo'-tis","Feminine of G4246; an old woman: - aged woman."]},{"k":"G4248","v":["πρηνής","prēnḗs","pray-nace'","From G4253; leaning (falling) forward (“prone”), that is, head foremost: - headlong."]},{"k":"G4249","v":["πρίζω","prízō","prid'-zo","A strengthened form of a primary word πρίω priō, (to saw); to saw in two: - saw asunder."]},{"k":"G4250","v":["πρίν","prín","prin","Adverb from G4253; prior, sooner: - before (that), ere."]},{"k":"G4251","v":["Πρίσκα","Príska","pris'-kah","Of Latin origin; feminine of Priscus, ancient; Priska, a Christian woman: - Prisca. See also G4252."]},{"k":"G4252","v":["Πρίσκιλλα","Prískilla","pris'-cil-lah","Diminutive of G4251; Priscilla (that is, little Prisca), a Christian woman: - Priscilla."]},{"k":"G4253","v":["πρό","pró","pro","A primary preposition; “fore”, that is, in front of, prior (figuratively superior) to. In compounds it retains the same significations: - above, ago, before, or ever. In compounds it retains the same significations."]},{"k":"G4254","v":["προάγω","proágō","pro-ag'-o","From G4253 and G71; to lead forward (magisterially); intransitively to precede (in place or time [participle previous]): - bring (forth, out), go before."]},{"k":"G4255","v":["προαιρέομαι","proairéomai","pro-ahee-reh'-om-ahee","From G4253 and G138; to choose for oneself before another thing (prefer), that is, (by implication) to propose (intend): - purpose."]},{"k":"G4256","v":["προαιτιάομαι","proaitiáomai","pro-ahee-tee-ah'-om-ahee","From G4253 and a derivative of G156; to accuse already, that is, previously charge: - prove before."]},{"k":"G4257","v":["προακούω","proakoúō","pro-ak-oo'-o","From G4253 and G191; to hear already, that is, anticipate: - hear before."]},{"k":"G4258","v":["προαμαρτάνω","proamartánō","pro-am-ar-tan'-o","From G4253 and G264; to sin previously (to conversion): - sin already, heretofore sin."]},{"k":"G4259","v":["προαύλιον","proaúlion","pro-ow'-lee-on","Neuter of a presumed compound of G4253 and G833; a fore-court, that is, vestibule (alley way): - porch."]},{"k":"G4260","v":["προβαίνω","probaínō","prob-ah'-ee-no","From G4253 and the base of G939; to walk forward, that is, advance (literally or in years): - + be of a great age, go farther (on), be well stricken."]},{"k":"G4261","v":["προβάλλω","probállō","prob-al'-lo","From G4253 and G906; to throw forward, that is, push to the front, germinate: - put forward, shoot forth."]},{"k":"G4262","v":["προβατικός","probatikós","prob-at-ik-os'","From G4263; relating to sheep, that is, (a gate) through which they were led into Jerusalem: - sheep (market)."]},{"k":"G4263","v":["πρόβατον","próbaton","prob'-at-on","Properly the neuter of a presumed derivative of G4260; something that walks forward (a quadruped), that is, (specifically) a sheep (literally or figuratively): - sheep ([-fold])."]},{"k":"G4264","v":["προβιβάζω","probibázō","prob-ib-ad'-zo","From G4253 and a reduplicated form of G971; to force forward, that is, bring to the front, instigate: - draw, before instruct."]},{"k":"G4265","v":["προβλέπω","problépō","prob-lep'-o","From G4253 and G991; to look out beforehand, that is, furnish in advance: - provide."]},{"k":"G4266","v":["προγίνομαι","progínomai","prog-in'-om-ahee","From G4253 and G1096; to be already, that is, have previously transpired: - be past."]},{"k":"G4267","v":["προγινώσκω","proginṓskō","prog-in-oce'-ko","From G4253 and G1097; to know beforehand, that is, foresee: - foreknow (ordain), know (before)."]},{"k":"G4268","v":["πρόγνωσις","prógnōsis","prog'-no-sis","From G4267; forethought: - foreknowledge."]},{"k":"G4269","v":["πρόγονος","prógonos","prog'-on-os","From G4266; an ancestor, (grand-) parent: - forefather, parent."]},{"k":"G4270","v":["προγράφω","prográphō","prog-raf'-o","From G4253 and G1125; to write previously; figuratively to announce, prescribe: - before ordain, evidently set forth, write (afore, aforetime)."]},{"k":"G4271","v":["πρόδηλος","pródēlos","prod'-ay-los","From G4253 and G1212; plain before all men, that is, obvious: - evident, manifest (open) beforehand."]},{"k":"G4272","v":["προδίδωμι","prodídōmi","prod-id'-o-mee","From G4253 and G1325; to give before the other party has given: - first give."]},{"k":"G4273","v":["προδότης","prodótēs","prod-ot'-ace","From G4272 (in the sense of giving forward into another’s [the enemy’s] hands); a surrender: - betrayer, traitor."]},{"k":"G4274","v":["πρόδρομος","pródromos","prod'-rom-os","From the alternate of G4390; a runner ahead, that is, scout (figuratively precursor): - forerunner."]},{"k":"G4275","v":["προείδω","proeídō","pro-i'-do","From G4253 and G1492; foresee: - foresee, saw before."]},{"k":"G4276","v":["προελπίζω","proelpízō","pro-el-pid'-zo","From G4253 and G1679; to hope in advance of other confirmation: - first trust."]},{"k":"G4277","v":["προέπω","proépō","pro-ep'-o","From G4253 and G2036; to say already, to predict: - forewarn, say (speak, tell) before. Compare G4280."]},{"k":"G4278","v":["προενάρχομαι","proenárchomai","pro-en-ar'-khom-ahee","From G4253 and G1728; to commence already: - begin (before)."]},{"k":"G4279","v":["προεπαγγέλλομαι","proepangéllomai","pro-ep-ang-ghel'-lom-ahee","Middle voice from G4253 and G1861; to promise of old: - promise before."]},{"k":"G4280","v":["προερέω","proeréō","pro-er-eh'-o","From G4253 and G2046; used as alternate of G4277; to say already, predict: - foretell, say (speak, tell) before."]},{"k":"G4281","v":["προέρχομαι","proérchomai","pro-er'-khom-ahee","From G4253 and G2064 (including its alternate); to go onward, precede (in place or time): - go before (farther, forward), outgo, pass on."]},{"k":"G4282","v":["προετοιμάζω","proetoimázō","pro-et-oy-mad'-zo","From G4253 and G2090; to fit up in advance (literally or figuratively): - ordain before, prepare afore."]},{"k":"G4283","v":["προευαγγελίζομαι","proeuangelízomai","pro-yoo-ang-ghel-id'-zom-ahee","Middle voice from G4253 and G2097; to announce glad news in advance: - preach before the gospel."]},{"k":"G4284","v":["προέχομαι","proéchomai","pro-ekh-om-ahee","Middle voice from G4253 and G2192; to hold oneself before others, that is, (figuratively) to excel: - be better."]},{"k":"G4285","v":["προηγέομαι","proēgéomai","pro-ay-geh'-om-ahee","From G4253 and G2233; to lead the way for others, that is, show deference: - prefer."]},{"k":"G4286","v":["πρόθεσις","próthesis","proth'-es-is","From G4388; a setting forth, that is, (figuratively) proposal (intention); specifically the show bread (in the Temple) as exposed before God: - purpose, shew [-bread]."]},{"k":"G4287","v":["προθέσμιος","prothésmios","proth-es'-mee-os","From G4253 and a derivative of G5087; fixed beforehand, that is, (feminine with G2250 implied) a designated day: - time appointed."]},{"k":"G4288","v":["προθυμία","prothymía","proth-oo-mee'-ah","From G4289; predisposition, that is, alacrity: - forwardness of mind, readiness (of mind), ready (willing) mind."]},{"k":"G4289","v":["πρόθυμος","próthymos","proth'-oo-mos","From G4253 and G2372; forward in spirit, that is, predisposed; neuter (as noun) alacrity: - ready, willing."]},{"k":"G4290","v":["προθύμως","prothýmōs","proth-oo'-moce","Adverb from G4289; with alacrity: - willingly."]},{"k":"G4291","v":["προΐστημι","proḯstēmi","pro-is'-tay-mee","From G4253 and G2476; to stand before, that is, (in rank) to preside, or (by implication) to practise: - maintain, be over, rule."]},{"k":"G4292","v":["προκαλέομαι","prokaléomai","prok-al-eh'-om-ahee","Middle voice from G4253 and G2564; to call forth to oneself (challenge), that is, (by implication) to irritate: - provoke."]},{"k":"G4293","v":["προκαταγγέλλω","prokatangéllō","prok-at-ang-ghel'-lo","From G4253 and G2605; to announce beforehand, that is, predict, promise: - foretell, have notice (shew) before."]},{"k":"G4294","v":["προκαταρτίζω","prokatartízō","prok-at-ar-tid'-zo","From G4253 and G2675; to prepare in advance: - make up beforehand."]},{"k":"G4295","v":["πρόκειμαι","prókeimai","prok'-i-mahee","From G4253 and G2749; to lie before the view, that is, (figuratively) to be present (to the mind), to stand forth (as an example or reward): - be first, set before (forth)."]},{"k":"G4296","v":["προκηρύσσω","prokērýssō","prok-ay-rooce'-so","From G4253 and G2784; to herald (that is, proclaim) in advance: - before (first) preach."]},{"k":"G4297","v":["προκοπή","prokopḗ","prok-op-ay'","From G4298; progress, that is, advancement (subjectively or objectively): - furtherance, profit."]},{"k":"G4298","v":["προκόπτω","prokóptō","prok-op'-to","From G4253 and G2875; to drive forward (as if by beating), that is, (figuratively and intransitively) to advance (in amount, to grow; in time, to be well along): - increase, proceed, profit, be far spent, wax."]},{"k":"G4299","v":["πρόκριμα","prókrima","prok'-ree-mah","From a compound of G4253 and G2919; a prejudgment (prejudice), that is, prepossession: - prefer one before another."]},{"k":"G4300","v":["προκυρόω","prokyróō","prok-oo-ro'-o","From G4253 and G2964; to ratify previously: - confirm before."]},{"k":"G4301","v":["προλαμβάνω","prolambánō","prol-am-ban'-o","From G4253 and G2983; to take in advance, that is, (literally) eat before others have an opportunity; (figuratively) to anticipate, surprise: - come aforehand, overtake, take before."]},{"k":"G4302","v":["προλέγω","prolégō","prol-eg'-o","From G4253 and G3004; to say beforehand, that is, predict, forewarn: - foretell, tell before."]},{"k":"G4303","v":["προμαρτύρομαι","promartýromai","prom-ar-too'-rom-ahee","From G4253 and G3143; to be a witness in advance, that is, predict: - testify beforehand."]},{"k":"G4304","v":["προμελετάω","promeletáō","prom-el-et-ah'-o","From G4253 and G3191; to premeditate: - meditate before."]},{"k":"G4305","v":["προμεριμνάω","promerimnáō","prom-er-im-nah'-o","From G4253 and G3309; to care (anxiously) in advance: - take thought beforehand."]},{"k":"G4306","v":["προνοέω","pronoéō","pron-o-eh'-o","From G4253 and G3539; to consider in advance, that is, look out for beforehand (active voice by way of maintenance for others; middle voice by way of circumspection for oneself): - provide (for)."]},{"k":"G4307","v":["πρόνοια","prónoia","pron'-oy-ah","From G4306; forethought, that is, provident care or supply: - providence, provision."]},{"k":"G4308","v":["προοράω","prooráō","pro-or-ah'-o","From G4253 and G3708; to behold in advance, that is, (active voice) to notice (another) previously, or (middle voice) to keep in (one’s own) view: - foresee, see before."]},{"k":"G4309","v":["προορίζω","proorízō","pro-or-id'-zo","From G4253 and G3724; to limit in advance, that is, (figuratively) predetermine: - determine before, ordain, predestinate."]},{"k":"G4310","v":["προπάσχω","propáschō","prop-as'-kho","From G4253 and G3958; to undergo hardship previously: - suffer before."]},{"k":"G4311","v":["προπέμπω","propémpō","prop-em'-po","From G4253 and G3992; to send forward, that is, escort or aid in travel: - accompany, bring (forward) on journey (way), conduct forth."]},{"k":"G4312","v":["προπετής","propetḗs","prop-et-ace'","From a compound of G4253 and G4098; falling forward, that is, headlong (figuratively precipitate): - heady, rash [-ly]."]},{"k":"G4313","v":["προπορεύομαι","proporeúomai","prop-or-yoo'-om-ahee","From G4253 and G4198; to precede (as guide or herald): - go before."]},{"k":"G4314","v":["πρός","prós","pros","A strengthened form of G4253; a preposition of direction; forward to, that is, toward (with the genitive case the side of, that is, pertaining to; with the dative case by the side of, that is, near to; usually with the accusative case the place, time, occasion, or respect, which is the destination of the relation, that is, whither or for which it is predicated): - about, according to, against, among, at, because of, before, between, ([where-]) by, for, X at thy house, in, for intent, nigh unto, of, which pertain to, that, to (the end that), + together, to ([you]) -ward, unto, with (-in). In compounds it denotes essentially the same applications, namely, motion towards, accession to, or nearness at."]},{"k":"G4315","v":["προσάββατον","prosábbaton","pros-ab'-bat-on","From G4253 and G4521; a fore sabbath, that is, the sabbath eve: - day before the sabbath. Compare G3904."]},{"k":"G4316","v":["προσαγορεύω","prosagoreúō","pros-ag-or-yoo'-o","From G4314 and a derivative of G58 (meaning to harangue); to address, that is, salute by name: - call."]},{"k":"G4317","v":["προσάγω","proságō","pros-ag'-o","From G4314 and G71; to lead towards, that is, (transitively) to conduct near (summon, present), or (intransitively) to approach: - bring, draw near,"]},{"k":"G4318","v":["προσαγωγή","prosagōgḗ","pros-ag-ogue-ay'","From G4317 (compare G72); admission: - access."]},{"k":"G4319","v":["προσαιτέω","prosaitéō","pros-ahee-teh'-o","From G4314 and G154; to ask repeatedly (importune), that is, solicit: - beg."]},{"k":"G4320","v":["προσαναβαίνω","prosanabaínō","pros-an-ab-ah'-ee-no","From G4314 and G305; to ascend farther, that is, be promoted (take an upper (more honorable) seat): - go up."]},{"k":"G4321","v":["προσαναλίσκω","prosanalískō","pros-an-al-is'-ko","From G4314 and G355; to expend further: - spend."]},{"k":"G4322","v":["προσαναπληρόω","prosanaplēróō","pros-an-ap-lay-ro'-o","From G4314 and G378; to fill up further, that is, furnish fully: - supply."]},{"k":"G4323","v":["προσανατίθημι","prosanatíthēmi","pros-an-at-ith'-ay-mee","From G4314 and G394; to lay up in addition, that is, (middle voice and figuratively) to impart or (by implication) to consult: - in conference add, confer."]},{"k":"G4324","v":["προσαπειλέω","prosapeiléō","pros-ap-i-leh'-o","From G4314 and G546; to menace additionally: - threaten further."]},{"k":"G4325","v":["προσδαπανάω","prosdapanáō","pros-dap-an-ah'-o","From G4314 and G1159; to expend additionally: - spend more."]},{"k":"G4326","v":["προσδέομαι","prosdéomai","pros-deh'-om-ahee","From G4314 and G1189; to require additionally, that is, want further: - need."]},{"k":"G4327","v":["προσδέχομαι","prosdéchomai","pros-dekh'-om-ahee","From G4314 and G1209; to admit (to intercourse, hospitality, credence or (figuratively) endurance); by implication to await (with confidence or patience): - accept, allow, look (wait) for, take."]},{"k":"G4328","v":["προσδοκάω","prosdokáō","pros-dok-ah'-o","From G4314 and δοκεύω dokeuō (to watch); to anticipate (in thought, hope or fear); by implication to await: - (be in) expect (-ation), look (for), when looked, tarry, wait for."]},{"k":"G4329","v":["προσδοκία","prosdokía","pros-dok-ee'-ah","From G4328; apprehension (of evil); by implication infliction anticipated: - expectation, looking after."]},{"k":"G4330","v":["προσεάω","proseáō","pros-eh-ah'-o","From G4314 and G1439; to permit further progress: - suffer."]},{"k":"G4331","v":["προσεγγίζω","prosengízō","pros-eng-ghid'-zo","From G4314 and G1448; to approach near: - come nigh."]},{"k":"G4332","v":["προσεδρεύω","prosedreúō","pros-ed-ryoo'-o","From a compound of G4314 and the base of G1476; to sit near, that is, attend as a servant: - wait at."]},{"k":"G4333","v":["προσεργάζομαι","prosergázomai","pros-er-gad'-zom-ahee","From G4314 and G2038; to work additionally, that is, (by implication) acquire besides: - gain."]},{"k":"G4334","v":["προσέρχομαι","prosérchomai","pros-er'-khom-ahee","From G4314 and G2064 (including its alternate); to approach, that is, (literally) come near, visit, or (figuratively) worship, assent to: - (as soon as he) come (unto), come thereunto, consent, draw near, go (near, to, unto)."]},{"k":"G4335","v":["προσευχή","proseuchḗ","pros-yoo-khay'","From G4336; prayer (worship); by implication an oratory (chapel): - X pray earnestly, prayer."]},{"k":"G4336","v":["προσεύχομαι","proseúchomai","pros-yoo'-khom-ahee","From G4314 and G2172; to pray to God, that is, supplicate, worship: - pray (X earnestly, for), make prayer."]},{"k":"G4337","v":["προσέχω","proséchō","pros-ekh'-o","From G4314 and G2192; (figuratively) to hold the mind (G3563 implied) towards, that is, pay attention to, be cautious about, apply oneself to, adhere to: - (give) attend (-ance, -ance at, -ance to, unto), beware, be given to, give (take) heed (to, unto) have regard."]},{"k":"G4338","v":["προσηλόω","prosēlóō","pros-ay-lo'-o","From G4314 and a derivative of G2247; to peg to, that is, spike fast: - nail to."]},{"k":"G4339","v":["προσήλυτος","prosḗlytos","pros-ay'-loo-tos","From the alternate of G4334; an arriver from a foreign region, that is, (specifically) an acceder (convert) to Judaism (“proselyte”): - proselyte."]},{"k":"G4340","v":["πρόσκαιρος","próskairos","pros'-kahee-ros","From G4314 and G2540; for the occasion only, that is, temporary: - dur- [eth] for awhile, endure for a time, for a season, temporal."]},{"k":"G4341","v":["προσκαλέομαι","proskaléomai","pros-kal-eh'-om-ahee","Middle voice from G4314 and G2564; to call toward oneself, that is, summon, invite: - call (for, to, unto)."]},{"k":"G4342","v":["προσκαρτερέω","proskarteréō","pros-kar-ter-eh'-o","From G4314 and G2594; to be earnest towards, that is, (to a thing) to persevere, be constantly diligent, or (in a place) to attend assiduously all the exercises, or (to a person) to adhere closely to (as a servitor): - attend (give self) continually (upon), continue (in, instant in, with), wait on (continually)."]},{"k":"G4343","v":["προσκαρτέρησις","proskartérēsis","pros-kar-ter'-ay-sis","From G4342; persistency: - perseverance."]},{"k":"G4344","v":["προσκεφάλαιον","proskephálaion","pros-kef-al'-ahee-on","Neuter of a presumed compound of G4314 and G2776; something for the head, that is, a cushion: - pillow."]},{"k":"G4345","v":["προσκληρόω","prosklēróō","pros-klay-ro'-o","From G4314 and G2820; to give a common lot to, that is, (figuratively) to associate with: - consort with."]},{"k":"G4346","v":["πρόσκλισις","prósklisis","pros'-klis-is","From a compound of G4314 and G2827; a leaning towards, that is, (figuratively) proclivity (favoritism): - partiality."]},{"k":"G4347","v":["προσκολλάω","proskolláō","pros-kol-lah'-o","From G4314 and G2853; to glue to, that is, (figuratively) to adhere: - cleave, join (self)."]},{"k":"G4348","v":["πρόσκομμα","próskomma","pros'-kom-mah","From G4350; a stub, that is, (figuratively) occasion of apostasy: - offence, stumbling (-block,[-stone])."]},{"k":"G4349","v":["προσκοπή","proskopḗ","pros-kop-ay'","From G4350; a stumbling, that is, (figuratively and concretely) occasion of sin: - offence."]},{"k":"G4350","v":["προσκόπτω","proskóptō","pros-kop'-to","From G4314 and G2875; to strike at, that is, surge against (as water); specifically to stub on, that is, trip up (literally or figuratively): - beat upon, dash, stumble (at)."]},{"k":"G4351","v":["προσκυλίω","proskylíō","pros-koo-lee'-o","From G4314 and G2947; to roll towards, that is, block against: - roll (to)."]},{"k":"G4352","v":["προσκυνέω","proskynéō","pros-koo-neh'-o","From G4314 and probably a derivative of G2965 (meaning to kiss, like a dog licking his master’s hand); to fawn or crouch to, that is, (literally or figuratively) prostrate oneself in homage (do reverence to, adore): - worship."]},{"k":"G4353","v":["προσκυνητής","proskynētḗs","pros-koo-nay-tace'","From G4352; an adorer: - worshipper."]},{"k":"G4354","v":["προσλαλέω","proslaléō","pros-lal-eh'-o","From G4314 and G2980; to talk to, that is, converse with: - speak to (with)."]},{"k":"G4355","v":["προσλαμβάνω","proslambánō","pros-lam-ban'-o","From G4314 and G2983; to take to oneself, that is, use (food), lead (aside), admit (to friendship or hospitality): - receive, take (unto)."]},{"k":"G4356","v":["πρόσληψις","próslēpsis","pros'-lape-sis","From G4355; admission: - receiving."]},{"k":"G4357","v":["προσμένω","prosménō","pros-men'-o","From G4314 and G3306; to stay further, that is, remain in a place, with a person; figuratively to adhere to, persevere in: - abide still, be with, cleave unto, continue in (with)."]},{"k":"G4358","v":["προσορμίζω","prosormízō","pros-or-mid'-zo","From G4314 and a derivative of the same as G3730 (meaning to tie (anchor) or lull); to moor to, that is, (by implication) land at: - draw to the shore."]},{"k":"G4359","v":["προσοφείλω","prosopheílō","pros-of-i'-lo","From G4314 and G3784; to be indebted additionally: - over besides."]},{"k":"G4360","v":["προσοχθίζω","prosochthízō","pros-okh-thid'-zo","From G4314 and a form of ὀχθέω ochtheō (to be vexed with something irksome); to feel indignant at: - be grieved with."]},{"k":"G4361","v":["πρόσπεινος","próspeinos","pros'-pi-nos","From G4314 and the same as G3983; hungering further, that is, intensely hungry: - very hungry."]},{"k":"G4362","v":["προσπήγνυμι","prospḗgnymi","pros-payg'-noo-mee","From G4314 and G4078; to fasten to, that is, (specifically) to impale (on a cross): - crucify."]},{"k":"G4363","v":["προσπίπτω","prospíptō","pros-pip'-to","From G4314 and G4098; to fall towards, that is, (gently) prostrate oneself (in supplication or homage), or (violently) to rush upon (in storm): - beat upon, fall (down) at (before)."]},{"k":"G4364","v":["προσποιέομαι","prospoiéomai","pros-poy-eh'-om-ahee","Middle voice from G4314 and G4160; to do forward for oneself, that is, pretend (as if about to do a thing): - make as though."]},{"k":"G4365","v":["προσπορεύομαι","prosporeúomai","pros-por-yoo'-om-ahee","From G4314 and G4198; to journey towards, that is, approach (not the same as G4313): - go before."]},{"k":"G4366","v":["προσρήγνυμι","prosrḗgnymi","pros-rayg'-noo-mee","From G4314 and G4486; to tear towards, that is, burst upon (as a tempest or flood): - beat vehemently against (upon)."]},{"k":"G4367","v":["προστάσσω","prostássō","pros-tas'-so","From G4314 and G5021; to arrange towards, that is, (figuratively) enjoin: - bid, command."]},{"k":"G4368","v":["προστάτις","prostátis","pros-tat'-is","Feminine of a derivative of G4291; a patroness, that is, assistant: - succourer."]},{"k":"G4369","v":["προστίθημι","prostíthēmi","pros-tith'-ay-mee","From G4314 and G5087; to place additionally, that is, lay beside, annex, repeat: - add, again, give more, increase, lay unto, proceed further, speak to any more."]},{"k":"G4370","v":["προστρέχω","prostréchō","pros-trekh'-o","From G4314 and G5143 (including its alternate); to run towards, that is, hasten to meet or join: - run (thither to, to)."]},{"k":"G4371","v":["προσφάγιον","prosphágion","pros-fag'-ee-on","Neuter of a presumed derivative of a compound of G4314 and G5315; something eaten in addition to bread, that is, a relish (specifically fish; compare G3795): - meat."]},{"k":"G4372","v":["πρόσφατος","prósphatos","pros'-fat-os","From G4253 and a derivative of G4969; previously (recently) slain (fresh), that is, (figuratively) lately made: - new."]},{"k":"G4373","v":["προσφάτως","prosphátōs","pros-fat'-oce","Adverb from G4372; recently: - lately."]},{"k":"G4374","v":["προσφέρω","prosphérō","pros-fer'-o","From G4314 and G5342 (including its alternate); to bear towards, that is, lead to, tender (especially to God), treat: - bring (to, unto), deal with, do, offer (unto, up), present unto, put to."]},{"k":"G4375","v":["προσφιλής","prosphilḗs","pros-fee-lace'","From a presumed compound of G4314 and G5368; friendly towards, that is, acceptable: - lovely."]},{"k":"G4376","v":["προσφορά","prosphorá","pros-for-ah'","From G4374; presentation; concretely an oblation (bloodless) or sacrifice: - offering (up)."]},{"k":"G4377","v":["προσφωνέω","prosphōnéō","pros-fo-neh'-o","From G4314 and G5455; to sound towards, that is, address, exclaim, summon: - call unto, speak (un-) to."]},{"k":"G4378","v":["πρόσχυσις","próschysis","pros'-khoo-sis","From a compound of G4314 and χέω cheō (to pour); a shedding forth, that is, affusion: - sprinkling."]},{"k":"G4379","v":["προσψαύω","prospsaúō","pros-psow'-o","From G4314 and ψαύω psauō (to touch); to impinge, that is, lay a finger on (in order to relieve): - touch."]},{"k":"G4380","v":["προσωποληπτέω","prosōpolēptéō","pros-o-pol-ape-teh'-o","From G4381; to favor an individual, that is, show partiality: - have respect to persons."]},{"k":"G4381","v":["προσωπολήπτης","prosōpolḗptēs","pros-o-pol-ape'-tace","From G4383 and G2983; an accepter of a face (individual), that is, (specifically) one exhibiting partiality: - respecter of persons."]},{"k":"G4382","v":["προσωποληψία","prosōpolēpsía","pros-o-pol-ape-see'-ah","From G4381; partiality, that is, favoritism: - respect of persons."]},{"k":"G4383","v":["πρόσωπον","prósōpon","pros'-o-pon","From G4314 and ὤψ ōps (the visage; from G3700); the front (as being towards view), that is, the countenance, aspect, appearance, surface; by implication presence, person: - (outward) appearance, X before, countenance, face, fashion, (men’s) person, presence."]},{"k":"G4384","v":["προτάσσω","protássō","prot-as'-so","From G4253 and G5021; to pre-arrange, that is, prescribe: - before appoint."]},{"k":"G4385","v":["προτείνω","proteínō","prot-i'-no","From G4253 and τείνω teinō (to stretch); to protend, that is, tie prostrate (for scourging): - bind."]},{"k":"G4386","v":["πρότερον","próteron","prot'-er-on","Neuter of G4387 as adverb (with or without the article); previously: - before, (at the) first, former."]},{"k":"G4387","v":["πρότερος","próteros","prot'-er-os","Comparative of G4253; prior or previous: - former."]},{"k":"G4388","v":["προτίθεμαι","protíthemai","prot-ith'-em-ahee","Middle voice from G4253 and G5087; to place before, that is, (for oneself) to exhibit; (to oneself) to propose (determine): - purpose, set forth."]},{"k":"G4389","v":["προτρέπομαι","protrépomai","prot-rep'-om-ahee","Middle voice from G4253 and the base of G5157; to turn forward for oneself, that is, encourage: - exhort."]},{"k":"G4390","v":["προτρέχω","protréchō","prot-rekh'-o","From G4253 and G5143 (including its alternate); to run forward, that is, outstrip, precede: - outrun, run before."]},{"k":"G4391","v":["προϋπάρχω","proÿpárchō","pro-oop-ar'-kho","From G4253 and G5225; to exist before, that is, (adverbially) to be or do something previously: - + be before (-time)."]},{"k":"G4392","v":["πρόφασις","próphasis","prof'-as-is","From a compound of G4253 and G5316; an outward showing, that is, pretext: - cloke, colour, pretence, show."]},{"k":"G4393","v":["προφέρω","prophérō","prof-er'-o","From G4253 and G5342; to bear forward, that is, produce: - bring forth."]},{"k":"G4394","v":["προφητεία","prophēteía","prof-ay-ti'-ah","From G4396 (“prophecy”); prediction (scriptural or other): - prophecy, prophesying."]},{"k":"G4395","v":["προφητεύω","prophēteúō","prof-ate-yoo'-o","From G4396; to foretell events, divine, speak under inspiration, exercise the prophetic office: - prophesy."]},{"k":"G4396","v":["προφήτης","prophḗtēs","prof-ay'-tace","From a compound of G4253 and G5346; a foreteller (“prophet”); by analogy an inspired speaker; by extension a poet: - prophet."]},{"k":"G4397","v":["προφητικός","prophētikós","prof-ay-tik-os'","From G4396; pertaining to a foreteller (“prophetic”): - of prophecy, of the prophets."]},{"k":"G4398","v":["προφῆτις","prophētis","prof-ay'-tis","Feminine of G4396; a female foreteller or an inspired woman: - prophetess."]},{"k":"G4399","v":["προφθάνω","prophthánō","prof-than'-o","From G4253 and G5348; to get an earlier start of, that is, anticipate: - prevent."]},{"k":"G4400","v":["προχειρίζομαι","procheirízomai","prokh-i-rid'-zom-ahee","Middle voice from G4253 and a derivative of G5495; to handle for oneself in advance, that is, (figuratively) to purpose: - choose, make."]},{"k":"G4401","v":["προχειροτονέω","procheirotonéō","prokh-i-rot-on-eh'-o","From G4253 and G5500; to elect in advance: - choose before."]},{"k":"G4402","v":["Πρόχορος","Próchoros","prokh'-or-os","From G4253 and G5525; before the dance; Prochorus, a Christian: - Prochorus."]},{"k":"G4403","v":["πρύμνα","prýmna","proom'-nah","Feminine of πρυμνύς prumnus (hindmost); the stern of a ship: - hinder part, stern."]},{"k":"G4404","v":["πρωΐ","prōḯ","pro-ee'","Adverb from G4253; at dawn; by implication the day break watch: - early (in the morning), (in the) morning."]},{"k":"G4405","v":["πρωΐα","prōḯa","pro-ee'-ah","Feminine of a derivative of G4404 as noun; day dawn: - early, morning."]},{"k":"G4406","v":["πρώϊμος","prṓïmos","pro'-ee-mos","From G4404; dawning, that is, (by analogy) autumnal (showering, the first of the rainy season): - early."]},{"k":"G4407","v":["πρωϊνός","prōïnós","pro-ee-nos'","From G4404; pertaining to the dawn, that is, matutinal: - morning."]},{"k":"G4408","v":["πρῶρα","prōra","pro'-ra","Feminine of a presumed derivation of G4253 as noun; the prow, that is, forward part of a vessel: - forepart (-ship)."]},{"k":"G4409","v":["πρωτεύω","prōteúō","prote-yoo'-o","From G4413; to be first (in rank or influence): - have the preeminence."]},{"k":"G4410","v":["πρωτοκαθεδρία","prōtokathedría","pro-tok-ath-ed-ree'-ah","From G4413 and G2515; a sitting first (in the front row), that is, preeminence in council: - chief (highest, uppermost) seat."]},{"k":"G4411","v":["πρωτοκλισία","prōtoklisía","pro-tok-lis-ee'-ah","From G4413 and G2828; a reclining first (in the place of honor) at the dinner bed, that is, preeminence at meals: - chief (highest, uppermost) room."]},{"k":"G4412","v":["πρῶτον","prōton","pro'-ton","Neuter of G4413 as an adverb (with or without G3588); firstly (in time, place, order, or importance): - before, at the beginning, chiefly, (at, at the) first (of all)."]},{"k":"G4413","v":["πρῶτος","prōtos","pro'-tos","Contracted superlative of G4253; foremost (in time, place, order or importance): - before, beginning, best, chief (-est), first (of all), former."]},{"k":"G4414","v":["πρωτοστάτης","prōtostátēs","pro-tos-tat'-ace","From G4413 and G2476; one standing first in the ranks, that is, a captain (champion): - ringleader."]},{"k":"G4415","v":["πρωτοτόκια","prōtotókia","pro-tot-ok'-ee-ah","From G4416; primogeniture (as a privilege): - birthright."]},{"k":"G4416","v":["πρωτότοκος","prōtótokos","pro-tot-ok'-os","From G4413 and the alternate of G5088; first born (usually as noun, literally or figuratively): - firstbegotten (-born)."]},{"k":"G4417","v":["πταίω","ptaíō","ptah'-yo","A form of G4098; to trip, that is, (figuratively) to err, sin, fail (of salvation): - fall, offend, stumble."]},{"k":"G4418","v":["πτέρνα","ptérna","pter'-nah","Of uncertain derivation; the heel (figuratively): - heel."]},{"k":"G4419","v":["πτερύγιον","pterýgion","pter-oog'-ee-on","Neuter of a presumed derivative of G4420; a winglet, that is, (figuratively) extremity (top corner): - pinnacle."]},{"k":"G4420","v":["πτέρυξ","ptéryx","pter'-oox","From a derivative of G4072 (meaning a feather); a wing: - wing."]},{"k":"G4421","v":["πτηνόν","ptēnón","ptay-non'","Contraction for G4071; a bird: - bird."]},{"k":"G4422","v":["πτοέω","ptoéō","pto-eh'-o","Probably akin to the alternate of G4098 (through the idea of causing to fall) or to G4072 (through that of causing to fly away); to scare: - frighten."]},{"k":"G4423","v":["πτόησις","ptóēsis","pto'-ay-sis","From G4422; alarm: - amazement."]},{"k":"G4424","v":["Πτολεμαΐς","Ptolemaḯs","ptol-em-ah-is'","From “ptolemaios” (Ptolemy, after whom it was named); Ptolemais, a place in Palestine: - Ptolemais."]},{"k":"G4425","v":["πτύον","ptýon","ptoo'-on","From G4429; a winnowing fork (as scattering like spittle): - fan."]},{"k":"G4426","v":["πτύρω","ptýrō","ptoo'-ro","From a presumed derivative of G4429 (and thus akin to G4422); to frighten: - terrify."]},{"k":"G4427","v":["πτύσμα","ptýsma","ptoos'-mah","From G4429; saliva: - spittle."]},{"k":"G4428","v":["πτύσσω","ptýssō","ptoos'-so","Probably akin to πετάννυμι petannumi (to spread; and thus apparently allied to G4072 through the idea of expansion, and to G4429 through that of flattening; compare G3961); to fold, that is, furl a scroll: - close."]},{"k":"G4429","v":["πτύω","ptýō","ptoo'-o","A primary verb (compare G4428); to spit: - spit."]},{"k":"G4430","v":["πτῶμα","ptōma","pto'-mah","From the alternate of G4098; a ruin, that is, (specifically) lifeless body (corpse, carrion): - dead body, carcase, corpse."]},{"k":"G4431","v":["πτῶσις","ptōsis","pto'-sis","From the alternate of G4098; a crash, that is, downfall (literally or figuratively): - fall."]},{"k":"G4432","v":["πτωχεία","ptōcheía","pto-khi'-ah","From G4433; beggary, that is, indigence (literally or figuratively): - poverty."]},{"k":"G4433","v":["πτωχεύω","ptōcheúō","pto-khyoo'-o","From G4434; to be a beggar, that is, (by implication) to become indigent (figuratively): - become poor."]},{"k":"G4434","v":["πτωχός","ptōchós","pto-khos'","From πτώσσω ptōssō (to crouch; akin to G4422 and the alternate of G4098); a beggar (as cringing), that is, pauper (strictly denoting absolute or public mendicancy, although also used in a qualified or relative sense; whereas G3993 properly means only straitened circumstances in private), literally (often as noun) or figuratively (distressed): - beggar (-ly), poor."]},{"k":"G4435","v":["πυγμή","pygmḗ","poog-may'","From a primary word, πύζ pux, (the fist as a weapon); the clenched hand, that is, (only in the dative case as adverb) with the fist (hard scrubbing): - oft."]},{"k":"G4436","v":["Πύθων","Pýthōn","poo'-thone","From Πυθώ Puthō (the name of the region where Delphi, the seat of the famous oracle, was located); a Python, that is, (by analogy with the supposed diviner there) inspiration (soothsaying): - divination."]},{"k":"G4437","v":["πυκνός","pyknós","pook-nos'","From the same as G4635; clasped (thick), that is, (figuratively) frequent; neuter plural (as adverb) frequently: - often (-er)."]},{"k":"G4438","v":["πυκτέω","pyktéō","pook-teh'-o","From a derivative of the same as G4435; to box (with the fist), that is, contend (as a boxer) at the games (figuratively): - fight."]},{"k":"G4439","v":["πύλη","pýlē","poo'-lay","Apparently a primary word; a gate, that is, the leaf or wing of a folding entrance (literally or figuratively): - gate."]},{"k":"G4440","v":["πυλών","pylṓn","poo-lone'","From G4439; a gateway, door way or a building or city; by implication a portal or vestibule: - gate, porch."]},{"k":"G4441","v":["πυνθάνομαι","pynthánomai","poon-than'-om-ahee","Middle voice prolonged from πύθω puthō, a primary word, (which occurs only as an alternate in certain tenses); to question, that is, ascertain by inquiry (as a matter of information merely; and thus differing from G2065, which properly means a request as a favor; and from G154, which is strictly a demand of something due; as well as from G2212, which implies a search for something hidden; and from G1189, which involves the idea of urgent need); by implication to learn (by casual intelligence): - ask, demand, enquire, understand."]},{"k":"G4442","v":["πῦρ","pŷr","poor","A primary word; “fire” (literally or figuratively, specifically lightning): - fiery, fire."]},{"k":"G4443","v":["πυρά","pyrá","poo-rah'","From G4442; a fire (concretely): - fire."]},{"k":"G4444","v":["πύργος","pýrgos","poor'-gos","Apparently a primary word (“burgh”); a tower or castle: - tower."]},{"k":"G4445","v":["πυρέσσω","pyréssō","poo-res'-so","From G4443; to be on fire, that is, (specifically) to have a fever: - be sick of a fever."]},{"k":"G4446","v":["πυρετός","pyretós","poo-ret-os'","From G4445; inflamed, that is, (by implication) feverish (as noun, fever): - fever."]},{"k":"G4447","v":["πύρινος","pýrinos","poo'-ree-nos","From G4443; fiery, that is, (by implication) flaming: - of fire."]},{"k":"G4448","v":["πυρόω","pyróō","poo-ro'-o","From G4442; to kindle, that is, (passively) to be ignited, glow (literally), be refined (by implication), or (figuratively) to be inflamed (with anger, grief, lust): - burn, fiery, be on fire, try."]},{"k":"G4449","v":["πυῤῥάζω","pyrrházō","poor-hrad'-zo","From G4450; to redden (intransitively): - be red."]},{"k":"G4450","v":["πυῤῥός","pyrrhós","poor-hros'","From G4442; fire like, that is, (specifically) flame colored: - red."]},{"k":"G4451","v":["πύρωσις","pýrōsis","poo'-ro-sis","From G4448; ignition, that is, (specifically) smelting (figuratively conflagration, calamity as a test): - burning, trial."]},{"k":"G4452","v":["-πω","-pō","po","Another form of the base of G4458; an enclitic particle of indefiniteness; yet, even; used only in compounds."]},{"k":"G4453","v":["πωλέω","pōléō","po-leh'-o","Probably ultimately from πέλομαι pelomai (to be busy, to trade); to barter (as a pedlar), that is, to sell: - sell, whatever is sold."]},{"k":"G4454","v":["πῶλος","pōlos","po'-los","Apparently a primary word; a “foal” or “filly”, that is, (specifically) a young ass: - colt."]},{"k":"G4455","v":["πώποτε","pṓpote","po'-pot-e","From G4452 and G4218; at any time, that is, (with negative particle) at no time: - at any time, + never (. . . to any man), + yet never man."]},{"k":"G4456","v":["πωρόω","pōróō","po-ro'-o","Apparently from πῶρος pōros (a kind of stone); to petrify, that is, (figuratively) to indurate (render stupid or callous): - blind, harden."]},{"k":"G4457","v":["πώρωσις","pṓrōsis","po'-ro-sis","From G4456; stupidity or callousness: - blindness, hardness."]},{"k":"G4458","v":["-πώς","-pṓs","poce","Adverb from the base of G4225; an enclitic particle of indefiniteness of manner; somehow or anyhow; used only in compounds: - haply, by any (some) means, perhaps. See G1513, G3381. Compare G4459."]},{"k":"G4459","v":["πῶς","pōs","poce","Adverb from the base of G4226; an interrogitive particle of manner; in what way? (sometimes the question is indirect, how?); also as exclamation, how much!: - how, after (by) what manner (means), that. [Occasionally unexpressed in English.]"]},{"k":"G4460","v":["Ῥαάβ","Rhaáb","hrah-ab'","Of Hebrew origin [H7343]; Raab (that is, Rachab), a Canaanitess: - Rahab. See also G4477."]},{"k":"G4461","v":["ῥαββί","rhabbí","hrab-bee'","Of Hebrew origin [H7227] with pronominal suffix; my master, that is, Rabbi, as an official title of honor: - Master, Rabbi."]},{"k":"G4462","v":["ῥαββονί","rhabboní","hrab-bon-ee'","Of Chaldee origin; corresponding to G4461: - Lord, Rabboni."]},{"k":"G4463","v":["ῥαβδίζω","rhabdízō","hrab-did'-zo","From G4464; to strike with a stick, that is, bastinado: - beat (with rods)."]},{"k":"G4464","v":["ῥάβδος","rhábdos","hrab'-dos","From the base of G4474; a stick or wand (as a cudgel, a cane or a baton of royalty): - rod, sceptre, staff."]},{"k":"G4465","v":["ῥαβδοῦχος","rhabdoûchos","hrab-doo'-khos","From G4464 and G2192; a rod (the Latin fasces) holder, that is, a Roman lictor (constable or executioner): - serjeant."]},{"k":"G4466","v":["Ῥαγαῦ","Rhagaû","hrag-ow'","Of Hebrew origin [H7466]; Ragau (that is, Reu), a patriarch: - Ragau."]},{"k":"G4467","v":["ῥᾳδιούργημα","rhaidioúrgēma","hrad-ee-oorg'-ay-mah","From a compound of ῥᾳδιος rhadios (easy, that is, reckless) and G2041; easy going behavior, that is, (by extension) a crime: - lewdness."]},{"k":"G4468","v":["ῥᾳδιουργία","rhaidiourgía","hrad-ee-oorg-ee'-a","From the same as G4467; recklessness, that is, (by extension) malignity: - mischief."]},{"k":"G4469","v":["ῥακά","rhaká","rhak-ah'","Of Chaldee origin (compare [H7386]); O empty one, that is, thou worthless (as a term of utter vilification): - Raca."]},{"k":"G4470","v":["ῥάκος","rhákos","hrak'-os","From G4486; a “rag”, i. e. piece of cloth: - cloth."]},{"k":"G4471","v":["Ῥαμᾶ","Rhamâ","hram-ah'","Of Hebrew origin [H7414]; Rama (that is, Ramah), a place in Palestine: - Rama."]},{"k":"G4472","v":["ῥαντίζω","rhantízō","hran-tid'-zo","From a derivative of ῥαίνω rhainō (to sprinkle); to render besprinkled, that is, asperse (ceremonially or figuratively): - sprinkle."]},{"k":"G4473","v":["ῥαντισμός","rhantismós","hran-tis-mos'","From G4472; aspersion (ceremonially or figuratively): - sprinkling."]},{"k":"G4474","v":["ῥαπίζω","rhapízō","hrap-id'-zo","From a derivative of ῥέπω rhepō, a primary word, (to let fall, “rap”); to slap (with the palm of the hand): - smite (with the palm of the hand). Compare G5180."]},{"k":"G4475","v":["ῥάπισμα","rhápisma","hrap'-is-mah","From G4474; a slap: - (+ strike with the) palm of the hand, smite with the hand."]},{"k":"G4476","v":["ῥαφίς","rhaphís","hraf-ece'","From ῥάπτω rhaptō, a primary word, (to sew; perhaps rather akin to the base of G4474 through the idea of puncturing); a needle: - needle."]},{"k":"G4477","v":["Ῥαχάβ","Rhacháb","hrakh-ab'","From the same as G4460; Rachab, a Canaanitess: - Rachab."]},{"k":"G4478","v":["Ῥαχήλ","Rhachḗl","hrakh-ale'","Of Hebrew origin [H7354]; Rachel, the wife of Jacob: - Rachel."]},{"k":"G4479","v":["Ῥεβέκκα","Rhebékka","hreb-bek'-kah","Of Hebrew origin [H7259]; Rebecca (that is, Ribkah), the wife of Isaac: - Rebecca."]},{"k":"G4480","v":["ῥέδα","rhéda","hred'-ah","Of Latin origin; a rheda, that is, four wheeled carriage (wagon for riding): - chariot."]},{"k":"G4481","v":["Ῥεμφάν","Rhemphán","hrem-fan'","By incorrect transliteration for a word of Hebrew origin [H3594]; Remphan (that is, Kijun), an Egyptian idol: - Remphan."]},{"k":"G4482","v":["ῥέω","rhéō","hreh'-o","A primary verb; for some tenses of which a prolonged form (ῥεύω rheuō) is used; to flow (“run”, as water): - flow."]},{"k":"G4483","v":["ῥέω","rhéō","hreh'-o","For certain tenses of which a prolonged form (ἐρέω ereō) is used; and both as alternate for G2036; perhaps akin (or identical) with G4482 (through the idea of pouring forth); to utter, that is, speak or say: - command, make, say, speak (of). Compare G3004."]},{"k":"G4484","v":["Ῥήγιον","Rhḗgion","hrayg'-ee-on","Of Latin origin; Rhegium, a place in Italy: - Rhegium."]},{"k":"G4485","v":["ῥῆγμα","rhēgma","hrayg'-mah","From G4486; something torn, that is, a fragment (by implication and abstraction, a fall): - ruin."]},{"k":"G4486","v":["ῥήγνυμι","rhḗgnymi","hrayg'-noo-mee","Both are prolonged forms of ῥήκω rhēko (which appears only in certain forms, and is itself probably a strengthened form of ἄγνυμι agnumi (see in G2608)); to “break”, “wreck” or “crack”, that is, (especially) to sunder (by separation of the parts; G2608 being its intensive (with the preposition in compounds), and G2352 a shattering to minute fragments; but not a reduction to the constituent particles, like G3089) or disrupt, lacerate; by implication to convulse (with spasms); figuratively to give vent to joyful emotions: - break (forth), burst, rend, tear."]},{"k":"G4487","v":["ῥῆμα","rhēma","hray'-mah","From G4483; an utterance (individually, collectively or specifically); by implication a matter or topic (especially of narration, command or dispute); with a negative naught whatever: - + evil, + nothing, saying, word."]},{"k":"G4488","v":["Ῥησά","Rhēsá","hray-sah'","Probably of Hebrew origin (apparently for [H7509]); Resa (that is, Rephajah), an Israelite: - Rhesa."]},{"k":"G4489","v":["ῥήτωρ","rhḗtōr","hray'-tore","From G4483; a speaker, that is, (by implication) a forensic advocate: - orator."]},{"k":"G4490","v":["ῥητῶς","rhētōs","hray-toce'","Adverb from a derivative of G4483; out spokenly, that is, distinctly: - expressly."]},{"k":"G4491","v":["ῥίζα","rhíza","hrid'-zah","Apparently a primary word; a “root” (literally or figuratively): - root."]},{"k":"G4492","v":["ῥιζόω","rhizóō","hrid-zo'-o","From G4491; to root (figuratively become stable): - root."]},{"k":"G4493","v":["ῥιπή","rhipḗ","hree-pay'","From G4496; a jerk (of the eye, that is, (by analogy) an instant): - twinkling."]},{"k":"G4494","v":["ῥιπίζω","rhipízō","hrip-id'-zo","From a derivative of G4496 (meaning a fan or bellows); to breeze up, that is, (by analogy) to agitate (into waves): - toss."]},{"k":"G4495","v":["ῥιπτέω","rhiptéō","hrip-teh'-o","From a derivative of G4496; to toss up: - cast off."]},{"k":"G4496","v":["ῥίπτω","rhíptō","hrip'-to","A primary verb (perhaps rather akin to the base of G4474, through the idea of sudden motion); to fling (properly with a quick toss, thus differing from G906, which denotes a deliberate hurl; and from τείνω teinō (see in G1614), which indicates an extended projection); by qualification, to deposit (as if a load); by extension to disperse: - cast (down, out), scatter abroad, throw."]},{"k":"G4497","v":["Ῥοβοάμ","Rhoboám","hrob-o-am'","Of Hebrew origin [H7346]; Roboam (that is, Rechabam), an Israelite: - Roboam."]},{"k":"G4498","v":["Ῥόδη","Rhódē","hrod'-ay","Probably for ῥόδή rhodē (a rose); Rode, a servant girl: - Rhoda."]},{"k":"G4499","v":["Ῥόδος","Rhódos","hrod'-os","Probably from ῥόδον rhodon (a rose); Rhodus, an island of the Mediterranean: - Rhodes."]},{"k":"G4500","v":["ῥοιζηδόν","rhoizēdón","hroyd-zay-don'","Adverb from a derivative of ῥοῖζος rhoizos (a whir); whizzingly, that is, with a crash: - with a great noise."]},{"k":"G4501","v":["ῥομφαία","rhomphaía","hrom-fah'-yah","Probably of foreign origin; a sabre, that is, a long and broad cutlass (any weapon of the kind, literally or figuratively): - sword."]},{"k":"G4502","v":["Ῥουβήν","Rhoubḗn","hroo-bane'","Of Hebrew origin [H7205]; Ruben (that is, Reuben), an Israelite: - Reuben."]},{"k":"G4503","v":["Ῥούθ","Rhoúth","hrooth","Of Hebrew origin [H7327]; Ruth, a Moabitess: - Ruth."]},{"k":"G4504","v":["Ῥοῦφος","Rhoûphos","hroo'-fos","Of Latin origin; red; Rufus, a Christian: - Rufus."]},{"k":"G4505","v":["ῥύμη","rhýmē","hroo'-may","Prolonged from G4506 in its original sense; an alley or avenue (as crowded): - lane, street."]},{"k":"G4506","v":["ῥύομαι","rhýomai","rhoo'-om-ahee","Middle voice of an obsolete verb, akin to G4482 (through the idea of a current; compare G4511); to rush or draw (for oneself), that is, rescue: - deliver (-er)."]},{"k":"G4507","v":["ῥυπαρία","rhyparía","hroo-par-ee'-ah","From G4508; dirtiness (morally): - filthiness."]},{"k":"G4508","v":["ῥυπαρός","rhyparós","rhoo-par-os'","From G4509; dirty, that is, (relatively) cheap or shabby; morally wicked: - vile."]},{"k":"G4509","v":["ῥύπος","rhýpos","hroo'-pos","Of uncertain affinity; dirt, that is, (moral) depravity: - filth."]},{"k":"G4510","v":["ῥυπόω","rhypóō","rhoo-po'-o","From G4509; to soil, that is, (intransitively) to become dirty (morally): - be filthy."]},{"k":"G4511","v":["ῥύσις","rhýsis","hroo'-sis","From G4506 in the sense of its congener G4482; a flux (of blood): - issue."]},{"k":"G4512","v":["ῥυτίς","rhytís","hroo-tece'","From G4506; a fold (as drawing together), that is, a wrinkle (especially on the face): - wrinkle."]},{"k":"G4513","v":["Ῥωμαϊκός","Rhōmaïkós","rho-mah-ee-kos'","From G4514; Romaic, that is, Latin: - Latin."]},{"k":"G4514","v":["Ῥωμαῖος","Rhōmaîos","hro-mah'-yos","From G4516; Romaean, that is, Roman (as noun): - Roman, of Rome."]},{"k":"G4515","v":["Ῥωμαϊστί","Rhōmaïstí","hro-mah-is-tee'","Adverb from a presumed derivative of G4516; Romaistically, that is, in the Latin language: - Latin."]},{"k":"G4516","v":["Ῥώμη","Rhṓmē","hro'-may","From the base of G4517; strength; Roma, the capital of Italy: - Rome."]},{"k":"G4517","v":["ῥώννυμι","rhṓnnymi","hrone'-noo-mee","Prolonged from ῥώομαι rhōomai (to dart; probably akin to G4506); to strengthen, that is, (imperative passive) have health (as parting exclamation, good bye): - farewell."]},{"k":"G4518","v":["σαβαχθάνι","sabachtháni","sab-akh-than-ee'","Of Chaldee origin [H7662] with pronominal suffix; thou hast left me; sabachthani (that is, shebakthani), a cry of distress: - sabachthani."]},{"k":"G4519","v":["σαβαώθ","sabaṓth","sab-ah-owth'","Of Hebrew origin ([H6635] in feminine plural); armies; sabaoth (that is, tsebaoth), a military epithet of God: - sabaoth."]},{"k":"G4520","v":["σαββατισμός","sabbatismós","sab-bat-is-mos'","From a derivative of G4521; a “sabbatism”, that is, (figuratively) the repose of Christianity (as a type of heaven): - rest."]},{"k":"G4521","v":["σάββατον","sábbaton","sab'-bat-on","Of Hebrew origin [H7676]; the Sabbath (that is, Shabbath), or day of weekly repose from secular avocations (also the observance or institution itself); by extension a se'nnight, that is, the interval between two Sabbaths; likewise the plural in all the above applications: - sabbath (day), week."]},{"k":"G4522","v":["σαγήνη","sagḗnē","sag-ay'-nay","From a derivative of σάττω sattō (to equip) meaning furniture, especially a pack saddle (which in the East is merely a bag of netted rope); a “seine” for fishing: - net."]},{"k":"G4523","v":["Σαδδουκαῖος","Saddoukaîos","sad-doo-kah'-yos","Probably from G4524; a Sadducaean (that is, Tsadokian), or follower of a certain heretical Israelite: - Sadducee."]},{"k":"G4524","v":["Σαδώκ","Sadṓk","sad-oke'","Of Hebrew origin [H6659]; Sadoc (that is, Tsadok), an Israelite: - Sadoc."]},{"k":"G4525","v":["σαίνω","saínō","sah'-ee-no","Akin to G4579; to wag (as a dog its tail fawningly), that is, (generally) to shake (figuratively disturb): - move."]},{"k":"G4526","v":["σάκκος","sákkos","sak'-kos","Of Hebrew origin [H8242]; “sack” cloth, that is, mohair (the material or garments made of it, worn as a sign of grief): - sackcloth."]},{"k":"G4527","v":["Σαλά","Salá","sal-ah'","Of Hebrew origin [H7974]; Sala (that is, Shelach), a patriarch: - Sala."]},{"k":"G4528","v":["Σαλαθιήλ","Salathiḗl","sal-ath-ee-ale'","Of Hebrew origin [H7597]; Salathiel (that is, Shealtiel), an Israelite: - Salathiel."]},{"k":"G4529","v":["Σαλαμίς","Salamís","sal-am-ece'","Probably from G4535 (from the surge on the shore); Salamis, a place in Cyprus: - Salamis."]},{"k":"G4530","v":["Σαλείμ","Saleím","sal-ime'","Probably from the same as G4531; Salim, a place in Palestine: - Salim."]},{"k":"G4531","v":["σαλεύω","saleúō","sal-yoo'-o","From G4535; to waver, that is, agitate, rock, topple or (by implication) destroy; figuratively to disturb, incite: - move, shake (together), which can [-not] be shaken, stir up."]},{"k":"G4532","v":["Σαλήμ","Salḗm","sal-ame'","Of Hebrew origin [H8004]; Salem (that is, Shalem), a place in Palestine: - Salem."]},{"k":"G4533","v":["Σαλμών","Salmṓn","sal-mone'","Of Hebrew origin [H8012]; Salmon, an Israelite: - Salmon."]},{"k":"G4534","v":["Σαλμώνη","Salmṓnē","sal-mo'-nay","Perhaps of similar origin to G4529; Salmone, a place in Crete: - Salmone."]},{"k":"G4535","v":["σάλος","sálos","sal'-os","Probably from the base of G4525; a vibration, that is, (specifically) billow: - wave."]},{"k":"G4536","v":["σάλπιγξ","sálpinx","sal'-pinx","Perhaps from G4535 (through the idea of quavering or reverberation); a trumpet: - trump (-et)."]},{"k":"G4537","v":["σαλπίζω","salpízō","sal-pid'-zo","From G4536; to trumpet, that is, sound a blast (literally or figuratively): - (which are yet to) sound (a trumpet)."]},{"k":"G4538","v":["σαλπιστής","salpistḗs","sal-pis-tace'","From G4537; a trumpeter: - trumpeter."]},{"k":"G4539","v":["Σαλώμη","Salṓmē","sal-o'-may","Probably of Hebrew origin (feminine from [H7965]); Salome (that is, Shelomah), an Israelitess: - Salome."]},{"k":"G4540","v":["Σαμάρεια","Samáreia","sam-ar'-i-ah","Of Hebrew origin [H8111]; Samaria (that is, Shomeron), a city and region of Palestine: - Samaria."]},{"k":"G4541","v":["Σαμαρείτης","Samareítēs","sam-ar-i'-tace","From G4540; a Samarite, that is, inhabitants of Samaria: - Samaritan."]},{"k":"G4542","v":["Σαμαρεῖτις","Samareîtis","sam-ar-i'-tis","Feminine of G4541; a Samaritess, that is, woman of Samaria: - of Samaria."]},{"k":"G4543","v":["Σαμοθρᾴκη","Samothráikē","sam-oth-rak'-ay","From G4544 and Θρᾴκη Thrakē (Thrace); Samo-thrace (Samos of Thrace), an island in the Mediterranean: - Samothrace."]},{"k":"G4544","v":["Σάμος","Sámos","sam'-os","Of uncertain affinity; Samus, an island of the Mediterranean: - Samos."]},{"k":"G4545","v":["Σαμουήλ","Samouḗl","sam-oo-ale'","Of Hebrew origin [H8050]; Samuel (that is, Shemuel), an Israelite: - Samuel."]},{"k":"G4546","v":["Σαμψών","Sampsṓn","samp-sone'","Of Hebrew origin [H8123]; Sampson (that is, Shimshon), an Israelite: - Samson."]},{"k":"G4547","v":["σανδάλιον","sandálion","san-dal'-ee-on","Neuter of a derivative of σάνδαλον sandalon (a “sandal”; of uncertain origin); a slipper or sole pad: - sandal."]},{"k":"G4548","v":["σανίς","sanís","san-ece'","Of uncertain affinity; a plank: - board."]},{"k":"G4549","v":["Σαούλ","Saoúl","sah-ool'","Of Hebrew origin [H7586]; Saul (that is, Shaul), the Jewish name of Paul: - Saul. Compare G4569."]},{"k":"G4550","v":["σαπρός","saprós","sap-ros'","From G4595; rotten, that is, worthless (literally or morally): - bad, corrupt. Compt. G4190."]},{"k":"G4551","v":["Σαπφείρη","Sappheírē","sap-fi'-ray","Feminine of G4552; Sapphire, an Israelitess: - Sapphira."]},{"k":"G4552","v":["σάπφειρος","sáppheiros","sap'-fi-ros","Of Hebrew origin [H5601]; a “sapphire” or lapis-lazuli gem: - sapphire."]},{"k":"G4553","v":["σαργάνη","sargánē","sar-gan'-ay","Apparently of Hebrew origin [H8276]; a basket (as interwoven or wicker work): - basket."]},{"k":"G4554","v":["Σάρδεις","Sárdeis","sar'-dice","Plural of uncertain derivation; Sardis, a place in Asia Minor: - Sardis."]},{"k":"G4555","v":["σάρδινος","sárdinos","sar'-dee-nos","From the same as G4556; sardine (G3037 being implied), that is, a gem, so called: - sardine."]},{"k":"G4556","v":["σάρδιος","sárdios","sar'-dee-os","Proper adjective from an uncertain base; sardian (G3037 being implied), that is, (as noun) the gem so called: - sardius."]},{"k":"G4557","v":["σαρδόνυξ","sardónyx","sar-don'-oox","From the base of G4556 and ὄνυξ onux (the nail of a finger; hence the “onyx” stone); a “sardonyx”, that is, the gem so called: - sardonyx."]},{"k":"G4558","v":["Σάρεπτα","Sárepta","sar'-ep-tah","Of Hebrew origin [H6886]; Sarepta (that is, Tsarephath), a place in Palestine: - Sarepta."]},{"k":"G4559","v":["σαρκικός","sarkikós","sar-kee-kos'","From G4561; pertaining to flesh, that is, (by extension) bodily, temporal, or (by implication) animal, unregenerate: - carnal, fleshly."]},{"k":"G4560","v":["σάρκινος","sárkinos","sar'-kee-nos","From G4561; similar to flesh, that is, (by analogy) soft: - fleshly."]},{"k":"G4561","v":["σάρξ","sárx","sarx","Probably from the base of G4563; flesh (as stripped of the skin), that is, (strictly) the meat of an animal (as food), or (by extension) the body (as opposed to the soul (or spirit), or as the symbol of what is external, or as the means of kindred, or (by implication) human nature (with its frailties (physically or morally) and passions), or (specifically) a human being (as such): - carnal (-ly, + -ly minded), flesh ([-ly])."]},{"k":"G4562","v":["Σαρούχ","Saroúch","sar-ooch'","Of Hebrew origin [H8286]; Saruch (that is, Serug), a patriarch: - Saruch."]},{"k":"G4563","v":["σαρόω","saróō","sar-o'-o","From a derivative of σαιρω sairō (to brush off; akin to G4951) meaning a broom; to sweep: - sweep."]},{"k":"G4564","v":["Σάῤῥα","Sárrha","sar'-hrah","Of Hebrew origin [H8283]; Sarra (that is, Sarah), the wife of Abraham: - Sara, Sarah."]},{"k":"G4565","v":["Σάρων","Sárōn","sar'-one","Of Hebrew origin [H8289]; Saron (that is, Sharon), a district of Palestine: - Saron."]},{"k":"G4566","v":["Σατᾶν","Satân","sat-an'","Of Hebrew origin [H7854]; Satan, that is, the devil: - Satan. Compare G4567."]},{"k":"G4567","v":["Σατανᾶς","Satanâs","sat-an-as'","Of Chaldee origin corresponding to G4566 (with the definite article affixed); the accuser, that is, the devil: - Satan."]},{"k":"G4568","v":["σάτον","sáton","sat'-on","Of Hebrew origin [H5429]; a certain measure for things dry: - measure."]},{"k":"G4569","v":["Σαῦλος","Saûlos","sow'-los","Of Hebrew origin, the same as G4549; Saulus (that is, Shaul), the Jewish name of Paul: - Saul."]},{"k":"G4570","v":["σβέννυμι","sbénnymi","sben'-noo-mee","A prolonged form of an apparently primary verb; to extinguish (literally or figuratively): - go out, quench."]},{"k":"G4571","v":["σέ","sé","seh","Accusative singular of G4771; thee: - thee, thou, X thy house."]},{"k":"G4572","v":["σεαυτοῦ","seautoû","seh-ow-too'","The genitive case from G4571 and G846, with the dative and accusative of the same with contractions, respectively, of (with, to) thyself: - thee, thine own self, (thou) thy (-self)."]},{"k":"G4573","v":["σεβάζομαι","sebázomai","seb-ad'-zom-ahee","Middle voice from a derivative of G4576; to venerate, that is, adore: - worship."]},{"k":"G4574","v":["σέβασμα","sébasma","seb'-as-mah","From G4573; something adored, that is, an object of worship (god, altar, etc.): - devotion, that is worshipped."]},{"k":"G4575","v":["σεβαστός","sebastós","seb-as-tos'","From G4573; venerable (august), that is, (as noun) a title of the Roman Emperor, or (as adjective) imperial: - Augustus (-’)."]},{"k":"G4576","v":["σέβομαι","sébomai","seb'-om-ahee","Middle voice of an apparently primary verb; to revere, that is, adore: - devout, religious, worship."]},{"k":"G4577","v":["σειρά","seirá","si-rah'","Probably from G4951 through its congener εἴρω eirō (to fasten; akin to G138); a chain (as binding or drawing): - chain."]},{"k":"G4578","v":["σεισμός","seismós","sice-mos'","From G4579; a commotion, that is, (of the air) a gale, (of the ground) an earthquake: - earthquake, tempest."]},{"k":"G4579","v":["σείω","seíō","si'-o","Apparently a primary verb; to rock (vibrate, properly sideways or to and fro), that is, (generally) to agitate (in any direction; cause to tremble); figuratively to throw into a tremor (of fear or concern): - move, quake, shake."]},{"k":"G4580","v":["Σεκοῦνδος","Sekoûndos","sek-oon'-dos","Of Latin origin; “second”; Secundus, a Christian: - Secundus."]},{"k":"G4581","v":["Σελεύκεια","Seleúkeia","sel-yook'-i-ah","From Σέλευκος Seleukos (Seleucus, a Syran king); Seleuceia, a place in Syria: - Seleucia."]},{"k":"G4582","v":["σελήνη","selḗnē","sel-ay'-nay","From σέλας selas (brilliancy; probably akin to the alternate of G138, through the idea of attractiveness); the moon: - moon."]},{"k":"G4583","v":["σεληνιάζομαι","selēniázomai","sel-ay-nee-ad'-zom-ahee","Middle or passive voice from a presumed derivative of G4582; to be moon struck, that is, crazy: - be lunatic."]},{"k":"G4584","v":["Σεμεΐ","Semeḯ","sem-eh-ee'","Of Hebrew origin [H8096]; Semei (that is, Shimi), an Israelite: - Semei."]},{"k":"G4585","v":["σεμίδαλις","semídalis","sem-id'-al-is","Probably of foreign origin; fine wheaten flour: - fine flour."]},{"k":"G4586","v":["σεμνός","semnós","sem-nos'","From G4576; venerable, that is, honorable: - grave, honest."]},{"k":"G4587","v":["σεμνότης","semnótēs","sem-not'-ace","From G4586; venerableness, that is, probity: - gravity, honesty."]},{"k":"G4588","v":["Σέργιος","Sérgios","serg'-ee-os","Of Lat origin; Sergius, a Roman: - Sergius."]},{"k":"G4589","v":["Σήθ","Sḗth","sayth","Of Hebrew origin [H8352]; Seth (that is, Sheth), a patriarch: - Seth."]},{"k":"G4590","v":["Σήμ","Sḗm","same","Of Hebrew origin [H8035]; Sem (that is, Shem), a patriarch: - Sem."]},{"k":"G4591","v":["σημαίνω","sēmaínō","say-mah'-ee-no","From σῆμα sēma (a mark; of uncertain derivation); to indicate: - signify."]},{"k":"G4592","v":["σημεῖον","sēmeîon","say-mi'-on","Neuter of a presumed derivative of the base of G4591; an indication, especially ceremonially or supernaturally: - miracle, sign, token, wonder."]},{"k":"G4593","v":["σημειόω","sēmeióō","say-mi-o'-o","From G4592; to distinguish, that is, mark (for avoidance): - note."]},{"k":"G4594","v":["σήμερον","sḗmeron","say'-mer-on","Neuter (as adverb) of a presumed compound of the article G3588 (“tau” changed to “sigma”) and G2250; on the (that is, this) day (or night current or just passed); genitively now (that is, at present, hitherto): - this (to-) day."]},{"k":"G4595","v":["σήπω","sḗpō","say'-po","Apparently a primary verb; to putrefy, that is, (figuratively) perish: - be corrupted."]},{"k":"G4596","v":["σηρικός","sērikós","say-ree-kos'","From Σήρ Sēr (an Indian tribe from whom silk was procured; hence the name of the silkworm); Seric, that is, silken (neuter as noun, a silky fabric): - silk."]},{"k":"G4597","v":["σής","sḗs","sace","Apparently of Hebrew origin [H5580]; a moth: - moth."]},{"k":"G4598","v":["σητόβρωτος","sētóbrōtos","say-tob'-ro-tos","From G4597 and a derivative of G977; moth eaten: - motheaten."]},{"k":"G4599","v":["σθενόω","sthenóō","sthen-o'-o","From σθένος sthenos (bodily vigor; probably akin to the base of G2476); to strengthen, that is, (figuratively) confirm (in spiritual knowledge and power): - strengthen."]},{"k":"G4600","v":["σιαγών","siagṓn","see-ag-one'","Of uncertain derivation; the jaw bone, that is, (by implication) the cheek or side of the face: - cheek."]},{"k":"G4601","v":["σιγάω","sigáō","see-gah'-o","From G4602; to keep silent (transitive or intransitive): - keep close (secret, silence), hold peace."]},{"k":"G4602","v":["σιγή","sigḗ","see-gay'","Apparently from σίζω sizō (to hiss, that is, hist or hush); silence: - silence. Compare G4623."]},{"k":"G4603","v":["σιδήρεος","sidḗreos","sid-ay'-reh-os","From G4604; made of iron: - (of) iron."]},{"k":"G4604","v":["σίδηρος","sídēros","sid'-ay-ros","Of uncertain derivation; iron: - iron."]},{"k":"G4605","v":["Σιδών","Sidṓn","sid-one'","Of Hebrew origin [H6721]; Sidon (that is, Tsidon), a place in Palestine: - Sidon."]},{"k":"G4606","v":["Σιδώνιος","Sidṓnios","sid-o'-nee-os","From G4605; a Sidonian, that is, inhabitant of Sidon: - of Sidon."]},{"k":"G4607","v":["σικάριος","sikários","sik-ar'-ee-os","Of Latin origin; a dagger man or assassin; a freebooter (Jewish fanatic outlawed by the Romans): - murderer. Compare G5406."]},{"k":"G4608","v":["σίκερα","síkera","sik'-er-ah","Of Hebrew origin [H7941]; an intoxicant, that is, intensely fermented liquor: - strong drink."]},{"k":"G4609","v":["Σίλας","Sílas","see'-las","Contraction for G4610; Silas, a Christian: - Silas."]},{"k":"G4610","v":["Σιλουανός","Silouanós","sil-oo-an-os'","Of Latin origin; “silvan”; Silvanus, a Christian: - Silvanus. Compare G4609."]},{"k":"G4611","v":["Σιλωάμ","Silōám","sil-o-am'","Of Hebrew origin [H7975]; Siloam (that is, Shiloach), a pool of Jerusalem: - Siloam."]},{"k":"G4612","v":["σιμικίνθιον","simikínthion","sim-ee-kin'-thee-on","Of Latin origin; a semicinctium or half girding, that is, narrow covering (apron): - apron."]},{"k":"G4613","v":["Σίμων","Símōn","see'-mone","Of Hebrew origin [H8095]; Simon (that is, Shimon), the name of nine Israelites: - Simon. Compare G4826."]},{"k":"G4614","v":["Σινᾶ","Sinâ","see-nah'","Of Hebrew origin [H5514]; Sina (that is, Sinai), a mountain in Arabia: - Sina."]},{"k":"G4615","v":["σίναπι","sínapi","sin'-ap-ee","Perhaps from σίνομαι sinomai (to hurt, that is, sting); mustard (the plant): - mustard."]},{"k":"G4616","v":["σινδών","sindṓn","sin-done'","Of uncertain (perhaps foreign) origin; byssos, that is, bleached linen (the cloth or a garment of it): - (fine) linen (cloth)."]},{"k":"G4617","v":["σινιάζω","siniázō","sin-ee-ad'-zo","From σινιον sinion (a sieve); to riddle (figuratively): - sift."]},{"k":"G4618","v":["σιτευτός","siteutós","sit-yoo-ros'","From a derivative of G4621; grain fed, that is, fattened: - fatted."]},{"k":"G4619","v":["σιτιστός","sitistós","sit-is-tos'","From a derivative of G4621; grained that is, fatted: - fatling."]},{"k":"G4620","v":["σιτόμετρον","sitómetron","sit-om'-et-ron","From G4621 and G3358; a grain measure, that is, (by implication) ration (allowance of food): - portion of meat."]},{"k":"G4621","v":["σῖτος","sîtos","see'-tos","σῖτα sita see'-tah is the plural irregular neuter of the first form. Of uncertain derivation; grain, especially wheat: - corn, wheat."]},{"k":"G4622","v":["Σιών","Siṓn","see-own'","Of Hebrew origin [H6726]; Sion (that is, Tsijon), a hill of Jerusalem; figuratively the Church (militant or triumphant): - Sion."]},{"k":"G4623","v":["σιωπάω","siōpáō","see-o-pah'-o","From σιωπη siōpē (silence, that is, a hush; properly muteness, that is, involuntary stillness, or inability ot speak; and thus differing from G4602, which is rather a voluntary refusal or indisposition to speak, although the terms are often used synonymously); to be dumb (but not deaf also, like G2974 properly); figuratively to be calm (as quiet water): - dumb, (hold) peace."]},{"k":"G4624","v":["σκανδαλίζω","skandalízō","skan-dal-id'-zo","To “scandalize”; from G4625; to entrap, that is, trip up (figuratively stumble [transitively] or entice to sin, apostasy or displeasure): - (make to) offend."]},{"k":"G4625","v":["σκάνδαλον","skándalon","skan'-dal-on","A “scandal”; probably from a derivative of G2578; a trap stick (bent sapling), that is, snare (figuratively cause of displeasure or sin): - occasion to fall (of stumbling), offence, thing that offends, stumbling-block."]},{"k":"G4626","v":["σκάπτω","skáptō","skap'-to","Apparently a primary verb; to dig: - dig."]},{"k":"G4627","v":["σκάφη","skáphē","skaf'-ay","A “skiff” (as if dug out), or yawl (carried aboard a large vessel for landing): - boat."]},{"k":"G4628","v":["σκέλος","skélos","skel'-os","Apparently from σκέλλω skellō (to parch; through the idea of leanness); the leg (as lank): - leg."]},{"k":"G4629","v":["σκέπασμα","sképasma","skep'-as-mah","From a derivative of “skepas” (a covering; perhaps akin to the base of G4649 through the idea of noticeableness); clothing: - raiment."]},{"k":"G4630","v":["Σκευᾶς","Skeuâs","skyoo-as'","Apparently of Latin origin; left handed; Scevas (that is, Scaevus), an Israelite: - Sceva."]},{"k":"G4631","v":["σκευή","skeuḗ","skyoo-ay'","From G4632; furniture, that is, spare tackle: - tackling."]},{"k":"G4632","v":["σκεῦος","skeûos","skyoo'-os","Of uncertain affinity; a vessel, implement, equipment or apparatus (literally or figuratively [specifically a wife as contributing to the usefulness of the husband]): - goods, sail, stuff, vessel."]},{"k":"G4633","v":["σκηνή","skēnḗ","skay-nay'","Apparently akin to G4632 and G4639; a tent or cloth hut (literally or figuratively): - habitation, tabernacle."]},{"k":"G4634","v":["σκηνοπηγία","skēnopēgía","skay-nop-ayg-ee'-ah","From G4636 and G4078; the Festival of Tabernacles (so called from the custom of erecting booths for temporary homes): - tabernacles."]},{"k":"G4635","v":["σκηνοποιός","skēnopoiós","skay-nop-oy-os'","From G4633 and G4160; a manufacturer of tents: - tentmaker."]},{"k":"G4636","v":["σκῆνος","skēnos","skay'-nos","From G4633; a hut or temporary residence, that is, (figuratively) the human body (as the abode of the spirit): - tabernacle."]},{"k":"G4637","v":["σκηνόω","skēnóō","skay-no'-o","From G4636; to tent or encamp, that is, (figuratively) to occupy (as a mansion) or (specifically) to reside (as God did in the Tabernacle of old, a symbol fo protection and communion): - dwell."]},{"k":"G4638","v":["σκήνωμα","skḗnōma","skay'-no-mah","From G4637; an encampment, that is, (figuratively) the Temple (as God’s residence), the body (as a tenement for the soul): - tabernacle."]},{"k":"G4639","v":["σκιά","skiá","skee'-ah","Apparently a primary word; “shade” or a shadow (literally or figuratively [darkness of error or an adumbration]): - shadow."]},{"k":"G4640","v":["σκιρτάω","skirtáō","skeer-tah'-o","Akin to σκαίρω skairō (to skip); to jump, that is, sympathetically move (as the quickening of a fetus): - leap (for joy)."]},{"k":"G4641","v":["σκληροκαρδία","sklērokardía","sklay-rok-ar-dee'-ah","Feminine of a compound of G4642 and G2588; hard heartedness, that is, (specifically) destitution of (spiritual) perception: - hardness of heart."]},{"k":"G4642","v":["σκληρός","sklērós","sklay-ros'","From the base of G4628; dry, that is, hard or tough (figuratively harsh, severe): - fierce, hard."]},{"k":"G4643","v":["σκληρότης","sklērótēs","sklay-rot'-ace","From G4642; callousness, that is, (figuratively) stubbornness: - hardness."]},{"k":"G4644","v":["σκληροτράχηλος","sklērotráchēlos","sklay-rot-rakh'-ay-los","From G4642 and G5137; hard naped, that is, (figuratively) obstinate: - stiffnecked."]},{"k":"G4645","v":["σκληρύνω","sklērýnō","sklay-roo'-no","From G4642; to indurate, that is, (figuratively) render stubborn: - harden."]},{"k":"G4646","v":["σκολιός","skoliós","skol-ee-os'","From the base of G4628; warped, that is, winding; figuratively perverse: - crooked, froward, untoward."]},{"k":"G4647","v":["σκόλοψ","skólops","skol'-ops","Perhaps form the base of G4628 and G3700; withered at the front, that is, a point or prickle (figuratively a bodily annoyance or disability): - thorn."]},{"k":"G4648","v":["σκοπέω","skopéō","skop-eh'-o","From G4649; to take aim at (spy), that is, (figuratively) regard: - consider, take heed, look at (on), mark. Compare G3700."]},{"k":"G4649","v":["σκοπός","skopós","skop-os'","(“scope”); From σκέπτομαι skeptomai (to peer about [“skeptic”]; perhaps akin to G4626 through the idea of concealment; compare G4629); a watch (sentry or scout), that is, (by implication) a goal: - mark."]},{"k":"G4650","v":["σκορπίζω","skorpízō","skor-pid'-zo","Apparently from the same as G4651 (through the idea of penetrating); to dissipate, that is, (figuratively) put to flight, waste, be liberal: - disperse abroad, scatter (abroad)."]},{"k":"G4651","v":["σκορπίος","skorpíos","skor-pee'-os","Probably from σκέρπω skerpō, an obsolete word, (perhaps strengthened from the base of G4649 and meaning to pierce); a “scorpion” (from its sting): - scorpion."]},{"k":"G4652","v":["σκοτεινός","skoteinós","skot-i-nos'","From G4655; opaque, that is, (figuratively) benighted: - dark, full of darkness."]},{"k":"G4653","v":["σκοτία","skotía","skot-ee'-ah","From G4655; dimness, obscurity (literally or figuratively): - dark (-ness)."]},{"k":"G4654","v":["σκοτίζω","skotízō","skot-id-zo","From G4655; to obscure (literally or figuratively): - darken."]},{"k":"G4655","v":["σκότος","skótos","skot'-os","From the base of G4639; shadiness, that is, obscurity (literally or figuratively): - darkness."]},{"k":"G4656","v":["σκοτόω","skotóō","skot-o'-o","From G4655; to obscure or blind (literally or figuratively): - be full of darkness."]},{"k":"G4657","v":["σκύβαλον","skýbalon","skoo'-bal-on","Neuter of a presumed derivative of G1519 and G2965 and G906; what is thrown to the dogs, that is, refuse (ordure): - dung."]},{"k":"G4658","v":["Σκύθης","Skýthēs","skoo'-thace","Probably of foreign origin; a Scythene or Scythian, that is, (by implication) a savage: - Scythian."]},{"k":"G4659","v":["σκυθρωπός","skythrōpós","skoo-thro-pos'","From σκυθρός skuthros (sullen) and a derivative of G3700; angry visaged, that is, gloomy or affecting a mournful appearance: - of a sad countenance."]},{"k":"G4660","v":["σκύλλω","skýllō","skool'-lo","Apparently a primary verb; to flay, that is, (figuratively) to harass: - trouble (self)."]},{"k":"G4661","v":["σκῦλον","skŷlon","skoo'-lon","Neuter from G4660; something stripped (as a hide), that is, booty: - spoil."]},{"k":"G4662","v":["σκωληκόβρωτος","skōlēkóbrōtos","sko-lay-kob'-ro-tos","From G4663 and a derivative of G977; worm eaten, that is, diseased with maggots: - eaten of worms."]},{"k":"G4663","v":["σκώληξ","skṓlēx","sko'-lakes","Of uncertain derivative; a grub, maggot or earth worm: - worm."]},{"k":"G4664","v":["σμαράγδινος","smarágdinos","smar-ag'-dee-nos","From G4665; consisting of emerald: - emerald."]},{"k":"G4665","v":["σμάραγδος","smáragdos","smar'-ag-dos","Of uncertain derivation; the emerald or green gem so called: - emerald."]},{"k":"G4666","v":["σμύρνα","smýrna","smoor'-nah","Apparently strengthened for G3464; myrrh: - myrrh."]},{"k":"G4667","v":["Σμύρνα","Smýrna","smoor'-nah","The same as G4666; Smyrna, a place in Asia Minor: - Smyrna."]},{"k":"G4668","v":["Σμυρναῖος","Smyrnaîos","smoor-nah'-yos","From G4667; a Smyrnaean: - in Smyrna."]},{"k":"G4669","v":["σμυρνίζω","smyrnízō","smoor-nid'-zo","From G4667; to tincture with myrrh, that is, embitter (as a narcotic): - mingle with myrrh."]},{"k":"G4670","v":["Σόδομα","Sódoma","sod'-om-ah","Plural, of Hebrew origin [H5467]; Sodoma (that is, Sedom), a place in Palestine: - Sodom."]},{"k":"G4671","v":["σοί","soí","soy","Dative case of G4771; to thee: - thee, thine own, thou, thy."]},{"k":"G4672","v":["Σολομών","Solomṓn","sol-om-one'","Of Hebrew origin [H8010]; Solomon (that is, Shelomoh), the son of David: - Solomon."]},{"k":"G4673","v":["σορός","sorós","sor-os'","Probably akin to the base of G4987; a funereal receptacle (urn, coffin), that is, (by analogy) a bier: - bier."]},{"k":"G4674","v":["σός","sós","sos","From G4771; thine: - thine (own), thy (friend)."]},{"k":"G4675","v":["σοῦ","soû","soo","Genitive case of G4771; of thee, thy: - X home, thee, thine (own), thou, thy."]},{"k":"G4676","v":["σουδάριον","soudárion","soo-dar'-ee-on","Of Latin origin; a sudarium (sweat cloth), that is, towel (for wiping the perspiration from the face, or binding the face of a corpse): - handerchief, napkin."]},{"k":"G4677","v":["Σουσάννα","Sousánna","soo-san'-nah","Of Hebrew origin [H7799] (feminine); lily; Susannah (that is, Shoshannah), an Israelitess: - Susanna."]},{"k":"G4678","v":["σοφία","sophía","sof-ee'-ah","From G4680; wisdom (higher or lower, worldly or spiritual): - wisdom."]},{"k":"G4679","v":["σοφίζω","sophízō","sof-id'-zo","From G4680; to render wise; in a sinister acceptation, to form “sophisms”, that is, continue plausible error: - cunningly devised, make wise."]},{"k":"G4680","v":["σοφός","sophós","sof-os'","Akin to σαφής saphēs (clear); wise (in a most general application): - wise. Compare G5429."]},{"k":"G4681","v":["Σπανία","Spanía","span-ee'-ah","Probably of foreign origin; Spania, a region of Europe: - Spain."]},{"k":"G4682","v":["σπαράσσω","sparássō","spar-as'-so","Prolongation from σπαίρω spairō̄ (to gasp; apparently strengthened from G4685 through the idea of spasmodic contraction); to mangle, that is, convulse with epilepsy: - rend, tear."]},{"k":"G4683","v":["σπαργανόω","sparganóō","spar-gan-o'-o","From σπάργανον sparganon (a strip; from a derivative of the base of G4682 meaning to strap or wrap with strips); to swathe (an infant after the Oriental custom): - wrap in swaddling clothes."]},{"k":"G4684","v":["σπαταλάω","spataláō","spat-al-ah'-o","From σπατάλη spatalē (luxury); to be voluptuous: - live in pleasure, be wanton."]},{"k":"G4685","v":["σπάω","spáō","spah'-o","A primary verb; to draw: - draw (out)."]},{"k":"G4686","v":["σπεῖρα","speîra","spi'-rah","Of immediate Latin origin, but ultimately a derivative of G138 in the sense of its cognate, G1507; a coil (spira, “spire”), that is, (figuratively) a mass of men (a Roman military cohort; also [by analogy] a squad of Levitical janitors): - band."]},{"k":"G4687","v":["σπείρω","speírō","spi'-ro","Probably strengthened from G4685 (through the idea of extending); to scatter, that is, sow (literally or figuratively): - sow (-er), receive seed."]},{"k":"G4688","v":["σπεκουλάτωρ","spekoulátōr","spek-oo-lat'-ore","Of Latin origin; a speculator, that is, military scout (spy or [by extension] life guardsman): - executioner."]},{"k":"G4689","v":["σπένδω","spéndō","spen'-do","Apparently a primary verb; to pour out as a libation, that is, (figuratively) to devote (one’s life or blood, as a sacrifice) (“spend”): - (be ready to) be offered."]},{"k":"G4690","v":["σπέρμα","spérma","sper'-mah","From G4687; somethng sown, that is, seed (including the male “sperm”); by implication offspring; specifically a remnant (figuratively as if kept over for planting): - issue, seed."]},{"k":"G4691","v":["σπερμολόγος","spermológos","sper-mol-og'-os","From G4690 and G3004; a seed picker (as the crow), that is, (figuratively) a sponger, loafer (specifically a gossip or trifler in talk): - babbler."]},{"k":"G4692","v":["σπεύδω","speúdō","spyoo'-do","Probably strengthened from G4228; to “speed” (“study”), that is, urge on (diligently or earnestly); by implication to await eagerly: - (make, with) haste unto."]},{"k":"G4693","v":["σπήλαιον","spḗlaion","spay'-lah-yon","Neuter of a presumed derivation of σπέος speos (a grotto); a cavern; by implication a hiding place or resort: - cave, den."]},{"k":"G4694","v":["σπιλάς","spilás","spee-las'","Of uncertain derivation; a ledge or reef of rock in the sea: - spot [by confusion with G4696]."]},{"k":"G4695","v":["σπιλόω","spilóō","spee-lo'-o","From G4696; to stain or soil (literally or figuratively): - defile, spot."]},{"k":"G4696","v":["σπίλος","spílos","spee'-los","Of uncertain derivation; a stain or blemish, that is, (figuratively) defect, disgrace: - spot."]},{"k":"G4697","v":["σπλαγχνίζομαι","splanchnízomai","splangkh-nid'-zom-ahee","Middle voice from G4698; to have the bowels yearn, that is, (figuratively) feel sympathy, to pity: - have (be moved with) compassion."]},{"k":"G4698","v":["σπλάγχνον","splánchnon","splangkh'-non","Probably strengthened from σπλήν splēn (the spleen); an intestine (plural); figuratively pity or sympathy: - bowels, inward affection, + tender mercy."]},{"k":"G4699","v":["σπόγγος","spóngos","spong'-gos","Perhaps of foreign origin; a “sponge”: - spunge."]},{"k":"G4700","v":["σποδός","spodós","spod-os'","Of uncertain derivation; ashes: - ashes."]},{"k":"G4701","v":["σπορά","sporá","spor-ah'","From G4687; a sowing, that is, (by implication) parentage: - seed."]},{"k":"G4702","v":["σπόριμος","spórimos","spor'-ee-mos","From G4703; sown, that is, (neuter plural) a planted field: - corn (-field)."]},{"k":"G4703","v":["σπόρος","spóros","spro'-os","From G4687; a scattering (of seed), that is, (concretely) seed (as sown): - seed (X sown)."]},{"k":"G4704","v":["σπουδάζω","spoudázō","spoo-dad'-zo","From G4710; to use speed, that is, to make effort, be prompt or earnest: - do (give) diligence, be diligent (forward), endeavour, labour, study."]},{"k":"G4705","v":["σπουδαῖος","spoudaîos","spoo-dah'-yos","From G4710; prompt, energetic, earnest: - diligent."]},{"k":"G4706","v":["σπουδαιότερον","spoudaióteron","spoo-dah-yot'-er-on","Neuter of G4707 as adverb; more earnestly than others), that is, very promptly: - very diligently."]},{"k":"G4707","v":["σπουδαιότερος","spoudaióteros","spoo-dah-yot'-er-os","Comparative of G4705; more prompt, more earnest: - more diligent (forward)."]},{"k":"G4708","v":["σπουδαιοτέρως","spoudaiotérōs","spoo-dah-yot-er'-oce","Adverb from G4707; more speedily, that is, sooner than otherwise: - more carefully."]},{"k":"G4709","v":["σπουδαίως","spoudaíōs","spoo-dah'-yoce","Adverb from G4705; earnestly, promptly: - diligently, instantly."]},{"k":"G4710","v":["σπουδή","spoudḗ","spoo-day'","From G4692; “speed”, that is, (by implication) despatch, eagerness, earnestness: - business, (earnest) care (-fulness), diligence forwardness, haste."]},{"k":"G4711","v":["σπυρίς","spyrís","spoo-rece'","From G4687 (as woven); a hamper or lunch receptacle: - basket."]},{"k":"G4712","v":["στάδιον","stádion","stad'-ee-on","Or the masculine plural form, στάδιος stadios stad'-ee-os. From the base of G2476 (as fixed); a stade or certain measure of distance; by implication a stadium or race course: - furlong, race."]},{"k":"G4713","v":["στάμνος","stámnos","stam'-nos","From the base of G2476 (as stationary); a jar or earthen tank: - pot."]},{"k":"G4714","v":["στάσις","stásis","stas'-is","From the base of G2476; a standing (properly the act), that is, (by analogy) position (existence); by implication a popular uprising; figuratively controversy: - dissension, insurrection, X standing, uproar."]},{"k":"G4715","v":["στατήρ","statḗr","stat-air'","From the base of G2746; a stander (standard of value), that is, (specifically) a stater or certain coin: - piece of money."]},{"k":"G4716","v":["σταυρός","staurós","stow-ros'","From the base of G2476; a stake or post (as set upright), that is, (specifically) a pole or cross (as an instrument of capital punishment); figuratively exposure to death, that is, self denial; by implication the atonement of Christ: - cross."]},{"k":"G4717","v":["σταυρόω","stauróō","stow-ro'-o","From G4716; to impale on the cross; figuratively to extinguish (subdue) passion or selfishness: - crucify."]},{"k":"G4718","v":["σταφυλή","staphylḗ","staf-oo-lay'","Probably from the base of G4735; a cluster of grapes (as if intertwined): - grapes."]},{"k":"G4719","v":["στάχυς","stáchys","stakh'-oos","From the base of G2476; a head of grain (as standing out from the stalk): - ear (of corn)."]},{"k":"G4720","v":["Στάχυς","Stáchys","stakh'-oos","The same as G4719; Stachys, a Christian: - Stachys."]},{"k":"G4721","v":["στέγη","stégē","steg'-ay","Strengthened from a primary word τέγος tegos (a “thatch” or “deck” of building); a roof: - roof."]},{"k":"G4722","v":["στέγω","stégō","steg'-o","From G4721; to roof over, that is, (figuratively) to cover with silence (endure patiently): - (for-) bear, suffer."]},{"k":"G4723","v":["στείρος","steíros","sti'-ros","A contraction from G4731 (as stiff and unnatural); “sterile”: - barren."]},{"k":"G4724","v":["στέλλω","stéllō","stel'-lo","Probably strengthened from the base of G2476; properly to set fast (“stall”), that is, (figuratively) to repress (reflexively abstain from associating with): - avoid, withdraw self."]},{"k":"G4725","v":["στέμμα","stémma","stem'-mah","From the base of G4735; a wreath for show: - garland."]},{"k":"G4726","v":["στεναγμός","stenagmós","sten-ag-mos'","From G4727; a sigh: - groaning."]},{"k":"G4727","v":["στενάζω","stenázō","sten-ad'-zo","From G4728; to make (intransitively be) in straits, that is, (by implication) to sigh, murmur, pray inaudibly: - with grief, groan, grudge, sigh."]},{"k":"G4728","v":["στενός","stenós","sten-os'","Probably from the base of G2476; narrow (from obstacles standing close about): - strait."]},{"k":"G4729","v":["στενοχωρέω","stenochōréō","sten-okh-o-reh'-o","From the same as G4730; to hem in closely, that is, (figuratively) cramp: - distress, straiten."]},{"k":"G4730","v":["στενοχωρία","stenochōría","sten-okh-o-ree'-ah","From a compound of G4728 and G5561; narrowness of room, that is, (figuratively) calamity: - anguish, distress."]},{"k":"G4731","v":["στερεός","stereós","ster-eh-os'","From G2476; stiff, that is, solid, stable (literally or figuratively): - stedfast, strong, sure."]},{"k":"G4732","v":["στερεόω","stereóō","ster-eh-o'-o","From G4731; to solidify, that is, confirm (literally or figuratively): - establish, receive strength, make strong."]},{"k":"G4733","v":["στερέωμα","steréōma","ster-eh'-o-mah","From G4732; something established, that is, (abstractly) confirmation (stability): - stedfastness."]},{"k":"G4734","v":["Στεφανᾶς","Stephanâs","stef-an-as'","Probably contraction for στεφανωτός stephanōtos (crowned; from G4737); Stephanas, a Christian: - Stephanas."]},{"k":"G4735","v":["στέφανος","stéphanos","stef'-an-os","From an apparently primary “stepho” (to twine or wreathe); a chaplet (as a badge of royalty, a prize in the public games or a symbol of honor generally; but more conspicuous and elaborate than the simple fillet, G1238), literally or figuratively: - crown."]},{"k":"G4736","v":["Στέφανος","Stéphanos","stef'-an-os","The same as G4735; Stephanus, a Christian: - Stephen."]},{"k":"G4737","v":["στεφανόω","stephanóō","stef-an-o'-o","From G4735; to adorn with an honorary wreath (literally or figuratively): - crown."]},{"k":"G4738","v":["στῆθος","stēthos","stay'-thos","From G2476 (as standing prominently); the (entire external) bosom, that is, chest: - breast."]},{"k":"G4739","v":["στήκω","stḗkō","stay'-ko","From the perfect tense of G2476; to be stationary, that is, (figuratively) to persevere: - stand (fast)."]},{"k":"G4740","v":["στηριγμός","stērigmós","stay-rig-mos'","From G4741; stability (figuratively): - stedfastness"]},{"k":"G4741","v":["στηρίζω","stērízō","stay-rid'-zo","From a presumed derivative of G2476 (like G4731); to set fast, that is, (literally) to turn resolutely in a certain direction, or (figuratively) to confirm: - fix, (e-) stablish, stedfastly set, strengthen."]},{"k":"G4742","v":["στίγμα","stígma","stig'-mah","From a primary word στίζω stizō (to “stick”, that is, prick); a mark incised or punched (for recognition of ownership), that is, (figuratively) scar of service: - mark."]},{"k":"G4743","v":["στιγμή","stigmḗ","stig-may'","Feminine of G4742; a point of time, that is, an instant: - moment."]},{"k":"G4744","v":["στίλβω","stílbō","stil'-bo","Apparently a primary verb; to gleam, that is, flash intensely: - shining."]},{"k":"G4745","v":["στοά","stoá","sto-ah'","Probably from G2476; a colonnade or interior piazza: - porch."]},{"k":"G4746","v":["στοιβάς","stoibás","stoy-bas'","From a primary word στείβω steibō (to “step” or “stamp”); a spread (as if tramped flat) of loose materials for a couch, that is, (by implication) a bough of a tree so employed: - branch."]},{"k":"G4747","v":["στοιχεῖον","stoicheîon","stoy-khi'-on","Neuter of a presumed derivative of the base of G4748; something orderly in arrangement, that is, (by implication) a serial (basal, fundamental, initial) constituent (literally), proposition (figuratively): - element, principle, rudiment."]},{"k":"G4748","v":["στοιχέω","stoichéō","stoy-kheh'-o","From a derivative of στείχω steichō̄ (to range in regular line); to march in (military) rank (keep step), that is, (figuratively) to conform to virtue and piety: - walk (orderly)."]},{"k":"G4749","v":["στολή","stolḗ","stol-ay'","From G4724; equipment, that is, (specifically) a “stole” or long fitting gown (as a mark of dignity): - long clothing (garment), (long) robe."]},{"k":"G4750","v":["στόμα","stóma","stom'-a","Probably stregthened from a presumed derivative of the base of G5114; the mouth (as if a gash in the face); by implication language (and its relations); figuratively an opening (in the earth); specifically the front or edge (of a weapon): - edge, face, mouth."]},{"k":"G4751","v":["στόμαχος","stómachos","stom'-akh-os","From G4750; an orifice (the gullet), that is, (specifically) the “stomach”: - stomach."]},{"k":"G4752","v":["στρατεία","strateía","strat-i'-ah","From G4754; military service, that is, (figuratively) the apostolic career (as one of hardship and danger): - warfare."]},{"k":"G4753","v":["στράτευμα","stráteuma","strat'-yoo-mah","From G4754; an armament, that is, (by implication) a body of troops (more or less extensive or systematic): - army, soldier, man of war."]},{"k":"G4754","v":["στρατεύομαι","strateúomai","strat-yoo'-om-ahee","Middle voice from the base of G4756; to serve in a military campaign; figuratively to execute the apostolate (with its arduous duties and functions), to contend with carnal inclinations: - soldier, (go to) war (-fare)."]},{"k":"G4755","v":["στρατηγός","stratēgós","strat-ay-gos'","From the base of G4756 and G71 or G2233; a general, that is, (by implication or analogy) a (military) governor (praetor), the chief (praefect) of the (Levitical) temple wardens: - captain, magistrate."]},{"k":"G4756","v":["στρατιά","stratiá","strat-ee'-ah","Feminine of a derivative of στρατός stratos (an army; from the base of G4766, as encamped); camp likeness, that is, an army, that is, (figuratively) the angels, the celestial luminaries: - host."]},{"k":"G4757","v":["στρατιώτης","stratiṓtēs","strat-ee-o'-tace","From a presumed derivative of the same as G4756; a camperout, that is, a (common) warrior (literally or figuratively): - soldier."]},{"k":"G4758","v":["στρατολογέω","stratologéō","strat-ol-og-eh'-o","From a compound of the base of G4756 and G3004 (in its original sense); to gather (or select) as a warrior, that is, enlist in the army: - choose to be a soldier."]},{"k":"G4759","v":["στρατοπεδάρχης","stratopedárchēs","strat-op-ed-ar'-khace","From G4760 and G757; a ruler of an army, that is, (specifically) a Praetorian praefect: - captain of the guard."]},{"k":"G4760","v":["στρατόπεδον","stratópedon","strat-op'-ed-on","From the base of G4756 and the same as G3977; a camping ground, that is, (by implication) a body of troops: - army."]},{"k":"G4761","v":["στρεβλόω","streblóō","streb-lo'-o","From a derivative of G4762; to wrench, that is, (specifically) to torture (by the rack), but only figuratively to pervert: - wrest."]},{"k":"G4762","v":["στρέφω","stréphō","stref'-o","Strengthened from the base of G5157; to twist, that is, turn quite around or reverse (literally or figuratively): - convert, turn (again, back again, self, self about)."]},{"k":"G4763","v":["στρηνιάω","strēniáō","stray-nee-ah'-o","From a presumed derivative of G4764; to be luxurious: - live deliciously."]},{"k":"G4764","v":["στρῆνος","strēnos","stray'-nos","Akin to G4731; a “straining”, “strenuousness” or “strength”, that is, (figuratively) luxury (voluptuousness): - delicacy."]},{"k":"G4765","v":["στρουθίον","strouthíon","stroo-thee'-on","Diminutive of στρουθός strouthos (a sparrow); a little sparrow: - sparrow."]},{"k":"G4766","v":["στρώννυμι","strṓnnymi","strone'-noo-mee","Or a simpler form στρωννύω strōnnuō strone'-noo'-o, prolonged from a still simpler form στρόω stroō stro'-o (used only as an alternate in certain tenses; probably akin to G4731 through the idea of positing); to “strew”, that is, spread (as a carpet or couch): - make bed, furnish, spread, strew."]},{"k":"G4767","v":["στυγνητός","stygnētós","stoog-nay-tos'","From a derivative of an obsolete, apparently primary, word στύγω stugō (to hate); hated, that is, odious: - hateful."]},{"k":"G4768","v":["στυγνάζω","stygnázō","stoog-nad'-zo","From the same as G4767; to render gloomy, that is, (by implication) glower (be overcast with clouds, or sombreness of speech): - lower, be sad."]},{"k":"G4769","v":["στῦλος","stŷlos","stoo'-los","From στύω stuō (to stiffen; properly akin to the base of G2476); a post (“style”), that is, (figuratively) support: - pillar."]},{"k":"G4770","v":["Στωϊκός","Stōïkós","sto-ik-os'","From G4745; a “stoic” (as occupying a particular porch in Athens), that is, adherent of a certain philosophy: - Stoick."]},{"k":"G4771","v":["σύ","sý","soo","The personal pronoun of the second person singular; thou: - thou. See also G4571, G4671, G4675; and for the plur. G5209, G5210, G5213, G5216."]},{"k":"G4772","v":["συγγένεια","syngéneia","soong-ghen'-i-ah","From G4773; relationship, that is, (concretely) relatives: - kindred."]},{"k":"G4773","v":["συγγενής","syngenḗs","soong-ghen-ace'","From G4862 and G1085; a relative (by blood); by extension a fellow countryman: - cousin, kin (-sfolk, -sman)."]},{"k":"G4774","v":["συγγνώμη","syngnṓmē","soong-gno'-may","From a compound of G4862 and G1097; fellow knowledge, that is, concession: - permission."]},{"k":"G4775","v":["συγκάθημαι","synkáthēmai","soong-kath'-ay-mahee","From G4862 and G2521; to seat oneself in company with: - sit with."]},{"k":"G4776","v":["συγκαθίζω","synkathízō","soong-kath-id'-zo","From G4862 and G2523; to give (or take) a seat in company with: - (make) sit (down) together."]},{"k":"G4777","v":["συγκακοπαθέω","synkakopathéō","soong-kak-op-ath-eh'-o","From G4862 and G2553; to suffer hardship in company with: - be partaker of afflictions."]},{"k":"G4778","v":["συγκακουχέω","synkakouchéō","soong-kak-oo-kheh'-o","From G4862 and G2558; to maltreat in company with, that is, (passively) endure persecution together: - suffer affliction with."]},{"k":"G4779","v":["συγκαλέω","synkaléō","soong-kal-eh'-o","From G4862 and G2564; to convoke: - call together."]},{"k":"G4780","v":["συγκαλύπτω","synkalýptō","soong-kal-oop'-to","From G4862 and G2572; to conceal altogether: - cover."]},{"k":"G4781","v":["συγκάμπτω","synkámptō","soong-kamp'-to","From G4862 and G2578; to bend together, that is, (figuratively) to afflict: - bow down."]},{"k":"G4782","v":["συγκαταβαίνω","synkatabaínō","soong-kat-ab-ah'-ee-no","From G4862 and G2597; to descend in company with: - go down with."]},{"k":"G4783","v":["συγκατάθεσις","synkatáthesis","soong-kat-ath'-es-is","From G4784; a deposition (of sentiment) in company with, that is, (figuratively) accord with: - agreement."]},{"k":"G4784","v":["συγκατατίθεμαι","synkatatíthemai","soong-kat-at-ith'-em-ahee","Middle voice from G4862 and G2698; to deposit (one’s vote or opinion) in company with, that is, (figuratively) to accord with: - consent."]},{"k":"G4785","v":["συγκαταψηφίζω","synkatapsēphízō","soong-kat-aps-ay-fid'-zo","From G4862 and a compound of G2596 and G5585; to count down in company with, that is, enroll among: - number with."]},{"k":"G4786","v":["συγκεράννυμι","synkeránnymi","soong-ker-an'-noo-mee","From G4862 and G2767; to commingle, that is, (figuratively) to combine or assimilate: - mix with, temper together."]},{"k":"G4787","v":["συγκινέω","synkinéō","soong-kin-eh'-o","From G4682 and G2795; to move together, that is, (specifically) to excite as a mass (to sedition): - stir up."]},{"k":"G4788","v":["συγκλείω","synkleíō","soong-kli'-o","From G4862 and G2808; to shut together, that is, include or (figuratively) embrace in a common subjection to: - conclude, inclose, shut up."]},{"k":"G4789","v":["συγκληρονόμος","synklēronómos","soong-klay-ron-om'-os","From G4862 and G2818; a co-heir, that is, (by analogy) participant in common: - fellow (joint) -heir, heir together, heir with."]},{"k":"G4790","v":["συγκοινωνέω","synkoinōnéō","soong-koy-no-neh'-o","From G4862 and G2841; to share in company with, that is, co-participate in: - communicate (have fellowship) with, be partaker of."]},{"k":"G4791","v":["συγκοινωνός","synkoinōnós","soong-koy-no-nos'","From G4862 and G2844; a co-participant: - companion, partake (-r, -r with)."]},{"k":"G4792","v":["συγκομίζω","synkomízō","soong-kom-id'-zo","From G4862 and G2865; to convey together, that is, collect or bear away in company with others: - carry."]},{"k":"G4793","v":["συγκρίνω","synkrínō","soong-kree'-no","From G4862 and G2919; to judge of one thing in connection with another, that is, combine (spiritual ideas with appropriate expressions) or collate (one person with another by way of contrast or resemblance): - compare among (with)."]},{"k":"G4794","v":["συγκύπτω","synkýptō","soong-koop'-to","From G4862 and G2955; to stoop altogether, that is, be completely overcome by: - bow together."]},{"k":"G4795","v":["συγκυρία","synkyría","soong-koo-ree'-ah","From a compound of G4862 and κυρέω kureō (to light or happen; from the base of G2962); concurrence, that is, accident: - chance."]},{"k":"G4796","v":["συγχαίρω","synchaírō","soong-khah'-ee-ro","From G4862 and G5463; to sympathize in gladness, congratulate: - rejoice in (with)."]},{"k":"G4797","v":["συγχέω","synchéō","soong-kheh'-o","Or συγχύνω sugchunō soong-khoo'-no. From G4862 and χέω cheō (to pour) or its alternate; to commingle promiscuously, that is, (figuratively) to throw (an assembly) into disorder, to perplex (the mind): - confound, confuse, stir up, be in an uproar."]},{"k":"G4798","v":["συγχράομαι","synchráomai","soong-khrah'-om-ahee","From G4862 and G5530; to use jointly, that is, (by implication) to hold intercourse in common: - have dealings with."]},{"k":"G4799","v":["σύγχυσις","sýnchysis","soong'-khoo-sis","From G4797; commixture, that is, (figuratively) riotous disturbance: - confusion."]},{"k":"G4800","v":["συζάω","syzáō","sood-zah'-o","From G4862 and G2198; to continue to live in common with, that is, co-survive (literally or figuratively): - live with."]},{"k":"G4801","v":["συζεύγνυμι","syzeúgnymi","sood-zyoog'-noo-mee","From G4862 and the base of G2201; to yoke together, that is, (figuratively) conjoin (in marriage): - join together."]},{"k":"G4802","v":["συζητέω","syzētéō","sood-zay-teh'-o","From G4862 and G2212; to investigate jointly, that is, discuss, controvert, cavil: - dispute (with), enquire, question (with), reason (together)."]},{"k":"G4803","v":["συζήτησις","syzḗtēsis","sood-zay'-tay-sis","From G4802; mutual questioning, that is, discussion: - disputation (-ting), reasoning."]},{"k":"G4804","v":["συζητητής","syzētētḗs","sood-zay-tay-tace'","From G4802; a disputant, that is, sophist: - disputer."]},{"k":"G4805","v":["σύζυγος","sýzygos","sood'-zoo-gos","From G4801; co-yoked, that is, (figuratively) as noun, a colleague; probably rather as proper name; Syzygus, a Christian: - yokefellow."]},{"k":"G4806","v":["συζωοποιέω","syzōopoiéō","sood-zo-op-oy-eh'-o","From G4862 and G2227; to reanimate conjointly with (figuratively): - quicken together with."]},{"k":"G4807","v":["συκάμινος","sykáminos","soo-kam'-ee-nos","Of Hebrew origin [H8256] in imitation of G4809; a sycamore or fig tree: - sycamine tree."]},{"k":"G4808","v":["συκῆ","sykē","soo-kay'","From G4810; a fig tree: - fig tree."]},{"k":"G4809","v":["συκομωραία","sykomōraía","soo-kom-o-rah'-yah","From G4810 and μόρον moron (the mulberry); the “sycamore” or fig tree: - sycamore tree. Compare G4807."]},{"k":"G4810","v":["σῦκον","sŷkon","soo'-kon","Apparently a primary word; a fig: - fig."]},{"k":"G4811","v":["συκοφαντέω","sykophantéō","soo-kof-an-teh'-o","From a compound of G4810 and a derivative of G5316; to be a fig informer (reporter of the law forbidding the exportation of figs from Greece), “sycopant”, that is, (generally and by extension) to defraud (exact unlawfully, extort): - accuse falsely, take by false accusation."]},{"k":"G4812","v":["συλαγωγέω","sylagōgéō","soo-lag-ogue-eh'-o","From the base of G4813 and (the reduplicated form of) G71; to lead away as booty, that is, (figuratively) seduce: - spoil."]},{"k":"G4813","v":["συλάω","syláō","soo-lah'-o","From a derivative of σύλλω sullō̄ (to strip; probably akin to G138; compare G4661); to despoil: - rob."]},{"k":"G4814","v":["συλλαλέω","syllaléō","sool-lal-eh'-o","From G4862 and G2980; to talk together, that is, converse: - commune (confer, talk) with, speak among."]},{"k":"G4815","v":["συλλαμβάνω","syllambánō","sool-lam-ban'-o","From G4862 and G2983; to clasp, that is, seize (arrest, capture); specifically to conceive (literally or figuratively); by implication to aid: - catch, conceive, help, take."]},{"k":"G4816","v":["συλλέγω","syllégō","sool-leg'-o","From G4862 and G3004 in its original sense; to collect: - gather (together, up)."]},{"k":"G4817","v":["συλλογίζομαι","syllogízomai","sool-log-id'-zom-ahee","From G4862 and G3049; to reckon together (with oneself), that is, deliberate: - reason with."]},{"k":"G4818","v":["συλλυπέω","syllypéō","sool-loop-eh'-o","From G4862 and G3076; to afflict jointly, that is, (passively) sorrow at (on account of) some one: - be grieved."]},{"k":"G4819","v":["συμβαίνω","symbaínō","soom-bah'-ee-no","From G4862 and the base of G939; to walk (figuratively transpire) together, that is, concur (take place): - be (-fall), happen (unto)."]},{"k":"G4820","v":["συμβάλλω","symbállō","soom-bal'-lo","From G4862 and G906; to combine, that is, (in speaking) to converse, consult, dispute, (mentally) to consider, (by implication) to aid, (personally) to join, attack: - confer, encounter, help, make, meet with, ponder."]},{"k":"G4821","v":["συμβασιλεύω","symbasileúō","soom-bas-il-yoo'-o","From G4862 and G936; to be co-regent (figuratively): - reign with."]},{"k":"G4822","v":["συμβιβάζω","symbibázō","soom-bib-ad'-zo","From G4862 and βιβάζω bibazō (to force; causatively [by reduplication] of the base of G939); to drive together, that is, unite (in association or affection), (mentally) to infer, show, teach: - compact, assuredly, gather, instruct, knit together, prove."]},{"k":"G4823","v":["συμβουλεύω","symbouleúō","soom-bool-yoo'-o","From G4862 and G1011; to give (or take) advice jointly, that is, recommend, deliberate or determine: - consult, (give, take) counsel (together)."]},{"k":"G4824","v":["συμβούλιον","symboúlion","soom-boo'-lee-on","Neuter of a presumed derivative of G4825; advisement; specifically a deliberative body, that is, the provincial assessors or lay court: - consultation, counsel, council."]},{"k":"G4825","v":["σύμβουλος","sýmboulos","soom'-boo-los","From G4862 and G1012; a consultor, that is, adviser: - counsellor."]},{"k":"G4826","v":["Συμεών","Symeṓn","soom-eh-one'","From the same as G4613; Symeon (that is, Shimon), the name of five Israelites: - Simeon, Simon."]},{"k":"G4827","v":["συμμαθητής","symmathētḗs","soom-math-ay-tace'","From a compound of G4862 and G3129; a co-learner (of Christianity): - fellowdisciple."]},{"k":"G4828","v":["συμμαρτυρέω","symmartyréō","soom-mar-too-reh'-o","From G4862 and G3140; to testify jointly, that is, corroborate by (concurrent) evidence: - testify unto, (also) bear witness (with)."]},{"k":"G4829","v":["συμμερίζομαι","symmerízomai","soom-mer-id'-zom-ahee","Middle voice from G4862 and G3307; to share jointly, that is, participate in: - be partaker with."]},{"k":"G4830","v":["συμμέτοχος","symmétochos","soom-met'-okh-os","From G4862 and G3353; a co-participant: - partaker."]},{"k":"G4831","v":["συμμιμητής","symmimētḗs","soom-mim-ay-tace'","From a presumed compound of G4862 and G3401; a co-imitator, that is, fellow votary: - follower together."]},{"k":"G4832","v":["σύμμορφος","sýmmorphos","soom-mor-fos'","From G4862 and G3444; jointly formed, that is, (figuratively) similar: - conformed to, fashioned like unto."]},{"k":"G4833","v":["συμμορφόω","symmorphóō","soom-mor-fo'-o","From G4832; to render like, that is, (figuratively) to assimilate: - make conformable unto."]},{"k":"G4834","v":["συμπαθέω","sympathéō","soom-path-eh'-o","From G4835; to feel “sympathy” with, that is, (by implication) to commiserate: - have compassion, be touched with a feeling of."]},{"k":"G4835","v":["συμπαθής","sympathḗs","soom-path-ace'","From G4841; having a fellow feeling (“sympathetic”), that is, (by implication) mutually commiserative: - having compassion one of another."]},{"k":"G4836","v":["συμπαραγίνομαι","symparagínomai","soom-par-ag-in'-om-ahee","From G4862 and G3854; to be present together, that is, to convene; by implication to appear in aid: - come together, stand with."]},{"k":"G4837","v":["συμπαρακαλέω","symparakaléō","soom-par-ak-al-eh'-o","From G4862 and G3870; to console jointly: - comfort together."]},{"k":"G4838","v":["συμπαραλαμβάνω","symparalambánō","soom-par-al-am-ban'-o","From G4862 and G3880; to take along in company: - take with."]},{"k":"G4839","v":["συμπαραμένω","symparaménō","soom-par-am-en'-o","From G4862 and G3887; to remain in company, that is, still live: - continue with."]},{"k":"G4840","v":["συμπάρειμι","sympáreimi","soom-par'-i-mee","From G4862 and G3918; to be at hand together, that is, now present: - be here present with."]},{"k":"G4841","v":["συμπάσχω","sympáschō","soom-pas'-kho","From G4862 and G3958 (including its alternate); to experience pain jointly or of the same kind (specifically persecution; to “sympathize”): - suffer with."]},{"k":"G4842","v":["συμπέμπω","sympémpō","soom-pem'-po","From G4862 and G3992; to despatch in company: - send with."]},{"k":"G4843","v":["συμπεριλαμβάνω","symperilambánō","soom-per-ee-lam-ban'-o","From G4862 and a compound of G4012 and G2983; to take by inclosing altogether, that is, earnestly throw the arms about one: - embrace."]},{"k":"G4844","v":["συμπίνω","sympínō","soom-pee'-no","From G4862 and G4095; to partake a beverage in company: - drink with."]},{"k":"G4845","v":["συμπληρόω","symplēróō","soom-play-ro'-o","From G4862 and G4137; to implenish completely, that is, (of space) to swamp (a boat), or (of time) to accomplish (passively be complete): - (fully) come, fill up."]},{"k":"G4846","v":["συμπνίγω","sympnígō","soom-pnee'-go","From G4862 and G4155; to strangle completely, that is, (literally) to drown, or (figuratively) to crowd: - choke, throng."]},{"k":"G4847","v":["συμπολίτης","sympolítēs","soom-pol-ee'-tace","From G4862 and G4177; a native of the same town, that is, (figuratively) co-religionist (fellow Christian): - fellow-citizen."]},{"k":"G4848","v":["συμπορεύομαι","symporeúomai","soom-por-yoo'-om-ahee","From G4862 and G4198; to journey together; by implication to assemble: - go with, resort."]},{"k":"G4849","v":["συμπόσιον","sympósion","soom-pos'-ee-on","Neuter of a derivative of the alternate of G4844; a drinking party (“symposium”), that is, (by extension) a room of guests: - company."]},{"k":"G4850","v":["συμπρεσβύτερος","sympresbýteros","soom-pres-boo'-ter-os","From G4862 and G4245; a co-presbyter: - presbyter, also an elder."]},{"k":"G4851","v":["συμφέρω","symphérō","soom-fer'-o","From G4862 and G5342 (including its alternate); to bear together (contribute), that is, (literally) to collect, or (figuratively) to conduce; especially (neuter participle as noun) advantage: - be better for, bring together, be expedient (for), be good, (be) profit (-able for)."]},{"k":"G4852","v":["σύμφημι","sýmphēmi","soom'-fay-mee","From G4862 and G5346; to say jointly, that is, assent to: - consent unto."]},{"k":"G4853","v":["συμφυλέτης","symphylétēs","soom-foo-let'-ace","From G4862 and a derivative of G5443; a co-tribesman, that is, native of the same country: - countryman."]},{"k":"G4854","v":["σύμφυτος","sýmphytos","soom'-foo-tos","From G4862 and a derivative of G5453; grown along with (connate), that is, (figuratively) closely united to: - planted together."]},{"k":"G4855","v":["συμφύω","symphýō","soom-foo'-o","From G4862 and G5453; passively to grow jointly: - spring up with."]},{"k":"G4856","v":["συμφωνέω","symphōnéō","soom-fo-neh'-o","From G4859; to be harmonious, that is, (figuratively) to accord (be suitable, concur) or stipulate (by compact): - agree (together, with)."]},{"k":"G4857","v":["συμφώνησις","symphṓnēsis","soom-fo'-nay-sis","From G4856; accordance: - concord."]},{"k":"G4858","v":["συμφωνία","symphōnía","soom-fo-nee'-ah","From G4859; unison of sound (“symphony”), that is, a concert of instruments (harmonious note): - music."]},{"k":"G4859","v":["σύμφωνος","sýmphōnos","soom'-fo-nos","From G4862 and G5456; sounding together (alike), that is, (figuratively) accordant (neuter as noun, agreement): - consent."]},{"k":"G4860","v":["συμψηφίζω","sympsēphízō","soom-psay-fid'-zo","From G4862 and G5585; to compute jointly: - reckon."]},{"k":"G4861","v":["σύμψυχος","sýmpsychos","soom'-psoo-khos","From G4862 and G5590; co-spirited, that is, similar in sentiment: - like-minded."]},{"k":"G4862","v":["σύν","sýn","soon","A primary preposition denoting union; with or together (but much closer than G3326 or G3844), that is, by association, companionship, process, resemblance, possession, instrumentality, addition, etc.: - beside, with. In compounds it has similar applications, including completeness."]},{"k":"G4863","v":["συνάγω","synágō","soon-ag'-o","From G4862 and G71; to lead together, that is, collect or convene; specifically to entertain (hospitably): - + accompany, assemble (selves, together), bestow, come together, gather (selves together, up, together), lead into, resort, take in."]},{"k":"G4864","v":["συναγωγή","synagōgḗ","soon-ag-o-gay'","From (the reduplicated form of) G4863; an assemblage of persons; specifically a Jewish “synagogue” (the meeting or the place); by analogy a Christian church: - assembly, congregation, synagogue."]},{"k":"G4865","v":["συναγωνίζομαι","synagōnízomai","soon-ag-o-nid'-zom-ahee","From G4862 and G75; to struggle in company with, that is, (figuratively) to be a partner (assistant): - strive together with."]},{"k":"G4866","v":["συναθλέω","synathléō","soon-ath-leh'-o","From G4862 and G118; to wrestle in company with, that is, (figuratively) to seek jointly: - labour with, strive together for."]},{"k":"G4867","v":["συναθροίζω","synathroízō","soon-ath-royd'-zo","From G4862 and ἀθροίζω athroizō (to hoard); to convene: - call (gather) together."]},{"k":"G4868","v":["συναίρω","synaírō","soon-ah'-ee-ro","From G4862 and G142; to make up together, that is, (figuratively) to compute (an account): - reckon, take."]},{"k":"G4869","v":["συναιχμάλωτος","synaichmálōtos","soon-aheekh-mal'-o-tos","From G4862 and G164; a co-captive: - fellowprisoner."]},{"k":"G4870","v":["συνακολουθέω","synakolouthéō","soon-ak-ol-oo-theh'-o","From G4862 and G190; to accompany: - follow."]},{"k":"G4871","v":["συναλίζω","synalízō","soon-al-id'-zo","From G4862 and ἁλίζω halizō (to throng); to accumulate, that is, convene: - assemble together."]},{"k":"G4872","v":["συναναβαίνω","synanabaínō","soon-an-ab-ah'-ee-no","From G4862 and G305; to ascend in company with: - come up with."]},{"k":"G4873","v":["συνανάκειμαι","synanákeimai","soon-an-ak'-i-mahee","From G4862 and G345; to recline in company with (at a meal): - sit (down, at the table, together) with (at meat)."]},{"k":"G4874","v":["συναναμίγνυμι","synanamígnymi","soon-an-am-ig'-noo-mee","From G4862 and a compound of G303 and G3396; to mix up together, that is, (figuratively) associate with: - (have, keep) company (with)."]},{"k":"G4875","v":["συναναπαύομαι","synanapaúomai","soon-an-ap-ow'-om-ahee","Middle voice from G4862 and G373; to recruit oneself in company with: - refresh with."]},{"k":"G4876","v":["συναντάω","synantáō","soon-an-tah'-o","From G4862 and a derivative of G473; to meet with; figuratively to occur: - befall, meet."]},{"k":"G4877","v":["συνάντησις","synántēsis","soon-an'-tay-sis","From G4876; a meeting with: - meet."]},{"k":"G4878","v":["συναντιλαμβάνομαι","synantilambánomai","soon-an-tee-lam-ban'-om-ahee","From G4862 and G482; to take hold of opposite together, that is, co-operate (assist): - help."]},{"k":"G4879","v":["συναπάγω","synapágō","soon-ap-ag'-o","From G4862 and G520; to take off together, that is, transport with (seduce, passively yield): - carry (lead) away with, condescend."]},{"k":"G4880","v":["συναποθνήσκω","synapothnḗskō","soon-ap-oth-nace'-ko","From G4862 and G599; to decease (literally) in company with, or (figuratively) similarly to: - be dead (die) with."]},{"k":"G4881","v":["συναπόλλυμι","synapóllymi","soon-ap-ol'-loo-mee","From G4862 and G622; to destroy (middle voice or passive voice, be slain) in company with: - perish with."]},{"k":"G4882","v":["συναποστέλλω","synapostéllō","soon-ap-os-tel'-lo","From G4862 and G649; to despatch (on an errand) in company with: - send you."]},{"k":"G4883","v":["συναρμολογέω","synarmologéō","soon-ar-mol-og-eh'-o","From G4862 and a derivative of a compound of G719 and G3004 (in its original sense of laying); to render close jointed together, that is, organize compactly: - be fitly framed (joined) together."]},{"k":"G4884","v":["συναρπάζω","synarpázō","soon-ar-pad'-zo","From G4862 and G726; to snatch together, that is, seize: - catch."]},{"k":"G4885","v":["συναυξάνω","synauxánō","soon-owx-an'-o","From G4862 and G837; to increase (grow up) together: - grow together."]},{"k":"G4886","v":["σύνδεσμος","sýndesmos","soon'-des-mos","From G4862 and G1199; a joint tie, that is, ligament, (figuratively) uniting principle, control: - band, bond."]},{"k":"G4887","v":["συνδέω","syndéō","soon-deh'-o","From G4862 and G1210; to bind with, that is, (passively) be a fellow prisoner (figuratively): - be bound with."]},{"k":"G4888","v":["συνδοξάζω","syndoxázō","soon-dox-ad'-zo","From G4862 and G1392; to exalt to dignity in company (that is, similarly) with: - glorify together."]},{"k":"G4889","v":["σύνδουλος","sýndoulos","soon'-doo-los","From G4862 and G1401; a co-slave, that is, servitor or ministrant of the same master (human or divine): - fellowservant."]},{"k":"G4890","v":["συνδρομή","syndromḗ","soon-drom-ay'","From (the alternate of) G4936; a running together, that is, (riotous) concourse: - run together."]},{"k":"G4891","v":["συνεγείρω","synegeírō","soon-eg-i'-ro","From G4862 and G1453; to rouse (from death) in company with, that is, (figuratively) to revivify (spiritually) in resemblance to: - raise up together, rise with."]},{"k":"G4892","v":["συνέδριον","synédrion","soon-ed'-ree-on","Neuter of a presumed derivative of a compound of G4862 and the base of G1476; a joint session, that is, (specifically) the Jewish Sanhedrim; by analogy a subordinate tribunal: - council."]},{"k":"G4893","v":["συνείδησις","syneídēsis","soon-i'-day-sis","From a prolonged form of G4894; co-perception, that is, moral consciousness: - conscience."]},{"k":"G4894","v":["συνείδω","syneídō","soon-i'-do","From G4862 and G1492; to see completely; used (like its primary) only in two past tenses, respectively meaning to understand or become aware, and to be conscious or (clandestinely) informed of: - consider, know, be privy, be ware of."]},{"k":"G4895","v":["σύνειμι","sýneimi","soon'-i-mee","From G4862 and G1510 (including its various inflections); to be in company with, that is, present at the time: - be with."]},{"k":"G4896","v":["σύνειμι","sýneimi","soon'-i-mee","From G4862 and εῖμι eimi (to go); to assemble: - gather together."]},{"k":"G4897","v":["συνεισέρχομαι","syneisérchomai","soon-ice-er'-khom-ahee","From G4862 and G1525; to enter in company with: - go in with, go with into."]},{"k":"G4898","v":["συνέκδημος","synékdēmos","soon-ek'-day-mos","From G4862 and the base of G1553; a co-absentee from home, that is, fellow traveller: - companion in travel, travel with."]},{"k":"G4899","v":["συνεκλεκτός","syneklektós","soon-ek-lek-tos'","From a compound of G4862 and G1586; chosen in company with, that is, co-elect (fellow Christian): - elected together with."]},{"k":"G4900","v":["συνελαύνω","synelaúnō","soon-el-ow'-no","From G4862 and G1643; to drive together, that is, (figuratively) exhort (to reconciliation): - + set at one again."]},{"k":"G4901","v":["συνεπιμαρτυρέω","synepimartyréō","soon-ep-ee-mar-too-reh'-o","From G4862 and G1957; to testify further jointly, that is, unite in adding evidence: - also bear witness."]},{"k":"G4902","v":["συνέπομαι","synépomai","soon-ep'-om-ahee","Middle voice from G4862 and a primary word ἕπω hepō (to follow); to attend (travel) in company with: - accompany."]},{"k":"G4903","v":["συνεργέω","synergéō","soon-erg-eh'-o","From G4904; to be a fellow worker, that is, co-operate: - help (work) with, work (-er) together."]},{"k":"G4904","v":["συνεργός","synergós","soon-er-gos'","From a presumed compound of G4862 and the base of G2041; a co-laborer, that is, coadjutor: - companion in labour, (fellow-) helper (-labourer, -worker), labourer together with, workfellow."]},{"k":"G4905","v":["συνέρχομαι","synérchomai","soon-er'-khom-ahee","From G4862 and G2064; to convene, depart in company with, associate with, or (specifically) cohabit (conjugally): - accompany, assemble (with), come (together), come (company, go) with, resort."]},{"k":"G4906","v":["συνεσθίω","synesthíō","soon-es-thee'-o","From G4862 and G2068 (including its alternate); to take food in company with: - eat with."]},{"k":"G4907","v":["σύνεσις","sýnesis","soon'-es-is","From G4920; a mental putting together, that is, intelligence or (concretely) the intellect: - knowledge, understanding."]},{"k":"G4908","v":["συνετός","synetós","soon-et'-os","From G4920; mentally put (or putting) together, that is, sagacious: - prudent. Compare G5429."]},{"k":"G4909","v":["συνευδοκέω","syneudokéō","soon-yoo-dok-eh'-o","From G4862 and G2106; to think well of in common, that is, assent to, feel gratified with: - allow, assent, be pleased, have pleasure."]},{"k":"G4910","v":["συνευωχέω","syneuōchéō","soon-yoo-o-kheh'-o","From G4862 and a derivative of a presumed compound of G2095 and a derivative of G2192 (meaning to be in good condition, that is, [by implication] to fare well, or feast); to entertain sumptuously in company with, that is, (middle or passive voice) to revel together: - feast with."]},{"k":"G4911","v":["συνεφίστημι","synephístēmi","soon-ef-is'-tay-mee","From G4862 and G2186; to stand up together, that is, to resist (or assault) jointly: - rise up together."]},{"k":"G4912","v":["συνέχω","synéchō","soon-ekh'-o","From G4862 and G2192; to hold together, that is, to compress (the ears, with a crowd or siege) or arrest (a prisoner); figuratively to compel, perplex, afflict, preoccupy: - constrain, hold, keep in, press, lie sick of, stop, be in a strait, straiten, be taken with, throng."]},{"k":"G4913","v":["συνήδομαι","synḗdomai","soon-ay'-dom-ahee","Middle voice from G4862 and the base of G2237; to rejoice in with oneself, that is, feel satisfaction concerning: - delight."]},{"k":"G4914","v":["συνήθεια","synḗtheia","soon-ay'-thi-ah","From a compound of G4862 and G2239; mutual habituation, that is, usage: - custom."]},{"k":"G4915","v":["συνηλικιώτης","synēlikiṓtēs","soon-ay-lik-ee-o'-tace","From G4862 and a derivative of G2244; a co-aged person, that is, alike in years: - equal."]},{"k":"G4916","v":["συνθάπτω","syntháptō","soon-thap'-to","From G4862 and G2290; to inter in company with, that is, (figuratively) to assimilate spiritually (to Christ by a sepulture as to sin): - bury with."]},{"k":"G4917","v":["συνθλάω","synthláō","soon-thlah'-o","From G4862 and θλάω thlaō (to crush); to dash together, that is, shatter: - break."]},{"k":"G4918","v":["συνθλίβω","synthlíbō","soon-thlee'-bo","From G4862 and G2346; to compress, that is, crowd on all sides: - throng."]},{"k":"G4919","v":["συνθρύπτω","synthrýptō","soon-throop'-to","From G4862 and θρύπτω thruptō (to crumble); to crush together, that is, (figuratively) to dispirit: - break."]},{"k":"G4920","v":["συνίημι","syníēmi","soon-ee'-ay-mee","From G4862 and ἵημι hiēmi (to send); to put together, that is, (mentally) to comprehend; by implication to act piously: - consider, understand, be wise."]},{"k":"G4921","v":["συνιστάω","synistáō","soon-is-tah'-o","From G4862 and G2476 (including its collateral forms); to set together, that is, (by implication) to introduce (favorably), or (figuratively) to exhibit; intransitively to stand near, or (figuratively) to constitute: - approve, commend, consist, make, stand (with)."]},{"k":"G4922","v":["συνοδεύω","synodeúō","soon-od-yoo'-o","From G4862 and G3593; to travel in company with: - journey with."]},{"k":"G4923","v":["συνοδία","synodía","soon-od-ee'-ah","From a compound of G4862 and G3598 (“synod”); companionship on a journey, that is, (by implication) a caravan: - company."]},{"k":"G4924","v":["συνοικέω","synoikéō","soon-oy-keh'-o","From G4862 and G3611; to reside together (as a family): - dwell together."]},{"k":"G4925","v":["συνοικοδομέω","synoikodoméō","soon-oy-kod-om-eh'-o","From G4862 and G3618; to construct, that is, (passively) to compose (in company with other Christians, figuratively): - build together."]},{"k":"G4926","v":["συνομιλέω","synomiléō","soon-om-il-eh'-o","From G4862 and G3656; to converse mutually: - talk with."]},{"k":"G4927","v":["συνομορέω","synomoréō","soon-om-or-eh'-o","From G4862 and a derivative of a compound of the base of G3674 and the base of G3725; to border together, that is, adjoin: - join hard."]},{"k":"G4928","v":["συνοχή","synochḗ","soon-okh-ay'","From G4912; restraint, that is, (figuratively) anxiety: - anguish, distress."]},{"k":"G4929","v":["συντάσσω","syntássō","soon-tas-so","From G4862 and G5021; to arrange jointly, that is, (figuratively) to direct: - appoint."]},{"k":"G4930","v":["συντέλεια","syntéleia","soon-tel'-i-ah","From G4931; entire completion, that is, consummation (of a dispensation): - end."]},{"k":"G4931","v":["συντελέω","synteléō","soon-tel-eh'-o","From G4862 and G5055; to complete entirely; generally to execute (literally or figuratively): - end, finish, fulfil, make."]},{"k":"G4932","v":["συντέμνω","syntémnō","soon-tem'-no","From G4862 and the base of G5114; to contract by cutting, that is, (figuratively) do concisely (speedily): - (cut) short."]},{"k":"G4933","v":["συντηρέω","syntēréō","soon-tay-reh'-o","From G4862 and G5083; to keep closely together, that is, (by implication) to conserve (from ruin); mentally to remember (and obey): - keep, observe, preserve."]},{"k":"G4934","v":["συντίθεμαι","syntíthemai","soon-tith'-em-ahee","Middle voice from G4862 and G5087; to place jointly, that is, (figuratively) to consent (bargain, stipulate), concur: - agree assent, covenant."]},{"k":"G4935","v":["συντόμως","syntómōs","soon-tom'-oce","Adverb from a derivative of G4932; concisely (briefly): - a few words."]},{"k":"G4936","v":["συντρέχω","syntréchō","soon-trekh'-o","From G4862 and G5143 (including its alternate); to rush together (hastily assemble) or headlong (figuratively): - run (together, with)."]},{"k":"G4937","v":["συντρίβω","syntríbō","soon-tree'-bo","From G4862 and the base of G5147; to crush completely, that is, to shatter (literally or figuratively): - break (in pieces), broken to shivers (+ -hearted), bruise."]},{"k":"G4938","v":["σύντριμμα","sýntrimma","soon-trim'-mah","From G4937; concussion or utter fracture (properly concretely), that is, complete ruin: - destruction."]},{"k":"G4939","v":["σύντροφος","sýntrophos","soon'-trof-os","From G4862 and G5162 (in a passive sense); a fellow nursling, that is, comrade: - brought up with."]},{"k":"G4940","v":["συντυγχάνω","syntynchánō","soon-toong-khan'-o","From G4862 and G5177; to chance together, that is, meet with (reach): - come at."]},{"k":"G4941","v":["Συντύχη","Syntýchē","soon-too'-khay","From G4940; an accident; Syntyche, a Christian female: - Syntyche."]},{"k":"G4942","v":["συνυποκρίνομαι","synypokrínomai","soon-oo-pok-rin'-om-ahee","From G4862 and G5271; to act hypocritically in concert with: - dissemble with."]},{"k":"G4943","v":["συνυπουργέω","synypourgéō","soon-oop-oorg-eh'-o","From G4862 and a derivative of a compound of G5259 and the base of G2041; to be a co-auxiliary, that is, assist: - help together."]},{"k":"G4944","v":["συνωδίνω","synōdínō","soon-o-dee'-no","From G4862 and G5605; to have (parturition) pangs in company (concert, simultaneously) with, that is, (figuratively) to sympathize (in expectation of relief from suffering): - travail in pain together."]},{"k":"G4945","v":["συνωμοσία","synōmosía","soon-o-mos-ee'-ah","From a compound of G4862 and G3660; a swearing together, that is, (by implication) a plot: - conspiracy."]},{"k":"G4946","v":["Συράκουσαι","Syrákousai","soo-rak'-oo-sahee","Plural of uncertain derivation; Syracusae, the capital of Sicily: - Syracuse."]},{"k":"G4947","v":["Συρία","Syría","soo-ree'-ah","Probably of Hebrew origin [H6865]; Syria (that is, Tsyria or Tyre), a region of Asia: - Syria."]},{"k":"G4948","v":["Σύρος","Sýros","soo'-ros","From the same as G4947; a Syran (that is, probably Tyrian), a native of Syria: - Syrian."]},{"k":"G4949","v":["Συροφοίνισσα","Syrophoínissa","soo-rof-oy'-nis-sah","Feminine of a compound of G4948 and the same as G5403; a Syro-Phaenician woman, that is, a female native of Phaenicia in Syria: - Syrophenician."]},{"k":"G4950","v":["σύρτις","sýrtis","soor'-tis","From G4951; a shoal (from the sand drawn thither by the waves), that is, the Syrtis Major or great bay on the North coast of Africa: - quicksands."]},{"k":"G4951","v":["σύρω","sýrō","soo'-ro","Probably akin to G138; to trail: - drag, draw, hale."]},{"k":"G4952","v":["συσπαράσσω","sysparássō","soos-par-as'-so","From G4862 and G4682; to rend completely, that is, (by analogy) to convulse violently: - throw down."]},{"k":"G4953","v":["σύσσημον","sýssēmon","soos'-say-mon","Neuter of a compound of G4862 and the base of G4591; a sign in common, that is, preconcerted signal: - token."]},{"k":"G4954","v":["σύσσωμος","sýssōmos","soos'-so-mos","From G4862 and G4983; of a joint body, that is, (figuratively) a fellow member of the Christian community: - of the same body."]},{"k":"G4955","v":["συστασιαστής","systasiastḗs","soos-tas-ee-as-tace'","From a compound of G4862 and a derivative of G4714; a fellow insurgent: - make insurrection with."]},{"k":"G4956","v":["συστατικός","systatikós","soos-tat-ee-kos'","From a derivative of G4921; introductory, that is, recommendatory: - of commendation."]},{"k":"G4957","v":["συσταυρόω","systauróō","soos-tow-ro'-o","From G4862 and G4717; to impale in company with (literally or figuratively): - crucify with."]},{"k":"G4958","v":["συστέλλω","systéllō","soos-tel'-lo","From G4862 and G4724; to send (draw) together, that is, enwrap (enshroud a corpse for burial), contract (an interval): - short, wind up."]},{"k":"G4959","v":["συστενάζω","systenázō","soos-ten-ad'-zo","From G4862 and G4727; to moan jointly, that is, (figuratively) experience a common calamity: - groan together."]},{"k":"G4960","v":["συστοιχέω","systoichéō","soos-toy-kheh'-o","From G4862 and G4748; to file together (as soldiers in ranks), that is, (figuratively) to correspond to: - answer to."]},{"k":"G4961","v":["συστρατιώτης","systratiṓtēs","soos-trat-ee-o'-tace","From G4862 and G4757; a co-campaigner, that is, (figuratively) an associate in Christian toil: - fellowsoldier."]},{"k":"G4962","v":["συστρέφω","systréphō","soos-tref'-o","From G4862 and G4762; to twist together, that is, collect (a bundle, a crowd): - gather."]},{"k":"G4963","v":["συστροφή","systrophḗ","soos-trof-ay'","From G4962; a twisting together, that is, (figuratively) a secret coalition, riotous crowd: - + band together, concourse."]},{"k":"G4964","v":["συσχηματίζω","syschēmatízō","soos-khay-mat-id'-zo","From G4862 and a derivative of G4976; to fashion alike, that is, conform to the same pattern (figuratively): - conform to, fashion self according to."]},{"k":"G4965","v":["Συχάρ","Sychár","soo-khar'","Of Hebrew origin [H7941]; Sychar (that is, Shekar), a place in Palestine: - Sychar."]},{"k":"G4966","v":["Συχέμ","Sychém","soo-khem'","Of Hebrew origin [H7927]; Sychem (that is, Shekem), the name of a Canaanite and of a place in Palestine: - Sychem."]},{"k":"G4967","v":["σφαγή","sphagḗ","sfag-ay'","From G4969; butchery (of animals for food or sacrifice, or [figuratively] of men [destruction]): - slaughter."]},{"k":"G4968","v":["σφάγιον","sphágion","sfag'-ee-on","Neuter of a derivative of G4967; a victim (in sacrifice): - slain beast."]},{"k":"G4969","v":["σφάζω","spházō","sfad'-zo","A primary verb; to butcher (especially an animal for food or in sacrifice) or (generally) to slaughter, or (specifically) to maim (violently): - kill, slay, wound."]},{"k":"G4970","v":["σφόδρα","sphódra","sfod'-rah","Neuter plural of σφοδρός sphodros (violent; of uncertain derivation) as adverb; vehemently, that is, in a high degree, much: - exceeding (-ly), greatly, sore, very."]},{"k":"G4971","v":["σφοδρῶς","sphodrōs","sfod-roce'","Adverbially from the same as G4970; very much: - exceedingly."]},{"k":"G4972","v":["σφραγίζω","sphragízō","sfrag-id'-zo","From G4973; to stamp (with a signet or private mark) for security or preservation (literally or figuratively); by implication to keep secret, to attest: - (set a, set to) seal up, stop."]},{"k":"G4973","v":["σφραγίς","sphragís","sfrag-ece'","Probably strengthened from G5420; a signet (as fencing in or protecting from misappropriation); by implication the stamp impressed (as a mark of privacy, or genuineness), literally or figuratively: - seal."]},{"k":"G4974","v":["σφυρόν","sphyrón","sfoo-ron'","Neuter of a presumed derivative probably of the same as σφαῖρα sphaira (a ball, “sphere”; compare the feminine σφῦρα sphura , a hammer); the ankle (as globular): - ancle bone."]},{"k":"G4975","v":["σχεδόν","schedón","skhed-on'","Neuter of a presumed derivative of the alternate of G2192 as an adverb; nigh, that is, nearly: - almost."]},{"k":"G4976","v":["σχῆμα","schēma","skhay'-mah","From the alternate of G2192; a figure (as a mode or circumstance), that is, (by implication) external condition: - fashion."]},{"k":"G4977","v":["σχίζω","schízō","skhid'-zo","Apparently a primary verb; to split or sever (literally or figuratively): - break, divide, open, rend, make a rent."]},{"k":"G4978","v":["σχίσμα","schísma","skhis'-mah","From G4977; a split or gap (“schism”), literally or figuratively: - division, rent, schism."]},{"k":"G4979","v":["σχοινίον","schoiníon","skhoy-nee'-on","Diminutive of σχοῖνος schoinos (a rush or flag plant; of uncertain derivation); a rushlet, that is, grass withe or tie (genitive case): - small cord, rope."]},{"k":"G4980","v":["σχολάζω","scholázō","skhol-ad'-zo","From G4981; to take a holiday, that is, be at leisure for (by implication devote oneself wholly to); figuratively to be vacant (of a house): - empty, give self."]},{"k":"G4981","v":["σχολή","scholḗ","skhol-ay'","Probably feminine of a presumed derivative of the alternate of G2192; properly loitering (as a withholding of oneself from work) or leisure, that is, (by implication) a “school” (as vacation from physical employment): - school."]},{"k":"G4982","v":["σώζω","sṓzō","sode'-zo","From a primary word σῶς sōs̄ (contraction for the obsolete σάος saos, “safe”); to save, that is, deliver or protect (literally or figuratively): - heal, preserve, save (self), do well, be (make) whole."]},{"k":"G4983","v":["σῶμα","sōma","so'-mah","From G4982; the body (as a sound whole), used in a very wide application, literally or figuratively: - bodily, body, slave."]},{"k":"G4984","v":["σωματικός","sōmatikós","so-mat-ee-kos'","From G4983; corporeal or physical: - bodily."]},{"k":"G4985","v":["σωματικῶς","sōmatikōs","so-mat-ee-koce'","Adverb from G4984; corporeally or physically: - bodily."]},{"k":"G4986","v":["Σώπατρος","Sṓpatros","so'-pat-ros","From the base of G4982 and G3962; of a safe father; Sopatrus, a Christian: - Sopater. Compare G4989."]},{"k":"G4987","v":["σωρεύω","sōreúō","sore-yoo'-o","From another form of G4673; to pile up (literally or figuratively): - heap, load."]},{"k":"G4988","v":["Σωσθένης","Sōsthénēs","soce-then'-ace","From the base of G4982 and that of G4599; of safe strength; Sosthenes, a Christian: - Sosthenes."]},{"k":"G4989","v":["Σωσίπατρος","Sōsípatros","so-sip'-at-ros","Prolongation for G4986; Sosipatrus, a Christian: - Sosipater."]},{"k":"G4990","v":["σωτήρ","sōtḗr","so-tare'","From G4982; a deliverer, that is, God or Christ: - saviour."]},{"k":"G4991","v":["σωτηρία","sōtēría","so-tay-ree'-ah","Feminine of a derivative of G4990 as (properly abstract) noun; rescue or safety (physically or morally): - deliver, health, salvation, save, saving."]},{"k":"G4992","v":["σωτήριον","sōtḗrion","so-tay'-ree-on","Neuter of the same as G4991 as (properly concrete) noun; defender or (by implication) defence: - salvation."]},{"k":"G4993","v":["σωφρονέω","sōphronéō","so-fron-eh'-o","From G4998; to be of sound mind, that is, sane, (figuratively) moderate: - be in right mind, be sober (minded), soberly."]},{"k":"G4994","v":["σωφρονίζω","sōphronízō","so-fron-id'-zo","From G4998; to make of sound mind, that is, (figuratively) to discipline or correct: - teach to be sober."]},{"k":"G4995","v":["σωφρονισμός","sōphronismós","so-fron-is-mos'","From G4994; discipline, that is, self control: - sound mind."]},{"k":"G4996","v":["σωφρόνως","sōphrónōs","so-fron'-oce","Adverb from G4998; with sound mind, that is, moderately: - soberly."]},{"k":"G4997","v":["σωφροσύνη","sōphrosýnē","so-fros-oo'-nay","From G4998; soundness of mind, that is, (literally) sanity or (figuratively) self control: - soberness, sobriety."]},{"k":"G4998","v":["σώφρων","sṓphrōn","so'-frone","From the base of G4982 and that of G5424; safe (sound) in mind, that is, self controlled (moderate as to opinion or passion): - discreet, sober, temperate."]},{"k":"G4999","v":["Ταβέρναι","Tabérnai","tab-er'-nahee","Plural of Latin origin; huts or wooden walled buildings; Tabernae: - taverns."]},{"k":"G5000","v":["Ταβιθά","Tabithá","tab-ee-thah'","Of Chaldee origin (compare [H6646]); the gazelle; Tabitha (that is, Tabjetha), a Christian female: - Tabitha."]},{"k":"G5001","v":["τάγμα","tágma","tag'-mah","From G5021; something orderly in arrangement (a troop), that is, (figuratively) a series or succession: - order."]},{"k":"G5002","v":["τακτός","taktós","tak-tos'","From G5021; arranged, that is, appointed or stated: - set."]},{"k":"G5003","v":["ταλαιπωρέω","talaipōréō","tal-ahee-po-reh'-o","From G5005; to be wretched, that is, realize one’s own misery: - be afflicted."]},{"k":"G5004","v":["ταλαιπωρία","talaipōría","tal-ahee-po-ree'-ah","From G5005; wretchedness, that is, calamity: - misery."]},{"k":"G5005","v":["ταλαίπωρος","talaípōros","tal-ah'-ee-po-ros","From the base of G5007 and a derivative of the base of G3984; enduring trial, that is, miserable: - wretched."]},{"k":"G5006","v":["ταλαντιαῖος","talantiaîos","tal-an-tee-ah'-yos","From G5007; talent like in weight: - weight of a talent."]},{"k":"G5007","v":["τάλαντον","tálanton","tal'-an-ton","Neuter of a presumed derivative of the original form of τλάω tlao4 (to bear; equivalent to G5342); a balance (as supporting weights), that is, (by implication) a certain weight (and thence a coin or rather sum of money) or “talent”: - talent."]},{"k":"G5008","v":["ταλιθά","talithá","tal-ee-thah'","Of Chaldee origin (compare [H2924]); the fresh, that is, young girl; talitha (O maiden): - talitha."]},{"k":"G5009","v":["ταμεῖον","tameîon","tam-i'-on","Neuter contraction of a presumed derivative of ταμίας tamias (a dispenser or distributor; akin to τέμνω temnō, to cut); a dispensary or magazine, that is, a chamber on the ground floor or interior of an Oriental house (generally used for storage or privacy, a spot for retirement): - secret chamber, closet, storehouse."]},{"k":"G5010","v":["τάξις","táxis","tax'-is","From G5021; regular arrangement, that is, (in time) fixed succession (of rank or character), official dignity: - order."]},{"k":"G5011","v":["ταπεινός","tapeinós","tap-i-nos'","Of uncertain derivation; depressed, that is, (figuratively) humiliated (in circumstances or disposition): - base, cast down, humble, of low degree (estate), lowly."]},{"k":"G5012","v":["ταπεινοφροσύνη","tapeinophrosýnē","tap-i-nof-ros-oo'-nay","From a compound of G5011 and the base of G5424; humiliation of mind, that is, modesty: - humbleness of mind, humility (of mind), lowliness (of mind)."]},{"k":"G5013","v":["ταπεινόω","tapeinóō","tap-i-no'-o","From G5011; to depress; figuratively to humiliate (in condition or heart): - abase, bring low, humble (self)."]},{"k":"G5014","v":["ταπείνωσις","tapeínōsis","tap-i'-no-sis","From G5013; depression (in rank or feeling): - humiliation, be made low, low estate, vile."]},{"k":"G5015","v":["ταράσσω","tarássō","tar-as'-so","Of uncertain affinity; to stir or agitate (roil water): - trouble."]},{"k":"G5016","v":["ταραχή","tarachḗ","tar-akh-ay'","Feminine from G5015; disturbance, that is, (of water) roiling, or (of a mob) sedition: - trouble (-ing)."]},{"k":"G5017","v":["τάραχος","tárachos","tar'-akh-os","Masculine From G5015; a disturbance, that is, (popular) tumult: - stir."]},{"k":"G5018","v":["Ταρσεύς","Tarseús","tar-syoos'","From G5019; a Tarsean, that is, native of Tarsus: - of Tarsus."]},{"k":"G5019","v":["Ταρσός","Tarsós","tar-sos'","Perhaps the same as ταρσός tarsos (a flat basket); Tarsus, a place in Asia Minor: - Tarsus."]},{"k":"G5020","v":["ταρταρόω","tartaróō","tar-tar-o'-o","From Τάρταρος Tartaros̄ (the deepest abyss of Hades); to incarcerate in eternal torment: - cast down to hell."]},{"k":"G5021","v":["τάσσω","tássō","tas'-so","A prolonged form of a primary verb (which latter appears only in certain tenses); to arrange in an orderly manner, that is, assign or dispose (to a certain position or lot): - addict, appoint, determine, ordain, set."]},{"k":"G5022","v":["ταῦρος","taûros","tow'-ros","Apparently a primary word (compare [H8450], “steer”); a bullock: - bull, ox."]},{"k":"G5023","v":["ταῦτα","taûta","tow'-tah","Nomitive or accusative neuter plural of G3778; these things: - + afterward, follow, + hereafter, X him, the same, so, such, that, then, these, they, this, those, thus."]},{"k":"G5024","v":["ταὐτά","tautá","tow-tah'","Neuter plural of G3588 and G846 as adverb; in the same way: - even thus, (manner) like, so."]},{"k":"G5025","v":["ταύταις","taútais","tow'-taheece","Dative and accusative feminine plural respectively of G3778; (to or with or by, etc.) these: - hence, that, then, these, those."]},{"k":"G5026","v":["ταύτῃ","taútēi","tow'-tay","Dative, accusative and genitive case respectively of the feminine singular of G3778; (towards or of) this: - her, + hereof, it, that, + thereby, the (same), this (same)."]},{"k":"G5027","v":["ταφή","taphḗ","taf-ay'","feminine from G2290; burial (the act): - X bury."]},{"k":"G5028","v":["τάφος","táphos","taf'-os","Masculine from G2290; a grave (the place of interment): - sepulchre, tomb."]},{"k":"G5029","v":["τάχα","tácha","takh'-ah","As if neuter plural of G5036 (adverbially); shortly, that is, (figuratively) possibly: - peradventure (-haps)."]},{"k":"G5030","v":["ταχέως","tachéōs","takh-eh'-oce","Adverb from G5036; briefly, that is, (in time) speedily, or (in manner) rapidly: - hastily, quickly, shortly, soon, suddenly."]},{"k":"G5031","v":["ταχινός","tachinós","takh-ee-nos'","From G5034; curt, that is, impending: - shortly, swift."]},{"k":"G5032","v":["τάχιον","táchion","takh'-ee-on","Neuter singular of the comparative of G5036 (as adverb); more swiftly, that is, (in manner) more rapidly, or (in time) more speedily: - out [run], quickly, shortly, sooner."]},{"k":"G5033","v":["τάχιστα","táchista","takh'-is-tah","Neuter plural of the superlative of G5036 (as adverb); most quickly, that is, (with G5613 prefixed) as soon as possible: - + with all speed."]},{"k":"G5034","v":["τάχος","táchos","takh'-os","From the same as G5036; a brief space (of time), that is, (with G1722 prefixed) in haste: - + quickly, + shortly, + speedily."]},{"k":"G5035","v":["ταχύ","tachý","takh-oo'","Neuter singular of G5036 (as adverb); shortly, that is, without delay, soon, or (by surprise) suddenly, or (by implication of ease) readily: - lightly, quickly."]},{"k":"G5036","v":["ταχύς","tachýs","takh-oos'","Of uncertain affinity; fleet, that is, (figuratively) prompt or ready: - swift."]},{"k":"G5037","v":["τέ","té","teh","A primary particle (enclitic) of connection or addition; both or also (properly as a correlation of G2532): - also, and, both, even, then whether. Often used in compounds, usually as the latter part."]},{"k":"G5038","v":["τεῖχος","teîchos","ti'-khos","Akin to the base of G5088; a wall (as formative of a house): - wall."]},{"k":"G5039","v":["τεκμήριον","tekmḗrion","tek-may'-ree-on","Neuter of a presumed derivative of τεκμάρ tekmar (a goal or fixed limit); a token (as defining a fact), that is, criterion of certainty: - infallible proof."]},{"k":"G5040","v":["τεκνίον","tekníon","tek-nee'-on","Diminutive of G5043; an infant, that is, (plural figurative) darlings (Christian converts): - little children."]},{"k":"G5041","v":["τεκνογονέω","teknogonéō","tek-nog-on-eh'-o","From a compound of G5043 and the base of G1096; to be a child bearer, that is, parent (mother): - bear children."]},{"k":"G5042","v":["τεκνογονία","teknogonía","tek-nog-on-ee'-ah","From the same as G5041; childbirth (parentage), that is, (by implication) maternity (the performance of maternal duties): - childbearing."]},{"k":"G5043","v":["τέκνον","téknon","tek'-non","From the base of G5098; a child (as produced): - child, daughter, son."]},{"k":"G5044","v":["τεκνοτροφέω","teknotrophéō","tek-not-rof-eh'-o","From a compound of G5043 and G5142; to be a child rearer, that is, fulfil the duties of a female parent: - bring up children."]},{"k":"G5045","v":["τέκτων","téktōn","tek'-tone","From the base of G5098; an artificer (as producer of fabrics), that is, (specifically) a craftsman in wood: - carpenter."]},{"k":"G5046","v":["τέλειος","téleios","tel'-i-os","From G5056; complete (in various applications of labor, growth, mental and moral character, etc.); neuter (as noun, with G3588) completeness: - of full age, man, perfect."]},{"k":"G5047","v":["τελειότης","teleiótēs","tel-i-ot'-ace","From G5046; (the state) completeness (mentally or morally): - perfection (-ness)."]},{"k":"G5048","v":["τελειόω","teleióō","tel-i-o'-o","From G5046; to complete, that is, (literally) accomplish, or (figuratively) consummate (in character): - consecrate, finish, fulfil, (make) perfect."]},{"k":"G5049","v":["τελείως","teleíōs","tel-i'-oce","Adverb from G5046; completely, that is, (of hope) without wavering: - to the end."]},{"k":"G5050","v":["τελείωσις","teleíōsis","tel-i'-o-sis","From G5448; (the act) completion, that is, (of prophecy) verification, or (of expiation) absolution: - perfection, performance."]},{"k":"G5051","v":["τελειωτής","teleiōtḗs","tel-i-o-tace'","From G5048; a completer, that is, consummater: - finisher."]},{"k":"G5052","v":["τελεσφορέω","telesphoréō","tel-es-for-eh'-o","From a compound of G5056 and G5342; to be a bearer to completion (maturity), that is, to ripen fruit (figuratively): - bring fruit to perfection."]},{"k":"G5053","v":["τελευτάω","teleutáō","tel-yoo-tah'-o","From a presumed derivative of G5055; to finish life (by implication of G979), that is, expire (demise): - be dead, decease, die."]},{"k":"G5054","v":["τελευτή","teleutḗ","tel-yoo-tay'","From G5053; decease: - death."]},{"k":"G5055","v":["τελέω","teléō","tel-eh'-o","From G5056; to end, that is, complete, execute, conclude, discharge (a debt): - accomplish, make an end, expire, fill up, finish, go over, pay, perform."]},{"k":"G5056","v":["τέλος","télos","tel'-os","From a primary word τέλλω tellō (to set out for a definite point or goal); properly the point aimed at as a limit, that is, (by implication) the conclusion of an act or state (termination [literally, figuratively or indefinitely], result [immediate, ultimate or prophetic], purpose); specifically an impost or levy (as paid): - + continual, custom, end (-ing), finally, uttermost. Compare G5411."]},{"k":"G5057","v":["τελώνης","telṓnēs","tel-o'-nace","From G5056 and G5608; a tax farmer, that is, collector of public revenue: - publican."]},{"k":"G5058","v":["τελώνιον","telṓnion","tel-o'-nee-on","Neuter of a presumed derivative of G5057; a tax gatherer's place of business: - receipt of custom."]},{"k":"G5059","v":["τέρας","téras","ter'-as","Of uncertain affinity; a prodigy or omen: - wonder."]},{"k":"G5060","v":["Τέρτιος","Tértios","ter'-tee-os","Of Latin origin; third; Tertius, a Christian: - Tertius."]},{"k":"G5061","v":["Τέρτυλλος","Tértyllos","ter'-tool-los","Of uncertain derivation; Tertullus, a Roman: - Tertullus."]},{"k":"G5062","v":["τεσσαράκοντα","tessarákonta","tes-sar-ak'-on-tah","The decade of G5064; forty: - forty."]},{"k":"G5063","v":["τεσσαρακονταετής","tessarakontaetḗs","tes-sar-ak-on-tah-et-ace'","From G5062 and G2094; of forty years of age: - (+ full, of) forty years (old)."]},{"k":"G5064","v":["τέσσαρες","téssares","tes'-sar-es","Neuter and a plural number; four: - four."]},{"k":"G5065","v":["τεσσαρεσκαιδέκατος","tessareskaidékatos","tes-sar-es-kahee-dek'-at-os","From G5064 and G2532 and G1182; fourteenth: - fourteenth."]},{"k":"G5066","v":["τεταρταῖος","tetartaîos","tet-ar-tah'-yos","From G5064; pertaining to the fourth day: - four days."]},{"k":"G5067","v":["τέταρτος","tétartos","tet'-ar-tos","From G5064; fourth: - four (-th)."]},{"k":"G5068","v":["τετράγωνος","tetrágōnos","tet-rag'-o-nos","From G5064 and G1137; four cornered, that is, square: - foursquare."]},{"k":"G5069","v":["τετράδιον","tetrádion","tet-rad'-ee-on","Neuter of a presumed derivative of τέτρας tetras (a tetrad; from G5064); a quaternion or squad (picket) of four Roman soldiers: - quaternion."]},{"k":"G5070","v":["τετρακισχίλιοι","tetrakischílioi","tet-rak-is-khil'-ee-oy","From the multiplicative adverb of G5064 and G5507; four times a thousand: - four thousand."]},{"k":"G5071","v":["τετρακόσιοι","tetrakósioi","tet-rak-os'-ee-oy","Neuter and plural from G5064 and G1540; four hundred: - four hundred."]},{"k":"G5072","v":["τετράμηνον","tetrámēnon","tet-ram'-ay-non","Neuter of a compound of G5064 and G3376; a four months' space: - four months."]},{"k":"G5073","v":["τετραπλόος","tetraplóos","tet-rap-lo'-os","From G5064 and a derivative of the base of G4118; quadruple: - fourfold."]},{"k":"G5074","v":["τετράπους","tetrápous","tet-rap'-ooce","From G5064 and G4228; a quadruped: - fourfooted beast."]},{"k":"G5075","v":["τετραρχέω","tetrarchéō","tet-rar-kheh'-o","From G5076; to be a tetrarch: - (be) tetrarch."]},{"k":"G5076","v":["τετράρχης","tetrárchēs","tet-rar'-khace","From G5064 and G757; the ruler of a fourth part of a country (“tetrarch”): - tetrarch."]},{"k":"G5077","v":["τεφρόω","tephróō","tef-ro'-o","From τέφρα tephra (ashes); to incinerate, that is, consume: - turn to ashes."]},{"k":"G5078","v":["τέχνη","téchnē","tekh'-nay","From the base of G5088; art (as productive), that is, (specifically) a trade, or (generally) skill: - art, craft, occupation."]},{"k":"G5079","v":["τεχνίτης","technítēs","tekh-nee'-tace","From G5078; an artisan; figuratively a founder (Creator): - builder, craftsman."]},{"k":"G5080","v":["τήκω","tḗkō","tay'-ko","Apparently a primary verb; to liquefy: - melt."]},{"k":"G5081","v":["τηλαυγῶς","tēlaugōs","tay-low-goce'","Adverb from a compound of a derivative of G5056 and G827; in a far shining manner, that is, plainly: - clearly."]},{"k":"G5082","v":["τηλικοῦτος","tēlikoûtos","tay-lik-oo'-tos","Masculine and feminine; from a compound of G3588 with G2245 and G3778; such as this, that is, (in [figuratively] magnitude) so vast: - so great, so mighty."]},{"k":"G5083","v":["τηρέω","tēréō","tay-reh'-o","From τηρός teros (a watch; perhaps akin to G2334); to guard (from loss or injury, properly by keeping the eye upon; and thus differing from G5442, which is properly to prevent escaping; and from G2892, which implies a fortress or full military lines of apparatus), that is, to note (a prophecy; figuratively to fulfil a command); by implication to detain (in custody; figuratively to maintain); by extension to withhold (for personal ends; figuratively to keep unmarried): - hold fast, keep (-er), (ob-, pre-, re) serve, watch."]},{"k":"G5084","v":["τήρησις","tḗrēsis","tay'-ray-sis","From G5083; a watching, that is, (figuratively) observance, or (concretely) a prison: - hold."]},{"k":"G5085","v":["Τιβεριάς","Tiberiás","tib-er-ee-as'","From G5086; Tiberias, the name of a town and a lake in Palestine: - Tiberias."]},{"k":"G5086","v":["Τιβέριος","Tibérios","tib-er'-ee-os","Of Latin origin; probably pertaining to the river Tiberis or Tiber; Tiberius, a Roman emperor: - Tiberius."]},{"k":"G5087","v":["τίθημι","títhēmi","tith'-ay-mee","A prolonged form of a primary word θέω theō (which is used only as an alternate in certain tenses); to place (in the widest application, literally and figuratively; properly in a passive or horizontal posture, and thus different from G2476, which properly denotes an upright and active position, while G2749 is properly reflexive and utterly prostrate): - + advise, appoint, bow, commit, conceive, give, X kneel down, lay (aside, down, up), make, ordain, purpose, put, set (forth), settle, sink down."]},{"k":"G5088","v":["τίκτω","tíktō","tik'-to","A strengthened from of a primary word τέκω tekō (which is used only as an alternate in certain tenses); to produce (from seed, as a mother, a plant, the earth, etc.), literal or figurative: - bear, be born, bring forth, be delivered, be in travail."]},{"k":"G5089","v":["τίλλω","tíllō","til'-lo","Perhaps akin to the alternate of G138, and thus to G4951; to pull off: - pluck."]},{"k":"G5090","v":["Τιμαῖος","Timaîos","tim'-ah-yos","Probably of Chaldee origin (compare [H2931]); Timoeus (that is, Timay), an Israelite: - Timaeus."]},{"k":"G5091","v":["τιμάω","timáō","tim-ah'-o","From G5093; to prize, that is, fix a valuation upon; by implication to revere: - honour, value."]},{"k":"G5092","v":["τιμή","timḗ","tee-may'","From G5099; a value, that is, money paid, or (concretely and collectively) valuables; by analogy esteem (especially of the highest degree), or the dignity itself: - honour, precious, price, some."]},{"k":"G5093","v":["τίμιος","tímios","tim'-ee-os","Including the comparative τίμιώτερος timiōteros and the superlative τίμιώτατος timiōtatos; from G5092; valuable, that is, (objectively) costly, or (subjectively) honored, esteemed, or (figuratively) beloved: - dear, honourable, (more, most) precious, had in reputation."]},{"k":"G5094","v":["τιμιότης","timiótēs","tim-ee-ot'-ace","From G5093; expensiveness, that is, (by implication) magnificence: - costliness."]},{"k":"G5095","v":["Τιμόθεος","Timótheos","tee-moth'-eh-os","From G5092 and G2316; dear to God; Timotheus, a Christian: - Timotheus, Timothy."]},{"k":"G5096","v":["Τίμων","Tímōn","tee'-mone","From G5092; valuable; Timon, a Christian: - Timon."]},{"k":"G5097","v":["τιμωρέω","timōréō","tim-o-reh'-o","From a compound of G5092 and οὖρος ouros (a guard); properly to protect one’s honor, that is, to avenge (inflict a penalty): - punish."]},{"k":"G5098","v":["τιμωρία","timōría","tee-mo-ree'-ah","From G5097; vindication, that is, (by implication) a penalty: - punishment."]},{"k":"G5099","v":["τίνω","tínō","tee'-no","Strengthened for a primary word τίω tiō (which is only used as an alternate in certain tenses); to pay a price, that is, as a penalty: - be punished with."]},{"k":"G5100","v":["τὶς","tìs","tis","An enclitic indefinite pronoun; some or any person or object: - a (kind of), any (man, thing, thing at all), certain (thing), divers, he (every) man, one (X thing), ought, + partly, some (man, -body, -thing, -what), (+ that no-) thing, what (-soever), X wherewith, whom [-soever], whose ([-soever])."]},{"k":"G5101","v":["τίς","tís","tis","Probably emphatic of G5100; an interrogitive pronoun, who, which or what (in direct or indirect questions): - every man, how (much), + no (-ne, thing), what (manner, thing), where ([-by, -fore, -of, -unto, -with, -withal]), whether, which, who (-m, -se), why."]},{"k":"G5102","v":["τίτλος","títlos","tit'-los","Of Latin origin; a titulus or “title” (placard): - title."]},{"k":"G5103","v":["Τίτος","Títos","tee'-tos","Of Latin origin but uncertain significance; Titus, a Christian: - Titus."]},{"k":"G5104","v":["τοί","toí","toy","Probably for the dative case of G3588; an enclitic particle of asseveration by way of contrast; in sooth: - [used only with other particles in compounds, as G2544, G3305, G5105, G5106, etc.]"]},{"k":"G5105","v":["τοιγαροῦν","toigaroûn","toy-gar-oon'","From G5104 and G1063 and G3767; truly for then, that is, consequently: - there- (where-) fore."]},{"k":"G5106","v":["τοίνυν","toínyn","toy'-noon","From G5104 and G3568; truly now, that is, accordingly: - then, therefore."]},{"k":"G5107","v":["τοιόσδε","toiósde","toy-os'-deh","(Including the other inflections); from a derivative of G5104 and G1161; such like then, that is, so great: - such."]},{"k":"G5108","v":["τοιοῦτος","toioûtos","toy-oo'-tos","(Including the other inflections); from G5104 and G3778; truly this, that is, of this sort (to denote character or individuality): - like, such (an one)."]},{"k":"G5109","v":["τοῖχος","toîchos","toy'-khos","Another form of G5038; a wall: - wall."]},{"k":"G5110","v":["τόκος","tókos","tok'-os","From the base of G5088; interest on money loaned (as a produce): - usury."]},{"k":"G5111","v":["τολμάω","tolmáō","tol-mah'-o","From τόλμα tolma (boldness; probably itself from the base of G5056 through the idea of extreme conduct); to venture (objectively or in act; while G2292 is rather subjective or in feeling); by implication to be courageous: - be bold, boldly, dare, durst."]},{"k":"G5112","v":["τολμηρότερον","tolmēróteron","tol-may-rot'-er-on","Neuter of the compound of a derivative of the bse of G5111 (as adverb); more daringly, that is, with greater confidence than otherwise: - the more boldly."]},{"k":"G5113","v":["τολμητής","tolmētḗs","tol-may-tace'","From G5111; a daring (audacious) man: - presumptuous."]},{"k":"G5114","v":["τομώτερος","tomṓteros","tom-o'-ter-os","Compound of a derivative of the primary word τέμνω temnō (to cut; more comprehensive or decisive than G2875, as if by a single stroke; whereas that implies repeated blows, like hacking); more keen: - sharper."]},{"k":"G5115","v":["τόξον","tóxon","tox'-on","From the base of G5088; a bow (apparently as the simplest fabric): - bow."]},{"k":"G5116","v":["τοπάζιον","topázion","top-ad'-zee-on","Neuter of a presumed derivative (alternate) of τόπάζος topazos (a “topaz”; of uncertain origin); a gem, probably the chrysolite: - topaz."]},{"k":"G5117","v":["τόπος","tópos","top'-os","Apparently a primary word; a spot (generally in space, but limited by occupancy; whereas G5561 is a larger but particular locality), that is, location (as a position, home, tract, etc.); figuratively condition, opportunity; specifically a scabbard: - coast, licence, place, X plain, quarter, + rock, room, where."]},{"k":"G5118","v":["τοσοῦτος","tosoûtos","tos-oo'-tos","From τόσος tosos (so much; apparently from G3588 and G3739) and G3778 (including its variations); so vast as this, that is, such (in quantity, amount, number or space): - as large, so great (long, many, much), these many."]},{"k":"G5119","v":["τότε","tóte","tot'-eh","From (the neuter of) G3588 and G3753; the when, that is, at the time that (of the past or future, also in consecution): - that time, then."]},{"k":"G5120","v":["τοῦ","toû","too","Properly the genitive case of G3588; sometimes used for G5127; of this person: - his."]},{"k":"G5121","v":["τοὐναντίον","tounantíon","too-nan-tee'-on","Contraction for the neuter of G3588 and G1726; on the contrary: - contrariwise."]},{"k":"G5122","v":["τοὔνομα","toúnoma","too'-no-mah","Contraction for the neuter of G3588 and G3686; the name (is): - named."]},{"k":"G5123","v":["τουτέστι","toutésti","toot-es'-tee","Contraction for G5124 and G2076; that is: - that is (to say)."]},{"k":"G5124","v":["τοῦτο","toûto","too'-to","Neuter, singular, nomitive or accusative of G3778; that thing: - here [-unto], it, partly, self [-same], so, that (intent), the same, there [-fore, -unto], this, thus, where [-fore]."]},{"k":"G5125","v":["τούτοις","toútois","too'-toice","Dative, plural, masculine or neuter of G3778; to (for, in, with or by) these (persons or things): - such, them, there [-in, -with], these, this, those."]},{"k":"G5126","v":["τοῦτον","toûton","too'-ton","Accusative, singular, masculine of G3778; this (person, as object of verb or preposition): - him, the same, that, this."]},{"k":"G5127","v":["τούτου","toútou","too'-too","Genitive singular masculine or neuter of G3778; of (from or concerning) this (person or thing): - here [-by], him, it, + such manner of, that, thence [-forth], thereabout, this, thus."]},{"k":"G5128","v":["τούτους","toútous","too'-tooce","Accusative plural masculine of G3778; these (persons, as object of verb or preposition): - such, them, these, this."]},{"k":"G5129","v":["τούτῳ","toútōi","too'-to","Dative singular masculine or neuter of G3778; to (in, with or by) this (person or thing): - here [-by, -in], him, one, the same, there [-in], this."]},{"k":"G5130","v":["τούτων","toútōn","too'-tone","Genitive plural masculine or neuter of G3778; of (from or concerning) these (persons or things): - such, their, these (things), they, this sort, those."]},{"k":"G5131","v":["τράγος","trágos","trag'-os","From the base of G5176; a he goat (as a gnawer): - goat."]},{"k":"G5132","v":["τράπεζα","trápeza","trap'-ed-zah","Probably contracted from G5064 and G3979; a table or stool (as being four legged), usually for food (figuratively a meal); also a counter for money (figuratively a broker’s office for loans at interest): - bank, meat, table."]},{"k":"G5133","v":["τραπεζίτης","trapezítēs","trap-ed-zee'-tace","From G5132; a money broker or banker: - exchanger."]},{"k":"G5134","v":["τραῦμα","traûma","trow'-mah","From the base of τιτρώσκω titrōskō (to wound; akin to the base of G2352, G5147, G5149, etc.); a wound: - wound."]},{"k":"G5135","v":["τραυματίζω","traumatízō","trow-mat-id'-zo","From G5134; to inflict a wound: - wound."]},{"k":"G5136","v":["τραχηλίζω","trachēlízō","trakh-ay-lid'-zo","From G5137; to seize by the throat or neck, that is, to expose the gullet of a victim for killing (generally to lay bare): - opened."]},{"k":"G5137","v":["τράχηλος","tráchēlos","trakh'-ay-los","Probably from G5143 (through the idea of mobility); the throat (neck), that is, (figuratively) life: - neck."]},{"k":"G5138","v":["τραχύς","trachýs","trakh-oos'","Perhaps strengthened from the base of G4486 (as if jagged by rents); uneven, rocky (reefy): - rock, rough."]},{"k":"G5139","v":["Τραχωνῖτις","Trachōnîtis","trakh-o-nee'-tis","From a derivative of G5138; rough district; Trachonitis, a region of Syria: - Trachonitis."]},{"k":"G5140","v":["τρεῖς","treîs","trice","A primary (plural) number; “three”: - three."]},{"k":"G5141","v":["τρέμω","trémō","trem'-o","Strengthened from a primary word τρέω treō (to “dread”, “terrify”); to “tremble” or fear: - be afraid, trembling."]},{"k":"G5142","v":["τρέφω","tréphō","tref'-o","A primary verb (properly θρέφω threphō; but perhaps strengthened from the base of G5157 through the idea of convolution); properly to stiffen, that is, fatten (by implication to cherish [with food, etc.], pamper, rear): - bring up, feed, nourish."]},{"k":"G5143","v":["τρέχω","tréchō","trekh'-o","Apparently a primary verb (properly θρέχω threchō; compare G2359); which uses δρέμω dremō, drem'-o (the base of G1408) as an alternate in certain tenses; to run or walk hastily (literally or figuratively): - have course, run."]},{"k":"G5144","v":["τριάκοντα","triákonta","tree-ak'-on-tah","The decade of G5140; thirty: - thirty."]},{"k":"G5145","v":["τριακόσιοι","triakósioi","tree-ak-os'-ee-oy","Plural from G5140 and G1540; three hundred: - three hundred."]},{"k":"G5146","v":["τρίβολος","tríbolos","trib'-ol-os","From G5140 and G956; properly a crow foot (three pronged obstruction in war), that is, (by analogy) a thorny plant (caltrop): - brier, thistle."]},{"k":"G5147","v":["τρίβος","tríbos","tree'-bos","From τρίβω tribō (to “rub”; akin to τείρω teirō, τρύω truō, and the base of G5131, G5134); a rut or worn track: - path."]},{"k":"G5148","v":["τριετία","trietía","tree-et-ee'-ah","From a compound of G5140 and G2094; a three years' period (triennium): - space of three years."]},{"k":"G5149","v":["τρίζω","trízō","trid'-zo","Apparently a primary verb; to creak (squeak), that is, (by analogy) to grate the teeth (in frenzy): - gnash."]},{"k":"G5150","v":["τρίμηνον","trímēnon","trim'-ay-non","Neuter of a compound of G5140 and G3376 as noun; a three months' space: - three months."]},{"k":"G5151","v":["τρίς","trís","trece","Adverb from G5140; three times: - three times, thrice."]},{"k":"G5152","v":["τρίστεγον","trístegon","tris'-teg-on","Neuter of a compound of G5140 and G4721 as noun; a third roof (story): - third loft."]},{"k":"G5153","v":["τρισχίλιοι","trischílioi","tris-khil'-ee-oy","From G5151 and G5507; three times a thousand: - three thousand."]},{"k":"G5154","v":["τρίτος","trítos","tree'-tos","From G5140; third; neuter (as noun) a third part, or (as adverb) a (or the) third time, thirdly: - third (-ly)."]},{"k":"G5155","v":["τρίχινος","tríchinos","trikh'-ee-nos","From G2359; hairy, that is, made of hair (mohair): - of hair."]},{"k":"G5156","v":["τρόμος","trómos","trom'-os","From G5141; a “trembling”, that is, quaking with fear: - + tremble (-ing)."]},{"k":"G5157","v":["τροπή","tropḗ","trop-ay'","From an apparently primary word τρέπω trepō (to turn); a turn (“trope”), that is, revolution (figuratively variation): - turning."]},{"k":"G5158","v":["τρόπος","trópos","trop'-os","From the same as G5157; a turn, that is, (by implication) mode or style (especially with preposition or relatively prefixed as adverb like); figuratively deportment or character: - (even) as, conversation, [+ like] manner (+ by any) means, way."]},{"k":"G5159","v":["τροποφορέω","tropophoréō","trop-of-or-eh'-o","From G5158 and G5409; to endure one’s habits: - suffer the manners."]},{"k":"G5160","v":["τροφή","trophḗ","trof-ay'","From G5142; nourishment (literally or figuratively); by implication rations (wages): - food, meat."]},{"k":"G5161","v":["Τρόφιμος","Tróphimos","trof'-ee-mos","From G5160; nutritive; Trophimus, a Christian: - Trophimus."]},{"k":"G5162","v":["τροφός","trophós","trof-os'","From G5142; a nourisher, that is, nurse: - nurse."]},{"k":"G5163","v":["τροχιά","trochiá","trokh-ee-ah'","From G5164; a track (as a wheel rut), that is, (figuratively) a course of conduct: - path."]},{"k":"G5164","v":["τροχός","trochós","trokh-os'","From G5143; a wheel (as a runner), that is, (figuratively) a circuit of physical effects: - course."]},{"k":"G5165","v":["τρύβλιον","trýblion","troob'-lee-on","Neuter of a presumed derivation of uncertain affinity; a bowl: - dish."]},{"k":"G5166","v":["τρυγάω","trygáō","troo-gah'-o","From a derivative of τρύγω trugō (to dry) meaning ripe fruit (as if dry); to collect the vintage: - gather."]},{"k":"G5167","v":["τρυγών","trygṓn","troo-gone'","From τρύζω truzō (to murmur; akin to G5149, but denoting a duller sound); a turtle dove (as cooing): - turtle-dove."]},{"k":"G5168","v":["τρυμαλιά","trymaliá","troo-mal-ee-ah'","From a derivative of τρύώ truō (to wear away; akin to the base of G5134, G5147 and G5176); an orifice, that is, a needle’s eye: - eye. Compare G5169."]},{"k":"G5169","v":["τρύπημα","trýpēma","troo'-pay-mah","From a derivative of the base of G5168; an aperture, that is, a needle’s eye: - eye."]},{"k":"G5170","v":["Τρύφαινα","Trýphaina","troo'-fahee-nah","From G5172; luxurious; Tryphaena, a Christian woman: - Tryphena."]},{"k":"G5171","v":["τρυφάω","trypháō","troo-fah'-o","From G5172; to indulge in luxury: - live in pleasure."]},{"k":"G5172","v":["τρυφή","tryphḗ","troo-fay'","From θρύπτω thruptō̄ (to break up or [figuratively] enfeeble, especially the mind and body by indulgence); effeminacy, that is, luxury or debauchery: - delicately, riot."]},{"k":"G5173","v":["Τρυφῶσα","Tryphōsa","troo-fo'-sah","From G5172; luxuriating; Tryphosa, a Christian female: - Tryphosa."]},{"k":"G5174","v":["Τρωάς","Trōás","tro-as'","From Τρός Tros (a Trojan); the Troad (or plain of Troy), that is, Troas, a place in Asia Minor: - Troas."]},{"k":"G5175","v":["Τρωγύλλιον","Trōgýllion","tro-gool'-lee-on","Of uncertain derivation; Trogyllium, a place in Asia Minor: - Trogyllium."]},{"k":"G5176","v":["τρώγω","trṓgō","tro'-go","Probably strengthened from a collateral form of the base of G5134 and G5147 through the idea of corrosion or wear; or perhaps rather of a base of G5167 and G5149 through the idea of a craunching sound; to gnaw or chew, that is, (genitive case) to eat: - eat."]},{"k":"G5177","v":["τυγχάνω","tynchánō","toong-khan'-o","Probably for an obsolete τύχω tuchō (for which the middle voice of another alternate τεύχω teuchō [to make ready or bring to pass] is used in certain tenses; akin to the base of G5088 through the idea of effecting; properly to affect; or (specifically) to hit or light upon (as a mark to be reached), that is, (transitively) to attain or secure an object or end, or (intransitively) to happen (as if meeting with); but in the latter application only impersonally (with G1487), that is, perchance; or (present participle) as adjective usual (as if commonly met with, with G3756, extraordinary), neuter (as adverb) perhaps; or (with another verb) as adverb by accident (as it were): - be, chance, enjoy, little, obtain, X refresh . . . self, + special. Compare G5180."]},{"k":"G5178","v":["τυμπανίζω","tympanízō","toom-pan-id'-zo","From a derivative of G5180 (meaning a drum, “tympanum”); to stretch on an instrument of torture resembling a drum, and thus beat to death: - torture."]},{"k":"G5179","v":["τύπος","týpos","too'-pos","From G5180; a die (as struck), that is, (by implication) a stamp or scar; by analogy a shape, that is, a statue, (figuratively) style or resemblance; specifically a sampler (“type”), that is, a model (for imitation) or instance (for warning): - en- (ex-) ample, fashion, figure, form, manner, pattern, print."]},{"k":"G5180","v":["τύπτω","týptō","toop'-to","A primary verb (in a strengthened form); to “thump”, that is, cudgel or pummel (properly with a stick or bastinado), but in any case by repeated blows; thus differing from G3817 and G3960, which denote a [usually single] blow with the hand or any instrument, or G4141 with the fist [or a hammer], or G4474 with the palm; as well as from G5177, an accidental collision); by implication to punish; figuratively to offend (the conscience): - beat, smite, strike, wound."]},{"k":"G5181","v":["Τύραννος","Týrannos","too'-ran-nos","A provincial form of the derivative of the base of G2962; a “tyrant”; Tyrannus, an Ephesian: - Tyrannus."]},{"k":"G5182","v":["τυρβάζω","tyrbázō","toor-bad'-zo","From τύρβη turbē̄ (Latin turba, a crowd; akin to G2351); to make “turbid”, that is, disturb: - trouble."]},{"k":"G5183","v":["Τύριος","Týrios","too'-ree-os","From G5184; a Tyrian, that is, inhabitant of Tyrus: - of Tyre."]},{"k":"G5184","v":["Τύρος","Týros","too'-ros","Of Hebrew origin [H6865]; Tyrus (that is, Tsor), a place in Palestine: - Tyre."]},{"k":"G5185","v":["τυφλός","typhlós","toof-los'","From G5187; opaque (as if smoky), that is, (by analogy) blind (physically or mentally): - blind."]},{"k":"G5186","v":["τυφλόω","typhlóō","toof-lo'-o","From G5185; to make blind, that is, (figuratively) to obscure: - blind."]},{"k":"G5187","v":["τυφόω","typhóō","toof-o'-o","From a derivative of G5188; to envelop with smoke, that is, (figuratively) to inflate with self conceit: - high-minded, be lifted up with pride, be proud."]},{"k":"G5188","v":["τύφω","týphō","too'-fo","Apparently a primary verb; to make a smoke, that is, slowly consume without flame: - smoke."]},{"k":"G5189","v":["τυφωνικός","typhōnikós","too-fo-nee-kos'","From a derivative of G5188; stormy (as if smoky): - tempestuous."]},{"k":"G5190","v":["Τυχικός","Tychikós","too-khee-kos'","From a derivative of G5177; fortuitous, that is, fortunate; Tychicus, a Christian: - Tychicus."]},{"k":"G5191","v":["ὑακίνθινος","hyakínthinos","hoo-ak-in'-thee-nos","From G5192; “hyacinthine” or “jacinthine”, that is, deep blue: - jacinth."]},{"k":"G5192","v":["ὑάκινθος","hyákinthos","hoo-ak'-in-thos","Of uncertain derivation; the “hyacinth” or “jacinth”, that is, some gem of a deep blue color, probably the zirkon: - jacinth."]},{"k":"G5193","v":["ὑάλινος","hyálinos","hoo-al'-ee-nos","From G5194; glassy, that is, transparent: - of glass."]},{"k":"G5194","v":["ὕαλος","hýalos","hoo'-al-os","Perhaps from the same as G5205 (as being transparent like rain); glass: - glass."]},{"k":"G5195","v":["ὑβρίζω","hybrízō","hoo-brid'-zo","From G5196; to exercise violence, that is, abuse: - use despitefully, reproach, entreat shamefully (spitefully)."]},{"k":"G5196","v":["ὕβρις","hýbris","hoo'-bris","From G5228; insolence (as over bearing), that is, insult, injury: - harm, hurt, reproach."]},{"k":"G5197","v":["ὑβριστής","hybristḗs","hoo-bris-tace'","From G5195; an insulter, that is, maltreater: - de-spiteful, injurious."]},{"k":"G5198","v":["ὑγιαίνω","hygiaínō","hoog-ee-ah'-ee-no","From G5199; to have sound health, that is, be well (in body); figuratively to be uncorrupt (true in doctrine): - be in health, (be safe and) sound, (be) whole (-some)."]},{"k":"G5199","v":["ὑγιής","hygiḗs","hoog-ee-ace'","From the base of G837; healthy, that is, well (in body); figuratively true (in doctrine): - sound, whole."]},{"k":"G5200","v":["ὑγρός","hygrós","hoo-gros'","From the base of G5205; wet (as if with rain), that is, (by implication) sappy (fresh): - green."]},{"k":"G5201","v":["ὑδρία","hydría","hoo-dree-ah'","From G5204; a water jar, that is, receptacle for family supply: - waterpot."]},{"k":"G5202","v":["ὑδροποτέω","hydropotéō","hoo-drop-ot-eh'-o","From a compound of G5204 and a derivative of G4095; to be a water drinker, that is, to abstain from vinous beverages: - drink water."]},{"k":"G5203","v":["ὑδρωπικός","hydrōpikós","hoo-dro-pik-os'","From a compound of G5204 and a derivative of G3700 (as if looking watery); to be “dropsical”: - have the dropsy."]},{"k":"G5204","v":["ὕδωρ","hýdōr","hoo'-dore","From the base of G5205; water (as if rainy) literally or figuratively: - water."]},{"k":"G5205","v":["ὑετός","hyetós","hoo-et-os'","From a primary word ὕω huō (to rain); rain, especially a shower: - rain."]},{"k":"G5206","v":["υἱοθεσία","huiothesía","hwee-oth-es-ee'-ah","From a presumed compound of G5207 and a derivative of G5087; the placing as a son, that is, adoption (figuratively Christian sonship in respect to God): - adoption (of children, of sons)."]},{"k":"G5207","v":["υἱός","huiós","hwee-os'","Apparently a primary word; a “son” (sometimes of animals), used very widely of immediate, remote or figurative kinship: - child, foal, son."]},{"k":"G5208","v":["ὕλη","hýlē","hoo-lay'","Perhaps akin to G3586; a forest, that is, (by implication) fuel: - matter."]},{"k":"G5209","v":["ὑμᾶς","hymâs","hoo-mas'","Accusative of G5210; you (as the object of a verb or preposition): - ye, you, (+ -ward), your (+ own)."]},{"k":"G5210","v":["ὑμεῖς","hymeîs","hoo-mice'","Irregular plural of G4771; you (as subject of verb): - ye (yourselves), you."]},{"k":"G5211","v":["Ὑμεναῖος","Hymenaîos","hoo-men-ah'-yos","From Ὑμήν Humēn (the god of weddings); “hymenaeal”; Hymenaeus, an opponent of Christianity: - Hymenus."]},{"k":"G5212","v":["ὑμέτερος","hyméteros","hoo-met'-er-os","From G5210; yours, that is, pertaining to you: - your (own)."]},{"k":"G5213","v":["ὑμῖν","hymîn","hoo-min'","Irregular dative case of G5210; to (with or by) you: - ye, you, your (-selves)."]},{"k":"G5214","v":["ὑμνέω","hymnéō","hoom-neh'-o","From G5215; to hymn, that is, sing a religious ode; by implication to celebrate (God) in song: - sing an hymn (praise unto)."]},{"k":"G5215","v":["ὕμνος","hýmnos","hoom'-nos","Apparently from a simpler (obsolete) form of ὕδέω hudeō (to celebrate; probably akin to G103; compare G5567); a “hymn” or religious ode (one of the Psalms): - hymn."]},{"k":"G5216","v":["ὑμῶν","hymōn","hoo-mone'","Genitive case of G5210; of (from or concerning) you: - ye, you, your (own, -selves)."]},{"k":"G5217","v":["ὑπάγω","hypágō","hoop-ag'-o","From G5259 and G71; to lead (oneself) under, that is, withdraw or retire (as if sinking out of sight), literally or figuratively: - depart, get hence, go (a-) way."]},{"k":"G5218","v":["ὑπακοή","hypakoḗ","hoop-ak-o-ay'","From G5219; attentive hearkening, that is, (by implication) compliance or submission: - obedience, (make) obedient, obey (-ing)."]},{"k":"G5219","v":["ὑπακούω","hypakoúō","hoop-ak-oo'-o","From G5259 and G191; to hear under (as a subordinate), that is, to listen attentively; by implication to heed or conform to a command or authority: - hearken, be obedient to, obey."]},{"k":"G5220","v":["ὕπανδρος","hýpandros","hoop'-an-dros","From G5259 and G435; in subjection under a man, that is, a married woman: - which hath an husband."]},{"k":"G5221","v":["ὑπαντάω","hypantáō","hoop-an-tah'-o","From G5259 and a derivative of G473; to go opposite (meet) under (quietly), that is, to encounter, fall in with: - (go to) meet."]},{"k":"G5222","v":["ὑπάντησις","hypántēsis","hoop-an'-tay-sis","From G5221; an encounter or concurrence (with G1519 for infinitive, in order to fall in with): - meeting."]},{"k":"G5223","v":["ὕπαρξις","hýparxis","hoop'-arx-is","From G5225; existency or proprietorship, that is, (concretely) property, wealth: - goods, substance."]},{"k":"G5224","v":["ὑπάρχοντα","hypárchonta","hoop-ar'-khon-tah","Neuter plural of present participle active of G5225 as noun; things extant or in hand, that is, property or possessions: - goods, that which one has, things which (one) possesseth, substance, that hast."]},{"k":"G5225","v":["ὑπάρχω","hypárchō","hoop-ar'-kho","From G5259 and G756; to begin under (quietly), that is, come into existence (be present or at hand); expletively, to exist (as copula or subordinate to an adjective, participle, adverb or preposition, or as auxilliary to principal verb): - after behave, live."]},{"k":"G5226","v":["ὑπείκω","hypeíkō","hoop-i'-ko","From G5259 and εἴκω eikō (to yield, be “weak”); to surrender: - submit self."]},{"k":"G5227","v":["ὑπεναντίος","hypenantíos","hoop-en-an-tee'-os","From G5259 and G1727; under (covertly) contrary to, that is, opposed or (as noun) an opponent: - adversary, against."]},{"k":"G5228","v":["ὑπέρ","hypér","hoop-er'","A primary preposition; “over”, that is, (with the genitive case) of place, above, beyond, across, or causal, for the sake of, instead, regarding; with the accusative case superior to, more than. In compounds it retains many of the listed applications: - (+ exceeding abundantly) above, in (on) behalf of, beyond, by, + very chiefest, concerning, exceeding (above, -ly), for, + very highly, more (than), of, over, on the part of, for sake of, in stead, than, to (-ward), very. In compounds it retains many of the above applications."]},{"k":"G5229","v":["ὑπεραίρομαι","hyperaíromai","hoop-er-ah'-ee-rom-ahee","Middle voice from G5228 and G142; to raise oneself over, that is, (figuratively) to become haughty: - exalt self, be exalted above measure."]},{"k":"G5230","v":["ὑπέρακμος","hypérakmos","hoop-er'-ak-mos","From G5228 and the base of G188; beyond the “acme”, that is, figuratively (of a daughter) past the bloom (prime) of youth: - + pass the flower of (her) age."]},{"k":"G5231","v":["ὑπεράνω","hyperánō","hoop-er-an'-o","From G5228 and G507; above upward, that is, greatly higher (in place or rank): - far above, over."]},{"k":"G5232","v":["ὑπεραυξάνω","hyperauxánō","hoop-er-owx-an'-o","From G5228 and G837; to increase above ordinary degree: - grow exceedingly."]},{"k":"G5233","v":["ὑπερβαίνω","hyperbaínō","hoop-er-bah'-ee-no","From G5228 and the base of G939; to transcend; that is, (figuratively) to overreach: - go beyond."]},{"k":"G5234","v":["ὑπερβαλλόντως","hyperballóntōs","hoop-er-bal-lon'-toce","Adverb from present participle active of G5235; excessively: - beyond measure."]},{"k":"G5235","v":["ὑπερβάλλω","hyperbállō","hoop-er-bal'-lo","From G5228 and G906; to throw beyond the usual mark, that is, (figuratively) to surpass (only active participle supereminent): - exceeding, excel, pass."]},{"k":"G5236","v":["ὑπερβολή","hyperbolḗ","hoop-er-bol-ay'","From G5235; a throwing beyond others, that is, (figuratively) supereminence; adverbially (with G1519 or G2596) pre-eminently: - abundance, (far more) exceeding, excellency, more excellent, beyond (out of) measure."]},{"k":"G5237","v":["ὑπερείδω","hypereídō","hoop-er-i'-do","From G5228 and G1492; to overlook, that is, not punish: - wink at."]},{"k":"G5238","v":["ὑπερέκεινα","hyperékeina","hoop-er-ek'-i-nah","From G5228 and the neuter plural of G1565; above those parts, that is, still farther: - beyond."]},{"k":"G5239","v":["ὑπερεκτείνω","hyperekteínō","hoop-er-ek-ti'-no","From G5228 and G1614; to extend inordinately: - stretch beyond."]},{"k":"G5240","v":["ὑπερεκχύνω","hyperekchýnō","hoop-er-ek-khoo'-no","From G5228 and the alternate form of G1632; to pour out over, that is, (passively) to overflow: - run over."]},{"k":"G5241","v":["ὑπερεντυγχάνω","hyperentynchánō","hoop-er-en-toong-khan'-o","From G5228 and G1793; to intercede in behalf of: - make intercession for."]},{"k":"G5242","v":["ὑπερέχω","hyperéchō","hoop-er-ekh'-o","From G5228 and G2192; to hold oneself above, that is, (figuratively) to excel; participle (as adjective, or neuter as noun) superior, superiority: - better, excellency, higher, pass, supreme."]},{"k":"G5243","v":["ὑπερηφανία","hyperēphanía","hoop-er-ay-fan-ee'-ah","From G5244; haughtiness: - pride."]},{"k":"G5244","v":["ὑπερήφανος","hyperḗphanos","hoop-er-ay'-fan-os","From G5228 and G5316; appearing above others (conspicuous), that is, (figuratively) haughty: - proud."]},{"k":"G5245","v":["ὑπερνικάω","hypernikáō","hoop-er-nik-ah'-o","From G5228 and G3528; to vanquish beyond, that is, gain a decisive victory: - more than conquer."]},{"k":"G5246","v":["ὑπέρογκος","hypéronkos","hoop-er'-ong-kos","From G5228 and G3591; bulging over, that is, (figuratively) insolent: - great swelling."]},{"k":"G5247","v":["ὑπεροχή","hyperochḗ","hoop-er-okh-ay'","From G5242; prominence, that is, (figuratively) superiority (in rank or character): - authority, excellency."]},{"k":"G5248","v":["ὑπερπερισσεύω","hyperperisseúō","hoop-er-per-is-syoo'-o","From G5228 and G4052; to super abound: - abound much more, exceeding."]},{"k":"G5249","v":["ὑπερπερισσῶς","hyperperissōs","hoop-er-per-is-soce'","From G5228 and G4057; superabundantly, that is, exceedingly: - beyond measure."]},{"k":"G5250","v":["ὑπερπλεονάζω","hyperpleonázō","hoop-er-pleh-on-ad'-zo","From G5228 and G4121; to super abound: - be exceeding abundant."]},{"k":"G5251","v":["ὑπερυψόω","hyperypsóō","hoop-er-oop-so'-o","From G5228 and G5312; to elevate above others, that is, raise to the highest position: - highly exalt."]},{"k":"G5252","v":["ὑπερφρονέω","hyperphronéō","hoop-er-fron-eh'-o","From G5228 and G5426; to esteem oneself overmuch, that is, be vain or arrogant: - think more highly."]},{"k":"G5253","v":["ὑπερῷον","hyperōion","hoop-er-o'-on","Neuter of a derivative of G5228; a higher part of the house, that is, apartment in the third story: - upper chamber (room)."]},{"k":"G5254","v":["ὑπέχω","hypéchō","hoop-ekh'-o","From G5259 and G2192; to hold oneself under, that is, endure with patience: - suffer."]},{"k":"G5255","v":["ὑπήκοος","hypḗkoos","hoop-ay'-ko-os","From G5219; attentively listening, that is, (by implication) submissive: - obedient."]},{"k":"G5256","v":["ὑπηρετέω","hypēretéō","hoop-ay-ret-eh'-o","From G5257; to be a subordinate, that is, (by implication) subserve: - minister (unto), serve."]},{"k":"G5257","v":["ὑπηρέτης","hypērétēs","hoop-ay-ret'-ace","From G5259 and a derivative of ἐρέσσω eressō (to row); an under oarsman, that is, (genitive case) subordinate (assistant, sexton, constable): - minister, officer, servant."]},{"k":"G5258","v":["ὕπνος","hýpnos","hoop'-nos","From an obsolete primary (perhaps akin to G5259 through the idea of subsilience); sleep, that is, (figuratively) spiritual torpor: - sleep."]},{"k":"G5259","v":["ὑπό","hypó","hoop-o'","A primary preposition; under, that is, (with the genitive) of place (beneath), or with verbs (the agency or means, through); (with the accusative) of place (whither [underneath] or where [below]) or time (when [at]): - among, by, from, in, of, under, with. In compounds it retains the same genitive applications, especially of inferior position or condition, and specifically covertly or moderately."]},{"k":"G5260","v":["ὑποβάλλω","hypobállō","hoop-ob-al'-lo","From G5259 and G906; to throw in stealthily, that is, introduce by collusion: - suborn."]},{"k":"G5261","v":["ὑπογραμμός","hypogrammós","hoop-og-ram-mos'","From a compound of G5259 and G1125; an underwriting, that is, copy for imitation (figuratively): - example."]},{"k":"G5262","v":["ὑπόδειγμα","hypódeigma","hoop-od'-igue-mah","From G5263; an exhibit for imitation or warning (figuratively specimen, adumbration): - en- (ex-) ample, pattern."]},{"k":"G5263","v":["ὑποδείκνυμι","hypodeíknymi","hoop-od-ike'-noo-mee","From G5259 and G1166; to exhibit under the eyes, (figuratively) to exemplify (instruct, admonish): - show, (fore-) warn."]},{"k":"G5264","v":["ὑποδέχομαι","hypodéchomai","hoop-od-ekh'-om-ahee","From G5259 and G1209; to admit under one’s roof, that is, entertain hospitably: - receive."]},{"k":"G5265","v":["ὑποδέω","hypodéō","hoop-od-eh'-o","From G5259 and G1210; to bind under one’s feet, that is, put on shoes or sandals: - bind on, (be) shod."]},{"k":"G5266","v":["ὑπόδημα","hypódēma","hoop-od'-ay-mah","From G5265; something bound under the feet, that is, a shoe or sandal: - shoe."]},{"k":"G5267","v":["ὑπόδικος","hypódikos","hoop-od'-ee-kos","From G5259 and G1349; under sentence, that is, (by implication) condemned: - guilty."]},{"k":"G5268","v":["ὑποζύγιον","hypozýgion","hoop-od-zoog'-ee-on","Neuter of a compound of G5259 and G2218; an animal under the yoke (draught beast), that is, (specifically) a donkey: - ass."]},{"k":"G5269","v":["ὑποζώννυμι","hypozṓnnymi","hoop-od-zone'-noo-mee","From G5259 and G2224; to gird under, that is, frap (a vessel with cables across the keel, sides and deck): - undergirt."]},{"k":"G5270","v":["ὑποκάτω","hypokátō","hoop-ok-at'-o","From G5259 and G2736; down under, that is, beneath: - under."]},{"k":"G5271","v":["ὑποκρίνομαι","hypokrínomai","hoop-ok-rin'-om-ahee","Middle voice from G5259 and G2919; to decide (speak or act) under a false part, that is, (figuratively) dissemble (pretend): - feign."]},{"k":"G5272","v":["ὑπόκρισις","hypókrisis","hoop-ok'-ree-sis","From G5271; acting under a feigned part; that is, (figuratively) deceit (“hypocrisy”): - condemnation, dissimulation, hypocrisy."]},{"k":"G5273","v":["ὑποκριτής","hypokritḗs","hoop-ok-ree-tace'","From G5271; an actor under an assumed character (stage player), that is, (figuratively) a dissembler (“hypocrite”): - hypocrite."]},{"k":"G5274","v":["ὑπολαμβάνω","hypolambánō","hoop-ol-am-ban'-o","From G5259 and G2983; to take from below, that is, carry upward; figuratively to take up, that is, continue a discourse or topic; mentally to assume (presume): - answer, receive, suppose."]},{"k":"G5275","v":["ὑπολείπω","hypoleípō","hoop-ol-i'-po","From G5295 and G3007; to leave under (behind), that is, (passively) to remain (survive): - be left."]},{"k":"G5276","v":["ὑπολήνιον","hypolḗnion","hoop-ol-ay'-nee-on","Neuter of a presumed compound of G5259 and G3025; vessel or receptacle under the press, that is, lower winevat: - winefat."]},{"k":"G5277","v":["ὑπολιμπάνω","hypolimpánō","hoop-ol-im-pan'-o","A prolonged form for G5275; to leave behind, that is, bequeath: - leave."]},{"k":"G5278","v":["ὑπομένω","hypoménō","hoop-om-en'-o","From G5259 and G3306; to stay under (behind), that is, remain; figuratively to undergo, that is, bear (trials), have fortitude, persevere: - abide, endure, (take) patient (-ly), suffer, tarry behind."]},{"k":"G5279","v":["ὑπομιμνήσκω","hypomimnḗskō","hoop-om-im-nace'-ko","From G5259 and G3403; to remind quietly, that is, suggest to the (middle voice, one’s own) memory: - put in mind, remember, bring to (put in) remembrance."]},{"k":"G5280","v":["ὑπόμνησις","hypómnēsis","hoop-om'-nay-sis","From G5279; a reminding or (reflexively) recollection: - remembrance."]},{"k":"G5281","v":["ὑπομονή","hypomonḗ","hoop-om-on-ay'","From G5278; cheerful (or hopeful) endurance, constancy: - enduring, patience, patient continuance (waiting)."]},{"k":"G5282","v":["ὑπονοέω","hyponoéō","hoop-on-o-eh'-o","From G5259 and G3539; to think under (privately), that is, to surmise or conjecture: - think, suppose, deem."]},{"k":"G5283","v":["ὑπόνοια","hypónoia","hoop-on'-oy-ah","From G5282; suspicion: - surmising."]},{"k":"G5284","v":["ὑποπλέω","hypopléō","hoop-op-leh'-o","From G5259 and G4126; to sail under the lee of: - sail under."]},{"k":"G5285","v":["ὑποπνέω","hypopnéō","hoop-op-neh'-o","From G5259 and G4154; to breathe gently, that is, breeze: - blow softly."]},{"k":"G5286","v":["ὑποπόδιον","hypopódion","hoop-op-od'-ee-on","Neuter of a compound of G5259 and G4228; something under the feet, that is, a footrest (figuratively): - footstool."]},{"k":"G5287","v":["ὑπόστασις","hypóstasis","hoop-os'-tas-is","From a compound of G5259 and G2476; a setting under (support), that is, (figuratively) concretely essence, or abstractly assurance (objectively or subjectively): - confidence, confident, person, substance."]},{"k":"G5288","v":["ὑποστέλλω","hypostéllō","hoop-os-tel'-lo","From G5259 and G4724; to withhold under (out of sight), that is, (reflexively) to cower or shrink, (figuratively) to conceal (reserve): - draw (keep) back, shun, withdraw."]},{"k":"G5289","v":["ὑποστολή","hypostolḗ","hoop-os-tol-ay'","From G5288; shrinkage (timidity), that is, (by implication) apostasy: - draw back."]},{"k":"G5290","v":["ὑποστρέφω","hypostréphō","hoop-os-tref'-o","From G5259 and G4762; to turn under (behind), that is, to return (literally or figuratively): - come again, return (again, back again), turn back (again)."]},{"k":"G5291","v":["ὑποστρώννυμι","hypostrṓnnymi","hoop-os-trone'-noo-mee","From G5259 and G4766; to strew underneath (the feet as a carpet): - spread."]},{"k":"G5292","v":["ὑποταγή","hypotagḗ","hoop-ot-ag-ay'","From G5293; subordination: - subjection."]},{"k":"G5293","v":["ὑποτάσσω","hypotássō","hoop-ot-as'-so","From G5259 and G5021; to subordinate; reflexively to obey: - be under obedience (obedient), put under, subdue unto, (be, make) subject (to, unto), be (put) in subjection (to, under), submit self unto."]},{"k":"G5294","v":["ὑποτίθημι","hypotíthēmi","hoop-ot-ith'-ay-mee","From G5259 and G5087; to place underneath, that is, (figuratively) to hazard, (reflexively) to suggest: - lay down, put in remembrance."]},{"k":"G5295","v":["ὑποτρέχω","hypotréchō","hoop-ot-rekh'-o","From G5259 and G5143 (including its alternate); to run under, that is, (specifically) to sail past: - run under."]},{"k":"G5296","v":["ὑποτύπωσις","hypotýpōsis","hoop-ot-oop'-o-sis","From a compound of G5259 and a derivative of G5179; typification under (after), that is, (concretely) a sketch (figuratively) for imitation: - form, pattern."]},{"k":"G5297","v":["ὑποφέρω","hypophérō","hoop-of-er'-o","From G5259 and G5342; to bear from underneath, that is, (figuratively) to undergo hardship: - bear, endure."]},{"k":"G5298","v":["ὑποχωρέω","hypochōréō","hoop-okh-o-reh'-o","From G5259 and G5562; to vacate down, that is, retire quietly: - go aside, withdraw self."]},{"k":"G5299","v":["ὑπωπιάζω","hypōpiázō","hoop-o-pee-ad'-zo","From a compound of G5259 and a derivative of G3700; to hit under the eye (buffet or disable an antagonist as a pugilist), that is, (figuratively) to tease or annoy (into compliance), subdue (one’s passions): - keep under, weary."]},{"k":"G5300","v":["ὗς","hŷs","hoos","Apparently a primary word; a hog (“swine”): - sow."]},{"k":"G5301","v":["ὕσσωπος","hýssōpos","hoos'-so-pos","Of foreign origin [H231]; “hyssop”: - hyssop."]},{"k":"G5302","v":["ὑστερέω","hysteréō","hoos-ter-eh'-o","From G5306; to be later, that is, (by implication) to be inferior; genitively to fall short (be deficient): - come behind (short), be destitute, fall, lack, suffer need, (be in) want, be the worse."]},{"k":"G5303","v":["ὑστέρημα","hystérēma","hoos-ter'-ay-mah","From G5302; a deficit; specifically poverty: - that which is behind, (that which was) lack (-ing), penury, want."]},{"k":"G5304","v":["ὑστέρησις","hystérēsis","hoos-ter'-ay-sis","From G5302; a falling short, that is, (specifically) penury: - want."]},{"k":"G5305","v":["ὕστερον","hýsteron","hoos'-ter-on","Neuter of G5306 as adverb; more lately, that is, eventually: - afterward, (at the) last (of all)."]},{"k":"G5306","v":["ὕστερος","hýsteros","hoos'-ter-os","Comparatively from G5259 (in the sense of behind); later: - latter."]},{"k":"G5307","v":["ὑφαντός","hyphantós","hoo-fan-tos'","From ὑφαίνω huphainō (to weave); woven, that is, (perhaps) knitted: - woven."]},{"k":"G5308","v":["ὑψηλός","hypsēlós","hoop-say-los'","From G5311; lofty (in place or character): - high (-er, -ly) (esteemed)."]},{"k":"G5309","v":["ὑψηλοφρονέω","hypsēlophronéō","hoop-say-lo-fron-eh'-o","From a compound of G5308 and G5424; to be lofty in mind, that is, arrogant: - be highminded."]},{"k":"G5310","v":["ὕψιστος","hýpsistos","hoop'-sis-tos","Superlative from the base of G5311; highest, that is, (masculine singular) the Supreme (God), or (neuter plural) the heavens: - most high, highest."]},{"k":"G5311","v":["ὕψος","hýpsos","hoop'-sos","From a derivative of G5228; elevation, that is, (abstractly) altitude, (specifically) the sky, or (figuratively) dignity: - be exalted, height, (on) high."]},{"k":"G5312","v":["ὑψόω","hypsóō","hoop-so'-o","From G5311; to elevate (literally or figuratively): - exalt, lift up."]},{"k":"G5313","v":["ὕψωμα","hýpsōma","hoop'-so-mah","From G5312; an elevated place or thing, that is, (abstractly) altitude, or (by implication) a barrier (figurative): - height, high thing."]},{"k":"G5314","v":["φάγος","phágos","fag'-os","From G5315; a glutton: - gluttonous."]},{"k":"G5315","v":["φάγω","phágō","fag'-o","A primary verb (used as an alternate of G2068 in certain tenses); to eat (literally or figuratively): - eat, meat."]},{"k":"G5316","v":["φαίνω","phaínō","fah'-ee-no","Prolongation for the base of G5457; to lighten (shine), that is, show (transitive or intransitive, literal or figurative): - appear, seem, be seen, shine, X think."]},{"k":"G5317","v":["Φάλεκ","Phálek","fal'-ek","Of Hebrew origin [H6389]; Phalek (that is, Peleg), a patriarch: - Phalec."]},{"k":"G5318","v":["φανερός","phanerós","fan-er-os'","From G5316; shining, that is, apparent (literally or figuratively); neuter (as adverb) publicly, externally: - abroad, + appear, known, manifest, open [+ -ly], outward ([+ -ly])."]},{"k":"G5319","v":["φανερόω","phaneróō","fan-er-o'-o","From G5318; to render apparent (literally or figuratively): - appear, manifestly declare, (make) manifest (forth), shew (self)."]},{"k":"G5320","v":["φανερῶς","phanerōs","fan-er-oce'","Adverb from G5318; plainly, that is, clearly or publicly: - evidently, openly."]},{"k":"G5321","v":["φανέρωσις","phanérōsis","fan-er'-o-sis","From G5319; exhibition, that is, (figuratively) expression, (by extension) a bestowment: - manifestation."]},{"k":"G5322","v":["φανός","phanós","fan-os'","From G5316; a lightener, that is, light: - lantern."]},{"k":"G5323","v":["Φανουήλ","Phanouḗl","fan-oo-ale'","Of Hebrew origin [H6439]; Phanuel (that is, Penuel), an Israelite: - Phanuel."]},{"k":"G5324","v":["φαντάζω","phantázō","fan-tad'-zo","From a derivative of G5316; to make apparent, that is, (passively) to appear (neuter participle as noun, a spectacle): - sight."]},{"k":"G5325","v":["φαντασία","phantasía","fan-tas-ee'-ah","From a derivative of G5324; (properly abstractly) a (vain) show (“fantasy”): - pomp."]},{"k":"G5326","v":["φάντασμα","phántasma","fan'-tas-mah","From G5324; (properly concretely) a (mere) show (“phantasm”), that is, spectre: - spirit."]},{"k":"G5327","v":["φάραγξ","pháranx","far'-anx","Properly strengthened from the base of G4008 or rather of G4486; a gap or chasm, that is, ravine (winter torrent): - valley."]},{"k":"G5328","v":["Φαραώ","Pharaṓ","far-ah-o'","Of foreign origin [H6547]; Pharao (that is, Pharoh), an Egyptian king: - Pharaoh."]},{"k":"G5329","v":["Φάρες","Pháres","far-es'","Of Hebrew origin [H6557]; Phares (that is, Perets), an Israelite: - Phares."]},{"k":"G5330","v":["Φαρισαῖος","Pharisaîos","far-is-ah'-yos","Of Hebrew origin (compare [H6567]); a separatist, that is, exclusively religious; a Pharisaean, that is, Jewish sectary: - Pharisee."]},{"k":"G5331","v":["φαρμακεία","pharmakeía","far-mak-i'-ah","From G5332; medication (“pharmacy”), that is, (by extension) magic (literal or figurative): - sorcery, witchcraft."]},{"k":"G5332","v":["φαρμακεύς","pharmakeús","far-mak-yoos'","From φάρμακον pharmakon (a drug, that is, spell giving potion); a druggist (“pharmacist”) or poisoner, that is, (by extension) a magician: - sorcerer."]},{"k":"G5333","v":["φάρμακος","phármakos","far-mak-os'","The same as G5332: - sorcerer."]},{"k":"G5334","v":["φάσις","phásis","fas'-is","From G5346 (not the same as “phase”, which is from G5316); a saying, that is, report: - tidings."]},{"k":"G5335","v":["φάσκω","pháskō","fas'-ko","Prolongation from the same as G5346; to assert: - affirm, profess, say."]},{"k":"G5336","v":["φάτνη","phátnē","fat'-nay","From πατέομαι pateomai (to eat); a crib (for fodder): - manger, stall."]},{"k":"G5337","v":["φαῦλος","phaûlos","fow'-los","Apparently a primary word; “foul” or “flawy”, that is, (figuratively) wicked: - evil."]},{"k":"G5338","v":["φέγγος","phéngos","feng'-gos","Probably akin to the base of G5457 (compare G5350); brilliancy: - light."]},{"k":"G5339","v":["φείδομαι","pheídomai","fi'-dom-ahee","Of uncertain affinity; to be chary of, that is, (subjectively) to abstain or (objectively) to treat leniently: - forbear, spare."]},{"k":"G5340","v":["φειδομένως","pheidoménōs","fi-dom-en'-oce","Adverb from participle of G5339; abstemiously, that is, stingily: - sparingly."]},{"k":"G5341","v":["φελόνης","phelónēs","fel-on'-ace","By transposition for a derivation probably of G5316 (as showing outside the other garments); a mantle (surtout): - cloke."]},{"k":"G5342","v":["φέρω","phérō","fer'-o","A primary verb (for which other and apparently not cognate ones are used in certain tenses only; namely οἴω oiō̄̄ and ἐνέγκω enegkō̄ to “bear” or carry (in a very wide application, literally and figuratively: - be, bear, bring (forth), carry, come, + let her drive, be driven, endure, go on, lay, lead, move, reach, rushing, uphold."]},{"k":"G5343","v":["φεύγω","pheúgō","fyoo'-go","Apparently a primary verb; to run away (literally or figuratively); by implication to shun; by analogy to vanish: - escape, flee (away)."]},{"k":"G5344","v":["Φῆλιξ","Phēlix","fay'-lix","Of Latin origin; happy; Phelix (that is, Felix), a Roman: - Felix."]},{"k":"G5345","v":["φήμη","phḗmē","fay'-may","From G5346; a saying, that is, rumor (“fame”): - fame."]},{"k":"G5346","v":["φημί","phēmí","fay-mee'","Properly the same as the base of G5457 and G5316; to show or make known one’s thoughts, that is, speak or say: - affirm, say. Compare G3004."]},{"k":"G5347","v":["Φῆστος","Phēstos","face'-tos","Of Latin derivation; festal; Phestus (that is, Festus), a Roman: - Festus."]},{"k":"G5348","v":["φθάνω","phthánō","fthan'-o","Apparently a primary verb; to be beforehand, that is, anticipate or precede; by extension to have arrived at: - (already) attain, come, prevent."]},{"k":"G5349","v":["φθαρτός","phthartós","fthar-tos'","From G5351; decayed, that is, (by implication) perishable: - corruptible."]},{"k":"G5350","v":["φθέγγομαι","phthéngomai","ftheng'-gom-ahee","Probably akin to G5338 and thus to G5346; to utter a clear sound, that is, (genitive case) to proclaim: - speak."]},{"k":"G5351","v":["φθείρω","phtheírō","fthi'-ro","Probably strengthened from φθίω phthiō (to pine or waste): properly to shrivel or wither, that is, to spoil (by any process) or (genitive) to ruin (especially figuratively by moral influences, to deprave): - corrupt (self), defile, destroy."]},{"k":"G5352","v":["φθινοπωρινός","phthinopōrinós","fthin-op-o-ree-nos'","From a derivative of φθίνω phthinō (to wane; akin to the base of G5351) and G3703 (meaning late autumn) autumnal (as stripped of leaves): - whose fruit withereth."]},{"k":"G5353","v":["φθόγγος","phthóngos","ftong'-gos","From G5350; utterance, that is, a musical note (vocal or instrumental): - sound."]},{"k":"G5354","v":["φθονέω","phthonéō","fthon-eh'-o","From G5355; to be jealous of: - envy."]},{"k":"G5355","v":["φθόνος","phthónos","fthon'-os","Probably akin to the base of G5351; ill will (as detraction), that is, jealousy (spite): - envy."]},{"k":"G5356","v":["φθορά","phthorá","fthor-ah'","From G5351; decay, that is, ruin (spontaneous or inflicted, literally or figuratively): - corruption, destroy, perish."]},{"k":"G5357","v":["φιάλη","phiálē","fee-al'-ay","Of uncertain affinity; a broad shallow cup (“phial”): - vial."]},{"k":"G5358","v":["φιλάγαθος","philágathos","fil-ag'-ath-os","From G5384 and G18; fond of good, that is, a promoter of virtue: - love of good men."]},{"k":"G5359","v":["Φιλαδέλφεια","Philadélpheia","fil-ad-el'-fee-ah","From Φιλάδέλφος Philadelphos (the same as G5361), a king of Pergamos; Philadelphia, a place in Asia Minor: - Philadelphia."]},{"k":"G5360","v":["φιλαδελφία","philadelphía","fil-ad-el-fee'-ah","From G5361; fraternal affection: - brotherly love (kindness), love of the brethren."]},{"k":"G5361","v":["φιλάδελφος","philádelphos","fil-ad'-el-fos","From G5384 and G80; fond of brethren, that is, fraternal: - love as brethren."]},{"k":"G5362","v":["φίλανδρος","phílandros","fil'-an-dros","From G5384 and G435; fond of man, that is, affectionate as a wife: - love their husbands."]},{"k":"G5363","v":["φιλανθρωπία","philanthrōpía","fil-an-thro-pee'-ah","From the same as G5364; fondness of mankind, that is, benevolence (“philanthropy”): - kindness, love towards man."]},{"k":"G5364","v":["φιλανθρώπως","philanthrṓpōs","fil-an-thro'-poce","Adverb from a compound of G5384 and G444; fondly to man (philanthropically), that is, humanely: - courteously."]},{"k":"G5365","v":["φιλαργυρία","philargyría","fil-ar-goo-ree'-ah","From G5366; avarice: - love of money."]},{"k":"G5366","v":["φιλάργυρος","philárgyros","fil-ar'-goo-ros","From G5384 and G696; fond of silver (money), that is, avaricious: - covetous."]},{"k":"G5367","v":["φίλαυτος","phílautos","fil'-ow-tos","From G5384 and G846; fond of self, that is, selfish: - lover of own self."]},{"k":"G5368","v":["φιλέω","philéō","fil-eh'-o","From G5384; to be a friend to (fond of [an individual or an object]), that is, have affection for (denoting personal attachment, as a matter of sentiment or feeling; while G25 is wider, embracing especially the judgment and the deliberate assent of the will as a matter of principle, duty and propriety: the two thus stand related very much as G2309 and G1014, or as G2372 and G3563 respectively; the former being chiefly of the heart and the latter of the head); specifically to kiss (as a mark of tenderness): - kiss, love."]},{"k":"G5369","v":["φιλήδονος","philḗdonos","fil-ay'-don-os","From G5384 and G2237; fond of pleasure, that is, voluptuous: - lover of pleasure."]},{"k":"G5370","v":["φίλημα","phílēma","fil'-ay-mah","From G5368; a kiss: - kiss."]},{"k":"G5371","v":["Φιλήμων","Philḗmōn","fil-ay'-mone","From G5368; friendly; Philemon, a Christian: - Philemon."]},{"k":"G5372","v":["Φίλητος","Phílētos","fil-ay-tos'","From G5368; amiable; Philetus, an opposer of Christianity: - Philetus."]},{"k":"G5373","v":["φιλία","philía","fil-ee'-ah","From G5384; fondness: - friendship."]},{"k":"G5374","v":["Φιλιππήσιος","Philippḗsios","fil-ip-pay'-see-os","From G5375; a Philippesian (Philippian), that is, native of Philippi: - Philippian."]},{"k":"G5375","v":["Φίλιπποι","Phílippoi","fil'-ip-poy","Plural of G5376; Philippi, a place in Macedonia: - Philippi."]},{"k":"G5376","v":["Φίλιππος","Phílippos","fil'-ip-pos","From G5384 and G2462; fond of horses; Philippus, the name of four Israelites: - Philip."]},{"k":"G5377","v":["φιλόθεος","philótheos","fil-oth'-eh-os","From G5384 and G2316; fond of God, that is, pious: - lover of God."]},{"k":"G5378","v":["Φιλόλογος","Philólogos","fil-ol'-og-os","From G5384 and G3056; fond of words, that is, talkative (argumentative, learned, “philological”); Philologus, a Christian: - Philologus."]},{"k":"G5379","v":["φιλονεικία","philoneikía","fil-on-i-kee'-ah","From G5380; quarrelsomeness, that is, a dispute: - strife."]},{"k":"G5380","v":["φιλόνεικος","philóneikos","fil-on'-i-kos","From G5384 and νεῖκος neikos (a quarrel; probably akin to G3534); fond of strife, that is, disputatious: - contentious."]},{"k":"G5381","v":["φιλονεξία","philonexía","fil-on-ex-ee'-ah","From G5382; hospitableness: - entertain strangers, hospitality."]},{"k":"G5382","v":["φιλόξενος","philóxenos","fil-ox'-en-os","From G5384 and G3581; fond of guests, that is, hospitable: - given to (lover of, use) hospitality."]},{"k":"G5383","v":["φιλοπρωτεύω","philoprōteúō","fil-op-rote-yoo'-o","From a compound of G5384 and G4413; to be fond of being first, that is, ambitious of distinction: - love to have the preeminence."]},{"k":"G5384","v":["φίλος","phílos","fee'-los","Properly dear, that is, a friend; actively fond, that is, friendly (still as a noun, an associate, neighbor, etc.): - friend."]},{"k":"G5385","v":["φιλοσοφία","philosophía","fil-os-of-ee'-ah","From G5386; “philosophy”, that is, (specifically) Jewish sophistry: - philosophy."]},{"k":"G5386","v":["φιλόσοφος","philósophos","fil-os'-of-os","From G5384 and G4680; fond of wise things, that is, a “philosopher”: - philosopher."]},{"k":"G5387","v":["φιλόστοργος","philóstorgos","fil-os'-tor-gos","From G5384 and στοργή storgē (cherishing one’s kindred, especially parents or children); fond of natural relatives, that is, fraternal towards fellow Christians: - kindly affectioned."]},{"k":"G5388","v":["φιλότεκνος","philóteknos","fil-ot'-ek-nos","From G5384 and G5043; fond of one’s children, that is, maternal: - love their children."]},{"k":"G5389","v":["φιλοτιμέομαι","philotiméomai","fil-ot-im-eh'-om-ahee","Middle voice from a compound of G5384 and G5092; to be fond of honor, that is, emulous (eager or earnest to do somethng.): - labour, strive, study."]},{"k":"G5390","v":["φιλοφρόνως","philophrónōs","fil-of-ron'-oce","Adverb from G5391; with friendliness of mind, that is, kindly: - courteously."]},{"k":"G5391","v":["φιλόφρων","philóphrōn","fil-of'-rone","From G5384 and G5424; friendly of mind, that is, kind: - courteous."]},{"k":"G5392","v":["φιμόω","phimóō","fee-mo'-o","From φιμός phimos (a muzzle); to muzzle: - muzzle."]},{"k":"G5393","v":["Φλέγων","Phlégōn","fleg'-one","Active participle of the base of G5395; blazing; Phlegon, a Christian: - Phlegon."]},{"k":"G5394","v":["φλογίζω","phlogízō","flog-id'-zo","From G5395; to cause a blaze, that is, ignite (figuratively to inflame with passion): - set on fire."]},{"k":"G5395","v":["φλόξ","phlóx","flox","From a primary φλέγω phlegō (to “flash” or “flame”); a blaze: - flame (-ing)."]},{"k":"G5396","v":["φλυαρέω","phlyaréō","floo-ar-eh'-o","From G5397; to be a babbler or trifler, that is, (by implication) to berate idly or mischievously: - prate against."]},{"k":"G5397","v":["φλύαρος","phlýaros","floo'-ar-os","From φλύω phluō (to bubble); a garrulous person, that is, prater: - tattler."]},{"k":"G5398","v":["φοβερός","phoberós","fob-er-os'","From G5401; frightful, that is, (objectively) formidable: - fearful, terrible."]},{"k":"G5399","v":["φοβέω","phobéō","fob-eh'-o","From G5401; to frighten, that is, (passively) to be alarmed; by analogy to be in awe of, that is, revere: - be (+ sore) afraid, fear (exceedingly), reverence."]},{"k":"G5400","v":["φόβητρον","phóbētron","fob'-ay-tron","Neuter of a derivative of G5399; a frightening thing, that is, terrific portent: - fearful sight."]},{"k":"G5401","v":["φόβος","phóbos","fob'-os","From a primary φέβομαι phebomai (to be put in fear); alarm or fright: - be afraid, + exceedingly, fear, terror."]},{"k":"G5402","v":["Φοίβη","Phoíbē","foy'-bay","Feminine of Φοῖβος Phoibos (bright; probably akin to the base of G5457); Phaebe, a Christian woman: - Phebe."]},{"k":"G5403","v":["Φοινίκη","Phoiníkē","foy-nee'-kay","From G5404; palm country; Phaenice (or Phaenicia), a region of Palestine: - Phenice, Phenicia."]},{"k":"G5404","v":["φοῖνιξ","phoînix","foy'-nix","Of uncertain derivation; a palm tree: - palm (tree)."]},{"k":"G5405","v":["Φοῖνιξ","Phoînix","foy'-nix","Probably the same as G5404; Phaenix, a place in Crete: - Phenice."]},{"k":"G5406","v":["φονεύς","phoneús","fon-yooce'","From G5408; a murderer (always of criminal [or at least intentional] homicide; which G443 does not necessarily imply; while G4607 is a special term for a public bandit): - murderer."]},{"k":"G5407","v":["φονεύω","phoneúō","fon-yoo'-o","From G5406; to be a murderer (of): - kill, do murder, slay."]},{"k":"G5408","v":["φόνος","phónos","fon'-os","From an obsolete primary φένω phenō (to slay); murder: - murder, + be slain with, slaughter."]},{"k":"G5409","v":["φορέω","phoréō","for-eh'-o","From G5411; to have a burden, that is, (by analogy) to wear as clothing or a constant accompaniment: - bear, wear."]},{"k":"G5410","v":["Φόρον","Phóron","for'-on","Of Latin origin; a forum or market place; only in compounds with G675; a station on the Appian road: - forum."]},{"k":"G5411","v":["φόρος","phóros","for'-os","From G5342; a load (as borne), that is, (figuratively) a tax (properly an individual assessment on persons or property; whereas G5056 is usually a general toll on goods or travel): - tribute."]},{"k":"G5412","v":["φορτίζω","phortízō","for-tid'-zo","From G5414; to load up (properly as a vessel or animal), that is, (figuratively) to overburden with ceremony (or spiritual anxiety): - lade, be heavy laden."]},{"k":"G5413","v":["φορτίον","phortíon","for-tee'-on","Diminutive of G5414; an invoice (as part of freight), that is, (figuratively) a task or service: - burden."]},{"k":"G5414","v":["φόρτος","phórtos","for'-tos","From G5342; something carried, that is, the cargo of a ship: - lading."]},{"k":"G5415","v":["Φορτουνᾶτος","Phortounâtos","for-too-nat'-os","Of Latin origin; “fortunate”; Fortunatus, a Christian: - Fortunatus."]},{"k":"G5416","v":["φραγέλλιον","phragéllion","frag-el'-le-on","Neuter of a derivative from the base of G5417; a whip, that is, Roman lash as a public punishment: - scourge."]},{"k":"G5417","v":["φραγελλόω","phragellóō","frag-el-lo'-o","From a presumed equivalent of the Latin flagellum; to whip, that is, lash as a public punishment: - scourge."]},{"k":"G5418","v":["φραγμός","phragmós","frag-mos'","From G5420; a fence, or inclosing barrier (literally or figuratively): - hedge (+ round about), partition."]},{"k":"G5419","v":["φράζω","phrázō","frad'-zo","Probably akin to G5420 through the idea of defining; to indicate (by word or act), that is, (specifically) to expound: - declare."]},{"k":"G5420","v":["φράσσω","phrássō","fras'-so","Apparently a strengthened form of the base of G5424; to fence or inclose, that is, (specifically) to block up (figuratively to silence): - stop."]},{"k":"G5421","v":["φρέαρ","phréar","freh'-ar","Of uncertain derivation; a hole in the ground (dug for obtaining or holding water or other purposes), that is, a cistern or well; figuratively an abyss (as a prison): - well, pit."]},{"k":"G5422","v":["φρεναπατάω","phrenapatáō","fren-ap-at-ah'-o","From G5423; to be a mind misleader, that is, delude: - deceive."]},{"k":"G5423","v":["φρεναπάτης","phrenapátēs","fren-ap-at'-ace","From G5424 and G539; a mind misleader, that is, seducer: - deceiver."]},{"k":"G5424","v":["φρήν","phrḗn","frane","Probably from an obsolete φράω phraō (to rein in or curb; compare G5420); the midrif (as a partition of the body), that is, (figuratively and by implication of sympathy) the feelings (or sensitive nature; by extension [also in the plural] the mind or cognitive faculties): - understanding."]},{"k":"G5425","v":["φρίσσω","phríssō","fris'-so","Apparently a primary verb; to “bristle” or chill, that is, shudder (fear): - tremble."]},{"k":"G5426","v":["φρονέω","phronéō","fron-eh'-o","From G5424; to exercise the mind, that is, entertain or have a sentiment or opinion; by implication to be (mentally) disposed (more or less earnestly in a certain direction); intensively to interest oneself in (with concern or obedience): - set the affection on, (be) care (-ful), (be like-, + be of one, + be of the same, + let this) mind (-ed, regard, savour, think."]},{"k":"G5427","v":["φρόνημα","phrónēma","fron'-ay-mah","From G5426; (mental) inclination or purpose: - (be, + be carnally, + be spiritually) mind (-ed)."]},{"k":"G5428","v":["φρόνησις","phrónēsis","fron'-ay-sis","From G5426; mental action or activity, that is, intellectual or moral insight: - prudence, wisdom."]},{"k":"G5429","v":["φρόνιμος","phrónimos","fron'-ee-mos","From G5424; thoughtful, that is, sagacious or discreet (implying a cautious character; while G4680 denotes practical skill or acumen; and G4908 indicates rather intelligence or mental acquirement); in a bad sense conceited (also in the comparative): - wise (-r)."]},{"k":"G5430","v":["φρονίμως","phronímōs","fron-im'-oce","Adverb from G5429; prudently: - wisely."]},{"k":"G5431","v":["φροντίζω","phrontízō","fron-tid'-zo","From a derivative of G5424; to exercise thought, that is, be anxious: - be careful."]},{"k":"G5432","v":["φρουρέω","phrouréō","froo-reh'-o","From a compound of G4253 and G3708; to be a watcher in advance, that is, to mount guard as a sentinel (post spies at gates); figuratively to hem in, protect: - keep (with a garrison). Compare G5083."]},{"k":"G5433","v":["φρυάσσω","phryássō","froo-as'-so","Akin to G1032, G1031; to snort (as a spirited horse), that is, (figuratively) to make a tumult: - rage."]},{"k":"G5434","v":["φρύγανον","phrýganon","froo'-gan-on","Neuter of a presumed derivative of φρύγω phrugō (to roast or parch; akin to the base of G5395); something desiccated, that is, a dry twig: - stick."]},{"k":"G5435","v":["Φρυγία","Phrygía","froog-ee'-ah","Probably of foreign origin; Phrygia, a region of Asia Minor: - Phrygia."]},{"k":"G5436","v":["Φύγελλος","Phýgellos","foog'-el-los","Probably from G5343; fugitive; Phygellus, an apostate Christian: - Phygellus."]},{"k":"G5437","v":["φυγή","phygḗ","foog-ay'","From G5343; a fleeing, that is, escape: - flight."]},{"k":"G5438","v":["φυλακή","phylakḗ","foo-lak-ay'","From G5442; a guarding or (concretely guard), the act, the parson; figuratively the place, the condition, or (specifically) the time (as a division of day or night), literally or figuratively: - cage, hold, (im-) prison (-ment), ward, watch."]},{"k":"G5439","v":["φυλακίζω","phylakízō","foo-lak-id'-zo","From G5441; to incarcerate: - imprison."]},{"k":"G5440","v":["φυλακτήριον","phylaktḗrion","foo-lak-tay'-ree-on","Neuter of a derivative of G5442; a guard case, that is, “phylactery” for wearing slips of Scripture texts: - phylactery."]},{"k":"G5441","v":["φύλαξ","phýlax","foo'-lax","From G5442; a watcher or sentry: - keeper."]},{"k":"G5442","v":["φυλάσσω","phylássō","foo-las'-so","Probably from G5443 through the idea of isolation; to watch, that is, be on guard (literally or figuratively); by implication to preserve. obey, avoid: - beware, keep (self), observe, save. Compare G5083."]},{"k":"G5443","v":["φυλή","phylḗ","foo-lay'","From G5453 (compare G5444); an offshoot, that is, race or clan: - kindred, tribe."]},{"k":"G5444","v":["φύλλον","phýllon","fool'-lon","From the same as G5443; a sprout, that is, leaf: - leaf."]},{"k":"G5445","v":["φύραμα","phýrama","foo'-ram-ah","From a prolonged form of φύρω phurō (to mix a liquid with a solid; perhaps akin to G5453 through the idea of swelling in bulk), mean to knead; a mass of dough: - lump."]},{"k":"G5446","v":["φυσικός","physikós","foo-see-kos'","From G5449; “physical”, that is, (by implication) instinctive: - natural. Compare G5591."]},{"k":"G5447","v":["φυσικῶς","physikōs","foo-see-koce'","Adverb frm G5446; “physically”, that is, (by implication) instinctively: - naturally."]},{"k":"G5448","v":["φυσιόω","physióō","foo-see-o'-o","From G5449 in the primary sense of blowing; to inflate, that is, (figuratively) make proud (haughty): - puff up."]},{"k":"G5449","v":["φύσις","phýsis","foo'-sis","From G5453; growth (by germination or expansion), that is, (by implication) natural production (lineal descent); by extension a genus or sort; figuratively native disposition, constitution or usage: - ([man-]) kind, nature ([-al])."]},{"k":"G5450","v":["φυσίωσις","physíōsis","foo-see'-o-sis","From G5448; inflation, that is, (figuratively) haughtiness: - swelling."]},{"k":"G5451","v":["φυτεία","phyteía","foo-ti'-ah","From G5452; trans planting, that is, (concretely) a shrub or vegetable: - plant."]},{"k":"G5452","v":["φυτεύω","phyteúō","foot-yoo'-o","From a derivative of G5453; to set out in the earth, that is, implant. Figuratively to instil doctrine: - plant."]},{"k":"G5453","v":["φύω","phýō","foo'-o","A primary verb; probably originally to “puff” or blow, that is, to swell up; but only used in the implied sense, to germinate or grow (sprout, produce), literally or figuratively: - spring (up)."]},{"k":"G5454","v":["φωλεός","phōleós","fo-leh-os'","Of uncertain derivation; a burrow or lurking place: - hole."]},{"k":"G5455","v":["φωνέω","phōnéō","fo-neh'-o","From G5456; to emit a sound (animal, human or instrumental); by implication to address in words or by name, also in imitation: - call (for), crow, cry."]},{"k":"G5456","v":["φωνή","phōnḗ","fo-nay'","Probably akin to G5316 through the idea of disclosure; a tone (articulate, bestial or artificial); by implication an address (for any purpose), saying or language: - noise, sound, voice."]},{"k":"G5457","v":["φῶς","phōs","foce","From an obsolete φάω phaō (to shine or make manifest, especially by rays; compare G5316 and G5346); luminousness (in the widest application, natural or artificial, abstract or concrete, literal or figurative): - fire, light."]},{"k":"G5458","v":["φωστήρ","phōstḗr","foce-tare'","From G5457; an illuminator, that is, (concretely) a luminary, or (abstractly) brilliancy: - light."]},{"k":"G5459","v":["φωσφόρος","phōsphóros","foce-for'-os","From G5457 and G5342; light bearing (“phosphorus”), that is, (specifically) the morning star (figuratively): - day star."]},{"k":"G5460","v":["φωτεινός","phōteinós","fo-ti-nos'","From G5457; lustrous, that is, transparent or well illuminated (figurative): - bright, full of light."]},{"k":"G5461","v":["φωτίζω","phōtízō","fo-tid'-zo","From G5457; to shed rays, that is, to shine or (transitively) to brighten up (literally or figuratively): - enlighten, illuminate, (bring to, give) light, make to see."]},{"k":"G5462","v":["φωτισμός","phōtismós","fo-tis-mos'","From G5461; illumination (figurative): - light."]},{"k":"G5463","v":["χαίρω","chaírō","khah'-ee-ro","A primary verb; to be full of “cheer”, that is, calmly happy or well off; impersonal especially as a salutation (on meeting or parting), be well: - farewell, be glad, God speed, greeting, hail, joy (-fully), rejoice."]},{"k":"G5464","v":["χάλαζα","chálaza","khal'-ad-zah","Probably from G5465; hail: - hail."]},{"k":"G5465","v":["χαλάω","chaláō","khal-ah'-o","From the base of G5490; to lower (as into a void): - let down, strike."]},{"k":"G5466","v":["Χαλδαῖος","Chaldaîos","khal-dah'-yos","Probably of Hebrew origin [H3778]; a Chaldaean (that is, Kasdi), or native of the region of the lower Euphrates: - Chaldan."]},{"k":"G5467","v":["χαλεπός","chalepós","khal-ep-os'","Perhaps from G5465 through the idea of reducing the strength; difficult, that is, dangerous, or (by implication) furious: - fierce, perilous."]},{"k":"G5468","v":["χαλιναγωγέω","chalinagōgéō","khal-in-ag-ogue-eh'-o","From a compound of G5469 and the reduplicated form of G71; to be a bit leader, that is, to curb (figuratively): - bridle."]},{"k":"G5469","v":["χαλινός","chalinós","khal-ee-nos'","From G5465 a curb or head stall (as curbing the spirit): - bit, bridle."]},{"k":"G5470","v":["χάλκεος","chálkeos","khal'-keh-os","From G5475; coppery: - brass."]},{"k":"G5471","v":["χαλκεύς","chalkeús","khalk-yooce'","From G5475; a copper worker or brazier: - coppersmith."]},{"k":"G5472","v":["χαλκηδών","chalkēdṓn","khal-kay-dohn'","From G5475 and perhaps G1491; copper like, that is, “chalcedony”: - chalcedony."]},{"k":"G5473","v":["χαλκίον","chalkíon","khal-kee'-on","Diminutive from G5475; a copper dish: - brazen vessel."]},{"k":"G5474","v":["χαλκολίβανον","chalkolíbanon","khal-kol-ib'-an-on","Neuter of a compound of G5475 and G3030 (in the implied mean of whiteness or brilliancy); burnished copper, an alloy of copper (or gold) and silver having a brilliant lustre: - fine brass."]},{"k":"G5475","v":["χαλκός","chalkós","khal-kos'","Perhaps from G5465 through the idea of hollowing out as a vessel (this metal being chiefly used for that purpose); copper (the substance, or some implement or coin made of it): - brass, money."]},{"k":"G5476","v":["χαμαί","chamaí","kham-ah'-ee","Adverb perhaps from the base of G5490 through the idea of a fissure in the soil; earthward, that is, prostrate: - on (to) the ground."]},{"k":"G5477","v":["Χαναάν","Chanaán","khan-ah-an'","Of Hebrew origin [H3667]; Chanaan (that is, Kenaan), the early name of Palestine: - Chanaan."]},{"k":"G5478","v":["Χανααναῖος","Chanaanaîos","khan-ah-an-ah'-yos","From G5477; a Chanaanaean (that is, Kenaanite), or native of gentile Palestine: - of Canaan."]},{"k":"G5479","v":["χαρά","chará","khar-ah'","From G5463; cheerfulness, that is, calm delight: - gladness, X greatly, (X be exceeding) joy (-ful, -fully, -fulness, -ous)."]},{"k":"G5480","v":["χάραγμα","cháragma","khar'-ag-mah","From the same as G5482; a scratch or etching, that is, stamp (as a badge of servitude), or sculptured figure (statue): - graven, mark."]},{"k":"G5481","v":["χαρακτήρ","charaktḗr","khar-ak-tare'","From the same as G5482; a graver (the tool or the person), that is, (by implication) engraving ([“character”], the figure stamped, that is, an exact copy or [figuratively] representation): - express image."]},{"k":"G5482","v":["χάραξ","chárax","khar'-ax","From “charasso” (to sharpen to a point; akin to G1125 through the idea of scratching); a stake, that is, (by implication) a palisade or rampart (millitary mound for circumvallation in a siege): - trench."]},{"k":"G5483","v":["χαρίζομαι","charízomai","khar-id'-zom-ahee","Middle voice from G5485; to grant as a favor, that is, gratuitously, in kindness, pardon or rescue: - deliver, (frankly) forgive, (freely) give, grant."]},{"k":"G5484","v":["χάριν","chárin","khar'-in","Accusative case of G5485 as preposition; through favor of, that is, on account of: - be- (for) cause of, for sake of, + . . . fore, X reproachfully."]},{"k":"G5485","v":["χάρις","cháris","khar'-ece","From G5463; graciousness (as gratifying), of manner or act (abstract or concrete; literal, figurative or spiritual; especially the divine influence upon the heart, and its reflection in the life; including gratitude): - acceptable, benefit, favour, gift, grace (-ious), joy liberality, pleasure, thank (-s, -worthy)."]},{"k":"G5486","v":["χάρισμα","chárisma","khar'-is-mah","From G5483; a (divine) gratuity, that is, deliverance (from danger or passion); (specifically) a (spiritual) endowment, that is, (subjectively) religious qualification, or (objectively) miraculous faculty: - (free) gift."]},{"k":"G5487","v":["χαριτόω","charitóō","khar-ee-to'-o","From G5485; to grace, that is, indue with special honor: - make accepted, be highly favoured."]},{"k":"G5488","v":["Χαῤῥάν","Charrhán","khar-hran'","Of Hebrew origin [H2771]; Charrhan (that is, Charan), a place in Mesopotamia: - Charran."]},{"k":"G5489","v":["χάρτης","chártēs","khar'-tace","From the same as G5482; a sheet (“chart”) of writing material (as to be scribbled over): - paper."]},{"k":"G5490","v":["χάσμα","chásma","khas'-mah","From a form of an obsolete primary “chao” (to “gape” or “yawn”); a “chasm” or vacancy (impassable interval): - gulf."]},{"k":"G5491","v":["χεῖλος","cheîlos","khi'-los","From a form of the same as G5490; a lip (as a pouring place); figuratively a margin (of water): - lip, shore."]},{"k":"G5492","v":["χειμάζω","cheimázō","khi-mad'-zo","From the same as G5494; to storm, that is, (passively) to labor under a gale: - to tossed with tempest."]},{"k":"G5493","v":["χείμαῤῥος","cheímarrhos","khi'-mar-hros","From the base of G5494 and G4482; a storm runlet, that is, winter torrent: - brook."]},{"k":"G5494","v":["χειμών","cheimṓn","khi-mone'","From a derivation of χέω cheō (to pour; akin to the base of G5490 through the idea of a channel), meaning a storm (as pouring rain); by implication the rainy season, that is, winter: - tempest, foul weather, winter."]},{"k":"G5495","v":["χείρ","cheír","khire","Perhaps from the base of G5494 in the sense of its congener the base of G5490 (through the idea of hollowness for grasping); the hand (literally or figuratively [power]; especially [by Hebraism] a means or instrument): - hand."]},{"k":"G5496","v":["χειραγωγέω","cheiragōgéō","khi-rag-ogue-eh'-o","From G5497; to be a hand leader, that is, to guide (a blind person): - lead by the hand."]},{"k":"G5497","v":["χειραγωγός","cheiragōgós","khi-rag-o-gos'","From G5495 and a reduplicated form of G71; a hand leader, that is, personal conductor (of a blind person): - some to lead by the hand."]},{"k":"G5498","v":["χειρόγραφον","cheirógraphon","khi-rog'-raf-on","Neuter of a compound of G5495 and G1125; something hand written (“chirograph”), that is, a manuscript (specifically a legal document or bond (figuratively)): - handwriting."]},{"k":"G5499","v":["χειροποίητος","cheiropoíētos","khi-rop-oy'-ay-tos","From G5495 and a derivative of G4160; manufactured, that is, of human construction: - made by (make with) -    hands."]},{"k":"G5500","v":["χειροτονέω","cheirotonéō","khi-rot-on-eh'-o","From a compound of G5495 and τείνω teinō (to stretch); to be a hand reacher or voter (by raising the hand), that is, (genitive) to select or appoint: - choose, ordain."]},{"k":"G5501","v":["χείρων","cheírōn","khi'-rone","Irregular compound of G2556; from an obsolete equivalent χέρης cherēs (of uncertain derivation); more evil or aggravated (physically, mentally or morally): - sorer, worse."]},{"k":"G5502","v":["χερουβίμ","cheroubím","kher-oo-beem'","Plural of Hebrew origin [H3742]; “cherubim” (that is, cherubs or kerubim): - cherubims."]},{"k":"G5503","v":["χήρα","chḗra","khay'-rah","Feminine of a presumed derivation apparently from the base of G5490 through the idea of deficiency; a widow (as lacking a husband), literally or figuratively: - widow."]},{"k":"G5504","v":["χθές","chthés","khthes","Of uncertain derivation; “yesterday”; by extension in time past or hitherto: - yesterday."]},{"k":"G5505","v":["χιλιάς","chiliás","khil-ee-as'","From G5507; one thousand (“chiliad”): - thousand."]},{"k":"G5506","v":["χιλίαρχος","chilíarchos","khil-ee'-ar-khos","From G5507 and G757; the commander of a thousand soldiers (“chiliarch”), that is, colonel: - (chief, high) captain."]},{"k":"G5507","v":["χίλιοι","chílioi","khil'-ee-oy","Plural of uncertain affinity; a thousand: - thousand."]},{"k":"G5508","v":["Χίος","Chíos","khee'-os","Of uncertain derivation; Chios, an island in the Mediterranean: - Chios."]},{"k":"G5509","v":["χιτών","chitṓn","khee-tone'","Of foreign origin [H3801]; a tunic or shirt: - clothes, coat, garment."]},{"k":"G5510","v":["χιών","chiṓn","khee-one'","Perhaps akin to the base of G5490 (G5465) or G5494 (as descending or empty); snow: - snow."]},{"k":"G5511","v":["χλαμύς","chlamýs","khlam-ooce'","Of uncertain derivation; a military cloak: - robe."]},{"k":"G5512","v":["χλευάζω","chleuázō","khlyoo-ad'-zo","From a derivative probably of G5491; to throw out the lip, that is, jeer at: - mock."]},{"k":"G5513","v":["χλιαρός","chliarós","khlee-ar-os'","From χλίω chliō (to warm); tepid: - lukewarm."]},{"k":"G5514","v":["Χλόη","Chlóē","khlo'-ay","Feminine of apparently a primary word; “green”; Chloe, a Christian female: - Chloe."]},{"k":"G5515","v":["χλωρός","chlōrós","khlo-ros'","From the same as G5514; greenish, that is, verdant, dun-colored: - green, pale."]},{"k":"G5516","v":["χξϛ","chx stigma","khee xee stig'-ma","The 22nd, 14th and an obsolete letter (G4742 as a cross) of the Greek alphabet (intermediate between the 5th and 6th), used as numbers; denoting respectively 600, 60 and 6; 666 as a numeral: - six hundred threescore and six."]},{"k":"G5517","v":["χοϊκός","choïkós","kho-ik-os'","From G5522; dusty or dirty (soil like), that is, (by implication) terrene: - earthy."]},{"k":"G5518","v":["χοῖνιξ","choînix","khoy'-nix","Of uncertain derivation; a chaenix or certain dry measure: - measure."]},{"k":"G5519","v":["χοῖρος","choîros","khoy'-ros","Of uncertain derivation; a hog: - swine."]},{"k":"G5520","v":["χολάω","choláō","khol-ah'-o","From G5521; to be bilious, that is, (by implication) irritable (enraged, “choleric”): - be angry."]},{"k":"G5521","v":["χολή","cholḗ","khol-ay'","Feminine of an equivalent perhaps akin to the same as G5514 (from the greenish hue); “gall” or bile, that is, (by analogy) poison or an anodyne (wormwood, poppy, etc.): - gall."]},{"k":"G5522","v":["χόος","chóos","kho'-os","From the base of G5494; a heap (as poured out), that is, rubbish; lose dirt: - dust."]},{"k":"G5523","v":["Χοραζίν","Chorazín","khor-ad-zin'","Of uncertain derivation, Chorazin, a place in Palestine: - Chorazin."]},{"k":"G5524","v":["χορηγέω","chorēgéō","khor-ayg-eh'-o","From a compound of G5525 and G71; to be a dance leader, that is, (genitive case) to furnish: - give, minister."]},{"k":"G5525","v":["χορός","chorós","khor-os'","Of uncertain derivation; a ring, that is, round dance (“choir”): - dancing."]},{"k":"G5526","v":["χορτάζω","chortázō","khor-tad'-zo","From G5528; to fodder, that is, (genitive case) to gorge (supply food in abundance): - feed, fill, satisfy."]},{"k":"G5527","v":["χόρτασμα","chórtasma","khor'-tas-mah","From G5526; forage, that is, food: - sustenance."]},{"k":"G5528","v":["χόρτος","chórtos","khor'-tos","Apparently a primary word; a “court” or “garden”, that is, (by implication of pasture) herbage or vegetation: - blade, grass, hay."]},{"k":"G5529","v":["Χουζᾶς","Chouzâs","khood-zas'","Of uncertain origin, Chuzas, an officer of Herod: - Chuza."]},{"k":"G5530","v":["χράομαι","chráomai","khrah'-om-ahee","Middle voice of a primary verb (perhaps rather from G5495, to handle); to furnish what is needed; (give an oracle, “graze” [touch slightly], light upon, etc.), that is, (by implication) to employ or (by extension) to act towards one in a given manner: - entreat, use. Compare G5531, G5534."]},{"k":"G5531","v":["χράω","chráō","khrah'-o","Probably the same as the base of G5530; to loan: - lend."]},{"k":"G5532","v":["χρεία","chreía","khri'-ah","From the base of G5530 or G5534; employment, that is, an affair; also (by implication) occasion, demand, requirement or destitution: - business, lack, necessary (-ity), need (-ful), use, want."]},{"k":"G5533","v":["χρεωφειλέτης","chreōpheilétēs","khreh-o-fi-let'-ace","From a derivative of G5531 and G3781; a loan ower, that is, indebted person: - debtor."]},{"k":"G5534","v":["χρή","chrḗ","khray","Third person singular of the same as G5530 or G5531 used impersonally; it needs (must or should) be: - ought."]},{"k":"G5535","v":["χρῄζω","chrḗizō","khrade'-zo","From G5532; to make (that is, have) necessity, that is, be in want of: - (have) need."]},{"k":"G5536","v":["χρῆμα","chrēma","khray'-mah","Something useful or needed, that is, wealth, price: - money, riches."]},{"k":"G5537","v":["χρηματίζω","chrēmatízō","khray-mat-id'-zo","From G5536; to utter an oracle (compare the original sense of G5530), that is, divinely intimate; by implication (compare the secular sense of G5532) to constitute a firm for business, that is, (genitive) bear as a title: - be called, be admonished (warned) of God, reveal, speak."]},{"k":"G5538","v":["χρηματισμός","chrēmatismós","khray-mat-is-mos'","From G5537; a divine response or revelation: - answer of God."]},{"k":"G5539","v":["χρήσιμος","chrḗsimos","khray'-see-mos","From G5540; serviceable: - profit."]},{"k":"G5540","v":["χρῆσις","chrēsis","khray'-sis","From G5530; employment, that is, (specifically) sexual intercourse (as an occupation of the body): - use."]},{"k":"G5541","v":["χρηστεύομαι","chrēsteúomai","khraste-yoo'-om-ahee","Middle voice from G5543; to show oneself useful, that is, act benevolently: - be kind."]},{"k":"G5542","v":["χρηστολογία","chrēstología","khrase-tol-og-ee'-ah","From a compound of G5543 and G3004; fair speech, that is, plausibility: - good words."]},{"k":"G5543","v":["χρηστός","chrēstós","khrase-tos'","From G5530; employed, that is, (by implication) useful (in manner or morals): - better, easy, good (-ness), gracious, kind."]},{"k":"G5544","v":["χρηστότης","chrēstótēs","khray-stot'-ace","From G5543; usefulness, that is, moral excellence (in character or demeanor): - gentleness, good (-ness), kindness."]},{"k":"G5545","v":["χρῖσμα","chrîsma","khris'-mah","From G5548; an unguent or smearing, that is, (figuratively) the special endowment (“chrism”) of the Holy Spirit: - anointing, unction."]},{"k":"G5546","v":["Χριστιανός","Christianós","khris-tee-an-os'","From G5547; a Christian, that is, follower of Christ: - Christian."]},{"k":"G5547","v":["Χριστός","Christós","khris-tos'","From G5548; anointed, that is, the Messiah, an epithet of Jesus: - Christ."]},{"k":"G5548","v":["χρίω","chríō","khree'-o","Probably akin to G5530 through the idea of contact; to smear or rub with oil, that is, (by implication) to consecrate to an office or religious service: - anoint."]},{"k":"G5549","v":["χρονίζω","chronízō","khron-id'-zo","From G5550; to take time, that is, linger: - delay, tarry."]},{"k":"G5550","v":["χρόνος","chrónos","khron'-os","Of uncertain derivation; a space of time (in genitive case, and thus properly distinguished from G2540, which designates a fixed or special occasion; and from G165, which denotes a particular period) or interval; by extension an individual opportunity; by implication delay: - + years old, season, space, (X often-) time (-s), (a) while."]},{"k":"G5551","v":["χρονοτριβέω","chronotribéō","khron-ot-rib-eh'-o","From a presumed compound of G5550 and the base of G5147; to be a time wearer, that is, to procrastinate (linger): - spend time."]},{"k":"G5552","v":["χρύσεος","chrýseos","khroo'-seh-os","From G5557; made of gold: - of gold, golden."]},{"k":"G5553","v":["χρυσίον","chrysíon","khroo-see'-on","Diminutive of G5557; a golden article, that is, gold plating, ornament, or coin: - gold."]},{"k":"G5554","v":["χρυσοδακτύλιος","chrysodaktýlios","khroo-sod-ak-too'-lee-os","From G5557 and G1146; gold ringed, that is, wearing a golden finger ring or similar jewelry: - with a gold ring."]},{"k":"G5555","v":["χρυσόλιθος","chrysólithos","khroo-sol'-ee-thos","From G5557 and G3037; gold stone, that is, a yellow gem (“chrysolite”): - chrysolite."]},{"k":"G5556","v":["χρυσόπρασος","chrysóprasos","khroo-sop'-ras-os","From G5557 and πράσον prason (a leek); a greenish yellow gem (“chrysoprase”): - chrysoprase."]},{"k":"G5557","v":["χρυσός","chrysós","khroo-sos'","Perhaps from the base of G5530 (through the idea of the utility of the metal); gold; by extension a golden article, as an ornament or coin: - gold."]},{"k":"G5558","v":["χρυσόω","chrysóō","khroo-so'-o","From G5557; to gild, that is, bespangle with golden ornaments: - deck."]},{"k":"G5559","v":["χρώς","chrṓs","khroce","Probably akin to the base of G5530 through the idea of handling; the body (properly its surface or skin): - body."]},{"k":"G5560","v":["χωλός","chōlós","kho-los'","Apparently a primary word; “halt”, that is, limping: - cripple, halt, lame."]},{"k":"G5561","v":["χώρα","chṓra","kho'-rah","Feminine of a derivative of the base of G5490 through the idea of empty expanse; room, that is, a space of territory (more or less extensive; often including its inhabitants): - coast, county, fields, grounds, land, region. Compare G5117."]},{"k":"G5562","v":["χωρέω","chōréō","kho-reh'-o","From G5561; to be in (give) space, that is, (intransitively) to pass, enter, or (transitively) to hold, admit (literally or figuratively): - come, contain, go, have, place, (can, be room to) receive."]},{"k":"G5563","v":["χωρίζω","chōrízō","kho-rid'-zo","From G5561; to place room between, that is, part; reflexively to go away: - depart, put asunder, separate."]},{"k":"G5564","v":["χωρίον","chōríon","kho-ree'-on","Diminutive of G5561; a spot or plot of ground: - field, land, parcel of ground, place, possession."]},{"k":"G5565","v":["χωρίς","chōrís","kho-rece'","Adverb from G5561; at a space, that is, separately or apart from (often as preposition): - beside, by itself, without."]},{"k":"G5566","v":["χῶρος","chōros","kho'-ros","Of Latin origin; the north west wind: - north west."]},{"k":"G5567","v":["ψάλλω","psállō","psal'-lo","Probably strengthened from ψάω psaō (to rub or touch the surface; compare G5597); to twitch or twang, that is, to play on a stringed instrument (celebrate the divine worship with music and accompanying odes): - make melody, sing (psalms)."]},{"k":"G5568","v":["ψαλμός","psalmós","psal-mos'","From G5567; a set piece of music, that is, a sacred ode (accompanied with the voice, harp or other instrument; a “psalm”); collectively the book of the Psalms: - psalm. Compare G5603."]},{"k":"G5569","v":["ψευδάδελφος","pseudádelphos","psyoo-dad'-el-fos","From G5571 and G80; a spurious brother, that is, pretended associate: - false brethren."]},{"k":"G5570","v":["ψευδαπόστολος","pseudapóstolos","psyoo-dap-os'-tol-os","From G5571 and G652; a spurious apostle, that is, pretended preacher: - false teacher."]},{"k":"G5571","v":["ψευδής","pseudḗs","psyoo-dace'","From G5574; untrue, that is, erroneous, deceitful, wicked: - false, liar."]},{"k":"G5572","v":["ψευδοδιδάσκαλος","pseudodidáskalos","psyoo-dod-id-as'-kal-os","From G5571 and G1320; a spurious teacher, that is, propagator of erroneous Christian doctrine: - false teacher."]},{"k":"G5573","v":["ψευδολόγος","pseudológos","psyoo-dol-og'-os","From G5571 and G3004; mendacious, that is, promulgating erroneous Christian doctrine: - speaking lies."]},{"k":"G5574","v":["ψεύδομαι","pseúdomai","psyoo'-dom-ahee","Middle voice of an apparently primary verb; to utter an untruth or attempt to deceive by falsehood: - falsely, lie."]},{"k":"G5575","v":["ψευδομάρτυρ","pseudomártyr","psyoo-dom-ar'-toor","From G5571 and a kindred form of G3144; a spurious witness, that is, bearer of untrue testimony: - false witness."]},{"k":"G5576","v":["ψευδομαρτυρέω","pseudomartyréō","psyoo-dom-ar-too-reh'-o","From G5575; to be an untrue testifier, that is, offer falsehood in evidence: - be a false witness."]},{"k":"G5577","v":["ψευδομαρτυρία","pseudomartyría","psyoo-dom-ar-too-ree'-ah","From G5575; untrue testimony: - false witness."]},{"k":"G5578","v":["ψευδοπροφήτης","pseudoprophḗtēs","psyoo-dop-rof-ay'-tace","From G5571 and G4396; a spurious prophet, that is, pretended foreteller or religious impostor: - false prophet."]},{"k":"G5579","v":["ψεῦδος","pseûdos","psyoo'-dos","From G5574; a falsehood: - lie, lying."]},{"k":"G5580","v":["ψευδόχριστος","pseudóchristos","psyoo-dokh'-ris-tos","From G5571 and G5547; a spurious Messiah: - false Christ."]},{"k":"G5581","v":["ψευδώνυμος","pseudṓnymos","psyoo-do'-noo-mos","From G5571 and G3686; untruly named: - falsely so called."]},{"k":"G5582","v":["ψεῦσμα","pseûsma","psyoos'-mah","From G5574; a fabrication, that is, falsehood: - lie."]},{"k":"G5583","v":["ψεύστης","pseústēs","psyoos-tace'","From G5574; a falsifier: - liar."]},{"k":"G5584","v":["ψηλαφάω","psēlapháō","psay-laf-ah'-o","From the base of G5567 (compare G5586); to manipulate, that is, verify by contact; figuratively to search for: - feel after, handle, touch."]},{"k":"G5585","v":["ψηφίζω","psēphízō","psay-fid'-zo","From G5586; to use pebbles in enumeration, that is, (genitive case) to compute: - count."]},{"k":"G5586","v":["ψῆφος","psēphos","psay'-fos","From the same as G5584; a pebble (as worn smooth by handling), that is, (by implication of use as a counter or ballot) a verdict (of acquittal) or ticket (of admission); a vote: - stone, voice."]},{"k":"G5587","v":["ψιθυρισμός","psithyrismós","psith-oo-ris-mos'","From a derivative of ψίθος psithos (a whisper; by implication a slander; probably akin to G5574); whispering, that is, secret detraction: - whispering."]},{"k":"G5588","v":["ψιθυριστής","psithyristḗs","psith-oo-ris-tace'","From the same as G5587; a secret calumniator: - whisperer."]},{"k":"G5589","v":["ψιχίον","psichíon","psikh-ee'-on","Diminutive from a derivative of the base of G5567 (meaning a crumb); a little bit or morsel: - crumb."]},{"k":"G5590","v":["ψυχή","psychḗ","psoo-khay'","From G5594; breath, that is, (by implication) spirit, abstractly or concretely (the animal sentient principle only; thus distinguished on the one hand from G4151, which is the rational and immortal soul; and on the other from G2222, which is mere vitality, even of plants: these terms thus exactly correspond respectively to the Hebrew [H5315], [H7307] and [H2416]: - heart (+ -ily), life, mind, soul, + us, + you."]},{"k":"G5591","v":["ψυχικός","psychikós","psoo-khee-kos'","From G5590; sensitive that is, animate (in distinction on the one hand from G4152, which is the higher or renovated nature; and on the other from G5446, which is the lower or bestial nature): - natural, sensual."]},{"k":"G5592","v":["ψύχος","psýchos","psoo'-khos","From G5594; coolness: - cold."]},{"k":"G5593","v":["ψυχρός","psychrós","psoo-chros'","From G5592; chilly (literally or figuratively): - cold."]},{"k":"G5594","v":["ψύχω","psýchō","psoo'-kho","A primary verb; to breathe (voluntarily but gently; thus differing on the one hand from G4154, which denotes properly a forcible respiration; and on the other from the base of G109, which refers properly to an inanimate breeze), that is, (by implication of reduction of temperature by evaporation) to chill (figuratively): - wax cold."]},{"k":"G5595","v":["ψωμίζω","psōmízō","pso-mid'-zo","From the base of G5596; to supply with bits, that is, (genitive case) to nourish: - (bestow to) feed."]},{"k":"G5596","v":["ψωμίον","psōmíon","pso-mee'-on","Diminutive from a derivation of the base of G5597; a crumb or morsel (as if rubbed off), that is, a mouthful: - sop."]},{"k":"G5597","v":["ψώχω","psṓchō","pso'-kho","Prolongation from the same base as G5567; to triturate, that is, (by analogy) to rub out (kernels from husks with the fingers or hand): - rub."]},{"k":"G5598","v":["Ω","Ō","o'-meg-ah","The last letter of the Greek alphabet, that is, (figuratively) the finality: - Omega."]},{"k":"G5599","v":["ὦ","ō","o","As a sign of the vocative O; as a note of exclamation. oh: - O."]},{"k":"G5600","v":["ὦ","ō","o","Including the oblique forms, as well as ἦς ēs ace; ἦ ē ay, etc.; the subjunctive of G1510; (may, might, can, could, would, must, etc.; also with G1487 and its compounds, as well as with other particles) be: - + appear, are, (may, might, should) be, X have, is, + pass the flower of her age, should stand, were."]},{"k":"G5601","v":["Ὠβήδ","Ōbḗd","o-bade'","Of Hebrew origin [H5744]; Obed, an Israelite: - Obed."]},{"k":"G5602","v":["ὧδε","hōde","ho'-deh","From an adverb form of G3592; in this same spot, that is, here or hither: - here, hither, (in) this place, there."]},{"k":"G5603","v":["ᾠδή","ōidḗ","o-day'","From G103; a chant or “ode” (the general term for any words sung; while G5215 denotes especially a religious metrical composition, and G5568 still more specifically a Hebrew cantillation: - song."]},{"k":"G5604","v":["ὠδίν","ōdín","o-deen'","Akin to G3601; a pang or throe, especially of childbirth: - pain, sorrow, travail."]},{"k":"G5605","v":["ὠδίνω","ōdínō","o-dee'-no","From G5604; to experience the pains of parturition (literally or figuratively): - travail in (birth)."]},{"k":"G5606","v":["ὦμος","ōmos","o'-mos","Perhaps from the alternate of G5342; the shoulder (as that on which burdens are borne): - shoulder."]},{"k":"G5607","v":["ὤν","ṓn","oan","The feminine, the neuter and the present participle of G1510; being: - be, come, have."]},{"k":"G5608","v":["ὠνέομαι","ōnéomai","o-neh'-om-ahee","Middle voice from an apparently primary word ὦνος ōnos (a sum or price); to purchase (synonymous with the earlier G4092): - buy."]},{"k":"G5609","v":["ὠόν","ōón","o-on'","Apparently a primary word; an egg: - egg."]},{"k":"G5610","v":["ὥρα","hṓra","ho'-rah","Apparently a primary word; an “hour” (literally or figuratively): - day, hour, instant, season, X short, [even-] tide, (high) time."]},{"k":"G5611","v":["ὡραῖος","hōraîos","ho-rah'-yos","From G5610; belonging to the right hour or season (timely), that is, (by implication) flourishing (beauteous [figuratively]): - beautiful."]},{"k":"G5612","v":["ὠρύομαι","ōrýomai","o-roo'-om-ahee","Middle voice of an apparently primary verb; to “roar”: - roar."]},{"k":"G5613","v":["ὡς","hōs","hoce","Probably adverb of compound from G3739; which how, that is, in that manner (very variously used as shown): - about, after (that), (according) as (it had been, it were), as soon (as), even as (like), for, how (greatly), like (as, unto), since, so (that), that, to wit, unto, when ([-soever]), while, X with all speed."]},{"k":"G5614","v":["ὡσαννά","hōsanná","ho-san-nah'","Of Hebrew origin [H3467] and [H4994]; oh save!; hosanna (that is, hoshia-na), an exclamation of adoration: - hosanna."]},{"k":"G5615","v":["ὡσαύτως","hōsaútōs","ho-sow'-toce","From G5613 and an adverb from G846; as thus, that is, in the same way: - even so, likewise, after the same (in like) manner."]},{"k":"G5616","v":["ὡσεί","hōseí","ho-si'","From G5613 and G1487; as if: - about, as (it had been, it were), like (as)."]},{"k":"G5617","v":["Ὡσηέ","Hōsēé","ho-say-eh'","Of Hebrew origin [H1954]; Hosee (that is, Hoshea), an Israelite: - Osee."]},{"k":"G5618","v":["ὥσπερ","hṓsper","hoce'-per","From G5613 and G4007; just as, that is, exactly like: - (even, like) as."]},{"k":"G5619","v":["ὡσπερεί","hōspereí","hoce-per-i'","From G5618 and G1487; just as if, that is, as it were: - as."]},{"k":"G5620","v":["ὥστε","hṓste","hoce'-teh","From G5613 and G5037; so too, that is, thus therefore (in various relations of consecution, as shown): - (insomuch) as, so that (then), (insomuch) that, therefore, to, wherefore."]},{"k":"G5621","v":["ὠτίον","ōtíon","o-tee'-on","Diminutive of G3775; an earlet, that is, one of the ears, or perhaps the lobe of the ear: - ear."]},{"k":"G5622","v":["ὠφέλεια","ōphéleia","o-fel'-i-ah","From a derivative of the base of G5624; usefulness, that is, benefit: - advantage, profit."]},{"k":"G5623","v":["ὠφελέω","ōpheléō","o-fel-eh'-o","From the same as G5622; to be useful, that is, to benefit: - advantage, better, prevail, profit."]},{"k":"G5624","v":["ὠφέλιμος","ōphélimos","o-fel'-ee-mos","From a form of G3786; helpful or serviceable, that is, advantageous: - profit (-able)."]}],"maps":[{"k":0,"v":[[0,3,["H7225"]],[3,4,["H430"]],[4,5,["H1254","(H853)"]],[5,7,["H8064"]],[7,10,["H776"]]]},{"k":1,"v":[[0,3,["H776"]],[3,4,["H1961"]],[4,6,["H8414"]],[6,8,["H922"]],[8,10,["H2822"]],[10,12,["H5921"]],[12,14,["H6440"]],[14,17,["H8415"]],[17,20,["H7307"]],[20,22,["H430"]],[22,23,["H7363"]],[23,24,["H5921"]],[24,26,["H6440"]],[26,29,["H4325"]]]},{"k":2,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,6,["H1961"]],[6,7,["H216"]],[7,10,["H1961"]],[10,11,["H216"]]]},{"k":3,"v":[[0,2,["H430"]],[2,3,["H7200","(H853)"]],[3,5,["H216"]],[5,6,["H3588"]],[6,9,["H2896"]],[9,11,["H430"]],[11,12,["H914","H996"]],[12,14,["H216"]],[14,15,["H996"]],[15,17,["H2822"]]]},{"k":4,"v":[[0,2,["H430"]],[2,3,["H7121"]],[3,5,["H216"]],[5,6,["H3117"]],[6,9,["H2822"]],[9,11,["H7121"]],[11,12,["H3915"]],[12,15,["H6153"]],[15,18,["H1242"]],[18,19,["H1961"]],[19,21,["H259"]],[21,22,["H3117"]]]},{"k":5,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,6,["H1961"]],[6,8,["H7549"]],[8,11,["H8432"]],[11,14,["H4325"]],[14,16,["H1961"]],[16,18,["H914","H996"]],[18,20,["H4325"]],[20,23,["H4325"]]]},{"k":6,"v":[[0,2,["H430"]],[2,3,["H6213","(H853)"]],[3,5,["H7549"]],[5,7,["H914","H996"]],[7,9,["H4325"]],[9,10,["H834"]],[10,12,["H4480","H8478"]],[12,14,["H7549"]],[14,15,["H996"]],[15,17,["H4325"]],[17,18,["H834"]],[18,20,["H4480","H5921"]],[20,22,["H7549"]],[22,25,["H1961"]],[25,26,["H3651"]]]},{"k":7,"v":[[0,2,["H430"]],[2,3,["H7121"]],[3,5,["H7549"]],[5,6,["H8064"]],[6,9,["H6153"]],[9,12,["H1242"]],[12,13,["H1961"]],[13,15,["H8145"]],[15,16,["H3117"]]]},{"k":8,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,6,["H4325"]],[6,7,["H4480","H8478"]],[7,9,["H8064"]],[9,12,["H6960"]],[12,13,["H413"]],[13,14,["H259"]],[14,15,["H4725"]],[15,19,["H3004"]],[19,21,["H7200"]],[21,24,["H1961"]],[24,25,["H3651"]]]},{"k":9,"v":[[0,2,["H430"]],[2,3,["H7121"]],[3,5,["H3004"]],[5,7,["H776"]],[7,11,["H4723"]],[11,14,["H4325"]],[14,15,["H7121"]],[15,17,["H3220"]],[17,19,["H430"]],[19,20,["H7200"]],[20,21,["H3588"]],[21,24,["H2896"]]]},{"k":10,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,6,["H776"]],[6,8,["H1876"]],[8,9,["H1877"]],[9,11,["H6212"]],[11,12,["H2232"]],[12,13,["H2233"]],[13,16,["H6529"]],[16,17,["H6086"]],[17,18,["H6213"]],[18,19,["H6529"]],[19,22,["H4327"]],[22,23,["H834"]],[23,24,["H2233"]],[24,28,["H5921"]],[28,30,["H776"]],[30,33,["H1961"]],[33,34,["H3651"]]]},{"k":11,"v":[[0,3,["H776"]],[3,5,["H3318"]],[5,6,["H1877"]],[6,8,["H6212"]],[8,9,["H2232"]],[9,10,["H2233"]],[10,13,["H4327"]],[13,16,["H6086"]],[16,17,["H6213"]],[17,18,["H6529"]],[18,19,["H834"]],[19,20,["H2233"]],[20,26,["H4327"]],[26,28,["H430"]],[28,29,["H7200"]],[29,30,["H3588"]],[30,33,["H2896"]]]},{"k":12,"v":[[0,3,["H6153"]],[3,6,["H1242"]],[6,7,["H1961"]],[7,9,["H7992"]],[9,10,["H3117"]]]},{"k":13,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,6,["H1961"]],[6,7,["H3974"]],[7,10,["H7549"]],[10,13,["H8064"]],[13,15,["H914","H996"]],[15,17,["H3117"]],[17,18,["H996"]],[18,20,["H3915"]],[20,24,["H1961"]],[24,26,["H226"]],[26,29,["H4150"]],[29,32,["H3117"]],[32,34,["H8141"]]]},{"k":14,"v":[[0,4,["H1961"]],[4,6,["H3974"]],[6,9,["H7549"]],[9,12,["H8064"]],[12,15,["H215"]],[15,16,["H5921"]],[16,18,["H776"]],[18,21,["H1961"]],[21,22,["H3651"]]]},{"k":15,"v":[[0,2,["H430"]],[2,3,["H6213","(H853)"]],[3,4,["H8147"]],[4,5,["H1419"]],[5,6,["H3974","(H853)"]],[6,8,["H1419"]],[8,9,["H3974"]],[9,11,["H4475"]],[11,13,["H3117"]],[13,16,["H6996"]],[16,17,["H3974"]],[17,19,["H4475"]],[19,21,["H3915"]],[21,25,["H3556"]],[25,26,[]]]},{"k":16,"v":[[0,2,["H430"]],[2,3,["H5414"]],[3,7,["H7549"]],[7,10,["H8064"]],[10,13,["H215"]],[13,14,["H5921"]],[14,16,["H776"]]]},{"k":17,"v":[[0,3,["H4910"]],[3,6,["H3117"]],[6,10,["H3915"]],[10,13,["H914","H996"]],[13,15,["H216"]],[15,16,["H996"]],[16,18,["H2822"]],[18,20,["H430"]],[20,21,["H7200"]],[21,22,["H3588"]],[22,25,["H2896"]]]},{"k":18,"v":[[0,3,["H6153"]],[3,6,["H1242"]],[6,7,["H1961"]],[7,9,["H7243"]],[9,10,["H3117"]]]},{"k":19,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,6,["H4325"]],[6,9,["H8317"]],[9,12,["H8318"]],[12,15,["H5315","H2416"]],[15,17,["H5775"]],[17,20,["H5774"]],[20,21,["H5921"]],[21,23,["H776"]],[23,24,["H5921"]],[24,26,["H6440"]],[26,27,["H7549"]],[27,29,["H8064"]]]},{"k":20,"v":[[0,2,["H430"]],[2,3,["H1254","(H853)"]],[3,4,["H1419"]],[4,5,["H8577"]],[5,7,["H3605"]],[7,8,["H2416"]],[8,9,["H5315"]],[9,11,["H7430"]],[11,12,["H834"]],[12,14,["H4325"]],[14,17,["H8317"]],[17,20,["H4327"]],[20,22,["H3605"]],[22,23,["H3671"]],[23,24,["H5775"]],[24,27,["H4327"]],[27,29,["H430"]],[29,30,["H7200"]],[30,31,["H3588"]],[31,34,["H2896"]]]},{"k":21,"v":[[0,2,["H430"]],[2,3,["H1288"]],[3,5,["H559"]],[5,7,["H6509"]],[7,9,["H7235"]],[9,11,["H4390","(H853)"]],[11,13,["H4325"]],[13,16,["H3220"]],[16,19,["H5775"]],[19,20,["H7235"]],[20,23,["H776"]]]},{"k":22,"v":[[0,3,["H6153"]],[3,6,["H1242"]],[6,7,["H1961"]],[7,9,["H2549"]],[9,10,["H3117"]]]},{"k":23,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,6,["H776"]],[6,8,["H3318"]],[8,10,["H2416"]],[10,11,["H5315"]],[11,14,["H4327"]],[14,15,["H929"]],[15,18,["H7431"]],[18,20,["H2416"]],[20,23,["H776"]],[23,26,["H4327"]],[26,29,["H1961"]],[29,30,["H3651"]]]},{"k":24,"v":[[0,2,["H430"]],[2,3,["H6213","(H853)"]],[3,5,["H2416"]],[5,8,["H776"]],[8,11,["H4327"]],[11,13,["H929"]],[13,16,["H4327"]],[16,19,["H3605"]],[19,21,["H7431"]],[21,24,["H127"]],[24,27,["H4327"]],[27,29,["H430"]],[29,30,["H7200"]],[30,31,["H3588"]],[31,34,["H2896"]]]},{"k":25,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,6,["H6213"]],[6,7,["H120"]],[7,10,["H6754"]],[10,13,["H1823"]],[13,18,["H7287"]],[18,21,["H1710"]],[21,24,["H3220"]],[24,28,["H5775"]],[28,31,["H8064"]],[31,35,["H929"]],[35,38,["H3605"]],[38,40,["H776"]],[40,43,["H3605"]],[43,45,["H7431"]],[45,47,["H7430"]],[47,48,["H5921"]],[48,50,["H776"]]]},{"k":26,"v":[[0,2,["H430"]],[2,3,["H1254","(H853)"]],[3,4,["H120"]],[4,8,["H6754"]],[8,11,["H6754"]],[11,13,["H430"]],[13,14,["H1254"]],[14,17,["H2145"]],[17,19,["H5347"]],[19,20,["H1254"]],[20,22,[]]]},{"k":27,"v":[[0,2,["H430"]],[2,3,["H1288"]],[3,6,["H430"]],[6,7,["H559"]],[7,11,["H6509"]],[11,13,["H7235"]],[13,15,["H4390","(H853)"]],[15,17,["H776"]],[17,19,["H3533"]],[19,23,["H7287"]],[23,26,["H1710"]],[26,29,["H3220"]],[29,33,["H5775"]],[33,36,["H8064"]],[36,39,["H3605"]],[39,41,["H2416"]],[41,43,["H7430"]],[43,44,["H5921"]],[44,46,["H776"]]]},{"k":28,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H2009"]],[4,7,["H5414"]],[7,8,["(H853)"]],[8,9,["H3605"]],[9,10,["H6212"]],[10,11,["H2232"]],[11,12,["H2233"]],[12,13,["H834"]],[13,15,["H5921"]],[15,17,["H6440"]],[17,19,["H3605"]],[19,21,["H776"]],[21,23,["H3605"]],[23,24,["H6086"]],[24,27,["H834"]],[27,30,["H6529"]],[30,33,["H6086"]],[33,34,["H2232"]],[34,35,["H2233"]],[35,40,["H1961"]],[40,42,["H402"]]]},{"k":29,"v":[[0,3,["H3605"]],[3,4,["H2416"]],[4,7,["H776"]],[7,10,["H3605"]],[10,11,["H5775"]],[11,14,["H8064"]],[14,18,["H3605"]],[18,20,["H7430"]],[20,21,["H5921"]],[21,23,["H776"]],[23,24,["H834"]],[24,27,["H5315","H2416"]],[27,30,["(H853)"]],[30,31,["H3605"]],[31,32,["H3418"]],[32,33,["H6212"]],[33,35,["H402"]],[35,38,["H1961"]],[38,39,["H3651"]]]},{"k":30,"v":[[0,2,["H430"]],[2,3,["H7200","(H853)"]],[3,5,["H3605"]],[5,6,["H834"]],[6,9,["H6213"]],[9,11,["H2009"]],[11,14,["H3966"]],[14,15,["H2896"]],[15,18,["H6153"]],[18,21,["H1242"]],[21,22,["H1961"]],[22,24,["H8345"]],[24,25,["H3117"]]]},{"k":31,"v":[[0,3,["H8064"]],[3,6,["H776"]],[6,8,["H3615"]],[8,10,["H3605"]],[10,12,["H6635"]],[12,14,[]]]},{"k":32,"v":[[0,4,["H7637"]],[4,5,["H3117"]],[5,6,["H430"]],[6,7,["H3615"]],[7,9,["H4399"]],[9,10,["H834"]],[10,13,["H6213"]],[13,16,["H7673"]],[16,19,["H7637"]],[19,20,["H3117"]],[20,22,["H4480","H3605"]],[22,24,["H4399"]],[24,25,["H834"]],[25,28,["H6213"]]]},{"k":33,"v":[[0,2,["H430"]],[2,3,["H1288","(H853)"]],[3,5,["H7637"]],[5,6,["H3117"]],[6,8,["H6942"]],[8,10,["H3588"]],[10,16,["H7673"]],[16,18,["H4480","H3605"]],[18,20,["H4399"]],[20,21,["H834"]],[21,22,["H430"]],[22,23,["H1254"]],[23,25,["H6213"]]]},{"k":34,"v":[[0,1,["H428"]],[1,4,["H8435"]],[4,7,["H8064"]],[7,11,["H776"]],[11,15,["H1254"]],[15,18,["H3117"]],[18,21,["H3068"]],[21,22,["H430"]],[22,23,["H6213"]],[23,25,["H776"]],[25,28,["H8064"]]]},{"k":35,"v":[[0,2,["H3605"]],[2,3,["H7880"]],[3,6,["H7704"]],[6,7,["H2962"]],[7,9,["H1961"]],[9,12,["H776"]],[12,14,["H3605"]],[14,15,["H6212"]],[15,18,["H7704"]],[18,19,["H2962"]],[19,21,["H6779"]],[21,22,["H3588"]],[22,24,["H3068"]],[24,25,["H430"]],[25,27,["H3808"]],[27,31,["H4305"]],[31,32,["H5921"]],[32,34,["H776"]],[34,38,["H369"]],[38,40,["H120"]],[40,42,["H5647","(H853)"]],[42,44,["H127"]]]},{"k":36,"v":[[0,4,["H5927"]],[4,6,["H108"]],[6,7,["H4480"]],[7,9,["H776"]],[9,11,["H8248","(H853)"]],[11,13,["H3605"]],[13,14,["H6440"]],[14,17,["H127"]]]},{"k":37,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,5,["H3335","(H853)"]],[5,6,["H120"]],[6,9,["H6083"]],[9,10,["H4480"]],[10,12,["H127"]],[12,14,["H5301"]],[14,17,["H639"]],[17,19,["H5397"]],[19,21,["H2416"]],[21,23,["H120"]],[23,24,["H1961"]],[24,26,["H2416"]],[26,27,["H5315"]]]},{"k":38,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,5,["H5193"]],[5,7,["H1588"]],[7,8,["H4480","H6924"]],[8,10,["H5731"]],[10,12,["H8033"]],[12,14,["H7760","(H853)"]],[14,16,["H120"]],[16,17,["H834"]],[17,20,["H3335"]]]},{"k":39,"v":[[0,3,["H4480"]],[3,5,["H127"]],[5,8,["H3068"]],[8,9,["H430"]],[9,11,["H6779"]],[11,12,["H3605"]],[12,13,["H6086"]],[13,16,["H2530"]],[16,19,["H4758"]],[19,21,["H2896"]],[21,23,["H3978"]],[23,25,["H6086"]],[25,27,["H2416"]],[27,31,["H8432"]],[31,34,["H1588"]],[34,37,["H6086"]],[37,39,["H1847"]],[39,41,["H2896"]],[41,43,["H7451"]]]},{"k":40,"v":[[0,3,["H5104"]],[3,5,["H3318"]],[5,7,["H4480","H5731"]],[7,9,["H8248","(H853)"]],[9,11,["H1588"]],[11,14,["H4480","H8033"]],[14,17,["H6504"]],[17,19,["H1961"]],[19,21,["H702"]],[21,22,["H7218"]]]},{"k":41,"v":[[0,2,["H8034"]],[2,5,["H259"]],[5,7,["H6376"]],[7,10,["H1931"]],[10,12,["H5437","(H853)"]],[12,14,["H3605"]],[14,15,["H776"]],[15,17,["H2341"]],[17,18,["H834","H8033"]],[18,21,["H2091"]]]},{"k":42,"v":[[0,3,["H2091"]],[3,5,["H1931"]],[5,6,["H776"]],[6,8,["H2896"]],[8,9,["H8033"]],[9,11,["H916"]],[11,14,["H7718"]],[14,15,["H68"]]]},{"k":43,"v":[[0,3,["H8034"]],[3,6,["H8145"]],[6,7,["H5104"]],[7,9,["H1521"]],[9,11,["H1931"]],[11,15,["H5437","(H853)"]],[15,17,["H3605"]],[17,18,["H776"]],[18,20,["H3568"]]]},{"k":44,"v":[[0,3,["H8034"]],[3,6,["H7992"]],[6,7,["H5104"]],[7,9,["H2313"]],[9,12,["H1931"]],[12,14,["H1980"]],[14,17,["H6926"]],[17,19,["H804"]],[19,22,["H7243"]],[22,23,["H5104"]],[23,25,["H6578"]]]},{"k":45,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,5,["H3947","(H853)"]],[5,7,["H120"]],[7,9,["H5117"]],[9,13,["H1588"]],[13,15,["H5731"]],[15,17,["H5647"]],[17,21,["H8104"]],[21,22,[]]]},{"k":46,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,5,["H6680","H5921"]],[5,7,["H120"]],[7,8,["H559"]],[8,10,["H4480","H3605"]],[10,11,["H6086"]],[11,14,["H1588"]],[14,18,["H398","H398"]]]},{"k":47,"v":[[0,4,["H4480","H6086"]],[4,7,["H1847"]],[7,9,["H2896"]],[9,11,["H7451"]],[11,14,["H3808"]],[14,15,["H398"]],[15,16,["H4480"]],[16,18,["H3588"]],[18,21,["H3117"]],[21,24,["H398"]],[24,25,["H4480"]],[25,29,["H4191","H4191"]]]},{"k":48,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,5,["H559"]],[5,8,["H3808"]],[8,9,["H2896"]],[9,12,["H120"]],[12,14,["H1961"]],[14,15,["H905"]],[15,18,["H6213"]],[18,21,["H5828"]],[21,24,["H5048"]]]},{"k":49,"v":[[0,3,["H4480"]],[3,5,["H127"]],[5,7,["H3068"]],[7,8,["H430"]],[8,9,["H3335"]],[9,10,["H3605"]],[10,11,["H2416"]],[11,14,["H7704"]],[14,16,["H3605"]],[16,17,["H5775"]],[17,20,["H8064"]],[20,22,["H935"]],[22,24,["H413"]],[24,25,["H121"]],[25,27,["H7200"]],[27,28,["H4100"]],[28,31,["H7121"]],[31,34,["H3605","H834"]],[34,35,["H121"]],[35,36,["H7121"]],[36,38,["H2416"]],[38,39,["H5315"]],[39,40,["H1931"]],[40,43,["H8034"]],[43,44,[]]]},{"k":50,"v":[[0,2,["H121"]],[2,3,["H7121"]],[3,4,["H8034"]],[4,6,["H3605"]],[6,7,["H929"]],[7,11,["H5775"]],[11,14,["H8064"]],[14,17,["H3605"]],[17,18,["H2416"]],[18,21,["H7704"]],[21,24,["H121"]],[24,27,["H3808"]],[27,28,["H4672"]],[28,30,["H5828"]],[30,33,["H5048"]]]},{"k":51,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,8,["H8639"]],[8,10,["H5307"]],[10,11,["H5921"]],[11,12,["H121"]],[12,15,["H3462"]],[15,18,["H3947"]],[18,19,["H259"]],[19,22,["H4480","H6763"]],[22,25,["H5462"]],[25,27,["H1320"]],[27,28,["H8478"]],[28,29,[]]]},{"k":52,"v":[[0,1,["(H853)"]],[1,3,["H6763"]],[3,4,["H834"]],[4,6,["H3068"]],[6,7,["H430"]],[7,9,["H3947"]],[9,10,["H4480"]],[10,11,["H120"]],[11,12,["H1129"]],[12,15,["H802"]],[15,17,["H935"]],[17,19,["H413"]],[19,21,["H120"]]]},{"k":53,"v":[[0,2,["H121"]],[2,3,["H559"]],[3,4,["H2063"]],[4,6,["H6471"]],[6,7,["H6106"]],[7,10,["H4480","H6106"]],[10,12,["H1320"]],[12,15,["H4480","H1320"]],[15,16,["H2063"]],[16,19,["H7121"]],[19,20,["H802"]],[20,21,["H3588"]],[21,22,["H2063"]],[22,24,["H3947"]],[24,27,["H4480","H376"]]]},{"k":54,"v":[[0,1,["H5921","H3651"]],[1,4,["H376"]],[4,5,["H5800","(H853)"]],[5,7,["H1"]],[7,10,["H517"]],[10,13,["H1692"]],[13,16,["H802"]],[16,20,["H1961"]],[20,21,["H259"]],[21,22,["H1320"]]]},{"k":55,"v":[[0,3,["H1961"]],[3,4,["H8147"]],[4,5,["H6174"]],[5,7,["H120"]],[7,10,["H802"]],[10,13,["H3808"]],[13,14,["H954"]]]},{"k":56,"v":[[0,3,["H5175"]],[3,4,["H1961"]],[4,6,["H6175"]],[6,8,["H4480","H3605"]],[8,9,["H2416"]],[9,12,["H7704"]],[12,13,["H834"]],[13,15,["H3068"]],[15,16,["H430"]],[16,18,["H6213"]],[18,21,["H559"]],[21,22,["H413"]],[22,24,["H802"]],[24,25,["H637","H3588"]],[25,27,["H430"]],[27,28,["H559"]],[28,31,["H3808"]],[31,32,["H398"]],[32,34,["H4480","H3605"]],[34,35,["H6086"]],[35,38,["H1588"]]]},{"k":57,"v":[[0,3,["H802"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H5175"]],[7,10,["H398"]],[10,13,["H4480","H6529"]],[13,16,["H6086"]],[16,19,["H1588"]]]},{"k":58,"v":[[0,4,["H4480","H6529"]],[4,7,["H6086"]],[7,8,["H834"]],[8,12,["H8432"]],[12,15,["H1588"]],[15,16,["H430"]],[16,18,["H559"]],[18,21,["H3808"]],[21,22,["H398"]],[22,23,["H4480"]],[23,25,["H3808"]],[25,28,["H5060"]],[28,30,["H6435"]],[30,32,["H4191"]]]},{"k":59,"v":[[0,3,["H5175"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H802"]],[7,10,["H3808"]],[10,12,["H4191","H4191"]]]},{"k":60,"v":[[0,1,["H3588"]],[1,2,["H430"]],[2,4,["H3045"]],[4,5,["H3588"]],[5,8,["H3117"]],[8,10,["H398"]],[10,11,["H4480"]],[11,14,["H5869"]],[14,17,["H6491"]],[17,21,["H1961"]],[21,23,["H430"]],[23,24,["H3045"]],[24,25,["H2896"]],[25,27,["H7451"]]]},{"k":61,"v":[[0,4,["H802"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,8,["H6086"]],[8,10,["H2896"]],[10,12,["H3978"]],[12,14,["H3588"]],[14,15,["H1931"]],[15,17,["H8378"]],[17,20,["H5869"]],[20,23,["H6086"]],[23,26,["H2530"]],[26,30,["H7919"]],[30,32,["H3947"]],[32,35,["H4480","H6529"]],[35,39,["H398"]],[39,41,["H5414"]],[41,42,["H1571"]],[42,45,["H376"]],[45,46,["H5973"]],[46,51,["H398"]]]},{"k":62,"v":[[0,3,["H5869"]],[3,6,["H8147"]],[6,8,["H6491"]],[8,11,["H3045"]],[11,12,["H3588"]],[12,13,["H1992"]],[13,15,["H5903"]],[15,18,["H8609"]],[18,19,["H8384"]],[19,20,["H5929"]],[20,23,["H6213"]],[23,25,["H2290"]]]},{"k":63,"v":[[0,3,["H8085","(H853)"]],[3,5,["H6963"]],[5,8,["H3068"]],[8,9,["H430"]],[9,10,["H1980"]],[10,13,["H1588"]],[13,16,["H7307"]],[16,19,["H3117"]],[19,21,["H121"]],[21,24,["H802"]],[24,26,["H2244"]],[26,29,["H4480","H6440"]],[29,32,["H3068"]],[32,33,["H430"]],[33,34,["H8432"]],[34,36,["H6086"]],[36,39,["H1588"]]]},{"k":64,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,5,["H7121"]],[5,6,["H413"]],[6,7,["H121"]],[7,9,["H559"]],[9,12,["H335"]],[12,14,[]]]},{"k":65,"v":[[0,3,["H559"]],[3,5,["H8085","(H853)"]],[5,7,["H6963"]],[7,10,["H1588"]],[10,14,["H3372"]],[14,15,["H3588"]],[15,16,["H595"]],[16,18,["H5903"]],[18,22,["H2244"]]]},{"k":66,"v":[[0,3,["H559"]],[3,4,["H4310"]],[4,5,["H5046"]],[5,7,["H3588"]],[7,8,["H859"]],[8,10,["H5903"]],[10,13,["H398"]],[13,14,["H4480"]],[14,16,["H6086"]],[16,17,["H834","H4480"]],[17,19,["H6680"]],[19,24,["H1115"]],[24,25,["H398"]]]},{"k":67,"v":[[0,3,["H120"]],[3,4,["H559"]],[4,6,["H802"]],[6,7,["H834"]],[7,9,["H5414"]],[9,12,["H5973"]],[12,14,["H1931"]],[14,15,["H5414"]],[15,17,["H4480"]],[17,19,["H6086"]],[19,23,["H398"]]]},{"k":68,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,5,["H559"]],[5,8,["H802"]],[8,9,["H4100"]],[9,11,["H2063"]],[11,15,["H6213"]],[15,18,["H802"]],[18,19,["H559"]],[19,21,["H5175"]],[21,22,["H5377"]],[22,27,["H398"]]]},{"k":69,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,5,["H559"]],[5,6,["H413"]],[6,8,["H5175"]],[8,9,["H3588"]],[9,12,["H6213"]],[12,13,["H2063"]],[13,14,["H859"]],[14,16,["H779"]],[16,18,["H4480","H3605"]],[18,19,["H929"]],[19,22,["H4480","H3605"]],[22,23,["H2416"]],[23,26,["H7704"]],[26,27,["H5921"]],[27,29,["H1512"]],[29,32,["H1980"]],[32,34,["H6083"]],[34,37,["H398"]],[37,38,["H3605"]],[38,40,["H3117"]],[40,43,["H2416"]]]},{"k":70,"v":[[0,4,["H7896"]],[4,5,["H342"]],[5,6,["H996"]],[6,10,["H802"]],[10,12,["H996"]],[12,14,["H2233"]],[14,17,["H2233"]],[17,18,["H1931"]],[18,20,["H7779"]],[20,22,["H7218"]],[22,24,["H859"]],[24,26,["H7779"]],[26,28,["H6119"]]]},{"k":71,"v":[[0,1,["H413"]],[1,3,["H802"]],[3,5,["H559"]],[5,8,["H7235"]],[8,9,["H7235"]],[9,11,["H6093"]],[11,14,["H2032"]],[14,16,["H6089"]],[16,20,["H3205"]],[20,21,["H1121"]],[21,24,["H8669"]],[24,27,["H413"]],[27,29,["H376"]],[29,31,["H1931"]],[31,33,["H4910"]],[33,35,[]]]},{"k":72,"v":[[0,3,["H121"]],[3,5,["H559"]],[5,6,["H3588"]],[6,9,["H8085"]],[9,12,["H6963"]],[12,15,["H802"]],[15,18,["H398"]],[18,19,["H4480"]],[19,21,["H6086"]],[21,23,["H834"]],[23,25,["H6680"]],[25,27,["H559"]],[27,30,["H3808"]],[30,31,["H398"]],[31,32,["H4480"]],[32,34,["H779"]],[34,37,["H127"]],[37,40,["H5668"]],[40,42,["H6093"]],[42,45,["H398"]],[45,48,["H3605"]],[48,50,["H3117"]],[50,53,["H2416"]]]},{"k":73,"v":[[0,1,["H6975"]],[1,4,["H1863"]],[4,8,["H6779"]],[8,14,["H398","(H853)"]],[14,16,["H6212"]],[16,19,["H7704"]]]},{"k":74,"v":[[0,3,["H2188"]],[3,6,["H639"]],[6,9,["H398"]],[9,10,["H3899"]],[10,11,["H5704"]],[11,13,["H7725"]],[13,14,["H413"]],[14,16,["H127"]],[16,17,["H3588"]],[17,19,["H4480"]],[19,23,["H3947"]],[23,24,["H3588"]],[24,25,["H6083"]],[25,26,["H859"]],[26,29,["H413"]],[29,30,["H6083"]],[30,33,["H7725"]]]},{"k":75,"v":[[0,2,["H121"]],[2,3,["H7121"]],[3,5,["H802"]],[5,6,["H8034"]],[6,7,["H2332"]],[7,8,["H3588"]],[8,9,["H1931"]],[9,10,["H1961"]],[10,12,["H517"]],[12,14,["H3605"]],[14,15,["H2416"]]]},{"k":76,"v":[[0,2,["H121"]],[2,7,["H802"]],[7,10,["H3068"]],[10,11,["H430"]],[11,12,["H6213"]],[12,13,["H3801"]],[13,15,["H5785"]],[15,17,["H3847"]],[17,18,[]]]},{"k":77,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,5,["H559"]],[5,6,["H2005"]],[6,8,["H120"]],[8,10,["H1961"]],[10,12,["H259"]],[12,13,["H4480"]],[13,16,["H3045"]],[16,17,["H2896"]],[17,19,["H7451"]],[19,21,["H6258"]],[21,22,["H6435"]],[22,25,["H7971"]],[25,27,["H3027"]],[27,29,["H3947"]],[29,30,["H1571"]],[30,33,["H4480","H6086"]],[33,35,["H2416"]],[35,37,["H398"]],[37,39,["H2425"]],[39,41,["H5769"]]]},{"k":78,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,7,["H7971"]],[7,10,["H4480","H1588"]],[10,12,["H5731"]],[12,14,["H5647","(H853)"]],[14,16,["H127"]],[16,18,["H4480","H8033","H834"]],[18,21,["H3947"]]]},{"k":79,"v":[[0,4,["H1644","(H853)"]],[4,6,["H120"]],[6,9,["H7931"]],[9,12,["H4480","H6924"]],[12,15,["H1588"]],[15,17,["H5731","(H853)"]],[17,18,["H3742"]],[18,21,["H3858"]],[21,22,["H2719"]],[22,26,["H2015"]],[26,28,["H8104","(H853)"]],[28,30,["H1870"]],[30,33,["H6086"]],[33,35,["H2416"]]]},{"k":80,"v":[[0,2,["H121"]],[2,3,["H3045","(H853)"]],[3,4,["H2332"]],[4,6,["H802"]],[6,9,["H2029"]],[9,11,["H3205","(H853)"]],[11,12,["H7014"]],[12,14,["H559"]],[14,17,["H7069"]],[17,19,["H376"]],[19,20,["H854"]],[20,22,["H3068"]]]},{"k":81,"v":[[0,3,["H3254"]],[3,4,["H3205","(H853)"]],[4,6,["H251","(H853)"]],[6,7,["H1893"]],[7,9,["H1893"]],[9,10,["H1961"]],[10,12,["H7462"]],[12,14,["H6629"]],[14,16,["H7014"]],[16,17,["H1961"]],[17,19,["H5647"]],[19,22,["H127"]]]},{"k":82,"v":[[0,3,["H4480","H7093"]],[3,5,["H3117"]],[5,9,["H1961"]],[9,11,["H7014"]],[11,12,["H935"]],[12,15,["H4480","H6529"]],[15,18,["H127"]],[18,20,["H4503"]],[20,23,["H3068"]]]},{"k":83,"v":[[0,2,["H1893"]],[2,3,["H1931"]],[3,4,["H1571"]],[4,5,["H935"]],[5,8,["H4480","H1062"]],[8,11,["H6629"]],[11,15,["H4480","H2459"]],[15,19,["H3068"]],[19,21,["H8159"]],[21,22,["H413"]],[22,23,["H1893"]],[23,25,["H413"]],[25,27,["H4503"]]]},{"k":84,"v":[[0,2,["H413"]],[2,3,["H7014"]],[3,5,["H413"]],[5,7,["H4503"]],[7,11,["H8159","H3808"]],[11,13,["H7014"]],[13,15,["H3966"]],[15,16,["H2734"]],[16,19,["H6440"]],[19,20,["H5307"]]]},{"k":85,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H7014"]],[6,7,["H4100"]],[7,10,["H2734"]],[10,12,["H4100"]],[12,15,["H6440"]],[15,16,["H5307"]]]},{"k":86,"v":[[0,1,["H518"]],[1,4,["H3190"]],[4,7,["H3808"]],[7,9,["H7613"]],[9,11,["H518"]],[11,14,["H3808"]],[14,15,["H3190"]],[15,16,["H2403"]],[16,17,["H7257"]],[17,20,["H6607"]],[20,22,["H413"]],[22,27,["H8669"]],[27,29,["H859"]],[29,31,["H4910"]],[31,33,[]]]},{"k":87,"v":[[0,2,["H7014"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1893"]],[5,7,["H251"]],[7,12,["H1961"]],[12,15,["H1961"]],[15,18,["H7704"]],[18,20,["H7014"]],[20,22,["H6965"]],[22,23,["H413"]],[23,24,["H1893"]],[24,26,["H251"]],[26,28,["H2026"]],[28,29,[]]]},{"k":88,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H7014"]],[6,7,["H335"]],[7,9,["H1893"]],[9,11,["H251"]],[11,14,["H559"]],[14,16,["H3045"]],[16,17,["H3808"]],[17,19,["H595"]],[19,21,["H251"]],[21,22,["H8104"]]]},{"k":89,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,7,["H6213"]],[7,9,["H6963"]],[9,12,["H251"]],[12,13,["H1818"]],[13,14,["H6817"]],[14,15,["H413"]],[15,17,["H4480"]],[17,19,["H127"]]]},{"k":90,"v":[[0,2,["H6258"]],[2,4,["H859"]],[4,5,["H779"]],[5,6,["H4480"]],[6,8,["H127"]],[8,9,["H834"]],[9,11,["H6475","(H853)"]],[11,13,["H6310"]],[13,15,["H3947"]],[15,17,["H251","(H853)"]],[17,18,["H1818"]],[18,21,["H4480","H3027"]]]},{"k":91,"v":[[0,1,["H3588"]],[1,3,["H5647","(H853)"]],[3,5,["H127"]],[5,8,["H3808"]],[8,9,["H3254"]],[9,10,["H5414"]],[10,14,["H3581"]],[14,16,["H5128"]],[16,19,["H5110"]],[19,22,["H1961"]],[22,25,["H776"]]]},{"k":92,"v":[[0,2,["H7014"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H5771"]],[8,10,["H1419"]],[10,14,["H4480","H5375"]]]},{"k":93,"v":[[0,1,["H2005"]],[1,6,["H1644","(H853)"]],[6,8,["H3117"]],[8,9,["H4480","H5921"]],[9,11,["H6440"]],[11,14,["H127"]],[14,18,["H4480","H6440"]],[18,22,["H5641"]],[22,26,["H1961"]],[26,28,["H5128"]],[28,31,["H5110"]],[31,34,["H776"]],[34,40,["H1961"]],[40,43,["H3605"]],[43,45,["H4672"]],[45,48,["H2026"]],[48,49,[]]]},{"k":94,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,7,["H3651"]],[7,8,["H3605"]],[8,9,["H2026"]],[9,10,["H7014"]],[10,14,["H5358"]],[14,17,["H7659"]],[17,20,["H3068"]],[20,21,["H7760"]],[21,23,["H226"]],[23,25,["H7014"]],[25,26,["H1115"]],[26,27,["H3605"]],[27,28,["H4672"]],[28,31,["H5221"]],[31,32,[]]]},{"k":95,"v":[[0,2,["H7014"]],[2,4,["H3318"]],[4,7,["H4480","H6440"]],[7,10,["H3068"]],[10,12,["H3427"]],[12,15,["H776"]],[15,17,["H5113"]],[17,20,["H6926"]],[20,22,["H5731"]]]},{"k":96,"v":[[0,2,["H7014"]],[2,3,["H3045","(H853)"]],[3,5,["H802"]],[5,8,["H2029"]],[8,10,["H3205","(H853)"]],[10,11,["H2585"]],[11,14,["H1961","H1129"]],[14,16,["H5892"]],[16,18,["H7121"]],[18,20,["H8034"]],[20,23,["H5892"]],[23,26,["H8034"]],[26,29,["H1121"]],[29,30,["H2585"]]]},{"k":97,"v":[[0,3,["H2585"]],[3,5,["H3205","(H853)"]],[5,6,["H5897"]],[6,8,["H5897"]],[8,9,["H3205","(H853)"]],[9,10,["H4232"]],[10,12,["H4232"]],[12,13,["H3205","(H853)"]],[13,14,["H4967"]],[14,16,["H4967"]],[16,17,["H3205","(H853)"]],[17,18,["H3929"]]]},{"k":98,"v":[[0,2,["H3929"]],[2,3,["H3947"]],[3,6,["H8147"]],[6,7,["H802"]],[7,9,["H8034"]],[9,12,["H259"]],[12,14,["H5711"]],[14,17,["H8034"]],[17,20,["H8145"]],[20,21,["H6741"]]]},{"k":99,"v":[[0,2,["H5711"]],[2,3,["H3205","(H853)"]],[3,4,["H2989"]],[4,5,["H1931"]],[5,6,["H1961"]],[6,8,["H1"]],[8,12,["H3427"]],[12,14,["H168"]],[14,20,["H4735"]]]},{"k":100,"v":[[0,3,["H251"]],[3,4,["H8034"]],[4,6,["H3106"]],[6,7,["H1931"]],[7,8,["H1961"]],[8,10,["H1"]],[10,12,["H3605"]],[12,15,["H8610"]],[15,17,["H3658"]],[17,19,["H5748"]]]},{"k":101,"v":[[0,2,["H6741"]],[2,3,["H1931"]],[3,4,["H1571"]],[4,5,["H3205","(H853)"]],[5,6,["H8423"]],[6,8,["H3913"]],[8,10,["H3605"]],[10,11,["H2794"]],[11,13,["H5178"]],[13,15,["H1270"]],[15,18,["H269"]],[18,20,["H8423"]],[20,22,["H5279"]]]},{"k":102,"v":[[0,2,["H3929"]],[2,3,["H559"]],[3,6,["H802"]],[6,7,["H5711"]],[7,9,["H6741"]],[9,10,["H8085"]],[10,12,["H6963"]],[12,14,["H802"]],[14,16,["H3929"]],[16,17,["H238"]],[17,20,["H565"]],[20,21,["H3588"]],[21,24,["H2026"]],[24,26,["H376"]],[26,29,["H6482"]],[29,33,["H3206"]],[33,36,["H2250"]]]},{"k":103,"v":[[0,1,["H3588"]],[1,2,["H7014"]],[2,5,["H5358"]],[5,6,["H7659"]],[6,8,["H3929"]],[8,9,["H7657"]],[9,11,["H7651"]]]},{"k":104,"v":[[0,2,["H121"]],[2,3,["H3045","(H853)"]],[3,5,["H802"]],[5,6,["H5750"]],[6,9,["H3205"]],[9,11,["H1121"]],[11,13,["H7121"]],[13,14,["(H853)"]],[14,15,["H8034"]],[15,16,["H8352"]],[16,17,["H3588"]],[17,18,["H430"]],[18,22,["H7896"]],[22,24,["H312"]],[24,25,["H2233"]],[25,27,["H8478"]],[27,28,["H1893"]],[28,30,["H7014"]],[30,31,["H2026"]]]},{"k":105,"v":[[0,3,["H8352"]],[3,5,["H1931"]],[5,6,["H1571"]],[6,9,["H3205"]],[9,11,["H1121"]],[11,14,["H7121","(H853)"]],[14,16,["H8034"]],[16,17,["H583"]],[17,18,["H227"]],[18,19,["H2490"]],[19,22,["H7121"]],[22,25,["H8034"]],[25,28,["H3068"]]]},{"k":106,"v":[[0,1,["H2088"]],[1,4,["H5612"]],[4,7,["H8435"]],[7,9,["H121"]],[9,12,["H3117"]],[12,14,["H430"]],[14,15,["H1254"]],[15,16,["H120"]],[16,19,["H1823"]],[19,21,["H430"]],[21,22,["H6213"]],[22,24,[]]]},{"k":107,"v":[[0,1,["H2145"]],[1,3,["H5347"]],[3,4,["H1254"]],[4,8,["H1288"]],[8,11,["H7121","(H853)"]],[11,13,["H8034"]],[13,14,["H121"]],[14,17,["H3117"]],[17,21,["H1254"]]]},{"k":108,"v":[[0,2,["H121"]],[2,3,["H2421"]],[3,5,["H3967"]],[5,7,["H7970"]],[7,8,["H8141"]],[8,10,["H3205"]],[10,16,["H1823"]],[16,19,["H6754"]],[19,21,["H7121","(H853)"]],[21,23,["H8034"]],[23,24,["H8352"]]]},{"k":109,"v":[[0,3,["H3117"]],[3,5,["H121"]],[5,6,["H310"]],[6,9,["H3205","(H853)"]],[9,10,["H8352"]],[10,11,["H1961"]],[11,12,["H8083"]],[12,13,["H3967"]],[13,14,["H8141"]],[14,17,["H3205"]],[17,18,["H1121"]],[18,20,["H1323"]]]},{"k":110,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,5,["H834"]],[5,6,["H121"]],[6,7,["H2425"]],[7,8,["H1961"]],[8,9,["H8672"]],[9,10,["H3967"]],[10,12,["H7970"]],[12,13,["H8141"]],[13,16,["H4191"]]]},{"k":111,"v":[[0,2,["H8352"]],[2,3,["H2421"]],[3,5,["H3967"]],[5,7,["H2568"]],[7,8,["H8141"]],[8,10,["H3205","(H853)"]],[10,11,["H583"]]]},{"k":112,"v":[[0,2,["H8352"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H583"]],[7,8,["H8083"]],[8,9,["H3967"]],[9,11,["H7651"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":113,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,6,["H8352"]],[6,7,["H1961"]],[7,8,["H8672"]],[8,9,["H3967"]],[9,11,["H8147","H6240"]],[11,12,["H8141"]],[12,15,["H4191"]]]},{"k":114,"v":[[0,2,["H583"]],[2,3,["H2421"]],[3,4,["H8673"]],[4,5,["H8141"]],[5,7,["H3205","(H853)"]],[7,8,["H7018"]]]},{"k":115,"v":[[0,2,["H583"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H7018"]],[7,8,["H8083"]],[8,9,["H3967"]],[9,11,["H2568","H6240"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":116,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,6,["H583"]],[6,7,["H1961"]],[7,8,["H8672"]],[8,9,["H3967"]],[9,11,["H2568"]],[11,12,["H8141"]],[12,15,["H4191"]]]},{"k":117,"v":[[0,2,["H7018"]],[2,3,["H2421"]],[3,4,["H7657"]],[4,5,["H8141"]],[5,7,["H3205","(H853)"]],[7,8,["H4111"]]]},{"k":118,"v":[[0,2,["H7018"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H4111"]],[7,8,["H8083"]],[8,9,["H3967"]],[9,11,["H705"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":119,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,6,["H7018"]],[6,7,["H1961"]],[7,8,["H8672"]],[8,9,["H3967"]],[9,11,["H6235"]],[11,12,["H8141"]],[12,15,["H4191"]]]},{"k":120,"v":[[0,2,["H4111"]],[2,3,["H2421"]],[3,4,["H8346"]],[4,6,["H2568"]],[6,7,["H8141"]],[7,9,["H3205","(H853)"]],[9,10,["H3382"]]]},{"k":121,"v":[[0,2,["H4111"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H3382"]],[7,8,["H8083"]],[8,9,["H3967"]],[9,11,["H7970"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":122,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,6,["H4111"]],[6,7,["H1961"]],[7,8,["H8083"]],[8,9,["H3967"]],[9,10,["H8673"]],[10,12,["H2568"]],[12,13,["H8141"]],[13,16,["H4191"]]]},{"k":123,"v":[[0,2,["H3382"]],[2,3,["H2421"]],[3,5,["H3967"]],[5,6,["H8346"]],[6,8,["H8147"]],[8,9,["H8141"]],[9,12,["H3205","(H853)"]],[12,13,["H2585"]]]},{"k":124,"v":[[0,2,["H3382"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H2585"]],[7,8,["H8083"]],[8,9,["H3967"]],[9,10,["H8141"]],[10,12,["H3205"]],[12,13,["H1121"]],[13,15,["H1323"]]]},{"k":125,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,6,["H3382"]],[6,7,["H1961"]],[7,8,["H8672"]],[8,9,["H3967"]],[9,10,["H8346"]],[10,12,["H8147"]],[12,13,["H8141"]],[13,16,["H4191"]]]},{"k":126,"v":[[0,2,["H2585"]],[2,3,["H2421"]],[3,4,["H8346"]],[4,6,["H2568"]],[6,7,["H8141"]],[7,9,["H3205","(H853)"]],[9,10,["H4968"]]]},{"k":127,"v":[[0,2,["H2585"]],[2,3,["H1980"]],[3,4,["H854"]],[4,5,["H430"]],[5,6,["H310"]],[6,8,["H3205","(H853)"]],[8,9,["H4968"]],[9,10,["H7969"]],[10,11,["H3967"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":128,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,6,["H2585"]],[6,7,["H1961"]],[7,8,["H7969"]],[8,9,["H3967"]],[9,10,["H8346"]],[10,12,["H2568"]],[12,13,["H8141"]]]},{"k":129,"v":[[0,2,["H2585"]],[2,3,["H1980"]],[3,4,["H854"]],[4,5,["H430"]],[5,9,["H369"]],[9,10,["H3588"]],[10,11,["H430"]],[11,12,["H3947"]],[12,13,[]]]},{"k":130,"v":[[0,2,["H4968"]],[2,3,["H2421"]],[3,5,["H3967"]],[5,6,["H8084"]],[6,8,["H7651"]],[8,9,["H8141"]],[9,11,["H3205","(H853)"]],[11,12,["H3929"]]]},{"k":131,"v":[[0,2,["H4968"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H3929"]],[7,8,["H7651"]],[8,9,["H3967"]],[9,10,["H8084"]],[10,12,["H8147"]],[12,13,["H8141"]],[13,15,["H3205"]],[15,16,["H1121"]],[16,18,["H1323"]]]},{"k":132,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,6,["H4968"]],[6,7,["H1961"]],[7,8,["H8672"]],[8,9,["H3967"]],[9,10,["H8346"]],[10,12,["H8672"]],[12,13,["H8141"]],[13,16,["H4191"]]]},{"k":133,"v":[[0,2,["H3929"]],[2,3,["H2421"]],[3,5,["H3967"]],[5,6,["H8084"]],[6,8,["H8147"]],[8,9,["H8141"]],[9,11,["H3205"]],[11,13,["H1121"]]]},{"k":134,"v":[[0,3,["H7121","(H853)"]],[3,5,["H8034"]],[5,6,["H5146"]],[6,7,["H559"]],[7,8,["H2088"]],[8,11,["H5162"]],[11,15,["H4480","H4639"]],[15,17,["(H4480)","H6093"]],[17,20,["H3027"]],[20,22,["H4480"]],[22,24,["H127"]],[24,25,["H834"]],[25,27,["H3068"]],[27,29,["H779"]]]},{"k":135,"v":[[0,2,["H3929"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H5146"]],[7,8,["H2568"]],[8,9,["H3967"]],[9,10,["H8673"]],[10,12,["H2568"]],[12,13,["H8141"]],[13,15,["H3205"]],[15,16,["H1121"]],[16,18,["H1323"]]]},{"k":136,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,6,["H3929"]],[6,7,["H1961"]],[7,8,["H7651"]],[8,9,["H3967"]],[9,10,["H7657"]],[10,12,["H7651"]],[12,13,["H8141"]],[13,16,["H4191"]]]},{"k":137,"v":[[0,2,["H5146"]],[2,3,["H1961"]],[3,4,["H2568"]],[4,5,["H3967"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,9,["H5146"]],[9,10,["H3205","(H853)"]],[10,11,["H8035","(H853)"]],[11,12,["H2526"]],[12,14,["H3315"]]]},{"k":138,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,7,["H120"]],[7,8,["H2490"]],[8,10,["H7231"]],[10,11,["H5921"]],[11,13,["H6440"]],[13,16,["H127"]],[16,18,["H1323"]],[18,20,["H3205"]],[20,22,[]]]},{"k":139,"v":[[0,3,["H1121"]],[3,5,["H430"]],[5,6,["H7200","(H853)"]],[6,8,["H1323"]],[8,10,["H120"]],[10,11,["H3588"]],[11,12,["H2007"]],[12,14,["H2896"]],[14,17,["H3947"]],[17,19,["H802"]],[19,21,["H4480","H3605"]],[21,22,["H834"]],[22,24,["H977"]]]},{"k":140,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,6,["H7307"]],[6,8,["H3808"]],[8,9,["H5769"]],[9,10,["H1777"]],[10,12,["H120"]],[12,15,["H1931"]],[15,16,["H7945","H1571"]],[16,18,["H1320"]],[18,21,["H3117"]],[21,23,["H1961"]],[23,25,["H3967"]],[25,27,["H6242"]],[27,28,["H8141"]]]},{"k":141,"v":[[0,2,["H1961"]],[2,3,["H5303"]],[3,6,["H776"]],[6,8,["H1992"]],[8,9,["H3117"]],[9,11,["H1571"]],[11,12,["H310"]],[12,13,["H3651"]],[13,14,["H834"]],[14,16,["H1121"]],[16,18,["H430"]],[18,20,["H935"]],[20,21,["H413"]],[21,23,["H1323"]],[23,25,["H120"]],[25,28,["H3205"]],[28,33,["H1992"]],[33,36,["H1368"]],[36,37,["H834"]],[37,40,["H4480","H5769"]],[40,41,["H376"]],[41,43,["H8034"]]]},{"k":142,"v":[[0,2,["H3068"]],[2,3,["H7200"]],[3,4,["H3588"]],[4,6,["H7451"]],[6,8,["H120"]],[8,10,["H7227"]],[10,13,["H776"]],[13,16,["H3605"]],[16,17,["H3336"]],[17,20,["H4284"]],[20,23,["H3820"]],[23,25,["H7535"]],[25,26,["H7451"]],[26,27,["H3605","H3117"]]]},{"k":143,"v":[[0,3,["H5162"]],[3,5,["H3068"]],[5,6,["H3588"]],[6,9,["H6213","(H853)"]],[9,10,["H120"]],[10,13,["H776"]],[13,16,["H6087"]],[16,18,["H413"]],[18,20,["H3820"]]]},{"k":144,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,7,["H4229","(H853)"]],[7,8,["H120"]],[8,9,["H834"]],[9,12,["H1254"]],[12,13,["H4480","H5921"]],[13,15,["H6440"]],[15,18,["H127"]],[18,20,["H4480","H120"]],[20,21,["H5704"]],[21,22,["H929"]],[22,23,["H5704"]],[23,26,["H7431"]],[26,27,["H5704"]],[27,29,["H5775"]],[29,32,["H8064"]],[32,33,["H3588"]],[33,35,["H5162"]],[35,37,["H3588"]],[37,40,["H6213"]],[40,41,[]]]},{"k":145,"v":[[0,2,["H5146"]],[2,3,["H4672"]],[3,4,["H2580"]],[4,7,["H5869"]],[7,10,["H3068"]]]},{"k":146,"v":[[0,1,["H428"]],[1,4,["H8435"]],[4,6,["H5146"]],[6,7,["H5146"]],[7,8,["H1961"]],[8,10,["H6662"]],[10,11,["H376"]],[11,13,["H8549"]],[13,16,["H1755"]],[16,18,["H5146"]],[18,19,["H1980"]],[19,20,["H854"]],[20,21,["H430"]]]},{"k":147,"v":[[0,2,["H5146"]],[2,3,["H3205"]],[3,4,["H7969"]],[4,5,["H1121","(H853)"]],[5,6,["H8035","(H853)"]],[6,7,["H2526"]],[7,9,["H3315"]]]},{"k":148,"v":[[0,2,["H776"]],[2,5,["H7843"]],[5,6,["H6440"]],[6,7,["H430"]],[7,10,["H776"]],[10,12,["H4390"]],[12,14,["H2555"]]]},{"k":149,"v":[[0,2,["H430"]],[2,4,["H7200","(H853)"]],[4,6,["H776"]],[6,8,["H2009"]],[8,11,["H7843"]],[11,12,["H3588"]],[12,13,["H3605"]],[13,14,["H1320"]],[14,16,["H7843","(H853)"]],[16,18,["H1870"]],[18,19,["H5921"]],[19,21,["H776"]]]},{"k":150,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,5,["H5146"]],[5,7,["H7093"]],[7,9,["H3605"]],[9,10,["H1320"]],[10,12,["H935"]],[12,13,["H6440"]],[13,15,["H3588"]],[15,17,["H776"]],[17,19,["H4390"]],[19,21,["H2555"]],[21,23,["H4480","H6440"]],[23,25,["H2009"]],[25,28,["H7843"]],[28,30,["H854"]],[30,32,["H776"]]]},{"k":151,"v":[[0,1,["H6213"]],[1,4,["H8392"]],[4,6,["H1613"]],[6,7,["H6086"]],[7,8,["H7064"]],[8,11,["H6213","(H853)"]],[11,14,["H8392"]],[14,17,["H3722"]],[17,19,["H4480","H1004"]],[19,21,["H4480","H2351"]],[21,23,["H3724"]]]},{"k":152,"v":[[0,2,["H2088"]],[2,6,["H834"]],[6,9,["H6213"]],[9,13,["H753"]],[13,16,["H8392"]],[16,19,["H7969"]],[19,20,["H3967"]],[20,21,["H520"]],[21,23,["H7341"]],[23,26,["H2572"]],[26,27,["H520"]],[27,30,["H6967"]],[30,33,["H7970"]],[33,34,["H520"]]]},{"k":153,"v":[[0,2,["H6672"]],[2,5,["H6213"]],[5,8,["H8392"]],[8,10,["H413"]],[10,12,["H520"]],[12,15,["H3615"]],[15,17,["H4480","H4605"]],[17,20,["H6607"]],[20,23,["H8392"]],[23,26,["H7760"]],[26,29,["H6654"]],[29,32,["H8482"]],[32,33,["H8145"]],[33,35,["H7992"]],[35,39,["H6213"]],[39,40,[]]]},{"k":154,"v":[[0,2,["H2009"]],[2,5,["H589"]],[5,7,["H935","(H853)"]],[7,9,["H3999"]],[9,11,["H4325"]],[11,12,["H5921"]],[12,14,["H776"]],[14,16,["H7843"]],[16,17,["H3605"]],[17,18,["H1320"]],[18,19,["H834"]],[19,22,["H7307"]],[22,24,["H2416"]],[24,26,["H4480","H8478"]],[26,27,["H8064"]],[27,30,["H3605"]],[30,31,["H834"]],[31,35,["H776"]],[35,37,["H1478"]]]},{"k":155,"v":[[0,2,["H854"]],[2,6,["H6965","(H853)"]],[6,8,["H1285"]],[8,12,["H935"]],[12,13,["H413"]],[13,15,["H8392"]],[15,16,["H859"]],[16,19,["H1121"]],[19,22,["H802"]],[22,25,["H1121"]],[25,26,["H802"]],[26,27,["H854"]],[27,28,[]]]},{"k":156,"v":[[0,3,["H4480","H3605"]],[3,5,["H2416"]],[5,7,["H4480","H3605"]],[7,8,["H1320"]],[8,9,["H8147"]],[9,11,["H4480","H3605"]],[11,15,["H935"]],[15,16,["H413"]],[16,18,["H8392"]],[18,22,["H2421"]],[22,23,["H854"]],[23,27,["H1961"]],[27,28,["H2145"]],[28,30,["H5347"]]]},{"k":157,"v":[[0,2,["H4480","H5775"]],[2,5,["H4327"]],[5,7,["H4480"]],[7,8,["H929"]],[8,11,["H4327"]],[11,13,["H4480","H3605"]],[13,15,["H7431"]],[15,18,["H127"]],[18,21,["H4327"]],[21,22,["H8147"]],[22,24,["H4480","H3605"]],[24,27,["H935"]],[27,28,["H413"]],[28,33,["H2421"]]]},{"k":158,"v":[[0,2,["H3947"]],[2,3,["H859"]],[3,7,["H4480","H3605"]],[7,8,["H3978"]],[8,9,["H834"]],[9,11,["H398"]],[11,15,["H622"]],[15,17,["H413"]],[17,22,["H1961"]],[22,24,["H402"]],[24,29,[]]]},{"k":159,"v":[[0,2,["H6213"]],[2,3,["H5146"]],[3,6,["H3605"]],[6,7,["H834"]],[7,8,["H430"]],[8,9,["H6680"]],[9,11,["H3651"]],[11,12,["H6213"]],[12,13,[]]]},{"k":160,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,6,["H5146"]],[6,7,["H935"]],[7,8,["H859"]],[8,10,["H3605"]],[10,12,["H1004"]],[12,13,["H413"]],[13,15,["H8392"]],[15,16,["H3588"]],[16,20,["H7200"]],[20,21,["H6662"]],[21,22,["H6440"]],[22,25,["H2088"]],[25,26,["H1755"]]]},{"k":161,"v":[[0,2,["H4480","H3605"]],[2,3,["H2889"]],[3,4,["H929"]],[4,7,["H3947"]],[7,11,["H7651","H7651"]],[11,13,["H376"]],[13,16,["H802"]],[16,18,["H4480"]],[18,19,["H929"]],[19,20,["H834"]],[20,22,["H3808"]],[22,23,["H2889"]],[23,25,["H8147"]],[25,27,["H376"]],[27,30,["H802"]]]},{"k":162,"v":[[0,2,["H4480","H5775"]],[2,3,["H1571"]],[3,6,["H8064"]],[6,8,["H7651","H7651"]],[8,10,["H2145"]],[10,13,["H5347"]],[13,16,["H2233"]],[16,17,["H2421"]],[17,18,["H5921"]],[18,20,["H6440"]],[20,22,["H3605"]],[22,24,["H776"]]]},{"k":163,"v":[[0,1,["H3588"]],[1,2,["H5750"]],[2,3,["H7651"]],[3,4,["H3117"]],[4,6,["H595"]],[6,11,["H4305"]],[11,12,["H5921"]],[12,14,["H776"]],[14,15,["H705"]],[15,16,["H3117"]],[16,18,["H705"]],[18,19,["H3915"]],[19,20,["(H853)"]],[20,21,["H3605"]],[21,23,["H3351"]],[23,24,["H834"]],[24,27,["H6213"]],[27,30,["H4229"]],[30,32,["H4480","H5921"]],[32,34,["H6440"]],[34,37,["H127"]]]},{"k":164,"v":[[0,2,["H5146"]],[2,3,["H6213"]],[3,6,["H3605"]],[6,7,["H834"]],[7,9,["H3068"]],[9,10,["H6680"]],[10,11,[]]]},{"k":165,"v":[[0,2,["H5146"]],[2,4,["H8337"]],[4,5,["H3967"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,10,["H3999"]],[10,12,["H4325"]],[12,13,["H1961"]],[13,14,["H5921"]],[14,16,["H776"]]]},{"k":166,"v":[[0,2,["H5146"]],[2,4,["H935"]],[4,7,["H1121"]],[7,10,["H802"]],[10,13,["H1121"]],[13,14,["H802"]],[14,15,["H854"]],[15,17,["H413"]],[17,19,["H8392"]],[19,20,["H4480","H6440"]],[20,23,["H4325"]],[23,26,["H3999"]]]},{"k":167,"v":[[0,1,["H4480"]],[1,2,["H2889"]],[2,3,["H929"]],[3,5,["H4480"]],[5,6,["H929"]],[6,7,["H834"]],[7,9,["H369"]],[9,10,["H2889"]],[10,12,["H4480"]],[12,13,["H5775"]],[13,17,["H3605"]],[17,18,["H834"]],[18,19,["H7430"]],[19,20,["H5921"]],[20,22,["H127"]]]},{"k":168,"v":[[0,3,["H935"]],[3,4,["H8147"]],[4,6,["H8147"]],[6,7,["H413"]],[7,8,["H5146"]],[8,9,["H413"]],[9,11,["H8392"]],[11,13,["H2145"]],[13,16,["H5347"]],[16,17,["H834"]],[17,18,["H430"]],[18,20,["H6680","(H853)"]],[20,21,["H5146"]]]},{"k":169,"v":[[0,5,["H1961"]],[5,7,["H7651"]],[7,8,["H3117"]],[8,11,["H4325"]],[11,14,["H3999"]],[14,15,["H1961"]],[15,16,["H5921"]],[16,18,["H776"]]]},{"k":170,"v":[[0,3,["H8337"]],[3,4,["H3967"]],[4,5,["H8141"]],[5,7,["H5146"]],[7,8,["H2416"]],[8,11,["H8145"]],[11,12,["H2320"]],[12,14,["H7651","H6240"]],[14,15,["H3117"]],[15,18,["H2320"]],[18,20,["H2320"]],[20,21,["H3117"]],[21,23,["H3605"]],[23,25,["H4599"]],[25,28,["H7227"]],[28,29,["H8415"]],[29,31,["H1234"]],[31,34,["H699"]],[34,36,["H8064"]],[36,38,["H6605"]]]},{"k":171,"v":[[0,3,["H1653"]],[3,4,["H1961"]],[4,5,["H5921"]],[5,7,["H776"]],[7,8,["H705"]],[8,9,["H3117"]],[9,11,["H705"]],[11,12,["H3915"]]]},{"k":172,"v":[[0,3,["H6106","H2088"]],[3,4,["H3117"]],[4,5,["H935"]],[5,6,["H5146"]],[6,8,["H8035"]],[8,10,["H2526"]],[10,12,["H3315"]],[12,14,["H1121"]],[14,16,["H5146"]],[16,18,["H5146"]],[18,19,["H802"]],[19,22,["H7969"]],[22,23,["H802"]],[23,26,["H1121"]],[26,27,["H854"]],[27,29,["H413"]],[29,31,["H8392"]]]},{"k":173,"v":[[0,1,["H1992"]],[1,3,["H3605"]],[3,4,["H2416"]],[4,7,["H4327"]],[7,9,["H3605"]],[9,11,["H929"]],[11,14,["H4327"]],[14,16,["H3605"]],[16,18,["H7431"]],[18,20,["H7430"]],[20,21,["H5921"]],[21,23,["H776"]],[23,26,["H4327"]],[26,28,["H3605"]],[28,29,["H5775"]],[29,32,["H4327"]],[32,33,["H3605"]],[33,34,["H6833"]],[34,36,["H3605"]],[36,37,["H3671"]]]},{"k":174,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,6,["H5146"]],[6,7,["H413"]],[7,9,["H8392"]],[9,10,["H8147"]],[10,12,["H8147"]],[12,14,["H4480","H3605"]],[14,15,["H1320"]],[15,16,["H834"]],[16,19,["H7307"]],[19,21,["H2416"]]]},{"k":175,"v":[[0,5,["H935"]],[5,7,["H935"]],[7,8,["H2145"]],[8,10,["H5347"]],[10,12,["H4480","H3605"]],[12,13,["H1320"]],[13,14,["H834"]],[14,15,["H430"]],[15,17,["H6680"]],[17,21,["H3068"]],[21,24,["H5462","H1157"]]]},{"k":176,"v":[[0,3,["H3999"]],[3,4,["H1961"]],[4,5,["H705"]],[5,6,["H3117"]],[6,7,["H5921"]],[7,9,["H776"]],[9,12,["H4325"]],[12,13,["H7235"]],[13,16,["H5375","(H853)"]],[16,18,["H8392"]],[18,23,["H7311"]],[23,24,["H4480","H5921"]],[24,26,["H776"]]]},{"k":177,"v":[[0,3,["H4325"]],[3,4,["H1396"]],[4,7,["H7235"]],[7,8,["H3966"]],[8,9,["H5921"]],[9,11,["H776"]],[11,14,["H8392"]],[14,15,["H1980"]],[15,16,["H5921"]],[16,18,["H6440"]],[18,21,["H4325"]]]},{"k":178,"v":[[0,3,["H4325"]],[3,4,["H1396"]],[4,5,["H3966","H3966"]],[5,6,["H5921"]],[6,8,["H776"]],[8,10,["H3605"]],[10,12,["H1364"]],[12,13,["H2022"]],[13,14,["H834"]],[14,16,["H8478"]],[16,18,["H3605"]],[18,19,["H8064"]],[19,21,["H3680"]]]},{"k":179,"v":[[0,1,["H2568","H6240"]],[1,2,["H520"]],[2,3,["H4480","H4605"]],[3,6,["H4325"]],[6,7,["H1396"]],[7,10,["H2022"]],[10,12,["H3680"]]]},{"k":180,"v":[[0,2,["H3605"]],[2,3,["H1320"]],[3,4,["H1478"]],[4,6,["H7430"]],[6,7,["H5921"]],[7,9,["H776"]],[9,12,["H5775"]],[12,15,["H929"]],[15,18,["H2416"]],[18,21,["H3605"]],[21,23,["H8318"]],[23,25,["H8317"]],[25,26,["H5921"]],[26,28,["H776"]],[28,30,["H3605"]],[30,31,["H120"]]]},{"k":181,"v":[[0,1,["H3605"]],[1,4,["H639"]],[4,7,["H5397","H7307"]],[7,9,["H2416"]],[9,11,["H4480","H3605"]],[11,12,["H834"]],[12,16,["H2724"]],[16,18,["H4191"]]]},{"k":182,"v":[[0,1,["(H853)"]],[1,2,["H3605"]],[2,4,["H3351"]],[4,6,["H4229"]],[6,7,["H834"]],[7,9,["H5921"]],[9,11,["H6440"]],[11,14,["H127"]],[14,16,["H4480","H120"]],[16,17,["H5704"]],[17,18,["H929"]],[18,19,["H5704"]],[19,22,["H7431"]],[22,23,["H5704"]],[23,25,["H5775"]],[25,28,["H8064"]],[28,32,["H4229"]],[32,33,["H4480"]],[33,35,["H776"]],[35,37,["H5146"]],[37,38,["H389"]],[38,39,["H7604"]],[39,43,["H834"]],[43,45,["H854"]],[45,49,["H8392"]]]},{"k":183,"v":[[0,3,["H4325"]],[3,4,["H1396"]],[4,5,["H5921"]],[5,7,["H776"]],[7,9,["H3967"]],[9,11,["H2572"]],[11,12,["H3117"]]]},{"k":184,"v":[[0,2,["H430"]],[2,3,["H2142","(H853)"]],[3,4,["H5146"]],[4,6,["H3605"]],[6,8,["H2416"]],[8,10,["H3605"]],[10,12,["H929"]],[12,13,["H834"]],[13,15,["H854"]],[15,19,["H8392"]],[19,21,["H430"]],[21,24,["H7307"]],[24,26,["H5674"]],[26,27,["H5921"]],[27,29,["H776"]],[29,32,["H4325"]],[32,33,["H7918"]]]},{"k":185,"v":[[0,2,["H4599"]],[2,6,["H8415"]],[6,9,["H699"]],[9,11,["H8064"]],[11,13,["H5534"]],[13,16,["H1653"]],[16,17,["H4480"]],[17,18,["H8064"]],[18,20,["H3607"]]]},{"k":186,"v":[[0,3,["H4325"]],[3,4,["H7725"]],[4,6,["H4480","H5921"]],[6,8,["H776"]],[8,9,["H1980","H7725"]],[9,13,["H4480","H7097"]],[13,16,["H3967"]],[16,18,["H2572"]],[18,19,["H3117"]],[19,21,["H4325"]],[21,23,["H2637"]]]},{"k":187,"v":[[0,3,["H8392"]],[3,4,["H5117"]],[4,7,["H7637"]],[7,8,["H2320"]],[8,11,["H7651","H6240"]],[11,12,["H3117"]],[12,15,["H2320"]],[15,16,["H5921"]],[16,18,["H2022"]],[18,20,["H780"]]]},{"k":188,"v":[[0,3,["H4325"]],[3,4,["H2637"]],[4,5,["H1961","H1980"]],[5,6,["H5704"]],[6,8,["H6224"]],[8,9,["H2320"]],[9,12,["H6224"]],[12,16,["H259"]],[16,20,["H2320"]],[20,23,["H7218"]],[23,26,["H2022"]],[26,27,["H7200"]]]},{"k":189,"v":[[0,5,["H1961"]],[5,8,["H4480","H7093"]],[8,10,["H705"]],[10,11,["H3117"]],[11,13,["H5146"]],[13,14,["H6605","(H853)"]],[14,16,["H2474"]],[16,19,["H8392"]],[19,20,["H834"]],[20,23,["H6213"]]]},{"k":190,"v":[[0,4,["H7971","(H853)"]],[4,6,["H6158"]],[6,9,["H3318"]],[9,12,["H3318","H7725"]],[12,13,["H5704"]],[13,15,["H4325"]],[15,18,["H3001"]],[18,20,["H4480","H5921"]],[20,22,["H776"]]]},{"k":191,"v":[[0,4,["H7971","(H853)"]],[4,6,["H3123"]],[6,7,["H4480","H854"]],[7,10,["H7200"]],[10,13,["H4325"]],[13,15,["H7043"]],[15,17,["H4480","H5921"]],[17,19,["H6440"]],[19,22,["H127"]]]},{"k":192,"v":[[0,3,["H3123"]],[3,4,["H4672"]],[4,5,["H3808"]],[5,6,["H4494"]],[6,9,["H3709"]],[9,12,["H7272"]],[12,15,["H7725"]],[15,16,["H413"]],[16,18,["H413"]],[18,20,["H8392"]],[20,21,["H3588"]],[21,23,["H4325"]],[23,25,["H5921"]],[25,27,["H6440"]],[27,30,["H3605"]],[30,31,["H776"]],[31,35,["H7971"]],[35,37,["H3027"]],[37,39,["H3947"]],[39,44,["H935","(H853)"]],[44,45,["H413"]],[45,47,["H413"]],[47,49,["H8392"]]]},{"k":193,"v":[[0,3,["H2342"]],[3,4,["H5750"]],[4,5,["H312"]],[5,6,["H7651"]],[6,7,["H3117"]],[7,9,["H3254"]],[9,12,["H7971","(H853)"]],[12,14,["H3123"]],[14,16,["H4480"]],[16,18,["H8392"]]]},{"k":194,"v":[[0,3,["H3123"]],[3,5,["H935"]],[5,6,["H413"]],[6,8,["H6256"]],[8,10,["H6153"]],[10,12,["H2009"]],[12,15,["H6310"]],[15,18,["H2132"]],[18,19,["H5929"]],[19,21,["H2965"]],[21,23,["H5146"]],[23,24,["H3045"]],[24,25,["H3588"]],[25,27,["H4325"]],[27,29,["H7043"]],[29,31,["H4480","H5921"]],[31,33,["H776"]]]},{"k":195,"v":[[0,3,["H3176"]],[3,4,["H5750"]],[4,5,["H312"]],[5,6,["H7651"]],[6,7,["H3117"]],[7,10,["H7971","(H853)"]],[10,12,["H3123"]],[12,14,["H7725"]],[14,15,["H3808"]],[15,16,["H3254"]],[16,17,["H413"]],[17,20,["H5750"]]]},{"k":196,"v":[[0,5,["H1961"]],[5,8,["H8337"]],[8,9,["H3967"]],[9,11,["H259"]],[11,12,["H8141"]],[12,15,["H7223"]],[15,18,["H259"]],[18,22,["H2320"]],[22,24,["H4325"]],[24,27,["H2717"]],[27,29,["H4480","H5921"]],[29,31,["H776"]],[31,33,["H5146"]],[33,34,["H5493","(H853)"]],[34,36,["H4372"]],[36,39,["H8392"]],[39,41,["H7200"]],[41,43,["H2009"]],[43,45,["H6440"]],[45,48,["H127"]],[48,50,["H2717"]]]},{"k":197,"v":[[0,4,["H8145"]],[4,5,["H2320"]],[5,8,["H7651"]],[8,10,["H6242"]],[10,11,["H3117"]],[11,14,["H2320"]],[14,17,["H776"]],[17,18,["H3001"]]]},{"k":198,"v":[[0,2,["H430"]],[2,3,["H1696"]],[3,4,["H413"]],[4,5,["H5146"]],[5,6,["H559"]]]},{"k":199,"v":[[0,2,["H3318"]],[2,3,["H4480"]],[3,5,["H8392"]],[5,6,["H859"]],[6,9,["H802"]],[9,12,["H1121"]],[12,15,["H1121"]],[15,16,["H802"]],[16,17,["H854"]],[17,18,[]]]},{"k":200,"v":[[0,2,["H3318"]],[2,3,["H854"]],[3,5,["H3605"]],[5,7,["H2416"]],[7,8,["H834"]],[8,10,["H854"]],[10,13,["H4480","H3605"]],[13,14,["H1320"]],[14,17,["H5775"]],[17,20,["H929"]],[20,23,["H3605"]],[23,25,["H7431"]],[25,27,["H7430"]],[27,28,["H5921"]],[28,30,["H776"]],[30,35,["H8317"]],[35,38,["H776"]],[38,41,["H6509"]],[41,43,["H7235"]],[43,44,["H5921"]],[44,46,["H776"]]]},{"k":201,"v":[[0,2,["H5146"]],[2,4,["H3318"]],[4,7,["H1121"]],[7,10,["H802"]],[10,13,["H1121"]],[13,14,["H802"]],[14,15,["H854"]],[15,16,[]]]},{"k":202,"v":[[0,1,["H3605"]],[1,2,["H2416"]],[2,3,["H3605"]],[3,5,["H7431"]],[5,7,["H3605"]],[7,8,["H5775"]],[8,10,["H3605"]],[10,11,["H7430"]],[11,12,["H5921"]],[12,14,["H776"]],[14,17,["H4940"]],[17,19,["H3318"]],[19,21,["H4480"]],[21,23,["H8392"]]]},{"k":203,"v":[[0,2,["H5146"]],[2,3,["H1129"]],[3,5,["H4196"]],[5,8,["H3068"]],[8,10,["H3947"]],[10,12,["H4480","H3605"]],[12,13,["H2889"]],[13,14,["H929"]],[14,17,["H4480","H3605"]],[17,18,["H2889"]],[18,19,["H5775"]],[19,21,["H5927"]],[21,23,["H5930"]],[23,26,["H4196"]]]},{"k":204,"v":[[0,3,["H3068"]],[3,4,["H7306"]],[4,6,["H5207","(H853)"]],[6,7,["H7381"]],[7,10,["H3068"]],[10,11,["H559"]],[11,12,["H413"]],[12,14,["H3820"]],[14,17,["H3808"]],[17,18,["H3254"]],[18,19,["H7043","(H853)"]],[19,21,["H127"]],[21,23,["H5750"]],[23,26,["H5668","H120"]],[26,27,["H3588"]],[27,29,["H3336"]],[29,31,["H120"]],[31,32,["H3820"]],[32,34,["H7451"]],[34,37,["H4480","H5271"]],[37,38,["H3808"]],[38,41,["H3254"]],[41,42,["H5221"]],[42,44,["H5750","(H853)"]],[44,46,["H3605"]],[46,47,["H2416"]],[47,48,["H834"]],[48,51,["H6213"]]]},{"k":205,"v":[[0,1,["H5750"]],[1,3,["H776"]],[3,4,["H3605","H3117"]],[4,5,["H2233"]],[5,7,["H7105"]],[7,9,["H7120"]],[9,11,["H2527"]],[11,13,["H7019"]],[13,15,["H2779"]],[15,17,["H3117"]],[17,19,["H3915"]],[19,21,["H3808"]],[21,22,["H7673"]]]},{"k":206,"v":[[0,2,["H430"]],[2,3,["H1288","(H853)"]],[3,4,["H5146"]],[4,7,["H1121"]],[7,9,["H559"]],[9,13,["H6509"]],[13,15,["H7235"]],[15,17,["H4390","(H853)"]],[17,19,["H776"]]]},{"k":207,"v":[[0,3,["H4172"]],[3,8,["H2844"]],[8,12,["H1961"]],[12,13,["H5921"]],[13,14,["H3605"]],[14,15,["H2416"]],[15,18,["H776"]],[18,20,["H5921"]],[20,21,["H3605"]],[21,22,["H5775"]],[22,25,["H8064"]],[25,27,["H3605"]],[27,28,["H834"]],[28,29,["H7430"]],[29,32,["H127"]],[32,35,["H3605"]],[35,37,["H1709"]],[37,40,["H3220"]],[40,43,["H3027"]],[43,46,["H5414"]]]},{"k":208,"v":[[0,1,["H3605"]],[1,3,["H7431"]],[3,4,["H834"]],[4,5,["H2416"]],[5,7,["H1961"]],[7,8,["H402"]],[8,14,["H3418"]],[14,15,["H6212"]],[15,18,["H5414"]],[18,19,["(H853)"]],[19,21,["H3605"]]]},{"k":209,"v":[[0,1,["H389"]],[1,2,["H1320"]],[2,5,["H5315"]],[5,10,["H1818"]],[10,14,["H3808"]],[14,15,["H398"]]]},{"k":210,"v":[[0,2,["H389","(H853)"]],[2,4,["H1818"]],[4,7,["H5315"]],[7,10,["H1875"]],[10,13,["H4480","H3027"]],[13,15,["H3605"]],[15,16,["H2416"]],[16,19,["H1875"]],[19,24,["H4480","H3027"]],[24,26,["H120"]],[26,29,["H4480","H3027"]],[29,32,["H376"]],[32,33,["H251"]],[33,36,["H1875","(H853)"]],[36,38,["H5315"]],[38,40,["H120"]]]},{"k":211,"v":[[0,2,["H8210"]],[2,3,["H120"]],[3,4,["H1818"]],[4,6,["H120"]],[6,9,["H1818"]],[9,11,["H8210"]],[11,12,["H3588"]],[12,15,["H6754"]],[15,17,["H430"]],[17,18,["H6213"]],[18,19,["(H853)"]],[19,20,["H120"]]]},{"k":212,"v":[[0,2,["H859"]],[2,5,["H6509"]],[5,7,["H7235"]],[7,10,["H8317"]],[10,13,["H776"]],[13,15,["H7235"]],[15,16,[]]]},{"k":213,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H5146"]],[5,7,["H413"]],[7,9,["H1121"]],[9,10,["H854"]],[10,12,["H559"]]]},{"k":214,"v":[[0,2,["H589"]],[2,3,["H2009"]],[3,5,["H6965","(H853)"]],[5,7,["H1285"]],[7,8,["H854"]],[8,11,["H854"]],[11,13,["H2233"]],[13,14,["H310"]],[14,15,[]]]},{"k":215,"v":[[0,2,["H854"]],[2,3,["H3605"]],[3,4,["H2416"]],[4,5,["H5315"]],[5,6,["H834"]],[6,8,["H854"]],[8,12,["H5775"]],[12,15,["H929"]],[15,18,["H3605"]],[18,19,["H2416"]],[19,22,["H776"]],[22,23,["H854"]],[23,26,["H4480","H3605"]],[26,29,["H3318"]],[29,32,["H8392"]],[32,34,["H3605"]],[34,35,["H2416"]],[35,38,["H776"]]]},{"k":216,"v":[[0,4,["H6965","(H853)"]],[4,6,["H1285"]],[6,7,["H854"]],[7,9,["H3808"]],[9,11,["H3605"]],[11,12,["H1320"]],[12,15,["H3772"]],[15,17,["H5750"]],[17,20,["H4480","H4325"]],[20,23,["H3999"]],[23,24,["H3808"]],[24,28,["H5750"]],[28,29,["H1961"]],[29,31,["H3999"]],[31,33,["H7843"]],[33,35,["H776"]]]},{"k":217,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H2063"]],[4,7,["H226"]],[7,10,["H1285"]],[10,11,["H834"]],[11,12,["H589"]],[12,13,["H5414"]],[13,14,["H996"]],[14,19,["H3605"]],[19,20,["H2416"]],[20,21,["H5315"]],[21,22,["H834"]],[22,24,["H854"]],[24,27,["H5769"]],[27,28,["H1755"]]]},{"k":218,"v":[[0,3,["H5414","(H853)"]],[3,5,["H7198"]],[5,8,["H6051"]],[8,12,["H1961"]],[12,15,["H226"]],[15,18,["H1285"]],[18,19,["H996"]],[19,23,["H776"]]]},{"k":219,"v":[[0,6,["H1961"]],[6,9,["H6049"]],[9,11,["H6051"]],[11,12,["H5921"]],[12,14,["H776"]],[14,17,["H7198"]],[17,20,["H7200"]],[20,23,["H6051"]]]},{"k":220,"v":[[0,4,["H2142","(H853)"]],[4,6,["H1285"]],[6,7,["H834"]],[7,9,["H996"]],[9,14,["H3605"]],[14,15,["H2416"]],[15,16,["H5315"]],[16,18,["H3605"]],[18,19,["H1320"]],[19,22,["H4325"]],[22,24,["H3808"]],[24,25,["H5750"]],[25,26,["H1961"]],[26,28,["H3999"]],[28,30,["H7843"]],[30,31,["H3605"]],[31,32,["H1320"]]]},{"k":221,"v":[[0,3,["H7198"]],[3,5,["H1961"]],[5,8,["H6051"]],[8,13,["H7200"]],[13,18,["H2142"]],[18,20,["H5769"]],[20,21,["H1285"]],[21,22,["H996"]],[22,23,["H430"]],[23,25,["H3605"]],[25,26,["H2416"]],[26,27,["H5315"]],[27,29,["H3605"]],[29,30,["H1320"]],[30,31,["H834"]],[31,33,["H5921"]],[33,35,["H776"]]]},{"k":222,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H5146"]],[5,6,["H2063"]],[6,9,["H226"]],[9,12,["H1285"]],[12,13,["H834"]],[13,16,["H6965"]],[16,17,["H996"]],[17,20,["H3605"]],[20,21,["H1320"]],[21,22,["H834"]],[22,24,["H5921"]],[24,26,["H776"]]]},{"k":223,"v":[[0,3,["H1121"]],[3,5,["H5146"]],[5,8,["H3318"]],[8,9,["H4480"]],[9,11,["H8392"]],[11,12,["H1961"]],[12,13,["H8035"]],[13,15,["H2526"]],[15,17,["H3315"]],[17,19,["H2526"]],[19,22,["H1"]],[22,24,["H3667"]]]},{"k":224,"v":[[0,1,["H428"]],[1,4,["H7969"]],[4,5,["H1121"]],[5,7,["H5146"]],[7,10,["H4480","H428"]],[10,13,["H3605"]],[13,14,["H776"]],[14,15,["H5310"]]]},{"k":225,"v":[[0,2,["H5146"]],[2,3,["H2490"]],[3,7,["H376","H127"]],[7,10,["H5193"]],[10,12,["H3754"]]]},{"k":226,"v":[[0,3,["H8354"]],[3,4,["H4480"]],[4,6,["H3196"]],[6,9,["H7937"]],[9,13,["H1540"]],[13,14,["H8432"]],[14,16,["H168"]]]},{"k":227,"v":[[0,2,["H2526"]],[2,4,["H1"]],[4,6,["H3667"]],[6,7,["H7200","(H853)"]],[7,9,["H6172"]],[9,12,["H1"]],[12,14,["H5046"]],[14,16,["H8147"]],[16,17,["H251"]],[17,18,["H2351"]]]},{"k":228,"v":[[0,2,["H8035"]],[2,4,["H3315"]],[4,5,["H3947","(H853)"]],[5,7,["H8071"]],[7,9,["H7760"]],[9,11,["H5921"]],[11,12,["H8147"]],[12,14,["H7926"]],[14,16,["H1980"]],[16,17,["H322"]],[17,19,["H3680","(H853)"]],[19,21,["H6172"]],[21,24,["H1"]],[24,27,["H6440"]],[27,29,["H322"]],[29,32,["H7200"]],[32,33,["H3808"]],[33,35,["H1"]],[35,36,["H6172"]]]},{"k":229,"v":[[0,2,["H5146"]],[2,3,["H3364"]],[3,6,["H4480","H3196"]],[6,8,["H3045","(H853)"]],[8,9,["H834"]],[9,11,["H6996"]],[11,12,["H1121"]],[12,14,["H6213"]],[14,16,[]]]},{"k":230,"v":[[0,3,["H559"]],[3,4,["H779"]],[4,6,["H3667"]],[6,8,["H5650"]],[8,10,["H5650"]],[10,13,["H1961"]],[13,16,["H251"]]]},{"k":231,"v":[[0,3,["H559"]],[3,4,["H1288"]],[4,7,["H3068"]],[7,8,["H430"]],[8,10,["H8035"]],[10,12,["H3667"]],[12,14,["H1961"]],[14,16,["H5650"]]]},{"k":232,"v":[[0,1,["H430"]],[1,3,["H6601"]],[3,4,["H3315"]],[4,8,["H7931"]],[8,11,["H168"]],[11,13,["H8035"]],[13,15,["H3667"]],[15,17,["H1961"]],[17,19,["H5650"]]]},{"k":233,"v":[[0,2,["H5146"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3999"]],[6,7,["H7969"]],[7,8,["H3967"]],[8,10,["H2572"]],[10,11,["H8141"]]]},{"k":234,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,6,["H5146"]],[6,7,["H1961"]],[7,8,["H8672"]],[8,9,["H3967"]],[9,11,["H2572"]],[11,12,["H8141"]],[12,15,["H4191"]]]},{"k":235,"v":[[0,2,["H428"]],[2,5,["H8435"]],[5,8,["H1121"]],[8,10,["H5146"]],[10,11,["H8035"]],[11,12,["H2526"]],[12,14,["H3315"]],[14,19,["H1121"]],[19,20,["H3205"]],[20,21,["H310"]],[21,23,["H3999"]]]},{"k":236,"v":[[0,2,["H1121"]],[2,4,["H3315"]],[4,5,["H1586"]],[5,7,["H4031"]],[7,9,["H4074"]],[9,11,["H3120"]],[11,13,["H8422"]],[13,15,["H4902"]],[15,17,["H8494"]]]},{"k":237,"v":[[0,3,["H1121"]],[3,5,["H1586"]],[5,6,["H813"]],[6,8,["H7384"]],[8,10,["H8425"]]]},{"k":238,"v":[[0,3,["H1121"]],[3,5,["H3120"]],[5,6,["H473"]],[6,8,["H8659"]],[8,9,["H3794"]],[9,11,["H1721"]]]},{"k":239,"v":[[0,2,["H4480","H428"]],[2,5,["H339"]],[5,8,["H1471"]],[8,9,["H6504"]],[9,12,["H776"]],[12,14,["H376"]],[14,17,["H3956"]],[17,20,["H4940"]],[20,23,["H1471"]]]},{"k":240,"v":[[0,3,["H1121"]],[3,5,["H2526"]],[5,6,["H3568"]],[6,8,["H4714"]],[8,10,["H6316"]],[10,12,["H3667"]]]},{"k":241,"v":[[0,3,["H1121"]],[3,5,["H3568"]],[5,6,["H5434"]],[6,8,["H2341"]],[8,10,["H5454"]],[10,12,["H7484"]],[12,14,["H5455"]],[14,17,["H1121"]],[17,19,["H7484"]],[19,20,["H7614"]],[20,22,["H1719"]]]},{"k":242,"v":[[0,2,["H3568"]],[2,3,["H3205","(H853)"]],[3,4,["H5248"]],[4,5,["H1931"]],[5,6,["H2490"]],[6,8,["H1961"]],[8,11,["H1368"]],[11,14,["H776"]]]},{"k":243,"v":[[0,1,["H1931"]],[1,2,["H1961"]],[2,4,["H1368"]],[4,5,["H6718"]],[5,6,["H6440"]],[6,8,["H3068"]],[8,9,["H5921","H3651"]],[9,12,["H559"]],[12,15,["H5248"]],[15,17,["H1368"]],[17,18,["H6718"]],[18,19,["H6440"]],[19,21,["H3068"]]]},{"k":244,"v":[[0,3,["H7225"]],[3,6,["H4467"]],[6,7,["H1961"]],[7,8,["H894"]],[8,10,["H751"]],[10,12,["H390"]],[12,14,["H3641"]],[14,17,["H776"]],[17,19,["H8152"]]]},{"k":245,"v":[[0,2,["H4480"]],[2,3,["H1931"]],[3,4,["H776"]],[4,6,["H3318"]],[6,7,["H804"]],[7,9,["H1129","(H853)"]],[9,10,["H5210"]],[10,13,["H5892"]],[13,14,["H7344"]],[14,16,["H3625"]]]},{"k":246,"v":[[0,2,["H7449"]],[2,3,["H996"]],[3,4,["H5210"]],[4,6,["H3625"]],[6,8,["H1931"]],[8,11,["H1419"]],[11,12,["H5892"]]]},{"k":247,"v":[[0,2,["H4714"]],[2,3,["H3205","(H853)"]],[3,4,["H3866"]],[4,6,["H6047"]],[6,8,["H3853"]],[8,10,["H5320"]]]},{"k":248,"v":[[0,2,["H6625"]],[2,4,["H3695"]],[4,7,["H4480","H8033","H834"]],[7,8,["H3318"]],[8,9,["H6430"]],[9,11,["H3732"]]]},{"k":249,"v":[[0,2,["H3667"]],[2,3,["H3205","(H853)"]],[3,4,["H6721"]],[4,6,["H1060"]],[6,8,["H2845"]]]},{"k":250,"v":[[0,3,["H2983"]],[3,6,["H567"]],[6,9,["H1622"]]]},{"k":251,"v":[[0,3,["H2340"]],[3,6,["H6208"]],[6,9,["H5513"]]]},{"k":252,"v":[[0,3,["H721"]],[3,6,["H6786"]],[6,9,["H2577"]],[9,11,["H310"]],[11,14,["H4940"]],[14,17,["H3669"]],[17,19,["H6327"]]]},{"k":253,"v":[[0,3,["H1366"]],[3,6,["H3669"]],[6,7,["H1961"]],[7,9,["H4480","H6721"]],[9,12,["H935"]],[12,14,["H1642"]],[14,15,["H5704"]],[15,16,["H5804"]],[16,19,["H935"]],[19,21,["H5467"]],[21,23,["H6017"]],[23,25,["H126"]],[25,27,["H6636"]],[27,29,["H5704"]],[29,30,["H3962"]]]},{"k":254,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H2526"]],[6,9,["H4940"]],[9,12,["H3956"]],[12,15,["H776"]],[15,19,["H1471"]]]},{"k":255,"v":[[0,2,["H8035"]],[2,5,["H1"]],[5,7,["H3605"]],[7,9,["H1121"]],[9,11,["H5677"]],[11,13,["H251"]],[13,15,["H3315"]],[15,17,["H1419"]],[17,18,["H1571"]],[18,20,["H1931"]],[20,23,["H3205"]]]},{"k":256,"v":[[0,2,["H1121"]],[2,4,["H8035"]],[4,5,["H5867"]],[5,7,["H804"]],[7,9,["H775"]],[9,11,["H3865"]],[11,13,["H758"]]]},{"k":257,"v":[[0,3,["H1121"]],[3,5,["H758"]],[5,6,["H5780"]],[6,8,["H2343"]],[8,10,["H1666"]],[10,12,["H4851"]]]},{"k":258,"v":[[0,2,["H775"]],[2,3,["H3205","(H853)"]],[3,4,["H7974"]],[4,6,["H7974"]],[6,7,["H3205","(H853)"]],[7,8,["H5677"]]]},{"k":259,"v":[[0,3,["H5677"]],[3,5,["H3205"]],[5,6,["H8147"]],[6,7,["H1121"]],[7,9,["H8034"]],[9,11,["H259"]],[11,13,["H6389"]],[13,14,["H3588"]],[14,17,["H3117"]],[17,20,["H776"]],[20,21,["H6385"]],[21,24,["H251"]],[24,25,["H8034"]],[25,27,["H3355"]]]},{"k":260,"v":[[0,2,["H3355"]],[2,3,["H3205","(H853)"]],[3,4,["H486"]],[4,6,["H8026"]],[6,8,["H2700"]],[8,10,["H3392"]]]},{"k":261,"v":[[0,2,["H1913"]],[2,4,["H187"]],[4,6,["H1853"]]]},{"k":262,"v":[[0,2,["H5745"]],[2,4,["H39"]],[4,6,["H7614"]]]},{"k":263,"v":[[0,2,["H211"]],[2,4,["H2341"]],[4,6,["H3103"]],[6,7,["H3605"]],[7,8,["H428"]],[8,11,["H1121"]],[11,13,["H3355"]]]},{"k":264,"v":[[0,3,["H4186"]],[3,4,["H1961"]],[4,6,["H4480","H4852"]],[6,9,["H935"]],[9,11,["H5611"]],[11,13,["H2022"]],[13,16,["H6924"]]]},{"k":265,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H8035"]],[6,9,["H4940"]],[9,12,["H3956"]],[12,15,["H776"]],[15,18,["H1471"]]]},{"k":266,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,7,["H1121"]],[7,9,["H5146"]],[9,12,["H8435"]],[12,15,["H1471"]],[15,18,["H4480","H428"]],[18,21,["H1471"]],[21,22,["H6504"]],[22,25,["H776"]],[25,26,["H310"]],[26,28,["H3999"]]]},{"k":267,"v":[[0,3,["H3605"]],[3,4,["H776"]],[4,5,["H1961"]],[5,7,["H259"]],[7,8,["H8193"]],[8,11,["H259"]],[11,12,["H1697"]]]},{"k":268,"v":[[0,5,["H1961"]],[5,8,["H5265"]],[8,11,["H4480","H6924"]],[11,14,["H4672"]],[14,16,["H1237"]],[16,19,["H776"]],[19,21,["H8152"]],[21,24,["H3427"]],[24,25,["H8033"]]]},{"k":269,"v":[[0,3,["H559"]],[3,4,["H376"]],[4,5,["H413"]],[5,6,["H7453"]],[6,8,["H3051"]],[8,11,["H3835"]],[11,12,["H3843"]],[12,14,["H8313"]],[14,16,["H8316"]],[16,19,["H1961"]],[19,20,["H3843"]],[20,22,["H68"]],[22,24,["H2564"]],[24,25,["H1961"]],[25,28,["H2563"]]]},{"k":270,"v":[[0,3,["H559"]],[3,5,["H3051"]],[5,8,["H1129"]],[8,11,["H5892"]],[11,14,["H4026"]],[14,16,["H7218"]],[16,20,["H8064"]],[20,24,["H6213"]],[24,27,["H8034"]],[27,28,["H6435"]],[28,32,["H6327"]],[32,33,["H5921"]],[33,35,["H6440"]],[35,38,["H3605"]],[38,39,["H776"]]]},{"k":271,"v":[[0,3,["H3068"]],[3,5,["H3381"]],[5,7,["H7200","(H853)"]],[7,9,["H5892"]],[9,12,["H4026"]],[12,13,["H834"]],[13,15,["H1121"]],[15,17,["H120"]],[17,18,["H1129"]]]},{"k":272,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H2005"]],[5,7,["H5971"]],[7,9,["H259"]],[9,13,["H3605"]],[13,14,["H259"]],[14,15,["H8193"]],[15,17,["H2088"]],[17,19,["H2490"]],[19,21,["H6213"]],[21,23,["H6258"]],[23,24,["H3808","H3605"]],[24,27,["H1219"]],[27,28,["H4480"]],[28,30,["H834"]],[30,33,["H2161"]],[33,35,["H6213"]]]},{"k":273,"v":[[0,2,["H3051"]],[2,6,["H3381"]],[6,8,["H8033"]],[8,9,["H1101"]],[9,11,["H8193"]],[11,12,["H834"]],[12,15,["H3808"]],[15,16,["H8085"]],[16,17,["H376"]],[17,18,["H7453"]],[18,19,["H8193"]]]},{"k":274,"v":[[0,3,["H3068"]],[3,6,["H6327","(H853)"]],[6,8,["H4480","H8033"]],[8,9,["H5921"]],[9,11,["H6440"]],[11,13,["H3605"]],[13,15,["H776"]],[15,19,["H2308"]],[19,21,["H1129"]],[21,23,["H5892"]]]},{"k":275,"v":[[0,1,["H5921","H3651"]],[1,4,["H8034"]],[4,7,["H7121"]],[7,8,["H894"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,13,["H8033"]],[13,14,["H1101"]],[14,16,["H8193"]],[16,18,["H3605"]],[18,20,["H776"]],[20,23,["H4480","H8033"]],[23,26,["H3068"]],[26,29,["H6327"]],[29,30,["H5921"]],[30,32,["H6440"]],[32,34,["H3605"]],[34,36,["H776"]]]},{"k":276,"v":[[0,1,["H428"]],[1,4,["H8435"]],[4,6,["H8035"]],[6,7,["H8035"]],[7,10,["H3967"]],[10,11,["H8141"]],[11,12,["H1121"]],[12,14,["H3205","(H853)"]],[14,15,["H775"]],[15,17,["H8141"]],[17,18,["H310"]],[18,20,["H3999"]]]},{"k":277,"v":[[0,2,["H8035"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H775"]],[7,8,["H2568"]],[8,9,["H3967"]],[9,10,["H8141"]],[10,12,["H3205"]],[12,13,["H1121"]],[13,15,["H1323"]]]},{"k":278,"v":[[0,2,["H775"]],[2,3,["H2425"]],[3,4,["H2568"]],[4,6,["H7970"]],[6,7,["H8141"]],[7,9,["H3205","(H853)"]],[9,10,["H7974"]]]},{"k":279,"v":[[0,2,["H775"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H7974"]],[7,8,["H702"]],[8,9,["H3967"]],[9,11,["H7969"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":280,"v":[[0,2,["H7974"]],[2,3,["H2425"]],[3,4,["H7970"]],[4,5,["H8141"]],[5,7,["H3205","(H853)"]],[7,8,["H5677"]]]},{"k":281,"v":[[0,2,["H7974"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H5677"]],[7,8,["H702"]],[8,9,["H3967"]],[9,11,["H7969"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":282,"v":[[0,2,["H5677"]],[2,3,["H2421"]],[3,4,["H702"]],[4,6,["H7970"]],[6,7,["H8141"]],[7,9,["H3205","(H853)"]],[9,10,["H6389"]]]},{"k":283,"v":[[0,2,["H5677"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H6389"]],[7,8,["H702"]],[8,9,["H3967"]],[9,11,["H7970"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":284,"v":[[0,2,["H6389"]],[2,3,["H2421"]],[3,4,["H7970"]],[4,5,["H8141"]],[5,7,["H3205","(H853)"]],[7,8,["H7466"]]]},{"k":285,"v":[[0,2,["H6389"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H7466"]],[7,9,["H3967"]],[9,11,["H8672"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":286,"v":[[0,2,["H7466"]],[2,3,["H2421"]],[3,4,["H8147"]],[4,6,["H7970"]],[6,7,["H8141"]],[7,9,["H3205","(H853)"]],[9,10,["H8286"]]]},{"k":287,"v":[[0,2,["H7466"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H8286"]],[7,9,["H3967"]],[9,11,["H7651"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":288,"v":[[0,2,["H8286"]],[2,3,["H2421"]],[3,4,["H7970"]],[4,5,["H8141"]],[5,7,["H3205","(H853)"]],[7,8,["H5152"]]]},{"k":289,"v":[[0,2,["H8286"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H5152"]],[7,9,["H3967"]],[9,10,["H8141"]],[10,12,["H3205"]],[12,13,["H1121"]],[13,15,["H1323"]]]},{"k":290,"v":[[0,2,["H5152"]],[2,3,["H2421"]],[3,4,["H8672"]],[4,6,["H6242"]],[6,7,["H8141"]],[7,9,["H3205","(H853)"]],[9,10,["H8646"]]]},{"k":291,"v":[[0,2,["H5152"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H8646"]],[7,9,["H3967"]],[9,11,["H8672","H6240"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":292,"v":[[0,2,["H8646"]],[2,3,["H2421"]],[3,4,["H7657"]],[4,5,["H8141"]],[5,7,["H3205","(H853)"]],[7,8,["H87","(H853)"]],[8,9,["H5152"]],[9,11,["H2039"]]]},{"k":293,"v":[[0,2,["H428"]],[2,5,["H8435"]],[5,7,["H8646"]],[7,8,["H8646"]],[8,9,["H3205","(H853)"]],[9,10,["H87","(H853)"]],[10,11,["H5152"]],[11,13,["H2039"]],[13,15,["H2039"]],[15,16,["H3205","(H853)"]],[16,17,["H3876"]]]},{"k":294,"v":[[0,2,["H2039"]],[2,3,["H4191"]],[3,4,["H5921","H6440"]],[4,6,["H1"]],[6,7,["H8646"]],[7,10,["H776"]],[10,13,["H4138"]],[13,15,["H218"]],[15,18,["H3778"]]]},{"k":295,"v":[[0,2,["H87"]],[2,4,["H5152"]],[4,5,["H3947"]],[5,7,["H802"]],[7,9,["H8034"]],[9,11,["H87"]],[11,12,["H802"]],[12,14,["H8297"]],[14,17,["H8034"]],[17,19,["H5152"]],[19,20,["H802"]],[20,21,["H4435"]],[21,23,["H1323"]],[23,25,["H2039"]],[25,27,["H1"]],[27,29,["H4435"]],[29,32,["H1"]],[32,34,["H3252"]]]},{"k":296,"v":[[0,2,["H8297"]],[2,3,["H1961"]],[3,4,["H6135"]],[4,7,["H369"]],[7,8,["H2056"]]]},{"k":297,"v":[[0,2,["H8646"]],[2,3,["H3947","(H853)"]],[3,4,["H87"]],[4,6,["H1121"]],[6,8,["H3876"]],[8,10,["H1121"]],[10,12,["H2039"]],[12,14,["H1121"]],[14,15,["H1121"]],[15,17,["H8297"]],[17,21,["H3618"]],[21,23,["H1121"]],[23,24,["H87"]],[24,25,["H802"]],[25,29,["H3318"]],[29,30,["H854"]],[30,33,["H4480","H218"]],[33,36,["H3778"]],[36,38,["H1980"]],[38,41,["H776"]],[41,43,["H3667"]],[43,46,["H935"]],[46,47,["H5704"]],[47,48,["H2771"]],[48,50,["H3427"]],[50,51,["H8033"]]]},{"k":298,"v":[[0,3,["H3117"]],[3,5,["H8646"]],[5,6,["H1961"]],[6,8,["H3967"]],[8,10,["H2568"]],[10,11,["H8141"]],[11,13,["H8646"]],[13,14,["H4191"]],[14,16,["H2771"]]]},{"k":299,"v":[[0,3,["H3068"]],[3,5,["H559"]],[5,6,["H413"]],[6,7,["H87"]],[7,10,["H1980"]],[10,13,["H4480","H776"]],[13,17,["H4480","H4138"]],[17,22,["H4480","H1004","H1"]],[22,23,["H413"]],[23,25,["H776"]],[25,26,["H834"]],[26,29,["H7200"]],[29,30,[]]]},{"k":300,"v":[[0,4,["H6213"]],[4,8,["H1419"]],[8,9,["H1471"]],[9,13,["H1288"]],[13,19,["H1431","H8034"]],[19,23,["H1961"]],[23,25,["H1293"]]]},{"k":301,"v":[[0,4,["H1288"]],[4,7,["H1288"]],[7,10,["H779"]],[10,13,["H7043"]],[13,19,["H3605"]],[19,20,["H4940"]],[20,23,["H127"]],[23,25,["H1288"]]]},{"k":302,"v":[[0,2,["H87"]],[2,3,["H1980"]],[3,4,["H834"]],[4,6,["H3068"]],[6,8,["H1696"]],[8,9,["H413"]],[9,12,["H3876"]],[12,13,["H1980"]],[13,14,["H854"]],[14,17,["H87"]],[17,19,["H7657"]],[19,21,["H2568"]],[21,22,["H8141"]],[22,23,["H1121"]],[23,26,["H3318"]],[26,29,["H4480","H2771"]]]},{"k":303,"v":[[0,2,["H87"]],[2,3,["H3947","(H853)"]],[3,4,["H8297"]],[4,6,["H802"]],[6,8,["H3876"]],[8,10,["H251"]],[10,11,["H1121"]],[11,13,["H3605"]],[13,15,["H7399"]],[15,16,["H834"]],[16,19,["H7408"]],[19,22,["H5315"]],[22,23,["H834"]],[23,26,["H6213"]],[26,28,["H2771"]],[28,32,["H3318"]],[32,34,["H1980"]],[34,37,["H776"]],[37,39,["H3667"]],[39,43,["H776"]],[43,45,["H3667"]],[45,47,["H935"]]]},{"k":304,"v":[[0,2,["H87"]],[2,4,["H5674"]],[4,6,["H776"]],[6,7,["H5704"]],[7,9,["H4725"]],[9,11,["H7927"]],[11,12,["H5704"]],[12,14,["H436"]],[14,16,["H4176"]],[16,19,["H3669"]],[19,21,["H227"]],[21,24,["H776"]]]},{"k":305,"v":[[0,3,["H3068"]],[3,4,["H7200"]],[4,5,["H413"]],[5,6,["H87"]],[6,8,["H559"]],[8,11,["H2233"]],[11,14,["H5414","(H853)"]],[14,15,["H2063"]],[15,16,["H776"]],[16,18,["H8033"]],[18,19,["H1129"]],[19,22,["H4196"]],[22,25,["H3068"]],[25,27,["H7200"]],[27,28,["H413"]],[28,29,[]]]},{"k":306,"v":[[0,3,["H6275"]],[3,5,["H4480","H8033"]],[5,8,["H2022"]],[8,11,["H4480","H6924"]],[11,13,["H1008"]],[13,15,["H5186"]],[15,17,["H168"]],[17,19,["H1008"]],[19,22,["H4480","H3220"]],[22,24,["H5857"]],[24,27,["H4480","H6924"]],[27,29,["H8033"]],[29,31,["H1129"]],[31,33,["H4196"]],[33,36,["H3068"]],[36,38,["H7121"]],[38,41,["H8034"]],[41,44,["H3068"]]]},{"k":307,"v":[[0,2,["H87"]],[2,3,["H5265"]],[3,5,["H1980"]],[5,6,["H5265"]],[6,9,["H5045"]]]},{"k":308,"v":[[0,3,["H1961"]],[3,5,["H7458"]],[5,8,["H776"]],[8,10,["H87"]],[10,12,["H3381"]],[12,14,["H4714"]],[14,16,["H1481"]],[16,17,["H8033"]],[17,18,["H3588"]],[18,20,["H7458"]],[20,22,["H3515"]],[22,25,["H776"]]]},{"k":309,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,10,["H7126"]],[10,12,["H935"]],[12,14,["H4714"]],[14,17,["H559"]],[17,18,["H413"]],[18,19,["H8297"]],[19,21,["H802"]],[21,22,["H2009"]],[22,23,["H4994"]],[23,25,["H3045"]],[25,26,["H3588"]],[26,27,["H859"]],[27,30,["H3303"]],[30,31,["H802"]],[31,34,["H4758"]]]},{"k":310,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,9,["H4713"]],[9,11,["H7200"]],[11,16,["H559"]],[16,17,["H2063"]],[17,20,["H802"]],[20,24,["H2026"]],[24,31,["H2421"]]]},{"k":311,"v":[[0,1,["H559"]],[1,4,["H4994"]],[4,5,["H859"]],[5,8,["H269"]],[8,9,["H4616"]],[9,13,["H3190"]],[13,18,["H5668"]],[18,21,["H5315"]],[21,23,["H2421"]],[23,25,["H1558"]],[25,26,[]]]},{"k":312,"v":[[0,5,["H1961"]],[5,8,["H87"]],[8,10,["H935"]],[10,12,["H4714"]],[12,14,["H4713"]],[14,15,["H7200","(H853)"]],[15,17,["H802"]],[17,18,["H3588"]],[18,19,["H1931"]],[19,21,["H3966"]],[21,22,["H3303"]]]},{"k":313,"v":[[0,2,["H8269"]],[2,5,["H6547"]],[5,6,["H7200"]],[6,9,["H1984"]],[9,11,["H413"]],[11,12,["H6547"]],[12,15,["H802"]],[15,17,["H3947"]],[17,19,["H6547"]],[19,20,["H1004"]]]},{"k":314,"v":[[0,5,["H3190","H87"]],[5,8,["H5668"]],[8,11,["H1961"]],[11,12,["H6629"]],[12,14,["H1241"]],[14,17,["H2543"]],[17,19,["H5650"]],[19,21,["H8198"]],[21,24,["H860"]],[24,26,["H1581"]]]},{"k":315,"v":[[0,3,["H3068"]],[3,4,["H5060","(H853)"]],[4,5,["H6547"]],[5,8,["H1004"]],[8,10,["H1419"]],[10,11,["H5061"]],[11,13,["H5921","H1697"]],[13,14,["H8297"]],[14,15,["H87"]],[15,16,["H802"]]]},{"k":316,"v":[[0,2,["H6547"]],[2,3,["H7121"]],[3,4,["H87"]],[4,6,["H559"]],[6,7,["H4100"]],[7,9,["H2063"]],[9,13,["H6213"]],[13,16,["H4100"]],[16,19,["H3808"]],[19,20,["H5046"]],[20,22,["H3588"]],[22,23,["H1931"]],[23,26,["H802"]]]},{"k":317,"v":[[0,1,["H4100"]],[1,2,["H559"]],[2,4,["H1931"]],[4,7,["H269"]],[7,12,["H3947"]],[12,17,["H802"]],[17,19,["H6258"]],[19,20,["H2009"]],[20,22,["H802"]],[22,23,["H3947"]],[23,28,["H1980"]]]},{"k":318,"v":[[0,2,["H6547"]],[2,3,["H6680"]],[3,5,["H376"]],[5,6,["H5921"]],[6,12,["H7971","(H853)"]],[12,15,["H802"]],[15,17,["H3605"]],[17,18,["H834"]],[18,20,[]]]},{"k":319,"v":[[0,2,["H87"]],[2,4,["H5927"]],[4,7,["H4480","H4714"]],[7,8,["H1931"]],[8,11,["H802"]],[11,13,["H3605"]],[13,14,["H834"]],[14,18,["H3876"]],[18,19,["H5973"]],[19,23,["H5045"]]]},{"k":320,"v":[[0,2,["H87"]],[2,4,["H3966"]],[4,5,["H3515"]],[5,7,["H4735"]],[7,9,["H3701"]],[9,12,["H2091"]]]},{"k":321,"v":[[0,3,["H1980"]],[3,6,["H4550"]],[6,9,["H4480","H5045"]],[9,11,["H5704"]],[11,12,["H1008"]],[12,13,["H5704"]],[13,15,["H4725"]],[15,16,["H834","H8033"]],[16,18,["H168"]],[18,20,["H1961"]],[20,23,["H8462"]],[23,24,["H996"]],[24,25,["H1008"]],[25,27,["H5857"]]]},{"k":322,"v":[[0,1,["H413"]],[1,3,["H4725"]],[3,6,["H4196"]],[6,7,["H834"]],[7,10,["H6213"]],[10,11,["H8033"]],[11,14,["H7223"]],[14,16,["H8033"]],[16,17,["H87"]],[17,18,["H7121"]],[18,21,["H8034"]],[21,24,["H3068"]]]},{"k":323,"v":[[0,2,["H3876"]],[2,3,["H1571"]],[3,5,["H1980"]],[5,6,["H854"]],[6,7,["H87"]],[7,8,["H1961"]],[8,9,["H6629"]],[9,11,["H1241"]],[11,13,["H168"]]]},{"k":324,"v":[[0,3,["H776"]],[3,5,["H3808"]],[5,8,["H5375"]],[8,13,["H3427"]],[13,14,["H3162"]],[14,15,["H3588"]],[15,17,["H7399"]],[17,18,["H1961"]],[18,19,["H7227"]],[19,23,["H3201"]],[23,24,["H3808"]],[24,25,["H3427"]],[25,26,["H3162"]]]},{"k":325,"v":[[0,3,["H1961"]],[3,5,["H7379"]],[5,6,["H996"]],[6,8,["H7462"]],[8,10,["H87"]],[10,11,["H4735"]],[11,14,["H7462"]],[14,16,["H3876"]],[16,17,["H4735"]],[17,20,["H3669"]],[20,23,["H6522"]],[23,24,["H3427"]],[24,25,["H227"]],[25,28,["H776"]]]},{"k":326,"v":[[0,2,["H87"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3876"]],[5,8,["H1961"]],[8,9,["H408"]],[9,10,["H4808"]],[10,13,["H4994"]],[13,14,["H996"]],[14,19,["H996"]],[19,21,["H7462"]],[21,24,["H7462"]],[24,25,["H3588"]],[25,26,["H587"]],[26,28,["H251"]]]},{"k":327,"v":[[0,2,["H3808"]],[2,4,["H3605"]],[4,5,["H776"]],[5,6,["H6440"]],[6,9,["H6504"]],[9,12,["H4994"]],[12,13,["H4480","H5921"]],[13,15,["H518"]],[15,21,["H8040"]],[21,28,["H3231"]],[28,30,["H518"]],[30,36,["H3225"]],[36,43,["H8041"]]]},{"k":328,"v":[[0,2,["H3876"]],[2,4,["H5375","(H853)"]],[4,6,["H5869"]],[6,8,["H7200","(H853)"]],[8,9,["H3605"]],[9,11,["H3603"]],[11,13,["H3383"]],[13,14,["H3588"]],[14,18,["H4945"]],[18,20,["H3605"]],[20,21,["H6440"]],[21,23,["H3068"]],[23,24,["H7843","(H853)"]],[24,25,["H5467"]],[25,27,["H6017"]],[27,31,["H1588"]],[31,34,["H3068"]],[34,37,["H776"]],[37,39,["H4714"]],[39,42,["H935"]],[42,44,["H6820"]]]},{"k":329,"v":[[0,2,["H3876"]],[2,3,["H977"]],[3,4,["(H853)"]],[4,5,["H3605"]],[5,7,["H3603"]],[7,9,["H3383"]],[9,11,["H3876"]],[11,12,["H5265"]],[12,13,["H4480","H6924"]],[13,17,["H6504"]],[17,19,["H376"]],[19,20,["H4480","H5921"]],[20,22,["H251"]]]},{"k":330,"v":[[0,1,["H87"]],[1,2,["H3427"]],[2,5,["H776"]],[5,7,["H3667"]],[7,9,["H3876"]],[9,10,["H3427"]],[10,13,["H5892"]],[13,16,["H3603"]],[16,20,["H167"]],[20,21,["H5704"]],[21,22,["H5467"]]]},{"k":331,"v":[[0,3,["H376"]],[3,5,["H5467"]],[5,7,["H7451"]],[7,9,["H2400"]],[9,12,["H3068"]],[12,13,["H3966"]]]},{"k":332,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H87"]],[6,8,["H310"]],[8,9,["H3876"]],[9,11,["H6504"]],[11,12,["H4480","H5973"]],[12,15,["H5375"]],[15,16,["H4994"]],[16,18,["H5869"]],[18,20,["H7200"]],[20,21,["H4480"]],[21,23,["H4725"]],[23,24,["H834","H8033"]],[24,25,["H859"]],[25,27,["H6828"]],[27,29,["H5045"]],[29,31,["H6924"]],[31,33,["H3220"]]]},{"k":333,"v":[[0,1,["H3588","(H853)"]],[1,2,["H3605"]],[2,4,["H776"]],[4,5,["H834"]],[5,6,["H859"]],[6,7,["H7200"]],[7,12,["H5414"]],[12,17,["H2233"]],[17,19,["H5704","H5769"]]]},{"k":334,"v":[[0,4,["H7760","(H853)"]],[4,6,["H2233"]],[6,9,["H6083"]],[9,12,["H776"]],[12,14,["H834"]],[14,15,["H518"]],[15,17,["H376"]],[17,18,["H3201"]],[18,19,["H4487","(H853)"]],[19,21,["H6083"]],[21,24,["H776"]],[24,28,["H2233"]],[28,29,["H1571"]],[29,31,["H4487"]]]},{"k":335,"v":[[0,1,["H6965"]],[1,2,["H1980"]],[2,5,["H776"]],[5,8,["H753"]],[8,14,["H7341"]],[14,17,["H3588"]],[17,20,["H5414"]],[20,23,[]]]},{"k":336,"v":[[0,2,["H87"]],[2,5,["H167"]],[5,7,["H935"]],[7,9,["H3427"]],[9,12,["H436"]],[12,14,["H4471"]],[14,15,["H834"]],[15,18,["H2275"]],[18,20,["H1129"]],[20,21,["H8033"]],[21,23,["H4196"]],[23,26,["H3068"]]]},{"k":337,"v":[[0,5,["H1961"]],[5,8,["H3117"]],[8,10,["H569"]],[10,11,["H4428"]],[11,13,["H8152"]],[13,14,["H746"]],[14,15,["H4428"]],[15,17,["H495"]],[17,18,["H3540"]],[18,19,["H4428"]],[19,21,["H5867"]],[21,23,["H8413"]],[23,24,["H4428"]],[24,26,["H1471"]]]},{"k":338,"v":[[0,3,["H6213"]],[3,4,["H4421"]],[4,5,["H854"]],[5,6,["H1298"]],[6,7,["H4428"]],[7,9,["H5467"]],[9,11,["H854"]],[11,12,["H1306"]],[12,13,["H4428"]],[13,15,["H6017"]],[15,16,["H8134"]],[16,17,["H4428"]],[17,19,["H126"]],[19,21,["H8038"]],[21,22,["H4428"]],[22,24,["H6636"]],[24,27,["H4428"]],[27,29,["H1106"]],[29,30,["H1931"]],[30,32,["H6820"]]]},{"k":339,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,5,["H2266"]],[5,6,["H413"]],[6,8,["H6010"]],[8,10,["H7708"]],[10,11,["H1931"]],[11,14,["H4417"]],[14,15,["H3220"]]]},{"k":340,"v":[[0,1,["H8147","H6240"]],[1,2,["H8141"]],[2,4,["H5647","(H853)"]],[4,5,["H3540"]],[5,9,["H7969","H6240"]],[9,10,["H8141"]],[10,12,["H4775"]]]},{"k":341,"v":[[0,4,["H702","H6240"]],[4,5,["H8141"]],[5,6,["H935"]],[6,7,["H3540"]],[7,10,["H4428"]],[10,11,["H834"]],[11,13,["H854"]],[13,16,["H5221","(H853)"]],[16,18,["H7497"]],[18,21,["H6255"]],[21,24,["H2104"]],[24,26,["H1990"]],[26,29,["H368"]],[29,32,["H7741"]]]},{"k":342,"v":[[0,3,["H2752"]],[3,6,["H2042"]],[6,7,["H8165"]],[7,8,["H5704"]],[8,9,["H364"]],[9,10,["H834"]],[10,12,["H5921"]],[12,14,["H4057"]]]},{"k":343,"v":[[0,3,["H7725"]],[3,5,["H935"]],[5,6,["H413"]],[6,7,["H5880"]],[7,8,["H1931"]],[8,10,["H6946"]],[10,12,["H5221","(H853)"]],[12,13,["H3605"]],[13,15,["H7704"]],[15,18,["H6003"]],[18,20,["H1571","(H853)"]],[20,22,["H567"]],[22,24,["H3427"]],[24,26,["H2688"]]]},{"k":344,"v":[[0,4,["H3318"]],[4,6,["H4428"]],[6,8,["H5467"]],[8,11,["H4428"]],[11,13,["H6017"]],[13,16,["H4428"]],[16,18,["H126"]],[18,21,["H4428"]],[21,23,["H6636"]],[23,26,["H4428"]],[26,28,["H1106"]],[28,30,["H1931"]],[30,32,["H6820"]],[32,35,["H6186"]],[35,36,["H4421"]],[36,37,["H854"]],[37,41,["H6010"]],[41,43,["H7708"]]]},{"k":345,"v":[[0,1,["H854"]],[1,2,["H3540"]],[2,4,["H4428"]],[4,6,["H5867"]],[6,9,["H8413"]],[9,10,["H4428"]],[10,12,["H1471"]],[12,14,["H569"]],[14,15,["H4428"]],[15,17,["H8152"]],[17,19,["H746"]],[19,20,["H4428"]],[20,22,["H495"]],[22,23,["H702"]],[23,24,["H4428"]],[24,25,["H854"]],[25,26,["H2568"]]]},{"k":346,"v":[[0,3,["H6010"]],[3,5,["H7708"]],[5,9,["H875","H875","H2564"]],[9,12,["H4428"]],[12,14,["H5467"]],[14,16,["H6017"]],[16,17,["H5127"]],[17,19,["H5307"]],[19,20,["H8033"]],[20,24,["H7604"]],[24,25,["H5127"]],[25,28,["H2022"]]]},{"k":347,"v":[[0,3,["H3947","(H853)"]],[3,4,["H3605"]],[4,6,["H7399"]],[6,8,["H5467"]],[8,10,["H6017"]],[10,12,["H3605"]],[12,14,["H400"]],[14,18,["H1980"]]]},{"k":348,"v":[[0,3,["H3947","(H853)"]],[3,4,["H3876"]],[4,5,["H87"]],[5,6,["H251"]],[6,7,["H1121"]],[7,8,["H1931"]],[8,9,["H3427"]],[9,11,["H5467"]],[11,14,["H7399"]],[14,16,["H1980"]]]},{"k":349,"v":[[0,3,["H935"]],[3,7,["H6412"]],[7,9,["H5046"]],[9,10,["H87"]],[10,12,["H5680"]],[12,14,["H1931"]],[14,15,["H7931"]],[15,18,["H436"]],[18,20,["H4471"]],[20,22,["H567"]],[22,23,["H251"]],[23,25,["H812"]],[25,27,["H251"]],[27,29,["H6063"]],[29,31,["H1992"]],[31,33,["H1167","H1285"]],[33,35,["H87"]]]},{"k":350,"v":[[0,3,["H87"]],[3,4,["H8085"]],[4,5,["H3588"]],[5,7,["H251"]],[7,10,["H7617"]],[10,12,["H7324","(H853)"]],[12,14,["H2593"]],[14,16,["H3211"]],[16,20,["H1004"]],[20,21,["H7969"]],[21,22,["H3967"]],[22,24,["H8083","H6240"]],[24,26,["H7291"]],[26,28,["H5704"]],[28,29,["H1835"]]]},{"k":351,"v":[[0,4,["H2505"]],[4,5,["H5921"]],[5,7,["H1931"]],[7,10,["H5650"]],[10,12,["H3915"]],[12,14,["H5221"]],[14,17,["H7291"]],[17,19,["H5704"]],[19,20,["H2327"]],[20,21,["H834"]],[21,26,["H4480","H8040"]],[26,28,["H1834"]]]},{"k":352,"v":[[0,4,["H7725","(H853)"]],[4,5,["H3605"]],[5,7,["H7399"]],[7,9,["H1571"]],[9,11,["H7725"]],[11,13,["H251","(H853)"]],[13,14,["H3876"]],[14,17,["H7399"]],[17,18,["(H853)"]],[18,20,["H802"]],[20,21,["H1571"]],[21,24,["H5971"]]]},{"k":353,"v":[[0,3,["H4428"]],[3,5,["H5467"]],[5,7,["H3318"]],[7,9,["H7125"]],[9,11,["H310"]],[11,13,["H7725"]],[13,16,["H4480","H5221"]],[16,17,["(H853)"]],[17,18,["H3540"]],[18,22,["H4428"]],[22,23,["H834"]],[23,25,["H854"]],[25,27,["H413"]],[27,29,["H6010"]],[29,31,["H7740"]],[31,32,["H1931"]],[32,35,["H4428"]],[35,36,["H6010"]]]},{"k":354,"v":[[0,2,["H4442"]],[2,3,["H4428"]],[3,5,["H8004"]],[5,7,["H3318"]],[7,8,["H3899"]],[8,10,["H3196"]],[10,12,["H1931"]],[12,15,["H3548"]],[15,19,["H5945"]],[19,20,["H410"]]]},{"k":355,"v":[[0,3,["H1288"]],[3,6,["H559"]],[6,7,["H1288"]],[7,9,["H87"]],[9,13,["H5945"]],[13,14,["H410"]],[14,15,["H7069"]],[15,17,["H8064"]],[17,19,["H776"]]]},{"k":356,"v":[[0,2,["H1288"]],[2,6,["H5945"]],[6,7,["H410"]],[7,8,["H834"]],[8,10,["H4042"]],[10,12,["H6862"]],[12,15,["H3027"]],[15,18,["H5414"]],[18,20,["H4643"]],[20,22,["H4480","H3605"]]]},{"k":357,"v":[[0,3,["H4428"]],[3,5,["H5467"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H87"]],[8,9,["H5414"]],[9,12,["H5315"]],[12,14,["H3947"]],[14,16,["H7399"]],[16,18,[]]]},{"k":358,"v":[[0,2,["H87"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,8,["H5467"]],[8,12,["H7311"]],[12,14,["H3027"]],[14,15,["H413"]],[15,17,["H3068"]],[17,20,["H5945"]],[20,21,["H410"]],[21,23,["H7069"]],[23,25,["H8064"]],[25,27,["H776"]]]},{"k":359,"v":[[0,4,["H518"]],[4,8,["H4480","H2339"]],[8,10,["H5704"]],[10,12,["H8288","H5275"]],[12,17,["H518"]],[17,18,["H3947"]],[18,20,["H4480","H3605"]],[20,21,["H834"]],[21,24,["H3808"]],[24,27,["H559"]],[27,28,["H589"]],[28,32,["H6238","(H853)","H87"]]]},{"k":360,"v":[[0,1,["H1107"]],[1,2,["H7535"]],[2,4,["H834"]],[4,7,["H5288"]],[7,9,["H398"]],[9,12,["H2506"]],[12,15,["H376"]],[15,16,["H834"]],[16,17,["H1980"]],[17,18,["H854"]],[18,20,["H6063"]],[20,21,["H812"]],[21,23,["H4471"]],[23,25,["H1992"]],[25,26,["H3947"]],[26,28,["H2506"]]]},{"k":361,"v":[[0,1,["H310"]],[1,2,["H428"]],[2,3,["H1697"]],[3,5,["H1697"]],[5,8,["H3068"]],[8,9,["H1961"]],[9,10,["H413"]],[10,11,["H87"]],[11,14,["H4236"]],[14,15,["H559"]],[15,16,["H3372"]],[16,17,["H408"]],[17,18,["H87"]],[18,19,["H595"]],[19,22,["H4043"]],[22,25,["H3966"]],[25,26,["H7235"]],[26,27,["H7939"]]]},{"k":362,"v":[[0,2,["H87"]],[2,3,["H559"]],[3,4,["H136"]],[4,5,["H3069"]],[5,6,["H4100"]],[6,9,["H5414"]],[9,12,["H595"]],[12,13,["H1980"]],[13,14,["H6185"]],[14,17,["H1121","H4943"]],[17,20,["H1004"]],[20,22,["H1931"]],[22,23,["H461"]],[23,25,["H1834"]]]},{"k":363,"v":[[0,2,["H87"]],[2,3,["H559"]],[3,4,["H2005"]],[4,9,["H5414"]],[9,10,["H3808"]],[10,11,["H2233"]],[11,13,["H2009"]],[13,15,["H1121"]],[15,18,["H1004"]],[18,21,["H3423"]]]},{"k":364,"v":[[0,2,["H2009"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,9,["H413"]],[9,11,["H559"]],[11,12,["H2088"]],[12,14,["H3808"]],[14,17,["H3423"]],[17,18,["H3588","H518"]],[18,20,["H834"]],[20,23,["H3318"]],[23,28,["H4480","H4578"]],[28,32,["H3423"]]]},{"k":365,"v":[[0,5,["H3318","(H853)"]],[5,6,["H2351"]],[6,8,["H559"]],[8,9,["H5027"]],[9,10,["H4994"]],[10,12,["H8064"]],[12,14,["H5608"]],[14,16,["H3556"]],[16,17,["H518"]],[17,20,["H3201"]],[20,22,["H5608"]],[22,26,["H559"]],[26,29,["H3541"]],[29,32,["H2233"]],[32,33,["H1961"]]]},{"k":366,"v":[[0,3,["H539"]],[3,6,["H3068"]],[6,9,["H2803"]],[9,14,["H6666"]]]},{"k":367,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H589"]],[6,9,["H3068"]],[9,10,["H834"]],[10,11,["H3318"]],[11,15,["H4480","H218"]],[15,18,["H3778"]],[18,20,["H5414"]],[20,21,["(H853)"]],[21,22,["H2063"]],[22,23,["H776"]],[23,25,["H3423"]],[25,26,[]]]},{"k":368,"v":[[0,3,["H559"]],[3,4,["H136"]],[4,5,["H3069"]],[5,6,["H4100"]],[6,9,["H3045"]],[9,10,["H3588"]],[10,13,["H3423"]],[13,14,[]]]},{"k":369,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3947"]],[6,9,["H5697"]],[9,13,["H8027"]],[13,17,["H5795"]],[17,21,["H8027"]],[21,24,["H352"]],[24,28,["H8027"]],[28,31,["H8449"]],[31,35,["H1469"]]]},{"k":370,"v":[[0,3,["H3947"]],[3,5,["(H853)"]],[5,6,["H3605"]],[6,7,["H428"]],[7,9,["H1334"]],[9,13,["H8432"]],[13,15,["H5414"]],[15,16,["H376"]],[16,17,["H1335"]],[17,19,["H7125"]],[19,20,["H7453"]],[20,23,["H6833"]],[23,24,["H1334"]],[24,26,["H3808"]]]},{"k":371,"v":[[0,4,["H5861"]],[4,6,["H3381"]],[6,7,["H5921"]],[7,9,["H6297"]],[9,10,["H87"]],[10,13,["H5380","(H853)"]]]},{"k":372,"v":[[0,4,["H8121"]],[4,7,["H935"]],[7,10,["H8639"]],[10,11,["H5307"]],[11,12,["H5921"]],[12,13,["H87"]],[13,15,["H2009"]],[15,17,["H367"]],[17,19,["H1419"]],[19,20,["H2825"]],[20,21,["H5307"]],[21,22,["H5921"]],[22,23,[]]]},{"k":373,"v":[[0,3,["H559"]],[3,5,["H87"]],[5,9,["H3045","H3045"]],[9,10,["H3588"]],[10,12,["H2233"]],[12,14,["H1961"]],[14,16,["H1616"]],[16,19,["H776"]],[19,22,["H3808"]],[22,26,["H5647"]],[26,31,["H6031"]],[31,33,["H702"]],[33,34,["H3967"]],[34,35,["H8141"]]]},{"k":374,"v":[[0,2,["H1571","(H853)"]],[2,4,["H1471"]],[4,5,["H834"]],[5,8,["H5647"]],[8,10,["H595"]],[10,11,["H1777"]],[11,13,["H310","H3651"]],[13,17,["H3318"]],[17,19,["H1419"]],[19,20,["H7399"]]]},{"k":375,"v":[[0,2,["H859"]],[2,4,["H935"]],[4,5,["H413"]],[5,7,["H1"]],[7,9,["H7965"]],[9,13,["H6912"]],[13,16,["H2896"]],[16,18,["H7872"]]]},{"k":376,"v":[[0,4,["H7243"]],[4,5,["H1755"]],[5,10,["H7725","H2008"]],[10,11,["H3588"]],[11,13,["H5771"]],[13,16,["H567"]],[16,18,["H3808"]],[18,19,["H5704","H2008"]],[19,20,["H8003"]]]},{"k":377,"v":[[0,5,["H1961"]],[5,9,["H8121"]],[9,11,["H935"]],[11,14,["H1961"]],[14,15,["H5939"]],[15,16,["H2009"]],[16,18,["H6227"]],[18,19,["H8574"]],[19,22,["H784"]],[22,23,["H3940"]],[23,24,["H834"]],[24,25,["H5674"]],[25,26,["H996"]],[26,27,["H428"]],[27,28,["H1506"]]]},{"k":378,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,6,["H3068"]],[6,7,["H3772"]],[7,9,["H1285"]],[9,10,["H854"]],[10,11,["H87"]],[11,12,["H559"]],[12,15,["H2233"]],[15,18,["H5414"]],[18,19,["H2063","(H853)"]],[19,20,["H776"]],[20,23,["H4480","H5104"]],[23,25,["H4714"]],[25,26,["H5704"]],[26,28,["H1419"]],[28,29,["H5104"]],[29,31,["H5104"]],[31,32,["H6578"]]]},{"k":379,"v":[[0,0,["(H853)"]],[0,2,["H7017"]],[2,5,["H7074"]],[5,8,["H6935"]]]},{"k":380,"v":[[0,3,["H2850"]],[3,6,["H6522"]],[6,9,["H7497"]]]},{"k":381,"v":[[0,3,["H567"]],[3,6,["H3669"]],[6,9,["H1622"]],[9,12,["H2983"]]]},{"k":382,"v":[[0,2,["H8297"]],[2,3,["H87"]],[3,4,["H802"]],[4,8,["H3205","H3808"]],[8,13,["H8198"]],[13,15,["H4713"]],[15,17,["H8034"]],[17,19,["H1904"]]]},{"k":383,"v":[[0,2,["H8297"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H87"]],[5,6,["H2009"]],[6,7,["H4994"]],[7,9,["H3068"]],[9,11,["H6113"]],[11,14,["H4480","H3205"]],[14,17,["H4994"]],[17,19,["H935"]],[19,20,["H413"]],[20,22,["H8198"]],[22,25,["H194"]],[25,30,["H1129"]],[30,31,["H4480"]],[31,34,["H87"]],[34,35,["H8085"]],[35,38,["H6963"]],[38,40,["H8297"]]]},{"k":384,"v":[[0,2,["H8297"]],[2,3,["H87"]],[3,4,["H802"]],[4,5,["H3947","(H853)"]],[5,6,["H1904"]],[6,8,["H8198"]],[8,10,["H4713"]],[10,11,["H4480","H7093"]],[11,12,["H87"]],[12,14,["H3427"]],[14,15,["H6235"]],[15,16,["H8141"]],[16,19,["H776"]],[19,21,["H3667"]],[21,23,["H5414"]],[23,27,["H376"]],[27,28,["H87"]],[28,32,["H802"]]]},{"k":385,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,6,["H1904"]],[6,9,["H2029"]],[9,13,["H7200"]],[13,14,["H3588"]],[14,17,["H2029"]],[17,19,["H1404"]],[19,21,["H7043"]],[21,24,["H5869"]]]},{"k":386,"v":[[0,2,["H8297"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H87"]],[5,7,["H2555"]],[7,9,["H5921"]],[9,11,["H595"]],[11,13,["H5414"]],[13,15,["H8198"]],[15,18,["H2436"]],[18,22,["H7200"]],[22,23,["H3588"]],[23,26,["H2029"]],[26,29,["H7043"]],[29,32,["H5869"]],[32,34,["H3068"]],[34,35,["H8199"]],[35,36,["H996"]],[36,39,[]]]},{"k":387,"v":[[0,2,["H87"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H8297"]],[5,6,["H2009"]],[6,8,["H8198"]],[8,12,["H3027"]],[12,13,["H6213"]],[13,18,["H2896","H5869"]],[18,22,["H8297"]],[22,24,["H6031"]],[24,28,["H1272"]],[28,31,["H4480","H6440"]]]},{"k":388,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H4672"]],[7,9,["H5921"]],[9,11,["H5869"]],[11,13,["H4325"]],[13,16,["H4057"]],[16,17,["H5921"]],[17,19,["H5869"]],[19,22,["H1870"]],[22,24,["H7793"]]]},{"k":389,"v":[[0,3,["H559"]],[3,4,["H1904"]],[4,5,["H8297"]],[5,6,["H8198"]],[6,7,["H335","H4480","H2088"]],[7,8,["H935"]],[8,11,["H575"]],[11,14,["H1980"]],[14,17,["H559"]],[17,18,["H595"]],[18,19,["H1272"]],[19,22,["H4480","H6440"]],[22,25,["H1404"]],[25,26,["H8297"]]]},{"k":390,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H559"]],[7,10,["H7725"]],[10,11,["H413"]],[11,13,["H1404"]],[13,16,["H6031"]],[16,17,["H8478"]],[17,19,["H3027"]]]},{"k":391,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H559"]],[7,15,["H7235","H7235","(H853)","H2233"]],[15,19,["H3808"]],[19,21,["H5608"]],[21,23,["H4480","H7230"]]]},{"k":392,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H559"]],[7,10,["H2009"]],[10,14,["H2030"]],[14,17,["H3205"]],[17,19,["H1121"]],[19,22,["H7121"]],[22,24,["H8034"]],[24,25,["H3458"]],[25,26,["H3588"]],[26,28,["H3068"]],[28,30,["H8085","H413"]],[30,32,["H6040"]]]},{"k":393,"v":[[0,2,["H1931"]],[2,4,["H1961"]],[4,6,["H6501"]],[6,7,["H120"]],[7,9,["H3027"]],[9,14,["H3605"]],[14,17,["H3605"]],[17,18,["H3027"]],[18,24,["H7931"]],[24,27,["H5921","H6440"]],[27,29,["H3605"]],[29,31,["H251"]]]},{"k":394,"v":[[0,3,["H7121"]],[3,5,["H8034"]],[5,8,["H3068"]],[8,10,["H1696"]],[10,11,["H413"]],[11,13,["H859"]],[13,14,["H410"]],[14,15,["H7210"]],[15,17,["H3588"]],[17,19,["H559"]],[19,22,["H1571"]],[22,23,["H1988"]],[23,24,["H7200"]],[24,25,["H310"]],[25,28,["H7200"]],[28,29,[]]]},{"k":395,"v":[[0,1,["H5921","H3651"]],[1,3,["H875"]],[3,5,["H7121"]],[5,6,["H883"]],[6,7,["H2009"]],[7,10,["H996"]],[10,11,["H6946"]],[11,13,["H1260"]]]},{"k":396,"v":[[0,2,["H1904"]],[2,3,["H3205"]],[3,4,["H87"]],[4,6,["H1121"]],[6,8,["H87"]],[8,9,["H7121"]],[9,11,["H1121"]],[11,12,["H8034"]],[12,13,["H834"]],[13,14,["H1904"]],[14,15,["H3205"]],[15,16,["H3458"]]]},{"k":397,"v":[[0,2,["H87"]],[2,4,["H8084"]],[4,6,["H8337"]],[6,7,["H8141"]],[7,8,["H1121"]],[8,10,["H1904"]],[10,11,["H3205","(H853)"]],[11,12,["H3458"]],[12,14,["H87"]]]},{"k":398,"v":[[0,3,["H87"]],[3,4,["H1961"]],[4,5,["H8673"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,9,["H8672"]],[9,11,["H3068"]],[11,12,["H7200"]],[12,13,["H413"]],[13,14,["H87"]],[14,16,["H559"]],[16,17,["H413"]],[17,19,["H589"]],[19,22,["H7706"]],[22,23,["H410"]],[23,24,["H1980"]],[24,25,["H6440"]],[25,28,["H1961"]],[28,30,["H8549"]]]},{"k":399,"v":[[0,4,["H5414"]],[4,6,["H1285"]],[6,7,["H996"]],[7,13,["H7235"]],[13,15,["H3966","H3966"]]]},{"k":400,"v":[[0,2,["H87"]],[2,3,["H5307"]],[3,4,["H5921"]],[4,6,["H6440"]],[6,8,["H430"]],[8,9,["H1696"]],[9,10,["H854"]],[10,12,["H559"]]]},{"k":401,"v":[[0,3,["H589"]],[3,4,["H2009"]],[4,6,["H1285"]],[6,8,["H854"]],[8,13,["H1961"]],[13,15,["H1"]],[15,17,["H1995"]],[17,18,["H1471"]]]},{"k":402,"v":[[0,1,["H3808"]],[1,2,["(H853)"]],[2,4,["H8034"]],[4,6,["H5750"]],[6,8,["H7121"]],[8,9,["H87"]],[9,12,["H8034"]],[12,14,["H1961"]],[14,15,["H85"]],[15,16,["H3588"]],[16,18,["H1"]],[18,20,["H1995"]],[20,21,["H1471"]],[21,24,["H5414"]],[24,25,[]]]},{"k":403,"v":[[0,6,["H3966","H3966"]],[6,7,["H6509"]],[7,11,["H5414"]],[11,12,["H1471"]],[12,16,["H4428"]],[16,19,["H3318"]],[19,20,["H4480"]],[20,21,[]]]},{"k":404,"v":[[0,4,["H6965","(H853)"]],[4,6,["H1285"]],[6,7,["H996"]],[7,13,["H2233"]],[13,14,["H310"]],[14,18,["H1755"]],[18,21,["H5769"]],[21,22,["H1285"]],[22,24,["H1961"]],[24,26,["H430"]],[26,32,["H2233"]],[32,33,["H310"]],[33,34,[]]]},{"k":405,"v":[[0,4,["H5414"]],[4,10,["H2233"]],[10,11,["H310"]],[11,12,["(H853)"]],[12,14,["H776"]],[14,19,["H4033","(H853)"]],[19,20,["H3605"]],[20,22,["H776"]],[22,24,["H3667"]],[24,27,["H5769"]],[27,28,["H272"]],[28,32,["H1961"]],[32,34,["H430"]]]},{"k":406,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H85"]],[5,6,["H859"]],[6,8,["H8104","(H853)"]],[8,10,["H1285"]],[10,12,["H859"]],[12,15,["H2233"]],[15,16,["H310"]],[16,20,["H1755"]]]},{"k":407,"v":[[0,1,["H2063"]],[1,4,["H1285"]],[4,5,["H834"]],[5,8,["H8104"]],[8,9,["H996"]],[9,15,["H2233"]],[15,16,["H310"]],[16,18,["H3605"]],[18,20,["H2145"]],[20,25,["H4135"]]]},{"k":408,"v":[[0,4,["H4135","(H853)"]],[4,6,["H1320"]],[6,9,["H6190"]],[9,13,["H1961"]],[13,15,["H226"]],[15,18,["H1285"]],[18,19,["H996"]],[19,22,[]]]},{"k":409,"v":[[0,5,["H8083"]],[5,6,["H3117"]],[6,7,["H1121"]],[7,10,["H4135"]],[10,13,["H3605"]],[13,15,["H2145"]],[15,18,["H1755"]],[18,22,["H3211"]],[22,25,["H1004"]],[25,27,["H4736"]],[27,29,["H3701"]],[29,31,["H4480","H3605"]],[31,32,["H1121","H5236"]],[32,33,["H834"]],[33,35,["H3808"]],[35,38,["H4480","H2233"]]]},{"k":410,"v":[[0,4,["H3211"]],[4,7,["H1004"]],[7,12,["H4736"]],[12,15,["H3701"]],[15,19,["H4135","H4135"]],[19,22,["H1285"]],[22,24,["H1961"]],[24,27,["H1320"]],[27,30,["H5769"]],[30,31,["H1285"]]]},{"k":411,"v":[[0,3,["H6189"]],[3,5,["H2145"]],[5,6,["H834","(H853)"]],[6,7,["H1320"]],[7,10,["H6190"]],[10,12,["H3808"]],[12,13,["H4135"]],[13,14,["H1931"]],[14,15,["H5315"]],[15,19,["H3772"]],[19,22,["H4480","H5971"]],[22,25,["H6565","(H853)"]],[25,27,["H1285"]]]},{"k":412,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H85"]],[5,8,["H8297"]],[8,10,["H802"]],[10,13,["H3808"]],[13,14,["H7121","(H853)"]],[14,16,["H8034"]],[16,17,["H8297"]],[17,18,["H3588"]],[18,19,["H8283"]],[19,22,["H8034"]],[22,23,[]]]},{"k":413,"v":[[0,4,["H1288"]],[4,7,["H5414"]],[7,10,["H1121"]],[10,11,["H1571"]],[11,12,["H4480"]],[12,17,["H1288"]],[17,22,["H1961"]],[22,26,["H1471"]],[26,27,["H4428"]],[27,29,["H5971"]],[29,31,["H1961"]],[31,32,["H4480"]],[32,33,[]]]},{"k":414,"v":[[0,2,["H85"]],[2,3,["H5307"]],[3,4,["H5921"]],[4,6,["H6440"]],[6,8,["H6711"]],[8,10,["H559"]],[10,13,["H3820"]],[13,18,["H3205"]],[18,24,["H3967"]],[24,25,["H8141"]],[25,26,["H1121"]],[26,29,["H8283"]],[29,32,["H8673"]],[32,33,["H8141"]],[33,34,["H1323"]],[34,35,["H3205"]]]},{"k":415,"v":[[0,2,["H85"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H430"]],[5,7,["H3863"]],[7,8,["H3458"]],[8,10,["H2421"]],[10,11,["H6440"]],[11,12,[]]]},{"k":416,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H8283"]],[4,6,["H802"]],[6,8,["H3205"]],[8,11,["H1121"]],[11,12,["H61"]],[12,16,["H7121","(H853)"]],[16,18,["H8034"]],[18,19,["H3327"]],[19,23,["H6965","(H853)"]],[23,25,["H1285"]],[25,26,["H854"]],[26,30,["H5769"]],[30,31,["H1285"]],[31,35,["H2233"]],[35,36,["H310"]],[36,37,[]]]},{"k":417,"v":[[0,4,["H3458"]],[4,7,["H8085"]],[7,9,["H2009"]],[9,12,["H1288"]],[12,18,["H6509","(H853)"]],[18,21,["H7235"]],[21,23,["H3966","H3966"]],[23,24,["H8147","H6240"]],[24,25,["H5387"]],[25,28,["H3205"]],[28,32,["H5414"]],[32,35,["H1419"]],[35,36,["H1471"]]]},{"k":418,"v":[[0,3,["H1285"]],[3,6,["H6965"]],[6,7,["H854"]],[7,8,["H3327"]],[8,9,["H834"]],[9,10,["H8283"]],[10,12,["H3205"]],[12,16,["H2088"]],[16,18,["H4150"]],[18,21,["H312"]],[21,22,["H8141"]]]},{"k":419,"v":[[0,4,["H3615"]],[4,5,["H1696"]],[5,6,["H854"]],[6,9,["H430"]],[9,11,["H5927"]],[11,12,["H4480","H5921"]],[12,13,["H85"]]]},{"k":420,"v":[[0,2,["H85"]],[2,3,["H3947","(H853)"]],[3,4,["H3458"]],[4,6,["H1121"]],[6,8,["H3605"]],[8,11,["H3211"]],[11,14,["H1004"]],[14,16,["H3605"]],[16,19,["H4736"]],[19,22,["H3701"]],[22,23,["H3605"]],[23,24,["H2145"]],[24,27,["H376"]],[27,29,["H85"]],[29,30,["H1004"]],[30,32,["H4135","(H853)"]],[32,34,["H1320"]],[34,37,["H6190"]],[37,40,["H6106","H2088"]],[40,41,["H3117"]],[41,42,["H834"]],[42,43,["H430"]],[43,45,["H1696"]],[45,46,["H854"]],[46,47,[]]]},{"k":421,"v":[[0,2,["H85"]],[2,4,["H8673"]],[4,5,["H8141"]],[5,6,["H1121"]],[6,8,["H8672"]],[8,12,["H4135"]],[12,15,["H1320"]],[15,18,["H6190"]]]},{"k":422,"v":[[0,2,["H3458"]],[2,4,["H1121"]],[4,6,["H7969","H6240"]],[6,7,["H8141"]],[7,8,["H1121"]],[8,12,["H4135","(H853)"]],[12,15,["H1320"]],[15,18,["H6190"]]]},{"k":423,"v":[[0,3,["H6106","H2088"]],[3,4,["H3117"]],[4,6,["H85"]],[6,7,["H4135"]],[7,9,["H3458"]],[9,11,["H1121"]]]},{"k":424,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,7,["H1004"]],[7,8,["H3211"]],[8,11,["H1004"]],[11,13,["H4736"]],[13,15,["H3701"]],[15,16,["H4480","H854"]],[16,18,["H1121","H5236"]],[18,20,["H4135"]],[20,21,["H854"]],[21,22,[]]]},{"k":425,"v":[[0,3,["H3068"]],[3,4,["H7200"]],[4,5,["H413"]],[5,9,["H436"]],[9,11,["H4471"]],[11,13,["H1931"]],[13,14,["H3427"]],[14,17,["H168"]],[17,18,["H6607"]],[18,21,["H2527"]],[21,24,["H3117"]]]},{"k":426,"v":[[0,4,["H5375"]],[4,6,["H5869"]],[6,8,["H7200"]],[8,10,["H2009"]],[10,11,["H7969"]],[11,12,["H376"]],[12,13,["H5324"]],[13,14,["H5921"]],[14,19,["H7200"]],[19,22,["H7323"]],[22,24,["H7125"]],[24,29,["H4480","H6607","H168"]],[29,32,["H7812"]],[32,35,["H776"]]]},{"k":427,"v":[[0,2,["H559"]],[2,4,["H136"]],[4,5,["H518"]],[5,6,["H4994"]],[6,9,["H4672"]],[9,10,["H2580"]],[10,13,["H5869"]],[13,16,["H5674","H408"]],[16,19,["H4994"]],[19,20,["H4480","H5921"]],[20,22,["H5650"]]]},{"k":428,"v":[[0,3,["H4592"]],[3,4,["H4325"]],[4,7,["H4994"]],[7,9,["H3947"]],[9,11,["H7364"]],[11,13,["H7272"]],[13,16,["H8172"]],[16,17,["H8478"]],[17,19,["H6086"]]]},{"k":429,"v":[[0,4,["H3947"]],[4,6,["H6595"]],[6,8,["H3899"]],[8,10,["H5582"]],[10,13,["H3820"]],[13,15,["H310"]],[15,19,["H5674"]],[19,20,["H3588"]],[20,21,["H5921","H3651"]],[21,24,["H5674"]],[24,25,["H5921"]],[25,27,["H5650"]],[27,30,["H559"]],[30,31,["H3651"]],[31,32,["H6213"]],[32,33,["H834"]],[33,36,["H1696"]]]},{"k":430,"v":[[0,2,["H85"]],[2,3,["H4116"]],[3,6,["H168"]],[6,7,["H413"]],[7,8,["H8283"]],[8,10,["H559"]],[10,13,["H4116"]],[13,14,["H7969"]],[14,15,["H5429"]],[15,17,["H5560"]],[17,18,["H7058"]],[18,19,["H3888"]],[19,22,["H6213"]],[22,26,["H5692"]]]},{"k":431,"v":[[0,2,["H85"]],[2,3,["H7323"]],[3,4,["H413"]],[4,6,["H1241"]],[6,8,["H3947"]],[8,10,["H1121","H1241"]],[10,11,["H7390"]],[11,13,["H2896"]],[13,15,["H5414"]],[15,17,["H413"]],[17,20,["H5288"]],[20,23,["H4116"]],[23,25,["H6213"]],[25,26,[]]]},{"k":432,"v":[[0,3,["H3947"]],[3,4,["H2529"]],[4,6,["H2461"]],[6,9,["H1121","H1241"]],[9,10,["H834"]],[10,13,["H6213"]],[13,15,["H5414"]],[15,17,["H6440"]],[17,20,["H1931"]],[20,21,["H5975"]],[21,22,["H5921"]],[22,24,["H8478"]],[24,26,["H6086"]],[26,30,["H398"]]]},{"k":433,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H346"]],[6,8,["H8283"]],[8,10,["H802"]],[10,13,["H559"]],[13,14,["H2009"]],[14,17,["H168"]]]},{"k":434,"v":[[0,3,["H559"]],[3,7,["H7725","H7725"]],[7,8,["H413"]],[8,13,["H6256"]],[13,15,["H2416"]],[15,17,["H2009"]],[17,18,["H8283"]],[18,20,["H802"]],[20,24,["H1121"]],[24,26,["H8283"]],[26,27,["H8085"]],[27,31,["H168"]],[31,32,["H6607"]],[32,33,["H1931"]],[33,35,["H310"]],[35,36,[]]]},{"k":435,"v":[[0,2,["H85"]],[2,4,["H8283"]],[4,6,["H2205"]],[6,9,["H935"]],[9,11,["H3117"]],[11,14,["H2308"]],[14,16,["H1961"]],[16,18,["H8283"]],[18,21,["H734"]],[21,23,["H802"]]]},{"k":436,"v":[[0,2,["H8283"]],[2,3,["H6711"]],[3,4,["H7130"]],[4,6,["H559"]],[6,7,["H310"]],[7,11,["H1086"]],[11,14,["H1961"]],[14,15,["H5730"]],[15,17,["H113"]],[17,19,["H2204"]],[19,20,[]]]},{"k":437,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H85"]],[6,7,["H4100","H2088"]],[7,9,["H8283"]],[9,10,["H6711"]],[10,11,["H559"]],[11,16,["H637","H552"]],[16,19,["H3205"]],[19,20,["H589"]],[20,22,["H2204"]]]},{"k":438,"v":[[0,3,["H1697"]],[3,5,["H6381"]],[5,8,["H4480","H3068"]],[8,12,["H4150"]],[12,15,["H7725"]],[15,16,["H413"]],[16,21,["H6256"]],[21,23,["H2416"]],[23,25,["H8283"]],[25,29,["H1121"]]]},{"k":439,"v":[[0,2,["H8283"]],[2,3,["H3584"]],[3,4,["H559"]],[4,6,["H6711"]],[6,7,["H3808"]],[7,8,["H3588"]],[8,11,["H3372"]],[11,14,["H559"]],[14,15,["H3808"]],[15,16,["H3588"]],[16,19,["H6711"]]]},{"k":440,"v":[[0,3,["H376"]],[3,5,["H6965"]],[5,7,["H4480","H8033"]],[7,9,["H8259"]],[9,10,["H5921","H6440"]],[10,11,["H5467"]],[11,13,["H85"]],[13,14,["H1980"]],[14,15,["H5973"]],[15,22,["H7971"]]]},{"k":441,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,6,["H589"]],[6,7,["H3680"]],[7,9,["H4480","H85"]],[9,12,["H834"]],[12,13,["H589"]],[13,14,["H6213"]]]},{"k":442,"v":[[0,3,["H85"]],[3,6,["H1961","H1961"]],[6,8,["H1419"]],[8,10,["H6099"]],[10,11,["H1471"]],[11,13,["H3605"]],[13,15,["H1471"]],[15,18,["H776"]],[18,21,["H1288"]],[21,23,[]]]},{"k":443,"v":[[0,1,["H3588"]],[1,3,["H3045"]],[3,5,["H4616","H834"]],[5,8,["H6680","(H853)"]],[8,10,["H1121"]],[10,13,["H1004"]],[13,14,["H310"]],[14,19,["H8104"]],[19,21,["H1870"]],[21,24,["H3068"]],[24,26,["H6213"]],[26,27,["H6666"]],[27,29,["H4941"]],[29,30,["H4616"]],[30,32,["H3068"]],[32,34,["H935"]],[34,35,["H5921"]],[35,36,["H85","(H853)"]],[36,38,["H834"]],[38,41,["H1696"]],[41,42,["H5921"]],[42,43,[]]]},{"k":444,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H3588"]],[5,7,["H2201"]],[7,9,["H5467"]],[9,11,["H6017"]],[11,13,["H7231"]],[13,15,["H3588"]],[15,17,["H2403"]],[17,19,["H3966"]],[19,20,["H3513"]]]},{"k":445,"v":[[0,4,["H3381"]],[4,5,["H4994"]],[5,7,["H7200"]],[7,11,["H6213"]],[11,12,["H3617"]],[12,16,["H6818"]],[16,21,["H935"]],[21,22,["H413"]],[22,25,["H518"]],[25,26,["H3808"]],[26,29,["H3045"]]]},{"k":446,"v":[[0,3,["H376"]],[3,6,["H6437"]],[6,8,["H4480","H8033"]],[8,10,["H1980"]],[10,12,["H5467"]],[12,14,["H85"]],[14,15,["H5975"]],[15,16,["H5750"]],[16,17,["H6440"]],[17,19,["H3068"]]]},{"k":447,"v":[[0,2,["H85"]],[2,4,["H5066"]],[4,6,["H559"]],[6,9,["H637"]],[9,10,["H5595"]],[10,12,["H6662"]],[12,13,["H5973"]],[13,15,["H7563"]]]},{"k":448,"v":[[0,1,["H194"]],[1,3,["H3426"]],[3,4,["H2572"]],[4,5,["H6662"]],[5,6,["H8432"]],[6,8,["H5892"]],[8,11,["H637"]],[11,12,["H5595"]],[12,14,["H3808"]],[14,15,["H5375"]],[15,17,["H4725"]],[17,18,["H4616"]],[18,20,["H2572"]],[20,21,["H6662"]],[21,22,["H834"]],[22,24,["H7130"]]]},{"k":449,"v":[[0,3,["H2486"]],[3,7,["H4480","H6213"]],[7,9,["H2088"]],[9,10,["H1697"]],[10,12,["H4191"]],[12,14,["H6662"]],[14,15,["H5973"]],[15,17,["H7563"]],[17,21,["H6662"]],[21,23,["H1961"]],[23,26,["H7563"]],[26,29,["H2486"]],[29,33,["H3808"]],[33,35,["H8199"]],[35,37,["H3605"]],[37,39,["H776"]],[39,40,["H6213"]],[40,41,["H4941"]]]},{"k":450,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H518"]],[5,7,["H4672"]],[7,9,["H5467"]],[9,10,["H2572"]],[10,11,["H6662"]],[11,12,["H8432"]],[12,14,["H5892"]],[14,18,["H5375"]],[18,19,["H3605"]],[19,21,["H4725"]],[21,24,["H5668"]]]},{"k":451,"v":[[0,2,["H85"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H2009"]],[6,7,["H4994"]],[7,11,["H2974"]],[11,14,["H1696"]],[14,15,["H413"]],[15,17,["H136"]],[17,18,["H595"]],[18,21,["H6083"]],[21,23,["H665"]]]},{"k":452,"v":[[0,1,["H194"]],[1,4,["H2637"]],[4,5,["H2568"]],[5,8,["H2572"]],[8,9,["H6662"]],[9,12,["H7843","(H853)"]],[12,13,["H3605"]],[13,15,["H5892"]],[15,19,["H2568"]],[19,22,["H559"]],[22,23,["H518"]],[23,25,["H4672"]],[25,26,["H8033"]],[26,27,["H705"]],[27,29,["H2568"]],[29,32,["H3808"]],[32,33,["H7843"]],[33,34,[]]]},{"k":453,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H5750"]],[6,7,["H3254"]],[7,9,["H559"]],[9,10,["H194"]],[10,14,["H705"]],[14,15,["H4672"]],[15,16,["H8033"]],[16,19,["H559"]],[19,22,["H3808"]],[22,23,["H6213"]],[23,27,["H5668","H705"]]]},{"k":454,"v":[[0,3,["H559"]],[3,6,["H4994"]],[6,8,["H408"]],[8,10,["H136"]],[10,12,["H2734"]],[12,16,["H1696"]],[16,17,["H194"]],[17,20,["H7970"]],[20,22,["H4672"]],[22,23,["H8033"]],[23,26,["H559"]],[26,29,["H3808"]],[29,30,["H6213"]],[30,32,["H518"]],[32,34,["H4672"]],[34,35,["H7970"]],[35,36,["H8033"]]]},{"k":455,"v":[[0,3,["H559"]],[3,4,["H2009"]],[4,5,["H4994"]],[5,9,["H2974"]],[9,12,["H1696"]],[12,13,["H413"]],[13,15,["H136"]],[15,16,["H194"]],[16,20,["H6242"]],[20,21,["H4672"]],[21,22,["H8033"]],[22,25,["H559"]],[25,28,["H3808"]],[28,29,["H7843"]],[29,33,["H5668","H6242"]]]},{"k":456,"v":[[0,3,["H559"]],[3,4,["H4994"]],[4,6,["H408"]],[6,8,["H136"]],[8,10,["H2734"]],[10,14,["H1696"]],[14,15,["H389"]],[15,18,["H6471"]],[18,19,["H194"]],[19,20,["H6235"]],[20,23,["H4672"]],[23,24,["H8033"]],[24,27,["H559"]],[27,30,["H3808"]],[30,31,["H7843"]],[31,35,["H5668","H6235"]]]},{"k":457,"v":[[0,3,["H3068"]],[3,6,["H1980"]],[6,9,["H834"]],[9,12,["H3615"]],[12,13,["H1696"]],[13,14,["H413"]],[14,15,["H85"]],[15,17,["H85"]],[17,18,["H7725"]],[18,21,["H4725"]]]},{"k":458,"v":[[0,3,["H935"]],[3,4,["H8147"]],[4,5,["H4397"]],[5,7,["H5467"]],[7,9,["H6153"]],[9,11,["H3876"]],[11,12,["H3427"]],[12,15,["H8179"]],[15,17,["H5467"]],[17,19,["H3876"]],[19,20,["H7200"]],[20,23,["H6965"]],[23,25,["H7125"]],[25,30,["H7812"]],[30,33,["H639"]],[33,36,["H776"]]]},{"k":459,"v":[[0,3,["H559"]],[3,4,["H2009"]],[4,5,["H4994"]],[5,7,["H113"]],[7,9,["H5493"]],[9,12,["H4994"]],[12,13,["H413"]],[13,15,["H5650"]],[15,16,["H1004"]],[16,20,["H3885"]],[20,22,["H7364"]],[22,24,["H7272"]],[24,30,["H7925"]],[30,32,["H1980"]],[32,35,["H1870"]],[35,38,["H559"]],[38,39,["H3808"]],[39,40,["H3588"]],[40,48,["H3885","H7339"]]]},{"k":460,"v":[[0,3,["H6484"]],[3,6,["H3966"]],[6,10,["H5493"]],[10,11,["H413"]],[11,14,["H935"]],[14,15,["H413"]],[15,17,["H1004"]],[17,20,["H6213"]],[20,23,["H4960"]],[23,26,["H644"]],[26,28,["H4682"]],[28,32,["H398"]]]},{"k":461,"v":[[0,2,["H2962"]],[2,5,["H7901"]],[5,7,["H582"]],[7,10,["H5892"]],[10,13,["H582"]],[13,15,["H5467"]],[15,16,["H5437","H5921"]],[16,18,["H1004"]],[18,21,["H2205"]],[21,23,["H4480","H5288"]],[23,24,["H3605"]],[24,26,["H5971"]],[26,29,["H4480","H7097"]]]},{"k":462,"v":[[0,3,["H7121"]],[3,4,["H413"]],[4,5,["H3876"]],[5,7,["H559"]],[7,10,["H346"]],[10,13,["H376"]],[13,14,["H834"]],[14,16,["H935"]],[16,17,["H413"]],[17,20,["H3915"]],[20,23,["H3318"]],[23,24,["H413"]],[24,29,["H3045"]],[29,30,[]]]},{"k":463,"v":[[0,2,["H3876"]],[2,4,["H3318"]],[4,7,["H6607"]],[7,8,["H413"]],[8,11,["H5462"]],[11,13,["H1817"]],[13,14,["H310"]],[14,15,[]]]},{"k":464,"v":[[0,2,["H559"]],[2,5,["H4994"]],[5,6,["H251"]],[6,10,["H7489","H408"]]]},{"k":465,"v":[[0,1,["H2009"]],[1,2,["H4994"]],[2,5,["H8147"]],[5,6,["H1323"]],[6,7,["H834"]],[7,9,["H3808"]],[9,10,["H3045"]],[10,11,["H376"]],[11,16,["H4994"]],[16,19,["H3318","(H853)"]],[19,20,["H413"]],[20,23,["H6213"]],[23,29,["H2896"]],[29,32,["H5869"]],[32,33,["H7535"]],[33,35,["H411"]],[35,36,["H376"]],[36,37,["H6213"]],[37,38,["H408","H1697"]],[38,39,["H3588"]],[39,40,["H5921","H3651"]],[40,41,["H935"]],[41,45,["H6738"]],[45,48,["H6982"]]]},{"k":466,"v":[[0,3,["H559"]],[3,4,["H5066"]],[4,5,["H1973"]],[5,8,["H559"]],[8,11,["H259"]],[11,14,["H935"]],[14,16,["H1481"]],[16,23,["H8199","H8199"]],[23,24,["H6258"]],[24,28,["H7489"]],[28,31,["H4480"]],[31,36,["H6484"]],[36,37,["H3966"]],[37,40,["H376"]],[40,42,["H3876"]],[42,45,["H5066"]],[45,47,["H7665"]],[47,49,["H1817"]]]},{"k":467,"v":[[0,3,["H376"]],[3,5,["H7971","(H853)"]],[5,7,["H3027"]],[7,9,["H935","(H853)"]],[9,10,["H3876"]],[10,13,["H1004"]],[13,14,["H413"]],[14,18,["H5462"]],[18,20,["H1817"]]]},{"k":468,"v":[[0,3,["H5221"]],[3,5,["H376"]],[5,6,["H834"]],[6,10,["H6607"]],[10,13,["H1004"]],[13,15,["H5575"]],[15,17,["H4480","H6996"]],[17,19,["H1419"]],[19,24,["H3811"]],[24,26,["H4672"]],[26,28,["H6607"]]]},{"k":469,"v":[[0,3,["H376"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3876"]],[6,9,["H6311"]],[9,10,["H4310"]],[10,11,["H5750"]],[11,14,["H2860"]],[14,17,["H1121"]],[17,20,["H1323"]],[20,22,["H3605","H834"]],[22,27,["H5892"]],[27,28,["H3318"]],[28,31,["H4480"]],[31,33,["H4725"]]]},{"k":470,"v":[[0,1,["H3588"]],[1,2,["H587"]],[2,4,["H7843","(H853)"]],[4,5,["H2088"]],[5,6,["H4725"]],[6,7,["H3588"]],[7,9,["H6818"]],[9,14,["H1431","(H853)"]],[14,17,["H6440"]],[17,20,["H3068"]],[20,23,["H3068"]],[23,25,["H7971"]],[25,28,["H7843"]],[28,29,[]]]},{"k":471,"v":[[0,2,["H3876"]],[2,4,["H3318"]],[4,6,["H1696"]],[6,7,["H413"]],[7,11,["H2860"]],[11,13,["H3947"]],[13,15,["H1323"]],[15,17,["H559"]],[17,18,["H6965"]],[18,21,["H3318"]],[21,22,["H4480"]],[22,23,["H2088"]],[23,24,["H4725"]],[24,25,["H3588"]],[25,27,["H3068"]],[27,29,["H7843","(H853)"]],[29,31,["H5892"]],[31,34,["H1961"]],[34,38,["H6711"]],[38,39,["H5869"]],[39,43,["H2860"]]]},{"k":472,"v":[[0,2,["H3644"]],[2,4,["H7837"]],[4,5,["H5927"]],[5,8,["H4397"]],[8,9,["H213"]],[9,10,["H3876"]],[10,11,["H559"]],[11,12,["H6965"]],[12,13,["H3947","(H853)"]],[13,15,["H802"]],[15,18,["H8147"]],[18,19,["H1323"]],[19,22,["H4672"]],[22,23,["H6435"]],[23,26,["H5595"]],[26,29,["H5771"]],[29,32,["H5892"]]]},{"k":473,"v":[[0,4,["H4102"]],[4,6,["H376"]],[6,8,["H2388"]],[8,11,["H3027"]],[11,15,["H3027"]],[15,18,["H802"]],[18,22,["H3027"]],[22,25,["H8147"]],[25,26,["H1323"]],[26,28,["H3068"]],[28,30,["H2551"]],[30,31,["H5921"]],[31,37,["H3318"]],[37,39,["H5117"]],[39,41,["H4480","H2351"]],[41,43,["H5892"]]]},{"k":474,"v":[[0,5,["H1961"]],[5,11,["H3318","(H853)"]],[11,12,["H2351"]],[12,15,["H559"]],[15,16,["H4422"]],[16,17,["H5921"]],[17,19,["H5315"]],[19,20,["H5027"]],[20,21,["H408"]],[21,22,["H310"]],[22,24,["H408"]],[24,25,["H5975"]],[25,28,["H3605"]],[28,30,["H3603"]],[30,31,["H4422"]],[31,34,["H2022"]],[34,35,["H6435"]],[35,38,["H5595"]]]},{"k":475,"v":[[0,2,["H3876"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4994"]],[6,7,["H408"]],[7,10,["H136"]]]},{"k":476,"v":[[0,1,["H2009"]],[1,2,["H4994"]],[2,4,["H5650"]],[4,6,["H4672"]],[6,7,["H2580"]],[7,10,["H5869"]],[10,14,["H1431"]],[14,16,["H2617"]],[16,17,["H834"]],[17,20,["H6213"]],[20,21,["H5973"]],[21,24,["H2421","(H853)"]],[24,26,["H5315"]],[26,28,["H595"]],[28,29,["H3808","H3201"]],[29,30,["H4422"]],[30,33,["H2022"]],[33,34,["H6435"]],[34,36,["H7451"]],[36,37,["H1692"]],[37,41,["H4191"]]]},{"k":477,"v":[[0,1,["H2009"]],[1,2,["H4994"]],[2,3,["H2063"]],[3,4,["H5892"]],[4,6,["H7138"]],[6,8,["H5127"]],[8,9,["H8033"]],[9,11,["H1931"]],[11,15,["H4705"]],[15,16,["H4994"]],[16,19,["H4422"]],[19,20,["H8033"]],[20,22,["H1931"]],[22,23,["H3808"]],[23,26,["H4705"]],[26,29,["H5315"]],[29,31,["H2421"]]]},{"k":478,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H2009"]],[6,9,["H5375","H6440"]],[9,12,["H2088"]],[12,13,["H1697"]],[13,14,["H1571"]],[14,18,["H1115"]],[18,19,["H2015","(H853)"]],[19,21,["H5892"]],[21,24,["H834"]],[24,27,["H1696"]]]},{"k":479,"v":[[0,1,["H4116"]],[1,3,["H4422"]],[3,4,["H8033"]],[4,5,["H3588"]],[5,7,["H3808","H3201"]],[7,8,["H6213"]],[8,10,["H1697"]],[10,11,["H5704"]],[11,14,["H935"]],[14,15,["H8033"]],[15,16,["H5921","H3651"]],[16,18,["H8034"]],[18,21,["H5892"]],[21,23,["H7121"]],[23,24,["H6820"]]]},{"k":480,"v":[[0,2,["H8121"]],[2,4,["H3318"]],[4,5,["H5921"]],[5,7,["H776"]],[7,9,["H3876"]],[9,10,["H935"]],[10,12,["H6820"]]]},{"k":481,"v":[[0,3,["H3068"]],[3,4,["H4305"]],[4,5,["H5921"]],[5,6,["H5467"]],[6,8,["H5921"]],[8,9,["H6017"]],[9,10,["H1614"]],[10,12,["H784"]],[12,13,["H4480","H854"]],[13,15,["H3068"]],[15,17,["H4480"]],[17,18,["H8064"]]]},{"k":482,"v":[[0,3,["H2015","(H853)"]],[3,4,["H411"]],[4,5,["H5892"]],[5,7,["H3605"]],[7,9,["H3603"]],[9,11,["H3605"]],[11,13,["H3427"]],[13,16,["H5892"]],[16,20,["H6780"]],[20,23,["H127"]]]},{"k":483,"v":[[0,3,["H802"]],[3,4,["H5027"]],[4,7,["H4480","H310"]],[7,11,["H1961"]],[11,13,["H5333"]],[13,15,["H4417"]]]},{"k":484,"v":[[0,2,["H85"]],[2,5,["H7925"]],[5,8,["H1242"]],[8,9,["H413"]],[9,11,["H4725"]],[11,12,["H834","H8033"]],[12,14,["H5975","(H853)"]],[14,15,["H6440"]],[15,17,["H3068"]]]},{"k":485,"v":[[0,3,["H8259"]],[3,4,["H5921","H6440"]],[4,5,["H5467"]],[5,7,["H6017"]],[7,9,["H5921","H6440"]],[9,10,["H3605"]],[10,12,["H776"]],[12,15,["H3603"]],[15,17,["H7200"]],[17,19,["H2009"]],[19,21,["H7008"]],[21,24,["H776"]],[24,26,["H5927"]],[26,29,["H7008"]],[29,32,["H3536"]]]},{"k":486,"v":[[0,5,["H1961"]],[5,7,["H430"]],[7,8,["H7843","(H853)"]],[8,10,["H5892"]],[10,13,["H3603"]],[13,15,["H430"]],[15,16,["H2142","(H853)"]],[16,17,["H85"]],[17,19,["H7971","(H853)"]],[19,20,["H3876"]],[20,24,["H4480","H8432"]],[24,27,["H2018"]],[27,30,["H2015","(H853)"]],[30,32,["H5892"]],[32,35,["H2004","H834"]],[35,36,["H3876"]],[36,37,["H3427"]]]},{"k":487,"v":[[0,2,["H3876"]],[2,4,["H5927"]],[4,7,["H4480","H6820"]],[7,9,["H3427"]],[9,12,["H2022"]],[12,15,["H8147"]],[15,16,["H1323"]],[16,17,["H5973"]],[17,19,["H3588"]],[19,21,["H3372"]],[21,23,["H3427"]],[23,25,["H6820"]],[25,28,["H3427"]],[28,31,["H4631"]],[31,32,["H1931"]],[32,35,["H8147"]],[35,36,["H1323"]]]},{"k":488,"v":[[0,3,["H1067"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H6810"]],[7,9,["H1"]],[9,11,["H2204"]],[11,15,["H369"]],[15,17,["H376"]],[17,20,["H776"]],[20,23,["H935"]],[23,24,["H5921"]],[24,28,["H1870"]],[28,30,["H3605"]],[30,32,["H776"]]]},{"k":489,"v":[[0,1,["H1980"]],[1,4,["(H853)"]],[4,6,["H1"]],[6,7,["H8248"]],[7,8,["H3196"]],[8,12,["H7901"]],[12,13,["H5973"]],[13,18,["H2421"]],[18,19,["H2233"]],[19,22,["H4480","H1"]]]},{"k":490,"v":[[0,3,["(H853)"]],[3,5,["H1"]],[5,6,["H8248"]],[6,7,["H3196"]],[7,8,["H1931"]],[8,9,["H3915"]],[9,12,["H1067"]],[12,14,["H935"]],[14,16,["H7901"]],[16,17,["H854"]],[17,19,["H1"]],[19,22,["H3045"]],[22,23,["H3808"]],[23,27,["H7901"]],[27,31,["H6965"]]]},{"k":491,"v":[[0,5,["H1961"]],[5,8,["H4480","H4283"]],[8,11,["H1067"]],[11,12,["H559"]],[12,13,["H413"]],[13,15,["H6810"]],[15,16,["H2005"]],[16,18,["H7901"]],[18,19,["H570"]],[19,20,["H854"]],[20,22,["H1"]],[22,27,["H8248"]],[27,28,["H3196"]],[28,30,["H3915"]],[30,31,["H1571"]],[31,35,["H935"]],[35,37,["H7901"]],[37,38,["H5973"]],[38,43,["H2421"]],[43,44,["H2233"]],[44,47,["H4480","H1"]]]},{"k":492,"v":[[0,3,["(H853)"]],[3,5,["H1"]],[5,6,["H8248"]],[6,7,["H3196"]],[7,8,["H1931"]],[8,9,["H3915"]],[9,10,["H1571"]],[10,13,["H6810"]],[13,14,["H6965"]],[14,16,["H7901"]],[16,17,["H5973"]],[17,21,["H3045"]],[21,22,["H3808"]],[22,26,["H7901"]],[26,30,["H6965"]]]},{"k":493,"v":[[0,3,["H8147"]],[3,5,["H1323"]],[5,7,["H3876"]],[7,9,["H2029"]],[9,12,["H4480","H1"]]]},{"k":494,"v":[[0,3,["H1067"]],[3,4,["H3205"]],[4,6,["H1121"]],[6,8,["H7121"]],[8,10,["H8034"]],[10,11,["H4124"]],[11,13,["H1931"]],[13,16,["H1"]],[16,19,["H4124"]],[19,20,["H5704"]],[20,22,["H3117"]]]},{"k":495,"v":[[0,3,["H6810"]],[3,4,["H1931"]],[4,5,["H1571"]],[5,6,["H3205"]],[6,8,["H1121"]],[8,10,["H7121"]],[10,12,["H8034"]],[12,13,["H1151"]],[13,15,["H1931"]],[15,18,["H1"]],[18,21,["H1121"]],[21,23,["H5983"]],[23,24,["H5704"]],[24,26,["H3117"]]]},{"k":496,"v":[[0,2,["H85"]],[2,3,["H5265"]],[3,5,["H4480","H8033"]],[5,8,["H5045"]],[8,9,["H776"]],[9,11,["H3427"]],[11,12,["H996"]],[12,13,["H6946"]],[13,15,["H7793"]],[15,17,["H1481"]],[17,19,["H1642"]]]},{"k":497,"v":[[0,2,["H85"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H8283"]],[5,7,["H802"]],[7,8,["H1931"]],[8,11,["H269"]],[11,13,["H40"]],[13,14,["H4428"]],[14,16,["H1642"]],[16,17,["H7971"]],[17,19,["H3947","(H853)"]],[19,20,["H8283"]]]},{"k":498,"v":[[0,2,["H430"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H40"]],[5,8,["H2472"]],[8,10,["H3915"]],[10,12,["H559"]],[12,15,["H2009"]],[15,21,["H4191"]],[21,22,["H5921"]],[22,24,["H802"]],[24,25,["H834"]],[25,28,["H3947"]],[28,30,["H1931"]],[30,33,["H1167"]],[33,34,["H1166"]]]},{"k":499,"v":[[0,2,["H40"]],[2,4,["H3808"]],[4,6,["H7126","H413"]],[6,10,["H559"]],[10,11,["H136"]],[11,14,["H2026"]],[14,15,["H1571"]],[15,17,["H6662"]],[17,18,["H1471"]]]},{"k":500,"v":[[0,1,["H559"]],[1,2,["H1931"]],[2,3,["H3808"]],[3,6,["H1931"]],[6,9,["H269"]],[9,11,["H1931"]],[11,12,["H1571"]],[12,14,["H1931"]],[14,15,["H559"]],[15,16,["H1931"]],[16,19,["H251"]],[19,22,["H8537"]],[22,25,["H3824"]],[25,27,["H5356"]],[27,30,["H3709"]],[30,33,["H6213"]],[33,34,["H2063"]]]},{"k":501,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,8,["H2472"]],[8,9,["H1571"]],[9,10,["H595"]],[10,11,["H3045"]],[11,12,["H3588"]],[12,14,["H6213"]],[14,15,["H2063"]],[15,18,["H8537"]],[18,21,["H3824"]],[21,23,["H595"]],[23,24,["H1571"]],[24,25,["H2820"]],[25,28,["H4480","H2398"]],[28,31,["H5921","H3651"]],[31,32,["H5414"]],[32,35,["H3808"]],[35,37,["H5060","H413"]],[37,38,[]]]},{"k":502,"v":[[0,1,["H6258"]],[1,3,["H7725"]],[3,5,["H376"]],[5,7,["H802"]],[7,8,["H3588"]],[8,9,["H1931"]],[9,12,["H5030"]],[12,16,["H6419"]],[16,17,["H1157"]],[17,22,["H2421"]],[22,24,["H518"]],[24,26,["H7725"]],[26,28,["H369"]],[28,29,["H3045"]],[29,31,["H3588"]],[31,35,["H4191","H4191"]],[35,36,["H859"]],[36,38,["H3605"]],[38,39,["H834"]],[39,41,[]]]},{"k":503,"v":[[0,2,["H40"]],[2,4,["H7925"]],[4,7,["H1242"]],[7,9,["H7121"]],[9,10,["H3605"]],[10,12,["H5650"]],[12,14,["H1696","(H853)"]],[14,15,["H3605"]],[15,16,["H428"]],[16,17,["H1697"]],[17,20,["H241"]],[20,23,["H376"]],[23,26,["H3372","H3966"]]]},{"k":504,"v":[[0,2,["H40"]],[2,3,["H7121"]],[3,4,["H85"]],[4,6,["H559"]],[6,9,["H4100"]],[9,12,["H6213"]],[12,16,["H4100"]],[16,19,["H2398"]],[19,21,["H3588"]],[21,24,["H935"]],[24,25,["H5921"]],[25,28,["H5921"]],[28,30,["H4467"]],[30,32,["H1419"]],[32,33,["H2401"]],[33,36,["H6213"]],[36,37,["H4639"]],[37,38,["H5973"]],[38,40,["H834"]],[40,42,["H3808"]],[42,45,["H6213"]]]},{"k":505,"v":[[0,2,["H40"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H85"]],[5,6,["H4100"]],[6,7,["H7200"]],[7,9,["H3588"]],[9,12,["H6213","(H853)"]],[12,13,["H2088"]],[13,14,["H1697"]]]},{"k":506,"v":[[0,2,["H85"]],[2,3,["H559"]],[3,4,["H3588"]],[4,6,["H559"]],[6,7,["H7535"]],[7,9,["H3374"]],[9,11,["H430"]],[11,13,["H369"]],[13,15,["H2088"]],[15,16,["H4725"]],[16,20,["H2026"]],[20,22,["H5921"]],[22,24,["H802"]],[24,25,["H1697"]]]},{"k":507,"v":[[0,2,["H1571"]],[2,3,["H546"]],[3,7,["H269"]],[7,8,["H1931"]],[8,11,["H1323"]],[11,14,["H1"]],[14,15,["H389"]],[15,16,["H3808"]],[16,18,["H1323"]],[18,21,["H517"]],[21,24,["H1961"]],[24,26,["H802"]]]},{"k":508,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H430"]],[7,11,["H8582"]],[11,15,["H4480","H1004","H1"]],[15,18,["H559"]],[18,21,["H2088"]],[21,24,["H2617"]],[24,25,["H834"]],[25,28,["H6213"]],[28,29,["H5973"]],[29,31,["H413"]],[31,32,["H3605"]],[32,33,["H4725"]],[33,34,["H834","H8033"]],[34,37,["H935"]],[37,38,["H559"]],[38,41,["H1931"]],[41,44,["H251"]]]},{"k":509,"v":[[0,2,["H40"]],[2,3,["H3947"]],[3,4,["H6629"]],[4,6,["H1241"]],[6,8,["H5650"]],[8,10,["H8198"]],[10,12,["H5414"]],[12,15,["H85"]],[15,17,["H7725"]],[17,18,["(H853)"]],[18,19,["H8283"]],[19,21,["H802"]]]},{"k":510,"v":[[0,2,["H40"]],[2,3,["H559"]],[3,4,["H2009"]],[4,6,["H776"]],[6,8,["H6440"]],[8,10,["H3427"]],[10,13,["H2896","H5869"]],[13,14,[]]]},{"k":511,"v":[[0,3,["H8283"]],[3,5,["H559"]],[5,6,["H2009"]],[6,9,["H5414"]],[9,11,["H251"]],[11,13,["H505"]],[13,16,["H3701"]],[16,17,["H2009"]],[17,18,["H1931"]],[18,23,["H3682"]],[23,26,["H5869"]],[26,28,["H3605"]],[28,29,["H834"]],[29,31,["H854"]],[31,34,["H854"]],[34,35,["H3605"]],[35,40,["H3198"]]]},{"k":512,"v":[[0,2,["H85"]],[2,3,["H6419"]],[3,4,["H413"]],[4,5,["H430"]],[5,7,["H430"]],[7,8,["H7495","(H853)"]],[8,9,["H40"]],[9,12,["H802"]],[12,15,["H519"]],[15,18,["H3205"]],[18,19,[]]]},{"k":513,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,7,["H6113","H6113","H1157"]],[7,8,["H3605"]],[8,10,["H7358"]],[10,13,["H1004"]],[13,15,["H40"]],[15,16,["H5921","H1697"]],[16,18,["H8283"]],[18,19,["H85"]],[19,20,["H802"]]]},{"k":514,"v":[[0,3,["H3068"]],[3,4,["H6485","(H853)"]],[4,5,["H8283"]],[5,6,["H834"]],[6,9,["H559"]],[9,12,["H3068"]],[12,13,["H6213"]],[13,15,["H8283"]],[15,16,["H834"]],[16,19,["H1696"]]]},{"k":515,"v":[[0,2,["H8283"]],[2,3,["H2029"]],[3,5,["H3205"]],[5,6,["H85"]],[6,8,["H1121"]],[8,12,["H2208"]],[12,16,["H4150"]],[16,18,["H834"]],[18,19,["H430"]],[19,21,["H1696"]],[21,23,[]]]},{"k":516,"v":[[0,2,["H85"]],[2,3,["H7121","(H853)"]],[3,5,["H8034"]],[5,8,["H1121"]],[8,11,["H3205"]],[11,14,["H834"]],[14,15,["H8283"]],[15,16,["H3205"]],[16,19,["H3327"]]]},{"k":517,"v":[[0,2,["H85"]],[2,3,["H4135"]],[3,5,["H1121"]],[5,6,["H3327"]],[6,8,["H8083"]],[8,9,["H3117"]],[9,10,["H1121"]],[10,11,["H834"]],[11,12,["H430"]],[12,14,["H6680"]],[14,15,[]]]},{"k":518,"v":[[0,2,["H85"]],[2,5,["H3967"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,8,["(H853)"]],[8,10,["H1121"]],[10,11,["H3327"]],[11,13,["H3205"]],[13,15,[]]]},{"k":519,"v":[[0,2,["H8283"]],[2,3,["H559"]],[3,4,["H430"]],[4,6,["H6213"]],[6,9,["H6712"]],[9,12,["H3605"]],[12,14,["H8085"]],[14,16,["H6711"]],[16,18,[]]]},{"k":520,"v":[[0,3,["H559"]],[3,4,["H4310"]],[4,7,["H4448"]],[7,9,["H85"]],[9,11,["H8283"]],[11,16,["H3243","H1121"]],[16,17,["H3588"]],[17,20,["H3205"]],[20,23,["H1121"]],[23,27,["H2208"]]]},{"k":521,"v":[[0,3,["H3206"]],[3,4,["H1431"]],[4,7,["H1580"]],[7,9,["H85"]],[9,10,["H6213"]],[10,12,["H1419"]],[12,13,["H4960"]],[13,16,["H3117"]],[16,17,["(H853)"]],[17,18,["H3327"]],[18,20,["H1580"]]]},{"k":522,"v":[[0,2,["H8283"]],[2,3,["H7200","(H853)"]],[3,5,["H1121"]],[5,7,["H1904"]],[7,9,["H4713"]],[9,10,["H834"]],[10,13,["H3205"]],[13,15,["H85"]],[15,16,["H6711"]]]},{"k":523,"v":[[0,3,["H559"]],[3,5,["H85"]],[5,7,["H1644"]],[7,8,["H2063"]],[8,9,["H519"]],[9,12,["H1121"]],[12,13,["H3588"]],[13,15,["H1121"]],[15,17,["H2063"]],[17,18,["H519"]],[18,20,["H3808"]],[20,22,["H3423"]],[22,23,["H5973"]],[23,25,["H1121"]],[25,27,["H5973"]],[27,28,["H3327"]]]},{"k":524,"v":[[0,3,["H1697"]],[3,6,["H7489","H3966"]],[6,8,["H85"]],[8,9,["H5869"]],[9,10,["H5921","H182"]],[10,13,["H1121"]]]},{"k":525,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H85"]],[5,8,["H408"]],[8,10,["H7489"]],[10,13,["H5869"]],[13,15,["H5921"]],[15,17,["H5288"]],[17,20,["H5921"]],[20,22,["H519"]],[22,24,["H3605"]],[24,25,["H834"]],[25,26,["H8283"]],[26,28,["H559"]],[28,29,["H413"]],[29,31,["H8085"]],[31,34,["H6963"]],[34,35,["H3588"]],[35,37,["H3327"]],[37,40,["H2233"]],[40,42,["H7121"]]]},{"k":526,"v":[[0,2,["H1571","(H853)"]],[2,5,["H1121"]],[5,8,["H519"]],[8,11,["H7760"]],[11,13,["H1471"]],[13,14,["H3588"]],[14,15,["H1931"]],[15,18,["H2233"]]]},{"k":527,"v":[[0,2,["H85"]],[2,5,["H7925"]],[5,8,["H1242"]],[8,10,["H3947"]],[10,11,["H3899"]],[11,14,["H2573"]],[14,16,["H4325"]],[16,18,["H5414"]],[18,20,["H413"]],[20,21,["H1904"]],[21,22,["H7760"]],[22,24,["H5921"]],[24,26,["H7926"]],[26,29,["H3206"]],[29,33,["H7971"]],[33,36,["H1980"]],[36,38,["H8582"]],[38,41,["H4057"]],[41,43,["H884"]]]},{"k":528,"v":[[0,3,["H4325"]],[3,5,["H3615"]],[5,6,["H4480"]],[6,8,["H2573"]],[8,11,["H7993","(H853)"]],[11,13,["H3206"]],[13,14,["H8478"]],[14,15,["H259"]],[15,18,["H7880"]]]},{"k":529,"v":[[0,3,["H1980"]],[3,7,["H3427"]],[7,9,["H4480","H5048"]],[9,14,["H7368"]],[14,19,["H2909","H7198"]],[19,20,["H3588"]],[20,22,["H559"]],[22,25,["H408"]],[25,26,["H7200"]],[26,28,["H4194"]],[28,31,["H3206"]],[31,34,["H3427"]],[34,36,["H4480","H5048"]],[36,40,["H5375","(H853)"]],[40,42,["H6963"]],[42,44,["H1058"]]]},{"k":530,"v":[[0,2,["H430"]],[2,3,["H8085","(H853)"]],[3,5,["H6963"]],[5,8,["H5288"]],[8,11,["H4397"]],[11,13,["H430"]],[13,14,["H7121"]],[14,15,["H413"]],[15,16,["H1904"]],[16,18,["H4480"]],[18,19,["H8064"]],[19,21,["H559"]],[21,24,["H4100"]],[24,27,["H1904"]],[27,28,["H3372"]],[28,29,["H408"]],[29,30,["H3588"]],[30,31,["H430"]],[31,33,["H8085","H413"]],[33,35,["H6963"]],[35,38,["H5288"]],[38,39,["H834","H8033"]],[39,40,["H1931"]],[40,41,[]]]},{"k":531,"v":[[0,1,["H6965"]],[1,3,["H5375","(H853)"]],[3,5,["H5288"]],[5,7,["H2388"]],[7,9,["H854"]],[9,11,["H3027"]],[11,12,["H3588"]],[12,15,["H7760"]],[15,18,["H1419"]],[18,19,["H1471"]]]},{"k":532,"v":[[0,2,["H430"]],[2,3,["H6491","(H853)"]],[3,5,["H5869"]],[5,8,["H7200"]],[8,10,["H875"]],[10,12,["H4325"]],[12,15,["H1980"]],[15,17,["H4390","(H853)"]],[17,19,["H2573"]],[19,21,["H4325"]],[21,23,["(H853)"]],[23,25,["H5288"]],[25,26,["H8248"]]]},{"k":533,"v":[[0,2,["H430"]],[2,3,["H1961"]],[3,4,["H854"]],[4,6,["H5288"]],[6,9,["H1431"]],[9,11,["H3427"]],[11,14,["H4057"]],[14,16,["H1961"]],[16,18,["H7235","H7199"]]]},{"k":534,"v":[[0,3,["H3427"]],[3,6,["H4057"]],[6,8,["H6290"]],[8,11,["H517"]],[11,12,["H3947"]],[12,15,["H802"]],[15,19,["H4480","H776"]],[19,21,["H4714"]]]},{"k":535,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,8,["H6256"]],[8,10,["H40"]],[10,12,["H6369"]],[12,15,["H8269"]],[15,18,["H6635"]],[18,19,["H559"]],[19,20,["H413"]],[20,21,["H85"]],[21,22,["H559"]],[22,23,["H430"]],[23,25,["H5973"]],[25,28,["H3605"]],[28,29,["H834"]],[29,30,["H859"]],[30,31,["H6213"]]]},{"k":536,"v":[[0,1,["H6258"]],[1,3,["H7650"]],[3,6,["H2008"]],[6,8,["H430"]],[8,14,["H8266"]],[14,20,["H5209"]],[20,25,["H5220"]],[25,30,["H2617"]],[30,31,["H834"]],[31,34,["H6213"]],[34,35,["H5973"]],[35,39,["H6213"]],[39,40,["H5978"]],[40,43,["H5973"]],[43,45,["H776"]],[45,46,["H834"]],[46,49,["H1481"]]]},{"k":537,"v":[[0,2,["H85"]],[2,3,["H559"]],[3,4,["H595"]],[4,6,["H7650"]]]},{"k":538,"v":[[0,2,["H85"]],[2,3,["H3198","(H853)"]],[3,4,["H40"]],[4,6,["H5921","H182"]],[6,8,["H875"]],[8,10,["H4325"]],[10,11,["H834"]],[11,12,["H40"]],[12,13,["H5650"]],[13,17,["H1497"]]]},{"k":539,"v":[[0,2,["H40"]],[2,3,["H559"]],[3,5,["H3045"]],[5,6,["H3808"]],[6,7,["H4310"]],[7,9,["H6213","(H853)"]],[9,10,["H2088"]],[10,11,["H1697"]],[11,12,["H3808"]],[12,14,["H859"]],[14,15,["H5046"]],[15,17,["H3808"]],[17,18,["H1571"]],[18,19,["H8085"]],[19,20,["H595"]],[20,23,["H1115"]],[23,25,["H3117"]]]},{"k":540,"v":[[0,2,["H85"]],[2,3,["H3947"]],[3,4,["H6629"]],[4,6,["H1241"]],[6,8,["H5414"]],[8,11,["H40"]],[11,13,["H8147"]],[13,16,["H3772"]],[16,18,["H1285"]]]},{"k":541,"v":[[0,2,["H85"]],[2,3,["H5324","(H853)"]],[3,4,["H7651"]],[4,6,["H3535"]],[6,9,["H6629"]],[9,11,["H905"]]]},{"k":542,"v":[[0,2,["H40"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H85"]],[5,6,["H4100"]],[6,8,["H428"]],[8,9,["H7651"]],[9,11,["H3535"]],[11,12,["H834"]],[12,15,["H5324"]],[15,17,["H905"]]]},{"k":543,"v":[[0,3,["H559"]],[3,4,["H3588"]],[4,5,["(H853)"]],[5,6,["H7651"]],[6,8,["H3535"]],[8,11,["H3947"]],[11,14,["H4480","H3027"]],[14,15,["H5668"]],[15,18,["H1961"]],[18,20,["H5713"]],[20,23,["H3588"]],[23,26,["H2658","(H853)"]],[26,27,["H2088"]],[27,28,["H875"]]]},{"k":544,"v":[[0,1,["H5921","H3651"]],[1,3,["H7121"]],[3,4,["H1931"]],[4,5,["H4725"]],[5,6,["H884"]],[6,7,["H3588"]],[7,8,["H8033"]],[8,10,["H7650"]],[10,11,["H8147"]],[11,13,[]]]},{"k":545,"v":[[0,3,["H3772"]],[3,5,["H1285"]],[5,7,["H884"]],[7,9,["H40"]],[9,11,["H6965"]],[11,13,["H6369"]],[13,16,["H8269"]],[16,19,["H6635"]],[19,22,["H7725"]],[22,23,["H413"]],[23,25,["H776"]],[25,28,["H6430"]]]},{"k":546,"v":[[0,3,["H5193"]],[3,5,["H815"]],[5,7,["H884"]],[7,9,["H7121"]],[9,10,["H8033"]],[10,13,["H8034"]],[13,16,["H3068"]],[16,18,["H5769"]],[18,19,["H410"]]]},{"k":547,"v":[[0,2,["H85"]],[2,3,["H1481"]],[3,6,["H6430"]],[6,7,["H776"]],[7,8,["H7227"]],[8,9,["H3117"]]]},{"k":548,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H428"]],[7,8,["H1697"]],[8,10,["H430"]],[10,12,["H5254","(H853)"]],[12,13,["H85"]],[13,15,["H559"]],[15,16,["H413"]],[16,18,["H85"]],[18,21,["H559"]],[21,22,["H2009"]],[22,25,[]]]},{"k":549,"v":[[0,3,["H559"]],[3,4,["H3947"]],[4,5,["H4994","(H853)"]],[5,7,["H1121","(H853)"]],[7,9,["H3173"]],[9,10,["(H853)"]],[10,11,["H3327"]],[11,12,["H834"]],[12,14,["H157"]],[14,16,["H1980"]],[16,18,["H413"]],[18,20,["H776"]],[20,22,["H4179"]],[22,24,["H5927"]],[24,26,["H8033"]],[26,30,["H5930"]],[30,31,["H5921"]],[31,32,["H259"]],[32,35,["H2022"]],[35,36,["H834"]],[36,39,["H559"]],[39,41,["H413"]]]},{"k":550,"v":[[0,2,["H85"]],[2,5,["H7925"]],[5,8,["H1242"]],[8,10,["H2280","(H853)"]],[10,12,["H2543"]],[12,14,["H3947","(H853)"]],[14,15,["H8147"]],[15,19,["H5288"]],[19,20,["H854"]],[20,23,["H3327"]],[23,25,["H1121"]],[25,27,["H1234"]],[27,29,["H6086"]],[29,33,["H5930"]],[33,36,["H6965"]],[36,38,["H1980"]],[38,39,["H413"]],[39,41,["H4725"]],[41,43,["H834"]],[43,44,["H430"]],[44,46,["H559"]],[46,47,[]]]},{"k":551,"v":[[0,4,["H7992"]],[4,5,["H3117"]],[5,6,["H85"]],[6,8,["H5375","(H853)"]],[8,10,["H5869"]],[10,12,["H7200","(H853)"]],[12,14,["H4725"]],[14,16,["H4480","H7350"]]]},{"k":552,"v":[[0,2,["H85"]],[2,3,["H559"]],[3,4,["H413"]],[4,7,["H5288"]],[7,8,["H3427"]],[8,10,["H6311"]],[10,11,["H5973"]],[11,13,["H2543"]],[13,15,["H589"]],[15,18,["H5288"]],[18,20,["H1980"]],[20,21,["H5704","H3541"]],[21,23,["H7812"]],[23,26,["H7725"]],[26,27,["H413"]],[27,28,[]]]},{"k":553,"v":[[0,2,["H85"]],[2,3,["H3947","(H853)"]],[3,5,["H6086"]],[5,9,["H5930"]],[9,11,["H7760"]],[11,13,["H5921"]],[13,14,["H3327"]],[14,16,["H1121"]],[16,19,["H3947","(H853)"]],[19,21,["H784"]],[21,24,["H3027"]],[24,27,["H3979"]],[27,30,["H1980"]],[30,31,["H8147"]],[31,34,["H3162"]]]},{"k":554,"v":[[0,2,["H3327"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H85"]],[5,7,["H1"]],[7,9,["H559"]],[9,11,["H1"]],[11,14,["H559"]],[14,15,["H2009"]],[15,19,["H1121"]],[19,22,["H559"]],[22,23,["H2009"]],[23,25,["H784"]],[25,28,["H6086"]],[28,30,["H346"]],[30,33,["H7716"]],[33,37,["H5930"]]]},{"k":555,"v":[[0,2,["H85"]],[2,3,["H559"]],[3,5,["H1121"]],[5,6,["H430"]],[6,8,["H7200"]],[8,11,["H7716"]],[11,15,["H5930"]],[15,18,["H1980"]],[18,19,["H8147"]],[19,22,["H3162"]]]},{"k":556,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H4725"]],[6,7,["H834"]],[7,8,["H430"]],[8,10,["H559"]],[10,14,["H85"]],[14,15,["H1129","(H853)"]],[15,17,["H4196"]],[17,18,["H8033"]],[18,24,["H6186","(H853)","H6086"]],[24,26,["H6123","(H853)"]],[26,27,["H3327"]],[27,29,["H1121"]],[29,31,["H7760"]],[31,33,["H5921"]],[33,35,["H4196"]],[35,36,["H4480","H4605"]],[36,38,["H6086"]]]},{"k":557,"v":[[0,2,["H85"]],[2,4,["H7971","(H853)"]],[4,6,["H3027"]],[6,8,["H3947","(H853)"]],[8,10,["H3979"]],[10,12,["H7819","(H853)"]],[12,14,["H1121"]]]},{"k":558,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H7121"]],[7,8,["H413"]],[8,11,["H4480"]],[11,12,["H8064"]],[12,14,["H559"]],[14,15,["H85"]],[15,16,["H85"]],[16,19,["H559"]],[19,20,["H2009"]],[20,22,[]]]},{"k":559,"v":[[0,3,["H559"]],[3,4,["H7971"]],[4,5,["H408"]],[5,7,["H3027"]],[7,8,["H413"]],[8,10,["H5288"]],[10,11,["H408"]],[11,12,["H6213"]],[12,15,["H3972"]],[15,18,["H3588"]],[18,19,["H6258"]],[19,21,["H3045"]],[21,22,["H3588"]],[22,23,["H859"]],[23,24,["H3373"]],[24,25,["H430"]],[25,29,["H3808"]],[29,30,["H2820","(H853)"]],[30,32,["H1121","(H853)"]],[32,34,["H3173"]],[34,36,["H4480"]],[36,37,[]]]},{"k":560,"v":[[0,2,["H85"]],[2,4,["H5375","(H853)"]],[4,6,["H5869"]],[6,8,["H7200"]],[8,10,["H2009"]],[10,11,["H310"]],[11,14,["H352"]],[14,15,["H270"]],[15,18,["H5442"]],[18,21,["H7161"]],[21,23,["H85"]],[23,24,["H1980"]],[24,26,["H3947","(H853)"]],[26,28,["H352"]],[28,32,["H5927"]],[32,36,["H5930"]],[36,40,["H8478"]],[40,42,["H1121"]]]},{"k":561,"v":[[0,2,["H85"]],[2,3,["H7121"]],[3,5,["H8034"]],[5,7,["H1931"]],[7,8,["H4725"]],[8,9,["H3070"]],[9,10,["H834"]],[10,13,["H559"]],[13,16,["H3117"]],[16,19,["H2022"]],[19,22,["H3068"]],[22,26,["H7200"]]]},{"k":562,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H7121"]],[7,8,["H413"]],[8,9,["H85"]],[9,11,["H4480"]],[11,12,["H8064"]],[12,15,["H8145"]]]},{"k":563,"v":[[0,2,["H559"]],[2,7,["H7650"]],[7,8,["H5002"]],[8,10,["H3068"]],[10,11,["H3588"]],[11,12,["H3282","H834"]],[12,15,["H6213","(H853)"]],[15,16,["H2088"]],[16,17,["H1697"]],[17,20,["H3808"]],[20,21,["H2820","(H853)"]],[21,23,["H1121","(H853)"]],[23,25,["H3173"]],[25,26,[]]]},{"k":564,"v":[[0,1,["H3588"]],[1,3,["H1288"]],[3,6,["H1288"]],[6,10,["H7235"]],[10,13,["H7235","(H853)"]],[13,15,["H2233"]],[15,18,["H3556"]],[18,21,["H8064"]],[21,25,["H2344"]],[25,26,["H834"]],[26,28,["H5921"]],[28,30,["H3220"]],[30,31,["H8193"]],[31,34,["H2233"]],[34,36,["H3423","(H853)"]],[36,38,["H8179"]],[38,41,["H341"]]]},{"k":565,"v":[[0,4,["H2233"]],[4,6,["H3605"]],[6,8,["H1471"]],[8,11,["H776"]],[11,13,["H1288"]],[13,14,["H6118","H834"]],[14,17,["H8085"]],[17,19,["H6963"]]]},{"k":566,"v":[[0,2,["H85"]],[2,3,["H7725"]],[3,4,["H413"]],[4,7,["H5288"]],[7,11,["H6965"]],[11,13,["H1980"]],[13,14,["H3162"]],[14,15,["H413"]],[15,16,["H884"]],[16,18,["H85"]],[18,19,["H3427"]],[19,21,["H884"]]]},{"k":567,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H428"]],[7,8,["H1697"]],[8,12,["H5046"]],[12,13,["H85"]],[13,14,["H559"]],[14,15,["H2009"]],[15,16,["H4435"]],[16,17,["H1931"]],[17,19,["H1571"]],[19,20,["H3205"]],[20,21,["H1121"]],[21,24,["H251"]],[24,25,["H5152"]]]},{"k":568,"v":[[0,0,["(H853)"]],[0,1,["H5780"]],[1,3,["H1060"]],[3,5,["H938"]],[5,7,["H251"]],[7,9,["H7055"]],[9,11,["H1"]],[11,13,["H758"]]]},{"k":569,"v":[[0,2,["H3777"]],[2,4,["H2375"]],[4,6,["H6394"]],[6,8,["H3044"]],[8,10,["H1328"]]]},{"k":570,"v":[[0,2,["H1328"]],[2,3,["H3205","(H853)"]],[3,4,["H7259"]],[4,5,["H428"]],[5,6,["H8083"]],[6,7,["H4435"]],[7,9,["H3205"]],[9,11,["H5152"]],[11,12,["H85"]],[12,13,["H251"]]]},{"k":571,"v":[[0,3,["H6370"]],[3,5,["H8034"]],[5,7,["H7208"]],[7,8,["H1931"]],[8,9,["H3205"]],[9,10,["H1571","(H853)"]],[10,11,["H2875"]],[11,13,["H1514"]],[13,15,["H8477"]],[15,17,["H4601"]]]},{"k":572,"v":[[0,2,["H8283"]],[2,3,["H1961"]],[3,5,["H3967"]],[5,7,["H7651"]],[7,9,["H6242"]],[9,10,["H8141"]],[10,11,["H2416"]],[11,15,["H8141"]],[15,18,["H2416"]],[18,20,["H8283"]]]},{"k":573,"v":[[0,2,["H8283"]],[2,3,["H4191"]],[3,5,["H7153"]],[5,7,["H1931"]],[7,9,["H2275"]],[9,12,["H776"]],[12,14,["H3667"]],[14,16,["H85"]],[16,17,["H935"]],[17,19,["H5594"]],[19,21,["H8283"]],[21,24,["H1058"]],[24,26,[]]]},{"k":574,"v":[[0,2,["H85"]],[2,4,["H6965"]],[4,6,["H4480","H5921","H6440"]],[6,8,["H4191"]],[8,10,["H1696"]],[10,11,["H413"]],[11,13,["H1121"]],[13,15,["H2845"]],[15,16,["H559"]]]},{"k":575,"v":[[0,1,["H595"]],[1,4,["H1616"]],[4,7,["H8453"]],[7,8,["H5973"]],[8,10,["H5414"]],[10,13,["H272"]],[13,16,["H6913"]],[16,17,["H5973"]],[17,22,["H6912"]],[22,24,["H4191"]],[24,28,["H4480","H6440"]]]},{"k":576,"v":[[0,3,["H1121"]],[3,5,["H2845"]],[5,6,["H6030","(H853)"]],[6,7,["H85"]],[7,8,["H559"]],[8,10,[]]]},{"k":577,"v":[[0,1,["H8085"]],[1,4,["H113"]],[4,5,["H859"]],[5,8,["H430"]],[8,9,["H5387"]],[9,10,["H8432"]],[10,14,["H4005"]],[14,17,["H6913"]],[17,18,["H6912","(H853)"]],[18,20,["H4191"]],[20,21,["H376","H3808"]],[21,22,["H4480"]],[22,25,["H3607"]],[25,26,["H4480"]],[26,27,["(H853)"]],[27,29,["H6913"]],[29,34,["H4480","H6912"]],[34,36,["H4191"]]]},{"k":578,"v":[[0,2,["H85"]],[2,4,["H6965"]],[4,7,["H7812"]],[7,10,["H5971"]],[10,13,["H776"]],[13,17,["H1121"]],[17,19,["H2845"]]]},{"k":579,"v":[[0,3,["H1696"]],[3,4,["H854"]],[4,6,["H559"]],[6,7,["H518"]],[7,9,["H3426","(H853)"]],[9,11,["H5315"]],[11,15,["H6912","(H853)"]],[15,17,["H4191"]],[17,21,["H4480","H6440"]],[21,22,["H8085"]],[22,25,["H6293"]],[25,29,["H6085"]],[29,31,["H1121"]],[31,33,["H6714"]]]},{"k":580,"v":[[0,4,["H5414"]],[4,5,["(H853)"]],[5,7,["H4631"]],[7,9,["H4375"]],[9,10,["H834"]],[10,13,["H834"]],[13,17,["H7097"]],[17,20,["H7704"]],[20,24,["H3701"]],[24,28,["H4392"]],[28,31,["H5414"]],[31,36,["H272"]],[36,39,["H6913"]],[39,40,["H8432"]],[40,41,[]]]},{"k":581,"v":[[0,2,["H6085"]],[2,3,["H3427"]],[3,4,["H8432"]],[4,6,["H1121"]],[6,8,["H2845"]],[8,10,["H6085"]],[10,12,["H2850"]],[12,13,["H6030","(H853)"]],[13,14,["H85"]],[14,17,["H241"]],[17,20,["H1121"]],[20,22,["H2845"]],[22,25,["H3605"]],[25,28,["H935"]],[28,31,["H8179"]],[31,34,["H5892"]],[34,35,["H559"]]]},{"k":582,"v":[[0,1,["H3808"]],[1,3,["H113"]],[3,4,["H8085"]],[4,7,["H7704"]],[7,8,["H5414"]],[8,13,["H4631"]],[13,14,["H834"]],[14,18,["H5414"]],[18,23,["H5869"]],[23,26,["H1121"]],[26,29,["H5971"]],[29,30,["H5414"]],[30,34,["H6912"]],[34,36,["H4191"]]]},{"k":583,"v":[[0,2,["H85"]],[2,5,["H7812"]],[5,6,["H6440"]],[6,8,["H5971"]],[8,11,["H776"]]]},{"k":584,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,5,["H6085"]],[5,8,["H241"]],[8,11,["H5971"]],[11,14,["H776"]],[14,15,["H559"]],[15,16,["H389"]],[16,17,["H518"]],[17,18,["H859"]],[18,24,["H3863"]],[24,25,["H8085"]],[25,29,["H5414"]],[29,31,["H3701"]],[31,34,["H7704"]],[34,35,["H3947"]],[35,37,["H4480"]],[37,42,["H6912","(H853)"]],[42,44,["H4191"]],[44,45,["H8033"]]]},{"k":585,"v":[[0,2,["H6085"]],[2,3,["H6030","(H853)"]],[3,4,["H85"]],[4,5,["H559"]],[5,7,[]]]},{"k":586,"v":[[0,2,["H113"]],[2,3,["H8085"]],[3,7,["H776"]],[7,10,["H702"]],[10,11,["H3967"]],[11,12,["H8255"]],[12,14,["H3701"]],[14,15,["H4100"]],[15,17,["H1931"]],[17,18,["H996"]],[18,22,["H6912"]],[22,25,["H4191"]]]},{"k":587,"v":[[0,2,["H85"]],[2,3,["H8085"]],[3,4,["H413"]],[4,5,["H6085"]],[5,7,["H85"]],[7,8,["H8254"]],[8,10,["H6085","(H853)"]],[10,12,["H3701"]],[12,13,["H834"]],[13,16,["H1696"]],[16,19,["H241"]],[19,22,["H1121"]],[22,24,["H2845"]],[24,25,["H702"]],[25,26,["H3967"]],[26,27,["H8255"]],[27,29,["H3701"]],[29,30,["H5674"]],[30,34,["H5503"]]]},{"k":588,"v":[[0,3,["H7704"]],[3,5,["H6085"]],[5,6,["H834"]],[6,9,["H4375"]],[9,10,["H834"]],[10,12,["H6440"]],[12,13,["H4471"]],[13,15,["H7704"]],[15,18,["H4631"]],[18,19,["H834"]],[19,23,["H3605"]],[23,25,["H6086"]],[25,26,["H834"]],[26,30,["H7704"]],[30,31,["H834"]],[31,34,["H3605"]],[34,36,["H1366"]],[36,38,["H5439"]],[38,41,["H6965"]]]},{"k":589,"v":[[0,2,["H85"]],[2,5,["H4736"]],[5,8,["H5869"]],[8,11,["H1121"]],[11,13,["H2845"]],[13,15,["H3605"]],[15,18,["H935"]],[18,21,["H8179"]],[21,24,["H5892"]]]},{"k":590,"v":[[0,2,["H310"]],[2,3,["H3651"]],[3,4,["H85"]],[4,5,["H6912","(H853)"]],[5,6,["H8283"]],[6,8,["H802"]],[8,9,["H413"]],[9,11,["H4631"]],[11,14,["H7704"]],[14,16,["H4375"]],[16,17,["H5921","H6440"]],[17,18,["H4471"]],[18,20,["H1931"]],[20,22,["H2275"]],[22,25,["H776"]],[25,27,["H3667"]]]},{"k":591,"v":[[0,3,["H7704"]],[3,6,["H4631"]],[6,7,["H834"]],[7,12,["H6965"]],[12,14,["H85"]],[14,17,["H272"]],[17,20,["H6913"]],[20,21,["H4480","H854"]],[21,23,["H1121"]],[23,25,["H2845"]]]},{"k":592,"v":[[0,2,["H85"]],[2,4,["H2204"]],[4,7,["H935"]],[7,9,["H3117"]],[9,12,["H3068"]],[12,14,["H1288","(H853)"]],[14,15,["H85"]],[15,18,["H3605"]]]},{"k":593,"v":[[0,2,["H85"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H2205"]],[6,7,["H5650"]],[7,10,["H1004"]],[10,12,["H4910"]],[12,14,["H3605"]],[14,15,["H834"]],[15,18,["H7760"]],[18,21,["H4994"]],[21,23,["H3027"]],[23,24,["H8478"]],[24,26,["H3409"]]]},{"k":594,"v":[[0,6,["H7650"]],[6,9,["H3068"]],[9,11,["H430"]],[11,13,["H8064"]],[13,16,["H430"]],[16,19,["H776"]],[19,20,["H834"]],[20,23,["H3808"]],[23,24,["H3947"]],[24,26,["H802"]],[26,29,["H1121"]],[29,32,["H4480","H1323"]],[32,35,["H3669"]],[35,36,["H7130"]],[36,37,["H834"]],[37,38,["H595"]],[38,39,["H3427"]]]},{"k":595,"v":[[0,1,["H3588"]],[1,4,["H1980"]],[4,5,["H413"]],[5,7,["H776"]],[7,9,["H413"]],[9,11,["H4138"]],[11,13,["H3947"]],[13,15,["H802"]],[15,18,["H1121"]],[18,19,["H3327"]]]},{"k":596,"v":[[0,3,["H5650"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H194"]],[7,9,["H802"]],[9,11,["H3808"]],[11,13,["H14"]],[13,15,["H1980","H310"]],[15,17,["H413"]],[17,18,["H2063"]],[18,19,["H776"]],[19,23,["H7725","H7725","(H853)"]],[23,25,["H1121"]],[25,27,["H413"]],[27,29,["H776"]],[29,31,["H834","H4480","H8033"]],[31,33,["H3318"]]]},{"k":597,"v":[[0,2,["H85"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H8104"]],[6,8,["H6435"]],[8,10,["H7725"]],[10,11,["(H853)"]],[11,13,["H1121"]],[13,14,["H8033"]],[14,15,[]]]},{"k":598,"v":[[0,2,["H3068"]],[2,3,["H430"]],[3,5,["H8064"]],[5,6,["H834"]],[6,7,["H3947"]],[7,12,["H4480","H1004","H1"]],[12,16,["H4480","H776"]],[16,19,["H4138"]],[19,21,["H834"]],[21,22,["H1696"]],[22,26,["H834"]],[26,27,["H7650"]],[27,30,["H559"]],[30,33,["H2233"]],[33,36,["H5414","(H853)"]],[36,37,["H2063"]],[37,38,["H776"]],[38,39,["H1931"]],[39,41,["H7971"]],[41,43,["H4397"]],[43,44,["H6440"]],[44,49,["H3947"]],[49,51,["H802"]],[51,54,["H1121"]],[54,56,["H4480","H8033"]]]},{"k":599,"v":[[0,2,["H518"]],[2,4,["H802"]],[4,6,["H3808"]],[6,8,["H14"]],[8,10,["H1980","H310"]],[10,16,["H5352"]],[16,20,["H4480","H7621","H2063"]],[20,21,["H7535"]],[21,22,["H7725"]],[22,23,["H3808","(H853)"]],[23,25,["H1121"]],[25,26,["H8033"]],[26,27,[]]]},{"k":600,"v":[[0,3,["H5650"]],[3,4,["H7760","(H853)"]],[4,6,["H3027"]],[6,7,["H8478"]],[7,9,["H3409"]],[9,11,["H85"]],[11,13,["H113"]],[13,15,["H7650"]],[15,18,["H5921"]],[18,19,["H2088"]],[19,20,["H1697"]]]},{"k":601,"v":[[0,3,["H5650"]],[3,4,["H3947"]],[4,5,["H6235"]],[5,6,["H1581"]],[6,9,["H4480","H1581"]],[9,12,["H113"]],[12,14,["H1980"]],[14,16,["H3605"]],[16,18,["H2898"]],[18,21,["H113"]],[21,25,["H3027"]],[25,28,["H6965"]],[28,30,["H1980"]],[30,31,["H413"]],[31,32,["H763"]],[32,33,["H413"]],[33,35,["H5892"]],[35,37,["H5152"]]]},{"k":602,"v":[[0,5,["H1581"]],[5,8,["H1288"]],[8,9,["H4480","H2351"]],[9,11,["H5892"]],[11,12,["H413"]],[12,14,["H875"]],[14,16,["H4325"]],[16,19,["H6256"]],[19,22,["H6153"]],[22,25,["H6256"]],[25,29,["H3318"]],[29,31,["H7579"]],[31,32,[]]]},{"k":603,"v":[[0,3,["H559"]],[3,5,["H3068"]],[5,6,["H430"]],[6,9,["H113"]],[9,10,["H85"]],[10,13,["H4994"]],[13,17,["H7136","H6440"]],[17,19,["H3117"]],[19,21,["H6213"]],[21,22,["H2617"]],[22,23,["H5973"]],[23,25,["H113"]],[25,26,["H85"]]]},{"k":604,"v":[[0,1,["H2009"]],[1,2,["H595"]],[2,3,["H5324"]],[3,5,["H5921"]],[5,7,["H5869"]],[7,9,["H4325"]],[9,12,["H1323"]],[12,15,["H376"]],[15,18,["H5892"]],[18,20,["H3318"]],[20,22,["H7579"]],[22,23,["H4325"]]]},{"k":605,"v":[[0,6,["H1961"]],[6,9,["H5291"]],[9,11,["H834"]],[11,14,["H559","H413"]],[14,16,["H5186"]],[16,18,["H3537"]],[18,21,["H4994"]],[21,25,["H8354"]],[25,29,["H559"]],[29,30,["H8354"]],[30,36,["H1581"]],[36,37,["H8248"]],[37,38,["H1571"]],[38,47,["H3198"]],[47,50,["H5650"]],[50,51,["H3327"]],[51,56,["H3045"]],[56,57,["H3588"]],[57,60,["H6213"]],[60,61,["H2617"]],[61,62,["H5973"]],[62,64,["H113"]]]},{"k":606,"v":[[0,5,["H1961"]],[5,6,["H2962"]],[6,7,["H1931"]],[7,9,["H3615"]],[9,10,["H1696"]],[10,12,["H2009"]],[12,13,["H7259"]],[13,15,["H3318"]],[15,16,["H834"]],[16,18,["H3205"]],[18,20,["H1328"]],[20,21,["H1121"]],[21,23,["H4435"]],[23,25,["H802"]],[25,27,["H5152"]],[27,28,["H85"]],[28,29,["H251"]],[29,32,["H3537"]],[32,33,["H5921"]],[33,35,["H7926"]]]},{"k":607,"v":[[0,3,["H5291"]],[3,5,["H3966"]],[5,6,["H2896"]],[6,9,["H4758"]],[9,11,["H1330"]],[11,12,["H3808"]],[12,15,["H376"]],[15,16,["H3045"]],[16,21,["H3381"]],[21,24,["H5869"]],[24,26,["H4390"]],[26,28,["H3537"]],[28,31,["H5927"]]]},{"k":608,"v":[[0,3,["H5650"]],[3,4,["H7323"]],[4,6,["H7125"]],[6,9,["H559"]],[9,14,["H4994"]],[14,15,["H1572"]],[15,17,["H4592"]],[17,18,["H4325"]],[18,21,["H4480","H3537"]]]},{"k":609,"v":[[0,3,["H559"]],[3,4,["H8354"]],[4,6,["H113"]],[6,9,["H4116"]],[9,12,["H3381"]],[12,14,["H3537"]],[14,15,["H5921"]],[15,17,["H3027"]],[17,21,["H8248"]]]},{"k":610,"v":[[0,5,["H3615"]],[5,8,["H8248"]],[8,10,["H559"]],[10,13,["H7579"]],[13,17,["H1581"]],[17,18,["H1571"]],[18,19,["H5704","H518"]],[19,22,["H3615"]],[22,23,["H8354"]]]},{"k":611,"v":[[0,3,["H4116"]],[3,5,["H6168"]],[5,7,["H3537"]],[7,8,["H413"]],[8,10,["H8268"]],[10,12,["H7323"]],[12,13,["H5750"]],[13,14,["H413"]],[14,16,["H875"]],[16,18,["H7579"]],[18,21,["H7579"]],[21,23,["H3605"]],[23,25,["H1581"]]]},{"k":612,"v":[[0,3,["H376"]],[3,4,["H7583"]],[4,9,["H2790"]],[9,11,["H3045"]],[11,14,["H3068"]],[14,18,["H1870"]],[18,19,["H6743"]],[19,20,["H518"]],[20,21,["H3808"]]]},{"k":613,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,8,["H1581"]],[8,10,["H3615"]],[10,11,["H8354"]],[11,14,["H376"]],[14,15,["H3947"]],[15,17,["H2091"]],[17,18,["H5141"]],[18,22,["H1235"]],[22,23,["H4948"]],[23,25,["H8147"]],[25,26,["H6781"]],[26,27,["H5921"]],[27,29,["H3027"]],[29,31,["H6235"]],[31,33,["H4948"]],[33,35,["H2091"]]]},{"k":614,"v":[[0,2,["H559"]],[2,3,["H4310"]],[3,4,["H1323"]],[4,6,["H859"]],[6,7,["H5046"]],[7,11,["H4994"]],[11,13,["H3426"]],[13,14,["H4725"]],[14,17,["H1"]],[17,18,["H1004"]],[18,23,["H3885"]]]},{"k":615,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H595"]],[6,9,["H1323"]],[9,11,["H1328"]],[11,13,["H1121"]],[13,15,["H4435"]],[15,16,["H834"]],[16,18,["H3205"]],[18,20,["H5152"]]]},{"k":616,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,8,["H1571"]],[8,9,["H8401"]],[9,10,["H1571"]],[10,11,["H4554"]],[11,12,["H7227"]],[12,13,["H1571"]],[13,14,["H4725"]],[14,17,["H3885"]]]},{"k":617,"v":[[0,3,["H376"]],[3,7,["H6915"]],[7,9,["H7812"]],[9,11,["H3068"]]]},{"k":618,"v":[[0,3,["H559"]],[3,4,["H1288"]],[4,7,["H3068"]],[7,8,["H430"]],[8,11,["H113"]],[11,12,["H85"]],[12,13,["H834"]],[13,15,["H3808"]],[15,17,["H5800","H4480","H5973"]],[17,19,["H113"]],[19,22,["H2617"]],[22,25,["H571"]],[25,26,["H595"]],[26,30,["H1870"]],[30,32,["H3068"]],[32,33,["H5148"]],[33,37,["H1004"]],[37,40,["H113"]],[40,41,["H251"]]]},{"k":619,"v":[[0,3,["H5291"]],[3,4,["H7323"]],[4,6,["H5046"]],[6,10,["H517"]],[10,11,["H1004"]],[11,12,["H428"]],[12,13,["H1697"]]]},{"k":620,"v":[[0,2,["H7259"]],[2,5,["H251"]],[5,8,["H8034"]],[8,10,["H3837"]],[10,12,["H3837"]],[12,13,["H7323"]],[13,14,["H2351"]],[14,15,["H413"]],[15,17,["H376"]],[17,18,["H413"]],[18,20,["H5869"]]]},{"k":621,"v":[[0,5,["H1961"]],[5,8,["H7200","(H853)"]],[8,10,["H5141"]],[10,12,["H6781"]],[12,13,["H5921"]],[13,15,["H269"]],[15,16,["H3027"]],[16,20,["H8085","(H853)"]],[20,22,["H1697"]],[22,24,["H7259"]],[24,26,["H269"]],[26,27,["H559"]],[27,28,["H3541"]],[28,29,["H1696"]],[29,31,["H376"]],[31,32,["H413"]],[32,36,["H935"]],[36,37,["H413"]],[37,39,["H376"]],[39,41,["H2009"]],[41,43,["H5975"]],[43,44,["H5921"]],[44,46,["H1581"]],[46,47,["H5921"]],[47,49,["H5869"]]]},{"k":622,"v":[[0,3,["H559"]],[3,5,["H935"]],[5,7,["H1288"]],[7,10,["H3068"]],[10,11,["H4100"]],[11,12,["H5975"]],[12,14,["H2351"]],[14,16,["H595"]],[16,18,["H6437"]],[18,20,["H1004"]],[20,22,["H4725"]],[22,25,["H1581"]]]},{"k":623,"v":[[0,3,["H376"]],[3,4,["H935"]],[4,7,["H1004"]],[7,10,["H6605"]],[10,12,["H1581"]],[12,14,["H5414"]],[14,15,["H8401"]],[15,17,["H4554"]],[17,20,["H1581"]],[20,22,["H4325"]],[22,24,["H7364"]],[24,26,["H7272"]],[26,29,["H376"]],[29,30,["H7272"]],[30,31,["H834"]],[31,33,["H854"]],[33,34,[]]]},{"k":624,"v":[[0,4,["H7760"]],[4,6,["H6440"]],[6,9,["H398"]],[9,12,["H559"]],[12,15,["H3808"]],[15,16,["H398"]],[16,17,["H5704","H518"]],[17,20,["H1696"]],[20,22,["H1697"]],[22,25,["H559"]],[25,27,["H1696"]]]},{"k":625,"v":[[0,3,["H559"]],[3,4,["H595"]],[4,6,["H85"]],[6,7,["H5650"]]]},{"k":626,"v":[[0,3,["H3068"]],[3,5,["H1288","(H853)"]],[5,7,["H113"]],[7,8,["H3966"]],[8,13,["H1431"]],[13,17,["H5414"]],[17,19,["H6629"]],[19,21,["H1241"]],[21,23,["H3701"]],[23,25,["H2091"]],[25,27,["H5650"]],[27,29,["H8198"]],[29,31,["H1581"]],[31,33,["H2543"]]]},{"k":627,"v":[[0,2,["H8283"]],[2,4,["H113"]],[4,5,["H802"]],[5,6,["H3205"]],[6,8,["H1121"]],[8,11,["H113"]],[11,12,["H310"]],[12,15,["H2209"]],[15,21,["H5414","(H853)"]],[21,22,["H3605"]],[22,23,["H834"]],[23,25,[]]]},{"k":628,"v":[[0,3,["H113"]],[3,6,["H7650"]],[6,7,["H559"]],[7,10,["H3808"]],[10,11,["H3947"]],[11,13,["H802"]],[13,16,["H1121"]],[16,19,["H4480","H1323"]],[19,22,["H3669"]],[22,24,["H834"]],[24,25,["H776"]],[25,26,["H595"]],[26,27,["H3427"]]]},{"k":629,"v":[[0,1,["H518","H3808"]],[1,4,["H1980"]],[4,5,["H413"]],[5,7,["H1"]],[7,8,["H1004"]],[8,10,["H413"]],[10,12,["H4940"]],[12,14,["H3947"]],[14,16,["H802"]],[16,19,["H1121"]]]},{"k":630,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H113"]],[6,7,["H194"]],[7,9,["H802"]],[9,11,["H3808"]],[11,12,["H1980","H310"]],[12,13,[]]]},{"k":631,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H3068"]],[7,8,["H6440"]],[8,9,["H834"]],[9,11,["H1980"]],[11,13,["H7971"]],[13,15,["H4397"]],[15,16,["H854"]],[16,19,["H6743"]],[19,21,["H1870"]],[21,25,["H3947"]],[25,27,["H802"]],[27,30,["H1121"]],[30,33,["H4480","H4940"]],[33,38,["H4480","H1004","H1"]]]},{"k":632,"v":[[0,1,["H227"]],[1,5,["H5352"]],[5,9,["H4480","H423"]],[9,10,["H3588"]],[10,12,["H935"]],[12,13,["H413"]],[13,15,["H4940"]],[15,17,["H518"]],[17,19,["H5414"]],[19,20,["H3808"]],[20,25,["H1961"]],[25,26,["H5355"]],[26,29,["H4480","H423"]]]},{"k":633,"v":[[0,3,["H935"]],[3,5,["H3117"]],[5,6,["H413"]],[6,8,["H5869"]],[8,10,["H559"]],[10,12,["H3068"]],[12,13,["H430"]],[13,16,["H113"]],[16,17,["H85"]],[17,18,["H518"]],[18,19,["H4994"]],[19,21,["H3426"]],[21,22,["H6743"]],[22,24,["H1870"]],[24,25,["H834","H5921"]],[25,26,["H595"]],[26,27,["H1980"]]]},{"k":634,"v":[[0,1,["H2009"]],[1,2,["H595"]],[2,3,["H5324"]],[3,4,["H5921"]],[4,6,["H5869"]],[6,8,["H4325"]],[8,14,["H1961"]],[14,18,["H5959"]],[18,20,["H3318"]],[20,22,["H7579"]],[22,26,["H559"]],[26,27,["H413"]],[27,33,["H4994"]],[33,35,["H4592"]],[35,36,["H4325"]],[36,39,["H4480","H3537"]],[39,41,["H8248"]]]},{"k":635,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1571"]],[6,7,["H8354"]],[7,8,["H859"]],[8,12,["H1571"]],[12,13,["H7579"]],[13,16,["H1581"]],[16,19,["H1931"]],[19,22,["H802"]],[22,23,["H834"]],[23,25,["H3068"]],[25,28,["H3198"]],[28,31,["H113"]],[31,32,["H1121"]]]},{"k":636,"v":[[0,2,["H2962"]],[2,3,["H589"]],[3,5,["H3615"]],[5,6,["H1696"]],[6,7,["H413"]],[7,9,["H3820"]],[9,10,["H2009"]],[10,11,["H7259"]],[11,13,["H3318"]],[13,16,["H3537"]],[16,17,["H5921"]],[17,19,["H7926"]],[19,23,["H3381"]],[23,26,["H5869"]],[26,28,["H7579"]],[28,32,["H559"]],[32,33,["H413"]],[33,37,["H8248"]],[37,40,["H4994"]]]},{"k":637,"v":[[0,4,["H4116"]],[4,7,["H3381"]],[7,9,["H3537"]],[9,10,["H4480","H5921"]],[10,14,["H559"]],[14,15,["H8354"]],[15,21,["H1581"]],[21,22,["H8248"]],[22,23,["H1571"]],[23,26,["H8354"]],[26,31,["H1581"]],[31,32,["H8354"]],[32,33,["H1571"]]]},{"k":638,"v":[[0,3,["H7592"]],[3,6,["H559"]],[6,7,["H4310"]],[7,8,["H1323"]],[8,10,["H859"]],[10,13,["H559"]],[13,15,["H1323"]],[15,17,["H1328"]],[17,18,["H5152"]],[18,19,["H1121"]],[19,20,["H834"]],[20,21,["H4435"]],[21,22,["H3205"]],[22,27,["H7760"]],[27,29,["H5141"]],[29,30,["H5921"]],[30,32,["H639"]],[32,35,["H6781"]],[35,36,["H5921"]],[36,38,["H3027"]]]},{"k":639,"v":[[0,6,["H6915"]],[6,8,["H7812"]],[8,10,["H3068"]],[10,12,["H1288","(H853)"]],[12,14,["H3068"]],[14,15,["H430"]],[15,18,["H113"]],[18,19,["H85"]],[19,20,["H834"]],[20,22,["H5148"]],[22,26,["H571"]],[26,27,["H1870"]],[27,29,["H3947","(H853)"]],[29,31,["H113"]],[31,32,["H251"]],[32,33,["H1323"]],[33,36,["H1121"]]]},{"k":640,"v":[[0,2,["H6258"]],[2,3,["H518"]],[3,5,["H3426"]],[5,6,["H6213"]],[6,7,["H2617"]],[7,9,["H571"]],[9,10,["H854"]],[10,12,["H113"]],[12,13,["H5046"]],[13,16,["H518"]],[16,17,["H3808"]],[17,18,["H5046"]],[18,23,["H6437"]],[23,24,["H5921"]],[24,27,["H3225"]],[27,28,["H176"]],[28,29,["H5921"]],[29,31,["H8040"]]]},{"k":641,"v":[[0,2,["H3837"]],[2,4,["H1328"]],[4,5,["H6030"]],[5,7,["H559"]],[7,9,["H1697"]],[9,10,["H3318"]],[10,13,["H4480","H3068"]],[13,15,["H3201","H3808"]],[15,16,["H1696"]],[16,17,["H413"]],[17,19,["H7451"]],[19,20,["H176"]],[20,21,["H2896"]]]},{"k":642,"v":[[0,1,["H2009"]],[1,2,["H7259"]],[2,4,["H6440"]],[4,6,["H3947"]],[6,9,["H1980"]],[9,13,["H1961"]],[13,15,["H113"]],[15,16,["H1121"]],[16,17,["H802"]],[17,18,["H834"]],[18,20,["H3068"]],[20,22,["H1696"]]]},{"k":643,"v":[[0,5,["H1961"]],[5,7,["H834"]],[7,8,["H85"]],[8,9,["H5650"]],[9,10,["H8085","(H853)"]],[10,12,["H1697"]],[12,14,["H7812"]],[14,16,["H3068"]],[16,21,["H776"]]]},{"k":644,"v":[[0,3,["H5650"]],[3,5,["H3318"]],[5,6,["H3627"]],[6,8,["H3701"]],[8,10,["H3627"]],[10,12,["H2091"]],[12,14,["H899"]],[14,16,["H5414"]],[16,19,["H7259"]],[19,21,["H5414"]],[21,25,["H251"]],[25,29,["H517"]],[29,31,["H4030"]]]},{"k":645,"v":[[0,4,["H398"]],[4,6,["H8354"]],[6,7,["H1931"]],[7,10,["H376"]],[10,11,["H834"]],[11,13,["H5973"]],[13,18,["H3885"]],[18,22,["H6965"]],[22,25,["H1242"]],[25,28,["H559"]],[28,31,["H7971"]],[31,34,["H113"]]]},{"k":646,"v":[[0,3,["H251"]],[3,6,["H517"]],[6,7,["H559"]],[7,10,["H5291"]],[10,11,["H3427"]],[11,12,["H854"]],[12,16,["H3117"]],[16,19,["H176"]],[19,20,["H6218"]],[20,22,["H310"]],[22,25,["H1980"]]]},{"k":647,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H309"]],[6,8,["H408"]],[8,11,["H3068"]],[11,13,["H6743"]],[13,15,["H1870"]],[15,18,["H7971"]],[18,22,["H1980"]],[22,25,["H113"]]]},{"k":648,"v":[[0,3,["H559"]],[3,6,["H7121"]],[6,8,["H5291"]],[8,10,["H7592"]],[10,11,["(H853)"]],[11,13,["H6310"]]]},{"k":649,"v":[[0,3,["H7121"]],[3,4,["H7259"]],[4,6,["H559"]],[6,7,["H413"]],[7,11,["H1980"]],[11,12,["H5973"]],[12,13,["H2088"]],[13,14,["H376"]],[14,17,["H559"]],[17,20,["H1980"]]]},{"k":650,"v":[[0,4,["H7971","(H853)"]],[4,5,["H7259"]],[5,7,["H269"]],[7,10,["H3243"]],[10,12,["H85"]],[12,13,["H5650"]],[13,16,["H376"]]]},{"k":651,"v":[[0,3,["H1288","(H853)"]],[3,4,["H7259"]],[4,6,["H559"]],[6,9,["H859"]],[9,12,["H269"]],[12,13,["H1961"]],[13,18,["H505"]],[18,20,["H7233"]],[20,24,["H2233"]],[24,25,["H3423","(H853)"]],[25,27,["H8179"]],[27,31,["H8130"]],[31,32,[]]]},{"k":652,"v":[[0,2,["H7259"]],[2,3,["H6965"]],[3,6,["H5291"]],[6,9,["H7392"]],[9,10,["H5921"]],[10,12,["H1581"]],[12,14,["H1980","H310"]],[14,16,["H376"]],[16,19,["H5650"]],[19,20,["H3947","(H853)"]],[20,21,["H7259"]],[21,25,["H1980"]]]},{"k":653,"v":[[0,2,["H3327"]],[2,3,["H935"]],[3,6,["H4480","H935"]],[6,10,["H883"]],[10,12,["H1931"]],[12,13,["H3427"]],[13,16,["H5045"]],[16,17,["H776"]]]},{"k":654,"v":[[0,2,["H3327"]],[2,4,["H3318"]],[4,6,["H7742"]],[6,9,["H7704"]],[9,12,["H6437","H6153"]],[12,16,["H5375"]],[16,18,["H5869"]],[18,20,["H7200"]],[20,22,["H2009"]],[22,24,["H1581"]],[24,26,["H935"]]]},{"k":655,"v":[[0,2,["H7259"]],[2,4,["H5375","(H853)"]],[4,6,["H5869"]],[6,10,["H7200","(H853)"]],[10,11,["H3327"]],[11,13,["H5307"]],[13,14,["H4480","H5921"]],[14,16,["H1581"]]]},{"k":656,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H5650"]],[7,8,["H4310"]],[8,9,["H376"]],[9,11,["H1976"]],[11,13,["H1980"]],[13,16,["H7704"]],[16,18,["H7125"]],[18,22,["H5650"]],[22,24,["H559"]],[24,25,["H1931"]],[25,28,["H113"]],[28,31,["H3947"]],[31,33,["H6809"]],[33,36,["H3680"]]]},{"k":657,"v":[[0,3,["H5650"]],[3,4,["H5608"]],[4,5,["H3327","(H853)"]],[5,6,["H3605"]],[6,7,["H1697"]],[7,8,["H834"]],[8,11,["H6213"]]]},{"k":658,"v":[[0,2,["H3327"]],[2,3,["H935"]],[3,7,["H517"]],[7,8,["H8283"]],[8,9,["H168"]],[9,11,["H3947","(H853)"]],[11,12,["H7259"]],[12,15,["H1961"]],[15,17,["H802"]],[17,20,["H157"]],[20,23,["H3327"]],[23,25,["H5162"]],[25,26,["H310"]],[26,28,["H517"]],[28,29,[]]]},{"k":659,"v":[[0,2,["H3254"]],[2,3,["H85"]],[3,4,["H3947"]],[4,6,["H802"]],[6,9,["H8034"]],[9,11,["H6989"]]]},{"k":660,"v":[[0,3,["H3205"]],[3,4,["(H853)"]],[4,5,["H2175"]],[5,7,["H3370"]],[7,9,["H4091"]],[9,11,["H4080"]],[11,13,["H3435"]],[13,15,["H7744"]]]},{"k":661,"v":[[0,2,["H3370"]],[2,3,["H3205","(H853)"]],[3,4,["H7614"]],[4,6,["H1719"]],[6,9,["H1121"]],[9,11,["H1719"]],[11,12,["H1961"]],[12,13,["H805"]],[13,15,["H3912"]],[15,17,["H3817"]]]},{"k":662,"v":[[0,3,["H1121"]],[3,5,["H4080"]],[5,6,["H5891"]],[6,8,["H6081"]],[8,10,["H2585"]],[10,12,["H28"]],[12,14,["H420"]],[14,15,["H3605"]],[15,16,["H428"]],[16,19,["H1121"]],[19,21,["H6989"]]]},{"k":663,"v":[[0,2,["H85"]],[2,3,["H5414","(H853)"]],[3,4,["H3605"]],[4,5,["H834"]],[5,9,["H3327"]]]},{"k":664,"v":[[0,4,["H1121"]],[4,7,["H6370"]],[7,8,["H834"]],[8,9,["H85"]],[9,11,["H85"]],[11,12,["H5414"]],[12,13,["H4979"]],[13,17,["H7971"]],[17,18,["H4480","H5921"]],[18,19,["H3327"]],[19,21,["H1121"]],[21,24,["H5750"]],[24,25,["H2416"]],[25,26,["H6924"]],[26,27,["H413"]],[27,29,["H6924"]],[29,30,["H776"]]]},{"k":665,"v":[[0,2,["H428"]],[2,5,["H3117"]],[5,8,["H8141"]],[8,10,["H85"]],[10,11,["H2416"]],[11,12,["H834"]],[12,14,["H2416"]],[14,16,["H3967"]],[16,19,["H7657","(H8141)","H2568"]],[19,20,["H8141"]]]},{"k":666,"v":[[0,2,["H85"]],[2,6,["H1478"]],[6,8,["H4191"]],[8,11,["H2896"]],[11,13,["H7872"]],[13,16,["H2205"]],[16,18,["H7649"]],[18,23,["H622"]],[23,24,["H413"]],[24,26,["H5971"]]]},{"k":667,"v":[[0,3,["H1121"]],[3,4,["H3327"]],[4,6,["H3458"]],[6,7,["H6912"]],[7,9,["H413"]],[9,11,["H4631"]],[11,13,["H4375"]],[13,14,["H413"]],[14,16,["H7704"]],[16,18,["H6085"]],[18,20,["H1121"]],[20,22,["H6714"]],[22,24,["H2850"]],[24,25,["H834"]],[25,27,["H5921","H6440"]],[27,28,["H4471"]]]},{"k":668,"v":[[0,2,["H7704"]],[2,3,["H834"]],[3,4,["H85"]],[4,5,["H7069"]],[5,6,["H4480","H854"]],[6,8,["H1121"]],[8,10,["H2845"]],[10,11,["H8033"]],[11,13,["H85"]],[13,14,["H6912"]],[14,16,["H8283"]],[16,18,["H802"]]]},{"k":669,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,8,["H4194"]],[8,10,["H85"]],[10,12,["H430"]],[12,13,["H1288"]],[13,15,["H1121","(H853)"]],[15,16,["H3327"]],[16,18,["H3327"]],[18,19,["H3427"]],[19,20,["H5973"]],[20,23,["H883"]]]},{"k":670,"v":[[0,2,["H428"]],[2,5,["H8435"]],[5,7,["H3458"]],[7,8,["H85"]],[8,9,["H1121"]],[9,10,["H834"]],[10,11,["H1904"]],[11,13,["H4713"]],[13,14,["H8283"]],[14,15,["H8198"]],[15,16,["H3205"]],[16,18,["H85"]]]},{"k":671,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H1121"]],[8,10,["H3458"]],[10,13,["H8034"]],[13,17,["H8435"]],[17,19,["H1060"]],[19,21,["H3458"]],[21,22,["H5032"]],[22,24,["H6938"]],[24,26,["H110"]],[26,28,["H4017"]]]},{"k":672,"v":[[0,2,["H4927"]],[2,4,["H1746"]],[4,6,["H4854"]]]},{"k":673,"v":[[0,1,["H2316"]],[1,3,["H8485"]],[3,4,["H3195"]],[4,5,["H5305"]],[5,7,["H6929"]]]},{"k":674,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H3458"]],[6,8,["H428"]],[8,11,["H8034"]],[11,14,["H2691"]],[14,18,["H2918"]],[18,19,["H8147","H6240"]],[19,20,["H5387"]],[20,24,["H523"]]]},{"k":675,"v":[[0,2,["H428"]],[2,5,["H8141"]],[5,8,["H2416"]],[8,10,["H3458"]],[10,12,["H3967"]],[12,14,["H7970"]],[14,16,["H7651"]],[16,17,["H8141"]],[17,23,["H1478"]],[23,25,["H4191"]],[25,28,["H622"]],[28,29,["H413"]],[29,31,["H5971"]]]},{"k":676,"v":[[0,3,["H7931"]],[3,5,["H4480","H2341"]],[5,6,["H5704"]],[6,7,["H7793"]],[7,8,["H834"]],[8,10,["H5921","H6440"]],[10,11,["H4714"]],[11,14,["H935"]],[14,16,["H804"]],[16,19,["H5307"]],[19,20,["H5921"]],[20,22,["H6440"]],[22,24,["H3605"]],[24,26,["H251"]]]},{"k":677,"v":[[0,2,["H428"]],[2,5,["H8435"]],[5,7,["H3327"]],[7,8,["H85"]],[8,9,["H1121"]],[9,10,["H85"]],[10,11,["H3205","(H853)"]],[11,12,["H3327"]]]},{"k":678,"v":[[0,2,["H3327"]],[2,3,["H1961"]],[3,4,["H705"]],[4,5,["H8141"]],[5,6,["H1121"]],[6,9,["H3947","(H853)"]],[9,10,["H7259"]],[10,12,["H802"]],[12,14,["H1323"]],[14,16,["H1328"]],[16,18,["H761"]],[18,20,["H4480","H6307"]],[20,22,["H269"]],[22,24,["H3837"]],[24,26,["H761"]]]},{"k":679,"v":[[0,2,["H3327"]],[2,3,["H6279"]],[3,5,["H3068"]],[5,6,["H5227"]],[6,8,["H802"]],[8,9,["H3588"]],[9,10,["H1931"]],[10,12,["H6135"]],[12,15,["H3068"]],[15,17,["H6279"]],[17,21,["H7259"]],[21,23,["H802"]],[23,24,["H2029"]]]},{"k":680,"v":[[0,3,["H1121"]],[3,5,["H7533"]],[5,6,["H7130"]],[6,10,["H559"]],[10,11,["H518"]],[11,14,["H3651"]],[14,15,["H4100"]],[15,17,["H595"]],[17,18,["H2088"]],[18,21,["H1980"]],[21,23,["H1875"]],[23,24,["(H853)"]],[24,26,["H3068"]]]},{"k":681,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,7,["H8147"]],[7,8,["H1471"]],[8,12,["H990"]],[12,14,["H8147"]],[14,17,["H3816"]],[17,20,["H6504"]],[20,23,["H4480","H4578"]],[23,27,["H3816"]],[27,30,["H553"]],[30,34,["H4480","H3816"]],[34,37,["H7227"]],[37,39,["H5647"]],[39,41,["H6810"]]]},{"k":682,"v":[[0,4,["H3117"]],[4,7,["H3205"]],[7,9,["H4390"]],[9,10,["H2009"]],[10,13,["H8380"]],[13,16,["H990"]]]},{"k":683,"v":[[0,3,["H7223"]],[3,5,["H3318"]],[5,6,["H132"]],[6,8,["H3605"]],[8,11,["H8181"]],[11,12,["H155"]],[12,15,["H7121"]],[15,17,["H8034"]],[17,18,["H6215"]]]},{"k":684,"v":[[0,3,["H310","H3651"]],[3,4,["H3318"]],[4,6,["H251"]],[6,10,["H3027"]],[10,12,["H270"]],[12,14,["H6215"]],[14,15,["H6119"]],[15,18,["H8034"]],[18,20,["H7121"]],[20,21,["H3290"]],[21,23,["H3327"]],[23,25,["H8346"]],[25,26,["H8141"]],[26,27,["H1121"]],[27,30,["H3205"]],[30,31,[]]]},{"k":685,"v":[[0,3,["H5288"]],[3,4,["H1431"]],[4,6,["H6215"]],[6,7,["H1961"]],[7,9,["H3045"]],[9,10,["H6718"]],[10,12,["H376"]],[12,15,["H7704"]],[15,17,["H3290"]],[17,20,["H8535"]],[20,21,["H376"]],[21,22,["H3427"]],[22,24,["H168"]]]},{"k":686,"v":[[0,2,["H3327"]],[2,3,["H157","(H853)"]],[3,4,["H6215"]],[4,5,["H3588"]],[5,8,["H6310"]],[8,11,["H6718"]],[11,13,["H7259"]],[13,14,["H157","(H853)"]],[14,15,["H3290"]]]},{"k":687,"v":[[0,2,["H3290"]],[2,3,["H2102"]],[3,4,["H5138"]],[4,6,["H6215"]],[6,7,["H935"]],[7,8,["H4480"]],[8,10,["H7704"]],[10,12,["H1931"]],[12,14,["H5889"]]]},{"k":688,"v":[[0,2,["H6215"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3290"]],[5,6,["H3938"]],[6,10,["H4994"]],[10,11,["H4480"]],[11,13,["H2088"]],[13,14,["H122"]],[14,16,["H3588"]],[16,17,["H595"]],[17,19,["H5889"]],[19,20,["H5921","H3651"]],[20,23,["H8034"]],[23,24,["H7121"]],[24,25,["H123"]]]},{"k":689,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,4,["H4376"]],[4,7,["H3117","(H853)"]],[7,9,["H1062"]]]},{"k":690,"v":[[0,2,["H6215"]],[2,3,["H559"]],[3,4,["H2009"]],[4,5,["H595"]],[5,9,["H1980"]],[9,11,["H4191"]],[11,14,["H4100"]],[14,16,["H2088"]],[16,17,["H1062"]],[17,20,[]]]},{"k":691,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,4,["H7650"]],[4,8,["H3117"]],[8,11,["H7650"]],[11,16,["H4376","(H853)"]],[16,18,["H1062"]],[18,20,["H3290"]]]},{"k":692,"v":[[0,2,["H3290"]],[2,3,["H5414"]],[3,4,["H6215"]],[4,5,["H3899"]],[5,7,["H5138"]],[7,9,["H5742"]],[9,13,["H398"]],[13,15,["H8354"]],[15,18,["H6965"]],[18,22,["H1980"]],[22,24,["H6215"]],[24,25,["H959","(H853)"]],[25,27,["H1062"]]]},{"k":693,"v":[[0,3,["H1961"]],[3,5,["H7458"]],[5,8,["H776"]],[8,9,["H4480","H905"]],[9,11,["H7223"]],[11,12,["H7458"]],[12,13,["H834"]],[13,14,["H1961"]],[14,17,["H3117"]],[17,19,["H85"]],[19,21,["H3327"]],[21,22,["H1980"]],[22,23,["H413"]],[23,24,["H40"]],[24,25,["H4428"]],[25,28,["H6430"]],[28,30,["H1642"]]]},{"k":694,"v":[[0,3,["H3068"]],[3,4,["H7200"]],[4,5,["H413"]],[5,8,["H559"]],[8,11,["H3381","H408"]],[11,13,["H4714"]],[13,14,["H7931"]],[14,17,["H776"]],[17,18,["H834"]],[18,21,["H559"]],[21,23,["H413"]]]},{"k":695,"v":[[0,1,["H1481"]],[1,3,["H2063"]],[3,4,["H776"]],[4,8,["H1961"]],[8,9,["H5973"]],[9,13,["H1288"]],[13,15,["H3588"]],[15,21,["H2233"]],[21,24,["H5414","(H853)"]],[24,25,["H3605"]],[25,26,["H411"]],[26,27,["H776"]],[27,31,["H6965","(H853)"]],[31,33,["H7621"]],[33,34,["H834"]],[34,36,["H7650"]],[36,38,["H85"]],[38,40,["H1"]]]},{"k":696,"v":[[0,4,["(H853)"]],[4,6,["H2233"]],[6,8,["H7235"]],[8,11,["H3556"]],[11,13,["H8064"]],[13,16,["H5414"]],[16,19,["H2233","(H853)"]],[19,20,["H3605"]],[20,21,["H411"]],[21,22,["H776"]],[22,26,["H2233"]],[26,28,["H3605"]],[28,30,["H1471"]],[30,33,["H776"]],[33,35,["H1288"]]]},{"k":697,"v":[[0,1,["H6118"]],[1,2,["H834"]],[2,3,["H85"]],[3,4,["H8085"]],[4,6,["H6963"]],[6,8,["H8104"]],[8,10,["H4931"]],[10,12,["H4687"]],[12,14,["H2708"]],[14,17,["H8451"]]]},{"k":698,"v":[[0,2,["H3327"]],[2,3,["H3427"]],[3,5,["H1642"]]]},{"k":699,"v":[[0,3,["H376"]],[3,6,["H4725"]],[6,7,["H7592"]],[7,11,["H802"]],[11,14,["H559"]],[14,15,["H1931"]],[15,18,["H269"]],[18,19,["H3588"]],[19,21,["H3372"]],[21,23,["H559"]],[23,27,["H802"]],[27,28,["H6435"]],[28,32,["H376"]],[32,35,["H4725"]],[35,37,["H2026"]],[37,39,["H5921"]],[39,40,["H7259"]],[40,41,["H3588"]],[41,42,["H1931"]],[42,44,["H2896"]],[44,47,["H4758"]]]},{"k":700,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,10,["H8033"]],[10,12,["H748"]],[12,13,["H3117"]],[13,15,["H40"]],[15,16,["H4428"]],[16,19,["H6430"]],[19,21,["H8259"]],[21,22,["H1157"]],[22,24,["H2474"]],[24,26,["H7200"]],[26,28,["H2009"]],[28,29,["H3327"]],[29,31,["H6711"]],[31,32,["(H853)"]],[32,33,["H7259"]],[33,35,["H802"]]]},{"k":701,"v":[[0,2,["H40"]],[2,3,["H7121"]],[3,4,["H3327"]],[4,6,["H559"]],[6,7,["H2009"]],[7,10,["H389"]],[10,11,["H1931"]],[11,14,["H802"]],[14,16,["H349"]],[16,17,["H559"]],[17,19,["H1931"]],[19,22,["H269"]],[22,24,["H3327"]],[24,25,["H559"]],[25,26,["H413"]],[26,28,["H3588"]],[28,30,["H559"]],[30,31,["H6435"]],[31,33,["H4191"]],[33,34,["H5921"]],[34,35,[]]]},{"k":702,"v":[[0,2,["H40"]],[2,3,["H559"]],[3,4,["H4100"]],[4,6,["H2063"]],[6,9,["H6213"]],[9,12,["H259"]],[12,15,["H5971"]],[15,17,["H4592"]],[17,19,["H7901"]],[19,20,["H854"]],[20,22,["H802"]],[22,27,["H935"]],[27,28,["H817"]],[28,29,["H5921"]],[29,30,[]]]},{"k":703,"v":[[0,2,["H40"]],[2,3,["H6680","(H853)"]],[3,4,["H3605"]],[4,6,["H5971"]],[6,7,["H559"]],[7,10,["H5060"]],[10,11,["H2088"]],[11,12,["H376"]],[12,15,["H802"]],[15,21,["H4191","H4191"]]]},{"k":704,"v":[[0,2,["H3327"]],[2,3,["H2232"]],[3,5,["H1931"]],[5,6,["H776"]],[6,8,["H4672"]],[8,11,["H1931"]],[11,12,["H8141"]],[12,14,["H3967","H8180"]],[14,17,["H3068"]],[17,18,["H1288"]],[18,19,[]]]},{"k":705,"v":[[0,3,["H376"]],[3,5,["H1431"]],[5,7,["H1980"]],[7,8,["H1980"]],[8,10,["H1432"]],[10,11,["H5704","H3588"]],[11,15,["H1431","H3966"]]]},{"k":706,"v":[[0,3,["H1961"]],[3,4,["H4735"]],[4,6,["H6629"]],[6,8,["H4735"]],[8,10,["H1241"]],[10,13,["H7227"]],[13,15,["H5657"]],[15,18,["H6430"]],[18,19,["H7065"]],[19,20,[]]]},{"k":707,"v":[[0,2,["H3605"]],[2,4,["H875"]],[4,5,["H834"]],[5,7,["H1"]],[7,8,["H5650"]],[8,10,["H2658"]],[10,13,["H3117"]],[13,15,["H85"]],[15,17,["H1"]],[17,19,["H6430"]],[19,21,["H5640"]],[21,24,["H4390"]],[24,27,["H6083"]]]},{"k":708,"v":[[0,2,["H40"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3327"]],[5,6,["H1980"]],[6,7,["H4480","H5973"]],[7,9,["H3588"]],[9,13,["H6105","H3966"]],[13,14,["H4480"]],[14,15,[]]]},{"k":709,"v":[[0,2,["H3327"]],[2,3,["H1980"]],[3,4,["H4480","H8033"]],[4,8,["H2583"]],[8,11,["H5158"]],[11,13,["H1642"]],[13,15,["H3427"]],[15,16,["H8033"]]]},{"k":710,"v":[[0,2,["H3327"]],[2,3,["H2658"]],[3,4,["H7725","(H853)"]],[4,6,["H875"]],[6,8,["H4325"]],[8,9,["H834"]],[9,12,["H2658"]],[12,15,["H3117"]],[15,17,["H85"]],[17,19,["H1"]],[19,22,["H6430"]],[22,24,["H5640"]],[24,26,["H310"]],[26,28,["H4194"]],[28,30,["H85"]],[30,33,["H7121"]],[33,35,["H8034"]],[35,38,["H8034"]],[38,40,["H834"]],[40,42,["H1"]],[42,44,["H7121"]],[44,45,[]]]},{"k":711,"v":[[0,2,["H3327"]],[2,3,["H5650"]],[3,4,["H2658"]],[4,7,["H5158"]],[7,9,["H4672"]],[9,10,["H8033"]],[10,12,["H875"]],[12,14,["H2416"]],[14,15,["H4325"]]]},{"k":712,"v":[[0,3,["H7462"]],[3,5,["H1642"]],[5,7,["H7378"]],[7,8,["H5973"]],[8,9,["H3327"]],[9,10,["H7462"]],[10,11,["H559"]],[11,13,["H4325"]],[13,18,["H7121"]],[18,20,["H8034"]],[20,23,["H875"]],[23,24,["H6230"]],[24,25,["H3588"]],[25,27,["H6229"]],[27,28,["H5973"]],[28,29,[]]]},{"k":713,"v":[[0,3,["H2658"]],[3,4,["H312"]],[4,5,["H875"]],[5,7,["H7378"]],[7,8,["H5921"]],[8,10,["H1571"]],[10,13,["H7121"]],[13,15,["H8034"]],[15,18,["H7856"]]]},{"k":714,"v":[[0,3,["H6275"]],[3,5,["H4480","H8033"]],[5,7,["H2658"]],[7,8,["H312"]],[8,9,["H875"]],[9,11,["H5921"]],[11,14,["H7378"]],[14,15,["H3808"]],[15,18,["H7121"]],[18,20,["H8034"]],[20,23,["H7344"]],[23,26,["H559"]],[26,27,["H3588"]],[27,28,["H6258"]],[28,30,["H3068"]],[30,33,["H7337"]],[33,40,["H6509"]],[40,43,["H776"]]]},{"k":715,"v":[[0,4,["H5927"]],[4,6,["H4480","H8033"]],[6,8,["H884"]]]},{"k":716,"v":[[0,3,["H3068"]],[3,4,["H7200"]],[4,5,["H413"]],[5,8,["H1931"]],[8,9,["H3915"]],[9,11,["H559"]],[11,12,["H595"]],[12,15,["H430"]],[15,17,["H85"]],[17,19,["H1"]],[19,20,["H3372"]],[20,21,["H408"]],[21,22,["H3588"]],[22,23,["H595"]],[23,25,["H854"]],[25,29,["H1288"]],[29,32,["H7235","(H853)"]],[32,34,["H2233"]],[34,35,["H5668"]],[35,37,["H5650"]],[37,38,["H85"]],[38,39,[]]]},{"k":717,"v":[[0,3,["H1129"]],[3,5,["H4196"]],[5,6,["H8033"]],[6,8,["H7121"]],[8,11,["H8034"]],[11,14,["H3068"]],[14,16,["H5186"]],[16,18,["H168"]],[18,19,["H8033"]],[19,21,["H8033"]],[21,22,["H3327"]],[22,23,["H5650"]],[23,24,["H3738"]],[24,26,["H875"]]]},{"k":718,"v":[[0,2,["H40"]],[2,3,["H1980"]],[3,4,["H413"]],[4,7,["H4480","H1642"]],[7,9,["H276"]],[9,13,["H4828"]],[13,15,["H6369"]],[15,18,["H8269"]],[18,21,["H6635"]]]},{"k":719,"v":[[0,2,["H3327"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4069"]],[6,7,["H935"]],[7,9,["H413"]],[9,12,["H859"]],[12,13,["H8130"]],[13,19,["H7971"]],[19,20,["H4480"]],[20,21,[]]]},{"k":720,"v":[[0,3,["H559"]],[3,6,["H7200","H7200"]],[6,7,["H3588"]],[7,9,["H3068"]],[9,10,["H1961"]],[10,11,["H5973"]],[11,15,["H559"]],[15,18,["H1961"]],[18,19,["H4994"]],[19,21,["H423"]],[21,22,["H996"]],[22,25,["H996"]],[25,32,["H3772"]],[32,34,["H1285"]],[34,35,["H5973"]],[35,36,[]]]},{"k":721,"v":[[0,1,["H518"]],[1,4,["H6213"]],[4,7,["H7451"]],[7,8,["H834"]],[8,11,["H3808"]],[11,12,["H5060"]],[12,15,["H834"]],[15,18,["H6213"]],[18,19,["H5973"]],[19,22,["H7535"]],[22,23,["H2896"]],[23,28,["H7971"]],[28,30,["H7965"]],[30,31,["H859"]],[31,33,["H6258"]],[33,35,["H1288"]],[35,38,["H3068"]]]},{"k":722,"v":[[0,3,["H6213"]],[3,6,["H4960"]],[6,10,["H398"]],[10,12,["H8354"]]]},{"k":723,"v":[[0,5,["H7925"]],[5,8,["H1242"]],[8,10,["H7650"]],[10,11,["H376"]],[11,13,["H251"]],[13,15,["H3327"]],[15,18,["H7971"]],[18,21,["H1980"]],[21,22,["H4480","H854"]],[22,25,["H7965"]]]},{"k":724,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,8,["H3117"]],[8,10,["H3327"]],[10,11,["H5650"]],[11,12,["H935"]],[12,14,["H5046"]],[14,16,["H5921","H182"]],[16,18,["H875"]],[18,19,["H834"]],[19,22,["H2658"]],[22,24,["H559"]],[24,29,["H4672"]],[29,30,["H4325"]]]},{"k":725,"v":[[0,3,["H7121"]],[3,5,["H7656"]],[5,6,["H5921","H3651"]],[6,8,["H8034"]],[8,11,["H5892"]],[11,13,["H884"]],[13,14,["H5704"]],[14,15,["H2088"]],[15,16,["H3117"]]]},{"k":726,"v":[[0,2,["H6215"]],[2,3,["H1961"]],[3,4,["H705"]],[4,5,["H8141"]],[5,6,["H1121"]],[6,9,["H3947"]],[9,11,["H802","(H853)"]],[11,12,["H3067"]],[12,14,["H1323"]],[14,16,["H882"]],[16,18,["H2850"]],[18,20,["H1315"]],[20,22,["H1323"]],[22,24,["H356"]],[24,26,["H2850"]]]},{"k":727,"v":[[0,2,["H1961"]],[2,4,["H4786"]],[4,6,["H7307"]],[6,8,["H3327"]],[8,11,["H7259"]]]},{"k":728,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,8,["H3327"]],[8,10,["H2204"]],[10,13,["H5869"]],[13,15,["H3543"]],[15,21,["H4480","H7200"]],[21,23,["H7121","(H853)"]],[23,24,["H6215"]],[24,26,["H1419"]],[26,27,["H1121"]],[27,29,["H559"]],[29,30,["H413"]],[30,33,["H1121"]],[33,36,["H559"]],[36,37,["H413"]],[37,39,["H2009"]],[39,42,[]]]},{"k":729,"v":[[0,3,["H559"]],[3,4,["H2009"]],[4,5,["H4994"]],[5,8,["H2204"]],[8,10,["H3045"]],[10,11,["H3808"]],[11,13,["H3117"]],[13,16,["H4194"]]]},{"k":730,"v":[[0,1,["H6258"]],[1,3,["H5375"]],[3,6,["H4994"]],[6,8,["H3627"]],[8,10,["H8522"]],[10,13,["H7198"]],[13,16,["H3318"]],[16,19,["H7704"]],[19,21,["H6679"]],[21,24,["H6718"]]]},{"k":731,"v":[[0,2,["H6213"]],[2,5,["H4303"]],[5,7,["H834"]],[7,9,["H157"]],[9,11,["H935"]],[11,18,["H398"]],[18,19,["H5668"]],[19,21,["H5315"]],[21,23,["H1288"]],[23,25,["H2962"]],[25,27,["H4191"]]]},{"k":732,"v":[[0,2,["H7259"]],[2,3,["H8085"]],[3,5,["H3327"]],[5,6,["H1696"]],[6,7,["H413"]],[7,8,["H6215"]],[8,10,["H1121"]],[10,12,["H6215"]],[12,13,["H1980"]],[13,16,["H7704"]],[16,18,["H6679"]],[18,20,["H6718"]],[20,23,["H935"]],[23,24,[]]]},{"k":733,"v":[[0,2,["H7259"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3290"]],[5,7,["H1121"]],[7,8,["H559"]],[8,9,["H2009"]],[9,11,["H8085","(H853)"]],[11,13,["H1"]],[13,14,["H1696"]],[14,15,["H413"]],[15,16,["H6215"]],[16,18,["H251"]],[18,19,["H559"]]]},{"k":734,"v":[[0,1,["H935"]],[1,3,["H6718"]],[3,5,["H6213"]],[5,8,["H4303"]],[8,12,["H398"]],[12,14,["H1288"]],[14,16,["H6440"]],[16,18,["H3068"]],[18,19,["H6440"]],[19,21,["H4194"]]]},{"k":735,"v":[[0,1,["H6258"]],[1,4,["H1121"]],[4,5,["H8085"]],[5,7,["H6963"]],[7,11,["H834"]],[11,12,["H589"]],[12,13,["H6680"]],[13,14,[]]]},{"k":736,"v":[[0,1,["H1980"]],[1,2,["H4994"]],[2,3,["H413"]],[3,5,["H6629"]],[5,7,["H3947"]],[7,10,["H4480","H8033"]],[10,11,["H8147"]],[11,12,["H2896"]],[12,13,["H1423"]],[13,16,["H5795"]],[16,20,["H6213"]],[20,23,["H4303"]],[23,26,["H1"]],[26,28,["H834"]],[28,30,["H157"]]]},{"k":737,"v":[[0,4,["H935"]],[4,8,["H1"]],[8,12,["H398"]],[12,14,["H5668","H834"]],[14,17,["H1288"]],[17,19,["H6440"]],[19,21,["H4194"]]]},{"k":738,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7259"]],[5,7,["H517"]],[7,8,["H2005"]],[8,9,["H6215"]],[9,11,["H251"]],[11,14,["H8163"]],[14,15,["H376"]],[15,17,["H595"]],[17,20,["H2509"]],[20,21,["H376"]]]},{"k":739,"v":[[0,2,["H1"]],[2,3,["H194"]],[3,5,["H4959"]],[5,10,["H1961"]],[10,12,["H5869"]],[12,15,["H8591"]],[15,19,["H935"]],[19,21,["H7045"]],[21,22,["H5921"]],[22,25,["H3808"]],[25,27,["H1293"]]]},{"k":740,"v":[[0,3,["H517"]],[3,4,["H559"]],[4,7,["H5921"]],[7,11,["H7045"]],[11,13,["H1121"]],[13,14,["H389"]],[14,15,["H8085"]],[15,17,["H6963"]],[17,19,["H1980"]],[19,20,["H3947"]],[20,22,[]]]},{"k":741,"v":[[0,3,["H1980"]],[3,5,["H3947"]],[5,7,["H935"]],[7,11,["H517"]],[11,14,["H517"]],[14,15,["H6213"]],[15,17,["H4303"]],[17,19,["H834"]],[19,21,["H1"]],[21,22,["H157"]]]},{"k":742,"v":[[0,2,["H7259"]],[2,3,["H3947","(H853)"]],[3,4,["H2530"]],[4,5,["H899"]],[5,8,["H1419"]],[8,9,["H1121"]],[9,10,["H6215"]],[10,11,["H834"]],[11,13,["H854"]],[13,17,["H1004"]],[17,21,["H3847","(H853)"]],[21,22,["H3290"]],[22,24,["H6996"]],[24,25,["H1121"]]]},{"k":743,"v":[[0,3,["H3847"]],[3,5,["H5785"]],[5,8,["H1423"]],[8,11,["H5795"]],[11,12,["H5921"]],[12,14,["H3027"]],[14,16,["H5921"]],[16,18,["H2513"]],[18,21,["H6677"]]]},{"k":744,"v":[[0,3,["H5414","(H853)"]],[3,6,["H4303"]],[6,9,["H3899"]],[9,10,["H834"]],[10,13,["H6213"]],[13,16,["H3027"]],[16,19,["H1121"]],[19,20,["H3290"]]]},{"k":745,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H1"]],[6,8,["H559"]],[8,10,["H1"]],[10,13,["H559"]],[13,14,["H2009"]],[14,17,["H4310"]],[17,19,["H859"]],[19,21,["H1121"]]]},{"k":746,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1"]],[6,7,["H595"]],[7,9,["H6215"]],[9,11,["H1060"]],[11,14,["H6213"]],[14,16,["H834"]],[16,18,["H1696","H413"]],[18,20,["H6965"]],[20,23,["H4994"]],[23,24,["H3427"]],[24,26,["H398"]],[26,29,["H4480","H6718"]],[29,30,["H5668"]],[30,32,["H5315"]],[32,34,["H1288"]],[34,35,[]]]},{"k":747,"v":[[0,2,["H3327"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,7,["H4100"]],[7,10,["H2088"]],[10,13,["H4672"]],[13,16,["H4116"]],[16,18,["H1121"]],[18,21,["H559"]],[21,22,["H3588"]],[22,24,["H3068"]],[24,26,["H430"]],[26,27,["H7136"]],[27,29,["H6440"]],[29,30,[]]]},{"k":748,"v":[[0,2,["H3327"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3290"]],[5,7,["H5066"]],[7,10,["H4994"]],[10,14,["H4184"]],[14,17,["H1121"]],[17,19,["H859"]],[19,22,["H2088"]],[22,23,["H1121"]],[23,24,["H6215"]],[24,25,["H518"]],[25,26,["H3808"]]]},{"k":749,"v":[[0,2,["H3290"]],[2,4,["H5066"]],[4,5,["H413"]],[5,6,["H3327"]],[6,8,["H1"]],[8,11,["H4959"]],[11,14,["H559"]],[14,16,["H6963"]],[16,18,["H3290"]],[18,19,["H6963"]],[19,22,["H3027"]],[22,25,["H3027"]],[25,27,["H6215"]]]},{"k":750,"v":[[0,3,["H5234"]],[3,5,["H3808"]],[5,6,["H3588"]],[6,8,["H3027"]],[8,9,["H1961"]],[9,10,["H8163"]],[10,13,["H251"]],[13,14,["H6215"]],[14,15,["H3027"]],[15,18,["H1288"]],[18,19,[]]]},{"k":751,"v":[[0,3,["H559"]],[3,5,["H859"]],[5,7,["H2088"]],[7,8,["H1121"]],[8,9,["H6215"]],[9,12,["H559"]],[12,13,["H589"]],[13,14,[]]]},{"k":752,"v":[[0,3,["H559"]],[3,6,["H5066"]],[6,12,["H398"]],[12,15,["H1121"]],[15,16,["H4480","H6718"]],[16,17,["H4616"]],[17,19,["H5315"]],[19,21,["H1288"]],[21,27,["H5066"]],[27,33,["H398"]],[33,36,["H935"]],[36,38,["H3196"]],[38,41,["H8354"]]]},{"k":753,"v":[[0,3,["H1"]],[3,4,["H3327"]],[4,5,["H559"]],[5,6,["H413"]],[6,9,["H5066"]],[9,10,["H4994"]],[10,12,["H5401"]],[12,15,["H1121"]]]},{"k":754,"v":[[0,4,["H5066"]],[4,6,["H5401"]],[6,10,["H7306","(H853)"]],[10,12,["H7381"]],[12,15,["H899"]],[15,17,["H1288"]],[17,20,["H559"]],[20,21,["H7200"]],[21,23,["H7381"]],[23,26,["H1121"]],[26,30,["H7381"]],[30,33,["H7704"]],[33,34,["H834"]],[34,36,["H3068"]],[36,38,["H1288"]]]},{"k":755,"v":[[0,2,["H430"]],[2,3,["H5414"]],[3,7,["H4480","H2919"]],[7,9,["H8064"]],[9,12,["H4924"]],[12,15,["H776"]],[15,17,["H7230"]],[17,19,["H1715"]],[19,21,["H8492"]]]},{"k":756,"v":[[0,2,["H5971"]],[2,3,["H5647"]],[3,6,["H3816"]],[6,8,["H7812"]],[8,11,["H1933"]],[11,12,["H1376"]],[12,15,["H251"]],[15,19,["H517"]],[19,20,["H1121"]],[20,22,["H7812"]],[22,25,["H779"]],[25,30,["H779"]],[30,33,["H1288"]],[33,37,["H1288"]],[37,38,[]]]},{"k":757,"v":[[0,5,["H1961"]],[5,8,["H834"]],[8,9,["H3327"]],[9,13,["H3615"]],[13,15,["H1288","(H853)"]],[15,16,["H3290"]],[16,18,["H3290"]],[18,19,["H1961"]],[19,20,["H389"]],[20,23,["H3318","H3318"]],[23,24,["H4480","H854"]],[24,26,["H6440"]],[26,28,["H3327"]],[28,30,["H1"]],[30,32,["H6215"]],[32,34,["H251"]],[34,36,["H935"]],[36,39,["H4480","H6718"]]]},{"k":758,"v":[[0,2,["H1931"]],[2,3,["H1571"]],[3,5,["H6213"]],[5,7,["H4303"]],[7,9,["H935"]],[9,13,["H1"]],[13,15,["H559"]],[15,18,["H1"]],[18,21,["H1"]],[21,22,["H6965"]],[22,24,["H398"]],[24,27,["H1121"]],[27,28,["H4480","H6718"]],[28,29,["H5668"]],[29,31,["H5315"]],[31,33,["H1288"]],[33,34,[]]]},{"k":759,"v":[[0,2,["H3327"]],[2,4,["H1"]],[4,5,["H559"]],[5,8,["H4310"]],[8,10,["H859"]],[10,13,["H559"]],[13,14,["H589"]],[14,17,["H1121"]],[17,19,["H1060"]],[19,20,["H6215"]]]},{"k":760,"v":[[0,2,["H3327"]],[2,3,["H2729"]],[3,5,["H2731","H1419","H5704","H3966"]],[5,7,["H559"]],[7,8,["H4310"]],[8,9,["H645"]],[9,11,["H1931"]],[11,14,["H6679"]],[14,15,["H6718"]],[15,17,["H935"]],[17,23,["H398"]],[23,25,["H4480","H3605"]],[25,26,["H2962"]],[26,28,["H935"]],[28,31,["H1288"]],[31,33,["H1571"]],[33,37,["H1961"]],[37,38,["H1288"]]]},{"k":761,"v":[[0,3,["H6215"]],[3,4,["H8085","(H853)"]],[4,6,["H1697"]],[6,9,["H1"]],[9,11,["H6817"]],[11,14,["H1419"]],[14,15,["H5704"]],[15,16,["H3966"]],[16,17,["H4751"]],[17,18,["H6818"]],[18,20,["H559"]],[20,23,["H1"]],[23,24,["H1288"]],[24,27,["H589"]],[27,28,["H1571"]],[28,31,["H1"]]]},{"k":762,"v":[[0,3,["H559"]],[3,5,["H251"]],[5,6,["H935"]],[6,8,["H4820"]],[8,12,["H3947"]],[12,14,["H1293"]]]},{"k":763,"v":[[0,3,["H559"]],[3,7,["H3588"]],[7,8,["H7121","H8034"]],[8,9,["H3290"]],[9,13,["H6117"]],[13,15,["H2088"]],[15,17,["H6471"]],[17,20,["H3947","(H853)"]],[20,22,["H1062"]],[22,24,["H2009"]],[24,25,["H6258"]],[25,29,["H3947"]],[29,31,["H1293"]],[31,34,["H559"]],[34,37,["H3808"]],[37,38,["H680"]],[38,40,["H1293"]],[40,42,[]]]},{"k":764,"v":[[0,2,["H3327"]],[2,3,["H6030"]],[3,5,["H559"]],[5,7,["H6215"]],[7,8,["H2005"]],[8,11,["H7760"]],[11,14,["H1376"]],[14,16,["H3605"]],[16,18,["H251"]],[18,21,["H5414"]],[21,25,["H5650"]],[25,28,["H1715"]],[28,30,["H8492"]],[30,33,["H5564"]],[33,36,["H4100"]],[36,39,["H6213"]],[39,40,["H645"]],[40,44,["H1121"]]]},{"k":765,"v":[[0,2,["H6215"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1"]],[6,10,["H259"]],[10,11,["H1293"]],[11,13,["H1"]],[13,14,["H1288"]],[14,17,["H589"]],[17,18,["H1571"]],[18,21,["H1"]],[21,23,["H6215"]],[23,25,["H5375"]],[25,27,["H6963"]],[27,29,["H1058"]]]},{"k":766,"v":[[0,2,["H3327"]],[2,4,["H1"]],[4,5,["H6030"]],[5,7,["H559"]],[7,8,["H413"]],[8,10,["H2009"]],[10,12,["H4186"]],[12,14,["H1961"]],[14,16,["H4480","H4924"]],[16,19,["H776"]],[19,23,["H4480","H2919"]],[23,25,["H8064"]],[25,27,["H4480","H5920"]]]},{"k":767,"v":[[0,2,["H5921"]],[2,4,["H2719"]],[4,7,["H2421"]],[7,10,["H5647"]],[10,12,["H251"]],[12,18,["H1961"]],[18,19,["H834"]],[19,24,["H7300"]],[24,28,["H6561"]],[28,30,["H5923"]],[30,32,["H4480","H5921"]],[32,34,["H6677"]]]},{"k":768,"v":[[0,2,["H6215"]],[2,3,["H7852","(H853)"]],[3,4,["H3290"]],[4,6,["H5921"]],[6,8,["H1293"]],[8,9,["H834"]],[9,11,["H1"]],[11,12,["H1288"]],[12,15,["H6215"]],[15,16,["H559"]],[16,19,["H3820"]],[19,21,["H3117"]],[21,23,["H60"]],[23,26,["H1"]],[26,29,["H7126"]],[29,33,["H2026","(H853)"]],[33,35,["H251"]],[35,36,["H3290"]]]},{"k":769,"v":[[0,1,["(H853)"]],[1,3,["H1697"]],[3,5,["H6215"]],[5,7,["H1419"]],[7,8,["H1121"]],[8,10,["H5046"]],[10,12,["H7259"]],[12,15,["H7971"]],[15,17,["H7121"]],[17,18,["H3290"]],[18,20,["H6996"]],[20,21,["H1121"]],[21,23,["H559"]],[23,24,["H413"]],[24,26,["H2009"]],[26,28,["H251"]],[28,29,["H6215"]],[29,35,["H5162"]],[35,38,["H2026"]],[38,39,[]]]},{"k":770,"v":[[0,1,["H6258"]],[1,4,["H1121"]],[4,5,["H8085"]],[5,7,["H6963"]],[7,9,["H6965"]],[9,10,["H1272"]],[10,12,["H413"]],[12,13,["H3837"]],[13,15,["H251"]],[15,17,["H2771"]]]},{"k":771,"v":[[0,2,["H3427"]],[2,3,["H5973"]],[3,6,["H259"]],[6,7,["H3117"]],[7,8,["H5704","H834"]],[8,10,["H251"]],[10,11,["H2534"]],[11,13,["H7725"]]]},{"k":772,"v":[[0,1,["H5704"]],[1,3,["H251"]],[3,4,["H639"]],[4,6,["H7725"]],[6,7,["H4480"]],[7,11,["H7911","(H853)"]],[11,13,["H834"]],[13,16,["H6213"]],[16,22,["H7971"]],[22,24,["H3947"]],[24,27,["H4480","H8033"]],[27,28,["H4100"]],[28,32,["H7921"]],[32,33,["H1571"]],[33,36,["H8147"]],[36,38,["H259"]],[38,39,["H3117"]]]},{"k":773,"v":[[0,2,["H7259"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3327"]],[5,8,["H6973"]],[8,11,["H2416"]],[11,12,["H4480","H6440"]],[12,15,["H1323"]],[15,17,["H2845"]],[17,18,["H518"]],[18,19,["H3290"]],[19,20,["H3947"]],[20,22,["H802"]],[22,25,["H4480","H1323"]],[25,27,["H2845"]],[27,30,["H428"]],[30,35,["H4480","H1323"]],[35,38,["H776"]],[38,40,["H4100"]],[40,43,["H2416"]],[43,45,[]]]},{"k":774,"v":[[0,2,["H3327"]],[2,3,["H7121","H413"]],[3,4,["H3290"]],[4,6,["H1288"]],[6,9,["H6680"]],[9,12,["H559"]],[12,17,["H3808"]],[17,18,["H3947"]],[18,20,["H802"]],[20,23,["H4480","H1323"]],[23,25,["H3667"]]]},{"k":775,"v":[[0,1,["H6965"]],[1,2,["H1980"]],[2,4,["H6307"]],[4,7,["H1004"]],[7,9,["H1328"]],[9,11,["H517"]],[11,12,["H1"]],[12,14,["H3947"]],[14,17,["H802"]],[17,19,["H4480","H8033"]],[19,22,["H4480","H1323"]],[22,24,["H3837"]],[24,26,["H517"]],[26,27,["H251"]]]},{"k":776,"v":[[0,2,["H410"]],[2,3,["H7706"]],[3,4,["H1288"]],[4,9,["H6509"]],[9,11,["H7235"]],[11,16,["H1961"]],[16,18,["H6951"]],[18,20,["H5971"]]]},{"k":777,"v":[[0,2,["H5414"]],[2,3,["(H853)"]],[3,5,["H1293"]],[5,7,["H85"]],[7,13,["H2233"]],[13,14,["H854"]],[14,19,["H3423","(H853)"]],[19,21,["H776"]],[21,26,["H4033"]],[26,27,["H834"]],[27,28,["H430"]],[28,29,["H5414"]],[29,31,["H85"]]]},{"k":778,"v":[[0,2,["H3327"]],[2,4,["H7971","(H853)"]],[4,5,["H3290"]],[5,8,["H1980"]],[8,10,["H6307"]],[10,11,["H413"]],[11,12,["H3837"]],[12,13,["H1121"]],[13,15,["H1328"]],[15,17,["H761"]],[17,19,["H251"]],[19,21,["H7259"]],[21,22,["H3290"]],[22,24,["H6215"]],[24,25,["H517"]]]},{"k":779,"v":[[0,2,["H6215"]],[2,3,["H7200"]],[3,4,["H3588"]],[4,5,["H3327"]],[5,7,["H1288","(H853)"]],[7,8,["H3290"]],[8,12,["H7971","(H853)"]],[12,14,["H6307"]],[14,16,["H3947"]],[16,19,["H802"]],[19,21,["H4480","H8033"]],[21,26,["H1288"]],[26,32,["H6680","H5921"]],[32,33,["H559"]],[33,36,["H3808"]],[36,37,["H3947"]],[37,39,["H802"]],[39,42,["H4480","H1323"]],[42,44,["H3667"]]]},{"k":780,"v":[[0,3,["H3290"]],[3,4,["H8085","H413"]],[4,6,["H1"]],[6,9,["H517"]],[9,12,["H1980"]],[12,14,["H6307"]]]},{"k":781,"v":[[0,2,["H6215"]],[2,3,["H7200"]],[3,4,["H3588"]],[4,6,["H1323"]],[6,8,["H3667"]],[8,10,["H7451","H5869"]],[10,11,["H3327"]],[11,13,["H1"]]]},{"k":782,"v":[[0,2,["H1980"]],[2,3,["H6215"]],[3,4,["H413"]],[4,5,["H3458"]],[5,7,["H3947"]],[7,8,["H5921"]],[8,10,["H802"]],[10,13,["(H853)"]],[13,14,["H4258"]],[14,16,["H1323"]],[16,18,["H3458"]],[18,19,["H85"]],[19,20,["H1121"]],[20,22,["H269"]],[22,24,["H5032"]],[24,28,["H802"]]]},{"k":783,"v":[[0,2,["H3290"]],[2,4,["H3318"]],[4,6,["H4480","H884"]],[6,8,["H1980"]],[8,10,["H2771"]]]},{"k":784,"v":[[0,3,["H6293"]],[3,7,["H4725"]],[7,12,["H3885","H8033"]],[12,13,["H3588"]],[13,15,["H8121"]],[15,17,["H935"]],[17,20,["H3947"]],[20,23,["H4480","H68"]],[23,26,["H4725"]],[26,28,["H7760"]],[28,32,["H4763"]],[32,35,["H7901"]],[35,37,["H1931"]],[37,38,["H4725"]],[38,40,[]]]},{"k":785,"v":[[0,3,["H2492"]],[3,5,["H2009"]],[5,7,["H5551"]],[7,9,["H5324"]],[9,12,["H776"]],[12,15,["H7218"]],[15,18,["H5060"]],[18,20,["H8064"]],[20,22,["H2009"]],[22,24,["H4397"]],[24,26,["H430"]],[26,27,["H5927"]],[27,29,["H3381"]],[29,31,[]]]},{"k":786,"v":[[0,2,["H2009"]],[2,4,["H3068"]],[4,5,["H5324"]],[5,6,["H5921"]],[6,9,["H559"]],[9,10,["H589"]],[10,13,["H3068"]],[13,14,["H430"]],[14,16,["H85"]],[16,18,["H1"]],[18,21,["H430"]],[21,23,["H3327"]],[23,25,["H776"]],[25,26,["H834","H5921"]],[26,27,["H859"]],[27,28,["H7901"]],[28,33,["H5414"]],[33,38,["H2233"]]]},{"k":787,"v":[[0,3,["H2233"]],[3,5,["H1961"]],[5,8,["H6083"]],[8,11,["H776"]],[11,16,["H6555"]],[16,19,["H3220"]],[19,23,["H6924"]],[23,27,["H6828"]],[27,31,["H5045"]],[31,38,["H2233"]],[38,40,["H3605"]],[40,42,["H4940"]],[42,45,["H127"]],[45,47,["H1288"]]]},{"k":788,"v":[[0,2,["H2009"]],[2,3,["H595"]],[3,5,["H5973"]],[5,9,["H8104"]],[9,12,["H3605"]],[12,14,["H834"]],[14,16,["H1980"]],[16,21,["H7725"]],[21,22,["H413"]],[22,23,["H2063"]],[23,24,["H127"]],[24,25,["H3588"]],[25,28,["H3808"]],[28,29,["H5800"]],[29,31,["H5704","H834","H518"]],[31,34,["H6213","(H853)"]],[34,36,["H834"]],[36,39,["H1696"]],[39,42,[]]]},{"k":789,"v":[[0,2,["H3290"]],[2,3,["H3364"]],[3,7,["H4480","H8142"]],[7,10,["H559"]],[10,11,["H403"]],[11,13,["H3068"]],[13,14,["H3426"]],[14,16,["H2088"]],[16,17,["H4725"]],[17,19,["H595"]],[19,20,["H3045"]],[20,22,["H3808"]]]},{"k":790,"v":[[0,4,["H3372"]],[4,6,["H559"]],[6,7,["H4100"]],[7,8,["H3372"]],[8,10,["H2088"]],[10,11,["H4725"]],[11,12,["H2088"]],[12,14,["H369"]],[14,16,["H3588","H518"]],[16,18,["H1004"]],[18,20,["H430"]],[20,22,["H2088"]],[22,25,["H8179"]],[25,27,["H8064"]]]},{"k":791,"v":[[0,2,["H3290"]],[2,5,["H7925"]],[5,8,["H1242"]],[8,10,["H3947","(H853)"]],[10,12,["H68"]],[12,13,["H834"]],[13,16,["H7760"]],[16,19,["H4763"]],[19,23,["H7760","(H853)"]],[23,26,["H4676"]],[26,28,["H3332"]],[28,29,["H8081"]],[29,30,["H5921"]],[30,32,["H7218"]],[32,34,[]]]},{"k":792,"v":[[0,3,["H7121","(H853)"]],[3,5,["H8034"]],[5,7,["H1931"]],[7,8,["H4725"]],[8,9,["H1008"]],[9,10,["H199"]],[10,12,["H8034"]],[12,15,["H5892"]],[15,18,["H3870"]],[18,21,["H7223"]]]},{"k":793,"v":[[0,2,["H3290"]],[2,3,["H5087"]],[3,5,["H5088"]],[5,6,["H559"]],[6,7,["H518"]],[7,8,["H430"]],[8,10,["H1961"]],[10,11,["H5973"]],[11,15,["H8104"]],[15,18,["H2088"]],[18,19,["H1870"]],[19,20,["H834"]],[20,21,["H595"]],[21,22,["H1980"]],[22,25,["H5414"]],[25,27,["H3899"]],[27,29,["H398"]],[29,31,["H899"]],[31,34,["H3847"]]]},{"k":794,"v":[[0,5,["H7725"]],[5,6,["H413"]],[6,8,["H1"]],[8,9,["H1004"]],[9,11,["H7965"]],[11,15,["H3068"]],[15,16,["H1961"]],[16,18,["H430"]]]},{"k":795,"v":[[0,2,["H2063"]],[2,3,["H68"]],[3,4,["H834"]],[4,7,["H7760"]],[7,10,["H4676"]],[10,12,["H1961"]],[12,13,["H430"]],[13,14,["H1004"]],[14,17,["H3605"]],[17,18,["H834"]],[18,21,["H5414"]],[21,28,["H6237","H6237"]],[28,30,[]]]},{"k":796,"v":[[0,2,["H3290"]],[2,6,["H5375","H7272"]],[6,8,["H1980"]],[8,11,["H776"]],[11,14,["H1121"]],[14,17,["H6924"]]]},{"k":797,"v":[[0,3,["H7200"]],[3,5,["H2009"]],[5,7,["H875"]],[7,10,["H7704"]],[10,12,["H2009"]],[12,13,["H8033"]],[13,15,["H7969"]],[15,16,["H5739"]],[16,18,["H6629"]],[18,19,["H7257"]],[19,20,["H5921"]],[20,22,["H3588"]],[22,24,["H4480"]],[24,25,["H1931"]],[25,26,["H875"]],[26,28,["H8248"]],[28,30,["H5739"]],[30,33,["H1419"]],[33,34,["H68"]],[34,36,["H5921"]],[36,38,["H875"]],[38,39,["H6310"]]]},{"k":798,"v":[[0,2,["H8033"]],[2,4,["H3605"]],[4,6,["H5739"]],[6,7,["H622"]],[7,10,["H1556","(H853)"]],[10,12,["H68"]],[12,13,["H4480","H5921"]],[13,15,["H875"]],[15,16,["H6310"]],[16,18,["H8248","(H853)"]],[18,20,["H6629"]],[20,22,["H7725","(H853)"]],[22,24,["H68"]],[24,26,["H5921"]],[26,28,["H875"]],[28,29,["H6310"]],[29,32,["H4725"]]]},{"k":799,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,7,["H251"]],[7,8,["H4480","H370"]],[8,10,["H859"]],[10,13,["H559"]],[13,15,["H4480","H2771"]],[15,17,["H587"]]]},{"k":800,"v":[[0,3,["H559"]],[3,6,["H3045"]],[6,7,["(H853)"]],[7,8,["H3837"]],[8,10,["H1121"]],[10,12,["H5152"]],[12,15,["H559"]],[15,17,["H3045"]],[17,18,[]]]},{"k":801,"v":[[0,3,["H559"]],[3,8,["H7965"]],[8,11,["H559"]],[11,14,["H7965"]],[14,16,["H2009"]],[16,17,["H7354"]],[17,19,["H1323"]],[19,20,["H935"]],[20,21,["H5973"]],[21,23,["H6629"]]]},{"k":802,"v":[[0,3,["H559"]],[3,4,["H2005"]],[4,7,["H5750"]],[7,8,["H1419"]],[8,9,["H3117"]],[9,10,["H3808"]],[10,13,["H6256"]],[13,16,["H4735"]],[16,20,["H622"]],[20,21,["H8248"]],[21,24,["H6629"]],[24,26,["H1980"]],[26,28,["H7462"]],[28,29,[]]]},{"k":803,"v":[[0,3,["H559"]],[3,5,["H3808","H3201"]],[5,6,["H5704","H834"]],[6,7,["H3605"]],[7,9,["H5739"]],[9,12,["H622"]],[12,16,["H1556","(H853)"]],[16,18,["H68"]],[18,19,["H4480","H5921"]],[19,21,["H875"]],[21,22,["H6310"]],[22,25,["H8248"]],[25,27,["H6629"]]]},{"k":804,"v":[[0,4,["H5750"]],[4,5,["H1696"]],[5,6,["H5973"]],[6,8,["H7354"]],[8,9,["H935"]],[9,10,["H5973"]],[10,12,["H1"]],[12,13,["H6629"]],[13,14,["H3588"]],[14,15,["H1931"]],[15,16,["H7462"]],[16,17,[]]]},{"k":805,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H3290"]],[7,8,["H7200","(H853)"]],[8,9,["H7354"]],[9,11,["H1323"]],[11,13,["H3837"]],[13,15,["H517"]],[15,16,["H251"]],[16,19,["H6629"]],[19,21,["H3837"]],[21,23,["H517"]],[23,24,["H251"]],[24,26,["H3290"]],[26,28,["H5066"]],[28,30,["H1556","(H853)"]],[30,32,["H68"]],[32,33,["H4480","H5921"]],[33,35,["H875"]],[35,36,["H6310"]],[36,38,["H8248","(H853)"]],[38,40,["H6629"]],[40,42,["H3837"]],[42,44,["H517"]],[44,45,["H251"]]]},{"k":806,"v":[[0,2,["H3290"]],[2,3,["H5401"]],[3,4,["H7354"]],[4,7,["H5375","(H853)"]],[7,9,["H6963"]],[9,11,["H1058"]]]},{"k":807,"v":[[0,2,["H3290"]],[2,3,["H5046"]],[3,4,["H7354"]],[4,5,["H3588"]],[5,6,["H1931"]],[6,9,["H1"]],[9,10,["H251"]],[10,12,["H3588"]],[12,13,["H1931"]],[13,15,["H7259"]],[15,16,["H1121"]],[16,19,["H7323"]],[19,21,["H5046"]],[21,23,["H1"]]]},{"k":808,"v":[[0,5,["H1961"]],[5,7,["H3837"]],[7,8,["H8085","(H853)"]],[8,10,["H8088"]],[10,12,["H3290"]],[12,14,["H269"]],[14,15,["H1121"]],[15,18,["H7323"]],[18,20,["H7125"]],[20,23,["H2263"]],[23,26,["H5401"]],[26,29,["H935"]],[29,31,["H413"]],[31,33,["H1004"]],[33,36,["H5608"]],[36,37,["H3837","(H853)"]],[37,38,["H3605"]],[38,39,["H428"]],[39,40,["H1697"]]]},{"k":809,"v":[[0,2,["H3837"]],[2,3,["H559"]],[3,6,["H389"]],[6,7,["H859"]],[7,10,["H6106"]],[10,13,["H1320"]],[13,16,["H3427"]],[16,17,["H5973"]],[17,20,["H3117"]],[20,23,["H2320"]]]},{"k":810,"v":[[0,2,["H3837"]],[2,3,["H559"]],[3,5,["H3290"]],[5,6,["H3588"]],[6,7,["H859"]],[7,10,["H251"]],[10,14,["H5647"]],[14,17,["H2600"]],[17,18,["H5046"]],[18,20,["H4100"]],[20,23,["H4909"]],[23,24,[]]]},{"k":811,"v":[[0,2,["H3837"]],[2,4,["H8147"]],[4,5,["H1323"]],[5,7,["H8034"]],[7,10,["H1419"]],[10,12,["H3812"]],[12,15,["H8034"]],[15,18,["H6996"]],[18,20,["H7354"]]]},{"k":812,"v":[[0,1,["H3812"]],[1,3,["H7390"]],[3,4,["H5869"]],[4,6,["H7354"]],[6,7,["H1961"]],[7,8,["H3303","H8389"]],[8,10,["H3303"]],[10,11,["H4758"]]]},{"k":813,"v":[[0,2,["H3290"]],[2,3,["H157","(H853)"]],[3,4,["H7354"]],[4,6,["H559"]],[6,9,["H5647"]],[9,11,["H7651"]],[11,12,["H8141"]],[12,14,["H7354"]],[14,16,["H6996"]],[16,17,["H1323"]]]},{"k":814,"v":[[0,2,["H3837"]],[2,3,["H559"]],[3,6,["H2896"]],[6,9,["H5414"]],[9,17,["H4480","H5414"]],[17,20,["H312"]],[20,21,["H376"]],[21,22,["H3427"]],[22,23,["H5973"]],[23,24,[]]]},{"k":815,"v":[[0,2,["H3290"]],[2,3,["H5647"]],[3,4,["H7651"]],[4,5,["H8141"]],[5,7,["H7354"]],[7,10,["H1961","H5869"]],[10,15,["H259"]],[15,16,["H3117"]],[16,19,["H160"]],[19,23,[]]]},{"k":816,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3837"]],[5,6,["H3051"]],[6,7,["(H853)"]],[7,9,["H802"]],[9,10,["H3588"]],[10,12,["H3117"]],[12,14,["H4390"]],[14,19,["H935"]],[19,20,["H413"]],[20,21,[]]]},{"k":817,"v":[[0,2,["H3837"]],[2,4,["H622","(H853)"]],[4,5,["H3605"]],[5,7,["H376"]],[7,10,["H4725"]],[10,12,["H6213"]],[12,14,["H4960"]]]},{"k":818,"v":[[0,5,["H1961"]],[5,8,["H6153"]],[8,11,["H3947","(H853)"]],[11,12,["H3812"]],[12,14,["H1323"]],[14,16,["H935"]],[16,18,["H413"]],[18,23,["H935"]],[23,24,["H413"]],[24,25,[]]]},{"k":819,"v":[[0,2,["H3837"]],[2,3,["H5414"]],[3,6,["H1323"]],[6,7,["H3812","(H853)"]],[7,8,["H2153"]],[8,10,["H8198"]],[10,13,["H8198"]]]},{"k":820,"v":[[0,5,["H1961"]],[5,9,["H1242"]],[9,10,["H2009"]],[10,11,["H1931"]],[11,13,["H3812"]],[13,16,["H559"]],[16,17,["H413"]],[17,18,["H3837"]],[18,19,["H4100"]],[19,21,["H2063"]],[21,24,["H6213"]],[24,28,["H3808"]],[28,30,["H5647"]],[30,31,["H5973"]],[31,34,["H7354"]],[34,35,["H4100"]],[35,39,["H7411"]],[39,40,[]]]},{"k":821,"v":[[0,2,["H3837"]],[2,3,["H559"]],[3,6,["H3808"]],[6,8,["H3651"]],[8,9,["H6213"]],[9,12,["H4725"]],[12,14,["H5414"]],[14,16,["H6810"]],[16,17,["H6440"]],[17,19,["H1067"]]]},{"k":822,"v":[[0,1,["H4390"]],[1,2,["H2063"]],[2,3,["H7620"]],[3,7,["H5414"]],[7,8,["(H853)"]],[8,9,["H2063"]],[9,10,["H1571"]],[10,13,["H5656"]],[13,14,["H834"]],[14,17,["H5647"]],[17,18,["H5973"]],[18,20,["H5750"]],[20,21,["H7651"]],[21,22,["H312"]],[22,23,["H8141"]]]},{"k":823,"v":[[0,2,["H3290"]],[2,3,["H6213"]],[3,4,["H3651"]],[4,6,["H4390"]],[6,7,["H2063"]],[7,8,["H7620"]],[8,11,["H5414"]],[11,12,["(H853)"]],[12,13,["H7354"]],[13,15,["H1323"]],[15,17,["H802"]],[17,18,[]]]},{"k":824,"v":[[0,2,["H3837"]],[2,3,["H5414"]],[3,5,["H7354"]],[5,7,["H1323","(H853)"]],[7,8,["H1090"]],[8,10,["H8198"]],[10,14,["H8198"]]]},{"k":825,"v":[[0,4,["H935"]],[4,5,["H1571"]],[5,6,["H413"]],[6,7,["H7354"]],[7,10,["H157"]],[10,11,["H1571","(H853)"]],[11,12,["H7354"]],[12,15,["H4480","H3812"]],[15,17,["H5647"]],[17,18,["H5973"]],[18,20,["H5750"]],[20,21,["H7651"]],[21,22,["H312"]],[22,23,["H8141"]]]},{"k":826,"v":[[0,4,["H3068"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,7,["H3812"]],[7,9,["H8130"]],[9,11,["H6605","(H853)"]],[11,13,["H7358"]],[13,15,["H7354"]],[15,17,["H6135"]]]},{"k":827,"v":[[0,2,["H3812"]],[2,3,["H2029"]],[3,5,["H3205"]],[5,7,["H1121"]],[7,10,["H7121"]],[10,12,["H8034"]],[12,13,["H7205"]],[13,14,["H3588"]],[14,16,["H559"]],[16,17,["H3588"]],[17,19,["H3068"]],[19,21,["H7200"]],[21,24,["H6040"]],[24,25,["H6258"]],[25,26,["H3588"]],[26,28,["H376"]],[28,30,["H157"]],[30,31,[]]]},{"k":828,"v":[[0,3,["H2029"]],[3,4,["H5750"]],[4,6,["H3205"]],[6,8,["H1121"]],[8,10,["H559"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,15,["H8085"]],[15,16,["H3588"]],[16,17,["H595"]],[17,19,["H8130"]],[19,23,["H5414"]],[23,24,["(H853)"]],[24,25,["H2088"]],[25,27,["H1571"]],[27,30,["H7121"]],[30,32,["H8034"]],[32,33,["H8095"]]]},{"k":829,"v":[[0,3,["H2029"]],[3,4,["H5750"]],[4,6,["H3205"]],[6,8,["H1121"]],[8,10,["H559"]],[10,11,["H6258"]],[11,13,["H6471"]],[13,16,["H376"]],[16,18,["H3867"]],[18,19,["H413"]],[19,21,["H3588"]],[21,24,["H3205"]],[24,26,["H7969"]],[26,27,["H1121"]],[27,28,["H5921","H3651"]],[28,31,["H8034"]],[31,32,["H7121"]],[32,33,["H3878"]]]},{"k":830,"v":[[0,3,["H2029"]],[3,4,["H5750"]],[4,6,["H3205"]],[6,8,["H1121"]],[8,11,["H559"]],[11,12,["H6471"]],[12,15,["H3034","(H853)"]],[15,17,["H3068"]],[17,18,["H5921","H3651"]],[18,20,["H7121"]],[20,22,["H8034"]],[22,23,["H3063"]],[23,25,["H5975"]],[25,26,["H4480","H3205"]]]},{"k":831,"v":[[0,3,["H7354"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,10,["H3205","H3808","H3290"]],[10,11,["H7354"]],[11,12,["H7065"]],[12,14,["H269"]],[14,16,["H559"]],[16,17,["H413"]],[17,18,["H3290"]],[18,19,["H3051"]],[19,21,["H1121"]],[21,22,["H518"]],[22,23,["H369"]],[23,24,["H595"]],[24,25,["H4191"]]]},{"k":832,"v":[[0,2,["H3290"]],[2,3,["H639"]],[3,5,["H2734"]],[5,7,["H7354"]],[7,10,["H559"]],[10,12,["H595"]],[12,14,["H430"]],[14,15,["H8478"]],[15,16,["H834"]],[16,18,["H4513"]],[18,19,["H4480"]],[19,22,["H6529"]],[22,25,["H990"]]]},{"k":833,"v":[[0,3,["H559"]],[3,4,["H2009"]],[4,6,["H519"]],[6,7,["H1090"]],[7,9,["H935"]],[9,10,["H413"]],[10,15,["H3205"]],[15,16,["H5921"]],[16,18,["H1290"]],[18,20,["H595"]],[20,22,["H1571"]],[22,24,["H1129"]],[24,25,["H4480"]],[25,26,[]]]},{"k":834,"v":[[0,3,["H5414"]],[3,4,["(H853)"]],[4,5,["H1090"]],[5,7,["H8198"]],[7,9,["H802"]],[9,11,["H3290"]],[11,13,["H935"]],[13,14,["H413"]],[14,15,[]]]},{"k":835,"v":[[0,2,["H1090"]],[2,3,["H2029"]],[3,5,["H3205"]],[5,6,["H3290"]],[6,8,["H1121"]]]},{"k":836,"v":[[0,2,["H7354"]],[2,3,["H559"]],[3,4,["H430"]],[4,6,["H1777"]],[6,10,["H1571"]],[10,11,["H8085"]],[11,13,["H6963"]],[13,16,["H5414"]],[16,19,["H1121"]],[19,20,["H5921","H3651"]],[20,21,["H7121"]],[21,24,["H8034"]],[24,25,["H1835"]]]},{"k":837,"v":[[0,2,["H1090"]],[2,3,["H7354"]],[3,4,["H8198"]],[4,5,["H2029"]],[5,6,["H5750"]],[6,8,["H3205"]],[8,9,["H3290"]],[9,11,["H8145"]],[11,12,["H1121"]]]},{"k":838,"v":[[0,2,["H7354"]],[2,3,["H559"]],[3,5,["H430"]],[5,6,["H5319"]],[6,9,["H6617"]],[9,10,["H5973"]],[10,12,["H269"]],[12,13,["H1571"]],[13,16,["H3201"]],[16,19,["H7121"]],[19,21,["H8034"]],[21,22,["H5321"]]]},{"k":839,"v":[[0,2,["H3812"]],[2,3,["H7200"]],[3,4,["H3588"]],[4,7,["H5975"]],[7,8,["H4480","H3205"]],[8,10,["H3947","(H853)"]],[10,11,["H2153"]],[11,13,["H8198"]],[13,15,["H5414"]],[15,17,["H3290"]],[17,19,["H802"]]]},{"k":840,"v":[[0,2,["H2153"]],[2,3,["H3812"]],[3,4,["H8198"]],[4,5,["H3205"]],[5,6,["H3290"]],[6,8,["H1121"]]]},{"k":841,"v":[[0,2,["H3812"]],[2,3,["H559"]],[3,6,["H1413"]],[6,9,["H7121","(H853)"]],[9,11,["H8034"]],[11,12,["H1410"]]]},{"k":842,"v":[[0,2,["H2153"]],[2,3,["H3812"]],[3,4,["H8198"]],[4,5,["H3205"]],[5,6,["H3290"]],[6,8,["H8145"]],[8,9,["H1121"]]]},{"k":843,"v":[[0,2,["H3812"]],[2,3,["H559"]],[3,4,["H837"]],[4,7,["H3588"]],[7,9,["H1323"]],[9,13,["H833"]],[13,16,["H7121","(H853)"]],[16,18,["H8034"]],[18,19,["H836"]]]},{"k":844,"v":[[0,2,["H7205"]],[2,3,["H1980"]],[3,6,["H3117"]],[6,8,["H2406"]],[8,9,["H7105"]],[9,11,["H4672"]],[11,12,["H1736"]],[12,15,["H7704"]],[15,17,["H935"]],[17,19,["H413"]],[19,21,["H517"]],[21,22,["H3812"]],[22,24,["H7354"]],[24,25,["H559"]],[25,26,["H413"]],[26,27,["H3812"]],[27,28,["H5414"]],[28,32,["H4994"]],[32,35,["H1121"]],[35,36,["H4480","H1736"]]]},{"k":845,"v":[[0,3,["H559"]],[3,10,["H4592"]],[10,14,["H3947","(H853)"]],[14,16,["H376"]],[16,21,["H3947","(H853)"]],[21,23,["H1121"]],[23,24,["H1736"]],[24,25,["H1571"]],[25,27,["H7354"]],[27,28,["H559"]],[28,29,["H3651"]],[29,32,["H7901"]],[32,33,["H5973"]],[33,36,["H3915"]],[36,37,["H8478"]],[37,39,["H1121"]],[39,40,["H1736"]]]},{"k":846,"v":[[0,2,["H3290"]],[2,3,["H935"]],[3,5,["H4480"]],[5,7,["H7704"]],[7,10,["H6153"]],[10,12,["H3812"]],[12,14,["H3318"]],[14,16,["H7125"]],[16,19,["H559"]],[19,23,["H935"]],[23,24,["H413"]],[24,26,["H3588"]],[26,30,["H7936","H7936"]],[30,34,["H1121"]],[34,35,["H1736"]],[35,38,["H7901"]],[38,39,["H5973"]],[39,41,["H1931"]],[41,42,["H3915"]]]},{"k":847,"v":[[0,2,["H430"]],[2,3,["H8085"]],[3,4,["H413"]],[4,5,["H3812"]],[5,8,["H2029"]],[8,10,["H3205"]],[10,11,["H3290"]],[11,13,["H2549"]],[13,14,["H1121"]]]},{"k":848,"v":[[0,2,["H3812"]],[2,3,["H559"]],[3,4,["H430"]],[4,6,["H5414"]],[6,9,["H7939"]],[9,10,["H834"]],[10,13,["H5414"]],[13,15,["H8198"]],[15,18,["H376"]],[18,21,["H7121"]],[21,23,["H8034"]],[23,24,["H3485"]]]},{"k":849,"v":[[0,2,["H3812"]],[2,3,["H2029"]],[3,4,["H5750"]],[4,6,["H3205"]],[6,7,["H3290"]],[7,9,["H8345"]],[9,10,["H1121"]]]},{"k":850,"v":[[0,2,["H3812"]],[2,3,["H559"]],[3,4,["H430"]],[4,6,["H2064"]],[6,10,["H2896"]],[10,11,["H2065"]],[11,12,["H6471"]],[12,15,["H376"]],[15,17,["H2082"]],[17,19,["H3588"]],[19,22,["H3205"]],[22,24,["H8337"]],[24,25,["H1121"]],[25,28,["H7121","(H853)"]],[28,30,["H8034"]],[30,31,["H2074"]]]},{"k":851,"v":[[0,2,["H310"]],[2,4,["H3205"]],[4,6,["H1323"]],[6,8,["H7121","(H853)"]],[8,10,["H8034"]],[10,11,["H1783"]]]},{"k":852,"v":[[0,2,["H430"]],[2,3,["H2142","(H853)"]],[3,4,["H7354"]],[4,6,["H430"]],[6,7,["H8085"]],[7,8,["H413"]],[8,11,["H6605","(H853)"]],[11,13,["H7358"]]]},{"k":853,"v":[[0,3,["H2029"]],[3,5,["H3205"]],[5,7,["H1121"]],[7,9,["H559"]],[9,10,["H430"]],[10,13,["H622","(H853)"]],[13,15,["H2781"]]]},{"k":854,"v":[[0,3,["H7121","(H853)"]],[3,5,["H8034"]],[5,6,["H3130"]],[6,8,["H559"]],[8,10,["H3068"]],[10,12,["H3254"]],[12,15,["H312"]],[15,16,["H1121"]]]},{"k":855,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H7354"]],[7,9,["H3205","(H853)"]],[9,10,["H3130"]],[10,12,["H3290"]],[12,13,["H559"]],[13,14,["H413"]],[14,15,["H3837"]],[15,18,["H7971"]],[18,22,["H1980"]],[22,23,["H413"]],[23,26,["H4725"]],[26,30,["H776"]]]},{"k":856,"v":[[0,1,["H5414"]],[1,2,["(H853)"]],[2,4,["H802"]],[4,7,["H3206"]],[7,9,["H834","H2004"]],[9,12,["H5647"]],[12,17,["H1980"]],[17,18,["H3588"]],[18,19,["H859"]],[19,20,["H3045","(H853)"]],[20,22,["H5656"]],[22,23,["H834"]],[23,26,["H5647"]],[26,27,[]]]},{"k":857,"v":[[0,2,["H3837"]],[2,3,["H559"]],[3,4,["H413"]],[4,8,["H4994"]],[8,9,["H518"]],[9,12,["H4672"]],[12,13,["H2580"]],[13,16,["H5869"]],[16,23,["H5172"]],[23,26,["H3068"]],[26,28,["H1288"]],[28,32,["H1558"]]]},{"k":858,"v":[[0,3,["H559"]],[3,4,["H5344","H5921"]],[4,7,["H7939"]],[7,11,["H5414"]],[11,12,[]]]},{"k":859,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H859"]],[6,7,["H3045","(H853)"]],[7,8,["H834"]],[8,11,["H5647"]],[11,14,["H834"]],[14,16,["H4735"]],[16,17,["H1961"]],[17,18,["H854"]],[18,19,[]]]},{"k":860,"v":[[0,1,["H3588"]],[1,4,["H4592"]],[4,5,["H834"]],[5,7,["H1961"]],[7,8,["H6440"]],[8,15,["H6555"]],[15,18,["H7230"]],[18,21,["H3068"]],[21,23,["H1288"]],[23,27,["H7272"]],[27,29,["H6258"]],[29,30,["H4970"]],[30,32,["H595"]],[32,33,["H6213"]],[33,37,["H1004"]],[37,38,["H1571"]]]},{"k":861,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,7,["H5414"]],[7,10,["H3290"]],[10,11,["H559"]],[11,14,["H3808"]],[14,15,["H5414"]],[15,18,["H3972"]],[18,19,["H518"]],[19,22,["H6213"]],[22,23,["H2088"]],[23,24,["H1697"]],[24,29,["H7725"]],[29,30,["H7462"]],[30,32,["H8104"]],[32,34,["H6629"]]]},{"k":862,"v":[[0,4,["H5674"]],[4,5,["H3605"]],[5,7,["H6629"]],[7,9,["H3117"]],[9,10,["H5493"]],[10,12,["H4480","H8033"]],[12,13,["H3605"]],[13,15,["H5348"]],[15,17,["H2921"]],[17,18,["H7716"]],[18,20,["H3605"]],[20,22,["H2345"]],[22,23,["H7716"]],[23,26,["H3775"]],[26,29,["H2921"]],[29,31,["H5348"]],[31,34,["H5795"]],[34,39,["H1961"]],[39,41,["H7939"]]]},{"k":863,"v":[[0,4,["H6666"]],[4,5,["H6030"]],[5,9,["H3117"]],[9,11,["H4279"]],[11,12,["H3588"]],[12,15,["H935"]],[15,16,["H5921"]],[16,18,["H7939"]],[18,21,["H6440"]],[21,23,["H3605"]],[23,24,["H834"]],[24,26,["H369"]],[26,27,["H5348"]],[27,29,["H2921"]],[29,32,["H5795"]],[32,34,["H2345"]],[34,37,["H3775"]],[37,38,["H1931"]],[38,42,["H1589"]],[42,43,["H854"]],[43,44,[]]]},{"k":864,"v":[[0,2,["H3837"]],[2,3,["H559"]],[3,4,["H2005"]],[4,6,["H3863"]],[6,9,["H1961"]],[9,13,["H1697"]]]},{"k":865,"v":[[0,3,["H5493"]],[3,4,["H1931"]],[4,5,["H3117","(H853)"]],[5,8,["H8495"]],[8,11,["H6124"]],[11,13,["H2921"]],[13,15,["H3605"]],[15,18,["H5795"]],[18,21,["H5348"]],[21,23,["H2921"]],[23,26,["H3605"]],[26,27,["H834"]],[27,30,["H3836"]],[30,34,["H3605"]],[34,36,["H2345"]],[36,39,["H3775"]],[39,41,["H5414"]],[41,45,["H3027"]],[45,48,["H1121"]]]},{"k":866,"v":[[0,3,["H7760"]],[3,4,["H7969"]],[4,5,["H3117"]],[5,6,["H1870"]],[6,7,["H996"]],[7,10,["H3290"]],[10,12,["H3290"]],[12,13,["H7462","(H853)"]],[13,15,["H3498"]],[15,17,["H3837"]],[17,18,["H6629"]]]},{"k":867,"v":[[0,2,["H3290"]],[2,3,["H3947"]],[3,5,["H4731"]],[5,7,["H3892"]],[7,8,["H3839"]],[8,12,["H3869"]],[12,15,["H6196"]],[15,17,["H6478"]],[17,18,["H3836"]],[18,19,["H6479"]],[19,21,["H2004"]],[21,25,["H3836"]],[25,26,["H4286"]],[26,27,["H834"]],[27,29,["H5921"]],[29,31,["H4731"]]]},{"k":868,"v":[[0,3,["H3322","(H853)"]],[3,5,["H4731"]],[5,6,["H834"]],[6,9,["H6478"]],[9,10,["H5227"]],[10,12,["H6629"]],[12,15,["H7298"]],[15,18,["H4325"]],[18,19,["H8268"]],[19,20,["H834"]],[20,22,["H6629"]],[22,23,["H935"]],[23,25,["H8354"]],[25,29,["H3179"]],[29,32,["H935"]],[32,34,["H8354"]]]},{"k":869,"v":[[0,3,["H6629"]],[3,4,["H3179"]],[4,5,["H413"]],[5,7,["H4731"]],[7,10,["H3205"]],[10,11,["H6629"]],[11,12,["H6124"]],[12,13,["H5348"]],[13,15,["H2921"]]]},{"k":870,"v":[[0,2,["H3290"]],[2,4,["H6504"]],[4,6,["H3775"]],[6,8,["H5414"]],[8,10,["H6440"]],[10,13,["H6629"]],[13,14,["H413"]],[14,16,["H6124"]],[16,18,["H3605"]],[18,20,["H2345"]],[20,23,["H6629"]],[23,25,["H3837"]],[25,28,["H7896"]],[28,31,["H5739"]],[31,33,["H905"]],[33,35,["H7896"]],[35,37,["H3808"]],[37,38,["H5921"]],[38,39,["H3837"]],[39,40,["H6629"]]]},{"k":871,"v":[[0,5,["H1961"]],[5,6,["H3605"]],[6,8,["H7194"]],[8,9,["H6629"]],[9,11,["H3179"]],[11,13,["H3290"]],[13,14,["H7760","(H853)"]],[14,16,["H4731"]],[16,19,["H5869"]],[19,22,["H6629"]],[22,25,["H7298"]],[25,29,["H3179"]],[29,32,["H4731"]]]},{"k":872,"v":[[0,4,["H6629"]],[4,6,["H5848"]],[6,8,["H7760"]],[8,10,["H3808"]],[10,14,["H5848"]],[14,15,["H1961"]],[15,16,["H3837"]],[16,19,["H7194"]],[19,20,["H3290"]]]},{"k":873,"v":[[0,3,["H376"]],[3,4,["H6555"]],[4,5,["H3966","H3966"]],[5,7,["H1961"]],[7,8,["H7227"]],[8,9,["H6629"]],[9,11,["H8198"]],[11,13,["H5650"]],[13,15,["H1581"]],[15,17,["H2543"]]]},{"k":874,"v":[[0,3,["H8085","(H853)"]],[3,5,["H1697"]],[5,7,["H3837"]],[7,8,["H1121"]],[8,9,["H559"]],[9,10,["H3290"]],[10,13,["H3947","(H853)"]],[13,14,["H3605"]],[14,15,["H834"]],[15,18,["H1"]],[18,22,["H4480","H834"]],[22,25,["H1"]],[25,28,["H6213","(H853)"]],[28,29,["H3605"]],[29,30,["H2088"]],[30,31,["H3519"]]]},{"k":875,"v":[[0,2,["H3290"]],[2,3,["H7200","(H853)"]],[3,5,["H6440"]],[5,7,["H3837"]],[7,9,["H2009"]],[9,12,["H369"]],[12,13,["H5973"]],[13,16,["H8543","H8032"]]]},{"k":876,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3290"]],[6,7,["H7725"]],[7,8,["H413"]],[8,10,["H776"]],[10,13,["H1"]],[13,17,["H4138"]],[17,21,["H1961"]],[21,22,["H5973"]],[22,23,[]]]},{"k":877,"v":[[0,2,["H3290"]],[2,3,["H7971"]],[3,5,["H7121"]],[5,6,["H7354"]],[6,8,["H3812"]],[8,11,["H7704"]],[11,12,["H413"]],[12,14,["H6629"]]]},{"k":878,"v":[[0,2,["H559"]],[2,5,["H595"]],[5,6,["H7200","(H853)"]],[6,8,["H1"]],[8,9,["H6440"]],[9,10,["H3588"]],[10,13,["H369"]],[13,14,["H413"]],[14,17,["H8543","H8032"]],[17,20,["H430"]],[20,23,["H1"]],[23,25,["H1961"]],[25,26,["H5973"]],[26,27,[]]]},{"k":879,"v":[[0,2,["H859"]],[2,3,["H3045"]],[3,4,["H3588"]],[4,6,["H3605"]],[6,8,["H3581"]],[8,11,["H5647","(H853)"]],[11,13,["H1"]]]},{"k":880,"v":[[0,3,["H1"]],[3,5,["H2048"]],[5,8,["H2498","(H853)"]],[8,10,["H4909"]],[10,11,["H6235"]],[11,12,["H4489"]],[12,14,["H430"]],[14,15,["H5414"]],[15,17,["H3808"]],[17,19,["H7489","H5978"]],[19,20,[]]]},{"k":881,"v":[[0,1,["H518"]],[1,3,["H559"]],[3,4,["H3541"]],[4,6,["H5348"]],[6,8,["H1961"]],[8,10,["H7939"]],[10,12,["H3605"]],[12,14,["H6629"]],[14,15,["H3205"]],[15,16,["H5348"]],[16,18,["H518"]],[18,20,["H559"]],[20,21,["H3541"]],[21,23,["H6124"]],[23,25,["H1961"]],[25,27,["H7939"]],[27,29,["H3205"]],[29,30,["H3605"]],[30,32,["H6629"]],[32,33,["H6124"]]]},{"k":882,"v":[[0,2,["H430"]],[2,5,["H5337","(H853)"]],[5,7,["H4735"]],[7,10,["H1"]],[10,12,["H5414"]],[12,15,[]]]},{"k":883,"v":[[0,5,["H1961"]],[5,8,["H6256"]],[8,11,["H6629"]],[11,12,["H3179"]],[12,16,["H5375"]],[16,18,["H5869"]],[18,20,["H7200"]],[20,23,["H2472"]],[23,25,["H2009"]],[25,27,["H6260"]],[27,29,["H5927"]],[29,30,["H5921"]],[30,32,["H6629"]],[32,34,["H6124"]],[34,35,["H5348"]],[35,37,["H1261"]]]},{"k":884,"v":[[0,3,["H4397"]],[3,5,["H430"]],[5,6,["H559"]],[6,7,["H413"]],[7,11,["H2472"]],[11,13,["H3290"]],[13,16,["H559"]],[16,17,["H2009"]],[17,19,[]]]},{"k":885,"v":[[0,3,["H559"]],[3,5,["H5375"]],[5,6,["H4994"]],[6,8,["H5869"]],[8,10,["H7200"]],[10,11,["H3605"]],[11,13,["H6260"]],[13,15,["H5927"]],[15,16,["H5921"]],[16,18,["H6629"]],[18,20,["H6124"]],[20,21,["H5348"]],[21,23,["H1261"]],[23,24,["H3588"]],[24,27,["H7200","(H853)"]],[27,28,["H3605"]],[28,29,["H834"]],[29,30,["H3837"]],[30,31,["H6213"]],[31,33,[]]]},{"k":886,"v":[[0,1,["H595"]],[1,4,["H410"]],[4,6,["H1008"]],[6,7,["H834","H8033"]],[7,9,["H4886"]],[9,11,["H4676"]],[11,13,["H834","H8033"]],[13,15,["H5087"]],[15,17,["H5088"]],[17,20,["H6258"]],[20,21,["H6965"]],[21,24,["H3318"]],[24,25,["H4480"]],[25,26,["H2063"]],[26,27,["H776"]],[27,29,["H7725"]],[29,30,["H413"]],[30,32,["H776"]],[32,35,["H4138"]]]},{"k":887,"v":[[0,2,["H7354"]],[2,4,["H3812"]],[4,5,["H6030"]],[5,7,["H559"]],[7,12,["H5750"]],[12,14,["H2506"]],[14,16,["H5159"]],[16,21,["H1"]],[21,22,["H1004"]]]},{"k":888,"v":[[0,3,["H3808"]],[3,4,["H2803"]],[4,7,["H5237"]],[7,8,["H3588"]],[8,11,["H4376"]],[11,16,["H398","H398"]],[16,17,["H1571","(H853)"]],[17,19,["H3701"]]]},{"k":889,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H6239"]],[4,5,["H834"]],[5,6,["H430"]],[6,8,["H5337"]],[8,11,["H4480","H1"]],[11,12,["H1931"]],[12,17,["H1121"]],[17,18,["H6258"]],[18,20,["H3605","H834"]],[20,21,["H430"]],[21,23,["H559"]],[23,24,["H413"]],[24,26,["H6213"]]]},{"k":890,"v":[[0,2,["H3290"]],[2,4,["H6965"]],[4,6,["H5375","(H853)"]],[6,8,["H1121"]],[8,11,["H802"]],[11,12,["H5921"]],[12,13,["H1581"]]]},{"k":891,"v":[[0,4,["H5090","(H853)"]],[4,5,["H3605"]],[5,7,["H4735"]],[7,9,["H3605"]],[9,11,["H7399"]],[11,12,["H834"]],[12,15,["H7408"]],[15,17,["H4735"]],[17,20,["H7075"]],[20,21,["H834"]],[21,24,["H7408"]],[24,26,["H6307"]],[26,29,["H935"]],[29,30,["H413"]],[30,31,["H3327"]],[31,33,["H1"]],[33,36,["H776"]],[36,38,["H3667"]]]},{"k":892,"v":[[0,2,["H3837"]],[2,3,["H1980"]],[3,5,["H1494","(H853)"]],[5,7,["H6629"]],[7,9,["H7354"]],[9,11,["H1589","(H853)"]],[11,13,["H8655"]],[13,14,["H834"]],[14,17,["H1"]]]},{"k":893,"v":[[0,2,["H3290"]],[2,4,["H1589","(H853)"]],[4,5,["H3820"]],[5,7,["H3837"]],[7,9,["H761"]],[9,11,["H5921"]],[11,13,["H5046"]],[13,15,["H1097"]],[15,16,["H3588"]],[16,17,["H1931"]],[17,18,["H1272"]]]},{"k":894,"v":[[0,2,["H1931"]],[2,3,["H1272"]],[3,5,["H3605"]],[5,6,["H834"]],[6,12,["H6965"]],[12,15,["H5674","(H853)"]],[15,17,["H5104"]],[17,19,["H7760","(H853)"]],[19,21,["H6440"]],[21,24,["H2022"]],[24,25,["H1568"]]]},{"k":895,"v":[[0,4,["H5046"]],[4,5,["H3837"]],[5,8,["H7992"]],[8,9,["H3117"]],[9,10,["H3588"]],[10,11,["H3290"]],[11,13,["H1272"]]]},{"k":896,"v":[[0,3,["H3947","(H853)"]],[3,5,["H251"]],[5,6,["H5973"]],[6,9,["H7291"]],[9,10,["H310"]],[10,12,["H7651"]],[12,13,["H3117"]],[13,14,["H1870"]],[14,17,["H1692"]],[17,21,["H2022"]],[21,22,["H1568"]]]},{"k":897,"v":[[0,2,["H430"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H3837"]],[5,7,["H761"]],[7,10,["H2472"]],[10,12,["H3915"]],[12,14,["H559"]],[14,18,["H8104"]],[18,19,["H6435"]],[19,21,["H1696"]],[21,23,["H5973"]],[23,24,["H3290"]],[24,26,["H4480","H2896"]],[26,27,["H5704"]],[27,28,["H7451"]]]},{"k":898,"v":[[0,2,["H3837"]],[2,3,["H5381","(H853)"]],[3,4,["H3290"]],[4,6,["H3290"]],[6,8,["H8628","(H853)"]],[8,10,["H168"]],[10,13,["H2022"]],[13,15,["H3837"]],[15,16,["H854"]],[16,18,["H251"]],[18,19,["H8628"]],[19,22,["H2022"]],[22,24,["H1568"]]]},{"k":899,"v":[[0,2,["H3837"]],[2,3,["H559"]],[3,5,["H3290"]],[5,6,["H4100"]],[6,9,["H6213"]],[9,14,["H1589","(H853)"]],[14,15,["H3824"]],[15,20,["H5090","(H853)"]],[20,22,["H1323"]],[22,24,["H7617"]],[24,28,["H2719"]]]},{"k":900,"v":[[0,1,["H4100"]],[1,5,["H1272"]],[5,6,["H2244"]],[6,9,["H1589"]],[9,14,["H3808"]],[14,15,["H5046"]],[15,23,["H7971"]],[23,25,["H8057"]],[25,28,["H7892"]],[28,30,["H8596"]],[30,33,["H3658"]]]},{"k":901,"v":[[0,3,["H3808"]],[3,4,["H5203"]],[4,7,["H5401"]],[7,9,["H1121"]],[9,12,["H1323"]],[12,15,["H6258"]],[15,17,["H5528"]],[17,20,["H6213"]]]},{"k":902,"v":[[0,2,["H3426"]],[2,5,["H410"]],[5,8,["H3027"]],[8,10,["H6213"]],[10,12,["H7451"]],[12,15,["H430"]],[15,18,["H1"]],[18,19,["H559"]],[19,20,["H413"]],[20,22,["H570"]],[22,23,["H559"]],[23,26,["H8104"]],[26,29,["H4480","H1696"]],[29,31,["H5973"]],[31,32,["H3290"]],[32,34,["H4480","H2896"]],[34,35,["H5704"]],[35,36,["H7451"]]]},{"k":903,"v":[[0,2,["H6258"]],[2,8,["H1980","H1980"]],[8,9,["H3588"]],[9,12,["H3700","H3700"]],[12,15,["H1"]],[15,16,["H1004"]],[16,18,["H4100"]],[18,21,["H1589","(H853)"]],[21,23,["H430"]]]},{"k":904,"v":[[0,2,["H3290"]],[2,3,["H6030"]],[3,5,["H559"]],[5,7,["H3837"]],[7,8,["H3588"]],[8,11,["H3372"]],[11,12,["H3588"]],[12,14,["H559"]],[14,15,["H6435"]],[15,20,["H1497","(H853)"]],[20,22,["H1323"]],[22,23,["H4480","H5973"]],[23,24,[]]]},{"k":905,"v":[[0,1,["H5973"]],[1,2,["H834"]],[2,4,["H4672","(H853)"]],[4,6,["H430"]],[6,9,["H3808"]],[9,10,["H2421"]],[10,11,["H5048"]],[11,13,["H251"]],[13,14,["H5234"]],[14,16,["H4100"]],[16,19,["H5973"]],[19,22,["H3947"]],[22,27,["H3290"]],[27,28,["H3045"]],[28,29,["H3808"]],[29,30,["H3588"]],[30,31,["H7354"]],[31,33,["H1589"]],[33,34,[]]]},{"k":906,"v":[[0,2,["H3837"]],[2,3,["H935"]],[3,5,["H3290"]],[5,6,["H168"]],[6,9,["H3812"]],[9,10,["H168"]],[10,14,["H8147"]],[14,15,["H519"]],[15,16,["H168"]],[16,19,["H4672"]],[19,21,["H3808"]],[21,23,["H3318"]],[23,28,["H4480","H168","H3812"]],[28,30,["H935"]],[30,32,["H7354"]],[32,33,["H168"]]]},{"k":907,"v":[[0,2,["H7354"]],[2,4,["H3947","(H853)"]],[4,6,["H8655"]],[6,8,["H7760"]],[8,12,["H1581"]],[12,13,["H3733"]],[13,15,["H3427"]],[15,16,["H5921"]],[16,19,["H3837"]],[19,20,["H4959","(H853)"]],[20,21,["H3605"]],[21,23,["H168"]],[23,25,["H4672"]],[25,27,["H3808"]]]},{"k":908,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1"]],[6,9,["H408"]],[9,10,["H2734","H5869"]],[10,12,["H113"]],[12,13,["H3588"]],[13,15,["H3808","H3201"]],[15,17,["H6965"]],[17,18,["H4480","H6440"]],[18,20,["H3588"]],[20,22,["H1870"]],[22,24,["H802"]],[24,30,["H2664"]],[30,32,["H4672"]],[32,33,["H3808","(H853)"]],[33,35,["H8655"]]]},{"k":909,"v":[[0,2,["H3290"]],[2,4,["H2734"]],[4,6,["H7378"]],[6,8,["H3837"]],[8,10,["H3290"]],[10,11,["H6030"]],[11,13,["H559"]],[13,15,["H3837"]],[15,16,["H4100"]],[16,19,["H6588"]],[19,20,["H4100"]],[20,23,["H2403"]],[23,24,["H3588"]],[24,29,["H1814"]],[29,30,["H310"]],[30,31,[]]]},{"k":910,"v":[[0,1,["H3588"]],[1,4,["H4959","(H853)"]],[4,5,["H3605"]],[5,7,["H3627"]],[7,8,["H4100"]],[8,11,["H4672"]],[11,13,["H4480","H3605"]],[13,15,["H1004"]],[15,16,["H3627"]],[16,17,["H7760"]],[17,19,["H3541"]],[19,20,["H5048"]],[20,22,["H251"]],[22,25,["H251"]],[25,29,["H3198"]],[29,30,["H996"]],[30,32,["H8147"]]]},{"k":911,"v":[[0,1,["H2088"]],[1,2,["H6242"]],[2,3,["H8141"]],[3,5,["H595"]],[5,7,["H5973"]],[7,10,["H7353"]],[10,14,["H5795"]],[14,16,["H3808"]],[16,19,["H7921"]],[19,22,["H352"]],[22,25,["H6629"]],[25,28,["H3808"]],[28,29,["H398"]]]},{"k":912,"v":[[0,4,["H2966"]],[4,8,["H935"]],[8,9,["H3808"]],[9,10,["H413"]],[10,12,["H595"]],[12,15,["H2398"]],[15,20,["H4480","H3027"]],[20,23,["H1245"]],[23,26,["H1589"]],[26,28,["H3117"]],[28,30,["H1589"]],[30,32,["H3915"]]]},{"k":913,"v":[[0,3,["H1961"]],[3,6,["H3117"]],[6,8,["H2721"]],[8,9,["H398"]],[9,13,["H7140"]],[13,15,["H3915"]],[15,18,["H8142"]],[18,19,["H5074"]],[19,22,["H4480","H5869"]]]},{"k":914,"v":[[0,1,["H2088"]],[1,5,["H6242"]],[5,6,["H8141"]],[6,9,["H1004"]],[9,11,["H5647"]],[11,13,["H702","H6240"]],[13,14,["H8141"]],[14,17,["H8147"]],[17,18,["H1323"]],[18,20,["H8337"]],[20,21,["H8141"]],[21,24,["H6629"]],[24,28,["H2498","(H853)"]],[28,30,["H4909"]],[30,31,["H6235"]],[31,32,["H4489"]]]},{"k":915,"v":[[0,1,["H3884"]],[1,3,["H430"]],[3,6,["H1"]],[6,8,["H430"]],[8,10,["H85"]],[10,13,["H6343"]],[13,15,["H3327"]],[15,17,["H1961"]],[17,20,["H3588"]],[20,25,["H7971"]],[25,26,["H6258"]],[26,27,["H7387"]],[27,28,["H430"]],[28,30,["H7200","(H853)"]],[30,32,["H6040"]],[32,35,["H3018"]],[35,38,["H3709"]],[38,40,["H3198"]],[40,42,["H570"]]]},{"k":916,"v":[[0,2,["H3837"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H413"]],[6,7,["H3290"]],[7,9,["H1323"]],[9,12,["H1323"]],[12,15,["H1121"]],[15,18,["H1121"]],[18,21,["H6629"]],[21,24,["H6629"]],[24,26,["H3605"]],[26,27,["H834"]],[27,28,["H859"]],[28,29,["H7200"]],[29,33,["H4100"]],[33,36,["H6213"]],[36,38,["H3117"]],[38,40,["H428"]],[40,42,["H1323"]],[42,43,["H176"]],[43,46,["H1121"]],[46,47,["H834"]],[47,50,["H3205"]]]},{"k":917,"v":[[0,1,["H6258"]],[1,3,["H1980"]],[3,7,["H3772"]],[7,9,["H1285"]],[9,10,["H589"]],[10,12,["H859"]],[12,16,["H1961"]],[16,19,["H5707"]],[19,20,["H996"]],[20,23,[]]]},{"k":918,"v":[[0,2,["H3290"]],[2,3,["H3947"]],[3,5,["H68"]],[5,9,["H7311"]],[9,12,["H4676"]]]},{"k":919,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,6,["H251"]],[6,7,["H3950"]],[7,8,["H68"]],[8,11,["H3947"]],[11,12,["H68"]],[12,14,["H6213"]],[14,16,["H1530"]],[16,20,["H398"]],[20,21,["H8033"]],[21,22,["H5921"]],[22,24,["H1530"]]]},{"k":920,"v":[[0,2,["H3837"]],[2,3,["H7121"]],[3,5,["H3026"]],[5,7,["H3290"]],[7,8,["H7121"]],[8,10,["H1567"]]]},{"k":921,"v":[[0,2,["H3837"]],[2,3,["H559"]],[3,4,["H2088"]],[4,5,["H1530"]],[5,8,["H5707"]],[8,9,["H996"]],[9,14,["H3117"]],[14,15,["H5921","H3651"]],[15,18,["H8034"]],[18,21,["H7121"]],[21,22,["H1567"]]]},{"k":922,"v":[[0,2,["H4709"]],[2,3,["H834"]],[3,5,["H559"]],[5,7,["H3068"]],[7,8,["H6822"]],[8,9,["H996"]],[9,13,["H3588"]],[13,16,["H5641"]],[16,17,["H376"]],[17,19,["H4480","H7453"]]]},{"k":923,"v":[[0,1,["H518"]],[1,4,["H6031","(H853)"]],[4,6,["H1323"]],[6,8,["H518"]],[8,11,["H3947"]],[11,13,["H802"]],[13,14,["H5921"]],[14,16,["H1323"]],[16,17,["H369"]],[17,18,["H376"]],[18,20,["H5973"]],[20,22,["H7200"]],[22,23,["H430"]],[23,25,["H5707"]],[25,26,["H996"]],[26,29,[]]]},{"k":924,"v":[[0,2,["H3837"]],[2,3,["H559"]],[3,5,["H3290"]],[5,6,["H2009"]],[6,7,["H2088"]],[7,8,["H1530"]],[8,10,["H2009"]],[10,12,["H4676"]],[12,13,["H834"]],[13,16,["H3384"]],[16,17,["H996"]],[17,20,[]]]},{"k":925,"v":[[0,1,["H2088"]],[1,2,["H1530"]],[2,4,["H5707"]],[4,7,["H4676"]],[7,9,["H5713"]],[9,10,["H518"]],[10,11,["H589"]],[11,13,["H3808"]],[13,15,["H5674","(H853)"]],[15,16,["H2088"]],[16,17,["H1530"]],[17,18,["H413"]],[18,21,["H518"]],[21,22,["H859"]],[22,24,["H3808"]],[24,26,["H5674","(H853)"]],[26,27,["H2088"]],[27,28,["H1530"]],[28,30,["H2063"]],[30,31,["H4676"]],[31,32,["H413"]],[32,35,["H7451"]]]},{"k":926,"v":[[0,2,["H430"]],[2,4,["H85"]],[4,7,["H430"]],[7,9,["H5152"]],[9,11,["H430"]],[11,14,["H1"]],[14,15,["H8199"]],[15,16,["H996"]],[16,19,["H3290"]],[19,20,["H7650"]],[20,23,["H6343"]],[23,26,["H1"]],[26,27,["H3327"]]]},{"k":927,"v":[[0,2,["H3290"]],[2,3,["H2076"]],[3,4,["H2077"]],[4,7,["H2022"]],[7,9,["H7121"]],[9,11,["H251"]],[11,13,["H398"]],[13,14,["H3899"]],[14,18,["H398"]],[18,19,["H3899"]],[19,23,["H3885"]],[23,26,["H2022"]]]},{"k":928,"v":[[0,5,["H1242"]],[5,6,["H3837"]],[6,8,["H7925"]],[8,10,["H5401"]],[10,12,["H1121"]],[12,15,["H1323"]],[15,17,["H1288"]],[17,20,["H3837"]],[20,21,["H1980"]],[21,23,["H7725"]],[23,26,["H4725"]]]},{"k":929,"v":[[0,2,["H3290"]],[2,3,["H1980"]],[3,6,["H1870"]],[6,9,["H4397"]],[9,11,["H430"]],[11,12,["H6293"]],[12,13,[]]]},{"k":930,"v":[[0,2,["H834"]],[2,3,["H3290"]],[3,4,["H7200"]],[4,7,["H559"]],[7,8,["H2088"]],[8,10,["H430"]],[10,11,["H4264"]],[11,14,["H7121"]],[14,16,["H8034"]],[16,18,["H1931"]],[18,19,["H4725"]],[19,20,["H4266"]]]},{"k":931,"v":[[0,2,["H3290"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H6440"]],[5,7,["H413"]],[7,8,["H6215"]],[8,10,["H251"]],[10,13,["H776"]],[13,15,["H8165"]],[15,17,["H7704"]],[17,19,["H123"]]]},{"k":932,"v":[[0,3,["H6680"]],[3,5,["H559"]],[5,6,["H3541"]],[6,9,["H559"]],[9,12,["H113"]],[12,13,["H6215"]],[13,15,["H5650"]],[15,16,["H3290"]],[16,17,["H559"]],[17,18,["H3541"]],[18,21,["H1481"]],[21,22,["H5973"]],[22,23,["H3837"]],[23,26,["H309"]],[26,27,["H5704"]],[27,28,["H6258"]]]},{"k":933,"v":[[0,3,["H1961"]],[3,4,["H7794"]],[4,6,["H2543"]],[6,7,["H6629"]],[7,9,["H5650"]],[9,11,["H8198"]],[11,15,["H7971"]],[15,17,["H5046"]],[17,19,["H113"]],[19,23,["H4672"]],[23,24,["H2580"]],[24,27,["H5869"]]]},{"k":934,"v":[[0,3,["H4397"]],[3,4,["H7725"]],[4,5,["H413"]],[5,6,["H3290"]],[6,7,["H559"]],[7,9,["H935"]],[9,10,["H413"]],[10,12,["H251"]],[12,13,["H6215"]],[13,15,["H1571"]],[15,17,["H1980"]],[17,19,["H7125"]],[19,22,["H702"]],[22,23,["H3967"]],[23,24,["H376"]],[24,25,["H5973"]],[25,26,[]]]},{"k":935,"v":[[0,2,["H3290"]],[2,5,["H3372","H3966"]],[5,7,["H3334"]],[7,10,["H2673","(H853)"]],[10,12,["H5971"]],[12,13,["H834"]],[13,15,["H854"]],[15,19,["H6629"]],[19,21,["H1241"]],[21,24,["H1581"]],[24,26,["H8147"]],[26,27,["H4264"]]]},{"k":936,"v":[[0,2,["H559"]],[2,3,["H518"]],[3,4,["H6215"]],[4,5,["H935"]],[5,6,["H413"]],[6,8,["H259"]],[8,9,["H4264"]],[9,11,["H5221"]],[11,16,["H4264"]],[16,19,["H7604"]],[19,21,["H6413"]]]},{"k":937,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,5,["H430"]],[5,8,["H1"]],[8,9,["H85"]],[9,11,["H430"]],[11,14,["H1"]],[14,15,["H3327"]],[15,17,["H3068"]],[17,19,["H559"]],[19,20,["H413"]],[20,22,["H7725"]],[22,25,["H776"]],[25,29,["H4138"]],[29,34,["H3190"]],[34,35,["H5973"]],[35,36,[]]]},{"k":938,"v":[[0,4,["H6994"]],[4,9,["H4480","H3605"]],[9,11,["H2617"]],[11,14,["H4480","H3605"]],[14,16,["H571"]],[16,17,["H834"]],[17,20,["H6213"]],[20,21,["(H853)"]],[21,23,["H5650"]],[23,24,["H3588"]],[24,27,["H4731"]],[27,30,["H5674","(H853)"]],[30,31,["H2088"]],[31,32,["H3383"]],[32,34,["H6258"]],[34,37,["H1961"]],[37,38,["H8147"]],[38,39,["H4264"]]]},{"k":939,"v":[[0,1,["H5337"]],[1,5,["H4994"]],[5,8,["H4480","H3027"]],[8,11,["H251"]],[11,14,["H4480","H3027"]],[14,16,["H6215"]],[16,17,["H3588"]],[17,18,["H595"]],[18,19,["H3372"]],[19,21,["H6435"]],[21,24,["H935"]],[24,26,["H5221"]],[26,30,["H517"]],[30,31,["H5921"]],[31,33,["H1121"]]]},{"k":940,"v":[[0,2,["H859"]],[2,3,["H559"]],[3,9,["H3190","H3190","H5973"]],[9,11,["H7760","(H853)"]],[11,13,["H2233"]],[13,16,["H2344"]],[16,19,["H3220"]],[19,20,["H834"]],[20,21,["H3808"]],[21,23,["H5608"]],[23,25,["H4480","H7230"]]]},{"k":941,"v":[[0,3,["H3885"]],[3,4,["H8033"]],[4,6,["H1931"]],[6,7,["H3915"]],[7,9,["H3947"]],[9,10,["H4480"]],[10,13,["H935"]],[13,16,["H3027"]],[16,18,["H4503"]],[18,20,["H6215"]],[20,22,["H251"]]]},{"k":942,"v":[[0,2,["H3967"]],[2,4,["H5795"]],[4,6,["H6242"]],[6,8,["H8495"]],[8,10,["H3967"]],[10,11,["H7353"]],[11,13,["H6242"]],[13,14,["H352"]]]},{"k":943,"v":[[0,1,["H7970"]],[1,2,["H3243"]],[2,3,["H1581"]],[3,6,["H1121"]],[6,7,["H705"]],[7,8,["H6510"]],[8,10,["H6235"]],[10,11,["H6499"]],[11,12,["H6242"]],[12,14,["H860"]],[14,16,["H6235"]],[16,17,["H5895"]]]},{"k":944,"v":[[0,3,["H5414"]],[3,7,["H3027"]],[7,10,["H5650"]],[10,12,["H5739","H5739"]],[12,14,["H905"]],[14,16,["H559"]],[16,17,["H413"]],[17,19,["H5650"]],[19,21,["H5674"]],[21,22,["H6440"]],[22,25,["H7760"]],[25,27,["H7305"]],[27,28,["H996"]],[28,29,["H5739"]],[29,31,["H5739"]]]},{"k":945,"v":[[0,3,["H6680","(H853)"]],[3,5,["H7223"]],[5,6,["H559"]],[6,7,["H3588"]],[7,8,["H6215"]],[8,10,["H251"]],[10,11,["H6298"]],[11,14,["H7592"]],[14,16,["H559"]],[16,17,["H4310"]],[17,19,["H859"]],[19,21,["H575"]],[21,22,["H1980"]],[22,25,["H4310"]],[25,27,["H428"]],[27,28,["H6440"]],[28,29,[]]]},{"k":946,"v":[[0,4,["H559"]],[4,8,["H5650"]],[8,9,["H3290"]],[9,10,["H1931"]],[10,13,["H4503"]],[13,14,["H7971"]],[14,17,["H113"]],[17,18,["H6215"]],[18,20,["H2009"]],[20,21,["H1571"]],[21,22,["H1931"]],[22,24,["H310"]],[24,25,[]]]},{"k":947,"v":[[0,2,["H1571"]],[2,3,["H6680"]],[3,4,["(H853)"]],[4,6,["H8145"]],[6,7,["H1571","(H853)"]],[7,9,["H7992"]],[9,10,["H1571","(H853)"]],[10,11,["H3605"]],[11,13,["H1980","H310"]],[13,15,["H5739"]],[15,16,["H559"]],[16,18,["H2088"]],[18,19,["H1697"]],[19,22,["H1696"]],[22,23,["H413"]],[23,24,["H6215"]],[24,27,["H4672"]],[27,28,[]]]},{"k":948,"v":[[0,2,["H559"]],[2,4,["H1571"]],[4,5,["H2009"]],[5,7,["H5650"]],[7,8,["H3290"]],[8,10,["H310"]],[10,12,["H3588"]],[12,14,["H559"]],[14,17,["H3722","H6440"]],[17,21,["H4503"]],[21,23,["H1980"]],[23,24,["H6440"]],[24,27,["H310","H3651"]],[27,30,["H7200"]],[30,32,["H6440"]],[32,33,["H194"]],[33,36,["H5375","H6440"]],[36,38,[]]]},{"k":949,"v":[[0,2,["H5674"]],[2,4,["H4503"]],[4,6,["H5921","H6440"]],[6,9,["H1931"]],[9,10,["H3885"]],[10,11,["H1931"]],[11,12,["H3915"]],[12,15,["H4264"]]]},{"k":950,"v":[[0,4,["H6965"]],[4,5,["H1931"]],[5,6,["H3915"]],[6,8,["H3947","(H853)"]],[8,10,["H8147"]],[10,11,["H802"]],[11,14,["H8147"]],[14,15,["H8198"]],[15,18,["H259","H6240"]],[18,19,["H3206"]],[19,22,["H5674","(H853)"]],[22,24,["H4569"]],[24,25,["H2999"]]]},{"k":951,"v":[[0,3,["H3947"]],[3,8,["H5674","(H853)"]],[8,10,["H5158"]],[10,13,["H5674","(H853)"]],[13,14,["H834"]],[14,16,[]]]},{"k":952,"v":[[0,2,["H3290"]],[2,4,["H3498"]],[4,5,["H905"]],[5,8,["H79"]],[8,10,["H376"]],[10,11,["H5973"]],[11,13,["H5704"]],[13,15,["H5927"]],[15,18,["H7837"]]]},{"k":953,"v":[[0,4,["H7200"]],[4,5,["H3588"]],[5,7,["H3201"]],[7,8,["H3808"]],[8,12,["H5060"]],[12,14,["H3709"]],[14,17,["H3409"]],[17,20,["H3709"]],[20,22,["H3290"]],[22,23,["H3409"]],[23,27,["H3363"]],[27,30,["H79"]],[30,31,["H5973"]],[31,32,[]]]},{"k":954,"v":[[0,3,["H559"]],[3,6,["H7971"]],[6,7,["H3588"]],[7,9,["H7837"]],[9,10,["H5927"]],[10,13,["H559"]],[13,16,["H3808"]],[16,19,["H7971"]],[19,20,["H3588","H518"]],[20,22,["H1288"]],[22,23,[]]]},{"k":955,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H4100"]],[6,9,["H8034"]],[9,12,["H559"]],[12,13,["H3290"]]]},{"k":956,"v":[[0,3,["H559"]],[3,5,["H8034"]],[5,8,["H559"]],[8,9,["H3808"]],[9,10,["H5750"]],[10,11,["H3290"]],[11,12,["H3588","H518"]],[12,13,["H3478"]],[13,14,["H3588"]],[14,20,["H8280"]],[20,21,["H5973"]],[21,22,["H430"]],[22,24,["H5973"]],[24,25,["H376"]],[25,28,["H3201"]]]},{"k":957,"v":[[0,2,["H3290"]],[2,3,["H7592"]],[3,6,["H559"]],[6,7,["H5046"]],[7,11,["H4994"]],[11,13,["H8034"]],[13,16,["H559"]],[16,17,["H4100"]],[17,19,["H2088"]],[19,23,["H7592"]],[23,26,["H8034"]],[26,29,["H1288"]],[29,31,["H8033"]]]},{"k":958,"v":[[0,2,["H3290"]],[2,3,["H7121"]],[3,5,["H8034"]],[5,8,["H4725"]],[8,9,["H6439"]],[9,10,["H3588"]],[10,13,["H7200"]],[13,14,["H430"]],[14,15,["H6440"]],[15,16,["H413"]],[16,17,["H6440"]],[17,20,["H5315"]],[20,22,["H5337"]]]},{"k":959,"v":[[0,2,["H834"]],[2,5,["H5674","(H853)"]],[5,6,["H6439"]],[6,8,["H8121"]],[8,9,["H2224"]],[9,13,["H1931"]],[13,14,["H6760"]],[14,15,["H5921"]],[15,17,["H3409"]]]},{"k":960,"v":[[0,1,["H5921","H3651"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,6,["H398"]],[6,7,["H3808"]],[7,8,["(H853)"]],[8,10,["H1517"]],[10,12,["H5384"]],[12,13,["H834"]],[13,15,["H5921"]],[15,17,["H3709"]],[17,20,["H3409"]],[20,21,["H5704"]],[21,22,["H2088"]],[22,23,["H3117"]],[23,24,["H3588"]],[24,26,["H5060"]],[26,28,["H3709"]],[28,30,["H3290"]],[30,31,["H3409"]],[31,34,["H1517"]],[34,36,["H5384"]]]},{"k":961,"v":[[0,2,["H3290"]],[2,4,["H5375"]],[4,6,["H5869"]],[6,8,["H7200"]],[8,10,["H2009"]],[10,11,["H6215"]],[11,12,["H935"]],[12,14,["H5973"]],[14,16,["H702"]],[16,17,["H3967"]],[17,18,["H376"]],[18,21,["H2673","(H853)"]],[21,23,["H3206"]],[23,24,["H5921"]],[24,25,["H3812"]],[25,27,["H5921"]],[27,28,["H7354"]],[28,30,["H5921"]],[30,32,["H8147"]],[32,33,["H8198"]]]},{"k":962,"v":[[0,3,["H7760","(H853)"]],[3,5,["H8198"]],[5,8,["H3206"]],[8,9,["H7223"]],[9,11,["H3812"]],[11,14,["H3206"]],[14,15,["H314"]],[15,17,["H7354"]],[17,19,["H3130"]],[19,20,["H314"]]]},{"k":963,"v":[[0,2,["H1931"]],[2,4,["H5674"]],[4,5,["H6440"]],[5,9,["H7812"]],[9,12,["H776"]],[12,13,["H7651"]],[13,14,["H6471"]],[14,15,["H5704"]],[15,18,["H5066"]],[18,19,["H5704"]],[19,21,["H251"]]]},{"k":964,"v":[[0,2,["H6215"]],[2,3,["H7323"]],[3,5,["H7125"]],[5,8,["H2263"]],[8,11,["H5307"]],[11,12,["H5921"]],[12,14,["H6677"]],[14,16,["H5401"]],[16,20,["H1058"]]]},{"k":965,"v":[[0,4,["H5375","(H853)"]],[4,6,["H5869"]],[6,8,["H7200","(H853)"]],[8,10,["H802"]],[10,13,["H3206"]],[13,15,["H559"]],[15,16,["H4310"]],[16,18,["H428"]],[18,23,["H559"]],[23,25,["H3206"]],[25,26,["H834"]],[26,27,["H430"]],[27,30,["H2603","(H853)"]],[30,32,["H5650"]]]},{"k":966,"v":[[0,3,["H8198"]],[3,5,["H5066"]],[5,6,["H2007"]],[6,9,["H3206"]],[9,13,["H7812"]]]},{"k":967,"v":[[0,2,["H3812"]],[2,3,["H1571"]],[3,6,["H3206"]],[6,8,["H5066"]],[8,11,["H7812"]],[11,13,["H310"]],[13,16,["H5066","H3130"]],[16,18,["H7354"]],[18,22,["H7812"]]]},{"k":968,"v":[[0,3,["H559"]],[3,4,["H4310"]],[4,8,["H3605"]],[8,9,["H2088"]],[9,10,["H4264"]],[10,11,["H834"]],[11,13,["H6298"]],[13,16,["H559"]],[16,20,["H4672"]],[20,21,["H2580"]],[21,24,["H5869"]],[24,27,["H113"]]]},{"k":969,"v":[[0,2,["H6215"]],[2,3,["H559"]],[3,5,["H3426"]],[5,6,["H7227"]],[6,8,["H251"]],[8,9,["H1961"]],[9,10,["H834"]],[10,14,[]]]},{"k":970,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,4,["H408"]],[4,7,["H4994"]],[7,8,["H518"]],[8,9,["H4994"]],[9,12,["H4672"]],[12,13,["H2580"]],[13,16,["H5869"]],[16,18,["H3947"]],[18,20,["H4503"]],[20,23,["H4480","H3027"]],[23,24,["H3588"]],[24,25,["H5921","H3651"]],[25,28,["H7200"]],[28,30,["H6440"]],[30,35,["H7200"]],[35,37,["H6440"]],[37,39,["H430"]],[39,43,["H7521"]],[43,45,[]]]},{"k":971,"v":[[0,1,["H3947"]],[1,4,["H4994","(H853)"]],[4,6,["H1293"]],[6,7,["H834"]],[7,9,["H935"]],[9,12,["H3588"]],[12,13,["H430"]],[13,16,["H2603"]],[16,20,["H3588"]],[20,22,["H3426"]],[22,23,["H3605"]],[23,26,["H6484"]],[26,30,["H3947"]],[30,31,[]]]},{"k":972,"v":[[0,3,["H559"]],[3,8,["H5265"]],[8,12,["H1980"]],[12,16,["H1980"]],[16,17,["H5048"]],[17,18,[]]]},{"k":973,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H113"]],[7,8,["H3045"]],[8,9,["H3588"]],[9,11,["H3206"]],[11,13,["H7390"]],[13,16,["H6629"]],[16,18,["H1241"]],[18,20,["H5763"]],[20,22,["H5921"]],[22,28,["H1849"]],[28,30,["H259"]],[30,31,["H3117"]],[31,32,["H3605"]],[32,34,["H6629"]],[34,36,["H4191"]]]},{"k":974,"v":[[0,3,["H113"]],[3,6,["H4994"]],[6,8,["H5674"]],[8,9,["H6440"]],[9,11,["H5650"]],[11,13,["H589"]],[13,16,["H5095"]],[16,17,["H328"]],[17,19,["H7272"]],[19,21,["H4399"]],[21,22,["H834"]],[22,24,["H6440"]],[24,28,["H3206"]],[28,32,["H7272"]],[32,33,["H5704","H834"]],[33,35,["H935"]],[35,36,["H413"]],[36,38,["H113"]],[38,40,["H8165"]]]},{"k":975,"v":[[0,2,["H6215"]],[2,3,["H559"]],[3,6,["H4994"]],[6,7,["H3322"]],[7,8,["H5973"]],[8,11,["H4480"]],[11,13,["H5971"]],[13,14,["H834"]],[14,16,["H854"]],[16,20,["H559"]],[20,21,["H4100"]],[21,23,["H2088"]],[23,26,["H4672"]],[26,27,["H2580"]],[27,30,["H5869"]],[30,33,["H113"]]]},{"k":976,"v":[[0,2,["H6215"]],[2,3,["H7725"]],[3,4,["H1931"]],[4,5,["H3117"]],[5,8,["H1870"]],[8,10,["H8165"]]]},{"k":977,"v":[[0,2,["H3290"]],[2,3,["H5265"]],[3,5,["H5523"]],[5,7,["H1129"]],[7,10,["H1004"]],[10,12,["H6213"]],[12,13,["H5521"]],[13,16,["H4735"]],[16,17,["H5921","H3651"]],[17,19,["H8034"]],[19,22,["H4725"]],[22,24,["H7121"]],[24,25,["H5523"]]]},{"k":978,"v":[[0,2,["H3290"]],[2,3,["H935"]],[3,5,["H8003"]],[5,7,["H5892"]],[7,9,["H7927"]],[9,10,["H834"]],[10,14,["H776"]],[14,16,["H3667"]],[16,19,["H935"]],[19,21,["H4480","H6307"]],[21,25,["H2583","(H853)"]],[25,26,["H6440"]],[26,28,["H5892"]]]},{"k":979,"v":[[0,3,["H7069","(H853)"]],[3,5,["H2513"]],[5,8,["H7704"]],[8,9,["H834","H8033"]],[9,12,["H5186"]],[12,14,["H168"]],[14,17,["H4480","H3027"]],[17,20,["H1121"]],[20,22,["H2544"]],[22,23,["H7928"]],[23,24,["H1"]],[24,27,["H3967"]],[27,30,["H7192"]]]},{"k":980,"v":[[0,3,["H5324"]],[3,4,["H8033"]],[4,6,["H4196"]],[6,8,["H7121"]],[8,10,["H415"]]]},{"k":981,"v":[[0,2,["H1783"]],[2,4,["H1323"]],[4,6,["H3812"]],[6,7,["H834"]],[7,9,["H3205"]],[9,11,["H3290"]],[11,13,["H3318"]],[13,15,["H7200"]],[15,17,["H1323"]],[17,20,["H776"]]]},{"k":982,"v":[[0,3,["H7928"]],[3,5,["H1121"]],[5,7,["H2544"]],[7,9,["H2340"]],[9,10,["H5387"]],[10,13,["H776"]],[13,14,["H7200"]],[14,17,["H3947"]],[17,21,["H7901"]],[21,24,["H6031"]],[24,25,[]]]},{"k":983,"v":[[0,3,["H5315"]],[3,4,["H1692"]],[4,6,["H1783"]],[6,8,["H1323"]],[8,10,["H3290"]],[10,13,["H157","(H853)"]],[13,15,["H5291"]],[15,17,["H1696"]],[17,18,["H5921","H3820"]],[18,21,["H5291"]]]},{"k":984,"v":[[0,2,["H7928"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1"]],[6,7,["H2544"]],[7,8,["H559"]],[8,9,["H3947"]],[9,10,["(H853)"]],[10,11,["H2063"]],[11,12,["H3207"]],[12,14,["H802"]]]},{"k":985,"v":[[0,2,["H3290"]],[2,3,["H8085"]],[3,4,["H3588"]],[4,7,["H2930","(H853)"]],[7,8,["H1783"]],[8,10,["H1323"]],[10,13,["H1121"]],[13,14,["H1961"]],[14,15,["H854"]],[15,17,["H4735"]],[17,20,["H7704"]],[20,22,["H3290"]],[22,25,["H2790"]],[25,26,["H5704"]],[26,29,["H935"]]]},{"k":986,"v":[[0,2,["H2544"]],[2,4,["H1"]],[4,6,["H7927"]],[6,8,["H3318"]],[8,9,["H413"]],[9,10,["H3290"]],[10,12,["H1696"]],[12,13,["H854"]],[13,14,[]]]},{"k":987,"v":[[0,3,["H1121"]],[3,5,["H3290"]],[5,6,["H935"]],[6,8,["H4480"]],[8,10,["H7704"]],[10,13,["H8085"]],[13,17,["H376"]],[17,19,["H6087"]],[19,24,["H2734","H3966"]],[24,25,["H3588"]],[25,28,["H6213"]],[28,29,["H5039"]],[29,31,["H3478"]],[31,34,["H7901","(H853)"]],[34,35,["H3290"]],[35,36,["H1323"]],[36,38,["H3651"]],[38,40,["H3808"]],[40,43,["H6213"]]]},{"k":988,"v":[[0,2,["H2544"]],[2,3,["H1696"]],[3,4,["H854"]],[4,6,["H559"]],[6,8,["H5315"]],[8,11,["H1121"]],[11,12,["H7928"]],[12,13,["H2836"]],[13,16,["H1323"]],[16,19,["H4994"]],[19,20,["H5414"]],[20,24,["H802"]]]},{"k":989,"v":[[0,4,["H2859"]],[4,5,["H854"]],[5,8,["H5414"]],[8,10,["H1323"]],[10,14,["H3947"]],[14,16,["H1323"]],[16,18,[]]]},{"k":990,"v":[[0,4,["H3427"]],[4,5,["H854"]],[5,9,["H776"]],[9,11,["H1961"]],[11,12,["H6440"]],[12,14,["H3427"]],[14,16,["H5503"]],[16,22,["H270"]],[22,23,[]]]},{"k":991,"v":[[0,2,["H7928"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1"]],[6,8,["H413"]],[8,10,["H251"]],[10,13,["H4672"]],[13,14,["H2580"]],[14,17,["H5869"]],[17,19,["H834"]],[19,22,["H559"]],[22,23,["H413"]],[23,27,["H5414"]]]},{"k":992,"v":[[0,1,["H7235","H5921"]],[1,5,["H3966"]],[5,6,["H4119"]],[6,8,["H4976"]],[8,12,["H5414"]],[12,14,["H834"]],[14,17,["H559"]],[17,18,["H413"]],[18,21,["H5414"]],[21,22,["(H853)"]],[22,24,["H5291"]],[24,26,["H802"]]]},{"k":993,"v":[[0,3,["H1121"]],[3,5,["H3290"]],[5,6,["H6030","(H853)"]],[6,7,["H7928"]],[7,9,["H2544"]],[9,11,["H1"]],[11,12,["H4820"]],[12,14,["H1696"]],[14,15,["H834"]],[15,18,["H2930","(H853)"]],[18,19,["H1783"]],[19,21,["H269"]]]},{"k":994,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H3808","H3201"]],[7,8,["H6213"]],[8,9,["H2088"]],[9,10,["H1697"]],[10,12,["H5414","(H853)"]],[12,14,["H269"]],[14,16,["H376"]],[16,17,["H834"]],[17,19,["H6190"]],[19,20,["H3588"]],[20,21,["H1931"]],[21,24,["H2781"]],[24,26,[]]]},{"k":995,"v":[[0,1,["H389"]],[1,3,["H2063"]],[3,6,["H225"]],[6,9,["H518"]],[9,12,["H1961"]],[12,17,["H3605"]],[17,18,["H2145"]],[18,22,["H4135"]]]},{"k":996,"v":[[0,4,["H5414","(H853)"]],[4,6,["H1323"]],[6,12,["H3947"]],[12,14,["H1323"]],[14,20,["H3427"]],[20,21,["H854"]],[21,26,["H1961"]],[26,27,["H259"]],[27,28,["H5971"]]]},{"k":997,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H8085"]],[6,7,["H413"]],[7,11,["H4135"]],[11,15,["H3947","(H853)"]],[15,17,["H1323"]],[17,22,["H1980"]]]},{"k":998,"v":[[0,3,["H1697"]],[3,4,["H3190","H5869"]],[4,5,["H2544"]],[5,7,["H7928"]],[7,8,["H2544"]],[8,9,["H1121"]]]},{"k":999,"v":[[0,4,["H5288"]],[4,5,["H309"]],[5,6,["H3808"]],[6,8,["H6213"]],[8,10,["H1697"]],[10,11,["H3588"]],[11,14,["H2654"]],[14,16,["H3290"]],[16,17,["H1323"]],[17,19,["H1931"]],[19,22,["H3513"]],[22,24,["H4480","H3605"]],[24,26,["H1004"]],[26,29,["H1"]]]},{"k":1000,"v":[[0,2,["H2544"]],[2,4,["H7928"]],[4,6,["H1121"]],[6,7,["H935"]],[7,8,["H413"]],[8,10,["H8179"]],[10,13,["H5892"]],[13,15,["H1696"]],[15,16,["H413"]],[16,18,["H376"]],[18,21,["H5892"]],[21,22,["H559"]]]},{"k":1001,"v":[[0,1,["H428"]],[1,2,["H376"]],[2,4,["H8003"]],[4,5,["H854"]],[5,10,["H3427"]],[10,13,["H776"]],[13,15,["H5503"]],[15,19,["H776"]],[19,20,["H2009"]],[20,24,["H7342","H3027"]],[24,25,["H6440"]],[25,29,["H3947","(H853)"]],[29,31,["H1323"]],[31,35,["H802"]],[35,39,["H5414"]],[39,42,["H1323"]]]},{"k":1002,"v":[[0,1,["H389"]],[1,2,["H2063"]],[2,5,["H376"]],[5,6,["H225"]],[6,11,["H3427"]],[11,12,["H854"]],[12,15,["H1961"]],[15,16,["H259"]],[16,17,["H5971"]],[17,19,["H3605"]],[19,20,["H2145"]],[20,24,["H4135"]],[24,25,["H834"]],[25,26,["H1992"]],[26,28,["H4135"]]]},{"k":1003,"v":[[0,2,["H3808"]],[2,4,["H4735"]],[4,7,["H7075"]],[7,9,["H3605"]],[9,10,["H929"]],[10,15,["H389"]],[15,18,["H225"]],[18,24,["H3427"]],[24,25,["H854"]],[25,26,[]]]},{"k":1004,"v":[[0,2,["H413"]],[2,3,["H2544"]],[3,5,["H413"]],[5,6,["H7928"]],[6,8,["H1121"]],[8,9,["H8085"]],[9,10,["H3605"]],[10,13,["H3318"]],[13,16,["H8179"]],[16,19,["H5892"]],[19,21,["H3605"]],[21,22,["H2145"]],[22,24,["H4135"]],[24,25,["H3605"]],[25,28,["H3318"]],[28,31,["H8179"]],[31,34,["H5892"]]]},{"k":1005,"v":[[0,5,["H1961"]],[5,8,["H7992"]],[8,9,["H3117"]],[9,12,["H1961"]],[12,13,["H3510"]],[13,15,["H8147"]],[15,18,["H1121"]],[18,20,["H3290"]],[20,21,["H8095"]],[21,23,["H3878"]],[23,24,["H1783"]],[24,25,["H251"]],[25,26,["H3947"]],[26,28,["H376"]],[28,30,["H2719"]],[30,32,["H935"]],[32,33,["H5921"]],[33,35,["H5892"]],[35,36,["H983"]],[36,38,["H2026"]],[38,39,["H3605"]],[39,41,["H2145"]]]},{"k":1006,"v":[[0,3,["H2026"]],[3,4,["H2544"]],[4,6,["H7928"]],[6,8,["H1121"]],[8,11,["H6310"]],[11,14,["H2719"]],[14,16,["H3947","(H853)"]],[16,17,["H1783"]],[17,20,["H7928"]],[20,21,["H4480","H1004"]],[21,24,["H3318"]]]},{"k":1007,"v":[[0,2,["H1121"]],[2,4,["H3290"]],[4,5,["H935"]],[5,6,["H5921"]],[6,8,["H2491"]],[8,10,["H962"]],[10,12,["H5892"]],[12,13,["H834"]],[13,16,["H2930"]],[16,18,["H269"]]]},{"k":1008,"v":[[0,2,["H3947","(H853)"]],[2,4,["H6629"]],[4,7,["H1241"]],[7,10,["H2543"]],[10,13,["H834"]],[13,17,["H5892"]],[17,20,["H834"]],[20,24,["H7704"]]]},{"k":1009,"v":[[0,2,["H3605"]],[2,4,["H2428"]],[4,6,["H3605"]],[6,9,["H2945"]],[9,12,["H802"]],[12,15,["H7617"]],[15,17,["H962"]],[17,19,["H3605"]],[19,20,["H834"]],[20,24,["H1004"]]]},{"k":1010,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H8095"]],[5,7,["H3878"]],[7,10,["H5916"]],[10,16,["H887"]],[16,19,["H3427"]],[19,22,["H776"]],[22,25,["H3669"]],[25,28,["H6522"]],[28,30,["H589"]],[30,32,["H4962"]],[32,34,["H4557"]],[34,39,["H622"]],[39,40,["H5921"]],[40,43,["H5221"]],[43,49,["H8045"]],[49,50,["H589"]],[50,53,["H1004"]]]},{"k":1011,"v":[[0,3,["H559"]],[3,7,["H6213","(H853)"]],[7,9,["H269"]],[9,13,["H2181"]]]},{"k":1012,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3290"]],[5,6,["H6965"]],[6,8,["H5927"]],[8,10,["H1008"]],[10,12,["H3427"]],[12,13,["H8033"]],[13,15,["H6213"]],[15,16,["H8033"]],[16,18,["H4196"]],[18,20,["H410"]],[20,22,["H7200"]],[22,23,["H413"]],[23,27,["H1272"]],[27,30,["H4480","H6440"]],[30,32,["H6215"]],[32,34,["H251"]]]},{"k":1013,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1004"]],[6,8,["H413"]],[8,9,["H3605"]],[9,10,["H834"]],[10,12,["H5973"]],[12,15,["H5493","(H853)"]],[15,17,["H5236"]],[17,18,["H430"]],[18,19,["H834"]],[19,21,["H8432"]],[21,25,["H2891"]],[25,27,["H2498"]],[27,29,["H8071"]]]},{"k":1014,"v":[[0,4,["H6965"]],[4,7,["H5927"]],[7,9,["H1008"]],[9,13,["H6213"]],[13,14,["H8033"]],[14,16,["H4196"]],[16,18,["H410"]],[18,20,["H6030"]],[20,24,["H3117"]],[24,27,["H6869"]],[27,29,["H1961"]],[29,30,["H5973"]],[30,34,["H1870"]],[34,35,["H834"]],[35,37,["H1980"]]]},{"k":1015,"v":[[0,3,["H5414"]],[3,4,["H413"]],[4,5,["H3290","(H853)"]],[5,6,["H3605"]],[6,8,["H5236"]],[8,9,["H430"]],[9,10,["H834"]],[10,14,["H3027"]],[14,18,["H5141"]],[18,19,["H834"]],[19,23,["H241"]],[23,25,["H3290"]],[25,26,["H2934"]],[26,28,["H8478"]],[28,30,["H424"]],[30,31,["H834"]],[31,33,["H5973"]],[33,34,["H7927"]]]},{"k":1016,"v":[[0,3,["H5265"]],[3,6,["H2847"]],[6,8,["H430"]],[8,9,["H1961"]],[9,10,["H5921"]],[10,12,["H5892"]],[12,13,["H834"]],[13,16,["H5439"]],[16,21,["H3808"]],[21,22,["H7291"]],[22,23,["H310"]],[23,25,["H1121"]],[25,27,["H3290"]]]},{"k":1017,"v":[[0,2,["H3290"]],[2,3,["H935"]],[3,5,["H3870"]],[5,6,["H834"]],[6,10,["H776"]],[10,12,["H3667"]],[12,13,["H1931"]],[13,15,["H1008"]],[15,16,["H1931"]],[16,18,["H3605"]],[18,20,["H5971"]],[20,21,["H834"]],[21,23,["H5973"]],[23,24,[]]]},{"k":1018,"v":[[0,3,["H1129"]],[3,4,["H8033"]],[4,6,["H4196"]],[6,8,["H7121"]],[8,10,["H4725"]],[10,11,["H416"]],[11,12,["H3588"]],[12,13,["H8033"]],[13,14,["H430"]],[14,15,["H1540"]],[15,16,["H413"]],[16,20,["H1272"]],[20,23,["H4480","H6440"]],[23,26,["H251"]]]},{"k":1019,"v":[[0,2,["H1683"]],[2,3,["H7259"]],[3,4,["H3243"]],[4,5,["H4191"]],[5,9,["H6912"]],[9,10,["H4480","H8478"]],[10,11,["H1008"]],[11,12,["H8478"]],[12,14,["H437"]],[14,17,["H8034"]],[17,21,["H7121"]],[21,22,["H439"]]]},{"k":1020,"v":[[0,2,["H430"]],[2,3,["H7200"]],[3,4,["H413"]],[4,5,["H3290"]],[5,6,["H5750"]],[6,9,["H935"]],[9,12,["H4480","H6307"]],[12,14,["H1288"]],[14,15,[]]]},{"k":1021,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,7,["H8034"]],[7,9,["H3290"]],[9,11,["H8034"]],[11,13,["H3808"]],[13,15,["H7121"]],[15,17,["H5750"]],[17,18,["H3290"]],[18,19,["H3588","H518"]],[19,20,["H3478"]],[20,22,["H1961"]],[22,24,["H8034"]],[24,27,["H7121","(H853)"]],[27,29,["H8034"]],[29,30,["H3478"]]]},{"k":1022,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,6,["H589"]],[6,8,["H410"]],[8,9,["H7706"]],[9,11,["H6509"]],[11,13,["H7235"]],[13,15,["H1471"]],[15,18,["H6951"]],[18,20,["H1471"]],[20,22,["H1961"]],[22,23,["H4480"]],[23,26,["H4428"]],[26,29,["H3318"]],[29,32,["H4480","H2504"]]]},{"k":1023,"v":[[0,3,["H776"]],[3,4,["H834"]],[4,6,["H5414"]],[6,7,["H85"]],[7,9,["H3327"]],[9,14,["H5414"]],[14,19,["H2233"]],[19,20,["H310"]],[20,24,["H5414","(H853)"]],[24,26,["H776"]]]},{"k":1024,"v":[[0,2,["H430"]],[2,4,["H5927"]],[4,5,["H4480","H5921"]],[5,9,["H4725"]],[9,10,["H834"]],[10,12,["H1696"]],[12,13,["H854"]],[13,14,[]]]},{"k":1025,"v":[[0,2,["H3290"]],[2,4,["H5324"]],[4,6,["H4676"]],[6,9,["H4725"]],[9,10,["H834"]],[10,12,["H1696"]],[12,13,["H854"]],[13,17,["H4678"]],[17,19,["H68"]],[19,22,["H5258"]],[22,25,["H5262"]],[25,26,["H5921"]],[26,29,["H3332"]],[29,30,["H8081"]],[30,31,["H5921"]]]},{"k":1026,"v":[[0,2,["H3290"]],[2,3,["H7121","(H853)"]],[3,5,["H8034"]],[5,8,["H4725"]],[8,9,["H834"]],[9,10,["H430"]],[10,11,["H1696"]],[11,12,["H854"]],[12,14,["H1008"]]]},{"k":1027,"v":[[0,3,["H5265"]],[3,5,["H4480","H1008"]],[5,8,["H1961"]],[8,9,["H5750"]],[9,12,["H3530","H776"]],[12,14,["H935"]],[14,16,["H672"]],[16,18,["H7354"]],[18,19,["H3205"]],[19,23,["H7185"]],[23,24,["H3205"]]]},{"k":1028,"v":[[0,5,["H1961"]],[5,10,["H7185"]],[10,11,["H3205"]],[11,14,["H3205"]],[14,15,["H559"]],[15,18,["H3372"]],[18,19,["H408"]],[19,23,["H2088"]],[23,24,["H1121"]],[24,25,["H1571"]]]},{"k":1029,"v":[[0,5,["H1961"]],[5,8,["H5315"]],[8,11,["H3318"]],[11,12,["H3588"]],[12,14,["H4191"]],[14,17,["H7121"]],[17,19,["H8034"]],[19,20,["H1126"]],[20,23,["H1"]],[23,24,["H7121"]],[24,26,["H1144"]]]},{"k":1030,"v":[[0,2,["H7354"]],[2,3,["H4191"]],[3,6,["H6912"]],[6,9,["H1870"]],[9,11,["H672"]],[11,12,["H1931"]],[12,14,["H1035"]]]},{"k":1031,"v":[[0,2,["H3290"]],[2,3,["H5324"]],[3,5,["H4676"]],[5,6,["H5921"]],[6,8,["H6900"]],[8,9,["H1931"]],[9,12,["H4678"]],[12,14,["H7354"]],[14,15,["H6900"]],[15,16,["H5704"]],[16,18,["H3117"]]]},{"k":1032,"v":[[0,2,["H3478"]],[2,3,["H5265"]],[3,5,["H5186"]],[5,7,["H168"]],[7,8,["H4480","H1973"]],[8,10,["H4026"]],[10,12,["H4029"]]]},{"k":1033,"v":[[0,5,["H1961"]],[5,7,["H3478"]],[7,8,["H7931"]],[8,10,["H1931"]],[10,11,["H776"]],[11,13,["H7205"]],[13,14,["H1980"]],[14,17,["H7901","(H853)"]],[17,18,["H1090"]],[18,20,["H1"]],[20,21,["H6370"]],[21,23,["H3478"]],[23,24,["H8085"]],[24,28,["H1121"]],[28,30,["H3290"]],[30,31,["H1961"]],[31,32,["H8147","H6240"]]]},{"k":1034,"v":[[0,2,["H1121"]],[2,4,["H3812"]],[4,5,["H7205"]],[5,6,["H3290"]],[6,7,["H1060"]],[7,9,["H8095"]],[9,11,["H3878"]],[11,13,["H3063"]],[13,15,["H3485"]],[15,17,["H2074"]]]},{"k":1035,"v":[[0,2,["H1121"]],[2,4,["H7354"]],[4,5,["H3130"]],[5,7,["H1144"]]]},{"k":1036,"v":[[0,3,["H1121"]],[3,5,["H1090"]],[5,6,["H7354"]],[6,7,["H8198"]],[7,8,["H1835"]],[8,10,["H5321"]]]},{"k":1037,"v":[[0,3,["H1121"]],[3,5,["H2153"]],[5,6,["H3812"]],[6,7,["H8198"]],[7,8,["H1410"]],[8,10,["H836"]],[10,11,["H428"]],[11,14,["H1121"]],[14,16,["H3290"]],[16,17,["H834"]],[17,19,["H3205"]],[19,23,["H6307"]]]},{"k":1038,"v":[[0,2,["H3290"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H3327"]],[5,7,["H1"]],[7,9,["H4471"]],[9,14,["H7153"]],[14,15,["H1931"]],[15,17,["H2275"]],[17,18,["H834","H8033"]],[18,19,["H85"]],[19,21,["H3327"]],[21,22,["H1481"]]]},{"k":1039,"v":[[0,3,["H3117"]],[3,5,["H3327"]],[5,6,["H1961"]],[6,8,["H3967"]],[8,10,["H8084"]],[10,11,["H8141"]]]},{"k":1040,"v":[[0,2,["H3327"]],[2,6,["H1478"]],[6,8,["H4191"]],[8,11,["H622"]],[11,12,["H413"]],[12,14,["H5971"]],[14,16,["H2205"]],[16,18,["H7649"]],[18,20,["H3117"]],[20,23,["H1121"]],[23,24,["H6215"]],[24,26,["H3290"]],[26,27,["H6912"]],[27,28,[]]]},{"k":1041,"v":[[0,2,["H428"]],[2,5,["H8435"]],[5,7,["H6215"]],[7,8,["H1931"]],[8,10,["H123"]]]},{"k":1042,"v":[[0,1,["H6215"]],[1,2,["H3947","(H853)"]],[2,4,["H802"]],[4,7,["H4480","H1323"]],[7,9,["H3667","(H853)"]],[9,10,["H5711"]],[10,12,["H1323"]],[12,14,["H356"]],[14,16,["H2850"]],[16,18,["H173"]],[18,20,["H1323"]],[20,22,["H6034"]],[22,24,["H1323"]],[24,26,["H6649"]],[26,28,["H2340"]]]},{"k":1043,"v":[[0,2,["H1315"]],[2,3,["H3458"]],[3,4,["H1323"]],[4,5,["H269"]],[5,7,["H5032"]]]},{"k":1044,"v":[[0,2,["H5711"]],[2,3,["H3205"]],[3,5,["H6215","(H853)"]],[5,6,["H464"]],[6,8,["H1315"]],[8,9,["H3205","(H853)"]],[9,10,["H7467"]]]},{"k":1045,"v":[[0,2,["H173"]],[2,3,["H3205","(H853)"]],[3,4,["H3266"]],[4,6,["H3281"]],[6,8,["H7141"]],[8,9,["H428"]],[9,12,["H1121"]],[12,14,["H6215"]],[14,15,["H834"]],[15,17,["H3205"]],[17,22,["H776"]],[22,24,["H3667"]]]},{"k":1046,"v":[[0,2,["H6215"]],[2,3,["H3947","(H853)"]],[3,5,["H802"]],[5,8,["H1121"]],[8,11,["H1323"]],[11,13,["H3605"]],[13,15,["H5315"]],[15,18,["H1004"]],[18,21,["H4735"]],[21,23,["H3605"]],[23,25,["H929"]],[25,27,["H3605"]],[27,29,["H7075"]],[29,30,["H834"]],[30,33,["H7408"]],[33,36,["H776"]],[36,38,["H3667"]],[38,40,["H1980"]],[40,41,["H413"]],[41,43,["H776"]],[43,46,["H4480","H6440"]],[46,49,["H251"]],[49,50,["H3290"]]]},{"k":1047,"v":[[0,1,["H3588"]],[1,3,["H7399"]],[3,4,["H1961"]],[4,6,["H7227"]],[6,10,["H4480","H3427"]],[10,11,["H3162"]],[11,14,["H776"]],[14,18,["H4033"]],[18,19,["H3201"]],[19,20,["H3808"]],[20,21,["H5375"]],[21,23,["H4480","H6440"]],[23,26,["H4735"]]]},{"k":1048,"v":[[0,2,["H3427"]],[2,3,["H6215"]],[3,5,["H2022"]],[5,6,["H8165"]],[6,7,["H6215"]],[7,9,["H123"]]]},{"k":1049,"v":[[0,2,["H428"]],[2,5,["H8435"]],[5,7,["H6215"]],[7,9,["H1"]],[9,12,["H123"]],[12,14,["H2022"]],[14,15,["H8165"]]]},{"k":1050,"v":[[0,1,["H428"]],[1,4,["H8034"]],[4,6,["H6215"]],[6,7,["H1121"]],[7,8,["H464"]],[8,10,["H1121"]],[10,12,["H5711"]],[12,14,["H802"]],[14,16,["H6215"]],[16,17,["H7467"]],[17,19,["H1121"]],[19,21,["H1315"]],[21,23,["H802"]],[23,25,["H6215"]]]},{"k":1051,"v":[[0,3,["H1121"]],[3,5,["H464"]],[5,6,["H1961"]],[6,7,["H8487"]],[7,8,["H201"]],[8,9,["H6825"]],[9,11,["H1609"]],[11,13,["H7073"]]]},{"k":1052,"v":[[0,2,["H8555"]],[2,3,["H1961"]],[3,4,["H6370"]],[4,6,["H464"]],[6,7,["H6215"]],[7,8,["H1121"]],[8,11,["H3205"]],[11,13,["H464","(H853)"]],[13,14,["H6002"]],[14,15,["H428"]],[15,18,["H1121"]],[18,20,["H5711"]],[20,21,["H6215"]],[21,22,["H802"]]]},{"k":1053,"v":[[0,2,["H428"]],[2,5,["H1121"]],[5,7,["H7467"]],[7,8,["H5184"]],[8,10,["H2226"]],[10,11,["H8048"]],[11,13,["H4199"]],[13,14,["H428"]],[14,15,["H1961"]],[15,17,["H1121"]],[17,19,["H1315"]],[19,20,["H6215"]],[20,21,["H802"]]]},{"k":1054,"v":[[0,2,["H428"]],[2,3,["H1961"]],[3,5,["H1121"]],[5,7,["H173"]],[7,9,["H1323"]],[9,11,["H6034"]],[11,13,["H1323"]],[13,15,["H6649"]],[15,16,["H6215"]],[16,17,["H802"]],[17,20,["H3205"]],[20,22,["H6215","(H853)"]],[22,23,["H3266"]],[23,25,["H3281"]],[25,27,["H7141"]]]},{"k":1055,"v":[[0,1,["H428"]],[1,3,["H441"]],[3,6,["H1121"]],[6,8,["H6215"]],[8,10,["H1121"]],[10,12,["H464"]],[12,14,["H1060"]],[14,17,["H6215"]],[17,18,["H441"]],[18,19,["H8487"]],[19,20,["H441"]],[20,21,["H201"]],[21,22,["H441"]],[22,23,["H6825"]],[23,24,["H441"]],[24,25,["H7073"]]]},{"k":1056,"v":[[0,1,["H441"]],[1,2,["H7141"]],[2,3,["H441"]],[3,4,["H1609"]],[4,6,["H441"]],[6,7,["H6002"]],[7,8,["H428"]],[8,11,["H441"]],[11,15,["H464"]],[15,18,["H776"]],[18,20,["H123"]],[20,21,["H428"]],[21,24,["H1121"]],[24,26,["H5711"]]]},{"k":1057,"v":[[0,2,["H428"]],[2,5,["H1121"]],[5,7,["H7467"]],[7,8,["H6215"]],[8,9,["H1121"]],[9,10,["H441"]],[10,11,["H5184"]],[11,12,["H441"]],[12,13,["H2226"]],[13,14,["H441"]],[14,15,["H8048"]],[15,16,["H441"]],[16,17,["H4199"]],[17,18,["H428"]],[18,21,["H441"]],[21,25,["H7467"]],[25,28,["H776"]],[28,30,["H123"]],[30,31,["H428"]],[31,34,["H1121"]],[34,36,["H1315"]],[36,37,["H6215"]],[37,38,["H802"]]]},{"k":1058,"v":[[0,2,["H428"]],[2,5,["H1121"]],[5,7,["H173"]],[7,8,["H6215"]],[8,9,["H802"]],[9,10,["H441"]],[10,11,["H3266"]],[11,12,["H441"]],[12,13,["H3281"]],[13,14,["H441"]],[14,15,["H7141"]],[15,16,["H428"]],[16,19,["H441"]],[19,23,["H173"]],[23,25,["H1323"]],[25,27,["H6034"]],[27,28,["H6215"]],[28,29,["H802"]]]},{"k":1059,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H6215"]],[6,7,["H1931"]],[7,9,["H123"]],[9,11,["H428"]],[11,14,["H441"]]]},{"k":1060,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H8165"]],[6,8,["H2752"]],[8,10,["H3427"]],[10,12,["H776"]],[12,13,["H3877"]],[13,15,["H7732"]],[15,17,["H6649"]],[17,19,["H6034"]]]},{"k":1061,"v":[[0,2,["H1787"]],[2,4,["H687"]],[4,6,["H1789"]],[6,7,["H428"]],[7,10,["H441"]],[10,13,["H2752"]],[13,15,["H1121"]],[15,17,["H8165"]],[17,20,["H776"]],[20,22,["H123"]]]},{"k":1062,"v":[[0,3,["H1121"]],[3,5,["H3877"]],[5,6,["H1961"]],[6,7,["H2753"]],[7,9,["H1967"]],[9,11,["H3877"]],[11,12,["H269"]],[12,14,["H8555"]]]},{"k":1063,"v":[[0,3,["H1121"]],[3,5,["H7732"]],[5,7,["H428"]],[7,8,["H5935"]],[8,10,["H4506"]],[10,12,["H5858"]],[12,13,["H8195"]],[13,15,["H208"]]]},{"k":1064,"v":[[0,2,["H428"]],[2,5,["H1121"]],[5,7,["H6649"]],[7,9,["H345"]],[9,11,["H6034"]],[11,12,["H1931"]],[12,15,["H6034"]],[15,16,["H834"]],[16,17,["H4672","(H853)"]],[17,19,["H3222"]],[19,22,["H4057"]],[22,25,["H7462","(H853)"]],[25,27,["H2543"]],[27,29,["H6649"]],[29,31,["H1"]]]},{"k":1065,"v":[[0,3,["H1121"]],[3,5,["H6034"]],[5,7,["H428"]],[7,8,["H1787"]],[8,10,["H173"]],[10,12,["H1323"]],[12,14,["H6034"]]]},{"k":1066,"v":[[0,2,["H428"]],[2,5,["H1121"]],[5,7,["H1787"]],[7,8,["H2533"]],[8,10,["H790"]],[10,12,["H3506"]],[12,14,["H3763"]]]},{"k":1067,"v":[[0,2,["H1121"]],[2,4,["H687"]],[4,6,["H428"]],[6,7,["H1092"]],[7,9,["H2190"]],[9,11,["H6130"]]]},{"k":1068,"v":[[0,2,["H1121"]],[2,4,["H1789"]],[4,6,["H428"]],[6,7,["H5780"]],[7,9,["H765"]]]},{"k":1069,"v":[[0,1,["H428"]],[1,4,["H441"]],[4,9,["H2752"]],[9,10,["H441"]],[10,11,["H3877"]],[11,12,["H441"]],[12,13,["H7732"]],[13,14,["H441"]],[14,15,["H6649"]],[15,16,["H441"]],[16,17,["H6034"]]]},{"k":1070,"v":[[0,1,["H441"]],[1,2,["H1787"]],[2,3,["H441"]],[3,4,["H687"]],[4,5,["H441"]],[5,6,["H1789"]],[6,7,["H428"]],[7,10,["H441"]],[10,14,["H2753"]],[14,17,["H441"]],[17,20,["H776"]],[20,22,["H8165"]]]},{"k":1071,"v":[[0,2,["H428"]],[2,5,["H4428"]],[5,6,["H834"]],[6,7,["H4427"]],[7,10,["H776"]],[10,12,["H123"]],[12,13,["H6440"]],[13,15,["H4427"]],[15,17,["H4428"]],[17,20,["H1121"]],[20,22,["H3478"]]]},{"k":1072,"v":[[0,2,["H1106"]],[2,4,["H1121"]],[4,6,["H1160"]],[6,7,["H4427"]],[7,9,["H123"]],[9,12,["H8034"]],[12,15,["H5892"]],[15,17,["H1838"]]]},{"k":1073,"v":[[0,2,["H1106"]],[2,3,["H4191"]],[3,5,["H3103"]],[5,7,["H1121"]],[7,9,["H2226"]],[9,11,["H4480","H1224"]],[11,12,["H4427"]],[12,15,["H8478"]]]},{"k":1074,"v":[[0,2,["H3103"]],[2,3,["H4191"]],[3,5,["H2367"]],[5,8,["H4480","H776"]],[8,10,["H8489"]],[10,11,["H4427"]],[11,14,["H8478"]]]},{"k":1075,"v":[[0,2,["H2367"]],[2,3,["H4191"]],[3,5,["H1908"]],[5,7,["H1121"]],[7,9,["H911"]],[9,11,["H5221","(H853)"]],[11,12,["H4080"]],[12,15,["H7704"]],[15,17,["H4124"]],[17,18,["H4427"]],[18,21,["H8478"]],[21,24,["H8034"]],[24,27,["H5892"]],[27,29,["H5762"]]]},{"k":1076,"v":[[0,2,["H1908"]],[2,3,["H4191"]],[3,5,["H8072"]],[5,7,["H4480","H4957"]],[7,8,["H4427"]],[8,11,["H8478"]]]},{"k":1077,"v":[[0,2,["H8072"]],[2,3,["H4191"]],[3,5,["H7586"]],[5,7,["H4480","H7344"]],[7,10,["H5104"]],[10,11,["H4427"]],[11,14,["H8478"]]]},{"k":1078,"v":[[0,2,["H7586"]],[2,3,["H4191"]],[3,5,["H1177"]],[5,7,["H1121"]],[7,9,["H5907"]],[9,10,["H4427"]],[10,13,["H8478"]]]},{"k":1079,"v":[[0,2,["H1177"]],[2,4,["H1121"]],[4,6,["H5907"]],[6,7,["H4191"]],[7,9,["H1924"]],[9,10,["H4427"]],[10,13,["H8478"]],[13,16,["H8034"]],[16,19,["H5892"]],[19,21,["H6464"]],[21,24,["H802"]],[24,25,["H8034"]],[25,27,["H4105"]],[27,29,["H1323"]],[29,31,["H4308"]],[31,33,["H1323"]],[33,35,["H4314"]]]},{"k":1080,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H441"]],[8,12,["H6215"]],[12,16,["H4940"]],[16,19,["H4725"]],[19,22,["H8034"]],[22,23,["H441"]],[23,24,["H8555"]],[24,25,["H441"]],[25,26,["H5933"]],[26,27,["H441"]],[27,28,["H3509"]]]},{"k":1081,"v":[[0,1,["H441"]],[1,2,["H173"]],[2,3,["H441"]],[3,4,["H425"]],[4,5,["H441"]],[5,6,["H6373"]]]},{"k":1082,"v":[[0,1,["H441"]],[1,2,["H7073"]],[2,3,["H441"]],[3,4,["H8487"]],[4,5,["H441"]],[5,6,["H4014"]]]},{"k":1083,"v":[[0,1,["H441"]],[1,2,["H4025"]],[2,3,["H441"]],[3,4,["H5902"]],[4,5,["H428"]],[5,8,["H441"]],[8,10,["H123"]],[10,14,["H4186"]],[14,17,["H776"]],[17,20,["H272"]],[20,21,["H1931"]],[21,23,["H6215"]],[23,25,["H1"]],[25,28,["H123"]]]},{"k":1084,"v":[[0,2,["H3290"]],[2,3,["H3427"]],[3,6,["H776"]],[6,9,["H1"]],[9,12,["H4033"]],[12,15,["H776"]],[15,17,["H3667"]]]},{"k":1085,"v":[[0,1,["H428"]],[1,4,["H8435"]],[4,6,["H3290"]],[6,7,["H3130"]],[7,9,["H7651","H6240"]],[9,10,["H8141"]],[10,11,["H1121"]],[11,12,["H1961"]],[12,13,["H7462"]],[13,15,["H6629"]],[15,16,["H854"]],[16,18,["H251"]],[18,21,["H5288"]],[21,23,["H854"]],[23,25,["H1121"]],[25,27,["H1090"]],[27,29,["H854"]],[29,31,["H1121"]],[31,33,["H2153"]],[33,35,["H1"]],[35,36,["H802"]],[36,38,["H3130"]],[38,39,["H935"]],[39,40,["H413"]],[40,42,["H1"]],[42,43,["(H853)"]],[43,44,["H7451"]],[44,45,["H1681"]]]},{"k":1086,"v":[[0,2,["H3478"]],[2,3,["H157","(H853)"]],[3,4,["H3130"]],[4,7,["H4480","H3605"]],[7,9,["H1121"]],[9,10,["H3588"]],[10,11,["H1931"]],[11,14,["H1121"]],[14,18,["H2208"]],[18,21,["H6213"]],[21,24,["H3801"]],[24,27,["H6446"]]]},{"k":1087,"v":[[0,4,["H251"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,8,["H1"]],[8,9,["H157"]],[9,13,["H4480","H3605"]],[13,15,["H251"]],[15,17,["H8130"]],[17,20,["H3201"]],[20,21,["H3808"]],[21,22,["H1696"]],[22,23,["H7965"]],[23,25,[]]]},{"k":1088,"v":[[0,2,["H3130"]],[2,3,["H2492"]],[3,5,["H2472"]],[5,8,["H5046"]],[8,11,["H251"]],[11,14,["H8130"]],[14,16,["H5750"]],[16,18,["H3254"]]]},{"k":1089,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H8085"]],[6,9,["H4994"]],[9,10,["H2088"]],[10,11,["H2472"]],[11,12,["H834"]],[12,15,["H2492"]]]},{"k":1090,"v":[[0,2,["H2009"]],[2,3,["H587"]],[3,5,["H481"]],[5,6,["H485"]],[6,7,["H8432"]],[7,9,["H7704"]],[9,11,["H2009"]],[11,13,["H485"]],[13,14,["H6965"]],[14,16,["H1571"]],[16,18,["H5324"]],[18,20,["H2009"]],[20,22,["H485"]],[22,25,["H5437"]],[25,28,["H7812"]],[28,31,["H485"]]]},{"k":1091,"v":[[0,3,["H251"]],[3,4,["H559"]],[4,10,["H4427","H4427"]],[10,11,["H5921"]],[11,13,["H518"]],[13,18,["H4910","H4910"]],[18,23,["H8130"]],[23,25,["H5750"]],[25,27,["H3254"]],[27,28,["H5921"]],[28,30,["H2472"]],[30,32,["H5921"]],[32,34,["H1697"]]]},{"k":1092,"v":[[0,3,["H2492"]],[3,4,["H5750"]],[4,5,["H312"]],[5,6,["H2472"]],[6,8,["H5608"]],[8,11,["H251"]],[11,13,["H559"]],[13,14,["H2009"]],[14,17,["H2492"]],[17,19,["H2472"]],[19,20,["H5750"]],[20,22,["H2009"]],[22,24,["H8121"]],[24,27,["H3394"]],[27,30,["H259","H6240"]],[30,31,["H3556"]],[31,33,["H7812"]],[33,35,[]]]},{"k":1093,"v":[[0,3,["H5608"]],[3,5,["H413"]],[5,7,["H1"]],[7,9,["H413"]],[9,11,["H251"]],[11,14,["H1"]],[14,15,["H1605"]],[15,18,["H559"]],[18,21,["H4100"]],[21,23,["H2088"]],[23,24,["H2472"]],[24,25,["H834"]],[25,28,["H2492"]],[28,30,["H589"]],[30,33,["H517"]],[33,36,["H251"]],[36,38,["H935","H935"]],[38,42,["H7812"]],[42,47,["H776"]]]},{"k":1094,"v":[[0,3,["H251"]],[3,4,["H7065"]],[4,8,["H1"]],[8,9,["H8104","(H853)"]],[9,11,["H1697"]]]},{"k":1095,"v":[[0,3,["H251"]],[3,4,["H1980"]],[4,6,["H7462","(H853)"]],[6,8,["H1"]],[8,9,["H6629"]],[9,11,["H7927"]]]},{"k":1096,"v":[[0,2,["H3478"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,7,["H3808"]],[7,9,["H251"]],[9,10,["H7462"]],[10,14,["H7927"]],[14,15,["H1980"]],[15,19,["H7971"]],[19,21,["H413"]],[21,25,["H559"]],[25,28,["H2009"]],[28,30,[]]]},{"k":1097,"v":[[0,3,["H559"]],[3,6,["H1980"]],[6,9,["H4994"]],[9,10,["H7200"]],[10,11,["(H853)"]],[11,14,["H7965"]],[14,17,["H251"]],[17,19,["H7965"]],[19,22,["H6629"]],[22,24,["H7725"]],[24,26,["H1697"]],[26,30,["H7971"]],[30,35,["H4480","H6010"]],[35,37,["H2275"]],[37,40,["H935"]],[40,42,["H7927"]]]},{"k":1098,"v":[[0,4,["H376"]],[4,5,["H4672"]],[5,8,["H2009"]],[8,11,["H8582"]],[11,14,["H7704"]],[14,17,["H376"]],[17,18,["H7592"]],[18,20,["H559"]],[20,21,["H4100"]],[21,22,["H1245"]],[22,23,[]]]},{"k":1099,"v":[[0,3,["H559"]],[3,4,["H595"]],[4,5,["H1245","(H853)"]],[5,7,["H251"]],[7,8,["H5046"]],[8,12,["H4994"]],[12,13,["H375"]],[13,14,["H1992"]],[14,15,["H7462"]],[15,17,[]]]},{"k":1100,"v":[[0,3,["H376"]],[3,4,["H559"]],[4,7,["H5265"]],[7,8,["H4480","H2088"]],[8,9,["H3588"]],[9,11,["H8085"]],[11,13,["H559"]],[13,16,["H1980"]],[16,18,["H1886"]],[18,20,["H3130"]],[20,21,["H1980"]],[21,22,["H310"]],[22,24,["H251"]],[24,26,["H4672"]],[26,29,["H1886"]]]},{"k":1101,"v":[[0,4,["H7200"]],[4,7,["H4480","H7350"]],[7,9,["H2962"]],[9,12,["H7126"]],[12,13,["H413"]],[13,16,["H5230"]],[16,20,["H4191"]],[20,21,[]]]},{"k":1102,"v":[[0,3,["H559"]],[3,4,["H376"]],[4,5,["H413"]],[5,6,["H251"]],[6,7,["H2009"]],[7,8,["H1976"]],[8,9,["H1167","H2472"]],[9,10,["H935"]]]},{"k":1103,"v":[[0,1,["H1980"]],[1,2,["H6258"]],[2,7,["H2026"]],[7,10,["H7993"]],[10,13,["H259"]],[13,14,["H953"]],[14,18,["H559"]],[18,20,["H7451"]],[20,21,["H2416"]],[21,23,["H398"]],[23,28,["H7200"]],[28,29,["H4100"]],[29,31,["H1961"]],[31,34,["H2472"]]]},{"k":1104,"v":[[0,2,["H7205"]],[2,3,["H8085"]],[3,7,["H5337"]],[7,12,["H4480","H3027"]],[12,14,["H559"]],[14,17,["H3808"]],[17,18,["H5221"]],[18,19,[]]]},{"k":1105,"v":[[0,2,["H7205"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H8210"]],[6,7,["H408"]],[7,8,["H1818"]],[8,10,["H7993"]],[10,12,["H413"]],[12,13,["H2088"]],[13,14,["H953"]],[14,15,["H834"]],[15,19,["H4057"]],[19,21,["H7971"]],[21,22,["H408"]],[22,23,["H3027"]],[23,26,["H4616"]],[26,29,["H5337"]],[29,34,["H4480","H3027"]],[34,36,["H7725"]],[36,38,["H413"]],[38,40,["H1"]],[40,41,[]]]},{"k":1106,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H3130"]],[7,9,["H935"]],[9,10,["H413"]],[10,12,["H251"]],[12,15,["H6584","(H853)"]],[15,16,["H3130"]],[16,18,["(H853)"]],[18,20,["H3801"]],[20,21,["(H853)"]],[21,22,["H3801"]],[22,25,["H6446"]],[25,26,["H834"]],[26,28,["H5921"]],[28,29,[]]]},{"k":1107,"v":[[0,3,["H3947"]],[3,6,["H7993"]],[6,10,["H953"]],[10,13,["H953"]],[13,15,["H7386"]],[15,18,["H369"]],[18,19,["H4325"]],[19,21,[]]]},{"k":1108,"v":[[0,4,["H3427"]],[4,6,["H398"]],[6,7,["H3899"]],[7,11,["H5375"]],[11,13,["H5869"]],[13,15,["H7200"]],[15,17,["H2009"]],[17,19,["H736"]],[19,21,["H3459"]],[21,22,["H935"]],[22,24,["H4480","H1568"]],[24,27,["H1581"]],[27,28,["H5375"]],[28,29,["H5219"]],[29,31,["H6875"]],[31,33,["H3910"]],[33,34,["H1980"]],[34,38,["H3381"]],[38,40,["H4714"]]]},{"k":1109,"v":[[0,2,["H3063"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H251"]],[6,7,["H4100"]],[7,8,["H1215"]],[8,11,["H3588"]],[11,13,["H2026","(H853)"]],[13,15,["H251"]],[15,17,["H3680","(H853)"]],[17,19,["H1818"]]]},{"k":1110,"v":[[0,1,["H1980"]],[1,5,["H4376"]],[5,9,["H3459"]],[9,12,["H408"]],[12,14,["H3027"]],[14,15,["H1961"]],[15,18,["H3588"]],[18,19,["H1931"]],[19,22,["H251"]],[22,25,["H1320"]],[25,28,["H251"]],[28,30,["H8085"]]]},{"k":1111,"v":[[0,4,["H5674"]],[4,5,["H376","H4084"]],[5,6,["H5503"]],[6,9,["H4900"]],[9,12,["H5927","(H853)"]],[12,13,["H3130"]],[13,15,["H4480"]],[15,17,["H953"]],[17,19,["H4376","(H853)"]],[19,20,["H3130"]],[20,23,["H3459"]],[23,25,["H6242"]],[25,28,["H3701"]],[28,31,["H935","(H853)"]],[31,32,["H3130"]],[32,34,["H4714"]]]},{"k":1112,"v":[[0,2,["H7205"]],[2,3,["H7725"]],[3,4,["H413"]],[4,6,["H953"]],[6,8,["H2009"]],[8,9,["H3130"]],[9,11,["H369"]],[11,14,["H953"]],[14,17,["H7167","(H853)"]],[17,19,["H899"]]]},{"k":1113,"v":[[0,3,["H7725"]],[3,4,["H413"]],[4,6,["H251"]],[6,8,["H559"]],[8,10,["H3206"]],[10,12,["H369"]],[12,14,["H589"]],[14,15,["H575"]],[15,17,["H589"]],[17,18,["H935"]]]},{"k":1114,"v":[[0,3,["H3947","(H853)"]],[3,4,["H3130"]],[4,5,["H3801"]],[5,7,["H7819"]],[7,9,["H8163"]],[9,12,["H5795"]],[12,14,["H2881","(H853)"]],[14,16,["H3801"]],[16,19,["H1818"]]]},{"k":1115,"v":[[0,3,["H7971","(H853)"]],[3,5,["H3801"]],[5,8,["H6446"]],[8,11,["H935"]],[11,13,["H413"]],[13,15,["H1"]],[15,17,["H559"]],[17,18,["H2063"]],[18,21,["H4672"]],[21,22,["H5234"]],[22,23,["H4994"]],[23,25,["H1931"]],[25,28,["H1121"]],[28,29,["H3801"]],[29,30,["H518"]],[30,31,["H3808"]]]},{"k":1116,"v":[[0,3,["H5234"]],[3,6,["H559"]],[6,10,["H1121"]],[10,11,["H3801"]],[11,13,["H7451"]],[13,14,["H2416"]],[14,16,["H398"]],[16,18,["H3130"]],[18,24,["H2963","H2963"]]]},{"k":1117,"v":[[0,2,["H3290"]],[2,3,["H7167"]],[3,5,["H8071"]],[5,7,["H7760"]],[7,8,["H8242"]],[8,11,["H4975"]],[11,13,["H56"]],[13,14,["H5921"]],[14,16,["H1121"]],[16,17,["H7227"]],[17,18,["H3117"]]]},{"k":1118,"v":[[0,2,["H3605"]],[2,4,["H1121"]],[4,6,["H3605"]],[6,8,["H1323"]],[8,10,["H6965"]],[10,12,["H5162"]],[12,16,["H3985"]],[16,19,["H5162"]],[19,22,["H559"]],[22,23,["H3588"]],[23,27,["H3381"]],[27,30,["H7585"]],[30,31,["H413"]],[31,33,["H1121"]],[33,34,["H57"]],[34,37,["H1"]],[37,38,["H1058"]],[38,40,[]]]},{"k":1119,"v":[[0,3,["H4092"]],[3,4,["H4376"]],[4,6,["H413"]],[6,7,["H4714"]],[7,9,["H6318"]],[9,11,["H5631"]],[11,13,["H6547"]],[13,15,["H8269"]],[15,18,["H2876"]]]},{"k":1120,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,8,["H6256"]],[8,10,["H3063"]],[10,12,["H3381"]],[12,13,["H4480","H854"]],[13,15,["H251"]],[15,18,["H5186"]],[18,19,["H5704"]],[19,21,["H376"]],[21,22,["H5726"]],[22,24,["H8034"]],[24,26,["H2437"]]]},{"k":1121,"v":[[0,2,["H3063"]],[2,3,["H7200"]],[3,4,["H8033"]],[4,6,["H1323"]],[6,9,["H376"]],[9,10,["H3669"]],[10,12,["H8034"]],[12,14,["H7770"]],[14,17,["H3947"]],[17,21,["H935"]],[21,22,["H413"]],[22,23,[]]]},{"k":1122,"v":[[0,3,["H2029"]],[3,5,["H3205"]],[5,7,["H1121"]],[7,10,["H7121","(H853)"]],[10,12,["H8034"]],[12,13,["H6147"]]]},{"k":1123,"v":[[0,3,["H2029"]],[3,4,["H5750"]],[4,6,["H3205"]],[6,8,["H1121"]],[8,11,["H7121","(H853)"]],[11,13,["H8034"]],[13,14,["H209"]]]},{"k":1124,"v":[[0,4,["H5750"]],[4,5,["H3254"]],[5,7,["H3205"]],[7,9,["H1121"]],[9,11,["H7121","(H853)"]],[11,13,["H8034"]],[13,14,["H7956"]],[14,17,["H1961"]],[17,19,["H3580"]],[19,22,["H3205"]],[22,23,[]]]},{"k":1125,"v":[[0,2,["H3063"]],[2,3,["H3947"]],[3,5,["H802"]],[5,7,["H6147"]],[7,9,["H1060"]],[9,11,["H8034"]],[11,13,["H8559"]]]},{"k":1126,"v":[[0,2,["H6147"]],[2,3,["H3063"]],[3,4,["H1060"]],[4,5,["H1961"]],[5,6,["H7451"]],[6,9,["H5869"]],[9,12,["H3068"]],[12,15,["H3068"]],[15,16,["H4191"]],[16,17,[]]]},{"k":1127,"v":[[0,2,["H3063"]],[2,3,["H559"]],[3,5,["H209"]],[5,7,["H935"]],[7,8,["H413"]],[8,10,["H251"]],[10,11,["H802"]],[11,13,["H2992"]],[13,17,["H6965"]],[17,18,["H2233"]],[18,21,["H251"]]]},{"k":1128,"v":[[0,2,["H209"]],[2,3,["H3045"]],[3,4,["H3588"]],[4,6,["H2233"]],[6,8,["H3808"]],[8,9,["H1961"]],[9,15,["H1961"]],[15,16,["H518"]],[16,19,["H935"]],[19,20,["H413"]],[20,22,["H251"]],[22,23,["H802"]],[23,26,["H7843"]],[26,30,["H776"]],[30,31,["H1115"]],[31,35,["H5414"]],[35,36,["H2233"]],[36,39,["H251"]]]},{"k":1129,"v":[[0,4,["H834"]],[4,6,["H6213"]],[6,7,["H7489","H5869"]],[7,9,["H3068"]],[9,12,["H4191"]],[12,14,["H1571"]]]},{"k":1130,"v":[[0,2,["H559"]],[2,3,["H3063"]],[3,5,["H8559"]],[5,9,["H3618"]],[9,10,["H3427"]],[10,12,["H490"]],[12,15,["H1"]],[15,16,["H1004"]],[16,17,["H5704"]],[17,18,["H7956"]],[18,20,["H1121"]],[20,22,["H1431"]],[22,23,["H3588"]],[23,25,["H559"]],[25,27,["H6435"]],[27,28,["H1931"]],[28,29,["H4191"]],[29,30,["H1571"]],[30,33,["H251"]],[33,36,["H8559"]],[36,37,["H1980"]],[37,39,["H3427"]],[39,42,["H1"]],[42,43,["H1004"]]]},{"k":1131,"v":[[0,5,["H7235","H3117"]],[5,7,["H1323"]],[7,9,["H7770"]],[9,10,["H3063"]],[10,11,["H802"]],[11,12,["H4191"]],[12,14,["H3063"]],[14,16,["H5162"]],[16,19,["H5927"]],[19,20,["H5921"]],[20,22,["H1494","H6629"]],[22,24,["H8553"]],[24,25,["H1931"]],[25,28,["H7453"]],[28,29,["H2437"]],[29,31,["H5726"]]]},{"k":1132,"v":[[0,4,["H5046"]],[4,5,["H8559"]],[5,6,["H559"]],[6,7,["H2009"]],[7,11,["H2524"]],[11,13,["H5927"]],[13,15,["H8553"]],[15,17,["H1494"]],[17,19,["H6629"]]]},{"k":1133,"v":[[0,3,["H5493"]],[3,5,["H491"]],[5,6,["H899"]],[6,8,["H4480","H5921"]],[8,11,["H3680"]],[11,15,["H6809"]],[15,18,["H5968"]],[18,20,["H3427"]],[20,23,["H5879"]],[23,24,["H6607"]],[24,25,["H834"]],[25,27,["H5921"]],[27,29,["H1870"]],[29,31,["H8553"]],[31,32,["H3588"]],[32,34,["H7200"]],[34,35,["H3588"]],[35,36,["H7956"]],[36,38,["H1431"]],[38,40,["H1931"]],[40,42,["H3808"]],[42,43,["H5414"]],[43,47,["H802"]]]},{"k":1134,"v":[[0,2,["H3063"]],[2,3,["H7200"]],[3,6,["H2803"]],[6,11,["H2181"]],[11,12,["H3588"]],[12,15,["H3680"]],[15,17,["H6440"]]]},{"k":1135,"v":[[0,3,["H5186"]],[3,4,["H413"]],[4,6,["H413"]],[6,8,["H1870"]],[8,10,["H559"]],[10,12,["H3051"]],[12,15,["H4994"]],[15,19,["H935"]],[19,20,["H413"]],[20,22,["H3588"]],[22,24,["H3045"]],[24,25,["H3808"]],[25,26,["H3588"]],[26,27,["H1931"]],[27,32,["H3618"]],[32,35,["H559"]],[35,36,["H4100"]],[36,39,["H5414"]],[39,41,["H3588"]],[41,45,["H935"]],[45,46,["H413"]],[46,47,[]]]},{"k":1136,"v":[[0,3,["H559"]],[3,4,["H595"]],[4,6,["H7971"]],[6,9,["H1423","H5795"]],[9,10,["H4480"]],[10,12,["H6629"]],[12,15,["H559"]],[15,18,["H5414"]],[18,21,["H6162"]],[21,22,["H5704"]],[22,24,["H7971"]],[24,25,[]]]},{"k":1137,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,5,["H6162"]],[5,8,["H5414"]],[8,12,["H559"]],[12,14,["H2368"]],[14,17,["H6616"]],[17,20,["H4294"]],[20,21,["H834"]],[21,25,["H3027"]],[25,28,["H5414"]],[28,33,["H935"]],[33,34,["H413"]],[34,38,["H2029"]],[38,40,[]]]},{"k":1138,"v":[[0,3,["H6965"]],[3,6,["H1980"]],[6,9,["H5493"]],[9,11,["H6809"]],[11,12,["H4480","H5921"]],[12,16,["H3847"]],[16,18,["H899"]],[18,21,["H491"]]]},{"k":1139,"v":[[0,2,["H3063"]],[2,3,["H7971","(H853)"]],[3,5,["H1423","H5795"]],[5,8,["H3027"]],[8,11,["H7453"]],[11,13,["H5726"]],[13,15,["H3947"]],[15,17,["H6162"]],[17,20,["H802"]],[20,21,["H4480","H3027"]],[21,24,["H4672"]],[24,26,["H3808"]]]},{"k":1140,"v":[[0,3,["H7592","(H853)"]],[3,5,["H376"]],[5,8,["H4725"]],[8,9,["H559"]],[9,10,["H346"]],[10,13,["H6948"]],[13,14,["H1931"]],[14,16,["H5879"]],[16,17,["H5921"]],[17,20,["H1870"]],[20,23,["H559"]],[23,25,["H1961"]],[25,26,["H3808"]],[26,27,["H6948"]],[27,29,["H2088"]],[29,30,[]]]},{"k":1141,"v":[[0,3,["H7725"]],[3,4,["H413"]],[4,5,["H3063"]],[5,7,["H559"]],[7,9,["H3808"]],[9,10,["H4672"]],[10,13,["H1571"]],[13,15,["H376"]],[15,18,["H4725"]],[18,19,["H559"]],[19,22,["H1961"]],[22,23,["H3808"]],[23,24,["H6948"]],[24,26,["H2088"]],[26,27,[]]]},{"k":1142,"v":[[0,2,["H3063"]],[2,3,["H559"]],[3,6,["H3947"]],[6,10,["H6435"]],[10,12,["H1961"]],[12,13,["H937"]],[13,14,["H2009"]],[14,16,["H7971"]],[16,17,["H2088"]],[17,18,["H1423"]],[18,20,["H859"]],[20,22,["H3808"]],[22,23,["H4672"]],[23,24,[]]]},{"k":1143,"v":[[0,5,["H1961"]],[5,7,["H4480","H7969"]],[7,8,["H2320"]],[8,13,["H5046"]],[13,14,["H3063"]],[14,15,["H559"]],[15,16,["H8559"]],[16,20,["H3618"]],[20,24,["H2181"]],[24,26,["H1571"]],[26,27,["H2009"]],[27,31,["H2030"]],[31,33,["H2183"]],[33,35,["H3063"]],[35,36,["H559"]],[36,39,["H3318"]],[39,44,["H8313"]]]},{"k":1144,"v":[[0,2,["H1931"]],[2,5,["H3318"]],[5,6,["H1931"]],[6,7,["H7971"]],[7,8,["H413"]],[8,12,["H2524"]],[12,13,["H559"]],[13,16,["H376"]],[16,17,["H834"]],[17,18,["H428"]],[18,21,["H595"]],[21,23,["H2030"]],[23,26,["H559"]],[26,27,["H5234"]],[27,30,["H4994"]],[30,31,["H4310"]],[31,33,["H428"]],[33,35,["H2858"]],[35,37,["H6616"]],[37,39,["H4294"]]]},{"k":1145,"v":[[0,2,["H3063"]],[2,3,["H5234"]],[3,6,["H559"]],[6,11,["H6663"]],[11,12,["H4480"]],[12,14,["H3588"]],[14,15,["H5921","H3651"]],[15,17,["H5414"]],[17,19,["H3808"]],[19,21,["H7956"]],[21,23,["H1121"]],[23,26,["H3045"]],[26,28,["H3254"]],[28,29,["H3808"]],[29,30,["H5750"]]]},{"k":1146,"v":[[0,5,["H1961"]],[5,8,["H6256"]],[8,11,["H3205"]],[11,13,["H2009"]],[13,14,["H8380"]],[14,18,["H990"]]]},{"k":1147,"v":[[0,5,["H1961"]],[5,8,["H3205"]],[8,13,["H5414"]],[13,15,["H3027"]],[15,18,["H3205"]],[18,19,["H3947"]],[19,21,["H7194"]],[21,22,["H5921"]],[22,24,["H3027"]],[24,27,["H8144"]],[27,28,["H559"]],[28,29,["H2088"]],[29,31,["H3318"]],[31,32,["H7223"]]]},{"k":1148,"v":[[0,5,["H1961"]],[5,9,["H7725"]],[9,11,["H3027"]],[11,13,["H2009"]],[13,15,["H251"]],[15,17,["H3318"]],[17,20,["H559"]],[20,21,["H4100"]],[21,25,["H6555"]],[25,27,["H6556"]],[27,29,["H5921"]],[29,33,["H8034"]],[33,35,["H7121"]],[35,36,["H6557"]]]},{"k":1149,"v":[[0,2,["H310"]],[2,4,["H3318"]],[4,6,["H251"]],[6,7,["H834"]],[7,11,["H8144"]],[11,12,["H5921"]],[12,14,["H3027"]],[14,17,["H8034"]],[17,19,["H7121"]],[19,20,["H2226"]]]},{"k":1150,"v":[[0,2,["H3130"]],[2,5,["H3381"]],[5,7,["H4714"]],[7,9,["H6318"]],[9,11,["H5631"]],[11,13,["H6547"]],[13,14,["H8269"]],[14,17,["H2876"]],[17,19,["H376","H4713"]],[19,20,["H7069"]],[20,24,["H4480","H3027"]],[24,27,["H3459"]],[27,28,["H834"]],[28,32,["H3381"]],[32,33,["H8033"]]]},{"k":1151,"v":[[0,3,["H3068"]],[3,4,["H1961"]],[4,5,["H854"]],[5,6,["H3130"]],[6,9,["H1961"]],[9,11,["H6743"]],[11,12,["H376"]],[12,15,["H1961"]],[15,18,["H1004"]],[18,21,["H113"]],[21,23,["H4713"]]]},{"k":1152,"v":[[0,3,["H113"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,7,["H3068"]],[7,9,["H854"]],[9,14,["H3068"]],[14,16,["H3605"]],[16,17,["H834"]],[17,18,["H1931"]],[18,19,["H6213"]],[19,21,["H6743"]],[21,24,["H3027"]]]},{"k":1153,"v":[[0,2,["H3130"]],[2,3,["H4672"]],[3,4,["H2580"]],[4,7,["H5869"]],[7,10,["H8334"]],[10,16,["H6485"]],[16,17,["H5921"]],[17,19,["H1004"]],[19,21,["H3605"]],[21,24,["H3426"]],[24,26,["H5414"]],[26,29,["H3027"]]]},{"k":1154,"v":[[0,5,["H1961"]],[5,8,["H4480","H227"]],[8,14,["H6485","(H853)"]],[14,17,["H1004"]],[17,19,["H5921"]],[19,20,["H3605"]],[20,21,["H834"]],[21,23,["H3426"]],[23,26,["H3068"]],[26,27,["H1288","(H853)"]],[27,29,["H4713"]],[29,30,["H1004"]],[30,33,["H1558","H3130"]],[33,36,["H1293"]],[36,39,["H3068"]],[39,40,["H1961"]],[40,42,["H3605"]],[42,43,["H834"]],[43,45,["H3426"]],[45,48,["H1004"]],[48,52,["H7704"]]]},{"k":1155,"v":[[0,3,["H5800"]],[3,4,["H3605"]],[4,5,["H834"]],[5,9,["H3130"]],[9,10,["H3027"]],[10,13,["H3045"]],[13,14,["H3808"]],[14,15,["H3972"]],[15,17,["H854"]],[17,18,["H3588","H518"]],[18,20,["H3899"]],[20,21,["H834"]],[21,22,["H1931"]],[22,24,["H398"]],[24,26,["H3130"]],[26,27,["H1961"]],[27,29,["H3303","H8389"]],[29,32,["H3303"]],[32,33,["H4758"]]]},{"k":1156,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H428"]],[7,8,["H1697"]],[8,11,["H113"]],[11,12,["H802"]],[12,13,["H5375","(H853)"]],[13,15,["H5869"]],[15,16,["H413"]],[16,17,["H3130"]],[17,20,["H559"]],[20,21,["H7901"]],[21,22,["H5973"]],[22,23,[]]]},{"k":1157,"v":[[0,3,["H3985"]],[3,5,["H559"]],[5,6,["H413"]],[6,8,["H113"]],[8,9,["H802"]],[9,10,["H2005"]],[10,12,["H113"]],[12,13,["H3045"]],[13,14,["H3808"]],[14,15,["H4100"]],[15,17,["H854"]],[17,21,["H1004"]],[21,25,["H5414"]],[25,26,["H3605"]],[26,27,["H834"]],[27,29,["H3426"]],[29,32,["H3027"]]]},{"k":1158,"v":[[0,3,["H369"]],[3,4,["H1419"]],[4,6,["H2088"]],[6,7,["H1004"]],[7,8,["H4480"]],[8,10,["H3808"]],[10,14,["H2820"]],[14,16,["H3972"]],[16,17,["H4480"]],[17,19,["H3588","H518"]],[19,21,["H834"]],[21,22,["H859"]],[22,25,["H802"]],[25,26,["H349"]],[26,30,["H6213"]],[30,31,["H2063"]],[31,32,["H1419"]],[32,33,["H7451"]],[33,35,["H2398"]],[35,37,["H430"]]]},{"k":1159,"v":[[0,5,["H1961"]],[5,8,["H1696"]],[8,9,["H413"]],[9,10,["H3130"]],[10,11,["H3117"]],[11,13,["H3117"]],[13,16,["H8085"]],[16,17,["H3808"]],[17,18,["H413"]],[18,21,["H7901"]],[21,22,["H681"]],[22,26,["H1961"]],[26,27,["H5973"]],[27,28,[]]]},{"k":1160,"v":[[0,5,["H1961"]],[5,7,["H2088"]],[7,8,["H3117"]],[8,11,["H935"]],[11,14,["H1004"]],[14,16,["H6213"]],[16,18,["H4399"]],[18,22,["H369","H376"]],[22,25,["H4480","H376"]],[25,28,["H1004"]],[28,29,["H8033"]],[29,30,["H1004"]]]},{"k":1161,"v":[[0,3,["H8610"]],[3,7,["H899"]],[7,8,["H559"]],[8,9,["H7901"]],[9,10,["H5973"]],[10,14,["H5800"]],[14,16,["H899"]],[16,19,["H3027"]],[19,21,["H5127"]],[21,23,["H3318"]],[23,25,["H2351"]]]},{"k":1162,"v":[[0,5,["H1961"]],[5,8,["H7200"]],[8,9,["H3588"]],[9,12,["H5800"]],[12,14,["H899"]],[14,17,["H3027"]],[17,20,["H5127"]],[20,21,["H2351"]]]},{"k":1163,"v":[[0,3,["H7121"]],[3,6,["H376"]],[6,9,["H1004"]],[9,11,["H559"]],[11,14,["H559"]],[14,15,["H7200"]],[15,19,["H935"]],[19,21,["H376","H5680"]],[21,25,["H6711"]],[25,29,["H935"]],[29,30,["H413"]],[30,33,["H7901"]],[33,34,["H5973"]],[34,38,["H7121"]],[38,41,["H1419"]],[41,42,["H6963"]]]},{"k":1164,"v":[[0,5,["H1961"]],[5,8,["H8085"]],[8,9,["H3588"]],[9,12,["H7311"]],[12,14,["H6963"]],[14,16,["H7121"]],[16,19,["H5800"]],[19,21,["H899"]],[21,22,["H681"]],[22,25,["H5127"]],[25,27,["H3318"]],[27,29,["H2351"]]]},{"k":1165,"v":[[0,4,["H5117"]],[4,6,["H899"]],[6,7,["H681"]],[7,9,["H5704"]],[9,11,["H113"]],[11,12,["H935","H413"]],[12,13,["H1004"]]]},{"k":1166,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,8,["H428"]],[8,9,["H1697"]],[9,10,["H559"]],[10,12,["H5680"]],[12,13,["H5650"]],[13,14,["H834"]],[14,17,["H935"]],[17,21,["H935"]],[21,22,["H413"]],[22,25,["H6711"]],[25,26,[]]]},{"k":1167,"v":[[0,5,["H1961"]],[5,9,["H7311"]],[9,11,["H6963"]],[11,13,["H7121"]],[13,16,["H5800"]],[16,18,["H899"]],[18,19,["H681"]],[19,22,["H5127"]],[22,23,["H2351"]]]},{"k":1168,"v":[[0,5,["H1961"]],[5,8,["H113"]],[8,9,["H8085","(H853)"]],[9,11,["H1697"]],[11,14,["H802"]],[14,15,["H834"]],[15,17,["H1696"]],[17,18,["H413"]],[18,20,["H559"]],[20,22,["H428"]],[22,23,["H1697"]],[23,24,["H6213"]],[24,26,["H5650"]],[26,31,["H639"]],[31,33,["H2734"]]]},{"k":1169,"v":[[0,2,["H3130"]],[2,3,["H113"]],[3,4,["H3947"]],[4,7,["H5414"]],[7,9,["H413"]],[9,11,["H1004","H5470"]],[11,13,["H4725"]],[13,14,["H834"]],[14,16,["H4428"]],[16,17,["H615"]],[17,19,["H631"]],[19,22,["H1961"]],[22,23,["H8033"]],[23,26,["H1004","H5470"]]]},{"k":1170,"v":[[0,3,["H3068"]],[3,4,["H1961"]],[4,5,["H854"]],[5,6,["H3130"]],[6,8,["H5186","H413"]],[8,10,["H2617"]],[10,12,["H5414"]],[12,14,["H2580"]],[14,17,["H5869"]],[17,20,["H8269"]],[20,23,["H1004","H5470"]]]},{"k":1171,"v":[[0,3,["H8269"]],[3,6,["H1004","H5470"]],[6,7,["H5414"]],[7,9,["H3130"]],[9,10,["H3027","(H853)"]],[10,11,["H3605"]],[11,13,["H615"]],[13,14,["H834"]],[14,18,["H1004","H5470"]],[18,20,["H3605","H834"]],[20,22,["H6213"]],[22,23,["H8033"]],[23,24,["H1931"]],[24,25,["H1961"]],[25,27,["H6213"]],[27,29,[]]]},{"k":1172,"v":[[0,2,["H8269"]],[2,5,["H1004","H5470"]],[5,6,["H7200"]],[6,7,["H369"]],[7,8,["(H853)"]],[8,10,["H3605","H3972"]],[10,15,["H3027"]],[15,16,["H834"]],[16,18,["H3068"]],[18,20,["H854"]],[20,24,["H834"]],[24,25,["H1931"]],[25,26,["H6213"]],[26,28,["H3068"]],[28,32,["H6743"]]]},{"k":1173,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H428"]],[7,8,["H1697"]],[8,11,["H4945"]],[11,14,["H4428"]],[14,16,["H4714"]],[16,19,["H644"]],[19,21,["H2398"]],[21,23,["H113"]],[23,25,["H4428"]],[25,27,["H4714"]]]},{"k":1174,"v":[[0,2,["H6547"]],[2,4,["H7107"]],[4,5,["H5921"]],[5,6,["H8147"]],[6,9,["H5631"]],[9,10,["H5921"]],[10,12,["H8269"]],[12,15,["H4945"]],[15,17,["H5921"]],[17,19,["H8269"]],[19,22,["H644"]]]},{"k":1175,"v":[[0,3,["H5414"]],[3,6,["H4929"]],[6,9,["H1004"]],[9,12,["H8269"]],[12,15,["H2876"]],[15,16,["H413"]],[16,18,["H1004","H5470"]],[18,20,["H4725"]],[20,21,["H834","H8033"]],[21,22,["H3130"]],[22,24,["H631"]]]},{"k":1176,"v":[[0,3,["H8269"]],[3,6,["H2876"]],[6,7,["H6485","(H853)"]],[7,8,["H3130"]],[8,9,["H854"]],[9,13,["H8334"]],[13,17,["H1961"]],[17,19,["H3117"]],[19,21,["H4929"]]]},{"k":1177,"v":[[0,3,["H2492"]],[3,5,["H2472"]],[5,6,["H8147"]],[6,10,["H376"]],[10,12,["H2472"]],[12,14,["H259"]],[14,15,["H3915"]],[15,17,["H376"]],[17,21,["H6623"]],[21,24,["H2472"]],[24,26,["H4945"]],[26,29,["H644"]],[29,32,["H4428"]],[32,34,["H4714"]],[34,35,["H834"]],[35,37,["H631"]],[37,40,["H1004","H5470"]]]},{"k":1178,"v":[[0,2,["H3130"]],[2,4,["H935"]],[4,5,["H413"]],[5,9,["H1242"]],[9,12,["H7200"]],[12,15,["H2009"]],[15,18,["H2196"]]]},{"k":1179,"v":[[0,3,["H7592","(H853)"]],[3,4,["H6547"]],[4,5,["H5631"]],[5,6,["H834"]],[6,8,["H854"]],[8,12,["H4929"]],[12,15,["H113"]],[15,16,["H1004"]],[16,17,["H559"]],[17,18,["H4069"]],[18,19,["H6440"]],[19,22,["H7451"]],[22,24,["H3117"]]]},{"k":1180,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,8,["H2492"]],[8,10,["H2472"]],[10,14,["H369"]],[14,15,["H6622"]],[15,19,["H3130"]],[19,20,["H559"]],[20,21,["H413"]],[21,24,["H3808"]],[24,25,["H6623"]],[25,28,["H430"]],[28,29,["H5608"]],[29,34,["H4994"]]]},{"k":1181,"v":[[0,3,["H8269"]],[3,4,["H4945"]],[4,5,["H5608","(H853)"]],[5,7,["H2472"]],[7,9,["H3130"]],[9,11,["H559"]],[11,16,["H2472"]],[16,17,["H2009"]],[17,19,["H1612"]],[19,21,["H6440"]],[21,22,[]]]},{"k":1182,"v":[[0,4,["H1612"]],[4,6,["H7969"]],[6,7,["H8299"]],[7,14,["H6524"]],[14,16,["H1931"]],[16,17,["H5322"]],[17,19,["H5927"]],[19,22,["H811"]],[22,25,["H1310"]],[25,27,["H6025"]]]},{"k":1183,"v":[[0,2,["H6547"]],[2,3,["H3563"]],[3,7,["H3027"]],[7,10,["H3947","(H853)"]],[10,12,["H6025"]],[12,14,["H7818"]],[14,16,["H413"]],[16,17,["H6547"]],[17,18,["H3563"]],[18,21,["H5414","(H853)"]],[21,23,["H3563"]],[23,24,["H5921"]],[24,25,["H6547"]],[25,26,["H3709"]]]},{"k":1184,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,6,["H2088"]],[6,9,["H6623"]],[9,13,["H7969"]],[13,14,["H8299"]],[14,16,["H7969"]],[16,17,["H3117"]]]},{"k":1185,"v":[[0,1,["H5750"]],[1,3,["H7969"]],[3,4,["H3117"]],[4,6,["H6547"]],[6,8,["H5375","(H853)"]],[8,10,["H7218"]],[10,12,["H7725"]],[12,14,["H5921"]],[14,16,["H3653"]],[16,20,["H5414"]],[20,21,["H6547"]],[21,22,["H3563"]],[22,25,["H3027"]],[25,28,["H7223"]],[28,29,["H4941"]],[29,30,["H834"]],[30,32,["H1961"]],[32,34,["H4945"]]]},{"k":1186,"v":[[0,1,["H3588","H518"]],[1,3,["H2142"]],[3,5,["H834"]],[5,9,["H3190"]],[9,13,["H6213"]],[13,14,["H2617"]],[14,17,["H4994"]],[17,18,["H5973"]],[18,22,["H2142"]],[22,25,["H413"]],[25,26,["H6547"]],[26,30,["H3318"]],[30,31,["H4480"]],[31,32,["H2088"]],[32,33,["H1004"]]]},{"k":1187,"v":[[0,1,["H3588"]],[1,6,["H1589","H1589"]],[6,10,["H4480","H776"]],[10,13,["H5680"]],[13,15,["H6311"]],[15,16,["H1571"]],[16,19,["H6213"]],[19,20,["H3808","H3972"]],[20,21,["H3588"]],[21,24,["H7760"]],[24,28,["H953"]]]},{"k":1188,"v":[[0,3,["H8269"]],[3,4,["H644"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,8,["H6622"]],[8,10,["H2896"]],[10,12,["H559"]],[12,13,["H413"]],[13,14,["H3130"]],[14,15,["H589"]],[15,16,["H637"]],[16,20,["H2472"]],[20,22,["H2009"]],[22,25,["H7969"]],[25,26,["H2751"]],[26,27,["H5536"]],[27,28,["H5921"]],[28,30,["H7218"]]]},{"k":1189,"v":[[0,4,["H5945"]],[4,5,["H5536"]],[5,10,["H4480","H3605"]],[10,12,["H3978","H4639","H644"]],[12,14,["H6547"]],[14,17,["H5775"]],[17,19,["H398"]],[19,22,["H4480"]],[22,24,["H5536"]],[24,25,["H4480","H5921"]],[25,27,["H7218"]]]},{"k":1190,"v":[[0,2,["H3130"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H2088"]],[6,9,["H6623"]],[9,12,["H7969"]],[12,13,["H5536"]],[13,15,["H7969"]],[15,16,["H3117"]]]},{"k":1191,"v":[[0,1,["H5750"]],[1,3,["H7969"]],[3,4,["H3117"]],[4,6,["H6547"]],[6,8,["H5375","(H853)"]],[8,10,["H7218"]],[10,12,["H4480","H5921"]],[12,16,["H8518"]],[16,18,["H5921"]],[18,20,["H6086"]],[20,23,["H5775"]],[23,25,["H398","(H853)"]],[25,27,["H1320"]],[27,29,["H4480","H5921"]],[29,30,[]]]},{"k":1192,"v":[[0,5,["H1961"]],[5,7,["H7992"]],[7,8,["H3117"]],[8,10,["(H853)"]],[10,11,["H6547"]],[11,12,["H3117","H3205"]],[12,15,["H6213"]],[15,17,["H4960"]],[17,19,["H3605"]],[19,21,["H5650"]],[21,25,["H5375","(H853)"]],[25,27,["H7218"]],[27,30,["H8269"]],[30,31,["H4945"]],[31,35,["H8269"]],[35,36,["H644"]],[36,37,["H8432"]],[37,39,["H5650"]]]},{"k":1193,"v":[[0,3,["H7725","(H853)"]],[3,5,["H8269"]],[5,6,["H4945"]],[6,7,["H5921"]],[7,9,["H4945"]],[9,13,["H5414"]],[13,15,["H3563"]],[15,16,["H5921"]],[16,17,["H6547"]],[17,18,["H3709"]]]},{"k":1194,"v":[[0,3,["H8518"]],[3,5,["H8269"]],[5,6,["H644"]],[6,7,["H834"]],[7,8,["H3130"]],[8,10,["H6622"]],[10,12,[]]]},{"k":1195,"v":[[0,3,["H3808"]],[3,5,["H8269"]],[5,6,["H4945"]],[6,7,["H2142","(H853)"]],[7,8,["H3130"]],[8,10,["H7911"]],[10,11,[]]]},{"k":1196,"v":[[0,5,["H1961"]],[5,8,["H4480","H7093"]],[8,12,["H8141","H3117"]],[12,14,["H6547"]],[14,15,["H2492"]],[15,17,["H2009"]],[17,19,["H5975"]],[19,20,["H5921"]],[20,22,["H2975"]]]},{"k":1197,"v":[[0,2,["H2009"]],[2,5,["H5927"]],[5,7,["H4480"]],[7,9,["H2975"]],[9,10,["H7651"]],[10,11,["H3303"]],[11,12,["H4758"]],[12,13,["H6510"]],[13,15,["H1277","H1320"]],[15,18,["H7462"]],[18,21,["H260"]]]},{"k":1198,"v":[[0,2,["H2009"]],[2,3,["H7651"]],[3,4,["H312"]],[4,5,["H6510"]],[5,7,["H5927"]],[7,8,["H310"]],[8,11,["H4480"]],[11,13,["H2975"]],[13,14,["H7451"]],[14,15,["H4758"]],[15,17,["H1851","H1320"]],[17,19,["H5975"]],[19,20,["H681"]],[20,23,["H6510"]],[23,24,["H5921"]],[24,26,["H8193"]],[26,29,["H2975"]]]},{"k":1199,"v":[[0,3,["H7451"]],[3,4,["H4758"]],[4,6,["H1851","H1320"]],[6,7,["H6510"]],[7,10,["H398","(H853)"]],[10,12,["H7651"]],[12,13,["H3303"]],[13,14,["H4758"]],[14,16,["H1277"]],[16,17,["H6510"]],[17,19,["H6547"]],[19,20,["H3364"]]]},{"k":1200,"v":[[0,3,["H3462"]],[3,5,["H2492"]],[5,8,["H8145"]],[8,10,["H2009"]],[10,11,["H7651"]],[11,14,["H7641"]],[14,16,["H5927"]],[16,18,["H259"]],[18,19,["H7070"]],[19,20,["H1277"]],[20,22,["H2896"]]]},{"k":1201,"v":[[0,2,["H2009"]],[2,3,["H7651"]],[3,4,["H1851"]],[4,5,["H7641"]],[5,7,["H7710"]],[7,11,["H6921"]],[11,13,["H6779"]],[13,14,["H310"]],[14,15,[]]]},{"k":1202,"v":[[0,4,["H1851"]],[4,5,["H7641"]],[5,6,["H1104","(H853)"]],[6,8,["H7651"]],[8,9,["H1277"]],[9,11,["H4392"]],[11,12,["H7641"]],[12,14,["H6547"]],[14,15,["H3364"]],[15,17,["H2009"]],[17,21,["H2472"]]]},{"k":1203,"v":[[0,5,["H1961"]],[5,8,["H1242"]],[8,11,["H7307"]],[11,13,["H6470"]],[13,16,["H7971"]],[16,19,["H7121","(H853)"]],[19,20,["H3605"]],[20,22,["H2748"]],[22,24,["H4714"]],[24,26,["H3605"]],[26,29,["H2450"]],[29,32,["H6547"]],[32,33,["H5608"]],[33,34,["(H853)"]],[34,36,["H2472"]],[36,40,["H369"]],[40,43,["H6622"]],[43,46,["H6547"]]]},{"k":1204,"v":[[0,2,["H1696"]],[2,4,["H8269"]],[4,5,["H4945","(H853)"]],[5,7,["H6547"]],[7,8,["H559"]],[8,9,["H589"]],[9,11,["H2142","(H853)"]],[11,13,["H2399"]],[13,15,["H3117"]]]},{"k":1205,"v":[[0,1,["H6547"]],[1,3,["H7107"]],[3,4,["H5921"]],[4,6,["H5650"]],[6,8,["H5414"]],[8,11,["H4929"]],[11,14,["H8269"]],[14,17,["H2876"]],[17,18,["H1004"]],[18,23,["H8269"]],[23,24,["H644"]]]},{"k":1206,"v":[[0,3,["H2492"]],[3,5,["H2472"]],[5,7,["H259"]],[7,8,["H3915"]],[8,9,["H589"]],[9,11,["H1931"]],[11,13,["H2492"]],[13,15,["H376"]],[15,19,["H6623"]],[19,22,["H2472"]]]},{"k":1207,"v":[[0,4,["H8033"]],[4,5,["H854"]],[5,9,["H5288"]],[9,11,["H5680"]],[11,12,["H5650"]],[12,15,["H8269"]],[15,18,["H2876"]],[18,21,["H5608"]],[21,25,["H6622"]],[25,27,["(H853)"]],[27,29,["H2472"]],[29,32,["H376"]],[32,36,["H2472"]],[36,39,["H6622"]]]},{"k":1208,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,8,["H6622"]],[8,11,["H3651"]],[11,13,["H1961"]],[13,16,["H7725"]],[16,17,["H5921"]],[17,19,["H3653"]],[19,23,["H8518"]]]},{"k":1209,"v":[[0,2,["H6547"]],[2,3,["H7971"]],[3,5,["H7121","(H853)"]],[5,6,["H3130"]],[6,11,["H7323"]],[11,13,["H4480"]],[13,15,["H953"]],[15,18,["H1548"]],[18,21,["H2498"]],[21,23,["H8071"]],[23,26,["H935"]],[26,27,["H413"]],[27,28,["H6547"]]]},{"k":1210,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,8,["H2492"]],[8,10,["H2472"]],[10,14,["H369"]],[14,17,["H6622"]],[17,20,["H589"]],[20,22,["H8085"]],[22,23,["H559"]],[23,24,["H5921"]],[24,29,["H8085"]],[29,31,["H2472"]],[31,33,["H6622"]],[33,34,[]]]},{"k":1211,"v":[[0,2,["H3130"]],[2,3,["H6030","(H853)"]],[3,4,["H6547"]],[4,5,["H559"]],[5,9,["H1107"]],[9,11,["H430"]],[11,16,["H6030","H6547"]],[16,17,["(H853)"]],[17,18,["H7965"]]]},{"k":1212,"v":[[0,2,["H6547"]],[2,3,["H1696"]],[3,4,["H413"]],[4,5,["H3130"]],[5,8,["H2472"]],[8,9,["H2009"]],[9,11,["H5975"]],[11,12,["H5921"]],[12,14,["H8193"]],[14,17,["H2975"]]]},{"k":1213,"v":[[0,2,["H2009"]],[2,5,["H5927"]],[5,7,["H4480"]],[7,9,["H2975"]],[9,10,["H7651"]],[10,11,["H6510"]],[11,12,["H1277","H1320"]],[12,14,["H3303"]],[14,15,["H8389"]],[15,18,["H7462"]],[18,21,["H260"]]]},{"k":1214,"v":[[0,2,["H2009"]],[2,3,["H7651"]],[3,4,["H312"]],[4,5,["H6510"]],[5,7,["H5927"]],[7,8,["H310"]],[8,10,["H1800"]],[10,12,["H3966"]],[12,13,["H7451"]],[13,14,["H8389"]],[14,16,["H7534","H1320"]],[16,17,["H2007"]],[17,20,["H3808"]],[20,21,["H7200"]],[21,23,["H3605"]],[23,25,["H776"]],[25,27,["H4714"]],[27,29,["H7455"]]]},{"k":1215,"v":[[0,3,["H7534"]],[3,7,["H7451"]],[7,8,["H6510"]],[8,11,["H398","(H853)"]],[11,13,["H7223"]],[13,14,["H7651"]],[14,15,["H1277"]],[15,16,["H6510"]]]},{"k":1216,"v":[[0,7,["H935","H413","H7130"]],[7,10,["H3808"]],[10,12,["H3045"]],[12,13,["H3588"]],[13,16,["H935","H413","H7130"]],[16,23,["H4758","H7451"]],[23,24,["H834"]],[24,27,["H8462"]],[27,30,["H3364"]]]},{"k":1217,"v":[[0,3,["H7200"]],[3,6,["H2472"]],[6,8,["H2009"]],[8,9,["H7651"]],[9,10,["H7641"]],[10,12,["H5927"]],[12,14,["H259"]],[14,15,["H7070"]],[15,16,["H4392"]],[16,18,["H2896"]]]},{"k":1218,"v":[[0,2,["H2009"]],[2,3,["H7651"]],[3,4,["H7641"]],[4,5,["H6798"]],[5,6,["H1851"]],[6,8,["H7710"]],[8,12,["H6921"]],[12,14,["H6779"]],[14,15,["H310"]],[15,16,[]]]},{"k":1219,"v":[[0,3,["H1851"]],[3,4,["H7641"]],[4,5,["H1104","(H853)"]],[5,7,["H7651"]],[7,8,["H2896"]],[8,9,["H7641"]],[9,12,["H559"]],[12,14,["H413"]],[14,16,["H2748"]],[16,20,["H369"]],[20,23,["H5046"]],[23,26,[]]]},{"k":1220,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H6547"]],[5,7,["H2472"]],[7,9,["H6547"]],[9,11,["H259"]],[11,12,["H430"]],[12,14,["H5046"]],[14,15,["H6547","(H853)"]],[15,16,["H834"]],[16,21,["H6213"]]]},{"k":1221,"v":[[0,2,["H7651"]],[2,3,["H2896"]],[3,4,["H6510"]],[4,6,["H7651"]],[6,7,["H8141"]],[7,10,["H7651"]],[10,11,["H2896"]],[11,12,["H7641"]],[12,14,["H7651"]],[14,15,["H8141"]],[15,17,["H2472"]],[17,19,["H259"]]]},{"k":1222,"v":[[0,3,["H7651"]],[3,4,["H7534"]],[4,7,["H7451"]],[7,8,["H6510"]],[8,11,["H5927"]],[11,12,["H310"]],[12,15,["H7651"]],[15,16,["H8141"]],[16,19,["H7651"]],[19,20,["H7386"]],[20,21,["H7641"]],[21,22,["H7710"]],[22,26,["H6921"]],[26,28,["H1961"]],[28,29,["H7651"]],[29,30,["H8141"]],[30,32,["H7458"]]]},{"k":1223,"v":[[0,1,["H1931"]],[1,4,["H1697"]],[4,5,["H834"]],[5,8,["H1696"]],[8,9,["H413"]],[9,10,["H6547"]],[10,11,["H834"]],[11,12,["H430"]],[12,16,["H6213"]],[16,18,["H7200","(H853)"]],[18,20,["H6547"]]]},{"k":1224,"v":[[0,1,["H2009"]],[1,3,["H935"]],[3,4,["H7651"]],[4,5,["H8141"]],[5,7,["H1419"]],[7,8,["H7647"]],[8,10,["H3605"]],[10,12,["H776"]],[12,14,["H4714"]]]},{"k":1225,"v":[[0,4,["H6965"]],[4,5,["H310"]],[5,7,["H7651"]],[7,8,["H8141"]],[8,10,["H7458"]],[10,12,["H3605"]],[12,14,["H7647"]],[14,17,["H7911"]],[17,20,["H776"]],[20,22,["H4714"]],[22,25,["H7458"]],[25,27,["H3615","(H853)"]],[27,29,["H776"]]]},{"k":1226,"v":[[0,3,["H7647"]],[3,5,["H3808"]],[5,7,["H3045"]],[7,10,["H776"]],[10,13,["H4480","H6440"]],[13,14,["H1931"]],[14,15,["H7458"]],[15,16,["H310","H3651"]],[16,17,["H3588"]],[17,18,["H1931"]],[18,21,["H3966"]],[21,22,["H3515"]]]},{"k":1227,"v":[[0,2,["H5921"]],[2,5,["H2472"]],[5,7,["H8138"]],[7,8,["H413"]],[8,9,["H6547"]],[9,10,["H6471"]],[10,13,["H3588"]],[13,15,["H1697"]],[15,17,["H3559"]],[17,18,["H4480","H5973"]],[18,19,["H430"]],[19,21,["H430"]],[21,23,["H4116"]],[23,27,["H6213"]]]},{"k":1228,"v":[[0,1,["H6258"]],[1,4,["H6547"]],[4,6,["H7200"]],[6,8,["H376"]],[8,9,["H995"]],[9,11,["H2450"]],[11,13,["H7896"]],[13,15,["H5921"]],[15,17,["H776"]],[17,19,["H4714"]]]},{"k":1229,"v":[[0,2,["H6547"]],[2,3,["H6213"]],[3,8,["H6485"]],[8,9,["H6496"]],[9,10,["H5921"]],[10,12,["H776"]],[12,18,["H2567"]],[18,19,["(H853)"]],[19,21,["H776"]],[21,23,["H4714"]],[23,26,["H7651"]],[26,27,["H7647"]],[27,28,["H8141"]]]},{"k":1230,"v":[[0,4,["H6908","(H853)"]],[4,5,["H3605"]],[5,7,["H400"]],[7,9,["H428"]],[9,10,["H2896"]],[10,11,["H8141"]],[11,13,["H935"]],[13,16,["H6651"]],[16,17,["H1250"]],[17,18,["H8478"]],[18,20,["H3027"]],[20,22,["H6547"]],[22,26,["H8104"]],[26,27,["H400"]],[27,30,["H5892"]]]},{"k":1231,"v":[[0,3,["H400"]],[3,5,["H1961"]],[5,7,["H6487"]],[7,10,["H776"]],[10,13,["H7651"]],[13,14,["H8141"]],[14,16,["H7458"]],[16,17,["H834"]],[17,19,["H1961"]],[19,22,["H776"]],[22,24,["H4714"]],[24,27,["H776"]],[27,28,["H3772"]],[28,29,["H3808"]],[29,32,["H7458"]]]},{"k":1232,"v":[[0,3,["H1697"]],[3,5,["H3190"]],[5,8,["H5869"]],[8,10,["H6547"]],[10,14,["H5869"]],[14,16,["H3605"]],[16,18,["H5650"]]]},{"k":1233,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5650"]],[6,9,["H4672"]],[9,14,["H2088"]],[14,17,["H376"]],[17,19,["H834"]],[19,21,["H7307"]],[21,23,["H430"]],[23,24,[]]]},{"k":1234,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,6,["H310"]],[6,8,["H430"]],[8,10,["H3045"]],[10,11,["(H853)"]],[11,12,["H3605"]],[12,13,["H2063"]],[13,16,["H369"]],[16,18,["H995"]],[18,20,["H2450"]],[20,22,["H3644"]],[22,23,[]]]},{"k":1235,"v":[[0,1,["H859"]],[1,3,["H1961"]],[3,4,["H5921"]],[4,6,["H1004"]],[6,9,["H5921"]],[9,11,["H6310"]],[11,13,["H3605"]],[13,15,["H5971"]],[15,17,["H5401"]],[17,18,["H7535"]],[18,21,["H3678"]],[21,25,["H1431"]],[25,26,["H4480"]],[26,27,[]]]},{"k":1236,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,6,["H7200"]],[6,9,["H5414"]],[9,11,["H5921"]],[11,12,["H3605"]],[12,14,["H776"]],[14,16,["H4714"]]]},{"k":1237,"v":[[0,2,["H6547"]],[2,4,["H5493","(H853)"]],[4,6,["H2885"]],[6,7,["H4480","H5921"]],[7,9,["H3027"]],[9,11,["H5414"]],[11,13,["H5921"]],[13,14,["H3130"]],[14,15,["H3027"]],[15,17,["H3847"]],[17,20,["H899"]],[20,23,["H8336"]],[23,25,["H7760"]],[25,27,["H2091"]],[27,28,["H7242"]],[28,29,["H5921"]],[29,31,["H6677"]]]},{"k":1238,"v":[[0,6,["H7392"]],[6,9,["H4932"]],[9,10,["H4818"]],[10,11,["H834"]],[11,16,["H7121"]],[16,17,["H6440"]],[17,21,["H86"]],[21,24,["H5414"]],[24,27,["H5921"]],[27,28,["H3605"]],[28,30,["H776"]],[30,32,["H4714"]]]},{"k":1239,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,6,["H589"]],[6,8,["H6547"]],[8,10,["H1107"]],[10,13,["H3808"]],[13,14,["H376"]],[14,16,["H7311","(H853)"]],[16,18,["H3027"]],[18,20,["H7272"]],[20,22,["H3605"]],[22,24,["H776"]],[24,26,["H4714"]]]},{"k":1240,"v":[[0,2,["H6547"]],[2,3,["H7121"]],[3,4,["H3130"]],[4,5,["H8034"]],[5,6,["H6847"]],[6,9,["H5414"]],[9,12,["H802","(H853)"]],[12,13,["H621"]],[13,15,["H1323"]],[15,17,["H6319"]],[17,18,["H3548"]],[18,20,["H204"]],[20,22,["H3130"]],[22,24,["H3318"]],[24,25,["H5921"]],[25,28,["H776"]],[28,30,["H4714"]]]},{"k":1241,"v":[[0,2,["H3130"]],[2,4,["H7970"]],[4,5,["H8141"]],[5,6,["H1121"]],[6,9,["H5975"]],[9,10,["H6440"]],[10,11,["H6547"]],[11,12,["H4428"]],[12,14,["H4714"]],[14,16,["H3130"]],[16,18,["H3318"]],[18,21,["H4480","H6440"]],[21,23,["H6547"]],[23,25,["H5674"]],[25,27,["H3605"]],[27,29,["H776"]],[29,31,["H4714"]]]},{"k":1242,"v":[[0,4,["H7651"]],[4,5,["H7647"]],[5,6,["H8141"]],[6,8,["H776"]],[8,10,["H6213"]],[10,12,["H7062"]]]},{"k":1243,"v":[[0,4,["H6908","(H853)"]],[4,5,["H3605"]],[5,7,["H400"]],[7,10,["H7651"]],[10,11,["H8141"]],[11,12,["H834"]],[12,13,["H1961"]],[13,16,["H776"]],[16,18,["H4714"]],[18,21,["H5414"]],[21,23,["H400"]],[23,26,["H5892"]],[26,28,["H400"]],[28,31,["H7704"]],[31,32,["H834"]],[32,35,["H5439"]],[35,37,["H5892"]],[37,40,["H5414"]],[40,43,["H8432"]]]},{"k":1244,"v":[[0,2,["H3130"]],[2,3,["H6651"]],[3,4,["H1250"]],[4,7,["H2344"]],[7,10,["H3220"]],[10,11,["H3966"]],[11,12,["H7235"]],[12,13,["H5704"]],[13,15,["H2308"]],[15,16,["H5608"]],[16,17,["H3588"]],[17,20,["H369"]],[20,21,["H4557"]]]},{"k":1245,"v":[[0,3,["H3130"]],[3,5,["H3205"]],[5,6,["H8147"]],[6,7,["H1121"]],[7,8,["H2962"]],[8,10,["H8141"]],[10,12,["H7458"]],[12,13,["H935"]],[13,14,["H834"]],[14,15,["H621"]],[15,17,["H1323"]],[17,19,["H6319"]],[19,20,["H3548"]],[20,22,["H204"]],[22,23,["H3205"]],[23,25,[]]]},{"k":1246,"v":[[0,2,["H3130"]],[2,3,["H7121","(H853)"]],[3,5,["H8034"]],[5,8,["H1060"]],[8,9,["H4519"]],[9,10,["H3588"]],[10,11,["H430"]],[11,17,["H5382","(H853)"]],[17,18,["H3605"]],[18,20,["H5999"]],[20,22,["H3605"]],[22,24,["H1"]],[24,25,["H1004"]]]},{"k":1247,"v":[[0,3,["H8034"]],[3,6,["H8145"]],[6,7,["H7121"]],[7,9,["H669"]],[9,10,["H3588"]],[10,11,["H430"]],[11,17,["H6509"]],[17,20,["H776"]],[20,23,["H6040"]]]},{"k":1248,"v":[[0,3,["H7651"]],[3,4,["H8141"]],[4,6,["H7647"]],[6,7,["H834"]],[7,8,["H1961"]],[8,11,["H776"]],[11,13,["H4714"]],[13,15,["H3615"]]]},{"k":1249,"v":[[0,3,["H7651"]],[3,4,["H8141"]],[4,6,["H7458"]],[6,7,["H2490"]],[7,9,["H935"]],[9,11,["H834"]],[11,12,["H3130"]],[12,14,["H559"]],[14,17,["H7458"]],[17,18,["H1961"]],[18,20,["H3605"]],[20,21,["H776"]],[21,24,["H3605"]],[24,26,["H776"]],[26,28,["H4714"]],[28,30,["H1961"]],[30,31,["H3899"]]]},{"k":1250,"v":[[0,3,["H3605"]],[3,5,["H776"]],[5,7,["H4714"]],[7,9,["H7456"]],[9,11,["H5971"]],[11,12,["H6817"]],[12,13,["H413"]],[13,14,["H6547"]],[14,16,["H3899"]],[16,18,["H6547"]],[18,19,["H559"]],[19,21,["H3605"]],[21,23,["H4714"]],[23,24,["H1980"]],[24,25,["H413"]],[25,26,["H3130"]],[26,27,["H834"]],[27,29,["H559"]],[29,32,["H6213"]]]},{"k":1251,"v":[[0,3,["H7458"]],[3,4,["H1961"]],[4,5,["H5921"]],[5,6,["H3605"]],[6,8,["H6440"]],[8,11,["H776"]],[11,13,["H3130"]],[13,14,["H6605","(H853)"]],[14,15,["H3605"]],[15,17,["H834"]],[17,19,["H7666"]],[19,22,["H4714"]],[22,25,["H7458"]],[25,27,["H2388"]],[27,30,["H776"]],[30,32,["H4714"]]]},{"k":1252,"v":[[0,2,["H3605"]],[2,3,["H776"]],[3,4,["H935"]],[4,6,["H4714"]],[6,7,["H413"]],[7,8,["H3130"]],[8,11,["H7666"]],[11,13,["H3588"]],[13,16,["H7458"]],[16,19,["H2388"]],[19,21,["H3605"]],[21,22,["H776"]]]},{"k":1253,"v":[[0,3,["H3290"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,7,["H3426"]],[7,8,["H7668"]],[8,10,["H4714"]],[10,11,["H3290"]],[11,12,["H559"]],[12,15,["H1121"]],[15,16,["H4100"]],[16,22,["H7200"]]]},{"k":1254,"v":[[0,3,["H559"]],[3,4,["H2009"]],[4,7,["H8085"]],[7,8,["H3588"]],[8,10,["H3426"]],[10,11,["H7668"]],[11,13,["H4714"]],[13,16,["H3381"]],[16,17,["H8033"]],[17,19,["H7666"]],[19,23,["H4480","H8033"]],[23,27,["H2421"]],[27,29,["H3808"]],[29,30,["H4191"]]]},{"k":1255,"v":[[0,2,["H3130"]],[2,3,["H6235"]],[3,4,["H251"]],[4,6,["H3381"]],[6,8,["H7666"]],[8,9,["H1250"]],[9,11,["H4480","H4714"]]]},{"k":1256,"v":[[0,2,["H1144"]],[2,3,["H3130"]],[3,4,["H251"]],[4,5,["H3290"]],[5,6,["H7971"]],[6,7,["H3808"]],[7,8,["H854"]],[8,10,["H251"]],[10,11,["H3588"]],[11,13,["H559"]],[13,15,["H6435"]],[15,16,["H611"]],[16,17,["H7122"]],[17,18,[]]]},{"k":1257,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H935"]],[6,8,["H7666"]],[8,10,["H8432"]],[10,13,["H935"]],[13,14,["H3588"]],[14,16,["H7458"]],[16,17,["H1961"]],[17,20,["H776"]],[20,22,["H3667"]]]},{"k":1258,"v":[[0,2,["H3130"]],[2,5,["H7989"]],[5,6,["H5921"]],[6,8,["H776"]],[8,10,["H1931"]],[10,14,["H7666"]],[14,16,["H3605"]],[16,18,["H5971"]],[18,21,["H776"]],[21,23,["H3130"]],[23,24,["H251"]],[24,25,["H935"]],[25,29,["H7812"]],[29,34,["H639"]],[34,37,["H776"]]]},{"k":1259,"v":[[0,2,["H3130"]],[2,3,["H7200","(H853)"]],[3,5,["H251"]],[5,8,["H5234"]],[8,13,["H5234"]],[13,14,["H413"]],[14,17,["H1696"]],[17,18,["H7186"]],[18,19,["H854"]],[19,23,["H559"]],[23,24,["H413"]],[24,26,["H4480","H370"]],[26,27,["H935"]],[27,31,["H559"]],[31,34,["H4480","H776"]],[34,36,["H3667"]],[36,38,["H7666"]],[38,39,["H400"]]]},{"k":1260,"v":[[0,2,["H3130"]],[2,3,["H5234","(H853)"]],[3,5,["H251"]],[5,7,["H1992"]],[7,8,["H5234"]],[8,9,["H3808"]],[9,10,[]]]},{"k":1261,"v":[[0,2,["H3130"]],[2,3,["H2142","(H853)"]],[3,5,["H2472"]],[5,6,["H834"]],[6,8,["H2492"]],[8,12,["H559"]],[12,13,["H413"]],[13,15,["H859"]],[15,17,["H7270"]],[17,19,["H7200","(H853)"]],[19,21,["H6172"]],[21,24,["H776"]],[24,27,["H935"]]]},{"k":1262,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3808"]],[6,8,["H113"]],[8,11,["H7666"]],[11,12,["H400"]],[12,15,["H5650"]],[15,16,["H935"]]]},{"k":1263,"v":[[0,1,["H5168"]],[1,3,["H3605"]],[3,4,["H259"]],[4,5,["H376"]],[5,6,["H1121"]],[6,7,["H587"]],[7,9,["H3651"]],[9,12,["H5650"]],[12,13,["H1961"]],[13,14,["H3808"]],[14,15,["H7270"]]]},{"k":1264,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3808"]],[6,7,["H3588"]],[7,9,["H7200"]],[9,11,["H6172"]],[11,14,["H776"]],[14,17,["H935"]]]},{"k":1265,"v":[[0,3,["H559"]],[3,5,["H5650"]],[5,7,["H8147","H6240"]],[7,8,["H251"]],[8,10,["H1121"]],[10,12,["H259"]],[12,13,["H376"]],[13,16,["H776"]],[16,18,["H3667"]],[18,20,["H2009"]],[20,22,["H6996"]],[22,25,["H3117"]],[25,26,["H854"]],[26,28,["H1"]],[28,30,["H259"]],[30,32,["H369"]]]},{"k":1266,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1931"]],[6,9,["H834"]],[9,11,["H1696"]],[11,12,["H413"]],[12,14,["H559"]],[14,15,["H859"]],[15,17,["H7270"]]]},{"k":1267,"v":[[0,1,["H2063"]],[1,5,["H974"]],[5,8,["H2416"]],[8,10,["H6547"]],[10,15,["H3318"]],[15,16,["H4480","H2088"]],[16,17,["H3588","H518"]],[17,19,["H6996"]],[19,20,["H251"]],[20,21,["H935"]],[21,22,["H2008"]]]},{"k":1268,"v":[[0,1,["H7971"]],[1,2,["H259"]],[2,3,["H4480"]],[3,8,["H3947","(H853)"]],[8,10,["H251"]],[10,12,["H859"]],[12,17,["H631"]],[17,20,["H1697"]],[20,23,["H974"]],[23,28,["H571"]],[28,29,["H854"]],[29,32,["H518","H3808"]],[32,35,["H2416"]],[35,37,["H6547"]],[37,38,["H3588"]],[38,39,["H859"]],[39,41,["H7270"]]]},{"k":1269,"v":[[0,6,["H622","(H853)"]],[6,7,["H413"]],[7,8,["H4929"]],[8,9,["H7969"]],[9,10,["H3117"]]]},{"k":1270,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,7,["H7992"]],[7,8,["H3117"]],[8,9,["H2063"]],[9,10,["H6213"]],[10,12,["H2421"]],[12,14,["H589"]],[14,15,["H3373","(H853)"]],[15,16,["H430"]]]},{"k":1271,"v":[[0,1,["H518"]],[1,2,["H859"]],[2,4,["H3651"]],[4,7,["H259"]],[7,10,["H251"]],[10,12,["H631"]],[12,15,["H1004"]],[15,18,["H4929"]],[18,19,["H1980"]],[19,20,["H859"]],[20,21,["H935"]],[21,22,["H7668"]],[22,25,["H7459"]],[25,28,["H1004"]]]},{"k":1272,"v":[[0,2,["H935"]],[2,4,["H6996"]],[4,5,["H251"]],[5,6,["H413"]],[6,11,["H1697"]],[11,13,["H539"]],[13,17,["H3808"]],[17,18,["H4191"]],[18,21,["H6213"]],[21,22,["H3651"]]]},{"k":1273,"v":[[0,3,["H559"]],[3,4,["H376"]],[4,5,["H413"]],[5,6,["H251"]],[6,7,["H587"]],[7,9,["H61"]],[9,10,["H818"]],[10,11,["H5921"]],[11,13,["H251"]],[13,15,["H834"]],[15,17,["H7200"]],[17,19,["H6869"]],[19,22,["H5315"]],[22,25,["H2603","H413"]],[25,30,["H3808"]],[30,31,["H8085"]],[31,32,["H5921","H3651"]],[32,34,["H2063"]],[34,35,["H6869"]],[35,36,["H935"]],[36,37,["H413"]],[37,38,[]]]},{"k":1274,"v":[[0,2,["H7205"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H559"]],[6,8,["H3808"]],[8,9,["H413"]],[9,11,["H559"]],[11,13,["H408"]],[13,14,["H2398"]],[14,17,["H3206"]],[17,21,["H3808"]],[21,22,["H8085"]],[22,24,["H2009"]],[24,25,["H1571"]],[25,27,["H1818"]],[27,29,["H1875"]]]},{"k":1275,"v":[[0,2,["H1992"]],[2,3,["H3045"]],[3,4,["H3808"]],[4,5,["H3588"]],[5,6,["H3130"]],[6,7,["H8085"]],[7,9,["H3588"]],[9,12,["H996"]],[12,16,["H3887"]]]},{"k":1276,"v":[[0,5,["H5437"]],[5,6,["H4480","H5921"]],[6,9,["H1058"]],[9,11,["H7725"]],[11,12,["H413"]],[12,16,["H1696"]],[16,17,["H413"]],[17,20,["H3947"]],[20,21,["H4480","H854"]],[21,22,["(H853)"]],[22,23,["H8095"]],[23,25,["H631"]],[25,29,["H5869"]]]},{"k":1277,"v":[[0,2,["H3130"]],[2,3,["H6680"]],[3,5,["H4390","(H853)"]],[5,7,["H3627"]],[7,9,["H1250"]],[9,12,["H7725"]],[12,14,["H376"]],[14,15,["H3701"]],[15,16,["H413"]],[16,18,["H8242"]],[18,21,["H5414"]],[21,23,["H6720"]],[23,26,["H1870"]],[26,28,["H3651"]],[28,29,["H6213"]],[29,32,[]]]},{"k":1278,"v":[[0,3,["H5375","H5921"]],[3,5,["H2543"]],[5,6,["(H853)"]],[6,8,["H7668"]],[8,10,["H1980"]],[10,11,["H4480","H8033"]]]},{"k":1279,"v":[[0,3,["H259"]],[3,6,["H6605","(H853)"]],[6,8,["H8242"]],[8,10,["H5414"]],[10,12,["H2543"]],[12,13,["H4554"]],[13,16,["H4411"]],[16,18,["H7200","(H853)"]],[18,20,["H3701"]],[20,22,["H2009"]],[22,23,["H1931"]],[23,27,["H572"]],[27,28,["H6310"]]]},{"k":1280,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H251"]],[6,8,["H3701"]],[8,10,["H7725"]],[10,12,["H2009"]],[12,15,["H1571"]],[15,18,["H572"]],[18,21,["H3820"]],[21,22,["H3318"]],[22,27,["H2729"]],[27,28,["H559"]],[28,29,["H376"]],[29,30,["H413"]],[30,31,["H251"]],[31,32,["H4100"]],[32,34,["H2063"]],[34,36,["H430"]],[36,38,["H6213"]],[38,40,[]]]},{"k":1281,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,5,["H3290"]],[5,7,["H1"]],[7,10,["H776"]],[10,12,["H3667"]],[12,14,["H5046"]],[14,15,["(H853)"]],[15,16,["H3605"]],[16,18,["H7136"]],[18,21,["H559"]]]},{"k":1282,"v":[[0,2,["H376"]],[2,6,["H113"]],[6,9,["H776"]],[9,10,["H1696"]],[10,11,["H7186"]],[11,12,["H854"]],[12,15,["H5414"]],[15,18,["H7270"]],[18,19,["(H853)"]],[19,21,["H776"]]]},{"k":1283,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H587"]],[6,8,["H3651"]],[8,11,["H1961"]],[11,12,["H3808"]],[12,13,["H7270"]]]},{"k":1284,"v":[[0,1,["H587"]],[1,3,["H8147","H6240"]],[3,4,["H251"]],[4,5,["H1121"]],[5,8,["H1"]],[8,9,["H259"]],[9,11,["H369"]],[11,14,["H6996"]],[14,17,["H3117"]],[17,18,["H854"]],[18,20,["H1"]],[20,23,["H776"]],[23,25,["H3667"]]]},{"k":1285,"v":[[0,3,["H376"]],[3,5,["H113"]],[5,8,["H776"]],[8,9,["H559"]],[9,10,["H413"]],[10,12,["H2063"]],[12,15,["H3045"]],[15,16,["H3588"]],[16,17,["H859"]],[17,19,["H3651"]],[19,21,["H5117"]],[21,22,["H259"]],[22,25,["H251"]],[25,27,["H854"]],[27,30,["H3947"]],[30,34,["H7459"]],[34,37,["H1004"]],[37,40,["H1980"]]]},{"k":1286,"v":[[0,2,["H935","(H853)"]],[2,4,["H6996"]],[4,5,["H251"]],[5,6,["H413"]],[6,11,["H3045"]],[11,12,["H3588"]],[12,13,["H859"]],[13,15,["H3808"]],[15,16,["H7270"]],[16,17,["H3588"]],[17,19,["H859"]],[19,21,["H3651"]],[21,26,["H5414"]],[26,27,["(H853)"]],[27,29,["H251"]],[29,33,["H5503"]],[33,36,["H776"]]]},{"k":1287,"v":[[0,5,["H1961"]],[5,7,["H1992"]],[7,8,["H7324"]],[8,10,["H8242"]],[10,12,["H2009"]],[12,14,["H376"]],[14,15,["H6872"]],[15,17,["H3701"]],[17,21,["H8242"]],[21,25,["H1992"]],[25,28,["H1"]],[28,29,["H7200","(H853)"]],[29,31,["H6872"]],[31,33,["H3701"]],[33,36,["H3372"]]]},{"k":1288,"v":[[0,2,["H3290"]],[2,4,["H1"]],[4,5,["H559"]],[5,6,["H413"]],[6,11,["H7921"]],[11,15,["H3130"]],[15,17,["H369"]],[17,19,["H8095"]],[19,21,["H369"]],[21,25,["H3947"]],[25,26,["H1144"]],[26,28,["H3605"]],[28,31,["H1961"]],[31,32,["H5921"]],[32,33,[]]]},{"k":1289,"v":[[0,2,["H7205"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1"]],[6,7,["H559"]],[7,8,["H4191","(H853)"]],[8,10,["H8147"]],[10,11,["H1121"]],[11,12,["H518"]],[12,14,["H935"]],[14,16,["H3808"]],[16,17,["H413"]],[17,19,["H5414"]],[19,21,["H5921"]],[21,23,["H3027"]],[23,25,["H589"]],[25,27,["H7725"]],[27,29,["H413"]],[29,31,[]]]},{"k":1290,"v":[[0,3,["H559"]],[3,5,["H1121"]],[5,7,["H3808"]],[7,9,["H3381"]],[9,10,["H5973"]],[10,12,["H3588"]],[12,14,["H251"]],[14,16,["H4191"]],[16,18,["H1931"]],[18,20,["H7604"]],[20,21,["H905"]],[21,23,["H611"]],[23,24,["H7122"]],[24,28,["H1870"]],[28,31,["H834"]],[31,33,["H1980"]],[33,38,["H3381","(H853)"]],[38,41,["H7872"]],[41,43,["H3015"]],[43,46,["H7585"]]]},{"k":1291,"v":[[0,3,["H7458"]],[3,5,["H3515"]],[5,8,["H776"]]]},{"k":1292,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,10,["H3615","H398","(H853)"]],[10,12,["H7668"]],[12,13,["H834"]],[13,16,["H935"]],[16,19,["H4480","H4714"]],[19,21,["H1"]],[21,22,["H559"]],[22,23,["H413"]],[23,26,["H7725"]],[26,27,["H7666"]],[27,30,["H4592"]],[30,31,["H400"]]]},{"k":1293,"v":[[0,2,["H3063"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H559"]],[6,8,["H376"]],[8,11,["H5749","H5749"]],[11,14,["H559"]],[14,17,["H3808"]],[17,18,["H7200"]],[18,20,["H6440"]],[20,21,["H1115"]],[21,23,["H251"]],[23,25,["H854"]],[25,26,[]]]},{"k":1294,"v":[[0,1,["H518"]],[1,3,["H3426"]],[3,4,["H7971","(H853)"]],[4,6,["H251"]],[6,7,["H854"]],[7,12,["H3381"]],[12,14,["H7666"]],[14,16,["H400"]]]},{"k":1295,"v":[[0,2,["H518"]],[2,5,["H369"]],[5,6,["H7971"]],[6,10,["H3808"]],[10,12,["H3381"]],[12,13,["H3588"]],[13,15,["H376"]],[15,16,["H559"]],[16,17,["H413"]],[17,21,["H3808"]],[21,22,["H7200"]],[22,24,["H6440"]],[24,25,["H1115"]],[25,27,["H251"]],[27,29,["H854"]],[29,30,[]]]},{"k":1296,"v":[[0,2,["H3478"]],[2,3,["H559"]],[3,4,["H4100"]],[4,8,["H7489"]],[8,13,["H5046"]],[13,15,["H376"]],[15,19,["H5750"]],[19,21,["H251"]]]},{"k":1297,"v":[[0,3,["H559"]],[3,5,["H376"]],[5,8,["H7592","H7592"]],[8,15,["H4138"]],[15,16,["H559"]],[16,19,["H1"]],[19,20,["H5750"]],[20,21,["H2416"]],[21,22,["H3426"]],[22,25,["H251"]],[25,28,["H5046"]],[28,31,["H5921"]],[31,33,["H6310"]],[33,35,["H428"]],[35,36,["H1697"]],[36,40,["H3045","H3045"]],[40,41,["H3588"]],[41,44,["H559"]],[44,48,["H3381","(H853)","H251"]]]},{"k":1298,"v":[[0,2,["H3063"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3478"]],[5,7,["H1"]],[7,8,["H7971"]],[8,10,["H5288"]],[10,11,["H854"]],[11,16,["H6965"]],[16,18,["H1980"]],[18,22,["H2421"]],[22,24,["H3808"]],[24,25,["H4191"]],[25,26,["H1571"]],[26,27,["H587"]],[27,28,["H1571"]],[28,29,["H859"]],[29,31,["H1571"]],[31,34,["H2945"]]]},{"k":1299,"v":[[0,1,["H595"]],[1,4,["H6148"]],[4,9,["H4480","H3027"]],[9,12,["H1245"]],[12,14,["H518"]],[14,16,["H935"]],[16,18,["H3808"]],[18,19,["H413"]],[19,22,["H3322"]],[22,24,["H6440"]],[24,31,["H2398"]],[31,33,["H3605","H3117"]]]},{"k":1300,"v":[[0,1,["H3588"]],[1,2,["H3884"]],[2,5,["H4102"]],[5,6,["H3588"]],[6,7,["H6258"]],[7,10,["H7725"]],[10,11,["H2088"]],[11,13,["H6471"]]]},{"k":1301,"v":[[0,3,["H1"]],[3,4,["H3478"]],[4,5,["H559"]],[5,6,["H413"]],[6,8,["H518"]],[8,12,["H3651"]],[12,13,["H645"]],[13,14,["H6213"]],[14,15,["H2063"]],[15,16,["H3947"]],[16,20,["H4480","H2173"]],[20,23,["H776"]],[23,26,["H3627"]],[26,29,["H3381"]],[29,31,["H376"]],[31,33,["H4503"]],[33,35,["H4592"]],[35,36,["H6875"]],[36,39,["H4592"]],[39,40,["H1706"]],[40,41,["H5219"]],[41,43,["H3910"]],[43,44,["H992"]],[44,46,["H8247"]]]},{"k":1302,"v":[[0,2,["H3947"]],[2,3,["H4932"]],[3,4,["H3701"]],[4,7,["H3027"]],[7,10,["H3701"]],[10,14,["H7725"]],[14,17,["H6310"]],[17,20,["H572"]],[20,23,["H7725"]],[23,26,["H3027"]],[26,27,["H194"]],[27,28,["H1931"]],[28,31,["H4870"]]]},{"k":1303,"v":[[0,1,["H3947"]],[1,4,["H251"]],[4,6,["H6965"]],[6,8,["H7725"]],[8,9,["H413"]],[9,11,["H376"]]]},{"k":1304,"v":[[0,2,["H410"]],[2,3,["H7706"]],[3,4,["H5414"]],[4,6,["H7356"]],[6,7,["H6440"]],[7,9,["H376"]],[9,14,["H7971","(H853)"]],[14,16,["H312"]],[16,17,["H251"]],[17,19,["H1144"]],[19,20,["H834"]],[20,21,["H589"]],[21,23,["H7921"]],[23,29,["H7921"]]]},{"k":1305,"v":[[0,3,["H376"]],[3,4,["H3947","(H853)"]],[4,5,["H2063"]],[5,6,["H4503"]],[6,9,["H3947"]],[9,10,["H4932"]],[10,11,["H3701"]],[11,14,["H3027"]],[14,16,["H1144"]],[16,19,["H6965"]],[19,22,["H3381"]],[22,24,["H4714"]],[24,26,["H5975"]],[26,27,["H6440"]],[27,28,["H3130"]]]},{"k":1306,"v":[[0,3,["H3130"]],[3,4,["H7200","(H853)"]],[4,5,["H1144"]],[5,6,["H854"]],[6,9,["H559"]],[9,13,["H834","H5921"]],[13,15,["H1004"]],[15,16,["H935","(H853)"]],[16,18,["H376"]],[18,19,["H1004"]],[19,21,["H2873","H2874"]],[21,24,["H3559"]],[24,25,["H3588"]],[25,27,["H376"]],[27,29,["H398"]],[29,30,["H854"]],[30,33,["H6672"]]]},{"k":1307,"v":[[0,3,["H376"]],[3,4,["H6213"]],[4,5,["H834"]],[5,6,["H3130"]],[6,7,["H559"]],[7,10,["H376"]],[10,11,["H935","(H853)"]],[11,13,["H376"]],[13,15,["H3130"]],[15,16,["H1004"]]]},{"k":1308,"v":[[0,3,["H376"]],[3,5,["H3372"]],[5,6,["H3588"]],[6,9,["H935"]],[9,11,["H3130"]],[11,12,["H1004"]],[12,15,["H559"]],[15,17,["H5921","H1697"]],[17,19,["H3701"]],[19,22,["H7725"]],[22,25,["H572"]],[25,29,["H8462"]],[29,31,["H587"]],[31,33,["H935"]],[33,38,["H1556"]],[38,39,["H5921"]],[39,42,["H5307"]],[42,43,["H5921"]],[43,46,["H3947"]],[46,49,["H5650"]],[49,52,["H2543"]]]},{"k":1309,"v":[[0,4,["H5066"]],[4,5,["H413"]],[5,7,["H376","H834","H5921"]],[7,9,["H3130"]],[9,10,["H1004"]],[10,13,["H1696"]],[13,14,["H413"]],[14,18,["H6607"]],[18,21,["H1004"]]]},{"k":1310,"v":[[0,2,["H559"]],[2,3,["H994"]],[3,4,["H113"]],[4,8,["H3381","H3381"]],[8,12,["H8462"]],[12,14,["H7666"]],[14,15,["H400"]]]},{"k":1311,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,8,["H935"]],[8,9,["H413"]],[9,11,["H4411"]],[11,14,["H6605","(H853)"]],[14,16,["H572"]],[16,18,["H2009"]],[18,20,["H376"]],[20,21,["H3701"]],[21,25,["H6310"]],[25,28,["H572"]],[28,30,["H3701"]],[30,33,["H4948"]],[33,39,["H7725","(H853)"]],[39,42,["H3027"]]]},{"k":1312,"v":[[0,2,["H312"]],[2,3,["H3701"]],[3,7,["H3381"]],[7,10,["H3027"]],[10,12,["H7666"]],[12,13,["H400"]],[13,15,["H3808"]],[15,16,["H3045"]],[16,17,["H4310"]],[17,18,["H7760"]],[18,20,["H3701"]],[20,23,["H572"]]]},{"k":1313,"v":[[0,3,["H559"]],[3,4,["H7965"]],[4,8,["H3372"]],[8,9,["H408"]],[9,11,["H430"]],[11,14,["H430"]],[14,17,["H1"]],[17,19,["H5414"]],[19,21,["H4301"]],[21,24,["H572"]],[24,26,["H935"]],[26,28,["H3701"]],[28,33,["H3318","(H853)","H8095"]],[33,34,["H413"]],[34,35,[]]]},{"k":1314,"v":[[0,3,["H376"]],[3,4,["H935","(H853)"]],[4,6,["H376"]],[6,8,["H3130"]],[8,9,["H1004"]],[9,11,["H5414"]],[11,13,["H4325"]],[13,16,["H7364"]],[16,18,["H7272"]],[18,21,["H5414"]],[21,23,["H2543"]],[23,24,["H4554"]]]},{"k":1315,"v":[[0,4,["H3559","(H853)"]],[4,6,["H4503"]],[6,7,["H5704"]],[7,8,["H3130"]],[8,9,["H935"]],[9,11,["H6672"]],[11,12,["H3588"]],[12,14,["H8085"]],[14,15,["H3588"]],[15,18,["H398"]],[18,19,["H3899"]],[19,20,["H8033"]]]},{"k":1316,"v":[[0,3,["H3130"]],[3,4,["H935"]],[4,5,["H1004"]],[5,7,["H935"]],[7,8,["(H853)"]],[8,10,["H4503"]],[10,11,["H834"]],[11,15,["H3027"]],[15,18,["H1004"]],[18,21,["H7812"]],[21,26,["H776"]]]},{"k":1317,"v":[[0,3,["H7592"]],[3,7,["H7965"]],[7,9,["H559"]],[9,12,["H1"]],[12,13,["H7965"]],[13,16,["H2205"]],[16,18,["H834"]],[18,20,["H559"]],[20,23,["H5750"]],[23,24,["H2416"]]]},{"k":1318,"v":[[0,3,["H559"]],[3,5,["H5650"]],[5,7,["H1"]],[7,11,["H7965"]],[11,14,["H5750"]],[14,15,["H2416"]],[15,21,["H6915"]],[21,24,["H7812"]]]},{"k":1319,"v":[[0,4,["H5375"]],[4,6,["H5869"]],[6,8,["H7200"]],[8,10,["H251","(H853)"]],[10,11,["H1144"]],[11,13,["H517"]],[13,14,["H1121"]],[14,16,["H559"]],[16,18,["H2088"]],[18,20,["H6996"]],[20,21,["H251"]],[21,23,["H834"]],[23,25,["H559"]],[25,26,["H413"]],[26,30,["H559"]],[30,31,["H430"]],[31,33,["H2603"]],[33,37,["H1121"]]]},{"k":1320,"v":[[0,2,["H3130"]],[2,4,["H4116"]],[4,5,["H3588"]],[5,7,["H7356"]],[7,9,["H3648"]],[9,10,["H413"]],[10,12,["H251"]],[12,15,["H1245"]],[15,18,["H1058"]],[18,22,["H935"]],[22,24,["H2315"]],[24,26,["H1058"]],[26,27,["H8033"]]]},{"k":1321,"v":[[0,3,["H7364"]],[3,5,["H6440"]],[5,8,["H3318"]],[8,11,["H662"]],[11,13,["H559"]],[13,15,["H7760"]],[15,16,["H3899"]]]},{"k":1322,"v":[[0,4,["H7760"]],[4,8,["H905"]],[8,13,["H905"]],[13,17,["H4713"]],[17,20,["H398"]],[20,21,["H854"]],[21,24,["H905"]],[24,25,["H3588"]],[25,27,["H4713"]],[27,28,["H3201"]],[28,29,["H3808"]],[29,30,["H398"]],[30,31,["H3899"]],[31,32,["H854"]],[32,34,["H5680"]],[34,35,["H3588"]],[35,36,["H1931"]],[36,39,["H8441"]],[39,42,["H4714"]]]},{"k":1323,"v":[[0,3,["H3427"]],[3,4,["H6440"]],[4,7,["H1060"]],[7,11,["H1062"]],[11,14,["H6810"]],[14,18,["H6812"]],[18,21,["H376"]],[21,22,["H8539"]],[22,23,["H376"]],[23,24,["H413"]],[24,25,["H7453"]]]},{"k":1324,"v":[[0,3,["H5375"]],[3,6,["H4864"]],[6,7,["H413"]],[7,9,["H4480","H854"]],[9,10,["H6440"]],[10,13,["H1144"]],[13,14,["H4864"]],[14,20,["H7235","H4480","H4864","H2568","H3027"]],[20,21,["H3605"]],[21,26,["H8354"]],[26,29,["H7937"]],[29,30,["H5973"]],[30,31,[]]]},{"k":1325,"v":[[0,3,["H6680","(H853)"]],[3,5,["H834","H5921"]],[5,8,["H1004"]],[8,9,["H559"]],[9,10,["H4390","(H853)"]],[10,12,["H376"]],[12,13,["H572"]],[13,15,["H400"]],[15,18,["H834"]],[18,20,["H3201"]],[20,21,["H5375"]],[21,23,["H7760"]],[23,25,["H376"]],[25,26,["H3701"]],[26,29,["H572"]],[29,30,["H6310"]]]},{"k":1326,"v":[[0,2,["H7760"]],[2,4,["H1375"]],[4,6,["H3701"]],[6,7,["H1375"]],[7,10,["H572"]],[10,11,["H6310"]],[11,14,["H6996"]],[14,17,["H7668"]],[17,18,["H3701"]],[18,21,["H6213"]],[21,25,["H1697"]],[25,26,["H834"]],[26,27,["H3130"]],[27,29,["H1696"]]]},{"k":1327,"v":[[0,5,["H1242"]],[5,7,["H215"]],[7,9,["H376"]],[9,12,["H7971"]],[12,13,["H1992"]],[13,16,["H2543"]]]},{"k":1328,"v":[[0,3,["H1992"]],[3,7,["H3318","(H853)"]],[7,9,["H5892"]],[9,11,["H3808"]],[11,14,["H7368"]],[14,15,["H3130"]],[15,16,["H559"]],[16,19,["H834","H5921","H1004"]],[19,20,["H6965"]],[20,21,["H7291"]],[21,22,["H310"]],[22,24,["H376"]],[24,29,["H5381"]],[29,31,["H559"]],[31,32,["H413"]],[32,34,["H4100"]],[34,37,["H7999"]],[37,38,["H7451"]],[38,39,["H8478"]],[39,40,["H2896"]]]},{"k":1329,"v":[[0,2,["H3808"]],[2,3,["H2088"]],[3,6,["H834"]],[6,8,["H113"]],[8,9,["H8354"]],[9,14,["H1931","H5172","H5172"]],[14,18,["H7489"]],[18,20,["H834"]],[20,21,["H6213"]]]},{"k":1330,"v":[[0,3,["H5381"]],[3,7,["H1696"]],[7,8,["H413"]],[8,9,["(H853)"]],[9,11,["H428"]],[11,12,["H1697"]]]},{"k":1331,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H4100"]],[6,7,["H1696"]],[7,9,["H113"]],[9,10,["H428"]],[10,11,["H1697"]],[11,13,["H2486"]],[13,16,["H5650"]],[16,18,["H4480","H6213"]],[18,21,["H2088"]],[21,22,["H1697"]]]},{"k":1332,"v":[[0,1,["H2005"]],[1,3,["H3701"]],[3,4,["H834"]],[4,6,["H4672"]],[6,9,["H572"]],[9,10,["H6310"]],[10,13,["H7725"]],[13,14,["H413"]],[14,19,["H4480","H776"]],[19,21,["H3667"]],[21,22,["H349"]],[22,26,["H1589"]],[26,31,["H4480","H1004","H113"]],[31,32,["H3701"]],[32,33,["H176"]],[33,34,["H2091"]]]},{"k":1333,"v":[[0,1,["H854"]],[1,2,["H834"]],[2,5,["H4480","H5650"]],[5,8,["H4672"]],[8,12,["H4191"]],[12,14,["H587"]],[14,15,["H1571"]],[15,17,["H1961"]],[17,19,["H113"]],[19,20,["H5650"]]]},{"k":1334,"v":[[0,3,["H559"]],[3,4,["H6258"]],[4,5,["H1571","H3651"]],[5,7,["H1931"]],[7,12,["H1697"]],[12,14,["H854"]],[14,15,["H834"]],[15,18,["H4672"]],[18,20,["H1961"]],[20,22,["H5650"]],[22,24,["H859"]],[24,26,["H1961"]],[26,27,["H5355"]]]},{"k":1335,"v":[[0,3,["H4116"]],[3,5,["H3381"]],[5,7,["H376","(H853)"]],[7,9,["H572"]],[9,12,["H776"]],[12,14,["H6605"]],[14,16,["H376"]],[16,18,["H572"]]]},{"k":1336,"v":[[0,3,["H2664"]],[3,5,["H2490"]],[5,8,["H1419"]],[8,10,["H3615"]],[10,13,["H6996"]],[13,16,["H1375"]],[16,18,["H4672"]],[18,20,["H1144"]],[20,21,["H572"]]]},{"k":1337,"v":[[0,3,["H7167"]],[3,5,["H8071"]],[5,7,["H6006"]],[7,9,["H376"]],[9,11,["H2543"]],[11,13,["H7725"]],[13,16,["H5892"]]]},{"k":1338,"v":[[0,2,["H3063"]],[2,5,["H251"]],[5,6,["H935"]],[6,8,["H3130"]],[8,9,["H1004"]],[9,11,["H1931"]],[11,13,["H5750"]],[13,14,["H8033"]],[14,17,["H5307"]],[17,18,["H6440"]],[18,22,["H776"]]]},{"k":1339,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,6,["H4100"]],[6,7,["H4639"]],[7,9,["H2088"]],[9,10,["H834"]],[10,13,["H6213"]],[13,14,["H3045"]],[14,16,["H3808"]],[16,17,["H3588"]],[17,20,["H376"]],[20,22,["H3644"]],[22,25,["H5172","H5172"]]]},{"k":1340,"v":[[0,2,["H3063"]],[2,3,["H559"]],[3,4,["H4100"]],[4,7,["H559"]],[7,10,["H113"]],[10,11,["H4100"]],[11,14,["H1696"]],[14,16,["H4100"]],[16,20,["H6663"]],[20,21,["H430"]],[21,24,["H4672","(H853)"]],[24,26,["H5771"]],[26,29,["H5650"]],[29,30,["H2009"]],[30,34,["H113"]],[34,35,["H5650"]],[35,36,["H1571"]],[36,37,["H587"]],[37,40,["H1571"]],[40,42,["H834","H3027"]],[42,44,["H1375"]],[44,46,["H4672"]]]},{"k":1341,"v":[[0,3,["H559"]],[3,5,["H2486"]],[5,9,["H4480","H6213"]],[9,10,["H2063"]],[10,13,["H376"]],[13,15,["H834"]],[15,16,["H3027"]],[16,18,["H1375"]],[18,20,["H4672"]],[20,21,["H1931"]],[21,23,["H1961"]],[23,25,["H5650"]],[25,29,["H859"]],[29,32,["H5927"]],[32,34,["H7965"]],[34,35,["H413"]],[35,37,["H1"]]]},{"k":1342,"v":[[0,2,["H3063"]],[2,4,["H5066"]],[4,6,["H413"]],[6,8,["H559"]],[8,9,["H994"]],[9,11,["H113"]],[11,14,["H5650"]],[14,17,["H4994"]],[17,18,["H1696"]],[18,20,["H1697"]],[20,23,["H113"]],[23,24,["H241"]],[24,27,["H408"]],[27,29,["H639"]],[29,30,["H2734"]],[30,33,["H5650"]],[33,34,["H3588"]],[34,38,["H3644"]],[38,39,["H6547"]]]},{"k":1343,"v":[[0,2,["H113"]],[2,3,["H7592","(H853)"]],[3,5,["H5650"]],[5,6,["H559"]],[6,7,["H3426"]],[7,10,["H1"]],[10,11,["H176"]],[11,13,["H251"]]]},{"k":1344,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H113"]],[6,8,["H3426"]],[8,10,["H1"]],[10,13,["H2205"]],[13,16,["H3206"]],[16,20,["H2208"]],[20,23,["H6996"]],[23,26,["H251"]],[26,28,["H4191"]],[28,30,["H1931"]],[30,31,["H905"]],[31,33,["H3498"]],[33,36,["H517"]],[36,39,["H1"]],[39,40,["H157"]],[40,41,[]]]},{"k":1345,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H5650"]],[6,9,["H3381"]],[9,10,["H413"]],[10,15,["H7760"]],[15,17,["H5869"]],[17,18,["H5921"]],[18,19,[]]]},{"k":1346,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H113"]],[6,8,["H5288"]],[8,9,["H3808","H3201"]],[9,10,["H5800","(H853)"]],[10,12,["H1"]],[12,17,["H5800","(H853)"]],[17,19,["H1"]],[19,23,["H4191"]]]},{"k":1347,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H5650"]],[6,7,["H518","H3808"]],[7,9,["H6996"]],[9,10,["H251"]],[10,12,["H3381"]],[12,13,["H854"]],[13,17,["H7200"]],[17,19,["H6440"]],[19,20,["H3808"]],[20,21,["H3254"]]]},{"k":1348,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,9,["H5927"]],[9,10,["H413"]],[10,12,["H5650"]],[12,14,["H1"]],[14,16,["H5046"]],[16,17,["(H853)"]],[17,19,["H1697"]],[19,22,["H113"]]]},{"k":1349,"v":[[0,3,["H1"]],[3,4,["H559"]],[4,6,["H7725"]],[6,8,["H7666"]],[8,11,["H4592"]],[11,12,["H400"]]]},{"k":1350,"v":[[0,3,["H559"]],[3,5,["H3808","H3201"]],[5,7,["H3381"]],[7,8,["H518"]],[8,10,["H6996"]],[10,11,["H251"]],[11,12,["H3426"]],[12,13,["H854"]],[13,19,["H3381"]],[19,20,["H3588"]],[20,22,["H3201"]],[22,23,["H3808"]],[23,24,["H7200"]],[24,26,["H376"]],[26,27,["H6440"]],[27,28,["H369"]],[28,30,["H6996"]],[30,31,["H251"]],[31,33,["H854"]],[33,34,[]]]},{"k":1351,"v":[[0,3,["H5650"]],[3,5,["H1"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H859"]],[9,10,["H3045"]],[10,11,["H3588"]],[11,13,["H802"]],[13,14,["H3205"]],[14,16,["H8147"]],[16,17,[]]]},{"k":1352,"v":[[0,3,["H259"]],[3,5,["H3318"]],[5,6,["H4480","H854"]],[6,10,["H559"]],[10,11,["H389"]],[11,16,["H2963","H2963"]],[16,19,["H7200"]],[19,21,["H3808"]],[21,22,["H5704","H2008"]]]},{"k":1353,"v":[[0,4,["H3947","(H853)"]],[4,5,["H2088"]],[5,6,["H1571"]],[6,7,["H4480","H5973"]],[7,8,["H6440"]],[8,10,["H611"]],[10,11,["H7136"]],[11,16,["H3381","(H853)"]],[16,19,["H7872"]],[19,21,["H7451"]],[21,24,["H7585"]]]},{"k":1354,"v":[[0,1,["H6258"]],[1,5,["H935"]],[5,6,["H413"]],[6,8,["H5650"]],[8,10,["H1"]],[10,13,["H5288"]],[13,15,["H369"]],[15,16,["H854"]],[16,21,["H5315"]],[21,24,["H7194"]],[24,28,["H5315"]]]},{"k":1355,"v":[[0,5,["H1961"]],[5,8,["H7200"]],[8,9,["H3588"]],[9,11,["H5288"]],[11,13,["H369"]],[13,19,["H4191"]],[19,22,["H5650"]],[22,25,["H3381","(H853)"]],[25,28,["H7872"]],[28,31,["H5650"]],[31,33,["H1"]],[33,35,["H3015"]],[35,38,["H7585"]]]},{"k":1356,"v":[[0,1,["H3588"]],[1,3,["H5650"]],[3,5,["H6148"]],[5,6,["(H853)"]],[6,8,["H5288"]],[8,9,["H4480","H5973"]],[9,11,["H1"]],[11,12,["H559"]],[12,13,["H518"]],[13,15,["H935"]],[15,17,["H3808"]],[17,18,["H413"]],[18,25,["H2398"]],[25,28,["H1"]],[28,30,["H3605","H3117"]]]},{"k":1357,"v":[[0,1,["H6258"]],[1,5,["H4994"]],[5,8,["H5650"]],[8,9,["H3427"]],[9,11,["H8478"]],[11,13,["H5288"]],[13,15,["H5650"]],[15,18,["H113"]],[18,22,["H5288"]],[22,24,["H5927"]],[24,25,["H5973"]],[25,27,["H251"]]]},{"k":1358,"v":[[0,1,["H3588"]],[1,2,["H349"]],[2,6,["H5927"]],[6,7,["H413"]],[7,9,["H1"]],[9,12,["H5288"]],[12,14,["H369"]],[14,15,["H854"]],[15,18,["H6435"]],[18,20,["H7200"]],[20,22,["H7451"]],[22,23,["H834"]],[23,26,["H4672","(H853)"]],[26,28,["H1"]]]},{"k":1359,"v":[[0,2,["H3130"]],[2,3,["H3201"]],[3,4,["H3808"]],[4,6,["H662"]],[6,8,["H3605"]],[8,11,["H5324"]],[11,12,["H5921"]],[12,16,["H7121"]],[16,18,["H3605"]],[18,19,["H376"]],[19,22,["H3318"]],[22,23,["H4480","H5921"]],[23,27,["H5975"]],[27,28,["H3808"]],[28,29,["H376"]],[29,30,["H854"]],[30,33,["H3130"]],[33,36,["H3045"]],[36,37,["H413"]],[37,39,["H251"]]]},{"k":1360,"v":[[0,4,["H5414","(H853)","H6963","H1065"]],[4,7,["H4714"]],[7,10,["H1004"]],[10,12,["H6547"]],[12,13,["H8085"]]]},{"k":1361,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H251"]],[6,7,["H589"]],[7,9,["H3130"]],[9,12,["H1"]],[12,13,["H5750"]],[13,14,["H2416"]],[14,17,["H251"]],[17,18,["H3201"]],[18,19,["H3808"]],[19,20,["H6030"]],[20,22,["H3588"]],[22,25,["H926"]],[25,28,["H4480","H6440"]]]},{"k":1362,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H251"]],[6,8,["H5066"]],[8,9,["H413"]],[9,13,["H4994"]],[13,17,["H5066"]],[17,20,["H559"]],[20,21,["H589"]],[21,23,["H3130"]],[23,25,["H251"]],[25,26,["H834"]],[26,28,["H4376"]],[28,30,["H4714"]]]},{"k":1363,"v":[[0,1,["H6258"]],[1,4,["H408"]],[4,5,["H6087"]],[5,6,["H408"]],[6,7,["H2734"]],[7,9,["H5869"]],[9,10,["H3588"]],[10,12,["H4376"]],[12,14,["H2008"]],[14,15,["H3588"]],[15,16,["H430"]],[16,18,["H7971"]],[18,20,["H6440"]],[20,24,["H4241"]]]},{"k":1364,"v":[[0,1,["H3588"]],[1,2,["H2088"]],[2,4,["H8141"]],[4,7,["H7458"]],[7,9,["H7130"]],[9,11,["H776"]],[11,13,["H5750"]],[13,16,["H2568"]],[16,17,["H8141"]],[17,20,["H834"]],[20,23,["H369"]],[23,25,["H2758"]],[25,27,["H7105"]]]},{"k":1365,"v":[[0,2,["H430"]],[2,3,["H7971"]],[3,5,["H6440"]],[5,8,["H7760"]],[8,11,["H7611"]],[11,14,["H776"]],[14,19,["H2421"]],[19,22,["H1419"]],[22,23,["H6413"]]]},{"k":1366,"v":[[0,2,["H6258"]],[2,5,["H3808"]],[5,6,["H859"]],[6,8,["H7971"]],[8,10,["H2008"]],[10,11,["H3588"]],[11,12,["H430"]],[12,16,["H7760"]],[16,19,["H1"]],[19,21,["H6547"]],[21,23,["H113"]],[23,25,["H3605"]],[25,27,["H1004"]],[27,30,["H4910"]],[30,32,["H3605"]],[32,34,["H776"]],[34,36,["H4714"]]]},{"k":1367,"v":[[0,1,["H4116"]],[1,5,["H5927"]],[5,6,["H413"]],[6,8,["H1"]],[8,10,["H559"]],[10,11,["H413"]],[11,13,["H3541"]],[13,14,["H559"]],[14,16,["H1121"]],[16,17,["H3130"]],[17,18,["H430"]],[18,20,["H7760"]],[20,22,["H113"]],[22,24,["H3605"]],[24,25,["H4714"]],[25,27,["H3381"]],[27,28,["H413"]],[28,30,["H5975"]],[30,31,["H408"]]]},{"k":1368,"v":[[0,4,["H3427"]],[4,7,["H776"]],[7,9,["H1657"]],[9,13,["H1961"]],[13,14,["H7138"]],[14,15,["H413"]],[15,17,["H859"]],[17,20,["H1121"]],[20,23,["H1121"]],[23,24,["H1121"]],[24,27,["H6629"]],[27,30,["H1241"]],[30,32,["H3605"]],[32,33,["H834"]],[33,35,[]]]},{"k":1369,"v":[[0,2,["H8033"]],[2,5,["H3557"]],[5,7,["H3588"]],[7,8,["H5750"]],[8,11,["H2568"]],[11,12,["H8141"]],[12,14,["H7458"]],[14,15,["H6435"]],[15,16,["H859"]],[16,19,["H1004"]],[19,21,["H3605"]],[21,22,["H834"]],[22,27,["H3423"]]]},{"k":1370,"v":[[0,2,["H2009"]],[2,4,["H5869"]],[4,5,["H7200"]],[5,8,["H5869"]],[8,11,["H251"]],[11,12,["H1144"]],[12,13,["H3588"]],[13,17,["H6310"]],[17,19,["H1696"]],[19,20,["H413"]],[20,21,[]]]},{"k":1371,"v":[[0,4,["H5046"]],[4,6,["H1"]],[6,7,["(H853)"]],[7,8,["H3605"]],[8,10,["H3519"]],[10,12,["H4714"]],[12,15,["H3605"]],[15,16,["H834"]],[16,19,["H7200"]],[19,23,["H4116"]],[23,26,["H3381","(H853)"]],[26,28,["H1"]],[28,29,["H2008"]]]},{"k":1372,"v":[[0,3,["H5307"]],[3,4,["H5921"]],[4,6,["H251"]],[6,7,["H1144"]],[7,8,["H6677"]],[8,10,["H1058"]],[10,12,["H1144"]],[12,13,["H1058"]],[13,14,["H5921"]],[14,16,["H6677"]]]},{"k":1373,"v":[[0,3,["H5401"]],[3,4,["H3605"]],[4,6,["H251"]],[6,8,["H1058"]],[8,9,["H5921"]],[9,12,["H310"]],[12,13,["H3651"]],[13,15,["H251"]],[15,16,["H1696"]],[16,17,["H854"]],[17,18,[]]]},{"k":1374,"v":[[0,3,["H6963"]],[3,6,["H8085"]],[6,8,["H6547"]],[8,9,["H1004"]],[9,10,["H559"]],[10,11,["H3130"]],[11,12,["H251"]],[12,14,["H935"]],[14,19,["H3190","H5869","H6547"]],[19,22,["H5650"]]]},{"k":1375,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H251"]],[9,10,["H2063"]],[10,11,["H6213"]],[11,13,["H2943","(H853)"]],[13,15,["H1165"]],[15,17,["H1980"]],[17,18,["H935"]],[18,22,["H776"]],[22,24,["H3667"]]]},{"k":1376,"v":[[0,2,["H3947","(H853)"]],[2,4,["H1"]],[4,7,["H1004"]],[7,9,["H935"]],[9,10,["H413"]],[10,15,["H5414"]],[15,16,["(H853)"]],[16,18,["H2898"]],[18,21,["H776"]],[21,23,["H4714"]],[23,27,["H398","(H853)"]],[27,29,["H2459"]],[29,32,["H776"]]]},{"k":1377,"v":[[0,2,["H859"]],[2,4,["H6680"]],[4,5,["H2063"]],[5,6,["H6213"]],[6,8,["H3947"]],[8,10,["H5699"]],[10,14,["H4480","H776"]],[14,16,["H4714"]],[16,20,["H2945"]],[20,24,["H802"]],[24,26,["H5375","(H853)"]],[26,28,["H1"]],[28,30,["H935"]]]},{"k":1378,"v":[[0,2,["H5869","H2347"]],[2,3,["H408"]],[3,5,["H3627"]],[5,6,["H3588"]],[6,8,["H2898"]],[8,10,["H3605"]],[10,12,["H776"]],[12,14,["H4714"]],[14,16,[]]]},{"k":1379,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,7,["H3651"]],[7,9,["H3130"]],[9,10,["H5414"]],[10,12,["H5699"]],[12,14,["H5921"]],[14,16,["H6310"]],[16,18,["H6547"]],[18,20,["H5414"]],[20,22,["H6720"]],[22,25,["H1870"]]]},{"k":1380,"v":[[0,2,["H3605"]],[2,6,["H5414"]],[6,8,["H376"]],[8,9,["H2487"]],[9,11,["H8071"]],[11,14,["H1144"]],[14,16,["H5414"]],[16,17,["H7969"]],[17,18,["H3967"]],[18,21,["H3701"]],[21,23,["H2568"]],[23,24,["H2487"]],[24,26,["H8071"]]]},{"k":1381,"v":[[0,4,["H1"]],[4,6,["H7971"]],[6,8,["H2063"]],[8,10,["H6235"]],[10,11,["H2543"]],[11,12,["H5375"]],[12,16,["H4480","H2898"]],[16,18,["H4714"]],[18,20,["H6235"]],[20,22,["H860"]],[22,23,["H5375"]],[23,25,["H1250"]],[25,27,["H3899"]],[27,29,["H4202"]],[29,32,["H1"]],[32,35,["H1870"]]]},{"k":1382,"v":[[0,3,["H7971","(H853)"]],[3,5,["H251"]],[5,9,["H1980"]],[9,12,["H559"]],[12,13,["H413"]],[13,20,["H7264","H408"]],[20,23,["H1870"]]]},{"k":1383,"v":[[0,4,["H5927"]],[4,7,["H4480","H4714"]],[7,9,["H935"]],[9,12,["H776"]],[12,14,["H3667"]],[14,15,["H413"]],[15,16,["H3290"]],[16,18,["H1"]]]},{"k":1384,"v":[[0,2,["H5046"]],[2,4,["H559"]],[4,5,["H3130"]],[5,7,["H5750"]],[7,8,["H2416"]],[8,10,["H1931"]],[10,12,["H4910"]],[12,14,["H3605"]],[14,16,["H776"]],[16,18,["H4714"]],[18,21,["H3820"]],[21,22,["H6313"]],[22,23,["H3588"]],[23,25,["H539"]],[25,27,["H3808"]]]},{"k":1385,"v":[[0,3,["H1696","H413"]],[3,4,["(H853)"]],[4,5,["H3605"]],[5,7,["H1697"]],[7,9,["H3130"]],[9,10,["H834"]],[10,13,["H1696"]],[13,14,["H413"]],[14,19,["H7200","(H853)"]],[19,21,["H5699"]],[21,22,["H834"]],[22,23,["H3130"]],[23,25,["H7971"]],[25,27,["H5375"]],[27,30,["H7307"]],[30,32,["H3290"]],[32,34,["H1"]],[34,35,["H2421"]]]},{"k":1386,"v":[[0,2,["H3478"]],[2,3,["H559"]],[3,6,["H7227"]],[6,7,["H3130"]],[7,9,["H1121"]],[9,11,["H5750"]],[11,12,["H2416"]],[12,15,["H1980"]],[15,17,["H7200"]],[17,19,["H2962"]],[19,21,["H4191"]]]},{"k":1387,"v":[[0,2,["H3478"]],[2,5,["H5265"]],[5,7,["H3605"]],[7,8,["H834"]],[8,12,["H935"]],[12,14,["H884"]],[14,16,["H2076"]],[16,17,["H2077"]],[17,20,["H430"]],[20,23,["H1"]],[23,24,["H3327"]]]},{"k":1388,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,5,["H3478"]],[5,8,["H4759"]],[8,11,["H3915"]],[11,13,["H559"]],[13,14,["H3290"]],[14,15,["H3290"]],[15,18,["H559"]],[18,19,["H2009"]],[19,21,[]]]},{"k":1389,"v":[[0,3,["H559"]],[3,4,["H595"]],[4,6,["H410"]],[6,8,["H430"]],[8,11,["H1"]],[11,12,["H3372"]],[12,13,["H408"]],[13,16,["H4480","H3381"]],[16,18,["H4714"]],[18,19,["H3588"]],[19,22,["H8033"]],[22,23,["H7760"]],[23,27,["H1419"]],[27,28,["H1471"]]]},{"k":1390,"v":[[0,1,["H595"]],[1,4,["H3381"]],[4,5,["H5973"]],[5,8,["H4714"]],[8,10,["H595"]],[10,12,["H1571"]],[12,16,["H5927","H5927"]],[16,19,["H3130"]],[19,21,["H7896"]],[21,23,["H3027"]],[23,24,["H5921"]],[24,26,["H5869"]]]},{"k":1391,"v":[[0,2,["H3290"]],[2,4,["H6965"]],[4,6,["H4480","H884"]],[6,9,["H1121"]],[9,11,["H3478"]],[11,12,["H5375","(H853)"]],[12,13,["H3290"]],[13,15,["H1"]],[15,19,["H2945"]],[19,22,["H802"]],[22,25,["H5699"]],[25,26,["H834"]],[26,27,["H6547"]],[27,29,["H7971"]],[29,31,["H5375"]],[31,32,[]]]},{"k":1392,"v":[[0,3,["H3947","(H853)"]],[3,5,["H4735"]],[5,8,["H7399"]],[8,9,["H834"]],[9,12,["H7408"]],[12,15,["H776"]],[15,17,["H3667"]],[17,19,["H935"]],[19,21,["H4714"]],[21,22,["H3290"]],[22,24,["H3605"]],[24,26,["H2233"]],[26,27,["H854"]],[27,28,[]]]},{"k":1393,"v":[[0,2,["H1121"]],[2,5,["H1121"]],[5,6,["H1121"]],[6,7,["H854"]],[7,10,["H1323"]],[10,13,["H1121"]],[13,14,["H1323"]],[14,16,["H3605"]],[16,18,["H2233"]],[18,19,["H935"]],[19,21,["H854"]],[21,24,["H4714"]]]},{"k":1394,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H1121"]],[8,10,["H3478"]],[10,12,["H935"]],[12,14,["H4714"]],[14,15,["H3290"]],[15,18,["H1121"]],[18,19,["H7205"]],[19,20,["H3290"]],[20,21,["H1060"]]]},{"k":1395,"v":[[0,3,["H1121"]],[3,5,["H7205"]],[5,6,["H2585"]],[6,8,["H6396"]],[8,10,["H2696"]],[10,12,["H3756"]]]},{"k":1396,"v":[[0,3,["H1121"]],[3,5,["H8095"]],[5,6,["H3223"]],[6,8,["H3226"]],[8,10,["H161"]],[10,12,["H3199"]],[12,14,["H6714"]],[14,16,["H7586"]],[16,18,["H1121"]],[18,22,["H3669"]]]},{"k":1397,"v":[[0,3,["H1121"]],[3,5,["H3878"]],[5,6,["H1648"]],[6,7,["H6955"]],[7,9,["H4847"]]]},{"k":1398,"v":[[0,3,["H1121"]],[3,5,["H3063"]],[5,6,["H6147"]],[6,8,["H209"]],[8,10,["H7956"]],[10,12,["H6557"]],[12,14,["H2226"]],[14,16,["H6147"]],[16,18,["H209"]],[18,19,["H4191"]],[19,22,["H776"]],[22,24,["H3667"]],[24,27,["H1121"]],[27,29,["H6557"]],[29,30,["H1961"]],[30,31,["H2696"]],[31,33,["H2538"]]]},{"k":1399,"v":[[0,3,["H1121"]],[3,5,["H3485"]],[5,6,["H8439"]],[6,8,["H6312"]],[8,10,["H3102"]],[10,12,["H8110"]]]},{"k":1400,"v":[[0,3,["H1121"]],[3,5,["H2074"]],[5,6,["H5624"]],[6,8,["H356"]],[8,10,["H3177"]]]},{"k":1401,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H3812"]],[6,7,["H834"]],[7,9,["H3205"]],[9,11,["H3290"]],[11,13,["H6307"]],[13,14,["H854"]],[14,16,["H1323"]],[16,17,["H1783"]],[17,18,["H3605"]],[18,20,["H5315"]],[20,23,["H1121"]],[23,26,["H1323"]],[26,28,["H7970"]],[28,30,["H7969"]]]},{"k":1402,"v":[[0,3,["H1121"]],[3,5,["H1410"]],[5,6,["H6837"]],[6,8,["H2291"]],[8,9,["H7764"]],[9,11,["H675"]],[11,12,["H6179"]],[12,14,["H722"]],[14,16,["H692"]]]},{"k":1403,"v":[[0,3,["H1121"]],[3,5,["H836"]],[5,6,["H3232"]],[6,8,["H3438"]],[8,10,["H3440"]],[10,12,["H1283"]],[12,14,["H8294"]],[14,16,["H269"]],[16,19,["H1121"]],[19,21,["H1283"]],[21,22,["H2268"]],[22,24,["H4439"]]]},{"k":1404,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H2153"]],[6,7,["H834"]],[7,8,["H3837"]],[8,9,["H5414"]],[9,11,["H3812"]],[11,13,["H1323"]],[13,14,["(H853)"]],[14,15,["H428"]],[15,17,["H3205"]],[17,19,["H3290"]],[19,21,["H8337","H6240"]],[21,22,["H5315"]]]},{"k":1405,"v":[[0,2,["H1121"]],[2,4,["H7354"]],[4,5,["H3290"]],[5,6,["H802"]],[6,7,["H3130"]],[7,9,["H1144"]]]},{"k":1406,"v":[[0,3,["H3130"]],[3,6,["H776"]],[6,8,["H4714"]],[8,10,["H3205","(H853)"]],[10,11,["H4519"]],[11,13,["H669"]],[13,14,["H834"]],[14,15,["H621"]],[15,17,["H1323"]],[17,19,["H6319"]],[19,20,["H3548"]],[20,22,["H204"]],[22,23,["H3205"]],[23,25,[]]]},{"k":1407,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,7,["H1106"]],[7,9,["H1071"]],[9,11,["H788"]],[11,12,["H1617"]],[12,14,["H5283"]],[14,15,["H278"]],[15,17,["H7220"]],[17,18,["H4649"]],[18,20,["H2650"]],[20,22,["H714"]]]},{"k":1408,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H7354"]],[6,7,["H834"]],[7,9,["H3205"]],[9,11,["H3290"]],[11,12,["H3605"]],[12,14,["H5315"]],[14,16,["H702","H6240"]]]},{"k":1409,"v":[[0,3,["H1121"]],[3,5,["H1835"]],[5,6,["H2366"]]]},{"k":1410,"v":[[0,3,["H1121"]],[3,5,["H5321"]],[5,6,["H3183"]],[6,8,["H1476"]],[8,10,["H3337"]],[10,12,["H8006"]]]},{"k":1411,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H1090"]],[6,7,["H834"]],[7,8,["H3837"]],[8,9,["H5414"]],[9,11,["H7354"]],[11,13,["H1323"]],[13,16,["H3205","(H853)"]],[16,17,["H428"]],[17,19,["H3290"]],[19,20,["H3605"]],[20,22,["H5315"]],[22,24,["H7651"]]]},{"k":1412,"v":[[0,1,["H3605"]],[1,3,["H5315"]],[3,5,["H935"]],[5,7,["H3290"]],[7,9,["H4714"]],[9,12,["H3318"]],[12,15,["H3409"]],[15,16,["H4480","H905"]],[16,17,["H3290"]],[17,18,["H1121"]],[18,19,["H802"]],[19,20,["H3605"]],[20,22,["H5315"]],[22,24,["H8346"]],[24,26,["H8337"]]]},{"k":1413,"v":[[0,3,["H1121"]],[3,5,["H3130"]],[5,6,["H834"]],[6,8,["H3205"]],[8,11,["H4714"]],[11,13,["H8147"]],[13,14,["H5315"]],[14,15,["H3605"]],[15,17,["H5315"]],[17,20,["H1004"]],[20,22,["H3290"]],[22,24,["H935"]],[24,26,["H4714"]],[26,30,["H7657"]]]},{"k":1414,"v":[[0,3,["H7971"]],[3,4,["H3063"]],[4,5,["H6440"]],[5,7,["H413"]],[7,8,["H3130"]],[8,10,["H3384"]],[10,12,["H6440"]],[12,14,["H1657"]],[14,17,["H935"]],[17,20,["H776"]],[20,22,["H1657"]]]},{"k":1415,"v":[[0,2,["H3130"]],[2,4,["H631"]],[4,6,["H4818"]],[6,9,["H5927"]],[9,11,["H7125"]],[11,12,["H3478"]],[12,14,["H1"]],[14,16,["H1657"]],[16,19,["H7200"]],[19,20,["H413"]],[20,24,["H5307"]],[24,25,["H5921"]],[25,27,["H6677"]],[27,29,["H1058"]],[29,30,["H5921"]],[30,32,["H6677"]],[32,35,["H5750"]]]},{"k":1416,"v":[[0,2,["H3478"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,6,["H6471"]],[6,9,["H4191"]],[9,10,["H310"]],[10,13,["H7200","(H853)"]],[13,15,["H6440"]],[15,16,["H3588"]],[16,19,["H5750"]],[19,20,["H2416"]]]},{"k":1417,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H251"]],[6,8,["H413"]],[8,10,["H1"]],[10,11,["H1004"]],[11,15,["H5927"]],[15,17,["H5046"]],[17,18,["H6547"]],[18,20,["H559"]],[20,21,["H413"]],[21,24,["H251"]],[24,27,["H1"]],[27,28,["H1004"]],[28,29,["H834"]],[29,33,["H776"]],[33,35,["H3667"]],[35,37,["H935"]],[37,38,["H413"]],[38,39,[]]]},{"k":1418,"v":[[0,3,["H376"]],[3,5,["H7462","H6629"]],[5,6,["H3588"]],[6,8,["H376"]],[8,10,["H1961"]],[10,13,["H4735"]],[13,17,["H935"]],[17,19,["H6629"]],[19,22,["H1241"]],[22,24,["H3605"]],[24,25,["H834"]],[25,27,[]]]},{"k":1419,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,8,["H6547"]],[8,10,["H7121"]],[10,14,["H559"]],[14,15,["H4100"]],[15,18,["H4639"]]]},{"k":1420,"v":[[0,4,["H559"]],[4,6,["H5650"]],[6,7,["H376"]],[7,9,["H1961"]],[9,11,["H4735"]],[11,14,["H4480","H5271"]],[14,16,["H5704"]],[16,17,["H6258"]],[17,18,["H1571"]],[18,19,["H587"]],[19,21,["H1571"]],[21,23,["H1"]],[23,24,["H5668"]],[24,27,["H3427"]],[27,30,["H776"]],[30,32,["H1657"]],[32,33,["H3588"]],[33,34,["H3605"]],[34,35,["H7462","H6629"]],[35,38,["H8441"]],[38,41,["H4714"]]]},{"k":1421,"v":[[0,2,["H3130"]],[2,3,["H935"]],[3,5,["H5046"]],[5,6,["H6547"]],[6,8,["H559"]],[8,10,["H1"]],[10,13,["H251"]],[13,16,["H6629"]],[16,19,["H1241"]],[19,21,["H3605"]],[21,22,["H834"]],[22,26,["H935"]],[26,30,["H4480","H776"]],[30,32,["H3667"]],[32,34,["H2009"]],[34,39,["H776"]],[39,41,["H1657"]]]},{"k":1422,"v":[[0,3,["H3947"]],[3,4,["H4480","H7097"]],[4,7,["H251"]],[7,9,["H2568"]],[9,10,["H376"]],[10,12,["H3322"]],[12,14,["H6440"]],[14,15,["H6547"]]]},{"k":1423,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H251"]],[6,7,["H4100"]],[7,10,["H4639"]],[10,13,["H559"]],[13,14,["H413"]],[14,15,["H6547"]],[15,17,["H5650"]],[17,19,["H7462","H6629"]],[19,20,["H1571"]],[20,21,["H587"]],[21,23,["H1571"]],[23,25,["H1"]]]},{"k":1424,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,5,["H6547"]],[5,8,["H1481"]],[8,11,["H776"]],[11,14,["H935"]],[14,15,["H3588","H834"]],[15,17,["H5650"]],[17,19,["H369"]],[19,20,["H4829"]],[20,23,["H6629"]],[23,24,["H3588"]],[24,26,["H7458"]],[26,28,["H3515"]],[28,31,["H776"]],[31,33,["H3667"]],[33,34,["H6258"]],[34,38,["H4994"]],[38,41,["H5650"]],[41,42,["H3427"]],[42,45,["H776"]],[45,47,["H1657"]]]},{"k":1425,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,6,["H559"]],[6,8,["H1"]],[8,11,["H251"]],[11,13,["H935"]],[13,14,["H413"]],[14,15,[]]]},{"k":1426,"v":[[0,2,["H776"]],[2,4,["H4714"]],[4,6,["H6440"]],[6,10,["H4315"]],[10,13,["H776"]],[13,14,["(H853)"]],[14,16,["H1"]],[16,18,["H251"]],[18,20,["H3427"]],[20,23,["H776"]],[23,25,["H1657"]],[25,28,["H3427"]],[28,30,["H518"]],[30,32,["H3045"]],[32,34,["H376"]],[34,36,["H2428"]],[36,40,["H7760"]],[40,42,["H8269"]],[42,44,["H5921","H834"]],[44,45,["H4735"]]]},{"k":1427,"v":[[0,2,["H3130"]],[2,4,["H935","(H853)"]],[4,5,["H3290"]],[5,7,["H1"]],[7,9,["H5975"]],[9,11,["H6440"]],[11,12,["H6547"]],[12,14,["H3290"]],[14,15,["H1288","(H853)"]],[15,16,["H6547"]]]},{"k":1428,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3290"]],[5,6,["H4100"]],[6,7,["H3117","H8141","H2416"]],[7,9,[]]]},{"k":1429,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H6547"]],[5,7,["H3117"]],[7,10,["H8141"]],[10,13,["H4033"]],[13,16,["H3967"]],[16,18,["H7970"]],[18,19,["H8141"]],[19,20,["H4592"]],[20,22,["H7451"]],[22,25,["H3117"]],[25,28,["H8141"]],[28,31,["H2416"]],[31,32,["H1961"]],[32,35,["H3808"]],[35,37,["H5381","(H853)"]],[37,39,["H3117"]],[39,42,["H8141"]],[42,45,["H2416"]],[45,48,["H1"]],[48,51,["H3117"]],[51,54,["H4033"]]]},{"k":1430,"v":[[0,2,["H3290"]],[2,3,["H1288","(H853)"]],[3,4,["H6547"]],[4,7,["H3318"]],[7,9,["H4480","H6440"]],[9,10,["H6547"]]]},{"k":1431,"v":[[0,2,["H3130"]],[2,3,["H3427","(H853)"]],[3,5,["H1"]],[5,8,["H251"]],[8,10,["H5414"]],[10,13,["H272"]],[13,16,["H776"]],[16,18,["H4714"]],[18,21,["H4315"]],[21,24,["H776"]],[24,27,["H776"]],[27,29,["H7486"]],[29,30,["H834"]],[30,31,["H6547"]],[31,33,["H6680"]]]},{"k":1432,"v":[[0,2,["H3130"]],[2,3,["H3557","(H853)"]],[3,5,["H1"]],[5,8,["H251"]],[8,10,["H3605"]],[10,12,["H1"]],[12,13,["H1004"]],[13,15,["H3899"]],[15,17,["H6310"]],[17,19,["H2945"]]]},{"k":1433,"v":[[0,4,["H369"]],[4,5,["H3899"]],[5,7,["H3605"]],[7,9,["H776"]],[9,10,["H3588"]],[10,12,["H7458"]],[12,14,["H3966"]],[14,15,["H3515"]],[15,19,["H776"]],[19,21,["H4714"]],[21,25,["H776"]],[25,27,["H3667"]],[27,28,["H3856"]],[28,31,["H4480","H6440"]],[31,33,["H7458"]]]},{"k":1434,"v":[[0,2,["H3130"]],[2,4,["H3950","(H853)"]],[4,5,["H3605"]],[5,7,["H3701"]],[7,10,["H4672"]],[10,13,["H776"]],[13,15,["H4714"]],[15,19,["H776"]],[19,21,["H3667"]],[21,24,["H7668"]],[24,25,["H834"]],[25,26,["H1992"]],[26,27,["H7666"]],[27,29,["H3130"]],[29,30,["H935","(H853)"]],[30,32,["H3701"]],[32,34,["H6547"]],[34,35,["H1004"]]]},{"k":1435,"v":[[0,3,["H3701"]],[3,4,["H8552"]],[4,7,["H4480","H776"]],[7,9,["H4714"]],[9,13,["H4480","H776"]],[13,15,["H3667"]],[15,16,["H3605"]],[16,18,["H4714"]],[18,19,["H935"]],[19,20,["H413"]],[20,21,["H3130"]],[21,23,["H559"]],[23,24,["H3051"]],[24,26,["H3899"]],[26,28,["H4100"]],[28,31,["H4191"]],[31,34,["H5048"]],[34,35,["H3588"]],[35,37,["H3701"]],[37,38,["H656"]]]},{"k":1436,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H3051"]],[4,6,["H4735"]],[6,10,["H5414"]],[10,14,["H4735"]],[14,15,["H518"]],[15,16,["H3701"]],[16,17,["H656"]]]},{"k":1437,"v":[[0,3,["H935","(H853)"]],[3,5,["H4735"]],[5,6,["H413"]],[6,7,["H3130"]],[7,9,["H3130"]],[9,10,["H5414"]],[10,12,["H3899"]],[12,16,["H5483"]],[16,20,["H4735","H6629"]],[20,24,["H4735"]],[24,27,["H1241"]],[27,31,["H2543"]],[31,34,["H5095"]],[34,37,["H3899"]],[37,39,["H3605"]],[39,41,["H4735"]],[41,43,["H1931"]],[43,44,["H8141"]]]},{"k":1438,"v":[[0,2,["H1931"]],[2,3,["H8141"]],[3,5,["H8552"]],[5,7,["H935"]],[7,8,["H413"]],[8,11,["H8145"]],[11,12,["H8141"]],[12,14,["H559"]],[14,19,["H3808"]],[19,20,["H3582"]],[20,22,["H4480"]],[22,24,["H113"]],[24,26,["H3588","H518"]],[26,28,["H3701"]],[28,30,["H8552"]],[30,32,["H113"]],[32,34,["H413"]],[34,36,["H4735"]],[36,38,["H929"]],[38,41,["H3808"]],[41,43,["H7604"]],[43,46,["H6440"]],[46,49,["H113"]],[49,50,["H1115","H518"]],[50,52,["H1472"]],[52,55,["H127"]]]},{"k":1439,"v":[[0,1,["H4100"]],[1,4,["H4191"]],[4,7,["H5869"]],[7,8,["H1571"]],[8,9,["H587"]],[9,10,["H1571"]],[10,12,["H127"]],[12,13,["H7069"]],[13,17,["H127"]],[17,19,["H3899"]],[19,21,["H587"]],[21,24,["H127"]],[24,26,["H1961"]],[26,27,["H5650"]],[27,29,["H6547"]],[29,31,["H5414"]],[31,33,["H2233"]],[33,37,["H2421"]],[37,39,["H3808"]],[39,40,["H4191"]],[40,43,["H127"]],[43,46,["H3456","H3808"]]]},{"k":1440,"v":[[0,2,["H3130"]],[2,3,["H7069","(H853)"]],[3,4,["H3605"]],[4,6,["H127"]],[6,8,["H4714"]],[8,10,["H6547"]],[10,11,["H3588"]],[11,13,["H4714"]],[13,14,["H4376"]],[14,16,["H376"]],[16,18,["H7704"]],[18,19,["H3588"]],[19,21,["H7458"]],[21,22,["H2388"]],[22,23,["H5921"]],[23,27,["H776"]],[27,28,["H1961"]],[28,29,["H6547"]]]},{"k":1441,"v":[[0,5,["H5971"]],[5,7,["H5674"]],[7,10,["H5892"]],[10,13,["H4480","H7097"]],[13,16,["H1366"]],[16,18,["H4714"]],[18,20,["H5704"]],[20,23,["H7097"]],[23,24,[]]]},{"k":1442,"v":[[0,1,["H7535"]],[1,3,["H127"]],[3,6,["H3548"]],[6,7,["H7069"]],[7,9,["H3808"]],[9,10,["H3588"]],[10,12,["H3548"]],[12,15,["H2706"]],[15,18,["H4480","H854"]],[18,19,["H6547"]],[19,22,["H398","(H853)"]],[22,24,["H2706"]],[24,25,["H834"]],[25,26,["H6547"]],[26,27,["H5414"]],[27,29,["H5921","H3651"]],[29,31,["H4376"]],[31,32,["H3808","(H853)"]],[32,34,["H127"]]]},{"k":1443,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H2005"]],[7,10,["H7069"]],[10,13,["H3117"]],[13,16,["H127"]],[16,18,["H6547"]],[18,19,["H1887"]],[19,22,["H2233"]],[22,28,["H2232","(H853)"]],[28,30,["H127"]]]},{"k":1444,"v":[[0,6,["H1961"]],[6,9,["H8393"]],[9,13,["H5414"]],[13,15,["H2549"]],[15,18,["H6547"]],[18,20,["H702"]],[20,21,["H3027"]],[21,23,["H1961"]],[23,27,["H2233"]],[27,30,["H7704"]],[30,34,["H400"]],[34,37,["H834"]],[37,40,["H1004"]],[40,43,["H398"]],[43,47,["H2945"]]]},{"k":1445,"v":[[0,3,["H559"]],[3,8,["H2421"]],[8,11,["H4672"]],[11,12,["H2580"]],[12,15,["H5869"]],[15,18,["H113"]],[18,22,["H1961"]],[22,23,["H6547"]],[23,24,["H5650"]]]},{"k":1446,"v":[[0,2,["H3130"]],[2,3,["H7760"]],[3,6,["H2706"]],[6,7,["H5921"]],[7,9,["H127"]],[9,11,["H4714"]],[11,12,["H5704"]],[12,13,["H2088"]],[13,14,["H3117"]],[14,16,["H6547"]],[16,20,["H2569"]],[20,22,["H7535"]],[22,24,["H127"]],[24,27,["H3548"]],[27,28,["H905"]],[28,30,["H1961"]],[30,31,["H3808"]],[31,32,["H6547"]]]},{"k":1447,"v":[[0,2,["H3478"]],[2,3,["H3427"]],[3,6,["H776"]],[6,8,["H4714"]],[8,11,["H776"]],[11,13,["H1657"]],[13,17,["H270"]],[17,20,["H6509"]],[20,22,["H7235"]],[22,23,["H3966"]]]},{"k":1448,"v":[[0,2,["H3290"]],[2,3,["H2421"]],[3,6,["H776"]],[6,8,["H4714"]],[8,9,["H7651","H6240"]],[9,10,["H8141"]],[10,14,["H3117","H8141","H2416"]],[14,16,["H3290"]],[16,17,["H1961"]],[17,19,["H3967"]],[19,20,["H705"]],[20,22,["H7651"]],[22,23,["H8141"]]]},{"k":1449,"v":[[0,3,["H3117"]],[3,5,["H7126"]],[5,7,["H3478"]],[7,9,["H4191"]],[9,12,["H7121"]],[12,14,["H1121"]],[14,15,["H3130"]],[15,17,["H559"]],[17,20,["H518"]],[20,21,["H4994"]],[21,24,["H4672"]],[24,25,["H2580"]],[25,28,["H5869"]],[28,29,["H7760"]],[29,32,["H4994"]],[32,34,["H3027"]],[34,35,["H8478"]],[35,37,["H3409"]],[37,39,["H6213"]],[39,40,["H2617"]],[40,42,["H571"]],[42,43,["H5973"]],[43,45,["H6912"]],[45,47,["H408"]],[47,50,["H4994"]],[50,52,["H4714"]]]},{"k":1450,"v":[[0,4,["H7901"]],[4,5,["H5973"]],[5,7,["H1"]],[7,11,["H5375"]],[11,15,["H4480","H4714"]],[15,17,["H6912"]],[17,21,["H6900"]],[21,24,["H559"]],[24,25,["H595"]],[25,27,["H6213"]],[27,31,["H1697"]]]},{"k":1451,"v":[[0,3,["H559"]],[3,4,["H7650"]],[4,9,["H7650"]],[9,13,["H3478"]],[13,15,["H7812"]],[15,16,["H5921"]],[16,18,["H4296"]],[18,19,["H7218"]]]},{"k":1452,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H428"]],[7,8,["H1697"]],[8,11,["H559"]],[11,12,["H3130"]],[12,13,["H2009"]],[13,15,["H1"]],[15,17,["H2470"]],[17,20,["H3947"]],[20,21,["H5973"]],[21,22,["(H853)"]],[22,24,["H8147"]],[24,25,["H1121","(H853)"]],[25,26,["H4519"]],[26,28,["H669"]]]},{"k":1453,"v":[[0,3,["H5046"]],[3,4,["H3290"]],[4,6,["H559"]],[6,7,["H2009"]],[7,9,["H1121"]],[9,10,["H3130"]],[10,11,["H935"]],[11,12,["H413"]],[12,15,["H3478"]],[15,17,["H2388"]],[17,19,["H3427"]],[19,20,["H5921"]],[20,22,["H4296"]]]},{"k":1454,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,6,["H410"]],[6,7,["H7706"]],[7,8,["H7200"]],[8,9,["H413"]],[9,12,["H3870"]],[12,15,["H776"]],[15,17,["H3667"]],[17,19,["H1288"]],[19,20,[]]]},{"k":1455,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H2009"]],[5,10,["H6509"]],[10,12,["H7235"]],[12,17,["H5414"]],[17,21,["H6951"]],[21,23,["H5971"]],[23,26,["H5414","(H853)"]],[26,27,["H2063"]],[27,28,["H776"]],[28,31,["H2233"]],[31,32,["H310"]],[32,36,["H5769"]],[36,37,["H272"]]]},{"k":1456,"v":[[0,2,["H6258"]],[2,4,["H8147"]],[4,5,["H1121"]],[5,6,["H669"]],[6,8,["H4519"]],[8,11,["H3205"]],[11,16,["H776"]],[16,18,["H4714"]],[18,19,["H5704"]],[19,21,["H935"]],[21,22,["H413"]],[22,25,["H4714"]],[25,29,["H7205"]],[29,31,["H8095"]],[31,34,["H1961"]],[34,35,[]]]},{"k":1457,"v":[[0,3,["H4138"]],[3,4,["H834"]],[4,6,["H3205"]],[6,7,["H310"]],[7,10,["H1961"]],[10,15,["H7121"]],[15,16,["H5921"]],[16,18,["H8034"]],[18,21,["H251"]],[21,24,["H5159"]]]},{"k":1458,"v":[[0,4,["H589"]],[4,7,["H935"]],[7,9,["H4480","H6307"]],[9,10,["H7354"]],[10,11,["H4191"]],[11,12,["H5921"]],[12,16,["H776"]],[16,18,["H3667"]],[18,21,["H1870"]],[21,23,["H5750"]],[23,28,["H3530"]],[28,29,["H776"]],[29,31,["H935"]],[31,33,["H672"]],[33,36,["H6912"]],[36,38,["H8033"]],[38,41,["H1870"]],[41,43,["H672"]],[43,45,["H1931"]],[45,47,["H1035"]]]},{"k":1459,"v":[[0,2,["H3478"]],[2,3,["H7200"]],[3,4,["H3130","(H853)"]],[4,5,["H1121"]],[5,7,["H559"]],[7,8,["H4310"]],[8,10,["H428"]]]},{"k":1460,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1"]],[6,7,["H1992"]],[7,10,["H1121"]],[10,11,["H834"]],[11,12,["H430"]],[12,14,["H5414"]],[14,17,["H2088"]],[17,21,["H559"]],[21,22,["H3947"]],[22,26,["H4994"]],[26,27,["H413"]],[27,32,["H1288"]],[32,33,[]]]},{"k":1461,"v":[[0,3,["H5869"]],[3,5,["H3478"]],[5,7,["H3513"]],[7,9,["H4480","H2207"]],[9,13,["H3201"]],[13,14,["H3808"]],[14,15,["H7200"]],[15,20,["H5066","(H853)"]],[20,21,["H413"]],[21,25,["H5401"]],[25,28,["H2263"]],[28,29,[]]]},{"k":1462,"v":[[0,2,["H3478"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,8,["H3808"]],[8,9,["H6419"]],[9,11,["H7200"]],[11,13,["H6440"]],[13,15,["H2009"]],[15,16,["H430"]],[16,18,["H7200"]],[18,20,["H1571","(H853)"]],[20,22,["H2233"]]]},{"k":1463,"v":[[0,2,["H3130"]],[2,5,["H3318","(H853)"]],[5,7,["H4480","H5973"]],[7,9,["H1290"]],[9,13,["H7812"]],[13,16,["H639"]],[16,19,["H776"]]]},{"k":1464,"v":[[0,2,["H3130"]],[2,3,["H3947","(H853)"]],[3,5,["H8147","(H853)"]],[5,6,["H669"]],[6,10,["H3225"]],[10,12,["H3478"]],[12,14,["H4480","H8040"]],[14,16,["H4519"]],[16,20,["H8040"]],[20,22,["H3478"]],[22,24,["H4480","H3225"]],[24,28,["H5066"]],[28,29,["H413"]],[29,30,[]]]},{"k":1465,"v":[[0,2,["H3478"]],[2,4,["H7971","(H853)"]],[4,7,["H3225"]],[7,9,["H7896"]],[9,11,["H5921"]],[11,12,["H669"]],[12,13,["H7218"]],[13,14,["H1931"]],[14,17,["H6810"]],[17,21,["H8040"]],[21,22,["H5921"]],[22,23,["H4519"]],[23,24,["H7218"]],[24,28,["H7919","(H853)","H3027"]],[28,29,["H3588"]],[29,30,["H4519"]],[30,33,["H1060"]]]},{"k":1466,"v":[[0,3,["H1288","(H853)"]],[3,4,["H3130"]],[4,6,["H559"]],[6,7,["H430"]],[7,8,["H6440"]],[8,9,["H834"]],[9,11,["H1"]],[11,12,["H85"]],[12,14,["H3327"]],[14,16,["H1980"]],[16,18,["H430"]],[18,20,["H7462"]],[20,25,["H4480","H5750"]],[25,26,["H5704"]],[26,27,["H2088"]],[27,28,["H3117"]]]},{"k":1467,"v":[[0,2,["H4397"]],[2,4,["H1350"]],[4,7,["H4480","H3605"]],[7,8,["H7451"]],[8,9,["H1288","(H853)"]],[9,11,["H5288"]],[11,15,["H8034"]],[15,17,["H7121"]],[17,22,["H8034"]],[22,25,["H1"]],[25,26,["H85"]],[26,28,["H3327"]],[28,32,["H1711"]],[32,35,["H7230"]],[35,38,["H7130"]],[38,41,["H776"]]]},{"k":1468,"v":[[0,3,["H3130"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,7,["H1"]],[7,8,["H7896"]],[8,10,["H3225"]],[10,11,["H3027"]],[11,12,["H5921"]],[12,14,["H7218"]],[14,16,["H669"]],[16,18,["H7489","H5869"]],[18,23,["H8551"]],[23,25,["H1"]],[25,26,["H3027"]],[26,28,["H5493"]],[28,30,["H4480","H5921"]],[30,31,["H669"]],[31,32,["H7218"]],[32,33,["H5921"]],[33,34,["H4519"]],[34,35,["H7218"]]]},{"k":1469,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1"]],[6,7,["H3808"]],[7,8,["H3651"]],[8,10,["H1"]],[10,11,["H3588"]],[11,12,["H2088"]],[12,15,["H1060"]],[15,16,["H7760"]],[16,19,["H3225"]],[19,20,["H5921"]],[20,22,["H7218"]]]},{"k":1470,"v":[[0,3,["H1"]],[3,4,["H3985"]],[4,6,["H559"]],[6,8,["H3045"]],[8,11,["H1121"]],[11,13,["H3045"]],[13,15,["H1931"]],[15,16,["H1571"]],[16,18,["H1961"]],[18,20,["H5971"]],[20,22,["H1931"]],[22,23,["H1571"]],[23,26,["H1431"]],[26,28,["H199"]],[28,30,["H6996"]],[30,31,["H251"]],[31,34,["H1431"]],[34,35,["H4480"]],[35,39,["H2233"]],[39,41,["H1961"]],[41,43,["H4393"]],[43,45,["H1471"]]]},{"k":1471,"v":[[0,3,["H1288"]],[3,5,["H1931"]],[5,6,["H3117"]],[6,7,["H559"]],[7,11,["H3478"]],[11,12,["H1288"]],[12,13,["H559"]],[13,14,["H430"]],[14,15,["H7760"]],[15,18,["H669"]],[18,21,["H4519"]],[21,24,["H7760","(H853)"]],[24,25,["H669"]],[25,26,["H6440"]],[26,27,["H4519"]]]},{"k":1472,"v":[[0,2,["H3478"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,6,["H2009"]],[6,7,["H595"]],[7,8,["H4191"]],[8,10,["H430"]],[10,12,["H1961"]],[12,13,["H5973"]],[13,18,["H7725","(H853)"]],[18,19,["H413"]],[19,21,["H776"]],[21,24,["H1"]]]},{"k":1473,"v":[[0,2,["H589"]],[2,4,["H5414"]],[4,7,["H259"]],[7,8,["H7926"]],[8,9,["H5921"]],[9,11,["H251"]],[11,12,["H834"]],[12,14,["H3947"]],[14,18,["H4480","H3027"]],[18,21,["H567"]],[21,24,["H2719"]],[24,28,["H7198"]]]},{"k":1474,"v":[[0,2,["H3290"]],[2,3,["H7121"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H559"]],[8,11,["H622"]],[11,15,["H5046"]],[15,17,["(H853)"]],[17,18,["H834"]],[18,20,["H7122"]],[20,24,["H319"]],[24,25,["H3117"]]]},{"k":1475,"v":[[0,3,["H6908"]],[3,5,["H8085"]],[5,7,["H1121"]],[7,9,["H3290"]],[9,11,["H8085"]],[11,12,["H413"]],[12,13,["H3478"]],[13,15,["H1"]]]},{"k":1476,"v":[[0,1,["H7205"]],[1,2,["H859"]],[2,5,["H1060"]],[5,7,["H3581"]],[7,10,["H7225"]],[10,13,["H202"]],[13,15,["H3499"]],[15,17,["H7613"]],[17,20,["H3499"]],[20,22,["H5794"]]]},{"k":1477,"v":[[0,1,["H6349"]],[1,3,["H4325"]],[3,6,["H408"]],[6,7,["H3498"]],[7,8,["H3588"]],[8,11,["H5927"]],[11,14,["H1"]],[14,15,["H4904"]],[15,16,["H227"]],[16,17,["H2490"]],[17,22,["H5927"]],[22,25,["H3326"]]]},{"k":1478,"v":[[0,1,["H8095"]],[1,3,["H3878"]],[3,5,["H251"]],[5,6,["H3627"]],[6,8,["H2555"]],[8,12,["H4380"]]]},{"k":1479,"v":[[0,3,["H5315"]],[3,4,["H935"]],[4,5,["H408"]],[5,9,["H5475"]],[9,12,["H6951"]],[12,14,["H3519"]],[14,16,["H408"]],[16,18,["H3161"]],[18,19,["H3588"]],[19,22,["H639"]],[22,24,["H2026"]],[24,26,["H376"]],[26,30,["H7522"]],[30,33,["H6131"]],[33,35,["H7791"]]]},{"k":1480,"v":[[0,1,["H779"]],[1,4,["H639"]],[4,5,["H3588"]],[5,8,["H5794"]],[8,11,["H5678"]],[11,12,["H3588"]],[12,15,["H7185"]],[15,18,["H2505"]],[18,21,["H3290"]],[21,23,["H6327"]],[23,26,["H3478"]]]},{"k":1481,"v":[[0,1,["H3063"]],[1,2,["H859"]],[2,7,["H251"]],[7,9,["H3034"]],[9,11,["H3027"]],[11,16,["H6203"]],[16,19,["H341"]],[19,21,["H1"]],[21,22,["H1121"]],[22,25,["H7812"]],[25,27,[]]]},{"k":1482,"v":[[0,1,["H3063"]],[1,4,["H738"]],[4,5,["H1482"]],[5,8,["H4480","H2964"]],[8,10,["H1121"]],[10,14,["H5927"]],[14,17,["H3766"]],[17,19,["H7257"]],[19,22,["H738"]],[22,27,["H3833"]],[27,28,["H4310"]],[28,32,["H6965"]]]},{"k":1483,"v":[[0,2,["H7626"]],[2,4,["H3808"]],[4,5,["H5493"]],[5,7,["H4480","H3063"]],[7,10,["H2710"]],[10,12,["H4480","H996"]],[12,14,["H7272"]],[14,15,["H5704","H3588"]],[15,16,["H7886"]],[16,17,["H935"]],[17,23,["H3349"]],[23,26,["H5971"]],[26,27,[]]]},{"k":1484,"v":[[0,1,["H631"]],[1,3,["H5895"]],[3,6,["H1612"]],[6,9,["H860"]],[9,10,["H1121"]],[10,14,["H8321"]],[14,16,["H3526"]],[16,18,["H3830"]],[18,20,["H3196"]],[20,23,["H5497"]],[23,26,["H1818"]],[26,28,["H6025"]]]},{"k":1485,"v":[[0,2,["H5869"]],[2,5,["H2447"]],[5,7,["H4480","H3196"]],[7,10,["H8127"]],[10,11,["H3836"]],[11,13,["H4480","H2461"]]]},{"k":1486,"v":[[0,1,["H2074"]],[1,3,["H7931"]],[3,6,["H2348"]],[6,9,["H3220"]],[9,11,["H1931"]],[11,16,["H2348"]],[16,18,["H591"]],[18,21,["H3411"]],[21,24,["H5921"]],[24,25,["H6721"]]]},{"k":1487,"v":[[0,1,["H3485"]],[1,4,["H1634"]],[4,5,["H2543"]],[5,7,["H7257"]],[7,8,["H996"]],[8,10,["H4942"]]]},{"k":1488,"v":[[0,3,["H7200"]],[3,4,["H3588"]],[4,5,["H4496"]],[5,7,["H2896"]],[7,10,["H776"]],[10,11,["H3588"]],[11,14,["H5276"]],[14,16,["H5186"]],[16,18,["H7926"]],[18,20,["H5445"]],[20,22,["H1961"]],[22,24,["H5647"]],[24,26,["H4522"]]]},{"k":1489,"v":[[0,1,["H1835"]],[1,3,["H1777"]],[3,5,["H5971"]],[5,7,["H259"]],[7,10,["H7626"]],[10,12,["H3478"]]]},{"k":1490,"v":[[0,1,["H1835"]],[1,3,["H1961"]],[3,5,["H5175"]],[5,6,["H5921"]],[6,8,["H1870"]],[8,10,["H8207"]],[10,11,["H5921"]],[11,13,["H734"]],[13,15,["H5391"]],[15,17,["H5483"]],[17,18,["H6119"]],[18,22,["H7392"]],[22,24,["H5307"]],[24,25,["H268"]]]},{"k":1491,"v":[[0,3,["H6960"]],[3,6,["H3444"]],[6,8,["H3068"]]]},{"k":1492,"v":[[0,1,["H1410"]],[1,3,["H1416"]],[3,5,["H1464"]],[5,8,["H1931"]],[8,10,["H1464"]],[10,13,["H6119"]]]},{"k":1493,"v":[[0,3,["H4480","H836"]],[3,5,["H3899"]],[5,8,["H8082"]],[8,10,["H1931"]],[10,12,["H5414"]],[12,13,["H4428"]],[13,14,["H4574"]]]},{"k":1494,"v":[[0,1,["H5321"]],[1,4,["H355"]],[4,6,["H7971"]],[6,8,["H5414"]],[8,9,["H8233"]],[9,10,["H561"]]]},{"k":1495,"v":[[0,1,["H3130"]],[1,4,["H6509"]],[4,5,["H1121"]],[5,8,["H6509"]],[8,9,["H1121"]],[9,10,["H5921"]],[10,12,["H5869"]],[12,14,["H1323"]],[14,15,["H6805"]],[15,16,["H5921"]],[16,18,["H7791"]]]},{"k":1496,"v":[[0,2,["H1167","H2671"]],[2,5,["H4843"]],[5,8,["H7232"]],[8,12,["H7852"]],[12,13,[]]]},{"k":1497,"v":[[0,3,["H7198"]],[3,4,["H3427"]],[4,6,["H386"]],[6,9,["H2220"]],[9,12,["H3027"]],[12,15,["H6339"]],[15,18,["H4480","H3027"]],[18,21,["H46"]],[21,24,["H3290"]],[24,26,["H4480","H8033"]],[26,29,["H7462"]],[29,31,["H68"]],[31,33,["H3478"]]]},{"k":1498,"v":[[0,4,["H4480","H410"]],[4,7,["H1"]],[7,10,["H5826"]],[10,15,["H7706"]],[15,18,["H1288"]],[18,21,["H1293"]],[21,23,["H8064"]],[23,24,["H4480","H5920"]],[24,25,["H1293"]],[25,28,["H8415"]],[28,30,["H7257"]],[30,31,["H8478"]],[31,32,["H1293"]],[32,35,["H7699"]],[35,39,["H7356"]]]},{"k":1499,"v":[[0,2,["H1293"]],[2,5,["H1"]],[5,7,["H1396"]],[7,8,["H5921"]],[8,10,["H1293"]],[10,13,["H2029"]],[13,14,["H5704"]],[14,17,["H8379"]],[17,20,["H5769"]],[20,21,["H1389"]],[21,24,["H1961"]],[24,27,["H7218"]],[27,29,["H3130"]],[29,36,["H6936"]],[36,42,["H5139"]],[42,44,["H251"]]]},{"k":1500,"v":[[0,1,["H1144"]],[1,3,["H2963"]],[3,6,["H2061"]],[6,9,["H1242"]],[9,12,["H398"]],[12,14,["H5706"]],[14,17,["H6153"]],[17,20,["H2505"]],[20,22,["H7998"]]]},{"k":1501,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,5,["H8147","H6240"]],[5,6,["H7626"]],[6,8,["H3478"]],[8,10,["H2063"]],[10,13,["H834"]],[13,15,["H1"]],[15,16,["H1696"]],[16,20,["H1288"]],[20,23,["H376","H834"]],[23,27,["H1293"]],[27,29,["H1288"]],[29,30,[]]]},{"k":1502,"v":[[0,3,["H6680"]],[3,6,["H559"]],[6,7,["H413"]],[7,9,["H589"]],[9,13,["H622"]],[13,14,["H413"]],[14,16,["H5971"]],[16,17,["H6912"]],[17,19,["H413"]],[19,21,["H1"]],[21,22,["H413"]],[22,24,["H4631"]],[24,25,["H834"]],[25,29,["H7704"]],[29,31,["H6085"]],[31,33,["H2850"]]]},{"k":1503,"v":[[0,3,["H4631"]],[3,4,["H834"]],[4,8,["H7704"]],[8,10,["H4375"]],[10,11,["H834"]],[11,13,["H5921","H6440"]],[13,14,["H4471"]],[14,17,["H776"]],[17,19,["H3667"]],[19,20,["H834"]],[20,21,["H85"]],[21,22,["H7069"]],[22,23,["H854"]],[23,25,["H7704"]],[25,26,["H4480","H854"]],[26,27,["H6085"]],[27,29,["H2850"]],[29,32,["H272"]],[32,35,["H6913"]]]},{"k":1504,"v":[[0,1,["H8033"]],[1,3,["H6912","(H853)"]],[3,4,["H85"]],[4,6,["H8283"]],[6,8,["H802"]],[8,9,["H8033"]],[9,11,["H6912","(H853)"]],[11,12,["H3327"]],[12,14,["H7259"]],[14,16,["H802"]],[16,18,["H8033"]],[18,20,["H6912","(H853)"]],[20,21,["H3812"]]]},{"k":1505,"v":[[0,2,["H4735"]],[2,5,["H7704"]],[5,9,["H4631"]],[9,10,["H834"]],[10,14,["H4480","H854"]],[14,16,["H1121"]],[16,18,["H2845"]]]},{"k":1506,"v":[[0,3,["H3290"]],[3,7,["H3615"]],[7,9,["H6680","(H853)"]],[9,11,["H1121"]],[11,14,["H622"]],[14,16,["H7272"]],[16,17,["H413"]],[17,19,["H4296"]],[19,24,["H1478"]],[24,27,["H622"]],[27,28,["H413"]],[28,30,["H5971"]]]},{"k":1507,"v":[[0,2,["H3130"]],[2,3,["H5307"]],[3,4,["H5921"]],[4,6,["H1"]],[6,7,["H6440"]],[7,9,["H1058"]],[9,10,["H5921"]],[10,13,["H5401"]],[13,14,[]]]},{"k":1508,"v":[[0,2,["H3130"]],[2,3,["H6680","(H853)"]],[3,5,["H5650","(H853)"]],[5,7,["H7495"]],[7,9,["H2590","(H853)"]],[9,11,["H1"]],[11,14,["H7495"]],[14,15,["H2590","(H853)"]],[15,16,["H3478"]]]},{"k":1509,"v":[[0,2,["H705"]],[2,3,["H3117"]],[3,5,["H4390"]],[5,8,["H3588"]],[8,9,["H3651"]],[9,11,["H4390"]],[11,13,["H3117"]],[13,18,["H2590"]],[18,21,["H4714"]],[21,22,["H1058"]],[22,27,["H7657"]],[27,28,["H3117"]]]},{"k":1510,"v":[[0,4,["H3117"]],[4,7,["H1068"]],[7,9,["H5674"]],[9,10,["H3130"]],[10,11,["H1696"]],[11,12,["H413"]],[12,14,["H1004"]],[14,16,["H6547"]],[16,17,["H559"]],[17,18,["H518"]],[18,19,["H4994"]],[19,22,["H4672"]],[22,23,["H2580"]],[23,26,["H5869"]],[26,27,["H1696"]],[27,30,["H4994"]],[30,33,["H241"]],[33,35,["H6547"]],[35,36,["H559"]]]},{"k":1511,"v":[[0,2,["H1"]],[2,5,["H7650"]],[5,6,["H559"]],[6,7,["H2009"]],[7,8,["H595"]],[8,9,["H4191"]],[9,12,["H6913"]],[12,13,["H834"]],[13,16,["H3738"]],[16,21,["H776"]],[21,23,["H3667"]],[23,24,["H8033"]],[24,27,["H6912"]],[27,29,["H6258"]],[29,34,["H5927"]],[34,37,["H4994"]],[37,39,["H6912","(H853)"]],[39,41,["H1"]],[41,46,["H7725"]]]},{"k":1512,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,5,["H5927"]],[5,7,["H6912","(H853)"]],[7,9,["H1"]],[9,11,["H834"]],[11,15,["H7650"]]]},{"k":1513,"v":[[0,2,["H3130"]],[2,4,["H5927"]],[4,6,["H6912","(H853)"]],[6,8,["H1"]],[8,10,["H854"]],[10,13,["H5927"]],[13,14,["H3605"]],[14,16,["H5650"]],[16,18,["H6547"]],[18,20,["H2205"]],[20,23,["H1004"]],[23,25,["H3605"]],[25,27,["H2205"]],[27,30,["H776"]],[30,32,["H4714"]]]},{"k":1514,"v":[[0,2,["H3605"]],[2,4,["H1004"]],[4,6,["H3130"]],[6,9,["H251"]],[9,12,["H1"]],[12,13,["H1004"]],[13,14,["H7535"]],[14,17,["H2945"]],[17,20,["H6629"]],[20,23,["H1241"]],[23,25,["H5800"]],[25,28,["H776"]],[28,30,["H1657"]]]},{"k":1515,"v":[[0,4,["H5927"]],[4,5,["H5973"]],[5,7,["H1571"]],[7,8,["H7393"]],[8,9,["H1571"]],[9,10,["H6571"]],[10,13,["H1961"]],[13,15,["H3966"]],[15,16,["H3515"]],[16,17,["H4264"]]]},{"k":1516,"v":[[0,3,["H935"]],[3,4,["H5704"]],[4,6,["H1637"]],[6,8,["H329"]],[8,9,["H834"]],[9,11,["H5676"]],[11,12,["H3383"]],[12,14,["H8033"]],[14,16,["H5594"]],[16,19,["H1419"]],[19,21,["H3966"]],[21,22,["H3515"]],[22,23,["H4553"]],[23,26,["H6213"]],[26,28,["H60"]],[28,31,["H1"]],[31,32,["H7651"]],[32,33,["H3117"]]]},{"k":1517,"v":[[0,4,["H3427"]],[4,7,["H776"]],[7,9,["H3669"]],[9,10,["H7200","(H853)"]],[10,12,["H60"]],[12,15,["H1637"]],[15,17,["H329"]],[17,19,["H559"]],[19,20,["H2088"]],[20,23,["H3515"]],[23,24,["H60"]],[24,27,["H4714"]],[27,28,["H5921","H3651"]],[28,30,["H8034"]],[30,34,["H7121"]],[34,35,["H67"]],[35,36,["H834"]],[36,38,["H5676"]],[38,39,["H3383"]]]},{"k":1518,"v":[[0,3,["H1121"]],[3,4,["H6213"]],[4,8,["H3651","H834"]],[8,10,["H6680"]],[10,11,[]]]},{"k":1519,"v":[[0,3,["H1121"]],[3,4,["H5375"]],[4,8,["H776"]],[8,10,["H3667"]],[10,12,["H6912"]],[12,16,["H4631"]],[16,19,["H7704"]],[19,21,["H4375"]],[21,22,["H834"]],[22,23,["H85"]],[23,24,["H7069"]],[24,25,["H854"]],[25,27,["H7704"]],[27,30,["H272"]],[30,33,["H6913"]],[33,34,["H4480","H854"]],[34,35,["H6085"]],[35,37,["H2850"]],[37,38,["H5921","H6440"]],[38,39,["H4471"]]]},{"k":1520,"v":[[0,2,["H3130"]],[2,3,["H7725"]],[3,5,["H4714"]],[5,6,["H1931"]],[6,9,["H251"]],[9,11,["H3605"]],[11,14,["H5927"]],[14,15,["H854"]],[15,18,["H6912","(H853)"]],[18,20,["H1"]],[20,21,["H310"]],[21,24,["H6912","(H853)"]],[24,26,["H1"]]]},{"k":1521,"v":[[0,3,["H3130"]],[3,4,["H251"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,8,["H1"]],[8,10,["H4191"]],[10,12,["H559"]],[12,13,["H3130"]],[13,15,["H3863"]],[15,16,["H7852"]],[16,21,["H7725","H7725"]],[21,22,["(H853)"]],[22,23,["H3605"]],[23,25,["H7451"]],[25,26,["H834"]],[26,28,["H1580"]],[28,30,[]]]},{"k":1522,"v":[[0,5,["H6680"]],[5,6,["H413"]],[6,7,["H3130"]],[7,8,["H559"]],[8,10,["H1"]],[10,12,["H6680"]],[12,13,["H6440"]],[13,15,["H4194"]],[15,16,["H559"]]]},{"k":1523,"v":[[0,1,["H3541"]],[1,4,["H559"]],[4,6,["H3130"]],[6,7,["H5375"]],[7,10,["H577"]],[10,11,["H4994"]],[11,13,["H6588"]],[13,16,["H251"]],[16,19,["H2403"]],[19,20,["H3588"]],[20,22,["H1580"]],[22,25,["H7451"]],[25,27,["H6258"]],[27,30,["H4994"]],[30,31,["H5375"]],[31,33,["H6588"]],[33,36,["H5650"]],[36,39,["H430"]],[39,42,["H1"]],[42,44,["H3130"]],[44,45,["H1058"]],[45,48,["H1696"]],[48,49,["H413"]],[49,50,[]]]},{"k":1524,"v":[[0,3,["H251"]],[3,4,["H1571"]],[4,5,["H1980"]],[5,8,["H5307"]],[8,11,["H6440"]],[11,14,["H559"]],[14,15,["H2009"]],[15,19,["H5650"]]]},{"k":1525,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3372"]],[6,7,["H408"]],[7,8,["H3588"]],[8,10,["H589"]],[10,13,["H8478"]],[13,15,["H430"]]]},{"k":1526,"v":[[0,4,["H859"]],[4,6,["H2803"]],[6,7,["H7451"]],[7,8,["H5921"]],[8,11,["H430"]],[11,12,["H2803"]],[12,15,["H2896"]],[15,16,["H4616"]],[16,19,["H6213"]],[19,23,["H2088"]],[23,24,["H3117"]],[24,29,["H2421","H5971","H7227"]]]},{"k":1527,"v":[[0,1,["H6258"]],[1,3,["H3372"]],[3,5,["H408"]],[5,6,["H595"]],[6,8,["H3557"]],[8,13,["H2945"]],[13,16,["H5162"]],[16,19,["H1696"]],[19,20,["H5921","H3820"]],[20,22,[]]]},{"k":1528,"v":[[0,2,["H3130"]],[2,3,["H3427"]],[3,5,["H4714"]],[5,6,["H1931"]],[6,9,["H1"]],[9,10,["H1004"]],[10,12,["H3130"]],[12,13,["H2421"]],[13,15,["H3967"]],[15,17,["H6235"]],[17,18,["H8141"]]]},{"k":1529,"v":[[0,2,["H3130"]],[2,3,["H7200"]],[3,4,["H669"]],[4,5,["H1121"]],[5,8,["H8029"]],[8,11,["H1121"]],[11,12,["H1571"]],[12,14,["H4353"]],[14,16,["H1121"]],[16,18,["H4519"]],[18,21,["H3205"]],[21,22,["H5921"]],[22,23,["H3130"]],[23,24,["H1290"]]]},{"k":1530,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H251"]],[6,7,["H595"]],[7,8,["H4191"]],[8,10,["H430"]],[10,13,["H6485","H6485"]],[13,16,["H5927"]],[16,19,["H4480"]],[19,20,["H2063"]],[20,21,["H776"]],[21,22,["H413"]],[22,24,["H776"]],[24,25,["H834"]],[25,27,["H7650"]],[27,29,["H85"]],[29,31,["H3327"]],[31,34,["H3290"]]]},{"k":1531,"v":[[0,2,["H3130"]],[2,5,["H7650"]],[5,6,["(H853)"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,11,["H559"]],[11,12,["H430"]],[12,15,["H6485","H6485"]],[15,21,["H5927","(H853)"]],[21,23,["H6106"]],[23,25,["H4480","H2088"]]]},{"k":1532,"v":[[0,2,["H3130"]],[2,3,["H4191"]],[3,6,["H3967"]],[6,8,["H6235"]],[8,9,["H8141"]],[9,10,["H1121"]],[10,13,["H2590"]],[13,18,["H3455"]],[18,21,["H727"]],[21,23,["H4714"]]]},{"k":1533,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H1121"]],[8,10,["H3478"]],[10,12,["H935"]],[12,14,["H4714"]],[14,16,["H376"]],[16,19,["H1004"]],[19,20,["H935"]],[20,21,["H854"]],[21,22,["H3290"]]]},{"k":1534,"v":[[0,1,["H7205"]],[1,2,["H8095"]],[2,3,["H3878"]],[3,5,["H3063"]]]},{"k":1535,"v":[[0,1,["H3485"]],[1,2,["H2074"]],[2,4,["H1144"]]]},{"k":1536,"v":[[0,1,["H1835"]],[1,3,["H5321"]],[3,4,["H1410"]],[4,6,["H836"]]]},{"k":1537,"v":[[0,2,["H3605"]],[2,4,["H5315"]],[4,7,["H3318"]],[7,10,["H3409"]],[10,12,["H3290"]],[12,13,["H1961"]],[13,14,["H7657"]],[14,15,["H5315"]],[15,17,["H3130"]],[17,18,["H1961"]],[18,20,["H4714"]],[20,21,[]]]},{"k":1538,"v":[[0,2,["H3130"]],[2,3,["H4191"]],[3,5,["H3605"]],[5,7,["H251"]],[7,9,["H3605"]],[9,10,["H1931"]],[10,11,["H1755"]]]},{"k":1539,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H6509"]],[7,10,["H8317"]],[10,12,["H7235"]],[12,16,["H6105","H3966","H3966"]],[16,19,["H776"]],[19,21,["H4390"]],[21,22,["H854"]],[22,23,[]]]},{"k":1540,"v":[[0,4,["H6965"]],[4,6,["H2319"]],[6,7,["H4428"]],[7,8,["H5921"]],[8,9,["H4714"]],[9,10,["H834"]],[10,11,["H3045"]],[11,12,["H3808","(H853)"]],[12,13,["H3130"]]]},{"k":1541,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H2009"]],[7,9,["H5971"]],[9,12,["H1121"]],[12,14,["H3478"]],[14,16,["H7227"]],[16,18,["H6099"]],[18,19,["H4480"]],[19,20,[]]]},{"k":1542,"v":[[0,1,["H3051"]],[1,6,["H2449"]],[6,9,["H6435"]],[9,11,["H7235"]],[11,16,["H1961"]],[16,18,["H3588"]],[18,21,["H7122"]],[21,23,["H4421"]],[23,24,["H1931"]],[24,25,["H3254"]],[25,26,["H1571"]],[26,27,["H5921"]],[27,29,["H8130"]],[29,31,["H3898"]],[31,38,["H5927"]],[38,40,["H4480"]],[40,42,["H776"]]]},{"k":1543,"v":[[0,4,["H7760"]],[4,5,["H5921"]],[5,7,["H8269","H4522"]],[7,8,["H4616"]],[8,9,["H6031"]],[9,13,["H5450"]],[13,16,["H1129"]],[16,18,["H6547"]],[18,19,["H4543"]],[19,20,["H5892","(H853)"]],[20,21,["H6619"]],[21,23,["H7486"]]]},{"k":1544,"v":[[0,3,["H834"]],[3,5,["H6031"]],[5,8,["H3651"]],[8,10,["H7235"]],[10,12,["H3651","H6555"]],[12,16,["H6973"]],[16,17,["H4480","H6440"]],[17,20,["H1121"]],[20,22,["H3478"]]]},{"k":1545,"v":[[0,3,["H4714"]],[3,4,["(H853)"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,10,["H5647"]],[10,12,["H6531"]]]},{"k":1546,"v":[[0,3,["(H853)"]],[3,5,["H2416"]],[5,6,["H4843"]],[6,8,["H7186"]],[8,9,["H5656"]],[9,11,["H2563"]],[11,14,["H3843"]],[14,18,["H3605"]],[18,20,["H5656"]],[20,23,["H7704","(H853)"]],[23,24,["H3605"]],[24,26,["H5656"]],[26,27,["H834"]],[27,31,["H5647"]],[31,34,["H6531"]]]},{"k":1547,"v":[[0,3,["H4428"]],[3,5,["H4714"]],[5,6,["H559"]],[6,9,["H5680"]],[9,10,["H3205"]],[10,12,["H834"]],[12,14,["H8034"]],[14,17,["H259"]],[17,19,["H8236"]],[19,22,["H8034"]],[22,25,["H8145"]],[25,26,["H6326"]]]},{"k":1548,"v":[[0,3,["H559"]],[3,11,["H3205"]],[11,12,["(H853)"]],[12,15,["H5680"]],[15,17,["H7200"]],[17,19,["H5921"]],[19,21,["H70"]],[21,22,["H518"]],[22,23,["H1931"]],[23,26,["H1121"]],[26,30,["H4191"]],[30,33,["H518"]],[33,34,["H1931"]],[34,37,["H1323"]],[37,41,["H2425"]]]},{"k":1549,"v":[[0,3,["H3205"]],[3,4,["H3372","(H853)"]],[4,5,["H430"]],[5,7,["H6213"]],[7,8,["H3808"]],[8,9,["H834"]],[9,11,["H4428"]],[11,13,["H4714"]],[13,14,["H1696","H413"]],[14,17,["H2421","(H853)"]],[17,20,["H3206"]],[20,21,[]]]},{"k":1550,"v":[[0,3,["H4428"]],[3,5,["H4714"]],[5,7,["H7121"]],[7,9,["H3205"]],[9,11,["H559"]],[11,14,["H4069"]],[14,17,["H6213"]],[17,18,["H2088"]],[18,19,["H1697"]],[19,22,["H2421","(H853)"]],[22,25,["H3206"]],[25,26,[]]]},{"k":1551,"v":[[0,3,["H3205"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H6547"]],[6,7,["H3588"]],[7,10,["H5680"]],[10,12,["H3808"]],[12,15,["H4713"]],[15,16,["H802"]],[16,17,["H3588"]],[17,18,["H2007"]],[18,20,["H2422"]],[20,23,["H3205"]],[23,24,["H2962"]],[24,26,["H3205"]],[26,28,["H935"]],[28,29,["H413"]],[29,30,[]]]},{"k":1552,"v":[[0,2,["H430"]],[2,4,["H3190"]],[4,7,["H3205"]],[7,10,["H5971"]],[10,11,["H7235"]],[11,15,["H6105","H3966"]]]},{"k":1553,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,8,["H3205"]],[8,9,["H3372","(H853)"]],[9,10,["H430"]],[10,13,["H6213"]],[13,15,["H1004"]]]},{"k":1554,"v":[[0,2,["H6547"]],[2,3,["H6680"]],[3,4,["H3605"]],[4,6,["H5971"]],[6,7,["H559"]],[7,8,["H3605"]],[8,9,["H1121"]],[9,12,["H3209"]],[12,15,["H7993"]],[15,18,["H2975"]],[18,20,["H3605"]],[20,21,["H1323"]],[21,25,["H2421"]]]},{"k":1555,"v":[[0,3,["H1980"]],[3,5,["H376"]],[5,8,["H4480","H1004"]],[8,10,["H3878"]],[10,12,["H3947"]],[12,15,["(H853)"]],[15,16,["H1323"]],[16,18,["H3878"]]]},{"k":1556,"v":[[0,3,["H802"]],[3,4,["H2029"]],[4,6,["H3205"]],[6,8,["H1121"]],[8,12,["H7200"]],[12,14,["H3588"]],[14,15,["H1931"]],[15,18,["H2896"]],[18,21,["H6845"]],[21,23,["H7969"]],[23,24,["H3391"]]]},{"k":1557,"v":[[0,4,["H3201"]],[4,5,["H3808"]],[5,6,["H5750"]],[6,7,["H6845"]],[7,10,["H3947"]],[10,14,["H8392"]],[14,16,["H1573"]],[16,18,["H2560"]],[18,21,["H2564"]],[21,24,["H2203"]],[24,26,["H7760","(H853)"]],[26,28,["H3206"]],[28,32,["H7760"]],[32,36,["H5488"]],[36,37,["H5921"]],[37,39,["H2975"]],[39,40,["H8193"]]]},{"k":1558,"v":[[0,3,["H269"]],[3,4,["H3320"]],[4,6,["H4480","H7350"]],[6,8,["H3045"]],[8,9,["H4100"]],[9,12,["H6213"]],[12,14,[]]]},{"k":1559,"v":[[0,3,["H1323"]],[3,5,["H6547"]],[5,7,["H3381"]],[7,9,["H7364"]],[9,11,["H5921"]],[11,13,["H2975"]],[13,16,["H5291"]],[16,18,["H1980"]],[18,19,["H5921"]],[19,21,["H2975"]],[21,22,["H3027"]],[22,26,["H7200","(H853)"]],[26,28,["H8392"]],[28,29,["H8432"]],[29,31,["H5488"]],[31,33,["H7971","(H853)"]],[33,35,["H519"]],[35,37,["H3947"]],[37,38,[]]]},{"k":1560,"v":[[0,5,["H6605"]],[5,8,["H7200","(H853)"]],[8,10,["H3206"]],[10,12,["H2009"]],[12,14,["H5288"]],[14,15,["H1058"]],[15,19,["H2550"]],[19,20,["H5921"]],[20,23,["H559"]],[23,24,["H2088"]],[24,30,["H4480","H3206","H5680"]]]},{"k":1561,"v":[[0,2,["H559"]],[2,4,["H269"]],[4,5,["H413"]],[5,6,["H6547"]],[6,7,["H1323"]],[7,10,["H1980"]],[10,12,["H7121"]],[12,16,["H802","H3243"]],[16,17,["H4480"]],[17,20,["H5680"]],[20,24,["H3243","(H853)"]],[24,26,["H3206"]],[26,28,[]]]},{"k":1562,"v":[[0,2,["H6547"]],[2,3,["H1323"]],[3,4,["H559"]],[4,7,["H1980"]],[7,10,["H5959"]],[10,11,["H1980"]],[11,13,["H7121"]],[13,15,["H3206","(H853)"]],[15,16,["H517"]]]},{"k":1563,"v":[[0,2,["H6547"]],[2,3,["H1323"]],[3,4,["H559"]],[4,10,["H1980","(H853)","H2088","H3206"]],[10,12,["H3243"]],[12,17,["H589"]],[17,19,["H5414"]],[19,20,["(H853)"]],[20,22,["H7939"]],[22,25,["H802"]],[25,26,["H3947"]],[26,28,["H3206"]],[28,30,["H5134"]],[30,31,[]]]},{"k":1564,"v":[[0,3,["H3206"]],[3,4,["H1431"]],[4,7,["H935"]],[7,10,["H6547"]],[10,11,["H1323"]],[11,14,["H1961"]],[14,16,["H1121"]],[16,19,["H7121"]],[19,21,["H8034"]],[21,22,["H4872"]],[22,25,["H559"]],[25,26,["H3588"]],[26,28,["H4871"]],[28,31,["H4480"]],[31,33,["H4325"]]]},{"k":1565,"v":[[0,5,["H1961"]],[5,7,["H1992"]],[7,8,["H3117"]],[8,10,["H4872"]],[10,12,["H1431"]],[12,16,["H3318"]],[16,17,["H413"]],[17,19,["H251"]],[19,21,["H7200"]],[21,24,["H5450"]],[24,27,["H7200"]],[27,29,["H376","H4713"]],[29,30,["H5221"]],[30,32,["H376","H5680"]],[32,36,["H4480","H251"]]]},{"k":1566,"v":[[0,3,["H6437"]],[3,5,["H3541"]],[5,8,["H3541"]],[8,12,["H7200"]],[12,13,["H3588"]],[13,16,["H369"]],[16,17,["H376"]],[17,19,["H5221","(H853)"]],[19,21,["H4713"]],[21,23,["H2934"]],[23,27,["H2344"]]]},{"k":1567,"v":[[0,5,["H3318"]],[5,7,["H8145"]],[7,8,["H3117"]],[8,9,["H2009"]],[9,10,["H8147"]],[10,11,["H376"]],[11,14,["H5680"]],[14,16,["H5327"]],[16,19,["H559"]],[19,25,["H7563"]],[25,26,["H4100"]],[26,27,["H5221"]],[27,30,["H7453"]]]},{"k":1568,"v":[[0,3,["H559"]],[3,4,["H4310"]],[4,5,["H7760"]],[5,8,["H8269"]],[8,11,["H8199"]],[11,12,["H5921"]],[12,14,["H559"]],[14,15,["H859"]],[15,17,["H2026"]],[17,19,["H834"]],[19,21,["H2026","(H853)"]],[21,23,["H4713"]],[23,25,["H4872"]],[25,26,["H3372"]],[26,28,["H559"]],[28,29,["H403"]],[29,31,["H1697"]],[31,33,["H3045"]]]},{"k":1569,"v":[[0,3,["H6547"]],[3,4,["H8085"]],[4,5,["H2088","(H853)"]],[5,6,["H1697"]],[6,8,["H1245"]],[8,10,["H2026","(H853)"]],[10,11,["H4872"]],[11,13,["H4872"]],[13,14,["H1272"]],[14,17,["H4480","H6440"]],[17,19,["H6547"]],[19,21,["H3427"]],[21,24,["H776"]],[24,26,["H4080"]],[26,30,["H3427"]],[30,31,["H5921"]],[31,33,["H875"]]]},{"k":1570,"v":[[0,3,["H3548"]],[3,5,["H4080"]],[5,7,["H7651"]],[7,8,["H1323"]],[8,11,["H935"]],[11,13,["H1802"]],[13,16,["H4390","(H853)"]],[16,18,["H7298"]],[18,20,["H8248"]],[20,22,["H1"]],[22,23,["H6629"]]]},{"k":1571,"v":[[0,3,["H7462"]],[3,4,["H935"]],[4,8,["H1644"]],[8,10,["H4872"]],[10,12,["H6965"]],[12,14,["H3467"]],[14,17,["H8248","(H853)"]],[17,19,["H6629"]]]},{"k":1572,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,6,["H7467"]],[6,8,["H1"]],[8,10,["H559"]],[10,11,["H4069"]],[11,17,["H935"]],[17,19,["H4116"]],[19,21,["H3117"]]]},{"k":1573,"v":[[0,3,["H559"]],[3,5,["H376","H4713"]],[5,6,["H5337"]],[6,11,["H4480","H3027"]],[11,14,["H7462"]],[14,16,["H1571"]],[16,19,["H1802","H1802"]],[19,23,["H8248","(H853)"]],[23,25,["H6629"]]]},{"k":1574,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1323"]],[6,8,["H346"]],[8,11,["H4100"]],[11,13,["H2088"]],[13,17,["H5800","(H853)"]],[17,19,["H376"]],[19,20,["H7121"]],[20,25,["H398"]],[25,26,["H3899"]]]},{"k":1575,"v":[[0,2,["H4872"]],[2,4,["H2974"]],[4,6,["H3427"]],[6,7,["H854"]],[7,9,["H376"]],[9,12,["H5414"]],[12,13,["H4872","(H853)"]],[13,14,["H6855"]],[14,16,["H1323"]]]},{"k":1576,"v":[[0,3,["H3205"]],[3,6,["H1121"]],[6,9,["H7121","(H853)"]],[9,11,["H8034"]],[11,12,["H1648"]],[12,13,["H3588"]],[13,15,["H559"]],[15,18,["H1961"]],[18,20,["H1616"]],[20,23,["H5237"]],[23,24,["H776"]]]},{"k":1577,"v":[[0,5,["H1961"]],[5,9,["H3117","H7227","H1992"]],[9,12,["H4428"]],[12,14,["H4714"]],[14,15,["H4191"]],[15,18,["H1121"]],[18,20,["H3478"]],[20,21,["H584"]],[21,24,["H4480"]],[24,26,["H5656"]],[26,29,["H2199"]],[29,32,["H7775"]],[32,34,["H5927"]],[34,35,["H413"]],[35,36,["H430"]],[36,39,["H4480"]],[39,41,["H5656"]]]},{"k":1578,"v":[[0,2,["H430"]],[2,3,["H8085","(H853)"]],[3,5,["H5009"]],[5,7,["H430"]],[7,8,["H2142","(H853)"]],[8,10,["H1285"]],[10,11,["H854"]],[11,12,["H85"]],[12,13,["H854"]],[13,14,["H3327"]],[14,16,["H854"]],[16,17,["H3290"]]]},{"k":1579,"v":[[0,2,["H430"]],[2,4,["H7200","(H853)"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,10,["H430"]],[10,12,["H3045"]],[12,14,[]]]},{"k":1580,"v":[[0,2,["H4872"]],[2,3,["H1961","H7462","(H853)"]],[3,5,["H6629"]],[5,7,["H3503"]],[7,11,["H2859"]],[11,13,["H3548"]],[13,15,["H4080"]],[15,18,["H5090","(H853)"]],[18,20,["H6629"]],[20,23,["H310"]],[23,26,["H4057"]],[26,28,["H935"]],[28,29,["H413"]],[29,31,["H2022"]],[31,33,["H430"]],[33,36,["H2722"]]]},{"k":1581,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H7200"]],[7,8,["H413"]],[8,12,["H3827"]],[12,14,["H784"]],[14,18,["H4480","H8432"]],[18,21,["H5572"]],[21,24,["H7200"]],[24,26,["H2009"]],[26,28,["H5572"]],[28,29,["H1197"]],[29,31,["H784"]],[31,34,["H5572"]],[34,36,["H369"]],[36,37,["H398"]]]},{"k":1582,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,6,["H4994"]],[6,8,["H5493"]],[8,10,["H7200"]],[10,11,["H2088"]],[11,12,["H1419","(H853)"]],[12,13,["H4758"]],[13,14,["H4069"]],[14,16,["H5572"]],[16,18,["H3808"]],[18,19,["H1197"]]]},{"k":1583,"v":[[0,4,["H3068"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,9,["H5493"]],[9,11,["H7200"]],[11,12,["H430"]],[12,13,["H7121"]],[13,14,["H413"]],[14,19,["H4480","H8432"]],[19,22,["H5572"]],[22,24,["H559"]],[24,25,["H4872"]],[25,26,["H4872"]],[26,29,["H559"]],[29,30,["H2009"]],[30,32,[]]]},{"k":1584,"v":[[0,3,["H559"]],[3,6,["H7126","H408"]],[6,7,["H1988"]],[7,9,["H5394"]],[9,11,["H5275"]],[11,13,["H4480","H5921"]],[13,15,["H7272"]],[15,16,["H3588"]],[16,18,["H4725"]],[18,19,["H834","H5921"]],[19,20,["H859"]],[20,21,["H5975"]],[21,23,["H6944"]],[23,24,["H127"]]]},{"k":1585,"v":[[0,3,["H559"]],[3,4,["H595"]],[4,7,["H430"]],[7,10,["H1"]],[10,12,["H430"]],[12,14,["H85"]],[14,16,["H430"]],[16,18,["H3327"]],[18,21,["H430"]],[21,23,["H3290"]],[23,25,["H4872"]],[25,26,["H5641"]],[26,28,["H6440"]],[28,29,["H3588"]],[29,32,["H3372"]],[32,34,["H4480","H5027"]],[34,35,["H413"]],[35,36,["H430"]]]},{"k":1586,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,8,["H7200","H7200","(H853)"]],[8,10,["H6040"]],[10,13,["H5971"]],[13,14,["H834"]],[14,17,["H4714"]],[17,20,["H8085"]],[20,22,["H6818"]],[22,25,["H4480","H6440"]],[25,27,["H5065"]],[27,28,["H3588"]],[28,30,["H3045","(H853)"]],[30,32,["H4341"]]]},{"k":1587,"v":[[0,5,["H3381"]],[5,7,["H5337"]],[7,12,["H4480","H3027"]],[12,15,["H4714"]],[15,20,["H5927"]],[20,22,["H4480"]],[22,23,["H1931"]],[23,24,["H776"]],[24,25,["H413"]],[25,27,["H2896"]],[27,28,["H776"]],[28,31,["H7342"]],[31,32,["H413"]],[32,34,["H776"]],[34,35,["H2100"]],[35,37,["H2461"]],[37,39,["H1706"]],[39,40,["H413"]],[40,42,["H4725"]],[42,45,["H3669"]],[45,48,["H2850"]],[48,51,["H567"]],[51,54,["H6522"]],[54,57,["H2340"]],[57,60,["H2983"]]]},{"k":1588,"v":[[0,1,["H6258"]],[1,3,["H2009"]],[3,5,["H6818"]],[5,8,["H1121"]],[8,10,["H3478"]],[10,12,["H935"]],[12,13,["H413"]],[13,18,["H1571"]],[18,19,["H7200","(H853)"]],[19,21,["H3906"]],[21,22,["H834"]],[22,24,["H4714"]],[24,25,["H3905"]],[25,26,[]]]},{"k":1589,"v":[[0,1,["H1980"]],[1,2,["H6258"]],[2,7,["H7971"]],[7,9,["H413"]],[9,10,["H6547"]],[10,15,["H3318","(H853)"]],[15,17,["H5971"]],[17,19,["H1121"]],[19,21,["H3478"]],[21,24,["H4480","H4714"]]]},{"k":1590,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H430"]],[5,6,["H4310"]],[6,8,["H595"]],[8,9,["H3588"]],[9,12,["H1980"]],[12,13,["H413"]],[13,14,["H6547"]],[14,16,["H3588"]],[16,20,["H3318","(H853)"]],[20,22,["H1121"]],[22,24,["H3478"]],[24,27,["H4480","H4714"]]]},{"k":1591,"v":[[0,3,["H559"]],[3,4,["H3588"]],[4,7,["H1961"]],[7,8,["H5973"]],[8,11,["H2088"]],[11,15,["H226"]],[15,18,["H3588"]],[18,19,["H595"]],[19,21,["H7971"]],[21,27,["H3318","(H853)"]],[27,29,["H5971"]],[29,32,["H4480","H4714"]],[32,35,["H5647","(H853)"]],[35,36,["H430"]],[36,37,["H5921"]],[37,38,["H2088"]],[38,39,["H2022"]]]},{"k":1592,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H430"]],[5,6,["H2009"]],[6,8,["H595"]],[8,9,["H935"]],[9,10,["H413"]],[10,12,["H1121"]],[12,14,["H3478"]],[14,17,["H559"]],[17,21,["H430"]],[21,24,["H1"]],[24,26,["H7971"]],[26,28,["H413"]],[28,33,["H559"]],[33,36,["H4100"]],[36,39,["H8034"]],[39,40,["H4100"]],[40,43,["H559"]],[43,44,["H413"]],[44,45,[]]]},{"k":1593,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H4872"]],[5,7,["H1961"]],[7,8,["H834"]],[8,10,["H1961"]],[10,13,["H559"]],[13,14,["H3541"]],[14,17,["H559"]],[17,20,["H1121"]],[20,22,["H3478"]],[22,24,["H1961"]],[24,26,["H7971"]],[26,28,["H413"]],[28,29,[]]]},{"k":1594,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H5750"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H3541"]],[7,10,["H559"]],[10,11,["H413"]],[11,13,["H1121"]],[13,15,["H3478"]],[15,17,["H3068"]],[17,18,["H430"]],[18,21,["H1"]],[21,23,["H430"]],[23,25,["H85"]],[25,27,["H430"]],[27,29,["H3327"]],[29,32,["H430"]],[32,34,["H3290"]],[34,36,["H7971"]],[36,38,["H413"]],[38,40,["H2088"]],[40,43,["H8034"]],[43,45,["H5769"]],[45,47,["H2088"]],[47,50,["H2143"]],[50,53,["H1755","H1755"]]]},{"k":1595,"v":[[0,1,["H1980"]],[1,3,["H622","(H853)"]],[3,5,["H2205"]],[5,7,["H3478"]],[7,10,["H559"]],[10,11,["H413"]],[11,14,["H3068"]],[14,15,["H430"]],[15,18,["H1"]],[18,20,["H430"]],[20,22,["H85"]],[22,24,["H3327"]],[24,27,["H3290"]],[27,28,["H7200"]],[28,29,["H413"]],[29,31,["H559"]],[31,35,["H6485","H6485"]],[35,42,["H6213"]],[42,46,["H4714"]]]},{"k":1596,"v":[[0,4,["H559"]],[4,9,["H5927","(H853)"]],[9,13,["H4480","H6040"]],[13,15,["H4714"]],[15,16,["H413"]],[16,18,["H776"]],[18,21,["H3669"]],[21,24,["H2850"]],[24,27,["H567"]],[27,30,["H6522"]],[30,33,["H2340"]],[33,36,["H2983"]],[36,37,["H413"]],[37,39,["H776"]],[39,40,["H2100"]],[40,42,["H2461"]],[42,44,["H1706"]]]},{"k":1597,"v":[[0,4,["H8085"]],[4,7,["H6963"]],[7,11,["H935"]],[11,12,["H859"]],[12,15,["H2205"]],[15,17,["H3478"]],[17,18,["H413"]],[18,20,["H4428"]],[20,22,["H4714"]],[22,26,["H559"]],[26,27,["H413"]],[27,30,["H3068"]],[30,31,["H430"]],[31,34,["H5680"]],[34,36,["H7136"]],[36,37,["H5921"]],[37,40,["H6258"]],[40,43,["H1980"]],[43,46,["H4994"]],[46,47,["H7969"]],[47,48,["H3117"]],[48,49,["H1870"]],[49,52,["H4057"]],[52,56,["H2076"]],[56,59,["H3068"]],[59,61,["H430"]]]},{"k":1598,"v":[[0,2,["H589"]],[2,4,["H3045"]],[4,5,["H3588"]],[5,7,["H4428"]],[7,9,["H4714"]],[9,11,["H3808"]],[11,12,["H5414"]],[12,14,["H1980"]],[14,15,["H3808"]],[15,19,["H2389"]],[19,20,["H3027"]]]},{"k":1599,"v":[[0,5,["H7971","(H853)"]],[5,7,["H3027"]],[7,9,["H5221","(H853)"]],[9,10,["H4714"]],[10,12,["H3605"]],[12,14,["H6381"]],[14,15,["H834"]],[15,18,["H6213"]],[18,21,["H7130"]],[21,24,["H310"]],[24,25,["H3651"]],[25,30,["H7971"]]]},{"k":1600,"v":[[0,4,["H5414"]],[4,5,["H2088"]],[5,6,["H5971","(H853)"]],[6,7,["H2580"]],[7,10,["H5869"]],[10,13,["H4714"]],[13,19,["H1961"]],[19,21,["H3588"]],[21,23,["H1980"]],[23,26,["H3808"]],[26,27,["H1980"]],[27,28,["H7387"]]]},{"k":1601,"v":[[0,3,["H802"]],[3,5,["H7592"]],[5,8,["H4480","H7934"]],[8,13,["H4480","H1481"]],[13,16,["H1004"]],[16,17,["H3627"]],[17,19,["H3701"]],[19,21,["H3627"]],[21,23,["H2091"]],[23,25,["H8071"]],[25,29,["H7760"]],[29,31,["H5921"]],[31,33,["H1121"]],[33,35,["H5921"]],[35,37,["H1323"]],[37,41,["H5337","(H853)"]],[41,43,["H4714"]]]},{"k":1602,"v":[[0,2,["H4872"]],[2,3,["H6030"]],[3,5,["H559"]],[5,7,["H2005"]],[7,10,["H3808"]],[10,11,["H539"]],[11,13,["H3808"]],[13,14,["H8085"]],[14,17,["H6963"]],[17,18,["H3588"]],[18,21,["H559"]],[21,23,["H3068"]],[23,25,["H3808"]],[25,26,["H7200"]],[26,27,["H413"]],[27,28,[]]]},{"k":1603,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,9,["H4100","H2088"]],[9,12,["H3027"]],[12,15,["H559"]],[15,17,["H4294"]]]},{"k":1604,"v":[[0,3,["H559"]],[3,4,["H7993"]],[4,8,["H776"]],[8,11,["H7993"]],[11,15,["H776"]],[15,18,["H1961"]],[18,20,["H5175"]],[20,22,["H4872"]],[22,23,["H5127"]],[23,25,["H4480","H6440"]],[25,26,[]]]},{"k":1605,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H7971"]],[8,10,["H3027"]],[10,12,["H270"]],[12,16,["H2180"]],[16,20,["H7971"]],[20,22,["H3027"]],[22,24,["H2388"]],[24,28,["H1961"]],[28,30,["H4294"]],[30,33,["H3709"]]]},{"k":1606,"v":[[0,1,["H4616"]],[1,4,["H539"]],[4,5,["H3588"]],[5,7,["H3068"]],[7,8,["H430"]],[8,11,["H1"]],[11,13,["H430"]],[13,15,["H85"]],[15,17,["H430"]],[17,19,["H3327"]],[19,22,["H430"]],[22,24,["H3290"]],[24,26,["H7200"]],[26,27,["H413"]],[27,28,[]]]},{"k":1607,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H5750"]],[5,8,["H935"]],[8,9,["H4994"]],[9,11,["H3027"]],[11,14,["H2436"]],[14,17,["H935"]],[17,19,["H3027"]],[19,22,["H2436"]],[22,28,["H3318"]],[28,29,["H2009"]],[29,31,["H3027"]],[31,33,["H6879"]],[33,35,["H7950"]]]},{"k":1608,"v":[[0,3,["H559"]],[3,4,["H7725"]],[4,6,["H3027"]],[6,7,["H413"]],[7,9,["H2436"]],[9,13,["H7725"]],[13,15,["H3027"]],[15,16,["H413"]],[16,18,["H2436"]],[18,23,["H3318"]],[23,26,["H4480","H2436"]],[26,28,["H2009"]],[28,32,["H7725"]],[32,36,["H1320"]]]},{"k":1609,"v":[[0,6,["H1961"]],[6,7,["H518"]],[7,10,["H3808"]],[10,11,["H539"]],[11,13,["H3808"]],[13,14,["H8085"]],[14,17,["H6963"]],[17,20,["H7223"]],[20,21,["H226"]],[21,25,["H539"]],[25,27,["H6963"]],[27,30,["H314"]],[30,31,["H226"]]]},{"k":1610,"v":[[0,6,["H1961"]],[6,7,["H518"]],[7,10,["H3808"]],[10,11,["H539"]],[11,12,["H1571"]],[12,13,["H428"]],[13,14,["H8147"]],[14,15,["H226"]],[15,16,["H3808"]],[16,17,["H8085"]],[17,20,["H6963"]],[20,24,["H3947"]],[24,27,["H4480","H4325"]],[27,30,["H2975"]],[30,32,["H8210"]],[32,36,["H3004"]],[36,40,["H4325"]],[40,41,["H834"]],[41,43,["H3947"]],[43,45,["H4480"]],[45,47,["H2975"]],[47,49,["H1961"]],[49,50,["H1818"]],[50,53,["H3006"]],[53,54,[]]]},{"k":1611,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3068"]],[6,7,["H994"]],[7,9,["H136"]],[9,10,["H595"]],[10,12,["H3808"]],[12,13,["H376","H1697"]],[13,14,["H1571"]],[14,15,["H4480","H8543","H1571","H4480","H8032"]],[15,16,["H1571"]],[16,17,["H4480","H227"]],[17,20,["H1696"]],[20,21,["H413"]],[21,23,["H5650"]],[23,24,["H3588"]],[24,25,["H595"]],[25,27,["H3515"]],[27,29,["H6310"]],[29,33,["H3515"]],[33,34,["H3956"]]]},{"k":1612,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H4310"]],[7,9,["H7760"]],[9,10,["H120"]],[10,11,["H6310"]],[11,12,["H176"]],[12,13,["H4310"]],[13,14,["H7760"]],[14,16,["H483"]],[16,17,["H176"]],[17,18,["H2795"]],[18,19,["H176"]],[19,21,["H6493"]],[21,22,["H176"]],[22,24,["H5787"]],[24,26,["H3808"]],[26,27,["H595"]],[27,29,["H3068"]]]},{"k":1613,"v":[[0,1,["H6258"]],[1,3,["H1980"]],[3,5,["H595"]],[5,7,["H1961"]],[7,8,["H5973"]],[8,10,["H6310"]],[10,12,["H3384"]],[12,14,["H834"]],[14,17,["H1696"]]]},{"k":1614,"v":[[0,3,["H559"]],[3,4,["H994"]],[4,6,["H136"]],[6,7,["H7971"]],[7,10,["H4994"]],[10,13,["H3027"]],[13,19,["H7971"]]]},{"k":1615,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,10,["H4872"]],[10,13,["H559"]],[13,15,["H3808"]],[15,16,["H175"]],[16,18,["H3881"]],[18,20,["H251"]],[20,22,["H3045"]],[22,23,["H3588"]],[23,24,["H1931"]],[24,27,["H1696","H1696"]],[27,29,["H1571"]],[29,30,["H2009"]],[30,31,["H1931"]],[31,33,["H3318"]],[33,35,["H7125"]],[35,40,["H7200"]],[40,45,["H8055"]],[45,48,["H3820"]]]},{"k":1616,"v":[[0,4,["H1696"]],[4,5,["H413"]],[5,8,["H7760","(H853)"]],[8,9,["H1697"]],[9,12,["H6310"]],[12,14,["H595"]],[14,16,["H1961"]],[16,17,["H5973"]],[17,19,["H6310"]],[19,21,["H5973"]],[21,23,["H6310"]],[23,26,["H3384"]],[26,27,["(H853)"]],[27,28,["H834"]],[28,31,["H6213"]]]},{"k":1617,"v":[[0,2,["H1931"]],[2,6,["H1696"]],[6,7,["H413"]],[7,9,["H5971"]],[9,13,["H1961"]],[13,15,["H1931"]],[15,17,["H1961"]],[17,23,["H6310"]],[23,25,["H859"]],[25,27,["H1961"]],[27,32,["H430"]]]},{"k":1618,"v":[[0,4,["H3947"]],[4,5,["H2088"]],[5,6,["H4294"]],[6,9,["H3027"]],[9,10,["H834"]],[10,13,["H6213","(H853)"]],[13,14,["H226"]]]},{"k":1619,"v":[[0,2,["H4872"]],[2,3,["H1980"]],[3,5,["H7725"]],[5,6,["H413"]],[6,7,["H3503"]],[7,11,["H2859"]],[11,13,["H559"]],[13,18,["H1980"]],[18,21,["H4994"]],[21,23,["H7725"]],[23,24,["H413"]],[24,26,["H251"]],[26,27,["H834"]],[27,30,["H4714"]],[30,32,["H7200"]],[32,36,["H5750"]],[36,37,["H2416"]],[37,39,["H3503"]],[39,40,["H559"]],[40,42,["H4872"]],[42,43,["H1980"]],[43,45,["H7965"]]]},{"k":1620,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H4080"]],[8,9,["H1980"]],[9,10,["H7725"]],[10,12,["H4714"]],[12,13,["H3588"]],[13,14,["H3605"]],[14,16,["H376"]],[16,18,["H4191"]],[18,20,["H1245","(H853)"]],[20,22,["H5315"]]]},{"k":1621,"v":[[0,2,["H4872"]],[2,3,["H3947","(H853)"]],[3,5,["H802"]],[5,8,["H1121"]],[8,10,["H7392"]],[10,12,["H5921"]],[12,14,["H2543"]],[14,17,["H7725"]],[17,20,["H776"]],[20,22,["H4714"]],[22,24,["H4872"]],[24,25,["H3947","(H853)"]],[25,27,["H4294"]],[27,29,["H430"]],[29,32,["H3027"]]]},{"k":1622,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H1980"]],[9,11,["H7725"]],[11,13,["H4714"]],[13,14,["H7200"]],[14,17,["H6213"]],[17,18,["H3605"]],[18,20,["H4159"]],[20,21,["H6440"]],[21,22,["H6547"]],[22,23,["H834"]],[23,26,["H7760"]],[26,29,["H3027"]],[29,31,["H589"]],[31,33,["H2388","(H853)"]],[33,35,["H3820"]],[35,39,["H3808"]],[39,40,["(H853)"]],[40,42,["H5971"]],[42,43,["H7971"]]]},{"k":1623,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,6,["H6547"]],[6,7,["H3541"]],[7,8,["H559"]],[8,10,["H3068"]],[10,11,["H3478"]],[11,14,["H1121"]],[14,17,["H1060"]]]},{"k":1624,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["(H853)"]],[6,8,["H1121"]],[8,9,["H7971"]],[9,13,["H5647"]],[13,18,["H3985"]],[18,22,["H7971"]],[22,23,["H2009"]],[23,24,["H595"]],[24,26,["H2026","(H853)"]],[26,28,["H1121"]],[28,31,["H1060"]]]},{"k":1625,"v":[[0,5,["H1961"]],[5,8,["H1870"]],[8,11,["H4411"]],[11,14,["H3068"]],[14,15,["H6298"]],[15,18,["H1245"]],[18,20,["H4191"]],[20,21,[]]]},{"k":1626,"v":[[0,2,["H6855"]],[2,3,["H3947"]],[3,6,["H6864"]],[6,9,["H3772","(H853)"]],[9,11,["H6190"]],[11,14,["H1121"]],[14,16,["H5060"]],[16,20,["H7272"]],[20,22,["H559"]],[22,23,["H3588"]],[23,25,["H1818"]],[25,26,["H2860"]],[26,28,["H859"]],[28,30,[]]]},{"k":1627,"v":[[0,5,["H7503","H4480"]],[5,6,["H227"]],[6,8,["H559"]],[8,10,["H1818"]],[10,11,["H2860"]],[11,17,["H4139"]]]},{"k":1628,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H175"]],[6,7,["H1980"]],[7,10,["H4057"]],[10,12,["H7125"]],[12,13,["H4872"]],[13,16,["H1980"]],[16,18,["H6298"]],[18,22,["H2022"]],[22,24,["H430"]],[24,26,["H5401"]],[26,27,[]]]},{"k":1629,"v":[[0,2,["H4872"]],[2,3,["H5046"]],[3,4,["H175","(H853)"]],[4,5,["H3605"]],[5,7,["H1697"]],[7,10,["H3068"]],[10,11,["H834"]],[11,13,["H7971"]],[13,16,["H3605"]],[16,18,["H226"]],[18,19,["H834"]],[19,22,["H6680"]],[22,23,[]]]},{"k":1630,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,5,["H1980"]],[5,8,["H622","(H853)"]],[8,9,["H3605"]],[9,11,["H2205"]],[11,14,["H1121"]],[14,16,["H3478"]]]},{"k":1631,"v":[[0,2,["H175"]],[2,3,["H1696","(H853)"]],[3,4,["H3605"]],[4,6,["H1697"]],[6,7,["H834"]],[7,9,["H3068"]],[9,11,["H1696"]],[11,12,["H413"]],[12,13,["H4872"]],[13,15,["H6213"]],[15,17,["H226"]],[17,20,["H5869"]],[20,23,["H5971"]]]},{"k":1632,"v":[[0,3,["H5971"]],[3,4,["H539"]],[4,8,["H8085"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,13,["H6485","(H853)"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,19,["H3588"]],[19,23,["H7200","(H853)"]],[23,25,["H6040"]],[25,30,["H6915"]],[30,32,["H7812"]]]},{"k":1633,"v":[[0,2,["H310"]],[2,3,["H4872"]],[3,5,["H175"]],[5,7,["H935"]],[7,9,["H559","H413"]],[9,10,["H6547"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H3068"]],[14,15,["H430"]],[15,17,["H3478"]],[17,18,["(H853)"]],[18,20,["H5971"]],[20,21,["H7971"]],[21,27,["H2287"]],[27,32,["H4057"]]]},{"k":1634,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H4310"]],[4,7,["H3068"]],[7,8,["H834"]],[8,11,["H8085"]],[11,13,["H6963"]],[13,15,["(H853)"]],[15,16,["H3478"]],[16,17,["H7971"]],[17,19,["H3045"]],[19,20,["H3808","(H853)"]],[20,22,["H3068"]],[22,23,["H1571","H3808"]],[23,26,["(H853)"]],[26,27,["H3478"]],[27,28,["H7971"]]]},{"k":1635,"v":[[0,3,["H559"]],[3,5,["H430"]],[5,8,["H5680"]],[8,10,["H7122"]],[10,11,["H5921"]],[11,15,["H1980"]],[15,18,["H4994"]],[18,19,["H7969"]],[19,20,["H3117"]],[20,21,["H1870"]],[21,24,["H4057"]],[24,26,["H2076"]],[26,29,["H3068"]],[29,31,["H430"]],[31,32,["H6435"]],[32,35,["H6293"]],[35,38,["H1698"]],[38,39,["H176"]],[39,42,["H2719"]]]},{"k":1636,"v":[[0,3,["H4428"]],[3,5,["H4714"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H4100"]],[9,12,["H4872"]],[12,14,["H175"]],[14,15,["H6544","(H853)"]],[15,17,["H5971"]],[17,20,["H4480","H4639"]],[20,21,["H1980"]],[21,25,["H5450"]]]},{"k":1637,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H2005"]],[4,6,["H5971"]],[6,9,["H776"]],[9,10,["H6258"]],[10,12,["H7227"]],[12,17,["H7673","(H853)"]],[17,20,["H4480","H5450"]]]},{"k":1638,"v":[[0,2,["H6547"]],[2,3,["H6680"]],[3,5,["H1931"]],[5,6,["H3117","(H853)"]],[6,8,["H5065"]],[8,11,["H5971"]],[11,14,["H7860"]],[14,15,["H559"]]]},{"k":1639,"v":[[0,3,["H3808"]],[3,4,["H3254"]],[4,5,["H5414"]],[5,7,["H5971"]],[7,8,["H8401"]],[8,10,["H3835"]],[10,11,["H3843"]],[11,13,["H8543","H8032"]],[13,15,["H1992"]],[15,16,["H1980"]],[16,18,["H7197"]],[18,19,["H8401"]],[19,21,[]]]},{"k":1640,"v":[[0,3,["H4971"]],[3,6,["H3843"]],[6,7,["H834"]],[7,8,["H1992"]],[8,10,["H6213"]],[10,11,["H8543","H8032"]],[11,14,["H7760"]],[14,15,["H5921"]],[15,19,["H3808"]],[19,20,["H1639"]],[20,22,["H4480"]],[22,23,["H3588"]],[23,24,["H1992"]],[24,26,["H7503"]],[26,27,["H5921","H3651"]],[27,28,["H1992"]],[28,29,["H6817"]],[29,30,["H559"]],[30,33,["H1980"]],[33,35,["H2076"]],[35,38,["H430"]]]},{"k":1641,"v":[[0,6,["H3513","H5656"]],[6,7,["H5921"]],[7,9,["H376"]],[9,13,["H6213"]],[13,18,["H408"]],[18,19,["H8159"]],[19,20,["H8267"]],[20,21,["H1697"]]]},{"k":1642,"v":[[0,3,["H5065"]],[3,6,["H5971"]],[6,8,["H3318"]],[8,11,["H7860"]],[11,14,["H559"]],[14,15,["H413"]],[15,17,["H5971"]],[17,18,["H559"]],[18,19,["H3541"]],[19,20,["H559"]],[20,21,["H6547"]],[21,24,["H369"]],[24,25,["H5414"]],[25,27,["H8401"]]]},{"k":1643,"v":[[0,1,["H1980"]],[1,2,["H859"]],[2,3,["H3947"]],[3,5,["H8401"]],[5,6,["H4480","H834"]],[6,9,["H4672"]],[9,11,["H3588"]],[11,12,["H369"]],[12,13,["H1697"]],[13,16,["H4480","H5656"]],[16,19,["H1639"]]]},{"k":1644,"v":[[0,3,["H5971"]],[3,6,["H6327"]],[6,8,["H3605"]],[8,10,["H776"]],[10,12,["H4714"]],[12,14,["H7197"]],[14,15,["H7179"]],[15,18,["H8401"]]]},{"k":1645,"v":[[0,3,["H5065"]],[3,4,["H213"]],[4,6,["H559"]],[6,7,["H3615"]],[7,9,["H4639"]],[9,11,["H3117","H3117"]],[11,12,["H1697"]],[12,14,["H834"]],[14,16,["H1961"]],[16,17,["H8401"]]]},{"k":1646,"v":[[0,3,["H7860"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,9,["H834"]],[9,10,["H6547"]],[10,11,["H5065"]],[11,13,["H7760"]],[13,14,["H5921"]],[14,17,["H5221"]],[17,19,["H559"]],[19,20,["H4069"]],[20,23,["H3808"]],[23,24,["H3615"]],[24,26,["H2706"]],[26,29,["H3835"]],[29,30,["H1571"]],[30,31,["H8543"]],[31,32,["H1571"]],[32,34,["H3117"]],[34,36,["H8543","H8032"]]]},{"k":1647,"v":[[0,3,["H7860"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,9,["H935"]],[9,11,["H6817"]],[11,12,["H413"]],[12,13,["H6547"]],[13,14,["H559"]],[14,15,["H4100"]],[15,16,["H6213"]],[16,18,["H3541"]],[18,21,["H5650"]]]},{"k":1648,"v":[[0,3,["H369"]],[3,4,["H8401"]],[4,5,["H5414"]],[5,8,["H5650"]],[8,11,["H559"]],[11,14,["H6213"]],[14,15,["H3843"]],[15,17,["H2009"]],[17,19,["H5650"]],[19,21,["H5221"]],[21,24,["H2398"]],[24,29,["H5971"]]]},{"k":1649,"v":[[0,3,["H559"]],[3,4,["H859"]],[4,6,["H7503"]],[6,9,["H7503"]],[9,10,["H5921","H3651"]],[10,11,["H859"]],[11,12,["H559"]],[12,15,["H1980"]],[15,18,["H2076"]],[18,21,["H3068"]]]},{"k":1650,"v":[[0,1,["H1980"]],[1,3,["H6258"]],[3,5,["H5647"]],[5,9,["H3808"]],[9,10,["H8401"]],[10,12,["H5414"]],[12,17,["H5414"]],[17,19,["H8506"]],[19,21,["H3843"]]]},{"k":1651,"v":[[0,3,["H7860"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,10,["H7200"]],[10,15,["H7451"]],[15,20,["H559"]],[20,23,["H3808"]],[23,24,["H1639"]],[24,28,["H4480","H3843"]],[28,31,["H3117","H3117"]],[31,32,["H1697"]]]},{"k":1652,"v":[[0,3,["H6293","(H853)"]],[3,4,["H4872"]],[4,6,["H175"]],[6,8,["H5324"]],[8,11,["H7125"]],[11,15,["H3318"]],[15,16,["H4480","H854"]],[16,17,["H6547"]]]},{"k":1653,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H3068"]],[7,8,["H7200"]],[8,9,["H5921"]],[9,12,["H8199"]],[12,13,["H834"]],[13,16,["(H853)"]],[16,18,["H7381"]],[18,21,["H887"]],[21,24,["H5869"]],[24,26,["H6547"]],[26,30,["H5869"]],[30,33,["H5650"]],[33,35,["H5414"]],[35,37,["H2719"]],[37,40,["H3027"]],[40,42,["H2026"]],[42,43,[]]]},{"k":1654,"v":[[0,2,["H4872"]],[2,3,["H7725"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H559"]],[8,9,["H136"]],[9,10,["H4100"]],[10,15,["H7489"]],[15,16,["H2088"]],[16,17,["H5971"]],[17,18,["H4100"]],[18,20,["H2088"]],[20,24,["H7971"]],[24,25,[]]]},{"k":1655,"v":[[0,2,["H4480","H227"]],[2,4,["H935"]],[4,5,["H413"]],[5,6,["H6547"]],[6,8,["H1696"]],[8,11,["H8034"]],[11,15,["H7489"]],[15,17,["H2088"]],[17,18,["H5971"]],[18,19,["H3808"]],[19,22,["H5337","(H853)"]],[22,24,["H5971"]],[24,26,["H5337"]]]},{"k":1656,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H6258"]],[7,10,["H7200"]],[10,11,["H834"]],[11,14,["H6213"]],[14,16,["H6547"]],[16,17,["H3588"]],[17,20,["H2389"]],[20,21,["H3027"]],[21,26,["H7971"]],[26,30,["H2389"]],[30,31,["H3027"]],[31,36,["H1644"]],[36,39,["H4480","H776"]]]},{"k":1657,"v":[[0,2,["H430"]],[2,3,["H1696"]],[3,4,["H413"]],[4,5,["H4872"]],[5,7,["H559"]],[7,8,["H413"]],[8,10,["H589"]],[10,13,["H3068"]]]},{"k":1658,"v":[[0,3,["H7200"]],[3,4,["H413"]],[4,5,["H85"]],[5,6,["H413"]],[6,7,["H3327"]],[7,9,["H413"]],[9,10,["H3290"]],[10,15,["H410"]],[15,16,["H7706"]],[16,20,["H8034"]],[20,21,["H3068"]],[21,24,["H3808"]],[24,25,["H3045"]],[25,27,[]]]},{"k":1659,"v":[[0,4,["H1571"]],[4,5,["H6965","(H853)"]],[5,7,["H1285"]],[7,8,["H854"]],[8,11,["H5414"]],[11,12,["(H853)"]],[12,14,["H776"]],[14,16,["H3667","(H853)"]],[16,18,["H776"]],[18,21,["H4033"]],[21,22,["H834"]],[22,25,["H1481"]]]},{"k":1660,"v":[[0,2,["H589"]],[2,4,["H1571"]],[4,5,["H8085","(H853)"]],[5,7,["H5009"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,13,["H834","(H853)"]],[13,15,["H4714"]],[15,18,["H5647"]],[18,22,["H2142","(H853)"]],[22,24,["H1285"]]]},{"k":1661,"v":[[0,1,["H3651"]],[1,2,["H559"]],[2,5,["H1121"]],[5,7,["H3478"]],[7,8,["H589"]],[8,11,["H3068"]],[11,17,["H3318","(H853)"]],[17,19,["H4480","H8478"]],[19,21,["H5450"]],[21,24,["H4714"]],[24,28,["H5337"]],[28,33,["H4480","H5656"]],[33,37,["H1350"]],[37,42,["H5186"]],[42,43,["H2220"]],[43,46,["H1419"]],[46,47,["H8201"]]]},{"k":1662,"v":[[0,4,["H3947"]],[4,10,["H5971"]],[10,14,["H1961"]],[14,18,["H430"]],[18,22,["H3045"]],[22,23,["H3588"]],[23,24,["H589"]],[24,27,["H3068"]],[27,29,["H430"]],[29,33,["H3318","(H853)"]],[33,35,["H4480","H8478"]],[35,37,["H5450"]],[37,40,["H4714"]]]},{"k":1663,"v":[[0,6,["H935","(H853)"]],[6,7,["H413"]],[7,9,["H776"]],[9,12,["H834"]],[12,15,["H5375","(H853)","H3027"]],[15,17,["H5414"]],[17,20,["H85"]],[20,22,["H3327"]],[22,25,["H3290"]],[25,29,["H5414"]],[29,34,["H4181"]],[34,35,["H589"]],[35,38,["H3068"]]]},{"k":1664,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,4,["H3651"]],[4,5,["H413"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,12,["H8085"]],[12,13,["H3808"]],[13,14,["H413"]],[14,15,["H4872"]],[15,17,["H4480","H7115"]],[17,19,["H7307"]],[19,23,["H4480","H5656","H7186"]]]},{"k":1665,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":1666,"v":[[0,2,["H935"]],[2,3,["H1696"]],[3,4,["H413"]],[4,5,["H6547"]],[5,6,["H4428"]],[6,8,["H4714"]],[8,11,["(H853)"]],[11,13,["H1121"]],[13,15,["H3478"]],[15,16,["H7971"]],[16,20,["H4480","H776"]]]},{"k":1667,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,4,["H6440"]],[4,6,["H3068"]],[6,7,["H559"]],[7,8,["H2005"]],[8,10,["H1121"]],[10,12,["H3478"]],[12,14,["H3808"]],[14,15,["H8085"]],[15,16,["H413"]],[16,18,["H349"]],[18,21,["H6547"]],[21,22,["H8085"]],[22,24,["H589"]],[24,27,["H6189"]],[27,28,["H8193"]]]},{"k":1668,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,14,["H6680"]],[14,15,["H413"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,21,["H413"]],[21,22,["H6547"]],[22,23,["H4428"]],[23,25,["H4714"]],[25,27,["H3318","(H853)"]],[27,29,["H1121"]],[29,31,["H3478"]],[31,35,["H4480","H776"]],[35,37,["H4714"]]]},{"k":1669,"v":[[0,1,["H428"]],[1,4,["H7218"]],[4,7,["H1"]],[7,8,["H1004"]],[8,10,["H1121"]],[10,12,["H7205"]],[12,14,["H1060"]],[14,16,["H3478"]],[16,17,["H2585"]],[17,19,["H6396"]],[19,20,["H2696"]],[20,22,["H3756"]],[22,23,["H428"]],[23,26,["H4940"]],[26,28,["H7205"]]]},{"k":1670,"v":[[0,3,["H1121"]],[3,5,["H8095"]],[5,6,["H3223"]],[6,8,["H3226"]],[8,10,["H161"]],[10,12,["H3199"]],[12,14,["H6714"]],[14,16,["H7586"]],[16,18,["H1121"]],[18,22,["H3669"]],[22,23,["H428"]],[23,26,["H4940"]],[26,28,["H8095"]]]},{"k":1671,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H1121"]],[8,10,["H3878"]],[10,14,["H8435"]],[14,15,["H1648"]],[15,17,["H6955"]],[17,19,["H4847"]],[19,22,["H8141"]],[22,25,["H2416"]],[25,27,["H3878"]],[27,30,["H3967"]],[30,31,["H7970"]],[31,33,["H7651"]],[33,34,["H8141"]]]},{"k":1672,"v":[[0,2,["H1121"]],[2,4,["H1648"]],[4,5,["H3845"]],[5,7,["H8096"]],[7,11,["H4940"]]]},{"k":1673,"v":[[0,3,["H1121"]],[3,5,["H6955"]],[5,6,["H6019"]],[6,8,["H3324"]],[8,10,["H2275"]],[10,12,["H5816"]],[12,15,["H8141"]],[15,18,["H2416"]],[18,20,["H6955"]],[20,23,["H3967"]],[23,24,["H7970"]],[24,26,["H7969"]],[26,27,["H8141"]]]},{"k":1674,"v":[[0,3,["H1121"]],[3,5,["H4847"]],[5,6,["H4249"]],[6,8,["H4187"]],[8,9,["H428"]],[9,12,["H4940"]],[12,14,["H3878"]],[14,18,["H8435"]]]},{"k":1675,"v":[[0,2,["H6019"]],[2,3,["H3947"]],[3,4,["(H853)"]],[4,5,["H3115"]],[5,8,["H1733"]],[8,10,["H802"]],[10,13,["H3205"]],[13,14,["(H853)"]],[14,15,["H175"]],[15,17,["H4872"]],[17,20,["H8141"]],[20,23,["H2416"]],[23,25,["H6019"]],[25,28,["H3967"]],[28,30,["H7970"]],[30,32,["H7651"]],[32,33,["H8141"]]]},{"k":1676,"v":[[0,3,["H1121"]],[3,5,["H3324"]],[5,6,["H7141"]],[6,8,["H5298"]],[8,10,["H2147"]]]},{"k":1677,"v":[[0,3,["H1121"]],[3,5,["H5816"]],[5,6,["H4332"]],[6,8,["H469"]],[8,10,["H5644"]]]},{"k":1678,"v":[[0,2,["H175"]],[2,3,["H3947"]],[3,4,["(H853)"]],[4,5,["H472"]],[5,6,["H1323"]],[6,8,["H5992"]],[8,9,["H269"]],[9,11,["H5177"]],[11,13,["H802"]],[13,16,["H3205"]],[16,17,["(H853)"]],[17,18,["H5070"]],[18,20,["H30","(H853)"]],[20,21,["H499"]],[21,23,["H385"]]]},{"k":1679,"v":[[0,3,["H1121"]],[3,5,["H7141"]],[5,6,["H617"]],[6,8,["H511"]],[8,10,["H23"]],[10,11,["H428"]],[11,14,["H4940"]],[14,17,["H7145"]]]},{"k":1680,"v":[[0,2,["H499"]],[2,3,["H175"]],[3,4,["H1121"]],[4,5,["H3947"]],[5,10,["H4480","H1323"]],[10,12,["H6317"]],[12,14,["H802"]],[14,17,["H3205"]],[17,18,["(H853)"]],[18,19,["H6372"]],[19,20,["H428"]],[20,23,["H7218"]],[23,26,["H1"]],[26,29,["H3881"]],[29,33,["H4940"]]]},{"k":1681,"v":[[0,1,["H1931"]],[1,4,["H175"]],[4,6,["H4872"]],[6,8,["H834"]],[8,10,["H3068"]],[10,11,["H559"]],[11,13,["H3318","(H853)"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,20,["H4480","H776"]],[20,22,["H4714"]],[22,24,["H5921"]],[24,26,["H6635"]]]},{"k":1682,"v":[[0,1,["H1992"]],[1,5,["H1696"]],[5,6,["H413"]],[6,7,["H6547"]],[7,8,["H4428"]],[8,10,["H4714"]],[10,13,["H3318","(H853)"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,19,["H4480","H4714"]],[19,22,["H1931"]],[22,23,["H4872"]],[23,25,["H175"]]]},{"k":1683,"v":[[0,5,["H1961"]],[5,8,["H3117"]],[8,11,["H3068"]],[11,12,["H1696"]],[12,13,["H413"]],[13,14,["H4872"]],[14,17,["H776"]],[17,19,["H4714"]]]},{"k":1684,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]],[7,8,["H589"]],[8,11,["H3068"]],[11,12,["H1696"]],[12,14,["H413"]],[14,15,["H6547"]],[15,16,["H4428"]],[16,18,["H4714","(H853)"]],[18,19,["H3605"]],[19,20,["H834"]],[20,21,["H589"]],[21,22,["H1696"]],[22,23,["H413"]],[23,24,[]]]},{"k":1685,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H6440"]],[4,6,["H3068"]],[6,7,["H2005"]],[7,8,["H589"]],[8,11,["H6189"]],[11,12,["H8193"]],[12,14,["H349"]],[14,16,["H6547"]],[16,17,["H8085"]],[17,18,["H413"]],[18,19,[]]]},{"k":1686,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H7200"]],[7,10,["H5414"]],[10,13,["H430"]],[13,15,["H6547"]],[15,17,["H175"]],[17,19,["H251"]],[19,21,["H1961"]],[21,23,["H5030"]]]},{"k":1687,"v":[[0,1,["H859"]],[1,3,["H1696","(H853)"]],[3,4,["H3605"]],[4,5,["H834"]],[5,7,["H6680"]],[7,10,["H175"]],[10,12,["H251"]],[12,14,["H1696"]],[14,15,["H413"]],[15,16,["H6547"]],[16,19,["H7971","(H853)"]],[19,21,["H1121"]],[21,23,["H3478"]],[23,27,["H4480","H776"]]]},{"k":1688,"v":[[0,2,["H589"]],[2,4,["H7185","(H853)"]],[4,5,["H6547"]],[5,6,["H3820"]],[6,8,["H7235","(H853)"]],[8,10,["H226"]],[10,13,["H4159"]],[13,16,["H776"]],[16,18,["H4714"]]]},{"k":1689,"v":[[0,2,["H6547"]],[2,4,["H3808"]],[4,5,["H8085"]],[5,6,["H413"]],[6,11,["H5414","(H853)"]],[11,13,["H3027"]],[13,15,["H4714"]],[15,18,["H3318","(H853)"]],[18,20,["H6635"]],[20,21,["(H853)"]],[21,23,["H5971"]],[23,25,["H1121"]],[25,27,["H3478"]],[27,31,["H4480","H776"]],[31,33,["H4714"]],[33,35,["H1419"]],[35,36,["H8201"]]]},{"k":1690,"v":[[0,3,["H4714"]],[3,5,["H3045"]],[5,6,["H3588"]],[6,7,["H589"]],[7,10,["H3068"]],[10,14,["H5186","(H853)"]],[14,16,["H3027"]],[16,17,["H5921"]],[17,18,["H4714"]],[18,21,["H3318","(H853)"]],[21,23,["H1121"]],[23,25,["H3478"]],[25,27,["H4480","H8432"]],[27,28,[]]]},{"k":1691,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,5,["H6213"]],[5,6,["H834"]],[6,8,["H3068"]],[8,9,["H6680"]],[9,11,["H3651"]],[11,12,["H6213"]],[12,13,[]]]},{"k":1692,"v":[[0,2,["H4872"]],[2,4,["H8084"]],[4,5,["H8141"]],[5,6,["H1121"]],[6,8,["H175"]],[8,9,["H8084"]],[9,11,["H7969"]],[11,12,["H8141"]],[12,13,["H1121"]],[13,16,["H1696"]],[16,17,["H413"]],[17,18,["H6547"]]]},{"k":1693,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H559"]]]},{"k":1694,"v":[[0,1,["H3588"]],[1,2,["H6547"]],[2,4,["H1696"]],[4,5,["H413"]],[5,7,["H559"]],[7,8,["H5414"]],[8,10,["H4159"]],[10,16,["H559"]],[16,17,["H413"]],[17,18,["H175"]],[18,19,["H3947","(H853)"]],[19,21,["H4294"]],[21,23,["H7993"]],[23,25,["H6440"]],[25,26,["H6547"]],[26,30,["H1961"]],[30,32,["H8577"]]]},{"k":1695,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,6,["H935"]],[6,7,["H413"]],[7,8,["H6547"]],[8,11,["H6213"]],[11,12,["H3651"]],[12,13,["H834"]],[13,15,["H3068"]],[15,17,["H6680"]],[17,19,["H175"]],[19,21,["H7993","(H853)"]],[21,23,["H4294"]],[23,24,["H6440"]],[24,25,["H6547"]],[25,27,["H6440"]],[27,29,["H5650"]],[29,32,["H1961"]],[32,34,["H8577"]]]},{"k":1696,"v":[[0,2,["H6547"]],[2,3,["H1571"]],[3,4,["H7121"]],[4,7,["H2450"]],[7,10,["H3784"]],[10,13,["H2748"]],[13,15,["H4714"]],[15,16,["H1992"]],[16,17,["H1571"]],[17,18,["H6213"]],[18,21,["H3651"]],[21,24,["H3858"]]]},{"k":1697,"v":[[0,4,["H7993"]],[4,6,["H376"]],[6,8,["H4294"]],[8,11,["H1961"]],[11,12,["H8577"]],[12,14,["H175"]],[14,15,["H4294"]],[15,17,["H1104","(H853)"]],[17,19,["H4294"]]]},{"k":1698,"v":[[0,3,["H2388"]],[3,4,["H6547"]],[4,5,["H3820"]],[5,8,["H8085"]],[8,9,["H3808"]],[9,10,["H413"]],[10,12,["H834"]],[12,14,["H3068"]],[14,16,["H1696"]]]},{"k":1699,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H6547"]],[7,8,["H3820"]],[8,10,["H3515"]],[10,12,["H3985"]],[12,16,["H5971"]],[16,17,["H7971"]]]},{"k":1700,"v":[[0,1,["H1980"]],[1,3,["H413"]],[3,4,["H6547"]],[4,7,["H1242"]],[7,8,["H2009"]],[8,11,["H3318"]],[11,14,["H4325"]],[14,18,["H5324"]],[18,19,["H5921"]],[19,21,["H2975"]],[21,22,["H8193"]],[22,25,["H7125"]],[25,28,["H4294"]],[28,29,["H834"]],[29,31,["H2015"]],[31,34,["H5175"]],[34,37,["H3947"]],[37,40,["H3027"]]]},{"k":1701,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,8,["H3068"]],[8,9,["H430"]],[9,12,["H5680"]],[12,14,["H7971"]],[14,16,["H413"]],[16,18,["H559"]],[18,19,["(H853)"]],[19,21,["H5971"]],[21,22,["H7971"]],[22,26,["H5647"]],[26,30,["H4057"]],[30,32,["H2009"]],[32,33,["H5704","H3541"]],[33,36,["H3808"]],[36,37,["H8085"]]]},{"k":1702,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H2063"]],[6,9,["H3045"]],[9,10,["H3588"]],[10,11,["H589"]],[11,14,["H3068"]],[14,15,["H2009"]],[15,16,["H595"]],[16,18,["H5221"]],[18,21,["H4294"]],[21,22,["H834"]],[22,26,["H3027"]],[26,27,["H5921"]],[27,29,["H4325"]],[29,30,["H834"]],[30,34,["H2975"]],[34,39,["H2015"]],[39,41,["H1818"]]]},{"k":1703,"v":[[0,3,["H1710"]],[3,4,["H834"]],[4,8,["H2975"]],[8,10,["H4191"]],[10,13,["H2975"]],[13,15,["H887"]],[15,18,["H4714"]],[18,20,["H3811"]],[20,22,["H8354"]],[22,25,["H4325"]],[25,26,["H4480"]],[26,28,["H2975"]]]},{"k":1704,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H175"]],[9,10,["H3947"]],[10,12,["H4294"]],[12,15,["H5186"]],[15,17,["H3027"]],[17,18,["H5921"]],[18,20,["H4325"]],[20,22,["H4714"]],[22,23,["H5921"]],[23,25,["H5104"]],[25,26,["H5921"]],[26,28,["H2975"]],[28,30,["H5921"]],[30,32,["H98"]],[32,34,["H5921"]],[34,35,["H3605"]],[35,37,["H4723"]],[37,39,["H4325"]],[39,43,["H1961"]],[43,44,["H1818"]],[44,49,["H1961"]],[49,50,["H1818"]],[50,52,["H3605"]],[52,54,["H776"]],[54,56,["H4714"]],[56,61,["H6086"]],[61,66,["H68"]]]},{"k":1705,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,5,["H6213"]],[5,6,["H3651"]],[6,7,["H834"]],[7,9,["H3068"]],[9,10,["H6680"]],[10,14,["H7311"]],[14,16,["H4294"]],[16,18,["H5221","(H853)"]],[18,20,["H4325"]],[20,21,["H834"]],[21,25,["H2975"]],[25,28,["H5869"]],[28,30,["H6547"]],[30,34,["H5869"]],[34,37,["H5650"]],[37,39,["H3605"]],[39,41,["H4325"]],[41,42,["H834"]],[42,46,["H2975"]],[46,48,["H2015"]],[48,50,["H1818"]]]},{"k":1706,"v":[[0,3,["H1710"]],[3,4,["H834"]],[4,8,["H2975"]],[8,9,["H4191"]],[9,12,["H2975"]],[12,13,["H887"]],[13,16,["H4714"]],[16,17,["H3201"]],[17,18,["H3808"]],[18,19,["H8354"]],[19,22,["H4325"]],[22,23,["H4480"]],[23,25,["H2975"]],[25,28,["H1961"]],[28,29,["H1818"]],[29,31,["H3605"]],[31,33,["H776"]],[33,35,["H4714"]]]},{"k":1707,"v":[[0,3,["H2748"]],[3,5,["H4714"]],[5,6,["H6213"]],[6,7,["H3651"]],[7,10,["H3909"]],[10,12,["H6547"]],[12,13,["H3820"]],[13,15,["H2388"]],[15,16,["H3808"]],[16,19,["H8085"]],[19,20,["H413"]],[20,22,["H834"]],[22,24,["H3068"]],[24,26,["H1696"]]]},{"k":1708,"v":[[0,2,["H6547"]],[2,3,["H6437"]],[3,5,["H935"]],[5,6,["H413"]],[6,8,["H1004"]],[8,9,["H3808"]],[9,12,["H7896"]],[12,14,["H3820"]],[14,16,["H2063"]],[16,17,["H1571"]]]},{"k":1709,"v":[[0,2,["H3605"]],[2,4,["H4714"]],[4,5,["H2658"]],[5,7,["H5439"]],[7,9,["H2975"]],[9,11,["H4325"]],[11,13,["H8354"]],[13,14,["H3588"]],[14,16,["H3201"]],[16,17,["H3808"]],[17,18,["H8354"]],[18,21,["H4480","H4325"]],[21,24,["H2975"]]]},{"k":1710,"v":[[0,2,["H7651"]],[2,3,["H3117"]],[3,5,["H4390"]],[5,6,["H310"]],[6,9,["H3068"]],[9,11,["H5221","(H853)"]],[11,13,["H2975"]]]},{"k":1711,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H935"]],[7,8,["H413"]],[8,9,["H6547"]],[9,11,["H559"]],[11,12,["H413"]],[12,14,["H3541"]],[14,15,["H559"]],[15,17,["H3068"]],[17,18,["(H853)"]],[18,20,["H5971"]],[20,21,["H7971"]],[21,25,["H5647"]],[25,26,[]]]},{"k":1712,"v":[[0,2,["H518"]],[2,3,["H859"]],[3,4,["H3986"]],[4,8,["H7971"]],[8,9,["H2009"]],[9,10,["H595"]],[10,12,["H5062","(H853)"]],[12,13,["H3605"]],[13,15,["H1366"]],[15,17,["H6854"]]]},{"k":1713,"v":[[0,3,["H2975"]],[3,8,["H8317","H6854"]],[8,12,["H5927"]],[12,14,["H935"]],[14,17,["H1004"]],[17,21,["H2315","H4904"]],[21,23,["H5921"]],[23,25,["H4296"]],[25,29,["H1004"]],[29,32,["H5650"]],[32,36,["H5971"]],[36,40,["H8574"]],[40,44,["H4863"]]]},{"k":1714,"v":[[0,3,["H6854"]],[3,6,["H5927"]],[6,13,["H5971"]],[13,16,["H3605"]],[16,18,["H5650"]]]},{"k":1715,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H175"]],[9,11,["H5186","(H853)"]],[11,13,["H3027"]],[13,16,["H4294"]],[16,17,["H5921"]],[17,19,["H5104"]],[19,20,["H5921"]],[20,22,["H2975"]],[22,24,["H5921"]],[24,26,["H98"]],[26,28,["(H853)"]],[28,29,["H6854"]],[29,32,["H5927"]],[32,33,["H5921"]],[33,35,["H776"]],[35,37,["H4714"]]]},{"k":1716,"v":[[0,2,["H175"]],[2,4,["H5186","(H853)"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,9,["H4325"]],[9,11,["H4714"]],[11,14,["H6854"]],[14,16,["H5927"]],[16,18,["H3680","(H853)"]],[18,20,["H776"]],[20,22,["H4714"]]]},{"k":1717,"v":[[0,3,["H2748"]],[3,4,["H6213"]],[4,5,["H3651"]],[5,8,["H3909"]],[8,11,["H5927","(H853)"]],[11,12,["H6854"]],[12,13,["H5921"]],[13,15,["H776"]],[15,17,["H4714"]]]},{"k":1718,"v":[[0,2,["H6547"]],[2,3,["H7121"]],[3,5,["H4872"]],[5,7,["H175"]],[7,9,["H559"]],[9,10,["H6279","H413"]],[10,12,["H3068"]],[12,17,["H5493"]],[17,19,["H6854"]],[19,20,["H4480"]],[20,25,["H4480","H5971"]],[25,29,["(H853)"]],[29,31,["H5971"]],[31,32,["H7971"]],[32,37,["H2076"]],[37,40,["H3068"]]]},{"k":1719,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,5,["H6547"]],[5,6,["H6286"]],[6,7,["H5921"]],[7,9,["H4970"]],[9,12,["H6279"]],[12,18,["H5650"]],[18,22,["H5971"]],[22,24,["H3772"]],[24,26,["H6854"]],[26,27,["H4480"]],[27,31,["(H4480)","H1004"]],[31,35,["H7604"]],[35,38,["H2975"]],[38,39,["H7535"]]]},{"k":1720,"v":[[0,3,["H559"]],[3,5,["H4279"]],[5,8,["H559"]],[8,14,["H1697"]],[14,15,["H4616"]],[15,18,["H3045"]],[18,19,["H3588"]],[19,22,["H369"]],[22,26,["H3068"]],[26,28,["H430"]]]},{"k":1721,"v":[[0,3,["H6854"]],[3,5,["H5493"]],[5,6,["H4480"]],[6,11,["H4480","H1004"]],[11,15,["H4480","H5650"]],[15,19,["H4480","H5971"]],[19,22,["H7604"]],[22,25,["H2975"]],[25,26,["H7535"]]]},{"k":1722,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,6,["H3318"]],[6,7,["H4480","H5973"]],[7,8,["H6547"]],[8,10,["H4872"]],[10,11,["H6817"]],[11,12,["H413"]],[12,14,["H3068"]],[14,16,["H5921","H1697"]],[16,18,["H6854"]],[18,19,["H834"]],[19,22,["H7760"]],[22,24,["H6547"]]]},{"k":1723,"v":[[0,3,["H3068"]],[3,4,["H6213"]],[4,8,["H1697"]],[8,10,["H4872"]],[10,13,["H6854"]],[13,14,["H4191"]],[14,16,["H4480"]],[16,18,["H1004"]],[18,20,["H4480"]],[20,22,["H2691"]],[22,25,["H4480"]],[25,27,["H7704"]]]},{"k":1724,"v":[[0,5,["H6651","(H853)"]],[5,7,["H2563","H2563"]],[7,10,["H776"]],[10,11,["H887"]]]},{"k":1725,"v":[[0,3,["H6547"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,7,["H1961"]],[7,8,["H7309"]],[8,10,["H3513","(H853)"]],[10,12,["H3820"]],[12,14,["H8085"]],[14,15,["H3808"]],[15,16,["H413"]],[16,18,["H834"]],[18,20,["H3068"]],[20,22,["H1696"]]]},{"k":1726,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H175"]],[9,11,["H5186","(H853)"]],[11,13,["H4294"]],[13,15,["H5221","(H853)"]],[15,17,["H6083"]],[17,20,["H776"]],[20,24,["H1961"]],[24,25,["H3654"]],[25,27,["H3605"]],[27,29,["H776"]],[29,31,["H4714"]]]},{"k":1727,"v":[[0,3,["H6213"]],[3,4,["H3651"]],[4,6,["H175"]],[6,8,["H5186","(H853)"]],[8,10,["H3027"]],[10,13,["H4294"]],[13,15,["H5221","(H853)"]],[15,17,["H6083"]],[17,20,["H776"]],[20,23,["H1961"]],[23,24,["H3654"]],[24,26,["H120"]],[26,29,["H929"]],[29,30,["H3605"]],[30,32,["H6083"]],[32,35,["H776"]],[35,36,["H1961"]],[36,37,["H3654"]],[37,39,["H3605"]],[39,41,["H776"]],[41,43,["H4714"]]]},{"k":1728,"v":[[0,3,["H2748"]],[3,4,["H6213"]],[4,5,["H3651"]],[5,8,["H3909"]],[8,11,["H3318","(H853)"]],[11,12,["H3654"]],[12,15,["H3201"]],[15,16,["H3808"]],[16,19,["H1961"]],[19,20,["H3654"]],[20,22,["H120"]],[22,25,["H929"]]]},{"k":1729,"v":[[0,3,["H2748"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H6547"]],[6,7,["H1931"]],[7,10,["H676"]],[10,12,["H430"]],[12,14,["H6547"]],[14,15,["H3820"]],[15,17,["H2388"]],[17,20,["H8085"]],[20,21,["H3808"]],[21,22,["H413"]],[22,24,["H834"]],[24,26,["H3068"]],[26,28,["H1696"]]]},{"k":1730,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H7925"]],[9,12,["H1242"]],[12,14,["H3320"]],[14,15,["H6440"]],[15,16,["H6547"]],[16,17,["H2009"]],[17,20,["H3318"]],[20,23,["H4325"]],[23,25,["H559"]],[25,26,["H413"]],[26,28,["H3541"]],[28,29,["H559"]],[29,31,["H3068"]],[31,34,["H5971"]],[34,35,["H7971"]],[35,39,["H5647"]],[39,40,[]]]},{"k":1731,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,5,["H369"]],[5,6,["(H853)"]],[6,8,["H5971"]],[8,9,["H7971"]],[9,10,["H2009"]],[10,13,["H7971","(H853)"]],[13,14,["H6157"]],[14,22,["H5650"]],[22,26,["H5971"]],[26,30,["H1004"]],[30,33,["H1004"]],[33,36,["H4714"]],[36,39,["H4390"]],[39,40,["(H853)"]],[40,41,["H6157"]],[41,45,["H1571"]],[45,47,["H127"]],[47,48,["H834","H5921"]],[48,49,["H1992"]],[49,50,[]]]},{"k":1732,"v":[[0,4,["H6395"]],[4,6,["H1931"]],[6,7,["H3117","(H853)"]],[7,9,["H776"]],[9,11,["H1657"]],[11,12,["H5921"]],[12,13,["H834"]],[13,15,["H5971"]],[15,16,["H5975"]],[16,18,["H1115"]],[18,19,["H6157"]],[19,23,["H1961"]],[23,24,["H8033"]],[24,27,["H4616"]],[27,30,["H3045"]],[30,31,["H3588"]],[31,32,["H589"]],[32,35,["H3068"]],[35,38,["H7130"]],[38,41,["H776"]]]},{"k":1733,"v":[[0,4,["H7760"]],[4,6,["H6304"]],[6,7,["H996"]],[7,9,["H5971"]],[9,12,["H5971"]],[12,14,["H4279"]],[14,16,["H2088"]],[16,17,["H226"]],[17,18,["H1961"]]]},{"k":1734,"v":[[0,3,["H3068"]],[3,4,["H6213"]],[4,5,["H3651"]],[5,8,["H935"]],[8,10,["H3515"]],[10,11,["H6157"]],[11,16,["H1004"]],[16,18,["H6547"]],[18,22,["H5650"]],[22,23,["H1004"]],[23,26,["H3605"]],[26,28,["H776"]],[28,30,["H4714"]],[30,32,["H776"]],[32,34,["H7843"]],[34,37,["H4480","H6440"]],[37,39,["H6157"]],[39,41,[]]]},{"k":1735,"v":[[0,2,["H6547"]],[2,3,["H7121"]],[3,4,["H413"]],[4,5,["H4872"]],[5,8,["H175"]],[8,10,["H559"]],[10,11,["H1980"]],[11,13,["H2076"]],[13,16,["H430"]],[16,19,["H776"]]]},{"k":1736,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,6,["H3808"]],[6,7,["H3559"]],[7,8,["H3651"]],[8,10,["H6213"]],[10,11,["H3588"]],[11,14,["H2076"]],[14,16,["H8441"]],[16,19,["H4714"]],[19,22,["H3068"]],[22,24,["H430"]],[24,25,["H2005"]],[25,28,["H2076","(H853)"]],[28,30,["H8441"]],[30,33,["H4714"]],[33,36,["H5869"]],[36,40,["H3808"]],[40,41,["H5619"]],[41,42,[]]]},{"k":1737,"v":[[0,3,["H1980"]],[3,4,["H7969"]],[4,5,["H3117"]],[5,6,["H1870"]],[6,9,["H4057"]],[9,11,["H2076"]],[11,14,["H3068"]],[14,16,["H430"]],[16,17,["H834"]],[17,20,["H559","H413"]],[20,21,[]]]},{"k":1738,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H595"]],[4,8,["H7971"]],[8,12,["H2076"]],[12,15,["H3068"]],[15,17,["H430"]],[17,20,["H4057"]],[20,21,["H7535"]],[21,24,["H3808"]],[24,25,["H1980"]],[25,28,["H7368","H7368"]],[28,29,["H6279"]],[29,30,["H1157"]],[30,31,[]]]},{"k":1739,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H2009"]],[4,5,["H595"]],[5,7,["H3318"]],[7,8,["H4480","H5973"]],[8,13,["H6279","H413"]],[13,15,["H3068"]],[15,18,["H6157"]],[18,22,["H5493"]],[22,24,["H4480","H6547"]],[24,27,["H4480","H5650"]],[27,31,["H4480","H5971"]],[31,33,["H4279"]],[33,34,["H7535"]],[34,36,["H408"]],[36,37,["H6547"]],[37,39,["H2048"]],[39,41,["H3254"]],[41,43,["H1115"]],[43,44,["(H853)"]],[44,46,["H5971"]],[46,47,["H7971"]],[47,49,["H2076"]],[49,52,["H3068"]]]},{"k":1740,"v":[[0,2,["H4872"]],[2,4,["H3318"]],[4,5,["H4480","H5973"]],[5,6,["H6547"]],[6,8,["H6279","H413"]],[8,10,["H3068"]]]},{"k":1741,"v":[[0,3,["H3068"]],[3,4,["H6213"]],[4,8,["H1697"]],[8,10,["H4872"]],[10,13,["H5493"]],[13,15,["H6157"]],[15,19,["H4480","H6547"]],[19,22,["H4480","H5650"]],[22,26,["H4480","H5971"]],[26,28,["H7604"]],[28,29,["H3808"]],[29,30,["H259"]]]},{"k":1742,"v":[[0,2,["H6547"]],[2,3,["H3513","(H853)"]],[3,5,["H3820"]],[5,7,["H2063"]],[7,8,["H6471"]],[8,9,["H1571"]],[9,10,["H3808"]],[10,13,["(H853)"]],[13,15,["H5971"]],[15,16,["H7971"]]]},{"k":1743,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H935"]],[8,9,["H413"]],[9,10,["H6547"]],[10,12,["H1696","H413"]],[12,14,["H3541"]],[14,15,["H559"]],[15,17,["H3068"]],[17,18,["H430"]],[18,21,["H5680"]],[21,22,["(H853)"]],[22,24,["H5971"]],[24,25,["H7971"]],[25,29,["H5647"]],[29,30,[]]]},{"k":1744,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,3,["H859"]],[3,4,["H3986"]],[4,8,["H7971"]],[8,11,["H2388"]],[11,13,["H5750"]]]},{"k":1745,"v":[[0,1,["H2009"]],[1,3,["H3027"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,10,["H4735"]],[10,11,["H834"]],[11,15,["H7704"]],[15,18,["H5483"]],[18,21,["H2543"]],[21,24,["H1581"]],[24,27,["H1241"]],[27,31,["H6629"]],[31,36,["H3966"]],[36,37,["H3515"]],[37,38,["H1698"]]]},{"k":1746,"v":[[0,3,["H3068"]],[3,5,["H6395"]],[5,6,["H996"]],[6,8,["H4735"]],[8,10,["H3478"]],[10,13,["H4735"]],[13,15,["H4714"]],[15,19,["H3808","H1697"]],[19,20,["H4191"]],[20,22,["H4480","H3605"]],[22,26,["H1121"]],[26,28,["H3478"]]]},{"k":1747,"v":[[0,3,["H3068"]],[3,4,["H7760"]],[4,7,["H4150"]],[7,8,["H559"]],[8,10,["H4279"]],[10,12,["H3068"]],[12,14,["H6213"]],[14,15,["H2088"]],[15,16,["H1697"]],[16,19,["H776"]]]},{"k":1748,"v":[[0,3,["H3068"]],[3,4,["H6213","(H853)"]],[4,5,["H2088"]],[5,6,["H1697"]],[6,9,["H4480","H4283"]],[9,11,["H3605"]],[11,13,["H4735"]],[13,15,["H4714"]],[15,16,["H4191"]],[16,20,["H4480","H4735"]],[20,23,["H1121"]],[23,25,["H3478"]],[25,26,["H4191"]],[26,27,["H3808"]],[27,28,["H259"]]]},{"k":1749,"v":[[0,2,["H6547"]],[2,3,["H7971"]],[3,5,["H2009"]],[5,8,["H3808"]],[8,9,["H259"]],[9,12,["H4480","H4735"]],[12,15,["H3478"]],[15,16,["H4191"]],[16,19,["H3820"]],[19,21,["H6547"]],[21,23,["H3513"]],[23,27,["H3808"]],[27,28,["(H853)"]],[28,30,["H5971"]],[30,31,["H7971"]]]},{"k":1750,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H3947"]],[10,13,["H4393","H2651"]],[13,15,["H6368"]],[15,18,["H3536"]],[18,21,["H4872"]],[21,22,["H2236"]],[22,26,["H8064"]],[26,29,["H5869"]],[29,31,["H6547"]]]},{"k":1751,"v":[[0,4,["H1961"]],[4,6,["H80"]],[6,7,["H5921"]],[7,8,["H3605"]],[8,10,["H776"]],[10,12,["H4714"]],[12,15,["H1961"]],[15,17,["H7822"]],[17,19,["H6524"]],[19,21,["H76"]],[21,22,["H5921"]],[22,23,["H120"]],[23,25,["H5921"]],[25,26,["H929"]],[26,28,["H3605"]],[28,30,["H776"]],[30,32,["H4714"]]]},{"k":1752,"v":[[0,3,["H3947","(H853)"]],[3,4,["H6368"]],[4,7,["H3536"]],[7,9,["H5975"]],[9,10,["H6440"]],[10,11,["H6547"]],[11,13,["H4872"]],[13,14,["H2236"]],[14,18,["H8064"]],[18,21,["H1961"]],[21,23,["H7822"]],[23,25,["H6524"]],[25,27,["H76"]],[27,29,["H120"]],[29,32,["H929"]]]},{"k":1753,"v":[[0,3,["H2748"]],[3,4,["H3201"]],[4,5,["H3808"]],[5,6,["H5975"]],[6,7,["H6440"]],[7,8,["H4872"]],[8,10,["H4480","H6440"]],[10,12,["H7822"]],[12,13,["H3588"]],[13,15,["H7822"]],[15,16,["H1961"]],[16,19,["H2748"]],[19,22,["H3605"]],[22,24,["H4714"]]]},{"k":1754,"v":[[0,3,["H3068"]],[3,4,["H2388","(H853)"]],[4,6,["H3820"]],[6,8,["H6547"]],[8,11,["H8085"]],[11,12,["H3808"]],[12,13,["H413"]],[13,15,["H834"]],[15,17,["H3068"]],[17,19,["H1696"]],[19,20,["H413"]],[20,21,["H4872"]]]},{"k":1755,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H7925"]],[9,12,["H1242"]],[12,14,["H3320"]],[14,15,["H6440"]],[15,16,["H6547"]],[16,18,["H559"]],[18,19,["H413"]],[19,21,["H3541"]],[21,22,["H559"]],[22,24,["H3068"]],[24,25,["H430"]],[25,28,["H5680"]],[28,29,["(H853)"]],[29,31,["H5971"]],[31,32,["H7971"]],[32,36,["H5647"]],[36,37,[]]]},{"k":1756,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,5,["H2063"]],[5,6,["H6471"]],[6,7,["H7971","(H853)"]],[7,8,["H3605"]],[8,10,["H4046"]],[10,11,["H413"]],[11,13,["H3820"]],[13,17,["H5650"]],[17,21,["H5971"]],[21,22,["H5668"]],[22,25,["H3045"]],[25,26,["H3588"]],[26,29,["H369"]],[29,31,["H3644"]],[31,33,["H3605"]],[33,35,["H776"]]]},{"k":1757,"v":[[0,1,["H3588"]],[1,2,["H6258"]],[2,6,["H7971","(H853)"]],[6,8,["H3027"]],[8,12,["H5221"]],[12,16,["H5971"]],[16,18,["H1698"]],[18,24,["H3582"]],[24,25,["H4480"]],[25,27,["H776"]]]},{"k":1758,"v":[[0,4,["H199"]],[4,5,["H5668"]],[5,6,["H2063"]],[6,12,["H5975"]],[12,13,["H5668"]],[13,15,["H7200"]],[15,17,["(H853)"]],[17,19,["H3581"]],[19,21,["H4616"]],[21,23,["H8034"]],[23,26,["H5608"]],[26,28,["H3605"]],[28,30,["H776"]]]},{"k":1759,"v":[[0,2,["H5750"]],[2,5,["H5549"]],[5,8,["H5971"]],[8,12,["H1115"]],[12,15,["H7971"]]]},{"k":1760,"v":[[0,1,["H2009"]],[1,3,["H4279"]],[3,6,["H6256"]],[6,12,["H4305"]],[12,14,["H3966"]],[14,15,["H3515"]],[15,16,["H1259"]],[16,17,["H834"]],[17,18,["H3644"]],[18,20,["H3808"]],[20,21,["H1961"]],[21,23,["H4714"]],[23,24,["H4480","H3117"]],[24,26,["H3245"]],[26,29,["H5704"]],[29,30,["H6258"]]]},{"k":1761,"v":[[0,1,["H7971"]],[1,3,["H6258"]],[3,5,["H5756","(H853)"]],[5,7,["H4735"]],[7,9,["H3605"]],[9,10,["H834"]],[10,15,["H7704"]],[15,18,["H3605"]],[18,19,["H120"]],[19,21,["H929"]],[21,22,["H834"]],[22,25,["H4672"]],[25,28,["H7704"]],[28,31,["H3808"]],[31,33,["H622"]],[33,34,["H1004"]],[34,36,["H1259"]],[36,39,["H3381"]],[39,40,["H5921"]],[40,45,["H4191"]]]},{"k":1762,"v":[[0,3,["H3372","(H853)"]],[3,5,["H1697"]],[5,8,["H3068"]],[8,11,["H4480","H5650"]],[11,13,["H6547"]],[13,14,["(H853)"]],[14,16,["H5650"]],[16,19,["H4735"]],[19,20,["H5127"]],[20,21,["H413"]],[21,23,["H1004"]]]},{"k":1763,"v":[[0,3,["H834"]],[3,4,["H7760","H3820"]],[4,5,["H3808"]],[5,7,["H1697"]],[7,10,["H3068"]],[10,11,["H5800","(H853)"]],[11,13,["H5650"]],[13,16,["H4735"]],[16,19,["H7704"]]]},{"k":1764,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H5186","(H853)"]],[8,10,["H3027"]],[10,11,["H5921"]],[11,12,["H8064"]],[12,16,["H1961"]],[16,17,["H1259"]],[17,19,["H3605"]],[19,21,["H776"]],[21,23,["H4714"]],[23,24,["H5921"]],[24,25,["H120"]],[25,27,["H5921"]],[27,28,["H929"]],[28,30,["H5921"]],[30,31,["H3605"]],[31,32,["H6212"]],[32,35,["H7704"]],[35,38,["H776"]],[38,40,["H4714"]]]},{"k":1765,"v":[[0,2,["H4872"]],[2,4,["H5186","(H853)"]],[4,6,["H4294"]],[6,7,["H5921"]],[7,8,["H8064"]],[8,11,["H3068"]],[11,12,["H5414"]],[12,13,["H6963"]],[13,15,["H1259"]],[15,18,["H784"]],[18,20,["H1980"]],[20,23,["H776"]],[23,26,["H3068"]],[26,27,["H4305"]],[27,28,["H1259"]],[28,29,["H5921"]],[29,31,["H776"]],[31,33,["H4714"]]]},{"k":1766,"v":[[0,3,["H1961"]],[3,4,["H1259"]],[4,6,["H784"]],[6,7,["H3947"]],[7,8,["H8432"]],[8,10,["H1259"]],[10,11,["H3966"]],[11,12,["H3515"]],[12,14,["H834"]],[14,16,["H1961"]],[16,17,["H3808"]],[17,19,["H3644"]],[19,21,["H3605"]],[21,23,["H776"]],[23,25,["H4714"]],[25,26,["H4480","H227"]],[26,28,["H1961"]],[28,30,["H1471"]]]},{"k":1767,"v":[[0,3,["H1259"]],[3,4,["H5221"]],[4,6,["H3605"]],[6,8,["H776"]],[8,10,["H4714","(H853)"]],[10,11,["H3605"]],[11,12,["H834"]],[12,16,["H7704"]],[16,18,["H4480","H120"]],[18,20,["H929"]],[20,23,["H1259"]],[23,24,["H5221"]],[24,25,["H3605"]],[25,26,["H6212"]],[26,29,["H7704"]],[29,31,["H7665"]],[31,32,["H3605"]],[32,33,["H6086"]],[33,36,["H7704"]]]},{"k":1768,"v":[[0,1,["H7535"]],[1,4,["H776"]],[4,6,["H1657"]],[6,7,["H834","H8033"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,13,["H1961"]],[13,15,["H3808"]],[15,16,["H1259"]]]},{"k":1769,"v":[[0,2,["H6547"]],[2,3,["H7971"]],[3,5,["H7121"]],[5,7,["H4872"]],[7,9,["H175"]],[9,11,["H559"]],[11,12,["H413"]],[12,16,["H2398"]],[16,18,["H6471"]],[18,20,["H3068"]],[20,22,["H6662"]],[22,24,["H589"]],[24,27,["H5971"]],[27,29,["H7563"]]]},{"k":1770,"v":[[0,1,["H6279","H413"]],[1,3,["H3068"]],[3,7,["H7227"]],[7,11,["H4480","H1961"]],[11,13,["H430"]],[13,14,["H6963"]],[14,16,["H1259"]],[16,22,["H7971"]],[22,26,["H5975"]],[26,27,["H3808"]],[27,28,["H3254"]]]},{"k":1771,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,12,["H3318"]],[12,13,["(H853)"]],[13,15,["H5892"]],[15,19,["H6566","(H853)"]],[19,21,["H3709"]],[21,22,["H413"]],[22,24,["H3068"]],[24,27,["H6963"]],[27,29,["H2308"]],[29,30,["H3808"]],[30,33,["H1961"]],[33,35,["H5750"]],[35,36,["H1259"]],[36,37,["H4616"]],[37,40,["H3045"]],[40,42,["H3588"]],[42,44,["H776"]],[44,47,["H3068"]]]},{"k":1772,"v":[[0,4,["H859"]],[4,7,["H5650"]],[7,9,["H3045"]],[9,10,["H3588"]],[10,14,["H2962"]],[14,15,["H3372","H4480","H6440"]],[15,17,["H3068"]],[17,18,["H430"]]]},{"k":1773,"v":[[0,3,["H6594"]],[3,6,["H8184"]],[6,8,["H5221"]],[8,9,["H3588"]],[9,11,["H8184"]],[11,15,["H24"]],[15,18,["H6594"]],[18,20,["H1392"]]]},{"k":1774,"v":[[0,3,["H2406"]],[3,6,["H3698"]],[6,8,["H3808"]],[8,9,["H5221"]],[9,10,["H3588"]],[10,11,["H2007"]],[11,15,["H648"]]]},{"k":1775,"v":[[0,2,["H4872"]],[2,4,["H3318"]],[4,5,["(H853)"]],[5,7,["H5892"]],[7,8,["H4480","H5973"]],[8,9,["H6547"]],[9,12,["H6566"]],[12,14,["H3709"]],[14,15,["H413"]],[15,17,["H3068"]],[17,20,["H6963"]],[20,22,["H1259"]],[22,23,["H2308"]],[23,26,["H4306"]],[26,28,["H3808"]],[28,29,["H5413"]],[29,32,["H776"]]]},{"k":1776,"v":[[0,3,["H6547"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,7,["H4306"]],[7,10,["H1259"]],[10,13,["H6963"]],[13,15,["H2308"]],[15,17,["H2398"]],[17,19,["H3254"]],[19,21,["H3513"]],[21,23,["H3820"]],[23,24,["H1931"]],[24,27,["H5650"]]]},{"k":1777,"v":[[0,3,["H3820"]],[3,5,["H6547"]],[5,7,["H2388"]],[7,8,["H3808"]],[8,11,["(H853)"]],[11,13,["H1121"]],[13,15,["H3478"]],[15,16,["H7971"]],[16,17,["H834"]],[17,19,["H3068"]],[19,21,["H1696"]],[21,22,["H3027"]],[22,23,["H4872"]]]},{"k":1778,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H935"]],[8,9,["H413"]],[9,10,["H6547"]],[10,11,["H3588"]],[11,12,["H589"]],[12,14,["H3513","(H853)"]],[14,16,["H3820"]],[16,19,["H3820"]],[19,22,["H5650"]],[22,23,["H4616"]],[23,26,["H7896"]],[26,27,["H428"]],[27,29,["H226"]],[29,30,["H7130"]],[30,31,[]]]},{"k":1779,"v":[[0,2,["H4616"]],[2,5,["H5608"]],[5,8,["H241"]],[8,11,["H1121"]],[11,15,["H1121"]],[15,16,["H1121","(H853)"]],[16,18,["H834"]],[18,21,["H5953"]],[21,23,["H4714"]],[23,26,["H226"]],[26,27,["H834"]],[27,30,["H7760"]],[30,36,["H3045"]],[36,38,["H3588"]],[38,39,["H589"]],[39,42,["H3068"]]]},{"k":1780,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,6,["H935"]],[6,7,["H413"]],[7,8,["H6547"]],[8,10,["H559"]],[10,11,["H413"]],[11,13,["H3541"]],[13,14,["H559"]],[14,16,["H3068"]],[16,17,["H430"]],[17,20,["H5680"]],[20,22,["H5704","H4970"]],[22,25,["H3985"]],[25,28,["H6031"]],[28,29,["H4480","H6440"]],[29,33,["H5971"]],[33,34,["H7971"]],[34,38,["H5647"]],[38,39,[]]]},{"k":1781,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,3,["H859"]],[3,4,["H3986"]],[4,6,["(H853)"]],[6,8,["H5971"]],[8,9,["H7971"]],[9,10,["H2009"]],[10,12,["H4279"]],[12,15,["H935"]],[15,17,["H697"]],[17,20,["H1366"]]]},{"k":1782,"v":[[0,4,["H3680","(H853)"]],[4,6,["H5869"]],[6,9,["H776"]],[9,12,["H3808"]],[12,14,["H3201"]],[14,16,["H7200","(H853)"]],[16,18,["H776"]],[18,22,["H398","(H853)"]],[22,24,["H3499"]],[24,29,["H6413"]],[29,31,["H7604"]],[31,34,["H4480"]],[34,36,["H1259"]],[36,39,["H398","(H853)"]],[39,40,["H3605"]],[40,41,["H6086"]],[41,43,["H6779"]],[43,47,["H4480"]],[47,49,["H7704"]]]},{"k":1783,"v":[[0,4,["H4390"]],[4,6,["H1004"]],[6,9,["H1004"]],[9,11,["H3605"]],[11,13,["H5650"]],[13,16,["H1004"]],[16,18,["H3605"]],[18,20,["H4714"]],[20,21,["H834"]],[21,22,["H3808"]],[22,24,["H1"]],[24,27,["H1"]],[27,28,["H1"]],[28,30,["H7200"]],[30,33,["H4480","H3117"]],[33,36,["H1961"]],[36,37,["H5921"]],[37,39,["H127"]],[39,40,["H5704"]],[40,41,["H2088"]],[41,42,["H3117"]],[42,45,["H6437"]],[45,49,["H3318"]],[49,50,["H4480","H5973"]],[50,51,["H6547"]]]},{"k":1784,"v":[[0,2,["H6547"]],[2,3,["H5650"]],[3,4,["H559"]],[4,5,["H413"]],[5,8,["H5704","H4970"]],[8,11,["H2088"]],[11,12,["H1961"]],[12,14,["H4170"]],[14,17,["(H853)"]],[17,19,["H376"]],[19,20,["H7971"]],[20,24,["H5647","(H853)"]],[24,26,["H3068"]],[26,28,["H430"]],[28,29,["H3045"]],[29,32,["H2962"]],[32,33,["H3588"]],[33,34,["H4714"]],[34,36,["H6"]]]},{"k":1785,"v":[[0,1,["(H853)"]],[1,2,["H4872"]],[2,4,["H175"]],[4,7,["H7725"]],[7,8,["H413"]],[8,9,["H6547"]],[9,12,["H559"]],[12,13,["H413"]],[13,15,["H1980"]],[15,16,["H5647","(H853)"]],[16,18,["H3068"]],[18,20,["H430"]],[20,22,["H4310","H4310"]],[22,27,["H1980"]]]},{"k":1786,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,6,["H1980"]],[6,9,["H5288"]],[9,13,["H2205"]],[13,16,["H1121"]],[16,20,["H1323"]],[20,23,["H6629"]],[23,27,["H1241"]],[27,30,["H1980"]],[30,31,["H3588"]],[31,36,["H2282"]],[36,39,["H3068"]]]},{"k":1787,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,8,["H3068"]],[8,9,["H1961"]],[9,10,["H3651"]],[10,11,["H5973"]],[11,13,["H834"]],[13,18,["H7971"]],[18,22,["H2945"]],[22,23,["H7200"]],[23,26,["H3588"]],[26,27,["H7451"]],[27,29,["H5048","H6440"]],[29,30,[]]]},{"k":1788,"v":[[0,1,["H3808"]],[1,2,["H3651"]],[2,3,["H1980"]],[3,4,["H4994"]],[4,8,["H1397"]],[8,10,["H5647","(H853)"]],[10,12,["H3068"]],[12,13,["H3588"]],[13,15,["H859"]],[15,17,["H1245"]],[17,22,["H1644"]],[22,23,["H4480","H854"]],[23,24,["H6547"]],[24,25,["H6440"]]]},{"k":1789,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H5186"]],[8,10,["H3027"]],[10,11,["H5921"]],[11,13,["H776"]],[13,15,["H4714"]],[15,18,["H697"]],[18,23,["H5927"]],[23,24,["H5921"]],[24,26,["H776"]],[26,28,["H4714"]],[28,30,["H398","(H853)"]],[30,31,["H3605"]],[31,32,["H6212"]],[32,35,["H776"]],[35,36,["(H853)"]],[36,37,["H3605"]],[37,38,["H834"]],[38,40,["H1259"]],[40,42,["H7604"]]]},{"k":1790,"v":[[0,2,["H4872"]],[2,4,["H5186","(H853)"]],[4,6,["H4294"]],[6,7,["H5921"]],[7,9,["H776"]],[9,11,["H4714"]],[11,14,["H3068"]],[14,15,["H5090"]],[15,17,["H6921"]],[17,18,["H7307"]],[18,21,["H776"]],[21,22,["H3605"]],[22,23,["H1931"]],[23,24,["H3117"]],[24,26,["H3605"]],[26,28,["H3915"]],[28,32,["H1961"]],[32,33,["H1242"]],[33,35,["H6921"]],[35,36,["H7307"]],[36,37,["H5375","(H853)"]],[37,39,["H697"]]]},{"k":1791,"v":[[0,3,["H697"]],[3,5,["H5927"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,9,["H776"]],[9,11,["H4714"]],[11,13,["H5117"]],[13,15,["H3605"]],[15,17,["H1366"]],[17,19,["H4714"]],[19,20,["H3966"]],[20,21,["H3515"]],[21,24,["H6440"]],[24,27,["H1961"]],[27,28,["H3808"]],[28,29,["H3651"]],[29,30,["H697"]],[30,33,["H3808"]],[33,34,["H310"]],[34,37,["H1961"]],[37,38,["H3651"]]]},{"k":1792,"v":[[0,3,["H3680","(H853)"]],[3,5,["H5869"]],[5,8,["H3605"]],[8,9,["H776"]],[9,13,["H776"]],[13,15,["H2821"]],[15,19,["H398","(H853)"]],[19,20,["H3605"]],[20,21,["H6212"]],[21,24,["H776"]],[24,26,["H3605"]],[26,28,["H6529"]],[28,31,["H6086"]],[31,32,["H834"]],[32,34,["H1259"]],[34,36,["H3498"]],[36,39,["H3498"]],[39,40,["H3808"]],[40,41,["H3605"]],[41,43,["H3418"]],[43,46,["H6086"]],[46,50,["H6212"]],[50,53,["H7704"]],[53,55,["H3605"]],[55,57,["H776"]],[57,59,["H4714"]]]},{"k":1793,"v":[[0,2,["H6547"]],[2,3,["H7121"]],[3,5,["H4872"]],[5,7,["H175"]],[7,9,["H4116"]],[9,12,["H559"]],[12,15,["H2398"]],[15,18,["H3068"]],[18,20,["H430"]],[20,23,[]]]},{"k":1794,"v":[[0,1,["H6258"]],[1,3,["H5375"]],[3,6,["H4994"]],[6,8,["H2403"]],[8,9,["H389"]],[9,11,["H6471"]],[11,13,["H6279"]],[13,15,["H3068"]],[15,17,["H430"]],[17,22,["H5493"]],[22,23,["H4480","H5921"]],[23,25,["H2088","(H853)"]],[25,26,["H4194"]],[26,27,["H7535"]]]},{"k":1795,"v":[[0,4,["H3318"]],[4,5,["H4480","H5973"]],[5,6,["H6547"]],[6,8,["H6279","H413"]],[8,10,["H3068"]]]},{"k":1796,"v":[[0,3,["H3068"]],[3,4,["H2015"]],[4,6,["H3966"]],[6,7,["H2389"]],[7,8,["H3220"]],[8,9,["H7307"]],[9,12,["H5375","(H853)"]],[12,14,["H697"]],[14,16,["H8628"]],[16,20,["H5488"]],[20,21,["H3220"]],[21,23,["H7604"]],[23,24,["H3808"]],[24,25,["H259"]],[25,26,["H697"]],[26,28,["H3605"]],[28,30,["H1366"]],[30,32,["H4714"]]]},{"k":1797,"v":[[0,3,["H3068"]],[3,4,["H2388","(H853)"]],[4,5,["H6547"]],[5,6,["H3820"]],[6,11,["H3808"]],[11,12,["(H853)"]],[12,14,["H1121"]],[14,16,["H3478"]],[16,17,["H7971"]]]},{"k":1798,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H5186"]],[8,10,["H3027"]],[10,11,["H5921"]],[11,12,["H8064"]],[12,16,["H1961"]],[16,17,["H2822"]],[17,18,["H5921"]],[18,20,["H776"]],[20,22,["H4714"]],[22,24,["H2822"]],[24,28,["H4959"]]]},{"k":1799,"v":[[0,2,["H4872"]],[2,4,["H5186","(H853)"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,8,["H8064"]],[8,11,["H1961"]],[11,13,["H653"]],[13,14,["H2822"]],[14,16,["H3605"]],[16,18,["H776"]],[18,20,["H4714"]],[20,21,["H7969"]],[21,22,["H3117"]]]},{"k":1800,"v":[[0,2,["H7200"]],[2,3,["H3808"]],[3,4,["H376","(H853)"]],[4,5,["H251"]],[5,6,["H3808"]],[6,7,["H6965"]],[7,8,["H376"]],[8,11,["H4480","H8478"]],[11,13,["H7969"]],[13,14,["H3117"]],[14,16,["H3605"]],[16,18,["H1121"]],[18,20,["H3478"]],[20,21,["H1961"]],[21,22,["H216"]],[22,25,["H4186"]]]},{"k":1801,"v":[[0,2,["H6547"]],[2,3,["H7121"]],[3,4,["H413"]],[4,5,["H4872"]],[5,7,["H559"]],[7,8,["H1980"]],[8,10,["H5647","(H853)"]],[10,12,["H3068"]],[12,13,["H7535"]],[13,16,["H6629"]],[16,19,["H1241"]],[19,21,["H3322"]],[21,25,["H2945"]],[25,26,["H1571"]],[26,27,["H1980"]],[27,28,["H5973"]],[28,29,[]]]},{"k":1802,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H859"]],[4,6,["H5414"]],[6,7,["H3027"]],[7,8,["H1571"]],[8,9,["H2077"]],[9,12,["H5930"]],[12,16,["H6213"]],[16,19,["H3068"]],[19,21,["H430"]]]},{"k":1803,"v":[[0,2,["H4735"]],[2,3,["H1571"]],[3,5,["H1980"]],[5,6,["H5973"]],[6,10,["H3808"]],[10,12,["H6541"]],[12,15,["H7604"]],[15,16,["H3588"]],[16,17,["H4480"]],[17,20,["H3947"]],[20,22,["H5647","(H853)"]],[22,24,["H3068"]],[24,26,["H430"]],[26,28,["H587"]],[28,29,["H3045"]],[29,30,["H3808"]],[30,32,["H4100"]],[32,35,["H5647","(H853)"]],[35,37,["H3068"]],[37,38,["H5704"]],[38,40,["H935"]],[40,41,["H8033"]]]},{"k":1804,"v":[[0,3,["H3068"]],[3,4,["H2388","(H853)"]],[4,5,["H6547"]],[5,6,["H3820"]],[6,9,["H14"]],[9,10,["H3808"]],[10,13,["H7971"]]]},{"k":1805,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,6,["H1980"]],[6,8,["H4480","H5921"]],[8,11,["H8104"]],[11,14,["H7200"]],[14,16,["H6440"]],[16,17,["H408"]],[17,18,["H3254"]],[18,19,["H3588"]],[19,22,["H3117"]],[22,24,["H7200"]],[24,26,["H6440"]],[26,29,["H4191"]]]},{"k":1806,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,6,["H1696"]],[6,7,["H3651"]],[7,10,["H7200"]],[10,12,["H6440"]],[12,13,["H3254"]],[13,14,["H3808"]],[14,15,["H5750"]]]},{"k":1807,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H5750"]],[7,10,["H935"]],[10,11,["H259"]],[11,12,["H5061"]],[12,14,["H5921"]],[14,15,["H6547"]],[15,17,["H5921"]],[17,18,["H4714"]],[18,19,["H310","H3651"]],[19,24,["H7971"]],[24,25,["H4480","H2088"]],[25,31,["H7971"]],[31,37,["H1644","H1644","(H853)"]],[37,38,["H4480","H2088"]],[38,39,["H3617"]]]},{"k":1808,"v":[[0,1,["H1696"]],[1,2,["H4994"]],[2,5,["H241"]],[5,8,["H5971"]],[8,12,["H376"]],[12,13,["H7592"]],[13,14,["H4480","H854"]],[14,16,["H7453"]],[16,19,["H802"]],[19,20,["H4480","H854"]],[20,22,["H7468"]],[22,23,["H3627"]],[23,25,["H3701"]],[25,27,["H3627"]],[27,29,["H2091"]]]},{"k":1809,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,6,["H5971","(H853)"]],[6,7,["H2580"]],[7,10,["H5869"]],[10,13,["H4714"]],[13,14,["H1571"]],[14,16,["H376"]],[16,17,["H4872"]],[17,19,["H3966"]],[19,20,["H1419"]],[20,23,["H776"]],[23,25,["H4714"]],[25,28,["H5869"]],[28,30,["H6547"]],[30,31,["H5650"]],[31,35,["H5869"]],[35,38,["H5971"]]]},{"k":1810,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H3541"]],[4,5,["H559"]],[5,7,["H3068"]],[7,9,["H2676","H3915"]],[9,11,["H589"]],[11,13,["H3318"]],[13,16,["H8432"]],[16,18,["H4714"]]]},{"k":1811,"v":[[0,2,["H3605"]],[2,4,["H1060"]],[4,7,["H776"]],[7,9,["H4714"]],[9,11,["H4191"]],[11,14,["H4480","H1060"]],[14,16,["H6547"]],[16,18,["H3427"]],[18,19,["H5921"]],[19,21,["H3678"]],[21,23,["H5704"]],[23,25,["H1060"]],[25,28,["H8198"]],[28,29,["H834"]],[29,31,["H310"]],[31,33,["H7347"]],[33,35,["H3605"]],[35,37,["H1060"]],[37,39,["H929"]]]},{"k":1812,"v":[[0,4,["H1961"]],[4,6,["H1419"]],[6,7,["H6818"]],[7,9,["H3605"]],[9,11,["H776"]],[11,13,["H4714"]],[13,15,["H834"]],[15,17,["H1961"]],[17,18,["H3808"]],[18,20,["H3644"]],[20,21,["H3808"]],[21,25,["H3644"]],[25,27,["H3254"]]]},{"k":1813,"v":[[0,3,["H3605"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,10,["H3808"]],[10,12,["H3611"]],[12,13,["H2782"]],[13,15,["H3956"]],[15,17,["H4480","H376"]],[17,18,["H5704"]],[18,19,["H929"]],[19,20,["H4616"]],[20,23,["H3045"]],[23,25,["H834"]],[25,27,["H3068"]],[27,31,["H6395"]],[31,32,["H996"]],[32,34,["H4714"]],[34,36,["H3478"]]]},{"k":1814,"v":[[0,2,["H3605"]],[2,3,["H428"]],[3,5,["H5650"]],[5,8,["H3381"]],[8,9,["H413"]],[9,14,["H7812"]],[14,17,["H559"]],[17,20,["H3318","H859"]],[20,22,["H3605"]],[22,24,["H5971"]],[24,25,["H834"]],[25,26,["H7272"]],[26,29,["H310"]],[29,30,["H3651"]],[30,34,["H3318"]],[34,38,["H3318"]],[38,39,["H4480","H5973"]],[39,40,["H6547"]],[40,43,["H2750"]],[43,44,["H639"]]]},{"k":1815,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H6547"]],[7,9,["H3808"]],[9,10,["H8085"]],[10,11,["H413"]],[11,13,["H4616"]],[13,15,["H4159"]],[15,18,["H7235"]],[18,21,["H776"]],[21,23,["H4714"]]]},{"k":1816,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,5,["H6213","(H853)"]],[5,6,["H3605"]],[6,7,["H428"]],[7,8,["H4159"]],[8,9,["H6440"]],[9,10,["H6547"]],[10,13,["H3068"]],[13,14,["H2388","(H853)"]],[14,15,["H6547"]],[15,16,["H3820"]],[16,21,["H3808"]],[21,22,["(H853)"]],[22,24,["H1121"]],[24,26,["H3478"]],[26,27,["H7971"]],[27,31,["H4480","H776"]]]},{"k":1817,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H175"]],[8,11,["H776"]],[11,13,["H4714"]],[13,14,["H559"]]]},{"k":1818,"v":[[0,1,["H2088"]],[1,2,["H2320"]],[2,8,["H7218"]],[8,10,["H2320"]],[10,11,["H1931"]],[11,15,["H7223"]],[15,16,["H2320"]],[16,19,["H8141"]],[19,21,[]]]},{"k":1819,"v":[[0,1,["H1696"]],[1,3,["H413"]],[3,4,["H3605"]],[4,6,["H5712"]],[6,8,["H3478"]],[8,9,["H559"]],[9,12,["H6218"]],[12,15,["H2088"]],[15,16,["H2320"]],[16,19,["H3947"]],[19,23,["H376"]],[23,25,["H7716"]],[25,29,["H1004"]],[29,32,["H1"]],[32,34,["H7716"]],[34,37,["H1004"]]]},{"k":1820,"v":[[0,2,["H518"]],[2,4,["H1004"]],[4,7,["H4591"]],[7,10,["H4480","H1961","H4480","H7716"]],[10,12,["H1931"]],[12,15,["H7934"]],[15,16,["H7138"]],[16,17,["H413"]],[17,19,["H1004"]],[19,20,["H3947"]],[20,25,["H4373"]],[25,28,["H5315"]],[28,30,["H376"]],[30,32,["H6310"]],[32,34,["H400"]],[34,38,["H3699"]],[38,39,["H5921"]],[39,41,["H7716"]]]},{"k":1821,"v":[[0,2,["H7716"]],[2,4,["H1961"]],[4,6,["H8549"]],[6,8,["H2145"]],[8,11,["H1121"]],[11,12,["H8141"]],[12,17,["H3947"]],[17,18,["H4480"]],[18,20,["H3532"]],[20,22,["H4480"]],[22,24,["H5795"]]]},{"k":1822,"v":[[0,4,["H1961","H4931"]],[4,7,["H5704"]],[7,9,["H702","H6240"]],[9,10,["H3117"]],[10,13,["H2088"]],[13,14,["H2320"]],[14,17,["H3605"]],[17,18,["H6951"]],[18,21,["H5712"]],[21,23,["H3478"]],[23,25,["H7819"]],[25,27,["H996"]],[27,29,["H6153"]]]},{"k":1823,"v":[[0,4,["H3947"]],[4,5,["H4480"]],[5,7,["H1818"]],[7,9,["H5414"]],[9,11,["H5921"]],[11,13,["H8147"]],[13,15,["H4201"]],[15,17,["H5921"]],[17,21,["H4947"]],[21,22,["H5921"]],[22,24,["H1004"]],[24,25,["H834"]],[25,28,["H398"]],[28,29,[]]]},{"k":1824,"v":[[0,4,["H398","(H853)"]],[4,6,["H1320"]],[6,8,["H2088"]],[8,9,["H3915"]],[9,10,["H6748"]],[10,12,["H784"]],[12,15,["H4682"]],[15,17,["H5921"]],[17,18,["H4844"]],[18,22,["H398"]],[22,23,[]]]},{"k":1825,"v":[[0,1,["H398"]],[1,2,["H408"]],[2,3,["H4480"]],[3,5,["H4995"]],[5,9,["H1311","H1310"]],[9,11,["H4325"]],[11,12,["H3588","H518"]],[12,13,["H6748"]],[13,15,["H784"]],[15,17,["H7218"]],[17,18,["H5921"]],[18,20,["H3767"]],[20,22,["H5921"]],[22,24,["H7130"]],[24,25,[]]]},{"k":1826,"v":[[0,5,["H3808"]],[5,6,["H4480"]],[6,8,["H3498"]],[8,9,["H5704"]],[9,11,["H1242"]],[11,15,["H3498"]],[15,16,["H4480"]],[16,18,["H5704"]],[18,20,["H1242"]],[20,23,["H8313"]],[23,25,["H784"]]]},{"k":1827,"v":[[0,2,["H3602"]],[2,5,["H398"]],[5,9,["H4975"]],[9,10,["H2296"]],[10,12,["H5275"]],[12,15,["H7272"]],[15,18,["H4731"]],[18,21,["H3027"]],[21,25,["H398"]],[25,28,["H2649"]],[28,29,["H1931"]],[29,32,["H3068"]],[32,33,["H6453"]]]},{"k":1828,"v":[[0,5,["H5674"]],[5,7,["H776"]],[7,9,["H4714"]],[9,10,["H2088"]],[10,11,["H3915"]],[11,14,["H5221"]],[14,15,["H3605"]],[15,17,["H1060"]],[17,20,["H776"]],[20,22,["H4714"]],[22,24,["H4480","H120"]],[24,26,["H929"]],[26,29,["H3605"]],[29,31,["H430"]],[31,33,["H4714"]],[33,36,["H6213"]],[36,37,["H8201"]],[37,38,["H589"]],[38,41,["H3068"]]]},{"k":1829,"v":[[0,3,["H1818"]],[3,5,["H1961"]],[5,10,["H226"]],[10,11,["H5921"]],[11,13,["H1004"]],[13,14,["H834"]],[14,15,["H859"]],[15,20,["H7200","(H853)"]],[20,22,["H1818"]],[22,25,["H6452"]],[25,26,["H5921"]],[26,30,["H5063"]],[30,32,["H3808"]],[32,33,["H1961"]],[33,37,["H4889"]],[37,41,["H5221"]],[41,43,["H776"]],[43,45,["H4714"]]]},{"k":1830,"v":[[0,2,["H2088"]],[2,3,["H3117"]],[3,5,["H1961"]],[5,10,["H2146"]],[10,14,["H2287"]],[14,17,["H2282"]],[17,20,["H3068"]],[20,23,["H1755"]],[23,29,["H2287"]],[29,32,["H2708"]],[32,34,["H5769"]]]},{"k":1831,"v":[[0,1,["H7651"]],[1,2,["H3117"]],[2,5,["H398"]],[5,7,["H4682"]],[7,8,["H389"]],[8,10,["H7223"]],[10,11,["H3117"]],[11,15,["H7673"]],[15,16,["H7603"]],[16,20,["H4480","H1004"]],[20,21,["H3588"]],[21,22,["H3605"]],[22,23,["H398"]],[23,25,["H2557"]],[25,29,["H4480","H7223","H3117"]],[29,30,["H5704"]],[30,32,["H7637"]],[32,33,["H3117"]],[33,34,["H1931"]],[34,35,["H5315"]],[35,39,["H3772"]],[39,41,["H4480","H3478"]]]},{"k":1832,"v":[[0,4,["H7223"]],[4,5,["H3117"]],[5,10,["H6944"]],[10,11,["H4744"]],[11,15,["H7637"]],[15,16,["H3117"]],[16,19,["H1961"]],[19,21,["H6944"]],[21,22,["H4744"]],[22,25,["H3808"]],[25,26,["H3605"]],[26,28,["H4399"]],[28,31,["H6213"]],[31,34,["H389"]],[34,36,["H834"]],[36,37,["H3605"]],[37,38,["H5315"]],[38,40,["H398"]],[40,41,["H1931"]],[41,42,["H905"]],[42,45,["H6213"]],[45,47,[]]]},{"k":1833,"v":[[0,4,["H8104","(H853)"]],[4,9,["H4682"]],[9,10,["H3588"]],[10,12,["H2088"]],[12,13,["H6106"]],[13,14,["H3117"]],[14,20,["H3318","(H853)","H6635"]],[20,23,["H4480","H776"]],[23,25,["H4714"]],[25,29,["H8104","(H853)"]],[29,30,["H2088"]],[30,31,["H3117"]],[31,34,["H1755"]],[34,37,["H2708"]],[37,39,["H5769"]]]},{"k":1834,"v":[[0,3,["H7223"]],[3,7,["H702","H6240"]],[7,8,["H3117"]],[8,11,["H2320"]],[11,13,["H6153"]],[13,16,["H398"]],[16,18,["H4682"]],[18,19,["H5704"]],[19,21,["H259"]],[21,23,["H6242"]],[23,24,["H3117"]],[24,27,["H2320"]],[27,29,["H6153"]]]},{"k":1835,"v":[[0,1,["H7651"]],[1,2,["H3117"]],[2,6,["H3808"]],[6,7,["H7603"]],[7,8,["H4672"]],[8,11,["H1004"]],[11,12,["H3588"]],[12,13,["H3605"]],[13,14,["H398"]],[14,18,["H2557"]],[18,20,["H1931"]],[20,21,["H5315"]],[21,25,["H3772"]],[25,28,["H4480","H5712"]],[28,30,["H3478"]],[30,35,["H1616"]],[35,37,["H249"]],[37,40,["H776"]]]},{"k":1836,"v":[[0,3,["H398"]],[3,4,["H3605","H3808"]],[4,5,["H2557"]],[5,7,["H3605"]],[7,9,["H4186"]],[9,12,["H398"]],[12,14,["H4682"]]]},{"k":1837,"v":[[0,2,["H4872"]],[2,3,["H7121"]],[3,5,["H3605"]],[5,7,["H2205"]],[7,9,["H3478"]],[9,11,["H559"]],[11,12,["H413"]],[12,15,["H4900"]],[15,17,["H3947"]],[17,20,["H6629"]],[20,24,["H4940"]],[24,26,["H7819"]],[26,28,["H6453"]]]},{"k":1838,"v":[[0,4,["H3947"]],[4,6,["H92"]],[6,8,["H231"]],[8,10,["H2881"]],[10,14,["H1818"]],[14,15,["H834"]],[15,19,["H5592"]],[19,21,["H5060","H413"]],[21,23,["H4947"]],[23,26,["H8147"]],[26,28,["H4201"]],[28,29,["H4480"]],[29,31,["H1818"]],[31,32,["H834"]],[32,36,["H5592"]],[36,38,["H3808","H376"]],[38,40,["H859"]],[40,43,["H3318"]],[43,46,["H4480","H6607"]],[46,49,["H1004"]],[49,50,["H5704"]],[50,52,["H1242"]]]},{"k":1839,"v":[[0,3,["H3068"]],[3,6,["H5674"]],[6,8,["H5062","(H853)"]],[8,10,["H4714"]],[10,14,["H7200","(H853)"]],[14,16,["H1818"]],[16,17,["H5921"]],[17,19,["H4947"]],[19,21,["H5921"]],[21,23,["H8147"]],[23,25,["H4201"]],[25,27,["H3068"]],[27,29,["H6452"]],[29,30,["H5921"]],[30,32,["H6607"]],[32,35,["H3808"]],[35,36,["H5414"]],[36,38,["H7843"]],[38,41,["H935"]],[41,42,["H413"]],[42,44,["H1004"]],[44,46,["H5062"]],[46,47,[]]]},{"k":1840,"v":[[0,4,["H8104","(H853)"]],[4,5,["H2088"]],[5,6,["H1697"]],[6,9,["H2706"]],[9,15,["H1121"]],[15,17,["H5704","H5769"]]]},{"k":1841,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,10,["H935"]],[10,11,["H413"]],[11,13,["H776"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H5414"]],[18,21,["H834"]],[21,24,["H1696"]],[24,28,["H8104","(H853)"]],[28,29,["H2063"]],[29,30,["H5656"]]]},{"k":1842,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,9,["H1121"]],[9,11,["H559"]],[11,12,["H413"]],[12,14,["H4100"]],[14,18,["H2063"]],[18,19,["H5656"]]]},{"k":1843,"v":[[0,4,["H559"]],[4,5,["H1931"]],[5,8,["H2077"]],[8,11,["H3068"]],[11,12,["H6453"]],[12,13,["H834"]],[13,14,["H6452"]],[14,15,["H5921"]],[15,17,["H1004"]],[17,20,["H1121"]],[20,22,["H3478"]],[22,24,["H4714"]],[24,27,["H5062","(H853)"]],[27,29,["H4714"]],[29,31,["H5337"]],[31,33,["H1004"]],[33,36,["H5971"]],[36,39,["H6915"]],[39,41,["H7812"]]]},{"k":1844,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H1980"]],[7,9,["H6213"]],[9,10,["H834"]],[10,12,["H3068"]],[12,14,["H6680","(H853)"]],[14,15,["H4872"]],[15,17,["H175"]],[17,18,["H3651"]],[18,19,["H6213"]],[19,20,[]]]},{"k":1845,"v":[[0,5,["H1961"]],[5,8,["H2677","H3915"]],[8,10,["H3068"]],[10,11,["H5221"]],[11,12,["H3605"]],[12,14,["H1060"]],[14,17,["H776"]],[17,19,["H4714"]],[19,22,["H4480","H1060"]],[22,24,["H6547"]],[24,26,["H3427"]],[26,27,["H5921"]],[27,29,["H3678"]],[29,30,["H5704"]],[30,32,["H1060"]],[32,35,["H7628"]],[35,36,["H834"]],[36,40,["H1004","H953"]],[40,42,["H3605"]],[42,44,["H1060"]],[44,46,["H929"]]]},{"k":1846,"v":[[0,2,["H6547"]],[2,4,["H6965"]],[4,7,["H3915"]],[7,8,["H1931"]],[8,10,["H3605"]],[10,12,["H5650"]],[12,14,["H3605"]],[14,16,["H4714"]],[16,19,["H1961"]],[19,21,["H1419"]],[21,22,["H6818"]],[22,24,["H4714"]],[24,25,["H3588"]],[25,28,["H369"]],[28,30,["H1004"]],[30,31,["H834","H8033"]],[31,34,["H369"]],[34,36,["H4191"]]]},{"k":1847,"v":[[0,3,["H7121"]],[3,5,["H4872"]],[5,7,["H175"]],[7,9,["H3915"]],[9,11,["H559"]],[11,13,["H6965"]],[13,17,["H3318"]],[17,19,["H4480","H8432"]],[19,21,["H5971"]],[21,22,["H1571"]],[22,23,["H859"]],[23,24,["H1571"]],[24,26,["H1121"]],[26,28,["H3478"]],[28,30,["H1980"]],[30,31,["H5647","(H853)"]],[31,33,["H3068"]],[33,37,["H1696"]]]},{"k":1848,"v":[[0,1,["H1571"]],[1,2,["H3947"]],[2,4,["H6629"]],[4,5,["H1571"]],[5,7,["H1241"]],[7,8,["H834"]],[8,11,["H1696"]],[11,14,["H1980"]],[14,16,["H1288"]],[16,18,["H1571"]]]},{"k":1849,"v":[[0,3,["H4714"]],[3,5,["H2388"]],[5,6,["H5921"]],[6,8,["H5971"]],[8,14,["H7971"]],[14,15,["H4480"]],[15,17,["H776"]],[17,19,["H4116"]],[19,20,["H3588"]],[20,22,["H559"]],[22,25,["H3605"]],[25,26,["H4191"]],[26,27,[]]]},{"k":1850,"v":[[0,3,["H5971"]],[3,4,["H5375","(H853)"]],[4,6,["H1217"]],[6,7,["H2962"]],[7,10,["H2556"]],[10,12,["H4863"]],[12,15,["H6887"]],[15,18,["H8071"]],[18,19,["H5921"]],[19,21,["H7926"]]]},{"k":1851,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,10,["H1697"]],[10,12,["H4872"]],[12,15,["H7592"]],[15,18,["H4480","H4714"]],[18,19,["H3627"]],[19,21,["H3701"]],[21,23,["H3627"]],[23,25,["H2091"]],[25,27,["H8071"]]]},{"k":1852,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,6,["H5971","(H853)"]],[6,7,["H2580"]],[7,10,["H5869"]],[10,13,["H4714"]],[13,17,["H7592"]],[17,27,["H5337","(H853)"]],[27,29,["H4714"]]]},{"k":1853,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5265"]],[6,8,["H4480","H7486"]],[8,10,["H5523"]],[10,12,["H8337"]],[12,13,["H3967"]],[13,14,["H505"]],[14,16,["H7273"]],[16,19,["H1397"]],[19,20,["H905"]],[20,21,["H4480","H2945"]]]},{"k":1854,"v":[[0,3,["H6154"]],[3,4,["H7227"]],[4,6,["H5927"]],[6,7,["H1571"]],[7,8,["H854"]],[8,11,["H6629"]],[11,13,["H1241"]],[13,15,["H3966"]],[15,16,["H3515"]],[16,17,["H4735"]]]},{"k":1855,"v":[[0,3,["H644"]],[3,4,["H4682"]],[4,5,["H5692"]],[5,6,["(H853)"]],[6,8,["H1217"]],[8,9,["H834"]],[9,12,["H3318"]],[12,15,["H4480","H4714"]],[15,16,["H3588"]],[16,20,["H3808","H2556"]],[20,21,["H3588"]],[21,25,["H1644"]],[25,27,["H4480","H4714"]],[27,29,["H3201"]],[29,30,["H3808"]],[30,31,["H4102"]],[31,32,["H1571","H3808"]],[32,35,["H6213"]],[35,39,["H6720"]]]},{"k":1856,"v":[[0,3,["H4186"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,9,["H834"]],[9,10,["H3427"]],[10,12,["H4714"]],[12,14,["H702"]],[14,15,["H3967"]],[15,17,["H7970"]],[17,18,["H8141"]]]},{"k":1857,"v":[[0,5,["H1961"]],[5,8,["H4480","H7093"]],[8,11,["H702"]],[11,12,["H3967"]],[12,14,["H7970"]],[14,15,["H8141"]],[15,18,["H2088","H6106"]],[18,19,["H3117"]],[19,23,["H1961"]],[23,25,["H3605"]],[25,27,["H6635"]],[27,30,["H3068"]],[30,32,["H3318"]],[32,35,["H4480","H776"]],[35,37,["H4714"]]]},{"k":1858,"v":[[0,1,["H1931"]],[1,4,["H3915"]],[4,8,["H8107"]],[8,11,["H3068"]],[11,15,["H3318"]],[15,18,["H4480","H776"]],[18,20,["H4714"]],[20,21,["H2088"]],[21,23,["H1931"]],[23,24,["H3915"]],[24,27,["H3068"]],[27,30,["H8107"]],[30,32,["H3605"]],[32,34,["H1121"]],[34,36,["H3478"]],[36,39,["H1755"]]]},{"k":1859,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H175"]],[8,9,["H2063"]],[9,12,["H2708"]],[12,15,["H6453"]],[15,18,["H3808","H3605"]],[18,19,["H1121","H5236"]],[19,20,["H398"]],[20,21,[]]]},{"k":1860,"v":[[0,2,["H3605"]],[2,3,["H376"]],[3,4,["H5650"]],[4,7,["H4736"]],[7,9,["H3701"]],[9,13,["H4135"]],[13,15,["H227"]],[15,18,["H398"]],[18,19,[]]]},{"k":1861,"v":[[0,2,["H8453"]],[2,6,["H7916"]],[6,8,["H3808"]],[8,9,["H398"]],[9,10,[]]]},{"k":1862,"v":[[0,2,["H259"]],[2,3,["H1004"]],[3,7,["H398"]],[7,10,["H3808"]],[10,12,["H3318"]],[12,14,["H4480"]],[14,16,["H1320"]],[16,17,["H2351"]],[17,19,["H4480"]],[19,21,["H1004"]],[21,22,["H3808"]],[22,25,["H7665"]],[25,27,["H6106"]],[27,28,[]]]},{"k":1863,"v":[[0,1,["H3605"]],[1,3,["H5712"]],[3,5,["H3478"]],[5,7,["H6213"]],[7,8,[]]]},{"k":1864,"v":[[0,2,["H3588"]],[2,4,["H1616"]],[4,6,["H1481"]],[6,7,["H854"]],[7,11,["H6213"]],[11,13,["H6453"]],[13,16,["H3068"]],[16,18,["H3605"]],[18,20,["H2145"]],[20,22,["H4135"]],[22,24,["H227"]],[24,28,["H7126"]],[28,30,["H6213"]],[30,35,["H1961"]],[35,41,["H249"]],[41,43,["H776"]],[43,47,["H3808","H3605","H6189"]],[47,49,["H398"]],[49,50,[]]]},{"k":1865,"v":[[0,1,["H259"]],[1,2,["H8451"]],[2,4,["H1961"]],[4,9,["H249"]],[9,13,["H1616"]],[13,15,["H1481"]],[15,16,["H8432"]],[16,17,[]]]},{"k":1866,"v":[[0,2,["H6213"]],[2,3,["H3605"]],[3,5,["H1121"]],[5,7,["H3478"]],[7,8,["H834"]],[8,10,["H3068"]],[10,11,["H6680","(H853)"]],[11,12,["H4872"]],[12,14,["H175"]],[14,15,["H3651"]],[15,16,["H6213"]],[16,17,[]]]},{"k":1867,"v":[[0,5,["H1961"]],[5,7,["H2088","H6106"]],[7,8,["H3117"]],[8,11,["H3068"]],[11,13,["H3318","(H853)"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,21,["H4480","H776"]],[21,23,["H4714"]],[23,24,["H5921"]],[24,26,["H6635"]]]},{"k":1868,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":1869,"v":[[0,1,["H6942"]],[1,4,["H3605"]],[4,6,["H1060"]],[6,7,["H3605"]],[7,8,["H6363"]],[8,10,["H7358"]],[10,13,["H1121"]],[13,15,["H3478"]],[15,18,["H120"]],[18,21,["H929"]],[21,22,["H1931"]],[22,24,[]]]},{"k":1870,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H2142","(H853)"]],[7,8,["H2088"]],[8,9,["H3117"]],[9,11,["H834"]],[11,14,["H3318"]],[14,16,["H4480","H4714"]],[16,20,["H4480","H1004"]],[20,22,["H5650"]],[22,23,["H3588"]],[23,25,["H2392"]],[25,27,["H3027"]],[27,29,["H3068"]],[29,32,["H3318","(H853)"]],[32,34,["H4480","H2088"]],[34,38,["H3808"]],[38,40,["H2557"]],[40,42,["H398"]]]},{"k":1871,"v":[[0,2,["H3117"]],[2,5,["H3318","H859"]],[5,8,["H2320"]],[8,9,["H24"]]]},{"k":1872,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,7,["H3068"]],[7,9,["H935"]],[9,11,["H413"]],[11,13,["H776"]],[13,16,["H3669"]],[16,19,["H2850"]],[19,22,["H567"]],[22,25,["H2340"]],[25,28,["H2983"]],[28,29,["H834"]],[29,31,["H7650"]],[31,34,["H1"]],[34,36,["H5414"]],[36,39,["H776"]],[39,40,["H2100"]],[40,42,["H2461"]],[42,44,["H1706"]],[44,48,["H5647","(H853)"]],[48,49,["H2063"]],[49,50,["H5656"]],[50,52,["H2088"]],[52,53,["H2320"]]]},{"k":1873,"v":[[0,1,["H7651"]],[1,2,["H3117"]],[2,5,["H398"]],[5,7,["H4682"]],[7,11,["H7637"]],[11,12,["H3117"]],[12,16,["H2282"]],[16,19,["H3068"]]]},{"k":1874,"v":[[0,2,["H4682"]],[2,5,["H398","(H853)"]],[5,6,["H7651"]],[6,7,["H3117"]],[7,11,["H3808"]],[11,13,["H2557"]],[13,15,["H7200"]],[15,18,["H3808"]],[18,22,["H7603"]],[22,23,["H7200"]],[23,27,["H3605"]],[27,29,["H1366"]]]},{"k":1875,"v":[[0,4,["H5046"]],[4,6,["H1121"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,10,["H559"]],[10,14,["H5668"]],[14,16,["H2088"]],[16,19,["H3068"]],[19,20,["H6213"]],[20,26,["H3318"]],[26,29,["H4480","H4714"]]]},{"k":1876,"v":[[0,4,["H1961"]],[4,7,["H226"]],[7,10,["H5921"]],[10,12,["H3027"]],[12,16,["H2146"]],[16,17,["H996"]],[17,19,["H5869"]],[19,20,["H4616"]],[20,22,["H3068"]],[22,23,["H8451"]],[23,25,["H1961"]],[25,28,["H6310"]],[28,29,["H3588"]],[29,32,["H2389"]],[32,33,["H3027"]],[33,36,["H3068"]],[36,39,["H3318"]],[39,41,["H4480","H4714"]]]},{"k":1877,"v":[[0,4,["H8104","(H853)"]],[4,5,["H2063"]],[5,6,["H2708"]],[6,9,["H4150"]],[9,11,["H4480","H3117"]],[11,13,["H3117"]]]},{"k":1878,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,7,["H3068"]],[7,9,["H935"]],[9,11,["H413"]],[11,13,["H776"]],[13,16,["H3669"]],[16,17,["H834"]],[17,19,["H7650"]],[19,25,["H1"]],[25,28,["H5414"]],[28,30,[]]]},{"k":1879,"v":[[0,5,["H5674"]],[5,8,["H3068"]],[8,9,["H3605"]],[9,11,["H6363"]],[11,13,["H7358"]],[13,15,["H3605"]],[15,16,["H6363"]],[16,18,["H7698"]],[18,21,["H929"]],[21,22,["H834"]],[22,24,["H1961"]],[24,26,["H2145"]],[26,30,["H3068"]]]},{"k":1880,"v":[[0,2,["H3605"]],[2,3,["H6363"]],[3,6,["H2543"]],[6,9,["H6299"]],[9,12,["H7716"]],[12,14,["H518"]],[14,17,["H3808"]],[17,18,["H6299"]],[18,25,["H6202"]],[25,27,["H3605"]],[27,29,["H1060"]],[29,31,["H120"]],[31,34,["H1121"]],[34,37,["H6299"]]]},{"k":1881,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,7,["H1121"]],[7,8,["H7592"]],[8,13,["H4279"]],[13,14,["H559"]],[14,15,["H4100"]],[15,17,["H2063"]],[17,21,["H559"]],[21,22,["H413"]],[22,25,["H2392"]],[25,27,["H3027"]],[27,29,["H3068"]],[29,32,["H3318"]],[32,34,["H4480","H4714"]],[34,37,["H4480","H1004"]],[37,39,["H5650"]]]},{"k":1882,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,7,["H6547"]],[7,9,["H7185"]],[9,12,["H7971"]],[12,15,["H3068"]],[15,16,["H2026"]],[16,17,["H3605"]],[17,19,["H1060"]],[19,22,["H776"]],[22,24,["H4714"]],[24,27,["H4480","H1060"]],[27,29,["H120"]],[29,32,["H1060"]],[32,34,["H929"]],[34,35,["H5921","H3651"]],[35,36,["H589"]],[36,37,["H2076"]],[37,40,["H3068"]],[40,41,["H3605"]],[41,43,["H6363"]],[43,45,["H7358"]],[45,47,["H2145"]],[47,49,["H3605"]],[49,51,["H1060"]],[51,54,["H1121"]],[54,56,["H6299"]]]},{"k":1883,"v":[[0,4,["H1961"]],[4,7,["H226"]],[7,8,["H5921"]],[8,10,["H3027"]],[10,13,["H2903"]],[13,14,["H996"]],[14,16,["H5869"]],[16,17,["H3588"]],[17,19,["H2392"]],[19,21,["H3027"]],[21,23,["H3068"]],[23,26,["H3318"]],[26,29,["H4480","H4714"]]]},{"k":1884,"v":[[0,5,["H1961"]],[5,7,["H6547"]],[7,9,["(H853)"]],[9,11,["H5971"]],[11,12,["H7971"]],[12,14,["H430"]],[14,15,["H5148"]],[15,17,["H3808"]],[17,20,["H1870"]],[20,23,["H776"]],[23,26,["H6430"]],[26,27,["H3588"]],[27,28,["H1931"]],[28,30,["H7138"]],[30,31,["H3588"]],[31,32,["H430"]],[32,33,["H559"]],[33,35,["H6435"]],[35,37,["H5971"]],[37,38,["H5162"]],[38,41,["H7200"]],[41,42,["H4421"]],[42,45,["H7725"]],[45,47,["H4714"]]]},{"k":1885,"v":[[0,2,["H430"]],[2,6,["H5437","(H853)","H5971"]],[6,9,["H1870"]],[9,12,["H4057"]],[12,15,["H5488"]],[15,16,["H3220"]],[16,19,["H1121"]],[19,21,["H3478"]],[21,23,["H5927"]],[23,24,["H2571"]],[24,28,["H4480","H776"]],[28,30,["H4714"]]]},{"k":1886,"v":[[0,2,["H4872"]],[2,3,["H3947","(H853)"]],[3,5,["H6106"]],[5,7,["H3130"]],[7,8,["H5973"]],[8,10,["H3588"]],[10,14,["H7650","H7650","(H853)"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,19,["H559"]],[19,20,["H430"]],[20,23,["H6485","H6485"]],[23,32,["H5927","(H853)","H6106"]],[32,33,["H4480","H2088"]],[33,34,["H854"]],[34,35,[]]]},{"k":1887,"v":[[0,5,["H5265"]],[5,7,["H4480","H5523"]],[7,9,["H2583"]],[9,11,["H864"]],[11,14,["H7097"]],[14,17,["H4057"]]]},{"k":1888,"v":[[0,3,["H3068"]],[3,4,["H1980"]],[4,5,["H6440"]],[5,8,["H3119"]],[8,11,["H5982"]],[11,14,["H6051"]],[14,16,["H5148"]],[16,19,["H1870"]],[19,22,["H3915"]],[22,25,["H5982"]],[25,27,["H784"]],[27,31,["H215"]],[31,33,["H1980"]],[33,35,["H3119"]],[35,37,["H3915"]]]},{"k":1889,"v":[[0,4,["H4185","H3808"]],[4,6,["H5982"]],[6,9,["H6051"]],[9,11,["H3119"]],[11,14,["H5982"]],[14,16,["H784"]],[16,18,["H3915"]],[18,20,["H6440"]],[20,22,["H5971"]]]},{"k":1890,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":1891,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,9,["H7725"]],[9,11,["H2583"]],[11,12,["H6440"]],[12,13,["H6367"]],[13,14,["H996"]],[14,15,["H4024"]],[15,18,["H3220"]],[18,20,["H6440"]],[20,21,["H1189"]],[21,22,["H5226"]],[22,26,["H2583"]],[26,27,["H5921"]],[27,29,["H3220"]]]},{"k":1892,"v":[[0,2,["H6547"]],[2,4,["H559"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,10,["H1992"]],[10,12,["H943"]],[12,15,["H776"]],[15,17,["H4057"]],[17,21,["H5462","H5921"]]]},{"k":1893,"v":[[0,4,["H2388","(H853)"]],[4,5,["H6547"]],[5,6,["H3820"]],[6,10,["H7291"]],[10,11,["H310"]],[11,17,["H3513"]],[17,19,["H6547"]],[19,22,["H3605"]],[22,24,["H2428"]],[24,27,["H4714"]],[27,29,["H3045"]],[29,30,["H3588"]],[30,31,["H589"]],[31,34,["H3068"]],[34,37,["H6213"]],[37,38,["H3651"]]]},{"k":1894,"v":[[0,4,["H5046"]],[4,6,["H4428"]],[6,8,["H4714"]],[8,9,["H3588"]],[9,11,["H5971"]],[11,12,["H1272"]],[12,15,["H3824"]],[15,17,["H6547"]],[17,21,["H5650"]],[21,23,["H2015"]],[23,24,["H413"]],[24,26,["H5971"]],[26,29,["H559"]],[29,30,["H4100"]],[30,33,["H6213"]],[33,34,["H2063"]],[34,35,["H3588"]],[35,38,["(H853)"]],[38,39,["H3478"]],[39,40,["H7971"]],[40,42,["H4480","H5647"]],[42,43,[]]]},{"k":1895,"v":[[0,4,["H631","(H853)"]],[4,6,["H7393"]],[6,8,["H3947"]],[8,10,["H5971"]],[10,11,["H5973"]],[11,12,[]]]},{"k":1896,"v":[[0,3,["H3947"]],[3,4,["H8337"]],[4,5,["H3967"]],[5,6,["H977"]],[6,7,["H7393"]],[7,9,["H3605"]],[9,11,["H7393"]],[11,13,["H4714"]],[13,15,["H7991"]],[15,16,["H5921"]],[16,18,["H3605"]],[18,20,[]]]},{"k":1897,"v":[[0,3,["H3068"]],[3,4,["H2388","(H853)"]],[4,6,["H3820"]],[6,8,["H6547"]],[8,9,["H4428"]],[9,11,["H4714"]],[11,14,["H7291"]],[14,15,["H310"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,26,["H3318"]],[26,29,["H7311"]],[29,30,["H3027"]]]},{"k":1898,"v":[[0,3,["H4714"]],[3,4,["H7291"]],[4,5,["H310"]],[5,7,["H3605"]],[7,9,["H5483"]],[9,11,["H7393"]],[11,13,["H6547"]],[13,16,["H6571"]],[16,19,["H2428"]],[19,21,["H5381"]],[21,23,["H2583"]],[23,24,["H5921"]],[24,26,["H3220"]],[26,27,["H5921"]],[27,28,["H6367"]],[28,29,["H6440"]],[29,30,["H1189"]]]},{"k":1899,"v":[[0,3,["H6547"]],[3,5,["H7126"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,11,["H5375","(H853)"]],[11,13,["H5869"]],[13,15,["H2009"]],[15,17,["H4714"]],[17,18,["H5265"]],[18,19,["H310"]],[19,24,["H3966"]],[24,25,["H3372"]],[25,28,["H1121"]],[28,30,["H3478"]],[30,32,["H6817"]],[32,33,["H413"]],[33,35,["H3068"]]]},{"k":1900,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H4872"]],[5,6,["H4480","H1097"]],[6,9,["H369"]],[9,10,["H6913"]],[10,12,["H4714"]],[12,17,["H3947"]],[17,19,["H4191"]],[19,22,["H4057"]],[22,23,["H4100"]],[23,26,["H6213"]],[26,27,["H2063"]],[27,33,["H3318"]],[33,36,["H4480","H4714"]]]},{"k":1901,"v":[[0,2,["H3808"]],[2,3,["H2088"]],[3,5,["H1697"]],[5,6,["H834"]],[6,9,["H1696","H413"]],[9,12,["H4714"]],[12,13,["H559"]],[13,16,["H2308","H4480"]],[16,20,["H5647","(H853)"]],[20,22,["H4714"]],[22,23,["H3588"]],[23,27,["H2896"]],[27,31,["H5647","(H853)"]],[31,33,["H4714"]],[33,38,["H4480","H4191"]],[38,41,["H4057"]]]},{"k":1902,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H3372"]],[7,9,["H408"]],[9,11,["H3320"]],[11,13,["H7200","(H853)"]],[13,15,["H3444"]],[15,18,["H3068"]],[18,19,["H834"]],[19,22,["H6213"]],[22,26,["H3117"]],[26,27,["H3588","(H853)"]],[27,29,["H4714"]],[29,30,["H834"]],[30,33,["H7200"]],[33,35,["H3117"]],[35,38,["H7200"]],[38,40,["H5750"]],[40,41,["H3808"]],[41,42,["H3254"]],[42,44,["H5921","H5769"]]]},{"k":1903,"v":[[0,2,["H3068"]],[2,4,["H3898"]],[4,8,["H859"]],[8,12,["H2790"]]]},{"k":1904,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H4100"]],[7,8,["H6817"]],[8,10,["H413"]],[10,12,["H1696"]],[12,13,["H413"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,21,["H5265"]]]},{"k":1905,"v":[[0,4,["H7311","H859","(H853)"]],[4,6,["H4294"]],[6,9,["H5186","(H853)"]],[9,11,["H3027"]],[11,12,["H5921"]],[12,14,["H3220"]],[14,16,["H1234"]],[16,20,["H1121"]],[20,22,["H3478"]],[22,24,["H935"]],[24,26,["H3004"]],[26,30,["H8432"]],[30,33,["H3220"]]]},{"k":1906,"v":[[0,2,["H589"]],[2,3,["H2009"]],[3,6,["H2388","(H853)"]],[6,8,["H3820"]],[8,11,["H4714"]],[11,15,["H935","H310"]],[15,22,["H3513"]],[22,24,["H6547"]],[24,27,["H3605"]],[27,29,["H2428"]],[29,32,["H7393"]],[32,36,["H6571"]]]},{"k":1907,"v":[[0,3,["H4714"]],[3,5,["H3045"]],[5,6,["H3588"]],[6,7,["H589"]],[7,10,["H3068"]],[10,16,["H3513"]],[16,18,["H6547"]],[18,21,["H7393"]],[21,25,["H6571"]]]},{"k":1908,"v":[[0,3,["H4397"]],[3,5,["H430"]],[5,7,["H1980"]],[7,8,["H6440"]],[8,10,["H4264"]],[10,12,["H3478"]],[12,13,["H5265"]],[13,15,["H1980"]],[15,16,["H4480","H310"]],[16,20,["H5982"]],[20,23,["H6051"]],[23,24,["H5265"]],[24,28,["H4480","H6440"]],[28,30,["H5975"]],[30,31,["H4480","H310"]],[31,32,[]]]},{"k":1909,"v":[[0,3,["H935"]],[3,4,["H996"]],[4,6,["H4264"]],[6,9,["H4714"]],[9,12,["H4264"]],[12,14,["H3478"]],[14,17,["H1961"]],[17,19,["H6051"]],[19,21,["H2822"]],[21,27,["H215","(H853)"]],[27,29,["H3915"]],[29,35,["H2088"]],[35,38,["H7126","H3808"]],[38,40,["H2088"]],[40,41,["H3605"]],[41,43,["H3915"]]]},{"k":1910,"v":[[0,2,["H4872"]],[2,4,["H5186","(H853)"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,9,["H3220"]],[9,12,["H3068"]],[12,13,["(H853)"]],[13,15,["H3220"]],[15,17,["H1980"]],[17,21,["H5794"]],[21,22,["H6921"]],[22,23,["H7307"]],[23,24,["H3605"]],[24,26,["H3915"]],[26,28,["H7760","(H853)"]],[28,30,["H3220"]],[30,31,["H2724"]],[31,35,["H4325"]],[35,37,["H1234"]]]},{"k":1911,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H935"]],[6,9,["H8432"]],[9,12,["H3220"]],[12,15,["H3004"]],[15,19,["H4325"]],[19,22,["H2346"]],[22,28,["H4480","H3225"]],[28,32,["H4480","H8040"]]]},{"k":1912,"v":[[0,3,["H4714"]],[3,4,["H7291"]],[4,7,["H935"]],[7,8,["H310"]],[8,10,["H413"]],[10,12,["H8432"]],[12,15,["H3220"]],[15,17,["H3605"]],[17,18,["H6547"]],[18,19,["H5483"]],[19,21,["H7393"]],[21,24,["H6571"]]]},{"k":1913,"v":[[0,5,["H1961"]],[5,9,["H1242"]],[9,10,["H821"]],[10,12,["H3068"]],[12,13,["H8259"]],[13,14,["H413"]],[14,16,["H4264"]],[16,19,["H4714"]],[19,22,["H5982"]],[22,24,["H784"]],[24,28,["H6051"]],[28,30,["H2000","(H853)"]],[30,32,["H4264"]],[32,35,["H4714"]]]},{"k":1914,"v":[[0,3,["H5493","(H853)"]],[3,5,["H4818"]],[5,6,["H212"]],[6,9,["H5090"]],[9,11,["H3517"]],[11,15,["H4714"]],[15,16,["H559"]],[16,19,["H5127"]],[19,22,["H4480","H6440"]],[22,24,["H3478"]],[24,25,["H3588"]],[25,27,["H3068"]],[27,28,["H3898"]],[28,33,["H4714"]]]},{"k":1915,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H5186","(H853)"]],[8,10,["H3027"]],[10,11,["H5921"]],[11,13,["H3220"]],[13,16,["H4325"]],[16,19,["H7725"]],[19,20,["H5921"]],[20,22,["H4714"]],[22,23,["H5921"]],[23,25,["H7393"]],[25,27,["H5921"]],[27,29,["H6571"]]]},{"k":1916,"v":[[0,2,["H4872"]],[2,4,["H5186","(H853)"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,9,["H3220"]],[9,12,["H3220"]],[12,13,["H7725"]],[13,16,["H386"]],[16,19,["H1242"]],[19,20,["H6437"]],[20,23,["H4714"]],[23,24,["H5127"]],[24,25,["H7125"]],[25,29,["H3068"]],[29,30,["H5287","(H853)"]],[30,32,["H4714"]],[32,35,["H8432"]],[35,38,["H3220"]]]},{"k":1917,"v":[[0,3,["H4325"]],[3,4,["H7725"]],[4,6,["H3680","(H853)"]],[6,8,["H7393"]],[8,11,["H6571"]],[11,13,["H3605"]],[13,15,["H2428"]],[15,17,["H6547"]],[17,19,["H935"]],[19,22,["H3220"]],[22,23,["H310"]],[23,26,["H7604"]],[26,27,["H3808"]],[27,30,["H5704"]],[30,31,["H259"]],[31,33,[]]]},{"k":1918,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H1980"]],[6,8,["H3004"]],[8,12,["H8432"]],[12,15,["H3220"]],[15,18,["H4325"]],[18,21,["H2346"]],[21,27,["H4480","H3225"]],[27,31,["H4480","H8040"]]]},{"k":1919,"v":[[0,3,["H3068"]],[3,4,["H3467","(H853)"]],[4,5,["H3478"]],[5,6,["H1931"]],[6,7,["H3117"]],[7,11,["H4480","H3027"]],[11,14,["H4714"]],[14,16,["H3478"]],[16,17,["H7200","(H853)"]],[17,19,["H4714"]],[19,20,["H4191"]],[20,21,["H5921"]],[21,23,["H3220"]],[23,24,["H8193"]]]},{"k":1920,"v":[[0,2,["H3478"]],[2,3,["H7200","(H853)"]],[3,5,["H1419"]],[5,6,["H3027"]],[6,7,["H834"]],[7,9,["H3068"]],[9,10,["H6213"]],[10,13,["H4714"]],[13,16,["H5971"]],[16,17,["H3372","(H853)"]],[17,19,["H3068"]],[19,21,["H539"]],[21,23,["H3068"]],[23,26,["H5650"]],[26,27,["H4872"]]]},{"k":1921,"v":[[0,1,["H227"]],[1,2,["H7891"]],[2,3,["H4872"]],[3,6,["H1121"]],[6,8,["H3478","(H853)"]],[8,9,["H2063"]],[9,10,["H7892"]],[10,13,["H3068"]],[13,15,["H559"]],[15,16,["H559"]],[16,19,["H7891"]],[19,22,["H3068"]],[22,23,["H3588"]],[23,27,["H1342","H1342"]],[27,29,["H5483"]],[29,32,["H7392"]],[32,35,["H7411"]],[35,38,["H3220"]]]},{"k":1922,"v":[[0,2,["H3050"]],[2,5,["H5797"]],[5,7,["H2176"]],[7,11,["H1961"]],[11,13,["H3444"]],[13,14,["H2088"]],[14,17,["H410"]],[17,24,["H5115"]],[24,26,["H1"]],[26,27,["H430"]],[27,31,["H7311"]],[31,32,[]]]},{"k":1923,"v":[[0,2,["H3068"]],[2,5,["H376"]],[5,7,["H4421"]],[7,9,["H3068"]],[9,12,["H8034"]]]},{"k":1924,"v":[[0,1,["H6547"]],[1,2,["H4818"]],[2,5,["H2428"]],[5,8,["H3384"]],[8,11,["H3220"]],[11,13,["H4005"]],[13,14,["H7991"]],[14,17,["H2883"]],[17,20,["H5488"]],[20,21,["H3220"]]]},{"k":1925,"v":[[0,2,["H8415"]],[2,4,["H3680"]],[4,7,["H3381"]],[7,10,["H4688"]],[10,11,["H3644"]],[11,13,["H68"]]]},{"k":1926,"v":[[0,3,["H3225"]],[3,5,["H3068"]],[5,8,["H142"]],[8,10,["H3581"]],[10,13,["H3225"]],[13,15,["H3068"]],[15,19,["H7492"]],[19,21,["H341"]]]},{"k":1927,"v":[[0,4,["H7230"]],[4,7,["H1347"]],[7,10,["H2040"]],[10,15,["H6965"]],[15,19,["H7971"]],[19,21,["H2740"]],[21,23,["H398"]],[23,26,["H7179"]]]},{"k":1928,"v":[[0,4,["H7307"]],[4,7,["H639"]],[7,9,["H4325"]],[9,12,["H6192"]],[12,14,["H5140"]],[14,16,["H5324"]],[16,17,["H3644"]],[17,19,["H5067"]],[19,22,["H8415"]],[22,24,["H7087"]],[24,27,["H3820"]],[27,30,["H3220"]]]},{"k":1929,"v":[[0,2,["H341"]],[2,3,["H559"]],[3,6,["H7291"]],[6,9,["H5381"]],[9,12,["H2505"]],[12,14,["H7998"]],[14,16,["H5315"]],[16,19,["H4390"]],[19,24,["H7324"]],[24,26,["H2719"]],[26,28,["H3027"]],[28,30,["H3423"]],[30,31,[]]]},{"k":1930,"v":[[0,3,["H5398"]],[3,6,["H7307"]],[6,8,["H3220"]],[8,9,["H3680"]],[9,12,["H6749"]],[12,14,["H5777"]],[14,17,["H117"]],[17,18,["H4325"]]]},{"k":1931,"v":[[0,1,["H4310"]],[1,5,["H3644"]],[5,7,["H3068"]],[7,10,["H410"]],[10,11,["H4310"]],[11,14,["H3644"]],[14,15,["H142"]],[15,17,["H6944"]],[17,18,["H3372"]],[18,20,["H8416"]],[20,21,["H6213"]],[21,22,["H6382"]]]},{"k":1932,"v":[[0,3,["H5186"]],[3,6,["H3225"]],[6,8,["H776"]],[8,9,["H1104"]],[9,10,[]]]},{"k":1933,"v":[[0,4,["H2617"]],[4,7,["H5148"]],[7,9,["H5971"]],[9,10,["H2098"]],[10,13,["H1350"]],[13,16,["H5095"]],[16,20,["H5797"]],[20,21,["H413"]],[21,23,["H6944"]],[23,24,["H5116"]]]},{"k":1934,"v":[[0,2,["H5971"]],[2,4,["H8085"]],[4,7,["H7264"]],[7,8,["H2427"]],[8,11,["H270"]],[11,14,["H3427"]],[14,16,["H6429"]]]},{"k":1935,"v":[[0,1,["H227"]],[1,3,["H441"]],[3,5,["H123"]],[5,8,["H926"]],[8,11,["H352"]],[11,13,["H4124"]],[13,14,["H7461"]],[14,18,["H270"]],[18,20,["H3605"]],[20,22,["H3427"]],[22,24,["H3667"]],[24,27,["H4127"]]]},{"k":1936,"v":[[0,1,["H367"]],[1,3,["H6343"]],[3,5,["H5307"]],[5,6,["H5921"]],[6,10,["H1419"]],[10,13,["H2220"]],[13,18,["H1826"]],[18,21,["H68"]],[21,22,["H5704"]],[22,24,["H5971"]],[24,26,["H5674"]],[26,28,["H3068"]],[28,29,["H5704"]],[29,31,["H5971"]],[31,33,["H5674"]],[33,34,["H2098"]],[34,37,["H7069"]]]},{"k":1937,"v":[[0,5,["H935"]],[5,7,["H5193"]],[7,11,["H2022"]],[11,14,["H5159"]],[14,17,["H4349"]],[17,19,["H3068"]],[19,23,["H6466"]],[23,28,["H3427"]],[28,31,["H4720"]],[31,33,["H136"]],[33,36,["H3027"]],[36,38,["H3559"]]]},{"k":1938,"v":[[0,2,["H3068"]],[2,4,["H4427"]],[4,6,["H5769"]],[6,8,["H5703"]]]},{"k":1939,"v":[[0,1,["H3588"]],[1,3,["H5483"]],[3,5,["H6547"]],[5,7,["H935"]],[7,10,["H7393"]],[10,14,["H6571"]],[14,17,["H3220"]],[17,20,["H3068"]],[20,22,["H7725","(H853)"]],[22,24,["H4325"]],[24,27,["H3220"]],[27,28,["H5921"]],[28,32,["H1121"]],[32,34,["H3478"]],[34,35,["H1980"]],[35,37,["H3004"]],[37,41,["H8432"]],[41,44,["H3220"]]]},{"k":1940,"v":[[0,2,["H4813"]],[2,4,["H5031"]],[4,6,["H269"]],[6,8,["H175"]],[8,9,["H3947","(H853)"]],[9,11,["H8596"]],[11,14,["H3027"]],[14,16,["H3605"]],[16,18,["H802"]],[18,20,["H3318"]],[20,21,["H310"]],[21,24,["H8596"]],[24,27,["H4246"]]]},{"k":1941,"v":[[0,2,["H4813"]],[2,3,["H6030"]],[3,5,["H7891"]],[5,9,["H3068"]],[9,10,["H3588"]],[10,14,["H1342","H1342"]],[14,16,["H5483"]],[16,19,["H7392"]],[19,22,["H7411"]],[22,25,["H3220"]]]},{"k":1942,"v":[[0,2,["H4872"]],[2,3,["H5265","(H853)"]],[3,4,["H3478"]],[4,8,["H4480","H3220","H5488"]],[8,12,["H3318"]],[12,13,["H413"]],[13,15,["H4057"]],[15,17,["H7793"]],[17,20,["H1980"]],[20,21,["H7969"]],[21,22,["H3117"]],[22,25,["H4057"]],[25,27,["H4672"]],[27,28,["H3808"]],[28,29,["H4325"]]]},{"k":1943,"v":[[0,4,["H935"]],[4,6,["H4785"]],[6,8,["H3201"]],[8,9,["H3808"]],[9,10,["H8354"]],[10,13,["H4325"]],[13,15,["H4480","H4785"]],[15,16,["H3588"]],[16,17,["H1992"]],[17,19,["H4751"]],[19,20,["H5921","H3651"]],[20,22,["H8034"]],[22,26,["H7121"]],[26,27,["H4785"]]]},{"k":1944,"v":[[0,3,["H5971"]],[3,4,["H3885"]],[4,5,["H5921"]],[5,6,["H4872"]],[6,7,["H559"]],[7,8,["H4100"]],[8,11,["H8354"]]]},{"k":1945,"v":[[0,3,["H6817"]],[3,4,["H413"]],[4,6,["H3068"]],[6,9,["H3068"]],[9,10,["H3384"]],[10,13,["H6086"]],[13,18,["H7993"]],[18,19,["H413"]],[19,21,["H4325"]],[21,23,["H4325"]],[23,26,["H4985"]],[26,27,["H8033"]],[27,29,["H7760"]],[29,33,["H2706"]],[33,36,["H4941"]],[36,38,["H8033"]],[38,40,["H5254"]],[40,41,[]]]},{"k":1946,"v":[[0,2,["H559"]],[2,3,["H518"]],[3,7,["H8085","H8085"]],[7,10,["H6963"]],[10,13,["H3068"]],[13,15,["H430"]],[15,18,["H6213"]],[18,22,["H3477"]],[22,25,["H5869"]],[25,29,["H238"]],[29,32,["H4687"]],[32,34,["H8104"]],[34,35,["H3605"]],[35,37,["H2706"]],[37,40,["H7760"]],[40,41,["H3808","H3605"]],[41,44,["H4245"]],[44,45,["H5921"]],[45,47,["H834"]],[47,50,["H7760"]],[50,53,["H4714"]],[53,54,["H3588"]],[54,55,["H589"]],[55,58,["H3068"]],[58,60,["H7495"]],[60,61,[]]]},{"k":1947,"v":[[0,3,["H935"]],[3,5,["H362"]],[5,6,["H8033"]],[6,8,["H8147","H6240"]],[8,9,["H5869"]],[9,11,["H4325"]],[11,15,["H7657"]],[15,17,["H8558"]],[17,20,["H2583"]],[20,21,["H8033"]],[21,22,["H5921"]],[22,24,["H4325"]]]},{"k":1948,"v":[[0,5,["H5265"]],[5,7,["H4480","H362"]],[7,9,["H3605"]],[9,11,["H5712"]],[11,14,["H1121"]],[14,16,["H3478"]],[16,17,["H935"]],[17,18,["H413"]],[18,20,["H4057"]],[20,22,["H5512"]],[22,23,["H834"]],[23,25,["H996"]],[25,26,["H362"]],[26,28,["H5514"]],[28,31,["H2568","H6240"]],[31,32,["H3117"]],[32,35,["H8145"]],[35,36,["H2320"]],[36,40,["H3318"]],[40,43,["H4480","H776"]],[43,45,["H4714"]]]},{"k":1949,"v":[[0,3,["H3605"]],[3,4,["H5712"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,10,["H3885"]],[10,11,["H5921"]],[11,12,["H4872"]],[12,14,["H175"]],[14,17,["H4057"]]]},{"k":1950,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,11,["H4310","H5414"]],[11,14,["H4191"]],[14,17,["H3027"]],[17,20,["H3068"]],[20,23,["H776"]],[23,25,["H4714"]],[25,28,["H3427"]],[28,29,["H5921"]],[29,31,["H1320"]],[31,32,["H5518"]],[32,37,["H398"]],[37,38,["H3899"]],[38,41,["H7648"]],[41,42,["H3588"]],[42,47,["H3318","(H853)"]],[47,48,["H413"]],[48,49,["H2088"]],[49,50,["H4057"]],[50,52,["H4191","(H853)"]],[52,53,["H2088"]],[53,54,["H3605"]],[54,55,["H6951"]],[55,57,["H7458"]]]},{"k":1951,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H2009"]],[7,10,["H4305"]],[10,11,["H3899"]],[11,12,["H4480"]],[12,13,["H8064"]],[13,18,["H5971"]],[18,21,["H3318"]],[21,23,["H3950"]],[23,28,["H1697","H3117","H3117"]],[28,29,["H4616"]],[29,32,["H5254"]],[32,37,["H1980"]],[37,40,["H8451"]],[40,41,["H518"]],[41,42,["H3808"]]]},{"k":1952,"v":[[0,6,["H1961"]],[6,10,["H8345"]],[10,11,["H3117"]],[11,14,["H3559","(H853)"]],[14,16,["H834"]],[16,19,["H935"]],[19,23,["H1961"]],[23,24,["H4932"]],[24,27,["H5921","H834"]],[27,29,["H3950"]],[29,30,["H3117","H3117"]]]},{"k":1953,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,5,["H559"]],[5,6,["H413"]],[6,7,["H3605"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,13,["H6153"]],[13,17,["H3045"]],[17,18,["H3588"]],[18,20,["H3068"]],[20,24,["H3318","(H853)"]],[24,27,["H4480","H776"]],[27,29,["H4714"]]]},{"k":1954,"v":[[0,4,["H1242"]],[4,8,["H7200","(H853)"]],[8,10,["H3519"]],[10,13,["H3068"]],[13,17,["H8085","(H853)"]],[17,19,["H8519"]],[19,20,["H5921"]],[20,22,["H3068"]],[22,24,["H4100"]],[24,26,["H5168"]],[26,27,["H3588"]],[27,29,["H3885"]],[29,30,["H5921"]],[30,31,[]]]},{"k":1955,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,9,["H3068"]],[9,11,["H5414"]],[11,15,["H6153"]],[15,16,["H1320"]],[16,18,["H398"]],[18,22,["H1242"]],[22,23,["H3899"]],[23,26,["H7646"]],[26,30,["H3068"]],[30,31,["H8085","(H853)"]],[31,33,["H8519"]],[33,34,["H834"]],[34,35,["H859"]],[35,36,["H3885"]],[36,37,["H5921"]],[37,40,["H4100"]],[40,42,["H5168"]],[42,44,["H8519"]],[44,46,["H3808"]],[46,47,["H5921"]],[47,49,["H3588"]],[49,50,["H5921"]],[50,52,["H3068"]]]},{"k":1956,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H175"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3605"]],[8,10,["H5712"]],[10,13,["H1121"]],[13,15,["H3478"]],[15,17,["H7126"]],[17,18,["H6440"]],[18,20,["H3068"]],[20,21,["H3588"]],[21,24,["H8085","(H853)"]],[24,26,["H8519"]]]},{"k":1957,"v":[[0,5,["H1961"]],[5,7,["H175"]],[7,8,["H1696"]],[8,9,["H413"]],[9,11,["H3605"]],[11,12,["H5712"]],[12,15,["H1121"]],[15,17,["H3478"]],[17,20,["H6437"]],[20,21,["H413"]],[21,23,["H4057"]],[23,25,["H2009"]],[25,27,["H3519"]],[27,30,["H3068"]],[30,31,["H7200"]],[31,34,["H6051"]]]},{"k":1958,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":1959,"v":[[0,3,["H8085","(H853)"]],[3,5,["H8519"]],[5,8,["H1121"]],[8,10,["H3478"]],[10,11,["H1696"]],[11,12,["H413"]],[12,14,["H559"]],[14,15,["H996"]],[15,16,["H6153"]],[16,19,["H398"]],[19,20,["H1320"]],[20,24,["H1242"]],[24,28,["H7646"]],[28,30,["H3899"]],[30,34,["H3045"]],[34,35,["H3588"]],[35,36,["H589"]],[36,39,["H3068"]],[39,41,["H430"]]]},{"k":1960,"v":[[0,5,["H1961"]],[5,8,["H6153"]],[8,10,["H7958"]],[10,12,["H5927"]],[12,14,["H3680","(H853)"]],[14,16,["H4264"]],[16,20,["H1242"]],[20,22,["H2919"]],[22,23,["H1961","H7902"]],[23,25,["H5439"]],[25,27,["H4264"]]]},{"k":1961,"v":[[0,4,["H2919"]],[4,6,["H7902"]],[6,9,["H5927"]],[9,10,["H2009"]],[10,11,["H5921"]],[11,13,["H6440"]],[13,16,["H4057"]],[16,20,["H1851"]],[20,22,["H2636"]],[22,24,["H1851"]],[24,28,["H3713"]],[28,29,["H5921"]],[29,31,["H776"]]]},{"k":1962,"v":[[0,4,["H1121"]],[4,6,["H3478"]],[6,7,["H7200"]],[7,10,["H559"]],[10,11,["H376"]],[11,12,["H413"]],[12,13,["H251"]],[13,14,["H1931"]],[14,16,["H4478"]],[16,17,["H3588"]],[17,19,["H3045"]],[19,20,["H3808"]],[20,21,["H4100"]],[21,22,["H1931"]],[22,25,["H4872"]],[25,26,["H559"]],[26,27,["H413"]],[27,29,["H1931"]],[29,32,["H3899"]],[32,33,["H834"]],[33,35,["H3068"]],[35,37,["H5414"]],[37,40,["H402"]]]},{"k":1963,"v":[[0,1,["H2088"]],[1,4,["H1697"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H6680"]],[9,10,["H3950"]],[10,11,["H4480"]],[11,14,["H376"]],[14,16,["H6310"]],[16,18,["H400"]],[18,20,["H6016"]],[20,23,["H1538"]],[23,27,["H4557"]],[27,30,["H5315"]],[30,31,["H3947"]],[31,34,["H376"]],[34,37,["H834"]],[37,41,["H168"]]]},{"k":1964,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,7,["H3651"]],[7,9,["H3950"]],[9,11,["H7235"]],[11,13,["H4591"]]]},{"k":1965,"v":[[0,5,["H4058"]],[5,9,["H6016"]],[9,13,["H7235"]],[13,16,["H5736","H3808"]],[16,21,["H4591"]],[21,23,["H3808"]],[23,24,["H2637"]],[24,26,["H3950"]],[26,28,["H376"]],[28,30,["H6310"]],[30,32,["H400"]]]},{"k":1966,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,5,["H408"]],[5,6,["H376"]],[6,7,["H3498"]],[7,8,["H4480"]],[8,10,["H5704"]],[10,12,["H1242"]]]},{"k":1967,"v":[[0,3,["H8085"]],[3,4,["H3808"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H376"]],[8,11,["H3498"]],[11,12,["H4480"]],[12,14,["H5704"]],[14,16,["H1242"]],[16,19,["H7311"]],[19,20,["H8438"]],[20,22,["H887"]],[22,24,["H4872"]],[24,26,["H7107"]],[26,27,["H5921"]],[27,28,[]]]},{"k":1968,"v":[[0,3,["H3950"]],[3,6,["H1242","H1242"]],[6,8,["H376"]],[8,10,["H6310"]],[10,12,["H400"]],[12,16,["H8121"]],[16,18,["H2552"]],[18,20,["H4549"]]]},{"k":1969,"v":[[0,5,["H1961"]],[5,9,["H8345"]],[9,10,["H3117"]],[10,12,["H3950"]],[12,15,["H4932"]],[15,16,["H3899"]],[16,17,["H8147"]],[17,18,["H6016"]],[18,20,["H259"]],[20,23,["H3605"]],[23,25,["H5387"]],[25,28,["H5712"]],[28,29,["H935"]],[29,31,["H5046"]],[31,32,["H4872"]]]},{"k":1970,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1931"]],[6,9,["H834"]],[9,11,["H3068"]],[11,13,["H1696"]],[13,15,["H4279"]],[15,18,["H7677"]],[18,21,["H6944"]],[21,22,["H7676"]],[22,25,["H3068"]],[25,26,["H644"]],[26,27,["(H853)"]],[27,28,["H834"]],[28,31,["H644"]],[31,35,["H1310"]],[35,36,["H834"]],[36,39,["H1310"]],[39,42,["H3605"]],[42,44,["H5736"]],[44,46,["H5117"]],[46,51,["H4931"]],[51,52,["H5704"]],[52,54,["H1242"]]]},{"k":1971,"v":[[0,5,["H5117","(H853)"]],[5,6,["H5704"]],[6,8,["H1242"]],[8,9,["H834"]],[9,10,["H4872"]],[10,11,["H6680"]],[11,15,["H3808"]],[15,16,["H887"]],[16,17,["H3808"]],[17,18,["H1961"]],[18,21,["H7415"]],[21,22,[]]]},{"k":1972,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H398"]],[4,7,["H3117"]],[7,8,["H3588"]],[8,10,["H3117"]],[10,13,["H7676"]],[13,16,["H3068"]],[16,18,["H3117"]],[18,21,["H3808"]],[21,22,["H4672"]],[22,26,["H7704"]]]},{"k":1973,"v":[[0,1,["H8337"]],[1,2,["H3117"]],[2,5,["H3950"]],[5,10,["H7637"]],[10,11,["H3117"]],[11,15,["H7676"]],[15,20,["H1961"]],[20,21,["H3808"]]]},{"k":1974,"v":[[0,5,["H1961"]],[5,9,["H3318"]],[9,11,["H4480"]],[11,13,["H5971"]],[13,16,["H7637"]],[16,17,["H3117"]],[17,20,["H3950"]],[20,23,["H4672"]],[23,24,["H3808"]]]},{"k":1975,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H5704","H575"]],[8,9,["H3985"]],[9,12,["H8104"]],[12,14,["H4687"]],[14,17,["H8451"]]]},{"k":1976,"v":[[0,1,["H7200"]],[1,2,["H3588"]],[2,5,["H3068"]],[5,7,["H5414"]],[7,10,["H7676"]],[10,11,["H5921","H3651"]],[11,12,["H1931"]],[12,13,["H5414"]],[13,17,["H8345"]],[17,18,["H3117"]],[18,20,["H3899"]],[20,23,["H3117"]],[23,24,["H3427"]],[24,27,["H376"]],[27,30,["H8478"]],[30,32,["H408"]],[32,33,["H376"]],[33,35,["H3318"]],[35,38,["H4480","H4725"]],[38,41,["H7637"]],[41,42,["H3117"]]]},{"k":1977,"v":[[0,3,["H5971"]],[3,4,["H7673"]],[4,7,["H7637"]],[7,8,["H3117"]]]},{"k":1978,"v":[[0,3,["H1004"]],[3,5,["H3478"]],[5,6,["H7121","(H853)"]],[6,8,["H8034"]],[8,10,["H4478"]],[10,12,["H1931"]],[12,15,["H1407"]],[15,16,["H2233"]],[16,17,["H3836"]],[17,20,["H2940"]],[20,25,["H6838"]],[25,28,["H1706"]]]},{"k":1979,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H2088"]],[4,7,["H1697"]],[7,8,["H834"]],[8,10,["H3068"]],[10,11,["H6680"]],[11,12,["H4393"]],[12,14,["H6016"]],[14,15,["H4480"]],[15,19,["H4931"]],[19,22,["H1755"]],[22,23,["H4616"]],[23,26,["H7200","(H853)"]],[26,28,["H3899"]],[28,29,["H834"]],[29,32,["H398"]],[32,36,["H4057"]],[36,41,["H3318","(H853)"]],[41,44,["H4480","H776"]],[44,46,["H4714"]]]},{"k":1980,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H175"]],[5,6,["H3947"]],[6,7,["H259"]],[7,8,["H6803"]],[8,10,["H5414"]],[10,12,["H6016"]],[12,13,["H4393"]],[13,15,["H4478"]],[15,16,["H8033"]],[16,20,["H5117","(H853)"]],[20,21,["H6440"]],[21,23,["H3068"]],[23,26,["H4931"]],[26,29,["H1755"]]]},{"k":1981,"v":[[0,1,["H834"]],[1,3,["H3068"]],[3,4,["H6680","H413"]],[4,5,["H4872"]],[5,7,["H175"]],[7,10,["H5117"]],[10,11,["H6440"]],[11,13,["H5715"]],[13,16,["H4931"]]]},{"k":1982,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H398","(H853)"]],[7,8,["H4478"]],[8,9,["H705"]],[9,10,["H8141"]],[10,11,["H5704"]],[11,13,["H935"]],[13,14,["H413"]],[14,16,["H776"]],[16,17,["H3427"]],[17,20,["H398","(H853)"]],[20,21,["H4478"]],[21,22,["H5704"]],[22,24,["H935"]],[24,25,["H413"]],[25,27,["H7097"]],[27,30,["H776"]],[30,32,["H3667"]]]},{"k":1983,"v":[[0,3,["H6016"]],[3,6,["H6224"]],[6,10,["H374"]]]},{"k":1984,"v":[[0,2,["H3605"]],[2,4,["H5712"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,10,["H5265"]],[10,13,["H4480","H4057"]],[13,15,["H5512"]],[15,18,["H4550"]],[18,20,["H5921"]],[20,22,["H6310"]],[22,25,["H3068"]],[25,27,["H2583"]],[27,29,["H7508"]],[29,33,["H369"]],[33,34,["H4325"]],[34,37,["H5971"]],[37,39,["H8354"]]]},{"k":1985,"v":[[0,3,["H5971"]],[3,5,["H7378"]],[5,6,["H5973"]],[6,7,["H4872"]],[7,9,["H559"]],[9,10,["H5414"]],[10,12,["H4325"]],[12,16,["H8354"]],[16,18,["H4872"]],[18,19,["H559"]],[19,22,["H4100"]],[22,23,["H7378"]],[23,25,["H5978"]],[25,27,["H4100"]],[27,30,["H5254","(H853)"]],[30,32,["H3068"]]]},{"k":1986,"v":[[0,3,["H5971"]],[3,4,["H6770"]],[4,5,["H8033"]],[5,7,["H4325"]],[7,10,["H5971"]],[10,11,["H3885"]],[11,12,["H5921"]],[12,13,["H4872"]],[13,15,["H559"]],[15,16,["H4100"]],[16,18,["H2088"]],[18,24,["H5927"]],[24,27,["H4480","H4714"]],[27,29,["H4191"]],[29,33,["H1121"]],[33,36,["H4735"]],[36,38,["H6772"]]]},{"k":1987,"v":[[0,2,["H4872"]],[2,3,["H6817"]],[3,4,["H413"]],[4,6,["H3068"]],[6,7,["H559"]],[7,8,["H4100"]],[8,11,["H6213"]],[11,13,["H2088"]],[13,14,["H5971"]],[14,17,["H4592"]],[17,18,["H5750"]],[18,20,["H5619"]],[20,21,[]]]},{"k":1988,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H5674"]],[8,9,["H6440"]],[9,11,["H5971"]],[11,13,["H3947"]],[13,14,["H854"]],[14,18,["H4480","H2205"]],[18,20,["H3478"]],[20,23,["H4294"]],[23,24,["H834"]],[24,26,["H5221","(H853)"]],[26,28,["H2975"]],[28,29,["H3947"]],[29,32,["H3027"]],[32,34,["H1980"]]]},{"k":1989,"v":[[0,1,["H2009"]],[1,4,["H5975"]],[4,5,["H6440"]],[5,7,["H8033"]],[7,8,["H5921"]],[8,10,["H6697"]],[10,12,["H2722"]],[12,16,["H5221"]],[16,18,["H6697"]],[18,22,["H3318"]],[22,23,["H4325"]],[23,25,["H4480"]],[25,29,["H5971"]],[29,31,["H8354"]],[31,33,["H4872"]],[33,34,["H6213"]],[34,35,["H3651"]],[35,38,["H5869"]],[38,41,["H2205"]],[41,43,["H3478"]]]},{"k":1990,"v":[[0,3,["H7121"]],[3,5,["H8034"]],[5,8,["H4725"]],[8,9,["H4532"]],[9,11,["H4809"]],[11,13,["H5921"]],[13,15,["H7379"]],[15,18,["H1121"]],[18,20,["H3478"]],[20,22,["H5921"]],[22,24,["H5254","(H853)"]],[24,26,["H3068"]],[26,27,["H559"]],[27,28,["H3426"]],[28,30,["H3068"]],[30,31,["H7130"]],[31,33,["H518"]],[33,34,["H369"]]]},{"k":1991,"v":[[0,2,["H935"]],[2,3,["H6002"]],[3,5,["H3898"]],[5,6,["H5973"]],[6,7,["H3478"]],[7,9,["H7508"]]]},{"k":1992,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3091"]],[5,8,["H977"]],[8,9,["H376"]],[9,12,["H3318"]],[12,13,["H3898"]],[13,15,["H6002"]],[15,17,["H4279"]],[17,18,["H595"]],[18,20,["H5324"]],[20,21,["H5921"]],[21,23,["H7218"]],[23,26,["H1389"]],[26,29,["H4294"]],[29,31,["H430"]],[31,34,["H3027"]]]},{"k":1993,"v":[[0,2,["H3091"]],[2,3,["H6213"]],[3,4,["H834"]],[4,5,["H4872"]],[5,7,["H559"]],[7,11,["H3898"]],[11,13,["H6002"]],[13,15,["H4872"]],[15,16,["H175"]],[16,18,["H2354"]],[18,20,["H5927"]],[20,23,["H7218"]],[23,26,["H1389"]]]},{"k":1994,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H4872"]],[7,9,["H7311"]],[9,11,["H3027"]],[11,13,["H3478"]],[13,14,["H1396"]],[14,16,["H834"]],[16,19,["H5117"]],[19,21,["H3027"]],[21,22,["H6002"]],[22,23,["H1396"]]]},{"k":1995,"v":[[0,2,["H4872"]],[2,3,["H3027"]],[3,5,["H3515"]],[5,8,["H3947"]],[8,10,["H68"]],[10,12,["H7760"]],[12,14,["H8478"]],[14,18,["H3427"]],[18,19,["H5921"]],[19,21,["H175"]],[21,23,["H2354"]],[23,25,["H8551"]],[25,27,["H3027"]],[27,29,["H259"]],[29,33,["H4480","H2088"]],[33,36,["H259"]],[36,40,["H4480","H2088"]],[40,43,["H3027"]],[43,44,["H1961"]],[44,45,["H530"]],[45,46,["H5704"]],[46,49,["H935"]],[49,52,["H8121"]]]},{"k":1996,"v":[[0,2,["H3091"]],[2,3,["H2522","(H853)"]],[3,4,["H6002"]],[4,7,["H5971"]],[7,10,["H6310"]],[10,13,["H2719"]]]},{"k":1997,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H3789"]],[7,8,["H2063"]],[8,11,["H2146"]],[11,14,["H5612"]],[14,16,["H7760"]],[16,20,["H241"]],[20,22,["H3091"]],[22,23,["H3588"]],[23,28,["H4229","H4229","(H853)"]],[28,30,["H2143"]],[30,32,["H6002"]],[32,34,["H4480","H8478"]],[34,35,["H8064"]]]},{"k":1998,"v":[[0,2,["H4872"]],[2,3,["H1129"]],[3,5,["H4196"]],[5,7,["H7121"]],[7,9,["H8034"]],[9,12,["H3071"]]]},{"k":1999,"v":[[0,3,["H559"]],[3,4,["H3588"]],[4,6,["H3050"]],[6,8,["H3027","H5921","H3676"]],[8,11,["H3068"]],[11,14,["H4421"]],[14,16,["H6002"]],[16,18,["H4480","H1755"]],[18,20,["H1755"]]]},{"k":2000,"v":[[0,2,["H3503"]],[2,4,["H3548"]],[4,6,["H4080"]],[6,7,["H4872"]],[7,10,["H2859"]],[10,11,["H8085","(H853)"]],[11,13,["H3605"]],[13,14,["H834"]],[14,15,["H430"]],[15,17,["H6213"]],[17,19,["H4872"]],[19,22,["H3478"]],[22,24,["H5971"]],[24,26,["H3588"]],[26,28,["H3068"]],[28,32,["H3318","(H853)","H3478"]],[32,34,["H4480","H4714"]]]},{"k":2001,"v":[[0,2,["H3503"]],[2,3,["H4872"]],[3,6,["H2859"]],[6,7,["H3947","(H853)"]],[7,8,["H6855"]],[8,9,["H4872"]],[9,10,["H802"]],[10,11,["H310"]],[11,16,["H7964"]]]},{"k":2002,"v":[[0,3,["H8147"]],[3,4,["H1121"]],[4,6,["H834"]],[6,8,["H8034"]],[8,11,["H259"]],[11,13,["H1648"]],[13,14,["H3588"]],[14,16,["H559"]],[16,19,["H1961"]],[19,21,["H1616"]],[21,24,["H5237"]],[24,25,["H776"]]]},{"k":2003,"v":[[0,3,["H8034"]],[3,6,["H259"]],[6,8,["H461"]],[8,9,["H3588"]],[9,11,["H430"]],[11,14,["H1"]],[14,19,["H5828"]],[19,21,["H5337"]],[21,25,["H4480","H2719"]],[25,27,["H6547"]]]},{"k":2004,"v":[[0,2,["H3503"]],[2,3,["H4872"]],[3,6,["H2859"]],[6,7,["H935"]],[7,10,["H1121"]],[10,13,["H802"]],[13,14,["H413"]],[14,15,["H4872"]],[15,16,["H413"]],[16,18,["H4057"]],[18,19,["H834","H8033"]],[19,20,["H1931"]],[20,21,["H2583"]],[21,24,["H2022"]],[24,26,["H430"]]]},{"k":2005,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H4872"]],[5,6,["H589"]],[6,10,["H2859"]],[10,11,["H3503"]],[11,13,["H935"]],[13,14,["H413"]],[14,18,["H802"]],[18,21,["H8147"]],[21,22,["H1121"]],[22,23,["H5973"]],[23,24,[]]]},{"k":2006,"v":[[0,2,["H4872"]],[2,4,["H3318"]],[4,6,["H7125"]],[6,10,["H2859"]],[10,13,["H7812"]],[13,15,["H5401"]],[15,19,["H7592"]],[19,20,["H376"]],[20,21,["H7453"]],[21,24,["H7965"]],[24,27,["H935"]],[27,30,["H168"]]]},{"k":2007,"v":[[0,2,["H4872"]],[2,3,["H5608"]],[3,7,["H2859","(H853)"]],[7,8,["H3605"]],[8,9,["H834"]],[9,11,["H3068"]],[11,13,["H6213"]],[13,15,["H6547"]],[15,19,["H4714"]],[19,20,["H5921"]],[20,21,["H3478"]],[21,22,["H182"]],[22,23,["(H853)"]],[23,24,["H3605"]],[24,26,["H8513"]],[26,27,["H834"]],[27,30,["H4672"]],[30,34,["H1870"]],[34,38,["H3068"]],[38,39,["H5337"]],[39,40,[]]]},{"k":2008,"v":[[0,2,["H3503"]],[2,3,["H2302"]],[3,4,["H5921"]],[4,5,["H3605"]],[5,7,["H2896"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H6213"]],[12,14,["H3478"]],[14,15,["H834"]],[15,18,["H5337"]],[18,22,["H4480","H3027"]],[22,25,["H4714"]]]},{"k":2009,"v":[[0,2,["H3503"]],[2,3,["H559"]],[3,4,["H1288"]],[4,7,["H3068"]],[7,8,["H834"]],[8,10,["H5337"]],[10,15,["H4480","H3027"]],[15,18,["H4714"]],[18,23,["H4480","H3027"]],[23,25,["H6547"]],[25,26,["H834"]],[26,28,["H5337","(H853)"]],[28,30,["H5971"]],[30,32,["H4480","H8478"]],[32,34,["H3027"]],[34,37,["H4714"]]]},{"k":2010,"v":[[0,1,["H6258"]],[1,3,["H3045"]],[3,4,["H3588"]],[4,6,["H3068"]],[6,8,["H1419"]],[8,10,["H4480","H3605"]],[10,11,["H430"]],[11,12,["H3588"]],[12,15,["H1697"]],[15,16,["H834"]],[16,19,["H2102"]],[19,22,["H5921"]],[22,23,[]]]},{"k":2011,"v":[[0,2,["H3503"]],[2,3,["H4872"]],[3,6,["H2859"]],[6,7,["H3947"]],[7,10,["H5930"]],[10,12,["H2077"]],[12,14,["H430"]],[14,16,["H175"]],[16,17,["H935"]],[17,19,["H3605"]],[19,21,["H2205"]],[21,23,["H3478"]],[23,25,["H398"]],[25,26,["H3899"]],[26,27,["H5973"]],[27,28,["H4872"]],[28,31,["H2859"]],[31,32,["H6440"]],[32,33,["H430"]]]},{"k":2012,"v":[[0,5,["H1961"]],[5,8,["H4480","H4283"]],[8,10,["H4872"]],[10,11,["H3427"]],[11,13,["H8199","(H853)"]],[13,15,["H5971"]],[15,18,["H5971"]],[18,19,["H5975"]],[19,20,["H5921"]],[20,21,["H4872"]],[21,22,["H4480"]],[22,24,["H1242"]],[24,25,["H5704"]],[25,27,["H6153"]]]},{"k":2013,"v":[[0,3,["H4872"]],[3,6,["H2859"]],[6,7,["H7200","(H853)"]],[7,8,["H3605"]],[8,9,["H834"]],[9,10,["H1931"]],[10,11,["H6213"]],[11,14,["H5971"]],[14,16,["H559"]],[16,17,["H4100"]],[17,19,["H2088"]],[19,20,["H1697"]],[20,21,["H834"]],[21,22,["H859"]],[22,23,["H6213"]],[23,26,["H5971"]],[26,27,["H4069"]],[27,28,["H3427"]],[28,29,["H859"]],[29,31,["H905"]],[31,33,["H3605"]],[33,35,["H5971"]],[35,36,["H5324"]],[36,37,["H5921"]],[37,39,["H4480"]],[39,40,["H1242"]],[40,41,["H5704"]],[41,42,["H6153"]]]},{"k":2014,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,8,["H2859"]],[8,9,["H3588"]],[9,11,["H5971"]],[11,12,["H935"]],[12,13,["H413"]],[13,16,["H1875"]],[16,18,["H430"]]]},{"k":2015,"v":[[0,1,["H3588"]],[1,3,["H1961"]],[3,5,["H1697"]],[5,7,["H935"]],[7,8,["H413"]],[8,12,["H8199"]],[12,13,["H996"]],[13,14,["H376"]],[14,16,["H7453"]],[16,22,["H3045","(H853)"]],[22,24,["H2706"]],[24,26,["H430"]],[26,29,["H8451"]]]},{"k":2016,"v":[[0,2,["H4872"]],[2,5,["H2859"]],[5,6,["H559"]],[6,7,["H413"]],[7,10,["H1697"]],[10,11,["H834"]],[11,12,["H859"]],[12,13,["H6213"]],[13,15,["H3808"]],[15,16,["H2896"]]]},{"k":2017,"v":[[0,5,["H5034","H5034"]],[5,6,["H1571"]],[6,7,["H859"]],[7,8,["H1571"]],[8,9,["H2088"]],[9,10,["H5971"]],[10,11,["H834"]],[11,13,["H5973"]],[13,15,["H3588"]],[15,17,["H1697"]],[17,20,["H3515"]],[20,21,["H4480"]],[21,25,["H3808"]],[25,26,["H3201"]],[26,28,["H6213"]],[28,31,["H905"]]]},{"k":2018,"v":[[0,1,["H8085"]],[1,2,["H6258"]],[2,5,["H6963"]],[5,10,["H3289"]],[10,12,["H430"]],[12,14,["H1961"]],[14,15,["H5973"]],[15,17,["H1961"]],[17,18,["H859"]],[18,21,["H5971"]],[21,23,["H4136","H430"]],[23,25,["H859"]],[25,27,["H935","(H853)"]],[27,29,["H1697"]],[29,30,["H413"]],[30,31,["H430"]]]},{"k":2019,"v":[[0,4,["H2094"]],[4,5,["(H853)"]],[5,6,["H2706"]],[6,8,["H8451"]],[8,11,["H3045"]],[11,12,["(H853)"]],[12,14,["H1870"]],[14,18,["H1980"]],[18,21,["H4640"]],[21,22,["H834"]],[22,25,["H6213"]]]},{"k":2020,"v":[[0,2,["H859"]],[2,4,["H2372"]],[4,7,["H4480","H3605"]],[7,9,["H5971"]],[9,10,["H2428"]],[10,11,["H376"]],[11,14,["H3373"]],[14,15,["H430"]],[15,16,["H376"]],[16,18,["H571"]],[18,19,["H8130"]],[19,20,["H1215"]],[20,22,["H7760"]],[22,24,["H5921"]],[24,28,["H8269"]],[28,30,["H505"]],[30,32,["H8269"]],[32,34,["H3967"]],[34,35,["H8269"]],[35,37,["H2572"]],[37,39,["H8269"]],[39,41,["H6235"]]]},{"k":2021,"v":[[0,4,["H8199","(H853)"]],[4,6,["H5971"]],[6,8,["H3605"]],[8,9,["H6256"]],[9,13,["H1961"]],[13,15,["H3605"]],[15,16,["H1419"]],[16,17,["H1697"]],[17,20,["H935"]],[20,21,["H413"]],[21,24,["H3605"]],[24,25,["H6996"]],[25,26,["H1697"]],[26,27,["H1992"]],[27,29,["H8199"]],[29,34,["H7043"]],[34,35,["H4480","H5921"]],[35,40,["H5375"]],[40,43,["H854"]],[43,44,[]]]},{"k":2022,"v":[[0,1,["H518"]],[1,4,["H6213","(H853)"]],[4,5,["H2088"]],[5,6,["H1697"]],[6,8,["H430"]],[8,9,["H6680"]],[9,16,["H3201"]],[16,18,["H5975"]],[18,20,["H3605"]],[20,21,["H2088"]],[21,22,["H5971"]],[22,24,["H1571"]],[24,25,["H935"]],[25,26,["H5921"]],[26,28,["H4725"]],[28,30,["H7965"]]]},{"k":2023,"v":[[0,2,["H4872"]],[2,3,["H8085"]],[3,6,["H6963"]],[6,11,["H2859"]],[11,13,["H6213"]],[13,14,["H3605"]],[14,15,["H834"]],[15,18,["H559"]]]},{"k":2024,"v":[[0,2,["H4872"]],[2,3,["H977"]],[3,4,["H2428"]],[4,5,["H376"]],[5,8,["H4480","H3605"]],[8,9,["H3478"]],[9,11,["H5414"]],[11,13,["H7218"]],[13,14,["H5921"]],[14,16,["H5971"]],[16,17,["H8269"]],[17,19,["H505"]],[19,20,["H8269"]],[20,22,["H3967"]],[22,23,["H8269"]],[23,25,["H2572"]],[25,27,["H8269"]],[27,29,["H6235"]]]},{"k":2025,"v":[[0,3,["H8199","(H853)"]],[3,5,["H5971"]],[5,7,["H3605"]],[7,8,["H6256"]],[8,10,["H7186","(H853)"]],[10,11,["H1697"]],[11,13,["H935"]],[13,14,["H413"]],[14,15,["H4872"]],[15,17,["H3605"]],[17,18,["H6996"]],[18,19,["H1697"]],[19,21,["H8199"]],[21,22,["H1992"]]]},{"k":2026,"v":[[0,2,["H4872"]],[2,3,["(H853)"]],[3,7,["H2859"]],[7,8,["H7971"]],[8,13,["H1980"]],[13,14,["H413"]],[14,17,["H776"]]]},{"k":2027,"v":[[0,3,["H7992"]],[3,4,["H2320"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,12,["H3318"]],[12,16,["H4480","H776"]],[16,18,["H4714"]],[18,20,["H2088"]],[20,21,["H3117"]],[21,22,["H935"]],[22,26,["H4057"]],[26,28,["H5514"]]]},{"k":2028,"v":[[0,4,["H5265"]],[4,6,["H4480","H7508"]],[6,9,["H935"]],[9,12,["H4057"]],[12,14,["H5514"]],[14,17,["H2583"]],[17,20,["H4057"]],[20,22,["H8033"]],[22,23,["H3478"]],[23,24,["H2583"]],[24,25,["H5048"]],[25,27,["H2022"]]]},{"k":2029,"v":[[0,2,["H4872"]],[2,4,["H5927"]],[4,5,["H413"]],[5,6,["H430"]],[6,9,["H3068"]],[9,10,["H7121"]],[10,11,["H413"]],[11,14,["H4480"]],[14,16,["H2022"]],[16,17,["H559"]],[17,18,["H3541"]],[18,21,["H559"]],[21,24,["H1004"]],[24,26,["H3290"]],[26,28,["H5046"]],[28,30,["H1121"]],[30,32,["H3478"]]]},{"k":2030,"v":[[0,1,["H859"]],[1,3,["H7200"]],[3,4,["H834"]],[4,6,["H6213"]],[6,9,["H4714"]],[9,13,["H5375"]],[13,15,["H5921"]],[15,16,["H5404"]],[16,17,["H3671"]],[17,19,["H935"]],[19,21,["H413"]],[21,22,[]]]},{"k":2031,"v":[[0,1,["H6258"]],[1,3,["H518"]],[3,9,["H8085","H8085","H6963"]],[9,11,["H8104","(H853)"]],[11,13,["H1285"]],[13,17,["H1961"]],[17,20,["H5459"]],[20,24,["H4480","H3605"]],[24,25,["H5971"]],[25,26,["H3588"]],[26,27,["H3605"]],[27,29,["H776"]],[29,31,[]]]},{"k":2032,"v":[[0,2,["H859"]],[2,4,["H1961"]],[4,8,["H4467"]],[8,10,["H3548"]],[10,13,["H6918"]],[13,14,["H1471"]],[14,15,["H428"]],[15,18,["H1697"]],[18,19,["H834"]],[19,22,["H1696"]],[22,23,["H413"]],[23,25,["H1121"]],[25,27,["H3478"]]]},{"k":2033,"v":[[0,2,["H4872"]],[2,3,["H935"]],[3,5,["H7121"]],[5,8,["H2205"]],[8,11,["H5971"]],[11,13,["H7760"]],[13,16,["H6440","(H853)"]],[16,17,["H3605"]],[17,18,["H428"]],[18,19,["H1697"]],[19,20,["H834"]],[20,22,["H3068"]],[22,23,["H6680"]],[23,24,[]]]},{"k":2034,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H6030"]],[5,6,["H3162"]],[6,8,["H559"]],[8,9,["H3605"]],[9,10,["H834"]],[10,12,["H3068"]],[12,14,["H1696"]],[14,17,["H6213"]],[17,19,["H4872"]],[19,20,["H7725","(H853)"]],[20,22,["H1697"]],[22,25,["H5971"]],[25,26,["H413"]],[26,28,["H3068"]]]},{"k":2035,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H2009"]],[7,8,["H595"]],[8,9,["H935"]],[9,10,["H413"]],[10,14,["H5645"]],[14,15,["H6051"]],[15,16,["H5668"]],[16,18,["H5971"]],[18,20,["H8085"]],[20,23,["H1696"]],[23,24,["H5973"]],[24,27,["H539"]],[27,30,["H5769"]],[30,32,["H4872"]],[32,33,["H5046","(H853)"]],[33,35,["H1697"]],[35,38,["H5971"]],[38,39,["H413"]],[39,41,["H3068"]]]},{"k":2036,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H1980"]],[7,8,["H413"]],[8,10,["H5971"]],[10,12,["H6942"]],[12,15,["H3117"]],[15,18,["H4279"]],[18,22,["H3526"]],[22,24,["H8071"]]]},{"k":2037,"v":[[0,2,["H1961"]],[2,3,["H3559"]],[3,6,["H7992"]],[6,7,["H3117"]],[7,8,["H3588"]],[8,10,["H7992"]],[10,11,["H3117"]],[11,13,["H3068"]],[13,16,["H3381"]],[16,19,["H5869"]],[19,21,["H3605"]],[21,23,["H5971"]],[23,24,["H5921"]],[24,25,["H2022"]],[25,26,["H5514"]]]},{"k":2038,"v":[[0,5,["H1379","(H853)"]],[5,8,["H5971"]],[8,10,["H5439"]],[10,11,["H559"]],[11,13,["H8104"]],[13,20,["H5927"]],[20,23,["H2022"]],[23,25,["H5060"]],[25,27,["H7097"]],[27,30,["H3605"]],[30,31,["H5060"]],[31,33,["H2022"]],[33,39,["H4191","H4191"]]]},{"k":2039,"v":[[0,3,["H3808"]],[3,5,["H3027"]],[5,6,["H5060"]],[6,8,["H3588"]],[8,13,["H5619","H5619"]],[13,14,["H176"]],[14,16,["H3384","H3384"]],[16,17,["H518"]],[17,20,["H929"]],[20,21,["H518"]],[21,22,["H376"]],[22,25,["H3808"]],[25,26,["H2421"]],[26,29,["H3104"]],[29,31,["H4900"]],[31,32,["H1992"]],[32,35,["H5927"]],[35,38,["H2022"]]]},{"k":2040,"v":[[0,2,["H4872"]],[2,4,["H3381"]],[4,5,["H4480"]],[5,7,["H2022"]],[7,8,["H413"]],[8,10,["H5971"]],[10,12,["H6942","(H853)"]],[12,14,["H5971"]],[14,17,["H3526"]],[17,19,["H8071"]]]},{"k":2041,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H1961"]],[7,8,["H3559"]],[8,11,["H7969"]],[11,12,["H3117"]],[12,13,["H5066"]],[13,14,["H408"]],[14,15,["H413"]],[15,17,["H802"]]]},{"k":2042,"v":[[0,5,["H1961"]],[5,8,["H7992"]],[8,9,["H3117"]],[9,12,["H1242"]],[12,15,["H1961"]],[15,16,["H6963"]],[16,18,["H1300"]],[18,21,["H3515"]],[21,22,["H6051"]],[22,23,["H5921"]],[23,25,["H2022"]],[25,28,["H6963"]],[28,31,["H7782"]],[31,32,["H3966"]],[32,33,["H2389"]],[33,36,["H3605"]],[36,38,["H5971"]],[38,39,["H834"]],[39,43,["H4264"]],[43,44,["H2729"]]]},{"k":2043,"v":[[0,2,["H4872"]],[2,4,["H3318","(H853)"]],[4,6,["H5971"]],[6,8,["H4480"]],[8,10,["H4264"]],[10,12,["H7125"]],[12,14,["H430"]],[14,17,["H3320"]],[17,21,["H8482"]],[21,24,["H2022"]]]},{"k":2044,"v":[[0,2,["H2022"]],[2,3,["H5514"]],[3,5,["H3605"]],[5,8,["H6225"]],[8,9,["H4480","H6440","H834"]],[9,11,["H3068"]],[11,12,["H3381"]],[12,13,["H5921"]],[13,16,["H784"]],[16,19,["H6227"]],[19,21,["H5927"]],[21,24,["H6227"]],[24,27,["H3536"]],[27,30,["H3605"]],[30,31,["H2022"]],[31,32,["H2729"]],[32,33,["H3966"]]]},{"k":2045,"v":[[0,2,["H1961"]],[2,4,["H6963"]],[4,7,["H7782"]],[7,9,["H1980"]],[9,14,["H2388","H3966"]],[14,15,["H4872"]],[15,16,["H1696"]],[16,18,["H430"]],[18,19,["H6030"]],[19,23,["H6963"]]]},{"k":2046,"v":[[0,3,["H3068"]],[3,5,["H3381"]],[5,6,["H5921"]],[6,7,["H2022"]],[7,8,["H5514"]],[8,9,["H413"]],[9,11,["H7218"]],[11,14,["H2022"]],[14,17,["H3068"]],[17,18,["H7121"]],[18,19,["H4872"]],[19,21,["H413"]],[21,23,["H7218"]],[23,26,["H2022"]],[26,28,["H4872"]],[28,30,["H5927"]]]},{"k":2047,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H3381"]],[8,9,["H5749"]],[9,11,["H5971"]],[11,12,["H6435"]],[12,15,["H2040"]],[15,16,["H413"]],[16,18,["H3068"]],[18,20,["H7200"]],[20,22,["H7227"]],[22,23,["H4480"]],[23,25,["H5307"]]]},{"k":2048,"v":[[0,4,["H3548"]],[4,5,["H1571"]],[5,8,["H5066"]],[8,9,["H413"]],[9,11,["H3068"]],[11,13,["H6942"]],[13,14,["H6435"]],[14,16,["H3068"]],[16,18,["H6555"]],[18,20,[]]]},{"k":2049,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H5971"]],[8,9,["H3808","H3201"]],[9,11,["H5927"]],[11,12,["H413"]],[12,13,["H2022"]],[13,14,["H5514"]],[14,15,["H3588"]],[15,16,["H859"]],[16,17,["H5749"]],[17,19,["H559"]],[19,21,["H1379","(H853)"]],[21,24,["H2022"]],[24,26,["H6942"]],[26,27,[]]]},{"k":2050,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H1980"]],[7,10,["H3381"]],[10,15,["H5927"]],[15,16,["H859"]],[16,18,["H175"]],[18,19,["H5973"]],[19,23,["H408"]],[23,25,["H3548"]],[25,28,["H5971"]],[28,30,["H2040"]],[30,33,["H5927"]],[33,34,["H413"]],[34,36,["H3068"]],[36,37,["H6435"]],[37,40,["H6555"]],[40,42,[]]]},{"k":2051,"v":[[0,2,["H4872"]],[2,4,["H3381"]],[4,5,["H413"]],[5,7,["H5971"]],[7,9,["H559"]],[9,10,["H413"]],[10,11,[]]]},{"k":2052,"v":[[0,2,["H430"]],[2,3,["H1696","(H853)"]],[3,4,["H3605"]],[4,5,["H428"]],[5,6,["H1697"]],[6,7,["H559"]]]},{"k":2053,"v":[[0,1,["H595"]],[1,4,["H3068"]],[4,6,["H430"]],[6,7,["H834"]],[7,11,["H3318"]],[11,14,["H4480","H776"]],[14,16,["H4714"]],[16,20,["H4480","H1004"]],[20,22,["H5650"]]]},{"k":2054,"v":[[0,3,["H1961"]],[3,4,["H3808"]],[4,5,["H312"]],[5,6,["H430"]],[6,7,["H5921","H6440"]],[7,8,[]]]},{"k":2055,"v":[[0,3,["H3808"]],[3,4,["H6213"]],[4,9,["H6459"]],[9,11,["H3605"]],[11,12,["H8544"]],[12,16,["H834"]],[16,19,["H8064"]],[19,20,["H4480","H4605"]],[20,22,["H834"]],[22,26,["H776"]],[26,27,["H4480","H8478"]],[27,29,["H834"]],[29,33,["H4325"]],[33,34,["H4480","H8478"]],[34,36,["H776"]]]},{"k":2056,"v":[[0,3,["H3808"]],[3,6,["H7812"]],[6,9,["H3808"]],[9,10,["H5647"]],[10,12,["H3588"]],[12,13,["H595"]],[13,15,["H3068"]],[15,17,["H430"]],[17,20,["H7067"]],[20,21,["H410"]],[21,22,["H6485"]],[22,24,["H5771"]],[24,27,["H1"]],[27,28,["H5921"]],[28,30,["H1121"]],[30,31,["H5921"]],[31,33,["H8029"]],[33,35,["H7256"]],[35,40,["H8130"]],[40,41,[]]]},{"k":2057,"v":[[0,2,["H6213"]],[2,3,["H2617"]],[3,5,["H505"]],[5,9,["H157"]],[9,12,["H8104"]],[12,14,["H4687"]]]},{"k":2058,"v":[[0,3,["H3808"]],[3,4,["H5375","(H853)"]],[4,6,["H8034"]],[6,9,["H3068"]],[9,11,["H430"]],[11,13,["H7723"]],[13,14,["H3588"]],[14,16,["H3068"]],[16,18,["H3808"]],[18,21,["H5352","(H853)"]],[21,22,["H834"]],[22,23,["H5375","(H853)"]],[23,25,["H8034"]],[25,27,["H7723"]]]},{"k":2059,"v":[[0,1,["H2142"]],[1,2,["(H853)"]],[2,3,["H7676"]],[3,4,["H3117"]],[4,8,["H6942"]]]},{"k":2060,"v":[[0,1,["H8337"]],[1,2,["H3117"]],[2,5,["H5647"]],[5,7,["H6213"]],[7,8,["H3605"]],[8,10,["H4399"]]]},{"k":2061,"v":[[0,3,["H7637"]],[3,4,["H3117"]],[4,7,["H7676"]],[7,10,["H3068"]],[10,12,["H430"]],[12,17,["H3808"]],[17,18,["H6213"]],[18,19,["H3605"]],[19,20,["H4399"]],[20,21,["H859"]],[21,24,["H1121"]],[24,27,["H1323"]],[27,29,["H5650"]],[29,32,["H519"]],[32,35,["H929"]],[35,38,["H1616"]],[38,39,["H834"]],[39,43,["H8179"]]]},{"k":2062,"v":[[0,1,["H3588"]],[1,3,["H8337"]],[3,4,["H3117"]],[4,6,["H3068"]],[6,7,["H6213","(H853)"]],[7,8,["H8064"]],[8,10,["H776","(H853)"]],[10,12,["H3220"]],[12,14,["H3605"]],[14,15,["H834"]],[15,20,["H5117"]],[20,22,["H7637"]],[22,23,["H3117"]],[23,24,["H5921","H3651"]],[24,26,["H3068"]],[26,27,["H1288"]],[27,28,["(H853)"]],[28,29,["H7676"]],[29,30,["H3117"]],[30,32,["H6942"]],[32,33,[]]]},{"k":2063,"v":[[0,1,["H3513","(H853)"]],[1,3,["H1"]],[3,6,["H517"]],[6,7,["H4616"]],[7,9,["H3117"]],[9,12,["H748"]],[12,13,["H5921"]],[13,15,["H127"]],[15,16,["H834"]],[16,18,["H3068"]],[18,20,["H430"]],[20,21,["H5414"]],[21,22,[]]]},{"k":2064,"v":[[0,3,["H3808"]],[3,4,["H7523"]]]},{"k":2065,"v":[[0,3,["H3808"]],[3,5,["H5003"]]]},{"k":2066,"v":[[0,3,["H3808"]],[3,4,["H1589"]]]},{"k":2067,"v":[[0,3,["H3808"]],[3,4,["H6030"]],[4,5,["H8267"]],[5,6,["H5707"]],[6,9,["H7453"]]]},{"k":2068,"v":[[0,3,["H3808"]],[3,4,["H2530"]],[4,6,["H7453"]],[6,7,["H1004"]],[7,10,["H3808"]],[10,11,["H2530"]],[11,13,["H7453"]],[13,14,["H802"]],[14,17,["H5650"]],[17,20,["H519"]],[20,23,["H7794"]],[23,26,["H2543"]],[26,29,["H3605"]],[29,30,["H834"]],[30,33,["H7453"]]]},{"k":2069,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H7200","(H853)"]],[5,7,["H6963"]],[7,10,["H3940"]],[10,13,["H6963"]],[13,16,["H7782"]],[16,19,["H2022"]],[19,20,["H6226"]],[20,24,["H5971"]],[24,25,["H7200"]],[25,28,["H5128"]],[28,30,["H5975"]],[30,32,["H4480","H7350"]]]},{"k":2070,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H4872"]],[5,6,["H1696"]],[6,7,["H859"]],[7,8,["H5973"]],[8,13,["H8085"]],[13,16,["H408"]],[16,17,["H430"]],[17,18,["H1696"]],[18,19,["H5973"]],[19,21,["H6435"]],[21,23,["H4191"]]]},{"k":2071,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H3372"]],[7,8,["H408"]],[8,9,["H3588"]],[9,10,["H430"]],[10,12,["H935"]],[12,13,["H5668"]],[13,14,["H5254"]],[14,17,["H5668"]],[17,19,["H3374"]],[19,21,["H1961"]],[21,22,["H5921"]],[22,24,["H6440"]],[24,27,["H2398"]],[27,28,["H1115"]]]},{"k":2072,"v":[[0,3,["H5971"]],[3,4,["H5975"]],[4,6,["H4480","H7350"]],[6,8,["H4872"]],[8,10,["H5066"]],[10,11,["H413"]],[11,14,["H6205"]],[14,15,["H834","H8033"]],[15,16,["H430"]],[16,17,[]]]},{"k":2073,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H3541"]],[7,10,["H559"]],[10,11,["H413"]],[11,13,["H1121"]],[13,15,["H3478"]],[15,16,["H859"]],[16,18,["H7200"]],[18,19,["H3588"]],[19,22,["H1696"]],[22,23,["H5973"]],[23,25,["H4480"]],[25,26,["H8064"]]]},{"k":2074,"v":[[0,3,["H3808"]],[3,4,["H6213"]],[4,5,["H854"]],[5,7,["H430"]],[7,9,["H3701"]],[9,10,["H3808"]],[10,13,["H6213"]],[13,16,["H430"]],[16,18,["H2091"]]]},{"k":2075,"v":[[0,2,["H4196"]],[2,4,["H127"]],[4,7,["H6213"]],[7,12,["H2076"]],[12,13,["H5921","(H853)"]],[13,16,["H5930"]],[16,20,["H8002","(H853)"]],[20,22,["H6629"]],[22,25,["H1241"]],[25,27,["H3605"]],[27,28,["H4725"]],[28,29,["H834"]],[29,31,["H2142","(H853)"]],[31,33,["H8034"]],[33,36,["H935"]],[36,37,["H413"]],[37,42,["H1288"]],[42,43,[]]]},{"k":2076,"v":[[0,2,["H518"]],[2,5,["H6213"]],[5,8,["H4196"]],[8,10,["H68"]],[10,13,["H3808"]],[13,14,["H1129"]],[14,18,["H1496"]],[18,19,["H3588"]],[19,23,["H5130"]],[23,25,["H2719"]],[25,26,["H5921"]],[26,30,["H2490"]],[30,31,[]]]},{"k":2077,"v":[[0,1,["H3808"]],[1,5,["H5927"]],[5,7,["H4609"]],[7,8,["H5921"]],[8,10,["H4196"]],[10,11,["H834"]],[11,13,["H6172"]],[13,15,["H3808"]],[15,16,["H1540"]],[16,17,["H5921"]]]},{"k":2078,"v":[[0,2,["H428"]],[2,5,["H4941"]],[5,6,["H834"]],[6,9,["H7760"]],[9,10,["H6440"]],[10,11,[]]]},{"k":2079,"v":[[0,1,["H3588"]],[1,3,["H7069"]],[3,5,["H5680"]],[5,6,["H5650"]],[6,7,["H8337"]],[7,8,["H8141"]],[8,11,["H5647"]],[11,15,["H7637"]],[15,19,["H3318"]],[19,20,["H2670"]],[20,22,["H2600"]]]},{"k":2080,"v":[[0,1,["H518"]],[1,4,["H935"]],[4,6,["H1610"]],[6,10,["H3318"]],[10,12,["H1610"]],[12,13,["H518"]],[13,14,["H1931"]],[14,16,["H1167","H802"]],[16,19,["H802"]],[19,22,["H3318"]],[22,23,["H5973"]],[23,24,[]]]},{"k":2081,"v":[[0,1,["H518"]],[1,3,["H113"]],[3,5,["H5414"]],[5,8,["H802"]],[8,12,["H3205"]],[12,14,["H1121"]],[14,15,["H176"]],[15,16,["H1323"]],[16,18,["H802"]],[18,21,["H3206"]],[21,23,["H1961"]],[23,25,["H113"]],[25,27,["H1931"]],[27,30,["H3318"]],[30,32,["H1610"]]]},{"k":2082,"v":[[0,2,["H518"]],[2,4,["H5650"]],[4,7,["H559","H559"]],[7,9,["H157","(H853)"]],[9,11,["H113","(H853)"]],[11,13,["H802"]],[13,16,["H1121"]],[16,19,["H3808"]],[19,21,["H3318"]],[21,22,["H2670"]]]},{"k":2083,"v":[[0,3,["H113"]],[3,5,["H5066"]],[5,7,["H413"]],[7,9,["H430"]],[9,13,["H5066"]],[13,15,["H413"]],[15,17,["H1817"]],[17,18,["H176"]],[18,19,["H413"]],[19,22,["H4201"]],[22,25,["H113"]],[25,30,["H7527","(H853)","H241"]],[30,33,["H4836"]],[33,37,["H5647"]],[37,40,["H5769"]]]},{"k":2084,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H4376","(H853)"]],[5,7,["H1323"]],[7,11,["H519"]],[11,14,["H3808"]],[14,16,["H3318"]],[16,19,["H5650"]],[19,20,["H3318"]]]},{"k":2085,"v":[[0,1,["H518"]],[1,4,["H7451","H5869"]],[4,6,["H113"]],[6,7,["H834"]],[7,9,["(H3808)","H3259"]],[9,19,["H6299"]],[19,21,["H4376"]],[21,25,["H5237"]],[25,26,["H5971"]],[26,30,["H3808"]],[30,31,["H4910"]],[31,36,["H898"]],[36,38,[]]]},{"k":2086,"v":[[0,2,["H518"]],[2,5,["H3259"]],[5,9,["H1121"]],[9,12,["H6213"]],[12,17,["H4941"]],[17,19,["H1323"]]]},{"k":2087,"v":[[0,1,["H518"]],[1,3,["H3947"]],[3,5,["H312"]],[5,8,["H7607"]],[8,10,["H3682"]],[10,15,["H5772"]],[15,18,["H3808"]],[18,19,["H1639"]]]},{"k":2088,"v":[[0,2,["H518"]],[2,4,["H6213"]],[4,5,["H3808"]],[5,6,["H428"]],[6,7,["H7969"]],[7,14,["H3318"]],[14,15,["H2600"]],[15,16,["H369"]],[16,17,["H3701"]]]},{"k":2089,"v":[[0,3,["H5221"]],[3,5,["H376"]],[5,9,["H4191"]],[9,15,["H4191","H4191"]]]},{"k":2090,"v":[[0,2,["H834"]],[2,8,["H6658","H3808"]],[8,10,["H430"]],[10,11,["H579"]],[11,15,["H3027"]],[15,19,["H7760"]],[19,22,["H4725"]],[22,23,["H834","H8033"]],[23,26,["H5127"]]]},{"k":2091,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,6,["H2102"]],[6,7,["H5921"]],[7,9,["H7453"]],[9,11,["H2026"]],[11,14,["H6195"]],[14,17,["H3947"]],[17,19,["H4480","H5973"]],[19,21,["H4196"]],[21,25,["H4191"]]]},{"k":2092,"v":[[0,4,["H5221"]],[4,6,["H1"]],[6,9,["H517"]],[9,15,["H4191","H4191"]]]},{"k":2093,"v":[[0,4,["H1589"]],[4,6,["H376"]],[6,8,["H4376"]],[8,14,["H4672"]],[14,17,["H3027"]],[17,24,["H4191","H4191"]]]},{"k":2094,"v":[[0,4,["H7043"]],[4,6,["H1"]],[6,9,["H517"]],[9,15,["H4191","H4191"]]]},{"k":2095,"v":[[0,2,["H3588"]],[2,3,["H376"]],[3,5,["H7378"]],[5,7,["H376"]],[7,8,["H5221","(H853)"]],[8,9,["H7453"]],[9,12,["H68"]],[12,13,["H176"]],[13,16,["H106"]],[16,19,["H4191"]],[19,20,["H3808"]],[20,22,["H5307"]],[22,24,["H4904"]]]},{"k":2096,"v":[[0,1,["H518"]],[1,4,["H6965"]],[4,6,["H1980"]],[6,7,["H2351"]],[7,8,["H5921"]],[8,10,["H4938"]],[10,15,["H5221"]],[15,18,["H5352"]],[18,19,["H7535"]],[19,22,["H5414"]],[22,28,["H7674"]],[28,36,["H7495","H7495"]]]},{"k":2097,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H5221","(H853)"]],[5,7,["H5650"]],[7,8,["H176","(H853)"]],[8,10,["H519"]],[10,13,["H7626"]],[13,16,["H4191"]],[16,17,["H8478"]],[17,19,["H3027"]],[19,24,["H5358","H5358"]]]},{"k":2098,"v":[[0,1,["H389"]],[1,2,["H518"]],[2,4,["H5975"]],[4,6,["H3117"]],[6,7,["H176"]],[7,8,["H3117"]],[8,11,["H3808"]],[11,13,["H5358"]],[13,14,["H3588"]],[14,15,["H1931"]],[15,18,["H3701"]]]},{"k":2099,"v":[[0,1,["H3588"]],[1,2,["H376"]],[2,3,["H5327"]],[3,5,["H5062"]],[5,7,["H802"]],[7,9,["H2030"]],[9,13,["H3206"]],[13,14,["H3318"]],[14,19,["H3808"]],[19,20,["H611"]],[20,21,["H1961"]],[21,26,["H6064","H6064"]],[26,28,["H834"]],[28,30,["H802"]],[30,31,["H1167"]],[31,33,["H7896"]],[33,34,["H5921"]],[34,39,["H5414"]],[39,42,["H6414"]],[42,43,[]]]},{"k":2100,"v":[[0,2,["H518"]],[2,4,["H611"]],[4,5,["H1961"]],[5,9,["H5414"]],[9,10,["H5315"]],[10,11,["H8478"]],[11,12,["H5315"]]]},{"k":2101,"v":[[0,1,["H5869"]],[1,2,["H8478"]],[2,3,["H5869"]],[3,4,["H8127"]],[4,5,["H8478"]],[5,6,["H8127"]],[6,7,["H3027"]],[7,8,["H8478"]],[8,9,["H3027"]],[9,10,["H7272"]],[10,11,["H8478"]],[11,12,["H7272"]]]},{"k":2102,"v":[[0,1,["H3555"]],[1,2,["H8478"]],[2,3,["H3555"]],[3,4,["H6482"]],[4,5,["H8478"]],[5,6,["H6482"]],[6,7,["H2250"]],[7,8,["H8478"]],[8,9,["H2250"]]]},{"k":2103,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H5221","(H853)"]],[5,7,["H5869"]],[7,10,["H5650"]],[10,11,["H176","(H853)"]],[11,13,["H5869"]],[13,16,["H519"]],[16,19,["H7843"]],[19,24,["H7971"]],[24,25,["H2670"]],[25,29,["H8478","H5869"]]]},{"k":2104,"v":[[0,2,["H518"]],[2,5,["H5307"]],[5,7,["H5650"]],[7,8,["H8127"]],[8,9,["H176"]],[9,11,["H519"]],[11,12,["H8127"]],[12,17,["H7971"]],[17,18,["H2670"]],[18,22,["H8478","H8127"]]]},{"k":2105,"v":[[0,1,["H3588"]],[1,3,["H7794"]],[3,4,["H5055","(H853)"]],[4,6,["H376"]],[6,7,["H176","(H853)"]],[7,9,["H802"]],[9,12,["H4191"]],[12,15,["H7794"]],[15,19,["H5619","H5619"]],[19,20,["(H853)"]],[20,22,["H1320"]],[22,24,["H3808"]],[24,26,["H398"]],[26,29,["H1167"]],[29,32,["H7794"]],[32,35,["H5355"]]]},{"k":2106,"v":[[0,2,["H518"]],[2,4,["H7794"]],[4,11,["H5056"]],[11,14,["H4480","H8543","H8032"]],[14,19,["H5749"]],[19,22,["H1167"]],[22,26,["H3808"]],[26,29,["H8104"]],[29,34,["H4191"]],[34,36,["H376"]],[36,37,["H176"]],[37,39,["H802"]],[39,41,["H7794"]],[41,44,["H5619"]],[44,47,["H1167"]],[47,48,["H1571"]],[48,53,["H4191"]]]},{"k":2107,"v":[[0,1,["H518"]],[1,4,["H7896"]],[4,5,["H5921"]],[5,10,["H3724"]],[10,14,["H5414"]],[14,17,["H6306"]],[17,20,["H5315"]],[20,21,["H3605","H834"]],[21,23,["H7896"]],[23,24,["H5921"]],[24,25,[]]]},{"k":2108,"v":[[0,1,["H176"]],[1,4,["H5055"]],[4,6,["H1121"]],[6,7,["H176"]],[7,9,["H5055"]],[9,11,["H1323"]],[11,14,["H2088"]],[14,15,["H4941"]],[15,19,["H6213"]],[19,21,[]]]},{"k":2109,"v":[[0,1,["H518"]],[1,3,["H7794"]],[3,5,["H5055"]],[5,7,["H5650"]],[7,8,["H176"]],[8,10,["H519"]],[10,13,["H5414"]],[13,16,["H113"]],[16,17,["H7970"]],[17,18,["H8255"]],[18,20,["H3701"]],[20,23,["H7794"]],[23,26,["H5619"]]]},{"k":2110,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,6,["H6605"]],[6,8,["H953"]],[8,9,["H176"]],[9,10,["H3588"]],[10,12,["H376"]],[12,14,["H3738"]],[14,16,["H953"]],[16,18,["H3808"]],[18,19,["H3680"]],[19,23,["H7794"]],[23,24,["H176"]],[24,26,["H2543"]],[26,27,["H5307"]],[27,28,["H8033"]]]},{"k":2111,"v":[[0,2,["H1167"]],[2,5,["H953"]],[5,9,["H7999"]],[9,11,["H7725"]],[11,12,["H3701"]],[12,15,["H1167"]],[15,20,["H4191"]],[20,23,["H1961"]],[23,24,[]]]},{"k":2112,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H7794"]],[5,6,["H5062","(H853)"]],[6,7,["H7794","H7453"]],[7,10,["H4191"]],[10,14,["H4376","(H853)"]],[14,16,["H2416"]],[16,17,["H7794"]],[17,19,["H2673","(H853)"]],[19,21,["H3701"]],[21,24,["(H853)"]],[24,26,["H4191"]],[26,28,["H1571"]],[28,31,["H2673"]]]},{"k":2113,"v":[[0,1,["H176"]],[1,5,["H3045"]],[5,6,["H3588"]],[6,8,["H7794"]],[8,12,["H5056"]],[12,15,["H4480","H8543","H8032"]],[15,18,["H1167"]],[18,20,["H3808"]],[20,23,["H8104"]],[23,27,["H7999","H7999"]],[27,28,["H7794"]],[28,29,["H8478"]],[29,30,["H7794"]],[30,33,["H4191"]],[33,35,["H1961"]],[35,37,[]]]},{"k":2114,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,5,["H1589"]],[5,7,["H7794"]],[7,8,["H176"]],[8,10,["H7716"]],[10,12,["H2873"]],[12,14,["H176"]],[14,15,["H4376"]],[15,19,["H7999"]],[19,20,["H2568"]],[20,21,["H1241"]],[21,22,["H8478"]],[22,24,["H7794"]],[24,26,["H702"]],[26,27,["H6629"]],[27,28,["H8478"]],[28,30,["H7716"]]]},{"k":2115,"v":[[0,1,["H518"]],[1,3,["H1590"]],[3,5,["H4672"]],[5,7,["H4290"]],[7,10,["H5221"]],[10,13,["H4191"]],[13,16,["H369"]],[16,17,["H1818"]],[17,21,[]]]},{"k":2116,"v":[[0,1,["H518"]],[1,3,["H8121"]],[3,5,["H2224"]],[5,6,["H5921"]],[6,11,["H1818"]],[11,20,["H7999","H7999"]],[20,21,["H518"]],[21,24,["H369"]],[24,29,["H4376"]],[29,32,["H1591"]]]},{"k":2117,"v":[[0,1,["H518"]],[1,3,["H1591"]],[3,6,["H4672","H4672"]],[6,9,["H3027"]],[9,10,["H2416"]],[10,14,["H4480","H7794"]],[14,15,["H5704"]],[15,16,["H2543"]],[16,17,["H5704"]],[17,18,["H7716"]],[18,21,["H7999"]],[21,22,["H8147"]]]},{"k":2118,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,7,["H7704"]],[7,8,["H176"]],[8,9,["H3754"]],[9,12,["H1197"]],[12,16,["H7971","(H853)"]],[16,18,["H1165"]],[18,21,["H1197"]],[21,24,["H312"]],[24,25,["H7704"]],[25,28,["H4315"]],[28,32,["H7704"]],[32,36,["H4315"]],[36,40,["H3754"]],[40,44,["H7999"]]]},{"k":2119,"v":[[0,1,["H3588"]],[1,2,["H784"]],[2,4,["H3318"]],[4,6,["H4672"]],[6,8,["H6975"]],[8,14,["H1430"]],[14,15,["H176"]],[15,18,["H7054"]],[18,19,["H176"]],[19,21,["H7704"]],[21,23,["H398"]],[23,27,["H1197","(H853)"]],[27,29,["H1200"]],[29,33,["H7999","H7999"]]]},{"k":2120,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,5,["H5414"]],[5,6,["H413"]],[6,8,["H7453"]],[8,9,["H3701"]],[9,10,["H176"]],[10,11,["H3627"]],[11,13,["H8104"]],[13,17,["H1589"]],[17,22,["H4480","H1004","H376"]],[22,23,["H518"]],[23,25,["H1590"]],[25,27,["H4672"]],[27,30,["H7999"]],[30,31,["H8147"]]]},{"k":2121,"v":[[0,1,["H518"]],[1,3,["H1590"]],[3,5,["H3808"]],[5,6,["H4672"]],[6,9,["H1167"]],[9,12,["H1004"]],[12,15,["H7126"]],[15,16,["H413"]],[16,18,["H430"]],[18,21,["H518","H3808"]],[21,24,["H7971"]],[24,26,["H3027"]],[26,29,["H7453"]],[29,30,["H4399"]]]},{"k":2122,"v":[[0,1,["H5921"]],[1,2,["H3605"]],[2,3,["H1697"]],[3,5,["H6588"]],[5,9,["H5921"]],[9,10,["H7794"]],[10,11,["H5921"]],[11,12,["H2543"]],[12,13,["H5921"]],[13,14,["H7716"]],[14,15,["H5921"]],[15,16,["H8008"]],[16,18,["H5921"]],[18,20,["H3605"]],[20,23,["H9"]],[23,24,["H834"]],[24,26,["H559"]],[26,29,["H3588","H1931","H2088"]],[29,31,["H1697"]],[31,34,["H8147"]],[34,36,["H935"]],[36,37,["H5704"]],[37,39,["H430"]],[39,41,["H834"]],[41,43,["H430"]],[43,45,["H7561"]],[45,48,["H7999"]],[48,49,["H8147"]],[49,52,["H7453"]]]},{"k":2123,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,4,["H5414"]],[4,5,["H413"]],[5,7,["H7453"]],[7,9,["H2543"]],[9,10,["H176"]],[10,12,["H7794"]],[12,13,["H176"]],[13,15,["H7716"]],[15,17,["H3605"]],[17,18,["H929"]],[18,20,["H8104"]],[20,23,["H4191"]],[23,24,["H176"]],[24,26,["H7665"]],[26,27,["H176"]],[27,29,["H7617"]],[29,31,["H369"]],[31,32,["H7200"]],[32,33,[]]]},{"k":2124,"v":[[0,4,["H7621"]],[4,7,["H3068"]],[7,8,["H1961"]],[8,9,["H996"]],[9,11,["H8147"]],[11,12,["H518"]],[12,15,["H3808"]],[15,16,["H7971"]],[16,18,["H3027"]],[18,21,["H7453"]],[21,22,["H4399"]],[22,25,["H1167"]],[25,29,["H3947"]],[29,34,["H3808"]],[34,37,["H7999"]]]},{"k":2125,"v":[[0,2,["H518"]],[2,5,["H1589","H1589"]],[5,6,["H4480","H5973"]],[6,11,["H7999"]],[11,14,["H1167"]],[14,15,[]]]},{"k":2126,"v":[[0,1,["H518"]],[1,6,["H2963","H2963"]],[6,10,["H935"]],[10,13,["H5707"]],[13,17,["H3808"]],[17,19,["H7999"]],[19,23,["H2966"]]]},{"k":2127,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H7592"]],[5,7,["H4480","H5973"]],[7,9,["H7453"]],[9,13,["H7665"]],[13,14,["H176"]],[14,15,["H4191"]],[15,17,["H1167"]],[17,20,["H369"]],[20,21,["H5973"]],[21,28,["H7999","H7999"]]]},{"k":2128,"v":[[0,2,["H518"]],[2,4,["H1167"]],[4,7,["H5973"]],[7,11,["H3808"]],[11,14,["H7999"]],[14,15,["H518"]],[15,16,["H1931"]],[16,19,["H7916"]],[19,22,["H935"]],[22,25,["H7939"]]]},{"k":2129,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H6601"]],[5,7,["H1330"]],[7,8,["H834"]],[8,10,["H3808"]],[10,11,["H781"]],[11,13,["H7901"]],[13,14,["H5973"]],[14,19,["H4117","H4117"]],[19,24,["H802"]]]},{"k":2130,"v":[[0,1,["H518"]],[1,3,["H1"]],[3,5,["H3985","H3985"]],[5,7,["H5414"]],[7,13,["H8254"]],[13,14,["H3701"]],[14,18,["H4119"]],[18,20,["H1330"]]]},{"k":2131,"v":[[0,3,["H3808"]],[3,8,["H2421","H3784"]]]},{"k":2132,"v":[[0,1,["H3605"]],[1,2,["H7901"]],[2,3,["H5973"]],[3,5,["H929"]],[5,11,["H4191","H4191"]]]},{"k":2133,"v":[[0,3,["H2076"]],[3,6,["H430"]],[6,7,["H1115"]],[7,10,["H3068"]],[10,11,["H905"]],[11,16,["H2763"]]]},{"k":2134,"v":[[0,3,["H3808"]],[3,4,["H3238"]],[4,6,["H1616"]],[6,7,["H3808"]],[7,8,["H3905"]],[8,10,["H3588"]],[10,12,["H1961"]],[12,13,["H1616"]],[13,16,["H776"]],[16,18,["H4714"]]]},{"k":2135,"v":[[0,3,["H3808"]],[3,4,["H6031"]],[4,5,["H3605"]],[5,6,["H490"]],[6,9,["H3490"]]]},{"k":2136,"v":[[0,1,["H518"]],[1,7,["H6031","H6031","(H853)"]],[7,8,["H3588"]],[8,12,["H6817","H6817"]],[12,13,["H413"]],[13,18,["H8085","H8085"]],[18,20,["H6818"]]]},{"k":2137,"v":[[0,3,["H639"]],[3,6,["H2734"]],[6,10,["H2026"]],[10,14,["H2719"]],[14,17,["H802"]],[17,19,["H1961"]],[19,20,["H490"]],[20,23,["H1121"]],[23,24,["H3490"]]]},{"k":2138,"v":[[0,1,["H518"]],[1,3,["H3867"]],[3,4,["H3701"]],[4,7,["(H853)"]],[7,9,["H5971"]],[9,11,["(H853)"]],[11,12,["H6041"]],[12,13,["H5973"]],[13,17,["H3808"]],[17,18,["H1961"]],[18,23,["H5383"]],[23,24,["H3808"]],[24,27,["H7760"]],[27,28,["H5921"]],[28,30,["H5392"]]]},{"k":2139,"v":[[0,1,["H518"]],[1,10,["H2254","H2254","H7453","H8008"]],[10,13,["H7725"]],[13,18,["H5704"]],[18,20,["H8121"]],[20,22,["H935"]]]},{"k":2140,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,5,["H3682"]],[5,6,["H905"]],[6,7,["H1931"]],[7,10,["H8071"]],[10,13,["H5785"]],[13,14,["H4100"]],[14,17,["H7901"]],[17,23,["H1961"]],[23,24,["H3588"]],[24,26,["H6817"]],[26,27,["H413"]],[27,32,["H8085"]],[32,33,["H3588"]],[33,34,["H589"]],[34,36,["H2587"]]]},{"k":2141,"v":[[0,3,["H3808"]],[3,4,["H7043"]],[4,6,["H430"]],[6,7,["H3808"]],[7,8,["H779"]],[8,10,["H5387"]],[10,13,["H5971"]]]},{"k":2142,"v":[[0,3,["H3808"]],[3,4,["H309"]],[4,12,["H4395"]],[12,16,["H1831"]],[16,18,["H1060"]],[18,21,["H1121"]],[21,24,["H5414"]],[24,26,[]]]},{"k":2143,"v":[[0,1,["H3651"]],[1,4,["H6213"]],[4,7,["H7794"]],[7,11,["H6629"]],[11,12,["H7651"]],[12,13,["H3117"]],[13,16,["H1961"]],[16,17,["H5973"]],[17,19,["H517"]],[19,22,["H8066"]],[22,23,["H3117"]],[23,26,["H5414"]],[26,28,[]]]},{"k":2144,"v":[[0,4,["H1961"]],[4,5,["H6944"]],[5,6,["H376"]],[6,9,["H3808"]],[9,12,["H398"]],[12,14,["H1320"]],[14,19,["H2966"]],[19,22,["H7704"]],[22,25,["H7993"]],[25,29,["H3611"]]]},{"k":2145,"v":[[0,3,["H3808"]],[3,4,["H5375"]],[4,6,["H7723"]],[6,7,["H8088"]],[7,8,["H7896"]],[8,9,["H408"]],[9,11,["H3027"]],[11,12,["H5973"]],[12,14,["H7563"]],[14,16,["H1961"]],[16,18,["H2555"]],[18,19,["H5707"]]]},{"k":2146,"v":[[0,3,["H3808"]],[3,4,["H1961","H310"]],[4,6,["H7227"]],[6,9,["H7451"]],[9,10,["H3808"]],[10,13,["H6030"]],[13,14,["H5921"]],[14,16,["H7379"]],[16,18,["H5186"]],[18,19,["H310"]],[19,20,["H7227"]],[20,22,["H5186"]],[22,23,[]]]},{"k":2147,"v":[[0,1,["H3808"]],[1,4,["H1921"]],[4,7,["H1800"]],[7,10,["H7379"]]]},{"k":2148,"v":[[0,1,["H3588"]],[1,3,["H6293"]],[3,5,["H341"]],[5,6,["H7794"]],[6,7,["H176"]],[7,9,["H2543"]],[9,11,["H8582"]],[11,20,["H7725","H7725"]]]},{"k":2149,"v":[[0,1,["H3588"]],[1,3,["H7200"]],[3,5,["H2543"]],[5,9,["H8130"]],[9,11,["H7257"]],[11,12,["H8478"]],[12,14,["H4853"]],[14,17,["H2308"]],[17,19,["H4480","H5800"]],[19,24,["H5800","H5800"]],[24,25,["H5973"]],[25,26,[]]]},{"k":2150,"v":[[0,3,["H3808"]],[3,4,["H5186"]],[4,6,["H4941"]],[6,9,["H34"]],[9,12,["H7379"]]]},{"k":2151,"v":[[0,3,["H7368"]],[3,7,["H4480","H1697","H8267"]],[7,10,["H5355"]],[10,12,["H6662"]],[12,13,["H2026"]],[13,15,["H408"]],[15,16,["H3588"]],[16,19,["H3808"]],[19,20,["H6663"]],[20,22,["H7563"]]]},{"k":2152,"v":[[0,4,["H3947"]],[4,5,["H3808"]],[5,6,["H7810"]],[6,7,["H3588"]],[7,9,["H7810"]],[9,10,["H5786"]],[10,12,["H6493"]],[12,14,["H5557"]],[14,16,["H1697"]],[16,19,["H6662"]]]},{"k":2153,"v":[[0,4,["H3808"]],[4,5,["H3905"]],[5,7,["H1616"]],[7,9,["H859"]],[9,10,["H3045","(H853)"]],[10,12,["H5315"]],[12,15,["H1616"]],[15,16,["H3588"]],[16,18,["H1961"]],[18,19,["H1616"]],[19,22,["H776"]],[22,24,["H4714"]]]},{"k":2154,"v":[[0,2,["H8337"]],[2,3,["H8141"]],[3,6,["H2232","(H853)"]],[6,8,["H776"]],[8,12,["H622","(H853)"]],[12,14,["H8393"]],[14,15,[]]]},{"k":2155,"v":[[0,3,["H7637"]],[3,9,["H8058"]],[9,12,["H5203"]],[12,15,["H34"]],[15,18,["H5971"]],[18,20,["H398"]],[20,24,["H3499"]],[24,26,["H2416"]],[26,29,["H7704"]],[29,31,["H398"]],[31,34,["H3651"]],[34,37,["H6213"]],[37,40,["H3754"]],[40,44,["H2132"]]]},{"k":2156,"v":[[0,1,["H8337"]],[1,2,["H3117"]],[2,5,["H6213"]],[5,7,["H4639"]],[7,11,["H7637"]],[11,12,["H3117"]],[12,15,["H7673"]],[15,16,["H4616"]],[16,18,["H7794"]],[18,21,["H2543"]],[21,23,["H5117"]],[23,26,["H1121"]],[26,29,["H519"]],[29,32,["H1616"]],[32,35,["H5314"]]]},{"k":2157,"v":[[0,3,["H3605"]],[3,5,["H834"]],[5,8,["H559"]],[8,9,["H413"]],[9,12,["H8104"]],[12,16,["H2142","H3808"]],[16,19,["H8034"]],[19,21,["H312"]],[21,22,["H430"]],[22,23,["H3808"]],[23,27,["H8085"]],[27,29,["H5921"]],[29,31,["H6310"]]]},{"k":2158,"v":[[0,1,["H7969"]],[1,2,["H7272"]],[2,7,["H2287"]],[7,12,["H8141"]]]},{"k":2159,"v":[[0,3,["H8104","(H853)"]],[3,5,["H2282"]],[5,8,["H4682"]],[8,11,["H398"]],[11,13,["H4682"]],[13,14,["H7651"]],[14,15,["H3117"]],[15,16,["H834"]],[16,18,["H6680"]],[18,23,["H4150"]],[23,26,["H2320"]],[26,27,["H24"]],[27,28,["H3588"]],[28,33,["H3318"]],[33,35,["H4480","H4714"]],[35,37,["H3808"]],[37,39,["H7200"]],[39,40,["H6440"]],[40,42,["H7387"]]]},{"k":2160,"v":[[0,3,["H2282"]],[3,5,["H7105"]],[5,7,["H1061"]],[7,10,["H4639"]],[10,11,["H834"]],[11,14,["H2232"]],[14,17,["H7704"]],[17,20,["H2282"]],[20,22,["H614"]],[22,27,["H3318"]],[27,30,["H8141"]],[30,35,["H622","(H853)"]],[35,37,["H4639"]],[37,39,["H4480"]],[39,41,["H7704"]]]},{"k":2161,"v":[[0,1,["H7969"]],[1,2,["H6471"]],[2,5,["H8141"]],[5,6,["H3605"]],[6,8,["H2138"]],[8,10,["H7200"]],[10,11,["H413","H6440"]],[11,13,["H113"]],[13,14,["H3068"]]]},{"k":2162,"v":[[0,3,["H3808"]],[3,4,["H2076"]],[4,6,["H1818"]],[6,9,["H2077"]],[9,10,["H5921"]],[10,12,["H2557"]],[12,13,["H3808"]],[13,16,["H2459"]],[16,19,["H2282"]],[19,20,["H3885"]],[20,21,["H5704"]],[21,23,["H1242"]]]},{"k":2163,"v":[[0,2,["H7225"]],[2,5,["H1061"]],[5,8,["H127"]],[8,11,["H935"]],[11,14,["H1004"]],[14,17,["H3068"]],[17,19,["H430"]],[19,22,["H3808"]],[22,23,["H1310"]],[23,25,["H1423"]],[25,28,["H517"]],[28,29,["H2461"]]]},{"k":2164,"v":[[0,1,["H2009"]],[1,2,["H595"]],[2,3,["H7971"]],[3,5,["H4397"]],[5,6,["H6440"]],[6,9,["H8104"]],[9,13,["H1870"]],[13,16,["H935"]],[16,18,["H413"]],[18,20,["H4725"]],[20,21,["H834"]],[21,24,["H3559"]]]},{"k":2165,"v":[[0,1,["H8104"]],[1,2,["H4480","H6440"]],[2,5,["H8085"]],[5,7,["H6963"]],[7,8,["H4843"]],[8,10,["H408"]],[10,11,["H3588"]],[11,14,["H3808"]],[14,15,["H5375"]],[15,17,["H6588"]],[17,18,["H3588"]],[18,20,["H8034"]],[20,22,["H7130"]],[22,23,[]]]},{"k":2166,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,6,["H8085","H8085"]],[6,8,["H6963"]],[8,10,["H6213"]],[10,11,["H3605"]],[11,12,["H834"]],[12,14,["H1696"]],[14,20,["H340","(H853)"]],[20,23,["H341"]],[23,26,["H6696","(H853)"]],[26,29,["H6887"]]]},{"k":2167,"v":[[0,1,["H3588"]],[1,3,["H4397"]],[3,5,["H1980"]],[5,6,["H6440"]],[6,11,["H935"]],[11,12,["H413"]],[12,14,["H567"]],[14,17,["H2850"]],[17,20,["H6522"]],[20,23,["H3669"]],[23,25,["H2340"]],[25,28,["H2983"]],[28,34,["H3582"]]]},{"k":2168,"v":[[0,3,["H3808"]],[3,5,["H7812"]],[5,8,["H430"]],[8,9,["H3808"]],[9,10,["H5647"]],[10,12,["H3808"]],[12,13,["H6213"]],[13,16,["H4639"]],[16,17,["H3588"]],[17,21,["H2040","H2040"]],[21,26,["H7665","H7665"]],[26,28,["H4676"]]]},{"k":2169,"v":[[0,4,["H5647","(H853)"]],[4,6,["H3068"]],[6,8,["H430"]],[8,12,["H1288","(H853)"]],[12,14,["H3899"]],[14,17,["H4325"]],[17,23,["H5493","H4245"]],[23,26,["H4480","H7130"]],[26,28,[]]]},{"k":2170,"v":[[0,3,["H3808"]],[3,6,["H1961","H7921"]],[6,9,["H6135"]],[9,12,["H776","(H853)"]],[12,14,["H4557"]],[14,17,["H3117"]],[17,20,["H4390"]]]},{"k":2171,"v":[[0,3,["H7971","(H853)"]],[3,5,["H367"]],[5,6,["H6440"]],[6,10,["H2000","(H853)"]],[10,11,["H3605"]],[11,13,["H5971"]],[13,15,["H834"]],[15,18,["H935"]],[18,22,["H5414","(H853)"]],[22,23,["H3605"]],[23,25,["H341"]],[25,28,["H6203"]],[28,29,["H413"]],[29,30,[]]]},{"k":2172,"v":[[0,4,["H7971","(H853)"]],[4,5,["H6880"]],[5,6,["H6440"]],[6,11,["H1644","(H853)"]],[11,13,["H2340","(H853)"]],[13,15,["H3669"]],[15,18,["H2850"]],[18,20,["H4480","H6440"]],[20,21,[]]]},{"k":2173,"v":[[0,3,["H3808"]],[3,6,["H1644"]],[6,8,["H4480","H6440"]],[8,11,["H259"]],[11,12,["H8141"]],[12,13,["H6435"]],[13,15,["H776"]],[15,16,["H1961"]],[16,17,["H8077"]],[17,20,["H2416"]],[20,23,["H7704"]],[23,24,["H7227"]],[24,25,["H5921"]],[25,26,[]]]},{"k":2174,"v":[[0,2,["H4592"]],[2,4,["H4592"]],[4,9,["H1644"]],[9,11,["H4480","H6440"]],[11,13,["H5704","H834"]],[13,16,["H6509"]],[16,18,["H5157","(H853)"]],[18,20,["H776"]]]},{"k":2175,"v":[[0,4,["H7896","(H853)"]],[4,6,["H1366"]],[6,10,["H4480","H3220","H5488"]],[10,12,["H5704"]],[12,14,["H3220"]],[14,17,["H6430"]],[17,21,["H4480","H4057"]],[21,22,["H5704"]],[22,24,["H5104"]],[24,25,["H3588"]],[25,28,["H5414","(H853)"]],[28,30,["H3427"]],[30,33,["H776"]],[33,36,["H3027"]],[36,42,["H1644"]],[42,43,["H4480","H6440"]],[43,44,[]]]},{"k":2176,"v":[[0,3,["H3772"]],[3,4,["H3808"]],[4,5,["H1285"]],[5,11,["H430"]]]},{"k":2177,"v":[[0,3,["H3808"]],[3,4,["H3427"]],[4,7,["H776"]],[7,8,["H6435"]],[8,12,["H2398","(H853)"]],[12,15,["H3588"]],[15,18,["H5647","(H853)"]],[18,20,["H430"]],[20,23,["H3588"]],[23,24,["H1961"]],[24,26,["H4170"]],[26,28,[]]]},{"k":2178,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H4872"]],[5,7,["H5927"]],[7,8,["H413"]],[8,10,["H3068"]],[10,11,["H859"]],[11,13,["H175"]],[13,14,["H5070"]],[14,16,["H30"]],[16,18,["H7657"]],[18,21,["H4480","H2205"]],[21,23,["H3478"]],[23,25,["H7812"]],[25,28,["H4480","H7350"]]]},{"k":2179,"v":[[0,2,["H4872"]],[2,3,["H905"]],[3,6,["H5066","H413"]],[6,8,["H3068"]],[8,10,["H1992"]],[10,12,["H3808"]],[12,14,["H5066"]],[14,15,["H3808"]],[15,18,["H5971"]],[18,20,["H5927"]],[20,21,["H5973"]],[21,22,[]]]},{"k":2180,"v":[[0,2,["H4872"]],[2,3,["H935"]],[3,5,["H5608"]],[5,7,["H5971","(H853)"]],[7,8,["H3605"]],[8,10,["H1697"]],[10,13,["H3068"]],[13,15,["H3605"]],[15,17,["H4941"]],[17,19,["H3605"]],[19,21,["H5971"]],[21,22,["H6030"]],[22,24,["H259"]],[24,25,["H6963"]],[25,27,["H559"]],[27,28,["H3605"]],[28,30,["H1697"]],[30,31,["H834"]],[31,33,["H3068"]],[33,35,["H1696"]],[35,38,["H6213"]]]},{"k":2181,"v":[[0,2,["H4872"]],[2,3,["H3789","(H853)"]],[3,4,["H3605"]],[4,6,["H1697"]],[6,9,["H3068"]],[9,13,["H7925"]],[13,16,["H1242"]],[16,18,["H1129"]],[18,20,["H4196"]],[20,21,["H8478"]],[21,23,["H2022"]],[23,25,["H8147","H6240"]],[25,26,["H4676"]],[26,30,["H8147","H6240"]],[30,31,["H7626"]],[31,33,["H3478"]]]},{"k":2182,"v":[[0,3,["H7971","(H853)"]],[3,5,["H5288"]],[5,8,["H1121"]],[8,10,["H3478"]],[10,12,["H5927"]],[12,14,["H5930"]],[14,16,["H2076"]],[16,17,["H8002"]],[17,18,["H2077"]],[18,20,["H6499"]],[20,23,["H3068"]]]},{"k":2183,"v":[[0,2,["H4872"]],[2,3,["H3947"]],[3,4,["H2677"]],[4,7,["H1818"]],[7,9,["H7760"]],[9,12,["H101"]],[12,14,["H2677"]],[14,17,["H1818"]],[17,19,["H2236"]],[19,20,["H5921"]],[20,22,["H4196"]]]},{"k":2184,"v":[[0,3,["H3947"]],[3,5,["H5612"]],[5,8,["H1285"]],[8,10,["H7121"]],[10,13,["H241"]],[13,16,["H5971"]],[16,19,["H559"]],[19,20,["H3605"]],[20,21,["H834"]],[21,23,["H3068"]],[23,25,["H1696"]],[25,28,["H6213"]],[28,31,["H8085"]]]},{"k":2185,"v":[[0,2,["H4872"]],[2,3,["H3947","(H853)"]],[3,5,["H1818"]],[5,7,["H2236"]],[7,9,["H5921"]],[9,11,["H5971"]],[11,13,["H559"]],[13,14,["H2009"]],[14,16,["H1818"]],[16,19,["H1285"]],[19,20,["H834"]],[20,22,["H3068"]],[22,24,["H3772"]],[24,25,["H5973"]],[25,27,["H5921"]],[27,28,["H3605"]],[28,29,["H428"]],[29,30,["H1697"]]]},{"k":2186,"v":[[0,3,["H5927"]],[3,4,["H4872"]],[4,6,["H175"]],[6,7,["H5070"]],[7,9,["H30"]],[9,11,["H7657"]],[11,14,["H4480","H2205"]],[14,16,["H3478"]]]},{"k":2187,"v":[[0,3,["H7200","(H853)"]],[3,5,["H430"]],[5,7,["H3478"]],[7,11,["H8478"]],[11,13,["H7272"]],[13,18,["H3840"]],[18,19,["H4639"]],[19,23,["H5601"]],[23,29,["H6106"]],[29,31,["H8064"]],[31,34,["H2892"]]]},{"k":2188,"v":[[0,2,["H413"]],[2,4,["H678"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,11,["H7971"]],[11,12,["H3808"]],[12,14,["H3027"]],[14,17,["H2372","(H853)"]],[17,18,["H430"]],[18,21,["H398"]],[21,23,["H8354"]]]},{"k":2189,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H5927"]],[8,9,["H413"]],[9,13,["H2022"]],[13,15,["H1961"]],[15,16,["H8033"]],[16,20,["H5414"]],[20,21,["(H853)"]],[21,22,["H3871"]],[22,24,["H68"]],[24,27,["H8451"]],[27,29,["H4687"]],[29,30,["H834"]],[30,33,["H3789"]],[33,37,["H3384"]],[37,38,[]]]},{"k":2190,"v":[[0,2,["H4872"]],[2,4,["H6965"]],[4,7,["H8334"]],[7,8,["H3091"]],[8,10,["H4872"]],[10,12,["H5927"]],[12,13,["H413"]],[13,15,["H2022"]],[15,17,["H430"]]]},{"k":2191,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H2205"]],[6,7,["H3427"]],[7,9,["H2088"]],[9,12,["H5704","H834"]],[12,15,["H7725"]],[15,16,["H413"]],[16,19,["H2009"]],[19,20,["H175"]],[20,22,["H2354"]],[22,24,["H5973"]],[24,27,["H4310"]],[27,28,["H1167"]],[28,31,["H1697"]],[31,36,["H5066"]],[36,37,["H413"]],[37,38,[]]]},{"k":2192,"v":[[0,2,["H4872"]],[2,4,["H5927"]],[4,5,["H413"]],[5,7,["H2022"]],[7,10,["H6051"]],[10,11,["H3680","(H853)"]],[11,13,["H2022"]]]},{"k":2193,"v":[[0,3,["H3519"]],[3,6,["H3068"]],[6,7,["H7931"]],[7,8,["H5921"]],[8,9,["H2022"]],[9,10,["H5514"]],[10,13,["H6051"]],[13,14,["H3680"]],[14,16,["H8337"]],[16,17,["H3117"]],[17,20,["H7637"]],[20,21,["H3117"]],[21,23,["H7121"]],[23,24,["H413"]],[24,25,["H4872"]],[25,29,["H4480","H8432"]],[29,32,["H6051"]]]},{"k":2194,"v":[[0,3,["H4758"]],[3,6,["H3519"]],[6,9,["H3068"]],[9,12,["H398"]],[12,13,["H784"]],[13,16,["H7218"]],[16,19,["H2022"]],[19,22,["H5869"]],[22,25,["H1121"]],[25,27,["H3478"]]]},{"k":2195,"v":[[0,2,["H4872"]],[2,3,["H935"]],[3,6,["H8432"]],[6,9,["H6051"]],[9,13,["H5927"]],[13,14,["H413"]],[14,16,["H2022"]],[16,18,["H4872"]],[18,19,["H1961"]],[19,22,["H2022"]],[22,23,["H705"]],[23,24,["H3117"]],[24,26,["H705"]],[26,27,["H3915"]]]},{"k":2196,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2197,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,9,["H3947"]],[9,12,["H8641"]],[12,13,["H4480","H854"]],[13,14,["H3605"]],[14,15,["H376"]],[15,16,["H834"]],[16,19,["H5068"]],[19,22,["H3820"]],[22,25,["H3947","(H853)"]],[25,27,["H8641"]]]},{"k":2198,"v":[[0,2,["H2063"]],[2,5,["H8641"]],[5,6,["H834"]],[6,9,["H3947"]],[9,10,["H4480","H854"]],[10,12,["H2091"]],[12,14,["H3701"]],[14,16,["H5178"]]]},{"k":2199,"v":[[0,2,["H8504"]],[2,4,["H713"]],[4,6,["H8438","H8144"]],[6,9,["H8336"]],[9,11,["H5795"]],[11,12,[]]]},{"k":2200,"v":[[0,2,["H352"]],[2,3,["H5785"]],[3,5,["H119"]],[5,7,["H8476"]],[7,8,["H5785"]],[8,10,["H7848"]],[10,11,["H6086"]]]},{"k":2201,"v":[[0,1,["H8081"]],[1,4,["H3974"]],[4,5,["H1314"]],[5,7,["H4888"]],[7,8,["H8081"]],[8,11,["H5561"]],[11,12,["H7004"]]]},{"k":2202,"v":[[0,1,["H7718"]],[1,2,["H68"]],[2,4,["H68"]],[4,7,["H4394"]],[7,10,["H646"]],[10,14,["H2833"]]]},{"k":2203,"v":[[0,4,["H6213"]],[4,7,["H4720"]],[7,11,["H7931"]],[11,12,["H8432"]],[12,13,[]]]},{"k":2204,"v":[[0,3,["H3605"]],[3,4,["H834"]],[4,5,["H589"]],[5,6,["H7200"]],[6,8,["(H853)"]],[8,10,["H8403"]],[10,13,["H4908"]],[13,16,["H8403"]],[16,18,["H3605"]],[18,20,["H3627"]],[20,23,["H3651"]],[23,26,["H6213"]],[26,27,[]]]},{"k":2205,"v":[[0,4,["H6213"]],[4,6,["H727"]],[6,8,["H7848"]],[8,9,["H6086"]],[9,11,["H520"]],[11,14,["H2677"]],[14,18,["H753"]],[18,22,["H520"]],[22,25,["H2677"]],[25,27,["H7341"]],[27,31,["H520"]],[31,34,["H2677"]],[34,36,["H6967"]],[36,37,[]]]},{"k":2206,"v":[[0,4,["H6823"]],[4,7,["H2889"]],[7,8,["H2091"]],[8,9,["H4480","H1004"]],[9,11,["H4480","H2351"]],[11,14,["H6823"]],[14,18,["H6213"]],[18,19,["H5921"]],[19,22,["H2213"]],[22,24,["H2091"]],[24,26,["H5439"]]]},{"k":2207,"v":[[0,4,["H3332"]],[4,5,["H702"]],[5,6,["H2885"]],[6,8,["H2091"]],[8,12,["H5414"]],[12,14,["H5921"]],[14,16,["H702"]],[16,17,["H6471"]],[17,20,["H8147"]],[20,21,["H2885"]],[21,24,["H5921"]],[24,26,["H259"]],[26,27,["H6763"]],[27,31,["H8147"]],[31,32,["H2885"]],[32,33,["H5921"]],[33,35,["H8145"]],[35,36,["H6763"]],[36,38,[]]]},{"k":2208,"v":[[0,4,["H6213"]],[4,5,["H905"]],[5,7,["H7848"]],[7,8,["H6086"]],[8,10,["H6823"]],[10,13,["H2091"]]]},{"k":2209,"v":[[0,4,["H935","(H853)"]],[4,6,["H905"]],[6,9,["H2885"]],[9,10,["H5921"]],[10,12,["H6763"]],[12,15,["H727"]],[15,16,["(H853)"]],[16,18,["H727"]],[18,21,["H5375"]],[21,23,[]]]},{"k":2210,"v":[[0,2,["H905"]],[2,4,["H1961"]],[4,7,["H2885"]],[7,10,["H727"]],[10,13,["H3808"]],[13,15,["H5493"]],[15,16,["H4480"]],[16,17,[]]]},{"k":2211,"v":[[0,4,["H5414"]],[4,5,["H413"]],[5,7,["H727","(H853)"]],[7,9,["H5715"]],[9,10,["H834"]],[10,13,["H5414","H413"]],[13,14,[]]]},{"k":2212,"v":[[0,4,["H6213"]],[4,7,["H3727"]],[7,9,["H2889"]],[9,10,["H2091"]],[10,12,["H520"]],[12,15,["H2677"]],[15,19,["H753"]],[19,23,["H520"]],[23,26,["H2677"]],[26,28,["H7341"]],[28,29,[]]]},{"k":2213,"v":[[0,4,["H6213"]],[4,5,["H8147"]],[5,6,["H3742"]],[6,8,["H2091"]],[8,11,["H4749"]],[11,14,["H6213"]],[14,18,["H4480","H8147"]],[18,19,["H7098"]],[19,23,["H3727"]]]},{"k":2214,"v":[[0,2,["H6213"]],[2,3,["H259"]],[3,4,["H3742"]],[4,8,["H4480","H2088","H4480","H7098"]],[8,11,["H259"]],[11,12,["H3742"]],[12,16,["H4480","H2088","H4480","H7098"]],[16,18,["H4480"]],[18,21,["H3727"]],[21,24,["H6213","(H853)"]],[24,26,["H3742"]],[26,27,["H5921"]],[27,29,["H8147"]],[29,30,["H7098"]],[30,31,[]]]},{"k":2215,"v":[[0,3,["H3742"]],[3,4,["H1961"]],[4,6,["H6566"]],[6,8,["H3671"]],[8,10,["H4605"]],[10,11,["H5526","H5921"]],[11,14,["H3727"]],[14,17,["H3671"]],[17,20,["H6440"]],[20,23,["H376"]],[23,24,["H413"]],[24,25,["H251"]],[25,26,["H413"]],[26,29,["H3727"]],[29,32,["H6440"]],[32,35,["H3742"]],[35,36,["H1961"]]]},{"k":2216,"v":[[0,4,["H5414","(H853)"]],[4,7,["H3727"]],[7,8,["H4480","H4605"]],[8,9,["H5921"]],[9,11,["H727"]],[11,13,["H413"]],[13,15,["H727"]],[15,18,["H5414","(H853)"]],[18,20,["H5715"]],[20,21,["H834"]],[21,24,["H5414","H413"]],[24,25,[]]]},{"k":2217,"v":[[0,2,["H8033"]],[2,5,["H3259"]],[5,11,["H1696"]],[11,12,["H854"]],[12,15,["H4480","H5921"]],[15,18,["H3727"]],[18,20,["H4480","H996"]],[20,22,["H8147"]],[22,23,["H3742"]],[23,24,["H834"]],[24,26,["H5921"]],[26,28,["H727"]],[28,31,["H5715","(H853)"]],[31,33,["H3605"]],[33,35,["H834"]],[35,41,["H6680","(H853)"]],[41,42,["H413"]],[42,44,["H1121"]],[44,46,["H3478"]]]},{"k":2218,"v":[[0,4,["H6213"]],[4,6,["H7979"]],[6,8,["H7848"]],[8,9,["H6086"]],[9,11,["H520"]],[11,15,["H753"]],[15,19,["H520"]],[19,21,["H7341"]],[21,25,["H520"]],[25,28,["H2677"]],[28,30,["H6967"]],[30,31,[]]]},{"k":2219,"v":[[0,4,["H6823"]],[4,7,["H2889"]],[7,8,["H2091"]],[8,10,["H6213"]],[10,13,["H2213"]],[13,15,["H2091"]],[15,17,["H5439"]]]},{"k":2220,"v":[[0,4,["H6213"]],[4,8,["H4526"]],[8,12,["H2948"]],[12,14,["H5439"]],[14,18,["H6213"]],[18,20,["H2091"]],[20,21,["H2213"]],[21,24,["H4526"]],[24,27,["H5439"]]]},{"k":2221,"v":[[0,4,["H6213"]],[4,7,["H702"]],[7,8,["H2885"]],[8,10,["H2091"]],[10,12,["H5414","(H853)"]],[12,14,["H2885"]],[14,15,["H5921"]],[15,17,["H702"]],[17,18,["H6285"]],[18,19,["H834"]],[19,23,["H702"]],[23,24,["H7272"]],[24,25,[]]]},{"k":2222,"v":[[0,2,["H5980"]],[2,4,["H4526"]],[4,7,["H2885"]],[7,8,["H1961"]],[8,10,["H1004"]],[10,13,["H905"]],[13,15,["H5375","(H853)"]],[15,17,["H7979"]]]},{"k":2223,"v":[[0,4,["H6213","(H853)"]],[4,6,["H905"]],[6,8,["H7848"]],[8,9,["H6086"]],[9,11,["H6823"]],[11,14,["H2091"]],[14,15,["(H853)"]],[15,17,["H7979"]],[17,20,["H5375"]],[20,22,[]]]},{"k":2224,"v":[[0,4,["H6213"]],[4,6,["H7086"]],[6,9,["H3709"]],[9,12,["H7184"]],[12,15,["H4518"]],[15,18,["H5258"]],[18,19,["H834","H2004"]],[19,21,["H2889"]],[21,22,["H2091"]],[22,25,["H6213"]],[25,26,[]]]},{"k":2225,"v":[[0,4,["H5414"]],[4,5,["H5921"]],[5,7,["H7979"]],[7,8,["H3899","H6440"]],[8,9,["H6440"]],[9,11,["H8548"]]]},{"k":2226,"v":[[0,4,["H6213"]],[4,6,["H4501"]],[6,8,["H2889"]],[8,9,["H2091"]],[9,12,["H4749"]],[12,15,["H4501"]],[15,17,["H6213"]],[17,19,["H3409"]],[19,22,["H7070"]],[22,24,["H1375"]],[24,26,["H3730"]],[26,29,["H6525"]],[29,31,["H1961"]],[31,32,["H4480"]],[32,34,[]]]},{"k":2227,"v":[[0,2,["H8337"]],[2,3,["H7070"]],[3,6,["H3318"]],[6,9,["H4480","H6654"]],[9,12,["H7969"]],[12,13,["H7070"]],[13,16,["H4501"]],[16,21,["H4480","H6654","H259"]],[21,23,["H7969"]],[23,24,["H7070"]],[24,27,["H4501"]],[27,32,["H4480","H6654","H8145"]]]},{"k":2228,"v":[[0,1,["H7969"]],[1,2,["H1375"]],[2,6,["H8246"]],[6,9,["H3730"]],[9,12,["H6525"]],[12,14,["H259"]],[14,15,["H7070"]],[15,17,["H7969"]],[17,18,["H1375"]],[18,21,["H8246"]],[21,24,["H259"]],[24,25,["H7070"]],[25,28,["H3730"]],[28,31,["H6525"]],[31,32,["H3651"]],[32,35,["H8337"]],[35,36,["H7070"]],[36,39,["H3318"]],[39,40,["H4480"]],[40,42,["H4501"]]]},{"k":2229,"v":[[0,4,["H4501"]],[4,7,["H702"]],[7,8,["H1375"]],[8,12,["H8246"]],[12,15,["H3730"]],[15,18,["H6525"]]]},{"k":2230,"v":[[0,6,["H3730"]],[6,7,["H8478"]],[7,8,["H8147"]],[8,9,["H7070"]],[9,10,["H4480"]],[10,15,["H3730"]],[15,16,["H8478"]],[16,17,["H8147"]],[17,18,["H7070"]],[18,19,["H4480"]],[19,24,["H3730"]],[24,25,["H8478"]],[25,26,["H8147"]],[26,27,["H7070"]],[27,28,["H4480"]],[28,34,["H8337"]],[34,35,["H7070"]],[35,38,["H3318"]],[38,39,["H4480"]],[39,41,["H4501"]]]},{"k":2231,"v":[[0,2,["H3730"]],[2,5,["H7070"]],[5,7,["H1961"]],[7,8,["H4480"]],[8,11,["H3605"]],[11,15,["H259"]],[15,17,["H4749"]],[17,19,["H2889"]],[19,20,["H2091"]]]},{"k":2232,"v":[[0,4,["H6213"]],[4,5,["(H853)"]],[5,6,["H7651"]],[6,7,["H5216"]],[7,12,["H5927","(H853)"]],[12,14,["H5216"]],[14,20,["H215"]],[20,22,["H5921","H5676","H6440"]],[22,23,[]]]},{"k":2233,"v":[[0,3,["H4457"]],[3,7,["H4289"]],[7,12,["H2889"]],[12,13,["H2091"]]]},{"k":2234,"v":[[0,3,["H3603"]],[3,5,["H2889"]],[5,6,["H2091"]],[6,9,["H6213"]],[9,11,["H854"]],[11,12,["H3605"]],[12,13,["H428"]],[13,14,["H3627"]]]},{"k":2235,"v":[[0,2,["H7200"]],[2,5,["H6213"]],[5,9,["H8403"]],[9,10,["H834"]],[10,12,["H7200"]],[12,13,["H859"]],[13,16,["H2022"]]]},{"k":2236,"v":[[0,4,["H6213"]],[4,6,["H4908"]],[6,8,["H6235"]],[8,9,["H3407"]],[9,13,["H8336","H7806"]],[13,15,["H8504"]],[15,17,["H713"]],[17,19,["H8438","H8144"]],[19,21,["H3742"]],[21,23,["H2803"]],[23,24,["H4639"]],[24,27,["H6213"]],[27,28,[]]]},{"k":2237,"v":[[0,2,["H753"]],[2,4,["H259"]],[4,5,["H3407"]],[5,8,["H8083"]],[8,10,["H6242"]],[10,11,["H520"]],[11,14,["H7341"]],[14,16,["H259"]],[16,17,["H3407"]],[17,18,["H702"]],[18,19,["H520"]],[19,22,["H3605"]],[22,25,["H3407"]],[25,28,["H259"]],[28,29,["H4060"]]]},{"k":2238,"v":[[0,2,["H2568"]],[2,3,["H3407"]],[3,5,["H1961"]],[5,7,["H2266"]],[7,8,["H802"]],[8,9,["H413"]],[9,10,["H269"]],[10,13,["H2568"]],[13,14,["H3407"]],[14,17,["H2266"]],[17,18,["H802"]],[18,19,["H413"]],[19,20,["H269"]]]},{"k":2239,"v":[[0,4,["H6213"]],[4,5,["H3924"]],[5,7,["H8504"]],[7,8,["H5921"]],[8,10,["H8193"]],[10,13,["H259"]],[13,14,["H3407"]],[14,17,["H4480","H7098"]],[17,20,["H2279"]],[20,22,["H3651"]],[22,25,["H6213"]],[25,28,["H7020"]],[28,29,["H8193"]],[29,32,["H3407"]],[32,35,["H4225"]],[35,38,["H8145"]]]},{"k":2240,"v":[[0,1,["H2572"]],[1,2,["H3924"]],[2,5,["H6213"]],[5,8,["H259"]],[8,9,["H3407"]],[9,11,["H2572"]],[11,12,["H3924"]],[12,15,["H6213"]],[15,18,["H7097"]],[18,21,["H3407"]],[21,22,["H834"]],[22,26,["H4225"]],[26,29,["H8145"]],[29,32,["H3924"]],[32,35,["H6901"]],[35,36,["H802"]],[36,37,["H413"]],[37,38,["H269"]]]},{"k":2241,"v":[[0,4,["H6213"]],[4,5,["H2572"]],[5,6,["H7165"]],[6,8,["H2091"]],[8,10,["H2266","(H853)"]],[10,12,["H3407"]],[12,13,["H802","H413","H269"]],[13,16,["H7165"]],[16,20,["H1961"]],[20,21,["H259"]],[21,22,["H4908"]]]},{"k":2242,"v":[[0,4,["H6213"]],[4,5,["H3407"]],[5,7,["H5795"]],[7,12,["H168"]],[12,13,["H5921"]],[13,15,["H4908"]],[15,16,["H6249","H6240"]],[16,17,["H3407"]],[17,20,["H6213"]]]},{"k":2243,"v":[[0,2,["H753"]],[2,4,["H259"]],[4,5,["H3407"]],[5,8,["H7970"]],[8,9,["H520"]],[9,12,["H7341"]],[12,14,["H259"]],[14,15,["H3407"]],[15,16,["H702"]],[16,17,["H520"]],[17,20,["H6249","H6240"]],[20,21,["H3407"]],[21,26,["H259"]],[26,27,["H4060"]]]},{"k":2244,"v":[[0,4,["H2266","(H853)"]],[4,5,["H2568"]],[5,6,["H3407"]],[6,8,["H905"]],[8,10,["H8337"]],[10,11,["H3407"]],[11,13,["H905"]],[13,16,["H3717"]],[16,18,["H8345","(H853)"]],[18,19,["H3407"]],[19,22,["H413","H4136","H6440"]],[22,25,["H168"]]]},{"k":2245,"v":[[0,4,["H6213"]],[4,5,["H2572"]],[5,6,["H3924"]],[6,7,["H5921"]],[7,9,["H8193"]],[9,12,["H259"]],[12,13,["H3407"]],[13,16,["H7020"]],[16,19,["H2279"]],[19,21,["H2572"]],[21,22,["H3924"]],[22,23,["H5921"]],[23,25,["H8193"]],[25,28,["H3407"]],[28,30,["H2279"]],[30,32,["H8145"]]]},{"k":2246,"v":[[0,4,["H6213"]],[4,5,["H2572"]],[5,6,["H7165"]],[6,8,["H5178"]],[8,10,["H935","(H853)"]],[10,12,["H7165"]],[12,15,["H3924"]],[15,20,["H2266","(H853)","H168"]],[20,24,["H1961"]],[24,25,["H259"]]]},{"k":2247,"v":[[0,3,["H5629"]],[3,5,["H5736"]],[5,8,["H3407"]],[8,11,["H168"]],[11,13,["H2677"]],[13,14,["H3407"]],[14,16,["H5736"]],[16,18,["H5628"]],[18,19,["H5921"]],[19,21,["H268"]],[21,24,["H4908"]]]},{"k":2248,"v":[[0,3,["H520"]],[3,7,["H4480","H2088"]],[7,10,["H520"]],[10,14,["H4480","H2088"]],[14,18,["H5736"]],[18,21,["H753"]],[21,24,["H3407"]],[24,27,["H168"]],[27,29,["H1961"]],[29,30,["H5628"]],[30,31,["H5921"]],[31,33,["H6654"]],[33,36,["H4908"]],[36,39,["H4480","H2088"]],[39,43,["H4480","H2088"]],[43,45,["H3680"]],[45,46,[]]]},{"k":2249,"v":[[0,4,["H6213"]],[4,6,["H4372"]],[6,9,["H168"]],[9,11,["H352"]],[11,12,["H5785"]],[12,14,["H119"]],[14,17,["H4372"]],[17,18,["H4480","H4605"]],[18,20,["H8476"]],[20,21,["H5785"]]]},{"k":2250,"v":[[0,4,["H6213","(H853)"]],[4,5,["H7175"]],[5,8,["H4908"]],[8,10,["H7848"]],[10,11,["H6086"]],[11,13,["H5975"]]]},{"k":2251,"v":[[0,1,["H6235"]],[1,2,["H520"]],[2,6,["H753"]],[6,9,["H7175"]],[9,12,["H520"]],[12,15,["H2677"]],[15,19,["H7341"]],[19,21,["H259"]],[21,22,["H7175"]]]},{"k":2252,"v":[[0,1,["H8147"]],[1,2,["H3027"]],[2,7,["H259"]],[7,8,["H7175"]],[8,11,["H7947"]],[11,12,["H802"]],[12,13,["H413"]],[13,14,["H269"]],[14,15,["H3651"]],[15,18,["H6213"]],[18,20,["H3605"]],[20,22,["H7175"]],[22,25,["H4908"]]]},{"k":2253,"v":[[0,4,["H6213","(H853)"]],[4,6,["H7175"]],[6,9,["H4908"]],[9,10,["H6242"]],[10,11,["H7175"]],[11,14,["H5045"]],[14,15,["H6285"]],[15,16,["H8486"]]]},{"k":2254,"v":[[0,4,["H6213"]],[4,5,["H705"]],[5,6,["H134"]],[6,8,["H3701"]],[8,9,["H8478"]],[9,11,["H6242"]],[11,12,["H7175"]],[12,13,["H8147"]],[13,14,["H134"]],[14,15,["H8478"]],[15,16,["H259"]],[16,17,["H7175"]],[17,20,["H8147"]],[20,21,["H3027"]],[21,23,["H8147"]],[23,24,["H134"]],[24,25,["H8478"]],[25,26,["H259"]],[26,27,["H7175"]],[27,30,["H8147"]],[30,31,["H3027"]]]},{"k":2255,"v":[[0,4,["H8145"]],[4,5,["H6763"]],[5,8,["H4908"]],[8,11,["H6828"]],[11,12,["H6285"]],[12,16,["H6242"]],[16,17,["H7175"]]]},{"k":2256,"v":[[0,3,["H705"]],[3,4,["H134"]],[4,6,["H3701"]],[6,7,["H8147"]],[7,8,["H134"]],[8,9,["H8478"]],[9,10,["H259"]],[10,11,["H7175"]],[11,13,["H8147"]],[13,14,["H134"]],[14,15,["H8478"]],[15,16,["H259"]],[16,17,["H7175"]]]},{"k":2257,"v":[[0,4,["H3411"]],[4,7,["H4908"]],[7,8,["H3220"]],[8,11,["H6213"]],[11,12,["H8337"]],[12,13,["H7175"]]]},{"k":2258,"v":[[0,2,["H8147"]],[2,3,["H7175"]],[3,6,["H6213"]],[6,9,["H4742"]],[9,12,["H4908"]],[12,16,["H3411"]]]},{"k":2259,"v":[[0,4,["H1961"]],[4,6,["H8382"]],[6,7,["H4480","H4295"]],[7,11,["H1961"]],[11,13,["H8382"]],[13,14,["H3162","H5921"]],[14,16,["H7218"]],[16,19,["H413"]],[19,20,["H259"]],[20,21,["H2885"]],[21,22,["H3651"]],[22,25,["H1961"]],[25,28,["H8147"]],[28,31,["H1961"]],[31,34,["H8147"]],[34,35,["H4740"]]]},{"k":2260,"v":[[0,4,["H1961"]],[4,5,["H8083"]],[5,6,["H7175"]],[6,9,["H134"]],[9,11,["H3701"]],[11,12,["H8337","H6240"]],[12,13,["H134"]],[13,14,["H8147"]],[14,15,["H134"]],[15,16,["H8478"]],[16,17,["H259"]],[17,18,["H7175"]],[18,20,["H8147"]],[20,21,["H134"]],[21,22,["H8478"]],[22,23,["H259"]],[23,24,["H7175"]]]},{"k":2261,"v":[[0,4,["H6213"]],[4,5,["H1280"]],[5,7,["H7848"]],[7,8,["H6086"]],[8,9,["H2568"]],[9,12,["H7175"]],[12,15,["H259"]],[15,16,["H6763"]],[16,19,["H4908"]]]},{"k":2262,"v":[[0,2,["H2568"]],[2,3,["H1280"]],[3,6,["H7175"]],[6,9,["H8145"]],[9,10,["H6763"]],[10,13,["H4908"]],[13,15,["H2568"]],[15,16,["H1280"]],[16,19,["H7175"]],[19,22,["H6763"]],[22,25,["H4908"]],[25,29,["H3411"]],[29,30,["H3220"]]]},{"k":2263,"v":[[0,3,["H8484"]],[3,4,["H1280"]],[4,7,["H8432"]],[7,10,["H7175"]],[10,12,["H1272"]],[12,13,["H4480"]],[13,14,["H7097"]],[14,15,["H413"]],[15,16,["H7097"]]]},{"k":2264,"v":[[0,4,["H6823"]],[4,6,["H7175"]],[6,8,["H2091"]],[8,10,["H6213"]],[10,12,["H2885"]],[12,14,["H2091"]],[14,16,["H1004"]],[16,19,["H1280"]],[19,23,["H6823","(H853)"]],[23,25,["H1280"]],[25,27,["H2091"]]]},{"k":2265,"v":[[0,5,["H6965","(H853)"]],[5,7,["H4908"]],[7,11,["H4941"]],[11,13,["H834"]],[13,15,["H7200"]],[15,19,["H2022"]]]},{"k":2266,"v":[[0,4,["H6213"]],[4,6,["H6532"]],[6,8,["H8504"]],[8,10,["H713"]],[10,12,["H8438","H8144"]],[12,16,["H8336","H7806"]],[16,18,["H2803"]],[18,19,["H4639"]],[19,21,["H3742"]],[21,25,["H6213"]]]},{"k":2267,"v":[[0,4,["H5414"]],[4,6,["H5921"]],[6,7,["H702"]],[7,8,["H5982"]],[8,10,["H7848"]],[10,12,["H6823"]],[12,14,["H2091"]],[14,16,["H2053"]],[16,20,["H2091"]],[20,21,["H5921"]],[21,23,["H702"]],[23,24,["H134"]],[24,26,["H3701"]]]},{"k":2268,"v":[[0,5,["H5414","(H853)"]],[5,7,["H6532"]],[7,8,["H8478"]],[8,10,["H7165"]],[10,15,["H935"]],[15,16,["H8033"]],[16,17,["H4480","H1004"]],[17,19,["H6532","(H853)"]],[19,21,["H727"]],[21,24,["H5715"]],[24,27,["H6532"]],[27,29,["H914"]],[29,32,["H996"]],[32,34,["H6944"]],[34,39,["H6944","H6944"]]]},{"k":2269,"v":[[0,4,["H5414","(H853)"]],[4,7,["H3727"]],[7,8,["H5921"]],[8,10,["H727"]],[10,13,["H5715"]],[13,17,["H6944","H6944"]],[17,18,[]]]},{"k":2270,"v":[[0,4,["H7760","(H853)"]],[4,6,["H7979"]],[6,7,["H4480","H2351"]],[7,9,["H6532"]],[9,12,["H4501"]],[12,14,["H5227"]],[14,16,["H7979"]],[16,17,["H5921"]],[17,19,["H6763"]],[19,22,["H4908"]],[22,25,["H8486"]],[25,29,["H5414"]],[29,31,["H7979"]],[31,32,["H5921"]],[32,34,["H6828"]],[34,35,["H6763"]]]},{"k":2271,"v":[[0,4,["H6213"]],[4,6,["H4539"]],[6,9,["H6607"]],[9,12,["H168"]],[12,14,["H8504"]],[14,16,["H713"]],[16,18,["H8438","H8144"]],[18,22,["H8336","H7806"]],[22,25,["H4639","H7551"]]]},{"k":2272,"v":[[0,4,["H6213"]],[4,7,["H4539"]],[7,8,["H2568"]],[8,9,["H5982"]],[9,11,["H7848"]],[11,14,["H6823"]],[14,17,["H2091"]],[17,20,["H2053"]],[20,24,["H2091"]],[24,28,["H3332"]],[28,29,["H2568"]],[29,30,["H134"]],[30,32,["H5178"]],[32,34,[]]]},{"k":2273,"v":[[0,4,["H6213","(H853)"]],[4,6,["H4196"]],[6,8,["H7848"]],[8,9,["H6086"]],[9,10,["H2568"]],[10,11,["H520"]],[11,12,["H753"]],[12,14,["H2568"]],[14,15,["H520"]],[15,16,["H7341"]],[16,18,["H4196"]],[18,20,["H1961"]],[20,21,["H7251"]],[21,24,["H6967"]],[24,28,["H7969"]],[28,29,["H520"]]]},{"k":2274,"v":[[0,4,["H6213"]],[4,6,["H7161"]],[6,9,["H5921"]],[9,11,["H702"]],[11,12,["H6438"]],[12,15,["H7161"]],[15,17,["H1961"]],[17,18,["H4480"]],[18,24,["H6823"]],[24,27,["H5178"]]]},{"k":2275,"v":[[0,4,["H6213"]],[4,6,["H5518"]],[6,10,["H1878"]],[10,13,["H3257"]],[13,16,["H4219"]],[16,19,["H4207"]],[19,22,["H4289"]],[22,23,["H3605"]],[23,25,["H3627"]],[25,29,["H6213"]],[29,31,["H5178"]]]},{"k":2276,"v":[[0,4,["H6213"]],[4,8,["H4345"]],[8,10,["H4639","H7568"]],[10,12,["H5178"]],[12,14,["H5921"]],[14,16,["H7568"]],[16,19,["H6213"]],[19,20,["H702"]],[20,21,["H5178"]],[21,22,["H2885"]],[22,23,["H5921"]],[23,25,["H702"]],[25,26,["H7098"]],[26,27,[]]]},{"k":2277,"v":[[0,4,["H5414"]],[4,6,["H8478"]],[6,8,["H3749"]],[8,11,["H4196"]],[11,12,["H4480","H4295"]],[12,15,["H7568"]],[15,17,["H1961"]],[17,19,["H5704"]],[19,21,["H2677"]],[21,24,["H4196"]]]},{"k":2278,"v":[[0,4,["H6213"]],[4,5,["H905"]],[5,8,["H4196"]],[8,9,["H905"]],[9,11,["H7848"]],[11,12,["H6086"]],[12,14,["H6823"]],[14,17,["H5178"]]]},{"k":2279,"v":[[0,1,["(H853)"]],[1,3,["H905"]],[3,6,["H935"]],[6,9,["H2885"]],[9,12,["H905"]],[12,14,["H1961"]],[14,15,["H5921"]],[15,17,["H8147"]],[17,18,["H6763"]],[18,21,["H4196"]],[21,23,["H5375"]],[23,24,[]]]},{"k":2280,"v":[[0,1,["H5014"]],[1,3,["H3871"]],[3,6,["H6213"]],[6,8,["H834"]],[8,11,["H7200"]],[11,15,["H2022"]],[15,16,["H3651"]],[16,19,["H6213"]],[19,20,[]]]},{"k":2281,"v":[[0,4,["H6213","(H853)"]],[4,6,["H2691"]],[6,9,["H4908"]],[9,12,["H5045"]],[12,13,["H6285"]],[13,14,["H8486"]],[14,18,["H7050"]],[18,21,["H2691"]],[21,25,["H8336","H7806"]],[25,28,["H3967"]],[28,29,["H520"]],[29,30,["H753"]],[30,32,["H259"]],[32,33,["H6285"]]]},{"k":2282,"v":[[0,3,["H6242"]],[3,4,["H5982"]],[4,8,["H6242"]],[8,9,["H134"]],[9,13,["H5178"]],[13,15,["H2053"]],[15,18,["H5982"]],[18,21,["H2838"]],[21,25,["H3701"]]]},{"k":2283,"v":[[0,2,["H3651"]],[2,5,["H6828"]],[5,6,["H6285"]],[6,8,["H753"]],[8,12,["H7050"]],[12,15,["H3967"]],[15,17,["H753"]],[17,20,["H6242"]],[20,21,["H5982"]],[21,24,["H6242"]],[24,25,["H134"]],[25,27,["H5178"]],[27,29,["H2053"]],[29,32,["H5982"]],[32,35,["H2838"]],[35,37,["H3701"]]]},{"k":2284,"v":[[0,4,["H7341"]],[4,7,["H2691"]],[7,10,["H3220"]],[10,11,["H6285"]],[11,14,["H7050"]],[14,16,["H2572"]],[16,17,["H520"]],[17,19,["H5982"]],[19,20,["H6235"]],[20,23,["H134"]],[23,24,["H6235"]]]},{"k":2285,"v":[[0,3,["H7341"]],[3,6,["H2691"]],[6,9,["H6924"]],[9,10,["H6285"]],[10,11,["H4217"]],[11,14,["H2572"]],[14,15,["H520"]]]},{"k":2286,"v":[[0,2,["H7050"]],[2,5,["H3802"]],[5,11,["H2568","H6240"]],[11,12,["H520"]],[12,14,["H5982"]],[14,15,["H7969"]],[15,18,["H134"]],[18,19,["H7969"]]]},{"k":2287,"v":[[0,4,["H8145"]],[4,5,["H3802"]],[5,8,["H7050"]],[8,9,["H2568","H6240"]],[9,12,["H5982"]],[12,13,["H7969"]],[13,16,["H134"]],[16,17,["H7969"]]]},{"k":2288,"v":[[0,4,["H8179"]],[4,7,["H2691"]],[7,11,["H4539"]],[11,13,["H6242"]],[13,14,["H520"]],[14,16,["H8504"]],[16,18,["H713"]],[18,20,["H8438","H8144"]],[20,24,["H8336","H7806"]],[24,27,["H4639","H7551"]],[27,30,["H5982"]],[30,33,["H702"]],[33,36,["H134"]],[36,37,["H702"]]]},{"k":2289,"v":[[0,1,["H3605"]],[1,3,["H5982"]],[3,5,["H5439"]],[5,7,["H2691"]],[7,10,["H2836"]],[10,12,["H3701"]],[12,14,["H2053"]],[14,18,["H3701"]],[18,21,["H134"]],[21,23,["H5178"]]]},{"k":2290,"v":[[0,2,["H753"]],[2,5,["H2691"]],[5,9,["H3967"]],[9,10,["H520"]],[10,13,["H7341"]],[13,16,["H2572","H2572"]],[16,19,["H6967"]],[19,20,["H2568"]],[20,21,["H520"]],[21,25,["H8336","H7806"]],[25,28,["H134"]],[28,30,["H5178"]]]},{"k":2291,"v":[[0,1,["H3605"]],[1,3,["H3627"]],[3,6,["H4908"]],[6,8,["H3605"]],[8,10,["H5656"]],[10,13,["H3605"]],[13,15,["H3489"]],[15,18,["H3605"]],[18,20,["H3489"]],[20,23,["H2691"]],[23,27,["H5178"]]]},{"k":2292,"v":[[0,2,["H859"]],[2,4,["H6680","(H853)"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,11,["H3947","H413"]],[11,13,["H2134"]],[13,14,["H8081"]],[14,15,["H2132"]],[15,16,["H3795"]],[16,19,["H3974"]],[19,23,["H5216"]],[23,25,["H5927"]],[25,26,["H8548"]]]},{"k":2293,"v":[[0,3,["H168"]],[3,6,["H4150"]],[6,7,["H4480","H2351"]],[7,9,["H6532"]],[9,10,["H834"]],[10,12,["H5921"]],[12,14,["H5715"]],[14,15,["H175"]],[15,18,["H1121"]],[18,20,["H6186"]],[20,23,["H4480","H6153"]],[23,24,["H5704"]],[24,25,["H1242"]],[25,26,["H6440"]],[26,28,["H3068"]],[28,33,["H2708"]],[33,35,["H5769"]],[35,38,["H1755"]],[38,41,["H4480","H854"]],[41,44,["H1121"]],[44,46,["H3478"]]]},{"k":2294,"v":[[0,2,["H7126"]],[2,3,["H859"]],[3,4,["H413"]],[4,5,["(H853)"]],[5,6,["H175"]],[6,8,["H251"]],[8,11,["H1121"]],[11,12,["H854"]],[12,15,["H4480","H8432"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,29,["H3547"]],[29,31,["H175"]],[31,32,["H5070"]],[32,34,["H30"]],[34,35,["H499"]],[35,37,["H385"]],[37,38,["H175"]],[38,39,["H1121"]]]},{"k":2295,"v":[[0,4,["H6213"]],[4,5,["H6944"]],[5,6,["H899"]],[6,8,["H175"]],[8,10,["H251"]],[10,12,["H3519"]],[12,15,["H8597"]]]},{"k":2296,"v":[[0,2,["H859"]],[2,4,["H1696"]],[4,5,["H413"]],[5,6,["H3605"]],[6,9,["H2450"]],[9,10,["H3820"]],[10,11,["H834"]],[11,15,["H4390"]],[15,17,["H7307"]],[17,19,["H2451"]],[19,23,["H6213","(H853)"]],[23,24,["H175"]],[24,25,["H899"]],[25,27,["H6942"]],[27,38,["H3547"]]]},{"k":2297,"v":[[0,2,["H428"]],[2,5,["H899"]],[5,6,["H834"]],[6,9,["H6213"]],[9,11,["H2833"]],[11,14,["H646"]],[14,17,["H4598"]],[17,20,["H8665"]],[20,21,["H3801"]],[21,23,["H4701"]],[23,26,["H73"]],[26,30,["H6213"]],[30,31,["H6944"]],[31,32,["H899"]],[32,34,["H175"]],[34,36,["H251"]],[36,39,["H1121"]],[39,49,["H3547"]]]},{"k":2298,"v":[[0,2,["H1992"]],[2,4,["H3947","(H853)"]],[4,5,["H2091"]],[5,7,["H8504"]],[7,9,["H713"]],[9,11,["H8438","H8144"]],[11,14,["H8336"]]]},{"k":2299,"v":[[0,4,["H6213","(H853)"]],[4,6,["H646"]],[6,8,["H2091"]],[8,10,["H8504"]],[10,13,["H713"]],[13,15,["H8438","H8144"]],[15,19,["H8336","H7806"]],[19,21,["H2803"]],[21,22,["H4639"]]]},{"k":2300,"v":[[0,3,["H1961"]],[3,5,["H8147"]],[5,6,["H3802"]],[6,8,["H2266"]],[8,9,["H413"]],[9,11,["H8147"]],[11,12,["H7098"]],[12,20,["H2266"]]]},{"k":2301,"v":[[0,4,["H2805"]],[4,7,["H642"]],[7,8,["H834"]],[8,10,["H5921"]],[10,13,["H1961"]],[13,14,["H4480"]],[14,20,["H4639"]],[20,24,["H2091"]],[24,26,["H8504"]],[26,28,["H713"]],[28,30,["H8438","H8144"]],[30,34,["H8336","H7806"]]]},{"k":2302,"v":[[0,4,["H3947","(H853)"]],[4,5,["H8147"]],[5,6,["H7718"]],[6,7,["H68"]],[7,9,["H6605"]],[9,10,["H5921"]],[10,13,["H8034"]],[13,16,["H1121"]],[16,18,["H3478"]]]},{"k":2303,"v":[[0,1,["H8337"]],[1,4,["H4480","H8034"]],[4,5,["H5921"]],[5,6,["H259"]],[6,7,["H68"]],[7,11,["H8337"]],[11,12,["H8034"]],[12,15,["H3498"]],[15,16,["H5921"]],[16,18,["H8145"]],[18,19,["H68"]],[19,23,["H8435"]]]},{"k":2304,"v":[[0,3,["H4639"]],[3,6,["H2796"]],[6,8,["H68"]],[8,11,["H6603"]],[11,14,["H2368"]],[14,17,["H6605","(H853)"]],[17,19,["H8147"]],[19,20,["H68"]],[20,21,["H5921"]],[21,23,["H8034"]],[23,26,["H1121"]],[26,28,["H3478"]],[28,31,["H6213"]],[31,35,["H4142"]],[35,37,["H4865"]],[37,39,["H2091"]]]},{"k":2305,"v":[[0,4,["H7760","(H853)"]],[4,6,["H8147"]],[6,7,["H68"]],[7,8,["H5921"]],[8,10,["H3802"]],[10,13,["H646"]],[13,15,["H68"]],[15,17,["H2146"]],[17,20,["H1121"]],[20,22,["H3478"]],[22,24,["H175"]],[24,26,["H5375","(H853)"]],[26,28,["H8034"]],[28,29,["H6440"]],[29,31,["H3068"]],[31,32,["H5921"]],[32,34,["H8147"]],[34,35,["H3802"]],[35,38,["H2146"]]]},{"k":2306,"v":[[0,4,["H6213"]],[4,5,["H4865"]],[5,7,["H2091"]]]},{"k":2307,"v":[[0,2,["H8147"]],[2,3,["H8333"]],[3,5,["H2889"]],[5,6,["H2091"]],[6,9,["H4020"]],[9,11,["H5688"]],[11,12,["H4639"]],[12,15,["H6213"]],[15,18,["H5414","(H853)"]],[18,20,["H5688"]],[20,21,["H8333"]],[21,22,["H5921"]],[22,24,["H4865"]]]},{"k":2308,"v":[[0,4,["H6213"]],[4,6,["H2833"]],[6,8,["H4941"]],[8,10,["H2803"]],[10,11,["H4639"]],[11,14,["H4639"]],[14,17,["H646"]],[17,20,["H6213"]],[20,23,["H2091"]],[23,25,["H8504"]],[25,28,["H713"]],[28,31,["H8438","H8144"]],[31,36,["H8336","H7806"]],[36,39,["H6213"]],[39,40,[]]]},{"k":2309,"v":[[0,1,["H7251"]],[1,4,["H1961"]],[4,6,["H3717"]],[6,8,["H2239"]],[8,12,["H753"]],[12,16,["H2239"]],[16,20,["H7341"]],[20,21,[]]]},{"k":2310,"v":[[0,4,["H4390"]],[4,7,["H4396"]],[7,9,["H68"]],[9,11,["H702"]],[11,12,["H2905"]],[12,14,["H68"]],[14,17,["H2905"]],[17,21,["H124"]],[21,23,["H6357"]],[23,26,["H1304"]],[26,31,["H259"]],[31,32,["H2905"]]]},{"k":2311,"v":[[0,3,["H8145"]],[3,4,["H2905"]],[4,8,["H5306"]],[8,10,["H5601"]],[10,13,["H3095"]]]},{"k":2312,"v":[[0,3,["H7992"]],[3,4,["H2905"]],[4,6,["H3958"]],[6,8,["H7618"]],[8,11,["H306"]]]},{"k":2313,"v":[[0,3,["H7243"]],[3,4,["H2905"]],[4,6,["H8658"]],[6,9,["H7718"]],[9,12,["H3471"]],[12,15,["H1961"]],[15,16,["H7660"]],[16,18,["H2091"]],[18,21,["H4396"]]]},{"k":2314,"v":[[0,3,["H68"]],[3,5,["H1961"]],[5,6,["H5921"]],[6,8,["H8034"]],[8,11,["H1121"]],[11,13,["H3478"]],[13,14,["H8147","H6240"]],[14,16,["H5921"]],[16,18,["H8034"]],[18,21,["H6603"]],[21,24,["H2368"]],[24,26,["H376"]],[26,27,["H5921"]],[27,29,["H8034"]],[29,32,["H1961"]],[32,36,["H8147","H6240"]],[36,37,["H7626"]]]},{"k":2315,"v":[[0,4,["H6213"]],[4,5,["H5921"]],[5,7,["H2833"]],[7,8,["H8331"]],[8,11,["H1383"]],[11,13,["H5688"]],[13,14,["H4639"]],[14,16,["H2889"]],[16,17,["H2091"]]]},{"k":2316,"v":[[0,4,["H6213"]],[4,5,["H5921"]],[5,7,["H2833"]],[7,8,["H8147"]],[8,9,["H2885"]],[9,11,["H2091"]],[11,14,["H5414","(H853)"]],[14,16,["H8147"]],[16,17,["H2885"]],[17,18,["H5921"]],[18,20,["H8147"]],[20,21,["H7098"]],[21,24,["H2833"]]]},{"k":2317,"v":[[0,4,["H5414","(H853)"]],[4,6,["H8147"]],[6,7,["H5688"]],[7,10,["H2091"]],[10,11,["H5921"]],[11,13,["H8147"]],[13,14,["H2885"]],[14,17,["H413"]],[17,19,["H7098"]],[19,22,["H2833"]]]},{"k":2318,"v":[[0,4,["H8147"]],[4,5,["H7098"]],[5,8,["H8147"]],[8,9,["H5688"]],[9,13,["H5414"]],[13,14,["H5921"]],[14,16,["H8147"]],[16,17,["H4865"]],[17,19,["H5414"]],[19,21,["H5921"]],[21,23,["H3802"]],[23,26,["H646"]],[26,27,["H413","H4136","H6440"]],[27,28,[]]]},{"k":2319,"v":[[0,4,["H6213"]],[4,5,["H8147"]],[5,6,["H2885"]],[6,8,["H2091"]],[8,12,["H7760"]],[12,14,["H5921"]],[14,16,["H8147"]],[16,17,["H7098"]],[17,20,["H2833"]],[20,21,["H5921"]],[21,23,["H8193"]],[23,25,["H834"]],[25,27,["H413"]],[27,29,["H5676"]],[29,32,["H646"]],[32,33,["H1004"]]]},{"k":2320,"v":[[0,2,["H8147"]],[2,4,["H2885"]],[4,6,["H2091"]],[6,9,["H6213"]],[9,12,["H5414"]],[12,14,["H5921"]],[14,16,["H8147"]],[16,17,["H3802"]],[17,20,["H646"]],[20,21,["H4480","H4295"]],[21,22,["H4480","H4136"]],[22,24,["H6440"]],[24,27,["H5980"]],[27,30,["H4225"]],[30,32,["H4480","H4605"]],[32,35,["H2805"]],[35,38,["H646"]]]},{"k":2321,"v":[[0,4,["H7405","(H853)"]],[4,6,["H2833"]],[6,9,["H4480","H2885"]],[9,11,["H413"]],[11,13,["H2885"]],[13,16,["H646"]],[16,19,["H6616"]],[19,21,["H8504"]],[21,25,["H1961"]],[25,26,["H5921"]],[26,29,["H2805"]],[29,32,["H646"]],[32,36,["H2833"]],[36,38,["H3808"]],[38,39,["H2118"]],[39,40,["H4480","H5921"]],[40,42,["H646"]]]},{"k":2322,"v":[[0,2,["H175"]],[2,4,["H5375","(H853)"]],[4,6,["H8034"]],[6,9,["H1121"]],[9,11,["H3478"]],[11,14,["H2833"]],[14,16,["H4941"]],[16,17,["H5921"]],[17,19,["H3820"]],[19,23,["H935"]],[23,24,["H413"]],[24,26,["H6944"]],[26,30,["H2146"]],[30,31,["H6440"]],[31,33,["H3068"]],[33,34,["H8548"]]]},{"k":2323,"v":[[0,4,["H5414"]],[4,5,["H413"]],[5,7,["H2833"]],[7,9,["H4941","(H853)"]],[9,11,["H224"]],[11,14,["H8550"]],[14,18,["H1961"]],[18,19,["H5921"]],[19,20,["H175"]],[20,21,["H3820"]],[21,25,["H935"]],[25,26,["H6440"]],[26,28,["H3068"]],[28,30,["H175"]],[30,32,["H5375","(H853)"]],[32,34,["H4941"]],[34,37,["H1121"]],[37,39,["H3478"]],[39,40,["H5921"]],[40,42,["H3820"]],[42,43,["H6440"]],[43,45,["H3068"]],[45,46,["H8548"]]]},{"k":2324,"v":[[0,4,["H6213","(H853)"]],[4,6,["H4598"]],[6,9,["H646"]],[9,10,["H3632"]],[10,12,["H8504"]]]},{"k":2325,"v":[[0,4,["H1961"]],[4,6,["H6310"]],[6,9,["H7218"]],[9,14,["H8432"]],[14,18,["H1961"]],[18,20,["H8193"]],[20,22,["H707"]],[22,23,["H4639"]],[23,25,["H5439"]],[25,27,["H6310"]],[27,34,["H6310"]],[34,37,["H8473"]],[37,40,["H1961"]],[40,41,["H3808"]],[41,42,["H7167"]]]},{"k":2326,"v":[[0,3,["H5921"]],[3,5,["H7757"]],[5,10,["H6213"]],[10,11,["H7416"]],[11,13,["H8504"]],[13,16,["H713"]],[16,19,["H8438","H8144"]],[19,21,["H5439","H5921"]],[21,23,["H7757"]],[23,26,["H6472"]],[26,28,["H2091"]],[28,29,["H8432"]],[29,32,["H5439"]]]},{"k":2327,"v":[[0,2,["H2091"]],[2,3,["H6472"]],[3,6,["H7416"]],[6,8,["H2091"]],[8,9,["H6472"]],[9,12,["H7416"]],[12,13,["H5921"]],[13,15,["H7757"]],[15,18,["H4598"]],[18,20,["H5439"]]]},{"k":2328,"v":[[0,4,["H1961"]],[4,5,["H5921"]],[5,6,["H175"]],[6,8,["H8334"]],[8,11,["H6963"]],[11,14,["H8085"]],[14,18,["H935"]],[18,19,["H413"]],[19,21,["H6944"]],[21,23,["H6440"]],[23,25,["H3068"]],[25,30,["H3318"]],[30,33,["H4191"]],[33,34,["H3808"]]]},{"k":2329,"v":[[0,4,["H6213"]],[4,6,["H6731"]],[6,8,["H2889"]],[8,9,["H2091"]],[9,11,["H6605"]],[11,12,["H5921"]],[12,16,["H6603"]],[16,19,["H2368"]],[19,20,["H6944"]],[20,23,["H3068"]]]},{"k":2330,"v":[[0,4,["H7760"]],[4,6,["H5921"]],[6,8,["H8504"]],[8,9,["H6616"]],[9,13,["H1961"]],[13,14,["H5921"]],[14,16,["H4701"]],[16,17,["H413"]],[17,19,["H4136","H6440"]],[19,22,["H4701"]],[22,25,["H1961"]]]},{"k":2331,"v":[[0,4,["H1961"]],[4,5,["H5921"]],[5,6,["H175"]],[6,7,["H4696"]],[7,9,["H175"]],[9,11,["H5375","(H853)"]],[11,13,["H5771"]],[13,17,["H6944"]],[17,18,["H834"]],[18,20,["H1121"]],[20,22,["H3478"]],[22,24,["H6942"]],[24,26,["H3605"]],[26,28,["H6944"]],[28,29,["H4979"]],[29,33,["H1961"]],[33,34,["H8548"]],[34,35,["H5921"]],[35,37,["H4696"]],[37,42,["H7522"]],[42,43,["H6440"]],[43,45,["H3068"]]]},{"k":2332,"v":[[0,4,["H7660"]],[4,6,["H3801"]],[6,9,["H8336"]],[9,13,["H6213"]],[13,15,["H4701"]],[15,18,["H8336"]],[18,22,["H6213"]],[22,24,["H73"]],[24,26,["H4639","H7551"]]]},{"k":2333,"v":[[0,3,["H175"]],[3,4,["H1121"]],[4,7,["H6213"]],[7,8,["H3801"]],[8,12,["H6213"]],[12,15,["H73"]],[15,17,["H4021"]],[17,20,["H6213"]],[20,24,["H3519"]],[24,27,["H8597"]]]},{"k":2334,"v":[[0,6,["H3847","(H853)","(H853)"]],[6,7,["H175"]],[7,9,["H251"]],[9,12,["H1121"]],[12,13,["H854"]],[13,17,["H4886"]],[17,20,["H4390","(H853)","H3027"]],[20,23,["H6942"]],[23,34,["H3547"]]]},{"k":2335,"v":[[0,4,["H6213"]],[4,6,["H906"]],[6,7,["H4370"]],[7,9,["H3680"]],[9,11,["H1320","H6172"]],[11,14,["H4480","H4975"]],[14,16,["H5704"]],[16,18,["H3409"]],[18,21,["H1961"]]]},{"k":2336,"v":[[0,4,["H1961"]],[4,5,["H5921"]],[5,6,["H175"]],[6,8,["H5921"]],[8,10,["H1121"]],[10,14,["H935"]],[14,15,["H413"]],[15,17,["H168"]],[17,20,["H4150"]],[20,21,["H176"]],[21,25,["H5066"]],[25,26,["H413"]],[26,28,["H4196"]],[28,30,["H8334"]],[30,33,["H6944"]],[33,37,["H5375"]],[37,38,["H3808"]],[38,39,["H5771"]],[39,41,["H4191"]],[41,46,["H2708"]],[46,48,["H5769"]],[48,53,["H2233"]],[53,54,["H310"]],[54,55,[]]]},{"k":2337,"v":[[0,2,["H2088"]],[2,5,["H1697"]],[5,6,["H834"]],[6,9,["H6213"]],[9,13,["H6942"]],[13,22,["H3547"]],[22,23,["H3947"]],[23,24,["H259"]],[24,25,["H1121","H1241"]],[25,26,["H6499"]],[26,28,["H8147"]],[28,29,["H352"]],[29,31,["H8549"]]]},{"k":2338,"v":[[0,2,["H4682"]],[2,3,["H3899"]],[3,5,["H2471"]],[5,6,["H4682"]],[6,7,["H1101"]],[7,9,["H8081"]],[9,11,["H7550"]],[11,12,["H4682"]],[12,13,["H4886"]],[13,15,["H8081"]],[15,17,["H2406"]],[17,18,["H5560"]],[18,21,["H6213"]],[21,22,[]]]},{"k":2339,"v":[[0,4,["H5414"]],[4,6,["H5921"]],[6,7,["H259"]],[7,8,["H5536"]],[8,10,["H7126"]],[10,14,["H5536"]],[14,17,["H6499"]],[17,20,["H8147"]],[20,21,["H352"]]]},{"k":2340,"v":[[0,2,["H175"]],[2,5,["H1121"]],[5,8,["H7126"]],[8,9,["H413"]],[9,11,["H6607"]],[11,14,["H168"]],[14,17,["H4150"]],[17,20,["H7364"]],[20,23,["H4325"]]]},{"k":2341,"v":[[0,4,["H3947","(H853)"]],[4,6,["H899"]],[6,9,["H3847","(H853)"]],[9,10,["H175","(H853)"]],[10,12,["H3801"]],[12,15,["H4598"]],[15,18,["H646"]],[18,21,["H646"]],[21,24,["H2833"]],[24,26,["H640"]],[26,31,["H2805"]],[31,34,["H646"]]]},{"k":2342,"v":[[0,4,["H7760"]],[4,6,["H4701"]],[6,7,["H5921"]],[7,9,["H7218"]],[9,11,["H5414","(H853)"]],[11,13,["H6944"]],[13,14,["H5145"]],[14,15,["H5921"]],[15,17,["H4701"]]]},{"k":2343,"v":[[0,4,["H3947","(H853)"]],[4,6,["H4888"]],[6,7,["H8081"]],[7,9,["H3332"]],[9,11,["H5921"]],[11,13,["H7218"]],[13,15,["H4886"]],[15,16,[]]]},{"k":2344,"v":[[0,4,["H7126"]],[4,6,["H1121"]],[6,10,["H3847","H3801"]],[10,11,[]]]},{"k":2345,"v":[[0,4,["H2296"]],[4,7,["H73"]],[7,8,["H175"]],[8,11,["H1121"]],[11,13,["H2280"]],[13,15,["H4021"]],[15,21,["H3550"]],[21,23,["H1961"]],[23,27,["H5769"]],[27,28,["H2708"]],[28,32,["H4390","H3027"]],[32,33,["H175"]],[33,36,["H1121"]]]},{"k":2346,"v":[[0,4,["(H853)"]],[4,6,["H6499"]],[6,9,["H7126"]],[9,10,["H6440"]],[10,12,["H168"]],[12,15,["H4150"]],[15,17,["H175"]],[17,20,["H1121"]],[20,22,["H5564","(H853)"]],[22,24,["H3027"]],[24,25,["H5921"]],[25,27,["H7218"]],[27,30,["H6499"]]]},{"k":2347,"v":[[0,4,["H7819","(H853)"]],[4,6,["H6499"]],[6,7,["H6440"]],[7,9,["H3068"]],[9,12,["H6607"]],[12,15,["H168"]],[15,18,["H4150"]]]},{"k":2348,"v":[[0,4,["H3947"]],[4,7,["H4480","H1818"]],[7,10,["H6499"]],[10,12,["H5414"]],[12,14,["H5921"]],[14,16,["H7161"]],[16,19,["H4196"]],[19,22,["H676"]],[22,24,["H8210"]],[24,25,["H3605"]],[25,27,["H1818"]],[27,28,["H413"]],[28,30,["H3247"]],[30,33,["H4196"]]]},{"k":2349,"v":[[0,4,["H3947","(H853)"]],[4,5,["H3605"]],[5,7,["H2459"]],[7,9,["H3680","(H853)"]],[9,11,["H7130"]],[11,14,["H3508"]],[14,17,["H5921"]],[17,19,["H3516"]],[19,22,["H8147"]],[22,23,["H3629"]],[23,26,["H2459"]],[26,27,["H834"]],[27,29,["H5921"]],[29,32,["H6999"]],[32,36,["H4196"]]]},{"k":2350,"v":[[0,3,["H1320"]],[3,6,["H6499"]],[6,9,["H5785"]],[9,12,["H6569"]],[12,15,["H8313"]],[15,17,["H784"]],[17,18,["H4480","H2351"]],[18,20,["H4264"]],[20,21,["H1931"]],[21,25,["H2403"]]]},{"k":2351,"v":[[0,4,["H3947"]],[4,5,["H259"]],[5,6,["H352"]],[6,8,["H175"]],[8,11,["H1121"]],[11,13,["H5564","(H853)"]],[13,15,["H3027"]],[15,16,["H5921"]],[16,18,["H7218"]],[18,21,["H352"]]]},{"k":2352,"v":[[0,4,["H7819","(H853)"]],[4,6,["H352"]],[6,10,["H3947","(H853)"]],[10,12,["H1818"]],[12,14,["H2236"]],[14,17,["H5439"]],[17,18,["H5921"]],[18,20,["H4196"]]]},{"k":2353,"v":[[0,4,["H5408"]],[4,6,["H352"]],[6,8,["H5409"]],[8,10,["H7364"]],[10,12,["H7130"]],[12,17,["H3767"]],[17,19,["H5414"]],[19,21,["H5921"]],[21,23,["H5409"]],[23,25,["H5921"]],[25,27,["H7218"]]]},{"k":2354,"v":[[0,4,["H6999","(H853)"]],[4,6,["H3605"]],[6,7,["H352"]],[7,10,["H4196"]],[10,11,["H1931"]],[11,15,["H5930"]],[15,18,["H3068"]],[18,22,["H5207"]],[22,23,["H7381"]],[23,28,["H801"]],[28,31,["H3068"]]]},{"k":2355,"v":[[0,4,["H3947","(H853)"]],[4,6,["H8145"]],[6,7,["H352"]],[7,9,["H175"]],[9,12,["H1121"]],[12,14,["H5564","(H853)"]],[14,16,["H3027"]],[16,17,["H5921"]],[17,19,["H7218"]],[19,22,["H352"]]]},{"k":2356,"v":[[0,4,["H7819","(H853)"]],[4,6,["H352"]],[6,8,["H3947"]],[8,11,["H4480","H1818"]],[11,13,["H5414"]],[13,15,["H5921"]],[15,17,["H8571"]],[17,21,["H241"]],[21,23,["H175"]],[23,25,["H5921"]],[25,27,["H8571"]],[27,30,["H3233"]],[30,31,["H241"]],[31,34,["H1121"]],[34,36,["H5921"]],[36,38,["H931"]],[38,41,["H3233"]],[41,42,["H3027"]],[42,44,["H5921"]],[44,47,["H931"]],[47,50,["H3233"]],[50,51,["H7272"]],[51,53,["H2236","(H853)"]],[53,55,["H1818"]],[55,56,["H5921"]],[56,58,["H4196"]],[58,60,["H5439"]]]},{"k":2357,"v":[[0,4,["H3947"]],[4,5,["H4480"]],[5,7,["H1818"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H4196"]],[12,17,["H4480","H8081","H4888"]],[17,19,["H5137"]],[19,21,["H5921"]],[21,22,["H175"]],[22,24,["H5921"]],[24,26,["H899"]],[26,28,["H5921"]],[28,30,["H1121"]],[30,32,["H5921"]],[32,34,["H899"]],[34,37,["H1121"]],[37,38,["H854"]],[38,41,["H1931"]],[41,44,["H6942"]],[44,47,["H899"]],[47,50,["H1121"]],[50,53,["H1121"]],[53,54,["H899"]],[54,55,["H854"]],[55,56,[]]]},{"k":2358,"v":[[0,4,["H3947"]],[4,5,["H4480"]],[5,7,["H352"]],[7,9,["H2459"]],[9,12,["H451"]],[12,15,["H2459"]],[15,17,["H3680","(H853)"]],[17,19,["H7130"]],[19,22,["H3508"]],[22,25,["H3516"]],[25,28,["H8147"]],[28,29,["H3629"]],[29,32,["H2459"]],[32,33,["H834"]],[33,35,["H5921"]],[35,39,["H3225"]],[39,40,["H7785"]],[40,41,["H3588"]],[41,42,["H1931"]],[42,45,["H352"]],[45,47,["H4394"]]]},{"k":2359,"v":[[0,2,["H259"]],[2,3,["H3603"]],[3,5,["H3899"]],[5,7,["H259"]],[7,8,["H2471"]],[8,10,["H8081"]],[10,11,["H3899"]],[11,13,["H259"]],[13,14,["H7550"]],[14,18,["H4480","H5536"]],[18,22,["H4682"]],[22,23,["H834"]],[23,25,["H6440"]],[25,27,["H3068"]]]},{"k":2360,"v":[[0,4,["H7760"]],[4,5,["H3605"]],[5,6,["H5921"]],[6,8,["H3709"]],[8,10,["H175"]],[10,12,["H5921"]],[12,14,["H3709"]],[14,17,["H1121"]],[17,20,["H5130"]],[20,25,["H8573"]],[25,26,["H6440"]],[26,28,["H3068"]]]},{"k":2361,"v":[[0,4,["H3947"]],[4,8,["H4480","H3027"]],[8,10,["H6999"]],[10,14,["H4196"]],[14,15,["H5921"]],[15,18,["H5930"]],[18,21,["H5207"]],[21,22,["H7381"]],[22,23,["H6440"]],[23,25,["H3068"]],[25,26,["H1931"]],[26,32,["H801"]],[32,35,["H3068"]]]},{"k":2362,"v":[[0,4,["H3947","(H853)"]],[4,6,["H2373"]],[6,9,["H4480","H352"]],[9,11,["H175"]],[11,12,["H4394"]],[12,14,["H5130"]],[14,19,["H8573"]],[19,20,["H6440"]],[20,22,["H3068"]],[22,26,["H1961"]],[26,28,["H4490"]]]},{"k":2363,"v":[[0,4,["H6942","(H853)"]],[4,6,["H2373"]],[6,10,["H8573"]],[10,13,["H7785"]],[13,17,["H8641"]],[17,18,["H834"]],[18,20,["H5130"]],[20,22,["H834"]],[22,25,["H7311"]],[25,28,["H4480","H352"]],[28,31,["H4394"]],[31,35,["H4480","H834"]],[35,38,["H175"]],[38,42,["H4480","H834"]],[42,46,["H1121"]]]},{"k":2364,"v":[[0,4,["H1961"]],[4,5,["H175"]],[5,8,["H1121"]],[8,11,["H2706"]],[11,13,["H5769"]],[13,14,["H4480","H854"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,19,["H3588"]],[19,20,["H1931"]],[20,24,["H8641"]],[24,28,["H1961"]],[28,31,["H8641"]],[31,32,["H4480","H854"]],[32,34,["H1121"]],[34,36,["H3478"]],[36,39,["H4480","H2077"]],[39,43,["H8002"]],[43,47,["H8641"]],[47,50,["H3068"]]]},{"k":2365,"v":[[0,3,["H6944"]],[3,4,["H899"]],[4,6,["H175"]],[6,8,["H1961"]],[8,10,["H1121"]],[10,11,["H310"]],[11,15,["H4886"]],[15,20,["H4390","(H853)","H3027"]],[20,22,[]]]},{"k":2366,"v":[[0,3,["H4480","H1121"]],[3,6,["H3548"]],[6,9,["H8478"]],[9,13,["H3847"]],[13,14,["H7651"]],[14,15,["H3117"]],[15,16,["H834"]],[16,18,["H935"]],[18,19,["H413"]],[19,21,["H168"]],[21,24,["H4150"]],[24,26,["H8334"]],[26,29,["H6944"]],[29,30,[]]]},{"k":2367,"v":[[0,4,["H3947"]],[4,6,["H352"]],[6,9,["H4394"]],[9,11,["H1310","(H853)"]],[11,13,["H1320"]],[13,16,["H6918"]],[16,17,["H4725"]]]},{"k":2368,"v":[[0,2,["H175"]],[2,5,["H1121"]],[5,7,["H398","(H853)"]],[7,9,["H1320"]],[9,12,["H352"]],[12,15,["H3899"]],[15,16,["H834"]],[16,20,["H5536"]],[20,23,["H6607"]],[23,26,["H168"]],[26,29,["H4150"]]]},{"k":2369,"v":[[0,4,["H398"]],[4,7,["H834"]],[7,11,["H3722"]],[11,13,["H4390","(H853)","H3027"]],[13,16,["H6942"]],[16,20,["H2114"]],[20,22,["H3808"]],[22,23,["H398"]],[23,25,["H3588"]],[25,26,["H1992"]],[26,28,["H6944"]]]},{"k":2370,"v":[[0,2,["H518"]],[2,6,["H4480","H1320"]],[6,9,["H4394"]],[9,11,["H4480"]],[11,13,["H3899"]],[13,14,["H3498"]],[14,15,["H5704"]],[15,17,["H1242"]],[17,21,["H8313","(H853)"]],[21,23,["H3498"]],[23,25,["H784"]],[25,28,["H3808"]],[28,30,["H398"]],[30,31,["H3588"]],[31,32,["H1931"]],[32,34,["H6944"]]]},{"k":2371,"v":[[0,2,["H3602"]],[2,5,["H6213"]],[5,7,["H175"]],[7,11,["H1121"]],[11,14,["H3605"]],[14,16,["H834"]],[16,19,["H6680"]],[19,21,["H7651"]],[21,22,["H3117"]],[22,25,["H4390","H3027"]],[25,26,[]]]},{"k":2372,"v":[[0,4,["H6213"]],[4,6,["H3117"]],[6,8,["H6499"]],[8,12,["H2403"]],[12,13,["H5921"]],[13,14,["H3725"]],[14,18,["H2398","H5921"]],[18,20,["H4196"]],[20,26,["H3722"]],[26,27,["H5921"]],[27,32,["H4886"]],[32,35,["H6942"]],[35,36,[]]]},{"k":2373,"v":[[0,1,["H7651"]],[1,2,["H3117"]],[2,7,["H3722"]],[7,8,["H5921"]],[8,10,["H4196"]],[10,12,["H6942"]],[12,17,["H1961"]],[17,19,["H4196"]],[19,21,["H6944","H6944"]],[21,22,["H3605"]],[22,23,["H5060"]],[23,25,["H4196"]],[25,28,["H6942"]]]},{"k":2374,"v":[[0,2,["H2088"]],[2,5,["H834"]],[5,8,["H6213"]],[8,9,["H5921"]],[9,11,["H4196"]],[11,12,["H8147"]],[12,13,["H3532"]],[13,16,["H1121"]],[16,17,["H8141"]],[17,20,["H3117"]],[20,21,["H8548"]]]},{"k":2375,"v":[[0,0,["(H853)"]],[0,2,["H259"]],[2,3,["H3532"]],[3,6,["H6213"]],[6,9,["H1242"]],[9,12,["H8145"]],[12,13,["H3532"]],[13,16,["H6213"]],[16,17,["H996"]],[17,18,["H6153"]]]},{"k":2376,"v":[[0,4,["H259"]],[4,5,["H3532"]],[5,8,["H6241"]],[8,10,["H5560"]],[10,11,["H1101"]],[11,15,["H7253"]],[15,18,["H1969"]],[18,20,["H3795"]],[20,21,["H8081"]],[21,25,["H7243"]],[25,28,["H1969"]],[28,30,["H3196"]],[30,34,["H5262"]]]},{"k":2377,"v":[[0,3,["H8145"]],[3,4,["H3532"]],[4,7,["H6213"]],[7,8,["H996"]],[8,9,["H6153"]],[9,12,["H6213"]],[12,18,["H4503"]],[18,21,["H1242"]],[21,27,["H5262"]],[27,31,["H5207"]],[31,32,["H7381"]],[32,37,["H801"]],[37,40,["H3068"]]]},{"k":2378,"v":[[0,5,["H8548"]],[5,7,["H5930"]],[7,10,["H1755"]],[10,13,["H6607"]],[13,16,["H168"]],[16,19,["H4150"]],[19,20,["H6440"]],[20,22,["H3068"]],[22,23,["H834","H8033"]],[23,26,["H3259"]],[26,29,["H1696"]],[29,30,["H8033"]],[30,31,["H413"]],[31,32,[]]]},{"k":2379,"v":[[0,2,["H8033"]],[2,5,["H3259"]],[5,8,["H1121"]],[8,10,["H3478"]],[10,16,["H6942"]],[16,19,["H3519"]]]},{"k":2380,"v":[[0,4,["H6942","(H853)"]],[4,6,["H168"]],[6,9,["H4150"]],[9,12,["H4196"]],[12,15,["H6942"]],[15,18,["H175"]],[18,21,["H1121"]],[21,29,["H3547"]]]},{"k":2381,"v":[[0,4,["H7931"]],[4,5,["H8432"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,12,["H1961"]],[12,14,["H430"]]]},{"k":2382,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,11,["H430"]],[11,12,["H834"]],[12,15,["H3318","(H853)"]],[15,19,["H4480","H776"]],[19,21,["H4714"]],[21,25,["H7931"]],[25,26,["H8432"]],[26,28,["H589"]],[28,31,["H3068"]],[31,33,["H430"]]]},{"k":2383,"v":[[0,4,["H6213"]],[4,6,["H4196"]],[6,8,["H4729"]],[8,9,["H7004"]],[9,12,["H7848"]],[12,13,["H6086"]],[13,16,["H6213"]],[16,17,[]]]},{"k":2384,"v":[[0,2,["H520"]],[2,6,["H753"]],[6,10,["H520"]],[10,12,["H7341"]],[12,14,["H7251"]],[14,17,["H1961"]],[17,20,["H520"]],[20,24,["H6967"]],[24,27,["H7161"]],[27,31,["H4480"]],[31,33,[]]]},{"k":2385,"v":[[0,4,["H6823"]],[4,7,["H2889"]],[7,8,["H2091","(H853)"]],[8,10,["H1406"]],[10,14,["H7023"]],[14,17,["H5439"]],[17,20,["H7161"]],[20,25,["H6213"]],[25,29,["H2213"]],[29,31,["H2091"]],[31,33,["H5439"]]]},{"k":2386,"v":[[0,2,["H8147"]],[2,3,["H2091"]],[3,4,["H2885"]],[4,7,["H6213"]],[7,10,["H4480","H8478"]],[10,12,["H2213"]],[12,15,["H5921"]],[15,17,["H8147"]],[17,18,["H6763"]],[18,20,["H5921"]],[20,22,["H8147"]],[22,23,["H6654"]],[23,28,["H6213"]],[28,33,["H1961"]],[33,35,["H1004"]],[35,38,["H905"]],[38,40,["H5375"]],[40,42,["H1992"]]]},{"k":2387,"v":[[0,4,["H6213","(H853)"]],[4,6,["H905"]],[6,8,["H7848"]],[8,9,["H6086"]],[9,11,["H6823"]],[11,14,["H2091"]]]},{"k":2388,"v":[[0,4,["H5414"]],[4,6,["H6440"]],[6,8,["H6532"]],[8,9,["H834"]],[9,11,["H5921"]],[11,13,["H727"]],[13,16,["H5715"]],[16,17,["H6440"]],[17,20,["H3727"]],[20,21,["H834"]],[21,23,["H5921"]],[23,25,["H5715"]],[25,26,["H834","H8033"]],[26,29,["H3259"]],[29,31,[]]]},{"k":2389,"v":[[0,2,["H175"]],[2,4,["H6999"]],[4,5,["H5921"]],[5,6,["H5561"]],[6,7,["H7004"]],[7,9,["H1242","H1242"]],[9,12,["H3190","(H853)"]],[12,14,["H5216"]],[14,18,["H6999"]],[18,20,[]]]},{"k":2390,"v":[[0,3,["H175"]],[3,4,["H5927","(H853)"]],[4,6,["H5216"]],[6,7,["H996"]],[7,8,["H6153"]],[8,12,["H6999"]],[12,16,["H8548"]],[16,17,["H7004"]],[17,18,["H6440"]],[18,20,["H3068"]],[20,23,["H1755"]]]},{"k":2391,"v":[[0,3,["H5927"]],[3,4,["H3808"]],[4,5,["H2114"]],[5,6,["H7004"]],[6,7,["H5921"]],[7,10,["H5930"]],[10,13,["H4503"]],[13,14,["H3808"]],[14,17,["H5258"]],[17,19,["H5262"]],[19,20,["H5921"]]]},{"k":2392,"v":[[0,2,["H175"]],[2,6,["H3722"]],[6,7,["H5921"]],[7,9,["H7161"]],[9,12,["H259"]],[12,15,["H8141"]],[15,18,["H4480","H1818"]],[18,22,["H2403"]],[22,24,["H3725"]],[24,25,["H259"]],[25,28,["H8141"]],[28,32,["H3722"]],[32,33,["H5921"]],[33,37,["H1755"]],[37,38,["H1931"]],[38,41,["H6944","H6944"]],[41,44,["H3068"]]]},{"k":2393,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2394,"v":[[0,1,["H3588"]],[1,3,["H5375","(H853)"]],[3,5,["H7218"]],[5,8,["H1121"]],[8,10,["H3478"]],[10,13,["H6485"]],[13,17,["H5414"]],[17,19,["H376"]],[19,21,["H3724"]],[21,24,["H5315"]],[24,27,["H3068"]],[27,30,["H6485"]],[30,34,["H1961"]],[34,35,["H3808"]],[35,36,["H5063"]],[36,41,["H6485"]],[41,42,[]]]},{"k":2395,"v":[[0,1,["H2088"]],[1,4,["H5414"]],[4,6,["H3605"]],[6,8,["H5674"]],[8,9,["H5921"]],[9,13,["H6485"]],[13,14,["H4276"]],[14,16,["H8255"]],[16,19,["H8255"]],[19,22,["H6944"]],[22,24,["H8255"]],[24,26,["H6242"]],[26,27,["H1626"]],[27,29,["H4276"]],[29,30,["H8255"]],[30,34,["H8641"]],[34,37,["H3068"]]]},{"k":2396,"v":[[0,2,["H3605"]],[2,4,["H5674"]],[4,5,["H5921"]],[5,9,["H6485"]],[9,11,["H6242"]],[11,12,["H8141"]],[12,13,["H4480","H1121"]],[13,15,["H4605"]],[15,17,["H5414"]],[17,19,["H8641"]],[19,22,["H3068"]]]},{"k":2397,"v":[[0,2,["H6223"]],[2,4,["H3808"]],[4,6,["H7235"]],[6,9,["H1800"]],[9,11,["H3808"]],[11,13,["H4591"]],[13,15,["H4480","H4276"]],[15,17,["H8255"]],[17,20,["H5414","(H853)"]],[20,22,["H8641"]],[22,25,["H3068"]],[25,29,["H3722"]],[29,30,["H5921"]],[30,32,["H5315"]]]},{"k":2398,"v":[[0,4,["H3947","(H853)"]],[4,6,["H3725"]],[6,7,["H3701"]],[7,8,["H4480","H854"]],[8,10,["H1121"]],[10,12,["H3478"]],[12,15,["H5414"]],[15,17,["H5921"]],[17,19,["H5656"]],[19,22,["H168"]],[22,25,["H4150"]],[25,29,["H1961"]],[29,31,["H2146"]],[31,34,["H1121"]],[34,36,["H3478"]],[36,37,["H6440"]],[37,39,["H3068"]],[39,43,["H3722"]],[43,44,["H5921"]],[44,46,["H5315"]]]},{"k":2399,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2400,"v":[[0,4,["H6213"]],[4,6,["H3595"]],[6,8,["H5178"]],[8,11,["H3653"]],[11,14,["H5178"]],[14,16,["H7364"]],[16,21,["H5414"]],[21,23,["H996"]],[23,25,["H168"]],[25,28,["H4150"]],[28,31,["H4196"]],[31,35,["H5414"]],[35,36,["H4325"]],[36,37,["H8033"]]]},{"k":2401,"v":[[0,2,["H175"]],[2,5,["H1121"]],[5,7,["H7364","(H853)"]],[7,9,["H3027"]],[9,12,["H7272"]],[12,13,["H4480"]]]},{"k":2402,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H168"]],[6,9,["H4150"]],[9,12,["H7364"]],[12,14,["H4325"]],[14,17,["H4191"]],[17,18,["H3808"]],[18,19,["H176"]],[19,23,["H5066"]],[23,24,["H413"]],[24,26,["H4196"]],[26,28,["H8334"]],[28,30,["H6999"]],[30,34,["H801"]],[34,37,["H3068"]]]},{"k":2403,"v":[[0,4,["H7364"]],[4,6,["H3027"]],[6,9,["H7272"]],[9,12,["H4191"]],[12,13,["H3808"]],[13,17,["H1961"]],[17,19,["H2706"]],[19,21,["H5769"]],[21,30,["H2233"]],[30,33,["H1755"]]]},{"k":2404,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2405,"v":[[0,1,["H3947"]],[1,2,["H859"]],[2,6,["H7218"]],[6,7,["H1314"]],[7,9,["H1865"]],[9,10,["H4753"]],[10,11,["H2568"]],[11,12,["H3967"]],[12,16,["H1314"]],[16,17,["H7076"]],[17,20,["H4276"]],[20,23,["H3967"]],[23,25,["H2572"]],[25,29,["H1314"]],[29,30,["H7070"]],[30,32,["H3967"]],[32,34,["H2572"]],[34,35,[]]]},{"k":2406,"v":[[0,3,["H6916"]],[3,4,["H2568"]],[4,5,["H3967"]],[5,9,["H8255"]],[9,12,["H6944"]],[12,15,["H8081"]],[15,16,["H2132"]],[16,18,["H1969"]]]},{"k":2407,"v":[[0,4,["H6213"]],[4,7,["H8081"]],[7,9,["H6944"]],[9,10,["H4888"]],[10,12,["H7545"]],[12,13,["H4842"]],[13,16,["H4639"]],[16,19,["H7543"]],[19,22,["H1961"]],[22,24,["H6944"]],[24,25,["H4888"]],[25,26,["H8081"]]]},{"k":2408,"v":[[0,4,["H4886","(H853)"]],[4,6,["H168"]],[6,9,["H4150"]],[9,13,["H727"]],[13,16,["H5715"]]]},{"k":2409,"v":[[0,3,["H7979"]],[3,5,["H3605"]],[5,7,["H3627"]],[7,10,["H4501"]],[10,13,["H3627"]],[13,16,["H4196"]],[16,18,["H7004"]]]},{"k":2410,"v":[[0,3,["H4196"]],[3,6,["H5930"]],[6,8,["H3605"]],[8,10,["H3627"]],[10,13,["H3595"]],[13,16,["H3653"]]]},{"k":2411,"v":[[0,4,["H6942"]],[4,9,["H1961"]],[9,11,["H6944","H6944"]],[11,12,["H3605"]],[12,13,["H5060"]],[13,17,["H6942"]]]},{"k":2412,"v":[[0,4,["H4886"]],[4,5,["H175"]],[5,8,["H1121"]],[8,10,["H6942"]],[10,21,["H3547"]]]},{"k":2413,"v":[[0,4,["H1696"]],[4,5,["H413"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,10,["H559"]],[10,11,["H2088"]],[11,13,["H1961"]],[13,15,["H6944"]],[15,16,["H4888"]],[16,17,["H8081"]],[17,22,["H1755"]]]},{"k":2414,"v":[[0,1,["H5921"]],[1,2,["H120"]],[2,3,["H1320"]],[3,6,["H3808"]],[6,8,["H3251"]],[8,9,["H3808"]],[9,12,["H6213"]],[12,16,["H3644"]],[16,19,["H4971"]],[19,22,["H1931"]],[22,24,["H6944"]],[24,28,["H1961"]],[28,29,["H6944"]],[29,31,[]]]},{"k":2415,"v":[[0,1,["H376","H834"]],[1,2,["H7543"]],[2,5,["H3644"]],[5,7,["H834"]],[7,8,["H5414"]],[8,10,["H4480"]],[10,12,["H5921"]],[12,14,["H2114"]],[14,19,["H3772"]],[19,22,["H4480","H5971"]]]},{"k":2416,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H3947"]],[7,11,["H5561"]],[11,12,["H5198"]],[12,14,["H7827"]],[14,16,["H2464"]],[16,19,["H5561"]],[19,21,["H2134"]],[21,22,["H3828"]],[22,24,["H905"]],[24,27,["H1961"]],[27,29,["H905"]],[29,30,[]]]},{"k":2417,"v":[[0,4,["H6213"]],[4,7,["H7004"]],[7,9,["H7545"]],[9,12,["H4639"]],[12,15,["H7543"]],[15,17,["H4414"]],[17,18,["H2889"]],[18,20,["H6944"]]]},{"k":2418,"v":[[0,4,["H7833"]],[4,6,["H4480"]],[6,9,["H1854"]],[9,11,["H5414"]],[11,12,["H4480"]],[12,14,["H6440"]],[14,16,["H5715"]],[16,19,["H168"]],[19,22,["H4150"]],[22,23,["H834","H8033"]],[23,26,["H3259"]],[26,31,["H1961"]],[31,35,["H6944","H6944"]]]},{"k":2419,"v":[[0,5,["H7004"]],[5,6,["H834"]],[6,9,["H6213"]],[9,12,["H3808"]],[12,13,["H6213"]],[13,19,["H4971"]],[19,23,["H1961"]],[23,26,["H6944"]],[26,29,["H3068"]]]},{"k":2420,"v":[[0,1,["H376","H834"]],[1,3,["H6213"]],[3,6,["H3644"]],[6,8,["H7306"]],[8,14,["H3772"]],[14,17,["H4480","H5971"]]]},{"k":2421,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2422,"v":[[0,1,["H7200"]],[1,4,["H7121"]],[4,6,["H8034"]],[6,7,["H1212"]],[7,9,["H1121"]],[9,11,["H221"]],[11,13,["H1121"]],[13,15,["H2354"]],[15,18,["H4294"]],[18,20,["H3063"]]]},{"k":2423,"v":[[0,4,["H4390"]],[4,8,["H7307"]],[8,10,["H430"]],[10,12,["H2451"]],[12,15,["H8394"]],[15,18,["H1847"]],[18,22,["H3605"]],[22,24,["H4399"]]]},{"k":2424,"v":[[0,2,["H2803"]],[2,4,["H4284"]],[4,6,["H6213"]],[6,8,["H2091"]],[8,11,["H3701"]],[11,14,["H5178"]]]},{"k":2425,"v":[[0,3,["H2799"]],[3,5,["H68"]],[5,7,["H4390"]],[7,11,["H2799"]],[11,13,["H6086"]],[13,15,["H6213"]],[15,18,["H3605"]],[18,20,["H4399"]]]},{"k":2426,"v":[[0,2,["H589"]],[2,3,["H2009"]],[3,6,["H5414"]],[6,7,["H854"]],[7,8,["(H853)"]],[8,9,["H171"]],[9,11,["H1121"]],[11,13,["H294"]],[13,16,["H4294"]],[16,18,["H1835"]],[18,22,["H3820"]],[22,24,["H3605"]],[24,27,["H2450"]],[27,28,["H3820"]],[28,31,["H5414"]],[31,32,["H2451"]],[32,36,["H6213","(H853)"]],[36,37,["H3605"]],[37,38,["H834"]],[38,41,["H6680"]],[41,42,[]]]},{"k":2427,"v":[[0,0,["(H853)"]],[0,2,["H168"]],[2,5,["H4150"]],[5,8,["H727"]],[8,11,["H5715"]],[11,15,["H3727"]],[15,16,["H834"]],[16,18,["H5921"]],[18,20,["H3605"]],[20,22,["H3627"]],[22,25,["H168"]]]},{"k":2428,"v":[[0,3,["H7979"]],[3,6,["H3627"]],[6,9,["H2889"]],[9,10,["H4501"]],[10,12,["H3605"]],[12,14,["H3627"]],[14,17,["H4196"]],[17,19,["H7004"]]]},{"k":2429,"v":[[0,3,["H4196"]],[3,6,["H5930"]],[6,8,["H3605"]],[8,10,["H3627"]],[10,13,["H3595"]],[13,16,["H3653"]]]},{"k":2430,"v":[[0,3,["H899"]],[3,5,["H8278"]],[5,8,["H6944"]],[8,9,["H899"]],[9,11,["H175"]],[11,13,["H3548"]],[13,16,["H899"]],[16,19,["H1121"]],[19,25,["H3547"]]]},{"k":2431,"v":[[0,3,["H4888"]],[3,4,["H8081"]],[4,6,["H5561"]],[6,7,["H7004"]],[7,10,["H6944"]],[10,14,["H3605"]],[14,15,["H834"]],[15,18,["H6680"]],[18,22,["H6213"]]]},{"k":2432,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2433,"v":[[0,1,["H1696"]],[1,2,["H859"]],[2,4,["H413"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,9,["H559"]],[9,10,["H389","(H853)"]],[10,12,["H7676"]],[12,15,["H8104"]],[15,16,["H3588"]],[16,17,["H1931"]],[17,20,["H226"]],[20,21,["H996"]],[21,27,["H1755"]],[27,31,["H3045"]],[31,32,["H3588"]],[32,33,["H589"]],[33,36,["H3068"]],[36,39,["H6942"]],[39,40,[]]]},{"k":2434,"v":[[0,3,["H8104","(H853)"]],[3,5,["H7676"]],[5,7,["H3588"]],[7,8,["H1931"]],[8,10,["H6944"]],[10,16,["H2490"]],[16,23,["H4191","H4191"]],[23,24,["H3588"]],[24,25,["H3605"]],[25,26,["H6213"]],[26,28,["H4399"]],[28,30,["H1931"]],[30,31,["H5315"]],[31,35,["H3772"]],[35,37,["H4480","H7130"]],[37,39,["H5971"]]]},{"k":2435,"v":[[0,1,["H8337"]],[1,2,["H3117"]],[2,4,["H4399"]],[4,6,["H6213"]],[6,10,["H7637"]],[10,13,["H7676"]],[13,15,["H7677"]],[15,16,["H6944"]],[16,19,["H3068"]],[19,20,["H3605"]],[20,21,["H6213"]],[21,23,["H4399"]],[23,26,["H7676"]],[26,27,["H3117"]],[27,34,["H4191","H4191"]]]},{"k":2436,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H8104","(H853)"]],[7,9,["H7676"]],[9,11,["H6213","(H853)"]],[11,13,["H7676"]],[13,16,["H1755"]],[16,19,["H5769"]],[19,20,["H1285"]]]},{"k":2437,"v":[[0,1,["H1931"]],[1,4,["H226"]],[4,5,["H996"]],[5,9,["H1121"]],[9,11,["H3478"]],[11,13,["H5769"]],[13,14,["H3588"]],[14,16,["H8337"]],[16,17,["H3117"]],[17,19,["H3068"]],[19,20,["H6213","(H853)"]],[20,21,["H8064"]],[21,23,["H776"]],[23,27,["H7637"]],[27,28,["H3117"]],[28,30,["H7673"]],[30,33,["H5314"]]]},{"k":2438,"v":[[0,3,["H5414"]],[3,4,["H413"]],[4,5,["H4872"]],[5,11,["H3615"]],[11,13,["H1696"]],[13,14,["H854"]],[14,17,["H2022"]],[17,18,["H5514"]],[18,19,["H8147"]],[19,20,["H3871"]],[20,22,["H5715"]],[22,23,["H3871"]],[23,25,["H68"]],[25,26,["H3789"]],[26,29,["H676"]],[29,31,["H430"]]]},{"k":2439,"v":[[0,4,["H5971"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,7,["H4872"]],[7,8,["H954"]],[8,11,["H3381"]],[11,13,["H4480"]],[13,15,["H2022"]],[15,17,["H5971"]],[17,20,["H6950"]],[20,21,["H5921"]],[21,22,["H175"]],[22,24,["H559"]],[24,25,["H413"]],[25,27,["H6965"]],[27,28,["H6213"]],[28,30,["H430"]],[30,31,["H834"]],[31,33,["H1980"]],[33,34,["H6440"]],[34,36,["H3588"]],[36,39,["H2088"]],[39,40,["H4872"]],[40,42,["H376"]],[42,43,["H834"]],[43,46,["H5927"]],[46,50,["H4480","H776"]],[50,52,["H4714"]],[52,54,["H3045"]],[54,55,["H3808"]],[55,56,["H4100"]],[56,58,["H1961"]],[58,60,[]]]},{"k":2440,"v":[[0,2,["H175"]],[2,3,["H559"]],[3,4,["H413"]],[4,7,["H6561"]],[7,9,["H2091"]],[9,10,["H5141"]],[10,11,["H834"]],[11,15,["H241"]],[15,18,["H802"]],[18,21,["H1121"]],[21,25,["H1323"]],[25,27,["H935"]],[27,29,["H413"]],[29,30,[]]]},{"k":2441,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H6561","(H853)"]],[6,8,["H2091"]],[8,9,["H5141"]],[9,10,["H834"]],[10,14,["H241"]],[14,16,["H935"]],[16,18,["H413"]],[18,19,["H175"]]]},{"k":2442,"v":[[0,3,["H3947"]],[3,7,["H4480","H3027"]],[7,9,["H6696"]],[9,14,["H2747"]],[14,18,["H6213"]],[18,21,["H4541"]],[21,22,["H5695"]],[22,25,["H559"]],[25,26,["H428"]],[26,29,["H430"]],[29,31,["H3478"]],[31,32,["H834"]],[32,35,["H5927"]],[35,39,["H4480","H776"]],[39,41,["H4714"]]]},{"k":2443,"v":[[0,3,["H175"]],[3,4,["H7200"]],[4,7,["H1129"]],[7,9,["H4196"]],[9,10,["H6440"]],[10,13,["H175"]],[13,15,["H7121"]],[15,17,["H559"]],[17,19,["H4279"]],[19,22,["H2282"]],[22,25,["H3068"]]]},{"k":2444,"v":[[0,5,["H7925"]],[5,8,["H4480","H4283"]],[8,10,["H5927"]],[10,12,["H5930"]],[12,14,["H5066"]],[14,16,["H8002"]],[16,19,["H5971"]],[19,21,["H3427"]],[21,23,["H398"]],[23,26,["H8354"]],[26,29,["H6965"]],[29,31,["H6711"]]]},{"k":2445,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H1980"]],[7,10,["H3381"]],[10,11,["H3588"]],[11,13,["H5971"]],[13,14,["H834"]],[14,16,["H5927"]],[16,20,["H4480","H776"]],[20,22,["H4714"]],[22,24,["H7843"]],[24,25,[]]]},{"k":2446,"v":[[0,4,["H5493"]],[4,5,["H4118"]],[5,7,["H4480"]],[7,9,["H1870"]],[9,10,["H834"]],[10,12,["H6680"]],[12,16,["H6213"]],[16,19,["H4541"]],[19,20,["H5695"]],[20,23,["H7812"]],[23,27,["H2076"]],[27,30,["H559"]],[30,31,["H428"]],[31,34,["H430"]],[34,36,["H3478"]],[36,37,["H834"]],[37,41,["H5927"]],[41,45,["H4480","H776"]],[45,47,["H4714"]]]},{"k":2447,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H7200","(H853)"]],[9,10,["H2088"]],[10,11,["H5971"]],[11,13,["H2009"]],[13,14,["H1931"]],[14,17,["H7186","H6203"]],[17,18,["H5971"]]]},{"k":2448,"v":[[0,1,["H6258"]],[1,5,["H5117"]],[5,8,["H639"]],[8,11,["H2734"]],[11,18,["H3615"]],[18,23,["H6213"]],[23,27,["H1419"]],[27,28,["H1471"]]]},{"k":2449,"v":[[0,2,["H4872"]],[2,3,["H2470","(H853)"]],[3,5,["H3068"]],[5,7,["H430"]],[7,9,["H559"]],[9,10,["H3068"]],[10,11,["H4100"]],[11,14,["H639"]],[14,16,["H2734"]],[16,19,["H5971"]],[19,20,["H834"]],[20,24,["H3318"]],[24,28,["H4480","H776"]],[28,30,["H4714"]],[30,32,["H1419"]],[32,33,["H3581"]],[33,37,["H2389"]],[37,38,["H3027"]]]},{"k":2450,"v":[[0,1,["H4100"]],[1,4,["H4714"]],[4,5,["H559"]],[5,7,["H559"]],[7,9,["H7451"]],[9,14,["H3318"]],[14,16,["H2026"]],[16,20,["H2022"]],[20,23,["H3615"]],[23,25,["H4480","H5921"]],[25,27,["H6440"]],[27,30,["H127"]],[30,31,["H7725"]],[31,35,["H4480","H2740","H639"]],[35,37,["H5162"]],[37,38,["H5921"]],[38,40,["H7451"]],[40,43,["H5971"]]]},{"k":2451,"v":[[0,1,["H2142"]],[1,2,["H85"]],[2,3,["H3327"]],[3,5,["H3478"]],[5,7,["H5650"]],[7,9,["H834"]],[9,11,["H7650"]],[11,17,["H1696"]],[17,18,["H413"]],[18,22,["H7235","(H853)"]],[22,24,["H2233"]],[24,27,["H3556"]],[27,29,["H8064"]],[29,31,["H3605"]],[31,32,["H2063"]],[32,33,["H776"]],[33,34,["H834"]],[34,37,["H559"]],[37,41,["H5414"]],[41,44,["H2233"]],[44,48,["H5157"]],[48,51,["H5769"]]]},{"k":2452,"v":[[0,3,["H3068"]],[3,4,["H5162"]],[4,5,["H5921"]],[5,7,["H7451"]],[7,8,["H834"]],[8,10,["H1696"]],[10,12,["H6213"]],[12,15,["H5971"]]]},{"k":2453,"v":[[0,2,["H4872"]],[2,3,["H6437"]],[3,6,["H3381"]],[6,7,["H4480"]],[7,9,["H2022"]],[9,12,["H8147"]],[12,13,["H3871"]],[13,16,["H5715"]],[16,20,["H3027"]],[20,22,["H3871"]],[22,24,["H3789"]],[24,26,["H4480","H8147"]],[26,28,["H5676"]],[28,32,["H4480","H2088"]],[32,36,["H4480","H2088"]],[36,38,["H1992"]],[38,39,["H3789"]]]},{"k":2454,"v":[[0,3,["H3871"]],[3,6,["H4639"]],[6,8,["H430"]],[8,11,["H4385"]],[11,14,["H4385"]],[14,16,["H430"]],[16,17,["H2801"]],[17,18,["H5921"]],[18,20,["H3871"]]]},{"k":2455,"v":[[0,3,["H3091"]],[3,4,["H8085","(H853)"]],[4,6,["H6963"]],[6,9,["H5971"]],[9,12,["H7452"]],[12,14,["H559"]],[14,15,["H413"]],[15,16,["H4872"]],[16,20,["H6963"]],[20,22,["H4421"]],[22,25,["H4264"]]]},{"k":2456,"v":[[0,3,["H559"]],[3,6,["H369"]],[6,8,["H6963"]],[8,12,["H6030"]],[12,14,["H1369"]],[14,15,["H369"]],[15,19,["H6963"]],[19,23,["H6030"]],[23,26,["H2476"]],[26,29,["H6963"]],[29,33,["H6031"]],[33,35,["H595"]],[35,36,["H8085"]]]},{"k":2457,"v":[[0,5,["H1961"]],[5,8,["H834"]],[8,11,["H7126"]],[11,12,["H413"]],[12,14,["H4264"]],[14,17,["H7200","(H853)"]],[17,19,["H5695"]],[19,22,["H4246"]],[22,24,["H4872"]],[24,25,["H639"]],[25,27,["H2734"]],[27,30,["H7993","(H853)"]],[30,32,["H3871"]],[32,36,["H4480","H3027"]],[36,38,["H7665"]],[38,40,["H8478"]],[40,42,["H2022"]]]},{"k":2458,"v":[[0,3,["H3947","(H853)"]],[3,5,["H5695"]],[5,6,["H834"]],[6,9,["H6213"]],[9,11,["H8313"]],[11,15,["H784"]],[15,17,["H2912"]],[17,19,["H5704"]],[19,20,["H834","H1854"]],[20,22,["H2219"]],[22,24,["H5921","H6440"]],[24,26,["H4325"]],[26,28,["(H853)"]],[28,30,["H1121"]],[30,32,["H3478"]],[32,33,["H8248"]],[33,35,[]]]},{"k":2459,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H175"]],[5,6,["H4100"]],[6,7,["H6213"]],[7,8,["H2088"]],[8,9,["H5971"]],[9,12,["H3588"]],[12,15,["H935"]],[15,17,["H1419"]],[17,19,["H2401"]],[19,20,["H5921"]],[20,21,[]]]},{"k":2460,"v":[[0,2,["H175"]],[2,3,["H559"]],[3,5,["H408"]],[5,7,["H639"]],[7,10,["H113"]],[10,12,["H2734"]],[12,13,["H859"]],[13,14,["H3045","(H853)"]],[14,16,["H5971"]],[16,17,["H3588"]],[17,18,["H1931"]],[18,22,["H7451"]]]},{"k":2461,"v":[[0,3,["H559"]],[3,6,["H6213"]],[6,8,["H430"]],[8,9,["H834"]],[9,11,["H1980"]],[11,12,["H6440"]],[12,14,["H3588"]],[14,17,["H2088"]],[17,18,["H4872"]],[18,20,["H376"]],[20,21,["H834"]],[21,24,["H5927"]],[24,28,["H4480","H776"]],[28,30,["H4714"]],[30,32,["H3045"]],[32,33,["H3808"]],[33,34,["H4100"]],[34,36,["H1961"]],[36,38,[]]]},{"k":2462,"v":[[0,3,["H559"]],[3,6,["H4310"]],[6,9,["H2091"]],[9,14,["H6561"]],[14,17,["H5414"]],[17,22,["H7993"]],[22,26,["H784"]],[26,30,["H3318"]],[30,31,["H2088"]],[31,32,["H5695"]]]},{"k":2463,"v":[[0,3,["H4872"]],[3,4,["H7200"]],[4,5,["H3588","(H853)"]],[5,7,["H5971"]],[7,9,["H6544"]],[9,10,["H3588"]],[10,11,["H175"]],[11,15,["H6544"]],[15,18,["H8103"]],[18,21,["H6965"]]]},{"k":2464,"v":[[0,2,["H4872"]],[2,3,["H5975"]],[3,6,["H8179"]],[6,9,["H4264"]],[9,11,["H559"]],[11,12,["H4310"]],[12,16,["H3068"]],[16,21,["H413"]],[21,24,["H3605"]],[24,26,["H1121"]],[26,28,["H3878"]],[28,31,["H622"]],[31,32,["H413"]],[32,33,[]]]},{"k":2465,"v":[[0,3,["H559"]],[3,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,10,["H430"]],[10,12,["H3478"]],[12,13,["H7760"]],[13,15,["H376"]],[15,17,["H2719"]],[17,18,["H5921"]],[18,20,["H3409"]],[20,23,["H5674"]],[23,25,["H7725"]],[25,27,["H4480","H8179"]],[27,29,["H8179"]],[29,32,["H4264"]],[32,34,["H2026"]],[34,36,["H376","(H853)"]],[36,38,["H251"]],[38,41,["H376","(H853)"]],[41,43,["H7453"]],[43,46,["H376","(H853)"]],[46,48,["H7138"]]]},{"k":2466,"v":[[0,3,["H1121"]],[3,5,["H3878"]],[5,6,["H6213"]],[6,10,["H1697"]],[10,12,["H4872"]],[12,15,["H5307"]],[15,16,["H4480"]],[16,18,["H5971"]],[18,19,["H1931"]],[19,20,["H3117"]],[20,22,["H7969"]],[22,23,["H505"]],[23,24,["H376"]]]},{"k":2467,"v":[[0,2,["H4872"]],[2,4,["H559"]],[4,5,["H4390","H3027"]],[5,8,["H3117"]],[8,11,["H3068"]],[11,12,["H3588"]],[12,14,["H376"]],[14,17,["H1121"]],[17,21,["H251"]],[21,25,["H5414"]],[25,26,["H5921"]],[26,29,["H1293"]],[29,31,["H3117"]]]},{"k":2468,"v":[[0,5,["H1961"]],[5,8,["H4480","H4283"]],[8,10,["H4872"]],[10,11,["H559"]],[11,12,["H413"]],[12,14,["H5971"]],[14,15,["H859"]],[15,17,["H2398"]],[17,19,["H1419"]],[19,20,["H2401"]],[20,22,["H6258"]],[22,26,["H5927"]],[26,27,["H413"]],[27,29,["H3068"]],[29,30,["H194"]],[30,35,["H3722"]],[35,36,["H1157"]],[36,38,["H2403"]]]},{"k":2469,"v":[[0,2,["H4872"]],[2,3,["H7725"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H559"]],[8,9,["H577"]],[9,10,["H2088"]],[10,11,["H5971"]],[11,13,["H2398"]],[13,15,["H1419"]],[15,16,["H2401"]],[16,19,["H6213"]],[19,21,["H430"]],[21,23,["H2091"]]]},{"k":2470,"v":[[0,2,["H6258"]],[2,3,["H518"]],[3,6,["H5375"]],[6,8,["H2403"]],[8,10,["H518"]],[10,11,["H369"]],[11,12,["H4229"]],[12,16,["H4994"]],[16,20,["H4480","H5612"]],[20,21,["H834"]],[21,24,["H3789"]]]},{"k":2471,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H4310","H834"]],[7,9,["H2398"]],[9,16,["H4229"]],[16,19,["H4480","H5612"]]]},{"k":2472,"v":[[0,2,["H6258"]],[2,3,["H1980"]],[3,4,["H5148","(H853)"]],[4,6,["H5971"]],[6,7,["H413"]],[7,11,["H834"]],[11,14,["H1696"]],[14,17,["H2009"]],[17,19,["H4397"]],[19,21,["H1980"]],[21,22,["H6440"]],[22,27,["H3117"]],[27,30,["H6485"]],[30,33,["H6485"]],[33,35,["H2403"]],[35,36,["H5921"]],[36,37,[]]]},{"k":2473,"v":[[0,3,["H3068"]],[3,4,["H5062","(H853)"]],[4,6,["H5971"]],[6,7,["H5921","H834"]],[7,9,["H6213","(H853)"]],[9,11,["H5695"]],[11,12,["H834"]],[12,13,["H175"]],[13,14,["H6213"]]]},{"k":2474,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H1980"]],[7,10,["H5927"]],[10,11,["H4480","H2088"]],[11,12,["H859"]],[12,15,["H5971"]],[15,16,["H834"]],[16,20,["H5927"]],[20,24,["H4480","H776"]],[24,26,["H4714"]],[26,27,["H413"]],[27,29,["H776"]],[29,30,["H834"]],[30,32,["H7650"]],[32,34,["H85"]],[34,36,["H3327"]],[36,39,["H3290"]],[39,40,["H559"]],[40,43,["H2233"]],[43,46,["H5414"]],[46,47,[]]]},{"k":2475,"v":[[0,4,["H7971"]],[4,6,["H4397"]],[6,7,["H6440"]],[7,13,["H1644","(H853)"]],[13,15,["H3669"]],[15,17,["H567"]],[17,20,["H2850"]],[20,23,["H6522"]],[23,25,["H2340"]],[25,28,["H2983"]]]},{"k":2476,"v":[[0,1,["H413"]],[1,3,["H776"]],[3,4,["H2100"]],[4,6,["H2461"]],[6,8,["H1706"]],[8,9,["H3588"]],[9,12,["H3808"]],[12,14,["H5927"]],[14,17,["H7130"]],[17,20,["H3588"]],[20,21,["H859"]],[21,24,["H7186","H6203"]],[24,25,["H5971"]],[25,26,["H6435"]],[26,28,["H3615"]],[28,32,["H1870"]]]},{"k":2477,"v":[[0,4,["H5971"]],[4,5,["H8085","(H853)"]],[5,6,["H2088"]],[6,7,["H7451"]],[7,8,["H1697"]],[8,10,["H56"]],[10,12,["H3808"]],[12,13,["H376"]],[13,15,["H7896"]],[15,16,["H5921"]],[16,19,["H5716"]]]},{"k":2478,"v":[[0,3,["H3068"]],[3,5,["H559"]],[5,6,["H413"]],[6,7,["H4872"]],[7,8,["H559"]],[8,9,["H413"]],[9,11,["H1121"]],[11,13,["H3478"]],[13,14,["H859"]],[14,17,["H7186","H6203"]],[17,18,["H5971"]],[18,22,["H5927"]],[22,25,["H7130"]],[25,29,["H259"]],[29,30,["H7281"]],[30,32,["H3615"]],[32,35,["H6258"]],[35,37,["H3381"]],[37,39,["H5716"]],[39,40,["H4480","H5921"]],[40,45,["H3045"]],[45,46,["H4100"]],[46,48,["H6213"]],[48,50,[]]]},{"k":2479,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H5337"]],[7,8,["(H853)"]],[8,10,["H5716"]],[10,13,["H4480","H2022"]],[13,14,["H2722"]]]},{"k":2480,"v":[[0,2,["H4872"]],[2,3,["H3947","(H853)"]],[3,5,["H168"]],[5,7,["H5186"]],[7,9,["H4480","H2351"]],[9,11,["H4264"]],[11,13,["H7368"]],[13,14,["H4480"]],[14,16,["H4264"]],[16,18,["H7121"]],[18,21,["H168"]],[21,24,["H4150"]],[24,29,["H1961"]],[29,32,["H3605"]],[32,34,["H1245"]],[34,36,["H3068"]],[36,38,["H3318"]],[38,39,["H413"]],[39,41,["H168"]],[41,44,["H4150"]],[44,45,["H834"]],[45,47,["H4480","H2351"]],[47,49,["H4264"]]]},{"k":2481,"v":[[0,5,["H1961"]],[5,7,["H4872"]],[7,9,["H3318"]],[9,10,["H413"]],[10,12,["H168"]],[12,14,["H3605"]],[14,16,["H5971"]],[16,18,["H6965"]],[18,20,["H5324"]],[20,22,["H376"]],[22,25,["H168"]],[25,26,["H6607"]],[26,28,["H5027"]],[28,29,["H310"]],[29,30,["H4872"]],[30,31,["H5704"]],[31,34,["H935"]],[34,37,["H168"]]]},{"k":2482,"v":[[0,5,["H1961"]],[5,7,["H4872"]],[7,9,["H935"]],[9,11,["H168"]],[11,13,["H6051"]],[13,14,["H5982"]],[14,15,["H3381"]],[15,17,["H5975"]],[17,20,["H6607"]],[20,23,["H168"]],[23,27,["H1696"]],[27,28,["H5973"]],[28,29,["H4872"]]]},{"k":2483,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H7200","(H853)"]],[5,7,["H6051"]],[7,8,["H5982"]],[8,9,["H5975"]],[9,12,["H168"]],[12,13,["H6607"]],[13,15,["H3605"]],[15,17,["H5971"]],[17,19,["H6965"]],[19,21,["H7812"]],[21,23,["H376"]],[23,26,["H168"]],[26,27,["H6607"]]]},{"k":2484,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H6440"]],[7,8,["H413"]],[8,9,["H6440"]],[9,10,["H834"]],[10,12,["H376"]],[12,13,["H1696"]],[13,14,["H413"]],[14,16,["H7453"]],[16,20,["H7725"]],[20,21,["H413"]],[21,23,["H4264"]],[23,26,["H8334"]],[26,27,["H3091"]],[27,29,["H1121"]],[29,31,["H5126"]],[31,34,["H5288"]],[34,35,["H4185"]],[35,36,["H3808"]],[36,38,["H4480","H8432"]],[38,40,["H168"]]]},{"k":2485,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3068"]],[6,7,["H7200"]],[7,8,["H859"]],[8,9,["H559"]],[9,10,["H413"]],[10,13,["H5927","(H853)"]],[13,14,["H2088"]],[14,15,["H5971"]],[15,17,["H859"]],[17,19,["H3808"]],[19,22,["H3045","(H853)"]],[22,23,["H834"]],[23,26,["H7971"]],[26,27,["H5973"]],[27,30,["H859"]],[30,32,["H559"]],[32,34,["H3045"]],[34,37,["H8034"]],[37,41,["H1571"]],[41,42,["H4672"]],[42,43,["H2580"]],[43,46,["H5869"]]]},{"k":2486,"v":[[0,1,["H6258"]],[1,5,["H4994"]],[5,6,["H518"]],[6,9,["H4672"]],[9,10,["H2580"]],[10,13,["H5869"]],[13,14,["H3045"]],[14,16,["H4994","(H853)"]],[16,18,["H1870"]],[18,19,["H4616"]],[19,22,["H3045"]],[22,27,["H4672"]],[27,28,["H2580"]],[28,31,["H5869"]],[31,33,["H7200"]],[33,34,["H3588"]],[34,35,["H2088"]],[35,36,["H1471"]],[36,39,["H5971"]]]},{"k":2487,"v":[[0,3,["H559"]],[3,5,["H6440"]],[5,7,["H1980"]],[7,15,["H5117"]]]},{"k":2488,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H518"]],[6,8,["H6440"]],[8,9,["H1980"]],[9,10,["H369"]],[10,16,["H5927","H408"]],[16,17,["H4480","H2088"]]]},{"k":2489,"v":[[0,2,["H4100"]],[2,6,["H3045"]],[6,7,["H645"]],[7,8,["H3588"]],[8,9,["H589"]],[9,12,["H5971"]],[12,14,["H4672"]],[14,15,["H2580"]],[15,18,["H5869"]],[18,21,["H3808"]],[21,25,["H1980"]],[25,26,["H5973"]],[26,32,["H6395"]],[32,33,["H589"]],[33,36,["H5971"]],[36,38,["H4480","H3605"]],[38,40,["H5971"]],[40,41,["H834"]],[41,43,["H5921"]],[43,45,["H6440"]],[45,48,["H127"]]]},{"k":2490,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H6213","(H853)"]],[9,10,["H2088"]],[10,11,["H1697"]],[11,12,["H1571"]],[12,13,["H834"]],[13,16,["H1696"]],[16,17,["H3588"]],[17,20,["H4672"]],[20,21,["H2580"]],[21,24,["H5869"]],[24,27,["H3045"]],[27,30,["H8034"]]]},{"k":2491,"v":[[0,3,["H559"]],[3,6,["H4994"]],[6,7,["H7200"]],[7,8,["(H853)"]],[8,10,["H3519"]]]},{"k":2492,"v":[[0,3,["H559"]],[3,4,["H589"]],[4,7,["H3605"]],[7,9,["H2898"]],[9,10,["H5674"]],[10,11,["H5921","H6440"]],[11,16,["H7121"]],[16,18,["H8034"]],[18,21,["H3068"]],[21,22,["H6440"]],[22,27,["H2603","(H853)"]],[27,29,["H834"]],[29,33,["H2603"]],[33,37,["H7355","(H853)"]],[37,39,["H834"]],[39,43,["H7355"]]]},{"k":2493,"v":[[0,3,["H559"]],[3,5,["H3201"]],[5,6,["H3808"]],[6,7,["H7200","(H853)"]],[7,9,["H6440"]],[9,10,["H3588"]],[10,13,["H3808"]],[13,14,["H120"]],[14,15,["H7200"]],[15,18,["H2425"]]]},{"k":2494,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H2009"]],[5,9,["H4725"]],[9,10,["H854"]],[10,15,["H5324"]],[15,16,["H5921"]],[16,18,["H6697"]]]},{"k":2495,"v":[[0,6,["H1961"]],[6,9,["H3519"]],[9,11,["H5674"]],[11,15,["H7760"]],[15,19,["H5366"]],[19,22,["H6697"]],[22,25,["H5526","H5921"]],[25,29,["H3709"]],[29,30,["H5704"]],[30,33,["H5674"]]]},{"k":2496,"v":[[0,5,["H5493","(H853)"]],[5,7,["H3709"]],[7,11,["H7200","(H853)"]],[11,14,["H268"]],[14,17,["H6440"]],[17,19,["H3808"]],[19,21,["H7200"]]]},{"k":2497,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H6458"]],[7,9,["H8147"]],[9,10,["H3871"]],[10,12,["H68"]],[12,16,["H7223"]],[16,20,["H3789"]],[20,21,["H5921"]],[21,23,["H3871","(H853)"]],[23,25,["H1697"]],[25,26,["H834"]],[26,27,["H1961"]],[27,28,["H5921"]],[28,30,["H7223"]],[30,31,["H3871"]],[31,32,["H834"]],[32,34,["H7665"]]]},{"k":2498,"v":[[0,2,["H1961"]],[2,3,["H3559"]],[3,6,["H1242"]],[6,9,["H5927"]],[9,12,["H1242"]],[12,13,["H413"]],[13,14,["H2022"]],[14,15,["H5514"]],[15,18,["H5324"]],[18,19,["H8033"]],[19,22,["H5921"]],[22,24,["H7218"]],[24,27,["H2022"]]]},{"k":2499,"v":[[0,2,["H3808"]],[2,3,["H376"]],[3,6,["H5927"]],[6,7,["H5973"]],[7,9,["H408","H1571"]],[9,12,["H376"]],[12,14,["H7200"]],[14,16,["H3605"]],[16,18,["H2022"]],[18,19,["H408","H1571"]],[19,22,["H6629"]],[22,24,["H1241"]],[24,25,["H7462"]],[25,26,["H413","H4136"]],[26,27,["H1931"]],[27,28,["H2022"]]]},{"k":2500,"v":[[0,3,["H6458"]],[3,4,["H8147"]],[4,5,["H3871"]],[5,7,["H68"]],[7,11,["H7223"]],[11,13,["H4872"]],[13,16,["H7925"]],[16,19,["H1242"]],[19,22,["H5927"]],[22,23,["H413"]],[23,24,["H2022"]],[24,25,["H5514"]],[25,26,["H834"]],[26,28,["H3068"]],[28,30,["H6680"]],[30,33,["H3947"]],[33,36,["H3027"]],[36,38,["H8147"]],[38,39,["H3871"]],[39,41,["H68"]]]},{"k":2501,"v":[[0,3,["H3068"]],[3,4,["H3381"]],[4,7,["H6051"]],[7,9,["H3320"]],[9,10,["H5973"]],[10,12,["H8033"]],[12,14,["H7121"]],[14,16,["H8034"]],[16,19,["H3068"]]]},{"k":2502,"v":[[0,3,["H3068"]],[3,5,["H5674"]],[5,6,["H5921","H6440"]],[6,9,["H7121"]],[9,11,["H3068"]],[11,13,["H3068"]],[13,14,["H410"]],[14,15,["H7349"]],[15,17,["H2587"]],[17,18,["H750","H639"]],[18,20,["H7227"]],[20,22,["H2617"]],[22,24,["H571"]]]},{"k":2503,"v":[[0,1,["H5341"]],[1,2,["H2617"]],[2,4,["H505"]],[4,5,["H5375"]],[5,6,["H5771"]],[6,8,["H6588"]],[8,10,["H2403"]],[10,17,["H3808","H5352","H5352"]],[17,20,["H6485"]],[20,22,["H5771"]],[22,25,["H1"]],[25,26,["H5921"]],[26,28,["H1121"]],[28,30,["H5921"]],[30,32,["H1121"]],[32,33,["H1121"]],[33,34,["H5921"]],[34,36,["H8029"]],[36,38,["H5921"]],[38,40,["H7256"]],[40,41,[]]]},{"k":2504,"v":[[0,2,["H4872"]],[2,4,["H4116"]],[4,8,["H6915"]],[8,11,["H776"]],[11,13,["H7812"]]]},{"k":2505,"v":[[0,3,["H559"]],[3,4,["H518"]],[4,5,["H4994"]],[5,8,["H4672"]],[8,9,["H2580"]],[9,12,["H5869"]],[12,14,["H136"]],[14,17,["H136"]],[17,20,["H4994"]],[20,21,["H1980"]],[21,22,["H7130"]],[22,24,["H3588"]],[24,25,["H1931"]],[25,28,["H7186","H6203"]],[28,29,["H5971"]],[29,31,["H5545"]],[31,33,["H5771"]],[33,36,["H2403"]],[36,42,["H5157"]]]},{"k":2506,"v":[[0,3,["H559"]],[3,4,["H2009"]],[4,5,["H595"]],[5,6,["H3772"]],[6,8,["H1285"]],[8,9,["H5048"]],[9,10,["H3605"]],[10,12,["H5971"]],[12,15,["H6213"]],[15,16,["H6381"]],[16,18,["H834"]],[18,20,["H3808"]],[20,22,["H1254"]],[22,24,["H3605"]],[24,26,["H776"]],[26,29,["H3605"]],[29,30,["H1471"]],[30,32,["H3605"]],[32,34,["H5971"]],[34,35,["H7130"]],[35,36,["H834"]],[36,37,["H859"]],[37,40,["H7200","(H853)"]],[40,42,["H4639"]],[42,45,["H3068"]],[45,46,["H3588"]],[46,47,["H1931"]],[47,51,["H3372"]],[51,52,["H834"]],[52,53,["H589"]],[53,55,["H6213"]],[55,56,["H5973"]],[56,57,[]]]},{"k":2507,"v":[[0,1,["H8104"]],[1,2,["(H853)"]],[2,4,["H834"]],[4,5,["H595"]],[5,6,["H6680"]],[6,9,["H3117"]],[9,10,["H2009"]],[10,13,["H1644"]],[13,14,["H4480","H6440"]],[14,15,["(H853)"]],[15,17,["H567"]],[17,20,["H3669"]],[20,23,["H2850"]],[23,26,["H6522"]],[26,29,["H2340"]],[29,32,["H2983"]]]},{"k":2508,"v":[[0,2,["H8104"]],[2,5,["H6435"]],[5,7,["H3772"]],[7,9,["H1285"]],[9,12,["H3427"]],[12,15,["H776"]],[15,16,["H834","H5921"]],[16,17,["H859"]],[17,18,["H935"]],[18,19,["H6435"]],[19,21,["H1961"]],[21,24,["H4170"]],[24,27,["H7130"]],[27,29,[]]]},{"k":2509,"v":[[0,1,["H3588"]],[1,4,["H5422","(H853)"]],[4,6,["H4196"]],[6,7,["H7665"]],[7,9,["H4676"]],[9,12,["H3772"]],[12,14,["H842"]]]},{"k":2510,"v":[[0,1,["H3588"]],[1,4,["H7812"]],[4,5,["H3808"]],[5,6,["H312"]],[6,7,["H410"]],[7,8,["H3588"]],[8,10,["H3068"]],[10,12,["H8034"]],[12,14,["H7067"]],[14,17,["H7067"]],[17,18,["H410"]]]},{"k":2511,"v":[[0,1,["H6435"]],[1,3,["H3772"]],[3,5,["H1285"]],[5,8,["H3427"]],[8,11,["H776"]],[11,16,["H2181"]],[16,17,["H310"]],[17,19,["H430"]],[19,22,["H2076"]],[22,25,["H430"]],[25,28,["H7121"]],[28,32,["H398"]],[32,35,["H4480","H2077"]]]},{"k":2512,"v":[[0,3,["H3947"]],[3,6,["H4480","H1323"]],[6,9,["H1121"]],[9,12,["H1323"]],[12,15,["H2181"]],[15,16,["H310"]],[16,18,["H430"]],[18,20,["(H853)"]],[20,22,["H1121"]],[22,25,["H2181"]],[25,26,["H310"]],[26,28,["H430"]]]},{"k":2513,"v":[[0,3,["H6213"]],[3,5,["H3808"]],[5,6,["H4541"]],[6,7,["H430"]]]},{"k":2514,"v":[[0,0,["(H853)"]],[0,2,["H2282"]],[2,5,["H4682"]],[5,8,["H8104"]],[8,9,["H7651"]],[9,10,["H3117"]],[10,13,["H398"]],[13,15,["H4682"]],[15,16,["H834"]],[16,18,["H6680"]],[18,22,["H4150"]],[22,25,["H2320"]],[25,26,["H24"]],[26,27,["H3588"]],[27,30,["H2320"]],[30,31,["H24"]],[31,34,["H3318"]],[34,36,["H4480","H4714"]]]},{"k":2515,"v":[[0,1,["H3605"]],[1,3,["H6363"]],[3,5,["H7358"]],[5,9,["H3605"]],[9,10,["H6363"]],[10,13,["H4735"]],[13,15,["H7794"]],[15,17,["H7716"]],[17,20,[]]]},{"k":2516,"v":[[0,3,["H6363"]],[3,6,["H2543"]],[6,9,["H6299"]],[9,12,["H7716"]],[12,14,["H518"]],[14,16,["H6299"]],[16,18,["H3808"]],[18,24,["H6202"]],[24,25,["H3605"]],[25,27,["H1060"]],[27,30,["H1121"]],[30,33,["H6299"]],[33,35,["H3808"]],[35,37,["H7200"]],[37,38,["H6440"]],[38,40,["H7387"]]]},{"k":2517,"v":[[0,1,["H8337"]],[1,2,["H3117"]],[2,5,["H5647"]],[5,9,["H7637"]],[9,10,["H3117"]],[10,13,["H7673"]],[13,16,["H2758"]],[16,19,["H7105"]],[19,22,["H7673"]]]},{"k":2518,"v":[[0,4,["H6213"]],[4,6,["H2282"]],[6,8,["H7620"]],[8,11,["H1061"]],[11,13,["H2406"]],[13,14,["H7105"]],[14,17,["H2282"]],[17,19,["H614"]],[19,22,["H8141"]],[22,23,["H8622"]]]},{"k":2519,"v":[[0,1,["H7969","H6471"]],[1,4,["H8141"]],[4,6,["H3605"]],[6,9,["H2138"]],[9,10,["H7200","(H853)"]],[10,11,["H6440"]],[11,13,["H113"]],[13,14,["H3068"]],[14,16,["H430"]],[16,18,["H3478"]]]},{"k":2520,"v":[[0,1,["H3588"]],[1,5,["H3423"]],[5,7,["H1471"]],[7,8,["H4480","H6440"]],[8,11,["H7337","(H853)"]],[11,13,["H1366"]],[13,14,["H3808"]],[14,17,["H376"]],[17,18,["H2530","(H853)"]],[18,20,["H776"]],[20,25,["H5927"]],[25,27,["H7200","(H853)"]],[27,28,["H6440"]],[28,30,["H3068"]],[30,32,["H430"]],[32,33,["H7969","H6471"]],[33,36,["H8141"]]]},{"k":2521,"v":[[0,3,["H3808"]],[3,4,["H7819"]],[4,6,["H1818"]],[6,9,["H2077"]],[9,10,["H5921"]],[10,11,["H2557"]],[11,12,["H3808"]],[12,15,["H2077"]],[15,18,["H2282"]],[18,21,["H6453"]],[21,23,["H3885"]],[23,26,["H1242"]]]},{"k":2522,"v":[[0,2,["H7225"]],[2,5,["H1061"]],[5,8,["H127"]],[8,11,["H935"]],[11,14,["H1004"]],[14,17,["H3068"]],[17,19,["H430"]],[19,22,["H3808"]],[22,23,["H1310"]],[23,25,["H1423"]],[25,28,["H517"]],[28,29,["H2461"]]]},{"k":2523,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H3789"]],[7,8,["(H853)"]],[8,9,["H428"]],[9,10,["H1697"]],[10,11,["H3588"]],[11,12,["H5921"]],[12,14,["H6310"]],[14,16,["H428"]],[16,17,["H1697"]],[17,20,["H3772"]],[20,22,["H1285"]],[22,23,["H854"]],[23,26,["H854"]],[26,27,["H3478"]]]},{"k":2524,"v":[[0,3,["H1961"]],[3,4,["H8033"]],[4,5,["H5973"]],[5,7,["H3068"]],[7,8,["H705"]],[8,9,["H3117"]],[9,11,["H705"]],[11,12,["H3915"]],[12,15,["H3808"]],[15,16,["H398"]],[16,17,["H3899"]],[17,18,["H3808"]],[18,19,["H8354"]],[19,20,["H4325"]],[20,23,["H3789"]],[23,24,["H5921"]],[24,26,["H3871","(H853)"]],[26,28,["H1697"]],[28,31,["H1285"]],[31,33,["H6235"]],[33,34,["H1697"]]]},{"k":2525,"v":[[0,5,["H1961"]],[5,7,["H4872"]],[7,9,["H3381"]],[9,11,["H4480","H2022"]],[11,12,["H5514"]],[12,15,["H8147"]],[15,16,["H3871"]],[16,18,["H5715"]],[18,20,["H4872"]],[20,21,["H3027"]],[21,25,["H3381"]],[25,26,["H4480"]],[26,28,["H2022"]],[28,30,["H4872"]],[30,31,["H3045"]],[31,32,["H3808"]],[32,33,["H3588"]],[33,35,["H5785"]],[35,38,["H6440"]],[38,39,["H7160"]],[39,42,["H1696"]],[42,43,["H854"]],[43,44,[]]]},{"k":2526,"v":[[0,3,["H175"]],[3,5,["H3605"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,10,["H7200","(H853)"]],[10,11,["H4872"]],[11,12,["H2009"]],[12,14,["H5785"]],[14,17,["H6440"]],[17,18,["H7160"]],[18,22,["H3372"]],[22,25,["H4480","H5066","H413"]],[25,26,[]]]},{"k":2527,"v":[[0,2,["H4872"]],[2,3,["H7121"]],[3,4,["H413"]],[4,7,["H175"]],[7,9,["H3605"]],[9,11,["H5387"]],[11,14,["H5712"]],[14,15,["H7725"]],[15,16,["H413"]],[16,19,["H4872"]],[19,20,["H1696"]],[20,21,["H413"]],[21,22,[]]]},{"k":2528,"v":[[0,2,["H310","H3651"]],[2,3,["H3605"]],[3,5,["H1121"]],[5,7,["H3478"]],[7,9,["H5066"]],[9,15,["H6680","(H853)"]],[15,16,["H3605"]],[16,17,["H834"]],[17,19,["H3068"]],[19,21,["H1696"]],[21,22,["H854"]],[22,25,["H2022"]],[25,26,["H5514"]]]},{"k":2529,"v":[[0,3,["H4872"]],[3,5,["H3615"]],[5,6,["H4480","H1696"]],[6,7,["H854"]],[7,10,["H5414"]],[10,12,["H4533"]],[12,13,["H5921"]],[13,15,["H6440"]]]},{"k":2530,"v":[[0,3,["H4872"]],[3,5,["H935"]],[5,6,["H6440"]],[6,8,["H3068"]],[8,10,["H1696"]],[10,11,["H854"]],[11,17,["H5493","(H853)","H4533"]],[17,18,["H5704"]],[18,21,["H3318"]],[21,25,["H3318"]],[25,27,["H1696"]],[27,28,["H413"]],[28,30,["H1121"]],[30,32,["H3478","(H853)"]],[32,34,["H834"]],[34,37,["H6680"]]]},{"k":2531,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H7200","(H853)"]],[6,8,["H6440"]],[8,10,["H4872"]],[10,11,["H3588"]],[11,13,["H5785"]],[13,15,["H4872"]],[15,16,["H6440"]],[16,17,["H7160"]],[17,19,["H4872"]],[19,20,["H7725","(H853)"]],[20,22,["H4533"]],[22,23,["H5921"]],[23,25,["H6440"]],[25,27,["H5704"]],[27,30,["H935"]],[30,32,["H1696"]],[32,33,["H854"]],[33,34,[]]]},{"k":2532,"v":[[0,2,["H4872"]],[2,3,["H6950","(H853)"]],[3,4,["H3605"]],[4,6,["H5712"]],[6,9,["H1121"]],[9,11,["H3478"]],[11,14,["H559"]],[14,15,["H413"]],[15,17,["H428"]],[17,20,["H1697"]],[20,21,["H834"]],[21,23,["H3068"]],[23,25,["H6680"]],[25,29,["H6213"]],[29,30,[]]]},{"k":2533,"v":[[0,1,["H8337"]],[1,2,["H3117"]],[2,4,["H4399"]],[4,6,["H6213"]],[6,10,["H7637"]],[10,11,["H3117"]],[11,14,["H1961"]],[14,18,["H6944"]],[18,21,["H7676"]],[21,23,["H7677"]],[23,26,["H3068"]],[26,27,["H3605"]],[27,28,["H6213"]],[28,29,["H4399"]],[29,35,["H4191"]]]},{"k":2534,"v":[[0,3,["H1197"]],[3,4,["H3808"]],[4,5,["H784"]],[5,6,["H3605"]],[6,8,["H4186"]],[8,11,["H7676"]],[11,12,["H3117"]]]},{"k":2535,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3605"]],[5,7,["H5712"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,13,["H559"]],[13,14,["H2088"]],[14,17,["H1697"]],[17,18,["H834"]],[18,20,["H3068"]],[20,21,["H6680"]],[21,22,["H559"]]]},{"k":2536,"v":[[0,1,["H3947"]],[1,4,["H4480","H854"]],[4,7,["H8641"]],[7,10,["H3068"]],[10,11,["H3605"]],[11,15,["H5081"]],[15,16,["H3820"]],[16,19,["H935"]],[19,20,["(H853)"]],[20,22,["H8641"]],[22,25,["H3068"]],[25,26,["H2091"]],[26,28,["H3701"]],[28,30,["H5178"]]]},{"k":2537,"v":[[0,2,["H8504"]],[2,4,["H713"]],[4,6,["H8438","H8144"]],[6,9,["H8336"]],[9,11,["H5795"]],[11,12,[]]]},{"k":2538,"v":[[0,2,["H352"]],[2,3,["H5785"]],[3,5,["H119"]],[5,7,["H8476"]],[7,8,["H5785"]],[8,10,["H7848"]],[10,11,["H6086"]]]},{"k":2539,"v":[[0,2,["H8081"]],[2,5,["H3974"]],[5,7,["H1314"]],[7,9,["H4888"]],[9,10,["H8081"]],[10,14,["H5561"]],[14,15,["H7004"]]]},{"k":2540,"v":[[0,2,["H7718"]],[2,3,["H68"]],[3,5,["H68"]],[5,8,["H4394"]],[8,11,["H646"]],[11,15,["H2833"]]]},{"k":2541,"v":[[0,2,["H3605"]],[2,3,["H2450"]],[3,4,["H3820"]],[4,8,["H935"]],[8,10,["H6213","(H853)"]],[10,11,["H3605"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H6680"]]]},{"k":2542,"v":[[0,0,["(H853)"]],[0,2,["H4908","(H853)"]],[2,4,["H168"]],[4,7,["H4372","(H853)"]],[7,9,["H7165"]],[9,12,["H7175","(H853)"]],[12,14,["H1280","(H853)"]],[14,16,["H5982"]],[16,19,["H134"]]]},{"k":2543,"v":[[0,0,["(H853)"]],[0,2,["H727"]],[2,5,["H905"]],[5,7,["(H853)"]],[7,10,["H3727"]],[10,13,["H6532"]],[13,16,["H4539"]]]},{"k":2544,"v":[[0,0,["(H853)"]],[0,2,["H7979"]],[2,5,["H905"]],[5,7,["H3605"]],[7,9,["H3627"]],[9,12,["H3899","H6440"]]]},{"k":2545,"v":[[0,2,["H4501"]],[2,6,["H3974"]],[6,9,["H3627"]],[9,12,["H5216"]],[12,15,["H8081"]],[15,18,["H3974"]]]},{"k":2546,"v":[[0,3,["H7004"]],[3,4,["H4196"]],[4,7,["H905"]],[7,10,["H4888"]],[10,11,["H8081"]],[11,14,["H5561"]],[14,15,["H7004"]],[15,18,["H4539"]],[18,21,["H6607"]],[21,25,["H6607"]],[25,28,["H4908"]]]},{"k":2547,"v":[[0,0,["(H853)"]],[0,2,["H4196"]],[2,5,["H5930"]],[5,7,["H834"]],[7,8,["H5178"]],[8,9,["H4345","(H853)"]],[9,11,["H905"]],[11,13,["H3605"]],[13,15,["H3627","(H853)"]],[15,17,["H3595"]],[17,20,["H3653"]]]},{"k":2548,"v":[[0,0,["(H853)"]],[0,2,["H7050"]],[2,5,["H2691","(H853)"]],[5,7,["H5982"]],[7,10,["H134"]],[10,13,["H4539"]],[13,16,["H8179"]],[16,19,["H2691"]]]},{"k":2549,"v":[[0,0,["(H853)"]],[0,2,["H3489"]],[2,5,["H4908"]],[5,8,["H3489"]],[8,11,["H2691"]],[11,14,["H4340"]]]},{"k":2550,"v":[[0,0,["(H853)"]],[0,2,["H899"]],[2,4,["H8278"]],[4,7,["H8334"]],[7,10,["H6944"]],[10,11,["(H853)"]],[11,13,["H6944"]],[13,14,["H899"]],[14,16,["H175"]],[16,18,["H3548"]],[18,21,["H899"]],[21,24,["H1121"]],[24,30,["H3547"]]]},{"k":2551,"v":[[0,2,["H3605"]],[2,4,["H5712"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,10,["H3318"]],[10,13,["H4480","H6440"]],[13,15,["H4872"]]]},{"k":2552,"v":[[0,3,["H935"]],[3,4,["H3605"]],[4,5,["H376"]],[5,6,["H834"]],[6,7,["H3820"]],[7,10,["H5375"]],[10,13,["H3605"]],[13,14,["H834","(H853)"]],[14,16,["H7307"]],[16,18,["H5068"]],[18,21,["H935","(H853)"]],[21,23,["H3068"]],[23,24,["H8641"]],[24,27,["H4399"]],[27,30,["H168"]],[30,33,["H4150"]],[33,36,["H3605"]],[36,38,["H5656"]],[38,42,["H6944"]],[42,43,["H899"]]]},{"k":2553,"v":[[0,3,["H935"]],[3,5,["H376"]],[5,7,["H802"]],[7,10,["H3605"]],[10,12,["H5081"]],[12,13,["H3820"]],[13,15,["H935"]],[15,16,["H2397"]],[16,18,["H5141"]],[18,20,["H2885"]],[20,22,["H3558"]],[22,23,["H3605"]],[23,24,["H3627"]],[24,26,["H2091"]],[26,28,["H3605"]],[28,29,["H376"]],[29,30,["H834"]],[30,31,["H5130"]],[31,34,["H8573"]],[34,36,["H2091"]],[36,39,["H3068"]]]},{"k":2554,"v":[[0,2,["H3605"]],[2,3,["H376"]],[3,4,["H854"]],[4,5,["H834"]],[5,7,["H4672"]],[7,8,["H8504"]],[8,10,["H713"]],[10,12,["H8438","H8144"]],[12,15,["H8336"]],[15,17,["H5795"]],[17,20,["H119"]],[20,21,["H5785"]],[21,23,["H352"]],[23,25,["H8476"]],[25,26,["H5785"]],[26,27,["H935"]],[27,28,[]]]},{"k":2555,"v":[[0,2,["H3605"]],[2,5,["H7311"]],[5,7,["H8641"]],[7,9,["H3701"]],[9,11,["H5178"]],[11,12,["H935","(H853)"]],[12,14,["H3068"]],[14,15,["H8641"]],[15,18,["H3605"]],[18,19,["H854"]],[19,20,["H834"]],[20,22,["H4672"]],[22,23,["H7848"]],[23,24,["H6086"]],[24,26,["H3605"]],[26,27,["H4399"]],[27,30,["H5656"]],[30,31,["H935"]],[31,32,[]]]},{"k":2556,"v":[[0,2,["H3605"]],[2,4,["H802"]],[4,7,["H2450"]],[7,8,["H3820"]],[8,10,["H2901"]],[10,13,["H3027"]],[13,15,["H935"]],[15,20,["H4299"]],[20,21,["(H853)"]],[21,23,["H8504"]],[23,26,["H713"]],[26,27,["(H853)"]],[27,29,["H8438","H8144"]],[29,33,["H8336"]]]},{"k":2557,"v":[[0,2,["H3605"]],[2,4,["H802"]],[4,5,["H834"]],[5,6,["H3820"]],[6,9,["H5375","(H853)"]],[9,11,["H2451"]],[11,12,["H2901","(H853)"]],[12,13,["H5795"]],[13,14,[]]]},{"k":2558,"v":[[0,3,["H5387"]],[3,4,["H935","(H853)"]],[4,5,["H7718"]],[5,6,["H68"]],[6,8,["H68"]],[8,11,["H4394"]],[11,14,["H646"]],[14,18,["H2833"]]]},{"k":2559,"v":[[0,2,["H1314"]],[2,4,["H8081"]],[4,7,["H3974"]],[7,11,["H4888"]],[11,12,["H8081"]],[12,16,["H5561"]],[16,17,["H7004"]]]},{"k":2560,"v":[[0,2,["H1121"]],[2,4,["H3478"]],[4,5,["H935"]],[5,8,["H5071"]],[8,11,["H3068"]],[11,12,["H3605"]],[12,13,["H376"]],[13,15,["H802"]],[15,16,["H834"]],[16,17,["H3820"]],[17,20,["H5068","(H853)"]],[20,22,["H935"]],[22,25,["H3605"]],[25,27,["H4399"]],[27,28,["H834"]],[28,30,["H3068"]],[30,32,["H6680"]],[32,35,["H6213"]],[35,38,["H3027"]],[38,40,["H4872"]]]},{"k":2561,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,9,["H7200"]],[9,11,["H3068"]],[11,13,["H7121"]],[13,15,["H8034"]],[15,16,["H1212"]],[16,18,["H1121"]],[18,20,["H221"]],[20,22,["H1121"]],[22,24,["H2354"]],[24,27,["H4294"]],[27,29,["H3063"]]]},{"k":2562,"v":[[0,4,["H4390"]],[4,8,["H7307"]],[8,10,["H430"]],[10,12,["H2451"]],[12,14,["H8394"]],[14,17,["H1847"]],[17,21,["H3605"]],[21,23,["H4399"]]]},{"k":2563,"v":[[0,3,["H2803"]],[3,5,["H4284"]],[5,7,["H6213"]],[7,9,["H2091"]],[9,12,["H3701"]],[12,15,["H5178"]]]},{"k":2564,"v":[[0,4,["H2799"]],[4,6,["H68"]],[6,8,["H4390"]],[8,12,["H2799"]],[12,14,["H6086"]],[14,16,["H6213"]],[16,18,["H3605"]],[18,20,["H4284"]],[20,21,["H4399"]]]},{"k":2565,"v":[[0,4,["H5414"]],[4,7,["H3820"]],[7,11,["H3384"]],[11,13,["H1931"]],[13,15,["H171"]],[15,17,["H1121"]],[17,19,["H294"]],[19,22,["H4294"]],[22,24,["H1835"]]]},{"k":2566,"v":[[0,4,["H4390"]],[4,6,["H2451"]],[6,8,["H3820"]],[8,10,["H6213"]],[10,12,["H3605"]],[12,14,["H4399"]],[14,17,["H2796"]],[17,22,["H2803"]],[22,26,["H7551"]],[26,28,["H8504"]],[28,31,["H713"]],[31,33,["H8438","H8144"]],[33,37,["H8336"]],[37,41,["H707"]],[41,46,["H6213"]],[46,47,["H3605"]],[47,48,["H4399"]],[48,53,["H2803"]],[53,55,["H4284"]]]},{"k":2567,"v":[[0,2,["H6213"]],[2,3,["H1212"]],[3,5,["H171"]],[5,7,["H3605"]],[7,8,["H2450"]],[8,9,["H3820"]],[9,10,["H376"]],[10,12,["H834","H1992"]],[12,14,["H3068"]],[14,15,["H5414"]],[15,16,["H2451"]],[16,18,["H8394"]],[18,20,["H3045"]],[20,23,["H6213","(H853)"]],[23,25,["H3605"]],[25,27,["H4399"]],[27,30,["H5656"]],[30,33,["H6944"]],[33,36,["H3605"]],[36,37,["H834"]],[37,39,["H3068"]],[39,41,["H6680"]]]},{"k":2568,"v":[[0,2,["H4872"]],[2,3,["H7121","H413"]],[3,4,["H1212"]],[4,6,["H171"]],[6,8,["H3605"]],[8,9,["H2450"]],[9,10,["H3820"]],[10,11,["H376"]],[11,13,["H834"]],[13,14,["H3820"]],[14,16,["H3068"]],[16,18,["H5414"]],[18,19,["H2451"]],[19,22,["H3605"]],[22,23,["H834"]],[23,24,["H3820"]],[24,27,["H5375"]],[27,29,["H7126"]],[29,30,["H413"]],[30,32,["H4399"]],[32,34,["H6213"]],[34,35,[]]]},{"k":2569,"v":[[0,3,["H3947"]],[3,4,["H4480","H6440"]],[4,5,["H4872","(H853)"]],[5,6,["H3605"]],[6,8,["H8641"]],[8,9,["H834"]],[9,11,["H1121"]],[11,13,["H3478"]],[13,15,["H935"]],[15,18,["H4399"]],[18,21,["H5656"]],[21,24,["H6944"]],[24,26,["H6213"]],[26,30,["H1992"]],[30,31,["H935"]],[31,32,["H5750"]],[32,33,["H413"]],[33,36,["H5071"]],[36,38,["H1242","H1242"]]]},{"k":2570,"v":[[0,2,["H3605"]],[2,5,["H2450"]],[5,7,["H6213","(H853)"]],[7,8,["H3605"]],[8,10,["H4399"]],[10,13,["H6944"]],[13,14,["H935"]],[14,16,["H376","H376"]],[16,19,["H4480","H4399"]],[19,20,["H834"]],[20,21,["H1992"]],[21,22,["H6213"]]]},{"k":2571,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H4872"]],[5,6,["H559"]],[6,8,["H5971"]],[8,9,["H935"]],[9,11,["H7235"]],[11,13,["H4480","H1767"]],[13,16,["H5656"]],[16,19,["H4399"]],[19,20,["H834","(H853)"]],[20,22,["H3068"]],[22,23,["H6680"]],[23,25,["H6213"]]]},{"k":2572,"v":[[0,2,["H4872"]],[2,4,["H6680"]],[4,11,["H5674","H6963"]],[11,14,["H4264"]],[14,15,["H559"]],[15,17,["H408"]],[17,18,["H376"]],[18,20,["H802"]],[20,21,["H6213"]],[21,23,["H5750"]],[23,24,["H4399"]],[24,27,["H8641"]],[27,30,["H6944"]],[30,33,["H5971"]],[33,35,["H3607"]],[35,37,["H4480","H935"]]]},{"k":2573,"v":[[0,3,["H4399"]],[3,5,["H1961"]],[5,7,["H1767"]],[7,9,["H3605"]],[9,11,["H4399"]],[11,13,["H6213"]],[13,17,["H3498"]]]},{"k":2574,"v":[[0,2,["H3605"]],[2,3,["H2450"]],[3,4,["H3820"]],[4,9,["H6213"]],[9,11,["H4399"]],[11,12,["(H853)"]],[12,14,["H4908"]],[14,15,["H6213"]],[15,16,["H6235"]],[16,17,["H3407"]],[17,21,["H8336","H7806"]],[21,23,["H8504"]],[23,25,["H713"]],[25,27,["H8438","H8144"]],[27,29,["H3742"]],[29,31,["H2803"]],[31,32,["H4639"]],[32,33,["H6213"]],[33,35,[]]]},{"k":2575,"v":[[0,2,["H753"]],[2,4,["H259"]],[4,5,["H3407"]],[5,7,["H6242"]],[7,9,["H8083"]],[9,10,["H520"]],[10,13,["H7341"]],[13,15,["H259"]],[15,16,["H3407"]],[16,17,["H702"]],[17,18,["H520"]],[18,20,["H3407"]],[20,22,["H3605"]],[22,24,["H259"]],[24,25,["H4060"]]]},{"k":2576,"v":[[0,3,["H2266","(H853)"]],[3,5,["H2568"]],[5,6,["H3407"]],[6,7,["H259"]],[7,8,["H413"]],[8,9,["H259"]],[9,13,["H2568"]],[13,14,["H3407"]],[14,16,["H2266"]],[16,17,["H259"]],[17,18,["H413"]],[18,19,["H259"]]]},{"k":2577,"v":[[0,3,["H6213"]],[3,4,["H3924"]],[4,6,["H8504"]],[6,7,["H5921"]],[7,9,["H8193"]],[9,11,["H259"]],[11,12,["H3407"]],[12,15,["H4480","H7098"]],[15,18,["H4225"]],[18,19,["H3651"]],[19,21,["H6213"]],[21,24,["H7020"]],[24,25,["H8193"]],[25,28,["H3407"]],[28,31,["H4225"]],[31,34,["H8145"]]]},{"k":2578,"v":[[0,1,["H2572"]],[1,2,["H3924"]],[2,3,["H6213"]],[3,6,["H259"]],[6,7,["H3407"]],[7,9,["H2572"]],[9,10,["H3924"]],[10,11,["H6213"]],[11,15,["H7097"]],[15,18,["H3407"]],[18,19,["H834"]],[19,23,["H4225"]],[23,26,["H8145"]],[26,28,["H3924"]],[28,29,["H6901"]],[29,30,["H259"]],[30,32,["H413"]],[32,33,["H259"]]]},{"k":2579,"v":[[0,3,["H6213"]],[3,4,["H2572"]],[4,5,["H7165"]],[5,7,["H2091"]],[7,9,["H2266","(H853)"]],[9,11,["H3407"]],[11,12,["H259"]],[12,13,["H413"]],[13,14,["H259"]],[14,17,["H7165"]],[17,20,["H1961"]],[20,21,["H259"]],[21,22,["H4908"]]]},{"k":2580,"v":[[0,3,["H6213"]],[3,4,["H3407"]],[4,6,["H5795"]],[6,10,["H168"]],[10,11,["H5921"]],[11,13,["H4908"]],[13,14,["H6249","H6240"]],[14,15,["H3407"]],[15,17,["H6213"]],[17,18,[]]]},{"k":2581,"v":[[0,2,["H753"]],[2,4,["H259"]],[4,5,["H3407"]],[5,7,["H7970"]],[7,8,["H520"]],[8,10,["H702"]],[10,11,["H520"]],[11,14,["H7341"]],[14,16,["H259"]],[16,17,["H3407"]],[17,19,["H6249","H6240"]],[19,20,["H3407"]],[20,23,["H259"]],[23,24,["H4060"]]]},{"k":2582,"v":[[0,3,["H2266","(H853)"]],[3,4,["H2568"]],[4,5,["H3407"]],[5,7,["H905"]],[7,9,["H8337"]],[9,10,["H3407"]],[10,12,["H905"]]]},{"k":2583,"v":[[0,3,["H6213"]],[3,4,["H2572"]],[4,5,["H3924"]],[5,6,["H5921"]],[6,8,["H7020"]],[8,9,["H8193"]],[9,12,["H3407"]],[12,15,["H4225"]],[15,17,["H2572"]],[17,18,["H3924"]],[18,19,["H6213"]],[19,21,["H5921"]],[21,23,["H8193"]],[23,26,["H3407"]],[26,28,["H2279"]],[28,30,["H8145"]]]},{"k":2584,"v":[[0,3,["H6213"]],[3,4,["H2572"]],[4,5,["H7165"]],[5,7,["H5178"]],[7,12,["H2266","(H853)","H168"]],[12,16,["H1961"]],[16,17,["H259"]]]},{"k":2585,"v":[[0,3,["H6213"]],[3,5,["H4372"]],[5,8,["H168"]],[8,10,["H352"]],[10,11,["H5785"]],[11,13,["H119"]],[13,16,["H4372"]],[16,18,["H8476"]],[18,19,["H5785"]],[19,20,["H4480","H4605"]],[20,21,[]]]},{"k":2586,"v":[[0,3,["H6213","(H853)"]],[3,4,["H7175"]],[4,7,["H4908"]],[7,9,["H7848"]],[9,10,["H6086"]],[10,12,["H5975"]]]},{"k":2587,"v":[[0,2,["H753"]],[2,5,["H7175"]],[5,7,["H6235"]],[7,8,["H520"]],[8,11,["H7341"]],[11,13,["H259"]],[13,14,["H7175"]],[14,16,["H520"]],[16,19,["H2677"]]]},{"k":2588,"v":[[0,1,["H259"]],[1,2,["H7175"]],[2,4,["H8147"]],[4,5,["H3027"]],[5,7,["H7947"]],[7,8,["H259"]],[8,9,["H413"]],[9,10,["H259"]],[10,11,["H3651"]],[11,14,["H6213"]],[14,16,["H3605"]],[16,18,["H7175"]],[18,21,["H4908"]]]},{"k":2589,"v":[[0,3,["H6213","(H853)"]],[3,4,["H7175"]],[4,7,["H4908"]],[7,8,["H6242"]],[8,9,["H7175"]],[9,12,["H5045"]],[12,13,["H6285"]],[13,14,["H8486"]]]},{"k":2590,"v":[[0,2,["H705"]],[2,3,["H134"]],[3,5,["H3701"]],[5,7,["H6213"]],[7,8,["H8478"]],[8,10,["H6242"]],[10,11,["H7175"]],[11,12,["H8147"]],[12,13,["H134"]],[13,14,["H8478"]],[14,15,["H259"]],[15,16,["H7175"]],[16,19,["H8147"]],[19,20,["H3027"]],[20,22,["H8147"]],[22,23,["H134"]],[23,24,["H8478"]],[24,25,["H259"]],[25,26,["H7175"]],[26,29,["H8147"]],[29,30,["H3027"]]]},{"k":2591,"v":[[0,4,["H8145"]],[4,5,["H6763"]],[5,8,["H4908"]],[8,13,["H6828"]],[13,14,["H6285"]],[14,16,["H6213"]],[16,17,["H6242"]],[17,18,["H7175"]]]},{"k":2592,"v":[[0,3,["H705"]],[3,4,["H134"]],[4,6,["H3701"]],[6,7,["H8147"]],[7,8,["H134"]],[8,9,["H8478"]],[9,10,["H259"]],[10,11,["H7175"]],[11,13,["H8147"]],[13,14,["H134"]],[14,15,["H8478"]],[15,16,["H259"]],[16,17,["H7175"]]]},{"k":2593,"v":[[0,4,["H3411"]],[4,7,["H4908"]],[7,8,["H3220"]],[8,10,["H6213"]],[10,11,["H8337"]],[11,12,["H7175"]]]},{"k":2594,"v":[[0,2,["H8147"]],[2,3,["H7175"]],[3,4,["H6213"]],[4,8,["H4742"]],[8,11,["H4908"]],[11,15,["H3411"]]]},{"k":2595,"v":[[0,3,["H1961"]],[3,4,["H8382"]],[4,5,["H4480","H4295"]],[5,7,["H1961","H8382"]],[7,8,["H3162"]],[8,9,["H413"]],[9,11,["H7218"]],[11,13,["H413"]],[13,14,["H259"]],[14,15,["H2885"]],[15,16,["H3651"]],[16,18,["H6213"]],[18,20,["H8147"]],[20,24,["H8147"]],[24,26,["H4740"]]]},{"k":2596,"v":[[0,3,["H1961"]],[3,4,["H8083"]],[4,5,["H7175"]],[5,8,["H134"]],[8,10,["H8337","H6240"]],[10,11,["H134"]],[11,13,["H3701"]],[13,14,["H8478"]],[14,15,["H259"]],[15,16,["H7175"]],[16,17,["H8147"]],[17,18,["H134"]]]},{"k":2597,"v":[[0,3,["H6213"]],[3,4,["H1280"]],[4,6,["H7848"]],[6,7,["H6086"]],[7,8,["H2568"]],[8,11,["H7175"]],[11,14,["H259"]],[14,15,["H6763"]],[15,18,["H4908"]]]},{"k":2598,"v":[[0,2,["H2568"]],[2,3,["H1280"]],[3,6,["H7175"]],[6,9,["H8145"]],[9,10,["H6763"]],[10,13,["H4908"]],[13,15,["H2568"]],[15,16,["H1280"]],[16,19,["H7175"]],[19,22,["H4908"]],[22,25,["H3411"]],[25,26,["H3220"]]]},{"k":2599,"v":[[0,3,["H6213","(H853)"]],[3,5,["H8484"]],[5,6,["H1280"]],[6,8,["H1272"]],[8,9,["H8432"]],[9,11,["H7175"]],[11,12,["H4480"]],[12,15,["H7097"]],[15,16,["H413"]],[16,18,["H7097"]]]},{"k":2600,"v":[[0,3,["H6823"]],[3,5,["H7175"]],[5,7,["H2091"]],[7,9,["H6213"]],[9,11,["H2885"]],[11,13,["H2091"]],[13,16,["H1004"]],[16,19,["H1280"]],[19,21,["H6823","(H853)"]],[21,23,["H1280"]],[23,25,["H2091"]]]},{"k":2601,"v":[[0,3,["H6213","(H853)"]],[3,5,["H6532"]],[5,7,["H8504"]],[7,9,["H713"]],[9,11,["H8438","H8144"]],[11,15,["H8336","H7806"]],[15,17,["H3742"]],[17,18,["H6213"]],[18,22,["H2803"]],[22,23,["H4639"]]]},{"k":2602,"v":[[0,3,["H6213"]],[3,5,["H702"]],[5,6,["H5982"]],[6,8,["H7848"]],[8,11,["H6823"]],[11,14,["H2091"]],[14,16,["H2053"]],[16,19,["H2091"]],[19,22,["H3332"]],[22,25,["H702"]],[25,26,["H134"]],[26,28,["H3701"]]]},{"k":2603,"v":[[0,3,["H6213"]],[3,5,["H4539"]],[5,8,["H168"]],[8,9,["H6607"]],[9,11,["H8504"]],[11,13,["H713"]],[13,15,["H8438","H8144"]],[15,19,["H8336","H7806"]],[19,21,["H4639","H7551"]]]},{"k":2604,"v":[[0,3,["H2568"]],[3,4,["H5982"]],[4,9,["H2053"]],[9,12,["H6823"]],[12,14,["H7218"]],[14,17,["H2838"]],[17,19,["H2091"]],[19,22,["H2568"]],[22,23,["H134"]],[23,26,["H5178"]]]},{"k":2605,"v":[[0,2,["H1212"]],[2,3,["H6213","(H853)"]],[3,5,["H727"]],[5,7,["H7848"]],[7,8,["H6086"]],[8,10,["H520"]],[10,13,["H2677"]],[13,16,["H753"]],[16,21,["H520"]],[21,24,["H2677"]],[24,26,["H7341"]],[26,31,["H520"]],[31,34,["H2677"]],[34,36,["H6967"]],[36,38,[]]]},{"k":2606,"v":[[0,3,["H6823"]],[3,6,["H2889"]],[6,7,["H2091"]],[7,8,["H4480","H1004"]],[8,10,["H4480","H2351"]],[10,12,["H6213"]],[12,14,["H2213"]],[14,16,["H2091"]],[16,20,["H5439"]]]},{"k":2607,"v":[[0,3,["H3332"]],[3,6,["H702"]],[6,7,["H2885"]],[7,9,["H2091"]],[9,13,["H5921"]],[13,15,["H702"]],[15,16,["H6471"]],[16,20,["H8147"]],[20,21,["H2885"]],[21,22,["H5921"]],[22,24,["H259"]],[24,25,["H6763"]],[25,29,["H8147"]],[29,30,["H2885"]],[30,31,["H5921"]],[31,33,["H8145"]],[33,34,["H6763"]],[34,36,[]]]},{"k":2608,"v":[[0,3,["H6213"]],[3,4,["H905"]],[4,6,["H7848"]],[6,7,["H6086"]],[7,9,["H6823"]],[9,12,["H2091"]]]},{"k":2609,"v":[[0,3,["H935","(H853)"]],[3,5,["H905"]],[5,8,["H2885"]],[8,9,["H5921"]],[9,11,["H6763"]],[11,14,["H727"]],[14,16,["H5375","(H853)"]],[16,18,["H727"]]]},{"k":2610,"v":[[0,3,["H6213"]],[3,6,["H3727"]],[6,8,["H2889"]],[8,9,["H2091"]],[9,11,["H520"]],[11,14,["H2677"]],[14,17,["H753"]],[17,21,["H520"]],[21,24,["H2677"]],[24,26,["H7341"]],[26,27,[]]]},{"k":2611,"v":[[0,3,["H6213"]],[3,4,["H8147"]],[4,5,["H3742"]],[5,7,["H2091"]],[7,12,["H4749"]],[12,13,["H6213"]],[13,18,["H4480","H8147"]],[18,19,["H7098"]],[19,23,["H3727"]]]},{"k":2612,"v":[[0,1,["H259"]],[1,2,["H3742"]],[2,5,["H4480","H7098"]],[5,8,["H4480","H2088"]],[8,10,["H259"]],[10,11,["H3742"]],[11,15,["H4480","H7098"]],[15,18,["H4480","H2088"]],[18,20,["H4480"]],[20,23,["H3727"]],[23,24,["H6213"]],[24,25,["(H853)"]],[25,27,["H3742"]],[27,30,["H4480","H8147"]],[30,31,["H7098"]],[31,32,[]]]},{"k":2613,"v":[[0,3,["H3742"]],[3,5,["H6566"]],[5,7,["H3671"]],[7,9,["H4605"]],[9,11,["H5526"]],[11,14,["H3671"]],[14,15,["H5921"]],[15,18,["H3727"]],[18,21,["H6440"]],[21,22,["H376"]],[22,23,["H413"]],[23,24,["H251"]],[24,26,["H413"]],[26,29,["H3727"]],[29,30,["H1961"]],[30,32,["H6440"]],[32,35,["H3742"]]]},{"k":2614,"v":[[0,3,["H6213","(H853)"]],[3,5,["H7979"]],[5,7,["H7848"]],[7,8,["H6086"]],[8,10,["H520"]],[10,13,["H753"]],[13,17,["H520"]],[17,19,["H7341"]],[19,23,["H520"]],[23,26,["H2677"]],[26,28,["H6967"]],[28,29,[]]]},{"k":2615,"v":[[0,3,["H6823"]],[3,6,["H2889"]],[6,7,["H2091"]],[7,9,["H6213"]],[9,12,["H2213"]],[12,14,["H2091"]],[14,16,["H5439"]]]},{"k":2616,"v":[[0,3,["H6213"]],[3,6,["H4526"]],[6,9,["H2948"]],[9,11,["H5439"]],[11,13,["H6213"]],[13,15,["H2213"]],[15,17,["H2091"]],[17,20,["H4526"]],[20,23,["H5439"]]]},{"k":2617,"v":[[0,3,["H3332"]],[3,6,["H702"]],[6,7,["H2885"]],[7,9,["H2091"]],[9,11,["H5414","(H853)"]],[11,13,["H2885"]],[13,14,["H5921"]],[14,16,["H702"]],[16,17,["H6285"]],[17,18,["H834"]],[18,22,["H702"]],[22,23,["H7272"]],[23,24,[]]]},{"k":2618,"v":[[0,2,["H5980"]],[2,4,["H4526"]],[4,5,["H1961"]],[5,7,["H2885"]],[7,9,["H1004"]],[9,12,["H905"]],[12,14,["H5375","(H853)"]],[14,16,["H7979"]]]},{"k":2619,"v":[[0,3,["H6213","(H853)"]],[3,5,["H905"]],[5,7,["H7848"]],[7,8,["H6086"]],[8,10,["H6823"]],[10,13,["H2091"]],[13,15,["H5375","(H853)"]],[15,17,["H7979"]]]},{"k":2620,"v":[[0,3,["H6213","(H853)"]],[3,5,["H3627"]],[5,6,["H834"]],[6,8,["H5921"]],[8,10,["H7979","(H853)"]],[10,12,["H7086"]],[12,15,["H3709"]],[15,18,["H4518"]],[18,21,["H7184"]],[21,23,["H5258"]],[23,24,["H2004"]],[24,26,["H2889"]],[26,27,["H2091"]]]},{"k":2621,"v":[[0,3,["H6213","(H853)"]],[3,5,["H4501"]],[5,7,["H2889"]],[7,8,["H2091"]],[8,11,["H4749"]],[11,12,["H6213"]],[12,13,["(H853)"]],[13,15,["H4501"]],[15,17,["H3409"]],[17,20,["H7070"]],[20,22,["H1375"]],[22,24,["H3730"]],[24,27,["H6525"]],[27,28,["H1961"]],[28,29,["H4480"]],[29,31,[]]]},{"k":2622,"v":[[0,2,["H8337"]],[2,3,["H7070"]],[3,5,["H3318"]],[5,8,["H4480","H6654"]],[8,10,["H7969"]],[10,11,["H7070"]],[11,14,["H4501"]],[14,19,["H4480","H6654","H259"]],[19,22,["H7969"]],[22,23,["H7070"]],[23,26,["H4501"]],[26,31,["H4480","H6654","H8145"]],[31,32,[]]]},{"k":2623,"v":[[0,1,["H7969"]],[1,2,["H1375"]],[2,8,["H8246"]],[8,10,["H259"]],[10,11,["H7070"]],[11,13,["H3730"]],[13,16,["H6525"]],[16,18,["H7969"]],[18,19,["H1375"]],[19,22,["H8246"]],[22,24,["H259"]],[24,25,["H7070"]],[25,27,["H3730"]],[27,30,["H6525"]],[30,31,["H3651"]],[31,34,["H8337"]],[34,35,["H7070"]],[35,37,["H3318"]],[37,38,["H4480"]],[38,40,["H4501"]]]},{"k":2624,"v":[[0,4,["H4501"]],[4,6,["H702"]],[6,7,["H1375"]],[7,10,["H8246"]],[10,12,["H3730"]],[12,15,["H6525"]]]},{"k":2625,"v":[[0,3,["H3730"]],[3,4,["H8478"]],[4,5,["H8147"]],[5,6,["H7070"]],[6,7,["H4480"]],[7,12,["H3730"]],[12,13,["H8478"]],[13,14,["H8147"]],[14,15,["H7070"]],[15,16,["H4480"]],[16,21,["H3730"]],[21,22,["H8478"]],[22,23,["H8147"]],[23,24,["H7070"]],[24,25,["H4480"]],[25,31,["H8337"]],[31,32,["H7070"]],[32,34,["H3318"]],[34,35,["H4480"]],[35,36,[]]]},{"k":2626,"v":[[0,2,["H3730"]],[2,5,["H7070"]],[5,6,["H1961"]],[6,7,["H4480"]],[7,10,["H3605"]],[10,14,["H259"]],[14,16,["H4749"]],[16,18,["H2889"]],[18,19,["H2091"]]]},{"k":2627,"v":[[0,3,["H6213","(H853)"]],[3,5,["H7651"]],[5,6,["H5216"]],[6,9,["H4457"]],[9,12,["H4289"]],[12,14,["H2889"]],[14,15,["H2091"]]]},{"k":2628,"v":[[0,3,["H3603"]],[3,5,["H2889"]],[5,6,["H2091"]],[6,7,["H6213"]],[7,11,["H3605"]],[11,13,["H3627"]],[13,14,[]]]},{"k":2629,"v":[[0,3,["H6213","(H853)"]],[3,5,["H7004"]],[5,6,["H4196"]],[6,8,["H7848"]],[8,9,["H6086"]],[9,11,["H753"]],[11,16,["H520"]],[16,19,["H7341"]],[19,23,["H520"]],[23,26,["H7251"]],[26,29,["H520"]],[29,32,["H6967"]],[32,36,["H7161"]],[36,38,["H1961"]],[38,39,["H4480"]],[39,41,[]]]},{"k":2630,"v":[[0,3,["H6823"]],[3,6,["H2889"]],[6,7,["H2091","(H853)"]],[7,10,["H1406"]],[10,15,["H7023"]],[15,18,["H5439"]],[18,21,["H7161"]],[21,26,["H6213"]],[26,30,["H2213"]],[30,32,["H2091"]],[32,34,["H5439"]]]},{"k":2631,"v":[[0,3,["H6213"]],[3,4,["H8147"]],[4,5,["H2885"]],[5,7,["H2091"]],[7,10,["H4480","H8478"]],[10,12,["H2213"]],[12,14,["H5921"]],[14,16,["H8147"]],[16,17,["H6763"]],[17,20,["H5921"]],[20,22,["H8147"]],[22,23,["H6654"]],[23,27,["H1004"]],[27,30,["H905"]],[30,32,["H5375"]],[32,34,[]]]},{"k":2632,"v":[[0,3,["H6213","(H853)"]],[3,5,["H905"]],[5,7,["H7848"]],[7,8,["H6086"]],[8,10,["H6823"]],[10,13,["H2091"]]]},{"k":2633,"v":[[0,3,["H6213","(H853)"]],[3,5,["H6944"]],[5,6,["H4888"]],[6,7,["H8081"]],[7,10,["H2889"]],[10,11,["H7004"]],[11,14,["H5561"]],[14,18,["H4639"]],[18,21,["H7543"]]]},{"k":2634,"v":[[0,3,["H6213","(H853)"]],[3,5,["H4196"]],[5,8,["H5930"]],[8,10,["H7848"]],[10,11,["H6086"]],[11,12,["H2568"]],[12,13,["H520"]],[13,16,["H753"]],[16,19,["H2568"]],[19,20,["H520"]],[20,22,["H7341"]],[22,26,["H7251"]],[26,28,["H7969"]],[28,29,["H520"]],[29,31,["H6967"]],[31,32,[]]]},{"k":2635,"v":[[0,3,["H6213"]],[3,5,["H7161"]],[5,7,["H5921"]],[7,9,["H702"]],[9,10,["H6438"]],[10,14,["H7161"]],[14,16,["H1961"]],[16,17,["H4480"]],[17,22,["H6823"]],[22,25,["H5178"]]]},{"k":2636,"v":[[0,3,["H6213","(H853)"]],[3,4,["H3605"]],[4,6,["H3627"]],[6,9,["H4196","(H853)"]],[9,11,["H5518"]],[11,14,["H3257"]],[14,17,["H4219"]],[17,18,["(H853)"]],[18,20,["H4207"]],[20,23,["H4289"]],[23,24,["H3605"]],[24,26,["H3627"]],[26,28,["H6213"]],[28,31,["H5178"]]]},{"k":2637,"v":[[0,3,["H6213"]],[3,6,["H4196"]],[6,8,["H5178"]],[8,9,["H4345"]],[9,11,["H4639","H7568"]],[11,12,["H8478"]],[12,14,["H3749"]],[14,16,["H4480","H4295"]],[16,17,["H5704"]],[17,19,["H2677"]],[19,21,[]]]},{"k":2638,"v":[[0,3,["H3332"]],[3,4,["H702"]],[4,5,["H2885"]],[5,8,["H702"]],[8,9,["H7099"]],[9,12,["H4345"]],[12,14,["H5178"]],[14,17,["H1004"]],[17,20,["H905"]]]},{"k":2639,"v":[[0,3,["H6213","(H853)"]],[3,5,["H905"]],[5,7,["H7848"]],[7,8,["H6086"]],[8,10,["H6823"]],[10,13,["H5178"]]]},{"k":2640,"v":[[0,3,["H935","(H853)"]],[3,5,["H905"]],[5,8,["H2885"]],[8,9,["H5921"]],[9,11,["H6763"]],[11,14,["H4196"]],[14,16,["H5375"]],[16,20,["H6213"]],[20,23,["H5014"]],[23,25,["H3871"]]]},{"k":2641,"v":[[0,3,["H6213","(H853)"]],[3,5,["H3595"]],[5,7,["H5178"]],[7,10,["H3653"]],[10,14,["H5178"]],[14,17,["H4759"]],[17,21,["H6633"]],[21,22,["H834"]],[22,23,["H6633"]],[23,26,["H6607"]],[26,29,["H168"]],[29,32,["H4150"]]]},{"k":2642,"v":[[0,3,["H6213","(H853)"]],[3,5,["H2691"]],[5,8,["H5045"]],[8,9,["H6285"]],[9,10,["H8486"]],[10,12,["H7050"]],[12,15,["H2691"]],[15,20,["H8336","H7806"]],[20,22,["H3967"]],[22,23,["H520"]]]},{"k":2643,"v":[[0,2,["H5982"]],[2,4,["H6242"]],[4,7,["H5178"]],[7,8,["H134"]],[8,9,["H6242"]],[9,11,["H2053"]],[11,14,["H5982"]],[14,17,["H2838"]],[17,20,["H3701"]]]},{"k":2644,"v":[[0,4,["H6828"]],[4,5,["H6285"]],[5,10,["H3967"]],[10,11,["H520"]],[11,13,["H5982"]],[13,15,["H6242"]],[15,18,["H134"]],[18,20,["H5178"]],[20,21,["H6242"]],[21,23,["H2053"]],[23,26,["H5982"]],[26,29,["H2838"]],[29,31,["H3701"]]]},{"k":2645,"v":[[0,4,["H3220"]],[4,5,["H6285"]],[5,7,["H7050"]],[7,9,["H2572"]],[9,10,["H520"]],[10,12,["H5982"]],[12,13,["H6235"]],[13,16,["H134"]],[16,17,["H6235"]],[17,19,["H2053"]],[19,22,["H5982"]],[22,25,["H2838"]],[25,27,["H3701"]]]},{"k":2646,"v":[[0,4,["H6924"]],[4,5,["H6285"]],[5,6,["H4217"]],[6,7,["H2572"]],[7,8,["H520"]]]},{"k":2647,"v":[[0,2,["H7050"]],[2,3,["H413"]],[3,6,["H3802"]],[6,11,["H2568","H6240"]],[11,12,["H520"]],[12,14,["H5982"]],[14,15,["H7969"]],[15,18,["H134"]],[18,19,["H7969"]]]},{"k":2648,"v":[[0,4,["H8145"]],[4,5,["H3802"]],[5,8,["H2691"]],[8,9,["H8179"]],[9,12,["H4480","H2088"]],[12,15,["(H4480)","H2088"]],[15,17,["H7050"]],[17,19,["H2568","H6240"]],[19,20,["H520"]],[20,22,["H5982"]],[22,23,["H7969"]],[23,26,["H134"]],[26,27,["H7969"]]]},{"k":2649,"v":[[0,1,["H3605"]],[1,3,["H7050"]],[3,6,["H2691"]],[6,8,["H5439"]],[8,13,["H8336","H7806"]]]},{"k":2650,"v":[[0,3,["H134"]],[3,6,["H5982"]],[6,9,["H5178"]],[9,11,["H2053"]],[11,14,["H5982"]],[14,17,["H2838"]],[17,19,["H3701"]],[19,22,["H6826"]],[22,25,["H7218"]],[25,27,["H3701"]],[27,29,["H3605"]],[29,31,["H5982"]],[31,34,["H2691"]],[34,36,["H2836"]],[36,38,["H3701"]]]},{"k":2651,"v":[[0,3,["H4539"]],[3,6,["H8179"]],[6,9,["H2691"]],[9,11,["H4639","H7551"]],[11,13,["H8504"]],[13,15,["H713"]],[15,17,["H8438","H8144"]],[17,21,["H8336","H7806"]],[21,23,["H6242"]],[23,24,["H520"]],[24,27,["H753"]],[27,30,["H6967"]],[30,33,["H7341"]],[33,35,["H2568"]],[35,36,["H520"]],[36,38,["H5980"]],[38,40,["H7050"]],[40,43,["H2691"]]]},{"k":2652,"v":[[0,3,["H5982"]],[3,5,["H702"]],[5,8,["H134"]],[8,10,["H5178"]],[10,11,["H702"]],[11,13,["H2053"]],[13,15,["H3701"]],[15,18,["H6826"]],[18,21,["H7218"]],[21,24,["H2838"]],[24,26,["H3701"]]]},{"k":2653,"v":[[0,2,["H3605"]],[2,4,["H3489"]],[4,7,["H4908"]],[7,11,["H2691"]],[11,13,["H5439"]],[13,16,["H5178"]]]},{"k":2654,"v":[[0,1,["H428"]],[1,4,["H6485"]],[4,7,["H4908"]],[7,11,["H4908"]],[11,13,["H5715"]],[13,14,["H834"]],[14,17,["H6485"]],[17,18,["H5921"]],[18,21,["H6310"]],[21,23,["H4872"]],[23,26,["H5656"]],[26,29,["H3881"]],[29,32,["H3027"]],[32,34,["H385"]],[34,35,["H1121"]],[35,37,["H175"]],[37,39,["H3548"]]]},{"k":2655,"v":[[0,2,["H1212"]],[2,4,["H1121"]],[4,6,["H221"]],[6,8,["H1121"]],[8,10,["H2354"]],[10,13,["H4294"]],[13,15,["H3063"]],[15,16,["H6213","(H853)"]],[16,17,["H3605"]],[17,18,["H834"]],[18,20,["H3068"]],[20,21,["H6680","(H853)"]],[21,22,["H4872"]]]},{"k":2656,"v":[[0,2,["H854"]],[2,5,["H171"]],[5,6,["H1121"]],[6,8,["H294"]],[8,11,["H4294"]],[11,13,["H1835"]],[13,15,["H2796"]],[15,19,["H2803"]],[19,22,["H7551"]],[22,24,["H8504"]],[24,27,["H713"]],[27,30,["H8438","H8144"]],[30,33,["H8336"]]]},{"k":2657,"v":[[0,1,["H3605"]],[1,3,["H2091"]],[3,6,["H6213"]],[6,9,["H4399"]],[9,11,["H3605"]],[11,13,["H4399"]],[13,16,["H6944"]],[16,20,["H2091"]],[20,23,["H8573"]],[23,24,["H1961"]],[24,25,["H6242"]],[25,27,["H8672"]],[27,28,["H3603"]],[28,30,["H7651"]],[30,31,["H3967"]],[31,33,["H7970"]],[33,34,["H8255"]],[34,37,["H8255"]],[37,40,["H6944"]]]},{"k":2658,"v":[[0,3,["H3701"]],[3,8,["H6485"]],[8,11,["H5712"]],[11,14,["H3967"]],[14,15,["H3603"]],[15,18,["H505"]],[18,19,["H7651"]],[19,20,["H3967"]],[20,24,["H7657","H2568"]],[24,25,["H8255"]],[25,28,["H8255"]],[28,31,["H6944"]]]},{"k":2659,"v":[[0,2,["H1235"]],[2,5,["H1538"]],[5,8,["H4276"]],[8,10,["H8255"]],[10,13,["H8255"]],[13,16,["H6944"]],[16,19,["H3605"]],[19,21,["H5674"]],[21,22,["H5921"]],[22,24,["H6485"]],[24,28,["H4480","H1121","H6242","H8141"]],[28,30,["H4605"]],[30,32,["H8337"]],[32,33,["H3967"]],[33,34,["H505"]],[34,36,["H7969"]],[36,37,["H505"]],[37,39,["H2568"]],[39,40,["H3967"]],[40,42,["H2572"]],[42,43,[]]]},{"k":2660,"v":[[0,4,["H3967"]],[4,5,["H3603"]],[5,7,["H3701"]],[7,8,["H1961"]],[8,9,["H3332","(H853)"]],[9,11,["H134"]],[11,14,["H6944"]],[14,17,["H134"]],[17,20,["H6532"]],[20,22,["H3967"]],[22,23,["H134"]],[23,26,["H3967"]],[26,27,["H3603"]],[27,29,["H3603"]],[29,32,["H134"]]]},{"k":2661,"v":[[0,4,["H505"]],[4,5,["H7651"]],[5,6,["H3967"]],[6,7,["H7657"]],[7,9,["H2568"]],[9,12,["H6213"]],[12,13,["H2053"]],[13,16,["H5982"]],[16,18,["H6823"]],[18,20,["H7218"]],[20,22,["H2836"]],[22,23,[]]]},{"k":2662,"v":[[0,3,["H5178"]],[3,6,["H8573"]],[6,8,["H7657"]],[8,9,["H3603"]],[9,12,["H505"]],[12,14,["H702"]],[14,15,["H3967"]],[15,16,["H8255"]]]},{"k":2663,"v":[[0,4,["H6213","(H853)"]],[4,6,["H134"]],[6,9,["H6607"]],[9,12,["H168"]],[12,15,["H4150"]],[15,18,["H5178"]],[18,19,["H4196"]],[19,22,["H5178"]],[22,23,["H4345"]],[23,27,["H3605"]],[27,29,["H3627"]],[29,32,["H4196"]]]},{"k":2664,"v":[[0,3,["H134"]],[3,6,["H2691"]],[6,8,["H5439"]],[8,11,["H134"]],[11,14,["H2691"]],[14,15,["H8179"]],[15,17,["H3605"]],[17,19,["H3489"]],[19,22,["H4908"]],[22,24,["H3605"]],[24,26,["H3489"]],[26,29,["H2691"]],[29,31,["H5439"]]]},{"k":2665,"v":[[0,2,["H4480"]],[2,4,["H8504"]],[4,6,["H713"]],[6,8,["H8438","H8144"]],[8,10,["H6213"]],[10,11,["H899"]],[11,13,["H8278"]],[13,16,["H8334"]],[16,19,["H6944"]],[19,22,["H6213","(H853)"]],[22,24,["H6944"]],[24,25,["H899"]],[25,27,["H175"]],[27,28,["H834"]],[28,30,["H3068"]],[30,31,["H6680","(H853)"]],[31,32,["H4872"]]]},{"k":2666,"v":[[0,3,["H6213","(H853)"]],[3,5,["H646"]],[5,7,["H2091"]],[7,8,["H8504"]],[8,10,["H713"]],[10,12,["H8438","H8144"]],[12,16,["H8336","H7806"]]]},{"k":2667,"v":[[0,4,["H7554","(H853)"]],[4,6,["H2091"]],[6,9,["H6341"]],[9,11,["H7112"]],[11,14,["H6616"]],[14,16,["H6213"]],[16,18,["H8432"]],[18,20,["H8504"]],[20,22,["H8432"]],[22,24,["H713"]],[24,26,["H8432"]],[26,28,["H8438","H8144"]],[28,30,["H8432"]],[30,33,["H8336"]],[33,35,["H2803"]],[35,36,["H4639"]]]},{"k":2668,"v":[[0,2,["H6213"]],[2,3,["H3802"]],[3,9,["H2266"]],[9,10,["H5921"]],[10,12,["H8147"]],[12,13,["H7098"]],[13,17,["H2266"]]]},{"k":2669,"v":[[0,4,["H2805"]],[4,7,["H642"]],[7,8,["H834"]],[8,10,["H5921"]],[10,13,["H4480"]],[13,15,["H1931"]],[15,19,["H4639"]],[19,22,["H2091"]],[22,23,["H8504"]],[23,25,["H713"]],[25,27,["H8438","H8144"]],[27,31,["H8336","H7806"]],[31,32,["H834"]],[32,34,["H3068"]],[34,35,["H6680","(H853)"]],[35,36,["H4872"]]]},{"k":2670,"v":[[0,3,["H6213","(H853)"]],[3,4,["H7718"]],[4,5,["H68"]],[5,7,["H4142"]],[7,8,["H4865"]],[8,10,["H2091"]],[10,11,["H6605"]],[11,13,["H2368"]],[13,15,["H6603"]],[15,16,["H5921"]],[16,18,["H8034"]],[18,21,["H1121"]],[21,23,["H3478"]]]},{"k":2671,"v":[[0,3,["H7760"]],[3,5,["H5921"]],[5,7,["H3802"]],[7,10,["H646"]],[10,15,["H68"]],[15,18,["H2146"]],[18,21,["H1121"]],[21,23,["H3478"]],[23,24,["H834"]],[24,26,["H3068"]],[26,27,["H6680","(H853)"]],[27,28,["H4872"]]]},{"k":2672,"v":[[0,3,["H6213","(H853)"]],[3,5,["H2833"]],[5,7,["H2803"]],[7,8,["H4639"]],[8,11,["H4639"]],[11,14,["H646"]],[14,16,["H2091"]],[16,17,["H8504"]],[17,19,["H713"]],[19,21,["H8438","H8144"]],[21,25,["H8336","H7806"]]]},{"k":2673,"v":[[0,2,["H1961"]],[2,3,["H7251"]],[3,5,["H6213","(H853)"]],[5,7,["H2833"]],[7,8,["H3717"]],[8,10,["H2239"]],[10,13,["H753"]],[13,17,["H2239"]],[17,19,["H7341"]],[19,22,["H3717"]]]},{"k":2674,"v":[[0,3,["H4390"]],[3,6,["H702"]],[6,7,["H2905"]],[7,9,["H68"]],[9,12,["H2905"]],[12,15,["H124"]],[15,17,["H6357"]],[17,20,["H1304"]],[20,24,["H259"]],[24,25,["H2905"]]]},{"k":2675,"v":[[0,3,["H8145"]],[3,4,["H2905"]],[4,6,["H5306"]],[6,8,["H5601"]],[8,11,["H3095"]]]},{"k":2676,"v":[[0,3,["H7992"]],[3,4,["H2905"]],[4,6,["H3958"]],[6,8,["H7618"]],[8,11,["H306"]]]},{"k":2677,"v":[[0,3,["H7243"]],[3,4,["H2905"]],[4,6,["H8658"]],[6,8,["H7718"]],[8,11,["H3471"]],[11,14,["H4142"]],[14,16,["H4865"]],[16,18,["H2091"]],[18,21,["H4396"]]]},{"k":2678,"v":[[0,3,["H68"]],[3,6,["H5921"]],[6,8,["H8034"]],[8,11,["H1121"]],[11,13,["H3478"]],[13,14,["H8147","H6240"]],[14,16,["H5921"]],[16,18,["H8034"]],[18,21,["H6603"]],[21,24,["H2368"]],[24,26,["H376"]],[26,27,["H5921"]],[27,29,["H8034"]],[29,33,["H8147","H6240"]],[33,34,["H7626"]]]},{"k":2679,"v":[[0,3,["H6213"]],[3,4,["H5921"]],[4,6,["H2833"]],[6,7,["H8333"]],[7,10,["H1383"]],[10,12,["H5688"]],[12,13,["H4639"]],[13,15,["H2889"]],[15,16,["H2091"]]]},{"k":2680,"v":[[0,3,["H6213"]],[3,4,["H8147"]],[4,5,["H4865"]],[5,7,["H2091"]],[7,9,["H8147"]],[9,10,["H2091"]],[10,11,["H2885"]],[11,13,["H5414","(H853)"]],[13,15,["H8147"]],[15,16,["H2885"]],[16,17,["H5921"]],[17,19,["H8147"]],[19,20,["H7098"]],[20,23,["H2833"]]]},{"k":2681,"v":[[0,3,["H5414"]],[3,5,["H8147"]],[5,7,["H5688"]],[7,9,["H2091"]],[9,10,["H5921"]],[10,12,["H8147"]],[12,13,["H2885"]],[13,14,["H5921"]],[14,16,["H7098"]],[16,19,["H2833"]]]},{"k":2682,"v":[[0,3,["H8147"]],[3,4,["H7098"]],[4,7,["H8147"]],[7,9,["H5688"]],[9,11,["H5414"]],[11,12,["H5921"]],[12,14,["H8147"]],[14,15,["H4865"]],[15,17,["H5414"]],[17,19,["H5921"]],[19,21,["H3802"]],[21,24,["H646"]],[24,25,["H413","H4136","H6440"]],[25,26,[]]]},{"k":2683,"v":[[0,3,["H6213"]],[3,4,["H8147"]],[4,5,["H2885"]],[5,7,["H2091"]],[7,9,["H7760"]],[9,11,["H5921"]],[11,13,["H8147"]],[13,14,["H7098"]],[14,17,["H2833"]],[17,18,["H5921"]],[18,20,["H8193"]],[20,23,["H834"]],[23,25,["H413"]],[25,27,["H5676"]],[27,30,["H646"]],[30,31,["H1004"]]]},{"k":2684,"v":[[0,3,["H6213"]],[3,4,["H8147"]],[4,6,["H2091"]],[6,7,["H2885"]],[7,9,["H5414"]],[9,11,["H5921"]],[11,13,["H8147"]],[13,14,["H3802"]],[14,17,["H646"]],[17,18,["H4480","H4295"]],[18,19,["H4480","H4136"]],[19,21,["H6440"]],[21,25,["H5980"]],[25,28,["H4225"]],[28,30,["H4480","H4605"]],[30,33,["H2805"]],[33,36,["H646"]]]},{"k":2685,"v":[[0,4,["H7405","(H853)"]],[4,6,["H2833"]],[6,9,["H4480","H2885"]],[9,10,["H413"]],[10,12,["H2885"]],[12,15,["H646"]],[15,18,["H6616"]],[18,20,["H8504"]],[20,24,["H1961"]],[24,25,["H5921"]],[25,28,["H2805"]],[28,31,["H646"]],[31,35,["H2833"]],[35,37,["H3808"]],[37,39,["H2118"]],[39,40,["H4480","H5921"]],[40,42,["H646"]],[42,43,["H834"]],[43,45,["H3068"]],[45,46,["H6680","(H853)"]],[46,47,["H4872"]]]},{"k":2686,"v":[[0,3,["H6213","(H853)"]],[3,5,["H4598"]],[5,8,["H646"]],[8,10,["H707"]],[10,11,["H4639"]],[11,12,["H3632"]],[12,14,["H8504"]]]},{"k":2687,"v":[[0,5,["H6310"]],[5,8,["H8432"]],[8,11,["H4598"]],[11,14,["H6310"]],[14,17,["H8473"]],[17,20,["H8193"]],[20,22,["H5439"]],[22,24,["H6310"]],[24,28,["H3808"]],[28,29,["H7167"]]]},{"k":2688,"v":[[0,3,["H6213"]],[3,4,["H5921"]],[4,6,["H7757"]],[6,9,["H4598"]],[9,10,["H7416"]],[10,12,["H8504"]],[12,14,["H713"]],[14,16,["H8438","H8144"]],[16,18,["H7806"]],[18,19,[]]]},{"k":2689,"v":[[0,3,["H6213"]],[3,4,["H6472"]],[4,6,["H2889"]],[6,7,["H2091"]],[7,9,["H5414","(H853)"]],[9,11,["H6472"]],[11,12,["H8432"]],[12,14,["H7416"]],[14,15,["H5921"]],[15,17,["H7757"]],[17,20,["H4598"]],[20,22,["H5439"]],[22,23,["H8432"]],[23,25,["H7416"]]]},{"k":2690,"v":[[0,2,["H6472"]],[2,5,["H7416"]],[5,7,["H6472"]],[7,10,["H7416"]],[10,12,["H5439","H5921"]],[12,14,["H7757"]],[14,17,["H4598"]],[17,19,["H8334"]],[19,21,["H8334"]],[21,23,["H3068"]],[23,24,["H6680","(H853)"]],[24,25,["H4872"]]]},{"k":2691,"v":[[0,3,["H6213","(H853)"]],[3,4,["H3801"]],[4,7,["H8336"]],[7,9,["H707"]],[9,10,["H4639"]],[10,12,["H175"]],[12,16,["H1121"]]]},{"k":2692,"v":[[0,3,["H4701"]],[3,6,["H8336"]],[6,8,["H6287"]],[8,9,["H4021"]],[9,12,["H8336"]],[12,14,["H906"]],[14,15,["H4370"]],[15,19,["H8336","H7806"]]]},{"k":2693,"v":[[0,3,["H73"]],[3,7,["H8336","H7806"]],[7,9,["H8504"]],[9,11,["H713"]],[11,13,["H8438","H8144"]],[13,15,["H4639","H7551"]],[15,16,["H834"]],[16,18,["H3068"]],[18,19,["H6680","(H853)"]],[19,20,["H4872"]]]},{"k":2694,"v":[[0,3,["H6213","(H853)"]],[3,5,["H6731"]],[5,8,["H6944"]],[8,9,["H5145"]],[9,11,["H2889"]],[11,12,["H2091"]],[12,14,["H3789"]],[14,15,["H5921"]],[15,18,["H4385"]],[18,22,["H6603"]],[22,25,["H2368"]],[25,26,["H6944"]],[26,29,["H3068"]]]},{"k":2695,"v":[[0,3,["H5414"]],[3,4,["H5921"]],[4,7,["H6616"]],[7,9,["H8504"]],[9,11,["H5414"]],[11,14,["H4480","H4605"]],[14,15,["H5921"]],[15,17,["H4701"]],[17,18,["H834"]],[18,20,["H3068"]],[20,21,["H6680","(H853)"]],[21,22,["H4872"]]]},{"k":2696,"v":[[0,3,["H3605"]],[3,5,["H5656"]],[5,8,["H4908"]],[8,11,["H168"]],[11,14,["H4150"]],[14,15,["H3615"]],[15,18,["H1121"]],[18,20,["H3478"]],[20,21,["H6213"]],[21,24,["H3605"]],[24,25,["H834"]],[25,27,["H3068"]],[27,28,["H6680","(H853)"]],[28,29,["H4872"]],[29,30,["H3651"]],[30,31,["H6213"]],[31,32,[]]]},{"k":2697,"v":[[0,3,["H935","(H853)"]],[3,5,["H4908"]],[5,6,["H413"]],[6,7,["H4872","(H853)"]],[7,9,["H168"]],[9,11,["H3605"]],[11,13,["H3627"]],[13,15,["H7165"]],[15,17,["H7175"]],[17,19,["H1280"]],[19,22,["H5982"]],[22,25,["H134"]]]},{"k":2698,"v":[[0,3,["H4372"]],[3,5,["H352"]],[5,6,["H5785"]],[6,8,["H119"]],[8,11,["H4372"]],[11,13,["H8476"]],[13,14,["H5785"]],[14,17,["H6532"]],[17,20,["H4539"]]]},{"k":2699,"v":[[0,0,["(H853)"]],[0,2,["H727"]],[2,5,["H5715"]],[5,8,["H905"]],[8,13,["H3727"]]]},{"k":2700,"v":[[0,0,["(H853)"]],[0,2,["H7979"]],[2,3,["(H853)"]],[3,4,["H3605"]],[4,6,["H3627"]],[6,10,["H3899","H6440"]]]},{"k":2701,"v":[[0,0,["(H853)"]],[0,2,["H2889"]],[2,3,["H4501"]],[3,4,["(H853)"]],[4,6,["H5216"]],[6,11,["H5216"]],[11,16,["H4634"]],[16,18,["H3605"]],[18,20,["H3627"]],[20,24,["H8081"]],[24,26,["H3974"]]]},{"k":2702,"v":[[0,3,["H2091"]],[3,4,["H4196"]],[4,7,["H4888"]],[7,8,["H8081"]],[8,11,["H5561"]],[11,12,["H7004"]],[12,15,["H4539"]],[15,18,["H168"]],[18,19,["H6607"]]]},{"k":2703,"v":[[0,0,["(H853)"]],[0,2,["H5178"]],[2,3,["H4196"]],[3,5,["H834"]],[5,6,["H4345"]],[6,8,["H5178","(H853)"]],[8,10,["H905"]],[10,12,["H3605"]],[12,14,["H3627","(H853)"]],[14,16,["H3595"]],[16,19,["H3653"]]]},{"k":2704,"v":[[0,0,["(H853)"]],[0,2,["H7050"]],[2,5,["H2691","(H853)"]],[5,7,["H5982"]],[7,10,["H134"]],[10,13,["H4539"]],[13,16,["H2691"]],[16,17,["H8179","(H853)"]],[17,19,["H4340"]],[19,22,["H3489"]],[22,24,["H3605"]],[24,26,["H3627"]],[26,29,["H5656"]],[29,32,["H4908"]],[32,35,["H168"]],[35,38,["H4150"]]]},{"k":2705,"v":[[0,0,["(H853)"]],[0,2,["H899"]],[2,4,["H8278"]],[4,7,["H8334"]],[7,10,["H6944"]],[10,12,["(H853)"]],[12,14,["H6944"]],[14,15,["H899"]],[15,17,["H175"]],[17,19,["H3548"]],[19,22,["H1121"]],[22,23,["H899"]],[23,29,["H3547"]]]},{"k":2706,"v":[[0,3,["H3605"]],[3,4,["H834"]],[4,6,["H3068"]],[6,7,["H6680","(H853)"]],[7,8,["H4872"]],[8,9,["H3651"]],[9,11,["H1121"]],[11,13,["H3478"]],[13,14,["H6213","(H853)"]],[14,15,["H3605"]],[15,17,["H5656"]]]},{"k":2707,"v":[[0,2,["H4872"]],[2,5,["H7200","(H853)"]],[5,6,["H3605"]],[6,8,["H4399"]],[8,10,["H2009"]],[10,13,["H6213"]],[13,15,["H834"]],[15,17,["H3068"]],[17,19,["H6680"]],[19,21,["H3651"]],[21,24,["H6213"]],[24,27,["H4872"]],[27,28,["H1288"]],[28,29,[]]]},{"k":2708,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2709,"v":[[0,4,["H3117","H259","H2320"]],[4,7,["H7223"]],[7,8,["H2320"]],[8,12,["H6965","(H853)"]],[12,14,["H4908"]],[14,17,["H168"]],[17,20,["H4150"]]]},{"k":2710,"v":[[0,4,["H7760"]],[4,5,["H8033","(H853)"]],[5,7,["H727"]],[7,10,["H5715"]],[10,12,["H5526","H5921"]],[12,14,["H727"]],[14,15,["H854"]],[15,17,["H6532"]]]},{"k":2711,"v":[[0,5,["H935","(H853)"]],[5,7,["H7979"]],[7,11,["H6186","(H853)"]],[11,20,["H6187"]],[20,27,["H935","(H853)"]],[27,29,["H4501"]],[29,31,["H5927","(H853)"]],[31,33,["H5216"]],[33,34,[]]]},{"k":2712,"v":[[0,4,["H5414","(H853)"]],[4,6,["H4196"]],[6,8,["H2091"]],[8,11,["H7004"]],[11,12,["H6440"]],[12,14,["H727"]],[14,17,["H5715"]],[17,19,["H7760","(H853)"]],[19,21,["H4539"]],[21,24,["H6607"]],[24,27,["H4908"]]]},{"k":2713,"v":[[0,4,["H5414","(H853)"]],[4,6,["H4196"]],[6,10,["H5930"]],[10,11,["H6440"]],[11,13,["H6607"]],[13,16,["H4908"]],[16,19,["H168"]],[19,22,["H4150"]]]},{"k":2714,"v":[[0,4,["H5414","(H853)"]],[4,6,["H3595"]],[6,7,["H996"]],[7,9,["H168"]],[9,12,["H4150"]],[12,15,["H4196"]],[15,18,["H5414"]],[18,19,["H4325"]],[19,20,["H8033"]]]},{"k":2715,"v":[[0,5,["H7760","(H853)"]],[5,7,["H2691"]],[7,9,["H5439"]],[9,12,["H5414","(H853)"]],[12,14,["H4539"]],[14,17,["H2691"]],[17,18,["H8179"]]]},{"k":2716,"v":[[0,4,["H3947","(H853)"]],[4,6,["H4888"]],[6,7,["H8081"]],[7,9,["H4886","(H853)"]],[9,11,["H4908"]],[11,13,["H3605"]],[13,14,["H834"]],[14,19,["H6942"]],[19,22,["H3605"]],[22,24,["H3627"]],[24,29,["H1961"]],[29,30,["H6944"]]]},{"k":2717,"v":[[0,4,["H4886","(H853)"]],[4,6,["H4196"]],[6,10,["H5930"]],[10,12,["H3605"]],[12,14,["H3627"]],[14,16,["H6942","(H853)"]],[16,18,["H4196"]],[18,22,["H1961"]],[22,24,["H4196"]],[24,26,["H6944","H6944"]]]},{"k":2718,"v":[[0,4,["H4886","(H853)"]],[4,6,["H3595"]],[6,9,["H3653"]],[9,11,["H6942"]],[11,12,[]]]},{"k":2719,"v":[[0,4,["H7126","(H853)"]],[4,5,["H175"]],[5,8,["H1121"]],[8,9,["H413"]],[9,11,["H6607"]],[11,14,["H168"]],[14,17,["H4150"]],[17,19,["H7364"]],[19,22,["H4325"]]]},{"k":2720,"v":[[0,5,["H3847","(H853)"]],[5,6,["H175"]],[6,7,["(H853)"]],[7,8,["H6944"]],[8,9,["H899"]],[9,11,["H4886"]],[11,14,["H6942"]],[14,25,["H3547"]]]},{"k":2721,"v":[[0,4,["H7126"]],[4,6,["H1121"]],[6,8,["H3847"]],[8,11,["H3801"]]]},{"k":2722,"v":[[0,4,["H4886"]],[4,6,["H834"]],[6,9,["H4886","(H853)"]],[9,11,["H1"]],[11,21,["H3547"]],[21,24,["H4886"]],[24,27,["H1961","H1961"]],[27,29,["H5769"]],[29,30,["H3550"]],[30,33,["H1755"]]]},{"k":2723,"v":[[0,2,["H6213"]],[2,3,["H4872"]],[3,6,["H3605"]],[6,7,["H834"]],[7,9,["H3068"]],[9,10,["H6680"]],[10,12,["H3651"]],[12,13,["H6213"]],[13,14,[]]]},{"k":2724,"v":[[0,5,["H1961"]],[5,8,["H7223"]],[8,9,["H2320"]],[9,12,["H8145"]],[12,13,["H8141"]],[13,16,["H259"]],[16,20,["H2320"]],[20,23,["H4908"]],[23,26,["H6965"]]]},{"k":2725,"v":[[0,2,["H4872"]],[2,4,["H6965","(H853)"]],[4,6,["H4908"]],[6,8,["H5414","(H853)"]],[8,10,["H134"]],[10,13,["H7760","(H853)"]],[13,15,["H7175"]],[15,19,["H5414","(H853)"]],[19,21,["H1280"]],[21,25,["H6965","(H853)"]],[25,27,["H5982"]]]},{"k":2726,"v":[[0,4,["H6566","(H853)"]],[4,6,["H168"]],[6,7,["H5921"]],[7,9,["H4908"]],[9,11,["H7760","(H853)"]],[11,13,["H4372"]],[13,16,["H168"]],[16,17,["H4480","H4605"]],[17,18,["H5921"]],[18,20,["H834"]],[20,22,["H3068"]],[22,23,["H6680","(H853)"]],[23,24,["H4872"]]]},{"k":2727,"v":[[0,3,["H3947"]],[3,5,["H5414","(H853)"]],[5,7,["H5715"]],[7,8,["H413"]],[8,10,["H727"]],[10,12,["H7760","(H853)"]],[12,14,["H905"]],[14,15,["H5921"]],[15,17,["H727"]],[17,19,["H5414","(H853)"]],[19,22,["H3727"]],[22,23,["H4480","H4605"]],[23,24,["H5921"]],[24,26,["H727"]]]},{"k":2728,"v":[[0,3,["H935","(H853)"]],[3,5,["H727"]],[5,6,["H413"]],[6,8,["H4908"]],[8,11,["H7760","(H853)"]],[11,13,["H6532"]],[13,16,["H4539"]],[16,18,["H5526","H5921"]],[18,20,["H727"]],[20,23,["H5715"]],[23,24,["H834"]],[24,26,["H3068"]],[26,27,["H6680","(H853)"]],[27,28,["H4872"]]]},{"k":2729,"v":[[0,3,["H5414","(H853)"]],[3,5,["H7979"]],[5,8,["H168"]],[8,11,["H4150"]],[11,12,["H5921"]],[12,14,["H3409"]],[14,17,["H4908"]],[17,18,["H6828"]],[18,19,["H4480","H2351"]],[19,21,["H6532"]]]},{"k":2730,"v":[[0,3,["H6186"]],[3,5,["H3899"]],[5,7,["H6187"]],[7,8,["H5921"]],[8,10,["H6440"]],[10,12,["H3068"]],[12,13,["H834"]],[13,15,["H3068"]],[15,17,["H6680","(H853)"]],[17,18,["H4872"]]]},{"k":2731,"v":[[0,3,["H7760","(H853)"]],[3,5,["H4501"]],[5,8,["H168"]],[8,11,["H4150"]],[11,13,["H5227"]],[13,15,["H7979"]],[15,16,["H5921"]],[16,18,["H3409"]],[18,21,["H4908"]],[21,22,["H5045"]]]},{"k":2732,"v":[[0,3,["H5927"]],[3,5,["H5216"]],[5,6,["H6440"]],[6,8,["H3068"]],[8,9,["H834"]],[9,11,["H3068"]],[11,12,["H6680","(H853)"]],[12,13,["H4872"]]]},{"k":2733,"v":[[0,3,["H7760","(H853)"]],[3,5,["H2091"]],[5,6,["H4196"]],[6,9,["H168"]],[9,12,["H4150"]],[12,13,["H6440"]],[13,15,["H6532"]]]},{"k":2734,"v":[[0,3,["H6999"]],[3,4,["H5561"]],[4,5,["H7004"]],[5,6,["H5921"]],[6,7,["H834"]],[7,9,["H3068"]],[9,10,["H6680","(H853)"]],[10,11,["H4872"]]]},{"k":2735,"v":[[0,4,["H7760","(H853)"]],[4,6,["H4539"]],[6,9,["H6607"]],[9,12,["H4908"]]]},{"k":2736,"v":[[0,3,["H7760"]],[3,5,["H4196"]],[5,8,["H5930"]],[8,11,["H6607"]],[11,14,["H4908"]],[14,17,["H168"]],[17,20,["H4150"]],[20,22,["H5927"]],[22,23,["H5921"]],[23,24,["(H853)"]],[24,27,["H5930"]],[27,31,["H4503"]],[31,32,["H834"]],[32,34,["H3068"]],[34,35,["H6680","(H853)"]],[35,36,["H4872"]]]},{"k":2737,"v":[[0,3,["H7760","(H853)"]],[3,5,["H3595"]],[5,6,["H996"]],[6,8,["H168"]],[8,11,["H4150"]],[11,14,["H4196"]],[14,16,["H5414"]],[16,17,["H4325"]],[17,18,["H8033"]],[18,20,["H7364"]],[20,21,[]]]},{"k":2738,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,7,["H1121"]],[7,8,["H7364","(H853)"]],[8,10,["H3027"]],[10,13,["H7272"]],[13,14,["H4480"]]]},{"k":2739,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H168"]],[6,9,["H4150"]],[9,14,["H7126"]],[14,15,["H413"]],[15,17,["H4196"]],[17,19,["H7364"]],[19,20,["H834"]],[20,22,["H3068"]],[22,23,["H6680","(H853)"]],[23,24,["H4872"]]]},{"k":2740,"v":[[0,4,["H6965","(H853)"]],[4,6,["H2691"]],[6,8,["H5439"]],[8,10,["H4908"]],[10,13,["H4196"]],[13,16,["H5414","(H853)"]],[16,18,["H4539"]],[18,21,["H2691"]],[21,22,["H8179"]],[22,24,["H4872"]],[24,25,["H3615","(H853)"]],[25,27,["H4399"]]]},{"k":2741,"v":[[0,3,["H6051"]],[3,4,["H3680","(H853)"]],[4,6,["H168"]],[6,9,["H4150"]],[9,12,["H3519"]],[12,15,["H3068"]],[15,16,["H4390","(H853)"]],[16,18,["H4908"]]]},{"k":2742,"v":[[0,2,["H4872"]],[2,4,["H3808"]],[4,5,["H3201"]],[5,7,["H935"]],[7,8,["H413"]],[8,10,["H168"]],[10,13,["H4150"]],[13,14,["H3588"]],[14,16,["H6051"]],[16,17,["H7931"]],[17,18,["H5921"]],[18,21,["H3519"]],[21,24,["H3068"]],[24,25,["H4390","(H853)"]],[25,27,["H4908"]]]},{"k":2743,"v":[[0,4,["H6051"]],[4,7,["H5927"]],[7,9,["H4480","H5921"]],[9,11,["H4908"]],[11,13,["H1121"]],[13,15,["H3478"]],[15,17,["H5265"]],[17,19,["H3605"]],[19,21,["H4550"]]]},{"k":2744,"v":[[0,2,["H518"]],[2,4,["H6051"]],[4,6,["H3808"]],[6,8,["H5927"]],[8,11,["H5265"]],[11,12,["H3808"]],[12,13,["H5704"]],[13,15,["H3117"]],[15,20,["H5927"]]]},{"k":2745,"v":[[0,1,["H3588"]],[1,3,["H6051"]],[3,6,["H3068"]],[6,8,["H5921"]],[8,10,["H4908"]],[10,12,["H3119"]],[12,14,["H784"]],[14,15,["H1961"]],[15,19,["H3915"]],[19,22,["H5869"]],[22,24,["H3605"]],[24,26,["H1004"]],[26,28,["H3478"]],[28,30,["H3605"]],[30,32,["H4550"]]]},{"k":2746,"v":[[0,3,["H3068"]],[3,4,["H7121"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H1696"]],[8,9,["H413"]],[9,14,["H4480","H168"]],[14,17,["H4150"]],[17,18,["H559"]]]},{"k":2747,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H3588"]],[11,13,["H120"]],[13,14,["H4480"]],[14,16,["H7126"]],[16,18,["H7133"]],[18,21,["H3068"]],[21,24,["H7126","(H853)"]],[24,26,["H7133"]],[26,27,["H4480"]],[27,29,["H929"]],[29,31,["H4480"]],[31,33,["H1241"]],[33,35,["H4480"]],[35,37,["H6629"]]]},{"k":2748,"v":[[0,1,["H518"]],[1,3,["H7133"]],[3,7,["H5930"]],[7,8,["H4480"]],[8,10,["H1241"]],[10,13,["H7126"]],[13,15,["H2145"]],[15,17,["H8549"]],[17,20,["H7126"]],[20,26,["H7522"]],[26,27,["H413"]],[27,29,["H6607"]],[29,32,["H168"]],[32,35,["H4150"]],[35,36,["H6440"]],[36,38,["H3068"]]]},{"k":2749,"v":[[0,4,["H5564"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,9,["H7218"]],[9,13,["H5930"]],[13,18,["H7521"]],[18,23,["H3722"]],[23,24,["H5921"]],[24,25,[]]]},{"k":2750,"v":[[0,4,["H7819","(H853)"]],[4,6,["H1121","H1241"]],[6,7,["H6440"]],[7,9,["H3068"]],[9,12,["H3548"]],[12,13,["H175"]],[13,14,["H1121"]],[14,16,["H7126","(H853)"]],[16,18,["H1818"]],[18,20,["H2236","(H853)"]],[20,22,["H1818"]],[22,24,["H5439"]],[24,25,["H5921"]],[25,27,["H4196"]],[27,28,["H834"]],[28,32,["H6607"]],[32,35,["H168"]],[35,38,["H4150"]]]},{"k":2751,"v":[[0,4,["H6584","(H853)"]],[4,7,["H5930"]],[7,9,["H5408"]],[9,13,["H5409"]]]},{"k":2752,"v":[[0,3,["H1121"]],[3,5,["H175"]],[5,7,["H3548"]],[7,9,["H5414"]],[9,10,["H784"]],[10,11,["H5921"]],[11,13,["H4196"]],[13,19,["H6186","H6086"]],[19,20,["H5921"]],[20,22,["H784"]]]},{"k":2753,"v":[[0,3,["H3548"]],[3,4,["H175"]],[4,5,["H1121"]],[5,7,["H6186","(H853)"]],[7,9,["H5409","(H853)"]],[9,11,["H7218"]],[11,14,["H6309"]],[14,17,["H5921"]],[17,19,["H6086"]],[19,20,["H834"]],[20,22,["H5921"]],[22,24,["H784"]],[24,25,["H834"]],[25,27,["H5921"]],[27,29,["H4196"]]]},{"k":2754,"v":[[0,3,["H7130"]],[3,6,["H3767"]],[6,9,["H7364"]],[9,11,["H4325"]],[11,14,["H3548"]],[14,16,["H6999","(H853)"]],[16,17,["H3605"]],[17,20,["H4196"]],[20,25,["H5930"]],[25,30,["H801"]],[30,33,["H5207"]],[33,34,["H7381"]],[34,37,["H3068"]]]},{"k":2755,"v":[[0,2,["H518"]],[2,4,["H7133"]],[4,6,["H4480"]],[6,8,["H6629"]],[8,10,["H4480"]],[10,12,["H3775"]],[12,13,["H176"]],[13,14,["H4480"]],[14,16,["H5795"]],[16,20,["H5930"]],[20,23,["H7126"]],[23,26,["H2145"]],[26,28,["H8549"]]]},{"k":2756,"v":[[0,4,["H7819"]],[4,6,["H5921"]],[6,8,["H3409"]],[8,11,["H4196"]],[11,12,["H6828"]],[12,13,["H6440"]],[13,15,["H3068"]],[15,18,["H3548"]],[18,19,["H175"]],[19,20,["H1121"]],[20,22,["H2236","(H853)"]],[22,24,["H1818"]],[24,26,["H5439"]],[26,27,["H5921"]],[27,29,["H4196"]]]},{"k":2757,"v":[[0,4,["H5408"]],[4,8,["H5409"]],[8,9,["H854"]],[9,11,["H7218"]],[11,14,["H6309"]],[14,17,["H3548"]],[17,22,["H6186","(H853)"]],[22,23,["H5921"]],[23,25,["H6086"]],[25,26,["H834"]],[26,28,["H5921"]],[28,30,["H784"]],[30,31,["H834"]],[31,33,["H5921"]],[33,35,["H4196"]]]},{"k":2758,"v":[[0,4,["H7364"]],[4,6,["H7130"]],[6,9,["H3767"]],[9,11,["H4325"]],[11,14,["H3548"]],[14,16,["H7126"]],[16,17,["(H853)"]],[17,18,["H3605"]],[18,20,["H6999"]],[20,24,["H4196"]],[24,25,["H1931"]],[25,29,["H5930"]],[29,34,["H801"]],[34,37,["H5207"]],[37,38,["H7381"]],[38,41,["H3068"]]]},{"k":2759,"v":[[0,2,["H518"]],[2,5,["H5930"]],[5,8,["H7133"]],[8,11,["H3068"]],[11,13,["H4480"]],[13,14,["H5775"]],[14,18,["H7126","(H853)"]],[18,20,["H7133"]],[20,21,["H4480"]],[21,22,["H8449"]],[22,23,["H176"]],[23,24,["H4480"]],[24,25,["H1121"]],[25,26,["H3123"]]]},{"k":2760,"v":[[0,3,["H3548"]],[3,5,["H7126"]],[5,7,["H413"]],[7,9,["H4196"]],[9,12,["H4454","(H853)"]],[12,14,["H7218"]],[14,16,["H6999"]],[16,20,["H4196"]],[20,23,["H1818"]],[23,28,["H4680"]],[28,29,["H5921"]],[29,31,["H7023"]],[31,34,["H4196"]]]},{"k":2761,"v":[[0,5,["H5493","(H853)"]],[5,7,["H4760"]],[7,10,["H5133"]],[10,12,["H7993"]],[12,14,["H681"]],[14,16,["H4196"]],[16,20,["H6924"]],[20,21,["H413"]],[21,23,["H4725"]],[23,26,["H1880"]]]},{"k":2762,"v":[[0,4,["H8156"]],[4,8,["H3671"]],[8,12,["H3808"]],[12,15,["H914"]],[15,18,["H3548"]],[18,20,["H6999"]],[20,24,["H4196"]],[24,25,["H5921"]],[25,27,["H6086"]],[27,28,["H834"]],[28,30,["H5921"]],[30,32,["H784"]],[32,33,["H1931"]],[33,37,["H5930"]],[37,42,["H801"]],[42,45,["H5207"]],[45,46,["H7381"]],[46,49,["H3068"]]]},{"k":2763,"v":[[0,2,["H3588"]],[2,3,["H5315"]],[3,5,["H7126"]],[5,7,["H4503"]],[7,8,["H7133"]],[8,11,["H3068"]],[11,13,["H7133"]],[13,15,["H1961"]],[15,18,["H5560"]],[18,22,["H3332"]],[22,23,["H8081"]],[23,24,["H5921"]],[24,27,["H5414"]],[27,28,["H3828"]],[28,29,["H5921"]]]},{"k":2764,"v":[[0,4,["H935"]],[4,6,["H413"]],[6,7,["H175"]],[7,8,["H1121"]],[8,10,["H3548"]],[10,14,["H7061"]],[14,15,["H4480","H8033"]],[15,17,["H4393","H7062"]],[17,20,["H4480","H5560"]],[20,25,["H4480","H8081"]],[25,27,["H5921"]],[27,28,["H3605"]],[28,30,["H3828"]],[30,34,["H3548"]],[34,36,["H6999","(H853)"]],[36,38,["H234"]],[38,43,["H4196"]],[43,50,["H801"]],[50,53,["H5207"]],[53,54,["H7381"]],[54,57,["H3068"]]]},{"k":2765,"v":[[0,3,["H3498"]],[3,4,["H4480"]],[4,7,["H4503"]],[7,10,["H175"]],[10,13,["H1121"]],[13,19,["H6944","H6944"]],[19,28,["H4480","H801","H3068"]]]},{"k":2766,"v":[[0,2,["H3588"]],[2,4,["H7126"]],[4,6,["H7133"]],[6,10,["H4503"]],[10,11,["H3989"]],[11,14,["H8574"]],[14,18,["H4682"]],[18,19,["H2471"]],[19,22,["H5560"]],[22,23,["H1101"]],[23,25,["H8081"]],[25,27,["H4682"]],[27,28,["H7550"]],[28,29,["H4886"]],[29,31,["H8081"]]]},{"k":2767,"v":[[0,2,["H518"]],[2,4,["H7133"]],[4,8,["H4503"]],[8,10,["H5921"]],[10,12,["H4227"]],[12,15,["H1961"]],[15,18,["H5560"]],[18,19,["H4682"]],[19,20,["H1101"]],[20,22,["H8081"]]]},{"k":2768,"v":[[0,3,["H6626"]],[3,6,["H6595"]],[6,8,["H3332"]],[8,9,["H8081"]],[9,10,["H5921"]],[10,11,["H1931"]],[11,15,["H4503"]]]},{"k":2769,"v":[[0,2,["H518"]],[2,4,["H7133"]],[4,8,["H4503"]],[8,12,["H4802"]],[12,16,["H6213"]],[16,19,["H5560"]],[19,21,["H8081"]]]},{"k":2770,"v":[[0,4,["H935","(H853)"]],[4,7,["H4503"]],[7,8,["H834"]],[8,10,["H6213"]],[10,13,["H4480","H428"]],[13,16,["H3068"]],[16,21,["H7126"]],[21,22,["H413"]],[22,24,["H3548"]],[24,27,["H5066"]],[27,29,["H413"]],[29,31,["H4196"]]]},{"k":2771,"v":[[0,3,["H3548"]],[3,5,["H7311"]],[5,6,["H4480"]],[6,9,["H4503","(H853)"]],[9,11,["H234"]],[11,15,["H6999"]],[15,19,["H4196"]],[19,26,["H801"]],[26,29,["H5207"]],[29,30,["H7381"]],[30,33,["H3068"]]]},{"k":2772,"v":[[0,5,["H3498"]],[5,6,["H4480"]],[6,9,["H4503"]],[9,12,["H175"]],[12,15,["H1121"]],[15,21,["H6944","H6944"]],[21,30,["H4480","H801","H3068"]]]},{"k":2773,"v":[[0,1,["H3808","H3605"]],[1,3,["H4503"]],[3,4,["H834"]],[4,7,["H7126"]],[7,10,["H3068"]],[10,13,["H6213"]],[13,15,["H2557"]],[15,16,["H3588"]],[16,19,["H6999"]],[19,20,["H3808","H3605"]],[20,21,["H7603"]],[21,23,["H3605"]],[23,24,["H1706"]],[24,33,["H801","H3068"]]]},{"k":2774,"v":[[0,4,["H7133"]],[4,7,["H7225"]],[7,10,["H7126"]],[10,14,["H3068"]],[14,18,["H3808"]],[18,20,["H5927"]],[20,21,["H413"]],[21,23,["H4196"]],[23,26,["H5207"]],[26,27,["H7381"]]]},{"k":2775,"v":[[0,2,["H3605"]],[2,3,["H7133"]],[3,7,["H4503"]],[7,10,["H4414"]],[10,12,["H4417"]],[12,13,["H3808"]],[13,18,["H4417"]],[18,21,["H1285"]],[21,24,["H430"]],[24,27,["H7673"]],[27,28,["H4480","H5921"]],[28,31,["H4503"]],[31,32,["H5921"]],[32,33,["H3605"]],[33,35,["H7133"]],[35,38,["H7126"]],[38,39,["H4417"]]]},{"k":2776,"v":[[0,2,["H518"]],[2,4,["H7126"]],[4,7,["H4503"]],[7,10,["H1061"]],[10,13,["H3068"]],[13,16,["H7126","(H853)"]],[16,20,["H4503"]],[20,23,["H1061"]],[23,27,["H24"]],[27,28,["H7033"]],[28,31,["H784"]],[31,34,["H1643"]],[34,38,["H3759"]]]},{"k":2777,"v":[[0,4,["H5414"]],[4,5,["H8081"]],[5,6,["H5921"]],[6,9,["H7760"]],[9,10,["H3828"]],[10,11,["H5921"]],[11,12,["H1931"]],[12,16,["H4503"]]]},{"k":2778,"v":[[0,3,["H3548"]],[3,5,["H6999","(H853)"]],[5,7,["H234"]],[7,14,["H4480","H1643"]],[14,20,["H4480","H8081"]],[20,22,["H5921"]],[22,23,["H3605"]],[23,25,["H3828"]],[25,33,["H801"]],[33,36,["H3068"]]]},{"k":2779,"v":[[0,2,["H518"]],[2,4,["H7133"]],[4,7,["H2077"]],[7,10,["H8002"]],[10,11,["H518"]],[11,12,["H1931"]],[12,13,["H7126"]],[13,15,["H4480"]],[15,17,["H1241"]],[17,18,["H518"]],[18,22,["H2145"]],[22,23,["H518"]],[23,24,["H5347"]],[24,27,["H7126"]],[27,30,["H8549"]],[30,31,["H6440"]],[31,33,["H3068"]]]},{"k":2780,"v":[[0,4,["H5564"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,9,["H7218"]],[9,12,["H7133"]],[12,14,["H7819"]],[14,18,["H6607"]],[18,21,["H168"]],[21,24,["H4150"]],[24,26,["H175"]],[26,27,["H1121"]],[27,29,["H3548"]],[29,31,["H2236","(H853)"]],[31,33,["H1818"]],[33,34,["H5921"]],[34,36,["H4196"]],[36,38,["H5439"]]]},{"k":2781,"v":[[0,4,["H7126"]],[4,7,["H4480","H2077"]],[7,11,["H8002"]],[11,16,["H801"]],[16,19,["H3068","(H853)"]],[19,21,["H2459"]],[21,23,["H3680","(H853)"]],[23,25,["H7130"]],[25,27,["H3605"]],[27,29,["H2459"]],[29,30,["H834"]],[30,32,["H5921"]],[32,34,["H7130"]]]},{"k":2782,"v":[[0,3,["H8147"]],[3,4,["H3629"]],[4,7,["H2459"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H834"]],[12,14,["H5921"]],[14,16,["H3689"]],[16,19,["H3508"]],[19,20,["H5921"]],[20,22,["H3516"]],[22,23,["H5921"]],[23,25,["H3629"]],[25,30,["H5493"]]]},{"k":2783,"v":[[0,2,["H175"]],[2,3,["H1121"]],[3,5,["H6999"]],[5,9,["H4196"]],[9,10,["H5921"]],[10,13,["H5930"]],[13,14,["H834"]],[14,16,["H5921"]],[16,18,["H6086"]],[18,19,["H834"]],[19,21,["H5921"]],[21,23,["H784"]],[23,30,["H801"]],[30,33,["H5207"]],[33,34,["H7381"]],[34,37,["H3068"]]]},{"k":2784,"v":[[0,2,["H518"]],[2,4,["H7133"]],[4,7,["H2077"]],[7,10,["H8002"]],[10,13,["H3068"]],[13,15,["H4480"]],[15,17,["H6629"]],[17,18,["H2145"]],[18,19,["H176"]],[19,20,["H5347"]],[20,23,["H7126"]],[23,26,["H8549"]]]},{"k":2785,"v":[[0,1,["H518"]],[1,2,["H1931"]],[2,3,["H7126"]],[3,5,["H3775","(H853)"]],[5,8,["H7133"]],[8,12,["H7126"]],[12,14,["H6440"]],[14,16,["H3068"]]]},{"k":2786,"v":[[0,4,["H5564","(H853)"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,9,["H7218"]],[9,12,["H7133"]],[12,14,["H7819"]],[14,16,["H6440"]],[16,18,["H168"]],[18,21,["H4150"]],[21,23,["H175"]],[23,24,["H1121"]],[24,26,["H2236","(H853)"]],[26,28,["H1818"]],[28,31,["H5439"]],[31,32,["H5921"]],[32,34,["H4196"]]]},{"k":2787,"v":[[0,4,["H7126"]],[4,7,["H4480","H2077"]],[7,11,["H8002"]],[11,16,["H801"]],[16,19,["H3068"]],[19,21,["H2459"]],[21,25,["H8549"]],[25,26,["H451"]],[26,31,["H5493"]],[31,33,["H5980"]],[33,35,["H6096"]],[35,38,["H2459"]],[38,40,["H3680","(H853)"]],[40,42,["H7130"]],[42,44,["H3605"]],[44,46,["H2459"]],[46,47,["H834"]],[47,49,["H5921"]],[49,51,["H7130"]]]},{"k":2788,"v":[[0,3,["H8147"]],[3,4,["H3629"]],[4,7,["H2459"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H834"]],[12,14,["H5921"]],[14,16,["H3689"]],[16,19,["H3508"]],[19,20,["H5921"]],[20,22,["H3516"]],[22,23,["H5921"]],[23,25,["H3629"]],[25,30,["H5493"]]]},{"k":2789,"v":[[0,3,["H3548"]],[3,5,["H6999"]],[5,9,["H4196"]],[9,13,["H3899"]],[13,19,["H801"]],[19,22,["H3068"]]]},{"k":2790,"v":[[0,2,["H518"]],[2,4,["H7133"]],[4,7,["H5795"]],[7,11,["H7126"]],[11,13,["H6440"]],[13,15,["H3068"]]]},{"k":2791,"v":[[0,4,["H5564","(H853)"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,9,["H7218"]],[9,13,["H7819"]],[13,15,["H6440"]],[15,17,["H168"]],[17,20,["H4150"]],[20,23,["H1121"]],[23,25,["H175"]],[25,27,["H2236","(H853)"]],[27,29,["H1818"]],[29,31,["H5921"]],[31,33,["H4196"]],[33,35,["H5439"]]]},{"k":2792,"v":[[0,4,["H7126"]],[4,5,["H4480"]],[5,7,["H7133"]],[7,13,["H801"]],[13,16,["H3068","(H853)"]],[16,18,["H2459"]],[18,20,["H3680","(H853)"]],[20,22,["H7130"]],[22,24,["H3605"]],[24,26,["H2459"]],[26,27,["H834"]],[27,29,["H5921"]],[29,31,["H7130"]]]},{"k":2793,"v":[[0,3,["H8147"]],[3,4,["H3629"]],[4,7,["H2459"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H834"]],[12,14,["H5921"]],[14,16,["H3689"]],[16,19,["H3508"]],[19,20,["H5921"]],[20,22,["H3516"]],[22,23,["H5921"]],[23,25,["H3629"]],[25,30,["H5493"]]]},{"k":2794,"v":[[0,3,["H3548"]],[3,5,["H6999"]],[5,9,["H4196"]],[9,13,["H3899"]],[13,19,["H801"]],[19,22,["H5207"]],[22,23,["H7381"]],[23,24,["H3605"]],[24,26,["H2459"]],[26,29,["H3068"]]]},{"k":2795,"v":[[0,5,["H5769"]],[5,6,["H2708"]],[6,9,["H1755"]],[9,11,["H3605"]],[11,13,["H4186"]],[13,16,["H398"]],[16,17,["H3808","H3605"]],[17,18,["H2459"]],[18,20,["H1818"]]]},{"k":2796,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2797,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H559"]],[7,8,["H3588"]],[8,10,["H5315"]],[10,12,["H2398"]],[12,14,["H7684"]],[14,16,["H4480","H3605"]],[16,19,["H4687"]],[19,22,["H3068"]],[22,25,["H834"]],[25,27,["H3808"]],[27,30,["H6213"]],[30,33,["H6213"]],[33,35,["H4480","H259"]],[35,37,["H4480","H2007"]]]},{"k":2798,"v":[[0,1,["H518"]],[1,3,["H3548"]],[3,6,["H4899"]],[6,8,["H2398"]],[8,12,["H819"]],[12,15,["H5971"]],[15,19,["H7126"]],[19,20,["H5921"]],[20,22,["H2403"]],[22,23,["H834"]],[23,26,["H2398"]],[26,28,["H1121","H1241"]],[28,29,["H6499"]],[29,31,["H8549"]],[31,34,["H3068"]],[34,38,["H2403"]]]},{"k":2799,"v":[[0,4,["H935","(H853)"]],[4,6,["H6499"]],[6,7,["H413"]],[7,9,["H6607"]],[9,12,["H168"]],[12,15,["H4150"]],[15,16,["H6440"]],[16,18,["H3068"]],[18,21,["H5564","(H853)"]],[21,23,["H3027"]],[23,24,["H5921"]],[24,26,["H6499"]],[26,27,["H7218"]],[27,29,["H7819","(H853)"]],[29,31,["H6499"]],[31,32,["H6440"]],[32,34,["H3068"]]]},{"k":2800,"v":[[0,3,["H3548"]],[3,6,["H4899"]],[6,8,["H3947"]],[8,12,["H4480","H1818","H6499"]],[12,14,["H935"]],[14,16,["H413"]],[16,18,["H168"]],[18,21,["H4150"]]]},{"k":2801,"v":[[0,3,["H3548"]],[3,5,["H2881","(H853)"]],[5,7,["H676"]],[7,10,["H1818"]],[10,12,["H5137"]],[12,13,["H4480"]],[13,15,["H1818"]],[15,16,["H7651"]],[16,17,["H6471"]],[17,18,["H6440"]],[18,20,["H3068","(H853)"]],[20,21,["H6440"]],[21,23,["H6532"]],[23,26,["H6944"]]]},{"k":2802,"v":[[0,3,["H3548"]],[3,5,["H5414"]],[5,7,["H4480"]],[7,9,["H1818"]],[9,10,["H5921"]],[10,12,["H7161"]],[12,15,["H4196"]],[15,17,["H5561"]],[17,18,["H7004"]],[18,19,["H6440"]],[19,21,["H3068"]],[21,22,["H834"]],[22,26,["H168"]],[26,29,["H4150"]],[29,32,["H8210"]],[32,33,["H3605"]],[33,35,["H1818"]],[35,38,["H6499"]],[38,39,["H413"]],[39,41,["H3247"]],[41,44,["H4196"]],[44,48,["H5930"]],[48,49,["H834"]],[49,53,["H6607"]],[53,56,["H168"]],[56,59,["H4150"]]]},{"k":2803,"v":[[0,5,["H7311"]],[5,6,["H4480"]],[6,8,["H3605"]],[8,10,["H2459"]],[10,13,["H6499"]],[13,17,["H2403","(H853)"]],[17,19,["H2459"]],[19,21,["H3680","H5921"]],[21,23,["H7130"]],[23,25,["H3605"]],[25,27,["H2459"]],[27,28,["H834"]],[28,30,["H5921"]],[30,32,["H7130"]]]},{"k":2804,"v":[[0,3,["H8147"]],[3,4,["H3629"]],[4,7,["H2459"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H834"]],[12,14,["H5921"]],[14,16,["H3689"]],[16,19,["H3508"]],[19,20,["H5921"]],[20,22,["H3516"]],[22,23,["H5921"]],[23,25,["H3629"]],[25,30,["H5493"]]]},{"k":2805,"v":[[0,1,["H834"]],[1,5,["H7311"]],[5,8,["H4480","H7794"]],[8,11,["H2077"]],[11,14,["H8002"]],[14,17,["H3548"]],[17,19,["H6999"]],[19,21,["H5921"]],[21,23,["H4196"]],[23,27,["H5930"]]]},{"k":2806,"v":[[0,3,["H5785"]],[3,6,["H6499"]],[6,8,["H3605"]],[8,10,["H1320"]],[10,11,["H5921"]],[11,13,["H7218"]],[13,15,["H5921"]],[15,17,["H3767"]],[17,20,["H7130"]],[20,23,["H6569"]]]},{"k":2807,"v":[[0,1,["(H853)"]],[1,3,["H3605"]],[3,4,["H6499"]],[4,8,["H3318"]],[8,9,["H413","H4480","H2351"]],[9,11,["H4264"]],[11,12,["H413"]],[12,14,["H2889"]],[14,15,["H4725"]],[15,18,["H1880"]],[18,21,["H8211"]],[21,23,["H8313"]],[23,25,["H5921"]],[25,27,["H6086"]],[27,29,["H784"]],[29,30,["H5921"]],[30,32,["H1880"]],[32,35,["H8211"]],[35,39,["H8313"]]]},{"k":2808,"v":[[0,2,["H518"]],[2,4,["H3605"]],[4,5,["H5712"]],[5,7,["H3478"]],[7,10,["H7686"]],[10,13,["H1697"]],[13,15,["H5956"]],[15,18,["H4480","H5869"]],[18,21,["H6951"]],[21,25,["H6213"]],[25,29,["H259","H4480","H3605"]],[29,31,["H4687"]],[31,34,["H3068"]],[34,37,["H834"]],[37,39,["H3808"]],[39,41,["H6213"]],[41,44,["H816"]]]},{"k":2809,"v":[[0,3,["H2403"]],[3,4,["H834"]],[4,7,["H2398"]],[7,8,["H5921"]],[8,11,["H3045"]],[11,14,["H6951"]],[14,16,["H7126"]],[16,18,["H1121","H1241"]],[18,19,["H6499"]],[19,22,["H2403"]],[22,24,["H935"]],[24,26,["H6440"]],[26,28,["H168"]],[28,31,["H4150"]]]},{"k":2810,"v":[[0,3,["H2205"]],[3,6,["H5712"]],[6,8,["H5564","(H853)"]],[8,10,["H3027"]],[10,11,["H5921"]],[11,13,["H7218"]],[13,16,["H6499"]],[16,17,["H6440"]],[17,19,["H3068"]],[19,20,["(H853)"]],[20,22,["H6499"]],[22,25,["H7819"]],[25,26,["H6440"]],[26,28,["H3068"]]]},{"k":2811,"v":[[0,3,["H3548"]],[3,6,["H4899"]],[6,8,["H935"]],[8,12,["H4480","H1818","H6499"]],[12,13,["H413"]],[13,15,["H168"]],[15,18,["H4150"]]]},{"k":2812,"v":[[0,3,["H3548"]],[3,5,["H2881"]],[5,7,["H676"]],[7,10,["H4480"]],[10,12,["H1818"]],[12,14,["H5137"]],[14,16,["H7651"]],[16,17,["H6471"]],[17,18,["H6440"]],[18,20,["H3068"]],[20,21,["(H853)"]],[21,22,["H6440"]],[22,24,["H6532"]]]},{"k":2813,"v":[[0,4,["H5414"]],[4,6,["H4480"]],[6,8,["H1818"]],[8,9,["H5921"]],[9,11,["H7161"]],[11,14,["H4196"]],[14,15,["H834"]],[15,17,["H6440"]],[17,19,["H3068"]],[19,20,["H834"]],[20,24,["H168"]],[24,27,["H4150"]],[27,31,["H8210"]],[31,32,["H3605"]],[32,34,["H1818"]],[34,35,["H413"]],[35,37,["H3247"]],[37,40,["H4196"]],[40,44,["H5930"]],[44,45,["H834"]],[45,49,["H6607"]],[49,52,["H168"]],[52,55,["H4150"]]]},{"k":2814,"v":[[0,4,["H7311"]],[4,5,["H3605"]],[5,7,["H2459"]],[7,8,["H4480"]],[8,11,["H6999"]],[11,15,["H4196"]]]},{"k":2815,"v":[[0,4,["H6213"]],[4,7,["H6499"]],[7,8,["H834"]],[8,10,["H6213"]],[10,13,["H6499"]],[13,17,["H2403"]],[17,18,["H3651"]],[18,21,["H6213"]],[21,26,["H3548"]],[26,30,["H3722"]],[30,31,["H5921"]],[31,37,["H5545"]],[37,38,[]]]},{"k":2816,"v":[[0,5,["H3318","(H853)"]],[5,7,["H6499"]],[7,8,["H413","H4480","H2351"]],[8,10,["H4264"]],[10,12,["H8313"]],[12,14,["H834"]],[14,16,["H8313","(H853)"]],[16,18,["H7223"]],[18,19,["H6499"]],[19,20,["H1931"]],[20,24,["H2403"]],[24,27,["H6951"]]]},{"k":2817,"v":[[0,1,["H834"]],[1,3,["H5387"]],[3,5,["H2398"]],[5,7,["H6213"]],[7,10,["H7684"]],[10,13,["H259","H4480","H3605"]],[13,15,["H4687"]],[15,18,["H3068"]],[18,20,["H430"]],[20,23,["H834"]],[23,25,["H3808"]],[25,27,["H6213"]],[27,30,["H816"]]]},{"k":2818,"v":[[0,1,["H176"]],[1,4,["H2403"]],[4,5,["H834"]],[5,8,["H2398"]],[8,12,["H3045","H413"]],[12,15,["H935","(H853)"]],[15,17,["H7133"]],[17,19,["H8163"]],[19,22,["H5795"]],[22,24,["H2145"]],[24,26,["H8549"]]]},{"k":2819,"v":[[0,4,["H5564"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,9,["H7218"]],[9,12,["H8163"]],[12,14,["H7819"]],[14,18,["H4725"]],[18,19,["H834"]],[19,21,["H7819","(H853)"]],[21,24,["H5930"]],[24,25,["H6440"]],[25,27,["H3068"]],[27,28,["H1931"]],[28,32,["H2403"]]]},{"k":2820,"v":[[0,3,["H3548"]],[3,5,["H3947"]],[5,6,["H4480"]],[6,8,["H1818"]],[8,12,["H2403"]],[12,15,["H676"]],[15,17,["H5414"]],[17,19,["H5921"]],[19,21,["H7161"]],[21,24,["H4196"]],[24,27,["H5930"]],[27,31,["H8210"]],[31,33,["H1818"]],[33,34,["H413"]],[34,36,["H3247"]],[36,39,["H4196"]],[39,42,["H5930"]]]},{"k":2821,"v":[[0,4,["H6999"]],[4,5,["H3605"]],[5,7,["H2459"]],[7,10,["H4196"]],[10,13,["H2459"]],[13,16,["H2077"]],[16,19,["H8002"]],[19,22,["H3548"]],[22,26,["H3722"]],[26,27,["H5921"]],[27,32,["H4480","H2403"]],[32,37,["H5545"]],[37,38,[]]]},{"k":2822,"v":[[0,2,["H518"]],[2,3,["H259"]],[3,4,["H5315"]],[4,8,["H4480","H5971","H776"]],[8,9,["H2398"]],[9,11,["H7684"]],[11,14,["H6213"]],[14,17,["H259"]],[17,20,["H4480","H4687"]],[20,23,["H3068"]],[23,26,["H834"]],[26,28,["H3808"]],[28,31,["H6213"]],[31,34,["H816"]]]},{"k":2823,"v":[[0,1,["H176"]],[1,4,["H2403"]],[4,5,["H834"]],[5,8,["H2398"]],[8,12,["H3045","H413"]],[12,16,["H935"]],[16,18,["H7133"]],[18,20,["H8166"]],[20,23,["H5795"]],[23,25,["H5347"]],[25,27,["H8549"]],[27,28,["H5921"]],[28,30,["H2403"]],[30,31,["H834"]],[31,34,["H2398"]]]},{"k":2824,"v":[[0,4,["H5564","(H853)"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,9,["H7218"]],[9,13,["H2403"]],[13,15,["H7819","(H853)"]],[15,18,["H2403"]],[18,21,["H4725"]],[21,25,["H5930"]]]},{"k":2825,"v":[[0,3,["H3548"]],[3,5,["H3947"]],[5,8,["H4480","H1818"]],[8,12,["H676"]],[12,14,["H5414"]],[14,16,["H5921"]],[16,18,["H7161"]],[18,21,["H4196"]],[21,24,["H5930"]],[24,28,["H8210"]],[28,29,["H3605"]],[29,31,["H1818"]],[31,33,["H413"]],[33,35,["H3247"]],[35,38,["H4196"]]]},{"k":2826,"v":[[0,5,["H5493"]],[5,6,["H3605"]],[6,8,["H2459"]],[8,10,["H834"]],[10,12,["H2459"]],[12,15,["H5493"]],[15,16,["H4480"]],[16,17,["H5921"]],[17,19,["H2077"]],[19,22,["H8002"]],[22,25,["H3548"]],[25,27,["H6999"]],[27,31,["H4196"]],[31,34,["H5207"]],[34,35,["H7381"]],[35,38,["H3068"]],[38,41,["H3548"]],[41,45,["H3722"]],[45,46,["H5921"]],[46,52,["H5545"]],[52,53,[]]]},{"k":2827,"v":[[0,2,["H518"]],[2,4,["H935"]],[4,6,["H3532"]],[6,9,["H2403"]],[9,10,["H7133"]],[10,13,["H935"]],[13,16,["H5347"]],[16,18,["H8549"]]]},{"k":2828,"v":[[0,4,["H5564","(H853)"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,9,["H7218"]],[9,13,["H2403"]],[13,15,["H7819"]],[15,20,["H2403"]],[20,23,["H4725"]],[23,24,["H834"]],[24,26,["H7819","(H853)"]],[26,29,["H5930"]]]},{"k":2829,"v":[[0,3,["H3548"]],[3,5,["H3947"]],[5,8,["H4480","H1818"]],[8,12,["H2403"]],[12,15,["H676"]],[15,17,["H5414"]],[17,19,["H5921"]],[19,21,["H7161"]],[21,24,["H4196"]],[24,27,["H5930"]],[27,31,["H8210"]],[31,32,["H3605"]],[32,34,["H1818"]],[34,36,["H413"]],[36,38,["H3247"]],[38,41,["H4196"]]]},{"k":2830,"v":[[0,5,["H5493"]],[5,6,["H3605"]],[6,8,["H2459"]],[8,10,["H834"]],[10,12,["H2459"]],[12,15,["H3775"]],[15,18,["H5493"]],[18,21,["H4480","H2077"]],[21,25,["H8002"]],[25,28,["H3548"]],[28,30,["H6999"]],[30,34,["H4196"]],[34,36,["H5921"]],[36,41,["H801"]],[41,44,["H3068"]],[44,47,["H3548"]],[47,51,["H3722"]],[51,52,["H5921"]],[52,54,["H2403"]],[54,55,["H834"]],[55,58,["H2398"]],[58,63,["H5545"]],[63,64,[]]]},{"k":2831,"v":[[0,2,["H3588"]],[2,4,["H5315"]],[4,5,["H2398"]],[5,7,["H8085"]],[7,9,["H6963"]],[9,11,["H423"]],[11,15,["H5707"]],[15,16,["H176"]],[16,19,["H7200"]],[19,20,["H176"]],[20,21,["H3045"]],[21,24,["H518"]],[24,27,["H3808"]],[27,28,["H5046"]],[28,33,["H5375"]],[33,35,["H5771"]]]},{"k":2832,"v":[[0,1,["H176"]],[1,4,["H5315"]],[4,5,["H5060"]],[5,6,["H3605"]],[6,7,["H2931"]],[7,8,["H1697"]],[8,9,["H176"]],[9,13,["H5038"]],[13,16,["H2931"]],[16,17,["H2416"]],[17,18,["H176"]],[18,20,["H5038"]],[20,22,["H2931"]],[22,23,["H929"]],[23,24,["H176"]],[24,26,["H5038"]],[26,28,["H2931"]],[28,30,["H8318"]],[30,35,["H5956"]],[35,36,["H4480"]],[36,38,["H1931"]],[38,42,["H2931"]],[42,44,["H816"]]]},{"k":2833,"v":[[0,1,["H176"]],[1,2,["H3588"]],[2,4,["H5060"]],[4,6,["H2932"]],[6,8,["H120"]],[8,9,["H3605"]],[9,10,["H2932"]],[10,13,["H834"]],[13,18,["H2930"]],[18,23,["H5956"]],[23,24,["H4480"]],[24,27,["H1931"]],[27,28,["H3045"]],[28,35,["H816"]]]},{"k":2834,"v":[[0,1,["H176"]],[1,2,["H3588"]],[2,4,["H5315"]],[4,5,["H7650"]],[5,6,["H981"]],[6,9,["H8193"]],[9,12,["H7489"]],[12,13,["H176"]],[13,16,["H3190"]],[16,17,["H3605","H834"]],[17,22,["H120"]],[22,24,["H981"]],[24,27,["H7621"]],[27,31,["H5956"]],[31,32,["H4480"]],[32,35,["H1931"]],[35,36,["H3045"]],[36,43,["H816"]],[43,45,["H259"]],[45,47,["H4480","H428"]]]},{"k":2835,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,9,["H816"]],[9,11,["H259"]],[11,13,["H4480","H428"]],[13,18,["H3034"]],[18,19,["H834"]],[19,22,["H2398"]],[22,23,["H5921"]],[23,25,[]]]},{"k":2836,"v":[[0,4,["H935","(H853)"]],[4,7,["H817"]],[7,10,["H3068"]],[10,11,["H5921"]],[11,13,["H2403"]],[13,14,["H834"]],[14,17,["H2398"]],[17,19,["H5347"]],[19,20,["H4480"]],[20,22,["H6629"]],[22,24,["H3776"]],[24,25,["H176"]],[25,27,["H8166"]],[27,30,["H5795"]],[30,34,["H2403"]],[34,37,["H3548"]],[37,41,["H3722"]],[41,42,["H5921"]],[42,46,["H4480","H2403"]]]},{"k":2837,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,8,["H5060","H3027","H1767"]],[8,10,["H7716"]],[10,14,["H935","(H853)"]],[14,17,["H817"]],[17,18,["H834"]],[18,21,["H2398"]],[21,22,["H8147"]],[22,23,["H8449"]],[23,24,["H176"]],[24,25,["H8147"]],[25,26,["H1121"]],[26,27,["H3123"]],[27,30,["H3068"]],[30,31,["H259"]],[31,35,["H2403"]],[35,38,["H259"]],[38,42,["H5930"]]]},{"k":2838,"v":[[0,4,["H935"]],[4,6,["H413"]],[6,8,["H3548"]],[8,11,["H7126","(H853)"]],[11,13,["H834"]],[13,18,["H2403"]],[18,19,["H7223"]],[19,22,["H4454","(H853)"]],[22,24,["H7218"]],[24,25,["H4480","H4136"]],[25,27,["H6203"]],[27,30,["H3808"]],[30,33,["H914"]]]},{"k":2839,"v":[[0,4,["H5137"]],[4,7,["H4480","H1818"]],[7,11,["H2403"]],[11,12,["H5921"]],[12,14,["H7023"]],[14,17,["H4196"]],[17,20,["H7604"]],[20,23,["H1818"]],[23,27,["H4680"]],[27,28,["H413"]],[28,30,["H3247"]],[30,33,["H4196"]],[33,34,["H1931"]],[34,38,["H2403"]]]},{"k":2840,"v":[[0,4,["H6213"]],[4,6,["H8145"]],[6,10,["H5930"]],[10,14,["H4941"]],[14,17,["H3548"]],[17,21,["H3722"]],[21,22,["H5921"]],[22,26,["H4480","H2403"]],[26,27,["H834"]],[27,30,["H2398"]],[30,35,["H5545"]],[35,36,[]]]},{"k":2841,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,8,["H5381","H3027"]],[8,9,["H8147"]],[9,10,["H8449"]],[10,11,["H176"]],[11,12,["H8147"]],[12,13,["H1121"]],[13,14,["H3123"]],[14,17,["H834"]],[17,18,["H2398"]],[18,20,["H935","(H853)"]],[20,23,["H7133"]],[23,26,["H6224"]],[26,29,["H374"]],[29,32,["H5560"]],[32,36,["H2403"]],[36,39,["H7760"]],[39,40,["H3808"]],[40,41,["H8081"]],[41,42,["H5921"]],[42,44,["H3808"]],[44,47,["H5414"]],[47,49,["H3828"]],[49,50,["H5921"]],[50,51,["H3588"]],[51,52,["H1931"]],[52,56,["H2403"]]]},{"k":2842,"v":[[0,4,["H935"]],[4,6,["H413"]],[6,8,["H3548"]],[8,11,["H3548"]],[11,13,["H7061"]],[13,15,["H4393","H7062"]],[15,16,["H4480"]],[16,18,["(H853)"]],[18,20,["H234"]],[20,23,["H6999"]],[23,27,["H4196"]],[27,29,["H5921"]],[29,34,["H801"]],[34,37,["H3068"]],[37,38,["H1931"]],[38,42,["H2403"]]]},{"k":2843,"v":[[0,3,["H3548"]],[3,7,["H3722"]],[7,8,["H5921"]],[8,11,["H5921"]],[11,13,["H2403"]],[13,14,["H834"]],[14,17,["H2398"]],[17,19,["H4480","H259"]],[19,21,["H4480","H428"]],[21,26,["H5545"]],[26,32,["H1961"]],[32,34,["H3548"]],[34,38,["H4503"]]]},{"k":2844,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2845,"v":[[0,1,["H3588"]],[1,3,["H5315"]],[3,4,["H4603"]],[4,6,["H4604"]],[6,8,["H2398"]],[8,10,["H7684"]],[10,11,["H4480"]],[11,14,["H6944"]],[14,17,["H3068"]],[17,21,["H935","(H853)"]],[21,24,["H817"]],[24,27,["H3068"]],[27,29,["H352"]],[29,31,["H8549"]],[31,33,["H4480"]],[33,35,["H6629"]],[35,38,["H6187"]],[38,40,["H8255"]],[40,42,["H3701"]],[42,45,["H8255"]],[45,48,["H6944"]],[48,52,["H817"]]]},{"k":2846,"v":[[0,5,["H7999"]],[5,12,["H834","H2398"]],[12,13,["H4480"]],[13,16,["H6944"]],[16,19,["H3254"]],[19,22,["H2549"]],[22,23,["H5921"]],[23,25,["H5414"]],[25,29,["H3548"]],[29,32,["H3548"]],[32,36,["H3722"]],[36,37,["H5921"]],[37,41,["H352"]],[41,45,["H817"]],[45,50,["H5545"]],[50,51,[]]]},{"k":2847,"v":[[0,2,["H518"]],[2,4,["H5315"]],[4,5,["H2398"]],[5,7,["H6213"]],[7,8,["H259"]],[8,11,["H4480","H3605"]],[11,12,["H834"]],[12,14,["H3808"]],[14,17,["H6213"]],[17,20,["H4687"]],[20,23,["H3068"]],[23,26,["H3045"]],[26,28,["H3808"]],[28,32,["H816"]],[32,35,["H5375"]],[35,37,["H5771"]]]},{"k":2848,"v":[[0,4,["H935"]],[4,6,["H352"]],[6,8,["H8549"]],[8,10,["H4480"]],[10,12,["H6629"]],[12,15,["H6187"]],[15,19,["H817"]],[19,20,["H413"]],[20,22,["H3548"]],[22,25,["H3548"]],[25,29,["H3722"]],[29,30,["H5921"]],[30,32,["H5921"]],[32,34,["H7684"]],[34,35,["H834"]],[35,37,["H7683"]],[37,39,["H3045"]],[39,41,["H3808"]],[41,46,["H5545"]],[46,47,[]]]},{"k":2849,"v":[[0,1,["H1931"]],[1,5,["H817"]],[5,9,["H816","H816"]],[9,12,["H3068"]]]},{"k":2850,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2851,"v":[[0,1,["H3588"]],[1,3,["H5315"]],[3,4,["H2398"]],[4,6,["H4603"]],[6,8,["H4604"]],[8,11,["H3068"]],[11,13,["H3584"]],[13,16,["H5997"]],[16,24,["H6487"]],[24,25,["H176"]],[25,27,["H8667","H3027"]],[27,28,["H176"]],[28,35,["H1498"]],[35,36,["H176"]],[36,38,["H6231","(H853)"]],[38,40,["H5997"]]]},{"k":2852,"v":[[0,1,["H176"]],[1,3,["H4672"]],[3,7,["H9"]],[7,9,["H3584"]],[9,13,["H7650"]],[13,14,["H5921","H8267"]],[14,15,["H5921"]],[15,16,["H259"]],[16,18,["H4480","H3605"]],[18,20,["H834"]],[20,22,["H120"]],[22,23,["H6213"]],[23,24,["H2398"]],[24,25,["H2007"]]]},{"k":2853,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,8,["H2398"]],[8,11,["H816"]],[11,15,["H7725","(H853)"]],[15,16,["H1500"]],[16,17,["H834"]],[17,21,["H1497"]],[21,22,["H176","(H853)"]],[22,24,["H6233"]],[24,25,["H834"]],[25,29,["H6231"]],[29,30,["H176","(H853)"]],[30,31,["H6487"]],[31,32,["H834"]],[32,37,["H6485","H854"]],[37,38,["H176","(H853)"]],[38,41,["H9"]],[41,42,["H834"]],[42,44,["H4672"]]]},{"k":2854,"v":[[0,1,["H176"]],[1,3,["H4480","H3605"]],[3,5,["H834"]],[5,8,["H7650","H5921"]],[8,9,["H8267"]],[9,13,["H7999"]],[13,17,["H7218"]],[17,20,["H3254"]],[20,23,["H2549"]],[23,25,["H5921"]],[25,27,["H5414"]],[27,32,["H834"]],[32,33,["H1931"]],[33,37,["H3119"]],[37,41,["H819"]]]},{"k":2855,"v":[[0,4,["H935"]],[4,7,["H817"]],[7,10,["H3068"]],[10,12,["H352"]],[12,14,["H8549"]],[14,16,["H4480"]],[16,18,["H6629"]],[18,21,["H6187"]],[21,25,["H817"]],[25,26,["H413"]],[26,28,["H3548"]]]},{"k":2856,"v":[[0,3,["H3548"]],[3,7,["H3722"]],[7,8,["H5921"]],[8,10,["H6440"]],[10,12,["H3068"]],[12,17,["H5545"]],[17,19,["H5921"]],[19,21,["H259"]],[21,23,["H4480","H3605"]],[23,24,["H834"]],[24,27,["H6213"]],[27,29,["H819"]],[29,30,[]]]},{"k":2857,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2858,"v":[[0,1,["H6680","(H853)"]],[1,2,["H175"]],[2,5,["H1121"]],[5,6,["H559"]],[6,7,["H2063"]],[7,10,["H8451"]],[10,14,["H5930"]],[14,15,["H1931"]],[15,19,["H5930"]],[19,21,["H5921"]],[21,23,["H4169"]],[23,24,["H5921"]],[24,26,["H4196"]],[26,27,["H3605"]],[27,28,["H3915"]],[28,29,["H5704"]],[29,31,["H1242"]],[31,34,["H784"]],[34,37,["H4196"]],[37,40,["H3344"]],[40,42,[]]]},{"k":2859,"v":[[0,3,["H3548"]],[3,6,["H3847"]],[6,8,["H906"]],[8,9,["H4055"]],[9,12,["H906"]],[12,13,["H4370"]],[13,16,["H3847"]],[16,17,["H5921"]],[17,19,["H1320"]],[19,22,["H7311","(H853)"]],[22,24,["H1880"]],[24,25,["H834"]],[25,27,["H784"]],[27,29,["H398"]],[29,30,["H854"]],[30,33,["H5930"]],[33,34,["H5921"]],[34,36,["H4196"]],[36,40,["H7760"]],[40,42,["H681"]],[42,44,["H4196"]]]},{"k":2860,"v":[[0,5,["H6584","(H853)"]],[5,7,["H899"]],[7,10,["H3847"]],[10,11,["H312"]],[11,12,["H899"]],[12,15,["H3318","(H853)"]],[15,17,["H1880"]],[17,18,["H413","H4480","H2351"]],[18,20,["H4264"]],[20,21,["H413"]],[21,23,["H2889"]],[23,24,["H4725"]]]},{"k":2861,"v":[[0,3,["H784"]],[3,4,["H5921"]],[4,6,["H4196"]],[6,9,["H3344"]],[9,14,["H3808"]],[14,17,["H3518"]],[17,20,["H3548"]],[20,22,["H1197"]],[22,23,["H6086"]],[23,24,["H5921"]],[24,27,["H1242","H1242"]],[27,29,["H6186"]],[29,32,["H5930"]],[32,35,["H5921"]],[35,40,["H6999"]],[40,41,["H5921"]],[41,43,["H2459"]],[43,47,["H8002"]]]},{"k":2862,"v":[[0,2,["H784"]],[2,4,["H8548"]],[4,6,["H3344"]],[6,7,["H5921"]],[7,9,["H4196"]],[9,12,["H3808"]],[12,14,["H3518"]]]},{"k":2863,"v":[[0,2,["H2063"]],[2,5,["H8451"]],[5,9,["H4503"]],[9,11,["H1121"]],[11,13,["H175"]],[13,15,["H7126"]],[15,17,["H6440"]],[17,19,["H3068"]],[19,20,["H413","H6440"]],[20,22,["H4196"]]]},{"k":2864,"v":[[0,4,["H7311"]],[4,5,["H4480"]],[5,8,["H7062"]],[8,11,["H4480","H5560"]],[11,15,["H4503"]],[15,19,["H4480","H8081"]],[19,22,["H3605"]],[22,24,["H3828"]],[24,25,["H834"]],[25,27,["H5921"]],[27,30,["H4503"]],[30,33,["H6999"]],[33,37,["H4196"]],[37,40,["H5207"]],[40,41,["H7381"]],[41,44,["H234"]],[44,49,["H3068"]]]},{"k":2865,"v":[[0,3,["H3498"]],[3,4,["H4480"]],[4,6,["H175"]],[6,9,["H1121"]],[9,10,["H398"]],[10,13,["H4682"]],[13,17,["H398"]],[17,20,["H6918"]],[20,21,["H4725"]],[21,24,["H2691"]],[24,27,["H168"]],[27,30,["H4150"]],[30,33,["H398"]],[33,34,[]]]},{"k":2866,"v":[[0,3,["H3808"]],[3,5,["H644"]],[5,7,["H2557"]],[7,10,["H5414"]],[10,16,["H2506"]],[16,22,["H4480","H801"]],[22,23,["H1931"]],[23,26,["H6944","H6944"]],[26,31,["H2403"]],[31,36,["H817"]]]},{"k":2867,"v":[[0,1,["H3605"]],[1,3,["H2145"]],[3,6,["H1121"]],[6,8,["H175"]],[8,10,["H398"]],[10,17,["H2706"]],[17,19,["H5769"]],[19,22,["H1755"]],[22,31,["H4480","H801","H3068"]],[31,33,["H3605"]],[33,34,["H834"]],[34,35,["H5060"]],[35,39,["H6942"]]]},{"k":2868,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2869,"v":[[0,1,["H2088"]],[1,4,["H7133"]],[4,6,["H175"]],[6,10,["H1121"]],[10,11,["H834"]],[11,14,["H7126"]],[14,17,["H3068"]],[17,20,["H3117"]],[20,24,["H4886"]],[24,27,["H6224"]],[27,30,["H374"]],[30,33,["H5560"]],[33,37,["H4503"]],[37,38,["H8548"]],[38,39,["H4276"]],[39,44,["H1242"]],[44,46,["H4276"]],[46,49,["H6153"]]]},{"k":2870,"v":[[0,1,["H5921"]],[1,3,["H4227"]],[3,7,["H6213"]],[7,9,["H8081"]],[9,14,["H7246"]],[14,19,["H935"]],[19,22,["H8601"]],[22,23,["H6595"]],[23,27,["H4503"]],[27,30,["H7126"]],[30,33,["H5207"]],[33,34,["H7381"]],[34,37,["H3068"]]]},{"k":2871,"v":[[0,3,["H3548"]],[3,6,["H4480","H1121"]],[6,9,["H4899"]],[9,12,["H8478"]],[12,14,["H6213"]],[14,19,["H2706"]],[19,21,["H5769"]],[21,24,["H3068"]],[24,28,["H3632"]],[28,29,["H6999"]]]},{"k":2872,"v":[[0,2,["H3605"]],[2,4,["H4503"]],[4,7,["H3548"]],[7,9,["H1961"]],[9,10,["H3632"]],[10,14,["H3808"]],[14,16,["H398"]]]},{"k":2873,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2874,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,3,["H175"]],[3,5,["H413"]],[5,7,["H1121"]],[7,8,["H559"]],[8,9,["H2063"]],[9,12,["H8451"]],[12,16,["H2403"]],[16,19,["H4725"]],[19,20,["H834"]],[20,23,["H5930"]],[23,25,["H7819"]],[25,29,["H2403"]],[29,31,["H7819"]],[31,32,["H6440"]],[32,34,["H3068"]],[34,35,["H1931"]],[35,38,["H6944","H6944"]]]},{"k":2875,"v":[[0,2,["H3548"]],[2,7,["H2398","(H853)"]],[7,9,["H398"]],[9,13,["H6918"]],[13,14,["H4725"]],[14,18,["H398"]],[18,21,["H2691"]],[21,24,["H168"]],[24,27,["H4150"]]]},{"k":2876,"v":[[0,1,["H3605","H834"]],[1,3,["H5060"]],[3,5,["H1320"]],[5,9,["H6942"]],[9,11,["H834"]],[11,14,["H5137"]],[14,17,["H4480","H1818"]],[17,19,["H5921"]],[19,21,["H899"]],[21,24,["H3526"]],[24,26,["H834","H5921"]],[26,29,["H5137"]],[29,32,["H6918"]],[32,33,["H4725"]]]},{"k":2877,"v":[[0,3,["H2789"]],[3,4,["H3627"]],[4,5,["H834"]],[5,8,["H1310"]],[8,11,["H7665"]],[11,13,["H518"]],[13,16,["H1310"]],[16,19,["H5178"]],[19,20,["H3627"]],[20,25,["H4838"]],[25,27,["H7857"]],[27,29,["H4325"]]]},{"k":2878,"v":[[0,1,["H3605"]],[1,3,["H2145"]],[3,6,["H3548"]],[6,8,["H398"]],[8,10,["H1931"]],[10,13,["H6944","H6944"]]]},{"k":2879,"v":[[0,2,["H3808","H3605"]],[2,4,["H2403"]],[4,5,["H834"]],[5,9,["H4480","H1818"]],[9,11,["H935"]],[11,12,["H413"]],[12,14,["H168"]],[14,17,["H4150"]],[17,19,["H3722"]],[19,23,["H6944"]],[23,27,["H398"]],[27,31,["H8313"]],[31,34,["H784"]]]},{"k":2880,"v":[[0,2,["H2063"]],[2,5,["H8451"]],[5,9,["H817"]],[9,10,["H1931"]],[10,13,["H6944","H6944"]]]},{"k":2881,"v":[[0,3,["H4725"]],[3,4,["H834"]],[4,6,["H7819","(H853)"]],[6,9,["H5930"]],[9,12,["H7819","(H853)"]],[12,15,["H817"]],[15,18,["H1818"]],[18,22,["H2236"]],[22,24,["H5439"]],[24,25,["H5921"]],[25,27,["H4196"]]]},{"k":2882,"v":[[0,4,["H7126"]],[4,5,["H4480"]],[5,7,["H3605"]],[7,9,["H2459"]],[9,10,["(H853)"]],[10,12,["H451"]],[12,15,["H2459"]],[15,17,["H3680","(H853)"]],[17,19,["H7130"]]]},{"k":2883,"v":[[0,3,["H8147"]],[3,4,["H3629"]],[4,7,["H2459"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H834"]],[12,14,["H5921"]],[14,16,["H3689"]],[16,19,["H3508"]],[19,22,["H5921"]],[22,24,["H3516"]],[24,25,["H5921"]],[25,27,["H3629"]],[27,32,["H5493"]]]},{"k":2884,"v":[[0,3,["H3548"]],[3,5,["H6999"]],[5,9,["H4196"]],[9,15,["H801"]],[15,18,["H3068"]],[18,19,["H1931"]],[19,23,["H817"]]]},{"k":2885,"v":[[0,1,["H3605"]],[1,2,["H2145"]],[2,5,["H3548"]],[5,7,["H398"]],[7,12,["H398"]],[12,15,["H6918"]],[15,16,["H4725"]],[16,17,["H1931"]],[17,20,["H6944","H6944"]]]},{"k":2886,"v":[[0,4,["H2403"]],[4,10,["H817"]],[10,13,["H259"]],[13,14,["H8451"]],[14,18,["H3548"]],[18,19,["H834"]],[19,21,["H3722"]],[21,24,["H1961"]],[24,25,[]]]},{"k":2887,"v":[[0,3,["H3548"]],[3,5,["H7126","(H853)"]],[5,7,["H376"]],[7,9,["H5930"]],[9,12,["H3548"]],[12,14,["H1961"]],[14,18,["H5785"]],[18,22,["H5930"]],[22,23,["H834"]],[23,26,["H7126"]]]},{"k":2888,"v":[[0,2,["H3605"]],[2,5,["H4503"]],[5,6,["H834"]],[6,8,["H644"]],[8,11,["H8574"]],[11,13,["H3605"]],[13,16,["H6213"]],[16,19,["H4802"]],[19,21,["H5921"]],[21,23,["H4227"]],[23,25,["H1961"]],[25,27,["H3548"]],[27,29,["H7126"]],[29,30,[]]]},{"k":2889,"v":[[0,2,["H3605"]],[2,4,["H4503"]],[4,5,["H1101"]],[5,7,["H8081"]],[7,9,["H2720"]],[9,11,["H3605"]],[11,13,["H1121"]],[13,15,["H175"]],[15,16,["H1961"]],[16,17,["H376"]],[17,21,["H251"]]]},{"k":2890,"v":[[0,2,["H2063"]],[2,5,["H8451"]],[5,8,["H2077"]],[8,11,["H8002"]],[11,12,["H834"]],[12,15,["H7126"]],[15,18,["H3068"]]]},{"k":2891,"v":[[0,1,["H518"]],[1,3,["H7126"]],[3,5,["H5921"]],[5,7,["H8426"]],[7,11,["H7126"]],[11,12,["H5921"]],[12,14,["H2077"]],[14,16,["H8426"]],[16,17,["H4682"]],[17,18,["H2471"]],[18,19,["H1101"]],[19,21,["H8081"]],[21,23,["H4682"]],[23,24,["H7550"]],[24,25,["H4886"]],[25,27,["H8081"]],[27,29,["H2471"]],[29,30,["H1101"]],[30,32,["H8081"]],[32,35,["H5560"]],[35,36,["H7246"]]]},{"k":2892,"v":[[0,1,["H5921"]],[1,3,["H2471"]],[3,6,["H7126"]],[6,9,["H7133"]],[9,10,["H2557"]],[10,11,["H3899"]],[11,12,["H5921"]],[12,14,["H2077"]],[14,16,["H8426"]],[16,20,["H8002"]]]},{"k":2893,"v":[[0,2,["H4480"]],[2,6,["H7126"]],[6,7,["H259"]],[7,11,["H4480","H3605"]],[11,12,["H7133"]],[12,16,["H8641"]],[16,19,["H3068"]],[19,23,["H1961"]],[23,25,["H3548"]],[25,27,["H2236","(H853)"]],[27,29,["H1818"]],[29,33,["H8002"]]]},{"k":2894,"v":[[0,3,["H1320"]],[3,6,["H2077"]],[6,10,["H8002"]],[10,12,["H8426"]],[12,15,["H398"]],[15,18,["H3117"]],[18,22,["H7133"]],[22,25,["H3808"]],[25,26,["H5117"]],[26,28,["H4480"]],[28,30,["H5704"]],[30,32,["H1242"]]]},{"k":2895,"v":[[0,2,["H518"]],[2,4,["H2077"]],[4,7,["H7133"]],[7,10,["H5088"]],[10,11,["H176"]],[11,14,["H5071"]],[14,18,["H398"]],[18,21,["H3117"]],[21,24,["H7126","(H853)"]],[24,26,["H2077"]],[26,30,["H4480","H4283"]],[30,33,["H3498"]],[33,34,["H4480"]],[34,38,["H398"]]]},{"k":2896,"v":[[0,3,["H3498"]],[3,6,["H4480","H1320"]],[6,9,["H2077"]],[9,12,["H7992"]],[12,13,["H3117"]],[13,16,["H8313"]],[16,18,["H784"]]]},{"k":2897,"v":[[0,2,["H518"]],[2,6,["H4480","H1320"]],[6,9,["H2077"]],[9,13,["H8002"]],[13,17,["H398","H398"]],[17,20,["H7992"]],[20,21,["H3117"]],[21,24,["H3808"]],[24,26,["H7521"]],[26,27,["H3808"]],[27,31,["H2803"]],[31,35,["H7126"]],[35,39,["H1961"]],[39,41,["H6292"]],[41,44,["H5315"]],[44,46,["H398"]],[46,47,["H4480"]],[47,50,["H5375"]],[50,52,["H5771"]]]},{"k":2898,"v":[[0,3,["H1320"]],[3,4,["H834"]],[4,5,["H5060"]],[5,6,["H3605"]],[6,7,["H2931"]],[7,10,["H3808"]],[10,12,["H398"]],[12,16,["H8313"]],[16,18,["H784"]],[18,23,["H1320"]],[23,24,["H3605"]],[24,27,["H2889"]],[27,29,["H398"]],[29,30,["H1320"]]]},{"k":2899,"v":[[0,3,["H5315"]],[3,4,["H834"]],[4,5,["H398"]],[5,8,["H1320"]],[8,11,["H4480","H2077"]],[11,14,["H8002"]],[14,15,["H834"]],[15,19,["H3068"]],[19,22,["H2932"]],[22,23,["H5921"]],[23,26,["H1931"]],[26,27,["H5315"]],[27,31,["H3772"]],[31,34,["H4480","H5971"]]]},{"k":2900,"v":[[0,3,["H5315"]],[3,4,["H3588"]],[4,6,["H5060"]],[6,7,["H3605"]],[7,8,["H2931"]],[8,12,["H2932"]],[12,14,["H120"]],[14,15,["H176"]],[15,17,["H2931"]],[17,18,["H929"]],[18,19,["H176"]],[19,20,["H3605"]],[20,21,["H8263"]],[21,22,["H2931"]],[22,25,["H398"]],[25,28,["H4480","H1320"]],[28,31,["H2077"]],[31,34,["H8002"]],[34,35,["H834"]],[35,39,["H3068"]],[39,41,["H1931"]],[41,42,["H5315"]],[42,46,["H3772"]],[46,49,["H4480","H5971"]]]},{"k":2901,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2902,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H559"]],[7,10,["H398"]],[10,12,["H3808","H3605"]],[12,14,["H2459"]],[14,16,["H7794"]],[16,19,["H3775"]],[19,22,["H5795"]]]},{"k":2903,"v":[[0,3,["H2459"]],[3,10,["H5038"]],[10,13,["H2459"]],[13,20,["H2966"]],[20,23,["H6213"]],[23,25,["H3605"]],[25,27,["H4399"]],[27,34,["H3808","H398","H398"]],[34,36,[]]]},{"k":2904,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,3,["H398"]],[3,5,["H2459"]],[5,6,["H4480"]],[6,8,["H929"]],[8,10,["H834","H4480"]],[10,12,["H7126"]],[12,17,["H801"]],[17,20,["H3068"]],[20,23,["H5315"]],[23,25,["H398"]],[25,30,["H3772"]],[30,33,["H4480","H5971"]]]},{"k":2905,"v":[[0,4,["H398"]],[4,6,["H3808","H3605"]],[6,8,["H1818"]],[8,13,["H5775"]],[13,16,["H929"]],[16,18,["H3605"]],[18,21,["H4186"]]]},{"k":2906,"v":[[0,1,["H3605"]],[1,2,["H5315"]],[2,5,["H834"]],[5,6,["H398"]],[6,8,["H3605"]],[8,10,["H1818"]],[10,12,["H1931"]],[12,13,["H5315"]],[13,17,["H3772"]],[17,20,["H4480","H5971"]]]},{"k":2907,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2908,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H559"]],[7,10,["H7126","(H853)"]],[10,12,["H2077"]],[12,16,["H8002"]],[16,19,["H3068"]],[19,21,["H935","(H853)"]],[21,23,["H7133"]],[23,26,["H3068"]],[26,29,["H4480","H2077"]],[29,33,["H8002"]]]},{"k":2909,"v":[[0,3,["H3027"]],[3,5,["H935","(H853)"]],[5,13,["H801","H3068","(H853)"]],[13,15,["H2459"]],[15,16,["H5921"]],[16,18,["H2373"]],[18,22,["H935","(H853)"]],[22,25,["H2373"]],[25,28,["H5130","(H853)"]],[28,32,["H8573"]],[32,33,["H6440"]],[33,35,["H3068"]]]},{"k":2910,"v":[[0,3,["H3548"]],[3,5,["H6999","(H853)"]],[5,7,["H2459"]],[7,10,["H4196"]],[10,13,["H2373"]],[13,15,["H1961"]],[15,16,["H175"]],[16,19,["H1121"]]]},{"k":2911,"v":[[0,3,["H3225"]],[3,4,["H7785"]],[4,7,["H5414"]],[7,10,["H3548"]],[10,14,["H8641"]],[14,17,["H4480","H2077"]],[17,21,["H8002"]]]},{"k":2912,"v":[[0,4,["H4480","H1121"]],[4,6,["H175"]],[6,8,["H7126","(H853)"]],[8,10,["H1818"]],[10,14,["H8002"]],[14,17,["H2459"]],[17,19,["H1961"]],[19,21,["H3225"]],[21,22,["H7785"]],[22,25,["H4440"]]]},{"k":2913,"v":[[0,1,["H3588","(H853)"]],[1,3,["H8573"]],[3,4,["H2373"]],[4,7,["H8641"]],[7,8,["H7785"]],[8,11,["H3947"]],[11,12,["H4480","H854"]],[12,14,["H1121"]],[14,16,["H3478"]],[16,20,["H4480","H2077"]],[20,24,["H8002"]],[24,27,["H5414"]],[27,30,["H175"]],[30,32,["H3548"]],[32,36,["H1121"]],[36,39,["H2706"]],[39,41,["H5769"]],[41,43,["H4480","H854"]],[43,45,["H1121"]],[45,47,["H3478"]]]},{"k":2914,"v":[[0,1,["H2063"]],[1,7,["H4888"]],[7,9,["H175"]],[9,13,["H4888"]],[13,16,["H1121"]],[16,26,["H4480","H801","H3068"]],[26,29,["H3117"]],[29,32,["H7126"]],[32,42,["H3547","H3068"]]]},{"k":2915,"v":[[0,1,["H834"]],[1,3,["H3068"]],[3,4,["H6680"]],[4,7,["H5414"]],[7,9,["H4480","H854"]],[9,11,["H1121"]],[11,13,["H3478"]],[13,16,["H3117"]],[16,19,["H4886"]],[19,23,["H2708"]],[23,25,["H5769"]],[25,28,["H1755"]]]},{"k":2916,"v":[[0,1,["H2063"]],[1,4,["H8451"]],[4,8,["H5930"]],[8,12,["H4503"]],[12,17,["H2403"]],[17,22,["H817"]],[22,26,["H4394"]],[26,30,["H2077"]],[30,34,["H8002"]]]},{"k":2917,"v":[[0,1,["H834"]],[1,3,["H3068"]],[3,4,["H6680","(H853)"]],[4,5,["H4872"]],[5,7,["H2022"]],[7,8,["H5514"]],[8,11,["H3117"]],[11,14,["H6680","(H853)"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,20,["H7126","(H853)"]],[20,22,["H7133"]],[22,25,["H3068"]],[25,28,["H4057"]],[28,30,["H5514"]]]},{"k":2918,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2919,"v":[[0,1,["H3947","(H853)"]],[1,2,["H175"]],[2,5,["H1121"]],[5,6,["H854"]],[6,10,["H899"]],[10,13,["H4888"]],[13,14,["H8081"]],[14,17,["H6499"]],[17,21,["H2403"]],[21,23,["H8147"]],[23,24,["H352"]],[24,27,["H5536"]],[27,30,["H4682"]]]},{"k":2920,"v":[[0,2,["H6950"]],[2,4,["H3605"]],[4,6,["H5712"]],[6,8,["H413"]],[8,10,["H6607"]],[10,13,["H168"]],[13,16,["H4150"]]]},{"k":2921,"v":[[0,2,["H4872"]],[2,3,["H6213"]],[3,4,["H834"]],[4,6,["H3068"]],[6,7,["H6680"]],[7,11,["H5712"]],[11,14,["H6950"]],[14,15,["H413"]],[15,17,["H6607"]],[17,20,["H168"]],[20,23,["H4150"]]]},{"k":2922,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5712"]],[6,7,["H2088"]],[7,10,["H1697"]],[10,11,["H834"]],[11,13,["H3068"]],[13,14,["H6680"]],[14,17,["H6213"]]]},{"k":2923,"v":[[0,2,["H4872"]],[2,3,["H7126","(H853)"]],[3,4,["H175"]],[4,7,["H1121"]],[7,9,["H7364"]],[9,12,["H4325"]]]},{"k":2924,"v":[[0,3,["H5414"]],[3,4,["H5921"]],[4,5,["(H853)"]],[5,7,["H3801"]],[7,9,["H2296"]],[9,13,["H73"]],[13,15,["H3847"]],[15,17,["H854"]],[17,19,["H4598"]],[19,21,["H5414","(H853)"]],[21,23,["H646"]],[23,24,["H5921"]],[24,28,["H2296"]],[28,33,["H2805"]],[33,36,["H646"]],[36,38,["H640"]],[38,42,[]]]},{"k":2925,"v":[[0,3,["H7760","(H853)"]],[3,5,["H2833"]],[5,6,["H5921"]],[6,10,["H5414"]],[10,11,["H413"]],[11,13,["H2833","(H853)"]],[13,15,["H224"]],[15,18,["H8550"]]]},{"k":2926,"v":[[0,3,["H7760","(H853)"]],[3,5,["H4701"]],[5,6,["H5921"]],[6,8,["H7218"]],[8,10,["H5921"]],[10,12,["H4701"]],[12,14,["H413"]],[14,16,["H4136","H6440"]],[16,19,["H7760","(H853)"]],[19,21,["H2091"]],[21,22,["H6731"]],[22,24,["H6944"]],[24,25,["H5145"]],[25,26,["H834"]],[26,28,["H3068"]],[28,29,["H6680","(H853)"]],[29,30,["H4872"]]]},{"k":2927,"v":[[0,2,["H4872"]],[2,3,["H3947","(H853)"]],[3,5,["H4888"]],[5,6,["H8081"]],[6,8,["H4886","(H853)"]],[8,10,["H4908"]],[10,12,["H3605"]],[12,13,["H834"]],[13,17,["H6942"]],[17,18,[]]]},{"k":2928,"v":[[0,3,["H5137"]],[3,4,["H4480"]],[4,5,["H5921"]],[5,7,["H4196"]],[7,8,["H7651"]],[8,9,["H6471"]],[9,11,["H4886","(H853)"]],[11,13,["H4196"]],[13,15,["H3605"]],[15,17,["H3627"]],[17,20,["H3595"]],[20,23,["H3653"]],[23,25,["H6942"]],[25,26,[]]]},{"k":2929,"v":[[0,3,["H3332"]],[3,7,["H4480","H8081","H4888"]],[7,8,["H5921"]],[8,9,["H175"]],[9,10,["H7218"]],[10,12,["H4886"]],[12,15,["H6942"]],[15,16,[]]]},{"k":2930,"v":[[0,2,["H4872"]],[2,3,["H7126","(H853)"]],[3,4,["H175"]],[4,5,["H1121"]],[5,9,["H3847","H3801"]],[9,12,["H2296"]],[12,15,["H73"]],[15,17,["H2280"]],[17,18,["H4021"]],[18,21,["H834"]],[21,23,["H3068"]],[23,24,["H6680","(H853)"]],[24,25,["H4872"]]]},{"k":2931,"v":[[0,3,["H5066","(H853)"]],[3,5,["H6499"]],[5,9,["H2403"]],[9,11,["H175"]],[11,14,["H1121"]],[14,15,["H5564","(H853)"]],[15,17,["H3027"]],[17,18,["H5921"]],[18,20,["H7218"]],[20,23,["H6499"]],[23,27,["H2403"]]]},{"k":2932,"v":[[0,3,["H7819"]],[3,6,["H4872"]],[6,7,["H3947","(H853)"]],[7,9,["H1818"]],[9,11,["H5414"]],[11,13,["H5921"]],[13,15,["H7161"]],[15,18,["H4196"]],[18,20,["H5439"]],[20,23,["H676"]],[23,25,["H2398","(H853)"]],[25,27,["H4196"]],[27,29,["H3332"]],[29,31,["H1818"]],[31,32,["H413"]],[32,34,["H3247"]],[34,37,["H4196"]],[37,39,["H6942"]],[39,43,["H3722"]],[43,44,["H5921"]],[44,45,[]]]},{"k":2933,"v":[[0,3,["H3947","(H853)"]],[3,4,["H3605"]],[4,6,["H2459"]],[6,7,["H834"]],[7,9,["H5921"]],[9,11,["H7130"]],[11,14,["H3508"]],[14,17,["H3516"]],[17,20,["H8147"]],[20,21,["H3629"]],[21,24,["H2459"]],[24,26,["H4872"]],[26,27,["H6999"]],[27,31,["H4196"]]]},{"k":2934,"v":[[0,3,["H6499"]],[3,6,["H5785"]],[6,8,["H1320"]],[8,11,["H6569"]],[11,13,["H8313"]],[13,15,["H784"]],[15,16,["H4480","H2351"]],[16,18,["H4264"]],[18,19,["H834"]],[19,21,["H3068"]],[21,22,["H6680","(H853)"]],[22,23,["H4872"]]]},{"k":2935,"v":[[0,3,["H7126","(H853)"]],[3,5,["H352"]],[5,9,["H5930"]],[9,11,["H175"]],[11,14,["H1121"]],[14,15,["H5564","(H853)"]],[15,17,["H3027"]],[17,18,["H5921"]],[18,20,["H7218"]],[20,23,["H352"]]]},{"k":2936,"v":[[0,3,["H7819"]],[3,6,["H4872"]],[6,7,["H2236","(H853)"]],[7,9,["H1818"]],[9,10,["H5921"]],[10,12,["H4196"]],[12,14,["H5439"]]]},{"k":2937,"v":[[0,3,["H5408"]],[3,5,["H352"]],[5,7,["H5409"]],[7,9,["H4872"]],[9,10,["H6999","(H853)"]],[10,12,["H7218"]],[12,15,["H5409"]],[15,18,["H6309"]]]},{"k":2938,"v":[[0,3,["H7364"]],[3,5,["H7130"]],[5,8,["H3767"]],[8,10,["H4325"]],[10,12,["H4872"]],[12,13,["H6999","(H853)"]],[13,15,["H3605"]],[15,16,["H352"]],[16,19,["H4196"]],[19,20,["H1931"]],[20,24,["H5930"]],[24,27,["H5207"]],[27,28,["H7381"]],[28,34,["H801"]],[34,37,["H3068"]],[37,38,["H834"]],[38,40,["H3068"]],[40,41,["H6680","(H853)"]],[41,42,["H4872"]]]},{"k":2939,"v":[[0,3,["H7126","(H853)"]],[3,5,["H8145"]],[5,6,["H352"]],[6,8,["H352"]],[8,10,["H4394"]],[10,12,["H175"]],[12,15,["H1121"]],[15,16,["H5564","(H853)"]],[16,18,["H3027"]],[18,19,["H5921"]],[19,21,["H7218"]],[21,24,["H352"]]]},{"k":2940,"v":[[0,3,["H7819"]],[3,6,["H4872"]],[6,7,["H3947"]],[7,10,["H4480","H1818"]],[10,14,["H5414"]],[14,16,["H5921"]],[16,18,["H8571"]],[18,20,["H175"]],[20,21,["H3233"]],[21,22,["H241"]],[22,24,["H5921"]],[24,26,["H931"]],[26,29,["H3233"]],[29,30,["H3027"]],[30,32,["H5921"]],[32,35,["H931"]],[35,38,["H3233"]],[38,39,["H7272"]]]},{"k":2941,"v":[[0,3,["H7126","(H853)"]],[3,4,["H175"]],[4,5,["H1121"]],[5,7,["H4872"]],[7,8,["H5414"]],[8,9,["H4480"]],[9,11,["H1818"]],[11,12,["H5921"]],[12,14,["H8571"]],[14,17,["H3233"]],[17,18,["H241"]],[18,20,["H5921"]],[20,22,["H931"]],[22,25,["H3233"]],[25,26,["H3027"]],[26,28,["H5921"]],[28,31,["H931"]],[31,34,["H3233"]],[34,35,["H7272"]],[35,37,["H4872"]],[37,38,["H2236","(H853)"]],[38,40,["H1818"]],[40,41,["H5921"]],[41,43,["H4196"]],[43,45,["H5439"]]]},{"k":2942,"v":[[0,3,["H3947","(H853)"]],[3,5,["H2459"]],[5,8,["H451"]],[8,10,["H3605"]],[10,12,["H2459"]],[12,13,["H834"]],[13,15,["H5921"]],[15,17,["H7130"]],[17,20,["H3508"]],[20,23,["H3516"]],[23,26,["H8147"]],[26,27,["H3629"]],[27,30,["H2459"]],[30,33,["H3225"]],[33,34,["H7785"]]]},{"k":2943,"v":[[0,5,["H4480","H5536"]],[5,8,["H4682"]],[8,9,["H834"]],[9,11,["H6440"]],[11,13,["H3068"]],[13,15,["H3947"]],[15,16,["H259"]],[16,17,["H4682"]],[17,18,["H2471"]],[18,20,["H259"]],[20,21,["H2471"]],[21,23,["H8081"]],[23,24,["H3899"]],[24,26,["H259"]],[26,27,["H7550"]],[27,29,["H7760"]],[29,31,["H5921"]],[31,33,["H2459"]],[33,35,["H5921"]],[35,37,["H3225"]],[37,38,["H7785"]]]},{"k":2944,"v":[[0,3,["H5414","(H853)"]],[3,4,["H3605"]],[4,5,["H5921"]],[5,6,["H175"]],[6,7,["H3709"]],[7,9,["H5921"]],[9,11,["H1121"]],[11,12,["H3709"]],[12,14,["H5130"]],[14,19,["H8573"]],[19,20,["H6440"]],[20,22,["H3068"]]]},{"k":2945,"v":[[0,2,["H4872"]],[2,3,["H3947"]],[3,6,["H4480","H5921"]],[6,8,["H3709"]],[8,10,["H6999"]],[10,14,["H4196"]],[14,15,["H5921"]],[15,18,["H5930"]],[18,19,["H1992"]],[19,21,["H4394"]],[21,24,["H5207"]],[24,25,["H7381"]],[25,26,["H1931"]],[26,32,["H801"]],[32,35,["H3068"]]]},{"k":2946,"v":[[0,2,["H4872"]],[2,3,["H3947","(H853)"]],[3,5,["H2373"]],[5,7,["H5130"]],[7,12,["H8573"]],[12,13,["H6440"]],[13,15,["H3068"]],[15,19,["H4480","H352"]],[19,21,["H4394"]],[21,23,["H1961"]],[23,24,["H4872"]],[24,25,["H4490"]],[25,26,["H834"]],[26,28,["H3068"]],[28,29,["H6680","(H853)"]],[29,30,["H4872"]]]},{"k":2947,"v":[[0,2,["H4872"]],[2,3,["H3947"]],[3,7,["H4480","H8081","H4888"]],[7,9,["H4480"]],[9,11,["H1818"]],[11,12,["H834"]],[12,14,["H5921"]],[14,16,["H4196"]],[16,18,["H5137"]],[18,20,["H5921"]],[20,21,["H175"]],[21,23,["H5921"]],[23,25,["H899"]],[25,27,["H5921"]],[27,29,["H1121"]],[29,31,["H5921"]],[31,33,["H1121"]],[33,34,["H899"]],[34,35,["H854"]],[35,38,["H6942","(H853)"]],[38,39,["H175"]],[39,42,["H899"]],[42,45,["H1121"]],[45,48,["H1121"]],[48,49,["H899"]],[49,50,["H854"]],[50,51,[]]]},{"k":2948,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H175"]],[5,7,["H413"]],[7,9,["H1121"]],[9,10,["H1310","(H853)"]],[10,12,["H1320"]],[12,15,["H6607"]],[15,18,["H168"]],[18,21,["H4150"]],[21,23,["H8033"]],[23,24,["H398"]],[24,28,["H3899"]],[28,29,["H834"]],[29,33,["H5536"]],[33,35,["H4394"]],[35,36,["H834"]],[36,38,["H6680"]],[38,39,["H559"]],[39,40,["H175"]],[40,43,["H1121"]],[43,45,["H398"]],[45,46,[]]]},{"k":2949,"v":[[0,4,["H3498"]],[4,7,["H1320"]],[7,11,["H3899"]],[11,14,["H8313"]],[14,16,["H784"]]]},{"k":2950,"v":[[0,4,["H3808"]],[4,6,["H3318"]],[6,9,["H4480","H6607"]],[9,12,["H168"]],[12,15,["H4150"]],[15,17,["H7651"]],[17,18,["H3117"]],[18,19,["H5704"]],[19,21,["H3117"]],[21,24,["H4394"]],[24,28,["H4390"]],[28,29,["H3588"]],[29,30,["H7651"]],[30,31,["H3117"]],[31,34,["H4390","(H853)","H3027"]],[34,35,[]]]},{"k":2951,"v":[[0,1,["H834"]],[1,4,["H6213"]],[4,5,["H2088"]],[5,6,["H3117"]],[6,9,["H3068"]],[9,11,["H6680"]],[11,13,["H6213"]],[13,17,["H3722"]],[17,18,["H5921"]],[18,19,[]]]},{"k":2952,"v":[[0,4,["H3427"]],[4,7,["H6607"]],[7,10,["H168"]],[10,13,["H4150"]],[13,14,["H3119"]],[14,16,["H3915"]],[16,17,["H7651"]],[17,18,["H3117"]],[18,20,["H8104","(H853)"]],[20,22,["H4931"]],[22,25,["H3068"]],[25,28,["H4191"]],[28,29,["H3808"]],[29,30,["H3588"]],[30,31,["H3651"]],[31,34,["H6680"]]]},{"k":2953,"v":[[0,2,["H175"]],[2,5,["H1121"]],[5,6,["H6213","(H853)"]],[6,7,["H3605"]],[7,8,["H1697"]],[8,9,["H834"]],[9,11,["H3068"]],[11,12,["H6680"]],[12,15,["H3027"]],[15,17,["H4872"]]]},{"k":2954,"v":[[0,5,["H1961"]],[5,8,["H8066"]],[8,9,["H3117"]],[9,11,["H4872"]],[11,12,["H7121"]],[12,13,["H175"]],[13,16,["H1121"]],[16,19,["H2205"]],[19,21,["H3478"]]]},{"k":2955,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H175"]],[5,6,["H3947"]],[6,9,["H1121","H1241"]],[9,10,["H5695"]],[10,14,["H2403"]],[14,17,["H352"]],[17,21,["H5930"]],[21,23,["H8549"]],[23,25,["H7126"]],[25,27,["H6440"]],[27,29,["H3068"]]]},{"k":2956,"v":[[0,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,9,["H1696"]],[9,10,["H559"]],[10,11,["H3947"]],[11,14,["H8163"]],[14,17,["H5795"]],[17,21,["H2403"]],[21,24,["H5695"]],[24,27,["H3532"]],[27,31,["H1121"]],[31,32,["H8141"]],[32,34,["H8549"]],[34,38,["H5930"]]]},{"k":2957,"v":[[0,3,["H7794"]],[3,6,["H352"]],[6,9,["H8002"]],[9,11,["H2076"]],[11,12,["H6440"]],[12,14,["H3068"]],[14,18,["H4503"]],[18,19,["H1101"]],[19,21,["H8081"]],[21,22,["H3588"]],[22,24,["H3117"]],[24,26,["H3068"]],[26,28,["H7200"]],[28,29,["H413"]],[29,30,[]]]},{"k":2958,"v":[[0,3,["H3947","(H853)"]],[3,5,["H834"]],[5,6,["H4872"]],[6,7,["H6680"]],[7,8,["H413","H6440"]],[8,10,["H168"]],[10,13,["H4150"]],[13,15,["H3605"]],[15,17,["H5712"]],[17,19,["H7126"]],[19,21,["H5975"]],[21,22,["H6440"]],[22,24,["H3068"]]]},{"k":2959,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H2088"]],[4,7,["H1697"]],[7,8,["H834"]],[8,10,["H3068"]],[10,11,["H6680"]],[11,15,["H6213"]],[15,18,["H3519"]],[18,21,["H3068"]],[21,23,["H7200"]],[23,24,["H413"]],[24,25,[]]]},{"k":2960,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H175"]],[5,6,["H7126"]],[6,7,["H413"]],[7,9,["H4196"]],[9,11,["H6213","(H853)"]],[11,14,["H2403"]],[14,18,["H5930"]],[18,22,["H3722"]],[22,23,["H1157"]],[23,26,["H1157"]],[26,28,["H5971"]],[28,30,["H6213","(H853)"]],[30,32,["H7133"]],[32,35,["H5971"]],[35,39,["H3722"]],[39,40,["H1157"]],[40,42,["H834"]],[42,44,["H3068"]],[44,45,["H6680"]]]},{"k":2961,"v":[[0,1,["H175"]],[1,3,["H7126"]],[3,4,["H413"]],[4,6,["H4196"]],[6,8,["H7819","(H853)"]],[8,10,["H5695"]],[10,14,["H2403"]],[14,15,["H834"]],[15,18,[]]]},{"k":2962,"v":[[0,3,["H1121"]],[3,5,["H175"]],[5,6,["H7126","(H853)"]],[6,8,["H1818"]],[8,9,["H413"]],[9,13,["H2881"]],[13,15,["H676"]],[15,18,["H1818"]],[18,20,["H5414"]],[20,22,["H5921"]],[22,24,["H7161"]],[24,27,["H4196"]],[27,30,["H3332"]],[30,32,["H1818"]],[32,33,["H413"]],[33,35,["H3247"]],[35,38,["H4196"]]]},{"k":2963,"v":[[0,3,["H2459"]],[3,6,["H3629"]],[6,9,["H3508"]],[9,10,["H4480"]],[10,12,["H3516"]],[12,13,["H4480"]],[13,16,["H2403"]],[16,18,["H6999"]],[18,21,["H4196"]],[21,22,["H834"]],[22,24,["H3068"]],[24,25,["H6680","(H853)"]],[25,26,["H4872"]]]},{"k":2964,"v":[[0,3,["H1320"]],[3,6,["H5785"]],[6,8,["H8313"]],[8,10,["H784"]],[10,11,["H4480","H2351"]],[11,13,["H4264"]]]},{"k":2965,"v":[[0,3,["H7819","(H853)"]],[3,6,["H5930"]],[6,8,["H175"]],[8,9,["H1121"]],[9,10,["H4672"]],[10,11,["H413"]],[11,12,["(H853)"]],[12,14,["H1818"]],[14,17,["H2236"]],[17,19,["H5439"]],[19,20,["H5921"]],[20,22,["H4196"]]]},{"k":2966,"v":[[0,3,["H4672"]],[3,6,["H5930"]],[6,7,["H413"]],[7,11,["H5409"]],[11,15,["H7218"]],[15,18,["H6999"]],[18,20,["H5921"]],[20,22,["H4196"]]]},{"k":2967,"v":[[0,4,["H7364","(H853)"]],[4,6,["H7130"]],[6,9,["H3767"]],[9,11,["H6999"]],[11,13,["H5921"]],[13,16,["H5930"]],[16,19,["H4196"]]]},{"k":2968,"v":[[0,3,["H7126","(H853)"]],[3,5,["H5971"]],[5,6,["H7133"]],[6,8,["H3947","(H853)"]],[8,10,["H8163"]],[10,11,["H834"]],[11,15,["H2403"]],[15,18,["H5971"]],[18,20,["H7819"]],[20,26,["H2398"]],[26,29,["H7223"]]]},{"k":2969,"v":[[0,3,["H7126","(H853)"]],[3,6,["H5930"]],[6,8,["H6213"]],[8,13,["H4941"]]]},{"k":2970,"v":[[0,3,["H7126","(H853)"]],[3,6,["H4503"]],[6,10,["H4390","H3709"]],[10,11,["H4480"]],[11,13,["H6999"]],[13,15,["H5921"]],[15,17,["H4196"]],[17,18,["H4480","H905"]],[18,21,["H5930"]],[21,24,["H1242"]]]},{"k":2971,"v":[[0,2,["H7819"]],[2,3,["(H853)"]],[3,5,["H7794"]],[5,8,["H352"]],[8,11,["H2077"]],[11,14,["H8002"]],[14,15,["H834"]],[15,19,["H5971"]],[19,21,["H175"]],[21,22,["H1121"]],[22,23,["H4672"]],[23,24,["H413"]],[24,27,["H1818"]],[27,30,["H2236"]],[30,31,["H5921"]],[31,33,["H4196"]],[33,35,["H5439"]]]},{"k":2972,"v":[[0,3,["H2459"]],[3,4,["H4480"]],[4,6,["H7794"]],[6,8,["H4480"]],[8,10,["H352"]],[10,12,["H451"]],[12,16,["H4374"]],[16,21,["H3629"]],[21,24,["H3508"]],[24,27,["H3516"]]]},{"k":2973,"v":[[0,3,["H7760","(H853)"]],[3,5,["H2459"]],[5,6,["H5921"]],[6,8,["H2373"]],[8,11,["H6999"]],[11,13,["H2459"]],[13,16,["H4196"]]]},{"k":2974,"v":[[0,3,["H2373"]],[3,6,["H3225"]],[6,7,["H7785"]],[7,8,["H175"]],[8,9,["H5130"]],[9,13,["H8573"]],[13,14,["H6440"]],[14,16,["H3068"]],[16,17,["H834"]],[17,18,["H4872"]],[18,19,["H6680"]]]},{"k":2975,"v":[[0,2,["H175"]],[2,4,["H5375","(H853)"]],[4,6,["H3027"]],[6,7,["H413"]],[7,9,["H5971"]],[9,11,["H1288"]],[11,15,["H3381"]],[15,17,["H4480","H6213"]],[17,21,["H2403"]],[21,25,["H5930"]],[25,28,["H8002"]]]},{"k":2976,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,5,["H935"]],[5,6,["H413"]],[6,8,["H168"]],[8,11,["H4150"]],[11,14,["H3318"]],[14,16,["H1288","(H853)"]],[16,18,["H5971"]],[18,21,["H3519"]],[21,24,["H3068"]],[24,25,["H7200"]],[25,26,["H413"]],[26,27,["H3605"]],[27,29,["H5971"]]]},{"k":2977,"v":[[0,6,["H3318","H784"]],[6,8,["H4480","H6440"]],[8,10,["H3068"]],[10,12,["H398"]],[12,13,["H5921"]],[13,15,["H4196","(H853)"]],[15,18,["H5930"]],[18,21,["H2459"]],[21,24,["H3605"]],[24,26,["H5971"]],[26,27,["H7200"]],[27,29,["H7442"]],[29,31,["H5307"]],[31,32,["H5921"]],[32,34,["H6440"]]]},{"k":2978,"v":[[0,2,["H5070"]],[2,4,["H30"]],[4,6,["H1121"]],[6,8,["H175"]],[8,9,["H3947"]],[9,10,["H376"]],[10,14,["H4289"]],[14,16,["H5414"]],[16,17,["H784"]],[17,18,["H2004"]],[18,20,["H7760"]],[20,21,["H7004"]],[21,22,["H5921"]],[22,24,["H7126"]],[24,25,["H2114"]],[25,26,["H784"]],[26,27,["H6440"]],[27,29,["H3068"]],[29,30,["H834"]],[30,32,["H6680"]],[32,34,["H3808"]]]},{"k":2979,"v":[[0,4,["H3318"]],[4,5,["H784"]],[5,6,["H4480","H6440"]],[6,8,["H3068"]],[8,10,["H398"]],[10,14,["H4191"]],[14,15,["H6440"]],[15,17,["H3068"]]]},{"k":2980,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H175"]],[5,6,["H1931"]],[6,9,["H834"]],[9,11,["H3068"]],[11,12,["H1696"]],[12,13,["H559"]],[13,17,["H6942"]],[17,22,["H7138"]],[22,25,["H5921","H6440"]],[25,26,["H3605"]],[26,28,["H5971"]],[28,32,["H3513"]],[32,34,["H175"]],[34,37,["H1826"]]]},{"k":2981,"v":[[0,2,["H4872"]],[2,3,["H7121","H413"]],[3,4,["H4332"]],[4,6,["H469"]],[6,8,["H1121"]],[8,10,["H5816"]],[10,12,["H1730"]],[12,14,["H175"]],[14,16,["H559"]],[16,17,["H413"]],[17,20,["H7126"]],[20,21,["H5375","(H853)"]],[21,23,["H251"]],[23,24,["H4480","H854"]],[24,25,["H6440"]],[25,27,["H6944"]],[27,29,["H413","H4480","H2351"]],[29,31,["H4264"]]]},{"k":2982,"v":[[0,4,["H7126"]],[4,6,["H5375"]],[6,10,["H3801"]],[10,12,["H413","H4480","H2351"]],[12,14,["H4264"]],[14,15,["H834"]],[15,16,["H4872"]],[16,18,["H1696"]]]},{"k":2983,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H175"]],[5,8,["H499"]],[8,11,["H385"]],[11,13,["H1121"]],[13,14,["H6544"]],[14,15,["H408"]],[15,17,["H7218"]],[17,18,["H3808"]],[18,19,["H6533"]],[19,21,["H899"]],[21,22,["H3808"]],[22,24,["H4191"]],[24,28,["H7107"]],[28,29,["H5921"]],[29,30,["H3605"]],[30,32,["H5712"]],[32,36,["H251"]],[36,38,["H3605"]],[38,39,["H1004"]],[39,41,["H3478"]],[41,42,["H1058","(H853)"]],[42,44,["H8316"]],[44,45,["H834"]],[45,47,["H3068"]],[47,49,["H8313"]]]},{"k":2984,"v":[[0,4,["H3808"]],[4,6,["H3318"]],[6,9,["H4480","H6607"]],[9,12,["H168"]],[12,15,["H4150"]],[15,16,["H6435"]],[16,18,["H4191"]],[18,19,["H3588"]],[19,21,["H4888"]],[21,22,["H8081"]],[22,25,["H3068"]],[25,27,["H5921"]],[27,31,["H6213"]],[31,35,["H1697"]],[35,37,["H4872"]]]},{"k":2985,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H175"]],[6,7,["H559"]]]},{"k":2986,"v":[[0,2,["H408"]],[2,3,["H8354"]],[3,4,["H3196"]],[4,7,["H7941"]],[7,8,["H859"]],[8,11,["H1121"]],[11,12,["H854"]],[12,16,["H935"]],[16,17,["H413"]],[17,19,["H168"]],[19,22,["H4150"]],[22,23,["H3808"]],[23,25,["H4191"]],[25,30,["H2708"]],[30,32,["H5769"]],[32,35,["H1755"]]]},{"k":2987,"v":[[0,6,["H914"]],[6,7,["H996"]],[7,8,["H6944"]],[8,10,["H2455"]],[10,12,["H996"]],[12,13,["H2931"]],[13,15,["H2889"]]]},{"k":2988,"v":[[0,5,["H3384","(H853)"]],[5,7,["H1121"]],[7,9,["H3478","(H853)"]],[9,10,["H3605"]],[10,12,["H2706"]],[12,13,["H834"]],[13,15,["H3068"]],[15,17,["H1696"]],[17,18,["H413"]],[18,22,["H3027"]],[22,24,["H4872"]]]},{"k":2989,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,4,["H413"]],[4,5,["H175"]],[5,7,["H413"]],[7,8,["H499"]],[8,10,["H413"]],[10,11,["H385"]],[11,13,["H1121"]],[13,16,["H3498"]],[16,17,["H3947","(H853)"]],[17,20,["H4503"]],[20,22,["H3498"]],[22,31,["H4480","H801","H3068"]],[31,33,["H398"]],[33,36,["H4682"]],[36,37,["H681"]],[37,39,["H4196"]],[39,40,["H3588"]],[40,41,["H1931"]],[41,44,["H6944","H6944"]]]},{"k":2990,"v":[[0,4,["H398"]],[4,8,["H6918"]],[8,9,["H4725"]],[9,10,["H3588"]],[10,14,["H2706"]],[14,17,["H1121"]],[17,18,["H2706"]],[18,27,["H4480","H801","H3068"]],[27,28,["H3588"]],[28,29,["H3651"]],[29,32,["H6680"]]]},{"k":2991,"v":[[0,3,["H8573"]],[3,4,["H2373"]],[4,6,["H8641"]],[6,7,["H7785"]],[7,10,["H398"]],[10,13,["H2889"]],[13,14,["H4725"]],[14,15,["H859"]],[15,18,["H1121"]],[18,21,["H1323"]],[21,22,["H854"]],[22,24,["H3588"]],[24,28,["H2706"]],[28,31,["H1121"]],[31,32,["H2706"]],[32,35,["H5414"]],[35,39,["H4480","H2077"]],[39,42,["H8002"]],[42,45,["H1121"]],[45,47,["H3478"]]]},{"k":2992,"v":[[0,2,["H8641"]],[2,3,["H7785"]],[3,6,["H8573"]],[6,7,["H2373"]],[7,10,["H935"]],[10,11,["H5921"]],[11,16,["H801"]],[16,19,["H2459"]],[19,21,["H5130"]],[21,26,["H8573"]],[26,27,["H6440"]],[27,29,["H3068"]],[29,33,["H1961"]],[33,37,["H1121"]],[37,38,["H854"]],[38,42,["H2706"]],[42,44,["H5769"]],[44,45,["H834"]],[45,47,["H3068"]],[47,49,["H6680"]]]},{"k":2993,"v":[[0,2,["H4872"]],[2,4,["H1875","H1875"]],[4,6,["H8163"]],[6,10,["H2403"]],[10,12,["H2009"]],[12,15,["H8313"]],[15,19,["H7107"]],[19,20,["H5921"]],[20,21,["H499"]],[21,23,["H385"]],[23,25,["H1121"]],[25,27,["H175"]],[27,30,["H3498"]],[30,32,["H559"]]]},{"k":2994,"v":[[0,1,["H4069"]],[1,4,["H3808"]],[4,5,["H398","(H853)"]],[5,8,["H2403"]],[8,11,["H6944"]],[11,12,["H4725"]],[12,13,["H3588"]],[13,14,["H1931"]],[14,17,["H6944","H6944"]],[17,21,["H5414"]],[21,25,["H5375","(H853)"]],[25,27,["H5771"]],[27,30,["H5712"]],[30,33,["H3722"]],[33,34,["H5921"]],[34,36,["H6440"]],[36,38,["H3068"]]]},{"k":2995,"v":[[0,1,["H2005","(H853)"]],[1,3,["H1818"]],[3,7,["H3808"]],[7,9,["H935"]],[9,10,["H6441","H413"]],[10,12,["H6944"]],[12,18,["H398","H398"]],[18,22,["H6944"]],[22,24,["H834"]],[24,26,["H6680"]]]},{"k":2996,"v":[[0,2,["H175"]],[2,3,["H1696"]],[3,4,["H413"]],[4,5,["H4872"]],[5,6,["H2005"]],[6,8,["H3117"]],[8,11,["H7126","(H853)"]],[11,14,["H2403"]],[14,18,["H5930"]],[18,19,["H6440"]],[19,21,["H3068"]],[21,24,["H428"]],[24,26,["H7122"]],[26,32,["H398"]],[32,35,["H2403"]],[35,37,["H3117"]],[37,42,["H3190"]],[42,45,["H5869"]],[45,48,["H3068"]]]},{"k":2997,"v":[[0,3,["H4872"]],[3,4,["H8085"]],[4,8,["H3190","H5869"]]]},{"k":2998,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H559"]],[10,11,["H413"]],[11,12,[]]]},{"k":2999,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H559"]],[7,8,["H2063"]],[8,11,["H2416"]],[11,12,["H834"]],[12,15,["H398"]],[15,17,["H4480","H3605"]],[17,19,["H929"]],[19,20,["H834"]],[20,22,["H5921"]],[22,24,["H776"]]]},{"k":3000,"v":[[0,1,["H3605"]],[1,2,["H6536"]],[2,4,["H6541"]],[4,7,["H8156","H8157","H6541"]],[7,9,["H5927"]],[9,11,["H1625"]],[11,14,["H929"]],[14,18,["H398"]]]},{"k":3001,"v":[[0,1,["H389","(H853)"]],[1,2,["H2088"]],[2,5,["H3808"]],[5,6,["H398"]],[6,10,["H4480","H5927"]],[10,12,["H1625"]],[12,17,["H4480","H6536"]],[17,19,["H6541"]],[19,20,["(H853)"]],[20,22,["H1581"]],[22,23,["H3588"]],[23,24,["H1931"]],[24,25,["H5927"]],[25,27,["H1625"]],[27,29,["H6536"]],[29,30,["H369"]],[30,32,["H6541"]],[32,33,["H1931"]],[33,35,["H2931"]],[35,37,[]]]},{"k":3002,"v":[[0,3,["H8227"]],[3,4,["H3588"]],[4,5,["H1931"]],[5,6,["H5927"]],[6,8,["H1625"]],[8,10,["H6536"]],[10,11,["H3808"]],[11,13,["H6541"]],[13,14,["H1931"]],[14,16,["H2931"]],[16,18,[]]]},{"k":3003,"v":[[0,3,["H768"]],[3,4,["H3588"]],[4,5,["H1931"]],[5,6,["H5927"]],[6,8,["H1625"]],[8,10,["H6536"]],[10,11,["H3808"]],[11,13,["H6541"]],[13,14,["H1931"]],[14,16,["H2931"]],[16,18,[]]]},{"k":3004,"v":[[0,3,["H2386"]],[3,4,["H3588"]],[4,5,["H1931"]],[5,6,["H6536"]],[6,8,["H6541"]],[8,11,["H8156","H8157","H6541"]],[11,13,["H1931"]],[13,14,["H1641"]],[14,15,["H3808"]],[15,17,["H1625"]],[17,18,["H1931"]],[18,20,["H2931"]],[20,22,[]]]},{"k":3005,"v":[[0,3,["H4480","H1320"]],[3,6,["H3808"]],[6,7,["H398"]],[7,10,["H5038"]],[10,13,["H3808"]],[13,14,["H5060"]],[14,15,["H1992"]],[15,17,["H2931"]],[17,19,[]]]},{"k":3006,"v":[[0,0,["(H853)"]],[0,1,["H2088"]],[1,4,["H398"]],[4,6,["H4480","H3605"]],[6,7,["H834"]],[7,11,["H4325"]],[11,12,["H3605","H834"]],[12,14,["H5579"]],[14,16,["H7193"]],[16,19,["H4325"]],[19,22,["H3220"]],[22,26,["H5158"]],[26,30,["H398"]]]},{"k":3007,"v":[[0,2,["H3605"]],[2,3,["H834"]],[3,5,["H369"]],[5,6,["H5579"]],[6,8,["H7193"]],[8,11,["H3220"]],[11,15,["H5158"]],[15,17,["H4480","H3605"]],[17,19,["H8318"]],[19,22,["H4325"]],[22,25,["H4480","H3605"]],[25,26,["H2416"]],[26,27,["H5315"]],[27,28,["H834"]],[28,32,["H4325"]],[32,33,["H1992"]],[33,37,["H8263"]],[37,39,[]]]},{"k":3008,"v":[[0,3,["H1961"]],[3,6,["H8263"]],[6,11,["H3808"]],[11,12,["H398"]],[12,15,["H4480","H1320"]],[15,23,["H8262","(H853)","H5038"]]]},{"k":3009,"v":[[0,1,["H3605","H834"]],[1,3,["H369"]],[3,4,["H5579"]],[4,6,["H7193"]],[6,9,["H4325"]],[9,10,["H1931"]],[10,14,["H8263"]],[14,16,[]]]},{"k":3010,"v":[[0,2,["H428"]],[2,10,["H8262"]],[10,11,["H4480"]],[11,13,["H5775"]],[13,16,["H3808"]],[16,18,["H398"]],[18,19,["H1992"]],[19,22,["H8263","(H853)"]],[22,24,["H5404"]],[24,27,["H6538"]],[27,30,["H5822"]]]},{"k":3011,"v":[[0,3,["H1676"]],[3,6,["H344"]],[6,9,["H4327"]]]},{"k":3012,"v":[[0,0,["(H853)"]],[0,1,["H3605"]],[1,2,["H6158"]],[2,5,["H4327"]]]},{"k":3013,"v":[[0,3,["H1323","H3284"]],[3,7,["H8464"]],[7,10,["H7828"]],[10,13,["H5322"]],[13,16,["H4327"]]]},{"k":3014,"v":[[0,4,["H3563"]],[4,7,["H7994"]],[7,11,["H3244"]]]},{"k":3015,"v":[[0,3,["H8580"]],[3,6,["H6893"]],[6,10,["H7360"]]]},{"k":3016,"v":[[0,3,["H2624"]],[3,5,["H601"]],[5,8,["H4327"]],[8,11,["H1744"]],[11,14,["H5847"]]]},{"k":3017,"v":[[0,1,["H3605"]],[1,2,["H5775"]],[2,4,["H8318"]],[4,5,["H1980"]],[5,6,["H5921"]],[6,8,["H702"]],[8,12,["H8263"]],[12,14,[]]]},{"k":3018,"v":[[0,1,["H389","(H853)"]],[1,2,["H2088"]],[2,5,["H398"]],[5,7,["H4480","H3605"]],[7,8,["H5775"]],[8,10,["H8318"]],[10,12,["H1980"]],[12,13,["H5921"]],[13,15,["H702"]],[15,16,["H834"]],[16,18,["H3767"]],[18,19,["H4480","H4605"]],[19,21,["H7272"]],[21,23,["H5425"]],[23,24,["H2004"]],[24,25,["H5921"]],[25,27,["H776"]]]},{"k":3019,"v":[[0,1,["(H853)"]],[1,2,["H428"]],[2,3,["H4480"]],[3,7,["H398","(H853)"]],[7,9,["H697"]],[9,12,["H4327"]],[12,16,["H5556"]],[16,19,["H4327"]],[19,22,["H2728"]],[22,25,["H4327"]],[25,28,["H2284"]],[28,31,["H4327"]]]},{"k":3020,"v":[[0,2,["H3605"]],[2,4,["H5775"]],[4,6,["H8318"]],[6,7,["H834"]],[7,9,["H702"]],[9,10,["H7272"]],[10,14,["H8263"]],[14,16,[]]]},{"k":3021,"v":[[0,3,["H428"]],[3,7,["H2930"]],[7,8,["H3605"]],[8,9,["H5060"]],[9,11,["H5038"]],[11,16,["H2930"]],[16,17,["H5704"]],[17,19,["H6153"]]]},{"k":3022,"v":[[0,2,["H3605"]],[2,3,["H5375"]],[3,7,["H4480","H5038"]],[7,11,["H3526"]],[11,13,["H899"]],[13,16,["H2930"]],[16,17,["H5704"]],[17,19,["H6153"]]]},{"k":3023,"v":[[0,4,["H3605"]],[4,5,["H929"]],[5,6,["H834"]],[6,7,["H6536"]],[7,9,["H6541"]],[9,12,["H369"]],[12,13,["H8156","H8157"]],[13,14,["H369"]],[14,15,["H5927"]],[15,17,["H1625"]],[17,19,["H2931"]],[19,23,["H3605"]],[23,25,["H5060"]],[25,29,["H2930"]]]},{"k":3024,"v":[[0,2,["H3605"]],[2,3,["H1980"]],[3,4,["H5921"]],[4,6,["H3709"]],[6,9,["H3605"]],[9,11,["H2416"]],[11,13,["H1980"]],[13,14,["H5921"]],[14,16,["H702"]],[16,17,["H1992"]],[17,19,["H2931"]],[19,22,["H3605"]],[22,23,["H5060"]],[23,25,["H5038"]],[25,28,["H2930"]],[28,29,["H5704"]],[29,31,["H6153"]]]},{"k":3025,"v":[[0,4,["H5375","(H853)"]],[4,6,["H5038"]],[6,10,["H3526"]],[10,12,["H899"]],[12,15,["H2930"]],[15,16,["H5704"]],[16,18,["H6153"]],[18,19,["H1992"]],[19,21,["H2931"]],[21,23,[]]]},{"k":3026,"v":[[0,1,["H2088"]],[1,5,["H2931"]],[5,11,["H8318"]],[11,13,["H8317"]],[13,14,["H5921"]],[14,16,["H776"]],[16,18,["H2467"]],[18,21,["H5909"]],[21,24,["H6632"]],[24,27,["H4327"]]]},{"k":3027,"v":[[0,3,["H604"]],[3,6,["H3581"]],[6,9,["H3911"]],[9,12,["H2546"]],[12,15,["H8580"]]]},{"k":3028,"v":[[0,1,["H428"]],[1,3,["H2931"]],[3,7,["H3605"]],[7,9,["H8318"]],[9,10,["H3605"]],[10,12,["H5060"]],[12,17,["H4194"]],[17,20,["H2930"]],[20,21,["H5704"]],[21,23,["H6153"]]]},{"k":3029,"v":[[0,2,["H5921"]],[2,3,["H3605","H834"]],[3,5,["H4480"]],[5,10,["H4194"]],[10,12,["H5307"]],[12,16,["H2930"]],[16,20,["H4480","H3605"]],[20,21,["H3627"]],[21,23,["H6086"]],[23,24,["H176"]],[24,25,["H899"]],[25,26,["H176"]],[26,27,["H5785"]],[27,28,["H176"]],[28,29,["H8242"]],[29,30,["H3605"]],[30,31,["H3627"]],[31,34,["H834"]],[34,36,["H4399"]],[36,38,["H6213"]],[38,42,["H935"]],[42,44,["H4325"]],[44,49,["H2930"]],[49,50,["H5704"]],[50,52,["H6153"]],[52,57,["H2891"]]]},{"k":3030,"v":[[0,2,["H3605"]],[2,3,["H2789"]],[3,4,["H3627"]],[4,5,["H834","H413","H8432"]],[5,7,["H4480"]],[7,9,["H5307"]],[9,10,["H3605","H834"]],[10,12,["H8432"]],[12,16,["H2930"]],[16,20,["H7665"]],[20,21,[]]]},{"k":3031,"v":[[0,2,["H4480","H3605"]],[2,3,["H400"]],[3,4,["H834"]],[4,7,["H398"]],[7,9,["H5921"]],[9,10,["H834"]],[10,12,["H4325"]],[12,13,["H935"]],[13,16,["H2930"]],[16,18,["H3605"]],[18,19,["H4945"]],[19,20,["H834"]],[20,23,["H8354"]],[23,25,["H3605"]],[25,27,["H3627"]],[27,30,["H2930"]]]},{"k":3032,"v":[[0,2,["H3605"]],[2,4,["H834","H5921"]],[4,9,["H4480","H5038"]],[9,10,["H5307"]],[10,13,["H2930"]],[13,17,["H8574"]],[17,21,["H3600"]],[21,26,["H5422"]],[26,28,["H1992"]],[28,30,["H2931"]],[30,33,["H1961"]],[33,34,["H2931"]],[34,36,[]]]},{"k":3033,"v":[[0,1,["H389"]],[1,3,["H4599"]],[3,5,["H953"]],[5,9,["H4723"]],[9,11,["H4325"]],[11,13,["H1961"]],[13,14,["H2889"]],[14,18,["H5060"]],[18,20,["H5038"]],[20,23,["H2930"]]]},{"k":3034,"v":[[0,2,["H3588"]],[2,5,["H4480"]],[5,7,["H5038"]],[7,8,["H5307"]],[8,9,["H5921"]],[9,10,["H3605"]],[10,11,["H2221"]],[11,12,["H2233"]],[12,13,["H834"]],[13,17,["H2232"]],[17,18,["H1931"]],[18,21,["H2889"]]]},{"k":3035,"v":[[0,2,["H3588"]],[2,4,["H4325"]],[4,6,["H5414"]],[6,7,["H5921"]],[7,9,["H2233"]],[9,15,["H4480","H5038"]],[15,16,["H5307"]],[16,17,["H5921"]],[17,18,["H1931"]],[18,21,["H2931"]],[21,23,[]]]},{"k":3036,"v":[[0,2,["H3588"]],[2,4,["H929"]],[4,5,["H4480"]],[5,6,["H834"]],[6,9,["H402"]],[9,10,["H4191"]],[10,13,["H5060"]],[13,15,["H5038"]],[15,19,["H2930"]],[19,20,["H5704"]],[20,22,["H6153"]]]},{"k":3037,"v":[[0,4,["H398"]],[4,7,["H4480","H5038"]],[7,11,["H3526"]],[11,13,["H899"]],[13,16,["H2930"]],[16,17,["H5704"]],[17,19,["H6153"]],[19,23,["H5375","(H853)"]],[23,25,["H5038"]],[25,29,["H3526"]],[29,31,["H899"]],[31,34,["H2930"]],[34,35,["H5704"]],[35,37,["H6153"]]]},{"k":3038,"v":[[0,2,["H3605"]],[2,4,["H8318"]],[4,6,["H8317"]],[6,7,["H5921"]],[7,9,["H776"]],[9,13,["H8263"]],[13,16,["H3808"]],[16,18,["H398"]]]},{"k":3039,"v":[[0,1,["H3605"]],[1,2,["H1980"]],[2,3,["H5921"]],[3,5,["H1512"]],[5,7,["H3605"]],[7,8,["H1980"]],[8,9,["H5921"]],[9,11,["H702"]],[11,13,["H3605"]],[13,15,["H7235"]],[15,16,["H7272"]],[16,18,["H3605"]],[18,20,["H8318"]],[20,22,["H8317"]],[22,23,["H5921"]],[23,25,["H776"]],[25,29,["H3808"]],[29,30,["H398"]],[30,31,["H3588"]],[31,32,["H1992"]],[32,35,["H8263"]]]},{"k":3040,"v":[[0,3,["H408"]],[3,6,["H8262","(H853)","H5315"]],[6,8,["H3605"]],[8,10,["H8318"]],[10,12,["H8317"]],[12,13,["H3808"]],[13,18,["H2930"]],[18,25,["H2930"]],[25,26,[]]]},{"k":3041,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,5,["H3068"]],[5,7,["H430"]],[7,12,["H6942"]],[12,16,["H1961"]],[16,17,["H6918"]],[17,18,["H3588"]],[18,19,["H589"]],[19,21,["H6918"]],[21,22,["H3808"]],[22,25,["H2930","(H853)"]],[25,26,["H5315"]],[26,29,["H3605"]],[29,32,["H8318"]],[32,34,["H7430"]],[34,35,["H5921"]],[35,37,["H776"]]]},{"k":3042,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,5,["H3068"]],[5,9,["H5927","(H853)"]],[9,13,["H4480","H776"]],[13,15,["H4714"]],[15,17,["H1961"]],[17,19,["H430"]],[19,23,["H1961"]],[23,24,["H6918"]],[24,25,["H3588"]],[25,26,["H589"]],[26,28,["H6918"]]]},{"k":3043,"v":[[0,1,["H2063"]],[1,4,["H8451"]],[4,7,["H929"]],[7,11,["H5775"]],[11,14,["H3605"]],[14,15,["H2416"]],[15,16,["H5315"]],[16,18,["H7430"]],[18,21,["H4325"]],[21,24,["H3605"]],[24,25,["H5315"]],[25,27,["H8317"]],[27,28,["H5921"]],[28,30,["H776"]]]},{"k":3044,"v":[[0,4,["H914"]],[4,5,["H996"]],[5,7,["H2931"]],[7,10,["H2889"]],[10,12,["H996"]],[12,14,["H2416"]],[14,18,["H398"]],[18,21,["H2416"]],[21,22,["H834"]],[22,24,["H3808"]],[24,26,["H398"]]]},{"k":3045,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3046,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H559"]],[7,8,["H3588"]],[8,10,["H802"]],[10,13,["H2232"]],[13,15,["H3205"]],[15,18,["H2145"]],[18,23,["H2930"]],[23,24,["H7651"]],[24,25,["H3117"]],[25,29,["H3117"]],[29,32,["H5079"]],[32,35,["H1738"]],[35,39,["H2930"]]]},{"k":3047,"v":[[0,4,["H8066"]],[4,5,["H3117"]],[5,7,["H1320"]],[7,10,["H6190"]],[10,13,["H4135"]]]},{"k":3048,"v":[[0,5,["H3427"]],[5,8,["H1818"]],[8,11,["H2893"]],[11,12,["H7969"]],[12,14,["H7970"]],[14,15,["H3117"]],[15,18,["H5060"]],[18,19,["H3808","H3605"]],[19,21,["H6944"]],[21,22,["H3808"]],[22,23,["H935"]],[23,24,["H413"]],[24,26,["H4720"]],[26,27,["H5704"]],[27,29,["H3117"]],[29,32,["H2892"]],[32,34,["H4390"]]]},{"k":3049,"v":[[0,2,["H518"]],[2,4,["H3205"]],[4,7,["H5347"]],[7,12,["H2930"]],[12,14,["H7620"]],[14,18,["H5079"]],[18,22,["H3427"]],[22,23,["H5921"]],[23,25,["H1818"]],[25,28,["H2893"]],[28,29,["H8346"]],[29,31,["H8337"]],[31,32,["H3117"]]]},{"k":3050,"v":[[0,4,["H3117"]],[4,7,["H2892"]],[7,9,["H4390"]],[9,12,["H1121"]],[12,13,["H176"]],[13,16,["H1323"]],[16,19,["H935"]],[19,21,["H3532"]],[21,24,["H1121"]],[24,25,["H8141"]],[25,29,["H5930"]],[29,32,["H1121"]],[32,33,["H3123"]],[33,34,["H176"]],[34,36,["H8449"]],[36,40,["H2403"]],[40,41,["H413"]],[41,43,["H6607"]],[43,46,["H168"]],[46,49,["H4150"]],[49,50,["H413"]],[50,52,["H3548"]]]},{"k":3051,"v":[[0,3,["H7126"]],[3,5,["H6440"]],[5,7,["H3068"]],[7,11,["H3722"]],[11,12,["H5921"]],[12,18,["H2891"]],[18,21,["H4480","H4726"]],[21,24,["H1818"]],[24,25,["H2063"]],[25,28,["H8451"]],[28,33,["H3205"]],[33,35,["H2145"]],[35,36,["H176"]],[36,38,["H5347"]]]},{"k":3052,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,8,["H4672","H3027","H1767"]],[8,10,["H7716"]],[10,14,["H3947"]],[14,15,["H8147"]],[15,16,["H8449"]],[16,17,["H176"]],[17,18,["H8147"]],[18,19,["H1121"]],[19,20,["H3123"]],[20,22,["H259"]],[22,26,["H5930"]],[26,29,["H259"]],[29,33,["H2403"]],[33,36,["H3548"]],[36,40,["H3722"]],[40,41,["H5921"]],[41,47,["H2891"]]]},{"k":3053,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H175"]],[8,9,["H559"]]]},{"k":3054,"v":[[0,1,["H3588"]],[1,3,["H120"]],[3,5,["H1961"]],[5,8,["H5785"]],[8,11,["H1320"]],[11,13,["H7613"]],[13,15,["H5597"]],[15,16,["H176"]],[16,18,["H934"]],[18,21,["H1961"]],[21,24,["H5785"]],[24,27,["H1320"]],[27,30,["H5061"]],[30,32,["H6883"]],[32,37,["H935"]],[37,38,["H413"]],[38,39,["H175"]],[39,41,["H3548"]],[41,42,["H176"]],[42,43,["H413"]],[43,44,["H259"]],[44,47,["H4480","H1121"]],[47,49,["H3548"]]]},{"k":3055,"v":[[0,3,["H3548"]],[3,6,["H7200","(H853)"]],[6,8,["H5061"]],[8,11,["H5785"]],[11,14,["H1320"]],[14,18,["H8181"]],[18,21,["H5061"]],[21,23,["H2015"]],[23,24,["H3836"]],[24,27,["H5061"]],[27,29,["H4758"]],[29,31,["H6013"]],[31,34,["H4480","H5785"]],[34,37,["H1320"]],[37,38,["H1931"]],[38,41,["H5061"]],[41,43,["H6883"]],[43,46,["H3548"]],[46,49,["H7200"]],[49,54,["H2930","(H853)"]]]},{"k":3056,"v":[[0,1,["H518"]],[1,4,["H934"]],[4,6,["H3836"]],[6,9,["H5785"]],[9,12,["H1320"]],[12,15,["H4758"]],[15,17,["H369"]],[17,18,["H6013"]],[18,19,["H4480"]],[19,21,["H5785"]],[21,24,["H8181"]],[24,27,["H3808"]],[27,28,["H2015"]],[28,29,["H3836"]],[29,32,["H3548"]],[32,35,["H5462"]],[35,38,["(H853)"]],[38,40,["H5061"]],[40,41,["H7651"]],[41,42,["H3117"]]]},{"k":3057,"v":[[0,3,["H3548"]],[3,6,["H7200"]],[6,9,["H7637"]],[9,10,["H3117"]],[10,12,["H2009"]],[12,15,["H5061"]],[15,18,["H5869"]],[18,22,["H5975"]],[22,25,["H5061"]],[25,26,["H6581"]],[26,27,["H3808"]],[27,30,["H5785"]],[30,33,["H3548"]],[33,37,["H5462"]],[37,38,["H7651"]],[38,39,["H3117"]],[39,40,["H8145"]]]},{"k":3058,"v":[[0,3,["H3548"]],[3,6,["H7200"]],[6,8,["H8145"]],[8,10,["H7637"]],[10,11,["H3117"]],[11,13,["H2009"]],[13,16,["H5061"]],[16,19,["H3544"]],[19,22,["H5061"]],[22,23,["H6581"]],[23,24,["H3808"]],[24,27,["H5785"]],[27,29,["H3548"]],[29,33,["H2891"]],[33,34,["H1931"]],[34,38,["H4556"]],[38,42,["H3526"]],[42,44,["H899"]],[44,47,["H2891"]]]},{"k":3059,"v":[[0,2,["H518"]],[2,4,["H4556"]],[4,7,["H6581","H6581"]],[7,10,["H5785"]],[10,12,["H310"]],[12,16,["H7200"]],[16,17,["H413"]],[17,19,["H3548"]],[19,22,["H2893"]],[22,26,["H7200"]],[26,27,["H413"]],[27,29,["H3548"]],[29,30,["H8145"]]]},{"k":3060,"v":[[0,4,["H3548"]],[4,5,["H7200"]],[5,7,["H2009"]],[7,9,["H4556"]],[9,10,["H6581"]],[10,13,["H5785"]],[13,16,["H3548"]],[16,20,["H2930"]],[20,21,["H1931"]],[21,24,["H6883"]]]},{"k":3061,"v":[[0,1,["H3588"]],[1,3,["H5061"]],[3,5,["H6883"]],[5,6,["H1961"]],[6,9,["H120"]],[9,14,["H935"]],[14,15,["H413"]],[15,17,["H3548"]]]},{"k":3062,"v":[[0,3,["H3548"]],[3,5,["H7200"]],[5,8,["H2009"]],[8,11,["H7613"]],[11,13,["H3836"]],[13,16,["H5785"]],[16,18,["H1931"]],[18,20,["H2015"]],[20,22,["H8181"]],[22,23,["H3836"]],[23,27,["H4241"]],[27,28,["H2416"]],[28,29,["H1320"]],[29,32,["H7613"]]]},{"k":3063,"v":[[0,1,["H1931"]],[1,4,["H3462"]],[4,5,["H6883"]],[5,8,["H5785"]],[8,11,["H1320"]],[11,14,["H3548"]],[14,18,["H2930"]],[18,21,["H3808"]],[21,24,["H5462"]],[24,25,["H3588"]],[25,26,["H1931"]],[26,28,["H2931"]]]},{"k":3064,"v":[[0,2,["H518"]],[2,4,["H6883"]],[4,7,["H6524","H6524"]],[7,10,["H5785"]],[10,13,["H6883"]],[13,14,["H3680","(H853)"]],[14,15,["H3605"]],[15,17,["H5785"]],[17,23,["H5061"]],[23,26,["H4480","H7218"]],[26,28,["H5704"]],[28,30,["H7272"]],[30,31,["H3605"]],[31,33,["H3548"]],[33,34,["H4758","H5869"]]]},{"k":3065,"v":[[0,3,["H3548"]],[3,5,["H7200"]],[5,7,["H2009"]],[7,10,["H6883"]],[10,12,["H3680","(H853)"]],[12,13,["H3605"]],[13,15,["H1320"]],[15,20,["H2891"]],[20,22,["(H853)"]],[22,24,["H5061"]],[24,27,["H3605"]],[27,28,["H2015"]],[28,29,["H3836"]],[29,30,["H1931"]],[30,32,["H2889"]]]},{"k":3066,"v":[[0,2,["H3117"]],[2,3,["H2416"]],[3,4,["H1320"]],[4,5,["H7200"]],[5,11,["H2930"]]]},{"k":3067,"v":[[0,3,["H3548"]],[3,5,["H7200","(H853)"]],[5,7,["H2416"]],[7,8,["H1320"]],[8,14,["H2930"]],[14,17,["H2416"]],[17,18,["H1320"]],[18,20,["H2931"]],[20,21,["H1931"]],[21,24,["H6883"]]]},{"k":3068,"v":[[0,1,["H176"]],[1,2,["H3588"]],[2,4,["H2416"]],[4,5,["H1320"]],[5,7,["H7725"]],[7,10,["H2015"]],[10,12,["H3836"]],[12,15,["H935"]],[15,16,["H413"]],[16,18,["H3548"]]]},{"k":3069,"v":[[0,3,["H3548"]],[3,5,["H7200"]],[5,8,["H2009"]],[8,11,["H5061"]],[11,13,["H2015"]],[13,15,["H3836"]],[15,18,["H3548"]],[18,22,["H2891"]],[22,24,["(H853)"]],[24,26,["H5061"]],[26,27,["H1931"]],[27,29,["H2889"]]]},{"k":3070,"v":[[0,2,["H1320"]],[2,9,["H5785"]],[9,11,["H3588","H1961"]],[11,13,["H7822"]],[13,16,["H7495"]]]},{"k":3071,"v":[[0,4,["H4725"]],[4,7,["H7822"]],[7,9,["H1961"]],[9,11,["H3836"]],[11,12,["H7613"]],[12,13,["H176"]],[13,16,["H934"]],[16,17,["H3836"]],[17,20,["H125"]],[20,24,["H7200"]],[24,25,["H413"]],[25,27,["H3548"]]]},{"k":3072,"v":[[0,5,["H3548"]],[5,6,["H7200"]],[6,8,["H2009"]],[8,12,["H4758"]],[12,13,["H8217"]],[13,14,["H4480"]],[14,16,["H5785"]],[16,19,["H8181"]],[19,22,["H2015"]],[22,23,["H3836"]],[23,25,["H3548"]],[25,29,["H2930"]],[29,30,["H1931"]],[30,33,["H5061"]],[33,35,["H6883"]],[35,37,["H6524"]],[37,40,["H7822"]]]},{"k":3073,"v":[[0,2,["H518"]],[2,4,["H3548"]],[4,6,["H7200"]],[6,9,["H2009"]],[9,12,["H369"]],[12,13,["H3836"]],[13,14,["H8181"]],[14,20,["H369"]],[20,21,["H8217"]],[21,22,["H4480"]],[22,24,["H5785"]],[24,28,["H3544"]],[28,31,["H3548"]],[31,35,["H5462"]],[35,36,["H7651"]],[36,37,["H3117"]]]},{"k":3074,"v":[[0,2,["H518"]],[2,6,["H6581","H6581"]],[6,9,["H5785"]],[9,12,["H3548"]],[12,16,["H2930","(H853)"]],[16,17,["H1931"]],[17,20,["H5061"]]]},{"k":3075,"v":[[0,2,["H518"]],[2,5,["H934"]],[5,6,["H5975"]],[6,9,["H8478"]],[9,11,["H6581"]],[11,12,["H3808"]],[12,13,["H1931"]],[13,16,["H6867"]],[16,17,["H7822"]],[17,20,["H3548"]],[20,24,["H2891"]]]},{"k":3076,"v":[[0,1,["H176"]],[1,2,["H3588"]],[2,4,["H1961"]],[4,6,["H1320"]],[6,9,["H5785"]],[9,14,["H784"]],[14,15,["H4348"]],[15,18,["H4241"]],[18,21,["H4348"]],[21,22,["H1961"]],[22,24,["H3836"]],[24,26,["H934"]],[26,28,["H125"]],[28,29,["H176"]],[29,30,["H3836"]]]},{"k":3077,"v":[[0,3,["H3548"]],[3,6,["H7200"]],[6,9,["H2009"]],[9,12,["H8181"]],[12,16,["H934"]],[16,18,["H2015"]],[18,19,["H3836"]],[19,24,["H4758"]],[24,25,["H6013"]],[25,26,["H4480"]],[26,28,["H5785"]],[28,29,["H1931"]],[29,32,["H6883"]],[32,34,["H6524"]],[34,37,["H4348"]],[37,40,["H3548"]],[40,44,["H2930","(H853)"]],[44,45,["H1931"]],[45,48,["H5061"]],[48,50,["H6883"]]]},{"k":3078,"v":[[0,2,["H518"]],[2,4,["H3548"]],[4,6,["H7200"]],[6,9,["H2009"]],[9,12,["H369"]],[12,13,["H3836"]],[13,14,["H8181"]],[14,18,["H934"]],[18,22,["H369"]],[22,23,["H8217"]],[23,24,["H4480"]],[24,27,["H5785"]],[27,31,["H3544"]],[31,34,["H3548"]],[34,38,["H5462"]],[38,39,["H7651"]],[39,40,["H3117"]]]},{"k":3079,"v":[[0,3,["H3548"]],[3,6,["H7200"]],[6,9,["H7637"]],[9,10,["H3117"]],[10,12,["H518"]],[12,17,["H6581","H6581"]],[17,20,["H5785"]],[20,23,["H3548"]],[23,27,["H2930","(H853)"]],[27,28,["H1931"]],[28,31,["H5061"]],[31,33,["H6883"]]]},{"k":3080,"v":[[0,2,["H518"]],[2,5,["H934"]],[5,6,["H5975"]],[6,9,["H8478"]],[9,11,["H6581"]],[11,12,["H3808"]],[12,15,["H5785"]],[15,17,["H1931"]],[17,20,["H3544"]],[20,21,["H1931"]],[21,24,["H7613"]],[24,27,["H4348"]],[27,30,["H3548"]],[30,34,["H2891"]],[34,35,["H3588"]],[35,36,["H1931"]],[36,39,["H6867"]],[39,42,["H4348"]]]},{"k":3081,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,4,["H176"]],[4,5,["H802"]],[5,6,["H1961"]],[6,8,["H5061"]],[8,11,["H7218"]],[11,12,["H176"]],[12,14,["H2206"]]]},{"k":3082,"v":[[0,3,["H3548"]],[3,5,["H7200","(H853)"]],[5,7,["H5061"]],[7,9,["H2009"]],[9,14,["H4758"]],[14,15,["H6013"]],[15,16,["H4480"]],[16,18,["H5785"]],[18,25,["H6669"]],[25,26,["H1851"]],[26,27,["H8181"]],[27,30,["H3548"]],[30,34,["H2930","(H853)"]],[34,35,["H1931"]],[35,39,["H5424"]],[39,42,["H6883"]],[42,45,["H7218"]],[45,46,["H176"]],[46,47,["H2206"]]]},{"k":3083,"v":[[0,2,["H3588"]],[2,4,["H3548"]],[4,6,["H7200","(H853)"]],[6,8,["H5061"]],[8,11,["H5424"]],[11,13,["H2009"]],[13,16,["H369"]],[16,18,["H4758"]],[18,19,["H6013"]],[19,20,["H4480"]],[20,22,["H5785"]],[22,27,["H369"]],[27,28,["H7838"]],[28,29,["H8181"]],[29,34,["H3548"]],[34,37,["H5462"]],[37,40,["(H853)"]],[40,42,["H5061"]],[42,45,["H5424"]],[45,46,["H7651"]],[46,47,["H3117"]]]},{"k":3084,"v":[[0,4,["H7637"]],[4,5,["H3117"]],[5,7,["H3548"]],[7,10,["H7200","(H853)"]],[10,12,["H5061"]],[12,14,["H2009"]],[14,17,["H5424"]],[17,18,["H6581"]],[18,19,["H3808"]],[19,22,["H1961"]],[22,25,["H3808"]],[25,26,["H6669"]],[26,27,["H8181"]],[27,30,["H5424"]],[30,32,["H369"]],[32,34,["H4758"]],[34,35,["H6013"]],[35,36,["H4480"]],[36,38,["H5785"]]]},{"k":3085,"v":[[0,4,["H1548"]],[4,7,["H5424"]],[7,10,["H3808"]],[10,11,["H1548"]],[11,14,["H3548"]],[14,17,["H5462"]],[17,20,["(H853)"]],[20,22,["H5424"]],[22,23,["H7651"]],[23,24,["H3117"]],[24,25,["H8145"]]]},{"k":3086,"v":[[0,4,["H7637"]],[4,5,["H3117"]],[5,7,["H3548"]],[7,10,["H7200","(H853)"]],[10,12,["H5424"]],[12,14,["H2009"]],[14,17,["H5424"]],[17,19,["H3808"]],[19,20,["H6581"]],[20,23,["H5785"]],[23,24,["H369"]],[24,27,["H4758"]],[27,28,["H6013"]],[28,29,["H4480"]],[29,31,["H5785"]],[31,34,["H3548"]],[34,38,["H2891","(H853)"]],[38,42,["H3526"]],[42,44,["H899"]],[44,47,["H2891"]]]},{"k":3087,"v":[[0,2,["H518"]],[2,4,["H5424"]],[4,6,["H6581","H6581"]],[6,9,["H5785"]],[9,10,["H310"]],[10,12,["H2893"]]]},{"k":3088,"v":[[0,3,["H3548"]],[3,6,["H7200"]],[6,9,["H2009"]],[9,12,["H5424"]],[12,14,["H6581"]],[14,17,["H5785"]],[17,19,["H3548"]],[19,21,["H3808"]],[21,22,["H1239"]],[22,24,["H6669"]],[24,25,["H8181"]],[25,26,["H1931"]],[26,28,["H2931"]]]},{"k":3089,"v":[[0,2,["H518"]],[2,4,["H5424"]],[4,8,["H5869"]],[8,11,["H5975"]],[11,16,["H7838"]],[16,17,["H8181"]],[17,19,["H6779"]],[19,22,["H5424"]],[22,24,["H7495"]],[24,25,["H1931"]],[25,27,["H2889"]],[27,30,["H3548"]],[30,34,["H2891"]]]},{"k":3090,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,5,["H176"]],[5,7,["H802"]],[7,8,["H1961"]],[8,11,["H5785"]],[11,14,["H1320"]],[14,16,["H934"]],[16,18,["H3836"]],[18,20,["H934"]]]},{"k":3091,"v":[[0,3,["H3548"]],[3,5,["H7200"]],[5,7,["H2009"]],[7,11,["H934"]],[11,14,["H5785"]],[14,17,["H1320"]],[17,19,["H3544"]],[19,20,["H3836"]],[20,21,["H1931"]],[21,25,["H933"]],[25,27,["H6524"]],[27,30,["H5785"]],[30,31,["H1931"]],[31,33,["H2889"]]]},{"k":3092,"v":[[0,3,["H376"]],[3,4,["H3588"]],[4,8,["H4803"]],[8,10,["H7218"]],[10,11,["H1931"]],[11,13,["H7142"]],[13,16,["H1931"]],[16,17,["H2889"]]]},{"k":3093,"v":[[0,8,["H4803"]],[8,11,["H4480","H6285"]],[11,14,["H7218"]],[14,17,["H6440"]],[17,18,["H1931"]],[18,21,["H1371"]],[21,24,["H1931"]],[24,25,["H2889"]]]},{"k":3094,"v":[[0,2,["H3588"]],[2,4,["H1961"]],[4,8,["H7146"]],[8,9,["H176"]],[9,11,["H1372"]],[11,13,["H3836"]],[13,14,["H125"]],[14,15,["H5061"]],[15,16,["H1931"]],[16,19,["H6883"]],[19,21,["H6524"]],[21,25,["H7146"]],[25,26,["H176"]],[26,29,["H1372"]]]},{"k":3095,"v":[[0,3,["H3548"]],[3,6,["H7200"]],[6,9,["H2009"]],[9,12,["H7613"]],[12,15,["H5061"]],[15,17,["H3836"]],[17,18,["H125"]],[18,22,["H7146"]],[22,23,["H176"]],[23,27,["H1372"]],[27,30,["H6883"]],[30,31,["H4758"]],[31,34,["H5785"]],[34,37,["H1320"]]]},{"k":3096,"v":[[0,1,["H1931"]],[1,4,["H6879"]],[4,5,["H376"]],[5,6,["H1931"]],[6,8,["H2931"]],[8,10,["H3548"]],[10,15,["H2930","H2930"]],[15,17,["H5061"]],[17,21,["H7218"]]]},{"k":3097,"v":[[0,3,["H6879"]],[3,5,["H834"]],[5,7,["H5061"]],[7,10,["H899"]],[10,12,["H1961"]],[12,13,["H6533"]],[13,16,["H7218"]],[16,17,["H6544"]],[17,23,["H5844"]],[23,24,["H5921"]],[24,27,["H8222"]],[27,30,["H7121"]],[30,31,["H2931"]],[31,32,["H2931"]]]},{"k":3098,"v":[[0,1,["H3605"]],[1,3,["H3117"]],[3,4,["H834"]],[4,6,["H5061"]],[6,14,["H2930"]],[14,15,["H1931"]],[15,17,["H2931"]],[17,20,["H3427"]],[20,21,["H910"]],[21,22,["H4480","H2351"]],[22,24,["H4264"]],[24,27,["H4186"]],[27,28,[]]]},{"k":3099,"v":[[0,2,["H899"]],[2,4,["H3588"]],[4,6,["H5061"]],[6,8,["H6883"]],[8,9,["H1961"]],[9,15,["H6785"]],[15,16,["H899"]],[16,17,["H176"]],[17,19,["H6593"]],[19,20,["H899"]]]},{"k":3100,"v":[[0,1,["H176"]],[1,6,["H8359"]],[6,7,["H176"]],[7,8,["H6154"]],[8,10,["H6593"]],[10,13,["H6785"]],[13,14,["H176"]],[14,17,["H5785"]],[17,18,["H176"]],[18,20,["H3605"]],[20,22,["H4399"]],[22,24,["H5785"]]]},{"k":3101,"v":[[0,4,["H5061"]],[4,5,["H1961"]],[5,6,["H3422"]],[6,7,["H176"]],[7,8,["H125"]],[8,11,["H899"]],[11,12,["H176"]],[12,15,["H5785"]],[15,16,["H176"]],[16,19,["H8359"]],[19,20,["H176"]],[20,23,["H6154"]],[23,24,["H176"]],[24,26,["H3605"]],[26,27,["H3627"]],[27,29,["H5785"]],[29,30,["H1931"]],[30,33,["H5061"]],[33,35,["H6883"]],[35,39,["H7200","(H853)"]],[39,42,["H3548"]]]},{"k":3102,"v":[[0,3,["H3548"]],[3,6,["H7200","(H853)"]],[6,8,["H5061"]],[8,11,["H5462"]],[11,14,["(H853)"]],[14,16,["H5061"]],[16,17,["H7651"]],[17,18,["H3117"]]]},{"k":3103,"v":[[0,5,["H7200","(H853)"]],[5,7,["H5061"]],[7,10,["H7637"]],[10,11,["H3117"]],[11,12,["H3588"]],[12,14,["H5061"]],[14,16,["H6581"]],[16,19,["H899"]],[19,20,["H176"]],[20,23,["H8359"]],[23,24,["H176"]],[24,27,["H6154"]],[27,28,["H176"]],[28,31,["H5785"]],[31,34,["H3605"]],[34,35,["H4399"]],[35,36,["H834"]],[36,38,["H6213"]],[38,40,["H5785"]],[40,42,["H5061"]],[42,45,["H3992"]],[45,46,["H6883"]],[46,47,["H1931"]],[47,49,["H2931"]]]},{"k":3104,"v":[[0,4,["H8313","(H853)"]],[4,6,["H899"]],[6,7,["H176","(H853)"]],[7,8,["H8359"]],[8,9,["H176","(H853)"]],[9,10,["H6154"]],[10,12,["H6785"]],[12,13,["H176"]],[13,15,["H6593"]],[15,16,["H176","(H853)"]],[16,17,["H3605"]],[17,18,["H3627"]],[18,20,["H5785"]],[20,21,["H834"]],[21,23,["H5061"]],[23,24,["H1961"]],[24,25,["H3588"]],[25,26,["H1931"]],[26,29,["H3992"]],[29,30,["H6883"]],[30,34,["H8313"]],[34,37,["H784"]]]},{"k":3105,"v":[[0,2,["H518"]],[2,4,["H3548"]],[4,6,["H7200"]],[6,8,["H2009"]],[8,10,["H5061"]],[10,12,["H3808"]],[12,13,["H6581"]],[13,16,["H899"]],[16,17,["H176"]],[17,20,["H8359"]],[20,21,["H176"]],[21,24,["H6154"]],[24,25,["H176"]],[25,27,["H3605"]],[27,28,["H3627"]],[28,30,["H5785"]]]},{"k":3106,"v":[[0,3,["H3548"]],[3,5,["H6680"]],[5,8,["H3526"]],[8,10,["(H853)"]],[10,11,["H834"]],[11,13,["H5061"]],[13,20,["H5462"]],[20,21,["H7651"]],[21,22,["H3117"]],[22,23,["H8145"]]]},{"k":3107,"v":[[0,3,["H3548"]],[3,6,["H7200","(H853)"]],[6,8,["H5061"]],[8,10,["H310"]],[10,13,["H3526"]],[13,15,["H2009"]],[15,18,["H5061"]],[18,20,["H3808"]],[20,21,["H2015","(H853)"]],[21,23,["H5869"]],[23,26,["H5061"]],[26,28,["H3808"]],[28,29,["H6581"]],[29,30,["H1931"]],[30,32,["H2931"]],[32,35,["H8313"]],[35,39,["H784"]],[39,40,["H1931"]],[40,43,["H6356"]],[43,48,["H7146"]],[48,49,["H176"]],[49,50,["H1372"]]]},{"k":3108,"v":[[0,2,["H518"]],[2,4,["H3548"]],[4,5,["H7200"]],[5,7,["H2009"]],[7,9,["H5061"]],[9,12,["H3544"]],[12,13,["H310"]],[13,15,["H3526"]],[15,21,["H7167"]],[21,24,["H4480"]],[24,26,["H899"]],[26,27,["H176"]],[27,29,["H4480"]],[29,31,["H5785"]],[31,32,["H176"]],[32,34,["H4480"]],[34,36,["H8359"]],[36,37,["H176"]],[37,39,["H4480"]],[39,41,["H6154"]]]},{"k":3109,"v":[[0,2,["H518"]],[2,4,["H7200"]],[4,5,["H5750"]],[5,8,["H899"]],[8,9,["H176"]],[9,12,["H8359"]],[12,13,["H176"]],[13,16,["H6154"]],[16,17,["H176"]],[17,19,["H3605"]],[19,20,["H3627"]],[20,22,["H5785"]],[22,23,["H1931"]],[23,26,["H6524"]],[26,30,["H8313","(H853)"]],[30,32,["H834"]],[32,34,["H5061"]],[34,37,["H784"]]]},{"k":3110,"v":[[0,3,["H899"]],[3,4,["H176"]],[4,5,["H8359"]],[5,6,["H176"]],[6,7,["H6154"]],[7,8,["H176"]],[8,9,["H3605"]],[9,10,["H3627"]],[10,12,["H5785"]],[12,15,["H834"]],[15,18,["H3526"]],[18,21,["H5061"]],[21,23,["H5493"]],[23,24,["H4480"]],[24,30,["H3526"]],[30,33,["H8145"]],[33,37,["H2891"]]]},{"k":3111,"v":[[0,1,["H2063"]],[1,4,["H8451"]],[4,7,["H5061"]],[7,9,["H6883"]],[9,12,["H899"]],[12,14,["H6785"]],[14,15,["H176"]],[15,16,["H6593"]],[16,17,["H176"]],[17,20,["H8359"]],[20,21,["H176"]],[21,22,["H6154"]],[22,23,["H176"]],[23,24,["H3605"]],[24,25,["H3627"]],[25,27,["H5785"]],[27,31,["H2891"]],[31,32,["H176"]],[32,36,["H2930"]]]},{"k":3112,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3113,"v":[[0,1,["H2063"]],[1,3,["H1961"]],[3,5,["H8451"]],[5,8,["H6879"]],[8,11,["H3117"]],[11,14,["H2893"]],[14,18,["H935"]],[18,19,["H413"]],[19,21,["H3548"]]]},{"k":3114,"v":[[0,3,["H3548"]],[3,6,["H3318"]],[6,8,["H413","H4480","H2351"]],[8,10,["H4264"]],[10,13,["H3548"]],[13,15,["H7200"]],[15,17,["H2009"]],[17,20,["H5061"]],[20,22,["H6883"]],[22,24,["H7495"]],[24,25,["H4480"]],[25,27,["H6879"]]]},{"k":3115,"v":[[0,4,["H3548"]],[4,5,["H6680"]],[5,7,["H3947"]],[7,14,["H2891"]],[14,15,["H8147"]],[15,16,["H6833"]],[16,17,["H2416"]],[17,19,["H2889"]],[19,21,["H730"]],[21,22,["H6086"]],[22,24,["H8144","H8438"]],[24,26,["H231"]]]},{"k":3116,"v":[[0,3,["H3548"]],[3,5,["H6680","(H853)"]],[5,7,["H259"]],[7,10,["H6833"]],[10,12,["H7819"]],[12,13,["H413"]],[13,15,["H2789"]],[15,16,["H3627"]],[16,17,["H5921"]],[17,18,["H2416"]],[18,19,["H4325"]]]},{"k":3117,"v":[[0,2,["(H853)"]],[2,4,["H2416"]],[4,5,["H6833"]],[5,8,["H3947"]],[8,12,["H730"]],[12,13,["H6086"]],[13,16,["H8144","H8438"]],[16,19,["H231"]],[19,22,["H2881"]],[22,26,["H2416"]],[26,27,["H6833"]],[27,30,["H1818"]],[30,33,["H6833"]],[33,36,["H7819"]],[36,37,["H5921"]],[37,39,["H2416"]],[39,40,["H4325"]]]},{"k":3118,"v":[[0,4,["H5137"]],[4,5,["H5921"]],[5,11,["H2891"]],[11,12,["H4480"]],[12,14,["H6883"]],[14,15,["H7651"]],[15,16,["H6471"]],[16,21,["H2891"]],[21,24,["(H853)"]],[24,26,["H2416"]],[26,27,["H6833"]],[27,28,["H7971"]],[28,29,["H5921"]],[29,31,["H6440"]],[31,32,["H7704"]]]},{"k":3119,"v":[[0,7,["H2891"]],[7,9,["H3526","(H853)"]],[9,11,["H899"]],[11,14,["H1548","(H853)"]],[14,15,["H3605"]],[15,17,["H8181"]],[17,19,["H7364"]],[19,22,["H4325"]],[22,27,["H2891"]],[27,30,["H310"]],[30,33,["H935"]],[33,34,["H413"]],[34,36,["H4264"]],[36,39,["H3427"]],[39,40,["H4480","H2351"]],[40,44,["H168"]],[44,45,["H7651"]],[45,46,["H3117"]]]},{"k":3120,"v":[[0,4,["H1961"]],[4,7,["H7637"]],[7,8,["H3117"]],[8,16,["H1548","(H853)","H3605","H8181","(H853)"]],[16,18,["H7218"]],[18,21,["H2206"]],[21,24,["H1354","H5869"]],[24,26,["H3605"]],[26,28,["H8181"]],[28,32,["H1548"]],[32,36,["H3526","(H853)"]],[36,38,["H899"]],[38,42,["H7364","(H853)"]],[42,44,["H1320"]],[44,46,["H4325"]],[46,51,["H2891"]]]},{"k":3121,"v":[[0,4,["H8066"]],[4,5,["H3117"]],[5,8,["H3947"]],[8,9,["H8147"]],[9,11,["H3532"]],[11,13,["H8549"]],[13,15,["H259"]],[15,17,["H3535"]],[17,20,["H1323"]],[20,21,["H8141"]],[21,23,["H8549"]],[23,25,["H7969"]],[25,27,["H6241"]],[27,30,["H5560"]],[30,34,["H4503"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,39,["H259"]],[39,40,["H3849"]],[40,42,["H8081"]]]},{"k":3122,"v":[[0,3,["H3548"]],[3,7,["H2891"]],[7,9,["H5975","(H853)"]],[9,11,["H376"]],[11,17,["H2891"]],[17,21,["H6440"]],[21,23,["H3068"]],[23,26,["H6607"]],[26,29,["H168"]],[29,32,["H4150"]]]},{"k":3123,"v":[[0,3,["H3548"]],[3,5,["H3947","(H853)"]],[5,6,["H259"]],[6,8,["H3532"]],[8,10,["H7126"]],[10,15,["H817"]],[15,18,["H3849"]],[18,20,["H8081"]],[20,22,["H5130"]],[22,27,["H8573"]],[27,28,["H6440"]],[28,30,["H3068"]]]},{"k":3124,"v":[[0,4,["H7819","(H853)"]],[4,6,["H3532"]],[6,9,["H4725"]],[9,10,["H834"]],[10,13,["H7819","(H853)"]],[13,16,["H2403"]],[16,20,["H5930"]],[20,23,["H6944"]],[23,24,["H4725"]],[24,25,["H3588"]],[25,29,["H2403"]],[29,32,["H3548"]],[32,37,["H817"]],[37,38,["H1931"]],[38,41,["H6944","H6944"]]]},{"k":3125,"v":[[0,3,["H3548"]],[3,5,["H3947"]],[5,9,["H4480","H1818"]],[9,13,["H817"]],[13,16,["H3548"]],[16,18,["H5414"]],[18,20,["H5921"]],[20,22,["H8571"]],[22,25,["H3233"]],[25,26,["H241"]],[26,33,["H2891"]],[33,35,["H5921"]],[35,37,["H931"]],[37,40,["H3233"]],[40,41,["H3027"]],[41,43,["H5921"]],[43,46,["H931"]],[46,49,["H3233"]],[49,50,["H7272"]]]},{"k":3126,"v":[[0,3,["H3548"]],[3,5,["H3947"]],[5,9,["H4480","H3849"]],[9,11,["H8081"]],[11,13,["H3332"]],[13,15,["H5921"]],[15,17,["H3709"]],[17,20,["H3548"]],[20,22,["H8042"]]]},{"k":3127,"v":[[0,3,["H3548"]],[3,5,["H2881","(H853)"]],[5,7,["H3233"]],[7,8,["H676"]],[8,9,["H4480"]],[9,11,["H8081"]],[11,12,["H834"]],[12,14,["H5921"]],[14,16,["H8042"]],[16,17,["H3709"]],[17,20,["H5137"]],[20,21,["H4480"]],[21,23,["H8081"]],[23,26,["H676"]],[26,27,["H7651"]],[27,28,["H6471"]],[28,29,["H6440"]],[29,31,["H3068"]]]},{"k":3128,"v":[[0,4,["H4480","H3499"]],[4,7,["H8081"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H3709"]],[12,15,["H3548"]],[15,16,["H5414"]],[16,17,["H5921"]],[17,19,["H8571"]],[19,22,["H3233"]],[22,23,["H241"]],[23,30,["H2891"]],[30,32,["H5921"]],[32,34,["H931"]],[34,37,["H3233"]],[37,38,["H3027"]],[38,40,["H5921"]],[40,43,["H931"]],[43,46,["H3233"]],[46,47,["H7272"]],[47,48,["H5921"]],[48,50,["H1818"]],[50,54,["H817"]]]},{"k":3129,"v":[[0,3,["H3498"]],[3,6,["H8081"]],[6,7,["H834"]],[7,9,["H5921"]],[9,11,["H3548"]],[11,12,["H3709"]],[12,15,["H5414"]],[15,16,["H5921"]],[16,18,["H7218"]],[18,25,["H2891"]],[25,28,["H3548"]],[28,32,["H3722"]],[32,33,["H5921"]],[33,35,["H6440"]],[35,37,["H3068"]]]},{"k":3130,"v":[[0,3,["H3548"]],[3,5,["H6213","(H853)"]],[5,8,["H2403"]],[8,12,["H3722"]],[12,13,["H5921"]],[13,19,["H2891"]],[19,22,["H4480","H2932"]],[22,24,["H310"]],[24,27,["H7819","(H853)"]],[27,30,["H5930"]]]},{"k":3131,"v":[[0,3,["H3548"]],[3,5,["H5927","(H853)"]],[5,8,["H5930"]],[8,12,["H4503"]],[12,15,["H4196"]],[15,18,["H3548"]],[18,22,["H3722"]],[22,23,["H5921"]],[23,29,["H2891"]]]},{"k":3132,"v":[[0,2,["H518"]],[2,3,["H1931"]],[3,5,["H1800"]],[5,10,["H369","H3027","H5381"]],[10,14,["H3947"]],[14,15,["H259"]],[15,16,["H3532"]],[16,20,["H817"]],[20,23,["H8573"]],[23,27,["H3722"]],[27,28,["H5921"]],[28,31,["H259"]],[31,33,["H6241"]],[33,36,["H5560"]],[36,37,["H1101"]],[37,39,["H8081"]],[39,43,["H4503"]],[43,46,["H3849"]],[46,48,["H8081"]]]},{"k":3133,"v":[[0,2,["H8147"]],[2,3,["H8449"]],[3,4,["H176"]],[4,5,["H8147"]],[5,6,["H1121"]],[6,7,["H3123"]],[7,9,["H834"]],[9,14,["H5381","H3027"]],[14,17,["H259"]],[17,19,["H1961"]],[19,22,["H2403"]],[22,25,["H259"]],[25,28,["H5930"]]]},{"k":3134,"v":[[0,4,["H935"]],[4,8,["H8066"]],[8,9,["H3117"]],[9,12,["H2893"]],[12,13,["H413"]],[13,15,["H3548"]],[15,16,["H413"]],[16,18,["H6607"]],[18,21,["H168"]],[21,24,["H4150"]],[24,25,["H6440"]],[25,27,["H3068"]]]},{"k":3135,"v":[[0,3,["H3548"]],[3,5,["H3947","(H853)"]],[5,7,["H3532"]],[7,11,["H817"]],[11,14,["H3849"]],[14,16,["H8081"]],[16,19,["H3548"]],[19,21,["H5130"]],[21,26,["H8573"]],[26,27,["H6440"]],[27,29,["H3068"]]]},{"k":3136,"v":[[0,4,["H7819","(H853)"]],[4,6,["H3532"]],[6,10,["H817"]],[10,13,["H3548"]],[13,15,["H3947"]],[15,19,["H4480","H1818"]],[19,23,["H817"]],[23,25,["H5414"]],[25,27,["H5921"]],[27,29,["H8571"]],[29,32,["H3233"]],[32,33,["H241"]],[33,40,["H2891"]],[40,42,["H5921"]],[42,44,["H931"]],[44,47,["H3233"]],[47,48,["H3027"]],[48,50,["H5921"]],[50,53,["H931"]],[53,56,["H3233"]],[56,57,["H7272"]]]},{"k":3137,"v":[[0,3,["H3548"]],[3,5,["H3332"]],[5,6,["H4480"]],[6,8,["H8081"]],[8,9,["H5921"]],[9,11,["H3709"]],[11,14,["H3548"]],[14,16,["H8042"]]]},{"k":3138,"v":[[0,3,["H3548"]],[3,5,["H5137"]],[5,8,["H3233"]],[8,9,["H676"]],[9,11,["H4480"]],[11,13,["H8081"]],[13,14,["H834"]],[14,16,["H5921"]],[16,18,["H8042"]],[18,19,["H3709"]],[19,20,["H7651"]],[20,21,["H6471"]],[21,22,["H6440"]],[22,24,["H3068"]]]},{"k":3139,"v":[[0,3,["H3548"]],[3,5,["H5414"]],[5,6,["H4480"]],[6,8,["H8081"]],[8,9,["H834"]],[9,11,["H5921"]],[11,13,["H3709"]],[13,14,["H5921"]],[14,16,["H8571"]],[16,19,["H3233"]],[19,20,["H241"]],[20,27,["H2891"]],[27,29,["H5921"]],[29,31,["H931"]],[31,34,["H3233"]],[34,35,["H3027"]],[35,37,["H5921"]],[37,40,["H931"]],[40,43,["H3233"]],[43,44,["H7272"]],[44,45,["H5921"]],[45,47,["H4725"]],[47,50,["H1818"]],[50,54,["H817"]]]},{"k":3140,"v":[[0,3,["H3498"]],[3,4,["H4480"]],[4,6,["H8081"]],[6,7,["H834"]],[7,9,["H5921"]],[9,11,["H3548"]],[11,12,["H3709"]],[12,15,["H5414"]],[15,16,["H5921"]],[16,18,["H7218"]],[18,25,["H2891"]],[25,29,["H3722"]],[29,30,["H5921"]],[30,32,["H6440"]],[32,34,["H3068"]]]},{"k":3141,"v":[[0,4,["H6213","(H853)"]],[4,6,["H259"]],[6,7,["H4480"]],[7,9,["H8449"]],[9,10,["H176"]],[10,11,["H4480"]],[11,13,["H1121"]],[13,14,["H3123"]],[14,16,["H4480","H834"]],[16,19,["H5381","H3027"]]]},{"k":3142,"v":[[0,1,["(H853)"]],[1,3,["H834"]],[3,8,["H5381","H3027","(H853)"]],[8,10,["H259"]],[10,14,["H2403"]],[14,17,["H259"]],[17,21,["H5930"]],[21,22,["H5921"]],[22,25,["H4503"]],[25,28,["H3548"]],[28,32,["H3722"]],[32,33,["H5921"]],[33,39,["H2891"]],[39,40,["H6440"]],[40,42,["H3068"]]]},{"k":3143,"v":[[0,1,["H2063"]],[1,4,["H8451"]],[4,8,["H834"]],[8,11,["H5061"]],[11,13,["H6883"]],[13,14,["H834"]],[14,15,["H3027"]],[15,17,["H3808"]],[17,20,["H5381"]],[20,26,["H2893"]]]},{"k":3144,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H559"]]]},{"k":3145,"v":[[0,1,["H3588"]],[1,4,["H935"]],[4,5,["H413"]],[5,7,["H776"]],[7,9,["H3667"]],[9,10,["H834"]],[10,11,["H589"]],[11,12,["H5414"]],[12,17,["H272"]],[17,20,["H5414"]],[20,22,["H5061"]],[22,24,["H6883"]],[24,27,["H1004"]],[27,30,["H776"]],[30,33,["H272"]]]},{"k":3146,"v":[[0,4,["H834"]],[4,6,["H1004"]],[6,8,["H935"]],[8,10,["H5046"]],[10,12,["H3548"]],[12,13,["H559"]],[13,15,["H7200"]],[15,24,["H5061"]],[24,27,["H1004"]]]},{"k":3147,"v":[[0,3,["H3548"]],[3,5,["H6680"]],[5,8,["H6437","(H853)"]],[8,10,["H1004"]],[10,11,["H2962"]],[11,13,["H3548"]],[13,14,["H935"]],[14,18,["H7200","(H853)"]],[18,20,["H5061"]],[20,22,["H3605"]],[22,23,["H834"]],[23,27,["H1004"]],[27,29,["H3808"]],[29,31,["H2930"]],[31,33,["H310","H3651"]],[33,35,["H3548"]],[35,38,["H935"]],[38,40,["H7200","(H853)"]],[40,42,["H1004"]]]},{"k":3148,"v":[[0,5,["H7200","(H853)"]],[5,7,["H5061"]],[7,9,["H2009"]],[9,12,["H5061"]],[12,16,["H7023"]],[16,19,["H1004"]],[19,22,["H8258"]],[22,23,["H3422"]],[23,24,["H176"]],[24,25,["H125"]],[25,28,["H4758"]],[28,30,["H8217"]],[30,31,["H4480"]],[31,33,["H7023"]]]},{"k":3149,"v":[[0,3,["H3548"]],[3,6,["H3318"]],[6,7,["H4480"]],[7,9,["H1004"]],[9,10,["H413"]],[10,12,["H6607"]],[12,15,["H1004"]],[15,18,["H5462","(H853)"]],[18,20,["H1004"]],[20,21,["H7651"]],[21,22,["H3117"]]]},{"k":3150,"v":[[0,3,["H3548"]],[3,6,["H7725"]],[6,8,["H7637"]],[8,9,["H3117"]],[9,12,["H7200"]],[12,14,["H2009"]],[14,17,["H5061"]],[17,19,["H6581"]],[19,22,["H7023"]],[22,25,["H1004"]]]},{"k":3151,"v":[[0,3,["H3548"]],[3,5,["H6680"]],[5,9,["H2502","(H853)"]],[9,11,["H68"]],[11,13,["H834","H2004"]],[13,15,["H5061"]],[15,20,["H7993"]],[20,22,["H413"]],[22,24,["H2931"]],[24,25,["H4725"]],[25,26,["H4480","H2351","H413"]],[26,28,["H5892"]]]},{"k":3152,"v":[[0,6,["H1004"]],[6,9,["H7106"]],[9,10,["H4480","H1004"]],[10,12,["H5439"]],[12,17,["H8210","(H853)"]],[17,19,["H6083"]],[19,20,["H834"]],[20,23,["H7096"]],[23,24,["H413","H4480","H2351"]],[24,26,["H5892"]],[26,27,["H413"]],[27,29,["H2931"]],[29,30,["H4725"]]]},{"k":3153,"v":[[0,4,["H3947"]],[4,5,["H312"]],[5,6,["H68"]],[6,8,["H935"]],[8,10,["H413"]],[10,12,["H8478"]],[12,15,["H68"]],[15,19,["H3947"]],[19,20,["H312"]],[20,21,["H6083"]],[21,24,["H2902","(H853)"]],[24,26,["H1004"]]]},{"k":3154,"v":[[0,2,["H518"]],[2,4,["H5061"]],[4,6,["H7725"]],[6,9,["H6524"]],[9,12,["H1004"]],[12,14,["H310"]],[14,18,["H2502","(H853)"]],[18,20,["H68"]],[20,22,["H310"]],[22,25,["H7096","(H853)"]],[25,27,["H1004"]],[27,29,["H310"]],[29,32,["H2902"]]]},{"k":3155,"v":[[0,3,["H3548"]],[3,5,["H935"]],[5,7,["H7200"]],[7,9,["H2009"]],[9,12,["H5061"]],[12,14,["H6581"]],[14,17,["H1004"]],[17,18,["H1931"]],[18,21,["H3992"]],[21,22,["H6883"]],[22,25,["H1004"]],[25,26,["H1931"]],[26,28,["H2931"]]]},{"k":3156,"v":[[0,5,["H5422","(H853)"]],[5,7,["H1004","(H853)"]],[7,9,["H68"]],[9,14,["H6086"]],[14,17,["H3605"]],[17,19,["H6083"]],[19,22,["H1004"]],[22,28,["H3318"]],[28,30,["H413","H4480","H2351"]],[30,32,["H5892"]],[32,33,["H413"]],[33,35,["H2931"]],[35,36,["H4725"]]]},{"k":3157,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H1004"]],[7,8,["H3605"]],[8,10,["H3117"]],[10,15,["H5462"]],[15,18,["H2930"]],[18,19,["H5704"]],[19,21,["H6153"]]]},{"k":3158,"v":[[0,4,["H7901"]],[4,7,["H1004"]],[7,9,["H3526","(H853)"]],[9,11,["H899"]],[11,15,["H398"]],[15,18,["H1004"]],[18,20,["H3526","(H853)"]],[20,22,["H899"]]]},{"k":3159,"v":[[0,2,["H518"]],[2,4,["H3548"]],[4,7,["H935","H935"]],[7,9,["H7200"]],[9,13,["H2009"]],[13,15,["H5061"]],[15,17,["H3808"]],[17,18,["H6581"]],[18,21,["H1004"]],[21,22,["H310","(H853)"]],[22,24,["H1004"]],[24,26,["H2902"]],[26,29,["H3548"]],[29,34,["H2891","(H853)","H1004"]],[34,35,["H3588"]],[35,37,["H5061"]],[37,39,["H7495"]]]},{"k":3160,"v":[[0,4,["H3947"]],[4,6,["H2398","(H853)"]],[6,8,["H1004"]],[8,9,["H8147"]],[9,10,["H6833"]],[10,12,["H730"]],[12,13,["H6086"]],[13,15,["H8144","H8438"]],[15,17,["H231"]]]},{"k":3161,"v":[[0,4,["H7819","(H853)"]],[4,6,["H259"]],[6,9,["H6833"]],[9,10,["H413"]],[10,12,["H2789"]],[12,13,["H3627"]],[13,14,["H5921"]],[14,15,["H2416"]],[15,16,["H4325"]]]},{"k":3162,"v":[[0,4,["H3947","(H853)"]],[4,6,["H730"]],[6,7,["H6086"]],[7,10,["H231"]],[10,13,["H8144","H8438"]],[13,16,["H2416"]],[16,17,["H6833"]],[17,19,["H2881"]],[19,23,["H1818"]],[23,26,["H7819"]],[26,27,["H6833"]],[27,31,["H2416"]],[31,32,["H4325"]],[32,34,["H5137","H413"]],[34,36,["H1004"]],[36,37,["H7651"]],[37,38,["H6471"]]]},{"k":3163,"v":[[0,4,["H2398","(H853)"]],[4,6,["H1004"]],[6,9,["H1818"]],[9,12,["H6833"]],[12,16,["H2416"]],[16,17,["H4325"]],[17,21,["H2416"]],[21,22,["H6833"]],[22,26,["H730"]],[26,27,["H6086"]],[27,31,["H231"]],[31,35,["H8144","H8438"]]]},{"k":3164,"v":[[0,5,["H7971","(H853)"]],[5,7,["H2416"]],[7,8,["H6833"]],[8,10,["H413","H4480","H2351"]],[10,12,["H5892"]],[12,13,["H413"]],[13,15,["H6440"]],[15,16,["H7704"]],[16,20,["H3722"]],[20,21,["H5921"]],[21,23,["H1004"]],[23,28,["H2891"]]]},{"k":3165,"v":[[0,1,["H2063"]],[1,4,["H8451"]],[4,7,["H3605"]],[7,9,["H5061"]],[9,11,["H6883"]],[11,13,["H5424"]]]},{"k":3166,"v":[[0,4,["H6883"]],[4,7,["H899"]],[7,11,["H1004"]]]},{"k":3167,"v":[[0,4,["H7613"]],[4,8,["H5597"]],[8,13,["H934"]]]},{"k":3168,"v":[[0,2,["H3384"]],[2,3,["H3117"]],[3,6,["H2931"]],[6,8,["H3117"]],[8,11,["H2889"]],[11,12,["H2063"]],[12,15,["H8451"]],[15,17,["H6883"]]]},{"k":3169,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H559"]]]},{"k":3170,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H3588"]],[11,13,["H376","H376"]],[13,14,["H1961"]],[14,17,["H2100"]],[17,21,["H4480","H1320"]],[21,25,["H2101"]],[25,26,["H1931"]],[26,28,["H2931"]]]},{"k":3171,"v":[[0,2,["H2063"]],[2,4,["H1961"]],[4,6,["H2932"]],[6,9,["H2101"]],[9,12,["H1320"]],[12,13,["H7325"]],[13,14,["H854"]],[14,16,["H2101"]],[16,17,["H176"]],[17,19,["H1320"]],[19,21,["H2856"]],[21,24,["H4480","H2101"]],[24,25,["H1931"]],[25,28,["H2932"]]]},{"k":3172,"v":[[0,1,["H3605"]],[1,2,["H4904"]],[2,3,["H834","H5921"]],[3,5,["H7901"]],[5,9,["H2100"]],[9,11,["H2930"]],[11,13,["H3605"]],[13,14,["H3627"]],[14,15,["H834","H5921"]],[15,17,["H3427"]],[17,20,["H2930"]]]},{"k":3173,"v":[[0,2,["H376","H834"]],[2,3,["H5060"]],[3,5,["H4904"]],[5,7,["H3526"]],[7,9,["H899"]],[9,11,["H7364"]],[11,14,["H4325"]],[14,17,["H2930"]],[17,18,["H5704"]],[18,20,["H6153"]]]},{"k":3174,"v":[[0,4,["H3427"]],[4,5,["H5921"]],[5,7,["H3627"]],[7,8,["H834","H5921"]],[8,10,["H3427"]],[10,14,["H2100"]],[14,16,["H3526"]],[16,18,["H899"]],[18,20,["H7364"]],[20,23,["H4325"]],[23,26,["H2930"]],[26,27,["H5704"]],[27,29,["H6153"]]]},{"k":3175,"v":[[0,4,["H5060"]],[4,6,["H1320"]],[6,12,["H2100"]],[12,14,["H3526"]],[14,16,["H899"]],[16,18,["H7364"]],[18,21,["H4325"]],[21,24,["H2930"]],[24,25,["H5704"]],[25,27,["H6153"]]]},{"k":3176,"v":[[0,2,["H3588"]],[2,7,["H2100"]],[7,8,["H7556"]],[8,13,["H2889"]],[13,17,["H3526"]],[17,19,["H899"]],[19,21,["H7364"]],[21,24,["H4325"]],[24,27,["H2930"]],[27,28,["H5704"]],[28,30,["H6153"]]]},{"k":3177,"v":[[0,4,["H3605","H4817","H834"]],[4,6,["H7392"]],[6,7,["H5921"]],[7,11,["H2100"]],[11,14,["H2930"]]]},{"k":3178,"v":[[0,2,["H3605"]],[2,3,["H5060"]],[3,5,["H3605"]],[5,6,["H834"]],[6,7,["H1961"]],[7,8,["H8478"]],[8,12,["H2930"]],[12,13,["H5704"]],[13,15,["H6153"]],[15,19,["H5375"]],[19,25,["H3526"]],[25,27,["H899"]],[27,29,["H7364"]],[29,32,["H4325"]],[32,35,["H2930"]],[35,36,["H5704"]],[36,38,["H6153"]]]},{"k":3179,"v":[[0,2,["H3605","H834"]],[2,4,["H5060"]],[4,8,["H2100"]],[8,11,["H3808"]],[11,12,["H7857"]],[12,14,["H3027"]],[14,16,["H4325"]],[16,19,["H3526"]],[19,21,["H899"]],[21,23,["H7364"]],[23,26,["H4325"]],[26,29,["H2930"]],[29,30,["H5704"]],[30,32,["H6153"]]]},{"k":3180,"v":[[0,3,["H3627"]],[3,5,["H2789"]],[5,6,["H834"]],[6,8,["H5060"]],[8,12,["H2100"]],[12,15,["H7665"]],[15,17,["H3605"]],[17,18,["H3627"]],[18,20,["H6086"]],[20,23,["H7857"]],[23,25,["H4325"]]]},{"k":3181,"v":[[0,2,["H3588"]],[2,7,["H2100"]],[7,9,["H2891"]],[9,12,["H4480","H2101"]],[12,16,["H5608"]],[16,19,["H7651"]],[19,20,["H3117"]],[20,23,["H2893"]],[23,25,["H3526"]],[25,27,["H899"]],[27,29,["H7364"]],[29,31,["H1320"]],[31,33,["H2416"]],[33,34,["H4325"]],[34,38,["H2891"]]]},{"k":3182,"v":[[0,4,["H8066"]],[4,5,["H3117"]],[5,8,["H3947"]],[8,11,["H8147"]],[11,12,["H8449"]],[12,13,["H176"]],[13,14,["H8147"]],[14,15,["H1121"]],[15,16,["H3123"]],[16,18,["H935"]],[18,19,["H6440"]],[19,21,["H3068"]],[21,22,["H413"]],[22,24,["H6607"]],[24,27,["H168"]],[27,30,["H4150"]],[30,32,["H5414"]],[32,34,["H413"]],[34,36,["H3548"]]]},{"k":3183,"v":[[0,3,["H3548"]],[3,5,["H6213"]],[5,8,["H259"]],[8,12,["H2403"]],[12,15,["H259"]],[15,19,["H5930"]],[19,22,["H3548"]],[22,26,["H3722"]],[26,27,["H5921"]],[27,29,["H6440"]],[29,31,["H3068"]],[31,34,["H4480","H2101"]]]},{"k":3184,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H2233"]],[5,7,["H7902"]],[7,9,["H3318"]],[9,10,["H4480"]],[10,15,["H7364","(H853)"]],[15,16,["H3605"]],[16,18,["H1320"]],[18,20,["H4325"]],[20,23,["H2930"]],[23,24,["H5704"]],[24,26,["H6153"]]]},{"k":3185,"v":[[0,2,["H3605"]],[2,3,["H899"]],[3,5,["H3605"]],[5,6,["H5785"]],[6,7,["H834","H5921"]],[7,8,["H1961"]],[8,10,["H2233"]],[10,12,["H7902"]],[12,15,["H3526"]],[15,17,["H4325"]],[17,20,["H2930"]],[20,21,["H5704"]],[21,23,["H6153"]]]},{"k":3186,"v":[[0,2,["H802"]],[2,5,["H834","(H853)"]],[5,6,["H376"]],[6,8,["H7901"]],[8,10,["H2233"]],[10,12,["H7902"]],[12,16,["H7364"]],[16,19,["H4325"]],[19,22,["H2930"]],[22,23,["H5704"]],[23,25,["H6153"]]]},{"k":3187,"v":[[0,2,["H3588"]],[2,4,["H802"]],[4,5,["H1961"]],[5,7,["H2100"]],[7,10,["H2101"]],[10,13,["H1320"]],[13,14,["H1961"]],[14,15,["H1818"]],[15,18,["H1961"]],[18,20,["H5079"]],[20,21,["H7651"]],[21,22,["H3117"]],[22,24,["H3605"]],[24,25,["H5060"]],[25,29,["H2930"]],[29,30,["H5704"]],[30,32,["H6153"]]]},{"k":3188,"v":[[0,3,["H3605"]],[3,4,["H834"]],[4,6,["H7901"]],[6,7,["H5921"]],[7,10,["H5079"]],[10,13,["H2930"]],[13,15,["H3605"]],[15,17,["H834"]],[17,19,["H3427"]],[19,20,["H5921"]],[20,23,["H2930"]]]},{"k":3189,"v":[[0,2,["H3605"]],[2,3,["H5060"]],[3,5,["H4904"]],[5,7,["H3526"]],[7,9,["H899"]],[9,11,["H7364"]],[11,14,["H4325"]],[14,17,["H2930"]],[17,18,["H5704"]],[18,20,["H6153"]]]},{"k":3190,"v":[[0,2,["H3605"]],[2,3,["H5060"]],[3,4,["H3605"]],[4,5,["H3627"]],[5,6,["H834"]],[6,8,["H3427"]],[8,9,["H5921"]],[9,11,["H3526"]],[11,13,["H899"]],[13,15,["H7364"]],[15,18,["H4325"]],[18,21,["H2930"]],[21,22,["H5704"]],[22,24,["H6153"]]]},{"k":3191,"v":[[0,2,["H518"]],[2,3,["H1931"]],[3,5,["H5921"]],[5,7,["H4904"]],[7,8,["H176"]],[8,9,["H5921"]],[9,11,["H3627"]],[11,12,["H834","H5921"]],[12,13,["H1931"]],[13,14,["H3427"]],[14,17,["H5060"]],[17,22,["H2930"]],[22,23,["H5704"]],[23,25,["H6153"]]]},{"k":3192,"v":[[0,2,["H518"]],[2,4,["H376"]],[4,9,["H7901","H7901","(H853)"]],[9,12,["H5079"]],[12,13,["H1961"]],[13,14,["H5921"]],[14,19,["H2930"]],[19,20,["H7651"]],[20,21,["H3117"]],[21,23,["H3605"]],[23,25,["H4904"]],[25,26,["H834","H5921"]],[26,28,["H7901"]],[28,31,["H2930"]]]},{"k":3193,"v":[[0,2,["H3588"]],[2,4,["H802"]],[4,7,["H2100","H2101"]],[7,10,["H1818"]],[10,11,["H7227"]],[11,12,["H3117"]],[12,14,["H3808"]],[14,16,["H6256"]],[16,19,["H5079"]],[19,20,["H176"]],[20,21,["H3588"]],[21,23,["H2100"]],[23,24,["H5921"]],[24,29,["H5079"]],[29,30,["H3605"]],[30,32,["H3117"]],[32,35,["H2101"]],[35,38,["H2932"]],[38,40,["H1961"]],[40,43,["H3117"]],[43,46,["H5079"]],[46,47,["H1931"]],[47,50,["H2931"]]]},{"k":3194,"v":[[0,1,["H3605"]],[1,2,["H4904"]],[2,3,["H834","H5921"]],[3,5,["H7901"]],[5,6,["H3605"]],[6,8,["H3117"]],[8,11,["H2101"]],[11,13,["H1961"]],[13,18,["H4904"]],[18,21,["H5079"]],[21,23,["H3605","H3627"]],[23,25,["H3427"]],[25,26,["H834","H5921"]],[26,28,["H1961"]],[28,29,["H2931"]],[29,32,["H2932"]],[32,35,["H5079"]]]},{"k":3195,"v":[[0,2,["H3605"]],[2,3,["H5060"]],[3,8,["H2930"]],[8,11,["H3526"]],[11,13,["H899"]],[13,15,["H7364"]],[15,18,["H4325"]],[18,21,["H2930"]],[21,22,["H5704"]],[22,24,["H6153"]]]},{"k":3196,"v":[[0,2,["H518"]],[2,5,["H2891"]],[5,8,["H4480","H2101"]],[8,12,["H5608"]],[12,15,["H7651"]],[15,16,["H3117"]],[16,19,["H310"]],[19,23,["H2891"]]]},{"k":3197,"v":[[0,4,["H8066"]],[4,5,["H3117"]],[5,8,["H3947"]],[8,11,["H8147"]],[11,12,["H8449"]],[12,13,["H176"]],[13,14,["H8147"]],[14,15,["H1121"]],[15,16,["H3123"]],[16,18,["H935"]],[18,20,["H413"]],[20,22,["H3548"]],[22,23,["H413"]],[23,25,["H6607"]],[25,28,["H168"]],[28,31,["H4150"]]]},{"k":3198,"v":[[0,3,["H3548"]],[3,5,["H6213","(H853)"]],[5,7,["H259"]],[7,11,["H2403"]],[11,14,["H259"]],[14,18,["H5930"]],[18,21,["H3548"]],[21,25,["H3722"]],[25,26,["H5921"]],[26,28,["H6440"]],[28,30,["H3068"]],[30,33,["H4480","H2101"]],[33,36,["H2932"]]]},{"k":3199,"v":[[0,4,["H5144","(H853)"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,11,["H4480","H2932"]],[11,14,["H4191"]],[14,15,["H3808"]],[15,18,["H2932"]],[18,21,["H2930","(H853)"]],[21,23,["H4908"]],[23,24,["H834"]],[24,26,["H8432"]],[26,27,[]]]},{"k":3200,"v":[[0,1,["H2063"]],[1,4,["H8451"]],[4,10,["H2100"]],[10,14,["H834"]],[14,15,["H7902","H2233"]],[15,16,["H3318"]],[16,17,["H4480"]],[17,21,["H2930"]],[21,22,[]]]},{"k":3201,"v":[[0,6,["H1739"]],[6,9,["H5079"]],[9,16,["H2100","(H853)","H2101"]],[16,19,["H2145"]],[19,23,["H5347"]],[23,26,["H376"]],[26,27,["H834"]],[27,28,["H7901"]],[28,29,["H5973"]],[29,33,["H2931"]]]},{"k":3202,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H310"]],[7,9,["H4194"]],[9,12,["H8147"]],[12,13,["H1121"]],[13,15,["H175"]],[15,18,["H7126"]],[18,19,["H6440"]],[19,21,["H3068"]],[21,23,["H4191"]]]},{"k":3203,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H1696"]],[7,8,["H413"]],[8,9,["H175"]],[9,11,["H251"]],[11,14,["H935"]],[14,15,["H408"]],[15,17,["H3605"]],[17,18,["H6256"]],[18,19,["H413"]],[19,21,["H6944"]],[21,23,["H4480","H1004"]],[23,25,["H6532"]],[25,26,["H413","H6440"]],[26,29,["H3727"]],[29,30,["H834"]],[30,32,["H5921"]],[32,34,["H727"]],[34,37,["H4191"]],[37,38,["H3808"]],[38,39,["H3588"]],[39,42,["H7200"]],[42,45,["H6051"]],[45,46,["H5921"]],[46,49,["H3727"]]]},{"k":3204,"v":[[0,1,["H2063"]],[1,3,["H175"]],[3,4,["H935"]],[4,5,["H413"]],[5,7,["H6944"]],[7,11,["H1121","H1241"]],[11,12,["H6499"]],[12,16,["H2403"]],[16,19,["H352"]],[19,23,["H5930"]]]},{"k":3205,"v":[[0,4,["H3847"]],[4,6,["H6944"]],[6,7,["H906"]],[7,8,["H3801"]],[8,12,["H1961"]],[12,14,["H906"]],[14,15,["H4370"]],[15,16,["H5921"]],[16,18,["H1320"]],[18,22,["H2296"]],[22,25,["H906"]],[25,26,["H73"]],[26,30,["H906"]],[30,31,["H4701"]],[31,35,["H6801"]],[35,36,["H1992"]],[36,38,["H6944"]],[38,39,["H899"]],[39,43,["H7364","(H853)"]],[43,45,["H1320"]],[45,47,["H4325"]],[47,52,["H3847"]]]},{"k":3206,"v":[[0,4,["H3947"]],[4,5,["H4480","H854"]],[5,7,["H5712"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,13,["H8147"]],[13,14,["H8163"]],[14,17,["H5795"]],[17,21,["H2403"]],[21,23,["H259"]],[23,24,["H352"]],[24,28,["H5930"]]]},{"k":3207,"v":[[0,2,["H175"]],[2,4,["H7126","(H853)"]],[4,6,["H6499"]],[6,10,["H2403"]],[10,11,["H834"]],[11,18,["H3722"]],[18,19,["H1157"]],[19,22,["H1157"]],[22,24,["H1004"]]]},{"k":3208,"v":[[0,4,["H3947","(H853)"]],[4,6,["H8147"]],[6,7,["H8163"]],[7,9,["H5975"]],[9,11,["H6440"]],[11,13,["H3068"]],[13,16,["H6607"]],[16,19,["H168"]],[19,22,["H4150"]]]},{"k":3209,"v":[[0,2,["H175"]],[2,4,["H5414"]],[4,5,["H1486"]],[5,6,["H5921"]],[6,8,["H8147"]],[8,9,["H8163"]],[9,10,["H259"]],[10,11,["H1486"]],[11,14,["H3068"]],[14,17,["H259"]],[17,18,["H1486"]],[18,21,["H5799"]]]},{"k":3210,"v":[[0,2,["H175"]],[2,4,["H7126","(H853)"]],[4,6,["H8163"]],[6,7,["H5921"]],[7,8,["H834"]],[8,10,["H3068"]],[10,11,["H1486"]],[11,12,["H5927"]],[12,14,["H6213"]],[14,19,["H2403"]]]},{"k":3211,"v":[[0,3,["H8163"]],[3,4,["H5921"]],[4,5,["H834"]],[5,7,["H1486"]],[7,8,["H5927"]],[8,12,["H5799"]],[12,15,["H5975"]],[15,16,["H2416"]],[16,17,["H6440"]],[17,19,["H3068"]],[19,23,["H3722"]],[23,24,["H5921"]],[24,30,["H7971","(H853)"]],[30,33,["H5799"]],[33,36,["H4057"]]]},{"k":3212,"v":[[0,2,["H175"]],[2,4,["H7126","(H853)"]],[4,6,["H6499"]],[6,10,["H2403"]],[10,11,["H834"]],[11,19,["H3722"]],[19,20,["H1157"]],[20,23,["H1157"]],[23,25,["H1004"]],[25,28,["H7819","(H853)"]],[28,30,["H6499"]],[30,34,["H2403"]],[34,35,["H834"]],[35,38,[]]]},{"k":3213,"v":[[0,4,["H3947"]],[4,6,["H4289"]],[6,7,["H4393"]],[7,10,["H1513"]],[10,12,["H784"]],[12,14,["H4480","H5921"]],[14,16,["H4196"]],[16,17,["H4480","H6440"]],[17,19,["H3068"]],[19,22,["H2651"]],[22,23,["H4393"]],[23,25,["H5561"]],[25,26,["H7004"]],[26,28,["H1851"]],[28,30,["H935"]],[30,32,["H4480","H1004"]],[32,34,["H6532"]]]},{"k":3214,"v":[[0,4,["H5414","(H853)"]],[4,6,["H7004"]],[6,7,["H5921"]],[7,9,["H784"]],[9,10,["H6440"]],[10,12,["H3068"]],[12,15,["H6051"]],[15,18,["H7004"]],[18,20,["H3680","(H853)"]],[20,23,["H3727"]],[23,24,["H834"]],[24,26,["H5921"]],[26,28,["H5715"]],[28,31,["H4191"]],[31,32,["H3808"]]]},{"k":3215,"v":[[0,4,["H3947"]],[4,7,["H4480","H1818"]],[7,10,["H6499"]],[10,12,["H5137"]],[12,16,["H676"]],[16,17,["H5921","H6440"]],[17,20,["H3727"]],[20,21,["H6924"]],[21,23,["H6440"]],[23,26,["H3727"]],[26,29,["H5137"]],[29,30,["H4480"]],[30,32,["H1818"]],[32,35,["H676"]],[35,36,["H7651"]],[36,37,["H6471"]]]},{"k":3216,"v":[[0,4,["H7819","(H853)"]],[4,6,["H8163"]],[6,10,["H2403"]],[10,11,["H834"]],[11,15,["H5971"]],[15,17,["H935","(H853)"]],[17,19,["H1818"]],[19,20,["H413","H4480","H1004"]],[20,22,["H6532"]],[22,24,["H6213"]],[24,25,["H854"]],[25,27,["H1818"]],[27,28,["H834"]],[28,30,["H6213"]],[30,33,["H1818"]],[33,36,["H6499"]],[36,38,["H5137"]],[38,40,["H5921"]],[40,43,["H3727"]],[43,45,["H6440"]],[45,48,["H3727"]]]},{"k":3217,"v":[[0,6,["H3722"]],[6,7,["H5921"]],[7,9,["H6944"]],[9,14,["H4480","H2932"]],[14,17,["H1121"]],[17,19,["H3478"]],[19,24,["H4480","H6588"]],[24,26,["H3605"]],[26,28,["H2403"]],[28,30,["H3651"]],[30,33,["H6213"]],[33,36,["H168"]],[36,39,["H4150"]],[39,41,["H7931"]],[41,42,["H854"]],[42,46,["H8432"]],[46,49,["H2932"]]]},{"k":3218,"v":[[0,4,["H1961"]],[4,5,["H3808","H3605"]],[5,6,["H120"]],[6,9,["H168"]],[9,12,["H4150"]],[12,16,["H935"]],[16,20,["H3722"]],[20,23,["H6944"]],[23,25,["H5704"]],[25,28,["H3318"]],[28,33,["H3722"]],[33,34,["H1157"]],[34,37,["H1157"]],[37,39,["H1004"]],[39,41,["H1157"]],[41,42,["H3605"]],[42,44,["H6951"]],[44,46,["H3478"]]]},{"k":3219,"v":[[0,5,["H3318"]],[5,6,["H413"]],[6,8,["H4196"]],[8,9,["H834"]],[9,11,["H6440"]],[11,13,["H3068"]],[13,17,["H3722"]],[17,18,["H5921"]],[18,22,["H3947"]],[22,25,["H4480","H1818"]],[25,28,["H6499"]],[28,32,["H4480","H1818"]],[32,35,["H8163"]],[35,37,["H5414"]],[37,39,["H5921"]],[39,41,["H7161"]],[41,44,["H4196"]],[44,46,["H5439"]]]},{"k":3220,"v":[[0,4,["H5137"]],[4,5,["H4480"]],[5,7,["H1818"]],[7,8,["H5921"]],[8,12,["H676"]],[12,13,["H7651"]],[13,14,["H6471"]],[14,16,["H2891"]],[16,19,["H6942"]],[19,23,["H4480","H2932"]],[23,26,["H1121"]],[26,28,["H3478"]]]},{"k":3221,"v":[[0,7,["H3615"]],[7,9,["H4480","H3722","(H853)"]],[9,11,["H6944"]],[11,15,["H168"]],[15,18,["H4150"]],[18,21,["H4196"]],[21,24,["H7126","(H853)"]],[24,26,["H2416"]],[26,27,["H8163"]]]},{"k":3222,"v":[[0,2,["H175"]],[2,4,["H5564","(H853)"]],[4,5,["H8147"]],[5,7,["H3027"]],[7,8,["H5921"]],[8,10,["H7218"]],[10,13,["H2416"]],[13,14,["H8163"]],[14,16,["H3034"]],[16,17,["H5921"]],[17,18,["(H853)"]],[18,19,["H3605"]],[19,21,["H5771"]],[21,24,["H1121"]],[24,26,["H3478"]],[26,28,["H3605"]],[28,30,["H6588"]],[30,32,["H3605"]],[32,34,["H2403"]],[34,35,["H5414"]],[35,37,["H5921"]],[37,39,["H7218"]],[39,42,["H8163"]],[42,47,["H7971"]],[47,50,["H3027"]],[50,53,["H6261"]],[53,54,["H376"]],[54,57,["H4057"]]]},{"k":3223,"v":[[0,3,["H8163"]],[3,5,["H5375"]],[5,6,["H5921"]],[6,7,["(H853)"]],[7,8,["H3605"]],[8,10,["H5771"]],[10,11,["H413"]],[11,13,["H776"]],[13,15,["H1509"]],[15,20,["H7971","(H853)"]],[20,22,["H8163"]],[22,25,["H4057"]]]},{"k":3224,"v":[[0,2,["H175"]],[2,4,["H935"]],[4,5,["H413"]],[5,7,["H168"]],[7,10,["H4150"]],[10,14,["H6584","(H853)"]],[14,16,["H906"]],[16,17,["H899"]],[17,18,["H834"]],[18,21,["H3847"]],[21,24,["H935"]],[24,25,["H413"]],[25,27,["H6944"]],[27,31,["H5117"]],[31,33,["H8033"]]]},{"k":3225,"v":[[0,4,["H7364","(H853)"]],[4,6,["H1320"]],[6,8,["H4325"]],[8,11,["H6918"]],[11,12,["H4725"]],[12,15,["H3847","(H853)"]],[15,17,["H899"]],[17,20,["H3318"]],[20,22,["H6213","(H853)"]],[22,25,["H5930"]],[25,29,["H5930"]],[29,32,["H5971"]],[32,36,["H3722"]],[36,37,["H1157"]],[37,40,["H1157"]],[40,42,["H5971"]]]},{"k":3226,"v":[[0,3,["H2459"]],[3,7,["H2403"]],[7,10,["H6999"]],[10,13,["H4196"]]]},{"k":3227,"v":[[0,5,["H7971","(H853)"]],[5,7,["H8163"]],[7,10,["H5799"]],[10,12,["H3526"]],[12,14,["H899"]],[14,16,["H7364","(H853)"]],[16,18,["H1320"]],[18,20,["H4325"]],[20,22,["H310","H3651"]],[22,23,["H935"]],[23,24,["H413"]],[24,26,["H4264"]]]},{"k":3228,"v":[[0,3,["H6499"]],[3,7,["H2403"]],[7,10,["H8163"]],[10,14,["H2403","(H853)"]],[14,15,["H834"]],[15,16,["H1818"]],[16,19,["H935"]],[19,22,["H3722"]],[22,25,["H6944"]],[25,30,["H3318"]],[30,31,["H413","H4480","H2351"]],[31,33,["H4264"]],[33,37,["H8313"]],[37,40,["H784","(H853)"]],[40,42,["H5785"]],[42,45,["H1320"]],[45,48,["H6569"]]]},{"k":3229,"v":[[0,4,["H8313"]],[4,7,["H3526"]],[7,9,["H899"]],[9,11,["H7364","(H853)"]],[11,13,["H1320"]],[13,15,["H4325"]],[15,17,["H310","H3651"]],[17,20,["H935"]],[20,21,["H413"]],[21,23,["H4264"]]]},{"k":3230,"v":[[0,4,["H1961"]],[4,6,["H2708"]],[6,8,["H5769"]],[8,14,["H7637"]],[14,15,["H2320"]],[15,18,["H6218"]],[18,22,["H2320"]],[22,25,["H6031","(H853)"]],[25,27,["H5315"]],[27,29,["H6213"]],[29,30,["H3808"]],[30,31,["H4399"]],[31,33,["H3605"]],[33,41,["H249"]],[41,44,["H1616"]],[44,46,["H1481"]],[46,47,["H8432"]],[47,48,[]]]},{"k":3231,"v":[[0,1,["H3588"]],[1,3,["H2088"]],[3,4,["H3117"]],[4,10,["H3722"]],[10,11,["H5921"]],[11,14,["H2891"]],[14,20,["H2891"]],[20,22,["H4480","H3605"]],[22,24,["H2403"]],[24,25,["H6440"]],[25,27,["H3068"]]]},{"k":3232,"v":[[0,1,["H1931"]],[1,5,["H7676"]],[5,7,["H7677"]],[7,13,["H6031","(H853)"]],[13,15,["H5315"]],[15,18,["H2708"]],[18,20,["H5769"]]]},{"k":3233,"v":[[0,3,["H3548"]],[3,4,["H834"]],[4,7,["H4886"]],[7,9,["H834"]],[9,12,["H4390","(H853)","H3027"]],[12,18,["H3547"]],[18,22,["H8478","H1"]],[22,26,["H3722"]],[26,30,["H3847","(H853)"]],[30,32,["H906"]],[32,33,["H899"]],[33,36,["H6944"]],[36,37,["H899"]]]},{"k":3234,"v":[[0,6,["H3722"]],[6,7,["(H853)"]],[7,9,["H6944"]],[9,10,["H4720"]],[10,16,["H3722"]],[16,19,["H168"]],[19,22,["H4150"]],[22,26,["H4196"]],[26,32,["H3722"]],[32,33,["H5921"]],[33,35,["H3548"]],[35,37,["H5921"]],[37,38,["H3605"]],[38,40,["H5971"]],[40,43,["H6951"]]]},{"k":3235,"v":[[0,2,["H2063"]],[2,4,["H1961"]],[4,6,["H5769"]],[6,7,["H2708"]],[7,13,["H3722"]],[13,14,["H5921"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,20,["H4480","H3605"]],[20,22,["H2403"]],[22,23,["H259"]],[23,25,["H8141"]],[25,28,["H6213"]],[28,29,["H834"]],[29,31,["H3068"]],[31,32,["H6680","(H853)"]],[32,33,["H4872"]]]},{"k":3236,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3237,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,3,["H175"]],[3,5,["H413"]],[5,7,["H1121"]],[7,9,["H413"]],[9,10,["H3605"]],[10,12,["H1121"]],[12,14,["H3478"]],[14,16,["H559"]],[16,17,["H413"]],[17,19,["H2088"]],[19,22,["H1697"]],[22,23,["H834"]],[23,25,["H3068"]],[25,27,["H6680"]],[27,28,["H559"]]]},{"k":3238,"v":[[0,3,["H376","H376"]],[3,8,["H4480","H1004"]],[8,10,["H3478"]],[10,11,["H834"]],[11,12,["H7819"]],[12,14,["H7794"]],[14,15,["H176"]],[15,16,["H3775"]],[16,17,["H176"]],[17,18,["H5795"]],[18,21,["H4264"]],[21,22,["H176"]],[22,23,["H834"]],[23,24,["H7819"]],[24,27,["H4480","H2351"]],[27,29,["H4264"]]]},{"k":3239,"v":[[0,2,["H935"]],[2,4,["H3808"]],[4,5,["H413"]],[5,7,["H6607"]],[7,10,["H168"]],[10,13,["H4150"]],[13,15,["H7126"]],[15,17,["H7133"]],[17,20,["H3068"]],[20,21,["H6440"]],[21,23,["H4908"]],[23,26,["H3068"]],[26,27,["H1818"]],[27,30,["H2803"]],[30,32,["H1931"]],[32,33,["H376"]],[33,36,["H8210"]],[36,37,["H1818"]],[37,39,["H1931"]],[39,40,["H376"]],[40,44,["H3772"]],[44,46,["H4480","H7130"]],[46,48,["H5971"]]]},{"k":3240,"v":[[0,3,["H4616"]],[3,4,["H834"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,10,["H935","(H853)"]],[10,12,["H2077"]],[12,13,["H834"]],[13,14,["H1992"]],[14,15,["H2076"]],[15,16,["H5921"]],[16,18,["H6440"]],[18,19,["H7704"]],[19,24,["H935"]],[24,28,["H3068"]],[28,29,["H413"]],[29,31,["H6607"]],[31,34,["H168"]],[34,37,["H4150"]],[37,38,["H413"]],[38,40,["H3548"]],[40,42,["H2076"]],[42,45,["H8002"]],[45,46,["H2077"]],[46,49,["H3068"]]]},{"k":3241,"v":[[0,3,["H3548"]],[3,5,["H2236","(H853)"]],[5,7,["H1818"]],[7,8,["H5921"]],[8,10,["H4196"]],[10,13,["H3068"]],[13,16,["H6607"]],[16,19,["H168"]],[19,22,["H4150"]],[22,24,["H6999"]],[24,26,["H2459"]],[26,29,["H5207"]],[29,30,["H7381"]],[30,33,["H3068"]]]},{"k":3242,"v":[[0,4,["H3808"]],[4,5,["H5750"]],[5,6,["H2076","(H853)"]],[6,8,["H2077"]],[8,10,["H8163"]],[10,11,["H310"]],[11,12,["H834"]],[12,13,["H1992"]],[13,17,["H2181"]],[17,18,["H2063"]],[18,20,["H1961"]],[20,22,["H2708"]],[22,24,["H5769"]],[24,29,["H1755"]]]},{"k":3243,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,8,["H376","H376"]],[8,13,["H4480","H1004"]],[13,15,["H3478"]],[15,17,["H4480"]],[17,19,["H1616"]],[19,20,["H834"]],[20,21,["H1481"]],[21,22,["H8432"]],[22,24,["H834"]],[24,25,["H5927"]],[25,28,["H5930"]],[28,29,["H176"]],[29,30,["H2077"]]]},{"k":3244,"v":[[0,2,["H935"]],[2,4,["H3808"]],[4,5,["H413"]],[5,7,["H6607"]],[7,10,["H168"]],[10,13,["H4150"]],[13,15,["H6213"]],[15,19,["H3068"]],[19,21,["H1931"]],[21,22,["H376"]],[22,26,["H3772"]],[26,30,["H4480","H5971"]]]},{"k":3245,"v":[[0,3,["H376","H376"]],[3,8,["H4480","H1004"]],[8,10,["H3478"]],[10,12,["H4480"]],[12,14,["H1616"]],[14,16,["H1481"]],[16,17,["H8432"]],[17,19,["H834"]],[19,20,["H398"]],[20,22,["H3605"]],[22,24,["H1818"]],[24,28,["H5414"]],[28,30,["H6440"]],[30,33,["H5315"]],[33,35,["H398","(H853)"]],[35,36,["H1818"]],[36,41,["H3772","(H853)"]],[41,43,["H4480","H7130"]],[43,45,["H5971"]]]},{"k":3246,"v":[[0,1,["H3588"]],[1,3,["H5315"]],[3,6,["H1320"]],[6,10,["H1818"]],[10,12,["H589"]],[12,14,["H5414"]],[14,18,["H5921"]],[18,20,["H4196"]],[20,24,["H3722"]],[24,25,["H5921"]],[25,27,["H5315"]],[27,28,["H3588"]],[28,29,["H1931"]],[29,32,["H1818"]],[32,36,["H3722"]],[36,39,["H5315"]]]},{"k":3247,"v":[[0,1,["H5921","H3651"]],[1,3,["H559"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,9,["H3808","H3605"]],[9,10,["H5315"]],[10,11,["H4480"]],[11,14,["H398"]],[14,15,["H1818"]],[15,16,["H3808"]],[16,19,["H1616"]],[19,21,["H1481"]],[21,22,["H8432"]],[22,24,["H398"]],[24,25,["H1818"]]]},{"k":3248,"v":[[0,3,["H376","H376"]],[3,8,["H4480","H1121"]],[8,10,["H3478"]],[10,12,["H4480"]],[12,14,["H1616"]],[14,16,["H1481"]],[16,17,["H8432"]],[17,19,["H834"]],[19,20,["H6679"]],[20,22,["H6718"]],[22,24,["H2416"]],[24,25,["H176"]],[25,26,["H5775"]],[26,27,["H834"]],[27,30,["H398"]],[30,35,["H8210","(H853)"]],[35,37,["H1818"]],[37,40,["H3680"]],[40,43,["H6083"]]]},{"k":3249,"v":[[0,1,["H3588"]],[1,5,["H5315"]],[5,7,["H3605"]],[7,8,["H1320"]],[8,10,["H1818"]],[10,16,["H5315"]],[16,20,["H559"]],[20,23,["H1121"]],[23,25,["H3478"]],[25,28,["H398"]],[28,30,["H1818"]],[30,33,["H3808","H3605"]],[33,35,["H1320"]],[35,36,["H3588"]],[36,38,["H5315"]],[38,40,["H3605"]],[40,41,["H1320"]],[41,44,["H1818"]],[44,46,["H3605"]],[46,47,["H398"]],[47,52,["H3772"]]]},{"k":3250,"v":[[0,2,["H3605"]],[2,3,["H5315"]],[3,4,["H834"]],[4,5,["H398"]],[5,8,["H5038"]],[8,15,["H2966"]],[15,25,["H249"]],[25,28,["H1616"]],[28,32,["H3526"]],[32,34,["H899"]],[34,36,["H7364"]],[36,39,["H4325"]],[39,42,["H2930"]],[42,43,["H5704"]],[43,45,["H6153"]],[45,50,["H2891"]]]},{"k":3251,"v":[[0,2,["H518"]],[2,4,["H3526"]],[4,6,["H3808"]],[6,7,["H3808"]],[7,8,["H7364"]],[8,10,["H1320"]],[10,14,["H5375"]],[14,16,["H5771"]]]},{"k":3252,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3253,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H589"]],[11,14,["H3068"]],[14,16,["H430"]]]},{"k":3254,"v":[[0,3,["H4639"]],[3,6,["H776"]],[6,8,["H4714"]],[8,9,["H834"]],[9,11,["H3427"]],[11,14,["H3808"]],[14,15,["H6213"]],[15,19,["H4639"]],[19,22,["H776"]],[22,24,["H3667"]],[24,25,["H834","H8033"]],[25,26,["H589"]],[26,27,["H935"]],[27,31,["H3808"]],[31,32,["H6213"]],[32,33,["H3808"]],[33,36,["H1980"]],[36,39,["H2708"]]]},{"k":3255,"v":[[0,3,["H6213","(H853)"]],[3,5,["H4941"]],[5,7,["H8104"]],[7,9,["H2708"]],[9,11,["H1980"]],[11,13,["H589"]],[13,16,["H3068"]],[16,18,["H430"]]]},{"k":3256,"v":[[0,4,["H8104","(H853)"]],[4,6,["H2708"]],[6,9,["H4941"]],[9,10,["H834"]],[10,13,["H120"]],[13,14,["H6213"]],[14,17,["H2425"]],[17,20,["H589"]],[20,23,["H3068"]]]},{"k":3257,"v":[[0,1,["H3808","H376","H376"]],[1,5,["H7126"]],[5,6,["H413"]],[6,7,["H3605"]],[7,10,["H7607"]],[10,12,["H1320"]],[12,16,["H1540"]],[16,18,["H6172"]],[18,19,["H589"]],[19,22,["H3068"]]]},{"k":3258,"v":[[0,2,["H6172"]],[2,5,["H1"]],[5,8,["H6172"]],[8,11,["H517"]],[11,14,["H3808"]],[14,15,["H1540"]],[15,16,["H1931"]],[16,19,["H517"]],[19,22,["H3808"]],[22,23,["H1540"]],[23,25,["H6172"]]]},{"k":3259,"v":[[0,2,["H6172"]],[2,5,["H1"]],[5,6,["H802"]],[6,9,["H3808"]],[9,10,["H1540"]],[10,11,["H1931"]],[11,14,["H1"]],[14,15,["H6172"]]]},{"k":3260,"v":[[0,2,["H6172"]],[2,5,["H269"]],[5,7,["H1323"]],[7,10,["H1"]],[10,11,["H176"]],[11,12,["H1323"]],[12,15,["H517"]],[15,19,["H4138"]],[19,21,["H1004"]],[21,22,["H176"]],[22,23,["H4138"]],[23,24,["H2351"]],[24,27,["H6172"]],[27,30,["H3808"]],[30,31,["H1540"]]]},{"k":3261,"v":[[0,2,["H6172"]],[2,5,["H1121"]],[5,6,["H1323"]],[6,7,["H176"]],[7,10,["H1323"]],[10,11,["H1323"]],[11,14,["H6172"]],[14,17,["H3808"]],[17,18,["H1540"]],[18,19,["H3588"]],[19,20,["H2007"]],[20,24,["H6172"]]]},{"k":3262,"v":[[0,2,["H6172"]],[2,5,["H1"]],[5,6,["H802"]],[6,7,["H1323"]],[7,8,["H4138"]],[8,11,["H1"]],[11,12,["H1931"]],[12,15,["H269"]],[15,18,["H3808"]],[18,19,["H1540"]],[19,21,["H6172"]]]},{"k":3263,"v":[[0,3,["H3808"]],[3,4,["H1540"]],[4,6,["H6172"]],[6,9,["H1"]],[9,10,["H269"]],[10,11,["H1931"]],[11,14,["H1"]],[14,16,["H7607"]]]},{"k":3264,"v":[[0,3,["H3808"]],[3,4,["H1540"]],[4,6,["H6172"]],[6,9,["H517"]],[9,10,["H269"]],[10,11,["H3588"]],[11,12,["H1931"]],[12,15,["H517"]],[15,17,["H7607"]]]},{"k":3265,"v":[[0,3,["H3808"]],[3,4,["H1540"]],[4,6,["H6172"]],[6,9,["H1"]],[9,10,["H251"]],[10,13,["H3808"]],[13,14,["H7126"]],[14,15,["H413"]],[15,17,["H802"]],[17,18,["H1931"]],[18,21,["H1733"]]]},{"k":3266,"v":[[0,3,["H3808"]],[3,4,["H1540"]],[4,6,["H6172"]],[6,11,["H3618"]],[11,12,["H1931"]],[12,15,["H1121"]],[15,16,["H802"]],[16,19,["H3808"]],[19,20,["H1540"]],[20,22,["H6172"]]]},{"k":3267,"v":[[0,3,["H3808"]],[3,4,["H1540"]],[4,6,["H6172"]],[6,9,["H251"]],[9,10,["H802"]],[10,11,["H1931"]],[11,14,["H251"]],[14,15,["H6172"]]]},{"k":3268,"v":[[0,3,["H3808"]],[3,4,["H1540"]],[4,6,["H6172"]],[6,9,["H802"]],[9,12,["H1323"]],[12,13,["H3808"]],[13,16,["H3947","(H853)"]],[16,18,["H1121"]],[18,19,["H1323"]],[19,22,["H1323"]],[22,23,["H1323"]],[23,25,["H1540"]],[25,27,["H6172"]],[27,29,["H2007"]],[29,33,["H7608"]],[33,34,["H1931"]],[34,36,["H2154"]]]},{"k":3269,"v":[[0,1,["H3808"]],[1,4,["H3947"]],[4,6,["H802"]],[6,7,["H413"]],[7,9,["H269"]],[9,11,["H6887"]],[11,14,["H1540"]],[14,16,["H6172"]],[16,17,["H5921"]],[17,22,["H2416"]],[22,23,[]]]},{"k":3270,"v":[[0,4,["H3808"]],[4,5,["H7126"]],[5,6,["H413"]],[6,8,["H802"]],[8,10,["H1540"]],[10,12,["H6172"]],[12,19,["H5079"]],[19,22,["H2932"]]]},{"k":3271,"v":[[0,4,["H3808"]],[4,6,["H5414","H7903","H2233"]],[6,7,["H413"]],[7,9,["H5997"]],[9,10,["H802"]],[10,12,["H2930"]],[12,15,[]]]},{"k":3272,"v":[[0,4,["H3808"]],[4,5,["H5414"]],[5,9,["H4480","H2233"]],[9,11,["H5674"]],[11,15,["H4432"]],[15,16,["H3808"]],[16,19,["H2490","(H853)"]],[19,21,["H8034"]],[21,24,["H430"]],[24,25,["H589"]],[25,28,["H3068"]]]},{"k":3273,"v":[[0,3,["H3808"]],[3,4,["H7901"]],[4,5,["H854"]],[5,6,["H2145"]],[6,8,["H4904"]],[8,9,["H802"]],[9,10,["H1931"]],[10,12,["H8441"]]]},{"k":3274,"v":[[0,1,["H3808"]],[1,4,["H5414","H7903"]],[4,6,["H3605"]],[6,7,["H929"]],[7,9,["H2930"]],[9,12,["H3808"]],[12,15,["H802"]],[15,16,["H5975"]],[16,17,["H6440"]],[17,19,["H929"]],[19,22,["H7250"]],[22,24,["H1931"]],[24,26,["H8397"]]]},{"k":3275,"v":[[0,4,["H2930","H408"]],[4,6,["H3605"]],[6,9,["H428"]],[9,10,["H3588"]],[10,12,["H3605"]],[12,13,["H428"]],[13,15,["H1471"]],[15,17,["H2930"]],[17,18,["H834"]],[18,19,["H589"]],[19,21,["H7971"]],[21,22,["H4480","H6440"]],[22,23,[]]]},{"k":3276,"v":[[0,3,["H776"]],[3,5,["H2930"]],[5,9,["H6485"]],[9,11,["H5771"]],[11,13,["H5921"]],[13,17,["H776"]],[17,20,["H6958","(H853)"]],[20,22,["H3427"]]]},{"k":3277,"v":[[0,1,["H859"]],[1,4,["H8104","(H853)"]],[4,6,["H2708"]],[6,9,["H4941"]],[9,12,["H3808"]],[12,13,["H6213"]],[13,16,["H4480","H3605","H428"]],[16,17,["H8441"]],[17,23,["H249"]],[23,26,["H1616"]],[26,28,["H1481"]],[28,29,["H8432"]],[29,30,[]]]},{"k":3278,"v":[[0,1,["H3588","(H853)"]],[1,2,["H3605"]],[2,3,["H411"]],[3,4,["H8441"]],[4,7,["H376"]],[7,10,["H776"]],[10,11,["H6213"]],[11,12,["H834"]],[12,14,["H6440"]],[14,18,["H776"]],[18,20,["H2930"]]]},{"k":3279,"v":[[0,3,["H776"]],[3,7,["H6958","H3808","(H853)"]],[7,11,["H2930"]],[11,13,["H834"]],[13,16,["H6958","(H853)"]],[16,18,["H1471"]],[18,19,["H834"]],[19,21,["H6440"]],[21,22,[]]]},{"k":3280,"v":[[0,1,["H3588"]],[1,2,["H3605","H834"]],[2,4,["H6213"]],[4,5,["H4480","H3605"]],[5,7,["H428"]],[7,8,["H8441"]],[8,11,["H5315"]],[11,13,["H6213"]],[13,18,["H3772"]],[18,20,["H4480","H7130"]],[20,22,["H5971"]]]},{"k":3281,"v":[[0,4,["H8104","(H853)"]],[4,6,["H4931"]],[6,10,["H6213","H1115"]],[10,16,["H4480","H2708","H8441"]],[16,17,["H834"]],[17,19,["H6213"]],[19,20,["H6440"]],[20,27,["H2930","H3808"]],[27,29,["H589"]],[29,32,["H3068"]],[32,34,["H430"]]]},{"k":3282,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3283,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,3,["H3605"]],[3,5,["H5712"]],[5,8,["H1121"]],[8,10,["H3478"]],[10,12,["H559"]],[12,13,["H413"]],[13,17,["H1961"]],[17,18,["H6918"]],[18,19,["H3588"]],[19,20,["H589"]],[20,22,["H3068"]],[22,24,["H430"]],[24,26,["H6918"]]]},{"k":3284,"v":[[0,3,["H3372"]],[3,5,["H376"]],[5,7,["H517"]],[7,10,["H1"]],[10,12,["H8104"]],[12,14,["H7676"]],[14,15,["H589"]],[15,18,["H3068"]],[18,20,["H430"]]]},{"k":3285,"v":[[0,1,["H6437"]],[1,3,["H408"]],[3,4,["H413"]],[4,5,["H457"]],[5,6,["H3808"]],[6,7,["H6213"]],[7,10,["H4541"]],[10,11,["H430"]],[11,12,["H589"]],[12,15,["H3068"]],[15,17,["H430"]]]},{"k":3286,"v":[[0,2,["H3588"]],[2,4,["H2076"]],[4,6,["H2077"]],[6,9,["H8002"]],[9,12,["H3068"]],[12,15,["H2076"]],[15,20,["H7522"]]]},{"k":3287,"v":[[0,4,["H398"]],[4,7,["H3117"]],[7,9,["H2077"]],[9,14,["H4480","H4283"]],[14,18,["H3498"]],[18,19,["H5704"]],[19,21,["H7992"]],[21,22,["H3117"]],[22,26,["H8313"]],[26,29,["H784"]]]},{"k":3288,"v":[[0,2,["H518"]],[2,7,["H398","H398"]],[7,10,["H7992"]],[10,11,["H3117"]],[11,12,["H1931"]],[12,14,["H6292"]],[14,17,["H3808"]],[17,19,["H7521"]]]},{"k":3289,"v":[[0,5,["H398"]],[5,8,["H5375"]],[8,10,["H5771"]],[10,11,["H3588"]],[11,14,["H2490","(H853)"]],[14,17,["H6944"]],[17,20,["H3068"]],[20,22,["H1931"]],[22,23,["H5315"]],[23,27,["H3772"]],[27,31,["H4480","H5971"]]]},{"k":3290,"v":[[0,4,["H7114","(H853)"]],[4,6,["H7105"]],[6,9,["H776"]],[9,12,["H3808"]],[12,14,["H3615","H7114"]],[14,16,["H6285"]],[16,19,["H7704"]],[19,20,["H3808"]],[20,23,["H3950"]],[23,25,["H3951"]],[25,28,["H7105"]]]},{"k":3291,"v":[[0,4,["H3808"]],[4,5,["H5953"]],[5,7,["H3754"]],[7,8,["H3808"]],[8,11,["H3950"]],[11,13,["H6528"]],[13,16,["H3754"]],[16,19,["H5800"]],[19,23,["H6041"]],[23,25,["H1616"]],[25,26,["H589"]],[26,29,["H3068"]],[29,31,["H430"]]]},{"k":3292,"v":[[0,3,["H3808"]],[3,4,["H1589"]],[4,5,["H3808"]],[5,7,["H3584"]],[7,8,["H3808"]],[8,9,["H8266"]],[9,10,["H376"]],[10,12,["H5997"]]]},{"k":3293,"v":[[0,4,["H3808"]],[4,5,["H7650"]],[5,8,["H8034"]],[8,9,["H8267"]],[9,13,["H2490","(H853)"]],[13,15,["H8034"]],[15,18,["H430"]],[18,19,["H589"]],[19,22,["H3068"]]]},{"k":3294,"v":[[0,3,["H3808"]],[3,4,["H6231","(H853)"]],[4,6,["H7453"]],[6,7,["H3808"]],[7,8,["H1497"]],[8,11,["H6468"]],[11,16,["H7916"]],[16,18,["H3808"]],[18,23,["H3885","H854"]],[23,24,["H5704"]],[24,26,["H1242"]]]},{"k":3295,"v":[[0,3,["H3808"]],[3,4,["H7043"]],[4,6,["H2795"]],[6,7,["H3808"]],[7,8,["H5414"]],[8,10,["H4383"]],[10,11,["H6440"]],[11,13,["H5787"]],[13,18,["H3372","H4480","H430"]],[18,19,["H589"]],[19,22,["H3068"]]]},{"k":3296,"v":[[0,3,["H6213"]],[3,4,["H3808"]],[4,5,["H5766"]],[5,7,["H4941"]],[7,10,["H3808"]],[10,11,["H5375"]],[11,13,["H6440"]],[13,16,["H1800"]],[16,17,["H3808"]],[17,18,["H1921"]],[18,20,["H6440"]],[20,23,["H1419"]],[23,26,["H6664"]],[26,29,["H8199"]],[29,31,["H5997"]]]},{"k":3297,"v":[[0,3,["H3808"]],[3,7,["H1980"]],[7,10,["H7400"]],[10,13,["H5971"]],[13,14,["H3808"]],[14,17,["H5975"]],[17,18,["H5921"]],[18,20,["H1818"]],[20,23,["H7453"]],[23,24,["H589"]],[24,27,["H3068"]]]},{"k":3298,"v":[[0,3,["H3808"]],[3,4,["H8130","(H853)"]],[4,6,["H251"]],[6,9,["H3824"]],[9,15,["H3198","H3198","(H853)"]],[15,17,["H5997"]],[17,19,["H3808"]],[19,20,["H5375"]],[20,21,["H2399"]],[21,22,["H5921"]],[22,23,[]]]},{"k":3299,"v":[[0,3,["H3808"]],[3,4,["H5358"]],[4,5,["H3808"]],[5,8,["H5201"]],[8,9,["(H853)"]],[9,11,["H1121"]],[11,14,["H5971"]],[14,18,["H157"]],[18,20,["H7453"]],[20,22,["H3644"]],[22,23,["H589"]],[23,26,["H3068"]]]},{"k":3300,"v":[[0,3,["H8104","(H853)"]],[3,5,["H2708"]],[5,8,["H3808"]],[8,11,["H929"]],[11,12,["H7250"]],[12,16,["H3610"]],[16,19,["H3808"]],[19,20,["H2232"]],[20,22,["H7704"]],[22,25,["H3610"]],[25,26,["H3808"]],[26,29,["H899"]],[29,30,["H3610"]],[30,34,["H8162"]],[34,35,["H5927"]],[35,36,["H5921"]],[36,37,[]]]},{"k":3301,"v":[[0,2,["H376","H3588"]],[2,3,["H7901"]],[3,4,["H7902","H2233"]],[4,5,["H854"]],[5,7,["H802"]],[7,8,["H1931"]],[8,11,["H8198"]],[11,12,["H2778"]],[12,15,["H376"]],[15,17,["H3808"]],[17,20,["H6299","H6299"]],[20,21,["H176","H3808"]],[21,22,["H2668"]],[22,23,["H5414"]],[23,27,["H1961"]],[27,28,["H1244"]],[28,31,["H3808"]],[31,35,["H4191"]],[35,36,["H3588"]],[36,40,["H2666","H3808"]]]},{"k":3302,"v":[[0,4,["H935","(H853)"]],[4,7,["H817"]],[7,10,["H3068"]],[10,11,["H413"]],[11,13,["H6607"]],[13,16,["H168"]],[16,19,["H4150"]],[19,22,["H352"]],[22,26,["H817"]]]},{"k":3303,"v":[[0,3,["H3548"]],[3,7,["H3722"]],[7,8,["H5921"]],[8,12,["H352"]],[12,16,["H817"]],[16,17,["H6440"]],[17,19,["H3068"]],[19,20,["H5921"]],[20,22,["H2403"]],[22,23,["H834"]],[23,26,["H2398"]],[26,29,["H4480","H2403"]],[29,30,["H834"]],[30,33,["H2398"]],[33,36,["H5545"]],[36,37,[]]]},{"k":3304,"v":[[0,2,["H3588"]],[2,5,["H935"]],[5,6,["H413"]],[6,8,["H776"]],[8,12,["H5193"]],[12,14,["H3605"]],[14,16,["H6086"]],[16,18,["H3978"]],[18,22,["H6188","(H853)"]],[22,24,["H6529"]],[24,27,["H6189"]],[27,28,["H7969"]],[28,29,["H8141"]],[29,32,["H1961"]],[32,34,["H6189"]],[34,39,["H3808"]],[39,41,["H398"]],[41,42,[]]]},{"k":3305,"v":[[0,4,["H7243"]],[4,5,["H8141"]],[5,6,["H3605"]],[6,8,["H6529"]],[8,11,["H1961"]],[11,12,["H6944"]],[12,14,["H1974"]],[14,16,["H3068"]],[16,17,[]]]},{"k":3306,"v":[[0,4,["H2549"]],[4,5,["H8141"]],[5,8,["H398","(H853)"]],[8,11,["H6529"]],[11,16,["H3254"]],[16,20,["H8393"]],[20,22,["H589"]],[22,25,["H3068"]],[25,27,["H430"]]]},{"k":3307,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,7,["H5921"]],[7,9,["H1818"]],[9,10,["H3808"]],[10,14,["H5172"]],[14,15,["H3808"]],[15,17,["H6049"]]]},{"k":3308,"v":[[0,3,["H3808"]],[3,4,["H5362"]],[4,6,["H6285"]],[6,9,["H7218"]],[9,10,["H3808"]],[10,13,["H7843","(H853)"]],[13,15,["H6285"]],[15,18,["H2206"]]]},{"k":3309,"v":[[0,3,["H3808"]],[3,4,["H5414"]],[4,6,["H8296"]],[6,9,["H1320"]],[9,12,["H5315"]],[12,13,["H3808"]],[13,14,["H5414"]],[14,16,["H3793","H7085"]],[16,19,["H589"]],[19,22,["H3068"]]]},{"k":3310,"v":[[0,2,["H408"]],[2,3,["H2490","(H853)"]],[3,5,["H1323"]],[5,12,["H2181"]],[12,13,["H3808"]],[13,15,["H776"]],[15,18,["H2181"]],[18,21,["H776"]],[21,23,["H4390"]],[23,25,["H2154"]]]},{"k":3311,"v":[[0,3,["H8104","(H853)"]],[3,5,["H7676"]],[5,7,["H3372"]],[7,9,["H4720"]],[9,10,["H589"]],[10,13,["H3068"]]]},{"k":3312,"v":[[0,1,["H6437"]],[1,2,["H408"]],[2,7,["H178"]],[7,8,["H408"]],[8,9,["H1245"]],[9,10,["H413"]],[10,11,["H3049"]],[11,14,["H2930"]],[14,17,["H589"]],[17,20,["H3068"]],[20,22,["H430"]]]},{"k":3313,"v":[[0,4,["H6965"]],[4,5,["H4480","H6440"]],[5,8,["H7872"]],[8,10,["H1921"]],[10,12,["H6440"]],[12,16,["H2205"]],[16,20,["H3372","H4480","H430"]],[20,21,["H589"]],[21,24,["H3068"]]]},{"k":3314,"v":[[0,2,["H3588"]],[2,4,["H1616"]],[4,5,["H1481"]],[5,6,["H854"]],[6,10,["H776"]],[10,13,["H3808"]],[13,14,["H3238"]],[14,15,[]]]},{"k":3315,"v":[[0,3,["H1616"]],[3,5,["H1481"]],[5,6,["H854"]],[6,9,["H1961"]],[9,15,["H249","H4480"]],[15,20,["H157"]],[20,23,["H3644"]],[23,24,["H3588"]],[24,26,["H1961"]],[26,27,["H1616"]],[27,30,["H776"]],[30,32,["H4714"]],[32,33,["H589"]],[33,36,["H3068"]],[36,38,["H430"]]]},{"k":3316,"v":[[0,3,["H6213"]],[3,4,["H3808"]],[4,5,["H5766"]],[5,7,["H4941"]],[7,9,["H4060"]],[9,11,["H4948"]],[11,14,["H4884"]]]},{"k":3317,"v":[[0,1,["H6664"]],[1,2,["H3976"]],[2,3,["H6664"]],[3,4,["H68"]],[4,6,["H6664"]],[6,7,["H374"]],[7,10,["H6664"]],[10,11,["H1969"]],[11,14,["H1961"]],[14,15,["H589"]],[15,18,["H3068"]],[18,20,["H430"]],[20,21,["H834"]],[21,24,["H3318","(H853)"]],[24,27,["H4480","H776"]],[27,29,["H4714"]]]},{"k":3318,"v":[[0,4,["H8104","(H853)"]],[4,5,["H3605"]],[5,7,["H2708"]],[7,9,["H3605"]],[9,11,["H4941"]],[11,13,["H6213"]],[13,15,["H589"]],[15,18,["H3068"]]]},{"k":3319,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3320,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,10,["H376","H376"]],[10,15,["H4480","H1121"]],[15,17,["H3478"]],[17,19,["H4480"]],[19,21,["H1616"]],[21,23,["H1481"]],[23,25,["H3478"]],[25,26,["H834"]],[26,27,["H5414"]],[27,31,["H4480","H2233"]],[31,33,["H4432"]],[33,40,["H4191","H4191"]],[40,42,["H5971"]],[42,45,["H776"]],[45,47,["H7275"]],[47,50,["H68"]]]},{"k":3321,"v":[[0,2,["H589"]],[2,4,["H5414","(H853)"]],[4,6,["H6440"]],[6,8,["H1931"]],[8,9,["H376"]],[9,14,["H3772","(H853)"]],[14,16,["H4480","H7130"]],[16,18,["H5971"]],[18,19,["H3588"]],[19,22,["H5414"]],[22,25,["H4480","H2233"]],[25,27,["H4432"]],[27,28,["H4616"]],[28,29,["H2930","(H853)"]],[29,31,["H4720"]],[31,34,["H2490","(H853)"]],[34,36,["H6944"]],[36,37,["H8034"]]]},{"k":3322,"v":[[0,2,["H518"]],[2,4,["H5971"]],[4,7,["H776"]],[7,11,["H5956","H5956","(H853)"]],[11,13,["H5869"]],[13,16,["H4480","H376","H1931"]],[16,19,["H5414"]],[19,22,["H4480","H2233"]],[22,24,["H4432"]],[24,26,["H4191"]],[26,28,["H1115"]]]},{"k":3323,"v":[[0,2,["H589"]],[2,4,["H7760","(H853)"]],[4,6,["H6440"]],[6,8,["H1931"]],[8,9,["H376"]],[9,13,["H4940"]],[13,18,["H3772","(H853)"]],[18,20,["H3605"]],[20,24,["H2181"]],[24,25,["H310"]],[25,29,["H2181"]],[29,30,["H310"]],[30,31,["H4432"]],[31,33,["H4480","H7130"]],[33,35,["H5971"]]]},{"k":3324,"v":[[0,3,["H5315"]],[3,4,["H834"]],[4,5,["H6437"]],[5,6,["H413"]],[6,11,["H178"]],[11,13,["H413"]],[13,14,["H3049"]],[14,18,["H2181"]],[18,19,["H310"]],[19,24,["H5414","(H853)"]],[24,26,["H6440"]],[26,28,["H1931"]],[28,29,["H5315"]],[29,34,["H3772","(H853)"]],[34,36,["H4480","H7130"]],[36,38,["H5971"]]]},{"k":3325,"v":[[0,2,["H6942"]],[2,5,["H1961"]],[5,7,["H6918"]],[7,8,["H3588"]],[8,9,["H589"]],[9,12,["H3068"]],[12,14,["H430"]]]},{"k":3326,"v":[[0,4,["H8104","(H853)"]],[4,6,["H2708"]],[6,8,["H6213"]],[8,10,["H589"]],[10,13,["H3068"]],[13,15,["H6942"]],[15,16,[]]]},{"k":3327,"v":[[0,1,["H3588"]],[1,3,["H376","H376"]],[3,4,["H834"]],[4,5,["H7043","(H853)"]],[5,7,["H1"]],[7,10,["H517"]],[10,16,["H4191","H4191"]],[16,19,["H7043"]],[19,21,["H1"]],[21,24,["H517"]],[24,26,["H1818"]],[26,30,[]]]},{"k":3328,"v":[[0,3,["H376"]],[3,4,["H834"]],[4,6,["H5003"]],[6,7,["H854"]],[7,9,["H376"]],[9,10,["H802"]],[10,13,["H834"]],[13,15,["H5003"]],[15,16,["H854"]],[16,18,["H7453"]],[18,19,["H802"]],[19,21,["H5003"]],[21,24,["H5003"]],[24,30,["H4191","H4191"]]]},{"k":3329,"v":[[0,3,["H376"]],[3,4,["H834"]],[4,5,["H7901"]],[5,6,["H854"]],[6,8,["H1"]],[8,9,["H802"]],[9,11,["H1540"]],[11,13,["H1"]],[13,14,["H6172"]],[14,15,["H8147"]],[15,23,["H4191","H4191"]],[23,25,["H1818"]],[25,29,[]]]},{"k":3330,"v":[[0,2,["H834"]],[2,4,["H376"]],[4,5,["H7901"]],[5,6,["H854"]],[6,10,["H3618"]],[10,11,["H8147"]],[11,19,["H4191","H4191"]],[19,22,["H6213"]],[22,23,["H8397"]],[23,25,["H1818"]],[25,29,[]]]},{"k":3331,"v":[[0,1,["H834"]],[1,3,["H376"]],[3,5,["H7901"]],[5,6,["H854"]],[6,7,["H2145"]],[7,10,["H4904"]],[10,13,["H802"]],[13,14,["H8147"]],[14,18,["H6213"]],[18,20,["H8441"]],[20,27,["H4191","H4191"]],[27,29,["H1818"]],[29,33,[]]]},{"k":3332,"v":[[0,2,["H834"]],[2,4,["H376"]],[4,5,["H3947","(H853)"]],[5,7,["H802"]],[7,10,["H517"]],[10,11,["H1931"]],[11,13,["H2154"]],[13,17,["H8313"]],[17,19,["H784"]],[19,26,["H1961"]],[26,27,["H3808"]],[27,28,["H2154"]],[28,29,["H8432"]],[29,30,[]]]},{"k":3333,"v":[[0,2,["H834"]],[2,4,["H376"]],[4,5,["H5414","H7903"]],[5,8,["H929"]],[8,15,["H4191","H4191"]],[15,19,["H2026"]],[19,21,["H929"]]]},{"k":3334,"v":[[0,2,["H834"]],[2,4,["H802"]],[4,5,["H7126"]],[5,6,["H413"]],[6,7,["H3605"]],[7,8,["H929"]],[8,11,["H7250"]],[11,15,["H2026","(H853)"]],[15,17,["H802"]],[17,20,["H929"]],[20,27,["H4191","H4191"]],[27,29,["H1818"]],[29,33,[]]]},{"k":3335,"v":[[0,2,["H834"]],[2,4,["H376"]],[4,6,["H3947","(H853)"]],[6,8,["H269"]],[8,10,["H1"]],[10,11,["H1323"]],[11,12,["H176"]],[12,14,["H517"]],[14,15,["H1323"]],[15,17,["H7200","(H853)"]],[17,19,["H6172"]],[19,21,["H1931"]],[21,22,["H7200","(H853)"]],[22,24,["H6172"]],[24,25,["H1931"]],[25,29,["H2617"]],[29,35,["H3772"]],[35,38,["H5869"]],[38,41,["H1121","H5971"]],[41,44,["H1540"]],[44,46,["H269"]],[46,47,["H6172"]],[47,50,["H5375"]],[50,52,["H5771"]]]},{"k":3336,"v":[[0,2,["H834"]],[2,4,["H376"]],[4,6,["H7901"]],[6,7,["H854"]],[7,9,["H802"]],[9,12,["H1739"]],[12,15,["H1540","(H853)"]],[15,17,["H6172"]],[17,20,["H6168","(H853)"]],[20,22,["H4726"]],[22,24,["H1931"]],[24,26,["H1540","(H853)"]],[26,28,["H4726"]],[28,31,["H1818"]],[31,33,["H8147"]],[33,39,["H3772"]],[39,41,["H4480","H7130"]],[41,43,["H5971"]]]},{"k":3337,"v":[[0,4,["H3808"]],[4,5,["H1540"]],[5,7,["H6172"]],[7,10,["H517"]],[10,11,["H269"]],[11,15,["H1"]],[15,16,["H269"]],[16,17,["H3588"]],[17,19,["H6168","(H853)"]],[19,22,["H7607"]],[22,25,["H5375"]],[25,27,["H5771"]]]},{"k":3338,"v":[[0,2,["H834"]],[2,4,["H376"]],[4,6,["H7901"]],[6,7,["H854"]],[7,10,["H1733"]],[10,13,["H1540"]],[13,15,["H1730"]],[15,16,["H6172"]],[16,19,["H5375"]],[19,21,["H2399"]],[21,24,["H4191"]],[24,25,["H6185"]]]},{"k":3339,"v":[[0,2,["H834"]],[2,4,["H376"]],[4,6,["H3947","(H853)"]],[6,8,["H251"]],[8,9,["H802"]],[9,10,["H1931"]],[10,14,["H5079"]],[14,17,["H1540"]],[17,19,["H251"]],[19,20,["H6172"]],[20,23,["H1961"]],[23,24,["H6185"]]]},{"k":3340,"v":[[0,4,["H8104","(H853)"]],[4,5,["H3605"]],[5,7,["H2708"]],[7,9,["H3605"]],[9,11,["H4941"]],[11,13,["H6213"]],[13,17,["H776"]],[17,18,["H834","H8033"]],[18,19,["H589"]],[19,20,["H935"]],[20,23,["H3427"]],[23,28,["H6958","(H853)","H3808"]]]},{"k":3341,"v":[[0,4,["H3808"]],[4,5,["H1980"]],[5,8,["H2708"]],[8,11,["H1471"]],[11,12,["H834"]],[12,13,["H589"]],[13,15,["H7971"]],[15,16,["H4480","H6440"]],[16,18,["H3588"]],[18,20,["H6213","(H853)"]],[20,21,["H3605"]],[21,23,["H428"]],[23,27,["H6973"]],[27,28,[]]]},{"k":3342,"v":[[0,4,["H559"]],[4,7,["H859"]],[7,9,["H3423","(H853)"]],[9,11,["H127"]],[11,13,["H589"]],[13,15,["H5414"]],[15,20,["H3423"]],[20,23,["H776"]],[23,25,["H2100"]],[25,27,["H2461"]],[27,29,["H1706"]],[29,30,["H589"]],[30,33,["H3068"]],[33,35,["H430"]],[35,36,["H834"]],[36,38,["H914"]],[38,40,["H4480"]],[40,42,["H5971"]]]},{"k":3343,"v":[[0,5,["H914"]],[5,6,["H996"]],[6,7,["H2889"]],[7,8,["H929"]],[8,10,["H2931"]],[10,12,["H996"]],[12,13,["H2931"]],[13,14,["H5775"]],[14,16,["H2889"]],[16,20,["H3808"]],[20,24,["H8262","(H853)","H5315"]],[24,26,["H929"]],[26,29,["H5775"]],[29,33,["H3605"]],[33,38,["H7430","H834"]],[38,41,["H127"]],[41,42,["H834"]],[42,45,["H914"]],[45,49,["H2930"]]]},{"k":3344,"v":[[0,4,["H1961"]],[4,5,["H6918"]],[5,8,["H3588"]],[8,9,["H589"]],[9,11,["H3068"]],[11,13,["H6918"]],[13,16,["H914"]],[16,18,["H4480"]],[18,20,["H5971"]],[20,24,["H1961"]],[24,25,[]]]},{"k":3345,"v":[[0,2,["H376"]],[2,4,["H176"]],[4,5,["H802"]],[5,6,["H3588"]],[6,7,["H1961"]],[7,10,["H178"]],[10,11,["H176"]],[11,15,["H3049"]],[15,21,["H4191","H4191"]],[21,24,["H7275"]],[24,27,["H68"]],[27,29,["H1818"]],[29,33,[]]]},{"k":3346,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]],[7,8,["H413"]],[8,10,["H3548"]],[10,12,["H1121"]],[12,14,["H175"]],[14,16,["H559"]],[16,17,["H413"]],[17,21,["H3808"]],[21,23,["H2930"]],[23,26,["H5315"]],[26,29,["H5971"]]]},{"k":3347,"v":[[0,1,["H3588","H518"]],[1,4,["H7607"]],[4,7,["H7138"]],[7,8,["H413"]],[8,14,["H517"]],[14,18,["H1"]],[18,22,["H1121"]],[22,26,["H1323"]],[26,30,["H251"]]]},{"k":3348,"v":[[0,4,["H269"]],[4,6,["H1330"]],[6,9,["H7138"]],[9,10,["H413"]],[10,12,["H834"]],[12,14,["H1961"]],[14,15,["H3808"]],[15,16,["H376"]],[16,22,["H2930"]]]},{"k":3349,"v":[[0,4,["H3808"]],[4,6,["H2930"]],[6,10,["H1167"]],[10,13,["H5971"]],[13,16,["H2490"]]]},{"k":3350,"v":[[0,3,["H3808"]],[3,4,["H7139"]],[4,5,["H7144"]],[5,8,["H7218"]],[8,9,["H3808"]],[9,13,["H1548"]],[13,15,["H6285"]],[15,18,["H2206"]],[18,19,["H3808"]],[19,20,["H8295"]],[20,22,["H8296"]],[22,25,["H1320"]]]},{"k":3351,"v":[[0,3,["H1961"]],[3,4,["H6918"]],[4,7,["H430"]],[7,9,["H3808"]],[9,10,["H2490"]],[10,12,["H8034"]],[12,15,["H430"]],[15,16,["H3588","(H853)"]],[16,24,["H801","H3068"]],[24,27,["H3899"]],[27,30,["H430"]],[30,31,["H1992"]],[31,33,["H7126"]],[33,37,["H1961"]],[37,38,["H6944"]]]},{"k":3352,"v":[[0,3,["H3808"]],[3,4,["H3947"]],[4,6,["H802"]],[6,10,["H2181"]],[10,12,["H2491"]],[12,13,["H3808"]],[13,16,["H3947"]],[16,18,["H802"]],[18,20,["H1644"]],[20,23,["H4480","H376"]],[23,24,["H3588"]],[24,25,["H1931"]],[25,27,["H6918"]],[27,30,["H430"]]]},{"k":3353,"v":[[0,3,["H6942"]],[3,6,["H3588"]],[6,7,["H1931"]],[7,8,["H7126","(H853)"]],[8,10,["H3899"]],[10,13,["H430"]],[13,16,["H1961"]],[16,17,["H6918"]],[17,20,["H3588"]],[20,21,["H589"]],[21,23,["H3068"]],[23,25,["H6942"]],[25,28,["H6918"]]]},{"k":3354,"v":[[0,3,["H1323"]],[3,5,["H376"]],[5,6,["H3548"]],[6,7,["H3588"]],[7,10,["H2490"]],[10,14,["H2181"]],[14,15,["H1931"]],[15,16,["H2490","(H853)"]],[16,18,["H1"]],[18,22,["H8313"]],[22,24,["H784"]]]},{"k":3355,"v":[[0,6,["H1419"]],[6,7,["H3548"]],[7,10,["H4480","H251"]],[10,11,["H5921"]],[11,12,["H834"]],[12,13,["H7218"]],[13,15,["H4888"]],[15,16,["H8081"]],[16,18,["H3332"]],[18,22,["H4390","(H853)","H3027"]],[22,25,["H3847","(H853)"]],[25,27,["H899"]],[27,29,["H3808"]],[29,30,["H6544","(H853)"]],[30,32,["H7218"]],[32,33,["H3808"]],[33,34,["H6533"]],[34,36,["H899"]]]},{"k":3356,"v":[[0,1,["H3808"]],[1,5,["H935"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,8,["H4191"]],[8,9,["H5315"]],[9,10,["H3808"]],[10,12,["H2930"]],[12,15,["H1"]],[15,19,["H517"]]]},{"k":3357,"v":[[0,1,["H3808"]],[1,5,["H3318"]],[5,6,["H4480"]],[6,8,["H4720"]],[8,9,["H3808"]],[9,10,["H2490","(H853)"]],[10,12,["H4720"]],[12,15,["H430"]],[15,16,["H3588"]],[16,18,["H5145"]],[18,21,["H4888"]],[21,22,["H8081"]],[22,25,["H430"]],[25,27,["H5921"]],[27,29,["H589"]],[29,32,["H3068"]]]},{"k":3358,"v":[[0,2,["H1931"]],[2,4,["H3947"]],[4,6,["H802"]],[6,9,["H1331"]]]},{"k":3359,"v":[[0,2,["H490"]],[2,6,["H1644"]],[6,8,["H2491"]],[8,11,["H2181","(H853)"]],[11,12,["H428"]],[12,15,["H3808"]],[15,16,["H3947"]],[16,17,["H3588","H518"]],[17,20,["H3947"]],[20,22,["H1330"]],[22,26,["H4480","H5971"]],[26,28,["H802"]]]},{"k":3360,"v":[[0,1,["H3808"]],[1,4,["H2490"]],[4,6,["H2233"]],[6,9,["H5971"]],[9,10,["H3588"]],[10,11,["H589"]],[11,13,["H3068"]],[13,15,["H6942"]],[15,16,[]]]},{"k":3361,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3362,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,3,["H175"]],[3,4,["H559"]],[4,5,["H376","H834"]],[5,10,["H4480","H2233"]],[10,13,["H1755"]],[13,15,["H1961"]],[15,17,["H3971"]],[17,20,["H3808"]],[20,21,["H7126"]],[21,23,["H7126"]],[23,25,["H3899"]],[25,28,["H430"]]]},{"k":3363,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,3,["H376"]],[3,6,["H834"]],[6,9,["H3971"]],[9,12,["H3808"]],[12,13,["H7126"]],[13,15,["H5787"]],[15,16,["H376"]],[16,17,["H176"]],[17,19,["H6455"]],[19,20,["H176"]],[20,26,["H2763"]],[26,27,["H176"]],[27,30,["H8311"]]]},{"k":3364,"v":[[0,1,["H176"]],[1,3,["H376"]],[3,4,["H834"]],[4,5,["H1961"]],[5,6,["H7667","H7272"]],[6,7,["H176"]],[7,8,["H7667","H3027"]]]},{"k":3365,"v":[[0,1,["H176"]],[1,2,["H1384"]],[2,3,["H176"]],[3,5,["H1851"]],[5,6,["H176"]],[6,10,["H8400"]],[10,13,["H5869"]],[13,14,["H176"]],[14,16,["H1618"]],[16,17,["H176"]],[17,18,["H3217"]],[18,19,["H176"]],[19,22,["H810"]],[22,23,["H4790"]]]},{"k":3366,"v":[[0,1,["H3808","H3605"]],[1,2,["H376"]],[2,3,["H834"]],[3,6,["H3971"]],[6,9,["H4480","H2233"]],[9,11,["H175"]],[11,13,["H3548"]],[13,16,["H5066"]],[16,18,["H7126","(H853)"]],[18,26,["H801","H3068"]],[26,30,["H3971"]],[30,33,["H3808"]],[33,35,["H5066"]],[35,37,["H7126","(H853)"]],[37,39,["H3899"]],[39,42,["H430"]]]},{"k":3367,"v":[[0,3,["H398"]],[3,5,["H3899"]],[5,8,["H430"]],[8,13,["H4480","H6944","H6944"]],[13,15,["H4480"]],[15,17,["H6944"]]]},{"k":3368,"v":[[0,1,["H389"]],[1,4,["H3808"]],[4,6,["H935"]],[6,7,["H413"]],[7,9,["H6532"]],[9,10,["H3808"]],[10,12,["H5066"]],[12,13,["H413"]],[13,15,["H4196"]],[15,16,["H3588"]],[16,20,["H3971"]],[20,23,["H2490"]],[23,24,["H3808","(H853)"]],[24,26,["H4720"]],[26,27,["H3588"]],[27,28,["H589"]],[28,30,["H3068"]],[30,32,["H6942"]],[32,33,[]]]},{"k":3369,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,5,["H413"]],[5,6,["H175"]],[6,8,["H413"]],[8,10,["H1121"]],[10,12,["H413"]],[12,13,["H3605"]],[13,15,["H1121"]],[15,17,["H3478"]]]},{"k":3370,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3371,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,3,["H175"]],[3,5,["H413"]],[5,7,["H1121"]],[7,11,["H5144"]],[11,15,["H4480","H6944"]],[15,18,["H1121"]],[18,20,["H3478"]],[20,24,["H2490"]],[24,25,["H3808","(H853)"]],[25,27,["H6944"]],[27,28,["H8034"]],[28,32,["H834"]],[32,33,["H1992"]],[33,34,["H6942"]],[34,37,["H589"]],[37,40,["H3068"]]]},{"k":3372,"v":[[0,1,["H559"]],[1,2,["H413"]],[2,4,["H3605","H376"]],[4,8,["H4480","H3605"]],[8,10,["H2233"]],[10,13,["H1755"]],[13,14,["H834"]],[14,15,["H7126"]],[15,16,["H413"]],[16,19,["H6944"]],[19,20,["H834"]],[20,22,["H1121"]],[22,24,["H3478"]],[24,25,["H6942"]],[25,28,["H3068"]],[28,31,["H2932"]],[31,32,["H5921"]],[32,34,["H1931"]],[34,35,["H5315"]],[35,39,["H3772"]],[39,42,["H4480","H6440"]],[42,43,["H589"]],[43,46,["H3068"]]]},{"k":3373,"v":[[0,3,["H376","H376"]],[3,6,["H4480","H2233"]],[6,8,["H175"]],[8,11,["H6879"]],[11,12,["H176"]],[12,16,["H2100"]],[16,19,["H3808"]],[19,20,["H398"]],[20,24,["H6944"]],[24,25,["H5704","H834"]],[25,28,["H2891"]],[28,31,["H5060"]],[31,33,["H3605"]],[33,36,["H2931"]],[36,39,["H5315"]],[39,40,["H176"]],[40,42,["H376"]],[42,43,["H834"]],[43,44,["H7902","H2233"]],[44,45,["H3318"]],[45,46,["H4480"]],[46,47,[]]]},{"k":3374,"v":[[0,1,["H176"]],[1,2,["H376","H834"]],[2,3,["H5060"]],[3,4,["H3605"]],[4,6,["H8318"]],[6,7,["H834"]],[7,12,["H2930"]],[12,13,["H176"]],[13,15,["H120"]],[15,17,["H834"]],[17,21,["H2930"]],[21,22,["H3605"]],[22,23,["H2932"]],[23,25,[]]]},{"k":3375,"v":[[0,2,["H5315"]],[2,3,["H834"]],[3,5,["H5060"]],[5,10,["H2930"]],[10,11,["H5704"]],[11,12,["H6153"]],[12,15,["H3808"]],[15,16,["H398"]],[16,17,["H4480"]],[17,20,["H6944"]],[20,21,["H3588","H518"]],[21,23,["H7364"]],[23,25,["H1320"]],[25,27,["H4325"]]]},{"k":3376,"v":[[0,4,["H8121"]],[4,6,["H935"]],[6,10,["H2891"]],[10,13,["H310"]],[13,14,["H398"]],[14,15,["H4480"]],[15,18,["H6944"]],[18,19,["H3588"]],[19,20,["H1931"]],[20,23,["H3899"]]]},{"k":3377,"v":[[0,5,["H5038"]],[5,8,["H2966"]],[8,13,["H3808"]],[13,14,["H398"]],[14,16,["H2930"]],[16,19,["H589"]],[19,22,["H3068"]]]},{"k":3378,"v":[[0,4,["H8104","(H853)"]],[4,6,["H4931"]],[6,7,["H3808"]],[7,9,["H5375"]],[9,10,["H2399"]],[10,11,["H5921"]],[11,14,["H4191"]],[14,16,["H3588"]],[16,18,["H2490"]],[18,20,["H589"]],[20,22,["H3068"]],[22,24,["H6942"]],[24,25,[]]]},{"k":3379,"v":[[0,3,["H3808","H3605"]],[3,4,["H2114"]],[4,5,["H398"]],[5,9,["H6944"]],[9,11,["H8453"]],[11,14,["H3548"]],[14,18,["H7916"]],[18,20,["H3808"]],[20,21,["H398"]],[21,25,["H6944"]]]},{"k":3380,"v":[[0,2,["H3588"]],[2,4,["H3548"]],[4,5,["H7069"]],[5,7,["H5315"]],[7,10,["H7075","H3701"]],[10,11,["H1931"]],[11,13,["H398"]],[13,20,["H3211"]],[20,23,["H1004"]],[23,24,["H1992"]],[24,26,["H398"]],[26,29,["H3899"]]]},{"k":3381,"v":[[0,1,["H3588"]],[1,3,["H3548"]],[3,4,["H1323"]],[4,6,["H1961"]],[6,10,["H376","H2114"]],[10,11,["H1931"]],[11,13,["H3808"]],[13,14,["H398"]],[14,17,["H8641"]],[17,21,["H6944"]]]},{"k":3382,"v":[[0,2,["H3588"]],[2,4,["H3548"]],[4,5,["H1323"]],[5,6,["H1961"]],[6,8,["H490"]],[8,10,["H1644"]],[10,13,["H369"]],[13,14,["H2233"]],[14,17,["H7725"]],[17,18,["H413"]],[18,20,["H1"]],[20,21,["H1004"]],[21,25,["H5271"]],[25,28,["H398"]],[28,32,["H4480","H3899","H1"]],[32,36,["H3605","H3808"]],[36,37,["H2114"]],[37,38,["H398"]],[38,39,[]]]},{"k":3383,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H398"]],[5,9,["H6944"]],[9,10,["H7684"]],[10,14,["H3254"]],[14,16,["H2549"]],[16,19,["H5921"]],[19,23,["H5414"]],[23,27,["H3548","(H853)"]],[27,31,["H6944"]]]},{"k":3384,"v":[[0,4,["H3808"]],[4,5,["H2490","(H853)"]],[5,8,["H6944"]],[8,11,["H1121"]],[11,13,["H3478","(H853)"]],[13,14,["H834"]],[14,16,["H7311"]],[16,19,["H3068"]]]},{"k":3385,"v":[[0,5,["H5375"]],[5,7,["H5771"]],[7,9,["H819"]],[9,12,["H398","(H853)"]],[12,15,["H6944"]],[15,16,["H3588"]],[16,17,["H589"]],[17,19,["H3068"]],[19,21,["H6942"]],[21,22,[]]]},{"k":3386,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3387,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,3,["H175"]],[3,5,["H413"]],[5,7,["H1121"]],[7,9,["H413"]],[9,10,["H3605"]],[10,12,["H1121"]],[12,14,["H3478"]],[14,16,["H559"]],[16,17,["H413"]],[17,19,["H376","H376"]],[19,24,["H4480","H1004"]],[24,26,["H3478"]],[26,28,["H4480"]],[28,30,["H1616"]],[30,32,["H3478"]],[32,33,["H834"]],[33,35,["H7126"]],[35,37,["H7133"]],[37,39,["H3605"]],[39,41,["H5088"]],[41,44,["H3605"]],[44,47,["H5071"]],[47,48,["H834"]],[48,51,["H7126"]],[51,54,["H3068"]],[54,58,["H5930"]]]},{"k":3388,"v":[[0,7,["H7522"]],[7,9,["H2145"]],[9,11,["H8549"]],[11,14,["H1241"]],[14,17,["H3775"]],[17,21,["H5795"]]]},{"k":3389,"v":[[0,2,["H3605","H834"]],[2,5,["H3971"]],[5,9,["H3808"]],[9,10,["H7126"]],[10,11,["H3588"]],[11,14,["H3808"]],[14,15,["H1961"]],[15,16,["H7522"]],[16,18,[]]]},{"k":3390,"v":[[0,2,["H376","H3588"]],[2,3,["H7126"]],[3,5,["H2077"]],[5,8,["H8002"]],[8,11,["H3068"]],[11,13,["H6381"]],[13,15,["H5088"]],[15,16,["H176"]],[16,19,["H5071"]],[19,21,["H1241"]],[21,22,["H176"]],[22,23,["H6629"]],[23,26,["H1961"]],[26,27,["H8549"]],[27,30,["H7522"]],[30,33,["H1961"]],[33,34,["H3808","H3605"]],[34,35,["H3971"]],[35,36,[]]]},{"k":3391,"v":[[0,1,["H5788"]],[1,2,["H176"]],[2,3,["H7665"]],[3,4,["H176"]],[4,5,["H2782"]],[5,6,["H176"]],[6,9,["H2990"]],[9,10,["H176"]],[10,11,["H1618"]],[11,12,["H176"]],[12,13,["H3217"]],[13,16,["H3808"]],[16,17,["H7126"]],[17,18,["H428"]],[18,21,["H3068"]],[21,22,["H3808"]],[22,23,["H5414"]],[23,27,["H801"]],[27,28,["H4480"]],[28,30,["H5921"]],[30,32,["H4196"]],[32,35,["H3068"]]]},{"k":3392,"v":[[0,3,["H7794"]],[3,6,["H7716"]],[6,11,["H8311"]],[11,16,["H7038"]],[16,20,["H6213"]],[20,24,["H5071"]],[24,28,["H5088"]],[28,31,["H3808"]],[31,33,["H7521"]]]},{"k":3393,"v":[[0,3,["H3808"]],[3,4,["H7126"]],[4,7,["H3068"]],[7,11,["H4600"]],[11,13,["H3807"]],[13,15,["H5423"]],[15,17,["H3772"]],[17,18,["H3808"]],[18,21,["H6213"]],[21,27,["H776"]]]},{"k":3394,"v":[[0,1,["H3808"]],[1,5,["H4480","H3027","H1121","H5236"]],[5,8,["H7126","(H853)"]],[8,10,["H3899"]],[10,13,["H430"]],[13,15,["H4480","H3605"]],[15,17,["H428"]],[17,18,["H3588"]],[18,20,["H4893"]],[20,25,["H3971"]],[25,31,["H3808"]],[31,33,["H7521"]],[33,35,[]]]},{"k":3395,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3396,"v":[[0,1,["H3588"]],[1,3,["H7794"]],[3,4,["H176"]],[4,6,["H3775"]],[6,7,["H176"]],[7,9,["H5795"]],[9,12,["H3205"]],[12,16,["H1961"]],[16,17,["H7651"]],[17,18,["H3117"]],[18,19,["H8478"]],[19,21,["H517"]],[21,26,["H4480","H3117","H8066"]],[26,28,["H1973"]],[28,32,["H7521"]],[32,35,["H7133"]],[35,38,["H801"]],[38,41,["H3068"]]]},{"k":3397,"v":[[0,5,["H7794"]],[5,6,["H176"]],[6,7,["H7716"]],[7,10,["H3808"]],[10,11,["H7819"]],[11,15,["H1121"]],[15,18,["H259"]],[18,19,["H3117"]]]},{"k":3398,"v":[[0,2,["H3588"]],[2,5,["H2076"]],[5,7,["H2077"]],[7,9,["H8426"]],[9,12,["H3068"]],[12,13,["H2076"]],[13,18,["H7522"]]]},{"k":3399,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,9,["H398"]],[9,12,["H3498"]],[12,13,["H3808"]],[13,14,["H4480"]],[14,16,["H5704"]],[16,18,["H1242"]],[18,19,["H589"]],[19,22,["H3068"]]]},{"k":3400,"v":[[0,4,["H8104"]],[4,6,["H4687"]],[6,8,["H6213"]],[8,10,["H589"]],[10,13,["H3068"]]]},{"k":3401,"v":[[0,1,["H3808"]],[1,4,["H2490","(H853)"]],[4,6,["H6944"]],[6,7,["H8034"]],[7,12,["H6942"]],[12,13,["H8432"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,18,["H589"]],[18,21,["H3068"]],[21,23,["H6942"]],[23,24,[]]]},{"k":3402,"v":[[0,4,["H3318","(H853)"]],[4,7,["H4480","H776"]],[7,9,["H4714"]],[9,11,["H1961"]],[11,13,["H430"]],[13,14,["H589"]],[14,17,["H3068"]]]},{"k":3403,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3404,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,13,["H4150"]],[13,16,["H3068"]],[16,17,["H834","(H853)"]],[17,20,["H7121"]],[20,23,["H6944"]],[23,24,["H4744"]],[24,26,["H428"]],[26,29,["H4150"]]]},{"k":3405,"v":[[0,1,["H8337"]],[1,2,["H3117"]],[2,4,["H4399"]],[4,6,["H6213"]],[6,9,["H7637"]],[9,10,["H3117"]],[10,13,["H7676"]],[13,15,["H7677"]],[15,17,["H6944"]],[17,18,["H4744"]],[18,21,["H6213"]],[21,22,["H3808","H3605"]],[22,23,["H4399"]],[23,25,["H1931"]],[25,28,["H7676"]],[28,31,["H3068"]],[31,33,["H3605"]],[33,35,["H4186"]]]},{"k":3406,"v":[[0,1,["H428"]],[1,4,["H4150"]],[4,7,["H3068"]],[7,9,["H6944"]],[9,10,["H4744"]],[10,11,["H834"]],[11,14,["H7121"]],[14,17,["H4150"]]]},{"k":3407,"v":[[0,3,["H702","H6240"]],[3,7,["H7223"]],[7,8,["H2320"]],[8,9,["H996"]],[9,10,["H6153"]],[10,13,["H3068"]],[13,14,["H6453"]]]},{"k":3408,"v":[[0,4,["H2568","H6240"]],[4,5,["H3117"]],[5,8,["H2088"]],[8,9,["H2320"]],[9,12,["H2282"]],[12,15,["H4682"]],[15,18,["H3068"]],[18,19,["H7651"]],[19,20,["H3117"]],[20,23,["H398"]],[23,25,["H4682"]]]},{"k":3409,"v":[[0,3,["H7223"]],[3,4,["H3117"]],[4,7,["H1961"]],[7,9,["H6944"]],[9,10,["H4744"]],[10,13,["H6213"]],[13,14,["H3808","H3605"]],[14,15,["H5656"]],[15,16,["H4399"]],[16,17,[]]]},{"k":3410,"v":[[0,4,["H7126"]],[4,9,["H801"]],[9,12,["H3068"]],[12,13,["H7651"]],[13,14,["H3117"]],[14,17,["H7637"]],[17,18,["H3117"]],[18,21,["H6944"]],[21,22,["H4744"]],[22,25,["H6213"]],[25,26,["H3808","H3605"]],[26,27,["H5656"]],[27,28,["H4399"]],[28,29,[]]]},{"k":3411,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3412,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H3588"]],[11,14,["H935"]],[14,15,["H413"]],[15,17,["H776"]],[17,18,["H834"]],[18,19,["H589"]],[19,20,["H5414"]],[20,25,["H7114","(H853)"]],[25,27,["H7105"]],[27,32,["H935","(H853)"]],[32,34,["H6016"]],[34,37,["H7225"]],[37,40,["H7105"]],[40,41,["H413"]],[41,43,["H3548"]]]},{"k":3413,"v":[[0,4,["H5130","(H853)"]],[4,6,["H6016"]],[6,7,["H6440"]],[7,9,["H3068"]],[9,12,["H7522"]],[12,17,["H4480","H4283"]],[17,20,["H7676"]],[20,22,["H3548"]],[22,24,["H5130"]],[24,25,[]]]},{"k":3414,"v":[[0,4,["H6213"]],[4,6,["H3117"]],[6,9,["H5130","(H853)"]],[9,11,["H6016"]],[11,14,["H3532"]],[14,16,["H8549"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,24,["H5930"]],[24,27,["H3068"]]]},{"k":3415,"v":[[0,4,["H4503"]],[4,8,["H8147"]],[8,10,["H6241"]],[10,13,["H5560"]],[13,14,["H1101"]],[14,16,["H8081"]],[16,21,["H801"]],[21,24,["H3068"]],[24,27,["H5207"]],[27,28,["H7381"]],[28,32,["H5262"]],[32,37,["H3196"]],[37,39,["H7243"]],[39,43,["H1969"]]]},{"k":3416,"v":[[0,4,["H398"]],[4,5,["H3808"]],[5,6,["H3899"]],[6,9,["H7039"]],[9,12,["H3759"]],[12,13,["H5704"]],[13,15,["H2088","H6106"]],[15,16,["H3117"]],[16,17,["H5704"]],[17,20,["H935","(H853)"]],[20,22,["H7133"]],[22,25,["H430"]],[25,30,["H2708"]],[30,32,["H5769"]],[32,35,["H1755"]],[35,37,["H3605"]],[37,39,["H4186"]]]},{"k":3417,"v":[[0,4,["H5608"]],[4,9,["H4480","H4283"]],[9,12,["H7676"]],[12,15,["H4480","H3117"]],[15,18,["H935","(H853)"]],[18,20,["H6016"]],[20,24,["H8573"]],[24,25,["H7651"]],[25,26,["H7676"]],[26,28,["H1961"]],[28,29,["H8549"]]]},{"k":3418,"v":[[0,2,["H5704"]],[2,4,["H4480","H4283"]],[4,7,["H7637"]],[7,8,["H7676"]],[8,11,["H5608"]],[11,12,["H2572"]],[12,13,["H3117"]],[13,17,["H7126"]],[17,19,["H2319"]],[19,21,["H4503"]],[21,24,["H3068"]]]},{"k":3419,"v":[[0,3,["H935"]],[3,7,["H4480","H4186"]],[7,8,["H8147"]],[8,9,["H8573"]],[9,10,["H3899"]],[10,12,["H8147"]],[12,14,["H6241"]],[14,17,["H1961"]],[17,20,["H5560"]],[20,24,["H644"]],[24,26,["H2557"]],[26,30,["H1061"]],[30,33,["H3068"]]]},{"k":3420,"v":[[0,4,["H7126"]],[4,5,["H5921"]],[5,7,["H3899"]],[7,8,["H7651"]],[8,9,["H3532"]],[9,11,["H8549"]],[11,14,["H1121"]],[14,15,["H8141"]],[15,17,["H259"]],[17,18,["H1121","H1241"]],[18,19,["H6499"]],[19,21,["H8147"]],[21,22,["H352"]],[22,25,["H1961"]],[25,29,["H5930"]],[29,32,["H3068"]],[32,36,["H4503"]],[36,40,["H5262"]],[40,46,["H801"]],[46,48,["H5207"]],[48,49,["H7381"]],[49,52,["H3068"]]]},{"k":3421,"v":[[0,4,["H6213"]],[4,5,["H259"]],[5,6,["H8163"]],[6,9,["H5795"]],[9,13,["H2403"]],[13,15,["H8147"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,23,["H2077"]],[23,26,["H8002"]]]},{"k":3422,"v":[[0,3,["H3548"]],[3,5,["H5130"]],[5,7,["H5921"]],[7,9,["H3899"]],[9,12,["H1061"]],[12,16,["H8573"]],[16,17,["H6440"]],[17,19,["H3068"]],[19,20,["H5921"]],[20,22,["H8147"]],[22,23,["H3532"]],[23,26,["H1961"]],[26,27,["H6944"]],[27,30,["H3068"]],[30,33,["H3548"]]]},{"k":3423,"v":[[0,4,["H7121"]],[4,7,["H2088","H6106"]],[7,8,["H3117"]],[8,12,["H1961"]],[12,14,["H6944"]],[14,15,["H4744"]],[15,20,["H6213"]],[20,21,["H3808","H3605"]],[21,22,["H5656"]],[22,23,["H4399"]],[23,29,["H2708"]],[29,31,["H5769"]],[31,33,["H3605"]],[33,35,["H4186"]],[35,38,["H1755"]]]},{"k":3424,"v":[[0,4,["H7114","(H853)"]],[4,6,["H7105"]],[6,9,["H776"]],[9,12,["H3808"]],[12,15,["H3615"]],[15,18,["H6285"]],[18,21,["H7704"]],[21,24,["H7114"]],[24,25,["H3808"]],[25,28,["H3950"]],[28,30,["H3951"]],[30,33,["H7105"]],[33,36,["H5800"]],[36,40,["H6041"]],[40,44,["H1616"]],[44,45,["H589"]],[45,48,["H3068"]],[48,50,["H430"]]]},{"k":3425,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3426,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H559"]],[7,10,["H7637"]],[10,11,["H2320"]],[11,14,["H259"]],[14,18,["H2320"]],[18,21,["H1961"]],[21,23,["H7677"]],[23,25,["H2146"]],[25,29,["H8643"]],[29,31,["H6944"]],[31,32,["H4744"]]]},{"k":3427,"v":[[0,3,["H6213"]],[3,4,["H3808","H3605"]],[4,5,["H5656"]],[5,6,["H4399"]],[6,11,["H7126"]],[11,16,["H801"]],[16,19,["H3068"]]]},{"k":3428,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3429,"v":[[0,1,["H389"]],[1,4,["H6218"]],[4,7,["H2088"]],[7,8,["H7637"]],[8,9,["H2320"]],[9,14,["H3117"]],[14,16,["H3725"]],[16,19,["H1961"]],[19,21,["H6944"]],[21,22,["H4744"]],[22,28,["H6031","(H853)"]],[28,30,["H5315"]],[30,32,["H7126"]],[32,37,["H801"]],[37,40,["H3068"]]]},{"k":3430,"v":[[0,4,["H6213"]],[4,5,["H3808","H3605"]],[5,6,["H4399"]],[6,8,["H2088"]],[8,9,["H6106"]],[9,10,["H3117"]],[10,11,["H3588"]],[11,12,["H1931"]],[12,15,["H3117"]],[15,17,["H3725"]],[17,21,["H3722"]],[21,22,["H5921"]],[22,24,["H6440"]],[24,26,["H3068"]],[26,28,["H430"]]]},{"k":3431,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,3,["H5315"]],[3,6,["H834"]],[6,8,["H3808"]],[8,10,["H6031"]],[10,12,["H2088"]],[12,13,["H6106"]],[13,14,["H3117"]],[14,19,["H3772"]],[19,23,["H4480","H5971"]]]},{"k":3432,"v":[[0,2,["H3605"]],[2,3,["H5315"]],[3,6,["H834"]],[6,7,["H6213"]],[7,8,["H3605"]],[8,9,["H4399"]],[9,11,["H2088"]],[11,12,["H6106"]],[12,13,["H3117","(H853)"]],[13,15,["H1931"]],[15,16,["H5315"]],[16,19,["H6"]],[19,21,["H4480","H7130"]],[21,23,["H5971"]]]},{"k":3433,"v":[[0,3,["H6213"]],[3,4,["H3808"]],[4,5,["H3605"]],[5,7,["H4399"]],[7,12,["H2708"]],[12,14,["H5769"]],[14,17,["H1755"]],[17,19,["H3605"]],[19,21,["H4186"]]]},{"k":3434,"v":[[0,1,["H1931"]],[1,7,["H7676"]],[7,9,["H7677"]],[9,13,["H6031","(H853)"]],[13,15,["H5315"]],[15,18,["H8672"]],[18,22,["H2320"]],[22,24,["H6153"]],[24,26,["H4480","H6153"]],[26,27,["H5704"]],[27,28,["H6153"]],[28,31,["H7673"]],[31,33,["H7676"]]]},{"k":3435,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3436,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H559"]],[7,9,["H2568","H6240"]],[9,10,["H3117"]],[10,12,["H2088"]],[12,13,["H7637"]],[13,14,["H2320"]],[14,18,["H2282"]],[18,20,["H5521"]],[20,22,["H7651"]],[22,23,["H3117"]],[23,26,["H3068"]]]},{"k":3437,"v":[[0,3,["H7223"]],[3,4,["H3117"]],[4,8,["H6944"]],[8,9,["H4744"]],[9,12,["H6213"]],[12,13,["H3808","H3605"]],[13,14,["H5656"]],[14,15,["H4399"]],[15,16,[]]]},{"k":3438,"v":[[0,1,["H7651"]],[1,2,["H3117"]],[2,5,["H7126"]],[5,10,["H801"]],[10,13,["H3068"]],[13,16,["H8066"]],[16,17,["H3117"]],[17,19,["H1961"]],[19,21,["H6944"]],[21,22,["H4744"]],[22,28,["H7126"]],[28,33,["H801"]],[33,36,["H3068"]],[36,37,["H1931"]],[37,41,["H6116"]],[41,45,["H6213"]],[45,46,["H3808","H3605"]],[46,47,["H5656"]],[47,48,["H4399"]],[48,49,[]]]},{"k":3439,"v":[[0,1,["H428"]],[1,4,["H4150"]],[4,7,["H3068"]],[7,8,["H834","(H853)"]],[8,11,["H7121"]],[11,14,["H6944"]],[14,15,["H4744"]],[15,17,["H7126"]],[17,22,["H801"]],[22,25,["H3068"]],[25,28,["H5930"]],[28,32,["H4503"]],[32,34,["H2077"]],[34,37,["H5262"]],[37,39,["H1697"]],[39,42,["H3117","H3117"]]]},{"k":3440,"v":[[0,1,["H4480","H905"]],[1,3,["H7676"]],[3,6,["H3068"]],[6,8,["H4480","H905"]],[8,10,["H4979"]],[10,12,["H4480","H905"]],[12,13,["H3605"]],[13,15,["H5088"]],[15,17,["H4480","H905"]],[17,18,["H3605"]],[18,21,["H5071"]],[21,22,["H834"]],[22,24,["H5414"]],[24,27,["H3068"]]]},{"k":3441,"v":[[0,1,["H389"]],[1,4,["H2568","H6240"]],[4,5,["H3117"]],[5,8,["H7637"]],[8,9,["H2320"]],[9,14,["H622","(H853)"]],[14,16,["H8393"]],[16,19,["H776"]],[19,22,["H2287","(H853)"]],[22,24,["H2282"]],[24,27,["H3068"]],[27,28,["H7651"]],[28,29,["H3117"]],[29,32,["H7223"]],[32,33,["H3117"]],[33,37,["H7677"]],[37,41,["H8066"]],[41,42,["H3117"]],[42,46,["H7677"]]]},{"k":3442,"v":[[0,4,["H3947"]],[4,8,["H7223"]],[8,9,["H3117"]],[9,11,["H6529"]],[11,13,["H1926"]],[13,14,["H6086"]],[14,15,["H3709"]],[15,18,["H8558"]],[18,21,["H6057"]],[21,23,["H5687"]],[23,24,["H6086"]],[24,26,["H6155"]],[26,29,["H5158"]],[29,33,["H8055"]],[33,34,["H6440"]],[34,36,["H3068"]],[36,38,["H430"]],[38,39,["H7651"]],[39,40,["H3117"]]]},{"k":3443,"v":[[0,4,["H2287"]],[4,7,["H2282"]],[7,10,["H3068"]],[10,11,["H7651"]],[11,12,["H3117"]],[12,15,["H8141"]],[15,20,["H2708"]],[20,22,["H5769"]],[22,25,["H1755"]],[25,28,["H2287"]],[28,32,["H7637"]],[32,33,["H2320"]]]},{"k":3444,"v":[[0,3,["H3427"]],[3,5,["H5521"]],[5,6,["H7651"]],[6,7,["H3117"]],[7,8,["H3605"]],[8,11,["H3478"]],[11,12,["H249"]],[12,14,["H3427"]],[14,16,["H5521"]]]},{"k":3445,"v":[[0,1,["H4616"]],[1,3,["H1755"]],[3,5,["H3045"]],[5,6,["H3588"]],[6,8,["(H853)"]],[8,10,["H1121"]],[10,12,["H3478"]],[12,14,["H3427"]],[14,16,["H5521"]],[16,21,["H3318","(H853)"]],[21,24,["H4480","H776"]],[24,26,["H4714"]],[26,27,["H589"]],[27,30,["H3068"]],[30,32,["H430"]]]},{"k":3446,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H3478","(H853)"]],[8,10,["H4150"]],[10,13,["H3068"]]]},{"k":3447,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3448,"v":[[0,1,["H6680","(H853)"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,8,["H3947"]],[8,9,["H413"]],[9,11,["H2134"]],[11,12,["H8081"]],[12,13,["H2132"]],[13,14,["H3795"]],[14,17,["H3974"]],[17,21,["H5216"]],[21,23,["H5927"]],[23,24,["H8548"]]]},{"k":3449,"v":[[0,1,["H4480","H2351"]],[1,3,["H6532"]],[3,6,["H5715"]],[6,9,["H168"]],[9,12,["H4150"]],[12,14,["H175"]],[14,15,["H6186"]],[15,19,["H4480","H6153"]],[19,20,["H5704"]],[20,22,["H1242"]],[22,23,["H6440"]],[23,25,["H3068"]],[25,26,["H8548"]],[26,31,["H2708"]],[31,33,["H5769"]],[33,36,["H1755"]]]},{"k":3450,"v":[[0,3,["H6186","(H853)"]],[3,5,["H5216"]],[5,6,["H5921"]],[6,8,["H2889"]],[8,9,["H4501"]],[9,10,["H6440"]],[10,12,["H3068"]],[12,13,["H8548"]]]},{"k":3451,"v":[[0,4,["H3947"]],[4,6,["H5560"]],[6,8,["H644"]],[8,9,["H8147","H6240"]],[9,10,["H2471"]],[10,12,["H8147"]],[12,14,["H6241"]],[14,16,["H1961"]],[16,18,["H259"]],[18,19,["H2471"]]]},{"k":3452,"v":[[0,4,["H7760"]],[4,7,["H8147"]],[7,8,["H4634"]],[8,9,["H8337"]],[9,12,["H4635"]],[12,13,["H5921"]],[13,15,["H2889"]],[15,16,["H7979"]],[16,17,["H6440"]],[17,19,["H3068"]]]},{"k":3453,"v":[[0,4,["H5414"]],[4,5,["H2134"]],[5,6,["H3828"]],[6,7,["H5921"]],[7,9,["H4635"]],[9,13,["H1961"]],[13,16,["H3899"]],[16,19,["H234"]],[19,25,["H801"]],[25,28,["H3068"]]]},{"k":3454,"v":[[0,2,["H3117","H7676","H3117","H7676"]],[2,8,["H6186"]],[8,9,["H6440"]],[9,11,["H3068"]],[11,12,["H8548"]],[12,15,["H4480","H854"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,22,["H5769"]],[22,23,["H1285"]]]},{"k":3455,"v":[[0,4,["H1961"]],[4,5,["H175"]],[5,8,["H1121"]],[8,12,["H398"]],[12,16,["H6918"]],[16,17,["H4725"]],[17,18,["H3588"]],[18,19,["H1931"]],[19,22,["H6944","H6944"]],[22,33,["H4480","H801","H3068"]],[33,36,["H5769"]],[36,37,["H2706"]]]},{"k":3456,"v":[[0,3,["H1121"]],[3,6,["H3482"]],[6,7,["H802"]],[7,8,["H1931"]],[8,9,["H1121","H376"]],[9,12,["H4713"]],[12,14,["H3318"]],[14,15,["H8432"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,22,["H1121"]],[22,25,["H3482"]],[25,29,["H376"]],[29,31,["H3481"]],[31,33,["H5327"]],[33,36,["H4264"]]]},{"k":3457,"v":[[0,3,["H3482"]],[3,4,["H802"]],[4,5,["H1121"]],[5,6,["H5344","(H853)"]],[6,8,["H8034"]],[8,13,["H7043"]],[13,16,["H935"]],[16,18,["H413"]],[18,19,["H4872"]],[19,22,["H517"]],[22,23,["H8034"]],[23,25,["H8019"]],[25,27,["H1323"]],[27,29,["H1704"]],[29,32,["H4294"]],[32,34,["H1835"]]]},{"k":3458,"v":[[0,3,["H5117"]],[3,6,["H4929"]],[6,7,["H5921"]],[7,9,["H6310"]],[9,12,["H3068"]],[12,15,["H6567"]],[15,16,[]]]},{"k":3459,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3460,"v":[[0,2,["H3318","(H853)"]],[2,6,["H7043"]],[6,7,["H413","H4480","H2351"]],[7,9,["H4264"]],[9,12,["H3605"]],[12,14,["H8085"]],[14,16,["H5564","(H853)"]],[16,18,["H3027"]],[18,19,["H5921"]],[19,21,["H7218"]],[21,24,["H3605"]],[24,26,["H5712"]],[26,27,["H7275"]],[27,28,[]]]},{"k":3461,"v":[[0,4,["H1696"]],[4,5,["H413"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,10,["H559"]],[10,11,["H376","H376","H3588"]],[11,12,["H7043"]],[12,14,["H430"]],[14,16,["H5375"]],[16,18,["H2399"]]]},{"k":3462,"v":[[0,4,["H5344"]],[4,6,["H8034"]],[6,9,["H3068"]],[9,16,["H4191","H4191"]],[16,18,["H3605"]],[18,20,["H5712"]],[20,23,["H7275","H7275"]],[23,28,["H1616"]],[28,36,["H249"]],[36,39,["H5344"]],[39,41,["H8034"]],[41,49,["H4191"]]]},{"k":3463,"v":[[0,2,["H376"]],[2,3,["H3588"]],[3,4,["H5221"]],[4,5,["H3605"]],[5,6,["H5315","H120"]],[6,12,["H4191","H4191"]]]},{"k":3464,"v":[[0,4,["H5221"]],[4,6,["H5315","H929"]],[6,10,["H7999"]],[10,11,["H5315"]],[11,12,["H8478"]],[12,13,["H5315"]]]},{"k":3465,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H5414"]],[5,7,["H3971"]],[7,10,["H5997"]],[10,11,["H834"]],[11,14,["H6213"]],[14,15,["H3651"]],[15,19,["H6213"]],[19,21,[]]]},{"k":3466,"v":[[0,1,["H7667"]],[1,2,["H8478"]],[2,3,["H7667"]],[3,4,["H5869"]],[4,5,["H8478"]],[5,6,["H5869"]],[6,7,["H8127"]],[7,8,["H8478"]],[8,9,["H8127"]],[9,10,["H834"]],[10,13,["H5414"]],[13,15,["H3971"]],[15,18,["H120"]],[18,19,["H3651"]],[19,23,["H5414"]],[23,26,[]]]},{"k":3467,"v":[[0,4,["H5221"]],[4,6,["H929"]],[6,9,["H7999"]],[9,14,["H5221"]],[14,16,["H120"]],[16,22,["H4191"]]]},{"k":3468,"v":[[0,3,["H1961"]],[3,4,["H259"]],[4,7,["H4941"]],[7,9,["H1961"]],[9,12,["H1616"]],[12,19,["H249"]],[19,20,["H3588"]],[20,21,["H589"]],[21,24,["H3068"]],[24,26,["H430"]]]},{"k":3469,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,13,["H3318","(H853)"]],[13,17,["H7043"]],[17,19,["H413","H4480","H2351"]],[19,21,["H4264"]],[21,23,["H7275"]],[23,26,["H68"]],[26,29,["H1121"]],[29,31,["H3478"]],[31,32,["H6213"]],[32,33,["H834"]],[33,35,["H3068"]],[35,36,["H6680","(H853)"]],[36,37,["H4872"]]]},{"k":3470,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H2022"]],[8,9,["H5514"]],[9,10,["H559"]]]},{"k":3471,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H3588"]],[11,13,["H935"]],[13,14,["H413"]],[14,16,["H776"]],[16,17,["H834"]],[17,18,["H589"]],[18,19,["H5414"]],[19,24,["H776"]],[24,25,["H7673"]],[25,27,["H7676"]],[27,30,["H3068"]]]},{"k":3472,"v":[[0,1,["H8337"]],[1,2,["H8141"]],[2,5,["H2232"]],[5,7,["H7704"]],[7,9,["H8337"]],[9,10,["H8141"]],[10,13,["H2168"]],[13,15,["H3754"]],[15,18,["H622","(H853)"]],[18,20,["H8393"]],[20,21,[]]]},{"k":3473,"v":[[0,4,["H7637"]],[4,5,["H8141"]],[5,7,["H1961"]],[7,9,["H7676"]],[9,11,["H7677"]],[11,14,["H776"]],[14,16,["H7676"]],[16,19,["H3068"]],[19,22,["H3808"]],[22,23,["H2232"]],[23,25,["H7704"]],[25,26,["H3808"]],[26,27,["H2168"]],[27,29,["H3754"]]]},{"k":3474,"v":[[0,0,["(H853)"]],[0,7,["H5599"]],[7,10,["H7105"]],[10,13,["H3808"]],[13,14,["H7114"]],[14,15,["H3808"]],[15,16,["H1219"]],[16,18,["H6025"]],[18,22,["H5139"]],[22,25,["H1961"]],[25,27,["H8141"]],[27,29,["H7677"]],[29,32,["H776"]]]},{"k":3475,"v":[[0,3,["H7676"]],[3,6,["H776"]],[6,8,["H1961"]],[8,9,["H402"]],[9,17,["H5650"]],[17,21,["H519"]],[21,26,["H7916"]],[26,30,["H8453"]],[30,32,["H1481"]],[32,33,["H5973"]],[33,34,[]]]},{"k":3476,"v":[[0,4,["H929"]],[4,8,["H2416"]],[8,9,["H834"]],[9,13,["H776"]],[13,15,["H3605"]],[15,17,["H8393"]],[17,19,["H1961"]],[19,20,["H398"]]]},{"k":3477,"v":[[0,4,["H5608"]],[4,5,["H7651"]],[5,6,["H7676"]],[6,8,["H8141"]],[8,11,["H7651"]],[11,12,["H6471"]],[12,13,["H7651"]],[13,14,["H8141"]],[14,17,["H3117"]],[17,20,["H7651"]],[20,21,["H7676"]],[21,23,["H8141"]],[23,25,["H1961"]],[25,28,["H705"]],[28,30,["H8672"]],[30,31,["H8141"]]]},{"k":3478,"v":[[0,6,["H7782"]],[6,9,["H8643"]],[9,11,["H5674"]],[11,14,["H6218"]],[14,18,["H7637"]],[18,19,["H2320"]],[19,22,["H3117"]],[22,24,["H3725"]],[24,29,["H7782"]],[29,30,["H5674"]],[30,32,["H3605"]],[32,34,["H776"]]]},{"k":3479,"v":[[0,4,["H6942","(H853)"]],[4,6,["H2572"]],[6,7,["H8141"]],[7,9,["H7121"]],[9,10,["H1865"]],[10,14,["H776"]],[14,16,["H3605"]],[16,18,["H3427"]],[18,20,["H1931"]],[20,22,["H1961"]],[22,24,["H3104"]],[24,30,["H7725"]],[30,32,["H376"]],[32,33,["H413"]],[33,35,["H272"]],[35,39,["H7725"]],[39,41,["H376"]],[41,42,["H413"]],[42,44,["H4940"]]]},{"k":3480,"v":[[0,2,["H3104"]],[2,4,["H1931"]],[4,5,["H2572"]],[5,6,["H8141"]],[6,7,["H1961"]],[7,12,["H3808"]],[12,13,["H2232"]],[13,14,["H3808"]],[14,15,["H7114","(H853)"]],[15,20,["H5599"]],[20,23,["H3808"]],[23,24,["H1219"]],[24,28,["(H853)"]],[28,32,["H5139"]]]},{"k":3481,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,5,["H3104"]],[5,8,["H1961"]],[8,9,["H6944"]],[9,14,["H398","(H853)"]],[14,16,["H8393"]],[16,19,["H4480"]],[19,21,["H7704"]]]},{"k":3482,"v":[[0,3,["H8141"]],[3,5,["H2063"]],[5,6,["H3104"]],[6,9,["H7725"]],[9,11,["H376"]],[11,12,["H413"]],[12,14,["H272"]]]},{"k":3483,"v":[[0,2,["H3588"]],[2,4,["H4376"]],[4,5,["H4465"]],[5,8,["H5997"]],[8,9,["H176"]],[9,10,["H7069"]],[10,15,["H4480","H3027","H5997"]],[15,18,["H408"]],[18,19,["H3238"]],[19,20,["H376","(H853)"]],[20,21,["H251"]]]},{"k":3484,"v":[[0,4,["H4557"]],[4,6,["H8141"]],[6,7,["H310"]],[7,9,["H3104"]],[9,12,["H7069"]],[12,13,["H4480","H854"]],[13,15,["H5997"]],[15,20,["H4557"]],[20,22,["H8141"]],[22,25,["H8393"]],[25,28,["H4376"]],[28,30,[]]]},{"k":3485,"v":[[0,2,["H6310"]],[2,4,["H7230"]],[4,6,["H8141"]],[6,9,["H7235"]],[9,11,["H4736"]],[11,15,["H6310"]],[15,17,["H4591"]],[17,19,["H8141"]],[19,22,["H4591"]],[22,24,["H4736"]],[24,27,["H3588"]],[27,31,["H4557"]],[31,37,["H8393"]],[37,39,["H1931"]],[39,40,["H4376"]],[40,42,[]]]},{"k":3486,"v":[[0,3,["H3808"]],[3,5,["H3238","(H853)"]],[5,6,["H376"]],[6,7,["H5997"]],[7,13,["H3372","H4480","H430"]],[13,14,["H3588"]],[14,15,["H589"]],[15,18,["H3068"]],[18,20,["H430"]]]},{"k":3487,"v":[[0,4,["H6213","(H853)"]],[4,6,["H2708"]],[6,8,["H8104"]],[8,10,["H4941"]],[10,12,["H6213"]],[12,17,["H3427"]],[17,18,["H5921"]],[18,20,["H776"]],[20,22,["H983"]]]},{"k":3488,"v":[[0,3,["H776"]],[3,5,["H5414"]],[5,7,["H6529"]],[7,11,["H398"]],[11,13,["H7648"]],[13,15,["H3427"]],[15,16,["H5921"]],[16,18,["H983"]]]},{"k":3489,"v":[[0,2,["H3588"]],[2,5,["H559"]],[5,6,["H4100"]],[6,9,["H398"]],[9,11,["H7637"]],[11,12,["H8141"]],[12,13,["H2005"]],[13,16,["H3808"]],[16,17,["H2232"]],[17,18,["H3808"]],[18,20,["H622","(H853)"]],[20,22,["H8393"]]]},{"k":3490,"v":[[0,4,["H6680","(H853)"]],[4,6,["H1293"]],[6,11,["H8345"]],[11,12,["H8141"]],[12,17,["H6213","(H853)"]],[17,18,["H8393"]],[18,20,["H7969"]],[20,21,["H8141"]]]},{"k":3491,"v":[[0,4,["H2232"]],[4,5,["(H853)"]],[5,6,["H8066"]],[6,7,["H8141"]],[7,9,["H398"]],[9,11,["H4480"]],[11,12,["H3465"]],[12,13,["H8393"]],[13,14,["H5704"]],[14,16,["H8671"]],[16,17,["H8141"]],[17,18,["H5704"]],[18,20,["H8393"]],[20,22,["H935"]],[22,25,["H398"]],[25,28,["H3465"]],[28,29,[]]]},{"k":3492,"v":[[0,2,["H776"]],[2,4,["H3808"]],[4,6,["H4376"]],[6,8,["H6783"]],[8,9,["H3588"]],[9,11,["H776"]],[11,14,["H3588"]],[14,15,["H859"]],[15,17,["H1616"]],[17,19,["H8453"]],[19,20,["H5973"]],[20,21,[]]]},{"k":3493,"v":[[0,3,["H3605"]],[3,5,["H776"]],[5,8,["H272"]],[8,11,["H5414"]],[11,13,["H1353"]],[13,16,["H776"]]]},{"k":3494,"v":[[0,1,["H3588"]],[1,3,["H251"]],[3,6,["H4134"]],[6,10,["H4376"]],[10,14,["H4480","H272"]],[14,20,["H7138","H413"]],[20,21,["H935"]],[21,23,["H1350"]],[23,28,["H1350","(H853)"]],[28,33,["H4465","H251"]]]},{"k":3495,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H1961"]],[5,8,["H3808","H1350"]],[8,11,["H5381","H3027"]],[11,13,["H4672","H1767"]],[13,15,["H1353"]],[15,16,[]]]},{"k":3496,"v":[[0,4,["H2803","(H853)"]],[4,6,["H8141"]],[6,9,["H4465"]],[9,12,["H7725","(H853)"]],[12,14,["H5736"]],[14,17,["H376"]],[17,19,["H834"]],[19,21,["H4376"]],[21,26,["H7725"]],[26,29,["H272"]]]},{"k":3497,"v":[[0,2,["H518"]],[2,3,["H3027"]],[3,6,["H3808","H4672","H1767"]],[6,8,["H7725"]],[8,16,["H4465"]],[16,18,["H1961"]],[18,21,["H3027"]],[21,26,["H7069"]],[26,28,["H5704"]],[28,30,["H8141"]],[30,32,["H3104"]],[32,36,["H3104"]],[36,40,["H3318"]],[40,44,["H7725"]],[44,47,["H272"]]]},{"k":3498,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H4376"]],[5,7,["H4186"]],[7,8,["H1004"]],[8,11,["H2346"]],[11,12,["H5892"]],[12,16,["H1961","H1353"]],[16,18,["H5704"]],[18,20,["H8552"]],[20,21,["H8141"]],[21,25,["H4465"]],[25,29,["H3117"]],[29,32,["H1961","H1353"]],[32,33,[]]]},{"k":3499,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H1350"]],[6,7,["H5704"]],[7,9,["H4390"]],[9,12,["H8549"]],[12,13,["H8141"]],[13,16,["H1004"]],[16,17,["H834"]],[17,21,["H834","H2346"]],[21,22,["H5892"]],[22,25,["H6965"]],[25,27,["H6783"]],[27,31,["H7069"]],[31,35,["H1755"]],[35,38,["H3808"]],[38,40,["H3318"]],[40,43,["H3104"]]]},{"k":3500,"v":[[0,3,["H1004"]],[3,6,["H2691"]],[6,7,["H834"]],[7,9,["H369"]],[9,10,["H2346"]],[10,12,["H5439"]],[12,16,["H2803"]],[16,17,["H5921"]],[17,19,["H7704"]],[19,22,["H776"]],[22,25,["H1961"]],[25,26,["H1353"]],[26,31,["H3318"]],[31,34,["H3104"]]]},{"k":3501,"v":[[0,3,["H5892"]],[3,6,["H3881"]],[6,9,["H1004"]],[9,12,["H5892"]],[12,15,["H272"]],[15,18,["H3881"]],[18,19,["H1961","H1353"]],[19,22,["H5769"]]]},{"k":3502,"v":[[0,4,["H834"]],[4,5,["H1350"]],[5,6,["H4480"]],[6,8,["H3881"]],[8,11,["H1004"]],[11,14,["H4465"]],[14,17,["H5892"]],[17,20,["H272"]],[20,23,["H3318"]],[23,28,["H3104"]],[28,29,["H3588"]],[29,31,["H1004"]],[31,34,["H5892"]],[34,37,["H3881"]],[37,40,["H272"]],[40,41,["H8432"]],[41,43,["H1121"]],[43,45,["H3478"]]]},{"k":3503,"v":[[0,3,["H7704"]],[3,6,["H4054"]],[6,9,["H5892"]],[9,11,["H3808"]],[11,13,["H4376"]],[13,14,["H3588"]],[14,15,["H1931"]],[15,18,["H5769"]],[18,19,["H272"]]]},{"k":3504,"v":[[0,2,["H3588"]],[2,4,["H251"]],[4,7,["H4134"]],[7,11,["H4131","H3027"]],[11,12,["H5973"]],[12,17,["H2388"]],[17,24,["H1616"]],[24,27,["H8453"]],[27,31,["H2421"]],[31,32,["H5973"]],[32,33,[]]]},{"k":3505,"v":[[0,1,["H3947"]],[1,3,["H408"]],[3,4,["H5392"]],[4,5,["H4480","H854"]],[5,8,["H8636"]],[8,12,["H3372","H4480","H430"]],[12,15,["H251"]],[15,17,["H2421"]],[17,18,["H5973"]],[18,19,[]]]},{"k":3506,"v":[[0,3,["H3808"]],[3,4,["H5414"]],[4,5,["(H853)"]],[5,7,["H3701"]],[7,9,["H5392"]],[9,10,["H3808"]],[10,11,["H5414"]],[11,14,["H400"]],[14,16,["H4768"]]]},{"k":3507,"v":[[0,1,["H589"]],[1,4,["H3068"]],[4,6,["H430"]],[6,7,["H834"]],[7,10,["H3318","(H853)"]],[10,14,["H4480","H776"]],[14,16,["H4714"]],[16,18,["H5414"]],[18,19,["(H853)"]],[19,21,["H776"]],[21,23,["H3667"]],[23,26,["H1961"]],[26,28,["H430"]]]},{"k":3508,"v":[[0,2,["H3588"]],[2,4,["H251"]],[4,7,["H5973"]],[7,11,["H4134"]],[11,14,["H4376"]],[14,19,["H3808"]],[19,23,["H5647"]],[23,26,["H5656","H5650"]]]},{"k":3509,"v":[[0,5,["H7916"]],[5,9,["H8453"]],[9,12,["H1961"]],[12,13,["H5973"]],[13,17,["H5647","H5973"]],[17,19,["H5704"]],[19,21,["H8141"]],[21,23,["H3104"]]]},{"k":3510,"v":[[0,5,["H3318"]],[5,6,["H4480","H5973"]],[6,9,["H1931"]],[9,12,["H1121"]],[12,13,["H5973"]],[13,17,["H7725"]],[17,18,["H413"]],[18,21,["H4940"]],[21,23,["H413"]],[23,25,["H272"]],[25,28,["H1"]],[28,31,["H7725"]]]},{"k":3511,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,5,["H5650"]],[5,6,["H834"]],[6,9,["H3318"]],[9,13,["H4480","H776"]],[13,15,["H4714"]],[15,18,["H3808"]],[18,20,["H4376"]],[20,22,["H4466","H5650"]]]},{"k":3512,"v":[[0,3,["H3808"]],[3,4,["H7287"]],[4,8,["H6531"]],[8,13,["H3372","H4480","H430"]]]},{"k":3513,"v":[[0,3,["H5650"]],[3,6,["H519"]],[6,7,["H834"]],[7,10,["H1961"]],[10,13,["H4480","H854"]],[13,15,["H1471"]],[15,16,["H834"]],[16,19,["H5439"]],[19,21,["H4480"]],[21,25,["H7069"]],[25,26,["H5650"]],[26,28,["H519"]]]},{"k":3514,"v":[[0,1,["H1571"]],[1,4,["H4480","H1121"]],[4,7,["H8453"]],[7,10,["H1481"]],[10,11,["H5973"]],[11,13,["H4480"]],[13,17,["H7069"]],[17,21,["H4480","H4940"]],[21,22,["H834"]],[22,24,["H5973"]],[24,26,["H834"]],[26,28,["H3205"]],[28,31,["H776"]],[31,35,["H1961"]],[35,37,["H272"]]]},{"k":3515,"v":[[0,8,["H5157","(H853)"]],[8,11,["H1121"]],[11,12,["H310"]],[12,15,["H3423"]],[15,19,["H272"]],[19,24,["H5647"]],[24,26,["H5769"]],[26,30,["H251"]],[30,32,["H1121"]],[32,34,["H3478"]],[34,37,["H3808"]],[37,38,["H7287"]],[38,39,["H376"]],[39,41,["H251"]],[41,43,["H6531"]]]},{"k":3516,"v":[[0,2,["H3588"]],[2,4,["H3027","H1616"]],[4,6,["H8453"]],[6,8,["H5381"]],[8,9,["H5973"]],[9,13,["H251"]],[13,16,["H5973"]],[16,19,["H4134"]],[19,22,["H4376"]],[22,25,["H1616"]],[25,27,["H8453"]],[27,28,["H5973"]],[28,30,["H176"]],[30,33,["H6133"]],[33,36,["H1616"]],[36,37,["H4940"]]]},{"k":3517,"v":[[0,2,["H310"]],[2,5,["H4376"]],[5,8,["H1961"]],[8,10,["H1353"]],[10,11,["H259"]],[11,14,["H4480","H251"]],[14,16,["H1350"]],[16,17,[]]]},{"k":3518,"v":[[0,1,["H176"]],[1,3,["H1730"]],[3,4,["H176"]],[4,6,["H1730"]],[6,7,["H1121"]],[7,9,["H1350"]],[9,11,["H176"]],[11,15,["H4480","H7607"]],[15,17,["H1320"]],[17,22,["H4480","H4940"]],[22,24,["H1350"]],[24,26,["H176"]],[26,30,["H5381","H3027"]],[30,34,["H1350"]]]},{"k":3519,"v":[[0,4,["H2803"]],[4,5,["H5973"]],[5,8,["H7069"]],[8,12,["H4480","H8141"]],[12,16,["H4376"]],[16,19,["H5704"]],[19,21,["H8141"]],[21,23,["H3104"]],[23,26,["H3701"]],[26,29,["H4465"]],[29,31,["H1961"]],[31,35,["H4557"]],[35,37,["H8141"]],[37,41,["H3117"]],[41,45,["H7916"]],[45,48,["H1961"]],[48,49,["H5973"]],[49,50,[]]]},{"k":3520,"v":[[0,1,["H518"]],[1,4,["H5750"]],[4,5,["H7227"]],[5,6,["H8141"]],[6,9,["H6310"]],[9,14,["H7725"]],[14,19,["H1353"]],[19,23,["H4480","H3701"]],[23,27,["H4736"]],[27,28,[]]]},{"k":3521,"v":[[0,2,["H518"]],[2,4,["H7604"]],[4,6,["H4592"]],[6,7,["H8141"]],[7,8,["H5704"]],[8,10,["H8141"]],[10,12,["H3104"]],[12,16,["H2803"]],[16,21,["H6310"]],[21,23,["H8141"]],[23,28,["H7725","(H853)"]],[28,33,["H1353"]]]},{"k":3522,"v":[[0,4,["H8141","H8141"]],[4,6,["H7916"]],[6,9,["H1961"]],[9,10,["H5973"]],[10,16,["H3808"]],[16,20,["H7287","H6531"]],[20,24,["H5869"]]]},{"k":3523,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H1350"]],[6,8,["H428"]],[8,14,["H3318"]],[14,17,["H8141"]],[17,19,["H3104"]],[19,21,["H1931"]],[21,24,["H1121"]],[24,25,["H5973"]],[25,26,[]]]},{"k":3524,"v":[[0,1,["H3588"]],[1,5,["H1121"]],[5,7,["H3478"]],[7,9,["H5650"]],[9,10,["H1992"]],[10,13,["H5650"]],[13,14,["H834","(H853)"]],[14,17,["H3318"]],[17,21,["H4480","H776"]],[21,23,["H4714"]],[23,24,["H589"]],[24,27,["H3068"]],[27,29,["H430"]]]},{"k":3525,"v":[[0,3,["H6213"]],[3,5,["H3808"]],[5,6,["H457"]],[6,9,["H6459"]],[9,10,["H3808"]],[10,13,["H6965"]],[13,16,["H4676"]],[16,17,["H3808"]],[17,21,["H5414"]],[21,23,["H4906"]],[23,25,["H68"]],[25,28,["H776"]],[28,31,["H7812"]],[31,32,["H5921"]],[32,34,["H3588"]],[34,35,["H589"]],[35,38,["H3068"]],[38,40,["H430"]]]},{"k":3526,"v":[[0,3,["H8104","(H853)"]],[3,5,["H7676"]],[5,7,["H3372"]],[7,9,["H4720"]],[9,10,["H589"]],[10,13,["H3068"]]]},{"k":3527,"v":[[0,1,["H518"]],[1,3,["H1980"]],[3,6,["H2708"]],[6,8,["H8104"]],[8,10,["H4687"]],[10,12,["H6213"]],[12,13,[]]]},{"k":3528,"v":[[0,4,["H5414"]],[4,6,["H1653"]],[6,9,["H6256"]],[9,12,["H776"]],[12,14,["H5414"]],[14,16,["H2981"]],[16,19,["H6086"]],[19,22,["H7704"]],[22,24,["H5414"]],[24,26,["H6529"]]]},{"k":3529,"v":[[0,3,["H1786"]],[3,5,["H5381","(H853)"]],[5,8,["H1210"]],[8,11,["H1210"]],[11,13,["H5381","(H853)"]],[13,17,["H2233"]],[17,21,["H398"]],[21,23,["H3899"]],[23,26,["H7648"]],[26,28,["H3427"]],[28,31,["H776"]],[31,32,["H983"]]]},{"k":3530,"v":[[0,4,["H5414"]],[4,5,["H7965"]],[5,8,["H776"]],[8,13,["H7901"]],[13,15,["H369"]],[15,19,["H2729"]],[19,23,["H7673"]],[23,24,["H7451"]],[24,25,["H2416"]],[25,27,["H4480"]],[27,29,["H776"]],[29,30,["H3808"]],[30,33,["H2719"]],[33,34,["H5674"]],[34,37,["H776"]]]},{"k":3531,"v":[[0,4,["H7291","(H853)"]],[4,6,["H341"]],[6,10,["H5307"]],[10,11,["H6440"]],[11,15,["H2719"]]]},{"k":3532,"v":[[0,2,["H2568"]],[2,3,["H4480"]],[3,6,["H7291"]],[6,8,["H3967"]],[8,11,["H3967"]],[11,12,["H4480"]],[12,19,["H7291","H7233"]],[19,22,["H341"]],[22,24,["H5307"]],[24,25,["H6440"]],[25,29,["H2719"]]]},{"k":3533,"v":[[0,5,["H6437"]],[5,6,["H413"]],[6,11,["H6509","(H853)"]],[11,13,["H7235"]],[13,16,["H6965","(H853)"]],[16,18,["H1285"]],[18,19,["H854"]],[19,20,[]]]},{"k":3534,"v":[[0,4,["H398"]],[4,6,["H3465","H3462"]],[6,9,["H3318"]],[9,11,["H3465"]],[11,12,["H4480","H6440"]],[12,15,["H2319"]]]},{"k":3535,"v":[[0,4,["H5414"]],[4,6,["H4908"]],[6,7,["H8432"]],[7,11,["H5315"]],[11,13,["H3808"]],[13,14,["H1602"]],[14,15,[]]]},{"k":3536,"v":[[0,4,["H1980"]],[4,5,["H8432"]],[5,9,["H1961"]],[9,11,["H430"]],[11,13,["H859"]],[13,15,["H1961"]],[15,17,["H5971"]]]},{"k":3537,"v":[[0,1,["H589"]],[1,4,["H3068"]],[4,6,["H430"]],[6,7,["H834"]],[7,10,["H3318","(H853)"]],[10,14,["H4480","H776"]],[14,16,["H4714"]],[16,21,["H4480","H1961"]],[21,23,["H5650"]],[23,27,["H7665"]],[27,29,["H4133"]],[29,32,["H5923"]],[32,36,["H1980","(H853)"]],[36,37,["H6968"]]]},{"k":3538,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H8085"]],[6,11,["H3808"]],[11,12,["H6213","(H853)"]],[12,13,["H3605"]],[13,14,["H428"]],[14,15,["H4687"]]]},{"k":3539,"v":[[0,2,["H518"]],[2,5,["H3988"]],[5,7,["H2708"]],[7,9,["H518"]],[9,11,["H5315"]],[11,12,["H1602","(H853)"]],[12,14,["H4941"]],[14,19,["H1115"]],[19,20,["H6213","(H853)"]],[20,21,["H3605"]],[21,23,["H4687"]],[23,27,["H6565","(H853)"]],[27,29,["H1285"]]]},{"k":3540,"v":[[0,1,["H589"]],[1,2,["H637"]],[2,4,["H6213"]],[4,5,["H2063"]],[5,11,["H6485"]],[11,12,["H5921"]],[12,14,["H928","(H853)"]],[14,15,["H7829"]],[15,19,["H6920"]],[19,22,["H3615"]],[22,24,["H5869"]],[24,27,["H1727"]],[27,29,["H5315"]],[29,33,["H2232"]],[33,35,["H2233"]],[35,37,["H7385"]],[37,40,["H341"]],[40,42,["H398"]],[42,43,[]]]},{"k":3541,"v":[[0,4,["H5414"]],[4,6,["H6440"]],[6,13,["H5062"]],[13,14,["H6440"]],[14,16,["H341"]],[16,19,["H8130"]],[19,22,["H7287"]],[22,28,["H5127"]],[28,30,["H369"]],[30,31,["H7291"]],[31,32,[]]]},{"k":3542,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,7,["H5704"]],[7,9,["H428"]],[9,10,["H8085"]],[10,16,["H3256"]],[16,19,["H7651"]],[19,20,["H3254"]],[20,21,["H5921"]],[21,23,["H2403"]]]},{"k":3543,"v":[[0,4,["H7665","(H853)"]],[4,6,["H1347"]],[6,9,["H5797"]],[9,13,["H5414","(H853)"]],[13,15,["H8064"]],[15,17,["H1270"]],[17,20,["H776"]],[20,22,["H5154"]]]},{"k":3544,"v":[[0,3,["H3581"]],[3,6,["H8552"]],[6,8,["H7385"]],[8,11,["H776"]],[11,13,["H3808"]],[13,14,["H5414","(H853)"]],[14,16,["H2981"]],[16,17,["H3808"]],[17,20,["H6086"]],[20,23,["H776"]],[23,24,["H5414"]],[24,26,["H6529"]]]},{"k":3545,"v":[[0,2,["H518"]],[2,4,["H1980"]],[4,5,["H7147"]],[5,6,["H5973"]],[6,9,["H14"]],[9,10,["H3808"]],[10,11,["H8085"]],[11,19,["H3254","H7651"]],[19,20,["H4347"]],[20,21,["H5921"]],[21,26,["H2403"]]]},{"k":3546,"v":[[0,4,["H7971","(H853)"]],[4,5,["H7704"]],[5,6,["H2416"]],[6,15,["H7921","(H853)"]],[15,17,["H3772","(H853)"]],[17,19,["H929"]],[19,25,["H4591","(H853)"]],[25,29,["H1870"]],[29,32,["H8074"]]]},{"k":3547,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,7,["H3256"]],[7,12,["H428"]],[12,15,["H1980"]],[15,16,["H7147"]],[16,17,["H5973"]],[17,18,[]]]},{"k":3548,"v":[[0,3,["H589"]],[3,4,["H637"]],[4,5,["H1980"]],[5,6,["H7147"]],[6,7,["H5973"]],[7,11,["H5221"]],[11,13,["H1571"]],[13,15,["H7651"]],[15,16,["H5921"]],[16,18,["H2403"]]]},{"k":3549,"v":[[0,4,["H935"]],[4,6,["H2719"]],[6,7,["H5921"]],[7,11,["H5358"]],[11,13,["H5359"]],[13,16,["H1285"]],[16,22,["H622"]],[22,23,["H413"]],[23,25,["H5892"]],[25,28,["H7971"]],[28,30,["H1698"]],[30,31,["H8432"]],[31,37,["H5414"]],[37,40,["H3027"]],[40,43,["H341"]]]},{"k":3550,"v":[[0,5,["H7665"]],[5,7,["H4294"]],[7,10,["H3899"]],[10,11,["H6235"]],[11,12,["H802"]],[12,14,["H644"]],[14,16,["H3899"]],[16,18,["H259"]],[18,19,["H8574"]],[19,27,["H7725","H3899"]],[27,29,["H4948"]],[29,33,["H398"]],[33,35,["H3808"]],[35,37,["H7646"]]]},{"k":3551,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,8,["H2063"]],[8,9,["H8085"]],[9,13,["H1980"]],[13,14,["H7147"]],[14,15,["H5973"]],[15,16,[]]]},{"k":3552,"v":[[0,4,["H1980"]],[4,5,["H7147"]],[5,6,["H5973"]],[6,10,["H2534"]],[10,13,["H637"]],[13,14,["H589"]],[14,16,["H3256"]],[16,19,["H7651"]],[19,20,["H5921"]],[20,22,["H2403"]]]},{"k":3553,"v":[[0,4,["H398"]],[4,6,["H1320"]],[6,9,["H1121"]],[9,12,["H1320"]],[12,15,["H1323"]],[15,18,["H398"]]]},{"k":3554,"v":[[0,4,["H8045","(H853)"]],[4,7,["H1116"]],[7,10,["H3772","(H853)"]],[10,12,["H2553"]],[12,14,["H5414","(H853)"]],[14,16,["H6297"]],[16,17,["H5921"]],[17,19,["H6297"]],[19,22,["H1544"]],[22,25,["H5315"]],[25,27,["H1602"]],[27,28,[]]]},{"k":3555,"v":[[0,4,["H5414","(H853)"]],[4,6,["H5892"]],[6,7,["H2723"]],[7,13,["H8074","(H853)","H4720"]],[13,17,["H3808"]],[17,18,["H7306"]],[18,20,["H7381"]],[20,24,["H5207"]]]},{"k":3556,"v":[[0,2,["H589"]],[2,8,["H8074","(H853)","H776"]],[8,11,["H341"]],[11,13,["H3427"]],[13,17,["H8074"]],[17,18,["H5921"]],[18,19,[]]]},{"k":3557,"v":[[0,4,["H2219"]],[4,8,["H1471"]],[8,12,["H7324"]],[12,14,["H2719"]],[14,15,["H310"]],[15,19,["H776"]],[19,21,["H1961"]],[21,22,["H8077"]],[22,25,["H5892"]],[25,26,["H2723"]]]},{"k":3558,"v":[[0,1,["H227"]],[1,4,["H776"]],[4,5,["H7521","(H853)"]],[5,7,["H7676"]],[7,10,["H3605","H3117"]],[10,13,["H8074"]],[13,15,["H859"]],[15,19,["H341"]],[19,20,["H776"]],[20,22,["H227"]],[22,25,["H776"]],[25,26,["H7673"]],[26,28,["H7521","(H853)"]],[28,30,["H7676"]]]},{"k":3559,"v":[[0,3,["H3605","H3117"]],[3,6,["H8074"]],[6,9,["H7673","(H853)"]],[9,10,["H834"]],[10,13,["H3808"]],[13,14,["H7673"]],[14,17,["H7676"]],[17,20,["H3427"]],[20,21,["H5921"]],[21,22,[]]]},{"k":3560,"v":[[0,6,["H7604"]],[6,12,["H935"]],[12,14,["H4816"]],[14,17,["H3824"]],[17,20,["H776"]],[20,23,["H341"]],[23,26,["H6963"]],[26,29,["H5086"]],[29,30,["H5929"]],[30,32,["H7291"]],[32,37,["H5127"]],[37,39,["H4499"]],[39,42,["H2719"]],[42,46,["H5307"]],[46,48,["H369"]],[48,49,["H7291"]]]},{"k":3561,"v":[[0,4,["H3782"]],[4,5,["H376"]],[5,7,["H251"]],[7,11,["H4480","H6440"]],[11,13,["H2719"]],[13,15,["H369"]],[15,16,["H7291"]],[16,20,["H1961"]],[20,21,["H3808"]],[21,24,["H8617"]],[24,25,["H6440"]],[25,27,["H341"]]]},{"k":3562,"v":[[0,4,["H6"]],[4,7,["H1471"]],[7,10,["H776"]],[10,13,["H341"]],[13,17,["H398","(H853)"]]]},{"k":3563,"v":[[0,5,["H7604"]],[5,10,["H4743"]],[10,13,["H5771"]],[13,16,["H341"]],[16,17,["H776"]],[17,19,["H637"]],[19,22,["H5771"]],[22,25,["H1"]],[25,29,["H4743"]],[29,30,["H854"]],[30,31,[]]]},{"k":3564,"v":[[0,4,["H3034","(H853)"]],[4,6,["H5771"]],[6,9,["H5771"]],[9,12,["H1"]],[12,15,["H4604"]],[15,16,["H834"]],[16,18,["H4603"]],[18,22,["H834"]],[22,23,["H637"]],[23,26,["H1980"]],[26,27,["H7147"]],[27,28,["H5973"]],[28,29,[]]]},{"k":3565,"v":[[0,3,["H589"]],[3,4,["H637"]],[4,6,["H1980"]],[6,7,["H7147"]],[7,8,["H5973"]],[8,12,["H935"]],[12,16,["H776"]],[16,19,["H341"]],[19,20,["H176"]],[20,21,["H227"]],[21,23,["H6189"]],[23,24,["H3824"]],[24,26,["H3665"]],[26,29,["H227"]],[29,30,["H7521"]],[30,31,["(H853)"]],[31,36,["H5771"]]]},{"k":3566,"v":[[0,4,["H2142","(H853)"]],[4,6,["H1285"]],[6,8,["H3290"]],[8,10,["H637","(H853)"]],[10,12,["H1285"]],[12,14,["H3327"]],[14,16,["H637","(H853)"]],[16,18,["H1285"]],[18,20,["H85"]],[20,23,["H2142"]],[23,27,["H2142"]],[27,29,["H776"]]]},{"k":3567,"v":[[0,2,["H776"]],[2,6,["H5800"]],[6,7,["H4480"]],[7,11,["H7521","(H853)"]],[11,13,["H7676"]],[13,17,["H8074"]],[17,18,["H4480"]],[18,21,["H1992"]],[21,23,["H7521","(H853)"]],[23,29,["H5771"]],[29,30,["H3282"]],[30,32,["H3282"]],[32,34,["H3988"]],[34,36,["H4941"]],[36,40,["H5315"]],[40,41,["H1602"]],[41,43,["H2708"]]]},{"k":3568,"v":[[0,2,["H637"]],[2,5,["H1571","H2063"]],[5,8,["H1961"]],[8,11,["H776"]],[11,14,["H341"]],[14,17,["H3808"]],[17,20,["H3988"]],[20,21,["H3808"]],[21,24,["H1602"]],[24,29,["H3615"]],[29,32,["H6565"]],[32,34,["H1285"]],[34,35,["H854"]],[35,37,["H3588"]],[37,38,["H589"]],[38,41,["H3068"]],[41,43,["H430"]]]},{"k":3569,"v":[[0,7,["H2142"]],[7,9,["H1285"]],[9,12,["H7223"]],[12,13,["H834","(H853)"]],[13,16,["H3318"]],[16,20,["H4480","H776"]],[20,22,["H4714"]],[22,25,["H5869"]],[25,28,["H1471"]],[28,32,["H1961"]],[32,34,["H430"]],[34,35,["H589"]],[35,38,["H3068"]]]},{"k":3570,"v":[[0,1,["H428"]],[1,4,["H2706"]],[4,6,["H4941"]],[6,8,["H8451"]],[8,9,["H834"]],[9,11,["H3068"]],[11,12,["H5414"]],[12,13,["H996"]],[13,17,["H1121"]],[17,19,["H3478"]],[19,21,["H2022"]],[21,22,["H5514"]],[22,25,["H3027"]],[25,27,["H4872"]]]},{"k":3571,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3572,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H3588"]],[11,13,["H376"]],[13,17,["H6381"]],[17,18,["H5088"]],[18,20,["H5315"]],[20,25,["H3068"]],[25,28,["H6187"]]]},{"k":3573,"v":[[0,3,["H6187"]],[3,5,["H1961"]],[5,8,["H2145"]],[8,12,["H4480","H1121","H6242","H8141"]],[12,14,["H5704"]],[14,15,["H8346"]],[15,16,["H8141"]],[16,17,["H1121"]],[17,20,["H6187"]],[20,22,["H1961"]],[22,23,["H2572"]],[23,24,["H8255"]],[24,26,["H3701"]],[26,29,["H8255"]],[29,32,["H6944"]]]},{"k":3574,"v":[[0,2,["H518"]],[2,3,["H1931"]],[3,6,["H5347"]],[6,9,["H6187"]],[9,11,["H1961"]],[11,12,["H7970"]],[12,13,["H8255"]]]},{"k":3575,"v":[[0,2,["H518"]],[2,8,["H4480","H1121","H2568","H8141"]],[8,10,["H5704"]],[10,11,["H6242"]],[11,12,["H8141"]],[12,13,["H1121"]],[13,16,["H6187"]],[16,18,["H1961"]],[18,21,["H2145"]],[21,22,["H6242"]],[22,23,["H8255"]],[23,27,["H5347"]],[27,28,["H6235"]],[28,29,["H8255"]]]},{"k":3576,"v":[[0,2,["H518"]],[2,8,["H4480","H1121","H2320"]],[8,10,["H5704"]],[10,11,["H2568"]],[11,12,["H8141"]],[12,13,["H1121"]],[13,16,["H6187"]],[16,18,["H1961"]],[18,21,["H2145"]],[21,22,["H2568"]],[22,23,["H8255"]],[23,25,["H3701"]],[25,29,["H5347"]],[29,31,["H6187"]],[31,34,["H7969"]],[34,35,["H8255"]],[35,37,["H3701"]]]},{"k":3577,"v":[[0,2,["H518"]],[2,8,["H4480","H1121","H8346","H8141"]],[8,10,["H4605"]],[10,11,["H518"]],[11,15,["H2145"]],[15,18,["H6187"]],[18,20,["H1961"]],[20,21,["H2568","H6240"]],[21,22,["H8255"]],[22,26,["H5347"]],[26,27,["H6235"]],[27,28,["H8255"]]]},{"k":3578,"v":[[0,2,["H518"]],[2,3,["H1931"]],[3,5,["H4134"]],[5,8,["H4480","H6187"]],[8,13,["H5975"]],[13,14,["H6440"]],[14,16,["H3548"]],[16,19,["H3548"]],[19,21,["H6186"]],[21,24,["H5921","H6310","H834"]],[24,26,["H5381","H3027"]],[26,28,["H5087"]],[28,31,["H3548"]],[31,32,["H6186"]],[32,33,[]]]},{"k":3579,"v":[[0,2,["H518"]],[2,6,["H929"]],[6,7,["H834","H4480"]],[7,9,["H7126"]],[9,11,["H7133"]],[11,14,["H3068"]],[14,15,["H3605"]],[15,16,["H834"]],[16,19,["H5414"]],[19,20,["H4480"]],[20,24,["H3068"]],[24,26,["H1961"]],[26,27,["H6944"]]]},{"k":3580,"v":[[0,3,["H3808"]],[3,4,["H2498"]],[4,6,["H3808"]],[6,7,["H4171"]],[7,10,["H2896"]],[10,13,["H7451"]],[13,14,["H176"]],[14,16,["H7451"]],[16,19,["H2896"]],[19,21,["H518"]],[21,26,["H4171","H4171"]],[26,27,["H929"]],[27,29,["H929"]],[29,31,["H1931"]],[31,34,["H8545"]],[34,37,["H1961"]],[37,38,["H6944"]]]},{"k":3581,"v":[[0,2,["H518"]],[2,5,["H3605"]],[5,6,["H2931"]],[6,7,["H929"]],[7,9,["H834","H4480"]],[9,12,["H3808"]],[12,13,["H7126"]],[13,15,["H7133"]],[15,18,["H3068"]],[18,22,["H5975","(H853)"]],[22,24,["H929"]],[24,25,["H6440"]],[25,27,["H3548"]]]},{"k":3582,"v":[[0,3,["H3548"]],[3,5,["H6186"]],[5,7,["H996"]],[7,10,["H2896"]],[10,12,["H7451"]],[12,15,["H6187"]],[15,20,["H3548"]],[20,21,["H3651"]],[21,24,["H1961"]]]},{"k":3583,"v":[[0,2,["H518"]],[2,7,["H1350","H1350"]],[7,12,["H3254"]],[12,14,["H2549"]],[14,17,["H5921"]],[17,19,["H6187"]]]},{"k":3584,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,6,["H6942","(H853)"]],[6,8,["H1004"]],[8,11,["H6944"]],[11,14,["H3068"]],[14,17,["H3548"]],[17,19,["H6186"]],[19,21,["H996"]],[21,24,["H2896"]],[24,26,["H7451"]],[26,27,["H834"]],[27,29,["H3548"]],[29,31,["H6186"]],[31,33,["H3651"]],[33,36,["H6965"]]]},{"k":3585,"v":[[0,2,["H518"]],[2,5,["H6942"]],[5,8,["H1350","(H853)"]],[8,10,["H1004"]],[10,14,["H3254"]],[14,16,["H2549"]],[16,20,["H3701"]],[20,23,["H6187"]],[23,24,["H5921"]],[24,29,["H1961"]],[29,30,[]]]},{"k":3586,"v":[[0,2,["H518"]],[2,4,["H376"]],[4,6,["H6942"]],[6,9,["H3068"]],[9,14,["H4480","H7704"]],[14,17,["H272"]],[17,20,["H6187"]],[20,22,["H1961"]],[22,24,["H6310"]],[24,26,["H2233"]],[26,29,["H2563"]],[29,31,["H8184"]],[31,32,["H2233"]],[32,37,["H2572"]],[37,38,["H8255"]],[38,40,["H3701"]]]},{"k":3587,"v":[[0,1,["H518"]],[1,3,["H6942"]],[3,5,["H7704"]],[5,8,["H4480","H8141"]],[8,10,["H3104"]],[10,14,["H6187"]],[14,17,["H6965"]]]},{"k":3588,"v":[[0,2,["H518"]],[2,4,["H6942"]],[4,6,["H7704"]],[6,7,["H310"]],[7,9,["H3104"]],[9,12,["H3548"]],[12,14,["H2803"]],[14,16,["(H853)"]],[16,18,["H3701"]],[18,20,["H5921","H6310"]],[20,22,["H8141"]],[22,24,["H3498"]],[24,26,["H5704"]],[26,28,["H8141"]],[28,31,["H3104"]],[31,36,["H1639"]],[36,39,["H4480","H6187"]]]},{"k":3589,"v":[[0,2,["H518"]],[2,5,["H6942","(H853)"]],[5,7,["H7704"]],[7,12,["H1350","H1350"]],[12,17,["H3254"]],[17,19,["H2549"]],[19,23,["H3701"]],[23,26,["H6187"]],[26,27,["H5921"]],[27,33,["H6965"]],[33,35,[]]]},{"k":3590,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H1350","(H853)"]],[6,8,["H7704"]],[8,10,["H518"]],[10,13,["H4376","(H853)"]],[13,15,["H7704"]],[15,17,["H312"]],[17,18,["H376"]],[18,21,["H3808"]],[21,23,["H1350"]],[23,25,["H5750"]]]},{"k":3591,"v":[[0,3,["H7704"]],[3,7,["H3318"]],[7,10,["H3104"]],[10,12,["H1961"]],[12,13,["H6944"]],[13,16,["H3068"]],[16,19,["H7704"]],[19,20,["H2764"]],[20,22,["H272"]],[22,25,["H1961"]],[25,27,["H3548"]]]},{"k":3592,"v":[[0,2,["H518"]],[2,5,["H6942"]],[5,8,["H3068","(H853)"]],[8,10,["H7704"]],[10,14,["H4736"]],[14,15,["H834"]],[15,17,["H3808"]],[17,20,["H4480","H7704"]],[20,23,["H272"]]]},{"k":3593,"v":[[0,3,["H3548"]],[3,5,["H2803"]],[5,7,["(H853)"]],[7,9,["H4373"]],[9,12,["H6187"]],[12,14,["H5704"]],[14,16,["H8141"]],[16,19,["H3104"]],[19,23,["H5414","(H853)"]],[23,25,["H6187"]],[25,27,["H1931"]],[27,28,["H3117"]],[28,32,["H6944"]],[32,35,["H3068"]]]},{"k":3594,"v":[[0,3,["H8141"]],[3,6,["H3104"]],[6,8,["H7704"]],[8,10,["H7725"]],[10,12,["H834"]],[12,14,["H4480","H854"]],[14,17,["H7069"]],[17,22,["H834"]],[22,24,["H272"]],[24,27,["H776"]],[27,29,[]]]},{"k":3595,"v":[[0,2,["H3605"]],[2,4,["H6187"]],[4,6,["H1961"]],[6,10,["H8255"]],[10,13,["H6944"]],[13,14,["H6242"]],[14,15,["H1626"]],[15,17,["H1961"]],[17,19,["H8255"]]]},{"k":3596,"v":[[0,1,["H389"]],[1,3,["H1060"]],[3,6,["H929"]],[6,7,["H834"]],[7,11,["H3068"]],[11,12,["H1069"]],[12,13,["H3808"]],[13,14,["H376"]],[14,16,["H6942"]],[16,18,["H518"]],[18,21,["H7794"]],[21,22,["H518"]],[22,23,["H7716"]],[23,24,["H1931"]],[24,27,["H3068"]]]},{"k":3597,"v":[[0,2,["H518"]],[2,7,["H2931"]],[7,8,["H929"]],[8,12,["H6299"]],[12,17,["H6187"]],[17,20,["H3254"]],[20,22,["H2549"]],[22,26,["H5921"]],[26,28,["H518"]],[28,31,["H3808"]],[31,32,["H1350"]],[32,37,["H4376"]],[37,41,["H6187"]]]},{"k":3598,"v":[[0,1,["H389"]],[1,2,["H3808","H3605"]],[2,4,["H2764"]],[4,5,["H834"]],[5,7,["H376"]],[7,9,["H2763"]],[9,12,["H3068"]],[12,14,["H4480","H3605"]],[14,15,["H834"]],[15,20,["H4480","H120"]],[20,22,["H929"]],[22,26,["H4480","H7704"]],[26,29,["H272"]],[29,32,["H4376"]],[32,34,["H1350"]],[34,35,["H3605"]],[35,37,["H2764"]],[37,40,["H6944","H6944"]],[40,43,["H3068"]]]},{"k":3599,"v":[[0,1,["H3808","H3605"]],[1,2,["H2764"]],[2,3,["H834"]],[3,6,["H2763"]],[6,7,["H4480"]],[7,8,["H120"]],[8,11,["H6299"]],[11,18,["H4191","H4191"]]]},{"k":3600,"v":[[0,2,["H3605"]],[2,4,["H4643"]],[4,7,["H776"]],[7,11,["H4480","H2233"]],[11,14,["H776"]],[14,18,["H4480","H6529"]],[18,21,["H6086"]],[21,24,["H3068"]],[24,27,["H6944"]],[27,30,["H3068"]]]},{"k":3601,"v":[[0,2,["H518"]],[2,4,["H376"]],[4,8,["H1350","H1350"]],[8,12,["H4480","H4643"]],[12,15,["H3254"]],[15,16,["H5921"]],[16,18,["H2549"]],[18,20,[]]]},{"k":3602,"v":[[0,2,["H3605"]],[2,4,["H4643"]],[4,7,["H1241"]],[7,11,["H6629"]],[11,14,["H3605","H834"]],[14,15,["H5674"]],[15,16,["H8478"]],[16,18,["H7626"]],[18,20,["H6224"]],[20,22,["H1961"]],[22,23,["H6944"]],[23,26,["H3068"]]]},{"k":3603,"v":[[0,3,["H3808"]],[3,4,["H1239"]],[4,5,["H996"]],[5,8,["H2896"]],[8,10,["H7451"]],[10,11,["H3808"]],[11,14,["H4171"]],[14,17,["H518"]],[17,22,["H4171","H4171"]],[22,25,["H1931"]],[25,28,["H8545"]],[28,31,["H1961"]],[31,32,["H6944"]],[32,35,["H3808"]],[35,37,["H1350"]]]},{"k":3604,"v":[[0,1,["H428"]],[1,4,["H4687"]],[4,5,["H834"]],[5,7,["H3068"]],[7,8,["H6680","(H853)"]],[8,9,["H4872"]],[9,10,["H413"]],[10,12,["H1121"]],[12,14,["H3478"]],[14,16,["H2022"]],[16,17,["H5514"]]]},{"k":3605,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H4057"]],[9,11,["H5514"]],[11,14,["H168"]],[14,17,["H4150"]],[17,20,["H259"]],[20,24,["H8145"]],[24,25,["H2320"]],[25,28,["H8145"]],[28,29,["H8141"]],[29,34,["H3318"]],[34,37,["H4480","H776"]],[37,39,["H4714"]],[39,40,["H559"]]]},{"k":3606,"v":[[0,1,["H5375"]],[1,2,["(H853)"]],[2,4,["H7218"]],[4,6,["H3605"]],[6,8,["H5712"]],[8,11,["H1121"]],[11,13,["H3478"]],[13,16,["H4940"]],[16,19,["H1004"]],[19,22,["H1"]],[22,25,["H4557"]],[25,28,["H8034"]],[28,29,["H3605"]],[29,30,["H2145"]],[30,33,["H1538"]]]},{"k":3607,"v":[[0,2,["H6242"]],[2,3,["H8141"]],[3,4,["H4480","H1121"]],[4,6,["H4605"]],[6,7,["H3605"]],[7,13,["H3318"]],[13,15,["H6635"]],[15,17,["H3478"]],[17,18,["H859"]],[18,20,["H175"]],[20,22,["H6485"]],[22,26,["H6635"]]]},{"k":3608,"v":[[0,2,["H854"]],[2,6,["H1961"]],[6,8,["H376"]],[8,10,["H376"]],[10,11,["H4294"]],[11,13,["H376"]],[13,14,["H7218"]],[14,17,["H1004"]],[17,20,["H1"]]]},{"k":3609,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H376"]],[8,9,["H834"]],[9,11,["H5975"]],[11,12,["H854"]],[12,18,["H7205"]],[18,19,["H468"]],[19,21,["H1121"]],[21,23,["H7707"]]]},{"k":3610,"v":[[0,2,["H8095"]],[2,3,["H8017"]],[3,5,["H1121"]],[5,7,["H6701"]]]},{"k":3611,"v":[[0,2,["H3063"]],[2,3,["H5177"]],[3,5,["H1121"]],[5,7,["H5992"]]]},{"k":3612,"v":[[0,2,["H3485"]],[2,3,["H5417"]],[3,5,["H1121"]],[5,7,["H6686"]]]},{"k":3613,"v":[[0,2,["H2074"]],[2,3,["H446"]],[3,5,["H1121"]],[5,7,["H2497"]]]},{"k":3614,"v":[[0,3,["H1121"]],[3,5,["H3130"]],[5,7,["H669"]],[7,8,["H476"]],[8,10,["H1121"]],[10,12,["H5989"]],[12,14,["H4519"]],[14,15,["H1583"]],[15,17,["H1121"]],[17,19,["H6301"]]]},{"k":3615,"v":[[0,2,["H1144"]],[2,3,["H27"]],[3,5,["H1121"]],[5,7,["H1441"]]]},{"k":3616,"v":[[0,2,["H1835"]],[2,3,["H295"]],[3,5,["H1121"]],[5,7,["H5996"]]]},{"k":3617,"v":[[0,2,["H836"]],[2,3,["H6295"]],[3,5,["H1121"]],[5,7,["H5918"]]]},{"k":3618,"v":[[0,2,["H1410"]],[2,3,["H460"]],[3,5,["H1121"]],[5,7,["H1845"]]]},{"k":3619,"v":[[0,2,["H5321"]],[2,3,["H299"]],[3,5,["H1121"]],[5,7,["H5881"]]]},{"k":3620,"v":[[0,1,["H428"]],[1,4,["H7121"]],[4,7,["H5712"]],[7,8,["H5387"]],[8,11,["H4294"]],[11,14,["H1"]],[14,15,["H7218"]],[15,17,["H505"]],[17,19,["H3478"]]]},{"k":3621,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,5,["H3947","(H853)"]],[5,6,["H428"]],[6,7,["H376"]],[7,8,["H834"]],[8,10,["H5344"]],[10,13,["H8034"]]]},{"k":3622,"v":[[0,3,["H6950"]],[3,4,["H3605"]],[4,6,["H5712"]],[6,10,["H259"]],[10,14,["H8145"]],[14,15,["H2320"]],[15,20,["H3205"]],[20,21,["H5921"]],[21,23,["H4940"]],[23,26,["H1004"]],[26,29,["H1"]],[29,33,["H4557"]],[33,36,["H8034"]],[36,38,["H6242"]],[38,39,["H8141"]],[39,40,["H4480","H1121"]],[40,42,["H4605"]],[42,45,["H1538"]]]},{"k":3623,"v":[[0,1,["H834"]],[1,3,["H3068"]],[3,4,["H6680","(H853)"]],[4,5,["H4872"]],[5,8,["H6485"]],[8,12,["H4057"]],[12,14,["H5514"]]]},{"k":3624,"v":[[0,3,["H1121"]],[3,5,["H7205"]],[5,6,["H3478"]],[6,8,["H1060"]],[8,11,["H8435"]],[11,14,["H4940"]],[14,17,["H1004"]],[17,20,["H1"]],[20,24,["H4557"]],[24,27,["H8034"]],[27,30,["H1538"]],[30,31,["H3605"]],[31,32,["H2145"]],[32,34,["H6242"]],[34,35,["H8141"]],[35,36,["H4480","H1121"]],[36,38,["H4605"]],[38,39,["H3605"]],[39,45,["H3318"]],[45,47,["H6635"]]]},{"k":3625,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H7205"]],[12,14,["H705"]],[14,16,["H8337"]],[16,17,["H505"]],[17,19,["H2568"]],[19,20,["H3967"]]]},{"k":3626,"v":[[0,3,["H1121"]],[3,5,["H8095"]],[5,8,["H8435"]],[8,11,["H4940"]],[11,14,["H1004"]],[14,17,["H1"]],[17,21,["H6485"]],[21,27,["H4557"]],[27,30,["H8034"]],[30,33,["H1538"]],[33,34,["H3605"]],[34,35,["H2145"]],[35,37,["H6242"]],[37,38,["H8141"]],[38,39,["H4480","H1121"]],[39,41,["H4605"]],[41,42,["H3605"]],[42,48,["H3318"]],[48,50,["H6635"]]]},{"k":3627,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H8095"]],[12,14,["H2572"]],[14,16,["H8672"]],[16,17,["H505"]],[17,19,["H7969"]],[19,20,["H3967"]]]},{"k":3628,"v":[[0,3,["H1121"]],[3,5,["H1410"]],[5,8,["H8435"]],[8,11,["H4940"]],[11,14,["H1004"]],[14,17,["H1"]],[17,21,["H4557"]],[21,24,["H8034"]],[24,26,["H6242"]],[26,27,["H8141"]],[27,28,["H4480","H1121"]],[28,30,["H4605"]],[30,31,["H3605"]],[31,37,["H3318"]],[37,39,["H6635"]]]},{"k":3629,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H1410"]],[12,14,["H705"]],[14,16,["H2568"]],[16,17,["H505"]],[17,18,["H8337"]],[18,19,["H3967"]],[19,21,["H2572"]]]},{"k":3630,"v":[[0,3,["H1121"]],[3,5,["H3063"]],[5,8,["H8435"]],[8,11,["H4940"]],[11,14,["H1004"]],[14,17,["H1"]],[17,21,["H4557"]],[21,24,["H8034"]],[24,26,["H6242"]],[26,27,["H8141"]],[27,28,["H4480","H1121"]],[28,30,["H4605"]],[30,31,["H3605"]],[31,37,["H3318"]],[37,39,["H6635"]]]},{"k":3631,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H3063"]],[12,16,["H7657","H702"]],[16,17,["H505"]],[17,19,["H8337"]],[19,20,["H3967"]]]},{"k":3632,"v":[[0,3,["H1121"]],[3,5,["H3485"]],[5,8,["H8435"]],[8,11,["H4940"]],[11,14,["H1004"]],[14,17,["H1"]],[17,21,["H4557"]],[21,24,["H8034"]],[24,26,["H6242"]],[26,27,["H8141"]],[27,28,["H4480","H1121"]],[28,30,["H4605"]],[30,31,["H3605"]],[31,37,["H3318"]],[37,39,["H6635"]]]},{"k":3633,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H3485"]],[12,14,["H2572"]],[14,16,["H702"]],[16,17,["H505"]],[17,19,["H702"]],[19,20,["H3967"]]]},{"k":3634,"v":[[0,3,["H1121"]],[3,5,["H2074"]],[5,8,["H8435"]],[8,11,["H4940"]],[11,14,["H1004"]],[14,17,["H1"]],[17,21,["H4557"]],[21,24,["H8034"]],[24,26,["H6242"]],[26,27,["H8141"]],[27,28,["H4480","H1121"]],[28,30,["H4605"]],[30,31,["H3605"]],[31,37,["H3318"]],[37,39,["H6635"]]]},{"k":3635,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H2074"]],[12,14,["H2572"]],[14,16,["H7651"]],[16,17,["H505"]],[17,19,["H702"]],[19,20,["H3967"]]]},{"k":3636,"v":[[0,3,["H1121"]],[3,5,["H3130"]],[5,9,["H1121"]],[9,11,["H669"]],[11,14,["H8435"]],[14,17,["H4940"]],[17,20,["H1004"]],[20,23,["H1"]],[23,27,["H4557"]],[27,30,["H8034"]],[30,32,["H6242"]],[32,33,["H8141"]],[33,34,["H4480","H1121"]],[34,36,["H4605"]],[36,37,["H3605"]],[37,43,["H3318"]],[43,45,["H6635"]]]},{"k":3637,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H669"]],[12,14,["H705"]],[14,15,["H505"]],[15,17,["H2568"]],[17,18,["H3967"]]]},{"k":3638,"v":[[0,3,["H1121"]],[3,5,["H4519"]],[5,8,["H8435"]],[8,11,["H4940"]],[11,14,["H1004"]],[14,17,["H1"]],[17,21,["H4557"]],[21,24,["H8034"]],[24,26,["H6242"]],[26,27,["H8141"]],[27,28,["H4480","H1121"]],[28,30,["H4605"]],[30,31,["H3605"]],[31,37,["H3318"]],[37,39,["H6635"]]]},{"k":3639,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H4519"]],[12,14,["H7970"]],[14,16,["H8147"]],[16,17,["H505"]],[17,20,["H3967"]]]},{"k":3640,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,8,["H8435"]],[8,11,["H4940"]],[11,14,["H1004"]],[14,17,["H1"]],[17,21,["H4557"]],[21,24,["H8034"]],[24,26,["H6242"]],[26,27,["H8141"]],[27,28,["H4480","H1121"]],[28,30,["H4605"]],[30,31,["H3605"]],[31,37,["H3318"]],[37,39,["H6635"]]]},{"k":3641,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H1144"]],[12,14,["H7970"]],[14,16,["H2568"]],[16,17,["H505"]],[17,19,["H702"]],[19,20,["H3967"]]]},{"k":3642,"v":[[0,3,["H1121"]],[3,5,["H1835"]],[5,8,["H8435"]],[8,11,["H4940"]],[11,14,["H1004"]],[14,17,["H1"]],[17,21,["H4557"]],[21,24,["H8034"]],[24,26,["H6242"]],[26,27,["H8141"]],[27,28,["H4480","H1121"]],[28,30,["H4605"]],[30,31,["H3605"]],[31,37,["H3318"]],[37,39,["H6635"]]]},{"k":3643,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H1835"]],[12,14,["H8346"]],[14,16,["H8147"]],[16,17,["H505"]],[17,19,["H7651"]],[19,20,["H3967"]]]},{"k":3644,"v":[[0,3,["H1121"]],[3,5,["H836"]],[5,8,["H8435"]],[8,11,["H4940"]],[11,14,["H1004"]],[14,17,["H1"]],[17,21,["H4557"]],[21,24,["H8034"]],[24,26,["H6242"]],[26,27,["H8141"]],[27,28,["H4480","H1121"]],[28,30,["H4605"]],[30,31,["H3605"]],[31,37,["H3318"]],[37,39,["H6635"]]]},{"k":3645,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H836"]],[12,14,["H705"]],[14,16,["H259"]],[16,17,["H505"]],[17,19,["H2568"]],[19,20,["H3967"]]]},{"k":3646,"v":[[0,3,["H1121"]],[3,5,["H5321"]],[5,8,["H8435"]],[8,11,["H4940"]],[11,14,["H1004"]],[14,17,["H1"]],[17,21,["H4557"]],[21,24,["H8034"]],[24,26,["H6242"]],[26,27,["H8141"]],[27,28,["H4480","H1121"]],[28,30,["H4605"]],[30,31,["H3605"]],[31,37,["H3318"]],[37,39,["H6635"]]]},{"k":3647,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H5321"]],[12,14,["H2572"]],[14,16,["H7969"]],[16,17,["H505"]],[17,19,["H702"]],[19,20,["H3967"]]]},{"k":3648,"v":[[0,1,["H428"]],[1,6,["H6485"]],[6,7,["H834"]],[7,8,["H4872"]],[8,10,["H175"]],[10,11,["H6485"]],[11,14,["H5387"]],[14,16,["H3478"]],[16,18,["H8147","H6240"]],[18,19,["H376"]],[19,20,["H376"]],[20,21,["H259"]],[21,22,["H1961"]],[22,25,["H1004"]],[25,28,["H1"]]]},{"k":3649,"v":[[0,2,["H1961"]],[2,3,["H3605"]],[3,7,["H6485"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,15,["H1004"]],[15,18,["H1"]],[18,20,["H6242"]],[20,21,["H8141"]],[21,22,["H4480","H1121"]],[22,24,["H4605"]],[24,25,["H3605"]],[25,31,["H3318"]],[31,33,["H6635"]],[33,35,["H3478"]]]},{"k":3650,"v":[[0,2,["H3605"]],[2,6,["H6485"]],[6,7,["H1961"]],[7,8,["H8337"]],[8,9,["H3967"]],[9,10,["H505"]],[10,12,["H7969"]],[12,13,["H505"]],[13,15,["H2568"]],[15,16,["H3967"]],[16,18,["H2572"]]]},{"k":3651,"v":[[0,3,["H3881"]],[3,6,["H4294"]],[6,9,["H1"]],[9,11,["H3808"]],[11,12,["H6485"]],[12,13,["H8432"]],[13,14,[]]]},{"k":3652,"v":[[0,3,["H3068"]],[3,5,["H1696"]],[5,6,["H413"]],[6,7,["H4872"]],[7,8,["H559"]]]},{"k":3653,"v":[[0,1,["H389"]],[1,4,["H3808"]],[4,5,["H6485","(H853)"]],[5,7,["H4294"]],[7,9,["H3878"]],[9,10,["H3808"]],[10,11,["H5375"]],[11,13,["H7218"]],[13,16,["H8432"]],[16,18,["H1121"]],[18,20,["H3478"]]]},{"k":3654,"v":[[0,2,["H859"]],[2,4,["H6485","(H853)"]],[4,6,["H3881"]],[6,7,["H5921"]],[7,9,["H4908"]],[9,11,["H5715"]],[11,13,["H5921"]],[13,14,["H3605"]],[14,16,["H3627"]],[16,19,["H5921"]],[19,21,["H3605"]],[21,22,["H834"]],[22,26,["H1992"]],[26,28,["H5375","(H853)"]],[28,30,["H4908"]],[30,32,["H3605"]],[32,34,["H3627"]],[34,37,["H1992"]],[37,39,["H8334"]],[39,44,["H2583"]],[44,46,["H5439"]],[46,48,["H4908"]]]},{"k":3655,"v":[[0,4,["H4908"]],[4,6,["H5265"]],[6,8,["H3881"]],[8,12,["H3381","(H853)"]],[12,16,["H4908"]],[16,20,["H2583"]],[20,22,["H3881"]],[22,26,["H6965","(H853)"]],[26,29,["H2114"]],[29,32,["H7131"]],[32,37,["H4191"]]]},{"k":3656,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,9,["H2583"]],[9,11,["H376"]],[11,12,["H5921"]],[12,15,["H4264"]],[15,18,["H376"]],[18,19,["H5921"]],[19,22,["H1714"]],[22,25,["H6635"]]]},{"k":3657,"v":[[0,3,["H3881"]],[3,5,["H2583"]],[5,7,["H5439"]],[7,9,["H4908"]],[9,11,["H5715"]],[11,14,["H1961"]],[14,15,["H3808"]],[15,16,["H7110"]],[16,17,["H5921"]],[17,19,["H5712"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,27,["H3881"]],[27,29,["H8104","(H853)"]],[29,31,["H4931"]],[31,34,["H4908"]],[34,36,["H5715"]]]},{"k":3658,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,9,["H3605"]],[9,10,["H834"]],[10,12,["H3068"]],[12,13,["H6680","(H853)"]],[13,14,["H4872"]],[14,15,["H3651"]],[15,16,["H6213"]],[16,17,[]]]},{"k":3659,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H559"]]]},{"k":3660,"v":[[0,2,["H376"]],[2,5,["H1121"]],[5,7,["H3478"]],[7,9,["H2583"]],[9,10,["H5921"]],[10,13,["H1714"]],[13,16,["H226"]],[16,19,["H1"]],[19,20,["H1004"]],[20,22,["H4480","H5048"]],[22,23,["H5439"]],[23,25,["H168"]],[25,28,["H4150"]],[28,31,["H2583"]]]},{"k":3661,"v":[[0,5,["H6924"]],[5,11,["H4217"]],[11,16,["H1714"]],[16,19,["H4264"]],[19,21,["H3063"]],[21,22,["H2583"]],[22,25,["H6635"]],[25,27,["H5177"]],[27,29,["H1121"]],[29,31,["H5992"]],[31,34,["H5387"]],[34,37,["H1121"]],[37,39,["H3063"]]]},{"k":3662,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,14,["H702","H7657"]],[14,15,["H505"]],[15,17,["H8337"]],[17,18,["H3967"]]]},{"k":3663,"v":[[0,5,["H2583"]],[5,7,["H5921"]],[7,12,["H4294"]],[12,14,["H3485"]],[14,16,["H5417"]],[16,18,["H1121"]],[18,20,["H6686"]],[20,23,["H5387"]],[23,26,["H1121"]],[26,28,["H3485"]]]},{"k":3664,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,11,["H2572"]],[11,13,["H702"]],[13,14,["H505"]],[14,16,["H702"]],[16,17,["H3967"]]]},{"k":3665,"v":[[0,3,["H4294"]],[3,5,["H2074"]],[5,7,["H446"]],[7,9,["H1121"]],[9,11,["H2497"]],[11,14,["H5387"]],[14,17,["H1121"]],[17,19,["H2074"]]]},{"k":3666,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,11,["H2572"]],[11,13,["H7651"]],[13,14,["H505"]],[14,16,["H702"]],[16,17,["H3967"]]]},{"k":3667,"v":[[0,1,["H3605"]],[1,4,["H6485"]],[4,7,["H4264"]],[7,9,["H3063"]],[9,12,["H3967"]],[12,13,["H505"]],[13,15,["H8084"]],[15,16,["H505"]],[16,18,["H8337"]],[18,19,["H505"]],[19,21,["H702"]],[21,22,["H3967"]],[22,25,["H6635"]],[25,28,["H7223"]],[28,30,["H5265"]]]},{"k":3668,"v":[[0,4,["H8486"]],[4,8,["H1714"]],[8,11,["H4264"]],[11,13,["H7205"]],[13,17,["H6635"]],[17,20,["H5387"]],[20,23,["H1121"]],[23,25,["H7205"]],[25,28,["H468"]],[28,30,["H1121"]],[30,32,["H7707"]]]},{"k":3669,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,11,["H705"]],[11,13,["H8337"]],[13,14,["H505"]],[14,16,["H2568"]],[16,17,["H3967"]]]},{"k":3670,"v":[[0,4,["H2583"]],[4,5,["H5921"]],[5,10,["H4294"]],[10,12,["H8095"]],[12,15,["H5387"]],[15,18,["H1121"]],[18,20,["H8095"]],[20,23,["H8017"]],[23,25,["H1121"]],[25,27,["H6701"]]]},{"k":3671,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,12,["H2572"]],[12,14,["H8672"]],[14,15,["H505"]],[15,17,["H7969"]],[17,18,["H3967"]]]},{"k":3672,"v":[[0,3,["H4294"]],[3,5,["H1410"]],[5,8,["H5387"]],[8,11,["H1121"]],[11,13,["H1410"]],[13,16,["H460"]],[16,18,["H1121"]],[18,20,["H7467"]]]},{"k":3673,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,12,["H705"]],[12,14,["H2568"]],[14,15,["H505"]],[15,17,["H8337"]],[17,18,["H3967"]],[18,20,["H2572"]]]},{"k":3674,"v":[[0,1,["H3605"]],[1,4,["H6485"]],[4,7,["H4264"]],[7,9,["H7205"]],[9,12,["H3967"]],[12,13,["H505"]],[13,15,["H2572"]],[15,17,["H259"]],[17,18,["H505"]],[18,20,["H702"]],[20,21,["H3967"]],[21,23,["H2572"]],[23,26,["H6635"]],[26,31,["H5265"]],[31,34,["H8145"]],[34,35,[]]]},{"k":3675,"v":[[0,3,["H168"]],[3,6,["H4150"]],[6,9,["H5265"]],[9,12,["H4264"]],[12,15,["H3881"]],[15,18,["H8432"]],[18,21,["H4264"]],[21,22,["H834"]],[22,24,["H2583"]],[24,25,["H3651"]],[25,29,["H5265"]],[29,31,["H376"]],[31,32,["H5921"]],[32,34,["H3027"]],[34,37,["H1714"]]]},{"k":3676,"v":[[0,4,["H3220"]],[4,8,["H1714"]],[8,11,["H4264"]],[11,13,["H669"]],[13,17,["H6635"]],[17,20,["H5387"]],[20,23,["H1121"]],[23,25,["H669"]],[25,28,["H476"]],[28,30,["H1121"]],[30,32,["H5989"]]]},{"k":3677,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,12,["H705"]],[12,13,["H505"]],[13,15,["H2568"]],[15,16,["H3967"]]]},{"k":3678,"v":[[0,2,["H5921"]],[2,7,["H4294"]],[7,9,["H4519"]],[9,12,["H5387"]],[12,15,["H1121"]],[15,17,["H4519"]],[17,20,["H1583"]],[20,22,["H1121"]],[22,24,["H6301"]]]},{"k":3679,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,12,["H7970"]],[12,14,["H8147"]],[14,15,["H505"]],[15,18,["H3967"]]]},{"k":3680,"v":[[0,3,["H4294"]],[3,5,["H1144"]],[5,8,["H5387"]],[8,11,["H1121"]],[11,13,["H1144"]],[13,16,["H27"]],[16,18,["H1121"]],[18,20,["H1441"]]]},{"k":3681,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,12,["H7970"]],[12,14,["H2568"]],[14,15,["H505"]],[15,17,["H702"]],[17,18,["H3967"]]]},{"k":3682,"v":[[0,1,["H3605"]],[1,4,["H6485"]],[4,7,["H4264"]],[7,9,["H669"]],[9,12,["H3967"]],[12,13,["H505"]],[13,15,["H8083"]],[15,16,["H505"]],[16,19,["H3967"]],[19,22,["H6635"]],[22,27,["H5265"]],[27,30,["H7992"]],[30,31,[]]]},{"k":3683,"v":[[0,2,["H1714"]],[2,5,["H4264"]],[5,7,["H1835"]],[7,13,["H6828"]],[13,16,["H6635"]],[16,19,["H5387"]],[19,22,["H1121"]],[22,24,["H1835"]],[24,27,["H295"]],[27,29,["H1121"]],[29,31,["H5996"]]]},{"k":3684,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,12,["H8346"]],[12,14,["H8147"]],[14,15,["H505"]],[15,17,["H7651"]],[17,18,["H3967"]]]},{"k":3685,"v":[[0,4,["H2583"]],[4,5,["H5921"]],[5,10,["H4294"]],[10,12,["H836"]],[12,15,["H5387"]],[15,18,["H1121"]],[18,20,["H836"]],[20,23,["H6295"]],[23,25,["H1121"]],[25,27,["H5918"]]]},{"k":3686,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,12,["H705"]],[12,14,["H259"]],[14,15,["H505"]],[15,17,["H2568"]],[17,18,["H3967"]]]},{"k":3687,"v":[[0,3,["H4294"]],[3,5,["H5321"]],[5,8,["H5387"]],[8,11,["H1121"]],[11,13,["H5321"]],[13,16,["H299"]],[16,18,["H1121"]],[18,20,["H5881"]]]},{"k":3688,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,12,["H2572"]],[12,14,["H7969"]],[14,15,["H505"]],[15,17,["H702"]],[17,18,["H3967"]]]},{"k":3689,"v":[[0,1,["H3605"]],[1,5,["H6485"]],[5,8,["H4264"]],[8,10,["H1835"]],[10,13,["H3967"]],[13,14,["H505"]],[14,16,["H2572"]],[16,18,["H7651"]],[18,19,["H505"]],[19,21,["H8337"]],[21,22,["H3967"]],[22,25,["H5265"]],[25,26,["H314"]],[26,29,["H1714"]]]},{"k":3690,"v":[[0,1,["H428"]],[1,6,["H6485"]],[6,9,["H1121"]],[9,11,["H3478"]],[11,14,["H1004"]],[14,17,["H1"]],[17,18,["H3605"]],[18,22,["H6485"]],[22,25,["H4264"]],[25,28,["H6635"]],[28,30,["H8337"]],[30,31,["H3967"]],[31,32,["H505"]],[32,34,["H7969"]],[34,35,["H505"]],[35,37,["H2568"]],[37,38,["H3967"]],[38,40,["H2572"]]]},{"k":3691,"v":[[0,3,["H3881"]],[3,5,["H3808"]],[5,6,["H6485"]],[6,7,["H8432"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,12,["H834"]],[12,14,["H3068"]],[14,15,["H6680","(H853)"]],[15,16,["H4872"]]]},{"k":3692,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,9,["H3605"]],[9,10,["H834"]],[10,12,["H3068"]],[12,13,["H6680","(H853)"]],[13,14,["H4872"]],[14,15,["H3651"]],[15,17,["H2583"]],[17,20,["H1714"]],[20,22,["H3651"]],[22,25,["H5265"]],[25,27,["H376"]],[27,30,["H4940"]],[30,32,["H5921"]],[32,34,["H1004"]],[34,37,["H1"]]]},{"k":3693,"v":[[0,1,["H428"]],[1,5,["H8435"]],[5,7,["H175"]],[7,9,["H4872"]],[9,12,["H3117"]],[12,15,["H3068"]],[15,16,["H1696"]],[16,17,["H854"]],[17,18,["H4872"]],[18,20,["H2022"]],[20,21,["H5514"]]]},{"k":3694,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H1121"]],[8,10,["H175"]],[10,11,["H5070"]],[11,13,["H1060"]],[13,15,["H30"]],[15,16,["H499"]],[16,18,["H385"]]]},{"k":3695,"v":[[0,1,["H428"]],[1,4,["H8034"]],[4,7,["H1121"]],[7,9,["H175"]],[9,11,["H3548"]],[11,14,["H4886"]],[14,15,["H834"]],[15,17,["H4390","H3027"]],[17,23,["H3547"]]]},{"k":3696,"v":[[0,2,["H5070"]],[2,4,["H30"]],[4,5,["H4191"]],[5,6,["H6440"]],[6,8,["H3068"]],[8,11,["H7126"]],[11,12,["H2114"]],[12,13,["H784"]],[13,14,["H6440"]],[14,16,["H3068"]],[16,19,["H4057"]],[19,21,["H5514"]],[21,24,["H1961"]],[24,25,["H3808"]],[25,26,["H1121"]],[26,28,["H499"]],[28,30,["H385"]],[30,35,["H3547"]],[35,36,["H5921"]],[36,38,["H6440"]],[38,40,["H175"]],[40,42,["H1"]]]},{"k":3697,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3698,"v":[[0,6,["H7126","(H853)","H4294","H3878"]],[6,8,["H5975"]],[8,10,["H6440"]],[10,11,["H175"]],[11,13,["H3548"]],[13,17,["H8334"]],[17,19,[]]]},{"k":3699,"v":[[0,4,["H8104","(H853)"]],[4,6,["H4931"]],[6,9,["H4931"]],[9,12,["H3605"]],[12,13,["H5712"]],[13,14,["H6440"]],[14,16,["H168"]],[16,19,["H4150"]],[19,21,["H5647","(H853)"]],[21,23,["H5656"]],[23,26,["H4908"]]]},{"k":3700,"v":[[0,4,["H8104","(H853)"]],[4,5,["H3605"]],[5,7,["H3627"]],[7,10,["H168"]],[10,13,["H4150"]],[13,16,["H4931"]],[16,19,["H1121"]],[19,21,["H3478"]],[21,23,["H5647","(H853)"]],[23,25,["H5656"]],[25,28,["H4908"]]]},{"k":3701,"v":[[0,4,["H5414","(H853)"]],[4,6,["H3881"]],[6,8,["H175"]],[8,12,["H1121"]],[12,13,["H1992"]],[13,16,["H5414","H5414"]],[16,20,["H4480","H854"]],[20,22,["H1121"]],[22,24,["H3478"]]]},{"k":3702,"v":[[0,4,["H6485"]],[4,5,["H175"]],[5,8,["H1121"]],[8,13,["H8104","(H853)"]],[13,16,["H3550"]],[16,19,["H2114"]],[19,22,["H7131"]],[22,27,["H4191"]]]},{"k":3703,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3704,"v":[[0,2,["H589"]],[2,3,["H2009"]],[3,6,["H3947","(H853)"]],[6,8,["H3881"]],[8,10,["H4480","H8432"]],[10,12,["H1121"]],[12,14,["H3478"]],[14,16,["H8478"]],[16,17,["H3605"]],[17,19,["H1060"]],[19,21,["H6363"]],[21,23,["H7358"]],[23,26,["H4480","H1121"]],[26,28,["H3478"]],[28,31,["H3881"]],[31,33,["H1961"]],[33,34,[]]]},{"k":3705,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H1060"]],[4,10,["H3117"]],[10,13,["H5221"]],[13,14,["H3605"]],[14,16,["H1060"]],[16,19,["H776"]],[19,21,["H4714"]],[21,23,["H6942"]],[23,26,["H3605"]],[26,28,["H1060"]],[28,30,["H3478"]],[30,32,["H4480","H120"]],[32,33,["H5704"]],[33,34,["H929"]],[34,38,["H1961"]],[38,39,["H589"]],[39,42,["H3068"]]]},{"k":3706,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H4057"]],[9,11,["H5514"]],[11,12,["H559"]]]},{"k":3707,"v":[[0,1,["H6485","(H853)"]],[1,3,["H1121"]],[3,5,["H3878"]],[5,8,["H1004"]],[8,11,["H1"]],[11,14,["H4940"]],[14,15,["H3605"]],[15,16,["H2145"]],[16,19,["H2320"]],[19,20,["H4480","H1121"]],[20,22,["H4605"]],[22,25,["H6485"]],[25,26,[]]]},{"k":3708,"v":[[0,2,["H4872"]],[2,3,["H6485"]],[3,6,["H5921"]],[6,8,["H6310"]],[8,11,["H3068"]],[11,12,["H834"]],[12,15,["H6680"]]]},{"k":3709,"v":[[0,2,["H428"]],[2,3,["H1961"]],[3,5,["H1121"]],[5,7,["H3878"]],[7,10,["H8034"]],[10,11,["H1648"]],[11,13,["H6955"]],[13,15,["H4847"]]]},{"k":3710,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H1121"]],[8,10,["H1648"]],[10,13,["H4940"]],[13,14,["H3845"]],[14,16,["H8096"]]]},{"k":3711,"v":[[0,3,["H1121"]],[3,5,["H6955"]],[5,8,["H4940"]],[8,9,["H6019"]],[9,11,["H3324"]],[11,12,["H2275"]],[12,14,["H5816"]]]},{"k":3712,"v":[[0,3,["H1121"]],[3,5,["H4847"]],[5,8,["H4940"]],[8,9,["H4249"]],[9,11,["H4187"]],[11,12,["H428"]],[12,15,["H4940"]],[15,18,["H3881"]],[18,22,["H1004"]],[22,25,["H1"]]]},{"k":3713,"v":[[0,2,["H1648"]],[2,5,["H4940"]],[5,8,["H3846"]],[8,11,["H4940"]],[11,14,["H8097"]],[14,15,["H428"]],[15,18,["H4940"]],[18,21,["H1649"]]]},{"k":3714,"v":[[0,4,["H6485"]],[4,10,["H4557"]],[10,12,["H3605"]],[12,14,["H2145"]],[14,17,["H2320"]],[17,18,["H4480","H1121"]],[18,20,["H4605"]],[20,25,["H6485"]],[25,29,["H7651"]],[29,30,["H505"]],[30,32,["H2568"]],[32,33,["H3967"]]]},{"k":3715,"v":[[0,2,["H4940"]],[2,5,["H1649"]],[5,7,["H2583"]],[7,8,["H310"]],[8,10,["H4908"]],[10,11,["H3220"]]]},{"k":3716,"v":[[0,3,["H5387"]],[3,6,["H1004"]],[6,9,["H1"]],[9,12,["H1649"]],[12,15,["H460"]],[15,17,["H1121"]],[17,19,["H3815"]]]},{"k":3717,"v":[[0,3,["H4931"]],[3,6,["H1121"]],[6,8,["H1647"]],[8,11,["H168"]],[11,14,["H4150"]],[14,18,["H4908"]],[18,21,["H168"]],[21,23,["H4372"]],[23,27,["H4539"]],[27,30,["H6607"]],[30,33,["H168"]],[33,36,["H4150"]]]},{"k":3718,"v":[[0,3,["H7050"]],[3,6,["H2691"]],[6,9,["H4539"]],[9,12,["H6607"]],[12,15,["H2691"]],[15,16,["H834"]],[16,18,["H5921"]],[18,20,["H4908"]],[20,22,["H5921"]],[22,24,["H4196"]],[24,26,["H5439"]],[26,29,["H4340"]],[29,33,["H3605"]],[33,35,["H5656"]],[35,36,[]]]},{"k":3719,"v":[[0,3,["H6955"]],[3,6,["H4940"]],[6,9,["H6020"]],[9,12,["H4940"]],[12,15,["H3325"]],[15,18,["H4940"]],[18,21,["H2276"]],[21,24,["H4940"]],[24,27,["H5817"]],[27,28,["H428"]],[28,31,["H4940"]],[31,34,["H6956"]]]},{"k":3720,"v":[[0,3,["H4557"]],[3,5,["H3605"]],[5,7,["H2145"]],[7,10,["H2320"]],[10,11,["H4480","H1121"]],[11,13,["H4605"]],[13,15,["H8083"]],[15,16,["H505"]],[16,18,["H8337"]],[18,19,["H3967"]],[19,20,["H8104"]],[20,22,["H4931"]],[22,25,["H6944"]]]},{"k":3721,"v":[[0,2,["H4940"]],[2,5,["H1121"]],[5,7,["H6955"]],[7,9,["H2583"]],[9,10,["H5921"]],[10,12,["H3409"]],[12,15,["H4908"]],[15,16,["H8486"]]]},{"k":3722,"v":[[0,3,["H5387"]],[3,6,["H1004"]],[6,9,["H1"]],[9,12,["H4940"]],[12,15,["H6956"]],[15,18,["H469"]],[18,20,["H1121"]],[20,22,["H5816"]]]},{"k":3723,"v":[[0,3,["H4931"]],[3,7,["H727"]],[7,10,["H7979"]],[10,13,["H4501"]],[13,16,["H4196"]],[16,19,["H3627"]],[19,22,["H6944"]],[22,23,["H834"]],[23,25,["H8334"]],[25,28,["H4539"]],[28,30,["H3605"]],[30,32,["H5656"]],[32,33,[]]]},{"k":3724,"v":[[0,2,["H499"]],[2,4,["H1121"]],[4,6,["H175"]],[6,8,["H3548"]],[8,11,["H5387"]],[11,14,["H5387"]],[14,17,["H3881"]],[17,21,["H6486"]],[21,25,["H8104"]],[25,27,["H4931"]],[27,30,["H6944"]]]},{"k":3725,"v":[[0,2,["H4847"]],[2,5,["H4940"]],[5,8,["H4250"]],[8,11,["H4940"]],[11,14,["H4188"]],[14,15,["H428"]],[15,18,["H4940"]],[18,20,["H4847"]]]},{"k":3726,"v":[[0,5,["H6485"]],[5,11,["H4557"]],[11,13,["H3605"]],[13,15,["H2145"]],[15,18,["H2320"]],[18,19,["H4480","H1121"]],[19,21,["H4605"]],[21,23,["H8337"]],[23,24,["H505"]],[24,27,["H3967"]]]},{"k":3727,"v":[[0,3,["H5387"]],[3,6,["H1004"]],[6,9,["H1"]],[9,12,["H4940"]],[12,14,["H4847"]],[14,16,["H6700"]],[16,18,["H1121"]],[18,20,["H32"]],[20,23,["H2583"]],[23,24,["H5921"]],[24,26,["H3409"]],[26,29,["H4908"]],[29,30,["H6828"]]]},{"k":3728,"v":[[0,4,["H6486"]],[4,6,["H4931"]],[6,9,["H1121"]],[9,11,["H4847"]],[11,15,["H7175"]],[15,18,["H4908"]],[18,21,["H1280"]],[21,25,["H5982"]],[25,29,["H134"]],[29,32,["H3605"]],[32,34,["H3627"]],[34,37,["H3605"]],[37,39,["H5656"]],[39,40,[]]]},{"k":3729,"v":[[0,3,["H5982"]],[3,6,["H2691"]],[6,8,["H5439"]],[8,11,["H134"]],[11,14,["H3489"]],[14,17,["H4340"]]]},{"k":3730,"v":[[0,4,["H2583"]],[4,5,["H6440"]],[5,7,["H4908"]],[7,10,["H6924"]],[10,12,["H6440"]],[12,14,["H168"]],[14,17,["H4150"]],[17,18,["H4217"]],[18,21,["H4872"]],[21,23,["H175"]],[23,26,["H1121"]],[26,27,["H8104"]],[27,29,["H4931"]],[29,32,["H4720"]],[32,35,["H4931"]],[35,38,["H1121"]],[38,40,["H3478"]],[40,43,["H2114"]],[43,46,["H7131"]],[46,51,["H4191"]]]},{"k":3731,"v":[[0,1,["H3605"]],[1,4,["H6485"]],[4,7,["H3881"]],[7,8,["H834"]],[8,9,["H4872"]],[9,11,["H175"]],[11,12,["H6485"]],[12,13,["H5921"]],[13,15,["H6310"]],[15,18,["H3068"]],[18,21,["H4940"]],[21,22,["H3605"]],[22,24,["H2145"]],[24,27,["H2320"]],[27,28,["H4480","H1121"]],[28,30,["H4605"]],[30,32,["H6242"]],[32,34,["H8147"]],[34,35,["H505"]]]},{"k":3732,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H6485"]],[7,8,["H3605"]],[8,10,["H1060"]],[10,13,["H2145"]],[13,16,["H1121"]],[16,18,["H3478"]],[18,21,["H2320"]],[21,22,["H4480","H1121"]],[22,24,["H4605"]],[24,26,["H5375","(H853)"]],[26,28,["H4557"]],[28,31,["H8034"]]]},{"k":3733,"v":[[0,4,["H3947","(H853)"]],[4,6,["H3881"]],[6,9,["H589"]],[9,12,["H3068"]],[12,14,["H8478"]],[14,15,["H3605"]],[15,17,["H1060"]],[17,20,["H1121"]],[20,22,["H3478"]],[22,25,["H929"]],[25,28,["H3881"]],[28,30,["H8478"]],[30,31,["H3605"]],[31,33,["H1060"]],[33,36,["H929"]],[36,39,["H1121"]],[39,41,["H3478"]]]},{"k":3734,"v":[[0,2,["H4872"]],[2,3,["H6485"]],[3,4,["H834"]],[4,6,["H3068"]],[6,7,["H6680"]],[7,8,["(H853)"]],[8,9,["H3605"]],[9,11,["H1060"]],[11,14,["H1121"]],[14,16,["H3478"]]]},{"k":3735,"v":[[0,2,["H3605"]],[2,4,["H1060"]],[4,5,["H2145"]],[5,8,["H4557"]],[8,10,["H8034"]],[10,13,["H2320"]],[13,14,["H4480","H1121"]],[14,16,["H4605"]],[16,21,["H6485"]],[21,24,["H1961"]],[24,25,["H6242"]],[25,27,["H8147"]],[27,28,["H505"]],[28,30,["H3967"]],[30,34,["H7969","H7657"]]]},{"k":3736,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3737,"v":[[0,1,["H3947","(H853)"]],[1,3,["H3881"]],[3,5,["H8478"]],[5,6,["H3605"]],[6,8,["H1060"]],[8,11,["H1121"]],[11,13,["H3478"]],[13,16,["H929"]],[16,19,["H3881"]],[19,21,["H8478"]],[21,23,["H929"]],[23,26,["H3881"]],[26,28,["H1961"]],[28,30,["H589"]],[30,33,["H3068"]]]},{"k":3738,"v":[[0,8,["H6302"]],[8,12,["H3967"]],[12,16,["H7969","H7657"]],[16,19,["H4480","H1060"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,27,["H5736"]],[27,28,["H5921"]],[28,30,["H3881"]]]},{"k":3739,"v":[[0,4,["H3947"]],[4,7,["H2568","H2568","H8255"]],[7,10,["H1538"]],[10,13,["H8255"]],[13,16,["H6944"]],[16,19,["H3947"]],[19,22,["H8255"]],[22,24,["H6242"]],[24,25,["H1626"]]]},{"k":3740,"v":[[0,4,["H5414"]],[4,6,["H3701"]],[6,10,["H5736"]],[10,16,["H6302"]],[16,18,["H175"]],[18,22,["H1121"]]]},{"k":3741,"v":[[0,2,["H4872"]],[2,3,["H3947"]],[3,5,["H6306","(H853)"]],[5,6,["H3701"]],[6,7,["H4480","H854"]],[7,11,["H5736"]],[11,13,["H5921"]],[13,17,["H6306"]],[17,20,["H3881"]]]},{"k":3742,"v":[[0,1,["H4480","H854"]],[1,3,["H1060"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,9,["H3947"]],[9,10,["(H853)"]],[10,12,["H3701"]],[12,14,["H505"]],[14,15,["H7969"]],[15,16,["H3967"]],[16,18,["H8346"]],[18,20,["H2568"]],[20,24,["H8255"]],[24,27,["H6944"]]]},{"k":3743,"v":[[0,2,["H4872"]],[2,3,["H5414","(H853)"]],[3,5,["H3701"]],[5,10,["H6306"]],[10,12,["H175"]],[12,16,["H1121"]],[16,18,["H5921"]],[18,20,["H6310"]],[20,23,["H3068"]],[23,24,["H834"]],[24,26,["H3068"]],[26,27,["H6680","(H853)"]],[27,28,["H4872"]]]},{"k":3744,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H559"]]]},{"k":3745,"v":[[0,1,["H5375","(H853)"]],[1,3,["H7218"]],[3,6,["H1121"]],[6,8,["H6955"]],[8,10,["H4480","H8432"]],[10,12,["H1121"]],[12,14,["H3878"]],[14,17,["H4940"]],[17,20,["H1004"]],[20,23,["H1"]]]},{"k":3746,"v":[[0,2,["H7970"]],[2,3,["H8141"]],[3,4,["H4480","H1121"]],[4,6,["H4605"]],[6,8,["H5704"]],[8,9,["H2572"]],[9,10,["H8141"]],[10,11,["H1121"]],[11,12,["H3605"]],[12,14,["H935"]],[14,17,["H6635"]],[17,19,["H6213"]],[19,21,["H4399"]],[21,24,["H168"]],[24,27,["H4150"]]]},{"k":3747,"v":[[0,1,["H2063"]],[1,5,["H5656"]],[5,8,["H1121"]],[8,10,["H6955"]],[10,13,["H168"]],[13,16,["H4150"]],[16,21,["H6944","H6944"]]]},{"k":3748,"v":[[0,4,["H4264"]],[4,6,["H5265"]],[6,7,["H175"]],[7,9,["H935"]],[9,12,["H1121"]],[12,17,["H3381"]],[17,19,["H4539","(H853)"]],[19,20,["H6532"]],[20,22,["H3680","(H853)"]],[22,24,["H727"]],[24,26,["H5715"]],[26,28,[]]]},{"k":3749,"v":[[0,3,["H5414"]],[3,4,["H5921"]],[4,6,["H3681"]],[6,8,["H8476"]],[8,9,["H5785"]],[9,12,["H6566"]],[12,13,["H4480","H4605"]],[13,16,["H899"]],[16,17,["H3632"]],[17,19,["H8504"]],[19,22,["H7760"]],[22,25,["H905"]],[25,26,[]]]},{"k":3750,"v":[[0,2,["H5921"]],[2,4,["H7979"]],[4,6,["H6440"]],[6,9,["H6566"]],[9,11,["H899"]],[11,13,["H8504"]],[13,15,["H5414"]],[15,16,["H5921","(H853)"]],[16,18,["H7086"]],[18,21,["H3709"]],[21,24,["H4518"]],[24,26,["H7184"]],[26,28,["H5262"]],[28,32,["H8548"]],[32,33,["H3899"]],[33,35,["H1961"]],[35,36,["H5921"]]]},{"k":3751,"v":[[0,4,["H6566"]],[4,5,["H5921"]],[5,8,["H899"]],[8,10,["H8438","H8144"]],[10,12,["H3680"]],[12,17,["H4372"]],[17,19,["H8476"]],[19,20,["H5785"]],[20,24,["H7760","(H853)"]],[24,26,["H905"]],[26,27,[]]]},{"k":3752,"v":[[0,4,["H3947"]],[4,6,["H899"]],[6,8,["H8504"]],[8,10,["H3680","(H853)"]],[10,12,["H4501"]],[12,15,["H3974"]],[15,18,["H5216"]],[18,21,["H4457"]],[21,24,["H4289"]],[24,26,["H3605"]],[26,28,["H8081"]],[28,29,["H3627"]],[29,31,["H834"]],[31,33,["H8334"]],[33,35,[]]]},{"k":3753,"v":[[0,4,["H5414"]],[4,7,["H3605"]],[7,9,["H3627"]],[9,11,["H413"]],[11,13,["H4372"]],[13,15,["H8476"]],[15,16,["H5785"]],[16,19,["H5414"]],[19,21,["H5921"]],[21,23,["H4132"]]]},{"k":3754,"v":[[0,2,["H5921"]],[2,4,["H2091"]],[4,5,["H4196"]],[5,8,["H6566"]],[8,10,["H899"]],[10,12,["H8504"]],[12,14,["H3680"]],[14,18,["H4372"]],[18,20,["H8476"]],[20,21,["H5785"]],[21,24,["H7725","(H853)"]],[24,27,["H905"]],[27,28,[]]]},{"k":3755,"v":[[0,4,["H3947","(H853)"]],[4,5,["H3605"]],[5,7,["H3627"]],[7,9,["H8335"]],[9,10,["H834"]],[10,12,["H8334"]],[12,15,["H6944"]],[15,17,["H5414"]],[17,19,["H413"]],[19,21,["H899"]],[21,23,["H8504"]],[23,25,["H3680"]],[25,29,["H4372"]],[29,31,["H8476"]],[31,32,["H5785"]],[32,35,["H5414"]],[35,37,["H5921"]],[37,39,["H4132"]]]},{"k":3756,"v":[[0,7,["H1878","(H853)"]],[7,10,["H4196"]],[10,12,["H6566"]],[12,14,["H713"]],[14,15,["H899"]],[15,16,["H5921"]]]},{"k":3757,"v":[[0,4,["H5414"]],[4,5,["H5921"]],[5,6,["(H853)"]],[6,7,["H3605"]],[7,9,["H3627"]],[9,11,["H834"]],[11,13,["H8334"]],[13,14,["H5921"]],[14,16,["(H853)"]],[16,18,["H4289","(H853)"]],[18,20,["H4207"]],[20,23,["H3257"]],[23,26,["H4219"]],[26,27,["H3605"]],[27,29,["H3627"]],[29,32,["H4196"]],[32,36,["H6566"]],[36,37,["H5921"]],[37,40,["H3681"]],[40,42,["H8476"]],[42,43,["H5785"]],[43,45,["H7760"]],[45,48,["H905"]],[48,50,[]]]},{"k":3758,"v":[[0,3,["H175"]],[3,6,["H1121"]],[6,10,["H3615"]],[10,12,["H3680","(H853)"]],[12,14,["H6944"]],[14,16,["H3605"]],[16,18,["H3627"]],[18,21,["H6944"]],[21,24,["H4264"]],[24,28,["H5265"]],[28,29,["H310"]],[29,30,["H3651"]],[30,32,["H1121"]],[32,34,["H6955"]],[34,36,["H935"]],[36,38,["H5375"]],[38,43,["H3808"]],[43,44,["H5060","H413"]],[44,47,["H6944"]],[47,50,["H4191"]],[50,51,["H428"]],[51,55,["H4853"]],[55,58,["H1121"]],[58,60,["H6955"]],[60,63,["H168"]],[63,66,["H4150"]]]},{"k":3759,"v":[[0,4,["H6486"]],[4,6,["H499"]],[6,8,["H1121"]],[8,10,["H175"]],[10,12,["H3548"]],[12,15,["H8081"]],[15,18,["H3974"]],[18,21,["H5561"]],[21,22,["H7004"]],[22,25,["H8548"]],[25,27,["H4503"]],[27,30,["H4888"]],[30,31,["H8081"]],[31,34,["H6486"]],[34,36,["H3605"]],[36,38,["H4908"]],[38,41,["H3605"]],[41,42,["H834"]],[42,47,["H6944"]],[47,51,["H3627"]],[51,52,[]]]},{"k":3760,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H559"]]]},{"k":3761,"v":[[0,4,["H3772","H408","(H853)"]],[4,6,["H7626"]],[6,9,["H4940"]],[9,12,["H6956"]],[12,14,["H4480","H8432"]],[14,16,["H3881"]]]},{"k":3762,"v":[[0,2,["H2063"]],[2,3,["H6213"]],[3,9,["H2421"]],[9,11,["H3808"]],[11,12,["H4191"]],[12,15,["H5066","(H853)"]],[15,20,["H6944","H6944"]],[20,21,["H175"]],[21,24,["H1121"]],[24,27,["H935"]],[27,29,["H7760"]],[29,32,["H376","H376"]],[32,33,["H5921"]],[33,35,["H5656"]],[35,37,["H413"]],[37,39,["H4853"]]]},{"k":3763,"v":[[0,4,["H3808"]],[4,6,["H935"]],[6,8,["H7200"]],[8,9,["(H853)"]],[9,12,["H6944"]],[12,14,["H1104"]],[14,17,["H4191"]]]},{"k":3764,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3765,"v":[[0,1,["H5375"]],[1,2,["H1571","(H853)"]],[2,4,["H7218"]],[4,7,["H1121"]],[7,9,["H1648"]],[9,12,["H1004"]],[12,15,["H1"]],[15,18,["H4940"]]]},{"k":3766,"v":[[0,2,["H7970"]],[2,3,["H8141"]],[3,4,["H4480","H1121"]],[4,6,["H4605"]],[6,7,["H5704"]],[7,8,["H2572"]],[8,9,["H8141"]],[9,10,["H1121"]],[10,13,["H6485"]],[13,15,["H3605"]],[15,18,["H935"]],[18,20,["H6633"]],[20,22,["H5656"]],[22,24,["H5647"]],[24,26,["H5656"]],[26,29,["H168"]],[29,32,["H4150"]]]},{"k":3767,"v":[[0,1,["H2063"]],[1,4,["H5656"]],[4,7,["H4940"]],[7,10,["H1649"]],[10,12,["H5647"]],[12,15,["H4853"]]]},{"k":3768,"v":[[0,4,["H5375","(H853)"]],[4,6,["H3407"]],[6,9,["H4908"]],[9,12,["H168"]],[12,15,["H4150"]],[15,17,["H4372"]],[17,20,["H4372"]],[20,24,["H8476"]],[24,25,["H834"]],[25,27,["H4480","H4605"]],[27,28,["H5921"]],[28,32,["H4539"]],[32,35,["H6607"]],[35,38,["H168"]],[38,41,["H4150"]]]},{"k":3769,"v":[[0,3,["H7050"]],[3,6,["H2691"]],[6,9,["H4539"]],[9,12,["H6607"]],[12,15,["H8179"]],[15,18,["H2691"]],[18,19,["H834"]],[19,21,["H5921"]],[21,23,["H4908"]],[23,25,["H5921"]],[25,27,["H4196"]],[27,29,["H5439"]],[29,32,["H4340"]],[32,34,["H3605"]],[34,36,["H3627"]],[36,39,["H5656"]],[39,41,["H3605"]],[41,42,["H834"]],[42,44,["H6213"]],[44,50,["H5647"]]]},{"k":3770,"v":[[0,1,["H5921"]],[1,3,["H6310"]],[3,5,["H175"]],[5,8,["H1121"]],[8,10,["H1961"]],[10,11,["H3605"]],[11,13,["H5656"]],[13,16,["H1121"]],[16,19,["H1649"]],[19,21,["H3605"]],[21,23,["H4853"]],[23,26,["H3605"]],[26,28,["H5656"]],[28,32,["H6485"]],[32,33,["H5921"]],[33,36,["H4931","(H853)"]],[36,37,["H3605"]],[37,39,["H4853"]]]},{"k":3771,"v":[[0,1,["H2063"]],[1,4,["H5656"]],[4,7,["H4940"]],[7,10,["H1121"]],[10,12,["H1649"]],[12,15,["H168"]],[15,18,["H4150"]],[18,21,["H4931"]],[21,26,["H3027"]],[26,28,["H385"]],[28,30,["H1121"]],[30,32,["H175"]],[32,34,["H3548"]]]},{"k":3772,"v":[[0,4,["H1121"]],[4,6,["H4847"]],[6,9,["H6485"]],[9,13,["H4940"]],[13,16,["H1004"]],[16,19,["H1"]]]},{"k":3773,"v":[[0,2,["H7970"]],[2,3,["H8141"]],[3,4,["H4480","H1121"]],[4,6,["H4605"]],[6,8,["H5704"]],[8,9,["H2572"]],[9,10,["H8141"]],[10,11,["H1121"]],[11,14,["H6485"]],[14,17,["H3605"]],[17,19,["H935"]],[19,22,["H6635"]],[22,24,["H5647","(H853)"]],[24,26,["H5656"]],[26,29,["H168"]],[29,32,["H4150"]]]},{"k":3774,"v":[[0,2,["H2063"]],[2,5,["H4931"]],[5,8,["H4853"]],[8,11,["H3605"]],[11,13,["H5656"]],[13,16,["H168"]],[16,19,["H4150"]],[19,21,["H7175"]],[21,24,["H4908"]],[24,27,["H1280"]],[27,31,["H5982"]],[31,34,["H134"]],[34,35,[]]]},{"k":3775,"v":[[0,3,["H5982"]],[3,6,["H2691"]],[6,8,["H5439"]],[8,11,["H134"]],[11,14,["H3489"]],[14,17,["H4340"]],[17,19,["H3605"]],[19,21,["H3627"]],[21,24,["H3605"]],[24,26,["H5656"]],[26,29,["H8034"]],[29,32,["H6485","(H853)"]],[32,34,["H3627"]],[34,37,["H4931"]],[37,40,["H4853"]]]},{"k":3776,"v":[[0,1,["H2063"]],[1,4,["H5656"]],[4,7,["H4940"]],[7,10,["H1121"]],[10,12,["H4847"]],[12,15,["H3605"]],[15,17,["H5656"]],[17,20,["H168"]],[20,23,["H4150"]],[23,26,["H3027"]],[26,28,["H385"]],[28,30,["H1121"]],[30,32,["H175"]],[32,34,["H3548"]]]},{"k":3777,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,7,["H5387"]],[7,10,["H5712"]],[10,11,["H6485","(H853)"]],[11,13,["H1121"]],[13,16,["H6956"]],[16,19,["H4940"]],[19,23,["H1004"]],[23,26,["H1"]]]},{"k":3778,"v":[[0,2,["H7970"]],[2,3,["H8141"]],[3,4,["H4480","H1121"]],[4,6,["H4605"]],[6,8,["H5704"]],[8,9,["H2572"]],[9,10,["H8141"]],[10,11,["H1121"]],[11,13,["H3605"]],[13,15,["H935"]],[15,18,["H6635"]],[18,21,["H5656"]],[21,24,["H168"]],[24,27,["H4150"]]]},{"k":3779,"v":[[0,5,["H6485"]],[5,10,["H4940"]],[10,11,["H1961"]],[11,13,["H505"]],[13,14,["H7651"]],[14,15,["H3967"]],[15,17,["H2572"]]]},{"k":3780,"v":[[0,1,["H428"]],[1,6,["H6485"]],[6,9,["H4940"]],[9,12,["H6956"]],[12,13,["H3605"]],[13,17,["H5647"]],[17,20,["H168"]],[20,23,["H4150"]],[23,24,["H834"]],[24,25,["H4872"]],[25,27,["H175"]],[27,29,["H6485"]],[29,31,["H5921"]],[31,33,["H6310"]],[33,36,["H3068"]],[36,39,["H3027"]],[39,41,["H4872"]]]},{"k":3781,"v":[[0,5,["H6485"]],[5,8,["H1121"]],[8,10,["H1648"]],[10,13,["H4940"]],[13,17,["H1004"]],[17,20,["H1"]]]},{"k":3782,"v":[[0,2,["H7970"]],[2,3,["H8141"]],[3,4,["H4480","H1121"]],[4,6,["H4605"]],[6,8,["H5704"]],[8,9,["H2572"]],[9,10,["H8141"]],[10,11,["H1121"]],[11,13,["H3605"]],[13,15,["H935"]],[15,18,["H6635"]],[18,21,["H5656"]],[21,24,["H168"]],[24,27,["H4150"]]]},{"k":3783,"v":[[0,5,["H6485"]],[5,10,["H4940"]],[10,13,["H1004"]],[13,16,["H1"]],[16,17,["H1961"]],[17,19,["H505"]],[19,21,["H8337"]],[21,22,["H3967"]],[22,24,["H7970"]]]},{"k":3784,"v":[[0,1,["H428"]],[1,6,["H6485"]],[6,9,["H4940"]],[9,12,["H1121"]],[12,14,["H1648"]],[14,16,["H3605"]],[16,20,["H5647"]],[20,23,["H168"]],[23,26,["H4150"]],[26,27,["H834"]],[27,28,["H4872"]],[28,30,["H175"]],[30,32,["H6485"]],[32,34,["H5921"]],[34,36,["H6310"]],[36,39,["H3068"]]]},{"k":3785,"v":[[0,5,["H6485"]],[5,8,["H4940"]],[8,11,["H1121"]],[11,13,["H4847"]],[13,16,["H4940"]],[16,19,["H1004"]],[19,22,["H1"]]]},{"k":3786,"v":[[0,2,["H7970"]],[2,3,["H8141"]],[3,4,["H4480","H1121"]],[4,6,["H4605"]],[6,8,["H5704"]],[8,9,["H2572"]],[9,10,["H8141"]],[10,11,["H1121"]],[11,13,["H3605"]],[13,15,["H935"]],[15,18,["H6635"]],[18,21,["H5656"]],[21,24,["H168"]],[24,27,["H4150"]]]},{"k":3787,"v":[[0,5,["H6485"]],[5,10,["H4940"]],[10,11,["H1961"]],[11,12,["H7969"]],[12,13,["H505"]],[13,16,["H3967"]]]},{"k":3788,"v":[[0,1,["H428"]],[1,6,["H6485"]],[6,9,["H4940"]],[9,12,["H1121"]],[12,14,["H4847"]],[14,15,["H834"]],[15,16,["H4872"]],[16,18,["H175"]],[18,19,["H6485"]],[19,21,["H5921"]],[21,23,["H6310"]],[23,26,["H3068"]],[26,29,["H3027"]],[29,31,["H4872"]]]},{"k":3789,"v":[[0,1,["H3605"]],[1,5,["H6485","(H853)"]],[5,8,["H3881"]],[8,9,["H834"]],[9,10,["H4872"]],[10,12,["H175"]],[12,15,["H5387"]],[15,17,["H3478"]],[17,18,["H6485"]],[18,21,["H4940"]],[21,25,["H1004"]],[25,28,["H1"]]]},{"k":3790,"v":[[0,2,["H7970"]],[2,3,["H8141"]],[3,4,["H4480","H1121"]],[4,6,["H4605"]],[6,8,["H5704"]],[8,9,["H2572"]],[9,10,["H8141"]],[10,11,["H1121"]],[11,13,["H3605"]],[13,15,["H935"]],[15,17,["H5647"]],[17,19,["H5656"]],[19,22,["H5656"]],[22,25,["H5656"]],[25,28,["H4853"]],[28,31,["H168"]],[31,34,["H4150"]]]},{"k":3791,"v":[[0,5,["H6485"]],[5,8,["H1961"]],[8,9,["H8083"]],[9,10,["H505"]],[10,12,["H2568"]],[12,13,["H3967"]],[13,15,["H8084"]]]},{"k":3792,"v":[[0,2,["H5921"]],[2,4,["H6310"]],[4,7,["H3068"]],[7,10,["H6485"]],[10,13,["H3027"]],[13,15,["H4872"]],[15,17,["H376","H376"]],[17,19,["H5921"]],[19,21,["H5656"]],[21,24,["H5921"]],[24,26,["H4853"]],[26,30,["H6485"]],[30,33,["H834"]],[33,35,["H3068"]],[35,36,["H6680","(H853)"]],[36,37,["H4872"]]]},{"k":3793,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3794,"v":[[0,1,["H6680","(H853)"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,9,["H7971"]],[9,10,["H4480"]],[10,12,["H4264"]],[12,13,["H3605"]],[13,14,["H6879"]],[14,17,["H3605"]],[17,21,["H2100"]],[21,23,["H3605"]],[23,25,["H2931"]],[25,28,["H5315"]]]},{"k":3795,"v":[[0,2,["H4480","H2145"]],[2,3,["H5704"]],[3,4,["H5347"]],[4,8,["H7971"]],[8,9,["H413","H4480","H2351"]],[9,11,["H4264"]],[11,14,["H7971"]],[14,18,["H2930"]],[18,19,["H3808","(H853)"]],[19,21,["H4264"]],[21,24,["H8432"]],[24,25,["H834"]],[25,26,["H589"]],[26,27,["H7931"]]]},{"k":3796,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,7,["H3651"]],[7,11,["H7971","(H853)"]],[11,12,["H413","H4480","H2351"]],[12,14,["H4264"]],[14,15,["H834"]],[15,17,["H3068"]],[17,18,["H1696"]],[18,19,["H413"]],[19,20,["H4872"]],[20,21,["H3651"]],[21,22,["H6213"]],[22,24,["H1121"]],[24,26,["H3478"]]]},{"k":3797,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3798,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H3588"]],[7,9,["H376"]],[9,10,["H176"]],[10,11,["H802"]],[11,13,["H6213"]],[13,14,["H4480","H3605"]],[14,15,["H2403"]],[15,17,["H120"]],[17,20,["H4603"]],[20,22,["H4604"]],[22,25,["H3068"]],[25,27,["H1931"]],[27,28,["H5315"]],[28,30,["H816"]]]},{"k":3799,"v":[[0,4,["H3034","(H853)"]],[4,6,["H2403"]],[6,7,["H834"]],[7,10,["H6213"]],[10,14,["H7725"]],[14,15,["(H853)"]],[15,16,["H817"]],[16,19,["H7218"]],[19,22,["H3254"]],[22,23,["H5921"]],[23,26,["H2549"]],[26,30,["H5414"]],[30,35,["H834"]],[35,38,["H816"]]]},{"k":3800,"v":[[0,2,["H518"]],[2,4,["H376"]],[4,6,["H369"]],[6,7,["H1350"]],[7,9,["H7725"]],[9,11,["H817"]],[11,12,["H413"]],[12,15,["H817"]],[15,17,["H7725"]],[17,20,["H3068"]],[20,24,["H3548"]],[24,25,["H4480","H905"]],[25,27,["H352"]],[27,30,["H3725"]],[30,31,["H834"]],[31,36,["H3722"]],[36,37,["H5921"]],[37,38,[]]]},{"k":3801,"v":[[0,2,["H3605"]],[2,3,["H8641"]],[3,5,["H3605"]],[5,8,["H6944"]],[8,11,["H1121"]],[11,13,["H3478"]],[13,14,["H834"]],[14,16,["H7126"]],[16,19,["H3548"]],[19,21,["H1961"]],[21,22,[]]]},{"k":3802,"v":[[0,3,["H376","(H853)"]],[3,5,["H6944"]],[5,7,["H1961"]],[7,9,["H834"]],[9,11,["H376"]],[11,12,["H5414"]],[12,14,["H3548"]],[14,17,["H1961"]],[17,18,[]]]},{"k":3803,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3804,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H3588"]],[11,13,["H376","H376"]],[13,14,["H802"]],[14,16,["H7847"]],[16,18,["H4603"]],[18,20,["H4604"]],[20,22,[]]]},{"k":3805,"v":[[0,3,["H376"]],[3,4,["H7901"]],[4,5,["H854"]],[5,7,["H7902","H2233"]],[7,11,["H5956"]],[11,14,["H4480","H5869"]],[14,17,["H376"]],[17,21,["H5641"]],[21,23,["H1931"]],[23,25,["H2930"]],[25,29,["H369"]],[29,30,["H5707"]],[30,33,["H3808"]],[33,34,["H1931"]],[34,36,["H8610"]],[36,39,[]]]},{"k":3806,"v":[[0,3,["H7307"]],[3,5,["H7068"]],[5,6,["H5674"]],[6,7,["H5921"]],[7,12,["H7065","(H853)"]],[12,15,["H802"]],[15,17,["H1931"]],[17,19,["H2930"]],[19,20,["H176"]],[20,23,["H7307"]],[23,25,["H7068"]],[25,26,["H5674"]],[26,27,["H5921"]],[27,32,["H7065","(H853)"]],[32,35,["H802"]],[35,37,["H1931"]],[37,39,["H3808"]],[39,40,["H2930"]]]},{"k":3807,"v":[[0,4,["H376"]],[4,5,["H935","(H853)"]],[5,7,["H802"]],[7,8,["H413"]],[8,10,["H3548"]],[10,14,["H935","(H853)"]],[14,16,["H7133"]],[16,17,["H5921"]],[17,20,["H6224"]],[20,24,["H374"]],[24,26,["H8184"]],[26,27,["H7058"]],[27,30,["H3332"]],[30,31,["H3808"]],[31,32,["H8081"]],[32,33,["H5921"]],[33,35,["H3808"]],[35,36,["H5414"]],[36,37,["H3828"]],[37,38,["H5921"]],[38,39,["H3588"]],[39,40,["H1931"]],[40,43,["H4503"]],[43,45,["H7068"]],[45,47,["H4503"]],[47,49,["H2146"]],[49,53,["H2142","H5771"]]]},{"k":3808,"v":[[0,3,["H3548"]],[3,7,["H7126","(H853)"]],[7,9,["H5975"]],[9,11,["H6440"]],[11,13,["H3068"]]]},{"k":3809,"v":[[0,3,["H3548"]],[3,5,["H3947"]],[5,6,["H6918"]],[6,7,["H4325"]],[7,10,["H2789"]],[10,11,["H3627"]],[11,13,["H4480"]],[13,15,["H6083"]],[15,16,["H834"]],[16,17,["H1961"]],[17,20,["H7172"]],[20,23,["H4908"]],[23,25,["H3548"]],[25,27,["H3947"]],[27,29,["H5414"]],[29,31,["H413"]],[31,33,["H4325"]]]},{"k":3810,"v":[[0,3,["H3548"]],[3,5,["H5975","(H853)"]],[5,7,["H802"]],[7,8,["H6440"]],[8,10,["H3068"]],[10,12,["H6544","(H853)"]],[12,14,["H802"]],[14,15,["H7218"]],[15,17,["H5414","(H853)"]],[17,19,["H4503"]],[19,21,["H2146"]],[21,22,["H5921"]],[22,24,["H3709"]],[24,25,["H1931"]],[25,28,["H7068"]],[28,29,["H4503"]],[29,32,["H3548"]],[32,34,["H1961"]],[34,37,["H3027"]],[37,39,["H4751"]],[39,40,["H4325"]],[40,44,["H779"]]]},{"k":3811,"v":[[0,3,["H3548"]],[3,9,["H7650","(H853)"]],[9,11,["H559"]],[11,12,["H413"]],[12,14,["H802"]],[14,15,["H518"]],[15,16,["H3808"]],[16,17,["H376"]],[17,19,["H7901"]],[19,20,["H854"]],[20,23,["H518"]],[23,26,["H3808"]],[26,28,["H7847"]],[28,30,["H2932"]],[30,34,["H8478"]],[34,36,["H376"]],[36,39,["H5352"]],[39,41,["H428"]],[41,42,["H4751"]],[42,43,["H4480","H4325"]],[43,47,["H779"]]]},{"k":3812,"v":[[0,2,["H3588"]],[2,3,["H859"]],[3,6,["H7847"]],[6,10,["H8478"]],[10,12,["H376"]],[12,14,["H3588"]],[14,17,["H2930"]],[17,20,["H376"]],[20,22,["H5414","(H853)","H7903"]],[22,25,["H4480","H1107"]],[25,27,["H376"]]]},{"k":3813,"v":[[0,3,["H3548"]],[3,5,["H7650","(H853)"]],[5,7,["H802"]],[7,10,["H7621"]],[10,12,["H423"]],[12,15,["H3548"]],[15,17,["H559"]],[17,20,["H802"]],[20,22,["H3068"]],[22,23,["H5414"]],[23,26,["H423"]],[26,29,["H7621"]],[29,30,["H8432"]],[30,32,["H5971"]],[32,35,["H3068"]],[35,37,["H5414","(H853)"]],[37,39,["H3409"]],[39,41,["H5307"]],[41,44,["H990"]],[44,46,["H6639"]]]},{"k":3814,"v":[[0,2,["H428"]],[2,3,["H4325"]],[3,7,["H779"]],[7,9,["H935"]],[9,12,["H4578"]],[12,16,["H990"]],[16,18,["H6638"]],[18,21,["H3409"]],[21,23,["H5307"]],[23,26,["H802"]],[26,28,["H559"]],[28,29,["H543"]],[29,30,["H543"]]]},{"k":3815,"v":[[0,3,["H3548"]],[3,5,["H3789"]],[5,6,["H428","(H853)"]],[6,7,["H423"]],[7,10,["H5612"]],[10,16,["H4229"]],[16,17,["H413"]],[17,19,["H4751"]],[19,20,["H4325"]]]},{"k":3816,"v":[[0,4,["(H853)"]],[4,6,["H802"]],[6,8,["H8248","(H853)"]],[8,10,["H4751"]],[10,11,["H4325"]],[11,15,["H779"]],[15,18,["H4325"]],[18,22,["H779"]],[22,24,["H935"]],[24,29,["H4751"]]]},{"k":3817,"v":[[0,3,["H3548"]],[3,5,["H3947","(H853)"]],[5,7,["H7068"]],[7,8,["H4503"]],[8,12,["H802"]],[12,13,["H4480","H3027"]],[13,16,["H5130","(H853)"]],[16,18,["H4503"]],[18,19,["H6440"]],[19,21,["H3068"]],[21,23,["H7126"]],[23,25,["H413"]],[25,27,["H4196"]]]},{"k":3818,"v":[[0,3,["H3548"]],[3,7,["H7061"]],[7,8,["H4480"]],[8,10,["H4503"]],[10,11,["(H853)"]],[11,13,["H234"]],[13,16,["H6999"]],[16,20,["H4196"]],[20,22,["H310"]],[22,24,["(H853)"]],[24,26,["H802"]],[26,28,["H8248","(H853)"]],[28,30,["H4325"]]]},{"k":3819,"v":[[0,8,["H8248","(H853)"]],[8,10,["H4325"]],[10,16,["H1961"]],[16,18,["H518"]],[18,21,["H2930"]],[21,24,["H4603"]],[24,25,["H4604"]],[25,28,["H376"]],[28,31,["H4325"]],[31,35,["H779"]],[35,37,["H935"]],[37,42,["H4751"]],[42,45,["H990"]],[45,47,["H6638"]],[47,50,["H3409"]],[50,52,["H5307"]],[52,55,["H802"]],[55,57,["H1961"]],[57,59,["H423"]],[59,60,["H7130"]],[60,62,["H5971"]]]},{"k":3820,"v":[[0,2,["H518"]],[2,4,["H802"]],[4,6,["H3808"]],[6,7,["H2930"]],[7,10,["H2889"]],[10,15,["H5352"]],[15,18,["H2232"]],[18,19,["H2233"]]]},{"k":3821,"v":[[0,1,["H2063"]],[1,4,["H8451"]],[4,6,["H7068"]],[6,7,["H834"]],[7,9,["H802"]],[9,11,["H7847"]],[11,15,["H8478"]],[15,17,["H376"]],[17,20,["H2930"]]]},{"k":3822,"v":[[0,1,["H176"]],[1,2,["H834"]],[2,4,["H7307"]],[4,6,["H7068"]],[6,7,["H5674"]],[7,8,["H5921"]],[8,13,["H7065","(H853)"]],[13,16,["H802"]],[16,19,["H5975","(H853)"]],[19,21,["H802"]],[21,22,["H6440"]],[22,24,["H3068"]],[24,27,["H3548"]],[27,29,["H6213"]],[29,31,["(H853)"]],[31,32,["H3605"]],[32,33,["H2063"]],[33,34,["H8451"]]]},{"k":3823,"v":[[0,4,["H376"]],[4,6,["H5352"]],[6,8,["H4480","H5771"]],[8,10,["H1931"]],[10,11,["H802"]],[11,13,["H5375","(H853)"]],[13,15,["H5771"]]]},{"k":3824,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3825,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H3588"]],[11,13,["H376"]],[13,14,["H176"]],[14,15,["H802"]],[15,17,["H6381"]],[17,20,["H5087"]],[20,22,["H5088"]],[22,25,["H5139"]],[25,27,["H5144"]],[27,31,["H3068"]]]},{"k":3826,"v":[[0,3,["H5144"]],[3,6,["H4480","H3196"]],[6,9,["H7941"]],[9,12,["H8354"]],[12,13,["H3808"]],[13,14,["H2558"]],[14,16,["H3196"]],[16,18,["H2558"]],[18,21,["H7941"]],[21,22,["H3808"]],[22,25,["H8354"]],[25,26,["H3605"]],[26,27,["H4952"]],[27,29,["H6025"]],[29,30,["H3808"]],[30,31,["H398"]],[31,32,["H3892"]],[32,33,["H6025"]],[33,35,["H3002"]]]},{"k":3827,"v":[[0,1,["H3605"]],[1,3,["H3117"]],[3,6,["H5145"]],[6,9,["H398"]],[9,10,["H3808","H4480","H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,16,["H3196"]],[16,17,["H4480","H1612"]],[17,20,["H4480","H2785"]],[20,22,["H5704"]],[22,24,["H2085"]]]},{"k":3828,"v":[[0,1,["H3605"]],[1,3,["H3117"]],[3,6,["H5088"]],[6,9,["H5145"]],[9,12,["H3808"]],[12,13,["H8593"]],[13,14,["H5674"]],[14,15,["H5921"]],[15,17,["H7218"]],[17,18,["H5704"]],[18,20,["H3117"]],[20,22,["H4390"]],[22,25,["H834"]],[25,27,["H5144"]],[27,31,["H3068"]],[31,34,["H1961"]],[34,35,["H6918"]],[35,40,["H6545"]],[40,43,["H8181"]],[43,46,["H7218"]],[46,47,["H1431"]]]},{"k":3829,"v":[[0,1,["H3605"]],[1,3,["H3117"]],[3,6,["H5144"]],[6,10,["H3068"]],[10,13,["H935"]],[13,14,["H5921"]],[14,15,["H3808"]],[15,16,["H4191"]],[16,17,["H5315"]]]},{"k":3830,"v":[[0,3,["H3808"]],[3,6,["H2930"]],[6,9,["H1"]],[9,13,["H517"]],[13,16,["H251"]],[16,20,["H269"]],[20,23,["H4191"]],[23,24,["H3588"]],[24,26,["H5145"]],[26,29,["H430"]],[29,31,["H5921"]],[31,33,["H7218"]]]},{"k":3831,"v":[[0,1,["H3605"]],[1,3,["H3117"]],[3,6,["H5145"]],[6,7,["H1931"]],[7,9,["H6918"]],[9,12,["H3068"]]]},{"k":3832,"v":[[0,2,["H3588"]],[2,4,["H4191"]],[4,5,["H4191"]],[5,6,["H6621"]],[6,7,["H6597"]],[7,8,["H5921"]],[8,13,["H2930"]],[13,15,["H7218"]],[15,18,["H5145"]],[18,22,["H1548"]],[22,24,["H7218"]],[24,27,["H3117"]],[27,30,["H2893"]],[30,33,["H7637"]],[33,34,["H3117"]],[34,37,["H1548"]],[37,38,[]]]},{"k":3833,"v":[[0,4,["H8066"]],[4,5,["H3117"]],[5,8,["H935"]],[8,9,["H8147"]],[9,10,["H8449"]],[10,11,["H176"]],[11,12,["H8147"]],[12,13,["H1121"]],[13,14,["H3123"]],[14,15,["H413"]],[15,17,["H3548"]],[17,18,["H413"]],[18,20,["H6607"]],[20,23,["H168"]],[23,26,["H4150"]]]},{"k":3834,"v":[[0,3,["H3548"]],[3,5,["H6213"]],[5,7,["H259"]],[7,11,["H2403"]],[11,14,["H259"]],[14,18,["H5930"]],[18,22,["H3722"]],[22,23,["H5921"]],[23,26,["H4480","H834"]],[26,28,["H2398"]],[28,29,["H5921"]],[29,31,["H5315"]],[31,34,["H6942","(H853)"]],[34,36,["H7218"]],[36,38,["H1931"]],[38,39,["H3117"]]]},{"k":3835,"v":[[0,4,["H5144"]],[4,7,["H3068","(H853)"]],[7,9,["H3117"]],[9,12,["H5145"]],[12,15,["H935"]],[15,17,["H3532"]],[17,20,["H1121"]],[20,21,["H8141"]],[21,25,["H817"]],[25,28,["H3117"]],[28,31,["H7223"]],[31,34,["H5307"]],[34,35,["H3588"]],[35,37,["H5145"]],[37,39,["H2930"]]]},{"k":3836,"v":[[0,2,["H2063"]],[2,5,["H8451"]],[5,8,["H5139"]],[8,9,["H3117"]],[9,11,["H3117"]],[11,14,["H5145"]],[14,16,["H4390"]],[16,20,["H935"]],[20,21,["H413"]],[21,23,["H6607"]],[23,26,["H168"]],[26,29,["H4150"]]]},{"k":3837,"v":[[0,4,["H7126","(H853)"]],[4,6,["H7133"]],[6,9,["H3068"]],[9,10,["H259"]],[10,12,["H3532"]],[12,15,["H1121"]],[15,16,["H8141"]],[16,18,["H8549"]],[18,22,["H5930"]],[22,24,["H259"]],[24,26,["H3535"]],[26,29,["H1323"]],[29,30,["H8141"]],[30,32,["H8549"]],[32,36,["H2403"]],[36,38,["H259"]],[38,39,["H352"]],[39,41,["H8549"]],[41,44,["H8002"]]]},{"k":3838,"v":[[0,3,["H5536"]],[3,6,["H4682"]],[6,7,["H2471"]],[7,10,["H5560"]],[10,11,["H1101"]],[11,13,["H8081"]],[13,15,["H7550"]],[15,18,["H4682"]],[18,19,["H4886"]],[19,21,["H8081"]],[21,25,["H4503"]],[25,29,["H5262"]]]},{"k":3839,"v":[[0,3,["H3548"]],[3,5,["H7126"]],[5,7,["H6440"]],[7,9,["H3068"]],[9,12,["H6213","(H853)"]],[12,15,["H2403"]],[15,19,["H5930"]]]},{"k":3840,"v":[[0,4,["H6213"]],[4,6,["H352"]],[6,9,["H2077"]],[9,12,["H8002"]],[12,15,["H3068"]],[15,16,["H5921"]],[16,18,["H5536"]],[18,21,["H4682"]],[21,23,["H3548"]],[23,25,["H6213"]],[25,26,["(H853)"]],[26,29,["H4503"]],[29,33,["H5262"]]]},{"k":3841,"v":[[0,3,["H5139"]],[3,5,["H1548","(H853)"]],[5,7,["H7218"]],[7,10,["H5145"]],[10,13,["H6607"]],[13,16,["H168"]],[16,19,["H4150"]],[19,22,["H3947","(H853)"]],[22,24,["H8181"]],[24,27,["H7218"]],[27,30,["H5145"]],[30,32,["H5414"]],[32,34,["H5921"]],[34,36,["H784"]],[36,37,["H834"]],[37,39,["H8478"]],[39,41,["H2077"]],[41,45,["H8002"]]]},{"k":3842,"v":[[0,3,["H3548"]],[3,5,["H3947","(H853)"]],[5,7,["H1311"]],[7,8,["H2220"]],[8,9,["H4480"]],[9,11,["H352"]],[11,13,["H259"]],[13,14,["H4682"]],[14,15,["H2471"]],[15,17,["H4480"]],[17,19,["H5536"]],[19,21,["H259"]],[21,22,["H4682"]],[22,23,["H7550"]],[23,26,["H5414"]],[26,28,["H5921"]],[28,30,["H3709"]],[30,33,["H5139"]],[33,34,["H310","(H853)"]],[34,39,["H5145"]],[39,41,["H1548"]]]},{"k":3843,"v":[[0,3,["H3548"]],[3,5,["H5130"]],[5,10,["H8573"]],[10,11,["H6440"]],[11,13,["H3068"]],[13,14,["H1931"]],[14,16,["H6944"]],[16,19,["H3548"]],[19,20,["H5921"]],[20,22,["H8573"]],[22,23,["H2373"]],[23,25,["H8641"]],[25,26,["H7785"]],[26,29,["H310"]],[29,31,["H5139"]],[31,33,["H8354"]],[33,34,["H3196"]]]},{"k":3844,"v":[[0,1,["H2063"]],[1,4,["H8451"]],[4,7,["H5139"]],[7,8,["H834"]],[8,10,["H5087"]],[10,14,["H7133"]],[14,17,["H3068"]],[17,18,["H5921"]],[18,20,["H5145"]],[20,21,["H4480","H905"]],[21,23,["H834"]],[23,25,["H3027"]],[25,27,["H5381"]],[27,29,["H6310"]],[29,31,["H5088"]],[31,32,["H834"]],[32,34,["H5087"]],[34,35,["H3651"]],[35,38,["H6213"]],[38,39,["H5921"]],[39,41,["H8451"]],[41,44,["H5145"]]]},{"k":3845,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3846,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,3,["H175"]],[3,5,["H413"]],[5,7,["H1121"]],[7,8,["H559"]],[8,11,["H3541"]],[11,14,["H1288","(H853)"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,19,["H559"]],[19,21,[]]]},{"k":3847,"v":[[0,2,["H3068"]],[2,3,["H1288"]],[3,6,["H8104"]],[6,7,[]]]},{"k":3848,"v":[[0,2,["H3068"]],[2,5,["H6440"]],[5,6,["H215"]],[6,7,["H413"]],[7,11,["H2603"]],[11,13,[]]]},{"k":3849,"v":[[0,2,["H3068"]],[2,4,["H5375"]],[4,6,["H6440"]],[6,7,["H413"]],[7,10,["H7760"]],[10,12,["H7965"]]]},{"k":3850,"v":[[0,4,["H7760","(H853)"]],[4,6,["H8034"]],[6,7,["H5921"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,13,["H589"]],[13,15,["H1288"]],[15,16,[]]]},{"k":3851,"v":[[0,5,["H1961"]],[5,8,["H3117"]],[8,10,["H4872"]],[10,12,["H3615"]],[12,14,["H6965","(H853)"]],[14,16,["H4908"]],[16,19,["H4886"]],[19,22,["H6942"]],[22,25,["H3605"]],[25,27,["H3627"]],[27,31,["H4196"]],[31,33,["H3605"]],[33,35,["H3627"]],[35,39,["H4886"]],[39,42,["H6942"]],[42,43,[]]]},{"k":3852,"v":[[0,3,["H5387"]],[3,5,["H3478"]],[5,6,["H7218"]],[6,9,["H1004"]],[9,12,["H1"]],[12,13,["H1992"]],[13,16,["H5387"]],[16,19,["H4294"]],[19,22,["H5975"]],[22,23,["H1992"]],[23,26,["H5921","H6485"]],[26,27,["H7126"]]]},{"k":3853,"v":[[0,3,["H935","(H853)"]],[3,5,["H7133"]],[5,6,["H6440"]],[6,8,["H3068"]],[8,9,["H8337"]],[9,10,["H6632"]],[10,11,["H5699"]],[11,13,["H8147","H6240"]],[13,14,["H1241"]],[14,16,["H5699"]],[16,17,["H5921"]],[17,18,["H8147"]],[18,21,["H5387"]],[21,25,["H259"]],[25,27,["H7794"]],[27,30,["H7126"]],[30,32,["H6440"]],[32,34,["H4908"]]]},{"k":3854,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3855,"v":[[0,1,["H3947"]],[1,3,["H4480","H854"]],[3,8,["H1961"]],[8,10,["H5647","(H853)"]],[10,12,["H5656"]],[12,15,["H168"]],[15,18,["H4150"]],[18,22,["H5414"]],[22,24,["H413"]],[24,26,["H3881"]],[26,29,["H376"]],[29,31,["H6310"]],[31,33,["H5656"]]]},{"k":3856,"v":[[0,2,["H4872"]],[2,3,["H3947","(H853)"]],[3,5,["H5699"]],[5,8,["H1241"]],[8,10,["H5414"]],[10,12,["H413"]],[12,14,["H3881"]]]},{"k":3857,"v":[[0,0,["(H853)"]],[0,1,["H8147"]],[1,2,["H5699"]],[2,4,["H702"]],[4,5,["H1241"]],[5,7,["H5414"]],[7,10,["H1121"]],[10,12,["H1648"]],[12,14,["H6310"]],[14,16,["H5656"]]]},{"k":3858,"v":[[0,2,["H702"]],[2,3,["H5699"]],[3,5,["H8083"]],[5,6,["H1241"]],[6,8,["H5414"]],[8,11,["H1121"]],[11,13,["H4847"]],[13,15,["H6310"]],[15,17,["H5656"]],[17,20,["H3027"]],[20,22,["H385"]],[22,24,["H1121"]],[24,26,["H175"]],[26,28,["H3548"]]]},{"k":3859,"v":[[0,4,["H1121"]],[4,6,["H6955"]],[6,8,["H5414"]],[8,9,["H3808"]],[9,10,["H3588"]],[10,12,["H5656"]],[12,15,["H6944"]],[15,17,["H5921"]],[17,23,["H5375"]],[23,26,["H3802"]]]},{"k":3860,"v":[[0,3,["H5387"]],[3,4,["H7126","(H853)"]],[4,6,["H2598"]],[6,9,["H4196"]],[9,12,["H3117"]],[12,16,["H4886"]],[16,19,["H5387"]],[19,20,["H7126","(H853)"]],[20,22,["H7133"]],[22,23,["H6440"]],[23,25,["H4196"]]]},{"k":3861,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H7126","(H853)"]],[9,11,["H7133"]],[11,12,["H259"]],[12,13,["H5387"]],[13,16,["H3117","H259","H5387","H3117"]],[16,19,["H2598"]],[19,22,["H4196"]]]},{"k":3862,"v":[[0,4,["H7126","(H853)"]],[4,6,["H7133"]],[6,8,["H7223"]],[8,9,["H3117"]],[9,10,["H1961"]],[10,11,["H5177"]],[11,13,["H1121"]],[13,15,["H5992"]],[15,18,["H4294"]],[18,20,["H3063"]]]},{"k":3863,"v":[[0,3,["H7133"]],[3,5,["H259"]],[5,6,["H3701"]],[6,7,["H7086"]],[7,9,["H4948"]],[9,13,["H3967"]],[13,15,["H7970"]],[15,17,["H259"]],[17,18,["H3701"]],[18,19,["H4219"]],[19,21,["H7657"]],[21,22,["H8255"]],[22,25,["H8255"]],[25,28,["H6944"]],[28,29,["H8147"]],[29,33,["H4392"]],[33,36,["H5560"]],[36,37,["H1101"]],[37,39,["H8081"]],[39,43,["H4503"]]]},{"k":3864,"v":[[0,1,["H259"]],[1,2,["H3709"]],[2,4,["H6235"]],[4,7,["H2091"]],[7,8,["H4392"]],[8,10,["H7004"]]]},{"k":3865,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3866,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3867,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H5177"]],[26,28,["H1121"]],[28,30,["H5992"]]]},{"k":3868,"v":[[0,3,["H8145"]],[3,4,["H3117"]],[4,5,["H5417"]],[5,7,["H1121"]],[7,9,["H6686"]],[9,10,["H5387"]],[10,12,["H3485"]],[12,14,["H7126"]]]},{"k":3869,"v":[[0,2,["H7126"]],[2,3,["(H853)"]],[3,5,["H7133"]],[5,6,["H259"]],[6,7,["H3701"]],[7,8,["H7086"]],[8,10,["H4948"]],[10,14,["H3967"]],[14,16,["H7970"]],[16,18,["H259"]],[18,19,["H3701"]],[19,20,["H4219"]],[20,22,["H7657"]],[22,23,["H8255"]],[23,26,["H8255"]],[26,29,["H6944"]],[29,30,["H8147"]],[30,33,["H4392"]],[33,36,["H5560"]],[36,37,["H1101"]],[37,39,["H8081"]],[39,43,["H4503"]]]},{"k":3870,"v":[[0,1,["H259"]],[1,2,["H3709"]],[2,4,["H2091"]],[4,6,["H6235"]],[6,8,["H4392"]],[8,10,["H7004"]]]},{"k":3871,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3872,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3873,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H5417"]],[26,28,["H1121"]],[28,30,["H6686"]]]},{"k":3874,"v":[[0,3,["H7992"]],[3,4,["H3117"]],[4,5,["H446"]],[5,7,["H1121"]],[7,9,["H2497"]],[9,10,["H5387"]],[10,13,["H1121"]],[13,15,["H2074"]],[15,17,[]]]},{"k":3875,"v":[[0,2,["H7133"]],[2,4,["H259"]],[4,5,["H3701"]],[5,6,["H7086"]],[6,8,["H4948"]],[8,12,["H3967"]],[12,14,["H7970"]],[14,16,["H259"]],[16,17,["H3701"]],[17,18,["H4219"]],[18,20,["H7657"]],[20,21,["H8255"]],[21,24,["H8255"]],[24,27,["H6944"]],[27,28,["H8147"]],[28,31,["H4392"]],[31,34,["H5560"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,41,["H4503"]]]},{"k":3876,"v":[[0,1,["H259"]],[1,2,["H2091"]],[2,3,["H3709"]],[3,5,["H6235"]],[5,7,["H4392"]],[7,9,["H7004"]]]},{"k":3877,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3878,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3879,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H446"]],[26,28,["H1121"]],[28,30,["H2497"]]]},{"k":3880,"v":[[0,3,["H7243"]],[3,4,["H3117"]],[4,5,["H468"]],[5,7,["H1121"]],[7,9,["H7707"]],[9,10,["H5387"]],[10,13,["H1121"]],[13,15,["H7205"]],[15,17,[]]]},{"k":3881,"v":[[0,2,["H7133"]],[2,4,["H259"]],[4,5,["H3701"]],[5,6,["H7086"]],[6,9,["H4948"]],[9,12,["H3967"]],[12,14,["H7970"]],[14,16,["H259"]],[16,17,["H3701"]],[17,18,["H4219"]],[18,20,["H7657"]],[20,21,["H8255"]],[21,24,["H8255"]],[24,27,["H6944"]],[27,28,["H8147"]],[28,31,["H4392"]],[31,34,["H5560"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,41,["H4503"]]]},{"k":3882,"v":[[0,1,["H259"]],[1,2,["H2091"]],[2,3,["H3709"]],[3,5,["H6235"]],[5,7,["H4392"]],[7,9,["H7004"]]]},{"k":3883,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3884,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3885,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H468"]],[26,28,["H1121"]],[28,30,["H7707"]]]},{"k":3886,"v":[[0,3,["H2549"]],[3,4,["H3117"]],[4,5,["H8017"]],[5,7,["H1121"]],[7,9,["H6701"]],[9,10,["H5387"]],[10,13,["H1121"]],[13,15,["H8095"]],[15,17,[]]]},{"k":3887,"v":[[0,2,["H7133"]],[2,4,["H259"]],[4,5,["H3701"]],[5,6,["H7086"]],[6,8,["H4948"]],[8,12,["H3967"]],[12,14,["H7970"]],[14,16,["H259"]],[16,17,["H3701"]],[17,18,["H4219"]],[18,20,["H7657"]],[20,21,["H8255"]],[21,24,["H8255"]],[24,27,["H6944"]],[27,28,["H8147"]],[28,31,["H4392"]],[31,34,["H5560"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,41,["H4503"]]]},{"k":3888,"v":[[0,1,["H259"]],[1,2,["H2091"]],[2,3,["H3709"]],[3,5,["H6235"]],[5,7,["H4392"]],[7,9,["H7004"]]]},{"k":3889,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3890,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3891,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H8017"]],[26,28,["H1121"]],[28,30,["H6701"]]]},{"k":3892,"v":[[0,3,["H8345"]],[3,4,["H3117"]],[4,5,["H460"]],[5,7,["H1121"]],[7,9,["H1845"]],[9,10,["H5387"]],[10,13,["H1121"]],[13,15,["H1410"]],[15,16,[]]]},{"k":3893,"v":[[0,2,["H7133"]],[2,4,["H259"]],[4,5,["H3701"]],[5,6,["H7086"]],[6,9,["H4948"]],[9,12,["H3967"]],[12,14,["H7970"]],[14,16,["H259"]],[16,17,["H3701"]],[17,18,["H4219"]],[18,20,["H7657"]],[20,21,["H8255"]],[21,24,["H8255"]],[24,27,["H6944"]],[27,28,["H8147"]],[28,31,["H4392"]],[31,34,["H5560"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,41,["H4503"]]]},{"k":3894,"v":[[0,1,["H259"]],[1,2,["H2091"]],[2,3,["H3709"]],[3,5,["H6235"]],[5,7,["H4392"]],[7,9,["H7004"]]]},{"k":3895,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3896,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3897,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H460"]],[26,28,["H1121"]],[28,30,["H1845"]]]},{"k":3898,"v":[[0,3,["H7637"]],[3,4,["H3117"]],[4,5,["H476"]],[5,7,["H1121"]],[7,9,["H5989"]],[9,10,["H5387"]],[10,13,["H1121"]],[13,15,["H669"]],[15,16,[]]]},{"k":3899,"v":[[0,2,["H7133"]],[2,4,["H259"]],[4,5,["H3701"]],[5,6,["H7086"]],[6,8,["H4948"]],[8,12,["H3967"]],[12,14,["H7970"]],[14,16,["H259"]],[16,17,["H3701"]],[17,18,["H4219"]],[18,20,["H7657"]],[20,21,["H8255"]],[21,24,["H8255"]],[24,27,["H6944"]],[27,28,["H8147"]],[28,31,["H4392"]],[31,34,["H5560"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,41,["H4503"]]]},{"k":3900,"v":[[0,1,["H259"]],[1,2,["H2091"]],[2,3,["H3709"]],[3,5,["H6235"]],[5,7,["H4392"]],[7,9,["H7004"]]]},{"k":3901,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3902,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3903,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H476"]],[26,28,["H1121"]],[28,30,["H5989"]]]},{"k":3904,"v":[[0,3,["H8066"]],[3,4,["H3117"]],[4,6,["H1583"]],[6,8,["H1121"]],[8,10,["H6301"]],[10,11,["H5387"]],[11,14,["H1121"]],[14,16,["H4519"]]]},{"k":3905,"v":[[0,2,["H7133"]],[2,4,["H259"]],[4,5,["H3701"]],[5,6,["H7086"]],[6,9,["H4948"]],[9,12,["H3967"]],[12,14,["H7970"]],[14,16,["H259"]],[16,17,["H3701"]],[17,18,["H4219"]],[18,20,["H7657"]],[20,21,["H8255"]],[21,24,["H8255"]],[24,27,["H6944"]],[27,28,["H8147"]],[28,31,["H4392"]],[31,34,["H5560"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,41,["H4503"]]]},{"k":3906,"v":[[0,1,["H259"]],[1,2,["H2091"]],[2,3,["H3709"]],[3,5,["H6235"]],[5,7,["H4392"]],[7,9,["H7004"]]]},{"k":3907,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3908,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3909,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H1583"]],[26,28,["H1121"]],[28,30,["H6301"]]]},{"k":3910,"v":[[0,3,["H8671"]],[3,4,["H3117"]],[4,5,["H27"]],[5,7,["H1121"]],[7,9,["H1441"]],[9,10,["H5387"]],[10,13,["H1121"]],[13,15,["H1144"]],[15,16,[]]]},{"k":3911,"v":[[0,2,["H7133"]],[2,4,["H259"]],[4,5,["H3701"]],[5,6,["H7086"]],[6,8,["H4948"]],[8,12,["H3967"]],[12,14,["H7970"]],[14,16,["H259"]],[16,17,["H3701"]],[17,18,["H4219"]],[18,20,["H7657"]],[20,21,["H8255"]],[21,24,["H8255"]],[24,27,["H6944"]],[27,28,["H8147"]],[28,31,["H4392"]],[31,34,["H5560"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,41,["H4503"]]]},{"k":3912,"v":[[0,1,["H259"]],[1,2,["H2091"]],[2,3,["H3709"]],[3,5,["H6235"]],[5,7,["H4392"]],[7,9,["H7004"]]]},{"k":3913,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3914,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3915,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H27"]],[26,28,["H1121"]],[28,30,["H1441"]]]},{"k":3916,"v":[[0,3,["H6224"]],[3,4,["H3117"]],[4,5,["H295"]],[5,7,["H1121"]],[7,9,["H5996"]],[9,10,["H5387"]],[10,13,["H1121"]],[13,15,["H1835"]],[15,16,[]]]},{"k":3917,"v":[[0,2,["H7133"]],[2,4,["H259"]],[4,5,["H3701"]],[5,6,["H7086"]],[6,8,["H4948"]],[8,12,["H3967"]],[12,14,["H7970"]],[14,16,["H259"]],[16,17,["H3701"]],[17,18,["H4219"]],[18,20,["H7657"]],[20,21,["H8255"]],[21,24,["H8255"]],[24,27,["H6944"]],[27,28,["H8147"]],[28,31,["H4392"]],[31,34,["H5560"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,41,["H4503"]]]},{"k":3918,"v":[[0,1,["H259"]],[1,2,["H2091"]],[2,3,["H3709"]],[3,5,["H6235"]],[5,7,["H4392"]],[7,9,["H7004"]]]},{"k":3919,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3920,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3921,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H295"]],[26,28,["H1121"]],[28,30,["H5996"]]]},{"k":3922,"v":[[0,3,["H6249","H6240","(H3117)"]],[3,4,["H3117"]],[4,5,["H6295"]],[5,7,["H1121"]],[7,9,["H5918"]],[9,10,["H5387"]],[10,13,["H1121"]],[13,15,["H836"]],[15,16,[]]]},{"k":3923,"v":[[0,2,["H7133"]],[2,4,["H259"]],[4,5,["H3701"]],[5,6,["H7086"]],[6,8,["H4948"]],[8,12,["H3967"]],[12,14,["H7970"]],[14,16,["H259"]],[16,17,["H3701"]],[17,18,["H4219"]],[18,20,["H7657"]],[20,21,["H8255"]],[21,24,["H8255"]],[24,27,["H6944"]],[27,28,["H8147"]],[28,31,["H4392"]],[31,34,["H5560"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,41,["H4503"]]]},{"k":3924,"v":[[0,1,["H259"]],[1,2,["H2091"]],[2,3,["H3709"]],[3,5,["H6235"]],[5,7,["H4392"]],[7,9,["H7004"]]]},{"k":3925,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3926,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3927,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H6295"]],[26,28,["H1121"]],[28,30,["H5918"]]]},{"k":3928,"v":[[0,3,["H8147","H6240","(H3117)"]],[3,4,["H3117"]],[4,5,["H299"]],[5,7,["H1121"]],[7,9,["H5881"]],[9,10,["H5387"]],[10,13,["H1121"]],[13,15,["H5321"]],[15,16,[]]]},{"k":3929,"v":[[0,2,["H7133"]],[2,4,["H259"]],[4,5,["H3701"]],[5,6,["H7086"]],[6,8,["H4948"]],[8,12,["H3967"]],[12,14,["H7970"]],[14,16,["H259"]],[16,17,["H3701"]],[17,18,["H4219"]],[18,20,["H7657"]],[20,21,["H8255"]],[21,24,["H8255"]],[24,27,["H6944"]],[27,28,["H8147"]],[28,31,["H4392"]],[31,34,["H5560"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,41,["H4503"]]]},{"k":3930,"v":[[0,1,["H259"]],[1,2,["H2091"]],[2,3,["H3709"]],[3,5,["H6235"]],[5,7,["H4392"]],[7,9,["H7004"]]]},{"k":3931,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3932,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3933,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H299"]],[26,28,["H1121"]],[28,30,["H5881"]]]},{"k":3934,"v":[[0,1,["H2063"]],[1,4,["H2598"]],[4,7,["H4196"]],[7,10,["H3117"]],[10,14,["H4886"]],[14,15,["H4480","H854"]],[15,17,["H5387"]],[17,19,["H3478"]],[19,20,["H8147","H6240"]],[20,21,["H7086"]],[21,23,["H3701"]],[23,24,["H8147","H6240"]],[24,25,["H3701"]],[25,26,["H4219"]],[26,27,["H8147","H6240"]],[27,28,["H3709"]],[28,30,["H2091"]]]},{"k":3935,"v":[[0,1,["H259"]],[1,2,["H7086"]],[2,4,["H3701"]],[4,7,["H3967"]],[7,9,["H7970"]],[9,11,["H259"]],[11,12,["H4219"]],[12,13,["H7657"]],[13,14,["H3605"]],[14,16,["H3701"]],[16,17,["H3627"]],[17,20,["H505"]],[20,22,["H702"]],[22,23,["H3967"]],[23,27,["H8255"]],[27,30,["H6944"]]]},{"k":3936,"v":[[0,2,["H2091"]],[2,3,["H3709"]],[3,5,["H8147","H6240"]],[5,6,["H4392"]],[6,8,["H7004"]],[8,12,["H6235","H6235","H3709"]],[12,15,["H8255"]],[15,18,["H6944"]],[18,19,["H3605"]],[19,21,["H2091"]],[21,24,["H3709"]],[24,27,["H3967"]],[27,29,["H6242"]],[29,30,[]]]},{"k":3937,"v":[[0,1,["H3605"]],[1,3,["H1241"]],[3,7,["H5930"]],[7,9,["H8147","H6240"]],[9,10,["H6499"]],[10,12,["H352"]],[12,13,["H8147","H6240"]],[13,15,["H3532"]],[15,18,["H1121"]],[18,19,["H8141"]],[19,20,["H8147","H6240"]],[20,24,["H4503"]],[24,27,["H8163"]],[27,30,["H5795"]],[30,33,["H2403"]],[33,34,["H8147","H6240"]]]},{"k":3938,"v":[[0,2,["H3605"]],[2,4,["H1241"]],[4,7,["H2077"]],[7,11,["H8002"]],[11,13,["H6242"]],[13,15,["H702"]],[15,16,["H6499"]],[16,18,["H352"]],[18,19,["H8346"]],[19,22,["H6260"]],[22,23,["H8346"]],[23,25,["H3532"]],[25,28,["H1121"]],[28,29,["H8141"]],[29,30,["H8346"]],[30,31,["H2063"]],[31,34,["H2598"]],[34,37,["H4196"]],[37,39,["H310"]],[39,42,["H4886"]]]},{"k":3939,"v":[[0,3,["H4872"]],[3,5,["H935"]],[5,6,["H413"]],[6,8,["H168"]],[8,11,["H4150"]],[11,13,["H1696"]],[13,14,["H854"]],[14,18,["H8085","(H853)"]],[18,20,["H6963"]],[20,23,["H1696"]],[23,24,["H413"]],[24,27,["H4480","H5921"]],[27,30,["H3727"]],[30,31,["H834"]],[31,33,["H5921"]],[33,35,["H727"]],[35,37,["H5715"]],[37,39,["H4480","H996"]],[39,41,["H8147"]],[41,42,["H3742"]],[42,45,["H1696"]],[45,46,["H413"]],[46,47,[]]]},{"k":3940,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3941,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,3,["H175"]],[3,5,["H559"]],[5,6,["H413"]],[6,10,["H5927","(H853)"]],[10,12,["H5216"]],[12,14,["H7651"]],[14,15,["H5216"]],[15,18,["H215"]],[18,20,["H413","H4136","H6440"]],[20,22,["H4501"]]]},{"k":3942,"v":[[0,2,["H175"]],[2,3,["H6213"]],[3,4,["H3651"]],[4,6,["H5927"]],[6,8,["H5216"]],[8,11,["H413","H4136","H6440"]],[11,13,["H4501"]],[13,14,["H834"]],[14,16,["H3068"]],[16,17,["H6680","(H853)"]],[17,18,["H4872"]]]},{"k":3943,"v":[[0,2,["H2088"]],[2,3,["H4639"]],[3,6,["H4501"]],[6,9,["H4749"]],[9,10,["H2091"]],[10,11,["H5704"]],[11,13,["H3409"]],[13,15,["H5704"]],[15,17,["H6525"]],[17,21,["H4749"]],[21,25,["H4758"]],[25,26,["H834"]],[26,28,["H3068"]],[28,30,["H7200","(H853)"]],[30,31,["H4872"]],[31,32,["H3651"]],[32,34,["H6213","(H853)"]],[34,36,["H4501"]]]},{"k":3944,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3945,"v":[[0,1,["H3947","(H853)"]],[1,3,["H3881"]],[3,5,["H4480","H8432"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,11,["H2891"]],[11,12,[]]]},{"k":3946,"v":[[0,2,["H3541"]],[2,5,["H6213"]],[5,9,["H2891"]],[9,11,["H5137"]],[11,12,["H4325"]],[12,14,["H2403"]],[14,15,["H5921"]],[15,20,["H5674","H8593","H5921"]],[20,21,["H3605"]],[21,23,["H1320"]],[23,27,["H3526"]],[27,29,["H899"]],[29,34,["H2891"]]]},{"k":3947,"v":[[0,4,["H3947"]],[4,6,["H1121","H1241"]],[6,7,["H6499"]],[7,11,["H4503"]],[11,14,["H5560"]],[14,15,["H1101"]],[15,17,["H8081"]],[17,19,["H8145"]],[19,20,["H1121","H1241"]],[20,21,["H6499"]],[21,24,["H3947"]],[24,28,["H2403"]]]},{"k":3948,"v":[[0,4,["H7126","(H853)"]],[4,6,["H3881"]],[6,7,["H6440"]],[7,9,["H168"]],[9,12,["H4150"]],[12,16,["H6950","(H853)"]],[16,18,["H3605"]],[18,19,["H5712"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,25,[]]]},{"k":3949,"v":[[0,4,["H7126","(H853)"]],[4,6,["H3881"]],[6,7,["H6440"]],[7,9,["H3068"]],[9,12,["H1121"]],[12,14,["H3478"]],[14,16,["H5564","(H853)"]],[16,18,["H3027"]],[18,19,["H5921"]],[19,21,["H3881"]]]},{"k":3950,"v":[[0,2,["H175"]],[2,4,["H5130","(H853)"]],[4,6,["H3881"]],[6,7,["H6440"]],[7,9,["H3068"]],[9,12,["H8573"]],[12,13,["H4480","H854"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,21,["H1961","H5647","(H853)"]],[21,23,["H5656"]],[23,26,["H3068"]]]},{"k":3951,"v":[[0,3,["H3881"]],[3,5,["H5564","(H853)"]],[5,7,["H3027"]],[7,8,["H5921"]],[8,10,["H7218"]],[10,13,["H6499"]],[13,17,["H6213","(H853)"]],[17,19,["H259"]],[19,23,["H2403"]],[23,26,["H259"]],[26,30,["H5930"]],[30,33,["H3068"]],[33,37,["H3722"]],[37,38,["H5921"]],[38,40,["H3881"]]]},{"k":3952,"v":[[0,4,["H5975","(H853)"]],[4,6,["H3881"]],[6,7,["H6440"]],[7,8,["H175"]],[8,10,["H6440"]],[10,12,["H1121"]],[12,14,["H5130"]],[14,18,["H8573"]],[18,21,["H3068"]]]},{"k":3953,"v":[[0,4,["H914","(H853)"]],[4,6,["H3881"]],[6,8,["H4480","H8432"]],[8,10,["H1121"]],[10,12,["H3478"]],[12,15,["H3881"]],[15,17,["H1961"]],[17,18,[]]]},{"k":3954,"v":[[0,2,["H310"]],[2,3,["H3651"]],[3,6,["H3881"]],[6,8,["H935"]],[8,12,["H5647","(H853)"]],[12,15,["H168"]],[15,18,["H4150"]],[18,22,["H2891"]],[22,25,["H5130"]],[25,29,["H8573"]]]},{"k":3955,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,5,["H5414","H5414"]],[5,9,["H4480","H8432"]],[9,11,["H1121"]],[11,13,["H3478"]],[13,15,["H8478"]],[15,18,["H6363"]],[18,19,["H3605"]],[19,20,["H7358"]],[20,25,["H1060"]],[25,27,["H3605"]],[27,29,["H4480","H1121"]],[29,31,["H3478"]],[31,34,["H3947"]],[34,37,[]]]},{"k":3956,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H1060"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,13,["H120"]],[13,15,["H929"]],[15,18,["H3117"]],[18,21,["H5221"]],[21,22,["H3605"]],[22,23,["H1060"]],[23,26,["H776"]],[26,28,["H4714"]],[28,30,["H6942"]],[30,33,[]]]},{"k":3957,"v":[[0,4,["H3947","(H853)"]],[4,6,["H3881"]],[6,7,["H8478"]],[7,8,["H3605"]],[8,10,["H1060"]],[10,13,["H1121"]],[13,15,["H3478"]]]},{"k":3958,"v":[[0,4,["H5414","(H853)"]],[4,6,["H3881"]],[6,9,["H5414"]],[9,11,["H175"]],[11,15,["H1121"]],[15,17,["H4480","H8432"]],[17,19,["H1121"]],[19,21,["H3478"]],[21,23,["H5647","(H853)"]],[23,25,["H5656"]],[25,28,["H1121"]],[28,30,["H3478"]],[30,33,["H168"]],[33,36,["H4150"]],[36,41,["H3722"]],[41,42,["H5921"]],[42,44,["H1121"]],[44,46,["H3478"]],[46,49,["H1961"]],[49,50,["H3808"]],[50,51,["H5063"]],[51,54,["H1121"]],[54,56,["H3478"]],[56,59,["H1121"]],[59,61,["H3478"]],[61,63,["H5066"]],[63,64,["H413"]],[64,66,["H6944"]]]},{"k":3959,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,6,["H3605"]],[6,8,["H5712"]],[8,11,["H1121"]],[11,13,["H3478"]],[13,14,["H6213"]],[14,17,["H3881"]],[17,20,["H3605"]],[20,21,["H834"]],[21,23,["H3068"]],[23,24,["H6680","(H853)"]],[24,25,["H4872"]],[25,28,["H3881"]],[28,29,["H3651"]],[29,30,["H6213"]],[30,32,["H1121"]],[32,34,["H3478"]],[34,36,[]]]},{"k":3960,"v":[[0,3,["H3881"]],[3,5,["H2398"]],[5,8,["H3526"]],[8,10,["H899"]],[10,12,["H175"]],[12,13,["H5130"]],[13,17,["H8573"]],[17,18,["H6440"]],[18,20,["H3068"]],[20,22,["H175"]],[22,25,["H3722"]],[25,26,["H5921"]],[26,29,["H2891"]],[29,30,[]]]},{"k":3961,"v":[[0,2,["H310"]],[2,3,["H3651"]],[3,7,["H935","H3881"]],[7,9,["H5647","(H853)"]],[9,11,["H5656"]],[11,14,["H168"]],[14,17,["H4150"]],[17,18,["H6440"]],[18,19,["H175"]],[19,21,["H6440"]],[21,23,["H1121"]],[23,24,["H834"]],[24,26,["H3068"]],[26,28,["H6680","(H853)"]],[28,29,["H4872"]],[29,30,["H5921"]],[30,32,["H3881"]],[32,33,["H3651"]],[33,34,["H6213"]],[34,37,[]]]},{"k":3962,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3963,"v":[[0,1,["H2063"]],[1,4,["H834"]],[4,8,["H3881"]],[8,10,["H6242"]],[10,12,["H2568"]],[12,13,["H8141"]],[13,14,["H4480","H1121"]],[14,16,["H4605"]],[16,20,["H935"]],[20,23,["H6633","(H6635)"]],[23,25,["H5656"]],[25,28,["H168"]],[28,31,["H4150"]]]},{"k":3964,"v":[[0,4,["H4480","H1121"]],[4,6,["H2572"]],[6,7,["H8141"]],[7,12,["H7725","H4480","H6635"]],[12,14,["H5656"]],[14,18,["H5647"]],[18,19,["H3808"]],[19,20,["H5750"]]]},{"k":3965,"v":[[0,3,["H8334"]],[3,4,["H854"]],[4,6,["H251"]],[6,9,["H168"]],[9,12,["H4150"]],[12,14,["H8104"]],[14,16,["H4931"]],[16,19,["H5647"]],[19,20,["H3808"]],[20,21,["H5656"]],[21,22,["H3602"]],[22,25,["H6213"]],[25,28,["H3881"]],[28,31,["H4931"]]]},{"k":3966,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H4057"]],[9,11,["H5514"]],[11,14,["H7223"]],[14,15,["H2320"]],[15,18,["H8145"]],[18,19,["H8141"]],[19,24,["H3318"]],[24,27,["H4480","H776"]],[27,29,["H4714"]],[29,30,["H559"]]]},{"k":3967,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H6213","(H853)"]],[7,9,["H6453"]],[9,13,["H4150"]]]},{"k":3968,"v":[[0,3,["H702","H6240"]],[3,4,["H3117"]],[4,6,["H2088"]],[6,7,["H2320"]],[7,8,["H996"]],[8,9,["H6153"]],[9,12,["H6213"]],[12,17,["H4150"]],[17,20,["H3605"]],[20,22,["H2708"]],[22,28,["H3605"]],[28,30,["H4941"]],[30,34,["H6213"]],[34,35,[]]]},{"k":3969,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,12,["H6213"]],[12,14,["H6453"]]]},{"k":3970,"v":[[0,3,["H6213","(H853)"]],[3,5,["H6453"]],[5,8,["H702","H6240"]],[8,9,["H3117"]],[9,12,["H7223"]],[12,13,["H2320"]],[13,14,["H996"]],[14,15,["H6153"]],[15,18,["H4057"]],[18,20,["H5514"]],[20,23,["H3605"]],[23,24,["H834"]],[24,26,["H3068"]],[26,27,["H6680","(H853)"]],[27,28,["H4872"]],[28,29,["H3651"]],[29,30,["H6213"]],[30,32,["H1121"]],[32,34,["H3478"]]]},{"k":3971,"v":[[0,3,["H1961"]],[3,5,["H376"]],[5,6,["H834"]],[6,7,["H1961"]],[7,8,["H2931"]],[8,12,["H5315"]],[12,15,["H120"]],[15,18,["H3201"]],[18,19,["H3808"]],[19,20,["H6213"]],[20,22,["H6453"]],[22,24,["H1931"]],[24,25,["H3117"]],[25,28,["H7126"]],[28,29,["H6440"]],[29,30,["H4872"]],[30,32,["H6440"]],[32,33,["H175"]],[33,35,["H1931"]],[35,36,["H3117"]]]},{"k":3972,"v":[[0,2,["H1992"]],[2,3,["H376"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H587"]],[7,9,["H2931"]],[9,13,["H5315"]],[13,16,["H120"]],[16,17,["H4100"]],[17,21,["H1639"]],[21,25,["H1115"]],[25,26,["H7126","(H853)"]],[26,28,["H7133"]],[28,31,["H3068"]],[31,35,["H4150"]],[35,36,["H8432"]],[36,38,["H1121"]],[38,40,["H3478"]]]},{"k":3973,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,7,["H5975"]],[7,11,["H8085"]],[11,12,["H4100"]],[12,14,["H3068"]],[14,16,["H6680"]],[16,18,[]]]},{"k":3974,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3975,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H559"]],[7,8,["H3588"]],[8,10,["H376","H376"]],[10,13,["H176"]],[13,16,["H1755"]],[16,18,["H1961"]],[18,19,["H2931"]],[19,25,["H5315"]],[25,26,["H176"]],[26,30,["H1870"]],[30,32,["H7350"]],[32,36,["H6213"]],[36,38,["H6453"]],[38,41,["H3068"]]]},{"k":3976,"v":[[0,2,["H702","H6240"]],[2,3,["H3117"]],[3,6,["H8145"]],[6,7,["H2320"]],[7,8,["H996"]],[8,9,["H6153"]],[9,12,["H6213"]],[12,15,["H398"]],[15,17,["H5921"]],[17,19,["H4682"]],[19,21,["H4844"]],[21,22,[]]]},{"k":3977,"v":[[0,3,["H7604"]],[3,4,["H3808"]],[4,5,["H4480"]],[5,7,["H5704"]],[7,9,["H1242"]],[9,10,["H3808"]],[10,11,["H7665"]],[11,13,["H6106"]],[13,18,["H3605"]],[18,20,["H2708"]],[20,23,["H6453"]],[23,26,["H6213"]],[26,27,[]]]},{"k":3978,"v":[[0,3,["H376"]],[3,4,["H834"]],[4,6,["H2889"]],[6,8,["H1961"]],[8,9,["H3808"]],[9,12,["H1870"]],[12,14,["H2308"]],[14,16,["H6213"]],[16,18,["H6453"]],[18,21,["H1931"]],[21,22,["H5315"]],[22,26,["H3772"]],[26,30,["H4480","H5971"]],[30,31,["H3588"]],[31,33,["H7126"]],[33,34,["H3808"]],[34,36,["H7133"]],[36,39,["H3068"]],[39,43,["H4150"]],[43,44,["H1931"]],[44,45,["H376"]],[45,47,["H5375"]],[47,49,["H2399"]]]},{"k":3979,"v":[[0,2,["H3588"]],[2,4,["H1616"]],[4,6,["H1481"]],[6,7,["H854"]],[7,11,["H6213"]],[11,13,["H6453"]],[13,16,["H3068"]],[16,20,["H2708"]],[20,23,["H6453"]],[23,28,["H4941"]],[28,30,["H3651"]],[30,33,["H6213"]],[33,36,["H1961"]],[36,37,["H259"]],[37,38,["H2708"]],[38,42,["H1616"]],[42,48,["H249"]],[48,51,["H776"]]]},{"k":3980,"v":[[0,4,["H3117"]],[4,5,["(H853)"]],[5,7,["H4908"]],[7,10,["H6965"]],[10,12,["H6051"]],[12,13,["H3680","(H853)"]],[13,15,["H4908"]],[15,18,["H168"]],[18,21,["H5715"]],[21,24,["H6153"]],[24,26,["H1961"]],[26,27,["H5921"]],[27,29,["H4908"]],[29,34,["H4758"]],[34,36,["H784"]],[36,37,["H5704"]],[37,39,["H1242"]]]},{"k":3981,"v":[[0,1,["H3651"]],[1,3,["H1961"]],[3,4,["H8548"]],[4,6,["H6051"]],[6,7,["H3680"]],[7,13,["H4758"]],[13,15,["H784"]],[15,17,["H3915"]]]},{"k":3982,"v":[[0,2,["H6310"]],[2,4,["H6051"]],[4,7,["H5927"]],[7,8,["H4480","H5921"]],[8,10,["H168"]],[10,12,["H310"]],[12,13,["H3651"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,18,["H5265"]],[18,22,["H4725"]],[22,23,["H834"]],[23,25,["H6051"]],[25,26,["H7931"]],[26,27,["H8033"]],[27,29,["H1121"]],[29,31,["H3478"]],[31,34,["H2583"]]]},{"k":3983,"v":[[0,1,["H5921"]],[1,3,["H6310"]],[3,6,["H3068"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,11,["H5265"]],[11,13,["H5921"]],[13,15,["H6310"]],[15,18,["H3068"]],[18,20,["H2583"]],[20,23,["H3605","H3117","H834"]],[23,25,["H6051"]],[25,26,["H7931"]],[26,27,["H5921"]],[27,29,["H4908"]],[29,34,["H2583"]]]},{"k":3984,"v":[[0,4,["H6051"]],[4,6,["H748"]],[6,7,["H5921"]],[7,9,["H4908"]],[9,10,["H7227"]],[10,11,["H3117"]],[11,14,["H1121"]],[14,16,["H3478"]],[16,17,["H8104","(H853)"]],[17,19,["H4931"]],[19,22,["H3068"]],[22,24,["H5265"]],[24,25,["H3808"]]]},{"k":3985,"v":[[0,4,["H3426"]],[4,5,["H834"]],[5,7,["H6051"]],[7,8,["H1961"]],[8,10,["H4557"]],[10,11,["H3117"]],[11,12,["H5921"]],[12,14,["H4908"]],[14,16,["H5921"]],[16,18,["H6310"]],[18,21,["H3068"]],[21,26,["H2583"]],[26,29,["H5921"]],[29,31,["H6310"]],[31,34,["H3068"]],[34,36,["H5265"]]]},{"k":3986,"v":[[0,4,["H3426"]],[4,5,["H834"]],[5,7,["H6051"]],[7,8,["H1961"]],[8,10,["H4480","H6153"]],[10,11,["H5704"]],[11,13,["H1242"]],[13,17,["H6051"]],[17,20,["H5927"]],[20,23,["H1242"]],[23,26,["H5265"]],[26,27,["H176"]],[27,31,["H3119"]],[31,34,["H3915"]],[34,37,["H6051"]],[37,40,["H5927"]],[40,42,["H5265"]]]},{"k":3987,"v":[[0,1,["H176"]],[1,6,["H3117"]],[6,7,["H176"]],[7,9,["H2320"]],[9,10,["H176"]],[10,12,["H3117"]],[12,15,["H6051"]],[15,16,["H748"]],[16,17,["H5921"]],[17,19,["H4908"]],[19,20,["H7931"]],[20,21,["H5921"]],[21,23,["H1121"]],[23,25,["H3478"]],[25,29,["H2583"]],[29,31,["H5265"]],[31,32,["H3808"]],[32,38,["H5927"]],[38,40,["H5265"]]]},{"k":3988,"v":[[0,1,["H5921"]],[1,3,["H6310"]],[3,6,["H3068"]],[6,11,["H2583"]],[11,13,["H5921"]],[13,15,["H6310"]],[15,18,["H3068"]],[18,20,["H5265"]],[20,22,["H8104","(H853)"]],[22,24,["H4931"]],[24,27,["H3068"]],[27,28,["H5921"]],[28,30,["H6310"]],[30,33,["H3068"]],[33,36,["H3027"]],[36,38,["H4872"]]]},{"k":3989,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3990,"v":[[0,1,["H6213"]],[1,3,["H8147"]],[3,4,["H2689"]],[4,6,["H3701"]],[6,10,["H4749"]],[10,13,["H6213"]],[13,18,["H1961"]],[18,22,["H4744"]],[22,25,["H5712"]],[25,29,["H4550","(H853)"]],[29,32,["H4264"]]]},{"k":3991,"v":[[0,5,["H8628"]],[5,8,["H3605"]],[8,10,["H5712"]],[10,13,["H3259"]],[13,14,["H413"]],[14,16,["H413"]],[16,18,["H6607"]],[18,21,["H168"]],[21,24,["H4150"]]]},{"k":3992,"v":[[0,2,["H518"]],[2,4,["H8628"]],[4,7,["H259"]],[7,11,["H5387"]],[11,14,["H7218"]],[14,17,["H505"]],[17,19,["H3478"]],[19,22,["H3259"]],[22,23,["H413"]],[23,24,[]]]},{"k":3993,"v":[[0,3,["H8628"]],[3,5,["H8643"]],[5,8,["H4264"]],[8,10,["H2583"]],[10,14,["H6924"]],[14,17,["H5265"]]]},{"k":3994,"v":[[0,3,["H8628"]],[3,5,["H8643"]],[5,8,["H8145"]],[8,11,["H4264"]],[11,13,["H2583"]],[13,17,["H8486"]],[17,21,["H5265"]],[21,24,["H8628"]],[24,26,["H8643"]],[26,29,["H4550"]]]},{"k":3995,"v":[[0,2,["(H853)"]],[2,4,["H6951"]],[4,9,["H6950"]],[9,12,["H8628"]],[12,16,["H3808"]],[16,19,["H7321"]]]},{"k":3996,"v":[[0,3,["H1121"]],[3,5,["H175"]],[5,7,["H3548"]],[7,9,["H8628"]],[9,12,["H2689"]],[12,16,["H1961"]],[16,21,["H2708"]],[21,23,["H5769"]],[23,26,["H1755"]]]},{"k":3997,"v":[[0,2,["H3588"]],[2,4,["H935"]],[4,6,["H4421"]],[6,9,["H776"]],[9,10,["H5921"]],[10,12,["H6862"]],[12,14,["H6887"]],[14,21,["H7321"]],[21,24,["H2689"]],[24,29,["H2142"]],[29,30,["H6440"]],[30,32,["H3068"]],[32,34,["H430"]],[34,39,["H3467"]],[39,42,["H4480","H341"]]]},{"k":3998,"v":[[0,4,["H3117"]],[4,7,["H8057"]],[7,12,["H4150"]],[12,16,["H7218"]],[16,19,["H2320"]],[19,22,["H8628"]],[22,25,["H2689"]],[25,26,["H5921"]],[26,29,["H5930"]],[29,31,["H5921"]],[31,33,["H2077"]],[33,37,["H8002"]],[37,41,["H1961"]],[41,46,["H2146"]],[46,47,["H6440"]],[47,49,["H430"]],[49,50,["H589"]],[50,53,["H3068"]],[53,55,["H430"]]]},{"k":3999,"v":[[0,5,["H1961"]],[5,8,["H6242"]],[8,12,["H8145"]],[12,13,["H2320"]],[13,16,["H8145"]],[16,17,["H8141"]],[17,20,["H6051"]],[20,23,["H5927"]],[23,25,["H4480","H5921"]],[25,27,["H4908"]],[27,30,["H5715"]]]},{"k":4000,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5265"]],[6,8,["H4550"]],[8,12,["H4480","H4057"]],[12,14,["H5514"]],[14,17,["H6051"]],[17,18,["H7931"]],[18,21,["H4057"]],[21,23,["H6290"]]]},{"k":4001,"v":[[0,3,["H7223"]],[3,6,["H5265"]],[6,8,["H5921"]],[8,10,["H6310"]],[10,13,["H3068"]],[13,16,["H3027"]],[16,18,["H4872"]]]},{"k":4002,"v":[[0,3,["H7223"]],[3,5,["H5265"]],[5,7,["H1714"]],[7,10,["H4264"]],[10,13,["H1121"]],[13,15,["H3063"]],[15,19,["H6635"]],[19,21,["H5921"]],[21,23,["H6635"]],[23,25,["H5177"]],[25,27,["H1121"]],[27,29,["H5992"]]]},{"k":4003,"v":[[0,2,["H5921"]],[2,4,["H6635"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H3485"]],[12,14,["H5417"]],[14,16,["H1121"]],[16,18,["H6686"]]]},{"k":4004,"v":[[0,2,["H5921"]],[2,4,["H6635"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H2074"]],[12,14,["H446"]],[14,16,["H1121"]],[16,18,["H2497"]]]},{"k":4005,"v":[[0,3,["H4908"]],[3,6,["H3381"]],[6,9,["H1121"]],[9,11,["H1648"]],[11,14,["H1121"]],[14,16,["H4847"]],[16,18,["H5265"]],[18,19,["H5375"]],[19,21,["H4908"]]]},{"k":4006,"v":[[0,3,["H1714"]],[3,6,["H4264"]],[6,8,["H7205"]],[8,10,["H5265"]],[10,14,["H6635"]],[14,16,["H5921"]],[16,18,["H6635"]],[18,20,["H468"]],[20,22,["H1121"]],[22,24,["H7707"]]]},{"k":4007,"v":[[0,2,["H5921"]],[2,4,["H6635"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H8095"]],[12,14,["H8017"]],[14,16,["H1121"]],[16,18,["H6701"]]]},{"k":4008,"v":[[0,2,["H5921"]],[2,4,["H6635"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H1410"]],[12,14,["H460"]],[14,16,["H1121"]],[16,18,["H1845"]]]},{"k":4009,"v":[[0,3,["H6956"]],[3,5,["H5265"]],[5,6,["H5375"]],[6,8,["H4720"]],[8,14,["H6965","(H853)"]],[14,16,["H4908"]],[16,17,["H5704"]],[17,19,["H935"]]]},{"k":4010,"v":[[0,3,["H1714"]],[3,6,["H4264"]],[6,9,["H1121"]],[9,11,["H669"]],[11,13,["H5265"]],[13,17,["H6635"]],[17,19,["H5921"]],[19,21,["H6635"]],[21,23,["H476"]],[23,25,["H1121"]],[25,27,["H5989"]]]},{"k":4011,"v":[[0,2,["H5921"]],[2,4,["H6635"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H4519"]],[12,14,["H1583"]],[14,16,["H1121"]],[16,18,["H6301"]]]},{"k":4012,"v":[[0,2,["H5921"]],[2,4,["H6635"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H1144"]],[12,14,["H27"]],[14,16,["H1121"]],[16,18,["H1441"]]]},{"k":4013,"v":[[0,3,["H1714"]],[3,6,["H4264"]],[6,9,["H1121"]],[9,11,["H1835"]],[11,13,["H5265"]],[13,17,["H622"]],[17,19,["H3605"]],[19,21,["H4264"]],[21,24,["H6635"]],[24,26,["H5921"]],[26,28,["H6635"]],[28,30,["H295"]],[30,32,["H1121"]],[32,34,["H5996"]]]},{"k":4014,"v":[[0,2,["H5921"]],[2,4,["H6635"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H836"]],[12,14,["H6295"]],[14,16,["H1121"]],[16,18,["H5918"]]]},{"k":4015,"v":[[0,2,["H5921"]],[2,4,["H6635"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H5321"]],[12,14,["H299"]],[14,16,["H1121"]],[16,18,["H5881"]]]},{"k":4016,"v":[[0,1,["H428"]],[1,4,["H4550"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,13,["H6635"]],[13,17,["H5265"]]]},{"k":4017,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,5,["H2246"]],[5,7,["H1121"]],[7,9,["H7467"]],[9,11,["H4084"]],[11,12,["H4872"]],[12,15,["H2859"]],[15,16,["H587"]],[16,18,["H5265"]],[18,19,["H413"]],[19,21,["H4725"]],[21,23,["H834"]],[23,25,["H3068"]],[25,26,["H559"]],[26,29,["H5414"]],[29,32,["H1980"]],[32,34,["H854"]],[34,41,["H3190"]],[41,42,["H3588"]],[42,44,["H3068"]],[44,46,["H1696"]],[46,47,["H2896"]],[47,48,["H5921"]],[48,49,["H3478"]]]},{"k":4018,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,8,["H3808"]],[8,9,["H1980"]],[9,10,["H3588"]],[10,11,["H518"]],[11,13,["H1980"]],[13,14,["H413"]],[14,17,["H776"]],[17,19,["H413"]],[19,21,["H4138"]]]},{"k":4019,"v":[[0,3,["H559"]],[3,4,["H5800"]],[4,6,["H408"]],[6,9,["H4994"]],[9,10,["H3588","H5921","H3651"]],[10,13,["H3045"]],[13,18,["H2583"]],[18,21,["H4057"]],[21,25,["H1961"]],[25,30,["H5869"]]]},{"k":4020,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,7,["H1980"]],[7,8,["H5973"]],[8,13,["H1961"]],[13,15,["H834"]],[15,16,["H2896"]],[16,18,["H3068"]],[18,20,["H3190"]],[20,21,["H5973"]],[21,27,["H3190"]],[27,29,[]]]},{"k":4021,"v":[[0,3,["H5265"]],[3,6,["H4480","H2022"]],[6,9,["H3068"]],[9,10,["H7969"]],[10,11,["H3117"]],[11,12,["H1870"]],[12,15,["H727"]],[15,18,["H1285"]],[18,21,["H3068"]],[21,22,["H5265"]],[22,23,["H6440"]],[23,27,["H7969"]],[27,28,["H3117"]],[28,29,["H1870"]],[29,32,["H8446"]],[32,35,["H4496"]],[35,37,[]]]},{"k":4022,"v":[[0,3,["H6051"]],[3,6,["H3068"]],[6,8,["H5921"]],[8,11,["H3119"]],[11,14,["H5265"]],[14,16,["H4480"]],[16,18,["H4264"]]]},{"k":4023,"v":[[0,5,["H1961"]],[5,8,["H727"]],[8,10,["H5265"]],[10,12,["H4872"]],[12,13,["H559"]],[13,15,["H6965"]],[15,16,["H3068"]],[16,20,["H341"]],[20,22,["H6327"]],[22,27,["H8130"]],[27,29,["H5127"]],[29,30,["H4480","H6440"]],[30,31,[]]]},{"k":4024,"v":[[0,4,["H5117"]],[4,6,["H559"]],[6,7,["H7725"]],[7,9,["H3068"]],[9,12,["H7233"]],[12,13,["H505"]],[13,15,["H3478"]]]},{"k":4025,"v":[[0,4,["H5971"]],[4,5,["H596"]],[5,7,["H7451","H241"]],[7,9,["H3068"]],[9,12,["H3068"]],[12,13,["H8085"]],[13,17,["H639"]],[17,19,["H2734"]],[19,22,["H784"]],[22,25,["H3068"]],[25,26,["H1197"]],[26,30,["H398"]],[30,37,["H7097"]],[37,40,["H4264"]]]},{"k":4026,"v":[[0,3,["H5971"]],[3,4,["H6817"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H4872"]],[9,10,["H6419"]],[10,11,["H413"]],[11,13,["H3068"]],[13,15,["H784"]],[15,17,["H8257"]]]},{"k":4027,"v":[[0,3,["H7121"]],[3,5,["H8034"]],[5,8,["H4725"]],[8,9,["H8404"]],[9,10,["H3588"]],[10,12,["H784"]],[12,15,["H3068"]],[15,16,["H1197"]],[16,18,[]]]},{"k":4028,"v":[[0,4,["H628"]],[4,5,["H834"]],[5,7,["H7130"]],[7,11,["H183","H8378"]],[11,14,["H1121"]],[14,16,["H3478"]],[16,17,["H1571"]],[17,18,["H1058"]],[18,19,["H7725"]],[19,21,["H559"]],[21,22,["H4310"]],[22,26,["H1320"]],[26,28,["H398"]]]},{"k":4029,"v":[[0,2,["H2142","(H853)"]],[2,4,["H1710"]],[4,5,["H834"]],[5,8,["H398"]],[8,10,["H4714"]],[10,11,["H2600","(H853)"]],[11,13,["H7180"]],[13,16,["H20"]],[16,19,["H2682"]],[19,22,["H1211"]],[22,25,["H7762"]]]},{"k":4030,"v":[[0,2,["H6258"]],[2,4,["H5315"]],[4,7,["H3002"]],[7,10,["H369"]],[10,12,["H3605"]],[12,13,["H1115","H413"]],[13,15,["H4478"]],[15,18,["H5869"]]]},{"k":4031,"v":[[0,3,["H4478"]],[3,6,["H1407"]],[6,7,["H2233"]],[7,10,["H5869"]],[10,14,["H5869"]],[14,16,["H916"]]]},{"k":4032,"v":[[0,3,["H5971"]],[3,5,["H7751"]],[5,7,["H3950"]],[7,10,["H2912"]],[10,13,["H7347"]],[13,14,["H176"]],[14,15,["H1743"]],[15,19,["H4085"]],[19,21,["H1310"]],[21,24,["H6517"]],[24,26,["H6213"]],[26,27,["H5692"]],[27,32,["H2940"]],[32,35,["H1961"]],[35,38,["H2940"]],[38,40,["H3955"]],[40,41,["H8081"]]]},{"k":4033,"v":[[0,4,["H2919"]],[4,5,["H3381"]],[5,6,["H5921"]],[6,8,["H4264"]],[8,11,["H3915"]],[11,13,["H4478"]],[13,14,["H3381"]],[14,15,["H5921"]],[15,16,[]]]},{"k":4034,"v":[[0,2,["H4872"]],[2,3,["H8085","(H853)"]],[3,5,["H5971"]],[5,6,["H1058"]],[6,9,["H4940"]],[9,11,["H376"]],[11,14,["H6607"]],[14,17,["H168"]],[17,20,["H639"]],[20,23,["H3068"]],[23,25,["H2734"]],[25,26,["H3966"]],[26,27,["H4872"]],[27,30,["H5869","H7451"]]]},{"k":4035,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3068"]],[6,7,["H4100"]],[7,10,["H7489"]],[10,12,["H5650"]],[12,14,["H4100"]],[14,17,["H3808"]],[17,18,["H4672"]],[18,19,["H2580"]],[19,22,["H5869"]],[22,25,["H7760","(H853)"]],[25,27,["H4853"]],[27,29,["H3605"]],[29,30,["H2088"]],[30,31,["H5971"]],[31,32,["H5921"]],[32,33,[]]]},{"k":4036,"v":[[0,2,["H595"]],[2,3,["H2030","(H853)"]],[3,4,["H3605"]],[4,5,["H2088"]],[5,6,["H5971"]],[6,8,["H595"]],[8,9,["H3205"]],[9,11,["H3588"]],[11,14,["H559"]],[14,15,["H413"]],[15,17,["H5375"]],[17,21,["H2436"]],[21,22,["H834"]],[22,25,["H539"]],[25,26,["H5375","(H853)"]],[26,29,["H3243"]],[29,30,["H5921"]],[30,32,["H127"]],[32,33,["H834"]],[33,35,["H7650"]],[35,38,["H1"]]]},{"k":4037,"v":[[0,1,["H4480","H370"]],[1,5,["H1320"]],[5,7,["H5414"]],[7,9,["H3605"]],[9,10,["H2088"]],[10,11,["H5971"]],[11,12,["H3588"]],[12,14,["H1058"]],[14,15,["H5921"]],[15,17,["H559"]],[17,18,["H5414"]],[18,20,["H1320"]],[20,24,["H398"]]]},{"k":4038,"v":[[0,1,["H595"]],[1,4,["H3201","H3808"]],[4,6,["H5375","(H853)"]],[6,7,["H3605"]],[7,8,["H2088"]],[8,9,["H5971"]],[9,10,["H905"]],[10,11,["H3588"]],[11,15,["H3515"]],[15,16,["H4480"]],[16,17,[]]]},{"k":4039,"v":[[0,2,["H518"]],[2,3,["H859"]],[3,4,["H6213"]],[4,5,["H3602"]],[5,8,["H2026"]],[8,12,["H4994"]],[12,15,["H2026"]],[15,16,["H518"]],[16,19,["H4672"]],[19,20,["H2580"]],[20,23,["H5869"]],[23,27,["H408"]],[27,28,["H7200"]],[28,30,["H7451"]]]},{"k":4040,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H622"]],[7,10,["H7657"]],[10,11,["H376"]],[11,14,["H4480","H2205"]],[14,16,["H3478"]],[16,17,["H834"]],[17,19,["H3045"]],[19,23,["H2205"]],[23,26,["H5971"]],[26,28,["H7860"]],[28,32,["H3947"]],[32,34,["H413"]],[34,36,["H168"]],[36,39,["H4150"]],[39,43,["H3320"]],[43,44,["H8033"]],[44,45,["H5973"]],[45,46,[]]]},{"k":4041,"v":[[0,5,["H3381"]],[5,7,["H1696"]],[7,8,["H5973"]],[8,10,["H8033"]],[10,14,["H680"]],[14,15,["H4480"]],[15,17,["H7307"]],[17,18,["H834"]],[18,20,["H5921"]],[20,24,["H7760"]],[24,26,["H5921"]],[26,31,["H5375"]],[31,33,["H4853"]],[33,36,["H5971"]],[36,37,["H854"]],[37,40,["H859"]],[40,41,["H5375"]],[41,43,["H3808"]],[43,45,["H905"]]]},{"k":4042,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H5971"]],[6,8,["H6942"]],[8,11,["H4279"]],[11,15,["H398"]],[15,16,["H1320"]],[16,17,["H3588"]],[17,20,["H1058"]],[20,23,["H241"]],[23,26,["H3068"]],[26,27,["H559"]],[27,28,["H4310"]],[28,32,["H1320"]],[32,34,["H398"]],[34,35,["H3588"]],[35,38,["H2895"]],[38,42,["H4714"]],[42,45,["H3068"]],[45,47,["H5414"]],[47,49,["H1320"]],[49,53,["H398"]]]},{"k":4043,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,5,["H259"]],[5,6,["H3117"]],[6,7,["H3808"]],[7,9,["H3117"]],[9,10,["H3808"]],[10,11,["H2568"]],[11,12,["H3117"]],[12,13,["H3808"]],[13,14,["H6235"]],[14,15,["H3117"]],[15,16,["H3808"]],[16,17,["H6242"]],[17,18,["H3117"]]]},{"k":4044,"v":[[0,2,["H5704"]],[2,4,["H3117"]],[4,5,["H2320"]],[5,6,["H5704","H834"]],[6,9,["H3318"]],[9,12,["H4480","H639"]],[12,15,["H1961"]],[15,16,["H2214"]],[16,19,["H3282"]],[19,20,["H3588"]],[20,23,["H3988","(H853)"]],[23,25,["H3068"]],[25,26,["H834"]],[26,28,["H7130"]],[28,32,["H1058"]],[32,33,["H6440"]],[33,35,["H559"]],[35,36,["H4100","H2088"]],[36,39,["H3318"]],[39,42,["H4480","H4714"]]]},{"k":4045,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,5,["H5971"]],[5,6,["H7130"]],[6,7,["H834"]],[7,8,["H595"]],[8,11,["H8337"]],[11,12,["H3967"]],[12,13,["H505"]],[13,14,["H7273"]],[14,16,["H859"]],[16,18,["H559"]],[18,21,["H5414"]],[21,23,["H1320"]],[23,27,["H398"]],[27,29,["H3117"]],[29,30,["H2320"]]]},{"k":4046,"v":[[0,3,["H6629"]],[3,6,["H1241"]],[6,8,["H7819"]],[8,12,["H4672"]],[12,14,["H518","(H853)"]],[14,16,["H3605"]],[16,18,["H1709"]],[18,21,["H3220"]],[21,24,["H622"]],[24,28,["H4672"]],[28,29,[]]]},{"k":4047,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H3068"]],[9,10,["H3027"]],[10,12,["H7114"]],[12,15,["H7200"]],[15,16,["H6258"]],[16,19,["H1697"]],[19,23,["H7136"]],[23,26,["H518"]],[26,27,["H3808"]]]},{"k":4048,"v":[[0,2,["H4872"]],[2,4,["H3318"]],[4,6,["H1696","H413"]],[6,8,["H5971","(H853)"]],[8,10,["H1697"]],[10,13,["H3068"]],[13,15,["H622"]],[15,17,["H7657"]],[17,18,["H376"]],[18,21,["H4480","H2205"]],[21,24,["H5971"]],[24,26,["H5975"]],[26,29,["H5439"]],[29,31,["H168"]]]},{"k":4049,"v":[[0,3,["H3068"]],[3,5,["H3381"]],[5,8,["H6051"]],[8,10,["H1696"]],[10,11,["H413"]],[11,14,["H680"]],[14,15,["H4480"]],[15,17,["H7307"]],[17,18,["H834"]],[18,20,["H5921"]],[20,23,["H5414"]],[23,25,["H5921"]],[25,27,["H7657"]],[27,28,["H376","H2205"]],[28,33,["H1961"]],[33,37,["H7307"]],[37,38,["H5117"]],[38,39,["H5921"]],[39,42,["H5012"]],[42,45,["H3808"]],[45,46,["H3254"]]]},{"k":4050,"v":[[0,3,["H7604"]],[3,4,["H8147"]],[4,7,["H376"]],[7,10,["H4264"]],[10,12,["H8034"]],[12,15,["H259"]],[15,17,["H419"]],[17,20,["H8034"]],[20,23,["H8145"]],[23,24,["H4312"]],[24,27,["H7307"]],[27,28,["H5117"]],[28,29,["H5921"]],[29,32,["H1992"]],[32,38,["H3789"]],[38,42,["H3318","H3808"]],[42,45,["H168"]],[45,48,["H5012"]],[48,51,["H4264"]]]},{"k":4051,"v":[[0,3,["H7323"]],[3,6,["H5288"]],[6,8,["H5046"]],[8,9,["H4872"]],[9,11,["H559"]],[11,12,["H419"]],[12,14,["H4312"]],[14,16,["H5012"]],[16,19,["H4264"]]]},{"k":4052,"v":[[0,2,["H3091"]],[2,4,["H1121"]],[4,6,["H5126"]],[6,8,["H8334"]],[8,10,["H4872"]],[10,15,["H4480","H979"]],[15,16,["H6030"]],[16,18,["H559"]],[18,20,["H113"]],[20,21,["H4872"]],[21,22,["H3607"]],[22,23,[]]]},{"k":4053,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,6,["H7065"]],[6,7,["H859"]],[7,12,["H4310","H5414"]],[12,14,["H3605"]],[14,16,["H3068"]],[16,17,["H5971"]],[17,19,["H5030"]],[19,21,["H3588"]],[21,23,["H3068"]],[23,25,["H5414","(H853)"]],[25,27,["H7307"]],[27,28,["H5921"]],[28,29,[]]]},{"k":4054,"v":[[0,2,["H4872"]],[2,3,["H622"]],[3,5,["H413"]],[5,7,["H4264"]],[7,8,["H1931"]],[8,11,["H2205"]],[11,13,["H3478"]]]},{"k":4055,"v":[[0,4,["H5265"]],[4,6,["H7307"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,11,["H1468"]],[11,12,["H7958"]],[12,13,["H4480"]],[13,15,["H3220"]],[15,19,["H5203"]],[19,20,["H5921"]],[20,22,["H4264"]],[22,27,["H3117"]],[27,28,["H1870"]],[28,31,["H3541"]],[31,37,["H3117"]],[37,38,["H1870"]],[38,42,["H3541"]],[42,44,["H5439"]],[44,46,["H4264"]],[46,52,["H520"]],[52,54,["H5921"]],[54,56,["H6440"]],[56,59,["H776"]]]},{"k":4056,"v":[[0,3,["H5971"]],[3,5,["H6965"]],[5,6,["H3605"]],[6,7,["H1931"]],[7,8,["H3117"]],[8,10,["H3605"]],[10,12,["H3915"]],[12,14,["H3605"]],[14,16,["H4283"]],[16,17,["H3117"]],[17,20,["H622","(H853)"]],[20,22,["H7958"]],[22,26,["H4591"]],[26,27,["H622"]],[27,28,["H6235"]],[28,29,["H2563"]],[29,35,["H7849","H7849"]],[35,39,["H5439"]],[39,41,["H4264"]]]},{"k":4057,"v":[[0,4,["H1320"]],[4,6,["H5750"]],[6,7,["H996"]],[7,9,["H8127"]],[9,10,["H2962"]],[10,13,["H3772"]],[13,15,["H639"]],[15,18,["H3068"]],[18,20,["H2734"]],[20,23,["H5971"]],[23,26,["H3068"]],[26,27,["H5221"]],[27,29,["H5971"]],[29,32,["H3966"]],[32,33,["H7227"]],[33,34,["H4347"]]]},{"k":4058,"v":[[0,3,["H7121","(H853)"]],[3,5,["H8034"]],[5,7,["H1931"]],[7,8,["H4725"]],[8,9,["H6914"]],[9,10,["H3588"]],[10,11,["H8033"]],[11,13,["H6912","(H853)"]],[13,15,["H5971"]],[15,17,["H183"]]]},{"k":4059,"v":[[0,3,["H5971"]],[3,4,["H5265"]],[4,6,["H4480","H6914"]],[6,8,["H2698"]],[8,10,["H1961"]],[10,12,["H2698"]]]},{"k":4060,"v":[[0,2,["H4813"]],[2,4,["H175"]],[4,5,["H1696"]],[5,7,["H4872"]],[7,8,["H5921","H182"]],[8,11,["H3571"]],[11,12,["H802"]],[12,13,["H834"]],[13,16,["H3947"]],[16,17,["H3588"]],[17,20,["H3947"]],[20,22,["H3571"]],[22,23,["H802"]]]},{"k":4061,"v":[[0,3,["H559"]],[3,6,["H3068"]],[6,7,["H389"]],[7,8,["H1696"]],[8,9,["H7535"]],[9,11,["H4872"]],[11,14,["H3808"]],[14,15,["H1696"]],[15,16,["H1571"]],[16,21,["H3068"]],[21,22,["H8085"]],[22,23,[]]]},{"k":4062,"v":[[0,3,["H376"]],[3,4,["H4872"]],[4,6,["H3966"]],[6,7,["H6035"]],[7,9,["H4480","H3605"]],[9,11,["H120"]],[11,12,["H834"]],[12,14,["H5921"]],[14,16,["H6440"]],[16,19,["H127"]]]},{"k":4063,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H6597"]],[5,6,["H413"]],[6,7,["H4872"]],[7,9,["H413"]],[9,10,["H175"]],[10,12,["H413"]],[12,13,["H4813"]],[13,15,["H3318"]],[15,17,["H7969"]],[17,18,["H413"]],[18,20,["H168"]],[20,23,["H4150"]],[23,26,["H7969"]],[26,28,["H3318"]]]},{"k":4064,"v":[[0,3,["H3068"]],[3,5,["H3381"]],[5,8,["H5982"]],[8,11,["H6051"]],[11,13,["H5975"]],[13,16,["H6607"]],[16,19,["H168"]],[19,21,["H7121"]],[21,22,["H175"]],[22,24,["H4813"]],[24,27,["H8147"]],[27,29,["H3318"]]]},{"k":4065,"v":[[0,3,["H559"]],[3,4,["H8085"]],[4,5,["H4994"]],[5,7,["H1697"]],[7,8,["H518"]],[8,10,["H1961"]],[10,12,["H5030"]],[12,17,["H3068"]],[17,21,["H3045"]],[21,22,["H413"]],[22,26,["H4759"]],[26,29,["H1696"]],[29,34,["H2472"]]]},{"k":4066,"v":[[0,2,["H5650"]],[2,3,["H4872"]],[3,5,["H3808"]],[5,6,["H3651"]],[6,7,["H1931"]],[7,9,["H539"]],[9,11,["H3605"]],[11,13,["H1004"]]]},{"k":4067,"v":[[0,5,["H1696"]],[5,6,["H6310"]],[6,7,["H413"]],[7,8,["H6310"]],[8,10,["H4758"]],[10,12,["H3808"]],[12,15,["H2420"]],[15,18,["H8544"]],[18,21,["H3068"]],[21,24,["H5027"]],[24,25,["H4069"]],[25,30,["H3372","H3808"]],[30,32,["H1696"]],[32,35,["H5650"]],[35,36,["H4872"]]]},{"k":4068,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,13,["H1980"]]]},{"k":4069,"v":[[0,3,["H6051"]],[3,4,["H5493"]],[4,6,["H4480","H5921"]],[6,8,["H168"]],[8,10,["H2009"]],[10,11,["H4813"]],[11,13,["H6879"]],[13,16,["H7950"]],[16,18,["H175"]],[18,19,["H6437"]],[19,20,["H413"]],[20,21,["H4813"]],[21,23,["H2009"]],[23,26,["H6879"]]]},{"k":4070,"v":[[0,2,["H175"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H4872"]],[5,6,["H994"]],[6,8,["H113"]],[8,11,["H4994"]],[11,12,["H7896"]],[12,13,["H408"]],[13,15,["H2403"]],[15,16,["H5921"]],[16,18,["H834"]],[18,22,["H2973"]],[22,24,["H834"]],[24,27,["H2398"]]]},{"k":4071,"v":[[0,1,["H4994"]],[1,3,["H408"]],[3,4,["H1961"]],[4,7,["H4191"]],[7,9,["H834"]],[9,11,["H1320"]],[11,13,["H2677"]],[13,14,["H398"]],[14,18,["H3318"]],[18,21,["H517"]],[21,22,["H4480","H7358"]]]},{"k":4072,"v":[[0,2,["H4872"]],[2,3,["H6817"]],[3,4,["H413"]],[4,6,["H3068"]],[6,7,["H559"]],[7,8,["H7495"]],[8,10,["H4994"]],[10,12,["H410"]],[12,15,["H4994"]]]},{"k":4073,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H1"]],[9,12,["H3417","H3417"]],[12,15,["H6440"]],[15,18,["H3808"]],[18,20,["H3637"]],[20,21,["H7651"]],[21,22,["H3117"]],[22,27,["H5462"]],[27,28,["H4480","H2351"]],[28,30,["H4264"]],[30,31,["H7651"]],[31,32,["H3117"]],[32,35,["H310"]],[35,40,["H622"]],[40,41,[]]]},{"k":4074,"v":[[0,2,["H4813"]],[2,5,["H5462"]],[5,6,["H4480","H2351"]],[6,8,["H4264"]],[8,9,["H7651"]],[9,10,["H3117"]],[10,13,["H5971"]],[13,14,["H5265"]],[14,15,["H3808"]],[15,16,["H5704"]],[16,17,["H4813"]],[17,20,["H622"]],[20,21,[]]]},{"k":4075,"v":[[0,2,["H310"]],[2,4,["H5971"]],[4,5,["H5265"]],[5,7,["H4480","H2698"]],[7,9,["H2583"]],[9,12,["H4057"]],[12,14,["H6290"]]]},{"k":4076,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4077,"v":[[0,1,["H7971"]],[1,3,["H376"]],[3,7,["H8446","(H853)"]],[7,9,["H776"]],[9,11,["H3667"]],[11,12,["H834"]],[12,13,["H589"]],[13,14,["H5414"]],[14,17,["H1121"]],[17,19,["H3478"]],[19,22,["H4294"]],[22,25,["H1"]],[25,28,["H7971"]],[28,29,["H259"]],[29,30,["H376"]],[30,32,["H3605"]],[32,34,["H5387"]],[34,36,[]]]},{"k":4078,"v":[[0,2,["H4872"]],[2,3,["H5921"]],[3,5,["H6310"]],[5,8,["H3068"]],[8,9,["H7971"]],[9,13,["H4480","H4057"]],[13,15,["H6290"]],[15,16,["H3605"]],[16,17,["H1992"]],[17,18,["H376"]],[18,20,["H7218"]],[20,23,["H1121"]],[23,25,["H3478"]]]},{"k":4079,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H4294"]],[8,10,["H7205"]],[10,11,["H8051"]],[11,13,["H1121"]],[13,15,["H2139"]]]},{"k":4080,"v":[[0,3,["H4294"]],[3,5,["H8095"]],[5,6,["H8202"]],[6,8,["H1121"]],[8,10,["H2753"]]]},{"k":4081,"v":[[0,3,["H4294"]],[3,5,["H3063"]],[5,6,["H3612"]],[6,8,["H1121"]],[8,10,["H3312"]]]},{"k":4082,"v":[[0,3,["H4294"]],[3,5,["H3485"]],[5,6,["H3008"]],[6,8,["H1121"]],[8,10,["H3130"]]]},{"k":4083,"v":[[0,3,["H4294"]],[3,5,["H669"]],[5,6,["H1954"]],[6,8,["H1121"]],[8,10,["H5126"]]]},{"k":4084,"v":[[0,3,["H4294"]],[3,5,["H1144"]],[5,6,["H6406"]],[6,8,["H1121"]],[8,10,["H7505"]]]},{"k":4085,"v":[[0,3,["H4294"]],[3,5,["H2074"]],[5,6,["H1427"]],[6,8,["H1121"]],[8,10,["H5476"]]]},{"k":4086,"v":[[0,3,["H4294"]],[3,5,["H3130"]],[5,9,["H4294"]],[9,11,["H4519"]],[11,12,["H1426"]],[12,14,["H1121"]],[14,16,["H5485"]]]},{"k":4087,"v":[[0,3,["H4294"]],[3,5,["H1835"]],[5,6,["H5988"]],[6,8,["H1121"]],[8,10,["H1582"]]]},{"k":4088,"v":[[0,3,["H4294"]],[3,5,["H836"]],[5,6,["H5639"]],[6,8,["H1121"]],[8,10,["H4317"]]]},{"k":4089,"v":[[0,3,["H4294"]],[3,5,["H5321"]],[5,6,["H5147"]],[6,8,["H1121"]],[8,10,["H2058"]]]},{"k":4090,"v":[[0,3,["H4294"]],[3,5,["H1410"]],[5,6,["H1345"]],[6,8,["H1121"]],[8,10,["H4352"]]]},{"k":4091,"v":[[0,1,["H428"]],[1,4,["H8034"]],[4,7,["H376"]],[7,8,["H834"]],[8,9,["H4872"]],[9,10,["H7971"]],[10,13,["H8446","(H853)"]],[13,15,["H776"]],[15,17,["H4872"]],[17,18,["H7121"]],[18,19,["H1954"]],[19,21,["H1121"]],[21,23,["H5126"]],[23,24,["H3091"]]]},{"k":4092,"v":[[0,2,["H4872"]],[2,3,["H7971"]],[3,7,["H8446","(H853)"]],[7,9,["H776"]],[9,11,["H3667"]],[11,13,["H559"]],[13,14,["H413"]],[14,18,["H5927"]],[18,19,["H2088"]],[19,21,["H5045"]],[21,24,["H5927"]],[24,25,["H854"]],[25,27,["H2022"]]]},{"k":4093,"v":[[0,2,["H7200","(H853)"]],[2,4,["H776"]],[4,5,["H4100"]],[5,6,["H1931"]],[6,10,["H5971"]],[10,12,["H3427"]],[12,13,["H5921"]],[13,15,["H1931"]],[15,17,["H2389"]],[17,19,["H7504"]],[19,20,["H4592"]],[20,21,["H518"]],[21,22,["H7227"]]]},{"k":4094,"v":[[0,2,["H4100"]],[2,4,["H776"]],[4,6,["H834"]],[6,7,["H1931"]],[7,8,["H3427"]],[8,11,["H1931"]],[11,13,["H2896"]],[13,14,["H518"]],[14,15,["H7451"]],[15,17,["H4100"]],[17,18,["H5892"]],[18,21,["H834"]],[21,22,["H1931"]],[22,23,["H3427"]],[23,24,["H2007"]],[24,27,["H4264"]],[27,28,["H518"]],[28,31,["H4013"]]]},{"k":4095,"v":[[0,2,["H4100"]],[2,4,["H776"]],[4,7,["H1931"]],[7,9,["H8082"]],[9,10,["H518"]],[10,11,["H7330"]],[11,14,["H3426"]],[14,15,["H6086"]],[15,17,["H518"]],[17,18,["H369"]],[18,24,["H2388"]],[24,26,["H3947"]],[26,29,["H4480","H6529"]],[29,32,["H776"]],[32,35,["H3117"]],[35,38,["H3117"]],[38,41,["H1061"]],[41,42,["H6025"]]]},{"k":4096,"v":[[0,4,["H5927"]],[4,6,["H8446","(H853)"]],[6,8,["H776"]],[8,11,["H4480","H4057"]],[11,13,["H6790"]],[13,14,["H5704"]],[14,15,["H7340"]],[15,18,["H935"]],[18,20,["H2574"]]]},{"k":4097,"v":[[0,3,["H5927"]],[3,6,["H5045"]],[6,8,["H935"]],[8,9,["H5704"]],[9,10,["H2275"]],[10,11,["H8033"]],[11,12,["H289"]],[12,13,["H8344"]],[13,15,["H8526"]],[15,17,["H3211"]],[17,19,["H6061"]],[19,22,["H2275"]],[22,24,["H1129"]],[24,25,["H7651"]],[25,26,["H8141"]],[26,27,["H6440"]],[27,28,["H6814"]],[28,30,["H4714"]]]},{"k":4098,"v":[[0,3,["H935"]],[3,4,["H5704"]],[4,6,["H5158"]],[6,8,["H812"]],[8,11,["H3772"]],[11,13,["H4480","H8033"]],[13,15,["H2156"]],[15,17,["H259"]],[17,18,["H811"]],[18,20,["H6025"]],[20,23,["H5375"]],[23,26,["H8147"]],[26,29,["H4132"]],[29,33,["H4480"]],[33,35,["H7416"]],[35,37,["H4480"]],[37,39,["H8384"]]]},{"k":4099,"v":[[0,2,["H4725"]],[2,4,["H7121"]],[4,6,["H5158"]],[6,7,["H812"]],[7,8,["H5921","H182"]],[8,13,["H811"]],[13,14,["H834"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,20,["H3772"]],[20,22,["H4480","H8033"]]]},{"k":4100,"v":[[0,3,["H7725"]],[3,5,["H4480","H8446"]],[5,8,["H776"]],[8,9,["H4480","H7093"]],[9,10,["H705"]],[10,11,["H3117"]]]},{"k":4101,"v":[[0,3,["H1980"]],[3,5,["H935"]],[5,6,["H413"]],[6,7,["H4872"]],[7,9,["H413"]],[9,10,["H175"]],[10,12,["H413"]],[12,13,["H3605"]],[13,15,["H5712"]],[15,18,["H1121"]],[18,20,["H3478"]],[20,21,["H413"]],[21,23,["H4057"]],[23,25,["H6290"]],[25,27,["H6946"]],[27,30,["H7725"]],[30,31,["H1697"]],[31,36,["H3605"]],[36,38,["H5712"]],[38,40,["H7200"]],[40,41,["(H853)"]],[41,43,["H6529"]],[43,46,["H776"]]]},{"k":4102,"v":[[0,3,["H5608"]],[3,6,["H559"]],[6,8,["H935"]],[8,9,["H413"]],[9,11,["H776"]],[11,12,["H834"]],[12,14,["H7971"]],[14,17,["H1571"]],[17,18,["H1931"]],[18,19,["H2100"]],[19,21,["H2461"]],[21,23,["H1706"]],[23,25,["H2088"]],[25,28,["H6529"]],[28,30,[]]]},{"k":4103,"v":[[0,1,["H657","H3588"]],[1,3,["H5971"]],[3,5,["H5794"]],[5,7,["H3427"]],[7,10,["H776"]],[10,13,["H5892"]],[13,15,["H1219"]],[15,17,["H3966"]],[17,18,["H1419"]],[18,20,["H1571"]],[20,22,["H7200"]],[22,24,["H3211"]],[24,26,["H6061"]],[26,27,["H8033"]]]},{"k":4104,"v":[[0,2,["H6003"]],[2,3,["H3427"]],[3,6,["H776"]],[6,9,["H5045"]],[9,12,["H2850"]],[12,15,["H2983"]],[15,18,["H567"]],[18,19,["H3427"]],[19,22,["H2022"]],[22,25,["H3669"]],[25,26,["H3427"]],[26,27,["H5921"]],[27,29,["H3220"]],[29,31,["H5921"]],[31,33,["H3027"]],[33,35,["H3383"]]]},{"k":4105,"v":[[0,2,["H3612"]],[2,3,["H2013","(H853)"]],[3,5,["H5971"]],[5,6,["H413"]],[6,7,["H4872"]],[7,9,["H559"]],[9,15,["H5927","H5927"]],[15,17,["H3423"]],[17,19,["H3588"]],[19,23,["H3201"]],[23,25,["H3201"]],[25,26,[]]]},{"k":4106,"v":[[0,3,["H376"]],[3,4,["H834"]],[4,6,["H5927"]],[6,7,["H5973"]],[7,9,["H559"]],[9,13,["H3201","H3808"]],[13,16,["H5927"]],[16,17,["H413"]],[17,19,["H5971"]],[19,20,["H3588"]],[20,21,["H1931"]],[21,23,["H2389"]],[23,24,["H4480"]],[24,25,[]]]},{"k":4107,"v":[[0,4,["H3318"]],[4,7,["H1681"]],[7,10,["H776"]],[10,11,["H834"]],[11,14,["H8446"]],[14,15,["H413"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,20,["H559"]],[20,22,["H776"]],[22,24,["H834"]],[24,27,["H5674"]],[27,29,["H8446"]],[29,33,["H776"]],[33,34,["H1931"]],[34,36,["H398"]],[36,38,["H3427"]],[38,41,["H3605"]],[41,43,["H5971"]],[43,44,["H834"]],[44,46,["H7200"]],[46,47,["H8432"]],[47,50,["H376"]],[50,54,["H4060"]]]},{"k":4108,"v":[[0,2,["H8033"]],[2,4,["H7200","(H853)"]],[4,6,["H5303"]],[6,8,["H1121"]],[8,10,["H6061"]],[10,13,["H4480"]],[13,15,["H5303"]],[15,18,["H1961"]],[18,22,["H5869"]],[22,24,["H2284"]],[24,26,["H3651"]],[26,28,["H1961"]],[28,31,["H5869"]]]},{"k":4109,"v":[[0,2,["H3605"]],[2,4,["H5712"]],[4,6,["H5375","(H853)"]],[6,8,["H6963"]],[8,10,["H5414"]],[10,13,["H5971"]],[13,14,["H1058"]],[14,15,["H1931"]],[15,16,["H3915"]]]},{"k":4110,"v":[[0,2,["H3605"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H3885"]],[7,8,["H5921"]],[8,9,["H4872"]],[9,11,["H5921"]],[11,12,["H175"]],[12,15,["H3605"]],[15,16,["H5712"]],[16,17,["H559"]],[17,18,["H413"]],[18,22,["H3863"]],[22,25,["H4191"]],[25,28,["H776"]],[28,30,["H4714"]],[30,31,["H176"]],[31,33,["H3863"]],[33,36,["H4191"]],[36,38,["H2088"]],[38,39,["H4057"]]]},{"k":4111,"v":[[0,2,["H4100"]],[2,5,["H3068"]],[5,6,["H935"]],[6,8,["H413"]],[8,9,["H2063"]],[9,10,["H776"]],[10,12,["H5307"]],[12,15,["H2719"]],[15,18,["H802"]],[18,21,["H2945"]],[21,23,["H1961"]],[23,25,["H957"]],[25,28,["H3808"]],[28,29,["H2896"]],[29,33,["H7725"]],[33,35,["H4714"]]]},{"k":4112,"v":[[0,3,["H559"]],[3,4,["H376"]],[4,5,["H413"]],[5,6,["H251"]],[6,9,["H5414"]],[9,11,["H7218"]],[11,15,["H7725"]],[15,17,["H4714"]]]},{"k":4113,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,5,["H5307"]],[5,6,["H5921"]],[6,8,["H6440"]],[8,9,["H6440"]],[9,10,["H3605"]],[10,12,["H6951"]],[12,15,["H5712"]],[15,18,["H1121"]],[18,20,["H3478"]]]},{"k":4114,"v":[[0,2,["H3091"]],[2,4,["H1121"]],[4,6,["H5126"]],[6,8,["H3612"]],[8,10,["H1121"]],[10,12,["H3312"]],[12,15,["H4480"]],[15,18,["H8446","(H853)"]],[18,20,["H776"]],[20,21,["H7167"]],[21,23,["H899"]]]},{"k":4115,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H3605"]],[5,7,["H5712"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,13,["H559"]],[13,15,["H776"]],[15,16,["H834"]],[16,19,["H5674"]],[19,21,["H8446"]],[21,25,["H3966","H3966"]],[25,26,["H2896"]],[26,27,["H776"]]]},{"k":4116,"v":[[0,1,["H518"]],[1,3,["H3068"]],[3,4,["H2654"]],[4,10,["H935"]],[10,12,["H413"]],[12,13,["H2063"]],[13,14,["H776"]],[14,16,["H5414"]],[16,20,["H776"]],[20,21,["H834"]],[21,22,["H2100"]],[22,24,["H2461"]],[24,26,["H1706"]]]},{"k":4117,"v":[[0,1,["H389"]],[1,2,["H4775"]],[2,3,["H408"]],[3,7,["H3068"]],[7,8,["H408"]],[8,9,["H3372"]],[9,10,["H859","(H853)"]],[10,12,["H5971"]],[12,15,["H776"]],[15,16,["H3588"]],[16,17,["H1992"]],[17,19,["H3899"]],[19,23,["H6738"]],[23,25,["H5493"]],[25,26,["H4480","H5921"]],[26,30,["H3068"]],[30,32,["H854"]],[32,34,["H3372"]],[34,36,["H408"]]]},{"k":4118,"v":[[0,2,["H3605"]],[2,4,["H5712"]],[4,5,["H559"]],[5,6,["H7275"]],[6,9,["H68"]],[9,12,["H3519"]],[12,15,["H3068"]],[15,16,["H7200"]],[16,19,["H168"]],[19,22,["H4150"]],[22,23,["H413"]],[23,24,["H3605"]],[24,26,["H1121"]],[26,28,["H3478"]]]},{"k":4119,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H5704","H575"]],[8,10,["H2088"]],[10,11,["H5971"]],[11,12,["H5006"]],[12,16,["H5704","H575"]],[16,20,["H3808"]],[20,22,["H539"]],[22,25,["H3605"]],[25,27,["H226"]],[27,28,["H834"]],[28,31,["H6213"]],[31,32,["H7130"]],[32,33,[]]]},{"k":4120,"v":[[0,3,["H5221"]],[3,7,["H1698"]],[7,9,["H3423"]],[9,13,["H6213"]],[13,17,["H1419"]],[17,18,["H1471"]],[18,20,["H6099"]],[20,21,["H4480"]],[21,22,[]]]},{"k":4121,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3068"]],[6,9,["H4714"]],[9,11,["H8085"]],[11,13,["H3588"]],[13,16,["H5927","(H853)"]],[16,17,["H2088"]],[17,18,["H5971"]],[18,21,["H3581"]],[21,23,["H4480","H7130"]],[23,24,[]]]},{"k":4122,"v":[[0,4,["H559"]],[4,6,["H413"]],[6,8,["H3427"]],[8,10,["H2063"]],[10,11,["H776"]],[11,15,["H8085"]],[15,16,["H3588"]],[16,17,["H859"]],[17,18,["H3068"]],[18,20,["H7130"]],[20,21,["H2088"]],[21,22,["H5971"]],[22,23,["H834"]],[23,24,["H859"]],[24,25,["H3068"]],[25,27,["H7200"]],[27,28,["H5869"]],[28,30,["H5869"]],[30,34,["H6051"]],[34,35,["H5975"]],[35,36,["H5921"]],[36,40,["H859"]],[40,41,["H1980"]],[41,42,["H6440"]],[42,46,["H3119"]],[46,49,["H5982"]],[49,52,["H6051"]],[52,56,["H5982"]],[56,58,["H784"]],[58,60,["H3915"]]]},{"k":4123,"v":[[0,5,["H4191"]],[5,6,["(H853)"]],[6,7,["H2088"]],[7,8,["H5971"]],[8,10,["H259"]],[10,11,["H376"]],[11,14,["H1471"]],[14,15,["H834"]],[15,17,["H8085","(H853)"]],[17,19,["H8088"]],[19,23,["H559"]],[23,24,["H559"]]]},{"k":4124,"v":[[0,1,["H4480","H1115"]],[1,3,["H3068"]],[3,6,["H3201"]],[6,8,["H935","(H853)"]],[8,9,["H2088"]],[9,10,["H5971"]],[10,11,["H413"]],[11,13,["H776"]],[13,14,["H834"]],[14,16,["H7650"]],[16,22,["H7819"]],[22,26,["H4057"]]]},{"k":4125,"v":[[0,2,["H6258"]],[2,5,["H4994"]],[5,8,["H3581"]],[8,11,["H136"]],[11,13,["H1431"]],[13,15,["H834"]],[15,18,["H1696"]],[18,19,["H559"]]]},{"k":4126,"v":[[0,2,["H3068"]],[2,4,["H750","H639"]],[4,7,["H7227"]],[7,8,["H2617"]],[8,9,["H5375"]],[9,10,["H5771"]],[10,12,["H6588"]],[12,17,["H5352","H5352","H3808"]],[17,20,["H6485"]],[20,22,["H5771"]],[22,25,["H1"]],[25,26,["H5921"]],[26,28,["H1121"]],[28,29,["H5921"]],[29,31,["H8029"]],[31,33,["H7256"]],[33,34,[]]]},{"k":4127,"v":[[0,1,["H5545"]],[1,4,["H4994"]],[4,6,["H5771"]],[6,8,["H2088"]],[8,9,["H5971"]],[9,13,["H1433"]],[13,16,["H2617"]],[16,18,["H834"]],[18,21,["H5375"]],[21,22,["H2088"]],[22,23,["H5971"]],[23,25,["H4480","H4714"]],[25,27,["H5704"]],[27,28,["H2008"]]]},{"k":4128,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,7,["H5545"]],[7,11,["H1697"]]]},{"k":4129,"v":[[0,3,["H199"]],[3,5,["H589"]],[5,6,["H2416","(H853)"]],[6,7,["H3605"]],[7,9,["H776"]],[9,12,["H4390"]],[12,15,["H3519"]],[15,18,["H3068"]]]},{"k":4130,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H376"]],[4,7,["H7200","(H853)"]],[7,9,["H3519"]],[9,12,["H226"]],[12,13,["H834"]],[13,15,["H6213"]],[15,17,["H4714"]],[17,21,["H4057"]],[21,24,["H5254"]],[24,27,["H2088"]],[27,28,["H6235"]],[28,29,["H6471"]],[29,32,["H3808"]],[32,33,["H8085"]],[33,36,["H6963"]]]},{"k":4131,"v":[[0,1,["H518"]],[1,5,["H7200","(H853)"]],[5,7,["H776"]],[7,8,["H834"]],[8,10,["H7650"]],[10,13,["H1"]],[13,14,["H3808"]],[14,16,["H3605"]],[16,20,["H5006"]],[20,22,["H7200"]],[22,23,[]]]},{"k":4132,"v":[[0,3,["H5650"]],[3,4,["H3612"]],[4,5,["H6118"]],[5,7,["H1961"]],[7,8,["H312"]],[8,9,["H7307"]],[9,10,["H5973"]],[10,16,["H4390","H310"]],[16,20,["H935"]],[20,21,["H413"]],[21,23,["H776"]],[23,24,["H834","H8033"]],[24,26,["H935"]],[26,29,["H2233"]],[29,31,["H3423"]],[31,32,[]]]},{"k":4133,"v":[[0,3,["H6003"]],[3,6,["H3669"]],[6,7,["H3427"]],[7,10,["H6010"]],[10,12,["H4279"]],[12,13,["H6437"]],[13,16,["H5265"]],[16,20,["H4057"]],[20,23,["H1870"]],[23,26,["H5488"]],[26,27,["H3220"]]]},{"k":4134,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H559"]]]},{"k":4135,"v":[[0,2,["H5704","H4970"]],[2,7,["H2063"]],[7,8,["H7451"]],[8,9,["H5712"]],[9,10,["H834"]],[10,11,["H3885"]],[11,12,["H5921"]],[12,16,["H8085","(H853)"]],[16,18,["H8519"]],[18,21,["H1121"]],[21,23,["H3478"]],[23,24,["H834"]],[24,25,["H1992"]],[25,26,["H3885"]],[26,27,["H5921"]],[27,28,[]]]},{"k":4136,"v":[[0,1,["H559"]],[1,2,["H413"]],[2,7,["H589"]],[7,8,["H2416"]],[8,9,["H5002"]],[9,11,["H3068"]],[11,12,["H834"]],[12,15,["H1696"]],[15,18,["H241"]],[18,19,["H3651"]],[19,22,["H6213"]],[22,24,[]]]},{"k":4137,"v":[[0,2,["H6297"]],[2,4,["H5307"]],[4,6,["H2088"]],[6,7,["H4057"]],[7,9,["H3605"]],[9,12,["H6485"]],[12,18,["H3605"]],[18,19,["H4557"]],[19,21,["H6242"]],[21,22,["H8141"]],[22,23,["H4480","H1121"]],[23,25,["H4605"]],[25,26,["H834"]],[26,28,["H3885"]],[28,29,["H5921"]],[29,30,[]]]},{"k":4138,"v":[[0,1,["H518"]],[1,2,["H859"]],[2,5,["H935"]],[5,6,["H413"]],[6,8,["H776"]],[8,10,["H834"]],[10,12,["H5375","(H853)","H3027"]],[12,16,["H7931"]],[16,18,["H3588","H518"]],[18,19,["H3612"]],[19,21,["H1121"]],[21,23,["H3312"]],[23,25,["H3091"]],[25,27,["H1121"]],[27,29,["H5126"]]]},{"k":4139,"v":[[0,4,["H2945"]],[4,5,["H834"]],[5,7,["H559"]],[7,9,["H1961"]],[9,11,["H957"]],[11,16,["H935"]],[16,20,["H3045","(H853)"]],[20,22,["H776"]],[22,23,["H834"]],[23,26,["H3988"]]]},{"k":4140,"v":[[0,4,["H859"]],[4,6,["H6297"]],[6,9,["H5307"]],[9,11,["H2088"]],[11,12,["H4057"]]]},{"k":4141,"v":[[0,3,["H1121"]],[3,5,["H1961","H7462"]],[5,8,["H4057"]],[8,9,["H705"]],[9,10,["H8141"]],[10,12,["H5375","(H853)"]],[12,14,["H2184"]],[14,15,["H5704"]],[15,17,["H6297"]],[17,19,["H8552"]],[19,22,["H4057"]]]},{"k":4142,"v":[[0,3,["H4557"]],[3,6,["H3117"]],[6,8,["H834"]],[8,10,["H8446","(H853)"]],[10,12,["H776"]],[12,14,["H705"]],[14,15,["H3117"]],[15,20,["H3117","H8141","H3117","H8141"]],[20,23,["H5375","(H853)"]],[23,25,["H5771"]],[25,27,["H705"]],[27,28,["H8141"]],[28,32,["H3045","(H853)"]],[32,36,["H8569"]]]},{"k":4143,"v":[[0,1,["H589"]],[1,3,["H3068"]],[3,5,["H1696"]],[5,8,["H518","H3808"]],[8,9,["H6213"]],[9,10,["H2063"]],[10,12,["H3605"]],[12,13,["H2063"]],[13,14,["H7451"]],[14,15,["H5712"]],[15,19,["H3259"]],[19,20,["H5921"]],[20,23,["H2088"]],[23,24,["H4057"]],[24,28,["H8552"]],[28,30,["H8033"]],[30,33,["H4191"]]]},{"k":4144,"v":[[0,3,["H376"]],[3,4,["H834"]],[4,5,["H4872"]],[5,6,["H7971"]],[6,8,["H8446","(H853)"]],[8,10,["H776"]],[10,12,["H7725"]],[12,14,["(H853)"]],[14,15,["H3605"]],[15,17,["H5712"]],[17,19,["H3885"]],[19,20,["H5921"]],[20,24,["H3318"]],[24,26,["H1681"]],[26,27,["H5921"]],[27,29,["H776"]]]},{"k":4145,"v":[[0,3,["H376"]],[3,7,["H3318"]],[7,9,["H7451"]],[9,10,["H1681"]],[10,13,["H776"]],[13,14,["H4191"]],[14,17,["H4046"]],[17,18,["H6440"]],[18,20,["H3068"]]]},{"k":4146,"v":[[0,2,["H3091"]],[2,4,["H1121"]],[4,6,["H5126"]],[6,8,["H3612"]],[8,10,["H1121"]],[10,12,["H3312"]],[12,15,["H4480"]],[15,17,["H376"]],[17,19,["H1980"]],[19,21,["H8446","(H853)"]],[21,23,["H776"]],[23,24,["H2421"]],[24,25,[]]]},{"k":4147,"v":[[0,2,["H4872"]],[2,3,["H1696","(H853)"]],[3,4,["H428"]],[4,5,["H1697"]],[5,6,["H413"]],[6,7,["H3605"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,14,["H5971"]],[14,15,["H56"]],[15,16,["H3966"]]]},{"k":4148,"v":[[0,5,["H7925"]],[5,8,["H1242"]],[8,12,["H5927"]],[12,13,["H413"]],[13,15,["H7218"]],[15,18,["H2022"]],[18,19,["H559"]],[19,20,["H2009"]],[20,27,["H5927"]],[27,28,["H413"]],[28,30,["H4725"]],[30,31,["H834"]],[31,33,["H3068"]],[33,35,["H559"]],[35,36,["H3588"]],[36,39,["H2398"]]]},{"k":4149,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H4100"]],[4,5,["H2088"]],[5,7,["H859"]],[7,8,["H5674","(H853)"]],[8,10,["H6310"]],[10,13,["H3068"]],[13,15,["H1931"]],[15,17,["H3808"]],[17,18,["H6743"]]]},{"k":4150,"v":[[0,3,["H5927","H408"]],[3,4,["H3588"]],[4,6,["H3068"]],[6,8,["H369"]],[8,9,["H7130"]],[9,14,["H3808"]],[14,15,["H5062"]],[15,16,["H6440"]],[16,18,["H341"]]]},{"k":4151,"v":[[0,1,["H3588"]],[1,3,["H6003"]],[3,6,["H3669"]],[6,8,["H8033"]],[8,9,["H6440"]],[9,14,["H5307"]],[14,17,["H2719"]],[17,18,["H3588","H5921","H3651"]],[18,22,["H7725"]],[22,23,["H4480","H310"]],[23,25,["H3068"]],[25,28,["H3068"]],[28,30,["H3808"]],[30,31,["H1961"]],[31,32,["H5973"]],[32,33,[]]]},{"k":4152,"v":[[0,3,["H6075"]],[3,6,["H5927"]],[6,7,["H413"]],[7,9,["H2022"]],[9,10,["H7218"]],[10,13,["H727"]],[13,16,["H1285"]],[16,19,["H3068"]],[19,21,["H4872"]],[21,22,["H4185"]],[22,23,["H3808"]],[23,25,["H4480","H7130"]],[25,27,["H4264"]]]},{"k":4153,"v":[[0,3,["H6003"]],[3,5,["H3381"]],[5,8,["H3669"]],[8,10,["H3427"]],[10,12,["H1931"]],[12,13,["H2022"]],[13,15,["H5221"]],[15,18,["H3807"]],[18,21,["H5704"]],[21,22,["H2767"]]]},{"k":4154,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4155,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H3588"]],[11,14,["H935"]],[14,15,["H413"]],[15,17,["H776"]],[17,20,["H4186"]],[20,21,["H834"]],[21,22,["H589"]],[22,23,["H5414"]],[23,25,[]]]},{"k":4156,"v":[[0,3,["H6213"]],[3,7,["H801"]],[7,10,["H3068"]],[10,13,["H5930"]],[13,14,["H176"]],[14,16,["H2077"]],[16,18,["H6381"]],[18,20,["H5088"]],[20,21,["H176"]],[21,25,["H5071"]],[25,26,["H176"]],[26,30,["H4150"]],[30,32,["H6213"]],[32,34,["H5207"]],[34,35,["H7381"]],[35,38,["H3068"]],[38,39,["H4480"]],[39,41,["H1241"]],[41,42,["H176"]],[42,43,["H4480"]],[43,45,["H6629"]]]},{"k":4157,"v":[[0,5,["H7126"]],[5,7,["H7133"]],[7,10,["H3068"]],[10,11,["H7126"]],[11,14,["H4503"]],[14,18,["H6241"]],[18,20,["H5560"]],[20,21,["H1101"]],[21,24,["H7243"]],[24,28,["H1969"]],[28,30,["H8081"]]]},{"k":4158,"v":[[0,3,["H7243"]],[3,7,["H1969"]],[7,9,["H3196"]],[9,13,["H5262"]],[13,16,["H6213"]],[16,17,["H5921"]],[17,20,["H5930"]],[20,21,["H176"]],[21,22,["H2077"]],[22,24,["H259"]],[24,25,["H3532"]]]},{"k":4159,"v":[[0,1,["H176"]],[1,4,["H352"]],[4,7,["H6213"]],[7,11,["H4503"]],[11,12,["H8147"]],[12,14,["H6241"]],[14,16,["H5560"]],[16,17,["H1101"]],[17,20,["H7992"]],[20,24,["H1969"]],[24,26,["H8081"]]]},{"k":4160,"v":[[0,5,["H5262"]],[5,8,["H7126"]],[8,10,["H7992"]],[10,14,["H1969"]],[14,16,["H3196"]],[16,19,["H5207"]],[19,20,["H7381"]],[20,23,["H3068"]]]},{"k":4161,"v":[[0,2,["H3588"]],[2,4,["H6213"]],[4,6,["H1121","H1241"]],[6,10,["H5930"]],[10,11,["H176"]],[11,14,["H2077"]],[14,16,["H6381"]],[16,18,["H5088"]],[18,19,["H176"]],[19,21,["H8002"]],[21,24,["H3068"]]]},{"k":4162,"v":[[0,4,["H7126"]],[4,5,["H5921"]],[5,7,["H1121","H1241"]],[7,10,["H4503"]],[10,12,["H7969"]],[12,14,["H6241"]],[14,16,["H5560"]],[16,17,["H1101"]],[17,19,["H2677"]],[19,21,["H1969"]],[21,23,["H8081"]]]},{"k":4163,"v":[[0,4,["H7126"]],[4,8,["H5262"]],[8,9,["H2677"]],[9,11,["H1969"]],[11,13,["H3196"]],[13,19,["H801"]],[19,22,["H5207"]],[22,23,["H7381"]],[23,26,["H3068"]]]},{"k":4164,"v":[[0,1,["H3602"]],[1,5,["H6213"]],[5,7,["H259"]],[7,8,["H7794"]],[8,9,["H176"]],[9,11,["H259"]],[11,12,["H352"]],[12,13,["H176"]],[13,16,["H7716","H3532"]],[16,17,["H176"]],[17,19,["H5795"]]]},{"k":4165,"v":[[0,4,["H4557"]],[4,5,["H834"]],[5,8,["H6213"]],[8,9,["H3602"]],[9,12,["H6213"]],[12,15,["H259"]],[15,19,["H4557"]]]},{"k":4166,"v":[[0,1,["H3605"]],[1,7,["H249"]],[7,9,["H6213","(H853)"]],[9,11,["H428"]],[11,14,["H3602"]],[14,16,["H7126"]],[16,21,["H801"]],[21,24,["H5207"]],[24,25,["H7381"]],[25,28,["H3068"]]]},{"k":4167,"v":[[0,2,["H3588"]],[2,4,["H1616"]],[4,5,["H1481"]],[5,6,["H854"]],[6,8,["H176"]],[8,9,["H834"]],[9,11,["H8432"]],[11,15,["H1755"]],[15,18,["H6213"]],[18,23,["H801"]],[23,26,["H5207"]],[26,27,["H7381"]],[27,30,["H3068"]],[30,31,["H834"]],[31,33,["H6213"]],[33,34,["H3651"]],[34,37,["H6213"]]]},{"k":4168,"v":[[0,1,["H259"]],[1,2,["H2708"]],[2,10,["H6951"]],[10,15,["H1616"]],[15,17,["H1481"]],[17,21,["H2708"]],[21,23,["H5769"]],[23,26,["H1755"]],[26,33,["H1616"]],[33,34,["H1961"]],[34,35,["H6440"]],[35,37,["H3068"]]]},{"k":4169,"v":[[0,1,["H259"]],[1,2,["H8451"]],[2,4,["H259"]],[4,5,["H4941"]],[5,7,["H1961"]],[7,13,["H1616"]],[13,15,["H1481"]],[15,16,["H854"]],[16,17,[]]]},{"k":4170,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4171,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,13,["H935"]],[13,14,["H413"]],[14,16,["H776"]],[16,17,["H834","H8033"]],[17,18,["H589"]],[18,19,["H935"]],[19,20,[]]]},{"k":4172,"v":[[0,4,["H1961"]],[4,8,["H398"]],[8,11,["H4480","H3899"]],[11,14,["H776"]],[14,18,["H7311"]],[18,21,["H8641"]],[21,24,["H3068"]]]},{"k":4173,"v":[[0,4,["H7311"]],[4,6,["H2471"]],[6,9,["H7225"]],[9,12,["H6182"]],[12,16,["H8641"]],[16,22,["H8641"]],[22,25,["H1637"]],[25,26,["H3651"]],[26,29,["H7311"]],[29,30,[]]]},{"k":4174,"v":[[0,3,["H4480","H7225"]],[3,6,["H6182"]],[6,9,["H5414"]],[9,12,["H3068"]],[12,15,["H8641"]],[15,18,["H1755"]]]},{"k":4175,"v":[[0,2,["H3588"]],[2,5,["H7686"]],[5,7,["H3808"]],[7,8,["H6213","(H853)"]],[8,9,["H3605"]],[9,10,["H428"]],[10,11,["H4687"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H1696"]],[16,17,["H413"]],[17,18,["H4872"]]]},{"k":4176,"v":[[0,1,["(H853)"]],[1,2,["H3605"]],[2,3,["H834"]],[3,5,["H3068"]],[5,7,["H6680","H413"]],[7,11,["H3027"]],[11,13,["H4872"]],[13,14,["H4480"]],[14,16,["H3117"]],[16,17,["H834"]],[17,19,["H3068"]],[19,20,["H6680"]],[20,23,["H1973"]],[23,26,["H1755"]]]},{"k":4177,"v":[[0,4,["H1961"]],[4,5,["H518"]],[5,8,["H6213"]],[8,10,["H7684"]],[10,13,["H4480","H5869"]],[13,16,["H5712"]],[16,18,["H3605"]],[18,20,["H5712"]],[20,22,["H6213"]],[22,23,["H259"]],[23,24,["H1121","H1241"]],[24,25,["H6499"]],[25,29,["H5930"]],[29,32,["H5207"]],[32,33,["H7381"]],[33,36,["H3068"]],[36,40,["H4503"]],[40,44,["H5262"]],[44,48,["H4941"]],[48,50,["H259"]],[50,51,["H8163"]],[51,54,["H5795"]],[54,58,["H2403"]]]},{"k":4178,"v":[[0,3,["H3548"]],[3,7,["H3722"]],[7,8,["H5921"]],[8,9,["H3605"]],[9,11,["H5712"]],[11,14,["H1121"]],[14,16,["H3478"]],[16,21,["H5545"]],[21,23,["H3588"]],[23,24,["H1931"]],[24,26,["H7684"]],[26,28,["H1992"]],[28,30,["H935","(H853)"]],[30,32,["H7133"]],[32,37,["H801"]],[37,40,["H3068"]],[40,44,["H2403"]],[44,45,["H6440"]],[45,47,["H3068"]],[47,48,["H5921"]],[48,50,["H7684"]]]},{"k":4179,"v":[[0,5,["H5545"]],[5,6,["H3605"]],[6,8,["H5712"]],[8,11,["H1121"]],[11,13,["H3478"]],[13,16,["H1616"]],[16,18,["H1481"]],[18,19,["H8432"]],[19,21,["H3588"]],[21,22,["H3605"]],[22,24,["H5971"]],[24,27,["H7684"]]]},{"k":4180,"v":[[0,2,["H518"]],[2,3,["H259"]],[3,4,["H5315"]],[4,5,["H2398"]],[5,7,["H7684"]],[7,11,["H7126"]],[11,14,["H5795"]],[14,17,["H1323"]],[17,18,["H8141"]],[18,22,["H2403"]]]},{"k":4181,"v":[[0,3,["H3548"]],[3,7,["H3722"]],[7,8,["H5921"]],[8,10,["H5315"]],[10,13,["H7683"]],[13,16,["H2398"]],[16,18,["H7684"]],[18,19,["H6440"]],[19,21,["H3068"]],[21,25,["H3722"]],[25,26,["H5921"]],[26,32,["H5545"]],[32,33,[]]]},{"k":4182,"v":[[0,3,["H1961"]],[3,4,["H259"]],[4,5,["H8451"]],[5,9,["H6213"]],[9,11,["H7684"]],[11,17,["H249"]],[17,20,["H1121"]],[20,22,["H3478"]],[22,26,["H1616"]],[26,28,["H1481"]],[28,29,["H8432"]],[29,30,[]]]},{"k":4183,"v":[[0,3,["H5315"]],[3,4,["H834"]],[4,5,["H6213"]],[5,7,["H3027","H7311"]],[7,14,["H4480","H249"]],[14,17,["H1616"]],[17,19,["H1931"]],[19,20,["H1442","(H853)"]],[20,22,["H3068"]],[22,24,["H1931"]],[24,25,["H5315"]],[25,29,["H3772"]],[29,31,["H4480","H7130"]],[31,33,["H5971"]]]},{"k":4184,"v":[[0,1,["H3588"]],[1,4,["H959"]],[4,6,["H1697"]],[6,9,["H3068"]],[9,12,["H6565"]],[12,14,["H4687"]],[14,15,["H1931"]],[15,16,["H5315"]],[16,21,["H3772","H3772"]],[21,23,["H5771"]],[23,27,[]]]},{"k":4185,"v":[[0,4,["H1121"]],[4,6,["H3478"]],[6,7,["H1961"]],[7,10,["H4057"]],[10,12,["H4672"]],[12,14,["H376"]],[14,16,["H7197"]],[16,17,["H6086"]],[17,20,["H7676"]],[20,21,["H3117"]]]},{"k":4186,"v":[[0,4,["H4672"]],[4,6,["H7197"]],[6,7,["H6086"]],[7,8,["H7126"]],[8,10,["H413"]],[10,11,["H4872"]],[11,13,["H175"]],[13,15,["H413"]],[15,16,["H3605"]],[16,18,["H5712"]]]},{"k":4187,"v":[[0,3,["H5117"]],[3,6,["H4929"]],[6,7,["H3588"]],[7,10,["H3808"]],[10,11,["H6567"]],[11,12,["H4100"]],[12,15,["H6213"]],[15,17,[]]]},{"k":4188,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H376"]],[8,14,["H4191","H4191"]],[14,15,["H3605"]],[15,17,["H5712"]],[17,19,["H7275"]],[19,22,["H68"]],[22,23,["H4480","H2351"]],[23,25,["H4264"]]]},{"k":4189,"v":[[0,2,["H3605"]],[2,4,["H5712"]],[4,5,["H3318"]],[5,7,["H413","H4480","H2351"]],[7,9,["H4264"]],[9,11,["H7275"]],[11,14,["H68"]],[14,17,["H4191"]],[17,18,["H834"]],[18,20,["H3068"]],[20,21,["H6680","(H853)"]],[21,22,["H4872"]]]},{"k":4190,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4191,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559","H413"]],[8,12,["H6213"]],[12,14,["H6734"]],[14,15,["H5921"]],[15,17,["H3671"]],[17,20,["H899"]],[20,23,["H1755"]],[23,27,["H5414"]],[27,28,["H5921"]],[28,30,["H6734"]],[30,33,["H3671"]],[33,35,["H6616"]],[35,37,["H8504"]]]},{"k":4192,"v":[[0,4,["H1961"]],[4,9,["H6734"]],[9,14,["H7200"]],[14,17,["H2142","(H853)"]],[17,18,["H3605"]],[18,20,["H4687"]],[20,23,["H3068"]],[23,25,["H6213"]],[25,30,["H8446"]],[30,31,["H3808"]],[31,32,["H310"]],[32,35,["H3824"]],[35,39,["H5869"]],[39,40,["H310"]],[40,41,["H834"]],[41,42,["H859"]],[42,47,["H2181"]]]},{"k":4193,"v":[[0,1,["H4616"]],[1,4,["H2142"]],[4,6,["H6213","(H853)"]],[6,7,["H3605"]],[7,9,["H4687"]],[9,11,["H1961"]],[11,12,["H6918"]],[12,15,["H430"]]]},{"k":4194,"v":[[0,1,["H589"]],[1,4,["H3068"]],[4,6,["H430"]],[6,7,["H834"]],[7,10,["H3318","(H853)"]],[10,13,["H4480","H776"]],[13,15,["H4714"]],[15,17,["H1961"]],[17,19,["H430"]],[19,20,["H589"]],[20,23,["H3068"]],[23,25,["H430"]]]},{"k":4195,"v":[[0,2,["H7141"]],[2,4,["H1121"]],[4,6,["H3324"]],[6,8,["H1121"]],[8,10,["H6955"]],[10,12,["H1121"]],[12,14,["H3878"]],[14,16,["H1885"]],[16,18,["H48"]],[18,20,["H1121"]],[20,22,["H446"]],[22,24,["H203"]],[24,26,["H1121"]],[26,28,["H6431"]],[28,29,["H1121"]],[29,31,["H7205"]],[31,32,["H3947"]],[32,33,[]]]},{"k":4196,"v":[[0,4,["H6965"]],[4,5,["H6440"]],[5,6,["H4872"]],[6,8,["H376"]],[8,11,["H4480","H1121"]],[11,13,["H3478"]],[13,15,["H3967"]],[15,17,["H2572"]],[17,18,["H5387"]],[18,21,["H5712"]],[21,22,["H7148"]],[22,25,["H4150"]],[25,26,["H376"]],[26,28,["H8034"]]]},{"k":4197,"v":[[0,5,["H6950"]],[5,6,["H5921"]],[6,7,["H4872"]],[7,9,["H5921"]],[9,10,["H175"]],[10,12,["H559"]],[12,13,["H413"]],[13,18,["H7227"]],[18,21,["H3588"]],[21,22,["H3605"]],[22,24,["H5712"]],[24,26,["H6918"]],[26,28,["H3605"]],[28,33,["H3068"]],[33,35,["H8432"]],[35,37,["H4069"]],[37,42,["H5375"]],[42,43,["H5921"]],[43,45,["H6951"]],[45,48,["H3068"]]]},{"k":4198,"v":[[0,3,["H4872"]],[3,4,["H8085"]],[4,7,["H5307"]],[7,8,["H5921"]],[8,10,["H6440"]]]},{"k":4199,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,5,["H7141"]],[5,7,["H413"]],[7,8,["H3605"]],[8,10,["H5712"]],[10,11,["H559"]],[11,14,["H1242"]],[14,16,["H3068"]],[16,18,["H3045","(H853)"]],[18,19,["H834"]],[19,25,["H6918"]],[25,32,["H7126"]],[32,33,["H413"]],[33,37,["H834"]],[37,40,["H977"]],[40,46,["H7126"]],[46,47,["H413"]],[47,48,[]]]},{"k":4200,"v":[[0,1,["H2063"]],[1,2,["H6213"]],[2,3,["H3947"]],[3,5,["H4289"]],[5,6,["H7141"]],[6,8,["H3605"]],[8,10,["H5712"]]]},{"k":4201,"v":[[0,2,["H5414"]],[2,3,["H784"]],[3,6,["H7760"]],[6,7,["H7004"]],[7,8,["H5921"]],[8,10,["H6440"]],[10,12,["H3068"]],[12,14,["H4279"]],[14,18,["H1961"]],[18,21,["H376"]],[21,22,["H834"]],[22,24,["H3068"]],[24,26,["H977"]],[26,27,["H1931"]],[27,30,["H6918"]],[30,34,["H7227"]],[34,38,["H1121"]],[38,40,["H3878"]]]},{"k":4202,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7141"]],[5,6,["H8085"]],[6,9,["H4994"]],[9,11,["H1121"]],[11,13,["H3878"]]]},{"k":4203,"v":[[0,6,["H4592"]],[6,7,["H4480"]],[7,9,["H3588"]],[9,11,["H430"]],[11,13,["H3478"]],[13,15,["H914"]],[15,19,["H4480","H5712"]],[19,21,["H3478"]],[21,25,["H7126","(H853)"]],[25,26,["H413"]],[26,29,["H5647","(H853)"]],[29,31,["H5656"]],[31,34,["H4908"]],[34,37,["H3068"]],[37,40,["H5975"]],[40,41,["H6440"]],[41,43,["H5712"]],[43,45,["H8334"]],[45,47,[]]]},{"k":4204,"v":[[0,6,["H7126","(H853)"]],[6,10,["H3605"]],[10,12,["H251"]],[12,14,["H1121"]],[14,16,["H3878"]],[16,17,["H854"]],[17,20,["H1245"]],[20,23,["H3550"]],[23,24,["H1571"]]]},{"k":4205,"v":[[0,3,["H3651"]],[3,5,["H859"]],[5,7,["H3605"]],[7,9,["H5712"]],[9,12,["H3259"]],[12,13,["H5921"]],[13,15,["H3068"]],[15,17,["H4100"]],[17,19,["H175"]],[19,20,["H3588"]],[20,22,["H3885"]],[22,23,["H5921"]],[23,24,[]]]},{"k":4206,"v":[[0,2,["H4872"]],[2,3,["H7971"]],[3,5,["H7121"]],[5,6,["H1885"]],[6,8,["H48"]],[8,10,["H1121"]],[10,12,["H446"]],[12,14,["H559"]],[14,17,["H3808"]],[17,19,["H5927"]]]},{"k":4207,"v":[[0,5,["H4592"]],[5,6,["H3588"]],[6,11,["H5927"]],[11,15,["H4480","H776"]],[15,17,["H2100"]],[17,19,["H2461"]],[19,21,["H1706"]],[21,23,["H4191"]],[23,27,["H4057"]],[27,28,["H3588"]],[28,34,["H8323","H8323","H1571"]],[34,35,["H5921"]],[35,36,[]]]},{"k":4208,"v":[[0,1,["H637"]],[1,4,["H3808"]],[4,5,["H935"]],[5,7,["H413"]],[7,9,["H776"]],[9,11,["H2100"]],[11,13,["H2461"]],[13,15,["H1706"]],[15,17,["H5414"]],[17,19,["H5159"]],[19,21,["H7704"]],[21,23,["H3754"]],[23,27,["H5365"]],[27,29,["H5869"]],[29,31,["H1992"]],[31,32,["H376"]],[32,35,["H3808"]],[35,37,["H5927"]]]},{"k":4209,"v":[[0,2,["H4872"]],[2,5,["H2734","H3966"]],[5,7,["H559"]],[7,8,["H413"]],[8,10,["H3068"]],[10,11,["H6437","H413"]],[11,12,["H408"]],[12,15,["H4503"]],[15,18,["H3808"]],[18,19,["H5375"]],[19,20,["H259"]],[20,21,["H2543"]],[21,22,["H4480"]],[22,24,["H3808"]],[24,27,["H7489","(H853)"]],[27,28,["H259"]],[28,29,["H4480"]],[29,30,[]]]},{"k":4210,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7141"]],[5,6,["H1961"]],[6,7,["H859"]],[7,9,["H3605"]],[9,11,["H5712"]],[11,12,["H6440"]],[12,14,["H3068"]],[14,15,["H859"]],[15,17,["H1992"]],[17,19,["H175"]],[19,21,["H4279"]]]},{"k":4211,"v":[[0,2,["H3947"]],[2,4,["H376"]],[4,6,["H4289"]],[6,8,["H5414"]],[8,9,["H7004"]],[9,10,["H5921"]],[10,13,["H7126"]],[13,15,["H6440"]],[15,17,["H3068"]],[17,19,["H376"]],[19,21,["H4289"]],[21,23,["H3967"]],[23,25,["H2572"]],[25,26,["H4289"]],[26,27,["H859"]],[27,30,["H175"]],[30,31,["H376"]],[31,35,["H4289"]]]},{"k":4212,"v":[[0,3,["H3947"]],[3,5,["H376"]],[5,7,["H4289"]],[7,9,["H5414"]],[9,10,["H784"]],[10,11,["H413"]],[11,14,["H7760"]],[14,15,["H7004"]],[15,16,["H413"]],[16,18,["H5975"]],[18,21,["H6607"]],[21,24,["H168"]],[24,27,["H4150"]],[27,29,["H4872"]],[29,31,["H175"]]]},{"k":4213,"v":[[0,2,["H7141"]],[2,3,["H6950","(H853)"]],[3,4,["H3605"]],[4,6,["H5712"]],[6,7,["H5921"]],[7,9,["H413"]],[9,11,["H6607"]],[11,14,["H168"]],[14,17,["H4150"]],[17,20,["H3519"]],[20,23,["H3068"]],[23,24,["H7200"]],[24,25,["H413"]],[25,26,["H3605"]],[26,28,["H5712"]]]},{"k":4214,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H559"]]]},{"k":4215,"v":[[0,2,["H914"]],[2,4,["H4480","H8432"]],[4,5,["H2063"]],[5,6,["H5712"]],[6,10,["H3615"]],[10,14,["H7281"]]]},{"k":4216,"v":[[0,3,["H5307"]],[3,4,["H5921"]],[4,6,["H6440"]],[6,8,["H559"]],[8,10,["H410"]],[10,12,["H430"]],[12,15,["H7307"]],[15,17,["H3605"]],[17,18,["H1320"]],[18,20,["H259"]],[20,21,["H376"]],[21,22,["H2398"]],[22,27,["H7107"]],[27,28,["H5921"]],[28,29,["H3605"]],[29,31,["H5712"]]]},{"k":4217,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4218,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H5712"]],[4,5,["H559"]],[5,8,["H5927"]],[8,10,["H4480","H5439"]],[10,12,["H4908"]],[12,14,["H7141"]],[14,15,["H1885"]],[15,17,["H48"]]]},{"k":4219,"v":[[0,2,["H4872"]],[2,4,["H6965"]],[4,6,["H1980"]],[6,7,["H413"]],[7,8,["H1885"]],[8,10,["H48"]],[10,13,["H2205"]],[13,15,["H3478"]],[15,16,["H1980","H310"]],[16,17,[]]]},{"k":4220,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H5712"]],[6,7,["H559"]],[7,8,["H5493"]],[8,11,["H4994"]],[11,12,["H4480","H5921"]],[12,14,["H168"]],[14,16,["H428"]],[16,17,["H7563"]],[17,18,["H376"]],[18,20,["H5060"]],[20,21,["H408","H3605"]],[21,24,["H6435"]],[24,27,["H5595"]],[27,29,["H3605"]],[29,31,["H2403"]]]},{"k":4221,"v":[[0,4,["H5927"]],[4,5,["H4480","H5921"]],[5,7,["H4908"]],[7,9,["H7141"]],[9,10,["H1885"]],[10,12,["H48"]],[12,15,["H4480","H5439"]],[15,17,["H1885"]],[17,19,["H48"]],[19,21,["H3318"]],[21,23,["H5324"]],[23,26,["H6607"]],[26,29,["H168"]],[29,32,["H802"]],[32,35,["H1121"]],[35,39,["H2945"]]]},{"k":4222,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H2063"]],[4,7,["H3045"]],[7,8,["H3588"]],[8,10,["H3068"]],[10,12,["H7971"]],[12,15,["H6213","(H853)"]],[15,16,["H3605"]],[16,17,["H428"]],[17,18,["H4639"]],[18,19,["H3588"]],[19,22,["H3808"]],[22,28,["H4480","H3820"]]]},{"k":4223,"v":[[0,1,["H518"]],[1,2,["H428"]],[2,4,["H4191"]],[4,7,["H4194"]],[7,9,["H3605"]],[9,10,["H120"]],[10,15,["H6485"]],[15,16,["H5921"]],[16,18,["H6486"]],[18,20,["H3605"]],[20,21,["H120"]],[21,24,["H3068"]],[24,26,["H3808"]],[26,27,["H7971"]],[27,28,[]]]},{"k":4224,"v":[[0,2,["H518"]],[2,4,["H3068"]],[4,5,["H1254"]],[5,8,["H1278"]],[8,11,["H127"]],[11,12,["H6475","(H853)"]],[12,14,["H6310"]],[14,18,["H1104","(H853)"]],[18,20,["H3605"]],[20,21,["H834"]],[21,28,["H3381"]],[28,29,["H2416"]],[29,32,["H7585"]],[32,36,["H3045"]],[36,37,["H3588"]],[37,38,["H428"]],[38,39,["H376"]],[39,41,["H5006","(H853)"]],[41,43,["H3068"]]]},{"k":4225,"v":[[0,5,["H1961"]],[5,11,["H3615"]],[11,13,["H1696","(H853)"]],[13,14,["H3605"]],[14,15,["H428"]],[15,16,["H1697"]],[16,19,["H127"]],[19,21,["H1234"]],[21,22,["H834"]],[22,24,["H8478"]],[24,25,[]]]},{"k":4226,"v":[[0,3,["H776"]],[3,4,["H6605","(H853)"]],[4,6,["H6310"]],[6,10,["H1104","(H853)"]],[10,13,["H1004"]],[13,15,["H3605"]],[15,17,["H120"]],[17,18,["H834"]],[18,21,["H7141"]],[21,23,["H3605"]],[23,25,["H7399"]]]},{"k":4227,"v":[[0,1,["H1992"]],[1,3,["H3605"]],[3,4,["H834"]],[4,9,["H3381"]],[9,10,["H2416"]],[10,13,["H7585"]],[13,16,["H776"]],[16,17,["H3680"]],[17,18,["H5921"]],[18,22,["H6"]],[22,24,["H4480","H8432"]],[24,26,["H6951"]]]},{"k":4228,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,4,["H834"]],[4,7,["H5439"]],[7,9,["H5127"]],[9,12,["H6963"]],[12,15,["H3588"]],[15,17,["H559"]],[17,18,["H6435"]],[18,20,["H776"]],[20,23,["H1104"]],[23,24,[]]]},{"k":4229,"v":[[0,4,["H3318"]],[4,6,["H784"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,11,["H398"]],[11,12,["(H853)"]],[12,14,["H3967"]],[14,16,["H2572"]],[16,17,["H376"]],[17,19,["H7126"]],[19,20,["H7004"]]]},{"k":4230,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4231,"v":[[0,1,["H559"]],[1,2,["H413"]],[2,3,["H499"]],[3,5,["H1121"]],[5,7,["H175"]],[7,9,["H3548"]],[9,13,["H7311","(H853)"]],[13,15,["H4289"]],[15,17,["H4480","H996"]],[17,19,["H8316"]],[19,21,["H2219"]],[21,24,["H784"]],[24,25,["H1973"]],[25,26,["H3588"]],[26,29,["H6942"]]]},{"k":4232,"v":[[0,0,["(H853)"]],[0,2,["H4289"]],[2,4,["H428"]],[4,5,["H2400"]],[5,9,["H5315"]],[9,12,["H6213","(H853)"]],[12,14,["H7555"]],[14,15,["H6341"]],[15,18,["H6826"]],[18,21,["H4196"]],[21,22,["H3588"]],[22,24,["H7126"]],[24,26,["H6440"]],[26,28,["H3068"]],[28,32,["H6942"]],[32,36,["H1961"]],[36,38,["H226"]],[38,41,["H1121"]],[41,43,["H3478"]]]},{"k":4233,"v":[[0,2,["H499"]],[2,4,["H3548"]],[4,5,["H3947","(H853)"]],[5,7,["H5178"]],[7,8,["H4289"]],[8,9,["H834"]],[9,13,["H8313"]],[13,15,["H7126"]],[15,20,["H7554"]],[20,24,["H6826"]],[24,27,["H4196"]]]},{"k":4234,"v":[[0,4,["H2146"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,10,["H4616","H834"]],[10,11,["H3808"]],[11,12,["H376","H2114"]],[12,13,["H1931"]],[13,15,["H3808"]],[15,18,["H4480","H2233"]],[18,20,["H175"]],[20,22,["H7126"]],[22,24,["H6999"]],[24,25,["H7004"]],[25,26,["H6440"]],[26,28,["H3068"]],[28,31,["H1961"]],[31,32,["H3808"]],[32,34,["H7141"]],[34,38,["H5712"]],[38,39,["H834"]],[39,41,["H3068"]],[41,42,["H1696"]],[42,47,["H3027"]],[47,49,["H4872"]]]},{"k":4235,"v":[[0,4,["H4480","H4283"]],[4,5,["H3605"]],[5,7,["H5712"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,13,["H3885"]],[13,14,["H5921"]],[14,15,["H4872"]],[15,17,["H5921"]],[17,18,["H175"]],[18,19,["H559"]],[19,20,["H859"]],[20,22,["H4191","(H853)"]],[22,24,["H5971"]],[24,27,["H3068"]]]},{"k":4236,"v":[[0,5,["H1961"]],[5,8,["H5712"]],[8,10,["H6950"]],[10,11,["H5921"]],[11,12,["H4872"]],[12,14,["H5921"]],[14,15,["H175"]],[15,18,["H6437"]],[18,19,["H413"]],[19,21,["H168"]],[21,24,["H4150"]],[24,26,["H2009"]],[26,28,["H6051"]],[28,29,["H3680"]],[29,33,["H3519"]],[33,36,["H3068"]],[36,37,["H7200"]]]},{"k":4237,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,5,["H935"]],[5,6,["H413","H6440"]],[6,8,["H168"]],[8,11,["H4150"]]]},{"k":4238,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4239,"v":[[0,3,["H7426"]],[3,5,["H4480","H8432"]],[5,6,["H2063"]],[6,7,["H5712"]],[7,11,["H3615"]],[11,16,["H7281"]],[16,19,["H5307"]],[19,20,["H5921"]],[20,22,["H6440"]]]},{"k":4240,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H175"]],[5,6,["H3947","(H853)"]],[6,8,["H4289"]],[8,10,["H5414"]],[10,11,["H784"]],[11,12,["H5921"]],[12,14,["H4480","H5921"]],[14,16,["H4196"]],[16,19,["H7760"]],[19,20,["H7004"]],[20,22,["H1980"]],[22,23,["H4120"]],[23,24,["H413"]],[24,26,["H5712"]],[26,30,["H3722"]],[30,31,["H5921"]],[31,33,["H3588"]],[33,36,["H7110"]],[36,38,["H3318"]],[38,39,["H4480","H6440"]],[39,41,["H3068"]],[41,43,["H5063"]],[43,45,["H2490"]]]},{"k":4241,"v":[[0,2,["H175"]],[2,3,["H3947"]],[3,4,["H834"]],[4,5,["H4872"]],[5,6,["H1696"]],[6,8,["H7323"]],[8,9,["H413"]],[9,11,["H8432"]],[11,14,["H6951"]],[14,16,["H2009"]],[16,18,["H5063"]],[18,20,["H2490"]],[20,23,["H5971"]],[23,27,["H5414","(H853)"]],[27,28,["H7004"]],[28,32,["H3722"]],[32,33,["H5921"]],[33,35,["H5971"]]]},{"k":4242,"v":[[0,3,["H5975"]],[3,4,["H996"]],[4,6,["H4191"]],[6,9,["H2416"]],[9,12,["H4046"]],[12,14,["H6113"]]]},{"k":4243,"v":[[0,4,["H4191"]],[4,7,["H4046"]],[7,8,["H1961"]],[8,9,["H702","H6240"]],[9,10,["H505"]],[10,12,["H7651"]],[12,13,["H3967"]],[13,14,["H4480","H905"]],[14,17,["H4191"]],[17,18,["H5921"]],[18,20,["H1697"]],[20,22,["H7141"]]]},{"k":4244,"v":[[0,2,["H175"]],[2,3,["H7725"]],[3,4,["H413"]],[4,5,["H4872"]],[5,6,["H413"]],[6,8,["H6607"]],[8,11,["H168"]],[11,14,["H4150"]],[14,17,["H4046"]],[17,19,["H6113"]]]},{"k":4245,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4246,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H3947"]],[8,9,["H4480","H854"]],[9,15,["H4294"]],[15,19,["H1004"]],[19,22,["H1"]],[22,23,["H4480","H854"]],[23,24,["H3605"]],[24,26,["H5387"]],[26,30,["H1004"]],[30,33,["H1"]],[33,34,["H8147","H6240"]],[34,35,["H4294"]],[35,36,["H3789"]],[36,37,["(H853)"]],[37,39,["H376"]],[39,40,["H8034"]],[40,41,["H5921"]],[41,43,["H4294"]]]},{"k":4247,"v":[[0,4,["H3789"]],[4,5,["H175"]],[5,6,["H8034"]],[6,7,["H5921"]],[7,9,["H4294"]],[9,11,["H3878"]],[11,12,["H3588"]],[12,13,["H259"]],[13,14,["H4294"]],[14,19,["H7218"]],[19,22,["H1004"]],[22,25,["H1"]]]},{"k":4248,"v":[[0,6,["H5117"]],[6,9,["H168"]],[9,12,["H4150"]],[12,13,["H6440"]],[13,15,["H5715"]],[15,16,["H834","H8033"]],[16,19,["H3259"]],[19,21,[]]]},{"k":4249,"v":[[0,6,["H1961"]],[6,9,["H376"]],[9,10,["H4294"]],[10,11,["H834"]],[11,14,["H977"]],[14,16,["H6524"]],[16,22,["H7918"]],[22,23,["H4480","H5921"]],[23,24,["(H853)"]],[24,26,["H8519"]],[26,29,["H1121"]],[29,31,["H3478"]],[31,32,["H834"]],[32,33,["H1992"]],[33,34,["H3885"]],[34,35,["H5921"]],[35,36,[]]]},{"k":4250,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,11,["H3605"]],[11,14,["H5387"]],[14,15,["H5414","H413"]],[15,18,["H4294"]],[18,19,["H5387","H259","H4294"]],[19,22,["H5387"]],[22,23,["H259"]],[23,27,["H1"]],[27,28,["H1004"]],[28,30,["H8147","H6240"]],[30,31,["H4294"]],[31,34,["H4294"]],[34,36,["H175"]],[36,38,["H8432"]],[38,40,["H4294"]]]},{"k":4251,"v":[[0,2,["H4872"]],[2,4,["H5117","(H853)"]],[4,6,["H4294"]],[6,7,["H6440"]],[7,9,["H3068"]],[9,12,["H168"]],[12,14,["H5715"]]]},{"k":4252,"v":[[0,5,["H1961"]],[5,9,["H4480","H4283"]],[9,10,["H4872"]],[10,11,["H935"]],[11,12,["H413"]],[12,14,["H168"]],[14,16,["H5715"]],[16,18,["H2009"]],[18,20,["H4294"]],[20,22,["H175"]],[22,25,["H1004"]],[25,27,["H3878"]],[27,29,["H6524"]],[29,32,["H3318"]],[32,33,["H6525"]],[33,35,["H6692"]],[35,36,["H6731"]],[36,38,["H1580"]],[38,39,["H8247"]]]},{"k":4253,"v":[[0,2,["H4872"]],[2,4,["H3318","(H853)"]],[4,5,["H3605"]],[5,7,["H4294"]],[7,9,["H4480","H6440"]],[9,11,["H3068"]],[11,12,["H413"]],[12,13,["H3605"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,20,["H7200"]],[20,22,["H3947"]],[22,24,["H376"]],[24,26,["H4294"]]]},{"k":4254,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H7725","(H853)"]],[7,8,["H175"]],[8,9,["H4294"]],[9,11,["H6440"]],[11,13,["H5715"]],[13,16,["H4931"]],[16,19,["H226"]],[19,22,["H1121","H4805"]],[22,28,["H3615"]],[28,30,["H8519"]],[30,31,["H4480","H5921"]],[31,35,["H4191"]],[35,36,["H3808"]]]},{"k":4255,"v":[[0,2,["H4872"]],[2,3,["H6213"]],[3,5,["H834"]],[5,7,["H3068"]],[7,8,["H6680"]],[8,10,["H3651"]],[10,11,["H6213"]],[11,12,[]]]},{"k":4256,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H4872"]],[8,9,["H559"]],[9,10,["H2005"]],[10,12,["H1478"]],[12,14,["H6"]],[14,16,["H3605"]],[16,17,["H6"]]]},{"k":4257,"v":[[0,1,["H3605"]],[1,5,["H7131","H7131"]],[5,6,["H413"]],[6,8,["H4908"]],[8,11,["H3068"]],[11,13,["H4191"]],[13,17,["H8552"]],[17,19,["H1478"]]]},{"k":4258,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H175"]],[6,7,["H859"]],[7,10,["H1121"]],[10,13,["H1"]],[13,14,["H1004"]],[14,15,["H854"]],[15,18,["H5375","(H853)"]],[18,20,["H5771"]],[20,23,["H4720"]],[23,25,["H859"]],[25,28,["H1121"]],[28,29,["H854"]],[29,32,["H5375","(H853)"]],[32,34,["H5771"]],[34,37,["H3550"]]]},{"k":4259,"v":[[0,1,["(H853)"]],[1,3,["H251"]],[3,4,["H1571"]],[4,7,["H4294"]],[7,9,["H3878"]],[9,11,["H7626"]],[11,14,["H1"]],[14,15,["H7126"]],[15,17,["H854"]],[17,23,["H3867"]],[23,24,["H5921"]],[24,27,["H8334"]],[27,31,["H859"]],[31,34,["H1121"]],[34,35,["H854"]],[35,39,["H6440"]],[39,41,["H168"]],[41,43,["H5715"]]]},{"k":4260,"v":[[0,4,["H8104"]],[4,6,["H4931"]],[6,9,["H4931"]],[9,11,["H3605"]],[11,13,["H168"]],[13,14,["H389"]],[14,17,["H3808"]],[17,19,["H7126","H413"]],[19,21,["H3627"]],[21,24,["H6944"]],[24,27,["H4196"]],[27,29,["H3808","H1571"]],[29,30,["H1992"]],[30,32,["H859"]],[32,33,["H1571"]],[33,34,["H4191"]]]},{"k":4261,"v":[[0,5,["H3867"]],[5,6,["H5921"]],[6,9,["H8104","(H853)"]],[9,11,["H4931"]],[11,14,["H168"]],[14,17,["H4150"]],[17,19,["H3605"]],[19,21,["H5656"]],[21,24,["H168"]],[24,27,["H2114"]],[27,29,["H3808"]],[29,31,["H7126"]],[31,32,["H413"]],[32,33,[]]]},{"k":4262,"v":[[0,4,["H8104","(H853)"]],[4,6,["H4931"]],[6,9,["H6944"]],[9,12,["H4931"]],[12,15,["H4196"]],[15,18,["H1961"]],[18,19,["H3808"]],[19,20,["H7110"]],[20,22,["H5750"]],[22,23,["H5921"]],[23,25,["H1121"]],[25,27,["H3478"]]]},{"k":4263,"v":[[0,2,["H589"]],[2,3,["H2009"]],[3,6,["H3947","(H853)"]],[6,8,["H251"]],[8,10,["H3881"]],[10,12,["H4480","H8432"]],[12,14,["H1121"]],[14,16,["H3478"]],[16,21,["H5414"]],[21,24,["H4979"]],[24,27,["H3068"]],[27,29,["H5647","(H853)"]],[29,31,["H5656"]],[31,34,["H168"]],[34,37,["H4150"]]]},{"k":4264,"v":[[0,2,["H859"]],[2,5,["H1121"]],[5,6,["H854"]],[6,9,["H8104","(H853)"]],[9,12,["H3550"]],[12,14,["H3605"]],[14,15,["H1697"]],[15,18,["H4196"]],[18,20,["H4480","H1004"]],[20,22,["H6532"]],[22,26,["H5647"]],[26,29,["H5414","(H853)"]],[29,32,["H3550"]],[32,37,["H5656"]],[37,39,["H4979"]],[39,42,["H2114"]],[42,45,["H7131"]],[45,50,["H4191"]]]},{"k":4265,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H175"]],[6,7,["H2009"]],[7,8,["H589"]],[8,11,["H5414"]],[11,12,["(H853)"]],[12,14,["H4931"]],[14,18,["H8641"]],[18,20,["H3605"]],[20,23,["H6944"]],[23,26,["H1121"]],[26,28,["H3478"]],[28,33,["H5414"]],[33,39,["H4888"]],[39,43,["H1121"]],[43,46,["H2706"]],[46,48,["H5769"]]]},{"k":4266,"v":[[0,1,["H2088"]],[1,3,["H1961"]],[3,9,["H4480","H6944","H6944"]],[9,11,["H4480"]],[11,13,["H784"]],[13,14,["H3605"]],[14,15,["H7133"]],[15,18,["H3605"]],[18,20,["H4503"]],[20,24,["H3605"]],[24,26,["H2403"]],[26,30,["H3605"]],[30,32,["H817"]],[32,35,["H834"]],[35,38,["H7725"]],[38,44,["H6944","H6944"]],[44,50,["H1121"]]]},{"k":4267,"v":[[0,4,["H6944","H6944"]],[4,8,["H398"]],[8,10,["H3605"]],[10,11,["H2145"]],[11,13,["H398"]],[13,17,["H1961"]],[17,18,["H6944"]],[18,20,[]]]},{"k":4268,"v":[[0,2,["H2088"]],[2,7,["H8641"]],[7,10,["H4976"]],[10,12,["H3605"]],[12,15,["H8573"]],[15,18,["H1121"]],[18,20,["H3478"]],[20,23,["H5414"]],[23,30,["H1121"]],[30,34,["H1323"]],[34,35,["H854"]],[35,39,["H2706"]],[39,41,["H5769"]],[41,43,["H3605"]],[43,46,["H2889"]],[46,49,["H1004"]],[49,51,["H398"]],[51,53,[]]]},{"k":4269,"v":[[0,1,["H3605"]],[1,3,["H2459"]],[3,6,["H3323"]],[6,8,["H3605"]],[8,10,["H2459"]],[10,13,["H8492"]],[13,17,["H1715"]],[17,19,["H7225"]],[19,22,["H834"]],[22,25,["H5414"]],[25,28,["H3068"]],[28,32,["H5414"]],[32,33,[]]]},{"k":4270,"v":[[0,2,["H3605","H834"]],[2,5,["H1061"]],[5,8,["H776"]],[8,9,["H834"]],[9,12,["H935"]],[12,15,["H3068"]],[15,17,["H1961"]],[17,20,["H3605"]],[20,23,["H2889"]],[23,26,["H1004"]],[26,28,["H398"]],[28,30,[]]]},{"k":4271,"v":[[0,2,["H3605"]],[2,3,["H2764"]],[3,5,["H3478"]],[5,7,["H1961"]],[7,8,[]]]},{"k":4272,"v":[[0,2,["H3605"]],[2,4,["H6363"]],[4,6,["H7358"]],[6,8,["H3605"]],[8,9,["H1320"]],[9,10,["H834"]],[10,12,["H7126"]],[12,15,["H3068"]],[15,20,["H120"]],[20,22,["H929"]],[22,24,["H1961"]],[24,26,["H389","(H853)"]],[26,28,["H1060"]],[28,30,["H120"]],[30,34,["H6299","H6299"]],[34,37,["H1060"]],[37,39,["H2931"]],[39,40,["H929"]],[40,43,["H6299"]]]},{"k":4273,"v":[[0,7,["H6299"]],[7,10,["H2320"]],[10,11,["H4480","H1121"]],[11,14,["H6299"]],[14,18,["H6187"]],[18,21,["H3701"]],[21,23,["H2568"]],[23,24,["H8255"]],[24,27,["H8255"]],[27,30,["H6944"]],[30,31,["H1931"]],[31,33,["H6242"]],[33,34,["H1626"]]]},{"k":4274,"v":[[0,1,["H389"]],[1,3,["H1060"]],[3,6,["H7794"]],[6,7,["H176"]],[7,9,["H1060"]],[9,12,["H3775"]],[12,13,["H176"]],[13,15,["H1060"]],[15,18,["H5795"]],[18,21,["H3808"]],[21,22,["H6299"]],[22,23,["H1992"]],[23,25,["H6944"]],[25,28,["H2236","(H853)"]],[28,30,["H1818"]],[30,31,["H5921"]],[31,33,["H4196"]],[33,36,["H6999"]],[36,38,["H2459"]],[38,44,["H801"]],[44,47,["H5207"]],[47,48,["H7381"]],[48,51,["H3068"]]]},{"k":4275,"v":[[0,3,["H1320"]],[3,7,["H1961"]],[7,11,["H8573"]],[11,12,["H2373"]],[12,16,["H3225"]],[16,17,["H7785"]],[17,18,["H1961"]],[18,19,[]]]},{"k":4276,"v":[[0,1,["H3605"]],[1,4,["H8641"]],[4,8,["H6944"]],[8,9,["H834"]],[9,11,["H1121"]],[11,13,["H3478"]],[13,14,["H7311"]],[14,17,["H3068"]],[17,20,["H5414"]],[20,24,["H1121"]],[24,27,["H1323"]],[27,28,["H854"]],[28,32,["H2706"]],[32,34,["H5769"]],[34,35,["H1931"]],[35,38,["H1285"]],[38,40,["H4417"]],[40,42,["H5769"]],[42,43,["H6440"]],[43,45,["H3068"]],[45,51,["H2233"]],[51,52,["H854"]],[52,53,[]]]},{"k":4277,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H175"]],[6,11,["H5157","H3808"]],[11,14,["H776"]],[14,15,["H3808"]],[15,18,["H1961"]],[18,20,["H2506"]],[20,21,["H8432"]],[21,23,["H589"]],[23,26,["H2506"]],[26,29,["H5159"]],[29,30,["H8432"]],[30,32,["H1121"]],[32,34,["H3478"]]]},{"k":4278,"v":[[0,2,["H2009"]],[2,5,["H5414"]],[5,7,["H1121"]],[7,9,["H3878"]],[9,10,["H3605"]],[10,12,["H4643"]],[12,14,["H3478"]],[14,17,["H5159"]],[17,18,["H2500"]],[18,20,["H5656"]],[20,21,["H834"]],[21,22,["H1992"]],[22,23,["H5647"]],[23,24,["(H853)"]],[24,26,["H5656"]],[26,29,["H168"]],[29,32,["H4150"]]]},{"k":4279,"v":[[0,1,["H3808"]],[1,4,["H1121"]],[4,6,["H3478"]],[6,7,["H5750"]],[7,9,["H7126","H413"]],[9,11,["H168"]],[11,14,["H4150"]],[14,17,["H5375"]],[17,18,["H2399"]],[18,20,["H4191"]]]},{"k":4280,"v":[[0,3,["H3881"]],[3,5,["H5647","(H853)"]],[5,7,["H5656"]],[7,10,["H168"]],[10,13,["H4150"]],[13,15,["H1992"]],[15,17,["H5375"]],[17,19,["H5771"]],[19,24,["H2708"]],[24,26,["H5769"]],[26,29,["H1755"]],[29,31,["H8432"]],[31,33,["H1121"]],[33,35,["H3478"]],[35,37,["H5157"]],[37,38,["H3808"]],[38,39,["H5159"]]]},{"k":4281,"v":[[0,1,["H3588","(H853)"]],[1,3,["H4643"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,9,["H834"]],[9,11,["H7311"]],[11,15,["H8641"]],[15,18,["H3068"]],[18,21,["H5414"]],[21,24,["H3881"]],[24,26,["H5159"]],[26,27,["H5921","H3651"]],[27,30,["H559"]],[30,33,["H8432"]],[33,35,["H1121"]],[35,37,["H3478"]],[37,40,["H5157"]],[40,41,["H3808"]],[41,42,["H5159"]]]},{"k":4282,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4283,"v":[[0,2,["H1696"]],[2,3,["H413"]],[3,5,["H3881"]],[5,7,["H559"]],[7,8,["H413"]],[8,10,["H3588"]],[10,12,["H3947"]],[12,13,["H4480","H854"]],[13,15,["H1121"]],[15,17,["H3478","(H853)"]],[17,19,["H4643"]],[19,20,["H834"]],[20,23,["H5414"]],[23,25,["H4480","H854"]],[25,29,["H5159"]],[29,34,["H7311"]],[34,37,["H8641"]],[37,38,["H4480"]],[38,42,["H3068"]],[42,45,["H4643"]],[45,47,["H4480"]],[47,49,["H4643"]]]},{"k":4284,"v":[[0,5,["H8641"]],[5,8,["H2803"]],[8,16,["H1715"]],[16,17,["H4480"]],[17,19,["H1637"]],[19,23,["H4395"]],[23,24,["H4480"]],[24,26,["H3342"]]]},{"k":4285,"v":[[0,1,["H3651"]],[1,2,["H859"]],[2,3,["H1571"]],[3,5,["H7311"]],[5,8,["H8641"]],[8,11,["H3068"]],[11,13,["H4480","H3605"]],[13,15,["H4643"]],[15,16,["H834"]],[16,18,["H3947"]],[18,19,["H4480","H854"]],[19,21,["H1121"]],[21,23,["H3478"]],[23,27,["H5414"]],[27,28,["H4480","(H853)"]],[28,30,["H3068"]],[30,32,["H8641"]],[32,34,["H175"]],[34,36,["H3548"]]]},{"k":4286,"v":[[0,3,["H4480","H3605"]],[3,5,["H4979"]],[5,8,["H7311","(H853)"]],[8,9,["H3605"]],[9,11,["H8641"]],[11,14,["H3068"]],[14,16,["H4480","H3605"]],[16,18,["H2459"]],[18,20,["(H853)"]],[20,23,["H4720"]],[23,26,["H4480"]],[26,27,[]]]},{"k":4287,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,10,["H7311","(H853)"]],[10,12,["H2459"]],[12,14,["H4480"]],[14,20,["H2803"]],[20,23,["H3881"]],[23,26,["H8393"]],[26,29,["H1637"]],[29,33,["H8393"]],[33,36,["H3342"]]]},{"k":4288,"v":[[0,4,["H398"]],[4,7,["H3605"]],[7,8,["H4725"]],[8,9,["H859"]],[9,12,["H1004"]],[12,13,["H3588"]],[13,14,["H1931"]],[14,17,["H7939"]],[17,18,["H2500"]],[18,20,["H5656"]],[20,23,["H168"]],[23,26,["H4150"]]]},{"k":4289,"v":[[0,4,["H5375"]],[4,5,["H3808"]],[5,6,["H2399"]],[6,9,["H5921"]],[9,14,["H7311"]],[14,16,["(H853)"]],[16,18,["H2459"]],[18,19,["H4480"]],[19,21,["H3808"]],[21,24,["H2490"]],[24,27,["H6944"]],[27,30,["H1121"]],[30,32,["H3478"]],[32,33,["H3808"]],[33,35,["H4191"]]]},{"k":4290,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H559"]]]},{"k":4291,"v":[[0,1,["H2063"]],[1,4,["H2708"]],[4,7,["H8451"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H6680"]],[12,13,["H559"]],[13,14,["H1696"]],[14,15,["H413"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,22,["H3947","H413"]],[22,25,["H122"]],[25,26,["H6510"]],[26,28,["H8549"]],[28,29,["H834"]],[29,31,["H369"]],[31,32,["H3971"]],[32,34,["H5921"]],[34,35,["H834"]],[35,36,["H3808"]],[36,37,["H5927"]],[37,38,["H5923"]]]},{"k":4292,"v":[[0,4,["H5414"]],[4,6,["H413"]],[6,7,["H499"]],[7,9,["H3548"]],[9,15,["H3318","(H853)"]],[15,16,["H413","H4480","H2351"]],[16,18,["H4264"]],[18,22,["H7819"]],[22,24,["H6440"]],[24,26,[]]]},{"k":4293,"v":[[0,2,["H499"]],[2,4,["H3548"]],[4,6,["H3947"]],[6,9,["H4480","H1818"]],[9,12,["H676"]],[12,14,["H5137"]],[14,17,["H4480","H1818"]],[17,18,["H413","H5227"]],[18,19,["H6440"]],[19,21,["H168"]],[21,24,["H4150"]],[24,25,["H7651"]],[25,26,["H6471"]]]},{"k":4294,"v":[[0,4,["H8313","(H853)"]],[4,6,["H6510"]],[6,9,["H5869","(H853)"]],[9,11,["H5785"]],[11,14,["H1320"]],[14,17,["H1818"]],[17,18,["H5921"]],[18,20,["H6569"]],[20,23,["H8313"]]]},{"k":4295,"v":[[0,3,["H3548"]],[3,5,["H3947"]],[5,6,["H730"]],[6,7,["H6086"]],[7,9,["H231"]],[9,11,["H8144","H8438"]],[11,13,["H7993"]],[13,15,["H413"]],[15,17,["H8432"]],[17,20,["H8316"]],[20,23,["H6510"]]]},{"k":4296,"v":[[0,3,["H3548"]],[3,5,["H3526"]],[5,7,["H899"]],[7,11,["H7364"]],[11,13,["H1320"]],[13,15,["H4325"]],[15,17,["H310"]],[17,20,["H935"]],[20,21,["H413"]],[21,23,["H4264"]],[23,26,["H3548"]],[26,29,["H2930"]],[29,30,["H5704"]],[30,32,["H6153"]]]},{"k":4297,"v":[[0,4,["H8313"]],[4,7,["H3526"]],[7,9,["H899"]],[9,11,["H4325"]],[11,13,["H7364"]],[13,15,["H1320"]],[15,17,["H4325"]],[17,21,["H2930"]],[21,22,["H5704"]],[22,24,["H6153"]]]},{"k":4298,"v":[[0,3,["H376"]],[3,6,["H2889"]],[6,9,["H622","(H853)"]],[9,11,["H665"]],[11,14,["H6510"]],[14,18,["H5117"]],[18,19,["H4480","H2351"]],[19,21,["H4264"]],[21,24,["H2889"]],[24,25,["H4725"]],[25,29,["H1961"]],[29,30,["H4931"]],[30,33,["H5712"]],[33,36,["H1121"]],[36,38,["H3478"]],[38,41,["H4325"]],[41,43,["H5079"]],[43,44,["H1931"]],[44,49,["H2403"]]]},{"k":4299,"v":[[0,4,["H622","(H853)"]],[4,6,["H665"]],[6,9,["H6510"]],[9,11,["H3526","(H853)"]],[11,13,["H899"]],[13,16,["H2930"]],[16,17,["H5704"]],[17,19,["H6153"]],[19,23,["H1961"]],[23,26,["H1121"]],[26,28,["H3478"]],[28,32,["H1616"]],[32,34,["H1481"]],[34,35,["H8432"]],[35,39,["H2708"]],[39,41,["H5769"]]]},{"k":4300,"v":[[0,3,["H5060"]],[3,5,["H4191"]],[5,6,["H5315"]],[6,8,["H3605"]],[8,9,["H120"]],[9,12,["H2930"]],[12,13,["H7651"]],[13,14,["H3117"]]]},{"k":4301,"v":[[0,1,["H1931"]],[1,4,["H2398"]],[4,9,["H7992"]],[9,10,["H3117"]],[10,14,["H7637"]],[14,15,["H3117"]],[15,19,["H2891"]],[19,21,["H518"]],[21,25,["H2398","H3808"]],[25,27,["H7992"]],[27,28,["H3117"]],[28,31,["H7637"]],[31,32,["H3117"]],[32,35,["H3808"]],[35,37,["H2891"]]]},{"k":4302,"v":[[0,1,["H3605"]],[1,2,["H5060"]],[2,4,["H4191"]],[4,5,["H5315"]],[5,8,["H120"]],[8,9,["H834"]],[9,11,["H4191"]],[11,15,["H2398","H3808"]],[15,16,["H2930","(H853)"]],[16,18,["H4908"]],[18,21,["H3068"]],[21,23,["H1931"]],[23,24,["H5315"]],[24,28,["H3772"]],[28,30,["H4480","H3478"]],[30,31,["H3588"]],[31,33,["H4325"]],[33,35,["H5079"]],[35,37,["H3808"]],[37,38,["H2236"]],[38,39,["H5921"]],[39,43,["H1961"]],[43,44,["H2931"]],[44,46,["H2932"]],[46,48,["H5750"]],[48,50,[]]]},{"k":4303,"v":[[0,1,["H2063"]],[1,4,["H8451"]],[4,5,["H3588"]],[5,7,["H120"]],[7,8,["H4191"]],[8,11,["H168"]],[11,12,["H3605"]],[12,14,["H935"]],[14,15,["H413"]],[15,17,["H168"]],[17,19,["H3605"]],[19,20,["H834"]],[20,24,["H168"]],[24,27,["H2930"]],[27,28,["H7651"]],[28,29,["H3117"]]]},{"k":4304,"v":[[0,2,["H3605"]],[2,3,["H6605"]],[3,4,["H3627"]],[4,5,["H834"]],[5,7,["H369"]],[7,8,["H6781"]],[8,9,["H6616"]],[9,10,["H5921"]],[10,11,["H1931"]],[11,13,["H2931"]]]},{"k":4305,"v":[[0,2,["H3605","H834"]],[2,3,["H5060"]],[3,7,["H2491"]],[7,10,["H2719"]],[10,11,["H5921"]],[11,13,["H6440"]],[13,14,["H7704"]],[14,15,["H176"]],[15,18,["H4191"]],[18,19,["H176"]],[19,21,["H6106"]],[21,24,["H120"]],[24,25,["H176"]],[25,27,["H6913"]],[27,30,["H2930"]],[30,31,["H7651"]],[31,32,["H3117"]]]},{"k":4306,"v":[[0,4,["H2931"]],[4,8,["H3947"]],[8,11,["H4480","H6083"]],[11,15,["H8316"]],[15,19,["H2403"]],[19,21,["H2416"]],[21,22,["H4325"]],[22,25,["H5414"]],[25,26,["H5921"]],[26,27,["H413"]],[27,29,["H3627"]]]},{"k":4307,"v":[[0,3,["H2889"]],[3,4,["H376"]],[4,6,["H3947"]],[6,7,["H231"]],[7,9,["H2881"]],[9,13,["H4325"]],[13,15,["H5137"]],[15,17,["H5921"]],[17,19,["H168"]],[19,21,["H5921"]],[21,22,["H3605"]],[22,24,["H3627"]],[24,26,["H5921"]],[26,28,["H5315"]],[28,29,["H834"]],[29,30,["H1961"]],[30,31,["H8033"]],[31,33,["H5921"]],[33,36,["H5060"]],[36,38,["H6106"]],[38,39,["H176"]],[39,41,["H2491"]],[41,42,["H176"]],[42,44,["H4191"]],[44,45,["H176"]],[45,47,["H6913"]]]},{"k":4308,"v":[[0,3,["H2889"]],[3,6,["H5137"]],[6,7,["H5921"]],[7,9,["H2931"]],[9,12,["H7992"]],[12,13,["H3117"]],[13,17,["H7637"]],[17,18,["H3117"]],[18,22,["H7637"]],[22,23,["H3117"]],[23,26,["H2398"]],[26,29,["H3526"]],[29,31,["H899"]],[31,33,["H7364"]],[33,36,["H4325"]],[36,40,["H2891"]],[40,42,["H6153"]]]},{"k":4309,"v":[[0,3,["H376"]],[3,4,["H834"]],[4,7,["H2930"]],[7,10,["H3808"]],[10,12,["H2398"]],[12,13,["H1931"]],[13,14,["H5315"]],[14,18,["H3772"]],[18,20,["H4480","H8432"]],[20,22,["H6951"]],[22,23,["H3588"]],[23,26,["H2930","(H853)"]],[26,28,["H4720"]],[28,31,["H3068"]],[31,33,["H4325"]],[33,35,["H5079"]],[35,37,["H3808"]],[37,39,["H2236"]],[39,40,["H5921"]],[40,42,["H1931"]],[42,44,["H2931"]]]},{"k":4310,"v":[[0,4,["H1961"]],[4,6,["H5769"]],[6,7,["H2708"]],[7,13,["H5137"]],[13,15,["H4325"]],[15,17,["H5079"]],[17,19,["H3526"]],[19,21,["H899"]],[21,25,["H5060"]],[25,27,["H4325"]],[27,29,["H5079"]],[29,32,["H2930"]],[32,33,["H5704"]],[33,34,["H6153"]]]},{"k":4311,"v":[[0,2,["H3605","H834"]],[2,4,["H2931"]],[4,6,["H5060"]],[6,9,["H2930"]],[9,12,["H5315"]],[12,14,["H5060"]],[14,18,["H2930"]],[18,19,["H5704"]],[19,20,["H6153"]]]},{"k":4312,"v":[[0,2,["H935"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,9,["H3605"]],[9,10,["H5712"]],[10,13,["H4057"]],[13,15,["H6790"]],[15,18,["H7223"]],[18,19,["H2320"]],[19,22,["H5971"]],[22,23,["H3427"]],[23,25,["H6946"]],[25,27,["H4813"]],[27,28,["H4191"]],[28,29,["H8033"]],[29,32,["H6912"]],[32,33,["H8033"]]]},{"k":4313,"v":[[0,3,["H1961"]],[3,4,["H3808"]],[4,5,["H4325"]],[5,8,["H5712"]],[8,13,["H6950"]],[13,14,["H5921"]],[14,15,["H4872"]],[15,17,["H5921"]],[17,18,["H175"]]]},{"k":4314,"v":[[0,3,["H5971"]],[3,4,["H7378"]],[4,5,["H5973"]],[5,6,["H4872"]],[6,8,["H559"]],[8,9,["H559"]],[9,11,["H3863"]],[11,15,["H1478"]],[15,18,["H251"]],[18,19,["H1478"]],[19,20,["H6440"]],[20,22,["H3068"]]]},{"k":4315,"v":[[0,2,["H4100"]],[2,6,["H935","(H853)"]],[6,8,["H6951"]],[8,11,["H3068"]],[11,12,["H413"]],[12,13,["H2088"]],[13,14,["H4057"]],[14,16,["H587"]],[16,19,["H1165"]],[19,21,["H4191"]],[21,22,["H8033"]]]},{"k":4316,"v":[[0,2,["H4100"]],[2,9,["H5927"]],[9,12,["H4480","H4714"]],[12,16,["H935","(H853)"]],[16,17,["H413"]],[17,18,["H2088"]],[18,19,["H7451"]],[19,20,["H4725"]],[20,23,["H3808"]],[23,24,["H4725"]],[24,26,["H2233"]],[26,29,["H8384"]],[29,32,["H1612"]],[32,35,["H7416"]],[35,36,["H369"]],[36,40,["H4325"]],[40,42,["H8354"]]]},{"k":4317,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,5,["H935"]],[5,8,["H4480","H6440"]],[8,11,["H6951"]],[11,12,["H413"]],[12,14,["H6607"]],[14,17,["H168"]],[17,20,["H4150"]],[20,23,["H5307"]],[23,24,["H5921"]],[24,26,["H6440"]],[26,29,["H3519"]],[29,32,["H3068"]],[32,33,["H7200"]],[33,34,["H413"]],[34,35,[]]]},{"k":4318,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4319,"v":[[0,1,["H3947","(H853)"]],[1,3,["H4294"]],[3,9,["H6950","(H853)","H5712"]],[9,10,["H859"]],[10,12,["H175"]],[12,14,["H251"]],[14,16,["H1696"]],[16,18,["H413"]],[18,20,["H5553"]],[20,23,["H5869"]],[23,28,["H5414"]],[28,30,["H4325"]],[30,35,["H3318"]],[35,38,["H4325"]],[38,40,["H4480"]],[40,42,["H5553"]],[42,46,["(H853)"]],[46,48,["H5712"]],[48,51,["H1165"]],[51,52,["H8248"]]]},{"k":4320,"v":[[0,2,["H4872"]],[2,3,["H3947","(H853)"]],[3,5,["H4294"]],[5,7,["H4480","H6440"]],[7,9,["H3068"]],[9,10,["H834"]],[10,12,["H6680"]],[12,13,[]]]},{"k":4321,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,8,["H6950","(H853)","H6951"]],[8,9,["H413","H6440"]],[9,11,["H5553"]],[11,14,["H559"]],[14,17,["H8085"]],[17,18,["H4994"]],[18,20,["H4784"]],[20,23,["H3318"]],[23,25,["H4325"]],[25,27,["H4480"]],[27,28,["H2088"]],[28,29,["H5553"]]]},{"k":4322,"v":[[0,2,["H4872"]],[2,4,["H7311","(H853)"]],[4,6,["H3027"]],[6,10,["H4294"]],[10,12,["H5221","(H853)"]],[12,14,["H5553"]],[14,15,["H6471"]],[15,18,["H4325"]],[18,20,["H3318"]],[20,21,["H7227"]],[21,24,["H5712"]],[24,25,["H8354"]],[25,28,["H1165"]],[28,29,[]]]},{"k":4323,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H175"]],[8,9,["H3282"]],[9,11,["H539"]],[11,13,["H3808"]],[13,15,["H6942"]],[15,19,["H5869"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,25,["H3651"]],[25,28,["H3808"]],[28,29,["H935","(H853)"]],[29,30,["H2088"]],[30,31,["H6951"]],[31,32,["H413"]],[32,34,["H776"]],[34,35,["H834"]],[35,38,["H5414"]],[38,39,[]]]},{"k":4324,"v":[[0,1,["H1992"]],[1,4,["H4325"]],[4,6,["H4809"]],[6,7,["H834"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,12,["H7378"]],[12,13,["H854"]],[13,15,["H3068"]],[15,19,["H6942"]],[19,21,[]]]},{"k":4325,"v":[[0,2,["H4872"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,6,["H4480","H6946"]],[6,7,["H413"]],[7,9,["H4428"]],[9,11,["H123"]],[11,12,["H3541"]],[12,13,["H559"]],[13,15,["H251"]],[15,16,["H3478"]],[16,17,["H859"]],[17,18,["H3045","(H853)"]],[18,19,["H3605"]],[19,21,["H8513"]],[21,22,["H834"]],[22,24,["H4672"]],[24,25,[]]]},{"k":4326,"v":[[0,3,["H1"]],[3,5,["H3381"]],[5,7,["H4714"]],[7,11,["H3427"]],[11,13,["H4714"]],[13,15,["H7227"]],[15,16,["H3117"]],[16,19,["H4714"]],[19,20,["H7489"]],[20,24,["H1"]]]},{"k":4327,"v":[[0,4,["H6817"]],[4,5,["H413"]],[5,7,["H3068"]],[7,9,["H8085"]],[9,11,["H6963"]],[11,13,["H7971"]],[13,15,["H4397"]],[15,20,["H3318"]],[20,23,["H4480","H4714"]],[23,25,["H2009"]],[25,26,["H587"]],[26,29,["H6946"]],[29,31,["H5892"]],[31,34,["H7097"]],[34,37,["H1366"]]]},{"k":4328,"v":[[0,3,["H5674"]],[3,6,["H4994"]],[6,9,["H776"]],[9,12,["H3808"]],[12,14,["H5674"]],[14,16,["H7704"]],[16,20,["H3754"]],[20,21,["H3808"]],[21,24,["H8354"]],[24,27,["H4325"]],[27,30,["H875"]],[30,33,["H1980"]],[33,36,["H4428"]],[36,38,["H1870"]],[38,41,["H3808"]],[41,42,["H5186"]],[42,46,["H3225"]],[46,50,["H8040"]],[50,51,["H5704","H834"]],[51,54,["H5674"]],[54,56,["H1366"]]]},{"k":4329,"v":[[0,2,["H123"]],[2,3,["H559"]],[3,4,["H413"]],[4,8,["H3808"]],[8,9,["H5674"]],[9,12,["H6435"]],[12,15,["H3318"]],[15,16,["H7125"]],[16,20,["H2719"]]]},{"k":4330,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,11,["H5927"]],[11,15,["H4546"]],[15,17,["H518"]],[17,18,["H589"]],[18,21,["H4735"]],[21,22,["H8354"]],[22,25,["H4325"]],[25,29,["H5414","H4377"]],[29,34,["H7535"]],[34,35,["H369"]],[35,38,["H1697"]],[38,41,["H5674"]],[41,44,["H7272"]]]},{"k":4331,"v":[[0,3,["H559"]],[3,6,["H3808"]],[6,8,["H5674"]],[8,10,["H123"]],[10,12,["H3318"]],[12,13,["H7125"]],[13,16,["H3515"]],[16,17,["H5971"]],[17,21,["H2389"]],[21,22,["H3027"]]]},{"k":4332,"v":[[0,2,["H123"]],[2,3,["H3985"]],[3,5,["H5414","(H853)"]],[5,6,["H3478"]],[6,7,["H5674"]],[7,10,["H1366"]],[10,12,["H3478"]],[12,14,["H5186"]],[14,15,["H4480","H5921"]],[15,16,[]]]},{"k":4333,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,8,["H3605"]],[8,9,["H5712"]],[9,10,["H5265"]],[10,12,["H4480","H6946"]],[12,14,["H935"]],[14,16,["H2022"]],[16,17,["H2023"]]]},{"k":4334,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H175"]],[8,10,["H2022"]],[10,11,["H2023"]],[11,12,["H5921"]],[12,14,["H1366"]],[14,17,["H776"]],[17,19,["H123"]],[19,20,["H559"]]]},{"k":4335,"v":[[0,1,["H175"]],[1,4,["H622"]],[4,5,["H413"]],[5,7,["H5971"]],[7,8,["H3588"]],[8,11,["H3808"]],[11,12,["H935"]],[12,13,["H413"]],[13,15,["H776"]],[15,16,["H834"]],[16,19,["H5414"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,25,["H5921","H834"]],[25,28,["H4784","(H853)"]],[28,30,["H6310"]],[30,33,["H4325"]],[33,35,["H4809"]]]},{"k":4336,"v":[[0,1,["H3947","(H853)"]],[1,2,["H175"]],[2,4,["H499"]],[4,6,["H1121"]],[6,10,["H5927","(H853)"]],[10,12,["H2022"]],[12,13,["H2023"]]]},{"k":4337,"v":[[0,2,["H6584","(H853)"]],[2,3,["H175","(H853)"]],[3,6,["H899"]],[6,10,["H3847","(H853)"]],[10,11,["H499"]],[11,13,["H1121"]],[13,15,["H175"]],[15,18,["H622"]],[18,24,["H4191"]],[24,25,["H8033"]]]},{"k":4338,"v":[[0,2,["H4872"]],[2,3,["H6213"]],[3,4,["H834"]],[4,6,["H3068"]],[6,7,["H6680"]],[7,11,["H5927"]],[11,12,["H413"]],[12,13,["H2022"]],[13,14,["H2023"]],[14,17,["H5869"]],[17,19,["H3605"]],[19,21,["H5712"]]]},{"k":4339,"v":[[0,2,["H4872"]],[2,3,["H6584","(H853)"]],[3,4,["H175","(H853)"]],[4,7,["H899"]],[7,11,["H3847","(H853)","(H853)"]],[11,12,["H499"]],[12,14,["H1121"]],[14,16,["H175"]],[16,17,["H4191"]],[17,18,["H8033"]],[18,21,["H7218"]],[21,24,["H2022"]],[24,26,["H4872"]],[26,28,["H499"]],[28,30,["H3381"]],[30,31,["H4480"]],[31,33,["H2022"]]]},{"k":4340,"v":[[0,3,["H3605"]],[3,5,["H5712"]],[5,6,["H7200"]],[6,7,["H3588"]],[7,8,["H175"]],[8,10,["H1478"]],[10,12,["H1058"]],[12,13,["(H853)"]],[13,14,["H175"]],[14,15,["H7970"]],[15,16,["H3117"]],[16,18,["H3605"]],[18,20,["H1004"]],[20,22,["H3478"]]]},{"k":4341,"v":[[0,3,["H4428"]],[3,4,["H6166"]],[4,6,["H3669"]],[6,8,["H3427"]],[8,11,["H5045"]],[11,13,["H8085"]],[13,14,["H3588"]],[14,15,["H3478"]],[15,16,["H935"]],[16,19,["H1870"]],[19,22,["H871"]],[22,25,["H3898"]],[25,27,["H3478"]],[27,29,["H7617"]],[29,31,["H4480"]],[31,33,["H7628"]]]},{"k":4342,"v":[[0,2,["H3478"]],[2,3,["H5087"]],[3,5,["H5088"]],[5,8,["H3068"]],[8,10,["H559"]],[10,11,["H518"]],[11,15,["H5414","H5414","(H853)"]],[15,16,["H2088"]],[16,17,["H5971"]],[17,20,["H3027"]],[20,25,["H2763","(H853)"]],[25,27,["H5892"]]]},{"k":4343,"v":[[0,3,["H3068"]],[3,4,["H8085"]],[4,7,["H6963"]],[7,9,["H3478"]],[9,12,["H5414","(H853)"]],[12,14,["H3669"]],[14,18,["H2763"]],[18,22,["H5892"]],[22,25,["H7121"]],[25,27,["H8034"]],[27,30,["H4725"]],[30,31,["H2767"]]]},{"k":4344,"v":[[0,3,["H5265"]],[3,5,["H2022"]],[5,6,["H4480","H2023"]],[6,9,["H1870"]],[9,12,["H5488"]],[12,13,["H3220"]],[13,15,["H5437","(H853)"]],[15,17,["H776"]],[17,19,["H123"]],[19,22,["H5315"]],[22,25,["H5971"]],[25,28,["H7114"]],[28,32,["H1870"]]]},{"k":4345,"v":[[0,3,["H5971"]],[3,4,["H1696"]],[4,6,["H430"]],[6,9,["H4872"]],[9,10,["H4100"]],[10,15,["H5927"]],[15,18,["H4480","H4714"]],[18,20,["H4191"]],[20,23,["H4057"]],[23,24,["H3588"]],[24,27,["H369"]],[27,28,["H3899"]],[28,29,["H369"]],[29,33,["H4325"]],[33,36,["H5315"]],[36,37,["H6973"]],[37,39,["H7052"]],[39,40,["H3899"]]]},{"k":4346,"v":[[0,3,["H3068"]],[3,4,["H7971","(H853)"]],[4,5,["H8314"]],[5,6,["H5175"]],[6,9,["H5971"]],[9,12,["H5391","(H853)"]],[12,14,["H5971"]],[14,16,["H7227"]],[16,17,["H5971"]],[17,19,["H4480","H3478"]],[19,20,["H4191"]]]},{"k":4347,"v":[[0,3,["H5971"]],[3,4,["H935"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H559"]],[8,11,["H2398"]],[11,12,["H3588"]],[12,15,["H1696"]],[15,18,["H3068"]],[18,22,["H6419"]],[22,23,["H413"]],[23,25,["H3068"]],[25,29,["H5493","(H853)"]],[29,31,["H5175"]],[31,32,["H4480","H5921"]],[32,35,["H4872"]],[35,36,["H6419"]],[36,37,["H1157"]],[37,39,["H5971"]]]},{"k":4348,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H6213"]],[7,11,["H8314"]],[11,13,["H7760"]],[13,15,["H5921"]],[15,17,["H5251"]],[17,23,["H1961"]],[23,26,["H3605"]],[26,29,["H5391"]],[29,33,["H7200"]],[33,36,["H2425"]]]},{"k":4349,"v":[[0,2,["H4872"]],[2,3,["H6213"]],[3,5,["H5175"]],[5,7,["H5178"]],[7,9,["H7760"]],[9,11,["H5921"]],[11,13,["H5251"]],[13,18,["H1961"]],[18,20,["H518"]],[20,22,["H5175"]],[22,24,["H5391","(H853)"]],[24,26,["H376"]],[26,29,["H5027","H413"]],[29,31,["H5175"]],[31,33,["H5178"]],[33,35,["H2425"]]]},{"k":4350,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H5265"]],[7,9,["H2583"]],[9,11,["H88"]]]},{"k":4351,"v":[[0,3,["H5265"]],[3,5,["H4480","H88"]],[5,7,["H2583"]],[7,9,["H5863"]],[9,12,["H4057"]],[12,13,["H834"]],[13,15,["H5921","H6440"]],[15,16,["H4124"]],[16,19,["H4480","H4217","H8121"]]]},{"k":4352,"v":[[0,2,["H4480","H8033"]],[2,4,["H5265"]],[4,6,["H2583"]],[6,9,["H5158"]],[9,11,["H2218"]]]},{"k":4353,"v":[[0,2,["H4480","H8033"]],[2,4,["H5265"]],[4,6,["H2583"]],[6,10,["H4480","H5676"]],[10,12,["H769"]],[12,13,["H834"]],[13,17,["H4057"]],[17,20,["H3318"]],[20,23,["H4480","H1366"]],[23,26,["H567"]],[26,27,["H3588"]],[27,28,["H769"]],[28,31,["H1366"]],[31,33,["H4124"]],[33,34,["H996"]],[34,35,["H4124"]],[35,38,["H567"]]]},{"k":4354,"v":[[0,1,["H5921","H3651"]],[1,4,["H559"]],[4,7,["H5612"]],[7,10,["H4421"]],[10,13,["H3068","(H853)"]],[13,16,["H2052"]],[16,20,["H5492"]],[20,24,["H5158"]],[24,26,["H769"]]]},{"k":4355,"v":[[0,4,["H793"]],[4,7,["H5158"]],[7,8,["H834"]],[8,10,["H5186"]],[10,13,["H7675"]],[13,15,["H6144"]],[15,17,["H8172"]],[17,20,["H1366"]],[20,22,["H4124"]]]},{"k":4356,"v":[[0,3,["H4480","H8033"]],[3,7,["H876"]],[7,8,["H1931"]],[8,11,["H875"]],[11,12,["H834"]],[12,14,["H3068"]],[14,15,["H559"]],[15,17,["H4872"]],[17,21,["H622","(H853)","H5971"]],[21,25,["H5414"]],[25,27,["H4325"]]]},{"k":4357,"v":[[0,1,["H227"]],[1,2,["H3478"]],[2,3,["H7891","(H853)"]],[3,4,["H2063"]],[4,5,["H7892"]],[5,7,["H5927"]],[7,9,["H875"]],[9,10,["H6030"]],[10,13,[]]]},{"k":4358,"v":[[0,2,["H8269"]],[2,3,["H2658"]],[3,5,["H875"]],[5,7,["H5081"]],[7,10,["H5971"]],[10,11,["H3738"]],[11,18,["H2710"]],[18,21,["H4938"]],[21,25,["H4480","H4057"]],[25,29,["H4980"]]]},{"k":4359,"v":[[0,3,["H4480","H4980"]],[3,5,["H5160"]],[5,8,["H4480","H5160"]],[8,10,["H1120"]]]},{"k":4360,"v":[[0,3,["H4480","H1120"]],[3,6,["H1516"]],[6,7,["H834"]],[7,11,["H7704"]],[11,13,["H4124"]],[13,16,["H7218"]],[16,18,["H6449"]],[18,20,["H8259"]],[20,21,["H5921","H6440"]],[21,22,["H3452"]]]},{"k":4361,"v":[[0,2,["H3478"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H5511"]],[6,7,["H4428"]],[7,10,["H567"]],[10,11,["H559"]]]},{"k":4362,"v":[[0,3,["H5674"]],[3,6,["H776"]],[6,9,["H3808"]],[9,10,["H5186"]],[10,13,["H7704"]],[13,17,["H3754"]],[17,20,["H3808"]],[20,21,["H8354"]],[21,24,["H4325"]],[24,27,["H875"]],[27,32,["H1980"]],[32,35,["H4428"]],[35,37,["H1870"]],[37,38,["H5704","H834"]],[38,41,["H5674"]],[41,43,["H1366"]]]},{"k":4363,"v":[[0,2,["H5511"]],[2,4,["H3808"]],[4,5,["H5414","(H853)"]],[5,6,["H3478"]],[6,8,["H5674"]],[8,11,["H1366"]],[11,13,["H5511"]],[13,18,["H622","(H853)","H3605","H5971"]],[18,21,["H3318"]],[21,22,["H7125"]],[22,23,["H3478"]],[23,26,["H4057"]],[26,29,["H935"]],[29,31,["H3096"]],[31,33,["H3898"]],[33,35,["H3478"]]]},{"k":4364,"v":[[0,2,["H3478"]],[2,3,["H5221"]],[3,7,["H6310"]],[7,10,["H2719"]],[10,12,["H3423","(H853)"]],[12,14,["H776"]],[14,16,["H4480","H769"]],[16,17,["H5704"]],[17,18,["H2999"]],[18,20,["H5704"]],[20,22,["H1121"]],[22,24,["H5983"]],[24,25,["H3588"]],[25,27,["H1366"]],[27,30,["H1121"]],[30,32,["H5983"]],[32,34,["H5794"]]]},{"k":4365,"v":[[0,2,["H3478"]],[2,3,["H3947","(H853)"]],[3,4,["H3605"]],[4,5,["H428"]],[5,6,["H5892"]],[6,8,["H3478"]],[8,9,["H3427"]],[9,11,["H3605"]],[11,13,["H5892"]],[13,16,["H567"]],[16,18,["H2809"]],[18,21,["H3605"]],[21,23,["H1323"]],[23,24,[]]]},{"k":4366,"v":[[0,1,["H3588"]],[1,2,["H2809"]],[2,5,["H5892"]],[5,7,["H5511"]],[7,9,["H4428"]],[9,12,["H567"]],[12,13,["H1931"]],[13,15,["H3898"]],[15,18,["H7223"]],[18,19,["H4428"]],[19,21,["H4124"]],[21,23,["H3947","(H853)"]],[23,24,["H3605"]],[24,26,["H776"]],[26,30,["H4480","H3027"]],[30,32,["H5704"]],[32,33,["H769"]]]},{"k":4367,"v":[[0,1,["H5921","H3651"]],[1,6,["H4911"]],[6,7,["H559"]],[7,8,["H935"]],[8,10,["H2809"]],[10,13,["H5892"]],[13,15,["H5511"]],[15,17,["H1129"]],[17,19,["H3559"]]]},{"k":4368,"v":[[0,1,["H3588"]],[1,5,["H784"]],[5,7,["H3318"]],[7,9,["H4480","H2809"]],[9,11,["H3852"]],[11,14,["H4480","H7151"]],[14,16,["H5511"]],[16,19,["H398"]],[19,20,["H6144"]],[20,22,["H4124"]],[22,25,["H1167"]],[25,29,["H1116"]],[29,31,["H769"]]]},{"k":4369,"v":[[0,1,["H188"]],[1,4,["H4124"]],[4,7,["H6"]],[7,9,["H5971"]],[9,11,["H3645"]],[11,14,["H5414"]],[14,16,["H1121"]],[16,18,["H6412"]],[18,21,["H1323"]],[21,23,["H7628"]],[23,25,["H5511"]],[25,26,["H4428"]],[26,29,["H567"]]]},{"k":4370,"v":[[0,3,["H3384"]],[3,6,["H2809"]],[6,8,["H6"]],[8,10,["H5704"]],[10,11,["H1769"]],[11,17,["H8074"]],[17,19,["H5704"]],[19,20,["H5302"]],[20,21,["H834"]],[21,23,["H5704"]],[23,24,["H4311"]]]},{"k":4371,"v":[[0,2,["H3478"]],[2,3,["H3427"]],[3,6,["H776"]],[6,9,["H567"]]]},{"k":4372,"v":[[0,2,["H4872"]],[2,3,["H7971"]],[3,6,["H7270","(H853)"]],[6,7,["H3270"]],[7,10,["H3920"]],[10,12,["H1323"]],[12,16,["H3423","(H853)"]],[16,18,["H567"]],[18,19,["H834"]],[19,21,["H8033"]]]},{"k":4373,"v":[[0,3,["H6437"]],[3,6,["H5927"]],[6,9,["H1870"]],[9,11,["H1316"]],[11,13,["H5747"]],[13,15,["H4428"]],[15,17,["H1316"]],[17,19,["H3318"]],[19,20,["H7125"]],[20,22,["H1931"]],[22,24,["H3605"]],[24,26,["H5971"]],[26,29,["H4421"]],[29,31,["H154"]]]},{"k":4374,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H3372"]],[7,9,["H408"]],[9,10,["H3588"]],[10,13,["H5414"]],[13,17,["H3027"]],[17,19,["H3605"]],[19,21,["H5971"]],[21,24,["H776"]],[24,28,["H6213"]],[28,31,["H834"]],[31,33,["H6213"]],[33,35,["H5511"]],[35,36,["H4428"]],[36,39,["H567"]],[39,40,["H834"]],[40,41,["H3427"]],[41,43,["H2809"]]]},{"k":4375,"v":[[0,3,["H5221"]],[3,7,["H1121"]],[7,9,["H3605"]],[9,11,["H5971"]],[11,12,["H5704"]],[12,15,["H1115"]],[15,16,["H7604"]],[16,18,["H8300"]],[18,21,["H3423","(H853)"]],[21,23,["H776"]]]},{"k":4376,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H5265"]],[7,9,["H2583"]],[9,12,["H6160"]],[12,14,["H4124"]],[14,17,["H4480","H5676"]],[17,18,["H3383"]],[18,20,["H3405"]]]},{"k":4377,"v":[[0,2,["H1111"]],[2,4,["H1121"]],[4,6,["H6834"]],[6,7,["H7200","(H853)"]],[7,8,["H3605"]],[8,9,["H834"]],[9,10,["H3478"]],[10,12,["H6213"]],[12,15,["H567"]]]},{"k":4378,"v":[[0,2,["H4124"]],[2,5,["H1481","H3966"]],[5,6,["H4480","H6440"]],[6,8,["H5971"]],[8,9,["H3588"]],[9,10,["H1931"]],[10,12,["H7227"]],[12,14,["H4124"]],[14,16,["H6973"]],[16,17,["H4480","H6440"]],[17,20,["H1121"]],[20,22,["H3478"]]]},{"k":4379,"v":[[0,2,["H4124"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H2205"]],[6,8,["H4080"]],[8,9,["H6258"]],[9,12,["H6951"]],[12,14,["H3897","(H853)"]],[14,15,["H3605"]],[15,19,["H5439"]],[19,23,["H7794"]],[23,25,["H3897","(H853)"]],[25,27,["H3418"]],[27,30,["H7704"]],[30,32,["H1111"]],[32,34,["H1121"]],[34,36,["H6834"]],[36,38,["H4428"]],[38,41,["H4124"]],[41,43,["H1931"]],[43,44,["H6256"]]]},{"k":4380,"v":[[0,2,["H7971"]],[2,3,["H4397"]],[3,5,["H413"]],[5,6,["H1109"]],[6,8,["H1121"]],[8,10,["H1160"]],[10,12,["H6604"]],[12,13,["H834"]],[13,15,["H5921"]],[15,17,["H5104"]],[17,20,["H776"]],[20,23,["H1121"]],[23,26,["H5971"]],[26,28,["H7121"]],[28,30,["H559"]],[30,31,["H2009"]],[31,35,["H5971"]],[35,37,["H3318"]],[37,39,["H4480","H4714"]],[39,40,["H2009"]],[40,42,["H3680","(H853)"]],[42,44,["H5869"]],[44,47,["H776"]],[47,49,["H1931"]],[49,50,["H3427"]],[50,52,["H4480","H4136"]],[52,53,[]]]},{"k":4381,"v":[[0,1,["H1980"]],[1,2,["H6258"]],[2,6,["H4994"]],[6,7,["H779"]],[7,8,["(H853)"]],[8,9,["H2088"]],[9,10,["H5971"]],[10,11,["H3588"]],[11,12,["H1931"]],[12,16,["H6099","H4480"]],[16,18,["H194"]],[18,21,["H3201"]],[21,25,["H5221"]],[25,33,["H1644"]],[33,34,["H4480"]],[34,36,["H776"]],[36,37,["H3588"]],[37,39,["H3045","(H853)"]],[39,42,["H834"]],[42,44,["H1288"]],[44,46,["H1288"]],[46,49,["H834"]],[49,51,["H779"]],[51,53,["H779"]]]},{"k":4382,"v":[[0,3,["H2205"]],[3,5,["H4124"]],[5,8,["H2205"]],[8,10,["H4080"]],[10,11,["H1980"]],[11,16,["H7081"]],[16,19,["H3027"]],[19,22,["H935"]],[22,23,["H413"]],[23,24,["H1109"]],[24,26,["H1696"]],[26,27,["H413"]],[27,30,["H1697"]],[30,32,["H1111"]]]},{"k":4383,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3885"]],[6,7,["H6311"]],[7,9,["H3915"]],[9,13,["H7725"]],[13,15,["H1697"]],[15,17,["H834"]],[17,19,["H3068"]],[19,21,["H1696"]],[21,22,["H413"]],[22,26,["H8269"]],[26,28,["H4124"]],[28,29,["H3427"]],[29,30,["H5973"]],[30,31,["H1109"]]]},{"k":4384,"v":[[0,2,["H430"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H1109"]],[5,7,["H559"]],[7,8,["H4310"]],[8,9,["H376"]],[9,11,["H428"]],[11,12,["H5973"]],[12,13,[]]]},{"k":4385,"v":[[0,2,["H1109"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H430"]],[5,6,["H1111"]],[6,8,["H1121"]],[8,10,["H6834"]],[10,11,["H4428"]],[11,13,["H4124"]],[13,15,["H7971"]],[15,16,["H413"]],[16,18,[]]]},{"k":4386,"v":[[0,1,["H2009"]],[1,5,["H5971"]],[5,7,["H3318"]],[7,9,["H4480","H4714"]],[9,11,["H3680","(H853)"]],[11,13,["H5869"]],[13,16,["H776"]],[16,17,["H1980"]],[17,18,["H6258"]],[18,19,["H6895"]],[19,22,["H194"]],[22,26,["H3201"]],[26,28,["H3898"]],[28,33,["H1644"]]]},{"k":4387,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1109"]],[5,8,["H3808"]],[8,9,["H1980"]],[9,10,["H5973"]],[10,14,["H3808"]],[14,15,["H779","(H853)"]],[15,17,["H5971"]],[17,18,["H3588"]],[18,19,["H1931"]],[19,21,["H1288"]]]},{"k":4388,"v":[[0,2,["H1109"]],[2,4,["H6965"]],[4,7,["H1242"]],[7,9,["H559"]],[9,10,["H413"]],[10,12,["H8269"]],[12,14,["H1111"]],[14,15,["H1980"]],[15,17,["H413"]],[17,19,["H776"]],[19,20,["H3588"]],[20,22,["H3068"]],[22,23,["H3985"]],[23,27,["H5414"]],[27,29,["H1980"]],[29,30,["H5973"]],[30,31,[]]]},{"k":4389,"v":[[0,3,["H8269"]],[3,5,["H4124"]],[5,7,["H6965"]],[7,10,["H935"]],[10,11,["H413"]],[11,12,["H1111"]],[12,14,["H559"]],[14,15,["H1109"]],[15,16,["H3985"]],[16,18,["H1980"]],[18,19,["H5973"]],[19,20,[]]]},{"k":4390,"v":[[0,2,["H1111"]],[2,3,["H7971"]],[3,4,["H5750"]],[4,5,["H3254"]],[5,6,["H8269"]],[6,7,["H7227"]],[7,10,["H3513"]],[10,12,["H4480","H428"]]]},{"k":4391,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,5,["H1109"]],[5,7,["H559"]],[7,10,["H3541"]],[10,11,["H559"]],[11,12,["H1111"]],[12,14,["H1121"]],[14,16,["H6834"]],[16,18,["H408"]],[18,21,["H4994"]],[21,22,["H4513"]],[22,25,["H4480","H1980"]],[25,26,["H413"]],[26,27,[]]]},{"k":4392,"v":[[0,1,["H3588"]],[1,9,["H3513","H3513","H3966"]],[9,13,["H6213"]],[13,14,["H3605","H834"]],[14,16,["H559"]],[16,17,["H413"]],[17,19,["H1980"]],[19,23,["H4994"]],[23,24,["H6895"]],[24,25,["(H853)"]],[25,26,["H2088"]],[26,27,["H5971"]]]},{"k":4393,"v":[[0,2,["H1109"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H413"]],[6,8,["H5650"]],[8,10,["H1111"]],[10,11,["H518"]],[11,12,["H1111"]],[12,14,["H5414"]],[14,17,["H1004"]],[17,18,["H4393"]],[18,20,["H3701"]],[20,22,["H2091"]],[22,24,["H3201","H3808"]],[24,26,["H5674","(H853)"]],[26,28,["H6310"]],[28,31,["H3068"]],[31,33,["H430"]],[33,35,["H6213"]],[35,36,["H6996"]],[36,37,["H176"]],[37,38,["H1419"]]]},{"k":4394,"v":[[0,1,["H6258"]],[1,5,["H4994"]],[5,6,["H3427"]],[6,7,["H859"]],[7,8,["H1571"]],[8,9,["H2088"]],[9,11,["H3915"]],[11,15,["H3045"]],[15,16,["H4100"]],[16,18,["H3068"]],[18,20,["H1696"]],[20,21,["H5973"]],[21,23,["H3254"]]]},{"k":4395,"v":[[0,2,["H430"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H1109"]],[5,7,["H3915"]],[7,9,["H559"]],[9,12,["H518"]],[12,14,["H376"]],[14,15,["H935"]],[15,17,["H7121"]],[17,20,["H6965"]],[20,22,["H1980"]],[22,23,["H854"]],[23,26,["H389","(H853)"]],[26,28,["H1697"]],[28,29,["H834"]],[29,32,["H1696"]],[32,33,["H413"]],[33,38,["H6213"]]]},{"k":4396,"v":[[0,2,["H1109"]],[2,4,["H6965"]],[4,7,["H1242"]],[7,9,["H2280","(H853)"]],[9,11,["H860"]],[11,13,["H1980"]],[13,14,["H5973"]],[14,16,["H8269"]],[16,18,["H4124"]]]},{"k":4397,"v":[[0,2,["H430"]],[2,3,["H639"]],[3,5,["H2734"]],[5,6,["H3588"]],[6,7,["H1931"]],[7,8,["H1980"]],[8,11,["H4397"]],[11,14,["H3068"]],[14,15,["H3320"]],[15,18,["H1870"]],[18,21,["H7854"]],[21,25,["H1931"]],[25,27,["H7392"]],[27,28,["H5921"]],[28,30,["H860"]],[30,33,["H8147"]],[33,34,["H5288"]],[34,36,["H5973"]],[36,37,[]]]},{"k":4398,"v":[[0,3,["H860"]],[3,4,["H7200","(H853)"]],[4,6,["H4397"]],[6,9,["H3068"]],[9,10,["H5324"]],[10,13,["H1870"]],[13,16,["H2719"]],[16,17,["H8025"]],[17,20,["H3027"]],[20,23,["H860"]],[23,25,["H5186"]],[25,27,["H4480"]],[27,29,["H1870"]],[29,31,["H1980"]],[31,34,["H7704"]],[34,36,["H1109"]],[36,37,["H5221","(H853)"]],[37,39,["H860"]],[39,41,["H5186"]],[41,45,["H1870"]]]},{"k":4399,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H5975"]],[7,10,["H4934"]],[10,13,["H3754"]],[13,15,["H1447"]],[15,19,["H4480","H2088"]],[19,22,["H1447"]],[22,25,["H4480","H2088"]]]},{"k":4400,"v":[[0,4,["H860"]],[4,5,["H7200","(H853)"]],[5,7,["H4397"]],[7,10,["H3068"]],[10,13,["H3905"]],[13,14,["H413"]],[14,16,["H7023"]],[16,18,["H3905","(H853)"]],[18,19,["H1109"]],[19,20,["H7272"]],[20,21,["H413"]],[21,23,["H7023"]],[23,26,["H5221"]],[26,28,["H3254"]]]},{"k":4401,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H5674"]],[7,8,["H3254"]],[8,10,["H5975"]],[10,13,["H6862"]],[13,14,["H4725"]],[14,15,["H834"]],[15,17,["H369"]],[17,18,["H1870"]],[18,20,["H5186"]],[20,25,["H3225"]],[25,29,["H8040"]]]},{"k":4402,"v":[[0,4,["H860"]],[4,5,["H7200","(H853)"]],[5,7,["H4397"]],[7,10,["H3068"]],[10,13,["H7257"]],[13,14,["H8478"]],[14,15,["H1109"]],[15,17,["H1109"]],[17,18,["H639"]],[18,20,["H2734"]],[20,23,["H5221","(H853)"]],[23,25,["H860"]],[25,28,["H4731"]]]},{"k":4403,"v":[[0,3,["H3068"]],[3,4,["H6605","(H853)"]],[4,6,["H6310"]],[6,9,["H860"]],[9,12,["H559"]],[12,14,["H1109"]],[14,15,["H4100"]],[15,18,["H6213"]],[18,21,["H3588"]],[21,24,["H5221"]],[24,26,["H2088"]],[26,27,["H7969"]],[27,28,["H7272"]]]},{"k":4404,"v":[[0,2,["H1109"]],[2,3,["H559"]],[3,6,["H860"]],[6,7,["H3588"]],[7,10,["H5953"]],[10,13,["H3863"]],[13,15,["H3426"]],[15,17,["H2719"]],[17,20,["H3027"]],[20,21,["H3588"]],[21,22,["H6258"]],[22,25,["H2026"]],[25,26,[]]]},{"k":4405,"v":[[0,3,["H860"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H1109"]],[6,8,["H3808"]],[8,9,["H595"]],[9,11,["H860"]],[11,12,["H5921"]],[12,13,["H834"]],[13,16,["H7392"]],[16,18,["H4480","H5750"]],[18,22,["H5704"]],[22,23,["H2088"]],[23,24,["H3117"]],[24,28,["H5532","H5532"]],[28,30,["H6213"]],[30,31,["H3541"]],[31,36,["H559"]],[36,37,["H3808"]]]},{"k":4406,"v":[[0,3,["H3068"]],[3,4,["H1540","(H853)"]],[4,6,["H5869"]],[6,8,["H1109"]],[8,11,["H7200","(H853)"]],[11,13,["H4397"]],[13,16,["H3068"]],[16,17,["H5324"]],[17,20,["H1870"]],[20,23,["H2719"]],[23,24,["H8025"]],[24,27,["H3027"]],[27,33,["H6915"]],[33,36,["H7812"]],[36,39,["H639"]]]},{"k":4407,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H559"]],[7,8,["H413"]],[8,10,["H5921","H4100"]],[10,13,["H5221","(H853)"]],[13,15,["H860"]],[15,16,["H2088"]],[16,17,["H7969"]],[17,18,["H7272"]],[18,19,["H2009"]],[19,20,["H595"]],[20,22,["H3318"]],[22,24,["H7854"]],[24,26,["H3588"]],[26,28,["H1870"]],[28,30,["H3399"]],[30,31,["H5048"]],[31,32,[]]]},{"k":4408,"v":[[0,3,["H860"]],[3,4,["H7200"]],[4,7,["H5186"]],[7,8,["H6440"]],[8,10,["H2088"]],[10,11,["H7969"]],[11,12,["H7272"]],[12,13,["H194"]],[13,16,["H5186"]],[16,17,["H4480","H6440"]],[17,19,["H3588"]],[19,20,["H6258"]],[20,21,["H1571"]],[21,24,["H2026"]],[24,29,["H2421","(H853)"]]]},{"k":4409,"v":[[0,2,["H1109"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4397"]],[6,9,["H3068"]],[9,12,["H2398"]],[12,13,["H3588"]],[13,15,["H3045"]],[15,16,["H3808"]],[16,17,["H3588"]],[17,18,["H859"]],[18,19,["H5324"]],[19,22,["H1870"]],[22,23,["H7125"]],[23,25,["H6258"]],[25,27,["H518"]],[27,29,["H7489","H5869"]],[29,36,["H7725"]]]},{"k":4410,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H1109"]],[9,10,["H1980"]],[10,11,["H5973"]],[11,13,["H376"]],[13,15,["H657","(H853)"]],[15,17,["H1697"]],[17,18,["H834"]],[18,21,["H1696"]],[21,22,["H413"]],[22,27,["H1696"]],[27,29,["H1109"]],[29,30,["H1980"]],[30,31,["H5973"]],[31,33,["H8269"]],[33,35,["H1111"]]]},{"k":4411,"v":[[0,3,["H1111"]],[3,4,["H8085"]],[4,5,["H3588"]],[5,6,["H1109"]],[6,8,["H935"]],[8,11,["H3318"]],[11,13,["H7125"]],[13,15,["H413"]],[15,17,["H5892"]],[17,19,["H4124"]],[19,20,["H834"]],[20,22,["H5921"]],[22,24,["H1366"]],[24,26,["H769"]],[26,27,["H834"]],[27,31,["H7097"]],[31,32,["H1366"]]]},{"k":4412,"v":[[0,2,["H1111"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1109"]],[5,8,["H3808"]],[8,10,["H7971","H7971"]],[10,11,["H413"]],[11,14,["H7121"]],[14,16,["H4100"]],[16,17,["H1980"]],[17,19,["H3808"]],[19,20,["H413"]],[20,25,["H3201","H3808"]],[25,26,["H552"]],[26,31,["H3513"]]]},{"k":4413,"v":[[0,2,["H1109"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1111"]],[5,6,["H2009"]],[6,9,["H935"]],[9,10,["H413"]],[10,14,["H6258"]],[14,18,["H3201","H3201"]],[18,20,["H1696"]],[20,22,["H3972"]],[22,24,["H1697"]],[24,25,["H834"]],[25,26,["H430"]],[26,27,["H7760"]],[27,30,["H6310"]],[30,34,["H1696"]]]},{"k":4414,"v":[[0,2,["H1109"]],[2,3,["H1980"]],[3,4,["H5973"]],[4,5,["H1111"]],[5,8,["H935"]],[8,10,["H7155"]]]},{"k":4415,"v":[[0,2,["H1111"]],[2,3,["H2076"]],[3,4,["H1241"]],[4,6,["H6629"]],[6,8,["H7971"]],[8,10,["H1109"]],[10,14,["H8269"]],[14,15,["H834"]],[15,17,["H854"]],[17,18,[]]]},{"k":4416,"v":[[0,5,["H1961"]],[5,8,["H1242"]],[8,10,["H1111"]],[10,11,["H3947","(H853)"]],[11,12,["H1109"]],[12,16,["H5927"]],[16,20,["H1116"]],[20,22,["H1168"]],[22,24,["H4480","H8033"]],[24,27,["H7200"]],[27,29,["H7097"]],[29,33,["H5971"]]]},{"k":4417,"v":[[0,2,["H1109"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1111"]],[5,6,["H1129"]],[6,8,["H2088"]],[8,9,["H7651"]],[9,10,["H4196"]],[10,12,["H3559"]],[12,14,["H2088"]],[14,15,["H7651"]],[15,16,["H6499"]],[16,18,["H7651"]],[18,19,["H352"]]]},{"k":4418,"v":[[0,2,["H1111"]],[2,3,["H6213"]],[3,4,["H834"]],[4,5,["H1109"]],[5,7,["H1696"]],[7,9,["H1111"]],[9,11,["H1109"]],[11,12,["H5927"]],[12,15,["H4196"]],[15,17,["H6499"]],[17,20,["H352"]]]},{"k":4419,"v":[[0,2,["H1109"]],[2,3,["H559"]],[3,5,["H1111"]],[5,6,["H3320"]],[6,7,["H5921"]],[7,10,["H5930"]],[10,14,["H1980"]],[14,15,["H194"]],[15,17,["H3068"]],[17,19,["H7136"]],[19,21,["H7125"]],[21,24,["H1697","H4100"]],[24,26,["H7200"]],[26,30,["H5046"]],[30,34,["H1980"]],[34,38,["H8205"]]]},{"k":4420,"v":[[0,2,["H430"]],[2,3,["H7136","H413"]],[3,4,["H1109"]],[4,7,["H559"]],[7,8,["H413"]],[8,12,["H6186","(H853)"]],[12,13,["H7651"]],[13,14,["H4196"]],[14,18,["H5927"]],[18,21,["H4196"]],[21,23,["H6499"]],[23,26,["H352"]]]},{"k":4421,"v":[[0,3,["H3068"]],[3,4,["H7760"]],[4,6,["H1697"]],[6,8,["H1109"]],[8,9,["H6310"]],[9,11,["H559"]],[11,12,["H7725"]],[12,13,["H413"]],[13,14,["H1111"]],[14,16,["H3541"]],[16,19,["H1696"]]]},{"k":4422,"v":[[0,3,["H7725"]],[3,4,["H413"]],[4,7,["H2009"]],[7,9,["H5324"]],[9,10,["H5921"]],[10,13,["H5930"]],[13,14,["H1931"]],[14,16,["H3605"]],[16,18,["H8269"]],[18,20,["H4124"]]]},{"k":4423,"v":[[0,4,["H5375"]],[4,6,["H4912"]],[6,8,["H559"]],[8,9,["H1111"]],[9,11,["H4428"]],[11,13,["H4124"]],[13,15,["H5148"]],[15,17,["H4480"]],[17,18,["H758"]],[18,22,["H4480","H2042"]],[22,25,["H6924"]],[25,27,["H1980"]],[27,28,["H779"]],[28,30,["H3290"]],[30,32,["H1980"]],[32,33,["H2194"]],[33,34,["H3478"]]]},{"k":4424,"v":[[0,1,["H4100"]],[1,4,["H6895"]],[4,6,["H410"]],[6,8,["H3808"]],[8,9,["H6895"]],[9,11,["H4100"]],[11,14,["H2194"]],[14,17,["H3068"]],[17,19,["H3808"]],[19,20,["H2194"]]]},{"k":4425,"v":[[0,1,["H3588"]],[1,4,["H4480","H7218"]],[4,7,["H6697"]],[7,9,["H7200"]],[9,14,["H4480","H1389"]],[14,16,["H7789"]],[16,18,["H2005"]],[18,20,["H5971"]],[20,22,["H7931"]],[22,23,["H910"]],[23,26,["H3808"]],[26,28,["H2803"]],[28,31,["H1471"]]]},{"k":4426,"v":[[0,1,["H4310"]],[1,3,["H4487"]],[3,5,["H6083"]],[5,7,["H3290"]],[7,10,["H4557"]],[10,11,["(H853)"]],[11,13,["H7255"]],[13,16,["H3478"]],[16,18,["H5315"]],[18,19,["H4191"]],[19,21,["H4194"]],[21,24,["H3477"]],[24,29,["H319"]],[29,30,["H1961"]],[30,32,["H3644"]]]},{"k":4427,"v":[[0,2,["H1111"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1109"]],[5,6,["H4100"]],[6,9,["H6213"]],[9,13,["H3947"]],[13,16,["H6895"]],[16,18,["H341"]],[18,20,["H2009"]],[20,25,["H1288","H1288"]]]},{"k":4428,"v":[[0,3,["H6030"]],[3,5,["H559"]],[5,8,["H3808"]],[8,10,["H8104"]],[10,12,["H1696"]],[12,13,["(H853)"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H7760"]],[18,21,["H6310"]]]},{"k":4429,"v":[[0,2,["H1111"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1980"]],[6,9,["H4994"]],[9,10,["H854"]],[10,12,["H413"]],[12,13,["H312"]],[13,14,["H4725"]],[14,16,["H834","H4480","H8033"]],[16,19,["H7200"]],[19,23,["H7200"]],[23,24,["H657"]],[24,27,["H7097"]],[27,32,["H3808"]],[32,33,["H7200"]],[33,35,["H3605"]],[35,37,["H6895"]],[37,41,["H4480","H8033"]]]},{"k":4430,"v":[[0,3,["H3947"]],[3,7,["H7704"]],[7,9,["H6839"]],[9,10,["H413"]],[10,12,["H7218"]],[12,14,["H6449"]],[14,16,["H1129"]],[16,17,["H7651"]],[17,18,["H4196"]],[18,20,["H5927"]],[20,22,["H6499"]],[22,25,["H352"]],[25,28,["H4196"]]]},{"k":4431,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H1111"]],[5,6,["H3320"]],[6,7,["H3541"]],[7,8,["H5921"]],[8,11,["H5930"]],[11,13,["H595"]],[13,14,["H7136"]],[14,17,["H3541"]]]},{"k":4432,"v":[[0,3,["H3068"]],[3,4,["H7136","H413"]],[4,5,["H1109"]],[5,7,["H7760"]],[7,9,["H1697"]],[9,12,["H6310"]],[12,14,["H559"]],[14,16,["H7725"]],[16,17,["H413"]],[17,18,["H1111"]],[18,20,["H1696"]],[20,21,["H3541"]]]},{"k":4433,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H2009"]],[7,9,["H5324"]],[9,10,["H5921"]],[10,13,["H5930"]],[13,16,["H8269"]],[16,18,["H4124"]],[18,19,["H854"]],[19,22,["H1111"]],[22,23,["H559"]],[23,26,["H4100"]],[26,29,["H3068"]],[29,30,["H1696"]]]},{"k":4434,"v":[[0,4,["H5375"]],[4,6,["H4912"]],[6,8,["H559"]],[8,10,["H6965"]],[10,11,["H1111"]],[11,13,["H8085"]],[13,14,["H238"]],[14,15,["H5704"]],[15,18,["H1121"]],[18,20,["H6834"]]]},{"k":4435,"v":[[0,1,["H410"]],[1,3,["H3808"]],[3,5,["H376"]],[5,9,["H3576"]],[9,12,["H1121"]],[12,14,["H120"]],[14,18,["H5162"]],[18,20,["H1931"]],[20,21,["H559"]],[21,25,["H3808"]],[25,26,["H6213"]],[26,31,["H1696"]],[31,35,["H3808"]],[35,38,["H6965"]]]},{"k":4436,"v":[[0,1,["H2009"]],[1,4,["H3947"]],[4,7,["H1288"]],[7,11,["H1288"]],[11,14,["H3808"]],[14,15,["H7725"]],[15,16,[]]]},{"k":4437,"v":[[0,3,["H3808"]],[3,4,["H5027"]],[4,5,["H205"]],[5,7,["H3290"]],[7,8,["H3808"]],[8,11,["H7200"]],[11,12,["H5999"]],[12,14,["H3478"]],[14,16,["H3068"]],[16,18,["H430"]],[18,20,["H5973"]],[20,24,["H8643"]],[24,27,["H4428"]],[27,30,[]]]},{"k":4438,"v":[[0,1,["H410"]],[1,4,["H3318"]],[4,6,["H4480","H4714"]],[6,13,["H8443"]],[13,16,["H7214"]]]},{"k":4439,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H5173"]],[5,7,["H3290"]],[7,8,["H3808"]],[8,12,["H7081"]],[12,14,["H3478"]],[14,18,["H6256"]],[18,22,["H559"]],[22,24,["H3290"]],[24,27,["H3478"]],[27,28,["H4100"]],[28,30,["H410"]],[30,31,["H6466"]]]},{"k":4440,"v":[[0,1,["H2005"]],[1,3,["H5971"]],[3,6,["H6965"]],[6,10,["H3833"]],[10,14,["H5375"]],[14,18,["H738"]],[18,21,["H3808"]],[21,23,["H7901"]],[23,24,["H5704"]],[24,26,["H398"]],[26,29,["H2964"]],[29,31,["H8354"]],[31,33,["H1818"]],[33,36,["H2491"]]]},{"k":4441,"v":[[0,2,["H1111"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1109"]],[5,6,["H1571","H3808"]],[6,10,["H6895","H6895"]],[10,11,["H1571","H3808"]],[11,15,["H1288","H1288"]]]},{"k":4442,"v":[[0,2,["H1109"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H413"]],[6,7,["H1111"]],[7,8,["H1696","H413"]],[8,9,["H3808"]],[9,12,["H559"]],[12,13,["H3605"]],[13,14,["H834"]],[14,16,["H3068"]],[16,17,["H1696"]],[17,21,["H6213"]]]},{"k":4443,"v":[[0,2,["H1111"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1109"]],[5,6,["H1980"]],[6,9,["H4994"]],[9,12,["H3947"]],[12,14,["H413"]],[14,15,["H312"]],[15,16,["H4725"]],[16,17,["H194"]],[17,20,["H3474","H5869"]],[20,21,["H430"]],[21,25,["H6895"]],[25,29,["H4480","H8033"]]]},{"k":4444,"v":[[0,2,["H1111"]],[2,3,["H3947","(H853)"]],[3,4,["H1109"]],[4,7,["H7218"]],[7,9,["H6465"]],[9,11,["H8259"]],[11,12,["H5921","H6440"]],[12,13,["H3452"]]]},{"k":4445,"v":[[0,2,["H1109"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1111"]],[5,6,["H1129"]],[6,8,["H2088"]],[8,9,["H7651"]],[9,10,["H4196"]],[10,12,["H3559"]],[12,14,["H2088"]],[14,15,["H7651"]],[15,16,["H6499"]],[16,18,["H7651"]],[18,19,["H352"]]]},{"k":4446,"v":[[0,2,["H1111"]],[2,3,["H6213"]],[3,4,["H834"]],[4,5,["H1109"]],[5,7,["H559"]],[7,9,["H5927"]],[9,11,["H6499"]],[11,14,["H352"]],[14,17,["H4196"]]]},{"k":4447,"v":[[0,3,["H1109"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,7,["H2895","H5869"]],[7,9,["H3068"]],[9,11,["H1288","(H853)"]],[11,12,["H3478"]],[12,14,["H1980"]],[14,15,["H3808"]],[15,19,["H6471","H6471"]],[19,21,["H7125"]],[21,23,["H5173"]],[23,26,["H7896"]],[26,28,["H6440"]],[28,29,["H413"]],[29,31,["H4057"]]]},{"k":4448,"v":[[0,2,["H1109"]],[2,4,["H5375","(H853)"]],[4,6,["H5869"]],[6,9,["H7200","(H853)"]],[9,10,["H3478"]],[10,11,["H7931"]],[11,18,["H7626"]],[18,21,["H7307"]],[21,23,["H430"]],[23,24,["H1961"]],[24,25,["H5921"]],[25,26,[]]]},{"k":4449,"v":[[0,4,["H5375"]],[4,6,["H4912"]],[6,8,["H559"]],[8,9,["H1109"]],[9,11,["H1121"]],[11,13,["H1160"]],[13,15,["H5002"]],[15,18,["H1397"]],[18,20,["H5869"]],[20,22,["H8365"]],[22,24,["H5002"]]]},{"k":4450,"v":[[0,3,["H5002"]],[3,5,["H8085"]],[5,7,["H561"]],[7,9,["H410"]],[9,10,["H834"]],[10,11,["H2372"]],[11,13,["H4236"]],[13,16,["H7706"]],[16,17,["H5307"]],[17,24,["H5869"]],[24,25,["H1540"]]]},{"k":4451,"v":[[0,1,["H4100"]],[1,2,["H2895"]],[2,5,["H168"]],[5,7,["H3290"]],[7,10,["H4908"]],[10,12,["H3478"]]]},{"k":4452,"v":[[0,3,["H5158"]],[3,7,["H5186"]],[7,9,["H1593"]],[9,10,["H5921"]],[10,12,["H5104"]],[12,19,["H174"]],[19,22,["H3068"]],[22,24,["H5193"]],[24,28,["H730"]],[28,29,["H5921"]],[29,31,["H4325"]]]},{"k":4453,"v":[[0,3,["H5140"]],[3,5,["H4325"]],[5,9,["H4480","H1805"]],[9,12,["H2233"]],[12,16,["H7227"]],[16,17,["H4325"]],[17,20,["H4428"]],[20,23,["H7311"]],[23,25,["H4480","H90"]],[25,28,["H4438"]],[28,31,["H5375"]]]},{"k":4454,"v":[[0,1,["H410"]],[1,4,["H3318"]],[4,7,["H4480","H4714"]],[7,14,["H8443"]],[14,17,["H7214"]],[17,21,["H398"]],[21,23,["H1471"]],[23,25,["H6862"]],[25,28,["H1633"]],[28,30,["H6106"]],[30,34,["H4272"]],[34,37,["H2671"]]]},{"k":4455,"v":[[0,2,["H3766"]],[2,5,["H7901"]],[5,8,["H738"]],[8,13,["H3833"]],[13,14,["H4310"]],[14,18,["H6965"]],[18,19,["H1288"]],[19,23,["H1288"]],[23,26,["H779"]],[26,30,["H779"]],[30,31,[]]]},{"k":4456,"v":[[0,2,["H1111"]],[2,3,["H639"]],[3,5,["H2734"]],[5,6,["H413"]],[6,7,["H1109"]],[7,13,["H5606","(H853)","H3709"]],[13,15,["H1111"]],[15,16,["H559"]],[16,17,["H413"]],[17,18,["H1109"]],[18,20,["H7121"]],[20,23,["H6895"]],[23,25,["H341"]],[25,27,["H2009"]],[27,31,["H1288","H1288"]],[31,33,["H2088"]],[33,34,["H7969"]],[34,35,["H6471"]]]},{"k":4457,"v":[[0,2,["H6258"]],[2,3,["H1272"]],[3,5,["H413"]],[5,7,["H4725"]],[7,9,["H559"]],[9,15,["H3513","H3513"]],[15,17,["H2009"]],[17,19,["H3068"]],[19,23,["H4513"]],[23,25,["H4480","H3519"]]]},{"k":4458,"v":[[0,2,["H1109"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1111"]],[5,6,["H1696"]],[6,8,["H3808"]],[8,9,["H1571"]],[9,10,["H413"]],[10,12,["H4397"]],[12,13,["H834"]],[13,15,["H7971"]],[15,16,["H413"]],[16,18,["H559"]]]},{"k":4459,"v":[[0,1,["H518"]],[1,2,["H1111"]],[2,4,["H5414"]],[4,7,["H1004"]],[7,8,["H4393"]],[8,10,["H3701"]],[10,12,["H2091"]],[12,14,["H3808","H3201"]],[14,16,["H5674","(H853)"]],[16,18,["H6310"]],[18,21,["H3068"]],[21,23,["H6213"]],[23,25,["H2896"]],[25,26,["H176"]],[26,27,["H7451"]],[27,31,["H4480","H3820"]],[31,33,["H834"]],[33,35,["H3068"]],[35,36,["H1696"]],[36,40,["H1696"]]]},{"k":4460,"v":[[0,2,["H6258"]],[2,3,["H2009"]],[3,5,["H1980"]],[5,8,["H5971"]],[8,9,["H1980"]],[9,14,["H3289"]],[14,16,["H834"]],[16,17,["H2088"]],[17,18,["H5971"]],[18,20,["H6213"]],[20,23,["H5971"]],[23,26,["H319"]],[26,27,["H3117"]]]},{"k":4461,"v":[[0,4,["H5375"]],[4,6,["H4912"]],[6,8,["H559"]],[8,9,["H1109"]],[9,11,["H1121"]],[11,13,["H1160"]],[13,15,["H5002"]],[15,18,["H1397"]],[18,20,["H5869"]],[20,22,["H8365"]],[22,24,["H5002"]]]},{"k":4462,"v":[[0,3,["H5002"]],[3,5,["H8085"]],[5,7,["H561"]],[7,9,["H410"]],[9,11,["H3045"]],[11,13,["H1847"]],[13,17,["H5945"]],[17,19,["H2372"]],[19,21,["H4236"]],[21,24,["H7706"]],[24,25,["H5307"]],[25,32,["H5869"]],[32,33,["H1540"]]]},{"k":4463,"v":[[0,3,["H7200"]],[3,6,["H3808"]],[6,7,["H6258"]],[7,10,["H7789"]],[10,13,["H3808"]],[13,14,["H7138"]],[14,17,["H1869"]],[17,19,["H3556"]],[19,22,["H4480","H3290"]],[22,25,["H7626"]],[25,27,["H6965"]],[27,30,["H4480","H3478"]],[30,33,["H4272"]],[33,35,["H6285"]],[35,37,["H4124"]],[37,39,["H4272"]],[39,40,["H3605"]],[40,42,["H1121"]],[42,44,["H8352"]]]},{"k":4464,"v":[[0,2,["H123"]],[2,4,["H1961"]],[4,6,["H3424"]],[6,7,["H8165"]],[7,10,["H1961"]],[10,12,["H3424"]],[12,15,["H341"]],[15,17,["H3478"]],[17,19,["H6213"]],[19,20,["H2428"]]]},{"k":4465,"v":[[0,3,["H4480","H3290"]],[3,10,["H7287"]],[10,13,["H6"]],[13,16,["H8300"]],[16,19,["H4480","H5892"]]]},{"k":4466,"v":[[0,5,["H7200","(H853)"]],[5,6,["H6002"]],[6,9,["H5375"]],[9,11,["H4912"]],[11,13,["H559"]],[13,14,["H6002"]],[14,17,["H7225"]],[17,20,["H1471"]],[20,24,["H319"]],[24,29,["H8"]],[29,31,["H5703"]]]},{"k":4467,"v":[[0,4,["H7200","(H853)"]],[4,6,["H7017"]],[6,9,["H5375"]],[9,11,["H4912"]],[11,13,["H559"]],[13,14,["H386"]],[14,17,["H4186"]],[17,20,["H7760"]],[20,22,["H7064"]],[22,25,["H5553"]]]},{"k":4468,"v":[[0,1,["H3588","H518"]],[1,3,["H7014"]],[3,5,["H1961"]],[5,6,["H1197"]],[6,7,["H5704","H4100"]],[7,8,["H804"]],[8,13,["H7617"]]]},{"k":4469,"v":[[0,4,["H5375"]],[4,6,["H4912"]],[6,8,["H559"]],[8,9,["H188"]],[9,10,["H4310"]],[10,12,["H2421"]],[12,14,["H410"]],[14,15,["H4480","H7760"]],[15,16,[]]]},{"k":4470,"v":[[0,2,["H6716"]],[2,7,["H4480","H3027"]],[7,9,["H3794"]],[9,12,["H6031"]],[12,13,["H804"]],[13,16,["H6031"]],[16,17,["H5677"]],[17,19,["H1931"]],[19,20,["H1571"]],[20,22,["H8"]],[22,24,["H5703"]]]},{"k":4471,"v":[[0,2,["H1109"]],[2,4,["H6965"]],[4,6,["H1980"]],[6,8,["H7725"]],[8,11,["H4725"]],[11,13,["H1111"]],[13,14,["H1571"]],[14,15,["H1980"]],[15,17,["H1870"]]]},{"k":4472,"v":[[0,2,["H3478"]],[2,3,["H3427"]],[3,5,["H7851"]],[5,8,["H5971"]],[8,9,["H2490"]],[9,12,["H2181"]],[12,13,["H413"]],[13,15,["H1323"]],[15,17,["H4124"]]]},{"k":4473,"v":[[0,3,["H7121"]],[3,5,["H5971"]],[5,8,["H2077"]],[8,11,["H430"]],[11,14,["H5971"]],[14,16,["H398"]],[16,19,["H7812"]],[19,22,["H430"]]]},{"k":4474,"v":[[0,2,["H3478"]],[2,4,["H6775"]],[4,6,["H1187"]],[6,9,["H639"]],[9,12,["H3068"]],[12,14,["H2734"]],[14,16,["H3478"]]]},{"k":4475,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H3947","(H853)"]],[7,8,["H3605"]],[8,10,["H7218"]],[10,13,["H5971"]],[13,17,["H3363","(H853)"]],[17,20,["H3068"]],[20,21,["H5048"]],[21,23,["H8121"]],[23,26,["H2740"]],[26,27,["H639"]],[27,30,["H3068"]],[30,34,["H7725"]],[34,36,["H4480","H3478"]]]},{"k":4476,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H8199"]],[6,8,["H3478"]],[8,9,["H2026"]],[9,12,["H376"]],[12,14,["H582"]],[14,17,["H6775"]],[17,19,["H1187"]]]},{"k":4477,"v":[[0,2,["H2009"]],[2,3,["H376"]],[3,6,["H4480","H1121"]],[6,8,["H3478"]],[8,9,["H935"]],[9,11,["H7126"]],[11,12,["H413"]],[12,14,["H251","(H853)"]],[14,17,["H4084"]],[17,20,["H5869"]],[20,22,["H4872"]],[22,26,["H5869"]],[26,28,["H3605"]],[28,30,["H5712"]],[30,33,["H1121"]],[33,35,["H3478"]],[35,36,["H1992"]],[36,38,["H1058"]],[38,41,["H6607"]],[41,44,["H168"]],[44,47,["H4150"]]]},{"k":4478,"v":[[0,3,["H6372"]],[3,5,["H1121"]],[5,7,["H499"]],[7,9,["H1121"]],[9,11,["H175"]],[11,13,["H3548"]],[13,14,["H7200"]],[14,18,["H6965"]],[18,20,["H4480","H8432"]],[20,22,["H5712"]],[22,24,["H3947"]],[24,26,["H7420"]],[26,29,["H3027"]]]},{"k":4479,"v":[[0,3,["H935"]],[3,4,["H310"]],[4,6,["H376"]],[6,8,["H3478"]],[8,9,["H413"]],[9,11,["H6898"]],[11,13,["H1856","(H853)"]],[13,14,["H8147"]],[14,17,["(H853)"]],[17,19,["H376"]],[19,21,["H3478"]],[21,24,["H802"]],[24,25,["H413"]],[25,27,["H6897"]],[27,30,["H4046"]],[30,32,["H6113"]],[32,33,["H4480","H5921"]],[33,35,["H1121"]],[35,37,["H3478"]]]},{"k":4480,"v":[[0,4,["H4191"]],[4,7,["H4046"]],[7,8,["H1961"]],[8,9,["H6242"]],[9,11,["H702"]],[11,12,["H505"]]]},{"k":4481,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4482,"v":[[0,1,["H6372"]],[1,3,["H1121"]],[3,5,["H499"]],[5,7,["H1121"]],[7,9,["H175"]],[9,11,["H3548"]],[11,16,["H7725","(H853)","H2534"]],[16,17,["H4480","H5921"]],[17,19,["H1121"]],[19,21,["H3478"]],[21,25,["H7065"]],[25,28,["H854","H7068"]],[28,29,["H8432"]],[29,33,["H3615"]],[33,34,["H3808","(H853)"]],[34,36,["H1121"]],[36,38,["H3478"]],[38,41,["H7068"]]]},{"k":4483,"v":[[0,1,["H3651"]],[1,2,["H559"]],[2,3,["H2009"]],[3,5,["H5414"]],[5,7,["(H853)"]],[7,9,["H1285"]],[9,11,["H7965"]]]},{"k":4484,"v":[[0,4,["H1961"]],[4,8,["H2233"]],[8,9,["H310"]],[9,13,["H1285"]],[13,16,["H5769"]],[16,17,["H3550"]],[17,18,["H8478","H834"]],[18,21,["H7065"]],[21,24,["H430"]],[24,28,["H3722"]],[28,29,["H5921"]],[29,31,["H1121"]],[31,33,["H3478"]]]},{"k":4485,"v":[[0,3,["H8034"]],[3,6,["H376","H3478"]],[6,9,["H5221"]],[9,11,["H834"]],[11,13,["H5221"]],[13,14,["H854"]],[14,17,["H4084"]],[17,19,["H2174"]],[19,21,["H1121"]],[21,23,["H5543"]],[23,25,["H5387"]],[25,28,["H1"]],[28,29,["H1004"]],[29,32,["H8099"]]]},{"k":4486,"v":[[0,3,["H8034"]],[3,6,["H4084"]],[6,7,["H802"]],[7,10,["H5221"]],[10,12,["H3579"]],[12,14,["H1323"]],[14,16,["H6698"]],[16,17,["H1931"]],[17,19,["H7218"]],[19,22,["H523"]],[22,26,["H1"]],[26,27,["H1004"]],[27,29,["H4080"]]]},{"k":4487,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4488,"v":[[0,1,["H6887","(H853)"]],[1,3,["H4084"]],[3,5,["H5221"]],[5,6,[]]]},{"k":4489,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,3,["H6887"]],[3,7,["H5231"]],[7,8,["H834"]],[8,11,["H5230"]],[11,13,["H5921"]],[13,15,["H1697"]],[15,17,["H6465"]],[17,19,["H5921"]],[19,21,["H1697"]],[21,23,["H3579"]],[23,25,["H1323"]],[25,28,["H5387"]],[28,30,["H4080"]],[30,32,["H269"]],[32,35,["H5221"]],[35,38,["H3117"]],[38,41,["H4046"]],[41,44,["H5921","H1697","H6465"]]]},{"k":4490,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,8,["H4046"]],[8,11,["H3068"]],[11,12,["H559"]],[12,13,["H413"]],[13,14,["H4872"]],[14,16,["H413"]],[16,17,["H499"]],[17,19,["H1121"]],[19,21,["H175"]],[21,23,["H3548"]],[23,24,["H559"]]]},{"k":4491,"v":[[0,1,["H5375","(H853)"]],[1,3,["H7218"]],[3,5,["H3605"]],[5,7,["H5712"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,14,["H6242"]],[14,15,["H8141"]],[15,16,["H4480","H1121"]],[16,18,["H4605"]],[18,21,["H1"]],[21,22,["H1004"]],[22,23,["H3605"]],[23,28,["H3318"]],[28,30,["H6635"]],[30,32,["H3478"]]]},{"k":4492,"v":[[0,2,["H4872"]],[2,4,["H499"]],[4,6,["H3548"]],[6,7,["H1696"]],[7,8,["H854"]],[8,12,["H6160"]],[12,14,["H4124"]],[14,15,["H5921"]],[15,16,["H3383"]],[16,18,["H3405"]],[18,19,["H559"]]]},{"k":4493,"v":[[0,8,["H6242"]],[8,9,["H8141"]],[9,10,["H4480","H1121"]],[10,12,["H4605"]],[12,13,["H834"]],[13,15,["H3068"]],[15,16,["H6680","(H853)"]],[16,17,["H4872"]],[17,20,["H1121"]],[20,22,["H3478"]],[22,25,["H3318"]],[25,29,["H4480","H776"]],[29,31,["H4714"]]]},{"k":4494,"v":[[0,1,["H7205"]],[1,4,["H1060"]],[4,6,["H3478"]],[6,8,["H1121"]],[8,10,["H7205"]],[10,11,["H2585"]],[11,16,["H4940"]],[16,19,["H2599"]],[19,21,["H6396"]],[21,23,["H4940"]],[23,26,["H6384"]]]},{"k":4495,"v":[[0,2,["H2696"]],[2,4,["H4940"]],[4,7,["H2697"]],[7,9,["H3756"]],[9,11,["H4940"]],[11,14,["H3757"]]]},{"k":4496,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,7,["H7206"]],[7,12,["H6485"]],[12,15,["H1961"]],[15,16,["H705"]],[16,18,["H7969"]],[18,19,["H505"]],[19,21,["H7651"]],[21,22,["H3967"]],[22,24,["H7970"]]]},{"k":4497,"v":[[0,3,["H1121"]],[3,5,["H6396"]],[5,6,["H446"]]]},{"k":4498,"v":[[0,3,["H1121"]],[3,5,["H446"]],[5,6,["H5241"]],[6,8,["H1885"]],[8,10,["H48"]],[10,11,["H1931"]],[11,14,["H1885"]],[14,16,["H48"]],[16,19,["H7148"]],[19,22,["H5712"]],[22,23,["H834"]],[23,24,["H5327"]],[24,25,["H5921"]],[25,26,["H4872"]],[26,28,["H5921"]],[28,29,["H175"]],[29,32,["H5712"]],[32,34,["H7141"]],[34,37,["H5327"]],[37,38,["H5921"]],[38,40,["H3068"]]]},{"k":4499,"v":[[0,3,["H776"]],[3,4,["H6605","(H853)"]],[4,6,["H6310"]],[6,11,["H1104","(H853)"]],[11,12,["H854"]],[12,13,["H7141"]],[13,16,["H5712"]],[16,17,["H4191"]],[17,21,["H784"]],[21,22,["H398"]],[22,24,["H3967"]],[24,25,["(H853)"]],[25,26,["H2572"]],[26,27,["H376"]],[27,30,["H1961"]],[30,32,["H5251"]]]},{"k":4500,"v":[[0,3,["H1121"]],[3,5,["H7141"]],[5,6,["H4191"]],[6,7,["H3808"]]]},{"k":4501,"v":[[0,2,["H1121"]],[2,4,["H8095"]],[4,7,["H4940"]],[7,9,["H5241"]],[9,11,["H4940"]],[11,14,["H5242"]],[14,16,["H3226"]],[16,18,["H4940"]],[18,21,["H3228"]],[21,23,["H3199"]],[23,25,["H4940"]],[25,28,["H3200"]]]},{"k":4502,"v":[[0,2,["H2226"]],[2,4,["H4940"]],[4,7,["H2227"]],[7,9,["H7586"]],[9,11,["H4940"]],[11,14,["H7587"]]]},{"k":4503,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,7,["H8099"]],[7,8,["H6242"]],[8,10,["H8147"]],[10,11,["H505"]],[11,14,["H3967"]]]},{"k":4504,"v":[[0,2,["H1121"]],[2,4,["H1410"]],[4,7,["H4940"]],[7,9,["H6827"]],[9,11,["H4940"]],[11,14,["H6831"]],[14,16,["H2291"]],[16,18,["H4940"]],[18,21,["H2291"]],[21,23,["H7764"]],[23,25,["H4940"]],[25,28,["H7765"]]]},{"k":4505,"v":[[0,2,["H244"]],[2,4,["H4940"]],[4,7,["H244"]],[7,9,["H6179"]],[9,11,["H4940"]],[11,14,["H6180"]]]},{"k":4506,"v":[[0,2,["H720"]],[2,4,["H4940"]],[4,7,["H722"]],[7,9,["H692"]],[9,11,["H4940"]],[11,14,["H692"]]]},{"k":4507,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,7,["H1121"]],[7,9,["H1410"]],[9,15,["H6485"]],[15,18,["H705"]],[18,19,["H505"]],[19,21,["H2568"]],[21,22,["H3967"]]]},{"k":4508,"v":[[0,2,["H1121"]],[2,4,["H3063"]],[4,6,["H6147"]],[6,8,["H209"]],[8,10,["H6147"]],[10,12,["H209"]],[12,13,["H4191"]],[13,16,["H776"]],[16,18,["H3667"]]]},{"k":4509,"v":[[0,3,["H1121"]],[3,5,["H3063"]],[5,8,["H4940"]],[8,9,["H1961"]],[9,11,["H7956"]],[11,13,["H4940"]],[13,16,["H8024"]],[16,18,["H6557"]],[18,20,["H4940"]],[20,23,["H6558"]],[23,25,["H2226"]],[25,27,["H4940"]],[27,30,["H2227"]]]},{"k":4510,"v":[[0,3,["H1121"]],[3,5,["H6557"]],[5,6,["H1961"]],[6,8,["H2696"]],[8,10,["H4940"]],[10,13,["H2697"]],[13,15,["H2538"]],[15,17,["H4940"]],[17,20,["H2539"]]]},{"k":4511,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,6,["H3063"]],[6,12,["H6485"]],[12,17,["H8337","H7657"]],[17,18,["H505"]],[18,20,["H2568"]],[20,21,["H3967"]]]},{"k":4512,"v":[[0,3,["H1121"]],[3,5,["H3485"]],[5,8,["H4940"]],[8,10,["H8439"]],[10,12,["H4940"]],[12,15,["H8440"]],[15,17,["H6312"]],[17,19,["H4940"]],[19,22,["H6324"]]]},{"k":4513,"v":[[0,2,["H3437"]],[2,4,["H4940"]],[4,7,["H3432"]],[7,9,["H8110"]],[9,11,["H4940"]],[11,14,["H8117"]]]},{"k":4514,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,6,["H3485"]],[6,12,["H6485"]],[12,15,["H8346"]],[15,17,["H702"]],[17,18,["H505"]],[18,20,["H7969"]],[20,21,["H3967"]]]},{"k":4515,"v":[[0,3,["H1121"]],[3,5,["H2074"]],[5,8,["H4940"]],[8,10,["H5624"]],[10,12,["H4940"]],[12,15,["H5625"]],[15,17,["H356"]],[17,19,["H4940"]],[19,22,["H440"]],[22,24,["H3177"]],[24,26,["H4940"]],[26,29,["H3178"]]]},{"k":4516,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,7,["H2075"]],[7,13,["H6485"]],[13,16,["H8346"]],[16,17,["H505"]],[17,19,["H2568"]],[19,20,["H3967"]]]},{"k":4517,"v":[[0,2,["H1121"]],[2,4,["H3130"]],[4,7,["H4940"]],[7,9,["H4519"]],[9,11,["H669"]]]},{"k":4518,"v":[[0,3,["H1121"]],[3,5,["H4519"]],[5,7,["H4353"]],[7,9,["H4940"]],[9,12,["H4354"]],[12,14,["H4353"]],[14,15,["H3205","(H853)"]],[15,16,["H1568"]],[16,18,["H1568"]],[18,21,["H4940"]],[21,24,["H1569"]]]},{"k":4519,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H1568"]],[6,8,["H372"]],[8,10,["H4940"]],[10,13,["H373"]],[13,15,["H2507"]],[15,17,["H4940"]],[17,20,["H2516"]]]},{"k":4520,"v":[[0,3,["H844"]],[3,5,["H4940"]],[5,8,["H845"]],[8,11,["H7928"]],[11,13,["H4940"]],[13,16,["H7930"]]]},{"k":4521,"v":[[0,3,["H8061"]],[3,5,["H4940"]],[5,8,["H8062"]],[8,11,["H2660"]],[11,13,["H4940"]],[13,16,["H2662"]]]},{"k":4522,"v":[[0,2,["H6765"]],[2,4,["H1121"]],[4,6,["H2660"]],[6,7,["H1961"]],[7,8,["H3808"]],[8,9,["H1121"]],[9,10,["H3588","H518"]],[10,11,["H1323"]],[11,14,["H8034"]],[14,17,["H1323"]],[17,19,["H6765"]],[19,21,["H4244"]],[21,23,["H5270"]],[23,24,["H2295"]],[24,25,["H4435"]],[25,27,["H8656"]]]},{"k":4523,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,6,["H4519"]],[6,11,["H6485"]],[11,14,["H2572"]],[14,16,["H8147"]],[16,17,["H505"]],[17,19,["H7651"]],[19,20,["H3967"]]]},{"k":4524,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H669"]],[6,9,["H4940"]],[9,11,["H7803"]],[11,13,["H4940"]],[13,16,["H8364"]],[16,18,["H1071"]],[18,20,["H4940"]],[20,23,["H1076"]],[23,25,["H8465"]],[25,27,["H4940"]],[27,30,["H8470"]]]},{"k":4525,"v":[[0,2,["H428"]],[2,5,["H1121"]],[5,7,["H7803"]],[7,9,["H6197"]],[9,11,["H4940"]],[11,14,["H6198"]]]},{"k":4526,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,7,["H1121"]],[7,9,["H669"]],[9,15,["H6485"]],[15,18,["H7970"]],[18,20,["H8147"]],[20,21,["H505"]],[21,23,["H2568"]],[23,24,["H3967"]],[24,25,["H428"]],[25,28,["H1121"]],[28,30,["H3130"]],[30,33,["H4940"]]]},{"k":4527,"v":[[0,2,["H1121"]],[2,4,["H1144"]],[4,7,["H4940"]],[7,9,["H1106"]],[9,11,["H4940"]],[11,14,["H1108"]],[14,16,["H788"]],[16,18,["H4940"]],[18,21,["H789"]],[21,23,["H297"]],[23,25,["H4940"]],[25,28,["H298"]]]},{"k":4528,"v":[[0,2,["H8197"]],[2,4,["H4940"]],[4,7,["H7781"]],[7,9,["H2349"]],[9,11,["H4940"]],[11,14,["H2350"]]]},{"k":4529,"v":[[0,3,["H1121"]],[3,5,["H1106"]],[5,6,["H1961"]],[6,7,["H714"]],[7,9,["H5283"]],[9,13,["H4940"]],[13,16,["H716"]],[16,19,["H5283"]],[19,21,["H4940"]],[21,24,["H5280"]]]},{"k":4530,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H1144"]],[6,9,["H4940"]],[9,14,["H6485"]],[14,18,["H705"]],[18,20,["H2568"]],[20,21,["H505"]],[21,23,["H8337"]],[23,24,["H3967"]]]},{"k":4531,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H1835"]],[6,9,["H4940"]],[9,11,["H7748"]],[11,13,["H4940"]],[13,16,["H7749"]],[16,17,["H428"]],[17,20,["H4940"]],[20,22,["H1835"]],[22,25,["H4940"]]]},{"k":4532,"v":[[0,1,["H3605"]],[1,3,["H4940"]],[3,6,["H7749"]],[6,12,["H6485"]],[12,16,["H8346"]],[16,18,["H702"]],[18,19,["H505"]],[19,21,["H702"]],[21,22,["H3967"]]]},{"k":4533,"v":[[0,3,["H1121"]],[3,5,["H836"]],[5,8,["H4940"]],[8,10,["H3232"]],[10,12,["H4940"]],[12,15,["H3232"]],[15,17,["H3440"]],[17,19,["H4940"]],[19,22,["H3441"]],[22,24,["H1283"]],[24,26,["H4940"]],[26,29,["H1284"]]]},{"k":4534,"v":[[0,3,["H1121"]],[3,5,["H1283"]],[5,7,["H2268"]],[7,9,["H4940"]],[9,12,["H2277"]],[12,14,["H4439"]],[14,16,["H4940"]],[16,19,["H4440"]]]},{"k":4535,"v":[[0,3,["H8034"]],[3,6,["H1323"]],[6,8,["H836"]],[8,10,["H8294"]]]},{"k":4536,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,7,["H1121"]],[7,9,["H836"]],[9,15,["H6485"]],[15,20,["H2572"]],[20,22,["H7969"]],[22,23,["H505"]],[23,25,["H702"]],[25,26,["H3967"]]]},{"k":4537,"v":[[0,3,["H1121"]],[3,5,["H5321"]],[5,8,["H4940"]],[8,10,["H3183"]],[10,12,["H4940"]],[12,15,["H3184"]],[15,17,["H1476"]],[17,19,["H4940"]],[19,22,["H1477"]]]},{"k":4538,"v":[[0,2,["H3337"]],[2,4,["H4940"]],[4,7,["H3339"]],[7,9,["H8006"]],[9,11,["H4940"]],[11,14,["H8016"]]]},{"k":4539,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,6,["H5321"]],[6,10,["H4940"]],[10,15,["H6485"]],[15,19,["H705"]],[19,21,["H2568"]],[21,22,["H505"]],[22,24,["H702"]],[24,25,["H3967"]]]},{"k":4540,"v":[[0,1,["H428"]],[1,4,["H6485"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,10,["H8337"]],[10,11,["H3967"]],[11,12,["H505"]],[12,15,["H505"]],[15,16,["H7651"]],[16,17,["H3967"]],[17,19,["H7970"]]]},{"k":4541,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4542,"v":[[0,2,["H428"]],[2,4,["H776"]],[4,7,["H2505"]],[7,10,["H5159"]],[10,14,["H4557"]],[14,16,["H8034"]]]},{"k":4543,"v":[[0,2,["H7227"]],[2,7,["H7235"]],[7,8,["H5159"]],[8,11,["H4592"]],[11,16,["H4591"]],[16,17,["H5159"]],[17,20,["H376"]],[20,23,["H5159"]],[23,25,["H5414"]],[25,27,["H6310"]],[27,31,["H6485"]],[31,33,[]]]},{"k":4544,"v":[[0,1,["H389","(H853)"]],[1,3,["H776"]],[3,6,["H2505"]],[6,8,["H1486"]],[8,12,["H8034"]],[12,15,["H4294"]],[15,18,["H1"]],[18,21,["H5157"]]]},{"k":4545,"v":[[0,2,["H5921","H6310"]],[2,4,["H1486"]],[4,7,["H5159"]],[7,10,["H2505"]],[10,11,["H996"]],[11,12,["H7227"]],[12,14,["H4592"]]]},{"k":4546,"v":[[0,2,["H428"]],[2,7,["H6485"]],[7,10,["H3881"]],[10,13,["H4940"]],[13,15,["H1648"]],[15,17,["H4940"]],[17,20,["H1649"]],[20,22,["H6955"]],[22,24,["H4940"]],[24,27,["H6956"]],[27,29,["H4847"]],[29,31,["H4940"]],[31,34,["H4848"]]]},{"k":4547,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,7,["H3881"]],[7,9,["H4940"]],[9,12,["H3864"]],[12,14,["H4940"]],[14,17,["H2276"]],[17,19,["H4940"]],[19,22,["H4250"]],[22,24,["H4940"]],[24,27,["H4188"]],[27,29,["H4940"]],[29,32,["H7145"]],[32,34,["H6955"]],[34,35,["H3205","(H853)"]],[35,36,["H6019"]]]},{"k":4548,"v":[[0,3,["H8034"]],[3,5,["H6019"]],[5,6,["H802"]],[6,8,["H3115"]],[8,10,["H1323"]],[10,12,["H3878"]],[12,13,["H834"]],[13,16,["H3205"]],[16,18,["H3878"]],[18,20,["H4714"]],[20,23,["H3205"]],[23,25,["H6019","(H853)"]],[25,26,["H175"]],[26,28,["H4872"]],[28,30,["H4813"]],[30,32,["H269"]]]},{"k":4549,"v":[[0,3,["H175"]],[3,5,["H3205","(H853)"]],[5,6,["H5070"]],[6,8,["H30","(H853)"]],[8,9,["H499"]],[9,11,["H385"]]]},{"k":4550,"v":[[0,2,["H5070"]],[2,4,["H30"]],[4,5,["H4191"]],[5,8,["H7126"]],[8,9,["H2114"]],[9,10,["H784"]],[10,11,["H6440"]],[11,13,["H3068"]]]},{"k":4551,"v":[[0,5,["H6485"]],[5,8,["H1961"]],[8,9,["H6242"]],[9,11,["H7969"]],[11,12,["H505"]],[12,13,["H3605"]],[13,14,["H2145"]],[14,17,["H2320"]],[17,18,["H4480","H1121"]],[18,20,["H4605"]],[20,21,["H3588"]],[21,24,["H3808"]],[24,25,["H6485"]],[25,26,["H8432"]],[26,28,["H1121"]],[28,30,["H3478"]],[30,31,["H3588"]],[31,34,["H3808"]],[34,35,["H5159"]],[35,36,["H5414"]],[36,38,["H8432"]],[38,40,["H1121"]],[40,42,["H3478"]]]},{"k":4552,"v":[[0,1,["H428"]],[1,6,["H6485"]],[6,8,["H4872"]],[8,10,["H499"]],[10,12,["H3548"]],[12,13,["H834"]],[13,14,["H6485","(H853)"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,21,["H6160"]],[21,23,["H4124"]],[23,24,["H5921"]],[24,25,["H3383"]],[25,27,["H3405"]]]},{"k":4553,"v":[[0,3,["H428"]],[3,5,["H1961"]],[5,6,["H3808"]],[6,8,["H376"]],[8,12,["H4872"]],[12,14,["H175"]],[14,16,["H3548"]],[16,17,["H4480","H6485"]],[17,18,["H834"]],[18,20,["H6485","(H853)"]],[20,22,["H1121"]],[22,24,["H3478"]],[24,27,["H4057"]],[27,29,["H5514"]]]},{"k":4554,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H559"]],[5,11,["H4191","H4191"]],[11,14,["H4057"]],[14,18,["H3808"]],[18,19,["H3498"]],[19,21,["H376"]],[21,22,["H4480"]],[22,24,["H3588","H518"]],[24,25,["H3612"]],[25,27,["H1121"]],[27,29,["H3312"]],[29,31,["H3091"]],[31,33,["H1121"]],[33,35,["H5126"]]]},{"k":4555,"v":[[0,2,["H7126"]],[2,4,["H1323"]],[4,6,["H6765"]],[6,8,["H1121"]],[8,10,["H2660"]],[10,12,["H1121"]],[12,14,["H1568"]],[14,16,["H1121"]],[16,18,["H4353"]],[18,20,["H1121"]],[20,22,["H4519"]],[22,25,["H4940"]],[25,27,["H4519"]],[27,29,["H1121"]],[29,31,["H3130"]],[31,33,["H428"]],[33,36,["H8034"]],[36,39,["H1323"]],[39,40,["H4244"]],[40,41,["H5270"]],[41,43,["H2295"]],[43,45,["H4435"]],[45,47,["H8656"]]]},{"k":4556,"v":[[0,3,["H5975"]],[3,4,["H6440"]],[4,5,["H4872"]],[5,7,["H6440"]],[7,8,["H499"]],[8,10,["H3548"]],[10,12,["H6440"]],[12,14,["H5387"]],[14,16,["H3605"]],[16,18,["H5712"]],[18,21,["H6607"]],[21,24,["H168"]],[24,27,["H4150"]],[27,28,["H559"]]]},{"k":4557,"v":[[0,2,["H1"]],[2,3,["H4191"]],[3,6,["H4057"]],[6,8,["H1931"]],[8,9,["H1961"]],[9,10,["H3808"]],[10,11,["H8432"]],[11,13,["H5712"]],[13,19,["H3259"]],[19,20,["H5921"]],[20,22,["H3068"]],[22,25,["H5712"]],[25,27,["H7141"]],[27,28,["H3588"]],[28,29,["H4191"]],[29,33,["H2399"]],[33,35,["H1961"]],[35,36,["H3808"]],[36,37,["H1121"]]]},{"k":4558,"v":[[0,1,["H4100"]],[1,4,["H8034"]],[4,7,["H1"]],[7,10,["H1639"]],[10,12,["H4480","H8432"]],[12,14,["H4940"]],[14,15,["H3588"]],[15,18,["H369"]],[18,19,["H1121"]],[19,20,["H5414"]],[20,25,["H272"]],[25,26,["H8432"]],[26,28,["H251"]],[28,31,["H1"]]]},{"k":4559,"v":[[0,2,["H4872"]],[2,3,["H7126","(H853)"]],[3,5,["H4941"]],[5,6,["H6440"]],[6,8,["H3068"]]]},{"k":4560,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4561,"v":[[0,2,["H1323"]],[2,4,["H6765"]],[4,5,["H1696"]],[5,6,["H3651"]],[6,10,["H5414","H5414"]],[10,13,["H272"]],[13,16,["H5159"]],[16,17,["H8432"]],[17,19,["H1"]],[19,20,["H251"]],[20,24,["(H853)"]],[24,26,["H5159"]],[26,29,["H1"]],[29,31,["H5674"]],[31,33,[]]]},{"k":4562,"v":[[0,4,["H1696"]],[4,5,["H413"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,10,["H559"]],[10,11,["H3588"]],[11,13,["H376"]],[13,14,["H4191"]],[14,17,["H369"]],[17,18,["H1121"]],[18,22,["(H853)"]],[22,24,["H5159"]],[24,26,["H5674"]],[26,29,["H1323"]]]},{"k":4563,"v":[[0,2,["H518"]],[2,5,["H369"]],[5,6,["H1323"]],[6,10,["H5414","(H853)"]],[10,12,["H5159"]],[12,15,["H251"]]]},{"k":4564,"v":[[0,2,["H518"]],[2,5,["H369"]],[5,6,["H251"]],[6,10,["H5414","(H853)"]],[10,12,["H5159"]],[12,15,["H1"]],[15,16,["H251"]]]},{"k":4565,"v":[[0,2,["H518"]],[2,4,["H1"]],[4,6,["H369"]],[6,7,["H251"]],[7,11,["H5414","(H853)"]],[11,13,["H5159"]],[13,16,["H7607"]],[16,19,["H7138"]],[19,20,["H413"]],[20,24,["H4480","H4940"]],[24,28,["H3423"]],[28,33,["H1961"]],[33,36,["H1121"]],[36,38,["H3478"]],[38,40,["H2708"]],[40,42,["H4941"]],[42,43,["H834"]],[43,45,["H3068"]],[45,46,["H6680","(H853)"]],[46,47,["H4872"]]]},{"k":4566,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H5927"]],[9,10,["H413"]],[10,11,["H2088"]],[11,12,["H2022"]],[12,13,["H5682"]],[13,15,["H7200","(H853)"]],[15,17,["H776"]],[17,18,["H834"]],[18,21,["H5414"]],[21,24,["H1121"]],[24,26,["H3478"]]]},{"k":4567,"v":[[0,5,["H7200"]],[5,7,["H859"]],[7,8,["H1571"]],[8,11,["H622"]],[11,12,["H413"]],[12,14,["H5971"]],[14,15,["H834"]],[15,16,["H175"]],[16,18,["H251"]],[18,20,["H622"]]]},{"k":4568,"v":[[0,1,["H834"]],[1,4,["H4784"]],[4,6,["H6310"]],[6,9,["H4057"]],[9,11,["H6790"]],[11,14,["H4808"]],[14,17,["H5712"]],[17,19,["H6942"]],[19,23,["H4325"]],[23,26,["H5869"]],[26,27,["H1992"]],[27,30,["H4325"]],[30,32,["H4809"]],[32,34,["H6946"]],[34,37,["H4057"]],[37,39,["H6790"]]]},{"k":4569,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,4,["H413"]],[4,6,["H3068"]],[6,7,["H559"]]]},{"k":4570,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,8,["H7307"]],[8,10,["H3605"]],[10,11,["H1320"]],[11,12,["H6485"]],[12,14,["H376"]],[14,15,["H5921"]],[15,17,["H5712"]]]},{"k":4571,"v":[[0,1,["H834"]],[1,4,["H3318"]],[4,5,["H6440"]],[5,8,["H834"]],[8,11,["H935"]],[11,12,["H6440"]],[12,15,["H834"]],[15,19,["H3318"]],[19,21,["H834"]],[21,25,["H935"]],[25,28,["H5712"]],[28,31,["H3068"]],[31,32,["H1961"]],[32,33,["H3808"]],[33,35,["H6629"]],[35,36,["H834"]],[36,38,["H369"]],[38,39,["H7462"]]]},{"k":4572,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H3947"]],[7,8,["(H853)"]],[8,9,["H3091"]],[9,11,["H1121"]],[11,13,["H5126"]],[13,15,["H376"]],[15,17,["H834"]],[17,20,["H7307"]],[20,22,["H5564","(H853)"]],[22,24,["H3027"]],[24,25,["H5921"]],[25,26,[]]]},{"k":4573,"v":[[0,2,["H5975"]],[2,4,["H6440"]],[4,5,["H499"]],[5,7,["H3548"]],[7,9,["H6440"]],[9,10,["H3605"]],[10,12,["H5712"]],[12,17,["H6680","(H853)"]],[17,20,["H5869"]]]},{"k":4574,"v":[[0,4,["H5414"]],[4,8,["H4480","H1935"]],[8,9,["H5921"]],[9,11,["H4616"]],[11,12,["H3605"]],[12,14,["H5712"]],[14,17,["H1121"]],[17,19,["H3478"]],[19,22,["H8085"]]]},{"k":4575,"v":[[0,4,["H5975"]],[4,5,["H6440"]],[5,6,["H499"]],[6,8,["H3548"]],[8,11,["H7592"]],[11,17,["H4941"]],[17,19,["H224"]],[19,20,["H6440"]],[20,22,["H3068"]],[22,23,["H5921"]],[23,25,["H6310"]],[25,29,["H3318"]],[29,31,["H5921"]],[31,33,["H6310"]],[33,37,["H935"]],[37,39,["H1931"]],[39,41,["H3605"]],[41,43,["H1121"]],[43,45,["H3478"]],[45,46,["H854"]],[46,49,["H3605"]],[49,51,["H5712"]]]},{"k":4576,"v":[[0,2,["H4872"]],[2,3,["H6213"]],[3,4,["H834"]],[4,6,["H3068"]],[6,7,["H6680"]],[7,11,["H3947","(H853)"]],[11,12,["H3091"]],[12,14,["H5975"]],[14,16,["H6440"]],[16,17,["H499"]],[17,19,["H3548"]],[19,21,["H6440"]],[21,22,["H3605"]],[22,24,["H5712"]]]},{"k":4577,"v":[[0,3,["H5564","(H853)"]],[3,5,["H3027"]],[5,6,["H5921"]],[6,12,["H6680"]],[12,13,["H834"]],[13,15,["H3068"]],[15,16,["H1696"]],[16,19,["H3027"]],[19,21,["H4872"]]]},{"k":4578,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4579,"v":[[0,1,["H6680","(H853)"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,7,["H559"]],[7,8,["H413"]],[8,9,["(H853)"]],[9,11,["H7133"]],[11,14,["H3899"]],[14,20,["H801"]],[20,23,["H5207"]],[23,24,["H7381"]],[24,29,["H8104"]],[29,31,["H7126"]],[31,37,["H4150"]]]},{"k":4580,"v":[[0,4,["H559"]],[4,7,["H2088"]],[7,13,["H801"]],[13,14,["H834"]],[14,17,["H7126"]],[17,20,["H3068"]],[20,21,["H8147"]],[21,22,["H3532"]],[22,25,["H1121"]],[25,26,["H8141"]],[26,28,["H8549"]],[28,31,["H3117"]],[31,34,["H8548"]],[34,36,["H5930"]]]},{"k":4581,"v":[[0,0,["(H853)"]],[0,2,["H259"]],[2,3,["H3532"]],[3,6,["H6213"]],[6,9,["H1242"]],[9,12,["H8145"]],[12,13,["H3532"]],[13,16,["H6213"]],[16,17,["H996"]],[17,18,["H6153"]]]},{"k":4582,"v":[[0,3,["H6224"]],[3,7,["H374"]],[7,9,["H5560"]],[9,13,["H4503"]],[13,14,["H1101"]],[14,17,["H7243"]],[17,21,["H1969"]],[21,23,["H3795"]],[23,24,["H8081"]]]},{"k":4583,"v":[[0,4,["H8548"]],[4,6,["H5930"]],[6,9,["H6213"]],[9,11,["H2022"]],[11,12,["H5514"]],[12,15,["H5207"]],[15,16,["H7381"]],[16,21,["H801"]],[21,24,["H3068"]]]},{"k":4584,"v":[[0,4,["H5262"]],[4,9,["H7243"]],[9,13,["H1969"]],[13,16,["H259"]],[16,17,["H3532"]],[17,20,["H6944"]],[20,27,["H7941"]],[27,30,["H5258"]],[30,33,["H3068"]],[33,37,["H5262"]]]},{"k":4585,"v":[[0,3,["H8145"]],[3,4,["H3532"]],[4,7,["H6213"]],[7,8,["H996"]],[8,9,["H6153"]],[9,13,["H4503"]],[13,16,["H1242"]],[16,21,["H5262"]],[21,25,["H6213"]],[25,31,["H801"]],[31,34,["H5207"]],[34,35,["H7381"]],[35,38,["H3068"]]]},{"k":4586,"v":[[0,4,["H7676"]],[4,5,["H3117"]],[5,6,["H8147"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,13,["H8549"]],[13,15,["H8147"]],[15,17,["H6241"]],[17,19,["H5560"]],[19,23,["H4503"]],[23,24,["H1101"]],[24,26,["H8081"]],[26,30,["H5262"]],[30,31,[]]]},{"k":4587,"v":[[0,5,["H5930"]],[5,8,["H7676","H7676"]],[8,9,["H5921"]],[9,11,["H8548"]],[11,13,["H5930"]],[13,17,["H5262"]]]},{"k":4588,"v":[[0,4,["H7218"]],[4,7,["H2320"]],[7,10,["H7126"]],[10,13,["H5930"]],[13,16,["H3068"]],[16,17,["H8147"]],[17,18,["H1121","H1241"]],[18,19,["H6499"]],[19,21,["H259"]],[21,22,["H352"]],[22,23,["H7651"]],[23,24,["H3532"]],[24,27,["H1121"]],[27,28,["H8141"]],[28,30,["H8549"]]]},{"k":4589,"v":[[0,2,["H7969"]],[2,4,["H6241"]],[4,6,["H5560"]],[6,10,["H4503"]],[10,11,["H1101"]],[11,13,["H8081"]],[13,15,["H259"]],[15,16,["H6499"]],[16,18,["H8147"]],[18,20,["H6241"]],[20,22,["H5560"]],[22,26,["H4503"]],[26,27,["H1101"]],[27,29,["H8081"]],[29,31,["H259"]],[31,32,["H352"]]]},{"k":4590,"v":[[0,5,["H6241","H6241"]],[5,7,["H5560"]],[7,8,["H1101"]],[8,10,["H8081"]],[10,14,["H4503"]],[14,16,["H259"]],[16,17,["H3532"]],[17,21,["H5930"]],[21,24,["H5207"]],[24,25,["H7381"]],[25,30,["H801"]],[30,33,["H3068"]]]},{"k":4591,"v":[[0,4,["H5262"]],[4,6,["H1961"]],[6,7,["H2677"]],[7,9,["H1969"]],[9,11,["H3196"]],[11,14,["H6499"]],[14,17,["H7992"]],[17,21,["H1969"]],[21,24,["H352"]],[24,27,["H7243"]],[27,31,["H1969"]],[31,34,["H3532"]],[34,35,["H2063"]],[35,39,["H5930"]],[39,42,["H2320","H2320"]],[42,45,["H2320"]],[45,48,["H8141"]]]},{"k":4592,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,6,["H5795"]],[6,10,["H2403"]],[10,13,["H3068"]],[13,16,["H6213"]],[16,17,["H5921"]],[17,19,["H8548"]],[19,21,["H5930"]],[21,25,["H5262"]]]},{"k":4593,"v":[[0,4,["H702","H6240"]],[4,5,["H3117"]],[5,8,["H7223"]],[8,9,["H2320"]],[9,12,["H6453"]],[12,15,["H3068"]]]},{"k":4594,"v":[[0,4,["H2568","H6240"]],[4,5,["H3117"]],[5,7,["H2088"]],[7,8,["H2320"]],[8,11,["H2282"]],[11,12,["H7651"]],[12,13,["H3117"]],[13,16,["H4682"]],[16,18,["H398"]]]},{"k":4595,"v":[[0,3,["H7223"]],[3,4,["H3117"]],[4,8,["H6944"]],[8,9,["H4744"]],[9,12,["H6213"]],[12,14,["H3808","H3605"]],[14,16,["H5656"]],[16,17,["H4399"]],[17,18,[]]]},{"k":4596,"v":[[0,4,["H7126"]],[4,9,["H801"]],[9,13,["H5930"]],[13,16,["H3068"]],[16,17,["H8147"]],[17,18,["H1121","H1241"]],[18,19,["H6499"]],[19,21,["H259"]],[21,22,["H352"]],[22,24,["H7651"]],[24,25,["H3532"]],[25,28,["H1121"]],[28,29,["H8141"]],[29,32,["H1961"]],[32,36,["H8549"]]]},{"k":4597,"v":[[0,4,["H4503"]],[4,8,["H5560"]],[8,9,["H1101"]],[9,11,["H8081"]],[11,12,["H7969"]],[12,14,["H6241"]],[14,17,["H6213"]],[17,20,["H6499"]],[20,22,["H8147"]],[22,24,["H6241"]],[24,27,["H352"]]]},{"k":4598,"v":[[0,4,["H6241","H6241"]],[4,7,["H6213"]],[7,9,["H259"]],[9,10,["H3532"]],[10,13,["H7651"]],[13,14,["H3532"]]]},{"k":4599,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,7,["H2403"]],[7,11,["H3722"]],[11,12,["H5921"]],[12,13,[]]]},{"k":4600,"v":[[0,3,["H6213","(H853)"]],[3,4,["H428"]],[4,5,["H4480","H905"]],[5,8,["H5930"]],[8,11,["H1242"]],[11,12,["H834"]],[12,16,["H8548"]],[16,18,["H5930"]]]},{"k":4601,"v":[[0,3,["H428"]],[3,6,["H6213"]],[6,7,["H3117"]],[7,10,["H7651"]],[10,11,["H3117"]],[11,13,["H3899"]],[13,19,["H801"]],[19,22,["H5207"]],[22,23,["H7381"]],[23,26,["H3068"]],[26,30,["H6213"]],[30,31,["H5921"]],[31,33,["H8548"]],[33,35,["H5930"]],[35,39,["H5262"]]]},{"k":4602,"v":[[0,4,["H7637"]],[4,5,["H3117"]],[5,8,["H1961"]],[8,10,["H6944"]],[10,11,["H4744"]],[11,14,["H6213"]],[14,15,["H3808","H3605"]],[15,16,["H5656"]],[16,17,["H4399"]]]},{"k":4603,"v":[[0,4,["H3117"]],[4,7,["H1061"]],[7,10,["H7126"]],[10,12,["H2319"]],[12,14,["H4503"]],[14,17,["H3068"]],[17,20,["H7620"]],[20,25,["H1961"]],[25,27,["H6944"]],[27,28,["H4744"]],[28,31,["H6213"]],[31,32,["H3808","H3605"]],[32,33,["H5656"]],[33,34,["H4399"]]]},{"k":4604,"v":[[0,4,["H7126"]],[4,7,["H5930"]],[7,10,["H5207"]],[10,11,["H7381"]],[11,14,["H3068"]],[14,15,["H8147"]],[15,16,["H1121","H1241"]],[16,17,["H6499"]],[17,18,["H259"]],[18,19,["H352"]],[19,20,["H7651"]],[20,21,["H3532"]],[21,24,["H1121"]],[24,25,["H8141"]]]},{"k":4605,"v":[[0,4,["H4503"]],[4,6,["H5560"]],[6,7,["H1101"]],[7,9,["H8081"]],[9,10,["H7969"]],[10,12,["H6241"]],[12,14,["H259"]],[14,15,["H6499"]],[15,16,["H8147"]],[16,18,["H6241"]],[18,20,["H259"]],[20,21,["H352"]]]},{"k":4606,"v":[[0,4,["H6241","H6241"]],[4,6,["H259"]],[6,7,["H3532"]],[7,10,["H7651"]],[10,11,["H3532"]]]},{"k":4607,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,6,["H5795"]],[6,10,["H3722"]],[10,11,["H5921"]],[11,12,[]]]},{"k":4608,"v":[[0,3,["H6213"]],[3,5,["H4480","H905"]],[5,7,["H8548"]],[7,9,["H5930"]],[9,13,["H4503"]],[13,16,["H1961"]],[16,20,["H8549"]],[20,24,["H5262"]]]},{"k":4609,"v":[[0,4,["H7637"]],[4,5,["H2320"]],[5,8,["H259"]],[8,12,["H2320"]],[12,15,["H1961"]],[15,17,["H6944"]],[17,18,["H4744"]],[18,21,["H6213"]],[21,22,["H3808","H3605"]],[22,23,["H5656"]],[23,24,["H4399"]],[24,26,["H1961"]],[26,28,["H3117"]],[28,32,["H8643"]],[32,34,[]]]},{"k":4610,"v":[[0,4,["H6213"]],[4,7,["H5930"]],[7,10,["H5207"]],[10,11,["H7381"]],[11,14,["H3068"]],[14,15,["H259"]],[15,16,["H1121","H1241"]],[16,17,["H6499"]],[17,18,["H259"]],[18,19,["H352"]],[19,21,["H7651"]],[21,22,["H3532"]],[22,25,["H1121"]],[25,26,["H8141"]],[26,28,["H8549"]]]},{"k":4611,"v":[[0,4,["H4503"]],[4,8,["H5560"]],[8,9,["H1101"]],[9,11,["H8081"]],[11,12,["H7969"]],[12,14,["H6241"]],[14,17,["H6499"]],[17,19,["H8147"]],[19,21,["H6241"]],[21,24,["H352"]]]},{"k":4612,"v":[[0,2,["H259"]],[2,4,["H6241"]],[4,6,["H259"]],[6,7,["H3532"]],[7,10,["H7651"]],[10,11,["H3532"]]]},{"k":4613,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,6,["H5795"]],[6,10,["H2403"]],[10,14,["H3722"]],[14,15,["H5921"]],[15,16,[]]]},{"k":4614,"v":[[0,1,["H4480","H905"]],[1,4,["H5930"]],[4,7,["H2320"]],[7,11,["H4503"]],[11,14,["H8548"]],[14,16,["H5930"]],[16,20,["H4503"]],[20,24,["H5262"]],[24,28,["H4941"]],[28,31,["H5207"]],[31,32,["H7381"]],[32,37,["H801"]],[37,40,["H3068"]]]},{"k":4615,"v":[[0,4,["H1961"]],[4,7,["H6218"]],[7,10,["H2088"]],[10,11,["H7637"]],[11,12,["H2320"]],[12,14,["H6944"]],[14,15,["H4744"]],[15,19,["H6031","(H853)"]],[19,21,["H5315"]],[21,24,["H3808"]],[24,25,["H6213"]],[25,26,["H3605"]],[26,27,["H4399"]],[27,28,[]]]},{"k":4616,"v":[[0,4,["H7126"]],[4,7,["H5930"]],[7,10,["H3068"]],[10,13,["H5207"]],[13,14,["H7381"]],[14,15,["H259"]],[15,16,["H1121","H1241"]],[16,17,["H6499"]],[17,18,["H259"]],[18,19,["H352"]],[19,21,["H7651"]],[21,22,["H3532"]],[22,25,["H1121"]],[25,26,["H8141"]],[26,29,["H1961"]],[29,33,["H8549"]]]},{"k":4617,"v":[[0,4,["H4503"]],[4,8,["H5560"]],[8,9,["H1101"]],[9,11,["H8081"]],[11,12,["H7969"]],[12,14,["H6241"]],[14,17,["H6499"]],[17,19,["H8147"]],[19,21,["H6241"]],[21,23,["H259"]],[23,24,["H352"]]]},{"k":4618,"v":[[0,4,["H6241","H6241"]],[4,6,["H259"]],[6,7,["H3532"]],[7,10,["H7651"]],[10,11,["H3532"]]]},{"k":4619,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]],[9,10,["H4480","H905"]],[10,13,["H2403"]],[13,15,["H3725"]],[15,18,["H8548"]],[18,20,["H5930"]],[20,24,["H4503"]],[24,30,["H5262"]]]},{"k":4620,"v":[[0,4,["H2568","H6240"]],[4,5,["H3117"]],[5,8,["H7637"]],[8,9,["H2320"]],[9,12,["H1961"]],[12,14,["H6944"]],[14,15,["H4744"]],[15,18,["H6213"]],[18,19,["H3808","H3605"]],[19,20,["H5656"]],[20,21,["H4399"]],[21,25,["H2287"]],[25,27,["H2282"]],[27,30,["H3068"]],[30,31,["H7651"]],[31,32,["H3117"]]]},{"k":4621,"v":[[0,4,["H7126"]],[4,7,["H5930"]],[7,12,["H801"]],[12,15,["H5207"]],[15,16,["H7381"]],[16,19,["H3068"]],[19,20,["H7969","H6240"]],[20,21,["H1121","H1241"]],[21,22,["H6499"]],[22,23,["H8147"]],[23,24,["H352"]],[24,26,["H702","H6240"]],[26,27,["H3532"]],[27,30,["H1121"]],[30,31,["H8141"]],[31,34,["H1961"]],[34,36,["H8549"]]]},{"k":4622,"v":[[0,4,["H4503"]],[4,8,["H5560"]],[8,9,["H1101"]],[9,11,["H8081"]],[11,12,["H7969"]],[12,14,["H6241"]],[14,16,["H259"]],[16,17,["H6499"]],[17,20,["H7969","H6240"]],[20,21,["H6499"]],[21,22,["H8147"]],[22,24,["H6241"]],[24,26,["H259"]],[26,27,["H352"]],[27,30,["H8147"]],[30,31,["H352"]]]},{"k":4623,"v":[[0,5,["H6241","H6241"]],[5,7,["H259"]],[7,8,["H3532"]],[8,11,["H702","H6240"]],[11,12,["H3532"]]]},{"k":4624,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,6,["H5795"]],[6,10,["H2403"]],[10,11,["H4480","H905"]],[11,13,["H8548"]],[13,15,["H5930"]],[15,18,["H4503"]],[18,22,["H5262"]]]},{"k":4625,"v":[[0,4,["H8145"]],[4,5,["H3117"]],[5,9,["H8147","H6240"]],[9,10,["H1121","H1241"]],[10,11,["H6499"]],[11,12,["H8147"]],[12,13,["H352"]],[13,14,["H702","H6240"]],[14,15,["H3532"]],[15,18,["H1121"]],[18,19,["H8141"]],[19,21,["H8549"]]]},{"k":4626,"v":[[0,4,["H4503"]],[4,8,["H5262"]],[8,11,["H6499"]],[11,14,["H352"]],[14,18,["H3532"]],[18,24,["H4557"]],[24,27,["H4941"]]]},{"k":4627,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,6,["H5795"]],[6,10,["H2403"]],[10,11,["H4480","H905"]],[11,13,["H8548"]],[13,15,["H5930"]],[15,19,["H4503"]],[19,24,["H5262"]]]},{"k":4628,"v":[[0,4,["H7992"]],[4,5,["H3117"]],[5,6,["H6249","H6240"]],[6,7,["H6499"]],[7,8,["H8147"]],[8,9,["H352"]],[9,10,["H702","H6240"]],[10,11,["H3532"]],[11,14,["H1121"]],[14,15,["H8141"]],[15,17,["H8549"]]]},{"k":4629,"v":[[0,4,["H4503"]],[4,8,["H5262"]],[8,11,["H6499"]],[11,14,["H352"]],[14,18,["H3532"]],[18,24,["H4557"]],[24,27,["H4941"]]]},{"k":4630,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,7,["H2403"]],[7,8,["H4480","H905"]],[8,10,["H8548"]],[10,12,["H5930"]],[12,16,["H4503"]],[16,20,["H5262"]]]},{"k":4631,"v":[[0,4,["H7243"]],[4,5,["H3117"]],[5,6,["H6235"]],[6,7,["H6499"]],[7,8,["H8147"]],[8,9,["H352"]],[9,11,["H702","H6240"]],[11,12,["H3532"]],[12,15,["H1121"]],[15,16,["H8141"]],[16,18,["H8549"]]]},{"k":4632,"v":[[0,3,["H4503"]],[3,7,["H5262"]],[7,10,["H6499"]],[10,13,["H352"]],[13,17,["H3532"]],[17,23,["H4557"]],[23,26,["H4941"]]]},{"k":4633,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,6,["H5795"]],[6,10,["H2403"]],[10,11,["H4480","H905"]],[11,13,["H8548"]],[13,15,["H5930"]],[15,18,["H4503"]],[18,22,["H5262"]]]},{"k":4634,"v":[[0,4,["H2549"]],[4,5,["H3117"]],[5,6,["H8672"]],[6,7,["H6499"]],[7,8,["H8147"]],[8,9,["H352"]],[9,11,["H702","H6240"]],[11,12,["H3532"]],[12,15,["H1121"]],[15,16,["H8141"]],[16,18,["H8549"]]]},{"k":4635,"v":[[0,4,["H4503"]],[4,8,["H5262"]],[8,11,["H6499"]],[11,14,["H352"]],[14,18,["H3532"]],[18,24,["H4557"]],[24,27,["H4941"]]]},{"k":4636,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,7,["H2403"]],[7,8,["H4480","H905"]],[8,10,["H8548"]],[10,12,["H5930"]],[12,16,["H4503"]],[16,20,["H5262"]]]},{"k":4637,"v":[[0,4,["H8345"]],[4,5,["H3117"]],[5,6,["H8083"]],[6,7,["H6499"]],[7,8,["H8147"]],[8,9,["H352"]],[9,11,["H702","H6240"]],[11,12,["H3532"]],[12,15,["H1121"]],[15,16,["H8141"]],[16,18,["H8549"]]]},{"k":4638,"v":[[0,4,["H4503"]],[4,8,["H5262"]],[8,11,["H6499"]],[11,14,["H352"]],[14,18,["H3532"]],[18,24,["H4557"]],[24,27,["H4941"]]]},{"k":4639,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,7,["H2403"]],[7,8,["H4480","H905"]],[8,10,["H8548"]],[10,12,["H5930"]],[12,15,["H4503"]],[15,19,["H5262"]]]},{"k":4640,"v":[[0,4,["H7637"]],[4,5,["H3117"]],[5,6,["H7651"]],[6,7,["H6499"]],[7,8,["H8147"]],[8,9,["H352"]],[9,11,["H702","H6240"]],[11,12,["H3532"]],[12,15,["H1121"]],[15,16,["H8141"]],[16,18,["H8549"]]]},{"k":4641,"v":[[0,4,["H4503"]],[4,8,["H5262"]],[8,11,["H6499"]],[11,14,["H352"]],[14,18,["H3532"]],[18,24,["H4557"]],[24,27,["H4941"]]]},{"k":4642,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,7,["H2403"]],[7,8,["H4480","H905"]],[8,10,["H8548"]],[10,12,["H5930"]],[12,15,["H4503"]],[15,19,["H5262"]]]},{"k":4643,"v":[[0,3,["H8066"]],[3,4,["H3117"]],[4,7,["H1961"]],[7,10,["H6116"]],[10,13,["H6213"]],[13,14,["H3808","H3605"]],[14,15,["H5656"]],[15,16,["H4399"]],[16,17,[]]]},{"k":4644,"v":[[0,4,["H7126"]],[4,7,["H5930"]],[7,12,["H801"]],[12,15,["H5207"]],[15,16,["H7381"]],[16,19,["H3068"]],[19,20,["H259"]],[20,21,["H6499"]],[21,22,["H259"]],[22,23,["H352"]],[23,24,["H7651"]],[24,25,["H3532"]],[25,28,["H1121"]],[28,29,["H8141"]],[29,31,["H8549"]]]},{"k":4645,"v":[[0,3,["H4503"]],[3,7,["H5262"]],[7,10,["H6499"]],[10,13,["H352"]],[13,17,["H3532"]],[17,23,["H4557"]],[23,26,["H4941"]]]},{"k":4646,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,7,["H2403"]],[7,8,["H4480","H905"]],[8,10,["H8548"]],[10,12,["H5930"]],[12,16,["H4503"]],[16,20,["H5262"]]]},{"k":4647,"v":[[0,1,["H428"]],[1,5,["H6213"]],[5,8,["H3068"]],[8,12,["H4150"]],[12,13,["H905"]],[13,15,["H4480","H5088"]],[15,19,["H5071"]],[19,23,["H5930"]],[23,28,["H4503"]],[28,33,["H5262"]],[33,38,["H8002"]]]},{"k":4648,"v":[[0,2,["H4872"]],[2,3,["H559","H413"]],[3,5,["H1121"]],[5,7,["H3478"]],[7,10,["H3605"]],[10,11,["H834"]],[11,13,["H3068"]],[13,14,["H6680","(H853)"]],[14,15,["H4872"]]]},{"k":4649,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,4,["H413"]],[4,6,["H7218"]],[6,9,["H4294"]],[9,12,["H1121"]],[12,14,["H3478"]],[14,15,["H559"]],[15,16,["H2088"]],[16,19,["H1697"]],[19,20,["H834"]],[20,22,["H3068"]],[22,24,["H6680"]]]},{"k":4650,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,4,["H5087"]],[4,6,["H5088"]],[6,9,["H3068"]],[9,10,["H176"]],[10,11,["H7650"]],[11,13,["H7621"]],[13,15,["H631","H5921"]],[15,17,["H5315"]],[17,20,["H632"]],[20,23,["H3808"]],[23,24,["H2490"]],[24,26,["H1697"]],[26,29,["H6213"]],[29,32,["H3605"]],[32,35,["H3318"]],[35,38,["H4480","H6310"]]]},{"k":4651,"v":[[0,1,["H3588"]],[1,3,["H802"]],[3,5,["H5087"]],[5,7,["H5088"]],[7,10,["H3068"]],[10,12,["H631"]],[12,16,["H632"]],[16,20,["H1"]],[20,21,["H1004"]],[21,24,["H5271"]]]},{"k":4652,"v":[[0,3,["H1"]],[3,4,["H8085","(H853)"]],[4,6,["H5088"]],[6,9,["H632"]],[9,10,["H834"]],[10,13,["H631","H5921"]],[13,15,["H5315"]],[15,18,["H1"]],[18,22,["H2790"]],[22,26,["H3605"]],[26,28,["H5088"]],[28,30,["H6965"]],[30,32,["H3605"]],[32,33,["H632"]],[33,34,["H834"]],[34,37,["H631","H5921"]],[37,39,["H5315"]],[39,41,["H6965"]]]},{"k":4653,"v":[[0,2,["H518"]],[2,4,["H1"]],[4,5,["H5106"]],[5,9,["H3117"]],[9,12,["H8085"]],[12,13,["H3808"]],[13,14,["H3605"]],[14,17,["H5088"]],[17,21,["H632"]],[21,22,["H834"]],[22,25,["H631","H5921"]],[25,27,["H5315"]],[27,29,["H6965"]],[29,32,["H3068"]],[32,34,["H5545"]],[34,36,["H3588"]],[36,38,["H1"]],[38,39,["H5106"]],[39,40,[]]]},{"k":4654,"v":[[0,2,["H518"]],[2,6,["H1961","H1961"]],[6,8,["H376"]],[8,11,["H5088","H5921"]],[11,12,["H176"]],[12,13,["H4008"]],[13,18,["H8193"]],[18,19,["H834"]],[19,21,["H631","H5921"]],[21,23,["H5315"]]]},{"k":4655,"v":[[0,3,["H376"]],[3,4,["H8085"]],[4,9,["H2790"]],[9,14,["H3117"]],[14,17,["H8085"]],[17,21,["H5088"]],[21,23,["H6965"]],[23,26,["H632"]],[26,27,["H834"]],[27,29,["H631","H5921"]],[29,31,["H5315"]],[31,33,["H6965"]]]},{"k":4656,"v":[[0,2,["H518"]],[2,4,["H376"]],[4,5,["H5106"]],[5,9,["H3117"]],[9,12,["H8085"]],[12,17,["(H853)"]],[17,19,["H5088"]],[19,22,["H834","H5921"]],[22,27,["H4008"]],[27,30,["H8193"]],[30,31,["H834"]],[31,33,["H631","H5921"]],[33,35,["H5315"]],[35,38,["H6565"]],[38,41,["H3068"]],[41,43,["H5545"]],[43,44,[]]]},{"k":4657,"v":[[0,2,["H3605"]],[2,3,["H5088"]],[3,6,["H490"]],[6,12,["H1644"]],[12,13,["H834"]],[13,16,["H631","H5921"]],[16,18,["H5315"]],[18,20,["H6965"]],[20,21,["H5921"]],[21,22,[]]]},{"k":4658,"v":[[0,2,["H518"]],[2,4,["H5087"]],[4,7,["H376"]],[7,8,["H1004"]],[8,9,["H176"]],[9,10,["H631","H5921"]],[10,12,["H5315"]],[12,15,["H632"]],[15,18,["H7621"]]]},{"k":4659,"v":[[0,3,["H376"]],[3,4,["H8085"]],[4,9,["H2790"]],[9,13,["H5106"]],[13,15,["H3808"]],[15,17,["H3605"]],[17,19,["H5088"]],[19,21,["H6965"]],[21,23,["H3605"]],[23,24,["H632"]],[24,25,["H834"]],[25,27,["H631","H5921"]],[27,29,["H5315"]],[29,31,["H6965"]]]},{"k":4660,"v":[[0,2,["H518"]],[2,4,["H376"]],[4,9,["H6565","H6565","(H853)"]],[9,12,["H3117"]],[12,14,["H8085"]],[14,17,["H3605"]],[17,19,["H4161"]],[19,22,["H8193"]],[22,25,["H5088"]],[25,29,["H632"]],[29,32,["H5315"]],[32,34,["H3808"]],[34,35,["H6965"]],[35,37,["H376"]],[37,41,["H6565"]],[41,44,["H3068"]],[44,46,["H5545"]],[46,47,[]]]},{"k":4661,"v":[[0,1,["H3605"]],[1,2,["H5088"]],[2,4,["H3605"]],[4,5,["H632"]],[5,6,["H7621"]],[6,8,["H6031"]],[8,10,["H5315"]],[10,12,["H376"]],[12,14,["H6965"]],[14,18,["H376"]],[18,22,["H6565"]]]},{"k":4662,"v":[[0,2,["H518"]],[2,4,["H376"]],[4,8,["H2790","H2790"]],[8,12,["H4480","H3117"]],[12,13,["H413"]],[13,14,["H3117"]],[14,17,["H6965","(H853)"]],[17,18,["H3605"]],[18,20,["H5088"]],[20,21,["H176","(H853)"]],[21,22,["H3605"]],[22,24,["H632"]],[24,25,["H834"]],[25,27,["H5921"]],[27,30,["H6965"]],[30,32,["H3588"]],[32,36,["H2790"]],[36,41,["H3117"]],[41,44,["H8085"]],[44,45,[]]]},{"k":4663,"v":[[0,2,["H518"]],[2,9,["H6565","H6565","(H853)"]],[9,11,["H310"]],[11,14,["H8085"]],[14,19,["H5375","(H853)"]],[19,21,["H5771"]]]},{"k":4664,"v":[[0,1,["H428"]],[1,4,["H2706"]],[4,5,["H834"]],[5,7,["H3068"]],[7,8,["H6680","(H853)"]],[8,9,["H4872"]],[9,10,["H996"]],[10,12,["H376"]],[12,15,["H802"]],[15,16,["H996"]],[16,18,["H1"]],[18,21,["H1323"]],[21,26,["H5271"]],[26,29,["H1"]],[29,30,["H1004"]]]},{"k":4665,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4666,"v":[[0,1,["H5358","H5360"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,6,["H4480","H854"]],[6,8,["H4084"]],[8,9,["H310"]],[9,13,["H622"]],[13,14,["H413"]],[14,16,["H5971"]]]},{"k":4667,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H559"]],[7,8,["H2502"]],[8,9,["H376"]],[9,11,["H4480","H854"]],[11,14,["H6635"]],[14,18,["H1961"]],[18,19,["H5921"]],[19,21,["H4080"]],[21,23,["H5414","H5360"]],[23,25,["H3068"]],[25,27,["H4080"]]]},{"k":4668,"v":[[0,5,["H4294","H505","H4294","H505"]],[5,7,["H3605"]],[7,9,["H4294"]],[9,11,["H3478"]],[11,14,["H7971"]],[14,17,["H6635"]]]},{"k":4669,"v":[[0,4,["H4560"]],[4,8,["H4480","H505"]],[8,10,["H3478"]],[10,12,["H505"]],[12,15,["H4294"]],[15,16,["H8147","H6240"]],[16,17,["H505"]],[17,18,["H2502"]],[18,20,["H6635"]]]},{"k":4670,"v":[[0,2,["H4872"]],[2,3,["H7971"]],[3,7,["H6635"]],[7,9,["H505"]],[9,12,["H4294"]],[12,15,["H6372"]],[15,17,["H1121"]],[17,19,["H499"]],[19,21,["H3548"]],[21,24,["H6635"]],[24,27,["H6944"]],[27,28,["H3627"]],[28,31,["H2689"]],[31,33,["H8643"]],[33,36,["H3027"]]]},{"k":4671,"v":[[0,3,["H6633"]],[3,4,["H5921"]],[4,6,["H4080"]],[6,7,["H834"]],[7,9,["H3068"]],[9,10,["H6680","(H853)"]],[10,11,["H4872"]],[11,14,["H2026"]],[14,15,["H3605"]],[15,17,["H2145"]]]},{"k":4672,"v":[[0,3,["H2026"]],[3,5,["H4428"]],[5,7,["H4080"]],[7,8,["H5921"]],[8,15,["H2491"]],[15,16,["(H853)"]],[16,17,["H189"]],[17,19,["H7552"]],[19,21,["H6698"]],[21,23,["H2354"]],[23,25,["H7254"]],[25,26,["H2568"]],[26,27,["H4428"]],[27,29,["H4080"]],[29,30,["H1109"]],[30,33,["H1121"]],[33,35,["H1160"]],[35,37,["H2026"]],[37,40,["H2719"]]]},{"k":4673,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["(H853)"]],[7,9,["H802"]],[9,11,["H4080"]],[11,12,["H7617"]],[12,16,["H2945"]],[16,20,["H962"]],[20,22,["H3605"]],[22,24,["H929"]],[24,26,["H3605"]],[26,28,["H4735"]],[28,30,["H3605"]],[30,32,["H2428"]]]},{"k":4674,"v":[[0,3,["H8313"]],[3,4,["H3605"]],[4,6,["H5892"]],[6,9,["H4186"]],[9,11,["H3605"]],[11,14,["H2918"]],[14,16,["H784"]]]},{"k":4675,"v":[[0,3,["H3947","(H853)"]],[3,4,["H3605"]],[4,6,["H7998"]],[6,8,["H3605"]],[8,10,["H4455"]],[10,13,["H120"]],[13,16,["H929"]]]},{"k":4676,"v":[[0,3,["H935","(H853)"]],[3,5,["H7628"]],[5,8,["H4455"]],[8,11,["H7998"]],[11,12,["H413"]],[12,13,["H4872"]],[13,15,["H499"]],[15,17,["H3548"]],[17,19,["H413"]],[19,21,["H5712"]],[21,24,["H1121"]],[24,26,["H3478"]],[26,27,["H413"]],[27,29,["H4264"]],[29,30,["H413"]],[30,32,["H6160"]],[32,34,["H4124"]],[34,35,["H834"]],[35,37,["H5921"]],[37,38,["H3383"]],[38,40,["H3405"]]]},{"k":4677,"v":[[0,2,["H4872"]],[2,4,["H499"]],[4,6,["H3548"]],[6,8,["H3605"]],[8,10,["H5387"]],[10,13,["H5712"]],[13,15,["H3318"]],[15,17,["H7125"]],[17,19,["H413","H4480","H2351"]],[19,21,["H4264"]]]},{"k":4678,"v":[[0,2,["H4872"]],[2,4,["H7107"]],[4,5,["H5921"]],[5,7,["H6485"]],[7,10,["H2428"]],[10,13,["H8269"]],[13,15,["H505"]],[15,17,["H8269"]],[17,19,["H3967"]],[19,21,["H935"]],[21,24,["H4480","H6635","H4421"]]]},{"k":4679,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,12,["H2421","H3605","H5347"]]]},{"k":4680,"v":[[0,1,["H2005"]],[1,2,["H2007"]],[2,3,["H1961"]],[3,5,["H1121"]],[5,7,["H3478"]],[7,10,["H1697"]],[10,12,["H1109"]],[12,14,["H4560"]],[14,15,["H4604"]],[15,18,["H3068"]],[18,19,["H5921"]],[19,21,["H1697"]],[21,23,["H6465"]],[23,26,["H1961"]],[26,28,["H4046"]],[28,31,["H5712"]],[31,34,["H3068"]]]},{"k":4681,"v":[[0,1,["H6258"]],[1,3,["H2026"]],[3,4,["H3605"]],[4,5,["H2145"]],[5,9,["H2945"]],[9,11,["H2026"]],[11,12,["H3605"]],[12,13,["H802"]],[13,16,["H3045"]],[16,17,["H376"]],[17,19,["H4904"]],[19,21,["H2145"]]]},{"k":4682,"v":[[0,2,["H3605"]],[2,4,["H802"]],[4,5,["H2945"]],[5,6,["H834"]],[6,8,["H3808"]],[8,9,["H3045"]],[9,11,["H2145"]],[11,13,["H4904"]],[13,17,["H2421"]],[17,19,[]]]},{"k":4683,"v":[[0,3,["H859"]],[3,4,["H2583"]],[4,5,["H4480","H2351"]],[5,7,["H4264"]],[7,8,["H7651"]],[8,9,["H3117"]],[9,10,["H3605"]],[10,12,["H2026"]],[12,14,["H5315"]],[14,16,["H3605"]],[16,18,["H5060"]],[18,20,["H2491"]],[20,21,["H2398"]],[21,23,["H859"]],[23,26,["H7628"]],[26,29,["H7992"]],[29,30,["H3117"]],[30,34,["H7637"]],[34,35,["H3117"]]]},{"k":4684,"v":[[0,2,["H2398"]],[2,3,["H3605"]],[3,5,["H899"]],[5,7,["H3605"]],[7,10,["H3627"]],[10,12,["H5785"]],[12,14,["H3605"]],[14,15,["H4639"]],[15,17,["H5795"]],[17,20,["H3605"]],[20,21,["H3627"]],[21,24,["H6086"]]]},{"k":4685,"v":[[0,2,["H499"]],[2,4,["H3548"]],[4,5,["H559"]],[5,6,["H413"]],[6,8,["H376"]],[8,10,["H6635"]],[10,12,["H935"]],[12,15,["H4421"]],[15,16,["H2063"]],[16,19,["H2708"]],[19,22,["H8451"]],[22,23,["H834"]],[23,25,["H3068"]],[25,26,["H6680","(H853)"]],[26,27,["H4872"]]]},{"k":4686,"v":[[0,1,["H389","(H853)"]],[1,3,["H2091"]],[3,6,["H3701","(H853)"]],[6,8,["H5178","(H853)"]],[8,10,["H1270","(H853)"]],[10,12,["H913"]],[12,15,["H5777"]]]},{"k":4687,"v":[[0,1,["H3605"]],[1,2,["H1697"]],[2,3,["H834"]],[3,5,["H935"]],[5,7,["H784"]],[7,12,["H5674"]],[12,15,["H784"]],[15,20,["H2891"]],[20,21,["H389"]],[21,25,["H2398"]],[25,28,["H4325"]],[28,30,["H5079"]],[30,32,["H3605"]],[32,33,["H834"]],[33,34,["H935"]],[34,35,["H3808"]],[35,37,["H784"]],[37,41,["H5674"]],[41,44,["H4325"]]]},{"k":4688,"v":[[0,4,["H3526"]],[4,6,["H899"]],[6,9,["H7637"]],[9,10,["H3117"]],[10,15,["H2891"]],[15,17,["H310"]],[17,20,["H935"]],[20,21,["H413"]],[21,23,["H4264"]]]},{"k":4689,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4690,"v":[[0,1,["H5375","(H853)"]],[1,3,["H7218"]],[3,6,["H4455"]],[6,9,["H7628"]],[9,12,["H120"]],[12,15,["H929"]],[15,16,["H859"]],[16,18,["H499"]],[18,20,["H3548"]],[20,23,["H7218"]],[23,24,["H1"]],[24,27,["H5712"]]]},{"k":4691,"v":[[0,2,["H2673","(H853)"]],[2,4,["H4455"]],[4,8,["H996"]],[8,11,["H8610"]],[11,13,["H4421"]],[13,18,["H3318"]],[18,20,["H6635"]],[20,22,["H996"]],[22,23,["H3605"]],[23,25,["H5712"]]]},{"k":4692,"v":[[0,2,["H7311"]],[2,4,["H4371"]],[4,7,["H3068"]],[7,8,["H4480","H854"]],[8,10,["H376"]],[10,12,["H4421"]],[12,15,["H3318"]],[15,17,["H6635"]],[17,18,["H259"]],[18,19,["H5315"]],[19,21,["H4480","H2568"]],[21,22,["H3967"]],[22,24,["H4480"]],[24,26,["H120"]],[26,28,["H4480"]],[28,30,["H1241"]],[30,32,["H4480"]],[32,34,["H2543"]],[34,36,["H4480"]],[36,38,["H6629"]]]},{"k":4693,"v":[[0,1,["H3947"]],[1,5,["H4480","H4276"]],[5,7,["H5414"]],[7,10,["H499"]],[10,12,["H3548"]],[12,16,["H8641"]],[16,19,["H3068"]]]},{"k":4694,"v":[[0,4,["H1121"]],[4,6,["H3478"]],[6,7,["H4480","H4276"]],[7,10,["H3947"]],[10,11,["H259"]],[11,12,["H270"]],[12,13,["H4480"]],[13,14,["H2572"]],[14,15,["H4480"]],[15,17,["H120"]],[17,18,["H4480"]],[18,20,["H1241"]],[20,21,["H4480"]],[21,23,["H2543"]],[23,25,["H4480"]],[25,27,["H6629"]],[27,30,["H4480","H3605"]],[30,32,["H929"]],[32,34,["H5414"]],[34,38,["H3881"]],[38,40,["H8104"]],[40,42,["H4931"]],[42,45,["H4908"]],[45,48,["H3068"]]]},{"k":4695,"v":[[0,2,["H4872"]],[2,4,["H499"]],[4,6,["H3548"]],[6,7,["H6213"]],[7,8,["H834"]],[8,10,["H3068"]],[10,11,["H6680","(H853)"]],[11,12,["H4872"]]]},{"k":4696,"v":[[0,3,["H4455"]],[3,6,["H3499"]],[6,9,["H957"]],[9,10,["H834"]],[10,12,["H5971"]],[12,14,["H6635"]],[14,16,["H962"]],[16,17,["H1961"]],[17,18,["H8337"]],[18,19,["H3967"]],[19,20,["H505"]],[20,22,["H7657"]],[22,23,["H505"]],[23,25,["H2568"]],[25,26,["H505"]],[26,27,["H6629"]]]},{"k":4697,"v":[[0,4,["H8147","H7657"]],[4,5,["H505"]],[5,6,["H1241"]]]},{"k":4698,"v":[[0,2,["H8346"]],[2,4,["H259"]],[4,5,["H505"]],[5,6,["H2543"]]]},{"k":4699,"v":[[0,2,["H7970"]],[2,4,["H8147"]],[4,5,["H505"]],[5,6,["H5315","H120"]],[6,8,["H3605","H5315"]],[8,9,["H4480"]],[9,10,["H802"]],[10,11,["H834"]],[11,13,["H3808"]],[13,14,["H3045"]],[14,18,["H4904"]],[18,19,["H2145"]]]},{"k":4700,"v":[[0,3,["H4275"]],[3,7,["H2506"]],[7,12,["H3318"]],[12,14,["H6635"]],[14,15,["H1961"]],[15,17,["H4557"]],[17,18,["H7969"]],[18,19,["H3967"]],[19,20,["H505"]],[20,22,["H7651"]],[22,24,["H7970"]],[24,25,["H505"]],[25,27,["H2568"]],[27,28,["H3967"]],[28,29,["H6629"]]]},{"k":4701,"v":[[0,3,["H3068"]],[3,4,["H4371"]],[4,5,["H4480"]],[5,7,["H6629"]],[7,8,["H1961"]],[8,9,["H8337"]],[9,10,["H3967"]],[10,14,["H2568","H7657"]]]},{"k":4702,"v":[[0,3,["H1241"]],[3,5,["H7970"]],[5,7,["H8337"]],[7,8,["H505"]],[8,12,["H3068"]],[12,13,["H4371"]],[13,17,["H8147","H7657"]]]},{"k":4703,"v":[[0,3,["H2543"]],[3,5,["H7970"]],[5,6,["H505"]],[6,8,["H2568"]],[8,9,["H3967"]],[9,13,["H3068"]],[13,14,["H4371"]],[14,16,["H8346"]],[16,18,["H259"]]]},{"k":4704,"v":[[0,3,["H5315","H120"]],[3,5,["H8337","H6240"]],[5,6,["H505"]],[6,10,["H3068"]],[10,11,["H4371"]],[11,13,["H7970"]],[13,15,["H8147"]],[15,16,["H5315"]]]},{"k":4705,"v":[[0,2,["H4872"]],[2,3,["H5414","(H853)"]],[3,5,["H4371"]],[5,9,["H3068"]],[9,11,["H8641"]],[11,13,["H499"]],[13,15,["H3548"]],[15,16,["H834"]],[16,18,["H3068"]],[18,19,["H6680","(H853)"]],[19,20,["H4872"]]]},{"k":4706,"v":[[0,4,["H1121"]],[4,6,["H3478"]],[6,7,["H4480","H4276"]],[7,8,["H834"]],[8,9,["H4872"]],[9,10,["H2673"]],[10,11,["H4480"]],[11,13,["H376"]],[13,15,["H6633"]]]},{"k":4707,"v":[[0,3,["H4275"]],[3,8,["H5712"]],[8,9,["H1961"]],[9,10,["H7969"]],[10,11,["H3967"]],[11,12,["H505"]],[12,14,["H7970"]],[14,15,["H505"]],[15,17,["H7651"]],[17,18,["H505"]],[18,20,["H2568"]],[20,21,["H3967"]],[21,22,["H6629"]]]},{"k":4708,"v":[[0,2,["H7970"]],[2,4,["H8337"]],[4,5,["H505"]],[5,6,["H1241"]]]},{"k":4709,"v":[[0,2,["H7970"]],[2,3,["H505"]],[3,4,["H2543"]],[4,6,["H2568"]],[6,7,["H3967"]]]},{"k":4710,"v":[[0,2,["H8337","H6240"]],[2,3,["H505"]],[3,4,["H5315","H120"]]]},{"k":4711,"v":[[0,4,["H1121"]],[4,6,["H3478"]],[6,7,["H4480","H4276"]],[7,8,["H4872"]],[8,9,["H3947"]],[9,10,["H259","(H853)"]],[10,11,["H270"]],[11,12,["H4480"]],[12,13,["H2572"]],[13,15,["H4480"]],[15,16,["H120"]],[16,18,["H4480"]],[18,19,["H929"]],[19,21,["H5414"]],[21,25,["H3881"]],[25,27,["H8104"]],[27,29,["H4931"]],[29,32,["H4908"]],[32,35,["H3068"]],[35,36,["H834"]],[36,38,["H3068"]],[38,39,["H6680","(H853)"]],[39,40,["H4872"]]]},{"k":4712,"v":[[0,3,["H6485"]],[3,4,["H834"]],[4,7,["H505"]],[7,10,["H6635"]],[10,12,["H8269"]],[12,14,["H505"]],[14,16,["H8269"]],[16,18,["H3967"]],[18,20,["H7126"]],[20,21,["H413"]],[21,22,["H4872"]]]},{"k":4713,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H4872"]],[5,7,["H5650"]],[7,9,["H5375","(H853)"]],[9,11,["H7218"]],[11,14,["H376"]],[14,16,["H4421"]],[16,17,["H834"]],[17,21,["H3027"]],[21,24,["H6485"]],[24,25,["H3808"]],[25,27,["H376"]],[27,28,["H4480"]],[28,29,[]]]},{"k":4714,"v":[[0,4,["H7126","(H853)"]],[4,6,["H7133"]],[6,9,["H3068"]],[9,10,["H834"]],[10,12,["H376"]],[12,14,["H4672"]],[14,16,["H3627"]],[16,18,["H2091"]],[18,19,["H685"]],[19,21,["H6781"]],[21,22,["H2885"]],[22,23,["H5694"]],[23,25,["H3558"]],[25,29,["H3722"]],[29,30,["H5921"]],[30,32,["H5315"]],[32,33,["H6440"]],[33,35,["H3068"]]]},{"k":4715,"v":[[0,2,["H4872"]],[2,4,["H499"]],[4,6,["H3548"]],[6,7,["H3947","(H853)"]],[7,9,["H2091"]],[9,10,["H4480","H854"]],[10,13,["H3605"]],[13,14,["H4639"]],[14,15,["H3627"]]]},{"k":4716,"v":[[0,2,["H3605"]],[2,4,["H2091"]],[4,7,["H8641"]],[7,8,["H834"]],[8,11,["H7311"]],[11,14,["H3068"]],[14,15,["H4480","H854"]],[15,17,["H8269"]],[17,19,["H505"]],[19,21,["H4480","H854"]],[21,23,["H8269"]],[23,25,["H3967"]],[25,26,["H1961"]],[26,27,["H8337","H6240"]],[27,28,["H505"]],[28,29,["H7651"]],[29,30,["H3967"]],[30,32,["H2572"]],[32,33,["H8255"]]]},{"k":4717,"v":[[0,3,["H376"]],[3,5,["H6635"]],[5,8,["H962"]],[8,10,["H376"]],[10,12,[]]]},{"k":4718,"v":[[0,2,["H4872"]],[2,4,["H499"]],[4,6,["H3548"]],[6,7,["H3947","(H853)"]],[7,9,["H2091"]],[9,10,["H4480","H854"]],[10,12,["H8269"]],[12,14,["H505"]],[14,17,["H3967"]],[17,19,["H935"]],[19,21,["H413"]],[21,23,["H168"]],[23,26,["H4150"]],[26,29,["H2146"]],[29,32,["H1121"]],[32,34,["H3478"]],[34,35,["H6440"]],[35,37,["H3068"]]]},{"k":4719,"v":[[0,3,["H1121"]],[3,5,["H7205"]],[5,8,["H1121"]],[8,10,["H1410"]],[10,11,["H1961"]],[11,13,["H3966"]],[13,14,["H6099"]],[14,15,["H7227"]],[15,17,["H4735"]],[17,21,["H7200","(H853)"]],[21,23,["H776"]],[23,25,["H3270"]],[25,28,["H776"]],[28,30,["H1568"]],[30,32,["H2009"]],[32,34,["H4725"]],[34,37,["H4725"]],[37,39,["H4735"]]]},{"k":4720,"v":[[0,2,["H1121"]],[2,4,["H1410"]],[4,7,["H1121"]],[7,9,["H7205"]],[9,10,["H935"]],[10,12,["H559"]],[12,13,["H413"]],[13,14,["H4872"]],[14,16,["H413"]],[16,17,["H499"]],[17,19,["H3548"]],[19,21,["H413"]],[21,23,["H5387"]],[23,26,["H5712"]],[26,27,["H559"]]]},{"k":4721,"v":[[0,1,["H5852"]],[1,3,["H1769"]],[3,5,["H3270"]],[5,7,["H5247"]],[7,9,["H2809"]],[9,11,["H500"]],[11,13,["H7643"]],[13,15,["H5015"]],[15,17,["H1194"]]]},{"k":4722,"v":[[0,3,["H776"]],[3,4,["H834"]],[4,6,["H3068"]],[6,7,["H5221"]],[7,8,["H6440"]],[8,10,["H5712"]],[10,12,["H3478"]],[12,15,["H776"]],[15,17,["H4735"]],[17,20,["H5650"]],[20,22,["H4735"]]]},{"k":4723,"v":[[0,2,["H559"]],[2,4,["H518"]],[4,7,["H4672"]],[7,8,["H2580"]],[8,11,["H5869"]],[11,12,["(H853)"]],[12,13,["H2063"]],[13,14,["H776"]],[14,16,["H5414"]],[16,19,["H5650"]],[19,22,["H272"]],[22,27,["H5674","H408","(H853)"]],[27,28,["H3383"]]]},{"k":4724,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,6,["H1121"]],[6,8,["H1410"]],[8,12,["H1121"]],[12,14,["H7205"]],[14,17,["H251"]],[17,18,["H935"]],[18,20,["H4421"]],[20,23,["H859"]],[23,24,["H3427"]],[24,25,["H6311"]]]},{"k":4725,"v":[[0,2,["H4100"]],[2,3,["H5106"]],[3,4,["(H853)"]],[4,6,["H3820"]],[6,9,["H1121"]],[9,11,["H3478"]],[11,14,["H4480","H5674"]],[14,15,["H413"]],[15,17,["H776"]],[17,18,["H834"]],[18,20,["H3068"]],[20,22,["H5414"]],[22,23,[]]]},{"k":4726,"v":[[0,1,["H3541"]],[1,2,["H6213"]],[2,4,["H1"]],[4,7,["H7971"]],[7,10,["H4480","H6947"]],[10,12,["H7200","(H853)"]],[12,14,["H776"]]]},{"k":4727,"v":[[0,5,["H5927"]],[5,6,["H5704"]],[6,8,["H5158"]],[8,10,["H812"]],[10,12,["H7200","(H853)"]],[12,14,["H776"]],[14,16,["H5106","(H853)"]],[16,18,["H3820"]],[18,21,["H1121"]],[21,23,["H3478"]],[23,27,["H1115"]],[27,28,["H935"]],[28,29,["H413"]],[29,31,["H776"]],[31,32,["H834"]],[32,34,["H3068"]],[34,36,["H5414"]],[36,37,[]]]},{"k":4728,"v":[[0,3,["H3068"]],[3,4,["H639"]],[4,6,["H2734"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H7650"]],[12,13,["H559"]]]},{"k":4729,"v":[[0,1,["H518"]],[1,5,["H376"]],[5,8,["H5927"]],[8,11,["H4480","H4714"]],[11,13,["H6242"]],[13,14,["H8141"]],[14,15,["H4480","H1121"]],[15,17,["H4605"]],[17,19,["H7200","(H853)"]],[19,21,["H127"]],[21,22,["H834"]],[22,24,["H7650"]],[24,26,["H85"]],[26,28,["H3327"]],[28,31,["H3290"]],[31,32,["H3588"]],[32,35,["H3808"]],[35,36,["H4390"]],[36,37,["H310"]],[37,38,[]]]},{"k":4730,"v":[[0,1,["H1115"]],[1,2,["H3612"]],[2,4,["H1121"]],[4,6,["H3312"]],[6,8,["H7074"]],[8,10,["H3091"]],[10,12,["H1121"]],[12,14,["H5126"]],[14,15,["H3588"]],[15,18,["H4390"]],[18,19,["H310"]],[19,21,["H3068"]]]},{"k":4731,"v":[[0,3,["H3068"]],[3,4,["H639"]],[4,6,["H2734"]],[6,8,["H3478"]],[8,13,["H5128"]],[13,16,["H4057"]],[16,17,["H705"]],[17,18,["H8141"]],[18,19,["H5704"]],[19,20,["H3605"]],[20,22,["H1755"]],[22,25,["H6213"]],[25,26,["H7451"]],[26,29,["H5869"]],[29,32,["H3068"]],[32,34,["H8552"]]]},{"k":4732,"v":[[0,2,["H2009"]],[2,6,["H6965"]],[6,10,["H8478","H1"]],[10,12,["H8635"]],[12,14,["H2400"]],[14,15,["H376"]],[15,17,["H5595","H5921"]],[17,18,["H5750"]],[18,20,["H2740"]],[20,21,["H639"]],[21,24,["H3068"]],[24,25,["H413"]],[25,26,["H3478"]]]},{"k":4733,"v":[[0,1,["H3588"]],[1,5,["H7725"]],[5,7,["H4480","H310"]],[7,11,["H5750"]],[11,12,["H3254"]],[12,13,["H5117"]],[13,17,["H4057"]],[17,21,["H7843"]],[21,22,["H3605"]],[22,23,["H2088"]],[23,24,["H5971"]]]},{"k":4734,"v":[[0,4,["H5066"]],[4,5,["H413"]],[5,8,["H559"]],[8,11,["H1129"]],[11,12,["H1448","H6629"]],[12,13,["H6311"]],[13,16,["H4735"]],[16,18,["H5892"]],[18,22,["H2945"]]]},{"k":4735,"v":[[0,2,["H587"]],[2,7,["H2502","H2363"]],[7,8,["H6440"]],[8,10,["H1121"]],[10,12,["H3478"]],[12,13,["H5704","H834","H518"]],[13,16,["H935"]],[16,18,["H413"]],[18,20,["H4725"]],[20,24,["H2945"]],[24,26,["H3427"]],[26,29,["H4013"]],[29,30,["H5892"]],[30,31,["H4480","H6440"]],[31,34,["H3427"]],[34,37,["H776"]]]},{"k":4736,"v":[[0,3,["H3808"]],[3,4,["H7725"]],[4,5,["H413"]],[5,7,["H1004"]],[7,8,["H5704"]],[8,10,["H1121"]],[10,12,["H3478"]],[12,14,["H5157"]],[14,16,["H376"]],[16,18,["H5159"]]]},{"k":4737,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H5157"]],[5,6,["H854"]],[6,10,["H4480","H5676"]],[10,11,["H3383"]],[11,13,["H1973"]],[13,14,["H3588"]],[14,16,["H5159"]],[16,18,["H935"]],[18,19,["H413"]],[19,23,["H4480","H5676"]],[23,24,["H3383"]],[24,25,["H4217"]]]},{"k":4738,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H518"]],[6,9,["H6213","(H853)"]],[9,10,["H2088"]],[10,11,["H1697"]],[11,12,["H518"]],[12,16,["H2502"]],[16,17,["H6440"]],[17,19,["H3068"]],[19,21,["H4421"]]]},{"k":4739,"v":[[0,3,["H5674"]],[3,4,["H3605"]],[4,7,["H2502"]],[7,8,["(H853)"]],[8,9,["H3383"]],[9,10,["H6440"]],[10,12,["H3068"]],[12,13,["H5704"]],[13,17,["H3423","(H853)"]],[17,19,["H341"]],[19,21,["H4480","H6440"]],[21,22,[]]]},{"k":4740,"v":[[0,3,["H776"]],[3,5,["H3533"]],[5,6,["H6440"]],[6,8,["H3068"]],[8,10,["H310"]],[10,13,["H7725"]],[13,15,["H1961"]],[15,16,["H5355"]],[16,19,["H4480","H3068"]],[19,22,["H4480","H3478"]],[22,24,["H2063"]],[24,25,["H776"]],[25,27,["H1961"]],[27,29,["H272"]],[29,30,["H6440"]],[30,32,["H3068"]]]},{"k":4741,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H6213"]],[6,7,["H3651"]],[7,8,["H2009"]],[8,11,["H2398"]],[11,14,["H3068"]],[14,17,["H3045"]],[17,19,["H2403"]],[19,23,["H4672","(H853)"]]]},{"k":4742,"v":[[0,1,["H1129"]],[1,3,["H5892"]],[3,7,["H2945"]],[7,9,["H1448"]],[9,12,["H6792"]],[12,14,["H6213"]],[14,19,["H3318"]],[19,22,["H4480","H6310"]]]},{"k":4743,"v":[[0,3,["H1121"]],[3,5,["H1410"]],[5,8,["H1121"]],[8,10,["H7205"]],[10,11,["H559"]],[11,12,["H413"]],[12,13,["H4872"]],[13,14,["H559"]],[14,16,["H5650"]],[16,18,["H6213"]],[18,19,["H834"]],[19,21,["H113"]],[21,22,["H6680"]]]},{"k":4744,"v":[[0,3,["H2945"]],[3,5,["H802"]],[5,7,["H4735"]],[7,9,["H3605"]],[9,11,["H929"]],[11,13,["H1961"]],[13,14,["H8033"]],[14,17,["H5892"]],[17,19,["H1568"]]]},{"k":4745,"v":[[0,3,["H5650"]],[3,6,["H5674"]],[6,8,["H3605"]],[8,9,["H2502"]],[9,11,["H6635"]],[11,12,["H6440"]],[12,14,["H3068"]],[14,16,["H4421"]],[16,17,["H834"]],[17,19,["H113"]],[19,20,["H1696"]]]},{"k":4746,"v":[[0,4,["H4872"]],[4,5,["H6680","(H853)"]],[5,6,["H499"]],[6,8,["H3548"]],[8,10,["H3091"]],[10,12,["H1121"]],[12,14,["H5126"]],[14,17,["H7218"]],[17,18,["H1"]],[18,21,["H4294"]],[21,24,["H1121"]],[24,26,["H3478"]]]},{"k":4747,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H518"]],[6,8,["H1121"]],[8,10,["H1410"]],[10,13,["H1121"]],[13,15,["H7205"]],[15,20,["H5674","H854","(H853)"]],[20,21,["H3383"]],[21,23,["H3605"]],[23,24,["H2502"]],[24,26,["H4421"]],[26,27,["H6440"]],[27,29,["H3068"]],[29,32,["H776"]],[32,35,["H3533"]],[35,36,["H6440"]],[36,41,["H5414"]],[41,42,["(H853)"]],[42,44,["H776"]],[44,46,["H1568"]],[46,49,["H272"]]]},{"k":4748,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,7,["H5674"]],[7,8,["H854"]],[8,10,["H2502"]],[10,14,["H270"]],[14,15,["H8432"]],[15,19,["H776"]],[19,21,["H3667"]]]},{"k":4749,"v":[[0,3,["H1121"]],[3,5,["H1410"]],[5,8,["H1121"]],[8,10,["H7205"]],[10,11,["H6030"]],[11,12,["H559","(H853)"]],[12,13,["H834"]],[13,15,["H3068"]],[15,17,["H1696"]],[17,18,["H413"]],[18,20,["H5650"]],[20,21,["H3651"]],[21,24,["H6213"]]]},{"k":4750,"v":[[0,1,["H5168"]],[1,4,["H5674"]],[4,5,["H2502"]],[5,6,["H6440"]],[6,8,["H3068"]],[8,11,["H776"]],[11,13,["H3667"]],[13,16,["H272"]],[16,19,["H5159"]],[19,22,["H4480","H5676"]],[22,23,["H3383"]],[23,26,[]]]},{"k":4751,"v":[[0,2,["H4872"]],[2,3,["H5414"]],[3,9,["H1121"]],[9,11,["H1410"]],[11,15,["H1121"]],[15,17,["H7205"]],[17,20,["H2677"]],[20,22,["H7626"]],[22,24,["H4519"]],[24,26,["H1121"]],[26,28,["H3130","(H853)"]],[28,30,["H4467"]],[30,32,["H5511"]],[32,33,["H4428"]],[33,36,["H567"]],[36,39,["H4467"]],[39,41,["H5747"]],[41,42,["H4428"]],[42,44,["H1316"]],[44,46,["H776"]],[46,49,["H5892"]],[49,53,["H1367"]],[53,56,["H5892"]],[56,59,["H776"]],[59,61,["H5439"]]]},{"k":4752,"v":[[0,3,["H1121"]],[3,5,["H1410"]],[5,6,["H1129","(H853)"]],[6,7,["H1769"]],[7,9,["H5852"]],[9,11,["H6177"]]]},{"k":4753,"v":[[0,2,["H5852"]],[2,3,["H5855"]],[3,5,["H3270"]],[5,7,["H3011"]]]},{"k":4754,"v":[[0,2,["H1039"]],[2,4,["H1028"]],[4,5,["H4013"]],[5,6,["H5892"]],[6,8,["H1448"]],[8,10,["H6629"]]]},{"k":4755,"v":[[0,3,["H1121"]],[3,5,["H7205"]],[5,6,["H1129","(H853)"]],[6,7,["H2809"]],[7,9,["H500"]],[9,11,["H7156"]]]},{"k":4756,"v":[[0,2,["H5015"]],[2,4,["H1186"]],[4,6,["H8034"]],[6,8,["H5437"]],[8,9,["(H853)"]],[9,10,["H7643"]],[10,14,["H7121","H8034","(H853)","H8034"]],[14,17,["H5892"]],[17,18,["H834"]],[18,20,["H1129"]]]},{"k":4757,"v":[[0,3,["H1121"]],[3,5,["H4353"]],[5,7,["H1121"]],[7,9,["H4519"]],[9,10,["H1980"]],[10,12,["H1568"]],[12,14,["H3920"]],[14,17,["H3423","(H853)"]],[17,19,["H567"]],[19,20,["H834"]],[20,23,[]]]},{"k":4758,"v":[[0,2,["H4872"]],[2,3,["H5414","(H853)"]],[3,4,["H1568"]],[4,6,["H4353"]],[6,8,["H1121"]],[8,10,["H4519"]],[10,13,["H3427"]],[13,14,[]]]},{"k":4759,"v":[[0,2,["H2971"]],[2,4,["H1121"]],[4,6,["H4519"]],[6,7,["H1980"]],[7,9,["H3920","(H853)"]],[9,12,["H2333"]],[12,15,["H7121"]],[15,17,["H2334"]]]},{"k":4760,"v":[[0,2,["H5025"]],[2,3,["H1980"]],[3,5,["H3920","(H853)"]],[5,6,["H7079"]],[6,9,["H1323"]],[9,12,["H7121"]],[12,14,["H5025"]],[14,18,["H8034"]]]},{"k":4761,"v":[[0,1,["H428"]],[1,4,["H4550"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,10,["H834"]],[10,12,["H3318"]],[12,16,["H4480","H776"]],[16,18,["H4714"]],[18,21,["H6635"]],[21,24,["H3027"]],[24,26,["H4872"]],[26,28,["H175"]]]},{"k":4762,"v":[[0,2,["H4872"]],[2,3,["H3789","(H853)"]],[3,6,["H4161"]],[6,10,["H4550"]],[10,11,["H5921"]],[11,13,["H6310"]],[13,16,["H3068"]],[16,18,["H428"]],[18,21,["H4550"]],[21,26,["H4161"]]]},{"k":4763,"v":[[0,3,["H5265"]],[3,5,["H4480","H7486"]],[5,8,["H7223"]],[8,9,["H2320"]],[9,12,["H2568","H6240"]],[12,13,["H3117"]],[13,16,["H7223"]],[16,17,["H2320"]],[17,20,["H4480","H4283"]],[20,23,["H6453"]],[23,25,["H1121"]],[25,27,["H3478"]],[27,29,["H3318"]],[29,32,["H7311"]],[32,33,["H3027"]],[33,36,["H5869"]],[36,38,["H3605"]],[38,40,["H4714"]]]},{"k":4764,"v":[[0,3,["H4714"]],[3,4,["H6912"]],[4,5,["H3605"]],[5,7,["H1060","(H853)"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H5221"]],[12,17,["H430"]],[17,20,["H3068"]],[20,21,["H6213"]],[21,22,["H8201"]]]},{"k":4765,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5265"]],[6,8,["H4480","H7486"]],[8,10,["H2583"]],[10,12,["H5523"]]]},{"k":4766,"v":[[0,3,["H5265"]],[3,5,["H4480","H5523"]],[5,7,["H2583"]],[7,9,["H864"]],[9,10,["H834"]],[10,14,["H7097"]],[14,17,["H4057"]]]},{"k":4767,"v":[[0,3,["H5265"]],[3,5,["H4480","H864"]],[5,8,["H7725"]],[8,9,["H5921"]],[9,10,["H6367"]],[10,11,["H834"]],[11,13,["H5921","H6440"]],[13,14,["H1189"]],[14,17,["H2583"]],[17,18,["H6440"]],[18,19,["H4024"]]]},{"k":4768,"v":[[0,3,["H5265"]],[3,5,["H4480","H6440"]],[5,6,["H6367"]],[6,9,["H5674"]],[9,11,["H8432"]],[11,14,["H3220"]],[14,17,["H4057"]],[17,19,["H1980"]],[19,20,["H7969"]],[20,21,["H3117"]],[21,22,["H1870"]],[22,25,["H4057"]],[25,27,["H864"]],[27,29,["H2583"]],[29,31,["H4785"]]]},{"k":4769,"v":[[0,3,["H5265"]],[3,5,["H4480","H4785"]],[5,7,["H935"]],[7,9,["H362"]],[9,12,["H362"]],[12,14,["H8147","H6240"]],[14,15,["H5869"]],[15,17,["H4325"]],[17,21,["H7657"]],[21,23,["H8558"]],[23,26,["H2583"]],[26,27,["H8033"]]]},{"k":4770,"v":[[0,3,["H5265"]],[3,5,["H4480","H362"]],[5,7,["H2583"]],[7,8,["H5921"]],[8,10,["H5488"]],[10,11,["H3220"]]]},{"k":4771,"v":[[0,3,["H5265"]],[3,6,["H5488"]],[6,7,["H4480","H3220"]],[7,9,["H2583"]],[9,12,["H4057"]],[12,14,["H5512"]]]},{"k":4772,"v":[[0,5,["H5265"]],[5,9,["H4480","H4057"]],[9,11,["H5512"]],[11,13,["H2583"]],[13,15,["H1850"]]]},{"k":4773,"v":[[0,3,["H5265"]],[3,5,["H4480","H1850"]],[5,7,["H2583"]],[7,9,["H442"]]]},{"k":4774,"v":[[0,3,["H5265"]],[3,5,["H4480","H442"]],[5,7,["H2583"]],[7,9,["H7508"]],[9,10,["H8033"]],[10,11,["H1961"]],[11,12,["H3808"]],[12,13,["H4325"]],[13,16,["H5971"]],[16,18,["H8354"]]]},{"k":4775,"v":[[0,3,["H5265"]],[3,5,["H4480","H7508"]],[5,7,["H2583"]],[7,10,["H4057"]],[10,12,["H5514"]]]},{"k":4776,"v":[[0,3,["H5265"]],[3,6,["H4480","H4057"]],[6,8,["H5514"]],[8,10,["H2583"]],[10,12,["H6914"]]]},{"k":4777,"v":[[0,3,["H5265"]],[3,5,["H4480","H6914"]],[5,7,["H2583"]],[7,9,["H2698"]]]},{"k":4778,"v":[[0,3,["H5265"]],[3,5,["H4480","H2698"]],[5,7,["H2583"]],[7,9,["H7575"]]]},{"k":4779,"v":[[0,3,["H5265"]],[3,5,["H4480","H7575"]],[5,7,["H2583"]],[7,9,["H7428"]]]},{"k":4780,"v":[[0,3,["H5265"]],[3,5,["H4480","H7428"]],[5,7,["H2583"]],[7,9,["H3841"]]]},{"k":4781,"v":[[0,3,["H5265"]],[3,5,["H4480","H3841"]],[5,7,["H2583"]],[7,9,["H7446"]]]},{"k":4782,"v":[[0,3,["H5265"]],[3,5,["H4480","H7446"]],[5,7,["H2583"]],[7,9,["H6954"]]]},{"k":4783,"v":[[0,3,["H5265"]],[3,5,["H4480","H6954"]],[5,7,["H2583"]],[7,9,["H2022"]],[9,10,["H8234"]]]},{"k":4784,"v":[[0,3,["H5265"]],[3,5,["H4480","H2022"]],[5,6,["H8234"]],[6,8,["H2583"]],[8,10,["H2732"]]]},{"k":4785,"v":[[0,3,["H5265"]],[3,5,["H4480","H2732"]],[5,7,["H2583"]],[7,9,["H4722"]]]},{"k":4786,"v":[[0,3,["H5265"]],[3,5,["H4480","H4722"]],[5,7,["H2583"]],[7,9,["H8480"]]]},{"k":4787,"v":[[0,3,["H5265"]],[3,5,["H4480","H8480"]],[5,7,["H2583"]],[7,9,["H8646"]]]},{"k":4788,"v":[[0,3,["H5265"]],[3,5,["H4480","H8646"]],[5,7,["H2583"]],[7,9,["H4989"]]]},{"k":4789,"v":[[0,3,["H5265"]],[3,5,["H4480","H4989"]],[5,7,["H2583"]],[7,9,["H2832"]]]},{"k":4790,"v":[[0,3,["H5265"]],[3,5,["H4480","H2832"]],[5,7,["H2583"]],[7,9,["H4149"]]]},{"k":4791,"v":[[0,3,["H5265"]],[3,5,["H4480","H4149"]],[5,7,["H2583"]],[7,9,["H1142"]]]},{"k":4792,"v":[[0,3,["H5265"]],[3,5,["H4480","H1142"]],[5,7,["H2583"]],[7,9,["H2735"]]]},{"k":4793,"v":[[0,3,["H5265"]],[3,5,["H4480","H2735"]],[5,7,["H2583"]],[7,9,["H3193"]]]},{"k":4794,"v":[[0,3,["H5265"]],[3,5,["H4480","H3193"]],[5,7,["H2583"]],[7,9,["H5684"]]]},{"k":4795,"v":[[0,3,["H5265"]],[3,5,["H4480","H5684"]],[5,7,["H2583"]],[7,9,["H6100"]]]},{"k":4796,"v":[[0,3,["H5265"]],[3,5,["H4480","H6100"]],[5,7,["H2583"]],[7,10,["H4057"]],[10,12,["H6790"]],[12,13,["H1931"]],[13,15,["H6946"]]]},{"k":4797,"v":[[0,3,["H5265"]],[3,5,["H4480","H6946"]],[5,7,["H2583"]],[7,9,["H2022"]],[9,10,["H2023"]],[10,13,["H7097"]],[13,16,["H776"]],[16,18,["H123"]]]},{"k":4798,"v":[[0,2,["H175"]],[2,4,["H3548"]],[4,6,["H5927"]],[6,7,["H413"]],[7,8,["H2022"]],[8,9,["H2023"]],[9,10,["H5921"]],[10,12,["H6310"]],[12,15,["H3068"]],[15,17,["H4191"]],[17,18,["H8033"]],[18,21,["H705"]],[21,22,["H8141"]],[22,25,["H1121"]],[25,27,["H3478"]],[27,30,["H3318"]],[30,33,["H4480","H776"]],[33,35,["H4714"]],[35,38,["H259"]],[38,42,["H2549"]],[42,43,["H2320"]]]},{"k":4799,"v":[[0,2,["H175"]],[2,5,["H3967"]],[5,7,["H6242"]],[7,9,["H7969"]],[9,10,["H8141"]],[10,11,["H1121"]],[11,14,["H4194"]],[14,16,["H2022"]],[16,17,["H2023"]]]},{"k":4800,"v":[[0,2,["H4428"]],[2,3,["H6166"]],[3,5,["H3669"]],[5,6,["H1931"]],[6,7,["H3427"]],[7,10,["H5045"]],[10,13,["H776"]],[13,15,["H3667"]],[15,16,["H8085"]],[16,19,["H935"]],[19,22,["H1121"]],[22,24,["H3478"]]]},{"k":4801,"v":[[0,3,["H5265"]],[3,5,["H2022"]],[5,6,["H4480","H2023"]],[6,8,["H2583"]],[8,10,["H6758"]]]},{"k":4802,"v":[[0,3,["H5265"]],[3,5,["H4480","H6758"]],[5,7,["H2583"]],[7,9,["H6325"]]]},{"k":4803,"v":[[0,3,["H5265"]],[3,5,["H4480","H6325"]],[5,7,["H2583"]],[7,9,["H88"]]]},{"k":4804,"v":[[0,3,["H5265"]],[3,5,["H4480","H88"]],[5,7,["H2583"]],[7,9,["H5863"]],[9,12,["H1366"]],[12,14,["H4124"]]]},{"k":4805,"v":[[0,3,["H5265"]],[3,5,["H4480","H5864"]],[5,7,["H2583"]],[7,9,["H1769"]]]},{"k":4806,"v":[[0,3,["H5265"]],[3,5,["H4480","H1769"]],[5,7,["H2583"]],[7,9,["H5963"]]]},{"k":4807,"v":[[0,3,["H5265"]],[3,5,["H4480","H5963"]],[5,7,["H2583"]],[7,10,["H2022"]],[10,12,["H5682"]],[12,13,["H6440"]],[13,14,["H5015"]]]},{"k":4808,"v":[[0,3,["H5265"]],[3,6,["H4480","H2022"]],[6,8,["H5682"]],[8,10,["H2583"]],[10,13,["H6160"]],[13,15,["H4124"]],[15,16,["H5921"]],[16,17,["H3383"]],[17,19,["H3405"]]]},{"k":4809,"v":[[0,3,["H2583"]],[3,4,["H5921"]],[4,5,["H3383"]],[5,7,["H4480","H1020"]],[7,9,["H5704"]],[9,10,["H63"]],[10,13,["H6160"]],[13,15,["H4124"]]]},{"k":4810,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H6160"]],[9,11,["H4124"]],[11,12,["H5921"]],[12,13,["H3383"]],[13,15,["H3405"]],[15,16,["H559"]]]},{"k":4811,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H3588"]],[11,12,["H859"]],[12,15,["H5674","(H853)"]],[15,16,["H3383"]],[16,17,["H413"]],[17,19,["H776"]],[19,21,["H3667"]]]},{"k":4812,"v":[[0,5,["H3423","(H853)"]],[5,6,["H3605"]],[6,8,["H3427"]],[8,11,["H776"]],[11,13,["H4480","H6440"]],[13,16,["H6","(H853)"]],[16,17,["H3605"]],[17,19,["H4906"]],[19,21,["H6"]],[21,22,["H3605"]],[22,24,["H4541"]],[24,25,["H6754"]],[25,29,["H8045"]],[29,30,["H3605"]],[30,33,["H1116"]]]},{"k":4813,"v":[[0,4,["H3423"]],[4,6,["(H853)"]],[6,9,["H776"]],[9,11,["H3427"]],[11,13,["H3588"]],[13,16,["H5414"]],[16,17,["(H853)"]],[17,19,["H776"]],[19,21,["H3423"]],[21,22,[]]]},{"k":4814,"v":[[0,4,["H5157","(H853)"]],[4,6,["H776"]],[6,8,["H1486"]],[8,14,["H4940"]],[14,18,["H7227"]],[18,23,["H7235","(H853)"]],[23,24,["H5159"]],[24,28,["H4592"]],[28,33,["H4591","(H853)"]],[33,34,["H5159"]],[34,39,["H1961"]],[39,43,["H413","H834","H8033"]],[43,45,["H1486"]],[45,46,["H3318"]],[46,50,["H4294"]],[50,53,["H1"]],[53,56,["H5157"]]]},{"k":4815,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,7,["H3423","(H853)"]],[7,9,["H3427"]],[9,12,["H776"]],[12,14,["H4480","H6440"]],[14,21,["H1961"]],[21,24,["H834"]],[24,27,["H3498"]],[27,28,["H4480"]],[28,32,["H7899"]],[32,35,["H5869"]],[35,37,["H6796"]],[37,40,["H6654"]],[40,43,["H6887"]],[43,45,["H5921"]],[45,47,["H776"]],[47,48,["H834"]],[48,49,["H859"]],[49,50,["H3427"]]]},{"k":4816,"v":[[0,6,["H1961"]],[6,10,["H6213"]],[10,13,["H834"]],[13,15,["H1819"]],[15,17,["H6213"]],[17,19,[]]]},{"k":4817,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4818,"v":[[0,1,["H6680","(H853)"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,7,["H559"]],[7,8,["H413"]],[8,10,["H3588"]],[10,11,["H859"]],[11,12,["H935"]],[12,13,["H413"]],[13,15,["H776"]],[15,17,["H3667"]],[17,18,["H2063"]],[18,21,["H776"]],[21,22,["H834"]],[22,24,["H5307"]],[24,29,["H5159"]],[29,32,["H776"]],[32,34,["H3667"]],[34,37,["H1367"]],[37,38,[]]]},{"k":4819,"v":[[0,3,["H5045"]],[3,4,["H6285"]],[4,6,["H1961"]],[6,9,["H4480","H4057"]],[9,11,["H6790"]],[11,13,["H5921"]],[13,15,["H3027"]],[15,17,["H123"]],[17,20,["H5045"]],[20,21,["H1366"]],[21,23,["H1961"]],[23,26,["H4480","H7097"]],[26,29,["H4417"]],[29,30,["H3220"]],[30,31,["H6924"]]]},{"k":4820,"v":[[0,3,["H1366"]],[3,5,["H5437"]],[5,8,["H4480","H5045"]],[8,11,["H4608"]],[11,13,["H6137"]],[13,16,["H5674"]],[16,18,["H6790"]],[18,22,["H8444"]],[22,25,["H1961"]],[25,28,["H4480","H5045"]],[28,30,["H6947"]],[30,34,["H3318"]],[34,36,["H2692"]],[36,39,["H5674"]],[39,41,["H6111"]]]},{"k":4821,"v":[[0,3,["H1366"]],[3,7,["H5437"]],[7,9,["H4480","H6111"]],[9,12,["H5158"]],[12,14,["H4714"]],[14,18,["H8444"]],[18,22,["H1961"]],[22,25,["H3220"]]]},{"k":4822,"v":[[0,5,["H3220"]],[5,6,["H1366"]],[6,10,["H1961"]],[10,12,["H1419"]],[12,13,["H3220"]],[13,16,["H1366"]],[16,17,["H2088"]],[17,19,["H1961"]],[19,21,["H3220"]],[21,22,["H1366"]]]},{"k":4823,"v":[[0,2,["H2088"]],[2,4,["H1961"]],[4,6,["H6828"]],[6,7,["H1366"]],[7,8,["H4480"]],[8,10,["H1419"]],[10,11,["H3220"]],[11,15,["H8376"]],[15,18,["H2022"]],[18,19,["H2023"]]]},{"k":4824,"v":[[0,2,["H2022"]],[2,3,["H4480","H2023"]],[3,7,["H8376"]],[7,12,["H935"]],[12,14,["H2574"]],[14,18,["H8444"]],[18,21,["H1366"]],[21,23,["H1961"]],[23,25,["H6657"]]]},{"k":4825,"v":[[0,3,["H1366"]],[3,6,["H3318"]],[6,8,["H2202"]],[8,12,["H8444"]],[12,16,["H1961"]],[16,18,["H2704"]],[18,19,["H2088"]],[19,21,["H1961"]],[21,23,["H6828"]],[23,24,["H1366"]]]},{"k":4826,"v":[[0,5,["H184"]],[5,7,["H6924"]],[7,8,["H1366"]],[8,10,["H4480","H2704"]],[10,12,["H8221"]]]},{"k":4827,"v":[[0,3,["H1366"]],[3,6,["H3381"]],[6,8,["H4480","H8221"]],[8,10,["H7247"]],[10,14,["H4480","H6924"]],[14,16,["H5871"]],[16,19,["H1366"]],[19,21,["H3381"]],[21,24,["H4229"]],[24,25,["H5921"]],[25,27,["H3802"]],[27,30,["H3220"]],[30,32,["H3672"]],[32,33,["H6924"]]]},{"k":4828,"v":[[0,3,["H1366"]],[3,6,["H3381"]],[6,8,["H3383"]],[8,12,["H8444"]],[12,16,["H1961"]],[16,19,["H4417"]],[19,20,["H3220"]],[20,21,["H2063"]],[21,23,["H1961"]],[23,25,["H776"]],[25,28,["H1367"]],[28,31,["H5439"]]]},{"k":4829,"v":[[0,2,["H4872"]],[2,3,["H6680","(H853)"]],[3,5,["H1121"]],[5,7,["H3478"]],[7,8,["H559"]],[8,9,["H2063"]],[9,12,["H776"]],[12,13,["H834"]],[13,16,["H5157"]],[16,18,["H1486"]],[18,19,["H834"]],[19,21,["H3068"]],[21,22,["H6680"]],[22,24,["H5414"]],[24,27,["H8672"]],[27,28,["H4294"]],[28,32,["H2677"]],[32,33,["H4294"]]]},{"k":4830,"v":[[0,1,["H3588"]],[1,3,["H4294"]],[3,6,["H1121"]],[6,8,["H7206"]],[8,12,["H1004"]],[12,15,["H1"]],[15,18,["H4294"]],[18,21,["H1121"]],[21,23,["H1410"]],[23,27,["H1004"]],[27,30,["H1"]],[30,32,["H3947"]],[32,36,["H2677"]],[36,38,["H4294"]],[38,40,["H4519"]],[40,42,["H3947"]],[42,44,["H5159"]]]},{"k":4831,"v":[[0,2,["H8147"]],[2,3,["H4294"]],[3,6,["H2677"]],[6,7,["H4294"]],[7,9,["H3947"]],[9,11,["H5159"]],[11,14,["H4480","H5676"]],[14,15,["H3383"]],[15,17,["H3405"]],[17,18,["H6924"]],[18,21,["H4217"]]]},{"k":4832,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4833,"v":[[0,1,["H428"]],[1,4,["H8034"]],[4,7,["H376"]],[7,8,["H834"]],[8,10,["H5157","(H853)"]],[10,12,["H776"]],[12,15,["H499"]],[15,17,["H3548"]],[17,19,["H3091"]],[19,21,["H1121"]],[21,23,["H5126"]]]},{"k":4834,"v":[[0,4,["H3947"]],[4,6,["H259","H5387","H259","H5387"]],[6,9,["H4480","H4294"]],[9,15,["H5157","(H853)","H776"]]]},{"k":4835,"v":[[0,3,["H8034"]],[3,6,["H376"]],[6,8,["H428"]],[8,11,["H4294"]],[11,13,["H3063"]],[13,14,["H3612"]],[14,16,["H1121"]],[16,18,["H3312"]]]},{"k":4836,"v":[[0,4,["H4294"]],[4,7,["H1121"]],[7,9,["H8095"]],[9,10,["H8050"]],[10,12,["H1121"]],[12,14,["H5989"]]]},{"k":4837,"v":[[0,3,["H4294"]],[3,5,["H1144"]],[5,6,["H449"]],[6,8,["H1121"]],[8,10,["H3692"]]]},{"k":4838,"v":[[0,3,["H5387"]],[3,6,["H4294"]],[6,9,["H1121"]],[9,11,["H1835"]],[11,12,["H1231"]],[12,14,["H1121"]],[14,16,["H3020"]]]},{"k":4839,"v":[[0,2,["H5387"]],[2,5,["H1121"]],[5,7,["H3130"]],[7,10,["H4294"]],[10,13,["H1121"]],[13,15,["H4519"]],[15,16,["H2592"]],[16,18,["H1121"]],[18,20,["H641"]]]},{"k":4840,"v":[[0,3,["H5387"]],[3,6,["H4294"]],[6,9,["H1121"]],[9,11,["H669"]],[11,12,["H7055"]],[12,14,["H1121"]],[14,16,["H8204"]]]},{"k":4841,"v":[[0,3,["H5387"]],[3,6,["H4294"]],[6,9,["H1121"]],[9,11,["H2074"]],[11,12,["H469"]],[12,14,["H1121"]],[14,16,["H6535"]]]},{"k":4842,"v":[[0,3,["H5387"]],[3,6,["H4294"]],[6,9,["H1121"]],[9,11,["H3485"]],[11,12,["H6409"]],[12,14,["H1121"]],[14,16,["H5821"]]]},{"k":4843,"v":[[0,3,["H5387"]],[3,6,["H4294"]],[6,9,["H1121"]],[9,11,["H836"]],[11,12,["H282"]],[12,14,["H1121"]],[14,16,["H8015"]]]},{"k":4844,"v":[[0,3,["H5387"]],[3,6,["H4294"]],[6,9,["H1121"]],[9,11,["H5321"]],[11,12,["H6300"]],[12,14,["H1121"]],[14,16,["H5989"]]]},{"k":4845,"v":[[0,1,["H428"]],[1,4,["H834"]],[4,6,["H3068"]],[6,7,["H6680"]],[7,11,["H5157","(H853)"]],[11,14,["H1121"]],[14,16,["H3478"]],[16,19,["H776"]],[19,21,["H3667"]]]},{"k":4846,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H6160"]],[9,11,["H4124"]],[11,12,["H5921"]],[12,13,["H3383"]],[13,15,["H3405"]],[15,16,["H559"]]]},{"k":4847,"v":[[0,1,["H6680","(H853)"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,8,["H5414"]],[8,11,["H3881"]],[11,14,["H4480","H5159"]],[14,17,["H272"]],[17,18,["H5892"]],[18,21,["H3427"]],[21,25,["H5414"]],[25,29,["H3881"]],[29,30,["H4054"]],[30,33,["H5892"]],[33,35,["H5439"]],[35,36,[]]]},{"k":4848,"v":[[0,3,["H5892"]],[3,6,["H1961"]],[6,9,["H3427"]],[9,12,["H4054"]],[12,16,["H1961"]],[16,19,["H929"]],[19,23,["H7399"]],[23,26,["H3605"]],[26,28,["H2416"]]]},{"k":4849,"v":[[0,3,["H4054"]],[3,6,["H5892"]],[6,7,["H834"]],[7,10,["H5414"]],[10,13,["H3881"]],[13,18,["H4480","H7023"]],[18,21,["H5892"]],[21,23,["H2351"]],[23,25,["H505"]],[25,26,["H520"]],[26,28,["H5439"]]]},{"k":4850,"v":[[0,4,["H4058"]],[4,6,["H4480","H2351"]],[6,8,["H5892"]],[8,9,["(H853)"]],[9,11,["H6924"]],[11,12,["H6285"]],[12,14,["H505"]],[14,15,["H520"]],[15,19,["H5045"]],[19,20,["H6285"]],[20,22,["H505"]],[22,23,["H520"]],[23,27,["H3220"]],[27,28,["H6285"]],[28,30,["H505"]],[30,31,["H520"]],[31,35,["H6828"]],[35,36,["H6285"]],[36,38,["H505"]],[38,39,["H520"]],[39,42,["H5892"]],[42,47,["H8432"]],[47,48,["H2088"]],[48,50,["H1961"]],[50,54,["H4054"]],[54,57,["H5892"]]]},{"k":4851,"v":[[0,2,["H854"]],[2,4,["H5892"]],[4,5,["H834"]],[5,8,["H5414"]],[8,11,["H3881"]],[11,14,["(H853)"]],[14,15,["H8337"]],[15,16,["H5892"]],[16,18,["H4733"]],[18,19,["H834"]],[19,22,["H5414"]],[22,25,["H7523"]],[25,29,["H5127"]],[29,30,["H8033"]],[30,32,["H5921"]],[32,36,["H5414"]],[36,37,["H705"]],[37,39,["H8147"]],[39,40,["H5892"]]]},{"k":4852,"v":[[0,2,["H3605"]],[2,4,["H5892"]],[4,5,["H834"]],[5,8,["H5414"]],[8,11,["H3881"]],[11,14,["H705"]],[14,16,["H8083"]],[16,17,["H5892"]],[17,22,["H854"]],[22,24,["H4054"]]]},{"k":4853,"v":[[0,3,["H5892"]],[3,4,["H834"]],[4,7,["H5414"]],[7,12,["H4480","H272"]],[12,15,["H1121"]],[15,17,["H3478"]],[17,18,["H4480","H854"]],[18,22,["H7227"]],[22,26,["H7235"]],[26,28,["H4480","H854"]],[28,32,["H4592"]],[32,36,["H4591"]],[36,38,["H376"]],[38,40,["H5414"]],[40,43,["H4480","H5892"]],[43,46,["H3881"]],[46,48,["H6310"]],[48,50,["H5159"]],[50,51,["H834"]],[51,53,["H5157"]]]},{"k":4854,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4855,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H3588"]],[11,12,["H859"]],[12,15,["H5674","(H853)"]],[15,16,["H3383"]],[16,19,["H776"]],[19,21,["H3667"]]]},{"k":4856,"v":[[0,4,["H7136"]],[4,6,["H5892"]],[6,8,["H1961"]],[8,9,["H5892"]],[9,11,["H4733"]],[11,16,["H7523"]],[16,18,["H5127"]],[18,19,["H8033"]],[19,21,["H5221"]],[21,23,["H5315"]],[23,25,["H7684"]]]},{"k":4857,"v":[[0,4,["H1961"]],[4,7,["H5892"]],[7,9,["H4733"]],[9,12,["H4480","H1350"]],[12,15,["H7523"]],[15,16,["H4191"]],[16,17,["H3808"]],[17,18,["H5704"]],[18,20,["H5975"]],[20,21,["H6440"]],[21,23,["H5712"]],[23,25,["H4941"]]]},{"k":4858,"v":[[0,4,["H5892"]],[4,5,["H834"]],[5,8,["H5414"]],[8,9,["H8337"]],[9,10,["H5892"]],[10,13,["H1961"]],[13,15,["H4733"]]]},{"k":4859,"v":[[0,3,["H5414","(H853)"]],[3,4,["H7969"]],[4,5,["H5892"]],[5,8,["H4480","H5676"]],[8,9,["H3383"]],[9,11,["H7969"]],[11,12,["H5892"]],[12,15,["H5414"]],[15,18,["H776"]],[18,20,["H3667"]],[20,23,["H1961"]],[23,24,["H5892"]],[24,26,["H4733"]]]},{"k":4860,"v":[[0,1,["H428"]],[1,2,["H8337"]],[2,3,["H5892"]],[3,5,["H1961"]],[5,7,["H4733"]],[7,11,["H1121"]],[11,13,["H3478"]],[13,17,["H1616"]],[17,21,["H8453"]],[21,22,["H8432"]],[22,26,["H3605"]],[26,28,["H5221"]],[28,30,["H5315"]],[30,31,["H7684"]],[31,33,["H5127"]],[33,34,["H8033"]]]},{"k":4861,"v":[[0,2,["H518"]],[2,4,["H5221"]],[4,8,["H3627"]],[8,10,["H1270"]],[10,14,["H4191"]],[14,15,["H1931"]],[15,18,["H7523"]],[18,20,["H7523"]],[20,26,["H4191","H4191"]]]},{"k":4862,"v":[[0,2,["H518"]],[2,4,["H5221"]],[4,7,["H3027"]],[7,9,["H68"]],[9,10,["H834"]],[10,13,["H4191"]],[13,16,["H4191"]],[16,17,["H1931"]],[17,20,["H7523"]],[20,22,["H7523"]],[22,28,["H4191","H4191"]]]},{"k":4863,"v":[[0,1,["H176"]],[1,4,["H5221"]],[4,8,["H3027"]],[8,9,["H3627"]],[9,11,["H6086"]],[11,12,["H834"]],[12,15,["H4191"]],[15,18,["H4191"]],[18,19,["H1931"]],[19,22,["H7523"]],[22,24,["H7523"]],[24,30,["H4191","H4191"]]]},{"k":4864,"v":[[0,2,["H1350"]],[2,4,["H1818"]],[4,5,["H1931"]],[5,7,["H4191","(H853)"]],[7,9,["H7523"]],[9,12,["H6293"]],[12,14,["H1931"]],[14,16,["H4191"]],[16,17,[]]]},{"k":4865,"v":[[0,2,["H518"]],[2,4,["H1920"]],[4,7,["H8135"]],[7,8,["H176"]],[8,9,["H7993"]],[9,10,["H5921"]],[10,15,["H6660"]],[15,18,["H4191"]]]},{"k":4866,"v":[[0,1,["H176"]],[1,3,["H342"]],[3,4,["H5221"]],[4,8,["H3027"]],[8,11,["H4191"]],[11,14,["H5221"]],[14,21,["H4191","H4191"]],[21,23,["H1931"]],[23,26,["H7523"]],[26,28,["H1350"]],[28,30,["H1818"]],[30,32,["H4191","(H853)"]],[32,34,["H7523"]],[34,37,["H6293"]],[37,38,[]]]},{"k":4867,"v":[[0,2,["H518"]],[2,4,["H1920"]],[4,6,["H6621"]],[6,7,["H3808"]],[7,8,["H342"]],[8,9,["H176"]],[9,11,["H7993"]],[11,12,["H5921"]],[12,15,["H3605","H3627"]],[15,16,["H3808"]],[16,19,["H6660"]]]},{"k":4868,"v":[[0,1,["H176"]],[1,3,["H3605"]],[3,4,["H68"]],[4,5,["H834"]],[5,9,["H4191"]],[9,10,["H7200"]],[10,12,["H3808"]],[12,14,["H5307"]],[14,16,["H5921"]],[16,20,["H4191"]],[20,23,["H3808"]],[23,25,["H341"]],[25,26,["H3808"]],[26,27,["H1245"]],[27,29,["H7451"]]]},{"k":4869,"v":[[0,3,["H5712"]],[3,5,["H8199"]],[5,6,["H996"]],[6,8,["H5221"]],[8,11,["H1350"]],[11,13,["H1818"]],[13,15,["H5921"]],[15,16,["H428"]],[16,17,["H4941"]]]},{"k":4870,"v":[[0,3,["H5712"]],[3,5,["H5337","(H853)"]],[5,7,["H7523"]],[7,11,["H4480","H3027"]],[11,14,["H1350"]],[14,16,["H1818"]],[16,19,["H5712"]],[19,21,["H7725"]],[21,23,["H413"]],[23,25,["H5892"]],[25,28,["H4733"]],[28,29,["H834","H8033"]],[29,32,["H5127"]],[32,36,["H3427"]],[36,39,["H5704"]],[39,41,["H4194"]],[41,44,["H1419"]],[44,45,["H3548"]],[45,46,["H834"]],[46,48,["H4886"]],[48,51,["H6944"]],[51,52,["H8081"]]]},{"k":4871,"v":[[0,2,["H518"]],[2,4,["H7523"]],[4,10,["H3318","H3318","(H853)"]],[10,12,["H1366"]],[12,15,["H5892"]],[15,18,["H4733"]],[18,19,["H834","H8033"]],[19,22,["H5127"]]]},{"k":4872,"v":[[0,3,["H1350"]],[3,5,["H1818"]],[5,6,["H4672"]],[6,8,["H4480","H2351"]],[8,10,["H1366"]],[10,13,["H5892"]],[13,16,["H4733"]],[16,19,["H1350"]],[19,21,["H1818"]],[21,22,["H7523","(H853)"]],[22,24,["H7523"]],[24,27,["H369"]],[27,31,["H1818"]]]},{"k":4873,"v":[[0,1,["H3588"]],[1,5,["H3427"]],[5,8,["H5892"]],[8,11,["H4733"]],[11,12,["H5704"]],[12,14,["H4194"]],[14,17,["H1419"]],[17,18,["H3548"]],[18,20,["H310"]],[20,22,["H4194"]],[22,25,["H1419"]],[25,26,["H3548"]],[26,28,["H7523"]],[28,30,["H7725"]],[30,31,["H413"]],[31,33,["H776"]],[33,36,["H272"]]]},{"k":4874,"v":[[0,2,["H428"]],[2,5,["H1961"]],[5,8,["H2708"]],[8,10,["H4941"]],[10,15,["H1755"]],[15,17,["H3605"]],[17,19,["H4186"]]]},{"k":4875,"v":[[0,1,["H3605"]],[1,2,["H5221"]],[2,4,["H5315","(H853)"]],[4,6,["H7523"]],[6,11,["H7523"]],[11,14,["H6310"]],[14,16,["H5707"]],[16,18,["H259"]],[18,19,["H5707"]],[19,21,["H3808"]],[21,22,["H6030"]],[22,25,["H5315"]],[25,30,["H4191"]]]},{"k":4876,"v":[[0,4,["H3947"]],[4,5,["H3808"]],[5,6,["H3724"]],[6,9,["H5315"]],[9,12,["H7523"]],[12,13,["H834"]],[13,15,["H7563"]],[15,17,["H4191"]],[17,18,["H3588"]],[18,25,["H4191","H4191"]]]},{"k":4877,"v":[[0,4,["H3947"]],[4,5,["H3808"]],[5,6,["H3724"]],[6,11,["H5127"]],[11,12,["H413"]],[12,14,["H5892"]],[14,17,["H4733"]],[17,22,["H7725"]],[22,24,["H3427"]],[24,27,["H776"]],[27,28,["H5704"]],[28,30,["H4194"]],[30,33,["H3548"]]]},{"k":4878,"v":[[0,4,["H3808"]],[4,5,["H2610","(H853)"]],[5,7,["H776"]],[7,8,["H834"]],[8,9,["H859"]],[9,11,["H3588"]],[11,12,["H1818"]],[12,13,["H1931"]],[13,14,["H2610","(H853)"]],[14,16,["H776"]],[16,19,["H776"]],[19,20,["H3808"]],[20,22,["H3722"]],[22,25,["H1818"]],[25,26,["H834"]],[26,28,["H8210"]],[28,30,["H3588","H518"]],[30,33,["H1818"]],[33,37,["H8210"]],[37,38,[]]]},{"k":4879,"v":[[0,1,["H2930"]],[1,2,["H3808"]],[2,3,["(H853)"]],[3,5,["H776"]],[5,6,["H834"]],[6,7,["H859"]],[7,9,["H3427"]],[9,10,["H834","H8432"]],[10,11,["H589"]],[11,12,["H7931"]],[12,13,["H3588"]],[13,14,["H589"]],[14,16,["H3068"]],[16,17,["H7931"]],[17,18,["H8432"]],[18,20,["H1121"]],[20,22,["H3478"]]]},{"k":4880,"v":[[0,3,["H7218"]],[3,4,["H1"]],[4,7,["H4940"]],[7,10,["H1121"]],[10,12,["H1568"]],[12,14,["H1121"]],[14,16,["H4353"]],[16,18,["H1121"]],[18,20,["H4519"]],[20,23,["H4480","H4940"]],[23,26,["H1121"]],[26,28,["H3130"]],[28,30,["H7126"]],[30,32,["H1696"]],[32,33,["H6440"]],[33,34,["H4872"]],[34,36,["H6440"]],[36,38,["H5387"]],[38,40,["H7218"]],[40,41,["H1"]],[41,44,["H1121"]],[44,46,["H3478"]]]},{"k":4881,"v":[[0,3,["H559"]],[3,5,["H3068"]],[5,6,["H6680","(H853)"]],[6,8,["H113"]],[8,10,["H5414","(H853)"]],[10,12,["H776"]],[12,15,["H5159"]],[15,17,["H1486"]],[17,20,["H1121"]],[20,22,["H3478"]],[22,25,["H113"]],[25,27,["H6680"]],[27,30,["H3068"]],[30,32,["H5414","(H853)"]],[32,34,["H5159"]],[34,36,["H6765"]],[36,38,["H251"]],[38,41,["H1323"]]]},{"k":4882,"v":[[0,5,["H1961","H802"]],[5,7,["H259"]],[7,10,["H4480","H1121"]],[10,14,["H7626"]],[14,17,["H1121"]],[17,19,["H3478"]],[19,23,["H5159"]],[23,25,["H1639"]],[25,28,["H4480","H5159"]],[28,31,["H1"]],[31,35,["H3254"]],[35,36,["H5921"]],[36,38,["H5159"]],[38,41,["H4294"]],[41,42,["H834"]],[42,45,["H1961"]],[45,50,["H1639"]],[50,53,["H4480","H1486"]],[53,56,["H5159"]]]},{"k":4883,"v":[[0,2,["H518"]],[2,4,["H3104"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,11,["H1961"]],[11,15,["H5159"]],[15,17,["H3254"]],[17,18,["H5921"]],[18,20,["H5159"]],[20,23,["H4294"]],[23,24,["H834"]],[24,27,["H1961"]],[27,31,["H5159"]],[31,34,["H1639"]],[34,37,["H4480","H5159"]],[37,40,["H4294"]],[40,43,["H1"]]]},{"k":4884,"v":[[0,2,["H4872"]],[2,3,["H6680","(H853)"]],[3,5,["H1121"]],[5,7,["H3478"]],[7,9,["H5921"]],[9,11,["H6310"]],[11,14,["H3068"]],[14,15,["H559"]],[15,17,["H4294"]],[17,20,["H1121"]],[20,22,["H3130"]],[22,24,["H1696"]],[24,25,["H3651"]]]},{"k":4885,"v":[[0,1,["H2088"]],[1,4,["H1697"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H6680"]],[9,12,["H1323"]],[12,14,["H6765"]],[14,15,["H559"]],[15,18,["H1961","H802"]],[18,23,["H2896","H5869"]],[23,24,["H389"]],[24,27,["H4940"]],[27,30,["H4294"]],[30,33,["H1"]],[33,36,["H1961","H802"]]]},{"k":4886,"v":[[0,3,["H3808"]],[3,5,["H5159"]],[5,8,["H1121"]],[8,10,["H3478"]],[10,11,["H5437"]],[11,13,["H4480","H4294"]],[13,14,["H413"]],[14,15,["H4294"]],[15,16,["H3588"]],[16,18,["H376"]],[18,21,["H1121"]],[21,23,["H3478"]],[23,25,["H1692"]],[25,29,["H5159"]],[29,32,["H4294"]],[32,35,["H1"]]]},{"k":4887,"v":[[0,2,["H3605"]],[2,3,["H1323"]],[3,5,["H3423"]],[5,7,["H5159"]],[7,10,["H4480","H4294"]],[10,13,["H1121"]],[13,15,["H3478"]],[15,17,["H1961"]],[17,18,["H802"]],[18,20,["H259"]],[20,23,["H4480","H4940"]],[23,26,["H4294"]],[26,29,["H1"]],[29,30,["H4616"]],[30,32,["H1121"]],[32,34,["H3478"]],[34,36,["H3423"]],[36,38,["H376"]],[38,40,["H5159"]],[40,43,["H1"]]]},{"k":4888,"v":[[0,1,["H3808"]],[1,4,["H5159"]],[4,5,["H5437"]],[5,8,["H4480","H4294"]],[8,10,["H312"]],[10,11,["H4294"]],[11,12,["H3588"]],[12,14,["H376"]],[14,17,["H4294"]],[17,20,["H1121"]],[20,22,["H3478"]],[22,24,["H1692"]],[24,29,["H5159"]]]},{"k":4889,"v":[[0,2,["H834"]],[2,4,["H3068"]],[4,5,["H6680","(H853)"]],[5,6,["H4872"]],[6,7,["H3651"]],[7,8,["H6213"]],[8,10,["H1323"]],[10,12,["H6765"]]]},{"k":4890,"v":[[0,2,["H4244"]],[2,3,["H8656"]],[3,5,["H2295"]],[5,7,["H4435"]],[7,9,["H5270"]],[9,11,["H1323"]],[11,13,["H6765"]],[13,15,["H1961","H802"]],[15,19,["H1730"]],[19,20,["H1121"]]]},{"k":4891,"v":[[0,4,["H1961","H802"]],[4,7,["H4480","H4940"]],[7,10,["H1121"]],[10,12,["H4519"]],[12,14,["H1121"]],[14,16,["H3130"]],[16,19,["H5159"]],[19,20,["H1961"]],[20,21,["H5921"]],[21,23,["H4294"]],[23,26,["H4940"]],[26,29,["H1"]]]},{"k":4892,"v":[[0,1,["H428"]],[1,4,["H4687"]],[4,7,["H4941"]],[7,8,["H834"]],[8,10,["H3068"]],[10,11,["H6680"]],[11,14,["H3027"]],[14,16,["H4872"]],[16,17,["H413"]],[17,19,["H1121"]],[19,21,["H3478"]],[21,24,["H6160"]],[24,26,["H4124"]],[26,27,["H5921"]],[27,28,["H3383"]],[28,30,["H3405"]]]},{"k":4893,"v":[[0,1,["H428"]],[1,4,["H1697"]],[4,5,["H834"]],[5,6,["H4872"]],[6,7,["H1696"]],[7,8,["H413"]],[8,9,["H3605"]],[9,10,["H3478"]],[10,13,["H5676"]],[13,14,["H3383"]],[14,17,["H4057"]],[17,20,["H6160"]],[20,22,["H4136"]],[22,24,["H5489"]],[24,26,["H996"]],[26,27,["H6290"]],[27,29,["H8603"]],[29,31,["H3837"]],[31,33,["H2698"]],[33,35,["H1774"]]]},{"k":4894,"v":[[0,3,["H259","H6240"]],[3,4,["H3117"]],[4,7,["H4480","H2722"]],[7,10,["H1870"]],[10,12,["H2022"]],[12,13,["H8165"]],[13,14,["H5704"]],[14,15,["H6947"]]]},{"k":4895,"v":[[0,5,["H1961"]],[5,8,["H705"]],[8,9,["H8141"]],[9,12,["H6249","H6240"]],[12,13,["H2320"]],[13,16,["H259"]],[16,20,["H2320"]],[20,22,["H4872"]],[22,23,["H1696"]],[23,24,["H413"]],[24,26,["H1121"]],[26,28,["H3478"]],[28,31,["H3605"]],[31,32,["H834"]],[32,34,["H3068"]],[34,39,["H6680","(H853)"]],[39,40,["H413"]],[40,41,[]]]},{"k":4896,"v":[[0,1,["H310"]],[1,4,["H5221","(H853)"]],[4,5,["H5511"]],[5,7,["H4428"]],[7,10,["H567"]],[10,11,["H834"]],[11,12,["H3427"]],[12,14,["H2809"]],[14,16,["H5747"]],[16,18,["H4428"]],[18,20,["H1316"]],[20,21,["H834"]],[21,22,["H3427"]],[22,24,["H6252"]],[24,26,["H154"]]]},{"k":4897,"v":[[0,3,["H5676"]],[3,4,["H3383"]],[4,7,["H776"]],[7,9,["H4124"]],[9,10,["H2974"]],[10,11,["H4872"]],[11,13,["H874","(H853)"]],[13,14,["H2063"]],[14,15,["H8451"]],[15,16,["H559"]]]},{"k":4898,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,5,["H1696"]],[5,6,["H413"]],[6,9,["H2722"]],[9,10,["H559"]],[10,13,["H3427"]],[13,15,["H7227"]],[15,17,["H2088"]],[17,18,["H2022"]]]},{"k":4899,"v":[[0,1,["H6437"]],[1,6,["H5265"]],[6,8,["H935"]],[8,11,["H2022"]],[11,14,["H567"]],[14,16,["H413"]],[16,17,["H3605"]],[17,20,["H7934"]],[20,24,["H6160"]],[24,27,["H2022"]],[27,31,["H8219"]],[31,35,["H5045"]],[35,39,["H3220"]],[39,40,["H2348"]],[40,43,["H776"]],[43,46,["H3669"]],[46,49,["H3844"]],[49,50,["H5704"]],[50,52,["H1419"]],[52,53,["H5104"]],[53,55,["H5104"]],[55,56,["H6578"]]]},{"k":4900,"v":[[0,1,["H7200"]],[1,4,["H5414","(H853)"]],[4,6,["H776"]],[6,7,["H6440"]],[7,10,["H935"]],[10,12,["H3423","(H853)"]],[12,14,["H776"]],[14,15,["H834"]],[15,17,["H3068"]],[17,18,["H7650"]],[18,21,["H1"]],[21,22,["H85"]],[22,23,["H3327"]],[23,25,["H3290"]],[25,27,["H5414"]],[27,33,["H2233"]],[33,34,["H310"]],[34,35,[]]]},{"k":4901,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H1931"]],[7,8,["H6256"]],[8,9,["H559"]],[9,13,["H3201","H3808"]],[13,15,["H5375"]],[15,18,["H905"]]]},{"k":4902,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,6,["H7235"]],[6,9,["H2009"]],[9,13,["H3117"]],[13,16,["H3556"]],[16,18,["H8064"]],[18,20,["H7230"]]]},{"k":4903,"v":[[0,2,["H3068"]],[2,3,["H430"]],[3,6,["H1"]],[6,10,["H505"]],[10,11,["H6471"]],[11,14,["H3254"]],[14,19,["H1288"]],[19,21,["H834"]],[21,24,["H1696"]],[24,25,[]]]},{"k":4904,"v":[[0,1,["H349"]],[1,5,["H905"]],[5,6,["H5375"]],[6,8,["H2960"]],[8,11,["H4853"]],[11,14,["H7379"]]]},{"k":4905,"v":[[0,1,["H3051"]],[1,3,["H2450"]],[3,4,["H376"]],[4,6,["H995"]],[6,8,["H3045"]],[8,11,["H7626"]],[11,15,["H7760"]],[15,17,["H7218"]],[17,19,[]]]},{"k":4906,"v":[[0,3,["H6030"]],[3,6,["H559"]],[6,8,["H1697"]],[8,9,["H834"]],[9,12,["H1696"]],[12,14,["H2896"]],[14,18,["H6213"]]]},{"k":4907,"v":[[0,3,["H3947","(H853)"]],[3,5,["H7218"]],[5,8,["H7626"]],[8,9,["H2450"]],[9,10,["H376"]],[10,12,["H3045"]],[12,14,["H5414"]],[14,16,["H7218"]],[16,17,["H5921"]],[17,19,["H8269"]],[19,21,["H505"]],[21,23,["H8269"]],[23,25,["H3967"]],[25,27,["H8269"]],[27,29,["H2572"]],[29,31,["H8269"]],[31,33,["H6235"]],[33,35,["H7860"]],[35,38,["H7626"]]]},{"k":4908,"v":[[0,3,["H6680","(H853)"]],[3,5,["H8199"]],[5,7,["H1931"]],[7,8,["H6256"]],[8,9,["H559"]],[9,10,["H8085"]],[10,13,["H996"]],[13,15,["H251"]],[15,17,["H8199"]],[17,18,["H6664"]],[18,19,["H996"]],[19,21,["H376"]],[21,24,["H251"]],[24,27,["H1616"]],[27,31,[]]]},{"k":4909,"v":[[0,3,["H3808"]],[3,4,["H5234"]],[4,5,["H6440"]],[5,7,["H4941"]],[7,11,["H8085"]],[11,13,["H6996"]],[13,18,["H1419"]],[18,21,["H3808"]],[21,23,["H1481"]],[23,26,["H4480","H6440"]],[26,28,["H376"]],[28,29,["H3588"]],[29,31,["H4941"]],[31,33,["H430"]],[33,36,["H1697"]],[36,37,["H834"]],[37,40,["H7185"]],[40,41,["H4480"]],[41,43,["H7126"]],[43,45,["H413"]],[45,50,["H8085"]],[50,51,[]]]},{"k":4910,"v":[[0,3,["H6680"]],[3,6,["H1931"]],[6,7,["H6256","(H853)"]],[7,8,["H3605"]],[8,10,["H1697"]],[10,11,["H834"]],[11,14,["H6213"]]]},{"k":4911,"v":[[0,4,["H5265"]],[4,6,["H4480","H2722"]],[6,9,["H1980","(H853)"]],[9,10,["H3605"]],[10,11,["H1931"]],[11,12,["H1419"]],[12,14,["H3372"]],[14,15,["H4057"]],[15,16,["H834"]],[16,18,["H7200"]],[18,21,["H1870"]],[21,24,["H2022"]],[24,27,["H567"]],[27,28,["H834"]],[28,30,["H3068"]],[30,32,["H430"]],[32,33,["H6680"]],[33,37,["H935"]],[37,38,["H5704"]],[38,39,["H6947"]]]},{"k":4912,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,8,["H935"]],[8,9,["H5704"]],[9,11,["H2022"]],[11,14,["H567"]],[14,15,["H834"]],[15,17,["H3068"]],[17,19,["H430"]],[19,21,["H5414"]],[21,23,[]]]},{"k":4913,"v":[[0,1,["H7200"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H5414","(H853)"]],[7,9,["H776"]],[9,10,["H6440"]],[10,13,["H5927"]],[13,15,["H3423"]],[15,17,["H834"]],[17,19,["H3068"]],[19,20,["H430"]],[20,23,["H1"]],[23,25,["H1696"]],[25,28,["H3372"]],[28,29,["H408"]],[29,30,["H408"]],[30,32,["H2865"]]]},{"k":4914,"v":[[0,4,["H7126"]],[4,5,["H413"]],[5,8,["H3605"]],[8,12,["H559"]],[12,15,["H7971"]],[15,16,["H376"]],[16,17,["H6440"]],[17,24,["H2658","(H853)"]],[24,26,["H776"]],[26,28,["H7725"]],[28,30,["H1697"]],[30,31,["(H853)"]],[31,33,["H834"]],[33,34,["H1870"]],[34,38,["H5927"]],[38,39,["(H853)"]],[39,40,["H413"]],[40,41,["H834"]],[41,42,["H5892"]],[42,45,["H935"]]]},{"k":4915,"v":[[0,3,["H1697"]],[3,6,["H3190","H5869"]],[6,9,["H3947"]],[9,10,["H8147","H6240"]],[10,11,["H376"]],[11,12,["H4480"]],[12,14,["H259"]],[14,17,["H7626"]]]},{"k":4916,"v":[[0,3,["H6437"]],[3,6,["H5927"]],[6,9,["H2022"]],[9,11,["H935"]],[11,12,["H5704"]],[12,14,["H5158"]],[14,16,["H812"]],[16,20,["H7270","(H853)"]]]},{"k":4917,"v":[[0,3,["H3947"]],[3,6,["H4480","H6529"]],[6,9,["H776"]],[9,12,["H3027"]],[12,16,["H3381"]],[16,17,["H413"]],[17,20,["H7725"]],[20,22,["H1697"]],[22,25,["H559"]],[25,29,["H2896"]],[29,30,["H776"]],[30,31,["H834"]],[31,33,["H3068"]],[33,35,["H430"]],[35,37,["H5414"]],[37,38,[]]]},{"k":4918,"v":[[0,3,["H14"]],[3,4,["H3808"]],[4,6,["H5927"]],[6,9,["H4784","(H853)"]],[9,11,["H6310"]],[11,14,["H3068"]],[14,16,["H430"]]]},{"k":4919,"v":[[0,3,["H7279"]],[3,6,["H168"]],[6,8,["H559"]],[8,11,["H3068"]],[11,12,["H8135"]],[12,18,["H3318"]],[18,22,["H4480","H776"]],[22,24,["H4714"]],[24,26,["H5414"]],[26,30,["H3027"]],[30,33,["H567"]],[33,35,["H8045"]],[35,36,[]]]},{"k":4920,"v":[[0,1,["H575"]],[1,3,["H587"]],[3,5,["H5927"]],[5,7,["H251"]],[7,9,["H4549","(H853)"]],[9,11,["H3824"]],[11,12,["H559"]],[12,14,["H5971"]],[14,16,["H1419"]],[16,18,["H7311"]],[18,19,["H4480"]],[19,22,["H5892"]],[22,24,["H1419"]],[24,26,["H1219"]],[26,29,["H8064"]],[29,31,["H1571"]],[31,34,["H7200"]],[34,36,["H1121"]],[36,39,["H6062"]],[39,40,["H8033"]]]},{"k":4921,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H6206"]],[6,7,["H3808"]],[7,8,["H3808"]],[8,10,["H3372"]],[10,11,["H4480"]],[11,12,[]]]},{"k":4922,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,6,["H1980"]],[6,7,["H6440"]],[7,9,["H1931"]],[9,11,["H3898"]],[11,16,["H3605"]],[16,17,["H834"]],[17,19,["H6213"]],[19,20,["H854"]],[20,23,["H4714"]],[23,26,["H5869"]]]},{"k":4923,"v":[[0,4,["H4057"]],[4,5,["H834"]],[5,8,["H7200"]],[8,10,["H834"]],[10,12,["H3068"]],[12,14,["H430"]],[14,15,["H5375"]],[15,17,["H834"]],[17,19,["H376"]],[19,21,["H5375","(H853)"]],[21,23,["H1121"]],[23,25,["H3605"]],[25,27,["H1870"]],[27,28,["H834"]],[28,30,["H1980"]],[30,31,["H5704"]],[31,33,["H935"]],[33,34,["H5704"]],[34,35,["H2088"]],[35,36,["H4725"]]]},{"k":4924,"v":[[0,3,["H2088"]],[3,4,["H1697"]],[4,7,["H369"]],[7,8,["H539"]],[8,10,["H3068"]],[10,12,["H430"]]]},{"k":4925,"v":[[0,2,["H1980"]],[2,5,["H1870"]],[5,6,["H6440"]],[6,11,["H8446"]],[11,13,["H4725"]],[13,17,["H2583"]],[17,20,["H784"]],[20,22,["H3915"]],[22,24,["H7200"]],[24,27,["H834"]],[27,28,["H1870"]],[28,31,["H1980"]],[31,35,["H6051"]],[35,37,["H3119"]]]},{"k":4926,"v":[[0,3,["H3068"]],[3,4,["H8085","(H853)"]],[4,6,["H6963"]],[6,9,["H1697"]],[9,12,["H7107"]],[12,14,["H7650"]],[14,15,["H559"]]]},{"k":4927,"v":[[0,1,["H518"]],[1,5,["H376"]],[5,7,["H428"]],[7,8,["H376"]],[8,10,["H2088"]],[10,11,["H7451"]],[11,12,["H1755"]],[12,13,["H7200","(H853)"]],[13,15,["H2896"]],[15,16,["H776"]],[16,17,["H834"]],[17,19,["H7650"]],[19,21,["H5414"]],[21,24,["H1"]]]},{"k":4928,"v":[[0,1,["H2108"]],[1,2,["H3612"]],[2,4,["H1121"]],[4,6,["H3312"]],[6,7,["H1931"]],[7,9,["H7200"]],[9,16,["H5414","(H853)"]],[16,18,["H776"]],[18,19,["H834"]],[19,22,["H1869"]],[22,27,["H1121"]],[27,28,["H3282","H834"]],[28,31,["H4390"]],[31,32,["H310"]],[32,34,["H3068"]]]},{"k":4929,"v":[[0,1,["H1571"]],[1,3,["H3068"]],[3,5,["H599"]],[5,10,["H1558"]],[10,11,["H559"]],[11,12,["H859"]],[12,13,["H1571"]],[13,15,["H3808"]],[15,17,["H935"]],[17,18,["H8033"]]]},{"k":4930,"v":[[0,2,["H3091"]],[2,4,["H1121"]],[4,6,["H5126"]],[6,8,["H5975"]],[8,9,["H6440"]],[9,11,["H1931"]],[11,14,["H935"]],[14,15,["H8033"]],[15,16,["H2388"]],[16,18,["H3588"]],[18,19,["H1931"]],[19,21,["(H853)"]],[21,22,["H3478"]],[22,24,["H5157"]],[24,25,[]]]},{"k":4931,"v":[[0,4,["H2945"]],[4,5,["H834"]],[5,7,["H559"]],[7,9,["H1961"]],[9,11,["H957"]],[11,14,["H1121"]],[14,15,["H834"]],[15,18,["H3117"]],[18,21,["H3045","H3808"]],[21,23,["H2896"]],[23,25,["H7451"]],[25,26,["H1992"]],[26,29,["H935"]],[29,30,["H8033"]],[30,36,["H5414"]],[36,39,["H1992"]],[39,41,["H3423"]],[41,42,[]]]},{"k":4932,"v":[[0,4,["H859"]],[4,5,["H6437"]],[5,10,["H5265"]],[10,13,["H4057"]],[13,16,["H1870"]],[16,19,["H5488"]],[19,20,["H3220"]]]},{"k":4933,"v":[[0,3,["H6030"]],[3,5,["H559"]],[5,6,["H413"]],[6,10,["H2398"]],[10,13,["H3068"]],[13,14,["H587"]],[14,17,["H5927"]],[17,19,["H3898"]],[19,22,["H3605"]],[22,23,["H834"]],[23,25,["H3068"]],[25,27,["H430"]],[27,28,["H6680"]],[28,35,["H2296"]],[35,37,["H376","(H853)"]],[37,39,["H3627"]],[39,41,["H4421"]],[41,44,["H1951"]],[44,47,["H5927"]],[47,50,["H2022"]]]},{"k":4934,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H559"]],[7,12,["H5927","H3808"]],[12,13,["H3808"]],[13,14,["H3898"]],[14,15,["H3588"]],[15,18,["H369"]],[18,19,["H7130"]],[19,21,["H3808"]],[21,24,["H5062"]],[24,25,["H6440"]],[25,27,["H341"]]]},{"k":4935,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,9,["H3808"]],[9,10,["H8085"]],[10,13,["H4784","(H853)"]],[13,15,["H6310"]],[15,18,["H3068"]],[18,22,["H5927","H2102"]],[22,25,["H2022"]]]},{"k":4936,"v":[[0,3,["H567"]],[3,5,["H3427"]],[5,7,["H1931"]],[7,8,["H2022"]],[8,10,["H3318"]],[10,11,["H7125"]],[11,14,["H7291"]],[14,16,["H834"]],[16,17,["H1682"]],[17,18,["H6213"]],[18,20,["H3807"]],[20,23,["H8165"]],[23,25,["H5704"]],[25,26,["H2767"]]]},{"k":4937,"v":[[0,3,["H7725"]],[3,5,["H1058"]],[5,6,["H6440"]],[6,8,["H3068"]],[8,11,["H3068"]],[11,13,["H3808"]],[13,14,["H8085"]],[14,17,["H6963"]],[17,18,["H3808"]],[18,20,["H238"]],[20,21,["H413"]],[21,22,[]]]},{"k":4938,"v":[[0,3,["H3427"]],[3,5,["H6946"]],[5,6,["H7227"]],[6,7,["H3117"]],[7,11,["H3117"]],[11,12,["H834"]],[12,14,["H3427"]],[14,15,[]]]},{"k":4939,"v":[[0,3,["H6437"]],[3,7,["H5265"]],[7,10,["H4057"]],[10,13,["H1870"]],[13,16,["H5488"]],[16,17,["H3220"]],[17,18,["H834"]],[18,20,["H3068"]],[20,21,["H1696"]],[21,22,["H413"]],[22,26,["H5437","(H853)"]],[26,27,["H2022"]],[27,28,["H8165"]],[28,29,["H7227"]],[29,30,["H3117"]]]},{"k":4940,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H559"]]]},{"k":4941,"v":[[0,3,["H5437","(H853)"]],[3,4,["H2088"]],[4,5,["H2022"]],[5,7,["H7227"]],[7,8,["H6437"]],[8,10,["H6828"]]]},{"k":4942,"v":[[0,2,["H6680"]],[2,5,["H5971"]],[5,6,["H559"]],[6,7,["H859"]],[7,11,["H5674"]],[11,13,["H1366"]],[13,16,["H251"]],[16,18,["H1121"]],[18,20,["H6215"]],[20,22,["H3427"]],[22,24,["H8165"]],[24,29,["H3372"]],[29,30,["H4480"]],[30,38,["H8104","H3966"]]]},{"k":4943,"v":[[0,1,["H1624"]],[1,2,["H408"]],[2,5,["H3588"]],[5,8,["H3808"]],[8,9,["H5414"]],[9,13,["H4480","H776"]],[13,17,["H5704"]],[17,21,["H4096","H3709","H7272"]],[21,22,["H3588"]],[22,25,["H5414","(H853)"]],[25,26,["H2022"]],[26,27,["H8165"]],[27,29,["H6215"]],[29,32,["H3425"]]]},{"k":4944,"v":[[0,3,["H7666"]],[3,4,["H400"]],[4,5,["H4480","H854"]],[5,8,["H3701"]],[8,12,["H398"]],[12,16,["H1571"]],[16,17,["H3739"]],[17,18,["H4325"]],[18,19,["H4480","H854"]],[19,22,["H3701"]],[22,26,["H8354"]]]},{"k":4945,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H1288"]],[7,10,["H3605"]],[10,12,["H4639"]],[12,15,["H3027"]],[15,17,["H3045"]],[17,20,["H1980","(H853)"]],[20,21,["H2088"]],[21,22,["H1419"]],[22,23,["H4057"]],[23,24,["H2088"]],[24,25,["H705"]],[25,26,["H8141"]],[26,28,["H3068"]],[28,30,["H430"]],[30,33,["H5973"]],[33,37,["H2637"]],[37,38,["H3808","H1697"]]]},{"k":4946,"v":[[0,5,["H5674"]],[5,6,["H4480","H854"]],[6,8,["H251"]],[8,10,["H1121"]],[10,12,["H6215"]],[12,14,["H3427"]],[14,16,["H8165"]],[16,19,["H4480","H1870"]],[19,22,["H6160"]],[22,24,["H4480","H359"]],[24,27,["H4480","H6100"]],[27,29,["H6437"]],[29,31,["H5674"]],[31,34,["H1870"]],[34,37,["H4057"]],[37,39,["H4124"]]]},{"k":4947,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H6696"]],[7,8,["H408","(H853)"]],[8,10,["H4124"]],[10,11,["H408"]],[11,12,["H1624"]],[12,16,["H4421"]],[16,17,["H3588"]],[17,20,["H3808"]],[20,21,["H5414"]],[21,25,["H4480","H776"]],[25,28,["H3425"]],[28,29,["H3588"]],[29,32,["H5414","(H853)"]],[32,33,["H6144"]],[33,36,["H1121"]],[36,38,["H3876"]],[38,41,["H3425"]]]},{"k":4948,"v":[[0,2,["H368"]],[2,3,["H3427"]],[3,7,["H6440"]],[7,9,["H5971"]],[9,10,["H1419"]],[10,12,["H7227"]],[12,14,["H7311"]],[14,17,["H6062"]]]},{"k":4949,"v":[[0,1,["H1992"]],[1,2,["H637"]],[2,4,["H2803"]],[4,5,["H7497"]],[5,8,["H6062"]],[8,11,["H4125"]],[11,12,["H7121"]],[12,14,["H368"]]]},{"k":4950,"v":[[0,2,["H2752"]],[2,4,["H3427"]],[4,6,["H8165"]],[6,7,["H6440"]],[7,10,["H1121"]],[10,12,["H6215"]],[12,13,["H3423"]],[13,18,["H8045"]],[18,21,["H4480","H6440"]],[21,24,["H3427"]],[24,27,["H8478"]],[27,28,["H834"]],[28,29,["H3478"]],[29,30,["H6213"]],[30,33,["H776"]],[33,36,["H3425"]],[36,37,["H834"]],[37,39,["H3068"]],[39,40,["H5414"]],[40,42,[]]]},{"k":4951,"v":[[0,1,["H6258"]],[1,3,["H6965"]],[3,9,["H5674","(H853)"]],[9,11,["H5158"]],[11,12,["H2218"]],[12,16,["H5674","(H853)"]],[16,18,["H5158"]],[18,19,["H2218"]]]},{"k":4952,"v":[[0,3,["H3117"]],[3,5,["H834"]],[5,7,["H1980"]],[7,9,["H4480","H6947"]],[9,10,["H5704","H834"]],[10,14,["H5674","(H853)"]],[14,16,["H5158"]],[16,17,["H2218"]],[17,19,["H7970"]],[19,21,["H8083"]],[21,22,["H8141"]],[22,23,["H5704"]],[23,24,["H3605"]],[24,26,["H1755"]],[26,29,["H376"]],[29,31,["H4421"]],[31,33,["H8552"]],[33,36,["H4480","H7130"]],[36,38,["H4264"]],[38,39,["H834"]],[39,41,["H3068"]],[41,42,["H7650"]],[42,44,[]]]},{"k":4953,"v":[[0,2,["H1571"]],[2,4,["H3027"]],[4,7,["H3068"]],[7,8,["H1961"]],[8,12,["H2000"]],[12,15,["H4480","H7130"]],[15,17,["H4264"]],[17,18,["H5704"]],[18,21,["H8552"]]]},{"k":4954,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H3605"]],[7,9,["H376"]],[9,11,["H4421"]],[11,13,["H8552"]],[13,15,["H4191"]],[15,17,["H4480","H7130"]],[17,19,["H5971"]]]},{"k":4955,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,7,["H559"]]]},{"k":4956,"v":[[0,1,["H859"]],[1,5,["H5674"]],[5,6,["(H853)"]],[6,7,["H6144","(H853)"]],[7,9,["H1366"]],[9,11,["H4124"]],[11,13,["H3117"]]]},{"k":4957,"v":[[0,5,["H7126"]],[5,7,["H4136"]],[7,9,["H1121"]],[9,11,["H5983"]],[11,12,["H6696"]],[12,14,["H408"]],[14,15,["H408"]],[15,16,["H1624"]],[16,19,["H3588"]],[19,22,["H3808"]],[22,23,["H5414"]],[23,27,["H4480","H776"]],[27,30,["H1121"]],[30,32,["H5983"]],[32,34,["H3425"]],[34,35,["H3588"]],[35,38,["H5414"]],[38,42,["H1121"]],[42,44,["H3876"]],[44,47,["H3425"]]]},{"k":4958,"v":[[0,1,["H1931"]],[1,2,["H637"]],[2,4,["H2803"]],[4,6,["H776"]],[6,8,["H7497"]],[8,9,["H7497"]],[9,10,["H3427"]],[10,14,["H6440"]],[14,17,["H5984"]],[17,18,["H7121"]],[18,20,["H2157"]]]},{"k":4959,"v":[[0,2,["H5971"]],[2,3,["H1419"]],[3,5,["H7227"]],[5,7,["H7311"]],[7,10,["H6062"]],[10,13,["H3068"]],[13,14,["H8045"]],[14,16,["H4480","H6440"]],[16,20,["H3423"]],[20,23,["H3427"]],[23,26,["H8478"]]]},{"k":4960,"v":[[0,1,["H834"]],[1,3,["H6213"]],[3,6,["H1121"]],[6,8,["H6215"]],[8,10,["H3427"]],[10,12,["H8165"]],[12,13,["H834"]],[13,15,["H8045","(H853)"]],[15,17,["H2752"]],[17,19,["H4480","H6440"]],[19,23,["H3423"]],[23,26,["H3427"]],[26,29,["H8478"]],[29,31,["H5704"]],[31,32,["H2088"]],[32,33,["H3117"]]]},{"k":4961,"v":[[0,3,["H5757"]],[3,5,["H3427"]],[5,7,["H2699"]],[7,9,["H5704"]],[9,10,["H5804"]],[10,12,["H3732"]],[12,15,["H3318"]],[15,18,["H4480","H3731"]],[18,19,["H8045"]],[19,22,["H3427"]],[22,25,["H8478"]]]},{"k":4962,"v":[[0,3,["H6965"]],[3,6,["H5265"]],[6,9,["H5674","(H853)"]],[9,11,["H5158"]],[11,12,["H769"]],[12,13,["H7200"]],[13,16,["H5414"]],[16,19,["H3027","(H853)"]],[19,20,["H5511"]],[20,22,["H567"]],[22,23,["H4428"]],[23,25,["H2809"]],[25,28,["H776"]],[28,29,["H2490"]],[29,31,["H3423"]],[31,34,["H1624"]],[34,38,["H4421"]]]},{"k":4963,"v":[[0,1,["H2088"]],[1,2,["H3117"]],[2,5,["H2490"]],[5,7,["H5414"]],[7,9,["H6343"]],[9,14,["H3374"]],[14,17,["H5921"]],[17,19,["H5971"]],[19,22,["H8478"]],[22,24,["H3605"]],[24,25,["H8064"]],[25,26,["H834"]],[26,28,["H8085"]],[28,29,["H8088"]],[29,34,["H7264"]],[34,38,["H2342"]],[38,39,["H4480","H6440"]],[39,41,[]]]},{"k":4964,"v":[[0,3,["H7971"]],[3,4,["H4397"]],[4,8,["H4480","H4057"]],[8,10,["H6932"]],[10,11,["H413"]],[11,12,["H5511"]],[12,13,["H4428"]],[13,15,["H2809"]],[15,17,["H1697"]],[17,19,["H7965"]],[19,20,["H559"]]]},{"k":4965,"v":[[0,3,["H5674"]],[3,6,["H776"]],[6,9,["H1980"]],[9,14,["H1870","H1870"]],[14,17,["H3808"]],[17,18,["H5493"]],[18,22,["H3225"]],[22,26,["H8040"]]]},{"k":4966,"v":[[0,3,["H7666"]],[3,5,["H400"]],[5,7,["H3701"]],[7,11,["H398"]],[11,13,["H5414"]],[13,15,["H4325"]],[15,17,["H3701"]],[17,21,["H8354"]],[21,22,["H7535"]],[22,26,["H5674"]],[26,29,["H7272"]]]},{"k":4967,"v":[[0,1,["H834"]],[1,3,["H1121"]],[3,5,["H6215"]],[5,7,["H3427"]],[7,9,["H8165"]],[9,12,["H4125"]],[12,14,["H3427"]],[14,16,["H6144"]],[16,17,["H6213"]],[17,20,["H5704","H834"]],[20,24,["H5674","(H853)"]],[24,25,["H3383"]],[25,26,["H413"]],[26,28,["H776"]],[28,29,["H834"]],[29,31,["H3068"]],[31,33,["H430"]],[33,34,["H5414"]],[34,35,[]]]},{"k":4968,"v":[[0,2,["H5511"]],[2,3,["H4428"]],[3,5,["H2809"]],[5,6,["H14"]],[6,7,["H3808"]],[7,10,["H5674"]],[10,13,["H3588"]],[13,15,["H3068"]],[15,17,["H430"]],[17,18,["H7185","(H853)"]],[18,20,["H7307"]],[20,25,["H553","(H853)","H3824"]],[25,26,["H4616"]],[26,29,["H5414"]],[29,33,["H3027"]],[33,36,["H2088"]],[36,37,["H3117"]]]},{"k":4969,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H7200"]],[7,10,["H2490"]],[10,12,["H5414","(H853)"]],[12,13,["H5511"]],[13,16,["H776"]],[16,17,["H6440"]],[17,19,["H2490"]],[19,21,["H3423"]],[21,25,["H3423","(H853)"]],[25,27,["H776"]]]},{"k":4970,"v":[[0,2,["H5511"]],[2,4,["H3318"]],[4,5,["H7125"]],[5,7,["H1931"]],[7,9,["H3605"]],[9,11,["H5971"]],[11,13,["H4421"]],[13,15,["H3096"]]]},{"k":4971,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,6,["H5414"]],[6,8,["H6440"]],[8,12,["H5221","(H853)"]],[12,16,["H1121"]],[16,18,["H3605"]],[18,20,["H5971"]]]},{"k":4972,"v":[[0,3,["H3920","(H853)"]],[3,4,["H3605"]],[4,6,["H5892"]],[6,8,["H1931"]],[8,9,["H6256"]],[9,12,["H2763"]],[12,14,["H4962"]],[14,17,["H802"]],[17,21,["H2945","(H853)"]],[21,23,["H3605"]],[23,24,["H5892"]],[24,26,["H7604"]],[26,27,["H3808"]],[27,29,["H8300"]]]},{"k":4973,"v":[[0,1,["H7535"]],[1,3,["H929"]],[3,8,["H962"]],[8,13,["H7998"]],[13,16,["H5892"]],[16,17,["H834"]],[17,19,["H3920"]]]},{"k":4974,"v":[[0,1,["H4480"]],[1,2,["H6177"]],[2,3,["H834"]],[3,5,["H5921"]],[5,7,["H8193"]],[7,10,["H5158"]],[10,12,["H769"]],[12,16,["H5892"]],[16,17,["H834"]],[17,21,["H5158"]],[21,23,["H5704"]],[23,24,["H1568"]],[24,26,["H1961"]],[26,27,["H3808"]],[27,29,["H7151"]],[29,31,["H7682"]],[31,32,["H4480"]],[32,35,["H3068"]],[35,37,["H430"]],[37,38,["H5414","(H853)"]],[38,39,["H3605"]],[39,40,["H6440"]],[40,41,[]]]},{"k":4975,"v":[[0,1,["H7535"]],[1,2,["H413"]],[2,4,["H776"]],[4,7,["H1121"]],[7,9,["H5983"]],[9,11,["H7126"]],[11,12,["H3808"]],[12,15,["H3605"]],[15,16,["H3027"]],[16,19,["H5158"]],[19,20,["H2999"]],[20,24,["H5892"]],[24,27,["H2022"]],[27,30,["H3605"]],[30,32,["H3068"]],[32,34,["H430"]],[34,35,["H6680"]],[35,36,[]]]},{"k":4976,"v":[[0,3,["H6437"]],[3,6,["H5927"]],[6,8,["H1870"]],[8,10,["H1316"]],[10,12,["H5747"]],[12,14,["H4428"]],[14,16,["H1316"]],[16,18,["H3318"]],[18,19,["H7125"]],[19,21,["H1931"]],[21,23,["H3605"]],[23,25,["H5971"]],[25,27,["H4421"]],[27,29,["H154"]]]},{"k":4977,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H3372"]],[7,9,["H408"]],[9,10,["H3588"]],[10,13,["H5414"]],[13,16,["H3605"]],[16,18,["H5971"]],[18,21,["H776"]],[21,24,["H3027"]],[24,28,["H6213"]],[28,31,["H834"]],[31,33,["H6213"]],[33,35,["H5511"]],[35,36,["H4428"]],[36,39,["H567"]],[39,40,["H834"]],[40,41,["H3427"]],[41,43,["H2809"]]]},{"k":4978,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,6,["H5414"]],[6,9,["H3027","(H853)"]],[9,10,["H5747"]],[10,11,["H1571"]],[11,13,["H4428"]],[13,15,["H1316"]],[15,17,["H3605"]],[17,19,["H5971"]],[19,22,["H5221"]],[22,24,["H5704"]],[24,25,["H1115"]],[25,27,["H7604"]],[27,30,["H8300"]]]},{"k":4979,"v":[[0,3,["H3920","(H853)"]],[3,4,["H3605"]],[4,6,["H5892"]],[6,8,["H1931"]],[8,9,["H6256"]],[9,11,["H1961"]],[11,12,["H3808"]],[12,14,["H7151"]],[14,15,["H834"]],[15,17,["H3947"]],[17,18,["H3808"]],[18,19,["H4480","H854"]],[19,21,["H8346"]],[21,22,["H5892"]],[22,23,["H3605"]],[23,25,["H2256"]],[25,27,["H709"]],[27,29,["H4467"]],[29,31,["H5747"]],[31,33,["H1316"]]]},{"k":4980,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,3,["H5892"]],[3,5,["H1219"]],[5,7,["H1364"]],[7,8,["H2346"]],[8,9,["H1817"]],[9,11,["H1280"]],[11,12,["H905"]],[12,13,["H6521"]],[13,14,["H4480","H5892"]],[14,16,["H3966"]],[16,17,["H7235"]]]},{"k":4981,"v":[[0,4,["H2763"]],[4,6,["H834"]],[6,8,["H6213"]],[8,10,["H5511"]],[10,11,["H4428"]],[11,13,["H2809"]],[13,15,["H2763"]],[15,17,["H4962"]],[17,18,["H802"]],[18,20,["H2945"]],[20,22,["H3605"]],[22,23,["H5892"]]]},{"k":4982,"v":[[0,2,["H3605"]],[2,4,["H929"]],[4,7,["H7998"]],[7,10,["H5892"]],[10,15,["H962"]],[15,17,[]]]},{"k":4983,"v":[[0,3,["H3947"]],[3,5,["H1931"]],[5,6,["H6256"]],[6,10,["H4480","H3027"]],[10,13,["H8147"]],[13,14,["H4428"]],[14,17,["H567","(H853)"]],[17,19,["H776"]],[19,20,["H834"]],[20,24,["H5676"]],[24,25,["H3383"]],[25,28,["H4480","H5158"]],[28,30,["H769"]],[30,31,["H5704"]],[31,32,["H2022"]],[32,33,["H2768"]]]},{"k":4984,"v":[[0,2,["H2768"]],[2,4,["H6722"]],[4,5,["H7121"]],[5,6,["H8303"]],[6,9,["H567"]],[9,10,["H7121"]],[10,12,["H8149"]]]},{"k":4985,"v":[[0,1,["H3605"]],[1,3,["H5892"]],[3,6,["H4334"]],[6,8,["H3605"]],[8,9,["H1568"]],[9,11,["H3605"]],[11,12,["H1316"]],[12,13,["H5704"]],[13,14,["H5548"]],[14,16,["H154"]],[16,17,["H5892"]],[17,20,["H4467"]],[20,22,["H5747"]],[22,24,["H1316"]]]},{"k":4986,"v":[[0,1,["H3588"]],[1,2,["H7535"]],[2,3,["H5747"]],[3,4,["H4428"]],[4,6,["H1316"]],[6,7,["H7604"]],[7,10,["H4480","H3499"]],[10,12,["H7497"]],[12,13,["H2009"]],[13,15,["H6210"]],[15,18,["H6210"]],[18,20,["H1270"]],[20,22,["H1931"]],[22,23,["H3808"]],[23,25,["H7237"]],[25,28,["H1121"]],[28,30,["H5983"]],[30,31,["H8672"]],[31,32,["H520"]],[32,35,["H753"]],[35,38,["H702"]],[38,39,["H520"]],[39,41,["H7341"]],[41,46,["H520"]],[46,49,["H376"]]]},{"k":4987,"v":[[0,2,["H2063"]],[2,3,["H776"]],[3,6,["H3423"]],[6,8,["H1931"]],[8,9,["H6256"]],[9,11,["H4480","H6177"]],[11,12,["H834"]],[12,14,["H5921"]],[14,16,["H5158"]],[16,17,["H769"]],[17,19,["H2677"]],[19,20,["H2022"]],[20,21,["H1568"]],[21,24,["H5892"]],[24,26,["H5414"]],[26,30,["H7206"]],[30,34,["H1425"]]]},{"k":4988,"v":[[0,3,["H3499"]],[3,5,["H1568"]],[5,7,["H3605"]],[7,8,["H1316"]],[8,11,["H4467"]],[11,13,["H5747"]],[13,14,["H5414"]],[14,18,["H2677"]],[18,19,["H7626"]],[19,21,["H4519"]],[21,22,["H3605"]],[22,24,["H2256"]],[24,26,["H709"]],[26,28,["H3605"]],[28,29,["H1316"]],[29,30,["H1931"]],[30,32,["H7121"]],[32,34,["H776"]],[34,36,["H7497"]]]},{"k":4989,"v":[[0,1,["H2971"]],[1,3,["H1121"]],[3,5,["H4519"]],[5,6,["H3947","(H853)"]],[6,7,["H3605"]],[7,9,["H2256"]],[9,11,["H709"]],[11,12,["H5704"]],[12,14,["H1366"]],[14,16,["H1651"]],[16,18,["H4602"]],[18,20,["H7121"]],[20,22,["H5921"]],[22,25,["H8034","(H853)"]],[25,26,["H1316","H2334"]],[26,27,["H5704"]],[27,28,["H2088"]],[28,29,["H3117"]]]},{"k":4990,"v":[[0,3,["H5414","(H853)"]],[3,4,["H1568"]],[4,6,["H4353"]]]},{"k":4991,"v":[[0,4,["H7206"]],[4,8,["H1425"]],[8,10,["H5414"]],[10,11,["H4480"]],[11,12,["H1568"]],[12,14,["H5704"]],[14,16,["H5158"]],[16,17,["H769"]],[17,18,["H8432"]],[18,20,["H5158"]],[20,23,["H1366"]],[23,25,["H5704"]],[25,27,["H5158"]],[27,28,["H2999"]],[28,32,["H1366"]],[32,35,["H1121"]],[35,37,["H5983"]]]},{"k":4992,"v":[[0,2,["H6160"]],[2,5,["H3383"]],[5,8,["H1366"]],[8,11,["H4480","H3672"]],[11,13,["H5704"]],[13,15,["H3220"]],[15,18,["H6160"]],[18,21,["H4417"]],[21,22,["H3220"]],[22,23,["H8478"]],[23,24,["H798","H6449"]],[24,25,["H4217"]]]},{"k":4993,"v":[[0,3,["H6680"]],[3,6,["H1931"]],[6,7,["H6256"]],[7,8,["H559"]],[8,10,["H3068"]],[10,12,["H430"]],[12,14,["H5414"]],[14,15,["(H853)"]],[15,16,["H2063"]],[16,17,["H776"]],[17,19,["H3423"]],[19,24,["H5674"]],[24,25,["H2502"]],[25,26,["H6440"]],[26,28,["H251"]],[28,30,["H1121"]],[30,32,["H3478"]],[32,33,["H3605"]],[33,39,["H1121","H2428"]]]},{"k":4994,"v":[[0,1,["H7535"]],[1,3,["H802"]],[3,7,["H2945"]],[7,10,["H4735"]],[10,13,["H3045"]],[13,14,["H3588"]],[14,17,["H7227"]],[17,18,["H4735"]],[18,20,["H3427"]],[20,23,["H5892"]],[23,24,["H834"]],[24,27,["H5414"]],[27,28,[]]]},{"k":4995,"v":[[0,1,["H5704","H834"]],[1,3,["H3068"]],[3,6,["H5117"]],[6,9,["H251"]],[9,17,["H1992"]],[17,18,["H1571"]],[18,19,["H3423","(H853)"]],[19,21,["H776"]],[21,22,["H834"]],[22,24,["H3068"]],[24,26,["H430"]],[26,28,["H5414"]],[28,30,["H5676"]],[30,31,["H3383"]],[31,36,["H7725"]],[36,38,["H376"]],[38,41,["H3425"]],[41,42,["H834"]],[42,45,["H5414"]],[45,46,[]]]},{"k":4996,"v":[[0,3,["H6680"]],[3,4,["H3091"]],[4,6,["H1931"]],[6,7,["H6256"]],[7,8,["H559"]],[8,10,["H5869"]],[10,12,["H7200","(H853)"]],[12,13,["H3605"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H430"]],[18,20,["H6213"]],[20,22,["H428"]],[22,23,["H8147"]],[23,24,["H4428"]],[24,25,["H3651"]],[25,28,["H3068"]],[28,29,["H6213"]],[29,31,["H3605"]],[31,33,["H4467"]],[33,34,["H834","H8033"]],[34,35,["H859"]],[35,36,["H5674"]]]},{"k":4997,"v":[[0,3,["H3808"]],[3,4,["H3372"]],[4,6,["H3588"]],[6,8,["H3068"]],[8,10,["H430"]],[10,11,["H1931"]],[11,13,["H3898"]],[13,15,[]]]},{"k":4998,"v":[[0,3,["H2603","H413"]],[3,5,["H3068"]],[5,7,["H1931"]],[7,8,["H6256"]],[8,9,["H559"]]]},{"k":4999,"v":[[0,2,["H136"]],[2,3,["H3069"]],[3,4,["H859"]],[4,6,["H2490"]],[6,8,["H7200","(H853)"]],[8,10,["H5650","(H853)"]],[10,12,["H1433"]],[12,15,["H2389"]],[15,16,["H3027"]],[16,17,["H834"]],[17,18,["H4310"]],[18,19,["H410"]],[19,23,["H8064"]],[23,26,["H776"]],[26,27,["H834"]],[27,29,["H6213"]],[29,33,["H4639"]],[33,38,["H1369"]]]},{"k":5000,"v":[[0,3,["H4994"]],[3,7,["H5674"]],[7,9,["H7200","(H853)"]],[9,11,["H2896"]],[11,12,["H776"]],[12,13,["H834"]],[13,15,["H5676"]],[15,16,["H3383"]],[16,17,["H2088"]],[17,18,["H2896"]],[18,19,["H2022"]],[19,21,["H3844"]]]},{"k":5001,"v":[[0,3,["H3068"]],[3,5,["H5674"]],[5,10,["H4616"]],[10,13,["H3808"]],[13,14,["H8085","H413"]],[14,18,["H3068"]],[18,19,["H559"]],[19,20,["H413"]],[20,24,["H7227"]],[24,26,["H1696"]],[26,27,["H408"]],[27,28,["H3254","H5750"]],[28,29,["H413"]],[29,32,["H2088"]],[32,33,["H1697"]]]},{"k":5002,"v":[[0,3,["H5927"]],[3,6,["H7218"]],[6,8,["H6449"]],[8,11,["H5375"]],[11,13,["H5869"]],[13,14,["H3220"]],[14,16,["H6828"]],[16,18,["H8486"]],[18,20,["H4217"]],[20,22,["H7200"]],[22,26,["H5869"]],[26,27,["H3588"]],[27,30,["H3808"]],[30,32,["H5674","(H853)"]],[32,33,["H2088"]],[33,34,["H3383"]]]},{"k":5003,"v":[[0,2,["H6680","(H853)"]],[2,3,["H3091"]],[3,5,["H2388"]],[5,8,["H553"]],[8,10,["H3588"]],[10,11,["H1931"]],[11,14,["H5674"]],[14,15,["H6440"]],[15,16,["H2088"]],[16,17,["H5971"]],[17,19,["H1931"]],[19,24,["H5157","(H853)"]],[24,26,["H776"]],[26,27,["H834"]],[27,30,["H7200"]]]},{"k":5004,"v":[[0,3,["H3427"]],[3,6,["H1516"]],[6,8,["H4136"]],[8,9,["H1047"]]]},{"k":5005,"v":[[0,1,["H6258"]],[1,3,["H8085"]],[3,5,["H3478"]],[5,6,["H413"]],[6,8,["H2706"]],[8,10,["H413"]],[10,12,["H4941"]],[12,13,["H834"]],[13,14,["H595"]],[14,15,["H3925"]],[15,19,["H6213"]],[19,21,["H4616"]],[21,24,["H2421"]],[24,27,["H935"]],[27,29,["H3423","(H853)"]],[29,31,["H776"]],[31,32,["H834"]],[32,34,["H3068"]],[34,35,["H430"]],[35,38,["H1"]],[38,39,["H5414"]],[39,40,[]]]},{"k":5006,"v":[[0,3,["H3808"]],[3,4,["H3254"]],[4,5,["H5921"]],[5,7,["H1697"]],[7,8,["H834"]],[8,9,["H595"]],[9,10,["H6680"]],[10,12,["H3808"]],[12,15,["H1639"]],[15,17,["H4480"]],[17,22,["H8104","(H853)"]],[22,24,["H4687"]],[24,27,["H3068"]],[27,29,["H430"]],[29,30,["H834"]],[30,31,["H595"]],[31,32,["H6680"]],[32,33,[]]]},{"k":5007,"v":[[0,2,["H5869"]],[2,4,["H7200","(H853)"]],[4,5,["H834"]],[5,7,["H3068"]],[7,8,["H6213"]],[8,11,["H1187"]],[11,12,["H3588"]],[12,13,["H3605"]],[13,15,["H376"]],[15,16,["H834"]],[16,17,["H1980","H310"]],[17,18,["H1187"]],[18,20,["H3068"]],[20,22,["H430"]],[22,24,["H8045"]],[24,27,["H4480","H7130"]],[27,28,[]]]},{"k":5008,"v":[[0,2,["H859"]],[2,5,["H1695"]],[5,8,["H3068"]],[8,10,["H430"]],[10,12,["H2416"]],[12,14,["H3605"]],[14,18,["H3117"]]]},{"k":5009,"v":[[0,1,["H7200"]],[1,4,["H3925"]],[4,6,["H2706"]],[6,8,["H4941"]],[8,10,["H834"]],[10,12,["H3068"]],[12,14,["H430"]],[14,15,["H6680"]],[15,20,["H6213"]],[20,21,["H3651"]],[21,22,["H7130"]],[22,24,["H776"]],[24,25,["H834","H8033"]],[25,26,["H859"]],[26,27,["H935"]],[27,29,["H3423"]],[29,30,[]]]},{"k":5010,"v":[[0,1,["H8104"]],[1,4,["H6213"]],[4,6,["H3588"]],[6,7,["H1931"]],[7,10,["H2451"]],[10,13,["H998"]],[13,16,["H5869"]],[16,19,["H5971"]],[19,20,["H834"]],[20,22,["H8085","(H853)"]],[22,23,["H3605"]],[23,24,["H428"]],[24,25,["H2706"]],[25,27,["H559"]],[27,28,["H7535"]],[28,29,["H2088"]],[29,30,["H1419"]],[30,31,["H1471"]],[31,34,["H2450"]],[34,36,["H995"]],[36,37,["H5971"]]]},{"k":5011,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,3,["H1471"]],[3,7,["H1419"]],[7,8,["H834"]],[8,10,["H430"]],[10,12,["H7138"]],[12,13,["H413"]],[13,17,["H3068"]],[17,19,["H430"]],[19,22,["H3605"]],[22,26,["H7121"]],[26,27,["H413"]],[27,29,[]]]},{"k":5012,"v":[[0,2,["H4310"]],[2,3,["H1471"]],[3,7,["H1419"]],[7,8,["H834"]],[8,10,["H2706"]],[10,12,["H4941"]],[12,14,["H6662"]],[14,16,["H3605"]],[16,17,["H2063"]],[17,18,["H8451"]],[18,19,["H834"]],[19,20,["H595"]],[20,21,["H5414"]],[21,22,["H6440"]],[22,25,["H3117"]]]},{"k":5013,"v":[[0,1,["H7535"]],[1,3,["H8104"]],[3,7,["H8104"]],[7,9,["H5315"]],[9,10,["H3966"]],[10,11,["H6435"]],[11,13,["H7911","(H853)"]],[13,15,["H1697"]],[15,16,["H834"]],[16,18,["H5869"]],[18,20,["H7200"]],[20,22,["H6435"]],[22,24,["H5493"]],[24,27,["H4480","H3824"]],[27,28,["H3605"]],[28,30,["H3117"]],[30,33,["H2416"]],[33,35,["H3045"]],[35,38,["H1121"]],[38,41,["H1121"]],[41,42,["H1121"]]]},{"k":5014,"v":[[0,3,["H3117"]],[3,4,["H834"]],[4,6,["H5975"]],[6,7,["H6440"]],[7,9,["H3068"]],[9,11,["H430"]],[11,13,["H2722"]],[13,16,["H3068"]],[16,17,["H559"]],[17,18,["H413"]],[18,24,["H6950","(H853)","H5971"]],[24,30,["H8085","(H853)"]],[30,32,["H1697"]],[32,33,["H834"]],[33,36,["H3925"]],[36,38,["H3372"]],[38,40,["H3605"]],[40,42,["H3117"]],[42,43,["H834"]],[43,44,["H1992"]],[44,46,["H2416"]],[46,47,["H5921"]],[47,49,["H127"]],[49,54,["H3925"]],[54,56,["H1121"]]]},{"k":5015,"v":[[0,4,["H7126"]],[4,6,["H5975"]],[6,7,["H8478"]],[7,9,["H2022"]],[9,12,["H2022"]],[12,13,["H1197"]],[13,15,["H784"]],[15,16,["H5704"]],[16,18,["H3820"]],[18,20,["H8064"]],[20,22,["H2822"]],[22,23,["H6051"]],[23,26,["H6205"]]]},{"k":5016,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,10,["H4480","H8432"]],[10,13,["H784"]],[13,14,["H859"]],[14,15,["H8085"]],[15,17,["H6963"]],[17,20,["H1697"]],[20,22,["H7200"]],[22,23,["H369"]],[23,24,["H8544"]],[24,25,["H2108"]],[25,29,["H6963"]]]},{"k":5017,"v":[[0,3,["H5046"]],[3,5,["(H853)"]],[5,7,["H1285"]],[7,8,["H834"]],[8,10,["H6680"]],[10,13,["H6213"]],[13,15,["H6235"]],[15,16,["H1697"]],[16,19,["H3789"]],[19,21,["H5921"]],[21,22,["H8147"]],[22,23,["H3871"]],[23,25,["H68"]]]},{"k":5018,"v":[[0,3,["H3068"]],[3,4,["H6680"]],[4,7,["H1931"]],[7,8,["H6256"]],[8,10,["H3925"]],[10,12,["H2706"]],[12,14,["H4941"]],[14,18,["H6213"]],[18,22,["H776"]],[22,23,["H834","H8033"]],[23,24,["H859"]],[24,26,["H5674"]],[26,28,["H3423"]],[28,29,[]]]},{"k":5019,"v":[[0,5,["H8104","H3966"]],[5,7,["H5315"]],[7,8,["H3588"]],[8,10,["H7200"]],[10,11,["H3808"]],[11,12,["H3605"]],[12,14,["H8544"]],[14,17,["H3117"]],[17,20,["H3068"]],[20,21,["H1696"]],[21,22,["H413"]],[22,25,["H2722"]],[25,29,["H4480","H8432"]],[29,32,["H784"]]]},{"k":5020,"v":[[0,1,["H6435"]],[1,3,["H7843"]],[3,6,["H6213"]],[6,10,["H6459"]],[10,12,["H8544"]],[12,14,["H3605"]],[14,15,["H5566"]],[15,17,["H8403"]],[17,19,["H2145"]],[19,20,["H176"]],[20,21,["H5347"]]]},{"k":5021,"v":[[0,2,["H8403"]],[2,4,["H3605"]],[4,5,["H929"]],[5,6,["H834"]],[6,10,["H776"]],[10,12,["H8403"]],[12,14,["H3605"]],[14,15,["H3671"]],[15,16,["H6833"]],[16,17,["H834"]],[17,18,["H5774"]],[18,21,["H8064"]]]},{"k":5022,"v":[[0,2,["H8403"]],[2,5,["H3605"]],[5,7,["H7430"]],[7,10,["H127"]],[10,12,["H8403"]],[12,14,["H3605"]],[14,15,["H1710"]],[15,16,["H834"]],[16,20,["H4325"]],[20,21,["H4480","H8478"]],[21,23,["H776"]]]},{"k":5023,"v":[[0,2,["H6435"]],[2,5,["H5375"]],[5,7,["H5869"]],[7,9,["H8064"]],[9,13,["H7200","(H853)"]],[13,15,["H8121"]],[15,18,["H3394"]],[18,21,["H3556"]],[21,23,["H3605"]],[23,25,["H6635"]],[25,27,["H8064"]],[27,30,["H5080"]],[30,32,["H7812"]],[32,35,["H5647"]],[35,37,["H834"]],[37,39,["H3068"]],[39,41,["H430"]],[41,43,["H2505","(H853)"]],[43,45,["H3605"]],[45,46,["H5971"]],[46,47,["H8478"]],[47,49,["H3605"]],[49,50,["H8064"]]]},{"k":5024,"v":[[0,3,["H3068"]],[3,5,["H3947"]],[5,10,["H3318","(H853)"]],[10,14,["H1270"]],[14,15,["H4480","H3564"]],[15,19,["H4480","H4714"]],[19,21,["H1961"]],[21,25,["H5971"]],[25,27,["H5159"]],[27,31,["H2088"]],[31,32,["H3117"]]]},{"k":5025,"v":[[0,3,["H3068"]],[3,5,["H599"]],[5,10,["H5921","H1697"]],[10,12,["H7650"]],[12,16,["H1115"]],[16,18,["H5674","(H853)"]],[18,19,["H3383"]],[19,24,["H1115"]],[24,26,["H935"]],[26,27,["H413"]],[27,29,["H2896"]],[29,30,["H776"]],[30,31,["H834"]],[31,33,["H3068"]],[33,35,["H430"]],[35,36,["H5414"]],[36,40,["H5159"]]]},{"k":5026,"v":[[0,1,["H3588"]],[1,2,["H595"]],[2,4,["H4191"]],[4,6,["H2063"]],[6,7,["H776"]],[7,10,["H369"]],[10,12,["H5674","(H853)"]],[12,13,["H3383"]],[13,15,["H859"]],[15,18,["H5674"]],[18,20,["H3423","(H853)"]],[20,21,["H2063"]],[21,22,["H2896"]],[22,23,["H776"]]]},{"k":5027,"v":[[0,2,["H8104"]],[2,5,["H6435"]],[5,7,["H7911","(H853)"]],[7,9,["H1285"]],[9,12,["H3068"]],[12,14,["H430"]],[14,15,["H834"]],[15,17,["H3772"]],[17,18,["H5973"]],[18,21,["H6213"]],[21,25,["H6459"]],[25,28,["H8544"]],[28,30,["H3605"]],[30,32,["H834"]],[32,34,["H3068"]],[34,36,["H430"]],[36,38,["H6680"]],[38,39,[]]]},{"k":5028,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,8,["H398"]],[8,9,["H784"]],[9,12,["H7067"]],[12,13,["H410"]]]},{"k":5029,"v":[[0,1,["H3588"]],[1,4,["H3205"]],[4,5,["H1121"]],[5,7,["H1121"]],[7,8,["H1121"]],[8,14,["H3462"]],[14,17,["H776"]],[17,20,["H7843"]],[20,23,["H6213"]],[23,26,["H6459"]],[26,29,["H8544"]],[29,31,["H3605"]],[31,35,["H6213"]],[35,36,["H7451"]],[36,39,["H5869"]],[39,42,["H3068"]],[42,44,["H430"]],[44,49,["H3707"]]]},{"k":5030,"v":[[0,2,["H5749","(H853)"]],[2,3,["H8064"]],[3,5,["H776"]],[5,7,["H5749"]],[7,11,["H3117"]],[11,12,["H3588"]],[12,15,["H4118"]],[15,17,["H6","H6"]],[17,19,["H4480","H5921"]],[19,21,["H776"]],[21,22,["H834","H8033"]],[22,23,["H859"]],[23,25,["H5674","(H853)"]],[25,26,["H3383"]],[26,28,["H3423"]],[28,32,["H3808"]],[32,33,["H748"]],[33,35,["H3117"]],[35,36,["H5921"]],[36,38,["H3588"]],[38,42,["H8045","H8045"]]]},{"k":5031,"v":[[0,3,["H3068"]],[3,5,["H6327"]],[5,9,["H5971"]],[9,14,["H7604"]],[14,15,["H4962"]],[15,17,["H4557"]],[17,20,["H1471"]],[20,21,["H834","H8033"]],[21,23,["H3068"]],[23,25,["H5090"]],[25,26,[]]]},{"k":5032,"v":[[0,2,["H8033"]],[2,5,["H5647"]],[5,6,["H430"]],[6,8,["H4639"]],[8,10,["H120"]],[10,11,["H3027"]],[11,12,["H6086"]],[12,14,["H68"]],[14,15,["H834"]],[15,16,["H3808"]],[16,17,["H7200"]],[17,18,["H3808"]],[18,19,["H8085"]],[19,20,["H3808"]],[20,21,["H398"]],[21,22,["H3808"]],[22,23,["H7306"]]]},{"k":5033,"v":[[0,4,["H4480","H8033"]],[4,7,["H1245","(H853)"]],[7,9,["H3068"]],[9,11,["H430"]],[11,14,["H4672"]],[14,16,["H3588"]],[16,18,["H1875"]],[18,21,["H3605"]],[21,23,["H3824"]],[23,26,["H3605"]],[26,28,["H5315"]]]},{"k":5034,"v":[[0,5,["H6862"]],[5,7,["H3605"]],[7,8,["H428"]],[8,9,["H1697"]],[9,11,["H4672"]],[11,17,["H319"]],[17,18,["H3117"]],[18,21,["H7725"]],[21,22,["H5704"]],[22,24,["H3068"]],[24,26,["H430"]],[26,30,["H8085"]],[30,33,["H6963"]]]},{"k":5035,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,8,["H7349"]],[8,9,["H410"]],[9,12,["H3808"]],[12,13,["H7503"]],[13,15,["H3808"]],[15,16,["H7843"]],[16,18,["H3808"]],[18,19,["H7911","(H853)"]],[19,21,["H1285"]],[21,24,["H1"]],[24,25,["H834"]],[25,27,["H7650"]],[27,29,[]]]},{"k":5036,"v":[[0,1,["H3588"]],[1,2,["H7592"]],[2,3,["H4994"]],[3,6,["H3117"]],[6,9,["H7223"]],[9,10,["H834"]],[10,11,["H1961"]],[11,12,["H6440"]],[12,14,["H4480"]],[14,16,["H3117"]],[16,17,["H834"]],[17,18,["H430"]],[18,19,["H1254"]],[19,20,["H120"]],[20,21,["H5921"]],[21,23,["H776"]],[23,29,["H4480","H7097"]],[29,31,["H8064"]],[31,32,["H5704"]],[32,34,["H7097","(H8064)"]],[34,38,["H1961"]],[38,43,["H2088"]],[43,44,["H1419"]],[44,45,["H1697"]],[45,47,["H176"]],[47,50,["H8085"]],[50,52,["H3644"]]]},{"k":5037,"v":[[0,3,["H5971"]],[3,4,["H8085"]],[4,6,["H6963"]],[6,8,["H430"]],[8,9,["H1696"]],[9,13,["H4480","H8432"]],[13,16,["H784"]],[16,17,["H834"]],[17,18,["H859"]],[18,20,["H8085"]],[20,22,["H2421"]]]},{"k":5038,"v":[[0,1,["H176"]],[1,3,["H430"]],[3,4,["H5254"]],[4,6,["H935"]],[6,8,["H3947"]],[8,11,["H1471"]],[11,14,["H4480","H7130"]],[14,17,["H1471"]],[17,19,["H4531"]],[19,21,["H226"]],[21,24,["H4159"]],[24,27,["H4421"]],[27,31,["H2389"]],[31,32,["H3027"]],[32,37,["H5186"]],[37,38,["H2220"]],[38,41,["H1419"]],[41,42,["H4172"]],[42,45,["H3605"]],[45,46,["H834"]],[46,48,["H3068"]],[48,50,["H430"]],[50,51,["H6213"]],[51,55,["H4714"]],[55,58,["H5869"]]]},{"k":5039,"v":[[0,2,["H859"]],[2,5,["H7200"]],[5,9,["H3045"]],[9,10,["H3588"]],[10,12,["H3068"]],[12,13,["H1931"]],[13,15,["H430"]],[15,18,["H369"]],[18,19,["H5750"]],[19,20,["H4480","H905"]],[20,21,[]]]},{"k":5040,"v":[[0,2,["H4480"]],[2,3,["H8064"]],[3,8,["H8085","(H853)"]],[8,10,["H6963"]],[10,14,["H3256"]],[14,17,["H5921"]],[17,18,["H776"]],[18,20,["H7200"]],[20,21,["(H853)"]],[21,23,["H1419"]],[23,24,["H784"]],[24,27,["H8085"]],[27,29,["H1697"]],[29,33,["H4480","H8432"]],[33,36,["H784"]]]},{"k":5041,"v":[[0,2,["H8478","H3588"]],[2,4,["H157","(H853)"]],[4,6,["H1"]],[6,9,["H977"]],[9,11,["H2233"]],[11,12,["H310"]],[12,17,["H3318"]],[17,20,["H6440"]],[20,23,["H1419"]],[23,24,["H3581"]],[24,27,["H4480","H4714"]]]},{"k":5042,"v":[[0,3,["H3423"]],[3,4,["H1471"]],[4,6,["H4480","H6440"]],[6,8,["H1419"]],[8,10,["H6099"]],[10,11,["H4480"]],[11,17,["H935"]],[17,19,["H5414"]],[19,20,["(H853)"]],[20,22,["H776"]],[22,25,["H5159"]],[25,29,["H2088"]],[29,30,["H3117"]]]},{"k":5043,"v":[[0,1,["H3045"]],[1,4,["H3117"]],[4,6,["H7725"]],[6,8,["H413"]],[8,10,["H3824"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,14,["H1931"]],[14,16,["H430"]],[16,18,["H8064"]],[18,19,["H4480","H4605"]],[19,21,["H5921"]],[21,23,["H776"]],[23,24,["H4480","H8478"]],[24,27,["H369"]],[27,28,["H5750"]]]},{"k":5044,"v":[[0,3,["H8104"]],[3,4,["(H853)"]],[4,6,["H2706"]],[6,9,["H4687"]],[9,10,["H834"]],[10,11,["H595"]],[11,12,["H6680"]],[12,15,["H3117"]],[15,16,["H834"]],[16,20,["H3190"]],[20,26,["H1121"]],[26,27,["H310"]],[27,30,["H4616"]],[30,33,["H748"]],[33,35,["H3117"]],[35,36,["H5921"]],[36,38,["H127"]],[38,39,["H834"]],[39,41,["H3068"]],[41,43,["H430"]],[43,44,["H5414"]],[44,47,["H3605","H3117"]]]},{"k":5045,"v":[[0,1,["H227"]],[1,2,["H4872"]],[2,3,["H914"]],[3,4,["H7969"]],[4,5,["H5892"]],[5,8,["H5676"]],[8,9,["H3383"]],[9,12,["H4217","H8121"]]]},{"k":5046,"v":[[0,3,["H7523"]],[3,5,["H5127"]],[5,6,["H8033"]],[6,7,["H834"]],[7,9,["H7523","(H853)"]],[9,11,["H7453"]],[11,12,["H1097","H1847"]],[12,14,["H8130"]],[14,16,["H3808"]],[16,19,["H4480","H8543","H8032"]],[19,22,["H5127"]],[22,23,["H413"]],[23,24,["H259"]],[24,25,["H4480"]],[25,26,["H411"]],[26,27,["H5892"]],[27,30,["H2425"]]]},{"k":5047,"v":[[0,1,["(H853)"]],[1,2,["H1221"]],[2,5,["H4057"]],[5,8,["H4334"]],[8,9,["H776"]],[9,12,["H7206"]],[12,14,["H7216"]],[14,16,["H1568"]],[16,19,["H1425"]],[19,21,["H1474"]],[21,23,["H1316"]],[23,26,["H4520"]]]},{"k":5048,"v":[[0,2,["H2063"]],[2,5,["H8451"]],[5,6,["H834"]],[6,7,["H4872"]],[7,8,["H7760"]],[8,9,["H6440"]],[9,11,["H1121"]],[11,13,["H3478"]]]},{"k":5049,"v":[[0,1,["H428"]],[1,4,["H5713"]],[4,7,["H2706"]],[7,10,["H4941"]],[10,11,["H834"]],[11,12,["H4872"]],[12,13,["H1696"]],[13,14,["H413"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,22,["H3318"]],[22,25,["H4480","H4714"]]]},{"k":5050,"v":[[0,3,["H5676"]],[3,4,["H3383"]],[4,7,["H1516"]],[7,9,["H4136"]],[9,10,["H1047"]],[10,13,["H776"]],[13,15,["H5511"]],[15,16,["H4428"]],[16,19,["H567"]],[19,20,["H834"]],[20,21,["H3427"]],[21,23,["H2809"]],[23,24,["H834"]],[24,25,["H4872"]],[25,28,["H1121"]],[28,30,["H3478"]],[30,31,["H5221"]],[31,36,["H3318"]],[36,39,["H4480","H4714"]]]},{"k":5051,"v":[[0,3,["H3423","(H853)"]],[3,5,["H776"]],[5,8,["H776"]],[8,10,["H5747"]],[10,11,["H4428"]],[11,13,["H1316"]],[13,14,["H8147"]],[14,15,["H4428"]],[15,18,["H567"]],[18,19,["H834"]],[19,23,["H5676"]],[23,24,["H3383"]],[24,27,["H4217","H8121"]]]},{"k":5052,"v":[[0,2,["H4480","H6177"]],[2,3,["H834"]],[3,5,["H5921"]],[5,7,["H8193"]],[7,10,["H5158"]],[10,11,["H769"]],[11,13,["H5704"]],[13,14,["H2022"]],[14,15,["H7865"]],[15,16,["H1931"]],[16,18,["H2768"]]]},{"k":5053,"v":[[0,2,["H3605"]],[2,4,["H6160"]],[4,7,["H5676"]],[7,8,["H3383"]],[8,9,["H4217"]],[9,11,["H5704"]],[11,13,["H3220"]],[13,16,["H6160"]],[16,17,["H8478"]],[17,19,["H794"]],[19,21,["H6449"]]]},{"k":5054,"v":[[0,2,["H4872"]],[2,3,["H7121","H413"]],[3,4,["H3605"]],[4,5,["H3478"]],[5,7,["H559"]],[7,8,["H413"]],[8,10,["H8085"]],[10,12,["H3478","(H853)"]],[12,14,["H2706"]],[14,16,["H4941"]],[16,17,["H834"]],[17,18,["H595"]],[18,19,["H1696"]],[19,22,["H241"]],[22,24,["H3117"]],[24,28,["H3925"]],[28,31,["H8104"]],[31,33,["H6213"]],[33,34,[]]]},{"k":5055,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,5,["H3772"]],[5,7,["H1285"]],[7,8,["H5973"]],[8,11,["H2722"]]]},{"k":5056,"v":[[0,2,["H3068"]],[2,3,["H3772"]],[3,4,["H3808","(H853)"]],[4,5,["H2063"]],[5,6,["H1285"]],[6,7,["H854"]],[7,9,["H1"]],[9,10,["H3588"]],[10,11,["H854"]],[11,14,["H587"]],[14,15,["H428"]],[15,17,["H3605"]],[17,20,["H6311"]],[20,21,["H2416"]],[21,23,["H3117"]]]},{"k":5057,"v":[[0,2,["H3068"]],[2,3,["H1696"]],[3,4,["H5973"]],[4,8,["H6440","H6440"]],[8,11,["H2022"]],[11,15,["H4480","H8432"]],[15,18,["H784"]]]},{"k":5058,"v":[[0,1,["H595"]],[1,2,["H5975"]],[2,3,["H996"]],[3,5,["H3068"]],[5,9,["H1931"]],[9,10,["H6256"]],[10,12,["H5046"]],[12,13,["(H853)"]],[13,15,["H1697"]],[15,18,["H3068"]],[18,19,["H3588"]],[19,22,["H3372"]],[22,25,["H4480","H6440"]],[25,27,["H784"]],[27,31,["H5927","H3808"]],[31,34,["H2022"]],[34,35,["H559"]]]},{"k":5059,"v":[[0,1,["H595"]],[1,4,["H3068"]],[4,6,["H430"]],[6,7,["H834"]],[7,8,["H3318"]],[8,13,["H4480","H776"]],[13,15,["H4714"]],[15,18,["H4480","H1004"]],[18,20,["H5650"]]]},{"k":5060,"v":[[0,3,["H1961"]],[3,4,["H3808"]],[4,5,["H312"]],[5,6,["H430"]],[6,7,["H5921","H6440"]],[7,8,[]]]},{"k":5061,"v":[[0,3,["H3808"]],[3,4,["H6213"]],[4,8,["H6459"]],[8,10,["H3605"]],[10,11,["H8544"]],[11,15,["H834"]],[15,18,["H8064"]],[18,19,["H4480","H4605"]],[19,21,["H834"]],[21,25,["H776"]],[25,26,["H4480","H8478"]],[26,28,["H834"]],[28,32,["H4325"]],[32,33,["H4480","H8478"]],[33,35,["H776"]]]},{"k":5062,"v":[[0,3,["H3808"]],[3,6,["H7812"]],[6,9,["H3808"]],[9,10,["H5647"]],[10,12,["H3588"]],[12,13,["H595"]],[13,15,["H3068"]],[15,17,["H430"]],[17,20,["H7067"]],[20,21,["H410"]],[21,22,["H6485"]],[22,24,["H5771"]],[24,27,["H1"]],[27,28,["H5921"]],[28,30,["H1121"]],[30,31,["H5921"]],[31,33,["H8029"]],[33,35,["H7256"]],[35,40,["H8130"]],[40,41,[]]]},{"k":5063,"v":[[0,2,["H6213"]],[2,3,["H2617"]],[3,5,["H505"]],[5,9,["H157"]],[9,12,["H8104"]],[12,14,["H4687"]]]},{"k":5064,"v":[[0,3,["H3808"]],[3,4,["H5375","(H853)"]],[4,6,["H8034"]],[6,9,["H3068"]],[9,11,["H430"]],[11,13,["H7723"]],[13,14,["H3588"]],[14,16,["H3068"]],[16,18,["H3808"]],[18,21,["H5352","(H853)"]],[21,22,["H834"]],[22,23,["H5375","(H853)"]],[23,25,["H8034"]],[25,27,["H7723"]]]},{"k":5065,"v":[[0,1,["H8104","(H853)"]],[1,3,["H7676"]],[3,4,["H3117"]],[4,6,["H6942"]],[6,8,["H834"]],[8,10,["H3068"]],[10,12,["H430"]],[12,14,["H6680"]],[14,15,[]]]},{"k":5066,"v":[[0,1,["H8337"]],[1,2,["H3117"]],[2,5,["H5647"]],[5,7,["H6213"]],[7,8,["H3605"]],[8,10,["H4399"]]]},{"k":5067,"v":[[0,3,["H7637"]],[3,4,["H3117"]],[4,7,["H7676"]],[7,10,["H3068"]],[10,12,["H430"]],[12,17,["H3808"]],[17,18,["H6213"]],[18,19,["H3605"]],[19,20,["H4399"]],[20,21,["H859"]],[21,24,["H1121"]],[24,27,["H1323"]],[27,30,["H5650"]],[30,33,["H519"]],[33,36,["H7794"]],[36,39,["H2543"]],[39,41,["H3605"]],[41,44,["H929"]],[44,47,["H1616"]],[47,48,["H834"]],[48,52,["H8179"]],[52,53,["H4616"]],[53,55,["H5650"]],[55,58,["H519"]],[58,60,["H5117"]],[60,64,[]]]},{"k":5068,"v":[[0,2,["H2142"]],[2,3,["H3588"]],[3,5,["H1961"]],[5,7,["H5650"]],[7,10,["H776"]],[10,12,["H4714"]],[12,16,["H3068"]],[16,18,["H430"]],[18,21,["H3318"]],[21,22,["H4480","H8033"]],[22,25,["H2389"]],[25,26,["H3027"]],[26,31,["H5186"]],[31,32,["H2220"]],[32,33,["H5921","H3651"]],[33,35,["H3068"]],[35,37,["H430"]],[37,38,["H6680"]],[38,41,["H6213","(H853)"]],[41,43,["H7676"]],[43,44,["H3117"]]]},{"k":5069,"v":[[0,1,["H3513","(H853)"]],[1,3,["H1"]],[3,6,["H517"]],[6,7,["H834"]],[7,9,["H3068"]],[9,11,["H430"]],[11,13,["H6680"]],[13,15,["H4616"]],[15,17,["H3117"]],[17,20,["H748"]],[20,22,["H4616"]],[22,26,["H3190"]],[26,29,["H5921"]],[29,31,["H127"]],[31,32,["H834"]],[32,34,["H3068"]],[34,36,["H430"]],[36,37,["H5414"]],[37,38,[]]]},{"k":5070,"v":[[0,3,["H3808"]],[3,4,["H7523"]]]},{"k":5071,"v":[[0,1,["H3808"]],[1,5,["H5003"]]]},{"k":5072,"v":[[0,1,["H3808"]],[1,4,["H1589"]]]},{"k":5073,"v":[[0,1,["H3808"]],[1,4,["H6030"]],[4,5,["H7723"]],[5,6,["H5707"]],[6,9,["H7453"]]]},{"k":5074,"v":[[0,1,["H3808"]],[1,4,["H2530"]],[4,6,["H7453"]],[6,7,["H802"]],[7,8,["H3808"]],[8,11,["H183"]],[11,13,["H7453"]],[13,14,["H1004"]],[14,16,["H7704"]],[16,19,["H5650"]],[19,22,["H519"]],[22,24,["H7794"]],[24,27,["H2543"]],[27,29,["H3605"]],[29,31,["H834"]],[31,34,["H7453"]]]},{"k":5075,"v":[[0,0,["(H853)"]],[0,1,["H428"]],[1,2,["H1697"]],[2,4,["H3068"]],[4,5,["H1696"]],[5,6,["H413"]],[6,7,["H3605"]],[7,9,["H6951"]],[9,12,["H2022"]],[12,16,["H4480","H8432"]],[16,19,["H784"]],[19,22,["H6051"]],[22,27,["H6205"]],[27,30,["H1419"]],[30,31,["H6963"]],[31,36,["H3254","H3808"]],[36,39,["H3789"]],[39,41,["H5921"]],[41,42,["H8147"]],[42,43,["H3871"]],[43,45,["H68"]],[45,47,["H5414"]],[47,49,["H413"]],[49,50,[]]]},{"k":5076,"v":[[0,5,["H1961"]],[5,8,["H8085","(H853)"]],[8,10,["H6963"]],[10,14,["H4480","H8432"]],[14,17,["H2822"]],[17,20,["H2022"]],[20,22,["H1197"]],[22,24,["H784"]],[24,28,["H7126"]],[28,29,["H413"]],[29,32,["H3605"]],[32,34,["H7218"]],[34,37,["H7626"]],[37,40,["H2205"]]]},{"k":5077,"v":[[0,3,["H559"]],[3,4,["H2005"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H7200"]],[10,11,["(H853)"]],[11,13,["H3519"]],[13,16,["H1433"]],[16,20,["H8085"]],[20,22,["H6963"]],[22,26,["H4480","H8432"]],[26,29,["H784"]],[29,32,["H7200"]],[32,33,["H2088"]],[33,34,["H3117"]],[34,35,["H3588"]],[35,36,["H430"]],[36,38,["H1696"]],[38,39,["H854"]],[39,40,["H120"]],[40,43,["H2425"]]]},{"k":5078,"v":[[0,1,["H6258"]],[1,3,["H4100"]],[3,6,["H4191"]],[6,7,["H3588"]],[7,8,["H2063"]],[8,9,["H1419"]],[9,10,["H784"]],[10,12,["H398"]],[12,14,["H518"]],[14,15,["H587"]],[15,16,["H8085","(H853)"]],[16,18,["H6963"]],[18,21,["H3068"]],[21,23,["H430"]],[23,25,["H3254","H5750"]],[25,29,["H4191"]]]},{"k":5079,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,6,["H3605"]],[6,7,["H1320"]],[7,8,["H834"]],[8,10,["H8085"]],[10,12,["H6963"]],[12,15,["H2416"]],[15,16,["H430"]],[16,17,["H1696"]],[17,21,["H4480","H8432"]],[21,24,["H784"]],[24,26,["H3644"]],[26,29,["H2421"]]]},{"k":5080,"v":[[0,3,["H7126","H859"]],[3,5,["H8085","(H853)"]],[5,6,["H3605"]],[6,7,["H834"]],[7,9,["H3068"]],[9,11,["H430"]],[11,13,["H559"]],[13,15,["H1696"]],[15,16,["H859"]],[16,17,["H413"]],[17,18,["(H853)"]],[18,19,["H3605"]],[19,20,["H834"]],[20,22,["H3068"]],[22,24,["H430"]],[24,26,["H1696"]],[26,27,["H413"]],[27,32,["H8085"]],[32,35,["H6213"]],[35,36,[]]]},{"k":5081,"v":[[0,3,["H3068"]],[3,4,["H8085","(H853)"]],[4,6,["H6963"]],[6,9,["H1697"]],[9,12,["H1696"]],[12,13,["H413"]],[13,17,["H3068"]],[17,18,["H559"]],[18,19,["H413"]],[19,23,["H8085","(H853)"]],[23,25,["H6963"]],[25,28,["H1697"]],[28,30,["H2088"]],[30,31,["H5971"]],[31,32,["H834"]],[32,35,["H1696"]],[35,36,["H413"]],[36,41,["H3190"]],[41,42,["H3605"]],[42,43,["H834"]],[43,46,["H1696"]]]},{"k":5082,"v":[[0,2,["H4310","H5414"]],[2,4,["H1961"]],[4,5,["H2088"]],[5,7,["H3824"]],[7,13,["H3372"]],[13,16,["H8104","(H853)"]],[16,17,["H3605"]],[17,19,["H4687"]],[19,20,["H3605","H3117"]],[20,21,["H4616"]],[21,25,["H3190"]],[25,31,["H1121"]],[31,33,["H5769"]]]},{"k":5083,"v":[[0,1,["H1980"]],[1,2,["H559"]],[2,5,["H7725"]],[5,9,["H168"]],[9,10,[]]]},{"k":5084,"v":[[0,4,["H859"]],[4,5,["H5975"]],[5,7,["H6311"]],[7,8,["H5978"]],[8,13,["H1696"]],[13,14,["H413"]],[14,15,["(H853)"]],[15,16,["H3605"]],[16,18,["H4687"]],[18,21,["H2706"]],[21,24,["H4941"]],[24,25,["H834"]],[25,28,["H3925"]],[28,33,["H6213"]],[33,37,["H776"]],[37,38,["H834"]],[38,39,["H595"]],[39,40,["H5414"]],[40,43,["H3423"]],[43,44,[]]]},{"k":5085,"v":[[0,3,["H8104"]],[3,5,["H6213"]],[5,7,["H834"]],[7,9,["H3068"]],[9,11,["H430"]],[11,13,["H6680"]],[13,17,["H3808"]],[17,19,["H5493"]],[19,23,["H3225"]],[23,27,["H8040"]]]},{"k":5086,"v":[[0,3,["H1980"]],[3,5,["H3605"]],[5,7,["H1870"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H430"]],[12,14,["H6680"]],[14,16,["H4616"]],[16,19,["H2421"]],[19,25,["H2895"]],[25,32,["H748"]],[32,34,["H3117"]],[34,37,["H776"]],[37,38,["H834"]],[38,41,["H3423"]]]},{"k":5087,"v":[[0,2,["H2063"]],[2,5,["H4687"]],[5,7,["H2706"]],[7,10,["H4941"]],[10,11,["H834"]],[11,13,["H3068"]],[13,15,["H430"]],[15,16,["H6680"]],[16,18,["H3925"]],[18,23,["H6213"]],[23,27,["H776"]],[27,28,["H834","H8033"]],[28,29,["H859"]],[29,30,["H5674"]],[30,32,["H3423"]],[32,33,[]]]},{"k":5088,"v":[[0,1,["H4616"]],[1,4,["H3372","(H853)"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H8104","(H853)"]],[10,11,["H3605"]],[11,13,["H2708"]],[13,16,["H4687"]],[16,17,["H834"]],[17,18,["H595"]],[18,19,["H6680"]],[19,21,["H859"]],[21,24,["H1121"]],[24,27,["H1121"]],[27,28,["H1121"]],[28,29,["H3605"]],[29,31,["H3117"]],[31,34,["H2416"]],[34,36,["H4616"]],[36,38,["H3117"]],[38,41,["H748"]]]},{"k":5089,"v":[[0,1,["H8085"]],[1,4,["H3478"]],[4,6,["H8104"]],[6,8,["H6213"]],[8,10,["H834"]],[10,14,["H3190"]],[14,18,["H834"]],[18,21,["H7235"]],[21,22,["H3966"]],[22,23,["H834"]],[23,25,["H3068"]],[25,26,["H430"]],[26,29,["H1"]],[29,31,["H1696"]],[31,35,["H776"]],[35,37,["H2100"]],[37,39,["H2461"]],[39,41,["H1706"]]]},{"k":5090,"v":[[0,1,["H8085"]],[1,3,["H3478"]],[3,5,["H3068"]],[5,7,["H430"]],[7,9,["H259"]],[9,10,["H3068"]]]},{"k":5091,"v":[[0,4,["H157","(H853)"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H3605"]],[10,12,["H3824"]],[12,15,["H3605"]],[15,17,["H5315"]],[17,20,["H3605"]],[20,22,["H3966"]]]},{"k":5092,"v":[[0,2,["H428"]],[2,3,["H1697"]],[3,4,["H834"]],[4,5,["H595"]],[5,6,["H6680"]],[6,9,["H3117"]],[9,11,["H1961"]],[11,12,["H5921"]],[12,14,["H3824"]]]},{"k":5093,"v":[[0,6,["H8150"]],[6,9,["H1121"]],[9,12,["H1696"]],[12,17,["H3427"]],[17,20,["H1004"]],[20,24,["H1980"]],[24,27,["H1870"]],[27,32,["H7901"]],[32,37,["H6965"]]]},{"k":5094,"v":[[0,4,["H7194"]],[4,8,["H226"]],[8,9,["H5921"]],[9,11,["H3027"]],[11,15,["H1961"]],[15,17,["H2903"]],[17,18,["H996"]],[18,20,["H5869"]]]},{"k":5095,"v":[[0,4,["H3789"]],[4,6,["H5921"]],[6,8,["H4201"]],[8,11,["H1004"]],[11,15,["H8179"]]]},{"k":5096,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,7,["H3068"]],[7,9,["H430"]],[9,12,["H935"]],[12,14,["H413"]],[14,16,["H776"]],[16,17,["H834"]],[17,19,["H7650"]],[19,22,["H1"]],[22,24,["H85"]],[24,26,["H3327"]],[26,29,["H3290"]],[29,31,["H5414"]],[31,33,["H1419"]],[33,35,["H2896"]],[35,36,["H5892"]],[36,37,["H834"]],[37,39,["H1129"]],[39,40,["H3808"]]]},{"k":5097,"v":[[0,2,["H1004"]],[2,3,["H4392"]],[3,5,["H3605"]],[5,6,["H2898"]],[6,8,["H834"]],[8,10,["H4390"]],[10,11,["H3808"]],[11,13,["H953"]],[13,14,["H2672"]],[14,15,["H834"]],[15,17,["H2672"]],[17,18,["H3808"]],[18,19,["H3754"]],[19,22,["H2132"]],[22,23,["H834"]],[23,25,["H5193"]],[25,26,["H3808"]],[26,31,["H398"]],[31,34,["H7646"]]]},{"k":5098,"v":[[0,2,["H8104"]],[2,3,["H6435"]],[3,5,["H7911","(H853)"]],[5,7,["H3068"]],[7,8,["H834"]],[8,11,["H3318"]],[11,15,["H4480","H776"]],[15,17,["H4714"]],[17,20,["H4480","H1004"]],[20,22,["H5650"]]]},{"k":5099,"v":[[0,3,["H3372","(H853)"]],[3,5,["H3068"]],[5,7,["H430"]],[7,9,["H5647"]],[9,13,["H7650"]],[13,16,["H8034"]]]},{"k":5100,"v":[[0,3,["H3808"]],[3,4,["H1980"]],[4,5,["H310"]],[5,6,["H312"]],[6,7,["H430"]],[7,10,["H4480","H430"]],[10,13,["H5971"]],[13,14,["H834"]],[14,17,["H5439"]],[17,18,[]]]},{"k":5101,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,8,["H7067"]],[8,9,["H410"]],[9,10,["H7130"]],[10,12,["H6435"]],[12,14,["H639"]],[14,17,["H3068"]],[17,19,["H430"]],[19,21,["H2734"]],[21,25,["H8045"]],[25,28,["H4480","H5921"]],[28,30,["H6440"]],[30,33,["H127"]]]},{"k":5102,"v":[[0,3,["H3808"]],[3,4,["H5254","(H853)"]],[4,6,["H3068"]],[6,8,["H430"]],[8,9,["H834"]],[9,11,["H5254"]],[11,14,["H4532"]]]},{"k":5103,"v":[[0,4,["H8104","H8104","(H853)"]],[4,6,["H4687"]],[6,9,["H3068"]],[9,11,["H430"]],[11,14,["H5713"]],[14,17,["H2706"]],[17,18,["H834"]],[18,21,["H6680"]],[21,22,[]]]},{"k":5104,"v":[[0,4,["H6213"]],[4,8,["H3477"]],[8,10,["H2896"]],[10,13,["H5869"]],[13,16,["H3068"]],[16,17,["H4616"]],[17,21,["H3190"]],[21,29,["H935"]],[29,31,["H3423","(H853)"]],[31,33,["H2896"]],[33,34,["H776"]],[34,35,["H834"]],[35,37,["H3068"]],[37,38,["H7650"]],[38,41,["H1"]]]},{"k":5105,"v":[[0,3,["H1920","(H853)"]],[3,4,["H3605"]],[4,6,["H341"]],[6,8,["H4480","H6440"]],[8,10,["H834"]],[10,12,["H3068"]],[12,14,["H1696"]]]},{"k":5106,"v":[[0,2,["H3588"]],[2,4,["H1121"]],[4,5,["H7592"]],[5,10,["H4279"]],[10,11,["H559"]],[11,12,["H4100"]],[12,15,["H5713"]],[15,18,["H2706"]],[18,21,["H4941"]],[21,22,["H834"]],[22,24,["H3068"]],[24,26,["H430"]],[26,28,["H6680"]],[28,29,[]]]},{"k":5107,"v":[[0,4,["H559"]],[4,7,["H1121"]],[7,9,["H1961"]],[9,10,["H6547"]],[10,11,["H5650"]],[11,13,["H4714"]],[13,16,["H3068"]],[16,19,["H3318"]],[19,21,["H4480","H4714"]],[21,24,["H2389"]],[24,25,["H3027"]]]},{"k":5108,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,5,["H226"]],[5,7,["H4159"]],[7,8,["H1419"]],[8,10,["H7451"]],[10,12,["H4714"]],[12,14,["H6547"]],[14,17,["H3605"]],[17,19,["H1004"]],[19,22,["H5869"]]]},{"k":5109,"v":[[0,5,["H3318","(H853)"]],[5,7,["H4480","H8033"]],[7,8,["H4616"]],[8,13,["H935","(H853)"]],[13,15,["H5414"]],[15,16,["(H853)"]],[16,18,["H776"]],[18,19,["H834"]],[19,21,["H7650"]],[21,24,["H1"]]]},{"k":5110,"v":[[0,3,["H3068"]],[3,4,["H6680"]],[4,7,["H6213","(H853)"]],[7,8,["H3605"]],[8,9,["H428"]],[9,10,["H2706"]],[10,12,["H3372"]],[12,13,["(H853)"]],[13,14,["H3068"]],[14,16,["H430"]],[16,19,["H2896"]],[19,20,["H3605","H3117"]],[20,26,["H2421"]],[26,31,["H2088"]],[31,32,["H3117"]]]},{"k":5111,"v":[[0,4,["H1961"]],[4,6,["H6666"]],[6,7,["H3588"]],[7,9,["H8104"]],[9,11,["H6213","(H853)"]],[11,12,["H3605"]],[12,13,["H2063"]],[13,14,["H4687"]],[14,15,["H6440"]],[15,17,["H3068"]],[17,19,["H430"]],[19,20,["H834"]],[20,23,["H6680"]],[23,24,[]]]},{"k":5112,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H935"]],[7,9,["H413"]],[9,11,["H776"]],[11,12,["H834","H8033"]],[12,13,["H859"]],[13,14,["H935"]],[14,16,["H3423"]],[16,21,["H5394"]],[21,22,["H7227"]],[22,23,["H1471"]],[23,24,["H4480","H6440"]],[24,27,["H2850"]],[27,30,["H1622"]],[30,33,["H567"]],[33,36,["H3669"]],[36,39,["H6522"]],[39,42,["H2340"]],[42,45,["H2983"]],[45,46,["H7651"]],[46,47,["H1471"]],[47,48,["H7227"]],[48,50,["H6099"]],[50,51,["H4480"]],[51,52,[]]]},{"k":5113,"v":[[0,4,["H3068"]],[4,6,["H430"]],[6,8,["H5414"]],[8,10,["H6440"]],[10,14,["H5221"]],[14,18,["H2763","H2763"]],[18,22,["H3772"]],[22,23,["H3808"]],[23,24,["H1285"]],[24,27,["H3808"]],[27,29,["H2603"]],[29,31,[]]]},{"k":5114,"v":[[0,1,["H3808"]],[1,5,["H2859"]],[5,9,["H1323"]],[9,12,["H3808"]],[12,13,["H5414"]],[13,16,["H1121"]],[16,17,["H3808"]],[17,19,["H1323"]],[19,22,["H3947"]],[22,25,["H1121"]]]},{"k":5115,"v":[[0,1,["H3588"]],[1,5,["H5493","(H853)"]],[5,7,["H1121"]],[7,9,["H4480","H310"]],[9,14,["H5647"]],[14,15,["H312"]],[15,16,["H430"]],[16,20,["H639"]],[20,23,["H3068"]],[23,25,["H2734"]],[25,29,["H8045"]],[29,31,["H4118"]]]},{"k":5116,"v":[[0,1,["H3588","H518"]],[1,2,["H3541"]],[2,5,["H6213"]],[5,10,["H5422"]],[10,12,["H4196"]],[12,15,["H7665"]],[15,17,["H4676"]],[17,20,["H1438"]],[20,22,["H842"]],[22,24,["H8313"]],[24,27,["H6456"]],[27,29,["H784"]]]},{"k":5117,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,5,["H6918"]],[5,6,["H5971"]],[6,9,["H3068"]],[9,11,["H430"]],[11,13,["H3068"]],[13,15,["H430"]],[15,17,["H977"]],[17,20,["H1961"]],[20,22,["H5459"]],[22,23,["H5971"]],[23,27,["H4480","H3605"]],[27,28,["H5971"]],[28,29,["H834"]],[29,31,["H5921"]],[31,33,["H6440"]],[33,36,["H127"]]]},{"k":5118,"v":[[0,2,["H3068"]],[2,4,["H3808"]],[4,7,["H2836"]],[7,11,["H977"]],[11,18,["H4480","H7230"]],[18,20,["H4480","H3605"]],[20,21,["H5971"]],[21,22,["H3588"]],[22,23,["H859"]],[23,26,["H4592"]],[26,28,["H4480","H3605"]],[28,29,["H5971"]]]},{"k":5119,"v":[[0,1,["H3588"]],[1,4,["H3068"]],[4,5,["H4480","H160"]],[5,11,["H4480","H8104","(H853)"]],[11,13,["H7621"]],[13,14,["H834"]],[14,17,["H7650"]],[17,20,["H1"]],[20,23,["H3068"]],[23,26,["H3318","(H853)"]],[26,29,["H2389"]],[29,30,["H3027"]],[30,32,["H6299"]],[32,37,["H4480","H1004"]],[37,39,["H5650"]],[39,42,["H4480","H3027"]],[42,44,["H6547"]],[44,45,["H4428"]],[45,47,["H4714"]]]},{"k":5120,"v":[[0,1,["H3045"]],[1,3,["H3588"]],[3,5,["H3068"]],[5,7,["H430"]],[7,8,["H1931"]],[8,10,["H430"]],[10,12,["H539"]],[12,13,["H410"]],[13,15,["H8104"]],[15,16,["H1285"]],[16,18,["H2617"]],[18,22,["H157"]],[22,25,["H8104"]],[25,27,["H4687"]],[27,30,["H505"]],[30,31,["H1755"]]]},{"k":5121,"v":[[0,2,["H7999"]],[2,5,["H8130"]],[5,7,["H413"]],[7,9,["H6440"]],[9,11,["H6"]],[11,15,["H3808"]],[15,17,["H309"]],[17,21,["H8130"]],[21,25,["H7999"]],[25,27,["H413"]],[27,29,["H6440"]]]},{"k":5122,"v":[[0,4,["H8104","(H853)"]],[4,6,["H4687"]],[6,9,["H2706"]],[9,12,["H4941"]],[12,13,["H834"]],[13,14,["H595"]],[14,15,["H6680"]],[15,18,["H3117"]],[18,20,["H6213"]],[20,21,[]]]},{"k":5123,"v":[[0,6,["H1961"]],[6,7,["H6118"]],[7,9,["H8085","(H853)"]],[9,11,["H428"]],[11,12,["H4941"]],[12,14,["H8104"]],[14,16,["H6213"]],[16,20,["H3068"]],[20,22,["H430"]],[22,24,["H8104"]],[24,26,["(H853)"]],[26,28,["H1285"]],[28,31,["H2617"]],[31,32,["H834"]],[32,34,["H7650"]],[34,37,["H1"]]]},{"k":5124,"v":[[0,4,["H157"]],[4,7,["H1288"]],[7,10,["H7235"]],[10,15,["H1288"]],[15,17,["H6529"]],[17,20,["H990"]],[20,23,["H6529"]],[23,26,["H127"]],[26,28,["H1715"]],[28,31,["H8492"]],[31,34,["H3323"]],[34,36,["H7698"]],[36,39,["H504"]],[39,42,["H6251"]],[42,45,["H6629"]],[45,46,["H5921"]],[46,48,["H127"]],[48,49,["H834"]],[49,51,["H7650"]],[51,54,["H1"]],[54,56,["H5414"]],[56,57,[]]]},{"k":5125,"v":[[0,3,["H1961"]],[3,4,["H1288"]],[4,6,["H4480","H3605"]],[6,7,["H5971"]],[7,10,["H3808"]],[10,11,["H1961"]],[11,12,["H6135"]],[12,15,["H6135"]],[15,21,["H929"]]]},{"k":5126,"v":[[0,3,["H3068"]],[3,6,["H5493"]],[6,7,["H4480"]],[7,9,["H3605"]],[9,10,["H2483"]],[10,13,["H7760"]],[13,14,["H3605","H3808"]],[14,17,["H7451"]],[17,18,["H4064"]],[18,20,["H4714"]],[20,21,["H834"]],[21,23,["H3045"]],[23,28,["H5414"]],[28,31,["H3605"]],[31,34,["H8130"]],[34,35,[]]]},{"k":5127,"v":[[0,4,["H398","(H853)"]],[4,5,["H3605"]],[5,7,["H5971"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H430"]],[12,14,["H5414"]],[14,17,["H5869"]],[17,21,["H2347","H3808"]],[21,22,["H5921"]],[22,24,["H3808"]],[24,27,["H5647","(H853)"]],[27,29,["H430"]],[29,30,["H3588"]],[30,31,["H1931"]],[31,35,["H4170"]],[35,37,[]]]},{"k":5128,"v":[[0,1,["H3588"]],[1,4,["H559"]],[4,7,["H3824"]],[7,8,["H428"]],[8,9,["H1471"]],[9,11,["H7227"]],[11,12,["H4480"]],[12,14,["H349"]],[14,15,["H3201"]],[15,17,["H3423"]],[17,18,[]]]},{"k":5129,"v":[[0,3,["H3808"]],[3,5,["H3372"]],[5,6,["H4480"]],[6,11,["H2142","H2142","(H853)"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H430"]],[16,17,["H6213"]],[17,19,["H6547"]],[19,22,["H3605"]],[22,23,["H4714"]]]},{"k":5130,"v":[[0,2,["H1419"]],[2,3,["H4531"]],[3,4,["H834"]],[4,6,["H5869"]],[6,7,["H7200"]],[7,10,["H226"]],[10,13,["H4159"]],[13,16,["H2389"]],[16,17,["H3027"]],[17,21,["H5186"]],[21,22,["H2220"]],[22,23,["H834"]],[23,25,["H3068"]],[25,27,["H430"]],[27,30,["H3318"]],[30,31,["H3651"]],[31,34,["H3068"]],[34,36,["H430"]],[36,37,["H6213"]],[37,39,["H3605"]],[39,41,["H5971"]],[41,43,["H834"]],[43,44,["H859"]],[44,46,["H3372","H4480","H6440"]]]},{"k":5131,"v":[[0,1,["H1571"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H7971","(H853)"]],[7,9,["H6880"]],[9,12,["H5704"]],[12,16,["H7604"]],[16,19,["H5641"]],[19,20,["H4480","H6440"]],[20,23,["H6"]]]},{"k":5132,"v":[[0,3,["H3808"]],[3,5,["H6206"]],[5,6,["H4480","H6440"]],[6,8,["H3588"]],[8,10,["H3068"]],[10,12,["H430"]],[12,14,["H7130"]],[14,17,["H1419"]],[17,18,["H410"]],[18,20,["H3372"]]]},{"k":5133,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,8,["H5394","(H853)"]],[8,9,["H411"]],[9,10,["H1471"]],[10,11,["H4480","H6440"]],[11,14,["H4592"]],[14,16,["H4592"]],[16,18,["H3201"]],[18,19,["H3808"]],[19,20,["H3615"]],[20,23,["H4118"]],[23,24,["H6435"]],[24,26,["H2416"]],[26,29,["H7704"]],[29,30,["H7235"]],[30,31,["H5921"]],[31,32,[]]]},{"k":5134,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,7,["H5414"]],[7,9,["H6440"]],[9,13,["H1949"]],[13,17,["H1419"]],[17,18,["H4103"]],[18,19,["H5704"]],[19,22,["H8045"]]]},{"k":5135,"v":[[0,4,["H5414"]],[4,6,["H4428"]],[6,9,["H3027"]],[9,13,["H6","(H853)"]],[13,15,["H8034"]],[15,17,["H4480","H8478"]],[17,18,["H8064"]],[18,21,["H3808"]],[21,22,["H376"]],[22,26,["H3320"]],[26,27,["H6440"]],[27,29,["H5704"]],[29,32,["H8045"]],[32,33,[]]]},{"k":5136,"v":[[0,3,["H6456"]],[3,6,["H430"]],[6,9,["H8313"]],[9,11,["H784"]],[11,14,["H3808"]],[14,15,["H2530"]],[15,17,["H3701"]],[17,19,["H2091"]],[19,22,["H5921"]],[22,25,["H3947"]],[25,29,["H6435"]],[29,32,["H3369"]],[32,34,["H3588"]],[34,35,["H1931"]],[35,38,["H8441"]],[38,41,["H3068"]],[41,43,["H430"]]]},{"k":5137,"v":[[0,1,["H3808"]],[1,4,["H935"]],[4,6,["H8441"]],[6,7,["H413"]],[7,9,["H1004"]],[9,12,["H1961"]],[12,15,["H2764"]],[15,17,["H3644"]],[17,22,["H8262","H8262"]],[22,28,["H8581","H8581"]],[28,30,["H3588"]],[30,31,["H1931"]],[31,35,["H2764"]]]},{"k":5138,"v":[[0,1,["H3605"]],[1,3,["H4687"]],[3,4,["H834"]],[4,5,["H595"]],[5,6,["H6680"]],[6,9,["H3117"]],[9,12,["H8104"]],[12,14,["H6213"]],[14,15,["H4616"]],[15,18,["H2421"]],[18,20,["H7235"]],[20,23,["H935"]],[23,25,["H3423","(H853)"]],[25,27,["H776"]],[27,28,["H834"]],[28,30,["H3068"]],[30,31,["H7650"]],[31,34,["H1"]]]},{"k":5139,"v":[[0,4,["H2142","(H853)"]],[4,5,["H3605"]],[5,7,["H1870"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H430"]],[12,13,["H1980"]],[13,15,["H2088"]],[15,16,["H705"]],[16,17,["H8141"]],[17,20,["H4057"]],[20,21,["H4616"]],[21,22,["H6031"]],[22,26,["H5254"]],[26,29,["H3045","(H853)"]],[29,30,["H834"]],[30,34,["H3824"]],[34,38,["H8104"]],[38,40,["H4687"]],[40,41,["H518"]],[41,42,["H3808"]]]},{"k":5140,"v":[[0,3,["H6031"]],[3,9,["H7456"]],[9,11,["H398"]],[11,13,["H854"]],[13,14,["H4478"]],[14,15,["H834"]],[15,17,["H3045"]],[17,18,["H3808"]],[18,19,["H3808"]],[19,22,["H1"]],[22,23,["H3045"]],[23,24,["H4616"]],[24,29,["H3045"]],[29,30,["H3588"]],[30,31,["H120"]],[31,33,["H3808"]],[33,34,["H2421"]],[34,35,["H5921"]],[35,36,["H3899"]],[36,37,["H905"]],[37,38,["H3588"]],[38,39,["H5921"]],[39,40,["H3605"]],[40,44,["H4161"]],[44,47,["H6310"]],[47,50,["H3068"]],[50,52,["H120"]],[52,53,["H2421"]]]},{"k":5141,"v":[[0,2,["H8071"]],[2,5,["H1086","H3808"]],[5,6,["H4480","H5921"]],[6,8,["H3808"]],[8,11,["H7272"]],[11,12,["H1216"]],[12,13,["H2088"]],[13,14,["H705"]],[14,15,["H8141"]]]},{"k":5142,"v":[[0,4,["H3045"]],[4,5,["H5973"]],[5,7,["H3824"]],[7,8,["H3588"]],[8,9,["H834"]],[9,11,["H376"]],[11,12,["H3256","(H853)"]],[12,14,["H1121"]],[14,17,["H3068"]],[17,19,["H430"]],[19,20,["H3256"]],[20,21,[]]]},{"k":5143,"v":[[0,4,["H8104","(H853)"]],[4,6,["H4687"]],[6,9,["H3068"]],[9,11,["H430"]],[11,13,["H1980"]],[13,16,["H1870"]],[16,19,["H3372"]],[19,20,[]]]},{"k":5144,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,6,["H935"]],[6,8,["H413"]],[8,10,["H2896"]],[10,11,["H776"]],[11,13,["H776"]],[13,15,["H5158"]],[15,17,["H4325"]],[17,19,["H5869"]],[19,21,["H8415"]],[21,24,["H3318"]],[24,26,["H1237"]],[26,28,["H2022"]]]},{"k":5145,"v":[[0,2,["H776"]],[2,4,["H2406"]],[4,6,["H8184"]],[6,8,["H1612"]],[8,11,["H8384"]],[11,13,["H7416"]],[13,15,["H776"]],[15,17,["H8081"]],[17,18,["H2132"]],[18,20,["H1706"]]]},{"k":5146,"v":[[0,2,["H776"]],[2,3,["H834"]],[3,6,["H398"]],[6,7,["H3899"]],[7,8,["H3808"]],[8,9,["H4544"]],[9,12,["H3808"]],[12,13,["H2637"]],[13,14,["H3605"]],[14,19,["H776"]],[19,20,["H834"]],[20,21,["H68"]],[21,23,["H1270"]],[23,28,["H4480","H2042"]],[28,31,["H2672"]],[31,32,["H5178"]]]},{"k":5147,"v":[[0,4,["H398"]],[4,7,["H7646"]],[7,11,["H1288","(H853)"]],[11,13,["H3068"]],[13,15,["H430"]],[15,16,["H5921"]],[16,18,["H2896"]],[18,19,["H776"]],[19,20,["H834"]],[20,23,["H5414"]],[23,24,[]]]},{"k":5148,"v":[[0,1,["H8104"]],[1,5,["H6435","H7911","(H853)"]],[5,7,["H3068"]],[7,9,["H430"]],[9,11,["H1115"]],[11,12,["H8104"]],[12,14,["H4687"]],[14,17,["H4941"]],[17,20,["H2708"]],[20,21,["H834"]],[21,22,["H595"]],[22,23,["H6680"]],[23,26,["H3117"]]]},{"k":5149,"v":[[0,1,["H6435"]],[1,5,["H398"]],[5,8,["H7646"]],[8,11,["H1129"]],[11,12,["H2896"]],[12,13,["H1004"]],[13,15,["H3427"]],[15,16,[]]]},{"k":5150,"v":[[0,4,["H1241"]],[4,7,["H6629"]],[7,8,["H7235"]],[8,11,["H3701"]],[11,14,["H2091"]],[14,16,["H7235"]],[16,18,["H3605"]],[18,19,["H834"]],[19,23,["H7235"]]]},{"k":5151,"v":[[0,3,["H3824"]],[3,6,["H7311"]],[6,9,["H7911","(H853)"]],[9,11,["H3068"]],[11,13,["H430"]],[13,17,["H3318"]],[17,21,["H4480","H776"]],[21,23,["H4714"]],[23,26,["H4480","H1004"]],[26,28,["H5650"]]]},{"k":5152,"v":[[0,2,["H1980"]],[2,6,["H1419"]],[6,8,["H3372"]],[8,9,["H4057"]],[9,12,["H8314"]],[12,13,["H5175"]],[13,15,["H6137"]],[15,17,["H6774"]],[17,18,["H834"]],[18,21,["H369"]],[21,22,["H4325"]],[22,26,["H3318"]],[26,27,["H4325"]],[27,31,["H4480","H6697"]],[31,33,["H2496"]]]},{"k":5153,"v":[[0,2,["H398"]],[2,6,["H4057"]],[6,8,["H4478"]],[8,9,["H834"]],[9,11,["H1"]],[11,12,["H3045"]],[12,13,["H3808"]],[13,14,["H4616"]],[14,17,["H6031"]],[17,20,["H4616"]],[20,23,["H5254"]],[23,28,["H3190"]],[28,32,["H319"]]]},{"k":5154,"v":[[0,3,["H559"]],[3,6,["H3824"]],[6,8,["H3581"]],[8,11,["H6108"]],[11,14,["H3027"]],[14,16,["H6213"]],[16,17,["(H853)"]],[17,18,["H2088"]],[18,19,["H2428"]]]},{"k":5155,"v":[[0,4,["H2142","(H853)"]],[4,6,["H3068"]],[6,8,["H430"]],[8,9,["H3588"]],[9,12,["H1931"]],[12,14,["H5414"]],[14,16,["H3581"]],[16,18,["H6213"]],[18,19,["H2428"]],[19,20,["H4616"]],[20,23,["H6965","(H853)"]],[23,25,["H1285"]],[25,26,["H834"]],[26,28,["H7650"]],[28,31,["H1"]],[31,35,["H2088"]],[35,36,["H3117"]]]},{"k":5156,"v":[[0,4,["H1961"]],[4,5,["H518"]],[5,10,["H7911","H7911","(H853)"]],[10,12,["H3068"]],[12,14,["H430"]],[14,16,["H1980"]],[16,17,["H310"]],[17,18,["H312"]],[18,19,["H430"]],[19,21,["H5647"]],[21,24,["H7812"]],[24,27,["H5749"]],[27,31,["H3117"]],[31,32,["H3588"]],[32,36,["H6","H6"]]]},{"k":5157,"v":[[0,3,["H1471"]],[3,4,["H834"]],[4,6,["H3068"]],[6,7,["H6"]],[7,10,["H4480","H6440"]],[10,11,["H3651"]],[11,14,["H6"]],[14,15,["H6118"]],[15,18,["H3808"]],[18,20,["H8085"]],[20,23,["H6963"]],[23,26,["H3068"]],[26,28,["H430"]]]},{"k":5158,"v":[[0,1,["H8085"]],[1,3,["H3478"]],[3,4,["H859"]],[4,8,["H5674","(H853)"]],[8,9,["H3383"]],[9,11,["H3117"]],[11,14,["H935"]],[14,16,["H3423"]],[16,17,["H1471"]],[17,18,["H1419"]],[18,20,["H6099"]],[20,21,["H4480"]],[21,23,["H5892"]],[23,24,["H1419"]],[24,27,["H1219"]],[27,29,["H8064"]]]},{"k":5159,"v":[[0,2,["H5971"]],[2,3,["H1419"]],[3,5,["H7311"]],[5,7,["H1121"]],[7,10,["H6062"]],[10,11,["H834"]],[11,12,["H859"]],[12,13,["H3045"]],[13,17,["H859"]],[17,19,["H8085"]],[19,21,["H4310"]],[21,23,["H3320"]],[23,24,["H6440"]],[24,26,["H1121"]],[26,28,["H6061"]]]},{"k":5160,"v":[[0,1,["H3045"]],[1,4,["H3117"]],[4,5,["H3588"]],[5,7,["H3068"]],[7,9,["H430"]],[9,11,["H1931"]],[11,14,["H5674"]],[14,15,["H6440"]],[15,19,["H398"]],[19,20,["H784"]],[20,21,["H1931"]],[21,23,["H8045"]],[23,26,["H1931"]],[26,30,["H3665"]],[30,33,["H6440"]],[33,39,["H3423"]],[39,41,["H6"]],[41,43,["H4118"]],[43,44,["H834"]],[44,46,["H3068"]],[46,48,["H1696"]],[48,50,[]]]},{"k":5161,"v":[[0,1,["H559"]],[1,2,["H408"]],[2,6,["H3824"]],[6,10,["H3068"]],[10,12,["H430"]],[12,16,["H1920","(H853)"]],[16,18,["H4480","H6440"]],[18,20,["H559"]],[20,23,["H6666"]],[23,25,["H3068"]],[25,29,["H935"]],[29,31,["H3423","(H853)"]],[31,32,["H2063"]],[32,33,["H776"]],[33,37,["H7564"]],[37,39,["H428"]],[39,40,["H1471"]],[40,42,["H3068"]],[42,46,["H3423"]],[46,48,["H4480","H6440"]],[48,49,[]]]},{"k":5162,"v":[[0,1,["H3808"]],[1,4,["H6666"]],[4,8,["H3476"]],[8,11,["H3824"]],[11,13,["H859"]],[13,14,["H935"]],[14,16,["H3423","(H853)"]],[16,18,["H776"]],[18,19,["H3588"]],[19,22,["H7564"]],[22,24,["H428"]],[24,25,["H1471"]],[25,27,["H3068"]],[27,29,["H430"]],[29,33,["H3423"]],[33,35,["H4480","H6440"]],[35,38,["H4616"]],[38,41,["H6965","(H853)"]],[41,43,["H1697"]],[43,44,["H834"]],[44,46,["H3068"]],[46,47,["H7650"]],[47,50,["H1"]],[50,51,["H85"]],[51,52,["H3327"]],[52,54,["H3290"]]]},{"k":5163,"v":[[0,1,["H3045"]],[1,3,["H3588"]],[3,5,["H3068"]],[5,7,["H430"]],[7,8,["H5414"]],[8,10,["H3808","(H853)"]],[10,11,["H2063"]],[11,12,["H2896"]],[12,13,["H776"]],[13,15,["H3423"]],[15,19,["H6666"]],[19,20,["H3588"]],[20,21,["H859"]],[21,24,["H7186","H6203"]],[24,25,["H5971"]]]},{"k":5164,"v":[[0,1,["H2142"]],[1,3,["H7911"]],[3,4,["H408","(H853)"]],[4,5,["H834"]],[5,7,["H7107","(H853)"]],[7,9,["H3068"]],[9,11,["H430"]],[11,16,["H4057"]],[16,17,["H4480"]],[17,19,["H3117"]],[19,20,["H834"]],[20,23,["H3318"]],[23,27,["H4480","H776"]],[27,29,["H4714"]],[29,30,["H5704"]],[30,32,["H935"]],[32,33,["H5704"]],[33,34,["H2088"]],[34,35,["H4725"]],[35,38,["H1961"]],[38,39,["H4784"]],[39,40,["H5973"]],[40,42,["H3068"]]]},{"k":5165,"v":[[0,3,["H2722"]],[3,5,["H7107","(H853)"]],[5,7,["H3068"]],[7,13,["H3068"]],[13,15,["H599"]],[15,20,["H8045"]],[20,21,[]]]},{"k":5166,"v":[[0,5,["H5927"]],[5,8,["H2022"]],[8,10,["H3947"]],[10,12,["H3871"]],[12,14,["H68"]],[14,17,["H3871"]],[17,20,["H1285"]],[20,21,["H834"]],[21,23,["H3068"]],[23,24,["H3772"]],[24,25,["H5973"]],[25,29,["H3427"]],[29,32,["H2022"]],[32,33,["H705"]],[33,34,["H3117"]],[34,36,["H705"]],[36,37,["H3915"]],[37,39,["H3808"]],[39,41,["H398"]],[41,42,["H3899"]],[42,43,["H3808"]],[43,44,["H8354"]],[44,45,["H4325"]]]},{"k":5167,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,5,["H413"]],[5,6,["(H853)"]],[6,7,["H8147"]],[7,8,["H3871"]],[8,10,["H68"]],[10,11,["H3789"]],[11,14,["H676"]],[14,16,["H430"]],[16,18,["H5921"]],[18,24,["H3605"]],[24,26,["H1697"]],[26,27,["H834"]],[27,29,["H3068"]],[29,30,["H1696"]],[30,31,["H5973"]],[31,35,["H2022"]],[35,39,["H4480","H8432"]],[39,42,["H784"]],[42,45,["H3117"]],[45,48,["H6951"]]]},{"k":5168,"v":[[0,5,["H1961"]],[5,8,["H4480","H7093"]],[8,10,["H705"]],[10,11,["H3117"]],[11,13,["H705"]],[13,14,["H3915"]],[14,17,["H3068"]],[17,18,["H5414","H413"]],[18,19,["(H853)"]],[19,21,["H8147"]],[21,22,["H3871"]],[22,24,["H68"]],[24,27,["H3871"]],[27,30,["H1285"]]]},{"k":5169,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H6965"]],[7,10,["H3381"]],[10,11,["H4118"]],[11,13,["H4480","H2088"]],[13,14,["H3588"]],[14,16,["H5971"]],[16,17,["H834"]],[17,21,["H3318"]],[21,24,["H4480","H4714"]],[24,26,["H7843"]],[26,30,["H4118"]],[30,32,["H5493"]],[32,34,["H4480"]],[34,36,["H1870"]],[36,37,["H834"]],[37,39,["H6680"]],[39,43,["H6213"]],[43,47,["H4541"]]]},{"k":5170,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H559"]],[7,10,["H7200","(H853)"]],[10,11,["H2088"]],[11,12,["H5971"]],[12,14,["H2009"]],[14,15,["H1931"]],[15,18,["H7186","H6203"]],[18,19,["H5971"]]]},{"k":5171,"v":[[0,3,["H7503","H4480"]],[3,7,["H8045"]],[7,11,["H4229","(H853)"]],[11,13,["H8034"]],[13,15,["H4480","H8478"]],[15,16,["H8064"]],[16,20,["H6213"]],[20,24,["H1471"]],[24,25,["H6099"]],[25,27,["H7227"]],[27,28,["H4480"]],[28,29,[]]]},{"k":5172,"v":[[0,3,["H6437"]],[3,6,["H3381"]],[6,7,["H4480"]],[7,9,["H2022"]],[9,12,["H2022"]],[12,13,["H1197"]],[13,15,["H784"]],[15,18,["H8147"]],[18,19,["H3871"]],[19,22,["H1285"]],[22,24,["H5921"]],[24,26,["H8147"]],[26,27,["H3027"]]]},{"k":5173,"v":[[0,3,["H7200"]],[3,5,["H2009"]],[5,8,["H2398"]],[8,11,["H3068"]],[11,13,["H430"]],[13,16,["H6213"]],[16,19,["H4541"]],[19,20,["H5695"]],[20,24,["H5493"]],[24,25,["H4118"]],[25,27,["H4480"]],[27,29,["H1870"]],[29,30,["H834"]],[30,32,["H3068"]],[32,34,["H6680"]],[34,35,[]]]},{"k":5174,"v":[[0,3,["H8610"]],[3,5,["H8147"]],[5,6,["H3871"]],[6,8,["H7993"]],[8,11,["H4480","H5921"]],[11,13,["H8147"]],[13,14,["H3027"]],[14,16,["H7665"]],[16,20,["H5869"]]]},{"k":5175,"v":[[0,4,["H5307"]],[4,5,["H6440"]],[5,7,["H3068"]],[7,11,["H7223"]],[11,12,["H705"]],[12,13,["H3117"]],[13,15,["H705"]],[15,16,["H3915"]],[16,19,["H3808"]],[19,20,["H398"]],[20,21,["H3899"]],[21,22,["H3808"]],[22,23,["H8354"]],[23,24,["H4325"]],[24,26,["H5921"]],[26,27,["H3605"]],[27,29,["H2403"]],[29,30,["H834"]],[30,32,["H2398"]],[32,34,["H6213"]],[34,35,["H7451"]],[35,38,["H5869"]],[38,41,["H3068"]],[41,46,["H3707"]]]},{"k":5176,"v":[[0,1,["H3588"]],[1,4,["H3025"]],[4,5,["H4480","H6440"]],[5,7,["H639"]],[7,10,["H2534"]],[10,11,["H834"]],[11,13,["H3068"]],[13,15,["H7107"]],[15,16,["H5921"]],[16,19,["H8045"]],[19,23,["H3068"]],[23,24,["H8085"]],[24,25,["H413"]],[25,28,["H1931"]],[28,29,["H6471"]],[29,30,["H1571"]]]},{"k":5177,"v":[[0,3,["H3068"]],[3,6,["H599","H3966"]],[6,8,["H175"]],[8,11,["H8045"]],[11,15,["H6419"]],[15,16,["H1157"]],[16,17,["H175"]],[17,18,["H1571"]],[18,20,["H1931"]],[20,21,["H6256"]]]},{"k":5178,"v":[[0,3,["H3947"]],[3,5,["H2403","(H853)"]],[5,7,["H5695"]],[7,8,["H834"]],[8,11,["H6213"]],[11,13,["H8313"]],[13,16,["H784"]],[16,18,["H3807"]],[18,21,["H2912"]],[21,24,["H3190"]],[24,26,["H5704"]],[26,27,["H834"]],[27,30,["H1854"]],[30,32,["H6083"]],[32,35,["H7993","(H853)"]],[35,37,["H6083"]],[37,39,["H413"]],[39,41,["H5158"]],[41,43,["H3381"]],[43,45,["H4480"]],[45,47,["H2022"]]]},{"k":5179,"v":[[0,3,["H8404"]],[3,6,["H4532"]],[6,9,["H6914"]],[9,11,["H7107","(H853)"]],[11,13,["H3068"]],[13,15,[]]]},{"k":5180,"v":[[0,4,["H3068"]],[4,5,["H7971"]],[5,8,["H4480","H6947"]],[8,9,["H559"]],[9,11,["H5927"]],[11,13,["H3423","(H853)"]],[13,15,["H776"]],[15,16,["H834"]],[16,19,["H5414"]],[19,24,["H4784","(H853)"]],[24,26,["H6310"]],[26,29,["H3068"]],[29,31,["H430"]],[31,34,["H539"]],[34,36,["H3808"]],[36,37,["H3808"]],[37,38,["H8085"]],[38,41,["H6963"]]]},{"k":5181,"v":[[0,3,["H1961"]],[3,4,["H4784"]],[4,5,["H5973"]],[5,7,["H3068"]],[7,10,["H4480","H3117"]],[10,13,["H3045"]],[13,14,[]]]},{"k":5182,"v":[[0,4,["H5307"]],[4,5,["H6440"]],[5,7,["H3068","(H853)"]],[7,8,["H705"]],[8,9,["H3117"]],[9,11,["H705"]],[11,12,["H3915"]],[12,13,["H834"]],[13,16,["H5307"]],[16,20,["H3588"]],[20,22,["H3068"]],[22,24,["H559"]],[24,27,["H8045"]],[27,28,[]]]},{"k":5183,"v":[[0,2,["H6419"]],[2,4,["H413"]],[4,6,["H3068"]],[6,8,["H559"]],[8,10,["H136"]],[10,11,["H3069"]],[11,12,["H7843"]],[12,13,["H408"]],[13,15,["H5971"]],[15,18,["H5159"]],[18,19,["H834"]],[19,22,["H6299"]],[22,25,["H1433"]],[25,26,["H834"]],[26,30,["H3318"]],[30,33,["H4480","H4714"]],[33,36,["H2389"]],[36,37,["H3027"]]]},{"k":5184,"v":[[0,1,["H2142"]],[1,3,["H5650"]],[3,4,["H85"]],[4,5,["H3327"]],[5,7,["H3290"]],[7,8,["H6437"]],[8,9,["H408"]],[9,10,["H413"]],[10,12,["H7190"]],[12,14,["H2088"]],[14,15,["H5971"]],[15,17,["H413"]],[17,19,["H7562"]],[19,21,["H413"]],[21,23,["H2403"]]]},{"k":5185,"v":[[0,1,["H6435"]],[1,3,["H776"]],[3,4,["H834","H4480","H8034"]],[4,8,["H3318"]],[8,9,["H559"]],[9,12,["H3068"]],[12,15,["H4480","H1097","H3201"]],[15,17,["H935"]],[17,19,["H413"]],[19,21,["H776"]],[21,22,["H834"]],[22,24,["H1696"]],[24,29,["H4480","H8135"]],[29,35,["H3318"]],[35,37,["H4191"]],[37,41,["H4057"]]]},{"k":5186,"v":[[0,2,["H1992"]],[2,5,["H5971"]],[5,8,["H5159"]],[8,9,["H834"]],[9,12,["H3318"]],[12,15,["H1419"]],[15,16,["H3581"]],[16,21,["H5186"]],[21,22,["H2220"]]]},{"k":5187,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,5,["H3068"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H6458"]],[9,11,["H8147"]],[11,12,["H3871"]],[12,14,["H68"]],[14,18,["H7223"]],[18,21,["H5927"]],[21,22,["H413"]],[22,26,["H2022"]],[26,28,["H6213"]],[28,31,["H727"]],[31,33,["H6086"]]]},{"k":5188,"v":[[0,4,["H3789"]],[4,5,["H5921"]],[5,7,["H3871","(H853)"]],[7,9,["H1697"]],[9,10,["H834"]],[10,11,["H1961"]],[11,12,["H5921"]],[12,14,["H7223"]],[14,15,["H3871"]],[15,16,["H834"]],[16,18,["H7665"]],[18,22,["H7760"]],[22,26,["H727"]]]},{"k":5189,"v":[[0,3,["H6213"]],[3,5,["H727"]],[5,7,["H7848"]],[7,8,["H6086"]],[8,10,["H6458"]],[10,11,["H8147"]],[11,12,["H3871"]],[12,14,["H68"]],[14,18,["H7223"]],[18,21,["H5927"]],[21,24,["H2022"]],[24,27,["H8147"]],[27,28,["H3871"]],[28,31,["H3027"]]]},{"k":5190,"v":[[0,3,["H3789"]],[3,4,["H5921"]],[4,6,["H3871"]],[6,10,["H7223"]],[10,11,["H4385","(H853)"]],[11,13,["H6235"]],[13,14,["H1697"]],[14,15,["H834"]],[15,17,["H3068"]],[17,18,["H1696"]],[18,19,["H413"]],[19,23,["H2022"]],[23,27,["H4480","H8432"]],[27,30,["H784"]],[30,33,["H3117"]],[33,36,["H6951"]],[36,39,["H3068"]],[39,40,["H5414"]],[40,42,["H413"]],[42,43,[]]]},{"k":5191,"v":[[0,4,["H6437"]],[4,7,["H3381"]],[7,8,["H4480"]],[8,10,["H2022"]],[10,12,["H7760","(H853)"]],[12,14,["H3871"]],[14,17,["H727"]],[17,18,["H834"]],[18,21,["H6213"]],[21,23,["H8033"]],[23,25,["H1961"]],[25,26,["H834"]],[26,28,["H3068"]],[28,29,["H6680"]],[29,30,[]]]},{"k":5192,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,8,["H5265"]],[8,10,["H4480","H881"]],[10,13,["H1121"]],[13,15,["H3292"]],[15,17,["H4149"]],[17,18,["H8033"]],[18,19,["H175"]],[19,20,["H4191"]],[20,22,["H8033"]],[22,25,["H6912"]],[25,27,["H499"]],[27,29,["H1121"]],[29,34,["H3547"]],[34,37,["H8478"]]]},{"k":5193,"v":[[0,2,["H4480","H8033"]],[2,4,["H5265"]],[4,6,["H1412"]],[6,8,["H4480"]],[8,9,["H1412"]],[9,11,["H3193"]],[11,13,["H776"]],[13,15,["H5158"]],[15,17,["H4325"]]]},{"k":5194,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,5,["H3068"]],[5,6,["H914","(H853)"]],[6,8,["H7626"]],[8,10,["H3878"]],[10,12,["H5375","(H853)"]],[12,14,["H727"]],[14,17,["H1285"]],[17,20,["H3068"]],[20,22,["H5975"]],[22,23,["H6440"]],[23,25,["H3068"]],[25,27,["H8334"]],[27,32,["H1288"]],[32,35,["H8034"]],[35,36,["H5704"]],[36,37,["H2088"]],[37,38,["H3117"]]]},{"k":5195,"v":[[0,1,["H5921","H3651"]],[1,2,["H3878"]],[2,3,["H1961"]],[3,4,["H3808"]],[4,5,["H2506"]],[5,7,["H5159"]],[7,8,["H5973"]],[8,10,["H251"]],[10,12,["H3068"]],[12,15,["H5159"]],[15,16,["H834"]],[16,19,["H3068"]],[19,21,["H430"]],[21,22,["H1696"]],[22,23,[]]]},{"k":5196,"v":[[0,2,["H595"]],[2,3,["H5975"]],[3,6,["H2022"]],[6,10,["H7223"]],[10,11,["H3117"]],[11,12,["H705"]],[12,13,["H3117"]],[13,15,["H705"]],[15,16,["H3915"]],[16,19,["H3068"]],[19,20,["H8085"]],[20,21,["H413"]],[21,24,["H1931"]],[24,25,["H6471"]],[25,26,["H1571"]],[26,29,["H3068"]],[29,30,["H14"]],[30,31,["H3808"]],[31,32,["H7843"]],[32,33,[]]]},{"k":5197,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H6965"]],[7,8,["H1980"]],[8,10,["H4550"]],[10,11,["H6440"]],[11,13,["H5971"]],[13,18,["H935"]],[18,20,["H3423","(H853)"]],[20,22,["H776"]],[22,23,["H834"]],[23,25,["H7650"]],[25,28,["H1"]],[28,30,["H5414"]],[30,32,[]]]},{"k":5198,"v":[[0,2,["H6258"]],[2,3,["H3478"]],[3,4,["H4100"]],[4,7,["H3068"]],[7,9,["H430"]],[9,10,["H7592"]],[10,11,["H4480","H5973"]],[11,13,["H3588","H518"]],[13,15,["H3372","(H853)"]],[15,17,["H3068"]],[17,19,["H430"]],[19,21,["H1980"]],[21,23,["H3605"]],[23,25,["H1870"]],[25,28,["H157"]],[28,32,["H5647","(H853)"]],[32,34,["H3068"]],[34,36,["H430"]],[36,38,["H3605"]],[38,40,["H3824"]],[40,43,["H3605"]],[43,45,["H5315"]]]},{"k":5199,"v":[[0,2,["H8104","(H853)"]],[2,4,["H4687"]],[4,7,["H3068"]],[7,10,["H2708"]],[10,11,["H834"]],[11,12,["H595"]],[12,13,["H6680"]],[13,16,["H3117"]],[16,19,["H2896"]]]},{"k":5200,"v":[[0,1,["H2005"]],[1,3,["H8064"]],[3,6,["H8064"]],[6,8,["H8064"]],[8,11,["H3068"]],[11,13,["H430"]],[13,15,["H776"]],[15,18,["H3605"]],[18,19,["H834"]],[19,21,[]]]},{"k":5201,"v":[[0,1,["H7535"]],[1,3,["H3068"]],[3,6,["H2836"]],[6,9,["H1"]],[9,11,["H157"]],[11,15,["H977"]],[15,17,["H2233"]],[17,18,["H310"]],[18,23,["H4480","H3605"]],[23,24,["H5971"]],[24,28,["H2088"]],[28,29,["H3117"]]]},{"k":5202,"v":[[0,1,["H4135"]],[1,2,["(H853)"]],[2,4,["H6190"]],[4,7,["H3824"]],[7,10,["H3808"]],[10,11,["H5750"]],[11,12,["H6203","H7185"]]]},{"k":5203,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H430"]],[7,9,["H430"]],[9,11,["H113"]],[11,13,["H113"]],[13,15,["H1419"]],[15,16,["H410"]],[16,18,["H1368"]],[18,21,["H3372"]],[21,22,["H834"]],[22,23,["H5375"]],[23,24,["H3808"]],[24,25,["H6440"]],[25,26,["H3808"]],[26,27,["H3947"]],[27,28,["H7810"]]]},{"k":5204,"v":[[0,3,["H6213"]],[3,5,["H4941"]],[5,8,["H3490"]],[8,10,["H490"]],[10,12,["H157"]],[12,14,["H1616"]],[14,16,["H5414"]],[16,18,["H3899"]],[18,20,["H8071"]]]},{"k":5205,"v":[[0,1,["H157"]],[1,3,["(H853)"]],[3,5,["H1616"]],[5,6,["H3588"]],[6,8,["H1961"]],[8,9,["H1616"]],[9,12,["H776"]],[12,14,["H4714"]]]},{"k":5206,"v":[[0,3,["H3372","(H853)"]],[3,5,["H3068"]],[5,7,["H430"]],[7,11,["H5647"]],[11,17,["H1692"]],[17,19,["H7650"]],[19,22,["H8034"]]]},{"k":5207,"v":[[0,1,["H1931"]],[1,4,["H8416"]],[4,6,["H1931"]],[6,9,["H430"]],[9,10,["H834"]],[10,12,["H6213"]],[12,13,["H854"]],[13,14,["(H853)"]],[14,15,["H428"]],[15,16,["H1419"]],[16,19,["H3372"]],[19,20,["H834"]],[20,22,["H5869"]],[22,24,["H7200"]]]},{"k":5208,"v":[[0,2,["H1"]],[2,4,["H3381"]],[4,6,["H4714"]],[6,10,["H7657"]],[10,11,["H5315"]],[11,13,["H6258"]],[13,15,["H3068"]],[15,17,["H430"]],[17,19,["H7760"]],[19,23,["H3556"]],[23,25,["H8064"]],[25,27,["H7230"]]]},{"k":5209,"v":[[0,4,["H157","(H853)"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H8104"]],[10,12,["H4931"]],[12,15,["H2708"]],[15,18,["H4941"]],[18,21,["H4687"]],[21,22,["H3605","H3117"]]]},{"k":5210,"v":[[0,2,["H3045"]],[2,5,["H3117"]],[5,6,["H3588"]],[6,9,["H3808"]],[9,10,["H854"]],[10,12,["H1121"]],[12,13,["H834"]],[13,15,["H3808"]],[15,16,["H3045"]],[16,18,["H834"]],[18,20,["H3808"]],[20,21,["H7200","(H853)"]],[21,23,["H4148"]],[23,26,["H3068"]],[26,28,["H430","(H853)"]],[28,30,["H1433","(H853)"]],[30,32,["H2389"]],[32,33,["H3027"]],[33,37,["H5186"]],[37,38,["H2220"]]]},{"k":5211,"v":[[0,3,["H226"]],[3,6,["H4639"]],[6,7,["H834"]],[7,9,["H6213"]],[9,12,["H8432"]],[12,14,["H4714"]],[14,16,["H6547"]],[16,18,["H4428"]],[18,20,["H4714"]],[20,23,["H3605"]],[23,25,["H776"]]]},{"k":5212,"v":[[0,2,["H834"]],[2,4,["H6213"]],[4,7,["H2428"]],[7,9,["H4714"]],[9,12,["H5483"]],[12,16,["H7393"]],[16,17,["H834"]],[17,19,["(H853)"]],[19,21,["H4325"]],[21,24,["H5488"]],[24,25,["H3220"]],[25,27,["H6687","H5921","H6440"]],[27,31,["H7291"]],[31,32,["H310"]],[32,37,["H3068"]],[37,39,["H6"]],[39,41,["H5704"]],[41,42,["H2088"]],[42,43,["H3117"]]]},{"k":5213,"v":[[0,2,["H834"]],[2,4,["H6213"]],[4,9,["H4057"]],[9,10,["H5704"]],[10,12,["H935"]],[12,13,["H5704"]],[13,14,["H2088"]],[14,15,["H4725"]]]},{"k":5214,"v":[[0,2,["H834"]],[2,4,["H6213"]],[4,6,["H1885"]],[6,8,["H48"]],[8,10,["H1121"]],[10,12,["H446"]],[12,14,["H1121"]],[14,16,["H7205"]],[16,17,["H834"]],[17,19,["H776"]],[19,20,["H6475","(H853)"]],[20,22,["H6310"]],[22,26,["H1104"]],[26,29,["H1004"]],[29,32,["H168"]],[32,34,["H3605"]],[34,36,["H3351"]],[36,37,["H834"]],[37,41,["H7272"]],[41,44,["H7130"]],[44,46,["H3605"]],[46,47,["H3478"]]]},{"k":5215,"v":[[0,1,["H3588"]],[1,3,["H5869"]],[3,5,["H7200","(H853)"]],[5,6,["H3605"]],[6,8,["H1419"]],[8,9,["H4639"]],[9,12,["H3068"]],[12,13,["H834"]],[13,15,["H6213"]]]},{"k":5216,"v":[[0,4,["H8104","(H853)"]],[4,5,["H3605"]],[5,7,["H4687"]],[7,8,["H834"]],[8,9,["H595"]],[9,10,["H6680"]],[10,13,["H3117"]],[13,14,["H4616"]],[14,18,["H2388"]],[18,21,["H935"]],[21,23,["H3423","(H853)"]],[23,25,["H776"]],[25,26,["H834","H8033"]],[26,27,["H859"]],[27,28,["H5674"]],[28,30,["H3423"]],[30,31,[]]]},{"k":5217,"v":[[0,2,["H4616"]],[2,5,["H748"]],[5,7,["H3117"]],[7,8,["H5921"]],[8,10,["H127"]],[10,11,["H834"]],[11,13,["H3068"]],[13,14,["H7650"]],[14,17,["H1"]],[17,19,["H5414"]],[19,25,["H2233"]],[25,27,["H776"]],[27,29,["H2100"]],[29,31,["H2461"]],[31,33,["H1706"]]]},{"k":5218,"v":[[0,1,["H3588"]],[1,3,["H776"]],[3,4,["H834","H8033"]],[4,5,["H859"]],[5,7,["H935"]],[7,9,["H3423"]],[9,12,["H3808"]],[12,15,["H776"]],[15,17,["H4714"]],[17,19,["H834","H4480","H8033"]],[19,22,["H3318"]],[22,23,["H834"]],[23,25,["H2232","(H853)"]],[25,27,["H2233"]],[27,29,["H8248"]],[29,33,["H7272"]],[33,36,["H1588"]],[36,38,["H3419"]]]},{"k":5219,"v":[[0,3,["H776"]],[3,4,["H834","H8033"]],[4,5,["H859"]],[5,6,["H5674"]],[6,8,["H3423"]],[8,12,["H776"]],[12,14,["H2022"]],[14,16,["H1237"]],[16,18,["H8354"]],[18,19,["H4325"]],[19,22,["H4306"]],[22,24,["H8064"]]]},{"k":5220,"v":[[0,2,["H776"]],[2,3,["H834"]],[3,5,["H3068"]],[5,7,["H430"]],[7,8,["H1875"]],[8,11,["H5869"]],[11,14,["H3068"]],[14,16,["H430"]],[16,18,["H8548"]],[18,23,["H4480","H7225"]],[23,26,["H8141"]],[26,28,["H5704"]],[28,30,["H319"]],[30,33,["H8141"]]]},{"k":5221,"v":[[0,6,["H1961"]],[6,7,["H518"]],[7,11,["H8085","H8085"]],[11,12,["H413"]],[12,14,["H4687"]],[14,15,["H834"]],[15,16,["H595"]],[16,17,["H6680"]],[17,20,["H3117"]],[20,22,["H157","(H853)"]],[22,24,["H3068"]],[24,26,["H430"]],[26,29,["H5647"]],[29,32,["H3605"]],[32,34,["H3824"]],[34,37,["H3605"]],[37,39,["H5315"]]]},{"k":5222,"v":[[0,4,["H5414"]],[4,7,["H4306"]],[7,10,["H776"]],[10,14,["H6256"]],[14,17,["H3138"]],[17,21,["H4456"]],[21,26,["H622"]],[26,28,["H1715"]],[28,31,["H8492"]],[31,34,["H3323"]]]},{"k":5223,"v":[[0,4,["H5414"]],[4,5,["H6212"]],[5,8,["H7704"]],[8,11,["H929"]],[11,15,["H398"]],[15,18,["H7646"]]]},{"k":5224,"v":[[0,2,["H8104"]],[2,5,["H6435"]],[5,7,["H3824"]],[7,10,["H6601"]],[10,14,["H5493"]],[14,16,["H5647"]],[16,17,["H312"]],[17,18,["H430"]],[18,20,["H7812"]],[20,21,[]]]},{"k":5225,"v":[[0,4,["H3068"]],[4,5,["H639"]],[5,7,["H2734"]],[7,13,["H6113","(H853)"]],[13,15,["H8064"]],[15,18,["H1961"]],[18,19,["H3808"]],[19,20,["H4306"]],[20,24,["H127"]],[24,25,["H5414"]],[25,26,["H3808","(H853)"]],[26,28,["H2981"]],[28,32,["H6"]],[32,33,["H4120"]],[33,35,["H4480","H5921"]],[35,37,["H2896"]],[37,38,["H776"]],[38,39,["H834"]],[39,41,["H3068"]],[41,42,["H5414"]],[42,43,[]]]},{"k":5226,"v":[[0,5,["H7760","(H853)"]],[5,6,["H428"]],[6,8,["H1697"]],[8,9,["H5921"]],[9,11,["H3824"]],[11,13,["H5921"]],[13,15,["H5315"]],[15,17,["H7194"]],[17,21,["H226"]],[21,22,["H5921"]],[22,24,["H3027"]],[24,28,["H1961"]],[28,30,["H2903"]],[30,31,["H996"]],[31,33,["H5869"]]]},{"k":5227,"v":[[0,4,["H3925"]],[4,5,["(H853)"]],[5,7,["H1121"]],[7,8,["H1696"]],[8,13,["H3427"]],[13,16,["H1004"]],[16,20,["H1980"]],[20,23,["H1870"]],[23,27,["H7901"]],[27,32,["H6965"]]]},{"k":5228,"v":[[0,4,["H3789"]],[4,6,["H5921"]],[6,9,["H4201"]],[9,12,["H1004"]],[12,16,["H8179"]]]},{"k":5229,"v":[[0,1,["H4616"]],[1,3,["H3117"]],[3,6,["H7235"]],[6,9,["H3117"]],[9,12,["H1121"]],[12,13,["H5921"]],[13,15,["H127"]],[15,16,["H834"]],[16,18,["H3068"]],[18,19,["H7650"]],[19,22,["H1"]],[22,24,["H5414"]],[24,28,["H3117"]],[28,30,["H8064"]],[30,31,["H5921"]],[31,33,["H776"]]]},{"k":5230,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,6,["H8104","H8104","(H853)"]],[6,7,["H3605"]],[7,8,["H2063"]],[8,9,["H4687"]],[9,10,["H834"]],[10,11,["H595"]],[11,12,["H6680"]],[12,15,["H6213"]],[15,18,["H157","(H853)"]],[18,20,["H3068"]],[20,22,["H430"]],[22,24,["H1980"]],[24,26,["H3605"]],[26,28,["H1870"]],[28,31,["H1692"]],[31,33,[]]]},{"k":5231,"v":[[0,4,["H3068"]],[4,6,["H3423","(H853)"]],[6,7,["H3605"]],[7,8,["H428"]],[8,9,["H1471"]],[9,11,["H4480","H6440"]],[11,16,["H3423"]],[16,17,["H1419"]],[17,18,["H1471"]],[18,20,["H6099"]],[20,21,["H4480"]],[21,22,[]]]},{"k":5232,"v":[[0,1,["H3605"]],[1,2,["H4725"]],[2,3,["H834"]],[3,5,["H3709"]],[5,8,["H7272"]],[8,10,["H1869"]],[10,12,["H1961"]],[12,14,["H4480"]],[14,16,["H4057"]],[16,18,["H3844"]],[18,19,["H4480"]],[19,21,["H5104"]],[21,23,["H5104"]],[23,24,["H6578"]],[24,26,["H5704"]],[26,28,["H314"]],[28,29,["H3220"]],[29,32,["H1366"]],[32,33,["H1961"]]]},{"k":5233,"v":[[0,3,["H3808"]],[3,4,["H376"]],[4,8,["H3320"]],[8,9,["H6440"]],[9,13,["H3068"]],[13,15,["H430"]],[15,17,["H5414"]],[17,19,["H6343"]],[19,24,["H4172"]],[24,27,["H5921","H6440"]],[27,28,["H3605"]],[28,30,["H776"]],[30,31,["H834"]],[31,34,["H1869"]],[34,36,["H834"]],[36,39,["H1696"]],[39,41,[]]]},{"k":5234,"v":[[0,1,["H7200"]],[1,2,["H595"]],[2,3,["H5414"]],[3,4,["H6440"]],[4,7,["H3117"]],[7,9,["H1293"]],[9,12,["H7045"]]]},{"k":5235,"v":[[0,0,["(H853)"]],[0,2,["H1293"]],[2,3,["H834"]],[3,5,["H8085","H413"]],[5,7,["H4687"]],[7,10,["H3068"]],[10,12,["H430"]],[12,13,["H834"]],[13,14,["H595"]],[14,15,["H6680"]],[15,18,["H3117"]]]},{"k":5236,"v":[[0,3,["H7045"]],[3,4,["H518"]],[4,7,["H3808"]],[7,8,["H8085","H413"]],[8,10,["H4687"]],[10,13,["H3068"]],[13,15,["H430"]],[15,18,["H5493"]],[18,20,["H4480"]],[20,22,["H1870"]],[22,23,["H834"]],[23,24,["H595"]],[24,25,["H6680"]],[25,28,["H3117"]],[28,30,["H1980"]],[30,31,["H310"]],[31,32,["H312"]],[32,33,["H430"]],[33,34,["H834"]],[34,37,["H3808"]],[37,38,["H3045"]]]},{"k":5237,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,9,["H3068"]],[9,11,["H430"]],[11,15,["H935"]],[15,16,["H413"]],[16,18,["H776"]],[18,19,["H834","H8033"]],[19,20,["H859"]],[20,21,["H935"]],[21,23,["H3423"]],[23,28,["H5414","(H853)"]],[28,30,["H1293"]],[30,31,["H5921"]],[31,32,["H2022"]],[32,33,["H1630"]],[33,36,["H7045"]],[36,37,["H5921"]],[37,38,["H2022"]],[38,39,["H5858"]]]},{"k":5238,"v":[[0,2,["H1992"]],[2,3,["H3808"]],[3,7,["H5676"]],[7,8,["H3383"]],[8,9,["H310"]],[9,11,["H1870"]],[11,14,["H8121"]],[14,16,["H3996"]],[16,19,["H776"]],[19,22,["H3669"]],[22,24,["H3427"]],[24,27,["H6160"]],[27,29,["H4136"]],[29,30,["H1537"]],[30,31,["H681"]],[31,33,["H436"]],[33,35,["H4176"]]]},{"k":5239,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,5,["H5674","(H853)"]],[5,6,["H3383"]],[6,9,["H935"]],[9,11,["H3423","(H853)"]],[11,13,["H776"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H430"]],[18,19,["H5414"]],[19,24,["H3423"]],[24,27,["H3427"]],[27,28,[]]]},{"k":5240,"v":[[0,4,["H8104"]],[4,6,["H6213","(H853)"]],[6,7,["H3605"]],[7,9,["H2706"]],[9,11,["H4941"]],[11,12,["H834"]],[12,13,["H595"]],[13,14,["H5414"]],[14,15,["H6440"]],[15,18,["H3117"]]]},{"k":5241,"v":[[0,1,["H428"]],[1,4,["H2706"]],[4,6,["H4941"]],[6,7,["H834"]],[7,10,["H8104"]],[10,12,["H6213"]],[12,15,["H776"]],[15,16,["H834"]],[16,18,["H3068"]],[18,19,["H430"]],[19,22,["H1"]],[22,23,["H5414"]],[23,26,["H3423"]],[26,28,["H3605"]],[28,30,["H3117"]],[30,31,["H834"]],[31,32,["H859"]],[32,33,["H2416"]],[33,34,["H5921"]],[34,36,["H127"]]]},{"k":5242,"v":[[0,4,["H6","H6","(H853)"]],[4,5,["H3605"]],[5,7,["H4725"]],[7,8,["H834","H8033"]],[8,10,["H1471"]],[10,11,["H834","(H853)"]],[11,12,["H859"]],[12,14,["H3423"]],[14,15,["H5647","(H853)"]],[15,17,["H430"]],[17,18,["H5921"]],[18,20,["H7311"]],[20,21,["H2022"]],[21,23,["H5921"]],[23,25,["H1389"]],[25,27,["H8478"]],[27,28,["H3605"]],[28,29,["H7488"]],[29,30,["H6086"]]]},{"k":5243,"v":[[0,4,["H5422","(H853)"]],[4,6,["H4196"]],[6,8,["H7665","(H853)"]],[8,10,["H4676"]],[10,12,["H8313"]],[12,14,["H842"]],[14,16,["H784"]],[16,21,["H1438"]],[21,24,["H6456"]],[24,27,["H430"]],[27,29,["H6","(H853)"]],[29,31,["H8034"]],[31,35,["H4480"]],[35,36,["H1931"]],[36,37,["H4725"]]]},{"k":5244,"v":[[0,3,["H3808"]],[3,4,["H6213"]],[4,5,["H3651"]],[5,8,["H3068"]],[8,10,["H430"]]]},{"k":5245,"v":[[0,1,["H3588","H518"]],[1,2,["H413"]],[2,4,["H4725"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H430"]],[9,11,["H977"]],[11,14,["H4480","H3605"]],[14,16,["H7626"]],[16,18,["H7760","(H853)"]],[18,20,["H8034"]],[20,21,["H8033"]],[21,25,["H7933"]],[25,28,["H1875"]],[28,30,["H8033"]],[30,33,["H935"]]]},{"k":5246,"v":[[0,2,["H8033"]],[2,5,["H935"]],[5,8,["H5930"]],[8,11,["H2077"]],[11,14,["H4643"]],[14,15,["(H853)"]],[15,17,["H8641"]],[17,20,["H3027"]],[20,23,["H5088"]],[23,27,["H5071"]],[27,30,["H1062"]],[30,33,["H1241"]],[33,37,["H6629"]]]},{"k":5247,"v":[[0,2,["H8033"]],[2,5,["H398"]],[5,6,["H6440"]],[6,8,["H3068"]],[8,10,["H430"]],[10,14,["H8055"]],[14,16,["H3605"]],[16,19,["H4916"]],[19,21,["H3027"]],[21,23,["H859"]],[23,26,["H1004"]],[26,27,["H834"]],[27,29,["H3068"]],[29,31,["H430"]],[31,33,["H1288"]],[33,34,[]]]},{"k":5248,"v":[[0,3,["H3808"]],[3,4,["H6213"]],[4,6,["H3605"]],[6,9,["H834"]],[9,10,["H587"]],[10,11,["H6213"]],[11,12,["H6311"]],[12,14,["H3117"]],[14,16,["H376"]],[16,17,["H3605"]],[17,19,["H3477"]],[19,23,["H5869"]]]},{"k":5249,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,6,["H5704","H6258"]],[6,7,["H935"]],[7,8,["H413"]],[8,10,["H4496"]],[10,12,["H413"]],[12,14,["H5159"]],[14,15,["H834"]],[15,17,["H3068"]],[17,19,["H430"]],[19,20,["H5414"]],[20,21,[]]]},{"k":5250,"v":[[0,5,["H5674","(H853)"]],[5,6,["H3383"]],[6,8,["H3427"]],[8,11,["H776"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H430"]],[16,20,["H5157","(H853)"]],[20,26,["H5117"]],[26,28,["H4480","H3605"]],[28,30,["H341"]],[30,32,["H4480","H5439"]],[32,36,["H3427"]],[36,38,["H983"]]]},{"k":5251,"v":[[0,4,["H1961"]],[4,6,["H4725"]],[6,7,["H834"]],[7,9,["H3068"]],[9,11,["H430"]],[11,13,["H977"]],[13,17,["H8034"]],[17,19,["H7931"]],[19,20,["H8033"]],[20,21,["H8033"]],[21,24,["H935","(H853)"]],[24,25,["H3605"]],[25,26,["H834"]],[26,27,["H595"]],[27,28,["H6680"]],[28,32,["H5930"]],[32,35,["H2077"]],[35,37,["H4643"]],[37,41,["H8641"]],[41,44,["H3027"]],[44,46,["H3605"]],[46,48,["H4005"]],[48,49,["H5088"]],[49,50,["H834"]],[50,52,["H5087"]],[52,55,["H3068"]]]},{"k":5252,"v":[[0,4,["H8055"]],[4,5,["H6440"]],[5,7,["H3068"]],[7,9,["H430"]],[9,10,["H859"]],[10,13,["H1121"]],[13,16,["H1323"]],[16,19,["H5650"]],[19,22,["H519"]],[22,25,["H3881"]],[25,26,["H834"]],[26,30,["H8179"]],[30,31,["H3588"]],[31,35,["H369"]],[35,36,["H2506"]],[36,38,["H5159"]],[38,39,["H854"]],[39,40,[]]]},{"k":5253,"v":[[0,2,["H8104"]],[2,5,["H6435"]],[5,7,["H5927"]],[7,11,["H5930"]],[11,13,["H3605"]],[13,14,["H4725"]],[14,15,["H834"]],[15,17,["H7200"]]]},{"k":5254,"v":[[0,1,["H3588","H518"]],[1,4,["H4725"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H977"]],[9,11,["H259"]],[11,14,["H7626"]],[14,15,["H8033"]],[15,18,["H5927"]],[18,21,["H5930"]],[21,23,["H8033"]],[23,26,["H6213"]],[26,27,["H3605"]],[27,28,["H834"]],[28,29,["H595"]],[29,30,["H6680"]],[30,31,[]]]},{"k":5255,"v":[[0,1,["H7535"]],[1,4,["H2076"]],[4,6,["H398"]],[6,7,["H1320"]],[7,9,["H3605"]],[9,11,["H8179"]],[11,12,["H3605"]],[12,14,["H5315"]],[14,16,["H185"]],[16,20,["H1293"]],[20,23,["H3068"]],[23,25,["H430"]],[25,26,["H834"]],[26,29,["H5414"]],[29,32,["H2931"]],[32,35,["H2889"]],[35,37,["H398"]],[37,42,["H6643"]],[42,47,["H354"]]]},{"k":5256,"v":[[0,1,["H7535"]],[1,4,["H3808"]],[4,5,["H398"]],[5,7,["H1818"]],[7,10,["H8210"]],[10,12,["H5921"]],[12,14,["H776"]],[14,16,["H4325"]]]},{"k":5257,"v":[[0,2,["H3201"]],[2,3,["H3808"]],[3,4,["H398"]],[4,7,["H8179"]],[7,9,["H4643"]],[9,12,["H1715"]],[12,16,["H8492"]],[16,20,["H3323"]],[20,23,["H1062"]],[23,26,["H1241"]],[26,30,["H6629"]],[30,32,["H3605"]],[32,35,["H5088"]],[35,36,["H834"]],[36,38,["H5087"]],[38,42,["H5071"]],[42,45,["H8641"]],[45,48,["H3027"]]]},{"k":5258,"v":[[0,1,["H3588","H518"]],[1,4,["H398"]],[4,6,["H6440"]],[6,8,["H3068"]],[8,10,["H430"]],[10,13,["H4725"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H430"]],[18,20,["H977"]],[20,21,["H859"]],[21,24,["H1121"]],[24,27,["H1323"]],[27,30,["H5650"]],[30,33,["H519"]],[33,36,["H3881"]],[36,37,["H834"]],[37,41,["H8179"]],[41,45,["H8055"]],[45,46,["H6440"]],[46,48,["H3068"]],[48,50,["H430"]],[50,52,["H3605"]],[52,55,["H4916"]],[55,57,["H3027"]],[57,58,[]]]},{"k":5259,"v":[[0,2,["H8104"]],[2,8,["H6435","H5800","(H853)"]],[8,10,["H3881"]],[10,15,["H3605","H3117"]],[15,16,["H5921"]],[16,18,["H127"]]]},{"k":5260,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H7337","(H853)"]],[7,9,["H1366"]],[9,10,["H834"]],[10,13,["H1696"]],[13,18,["H559"]],[18,21,["H398"]],[21,22,["H1320"]],[22,23,["H3588"]],[23,25,["H5315"]],[25,26,["H183"]],[26,28,["H398"]],[28,29,["H1320"]],[29,32,["H398"]],[32,33,["H1320"]],[33,34,["H3605"]],[34,36,["H5315"]],[36,38,["H185"]]]},{"k":5261,"v":[[0,1,["H3588"]],[1,3,["H4725"]],[3,4,["H834"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H977"]],[10,12,["H7760"]],[12,14,["H8034"]],[14,15,["H8033"]],[15,18,["H7368"]],[18,19,["H4480"]],[19,24,["H2076"]],[24,27,["H4480","H1241"]],[27,31,["H4480","H6629"]],[31,32,["H834"]],[32,34,["H3068"]],[34,36,["H5414"]],[36,38,["H834"]],[38,41,["H6680"]],[41,46,["H398"]],[46,49,["H8179"]],[49,50,["H3605"]],[50,52,["H5315"]],[52,54,["H185"]]]},{"k":5262,"v":[[0,1,["H389"]],[1,2,["H834","(H853)"]],[2,4,["H6643"]],[4,7,["H354"]],[7,9,["H398"]],[9,10,["H3651"]],[10,13,["H398"]],[13,16,["H2931"]],[16,19,["H2889"]],[19,21,["H398"]],[21,24,["H3162"]]]},{"k":5263,"v":[[0,1,["H7535"]],[1,3,["H2388"]],[3,6,["H398"]],[6,7,["H1115"]],[7,9,["H1818"]],[9,10,["H3588"]],[10,12,["H1818"]],[12,15,["H5315"]],[15,19,["H3808"]],[19,20,["H398"]],[20,22,["H5315"]],[22,23,["H5973"]],[23,25,["H1320"]]]},{"k":5264,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,8,["H8210"]],[8,10,["H5921"]],[10,12,["H776"]],[12,14,["H4325"]]]},{"k":5265,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,6,["H4616"]],[6,10,["H3190"]],[10,16,["H1121"]],[16,17,["H310"]],[17,19,["H3588"]],[19,22,["H6213"]],[22,26,["H3477"]],[26,29,["H5869"]],[29,32,["H3068"]]]},{"k":5266,"v":[[0,1,["H7535"]],[1,4,["H6944"]],[4,5,["H834"]],[5,7,["H1961"]],[7,10,["H5088"]],[10,13,["H5375"]],[13,15,["H935"]],[15,16,["H413"]],[16,18,["H4725"]],[18,19,["H834"]],[19,21,["H3068"]],[21,23,["H977"]]]},{"k":5267,"v":[[0,4,["H6213"]],[4,7,["H5930"]],[7,9,["H1320"]],[9,12,["H1818"]],[12,13,["H5921"]],[13,15,["H4196"]],[15,18,["H3068"]],[18,20,["H430"]],[20,23,["H1818"]],[23,26,["H2077"]],[26,30,["H8210"]],[30,31,["H5921"]],[31,33,["H4196"]],[33,36,["H3068"]],[36,38,["H430"]],[38,42,["H398"]],[42,44,["H1320"]]]},{"k":5268,"v":[[0,1,["H8104"]],[1,3,["H8085","(H853)"]],[3,4,["H3605"]],[4,5,["H428"]],[5,6,["H1697"]],[6,7,["H834"]],[7,8,["H595"]],[8,9,["H6680"]],[9,11,["H4616"]],[11,15,["H3190"]],[15,21,["H1121"]],[21,22,["H310"]],[22,25,["H5704","H5769"]],[25,26,["H3588"]],[26,28,["H6213"]],[28,32,["H2896"]],[32,34,["H3477"]],[34,37,["H5869"]],[37,40,["H3068"]],[40,42,["H430"]]]},{"k":5269,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,8,["H3772","(H853)"]],[8,10,["H1471"]],[10,12,["H4480","H6440"]],[12,14,["H834","H8033"]],[14,15,["H859"]],[15,16,["H935"]],[16,18,["H3423"]],[18,22,["H3423"]],[22,25,["H3427"]],[25,28,["H776"]]]},{"k":5270,"v":[[0,2,["H8104"]],[2,5,["H6435"]],[5,9,["H5367"]],[9,11,["H310"]],[11,14,["H310"]],[14,17,["H8045"]],[17,19,["H4480","H6440"]],[19,22,["H6435"]],[22,24,["H1875"]],[24,28,["H430"]],[28,29,["H559"]],[29,30,["H349"]],[30,32,["H428"]],[32,33,["H1471"]],[33,34,["H5647","(H853)"]],[34,36,["H430"]],[36,38,["H3651"]],[38,40,["H589"]],[40,41,["H6213"]],[41,42,["H1571"]]]},{"k":5271,"v":[[0,3,["H3808"]],[3,4,["H6213"]],[4,5,["H3651"]],[5,8,["H3068"]],[8,10,["H430"]],[10,11,["H3588"]],[11,12,["H3605"]],[12,13,["H8441"]],[13,16,["H3068"]],[16,17,["H834"]],[17,19,["H8130"]],[19,22,["H6213"]],[22,25,["H430"]],[25,26,["H3588"]],[26,27,["H1571","(H853)"]],[27,29,["H1121"]],[29,32,["H1323"]],[32,35,["H8313"]],[35,38,["H784"]],[38,41,["H430"]]]},{"k":5272,"v":[[0,0,["(H853)"]],[0,3,["H3605","H1697","H834"]],[3,4,["H595"]],[4,5,["H6680"]],[5,7,["H8104"]],[7,9,["H6213"]],[9,13,["H3808"]],[13,14,["H3254"]],[14,15,["H5921"]],[15,16,["H3808"]],[16,17,["H1639"]],[17,18,["H4480"]],[18,19,[]]]},{"k":5273,"v":[[0,1,["H3588"]],[1,3,["H6965"]],[3,4,["H7130"]],[4,7,["H5030"]],[7,8,["H176"]],[8,10,["H2492"]],[10,12,["H2472"]],[12,14,["H5414","H413"]],[14,17,["H226"]],[17,18,["H176"]],[18,20,["H4159"]]]},{"k":5274,"v":[[0,3,["H226"]],[3,6,["H4159"]],[6,9,["H935"]],[9,10,["H834"]],[10,12,["H1696"]],[12,13,["H413"]],[13,15,["H559"]],[15,18,["H1980"]],[18,19,["H310"]],[19,20,["H312"]],[20,21,["H430"]],[21,22,["H834"]],[22,25,["H3808"]],[25,26,["H3045"]],[26,30,["H5647"]],[30,31,[]]]},{"k":5275,"v":[[0,3,["H3808"]],[3,4,["H8085"]],[4,5,["H413"]],[5,7,["H1697"]],[7,9,["H1931"]],[9,10,["H5030"]],[10,11,["H176"]],[11,12,["H1931"]],[12,13,["H2492"]],[13,15,["H2472"]],[15,16,["H3588"]],[16,18,["H3068"]],[18,20,["H430"]],[20,21,["H5254"]],[21,24,["H3045"]],[24,25,["H3426"]],[25,27,["H157","(H853)"]],[27,29,["H3068"]],[29,31,["H430"]],[31,33,["H3605"]],[33,35,["H3824"]],[35,38,["H3605"]],[38,40,["H5315"]]]},{"k":5276,"v":[[0,3,["H1980"]],[3,4,["H310"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H3372"]],[10,13,["H8104"]],[13,15,["H4687"]],[15,17,["H8085"]],[17,19,["H6963"]],[19,23,["H5647"]],[23,26,["H1692"]],[26,28,[]]]},{"k":5277,"v":[[0,2,["H1931"]],[2,3,["H5030"]],[3,4,["H176"]],[4,5,["H1931"]],[5,6,["H2492"]],[6,8,["H2472"]],[8,13,["H4191"]],[13,14,["H3588"]],[14,17,["H1696"]],[17,21,["H5627"]],[21,22,["H5921"]],[22,24,["H3068"]],[24,26,["H430"]],[26,30,["H3318","(H853)"]],[30,33,["H4480","H776"]],[33,35,["H4714"]],[35,37,["H6299"]],[37,42,["H4480","H1004"]],[42,44,["H5650"]],[44,46,["H5080"]],[46,49,["H4480"]],[49,51,["H1870"]],[51,52,["H834"]],[52,54,["H3068"]],[54,56,["H430"]],[56,57,["H6680"]],[57,60,["H1980"]],[60,68,["H1197","H7451"]],[68,71,["H4480","H7130"]],[71,73,[]]]},{"k":5278,"v":[[0,1,["H3588"]],[1,3,["H251"]],[3,5,["H1121"]],[5,8,["H517"]],[8,9,["H176"]],[9,11,["H1121"]],[11,12,["H176"]],[12,14,["H1323"]],[14,15,["H176"]],[15,17,["H802"]],[17,20,["H2436"]],[20,21,["H176"]],[21,23,["H7453"]],[23,24,["H834"]],[24,29,["H5315"]],[29,30,["H5496"]],[30,32,["H5643"]],[32,33,["H559"]],[33,36,["H1980"]],[36,38,["H5647"]],[38,39,["H312"]],[39,40,["H430"]],[40,41,["H834"]],[41,44,["H3808"]],[44,45,["H3045"]],[45,46,["H859"]],[46,49,["H1"]]]},{"k":5279,"v":[[0,4,["H4480","H430"]],[4,7,["H5971"]],[7,8,["H834"]],[8,11,["H5439"]],[11,13,["H7138"]],[13,14,["H413"]],[14,16,["H176"]],[16,18,["H7350"]],[18,19,["H4480"]],[19,24,["H4480","H7097"]],[24,27,["H776"]],[27,29,["H5704"]],[29,32,["H7097"]],[32,35,["H776"]]]},{"k":5280,"v":[[0,3,["H3808"]],[3,4,["H14"]],[4,7,["H3808"]],[7,8,["H8085"]],[8,9,["H413"]],[9,11,["H3808"]],[11,14,["H5869"]],[14,15,["H2347","H5921"]],[15,17,["H3808"]],[17,20,["H2550"]],[20,21,["H3808"]],[21,24,["H3680","H5921"]],[24,25,[]]]},{"k":5281,"v":[[0,1,["H3588"]],[1,5,["H2026","H2026"]],[5,8,["H3027"]],[8,10,["H1961"]],[10,11,["H7223"]],[11,18,["H4191"]],[18,20,["H314"]],[20,22,["H3027"]],[22,24,["H3605"]],[24,26,["H5971"]]]},{"k":5282,"v":[[0,4,["H5619"]],[4,7,["H68"]],[7,10,["H4191"]],[10,11,["H3588"]],[11,14,["H1245"]],[14,18,["H5080"]],[18,19,["H4480","H5921"]],[19,21,["H3068"]],[21,23,["H430"]],[23,27,["H3318"]],[27,30,["H4480","H776"]],[30,32,["H4714"]],[32,35,["H4480","H1004"]],[35,37,["H5650"]]]},{"k":5283,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,5,["H8085"]],[5,7,["H3372"]],[7,10,["H6213"]],[10,11,["H3808"]],[11,12,["H3254"]],[12,13,["H1697"]],[13,15,["H7451"]],[15,17,["H2088"]],[17,19,["H7130"]],[19,20,[]]]},{"k":5284,"v":[[0,1,["H3588"]],[1,4,["H8085"]],[4,7,["H259"]],[7,10,["H5892"]],[10,11,["H834"]],[11,13,["H3068"]],[13,15,["H430"]],[15,17,["H5414"]],[17,20,["H3427"]],[20,21,["H8033"]],[21,22,["H559"]]]},{"k":5285,"v":[[0,2,["H376"]],[2,4,["H1121"]],[4,6,["H1100"]],[6,9,["H3318"]],[9,11,["H4480","H7130"]],[11,15,["H5080","(H853)"]],[15,17,["H3427"]],[17,20,["H5892"]],[20,21,["H559"]],[21,24,["H1980"]],[24,26,["H5647"]],[26,27,["H312"]],[27,28,["H430"]],[28,29,["H834"]],[29,32,["H3808"]],[32,33,["H3045"]]]},{"k":5286,"v":[[0,4,["H1875"]],[4,7,["H2713"]],[7,9,["H7592"]],[9,10,["H3190"]],[10,12,["H2009"]],[12,16,["H571"]],[16,19,["H1697"]],[19,20,["H3559"]],[20,22,["H2063"]],[22,23,["H8441"]],[23,25,["H6213"]],[25,26,["H7130"]],[26,27,[]]]},{"k":5287,"v":[[0,4,["H5221","H5221","(H853)"]],[4,6,["H3427"]],[6,8,["H1931"]],[8,9,["H5892"]],[9,12,["H6310"]],[12,15,["H2719"]],[15,18,["H2763","(H853)"]],[18,20,["H3605"]],[20,21,["H834"]],[21,26,["H929"]],[26,30,["H6310"]],[30,33,["H2719"]]]},{"k":5288,"v":[[0,4,["H6908"]],[4,5,["H3605"]],[5,7,["H7998"]],[7,10,["H413"]],[10,12,["H8432"]],[12,15,["H7339"]],[15,19,["H8313"]],[19,21,["H784","(H853)"]],[21,23,["H5892"]],[23,25,["H3605"]],[25,27,["H7998"]],[27,30,["H3632"]],[30,33,["H3068"]],[33,35,["H430"]],[35,39,["H1961"]],[39,41,["H8510"]],[41,43,["H5769"]],[43,46,["H3808"]],[46,48,["H1129"]],[48,49,["H5750"]]]},{"k":5289,"v":[[0,4,["H1692"]],[4,5,["H3808","H3972"]],[5,6,["H4480"]],[6,9,["H2764"]],[9,12,["H3027"]],[12,13,["H4616"]],[13,15,["H3068"]],[15,17,["H7725"]],[17,20,["H4480","H2740"]],[20,23,["H639"]],[23,25,["H5414"]],[25,27,["H7356"]],[27,30,["H7355"]],[30,34,["H7235"]],[34,36,["H834"]],[36,39,["H7650"]],[39,42,["H1"]]]},{"k":5290,"v":[[0,1,["H3588"]],[1,4,["H8085"]],[4,7,["H6963"]],[7,10,["H3068"]],[10,12,["H430"]],[12,14,["H8104","(H853)"]],[14,15,["H3605"]],[15,17,["H4687"]],[17,18,["H834"]],[18,19,["H595"]],[19,20,["H6680"]],[20,23,["H3117"]],[23,25,["H6213"]],[25,29,["H3477"]],[29,32,["H5869"]],[32,35,["H3068"]],[35,37,["H430"]]]},{"k":5291,"v":[[0,1,["H859"]],[1,4,["H1121"]],[4,7,["H3068"]],[7,9,["H430"]],[9,12,["H3808"]],[12,14,["H1413"]],[14,15,["H3808"]],[15,16,["H7760"]],[16,18,["H7144"]],[18,19,["H996"]],[19,21,["H5869"]],[21,24,["H4191"]]]},{"k":5292,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,5,["H6918"]],[5,6,["H5971"]],[6,9,["H3068"]],[9,11,["H430"]],[11,14,["H3068"]],[14,16,["H977"]],[16,19,["H1961"]],[19,21,["H5459"]],[21,22,["H5971"]],[22,26,["H4480","H3605"]],[26,28,["H5971"]],[28,29,["H834"]],[29,31,["H5921","H6440"]],[31,33,["H127"]]]},{"k":5293,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,5,["H3605"]],[5,7,["H8441"]]]},{"k":5294,"v":[[0,1,["H2063"]],[1,4,["H929"]],[4,5,["H834"]],[5,8,["H398"]],[8,10,["H7794"]],[10,12,["H7716","H3775"]],[12,15,["H7716","H5795"]]]},{"k":5295,"v":[[0,2,["H354"]],[2,5,["H6643"]],[5,9,["H3180"]],[9,13,["H689"]],[13,16,["H1788"]],[16,20,["H8377"]],[20,23,["H2169"]]]},{"k":5296,"v":[[0,2,["H3605"]],[2,3,["H929"]],[3,5,["H6536"]],[5,7,["H6541"]],[7,9,["H8156"]],[9,11,["H8157"]],[11,13,["H8147"]],[13,14,["H6541"]],[14,16,["H5927"]],[16,18,["H1625"]],[18,21,["H929"]],[21,25,["H398"]]]},{"k":5297,"v":[[0,1,["H389","(H853)"]],[1,2,["H2088"]],[2,5,["H3808"]],[5,6,["H398"]],[6,10,["H4480","H5927"]],[10,12,["H1625"]],[12,17,["H4480","H6536"]],[17,19,["H8156"]],[19,20,["H6541"]],[20,21,["(H853)"]],[21,23,["H1581"]],[23,26,["H768"]],[26,29,["H8227"]],[29,30,["H3588"]],[30,31,["H1992"]],[31,32,["H5927"]],[32,34,["H1625"]],[34,36,["H6536"]],[36,37,["H3808"]],[37,39,["H6541"]],[39,41,["H1992"]],[41,43,["H2931"]],[43,45,[]]]},{"k":5298,"v":[[0,3,["H2386"]],[3,4,["H3588"]],[4,5,["H1931"]],[5,6,["H6536"]],[6,8,["H6541"]],[8,11,["H3808"]],[11,13,["H1625"]],[13,14,["H1931"]],[14,16,["H2931"]],[16,21,["H3808"]],[21,22,["H398"]],[22,25,["H4480","H1320"]],[25,26,["H3808"]],[26,27,["H5060"]],[27,30,["H5038"]]]},{"k":5299,"v":[[0,0,["(H853)"]],[0,1,["H2088"]],[1,4,["H398"]],[4,6,["H4480","H3605"]],[6,7,["H834"]],[7,11,["H4325"]],[11,12,["H3605"]],[12,13,["H834"]],[13,15,["H5579"]],[15,17,["H7193"]],[17,20,["H398"]]]},{"k":5300,"v":[[0,2,["H3605","H834"]],[2,4,["H369"]],[4,5,["H5579"]],[5,7,["H7193"]],[7,10,["H3808"]],[10,11,["H398"]],[11,12,["H1931"]],[12,14,["H2931"]],[14,16,[]]]},{"k":5301,"v":[[0,2,["H3605"]],[2,3,["H2889"]],[3,4,["H6833"]],[4,7,["H398"]]]},{"k":5302,"v":[[0,2,["H2088"]],[2,6,["H834"]],[6,9,["H3808"]],[9,10,["H398"]],[10,12,["H5404"]],[12,15,["H6538"]],[15,18,["H5822"]]]},{"k":5303,"v":[[0,3,["H7201"]],[3,6,["H344"]],[6,9,["H1772"]],[9,12,["H4327"]]]},{"k":5304,"v":[[0,2,["H3605"]],[2,3,["H6158"]],[3,6,["H4327"]]]},{"k":5305,"v":[[0,3,["H1323","H3284"]],[3,7,["H8464"]],[7,10,["H7828"]],[10,13,["H5322"]],[13,16,["H4327"]]]},{"k":5306,"v":[[0,0,["(H853)"]],[0,3,["H3563"]],[3,7,["H3244"]],[7,10,["H8580"]]]},{"k":5307,"v":[[0,3,["H6893"]],[3,7,["H7360"]],[7,10,["H7994"]]]},{"k":5308,"v":[[0,3,["H2624"]],[3,6,["H601"]],[6,9,["H4327"]],[9,12,["H1744"]],[12,15,["H5847"]]]},{"k":5309,"v":[[0,2,["H3605"]],[2,4,["H8318"]],[4,6,["H5775"]],[6,8,["H2931"]],[8,13,["H3808"]],[13,15,["H398"]]]},{"k":5310,"v":[[0,3,["H3605"]],[3,4,["H2889"]],[4,5,["H5775"]],[5,8,["H398"]]]},{"k":5311,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,6,["H3605"]],[6,11,["H5038"]],[11,14,["H5414"]],[14,18,["H1616"]],[18,19,["H834"]],[19,23,["H8179"]],[23,27,["H398"]],[27,29,["H176"]],[29,32,["H4376"]],[32,36,["H5237"]],[36,37,["H3588"]],[37,38,["H859"]],[38,41,["H6918"]],[41,42,["H5971"]],[42,45,["H3068"]],[45,47,["H430"]],[47,50,["H3808"]],[50,51,["H1310"]],[51,53,["H1423"]],[53,56,["H517"]],[56,57,["H2461"]]]},{"k":5312,"v":[[0,4,["H6237","H6237","(H853)"]],[4,5,["H3605"]],[5,7,["H8393"]],[7,10,["H2233"]],[10,13,["H7704"]],[13,15,["H3318"]],[15,16,["H8141"]],[16,18,["H8141"]]]},{"k":5313,"v":[[0,4,["H398"]],[4,5,["H6440"]],[5,7,["H3068"]],[7,9,["H430"]],[9,12,["H4725"]],[12,13,["H834"]],[13,16,["H977"]],[16,18,["H7931"]],[18,20,["H8034"]],[20,21,["H8033"]],[21,23,["H4643"]],[23,26,["H1715"]],[26,29,["H8492"]],[29,33,["H3323"]],[33,36,["H1062"]],[36,39,["H1241"]],[39,43,["H6629"]],[43,44,["H4616"]],[44,47,["H3925"]],[47,49,["H3372","(H853)"]],[49,51,["H3068"]],[51,53,["H430"]],[53,54,["H3605","H3117"]]]},{"k":5314,"v":[[0,2,["H3588"]],[2,4,["H1870"]],[4,7,["H7235"]],[7,8,["H4480"]],[8,11,["H3588"]],[11,15,["H3201","H3808"]],[15,17,["H5375"]],[17,20,["H3588"]],[20,22,["H4725"]],[22,25,["H7368"]],[25,26,["H4480"]],[26,28,["H834"]],[28,30,["H3068"]],[30,32,["H430"]],[32,34,["H977"]],[34,36,["H7760"]],[36,38,["H8034"]],[38,39,["H8033"]],[39,40,["H3588"]],[40,42,["H3068"]],[42,44,["H430"]],[44,46,["H1288"]],[46,47,[]]]},{"k":5315,"v":[[0,4,["H5414"]],[4,7,["H3701"]],[7,10,["H6696"]],[10,12,["H3701"]],[12,15,["H3027"]],[15,18,["H1980"]],[18,19,["H413"]],[19,21,["H4725"]],[21,22,["H834"]],[22,24,["H3068"]],[24,26,["H430"]],[26,28,["H977"]]]},{"k":5316,"v":[[0,4,["H5414"]],[4,6,["H3701"]],[6,8,["H3605","H834"]],[8,10,["H5315"]],[10,12,["H183"]],[12,14,["H1241"]],[14,17,["H6629"]],[17,20,["H3196"]],[20,24,["H7941"]],[24,27,["H3605","H834"]],[27,29,["H5315"]],[29,30,["H7592"]],[30,34,["H398"]],[34,35,["H8033"]],[35,36,["H6440"]],[36,38,["H3068"]],[38,40,["H430"]],[40,44,["H8055"]],[44,45,["H859"]],[45,48,["H1004"]]]},{"k":5317,"v":[[0,3,["H3881"]],[3,4,["H834"]],[4,8,["H8179"]],[8,11,["H3808"]],[11,12,["H5800"]],[12,14,["H3588"]],[14,17,["H369"]],[17,18,["H2506"]],[18,20,["H5159"]],[20,21,["H5973"]],[21,22,[]]]},{"k":5318,"v":[[0,3,["H4480","H7097"]],[3,5,["H7969"]],[5,6,["H8141"]],[6,10,["H3318","(H853)"]],[10,11,["H3605"]],[11,13,["H4643"]],[13,16,["H8393"]],[16,18,["H1931"]],[18,19,["H8141"]],[19,24,["H5117"]],[24,27,["H8179"]]]},{"k":5319,"v":[[0,3,["H3881"]],[3,4,["H3588"]],[4,7,["H369"]],[7,8,["H2506"]],[8,10,["H5159"]],[10,11,["H5973"]],[11,15,["H1616"]],[15,18,["H3490"]],[18,21,["H490"]],[21,22,["H834"]],[22,26,["H8179"]],[26,28,["H935"]],[28,31,["H398"]],[31,34,["H7646"]],[34,35,["H4616"]],[35,37,["H3068"]],[37,39,["H430"]],[39,41,["H1288"]],[41,44,["H3605"]],[44,46,["H4639"]],[46,49,["H3027"]],[49,50,["H834"]],[50,52,["H6213"]]]},{"k":5320,"v":[[0,3,["H4480","H7093"]],[3,6,["H7651"]],[6,7,["H8141"]],[7,10,["H6213"]],[10,12,["H8059"]]]},{"k":5321,"v":[[0,2,["H2088"]],[2,5,["H1697"]],[5,8,["H8059"]],[8,9,["H3605"]],[9,10,["H1167","H4874","H3027"]],[10,11,["H834"]],[11,12,["H5383"]],[12,16,["H7453"]],[16,18,["H8058"]],[18,22,["H3808"]],[22,23,["H5065","(H853)"]],[23,27,["H7453"]],[27,31,["H251"]],[31,32,["H3588"]],[32,35,["H7121"]],[35,37,["H3068"]],[37,38,["H8059"]]]},{"k":5322,"v":[[0,1,["(H853)"]],[1,3,["H5237"]],[3,6,["H5065"]],[6,11,["H834"]],[11,12,["H1961"]],[12,14,["H854"]],[14,16,["H251"]],[16,18,["H3027"]],[18,20,["H8058"]]]},{"k":5323,"v":[[0,1,["H657"]],[1,2,["H3588"]],[2,5,["H1961"]],[5,6,["H3808"]],[6,7,["H34"]],[7,10,["H3588"]],[10,12,["H3068"]],[12,15,["H1288","H1288"]],[15,19,["H776"]],[19,20,["H834"]],[20,22,["H3068"]],[22,24,["H430"]],[24,25,["H5414"]],[25,29,["H5159"]],[29,31,["H3423"]],[31,32,[]]]},{"k":5324,"v":[[0,1,["H7535"]],[1,2,["H518"]],[2,5,["H8085","H8085"]],[5,8,["H6963"]],[8,11,["H3068"]],[11,13,["H430"]],[13,15,["H8104"]],[15,17,["H6213","(H853)"]],[17,18,["H3605"]],[18,19,["H2063"]],[19,20,["H4687"]],[20,21,["H834"]],[21,22,["H595"]],[22,23,["H6680"]],[23,26,["H3117"]]]},{"k":5325,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,6,["H1288"]],[6,8,["H834"]],[8,10,["H1696"]],[10,15,["H5670"]],[15,17,["H7227"]],[17,18,["H1471"]],[18,20,["H859"]],[20,22,["H3808"]],[22,23,["H5670"]],[23,27,["H4910"]],[27,29,["H7227"]],[29,30,["H1471"]],[30,34,["H3808"]],[34,35,["H4910"]],[35,37,[]]]},{"k":5326,"v":[[0,1,["H3588"]],[1,3,["H1961"]],[3,8,["H34"]],[8,10,["H4480","H259"]],[10,13,["H251"]],[13,15,["H259"]],[15,18,["H8179"]],[18,21,["H776"]],[21,22,["H834"]],[22,24,["H3068"]],[24,26,["H430"]],[26,27,["H5414"]],[27,31,["H3808"]],[31,32,["H553","(H853)"]],[32,34,["H3824"]],[34,35,["H3808"]],[35,36,["H7092","(H853)"]],[36,38,["H3027"]],[38,41,["H34"]],[41,42,["H4480","H251"]]]},{"k":5327,"v":[[0,1,["H3588"]],[1,4,["H6605","(H853)"]],[4,6,["H3027"]],[6,7,["H6605"]],[7,13,["H5670","H5670"]],[13,15,["H1767"]],[15,18,["H4270"]],[18,21,["H834"]],[21,23,["H2637"]]]},{"k":5328,"v":[[0,1,["H8104"]],[1,2,["H6435"]],[2,4,["H1961"]],[4,7,["H1697"]],[7,8,["H5973"]],[8,10,["H1100"]],[10,11,["H3824"]],[11,12,["H559"]],[12,14,["H7651"]],[14,15,["H8141"]],[15,17,["H8141"]],[17,19,["H8059"]],[19,22,["H7126"]],[22,25,["H5869"]],[25,27,["H7489"]],[27,30,["H34"]],[30,31,["H251"]],[31,34,["H5414"]],[34,36,["H3808"]],[36,39,["H7121"]],[39,40,["H413"]],[40,42,["H3068"]],[42,43,["H5921"]],[43,47,["H1961"]],[47,48,["H2399"]],[48,50,[]]]},{"k":5329,"v":[[0,4,["H5414","H5414"]],[4,8,["H3824"]],[8,10,["H3808"]],[10,12,["H7489"]],[12,15,["H5414"]],[15,19,["H3588"]],[19,20,["H1558"]],[20,21,["H2088"]],[21,22,["H1697"]],[22,24,["H3068"]],[24,26,["H430"]],[26,28,["H1288"]],[28,31,["H3605"]],[31,33,["H4639"]],[33,36,["H3605"]],[36,39,["H4916"]],[39,41,["H3027"]],[41,42,[]]]},{"k":5330,"v":[[0,1,["H3588"]],[1,3,["H34"]],[3,5,["H3808"]],[5,6,["H2308"]],[6,8,["H4480","H7130"]],[8,10,["H776"]],[10,11,["H5921","H3651"]],[11,12,["H595"]],[12,13,["H6680"]],[13,15,["H559"]],[15,18,["H6605","(H853)"]],[18,20,["H3027"]],[20,21,["H6605"]],[21,24,["H251"]],[24,27,["H6041"]],[27,31,["H34"]],[31,34,["H776"]]]},{"k":5331,"v":[[0,2,["H3588"]],[2,4,["H251"]],[4,7,["H5680"]],[7,8,["H176"]],[8,11,["H5680"]],[11,13,["H4376"]],[13,17,["H5647"]],[17,19,["H8337"]],[19,20,["H8141"]],[20,24,["H7637"]],[24,25,["H8141"]],[25,30,["H7971"]],[30,31,["H2670"]],[31,32,["H4480","H5973"]],[32,33,[]]]},{"k":5332,"v":[[0,2,["H3588"]],[2,6,["H7971"]],[6,7,["H2670"]],[7,8,["H4480","H5973"]],[8,12,["H3808"]],[12,16,["H7971"]],[16,17,["H7387"]]]},{"k":5333,"v":[[0,5,["H6059","H6059"]],[5,9,["H4480","H6629"]],[9,14,["H4480","H1637"]],[14,19,["H4480","H3342"]],[19,22,["H834"]],[22,24,["H3068"]],[24,26,["H430"]],[26,28,["H1288"]],[28,32,["H5414"]],[32,34,[]]]},{"k":5334,"v":[[0,4,["H2142"]],[4,5,["H3588"]],[5,7,["H1961"]],[7,9,["H5650"]],[9,12,["H776"]],[12,14,["H4714"]],[14,17,["H3068"]],[17,19,["H430"]],[19,20,["H6299"]],[20,22,["H5921","H3651"]],[22,23,["H595"]],[23,24,["H6680"]],[24,25,["(H853)"]],[25,26,["H2088"]],[26,27,["H1697"]],[27,29,["H3117"]]]},{"k":5335,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,7,["H559"]],[7,8,["H413"]],[8,12,["H3808"]],[12,14,["H3318"]],[14,15,["H4480","H5973"]],[15,17,["H3588"]],[17,19,["H157"]],[19,23,["H1004"]],[23,24,["H3588"]],[24,27,["H2896"]],[27,28,["H5973"]],[28,29,[]]]},{"k":5336,"v":[[0,4,["H3947","(H853)"]],[4,6,["H4836"]],[6,8,["H5414"]],[8,12,["H241"]],[12,15,["H1817"]],[15,19,["H1961"]],[19,21,["H5650"]],[21,23,["H5769"]],[23,25,["H637"]],[25,28,["H519"]],[28,31,["H6213"]],[31,32,["H3651"]]]},{"k":5337,"v":[[0,3,["H3808"]],[3,7,["H7185","H5869"]],[7,12,["H7971","(H853)"]],[12,13,["H2670"]],[13,14,["H4480","H5973"]],[14,16,["H3588"]],[16,20,["H7939"]],[20,22,["H4932"]],[22,24,["H7916"]],[24,28,["H5647"]],[28,30,["H8337"]],[30,31,["H8141"]],[31,34,["H3068"]],[34,36,["H430"]],[36,38,["H1288"]],[38,41,["H3605"]],[41,42,["H834"]],[42,44,["H6213"]]]},{"k":5338,"v":[[0,1,["H3605"]],[1,3,["H1060"]],[3,4,["H2145"]],[4,5,["H834"]],[5,6,["H3205"]],[6,9,["H1241"]],[9,13,["H6629"]],[13,16,["H6942"]],[16,19,["H3068"]],[19,21,["H430"]],[21,25,["H3808"]],[25,26,["H5647"]],[26,29,["H1060"]],[29,32,["H7794"]],[32,33,["H3808"]],[33,34,["H1494"]],[34,36,["H1060"]],[36,39,["H6629"]]]},{"k":5339,"v":[[0,3,["H398"]],[3,5,["H6440"]],[5,7,["H3068"]],[7,9,["H430"]],[9,10,["H8141"]],[10,12,["H8141"]],[12,15,["H4725"]],[15,16,["H834"]],[16,18,["H3068"]],[18,20,["H977"]],[20,21,["H859"]],[21,24,["H1004"]]]},{"k":5340,"v":[[0,2,["H3588"]],[2,4,["H1961"]],[4,6,["H3971"]],[6,12,["H6455"]],[12,13,["H176"]],[13,14,["H5787"]],[14,17,["H3605"]],[17,18,["H7451"]],[18,19,["H3971"]],[19,22,["H3808"]],[22,23,["H2076"]],[23,27,["H3068"]],[27,29,["H430"]]]},{"k":5341,"v":[[0,3,["H398"]],[3,7,["H8179"]],[7,9,["H2931"]],[9,12,["H2889"]],[12,17,["H3162"]],[17,20,["H6643"]],[20,24,["H354"]]]},{"k":5342,"v":[[0,1,["H7535"]],[1,4,["H3808"]],[4,5,["H398","(H853)"]],[5,7,["H1818"]],[7,11,["H8210"]],[11,13,["H5921"]],[13,15,["H776"]],[15,17,["H4325"]]]},{"k":5343,"v":[[0,1,["H8104","(H853)"]],[1,3,["H2320"]],[3,5,["H24"]],[5,7,["H6213"]],[7,9,["H6453"]],[9,12,["H3068"]],[12,14,["H430"]],[14,15,["H3588"]],[15,18,["H2320"]],[18,20,["H24"]],[20,22,["H3068"]],[22,24,["H430"]],[24,27,["H3318"]],[27,30,["H4480","H4714"]],[30,32,["H3915"]]]},{"k":5344,"v":[[0,4,["H2076"]],[4,6,["H6453"]],[6,9,["H3068"]],[9,11,["H430"]],[11,14,["H6629"]],[14,17,["H1241"]],[17,20,["H4725"]],[20,21,["H834"]],[21,23,["H3068"]],[23,25,["H977"]],[25,27,["H7931"]],[27,29,["H8034"]],[29,30,["H8033"]]]},{"k":5345,"v":[[0,3,["H398"]],[3,4,["H3808"]],[4,6,["H2557"]],[6,7,["H5921"]],[7,9,["H7651"]],[9,10,["H3117"]],[10,13,["H398"]],[13,15,["H4682"]],[15,16,["H5921"]],[16,19,["H3899"]],[19,21,["H6040"]],[21,22,["H3588"]],[22,25,["H3318"]],[25,29,["H4480","H776"]],[29,31,["H4714"]],[31,33,["H2649"]],[33,34,["H4616"]],[34,37,["H2142","(H853)"]],[37,39,["H3117"]],[39,43,["H3318"]],[43,47,["H4480","H776"]],[47,49,["H4714"]],[49,50,["H3605"]],[50,52,["H3117"]],[52,55,["H2416"]]]},{"k":5346,"v":[[0,5,["H3808"]],[5,7,["H7603"]],[7,8,["H7200"]],[8,12,["H3605"]],[12,14,["H1366"]],[14,15,["H7651"]],[15,16,["H3117"]],[16,17,["H3808"]],[17,22,["H4480"]],[22,24,["H1320"]],[24,25,["H834"]],[25,27,["H2076"]],[27,29,["H7223"]],[29,30,["H3117"]],[30,32,["H6153"]],[32,35,["H3885"]],[35,38,["H1242"]]]},{"k":5347,"v":[[0,2,["H3201"]],[2,3,["H3808"]],[3,4,["H2076","(H853)"]],[4,6,["H6453"]],[6,8,["H259"]],[8,11,["H8179"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H430"]],[16,17,["H5414"]],[17,18,[]]]},{"k":5348,"v":[[0,1,["H3588","H518"]],[1,2,["H413"]],[2,4,["H4725"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H430"]],[9,11,["H977"]],[11,13,["H7931"]],[13,15,["H8034"]],[15,17,["H8033"]],[17,20,["H2076","(H853)"]],[20,22,["H6453"]],[22,24,["H6153"]],[24,28,["H935"]],[28,31,["H8121"]],[31,34,["H4150"]],[34,38,["H3318"]],[38,41,["H4480","H4714"]]]},{"k":5349,"v":[[0,4,["H1310"]],[4,6,["H398"]],[6,10,["H4725"]],[10,11,["H834"]],[11,13,["H3068"]],[13,15,["H430"]],[15,17,["H977"]],[17,21,["H6437"]],[21,24,["H1242"]],[24,26,["H1980"]],[26,29,["H168"]]]},{"k":5350,"v":[[0,1,["H8337"]],[1,2,["H3117"]],[2,5,["H398"]],[5,7,["H4682"]],[7,11,["H7637"]],[11,12,["H3117"]],[12,17,["H6116"]],[17,20,["H3068"]],[20,22,["H430"]],[22,25,["H6213"]],[25,26,["H3808"]],[26,27,["H4399"]],[27,28,[]]]},{"k":5351,"v":[[0,1,["H7651"]],[1,2,["H7620"]],[2,5,["H5608"]],[5,8,["H2490"]],[8,10,["H5608"]],[10,12,["H7651"]],[12,13,["H7620"]],[13,19,["H4480","H2490"]],[19,23,["H2770"]],[23,26,["H7054"]]]},{"k":5352,"v":[[0,4,["H6213"]],[4,6,["H2282"]],[6,8,["H7620"]],[8,11,["H3068"]],[11,13,["H430"]],[13,16,["H4530"]],[16,20,["H5071"]],[20,23,["H3027"]],[23,24,["H834"]],[24,27,["H5414"]],[27,34,["H834"]],[34,36,["H3068"]],[36,38,["H430"]],[38,40,["H1288"]],[40,41,[]]]},{"k":5353,"v":[[0,4,["H8055"]],[4,5,["H6440"]],[5,7,["H3068"]],[7,9,["H430"]],[9,10,["H859"]],[10,13,["H1121"]],[13,16,["H1323"]],[16,19,["H5650"]],[19,22,["H519"]],[22,25,["H3881"]],[25,26,["H834"]],[26,30,["H8179"]],[30,33,["H1616"]],[33,36,["H3490"]],[36,39,["H490"]],[39,40,["H834"]],[40,42,["H7130"]],[42,46,["H4725"]],[46,47,["H834"]],[47,49,["H3068"]],[49,51,["H430"]],[51,53,["H977"]],[53,55,["H7931"]],[55,57,["H8034"]],[57,58,["H8033"]]]},{"k":5354,"v":[[0,4,["H2142"]],[4,5,["H3588"]],[5,7,["H1961"]],[7,9,["H5650"]],[9,11,["H4714"]],[11,15,["H8104"]],[15,17,["H6213","(H853)"]],[17,18,["H428"]],[18,19,["H2706"]]]},{"k":5355,"v":[[0,3,["H6213"]],[3,5,["H2282"]],[5,7,["H5521"]],[7,8,["H7651"]],[8,9,["H3117"]],[9,14,["H622"]],[14,17,["H4480","H1637"]],[17,20,["H4480","H3342"]]]},{"k":5356,"v":[[0,4,["H8055"]],[4,7,["H2282"]],[7,8,["H859"]],[8,11,["H1121"]],[11,14,["H1323"]],[14,17,["H5650"]],[17,20,["H519"]],[20,23,["H3881"]],[23,25,["H1616"]],[25,28,["H3490"]],[28,31,["H490"]],[31,32,["H834"]],[32,36,["H8179"]]]},{"k":5357,"v":[[0,1,["H7651"]],[1,2,["H3117"]],[2,8,["H2287"]],[8,11,["H3068"]],[11,13,["H430"]],[13,16,["H4725"]],[16,17,["H834"]],[17,19,["H3068"]],[19,21,["H977"]],[21,22,["H3588"]],[22,24,["H3068"]],[24,26,["H430"]],[26,28,["H1288"]],[28,31,["H3605"]],[31,33,["H8393"]],[33,36,["H3605"]],[36,38,["H4639"]],[38,41,["H3027"]],[41,44,["H1961"]],[44,45,["H389"]],[45,46,["H8056"]]]},{"k":5358,"v":[[0,1,["H7969"]],[1,2,["H6471"]],[2,5,["H8141"]],[5,7,["H3605"]],[7,9,["H2138"]],[9,10,["H7200","(H853)"]],[10,11,["H6440"]],[11,13,["H3068"]],[13,15,["H430"]],[15,18,["H4725"]],[18,19,["H834"]],[19,22,["H977"]],[22,25,["H2282"]],[25,28,["H4682"]],[28,32,["H2282"]],[32,34,["H7620"]],[34,38,["H2282"]],[38,40,["H5521"]],[40,44,["H3808"]],[44,45,["H7200","(H853)"]],[45,46,["H6440"]],[46,48,["H3068"]],[48,49,["H7387"]]]},{"k":5359,"v":[[0,2,["H376"]],[2,8,["H4979","H3027"]],[8,12,["H1293"]],[12,15,["H3068"]],[15,17,["H430"]],[17,18,["H834"]],[18,21,["H5414"]],[21,22,[]]]},{"k":5360,"v":[[0,1,["H8199"]],[1,3,["H7860"]],[3,6,["H5414"]],[6,9,["H3605"]],[9,11,["H8179"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H430"]],[16,17,["H5414"]],[17,21,["H7626"]],[21,25,["H8199","(H853)"]],[25,27,["H5971"]],[27,29,["H6664"]],[29,30,["H4941"]]]},{"k":5361,"v":[[0,3,["H3808"]],[3,4,["H5186"]],[4,5,["H4941"]],[5,8,["H3808"]],[8,9,["H5234"]],[9,10,["H6440"]],[10,11,["H3808"]],[11,12,["H3947"]],[12,14,["H7810"]],[14,15,["H3588"]],[15,17,["H7810"]],[17,19,["H5786"]],[19,21,["H5869"]],[21,24,["H2450"]],[24,26,["H5557"]],[26,28,["H1697"]],[28,31,["H6662"]]]},{"k":5362,"v":[[0,5,["H6664","H6664"]],[5,8,["H7291"]],[8,9,["H4616"]],[9,12,["H2421"]],[12,14,["H3423","(H853)"]],[14,16,["H776"]],[16,17,["H834"]],[17,19,["H3068"]],[19,21,["H430"]],[21,22,["H5414"]],[22,23,[]]]},{"k":5363,"v":[[0,3,["H3808"]],[3,4,["H5193"]],[4,7,["H842"]],[7,9,["H3605"]],[9,10,["H6086"]],[10,11,["H681"]],[11,14,["H4196"]],[14,17,["H3068"]],[17,19,["H430"]],[19,20,["H834"]],[20,23,["H6213"]],[23,24,[]]]},{"k":5364,"v":[[0,1,["H3808"]],[1,6,["H6965"]],[6,8,["H4676"]],[8,9,["H834"]],[9,11,["H3068"]],[11,13,["H430"]],[13,14,["H8130"]]]},{"k":5365,"v":[[0,3,["H3808"]],[3,4,["H2076"]],[4,7,["H3068"]],[7,9,["H430"]],[9,11,["H7794"]],[11,13,["H7716"]],[13,14,["H834"]],[14,15,["H1961"]],[15,16,["H3971"]],[16,18,["H3605"]],[18,19,["H1697","H7451"]],[19,20,["H3588"]],[20,21,["H1931"]],[21,24,["H8441"]],[24,27,["H3068"]],[27,29,["H430"]]]},{"k":5366,"v":[[0,1,["H3588"]],[1,4,["H4672"]],[4,5,["H7130"]],[5,8,["H259"]],[8,11,["H8179"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H430"]],[16,17,["H5414"]],[17,19,["H376"]],[19,20,["H176"]],[20,21,["H802"]],[21,22,["H834"]],[22,24,["H6213","(H853)"]],[24,25,["H7451"]],[25,28,["H5869"]],[28,31,["H3068"]],[31,33,["H430"]],[33,35,["H5674"]],[35,37,["H1285"]]]},{"k":5367,"v":[[0,3,["H1980"]],[3,5,["H5647"]],[5,6,["H312"]],[6,7,["H430"]],[7,9,["H7812"]],[9,13,["H8121"]],[13,14,["H176"]],[14,15,["H3394"]],[15,16,["H176"]],[16,17,["H3605"]],[17,20,["H6635"]],[20,22,["H8064"]],[22,23,["H834"]],[23,26,["H3808"]],[26,27,["H6680"]]]},{"k":5368,"v":[[0,4,["H5046"]],[4,9,["H8085"]],[9,13,["H1875"]],[13,14,["H3190"]],[14,16,["H2009"]],[16,19,["H571"]],[19,22,["H1697"]],[22,23,["H3559"]],[23,25,["H2063"]],[25,26,["H8441"]],[26,28,["H6213"]],[28,30,["H3478"]]]},{"k":5369,"v":[[0,5,["H3318","(H853)"]],[5,6,["H1931"]],[6,7,["H376"]],[7,8,["H176"]],[8,9,["H1931"]],[9,10,["H802"]],[10,11,["H834"]],[11,13,["H6213","(H853)"]],[13,14,["H2088"]],[14,15,["H7451"]],[15,16,["H1697"]],[16,17,["H413"]],[17,19,["H8179"]],[19,20,["(H853)"]],[20,22,["H376"]],[22,23,["H176","(H853)"]],[23,25,["H802"]],[25,28,["H5619"]],[28,31,["H68"]],[31,34,["H4191"]]]},{"k":5370,"v":[[0,1,["H5921"]],[1,3,["H6310"]],[3,5,["H8147"]],[5,6,["H5707"]],[6,7,["H176"]],[7,8,["H7969"]],[8,9,["H5707"]],[9,16,["H4191"]],[16,20,["H4191"]],[20,22,["H5921"]],[22,24,["H6310"]],[24,26,["H259"]],[26,27,["H5707"]],[27,30,["H3808"]],[30,34,["H4191"]]]},{"k":5371,"v":[[0,2,["H3027"]],[2,5,["H5707"]],[5,7,["H1961"]],[7,8,["H7223"]],[8,15,["H4191"]],[15,17,["H314"]],[17,19,["H3027"]],[19,21,["H3605"]],[21,23,["H5971"]],[23,30,["H1197","H7451"]],[30,32,["H4480","H7130"]],[32,33,[]]]},{"k":5372,"v":[[0,1,["H3588"]],[1,7,["H6381","H1697"]],[7,8,["H4480"]],[8,11,["H4941"]],[11,12,["H996"]],[12,13,["H1818"]],[13,15,["H1818"]],[15,16,["H996"]],[16,17,["H1779"]],[17,19,["H1779"]],[19,21,["H996"]],[21,22,["H5061"]],[22,24,["H5061"]],[24,26,["H1697"]],[26,28,["H7379"]],[28,31,["H8179"]],[31,35,["H6965"]],[35,39,["H5927"]],[39,40,["H413"]],[40,42,["H4725"]],[42,43,["H834"]],[43,45,["H3068"]],[45,47,["H430"]],[47,49,["H977"]]]},{"k":5373,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H3548"]],[7,9,["H3881"]],[9,11,["H413"]],[11,13,["H8199"]],[13,14,["H834"]],[14,16,["H1961"]],[16,18,["H1992"]],[18,19,["H3117"]],[19,21,["H1875"]],[21,25,["H5046"]],[25,26,["(H853)"]],[26,28,["H1697"]],[28,30,["H4941"]]]},{"k":5374,"v":[[0,4,["H6213"]],[4,6,["H5921","H6310"]],[6,8,["H1697"]],[8,9,["H834"]],[9,11,["H4480"]],[11,12,["H1931"]],[12,13,["H4725"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H977"]],[18,20,["H5046"]],[20,25,["H8104"]],[25,27,["H6213"]],[27,30,["H3605"]],[30,31,["H834"]],[31,33,["H3384"]],[33,34,[]]]},{"k":5375,"v":[[0,2,["H5921"]],[2,4,["H6310"]],[4,7,["H8451"]],[7,8,["H834"]],[8,11,["H3384"]],[11,15,["H5921"]],[15,17,["H4941"]],[17,18,["H834"]],[18,21,["H559"]],[21,25,["H6213"]],[25,28,["H3808"]],[28,29,["H5493"]],[29,30,["H4480"]],[30,32,["H1697"]],[32,33,["H834"]],[33,36,["H5046"]],[36,41,["H3225"]],[41,45,["H8040"]]]},{"k":5376,"v":[[0,3,["H376"]],[3,4,["H834"]],[4,6,["H6213"]],[6,7,["H2087"]],[7,10,["H1115"]],[10,11,["H8085"]],[11,12,["H413"]],[12,14,["H3548"]],[14,16,["H5975"]],[16,18,["H8334"]],[18,19,["H8033"]],[19,20,["H854"]],[20,22,["H3068"]],[22,24,["H430"]],[24,25,["H176"]],[25,26,["H413"]],[26,28,["H8199"]],[28,30,["H1931"]],[30,31,["H376"]],[31,33,["H4191"]],[33,38,["H1197"]],[38,40,["H7451"]],[40,42,["H4480","H3478"]]]},{"k":5377,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H8085"]],[6,8,["H3372"]],[8,11,["H3808"]],[11,12,["H5750"]],[12,13,["H2102"]]]},{"k":5378,"v":[[0,1,["H3588"]],[1,4,["H935"]],[4,5,["H413"]],[5,7,["H776"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H430"]],[12,13,["H5414"]],[13,17,["H3423"]],[17,21,["H3427"]],[21,25,["H559"]],[25,28,["H7760"]],[28,30,["H4428"]],[30,31,["H5921"]],[31,35,["H3605"]],[35,37,["H1471"]],[37,38,["H834"]],[38,40,["H5439"]],[40,41,[]]]},{"k":5379,"v":[[0,6,["H7760","H7760"]],[6,8,["H4428"]],[8,9,["H5921"]],[9,11,["H834"]],[11,13,["H3068"]],[13,15,["H430"]],[15,17,["H977"]],[17,20,["H4480","H7130"]],[20,22,["H251"]],[22,25,["H7760"]],[25,26,["H4428"]],[26,27,["H5921"]],[27,30,["H3201"]],[30,31,["H3808"]],[31,32,["H5414"]],[32,34,["H376","H5237"]],[34,35,["H5921"]],[35,37,["H834"]],[37,39,["H3808"]],[39,41,["H251"]]]},{"k":5380,"v":[[0,1,["H7535"]],[1,4,["H3808"]],[4,5,["H7235"]],[5,6,["H5483"]],[6,9,["H3808"]],[9,10,["(H853)"]],[10,12,["H5971"]],[12,14,["H7725"]],[14,16,["H4714"]],[16,20,["H4616"]],[20,23,["H7235"]],[23,24,["H5483"]],[24,28,["H3068"]],[28,30,["H559"]],[30,35,["H3254"]],[35,36,["H7725"]],[36,37,["H3808"]],[37,38,["H5750"]],[38,39,["H2088"]],[39,40,["H1870"]]]},{"k":5381,"v":[[0,1,["H3808"]],[1,4,["H7235"]],[4,5,["H802"]],[5,10,["H3824"]],[10,13,["H5493","H3808"]],[13,14,["H3808"]],[14,17,["H3966"]],[17,18,["H7235"]],[18,21,["H3701"]],[21,23,["H2091"]]]},{"k":5382,"v":[[0,4,["H1961"]],[4,7,["H3427"]],[7,8,["H5921"]],[8,10,["H3678"]],[10,13,["H4467"]],[13,17,["H3789"]],[17,18,["(H853)"]],[18,20,["H4932"]],[20,22,["H2063"]],[22,23,["H8451"]],[23,24,["H5921"]],[24,26,["H5612"]],[26,32,["H4480","H6440"]],[32,34,["H3548"]],[34,36,["H3881"]]]},{"k":5383,"v":[[0,4,["H1961"]],[4,5,["H5973"]],[5,10,["H7121"]],[10,12,["H3605"]],[12,14,["H3117"]],[14,17,["H2416"]],[17,18,["H4616"]],[18,21,["H3925"]],[21,23,["H3372","(H853)"]],[23,25,["H3068"]],[25,27,["H430"]],[27,29,["H8104","(H853)"]],[29,30,["H3605"]],[30,32,["H1697"]],[32,34,["H2063"]],[34,35,["H8451"]],[35,37,["H428"]],[37,38,["H2706"]],[38,40,["H6213"]],[40,41,[]]]},{"k":5384,"v":[[0,3,["H3824"]],[3,5,["H1115"]],[5,7,["H7311"]],[7,10,["H4480","H251"]],[10,16,["H5493","H1115"]],[16,17,["H4480"]],[17,19,["H4687"]],[19,23,["H3225"]],[23,27,["H8040"]],[27,31,["H4616"]],[31,34,["H748"]],[34,36,["H3117"]],[36,37,["H5921"]],[37,39,["H4467"]],[39,40,["H1931"]],[40,43,["H1121"]],[43,46,["H7130"]],[46,48,["H3478"]]]},{"k":5385,"v":[[0,2,["H3548"]],[2,4,["H3881"]],[4,6,["H3605"]],[6,8,["H7626"]],[8,10,["H3878"]],[10,12,["H1961"]],[12,13,["H3808"]],[13,14,["H2506"]],[14,16,["H5159"]],[16,17,["H5973"]],[17,18,["H3478"]],[18,21,["H398"]],[21,29,["H801","H3068"]],[29,32,["H5159"]]]},{"k":5386,"v":[[0,4,["H1961"]],[4,5,["H3808"]],[5,6,["H5159"]],[6,7,["H7130"]],[7,9,["H251"]],[9,11,["H3068"]],[11,14,["H5159"]],[14,15,["H834"]],[15,18,["H1696"]],[18,20,[]]]},{"k":5387,"v":[[0,2,["H2088"]],[2,4,["H1961"]],[4,6,["H3548"]],[6,7,["H4941"]],[7,8,["H4480","H854"]],[8,10,["H5971"]],[10,11,["H4480","H854"]],[11,14,["H2076"]],[14,16,["H2077"]],[16,17,["H518"]],[17,20,["H7794"]],[20,21,["H518"]],[21,22,["H7716"]],[22,26,["H5414"]],[26,29,["H3548"]],[29,31,["H2220"]],[31,35,["H3895"]],[35,38,["H6896"]]]},{"k":5388,"v":[[0,2,["H7225"]],[2,6,["H1715"]],[6,9,["H8492"]],[9,13,["H3323"]],[13,16,["H7225"]],[16,19,["H1488"]],[19,22,["H6629"]],[22,25,["H5414"]],[25,26,[]]]},{"k":5389,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H977"]],[7,11,["H4480","H3605"]],[11,13,["H7626"]],[13,15,["H5975"]],[15,17,["H8334"]],[17,20,["H8034"]],[20,23,["H3068"]],[23,24,["H1931"]],[24,27,["H1121"]],[27,29,["H3605","H3117"]]]},{"k":5390,"v":[[0,2,["H3588"]],[2,4,["H3881"]],[4,5,["H935"]],[5,7,["H4480","H259"]],[7,10,["H8179"]],[10,13,["H4480","H3605"]],[13,14,["H3478"]],[14,15,["H834","H8033"]],[15,16,["H1931"]],[16,17,["H1481"]],[17,19,["H935"]],[19,21,["H3605"]],[21,23,["H185"]],[23,26,["H5315"]],[26,27,["H413"]],[27,29,["H4725"]],[29,30,["H834"]],[30,32,["H3068"]],[32,34,["H977"]]]},{"k":5391,"v":[[0,4,["H8334"]],[4,7,["H8034"]],[7,10,["H3068"]],[10,12,["H430"]],[12,14,["H3605"]],[14,16,["H251"]],[16,18,["H3881"]],[18,21,["H5975"]],[21,22,["H8033"]],[22,23,["H6440"]],[23,25,["H3068"]]]},{"k":5392,"v":[[0,5,["H2506","H2506"]],[5,7,["H398"]],[7,8,["H905"]],[8,14,["H4480","H4465"]],[14,15,["H5921"]],[15,17,["H1"]]]},{"k":5393,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H935"]],[4,5,["H413"]],[5,7,["H776"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H430"]],[12,13,["H5414"]],[13,17,["H3808"]],[17,18,["H3925"]],[18,20,["H6213"]],[20,23,["H8441"]],[23,25,["H1992"]],[25,26,["H1471"]]]},{"k":5394,"v":[[0,3,["H3808"]],[3,5,["H4672"]],[5,13,["H1121"]],[13,16,["H1323"]],[16,19,["H5674"]],[19,21,["H784"]],[21,24,["H7080"]],[24,25,["H7081"]],[25,30,["H6049"]],[30,33,["H5172"]],[33,36,["H3784"]]]},{"k":5395,"v":[[0,3,["H2266","H2267"]],[3,6,["H7592"]],[6,9,["H178"]],[9,12,["H3049"]],[12,15,["H1875","H413","H4191"]]]},{"k":5396,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H6213"]],[4,6,["H428"]],[6,9,["H8441"]],[9,12,["H3068"]],[12,14,["H1558"]],[14,16,["H428"]],[16,17,["H8441"]],[17,19,["H3068"]],[19,21,["H430"]],[21,25,["H3423","(H853)"]],[25,27,["H4480","H6440"]],[27,28,[]]]},{"k":5397,"v":[[0,3,["H1961"]],[3,4,["H8549"]],[4,5,["H5973"]],[5,7,["H3068"]],[7,9,["H430"]]]},{"k":5398,"v":[[0,1,["H3588"]],[1,2,["H428"]],[2,3,["H1471"]],[3,4,["H834"]],[4,5,["H859"]],[5,7,["H3423","(H853)"]],[7,8,["H8085"]],[8,9,["H413"]],[9,12,["H6049"]],[12,14,["H413"]],[14,15,["H7080"]],[15,19,["H859"]],[19,21,["H3068"]],[21,23,["H430"]],[23,25,["H3808"]],[25,26,["H5414"]],[26,28,["H3651"]],[28,30,[]]]},{"k":5399,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,7,["H6965"]],[7,11,["H5030"]],[11,14,["H4480","H7130"]],[14,19,["H4480","H251"]],[19,22,["H3644"]],[22,23,["H413"]],[23,27,["H8085"]]]},{"k":5400,"v":[[0,3,["H3605"]],[3,4,["H834"]],[4,6,["H7592"]],[6,7,["H4480","H5973"]],[7,9,["H3068"]],[9,11,["H430"]],[11,13,["H2722"]],[13,16,["H3117"]],[16,19,["H6951"]],[19,20,["H559"]],[20,23,["H3808"]],[23,24,["H8085"]],[24,25,["H3254","(H853)"]],[25,27,["H6963"]],[27,30,["H3068"]],[30,32,["H430"]],[32,33,["H3808"]],[33,36,["H7200"]],[36,37,["H2063"]],[37,38,["H1419"]],[38,39,["H784"]],[39,41,["H5750"]],[41,44,["H4191"]],[44,45,["H3808"]]]},{"k":5401,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,9,["H3190"]],[9,12,["H834"]],[12,15,["H1696"]]]},{"k":5402,"v":[[0,5,["H6965"]],[5,7,["H5030"]],[7,9,["H4480","H7130"]],[9,11,["H251"]],[11,14,["H3644"]],[14,17,["H5414"]],[17,19,["H1697"]],[19,22,["H6310"]],[22,26,["H1696"]],[26,27,["H413"]],[27,28,["(H853)"]],[28,29,["H3605"]],[29,30,["H834"]],[30,33,["H6680"]],[33,34,[]]]},{"k":5403,"v":[[0,6,["H1961"]],[6,8,["H376","H834"]],[8,10,["H3808"]],[10,11,["H8085"]],[11,12,["H413"]],[12,14,["H1697"]],[14,15,["H834"]],[15,18,["H1696"]],[18,21,["H8034"]],[21,22,["H595"]],[22,24,["H1875"]],[24,26,["H4480","H5973"]],[26,27,[]]]},{"k":5404,"v":[[0,1,["H389"]],[1,3,["H5030"]],[3,4,["H834"]],[4,6,["H2102"]],[6,8,["H1696"]],[8,10,["H1697"]],[10,13,["H8034","(H853)"]],[13,14,["H834"]],[14,17,["H3808"]],[17,18,["H6680"]],[18,21,["H1696"]],[21,23,["H834"]],[23,25,["H1696"]],[25,28,["H8034"]],[28,30,["H312"]],[30,31,["H430"]],[31,33,["H1931"]],[33,34,["H5030"]],[34,36,["H4191"]]]},{"k":5405,"v":[[0,2,["H3588"]],[2,4,["H559"]],[4,7,["H3824"]],[7,8,["H349"]],[8,11,["H3045","(H853)"]],[11,13,["H1697"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H3808"]],[18,19,["H1696"]]]},{"k":5406,"v":[[0,1,["H834"]],[1,3,["H5030"]],[3,4,["H1696"]],[4,7,["H8034"]],[7,10,["H3068"]],[10,13,["H1697"]],[13,14,["H1961"]],[14,15,["H3808"]],[15,16,["H3808"]],[16,19,["H935"]],[19,20,["H1931"]],[20,23,["H1697"]],[23,24,["H834"]],[24,26,["H3068"]],[26,28,["H3808"]],[28,29,["H1696"]],[29,32,["H5030"]],[32,34,["H1696"]],[34,36,["H2087"]],[36,39,["H3808"]],[39,41,["H1481"]],[41,42,["H4480"]],[42,43,[]]]},{"k":5407,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,8,["H3772","(H853)"]],[8,10,["H1471"]],[10,11,["H834","(H853)"]],[11,12,["H776"]],[12,14,["H3068"]],[14,16,["H430"]],[16,17,["H5414"]],[17,21,["H3423"]],[21,24,["H3427"]],[24,27,["H5892"]],[27,31,["H1004"]]]},{"k":5408,"v":[[0,3,["H914"]],[3,4,["H7969"]],[4,5,["H5892"]],[5,10,["H8432"]],[10,13,["H776"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H430"]],[18,19,["H5414"]],[19,22,["H3423"]],[22,23,[]]]},{"k":5409,"v":[[0,3,["H3559"]],[3,6,["H1870"]],[6,8,["H8027","(H853)"]],[8,10,["H1366"]],[10,13,["H776"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H430"]],[18,22,["H5157"]],[22,27,["H3605"]],[27,28,["H7523"]],[28,29,["H1961"]],[29,30,["H5127"]],[30,31,["H8033"]]]},{"k":5410,"v":[[0,2,["H2088"]],[2,5,["H1697"]],[5,8,["H7523"]],[8,9,["H834"]],[9,11,["H5127"]],[11,12,["H8033"]],[12,16,["H2425"]],[16,17,["H834"]],[17,18,["H5221","(H853)"]],[18,20,["H7453"]],[20,21,["H1097","H1847"]],[21,23,["H1931"]],[23,24,["H8130"]],[24,25,["H3808"]],[25,27,["H8032"]],[27,28,["H4480","H8657"]]]},{"k":5411,"v":[[0,4,["H834"]],[4,5,["H935"]],[5,8,["H3293"]],[8,9,["H854"]],[9,11,["H7453"]],[11,13,["H2404"]],[13,14,["H6086"]],[14,17,["H3027"]],[17,20,["H5080"]],[20,23,["H1631"]],[23,26,["H3772"]],[26,28,["H6086"]],[28,31,["H1270"]],[31,32,["H5394"]],[32,33,["H4480"]],[33,35,["H6086"]],[35,38,["H4672","(H853)"]],[38,40,["H7453"]],[40,43,["H4191"]],[43,44,["H1931"]],[44,46,["H5127"]],[46,47,["H413"]],[47,48,["H259"]],[48,50,["H428"]],[50,51,["H5892"]],[51,53,["H2425"]]]},{"k":5412,"v":[[0,1,["H6435"]],[1,3,["H1350"]],[3,6,["H1818"]],[6,7,["H7291","H310"]],[7,9,["H7523"]],[9,10,["H3588"]],[10,12,["H3824"]],[12,14,["H3179"]],[14,16,["H5381"]],[16,18,["H3588"]],[18,20,["H1870"]],[20,22,["H7235"]],[22,24,["H5221"]],[24,25,["H5315"]],[25,29,["H369"]],[29,32,["H4941","H4194"]],[32,34,["H3588"]],[34,35,["H1931"]],[35,36,["H8130"]],[36,38,["H3808"]],[38,40,["H8032"]],[40,41,["H4480","H8543"]]]},{"k":5413,"v":[[0,1,["H5921","H3651"]],[1,2,["H595"]],[2,3,["H6680"]],[3,5,["H559"]],[5,8,["H914"]],[8,9,["H7969"]],[9,10,["H5892"]],[10,12,[]]]},{"k":5414,"v":[[0,2,["H518"]],[2,4,["H3068"]],[4,6,["H430"]],[6,7,["H7337","(H853)"]],[7,9,["H1366"]],[9,10,["H834"]],[10,13,["H7650"]],[13,16,["H1"]],[16,18,["H5414"]],[18,19,["(H853)"]],[19,20,["H3605"]],[20,22,["H776"]],[22,23,["H834"]],[23,25,["H1696"]],[25,27,["H5414"]],[27,30,["H1"]]]},{"k":5415,"v":[[0,1,["H3588"]],[1,4,["H8104","(H853)"]],[4,5,["H3605"]],[5,6,["H2063"]],[6,7,["H4687"]],[7,9,["H6213"]],[9,11,["H834"]],[11,12,["H595"]],[12,13,["H6680"]],[13,16,["H3117"]],[16,18,["H157","(H853)"]],[18,20,["H3068"]],[20,22,["H430"]],[22,25,["H1980"]],[25,26,["H3605","H3117"]],[26,29,["H1870"]],[29,33,["H3254"]],[33,34,["H7969"]],[34,35,["H5892"]],[35,36,["H5750"]],[36,39,["H5921"]],[39,40,["H428"]],[40,41,["H7969"]]]},{"k":5416,"v":[[0,2,["H5355"]],[2,3,["H1818"]],[3,5,["H3808"]],[5,6,["H8210"]],[6,7,["H7130"]],[7,9,["H776"]],[9,10,["H834"]],[10,12,["H3068"]],[12,14,["H430"]],[14,15,["H5414"]],[15,19,["H5159"]],[19,22,["H1818"]],[22,23,["H1961"]],[23,24,["H5921"]],[24,25,[]]]},{"k":5417,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H1961","H8130"]],[5,7,["H7453"]],[7,11,["H693"]],[11,16,["H6965"]],[16,17,["H5921"]],[17,20,["H5221"]],[20,22,["H5315"]],[22,25,["H4191"]],[25,27,["H5127"]],[27,28,["H413"]],[28,29,["H259"]],[29,31,["H411"]],[31,32,["H5892"]]]},{"k":5418,"v":[[0,3,["H2205"]],[3,6,["H5892"]],[6,8,["H7971"]],[8,10,["H3947"]],[10,12,["H4480","H8033"]],[12,14,["H5414"]],[14,18,["H3027"]],[18,21,["H1350"]],[21,23,["H1818"]],[23,27,["H4191"]]]},{"k":5419,"v":[[0,2,["H5869"]],[2,4,["H3808"]],[4,5,["H2347","H5921"]],[5,11,["H1197"]],[11,15,["H5355"]],[15,16,["H1818"]],[16,18,["H4480","H3478"]],[18,23,["H2895"]],[23,25,[]]]},{"k":5420,"v":[[0,3,["H3808"]],[3,4,["H5253"]],[4,6,["H7453"]],[6,7,["H1366"]],[7,8,["H834"]],[8,12,["H7223"]],[12,14,["H1379"]],[14,17,["H5159"]],[17,18,["H834"]],[18,21,["H5157"]],[21,24,["H776"]],[24,25,["H834"]],[25,27,["H3068"]],[27,29,["H430"]],[29,30,["H5414"]],[30,33,["H3423"]],[33,34,[]]]},{"k":5421,"v":[[0,1,["H259"]],[1,2,["H5707"]],[2,4,["H3808"]],[4,6,["H6965"]],[6,9,["H376"]],[9,11,["H3605"]],[11,12,["H5771"]],[12,15,["H3605"]],[15,16,["H2403"]],[16,18,["H3605"]],[18,19,["H2399"]],[19,20,["H834"]],[20,22,["H2398"]],[22,23,["H5921"]],[23,25,["H6310"]],[25,27,["H8147"]],[27,28,["H5707"]],[28,29,["H176"]],[29,30,["H5921"]],[30,32,["H6310"]],[32,34,["H7969"]],[34,35,["H5707"]],[35,38,["H1697"]],[38,40,["H6965"]]]},{"k":5422,"v":[[0,1,["H3588"]],[1,3,["H2555"]],[3,4,["H5707"]],[4,6,["H6965"]],[6,9,["H376"]],[9,11,["H6030"]],[11,17,["H5627"]]]},{"k":5423,"v":[[0,2,["H8147"]],[2,4,["H376"]],[4,6,["H834"]],[6,8,["H7379"]],[8,11,["H5975"]],[11,12,["H6440"]],[12,14,["H3068"]],[14,15,["H6440"]],[15,17,["H3548"]],[17,20,["H8199"]],[20,21,["H834"]],[21,23,["H1961"]],[23,25,["H1992"]],[25,26,["H3117"]]]},{"k":5424,"v":[[0,3,["H8199"]],[3,7,["H1875","H3190"]],[7,9,["H2009"]],[9,12,["H5707"]],[12,15,["H8267"]],[15,16,["H5707"]],[16,19,["H6030"]],[19,20,["H8267"]],[20,23,["H251"]]]},{"k":5425,"v":[[0,4,["H6213"]],[4,7,["H834"]],[7,10,["H2161"]],[10,13,["H6213"]],[13,16,["H251"]],[16,23,["H1197","H7451"]],[23,25,["H4480","H7130"]],[25,26,[]]]},{"k":5426,"v":[[0,4,["H7604"]],[4,6,["H8085"]],[6,8,["H3372"]],[8,11,["H3254"]],[11,12,["H6213"]],[12,13,["H3808"]],[13,14,["H5750"]],[14,15,["H1697"]],[15,16,["H2088"]],[16,17,["H7451"]],[17,18,["H7130"]],[18,19,[]]]},{"k":5427,"v":[[0,3,["H5869"]],[3,5,["H3808"]],[5,6,["H2347"]],[6,8,["H5315"]],[8,12,["H5315"]],[12,13,["H5869"]],[13,15,["H5869"]],[15,16,["H8127"]],[16,18,["H8127"]],[18,19,["H3027"]],[19,21,["H3027"]],[21,22,["H7272"]],[22,24,["H7272"]]]},{"k":5428,"v":[[0,1,["H3588"]],[1,4,["H3318"]],[4,6,["H4421"]],[6,7,["H5921"]],[7,9,["H341"]],[9,11,["H7200"]],[11,12,["H5483"]],[12,14,["H7393"]],[14,17,["H5971"]],[17,18,["H7227"]],[18,19,["H4480"]],[19,23,["H3372","H3808"]],[23,24,["H4480"]],[24,26,["H3588"]],[26,28,["H3068"]],[28,30,["H430"]],[30,32,["H5973"]],[32,37,["H5927"]],[37,41,["H4480","H776"]],[41,43,["H4714"]]]},{"k":5429,"v":[[0,4,["H1961"]],[4,9,["H7126"]],[9,10,["H413"]],[10,12,["H4421"]],[12,15,["H3548"]],[15,17,["H5066"]],[17,19,["H1696"]],[19,20,["H413"]],[20,22,["H5971"]]]},{"k":5430,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H8085"]],[6,8,["H3478"]],[8,9,["H859"]],[9,10,["H7131"]],[10,12,["H3117"]],[12,14,["H4421"]],[14,15,["H5921"]],[15,17,["H341"]],[17,19,["H408"]],[19,21,["H3824"]],[21,22,["H7401"]],[22,23,["H3372"]],[23,24,["H408"]],[24,27,["H408"]],[27,28,["H2648"]],[28,29,["H408"]],[29,32,["H6206"]],[32,34,["H4480","H6440"]],[34,35,[]]]},{"k":5431,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,9,["H1980"]],[9,10,["H5973"]],[10,13,["H3898"]],[13,16,["H5973"]],[16,18,["H341"]],[18,20,["H3467"]],[20,21,[]]]},{"k":5432,"v":[[0,3,["H7860"]],[3,5,["H1696"]],[5,6,["H413"]],[6,8,["H5971"]],[8,9,["H559"]],[9,10,["H4310"]],[10,11,["H376"]],[11,14,["H834"]],[14,16,["H1129"]],[16,18,["H2319"]],[18,19,["H1004"]],[19,22,["H3808"]],[22,23,["H2596"]],[23,27,["H1980"]],[27,29,["H7725"]],[29,32,["H1004"]],[32,33,["H6435"]],[33,35,["H4191"]],[35,38,["H4421"]],[38,40,["H312"]],[40,41,["H376"]],[41,42,["H2596"]],[42,43,[]]]},{"k":5433,"v":[[0,2,["H4310"]],[2,3,["H376"]],[3,6,["H834"]],[6,8,["H5193"]],[8,10,["H3754"]],[10,13,["H3808"]],[13,15,["H2490"]],[15,21,["H1980"]],[21,23,["H7725"]],[23,26,["H1004"]],[26,27,["H6435"]],[27,29,["H4191"]],[29,32,["H4421"]],[32,34,["H312"]],[34,35,["H376"]],[35,36,["H2490"]],[36,38,[]]]},{"k":5434,"v":[[0,2,["H4310"]],[2,3,["H376"]],[3,6,["H834"]],[6,8,["H781"]],[8,10,["H802"]],[10,13,["H3808"]],[13,14,["H3947"]],[14,18,["H1980"]],[18,20,["H7725"]],[20,23,["H1004"]],[23,24,["H6435"]],[24,26,["H4191"]],[26,29,["H4421"]],[29,31,["H312"]],[31,32,["H376"]],[32,33,["H3947"]],[33,34,[]]]},{"k":5435,"v":[[0,3,["H7860"]],[3,5,["H1696"]],[5,6,["H3254"]],[6,7,["H413"]],[7,9,["H5971"]],[9,13,["H559"]],[13,14,["H4310"]],[14,15,["H376"]],[15,20,["H3373"]],[20,22,["H7390","H3824"]],[22,25,["H1980"]],[25,27,["H7725"]],[27,30,["H1004"]],[30,31,["H3808","(H853)"]],[31,33,["H251"]],[33,34,["H3824"]],[34,35,["H4549"]],[35,40,["H3824"]]]},{"k":5436,"v":[[0,4,["H1961"]],[4,7,["H7860"]],[7,11,["H3615"]],[11,13,["H1696"]],[13,14,["H413"]],[14,16,["H5971"]],[16,20,["H6485"]],[20,21,["H8269"]],[21,24,["H6635"]],[24,26,["H7218"]],[26,28,["H5971"]]]},{"k":5437,"v":[[0,1,["H3588"]],[1,4,["H7126"]],[4,5,["H413"]],[5,7,["H5892"]],[7,9,["H3898"]],[9,10,["H5921"]],[10,13,["H7121"]],[13,14,["H7965"]],[14,15,["H413"]],[15,16,[]]]},{"k":5438,"v":[[0,4,["H1961"]],[4,5,["H518"]],[5,9,["H6030"]],[9,11,["H7965"]],[11,13,["H6605"]],[13,19,["H1961"]],[19,21,["H3605"]],[21,23,["H5971"]],[23,26,["H4672"]],[26,29,["H1961"]],[29,30,["H4522"]],[30,36,["H5647"]],[36,37,[]]]},{"k":5439,"v":[[0,2,["H518"]],[2,7,["H7999","H3808"]],[7,8,["H5973"]],[8,12,["H6213"]],[12,13,["H4421"]],[13,14,["H5973"]],[14,19,["H6696","H5921"]],[19,20,[]]]},{"k":5440,"v":[[0,4,["H3068"]],[4,6,["H430"]],[6,8,["H5414"]],[8,12,["H3027"]],[12,15,["H5221","(H853)"]],[15,16,["H3605"]],[16,17,["H2138"]],[17,21,["H6310"]],[21,24,["H2719"]]]},{"k":5441,"v":[[0,1,["H7535"]],[1,3,["H802"]],[3,7,["H2945"]],[7,10,["H929"]],[10,12,["H3605"]],[12,13,["H834"]],[13,14,["H1961"]],[14,17,["H5892"]],[17,19,["H3605"]],[19,21,["H7998"]],[21,25,["H962"]],[25,31,["H398","(H853)"]],[31,33,["H7998"]],[33,36,["H341"]],[36,37,["H834"]],[37,39,["H3068"]],[39,41,["H430"]],[41,43,["H5414"]],[43,44,[]]]},{"k":5442,"v":[[0,1,["H3651"]],[1,4,["H6213"]],[4,6,["H3605"]],[6,8,["H5892"]],[8,11,["H3966"]],[11,13,["H7350"]],[13,14,["H4480"]],[14,16,["H834"]],[16,18,["H3808"]],[18,21,["H4480","H5892"]],[21,23,["H428"]],[23,24,["H1471"]]]},{"k":5443,"v":[[0,1,["H7535"]],[1,4,["H4480","H5892"]],[4,6,["H428"]],[6,7,["H5971"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H430"]],[12,14,["H5414"]],[14,18,["H5159"]],[18,22,["H2421"]],[22,23,["H3808","H3605"]],[23,25,["H5397"]]]},{"k":5444,"v":[[0,1,["H3588"]],[1,5,["H2763","H2763"]],[5,9,["H2850"]],[9,12,["H567"]],[12,14,["H3669"]],[14,17,["H6522"]],[17,19,["H2340"]],[19,22,["H2983"]],[22,23,["H834"]],[23,25,["H3068"]],[25,27,["H430"]],[27,29,["H6680"]],[29,30,[]]]},{"k":5445,"v":[[0,1,["H4616","H834"]],[1,3,["H3925"]],[3,5,["H3808"]],[5,7,["H6213"]],[7,9,["H3605"]],[9,11,["H8441"]],[11,12,["H834"]],[12,15,["H6213"]],[15,18,["H430"]],[18,22,["H2398"]],[22,25,["H3068"]],[25,27,["H430"]]]},{"k":5446,"v":[[0,1,["H3588"]],[1,4,["H6696","H413"]],[4,6,["H5892"]],[6,8,["H7227"]],[8,9,["H3117"]],[9,12,["H3898"]],[12,13,["H5921"]],[13,16,["H8610"]],[16,20,["H3808"]],[20,21,["H7843","(H853)"]],[21,23,["H6086"]],[23,26,["H5080"]],[26,28,["H1631"]],[28,29,["H5921"]],[29,31,["H3588"]],[31,34,["H398"]],[34,35,["H4480"]],[35,40,["H3808"]],[40,43,["H3772","(H853)"]],[43,44,["H3588"]],[44,46,["H6086"]],[46,49,["H7704"]],[49,51,["H120"]],[51,54,["H935","H4480","H6440"]],[54,58,["H4692"]]]},{"k":5447,"v":[[0,1,["H7535"]],[1,3,["H6086"]],[3,4,["H834"]],[4,6,["H3045"]],[6,7,["H3588"]],[7,8,["H1931"]],[8,10,["H3808"]],[10,11,["H6086"]],[11,13,["H3978"]],[13,16,["H7843"]],[16,20,["H3772"]],[20,24,["H1129"]],[24,25,["H4692"]],[25,26,["H5921"]],[26,28,["H5892"]],[28,29,["H834","H1931"]],[29,30,["H6213"]],[30,31,["H4421"]],[31,32,["H5973"]],[32,34,["H5704"]],[34,37,["H3381"]]]},{"k":5448,"v":[[0,1,["H3588"]],[1,4,["H4672"]],[4,5,["H2491"]],[5,8,["H127"]],[8,9,["H834"]],[9,11,["H3068"]],[11,13,["H430"]],[13,14,["H5414"]],[14,17,["H3423"]],[17,19,["H5307"]],[19,22,["H7704"]],[22,26,["H3808"]],[26,27,["H3045"]],[27,28,["H4310"]],[28,30,["H5221"]],[30,31,[]]]},{"k":5449,"v":[[0,3,["H2205"]],[3,6,["H8199"]],[6,9,["H3318"]],[9,13,["H4058"]],[13,14,["H413"]],[14,16,["H5892"]],[16,17,["H834"]],[17,20,["H5439"]],[20,24,["H2491"]]]},{"k":5450,"v":[[0,4,["H1961"]],[4,7,["H5892"]],[7,10,["H7138"]],[10,11,["H413"]],[11,14,["H2491"]],[14,17,["H2205"]],[17,19,["H1931"]],[19,20,["H5892"]],[20,22,["H3947"]],[22,24,["H5697","H1241"]],[24,25,["H834"]],[25,27,["H3808"]],[27,29,["H5647"]],[29,32,["H834"]],[32,34,["H3808"]],[34,35,["H4900"]],[35,38,["H5923"]]]},{"k":5451,"v":[[0,3,["H2205"]],[3,5,["H1931"]],[5,6,["H5892"]],[6,9,["H3381","(H853)"]],[9,11,["H5697"]],[11,12,["H413"]],[12,14,["H386"]],[14,15,["H5158"]],[15,16,["H834"]],[16,18,["H3808"]],[18,19,["H5647"]],[19,20,["H3808"]],[20,21,["H2232"]],[21,25,["H6203","(H853)"]],[25,27,["H5697"]],[27,28,["H6203"]],[28,29,["H8033"]],[29,32,["H5158"]]]},{"k":5452,"v":[[0,3,["H3548"]],[3,5,["H1121"]],[5,7,["H3878"]],[7,10,["H5066"]],[10,11,["H3588"]],[11,14,["H3068"]],[14,16,["H430"]],[16,18,["H977"]],[18,20,["H8334"]],[20,25,["H1288"]],[25,28,["H8034"]],[28,31,["H3068"]],[31,33,["H5921"]],[33,35,["H6310"]],[35,37,["H3605"]],[37,38,["H7379"]],[38,40,["H3605"]],[40,41,["H5061"]],[41,42,["H1961"]],[42,43,[]]]},{"k":5453,"v":[[0,2,["H3605"]],[2,4,["H2205"]],[4,6,["H1931"]],[6,7,["H5892"]],[7,10,["H7138"]],[10,11,["H413"]],[11,13,["H2491"]],[13,16,["H7364","(H853)"]],[16,18,["H3027"]],[18,19,["H5921"]],[19,21,["H5697"]],[21,24,["H6202"]],[24,27,["H5158"]]]},{"k":5454,"v":[[0,4,["H6030"]],[4,6,["H559"]],[6,8,["H3027"]],[8,10,["H3808"]],[10,11,["H8210","(H853)"]],[11,12,["H2088"]],[12,13,["H1818"]],[13,14,["H3808"]],[14,17,["H5869"]],[17,18,["H7200"]],[18,19,[]]]},{"k":5455,"v":[[0,2,["H3722"]],[2,4,["H3068"]],[4,7,["H5971"]],[7,8,["H3478"]],[8,9,["H834"]],[9,12,["H6299"]],[12,14,["H5414"]],[14,15,["H408"]],[15,16,["H5355"]],[16,17,["H1818"]],[17,20,["H5971"]],[20,22,["H3478"]],[22,23,["H7130"]],[23,26,["H1818"]],[26,29,["H3722"]],[29,30,[]]]},{"k":5456,"v":[[0,3,["H859"]],[3,5,["H1197"]],[5,9,["H5355"]],[9,10,["H1818"]],[10,12,["H4480","H7130"]],[12,14,["H3588"]],[14,17,["H6213"]],[17,21,["H3477"]],[21,24,["H5869"]],[24,27,["H3068"]]]},{"k":5457,"v":[[0,1,["H3588"]],[1,4,["H3318"]],[4,6,["H4421"]],[6,7,["H5921"]],[7,9,["H341"]],[9,12,["H3068"]],[12,14,["H430"]],[14,16,["H5414"]],[16,20,["H3027"]],[20,24,["H7617"]],[24,26,["H7628"]]]},{"k":5458,"v":[[0,2,["H7200"]],[2,5,["H7633"]],[5,7,["H3303","H8389"]],[7,8,["H802"]],[8,12,["H2836"]],[12,18,["H3947"]],[18,22,["H802"]]]},{"k":5459,"v":[[0,4,["H935"]],[4,6,["H8432"]],[6,9,["H1004"]],[9,13,["H1548","(H853)"]],[13,15,["H7218"]],[15,17,["H6213","(H853)"]],[17,19,["H6856"]]]},{"k":5460,"v":[[0,4,["H5493","(H853)"]],[4,6,["H8071"]],[6,9,["H7628"]],[9,11,["H4480","H5921"]],[11,15,["H3427"]],[15,18,["H1004"]],[18,20,["H1058","(H853)"]],[20,22,["H1"]],[22,25,["H517"]],[25,27,["H3117"]],[27,28,["H3391"]],[28,30,["H310"]],[30,31,["H3651"]],[31,35,["H935"]],[35,36,["H413"]],[36,41,["H1167"]],[41,45,["H1961"]],[45,47,["H802"]]]},{"k":5461,"v":[[0,4,["H1961"]],[4,5,["H518"]],[5,9,["H2654","H3808"]],[9,17,["H7971"]],[17,20,["H5315"]],[20,24,["H3808"]],[24,28,["H4376","H4376"]],[28,30,["H3701"]],[30,33,["H3808"]],[33,35,["H6014"]],[35,38,["H8478","H834"]],[38,41,["H6031"]],[41,42,[]]]},{"k":5462,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,4,["H1961"]],[4,5,["H8147"]],[5,6,["H802"]],[6,7,["H259"]],[7,8,["H157"]],[8,10,["H259"]],[10,11,["H8130"]],[11,15,["H3205"]],[15,17,["H1121"]],[17,20,["H157"]],[20,23,["H8130"]],[23,27,["H1060"]],[27,28,["H1121"]],[28,29,["H1961"]],[29,33,["H8146"]]]},{"k":5463,"v":[[0,4,["H1961"]],[4,5,["H3117"]],[5,7,["(H853)"]],[7,9,["H1121"]],[9,11,["H5157","(H853)"]],[11,13,["H834"]],[13,15,["H1961"]],[15,18,["H3201"]],[18,19,["H3808"]],[19,20,["H1069","(H853)"]],[20,22,["H1121"]],[22,25,["H157"]],[25,26,["H1069"]],[26,27,["H5921","H6440"]],[27,29,["H1121"]],[29,32,["H8130"]],[32,37,["H1060"]]]},{"k":5464,"v":[[0,1,["H3588"]],[1,4,["H5234"]],[4,6,["H1121"]],[6,9,["H8130","(H853)"]],[9,12,["H1060"]],[12,14,["H5414"]],[14,17,["H8147"]],[17,18,["H6310"]],[18,20,["H3605"]],[20,21,["H834"]],[21,23,["H4672"]],[23,24,["H3588"]],[24,25,["H1931"]],[25,28,["H7225"]],[28,31,["H202"]],[31,33,["H4941"]],[33,36,["H1062"]],[36,38,[]]]},{"k":5465,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,4,["H1961"]],[4,6,["H5637"]],[6,8,["H4784"]],[8,9,["H1121"]],[9,12,["H369"]],[12,13,["H8085"]],[13,15,["H6963"]],[15,18,["H1"]],[18,21,["H6963"]],[21,24,["H517"]],[24,30,["H3256"]],[30,33,["H3808"]],[33,34,["H8085"]],[34,35,["H413"]],[35,36,[]]]},{"k":5466,"v":[[0,4,["H1"]],[4,7,["H517"]],[7,9,["H8610"]],[9,15,["H3318","(H853)"]],[15,16,["H413"]],[16,18,["H2205"]],[18,21,["H5892"]],[21,23,["H413"]],[23,25,["H8179"]],[25,28,["H4725"]]]},{"k":5467,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H2205"]],[7,10,["H5892"]],[10,11,["H2088"]],[11,13,["H1121"]],[13,15,["H5637"]],[15,17,["H4784"]],[17,20,["H369"]],[20,21,["H8085"]],[21,23,["H6963"]],[23,27,["H2151"]],[27,30,["H5433"]]]},{"k":5468,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,7,["H5892"]],[7,9,["H7275"]],[9,12,["H68"]],[12,15,["H4191"]],[15,21,["H1197","H7451"]],[21,23,["H4480","H7130"]],[23,26,["H3605"]],[26,27,["H3478"]],[27,29,["H8085"]],[29,31,["H3372"]]]},{"k":5469,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,6,["H1961"]],[6,8,["H2399"]],[8,9,["H4941"]],[9,11,["H4194"]],[11,19,["H4191"]],[19,22,["H8518"]],[22,24,["H5921"]],[24,26,["H6086"]]]},{"k":5470,"v":[[0,2,["H5038"]],[2,4,["H3808"]],[4,7,["H3885"]],[7,8,["H5921"]],[8,10,["H6086"]],[10,11,["H3588"]],[11,17,["H6912","H6912"]],[17,19,["H1931"]],[19,20,["H3117"]],[20,21,["H3588"]],[21,25,["H8518"]],[25,27,["H7045"]],[27,29,["H430"]],[29,30,["(H853)"]],[30,32,["H127"]],[32,34,["H3808"]],[34,35,["H2930"]],[35,36,["H834"]],[36,38,["H3068"]],[38,40,["H430"]],[40,41,["H5414"]],[41,45,["H5159"]]]},{"k":5471,"v":[[0,3,["H3808"]],[3,4,["H7200","(H853)"]],[4,6,["H251"]],[6,7,["H7794"]],[7,8,["H176","(H853)"]],[8,10,["H7716"]],[10,12,["H5080"]],[12,15,["H5956"]],[15,16,["H4480"]],[16,25,["H7725","H7725"]],[25,28,["H251"]]]},{"k":5472,"v":[[0,2,["H518"]],[2,4,["H251"]],[4,6,["H3808"]],[6,7,["H7138"]],[7,8,["H413"]],[8,13,["H3045"]],[13,15,["H3808"]],[15,19,["H622"]],[19,21,["H413","H8432"]],[21,24,["H1004"]],[24,28,["H1961"]],[28,29,["H5973"]],[29,31,["H5704"]],[31,33,["H251"]],[33,35,["H1875"]],[35,40,["H7725"]],[40,44,[]]]},{"k":5473,"v":[[0,3,["H3651"]],[3,6,["H6213"]],[6,9,["H2543"]],[9,11,["H3651"]],[11,14,["H6213"]],[14,17,["H8071"]],[17,20,["H3605"]],[20,22,["H9"]],[22,25,["H251"]],[25,26,["H834"]],[26,29,["H6"]],[29,33,["H4672"]],[33,36,["H6213"]],[36,37,["H3651"]],[37,39,["H3201"]],[39,40,["H3808"]],[40,42,["H5956"]]]},{"k":5474,"v":[[0,3,["H3808"]],[3,4,["H7200","(H853)"]],[4,6,["H251"]],[6,7,["H2543"]],[7,8,["H176"]],[8,10,["H7794"]],[10,12,["H5307"]],[12,15,["H1870"]],[15,18,["H5956"]],[18,19,["H4480"]],[19,30,["H6965","H6965","H5973"]]]},{"k":5475,"v":[[0,2,["H802"]],[2,4,["H3808"]],[4,5,["H1961"]],[5,8,["H3627"]],[8,11,["H1397"]],[11,12,["H3808"]],[12,15,["H1397"]],[15,17,["H3847"]],[17,19,["H802"]],[19,20,["H8071"]],[20,21,["H3588"]],[21,22,["H3605"]],[22,24,["H6213"]],[24,25,["H428"]],[25,27,["H8441"]],[27,30,["H3068"]],[30,32,["H430"]]]},{"k":5476,"v":[[0,1,["H3588"]],[1,3,["H6833"]],[3,4,["H7064"]],[4,7,["H7122"]],[7,8,["H6440"]],[8,12,["H1870"]],[12,14,["H3605"]],[14,15,["H6086"]],[15,16,["H176"]],[16,17,["H5921"]],[17,19,["H776"]],[19,24,["H667"]],[24,25,["H176"]],[25,26,["H1000"]],[26,29,["H517"]],[29,30,["H7257"]],[30,31,["H5921"]],[31,33,["H667"]],[33,34,["H176"]],[34,35,["H5921"]],[35,37,["H1000"]],[37,40,["H3808"]],[40,41,["H3947"]],[41,43,["H517"]],[43,44,["H5921"]],[44,46,["H1121"]]]},{"k":5477,"v":[[0,6,["H7971","(H853)"]],[6,9,["H517"]],[9,10,["H7971"]],[10,12,["H3947"]],[12,14,["H1121"]],[14,17,["H4616"]],[17,21,["H3190"]],[21,28,["H748"]],[28,30,["H3117"]]]},{"k":5478,"v":[[0,1,["H3588"]],[1,3,["H1129"]],[3,5,["H2319"]],[5,6,["H1004"]],[6,10,["H6213"]],[10,12,["H4624"]],[12,15,["H1406"]],[15,18,["H7760"]],[18,19,["H3808"]],[19,20,["H1818"]],[20,23,["H1004"]],[23,24,["H3588"]],[24,26,["H5307"]],[26,27,["H5307"]],[27,28,["H4480"]],[28,29,[]]]},{"k":5479,"v":[[0,3,["H3808"]],[3,4,["H2232"]],[4,6,["H3754"]],[6,9,["H3610"]],[9,10,["H6435"]],[10,12,["H4395"]],[12,15,["H2233"]],[15,16,["H834"]],[16,19,["H2232"]],[19,22,["H8393"]],[22,25,["H3754"]],[25,27,["H6942"]]]},{"k":5480,"v":[[0,3,["H3808"]],[3,4,["H2790"]],[4,7,["H7794"]],[7,10,["H2543"]],[10,11,["H3162"]]]},{"k":5481,"v":[[0,3,["H3808"]],[3,4,["H3847"]],[4,9,["H8162"]],[9,12,["H6785"]],[12,14,["H6593"]],[14,15,["H3162"]]]},{"k":5482,"v":[[0,3,["H6213"]],[3,5,["H1434"]],[5,6,["H5921"]],[6,8,["H702"]],[8,9,["H3671"]],[9,12,["H3682"]],[12,13,["H834"]],[13,15,["H3680"]],[15,16,[]]]},{"k":5483,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,4,["H3947"]],[4,6,["H802"]],[6,9,["H935"]],[9,10,["H413"]],[10,13,["H8130"]],[13,14,[]]]},{"k":5484,"v":[[0,2,["H7760"]],[2,3,["H5949"]],[3,5,["H1697"]],[5,10,["H3318"]],[10,12,["H7451"]],[12,13,["H8034"]],[13,14,["H5921"]],[14,17,["H559"]],[17,19,["H3947","(H853)"]],[19,20,["H2063"]],[20,21,["H802"]],[21,25,["H7126"]],[25,26,["H413"]],[26,29,["H4672"]],[29,31,["H3808"]],[31,33,["H1331"]]]},{"k":5485,"v":[[0,4,["H1"]],[4,7,["H5291"]],[7,10,["H517"]],[10,11,["H3947"]],[11,14,["H3318","(H853)"]],[14,19,["H5291"]],[19,20,["H1331"]],[20,21,["H413"]],[21,23,["H2205"]],[23,26,["H5892"]],[26,29,["H8179"]]]},{"k":5486,"v":[[0,3,["H5291"]],[3,4,["H1"]],[4,6,["H559"]],[6,7,["H413"]],[7,9,["H2205"]],[9,11,["H5414","(H853)"]],[11,13,["H1323"]],[13,15,["H2088"]],[15,16,["H376"]],[16,18,["H802"]],[18,21,["H8130"]],[21,22,[]]]},{"k":5487,"v":[[0,2,["H2009"]],[2,3,["H1931"]],[3,5,["H7760"]],[5,6,["H5949"]],[6,8,["H1697"]],[8,11,["H559"]],[11,13,["H4672"]],[13,14,["H3808"]],[14,16,["H1323"]],[16,18,["H1331"]],[18,21,["H428"]],[21,27,["H1323"]],[27,28,["H1331"]],[28,32,["H6566"]],[32,34,["H8071"]],[34,35,["H6440"]],[35,37,["H2205"]],[37,40,["H5892"]]]},{"k":5488,"v":[[0,3,["H2205"]],[3,5,["H1931"]],[5,6,["H5892"]],[6,8,["H3947","(H853)"]],[8,10,["H376"]],[10,12,["H3256"]],[12,13,[]]]},{"k":5489,"v":[[0,4,["H6064"]],[4,8,["H3967"]],[8,11,["H3701"]],[11,13,["H5414"]],[13,17,["H1"]],[17,20,["H5291"]],[20,21,["H3588"]],[21,25,["H3318"]],[25,27,["H7451"]],[27,28,["H8034"]],[28,29,["H5921"]],[29,31,["H1330"]],[31,33,["H3478"]],[33,37,["H1961"]],[37,39,["H802"]],[39,41,["H3201"]],[41,42,["H3808"]],[42,45,["H7971"]],[45,46,["H3605"]],[46,48,["H3117"]]]},{"k":5490,"v":[[0,2,["H518"]],[2,3,["H2088"]],[3,4,["H1697"]],[4,5,["H1961"]],[5,6,["H571"]],[6,11,["H1331"]],[11,13,["H3808"]],[13,14,["H4672"]],[14,17,["H5291"]]]},{"k":5491,"v":[[0,5,["H3318","(H853)"]],[5,7,["H5291"]],[7,8,["H413"]],[8,10,["H6607"]],[10,13,["H1"]],[13,14,["H1004"]],[14,17,["H376"]],[17,20,["H5892"]],[20,22,["H5619"]],[22,25,["H68"]],[25,28,["H4191"]],[28,29,["H3588"]],[29,32,["H6213"]],[32,33,["H5039"]],[33,35,["H3478"]],[35,39,["H2181"]],[39,42,["H1"]],[42,43,["H1004"]],[43,49,["H1197","H7451"]],[49,51,["H4480","H7130"]],[51,52,[]]]},{"k":5492,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,5,["H4672"]],[5,6,["H7901"]],[6,7,["H5973"]],[7,9,["H802"]],[9,10,["H1166"]],[10,13,["H1167"]],[13,17,["H1571","H8147"]],[17,20,["H4191"]],[20,23,["H376"]],[23,25,["H7901"]],[25,26,["H5973"]],[26,28,["H802"]],[28,31,["H802"]],[31,36,["H1197"]],[36,37,["H7451"]],[37,39,["H4480","H3478"]]]},{"k":5493,"v":[[0,1,["H3588"]],[1,3,["H5291"]],[3,7,["H1330"]],[7,8,["H1961"]],[8,9,["H781"]],[9,12,["H376"]],[12,15,["H376"]],[15,16,["H4672"]],[16,20,["H5892"]],[20,22,["H7901"]],[22,23,["H5973"]],[23,24,[]]]},{"k":5494,"v":[[0,7,["H3318","(H853)","H8147"]],[7,8,["H413"]],[8,10,["H8179"]],[10,12,["H1931"]],[12,13,["H5892"]],[13,17,["H5619"]],[17,20,["H68"]],[20,23,["H4191","(H853)"]],[23,25,["H5291"]],[25,26,["H5921","H1697","H834"]],[26,28,["H6817"]],[28,29,["H3808"]],[29,33,["H5892"]],[33,36,["H376"]],[36,37,["H5921","H1697","H834"]],[37,40,["H6031","(H853)"]],[40,42,["H7453"]],[42,43,["H802"]],[43,48,["H1197"]],[48,49,["H7451"]],[49,51,["H4480","H7130"]],[51,52,[]]]},{"k":5495,"v":[[0,2,["H518"]],[2,4,["H376"]],[4,5,["H4672","(H853)"]],[5,7,["H781"]],[7,8,["H5291"]],[8,11,["H7704"]],[11,14,["H376"]],[14,15,["H2388"]],[15,18,["H7901"]],[18,19,["H5973"]],[19,23,["H376"]],[23,24,["H905"]],[24,25,["H834"]],[25,26,["H7901"]],[26,27,["H5973"]],[27,30,["H4191"]]]},{"k":5496,"v":[[0,4,["H5291"]],[4,7,["H6213"]],[7,8,["H3808","H1697"]],[8,13,["H5291"]],[13,14,["H369"]],[14,15,["H2399"]],[15,18,["H4194"]],[18,19,["H3588"]],[19,20,["H834"]],[20,23,["H376"]],[23,24,["H6965"]],[24,25,["H5921"]],[25,27,["H7453"]],[27,29,["H7523","H5315"]],[29,32,["H3651"]],[32,34,["H2088"]],[34,35,["H1697"]]]},{"k":5497,"v":[[0,1,["H3588"]],[1,3,["H4672"]],[3,7,["H7704"]],[7,10,["H781"]],[10,11,["H5291"]],[11,12,["H6817"]],[12,16,["H369"]],[16,18,["H3467"]],[18,19,[]]]},{"k":5498,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,4,["H4672"]],[4,6,["H5291"]],[6,10,["H1330"]],[10,11,["H834"]],[11,13,["H3808"]],[13,14,["H781"]],[14,17,["H8610"]],[17,21,["H7901"]],[21,22,["H5973"]],[22,27,["H4672"]]]},{"k":5499,"v":[[0,3,["H376"]],[3,5,["H7901"]],[5,6,["H5973"]],[6,9,["H5414"]],[9,12,["H5291"]],[12,13,["H1"]],[13,14,["H2572"]],[14,17,["H3701"]],[17,21,["H1961"]],[21,23,["H802"]],[23,24,["H8478","H834"]],[24,27,["H6031"]],[27,30,["H3201"]],[30,31,["H3808"]],[31,34,["H7971"]],[34,35,["H3605"]],[35,37,["H3117"]]]},{"k":5500,"v":[[0,2,["H376"]],[2,4,["H3808"]],[4,5,["H3947","(H853)"]],[5,7,["H1"]],[7,8,["H802"]],[8,9,["H3808"]],[9,10,["H1540"]],[10,12,["H1"]],[12,13,["H3671"]]]},{"k":5501,"v":[[0,7,["H6481","H1795"]],[7,12,["H8212"]],[12,14,["H3772"]],[14,16,["H3808"]],[16,17,["H935"]],[17,20,["H6951"]],[20,23,["H3068"]]]},{"k":5502,"v":[[0,2,["H4464"]],[2,4,["H3808"]],[4,5,["H935"]],[5,8,["H6951"]],[8,11,["H3068"]],[11,12,["H1571"]],[12,15,["H6224"]],[15,16,["H1755"]],[16,19,["H3808"]],[19,20,["H935"]],[20,23,["H6951"]],[23,26,["H3068"]]]},{"k":5503,"v":[[0,2,["H5984"]],[2,4,["H4125"]],[4,6,["H3808"]],[6,7,["H935"]],[7,10,["H6951"]],[10,13,["H3068"]],[13,14,["H1571"]],[14,17,["H6224"]],[17,18,["H1755"]],[18,21,["H3808"]],[21,22,["H935"]],[22,25,["H6951"]],[25,28,["H3068"]],[28,30,["H5704","H5769"]]]},{"k":5504,"v":[[0,1,["H5921","H1697"]],[1,2,["H834"]],[2,3,["H6923"]],[3,5,["H3808"]],[5,7,["H3899"]],[7,10,["H4325"]],[10,13,["H1870"]],[13,17,["H3318"]],[17,20,["H4480","H4714"]],[20,22,["H834"]],[22,24,["H7936"]],[24,25,["H5921"]],[25,26,["(H853)"]],[26,27,["H1109"]],[27,29,["H1121"]],[29,31,["H1160"]],[31,33,["H4480","H6604"]],[33,35,["H763"]],[35,37,["H7043"]],[37,38,[]]]},{"k":5505,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,6,["H14"]],[6,7,["H3808"]],[7,8,["H8085"]],[8,9,["H413"]],[9,10,["H1109"]],[10,13,["H3068"]],[13,15,["H430"]],[15,16,["H2015","(H853)"]],[16,18,["H7045"]],[18,21,["H1293"]],[21,24,["H3588"]],[24,26,["H3068"]],[26,28,["H430"]],[28,29,["H157"]],[29,30,[]]]},{"k":5506,"v":[[0,3,["H3808"]],[3,4,["H1875"]],[4,6,["H7965"]],[6,9,["H2896"]],[9,10,["H3605"]],[10,12,["H3117"]],[12,14,["H5769"]]]},{"k":5507,"v":[[0,3,["H3808"]],[3,4,["H8581"]],[4,6,["H130"]],[6,7,["H3588"]],[7,8,["H1931"]],[8,11,["H251"]],[11,14,["H3808"]],[14,15,["H8581"]],[15,17,["H4713"]],[17,18,["H3588"]],[18,20,["H1961"]],[20,22,["H1616"]],[22,25,["H776"]]]},{"k":5508,"v":[[0,2,["H1121"]],[2,3,["H834"]],[3,5,["H3205"]],[5,9,["H935"]],[9,12,["H6951"]],[12,15,["H3068"]],[15,18,["H7992"]],[18,19,["H1755"]]]},{"k":5509,"v":[[0,1,["H3588"]],[1,3,["H4264"]],[3,5,["H3318"]],[5,6,["H5921"]],[6,8,["H341"]],[8,11,["H8104"]],[11,13,["H4480","H3605"]],[13,14,["H7451"]],[14,15,["H1697"]]]},{"k":5510,"v":[[0,1,["H3588"]],[1,3,["H1961"]],[3,7,["H376"]],[7,8,["H834"]],[8,9,["H1961"]],[9,10,["H3808"]],[10,11,["H2889"]],[11,17,["H4480","H7137"]],[17,20,["H3915"]],[20,25,["H3318"]],[25,27,["H413","H4480","H2351"]],[27,29,["H4264"]],[29,32,["H3808"]],[32,33,["H935"]],[33,34,["H413","H8432"]],[34,36,["H4264"]]]},{"k":5511,"v":[[0,4,["H1961"]],[4,6,["H6153"]],[6,8,["H6437"]],[8,11,["H7364"]],[11,14,["H4325"]],[14,18,["H8121"]],[18,20,["H935"]],[20,23,["H935"]],[23,24,["H413","H8432"]],[24,26,["H4264"]],[26,27,[]]]},{"k":5512,"v":[[0,3,["H1961"]],[3,5,["H3027"]],[5,7,["H4480","H2351"]],[7,9,["H4264"]],[9,10,["H8033"]],[10,14,["H3318"]],[14,15,["H2351"]]]},{"k":5513,"v":[[0,4,["H1961"]],[4,6,["H3489"]],[6,7,["H5921"]],[7,9,["H240"]],[9,13,["H1961"]],[13,17,["H3427"]],[17,19,["H2351"]],[19,22,["H2658"]],[22,27,["H7725"]],[27,29,["H3680","(H853)"]],[29,32,["H6627"]],[32,34,[]]]},{"k":5514,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,6,["H1980"]],[6,9,["H7130"]],[9,12,["H4264"]],[12,14,["H5337"]],[14,19,["H5414"]],[19,21,["H341"]],[21,22,["H6440"]],[22,27,["H4264"]],[27,28,["H1961"]],[28,29,["H6918"]],[29,32,["H7200"]],[32,33,["H3808"]],[33,34,["H6172"]],[34,35,["H1697"]],[35,40,["H7725"]],[40,41,["H4480","H310"]],[41,42,[]]]},{"k":5515,"v":[[0,3,["H3808"]],[3,4,["H5462"]],[4,5,["H413"]],[5,7,["H113"]],[7,9,["H5650"]],[9,10,["H834"]],[10,12,["H5337"]],[12,13,["H4480","H5973"]],[13,15,["H113"]],[15,16,["H413"]],[16,17,[]]]},{"k":5516,"v":[[0,3,["H3427"]],[3,4,["H5973"]],[4,7,["H7130"]],[7,11,["H4725"]],[11,12,["H834"]],[12,15,["H977"]],[15,17,["H259"]],[17,20,["H8179"]],[20,25,["H2896"]],[25,28,["H3808"]],[28,29,["H3238"]],[29,30,[]]]},{"k":5517,"v":[[0,3,["H1961"]],[3,4,["H3808"]],[4,5,["H6948"]],[5,8,["H4480","H1323"]],[8,10,["H3478"]],[10,11,["H3808"]],[11,13,["H6945"]],[13,16,["H4480","H1121"]],[16,18,["H3478"]]]},{"k":5518,"v":[[0,3,["H3808"]],[3,4,["H935"]],[4,6,["H868"]],[6,9,["H2181"]],[9,12,["H4242"]],[12,15,["H3611"]],[15,18,["H1004"]],[18,21,["H3068"]],[21,23,["H430"]],[23,25,["H3605"]],[25,26,["H5088"]],[26,27,["H3588"]],[27,28,["H1571"]],[28,29,["H8147"]],[29,32,["H8441"]],[32,35,["H3068"]],[35,37,["H430"]]]},{"k":5519,"v":[[0,3,["H3808"]],[3,6,["H5391"]],[6,9,["H251"]],[9,10,["H5392"]],[10,12,["H3701"]],[12,13,["H5392"]],[13,15,["H400"]],[15,16,["H5392"]],[16,18,["H3605"]],[18,19,["H1697"]],[19,20,["H834"]],[20,24,["H5391"]]]},{"k":5520,"v":[[0,3,["H5237"]],[3,8,["H5391"]],[8,12,["H251"]],[12,15,["H3808"]],[15,18,["H5391"]],[18,19,["H4616"]],[19,21,["H3068"]],[21,23,["H430"]],[23,25,["H1288"]],[25,28,["H3605"]],[28,31,["H4916"]],[31,33,["H3027"]],[33,35,["H5921"]],[35,37,["H776"]],[37,38,["H834","H8033"]],[38,39,["H859"]],[39,40,["H935"]],[40,42,["H3423"]],[42,43,[]]]},{"k":5521,"v":[[0,1,["H3588"]],[1,4,["H5087"]],[4,6,["H5088"]],[6,9,["H3068"]],[9,11,["H430"]],[11,14,["H3808"]],[14,15,["H309"]],[15,17,["H7999"]],[17,19,["H3588"]],[19,21,["H3068"]],[21,23,["H430"]],[23,26,["H1875","H1875"]],[26,28,["H4480","H5973"]],[28,33,["H1961"]],[33,34,["H2399"]],[34,36,[]]]},{"k":5522,"v":[[0,2,["H3588"]],[2,5,["H2308"]],[5,7,["H5087"]],[7,10,["H1961"]],[10,11,["H3808"]],[11,12,["H2399"]],[12,14,[]]]},{"k":5523,"v":[[0,5,["H4161"]],[5,8,["H8193"]],[8,11,["H8104"]],[11,13,["H6213"]],[13,17,["H5071"]],[17,19,["H834"]],[19,22,["H5087"]],[22,25,["H3068"]],[25,27,["H430"]],[27,28,["H834"]],[28,31,["H1696"]],[31,34,["H6310"]]]},{"k":5524,"v":[[0,1,["H3588"]],[1,3,["H935"]],[3,6,["H7453"]],[6,7,["H3754"]],[7,11,["H398"]],[11,12,["H6025"]],[12,14,["H7648"]],[14,18,["H5315"]],[18,22,["H3808"]],[22,23,["H5414"]],[23,25,["H413"]],[25,27,["H3627"]]]},{"k":5525,"v":[[0,1,["H3588"]],[1,3,["H935"]],[3,7,["H7054"]],[7,10,["H7453"]],[10,14,["H6998"]],[14,16,["H4425"]],[16,19,["H3027"]],[19,23,["H3808"]],[23,24,["H5130"]],[24,26,["H2770"]],[26,27,["H5921"]],[27,29,["H7453"]],[29,31,["H7054"]]]},{"k":5526,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,5,["H3947"]],[5,7,["H802"]],[7,9,["H1166"]],[9,15,["H1961"]],[15,16,["H518"]],[16,18,["H4672"]],[18,19,["H3808"]],[19,20,["H2580"]],[20,23,["H5869"]],[23,24,["H3588"]],[24,27,["H4672"]],[27,28,["H1697"]],[28,29,["H6172"]],[29,35,["H3789"]],[35,38,["H5612"]],[38,40,["H3748"]],[40,42,["H5414"]],[42,46,["H3027"]],[46,48,["H7971"]],[48,53,["H4480","H1004"]]]},{"k":5527,"v":[[0,5,["H3318"]],[5,9,["H4480","H1004"]],[9,12,["H1980"]],[12,14,["H1961"]],[14,15,["H312"]],[15,16,["H376"]],[16,17,[]]]},{"k":5528,"v":[[0,4,["H314"]],[4,5,["H376"]],[5,6,["H8130"]],[6,9,["H3789"]],[9,12,["H5612"]],[12,14,["H3748"]],[14,16,["H5414"]],[16,20,["H3027"]],[20,22,["H7971"]],[22,27,["H4480","H1004"]],[27,28,["H176"]],[28,29,["H3588"]],[29,31,["H314"]],[31,32,["H376"]],[32,33,["H4191"]],[33,34,["H834"]],[34,35,["H3947"]],[35,40,["H802"]]]},{"k":5529,"v":[[0,2,["H7223"]],[2,3,["H1167"]],[3,4,["H834"]],[4,7,["H7971"]],[7,8,["H3201"]],[8,9,["H3808"]],[9,10,["H3947"]],[10,12,["H7725"]],[12,14,["H1961"]],[14,16,["H802"]],[16,18,["H310","H834"]],[18,21,["H2930"]],[21,22,["H3588"]],[22,23,["H1931"]],[23,25,["H8441"]],[25,26,["H6440"]],[26,28,["H3068"]],[28,32,["H3808"]],[32,33,["(H853)"]],[33,35,["H776"]],[35,37,["H2398"]],[37,38,["H834"]],[38,40,["H3068"]],[40,42,["H430"]],[42,43,["H5414"]],[43,47,["H5159"]]]},{"k":5530,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,5,["H3947"]],[5,7,["H2319"]],[7,8,["H802"]],[8,11,["H3808"]],[11,13,["H3318"]],[13,15,["H6635"]],[15,16,["H3808"]],[16,20,["H5674"]],[20,21,["H5921"]],[21,22,["H3605"]],[22,23,["H1697"]],[23,27,["H1961"]],[27,28,["H5355"]],[28,30,["H1004"]],[30,31,["H259"]],[31,32,["H8141"]],[32,36,["H8055","(H853)"]],[36,38,["H802"]],[38,39,["H834"]],[39,42,["H3947"]]]},{"k":5531,"v":[[0,1,["H3808"]],[1,4,["H2254"]],[4,6,["H7347"]],[6,9,["H7393"]],[9,10,["H7347"]],[10,12,["H2254"]],[12,13,["H3588"]],[13,14,["H1931"]],[14,15,["H2254"]],[15,18,["H5315"]],[18,20,["H2254"]]]},{"k":5532,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,5,["H4672"]],[5,6,["H1589"]],[6,7,["H5315"]],[7,10,["H4480","H251"]],[10,13,["H4480","H1121"]],[13,15,["H3478"]],[15,18,["H6014"]],[18,22,["H4376"]],[22,25,["H1931"]],[25,26,["H1590"]],[26,28,["H4191"]],[28,34,["H1197","H7451"]],[34,36,["H4480","H7130"]],[36,37,[]]]},{"k":5533,"v":[[0,2,["H8104"]],[2,5,["H5061"]],[5,7,["H6883"]],[7,10,["H8104"]],[10,11,["H3966"]],[11,13,["H6213"]],[13,16,["H3605"]],[16,17,["H834"]],[17,19,["H3548"]],[19,21,["H3881"]],[21,23,["H3384"]],[23,25,["H834"]],[25,27,["H6680"]],[27,32,["H8104"]],[32,34,["H6213"]]]},{"k":5534,"v":[[0,1,["H2142","(H853)"]],[1,2,["H834"]],[2,4,["H3068"]],[4,6,["H430"]],[6,7,["H6213"]],[7,9,["H4813"]],[9,12,["H1870"]],[12,18,["H3318"]],[18,21,["H4480","H4714"]]]},{"k":5535,"v":[[0,1,["H3588"]],[1,4,["H5383"]],[4,6,["H7453"]],[6,7,["H3972"]],[7,8,["H4859"]],[8,11,["H3808"]],[11,12,["H935"]],[12,13,["H413"]],[13,15,["H1004"]],[15,17,["H5670"]],[17,19,["H5667"]]]},{"k":5536,"v":[[0,3,["H5975"]],[3,4,["H2351"]],[4,7,["H376"]],[7,9,["H834"]],[9,10,["H859"]],[10,12,["H5383"]],[12,15,["H3318","(H853)"]],[15,17,["H5667"]],[17,18,["H2351"]],[18,19,["H413"]],[19,20,[]]]},{"k":5537,"v":[[0,2,["H518"]],[2,4,["H376"]],[4,6,["H6041"]],[6,9,["H3808"]],[9,10,["H7901"]],[10,13,["H5667"]]]},{"k":5538,"v":[[0,6,["H7725","H7725"]],[6,7,["(H853)"]],[7,9,["H5667"]],[9,13,["H8121"]],[13,15,["H935"]],[15,19,["H7901"]],[19,23,["H8008"]],[23,25,["H1288"]],[25,30,["H1961"]],[30,31,["H6666"]],[31,34,["H6440"]],[34,36,["H3068"]],[36,38,["H430"]]]},{"k":5539,"v":[[0,3,["H3808"]],[3,4,["H6231"]],[4,7,["H7916"]],[7,10,["H6041"]],[10,12,["H34"]],[12,18,["H4480","H251"]],[18,19,["H176"]],[19,22,["H4480","H1616"]],[22,23,["H834"]],[23,27,["H776"]],[27,30,["H8179"]]]},{"k":5540,"v":[[0,3,["H3117"]],[3,6,["H5414"]],[6,9,["H7939"]],[9,10,["H3808"]],[10,13,["H8121"]],[13,15,["H935"]],[15,16,["H5921"]],[16,18,["H3588"]],[18,19,["H1931"]],[19,21,["H6041"]],[21,23,["H5375","(H853)"]],[23,25,["H5315"]],[25,26,["H413"]],[26,28,["H3808"]],[28,30,["H7121"]],[30,31,["H5921"]],[31,33,["H413"]],[33,35,["H3068"]],[35,38,["H1961"]],[38,39,["H2399"]],[39,41,[]]]},{"k":5541,"v":[[0,2,["H1"]],[2,4,["H3808"]],[4,8,["H4191"]],[8,9,["H5921"]],[9,11,["H1121"]],[11,12,["H3808"]],[12,15,["H1121"]],[15,19,["H4191"]],[19,20,["H5921"]],[20,22,["H1"]],[22,24,["H376"]],[24,29,["H4191"]],[29,33,["H2399"]]]},{"k":5542,"v":[[0,3,["H3808"]],[3,4,["H5186"]],[4,6,["H4941"]],[6,9,["H1616"]],[9,13,["H3490"]],[13,14,["H3808"]],[14,15,["H2254"]],[15,17,["H490"]],[17,18,["H899"]],[18,20,["H2254"]]]},{"k":5543,"v":[[0,4,["H2142"]],[4,5,["H3588"]],[5,7,["H1961"]],[7,9,["H5650"]],[9,11,["H4714"]],[11,14,["H3068"]],[14,16,["H430"]],[16,17,["H6299"]],[17,19,["H4480","H8033"]],[19,20,["H5921","H3651"]],[20,21,["H595"]],[21,22,["H6680"]],[22,25,["H6213","(H853)"]],[25,26,["H2088"]],[26,27,["H1697"]]]},{"k":5544,"v":[[0,1,["H3588"]],[1,4,["H7114"]],[4,6,["H7105"]],[6,9,["H7704"]],[9,12,["H7911"]],[12,14,["H6016"]],[14,17,["H7704"]],[17,20,["H3808"]],[20,22,["H7725"]],[22,24,["H3947"]],[24,28,["H1961"]],[28,31,["H1616"]],[31,34,["H3490"]],[34,38,["H490"]],[38,39,["H4616"]],[39,41,["H3068"]],[41,43,["H430"]],[43,45,["H1288"]],[45,48,["H3605"]],[48,50,["H4639"]],[50,53,["H3027"]]]},{"k":5545,"v":[[0,1,["H3588"]],[1,3,["H2251"]],[3,6,["H2132"]],[6,9,["H3808"]],[9,13,["H6286"]],[13,14,["H310"]],[14,17,["H1961"]],[17,20,["H1616"]],[20,23,["H3490"]],[23,27,["H490"]]]},{"k":5546,"v":[[0,1,["H3588"]],[1,5,["H1219"]],[5,8,["H3754"]],[8,11,["H3808"]],[11,12,["H5953"]],[12,14,["H310"]],[14,17,["H1961"]],[17,20,["H1616"]],[20,23,["H3490"]],[23,27,["H490"]]]},{"k":5547,"v":[[0,4,["H2142"]],[4,5,["H3588"]],[5,7,["H1961"]],[7,9,["H5650"]],[9,12,["H776"]],[12,14,["H4714"]],[14,15,["H5921","H3651"]],[15,16,["H595"]],[16,17,["H6680"]],[17,20,["H6213","(H853)"]],[20,21,["H2088"]],[21,22,["H1697"]]]},{"k":5548,"v":[[0,1,["H3588"]],[1,3,["H1961"]],[3,5,["H7379"]],[5,6,["H996"]],[6,7,["H376"]],[7,10,["H5066"]],[10,11,["H413"]],[11,12,["H4941"]],[12,17,["H8199"]],[17,22,["H6663","(H853)"]],[22,24,["H6662"]],[24,26,["H7561","(H853)"]],[26,28,["H7563"]]]},{"k":5549,"v":[[0,4,["H1961"]],[4,5,["H518"]],[5,7,["H7563"]],[7,13,["H1121","H5221"]],[13,16,["H8199"]],[16,22,["H5307"]],[22,26,["H5221"]],[26,29,["H6440"]],[29,31,["H1767"]],[31,33,["H7564"]],[33,37,["H4557"]]]},{"k":5550,"v":[[0,1,["H705"]],[1,5,["H5221"]],[5,8,["H3808"]],[8,9,["H3254"]],[9,10,["H6435"]],[10,14,["H3254"]],[14,16,["H5221"]],[16,18,["H5921"]],[18,19,["H428"]],[19,21,["H7227"]],[21,22,["H4347"]],[22,25,["H251"]],[25,28,["H7034"]],[28,29,["H5869"]],[29,30,[]]]},{"k":5551,"v":[[0,3,["H3808"]],[3,4,["H2629"]],[4,6,["H7794"]],[6,10,["H1758"]],[10,12,[]]]},{"k":5552,"v":[[0,1,["H3588"]],[1,2,["H251"]],[2,3,["H3427"]],[3,4,["H3162"]],[4,6,["H259"]],[6,7,["H4480"]],[7,9,["H4191"]],[9,12,["H369"]],[12,13,["H1121"]],[13,15,["H802"]],[15,18,["H4191"]],[18,20,["H3808"]],[20,21,["H1961"]],[21,22,["H2351"]],[22,25,["H376","H2114"]],[25,28,["H2993"]],[28,31,["H935"]],[31,32,["H5921"]],[32,35,["H3947"]],[35,40,["H802"]],[40,48,["H2992"]],[48,50,[]]]},{"k":5553,"v":[[0,4,["H1961"]],[4,7,["H1060"]],[7,8,["H834"]],[8,10,["H3205"]],[10,12,["H6965"]],[12,13,["H5921"]],[13,15,["H8034"]],[15,18,["H251"]],[18,21,["H4191"]],[21,24,["H8034"]],[24,26,["H3808"]],[26,28,["H4229"]],[28,30,["H4480","H3478"]]]},{"k":5554,"v":[[0,2,["H518"]],[2,4,["H376"]],[4,5,["H2654"]],[5,6,["H3808"]],[6,8,["H3947","(H853)"]],[8,11,["H2994"]],[11,16,["H2994"]],[16,18,["H5927"]],[18,21,["H8179"]],[21,22,["H413"]],[22,24,["H2205"]],[24,26,["H559"]],[26,29,["H2993"]],[29,30,["H3985"]],[30,33,["H6965"]],[33,36,["H251"]],[36,38,["H8034"]],[38,40,["H3478"]],[40,42,["H14"]],[42,43,["H3808"]],[43,50,["H2992"]]]},{"k":5555,"v":[[0,3,["H2205"]],[3,6,["H5892"]],[6,8,["H7121"]],[8,11,["H1696"]],[11,12,["H413"]],[12,17,["H5975"]],[17,21,["H559"]],[21,23,["H2654"]],[23,24,["H3808"]],[24,26,["H3947"]],[26,27,[]]]},{"k":5556,"v":[[0,5,["H2994"]],[5,6,["H5066"]],[6,7,["H413"]],[7,11,["H5869"]],[11,14,["H2205"]],[14,16,["H2502"]],[16,18,["H5275"]],[18,20,["H4480","H5921"]],[20,22,["H7272"]],[22,24,["H3417"]],[24,27,["H6440"]],[27,30,["H6030"]],[30,32,["H559"]],[32,33,["H3602"]],[33,37,["H6213"]],[37,40,["H376"]],[40,41,["H834"]],[41,43,["H3808"]],[43,45,["H1129","(H853)"]],[45,47,["H251"]],[47,48,["H1004"]]]},{"k":5557,"v":[[0,3,["H8034"]],[3,6,["H7121"]],[6,8,["H3478"]],[8,10,["H1004"]],[10,16,["H5275"]],[16,17,["H2502"]]]},{"k":5558,"v":[[0,1,["H3588"]],[1,2,["H376"]],[2,3,["H5327"]],[3,4,["H3162"]],[4,5,["H376"]],[5,7,["H251"]],[7,10,["H802"]],[10,13,["H259"]],[13,15,["H7126"]],[15,18,["H5337","(H853)"]],[18,20,["H376"]],[20,24,["H4480","H3027"]],[24,28,["H5221"]],[28,32,["H7971"]],[32,34,["H3027"]],[34,36,["H2388"]],[36,40,["H4016"]]]},{"k":5559,"v":[[0,5,["H7112","(H853)"]],[5,7,["H3709"]],[7,9,["H5869"]],[9,11,["H3808"]],[11,12,["H2347"]],[12,13,[]]]},{"k":5560,"v":[[0,3,["H3808"]],[3,4,["H1961"]],[4,7,["H3599"]],[7,9,["H68","H68"]],[9,11,["H1419"]],[11,14,["H6996"]]]},{"k":5561,"v":[[0,3,["H3808"]],[3,4,["H1961"]],[4,7,["H1004"]],[7,9,["H374","H374"]],[9,11,["H1419"]],[11,14,["H6996"]]]},{"k":5562,"v":[[0,4,["H1961"]],[4,6,["H8003"]],[6,8,["H6664"]],[8,9,["H68"]],[9,11,["H8003"]],[11,13,["H6664"]],[13,14,["H374"]],[14,17,["H1961"]],[17,18,["H4616"]],[18,20,["H3117"]],[20,23,["H748"]],[23,24,["H5921"]],[24,26,["H127"]],[26,27,["H834"]],[27,29,["H3068"]],[29,31,["H430"]],[31,32,["H5414"]],[32,33,[]]]},{"k":5563,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H6213"]],[4,6,["H428"]],[6,8,["H3605"]],[8,10,["H6213"]],[10,11,["H5766"]],[11,14,["H8441"]],[14,17,["H3068"]],[17,19,["H430"]]]},{"k":5564,"v":[[0,1,["H2142","(H853)"]],[1,2,["H834"]],[2,3,["H6002"]],[3,4,["H6213"]],[4,9,["H1870"]],[9,14,["H3318"]],[14,17,["H4480","H4714"]]]},{"k":5565,"v":[[0,1,["H834"]],[1,3,["H7136"]],[3,7,["H1870"]],[7,11,["H2179"]],[11,15,["H3605"]],[15,18,["H2826"]],[18,19,["H310"]],[19,22,["H859"]],[22,24,["H5889"]],[24,26,["H3023"]],[26,29,["H3372"]],[29,30,["H3808"]],[30,31,["H430"]]]},{"k":5566,"v":[[0,4,["H1961"]],[4,7,["H3068"]],[7,9,["H430"]],[9,13,["H5117"]],[13,15,["H4480","H3605"]],[15,17,["H341"]],[17,19,["H4480","H5439"]],[19,22,["H776"]],[22,23,["H834"]],[23,25,["H3068"]],[25,27,["H430"]],[27,28,["H5414"]],[28,32,["H5159"]],[32,34,["H3423"]],[34,40,["H4229","(H853)"]],[40,42,["H2143"]],[42,44,["H6002"]],[44,46,["H4480","H8478"]],[46,47,["H8064"]],[47,50,["H3808"]],[50,51,["H7911"]],[51,52,[]]]},{"k":5567,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,9,["H935"]],[9,10,["H413"]],[10,12,["H776"]],[12,13,["H834"]],[13,15,["H3068"]],[15,17,["H430"]],[17,18,["H5414"]],[18,22,["H5159"]],[22,24,["H3423"]],[24,27,["H3427"]],[27,28,[]]]},{"k":5568,"v":[[0,4,["H3947"]],[4,7,["H4480","H7225"]],[7,9,["H3605"]],[9,11,["H6529"]],[11,14,["H127"]],[14,15,["H834"]],[15,18,["H935"]],[18,21,["H4480","H776"]],[21,22,["H834"]],[22,24,["H3068"]],[24,26,["H430"]],[26,27,["H5414"]],[27,31,["H7760"]],[31,35,["H2935"]],[35,38,["H1980"]],[38,39,["H413"]],[39,41,["H4725"]],[41,42,["H834"]],[42,44,["H3068"]],[44,46,["H430"]],[46,48,["H977"]],[48,50,["H7931"]],[50,52,["H8034"]],[52,53,["H8033"]]]},{"k":5569,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H3548"]],[7,8,["H834"]],[8,10,["H1961"]],[10,12,["H1992"]],[12,13,["H3117"]],[13,15,["H559"]],[15,16,["H413"]],[16,19,["H5046"]],[19,21,["H3117"]],[21,24,["H3068"]],[24,26,["H430"]],[26,27,["H3588"]],[27,30,["H935"]],[30,31,["H413"]],[31,33,["H776"]],[33,34,["H834"]],[34,36,["H3068"]],[36,37,["H7650"]],[37,40,["H1"]],[40,43,["H5414"]],[43,44,[]]]},{"k":5570,"v":[[0,3,["H3548"]],[3,5,["H3947"]],[5,7,["H2935"]],[7,11,["H4480","H3027"]],[11,15,["H5117"]],[15,16,["H6440"]],[16,18,["H4196"]],[18,21,["H3068"]],[21,23,["H430"]]]},{"k":5571,"v":[[0,4,["H6030"]],[4,6,["H559"]],[6,7,["H6440"]],[7,9,["H3068"]],[9,11,["H430"]],[11,13,["H761"]],[13,16,["H6"]],[16,19,["H1"]],[19,23,["H3381"]],[23,25,["H4714"]],[25,27,["H1481"]],[27,28,["H8033"]],[28,31,["H4962","H4592"]],[31,33,["H1961"]],[33,34,["H8033"]],[34,36,["H1471"]],[36,37,["H1419"]],[37,38,["H6099"]],[38,40,["H7227"]]]},{"k":5572,"v":[[0,3,["H4713"]],[3,5,["H7489"]],[5,8,["H6031"]],[8,11,["H5414"]],[11,12,["H5921"]],[12,14,["H7186"]],[14,15,["H5656"]]]},{"k":5573,"v":[[0,4,["H6817"]],[4,5,["H413"]],[5,7,["H3068"]],[7,8,["H430"]],[8,11,["H1"]],[11,13,["H3068"]],[13,14,["H8085","(H853)"]],[14,16,["H6963"]],[16,19,["H7200","(H853)"]],[19,21,["H6040"]],[21,24,["H5999"]],[24,27,["H3906"]]]},{"k":5574,"v":[[0,3,["H3068"]],[3,6,["H3318"]],[6,9,["H4480","H4714"]],[9,12,["H2389"]],[12,13,["H3027"]],[13,17,["H5186"]],[17,18,["H2220"]],[18,21,["H1419"]],[21,22,["H4172"]],[22,25,["H226"]],[25,28,["H4159"]]]},{"k":5575,"v":[[0,4,["H935"]],[4,6,["H413"]],[6,7,["H2088"]],[7,8,["H4725"]],[8,11,["H5414"]],[11,12,["(H853)"]],[12,13,["H2063"]],[13,14,["H776"]],[14,17,["H776"]],[17,19,["H2100"]],[19,21,["H2461"]],[21,23,["H1706"]]]},{"k":5576,"v":[[0,2,["H6258"]],[2,3,["H2009"]],[3,6,["H935","(H853)"]],[6,8,["H7225","H6529"]],[8,11,["H127"]],[11,12,["H834"]],[12,15,["H3068"]],[15,17,["H5414"]],[17,22,["H5117"]],[22,24,["H6440"]],[24,26,["H3068"]],[26,28,["H430"]],[28,30,["H7812"]],[30,31,["H6440"]],[31,33,["H3068"]],[33,35,["H430"]]]},{"k":5577,"v":[[0,4,["H8055"]],[4,6,["H3605"]],[6,7,["H2896"]],[7,9,["H834"]],[9,11,["H3068"]],[11,13,["H430"]],[13,15,["H5414"]],[15,21,["H1004"]],[21,22,["H859"]],[22,25,["H3881"]],[25,28,["H1616"]],[28,29,["H834"]],[29,31,["H7130"]],[31,32,[]]]},{"k":5578,"v":[[0,1,["H3588"]],[1,6,["H3615"]],[6,8,["H6237","(H853)"]],[8,9,["H3605"]],[9,11,["H4643"]],[11,14,["H8393"]],[14,16,["H7992"]],[16,17,["H8141"]],[17,21,["H8141"]],[21,23,["H4643"]],[23,26,["H5414"]],[26,30,["H3881"]],[30,32,["H1616"]],[32,34,["H3490"]],[34,37,["H490"]],[37,41,["H398"]],[41,44,["H8179"]],[44,47,["H7646"]]]},{"k":5579,"v":[[0,4,["H559"]],[4,5,["H6440"]],[5,7,["H3068"]],[7,9,["H430"]],[9,13,["H1197"]],[13,16,["H6944"]],[16,18,["H4480"]],[18,20,["H1004"]],[20,22,["H1571"]],[22,24,["H5414"]],[24,28,["H3881"]],[28,32,["H1616"]],[32,35,["H3490"]],[35,39,["H490"]],[39,42,["H3605"]],[42,44,["H4687"]],[44,45,["H834"]],[45,48,["H6680"]],[48,52,["H3808"]],[52,53,["H5674"]],[53,55,["H4480","H4687"]],[55,56,["H3808"]],[56,59,["H7911"]],[59,60,[]]]},{"k":5580,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,5,["H4480"]],[5,8,["H205"]],[8,9,["H3808"]],[9,13,["H1197"]],[13,15,["H4480"]],[15,18,["H2931"]],[18,20,["H3808"]],[20,21,["H5414"]],[21,23,["H4480"]],[23,26,["H4191"]],[26,30,["H8085"]],[30,33,["H6963"]],[33,36,["H3068"]],[36,38,["H430"]],[38,41,["H6213"]],[41,44,["H3605"]],[44,45,["H834"]],[45,48,["H6680"]],[48,49,[]]]},{"k":5581,"v":[[0,2,["H8259"]],[2,5,["H6944"]],[5,6,["H4480","H4583"]],[6,7,["H4480"]],[7,8,["H8064"]],[8,10,["H1288","(H853)"]],[10,12,["H5971","(H853)"]],[12,13,["H3478"]],[13,16,["H127"]],[16,17,["H834"]],[17,20,["H5414"]],[20,22,["H834"]],[22,24,["H7650"]],[24,27,["H1"]],[27,29,["H776"]],[29,31,["H2100"]],[31,33,["H2461"]],[33,35,["H1706"]]]},{"k":5582,"v":[[0,1,["H2088"]],[1,2,["H3117"]],[2,4,["H3068"]],[4,6,["H430"]],[6,8,["H6680"]],[8,11,["H6213","(H853)"]],[11,12,["H428"]],[12,13,["H2706"]],[13,15,["H4941"]],[15,19,["H8104"]],[19,21,["H6213"]],[21,24,["H3605"]],[24,26,["H3824"]],[26,29,["H3605"]],[29,31,["H5315"]]]},{"k":5583,"v":[[0,3,["H559","(H853)"]],[3,5,["H3068"]],[5,7,["H3117"]],[7,9,["H1961"]],[9,11,["H430"]],[11,14,["H1980"]],[14,17,["H1870"]],[17,20,["H8104"]],[20,22,["H2706"]],[22,25,["H4687"]],[25,28,["H4941"]],[28,31,["H8085"]],[31,34,["H6963"]]]},{"k":5584,"v":[[0,3,["H3068"]],[3,5,["H559"]],[5,8,["H3117"]],[8,10,["H1961"]],[10,12,["H5459"]],[12,13,["H5971"]],[13,14,["H834"]],[14,17,["H1696"]],[17,23,["H8104"]],[23,24,["H3605"]],[24,26,["H4687"]]]},{"k":5585,"v":[[0,3,["H5414"]],[3,5,["H5945"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,8,["H1471"]],[8,9,["H834"]],[9,12,["H6213"]],[12,14,["H8416"]],[14,17,["H8034"]],[17,20,["H8597"]],[20,25,["H1961"]],[25,27,["H6918"]],[27,28,["H5971"]],[28,31,["H3068"]],[31,33,["H430"]],[33,34,["H834"]],[34,37,["H1696"]]]},{"k":5586,"v":[[0,2,["H4872"]],[2,5,["H2205"]],[5,7,["H3478"]],[7,8,["H6680","(H853)"]],[8,10,["H5971"]],[10,11,["H559"]],[11,12,["H8104","(H853)"]],[12,13,["H3605"]],[13,15,["H4687"]],[15,16,["H834"]],[16,17,["H595"]],[17,18,["H6680"]],[18,21,["H3117"]]]},{"k":5587,"v":[[0,4,["H1961"]],[4,7,["H3117"]],[7,8,["H834"]],[8,12,["H5674","(H853)"]],[12,13,["H3383"]],[13,14,["H413"]],[14,16,["H776"]],[16,17,["H834"]],[17,19,["H3068"]],[19,21,["H430"]],[21,22,["H5414"]],[22,29,["H6965"]],[29,30,["H1419"]],[30,31,["H68"]],[31,33,["H7874"]],[33,36,["H7875"]]]},{"k":5588,"v":[[0,4,["H3789"]],[4,5,["H5921"]],[5,6,["(H853)"]],[6,7,["H3605"]],[7,9,["H1697"]],[9,11,["H2063"]],[11,12,["H8451"]],[12,17,["H5674"]],[17,18,["H4616","H834"]],[18,22,["H935"]],[22,23,["H413"]],[23,25,["H776"]],[25,26,["H834"]],[26,28,["H3068"]],[28,30,["H430"]],[30,31,["H5414"]],[31,34,["H776"]],[34,36,["H2100"]],[36,38,["H2461"]],[38,40,["H1706"]],[40,41,["H834"]],[41,43,["H3068"]],[43,44,["H430"]],[44,47,["H1"]],[47,49,["H1696"]],[49,50,[]]]},{"k":5589,"v":[[0,4,["H1961"]],[4,9,["H5674","(H853)"]],[9,10,["H3383"]],[10,15,["H6965","(H853)"]],[15,16,["H428"]],[16,17,["H68"]],[17,18,["H834"]],[18,19,["H595"]],[19,20,["H6680"]],[20,23,["H3117"]],[23,25,["H2022"]],[25,26,["H5858"]],[26,30,["H7874"]],[30,33,["H7875"]]]},{"k":5590,"v":[[0,2,["H8033"]],[2,5,["H1129"]],[5,7,["H4196"]],[7,10,["H3068"]],[10,12,["H430"]],[12,14,["H4196"]],[14,16,["H68"]],[16,19,["H3808"]],[19,21,["H5130"]],[21,23,["H1270"]],[23,25,["H5921"]],[25,26,[]]]},{"k":5591,"v":[[0,3,["H1129","(H853)"]],[3,5,["H4196"]],[5,8,["H3068"]],[8,10,["H430"]],[10,12,["H8003"]],[12,13,["H68"]],[13,17,["H5927"]],[17,19,["H5930"]],[19,20,["H5921"]],[20,23,["H3068"]],[23,25,["H430"]]]},{"k":5592,"v":[[0,4,["H2076"]],[4,6,["H8002"]],[6,9,["H398"]],[9,10,["H8033"]],[10,12,["H8055"]],[12,13,["H6440"]],[13,15,["H3068"]],[15,17,["H430"]]]},{"k":5593,"v":[[0,4,["H3789"]],[4,5,["H5921"]],[5,7,["H68","(H853)"]],[7,8,["H3605"]],[8,10,["H1697"]],[10,12,["H2063"]],[12,13,["H8451"]],[13,15,["H874","H3190"]]]},{"k":5594,"v":[[0,2,["H4872"]],[2,5,["H3548"]],[5,7,["H3881"]],[7,8,["H1696"]],[8,9,["H413"]],[9,10,["H3605"]],[10,11,["H3478"]],[11,12,["H559"]],[12,14,["H5535"]],[14,16,["H8085"]],[16,18,["H3478"]],[18,19,["H2088"]],[19,20,["H3117"]],[20,23,["H1961"]],[23,25,["H5971"]],[25,28,["H3068"]],[28,30,["H430"]]]},{"k":5595,"v":[[0,4,["H8085"]],[4,6,["H6963"]],[6,9,["H3068"]],[9,11,["H430"]],[11,13,["H6213","(H853)"]],[13,15,["H4687"]],[15,18,["H2706"]],[18,19,["H834"]],[19,20,["H595"]],[20,21,["H6680"]],[21,24,["H3117"]]]},{"k":5596,"v":[[0,2,["H4872"]],[2,3,["H6680","(H853)"]],[3,5,["H5971"]],[5,7,["H1931"]],[7,8,["H3117"]],[8,9,["H559"]]]},{"k":5597,"v":[[0,1,["H428"]],[1,3,["H5975"]],[3,4,["H5921"]],[4,5,["H2022"]],[5,6,["H1630"]],[6,8,["H1288","(H853)"]],[8,10,["H5971"]],[10,15,["H5674","(H853)"]],[15,16,["H3383"]],[16,17,["H8095"]],[17,19,["H3878"]],[19,21,["H3063"]],[21,23,["H3485"]],[23,25,["H3130"]],[25,27,["H1144"]]]},{"k":5598,"v":[[0,2,["H428"]],[2,4,["H5975"]],[4,6,["H2022"]],[6,7,["H5858"]],[7,8,["H5921"]],[8,9,["H7045"]],[9,10,["H7205"]],[10,11,["H1410"]],[11,13,["H836"]],[13,15,["H2074"]],[15,16,["H1835"]],[16,18,["H5321"]]]},{"k":5599,"v":[[0,3,["H3881"]],[3,5,["H6030"]],[5,7,["H559"]],[7,8,["H413"]],[8,9,["H3605"]],[9,11,["H376"]],[11,13,["H3478"]],[13,16,["H7311"]],[16,17,["H6963"]]]},{"k":5600,"v":[[0,1,["H779"]],[1,4,["H376"]],[4,5,["H834"]],[5,6,["H6213"]],[6,8,["H6459"]],[8,11,["H4541"]],[11,13,["H8441"]],[13,16,["H3068"]],[16,18,["H4639"]],[18,21,["H3027"]],[21,24,["H2796"]],[24,26,["H7760"]],[26,30,["H5643"]],[30,33,["H3605"]],[33,35,["H5971"]],[35,37,["H6030"]],[37,39,["H559"]],[39,40,["H543"]]]},{"k":5601,"v":[[0,1,["H779"]],[1,6,["H7034"]],[6,9,["H1"]],[9,12,["H517"]],[12,14,["H3605"]],[14,16,["H5971"]],[16,18,["H559"]],[18,19,["H543"]]]},{"k":5602,"v":[[0,1,["H779"]],[1,5,["H5253"]],[5,7,["H7453"]],[7,8,["H1366"]],[8,10,["H3605"]],[10,12,["H5971"]],[12,14,["H559"]],[14,15,["H543"]]]},{"k":5603,"v":[[0,1,["H779"]],[1,7,["H5787"]],[7,9,["H7686"]],[9,13,["H1870"]],[13,15,["H3605"]],[15,17,["H5971"]],[17,19,["H559"]],[19,20,["H543"]]]},{"k":5604,"v":[[0,1,["H779"]],[1,5,["H5186"]],[5,7,["H4941"]],[7,10,["H1616"]],[10,11,["H3490"]],[11,13,["H490"]],[13,15,["H3605"]],[15,17,["H5971"]],[17,19,["H559"]],[19,20,["H543"]]]},{"k":5605,"v":[[0,1,["H779"]],[1,5,["H7901"]],[5,6,["H5973"]],[6,8,["H1"]],[8,9,["H802"]],[9,10,["H3588"]],[10,12,["H1540"]],[12,14,["H1"]],[14,15,["H3671"]],[15,17,["H3605"]],[17,19,["H5971"]],[19,21,["H559"]],[21,22,["H543"]]]},{"k":5606,"v":[[0,1,["H779"]],[1,5,["H7901"]],[5,6,["H5973"]],[6,8,["H3605"]],[8,10,["H929"]],[10,12,["H3605"]],[12,14,["H5971"]],[14,16,["H559"]],[16,17,["H543"]]]},{"k":5607,"v":[[0,1,["H779"]],[1,5,["H7901"]],[5,6,["H5973"]],[6,8,["H269"]],[8,10,["H1323"]],[10,13,["H1"]],[13,14,["H176"]],[14,16,["H1323"]],[16,19,["H517"]],[19,21,["H3605"]],[21,23,["H5971"]],[23,25,["H559"]],[25,26,["H543"]]]},{"k":5608,"v":[[0,1,["H779"]],[1,5,["H7901"]],[5,6,["H5973"]],[6,10,["H2859"]],[10,12,["H3605"]],[12,14,["H5971"]],[14,16,["H559"]],[16,17,["H543"]]]},{"k":5609,"v":[[0,1,["H779"]],[1,5,["H5221"]],[5,7,["H7453"]],[7,8,["H5643"]],[8,10,["H3605"]],[10,12,["H5971"]],[12,14,["H559"]],[14,15,["H543"]]]},{"k":5610,"v":[[0,1,["H779"]],[1,5,["H3947"]],[5,6,["H7810"]],[6,8,["H5221"]],[8,10,["H5355"]],[10,11,["H5315"]],[11,13,["H3605"]],[13,15,["H5971"]],[15,17,["H559"]],[17,18,["H543"]]]},{"k":5611,"v":[[0,1,["H779"]],[1,4,["H834"]],[4,5,["H6965"]],[5,6,["H3808"]],[6,7,["(H853)"]],[7,9,["H1697"]],[9,11,["H2063"]],[11,12,["H8451"]],[12,14,["H6213"]],[14,17,["H3605"]],[17,19,["H5971"]],[19,21,["H559"]],[21,22,["H543"]]]},{"k":5612,"v":[[0,6,["H1961"]],[6,7,["H518"]],[7,11,["H8085","H8085"]],[11,14,["H6963"]],[14,17,["H3068"]],[17,19,["H430"]],[19,21,["H8104"]],[21,24,["H6213","(H853)"]],[24,25,["H3605"]],[25,27,["H4687"]],[27,28,["H834"]],[28,29,["H595"]],[29,30,["H6680"]],[30,33,["H3117"]],[33,36,["H3068"]],[36,38,["H430"]],[38,40,["H5414"]],[40,43,["H5945"]],[43,44,["H5921"]],[44,45,["H3605"]],[45,46,["H1471"]],[46,49,["H776"]]]},{"k":5613,"v":[[0,2,["H3605"]],[2,3,["H428"]],[3,4,["H1293"]],[4,6,["H935"]],[6,7,["H5921"]],[7,10,["H5381"]],[10,12,["H3588"]],[12,15,["H8085"]],[15,18,["H6963"]],[18,21,["H3068"]],[21,23,["H430"]]]},{"k":5614,"v":[[0,1,["H1288"]],[1,3,["H859"]],[3,7,["H5892"]],[7,9,["H1288"]],[9,11,["H859"]],[11,15,["H7704"]]]},{"k":5615,"v":[[0,1,["H1288"]],[1,5,["H6529"]],[5,8,["H990"]],[8,11,["H6529"]],[11,14,["H127"]],[14,17,["H6529"]],[17,20,["H929"]],[20,22,["H7698"]],[22,25,["H504"]],[25,28,["H6251"]],[28,31,["H6629"]]]},{"k":5616,"v":[[0,1,["H1288"]],[1,5,["H2935"]],[5,8,["H4863"]]]},{"k":5617,"v":[[0,1,["H1288"]],[1,3,["H859"]],[3,8,["H935"]],[8,10,["H1288"]],[10,12,["H859"]],[12,17,["H3318"]]]},{"k":5618,"v":[[0,2,["H3068"]],[2,4,["H5414","(H853)"]],[4,6,["H341"]],[6,9,["H6965"]],[9,10,["H5921"]],[10,14,["H5062"]],[14,17,["H6440"]],[17,21,["H3318"]],[21,22,["H413"]],[22,24,["H259"]],[24,25,["H1870"]],[25,27,["H5127"]],[27,28,["H6440"]],[28,30,["H7651"]],[30,31,["H1870"]]]},{"k":5619,"v":[[0,2,["H3068"]],[2,4,["H6680","(H853)"]],[4,6,["H1293"]],[6,7,["H854"]],[7,11,["H618"]],[11,14,["H3605"]],[14,17,["H4916"]],[17,19,["H3027"]],[19,24,["H1288"]],[24,28,["H776"]],[28,29,["H834"]],[29,31,["H3068"]],[31,33,["H430"]],[33,34,["H5414"]],[34,35,[]]]},{"k":5620,"v":[[0,2,["H3068"]],[2,4,["H6965"]],[4,7,["H6918"]],[7,8,["H5971"]],[8,11,["H834"]],[11,14,["H7650"]],[14,17,["H3588"]],[17,20,["H8104","(H853)"]],[20,22,["H4687"]],[22,25,["H3068"]],[25,27,["H430"]],[27,29,["H1980"]],[29,32,["H1870"]]]},{"k":5621,"v":[[0,2,["H3605"]],[2,3,["H5971"]],[3,6,["H776"]],[6,8,["H7200"]],[8,9,["H3588"]],[9,12,["H7121"]],[12,13,["H5921"]],[13,15,["H8034"]],[15,18,["H3068"]],[18,23,["H3372"]],[23,24,["H4480"]],[24,25,[]]]},{"k":5622,"v":[[0,3,["H3068"]],[3,7,["H3498"]],[7,9,["H2896"]],[9,12,["H6529"]],[12,15,["H990"]],[15,19,["H6529"]],[19,22,["H929"]],[22,26,["H6529"]],[26,29,["H127"]],[29,30,["H5921"]],[30,32,["H127"]],[32,33,["H834"]],[33,35,["H3068"]],[35,36,["H7650"]],[36,39,["H1"]],[39,41,["H5414"]],[41,42,[]]]},{"k":5623,"v":[[0,2,["H3068"]],[2,4,["H6605"]],[4,6,["(H853)"]],[6,8,["H2896"]],[8,9,["H214","(H853)"]],[9,11,["H8064"]],[11,13,["H5414"]],[13,15,["H4306"]],[15,18,["H776"]],[18,21,["H6256"]],[21,24,["H1288","(H853)"]],[24,25,["H3605"]],[25,27,["H4639"]],[27,30,["H3027"]],[30,34,["H3867"]],[34,36,["H7227"]],[36,37,["H1471"]],[37,39,["H859"]],[39,41,["H3808"]],[41,42,["H3867"]]]},{"k":5624,"v":[[0,3,["H3068"]],[3,5,["H5414"]],[5,8,["H7218"]],[8,10,["H3808"]],[10,12,["H2180"]],[12,16,["H1961"]],[16,17,["H4605"]],[17,18,["H7535"]],[18,22,["H3808"]],[22,23,["H1961"]],[23,24,["H4295"]],[24,25,["H3588"]],[25,28,["H8085"]],[28,29,["H413"]],[29,31,["H4687"]],[31,34,["H3068"]],[34,36,["H430"]],[36,37,["H834"]],[37,38,["H595"]],[38,39,["H6680"]],[39,42,["H3117"]],[42,44,["H8104"]],[44,47,["H6213"]],[47,48,[]]]},{"k":5625,"v":[[0,4,["H3808"]],[4,6,["H5493"]],[6,8,["H4480","H3605"]],[8,11,["H1697"]],[11,12,["H834"]],[12,13,["H595"]],[13,14,["H6680"]],[14,17,["H3117"]],[17,21,["H3225"]],[21,25,["H8040"]],[25,27,["H1980"]],[27,28,["H310"]],[28,29,["H312"]],[29,30,["H430"]],[30,32,["H5647"]],[32,33,[]]]},{"k":5626,"v":[[0,6,["H1961"]],[6,7,["H518"]],[7,10,["H3808"]],[10,11,["H8085"]],[11,14,["H6963"]],[14,17,["H3068"]],[17,19,["H430"]],[19,21,["H8104"]],[21,23,["H6213","(H853)"]],[23,24,["H3605"]],[24,26,["H4687"]],[26,29,["H2708"]],[29,30,["H834"]],[30,31,["H595"]],[31,32,["H6680"]],[32,35,["H3117"]],[35,37,["H3605"]],[37,38,["H428"]],[38,39,["H7045"]],[39,41,["H935"]],[41,42,["H5921"]],[42,45,["H5381"]],[45,46,[]]]},{"k":5627,"v":[[0,1,["H779"]],[1,3,["H859"]],[3,7,["H5892"]],[7,9,["H779"]],[9,11,["H859"]],[11,15,["H7704"]]]},{"k":5628,"v":[[0,1,["H779"]],[1,5,["H2935"]],[5,8,["H4863"]]]},{"k":5629,"v":[[0,1,["H779"]],[1,5,["H6529"]],[5,8,["H990"]],[8,11,["H6529"]],[11,14,["H127"]],[14,16,["H7698"]],[16,19,["H504"]],[19,22,["H6251"]],[22,25,["H6629"]]]},{"k":5630,"v":[[0,1,["H779"]],[1,3,["H859"]],[3,8,["H935"]],[8,10,["H779"]],[10,12,["H859"]],[12,17,["H3318"]]]},{"k":5631,"v":[[0,2,["H3068"]],[2,4,["H7971"]],[4,6,["(H853)"]],[6,7,["H3994","(H853)"]],[7,8,["H4103"]],[8,10,["H4045"]],[10,12,["H3605"]],[12,15,["H4916"]],[15,17,["H3027"]],[17,19,["H834"]],[19,21,["H6213"]],[21,22,["H5704"]],[22,25,["H8045"]],[25,27,["H5704"]],[27,29,["H6"]],[29,30,["H4118"]],[30,31,["H4480","H6440"]],[31,34,["H7455"]],[34,37,["H4611"]],[37,38,["H834"]],[38,41,["H5800"]],[41,42,[]]]},{"k":5632,"v":[[0,2,["H3068"]],[2,4,["(H853)"]],[4,6,["H1698"]],[6,7,["H1692"]],[7,10,["H5704"]],[10,13,["H3615"]],[13,16,["H4480","H5921"]],[16,18,["H127"]],[18,19,["H834","H8033"]],[19,20,["H859"]],[20,21,["H935"]],[21,23,["H3423"]],[23,24,[]]]},{"k":5633,"v":[[0,2,["H3068"]],[2,4,["H5221"]],[4,8,["H7829"]],[8,12,["H6920"]],[12,16,["H1816"]],[16,21,["H2746"]],[21,25,["H2719"]],[25,28,["H7711"]],[28,31,["H3420"]],[31,35,["H7291"]],[35,37,["H5704"]],[37,39,["H6"]]]},{"k":5634,"v":[[0,3,["H8064"]],[3,4,["H834"]],[4,6,["H5921"]],[6,8,["H7218"]],[8,10,["H1961"]],[10,11,["H5178"]],[11,14,["H776"]],[14,15,["H834"]],[15,17,["H8478"]],[17,21,["H1270"]]]},{"k":5635,"v":[[0,2,["H3068"]],[2,4,["H5414","(H853)"]],[4,6,["H4306"]],[6,9,["H776"]],[9,10,["H80"]],[10,12,["H6083"]],[12,13,["H4480"]],[13,14,["H8064"]],[14,18,["H3381"]],[18,19,["H5921"]],[19,21,["H5704"]],[21,24,["H8045"]]]},{"k":5636,"v":[[0,2,["H3068"]],[2,4,["H5414"]],[4,8,["H5062"]],[8,9,["H6440"]],[9,11,["H341"]],[11,15,["H3318"]],[15,16,["H259"]],[16,17,["H1870"]],[17,18,["H413"]],[18,21,["H5127"]],[21,22,["H7651"]],[22,23,["H1870"]],[23,24,["H6440"]],[24,28,["H1961"]],[28,29,["H2189"]],[29,31,["H3605"]],[31,33,["H4467"]],[33,36,["H776"]]]},{"k":5637,"v":[[0,3,["H5038"]],[3,5,["H1961"]],[5,6,["H3978"]],[6,8,["H3605"]],[8,9,["H5775"]],[9,12,["H8064"]],[12,16,["H929"]],[16,19,["H776"]],[19,22,["H369"]],[22,26,["H2729"]]]},{"k":5638,"v":[[0,2,["H3068"]],[2,4,["H5221"]],[4,8,["H7822"]],[8,10,["H4714"]],[10,14,["H6076"]],[14,18,["H1618"]],[18,22,["H2775"]],[22,23,["H834"]],[23,25,["H3201"]],[25,26,["H3808"]],[26,28,["H7495"]]]},{"k":5639,"v":[[0,2,["H3068"]],[2,4,["H5221"]],[4,7,["H7697"]],[7,9,["H5788"]],[9,11,["H8541"]],[11,13,["H3824"]]]},{"k":5640,"v":[[0,3,["H1961"]],[3,4,["H4959"]],[4,6,["H6672"]],[6,7,["H834"]],[7,9,["H5787"]],[9,10,["H4959"]],[10,12,["H653"]],[12,16,["H3808"]],[16,17,["H6743","(H853)"]],[17,20,["H1870"]],[20,24,["H1961"]],[24,25,["H389"]],[25,26,["H6231"]],[26,28,["H1497"]],[28,29,["H3605","H3117"]],[29,32,["H369"]],[32,34,["H3467"]],[34,35,[]]]},{"k":5641,"v":[[0,3,["H781"]],[3,5,["H802"]],[5,7,["H312"]],[7,8,["H376"]],[8,11,["H7901"]],[11,15,["H1129"]],[15,17,["H1004"]],[17,21,["H3808"]],[21,22,["H3427"]],[22,26,["H5193"]],[26,28,["H3754"]],[28,31,["H3808"]],[31,34,["H2490"]],[34,35,[]]]},{"k":5642,"v":[[0,2,["H7794"]],[2,5,["H2873"]],[5,8,["H5869"]],[8,12,["H3808"]],[12,13,["H398"]],[13,14,["H4480"]],[14,16,["H2543"]],[16,21,["H1497"]],[21,25,["H4480","H6440"]],[25,28,["H3808"]],[28,30,["H7725"]],[30,34,["H6629"]],[34,37,["H5414"]],[37,40,["H341"]],[40,45,["H369"]],[45,47,["H3467"]],[47,48,[]]]},{"k":5643,"v":[[0,2,["H1121"]],[2,5,["H1323"]],[5,8,["H5414"]],[8,10,["H312"]],[10,11,["H5971"]],[11,14,["H5869"]],[14,16,["H7200"]],[16,18,["H3616"]],[18,21,["H413"]],[21,23,["H3605"]],[23,25,["H3117"]],[25,31,["H369"]],[31,32,["H410"]],[32,35,["H3027"]]]},{"k":5644,"v":[[0,2,["H6529"]],[2,5,["H127"]],[5,7,["H3605"]],[7,9,["H3018"]],[9,12,["H5971"]],[12,13,["H834"]],[13,15,["H3045"]],[15,16,["H3808"]],[16,18,["H398"]],[18,22,["H1961"]],[22,23,["H7535"]],[23,24,["H6231"]],[24,26,["H7533"]],[26,27,["H3605","H3117"]]]},{"k":5645,"v":[[0,5,["H1961"]],[5,6,["H7696"]],[6,9,["H4480","H4758"]],[9,12,["H5869"]],[12,13,["H834"]],[13,16,["H7200"]]]},{"k":5646,"v":[[0,2,["H3068"]],[2,4,["H5221"]],[4,6,["H5921"]],[6,8,["H1290"]],[8,10,["H5921"]],[10,12,["H7785"]],[12,15,["H7451"]],[15,16,["H7822"]],[16,17,["H834"]],[17,18,["H3201","H3808"]],[18,20,["H7495"]],[20,23,["H4480","H3709"]],[23,26,["H7272"]],[26,27,["H5704"]],[27,32,["H6936"]]]},{"k":5647,"v":[[0,2,["H3068"]],[2,4,["H1980"]],[4,8,["H4428"]],[8,9,["H834"]],[9,12,["H6965"]],[12,13,["H5921"]],[13,15,["H413"]],[15,17,["H1471"]],[17,18,["H834"]],[18,19,["H3808"]],[19,20,["H859"]],[20,23,["H1"]],[23,25,["H3045"]],[25,27,["H8033"]],[27,30,["H5647"]],[30,31,["H312"]],[31,32,["H430"]],[32,33,["H6086"]],[33,35,["H68"]]]},{"k":5648,"v":[[0,4,["H1961"]],[4,6,["H8047"]],[6,8,["H4912"]],[8,11,["H8148"]],[11,13,["H3605"]],[13,14,["H5971"]],[14,15,["H834","H8033"]],[15,17,["H3068"]],[17,19,["H5090"]],[19,20,[]]]},{"k":5649,"v":[[0,6,["H3318","H7227","H2233"]],[6,9,["H7704"]],[9,15,["H622","H4592"]],[15,16,["H3588"]],[16,18,["H697"]],[18,20,["H2628"]],[20,21,[]]]},{"k":5650,"v":[[0,3,["H5193"]],[3,4,["H3754"]],[4,6,["H5647"]],[6,10,["H3808"]],[10,11,["H8354"]],[11,14,["H3196"]],[14,15,["H3808"]],[15,16,["H103"]],[16,19,["H3588"]],[19,21,["H8438"]],[21,23,["H398"]],[23,24,[]]]},{"k":5651,"v":[[0,3,["H1961"]],[3,5,["H2132"]],[5,7,["H3605"]],[7,9,["H1366"]],[9,13,["H3808"]],[13,14,["H5480"]],[14,18,["H8081"]],[18,19,["H3588"]],[19,21,["H2132"]],[21,23,["H5394"]],[23,25,[]]]},{"k":5652,"v":[[0,3,["H3205"]],[3,4,["H1121"]],[4,6,["H1323"]],[6,10,["H3808"]],[10,11,["H1961"]],[11,13,["H3588"]],[13,16,["H1980"]],[16,18,["H7628"]]]},{"k":5653,"v":[[0,1,["H3605"]],[1,3,["H6086"]],[3,5,["H6529"]],[5,8,["H127"]],[8,11,["H6767"]],[11,12,["H3423"]]]},{"k":5654,"v":[[0,2,["H1616"]],[2,3,["H834"]],[3,5,["H7130"]],[5,9,["H5927"]],[9,10,["H5921"]],[10,13,["H4605","H4605"]],[13,15,["H859"]],[15,18,["H3381"]],[18,20,["H4295","H4295"]]]},{"k":5655,"v":[[0,1,["H1931"]],[1,3,["H3867"]],[3,7,["H859"]],[7,9,["H3808"]],[9,10,["H3867"]],[10,13,["H1931"]],[13,15,["H1961"]],[15,17,["H7218"]],[17,19,["H859"]],[19,21,["H1961"]],[21,23,["H2180"]]]},{"k":5656,"v":[[0,2,["H3605"]],[2,3,["H428"]],[3,4,["H7045"]],[4,6,["H935"]],[6,7,["H5921"]],[7,11,["H7291"]],[11,14,["H5381"]],[14,16,["H5704"]],[16,19,["H8045"]],[19,20,["H3588"]],[20,22,["H8085"]],[22,23,["H3808"]],[23,26,["H6963"]],[26,29,["H3068"]],[29,31,["H430"]],[31,33,["H8104"]],[33,35,["H4687"]],[35,38,["H2708"]],[38,39,["H834"]],[39,41,["H6680"]],[41,42,[]]]},{"k":5657,"v":[[0,4,["H1961"]],[4,9,["H226"]],[9,13,["H4159"]],[13,17,["H2233"]],[17,19,["H5704","H5769"]]]},{"k":5658,"v":[[0,1,["H8478","H834"]],[1,3,["H5647"]],[3,4,["H3808","(H853)"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H8057"]],[10,13,["H2898"]],[13,15,["H3824"]],[15,18,["H4480","H7230"]],[18,20,["H3605"]],[20,21,[]]]},{"k":5659,"v":[[0,4,["H5647","(H853)"]],[4,6,["H341"]],[6,7,["H834"]],[7,9,["H3068"]],[9,11,["H7971"]],[11,15,["H7458"]],[15,18,["H6772"]],[18,21,["H5903"]],[21,24,["H2640"]],[24,26,["H3605"]],[26,31,["H5414"]],[31,33,["H5923"]],[33,35,["H1270"]],[35,36,["H5921"]],[36,38,["H6677"]],[38,39,["H5704"]],[39,42,["H8045"]],[42,43,[]]]},{"k":5660,"v":[[0,2,["H3068"]],[2,4,["H5375"]],[4,6,["H1471"]],[6,7,["H5921"]],[7,10,["H4480","H7350"]],[10,13,["H4480","H7097"]],[13,16,["H776"]],[16,19,["H834"]],[19,21,["H5404"]],[21,22,["H1675"]],[22,24,["H1471"]],[24,25,["H834"]],[25,26,["H3956"]],[26,29,["H3808"]],[29,30,["H8085"]]]},{"k":5661,"v":[[0,2,["H1471"]],[2,4,["H5794"]],[4,5,["H6440"]],[5,6,["H834"]],[6,8,["H3808"]],[8,9,["H5375"]],[9,11,["H6440"]],[11,14,["H2205"]],[14,15,["H3808"]],[15,17,["H2603"]],[17,20,["H5288"]]]},{"k":5662,"v":[[0,4,["H398"]],[4,6,["H6529"]],[6,9,["H929"]],[9,12,["H6529"]],[12,15,["H127"]],[15,16,["H5704"]],[16,19,["H8045"]],[19,20,["H834"]],[20,23,["H3808"]],[23,24,["H7604"]],[24,27,["H1715"]],[27,28,["H8492"]],[28,30,["H3323"]],[30,33,["H7698"]],[33,36,["H504"]],[36,38,["H6251"]],[38,41,["H6629"]],[41,42,["H5704"]],[42,45,["H6"]],[45,46,[]]]},{"k":5663,"v":[[0,4,["H6887"]],[4,7,["H3605"]],[7,9,["H8179"]],[9,10,["H5704"]],[10,12,["H1364"]],[12,14,["H1219"]],[14,15,["H2346"]],[15,17,["H3381"]],[17,18,["H834"]],[18,19,["H859"]],[19,20,["H982"]],[20,22,["H3605"]],[22,24,["H776"]],[24,28,["H6887"]],[28,31,["H3605"]],[31,33,["H8179"]],[33,35,["H3605"]],[35,37,["H776"]],[37,38,["H834"]],[38,40,["H3068"]],[40,42,["H430"]],[42,44,["H5414"]],[44,45,[]]]},{"k":5664,"v":[[0,4,["H398"]],[4,6,["H6529"]],[6,10,["H990"]],[10,12,["H1320"]],[12,15,["H1121"]],[15,19,["H1323"]],[19,20,["H834"]],[20,22,["H3068"]],[22,24,["H430"]],[24,26,["H5414"]],[26,30,["H4692"]],[30,34,["H4689"]],[34,35,["H834"]],[35,37,["H341"]],[37,39,["H6693"]],[39,40,[]]]},{"k":5665,"v":[[0,4,["H376"]],[4,7,["H7390"]],[7,11,["H3966"]],[11,12,["H6028"]],[12,14,["H5869"]],[14,17,["H7489"]],[17,20,["H251"]],[20,24,["H802"]],[24,27,["H2436"]],[27,31,["H3499"]],[31,34,["H1121"]],[34,35,["H834"]],[35,38,["H3498"]]]},{"k":5666,"v":[[0,6,["H4480","H5414"]],[6,8,["H259"]],[8,9,["H4480"]],[9,13,["H4480","H1320"]],[13,16,["H1121"]],[16,17,["H834"]],[17,20,["H398"]],[20,21,["H4480","H1097"]],[21,24,["H3605"]],[24,25,["H7604"]],[25,29,["H4692"]],[29,33,["H4689"]],[33,34,["H834"]],[34,36,["H341"]],[36,38,["H6693"]],[38,41,["H3605"]],[41,43,["H8179"]]]},{"k":5667,"v":[[0,2,["H7390"]],[2,5,["H6028"]],[5,8,["H834"]],[8,10,["H3808"]],[10,11,["H5254"]],[11,13,["H3322"]],[13,15,["H3709"]],[15,18,["H7272"]],[18,19,["H5921"]],[19,21,["H776"]],[21,23,["H4480","H6026"]],[23,25,["H4480","H7391"]],[25,27,["H5869"]],[27,30,["H7489"]],[30,33,["H376"]],[33,36,["H2436"]],[36,40,["H1121"]],[40,44,["H1323"]]]},{"k":5668,"v":[[0,5,["H7988"]],[5,8,["H3318"]],[8,10,["H4480","H996"]],[10,12,["H7272"]],[12,16,["H1121"]],[16,17,["H834"]],[17,20,["H3205"]],[20,21,["H3588"]],[21,24,["H398"]],[24,27,["H2640"]],[27,29,["H3605"]],[29,31,["H5643"]],[31,34,["H4692"]],[34,36,["H4689"]],[36,37,["H834"]],[37,39,["H341"]],[39,41,["H6693"]],[41,45,["H8179"]]]},{"k":5669,"v":[[0,1,["H518"]],[1,4,["H3808"]],[4,5,["H8104"]],[5,7,["H6213","(H853)"]],[7,8,["H3605"]],[8,10,["H1697"]],[10,12,["H2063"]],[12,13,["H8451"]],[13,16,["H3789"]],[16,18,["H2088"]],[18,19,["H5612"]],[19,23,["H3372","(H853)"]],[23,24,["H2088"]],[24,25,["H3513"]],[25,27,["H3372"]],[27,28,["H8034","(H853)"]],[28,30,["H3068"]],[30,32,["H430"]]]},{"k":5670,"v":[[0,3,["H3068"]],[3,5,["(H853)"]],[5,7,["H4347"]],[7,8,["H6381"]],[8,11,["H4347"]],[11,14,["H2233"]],[14,16,["H1419"]],[16,17,["H4347"]],[17,21,["H539"]],[21,23,["H7451"]],[23,24,["H2483"]],[24,28,["H539"]]]},{"k":5671,"v":[[0,4,["H7725"]],[4,6,["(H853)"]],[6,7,["H3605"]],[7,9,["H4064"]],[9,11,["H4714"]],[11,12,["H834"]],[12,15,["H3025"]],[15,16,["H4480","H6440"]],[16,20,["H1692"]],[20,22,[]]]},{"k":5672,"v":[[0,1,["H1571"]],[1,2,["H3605"]],[2,3,["H2483"]],[3,5,["H3605"]],[5,6,["H4347"]],[6,7,["H834"]],[7,9,["H3808"]],[9,10,["H3789"]],[10,13,["H5612"]],[13,15,["H2063"]],[15,16,["H8451"]],[16,20,["H3068"]],[20,21,["H5927"]],[21,22,["H5921"]],[22,24,["H5704"]],[24,27,["H8045"]]]},{"k":5673,"v":[[0,5,["H7604"]],[5,6,["H4592"]],[6,8,["H4962"]],[8,9,["H8478","H834"]],[9,11,["H1961"]],[11,14,["H3556"]],[14,16,["H8064"]],[16,18,["H7230"]],[18,19,["H3588"]],[19,22,["H3808"]],[22,23,["H8085"]],[23,25,["H6963"]],[25,28,["H3068"]],[28,30,["H430"]]]},{"k":5674,"v":[[0,6,["H1961"]],[6,8,["H834"]],[8,10,["H3068"]],[10,11,["H7797"]],[11,12,["H5921"]],[12,17,["H3190","(H853)"]],[17,20,["H7235"]],[20,22,["H3651"]],[22,24,["H3068"]],[24,26,["H7797"]],[26,27,["H5921"]],[27,30,["H6"]],[30,37,["H8045","(H853)"]],[37,42,["H5255"]],[42,44,["H4480","H5921"]],[44,46,["H127"]],[46,47,["H834","H8033"]],[47,48,["H859"]],[48,49,["H935"]],[49,51,["H3423"]],[51,52,[]]]},{"k":5675,"v":[[0,3,["H3068"]],[3,5,["H6327"]],[5,8,["H3605"]],[8,9,["H5971"]],[9,13,["H4480","H7097"]],[13,16,["H776"]],[16,18,["H5704"]],[18,20,["H7097","(H776)"]],[20,22,["H8033"]],[22,25,["H5647"]],[25,26,["H312"]],[26,27,["H430"]],[27,28,["H834"]],[28,29,["H3808"]],[29,30,["H859"]],[30,33,["H1"]],[33,35,["H3045"]],[35,37,["H6086"]],[37,39,["H68"]]]},{"k":5676,"v":[[0,3,["H1992"]],[3,4,["H1471"]],[4,9,["H7280","H3808"]],[9,10,["H3808"]],[10,13,["H3709"]],[13,16,["H7272"]],[16,17,["H1961"]],[17,18,["H4494"]],[18,21,["H3068"]],[21,23,["H5414"]],[23,25,["H8033"]],[25,27,["H7268"]],[27,28,["H3820"]],[28,30,["H3631"]],[30,32,["H5869"]],[32,34,["H1671"]],[34,36,["H5315"]]]},{"k":5677,"v":[[0,3,["H2416"]],[3,5,["H1961"]],[5,7,["H8511"]],[7,8,["H4480","H5048"]],[8,13,["H6342"]],[13,14,["H3119"]],[14,16,["H3915"]],[16,21,["H539","H3808"]],[21,24,["H2416"]]]},{"k":5678,"v":[[0,3,["H1242"]],[3,6,["H559"]],[6,8,["H4310","H5414"]],[8,11,["H6153"]],[11,14,["H6153"]],[14,17,["H559"]],[17,19,["H4310","H5414"]],[19,22,["H1242"]],[22,25,["H4480","H6343"]],[25,28,["H3824"]],[28,29,["H834"]],[29,32,["H6342"]],[32,36,["H4480","H4758"]],[36,39,["H5869"]],[39,40,["H834"]],[40,43,["H7200"]]]},{"k":5679,"v":[[0,3,["H3068"]],[3,5,["H7725"]],[5,8,["H4714"]],[8,11,["H591"]],[11,14,["H1870"]],[14,15,["H834"]],[15,17,["H559"]],[17,22,["H7200"]],[22,24,["H3808"]],[24,25,["H3254"]],[25,26,["H5750"]],[26,28,["H8033"]],[28,32,["H4376"]],[32,35,["H341"]],[35,37,["H5650"]],[37,39,["H8198"]],[39,42,["H369"]],[42,44,["H7069"]],[44,45,[]]]},{"k":5680,"v":[[0,1,["H428"]],[1,4,["H1697"]],[4,7,["H1285"]],[7,8,["H834"]],[8,10,["H3068"]],[10,11,["H6680","(H853)"]],[11,12,["H4872"]],[12,14,["H3772"]],[14,15,["H854"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,22,["H776"]],[22,24,["H4124"]],[24,25,["H4480","H905"]],[25,27,["H1285"]],[27,28,["H834"]],[28,30,["H3772"]],[30,31,["H854"]],[31,34,["H2722"]]]},{"k":5681,"v":[[0,2,["H4872"]],[2,3,["H7121"]],[3,4,["H413"]],[4,5,["H3605"]],[5,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H859"]],[11,13,["H7200","(H853)"]],[13,14,["H3605"]],[14,15,["H834"]],[15,17,["H3068"]],[17,18,["H6213"]],[18,21,["H5869"]],[21,24,["H776"]],[24,26,["H4714"]],[26,28,["H6547"]],[28,31,["H3605"]],[31,33,["H5650"]],[33,36,["H3605"]],[36,38,["H776"]]]},{"k":5682,"v":[[0,2,["H1419"]],[2,3,["H4531"]],[3,4,["H834"]],[4,6,["H5869"]],[6,8,["H7200"]],[8,10,["H226"]],[10,12,["H1992"]],[12,13,["H1419"]],[13,14,["H4159"]]]},{"k":5683,"v":[[0,3,["H3068"]],[3,5,["H3808"]],[5,6,["H5414"]],[6,9,["H3820"]],[9,11,["H3045"]],[11,13,["H5869"]],[13,15,["H7200"]],[15,17,["H241"]],[17,19,["H8085"]],[19,20,["H5704"]],[20,21,["H2088"]],[21,22,["H3117"]]]},{"k":5684,"v":[[0,4,["H1980"]],[4,6,["H705"]],[6,7,["H8141"]],[7,10,["H4057"]],[10,12,["H8008"]],[12,14,["H3808"]],[14,16,["H1086"]],[16,17,["H4480","H5921"]],[17,21,["H5275"]],[21,23,["H3808"]],[23,25,["H1086"]],[25,26,["H4480","H5921"]],[26,28,["H7272"]]]},{"k":5685,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,5,["H3899"]],[5,6,["H3808"]],[6,9,["H8354"]],[9,10,["H3196"]],[10,13,["H7941"]],[13,14,["H4616"]],[14,17,["H3045"]],[17,18,["H3588"]],[18,19,["H589"]],[19,22,["H3068"]],[22,24,["H430"]]]},{"k":5686,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,6,["H2088"]],[6,7,["H4725"]],[7,8,["H5511"]],[8,10,["H4428"]],[10,12,["H2809"]],[12,14,["H5747"]],[14,16,["H4428"]],[16,18,["H1316"]],[18,20,["H3318"]],[20,21,["H7125"]],[21,24,["H4421"]],[24,27,["H5221"]],[27,28,[]]]},{"k":5687,"v":[[0,3,["H3947","(H853)"]],[3,5,["H776"]],[5,7,["H5414"]],[7,11,["H5159"]],[11,14,["H7206"]],[14,18,["H1425"]],[18,22,["H2677"]],[22,23,["H7626"]],[23,25,["H4520"]]]},{"k":5688,"v":[[0,1,["H8104"]],[1,2,["(H853)"]],[2,4,["H1697"]],[4,6,["H2063"]],[6,7,["H1285"]],[7,9,["H6213"]],[9,11,["H4616"]],[11,14,["H7919","(H853)"]],[14,16,["H3605"]],[16,17,["H834"]],[17,19,["H6213"]]]},{"k":5689,"v":[[0,1,["H859"]],[1,2,["H5324"]],[2,4,["H3117"]],[4,5,["H3605"]],[5,8,["H6440"]],[8,10,["H3068"]],[10,12,["H430"]],[12,14,["H7218"]],[14,17,["H7626"]],[17,19,["H2205"]],[19,22,["H7860"]],[22,24,["H3605"]],[24,26,["H376"]],[26,28,["H3478"]]]},{"k":5690,"v":[[0,3,["H2945"]],[3,5,["H802"]],[5,8,["H1616"]],[8,9,["H834"]],[9,11,["H7130"]],[11,13,["H4264"]],[13,16,["H4480","H2404"]],[16,19,["H6086"]],[19,20,["H5704"]],[20,22,["H7579"]],[22,25,["H4325"]]]},{"k":5691,"v":[[0,4,["H5674"]],[4,6,["H1285"]],[6,9,["H3068"]],[9,11,["H430"]],[11,15,["H423"]],[15,16,["H834"]],[16,18,["H3068"]],[18,20,["H430"]],[20,21,["H3772"]],[21,22,["H5973"]],[22,25,["H3117"]]]},{"k":5692,"v":[[0,1,["H4616"]],[1,4,["H6965"]],[4,7,["H3117"]],[7,10,["H5971"]],[10,15,["H1931"]],[15,17,["H1961"]],[17,21,["H430"]],[21,22,["H834"]],[22,25,["H1696"]],[25,29,["H834"]],[29,32,["H7650"]],[32,35,["H1"]],[35,37,["H85"]],[37,39,["H3327"]],[39,42,["H3290"]]]},{"k":5693,"v":[[0,1,["H3808"]],[1,2,["H854"]],[2,4,["H905"]],[4,6,["H595"]],[6,7,["H3772","(H853)"]],[7,8,["H2063"]],[8,9,["H1285"]],[9,11,["H2063"]],[11,12,["H423"]]]},{"k":5694,"v":[[0,1,["H3588"]],[1,2,["H854"]],[2,4,["H834"]],[4,5,["H5975"]],[5,6,["H6311"]],[6,7,["H5973"]],[7,10,["H3117"]],[10,11,["H6440"]],[11,13,["H3068"]],[13,15,["H430"]],[15,18,["H854"]],[18,20,["H834"]],[20,22,["H369"]],[22,23,["H6311"]],[23,24,["H5973"]],[24,27,["H3117"]]]},{"k":5695,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,3,["H3045","(H853)"]],[3,4,["H834"]],[4,7,["H3427"]],[7,10,["H776"]],[10,12,["H4714"]],[12,14,["H834"]],[14,16,["H5674"]],[16,17,["H7130"]],[17,19,["H1471"]],[19,20,["H834"]],[20,23,["H5674"]]]},{"k":5696,"v":[[0,4,["H7200","(H853)"]],[4,6,["H8251"]],[6,9,["H1544"]],[9,10,["H6086"]],[10,12,["H68"]],[12,13,["H3701"]],[13,15,["H2091"]],[15,16,["H834"]],[16,18,["H5973"]],[18,19,[]]]},{"k":5697,"v":[[0,1,["H6435"]],[1,4,["H3426"]],[4,7,["H376"]],[7,8,["H176"]],[8,9,["H802"]],[9,10,["H176"]],[10,11,["H4940"]],[11,12,["H176"]],[12,13,["H7626"]],[13,14,["H834"]],[14,15,["H3824"]],[15,17,["H6437"]],[17,19,["H3117"]],[19,20,["H4480","H5973"]],[20,22,["H3068"]],[22,24,["H430"]],[24,26,["H1980"]],[26,28,["H5647","(H853)"]],[28,30,["H430"]],[30,32,["H1992"]],[32,33,["H1471"]],[33,34,["H6435"]],[34,37,["H3426"]],[37,41,["H8328"]],[41,43,["H6509"]],[43,44,["H7219"]],[44,46,["H3939"]]]},{"k":5698,"v":[[0,5,["H1961"]],[5,8,["H8085","(H853)"]],[8,10,["H1697"]],[10,12,["H2063"]],[12,13,["H423"]],[13,17,["H1288"]],[17,20,["H3824"]],[20,21,["H559"]],[21,24,["H1961"]],[24,25,["H7965"]],[25,26,["H3588"]],[26,28,["H1980"]],[28,31,["H8307"]],[31,34,["H3820"]],[34,35,["H4616"]],[35,36,["H5595"]],[36,37,["H7302"]],[37,38,["H854"]],[38,39,["H6771"]]]},{"k":5699,"v":[[0,2,["H3068"]],[2,3,["H14"]],[3,4,["H3808"]],[4,5,["H5545"]],[5,7,["H3588"]],[7,8,["H227"]],[8,10,["H639"]],[10,13,["H3068"]],[13,16,["H7068"]],[16,18,["H6225"]],[18,20,["H1931"]],[20,21,["H376"]],[21,23,["H3605"]],[23,25,["H423"]],[25,28,["H3789"]],[28,30,["H2088"]],[30,31,["H5612"]],[31,33,["H7257"]],[33,38,["H3068"]],[38,41,["H4229","(H853)"]],[41,43,["H8034"]],[43,45,["H4480","H8478"]],[45,46,["H8064"]]]},{"k":5700,"v":[[0,3,["H3068"]],[3,5,["H914"]],[5,8,["H7451"]],[8,11,["H4480","H3605"]],[11,13,["H7626"]],[13,15,["H3478"]],[15,18,["H3605"]],[18,20,["H423"]],[20,23,["H1285"]],[23,26,["H3789"]],[26,28,["H2088"]],[28,29,["H5612"]],[29,32,["H8451"]]]},{"k":5701,"v":[[0,4,["H1755"]],[4,6,["H314"]],[6,9,["H1121"]],[9,10,["H834"]],[10,13,["H6965"]],[13,14,["H4480","H310"]],[14,18,["H5237"]],[18,19,["H834"]],[19,21,["H935"]],[21,24,["H7350"]],[24,25,["H4480","H776"]],[25,27,["H559"]],[27,30,["H7200","(H853)"]],[30,32,["H4347"]],[32,34,["H1931"]],[34,35,["H776"]],[35,38,["H8463"]],[38,39,["H834"]],[39,41,["H3068"]],[41,43,["H2470"]],[43,45,[]]]},{"k":5702,"v":[[0,4,["H3605"]],[4,5,["H776"]],[5,8,["H1614"]],[8,10,["H4417"]],[10,12,["H8316"]],[12,16,["H3808"]],[16,17,["H2232"]],[17,18,["H3808"]],[18,19,["H6779"]],[19,20,["H3808"]],[20,21,["H3605"]],[21,22,["H6212"]],[22,23,["H5927"]],[23,27,["H4114"]],[27,29,["H5467"]],[29,31,["H6017"]],[31,32,["H126"]],[32,34,["H6636"]],[34,35,["H834"]],[35,37,["H3068"]],[37,38,["H2015"]],[38,41,["H639"]],[41,45,["H2534"]]]},{"k":5703,"v":[[0,2,["H3605"]],[2,3,["H1471"]],[3,5,["H559"]],[5,6,["H5921","H4100"]],[6,9,["H3068"]],[9,10,["H6213"]],[10,11,["H3602"]],[11,13,["H2063"]],[13,14,["H776"]],[14,15,["H4100"]],[15,18,["H2750"]],[18,20,["H2088"]],[20,21,["H1419"]],[21,22,["H639"]]]},{"k":5704,"v":[[0,4,["H559"]],[4,5,["H5921","H834"]],[5,8,["H5800","(H853)"]],[8,10,["H1285"]],[10,13,["H3068"]],[13,14,["H430"]],[14,17,["H1"]],[17,18,["H834"]],[18,20,["H3772"]],[20,21,["H5973"]],[21,27,["H3318","(H853)"]],[27,31,["H4480","H776"]],[31,33,["H4714"]]]},{"k":5705,"v":[[0,3,["H1980"]],[3,5,["H5647"]],[5,6,["H312"]],[6,7,["H430"]],[7,9,["H7812"]],[9,11,["H430"]],[11,12,["H834"]],[12,14,["H3045"]],[14,15,["H3808"]],[15,20,["H3808"]],[20,21,["H2505"]],[21,23,[]]]},{"k":5706,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,10,["H1931"]],[10,11,["H776"]],[11,13,["H935"]],[13,14,["H5921"]],[14,15,["(H853)"]],[15,16,["H3605"]],[16,18,["H7045"]],[18,21,["H3789"]],[21,23,["H2088"]],[23,24,["H5612"]]]},{"k":5707,"v":[[0,3,["H3068"]],[3,6,["H5428"]],[6,7,["H4480","H5921"]],[7,9,["H127"]],[9,11,["H639"]],[11,14,["H2534"]],[14,17,["H1419"]],[17,18,["H7110"]],[18,20,["H7993"]],[20,22,["H413"]],[22,23,["H312"]],[23,24,["H776"]],[24,28,["H2088"]],[28,29,["H3117"]]]},{"k":5708,"v":[[0,2,["H5641"]],[2,7,["H3068"]],[7,9,["H430"]],[9,15,["H1540"]],[15,22,["H1121"]],[22,24,["H5704","H5769"]],[24,28,["H6213","(H853)"]],[28,29,["H3605"]],[29,31,["H1697"]],[31,33,["H2063"]],[33,34,["H8451"]]]},{"k":5709,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,8,["H3605"]],[8,9,["H428"]],[9,10,["H1697"]],[10,12,["H935"]],[12,13,["H5921"]],[13,16,["H1293"]],[16,19,["H7045"]],[19,20,["H834"]],[20,23,["H5414"]],[23,24,["H6440"]],[24,29,["H7725"]],[29,31,["H413"]],[31,32,["H3824"]],[32,34,["H3605"]],[34,36,["H1471"]],[36,37,["H834","H8033"]],[37,39,["H3068"]],[39,41,["H430"]],[41,43,["H5080"]],[43,44,[]]]},{"k":5710,"v":[[0,3,["H7725"]],[3,4,["H5704"]],[4,6,["H3068"]],[6,8,["H430"]],[8,11,["H8085"]],[11,13,["H6963"]],[13,16,["H3605"]],[16,17,["H834"]],[17,18,["H595"]],[18,19,["H6680"]],[19,22,["H3117"]],[22,23,["H859"]],[23,26,["H1121"]],[26,28,["H3605"]],[28,30,["H3824"]],[30,33,["H3605"]],[33,35,["H5315"]]]},{"k":5711,"v":[[0,4,["H3068"]],[4,6,["H430"]],[6,8,["H7725","(H853)"]],[8,10,["H7622"]],[10,13,["H7355"]],[13,18,["H7725"]],[18,20,["H6908"]],[20,23,["H4480","H3605"]],[23,25,["H5971"]],[25,26,["H834","H8033"]],[26,28,["H3068"]],[28,30,["H430"]],[30,32,["H6327"]],[32,33,[]]]},{"k":5712,"v":[[0,1,["H518"]],[1,5,["H1961"]],[5,7,["H5080"]],[7,10,["H7097"]],[10,13,["H8064"]],[13,15,["H4480","H8033"]],[15,18,["H3068"]],[18,20,["H430"]],[20,21,["H6908"]],[21,25,["H4480","H8033"]],[25,28,["H3947"]],[28,29,[]]]},{"k":5713,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,7,["H935"]],[7,9,["H413"]],[9,11,["H776"]],[11,12,["H834"]],[12,14,["H1"]],[14,15,["H3423"]],[15,19,["H3423"]],[19,26,["H3190"]],[26,28,["H7235"]],[28,32,["H4480","H1"]]]},{"k":5714,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,7,["H4135","(H853)"]],[7,9,["H3824"]],[9,12,["H3824"]],[12,15,["H2233"]],[15,17,["H157","(H853)"]],[17,19,["H3068"]],[19,21,["H430"]],[21,23,["H3605"]],[23,25,["H3824"]],[25,28,["H3605"]],[28,30,["H5315"]],[30,31,["H4616"]],[31,34,["H2416"]]]},{"k":5715,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,7,["H5414","(H853)"]],[7,8,["H3605"]],[8,9,["H428"]],[9,10,["H423"]],[10,11,["H5921"]],[11,13,["H341"]],[13,15,["H5921"]],[15,18,["H8130"]],[18,20,["H834"]],[20,21,["H7291"]],[21,22,[]]]},{"k":5716,"v":[[0,2,["H859"]],[2,4,["H7725"]],[4,6,["H8085"]],[6,8,["H6963"]],[8,11,["H3068"]],[11,13,["H6213","(H853)"]],[13,14,["H3605"]],[14,16,["H4687"]],[16,17,["H834"]],[17,18,["H595"]],[18,19,["H6680"]],[19,22,["H3117"]]]},{"k":5717,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,9,["H3498"]],[9,11,["H3605"]],[11,12,["H4639"]],[12,15,["H3027"]],[15,18,["H6529"]],[18,21,["H990"]],[21,25,["H6529"]],[25,28,["H929"]],[28,32,["H6529"]],[32,35,["H127"]],[35,37,["H2896"]],[37,38,["H3588"]],[38,40,["H3068"]],[40,42,["H7725"]],[42,43,["H7797"]],[43,44,["H5921"]],[44,47,["H2896"]],[47,48,["H834"]],[48,50,["H7797"]],[50,51,["H5921"]],[51,53,["H1"]]]},{"k":5718,"v":[[0,1,["H3588"]],[1,4,["H8085"]],[4,7,["H6963"]],[7,10,["H3068"]],[10,12,["H430"]],[12,14,["H8104"]],[14,16,["H4687"]],[16,19,["H2708"]],[19,22,["H3789"]],[22,24,["H2088"]],[24,25,["H5612"]],[25,28,["H8451"]],[28,30,["H3588"]],[30,32,["H7725"]],[32,33,["H413"]],[33,35,["H3068"]],[35,37,["H430"]],[37,39,["H3605"]],[39,41,["H3824"]],[41,44,["H3605"]],[44,46,["H5315"]]]},{"k":5719,"v":[[0,1,["H3588"]],[1,2,["H2063"]],[2,3,["H4687"]],[3,4,["H834"]],[4,5,["H595"]],[5,6,["H6680"]],[6,9,["H3117"]],[9,10,["H1931"]],[10,12,["H3808"]],[12,13,["H6381"]],[13,14,["H4480"]],[14,16,["H3808"]],[16,18,["H1931"]],[18,20,["H7350"]]]},{"k":5720,"v":[[0,1,["H1931"]],[1,3,["H3808"]],[3,5,["H8064"]],[5,9,["H559"]],[9,10,["H4310"]],[10,13,["H5927"]],[13,17,["H8064"]],[17,19,["H3947"]],[19,26,["H8085"]],[26,29,["H6213"]],[29,30,[]]]},{"k":5721,"v":[[0,1,["H3808"]],[1,3,["H1931"]],[3,4,["H4480","H5676"]],[4,6,["H3220"]],[6,10,["H559"]],[10,11,["H4310"]],[11,13,["H5674"]],[13,14,["H413","H5676"]],[14,16,["H3220"]],[16,20,["H3947"]],[20,27,["H8085"]],[27,30,["H6213"]],[30,31,[]]]},{"k":5722,"v":[[0,1,["H3588"]],[1,3,["H1697"]],[3,5,["H3966"]],[5,6,["H7138"]],[6,7,["H413"]],[7,11,["H6310"]],[11,15,["H3824"]],[15,19,["H6213"]],[19,20,[]]]},{"k":5723,"v":[[0,1,["H7200"]],[1,4,["H5414"]],[4,5,["H6440"]],[5,8,["H3117","(H853)"]],[8,9,["H2416"]],[9,11,["H2896"]],[11,13,["H4194"]],[13,15,["H7451"]]]},{"k":5724,"v":[[0,2,["H834"]],[2,3,["H595"]],[3,4,["H6680"]],[4,7,["H3117"]],[7,9,["H157","(H853)"]],[9,11,["H3068"]],[11,13,["H430"]],[13,15,["H1980"]],[15,18,["H1870"]],[18,21,["H8104"]],[21,23,["H4687"]],[23,26,["H2708"]],[26,29,["H4941"]],[29,33,["H2421"]],[33,35,["H7235"]],[35,38,["H3068"]],[38,40,["H430"]],[40,42,["H1288"]],[42,46,["H776"]],[46,47,["H834","H8033"]],[47,48,["H859"]],[48,49,["H935"]],[49,51,["H3423"]],[51,52,[]]]},{"k":5725,"v":[[0,2,["H518"]],[2,4,["H3824"]],[4,6,["H6437"]],[6,11,["H3808"]],[11,12,["H8085"]],[12,17,["H5080"]],[17,19,["H7812"]],[19,20,["H312"]],[20,21,["H430"]],[21,23,["H5647"]],[23,24,[]]]},{"k":5726,"v":[[0,2,["H5046"]],[2,6,["H3117"]],[6,7,["H3588"]],[7,11,["H6","H6"]],[11,16,["H3808"]],[16,17,["H748"]],[17,19,["H3117"]],[19,20,["H5921"]],[20,22,["H127"]],[22,23,["H834","H8033"]],[23,24,["H859"]],[24,26,["H5674","(H853)"]],[26,27,["H3383"]],[27,29,["H935"]],[29,31,["H3423"]],[31,32,[]]]},{"k":5727,"v":[[0,2,["H5749","(H853)"]],[2,3,["H8064"]],[3,5,["H776"]],[5,9,["H3117"]],[9,15,["H5414"]],[15,16,["H6440"]],[16,18,["H2416"]],[18,20,["H4194"]],[20,21,["H1293"]],[21,23,["H7045"]],[23,25,["H977"]],[25,26,["H2416"]],[26,27,["H4616"]],[27,29,["H859"]],[29,32,["H2233"]],[32,34,["H2421"]]]},{"k":5728,"v":[[0,4,["H157","(H853)"]],[4,6,["H3068"]],[6,8,["H430"]],[8,13,["H8085"]],[13,15,["H6963"]],[15,20,["H1692"]],[20,23,["H3588"]],[23,24,["H1931"]],[24,27,["H2416"]],[27,30,["H753"]],[30,33,["H3117"]],[33,37,["H3427"]],[37,38,["H5921"]],[38,40,["H127"]],[40,41,["H834"]],[41,43,["H3068"]],[43,44,["H7650"]],[44,47,["H1"]],[47,49,["H85"]],[49,51,["H3327"]],[51,54,["H3290"]],[54,56,["H5414"]],[56,57,[]]]},{"k":5729,"v":[[0,2,["H4872"]],[2,3,["H1980"]],[3,5,["H1696","(H853)"]],[5,6,["H428"]],[6,7,["H1697"]],[7,8,["H413"]],[8,9,["H3605"]],[9,10,["H3478"]]]},{"k":5730,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H595"]],[6,9,["H3967"]],[9,11,["H6242"]],[11,12,["H8141"]],[12,13,["H1121"]],[13,15,["H3117"]],[15,17,["H3201"]],[17,18,["H3808"]],[18,19,["H5750"]],[19,21,["H3318"]],[21,24,["H935"]],[24,27,["H3068"]],[27,29,["H559"]],[29,30,["H413"]],[30,34,["H3808"]],[34,36,["H5674","(H853)"]],[36,37,["H2088"]],[37,38,["H3383"]]]},{"k":5731,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,5,["H1931"]],[5,8,["H5674"]],[8,9,["H6440"]],[9,12,["H1931"]],[12,14,["H8045","(H853)"]],[14,15,["H428"]],[15,16,["H1471"]],[16,18,["H4480","H6440"]],[18,23,["H3423"]],[23,26,["H3091"]],[26,27,["H1931"]],[27,30,["H5674"]],[30,31,["H6440"]],[31,33,["H834"]],[33,35,["H3068"]],[35,37,["H1696"]]]},{"k":5732,"v":[[0,3,["H3068"]],[3,5,["H6213"]],[5,8,["H834"]],[8,10,["H6213"]],[10,12,["H5511"]],[12,15,["H5747"]],[15,16,["H4428"]],[16,19,["H567"]],[19,23,["H776"]],[23,26,["H834","(H853)"]],[26,28,["H8045"]]]},{"k":5733,"v":[[0,3,["H3068"]],[3,7,["H5414"]],[7,10,["H6440"]],[10,14,["H6213"]],[14,19,["H3605"]],[19,21,["H4687"]],[21,22,["H834"]],[22,25,["H6680"]],[25,26,[]]]},{"k":5734,"v":[[0,2,["H2388"]],[2,7,["H553"]],[7,8,["H3372"]],[8,9,["H408"]],[9,10,["H408"]],[10,12,["H6206"]],[12,13,["H4480","H6440"]],[13,15,["H3588"]],[15,17,["H3068"]],[17,19,["H430"]],[19,20,["H1931"]],[20,25,["H1980"]],[25,26,["H5973"]],[26,30,["H3808"]],[30,31,["H7503"]],[31,33,["H3808"]],[33,34,["H5800"]],[34,35,[]]]},{"k":5735,"v":[[0,2,["H4872"]],[2,3,["H7121"]],[3,5,["H3091"]],[5,7,["H559"]],[7,8,["H413"]],[8,12,["H5869"]],[12,14,["H3605"]],[14,15,["H3478"]],[15,17,["H2388"]],[17,22,["H553"]],[22,23,["H3588"]],[23,24,["H859"]],[24,26,["H935"]],[26,27,["H854"]],[27,28,["H2088"]],[28,29,["H5971"]],[29,30,["H413"]],[30,32,["H776"]],[32,33,["H834"]],[33,35,["H3068"]],[35,37,["H7650"]],[37,40,["H1"]],[40,42,["H5414"]],[42,45,["H859"]],[45,50,["H5157"]],[50,51,[]]]},{"k":5736,"v":[[0,3,["H3068"]],[3,4,["H1931"]],[4,9,["H1980"]],[9,10,["H6440"]],[10,12,["H1931"]],[12,14,["H1961"]],[14,16,["H5973"]],[16,19,["H3808"]],[19,20,["H7503"]],[20,22,["H3808"]],[22,23,["H5800"]],[23,25,["H3372"]],[25,26,["H3808"]],[26,27,["H3808"]],[27,29,["H2865"]]]},{"k":5737,"v":[[0,2,["H4872"]],[2,3,["H3789","(H853)"]],[3,4,["H2063"]],[4,5,["H8451"]],[5,7,["H5414"]],[7,9,["H413"]],[9,11,["H3548"]],[11,13,["H1121"]],[13,15,["H3878"]],[15,17,["H5375","(H853)"]],[17,19,["H727"]],[19,22,["H1285"]],[22,25,["H3068"]],[25,27,["H413"]],[27,28,["H3605"]],[28,30,["H2205"]],[30,32,["H3478"]]]},{"k":5738,"v":[[0,2,["H4872"]],[2,3,["H6680"]],[3,5,["H559"]],[5,8,["H4480","H7093"]],[8,11,["H7651"]],[11,12,["H8141"]],[12,15,["H4150"]],[15,18,["H8141"]],[18,20,["H8059"]],[20,23,["H2282"]],[23,25,["H5521"]]]},{"k":5739,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,5,["H935"]],[5,7,["H7200","(H853)"]],[7,8,["H6440"]],[8,10,["H3068"]],[10,12,["H430"]],[12,15,["H4725"]],[15,16,["H834"]],[16,19,["H977"]],[19,22,["H7121","(H853)"]],[22,23,["H2063"]],[23,24,["H8451"]],[24,25,["H5048"]],[25,26,["H3605"]],[26,27,["H3478"]],[27,30,["H241"]]]},{"k":5740,"v":[[0,4,["H6950","(H853)","H5971"]],[4,5,["H376"]],[5,7,["H802"]],[7,9,["H2945"]],[9,12,["H1616"]],[12,13,["H834"]],[13,17,["H8179"]],[17,18,["H4616"]],[18,21,["H8085"]],[21,23,["H4616"]],[23,26,["H3925"]],[26,28,["H3372","(H853)"]],[28,30,["H3068"]],[30,32,["H430"]],[32,34,["H8104"]],[34,36,["H6213","(H853)"]],[36,37,["H3605"]],[37,39,["H1697"]],[39,41,["H2063"]],[41,42,["H8451"]]]},{"k":5741,"v":[[0,4,["H1121"]],[4,5,["H834"]],[5,7,["H3808"]],[7,8,["H3045"]],[8,12,["H8085"]],[12,14,["H3925"]],[14,16,["H3372","(H853)"]],[16,18,["H3068"]],[18,20,["H430"]],[20,23,["H3605","H3117","H834"]],[23,24,["H859"]],[24,25,["H2416"]],[25,26,["H5921"]],[26,28,["H127"]],[28,29,["H834","H8033"]],[29,30,["H859"]],[30,32,["H5674","(H853)"]],[32,33,["H3383"]],[33,35,["H3423"]],[35,36,[]]]},{"k":5742,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H2005"]],[7,9,["H3117"]],[9,10,["H7126"]],[10,14,["H4191"]],[14,15,["H7121","(H853)"]],[15,16,["H3091"]],[16,19,["H3320"]],[19,22,["H168"]],[22,25,["H4150"]],[25,32,["H6680"]],[32,34,["H4872"]],[34,36,["H3091"]],[36,37,["H1980"]],[37,40,["H3320"]],[40,43,["H168"]],[43,46,["H4150"]]]},{"k":5743,"v":[[0,3,["H3068"]],[3,4,["H7200"]],[4,7,["H168"]],[7,10,["H5982"]],[10,13,["H6051"]],[13,16,["H5982"]],[16,19,["H6051"]],[19,20,["H5975"]],[20,21,["H5921"]],[21,23,["H6607"]],[23,26,["H168"]]]},{"k":5744,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H2009"]],[7,10,["H7901"]],[10,11,["H5973"]],[11,13,["H1"]],[13,15,["H2088"]],[15,16,["H5971"]],[16,19,["H6965"]],[19,23,["H2181"]],[23,24,["H310"]],[24,26,["H430"]],[26,29,["H5236"]],[29,32,["H776"]],[32,33,["H834","H8033"]],[33,34,["H1931"]],[34,35,["H935"]],[35,38,["H7130"]],[38,42,["H5800"]],[42,45,["H6565","(H853)"]],[45,47,["H1285"]],[47,48,["H834"]],[48,51,["H3772"]],[51,52,["H854"]],[52,53,[]]]},{"k":5745,"v":[[0,3,["H639"]],[3,6,["H2734"]],[6,10,["H1931"]],[10,11,["H3117"]],[11,15,["H5800"]],[15,20,["H5641"]],[20,22,["H6440"]],[22,23,["H4480"]],[23,28,["H1961"]],[28,29,["H398"]],[29,31,["H7227"]],[31,32,["H7451"]],[32,34,["H6869"]],[34,36,["H4672"]],[36,42,["H559"]],[42,44,["H1931"]],[44,45,["H3117"]],[45,47,["H3808"]],[47,48,["H428"]],[48,49,["H7451"]],[49,51,["H4672"]],[51,53,["H5921","H3588"]],[53,55,["H430"]],[55,57,["H369"]],[57,58,["H7130"]],[58,59,[]]]},{"k":5746,"v":[[0,2,["H595"]],[2,5,["H5641","H5641"]],[5,7,["H6440"]],[7,9,["H1931"]],[9,10,["H3117"]],[10,11,["H5921"]],[11,12,["H3605"]],[12,14,["H7451"]],[14,15,["H834"]],[15,19,["H6213"]],[19,21,["H3588"]],[21,24,["H6437"]],[24,25,["H413"]],[25,26,["H312"]],[26,27,["H430"]]]},{"k":5747,"v":[[0,1,["H6258"]],[1,3,["H3789","(H853)"]],[3,5,["H2063"]],[5,6,["H7892"]],[6,10,["H3925"]],[10,11,["(H853)"]],[11,13,["H1121"]],[13,15,["H3478"]],[15,16,["H7760"]],[16,20,["H6310"]],[20,21,["H4616"]],[21,22,["H2063"]],[22,23,["H7892"]],[23,25,["H1961"]],[25,27,["H5707"]],[27,32,["H1121"]],[32,34,["H3478"]]]},{"k":5748,"v":[[0,1,["H3588"]],[1,6,["H935"]],[6,8,["H413"]],[8,10,["H127"]],[10,11,["H834"]],[11,13,["H7650"]],[13,16,["H1"]],[16,18,["H2100"]],[18,20,["H2461"]],[20,22,["H1706"]],[22,27,["H398"]],[27,30,["H7646"]],[30,33,["H1878"]],[33,37,["H6437"]],[37,38,["H413"]],[38,39,["H312"]],[39,40,["H430"]],[40,42,["H5647"]],[42,45,["H5006"]],[45,48,["H6565","(H853)"]],[48,50,["H1285"]]]},{"k":5749,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,8,["H7227"]],[8,9,["H7451"]],[9,11,["H6869"]],[11,13,["H4672"]],[13,16,["H2063"]],[16,17,["H7892"]],[17,19,["H6030"]],[19,20,["H6440"]],[20,24,["H5707"]],[24,25,["H3588"]],[25,28,["H3808"]],[28,30,["H7911"]],[30,34,["H4480","H6310"]],[34,37,["H2233"]],[37,38,["H3588"]],[38,40,["H3045","(H853)"]],[40,42,["H3336"]],[42,43,["H834"]],[43,44,["H1931"]],[44,46,["H6213"]],[46,48,["H3117"]],[48,49,["H2962"]],[49,52,["H935"]],[52,54,["H413"]],[54,56,["H776"]],[56,57,["H834"]],[57,59,["H7650"]]]},{"k":5750,"v":[[0,1,["H4872"]],[1,3,["H3789","(H853)"]],[3,4,["H2063"]],[4,5,["H7892"]],[5,7,["H1931"]],[7,8,["H3117"]],[8,10,["H3925"]],[10,11,["(H853)"]],[11,13,["H1121"]],[13,15,["H3478"]]]},{"k":5751,"v":[[0,3,["H6680","(H853)"]],[3,4,["H3091"]],[4,6,["H1121"]],[6,8,["H5126"]],[8,12,["H559"]],[12,14,["H2388"]],[14,19,["H553"]],[19,20,["H3588"]],[20,21,["H859"]],[21,23,["H935","(H853)"]],[23,25,["H1121"]],[25,27,["H3478"]],[27,28,["H413"]],[28,30,["H776"]],[30,31,["H834"]],[31,33,["H7650"]],[33,37,["H595"]],[37,39,["H1961"]],[39,40,["H5973"]],[40,41,[]]]},{"k":5752,"v":[[0,5,["H1961"]],[5,7,["H4872"]],[7,11,["H3615"]],[11,13,["H3789","(H853)"]],[13,15,["H1697"]],[15,17,["H2063"]],[17,18,["H8451"]],[18,19,["H5921"]],[19,21,["H5612"]],[21,22,["H5704"]],[22,25,["H8552"]]]},{"k":5753,"v":[[0,2,["H4872"]],[2,3,["H6680","(H853)"]],[3,5,["H3881"]],[5,7,["H5375"]],[7,9,["H727"]],[9,12,["H1285"]],[12,15,["H3068"]],[15,16,["H559"]]]},{"k":5754,"v":[[0,1,["H3947","(H853)"]],[1,2,["H2088"]],[2,3,["H5612"]],[3,6,["H8451"]],[6,8,["H7760"]],[8,12,["H4480","H6654"]],[12,15,["H727"]],[15,18,["H1285"]],[18,21,["H3068"]],[21,23,["H430"]],[23,27,["H1961"]],[27,28,["H8033"]],[28,31,["H5707"]],[31,33,[]]]},{"k":5755,"v":[[0,1,["H3588"]],[1,2,["H595"]],[2,3,["H3045","(H853)"]],[3,5,["H4805"]],[5,8,["H7186"]],[8,9,["H6203"]],[9,10,["H2005"]],[10,14,["H5750"]],[14,15,["H2416"]],[15,16,["H5973"]],[16,19,["H3117"]],[19,22,["H1961"]],[22,23,["H4784"]],[23,24,["H5973"]],[24,26,["H3068"]],[26,28,["H3588"]],[28,30,["H637"]],[30,31,["H310"]],[31,33,["H4194"]]]},{"k":5756,"v":[[0,1,["H6950"]],[1,2,["H413"]],[2,3,["(H853)"]],[3,4,["H3605"]],[4,6,["H2205"]],[6,9,["H7626"]],[9,12,["H7860"]],[12,16,["H1696","(H853)"]],[16,17,["H428"]],[17,18,["H1697"]],[18,21,["H241"]],[21,23,["H5749","(H853)"]],[23,24,["H8064"]],[24,26,["H776"]],[26,30,[]]]},{"k":5757,"v":[[0,1,["H3588"]],[1,3,["H3045"]],[3,5,["H310"]],[5,7,["H4194"]],[7,11,["H7843","H7843"]],[11,15,["H5493"]],[15,16,["H4480"]],[16,18,["H1870"]],[18,19,["H834"]],[19,22,["H6680"]],[22,25,["H7451"]],[25,27,["H7122"]],[27,31,["H319"]],[31,32,["H3117"]],[32,33,["H3588"]],[33,36,["H6213","(H853)"]],[36,37,["H7451"]],[37,40,["H5869"]],[40,43,["H3068"]],[43,48,["H3707"]],[48,51,["H4639"]],[51,54,["H3027"]]]},{"k":5758,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,6,["H241"]],[6,8,["H3605"]],[8,10,["H6951"]],[10,12,["H3478","(H853)"]],[12,14,["H1697"]],[14,16,["H2063"]],[16,17,["H7892"]],[17,18,["H5704"]],[18,21,["H8552"]]]},{"k":5759,"v":[[0,2,["H238"]],[2,5,["H8064"]],[5,9,["H1696"]],[9,11,["H8085"]],[11,13,["H776"]],[13,15,["H561"]],[15,18,["H6310"]]]},{"k":5760,"v":[[0,2,["H3948"]],[2,4,["H6201"]],[4,7,["H4306"]],[7,9,["H565"]],[9,11,["H5140"]],[11,14,["H2919"]],[14,18,["H8164"]],[18,19,["H5921"]],[19,22,["H1877"]],[22,26,["H7241"]],[26,27,["H5921"]],[27,29,["H6212"]]]},{"k":5761,"v":[[0,1,["H3588"]],[1,4,["H7121"]],[4,6,["H8034"]],[6,9,["H3068"]],[9,10,["H3051"]],[10,12,["H1433"]],[12,15,["H430"]]]},{"k":5762,"v":[[0,4,["H6697"]],[4,6,["H6467"]],[6,8,["H8549"]],[8,9,["H3588"]],[9,10,["H3605"]],[10,12,["H1870"]],[12,14,["H4941"]],[14,16,["H410"]],[16,18,["H530"]],[18,20,["H369"]],[20,21,["H5766"]],[21,22,["H6662"]],[22,24,["H3477"]],[24,26,["H1931"]]]},{"k":5763,"v":[[0,3,["H7843"]],[3,6,["H3971"]],[6,8,["H3808"]],[8,13,["H1121"]],[13,17,["H6141"]],[17,19,["H6618"]],[19,20,["H1755"]]]},{"k":5764,"v":[[0,3,["H2063"]],[3,4,["H1580"]],[4,6,["H3068"]],[6,8,["H5036"]],[8,9,["H5971"]],[9,11,["H3808","H2450"]],[11,13,["H3808"]],[13,14,["H1931"]],[14,16,["H1"]],[16,19,["H7069"]],[19,22,["H1931"]],[22,24,["H6213"]],[24,27,["H3559"]],[27,28,[]]]},{"k":5765,"v":[[0,1,["H2142"]],[1,3,["H3117"]],[3,5,["H5769"]],[5,6,["H995"]],[6,8,["H8141"]],[8,11,["H1755","H1755"]],[11,12,["H7592"]],[12,14,["H1"]],[14,18,["H5046"]],[18,21,["H2205"]],[21,25,["H559"]],[25,26,[]]]},{"k":5766,"v":[[0,4,["H5945"]],[4,5,["H5157"]],[5,8,["H1471"]],[8,13,["H6504"]],[13,15,["H1121"]],[15,17,["H120"]],[17,19,["H5324"]],[19,21,["H1367"]],[21,24,["H5971"]],[24,28,["H4557"]],[28,31,["H1121"]],[31,33,["H3478"]]]},{"k":5767,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,4,["H2506"]],[4,7,["H5971"]],[7,8,["H3290"]],[8,11,["H2256"]],[11,14,["H5159"]]]},{"k":5768,"v":[[0,2,["H4672"]],[2,6,["H4057"]],[6,7,["H776"]],[7,11,["H8414"]],[11,12,["H3214"]],[12,13,["H3452"]],[13,17,["H5437"]],[17,19,["H995"]],[19,22,["H5341"]],[22,26,["H380"]],[26,29,["H5869"]]]},{"k":5769,"v":[[0,3,["H5404"]],[3,5,["H5782"]],[5,7,["H7064"]],[7,8,["H7363"]],[8,9,["H5921"]],[9,11,["H1469"]],[11,13,["H6566"]],[13,15,["H3671"]],[15,16,["H3947"]],[16,18,["H5375"]],[18,20,["H5921"]],[20,22,["H84"]]]},{"k":5770,"v":[[0,3,["H3068"]],[3,4,["H910"]],[4,6,["H5148"]],[6,11,["H369"]],[11,12,["H5236"]],[12,13,["H410"]],[13,14,["H5973"]],[14,15,[]]]},{"k":5771,"v":[[0,4,["H7392"]],[4,5,["H5921"]],[5,8,["H1116"]],[8,11,["H776"]],[11,15,["H398"]],[15,17,["H8570"]],[17,20,["H7704"]],[20,26,["H3243"]],[26,27,["H1706"]],[27,31,["H4480","H5553"]],[31,33,["H8081"]],[33,37,["H4480","H2496"]],[37,38,["H6697"]]]},{"k":5772,"v":[[0,1,["H2529"]],[1,3,["H1241"]],[3,5,["H2461"]],[5,7,["H6629"]],[7,8,["H5973"]],[8,9,["H2459"]],[9,11,["H3733"]],[11,13,["H352"]],[13,16,["H1121"]],[16,18,["H1316"]],[18,20,["H6260"]],[20,21,["H5973"]],[21,23,["H2459"]],[23,25,["H3629"]],[25,27,["H2406"]],[27,31,["H8354"]],[31,33,["H2561"]],[33,34,["H1818"]],[34,37,["H6025"]]]},{"k":5773,"v":[[0,2,["H3484"]],[2,4,["H8080"]],[4,6,["H1163"]],[6,10,["H8080"]],[10,14,["H5666"]],[14,17,["H3780"]],[17,22,["H5203"]],[22,23,["H433"]],[23,25,["H6213"]],[25,29,["H5034"]],[29,31,["H6697"]],[31,34,["H3444"]]]},{"k":5774,"v":[[0,5,["H7065"]],[5,7,["H2114"]],[7,10,["H8441"]],[10,15,["H3707"]]]},{"k":5775,"v":[[0,2,["H2076"]],[2,4,["H7700"]],[4,5,["H3808"]],[5,7,["H433"]],[7,9,["H430"]],[9,12,["H3045"]],[12,13,["H3808"]],[13,15,["H2319"]],[15,18,["H935"]],[18,20,["H4480","H7138"]],[20,23,["H1"]],[23,24,["H8175"]],[24,25,["H3808"]]]},{"k":5776,"v":[[0,3,["H6697"]],[3,5,["H3205"]],[5,9,["H7876"]],[9,12,["H7911"]],[12,13,["H410"]],[13,15,["H2342"]],[15,16,[]]]},{"k":5777,"v":[[0,4,["H3068"]],[4,5,["H7200"]],[5,8,["H5006"]],[8,13,["H4480","H3708"]],[13,16,["H1121"]],[16,20,["H1323"]]]},{"k":5778,"v":[[0,3,["H559"]],[3,6,["H5641"]],[6,8,["H6440"]],[8,9,["H4480"]],[9,13,["H7200"]],[13,14,["H4100"]],[14,16,["H319"]],[16,19,["H3588"]],[19,20,["H1992"]],[20,24,["H8419"]],[24,25,["H1755"]],[25,26,["H1121"]],[26,30,["H3808"]],[30,31,["H529"]]]},{"k":5779,"v":[[0,1,["H1992"]],[1,6,["H7065"]],[6,11,["H3808"]],[11,12,["H410"]],[12,18,["H3707"]],[18,21,["H1892"]],[21,23,["H589"]],[23,28,["H7065"]],[28,33,["H3808"]],[33,35,["H5971"]],[35,41,["H3707"]],[41,44,["H5036"]],[44,45,["H1471"]]]},{"k":5780,"v":[[0,1,["H3588"]],[1,3,["H784"]],[3,5,["H6919"]],[5,8,["H639"]],[8,11,["H3344"]],[11,12,["H5704"]],[12,14,["H8482"]],[14,15,["H7585"]],[15,18,["H398"]],[18,20,["H776"]],[20,23,["H2981"]],[23,27,["H3857"]],[27,29,["H4146"]],[29,32,["H2022"]]]},{"k":5781,"v":[[0,3,["H5595"]],[3,4,["H7451"]],[4,5,["H5921"]],[5,9,["H3615"]],[9,11,["H2671"]],[11,13,[]]]},{"k":5782,"v":[[0,4,["H4198"]],[4,6,["H7458"]],[6,8,["H3898"]],[8,11,["H7565"]],[11,14,["H4815"]],[14,15,["H6986"]],[15,19,["H7971"]],[19,21,["H8127"]],[21,23,["H929"]],[23,26,["H5973"]],[26,28,["H2534"]],[28,30,["H2119"]],[30,33,["H6083"]]]},{"k":5783,"v":[[0,2,["H2719"]],[2,3,["H4480","H2351"]],[3,5,["H367"]],[5,6,["H4480","H2315"]],[6,8,["H7921"]],[8,9,["H1571"]],[9,12,["H970"]],[12,13,["H1571"]],[13,15,["H1330"]],[15,17,["H3243"]],[17,19,["H5973"]],[19,21,["H376"]],[21,24,["H7872"]]]},{"k":5784,"v":[[0,2,["H559"]],[2,8,["H6284"]],[8,13,["H2143"]],[13,17,["H7673"]],[17,20,["H4480","H376"]]]},{"k":5785,"v":[[0,4,["H3884"]],[4,6,["H1481"]],[6,8,["H3708"]],[8,11,["H341"]],[11,12,["H6435"]],[12,14,["H6862"]],[14,18,["H5234"]],[18,20,["H6435"]],[20,23,["H559"]],[23,25,["H3027"]],[25,27,["H7311"]],[27,30,["H3068"]],[30,32,["H3808"]],[32,33,["H6466"]],[33,34,["H3605"]],[34,35,["H2063"]]]},{"k":5786,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,5,["H1471"]],[5,6,["H6"]],[6,8,["H6098"]],[8,9,["H369"]],[9,13,["H8394"]],[13,15,[]]]},{"k":5787,"v":[[0,2,["H3863"]],[2,5,["H2449"]],[5,8,["H7919"]],[8,9,["H2063"]],[9,13,["H995"]],[13,16,["H319"]]]},{"k":5788,"v":[[0,1,["H349"]],[1,3,["H259"]],[3,4,["H7291"]],[4,6,["H505"]],[6,8,["H8147"]],[8,9,["H5127"]],[9,11,["H7233"]],[11,13,["H5127"]],[13,14,["H518","H3808","H3588"]],[14,16,["H6697"]],[16,18,["H4376"]],[18,22,["H3068"]],[22,26,["H5462"]]]},{"k":5789,"v":[[0,1,["H3588"]],[1,3,["H6697"]],[3,5,["H3808"]],[5,8,["H6697"]],[8,11,["H341"]],[11,14,["H6414"]]]},{"k":5790,"v":[[0,1,["H3588"]],[1,3,["H1612"]],[3,7,["H4480","H1612"]],[7,9,["H5467"]],[9,13,["H4480","H7709"]],[13,15,["H6017"]],[15,17,["H6025"]],[17,19,["H6025"]],[19,21,["H7219"]],[21,23,["H811"]],[23,25,["H4846"]]]},{"k":5791,"v":[[0,2,["H3196"]],[2,5,["H2534"]],[5,7,["H8577"]],[7,10,["H393"]],[10,11,["H7219"]],[11,13,["H6620"]]]},{"k":5792,"v":[[0,2,["H3808"]],[2,3,["H1931"]],[3,7,["H3647"]],[7,8,["H5978"]],[8,12,["H2856"]],[12,15,["H214"]]]},{"k":5793,"v":[[0,4,["H5359"]],[4,6,["H8005"]],[6,8,["H7272"]],[8,10,["H4131"]],[10,13,["H6256"]],[13,14,["H3588"]],[14,16,["H3117"]],[16,19,["H343"]],[19,22,["H7138"]],[22,28,["H6264"]],[28,32,["H2363"]]]},{"k":5794,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H1777"]],[5,7,["H5971"]],[7,10,["H5162"]],[10,11,["H5921"]],[11,13,["H5650"]],[13,14,["H3588"]],[14,16,["H7200"]],[16,17,["H3588"]],[17,19,["H3027"]],[19,21,["H235"]],[21,25,["H657"]],[25,27,["H6113"]],[27,29,["H5800"]]]},{"k":5795,"v":[[0,4,["H559"]],[4,5,["H335"]],[5,8,["H430"]],[8,10,["H6697"]],[10,14,["H2620"]]]},{"k":5796,"v":[[0,1,["H834"]],[1,3,["H398"]],[3,5,["H2459"]],[5,8,["H2077"]],[8,10,["H8354"]],[10,12,["H3196"]],[12,16,["H5257"]],[16,20,["H6965"]],[20,22,["H5826"]],[22,25,["H1961","H5921"]],[25,27,["H5643"]]]},{"k":5797,"v":[[0,1,["H7200"]],[1,2,["H6258"]],[2,3,["H3588"]],[3,4,["H589"]],[4,6,["H589"]],[6,8,["H1931"]],[8,12,["H369"]],[12,13,["H430"]],[13,14,["H5978"]],[14,16,["H589"]],[16,17,["H4191"]],[17,21,["H2421"]],[21,23,["H4272"]],[23,25,["H589"]],[25,26,["H7495"]],[26,27,["H369"]],[27,33,["H5337"]],[33,37,["H4480","H3027"]]]},{"k":5798,"v":[[0,1,["H3588"]],[1,4,["H5375"]],[4,6,["H3027"]],[6,7,["H413"]],[7,8,["H8064"]],[8,10,["H559"]],[10,11,["H595"]],[11,12,["H2416"]],[12,14,["H5769"]]]},{"k":5799,"v":[[0,1,["H518"]],[1,3,["H8150"]],[3,5,["H1300"]],[5,6,["H2719"]],[6,9,["H3027"]],[9,11,["H270"]],[11,13,["H4941"]],[13,16,["H7725"]],[16,17,["H5359"]],[17,20,["H6862"]],[20,23,["H7999"]],[23,26,["H8130"]],[26,27,[]]]},{"k":5800,"v":[[0,5,["H2671"]],[5,6,["H7937"]],[6,8,["H4480","H1818"]],[8,11,["H2719"]],[11,13,["H398"]],[13,14,["H1320"]],[14,19,["H4480","H1818"]],[19,22,["H2491"]],[22,26,["H7633"]],[26,29,["H4480","H7218"]],[29,31,["H6546"]],[31,34,["H341"]]]},{"k":5801,"v":[[0,1,["H7442"]],[1,4,["H1471"]],[4,7,["H5971"]],[7,8,["H3588"]],[8,11,["H5358"]],[11,13,["H1818"]],[13,16,["H5650"]],[16,19,["H7725"]],[19,20,["H5359"]],[20,23,["H6862"]],[23,27,["H3722"]],[27,30,["H127"]],[30,34,["H5971"]]]},{"k":5802,"v":[[0,2,["H4872"]],[2,3,["H935"]],[3,5,["H1696","(H853)"]],[5,6,["H3605"]],[6,8,["H1697"]],[8,10,["H2063"]],[10,11,["H7892"]],[11,14,["H241"]],[14,17,["H5971"]],[17,18,["H1931"]],[18,20,["H1954"]],[20,22,["H1121"]],[22,24,["H5126"]]]},{"k":5803,"v":[[0,2,["H4872"]],[2,5,["H3615"]],[5,7,["H1696","(H853)"]],[7,8,["H3605"]],[8,9,["H428"]],[9,10,["H1697"]],[10,11,["H413"]],[11,12,["H3605"]],[12,13,["H3478"]]]},{"k":5804,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H7760"]],[6,8,["H3824"]],[8,10,["H3605"]],[10,12,["H1697"]],[12,13,["H834"]],[13,14,["H595"]],[14,15,["H5749"]],[15,19,["H3117"]],[19,20,["H834"]],[20,23,["H6680","(H853)"]],[23,25,["H1121"]],[25,27,["H8104"]],[27,29,["H6213","(H853)"]],[29,30,["H3605"]],[30,32,["H1697"]],[32,34,["H2063"]],[34,35,["H8451"]]]},{"k":5805,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,4,["H3808"]],[4,6,["H7386"]],[6,7,["H1697"]],[7,8,["H4480"]],[8,10,["H3588"]],[10,11,["H1931"]],[11,14,["H2416"]],[14,17,["H2088"]],[17,18,["H1697"]],[18,21,["H748"]],[21,23,["H3117"]],[23,24,["H5921"]],[24,26,["H127"]],[26,27,["H834","H8033"]],[27,28,["H859"]],[28,30,["H5674","(H853)"]],[30,31,["H3383"]],[31,33,["H3423"]],[33,34,[]]]},{"k":5806,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H2088"]],[7,8,["H6106"]],[8,9,["H3117"]],[9,10,["H559"]]]},{"k":5807,"v":[[0,3,["H5927"]],[3,4,["H413"]],[4,5,["H2088"]],[5,6,["H2022"]],[6,7,["H5682"]],[7,9,["H2022"]],[9,10,["H5015"]],[10,11,["H834"]],[11,15,["H776"]],[15,17,["H4124"]],[17,18,["H834"]],[18,20,["H5921"]],[20,21,["H6440"]],[21,22,["H3405"]],[22,24,["H7200","(H853)"]],[24,26,["H776"]],[26,28,["H3667"]],[28,29,["H834"]],[29,30,["H589"]],[30,31,["H5414"]],[31,34,["H1121"]],[34,36,["H3478"]],[36,39,["H272"]]]},{"k":5808,"v":[[0,2,["H4191"]],[2,5,["H2022"]],[5,6,["H834","H8033"]],[6,7,["H859"]],[7,9,["H5927"]],[9,12,["H622"]],[12,13,["H413"]],[13,15,["H5971"]],[15,16,["H834"]],[16,17,["H175"]],[17,19,["H251"]],[19,20,["H4191"]],[20,22,["H2022"]],[22,23,["H2023"]],[23,26,["H622"]],[26,27,["H413"]],[27,29,["H5971"]]]},{"k":5809,"v":[[0,1,["H5921","H834"]],[1,3,["H4603"]],[3,6,["H8432"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,13,["H4325"]],[13,15,["H4809","H6946"]],[15,18,["H4057"]],[18,20,["H6790"]],[20,21,["H5921","H834"]],[21,23,["H6942"]],[23,25,["H3808"]],[25,28,["H8432"]],[28,31,["H1121"]],[31,33,["H3478"]]]},{"k":5810,"v":[[0,1,["H3588"]],[1,4,["H7200","(H853)"]],[4,6,["H776"]],[6,7,["H4480","H5048"]],[7,12,["H3808"]],[12,13,["H935"]],[13,14,["H8033"]],[14,15,["H413"]],[15,17,["H776"]],[17,18,["H834"]],[18,19,["H589"]],[19,20,["H5414"]],[20,22,["H1121"]],[22,24,["H3478"]]]},{"k":5811,"v":[[0,2,["H2063"]],[2,5,["H1293"]],[5,6,["H834"]],[6,7,["H4872"]],[7,9,["H376"]],[9,11,["H430"]],[11,12,["H1288","(H853)"]],[12,14,["H1121"]],[14,16,["H3478"]],[16,17,["H6440"]],[17,19,["H4194"]]]},{"k":5812,"v":[[0,3,["H559"]],[3,5,["H3068"]],[5,6,["H935"]],[6,8,["H4480","H5514"]],[8,11,["H2224"]],[11,13,["H4480","H8165"]],[13,18,["H3313"]],[18,20,["H4480","H2022"]],[20,21,["H6290"]],[21,24,["H857"]],[24,27,["H4480","H7233"]],[27,29,["H6944"]],[29,33,["H4480","H3225"]],[33,37,["H799"]],[37,39,[]]]},{"k":5813,"v":[[0,1,["H637"]],[1,3,["H2245"]],[3,5,["H5971"]],[5,6,["H3605"]],[6,8,["H6918"]],[8,12,["H3027"]],[12,14,["H1992"]],[14,16,["H8497"]],[16,19,["H7272"]],[19,23,["H5375"]],[23,26,["H4480","H1703"]]]},{"k":5814,"v":[[0,1,["H4872"]],[1,2,["H6680"]],[2,5,["H8451"]],[5,8,["H4181"]],[8,11,["H6952"]],[11,13,["H3290"]]]},{"k":5815,"v":[[0,3,["H1961"]],[3,4,["H4428"]],[4,6,["H3484"]],[6,9,["H7218"]],[9,12,["H5971"]],[12,15,["H7626"]],[15,17,["H3478"]],[17,19,["H622"]],[19,20,["H3162"]]]},{"k":5816,"v":[[0,2,["H7205"]],[2,3,["H2421"]],[3,5,["H408"]],[5,6,["H4191"]],[6,11,["H4962"]],[11,12,["H1961"]],[12,13,["H4557"]]]},{"k":5817,"v":[[0,2,["H2063"]],[2,7,["H3063"]],[7,10,["H559"]],[10,11,["H8085"]],[11,12,["H3068"]],[12,14,["H6963"]],[14,16,["H3063"]],[16,18,["H935"]],[18,20,["H413"]],[20,22,["H5971"]],[22,25,["H3027"]],[25,27,["H7227"]],[27,31,["H1961"]],[31,34,["H5828"]],[34,39,["H4480","H6862"]]]},{"k":5818,"v":[[0,3,["H3878"]],[3,5,["H559"]],[5,8,["H8550"]],[8,11,["H224"]],[11,15,["H2623"]],[15,16,["H376"]],[16,17,["H834"]],[17,20,["H5254"]],[20,22,["H4532"]],[22,28,["H7378"]],[28,29,["H5921"]],[29,31,["H4325"]],[31,33,["H4809"]]]},{"k":5819,"v":[[0,2,["H559"]],[2,5,["H1"]],[5,9,["H517"]],[9,12,["H3808"]],[12,13,["H7200"]],[13,15,["H3808"]],[15,18,["H5234"]],[18,20,["H251"]],[20,21,["H3808"]],[21,22,["H3045"]],[22,25,["H1121"]],[25,26,["H3588"]],[26,29,["H8104"]],[29,31,["H565"]],[31,33,["H5341"]],[33,35,["H1285"]]]},{"k":5820,"v":[[0,3,["H3384"]],[3,4,["H3290"]],[4,6,["H4941"]],[6,8,["H3478"]],[8,10,["H8451"]],[10,13,["H7760"]],[13,14,["H6988"]],[14,15,["H639"]],[15,20,["H3632"]],[20,21,["H5921"]],[21,23,["H4196"]]]},{"k":5821,"v":[[0,1,["H1288"]],[1,2,["H3068"]],[2,4,["H2428"]],[4,6,["H7521"]],[6,8,["H6467"]],[8,11,["H3027"]],[11,13,["H4272"]],[13,15,["H4975"]],[15,20,["H6965"]],[20,26,["H8130"]],[26,28,["H4480"]],[28,32,["H6965"]]]},{"k":5822,"v":[[0,3,["H1144"]],[3,5,["H559"]],[5,7,["H3039"]],[7,10,["H3068"]],[10,12,["H7931"]],[12,14,["H983"]],[14,15,["H5921"]],[15,21,["H2653","H5921"]],[21,23,["H3605"]],[23,25,["H3117"]],[25,30,["H7931"]],[30,31,["H996"]],[31,33,["H3802"]]]},{"k":5823,"v":[[0,3,["H3130"]],[3,5,["H559"]],[5,6,["H1288"]],[6,9,["H3068"]],[9,12,["H776"]],[12,16,["H4480","H4022"]],[16,18,["H8064"]],[18,21,["H4480","H2919"]],[21,25,["H4480","H8415"]],[25,27,["H7257"]],[27,28,["H8478"]]]},{"k":5824,"v":[[0,4,["H4480","H4022"]],[4,5,["H8393"]],[5,10,["H8121"]],[10,15,["H4480","H4022"]],[15,17,["H1645"]],[17,20,["H3391"]]]},{"k":5825,"v":[[0,5,["H4480","H7218"]],[5,8,["H6924"]],[8,9,["H2042"]],[9,14,["H4480","H4022"]],[14,17,["H5769"]],[17,18,["H1389"]]]},{"k":5826,"v":[[0,5,["H4480","H4022"]],[5,8,["H776"]],[8,10,["H4393"]],[10,16,["H7522"]],[16,20,["H7931"]],[20,23,["H5572"]],[23,27,["H935"]],[27,30,["H7218"]],[30,32,["H3130"]],[32,39,["H6936"]],[39,44,["H5139"]],[44,47,["H251"]]]},{"k":5827,"v":[[0,2,["H1926"]],[2,6,["H1060"]],[6,9,["H7794"]],[9,12,["H7161"]],[12,16,["H7161"]],[16,18,["H7214"]],[18,23,["H5055"]],[23,25,["H5971"]],[25,26,["H3162"]],[26,29,["H657"]],[29,32,["H776"]],[32,34,["H1992"]],[34,38,["H7233"]],[38,40,["H669"]],[40,42,["H1992"]],[42,45,["H505"]],[45,47,["H4519"]]]},{"k":5828,"v":[[0,3,["H2074"]],[3,5,["H559"]],[5,6,["H8055"]],[6,7,["H2074"]],[7,11,["H3318"]],[11,13,["H3485"]],[13,16,["H168"]]]},{"k":5829,"v":[[0,3,["H7121"]],[3,5,["H5971"]],[5,8,["H2022"]],[8,9,["H8033"]],[9,12,["H2076"]],[12,13,["H2077"]],[13,15,["H6664"]],[15,16,["H3588"]],[16,19,["H3243"]],[19,22,["H8228"]],[22,25,["H3220"]],[25,28,["H8226"]],[28,29,["H2934"]],[29,32,["H2344"]]]},{"k":5830,"v":[[0,3,["H1410"]],[3,5,["H559"]],[5,6,["H1288"]],[6,10,["H7337"]],[10,11,["H1410"]],[11,13,["H7931"]],[13,16,["H3833"]],[16,18,["H2963"]],[18,20,["H2220"]],[20,21,["H637"]],[21,26,["H6936"]]]},{"k":5831,"v":[[0,3,["H7200"]],[3,6,["H7225"]],[6,9,["H3588"]],[9,10,["H8033"]],[10,13,["H2513"]],[13,16,["H2710"]],[16,19,["H5603"]],[19,22,["H857"]],[22,25,["H7218"]],[25,28,["H5971"]],[28,30,["H6213"]],[30,32,["H6666"]],[32,35,["H3068"]],[35,38,["H4941"]],[38,39,["H5973"]],[39,40,["H3478"]]]},{"k":5832,"v":[[0,3,["H1835"]],[3,5,["H559"]],[5,6,["H1835"]],[6,9,["H738"]],[9,10,["H1482"]],[10,13,["H2187"]],[13,14,["H4480"]],[14,15,["H1316"]]]},{"k":5833,"v":[[0,3,["H5321"]],[3,5,["H559"]],[5,7,["H5321"]],[7,8,["H7649"]],[8,10,["H7522"]],[10,12,["H4392"]],[12,15,["H1293"]],[15,18,["H3068"]],[18,19,["H3423"]],[19,22,["H3220"]],[22,25,["H1864"]]]},{"k":5834,"v":[[0,3,["H836"]],[3,5,["H559"]],[5,7,["H836"]],[7,9,["H1288"]],[9,11,["H4480","H1121"]],[11,14,["H1961"]],[14,15,["H7521"]],[15,18,["H251"]],[18,22,["H2881"]],[22,24,["H7272"]],[24,26,["H8081"]]]},{"k":5835,"v":[[0,2,["H4515"]],[2,5,["H1270"]],[5,7,["H5178"]],[7,11,["H3117"]],[11,15,["H1679"]],[15,16,[]]]},{"k":5836,"v":[[0,3,["H369"]],[3,7,["H410"]],[7,9,["H3484"]],[9,12,["H7392"]],[12,14,["H8064"]],[14,17,["H5828"]],[17,21,["H1346"]],[21,24,["H7834"]]]},{"k":5837,"v":[[0,2,["H6924"]],[2,3,["H430"]],[3,6,["H4585"]],[6,8,["H4480","H8478"]],[8,11,["H5769"]],[11,12,["H2220"]],[12,17,["H1644"]],[17,19,["H341"]],[19,21,["H4480","H6440"]],[21,25,["H559"]],[25,26,["H8045"]],[26,27,[]]]},{"k":5838,"v":[[0,1,["H3478"]],[1,4,["H7931"]],[4,6,["H983"]],[6,7,["H910"]],[7,9,["H5869"]],[9,11,["H3290"]],[11,14,["H413"]],[14,16,["H776"]],[16,18,["H1715"]],[18,20,["H8492"]],[20,21,["H637"]],[21,23,["H8064"]],[23,26,["H6201"]],[26,27,["H2919"]]]},{"k":5839,"v":[[0,1,["H835"]],[1,5,["H3478"]],[5,6,["H4310"]],[6,10,["H3644"]],[10,12,["H5971"]],[12,13,["H3467"]],[13,16,["H3068"]],[16,18,["H4043"]],[18,21,["H5828"]],[21,23,["H834"]],[23,26,["H2719"]],[26,29,["H1346"]],[29,32,["H341"]],[32,36,["H3584"]],[36,40,["H859"]],[40,42,["H1869"]],[42,43,["H5921"]],[43,46,["H1116"]]]},{"k":5840,"v":[[0,2,["H4872"]],[2,4,["H5927"]],[4,7,["H4480","H6160"]],[7,9,["H4124"]],[9,10,["H413"]],[10,12,["H2022"]],[12,14,["H5015"]],[14,17,["H7218"]],[17,19,["H6449"]],[19,20,["H834"]],[20,22,["H5921"]],[22,23,["H6440"]],[23,24,["H3405"]],[24,27,["H3068"]],[27,28,["H7200"]],[28,29,["(H853)"]],[29,30,["H3605"]],[30,32,["H776","(H853)"]],[32,34,["H1568"]],[34,35,["H5704"]],[35,36,["H1835"]]]},{"k":5841,"v":[[0,2,["H3605"]],[2,3,["H5321"]],[3,6,["H776"]],[6,8,["H669"]],[8,10,["H4519"]],[10,12,["H3605"]],[12,14,["H776"]],[14,16,["H3063"]],[16,17,["H5704"]],[17,19,["H314"]],[19,20,["H3220"]]]},{"k":5842,"v":[[0,3,["H5045"]],[3,6,["H3603"]],[6,9,["H1237"]],[9,11,["H3405"]],[11,13,["H5892"]],[13,16,["H8558"]],[16,17,["H5704"]],[17,18,["H6820"]]]},{"k":5843,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H2063"]],[7,10,["H776"]],[10,11,["H834"]],[11,13,["H7650"]],[13,15,["H85"]],[15,17,["H3327"]],[17,20,["H3290"]],[20,21,["H559"]],[21,24,["H5414"]],[24,28,["H2233"]],[28,34,["H7200"]],[34,38,["H5869"]],[38,42,["H3808"]],[42,44,["H5674"]],[44,45,["H8033"]]]},{"k":5844,"v":[[0,2,["H4872"]],[2,4,["H5650"]],[4,7,["H3068"]],[7,8,["H4191"]],[8,9,["H8033"]],[9,12,["H776"]],[12,14,["H4124"]],[14,16,["H5921"]],[16,18,["H6310"]],[18,21,["H3068"]]]},{"k":5845,"v":[[0,3,["H6912"]],[3,7,["H1516"]],[7,10,["H776"]],[10,12,["H4124"]],[12,14,["H4136"]],[14,15,["H1047"]],[15,17,["H3808"]],[17,18,["H376"]],[18,19,["H3045"]],[19,20,["(H853)"]],[20,22,["H6900"]],[22,23,["H5704"]],[23,24,["H2088"]],[24,25,["H3117"]]]},{"k":5846,"v":[[0,2,["H4872"]],[2,5,["H3967"]],[5,7,["H6242"]],[7,8,["H8141"]],[8,9,["H1121"]],[9,12,["H4194"]],[12,14,["H5869"]],[14,17,["H3543","H3808"]],[17,18,["H3808"]],[18,21,["H3893"]],[21,22,["H5127"]]]},{"k":5847,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H1058"]],[6,7,["(H853)"]],[7,8,["H4872"]],[8,11,["H6160"]],[11,13,["H4124"]],[13,14,["H7970"]],[14,15,["H3117"]],[15,18,["H3117"]],[18,20,["H1065"]],[20,22,["H60"]],[22,24,["H4872"]],[24,26,["H8552"]]]},{"k":5848,"v":[[0,2,["H3091"]],[2,4,["H1121"]],[4,6,["H5126"]],[6,8,["H4392"]],[8,11,["H7307"]],[11,13,["H2451"]],[13,14,["H3588"]],[14,15,["H4872"]],[15,17,["H5564","(H853)"]],[17,19,["H3027"]],[19,20,["H5921"]],[20,24,["H1121"]],[24,26,["H3478"]],[26,27,["H8085"]],[27,28,["H413"]],[28,31,["H6213"]],[31,32,["H834"]],[32,34,["H3068"]],[34,35,["H6680","(H853)"]],[35,36,["H4872"]]]},{"k":5849,"v":[[0,3,["H6965"]],[3,4,["H3808"]],[4,6,["H5030"]],[6,7,["H5750"]],[7,9,["H3478"]],[9,12,["H4872"]],[12,13,["H834"]],[13,15,["H3068"]],[15,16,["H3045"]],[16,17,["H6440"]],[17,18,["H413"]],[18,19,["H6440"]]]},{"k":5850,"v":[[0,2,["H3605"]],[2,4,["H226"]],[4,7,["H4159"]],[7,8,["H834"]],[8,10,["H3068"]],[10,11,["H7971"]],[11,14,["H6213"]],[14,17,["H776"]],[17,19,["H4714"]],[19,21,["H6547"]],[21,24,["H3605"]],[24,26,["H5650"]],[26,29,["H3605"]],[29,31,["H776"]]]},{"k":5851,"v":[[0,3,["H3605"]],[3,5,["H2389"]],[5,6,["H3027"]],[6,9,["H3605"]],[9,11,["H1419"]],[11,12,["H4172"]],[12,13,["H834"]],[13,14,["H4872"]],[14,15,["H6213"]],[15,18,["H5869"]],[18,20,["H3605"]],[20,21,["H3478"]]]},{"k":5852,"v":[[0,2,["H310"]],[2,4,["H4194"]],[4,6,["H4872"]],[6,8,["H5650"]],[8,11,["H3068"]],[11,15,["H1961"]],[15,18,["H3068"]],[18,19,["H559"]],[19,20,["H413"]],[20,21,["H3091"]],[21,23,["H1121"]],[23,25,["H5126"]],[25,26,["H4872"]],[26,27,["H8334"]],[27,28,["H559"]]]},{"k":5853,"v":[[0,1,["H4872"]],[1,3,["H5650"]],[3,5,["H4191"]],[5,6,["H6258"]],[6,8,["H6965"]],[8,10,["H5674","(H853)"]],[10,11,["H2088"]],[11,12,["H3383"]],[12,13,["H859"]],[13,15,["H3605"]],[15,16,["H2088"]],[16,17,["H5971"]],[17,18,["H413"]],[18,20,["H776"]],[20,21,["H834"]],[21,22,["H595"]],[22,24,["H5414"]],[24,30,["H1121"]],[30,32,["H3478"]]]},{"k":5854,"v":[[0,1,["H3605"]],[1,2,["H4725"]],[2,3,["H834"]],[3,5,["H3709"]],[5,8,["H7272"]],[8,10,["H1869"]],[10,15,["H5414"]],[15,18,["H834"]],[18,20,["H1696"]],[20,21,["H413"]],[21,22,["H4872"]]]},{"k":5855,"v":[[0,3,["H4480","H4057"]],[3,5,["H2088"]],[5,6,["H3844"]],[6,8,["H5704"]],[8,10,["H1419"]],[10,11,["H5104"]],[11,13,["H5104"]],[13,14,["H6578"]],[14,15,["H3605"]],[15,17,["H776"]],[17,20,["H2850"]],[20,22,["H5704"]],[22,24,["H1419"]],[24,25,["H3220"]],[25,29,["H3996"]],[29,32,["H8121"]],[32,34,["H1961"]],[34,36,["H1366"]]]},{"k":5856,"v":[[0,3,["H3808"]],[3,5,["H376"]],[5,9,["H3320"]],[9,10,["H6440"]],[10,12,["H3605"]],[12,14,["H3117"]],[14,17,["H2416"]],[17,18,["H834"]],[18,20,["H1961"]],[20,21,["H5973"]],[21,22,["H4872"]],[22,26,["H1961"]],[26,27,["H5973"]],[27,31,["H3808"]],[31,32,["H7503"]],[32,34,["H3808"]],[34,35,["H5800"]],[35,36,[]]]},{"k":5857,"v":[[0,2,["H2388"]],[2,7,["H553"]],[7,8,["H3588"]],[8,9,["(H853)"]],[9,10,["H2088"]],[10,11,["H5971"]],[11,13,["H859"]],[13,17,["H5157","(H853)"]],[17,19,["H776"]],[19,20,["H834"]],[20,22,["H7650"]],[22,25,["H1"]],[25,27,["H5414"]],[27,28,[]]]},{"k":5858,"v":[[0,1,["H7535"]],[1,4,["H2388"]],[4,6,["H3966"]],[6,7,["H553"]],[7,11,["H8104"]],[11,13,["H6213"]],[13,16,["H3605"]],[16,18,["H8451"]],[18,19,["H834"]],[19,20,["H4872"]],[20,22,["H5650"]],[22,23,["H6680"]],[23,25,["H5493"]],[25,26,["H408"]],[26,27,["H4480"]],[27,32,["H3225"]],[32,36,["H8040"]],[36,37,["H4616"]],[37,40,["H7919"]],[40,41,["H3605","H834"]],[41,43,["H1980"]]]},{"k":5859,"v":[[0,1,["H2088"]],[1,2,["H5612"]],[2,5,["H8451"]],[5,7,["H3808"]],[7,8,["H4185"]],[8,12,["H4480","H6310"]],[12,16,["H1897"]],[16,18,["H3119"]],[18,20,["H3915"]],[20,21,["H4616"]],[21,24,["H8104"]],[24,26,["H6213"]],[26,29,["H3605"]],[29,32,["H3789"]],[32,34,["H3588"]],[34,35,["H227"]],[35,38,["H6743","(H853)"]],[38,40,["H1870"]],[40,41,["H6743"]],[41,43,["H227"]],[43,48,["H7919"]]]},{"k":5860,"v":[[0,2,["H3808"]],[2,4,["H6680"]],[4,7,["H2388"]],[7,12,["H553"]],[12,15,["H6206","H408"]],[15,16,["H408"]],[16,19,["H2865"]],[19,20,["H3588"]],[20,22,["H3068"]],[22,24,["H430"]],[24,26,["H5973"]],[26,28,["H3605","H834"]],[28,30,["H1980"]]]},{"k":5861,"v":[[0,2,["H3091"]],[2,3,["H6680","(H853)"]],[3,5,["H7860"]],[5,8,["H5971"]],[8,9,["H559"]]]},{"k":5862,"v":[[0,1,["H5674"]],[1,2,["H7130"]],[2,4,["H4264"]],[4,6,["H6680","(H853)"]],[6,8,["H5971"]],[8,9,["H559"]],[9,10,["H3559"]],[10,12,["H6720"]],[12,13,["H3588"]],[13,14,["H5750"]],[14,15,["H7969"]],[15,16,["H3117"]],[16,17,["H859"]],[17,20,["H5674","(H853)"]],[20,21,["H2088"]],[21,22,["H3383"]],[22,25,["H935"]],[25,27,["H3423","(H853)"]],[27,29,["H776"]],[29,30,["H834"]],[30,32,["H3068"]],[32,34,["H430"]],[34,35,["H5414"]],[35,38,["H3423"]],[38,39,[]]]},{"k":5863,"v":[[0,4,["H7206"]],[4,8,["H1425"]],[8,11,["H2677"]],[11,13,["H7626"]],[13,15,["H4519"]],[15,16,["H559"]],[16,17,["H3091"]],[17,18,["H559"]]]},{"k":5864,"v":[[0,1,["H2142","(H853)"]],[1,3,["H1697"]],[3,4,["H834"]],[4,5,["H4872"]],[5,7,["H5650"]],[7,10,["H3068"]],[10,11,["H6680"]],[11,13,["H559"]],[13,15,["H3068"]],[15,17,["H430"]],[17,21,["H5117"]],[21,24,["H5414"]],[24,25,["(H853)"]],[25,26,["H2063"]],[26,27,["H776"]]]},{"k":5865,"v":[[0,2,["H802"]],[2,5,["H2945"]],[5,8,["H4735"]],[8,10,["H3427"]],[10,13,["H776"]],[13,14,["H834"]],[14,15,["H4872"]],[15,16,["H5414"]],[16,20,["H5676"]],[20,21,["H3383"]],[21,23,["H859"]],[23,25,["H5674"]],[25,26,["H6440"]],[26,28,["H251"]],[28,29,["H2571"]],[29,30,["H3605"]],[30,33,["H1368"]],[33,35,["H2428"]],[35,37,["H5826"]],[37,38,[]]]},{"k":5866,"v":[[0,1,["H5704","H834"]],[1,3,["H3068"]],[3,5,["H5117"]],[5,7,["H251"]],[7,8,["H5117"]],[8,15,["H1992"]],[15,16,["H1571"]],[16,18,["H3423","(H853)"]],[18,20,["H776"]],[20,21,["H834"]],[21,23,["H3068"]],[23,25,["H430"]],[25,26,["H5414"]],[26,31,["H7725"]],[31,34,["H776"]],[34,37,["H3425"]],[37,39,["H3423"]],[39,41,["H834"]],[41,42,["H4872"]],[42,44,["H3068"]],[44,45,["H5650"]],[45,46,["H5414"]],[46,50,["H5676"]],[50,51,["H3383"]],[51,54,["H4217","H8121"]]]},{"k":5867,"v":[[0,3,["H6030","(H853)"]],[3,4,["H3091"]],[4,5,["H559"]],[5,6,["H3605"]],[6,7,["H834"]],[7,9,["H6680"]],[9,13,["H6213"]],[13,15,["H413","H3605","H834"]],[15,17,["H7971"]],[17,21,["H1980"]]]},{"k":5868,"v":[[0,4,["H8085"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H3605"]],[8,9,["H834"]],[9,10,["H3651"]],[10,13,["H8085"]],[13,14,["H413"]],[14,16,["H7535"]],[16,18,["H3068"]],[18,20,["H430"]],[20,21,["H1961"]],[21,22,["H5973"]],[22,24,["H834"]],[24,26,["H1961"]],[26,27,["H5973"]],[27,28,["H4872"]]]},{"k":5869,"v":[[0,1,["H3605","H376","H834"]],[1,7,["H4784","(H853)"]],[7,9,["H6310"]],[9,12,["H3808"]],[12,14,["H8085","(H853)"]],[14,16,["H1697"]],[16,18,["H3605"]],[18,19,["H834"]],[19,21,["H6680"]],[21,28,["H4191"]],[28,29,["H7535"]],[29,31,["H2388"]],[31,36,["H553"]]]},{"k":5870,"v":[[0,2,["H3091"]],[2,4,["H1121"]],[4,6,["H5126"]],[6,7,["H7971"]],[7,9,["H4480"]],[9,10,["H7851"]],[10,11,["H8147"]],[11,12,["H376"]],[12,14,["H7270"]],[14,15,["H2791"]],[15,16,["H559"]],[16,17,["H1980"]],[17,18,["H7200","(H853)"]],[18,20,["H776"]],[20,22,["H3405"]],[22,25,["H1980"]],[25,28,["H935"]],[28,30,["H802","H2181"]],[30,31,["H1004"]],[31,32,["H8034"]],[32,33,["H7343"]],[33,35,["H7901"]],[35,36,["H8033"]]]},{"k":5871,"v":[[0,4,["H559"]],[4,6,["H4428"]],[6,8,["H3405"]],[8,9,["H559"]],[9,10,["H2009"]],[10,12,["H935"]],[12,13,["H376"]],[13,15,["H2008"]],[15,17,["H3915"]],[17,20,["H4480","H1121"]],[20,22,["H3478"]],[22,25,["H2658","(H853)"]],[25,27,["H776"]]]},{"k":5872,"v":[[0,3,["H4428"]],[3,5,["H3405"]],[5,6,["H7971"]],[6,7,["H413"]],[7,8,["H7343"]],[8,9,["H559"]],[9,11,["H3318"]],[11,13,["H376"]],[13,16,["H935"]],[16,17,["H413"]],[17,19,["H834"]],[19,21,["H935"]],[21,24,["H1004"]],[24,25,["H3588"]],[25,28,["H935"]],[28,31,["H2658","(H853)"]],[31,32,["H3605"]],[32,34,["H776"]]]},{"k":5873,"v":[[0,3,["H802"]],[3,4,["H3947","(H853)"]],[4,6,["H8147"]],[6,7,["H376"]],[7,9,["H6845"]],[9,12,["H559"]],[12,13,["H3651"]],[13,15,["H935"]],[15,16,["H376"]],[16,17,["H413"]],[17,21,["H3045"]],[21,22,["H3808"]],[22,23,["H4480","H370"]],[23,24,["H1992"]],[24,25,[]]]},{"k":5874,"v":[[0,5,["H1961"]],[5,10,["H5462"]],[10,13,["H8179"]],[13,17,["H2822"]],[17,20,["H376"]],[20,22,["H3318"]],[22,23,["H575"]],[23,25,["H376"]],[25,26,["H1980"]],[26,28,["H3045"]],[28,29,["H3808"]],[29,30,["H7291"]],[30,31,["H310"]],[31,33,["H4118"]],[33,34,["H3588"]],[34,37,["H5381"]],[37,38,[]]]},{"k":5875,"v":[[0,2,["H1931"]],[2,6,["H5927"]],[6,9,["H1406"]],[9,14,["H2934"]],[14,18,["H6086"]],[18,20,["H6593"]],[20,26,["H6186"]],[26,27,["H5921"]],[27,29,["H1406"]]]},{"k":5876,"v":[[0,3,["H376"]],[3,4,["H7291"]],[4,5,["H310"]],[5,8,["H1870"]],[8,10,["H3383"]],[10,11,["H5921"]],[11,13,["H4569"]],[13,17,["H310","H834"]],[17,20,["H7291"]],[20,21,["H310"]],[21,25,["H3318"]],[25,27,["H5462"]],[27,29,["H8179"]]]},{"k":5877,"v":[[0,2,["H2962"]],[2,3,["H1992"]],[3,6,["H7901"]],[6,7,["H1931"]],[7,9,["H5927"]],[9,10,["H5921"]],[10,12,["H5921"]],[12,14,["H1406"]]]},{"k":5878,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H376"]],[6,8,["H3045"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,13,["H5414"]],[13,14,["(H853)"]],[14,16,["H776"]],[16,18,["H3588"]],[18,20,["H367"]],[20,22,["H5307"]],[22,23,["H5921"]],[23,26,["H3588"]],[26,27,["H3605"]],[27,29,["H3427"]],[29,32,["H776"]],[32,33,["H4127"]],[33,35,["H4480","H6440"]],[35,36,[]]]},{"k":5879,"v":[[0,1,["H3588"]],[1,4,["H8085","(H853)"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H3001","(H853)"]],[9,11,["H4325"]],[11,14,["H5488"]],[14,15,["H3220"]],[15,16,["H4480","H6440"]],[16,21,["H3318"]],[21,23,["H4480","H4714"]],[23,25,["H834"]],[25,27,["H6213"]],[27,30,["H8147"]],[30,31,["H4428"]],[31,34,["H567"]],[34,35,["H834"]],[35,40,["H5676"]],[40,41,["H3383"]],[41,42,["H5511"]],[42,44,["H5747"]],[44,45,["H834"]],[45,48,["H2763","(H853)"]]]},{"k":5880,"v":[[0,7,["H8085"]],[7,11,["H3824"]],[11,13,["H4549"]],[13,14,["H3808"]],[14,17,["H6965"]],[17,19,["H5750"]],[19,20,["H7307"]],[20,23,["H376"]],[23,25,["H4480","H6440"]],[25,27,["H3588"]],[27,29,["H3068"]],[29,31,["H430"]],[31,32,["H1931"]],[32,34,["H430"]],[34,36,["H8064"]],[36,37,["H4480","H4605"]],[37,39,["H5921"]],[39,40,["H776"]],[40,41,["H4480","H8478"]]]},{"k":5881,"v":[[0,1,["H6258"]],[1,4,["H4994"]],[4,6,["H7650"]],[6,11,["H3068"]],[11,12,["H3588"]],[12,17,["H6213","H5973","H2617"]],[17,19,["H859"]],[19,21,["H1571"]],[21,22,["H6213"]],[22,23,["H2617"]],[23,24,["H5973"]],[24,26,["H1"]],[26,27,["H1004"]],[27,29,["H5414"]],[29,32,["H571"]],[32,33,["H226"]]]},{"k":5882,"v":[[0,6,["H2421","(H853)"]],[6,8,["H1"]],[8,11,["H517"]],[11,14,["H251"]],[14,17,["H269"]],[17,19,["H3605"]],[19,20,["H834"]],[20,24,["H5337","(H853)"]],[24,26,["H5315"]],[26,28,["H4480","H4194"]]]},{"k":5883,"v":[[0,3,["H376"]],[3,4,["H559"]],[4,7,["H5315"]],[7,8,["H8478"]],[8,10,["H518"]],[10,12,["H5046"]],[12,13,["H3808","(H853)"]],[13,14,["H2088"]],[14,16,["H1697"]],[16,20,["H1961"]],[20,23,["H3068"]],[23,25,["H5414"]],[25,26,["(H853)"]],[26,28,["H776"]],[28,32,["H6213"]],[32,33,["H2617"]],[33,35,["H571"]],[35,36,["H5973"]],[36,37,[]]]},{"k":5884,"v":[[0,5,["H3381"]],[5,8,["H2256"]],[8,9,["H1157"]],[9,11,["H2474"]],[11,12,["H3588"]],[12,14,["H1004"]],[14,18,["H2346"]],[18,19,["H7023"]],[19,21,["H1931"]],[21,22,["H3427"]],[22,25,["H2346"]]]},{"k":5885,"v":[[0,3,["H559"]],[3,6,["H1980"]],[6,10,["H2022"]],[10,11,["H6435"]],[11,13,["H7291"]],[13,14,["H6293"]],[14,18,["H2247"]],[18,19,["H8033"]],[19,20,["H7969"]],[20,21,["H3117"]],[21,22,["H5704"]],[22,24,["H7291"]],[24,26,["H7725"]],[26,28,["H310"]],[28,31,["H1980"]],[31,33,["H1870"]]]},{"k":5886,"v":[[0,3,["H376"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H587"]],[7,10,["H5355"]],[10,14,["H4480","H7621","H2088"]],[14,15,["H834"]],[15,20,["H7650"]]]},{"k":5887,"v":[[0,1,["H2009"]],[1,3,["H587"]],[3,4,["H935"]],[4,7,["H776"]],[7,10,["H7194","(H853)"]],[10,11,["H2088"]],[11,12,["H8615"]],[12,14,["H8144"]],[14,15,["H2339"]],[15,18,["H2474"]],[18,19,["H834"]],[19,24,["H3381"]],[24,29,["H622"]],[29,31,["H1"]],[31,34,["H517"]],[34,37,["H251"]],[37,39,["H3605"]],[39,41,["H1"]],[41,42,["H1004"]],[42,43,["H1004"]],[43,44,["H413"]],[44,45,[]]]},{"k":5888,"v":[[0,4,["H1961"]],[4,6,["H3605","H834"]],[6,9,["H3318"]],[9,12,["H4480","H1817"]],[12,15,["H1004"]],[15,18,["H2351"]],[18,20,["H1818"]],[20,25,["H7218"]],[25,27,["H587"]],[27,30,["H5355"]],[30,32,["H3605","H834"]],[32,34,["H1961"]],[34,35,["H854"]],[35,39,["H1004"]],[39,41,["H1818"]],[41,46,["H7218"]],[46,47,["H518"]],[47,49,["H3027"]],[49,50,["H1961"]],[50,52,[]]]},{"k":5889,"v":[[0,2,["H518"]],[2,4,["H5046","(H853)"]],[4,5,["H2088"]],[5,7,["H1697"]],[7,11,["H1961"]],[11,12,["H5355"]],[12,15,["H4480","H7621"]],[15,16,["H834"]],[16,22,["H7650"]]]},{"k":5890,"v":[[0,3,["H559"]],[3,7,["H1697"]],[7,8,["H3651"]],[8,10,["H1931"]],[10,15,["H7971"]],[15,18,["H1980"]],[18,21,["H7194","(H853)"]],[21,23,["H8144"]],[23,24,["H8615"]],[24,27,["H2474"]]]},{"k":5891,"v":[[0,3,["H1980"]],[3,5,["H935"]],[5,8,["H2022"]],[8,10,["H3427"]],[10,11,["H8033"]],[11,12,["H7969"]],[12,13,["H3117"]],[13,14,["H5704"]],[14,16,["H7291"]],[16,18,["H7725"]],[18,21,["H7291"]],[21,22,["H1245"]],[22,25,["H3605"]],[25,27,["H1870"]],[27,29,["H4672"]],[29,31,["H3808"]]]},{"k":5892,"v":[[0,3,["H8147"]],[3,4,["H376"]],[4,5,["H7725"]],[5,7,["H3381"]],[7,10,["H4480","H2022"]],[10,13,["H5674"]],[13,15,["H935"]],[15,16,["H413"]],[16,17,["H3091"]],[17,19,["H1121"]],[19,21,["H5126"]],[21,23,["H5608"]],[23,24,["(H853)"]],[24,25,["H3605"]],[25,28,["H4672"]],[28,29,[]]]},{"k":5893,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H3091"]],[5,6,["H3588"]],[6,8,["H3068"]],[8,10,["H5414"]],[10,13,["H3027","(H853)"]],[13,14,["H3605"]],[14,16,["H776"]],[16,18,["H1571"]],[18,19,["H3605"]],[19,21,["H3427"]],[21,24,["H776"]],[24,26,["H4127"]],[26,28,["H4480","H6440"]],[28,29,[]]]},{"k":5894,"v":[[0,2,["H3091"]],[2,4,["H7925"]],[4,7,["H1242"]],[7,10,["H5265"]],[10,12,["H4480","H7851"]],[12,14,["H935"]],[14,15,["H5704"]],[15,16,["H3383"]],[16,17,["H1931"]],[17,19,["H3605"]],[19,21,["H1121"]],[21,23,["H3478"]],[23,25,["H3885"]],[25,26,["H8033"]],[26,27,["H2962"]],[27,30,["H5674"]]]},{"k":5895,"v":[[0,5,["H1961"]],[5,6,["H4480","H7097"]],[6,7,["H7969"]],[7,8,["H3117"]],[8,11,["H7860"]],[11,12,["H5674"]],[12,13,["H7130"]],[13,15,["H4264"]]]},{"k":5896,"v":[[0,3,["H6680","(H853)"]],[3,5,["H5971"]],[5,6,["H559"]],[6,9,["H7200","(H853)"]],[9,11,["H727"]],[11,14,["H1285"]],[14,17,["H3068"]],[17,19,["H430"]],[19,22,["H3548"]],[22,24,["H3881"]],[24,25,["H5375"]],[25,28,["H859"]],[28,30,["H5265"]],[30,33,["H4480","H4725"]],[33,35,["H1980"]],[35,36,["H310"]],[36,37,[]]]},{"k":5897,"v":[[0,1,["H389"]],[1,4,["H1961"]],[4,6,["H7350"]],[6,7,["H996"]],[7,13,["H505"]],[13,14,["H520"]],[14,16,["H4060"]],[16,19,["H408","H7126"]],[19,20,["H413"]],[20,22,["H4616","H834"]],[22,25,["H3045","(H853)"]],[25,27,["H1870"]],[27,29,["H834"]],[29,32,["H1980"]],[32,33,["H3588"]],[33,36,["H3808"]],[36,37,["H5674"]],[37,39,["H1870"]],[39,40,["H4480","H8543","H8032"]]]},{"k":5898,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,8,["H6942"]],[8,9,["H3588"]],[9,11,["H4279"]],[11,13,["H3068"]],[13,15,["H6213"]],[15,16,["H6381"]],[16,17,["H7130"]],[17,18,[]]]},{"k":5899,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3548"]],[6,7,["H559"]],[7,9,["H5375","(H853)"]],[9,11,["H727"]],[11,14,["H1285"]],[14,17,["H5674"]],[17,18,["H6440"]],[18,20,["H5971"]],[20,24,["H5375","(H853)"]],[24,26,["H727"]],[26,29,["H1285"]],[29,31,["H1980"]],[31,32,["H6440"]],[32,34,["H5971"]]]},{"k":5900,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091"]],[6,7,["H2088"]],[7,8,["H3117"]],[8,11,["H2490"]],[11,13,["H1431"]],[13,17,["H5869"]],[17,19,["H3605"]],[19,20,["H3478"]],[20,21,["H834"]],[21,24,["H3045"]],[24,25,["H3588"]],[25,26,["H834"]],[26,28,["H1961"]],[28,29,["H5973"]],[29,30,["H4872"]],[30,34,["H1961"]],[34,35,["H5973"]],[35,36,[]]]},{"k":5901,"v":[[0,2,["H859"]],[2,4,["H6680","(H853)"]],[4,6,["H3548"]],[6,8,["H5375"]],[8,10,["H727"]],[10,13,["H1285"]],[13,14,["H559"]],[14,18,["H935"]],[18,19,["H5704"]],[19,21,["H7097"]],[21,24,["H4325"]],[24,26,["H3383"]],[26,30,["H5975"]],[30,32,["H3383"]]]},{"k":5902,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,9,["H5066"]],[9,10,["H2008"]],[10,12,["H8085","(H853)"]],[12,14,["H1697"]],[14,17,["H3068"]],[17,19,["H430"]]]},{"k":5903,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H2063"]],[4,7,["H3045"]],[7,8,["H3588"]],[8,10,["H2416"]],[10,11,["H410"]],[11,13,["H7130"]],[13,22,["H3423","H3423"]],[22,24,["H4480","H6440"]],[24,25,["(H853)"]],[25,27,["H3669"]],[27,30,["H2850"]],[30,33,["H2340"]],[33,36,["H6522"]],[36,39,["H1622"]],[39,42,["H567"]],[42,45,["H2983"]]]},{"k":5904,"v":[[0,1,["H2009"]],[1,3,["H727"]],[3,6,["H1285"]],[6,9,["H113"]],[9,11,["H3605"]],[11,13,["H776"]],[13,15,["H5674"]],[15,16,["H6440"]],[16,19,["H3383"]]]},{"k":5905,"v":[[0,1,["H6258"]],[1,3,["H3947"]],[3,5,["H8147","H6240"]],[5,6,["H376"]],[6,10,["H4480","H7626"]],[10,12,["H3478"]],[12,18,["H376","H259","H376","H259","H7626"]]]},{"k":5906,"v":[[0,6,["H1961"]],[6,11,["H3709"]],[11,14,["H7272"]],[14,17,["H3548"]],[17,19,["H5375"]],[19,21,["H727"]],[21,24,["H3068"]],[24,26,["H113"]],[26,28,["H3605"]],[28,30,["H776"]],[30,32,["H5117"]],[32,35,["H4325"]],[35,37,["H3383"]],[37,40,["H4325"]],[40,42,["H3383"]],[42,46,["H3772"]],[46,49,["H4325"]],[49,52,["H3381"]],[52,54,["H4480","H4605"]],[54,58,["H5975"]],[58,60,["H259"]],[60,61,["H5067"]]]},{"k":5907,"v":[[0,5,["H1961"]],[5,8,["H5971"]],[8,9,["H5265"]],[9,12,["H4480","H168"]],[12,15,["H5674","(H853)"]],[15,16,["H3383"]],[16,19,["H3548"]],[19,20,["H5375"]],[20,22,["H727"]],[22,25,["H1285"]],[25,26,["H6440"]],[26,28,["H5971"]]]},{"k":5908,"v":[[0,5,["H5375"]],[5,7,["H727"]],[7,9,["H935"]],[9,10,["H5704"]],[10,11,["H3383"]],[11,14,["H7272"]],[14,17,["H3548"]],[17,19,["H5375"]],[19,21,["H727"]],[21,23,["H2881"]],[23,26,["H7097"]],[26,29,["H4325"]],[29,31,["H3383"]],[31,32,["H4390","H5921"]],[32,33,["H3605"]],[33,35,["H1415"]],[35,36,["H3605"]],[36,38,["H3117"]],[38,40,["H7105"]]]},{"k":5909,"v":[[0,3,["H4325"]],[3,6,["H3381"]],[6,8,["H4480","H4605"]],[8,9,["H5975"]],[9,12,["H6965"]],[12,14,["H259"]],[14,15,["H5067"]],[15,16,["H3966"]],[16,17,["H7368"]],[17,20,["H5892"]],[20,21,["H4480","H121"]],[21,22,["H834"]],[22,24,["H4480","H6654"]],[24,25,["H6891"]],[25,30,["H3381"]],[30,31,["H5921"]],[31,33,["H3220"]],[33,36,["H6160"]],[36,39,["H4417"]],[39,40,["H3220"]],[40,41,["H8552"]],[41,45,["H3772"]],[45,48,["H5971"]],[48,50,["H5674"]],[50,52,["H5048"]],[52,53,["H3405"]]]},{"k":5910,"v":[[0,3,["H3548"]],[3,5,["H5375"]],[5,7,["H727"]],[7,10,["H1285"]],[10,13,["H3068"]],[13,14,["H5975"]],[14,15,["H3559"]],[15,18,["H2724"]],[18,21,["H8432"]],[21,23,["H3383"]],[23,25,["H3605"]],[25,27,["H3478"]],[27,29,["H5674"]],[29,32,["H2724"]],[32,33,["H5704","H834"]],[33,34,["H3605"]],[34,36,["H1471"]],[36,38,["H5674"]],[38,39,["H8552"]],[39,40,["H5674","(H853)"]],[40,41,["H3383"]]]},{"k":5911,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H3605"]],[7,9,["H1471"]],[9,11,["H8552"]],[11,13,["H5674","(H853)"]],[13,14,["H3383"]],[14,17,["H3068"]],[17,18,["H559"]],[18,19,["H413"]],[19,20,["H3091"]],[20,21,["H559"]]]},{"k":5912,"v":[[0,1,["H3947"]],[1,3,["H8147","H6240"]],[3,4,["H376"]],[4,6,["H4480"]],[6,8,["H5971"]],[8,14,["H376","H259","H376","H259","H4480","H7626"]]]},{"k":5913,"v":[[0,2,["H6680"]],[2,5,["H559"]],[5,6,["H5375"]],[6,8,["H4480","H2088"]],[8,12,["H4480","H8432"]],[12,14,["H3383"]],[14,18,["H4480","H4673"]],[18,21,["H3548"]],[21,22,["H7272"]],[22,24,["H3559"]],[24,25,["H8147","H6240"]],[25,26,["H68"]],[26,32,["H5674","(H853)"]],[32,33,["H5973"]],[33,36,["H5117"]],[36,41,["H4411"]],[41,42,["H834"]],[42,45,["H3885"]],[45,47,["H3915"]]]},{"k":5914,"v":[[0,2,["H3091"]],[2,3,["H7121","H413"]],[3,5,["H8147","H6240"]],[5,6,["H376"]],[6,7,["H834"]],[7,10,["H3559"]],[10,13,["H4480","H1121"]],[13,15,["H3478"]],[15,21,["H376","H259","H376","H259","H4480","H7626"]]]},{"k":5915,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,7,["H5674"]],[7,8,["H6440"]],[8,10,["H727"]],[10,13,["H3068"]],[13,15,["H430"]],[15,16,["H413"]],[16,18,["H8432"]],[18,20,["H3383"]],[20,24,["H7311"]],[24,26,["H376"]],[26,29,["H259"]],[29,30,["H68"]],[30,31,["H5921"]],[31,33,["H7926"]],[33,37,["H4557"]],[37,40,["H7626"]],[40,43,["H1121"]],[43,45,["H3478"]]]},{"k":5916,"v":[[0,1,["H4616"]],[1,2,["H2063"]],[2,4,["H1961"]],[4,6,["H226"]],[6,7,["H7130"]],[7,10,["H3588"]],[10,12,["H1121"]],[12,13,["H7592"]],[13,19,["H4279"]],[19,20,["H559"]],[20,21,["H4100"]],[21,25,["H428"]],[25,26,["H68"]]]},{"k":5917,"v":[[0,4,["H559"]],[4,6,["H834"]],[6,8,["H4325"]],[8,10,["H3383"]],[10,13,["H3772"]],[13,14,["H4480","H6440"]],[14,16,["H727"]],[16,19,["H1285"]],[19,22,["H3068"]],[22,26,["H5674"]],[26,27,["H3383"]],[27,29,["H4325"]],[29,31,["H3383"]],[31,34,["H3772"]],[34,36,["H428"]],[36,37,["H68"]],[37,39,["H1961"]],[39,42,["H2146"]],[42,45,["H1121"]],[45,47,["H3478"]],[47,49,["H5704","H5769"]]]},{"k":5918,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,7,["H3651"]],[7,8,["H834"]],[8,9,["H3091"]],[9,10,["H6680"]],[10,13,["H5375"]],[13,14,["H8147","H6240"]],[14,15,["H68"]],[15,19,["H4480","H8432"]],[19,21,["H3383"]],[21,22,["H834"]],[22,24,["H3068"]],[24,25,["H1696"]],[25,26,["H413"]],[26,27,["H3091"]],[27,31,["H4557"]],[31,34,["H7626"]],[34,37,["H1121"]],[37,39,["H3478"]],[39,43,["H5674"]],[43,44,["H5973"]],[44,46,["H413"]],[46,51,["H4411"]],[51,55,["H5117"]],[55,56,["H8033"]]]},{"k":5919,"v":[[0,2,["H3091"]],[2,4,["H6965"]],[4,5,["H8147","H6240"]],[5,6,["H68"]],[6,9,["H8432"]],[9,11,["H3383"]],[11,14,["H8478"]],[14,17,["H7272"]],[17,20,["H3548"]],[20,22,["H5375"]],[22,24,["H727"]],[24,27,["H1285"]],[27,28,["H4673"]],[28,31,["H1961"]],[31,32,["H8033"]],[32,33,["H5704"]],[33,34,["H2088"]],[34,35,["H3117"]]]},{"k":5920,"v":[[0,3,["H3548"]],[3,5,["H5375"]],[5,7,["H727"]],[7,8,["H5975"]],[8,11,["H8432"]],[11,13,["H3383"]],[13,14,["H5704"]],[14,16,["H3605","H1697"]],[16,18,["H8552"]],[18,19,["H834"]],[19,21,["H3068"]],[21,22,["H6680","(H853)"]],[22,23,["H3091"]],[23,25,["H1696"]],[25,26,["H413"]],[26,28,["H5971"]],[28,31,["H3605"]],[31,32,["H834"]],[32,33,["H4872"]],[33,34,["H6680","(H853)"]],[34,35,["H3091"]],[35,38,["H5971"]],[38,39,["H4116"]],[39,42,["H5674"]]]},{"k":5921,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H3605"]],[7,9,["H5971"]],[9,11,["H8552"]],[11,13,["H5674"]],[13,16,["H727"]],[16,19,["H3068"]],[19,21,["H5674"]],[21,24,["H3548"]],[24,27,["H6440"]],[27,30,["H5971"]]]},{"k":5922,"v":[[0,3,["H1121"]],[3,5,["H7205"]],[5,8,["H1121"]],[8,10,["H1410"]],[10,12,["H2677"]],[12,14,["H7626"]],[14,16,["H4519"]],[16,18,["H5674"]],[18,19,["H2571"]],[19,20,["H6440"]],[20,22,["H1121"]],[22,24,["H3478"]],[24,25,["H834"]],[25,26,["H4872"]],[26,27,["H1696"]],[27,28,["H413"]],[28,29,[]]]},{"k":5923,"v":[[0,2,["H705"]],[2,3,["H505"]],[3,4,["H2502"]],[4,6,["H6635"]],[6,8,["H5674"]],[8,9,["H6440"]],[9,11,["H3068"]],[11,13,["H4421"]],[13,14,["H413"]],[14,16,["H6160"]],[16,18,["H3405"]]]},{"k":5924,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H3068"]],[5,6,["H1431","(H853)"]],[6,7,["H3091"]],[7,10,["H5869"]],[10,12,["H3605"]],[12,13,["H3478"]],[13,16,["H3372"]],[16,18,["H834"]],[18,20,["H3372","(H853)"]],[20,21,["H4872"]],[21,22,["H3605"]],[22,24,["H3117"]],[24,27,["H2416"]]]},{"k":5925,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091"]],[6,7,["H559"]]]},{"k":5926,"v":[[0,1,["H6680","(H853)"]],[1,3,["H3548"]],[3,5,["H5375"]],[5,7,["H727"]],[7,10,["H5715"]],[10,14,["H5927"]],[14,16,["H4480"]],[16,17,["H3383"]]]},{"k":5927,"v":[[0,1,["H3091"]],[1,3,["H6680","(H853)"]],[3,5,["H3548"]],[5,6,["H559"]],[6,9,["H5927"]],[9,11,["H4480"]],[11,12,["H3383"]]]},{"k":5928,"v":[[0,5,["H1961"]],[5,8,["H3548"]],[8,10,["H5375"]],[10,12,["H727"]],[12,15,["H1285"]],[15,18,["H3068"]],[18,21,["H5927"]],[21,25,["H4480","H8432"]],[25,27,["H3383"]],[27,30,["H3709"]],[30,33,["H3548"]],[33,34,["H7272"]],[34,37,["H5423"]],[37,38,["H413"]],[38,41,["H2724"]],[41,44,["H4325"]],[44,46,["H3383"]],[46,47,["H7725"]],[47,50,["H4725"]],[50,52,["H1980"]],[52,53,["H5921"]],[53,54,["H3605"]],[54,56,["H1415"]],[56,57,["H8543"]],[57,60,["H8032"]]]},{"k":5929,"v":[[0,3,["H5971"]],[3,5,["H5927"]],[5,7,["H4480"]],[7,8,["H3383"]],[8,11,["H6218"]],[11,15,["H7223"]],[15,16,["H2320"]],[16,18,["H2583"]],[18,20,["H1537"]],[20,23,["H4217"]],[23,24,["H7097"]],[24,26,["H3405"]]]},{"k":5930,"v":[[0,2,["H428"]],[2,3,["H8147","H6240"]],[3,4,["H68"]],[4,5,["H834"]],[5,7,["H3947"]],[7,9,["H4480"]],[9,10,["H3383"]],[10,12,["H3091"]],[12,13,["H6965"]],[13,15,["H1537"]]]},{"k":5931,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,9,["H559"]],[9,10,["H834"]],[10,12,["H1121"]],[12,14,["H7592","(H853)"]],[14,16,["H1"]],[16,20,["H4279"]],[20,21,["H559"]],[21,22,["H4100"]],[22,24,["H428"]],[24,25,["H68"]]]},{"k":5932,"v":[[0,4,["(H853)"]],[4,6,["H1121"]],[6,7,["H3045"]],[7,8,["H559"]],[8,9,["H3478"]],[9,11,["H5674","(H853)"]],[11,12,["H2088"]],[12,13,["H3383"]],[13,16,["H3004"]]]},{"k":5933,"v":[[0,1,["H834"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H3001","(H853)"]],[7,9,["H4325"]],[9,11,["H3383"]],[11,13,["H4480","H6440"]],[13,15,["H5704"]],[15,19,["H5674"]],[19,20,["H834"]],[20,22,["H3068"]],[22,24,["H430"]],[24,25,["H6213"]],[25,28,["H5488"]],[28,29,["H3220"]],[29,30,["H834"]],[30,33,["H3001"]],[33,35,["H4480","H6440"]],[35,37,["H5704"]],[37,41,["H5674"]]]},{"k":5934,"v":[[0,1,["H4616"]],[1,2,["H3605"]],[2,4,["H5971"]],[4,7,["H776"]],[7,9,["H3045","(H853)"]],[9,11,["H3027"]],[11,14,["H3068"]],[14,15,["H3588"]],[15,16,["H1931"]],[16,18,["H2389"]],[18,19,["H4616"]],[19,22,["H3372","(H853)"]],[22,24,["H3068"]],[24,26,["H430"]],[26,28,["H3605","H3117"]]]},{"k":5935,"v":[[0,5,["H1961"]],[5,7,["H3605"]],[7,9,["H4428"]],[9,12,["H567"]],[12,13,["H834"]],[13,17,["H5676"]],[17,19,["H3383"]],[19,20,["H3220"]],[20,22,["H3605"]],[22,24,["H4428"]],[24,27,["H3669"]],[27,28,["H834"]],[28,30,["H5921"]],[30,32,["H3220"]],[32,33,["H8085","(H853)"]],[33,34,["H834"]],[34,36,["H3068"]],[36,39,["H3001","(H853)"]],[39,41,["H4325"]],[41,43,["H3383"]],[43,45,["H4480","H6440"]],[45,47,["H1121"]],[47,49,["H3478"]],[49,50,["H5704"]],[50,54,["H5674"]],[54,57,["H3824"]],[57,58,["H4549"]],[58,59,["H3808"]],[59,60,["H1961"]],[60,62,["H7307"]],[62,66,["H5750"]],[66,67,["H4480","H6440"]],[67,70,["H1121"]],[70,72,["H3478"]]]},{"k":5936,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,5,["H3068"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3091"]],[8,9,["H6213"]],[9,11,["H6864"]],[11,12,["H2719"]],[12,14,["H4135"]],[14,15,["H7725","(H853)"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,21,["H8145"]],[21,22,[]]]},{"k":5937,"v":[[0,2,["H3091"]],[2,3,["H6213"]],[3,5,["H6864"]],[5,6,["H2719"]],[6,8,["H4135","(H853)"]],[8,10,["H1121"]],[10,12,["H3478"]],[12,13,["H413"]],[13,15,["H1389"]],[15,18,["H6190"]]]},{"k":5938,"v":[[0,2,["H2088"]],[2,5,["H1697"]],[5,6,["H834"]],[6,7,["H3091"]],[7,9,["H4135"]],[9,10,["H3605"]],[10,12,["H5971"]],[12,15,["H3318"]],[15,17,["H4480","H4714"]],[17,20,["H2145"]],[20,22,["H3605"]],[22,24,["H376"]],[24,26,["H4421"]],[26,27,["H4191"]],[27,30,["H4057"]],[30,33,["H1870"]],[33,37,["H3318"]],[37,39,["H4480","H4714"]]]},{"k":5939,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H5971"]],[4,7,["H3318"]],[7,8,["H1961"]],[8,9,["H4135"]],[9,11,["H3605"]],[11,13,["H5971"]],[13,16,["H3209"]],[16,19,["H4057"]],[19,22,["H1870"]],[22,26,["H3318"]],[26,29,["H4480","H4714"]],[29,33,["H3808"]],[33,34,["H4135"]]]},{"k":5940,"v":[[0,1,["H3588"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,6,["H1980"]],[6,7,["H705"]],[7,8,["H8141"]],[8,11,["H4057"]],[11,12,["H5704"]],[12,13,["H3605"]],[13,15,["H1471"]],[15,18,["H376"]],[18,20,["H4421"]],[20,23,["H3318"]],[23,25,["H4480","H4714"]],[25,27,["H8552"]],[27,28,["H834"]],[28,30,["H8085"]],[30,31,["H3808"]],[31,33,["H6963"]],[33,36,["H3068"]],[36,38,["H834"]],[38,40,["H3068"]],[40,41,["H7650"]],[41,45,["H1115"]],[45,46,["H7200"]],[46,47,["(H853)"]],[47,49,["H776"]],[49,50,["H834"]],[50,52,["H3068"]],[52,53,["H7650"]],[53,56,["H1"]],[56,60,["H5414"]],[60,63,["H776"]],[63,65,["H2100"]],[65,67,["H2461"]],[67,69,["H1706"]]]},{"k":5941,"v":[[0,3,["H1121"]],[3,7,["H6965"]],[7,10,["H8478"]],[10,12,["H3091"]],[12,13,["H4135"]],[13,14,["H3588"]],[14,16,["H1961"]],[16,17,["H6189"]],[17,18,["H3588"]],[18,21,["H3808"]],[21,22,["H4135"]],[22,26,["H1870"]]]},{"k":5942,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,9,["H8552"]],[9,10,["H4135"]],[10,11,["H3605"]],[11,13,["H1471"]],[13,16,["H3427"]],[16,19,["H8478"]],[19,22,["H4264"]],[22,23,["H5704"]],[23,26,["H2421"]]]},{"k":5943,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091"]],[6,8,["H3117"]],[8,12,["H1556","(H853)"]],[12,14,["H2781"]],[14,16,["H4714"]],[16,18,["H4480","H5921"]],[18,22,["H8034"]],[22,25,["H4725"]],[25,27,["H7121"]],[27,28,["H1537"]],[28,29,["H5704"]],[29,30,["H2088"]],[30,31,["H3117"]]]},{"k":5944,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H2583"]],[6,8,["H1537"]],[8,10,["H6213","(H853)"]],[10,12,["H6453"]],[12,15,["H702","H6240"]],[15,16,["H3117"]],[16,19,["H2320"]],[19,21,["H6153"]],[21,24,["H6160"]],[24,26,["H3405"]]]},{"k":5945,"v":[[0,4,["H398"]],[4,8,["H4480","H5669"]],[8,11,["H776"]],[11,15,["H4480","H4283"]],[15,17,["H6453"]],[17,19,["H4682"]],[19,21,["H7033"]],[21,25,["H6106","H2088"]],[25,26,["H3117"]]]},{"k":5946,"v":[[0,3,["H4478"]],[3,4,["H7673"]],[4,7,["H4480","H4283"]],[7,11,["H398"]],[11,15,["H4480","H5669"]],[15,18,["H776"]],[18,19,["H3808"]],[19,20,["H1961"]],[20,22,["H1121"]],[22,24,["H3478"]],[24,25,["H4478"]],[25,27,["H5750"]],[27,31,["H398"]],[31,34,["H4480","H8393"]],[34,37,["H776"]],[37,39,["H3667"]],[39,40,["H1931"]],[40,41,["H8141"]]]},{"k":5947,"v":[[0,5,["H1961"]],[5,7,["H3091"]],[7,8,["H1961"]],[8,10,["H3405"]],[10,14,["H5375"]],[14,16,["H5869"]],[16,18,["H7200"]],[18,20,["H2009"]],[20,22,["H5975"]],[22,24,["H376"]],[24,26,["H5048"]],[26,30,["H2719"]],[30,31,["H8025"]],[31,34,["H3027"]],[34,36,["H3091"]],[36,37,["H1980"]],[37,39,["H413"]],[39,41,["H559"]],[41,45,["H859"]],[45,48,["H518"]],[48,51,["H6862"]]]},{"k":5948,"v":[[0,3,["H559"]],[3,4,["H3808"]],[4,5,["H3588"]],[5,7,["H8269"]],[7,10,["H6635"]],[10,13,["H3068"]],[13,15,["H589"]],[15,16,["H6258"]],[16,17,["H935"]],[17,19,["H3091"]],[19,20,["H5307"]],[20,21,["H413"]],[21,23,["H6440"]],[23,26,["H776"]],[26,29,["H7812"]],[29,31,["H559"]],[31,34,["H4100"]],[34,35,["H1696"]],[35,37,["H113"]],[37,38,["H413"]],[38,40,["H5650"]]]},{"k":5949,"v":[[0,3,["H8269"]],[3,6,["H3068"]],[6,7,["H6635"]],[7,8,["H559"]],[8,9,["H413"]],[9,10,["H3091"]],[10,11,["H5394"]],[11,13,["H5275"]],[13,15,["H4480","H5921"]],[15,17,["H7272"]],[17,18,["H3588"]],[18,20,["H4725"]],[20,21,["H834","H5921"]],[21,22,["H859"]],[22,23,["H5975"]],[23,25,["H6944"]],[25,27,["H3091"]],[27,28,["H6213"]],[28,29,["H3651"]]]},{"k":5950,"v":[[0,2,["H3405"]],[2,6,["H5462","H5462"]],[6,7,["H4480","H6440"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,13,["H369"]],[13,15,["H3318"]],[15,17,["H369"]],[17,19,["H935"]]]},{"k":5951,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091"]],[6,7,["H7200"]],[7,10,["H5414"]],[10,13,["H3027","(H853)"]],[13,14,["H3405"]],[14,17,["H4428"]],[17,21,["H1368"]],[21,24,["H2428"]]]},{"k":5952,"v":[[0,4,["H5437","(H853)"]],[4,6,["H5892"]],[6,7,["H3605"]],[7,9,["H376"]],[9,11,["H4421"]],[11,15,["H5362","(H853)"]],[15,17,["H5892"]],[17,18,["H259","H6471"]],[18,19,["H3541"]],[19,22,["H6213"]],[22,23,["H8337"]],[23,24,["H3117"]]]},{"k":5953,"v":[[0,2,["H7651"]],[2,3,["H3548"]],[3,5,["H5375"]],[5,6,["H6440"]],[6,8,["H727"]],[8,9,["H7651"]],[9,10,["H7782"]],[10,13,["H3104"]],[13,16,["H7637"]],[16,17,["H3117"]],[17,20,["H5437","(H853)"]],[20,22,["H5892"]],[22,23,["H7651"]],[23,24,["H6471"]],[24,27,["H3548"]],[27,29,["H8628"]],[29,32,["H7782"]]]},{"k":5954,"v":[[0,6,["H1961"]],[6,12,["H4900"]],[12,13,["H4900"]],[13,16,["H3104"]],[16,17,["H7161"]],[17,21,["H8085","(H853)"]],[21,23,["H6963"]],[23,26,["H7782"]],[26,27,["H3605"]],[27,29,["H5971"]],[29,31,["H7321"]],[31,34,["H1419"]],[34,35,["H8643"]],[35,38,["H2346"]],[38,41,["H5892"]],[41,44,["H5307"]],[44,45,["H8478"]],[45,48,["H5971"]],[48,51,["H5927"]],[51,53,["H376"]],[53,55,["H5048"]],[55,56,[]]]},{"k":5955,"v":[[0,2,["H3091"]],[2,4,["H1121"]],[4,6,["H5126"]],[6,7,["H7121","H413"]],[7,9,["H3548"]],[9,11,["H559"]],[11,12,["H413"]],[12,15,["H5375","(H853)"]],[15,17,["H727"]],[17,20,["H1285"]],[20,22,["H5375"]],[22,23,["H7651"]],[23,24,["H3548"]],[24,25,["H5375"]],[25,26,["H7651"]],[26,27,["H7782"]],[27,30,["H3104"]],[30,31,["H6440"]],[31,33,["H727"]],[33,36,["H3068"]]]},{"k":5956,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,8,["H5674"]],[8,10,["H5437","(H853)"]],[10,12,["H5892"]],[12,18,["H2502"]],[18,20,["H5674"]],[20,21,["H6440"]],[21,23,["H727"]],[23,26,["H3068"]]]},{"k":5957,"v":[[0,5,["H1961"]],[5,7,["H3091"]],[7,9,["H559"]],[9,10,["H413"]],[10,12,["H5971"]],[12,15,["H7651"]],[15,16,["H3548"]],[16,17,["H5375"]],[17,19,["H7651"]],[19,20,["H7782"]],[20,23,["H3104"]],[23,25,["H5674"]],[25,26,["H6440"]],[26,28,["H3068"]],[28,30,["H8628"]],[30,33,["H7782"]],[33,36,["H727"]],[36,39,["H1285"]],[39,42,["H3068"]],[42,43,["H1980","H310"]],[43,44,[]]]},{"k":5958,"v":[[0,4,["H2502"]],[4,5,["H1980"]],[5,6,["H6440"]],[6,8,["H3548"]],[8,10,["H8628"]],[10,13,["H7782"]],[13,16,["H622"]],[16,17,["H1980"]],[17,18,["H310"]],[18,20,["H727"]],[20,24,["H1980"]],[24,26,["H8628"]],[26,29,["H7782"]]]},{"k":5959,"v":[[0,2,["H3091"]],[2,4,["H6680"]],[4,6,["H5971"]],[6,7,["H559"]],[7,10,["H3808"]],[10,11,["H7321"]],[11,12,["H3808"]],[12,15,["H8085"]],[15,16,["H854"]],[16,18,["H6963"]],[18,19,["H3808"]],[19,22,["H1697"]],[22,24,["H3318"]],[24,27,["H4480","H6310"]],[27,28,["H5704"]],[28,30,["H3117"]],[30,32,["H559"]],[32,34,["H7321"]],[34,38,["H7321"]]]},{"k":5960,"v":[[0,3,["H727"]],[3,6,["H3068"]],[6,7,["H5437","(H853)"]],[7,9,["H5892"]],[9,11,["H5362"]],[11,13,["H259","H6471"]],[13,16,["H935"]],[16,19,["H4264"]],[19,21,["H3885"]],[21,24,["H4264"]]]},{"k":5961,"v":[[0,2,["H3091"]],[2,4,["H7925"]],[4,7,["H1242"]],[7,10,["H3548"]],[10,12,["H5375","(H853)"]],[12,14,["H727"]],[14,17,["H3068"]]]},{"k":5962,"v":[[0,2,["H7651"]],[2,3,["H3548"]],[3,4,["H5375"]],[4,5,["H7651"]],[5,6,["H7782"]],[6,9,["H3104"]],[9,10,["H6440"]],[10,12,["H727"]],[12,15,["H3068"]],[15,18,["H1980","H1980"]],[18,20,["H8628"]],[20,23,["H7782"]],[23,27,["H2502"]],[27,28,["H1980"]],[28,29,["H6440"]],[29,33,["H622"]],[33,34,["H1980"]],[34,35,["H310"]],[35,37,["H727"]],[37,40,["H3068"]],[40,44,["H1980"]],[44,46,["H8628"]],[46,49,["H7782"]]]},{"k":5963,"v":[[0,3,["H8145"]],[3,4,["H3117"]],[4,6,["H5437","(H853)"]],[6,8,["H5892"]],[8,9,["H259","H6471"]],[9,11,["H7725"]],[11,14,["H4264"]],[14,15,["H3541"]],[15,17,["H6213"]],[17,18,["H8337"]],[18,19,["H3117"]]]},{"k":5964,"v":[[0,5,["H1961"]],[5,8,["H7637"]],[8,9,["H3117"]],[9,13,["H7925"]],[13,16,["H5927"]],[16,19,["H7837"]],[19,21,["H5437","(H853)"]],[21,23,["H5892"]],[23,26,["H2088"]],[26,27,["H4941"]],[27,28,["H7651"]],[28,29,["H6471"]],[29,30,["H7535"]],[30,32,["H2088"]],[32,33,["H3117"]],[33,35,["H5437","(H853)"]],[35,37,["H5892"]],[37,38,["H7651"]],[38,39,["H6471"]]]},{"k":5965,"v":[[0,5,["H1961"]],[5,8,["H7637"]],[8,9,["H6471"]],[9,12,["H3548"]],[12,13,["H8628"]],[13,16,["H7782"]],[16,17,["H3091"]],[17,18,["H559"]],[18,19,["H413"]],[19,21,["H5971"]],[21,22,["H7321"]],[22,23,["H3588"]],[23,25,["H3068"]],[25,27,["H5414"]],[27,28,["(H853)"]],[28,30,["H5892"]]]},{"k":5966,"v":[[0,3,["H5892"]],[3,5,["H1961"]],[5,6,["H2764"]],[6,8,["H1931"]],[8,10,["H3605"]],[10,11,["H834"]],[11,16,["H3068"]],[16,17,["H7535"]],[17,18,["H7343"]],[18,20,["H2181"]],[20,22,["H2421"]],[22,23,["H1931"]],[23,25,["H3605"]],[25,26,["H834"]],[26,28,["H854"]],[28,32,["H1004"]],[32,33,["H3588"]],[33,35,["H2244","(H853)"]],[35,37,["H4397"]],[37,38,["H834"]],[38,40,["H7971"]]]},{"k":5967,"v":[[0,2,["H859"]],[2,5,["H7535"]],[5,6,["H8104"]],[6,8,["H4480"]],[8,11,["H2764"]],[11,12,["H6435"]],[12,16,["H2763"]],[16,19,["H3947"]],[19,20,["H4480"]],[20,23,["H2764"]],[23,25,["H7760","(H853)"]],[25,27,["H4264"]],[27,29,["H3478"]],[29,31,["H2764"]],[31,33,["H5916"]],[33,34,[]]]},{"k":5968,"v":[[0,2,["H3605"]],[2,4,["H3701"]],[4,6,["H2091"]],[6,8,["H3627"]],[8,10,["H5178"]],[10,12,["H1270"]],[12,14,["H6944"]],[14,17,["H3068"]],[17,20,["H935"]],[20,23,["H214"]],[23,26,["H3068"]]]},{"k":5969,"v":[[0,3,["H5971"]],[3,4,["H7321"]],[4,8,["H8628"]],[8,11,["H7782"]],[11,16,["H1961"]],[16,19,["H5971"]],[19,20,["H8085","(H853)"]],[20,22,["H6963"]],[22,25,["H7782"]],[25,28,["H5971"]],[28,29,["H7321"]],[29,32,["H1419"]],[32,33,["H8643"]],[33,36,["H2346"]],[36,38,["H5307"]],[38,39,["H8478"]],[39,43,["H5971"]],[43,45,["H5927"]],[45,48,["H5892"]],[48,50,["H376"]],[50,52,["H5048"]],[52,56,["H3920","(H853)"]],[56,58,["H5892"]]]},{"k":5970,"v":[[0,4,["H2763","(H853)"]],[4,5,["H3605"]],[5,6,["H834"]],[6,10,["H5892"]],[10,12,["H4480","H376"]],[12,14,["H802"]],[14,15,["H4480","H5288"]],[15,17,["H2205"]],[17,19,["H7794"]],[19,21,["H7716"]],[21,23,["H2543"]],[23,26,["H6310"]],[26,29,["H2719"]]]},{"k":5971,"v":[[0,2,["H3091"]],[2,4,["H559"]],[4,7,["H8147"]],[7,8,["H376"]],[8,12,["H7270","(H853)"]],[12,14,["H776"]],[14,16,["H935"]],[16,18,["H802","H2181"]],[18,19,["H1004"]],[19,22,["H3318"]],[22,23,["H4480","H8033","(H853)"]],[23,25,["H802"]],[25,27,["H3605"]],[27,28,["H834"]],[28,31,["H834"]],[31,33,["H7650"]],[33,35,[]]]},{"k":5972,"v":[[0,4,["H5288"]],[4,7,["H7270"]],[7,9,["H935"]],[9,12,["H3318","(H853)"]],[12,13,["H7343"]],[13,16,["H1"]],[16,19,["H517"]],[19,22,["H251"]],[22,24,["H3605"]],[24,25,["H834"]],[25,31,["H3318"]],[31,32,["H3605"]],[32,34,["H4940"]],[34,36,["H5117"]],[36,38,["H4480","H2351"]],[38,40,["H4264"]],[40,42,["H3478"]]]},{"k":5973,"v":[[0,3,["H8313"]],[3,5,["H5892"]],[5,7,["H784"]],[7,9,["H3605"]],[9,10,["H834"]],[10,13,["H7535"]],[13,15,["H3701"]],[15,18,["H2091"]],[18,21,["H3627"]],[21,23,["H5178"]],[23,26,["H1270"]],[26,28,["H5414"]],[28,31,["H214"]],[31,34,["H1004"]],[34,37,["H3068"]]]},{"k":5974,"v":[[0,2,["H3091"]],[2,3,["H2421"]],[3,4,["H7343"]],[4,6,["H2181"]],[6,10,["H1"]],[10,11,["H1004"]],[11,13,["H3605"]],[13,14,["H834"]],[14,19,["H3427"]],[19,20,["H7130"]],[20,21,["H3478"]],[21,23,["H5704"]],[23,24,["H2088"]],[24,25,["H3117"]],[25,26,["H3588"]],[26,28,["H2244","(H853)"]],[28,30,["H4397"]],[30,31,["H834"]],[31,32,["H3091"]],[32,33,["H7971"]],[33,36,["H7270","(H853)"]],[36,37,["H3405"]]]},{"k":5975,"v":[[0,2,["H3091"]],[2,3,["H7650"]],[3,6,["H1931"]],[6,7,["H6256"]],[7,8,["H559"]],[8,9,["H779"]],[9,12,["H376"]],[12,13,["H6440"]],[13,15,["H3068"]],[15,16,["H834"]],[16,18,["H6965"]],[18,20,["H1129","(H853)"]],[20,21,["H2063"]],[21,22,["H5892","(H853)"]],[22,23,["H3405"]],[23,28,["H3245"]],[28,32,["H1060"]],[32,36,["H6810"]],[36,41,["H5324"]],[41,43,["H1817"]],[43,45,[]]]},{"k":5976,"v":[[0,3,["H3068"]],[3,4,["H1961"]],[4,5,["H854"]],[5,6,["H3091"]],[6,9,["H8089"]],[9,10,["H1961"]],[10,13,["H3605"]],[13,15,["H776"]]]},{"k":5977,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H4603"]],[6,8,["H4604"]],[8,12,["H2764"]],[12,14,["H5912"]],[14,16,["H1121"]],[16,18,["H3756"]],[18,20,["H1121"]],[20,22,["H2067"]],[22,24,["H1121"]],[24,26,["H2226"]],[26,29,["H4294"]],[29,31,["H3063"]],[31,32,["H3947"]],[32,33,["H4480"]],[33,36,["H2764"]],[36,39,["H639"]],[39,42,["H3068"]],[42,44,["H2734"]],[44,47,["H1121"]],[47,49,["H3478"]]]},{"k":5978,"v":[[0,2,["H3091"]],[2,3,["H7971"]],[3,4,["H376"]],[4,6,["H4480","H3405"]],[6,8,["H5857"]],[8,9,["H834"]],[9,11,["H5973"]],[11,12,["H1007"]],[12,16,["H4480","H6924"]],[16,18,["H1008"]],[18,20,["H559"]],[20,21,["H413"]],[21,23,["H559"]],[23,25,["H5927"]],[25,27,["H7270","(H853)"]],[27,29,["H776"]],[29,32,["H376"]],[32,34,["H5927"]],[34,36,["H7270","(H853)"]],[36,37,["H5857"]]]},{"k":5979,"v":[[0,3,["H7725"]],[3,4,["H413"]],[4,5,["H3091"]],[5,7,["H559"]],[7,8,["H413"]],[8,11,["H408"]],[11,12,["H3605"]],[12,14,["H5971"]],[14,16,["H5927"]],[16,20,["H505"]],[20,21,["H176"]],[21,22,["H7969"]],[22,23,["H505"]],[23,24,["H376"]],[24,26,["H5927"]],[26,28,["H5221","(H853)"]],[28,29,["H5857"]],[29,32,["H408","(H853)"]],[32,33,["H3605"]],[33,35,["H5971"]],[35,37,["H3021"]],[37,38,["H8033"]],[38,39,["H3588"]],[39,40,["H1992"]],[40,43,["H4592"]]]},{"k":5980,"v":[[0,4,["H5927"]],[4,5,["H8033"]],[5,6,["H4480"]],[6,8,["H5971"]],[8,10,["H7969"]],[10,11,["H505"]],[11,12,["H376"]],[12,15,["H5127"]],[15,16,["H6440"]],[16,18,["H376"]],[18,20,["H5857"]]]},{"k":5981,"v":[[0,3,["H376"]],[3,5,["H5857"]],[5,6,["H5221"]],[6,7,["H4480"]],[7,10,["H7970"]],[10,12,["H8337"]],[12,13,["H376"]],[13,16,["H7291"]],[16,19,["H6440"]],[19,21,["H8179"]],[21,23,["H5704"]],[23,24,["H7671"]],[24,26,["H5221"]],[26,31,["H4174"]],[31,34,["H3824"]],[34,37,["H5971"]],[37,38,["H4549"]],[38,40,["H1961"]],[40,42,["H4325"]]]},{"k":5982,"v":[[0,2,["H3091"]],[2,3,["H7167"]],[3,5,["H8071"]],[5,7,["H5307"]],[7,10,["H776"]],[10,11,["H5921"]],[11,13,["H6440"]],[13,14,["H6440"]],[14,16,["H727"]],[16,19,["H3068"]],[19,20,["H5704"]],[20,22,["H6153"]],[22,23,["H1931"]],[23,26,["H2205"]],[26,28,["H3478"]],[28,30,["H5927"]],[30,31,["H6083"]],[31,32,["H5921"]],[32,34,["H7218"]]]},{"k":5983,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H162"]],[4,6,["H136"]],[6,7,["H3069"]],[7,8,["H4100"]],[8,13,["H5674","H5674","(H853)"]],[13,14,["H2088"]],[14,15,["H5971"]],[15,16,["H5674","(H853)"]],[16,17,["H3383"]],[17,19,["H5414"]],[19,23,["H3027"]],[23,26,["H567"]],[26,28,["H6"]],[28,32,["H3863"]],[32,36,["H2974"]],[36,38,["H3427"]],[38,42,["H5676"]],[42,43,["H3383"]]]},{"k":5984,"v":[[0,1,["H994"]],[1,2,["H136"]],[2,3,["H4100"]],[3,6,["H559"]],[6,7,["H310","H834"]],[7,8,["H3478"]],[8,9,["H2015"]],[9,11,["H6203"]],[11,12,["H6440"]],[12,14,["H341"]]]},{"k":5985,"v":[[0,3,["H3669"]],[3,5,["H3605"]],[5,7,["H3427"]],[7,10,["H776"]],[10,12,["H8085"]],[12,19,["H5437","H5921"]],[19,22,["H3772","(H853)"]],[22,24,["H8034"]],[24,25,["H4480"]],[25,27,["H776"]],[27,29,["H4100"]],[29,32,["H6213"]],[32,35,["H1419"]],[35,36,["H8034"]]]},{"k":5986,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091"]],[6,9,["H6965"]],[9,10,["H4100"]],[10,11,["H5307"]],[11,12,["H859"]],[12,13,["H2088"]],[13,14,["H5921"]],[14,16,["H6440"]]]},{"k":5987,"v":[[0,1,["H3478"]],[1,3,["H2398"]],[3,7,["H1571"]],[7,8,["H5674","(H853)"]],[8,10,["H1285"]],[10,11,["H834"]],[11,13,["H6680"]],[13,18,["H1571"]],[18,19,["H3947"]],[19,20,["H4480"]],[20,23,["H2764"]],[23,26,["H1571"]],[26,27,["H1589"]],[27,29,["H3584"]],[29,30,["H1571"]],[30,34,["H7760"]],[34,36,["H1571"]],[36,40,["H3627"]]]},{"k":5988,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H3201"]],[6,7,["H3808"]],[7,8,["H6965"]],[8,9,["H6440"]],[9,11,["H341"]],[11,13,["H6437"]],[13,15,["H6203"]],[15,16,["H6440"]],[16,18,["H341"]],[18,19,["H3588"]],[19,21,["H1961"]],[21,22,["H2764"]],[22,23,["H3808"]],[23,26,["H1961"]],[26,27,["H5973"]],[27,30,["H3254"]],[30,31,["H518","H3808"]],[31,33,["H8045"]],[33,35,["H2764"]],[35,37,["H4480","H7130"]],[37,38,[]]]},{"k":5989,"v":[[0,1,["H6965"]],[1,2,["H6942","(H853)"]],[2,4,["H5971"]],[4,6,["H559"]],[6,8,["H6942"]],[8,11,["H4279"]],[11,12,["H3588"]],[12,13,["H3541"]],[13,14,["H559"]],[14,16,["H3068"]],[16,17,["H430"]],[17,19,["H3478"]],[19,24,["H2764"]],[24,27,["H7130"]],[27,31,["H3478"]],[31,33,["H3201"]],[33,34,["H3808"]],[34,35,["H6965"]],[35,36,["H6440"]],[36,38,["H341"]],[38,39,["H5704"]],[39,42,["H5493"]],[42,45,["H2764"]],[45,47,["H4480","H7130"]],[47,48,[]]]},{"k":5990,"v":[[0,3,["H1242"]],[3,8,["H7126"]],[8,12,["H7626"]],[12,16,["H1961"]],[16,19,["H7626"]],[19,20,["H834"]],[20,22,["H3068"]],[22,23,["H3920"]],[23,25,["H7126"]],[25,29,["H4940"]],[29,33,["H4940"]],[33,34,["H834"]],[34,36,["H3068"]],[36,38,["H3920"]],[38,40,["H7126"]],[40,42,["H1004"]],[42,45,["H1004"]],[45,46,["H834"]],[46,48,["H3068"]],[48,50,["H3920"]],[50,52,["H7126"]],[52,55,["H1397"]]]},{"k":5991,"v":[[0,4,["H1961"]],[4,9,["H3920"]],[9,13,["H2764"]],[13,16,["H8313"]],[16,18,["H784"]],[18,21,["H3605"]],[21,22,["H834"]],[22,25,["H3588"]],[25,28,["H5674","(H853)"]],[28,30,["H1285"]],[30,33,["H3068"]],[33,35,["H3588"]],[35,38,["H6213"]],[38,39,["H5039"]],[39,41,["H3478"]]]},{"k":5992,"v":[[0,2,["H3091"]],[2,5,["H7925"]],[5,8,["H1242"]],[8,10,["H7126","(H853)"]],[10,11,["H3478"]],[11,14,["H7626"]],[14,17,["H7626"]],[17,19,["H3063"]],[19,21,["H3920"]]]},{"k":5993,"v":[[0,3,["H7126","(H853)"]],[3,5,["H4940"]],[5,7,["H3063"]],[7,10,["H3920","(H853)"]],[10,12,["H4940"]],[12,15,["H2227"]],[15,18,["H7126","(H853)"]],[18,20,["H4940"]],[20,23,["H2227"]],[23,26,["H1397"]],[26,28,["H2067"]],[28,30,["H3920"]]]},{"k":5994,"v":[[0,3,["H7126","(H853)"]],[3,5,["H1004"]],[5,8,["H1397"]],[8,10,["H5912"]],[10,12,["H1121"]],[12,14,["H3756"]],[14,16,["H1121"]],[16,18,["H2067"]],[18,20,["H1121"]],[20,22,["H2226"]],[22,25,["H4294"]],[25,27,["H3063"]],[27,29,["H3920"]]]},{"k":5995,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H5912"]],[5,7,["H1121"]],[7,8,["H7760"]],[8,11,["H4994"]],[11,12,["H3519"]],[12,15,["H3068"]],[15,16,["H430"]],[16,18,["H3478"]],[18,20,["H5414"]],[20,21,["H8426"]],[21,25,["H5046"]],[25,27,["H4994"]],[27,28,["H4100"]],[28,31,["H6213"]],[31,32,["H3582"]],[32,34,["H408"]],[34,35,["H4480"]],[35,36,[]]]},{"k":5996,"v":[[0,2,["H5912"]],[2,3,["H6030","(H853)"]],[3,4,["H3091"]],[4,6,["H559"]],[6,7,["H546"]],[7,8,["H595"]],[8,10,["H2398"]],[10,13,["H3068"]],[13,14,["H430"]],[14,16,["H3478"]],[16,18,["H2063"]],[18,20,["H2063"]],[20,23,["H6213"]]]},{"k":5997,"v":[[0,3,["H7200"]],[3,6,["H7998"]],[6,7,["H259"]],[7,8,["H2896"]],[8,9,["H8152"]],[9,10,["H155"]],[10,13,["H3967"]],[13,14,["H8255"]],[14,16,["H3701"]],[16,18,["H259"]],[18,19,["H3956"]],[19,21,["H2091"]],[21,23,["H2572"]],[23,24,["H8255"]],[24,25,["H4948"]],[25,28,["H2530"]],[28,31,["H3947"]],[31,34,["H2009"]],[34,37,["H2934"]],[37,40,["H776"]],[40,43,["H8432"]],[43,46,["H168"]],[46,49,["H3701"]],[49,50,["H8478"]],[50,51,[]]]},{"k":5998,"v":[[0,2,["H3091"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,7,["H7323"]],[7,10,["H168"]],[10,12,["H2009"]],[12,15,["H2934"]],[15,18,["H168"]],[18,21,["H3701"]],[21,22,["H8478"]],[22,23,[]]]},{"k":5999,"v":[[0,3,["H3947"]],[3,8,["H4480","H8432"]],[8,11,["H168"]],[11,13,["H935"]],[13,15,["H413"]],[15,16,["H3091"]],[16,18,["H413"]],[18,19,["H3605"]],[19,21,["H1121"]],[21,23,["H3478"]],[23,27,["H3332"]],[27,28,["H6440"]],[28,30,["H3068"]]]},{"k":6000,"v":[[0,2,["H3091"]],[2,4,["H3605"]],[4,5,["H3478"]],[5,6,["H5973"]],[6,8,["H3947","(H853)"]],[8,9,["H5912"]],[9,11,["H1121"]],[11,13,["H2226"]],[13,16,["H3701"]],[16,19,["H155"]],[19,22,["H3956"]],[22,24,["H2091"]],[24,27,["H1121"]],[27,30,["H1323"]],[30,33,["H7794"]],[33,36,["H2543"]],[36,39,["H6629"]],[39,42,["H168"]],[42,44,["H3605"]],[44,45,["H834"]],[45,50,["H5927"]],[50,54,["H6010"]],[54,56,["H5911"]]]},{"k":6001,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H4100"]],[4,7,["H5916"]],[7,10,["H3068"]],[10,12,["H5916"]],[12,14,["H2088"]],[14,15,["H3117"]],[15,17,["H3605"]],[17,18,["H3478"]],[18,19,["H5619"]],[19,22,["H68"]],[22,24,["H8313"]],[24,27,["H784"]],[27,31,["H7275"]],[31,34,["H68"]]]},{"k":6002,"v":[[0,3,["H6965"]],[3,4,["H5921"]],[4,7,["H1419"]],[7,8,["H1530"]],[8,10,["H68"]],[10,11,["H5704"]],[11,12,["H2088"]],[12,13,["H3117"]],[13,16,["H3068"]],[16,17,["H7725"]],[17,20,["H4480","H2740"]],[20,23,["H639"]],[23,24,["H5921","H3651"]],[24,26,["H8034"]],[26,28,["H1931"]],[28,29,["H4725"]],[29,31,["H7121"]],[31,33,["H6010"]],[33,35,["H5911"]],[35,36,["H5704"]],[36,37,["H2088"]],[37,38,["H3117"]]]},{"k":6003,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091"]],[6,7,["H3372"]],[7,8,["H408"]],[8,9,["H408"]],[9,12,["H2865"]],[12,13,["H3947","(H853)"]],[13,14,["H3605"]],[14,16,["H5971"]],[16,18,["H4421"]],[18,19,["H5973"]],[19,22,["H6965"]],[22,24,["H5927"]],[24,26,["H5857"]],[26,27,["H7200"]],[27,30,["H5414"]],[30,33,["H3027","(H853)"]],[33,35,["H4428"]],[35,37,["H5857"]],[37,40,["H5971"]],[40,43,["H5892"]],[43,46,["H776"]]]},{"k":6004,"v":[[0,4,["H6213"]],[4,6,["H5857"]],[6,9,["H4428"]],[9,10,["H834"]],[10,12,["H6213"]],[12,14,["H3405"]],[14,17,["H4428"]],[17,18,["H7535"]],[18,20,["H7998"]],[20,24,["H929"]],[24,31,["H962"]],[31,34,["H7760"]],[34,37,["H693"]],[37,40,["H5892"]],[40,41,["H4480","H310"]],[41,42,[]]]},{"k":6005,"v":[[0,2,["H3091"]],[2,3,["H6965"]],[3,5,["H3605"]],[5,7,["H5971"]],[7,9,["H4421"]],[9,12,["H5927"]],[12,14,["H5857"]],[14,16,["H3091"]],[16,18,["H977"]],[18,19,["H7970"]],[19,20,["H505"]],[20,21,["H1368"]],[21,22,["H376"]],[22,24,["H2428"]],[24,28,["H7971"]],[28,30,["H3915"]]]},{"k":6006,"v":[[0,3,["H6680"]],[3,5,["H559"]],[5,6,["H7200"]],[6,7,["H859"]],[7,11,["H693"]],[11,14,["H5892"]],[14,16,["H4480","H310"]],[16,18,["H5892"]],[18,19,["H7368"]],[19,20,["H408"]],[20,21,["H3966"]],[21,23,["H4480"]],[23,25,["H5892"]],[25,27,["H1961"]],[27,29,["H3605"]],[29,30,["H3559"]]]},{"k":6007,"v":[[0,2,["H589"]],[2,4,["H3605"]],[4,6,["H5971"]],[6,7,["H834"]],[7,9,["H854"]],[9,12,["H7126"]],[12,13,["H413"]],[13,15,["H5892"]],[15,21,["H1961"]],[21,22,["H3588"]],[22,25,["H3318"]],[25,26,["H7125"]],[26,28,["H834"]],[28,31,["H7223"]],[31,35,["H5127"]],[35,36,["H6440"]],[36,37,[]]]},{"k":6008,"v":[[0,5,["H3318"]],[5,6,["H310"]],[6,8,["H5704"]],[8,11,["H5423"]],[11,13,["H4480"]],[13,15,["H5892"]],[15,16,["H3588"]],[16,19,["H559"]],[19,21,["H5127"]],[21,22,["H6440"]],[22,24,["H834"]],[24,27,["H7223"]],[27,31,["H5127"]],[31,32,["H6440"]],[32,33,[]]]},{"k":6009,"v":[[0,2,["H859"]],[2,5,["H6965"]],[5,8,["H4480","H693"]],[8,11,["H3423","(H853)"]],[11,13,["H5892"]],[13,16,["H3068"]],[16,18,["H430"]],[18,20,["H5414"]],[20,24,["H3027"]]]},{"k":6010,"v":[[0,4,["H1961"]],[4,8,["H8610","(H853)"]],[8,10,["H5892"]],[10,14,["H3341","(H853)"]],[14,16,["H5892"]],[16,18,["H784"]],[18,22,["H1697"]],[22,25,["H3068"]],[25,28,["H6213"]],[28,29,["H7200"]],[29,32,["H6680"]],[32,33,[]]]},{"k":6011,"v":[[0,1,["H3091"]],[1,5,["H7971"]],[5,8,["H1980"]],[8,9,["H413"]],[9,12,["H3993"]],[12,14,["H3427"]],[14,15,["H996"]],[15,16,["H1008"]],[16,18,["H5857"]],[18,22,["H4480","H3220"]],[22,24,["H5857"]],[24,26,["H3091"]],[26,27,["H3885"]],[27,28,["H1931"]],[28,29,["H3915"]],[29,30,["H8432"]],[30,32,["H5971"]]]},{"k":6012,"v":[[0,2,["H3091"]],[2,5,["H7925"]],[5,8,["H1242"]],[8,10,["H6485","(H853)"]],[10,12,["H5971"]],[12,15,["H5927"]],[15,16,["H1931"]],[16,19,["H2205"]],[19,21,["H3478"]],[21,22,["H6440"]],[22,24,["H5971"]],[24,26,["H5857"]]]},{"k":6013,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,9,["H4421"]],[9,10,["H834"]],[10,12,["H854"]],[12,15,["H5927"]],[15,18,["H5066"]],[18,20,["H935"]],[20,21,["H5048"]],[21,23,["H5892"]],[23,25,["H2583"]],[25,29,["H4480","H6828"]],[29,31,["H5857"]],[31,36,["H1516"]],[36,37,["H996"]],[37,40,["H5857"]]]},{"k":6014,"v":[[0,3,["H3947"]],[3,5,["H2568"]],[5,6,["H505"]],[6,7,["H376"]],[7,9,["H7760"]],[9,14,["H693"]],[14,15,["H996"]],[15,16,["H1008"]],[16,18,["H5857"]],[18,22,["H4480","H3220"]],[22,25,["H5892"]]]},{"k":6015,"v":[[0,5,["H7760"]],[5,7,["H5971"]],[7,8,["(H853)"]],[8,9,["H3605"]],[9,11,["H4264"]],[11,12,["H834"]],[12,16,["H4480","H6828"]],[16,19,["H5892"]],[19,24,["H6119"]],[24,27,["H4480","H3220"]],[27,30,["H5892"]],[30,31,["H3091"]],[31,32,["H1980"]],[32,33,["H1931"]],[33,34,["H3915"]],[34,37,["H8432"]],[37,40,["H6010"]]]},{"k":6016,"v":[[0,5,["H1961"]],[5,8,["H4428"]],[8,10,["H5857"]],[10,11,["H7200"]],[11,15,["H4116"]],[15,19,["H7925"]],[19,22,["H376"]],[22,25,["H5892"]],[25,27,["H3318"]],[27,28,["H7125"]],[28,29,["H3478"]],[29,31,["H4421"]],[31,32,["H1931"]],[32,34,["H3605"]],[34,36,["H5971"]],[36,40,["H4150"]],[40,41,["H6440"]],[41,43,["H6160"]],[43,45,["H1931"]],[45,46,["H3045"]],[46,47,["H3808"]],[47,48,["H3588"]],[48,53,["H693"]],[53,56,["H4480","H310"]],[56,58,["H5892"]]]},{"k":6017,"v":[[0,2,["H3091"]],[2,4,["H3605"]],[4,5,["H3478"]],[5,11,["H5060"]],[11,12,["H6440"]],[12,15,["H5127"]],[15,18,["H1870"]],[18,21,["H4057"]]]},{"k":6018,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H834"]],[5,8,["H5857"]],[8,11,["H2199"]],[11,13,["H7291"]],[13,14,["H310"]],[14,18,["H7291"]],[18,19,["H310"]],[19,20,["H3091"]],[20,24,["H5423"]],[24,25,["H4480"]],[25,27,["H5892"]]]},{"k":6019,"v":[[0,4,["H3808"]],[4,6,["H376"]],[6,7,["H7604"]],[7,9,["H5857"]],[9,11,["H1008"]],[11,12,["H834"]],[12,15,["H3318","H3808"]],[15,16,["H310"]],[16,17,["H3478"]],[17,20,["H5800","(H853)"]],[20,22,["H5892"]],[22,23,["H6605"]],[23,25,["H7291"]],[25,26,["H310"]],[26,27,["H3478"]]]},{"k":6020,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091"]],[6,8,["H5186"]],[8,10,["H3591"]],[10,11,["H834"]],[11,15,["H3027"]],[15,16,["H413"]],[16,17,["H5857"]],[17,18,["H3588"]],[18,21,["H5414"]],[21,25,["H3027"]],[25,27,["H3091"]],[27,29,["H5186"]],[29,31,["H3591"]],[31,32,["H834"]],[32,37,["H3027"]],[37,38,["H413"]],[38,40,["H5892"]]]},{"k":6021,"v":[[0,3,["H693"]],[3,4,["H6965"]],[4,5,["H4120"]],[5,9,["H4480","H4725"]],[9,12,["H7323"]],[12,19,["H5186"]],[19,21,["H3027"]],[21,24,["H935"]],[24,27,["H5892"]],[27,29,["H3920"]],[29,32,["H4116"]],[32,34,["H3341","(H853)"]],[34,36,["H5892"]],[36,38,["H784"]]]},{"k":6022,"v":[[0,4,["H376"]],[4,6,["H5857"]],[6,7,["H6437"]],[7,8,["H310"]],[8,11,["H7200"]],[11,13,["H2009"]],[13,15,["H6227"]],[15,18,["H5892"]],[18,20,["H5927"]],[20,22,["H8064"]],[22,25,["H1961"]],[25,26,["H3808"]],[26,27,["H3027"]],[27,29,["H5127"]],[29,31,["H2008"]],[31,34,["H2008"]],[34,37,["H5971"]],[37,39,["H5127"]],[39,42,["H4057"]],[42,44,["H2015"]],[44,45,["H413"]],[45,47,["H7291"]]]},{"k":6023,"v":[[0,3,["H3091"]],[3,5,["H3605"]],[5,6,["H3478"]],[6,7,["H7200"]],[7,8,["H3588"]],[8,10,["H693"]],[10,12,["H3920","(H853)"]],[12,14,["H5892"]],[14,16,["H3588"]],[16,18,["H6227"]],[18,21,["H5892"]],[21,22,["H5927"]],[22,26,["H7725"]],[26,28,["H5221","(H853)"]],[28,30,["H376"]],[30,32,["H5857"]]]},{"k":6024,"v":[[0,3,["H428"]],[3,5,["H3318"]],[5,6,["H4480"]],[6,8,["H5892"]],[8,9,["H7125"]],[9,13,["H1961"]],[13,16,["H8432"]],[16,18,["H3478"]],[18,19,["H428"]],[19,22,["H4480","H2088"]],[22,24,["H428"]],[24,27,["H4480","H2088"]],[27,30,["H5221"]],[30,32,["H5704"]],[32,36,["H1115"]],[36,39,["H7604"]],[39,41,["H6412"]]]},{"k":6025,"v":[[0,3,["H4428"]],[3,5,["H5857"]],[5,7,["H8610"]],[7,8,["H2416"]],[8,10,["H7126"]],[10,12,["H413"]],[12,13,["H3091"]]]},{"k":6026,"v":[[0,5,["H1961"]],[5,7,["H3478"]],[7,11,["H3615"]],[11,13,["H2026","(H853)"]],[13,14,["H3605"]],[14,16,["H3427"]],[16,18,["H5857"]],[18,21,["H7704"]],[21,24,["H4057"]],[24,25,["H834"]],[25,27,["H7291"]],[27,33,["H3605"]],[33,34,["H5307"]],[34,37,["H6310"]],[37,40,["H2719"]],[40,41,["H5704"]],[41,44,["H8552"]],[44,46,["H3605"]],[46,48,["H3478"]],[48,49,["H7725"]],[49,51,["H5857"]],[51,53,["H5221"]],[53,57,["H6310"]],[57,60,["H2719"]]]},{"k":6027,"v":[[0,4,["H1961"]],[4,6,["H3605"]],[6,8,["H5307"]],[8,9,["H1931"]],[9,10,["H3117"]],[10,13,["H4480","H376"]],[13,15,["H802"]],[15,17,["H8147","H6240"]],[17,18,["H505"]],[18,20,["H3605"]],[20,22,["H376"]],[22,24,["H5857"]]]},{"k":6028,"v":[[0,2,["H3091"]],[2,3,["H7725"]],[3,4,["H3808"]],[4,6,["H3027"]],[6,8,["H834"]],[8,11,["H5186"]],[11,13,["H3591"]],[13,14,["H5704","H834"]],[14,18,["H2763","(H853)"]],[18,19,["H3605"]],[19,21,["H3427"]],[21,23,["H5857"]]]},{"k":6029,"v":[[0,1,["H7535"]],[1,3,["H929"]],[3,6,["H7998"]],[6,8,["H1931"]],[8,9,["H5892"]],[9,10,["H3478"]],[10,14,["H962"]],[14,20,["H1697"]],[20,23,["H3068"]],[23,24,["H834"]],[24,26,["H6680","(H853)"]],[26,27,["H3091"]]]},{"k":6030,"v":[[0,2,["H3091"]],[2,3,["H8313","(H853)"]],[3,4,["H5857"]],[4,6,["H7760"]],[6,9,["H8510"]],[9,11,["H5769"]],[11,14,["H8077"]],[14,15,["H5704"]],[15,16,["H2088"]],[16,17,["H3117"]]]},{"k":6031,"v":[[0,3,["H4428"]],[3,5,["H5857"]],[5,7,["H8518"]],[7,8,["H5921"]],[8,10,["H6086"]],[10,11,["H5704"]],[11,12,["H6256","H6153"]],[12,18,["H8121"]],[18,20,["H935"]],[20,21,["H3091"]],[21,22,["H6680"]],[22,29,["H3381","(H853)","H5038"]],[29,30,["H4480"]],[30,32,["H6086"]],[32,34,["H7993"]],[34,36,["H413"]],[36,38,["H6607"]],[38,41,["H8179"]],[41,44,["H5892"]],[44,46,["H6965"]],[46,47,["H5921"]],[47,49,["H1419"]],[49,50,["H1530"]],[50,52,["H68"]],[52,55,["H5704"]],[55,56,["H2088"]],[56,57,["H3117"]]]},{"k":6032,"v":[[0,1,["H227"]],[1,2,["H3091"]],[2,3,["H1129"]],[3,5,["H4196"]],[5,8,["H3068"]],[8,9,["H430"]],[9,11,["H3478"]],[11,13,["H2022"]],[13,14,["H5858"]]]},{"k":6033,"v":[[0,1,["H834"]],[1,2,["H4872"]],[2,4,["H5650"]],[4,7,["H3068"]],[7,8,["H6680","(H853)"]],[8,10,["H1121"]],[10,12,["H3478"]],[12,16,["H3789"]],[16,19,["H5612"]],[19,22,["H8451"]],[22,24,["H4872"]],[24,26,["H4196"]],[26,28,["H8003"]],[28,29,["H68"]],[29,30,["H5921"]],[30,31,["H834"]],[31,32,["H3808"]],[32,36,["H5130"]],[36,38,["H1270"]],[38,41,["H5927"]],[41,42,["H5921"]],[42,44,["H5930"]],[44,47,["H3068"]],[47,49,["H2076"]],[49,51,["H8002"]]]},{"k":6034,"v":[[0,3,["H3789"]],[3,4,["H8033"]],[4,5,["H5921"]],[5,7,["H68","(H853)"]],[7,9,["H4932"]],[9,12,["H8451"]],[12,14,["H4872"]],[14,15,["H834"]],[15,17,["H3789"]],[17,20,["H6440"]],[20,23,["H1121"]],[23,25,["H3478"]]]},{"k":6035,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,6,["H2205"]],[6,8,["H7860"]],[8,11,["H8199"]],[11,12,["H5975"]],[12,15,["H4480","H2088"]],[15,17,["H727"]],[17,21,["H4480","H2088"]],[21,22,["H5048"]],[22,24,["H3548"]],[24,26,["H3881"]],[26,28,["H5375"]],[28,30,["H727"]],[30,33,["H1285"]],[33,36,["H3068"]],[36,40,["H1616"]],[40,47,["H249"]],[47,48,["H2677"]],[48,51,["H413"]],[51,52,["H4136"]],[52,53,["H2022"]],[53,54,["H1630"]],[54,56,["H2677"]],[56,59,["H413"]],[59,60,["H4136"]],[60,61,["H2022"]],[61,62,["H5858"]],[62,63,["H834"]],[63,64,["H4872"]],[64,66,["H5650"]],[66,69,["H3068"]],[69,71,["H6680"]],[71,72,["H7223"]],[72,76,["H1288","(H853)"]],[76,78,["H5971"]],[78,80,["H3478"]]]},{"k":6036,"v":[[0,2,["H310","H3651"]],[2,4,["H7121","(H853)"]],[4,5,["H3605"]],[5,7,["H1697"]],[7,10,["H8451"]],[10,12,["H1293"]],[12,14,["H7045"]],[14,17,["H3605"]],[17,20,["H3789"]],[20,23,["H5612"]],[23,26,["H8451"]]]},{"k":6037,"v":[[0,2,["H1961"]],[2,3,["H3808"]],[3,5,["H1697"]],[5,7,["H4480","H3605"]],[7,8,["H834"]],[8,9,["H4872"]],[9,10,["H6680"]],[10,11,["H834"]],[11,12,["H3091"]],[12,13,["H7121"]],[13,14,["H3808"]],[14,15,["H5048"]],[15,16,["H3605"]],[16,18,["H6951"]],[18,20,["H3478"]],[20,23,["H802"]],[23,26,["H2945"]],[26,30,["H1616"]],[30,33,["H1980"]],[33,34,["H7130"]],[34,35,[]]]},{"k":6038,"v":[[0,5,["H1961"]],[5,7,["H3605"]],[7,9,["H4428"]],[9,10,["H834"]],[10,14,["H5676"]],[14,15,["H3383"]],[15,18,["H2022"]],[18,22,["H8219"]],[22,25,["H3605"]],[25,27,["H2348"]],[27,30,["H1419"]],[30,31,["H3220"]],[31,32,["H413"]],[32,33,["H4136"]],[33,34,["H3844"]],[34,36,["H2850"]],[36,39,["H567"]],[39,41,["H3669"]],[41,43,["H6522"]],[43,45,["H2340"]],[45,48,["H2983"]],[48,49,["H8085"]],[49,50,[]]]},{"k":6039,"v":[[0,4,["H6908"]],[4,5,["H3162"]],[5,7,["H3898"]],[7,8,["H5973"]],[8,9,["H3091"]],[9,11,["H5973"]],[11,12,["H3478"]],[12,14,["H259"]],[14,15,["H6310"]]]},{"k":6040,"v":[[0,4,["H3427"]],[4,6,["H1391"]],[6,7,["H8085","(H853)"]],[7,8,["H834"]],[8,9,["H3091"]],[9,11,["H6213"]],[11,13,["H3405"]],[13,16,["H5857"]]]},{"k":6041,"v":[[0,1,["H1992"]],[1,3,["H6213"]],[3,4,["H6195"]],[4,6,["H1980"]],[6,14,["H6737"]],[14,16,["H3947"]],[16,17,["H1087"]],[17,18,["H8242"]],[18,21,["H2543"]],[21,23,["H3196"]],[23,24,["H4997"]],[24,25,["H1087"]],[25,27,["H1234"]],[27,30,["H6887"]]]},{"k":6042,"v":[[0,2,["H1087"]],[2,3,["H5275"]],[3,5,["H2921"]],[5,8,["H7272"]],[8,10,["H1087"]],[10,11,["H8008"]],[11,12,["H5921"]],[12,15,["H3605"]],[15,17,["H3899"]],[17,20,["H6718"]],[20,22,["H3001"]],[22,24,["H5350"]]]},{"k":6043,"v":[[0,3,["H1980"]],[3,4,["H413"]],[4,5,["H3091"]],[5,6,["H413"]],[6,8,["H4264"]],[8,10,["H1537"]],[10,12,["H559"]],[12,13,["H413"]],[13,16,["H413"]],[16,18,["H376"]],[18,20,["H3478"]],[20,23,["H935"]],[23,27,["H4480","H776","H7350"]],[27,28,["H6258"]],[28,30,["H3772"]],[30,33,["H1285"]],[33,35,[]]]},{"k":6044,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H2340"]],[9,10,["H194"]],[10,11,["H859"]],[11,12,["H3427"]],[12,13,["H7130"]],[13,16,["H349"]],[16,19,["H3772"]],[19,21,["H1285"]],[21,23,[]]]},{"k":6045,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H3091"]],[5,6,["H587"]],[6,9,["H5650"]],[9,11,["H3091"]],[11,12,["H559"]],[12,13,["H413"]],[13,15,["H4310"]],[15,17,["H859"]],[17,20,["H4480","H370"]],[20,21,["H935"]],[21,22,[]]]},{"k":6046,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,10,["H4480","H776","H3966","H7350"]],[10,12,["H5650"]],[12,14,["H935"]],[14,18,["H8034"]],[18,21,["H3068"]],[21,23,["H430"]],[23,24,["H3588"]],[24,27,["H8085"]],[27,29,["H8089"]],[29,33,["H3605"]],[33,34,["H834"]],[34,36,["H6213"]],[36,38,["H4714"]]]},{"k":6047,"v":[[0,2,["H3605"]],[2,3,["H834"]],[3,5,["H6213"]],[5,8,["H8147"]],[8,9,["H4428"]],[9,12,["H567"]],[12,13,["H834"]],[13,15,["H5676"]],[15,16,["H3383"]],[16,18,["H5511"]],[18,19,["H4428"]],[19,21,["H2809"]],[21,24,["H5747"]],[24,25,["H4428"]],[25,27,["H1316"]],[27,28,["H834"]],[28,31,["H6252"]]]},{"k":6048,"v":[[0,3,["H2205"]],[3,5,["H3605"]],[5,7,["H3427"]],[7,10,["H776"]],[10,11,["H559"]],[11,12,["H413"]],[12,14,["H559"]],[14,15,["H3947"]],[15,16,["H6720"]],[16,18,["H3027"]],[18,21,["H1870"]],[21,23,["H1980"]],[23,25,["H7125"]],[25,28,["H559"]],[28,29,["H413"]],[29,31,["H587"]],[31,34,["H5650"]],[34,36,["H6258"]],[36,37,["H3772"]],[37,40,["H1285"]],[40,42,[]]]},{"k":6049,"v":[[0,1,["H2088"]],[1,3,["H3899"]],[3,6,["H2525"]],[6,9,["H6679"]],[9,13,["H4480","H1004"]],[13,16,["H3117"]],[16,19,["H3318"]],[19,21,["H1980"]],[21,22,["H413"]],[22,25,["H6258"]],[25,26,["H2009"]],[26,29,["H3001"]],[29,32,["H1961"]],[32,33,["H5350"]]]},{"k":6050,"v":[[0,2,["H428"]],[2,3,["H4997"]],[3,5,["H3196"]],[5,6,["H834"]],[6,8,["H4390"]],[8,10,["H2319"]],[10,12,["H2009"]],[12,15,["H1234"]],[15,17,["H428"]],[17,19,["H8008"]],[19,22,["H5275"]],[22,25,["H1086"]],[25,30,["H3966"]],[30,31,["H4480","H7230"]],[31,32,["H1870"]]]},{"k":6051,"v":[[0,3,["H376"]],[3,4,["H3947"]],[4,7,["H4480","H6718"]],[7,9,["H7592"]],[9,10,["H3808"]],[10,14,["H6310"]],[14,17,["H3068"]]]},{"k":6052,"v":[[0,2,["H3091"]],[2,3,["H6213"]],[3,4,["H7965"]],[4,8,["H6213"]],[8,10,["H1285"]],[10,16,["H2421"]],[16,19,["H5387"]],[19,22,["H5712"]],[22,23,["H7650"]],[23,25,[]]]},{"k":6053,"v":[[0,5,["H1961"]],[5,8,["H4480","H7097"]],[8,10,["H7969"]],[10,11,["H3117"]],[11,12,["H310","H834"]],[12,15,["H3772"]],[15,17,["H1285"]],[17,22,["H8085"]],[22,23,["H3588"]],[23,24,["H1992"]],[24,26,["H413"]],[26,27,["H7138"]],[27,30,["H1992"]],[30,31,["H3427"]],[31,32,["H7130"]],[32,33,[]]]},{"k":6054,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5265"]],[6,8,["H935"]],[8,9,["H413"]],[9,11,["H5892"]],[11,14,["H7992"]],[14,15,["H3117"]],[15,18,["H5892"]],[18,20,["H1391"]],[20,22,["H3716"]],[22,24,["H881"]],[24,26,["H7157"]]]},{"k":6055,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5221"]],[6,8,["H3808"]],[8,9,["H3588"]],[9,11,["H5387"]],[11,14,["H5712"]],[14,16,["H7650"]],[16,21,["H3068"]],[21,22,["H430"]],[22,24,["H3478"]],[24,26,["H3605"]],[26,28,["H5712"]],[28,29,["H3885"]],[29,30,["H5921"]],[30,32,["H5387"]]]},{"k":6056,"v":[[0,2,["H3605"]],[2,4,["H5387"]],[4,5,["H559"]],[5,6,["H413"]],[6,7,["H3605"]],[7,9,["H5712"]],[9,10,["H587"]],[10,12,["H7650"]],[12,17,["H3068"]],[17,18,["H430"]],[18,20,["H3478"]],[20,21,["H6258"]],[21,24,["H3201"]],[24,25,["H3808"]],[25,26,["H5060"]],[26,27,[]]]},{"k":6057,"v":[[0,1,["H2063"]],[1,4,["H6213"]],[4,12,["H2421","(H853)"]],[12,13,["H3808"]],[13,14,["H7110"]],[14,15,["H1961"]],[15,16,["H5921"]],[16,19,["H5921"]],[19,21,["H7621"]],[21,22,["H834"]],[22,24,["H7650"]],[24,26,[]]]},{"k":6058,"v":[[0,3,["H5387"]],[3,4,["H559"]],[4,5,["H413"]],[5,9,["H2421"]],[9,13,["H1961"]],[13,14,["H2404"]],[14,16,["H6086"]],[16,18,["H7579"]],[18,20,["H4325"]],[20,22,["H3605"]],[22,24,["H5712"]],[24,25,["H834"]],[25,27,["H5387"]],[27,29,["H1696"]],[29,30,[]]]},{"k":6059,"v":[[0,2,["H3091"]],[2,3,["H7121"]],[3,8,["H1696"]],[8,9,["H413"]],[9,11,["H559"]],[11,12,["H4100"]],[12,15,["H7411"]],[15,17,["H559"]],[17,18,["H587"]],[18,20,["H3966"]],[20,21,["H7350"]],[21,22,["H4480"]],[22,25,["H859"]],[25,26,["H3427"]],[26,27,["H7130"]],[27,28,[]]]},{"k":6060,"v":[[0,1,["H6258"]],[1,3,["H859"]],[3,5,["H779"]],[5,9,["H3808"]],[9,10,["H4480"]],[10,13,["H3772"]],[13,16,["H5650"]],[16,18,["H2404"]],[18,20,["H6086"]],[20,22,["H7579"]],[22,24,["H4325"]],[24,27,["H1004"]],[27,30,["H430"]]]},{"k":6061,"v":[[0,3,["H6030","(H853)"]],[3,4,["H3091"]],[4,6,["H559"]],[6,7,["H3588"]],[7,11,["H5046","H5046"]],[11,13,["H5650","(H853)"]],[13,15,["H834"]],[15,17,["H3068"]],[17,19,["H430"]],[19,20,["H6680"]],[20,22,["H5650","(H853)"]],[22,23,["H4872"]],[23,25,["H5414"]],[25,27,["H3605"]],[27,29,["H776"]],[29,32,["H8045","(H853)"]],[32,33,["H3605"]],[33,35,["H3427"]],[35,38,["H776"]],[38,40,["H4480","H6440"]],[40,45,["H3966"]],[45,46,["H3372"]],[46,49,["H5315"]],[49,51,["H4480","H6440"]],[51,55,["H6213","(H853)"]],[55,56,["H2088"]],[56,57,["H1697"]]]},{"k":6062,"v":[[0,2,["H6258"]],[2,3,["H2009"]],[3,8,["H3027"]],[8,12,["H2896"]],[12,14,["H3477"]],[14,16,["H5869"]],[16,18,["H6213"]],[18,21,["H6213"]]]},{"k":6063,"v":[[0,2,["H3651"]],[2,3,["H6213"]],[3,8,["H5337"]],[8,13,["H4480","H3027"]],[13,16,["H1121"]],[16,18,["H3478"]],[18,21,["H2026"]],[21,23,["H3808"]]]},{"k":6064,"v":[[0,2,["H3091"]],[2,3,["H5414"]],[3,5,["H1931"]],[5,6,["H3117"]],[6,7,["H2404"]],[7,9,["H6086"]],[9,11,["H7579"]],[11,13,["H4325"]],[13,16,["H5712"]],[16,20,["H4196"]],[20,23,["H3068"]],[23,25,["H5704"]],[25,26,["H2088"]],[26,27,["H3117"]],[27,28,["H413"]],[28,30,["H4725"]],[30,31,["H834"]],[31,34,["H977"]]]},{"k":6065,"v":[[0,5,["H1961"]],[5,7,["H139"]],[7,8,["H4428"]],[8,10,["H3389"]],[10,12,["H8085"]],[12,13,["H3588"]],[13,14,["H3091"]],[14,16,["H3920","(H853)"]],[16,17,["H5857"]],[17,21,["H2763"]],[21,23,["H834"]],[23,26,["H6213"]],[26,28,["H3405"]],[28,31,["H4428"]],[31,32,["H3651"]],[32,35,["H6213"]],[35,37,["H5857"]],[37,40,["H4428"]],[40,42,["H3588"]],[42,44,["H3427"]],[44,46,["H1391"]],[46,49,["H7999"]],[49,50,["H854"]],[50,51,["H3478"]],[51,53,["H1961"]],[53,54,["H7130"]],[54,55,[]]]},{"k":6066,"v":[[0,3,["H3372"]],[3,4,["H3966"]],[4,5,["H3588"]],[5,6,["H1391"]],[6,9,["H1419"]],[9,10,["H5892"]],[10,12,["H259"]],[12,15,["H4467"]],[15,16,["H5892"]],[16,18,["H3588"]],[18,19,["H1931"]],[19,21,["H1419"]],[21,22,["H4480"]],[22,23,["H5857"]],[23,25,["H3605"]],[25,27,["H376"]],[27,30,["H1368"]]]},{"k":6067,"v":[[0,2,["H139"]],[2,3,["H4428"]],[3,5,["H3389"]],[5,6,["H7971"]],[6,7,["H413"]],[7,8,["H1944"]],[8,9,["H4428"]],[9,11,["H2275"]],[11,13,["H413"]],[13,14,["H6502"]],[14,15,["H4428"]],[15,17,["H3412"]],[17,19,["H413"]],[19,20,["H3309"]],[20,21,["H4428"]],[21,23,["H3923"]],[23,25,["H413"]],[25,26,["H1688"]],[26,27,["H4428"]],[27,29,["H5700"]],[29,30,["H559"]]]},{"k":6068,"v":[[0,2,["H5927"]],[2,3,["H413"]],[3,6,["H5826"]],[6,11,["H5221","(H853)"]],[11,12,["H1391"]],[12,13,["H3588"]],[13,17,["H7999"]],[17,18,["H854"]],[18,19,["H3091"]],[19,21,["H854"]],[21,23,["H1121"]],[23,25,["H3478"]]]},{"k":6069,"v":[[0,3,["H2568"]],[3,4,["H4428"]],[4,7,["H567"]],[7,9,["H4428"]],[9,11,["H3389"]],[11,13,["H4428"]],[13,15,["H2275"]],[15,17,["H4428"]],[17,19,["H3412"]],[19,21,["H4428"]],[21,23,["H3923"]],[23,25,["H4428"]],[25,27,["H5700"]],[27,30,["H622"]],[30,33,["H5927"]],[33,34,["H1992"]],[34,36,["H3605"]],[36,38,["H4264"]],[38,40,["H2583"]],[40,41,["H5921"]],[41,42,["H1391"]],[42,45,["H3898"]],[45,46,["H5921"]],[46,47,[]]]},{"k":6070,"v":[[0,3,["H376"]],[3,5,["H1391"]],[5,6,["H7971"]],[6,7,["H413"]],[7,8,["H3091"]],[8,9,["H413"]],[9,11,["H4264"]],[11,13,["H1537"]],[13,14,["H559"]],[14,15,["H7503"]],[15,16,["H408"]],[16,18,["H3027"]],[18,21,["H4480","H5650"]],[21,23,["H5927"]],[23,24,["H413"]],[24,26,["H4120"]],[26,28,["H3467"]],[28,31,["H5826"]],[31,33,["H3588"]],[33,34,["H3605"]],[34,36,["H4428"]],[36,39,["H567"]],[39,41,["H3427"]],[41,44,["H2022"]],[44,47,["H6908"]],[47,48,["H413"]],[48,49,[]]]},{"k":6071,"v":[[0,2,["H3091"]],[2,3,["H5927"]],[3,4,["H4480"]],[4,5,["H1537"]],[5,6,["H1931"]],[6,8,["H3605"]],[8,10,["H5971"]],[10,12,["H4421"]],[12,13,["H5973"]],[13,16,["H3605"]],[16,19,["H1368"]],[19,21,["H2428"]]]},{"k":6072,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091"]],[6,7,["H3372"]],[7,9,["H408"]],[9,10,["H3588"]],[10,13,["H5414"]],[13,17,["H3027"]],[17,20,["H3808"]],[20,22,["H376"]],[22,23,["H4480"]],[23,25,["H5975"]],[25,26,["H6440"]],[26,27,[]]]},{"k":6073,"v":[[0,1,["H3091"]],[1,3,["H935"]],[3,4,["H413"]],[4,6,["H6597"]],[6,9,["H5927"]],[9,10,["H4480"]],[10,11,["H1537"]],[11,12,["H3605"]],[12,13,["H3915"]]]},{"k":6074,"v":[[0,3,["H3068"]],[3,4,["H2000"]],[4,6,["H6440"]],[6,7,["H3478"]],[7,9,["H5221"]],[9,13,["H1419"]],[13,14,["H4347"]],[14,16,["H1391"]],[16,18,["H7291"]],[18,22,["H1870"]],[22,25,["H4608"]],[25,27,["H1032"]],[27,29,["H5221"]],[29,31,["H5704"]],[31,32,["H5825"]],[32,34,["H5704"]],[34,35,["H4719"]]]},{"k":6075,"v":[[0,5,["H1961"]],[5,8,["H5127"]],[8,10,["H4480","H6440"]],[10,11,["H3478"]],[11,17,["H4174"]],[17,19,["H1032"]],[19,22,["H3068"]],[22,24,["H7993"]],[24,25,["H1419"]],[25,26,["H68"]],[26,27,["H4480"]],[27,28,["H8064"]],[28,29,["H5921"]],[29,31,["H5704"]],[31,32,["H5825"]],[32,35,["H4191"]],[35,38,["H7227"]],[38,39,["H834"]],[39,40,["H4191"]],[40,42,["H1259","H68"]],[42,45,["H4480","H834"]],[45,47,["H1121"]],[47,49,["H3478"]],[49,50,["H2026"]],[50,53,["H2719"]]]},{"k":6076,"v":[[0,1,["H227"]],[1,2,["H1696"]],[2,3,["H3091"]],[3,6,["H3068"]],[6,9,["H3117"]],[9,12,["H3068"]],[12,14,["H5414","(H853)"]],[14,16,["H567"]],[16,17,["H6440"]],[17,19,["H1121"]],[19,21,["H3478"]],[21,24,["H559"]],[24,27,["H5869"]],[27,29,["H3478"]],[29,30,["H8121"]],[30,33,["H1826"]],[33,35,["H1391"]],[35,38,["H3394"]],[38,41,["H6010"]],[41,43,["H357"]]]},{"k":6077,"v":[[0,3,["H8121"]],[3,5,["H1826"]],[5,8,["H3394"]],[8,9,["H5975"]],[9,10,["H5704"]],[10,12,["H1471"]],[12,14,["H5358"]],[14,18,["H341"]],[18,20,["H3808"]],[20,21,["H1931"]],[21,22,["H3789"]],[22,23,["H5921"]],[23,25,["H5612"]],[25,27,["H3477"]],[27,30,["H8121"]],[30,31,["H5975"]],[31,35,["H2677"]],[35,37,["H8064"]],[37,39,["H213"]],[39,40,["H3808"]],[40,43,["H935"]],[43,46,["H8549"]],[46,47,["H3117"]]]},{"k":6078,"v":[[0,3,["H1961"]],[3,4,["H3808"]],[4,5,["H3117"]],[5,7,["H1931"]],[7,8,["H6440"]],[8,11,["H310"]],[11,15,["H3068"]],[15,16,["H8085"]],[16,19,["H6963"]],[19,22,["H376"]],[22,23,["H3588"]],[23,25,["H3068"]],[25,26,["H3898"]],[26,28,["H3478"]]]},{"k":6079,"v":[[0,2,["H3091"]],[2,3,["H7725"]],[3,5,["H3605"]],[5,6,["H3478"]],[6,7,["H5973"]],[7,9,["H413"]],[9,11,["H4264"]],[11,13,["H1537"]]]},{"k":6080,"v":[[0,2,["H428"]],[2,3,["H2568"]],[3,4,["H4428"]],[4,5,["H5127"]],[5,8,["H2244"]],[8,11,["H4631"]],[11,13,["H4719"]]]},{"k":6081,"v":[[0,4,["H5046"]],[4,5,["H3091"]],[5,6,["H559"]],[6,8,["H2568"]],[8,9,["H4428"]],[9,11,["H4672"]],[11,12,["H2244"]],[12,15,["H4631"]],[15,17,["H4719"]]]},{"k":6082,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H1556"]],[4,5,["H1419"]],[5,6,["H68"]],[6,7,["H413"]],[7,9,["H6310"]],[9,12,["H4631"]],[12,14,["H6485"]],[14,15,["H376"]],[15,16,["H5921"]],[16,20,["H8104"]],[20,21,[]]]},{"k":6083,"v":[[0,2,["H5975"]],[2,3,["H859"]],[3,4,["H408"]],[4,6,["H7291"]],[6,7,["H310"]],[7,9,["H341"]],[9,13,["H2179"]],[13,16,["H5414"]],[16,18,["H408"]],[18,20,["H935"]],[20,21,["H413"]],[21,23,["H5892"]],[23,24,["H3588"]],[24,26,["H3068"]],[26,28,["H430"]],[28,30,["H5414"]],[30,34,["H3027"]]]},{"k":6084,"v":[[0,5,["H1961"]],[5,7,["H3091"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,16,["H3615"]],[16,18,["H5221"]],[18,22,["H3966"]],[22,23,["H1419"]],[23,24,["H4347"]],[24,25,["H5704"]],[25,28,["H8552"]],[28,31,["H8300"]],[31,33,["H8277"]],[33,34,["H4480"]],[34,36,["H935"]],[36,37,["H413"]],[37,38,["H4013"]],[38,39,["H5892"]]]},{"k":6085,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H7725"]],[5,6,["H413"]],[6,8,["H4264"]],[8,9,["H413"]],[9,10,["H3091"]],[10,12,["H4719"]],[12,14,["H7965"]],[14,15,["H3808"]],[15,16,["H2782","(H853)"]],[16,18,["H3956"]],[18,20,["H376"]],[20,23,["H1121"]],[23,25,["H3478"]]]},{"k":6086,"v":[[0,2,["H559"]],[2,3,["H3091"]],[3,4,["H6605","(H853)"]],[4,6,["H6310"]],[6,9,["H4631"]],[9,12,["H3318","(H853)"]],[12,13,["H428"]],[13,14,["H2568"]],[14,15,["H4428"]],[15,16,["H413"]],[16,19,["H4480"]],[19,21,["H4631"]]]},{"k":6087,"v":[[0,3,["H6213"]],[3,4,["H3651"]],[4,7,["H3318","(H853)"]],[7,8,["H428"]],[8,9,["H2568"]],[9,10,["H4428"]],[10,11,["H413"]],[11,14,["H4480"]],[14,16,["H4631","(H853)"]],[16,18,["H4428"]],[18,20,["H3389","(H853)"]],[20,22,["H4428"]],[22,24,["H2275","(H853)"]],[24,26,["H4428"]],[26,28,["H3412","(H853)"]],[28,30,["H4428"]],[30,32,["H3923"]],[32,33,["(H853)"]],[33,35,["H4428"]],[35,37,["H5700"]]]},{"k":6088,"v":[[0,5,["H1961"]],[5,9,["H3318","(H853)"]],[9,10,["H428"]],[10,11,["H4428"]],[11,12,["H413"]],[12,13,["H3091"]],[13,15,["H3091"]],[15,16,["H7121"]],[16,17,["H413"]],[17,18,["H3605"]],[18,20,["H376"]],[20,22,["H3478"]],[22,24,["H559"]],[24,25,["H413"]],[25,27,["H7101"]],[27,30,["H376"]],[30,32,["H4421"]],[32,34,["H1980"]],[34,35,["H854"]],[35,38,["H7126"]],[38,39,["H7760","(H853)"]],[39,41,["H7272"]],[41,42,["H5921"]],[42,44,["H6677"]],[44,46,["H428"]],[46,47,["H4428"]],[47,51,["H7126"]],[51,53,["H7760","(H853)"]],[53,55,["H7272"]],[55,56,["H5921"]],[56,58,["H6677"]],[58,60,[]]]},{"k":6089,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3372"]],[6,7,["H408"]],[7,8,["H408"]],[8,10,["H2865"]],[10,12,["H2388"]],[12,16,["H553"]],[16,17,["H3588"]],[17,18,["H3602"]],[18,21,["H3068"]],[21,22,["H6213"]],[22,24,["H3605"]],[24,26,["H341"]],[26,28,["H834","(H853)"]],[28,29,["H859"]],[29,30,["H3898"]]]},{"k":6090,"v":[[0,2,["H310","H3651"]],[2,3,["H3091"]],[3,4,["H5221"]],[4,7,["H4191"]],[7,10,["H8518"]],[10,12,["H5921"]],[12,13,["H2568"]],[13,14,["H6086"]],[14,17,["H1961"]],[17,18,["H8518"]],[18,19,["H5921"]],[19,21,["H6086"]],[21,22,["H5704"]],[22,24,["H6153"]]]},{"k":6091,"v":[[0,5,["H1961"]],[5,8,["H6256"]],[8,12,["H935"]],[12,15,["H8121"]],[15,17,["H3091"]],[17,18,["H6680"]],[18,23,["H3381"]],[23,26,["H4480","H5921","H6086"]],[26,28,["H7993"]],[28,30,["H413"]],[30,32,["H4631"]],[32,33,["H834","H8033"]],[33,37,["H2244"]],[37,39,["H7760"]],[39,40,["H1419"]],[40,41,["H68"]],[41,42,["H5921"]],[42,44,["H4631"]],[44,45,["H6310"]],[45,48,["H5704"]],[48,49,["H2088"]],[49,50,["H6106"]],[50,51,["H3117"]]]},{"k":6092,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,4,["H3091"]],[4,5,["H3920"]],[5,6,["H4719"]],[6,8,["H5221"]],[8,12,["H6310"]],[12,15,["H2719"]],[15,18,["H4428"]],[18,22,["H2763"]],[22,25,["H3605"]],[25,27,["H5315"]],[27,28,["H834"]],[28,32,["H7604"]],[32,33,["H3808"]],[33,34,["H8300"]],[34,37,["H6213"]],[37,40,["H4428"]],[40,42,["H4719"]],[42,43,["H834"]],[43,45,["H6213"]],[45,48,["H4428"]],[48,50,["H3405"]]]},{"k":6093,"v":[[0,2,["H3091"]],[2,3,["H5674"]],[3,5,["H4480","H4719"]],[5,7,["H3605"]],[7,8,["H3478"]],[8,9,["H5973"]],[9,12,["H3841"]],[12,14,["H3898"]],[14,15,["H5973"]],[15,16,["H3841"]]]},{"k":6094,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,6,["H1571"]],[6,9,["H4428"]],[9,13,["H3027"]],[13,15,["H3478"]],[15,18,["H5221"]],[18,22,["H6310"]],[22,25,["H2719"]],[25,27,["H3605"]],[27,29,["H5315"]],[29,30,["H834"]],[30,34,["H7604"]],[34,35,["H3808"]],[35,36,["H8300"]],[36,40,["H6213"]],[40,43,["H4428"]],[43,45,["H834"]],[45,47,["H6213"]],[47,50,["H4428"]],[50,52,["H3405"]]]},{"k":6095,"v":[[0,2,["H3091"]],[2,3,["H5674"]],[3,5,["H4480","H3841"]],[5,7,["H3605"]],[7,8,["H3478"]],[8,9,["H5973"]],[9,12,["H3923"]],[12,14,["H2583"]],[14,15,["H5921"]],[15,18,["H3898"]],[18,20,[]]]},{"k":6096,"v":[[0,3,["H3068"]],[3,4,["H5414","(H853)"]],[4,5,["H3923"]],[5,8,["H3027"]],[8,10,["H3478"]],[10,12,["H3920"]],[12,16,["H8145"]],[16,17,["H3117"]],[17,19,["H5221"]],[19,23,["H6310"]],[23,26,["H2719"]],[26,28,["H3605"]],[28,30,["H5315"]],[30,31,["H834"]],[31,36,["H3605"]],[36,37,["H834"]],[37,40,["H6213"]],[40,42,["H3841"]]]},{"k":6097,"v":[[0,1,["H227"]],[1,2,["H2036"]],[2,3,["H4428"]],[3,5,["H1507"]],[5,7,["H5927"]],[7,9,["H5826","(H853)"]],[9,10,["H3923"]],[10,12,["H3091"]],[12,13,["H5221"]],[13,17,["H5971"]],[17,18,["H5704"]],[18,21,["H7604"]],[21,23,["H1115"]],[23,24,["H8300"]]]},{"k":6098,"v":[[0,3,["H4480","H3923"]],[3,4,["H3091"]],[4,5,["H5674"]],[5,7,["H5700"]],[7,9,["H3605"]],[9,10,["H3478"]],[10,11,["H5973"]],[11,15,["H2583"]],[15,16,["H5921"]],[16,19,["H3898"]],[19,20,["H5921"]],[20,21,[]]]},{"k":6099,"v":[[0,3,["H3920"]],[3,6,["H1931"]],[6,7,["H3117"]],[7,9,["H5221"]],[9,13,["H6310"]],[13,16,["H2719"]],[16,18,["H3605"]],[18,20,["H5315"]],[20,21,["H834"]],[21,26,["H2763"]],[26,27,["H1931"]],[27,28,["H3117"]],[28,31,["H3605"]],[31,32,["H834"]],[32,35,["H6213"]],[35,37,["H3923"]]]},{"k":6100,"v":[[0,2,["H3091"]],[2,4,["H5927"]],[4,6,["H4480","H5700"]],[6,8,["H3605"]],[8,9,["H3478"]],[9,10,["H5973"]],[10,13,["H2275"]],[13,16,["H3898"]],[16,17,["H5921"]],[17,18,[]]]},{"k":6101,"v":[[0,3,["H3920"]],[3,6,["H5221"]],[6,10,["H6310"]],[10,13,["H2719"]],[13,16,["H4428"]],[16,19,["H3605"]],[19,21,["H5892"]],[21,24,["H3605"]],[24,26,["H5315"]],[26,27,["H834"]],[27,31,["H7604"]],[31,32,["H3808"]],[32,33,["H8300"]],[33,36,["H3605"]],[36,37,["H834"]],[37,40,["H6213"]],[40,42,["H5700"]],[42,44,["H2763"]],[44,48,["H3605"]],[48,50,["H5315"]],[50,51,["H834"]],[51,53,[]]]},{"k":6102,"v":[[0,2,["H3091"]],[2,3,["H7725"]],[3,5,["H3605"]],[5,6,["H3478"]],[6,7,["H5973"]],[7,10,["H1688"]],[10,12,["H3898"]],[12,13,["H5921"]],[13,14,[]]]},{"k":6103,"v":[[0,3,["H3920"]],[3,7,["H4428"]],[7,10,["H3605"]],[10,12,["H5892"]],[12,16,["H5221"]],[16,20,["H6310"]],[20,23,["H2719"]],[23,26,["H2763","(H853)"]],[26,27,["H3605"]],[27,29,["H5315"]],[29,30,["H834"]],[30,34,["H7604"]],[34,35,["H3808"]],[35,36,["H8300"]],[36,37,["H834"]],[37,40,["H6213"]],[40,42,["H2275"]],[42,43,["H3651"]],[43,45,["H6213"]],[45,47,["H1688"]],[47,51,["H4428"]],[51,53,["H834"]],[53,56,["H6213"]],[56,59,["H3841"]],[59,63,["H4428"]]]},{"k":6104,"v":[[0,2,["H3091"]],[2,3,["H5221","(H853)"]],[3,4,["H3605"]],[4,6,["H776"]],[6,9,["H2022"]],[9,13,["H5045"]],[13,17,["H8219"]],[17,21,["H794"]],[21,23,["H3605"]],[23,25,["H4428"]],[25,27,["H7604"]],[27,28,["H3808"]],[28,29,["H8300"]],[29,32,["H2763"]],[32,33,["H3605"]],[33,35,["H5397"]],[35,36,["H834"]],[36,38,["H3068"]],[38,39,["H430"]],[39,41,["H3478"]],[41,42,["H6680"]]]},{"k":6105,"v":[[0,2,["H3091"]],[2,3,["H5221"]],[3,6,["H4480","H6947"]],[6,8,["H5704"]],[8,9,["H5804"]],[9,11,["H3605"]],[11,13,["H776"]],[13,15,["H1657"]],[15,17,["H5704"]],[17,18,["H1391"]]]},{"k":6106,"v":[[0,2,["H3605"]],[2,3,["H428"]],[3,4,["H4428"]],[4,7,["H776"]],[7,9,["H3091"]],[9,10,["H3920"]],[10,12,["H259"]],[12,13,["H6471"]],[13,14,["H3588"]],[14,16,["H3068"]],[16,17,["H430"]],[17,19,["H3478"]],[19,20,["H3898"]],[20,22,["H3478"]]]},{"k":6107,"v":[[0,2,["H3091"]],[2,3,["H7725"]],[3,5,["H3605"]],[5,6,["H3478"]],[6,7,["H5973"]],[7,9,["H413"]],[9,11,["H4264"]],[11,13,["H1537"]]]},{"k":6108,"v":[[0,5,["H1961"]],[5,7,["H2985"]],[7,8,["H4428"]],[8,10,["H2674"]],[10,12,["H8085"]],[12,17,["H7971"]],[17,18,["H413"]],[18,19,["H3103"]],[19,20,["H4428"]],[20,22,["H4068"]],[22,24,["H413"]],[24,26,["H4428"]],[26,28,["H8110"]],[28,30,["H413"]],[30,32,["H4428"]],[32,34,["H407"]]]},{"k":6109,"v":[[0,2,["H413"]],[2,4,["H4428"]],[4,5,["H834"]],[5,9,["H4480","H6828"]],[9,12,["H2022"]],[12,16,["H6160"]],[16,17,["H5045"]],[17,19,["H3672"]],[19,23,["H8219"]],[23,27,["H5299"]],[27,29,["H1756"]],[29,32,["H4480","H3220"]]]},{"k":6110,"v":[[0,4,["H3669"]],[4,7,["H4480","H4217"]],[7,11,["H4480","H3220"]],[11,15,["H567"]],[15,18,["H2850"]],[18,21,["H6522"]],[21,24,["H2983"]],[24,27,["H2022"]],[27,31,["H2340"]],[31,32,["H8478"]],[32,33,["H2768"]],[33,36,["H776"]],[36,38,["H4709"]]]},{"k":6111,"v":[[0,4,["H3318"]],[4,5,["H1992"]],[5,7,["H3605"]],[7,9,["H4264"]],[9,10,["H5973"]],[10,12,["H7227"]],[12,13,["H5971"]],[13,17,["H2344"]],[17,18,["H834"]],[18,20,["H5921"]],[20,22,["H3220"]],[22,23,["H8193"]],[23,25,["H7230"]],[25,27,["H5483"]],[27,29,["H7393"]],[29,30,["H3966"]],[30,31,["H7227"]]]},{"k":6112,"v":[[0,3,["H3605"]],[3,4,["H428"]],[4,5,["H4428"]],[5,8,["H3259"]],[8,10,["H935"]],[10,12,["H2583"]],[12,13,["H3162"]],[13,14,["H413"]],[14,16,["H4325"]],[16,18,["H4792"]],[18,20,["H3898"]],[20,21,["H5973"]],[21,22,["H3478"]]]},{"k":6113,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091"]],[6,8,["H408"]],[8,9,["H3372"]],[9,11,["H4480","H6440"]],[11,13,["H3588"]],[13,15,["H4279"]],[15,17,["H2063"]],[17,18,["H6256"]],[18,20,["H595"]],[20,23,["H5414","(H853)"]],[23,24,["H3605"]],[24,25,["H2491"]],[25,26,["H6440"]],[26,27,["H3478"]],[27,30,["H6131","(H853)"]],[30,32,["H5483"]],[32,34,["H8313"]],[34,36,["H4818"]],[36,38,["H784"]]]},{"k":6114,"v":[[0,2,["H3091"]],[2,3,["H935"]],[3,5,["H3605"]],[5,7,["H5971"]],[7,9,["H4421"]],[9,10,["H5973"]],[10,12,["H5921"]],[12,14,["H5921"]],[14,16,["H4325"]],[16,18,["H4792"]],[18,19,["H6597"]],[19,22,["H5307"]],[22,24,[]]]},{"k":6115,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,8,["H3027"]],[8,10,["H3478"]],[10,12,["H5221"]],[12,15,["H7291"]],[15,17,["H5704"]],[17,18,["H7227"]],[18,19,["H6721"]],[19,21,["H5704"]],[21,22,["H4956"]],[22,24,["H5704"]],[24,26,["H1237"]],[26,28,["H4708"]],[28,29,["H4217"]],[29,32,["H5221"]],[32,34,["H5704"]],[34,36,["H7604"]],[36,38,["H1115"]],[38,39,["H8300"]]]},{"k":6116,"v":[[0,2,["H3091"]],[2,3,["H6213"]],[3,6,["H834"]],[6,8,["H3068"]],[8,9,["H559"]],[9,12,["H6131","(H853)"]],[12,14,["H5483"]],[14,16,["H8313"]],[16,18,["H4818"]],[18,20,["H784"]]]},{"k":6117,"v":[[0,2,["H3091"]],[2,4,["H1931"]],[4,5,["H6256"]],[5,7,["H7725"]],[7,9,["H3920","(H853)"]],[9,10,["H2674"]],[10,12,["H5221"]],[12,14,["H4428"]],[14,18,["H2719"]],[18,19,["H3588"]],[19,20,["H2674"]],[20,21,["H6440"]],[21,24,["H7218"]],[24,26,["H3605"]],[26,27,["H428"]],[27,28,["H4467"]]]},{"k":6118,"v":[[0,3,["H5221","(H853)"]],[3,4,["H3605"]],[4,6,["H5315"]],[6,7,["H834"]],[7,12,["H6310"]],[12,15,["H2719"]],[15,17,["H2763"]],[17,21,["H3808"]],[21,22,["H3605"]],[22,23,["H3498"]],[23,25,["H5397"]],[25,28,["H8313"]],[28,29,["H2674"]],[29,31,["H784"]]]},{"k":6119,"v":[[0,2,["H3605"]],[2,4,["H5892"]],[4,6,["H428"]],[6,7,["H4428"]],[7,9,["H3605"]],[9,11,["H4428"]],[11,15,["H3091"]],[15,16,["H3920"]],[16,18,["H5221"]],[18,22,["H6310"]],[22,25,["H2719"]],[25,29,["H2763"]],[29,31,["H834"]],[31,32,["H4872"]],[32,34,["H5650"]],[34,37,["H3068"]],[37,38,["H6680"]]]},{"k":6120,"v":[[0,1,["H7535"]],[1,5,["H5892"]],[5,8,["H5975"]],[8,9,["H5921"]],[9,11,["H8510"]],[11,12,["H3478"]],[12,13,["H8313"]],[13,14,["H3808"]],[14,17,["H2108","(H853)"]],[17,18,["H2674"]],[18,19,["H905"]],[19,22,["H3091"]],[22,23,["H8313"]]]},{"k":6121,"v":[[0,2,["H3605"]],[2,4,["H7998"]],[4,6,["H428"]],[6,7,["H5892"]],[7,10,["H929"]],[10,12,["H1121"]],[12,14,["H3478"]],[14,18,["H962"]],[18,21,["H7535","(H853)"]],[21,22,["H3605"]],[22,23,["H120"]],[23,25,["H5221"]],[25,28,["H6310"]],[28,31,["H2719"]],[31,32,["H5704"]],[32,35,["H8045"]],[35,37,["H3808"]],[37,38,["H7604"]],[38,40,["H3605"]],[40,42,["H5397"]]]},{"k":6122,"v":[[0,1,["H834"]],[1,3,["H3068"]],[3,4,["H6680","(H853)"]],[4,5,["H4872"]],[5,7,["H5650"]],[7,8,["H3651"]],[8,10,["H4872"]],[10,11,["H6680","(H853)"]],[11,12,["H3091"]],[12,14,["H3651"]],[14,15,["H6213"]],[15,16,["H3091"]],[16,20,["H3808","H5493","H1697"]],[20,22,["H4480","H3605"]],[22,23,["H834"]],[23,25,["H3068"]],[25,26,["H6680","(H853)"]],[26,27,["H4872"]]]},{"k":6123,"v":[[0,2,["H3091"]],[2,3,["H3947","(H853)"]],[3,4,["H3605"]],[4,5,["H2063"]],[5,6,["H776"]],[6,8,["H2022"]],[8,10,["H3605"]],[10,13,["H5045"]],[13,15,["H3605"]],[15,17,["H776"]],[17,19,["H1657"]],[19,22,["H8219"]],[22,25,["H6160"]],[25,28,["H2022"]],[28,30,["H3478"]],[30,33,["H8219"]],[33,36,[]]]},{"k":6124,"v":[[0,2,["H4480"]],[2,4,["H2022"]],[4,5,["H2510"]],[5,8,["H5927"]],[8,10,["H8165"]],[10,12,["H5704"]],[12,13,["H1171"]],[13,16,["H1237"]],[16,18,["H3844"]],[18,19,["H8478"]],[19,20,["H2022"]],[20,21,["H2768"]],[21,23,["H3605"]],[23,25,["H4428"]],[25,27,["H3920"]],[27,29,["H5221"]],[29,32,["H4191"]],[32,33,[]]]},{"k":6125,"v":[[0,1,["H3091"]],[1,2,["H6213"]],[2,3,["H4421"]],[3,5,["H7227"]],[5,6,["H3117"]],[6,7,["H854"]],[7,8,["H3605"]],[8,9,["H428"]],[9,10,["H4428"]]]},{"k":6126,"v":[[0,2,["H1961"]],[2,3,["H3808"]],[3,5,["H5892"]],[5,6,["H834"]],[6,8,["H7999"]],[8,9,["H413"]],[9,11,["H1121"]],[11,13,["H3478"]],[13,14,["H1115"]],[14,16,["H2340"]],[16,18,["H3427"]],[18,20,["H1391","(H853)"]],[20,21,["H3605"]],[21,24,["H3947"]],[24,26,["H4421"]]]},{"k":6127,"v":[[0,1,["H3588"]],[1,3,["H1961"]],[3,4,["H4480","(H853)"]],[4,6,["H3068"]],[6,8,["H2388","(H853)"]],[8,10,["H3820"]],[10,15,["H7125","(H853)"]],[15,16,["H3478"]],[16,18,["H4421"]],[18,19,["H4616"]],[19,22,["H2763"]],[22,29,["H1961"]],[29,30,["H1115"]],[30,31,["H8467"]],[31,32,["H3588"]],[32,33,["H4616"]],[33,36,["H8045"]],[36,38,["H834"]],[38,40,["H3068"]],[40,41,["H6680","(H853)"]],[41,42,["H4872"]]]},{"k":6128,"v":[[0,3,["H1931"]],[3,4,["H6256"]],[4,5,["H935"]],[5,6,["H3091"]],[6,9,["H3772","(H853)"]],[9,11,["H6062"]],[11,12,["H4480"]],[12,14,["H2022"]],[14,15,["H4480"]],[15,16,["H2275"]],[16,17,["H4480"]],[17,18,["H1688"]],[18,19,["H4480"]],[19,20,["H6024"]],[20,23,["H4480","H3605"]],[23,25,["H2022"]],[25,27,["H3063"]],[27,30,["H4480","H3605"]],[30,32,["H2022"]],[32,34,["H3478"]],[34,35,["H3091"]],[35,36,["H2763"]],[36,39,["H5973"]],[39,41,["H5892"]]]},{"k":6129,"v":[[0,3,["H3808"]],[3,6,["H6062"]],[6,7,["H3498"]],[7,10,["H776"]],[10,13,["H1121"]],[13,15,["H3478"]],[15,16,["H7535"]],[16,18,["H5804"]],[18,20,["H1661"]],[20,23,["H795"]],[23,25,["H7604"]]]},{"k":6130,"v":[[0,2,["H3091"]],[2,3,["H3947","(H853)"]],[3,5,["H3605"]],[5,6,["H776"]],[6,9,["H3605"]],[9,10,["H834"]],[10,12,["H3068"]],[12,13,["H1696"]],[13,14,["H413"]],[14,15,["H4872"]],[15,17,["H3091"]],[17,18,["H5414"]],[18,22,["H5159"]],[22,24,["H3478"]],[24,28,["H4256"]],[28,31,["H7626"]],[31,34,["H776"]],[34,35,["H8252"]],[35,37,["H4480","H4421"]]]},{"k":6131,"v":[[0,2,["H428"]],[2,5,["H4428"]],[5,8,["H776"]],[8,9,["H834"]],[9,11,["H1121"]],[11,13,["H3478"]],[13,14,["H5221"]],[14,16,["H3423","(H853)"]],[16,18,["H776"]],[18,22,["H5676"]],[22,23,["H3383"]],[23,26,["H4217"]],[26,29,["H8121"]],[29,32,["H4480","H5158"]],[32,33,["H769"]],[33,34,["H5704"]],[34,35,["H2022"]],[35,36,["H2768"]],[36,38,["H3605"]],[38,40,["H6160"]],[40,43,["H4217"]]]},{"k":6132,"v":[[0,1,["H5511"]],[1,2,["H4428"]],[2,5,["H567"]],[5,7,["H3427"]],[7,9,["H2809"]],[9,11,["H4910"]],[11,13,["H4480","H6177"]],[13,14,["H834"]],[14,16,["H5921"]],[16,18,["H8193"]],[18,21,["H5158"]],[21,22,["H769"]],[22,26,["H8432"]],[26,29,["H5158"]],[29,32,["H2677"]],[32,33,["H1568"]],[33,35,["H5704"]],[35,37,["H5158"]],[37,38,["H2999"]],[38,42,["H1366"]],[42,45,["H1121"]],[45,47,["H5983"]]]},{"k":6133,"v":[[0,4,["H6160"]],[4,5,["H5704"]],[5,7,["H3220"]],[7,9,["H3672"]],[9,12,["H4217"]],[12,14,["H5704"]],[14,16,["H3220"]],[16,19,["H6160"]],[19,22,["H4417"]],[22,23,["H3220"]],[23,26,["H4217"]],[26,28,["H1870"]],[28,30,["H1020"]],[30,34,["H4480","H8486"]],[34,35,["H8478"]],[35,36,["H798"]]]},{"k":6134,"v":[[0,3,["H1366"]],[3,5,["H5747"]],[5,6,["H4428"]],[6,8,["H1316"]],[8,13,["H4480","H3499"]],[13,16,["H7497"]],[16,18,["H3427"]],[18,20,["H6252"]],[20,23,["H154"]]]},{"k":6135,"v":[[0,2,["H4910"]],[2,4,["H2022"]],[4,5,["H2768"]],[5,8,["H5548"]],[8,11,["H3605"]],[11,12,["H1316"]],[12,13,["H5704"]],[13,15,["H1366"]],[15,18,["H1651"]],[18,21,["H4602"]],[21,23,["H2677"]],[23,24,["H1568"]],[24,26,["H1366"]],[26,28,["H5511"]],[28,29,["H4428"]],[29,31,["H2809"]]]},{"k":6136,"v":[[0,3,["H4872"]],[3,5,["H5650"]],[5,8,["H3068"]],[8,11,["H1121"]],[11,13,["H3478"]],[13,14,["H5221"]],[14,16,["H4872"]],[16,18,["H5650"]],[18,21,["H3068"]],[21,22,["H5414"]],[22,26,["H3425"]],[26,29,["H7206"]],[29,32,["H1425"]],[32,35,["H2677"]],[35,36,["H7626"]],[36,38,["H4519"]]]},{"k":6137,"v":[[0,2,["H428"]],[2,5,["H4428"]],[5,8,["H776"]],[8,9,["H834"]],[9,10,["H3091"]],[10,13,["H1121"]],[13,15,["H3478"]],[15,16,["H5221"]],[16,19,["H5676"]],[19,20,["H3383"]],[20,23,["H3220"]],[23,25,["H4480","H1171"]],[25,28,["H1237"]],[28,30,["H3844"]],[30,32,["H5704"]],[32,34,["H2022"]],[34,35,["H2510"]],[35,38,["H5927"]],[38,40,["H8165"]],[40,42,["H3091"]],[42,43,["H5414"]],[43,46,["H7626"]],[46,48,["H3478"]],[48,51,["H3425"]],[51,55,["H4256"]]]},{"k":6138,"v":[[0,3,["H2022"]],[3,7,["H8219"]],[7,11,["H6160"]],[11,15,["H794"]],[15,19,["H4057"]],[19,23,["H5045"]],[23,26,["H2850"]],[26,28,["H567"]],[28,31,["H3669"]],[31,33,["H6522"]],[33,35,["H2340"]],[35,38,["H2983"]]]},{"k":6139,"v":[[0,2,["H4428"]],[2,4,["H3405"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H5857"]],[9,10,["H834"]],[10,12,["H4480","H6654"]],[12,13,["H1008"]],[13,14,["H259"]]]},{"k":6140,"v":[[0,2,["H4428"]],[2,4,["H3389"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H2275"]],[9,10,["H259"]]]},{"k":6141,"v":[[0,2,["H4428"]],[2,4,["H3412"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H3923"]],[9,10,["H259"]]]},{"k":6142,"v":[[0,2,["H4428"]],[2,4,["H5700"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H1507"]],[9,10,["H259"]]]},{"k":6143,"v":[[0,2,["H4428"]],[2,4,["H1688"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H1445"]],[9,10,["H259"]]]},{"k":6144,"v":[[0,2,["H4428"]],[2,4,["H2767"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H6166"]],[9,10,["H259"]]]},{"k":6145,"v":[[0,2,["H4428"]],[2,4,["H3841"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H5725"]],[9,10,["H259"]]]},{"k":6146,"v":[[0,2,["H4428"]],[2,4,["H4719"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H1008"]],[9,10,["H259"]]]},{"k":6147,"v":[[0,2,["H4428"]],[2,4,["H8599"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H2660"]],[9,10,["H259"]]]},{"k":6148,"v":[[0,2,["H4428"]],[2,4,["H663"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H8289"]],[9,10,["H259"]]]},{"k":6149,"v":[[0,2,["H4428"]],[2,4,["H4068"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H2674"]],[9,10,["H259"]]]},{"k":6150,"v":[[0,2,["H4428"]],[2,4,["H8112"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H407"]],[9,10,["H259"]]]},{"k":6151,"v":[[0,2,["H4428"]],[2,4,["H8590"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H4023"]],[9,10,["H259"]]]},{"k":6152,"v":[[0,2,["H4428"]],[2,4,["H6943"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H3362"]],[9,11,["H3760"]],[11,12,["H259"]]]},{"k":6153,"v":[[0,2,["H4428"]],[2,4,["H1756"]],[4,7,["H5299"]],[7,9,["H1756"]],[9,10,["H259"]],[10,12,["H4428"]],[12,15,["H1471"]],[15,17,["H1537"]],[17,18,["H259"]]]},{"k":6154,"v":[[0,2,["H4428"]],[2,4,["H8656"]],[4,5,["H259"]],[5,6,["H3605"]],[6,8,["H4428"]],[8,9,["H7970"]],[9,11,["H259"]]]},{"k":6155,"v":[[0,2,["H3091"]],[2,4,["H2204"]],[4,6,["H935"]],[6,8,["H3117"]],[8,11,["H3068"]],[11,12,["H559"]],[12,13,["H413"]],[13,15,["H859"]],[15,17,["H2204"]],[17,19,["H935"]],[19,21,["H3117"]],[21,24,["H7604"]],[24,26,["H3966"]],[26,27,["H7235"]],[27,28,["H776"]],[28,31,["H3423"]]]},{"k":6156,"v":[[0,1,["H2063"]],[1,4,["H776"]],[4,7,["H7604"]],[7,8,["H3605"]],[8,10,["H1552"]],[10,13,["H6430"]],[13,15,["H3605"]],[15,16,["H1651"]]]},{"k":6157,"v":[[0,1,["H4480"]],[1,2,["H7883"]],[2,3,["H834"]],[3,5,["H5921","H6440"]],[5,6,["H4714"]],[6,8,["H5704"]],[8,10,["H1366"]],[10,12,["H6138"]],[12,13,["H6828"]],[13,16,["H2803"]],[16,19,["H3669"]],[19,20,["H2568"]],[20,21,["H5633"]],[21,24,["H6430"]],[24,26,["H5841"]],[26,29,["H796"]],[29,31,["H832"]],[31,33,["H1663"]],[33,36,["H6139"]],[36,39,["H5757"]]]},{"k":6158,"v":[[0,3,["H4480","H8486"]],[3,4,["H3605"]],[4,6,["H776"]],[6,9,["H3669"]],[9,11,["H4632"]],[11,12,["H834"]],[12,16,["H6722"]],[16,17,["H5704"]],[17,18,["H663"]],[18,19,["H5704"]],[19,21,["H1366"]],[21,24,["H567"]]]},{"k":6159,"v":[[0,3,["H776"]],[3,6,["H1382"]],[6,8,["H3605"]],[8,9,["H3844"]],[9,12,["H4217","H8121"]],[12,14,["H4480","H1171"]],[14,15,["H8478"]],[15,16,["H2022"]],[16,17,["H2768"]],[17,18,["H5704"]],[18,20,["H935"]],[20,22,["H2574"]]]},{"k":6160,"v":[[0,1,["H3605"]],[1,3,["H3427"]],[3,7,["H2022"]],[7,8,["H4480"]],[8,9,["H3844"]],[9,10,["H5704"]],[10,11,["H4956"]],[11,13,["H3605"]],[13,15,["H6722"]],[15,18,["H595"]],[18,20,["H3423"]],[20,22,["H4480","H6440"]],[22,24,["H1121"]],[24,26,["H3478"]],[26,27,["H7535"]],[27,32,["H5307"]],[32,35,["H3478"]],[35,38,["H5159"]],[38,39,["H834"]],[39,42,["H6680"]],[42,43,[]]]},{"k":6161,"v":[[0,1,["H6258"]],[1,3,["H2505","(H853)"]],[3,4,["H2063"]],[4,5,["H776"]],[5,8,["H5159"]],[8,11,["H8672"]],[11,12,["H7626"]],[12,15,["H2677"]],[15,16,["H7626"]],[16,18,["H4519"]]]},{"k":6162,"v":[[0,1,["H5973"]],[1,4,["H7206"]],[4,7,["H1425"]],[7,9,["H3947"]],[9,11,["H5159"]],[11,12,["H834"]],[12,13,["H4872"]],[13,14,["H5414"]],[14,16,["H5676"]],[16,17,["H3383"]],[17,18,["H4217"]],[18,20,["H834"]],[20,21,["H4872"]],[21,23,["H5650"]],[23,26,["H3068"]],[26,27,["H5414"]],[27,28,[]]]},{"k":6163,"v":[[0,2,["H4480","H6177"]],[2,3,["H834"]],[3,5,["H5921"]],[5,7,["H8193"]],[7,10,["H5158"]],[10,11,["H769"]],[11,14,["H5892"]],[14,15,["H834"]],[15,19,["H8432"]],[19,22,["H5158"]],[22,24,["H3605"]],[24,26,["H4334"]],[26,28,["H4311"]],[28,29,["H5704"]],[29,30,["H1769"]]]},{"k":6164,"v":[[0,2,["H3605"]],[2,4,["H5892"]],[4,6,["H5511"]],[6,7,["H4428"]],[7,10,["H567"]],[10,11,["H834"]],[11,12,["H4427"]],[12,14,["H2809"]],[14,15,["H5704"]],[15,17,["H1366"]],[17,20,["H1121"]],[20,22,["H5983"]]]},{"k":6165,"v":[[0,2,["H1568"]],[2,5,["H1366"]],[5,8,["H1651"]],[8,10,["H4602"]],[10,12,["H3605"]],[12,13,["H2022"]],[13,14,["H2768"]],[14,16,["H3605"]],[16,17,["H1316"]],[17,18,["H5704"]],[18,19,["H5548"]]]},{"k":6166,"v":[[0,1,["H3605"]],[1,3,["H4468"]],[3,5,["H5747"]],[5,7,["H1316"]],[7,8,["H834"]],[8,9,["H4427"]],[9,11,["H6252"]],[11,14,["H154"]],[14,15,["H1931"]],[15,16,["H7604"]],[16,19,["H4480","H3499"]],[19,22,["H7497"]],[22,26,["H4872"]],[26,27,["H5221"]],[27,31,["H3423"]]]},{"k":6167,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H3423"]],[6,7,["H3808","(H853)"]],[7,9,["H1651"]],[9,12,["H4602"]],[12,15,["H1650"]],[15,18,["H4601"]],[18,19,["H3427"]],[19,20,["H7130"]],[20,22,["H3478"]],[22,23,["H5704"]],[23,24,["H2088"]],[24,25,["H3117"]]]},{"k":6168,"v":[[0,1,["H7535"]],[1,4,["H7626"]],[4,6,["H3878"]],[6,8,["H5414"]],[8,9,["H3808"]],[9,10,["H5159"]],[10,21,["H801","H3068","H430","H3478"]],[21,24,["H5159"]],[24,25,["H834"]],[25,27,["H1696"]],[27,29,[]]]},{"k":6169,"v":[[0,2,["H4872"]],[2,3,["H5414"]],[3,6,["H4294"]],[6,9,["H1121"]],[9,11,["H7205"]],[11,16,["H4940"]]]},{"k":6170,"v":[[0,3,["H1366"]],[3,4,["H1961"]],[4,6,["H4480","H6177"]],[6,7,["H834"]],[7,9,["H5921"]],[9,11,["H8193"]],[11,14,["H5158"]],[14,15,["H769"]],[15,18,["H5892"]],[18,19,["H834"]],[19,23,["H8432"]],[23,26,["H5158"]],[26,28,["H3605"]],[28,30,["H4334"]],[30,31,["H5921"]],[31,32,["H4311"]]]},{"k":6171,"v":[[0,1,["H2809"]],[1,3,["H3605"]],[3,5,["H5892"]],[5,6,["H834"]],[6,10,["H4334"]],[10,11,["H1769"]],[11,13,["H1120"]],[13,15,["H1010"]]]},{"k":6172,"v":[[0,2,["H3096"]],[2,4,["H6932"]],[4,6,["H4158"]]]},{"k":6173,"v":[[0,2,["H7156"]],[2,4,["H7643"]],[4,6,["H6890"]],[6,9,["H2022"]],[9,12,["H6010"]]]},{"k":6174,"v":[[0,2,["H1047"]],[2,4,["H798"]],[4,6,["H1020"]]]},{"k":6175,"v":[[0,2,["H3605"]],[2,4,["H5892"]],[4,7,["H4334"]],[7,9,["H3605"]],[9,11,["H4468"]],[11,13,["H5511"]],[13,14,["H4428"]],[14,17,["H567"]],[17,18,["H834"]],[18,19,["H4427"]],[19,21,["H2809"]],[21,22,["H834"]],[22,23,["H4872"]],[23,24,["H5221"]],[24,25,["H854"]],[25,27,["H5387"]],[27,29,["H4080","(H853)"]],[29,30,["H189"]],[30,32,["H7552"]],[32,34,["H6698"]],[34,36,["H2354"]],[36,38,["H7254"]],[38,41,["H5257"]],[41,43,["H5511"]],[43,44,["H3427"]],[44,47,["H776"]]]},{"k":6176,"v":[[0,1,["H1109"]],[1,4,["H1121"]],[4,6,["H1160"]],[6,8,["H7080"]],[8,11,["H1121"]],[11,13,["H3478"]],[13,14,["H2026"]],[14,17,["H2719"]],[17,18,["H413"]],[18,22,["H2491"]],[22,24,[]]]},{"k":6177,"v":[[0,3,["H1366"]],[3,6,["H1121"]],[6,8,["H7205"]],[8,9,["H1961"]],[9,10,["H3383"]],[10,13,["H1366"]],[13,15,["H2063"]],[15,18,["H5159"]],[18,21,["H1121"]],[21,23,["H7205"]],[23,26,["H4940"]],[26,28,["H5892"]],[28,31,["H2691"]],[31,32,[]]]},{"k":6178,"v":[[0,2,["H4872"]],[2,3,["H5414"]],[3,7,["H4294"]],[7,9,["H1410"]],[9,13,["H1121"]],[13,15,["H1410"]],[15,19,["H4940"]]]},{"k":6179,"v":[[0,3,["H1366"]],[3,4,["H1961"]],[4,5,["H3270"]],[5,7,["H3605"]],[7,9,["H5892"]],[9,11,["H1568"]],[11,13,["H2677"]],[13,15,["H776"]],[15,18,["H1121"]],[18,20,["H5983"]],[20,21,["H5704"]],[21,22,["H6177"]],[22,23,["H834"]],[23,25,["H5921","H6440"]],[25,26,["H7237"]]]},{"k":6180,"v":[[0,3,["H4480","H2809"]],[3,4,["H5704"]],[4,5,["H7434"]],[5,7,["H993"]],[7,10,["H4480","H4266"]],[10,11,["H5704"]],[11,13,["H1366"]],[13,15,["H1688"]]]},{"k":6181,"v":[[0,4,["H6010"]],[4,5,["H1027"]],[5,7,["H1039"]],[7,9,["H5523"]],[9,11,["H6829"]],[11,13,["H3499"]],[13,16,["H4480","H4468"]],[16,18,["H5511"]],[18,19,["H4428"]],[19,21,["H2809"]],[21,22,["H3383"]],[22,25,["H1366"]],[25,27,["H5704"]],[27,29,["H7097"]],[29,32,["H3220"]],[32,34,["H3672"]],[34,38,["H5676"]],[38,39,["H3383"]],[39,40,["H4217"]]]},{"k":6182,"v":[[0,1,["H2063"]],[1,4,["H5159"]],[4,7,["H1121"]],[7,9,["H1410"]],[9,12,["H4940"]],[12,14,["H5892"]],[14,17,["H2691"]]]},{"k":6183,"v":[[0,2,["H4872"]],[2,3,["H5414"]],[3,7,["H2677"]],[7,8,["H7626"]],[8,10,["H4519"]],[10,13,["H1961"]],[13,18,["H2677"]],[18,19,["H4294"]],[19,22,["H1121"]],[22,24,["H4519"]],[24,27,["H4940"]]]},{"k":6184,"v":[[0,3,["H1366"]],[3,4,["H1961"]],[4,6,["H4480","H4266"]],[6,7,["H3605"]],[7,8,["H1316"]],[8,9,["H3605"]],[9,11,["H4468"]],[11,13,["H5747"]],[13,14,["H4428"]],[14,16,["H1316"]],[16,18,["H3605"]],[18,20,["H2333"]],[20,22,["H2971"]],[22,23,["H834"]],[23,26,["H1316"]],[26,27,["H8346"]],[27,28,["H5892"]]]},{"k":6185,"v":[[0,2,["H2677"]],[2,3,["H1568"]],[3,5,["H6252"]],[5,7,["H154"]],[7,8,["H5892"]],[8,11,["H4468"]],[11,13,["H5747"]],[13,15,["H1316"]],[15,20,["H1121"]],[20,22,["H4353"]],[22,24,["H1121"]],[24,26,["H4519"]],[26,31,["H2677"]],[31,34,["H1121"]],[34,36,["H4353"]],[36,39,["H4940"]]]},{"k":6186,"v":[[0,1,["H428"]],[1,5,["H834"]],[5,6,["H4872"]],[6,10,["H5157"]],[10,13,["H6160"]],[13,15,["H4124"]],[15,19,["H4480","H5676"]],[19,20,["H3383"]],[20,22,["H3405"]],[22,23,["H4217"]]]},{"k":6187,"v":[[0,4,["H7626"]],[4,6,["H3878"]],[6,7,["H4872"]],[7,8,["H5414"]],[8,9,["H3808"]],[9,11,["H5159"]],[11,13,["H3068"]],[13,14,["H430"]],[14,16,["H3478"]],[16,19,["H5159"]],[19,20,["H834"]],[20,22,["H1696"]],[22,24,[]]]},{"k":6188,"v":[[0,2,["H428"]],[2,6,["H834"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,11,["H5157"]],[11,14,["H776"]],[14,16,["H3667"]],[16,17,["H834"]],[17,18,["H499"]],[18,20,["H3548"]],[20,22,["H3091"]],[22,24,["H1121"]],[24,26,["H5126"]],[26,29,["H7218"]],[29,32,["H1"]],[32,35,["H4294"]],[35,38,["H1121"]],[38,40,["H3478"]],[40,43,["H5157"]],[43,45,[]]]},{"k":6189,"v":[[0,2,["H1486"]],[2,5,["H5159"]],[5,6,["H834"]],[6,8,["H3068"]],[8,9,["H6680"]],[9,12,["H3027"]],[12,14,["H4872"]],[14,17,["H8672"]],[17,18,["H4294"]],[18,22,["H2677"]],[22,23,["H4294"]]]},{"k":6190,"v":[[0,1,["H3588"]],[1,2,["H4872"]],[2,4,["H5414"]],[4,6,["H5159"]],[6,8,["H8147"]],[8,9,["H4294"]],[9,12,["H2677"]],[12,13,["H4294"]],[13,17,["H4480","H5676"]],[17,18,["H3383"]],[18,22,["H3881"]],[22,24,["H5414"]],[24,25,["H3808"]],[25,26,["H5159"]],[26,27,["H8432"]],[27,28,[]]]},{"k":6191,"v":[[0,1,["H3588"]],[1,3,["H1121"]],[3,5,["H3130"]],[5,6,["H1961"]],[6,7,["H8147"]],[7,8,["H4294"]],[8,9,["H4519"]],[9,11,["H669"]],[11,14,["H5414"]],[14,15,["H3808"]],[15,16,["H2506"]],[16,19,["H3881"]],[19,22,["H776"]],[22,23,["H3588","H518"]],[23,24,["H5892"]],[24,26,["H3427"]],[26,30,["H4054"]],[30,33,["H4735"]],[33,37,["H7075"]]]},{"k":6192,"v":[[0,1,["H834"]],[1,3,["H3068"]],[3,4,["H6680","(H853)"]],[4,5,["H4872"]],[5,6,["H3651"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,11,["H6213"]],[11,14,["H2505","(H853)"]],[14,16,["H776"]]]},{"k":6193,"v":[[0,3,["H1121"]],[3,5,["H3063"]],[5,6,["H5066"]],[6,7,["H413"]],[7,8,["H3091"]],[8,10,["H1537"]],[10,12,["H3612"]],[12,14,["H1121"]],[14,16,["H3312"]],[16,18,["H7074"]],[18,19,["H559"]],[19,20,["H413"]],[20,22,["H859"]],[22,23,["H3045","(H853)"]],[23,25,["H1697"]],[25,26,["H834"]],[26,28,["H3068"]],[28,29,["H1696"]],[29,30,["H413"]],[30,31,["H4872"]],[31,33,["H376"]],[33,35,["H430"]],[35,36,["H5921","H182"]],[36,41,["H6947"]]]},{"k":6194,"v":[[0,1,["H705"]],[1,2,["H8141"]],[2,3,["H1121"]],[3,5,["H595"]],[5,7,["H4872"]],[7,9,["H5650"]],[9,12,["H3068"]],[12,13,["H7971"]],[13,16,["H4480","H6947"]],[16,19,["H7270","(H853)"]],[19,21,["H776"]],[21,24,["H7725"]],[24,26,["H1697"]],[26,28,["H834"]],[28,31,["H5973"]],[31,33,["H3824"]]]},{"k":6195,"v":[[0,3,["H251"]],[3,4,["H834"]],[4,6,["H5927"]],[6,7,["H5973"]],[7,9,["(H853)"]],[9,11,["H3820"]],[11,14,["H5971"]],[14,15,["H4529"]],[15,17,["H595"]],[17,18,["H4390"]],[18,19,["H310"]],[19,21,["H3068"]],[21,23,["H430"]]]},{"k":6196,"v":[[0,2,["H4872"]],[2,3,["H7650"]],[3,5,["H1931"]],[5,6,["H3117"]],[6,7,["H559"]],[7,8,["H518","H3808"]],[8,10,["H776"]],[10,11,["H834"]],[11,13,["H7272"]],[13,15,["H1869"]],[15,17,["H1961"]],[17,19,["H5159"]],[19,22,["H1121"]],[22,24,["H5704","H5769"]],[24,25,["H3588"]],[25,28,["H4390"]],[28,29,["H310"]],[29,31,["H3068"]],[31,33,["H430"]]]},{"k":6197,"v":[[0,2,["H6258"]],[2,3,["H2009"]],[3,5,["H3068"]],[5,9,["H2421","(H853)"]],[9,10,["H834"]],[10,12,["H1696"]],[12,13,["H2088"]],[13,14,["H705"]],[14,16,["H2568"]],[16,17,["H8141"]],[17,19,["H4480","H227"]],[19,21,["H3068"]],[21,22,["H1696","(H853)"]],[22,23,["H2088"]],[23,24,["H1697"]],[24,25,["H413"]],[25,26,["H4872"]],[26,27,["H834"]],[27,31,["H3478"]],[31,32,["H1980"]],[32,35,["H4057"]],[35,37,["H6258"]],[37,38,["H2009"]],[38,39,["H595"]],[39,42,["H3117"]],[42,43,["H8084"]],[43,45,["H2568"]],[45,46,["H8141"]],[46,47,["H1121"]]]},{"k":6198,"v":[[0,2,["H5750"]],[2,6,["H2389"]],[6,8,["H3117"]],[8,9,["H834"]],[9,14,["H3117"]],[14,16,["H4872"]],[16,17,["H7971"]],[17,21,["H3581"]],[21,23,["H227"]],[23,28,["H3581"]],[28,29,["H6258"]],[29,31,["H4421"]],[31,35,["H3318"]],[35,39,["H935"]]]},{"k":6199,"v":[[0,1,["H6258"]],[1,3,["H5414"]],[3,4,["(H853)"]],[4,5,["H2088"]],[5,6,["H2022"]],[6,7,["H834"]],[7,9,["H3068"]],[9,10,["H1696"]],[10,12,["H1931"]],[12,13,["H3117"]],[13,14,["H3588"]],[14,15,["H859"]],[15,16,["H8085"]],[16,18,["H1931"]],[18,19,["H3117"]],[19,20,["H3588"]],[20,22,["H6062"]],[22,24,["H8033"]],[24,28,["H5892"]],[28,30,["H1419"]],[30,32,["H1219"]],[32,33,["H194"]],[33,37,["H3068"]],[37,40,["H854"]],[40,50,["H3423"]],[50,51,["H834"]],[51,53,["H3068"]],[53,54,["H1696"]]]},{"k":6200,"v":[[0,2,["H3091"]],[2,3,["H1288"]],[3,6,["H5414"]],[6,8,["H3612"]],[8,10,["H1121"]],[10,12,["H3312","(H853)"]],[12,13,["H2275"]],[13,16,["H5159"]]]},{"k":6201,"v":[[0,1,["H2275"]],[1,2,["H5921","H3651"]],[2,3,["H1961"]],[3,5,["H5159"]],[5,7,["H3612"]],[7,9,["H1121"]],[9,11,["H3312"]],[11,13,["H7074"]],[13,14,["H5704"]],[14,15,["H2088"]],[15,16,["H3117"]],[16,17,["H3282"]],[17,18,["H834"]],[18,20,["H4390"]],[20,21,["H310"]],[21,23,["H3068"]],[23,24,["H430"]],[24,26,["H3478"]]]},{"k":6202,"v":[[0,3,["H8034"]],[3,5,["H2275"]],[5,6,["H6440"]],[6,8,["H7153"]],[8,13,["H1419"]],[13,14,["H120"]],[14,17,["H6062"]],[17,20,["H776"]],[20,22,["H8252"]],[22,24,["H4480","H4421"]]]},{"k":6203,"v":[[0,3,["H1961"]],[3,5,["H1486"]],[5,8,["H4294"]],[8,11,["H1121"]],[11,13,["H3063"]],[13,16,["H4940"]],[16,18,["H413"]],[18,20,["H1366"]],[20,22,["H123"]],[22,24,["H4057"]],[24,26,["H6790"]],[26,27,["H5045"]],[27,31,["H4480","H7097"]],[31,35,["H8486"]]]},{"k":6204,"v":[[0,3,["H5045"]],[3,4,["H1366"]],[4,5,["H1961"]],[5,8,["H4480","H7097"]],[8,11,["H4417"]],[11,12,["H3220"]],[12,13,["H4480"]],[13,15,["H3956"]],[15,17,["H6437"]],[17,18,["H5045"]]]},{"k":6205,"v":[[0,4,["H3318"]],[4,5,["H413"]],[5,8,["H4480","H5045"]],[8,10,["H4610"]],[10,13,["H5674"]],[13,15,["H6790"]],[15,18,["H5927"]],[18,22,["H4480","H5045"]],[22,24,["H6947"]],[24,27,["H5674"]],[27,29,["H2696"]],[29,32,["H5927"]],[32,34,["H146"]],[34,38,["H5437"]],[38,40,["H7173"]]]},{"k":6206,"v":[[0,5,["H5674"]],[5,6,["H6111"]],[6,9,["H3318"]],[9,12,["H5158"]],[12,14,["H4714"]],[14,18,["H8444"]],[18,21,["H1366"]],[21,22,["H1961"]],[22,25,["H3220"]],[25,26,["H2088"]],[26,28,["H1961"]],[28,30,["H5045"]],[30,31,["H1366"]]]},{"k":6207,"v":[[0,3,["H6924"]],[3,4,["H1366"]],[4,7,["H4417"]],[7,8,["H3220"]],[8,10,["H5704"]],[10,12,["H7097"]],[12,14,["H3383"]],[14,17,["H1366"]],[17,20,["H6828"]],[20,21,["H6285"]],[21,25,["H4480","H3956"]],[25,28,["H3220"]],[28,32,["H4480","H7097"]],[32,34,["H3383"]]]},{"k":6208,"v":[[0,3,["H1366"]],[3,5,["H5927"]],[5,7,["H1031"]],[7,10,["H5674"]],[10,13,["H4480","H6828"]],[13,15,["H1026"]],[15,18,["H1366"]],[18,20,["H5927"]],[20,23,["H68"]],[23,25,["H932"]],[25,27,["H1121"]],[27,29,["H7205"]]]},{"k":6209,"v":[[0,3,["H1366"]],[3,5,["H5927"]],[5,7,["H1688"]],[7,10,["H4480","H6010"]],[10,12,["H5911"]],[12,15,["H6828"]],[15,16,["H6437"]],[16,17,["H413"]],[17,18,["H1537"]],[18,19,["H834"]],[19,21,["H5227"]],[21,24,["H4608"]],[24,26,["H131"]],[26,27,["H834"]],[27,32,["H4480","H5045"]],[32,35,["H5158"]],[35,38,["H1366"]],[38,39,["H5674"]],[39,40,["H413"]],[40,42,["H4325"]],[42,44,["H5885"]],[44,48,["H8444"]],[48,50,["H1961"]],[50,51,["H413"]],[51,52,["H5883"]]]},{"k":6210,"v":[[0,3,["H1366"]],[3,5,["H5927"]],[5,8,["H1516"]],[8,11,["H1121"]],[11,13,["H2011"]],[13,14,["H413"]],[14,16,["H4480","H5045"]],[16,17,["H3802"]],[17,20,["H2983"]],[20,22,["H1931"]],[22,24,["H3389"]],[24,27,["H1366"]],[27,29,["H5927"]],[29,30,["H413"]],[30,32,["H7218"]],[32,35,["H2022"]],[35,36,["H834"]],[36,38,["H5921"]],[38,40,["H1516"]],[40,42,["H2011"]],[42,43,["H3220"]],[43,44,["H834"]],[44,48,["H7097"]],[48,51,["H6010"]],[51,54,["H7497"]],[54,55,["H6828"]]]},{"k":6211,"v":[[0,3,["H1366"]],[3,5,["H8388"]],[5,8,["H4480","H7218"]],[8,11,["H2022"]],[11,12,["H413"]],[12,14,["H4599"]],[14,17,["H4325"]],[17,19,["H5318"]],[19,22,["H3318"]],[22,23,["H413"]],[23,25,["H5892"]],[25,27,["H2022"]],[27,28,["H6085"]],[28,31,["H1366"]],[31,33,["H8388"]],[33,35,["H1173"]],[35,36,["H1931"]],[36,38,["H7157"]]]},{"k":6212,"v":[[0,3,["H1366"]],[3,4,["H5437"]],[4,6,["H4480","H1173"]],[6,7,["H3220"]],[7,8,["H413"]],[8,9,["H2022"]],[9,10,["H8165"]],[10,13,["H5674"]],[13,14,["H413"]],[14,16,["H3802"]],[16,18,["H2022"]],[18,19,["H3297"]],[19,20,["H1931"]],[20,22,["H3693"]],[22,26,["H4480","H6828"]],[26,29,["H3381"]],[29,31,["H1053"]],[31,34,["H5674"]],[34,36,["H8553"]]]},{"k":6213,"v":[[0,3,["H1366"]],[3,5,["H3318"]],[5,6,["H413"]],[6,8,["H3802"]],[8,10,["H6138"]],[10,11,["H6828"]],[11,14,["H1366"]],[14,16,["H8388"]],[16,18,["H7942"]],[18,21,["H5674"]],[21,23,["H2022"]],[23,24,["H1173"]],[24,27,["H3318"]],[27,29,["H2995"]],[29,33,["H8444"]],[33,36,["H1366"]],[36,37,["H1931"]],[37,40,["H3220"]]]},{"k":6214,"v":[[0,3,["H3220"]],[3,4,["H1366"]],[4,8,["H1419"]],[8,9,["H3220"]],[9,12,["H1366"]],[12,14,["H2088"]],[14,17,["H1366"]],[17,20,["H1121"]],[20,22,["H3063"]],[22,24,["H5439"]],[24,28,["H4940"]]]},{"k":6215,"v":[[0,3,["H3612"]],[3,5,["H1121"]],[5,7,["H3312"]],[7,9,["H5414"]],[9,11,["H2506"]],[11,12,["H8432"]],[12,14,["H1121"]],[14,16,["H3063"]],[16,17,["H413"]],[17,20,["H6310"]],[20,23,["H3068"]],[23,25,["H3091"]],[25,26,["(H853)"]],[26,28,["H7151"]],[28,30,["H704"]],[30,32,["H1"]],[32,34,["H6061"]],[34,35,["H1931"]],[35,38,["H2275"]]]},{"k":6216,"v":[[0,2,["H3612"]],[2,3,["H3423"]],[3,4,["H4480","H8033","(H853)"]],[4,6,["H7969"]],[6,7,["H1121"]],[7,9,["H6061","(H853)"]],[9,10,["H8344"]],[10,12,["H289"]],[12,14,["H8526"]],[14,16,["H3211"]],[16,18,["H6061"]]]},{"k":6217,"v":[[0,4,["H5927"]],[4,5,["H4480","H8033"]],[5,6,["H413"]],[6,8,["H3427"]],[8,10,["H1688"]],[10,13,["H8034"]],[13,15,["H1688"]],[15,16,["H6440"]],[16,18,["H7158"]]]},{"k":6218,"v":[[0,2,["H3612"]],[2,3,["H559"]],[3,5,["H834"]],[5,6,["H5221","(H853)"]],[6,7,["H7158"]],[7,9,["H3920"]],[9,15,["H5414","(H853)"]],[15,16,["H5915"]],[16,18,["H1323"]],[18,20,["H802"]]]},{"k":6219,"v":[[0,2,["H6274"]],[2,4,["H1121"]],[4,6,["H7073"]],[6,8,["H251"]],[8,10,["H3612"]],[10,11,["H3920"]],[11,15,["H5414"]],[15,16,["(H853)"]],[16,17,["H5915"]],[17,19,["H1323"]],[19,21,["H802"]]]},{"k":6220,"v":[[0,5,["H1961"]],[5,8,["H935"]],[8,13,["H5496"]],[13,16,["H7592"]],[16,17,["H4480","H854"]],[17,19,["H1"]],[19,21,["H7704"]],[21,24,["H6795"]],[24,25,["H4480","H5921"]],[25,27,["H2543"]],[27,29,["H3612"]],[29,30,["H559"]],[30,33,["H4100"]],[33,35,[]]]},{"k":6221,"v":[[0,2,["H559"]],[2,3,["H5414"]],[3,6,["H1293"]],[6,7,["H3588"]],[7,10,["H5414"]],[10,13,["H5045"]],[13,14,["H776"]],[14,15,["H5414"]],[15,18,["H1543"]],[18,20,["H4325"]],[20,23,["H5414"]],[23,24,["(H853)"]],[24,26,["H5942"]],[26,27,["H1543"]],[27,30,["H8482"]],[30,31,["H1543"]]]},{"k":6222,"v":[[0,1,["H2063"]],[1,4,["H5159"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H3063"]],[12,16,["H4940"]]]},{"k":6223,"v":[[0,3,["H4480","H7097"]],[3,4,["H5892"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H3063"]],[12,13,["H413"]],[13,15,["H1366"]],[15,17,["H123"]],[17,18,["H5045"]],[18,19,["H1961"]],[19,20,["H6909"]],[20,22,["H5740"]],[22,24,["H3017"]]]},{"k":6224,"v":[[0,2,["H7016"]],[2,4,["H1776"]],[4,6,["H5735"]]]},{"k":6225,"v":[[0,2,["H6943"]],[2,4,["H2674"]],[4,6,["H3497"]]]},{"k":6226,"v":[[0,1,["H2128"]],[1,3,["H2928"]],[3,5,["H1175"]]]},{"k":6227,"v":[[0,2,["H2674"]],[2,3,["H2675"]],[3,5,["H7152"]],[5,7,["H2696"]],[7,8,["H1931"]],[8,10,["H2674"]]]},{"k":6228,"v":[[0,1,["H538"]],[1,3,["H8090"]],[3,5,["H4137"]]]},{"k":6229,"v":[[0,2,["H2693"]],[2,4,["H2829"]],[4,6,["H1046"]]]},{"k":6230,"v":[[0,2,["H2705"]],[2,4,["H884"]],[4,6,["H964"]]]},{"k":6231,"v":[[0,1,["H1173"]],[1,3,["H5864"]],[3,5,["H6107"]]]},{"k":6232,"v":[[0,2,["H513"]],[2,4,["H3686"]],[4,6,["H2767"]]]},{"k":6233,"v":[[0,2,["H6860"]],[2,4,["H4089"]],[4,6,["H5578"]]]},{"k":6234,"v":[[0,2,["H3822"]],[2,4,["H7978"]],[4,6,["H5871"]],[6,8,["H7417"]],[8,9,["H3605"]],[9,11,["H5892"]],[11,13,["H6242"]],[13,15,["H8672"]],[15,18,["H2691"]]]},{"k":6235,"v":[[0,4,["H8219"]],[4,5,["H847"]],[5,7,["H6881"]],[7,9,["H823"]]]},{"k":6236,"v":[[0,2,["H2182"]],[2,4,["H5873"]],[4,5,["H8599"]],[5,7,["H5879"]]]},{"k":6237,"v":[[0,1,["H3412"]],[1,3,["H5725"]],[3,4,["H7755"]],[4,6,["H5825"]]]},{"k":6238,"v":[[0,2,["H8189"]],[2,4,["H5723"]],[4,6,["H1449"]],[6,8,["H1453"]],[8,9,["H702","H6240"]],[9,10,["H5892"]],[10,13,["H2691"]]]},{"k":6239,"v":[[0,1,["H6799"]],[1,3,["H2322"]],[3,5,["H4028"]]]},{"k":6240,"v":[[0,2,["H1810"]],[2,4,["H4708"]],[4,6,["H3371"]]]},{"k":6241,"v":[[0,1,["H3923"]],[1,3,["H1218"]],[3,5,["H5700"]]]},{"k":6242,"v":[[0,2,["H3522"]],[2,4,["H3903"]],[4,6,["H3798"]]]},{"k":6243,"v":[[0,2,["H1450"]],[2,3,["H1016"]],[3,5,["H5279"]],[5,7,["H4719"]],[7,8,["H8337","H6240"]],[8,9,["H5892"]],[9,12,["H2691"]]]},{"k":6244,"v":[[0,1,["H3841"]],[1,3,["H6281"]],[3,5,["H6228"]]]},{"k":6245,"v":[[0,2,["H3316"]],[2,4,["H823"]],[4,6,["H5334"]]]},{"k":6246,"v":[[0,2,["H7084"]],[2,4,["H392"]],[4,6,["H4762"]],[6,7,["H8672"]],[7,8,["H5892"]],[8,11,["H2691"]]]},{"k":6247,"v":[[0,1,["H6138"]],[1,4,["H1323"]],[4,7,["H2691"]]]},{"k":6248,"v":[[0,2,["H4480","H6138"]],[2,6,["H3220"]],[6,7,["H3605"]],[7,8,["H834"]],[8,10,["H5921","H3027"]],[10,11,["H795"]],[11,14,["H2691"]]]},{"k":6249,"v":[[0,1,["H795"]],[1,4,["H1323"]],[4,7,["H2691"]],[7,8,["H5804"]],[8,11,["H1323"]],[11,14,["H2691"]],[14,15,["H5704"]],[15,17,["H5158"]],[17,19,["H4714"]],[19,22,["H1419"]],[22,23,["H3220"]],[23,26,["H1366"]],[26,27,[]]]},{"k":6250,"v":[[0,4,["H2022"]],[4,5,["H8069"]],[5,7,["H3492"]],[7,9,["H7755"]]]},{"k":6251,"v":[[0,2,["H1837"]],[2,4,["H7158"]],[4,5,["H1931"]],[5,7,["H1688"]]]},{"k":6252,"v":[[0,2,["H6024"]],[2,4,["H851"]],[4,6,["H6044"]]]},{"k":6253,"v":[[0,2,["H1657"]],[2,4,["H2473"]],[4,6,["H1542"]],[6,7,["H259","H6240"]],[7,8,["H5892"]],[8,11,["H2691"]]]},{"k":6254,"v":[[0,1,["H694"]],[1,3,["H1746"]],[3,5,["H824"]]]},{"k":6255,"v":[[0,2,["H3241"]],[2,4,["H1054"]],[4,6,["H664"]]]},{"k":6256,"v":[[0,2,["H2547"]],[2,4,["H7153"]],[4,5,["H1931"]],[5,7,["H2275"]],[7,9,["H6730"]],[9,10,["H8672"]],[10,11,["H5892"]],[11,14,["H2691"]]]},{"k":6257,"v":[[0,1,["H4584"]],[1,2,["H3760"]],[2,4,["H2128"]],[4,6,["H3194"]]]},{"k":6258,"v":[[0,2,["H3157"]],[2,4,["H3347"]],[4,6,["H2182"]]]},{"k":6259,"v":[[0,1,["H7014"]],[1,2,["H1390"]],[2,4,["H8553"]],[4,5,["H6235"]],[5,6,["H5892"]],[6,9,["H2691"]]]},{"k":6260,"v":[[0,1,["H2478"]],[1,2,["H1049"]],[2,4,["H1446"]]]},{"k":6261,"v":[[0,2,["H4638"]],[2,4,["H1042"]],[4,6,["H515"]],[6,7,["H8337"]],[7,8,["H5892"]],[8,11,["H2691"]]]},{"k":6262,"v":[[0,1,["H7154"]],[1,2,["H1931"]],[2,4,["H7157"]],[4,6,["H7237"]],[6,7,["H8147"]],[7,8,["H5892"]],[8,11,["H2691"]]]},{"k":6263,"v":[[0,3,["H4057"]],[3,4,["H1026"]],[4,5,["H4081"]],[5,7,["H5527"]]]},{"k":6264,"v":[[0,2,["H5044"]],[2,5,["H5892"]],[5,7,["H5898"]],[7,9,["H5872"]],[9,10,["H8337"]],[10,11,["H5892"]],[11,14,["H2691"]]]},{"k":6265,"v":[[0,4,["H2983"]],[4,6,["H3427"]],[6,8,["H3389"]],[8,10,["H1121"]],[10,12,["H3063"]],[12,13,["H3201"]],[13,14,["H3808"]],[14,17,["H3423"]],[17,20,["H2983"]],[20,21,["H3427"]],[21,22,["H854"]],[22,24,["H1121"]],[24,26,["H3063"]],[26,28,["H3389"]],[28,29,["H5704"]],[29,30,["H2088"]],[30,31,["H3117"]]]},{"k":6266,"v":[[0,3,["H1486"]],[3,6,["H1121"]],[6,8,["H3130"]],[8,9,["H3318"]],[9,11,["H4480","H3383"]],[11,13,["H3405"]],[13,16,["H4325"]],[16,18,["H3405"]],[18,21,["H4217"]],[21,24,["H4057"]],[24,27,["H5927"]],[27,29,["H4480","H3405"]],[29,31,["H2022"]],[31,32,["H1008"]]]},{"k":6267,"v":[[0,3,["H3318"]],[3,5,["H4480","H1008"]],[5,7,["H3870"]],[7,10,["H5674"]],[10,11,["H413"]],[11,13,["H1366"]],[13,15,["H757"]],[15,17,["H5852"]]]},{"k":6268,"v":[[0,3,["H3381"]],[3,4,["H3220"]],[4,5,["H413"]],[5,7,["H1366"]],[7,9,["H3311"]],[9,10,["H5704"]],[10,12,["H1366"]],[12,14,["H1032"]],[14,16,["H8481"]],[16,18,["H5704"]],[18,19,["H1507"]],[19,23,["H8444"]],[23,25,["H1961"]],[25,28,["H3220"]]]},{"k":6269,"v":[[0,3,["H1121"]],[3,5,["H3130"]],[5,6,["H4519"]],[6,8,["H669"]],[8,11,["H5157"]]]},{"k":6270,"v":[[0,3,["H1366"]],[3,6,["H1121"]],[6,8,["H669"]],[8,12,["H4940"]],[12,13,["H1961"]],[13,17,["H1366"]],[17,20,["H5159"]],[20,23,["H4217"]],[23,25,["H1961"]],[25,26,["H5853"]],[26,27,["H5704"]],[27,28,["H1032"]],[28,30,["H5945"]]]},{"k":6271,"v":[[0,3,["H1366"]],[3,5,["H3318"]],[5,8,["H3220"]],[8,10,["H4366"]],[10,14,["H4480","H6828"]],[14,17,["H1366"]],[17,19,["H5437"]],[19,20,["H4217"]],[20,22,["H8387"]],[22,25,["H5674"]],[25,29,["H4480","H4217"]],[29,31,["H3239"]]]},{"k":6272,"v":[[0,4,["H3381"]],[4,6,["H4480","H3239"]],[6,8,["H5852"]],[8,11,["H5292"]],[11,13,["H6293"]],[13,15,["H3405"]],[15,18,["H3318"]],[18,20,["H3383"]]]},{"k":6273,"v":[[0,2,["H1366"]],[2,4,["H1980"]],[4,6,["H4480","H8599"]],[6,7,["H3220"]],[7,10,["H5158"]],[10,11,["H7071"]],[11,15,["H8444"]],[15,17,["H1961"]],[17,20,["H3220"]],[20,21,["H2063"]],[21,24,["H5159"]],[24,27,["H4294"]],[27,30,["H1121"]],[30,32,["H669"]],[32,35,["H4940"]]]},{"k":6274,"v":[[0,3,["H3995"]],[3,4,["H5892"]],[4,7,["H1121"]],[7,9,["H669"]],[9,11,["H8432"]],[11,13,["H5159"]],[13,16,["H1121"]],[16,18,["H4519"]],[18,19,["H3605"]],[19,21,["H5892"]],[21,24,["H2691"]]]},{"k":6275,"v":[[0,5,["H3423","H3808","(H853)"]],[5,7,["H3669"]],[7,9,["H3427"]],[9,11,["H1507"]],[11,14,["H3669"]],[14,15,["H3427"]],[15,16,["H7130"]],[16,18,["H669"]],[18,19,["H5704"]],[19,20,["H2088"]],[20,21,["H3117"]],[21,23,["H5647"]],[23,25,["H4522"]]]},{"k":6276,"v":[[0,2,["H1961"]],[2,5,["H1486"]],[5,8,["H4294"]],[8,10,["H4519"]],[10,11,["H3588"]],[11,12,["H1931"]],[12,15,["H1060"]],[15,17,["H3130"]],[17,21,["H4353"]],[21,23,["H1060"]],[23,25,["H4519"]],[25,27,["H1"]],[27,29,["H1568"]],[29,30,["H3588"]],[30,31,["H1931"]],[31,32,["H1961"]],[32,34,["H376"]],[34,36,["H4421"]],[36,39,["H1961"]],[39,40,["H1568"]],[40,42,["H1316"]]]},{"k":6277,"v":[[0,2,["H1961"]],[2,8,["H3498"]],[8,11,["H1121"]],[11,13,["H4519"]],[13,16,["H4940"]],[16,19,["H1121"]],[19,21,["H44"]],[21,25,["H1121"]],[25,27,["H2507"]],[27,31,["H1121"]],[31,33,["H844"]],[33,37,["H1121"]],[37,39,["H7928"]],[39,43,["H1121"]],[43,45,["H2660"]],[45,49,["H1121"]],[49,51,["H8061"]],[51,52,["H428"]],[52,55,["H2145"]],[55,56,["H1121"]],[56,58,["H4519"]],[58,60,["H1121"]],[60,62,["H3130"]],[62,65,["H4940"]]]},{"k":6278,"v":[[0,2,["H6765"]],[2,4,["H1121"]],[4,6,["H2660"]],[6,8,["H1121"]],[8,10,["H1568"]],[10,12,["H1121"]],[12,14,["H4353"]],[14,16,["H1121"]],[16,18,["H4519"]],[18,19,["H1961"]],[19,20,["H3808"]],[20,21,["H1121"]],[21,22,["H3588","H518"]],[22,23,["H1323"]],[23,25,["H428"]],[25,28,["H8034"]],[28,31,["H1323"]],[31,32,["H4244"]],[32,34,["H5270"]],[34,35,["H2295"]],[35,36,["H4435"]],[36,38,["H8656"]]]},{"k":6279,"v":[[0,4,["H7126"]],[4,5,["H6440"]],[5,6,["H499"]],[6,8,["H3548"]],[8,10,["H6440"]],[10,11,["H3091"]],[11,13,["H1121"]],[13,15,["H5126"]],[15,17,["H6440"]],[17,19,["H5387"]],[19,20,["H559"]],[20,22,["H3068"]],[22,23,["H6680","(H853)"]],[23,24,["H4872"]],[24,26,["H5414"]],[26,29,["H5159"]],[29,30,["H8432"]],[30,32,["H251"]],[32,34,["H413"]],[34,37,["H6310"]],[37,40,["H3068"]],[40,42,["H5414"]],[42,45,["H5159"]],[45,46,["H8432"]],[46,48,["H251"]],[48,51,["H1"]]]},{"k":6280,"v":[[0,3,["H5307"]],[3,4,["H6235"]],[4,5,["H2256"]],[5,7,["H4519"]],[7,8,["H905"]],[8,10,["H4480","H776"]],[10,12,["H1568"]],[12,14,["H1316"]],[14,15,["H834"]],[15,20,["H5676"]],[20,21,["H3383"]]]},{"k":6281,"v":[[0,1,["H3588"]],[1,3,["H1323"]],[3,5,["H4519"]],[5,8,["H5157","H5159"]],[8,9,["H8432"]],[9,11,["H1121"]],[11,14,["H3498"]],[14,16,["H4519"]],[16,17,["H1121"]],[17,18,["H1961"]],[18,20,["H776"]],[20,22,["H1568"]]]},{"k":6282,"v":[[0,3,["H1366"]],[3,5,["H4519"]],[5,6,["H1961"]],[6,8,["H4480","H836"]],[8,10,["H4366"]],[10,11,["H834"]],[11,13,["H5921","H6440"]],[13,14,["H7927"]],[14,17,["H1366"]],[17,19,["H1980"]],[19,20,["H413"]],[20,23,["H3225"]],[23,24,["H413"]],[24,26,["H3427"]],[26,28,["H5887"]]]},{"k":6283,"v":[[0,2,["H4519"]],[2,3,["H1961"]],[3,5,["H776"]],[5,7,["H8599"]],[7,9,["H8599"]],[9,10,["H413"]],[10,12,["H1366"]],[12,14,["H4519"]],[14,18,["H1121"]],[18,20,["H669"]]]},{"k":6284,"v":[[0,3,["H1366"]],[3,4,["H3381"]],[4,7,["H5158"]],[7,8,["H7071"]],[8,9,["H5045"]],[9,12,["H5158"]],[12,13,["H428"]],[13,14,["H5892"]],[14,16,["H669"]],[16,18,["H8432"]],[18,20,["H5892"]],[20,22,["H4519"]],[22,24,["H1366"]],[24,26,["H4519"]],[26,32,["H4480","H6828"]],[32,35,["H5158"]],[35,38,["H8444"]],[38,41,["H1961"]],[41,44,["H3220"]]]},{"k":6285,"v":[[0,1,["H5045"]],[1,4,["H669"]],[4,6,["H6828"]],[6,9,["H4519"]],[9,12,["H3220"]],[12,13,["H1961"]],[13,15,["H1366"]],[15,19,["H6293"]],[19,21,["H836"]],[21,24,["H4480","H6828"]],[24,27,["H3485"]],[27,30,["H4480","H4217"]]]},{"k":6286,"v":[[0,2,["H4519"]],[2,3,["H1961"]],[3,5,["H3485"]],[5,8,["H836"]],[8,9,["H1052"]],[9,12,["H1323"]],[12,14,["H2991"]],[14,17,["H1323"]],[17,20,["H3427"]],[20,22,["H1756"]],[22,25,["H1323"]],[25,28,["H3427"]],[28,30,["H5874"]],[30,33,["H1323"]],[33,36,["H3427"]],[36,38,["H8590"]],[38,41,["H1323"]],[41,44,["H3427"]],[44,46,["H4023"]],[46,49,["H1323"]],[49,51,["H7969"]],[51,52,["H5316"]]]},{"k":6287,"v":[[0,3,["H1121"]],[3,5,["H4519"]],[5,6,["H3201"]],[6,7,["H3808"]],[7,9,["H3423"]],[9,12,["(H853)"]],[12,13,["H428"]],[13,14,["H5892"]],[14,17,["H3669"]],[17,18,["H2974"]],[18,19,["H3427"]],[19,21,["H2088"]],[21,22,["H776"]]]},{"k":6288,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,13,["H2388"]],[13,16,["H5414","(H853)"]],[16,18,["H3669"]],[18,20,["H4522"]],[20,23,["H3808"]],[23,27,["H3423","H3423"]]]},{"k":6289,"v":[[0,3,["H1121"]],[3,5,["H3130"]],[5,6,["H1696"]],[6,7,["H854","(H853)"]],[7,8,["H3091"]],[8,9,["H559"]],[9,10,["H4069"]],[10,13,["H5414"]],[13,16,["H259"]],[16,17,["H1486"]],[17,19,["H259"]],[19,20,["H2256"]],[20,22,["H5159"]],[22,24,["H589"]],[24,27,["H7227"]],[27,28,["H5971"]],[28,29,["H5704"]],[29,32,["H3068"]],[32,34,["H1288"]],[34,36,["H834","H5704","H3541"]]]},{"k":6290,"v":[[0,2,["H3091"]],[2,3,["H559","H413"]],[3,5,["H518"]],[5,6,["H859"]],[6,9,["H7227"]],[9,10,["H5971"]],[10,14,["H5927"]],[14,17,["H3293"]],[17,21,["H1254"]],[21,24,["H8033"]],[24,27,["H776"]],[27,30,["H6522"]],[30,34,["H7497"]],[34,35,["H3588"]],[35,36,["H2022"]],[36,37,["H669"]],[37,40,["H213"]],[40,42,[]]]},{"k":6291,"v":[[0,3,["H1121"]],[3,5,["H3130"]],[5,6,["H559"]],[6,8,["H2022"]],[8,10,["H3808"]],[10,11,["H4672"]],[11,15,["H3605"]],[15,17,["H3669"]],[17,19,["H3427"]],[19,22,["H776"]],[22,25,["H6010"]],[25,27,["H7393"]],[27,29,["H1270"]],[29,32,["H834"]],[32,35,["H1052"]],[35,38,["H1323"]],[38,41,["H834"]],[41,45,["H6010"]],[45,47,["H3157"]]]},{"k":6292,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1004"]],[6,8,["H3130"]],[8,11,["H669"]],[11,14,["H4519"]],[14,15,["H559"]],[15,16,["H859"]],[16,19,["H7227"]],[19,20,["H5971"]],[20,23,["H1419"]],[23,24,["H3581"]],[24,27,["H3808"]],[27,28,["H1961"]],[28,29,["H259"]],[29,30,["H1486"]],[30,31,[]]]},{"k":6293,"v":[[0,1,["H3588"]],[1,3,["H2022"]],[3,5,["H1961"]],[5,7,["H3588"]],[7,8,["H1931"]],[8,11,["H3293"]],[11,17,["H1254"]],[17,20,["H8444"]],[20,24,["H1931"]],[24,26,["H3588"]],[26,30,["H3423","(H853)"]],[30,32,["H3669"]],[32,33,["H3588"]],[33,36,["H1270"]],[36,37,["H7393"]],[37,39,["H3588"]],[39,40,["H1931"]],[40,42,["H2389"]]]},{"k":6294,"v":[[0,3,["H3605"]],[3,4,["H5712"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,11,["H6950"]],[11,13,["H7887"]],[13,16,["H7931","(H853)"]],[16,18,["H168"]],[18,21,["H4150"]],[21,22,["H8033"]],[22,25,["H776"]],[25,27,["H3533"]],[27,28,["H6440"]],[28,29,[]]]},{"k":6295,"v":[[0,3,["H3498"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,9,["H7651"]],[9,10,["H7626"]],[10,11,["H834"]],[11,13,["H3808"]],[13,15,["H2505","(H853)"]],[15,17,["H5159"]]]},{"k":6296,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,10,["H5704","H575"]],[10,12,["H859"]],[12,13,["H7503"]],[13,15,["H935"]],[15,17,["H3423","(H853)"]],[17,19,["H776"]],[19,20,["H834"]],[20,22,["H3068"]],[22,23,["H430"]],[23,26,["H1"]],[26,28,["H5414"]],[28,29,[]]]},{"k":6297,"v":[[0,1,["H3051"]],[1,6,["H7969"]],[6,7,["H376"]],[7,10,["H7626"]],[10,14,["H7971"]],[14,19,["H6965"]],[19,21,["H1980"]],[21,24,["H776"]],[24,26,["H3789"]],[26,28,["H6310"]],[28,31,["H5159"]],[31,37,["H935"]],[37,39,["H413"]],[39,40,[]]]},{"k":6298,"v":[[0,4,["H2505"]],[4,7,["H7651"]],[7,8,["H2506"]],[8,9,["H3063"]],[9,11,["H5975"]],[11,12,["H5921"]],[12,14,["H1366"]],[14,17,["H4480","H5045"]],[17,20,["H1004"]],[20,22,["H3130"]],[22,24,["H5975"]],[24,25,["H5921"]],[25,27,["H1366"]],[27,30,["H4480","H6828"]]]},{"k":6299,"v":[[0,1,["H859"]],[1,4,["H3789","(H853)"]],[4,6,["H776"]],[6,8,["H7651"]],[8,9,["H2506"]],[9,11,["H935"]],[11,14,["H2008"]],[14,15,["H413"]],[15,20,["H3384"]],[20,21,["H1486"]],[21,24,["H6311"]],[24,25,["H6440"]],[25,27,["H3068"]],[27,29,["H430"]]]},{"k":6300,"v":[[0,1,["H3588"]],[1,3,["H3881"]],[3,5,["H369"]],[5,6,["H2506"]],[6,7,["H7130"]],[7,9,["H3588"]],[9,11,["H3550"]],[11,14,["H3068"]],[14,17,["H5159"]],[17,19,["H1410"]],[19,21,["H7205"]],[21,23,["H2677"]],[23,25,["H7626"]],[25,27,["H4519"]],[27,29,["H3947"]],[29,31,["H5159"]],[31,32,["H4480","H5676"]],[32,33,["H3383"]],[33,36,["H4217"]],[36,37,["H834"]],[37,38,["H4872"]],[38,40,["H5650"]],[40,43,["H3068"]],[43,44,["H5414"]],[44,45,[]]]},{"k":6301,"v":[[0,3,["H376"]],[3,4,["H6965"]],[4,7,["H1980"]],[7,9,["H3091"]],[9,10,["H6680","(H853)"]],[10,13,["H1980"]],[13,15,["H3789","(H853)"]],[15,17,["H776"]],[17,18,["H559"]],[18,19,["H1980"]],[19,21,["H1980"]],[21,24,["H776"]],[24,26,["H3789"]],[26,30,["H7725"]],[30,31,["H413"]],[31,36,["H6311"]],[36,37,["H7993"]],[37,38,["H1486"]],[38,41,["H6440"]],[41,43,["H3068"]],[43,45,["H7887"]]]},{"k":6302,"v":[[0,3,["H376"]],[3,4,["H1980"]],[4,7,["H5674"]],[7,9,["H776"]],[9,11,["H3789"]],[11,14,["H5892"]],[14,16,["H7651"]],[16,17,["H2506"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,22,["H935"]],[22,24,["H413"]],[24,25,["H3091"]],[25,26,["H413"]],[26,28,["H4264"]],[28,30,["H7887"]]]},{"k":6303,"v":[[0,2,["H3091"]],[2,3,["H7993"]],[3,4,["H1486"]],[4,8,["H7887"]],[8,9,["H6440"]],[9,11,["H3068"]],[11,13,["H8033"]],[13,14,["H3091"]],[14,15,["H2505","(H853)"]],[15,17,["H776"]],[17,20,["H1121"]],[20,22,["H3478"]],[22,26,["H4256"]]]},{"k":6304,"v":[[0,3,["H1486"]],[3,6,["H4294"]],[6,9,["H1121"]],[9,11,["H1144"]],[11,13,["H5927"]],[13,17,["H4940"]],[17,20,["H1366"]],[20,23,["H1486"]],[23,25,["H3318"]],[25,26,["H996"]],[26,28,["H1121"]],[28,30,["H3063"]],[30,33,["H1121"]],[33,35,["H3130"]]]},{"k":6305,"v":[[0,3,["H1366"]],[3,6,["H6828"]],[6,7,["H6285"]],[7,8,["H1961"]],[8,9,["H4480"]],[9,10,["H3383"]],[10,13,["H1366"]],[13,15,["H5927"]],[15,16,["H413"]],[16,18,["H3802"]],[18,20,["H3405"]],[20,24,["H4480","H6828"]],[24,27,["H5927"]],[27,30,["H2022"]],[30,31,["H3220"]],[31,35,["H8444"]],[35,37,["H1961"]],[37,40,["H4057"]],[40,42,["H1007"]]]},{"k":6306,"v":[[0,3,["H1366"]],[3,5,["H5674"]],[5,7,["H4480","H8033"]],[7,9,["H3870"]],[9,10,["H413"]],[10,12,["H3802"]],[12,14,["H3870"]],[14,15,["H1931"]],[15,17,["H1008"]],[17,18,["H5045"]],[18,21,["H1366"]],[21,22,["H3381"]],[22,24,["H5853"]],[24,25,["H5921"]],[25,27,["H2022"]],[27,28,["H834"]],[28,33,["H4480","H5045"]],[33,36,["H8481"]],[36,37,["H1032"]]]},{"k":6307,"v":[[0,3,["H1366"]],[3,5,["H8388"]],[5,8,["H5437"]],[8,10,["H6285"]],[10,13,["H3220"]],[13,14,["H5045"]],[14,15,["H4480"]],[15,17,["H2022"]],[17,18,["H834"]],[18,20,["H5921","H6440"]],[20,21,["H1032"]],[21,22,["H5045"]],[22,26,["H8444"]],[26,28,["H1961"]],[28,29,["H413"]],[29,30,["H7154"]],[30,31,["H1931"]],[31,33,["H7157"]],[33,35,["H5892"]],[35,38,["H1121"]],[38,40,["H3063"]],[40,41,["H2063"]],[41,44,["H3220"]],[44,45,["H6285"]]]},{"k":6308,"v":[[0,3,["H5045"]],[3,4,["H6285"]],[4,8,["H4480","H7097"]],[8,10,["H7157"]],[10,13,["H1366"]],[13,15,["H3318"]],[15,18,["H3220"]],[18,21,["H3318"]],[21,22,["H413"]],[22,24,["H4599"]],[24,26,["H4325"]],[26,28,["H5318"]]]},{"k":6309,"v":[[0,3,["H1366"]],[3,5,["H3381"]],[5,6,["H413"]],[6,8,["H7097"]],[8,11,["H2022"]],[11,12,["H834"]],[12,14,["H5921","H6440"]],[14,16,["H1516"]],[16,19,["H1121"]],[19,21,["H2011"]],[21,23,["H834"]],[23,27,["H6010"]],[27,30,["H7497"]],[30,33,["H6828"]],[33,35,["H3381"]],[35,38,["H1516"]],[38,40,["H2011"]],[40,41,["H413"]],[41,43,["H3802"]],[43,45,["H2983"]],[45,48,["H5045"]],[48,50,["H3381"]],[50,52,["H5883"]]]},{"k":6310,"v":[[0,3,["H8388"]],[3,6,["H4480","H6828"]],[6,9,["H3318"]],[9,11,["H5885"]],[11,14,["H3318"]],[14,15,["H413"]],[15,16,["H1553"]],[16,17,["H834"]],[17,20,["H5227"]],[20,23,["H4608"]],[23,25,["H131"]],[25,27,["H3381"]],[27,30,["H68"]],[30,32,["H932"]],[32,34,["H1121"]],[34,36,["H7205"]]]},{"k":6311,"v":[[0,2,["H5674"]],[2,4,["H413"]],[4,6,["H3802"]],[6,8,["H4136"]],[8,9,["H6160"]],[9,10,["H6828"]],[10,13,["H3381"]],[13,15,["H6160"]]]},{"k":6312,"v":[[0,3,["H1366"]],[3,5,["H5674"]],[5,6,["H413"]],[6,8,["H3802"]],[8,10,["H1031"]],[10,11,["H6828"]],[11,14,["H8444"]],[14,17,["H1366"]],[17,18,["H1961"]],[18,19,["H413"]],[19,21,["H6828"]],[21,22,["H3956"]],[22,25,["H4417"]],[25,26,["H3220"]],[26,27,["H413"]],[27,29,["H5045"]],[29,30,["H7097"]],[30,32,["H3383"]],[32,33,["H2088"]],[33,36,["H5045"]],[36,37,["H1366"]]]},{"k":6313,"v":[[0,2,["H3383"]],[2,5,["H1379"]],[5,10,["H6924"]],[10,11,["H6285"]],[11,12,["H2063"]],[12,15,["H5159"]],[15,18,["H1121"]],[18,20,["H1144"]],[20,23,["H1367"]],[23,26,["H5439"]],[26,30,["H4940"]]]},{"k":6314,"v":[[0,3,["H5892"]],[3,6,["H4294"]],[6,9,["H1121"]],[9,11,["H1144"]],[11,15,["H4940"]],[15,16,["H1961"]],[16,17,["H3405"]],[17,19,["H1031"]],[19,22,["H6010"]],[22,24,["H7104"]]]},{"k":6315,"v":[[0,2,["H1026"]],[2,4,["H6787"]],[4,6,["H1008"]]]},{"k":6316,"v":[[0,2,["H5761"]],[2,4,["H6511"]],[4,6,["H6084"]]]},{"k":6317,"v":[[0,2,["H3726"]],[2,4,["H6078"]],[4,6,["H1387"]],[6,7,["H8147","H6240"]],[7,8,["H5892"]],[8,11,["H2691"]]]},{"k":6318,"v":[[0,1,["H1391"]],[1,3,["H7414"]],[3,5,["H881"]]]},{"k":6319,"v":[[0,2,["H4708"]],[2,4,["H3716"]],[4,6,["H4681"]]]},{"k":6320,"v":[[0,2,["H7552"]],[2,4,["H3416"]],[4,6,["H8634"]]]},{"k":6321,"v":[[0,2,["H6762"]],[2,3,["H507"]],[3,5,["H2983"]],[5,6,["H1931"]],[6,8,["H3389"]],[8,9,["H1394"]],[9,11,["H7157"]],[11,12,["H702","H6240"]],[12,13,["H5892"]],[13,16,["H2691"]],[16,17,["H2063"]],[17,20,["H5159"]],[20,23,["H1121"]],[23,25,["H1144"]],[25,29,["H4940"]]]},{"k":6322,"v":[[0,3,["H8145"]],[3,4,["H1486"]],[4,6,["H3318"]],[6,8,["H8095"]],[8,12,["H4294"]],[12,15,["H1121"]],[15,17,["H8095"]],[17,21,["H4940"]],[21,24,["H5159"]],[24,25,["H1961"]],[25,26,["H8432"]],[26,28,["H5159"]],[28,31,["H1121"]],[31,33,["H3063"]]]},{"k":6323,"v":[[0,3,["H1961"]],[3,6,["H5159"]],[6,7,["H884"]],[7,9,["H7652"]],[9,11,["H4137"]]]},{"k":6324,"v":[[0,2,["H2705"]],[2,4,["H1088"]],[4,6,["H6107"]]]},{"k":6325,"v":[[0,2,["H513"]],[2,4,["H1329"]],[4,6,["H2767"]]]},{"k":6326,"v":[[0,2,["H6860"]],[2,4,["H1024"]],[4,6,["H2701"]]]},{"k":6327,"v":[[0,2,["H1034"]],[2,4,["H8287"]],[4,5,["H7969","H6240"]],[5,6,["H5892"]],[6,9,["H2691"]]]},{"k":6328,"v":[[0,1,["H5871"]],[1,2,["H7417"]],[2,4,["H6281"]],[4,6,["H6228"]],[6,7,["H702"]],[7,8,["H5892"]],[8,11,["H2691"]]]},{"k":6329,"v":[[0,2,["H3605"]],[2,4,["H2691"]],[4,5,["H834"]],[5,8,["H5439"]],[8,9,["H428"]],[9,10,["H5892"]],[10,11,["H5704"]],[11,12,["H1192"]],[12,13,["H7418"]],[13,16,["H5045"]],[16,17,["H2063"]],[17,20,["H5159"]],[20,23,["H4294"]],[23,26,["H1121"]],[26,28,["H8095"]],[28,32,["H4940"]]]},{"k":6330,"v":[[0,4,["H4480","H2256"]],[4,7,["H1121"]],[7,9,["H3063"]],[9,12,["H5159"]],[12,15,["H1121"]],[15,17,["H8095"]],[17,18,["H3588"]],[18,20,["H2506"]],[20,23,["H1121"]],[23,25,["H3063"]],[25,26,["H1961"]],[26,28,["H7227"]],[28,30,["H4480"]],[30,33,["H1121"]],[33,35,["H8095"]],[35,38,["H5157"]],[38,39,["H8432"]],[39,41,["H5159"]],[41,43,[]]]},{"k":6331,"v":[[0,3,["H7992"]],[3,4,["H1486"]],[4,6,["H5927"]],[6,9,["H1121"]],[9,11,["H2074"]],[11,15,["H4940"]],[15,18,["H1366"]],[18,21,["H5159"]],[21,22,["H1961"]],[22,23,["H5704"]],[23,24,["H8301"]]]},{"k":6332,"v":[[0,3,["H1366"]],[3,5,["H5927"]],[5,8,["H3220"]],[8,10,["H4831"]],[10,12,["H6293"]],[12,14,["H1708"]],[14,16,["H6293"]],[16,17,["H413"]],[17,19,["H5158"]],[19,20,["H834"]],[20,22,["H5921","H6440"]],[22,23,["H3362"]]]},{"k":6333,"v":[[0,2,["H7725"]],[2,4,["H4480","H8301"]],[4,5,["H6924"]],[5,8,["H4217","H8121"]],[8,9,["H5921"]],[9,11,["H1366"]],[11,13,["H3696"]],[13,17,["H3318"]],[17,18,["H413"]],[18,19,["H1705"]],[19,22,["H5927"]],[22,24,["H3309"]]]},{"k":6334,"v":[[0,3,["H4480","H8033"]],[3,6,["H5674"]],[6,9,["H6924"]],[9,11,["H1662"]],[11,13,["H6278"]],[13,16,["H3318"]],[16,18,["H7417"]],[18,20,["H5269"]]]},{"k":6335,"v":[[0,3,["H1366"]],[3,4,["H5437"]],[4,9,["H4480","H6828"]],[9,11,["H2615"]],[11,14,["H8444"]],[14,16,["H1961"]],[16,19,["H1516"]],[19,21,["H3317"]]]},{"k":6336,"v":[[0,2,["H7005"]],[2,4,["H5096"]],[4,6,["H8110"]],[6,8,["H3030"]],[8,10,["H1035"]],[10,11,["H8147","H6240"]],[11,12,["H5892"]],[12,15,["H2691"]]]},{"k":6337,"v":[[0,1,["H2063"]],[1,4,["H5159"]],[4,7,["H1121"]],[7,9,["H2074"]],[9,13,["H4940"]],[13,14,["H428"]],[14,15,["H5892"]],[15,18,["H2691"]]]},{"k":6338,"v":[[0,3,["H7243"]],[3,4,["H1486"]],[4,6,["H3318"]],[6,8,["H3485"]],[8,11,["H1121"]],[11,13,["H3485"]],[13,17,["H4940"]]]},{"k":6339,"v":[[0,3,["H1366"]],[3,4,["H1961"]],[4,6,["H3157"]],[6,8,["H3694"]],[8,10,["H7766"]]]},{"k":6340,"v":[[0,2,["H2663"]],[2,4,["H7866"]],[4,6,["H588"]]]},{"k":6341,"v":[[0,2,["H7245"]],[2,4,["H7191"]],[4,6,["H77"]]]},{"k":6342,"v":[[0,2,["H7432"]],[2,4,["H5873"]],[4,6,["H5876"]],[6,8,["H1048"]]]},{"k":6343,"v":[[0,3,["H1366"]],[3,4,["H6293"]],[4,6,["H8396"]],[6,8,["H7831"]],[8,10,["H1053"]],[10,13,["H8444"]],[13,16,["H1366"]],[16,17,["H1961"]],[17,19,["H3383"]],[19,20,["H8337","H6240"]],[20,21,["H5892"]],[21,24,["H2691"]]]},{"k":6344,"v":[[0,1,["H2063"]],[1,4,["H5159"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H3485"]],[12,16,["H4940"]],[16,18,["H5892"]],[18,21,["H2691"]]]},{"k":6345,"v":[[0,3,["H2549"]],[3,4,["H1486"]],[4,6,["H3318"]],[6,9,["H4294"]],[9,12,["H1121"]],[12,14,["H836"]],[14,18,["H4940"]]]},{"k":6346,"v":[[0,3,["H1366"]],[3,4,["H1961"]],[4,5,["H2520"]],[5,7,["H2482"]],[7,9,["H991"]],[9,11,["H407"]]]},{"k":6347,"v":[[0,2,["H487"]],[2,4,["H6008"]],[4,6,["H4861"]],[6,8,["H6293"]],[8,10,["H3760"]],[10,11,["H3220"]],[11,14,["H7884"]]]},{"k":6348,"v":[[0,2,["H7725"]],[2,5,["H4217","H8121"]],[5,7,["H1016"]],[7,9,["H6293"]],[9,11,["H2074"]],[11,15,["H1516"]],[15,17,["H3317"]],[17,21,["H6828"]],[21,23,["H1025"]],[23,25,["H5272"]],[25,28,["H3318"]],[28,29,["H413"]],[29,30,["H3521"]],[30,34,["H8040"]]]},{"k":6349,"v":[[0,2,["H5683"]],[2,4,["H7340"]],[4,6,["H2540"]],[6,8,["H7071"]],[8,10,["H5704"]],[10,11,["H7227"]],[11,12,["H6721"]]]},{"k":6350,"v":[[0,4,["H1366"]],[4,5,["H7725"]],[5,7,["H7414"]],[7,9,["H5704"]],[9,11,["H4013"]],[11,12,["H5892"]],[12,13,["H6865"]],[13,16,["H1366"]],[16,17,["H7725"]],[17,19,["H2621"]],[19,22,["H8444"]],[22,24,["H1961"]],[24,27,["H3220"]],[27,30,["H4480","H2256"]],[30,32,["H392"]]]},{"k":6351,"v":[[0,1,["H5981"]],[1,4,["H663"]],[4,6,["H7340"]],[6,7,["H6242"]],[7,9,["H8147"]],[9,10,["H5892"]],[10,13,["H2691"]]]},{"k":6352,"v":[[0,1,["H2063"]],[1,4,["H5159"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H836"]],[12,16,["H4940"]],[16,17,["H428"]],[17,18,["H5892"]],[18,21,["H2691"]]]},{"k":6353,"v":[[0,2,["H8345"]],[2,3,["H1486"]],[3,5,["H3318"]],[5,8,["H1121"]],[8,10,["H5321"]],[10,14,["H1121"]],[14,16,["H5321"]],[16,20,["H4940"]]]},{"k":6354,"v":[[0,3,["H1366"]],[3,4,["H1961"]],[4,6,["H4480","H2501"]],[6,8,["H4480","H436"]],[8,10,["H6815"]],[10,12,["H129"]],[12,13,["H5346"]],[13,15,["H2995"]],[15,16,["H5704"]],[16,17,["H3946"]],[17,20,["H8444"]],[20,22,["H1961"]],[22,24,["H3383"]]]},{"k":6355,"v":[[0,4,["H1366"]],[4,5,["H7725"]],[5,6,["H3220"]],[6,8,["H243"]],[8,11,["H3318"]],[11,13,["H4480","H8033"]],[13,15,["H2712"]],[15,17,["H6293"]],[17,19,["H2074"]],[19,23,["H5045"]],[23,25,["H6293"]],[25,27,["H836"]],[27,31,["H4480","H3220"]],[31,34,["H3063"]],[34,36,["H3383"]],[36,39,["H4217","H8121"]]]},{"k":6356,"v":[[0,3,["H4013"]],[3,4,["H5892"]],[4,6,["H6661"]],[6,7,["H6863"]],[7,9,["H2575"]],[9,10,["H7557"]],[10,12,["H3672"]]]},{"k":6357,"v":[[0,2,["H128"]],[2,4,["H7414"]],[4,6,["H2674"]]]},{"k":6358,"v":[[0,2,["H6943"]],[2,4,["H154"]],[4,6,["H5877"]]]},{"k":6359,"v":[[0,2,["H3375"]],[2,4,["H4027"]],[4,5,["H2765"]],[5,7,["H1043"]],[7,9,["H1053"]],[9,10,["H8672","H6240"]],[10,11,["H5892"]],[11,14,["H2691"]]]},{"k":6360,"v":[[0,1,["H2063"]],[1,4,["H5159"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H5321"]],[12,16,["H4940"]],[16,18,["H5892"]],[18,21,["H2691"]]]},{"k":6361,"v":[[0,3,["H7637"]],[3,4,["H1486"]],[4,6,["H3318"]],[6,9,["H4294"]],[9,12,["H1121"]],[12,14,["H1835"]],[14,18,["H4940"]]]},{"k":6362,"v":[[0,3,["H1366"]],[3,6,["H5159"]],[6,7,["H1961"]],[7,8,["H6881"]],[8,10,["H847"]],[10,12,["H5905"]]]},{"k":6363,"v":[[0,2,["H8169"]],[2,4,["H357"]],[4,6,["H3494"]]]},{"k":6364,"v":[[0,2,["H356"]],[2,4,["H8553"]],[4,6,["H6138"]]]},{"k":6365,"v":[[0,2,["H514"]],[2,4,["H1405"]],[4,6,["H1191"]]]},{"k":6366,"v":[[0,2,["H3055"]],[2,4,["H1139"]],[4,6,["H1667"]]]},{"k":6367,"v":[[0,2,["H4313"]],[2,4,["H7542"]],[4,5,["H5973"]],[5,7,["H1366"]],[7,8,["H4136"]],[8,9,["H3305"]]]},{"k":6368,"v":[[0,3,["H1366"]],[3,6,["H1121"]],[6,8,["H1835"]],[8,10,["H3318"]],[10,14,["H4480"]],[14,17,["H1121"]],[17,19,["H1835"]],[19,21,["H5927"]],[21,23,["H3898"]],[23,24,["H5973"]],[24,25,["H3959"]],[25,27,["H3920"]],[27,30,["H5221"]],[30,34,["H6310"]],[34,37,["H2719"]],[37,39,["H3423"]],[39,42,["H3427"]],[42,45,["H7121"]],[45,46,["H3959"]],[46,47,["H1835"]],[47,50,["H8034"]],[50,52,["H1835"]],[52,54,["H1"]]]},{"k":6369,"v":[[0,1,["H2063"]],[1,4,["H5159"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H1835"]],[12,16,["H4940"]],[16,17,["H428"]],[17,18,["H5892"]],[18,21,["H2691"]]]},{"k":6370,"v":[[0,6,["H3615"]],[6,12,["H5157","(H853)","H776"]],[12,15,["H1367"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,20,["H5414"]],[20,22,["H5159"]],[22,24,["H3091"]],[24,26,["H1121"]],[26,28,["H5126"]],[28,29,["H8432"]],[29,30,[]]]},{"k":6371,"v":[[0,1,["H5921"]],[1,4,["H6310"]],[4,7,["H3068"]],[7,9,["H5414"]],[9,10,["(H853)"]],[10,12,["H5892"]],[12,13,["H834"]],[13,15,["H7592"]],[15,16,["(H853)"]],[16,17,["H8556"]],[17,19,["H2022"]],[19,20,["H669"]],[20,23,["H1129","(H853)"]],[23,25,["H5892"]],[25,27,["H3427"]],[27,28,[]]]},{"k":6372,"v":[[0,1,["H428"]],[1,4,["H5159"]],[4,5,["H834"]],[5,6,["H499"]],[6,8,["H3548"]],[8,10,["H3091"]],[10,12,["H1121"]],[12,14,["H5126"]],[14,17,["H7218"]],[17,20,["H1"]],[20,23,["H4294"]],[23,26,["H1121"]],[26,28,["H3478"]],[28,32,["H5157"]],[32,34,["H1486"]],[34,36,["H7887"]],[36,37,["H6440"]],[37,39,["H3068"]],[39,42,["H6607"]],[42,45,["H168"]],[45,48,["H4150"]],[48,53,["H3615"]],[53,55,["H4480","H2505","(H853)"]],[55,57,["H776"]]]},{"k":6373,"v":[[0,2,["H3068"]],[2,4,["H1696"]],[4,5,["H413"]],[5,6,["H3091"]],[6,7,["H559"]]]},{"k":6374,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H559"]],[7,8,["H5414"]],[8,11,["(H853)"]],[11,12,["H5892"]],[12,14,["H4733"]],[14,15,["H834"]],[15,17,["H1696"]],[17,18,["H413"]],[18,22,["H3027"]],[22,24,["H4872"]]]},{"k":6375,"v":[[0,3,["H7523"]],[3,5,["H5221"]],[5,7,["H5315"]],[7,8,["H7684"]],[8,10,["H1097","H1847"]],[10,12,["H5127"]],[12,13,["H8033"]],[13,17,["H1961"]],[17,19,["H4733"]],[19,22,["H4480","H1350"]],[22,24,["H1818"]]]},{"k":6376,"v":[[0,6,["H5127"]],[6,7,["H413"]],[7,8,["H259"]],[8,10,["H428"]],[10,11,["H4480","H5892"]],[11,13,["H5975"]],[13,16,["H6607"]],[16,19,["H8179"]],[19,22,["H5892"]],[22,25,["H1696","(H853)"]],[25,27,["H1697"]],[27,30,["H241"]],[30,33,["H2205"]],[33,35,["H1931"]],[35,36,["H5892"]],[36,39,["H622"]],[39,43,["H5892"]],[43,47,["H5414","H413"]],[47,50,["H4725"]],[50,54,["H3427"]],[54,55,["H5973"]],[55,56,[]]]},{"k":6377,"v":[[0,2,["H3588"]],[2,4,["H1350"]],[4,6,["H1818"]],[6,7,["H7291"]],[7,8,["H310"]],[8,13,["H3808"]],[13,14,["H5462","(H853)"]],[14,16,["H7523"]],[16,20,["H3027"]],[20,21,["H3588"]],[21,23,["H5221","(H853)"]],[23,25,["H7453"]],[25,26,["H1097","H1847"]],[26,28,["H8130"]],[28,30,["H3808"]],[30,31,["H8543","H8032"]]]},{"k":6378,"v":[[0,4,["H3427"]],[4,6,["H1931"]],[6,7,["H5892"]],[7,8,["H5704"]],[8,10,["H5975"]],[10,11,["H6440"]],[11,13,["H5712"]],[13,15,["H4941"]],[15,17,["H5704"]],[17,19,["H4194"]],[19,22,["H1419"]],[22,23,["H3548"]],[23,24,["H834"]],[24,26,["H1961"]],[26,28,["H1992"]],[28,29,["H3117"]],[29,30,["H227"]],[30,33,["H7523"]],[33,34,["H7725"]],[34,36,["H935"]],[36,37,["H413"]],[37,40,["H5892"]],[40,42,["H413"]],[42,45,["H1004"]],[45,46,["H413"]],[46,48,["H5892"]],[48,50,["H834","H4480","H8033"]],[50,52,["H5127"]]]},{"k":6379,"v":[[0,3,["H6942","(H853)"]],[3,4,["H6943"]],[4,6,["H1551"]],[6,8,["H2022"]],[8,9,["H5321"]],[9,11,["H7927"]],[11,13,["H2022"]],[13,14,["H669"]],[14,16,["H7153"]],[16,17,["H1931"]],[17,19,["H2275"]],[19,22,["H2022"]],[22,24,["H3063"]]]},{"k":6380,"v":[[0,5,["H4480","H5676"]],[5,6,["H3383"]],[6,8,["H3405"]],[8,9,["H4217"]],[9,11,["H5414","(H853)"]],[11,12,["H1221"]],[12,15,["H4057"]],[15,18,["H4334"]],[18,22,["H4480","H4294"]],[22,24,["H7205"]],[24,26,["H7216"]],[26,28,["H1568"]],[28,32,["H4480","H4294"]],[32,34,["H1410"]],[34,36,["H1474"]],[36,38,["H1316"]],[38,42,["H4480","H4294"]],[42,44,["H4519"]]]},{"k":6381,"v":[[0,1,["H428"]],[1,2,["H1961"]],[2,4,["H5892"]],[4,5,["H4152"]],[5,7,["H3605"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,15,["H1616"]],[15,17,["H1481"]],[17,18,["H8432"]],[18,21,["H3605"]],[21,22,["H5221"]],[22,24,["H5315"]],[24,26,["H7684"]],[26,28,["H5127"]],[28,29,["H8033"]],[29,31,["H3808"]],[31,32,["H4191"]],[32,35,["H3027"]],[35,38,["H1350"]],[38,40,["H1818"]],[40,41,["H5704"]],[41,43,["H5975"]],[43,44,["H6440"]],[44,46,["H5712"]]]},{"k":6382,"v":[[0,3,["H5066"]],[3,5,["H7218"]],[5,8,["H1"]],[8,11,["H3881"]],[11,12,["H413"]],[12,13,["H499"]],[13,15,["H3548"]],[15,17,["H413"]],[17,18,["H3091"]],[18,20,["H1121"]],[20,22,["H5126"]],[22,24,["H413"]],[24,26,["H7218"]],[26,29,["H1"]],[29,32,["H4294"]],[32,35,["H1121"]],[35,37,["H3478"]]]},{"k":6383,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,7,["H7887"]],[7,10,["H776"]],[10,12,["H3667"]],[12,13,["H559"]],[13,15,["H3068"]],[15,16,["H6680"]],[16,19,["H3027"]],[19,21,["H4872"]],[21,23,["H5414"]],[23,25,["H5892"]],[25,27,["H3427"]],[27,31,["H4054"]],[31,35,["H929"]]]},{"k":6384,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5414"]],[6,9,["H3881"]],[9,13,["H4480","H5159"]],[13,14,["H413"]],[14,16,["H6310"]],[16,19,["H3068","(H853)"]],[19,20,["H428"]],[20,21,["H5892"]],[21,24,["H4054"]]]},{"k":6385,"v":[[0,3,["H1486"]],[3,5,["H3318"]],[5,8,["H4940"]],[8,11,["H6956"]],[11,14,["H1121"]],[14,16,["H175"]],[16,18,["H3548"]],[18,21,["H4480"]],[21,23,["H3881"]],[23,24,["H1961"]],[24,26,["H1486"]],[26,30,["H4480","H4294"]],[30,32,["H3063"]],[32,37,["H4480","H4294"]],[37,39,["H8099"]],[39,44,["H4480","H4294"]],[44,46,["H1144"]],[46,47,["H7969","H6240"]],[47,48,["H5892"]]]},{"k":6386,"v":[[0,3,["H3498"]],[3,6,["H1121"]],[6,8,["H6955"]],[8,11,["H1486"]],[11,15,["H4480","H4940"]],[15,18,["H4294"]],[18,20,["H669"]],[20,25,["H4480","H4294"]],[25,27,["H1835"]],[27,32,["H4480","H2677"]],[32,33,["H4294"]],[33,35,["H4519"]],[35,36,["H6235"]],[36,37,["H5892"]]]},{"k":6387,"v":[[0,3,["H1121"]],[3,5,["H1648"]],[5,8,["H1486"]],[8,12,["H4480","H4940"]],[12,15,["H4294"]],[15,17,["H3485"]],[17,22,["H4480","H4294"]],[22,24,["H836"]],[24,29,["H4480","H4294"]],[29,31,["H5321"]],[31,36,["H4480","H2677"]],[36,37,["H4294"]],[37,39,["H4519"]],[39,41,["H1316"]],[41,42,["H7969","H6240"]],[42,43,["H5892"]]]},{"k":6388,"v":[[0,2,["H1121"]],[2,4,["H4847"]],[4,7,["H4940"]],[7,12,["H4480","H4294"]],[12,14,["H7205"]],[14,19,["H4480","H4294"]],[19,21,["H1410"]],[21,26,["H4480","H4294"]],[26,28,["H2074"]],[28,29,["H8147","H6240"]],[29,30,["H5892"]]]},{"k":6389,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5414"]],[6,8,["H1486"]],[8,11,["H3881","(H853)"]],[11,12,["H428"]],[12,13,["H5892"]],[13,14,["H854"]],[14,16,["H4054"]],[16,17,["H834"]],[17,19,["H3068"]],[19,20,["H6680"]],[20,23,["H3027"]],[23,25,["H4872"]]]},{"k":6390,"v":[[0,3,["H5414"]],[3,7,["H4480","H4294"]],[7,10,["H1121"]],[10,12,["H3063"]],[12,17,["H4480","H4294"]],[17,20,["H1121"]],[20,22,["H8095","(H853)"]],[22,23,["H428"]],[23,24,["H5892"]],[24,25,["H834"]],[25,28,["H7121"]],[28,30,["H8034"]]]},{"k":6391,"v":[[0,3,["H1121"]],[3,5,["H175"]],[5,9,["H4480","H4940"]],[9,12,["H6956"]],[12,17,["H4480","H1121"]],[17,19,["H3878"]],[19,20,["H1961"]],[20,21,["H3588"]],[21,23,["H1961"]],[23,25,["H7223"]],[25,26,["H1486"]]]},{"k":6392,"v":[[0,3,["H5414"]],[3,4,["(H853)"]],[4,6,["H7151"]],[6,8,["H704"]],[8,10,["H1"]],[10,12,["H6061"]],[12,13,["H1931"]],[13,16,["H2275"]],[16,19,["H2022"]],[19,22,["H3063"]],[22,23,["H854"]],[23,25,["H4054"]],[25,28,["H5439"]],[28,29,[]]]},{"k":6393,"v":[[0,3,["H7704"]],[3,6,["H5892"]],[6,9,["H2691"]],[9,11,["H5414"]],[11,14,["H3612"]],[14,16,["H1121"]],[16,18,["H3312"]],[18,21,["H272"]]]},{"k":6394,"v":[[0,3,["H5414"]],[3,6,["H1121"]],[6,8,["H175"]],[8,10,["H3548","(H853)"]],[10,11,["H2275"]],[11,12,["H854"]],[12,14,["H4054"]],[14,16,["(H853)"]],[16,18,["H5892"]],[18,20,["H4733"]],[20,23,["H7523"]],[23,25,["H3841"]],[25,26,["H854"]],[26,28,["H4054"]]]},{"k":6395,"v":[[0,2,["H3492"]],[2,3,["H854"]],[3,5,["H4054"]],[5,7,["H851"]],[7,8,["H854"]],[8,10,["H4054"]]]},{"k":6396,"v":[[0,2,["H2473"]],[2,3,["H854"]],[3,5,["H4054"]],[5,7,["H1688"]],[7,8,["H854"]],[8,10,["H4054"]]]},{"k":6397,"v":[[0,2,["H5871"]],[2,3,["H854"]],[3,5,["H4054"]],[5,7,["H3194"]],[7,8,["H854"]],[8,10,["H4054"]],[10,11,["(H853)"]],[11,12,["H1053"]],[12,13,["H854"]],[13,15,["H4054"]],[15,16,["H8672"]],[16,17,["H5892"]],[17,19,["H4480","H854"]],[19,20,["H428"]],[20,21,["H8147"]],[21,22,["H7626"]]]},{"k":6398,"v":[[0,5,["H4480","H4294"]],[5,7,["H1144","(H853)"]],[7,8,["H1391"]],[8,9,["H854"]],[9,11,["H4054","(H853)"]],[11,12,["H1387"]],[12,13,["H854"]],[13,15,["H4054"]]]},{"k":6399,"v":[[0,0,["(H853)"]],[0,1,["H6068"]],[1,2,["H854"]],[2,4,["H4054"]],[4,6,["H5960"]],[6,7,["H854"]],[7,9,["H4054"]],[9,10,["H702"]],[10,11,["H5892"]]]},{"k":6400,"v":[[0,1,["H3605"]],[1,3,["H5892"]],[3,6,["H1121"]],[6,8,["H175"]],[8,10,["H3548"]],[10,12,["H7969","H6240"]],[12,13,["H5892"]],[13,16,["H4054"]]]},{"k":6401,"v":[[0,3,["H4940"]],[3,6,["H1121"]],[6,8,["H6955"]],[8,10,["H3881"]],[10,12,["H3498"]],[12,15,["H4480","H1121"]],[15,17,["H6955"]],[17,20,["H1961"]],[20,22,["H5892"]],[22,25,["H1486"]],[25,29,["H4480","H4294"]],[29,31,["H669"]]]},{"k":6402,"v":[[0,3,["H5414"]],[3,4,["(H853)"]],[4,5,["H7927"]],[5,6,["H854"]],[6,8,["H4054"]],[8,10,["H2022"]],[10,11,["H669"]],[11,13,["(H853)"]],[13,15,["H5892"]],[15,17,["H4733"]],[17,20,["H7523"]],[20,22,["H1507"]],[22,23,["H854"]],[23,25,["H4054"]]]},{"k":6403,"v":[[0,2,["H6911"]],[2,3,["H854"]],[3,5,["H4054"]],[5,7,["H1032"]],[7,8,["H854"]],[8,10,["H4054"]],[10,11,["H702"]],[11,12,["H5892"]]]},{"k":6404,"v":[[0,5,["H4480","H4294"]],[5,7,["H1835","(H853)"]],[7,8,["H514"]],[8,9,["H854"]],[9,11,["H4054","(H853)"]],[11,12,["H1405"]],[12,13,["H854"]],[13,15,["H4054"]]]},{"k":6405,"v":[[0,0,["(H853)"]],[0,1,["H357"]],[1,2,["H854"]],[2,4,["H4054","(H853)"]],[4,5,["H1667"]],[5,6,["H854"]],[6,8,["H4054"]],[8,9,["H702"]],[9,10,["H5892"]]]},{"k":6406,"v":[[0,5,["H4480","H4276"]],[5,6,["H4294"]],[6,8,["H4519","(H853)"]],[8,9,["H8590"]],[9,10,["H854"]],[10,12,["H4054"]],[12,14,["H1667"]],[14,15,["H854"]],[15,17,["H4054"]],[17,18,["H8147"]],[18,19,["H5892"]]]},{"k":6407,"v":[[0,1,["H3605"]],[1,3,["H5892"]],[3,5,["H6235"]],[5,8,["H4054"]],[8,11,["H4940"]],[11,14,["H1121"]],[14,16,["H6955"]],[16,18,["H3498"]]]},{"k":6408,"v":[[0,4,["H1121"]],[4,6,["H1648"]],[6,9,["H4480","H4940"]],[9,12,["H3881"]],[12,17,["H4480","H2677"]],[17,18,["H4294"]],[18,20,["H4519"]],[20,22,["(H853)"]],[22,23,["H1474"]],[23,25,["H1316"]],[25,26,["H854"]],[26,28,["H4054"]],[28,30,["(H853)"]],[30,32,["H5892"]],[32,34,["H4733"]],[34,37,["H7523"]],[37,39,["H1203"]],[39,40,["H854"]],[40,42,["H4054"]],[42,43,["H8147"]],[43,44,["H5892"]]]},{"k":6409,"v":[[0,5,["H4480","H4294"]],[5,7,["H3485","(H853)"]],[7,8,["H7191"]],[8,9,["H854"]],[9,11,["H4054","(H853)"]],[11,12,["H1705"]],[12,13,["H854"]],[13,15,["H4054"]]]},{"k":6410,"v":[[0,1,["H3412"]],[1,2,["H854"]],[2,4,["H4054"]],[4,5,["H5873"]],[5,6,["H854"]],[6,8,["H4054"]],[8,9,["H702"]],[9,10,["H5892"]]]},{"k":6411,"v":[[0,5,["H4480","H4294"]],[5,7,["H836","(H853)"]],[7,8,["H4861"]],[8,9,["H854"]],[9,11,["H4054","(H853)"]],[11,12,["H5658"]],[12,13,["H854"]],[13,15,["H4054"]]]},{"k":6412,"v":[[0,0,["(H853)"]],[0,1,["H2520"]],[1,2,["H854"]],[2,4,["H4054"]],[4,6,["H7340"]],[6,7,["H854"]],[7,9,["H4054"]],[9,10,["H702"]],[10,11,["H5892"]]]},{"k":6413,"v":[[0,5,["H4480","H4294"]],[5,7,["H5321","(H853)"]],[7,8,["H6943"]],[8,10,["H1551"]],[10,11,["H854"]],[11,13,["H4054"]],[13,15,["(H853)"]],[15,17,["H5892"]],[17,19,["H4733"]],[19,22,["H7523"]],[22,24,["H2576"]],[24,25,["H854"]],[25,27,["H4054"]],[27,29,["H7178"]],[29,32,["H4054"]],[32,33,["H7969"]],[33,34,["H5892"]]]},{"k":6414,"v":[[0,1,["H3605"]],[1,3,["H5892"]],[3,6,["H1649"]],[6,10,["H4940"]],[10,12,["H7969","H6240"]],[12,13,["H5892"]],[13,16,["H4054"]]]},{"k":6415,"v":[[0,4,["H4940"]],[4,7,["H1121"]],[7,9,["H4847"]],[9,11,["H3498"]],[11,14,["H3881"]],[14,16,["H4480","H854"]],[16,18,["H4294"]],[18,20,["H2074","(H853)"]],[20,21,["H3362"]],[21,22,["H854"]],[22,24,["H4054"]],[24,25,["(H853)"]],[25,26,["H7177"]],[26,27,["H854"]],[27,29,["H4054"]]]},{"k":6416,"v":[[0,0,["(H853)"]],[0,1,["H1829"]],[1,2,["H854"]],[2,4,["H4054","(H853)"]],[4,5,["H5096"]],[5,6,["H854"]],[6,8,["H4054"]],[8,9,["H702"]],[9,10,["H5892"]]]},{"k":6417,"v":[[0,5,["H4480","H4294"]],[5,7,["H7205","(H853)"]],[7,8,["H1221"]],[8,9,["H854"]],[9,11,["H4054"]],[11,13,["H3096"]],[13,14,["H854"]],[14,16,["H4054"]]]},{"k":6418,"v":[[0,0,["(H853)"]],[0,1,["H6932"]],[1,2,["H854"]],[2,4,["H4054"]],[4,6,["H4158"]],[6,7,["H854"]],[7,9,["H4054"]],[9,10,["H702"]],[10,11,["H5892"]]]},{"k":6419,"v":[[0,5,["H4480","H4294"]],[5,7,["H1410","(H853)"]],[7,8,["H7216"]],[8,10,["H1568"]],[10,11,["H854"]],[11,13,["H4054"]],[13,15,["(H853)"]],[15,17,["H5892"]],[17,19,["H4733"]],[19,22,["H7523"]],[22,24,["H4266"]],[24,25,["H854"]],[25,27,["H4054"]]]},{"k":6420,"v":[[0,0,["(H853)"]],[0,1,["H2809"]],[1,2,["H854"]],[2,4,["H4054","(H853)"]],[4,5,["H3270"]],[5,6,["H854"]],[6,8,["H4054"]],[8,9,["H702"]],[9,10,["H5892"]],[10,12,["H3605"]]]},{"k":6421,"v":[[0,2,["H3605"]],[2,4,["H5892"]],[4,7,["H1121"]],[7,9,["H4847"]],[9,12,["H4940"]],[12,15,["H3498"]],[15,18,["H4480","H4940"]],[18,21,["H3881"]],[21,22,["H1961"]],[22,25,["H1486"]],[25,26,["H8147","H6240"]],[26,27,["H5892"]]]},{"k":6422,"v":[[0,1,["H3605"]],[1,3,["H5892"]],[3,6,["H3881"]],[6,7,["H8432"]],[7,9,["H272"]],[9,12,["H1121"]],[12,14,["H3478"]],[14,16,["H705"]],[16,18,["H8083"]],[18,19,["H5892"]],[19,22,["H4054"]]]},{"k":6423,"v":[[0,1,["H428"]],[1,2,["H5892"]],[2,3,["H1961"]],[3,5,["H5892","H5892"]],[5,8,["H4054"]],[8,10,["H5439"]],[10,12,["H3651"]],[12,14,["H3605"]],[14,15,["H428"]],[15,16,["H5892"]]]},{"k":6424,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,6,["H3478","(H853)"]],[6,7,["H3605"]],[7,9,["H776"]],[9,10,["H834"]],[10,12,["H7650"]],[12,14,["H5414"]],[14,17,["H1"]],[17,20,["H3423"]],[20,23,["H3427"]],[23,24,[]]]},{"k":6425,"v":[[0,3,["H3068"]],[3,6,["H5117"]],[6,8,["H4480","H5439"]],[8,11,["H3605"]],[11,12,["H834"]],[12,14,["H7650"]],[14,17,["H1"]],[17,20,["H5975"]],[20,21,["H3808"]],[21,23,["H376"]],[23,25,["H4480","H3605"]],[25,27,["H341"]],[27,28,["H6440"]],[28,31,["H3068"]],[31,32,["H5414","(H853)"]],[32,33,["H3605"]],[33,35,["H341"]],[35,38,["H3027"]]]},{"k":6426,"v":[[0,2,["H5307"]],[2,3,["H3808"]],[3,4,["H1697"]],[4,6,["H4480","H3605"]],[6,7,["H2896"]],[7,8,["H1697"]],[8,9,["H834"]],[9,11,["H3068"]],[11,13,["H1696"]],[13,14,["H413"]],[14,16,["H1004"]],[16,18,["H3478"]],[18,19,["H3605"]],[19,22,["H935"]]]},{"k":6427,"v":[[0,1,["H227"]],[1,2,["H3091"]],[2,3,["H7121"]],[3,5,["H7206"]],[5,8,["H1425"]],[8,11,["H2677"]],[11,12,["H4294"]],[12,14,["H4519"]]]},{"k":6428,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H859"]],[5,7,["H8104","(H853)"]],[7,8,["H3605"]],[8,9,["H834"]],[9,10,["H4872"]],[10,12,["H5650"]],[12,15,["H3068"]],[15,16,["H6680"]],[16,20,["H8085"]],[20,22,["H6963"]],[22,24,["H3605"]],[24,25,["H834"]],[25,27,["H6680"]],[27,28,[]]]},{"k":6429,"v":[[0,3,["H3808"]],[3,4,["H5800","(H853)"]],[4,6,["H251"]],[6,7,["H2088"]],[7,8,["H7227"]],[8,9,["H3117"]],[9,10,["H5704"]],[10,11,["H2088"]],[11,12,["H3117"]],[12,15,["H8104","(H853)"]],[15,17,["H4931"]],[17,20,["H4687"]],[20,23,["H3068"]],[23,25,["H430"]]]},{"k":6430,"v":[[0,2,["H6258"]],[2,4,["H3068"]],[4,6,["H430"]],[6,9,["H5117"]],[9,12,["H251"]],[12,13,["H834"]],[13,15,["H1696"]],[15,18,["H6258"]],[18,19,["H6437"]],[19,22,["H1980"]],[22,26,["H168"]],[26,28,["H413"]],[28,30,["H776"]],[30,33,["H272"]],[33,34,["H834"]],[34,35,["H4872"]],[35,37,["H5650"]],[37,40,["H3068"]],[40,41,["H5414"]],[41,46,["H5676"]],[46,47,["H3383"]]]},{"k":6431,"v":[[0,1,["H7535"]],[1,3,["H3966"]],[3,4,["H8104"]],[4,6,["H6213","(H853)"]],[6,8,["H4687"]],[8,11,["H8451"]],[11,12,["H834"]],[12,13,["H4872"]],[13,15,["H5650"]],[15,18,["H3068"]],[18,19,["H6680"]],[19,22,["H157","(H853)"]],[22,24,["H3068"]],[24,26,["H430"]],[26,29,["H1980"]],[29,31,["H3605"]],[31,33,["H1870"]],[33,36,["H8104"]],[36,38,["H4687"]],[38,41,["H1692"]],[41,46,["H5647"]],[46,49,["H3605"]],[49,51,["H3824"]],[51,54,["H3605"]],[54,56,["H5315"]]]},{"k":6432,"v":[[0,2,["H3091"]],[2,3,["H1288"]],[3,8,["H7971"]],[8,11,["H1980"]],[11,12,["H413"]],[12,14,["H168"]]]},{"k":6433,"v":[[0,5,["H2677"]],[5,8,["H7626"]],[8,10,["H4519"]],[10,11,["H4872"]],[11,13,["H5414"]],[13,16,["H1316"]],[16,21,["H2677"]],[21,23,["H5414"]],[23,24,["H3091"]],[24,25,["H5973"]],[25,27,["H251"]],[27,30,["H5676"]],[30,31,["H3383"]],[31,32,["H3220"]],[32,34,["H3588"]],[34,35,["H3091"]],[35,38,["H7971"]],[38,39,["H1571"]],[39,40,["H413"]],[40,42,["H168"]],[42,45,["H1288"]],[45,46,[]]]},{"k":6434,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H559"]],[6,7,["H7725"]],[7,9,["H7227"]],[9,10,["H5233"]],[10,11,["H413"]],[11,13,["H168"]],[13,16,["H3966"]],[16,17,["H7227"]],[17,18,["H4735"]],[18,20,["H3701"]],[20,23,["H2091"]],[23,26,["H5178"]],[26,29,["H1270"]],[29,32,["H3966"]],[32,33,["H7235"]],[33,34,["H8008"]],[34,35,["H2505"]],[35,37,["H7998"]],[37,40,["H341"]],[40,41,["H5973"]],[41,43,["H251"]]]},{"k":6435,"v":[[0,3,["H1121"]],[3,5,["H7205"]],[5,8,["H1121"]],[8,10,["H1410"]],[10,13,["H2677"]],[13,14,["H7626"]],[14,16,["H4519"]],[16,17,["H7725"]],[17,19,["H1980"]],[19,20,["H4480","H854"]],[20,22,["H1121"]],[22,24,["H3478"]],[24,27,["H4480","H7887"]],[27,28,["H834"]],[28,32,["H776"]],[32,34,["H3667"]],[34,36,["H1980"]],[36,37,["H413"]],[37,39,["H776"]],[39,41,["H1568"]],[41,42,["H413"]],[42,44,["H776"]],[44,47,["H272"]],[47,48,["H834"]],[48,51,["H270"]],[51,52,["H5921"]],[52,55,["H6310"]],[55,58,["H3068"]],[58,61,["H3027"]],[61,63,["H4872"]]]},{"k":6436,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H1552"]],[7,9,["H3383"]],[9,10,["H834"]],[10,14,["H776"]],[14,16,["H3667"]],[16,18,["H1121"]],[18,20,["H7205"]],[20,23,["H1121"]],[23,25,["H1410"]],[25,28,["H2677"]],[28,29,["H7626"]],[29,31,["H4519"]],[31,32,["H1129"]],[32,33,["H8033"]],[33,35,["H4196"]],[35,36,["H5921"]],[36,37,["H3383"]],[37,39,["H1419"]],[39,40,["H4196"]],[40,42,["H4758"]],[42,43,[]]]},{"k":6437,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H8085"]],[6,7,["H559"]],[7,8,["H2009"]],[8,10,["H1121"]],[10,12,["H7205"]],[12,15,["H1121"]],[15,17,["H1410"]],[17,20,["H2677"]],[20,21,["H7626"]],[21,23,["H4519"]],[23,25,["H1129","(H853)"]],[25,27,["H4196"]],[27,29,["H413","H4136"]],[29,31,["H776"]],[31,33,["H3667"]],[33,34,["H413"]],[34,36,["H1552"]],[36,38,["H3383"]],[38,39,["H413"]],[39,41,["H1552"]],[41,44,["H1121"]],[44,46,["H3478"]]]},{"k":6438,"v":[[0,4,["H1121"]],[4,6,["H3478"]],[6,7,["H8085"]],[7,11,["H3605"]],[11,12,["H5712"]],[12,15,["H1121"]],[15,17,["H3478"]],[17,20,["H6950"]],[20,22,["H7887"]],[22,24,["H5927"]],[24,27,["H6635"]],[27,28,["H5921"]],[28,29,[]]]},{"k":6439,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H7971"]],[6,7,["H413"]],[7,9,["H1121"]],[9,11,["H7205"]],[11,13,["H413"]],[13,15,["H1121"]],[15,17,["H1410"]],[17,19,["H413"]],[19,21,["H2677"]],[21,22,["H7626"]],[22,24,["H4519"]],[24,25,["H413"]],[25,27,["H776"]],[27,29,["H1568","(H853)"]],[29,30,["H6372"]],[30,32,["H1121"]],[32,34,["H499"]],[34,36,["H3548"]]]},{"k":6440,"v":[[0,2,["H5973"]],[2,4,["H6235"]],[4,5,["H5387"]],[5,8,["H5387","H259","H5387","H259"]],[8,9,["H1004"]],[9,11,["H1"]],[11,13,["H3605"]],[13,15,["H4294"]],[15,17,["H3478"]],[17,20,["H376"]],[20,23,["H7218"]],[23,26,["H1004"]],[26,29,["H1"]],[29,32,["H505"]],[32,34,["H3478"]]]},{"k":6441,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H7205"]],[8,10,["H413"]],[10,12,["H1121"]],[12,14,["H1410"]],[14,16,["H413"]],[16,18,["H2677"]],[18,19,["H7626"]],[19,21,["H4519"]],[21,22,["H413"]],[22,24,["H776"]],[24,26,["H1568"]],[26,29,["H1696"]],[29,30,["H854"]],[30,32,["H559"]]]},{"k":6442,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3605"]],[4,5,["H5712"]],[5,8,["H3068"]],[8,9,["H4100"]],[9,10,["H4604"]],[10,12,["H2088"]],[12,13,["H834"]],[13,16,["H4603"]],[16,19,["H430"]],[19,21,["H3478"]],[21,24,["H7725"]],[24,26,["H3117"]],[26,28,["H4480","H310"]],[28,30,["H3068"]],[30,35,["H1129"]],[35,38,["H4196"]],[38,42,["H4775"]],[42,44,["H3117"]],[44,47,["H3068"]]]},{"k":6443,"v":[[0,1,["(H853)"]],[1,3,["H5771"]],[3,5,["H6465"]],[5,7,["H4592"]],[7,10,["H4480"]],[10,11,["H834"]],[11,14,["H3808"]],[14,15,["H2891"]],[15,16,["H5704"]],[16,17,["H2088"]],[17,18,["H3117"]],[18,21,["H1961"]],[21,23,["H5063"]],[23,26,["H5712"]],[26,29,["H3068"]]]},{"k":6444,"v":[[0,3,["H859"]],[3,6,["H7725"]],[6,8,["H3117"]],[8,10,["H4480","H310"]],[10,12,["H3068"]],[12,16,["H1961"]],[16,18,["H859"]],[18,19,["H4775"]],[19,21,["H3117"]],[21,24,["H3068"]],[24,27,["H4279"]],[27,31,["H7107"]],[31,32,["H413"]],[32,34,["H3605"]],[34,35,["H5712"]],[35,37,["H3478"]]]},{"k":6445,"v":[[0,1,["H389"]],[1,2,["H518"]],[2,4,["H776"]],[4,7,["H272"]],[7,9,["H2931"]],[9,13,["H5674"]],[13,14,["H413"]],[14,16,["H776"]],[16,19,["H272"]],[19,22,["H3068"]],[22,23,["H834"]],[23,25,["H3068"]],[25,26,["H4908"]],[26,27,["H7931","H8033"]],[27,30,["H270"]],[30,31,["H8432"]],[31,34,["H4775"]],[34,35,["H408"]],[35,38,["H3068"]],[38,39,["H408"]],[39,40,["H4775"]],[40,44,["H1129"]],[44,47,["H4196"]],[47,48,["H4480","H1107"]],[48,50,["H4196"]],[50,53,["H3068"]],[53,55,["H430"]]]},{"k":6446,"v":[[0,2,["H3808"]],[2,3,["H5912"]],[3,5,["H1121"]],[5,7,["H2226"]],[7,8,["H4603"]],[8,10,["H4604"]],[10,14,["H2764"]],[14,16,["H7110"]],[16,17,["H1961"]],[17,18,["H5921"]],[18,19,["H3605"]],[19,21,["H5712"]],[21,23,["H3478"]],[23,25,["H1931"]],[25,26,["H376"]],[26,27,["H1478"]],[27,28,["H3808"]],[28,29,["H259"]],[29,32,["H5771"]]]},{"k":6447,"v":[[0,3,["H1121"]],[3,5,["H7205"]],[5,8,["H1121"]],[8,10,["H1410"]],[10,13,["H2677"]],[13,14,["H7626"]],[14,16,["H4519"]],[16,17,["H6030"]],[17,19,["H1696"]],[19,20,["(H853)"]],[20,22,["H7218"]],[22,25,["H505"]],[25,27,["H3478"]]]},{"k":6448,"v":[[0,2,["H3068"]],[2,3,["H410"]],[3,5,["H430"]],[5,7,["H3068"]],[7,8,["H410"]],[8,10,["H430"]],[10,11,["H1931"]],[11,12,["H3045"]],[12,14,["H3478"]],[14,15,["H1931"]],[15,17,["H3045"]],[17,18,["H518"]],[18,22,["H4777"]],[22,24,["H518"]],[24,26,["H4604"]],[26,29,["H3068"]],[29,30,["H3467"]],[30,32,["H408"]],[32,33,["H2088"]],[33,34,["H3117"]]]},{"k":6449,"v":[[0,4,["H1129"]],[4,7,["H4196"]],[7,9,["H7725"]],[9,11,["H4480","H310"]],[11,13,["H3068"]],[13,15,["H518"]],[15,17,["H5927"]],[17,18,["H5921"]],[18,20,["H5930"]],[20,23,["H4503"]],[23,25,["H518"]],[25,27,["H6213"]],[27,28,["H8002"]],[28,29,["H2077"]],[29,30,["H5921"]],[30,33,["H3068"]],[33,34,["H1931"]],[34,35,["H1245"]],[35,36,[]]]},{"k":6450,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,7,["H6213","(H853)"]],[7,8,["H2063"]],[8,10,["H4480","H1674"]],[10,13,["H4480","H1697"]],[13,14,["H559"]],[14,18,["H4279"]],[18,20,["H1121"]],[20,22,["H559"]],[22,25,["H1121"]],[25,26,["H559"]],[26,27,["H4100"]],[27,34,["H3068"]],[34,35,["H430"]],[35,37,["H3478"]]]},{"k":6451,"v":[[0,3,["H3068"]],[3,5,["H5414","(H853)"]],[5,6,["H3383"]],[6,8,["H1366"]],[8,9,["H996"]],[9,14,["H1121"]],[14,16,["H7205"]],[16,18,["H1121"]],[18,20,["H1410"]],[20,23,["H369"]],[23,24,["H2506"]],[24,27,["H3068"]],[27,31,["H1121"]],[31,32,["(H853)"]],[32,34,["H1121"]],[34,35,["H7673"]],[35,37,["H3372","(H853)"]],[37,39,["H3068"]]]},{"k":6452,"v":[[0,3,["H559"]],[3,6,["H4994"]],[6,7,["H6213"]],[7,9,["H1129"]],[9,10,["(H853)"]],[10,12,["H4196"]],[12,13,["H3808"]],[13,15,["H5930"]],[15,17,["H3808"]],[17,19,["H2077"]]]},{"k":6453,"v":[[0,1,["H3588"]],[1,3,["H1931"]],[3,7,["H5707"]],[7,8,["H996"]],[8,14,["H1755"]],[14,15,["H310"]],[15,20,["H5647","(H853)"]],[20,22,["H5656"]],[22,25,["H3068"]],[25,26,["H6440"]],[26,31,["H5930"]],[31,35,["H2077"]],[35,40,["H8002"]],[40,43,["H1121"]],[43,45,["H3808"]],[45,46,["H559"]],[46,49,["H1121"]],[49,53,["H4279"]],[53,56,["H369"]],[56,57,["H2506"]],[57,60,["H3068"]]]},{"k":6454,"v":[[0,2,["H559"]],[2,7,["H1961"]],[7,8,["H3588"]],[8,12,["H559"]],[12,13,["H413"]],[13,16,["H413"]],[16,18,["H1755"]],[18,22,["H4279"]],[22,26,["H559"]],[26,28,["H7200","(H853)"]],[28,30,["H8403"]],[30,33,["H4196"]],[33,36,["H3068"]],[36,37,["H834"]],[37,39,["H1"]],[39,40,["H6213"]],[40,41,["H3808"]],[41,44,["H5930"]],[44,45,["H3808"]],[45,47,["H2077"]],[47,48,["H3588"]],[48,49,["H1931"]],[49,52,["H5707"]],[52,53,["H996"]],[53,56,[]]]},{"k":6455,"v":[[0,2,["H2486"]],[2,4,["H4480"]],[4,6,["H4775"]],[6,9,["H3068"]],[9,11,["H7725"]],[11,13,["H3117"]],[13,15,["H4480","H310"]],[15,17,["H3068"]],[17,19,["H1129"]],[19,21,["H4196"]],[21,24,["H5930"]],[24,27,["H4503"]],[27,30,["H2077"]],[30,31,["H4480","H905"]],[31,33,["H4196"]],[33,36,["H3068"]],[36,38,["H430"]],[38,39,["H834"]],[39,41,["H6440"]],[41,43,["H4908"]]]},{"k":6456,"v":[[0,3,["H6372"]],[3,5,["H3548"]],[5,8,["H5387"]],[8,11,["H5712"]],[11,13,["H7218"]],[13,16,["H505"]],[16,18,["H3478"]],[18,19,["H834"]],[19,21,["H854"]],[21,23,["H8085","(H853)"]],[23,25,["H1697"]],[25,26,["H834"]],[26,28,["H1121"]],[28,30,["H7205"]],[30,33,["H1121"]],[33,35,["H1410"]],[35,38,["H1121"]],[38,40,["H4519"]],[40,41,["H1696"]],[41,43,["H3190","H5869"]],[43,44,[]]]},{"k":6457,"v":[[0,2,["H6372"]],[2,4,["H1121"]],[4,6,["H499"]],[6,8,["H3548"]],[8,9,["H559"]],[9,10,["H413"]],[10,12,["H1121"]],[12,14,["H7205"]],[14,16,["H413"]],[16,18,["H1121"]],[18,20,["H1410"]],[20,22,["H413"]],[22,24,["H1121"]],[24,26,["H4519"]],[26,28,["H3117"]],[28,30,["H3045"]],[30,31,["H3588"]],[31,33,["H3068"]],[33,35,["H8432"]],[35,37,["H834"]],[37,40,["H3808"]],[40,41,["H4603"]],[41,42,["H2088"]],[42,43,["H4604"]],[43,46,["H3068"]],[46,47,["H227"]],[47,50,["H5337","(H853)"]],[50,52,["H1121"]],[52,54,["H3478"]],[54,58,["H4480","H3027"]],[58,61,["H3068"]]]},{"k":6458,"v":[[0,2,["H6372"]],[2,4,["H1121"]],[4,6,["H499"]],[6,8,["H3548"]],[8,11,["H5387"]],[11,12,["H7725"]],[12,13,["H4480","H854"]],[13,15,["H1121"]],[15,17,["H7205"]],[17,19,["H4480","H854"]],[19,21,["H1121"]],[21,23,["H1410"]],[23,27,["H4480","H776"]],[27,29,["H1568"]],[29,30,["H413"]],[30,32,["H776"]],[32,34,["H3667"]],[34,35,["H413"]],[35,37,["H1121"]],[37,39,["H3478"]],[39,44,["H7725","(H853)","H1697"]]]},{"k":6459,"v":[[0,3,["H1697"]],[3,4,["H3190","H5869"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,11,["H1121"]],[11,13,["H3478"]],[13,14,["H1288"]],[14,15,["H430"]],[15,18,["H3808"]],[18,19,["H559"]],[19,22,["H5927"]],[22,23,["H5921"]],[23,26,["H6635"]],[26,28,["H7843","(H853)"]],[28,30,["H776"]],[30,31,["H834"]],[31,33,["H1121"]],[33,35,["H7205"]],[35,37,["H1410"]],[37,38,["H3427"]]]},{"k":6460,"v":[[0,3,["H1121"]],[3,5,["H7205"]],[5,8,["H1121"]],[8,10,["H1410"]],[10,11,["H7121"]],[11,13,["H4196"]],[13,15,["H3588"]],[15,16,["H1931"]],[16,20,["H5707"]],[20,21,["H996"]],[21,23,["H3588"]],[23,25,["H3068"]],[25,27,["H430"]]]},{"k":6461,"v":[[0,5,["H1961"]],[5,7,["H7227"]],[7,8,["H4480","H3117"]],[8,9,["H310"]],[9,10,["H834"]],[10,12,["H3068"]],[12,15,["H5117"]],[15,17,["H3478"]],[17,19,["H4480","H3605"]],[19,21,["H341"]],[21,23,["H4480","H5439"]],[23,25,["H3091"]],[25,27,["H2204"]],[27,29,["H935"]],[29,31,["H3117"]]]},{"k":6462,"v":[[0,2,["H3091"]],[2,3,["H7121"]],[3,5,["H3605"]],[5,6,["H3478"]],[6,10,["H2205"]],[10,14,["H7218"]],[14,18,["H8199"]],[18,22,["H7860"]],[22,24,["H559"]],[24,25,["H413"]],[25,27,["H589"]],[27,29,["H2204"]],[29,31,["H935"]],[31,33,["H3117"]]]},{"k":6463,"v":[[0,2,["H859"]],[2,4,["H7200","(H853)"]],[4,5,["H3605"]],[5,6,["H834"]],[6,8,["H3068"]],[8,10,["H430"]],[10,12,["H6213"]],[12,14,["H3605"]],[14,15,["H428"]],[15,16,["H1471"]],[16,17,["H4480","H6440"]],[17,20,["H3588"]],[20,22,["H3068"]],[22,24,["H430"]],[24,26,["H1931"]],[26,29,["H3898"]],[29,31,[]]]},{"k":6464,"v":[[0,1,["H7200"]],[1,8,["H5307","(H853)"]],[8,9,["H428"]],[9,10,["H1471"]],[10,12,["H7604"]],[12,16,["H5159"]],[16,19,["H7626"]],[19,20,["H4480"]],[20,21,["H3383"]],[21,23,["H3605"]],[23,25,["H1471"]],[25,26,["H834"]],[26,30,["H3772"]],[30,34,["H1419"]],[34,35,["H3220"]],[35,36,["H3996","H8121"]]]},{"k":6465,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,6,["H1931"]],[6,8,["H1920"]],[8,11,["H4480","H6440"]],[11,14,["H3423"]],[14,20,["H4480","H6440"]],[20,24,["H3423","(H853)"]],[24,26,["H776"]],[26,27,["H834"]],[27,29,["H3068"]],[29,31,["H430"]],[31,33,["H1696"]],[33,35,[]]]},{"k":6466,"v":[[0,4,["H3966"]],[4,5,["H2388"]],[5,7,["H8104"]],[7,10,["H6213","(H853)"]],[10,11,["H3605"]],[11,14,["H3789"]],[14,17,["H5612"]],[17,20,["H8451"]],[20,22,["H4872"]],[22,25,["H5493"]],[25,26,["H1115"]],[26,27,["H5493"]],[27,28,["H4480"]],[28,32,["H3225"]],[32,36,["H8040"]]]},{"k":6467,"v":[[0,3,["H935"]],[3,4,["H1115"]],[4,6,["H428"]],[6,7,["H1471"]],[7,8,["H428"]],[8,10,["H7604"]],[10,13,["H3808"]],[13,15,["H2142"]],[15,18,["H8034"]],[18,21,["H430"]],[21,22,["H3808"]],[22,25,["H7650"]],[25,28,["H3808"]],[28,29,["H5647"]],[29,31,["H3808"]],[31,33,["H7812"]],[33,35,[]]]},{"k":6468,"v":[[0,1,["H3588","H518"]],[1,2,["H1692"]],[2,5,["H3068"]],[5,7,["H430"]],[7,8,["H834"]],[8,11,["H6213"]],[11,12,["H5704"]],[12,13,["H2088"]],[13,14,["H3117"]]]},{"k":6469,"v":[[0,3,["H3068"]],[3,6,["H3423"]],[6,8,["H4480","H6440"]],[8,10,["H1419"]],[10,11,["H1471"]],[11,13,["H6099"]],[13,17,["H859"]],[17,18,["H3808"]],[18,19,["H376"]],[19,24,["H5975"]],[24,25,["H6440"]],[25,27,["H5704"]],[27,28,["H2088"]],[28,29,["H3117"]]]},{"k":6470,"v":[[0,1,["H259"]],[1,2,["H376"]],[2,3,["H4480"]],[3,6,["H7291"]],[6,8,["H505"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,13,["H430"]],[13,14,["H1931"]],[14,18,["H3898"]],[18,21,["H834"]],[21,24,["H1696"]],[24,25,[]]]},{"k":6471,"v":[[0,2,["H3966"]],[2,3,["H8104"]],[3,6,["H5315"]],[6,9,["H157","(H853)"]],[9,11,["H3068"]],[11,13,["H430"]]]},{"k":6472,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,9,["H7725","H7725"]],[9,11,["H1692"]],[11,14,["H3499"]],[14,16,["H428"]],[16,17,["H1471"]],[17,19,["H428"]],[19,21,["H7604"]],[21,22,["H854"]],[22,27,["H2859"]],[27,32,["H935"]],[32,36,["H1992"]],[36,38,[]]]},{"k":6473,"v":[[0,4,["H3045","H3045"]],[4,5,["H3588"]],[5,7,["H3068"]],[7,9,["H430"]],[9,11,["H3808"]],[11,12,["H3254"]],[12,14,["H3423"]],[14,16,["(H853)"]],[16,17,["H428"]],[17,18,["H1471"]],[18,20,["H4480","H6440"]],[20,25,["H1961"]],[25,26,["H6341"]],[26,28,["H4170"]],[28,32,["H7850"]],[32,35,["H6654"]],[35,37,["H6976"]],[37,40,["H5869"]],[40,41,["H5704"]],[41,43,["H6"]],[43,45,["H4480","H5921"]],[45,46,["H2063"]],[46,47,["H2896"]],[47,48,["H127"]],[48,49,["H834"]],[49,51,["H3068"]],[51,53,["H430"]],[53,55,["H5414"]],[55,56,[]]]},{"k":6474,"v":[[0,2,["H2009"]],[2,4,["H3117"]],[4,5,["H595"]],[5,7,["H1980"]],[7,9,["H1870"]],[9,11,["H3605"]],[11,13,["H776"]],[13,16,["H3045"]],[16,18,["H3605"]],[18,20,["H3824"]],[20,23,["H3605"]],[23,25,["H5315"]],[25,26,["H3588"]],[26,27,["H3808"]],[27,28,["H259"]],[28,29,["H1697"]],[29,31,["H5307"]],[31,33,["H4480","H3605"]],[33,35,["H2896"]],[35,36,["H1697"]],[36,37,["H834"]],[37,39,["H3068"]],[39,41,["H430"]],[41,42,["H1696"]],[42,43,["H5921"]],[43,45,["H3605"]],[45,49,["H935"]],[49,53,["H3808"]],[53,54,["H259"]],[54,55,["H1697"]],[55,57,["H5307"]],[57,58,["H4480"]]]},{"k":6475,"v":[[0,6,["H1961"]],[6,8,["H834"]],[8,9,["H3605"]],[9,10,["H2896"]],[10,11,["H1697"]],[11,13,["H935"]],[13,14,["H5921"]],[14,16,["H834"]],[16,18,["H3068"]],[18,20,["H430"]],[20,21,["H1696","H413"]],[21,23,["H3651"]],[23,26,["H3068"]],[26,27,["H935"]],[27,28,["H5921"]],[28,29,["(H853)"]],[29,30,["H3605"]],[30,31,["H7451"]],[31,32,["H1697"]],[32,33,["H5704"]],[33,36,["H8045"]],[36,39,["H4480","H5921"]],[39,40,["H2063"]],[40,41,["H2896"]],[41,42,["H127"]],[42,43,["H834"]],[43,45,["H3068"]],[45,47,["H430"]],[47,49,["H5414"]],[49,50,[]]]},{"k":6476,"v":[[0,4,["H5674","(H853)"]],[4,6,["H1285"]],[6,9,["H3068"]],[9,11,["H430"]],[11,12,["H834"]],[12,14,["H6680"]],[14,18,["H1980"]],[18,20,["H5647"]],[20,21,["H312"]],[21,22,["H430"]],[22,25,["H7812"]],[25,31,["H639"]],[31,34,["H3068"]],[34,36,["H2734"]],[36,42,["H6"]],[42,43,["H4120"]],[43,45,["H4480","H5921"]],[45,47,["H2896"]],[47,48,["H776"]],[48,49,["H834"]],[49,52,["H5414"]],[52,54,[]]]},{"k":6477,"v":[[0,2,["H3091"]],[2,3,["H622","(H853)"]],[3,4,["H3605"]],[4,6,["H7626"]],[6,8,["H3478"]],[8,10,["H7927"]],[10,12,["H7121"]],[12,15,["H2205"]],[15,17,["H3478"]],[17,21,["H7218"]],[21,25,["H8199"]],[25,29,["H7860"]],[29,33,["H3320"]],[33,34,["H6440"]],[34,35,["H430"]]]},{"k":6478,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3605"]],[5,7,["H5971"]],[7,8,["H3541"]],[8,9,["H559"]],[9,11,["H3068"]],[11,12,["H430"]],[12,14,["H3478"]],[14,16,["H1"]],[16,17,["H3427"]],[17,21,["H5676"]],[21,24,["H5104"]],[24,27,["H4480","H5769"]],[27,29,["H8646"]],[29,31,["H1"]],[31,33,["H85"]],[33,36,["H1"]],[36,38,["H5152"]],[38,41,["H5647"]],[41,42,["H312"]],[42,43,["H430"]]]},{"k":6479,"v":[[0,3,["H3947","(H853)"]],[3,5,["H1","(H853)"]],[5,6,["H85"]],[6,10,["H4480","H5676"]],[10,13,["H5104"]],[13,15,["H1980"]],[15,18,["H3605"]],[18,20,["H776"]],[20,22,["H3667"]],[22,24,["H7235","(H853)"]],[24,26,["H2233"]],[26,28,["H5414"]],[28,29,["(H853)"]],[29,30,["H3327"]]]},{"k":6480,"v":[[0,3,["H5414"]],[3,5,["H3327","(H853)"]],[5,6,["H3290"]],[6,8,["H6215"]],[8,11,["H5414"]],[11,13,["H6215","(H853)"]],[13,14,["H2022"]],[14,15,["H8165"]],[15,17,["H3423"]],[17,20,["H3290"]],[20,23,["H1121"]],[23,25,["H3381"]],[25,27,["H4714"]]]},{"k":6481,"v":[[0,2,["H7971","(H853)"]],[2,3,["H4872"]],[3,6,["H175"]],[6,9,["H5062","(H853)"]],[9,10,["H4714"]],[10,14,["H834"]],[14,16,["H6213"]],[16,17,["H7130"]],[17,20,["H310"]],[20,24,["H3318","(H853)"]]]},{"k":6482,"v":[[0,6,["H3318","(H853)","H1"]],[6,8,["H4480","H4714"]],[8,11,["H935"]],[11,14,["H3220"]],[14,17,["H4714"]],[17,18,["H7291"]],[18,19,["H310"]],[19,21,["H1"]],[21,23,["H7393"]],[23,25,["H6571"]],[25,28,["H5488"]],[28,29,["H3220"]]]},{"k":6483,"v":[[0,4,["H6817"]],[4,5,["H413"]],[5,7,["H3068"]],[7,9,["H7760"]],[9,10,["H3990"]],[10,11,["H996"]],[11,15,["H4713"]],[15,17,["H935","(H853)"]],[17,19,["H3220"]],[19,20,["H5921"]],[20,23,["H3680"]],[23,27,["H5869"]],[27,29,["H7200","(H853)"]],[29,30,["H834"]],[30,33,["H6213"]],[33,35,["H4714"]],[35,38,["H3427"]],[38,41,["H4057"]],[41,43,["H7227"]],[43,44,["H3117"]]]},{"k":6484,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H776"]],[7,10,["H567"]],[10,12,["H3427"]],[12,16,["H5676"]],[16,17,["H3383"]],[17,20,["H3898"]],[20,21,["H854"]],[21,25,["H5414"]],[25,29,["H3027"]],[29,33,["H3423","(H853)"]],[33,35,["H776"]],[35,38,["H8045"]],[38,41,["H4480","H6440"]],[41,42,[]]]},{"k":6485,"v":[[0,2,["H1111"]],[2,4,["H1121"]],[4,6,["H6834"]],[6,7,["H4428"]],[7,9,["H4124"]],[9,10,["H6965"]],[10,12,["H3898"]],[12,14,["H3478"]],[14,16,["H7971"]],[16,18,["H7121"]],[18,19,["H1109"]],[19,21,["H1121"]],[21,23,["H1160"]],[23,25,["H7043"]],[25,26,[]]]},{"k":6486,"v":[[0,3,["H14"]],[3,4,["H3808"]],[4,5,["H8085"]],[5,7,["H1109"]],[7,10,["H1288","H1288"]],[10,15,["H5337"]],[15,20,["H4480","H3027"]]]},{"k":6487,"v":[[0,4,["H5674","(H853)"]],[4,5,["H3383"]],[5,7,["H935"]],[7,8,["H413"]],[8,9,["H3405"]],[9,12,["H1167"]],[12,14,["H3405"]],[14,15,["H3898"]],[15,19,["H567"]],[19,22,["H6522"]],[22,25,["H3669"]],[25,28,["H2850"]],[28,31,["H1622"]],[31,33,["H2340"]],[33,36,["H2983"]],[36,39,["H5414"]],[39,43,["H3027"]]]},{"k":6488,"v":[[0,3,["H7971","(H853)"]],[3,5,["H6880"]],[5,6,["H6440"]],[6,11,["H1644","(H853)"]],[11,13,["H4480","H6440"]],[13,17,["H8147"]],[17,18,["H4428"]],[18,21,["H567"]],[21,23,["H3808"]],[23,26,["H2719"]],[26,27,["H3808"]],[27,30,["H7198"]]]},{"k":6489,"v":[[0,4,["H5414"]],[4,7,["H776"]],[7,9,["H834"]],[9,12,["H3808"]],[12,13,["H3021"]],[13,15,["H5892"]],[15,16,["H834"]],[16,18,["H1129"]],[18,19,["H3808"]],[19,22,["H3427"]],[22,27,["H3754"]],[27,29,["H2132"]],[29,30,["H834"]],[30,32,["H5193"]],[32,33,["H3808"]],[33,35,["H859"]],[35,36,["H398"]]]},{"k":6490,"v":[[0,2,["H6258"]],[2,3,["H3372","(H853)"]],[3,5,["H3068"]],[5,7,["H5647"]],[7,10,["H8549"]],[10,13,["H571"]],[13,16,["H5493","(H853)"]],[16,18,["H430"]],[18,19,["H834"]],[19,21,["H1"]],[21,22,["H5647"]],[22,26,["H5676"]],[26,29,["H5104"]],[29,32,["H4714"]],[32,34,["H5647"]],[34,35,["(H853)"]],[35,37,["H3068"]]]},{"k":6491,"v":[[0,2,["H518"]],[2,5,["H7489"]],[5,7,["H5869"]],[7,9,["H5647","(H853)"]],[9,11,["H3068"]],[11,12,["H977"]],[12,15,["H3117","(H853)"]],[15,16,["H4310"]],[16,19,["H5647"]],[19,20,["H518","(H853)"]],[20,22,["H430"]],[22,23,["H834"]],[23,25,["H1"]],[25,26,["H5647"]],[26,27,["H834"]],[27,32,["H5676"]],[32,35,["H5104"]],[35,36,["H518","(H853)"]],[36,38,["H430"]],[38,41,["H567"]],[41,44,["H776"]],[44,45,["H859"]],[45,46,["H3427"]],[46,50,["H595"]],[50,53,["H1004"]],[53,56,["H5647","(H853)"]],[56,58,["H3068"]]]},{"k":6492,"v":[[0,3,["H5971"]],[3,4,["H6030"]],[4,6,["H559"]],[6,8,["H2486"]],[8,12,["H4480","H5800","(H853)"]],[12,14,["H3068"]],[14,16,["H5647"]],[16,17,["H312"]],[17,18,["H430"]]]},{"k":6493,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,6,["H1931"]],[6,10,["H5927"]],[10,15,["H1"]],[15,19,["H4480","H776"]],[19,21,["H4714"]],[21,24,["H4480","H1004"]],[24,26,["H5650"]],[26,28,["H834"]],[28,29,["H6213"]],[29,30,["H428"]],[30,31,["H1419","(H853)"]],[31,32,["H226"]],[32,35,["H5869"]],[35,37,["H8104"]],[37,40,["H3605"]],[40,42,["H1870"]],[42,43,["H834"]],[43,45,["H1980"]],[45,48,["H3605"]],[48,50,["H5971"]],[50,51,["H7130"]],[51,54,["H5674"]]]},{"k":6494,"v":[[0,3,["H3068"]],[3,5,["H1644"]],[5,7,["H4480","H6440"]],[7,8,["(H853)"]],[8,9,["H3605"]],[9,11,["H5971"]],[11,14,["H567"]],[14,16,["H3427"]],[16,19,["H776"]],[19,22,["H587"]],[22,23,["H1571"]],[23,24,["H5647","(H853)"]],[24,26,["H3068"]],[26,27,["H3588"]],[27,28,["H1931"]],[28,31,["H430"]]]},{"k":6495,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,8,["H3808","H3201"]],[8,9,["H5647","(H853)"]],[9,11,["H3068"]],[11,12,["H3588"]],[12,13,["H1931"]],[13,16,["H6918"]],[16,17,["H430"]],[17,18,["H1931"]],[18,21,["H7072"]],[21,22,["H410"]],[22,25,["H3808"]],[25,26,["H5375"]],[26,28,["H6588"]],[28,31,["H2403"]]]},{"k":6496,"v":[[0,1,["H3588"]],[1,3,["H5800","(H853)"]],[3,5,["H3068"]],[5,7,["H5647"]],[7,8,["H5236"]],[8,9,["H430"]],[9,13,["H7725"]],[13,17,["H7489"]],[17,19,["H3615"]],[19,21,["H310"]],[21,22,["H834"]],[22,27,["H3190"]]]},{"k":6497,"v":[[0,3,["H5971"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091"]],[6,7,["H3808"]],[7,8,["H3588"]],[8,11,["H5647","(H853)"]],[11,13,["H3068"]]]},{"k":6498,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H859"]],[7,9,["H5707"]],[9,12,["H3588"]],[12,13,["H859"]],[13,15,["H977"]],[15,16,["(H853)"]],[16,18,["H3068"]],[18,20,["H5647"]],[20,24,["H559"]],[24,27,["H5707"]]]},{"k":6499,"v":[[0,1,["H6258"]],[1,4,["H5493"]],[4,7,["(H853)"]],[7,8,["H5236"]],[8,9,["H430"]],[9,10,["H834"]],[10,12,["H7130"]],[12,15,["H5186","(H853)"]],[15,17,["H3824"]],[17,18,["H413"]],[18,20,["H3068"]],[20,21,["H430"]],[21,23,["H3478"]]]},{"k":6500,"v":[[0,3,["H5971"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091","(H853)"]],[6,8,["H3068"]],[8,10,["H430"]],[10,13,["H5647"]],[13,16,["H6963"]],[16,19,["H8085"]]]},{"k":6501,"v":[[0,2,["H3091"]],[2,3,["H3772"]],[3,5,["H1285"]],[5,8,["H5971"]],[8,9,["H1931"]],[9,10,["H3117"]],[10,12,["H7760"]],[12,15,["H2706"]],[15,18,["H4941"]],[18,20,["H7927"]]]},{"k":6502,"v":[[0,2,["H3091"]],[2,3,["H3789"]],[3,4,["H428","(H853)"]],[4,5,["H1697"]],[5,8,["H5612"]],[8,11,["H8451"]],[11,13,["H430"]],[13,15,["H3947"]],[15,17,["H1419"]],[17,18,["H68"]],[18,22,["H6965"]],[22,23,["H8033"]],[23,24,["H8478"]],[24,26,["H427"]],[26,27,["H834"]],[27,31,["H4720"]],[31,34,["H3068"]]]},{"k":6503,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3605"]],[5,7,["H5971"]],[7,8,["H2009"]],[8,9,["H2063"]],[9,10,["H68"]],[10,12,["H1961"]],[12,14,["H5713"]],[14,17,["H3588"]],[17,18,["H1931"]],[18,20,["H8085","(H853)"]],[20,21,["H3605"]],[21,23,["H561"]],[23,26,["H3068"]],[26,27,["H834"]],[27,29,["H1696"]],[29,30,["H5973"]],[30,34,["H1961"]],[34,37,["H5713"]],[37,40,["H6435"]],[40,42,["H3584"]],[42,44,["H430"]]]},{"k":6504,"v":[[0,2,["H3091"]],[2,3,["(H853)"]],[3,5,["H5971"]],[5,6,["H7971"]],[6,8,["H376"]],[8,11,["H5159"]]]},{"k":6505,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H428"]],[7,8,["H1697"]],[8,10,["H3091"]],[10,12,["H1121"]],[12,14,["H5126"]],[14,16,["H5650"]],[16,19,["H3068"]],[19,20,["H4191"]],[20,23,["H3967"]],[23,25,["H6235"]],[25,27,["H8141"]]]},{"k":6506,"v":[[0,3,["H6912"]],[3,7,["H1366"]],[7,10,["H5159"]],[10,12,["H8556"]],[12,13,["H834"]],[13,16,["H2022"]],[16,17,["H669"]],[17,21,["H4480","H6828"]],[21,24,["H2022"]],[24,26,["H1608"]]]},{"k":6507,"v":[[0,2,["H3478"]],[2,3,["H5647","(H853)"]],[3,5,["H3068"]],[5,6,["H3605"]],[6,8,["H3117"]],[8,10,["H3091"]],[10,12,["H3605"]],[12,14,["H3117"]],[14,17,["H2205"]],[17,18,["H834"]],[18,19,["H748","H3117","H310"]],[19,20,["H3091"]],[20,22,["H834"]],[22,24,["H3045","(H853)"]],[24,25,["H3605"]],[25,27,["H4639"]],[27,30,["H3068"]],[30,31,["H834"]],[31,34,["H6213"]],[34,36,["H3478"]]]},{"k":6508,"v":[[0,3,["H6106"]],[3,5,["H3130"]],[5,6,["H834"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,12,["H5927"]],[12,15,["H4480","H4714"]],[15,16,["H6912"]],[16,19,["H7927"]],[19,22,["H2513"]],[22,24,["H7704"]],[24,25,["H834"]],[25,26,["H3290"]],[26,27,["H7069"]],[27,28,["H4480","H854"]],[28,30,["H1121"]],[30,32,["H2544"]],[32,34,["H1"]],[34,36,["H7928"]],[36,39,["H3967"]],[39,42,["H7192"]],[42,45,["H1961"]],[45,47,["H5159"]],[47,50,["H1121"]],[50,52,["H3130"]]]},{"k":6509,"v":[[0,2,["H499"]],[2,4,["H1121"]],[4,6,["H175"]],[6,7,["H4191"]],[7,10,["H6912"]],[10,14,["H1389"]],[14,18,["H6372"]],[18,20,["H1121"]],[20,21,["H834"]],[21,23,["H5414"]],[23,26,["H2022"]],[26,27,["H669"]]]},{"k":6510,"v":[[0,2,["H310"]],[2,4,["H4194"]],[4,6,["H3091"]],[6,10,["H1961"]],[10,13,["H1121"]],[13,15,["H3478"]],[15,16,["H7592"]],[16,18,["H3068"]],[18,19,["H559"]],[19,20,["H4310"]],[20,23,["H5927"]],[23,26,["H413"]],[26,28,["H3669"]],[28,29,["H8462"]],[29,31,["H3898"]],[31,33,[]]]},{"k":6511,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H3063"]],[5,8,["H5927"]],[8,9,["H2009"]],[9,12,["H5414","(H853)"]],[12,14,["H776"]],[14,17,["H3027"]]]},{"k":6512,"v":[[0,2,["H3063"]],[2,3,["H559"]],[3,5,["H8095"]],[5,7,["H251"]],[7,9,["H5927"]],[9,10,["H854"]],[10,14,["H1486"]],[14,18,["H3898"]],[18,21,["H3669"]],[21,23,["H589"]],[23,24,["H1571"]],[24,26,["H1980"]],[26,27,["H854"]],[27,31,["H1486"]],[31,33,["H8095"]],[33,34,["H1980"]],[34,35,["H854"]],[35,36,[]]]},{"k":6513,"v":[[0,2,["H3063"]],[2,4,["H5927"]],[4,7,["H3068"]],[7,8,["H5414","(H853)"]],[8,10,["H3669"]],[10,13,["H6522"]],[13,16,["H3027"]],[16,19,["H5221"]],[19,23,["H966"]],[23,24,["H6235"]],[24,25,["H505"]],[25,26,["H376"]]]},{"k":6514,"v":[[0,3,["H4672","(H853)"]],[3,4,["H137"]],[4,6,["H966"]],[6,9,["H3898"]],[9,14,["H5221","(H853)"]],[14,16,["H3669"]],[16,19,["H6522"]]]},{"k":6515,"v":[[0,2,["H137"]],[2,3,["H5127"]],[3,6,["H7291"]],[6,7,["H310"]],[7,10,["H270"]],[10,14,["H7112","(H853)"]],[14,16,["H931","H3027"]],[16,20,["H7272"]]]},{"k":6516,"v":[[0,2,["H137"]],[2,3,["H559"]],[3,6,["H7657"]],[6,7,["H4428"]],[7,10,["H931","H3027"]],[10,14,["H7272"]],[14,16,["H7112"]],[16,17,["H3950"]],[17,20,["H8478"]],[20,22,["H7979"]],[22,23,["H834"]],[23,26,["H6213"]],[26,27,["H3651"]],[27,28,["H430"]],[28,30,["H7999"]],[30,34,["H935"]],[34,37,["H3389"]],[37,39,["H8033"]],[39,41,["H4191"]]]},{"k":6517,"v":[[0,3,["H1121"]],[3,5,["H3063"]],[5,7,["H3898"]],[7,9,["H3389"]],[9,12,["H3920"]],[12,15,["H5221"]],[15,19,["H6310"]],[19,22,["H2719"]],[22,24,["H7971"]],[24,26,["H5892"]],[26,28,["H784"]]]},{"k":6518,"v":[[0,2,["H310"]],[2,4,["H1121"]],[4,6,["H3063"]],[6,8,["H3381"]],[8,10,["H3898"]],[10,13,["H3669"]],[13,15,["H3427"]],[15,18,["H2022"]],[18,22,["H5045"]],[22,26,["H8219"]]]},{"k":6519,"v":[[0,2,["H3063"]],[2,3,["H1980"]],[3,4,["H3413"]],[4,6,["H3669"]],[6,8,["H3427"]],[8,10,["H2275"]],[10,13,["H8034"]],[13,15,["H2275"]],[15,16,["H6440"]],[16,18,["H7153"]],[18,21,["H5221","(H853)"]],[21,22,["H8344"]],[22,24,["H289"]],[24,26,["H8526"]]]},{"k":6520,"v":[[0,3,["H4480","H8033"]],[3,5,["H1980"]],[5,6,["H413"]],[6,8,["H3427"]],[8,10,["H1688"]],[10,13,["H8034"]],[13,15,["H1688"]],[15,16,["H6440"]],[16,18,["H7158"]]]},{"k":6521,"v":[[0,2,["H3612"]],[2,3,["H559"]],[3,5,["H834"]],[5,6,["H5221","(H853)"]],[6,7,["H7158"]],[7,9,["H3920"]],[9,15,["H5414","(H853)"]],[15,16,["H5919"]],[16,18,["H1323"]],[18,20,["H802"]]]},{"k":6522,"v":[[0,2,["H6274"]],[2,4,["H1121"]],[4,6,["H7073"]],[6,7,["H3612"]],[7,8,["H6996"]],[8,9,["H251"]],[9,10,["H3920"]],[10,14,["H5414"]],[14,15,["(H853)"]],[15,16,["H5919"]],[16,18,["H1323"]],[18,20,["H802"]]]},{"k":6523,"v":[[0,5,["H1961"]],[5,8,["H935"]],[8,13,["H5496"]],[13,16,["H7592"]],[16,17,["H4480","H854"]],[17,19,["H1"]],[19,21,["H7704"]],[21,24,["H6795"]],[24,26,["H4480","H5921"]],[26,28,["H2543"]],[28,30,["H3612"]],[30,31,["H559"]],[31,34,["H4100"]],[34,36,[]]]},{"k":6524,"v":[[0,3,["H559"]],[3,6,["H3051"]],[6,9,["H1293"]],[9,10,["H3588"]],[10,13,["H5414"]],[13,16,["H5045"]],[16,17,["H776"]],[17,18,["H5414"]],[18,21,["H1543"]],[21,23,["H4325"]],[23,25,["H3612"]],[25,26,["H5414"]],[26,27,["(H853)"]],[27,29,["H5942"]],[29,30,["H1543"]],[30,33,["H8482"]],[33,34,["H1543"]]]},{"k":6525,"v":[[0,3,["H1121"]],[3,6,["H7017"]],[6,7,["H4872"]],[7,10,["H2859"]],[10,12,["H5927"]],[12,16,["H4480","H5892"]],[16,19,["H8558"]],[19,20,["H854"]],[20,22,["H1121"]],[22,24,["H3063"]],[24,27,["H4480","H4057"]],[27,29,["H3063"]],[29,30,["H834"]],[30,34,["H5045"]],[34,36,["H6166"]],[36,39,["H1980"]],[39,41,["H3427"]],[41,42,["H854"]],[42,44,["H5971"]]]},{"k":6526,"v":[[0,2,["H3063"]],[2,3,["H1980"]],[3,4,["H854"]],[4,5,["H8095"]],[5,7,["H251"]],[7,10,["H5221","(H853)"]],[10,12,["H3669"]],[12,14,["H3427"]],[14,15,["H6857"]],[15,18,["H2763"]],[18,20,["(H853)"]],[20,22,["H8034"]],[22,25,["H5892"]],[25,27,["H7121"]],[27,28,["H2767"]]]},{"k":6527,"v":[[0,2,["H3063"]],[2,3,["H3920","(H853)"]],[3,4,["H5804"]],[4,5,["(H853)"]],[5,7,["H1366"]],[7,10,["H831"]],[10,13,["H1366"]],[13,16,["H6138"]],[16,19,["H1366"]],[19,20,[]]]},{"k":6528,"v":[[0,3,["H3068"]],[3,4,["H1961"]],[4,5,["H854"]],[5,6,["H3063"]],[6,10,["H3423","(H853)"]],[10,15,["H2022"]],[15,16,["H3588"]],[16,18,["H3808"]],[18,20,["H3423","(H853)"]],[20,22,["H3427"]],[22,25,["H6010"]],[25,26,["H3588"]],[26,29,["H7393"]],[29,31,["H1270"]]]},{"k":6529,"v":[[0,3,["H5414","(H853)"]],[3,4,["H2275"]],[4,6,["H3612"]],[6,7,["H834"]],[7,8,["H4872"]],[8,9,["H1696"]],[9,12,["H3423"]],[12,13,["H4480","H8033","(H853)"]],[13,15,["H7969"]],[15,16,["H1121"]],[16,18,["H6061"]]]},{"k":6530,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,7,["H3808"]],[7,9,["H3423"]],[9,11,["H2983"]],[11,13,["H3427"]],[13,14,["H3389"]],[14,17,["H2983"]],[17,18,["H3427"]],[18,19,["H854"]],[19,21,["H1121"]],[21,23,["H1144"]],[23,25,["H3389"]],[25,26,["H5704"]],[26,27,["H2088"]],[27,28,["H3117"]]]},{"k":6531,"v":[[0,3,["H1004"]],[3,5,["H3130"]],[5,6,["H1992"]],[6,7,["H1571"]],[7,9,["H5927"]],[9,11,["H1008"]],[11,14,["H3068"]],[14,16,["H5973"]],[16,17,[]]]},{"k":6532,"v":[[0,3,["H1004"]],[3,5,["H3130"]],[5,8,["H8446"]],[8,9,["H1008"]],[9,12,["H8034"]],[12,15,["H5892"]],[15,16,["H6440"]],[16,18,["H3870"]]]},{"k":6533,"v":[[0,3,["H8104"]],[3,4,["H7200"]],[4,6,["H376"]],[6,8,["H3318"]],[8,10,["H4480"]],[10,12,["H5892"]],[12,15,["H559"]],[15,18,["H7200"]],[18,22,["H4994","(H853)"]],[22,24,["H3996"]],[24,27,["H5892"]],[27,31,["H6213","H5973"]],[31,33,["H2617"]]]},{"k":6534,"v":[[0,4,["H7200"]],[4,5,["(H853)"]],[5,7,["H3996"]],[7,10,["H5892"]],[10,12,["H5221","(H853)"]],[12,14,["H5892"]],[14,17,["H6310"]],[17,20,["H2719"]],[20,24,["H7971"]],[24,26,["H376"]],[26,28,["H3605"]],[28,30,["H4940"]]]},{"k":6535,"v":[[0,3,["H376"]],[3,4,["H1980"]],[4,7,["H776"]],[7,10,["H2850"]],[10,12,["H1129"]],[12,14,["H5892"]],[14,16,["H7121"]],[16,18,["H8034"]],[18,20,["H3870"]],[20,21,["H1931"]],[21,24,["H8034"]],[24,26,["H5704"]],[26,27,["H2088"]],[27,28,["H3117"]]]},{"k":6536,"v":[[0,1,["H3808"]],[1,3,["H4519"]],[3,5,["H3423","(H853)"]],[5,9,["H1052"]],[9,12,["H1323"]],[12,14,["H8590"]],[14,17,["H1323"]],[17,20,["H3427"]],[20,22,["H1756"]],[22,25,["H1323"]],[25,28,["H3427"]],[28,30,["H2991"]],[30,33,["H1323"]],[33,36,["H3427"]],[36,38,["H4023"]],[38,41,["H1323"]],[41,44,["H3669"]],[44,45,["H2974"]],[45,46,["H3427"]],[46,48,["H2063"]],[48,49,["H776"]]]},{"k":6537,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,7,["H3478"]],[7,9,["H2388"]],[9,12,["H7760","(H853)"]],[12,14,["H3669"]],[14,16,["H4522"]],[16,19,["H3808"]],[19,23,["H3423","H3423"]]]},{"k":6538,"v":[[0,1,["H3808"]],[1,3,["H669"]],[3,5,["H3423","(H853)"]],[5,7,["H3669"]],[7,9,["H3427"]],[9,11,["H1507"]],[11,14,["H3669"]],[14,15,["H3427"]],[15,17,["H1507"]],[17,18,["H7130"]],[18,19,[]]]},{"k":6539,"v":[[0,1,["H3808"]],[1,3,["H2074"]],[3,5,["H3423","(H853)"]],[5,7,["H3427"]],[7,9,["H7003"]],[9,12,["H3427"]],[12,14,["H5096"]],[14,17,["H3669"]],[17,18,["H3427"]],[18,19,["H7130"]],[19,22,["H1961"]],[22,23,["H4522"]]]},{"k":6540,"v":[[0,1,["H3808"]],[1,3,["H836"]],[3,5,["H3423","(H853)"]],[5,7,["H3427"]],[7,9,["H5910"]],[9,12,["H3427"]],[12,14,["H6721"]],[14,17,["H303"]],[17,20,["H392"]],[20,23,["H2462"]],[23,26,["H663"]],[26,29,["H7340"]]]},{"k":6541,"v":[[0,3,["H843"]],[3,4,["H3427"]],[4,5,["H7130"]],[5,7,["H3669"]],[7,9,["H3427"]],[9,12,["H776"]],[12,13,["H3588"]],[13,16,["H3808"]],[16,19,["H3423"]]]},{"k":6542,"v":[[0,1,["H3808"]],[1,3,["H5321"]],[3,5,["H3423","(H853)"]],[5,7,["H3427"]],[7,9,["H1053"]],[9,12,["H3427"]],[12,14,["H1043"]],[14,17,["H3427"]],[17,18,["H7130"]],[18,20,["H3669"]],[20,22,["H3427"]],[22,25,["H776"]],[25,28,["H3427"]],[28,30,["H1053"]],[30,33,["H1043"]],[33,34,["H1961"]],[34,35,["H4522"]],[35,37,[]]]},{"k":6543,"v":[[0,3,["H567"]],[3,4,["H3905","(H853)"]],[4,6,["H1121"]],[6,8,["H1835"]],[8,11,["H2022"]],[11,12,["H3588"]],[12,15,["H3808"]],[15,16,["H5414"]],[16,20,["H3381"]],[20,23,["H6010"]]]},{"k":6544,"v":[[0,3,["H567"]],[3,4,["H2974"]],[4,5,["H3427"]],[5,7,["H2022"]],[7,8,["H2776"]],[8,10,["H357"]],[10,13,["H8169"]],[13,16,["H3027"]],[16,19,["H1004"]],[19,21,["H3130"]],[21,22,["H3513"]],[22,26,["H1961"]],[26,27,["H4522"]]]},{"k":6545,"v":[[0,3,["H1366"]],[3,6,["H567"]],[6,11,["H4480","H4608"]],[11,13,["H6137"]],[13,16,["H4480","H5553"]],[16,18,["H4605"]]]},{"k":6546,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,8,["H5927"]],[8,9,["H4480"]],[9,10,["H1537"]],[10,11,["H413"]],[11,12,["H1066"]],[12,14,["H559"]],[14,20,["H5927","(H853)"]],[20,23,["H4480","H4714"]],[23,26,["H935"]],[26,28,["H413"]],[28,30,["H776"]],[30,31,["H834"]],[31,33,["H7650"]],[33,36,["H1"]],[36,39,["H559"]],[39,42,["H3808","H5769"]],[42,43,["H6565"]],[43,45,["H1285"]],[45,46,["H854"]],[46,47,[]]]},{"k":6547,"v":[[0,2,["H859"]],[2,4,["H3772"]],[4,5,["H3808"]],[5,6,["H1285"]],[6,9,["H3427"]],[9,11,["H2063"]],[11,12,["H776"]],[12,16,["H5422"]],[16,18,["H4196"]],[18,22,["H3808"]],[22,23,["H8085"]],[23,25,["H6963"]],[25,26,["H4100"]],[26,29,["H6213"]],[29,30,["H2063"]]]},{"k":6548,"v":[[0,3,["H1571"]],[3,4,["H559"]],[4,7,["H3808"]],[7,10,["H1644","(H853)"]],[10,12,["H4480","H6440"]],[12,17,["H1961"]],[17,22,["H6654"]],[22,25,["H430"]],[25,27,["H1961"]],[27,29,["H4170"]],[29,31,[]]]},{"k":6549,"v":[[0,5,["H1961"]],[5,8,["H4397"]],[8,11,["H3068"]],[11,12,["H1696","(H853)"]],[12,13,["H428"]],[13,14,["H1697"]],[14,15,["H413"]],[15,16,["H3605"]],[16,18,["H1121"]],[18,20,["H3478"]],[20,23,["H5971"]],[23,25,["H5375","(H853)"]],[25,27,["H6963"]],[27,29,["H1058"]]]},{"k":6550,"v":[[0,3,["H7121"]],[3,5,["H8034"]],[5,7,["H1931"]],[7,8,["H4725"]],[8,9,["H1066"]],[9,12,["H2076"]],[12,13,["H8033"]],[13,16,["H3068"]]]},{"k":6551,"v":[[0,3,["H3091"]],[3,5,["(H853)"]],[5,7,["H5971"]],[7,8,["H7971"]],[8,10,["H1121"]],[10,12,["H3478"]],[12,13,["H1980"]],[13,15,["H376"]],[15,18,["H5159"]],[18,20,["H3423","(H853)"]],[20,22,["H776"]]]},{"k":6552,"v":[[0,3,["H5971"]],[3,4,["H5647","(H853)"]],[4,6,["H3068"]],[6,7,["H3605"]],[7,9,["H3117"]],[9,11,["H3091"]],[11,13,["H3605"]],[13,15,["H3117"]],[15,18,["H2205"]],[18,19,["H834"]],[19,20,["H748","H3117","H310"]],[20,21,["H3091"]],[21,22,["H834"]],[22,24,["H7200","(H853)"]],[24,25,["H3605"]],[25,27,["H1419"]],[27,28,["H4639"]],[28,31,["H3068"]],[31,32,["H834"]],[32,34,["H6213"]],[34,36,["H3478"]]]},{"k":6553,"v":[[0,2,["H3091"]],[2,4,["H1121"]],[4,6,["H5126"]],[6,8,["H5650"]],[8,11,["H3068"]],[11,12,["H4191"]],[12,15,["H3967"]],[15,17,["H6235"]],[17,18,["H8141"]],[18,19,["H1121"]]]},{"k":6554,"v":[[0,3,["H6912"]],[3,7,["H1366"]],[7,10,["H5159"]],[10,12,["H8556"]],[12,15,["H2022"]],[15,17,["H669"]],[17,21,["H4480","H6828"]],[21,24,["H2022"]],[24,25,["H1608"]]]},{"k":6555,"v":[[0,2,["H1571"]],[2,3,["H3605"]],[3,4,["H1931"]],[4,5,["H1755"]],[5,7,["H622"]],[7,8,["H413"]],[8,10,["H1"]],[10,13,["H6965"]],[13,14,["H312"]],[14,15,["H1755"]],[15,16,["H310"]],[16,18,["H834"]],[18,19,["H3045"]],[19,20,["H3808","(H853)"]],[20,22,["H3068"]],[22,24,["H1571","(H853)"]],[24,26,["H4639"]],[26,27,["H834"]],[27,30,["H6213"]],[30,32,["H3478"]]]},{"k":6556,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213","(H853)"]],[6,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H5647","(H853)"]],[15,16,["H1168"]]]},{"k":6557,"v":[[0,3,["H5800","(H853)"]],[3,5,["H3068"]],[5,6,["H430"]],[6,9,["H1"]],[9,13,["H3318","(H853)"]],[13,16,["H4480","H776"]],[16,18,["H4714"]],[18,20,["H1980","H310"]],[20,21,["H312"]],[21,22,["H430"]],[22,25,["H4480","H430"]],[25,28,["H5971"]],[28,29,["H834"]],[29,32,["H5439"]],[32,36,["H7812"]],[36,40,["H3707","(H853)"]],[40,42,["H3068"]],[42,44,["H3707"]]]},{"k":6558,"v":[[0,3,["H5800","(H853)"]],[3,5,["H3068"]],[5,7,["H5647"]],[7,8,["H1168"]],[8,10,["H6252"]]]},{"k":6559,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,10,["H3478"]],[10,13,["H5414"]],[13,17,["H3027"]],[17,19,["H8154"]],[19,21,["H8155"]],[21,25,["H4376"]],[25,29,["H3027"]],[29,32,["H341"]],[32,34,["H4480","H5439"]],[34,38,["H3201"]],[38,39,["H3808"]],[39,41,["H5750"]],[41,42,["H5975"]],[42,43,["H6440"]],[43,45,["H341"]]]},{"k":6560,"v":[[0,1,["H3605","H834"]],[1,4,["H3318"]],[4,6,["H3027"]],[6,9,["H3068"]],[9,10,["H1961"]],[10,14,["H7451"]],[14,15,["H834"]],[15,17,["H3068"]],[17,19,["H1696"]],[19,21,["H834"]],[21,23,["H3068"]],[23,25,["H7650"]],[25,31,["H3966"]],[31,32,["H3334"]]]},{"k":6561,"v":[[0,3,["H3068"]],[3,5,["H6965"]],[5,6,["H8199"]],[6,8,["H3467"]],[8,13,["H4480","H3027"]],[13,17,["H8154"]],[17,18,[]]]},{"k":6562,"v":[[0,2,["H1571"]],[2,5,["H3808"]],[5,6,["H8085"]],[6,7,["H413"]],[7,9,["H8199"]],[9,10,["H3588"]],[10,14,["H2181"]],[14,15,["H310"]],[15,16,["H312"]],[16,17,["H430"]],[17,20,["H7812"]],[20,24,["H5493"]],[24,25,["H4118"]],[25,27,["H4480"]],[27,29,["H1870"]],[29,30,["H834"]],[30,32,["H1"]],[32,33,["H1980"]],[33,35,["H8085"]],[35,37,["H4687"]],[37,40,["H3068"]],[40,43,["H6213"]],[43,44,["H3808"]],[44,45,["H3651"]]]},{"k":6563,"v":[[0,2,["H3588"]],[2,4,["H3068"]],[4,7,["H6965"]],[7,8,["H8199"]],[8,11,["H3068"]],[11,12,["H1961"]],[12,13,["H5973"]],[13,15,["H8199"]],[15,17,["H3467"]],[17,22,["H4480","H3027"]],[22,25,["H341"]],[25,26,["H3605"]],[26,28,["H3117"]],[28,31,["H8199"]],[31,32,["H3588"]],[32,34,["H5162"]],[34,36,["H3068"]],[36,40,["H4480","H5009"]],[40,44,["H4480","H6440"]],[44,46,["H3905"]],[46,49,["H1766"]],[49,50,[]]]},{"k":6564,"v":[[0,5,["H1961"]],[5,8,["H8199"]],[8,10,["H4191"]],[10,13,["H7725"]],[13,15,["H7843"]],[15,20,["H4480","H1"]],[20,22,["H1980","H310"]],[22,23,["H312"]],[23,24,["H430"]],[24,26,["H5647"]],[26,31,["H7812"]],[31,35,["H5307"]],[35,36,["H3808"]],[36,40,["H4480","H4611"]],[40,45,["H4480","H1870","H7186"]]]},{"k":6565,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,10,["H3478"]],[10,13,["H559"]],[13,14,["H3282"]],[14,15,["H834"]],[15,16,["H2088"]],[16,17,["H1471"]],[17,19,["H5674","(H853)"]],[19,21,["H1285"]],[21,22,["H834"]],[22,24,["H6680","(H853)"]],[24,26,["H1"]],[26,29,["H3808"]],[29,30,["H8085"]],[30,33,["H6963"]]]},{"k":6566,"v":[[0,1,["H589"]],[1,2,["H1571"]],[2,4,["H3808"]],[4,5,["H3254"]],[5,7,["H3423"]],[7,8,["H376"]],[8,10,["H4480","H6440"]],[10,12,["H4480"]],[12,14,["H1471"]],[14,15,["H834"]],[15,16,["H3091"]],[16,17,["H5800"]],[17,20,["H4191"]]]},{"k":6567,"v":[[0,1,["H4616"]],[1,6,["H5254","(H853)"]],[6,7,["H3478"]],[7,9,["H1992"]],[9,11,["H8104","(H853)"]],[11,13,["H1870"]],[13,16,["H3068"]],[16,18,["H1980"]],[18,20,["H834"]],[20,22,["H1"]],[22,24,["H8104"]],[24,26,["H518"]],[26,27,["H3808"]]]},{"k":6568,"v":[[0,3,["H3068"]],[3,4,["H5117","(H853)"]],[4,5,["H428"]],[5,6,["H1471"]],[6,7,["H1115"]],[7,10,["H3423"]],[10,11,["H4118"]],[11,12,["H3808"]],[12,13,["H5414"]],[13,18,["H3027"]],[18,20,["H3091"]]]},{"k":6569,"v":[[0,2,["H428"]],[2,5,["H1471"]],[5,6,["H834"]],[6,8,["H3068"]],[8,9,["H5117"]],[9,11,["H5254","(H853)"]],[11,12,["H3478"]],[12,15,["(H853)"]],[15,17,["H3605","H834"]],[17,22,["H3808"]],[22,23,["H3045","(H853)"]],[23,24,["H3605"]],[24,26,["H4421"]],[26,28,["H3667"]]]},{"k":6570,"v":[[0,1,["H7535"]],[1,2,["H4616"]],[2,4,["H1755"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,11,["H3045"]],[11,13,["H3925"]],[13,15,["H4421"]],[15,18,["H7535"]],[18,20,["H834"]],[20,21,["H6440"]],[21,22,["H3045"]],[22,23,["H3808"]],[23,24,[]]]},{"k":6571,"v":[[0,2,["H2568"]],[2,3,["H5633"]],[3,6,["H6430"]],[6,8,["H3605"]],[8,10,["H3669"]],[10,13,["H6722"]],[13,16,["H2340"]],[16,18,["H3427"]],[18,20,["H2022"]],[20,21,["H3844"]],[21,23,["H4480","H2022"]],[23,24,["H1179"]],[24,25,["H5704"]],[25,28,["H935"]],[28,30,["H2574"]]]},{"k":6572,"v":[[0,3,["H1961"]],[3,5,["H5254","(H853)"]],[5,6,["H3478"]],[6,10,["H3045"]],[10,14,["H8085"]],[14,15,["(H853)"]],[15,17,["H4687"]],[17,20,["H3068"]],[20,21,["H834"]],[21,23,["H6680","(H853)"]],[23,25,["H1"]],[25,28,["H3027"]],[28,30,["H4872"]]]},{"k":6573,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H3427"]],[6,7,["H7130"]],[7,9,["H3669"]],[9,10,["H2850"]],[10,12,["H567"]],[12,14,["H6522"]],[14,16,["H2340"]],[16,18,["H2983"]]]},{"k":6574,"v":[[0,3,["H3947","(H853)"]],[3,5,["H1323"]],[5,9,["H802"]],[9,11,["H5414"]],[11,13,["H1323"]],[13,16,["H1121"]],[16,18,["H5647","(H853)"]],[18,20,["H430"]]]},{"k":6575,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213","(H853)"]],[6,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H7911","(H853)"]],[15,17,["H3068"]],[17,19,["H430"]],[19,21,["H5647","(H853)"]],[21,22,["H1168"]],[22,25,["H842"]]]},{"k":6576,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,10,["H3478"]],[10,13,["H4376"]],[13,17,["H3027"]],[17,19,["H3573"]],[19,20,["H4428"]],[20,22,["H763"]],[22,25,["H1121"]],[25,27,["H3478"]],[27,28,["H5647","(H853)"]],[28,29,["H3573"]],[29,30,["H8083"]],[30,31,["H8141"]]]},{"k":6577,"v":[[0,4,["H1121"]],[4,6,["H3478"]],[6,7,["H2199"]],[7,8,["H413"]],[8,10,["H3068"]],[10,12,["H3068"]],[12,14,["H6965"]],[14,16,["H3467"]],[16,19,["H1121"]],[19,21,["H3478"]],[21,23,["H3467"]],[23,25,["(H853)"]],[25,26,["H6274"]],[26,28,["H1121"]],[28,30,["H7073"]],[30,31,["H3612"]],[31,32,["H6996"]],[32,33,["H251"]]]},{"k":6578,"v":[[0,3,["H7307"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H5921"]],[8,12,["H8199","(H853)"]],[12,13,["H3478"]],[13,16,["H3318"]],[16,18,["H4421"]],[18,21,["H3068"]],[21,22,["H5414","(H853)"]],[22,23,["H3573"]],[23,24,["H4428"]],[24,26,["H763"]],[26,29,["H3027"]],[29,32,["H3027"]],[32,33,["H5810"]],[33,34,["H5921"]],[34,35,["H3573"]]]},{"k":6579,"v":[[0,3,["H776"]],[3,5,["H8252"]],[5,6,["H705"]],[6,7,["H8141"]],[7,9,["H6274"]],[9,11,["H1121"]],[11,13,["H7073"]],[13,14,["H4191"]]]},{"k":6580,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,7,["H7451"]],[7,8,["H3254"]],[8,11,["H5869"]],[11,14,["H3068"]],[14,17,["H3068"]],[17,18,["H2388","(H853)"]],[18,19,["H5700"]],[19,21,["H4428"]],[21,23,["H4124"]],[23,24,["H5921"]],[24,25,["H3478"]],[25,26,["H5921","H3588"]],[26,29,["H6213","(H853)"]],[29,30,["H7451"]],[30,33,["H5869"]],[33,36,["H3068"]]]},{"k":6581,"v":[[0,3,["H622"]],[3,4,["H413"]],[4,5,["(H853)"]],[5,7,["H1121"]],[7,9,["H5983"]],[9,11,["H6002"]],[11,13,["H1980"]],[13,15,["H5221","(H853)"]],[15,16,["H3478"]],[16,18,["H3423","(H853)"]],[18,20,["H5892"]],[20,23,["H8558"]]]},{"k":6582,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5647","(H853)"]],[6,7,["H5700"]],[7,9,["H4428"]],[9,11,["H4124"]],[11,12,["H8083","H6240"]],[12,13,["H8141"]]]},{"k":6583,"v":[[0,4,["H1121"]],[4,6,["H3478"]],[6,7,["H2199"]],[7,8,["H413"]],[8,10,["H3068"]],[10,12,["H3068"]],[12,15,["H6965"]],[15,17,["H3467","(H853)"]],[17,18,["H261"]],[18,20,["H1121"]],[20,22,["H1617"]],[22,24,["H1121","H1145"]],[24,26,["H376"]],[26,27,["H334","H3027","H3225"]],[27,30,["H3027"]],[30,32,["H1121"]],[32,34,["H3478"]],[34,35,["H7971"]],[35,37,["H4503"]],[37,39,["H5700"]],[39,41,["H4428"]],[41,43,["H4124"]]]},{"k":6584,"v":[[0,2,["H261"]],[2,3,["H6213"]],[3,6,["H2719"]],[6,9,["H8147"]],[9,10,["H6366"]],[10,13,["H1574"]],[13,14,["H753"]],[14,18,["H2296"]],[18,20,["H4480","H8478"]],[20,22,["H4055"]],[22,23,["H5921"]],[23,25,["H3225"]],[25,26,["H3409"]]]},{"k":6585,"v":[[0,3,["H7126","(H853)"]],[3,5,["H4503"]],[5,7,["H5700"]],[7,8,["H4428"]],[8,10,["H4124"]],[10,12,["H5700"]],[12,15,["H3966"]],[15,16,["H1277"]],[16,17,["H376"]]]},{"k":6586,"v":[[0,2,["H834"]],[2,7,["H3615"]],[7,9,["H7126","(H853)"]],[9,11,["H4503"]],[11,14,["H7971","(H853)"]],[14,16,["H5971"]],[16,18,["H5375"]],[18,20,["H4503"]]]},{"k":6587,"v":[[0,2,["H1931"]],[2,5,["H7725"]],[5,6,["H4480"]],[6,8,["H6456"]],[8,9,["H834"]],[9,11,["H854"]],[11,12,["H1537"]],[12,14,["H559"]],[14,18,["H5643"]],[18,19,["H1697"]],[19,23,["H4428"]],[23,25,["H559"]],[25,27,["H2013"]],[27,29,["H3605"]],[29,31,["H5975"]],[31,35,["H3318"]],[35,36,["H4480","H5921"]],[36,37,[]]]},{"k":6588,"v":[[0,2,["H261"]],[2,3,["H935"]],[3,4,["H413"]],[4,7,["H1931"]],[7,9,["H3427"]],[9,12,["H4747"]],[12,13,["H5944"]],[13,14,["H834"]],[14,19,["H905"]],[19,21,["H261"]],[21,22,["H559"]],[22,26,["H1697"]],[26,28,["H430"]],[28,29,["H413"]],[29,33,["H6965"]],[33,35,["H4480","H5921"]],[35,37,["H3678"]]]},{"k":6589,"v":[[0,2,["H261"]],[2,4,["H7971","(H853)"]],[4,6,["H8040"]],[6,7,["H3027"]],[7,9,["H3947","(H853)"]],[9,11,["H2719"]],[11,12,["H4480","H5921"]],[12,14,["H3225"]],[14,15,["H3409"]],[15,17,["H8628"]],[17,21,["H990"]]]},{"k":6590,"v":[[0,3,["H5325"]],[3,4,["H1571"]],[4,6,["H935"]],[6,7,["H310"]],[7,9,["H3851"]],[9,12,["H2459"]],[12,13,["H5462"]],[13,14,["H1157"]],[14,16,["H3851"]],[16,18,["H3588"]],[18,21,["H3808"]],[21,22,["H8025"]],[22,24,["H2719"]],[24,28,["H4480","H990"]],[28,31,["H6574"]],[31,33,["H3318"]]]},{"k":6591,"v":[[0,2,["H261"]],[2,4,["H3318"]],[4,7,["H4528"]],[7,9,["H5462"]],[9,11,["H1817"]],[11,14,["H5944"]],[14,16,["H1157"]],[16,18,["H5274"]],[18,19,[]]]},{"k":6592,"v":[[0,2,["H1931"]],[2,5,["H3318"]],[5,7,["H5650"]],[7,8,["H935"]],[8,12,["H7200"]],[12,14,["H2009"]],[14,16,["H1817"]],[16,19,["H5944"]],[19,21,["H5274"]],[21,23,["H559"]],[23,24,["H389"]],[24,25,["H1931"]],[25,26,["H5526","(H853)"]],[26,28,["H7272"]],[28,31,["H4747"]],[31,32,["H2315"]]]},{"k":6593,"v":[[0,3,["H2342"]],[3,4,["H5704"]],[4,7,["H954"]],[7,9,["H2009"]],[9,11,["H6605"]],[11,12,["H369"]],[12,14,["H1817"]],[14,17,["H5944"]],[17,20,["H3947","(H853)"]],[20,22,["H4668"]],[22,24,["H6605"]],[24,27,["H2009"]],[27,29,["H113"]],[29,32,["H5307"]],[32,33,["H4191"]],[33,36,["H776"]]]},{"k":6594,"v":[[0,2,["H261"]],[2,3,["H4422"]],[3,4,["H5704"]],[4,6,["H4102"]],[6,9,["H5674","(H853)"]],[9,11,["H6456"]],[11,13,["H4422"]],[13,15,["H8167"]]]},{"k":6595,"v":[[0,5,["H1961"]],[5,9,["H935"]],[9,12,["H8628"]],[12,14,["H7782"]],[14,17,["H2022"]],[17,19,["H669"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,26,["H3381"]],[26,27,["H5973"]],[27,29,["H4480"]],[29,31,["H2022"]],[31,33,["H1931"]],[33,34,["H6440"]],[34,35,[]]]},{"k":6596,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H7291"]],[6,7,["H310"]],[7,9,["H3588"]],[9,11,["H3068"]],[11,13,["H5414","(H853)"]],[13,15,["H341","(H853)"]],[15,17,["H4124"]],[17,20,["H3027"]],[20,24,["H3381"]],[24,25,["H310"]],[25,28,["H3920","(H853)"]],[28,30,["H4569"]],[30,32,["H3383"]],[32,34,["H4124"]],[34,36,["H5414"]],[36,37,["H3808"]],[37,39,["H376"]],[39,42,["H5674"]]]},{"k":6597,"v":[[0,3,["H5221"]],[3,4,["(H853)"]],[4,5,["H4124"]],[5,7,["H1931"]],[7,8,["H6256"]],[8,10,["H6235"]],[10,11,["H505"]],[11,12,["H376"]],[12,13,["H3605"]],[13,14,["H8082"]],[14,16,["H3605"]],[16,17,["H376"]],[17,19,["H2428"]],[19,22,["H4422"]],[22,23,["H3808"]],[23,25,["H376"]]]},{"k":6598,"v":[[0,2,["H4124"]],[2,4,["H3665"]],[4,5,["H1931"]],[5,6,["H3117"]],[6,7,["H8478"]],[7,9,["H3027"]],[9,11,["H3478"]],[11,14,["H776"]],[14,16,["H8252"]],[16,17,["H8084"]],[17,18,["H8141"]]]},{"k":6599,"v":[[0,2,["H310"]],[2,4,["H1961"]],[4,5,["H8044"]],[5,7,["H1121"]],[7,9,["H6067"]],[9,11,["H5221"]],[11,12,["(H853)"]],[12,14,["H6430"]],[14,15,["H8337"]],[15,16,["H3967"]],[16,17,["H376"]],[17,20,["H1241"]],[20,21,["H4451"]],[21,23,["H1931"]],[23,24,["H1571"]],[24,25,["H3467","(H853)"]],[25,26,["H3478"]]]},{"k":6600,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H3254"]],[6,7,["H6213"]],[7,8,["H7451"]],[8,11,["H5869"]],[11,14,["H3068"]],[14,16,["H261"]],[16,18,["H4191"]]]},{"k":6601,"v":[[0,3,["H3068"]],[3,4,["H4376"]],[4,8,["H3027"]],[8,10,["H2985"]],[10,11,["H4428"]],[11,13,["H3667"]],[13,14,["H834"]],[14,15,["H4427"]],[15,17,["H2674"]],[17,19,["H8269"]],[19,22,["H6635"]],[22,24,["H5516"]],[24,25,["H1931"]],[25,26,["H3427"]],[26,31,["H2800","H1471"]]]},{"k":6602,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6817"]],[6,7,["H413"]],[7,9,["H3068"]],[9,10,["H3588"]],[10,13,["H8672"]],[13,14,["H3967"]],[14,15,["H7393"]],[15,17,["H1270"]],[17,19,["H6242"]],[19,20,["H8141"]],[20,21,["H1931"]],[21,22,["H2393"]],[22,23,["H3905","(H853)"]],[23,25,["H1121"]],[25,27,["H3478"]]]},{"k":6603,"v":[[0,2,["H1683"]],[2,4,["H5031","H802"]],[4,6,["H802"]],[6,8,["H3941"]],[8,9,["H1931"]],[9,10,["H8199","(H853)"]],[10,11,["H3478"]],[11,13,["H1931"]],[13,14,["H6256"]]]},{"k":6604,"v":[[0,2,["H1931"]],[2,3,["H3427"]],[3,4,["H8478"]],[4,7,["H8560"]],[7,9,["H1683"]],[9,10,["H996"]],[10,11,["H7414"]],[11,13,["H1008"]],[13,15,["H2022"]],[15,16,["H669"]],[16,19,["H1121"]],[19,21,["H3478"]],[21,23,["H5927"]],[23,24,["H413"]],[24,27,["H4941"]]]},{"k":6605,"v":[[0,3,["H7971"]],[3,5,["H7121"]],[5,6,["H1301"]],[6,8,["H1121"]],[8,10,["H42"]],[10,13,["H4480","H6943","H5320"]],[13,15,["H559"]],[15,16,["H413"]],[16,19,["H3808"]],[19,21,["H3068"]],[21,22,["H430"]],[22,24,["H3478"]],[24,25,["H6680"]],[25,27,["H1980"]],[27,29,["H4900"]],[29,31,["H2022"]],[31,32,["H8396"]],[32,34,["H3947"]],[34,35,["H5973"]],[35,37,["H6235"]],[37,38,["H505"]],[38,39,["H376"]],[39,42,["H4480","H1121"]],[42,44,["H5321"]],[44,48,["H4480","H1121"]],[48,50,["H2074"]]]},{"k":6606,"v":[[0,4,["H4900"]],[4,5,["H413"]],[5,7,["H413"]],[7,9,["H5158"]],[9,10,["H7028","(H853)"]],[10,11,["H5516"]],[11,13,["H8269"]],[13,15,["H2985"]],[15,16,["H6635"]],[16,19,["H7393"]],[19,22,["H1995"]],[22,26,["H5414"]],[26,30,["H3027"]]]},{"k":6607,"v":[[0,2,["H1301"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H518"]],[6,9,["H1980"]],[9,10,["H5973"]],[10,15,["H1980"]],[15,17,["H518"]],[17,20,["H3808"]],[20,21,["H1980"]],[21,22,["H5973"]],[22,27,["H3808"]],[27,28,["H1980"]]]},{"k":6608,"v":[[0,3,["H559"]],[3,7,["H1980","H1980"]],[7,8,["H5973"]],[8,10,["H657"]],[10,12,["H1870"]],[12,13,["H834"]],[13,14,["H859"]],[14,15,["H1980"]],[15,17,["H3808"]],[17,18,["H1961"]],[18,21,["H8597"]],[21,22,["H3588"]],[22,24,["H3068"]],[24,26,["H4376","(H853)"]],[26,27,["H5516"]],[27,30,["H3027"]],[30,33,["H802"]],[33,35,["H1683"]],[35,36,["H6965"]],[36,38,["H1980"]],[38,39,["H5973"]],[39,40,["H1301"]],[40,42,["H6943"]]]},{"k":6609,"v":[[0,2,["H1301"]],[2,3,["H2199","(H853)"]],[3,4,["H2074"]],[4,6,["H5321"]],[6,8,["H6943"]],[8,12,["H5927"]],[12,14,["H6235"]],[14,15,["H505"]],[15,16,["H376"]],[16,19,["H7272"]],[19,21,["H1683"]],[21,23,["H5927"]],[23,24,["H5973"]],[24,25,[]]]},{"k":6610,"v":[[0,2,["H2268"]],[2,4,["H7014"]],[4,9,["H4480","H1121"]],[9,11,["H2246"]],[11,15,["H2859"]],[15,17,["H4872"]],[17,20,["H6504"]],[20,23,["H4480","H7017"]],[23,25,["H5186"]],[25,27,["H168"]],[27,28,["H5704"]],[28,30,["H436"]],[30,32,["H6815"]],[32,33,["H834"]],[33,35,["H854"]],[35,36,["H6943"]]]},{"k":6611,"v":[[0,3,["H5046"]],[3,4,["H5516"]],[4,5,["H3588"]],[5,6,["H1301"]],[6,8,["H1121"]],[8,10,["H42"]],[10,13,["H5927"]],[13,15,["H2022"]],[15,16,["H8396"]]]},{"k":6612,"v":[[0,2,["H5516"]],[2,4,["H2199","(H853)"]],[4,5,["H3605"]],[5,7,["H7393"]],[7,9,["H8672"]],[9,10,["H3967"]],[10,11,["H7393"]],[11,13,["H1270"]],[13,15,["H3605"]],[15,17,["H5971"]],[17,18,["H834"]],[18,20,["H854"]],[20,26,["H4480","H2800"]],[26,27,["H413"]],[27,29,["H5158"]],[29,31,["H7028"]]]},{"k":6613,"v":[[0,2,["H1683"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1301"]],[5,6,["H6965"]],[6,7,["H3588"]],[7,8,["H2088"]],[8,11,["H3117"]],[11,13,["H834"]],[13,15,["H3068"]],[15,17,["H5414","(H853)"]],[17,18,["H5516"]],[18,21,["H3027"]],[21,23,["H3808"]],[23,25,["H3068"]],[25,27,["H3318"]],[27,28,["H6440"]],[28,31,["H1301"]],[31,33,["H3381"]],[33,35,["H4480","H2022"]],[35,36,["H8396"]],[36,38,["H6235"]],[38,39,["H505"]],[39,40,["H376"]],[40,41,["H310"]],[41,42,[]]]},{"k":6614,"v":[[0,3,["H3068"]],[3,4,["H2000","(H853)"]],[4,5,["H5516"]],[5,7,["H3605"]],[7,9,["H7393"]],[9,11,["H3605"]],[11,13,["H4264"]],[13,16,["H6310"]],[16,19,["H2719"]],[19,20,["H6440"]],[20,21,["H1301"]],[21,24,["H5516"]],[24,26,["H3381"]],[26,27,["H4480","H5921"]],[27,29,["H4818"]],[29,32,["H5127"]],[32,35,["H7272"]]]},{"k":6615,"v":[[0,2,["H1301"]],[2,3,["H7291"]],[3,4,["H310"]],[4,6,["H7393"]],[6,8,["H310"]],[8,10,["H4264"]],[10,11,["H5704"]],[11,15,["H2800"]],[15,17,["H3605"]],[17,19,["H4264"]],[19,21,["H5516"]],[21,22,["H5307"]],[22,25,["H6310"]],[25,28,["H2719"]],[28,32,["H3808"]],[32,34,["H259"]],[34,35,["H7604"]]]},{"k":6616,"v":[[0,2,["H5516"]],[2,4,["H5127"]],[4,7,["H7272"]],[7,8,["H413"]],[8,10,["H168"]],[10,12,["H3278"]],[12,14,["H802"]],[14,16,["H2268"]],[16,18,["H7017"]],[18,19,["H3588"]],[19,22,["H7965"]],[22,23,["H996"]],[23,24,["H2985"]],[24,26,["H4428"]],[26,28,["H2674"]],[28,31,["H1004"]],[31,33,["H2268"]],[33,35,["H7017"]]]},{"k":6617,"v":[[0,2,["H3278"]],[2,4,["H3318"]],[4,6,["H7125"]],[6,7,["H5516"]],[7,9,["H559"]],[9,10,["H413"]],[10,13,["H5493"]],[13,15,["H113"]],[15,17,["H5493"]],[17,18,["H413"]],[18,20,["H3372"]],[20,21,["H408"]],[21,27,["H5493"]],[27,28,["H413"]],[28,32,["H168"]],[32,34,["H3680"]],[34,38,["H8063"]]]},{"k":6618,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,10,["H4994"]],[10,12,["H4592"]],[12,13,["H4325"]],[13,15,["H8248"]],[15,16,["H3588"]],[16,19,["H6770"]],[19,22,["H6605","(H853)"]],[22,24,["H4997"]],[24,26,["H2461"]],[26,30,["H8248"]],[30,32,["H3680"]],[32,33,[]]]},{"k":6619,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H5975"]],[6,9,["H6607"]],[9,12,["H168"]],[12,16,["H1961"]],[16,17,["H518"]],[17,19,["H376"]],[19,21,["H935"]],[21,23,["H7592"]],[23,27,["H559"]],[27,28,["H3426"]],[28,31,["H376"]],[31,32,["H6311"]],[32,36,["H559"]],[36,37,["H369"]]]},{"k":6620,"v":[[0,2,["H3278"]],[2,3,["H2268"]],[3,4,["H802"]],[4,5,["H3947","(H853)"]],[5,7,["H3489"]],[7,10,["H168"]],[10,12,["H7760","(H853)"]],[12,14,["H4718"]],[14,17,["H3027"]],[17,19,["H935"]],[19,20,["H3814"]],[20,21,["H413"]],[21,24,["H8628","(H853)"]],[24,26,["H3489"]],[26,29,["H7541"]],[29,31,["H6795"]],[31,35,["H776"]],[35,37,["H1931"]],[37,40,["H7290"]],[40,42,["H5774"]],[42,45,["H4191"]]]},{"k":6621,"v":[[0,2,["H2009"]],[2,4,["H1301"]],[4,5,["H7291","(H853)"]],[5,6,["H5516"]],[6,7,["H3278"]],[7,9,["H3318"]],[9,11,["H7125"]],[11,14,["H559"]],[14,17,["H1980"]],[17,21,["H7200"]],[21,22,["(H853)"]],[22,24,["H376"]],[24,25,["H834"]],[25,26,["H859"]],[26,27,["H1245"]],[27,31,["H935"]],[31,32,["H413"]],[32,35,["H2009"]],[35,36,["H5516"]],[36,37,["H5307"]],[37,38,["H4191"]],[38,41,["H3489"]],[41,45,["H7541"]]]},{"k":6622,"v":[[0,2,["H430"]],[2,3,["H3665"]],[3,5,["H1931"]],[5,6,["H3117","(H853)"]],[6,7,["H2985"]],[7,9,["H4428"]],[9,11,["H3667"]],[11,12,["H6440"]],[12,14,["H1121"]],[14,16,["H3478"]]]},{"k":6623,"v":[[0,3,["H3027"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,9,["H1980"]],[9,11,["H1980","H7186"]],[11,12,["H5921"]],[12,13,["H2985"]],[13,15,["H4428"]],[15,17,["H3667"]],[17,18,["H5704","H834"]],[18,21,["H3772","(H853)"]],[21,22,["H2985"]],[22,23,["H4428"]],[23,25,["H3667"]]]},{"k":6624,"v":[[0,2,["H7891"]],[2,3,["H1683"]],[3,5,["H1301"]],[5,7,["H1121"]],[7,9,["H42"]],[9,11,["H1931"]],[11,12,["H3117"]],[12,13,["H559"]]]},{"k":6625,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,7,["H6544","H6546"]],[7,9,["H3478"]],[9,12,["H5971"]],[12,15,["H5068"]]]},{"k":6626,"v":[[0,1,["H8085"]],[1,4,["H4428"]],[4,6,["H238"]],[6,9,["H7336"]],[9,10,["H595"]],[10,12,["H595"]],[12,14,["H7891"]],[14,17,["H3068"]],[17,20,["H2167"]],[20,24,["H3068"]],[24,25,["H430"]],[25,27,["H3478"]]]},{"k":6627,"v":[[0,1,["H3068"]],[1,5,["H3318"]],[5,7,["H4480","H8165"]],[7,10,["H6805"]],[10,14,["H4480","H7704"]],[14,16,["H123"]],[16,18,["H776"]],[18,19,["H7493"]],[19,20,["H1571"]],[20,22,["H8064"]],[22,23,["H5197"]],[23,25,["H5645"]],[25,26,["H1571"]],[26,27,["H5197"]],[27,28,["H4325"]]]},{"k":6628,"v":[[0,2,["H2022"]],[2,3,["H5140"]],[3,5,["H4480","H6440"]],[5,7,["H3068"]],[7,9,["H2088"]],[9,10,["H5514"]],[10,12,["H4480","H6440"]],[12,14,["H3068"]],[14,15,["H430"]],[15,17,["H3478"]]]},{"k":6629,"v":[[0,3,["H3117"]],[3,5,["H8044"]],[5,7,["H1121"]],[7,9,["H6067"]],[9,12,["H3117"]],[12,14,["H3278"]],[14,16,["H734"]],[16,18,["H2308"]],[18,21,["H1980","H5410"]],[21,22,["H1980"]],[22,24,["H734","H6128"]]]},{"k":6630,"v":[[0,5,["H6520"]],[5,6,["H2308"]],[6,8,["H2308"]],[8,10,["H3478"]],[10,12,["H5704"]],[12,14,["H1683"]],[14,15,["H7945","H6965"]],[15,18,["H6965"]],[18,20,["H517"]],[20,22,["H3478"]]]},{"k":6631,"v":[[0,2,["H977"]],[2,3,["H2319"]],[3,4,["H430"]],[4,5,["H227"]],[5,7,["H3901"]],[7,10,["H8179"]],[10,14,["H4043"]],[14,16,["H7420"]],[16,17,["H7200"]],[17,19,["H705"]],[19,20,["H505"]],[20,22,["H3478"]]]},{"k":6632,"v":[[0,2,["H3820"]],[2,6,["H2710"]],[6,8,["H3478"]],[8,12,["H5068"]],[12,15,["H5971"]],[15,16,["H1288"]],[16,19,["H3068"]]]},{"k":6633,"v":[[0,1,["H7878"]],[1,4,["H7392"]],[4,6,["H6715"]],[6,7,["H860"]],[7,10,["H3427"]],[10,11,["H5921"]],[11,12,["H4055"]],[12,14,["H1980"]],[14,15,["H5921"]],[15,17,["H1870"]]]},{"k":6634,"v":[[0,7,["H4480","H6963"]],[7,9,["H2686"]],[9,10,["H996"]],[10,15,["H4857"]],[15,16,["H8033"]],[16,19,["H8567"]],[19,22,["H6666"]],[22,25,["H3068"]],[25,29,["H6666"]],[29,35,["H6520"]],[35,37,["H3478"]],[37,38,["H227"]],[38,41,["H5971"]],[41,44,["H3068"]],[44,46,["H3381"]],[46,49,["H8179"]]]},{"k":6635,"v":[[0,1,["H5782"]],[1,2,["H5782"]],[2,3,["H1683"]],[3,4,["H5782"]],[4,5,["H5782"]],[5,6,["H1696"]],[6,8,["H7892"]],[8,9,["H6965"]],[9,10,["H1301"]],[10,15,["H7617","H7628"]],[15,17,["H1121"]],[17,19,["H42"]]]},{"k":6636,"v":[[0,1,["H227"]],[1,6,["H8300"]],[6,8,["H7287"]],[8,11,["H117"]],[11,14,["H5971"]],[14,16,["H3068"]],[16,20,["H7287"]],[20,23,["H1368"]]]},{"k":6637,"v":[[0,2,["H4480"]],[2,3,["H669"]],[3,7,["H8328"]],[7,11,["H6002"]],[11,12,["H310"]],[12,14,["H1144"]],[14,17,["H5971"]],[17,19,["H4480"]],[19,20,["H4353"]],[20,22,["H3381"]],[22,23,["H2710"]],[23,27,["H4480","H2074"]],[27,30,["H4900"]],[30,32,["H7626"]],[32,35,["H5608"]]]},{"k":6638,"v":[[0,3,["H8269"]],[3,5,["H3485"]],[5,7,["H5973"]],[7,8,["H1683"]],[8,10,["H3485"]],[10,12,["H3651"]],[12,13,["H1301"]],[13,16,["H7971"]],[16,18,["H7272"]],[18,21,["H6010"]],[21,24,["H6391"]],[24,26,["H7205"]],[26,29,["H1419"]],[29,30,["H2711"]],[30,32,["H3820"]]]},{"k":6639,"v":[[0,1,["H4100"]],[1,2,["H3427"]],[2,4,["H996"]],[4,6,["H4942"]],[6,8,["H8085"]],[8,10,["H8292"]],[10,13,["H5739"]],[13,16,["H6391"]],[16,18,["H7205"]],[18,21,["H1419"]],[21,22,["H2714"]],[22,24,["H3820"]]]},{"k":6640,"v":[[0,1,["H1568"]],[1,2,["H7931"]],[2,3,["H5676"]],[3,4,["H3383"]],[4,6,["H4100"]],[6,8,["H1835"]],[8,9,["H1481"]],[9,11,["H591"]],[11,12,["H836"]],[12,13,["H3427"]],[13,16,["H3220"]],[16,17,["H2348"]],[17,19,["H7931"]],[19,20,["H5921"]],[20,22,["H4664"]]]},{"k":6641,"v":[[0,1,["H2074"]],[1,3,["H5321"]],[3,6,["H5971"]],[6,8,["H2778"]],[8,10,["H5315"]],[10,13,["H4191"]],[13,14,["H5921"]],[14,17,["H4791"]],[17,20,["H7704"]]]},{"k":6642,"v":[[0,2,["H4428"]],[2,3,["H935"]],[3,5,["H3898"]],[5,6,["H227"]],[6,7,["H3898"]],[7,9,["H4428"]],[9,11,["H3667"]],[11,13,["H8590"]],[13,14,["H5921"]],[14,16,["H4325"]],[16,18,["H4023"]],[18,20,["H3947"]],[20,21,["H3808"]],[21,22,["H1214"]],[22,24,["H3701"]]]},{"k":6643,"v":[[0,2,["H3898"]],[2,3,["H4480"]],[3,4,["H8064"]],[4,6,["H3556"]],[6,9,["H4480","H4546"]],[9,10,["H3898"]],[10,11,["H5973"]],[11,12,["H5516"]]]},{"k":6644,"v":[[0,2,["H5158"]],[2,4,["H7028"]],[4,7,["H1640"]],[7,9,["H6917"]],[9,10,["H5158"]],[10,12,["H5158"]],[12,13,["H7028"]],[13,16,["H5315"]],[16,20,["H1869"]],[20,21,["H5797"]]]},{"k":6645,"v":[[0,1,["H227"]],[1,4,["H5483","H6119"]],[4,5,["H1986"]],[5,11,["H4480","H1726"]],[11,13,["H1726"]],[13,17,["H47"]]]},{"k":6646,"v":[[0,1,["H779"]],[1,3,["H4789"]],[3,4,["H559"]],[4,6,["H4397"]],[6,9,["H3068"]],[9,12,["H779","H779"]],[12,14,["H3427"]],[14,16,["H3588"]],[16,18,["H935"]],[18,19,["H3808"]],[19,22,["H5833"]],[22,25,["H3068"]],[25,28,["H5833"]],[28,31,["H3068"]],[31,34,["H1368"]]]},{"k":6647,"v":[[0,1,["H1288"]],[1,3,["H4480","H802"]],[3,5,["H3278"]],[5,7,["H802"]],[7,9,["H2268"]],[9,11,["H7017"]],[11,13,["H1288"]],[13,18,["H4480","H802"]],[18,21,["H168"]]]},{"k":6648,"v":[[0,2,["H7592"]],[2,3,["H4325"]],[3,6,["H5414"]],[6,8,["H2461"]],[8,11,["H7126"]],[11,12,["H2529"]],[12,15,["H117"]],[15,16,["H5602"]]]},{"k":6649,"v":[[0,2,["H7971"]],[2,4,["H3027"]],[4,7,["H3489"]],[7,11,["H3225"]],[11,14,["H6001"]],[14,15,["H1989"]],[15,21,["H1986"]],[21,22,["H5516"]],[22,25,["H4277"]],[25,27,["H7218"]],[27,31,["H4272"]],[31,34,["H2498"]],[34,36,["H7541"]]]},{"k":6650,"v":[[0,1,["H996"]],[1,3,["H7272"]],[3,5,["H3766"]],[5,7,["H5307"]],[7,10,["H7901"]],[10,11,["H996"]],[11,13,["H7272"]],[13,15,["H3766"]],[15,17,["H5307"]],[17,18,["H834"]],[18,20,["H3766"]],[20,21,["H8033"]],[21,24,["H5307"]],[24,25,["H7703"]]]},{"k":6651,"v":[[0,2,["H517"]],[2,4,["H5516"]],[4,6,["H8259"]],[6,7,["H1157"]],[7,9,["H2474"]],[9,11,["H2980"]],[11,12,["H1157"]],[12,14,["H822"]],[14,15,["H4069"]],[15,16,["H954"]],[16,18,["H7393"]],[18,20,["H954"]],[20,22,["H935"]],[22,23,["H4069"]],[23,24,["H309"]],[24,26,["H6471"]],[26,29,["H4818"]]]},{"k":6652,"v":[[0,2,["H2450"]],[2,3,["H8282"]],[3,4,["H6030"]],[4,6,["H637"]],[6,7,["H1931"]],[7,8,["H7725"]],[8,9,["H561"]],[9,11,[]]]},{"k":6653,"v":[[0,3,["H3808"]],[3,4,["H4672"]],[4,8,["H2505"]],[8,10,["H7998"]],[10,12,["H7218"]],[12,13,["H1397"]],[13,15,["H7356"]],[15,17,["H7361"]],[17,19,["H5516"]],[19,21,["H7998"]],[21,24,["H6648"]],[24,26,["H7998"]],[26,29,["H6648"]],[29,31,["H7553"]],[31,34,["H6648"]],[34,36,["H7553"]],[36,43,["H6677"]],[43,49,["H7998"]]]},{"k":6654,"v":[[0,1,["H3651"]],[1,3,["H3605"]],[3,5,["H341"]],[5,6,["H6"]],[6,8,["H3068"]],[8,13,["H157"]],[13,18,["H8121"]],[18,22,["H3318"]],[22,25,["H1369"]],[25,28,["H776"]],[28,30,["H8252"]],[30,31,["H705"]],[31,32,["H8141"]]]},{"k":6655,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3068"]],[16,17,["H5414"]],[17,21,["H3027"]],[21,23,["H4080"]],[23,24,["H7651"]],[24,25,["H8141"]]]},{"k":6656,"v":[[0,3,["H3027"]],[3,5,["H4080"]],[5,6,["H5810"]],[6,7,["H5921"]],[7,8,["H3478"]],[8,10,["H4480","H6440"]],[10,13,["H4080"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,18,["H6213"]],[18,19,["(H853)"]],[19,21,["H4492"]],[21,22,["H834"]],[22,26,["H2022"]],[26,28,["H4631"]],[28,31,["H4679"]]]},{"k":6657,"v":[[0,4,["H1961"]],[4,5,["H518"]],[5,6,["H3478"]],[6,8,["H2232"]],[8,11,["H4080"]],[11,13,["H5927"]],[13,16,["H6003"]],[16,19,["H1121"]],[19,22,["H6924"]],[22,26,["H5927"]],[26,27,["H5921"]],[27,28,[]]]},{"k":6658,"v":[[0,3,["H2583"]],[3,4,["H5921"]],[4,7,["H7843","(H853)"]],[7,9,["H2981"]],[9,12,["H776"]],[12,13,["H5704"]],[13,15,["H935"]],[15,17,["H5804"]],[17,19,["H7604"]],[19,20,["H3808"]],[20,21,["H4241"]],[21,23,["H3478"]],[23,25,["H7716"]],[25,27,["H7794"]],[27,29,["H2543"]]]},{"k":6659,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,4,["H5927"]],[4,7,["H4735"]],[7,10,["H168"]],[10,13,["H935"]],[13,14,["H1992"]],[14,15,["H697"]],[15,17,["H7230"]],[17,20,["H1992"]],[20,23,["H1581"]],[23,25,["H369"]],[25,26,["H4557"]],[26,29,["H935"]],[29,32,["H776"]],[32,34,["H7843"]],[34,35,[]]]},{"k":6660,"v":[[0,2,["H3478"]],[2,4,["H3966"]],[4,5,["H1809"]],[5,6,["H4480","H6440"]],[6,9,["H4080"]],[9,12,["H1121"]],[12,14,["H3478"]],[14,15,["H2199"]],[15,16,["H413"]],[16,18,["H3068"]]]},{"k":6661,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,11,["H2199"]],[11,12,["H413"]],[12,14,["H3068"]],[14,16,["H5921","H182"]],[16,18,["H4080"]]]},{"k":6662,"v":[[0,3,["H3068"]],[3,4,["H7971"]],[4,6,["H5030"]],[6,7,["H413"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,13,["H559"]],[13,16,["H3541"]],[16,17,["H559"]],[17,19,["H3068"]],[19,20,["H430"]],[20,22,["H3478"]],[22,23,["H595"]],[23,26,["H5927","(H853)"]],[26,28,["H4480","H4714"]],[28,32,["H3318","(H853)"]],[32,36,["H4480","H1004"]],[36,38,["H5650"]]]},{"k":6663,"v":[[0,3,["H5337"]],[3,8,["H4480","H3027"]],[8,11,["H4714"]],[11,16,["H4480","H3027"]],[16,18,["H3605"]],[18,20,["H3905"]],[20,25,["H1644","(H853)"]],[25,27,["H4480","H6440"]],[27,30,["H5414"]],[30,31,["(H853)"]],[31,33,["H776"]]]},{"k":6664,"v":[[0,3,["H559"]],[3,6,["H589"]],[6,9,["H3068"]],[9,11,["H430"]],[11,12,["H3372"]],[12,13,["H3808","(H853)"]],[13,15,["H430"]],[15,18,["H567"]],[18,20,["H834"]],[20,21,["H776"]],[21,22,["H859"]],[22,23,["H3427"]],[23,27,["H3808"]],[27,28,["H8085"]],[28,30,["H6963"]]]},{"k":6665,"v":[[0,3,["H935"]],[3,5,["H4397"]],[5,8,["H3068"]],[8,10,["H3427"]],[10,11,["H8478"]],[11,13,["H424"]],[13,14,["H834"]],[14,17,["H6084"]],[17,18,["H834"]],[18,21,["H3101"]],[21,23,["H33"]],[23,26,["H1121"]],[26,27,["H1439"]],[27,28,["H2251"]],[28,29,["H2406"]],[29,32,["H1660"]],[32,34,["H5127"]],[34,36,["H4480","H6440"]],[36,38,["H4080"]]]},{"k":6666,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H7200"]],[7,8,["H413"]],[8,11,["H559"]],[11,12,["H413"]],[12,15,["H3068"]],[15,17,["H5973"]],[17,21,["H1368"]],[21,23,["H2428"]]]},{"k":6667,"v":[[0,2,["H1439"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H994"]],[6,8,["H113"]],[8,11,["H3068"]],[11,12,["H3426"]],[12,13,["H5973"]],[13,15,["H4100"]],[15,18,["H3605"]],[18,19,["H2063"]],[19,20,["H4672"]],[20,23,["H346"]],[23,25,["H3605"]],[25,27,["H6381"]],[27,28,["H834"]],[28,30,["H1"]],[30,31,["H5608"]],[31,34,["H559"]],[34,36,["H3808"]],[36,38,["H3068"]],[38,41,["H5927"]],[41,43,["H4480","H4714"]],[43,45,["H6258"]],[45,47,["H3068"]],[47,49,["H5203"]],[49,52,["H5414"]],[52,56,["H3709"]],[56,59,["H4080"]]]},{"k":6668,"v":[[0,3,["H3068"]],[3,4,["H6437"]],[4,5,["H413"]],[5,8,["H559"]],[8,10,["H1980"]],[10,11,["H2088"]],[11,13,["H3581"]],[13,17,["H3467","(H853)"]],[17,18,["H3478"]],[18,21,["H4480","H3709"]],[21,24,["H4080"]],[24,26,["H3808"]],[26,28,["H7971"]],[28,29,[]]]},{"k":6669,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H994"]],[6,8,["H136"]],[8,9,["H4100"]],[9,12,["H3467","(H853)"]],[12,13,["H3478"]],[13,14,["H2009"]],[14,16,["H504"]],[16,18,["H1800"]],[18,20,["H4519"]],[20,22,["H595"]],[22,25,["H6810"]],[25,28,["H1"]],[28,29,["H1004"]]]},{"k":6670,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H3588"]],[7,10,["H1961"]],[10,11,["H5973"]],[11,16,["H5221","(H853)"]],[16,18,["H4080"]],[18,20,["H259"]],[20,21,["H376"]]]},{"k":6671,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H518"]],[6,7,["H4994"]],[7,10,["H4672"]],[10,11,["H2580"]],[11,14,["H5869"]],[14,16,["H6213"]],[16,19,["H226"]],[19,21,["H7945","H859"]],[21,22,["H1696"]],[22,23,["H5973"]],[23,24,[]]]},{"k":6672,"v":[[0,1,["H4185"]],[1,2,["H408"]],[2,3,["H4480","H2088"]],[3,6,["H4994"]],[6,7,["H5704"]],[7,9,["H935"]],[9,10,["H413"]],[10,14,["H3318","(H853)"]],[14,16,["H4503"]],[16,18,["H5117"]],[18,20,["H6440"]],[20,24,["H559"]],[24,25,["H595"]],[25,27,["H3427"]],[27,28,["H5704"]],[28,31,["H7725"]]]},{"k":6673,"v":[[0,2,["H1439"]],[2,4,["H935"]],[4,7,["H6213"]],[7,9,["H1423","H5795"]],[9,12,["H4682"]],[12,15,["H374"]],[15,17,["H7058"]],[17,19,["H1320"]],[19,21,["H7760"]],[21,24,["H5536"]],[24,27,["H7760"]],[27,29,["H4839"]],[29,32,["H6517"]],[32,36,["H3318"]],[36,37,["H413"]],[37,39,["H413","H8478"]],[39,41,["H424"]],[41,43,["H5066"]],[43,44,[]]]},{"k":6674,"v":[[0,3,["H4397"]],[3,5,["H430"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H3947","(H853)"]],[9,11,["H1320"]],[11,15,["H4682"]],[15,17,["H5117"]],[17,19,["H413"]],[19,20,["H1975"]],[20,21,["H5553"]],[21,24,["H8210"]],[24,26,["H4839"]],[26,29,["H6213"]],[29,30,["H3651"]]]},{"k":6675,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,8,["H7971","(H853)"]],[8,10,["H7097"]],[10,13,["H4938"]],[13,14,["H834"]],[14,18,["H3027"]],[18,20,["H5060"]],[20,22,["H1320"]],[22,26,["H4682"]],[26,30,["H5927"]],[30,31,["H784"]],[31,33,["H4480"]],[33,35,["H6697"]],[35,37,["H398","(H853)"]],[37,39,["H1320"]],[39,43,["H4682"]],[43,46,["H4397"]],[46,49,["H3068"]],[49,50,["H1980"]],[50,54,["H4480","H5869"]]]},{"k":6676,"v":[[0,3,["H1439"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,6,["H1931"]],[6,9,["H4397"]],[9,12,["H3068"]],[12,13,["H1439"]],[13,14,["H559"]],[14,15,["H162"]],[15,17,["H136"]],[17,18,["H3069"]],[18,19,["H3588"]],[19,20,["H5921","H3651"]],[20,23,["H7200"]],[23,25,["H4397"]],[25,28,["H3068"]],[28,29,["H6440"]],[29,30,["H413"]],[30,31,["H6440"]]]},{"k":6677,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,7,["H7965"]],[7,11,["H3372"]],[11,12,["H408"]],[12,15,["H3808"]],[15,16,["H4191"]]]},{"k":6678,"v":[[0,2,["H1439"]],[2,3,["H1129"]],[3,5,["H4196"]],[5,6,["H8033"]],[6,9,["H3068"]],[9,11,["H7121"]],[11,13,["H3073"]],[13,14,["H5704"]],[14,15,["H2088"]],[15,16,["H3117"]],[16,19,["H5750"]],[19,21,["H6084"]],[21,24,["H33"]]]},{"k":6679,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,8,["H3915"]],[8,11,["H3068"]],[11,12,["H559"]],[12,15,["H3947","(H853)"]],[15,17,["H1"]],[17,19,["H6499","H7794"]],[19,22,["H8145"]],[22,23,["H6499"]],[23,25,["H7651"]],[25,26,["H8141"]],[26,30,["H2040","(H853)"]],[30,32,["H4196"]],[32,34,["H1168"]],[34,35,["H834"]],[35,37,["H1"]],[37,41,["H3772"]],[41,43,["H842"]],[43,44,["H834"]],[44,46,["H5921"]],[46,47,[]]]},{"k":6680,"v":[[0,2,["H1129"]],[2,4,["H4196"]],[4,7,["H3068"]],[7,9,["H430"]],[9,10,["H5921"]],[10,12,["H7218"]],[12,14,["H2088"]],[14,15,["H4581"]],[15,19,["H4634"]],[19,21,["H3947","(H853)"]],[21,23,["H8145"]],[23,24,["H6499"]],[24,26,["H5927"]],[26,29,["H5930"]],[29,32,["H6086"]],[32,35,["H842"]],[35,36,["H834"]],[36,40,["H3772"]]]},{"k":6681,"v":[[0,2,["H1439"]],[2,3,["H3947"]],[3,4,["H6235"]],[4,5,["H376"]],[5,8,["H4480","H5650"]],[8,10,["H6213"]],[10,11,["H834"]],[11,13,["H3068"]],[13,15,["H1696"]],[15,16,["H413"]],[16,21,["H1961"]],[21,22,["H834"]],[22,24,["H3372","(H853)"]],[24,26,["H1"]],[26,27,["H1004"]],[27,30,["H376"]],[30,33,["H5892"]],[33,38,["H4480","H6213"]],[38,41,["H3119"]],[41,44,["H6213"]],[44,47,["H3915"]]]},{"k":6682,"v":[[0,4,["H376"]],[4,7,["H5892"]],[7,9,["H7925"]],[9,12,["H1242"]],[12,13,["H2009"]],[13,15,["H4196"]],[15,17,["H1168"]],[17,20,["H5422"]],[20,23,["H842"]],[23,26,["H3772"]],[26,27,["H834"]],[27,29,["H5921"]],[29,33,["H8145"]],[33,34,["H6499"]],[34,36,["H5927"]],[36,37,["H5921"]],[37,39,["H4196"]],[39,42,["H1129"]]]},{"k":6683,"v":[[0,3,["H559"]],[3,4,["H376"]],[4,5,["H413"]],[5,6,["H7453"]],[6,7,["H4310"]],[7,9,["H6213"]],[9,10,["H2088"]],[10,11,["H1697"]],[11,15,["H1875"]],[15,17,["H1245"]],[17,19,["H559"]],[19,20,["H1439"]],[20,22,["H1121"]],[22,24,["H3101"]],[24,26,["H6213"]],[26,27,["H2088"]],[27,28,["H1697"]]]},{"k":6684,"v":[[0,3,["H376"]],[3,6,["H5892"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H3101"]],[9,11,["H3318","(H853)"]],[11,13,["H1121"]],[13,17,["H4191"]],[17,18,["H3588"]],[18,22,["H5422","(H853)"]],[22,24,["H4196"]],[24,26,["H1168"]],[26,28,["H3588"]],[28,32,["H3772"]],[32,34,["H842"]],[34,35,["H834"]],[35,37,["H5921"]],[37,38,[]]]},{"k":6685,"v":[[0,2,["H3101"]],[2,3,["H559"]],[3,5,["H3605"]],[5,6,["H834"]],[6,7,["H5975"]],[7,8,["H5921"]],[8,11,["H859"]],[11,12,["H7378"]],[12,14,["H1168"]],[14,16,["H859"]],[16,17,["H3467"]],[17,20,["H834"]],[20,22,["H7378"]],[22,30,["H4191"]],[30,31,["H5704"]],[31,35,["H1242"]],[35,36,["H518"]],[36,37,["H1931"]],[37,40,["H430"]],[40,43,["H7378"]],[43,46,["H3588"]],[46,50,["H5422","(H853)"]],[50,52,["H4196"]]]},{"k":6686,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,6,["H7121"]],[6,8,["H3378"]],[8,9,["H559"]],[9,11,["H1168"]],[11,12,["H7378"]],[12,15,["H3588"]],[15,19,["H5422","(H853)"]],[19,21,["H4196"]]]},{"k":6687,"v":[[0,2,["H3605"]],[2,4,["H4080"]],[4,7,["H6003"]],[7,10,["H1121"]],[10,13,["H6924"]],[13,15,["H622"]],[15,16,["H3162"]],[16,19,["H5674"]],[19,21,["H2583"]],[21,24,["H6010"]],[24,26,["H3157"]]]},{"k":6688,"v":[[0,3,["H7307"]],[3,6,["H3068"]],[6,8,["H3847","(H853)"]],[8,9,["H1439"]],[9,12,["H8628"]],[12,14,["H7782"]],[14,16,["H44"]],[16,18,["H2199"]],[18,19,["H310"]],[19,20,[]]]},{"k":6689,"v":[[0,3,["H7971"]],[3,4,["H4397"]],[4,6,["H3605"]],[6,7,["H4519"]],[7,8,["H1931"]],[8,9,["H1571"]],[9,11,["H2199"]],[11,12,["H310"]],[12,16,["H7971"]],[16,17,["H4397"]],[17,19,["H836"]],[19,22,["H2074"]],[22,25,["H5321"]],[25,29,["H5927"]],[29,31,["H7125"]],[31,32,[]]]},{"k":6690,"v":[[0,2,["H1439"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H430"]],[5,6,["H518"]],[6,7,["(H3426)"]],[7,9,["H3467","(H853)"]],[9,10,["H3478"]],[10,13,["H3027"]],[13,14,["H834"]],[14,17,["H1696"]]]},{"k":6691,"v":[[0,1,["H2009"]],[1,2,["H595"]],[2,4,["H3322","(H853)"]],[4,6,["H1492"]],[6,8,["H6785"]],[8,11,["H1637"]],[11,13,["H518"]],[13,15,["H2919"]],[15,16,["H1961"]],[16,17,["H5921"]],[17,19,["H1492"]],[19,20,["H905"]],[20,24,["H2721"]],[24,25,["H5921"]],[25,26,["H3605"]],[26,28,["H776"]],[28,33,["H3045"]],[33,34,["H3588"]],[34,37,["H3467","(H853)"]],[37,38,["H3478"]],[38,41,["H3027"]],[41,42,["H834"]],[42,45,["H1696"]]]},{"k":6692,"v":[[0,3,["H1961"]],[3,4,["H3651"]],[4,9,["H7925"]],[9,12,["H4480","H4283"]],[12,14,["H2115","(H853)"]],[14,16,["H1492"]],[16,17,["H2115"]],[17,19,["H4680"]],[19,21,["H2919"]],[21,23,["H4480"]],[23,25,["H1492"]],[25,27,["H5602"]],[27,28,["H4392"]],[28,30,["H4325"]]]},{"k":6693,"v":[[0,2,["H1439"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H430"]],[5,7,["H408"]],[7,9,["H639"]],[9,11,["H2734"]],[11,17,["H1696"]],[17,18,["H389"]],[18,20,["H6471"]],[20,23,["H5254"]],[23,26,["H4994"]],[26,27,["H7535"]],[27,29,["H6471"]],[29,32,["H1492"]],[32,35,["H4994"]],[35,36,["H1961"]],[36,37,["H2721"]],[37,38,["H905"]],[38,39,["H413"]],[39,41,["H1492"]],[41,43,["H5921"]],[43,44,["H3605"]],[44,46,["H776"]],[46,49,["H1961"]],[49,50,["H2919"]]]},{"k":6694,"v":[[0,2,["H430"]],[2,3,["H6213"]],[3,4,["H3651"]],[4,5,["H1931"]],[5,6,["H3915"]],[6,9,["H1961"]],[9,10,["H2721"]],[10,11,["H413"]],[11,13,["H1492"]],[13,14,["H905"]],[14,17,["H1961"]],[17,18,["H2919"]],[18,19,["H5921"]],[19,20,["H3605"]],[20,22,["H776"]]]},{"k":6695,"v":[[0,2,["H3378"]],[2,3,["H1931"]],[3,5,["H1439"]],[5,7,["H3605"]],[7,9,["H5971"]],[9,10,["H834"]],[10,12,["H854"]],[12,16,["H7925"]],[16,18,["H2583"]],[18,19,["H5921"]],[19,21,["H5878"]],[21,23,["H5878"]],[23,27,["H4264"]],[27,30,["H4080"]],[30,31,["H1961"]],[31,35,["H4480","H6828"]],[35,40,["H4480","H1389"]],[40,42,["H4176"]],[42,45,["H6010"]]]},{"k":6696,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H1439"]],[6,8,["H5971"]],[8,9,["H834"]],[9,11,["H854"]],[11,15,["H7227"]],[15,19,["H5414","(H853)"]],[19,21,["H4080"]],[21,24,["H3027"]],[24,25,["H6435"]],[25,26,["H3478"]],[26,28,["H6286"]],[28,29,["H5921"]],[29,31,["H559"]],[31,34,["H3027"]],[34,36,["H3467"]],[36,37,[]]]},{"k":6697,"v":[[0,1,["H6258"]],[1,4,["H4994"]],[4,5,["H7121"]],[5,8,["H241"]],[8,11,["H5971"]],[11,12,["H559"]],[12,13,["H4310"]],[13,15,["H3373"]],[15,17,["H2730"]],[17,20,["H7725"]],[20,23,["H6852"]],[23,25,["H4480","H2022"]],[25,26,["H1568"]],[26,29,["H7725"]],[29,30,["H4480"]],[30,32,["H5971"]],[32,33,["H6242"]],[33,35,["H8147"]],[35,36,["H505"]],[36,39,["H7604"]],[39,40,["H6235"]],[40,41,["H505"]]]},{"k":6698,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H1439"]],[6,8,["H5971"]],[8,10,["H5750"]],[10,12,["H7227"]],[12,15,["H3381","(H853)"]],[15,16,["H413"]],[16,18,["H4325"]],[18,22,["H6884"]],[22,26,["H8033"]],[26,30,["H1961"]],[30,33,["H834"]],[33,35,["H559"]],[35,36,["H413"]],[36,38,["H2088"]],[38,40,["H1980"]],[40,41,["H854"]],[41,44,["H1931"]],[44,46,["H1980"]],[46,47,["H854"]],[47,51,["H3605","H834"]],[51,53,["H559"]],[53,54,["H413"]],[54,56,["H2088"]],[56,58,["H3808"]],[58,59,["H1980"]],[59,60,["H5973"]],[60,63,["H1931"]],[63,65,["H3808"]],[65,66,["H1980"]]]},{"k":6699,"v":[[0,4,["H3381","(H853)"]],[4,6,["H5971"]],[6,7,["H413"]],[7,9,["H4325"]],[9,12,["H3068"]],[12,13,["H559"]],[13,14,["H413"]],[14,15,["H1439"]],[15,17,["H3605"]],[17,18,["H834"]],[18,19,["H3952"]],[19,20,["H4480"]],[20,22,["H4325"]],[22,25,["H3956"]],[25,26,["H834"]],[26,28,["H3611"]],[28,29,["H3952"]],[29,33,["H3322"]],[33,35,["H905"]],[35,38,["H3605"]],[38,39,["H834"]],[39,41,["H3766"]],[41,42,["H5921"]],[42,44,["H1290"]],[44,46,["H8354"]]]},{"k":6700,"v":[[0,3,["H4557"]],[3,7,["H3952"]],[7,10,["H3027"]],[10,11,["H413"]],[11,13,["H6310"]],[13,14,["H1961"]],[14,15,["H7969"]],[15,16,["H3967"]],[16,17,["H376"]],[17,19,["H3605"]],[19,21,["H3499"]],[21,24,["H5971"]],[24,26,["H3766"]],[26,27,["H5921"]],[27,29,["H1290"]],[29,31,["H8354"]],[31,32,["H4325"]]]},{"k":6701,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H1439"]],[6,9,["H7969"]],[9,10,["H3967"]],[10,11,["H376"]],[11,13,["H3952"]],[13,16,["H3467"]],[16,19,["H5414","(H853)"]],[19,21,["H4080"]],[21,24,["H3027"]],[24,27,["H3605"]],[27,30,["H5971"]],[30,31,["H1980"]],[31,33,["H376"]],[33,36,["H4725"]]]},{"k":6702,"v":[[0,3,["H5971"]],[3,4,["H3947","(H853)"]],[4,5,["H6720"]],[5,8,["H3027"]],[8,11,["H7782"]],[11,14,["H7971"]],[14,15,["H3605"]],[15,19,["H3478"]],[19,21,["H376"]],[21,24,["H168"]],[24,26,["H2388"]],[26,28,["H7969"]],[28,29,["H3967"]],[29,30,["H376"]],[30,33,["H4264"]],[33,35,["H4080"]],[35,36,["H1961"]],[36,37,["H4480","H8478"]],[37,41,["H6010"]]]},{"k":6703,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,8,["H3915"]],[8,11,["H3068"]],[11,12,["H559"]],[12,13,["H413"]],[13,15,["H6965"]],[15,18,["H3381"]],[18,21,["H4264"]],[21,22,["H3588"]],[22,25,["H5414"]],[25,29,["H3027"]]]},{"k":6704,"v":[[0,2,["H518"]],[2,3,["H859"]],[3,4,["H3372"]],[4,7,["H3381"]],[7,8,["H3381"]],[8,9,["H859"]],[9,11,["H6513"]],[11,13,["H5288"]],[13,14,["H3381"]],[14,15,["H413"]],[15,17,["H4264"]]]},{"k":6705,"v":[[0,4,["H8085"]],[4,5,["H4100"]],[5,7,["H1696"]],[7,9,["H310"]],[9,12,["H3027"]],[12,14,["H2388"]],[14,17,["H3381"]],[17,20,["H4264"]],[20,24,["H3381"]],[24,26,["H6513"]],[26,28,["H5288"]],[28,29,["H413"]],[29,31,["H7097"]],[31,35,["H2571"]],[35,36,["H834"]],[36,40,["H4264"]]]},{"k":6706,"v":[[0,3,["H4080"]],[3,6,["H6003"]],[6,8,["H3605"]],[8,10,["H1121"]],[10,13,["H6924"]],[13,14,["H5307"]],[14,18,["H6010"]],[18,20,["H697"]],[20,22,["H7230"]],[22,25,["H1581"]],[25,27,["H369"]],[27,28,["H4557"]],[28,31,["H2344"]],[31,32,["H7945","H5921"]],[32,34,["H3220"]],[34,35,["H8193"]],[35,37,["H7230"]]]},{"k":6707,"v":[[0,3,["H1439"]],[3,5,["H935"]],[5,6,["H2009"]],[6,10,["H376"]],[10,12,["H5608"]],[12,14,["H2472"]],[14,17,["H7453"]],[17,19,["H559"]],[19,20,["H2009"]],[20,22,["H2492"]],[22,24,["H2472"]],[24,26,["H2009"]],[26,28,["H6742"]],[28,30,["H8184"]],[30,31,["H3899"]],[31,32,["H2015"]],[32,35,["H4264"]],[35,37,["H4080"]],[37,39,["H935"]],[39,40,["H5704"]],[40,42,["H168"]],[42,44,["H5221"]],[44,48,["H5307"]],[48,50,["H2015","H4605"]],[50,54,["H168"]],[54,56,["H5307"]]]},{"k":6708,"v":[[0,3,["H7453"]],[3,4,["H6030"]],[4,6,["H559"]],[6,7,["H2063"]],[7,10,["H369"]],[10,11,["H1115","H518"]],[11,13,["H2719"]],[13,15,["H1439"]],[15,17,["H1121"]],[17,19,["H3101"]],[19,21,["H376"]],[21,23,["H3478"]],[23,27,["H3027"]],[27,29,["H430"]],[29,30,["H5414","(H853)"]],[30,31,["H4080"]],[31,33,["H3605"]],[33,35,["H4264"]]]},{"k":6709,"v":[[0,3,["H1961"]],[3,6,["H1439"]],[6,7,["H8085","(H853)"]],[7,9,["H4557"]],[9,12,["H2472"]],[12,15,["H7667"]],[15,19,["H7812"]],[19,21,["H7725"]],[21,22,["H413"]],[22,24,["H4264"]],[24,26,["H3478"]],[26,28,["H559"]],[28,29,["H6965"]],[29,30,["H3588"]],[30,32,["H3068"]],[32,34,["H5414"]],[34,37,["H3027","(H853)"]],[37,39,["H4264"]],[39,41,["H4080"]]]},{"k":6710,"v":[[0,3,["H2673","(H853)"]],[3,5,["H7969"]],[5,6,["H3967"]],[6,7,["H376"]],[7,9,["H7969"]],[9,10,["H7218"]],[10,13,["H5414"]],[13,15,["H7782"]],[15,18,["H3605"]],[18,19,["H3027"]],[19,21,["H7386"]],[21,22,["H3537"]],[22,24,["H3940"]],[24,25,["H8432"]],[25,27,["H3537"]]]},{"k":6711,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H7200"]],[6,7,["H4480"]],[7,10,["H6213"]],[10,11,["H3651"]],[11,13,["H2009"]],[13,15,["H595"]],[15,16,["H935"]],[16,19,["H7097"]],[19,22,["H4264"]],[22,25,["H1961"]],[25,27,["H834"]],[27,29,["H6213"]],[29,30,["H3651"]],[30,33,["H6213"]]]},{"k":6712,"v":[[0,3,["H8628"]],[3,6,["H7782"]],[6,7,["H595"]],[7,9,["H3605"]],[9,10,["H834"]],[10,12,["H854"]],[12,15,["H8628"]],[15,16,["H859"]],[16,18,["H7782"]],[18,19,["H1571"]],[19,22,["H5439"]],[22,24,["H3605"]],[24,26,["H4264"]],[26,28,["H559"]],[28,33,["H3068"]],[33,36,["H1439"]]]},{"k":6713,"v":[[0,2,["H1439"]],[2,5,["H3967"]],[5,6,["H376"]],[6,7,["H834"]],[7,9,["H854"]],[9,11,["H935"]],[11,14,["H7097"]],[14,17,["H4264"]],[17,20,["H7218"]],[20,23,["H8484"]],[23,24,["H821"]],[24,28,["H389"]],[28,30,["H6965","H6965","(H853)"]],[30,32,["H8104"]],[32,35,["H8628"]],[35,37,["H7782"]],[37,39,["H5310"]],[39,41,["H3537"]],[41,42,["H834"]],[42,46,["H3027"]]]},{"k":6714,"v":[[0,3,["H7969"]],[3,4,["H7218"]],[4,5,["H8628"]],[5,7,["H7782"]],[7,9,["H7665"]],[9,11,["H3537"]],[11,13,["H2388"]],[13,15,["H3940"]],[15,18,["H8040"]],[18,19,["H3027"]],[19,22,["H7782"]],[22,25,["H3225"]],[25,26,["H3027"]],[26,28,["H8628"]],[28,32,["H7121"]],[32,34,["H2719"]],[34,37,["H3068"]],[37,40,["H1439"]]]},{"k":6715,"v":[[0,3,["H5975"]],[3,5,["H376"]],[5,8,["H8478"]],[8,10,["H5439"]],[10,12,["H4264"]],[12,14,["H3605"]],[14,16,["H4264"]],[16,17,["H7323"]],[17,19,["H7321"]],[19,21,["H5127"]]]},{"k":6716,"v":[[0,3,["H7969"]],[3,4,["H3967"]],[4,5,["H8628"]],[5,7,["H7782"]],[7,10,["H3068"]],[10,11,["H7760","(H853)"]],[11,13,["H376"]],[13,14,["H2719"]],[14,17,["H7453"]],[17,20,["H3605"]],[20,22,["H4264"]],[22,25,["H4264"]],[25,26,["H5127"]],[26,27,["H5704"]],[27,28,["H1029"]],[28,30,["H6888"]],[30,32,["H5704"]],[32,34,["H8193"]],[34,36,["H65"]],[36,37,["H5921"]],[37,38,["H2888"]]]},{"k":6717,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,8,["H6817"]],[8,11,["H4480","H5321"]],[11,14,["H4480"]],[14,15,["H836"]],[15,18,["H4480"]],[18,19,["H3605"]],[19,20,["H4519"]],[20,22,["H7291"]],[22,23,["H310"]],[23,25,["H4080"]]]},{"k":6718,"v":[[0,2,["H1439"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,6,["H3605"]],[6,7,["H2022"]],[7,8,["H669"]],[8,9,["H559"]],[9,11,["H3381"]],[11,12,["H7125"]],[12,14,["H4080"]],[14,16,["H3920"]],[16,18,["(H853)"]],[18,20,["H4325"]],[20,21,["H5704"]],[21,22,["H1012"]],[22,24,["H3383"]],[24,26,["H3605"]],[26,28,["H376"]],[28,30,["H669"]],[30,33,["H6817"]],[33,35,["H3920","(H853)"]],[35,37,["H4325"]],[37,38,["H5704"]],[38,39,["H1012"]],[39,41,["H3383"]]]},{"k":6719,"v":[[0,3,["H3920"]],[3,4,["H8147"]],[4,5,["H8269"]],[5,8,["H4080","(H853)"]],[8,9,["H6159"]],[9,11,["H2062"]],[11,14,["H2026","(H853)"]],[14,15,["H6159"]],[15,18,["H6697"]],[18,19,["H6159"]],[19,21,["H2062"]],[21,23,["H2026"]],[23,26,["H3342"]],[26,28,["H2062"]],[28,30,["H7291","H413"]],[30,31,["H4080"]],[31,33,["H935"]],[33,35,["H7218"]],[35,37,["H6159"]],[37,39,["H2062"]],[39,40,["H413"]],[40,41,["H1439"]],[41,45,["H4480","H5676"]],[45,46,["H3383"]]]},{"k":6720,"v":[[0,3,["H376"]],[3,5,["H669"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H4100"]],[9,12,["H6213"]],[12,14,["H2088"]],[14,17,["H7121"]],[17,19,["H1115"]],[19,20,["H3588"]],[20,22,["H1980"]],[22,24,["H3898"]],[24,27,["H4080"]],[27,31,["H7378"]],[31,32,["H854"]],[32,34,["H2394"]]]},{"k":6721,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H4100"]],[6,9,["H6213"]],[9,10,["H6258"]],[10,16,["H3808"]],[16,21,["H5955"]],[21,23,["H669"]],[23,24,["H2896"]],[24,27,["H4480","H1210"]],[27,29,["H44"]]]},{"k":6722,"v":[[0,1,["H430"]],[1,3,["H5414"]],[3,6,["H3027","(H853)"]],[6,8,["H8269"]],[8,10,["H4080","(H853)"]],[10,11,["H6159"]],[11,13,["H2062"]],[13,15,["H4100"]],[15,18,["H3201"]],[18,20,["H6213"]],[20,25,["H227"]],[25,27,["H7307"]],[27,29,["H7503"]],[29,30,["H4480","H5921"]],[30,35,["H1696"]],[35,36,["H2088"]]]},{"k":6723,"v":[[0,2,["H1439"]],[2,3,["H935"]],[3,5,["H3383"]],[5,8,["H5674"]],[8,9,["H1931"]],[9,12,["H7969"]],[12,13,["H3967"]],[13,14,["H376"]],[14,15,["H834"]],[15,17,["H854"]],[17,19,["H5889"]],[19,21,["H7291"]],[21,22,[]]]},{"k":6724,"v":[[0,3,["H559"]],[3,6,["H376"]],[6,8,["H5523"]],[8,9,["H5414"]],[9,12,["H4994"]],[12,13,["H3603"]],[13,15,["H3899"]],[15,18,["H5971"]],[18,19,["H834"]],[19,20,["H7272"]],[20,22,["H3588"]],[22,23,["H1992"]],[23,25,["H5889"]],[25,27,["H595"]],[27,29,["H7291"]],[29,30,["H310"]],[30,31,["H2078"]],[31,33,["H6759"]],[33,34,["H4428"]],[34,36,["H4080"]]]},{"k":6725,"v":[[0,3,["H8269"]],[3,5,["H5523"]],[5,6,["H559"]],[6,9,["H3709"]],[9,11,["H2078"]],[11,13,["H6759"]],[13,14,["H6258"]],[14,17,["H3027"]],[17,18,["H3588"]],[18,21,["H5414"]],[21,22,["H3899"]],[22,25,["H6635"]]]},{"k":6726,"v":[[0,2,["H1439"]],[2,3,["H559"]],[3,4,["H3651"]],[4,7,["H3068"]],[7,9,["H5414","(H853)"]],[9,10,["H2078"]],[10,12,["H6759"]],[12,15,["H3027"]],[15,19,["H1758","(H853)"]],[19,21,["H1320"]],[21,22,["H854"]],[22,24,["H6975"]],[24,27,["H4057"]],[27,29,["H854"]],[29,30,["H1303"]]]},{"k":6727,"v":[[0,4,["H5927"]],[4,5,["H4480","H8033"]],[5,7,["H6439"]],[7,9,["H1696"]],[9,10,["H413"]],[10,12,["H2063"]],[12,15,["H376"]],[15,17,["H6439"]],[17,18,["H6030"]],[18,20,["H834"]],[20,22,["H376"]],[22,24,["H5523"]],[24,26,["H6030"]],[26,27,[]]]},{"k":6728,"v":[[0,3,["H559"]],[3,4,["H1571"]],[4,7,["H376"]],[7,9,["H6439"]],[9,10,["H559"]],[10,14,["H7725"]],[14,16,["H7965"]],[16,20,["H5422","(H853)"]],[20,21,["H2088"]],[21,22,["H4026"]]]},{"k":6729,"v":[[0,2,["H2078"]],[2,4,["H6759"]],[4,7,["H7174"]],[7,10,["H4264"]],[10,11,["H5973"]],[11,14,["H2568","H6240"]],[14,15,["H505"]],[15,17,["H3605"]],[17,20,["H3498"]],[20,22,["H4480","H3605"]],[22,24,["H4264"]],[24,27,["H1121"]],[27,30,["H6924"]],[30,33,["H5307"]],[33,35,["H3967"]],[35,37,["H6242"]],[37,38,["H505"]],[38,39,["H376"]],[39,41,["H8025"]],[41,42,["H2719"]]]},{"k":6730,"v":[[0,2,["H1439"]],[2,4,["H5927"]],[4,7,["H1870"]],[7,11,["H7931"]],[11,13,["H168"]],[13,16,["H4480","H6924"]],[16,18,["H5025"]],[18,20,["H3011"]],[20,22,["H5221","(H853)"]],[22,24,["H4264"]],[24,27,["H4264"]],[27,28,["H1961"]],[28,29,["H983"]]]},{"k":6731,"v":[[0,3,["H2078"]],[3,5,["H6759"]],[5,6,["H5127"]],[6,8,["H7291"]],[8,9,["H310"]],[9,12,["H3920","(H853)"]],[12,14,["H8147"]],[14,15,["H4428"]],[15,17,["H4080","(H853)"]],[17,18,["H2078"]],[18,20,["H6759"]],[20,22,["H2729"]],[22,23,["H3605"]],[23,25,["H4264"]]]},{"k":6732,"v":[[0,2,["H1439"]],[2,4,["H1121"]],[4,6,["H3101"]],[6,7,["H7725"]],[7,8,["H4480"]],[8,9,["H4421"]],[9,10,["H4480","H4608"]],[10,12,["H2775"]],[12,14,[]]]},{"k":6733,"v":[[0,2,["H3920"]],[2,5,["H5288"]],[5,8,["H4480","H376"]],[8,10,["H5523"]],[10,12,["H7592"]],[12,17,["H3789"]],[17,18,["H413"]],[18,19,["(H853)"]],[19,21,["H8269"]],[21,23,["H5523"]],[23,26,["H2205"]],[26,31,["H7657","H7651"]],[31,32,["H376"]]]},{"k":6734,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H376"]],[6,8,["H5523"]],[8,10,["H559"]],[10,11,["H2009"]],[11,12,["H2078"]],[12,14,["H6759"]],[14,16,["H834"]],[16,19,["H2778"]],[19,21,["H559"]],[21,24,["H3709"]],[24,26,["H2078"]],[26,28,["H6759"]],[28,29,["H6258"]],[29,32,["H3027"]],[32,33,["H3588"]],[33,36,["H5414"]],[36,37,["H3899"]],[37,40,["H376"]],[40,43,["H3287"]]]},{"k":6735,"v":[[0,3,["H3947","(H853)"]],[3,5,["H2205"]],[5,8,["H5892"]],[8,10,["H6975"]],[10,13,["H4057"]],[13,15,["H1303"]],[15,20,["H3045","(H853)"]],[20,22,["H376"]],[22,24,["H5523"]]]},{"k":6736,"v":[[0,4,["H5422"]],[4,6,["H4026"]],[6,8,["H6439"]],[8,10,["H2026","(H853)"]],[10,12,["H376"]],[12,15,["H5892"]]]},{"k":6737,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,5,["H2078"]],[5,7,["H6759"]],[7,9,["H375"]],[9,11,["H376"]],[11,14,["H834"]],[14,16,["H2026"]],[16,18,["H8396"]],[18,21,["H559"]],[21,23,["H3644"]],[23,29,["H259"]],[29,30,["H8389"]],[30,32,["H1121"]],[32,35,["H4428"]]]},{"k":6738,"v":[[0,3,["H559"]],[3,4,["H1992"]],[4,7,["H251"]],[7,10,["H1121"]],[10,13,["H517"]],[13,16,["H3068"]],[16,17,["H2416"]],[17,18,["H3863"]],[18,23,["H2421","(H853)"]],[23,26,["H3808"]],[26,27,["H2026"]],[27,28,[]]]},{"k":6739,"v":[[0,3,["H559"]],[3,5,["H3500"]],[5,7,["H1060"]],[7,8,["H6965"]],[8,10,["H2026"]],[10,14,["H5288"]],[14,15,["H8025"]],[15,16,["H3808"]],[16,18,["H2719"]],[18,19,["H3588"]],[19,21,["H3372"]],[21,22,["H3588"]],[22,25,["H5750"]],[25,27,["H5288"]]]},{"k":6740,"v":[[0,2,["H2078"]],[2,4,["H6759"]],[4,5,["H559"]],[5,6,["H6965"]],[6,7,["H859"]],[7,9,["H6293"]],[9,12,["H3588"]],[12,15,["H376"]],[15,20,["H1369"]],[20,22,["H1439"]],[22,23,["H6965"]],[23,25,["H2026","(H853)"]],[25,26,["H2078"]],[26,28,["H6759"]],[28,31,["H3947","(H853)"]],[31,33,["H7720"]],[33,34,["H834"]],[34,38,["H1581"]],[38,39,["H6677"]]]},{"k":6741,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H1439"]],[8,9,["H4910"]],[9,13,["H1571"]],[13,14,["H859"]],[14,15,["H1571"]],[15,17,["H1121"]],[17,20,["H1121"]],[20,21,["H1121"]],[21,22,["H1571"]],[22,23,["H3588"]],[23,26,["H3467"]],[26,30,["H4480","H3027"]],[30,32,["H4080"]]]},{"k":6742,"v":[[0,2,["H1439"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H589"]],[6,8,["H3808"]],[8,9,["H4910"]],[9,12,["H3808"]],[12,15,["H1121"]],[15,16,["H4910"]],[16,20,["H3068"]],[20,22,["H4910"]],[22,24,[]]]},{"k":6743,"v":[[0,2,["H1439"]],[2,3,["H559"]],[3,4,["H413"]],[4,8,["H7592"]],[8,10,["H7596"]],[10,11,["H4480"]],[11,16,["H5414"]],[16,19,["H376"]],[19,21,["H5141"]],[21,24,["H7998"]],[24,25,["H3588"]],[25,28,["H2091"]],[28,29,["H5141"]],[29,30,["H3588"]],[30,31,["H1992"]],[31,33,["H3459"]]]},{"k":6744,"v":[[0,3,["H559"]],[3,7,["H5414","H5414"]],[7,11,["H6566","(H853)"]],[11,13,["H8071"]],[13,16,["H7993"]],[16,17,["H8033"]],[17,19,["H376"]],[19,21,["H5141"]],[21,24,["H7998"]]]},{"k":6745,"v":[[0,3,["H4948"]],[3,6,["H2091"]],[6,7,["H5141"]],[7,8,["H834"]],[8,10,["H7592"]],[10,11,["H1961"]],[11,13,["H505"]],[13,15,["H7651"]],[15,16,["H3967"]],[16,19,["H2091"]],[19,20,["H905","H4480"]],[20,21,["H7720"]],[21,23,["H5188"]],[23,25,["H713"]],[25,26,["H899"]],[26,29,["H7945","H5921"]],[29,31,["H4428"]],[31,33,["H4080"]],[33,35,["H905","H4480"]],[35,37,["H6060"]],[37,38,["H834"]],[38,42,["H1581"]],[42,43,["H6677"]]]},{"k":6746,"v":[[0,2,["H1439"]],[2,3,["H6213"]],[3,5,["H646"]],[5,8,["H3322"]],[8,12,["H5892"]],[12,15,["H6084"]],[15,17,["H3605"]],[17,18,["H3478"]],[18,22,["H2181","H8033"]],[22,23,["H310"]],[23,27,["H1961"]],[27,29,["H4170"]],[29,31,["H1439"]],[31,35,["H1004"]]]},{"k":6747,"v":[[0,3,["H4080"]],[3,4,["H3665"]],[4,5,["H6440"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,14,["H5375"]],[14,16,["H7218"]],[16,17,["H3808"]],[17,18,["H3254"]],[18,21,["H776"]],[21,24,["H8252"]],[24,25,["H705"]],[25,26,["H8141"]],[26,29,["H3117"]],[29,31,["H1439"]]]},{"k":6748,"v":[[0,2,["H3378"]],[2,4,["H1121"]],[4,6,["H3101"]],[6,7,["H1980"]],[7,9,["H3427"]],[9,13,["H1004"]]]},{"k":6749,"v":[[0,2,["H1439"]],[2,3,["H1961"]],[3,6,["H7657"]],[6,7,["H1121"]],[7,10,["H3409"]],[10,11,["H3318"]],[11,12,["H3588"]],[12,14,["H1961"]],[14,15,["H7227"]],[15,16,["H802"]]]},{"k":6750,"v":[[0,3,["H6370"]],[3,4,["H834"]],[4,7,["H7927"]],[7,8,["H1931"]],[8,9,["H1571"]],[9,10,["H3205"]],[10,13,["H1121","(H853)"]],[13,15,["H8034"]],[15,17,["H7760"]],[17,18,["H40"]]]},{"k":6751,"v":[[0,2,["H1439"]],[2,4,["H1121"]],[4,6,["H3101"]],[6,7,["H4191"]],[7,10,["H2896"]],[10,12,["H7872"]],[12,15,["H6912"]],[15,18,["H6913"]],[18,20,["H3101"]],[20,22,["H1"]],[22,24,["H6084"]],[24,27,["H33"]]]},{"k":6752,"v":[[0,5,["H1961"]],[5,8,["H834"]],[8,9,["H1439"]],[9,11,["H4191"]],[11,14,["H1121"]],[14,16,["H3478"]],[16,18,["H7725"]],[18,22,["H2181"]],[22,23,["H310"]],[23,24,["H1168"]],[24,26,["H7760"]],[26,27,["H1170"]],[27,29,["H430"]]]},{"k":6753,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H2142"]],[6,7,["H3808","(H853)"]],[7,9,["H3068"]],[9,11,["H430"]],[11,14,["H5337","(H853)"]],[14,19,["H4480","H3027"]],[19,21,["H3605"]],[21,23,["H341"]],[23,26,["H4480","H5439"]]]},{"k":6754,"v":[[0,1,["H3808"]],[1,2,["H6213"]],[2,4,["H2617"]],[4,5,["H5973"]],[5,7,["H1004"]],[7,9,["H3378"]],[9,11,["H1439"]],[11,14,["H3605"]],[14,16,["H2896"]],[16,17,["H834"]],[17,20,["H6213"]],[20,21,["H5973"]],[21,22,["H3478"]]]},{"k":6755,"v":[[0,2,["H40"]],[2,4,["H1121"]],[4,6,["H3378"]],[6,7,["H1980"]],[7,9,["H7927"]],[9,10,["H413"]],[10,12,["H517"]],[12,13,["H251"]],[13,15,["H1696"]],[15,16,["H413"]],[16,19,["H413"]],[19,20,["H3605"]],[20,22,["H4940"]],[22,25,["H1004"]],[25,28,["H517"]],[28,29,["H1"]],[29,30,["H559"]]]},{"k":6756,"v":[[0,1,["H1696"]],[1,4,["H4994"]],[4,7,["H241"]],[7,9,["H3605"]],[9,11,["H1167"]],[11,13,["H7927"]],[13,14,["H4100"]],[14,16,["H2896"]],[16,21,["H3605"]],[21,23,["H1121"]],[23,25,["H3378"]],[25,30,["H7657"]],[30,31,["H376"]],[31,32,["H4910"]],[32,35,["H518"]],[35,37,["H259"]],[37,38,["H4910"]],[38,41,["H2142"]],[41,43,["H3588"]],[43,44,["H589"]],[44,47,["H6106"]],[47,50,["H1320"]]]},{"k":6757,"v":[[0,3,["H517"]],[3,4,["H251"]],[4,5,["H1696"]],[5,6,["H5921"]],[6,10,["H241"]],[10,12,["H3605"]],[12,14,["H1167"]],[14,16,["H7927","(H853)"]],[16,17,["H3605"]],[17,18,["H428"]],[18,19,["H1697"]],[19,22,["H3820"]],[22,25,["H5186","H310"]],[25,26,["H40"]],[26,27,["H3588"]],[27,29,["H559"]],[29,30,["H1931"]],[30,33,["H251"]]]},{"k":6758,"v":[[0,3,["H5414"]],[3,7,["H7657"]],[7,10,["H3701"]],[10,14,["H4480","H1004"]],[14,16,["H1170"]],[16,18,["H40"]],[18,19,["H7936"]],[19,20,["H7386"]],[20,22,["H6348"]],[22,23,["H376"]],[23,25,["H1980","H310"]],[25,26,[]]]},{"k":6759,"v":[[0,3,["H935"]],[3,6,["H1"]],[6,7,["H1004"]],[7,9,["H6084"]],[9,11,["H2026","(H853)"]],[11,13,["H251"]],[13,15,["H1121"]],[15,17,["H3378"]],[17,21,["H7657"]],[21,22,["H376"]],[22,23,["H5921"]],[23,24,["H259"]],[24,25,["H68"]],[25,28,["H3147"]],[28,30,["H6996"]],[30,31,["H1121"]],[31,33,["H3378"]],[33,35,["H3498"]],[35,36,["H3588"]],[36,39,["H2244"]]]},{"k":6760,"v":[[0,2,["H3605"]],[2,4,["H1167"]],[4,6,["H7927"]],[6,8,["H622"]],[8,10,["H3605"]],[10,14,["H1037"]],[14,16,["H1980"]],[16,18,["H4427","(H853)"]],[18,19,["H40"]],[19,20,["H4428"]],[20,21,["H5973"]],[21,23,["H436"]],[23,26,["H5324"]],[26,27,["H834"]],[27,30,["H7927"]]]},{"k":6761,"v":[[0,4,["H5046"]],[4,7,["H3147"]],[7,9,["H1980"]],[9,11,["H5975"]],[11,14,["H7218"]],[14,16,["H2022"]],[16,17,["H1630"]],[17,20,["H5375"]],[20,22,["H6963"]],[22,24,["H7121"]],[24,26,["H559"]],[26,29,["H8085"]],[29,30,["H413"]],[30,33,["H1167"]],[33,35,["H7927"]],[35,37,["H430"]],[37,39,["H8085"]],[39,40,["H413"]],[40,41,[]]]},{"k":6762,"v":[[0,2,["H6086"]],[2,4,["H1980","H1980"]],[4,9,["H4886"]],[9,11,["H4428"]],[11,12,["H5921"]],[12,16,["H559"]],[16,20,["H2132"]],[20,21,["H4427"]],[21,23,["H5921"]],[23,24,[]]]},{"k":6763,"v":[[0,4,["H2132"]],[4,5,["H559"]],[5,10,["H2308","(H853)"]],[10,12,["H1880"]],[12,13,["H834"]],[13,17,["H3513"]],[17,18,["H430"]],[18,20,["H376"]],[20,22,["H1980"]],[22,25,["H5128"]],[25,26,["H5921"]],[26,28,["H6086"]]]},{"k":6764,"v":[[0,3,["H6086"]],[3,4,["H559"]],[4,8,["H8384"]],[8,9,["H1980"]],[9,10,["H859"]],[10,12,["H4427"]],[12,13,["H5921"]],[13,14,[]]]},{"k":6765,"v":[[0,4,["H8384"]],[4,5,["H559"]],[5,10,["H2308","(H853)"]],[10,12,["H4987"]],[12,15,["H2896"]],[15,16,["H8570"]],[16,18,["H1980"]],[18,21,["H5128"]],[21,22,["H5921"]],[22,24,["H6086"]]]},{"k":6766,"v":[[0,2,["H559"]],[2,4,["H6086"]],[4,7,["H1612"]],[7,8,["H1980"]],[8,9,["H859"]],[9,11,["H4427"]],[11,12,["H5921"]],[12,13,[]]]},{"k":6767,"v":[[0,3,["H1612"]],[3,4,["H559"]],[4,9,["H2308","(H853)"]],[9,11,["H8492"]],[11,13,["H8055"]],[13,14,["H430"]],[14,16,["H376"]],[16,18,["H1980"]],[18,21,["H5128"]],[21,22,["H5921"]],[22,24,["H6086"]]]},{"k":6768,"v":[[0,2,["H559"]],[2,3,["H3605"]],[3,5,["H6086"]],[5,6,["H413"]],[6,8,["H329"]],[8,9,["H1980"]],[9,10,["H859"]],[10,12,["H4427"]],[12,13,["H5921"]],[13,14,[]]]},{"k":6769,"v":[[0,3,["H329"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H6086"]],[7,8,["H518"]],[8,10,["H571"]],[10,11,["H859"]],[11,12,["H4886"]],[12,14,["H4428"]],[14,15,["H5921"]],[15,18,["H935"]],[18,22,["H2620"]],[22,25,["H6738"]],[25,27,["H518"]],[27,28,["H369"]],[28,30,["H784"]],[30,32,["H3318"]],[32,33,["H4480"]],[33,35,["H329"]],[35,37,["H398","(H853)"]],[37,39,["H730"]],[39,41,["H3844"]]]},{"k":6770,"v":[[0,1,["H6258"]],[1,3,["H518"]],[3,6,["H6213"]],[6,7,["H571"]],[7,9,["H8549"]],[9,16,["H4427","(H853)","H40"]],[16,18,["H518"]],[18,21,["H6213"]],[21,22,["H2896"]],[22,23,["H5973"]],[23,24,["H3378"]],[24,27,["H1004"]],[27,30,["H6213"]],[30,36,["H1576"]],[36,39,["H3027"]]]},{"k":6771,"v":[[0,1,["H834"]],[1,3,["H1"]],[3,4,["H3898"]],[4,5,["H5921"]],[5,8,["H7993","(H853)"]],[8,10,["H5315"]],[10,11,["H4480","H5048"]],[11,13,["H5337"]],[13,18,["H4480","H3027"]],[18,20,["H4080"]]]},{"k":6772,"v":[[0,2,["H859"]],[2,5,["H6965"]],[5,6,["H5921"]],[6,8,["H1"]],[8,9,["H1004"]],[9,11,["H3117"]],[11,14,["H2026","(H853)"]],[14,16,["H1121"]],[16,19,["H7657"]],[19,20,["H376"]],[20,21,["H5921"]],[21,22,["H259"]],[22,23,["H68"]],[23,26,["(H853)"]],[26,27,["H40"]],[27,29,["H1121"]],[29,32,["H519"]],[32,33,["H4427"]],[33,34,["H5921"]],[34,36,["H1167"]],[36,38,["H7927"]],[38,39,["H3588"]],[39,40,["H1931"]],[40,43,["H251"]]]},{"k":6773,"v":[[0,1,["H518"]],[1,5,["H6213"]],[5,6,["H571"]],[6,8,["H8549"]],[8,9,["H5973"]],[9,10,["H3378"]],[10,12,["H5973"]],[12,14,["H1004"]],[14,15,["H2088"]],[15,16,["H3117"]],[16,18,["H8055"]],[18,21,["H40"]],[21,24,["H1931"]],[24,25,["H1571"]],[25,26,["H8055"]],[26,28,[]]]},{"k":6774,"v":[[0,2,["H518"]],[2,3,["H369"]],[3,5,["H784"]],[5,7,["H3318"]],[7,9,["H4480","H40"]],[9,11,["H398","(H853)"]],[11,13,["H1167"]],[13,15,["H7927"]],[15,18,["H1004"]],[18,20,["H4407"]],[20,23,["H784"]],[23,25,["H3318"]],[25,28,["H4480","H1167"]],[28,30,["H7927"]],[30,34,["H4480","H1004"]],[34,36,["H4407"]],[36,38,["H398","(H853)"]],[38,39,["H40"]]]},{"k":6775,"v":[[0,2,["H3147"]],[2,4,["H5127"]],[4,6,["H1272"]],[6,8,["H1980"]],[8,10,["H876"]],[10,12,["H3427"]],[12,13,["H8033"]],[13,15,["H4480","H6440"]],[15,17,["H40"]],[17,19,["H251"]]]},{"k":6776,"v":[[0,2,["H40"]],[2,4,["H7786"]],[4,5,["H7969"]],[5,6,["H8141"]],[6,7,["H5921"]],[7,8,["H3478"]]]},{"k":6777,"v":[[0,2,["H430"]],[2,3,["H7971"]],[3,5,["H7451"]],[5,6,["H7307"]],[6,7,["H996"]],[7,8,["H40"]],[8,11,["H1167"]],[11,13,["H7927"]],[13,16,["H1167"]],[16,18,["H7927"]],[18,20,["H898"]],[20,22,["H40"]]]},{"k":6778,"v":[[0,3,["H2555"]],[3,9,["H7657"]],[9,10,["H1121"]],[10,12,["H3378"]],[12,14,["H935"]],[14,17,["H1818"]],[17,19,["H7760"]],[19,20,["H5921"]],[20,21,["H40"]],[21,23,["H251"]],[23,24,["H834"]],[24,25,["H2026"]],[25,28,["H5921"]],[28,30,["H1167"]],[30,32,["H7927"]],[32,33,["H834"]],[33,34,["H2388","(H853)","H3027"]],[34,38,["H2026"]],[38,39,["(H853)"]],[39,41,["H251"]]]},{"k":6779,"v":[[0,3,["H1167"]],[3,5,["H7927"]],[5,6,["H7760"]],[6,9,["H693"]],[9,12,["H5921"]],[12,14,["H7218"]],[14,17,["H2022"]],[17,20,["H1497","(H853)"]],[20,21,["H3605"]],[21,22,["H834"]],[22,24,["H5674"]],[24,26,["H1870"]],[26,27,["H5921"]],[27,32,["H5046"]],[32,33,["H40"]]]},{"k":6780,"v":[[0,2,["H1603"]],[2,4,["H1121"]],[4,6,["H5651"]],[6,7,["H935"]],[7,10,["H251"]],[10,13,["H5674"]],[13,15,["H7927"]],[15,18,["H1167"]],[18,20,["H7927"]],[20,23,["H982"]],[23,25,[]]]},{"k":6781,"v":[[0,4,["H3318"]],[4,7,["H7704"]],[7,9,["H1219","(H853)"]],[9,11,["H3754"]],[11,13,["H1869"]],[13,17,["H6213"]],[17,18,["H1974"]],[18,21,["H935"]],[21,23,["H1004"]],[23,26,["H430"]],[26,29,["H398"]],[29,31,["H8354"]],[31,33,["H7043","(H853)"]],[33,34,["H40"]]]},{"k":6782,"v":[[0,2,["H1603"]],[2,4,["H1121"]],[4,6,["H5651"]],[6,7,["H559"]],[7,8,["H4310"]],[8,10,["H40"]],[10,12,["H4310"]],[12,14,["H7927"]],[14,15,["H3588"]],[15,18,["H5647"]],[18,21,["H3808"]],[21,24,["H1121"]],[24,26,["H3378"]],[26,28,["H2083"]],[28,30,["H6496"]],[30,31,["H5647","(H853)"]],[31,33,["H376"]],[33,35,["H2544"]],[35,37,["H1"]],[37,39,["H7928"]],[39,41,["H4069"]],[41,43,["H587"]],[43,44,["H5647"]],[44,45,[]]]},{"k":6783,"v":[[0,4,["H4310","H5414","(H853)"]],[4,5,["H2088"]],[5,6,["H5971"]],[6,10,["H3027"]],[10,14,["H5493","(H853)"]],[14,15,["H40"]],[15,18,["H559"]],[18,20,["H40"]],[20,21,["H7235"]],[21,23,["H6635"]],[23,26,["H3318"]]]},{"k":6784,"v":[[0,3,["H2083"]],[3,5,["H8269"]],[5,8,["H5892"]],[8,9,["H8085","(H853)"]],[9,11,["H1697"]],[11,13,["H1603"]],[13,15,["H1121"]],[15,17,["H5651"]],[17,19,["H639"]],[19,21,["H2734"]]]},{"k":6785,"v":[[0,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H40"]],[6,7,["H8649"]],[7,8,["H559"]],[8,9,["H2009"]],[9,10,["H1603"]],[10,12,["H1121"]],[12,14,["H5651"]],[14,17,["H251"]],[17,19,["H935"]],[19,21,["H7927"]],[21,23,["H2009"]],[23,25,["H6696","(H853)"]],[25,27,["H5892"]],[27,28,["H5921"]],[28,29,[]]]},{"k":6786,"v":[[0,1,["H6258"]],[1,3,["H6965"]],[3,5,["H3915"]],[5,6,["H859"]],[6,9,["H5971"]],[9,10,["H834"]],[10,12,["H854"]],[12,17,["H693"]],[17,20,["H7704"]]]},{"k":6787,"v":[[0,4,["H1961"]],[4,8,["H1242"]],[8,13,["H8121"]],[13,15,["H2224"]],[15,19,["H7925"]],[19,21,["H6584"]],[21,22,["H5921"]],[22,24,["H5892"]],[24,26,["H2009"]],[26,28,["H1931"]],[28,31,["H5971"]],[31,32,["H834"]],[32,34,["H854"]],[34,37,["H3318"]],[37,38,["H413"]],[38,43,["H6213"]],[43,46,["H834"]],[46,49,["H4672"]],[49,50,["H3027"]]]},{"k":6788,"v":[[0,2,["H40"]],[2,4,["H6965"]],[4,6,["H3605"]],[6,8,["H5971"]],[8,9,["H834"]],[9,11,["H5973"]],[11,14,["H3915"]],[14,18,["H693"]],[18,19,["H5921"]],[19,20,["H7927"]],[20,22,["H702"]],[22,23,["H7218"]]]},{"k":6789,"v":[[0,2,["H1603"]],[2,4,["H1121"]],[4,6,["H5651"]],[6,8,["H3318"]],[8,10,["H5975"]],[10,13,["H6607"]],[13,16,["H8179"]],[16,19,["H5892"]],[19,21,["H40"]],[21,23,["H6965"]],[23,26,["H5971"]],[26,27,["H834"]],[27,29,["H854"]],[29,31,["H4480"]],[31,34,["H3993"]]]},{"k":6790,"v":[[0,3,["H1603"]],[3,4,["H7200","(H853)"]],[4,6,["H5971"]],[6,8,["H559"]],[8,9,["H413"]],[9,10,["H2083"]],[10,11,["H2009"]],[11,15,["H3381","H5971"]],[15,18,["H4480","H7218"]],[18,21,["H2022"]],[21,23,["H2083"]],[23,24,["H559"]],[24,25,["H413"]],[25,27,["H859"]],[27,28,["H7200","(H853)"]],[28,30,["H6738"]],[30,33,["H2022"]],[33,38,["H376"]]]},{"k":6791,"v":[[0,2,["H1603"]],[2,3,["H1696"]],[3,4,["H3254"]],[4,6,["H559"]],[6,7,["H2009"]],[7,11,["H3381","H5971"]],[11,12,["H4480","H5973"]],[12,14,["H2872"]],[14,17,["H776"]],[17,19,["H259"]],[19,20,["H7218"]],[20,21,["H935"]],[21,23,["H4480","H5973"]],[23,25,["H436"]],[25,27,["H6049"]]]},{"k":6792,"v":[[0,2,["H559"]],[2,3,["H2083"]],[3,4,["H413"]],[4,6,["H346"]],[6,8,["H645"]],[8,10,["H6310"]],[10,11,["H834"]],[11,13,["H559"]],[13,14,["H4310"]],[14,16,["H40"]],[16,17,["H3588"]],[17,20,["H5647"]],[20,23,["H3808"]],[23,24,["H2088"]],[24,26,["H5971"]],[26,27,["H834"]],[27,30,["H3988"]],[30,32,["H3318"]],[32,34,["H4994"]],[34,35,["H6258"]],[35,37,["H3898"]],[37,39,[]]]},{"k":6793,"v":[[0,2,["H1603"]],[2,4,["H3318"]],[4,5,["H6440"]],[5,7,["H1167"]],[7,9,["H7927"]],[9,11,["H3898"]],[11,13,["H40"]]]},{"k":6794,"v":[[0,2,["H40"]],[2,3,["H7291"]],[3,7,["H5127"]],[7,8,["H4480","H6440"]],[8,11,["H7227"]],[11,13,["H5307"]],[13,15,["H2491"]],[15,17,["H5704"]],[17,19,["H6607"]],[19,22,["H8179"]]]},{"k":6795,"v":[[0,2,["H40"]],[2,3,["H3427"]],[3,5,["H725"]],[5,7,["H2083"]],[7,9,["H1644","(H853)"]],[9,10,["H1603"]],[10,13,["H251"]],[13,18,["H4480","H3427"]],[18,20,["H7927"]]]},{"k":6796,"v":[[0,5,["H1961"]],[5,8,["H4480","H4283"]],[8,11,["H5971"]],[11,13,["H3318"]],[13,16,["H7704"]],[16,19,["H5046"]],[19,20,["H40"]]]},{"k":6797,"v":[[0,3,["H3947","(H853)"]],[3,5,["H5971"]],[5,7,["H2673"]],[7,10,["H7969"]],[10,11,["H7218"]],[11,14,["H693"]],[14,17,["H7704"]],[17,19,["H7200"]],[19,21,["H2009"]],[21,23,["H5971"]],[23,26,["H3318"]],[26,28,["H4480"]],[28,30,["H5892"]],[30,34,["H6965"]],[34,35,["H5921"]],[35,38,["H5221"]],[38,39,[]]]},{"k":6798,"v":[[0,2,["H40"]],[2,5,["H7218"]],[5,6,["H834"]],[6,8,["H5973"]],[8,11,["H6584"]],[11,13,["H5975"]],[13,16,["H6607"]],[16,19,["H8179"]],[19,22,["H5892"]],[22,25,["H8147"]],[25,27,["H7218"]],[27,28,["H6584"]],[28,29,["H5921"]],[29,30,["H3605"]],[30,33,["H834"]],[33,37,["H7704"]],[37,39,["H5221"]],[39,40,[]]]},{"k":6799,"v":[[0,2,["H40"]],[2,3,["H3898"]],[3,6,["H5892"]],[6,7,["H3605"]],[7,8,["H1931"]],[8,9,["H3117"]],[9,12,["H3920","(H853)"]],[12,14,["H5892"]],[14,16,["H2026"]],[16,18,["H5971"]],[18,19,["H834"]],[19,24,["H5422","(H853)"]],[24,26,["H5892"]],[26,28,["H2232"]],[28,31,["H4417"]]]},{"k":6800,"v":[[0,3,["H3605"]],[3,5,["H1167"]],[5,8,["H4026"]],[8,10,["H7927"]],[10,11,["H8085"]],[11,14,["H935"]],[14,15,["H413"]],[15,17,["H6877"]],[17,20,["H1004"]],[20,23,["H410"]],[23,24,["H1286"]]]},{"k":6801,"v":[[0,4,["H5046"]],[4,5,["H40"]],[5,6,["H3588"]],[6,7,["H3605"]],[7,9,["H1167"]],[9,12,["H4026"]],[12,14,["H7927"]],[14,17,["H6908"]]]},{"k":6802,"v":[[0,2,["H40"]],[2,5,["H5927"]],[5,7,["H2022"]],[7,8,["H6756"]],[8,9,["H1931"]],[9,11,["H3605"]],[11,13,["H5971"]],[13,14,["H834"]],[14,16,["H854"]],[16,19,["H40"]],[19,20,["H3947","(H853)"]],[20,22,["H7134"]],[22,25,["H3027"]],[25,28,["H3772"]],[28,30,["H7754"]],[30,33,["H6086"]],[33,35,["H5375"]],[35,38,["H7760"]],[38,40,["H5921"]],[40,42,["H7926"]],[42,44,["H559"]],[44,45,["H413"]],[45,47,["H5971"]],[47,48,["H834"]],[48,50,["H5973"]],[50,52,["H4100"]],[52,55,["H7200"]],[55,57,["H6213"]],[57,59,["H4116"]],[59,61,["H6213"]],[61,63,["H3644"]],[63,65,[]]]},{"k":6803,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H1571"]],[5,7,["H3772"]],[7,9,["H376"]],[9,11,["H7754"]],[11,13,["H1980","H310"]],[13,14,["H40"]],[14,16,["H7760"]],[16,18,["H5921"]],[18,20,["H6877"]],[20,22,["H3341","(H853)"]],[22,24,["H6877"]],[24,26,["H784"]],[26,27,["H5921"]],[27,31,["H3605"]],[31,33,["H376"]],[33,36,["H4026"]],[36,38,["H7927"]],[38,39,["H4191"]],[39,40,["H1571"]],[40,43,["H505"]],[43,44,["H376"]],[44,46,["H802"]]]},{"k":6804,"v":[[0,2,["H1980"]],[2,3,["H40"]],[3,4,["H413"]],[4,5,["H8405"]],[5,7,["H2583"]],[7,9,["H8405"]],[9,11,["H3920"]],[11,12,[]]]},{"k":6805,"v":[[0,3,["H1961"]],[3,5,["H5797"]],[5,6,["H4026"]],[6,7,["H8432"]],[7,9,["H5892"]],[9,11,["H8033"]],[11,12,["H5127"]],[12,13,["H3605"]],[13,15,["H376"]],[15,17,["H802"]],[17,19,["H3605"]],[19,20,["H1167"]],[20,23,["H5892"]],[23,25,["H5462"]],[25,27,["H1157"]],[27,32,["H5927"]],[32,33,["H5921"]],[33,35,["H1406"]],[35,38,["H4026"]]]},{"k":6806,"v":[[0,2,["H40"]],[2,3,["H935"]],[3,4,["H5704"]],[4,6,["H4026"]],[6,8,["H3898"]],[8,13,["H5066"]],[13,14,["H5704"]],[14,16,["H6607"]],[16,19,["H4026"]],[19,21,["H8313"]],[21,24,["H784"]]]},{"k":6807,"v":[[0,3,["H259"]],[3,4,["H802"]],[4,5,["H7993"]],[5,7,["H6400"]],[7,10,["H7393"]],[10,11,["H5921"]],[11,12,["H40"]],[12,13,["H7218"]],[13,17,["H7533","(H853)"]],[17,19,["H1538"]]]},{"k":6808,"v":[[0,3,["H7121"]],[3,4,["H4120"]],[4,5,["H413"]],[5,8,["H5288"]],[8,10,["H5375","H3627"]],[10,12,["H559"]],[12,15,["H8025"]],[15,17,["H2719"]],[17,19,["H4191"]],[19,21,["H6435"]],[21,23,["H559"]],[23,28,["H802"]],[28,29,["H2026"]],[29,34,["H5288"]],[34,37,["H1856"]],[37,40,["H4191"]]]},{"k":6809,"v":[[0,4,["H376"]],[4,6,["H3478"]],[6,7,["H7200"]],[7,8,["H3588"]],[8,9,["H40"]],[9,11,["H4191"]],[11,13,["H1980"]],[13,15,["H376"]],[15,18,["H4725"]]]},{"k":6810,"v":[[0,2,["H430"]],[2,3,["H7725","(H853)"]],[3,5,["H7451"]],[5,7,["H40"]],[7,8,["H834"]],[8,10,["H6213"]],[10,13,["H1"]],[13,15,["H2026","(H853)"]],[15,17,["H7657"]],[17,18,["H251"]]]},{"k":6811,"v":[[0,2,["H3605"]],[2,4,["H7451"]],[4,7,["H376"]],[7,9,["H7927"]],[9,11,["H430"]],[11,12,["H7725"]],[12,15,["H7218"]],[15,17,["H413"]],[17,19,["H935"]],[19,21,["H7045"]],[21,23,["H3147"]],[23,25,["H1121"]],[25,27,["H3378"]]]},{"k":6812,"v":[[0,2,["H310"]],[2,3,["H40"]],[3,5,["H6965"]],[5,7,["H3467","(H853)"]],[7,8,["H3478"]],[8,9,["H8439"]],[9,11,["H1121"]],[11,13,["H6312"]],[13,15,["H1121"]],[15,17,["H1734"]],[17,19,["H376"]],[19,21,["H3485"]],[21,23,["H1931"]],[23,24,["H3427"]],[24,26,["H8069"]],[26,28,["H2022"]],[28,29,["H669"]]]},{"k":6813,"v":[[0,3,["H8199","(H853)"]],[3,4,["H3478"]],[4,5,["H6242"]],[5,7,["H7969"]],[7,8,["H8141"]],[8,10,["H4191"]],[10,13,["H6912"]],[13,15,["H8069"]]]},{"k":6814,"v":[[0,2,["H310"]],[2,4,["H6965"]],[4,5,["H2971"]],[5,7,["H1569"]],[7,9,["H8199","(H853)"]],[9,10,["H3478"]],[10,11,["H6242"]],[11,13,["H8147"]],[13,14,["H8141"]]]},{"k":6815,"v":[[0,3,["H1961"]],[3,4,["H7970"]],[4,5,["H1121"]],[5,7,["H7392"]],[7,8,["H5921"]],[8,9,["H7970"]],[9,11,["H5895"]],[11,15,["H7970"]],[15,16,["H5892"]],[16,19,["H7121"]],[19,20,["H2334"]],[20,21,["H5704"]],[21,22,["H2088"]],[22,23,["H3117"]],[23,24,["H834"]],[24,28,["H776"]],[28,30,["H1568"]]]},{"k":6816,"v":[[0,2,["H2971"]],[2,3,["H4191"]],[3,6,["H6912"]],[6,8,["H7056"]]]},{"k":6817,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,7,["H7451"]],[7,8,["H3254"]],[8,11,["H5869"]],[11,14,["H3068"]],[14,16,["H5647","(H853)"]],[16,17,["H1168"]],[17,19,["H6252"]],[19,22,["H430"]],[22,24,["H758"]],[24,27,["H430"]],[27,29,["H6721"]],[29,32,["H430"]],[32,34,["H4124"]],[34,37,["H430"]],[37,40,["H1121"]],[40,42,["H5983"]],[42,45,["H430"]],[45,48,["H6430"]],[48,50,["H5800","(H853)"]],[50,52,["H3068"]],[52,54,["H5647"]],[54,55,["H3808"]],[55,56,[]]]},{"k":6818,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,10,["H3478"]],[10,13,["H4376"]],[13,17,["H3027"]],[17,20,["H6430"]],[20,24,["H3027"]],[24,27,["H1121"]],[27,29,["H5983"]]]},{"k":6819,"v":[[0,2,["H1931"]],[2,3,["H8141"]],[3,5,["H7492"]],[5,7,["H7533","(H853)"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,12,["H8083","H6240"]],[12,13,["H8141","(H853)"]],[13,14,["H3605"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,19,["H834"]],[19,24,["H5676"]],[24,25,["H3383"]],[25,28,["H776"]],[28,31,["H567"]],[31,32,["H834"]],[32,35,["H1568"]]]},{"k":6820,"v":[[0,3,["H1121"]],[3,5,["H5983"]],[5,7,["H5674","(H853)"]],[7,8,["H3383"]],[8,10,["H3898"]],[10,11,["H1571"]],[11,13,["H3063"]],[13,16,["H1144"]],[16,20,["H1004"]],[20,22,["H669"]],[22,25,["H3478"]],[25,27,["H3966"]],[27,28,["H3334"]]]},{"k":6821,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H2199"]],[6,7,["H413"]],[7,9,["H3068"]],[9,10,["H559"]],[10,13,["H2398"]],[13,17,["H3588"]],[17,20,["H5800","(H853)"]],[20,22,["H430"]],[22,25,["H5647","(H853)"]],[25,26,["H1168"]]]},{"k":6822,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H3413"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,11,["H3808"]],[11,17,["H4480","H4714"]],[17,19,["H4480"]],[19,21,["H567"]],[21,22,["H4480"]],[22,24,["H1121"]],[24,26,["H5983"]],[26,28,["H4480"]],[28,30,["H6430"]]]},{"k":6823,"v":[[0,2,["H6722"]],[2,6,["H6002"]],[6,9,["H4584"]],[9,11,["H3905"]],[11,15,["H6817"]],[15,16,["H413"]],[16,20,["H3467"]],[20,25,["H4480","H3027"]]]},{"k":6824,"v":[[0,2,["H859"]],[2,4,["H5800"]],[4,7,["H5647"]],[7,8,["H312"]],[8,9,["H430"]],[9,10,["H3651"]],[10,13,["H3467"]],[13,15,["H3808"]],[15,16,["H3254"]]]},{"k":6825,"v":[[0,1,["H1980"]],[1,3,["H2199"]],[3,4,["H413"]],[4,6,["H430"]],[6,7,["H834"]],[7,10,["H977"]],[10,12,["H1992"]],[12,13,["H3467"]],[13,17,["H6256"]],[17,20,["H6869"]]]},{"k":6826,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H3068"]],[9,12,["H2398"]],[12,13,["H6213"]],[13,14,["H859"]],[14,17,["H3605"]],[17,19,["H2896"]],[19,20,["H5869"]],[20,22,["H5337"]],[22,24,["H389"]],[24,27,["H4994"]],[27,28,["H2088"]],[28,29,["H3117"]]]},{"k":6827,"v":[[0,4,["H5493","(H853)"]],[4,6,["H5236"]],[6,7,["H430"]],[7,9,["H4480","H7130"]],[9,12,["H5647","(H853)"]],[12,14,["H3068"]],[14,17,["H5315"]],[17,19,["H7114"]],[19,22,["H5999"]],[22,24,["H3478"]]]},{"k":6828,"v":[[0,3,["H1121"]],[3,5,["H5983"]],[5,8,["H6817"]],[8,10,["H2583"]],[10,12,["H1568"]],[12,15,["H1121"]],[15,17,["H3478"]],[17,20,["H622"]],[20,22,["H2583"]],[22,24,["H4709"]]]},{"k":6829,"v":[[0,3,["H5971"]],[3,5,["H8269"]],[5,7,["H1568"]],[7,8,["H559"]],[8,9,["H376"]],[9,10,["H413"]],[10,11,["H7453"]],[11,12,["H4310"]],[12,13,["H376"]],[13,16,["H834"]],[16,18,["H2490"]],[18,20,["H3898"]],[20,23,["H1121"]],[23,25,["H5983"]],[25,28,["H1961"]],[28,29,["H7218"]],[29,31,["H3605"]],[31,33,["H3427"]],[33,35,["H1568"]]]},{"k":6830,"v":[[0,2,["H3316"]],[2,4,["H1569"]],[4,5,["H1961"]],[5,8,["H1368"]],[8,10,["H2428"]],[10,12,["H1931"]],[12,15,["H1121"]],[15,18,["H802","H2181"]],[18,20,["H1568"]],[20,21,["H3205","(H853)"]],[21,22,["H3316"]]]},{"k":6831,"v":[[0,2,["H1568"]],[2,3,["H802"]],[3,4,["H3205"]],[4,6,["H1121"]],[6,9,["H802"]],[9,10,["H1121"]],[10,12,["H1431"]],[12,16,["H1644","(H853)"]],[16,17,["H3316"]],[17,19,["H559"]],[19,24,["H3808"]],[24,25,["H5157"]],[25,28,["H1"]],[28,29,["H1004"]],[29,30,["H3588"]],[30,31,["H859"]],[31,34,["H1121"]],[34,37,["H312"]],[37,38,["H802"]]]},{"k":6832,"v":[[0,2,["H3316"]],[2,3,["H1272"]],[3,4,["H4480","H6440"]],[4,6,["H251"]],[6,8,["H3427"]],[8,11,["H776"]],[11,13,["H2897"]],[13,17,["H3950"]],[17,18,["H7386"]],[18,19,["H376"]],[19,20,["H413"]],[20,21,["H3316"]],[21,24,["H3318"]],[24,25,["H5973"]],[25,26,[]]]},{"k":6833,"v":[[0,5,["H1961"]],[5,9,["H4480","H3117"]],[9,12,["H1121"]],[12,14,["H5983"]],[14,16,["H3898"]],[16,17,["H5973"]],[17,18,["H3478"]]]},{"k":6834,"v":[[0,3,["H1961"]],[3,6,["H834"]],[6,8,["H1121"]],[8,10,["H5983"]],[10,12,["H3898"]],[12,13,["H5973"]],[13,14,["H3478"]],[14,16,["H2205"]],[16,18,["H1568"]],[18,19,["H1980"]],[19,21,["H3947","(H853)"]],[21,22,["H3316"]],[22,26,["H4480","H776"]],[26,28,["H2897"]]]},{"k":6835,"v":[[0,3,["H559"]],[3,5,["H3316"]],[5,6,["H1980"]],[6,8,["H1961"]],[8,10,["H7101"]],[10,14,["H3898"]],[14,17,["H1121"]],[17,19,["H5983"]]]},{"k":6836,"v":[[0,2,["H3316"]],[2,3,["H559"]],[3,6,["H2205"]],[6,8,["H1568"]],[8,10,["H3808"]],[10,11,["H859"]],[11,12,["H8130"]],[12,15,["H1644"]],[15,20,["H1"]],[20,21,["H4480","H1004"]],[21,23,["H4069"]],[23,26,["H935"]],[26,27,["H413"]],[27,29,["H6258"]],[29,30,["H834"]],[30,34,["H6862"]]]},{"k":6837,"v":[[0,3,["H2205"]],[3,5,["H1568"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3316"]],[8,9,["H3651"]],[9,12,["H7725"]],[12,13,["H413"]],[13,15,["H6258"]],[15,19,["H1980"]],[19,20,["H5973"]],[20,23,["H3898"]],[23,26,["H1121"]],[26,28,["H5983"]],[28,30,["H1961"]],[30,32,["H7218"]],[32,34,["H3605"]],[34,36,["H3427"]],[36,38,["H1568"]]]},{"k":6838,"v":[[0,2,["H3316"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H2205"]],[6,8,["H1568"]],[8,9,["H518"]],[9,10,["H859"]],[10,14,["H7725","(H853)"]],[14,16,["H3898"]],[16,19,["H1121"]],[19,21,["H5983"]],[21,24,["H3068"]],[24,25,["H5414"]],[25,27,["H6440"]],[27,30,["H595"]],[30,31,["H1961"]],[31,33,["H7218"]]]},{"k":6839,"v":[[0,3,["H2205"]],[3,5,["H1568"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3316"]],[8,10,["H3068"]],[10,11,["H1961"]],[11,12,["H8085"]],[12,13,["H996"]],[13,15,["H518"]],[15,17,["H6213"]],[17,18,["H3808"]],[18,19,["H3651"]],[19,23,["H1697"]]]},{"k":6840,"v":[[0,2,["H3316"]],[2,3,["H1980"]],[3,4,["H5973"]],[4,6,["H2205"]],[6,8,["H1568"]],[8,11,["H5971"]],[11,12,["H7760"]],[12,14,["H7218"]],[14,16,["H7101"]],[16,17,["H5921"]],[17,20,["H3316"]],[20,21,["H1696","(H853)"]],[21,22,["H3605"]],[22,24,["H1697"]],[24,25,["H6440"]],[25,27,["H3068"]],[27,29,["H4709"]]]},{"k":6841,"v":[[0,2,["H3316"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,7,["H4428"]],[7,10,["H1121"]],[10,12,["H5983"]],[12,13,["H559"]],[13,14,["H4100"]],[14,21,["H3588"]],[21,24,["H935"]],[24,25,["H413"]],[25,28,["H3898"]],[28,31,["H776"]]]},{"k":6842,"v":[[0,3,["H4428"]],[3,6,["H1121"]],[6,8,["H5983"]],[8,9,["H559"]],[9,10,["H413"]],[10,12,["H4397"]],[12,14,["H3316"]],[14,15,["H3588"]],[15,16,["H3478"]],[16,18,["H3947","(H853)"]],[18,20,["H776"]],[20,24,["H5927"]],[24,27,["H4480","H4714"]],[27,29,["H4480","H769"]],[29,31,["H5704"]],[31,32,["H2999"]],[32,34,["H5704"]],[34,35,["H3383"]],[35,36,["H6258"]],[36,41,["H7725","(H853)"]],[41,42,["H7965"]]]},{"k":6843,"v":[[0,2,["H3316"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H3254","H5750"]],[5,6,["H413"]],[6,8,["H4428"]],[8,11,["H1121"]],[11,13,["H5983"]]]},{"k":6844,"v":[[0,2,["H559"]],[2,5,["H3541"]],[5,6,["H559"]],[6,7,["H3316"]],[7,8,["H3478"]],[8,11,["H3947","H3808","(H853)"]],[11,13,["H776"]],[13,15,["H4124"]],[15,18,["H776"]],[18,21,["H1121"]],[21,23,["H5983"]]]},{"k":6845,"v":[[0,1,["H3588"]],[1,3,["H3478"]],[3,5,["H5927"]],[5,7,["H4480","H4714"]],[7,9,["H1980"]],[9,12,["H4057"]],[12,13,["H5704"]],[13,15,["H5488"]],[15,16,["H3220"]],[16,18,["H935"]],[18,20,["H6946"]]]},{"k":6846,"v":[[0,2,["H3478"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,7,["H4428"]],[7,9,["H123"]],[9,10,["H559"]],[10,15,["H4994"]],[15,16,["H5674"]],[16,19,["H776"]],[19,22,["H4428"]],[22,24,["H123"]],[24,26,["H3808"]],[26,27,["H8085"]],[27,32,["H1571"]],[32,34,["H7971"]],[34,35,["H413"]],[35,37,["H4428"]],[37,39,["H4124"]],[39,42,["H14"]],[42,43,["H3808"]],[43,46,["H3478"]],[46,47,["H3427"]],[47,49,["H6946"]]]},{"k":6847,"v":[[0,4,["H1980"]],[4,7,["H4057"]],[7,9,["H5437","(H853)"]],[9,11,["H776"]],[11,13,["H123"]],[13,16,["H776"]],[16,18,["H4124"]],[18,20,["H935"]],[20,24,["H4480","H4217","H8121"]],[24,27,["H776"]],[27,29,["H4124"]],[29,31,["H2583"]],[31,35,["H5676"]],[35,37,["H769"]],[37,39,["H935"]],[39,40,["H3808"]],[40,43,["H1366"]],[43,45,["H4124"]],[45,46,["H3588"]],[46,47,["H769"]],[47,50,["H1366"]],[50,52,["H4124"]]]},{"k":6848,"v":[[0,2,["H3478"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H5511"]],[6,7,["H4428"]],[7,10,["H567"]],[10,12,["H4428"]],[12,14,["H2809"]],[14,16,["H3478"]],[16,17,["H559"]],[17,22,["H5674"]],[22,25,["H4994"]],[25,28,["H776"]],[28,29,["H5704"]],[29,31,["H4725"]]]},{"k":6849,"v":[[0,2,["H5511"]],[2,3,["H539"]],[3,4,["H3808","(H853)"]],[4,5,["H3478"]],[5,7,["H5674"]],[7,10,["H1366"]],[10,12,["H5511"]],[12,17,["H622","(H853)","H3605","H5971"]],[17,19,["H2583"]],[19,21,["H3096"]],[21,23,["H3898"]],[23,24,["H5973"]],[24,25,["H3478"]]]},{"k":6850,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,6,["H3478"]],[6,7,["H5414","(H853)"]],[7,8,["H5511"]],[8,10,["H3605"]],[10,12,["H5971"]],[12,15,["H3027"]],[15,17,["H3478"]],[17,20,["H5221"]],[20,23,["H3478"]],[23,24,["H3423","(H853)"]],[24,25,["H3605"]],[25,27,["H776"]],[27,30,["H567"]],[30,32,["H3427"]],[32,34,["H1931"]],[34,35,["H776"]]]},{"k":6851,"v":[[0,3,["H3423","(H853)"]],[3,4,["H3605"]],[4,6,["H1366"]],[6,9,["H567"]],[9,11,["H4480","H769"]],[11,13,["H5704"]],[13,14,["H2999"]],[14,16,["H4480"]],[16,18,["H4057"]],[18,20,["H5704"]],[20,21,["H3383"]]]},{"k":6852,"v":[[0,2,["H6258"]],[2,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,9,["H3423","(H853)"]],[9,11,["H567"]],[11,13,["H4480","H6440"]],[13,15,["H5971"]],[15,16,["H3478"]],[16,19,["H859"]],[19,20,["H3423"]],[20,21,[]]]},{"k":6853,"v":[[0,2,["H3808"]],[2,4,["H3423","(H853)"]],[4,6,["H834"]],[6,7,["H3645"]],[7,9,["H430"]],[9,13,["H3423"]],[13,15,["H3605","H834"]],[15,17,["H3068"]],[17,19,["H430"]],[19,22,["H3423"]],[22,24,["H4480","H6440"]],[24,29,["H3423"]]]},{"k":6854,"v":[[0,2,["H6258"]],[2,4,["H859"]],[4,7,["H2896","H2896"]],[7,9,["H4480","H1111"]],[9,11,["H1121"]],[11,13,["H6834"]],[13,14,["H4428"]],[14,16,["H4124"]],[16,20,["H7378","H7378"]],[20,21,["H5973"]],[21,22,["H3478"]],[22,23,["H518"]],[23,27,["H3898","H3898"]],[27,29,[]]]},{"k":6855,"v":[[0,2,["H3478"]],[2,3,["H3427"]],[3,5,["H2809"]],[5,8,["H1323"]],[8,11,["H6177"]],[11,14,["H1323"]],[14,17,["H3605"]],[17,19,["H5892"]],[19,20,["H834"]],[20,23,["H5921"]],[23,25,["H3027"]],[25,27,["H769"]],[27,28,["H7969"]],[28,29,["H3967"]],[29,30,["H8141"]],[30,31,["H4069"]],[31,35,["H3808"]],[35,36,["H5337"]],[36,39,["H1931"]],[39,40,["H6256"]]]},{"k":6856,"v":[[0,2,["H595"]],[2,4,["H3808"]],[4,5,["H2398"]],[5,9,["H859"]],[9,10,["H6213"]],[10,12,["H7451"]],[12,14,["H3898"]],[14,18,["H3068"]],[18,20,["H8199"]],[20,22,["H8199"]],[22,24,["H3117"]],[24,25,["H996"]],[25,27,["H1121"]],[27,29,["H3478"]],[29,32,["H1121"]],[32,34,["H5983"]]]},{"k":6857,"v":[[0,3,["H4428"]],[3,6,["H1121"]],[6,8,["H5983"]],[8,9,["H8085"]],[9,10,["H3808"]],[10,11,["H413"]],[11,13,["H1697"]],[13,15,["H3316"]],[15,16,["H834"]],[16,18,["H7971","H413"]],[18,19,[]]]},{"k":6858,"v":[[0,3,["H7307"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H5921"]],[8,9,["H3316"]],[9,13,["H5674","(H853)"]],[13,14,["H1568"]],[14,16,["H4519"]],[16,19,["H5674","(H853)"]],[19,20,["H4708"]],[20,22,["H1568"]],[22,25,["H4480","H4708"]],[25,27,["H1568"]],[27,30,["H5674"]],[30,33,["H1121"]],[33,35,["H5983"]]]},{"k":6859,"v":[[0,2,["H3316"]],[2,3,["H5087"]],[3,5,["H5088"]],[5,8,["H3068"]],[8,10,["H559"]],[10,11,["H518"]],[11,16,["H5414","H5414","(H853)"]],[16,18,["H1121"]],[18,20,["H5983"]],[20,23,["H3027"]]]},{"k":6860,"v":[[0,4,["H1961"]],[4,6,["H834"]],[6,8,["H3318"]],[8,11,["H4480","H1817"]],[11,14,["H1004"]],[14,16,["H7125"]],[16,20,["H7725"]],[20,22,["H7965"]],[22,25,["H4480","H1121"]],[25,27,["H5983"]],[27,30,["H1961"]],[30,32,["H3068"]],[32,38,["H5927"]],[38,42,["H5930"]]]},{"k":6861,"v":[[0,2,["H3316"]],[2,4,["H5674"]],[4,5,["H413"]],[5,7,["H1121"]],[7,9,["H5983"]],[9,11,["H3898"]],[11,16,["H3068"]],[16,17,["H5414"]],[17,21,["H3027"]]]},{"k":6862,"v":[[0,3,["H5221"]],[3,6,["H4480","H6177"]],[6,8,["H5704"]],[8,10,["H935"]],[10,12,["H4511"]],[12,14,["H6242"]],[14,15,["H5892"]],[15,17,["H5704"]],[17,19,["H58"]],[19,22,["H3754"]],[22,25,["H3966"]],[25,26,["H1419"]],[26,27,["H4347"]],[27,30,["H1121"]],[30,32,["H5983"]],[32,34,["H3665"]],[34,35,["H4480","H6440"]],[35,37,["H1121"]],[37,39,["H3478"]]]},{"k":6863,"v":[[0,2,["H3316"]],[2,3,["H935"]],[3,5,["H4709"]],[5,6,["H413"]],[6,8,["H1004"]],[8,10,["H2009"]],[10,12,["H1323"]],[12,14,["H3318"]],[14,16,["H7125"]],[16,19,["H8596"]],[19,22,["H4246"]],[22,24,["H1931"]],[24,28,["H3173"]],[28,29,["H4480"]],[29,33,["H369"]],[33,34,["H1121"]],[34,35,["H176"]],[35,36,["H1323"]]]},{"k":6864,"v":[[0,5,["H1961"]],[5,8,["H7200"]],[8,12,["H7167","(H853)"]],[12,14,["H899"]],[14,16,["H559"]],[16,17,["H162"]],[17,19,["H1323"]],[19,25,["H3766","H3766"]],[25,27,["H859"]],[27,28,["H1961"]],[28,33,["H5916"]],[33,36,["H595"]],[36,38,["H6475"]],[38,40,["H6310"]],[40,41,["H413"]],[41,43,["H3068"]],[43,46,["H3808","H3201"]],[46,48,["H7725"]]]},{"k":6865,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H1"]],[7,11,["H6475","(H853)"]],[11,13,["H6310"]],[13,14,["H413"]],[14,16,["H3068"]],[16,17,["H6213"]],[17,23,["H834"]],[23,26,["H3318"]],[26,29,["H4480","H6310"]],[29,30,["H310","H834"]],[30,33,["H3068"]],[33,35,["H6213"]],[35,36,["H5360"]],[36,41,["H4480","H341"]],[41,45,["H4480","H1121"]],[45,47,["H5983"]]]},{"k":6866,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1"]],[6,8,["H2088"]],[8,9,["H1697"]],[9,11,["H6213"]],[11,16,["H7503","H4480"]],[16,17,["H8147"]],[17,18,["H2320"]],[18,23,["H1980"]],[23,25,["H3381"]],[25,26,["H5921"]],[26,28,["H2022"]],[28,30,["H1058","H5921"]],[30,32,["H1331"]],[32,33,["H595"]],[33,36,["H7464"]]]},{"k":6867,"v":[[0,3,["H559"]],[3,4,["H1980"]],[4,9,["H7971","(H853)"]],[9,11,["H8147"]],[11,12,["H2320"]],[12,14,["H1931"]],[14,15,["H1980"]],[15,18,["H7464"]],[18,20,["H1058","H5921"]],[20,22,["H1331"]],[22,23,["H5921"]],[23,25,["H2022"]]]},{"k":6868,"v":[[0,5,["H1961"]],[5,8,["H4480","H7093"]],[8,10,["H8147"]],[10,11,["H2320"]],[11,14,["H7725"]],[14,15,["H413"]],[15,17,["H1"]],[17,19,["H6213"]],[19,23,["(H853)"]],[23,25,["H5088"]],[25,26,["H834"]],[26,29,["H5087"]],[29,31,["H1931"]],[31,32,["H3045"]],[32,33,["H3808"]],[33,34,["H376"]],[34,37,["H1961"]],[37,39,["H2706"]],[39,41,["H3478"]]]},{"k":6869,"v":[[0,3,["H1323"]],[3,5,["H3478"]],[5,6,["H1980"]],[6,7,["H4480","H3117","H3117"]],[7,9,["H8567"]],[9,11,["H1323"]],[11,13,["H3316"]],[13,15,["H1569"]],[15,16,["H702"]],[16,17,["H3117"]],[17,20,["H8141"]]]},{"k":6870,"v":[[0,3,["H376"]],[3,5,["H669"]],[5,8,["H6817"]],[8,10,["H5674"]],[10,11,["H6828"]],[11,13,["H559"]],[13,15,["H3316"]],[15,16,["H4069"]],[16,19,["H5674"]],[19,21,["H3898"]],[21,24,["H1121"]],[24,26,["H5983"]],[26,29,["H3808"]],[29,30,["H7121"]],[30,33,["H1980"]],[33,34,["H5973"]],[34,38,["H8313"]],[38,40,["H1004"]],[40,41,["H5921"]],[41,44,["H784"]]]},{"k":6871,"v":[[0,2,["H3316"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H589"]],[6,9,["H5971"]],[9,10,["H1961"]],[10,13,["H376","H7379","H3966"]],[13,16,["H1121"]],[16,18,["H5983"]],[18,22,["H2199"]],[22,25,["H3467"]],[25,27,["H3808"]],[27,31,["H4480","H3027"]]]},{"k":6872,"v":[[0,4,["H7200"]],[4,5,["H3588"]],[5,7,["H3467"]],[7,9,["H369"]],[9,11,["H7760"]],[11,13,["H5315"]],[13,16,["H3709"]],[16,19,["H5674"]],[19,20,["H413"]],[20,22,["H1121"]],[22,24,["H5983"]],[24,27,["H3068"]],[27,28,["H5414"]],[28,32,["H3027"]],[32,33,["H4100"]],[33,38,["H5927"]],[38,39,["H413"]],[39,41,["H2088"]],[41,42,["H3117"]],[42,44,["H3898"]],[44,46,[]]]},{"k":6873,"v":[[0,2,["H3316"]],[2,4,["H6908","(H853)"]],[4,5,["H3605"]],[5,7,["H376"]],[7,9,["H1568"]],[9,11,["H3898"]],[11,12,["H854"]],[12,13,["H669"]],[13,16,["H376"]],[16,18,["H1568"]],[18,19,["H5221","(H853)"]],[19,20,["H669"]],[20,21,["H3588"]],[21,23,["H559"]],[23,24,["H859"]],[24,25,["H1568"]],[25,27,["H6412"]],[27,29,["H669"]],[29,30,["H8432"]],[30,32,["H669"]],[32,34,["H8432"]],[34,36,["H4519"]]]},{"k":6874,"v":[[0,3,["H1568"]],[3,4,["H3920","(H853)"]],[4,6,["H4569"]],[6,8,["H3383"]],[8,11,["H669"]],[11,14,["H1961"]],[14,17,["H3588"]],[17,19,["H669"]],[19,22,["H6412"]],[22,23,["H559"]],[23,27,["H5674"]],[27,30,["H376"]],[30,32,["H1568"]],[32,33,["H559"]],[33,37,["H859"]],[37,39,["H673"]],[39,42,["H559"]],[42,43,["H3808"]]]},{"k":6875,"v":[[0,2,["H559"]],[2,6,["H559"]],[6,7,["H4994"]],[7,8,["H7641"]],[8,11,["H559"]],[11,12,["H5451"]],[12,16,["H3808"]],[16,17,["H3559"]],[17,19,["H1696"]],[19,21,["H3651"]],[21,24,["H270"]],[24,27,["H7819"]],[27,29,["H413"]],[29,31,["H4569"]],[31,33,["H3383"]],[33,36,["H5307"]],[36,38,["H1931"]],[38,39,["H6256"]],[39,42,["H4480","H669"]],[42,43,["H705"]],[43,45,["H8147"]],[45,46,["H505"]]]},{"k":6876,"v":[[0,2,["H3316"]],[2,3,["H8199","(H853)"]],[3,4,["H3478"]],[4,5,["H8337"]],[5,6,["H8141"]],[6,8,["H4191"]],[8,9,["H3316"]],[9,11,["H1569"]],[11,14,["H6912"]],[14,19,["H5892"]],[19,21,["H1568"]]]},{"k":6877,"v":[[0,2,["H310"]],[2,4,["H78"]],[4,6,["H4480","H1035"]],[6,7,["H8199","(H853)"]],[7,8,["H3478"]]]},{"k":6878,"v":[[0,3,["H1961"]],[3,4,["H7970"]],[4,5,["H1121"]],[5,7,["H7970"]],[7,8,["H1323"]],[8,11,["H7971"]],[11,12,["H2351"]],[12,15,["H935"]],[15,16,["H7970"]],[16,17,["H1323"]],[17,18,["H4480"]],[18,19,["H2351"]],[19,22,["H1121"]],[22,25,["H8199","(H853)"]],[25,26,["H3478"]],[26,27,["H7651"]],[27,28,["H8141"]]]},{"k":6879,"v":[[0,2,["H4191"]],[2,3,["H78"]],[3,6,["H6912"]],[6,8,["H1035"]]]},{"k":6880,"v":[[0,2,["H310"]],[2,4,["H356"]],[4,6,["H2075"]],[6,7,["H8199","(H853)"]],[7,8,["H3478"]],[8,11,["H8199","(H853)"]],[11,12,["H3478"]],[12,13,["H6235"]],[13,14,["H8141"]]]},{"k":6881,"v":[[0,2,["H356"]],[2,4,["H2075"]],[4,5,["H4191"]],[5,8,["H6912"]],[8,10,["H357"]],[10,13,["H776"]],[13,15,["H2075"]]]},{"k":6882,"v":[[0,2,["H310"]],[2,4,["H5658"]],[4,6,["H1121"]],[6,8,["H1985"]],[8,10,["H6553"]],[10,11,["H8199","(H853)"]],[11,12,["H3478"]]]},{"k":6883,"v":[[0,3,["H1961"]],[3,4,["H705"]],[4,5,["H1121"]],[5,7,["H7970"]],[7,8,["H1121","H1121"]],[8,10,["H7392"]],[10,11,["H5921"]],[11,14,["H7657"]],[14,16,["H5895"]],[16,19,["H8199","(H853)"]],[19,20,["H3478"]],[20,21,["H8083"]],[21,22,["H8141"]]]},{"k":6884,"v":[[0,2,["H5658"]],[2,4,["H1121"]],[4,6,["H1985"]],[6,8,["H6553"]],[8,9,["H4191"]],[9,12,["H6912"]],[12,14,["H6552"]],[14,17,["H776"]],[17,19,["H669"]],[19,22,["H2022"]],[22,25,["H6003"]]]},{"k":6885,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,7,["H7451"]],[7,8,["H3254"]],[8,11,["H5869"]],[11,14,["H3068"]],[14,17,["H3068"]],[17,18,["H5414"]],[18,22,["H3027"]],[22,25,["H6430"]],[25,26,["H705"]],[26,27,["H8141"]]]},{"k":6886,"v":[[0,3,["H1961"]],[3,5,["H259"]],[5,6,["H376"]],[6,8,["H4480","H6881"]],[8,11,["H4480","H4940"]],[11,14,["H1839"]],[14,16,["H8034"]],[16,18,["H4495"]],[18,21,["H802"]],[21,23,["H6135"]],[23,25,["H3205"]],[25,26,["H3808"]]]},{"k":6887,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H7200"]],[7,8,["H413"]],[8,10,["H802"]],[10,12,["H559"]],[12,13,["H413"]],[13,15,["H2009"]],[15,16,["H4994"]],[16,17,["H859"]],[17,19,["H6135"]],[19,21,["H3205"]],[21,22,["H3808"]],[22,26,["H2029"]],[26,28,["H3205"]],[28,30,["H1121"]]]},{"k":6888,"v":[[0,1,["H6258"]],[1,3,["H8104"]],[3,6,["H4994"]],[6,8,["H8354"]],[8,9,["H408"]],[9,10,["H3196"]],[10,13,["H7941"]],[13,15,["H398"]],[15,16,["H408"]],[16,17,["H3605"]],[17,18,["H2931"]],[18,19,[]]]},{"k":6889,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,5,["H2029"]],[5,7,["H3205"]],[7,9,["H1121"]],[9,11,["H3808"]],[11,12,["H4177"]],[12,14,["H5927"]],[14,15,["H5921"]],[15,17,["H7218"]],[17,18,["H3588"]],[18,20,["H5288"]],[20,22,["H1961"]],[22,24,["H5139"]],[24,26,["H430"]],[26,27,["H4480"]],[27,29,["H990"]],[29,31,["H1931"]],[31,33,["H2490"]],[33,35,["H3467","(H853)"]],[35,36,["H3478"]],[36,40,["H4480","H3027"]],[40,43,["H6430"]]]},{"k":6890,"v":[[0,3,["H802"]],[3,4,["H935"]],[4,6,["H559"]],[6,8,["H376"]],[8,9,["H559"]],[9,11,["H376"]],[11,13,["H430"]],[13,14,["H935"]],[14,15,["H413"]],[15,19,["H4758"]],[19,23,["H4758"]],[23,26,["H4397"]],[26,28,["H430"]],[28,29,["H3966"]],[29,30,["H3372"]],[30,33,["H7592"]],[33,35,["H3808"]],[35,36,["H335","H4480","H2088"]],[36,37,["H1931"]],[37,39,["H3808"]],[39,40,["H5046"]],[40,44,["H8034"]]]},{"k":6891,"v":[[0,3,["H559"]],[3,6,["H2009"]],[6,9,["H2029"]],[9,11,["H3205"]],[11,13,["H1121"]],[13,15,["H6258"]],[15,16,["H8354"]],[16,17,["H408"]],[17,18,["H3196"]],[18,21,["H7941"]],[21,22,["H408"]],[22,23,["H398"]],[23,24,["H3605"]],[24,25,["H2932"]],[25,27,["H3588"]],[27,29,["H5288"]],[29,31,["H1961"]],[31,33,["H5139"]],[33,35,["H430"]],[35,36,["H4480"]],[36,38,["H990"]],[38,39,["H5704"]],[39,41,["H3117"]],[41,44,["H4194"]]]},{"k":6892,"v":[[0,2,["H4495"]],[2,3,["H6279","H413"]],[3,5,["H3068"]],[5,7,["H559"]],[7,8,["H994"]],[8,10,["H136"]],[10,13,["H376"]],[13,15,["H430"]],[15,16,["H834"]],[16,19,["H7971"]],[19,20,["H935"]],[20,21,["H5750"]],[21,22,["H413"]],[22,25,["H3384"]],[25,27,["H4100"]],[27,30,["H6213"]],[30,33,["H5288"]],[33,37,["H3205"]]]},{"k":6893,"v":[[0,2,["H430"]],[2,3,["H8085"]],[3,6,["H6963"]],[6,8,["H4495"]],[8,11,["H4397"]],[11,13,["H430"]],[13,14,["H935"]],[14,15,["H5750"]],[15,16,["H413"]],[16,18,["H802"]],[18,20,["H1931"]],[20,21,["H3427"]],[21,24,["H7704"]],[24,26,["H4495"]],[26,28,["H376"]],[28,30,["H369"]],[30,31,["H5973"]],[31,32,[]]]},{"k":6894,"v":[[0,3,["H802"]],[3,5,["H4116"]],[5,7,["H7323"]],[7,9,["H5046"]],[9,11,["H376"]],[11,13,["H559"]],[13,14,["H413"]],[14,16,["H2009"]],[16,18,["H376"]],[18,20,["H7200"]],[20,21,["H413"]],[21,23,["H834"]],[23,24,["H935"]],[24,25,["H413"]],[25,29,["H3117"]]]},{"k":6895,"v":[[0,2,["H4495"]],[2,3,["H6965"]],[3,5,["H1980"]],[5,6,["H310"]],[6,8,["H802"]],[8,10,["H935"]],[10,11,["H413"]],[11,13,["H376"]],[13,15,["H559"]],[15,19,["H859"]],[19,21,["H376"]],[21,22,["H834"]],[22,23,["H1696"]],[23,24,["H413"]],[24,26,["H802"]],[26,29,["H559"]],[29,30,["H589"]],[30,31,[]]]},{"k":6896,"v":[[0,2,["H4495"]],[2,3,["H559"]],[3,4,["H6258"]],[4,7,["H1697"]],[7,10,["H935"]],[10,11,["H4100"]],[11,14,["H1961","H4941"]],[14,16,["H5288"]],[16,21,["H4639"]],[21,23,[]]]},{"k":6897,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H4495"]],[9,11,["H4480","H3605"]],[11,12,["H834"]],[12,14,["H559"]],[14,15,["H413"]],[15,17,["H802"]],[17,20,["H8104"]]]},{"k":6898,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,6,["H4480","H3605"]],[6,8,["H834"]],[8,9,["H3318"]],[9,12,["H4480","H1612"]],[12,13,["H408"]],[13,16,["H8354"]],[16,17,["H3196"]],[17,20,["H7941"]],[20,21,["H408"]],[21,22,["H398"]],[22,23,["H3605"]],[23,24,["H2932"]],[24,26,["H3605"]],[26,27,["H834"]],[27,29,["H6680"]],[29,33,["H8104"]]]},{"k":6899,"v":[[0,2,["H4495"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4397"]],[6,9,["H3068"]],[9,12,["H4994"]],[12,15,["H6113"]],[15,22,["H6213"]],[22,24,["H1423","H5795"]],[24,25,["H6440"]],[25,26,[]]]},{"k":6900,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H4495"]],[9,10,["H518"]],[10,12,["H6113"]],[12,16,["H3808"]],[16,17,["H398"]],[17,20,["H3899"]],[20,22,["H518"]],[22,25,["H6213"]],[25,28,["H5930"]],[28,31,["H5927"]],[31,35,["H3068"]],[35,36,["H3588"]],[36,37,["H4495"]],[37,38,["H3045"]],[38,39,["H3808"]],[39,40,["H3588"]],[40,41,["H1931"]],[41,44,["H4397"]],[44,47,["H3068"]]]},{"k":6901,"v":[[0,2,["H4495"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4397"]],[6,9,["H3068"]],[9,10,["H4310"]],[10,13,["H8034"]],[13,15,["H3588"]],[15,17,["H1697"]],[17,20,["H935"]],[20,25,["H3513"]]]},{"k":6902,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H559"]],[7,10,["H4100"]],[10,11,["H7592"]],[11,13,["H2088"]],[13,16,["H8034"]],[16,18,["H1931"]],[18,20,["H6383"]]]},{"k":6903,"v":[[0,2,["H4495"]],[2,3,["H3947","(H853)"]],[3,5,["H1423","H5795"]],[5,6,["H854"]],[6,9,["H4503"]],[9,11,["H5927"]],[11,13,["H5921"]],[13,15,["H6697"]],[15,18,["H3068"]],[18,22,["H6213"]],[22,23,["H6381"]],[23,25,["H4495"]],[25,28,["H802"]],[28,30,["H7200"]]]},{"k":6904,"v":[[0,5,["H1961"]],[5,8,["H3851"]],[8,10,["H5927"]],[10,12,["H8064"]],[12,14,["H4480","H5921"]],[14,16,["H4196"]],[16,19,["H4397"]],[19,22,["H3068"]],[22,23,["H5927"]],[23,26,["H3851"]],[26,29,["H4196"]],[29,31,["H4495"]],[31,34,["H802"]],[34,36,["H7200"]],[36,39,["H5307"]],[39,40,["H5921"]],[40,42,["H6440"]],[42,45,["H776"]]]},{"k":6905,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,8,["H3808"]],[8,9,["H3254"]],[9,10,["H7200"]],[10,11,["H413"]],[11,12,["H4495"]],[12,14,["H413"]],[14,16,["H802"]],[16,17,["H227"]],[17,18,["H4495"]],[18,19,["H3045"]],[19,20,["H3588"]],[20,21,["H1931"]],[21,24,["H4397"]],[24,27,["H3068"]]]},{"k":6906,"v":[[0,2,["H4495"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H802"]],[6,10,["H4191","H4191"]],[10,11,["H3588"]],[11,14,["H7200"]],[14,15,["H430"]]]},{"k":6907,"v":[[0,3,["H802"]],[3,4,["H559"]],[4,7,["H3863"]],[7,9,["H3068"]],[9,11,["H2654"]],[11,13,["H4191"]],[13,17,["H3808"]],[17,19,["H3947"]],[19,22,["H5930"]],[22,26,["H4503"]],[26,29,["H4480","H3027"]],[29,30,["H3808"]],[30,34,["H7200"]],[34,35,["(H853)"]],[35,36,["H3605"]],[36,37,["H428"]],[37,39,["H3808"]],[39,44,["H6256"]],[44,46,["H8085"]],[46,51,["H2063"]]]},{"k":6908,"v":[[0,3,["H802"]],[3,4,["H3205"]],[4,6,["H1121"]],[6,8,["H7121","(H853)"]],[8,10,["H8034"]],[10,11,["H8123"]],[11,14,["H5288"]],[14,15,["H1431"]],[15,18,["H3068"]],[18,19,["H1288"]],[19,20,[]]]},{"k":6909,"v":[[0,3,["H7307"]],[3,6,["H3068"]],[6,7,["H2490"]],[7,9,["H6470"]],[9,15,["H4264"]],[15,17,["H1835"]],[17,18,["H996"]],[18,19,["H6881"]],[19,21,["H847"]]]},{"k":6910,"v":[[0,2,["H8123"]],[2,4,["H3381"]],[4,6,["H8553"]],[6,8,["H7200"]],[8,10,["H802"]],[10,12,["H8553"]],[12,15,["H4480","H1323"]],[15,18,["H6430"]]]},{"k":6911,"v":[[0,4,["H5927"]],[4,6,["H5046"]],[6,8,["H1"]],[8,11,["H517"]],[11,13,["H559"]],[13,16,["H7200"]],[16,18,["H802"]],[18,20,["H8553"]],[20,23,["H4480","H1323"]],[23,26,["H6430"]],[26,27,["H6258"]],[27,29,["H3947"]],[29,34,["H802"]]]},{"k":6912,"v":[[0,3,["H1"]],[3,6,["H517"]],[6,7,["H559"]],[7,12,["H369"]],[12,14,["H802"]],[14,17,["H1323"]],[17,20,["H251"]],[20,23,["H3605"]],[23,25,["H5971"]],[25,26,["H3588"]],[26,27,["H859"]],[27,28,["H1980"]],[28,30,["H3947"]],[30,32,["H802"]],[32,35,["H6189"]],[35,36,["H4480","H6430"]],[36,38,["H8123"]],[38,39,["H559"]],[39,40,["H413"]],[40,42,["H1"]],[42,43,["H3947"]],[43,47,["H3588"]],[47,48,["H1931"]],[48,51,["H3474","H5869"]]]},{"k":6913,"v":[[0,3,["H1"]],[3,6,["H517"]],[6,7,["H3045"]],[7,8,["H3808"]],[8,9,["H3588"]],[9,10,["H1931"]],[10,14,["H4480","H3068"]],[14,15,["H3588"]],[15,16,["H1931"]],[16,17,["H1245"]],[17,19,["H8385"]],[19,22,["H4480","H6430"]],[22,25,["H1931"]],[25,26,["H6256"]],[26,28,["H6430"]],[28,30,["H4910"]],[30,32,["H3478"]]]},{"k":6914,"v":[[0,4,["H3381","H8123"]],[4,7,["H1"]],[7,10,["H517"]],[10,12,["H8553"]],[12,14,["H935"]],[14,15,["H5704"]],[15,17,["H3754"]],[17,19,["H8553"]],[19,21,["H2009"]],[21,23,["H3715"]],[23,24,["H738"]],[24,25,["H7580"]],[25,26,["H7125"]],[26,27,[]]]},{"k":6915,"v":[[0,3,["H7307"]],[3,6,["H3068"]],[6,8,["H6743"]],[8,9,["H5921"]],[9,13,["H8156"]],[13,19,["H8156"]],[19,21,["H1423"]],[21,25,["H3972","H369"]],[25,28,["H3027"]],[28,31,["H5046"]],[31,32,["H3808"]],[32,34,["H1"]],[34,37,["H517","(H853)"]],[37,38,["H834"]],[38,41,["H6213"]]]},{"k":6916,"v":[[0,4,["H3381"]],[4,6,["H1696"]],[6,9,["H802"]],[9,14,["H3474","H5869","H8123"]]]},{"k":6917,"v":[[0,4,["H4480","H3117"]],[4,6,["H7725"]],[6,8,["H3947"]],[8,13,["H5493"]],[13,15,["H7200","(H853)"]],[15,17,["H4658"]],[17,20,["H738"]],[20,22,["H2009"]],[22,26,["H5712"]],[26,28,["H1682"]],[28,30,["H1706"]],[30,33,["H1472"]],[33,36,["H738"]]]},{"k":6918,"v":[[0,3,["H7287"]],[3,5,["H413"]],[5,7,["H3709"]],[7,10,["H1980","H1980"]],[10,11,["H398"]],[11,13,["H1980"]],[13,14,["H413"]],[14,16,["H1"]],[16,18,["H517"]],[18,21,["H5414"]],[21,26,["H398"]],[26,29,["H5046"]],[29,30,["H3808"]],[30,32,["H3588"]],[32,35,["H7287"]],[35,37,["H1706"]],[37,41,["H4480","H1472"]],[41,44,["H738"]]]},{"k":6919,"v":[[0,3,["H1"]],[3,5,["H3381"]],[5,6,["H413"]],[6,8,["H802"]],[8,10,["H8123"]],[10,11,["H6213"]],[11,12,["H8033"]],[12,14,["H4960"]],[14,15,["H3588"]],[15,16,["H3651"]],[16,20,["H970"]],[20,22,["H6213"]]]},{"k":6920,"v":[[0,5,["H1961"]],[5,8,["H7200"]],[8,12,["H3947"]],[12,13,["H7970"]],[13,14,["H4828"]],[14,16,["H1961"]],[16,17,["H854"]],[17,18,[]]]},{"k":6921,"v":[[0,2,["H8123"]],[2,3,["H559"]],[3,8,["H4994"]],[8,10,["H2330"]],[10,12,["H2420"]],[12,15,["H518"]],[15,19,["H5046","H5046"]],[19,24,["H7651"]],[24,25,["H3117"]],[25,28,["H4960"]],[28,32,["H4672"]],[32,36,["H5414"]],[36,38,["H7970"]],[38,39,["H5466"]],[39,41,["H7970"]],[41,42,["H2487"]],[42,44,["H899"]]]},{"k":6922,"v":[[0,2,["H518"]],[2,4,["H3201","H3808"]],[4,5,["H5046"]],[5,10,["H859"]],[10,11,["H5414"]],[11,13,["H7970"]],[13,14,["H5466"]],[14,16,["H7970"]],[16,17,["H2487"]],[17,19,["H899"]],[19,22,["H559"]],[22,26,["H2330"]],[26,28,["H2420"]],[28,32,["H8085"]],[32,33,[]]]},{"k":6923,"v":[[0,3,["H559"]],[3,9,["H4480","H398"]],[9,11,["H3318"]],[11,12,["H3978"]],[12,17,["H4480","H5794"]],[17,19,["H3318"]],[19,20,["H4966"]],[20,23,["H3201"]],[23,24,["H3808"]],[24,26,["H7969"]],[26,27,["H3117"]],[27,28,["H5046"]],[28,30,["H2420"]]]},{"k":6924,"v":[[0,5,["H1961"]],[5,8,["H7637"]],[8,9,["H3117"]],[9,12,["H559"]],[12,14,["H8123"]],[14,15,["H802"]],[15,16,["H6601","(H853)"]],[16,18,["H376"]],[18,22,["H5046"]],[22,24,["(H853)"]],[24,26,["H2420"]],[26,27,["H6435"]],[27,29,["H8313"]],[29,33,["H1"]],[33,34,["H1004"]],[34,36,["H784"]],[36,39,["H7121"]],[39,45,["H3423"]],[45,48,["H3808"]],[48,49,[]]]},{"k":6925,"v":[[0,2,["H8123"]],[2,3,["H802"]],[3,4,["H1058"]],[4,5,["H5921"]],[5,8,["H559"]],[8,11,["H7535"]],[11,12,["H8130"]],[12,15,["H157"]],[15,17,["H3808"]],[17,21,["H2330"]],[21,23,["H2420"]],[23,26,["H1121"]],[26,29,["H5971"]],[29,32,["H3808"]],[32,33,["H5046"]],[33,38,["H559"]],[38,41,["H2009"]],[41,44,["H3808"]],[44,45,["H5046"]],[45,48,["H1"]],[48,51,["H517"]],[51,55,["H5046"]],[55,57,[]]]},{"k":6926,"v":[[0,3,["H1058"]],[3,4,["H5921"]],[4,7,["H7651"]],[7,8,["H3117"]],[8,9,["H834"]],[9,11,["H4960"]],[11,12,["H1961"]],[12,17,["H1961"]],[17,20,["H7637"]],[20,21,["H3117"]],[21,24,["H5046"]],[24,26,["H3588"]],[26,29,["H6693"]],[29,34,["H5046"]],[34,36,["H2420"]],[36,39,["H1121"]],[39,42,["H5971"]]]},{"k":6927,"v":[[0,3,["H376"]],[3,6,["H5892"]],[6,7,["H559"]],[7,12,["H7637"]],[12,13,["H3117"]],[13,14,["H2962"]],[14,16,["H2775"]],[16,18,["H935"]],[18,19,["H4100"]],[19,21,["H4966"]],[21,23,["H4480","H1706"]],[23,25,["H4100"]],[25,27,["H5794"]],[27,30,["H4480","H738"]],[30,33,["H559"]],[33,36,["H3884"]],[36,40,["H2790"]],[40,43,["H5697"]],[43,46,["H3808"]],[46,48,["H4672"]],[48,50,["H2420"]]]},{"k":6928,"v":[[0,3,["H7307"]],[3,6,["H3068"]],[6,7,["H6743"]],[7,8,["H5921"]],[8,13,["H3381"]],[13,15,["H831"]],[15,17,["H5221"]],[17,18,["H7970"]],[18,19,["H376"]],[19,20,["H4480"]],[20,23,["H3947","(H853)"]],[23,25,["H2488"]],[25,27,["H5414"]],[27,30,["H2487"]],[30,34,["H5046"]],[34,36,["H2420"]],[36,39,["H639"]],[39,41,["H2734"]],[41,45,["H5927"]],[45,48,["H1"]],[48,49,["H1004"]]]},{"k":6929,"v":[[0,2,["H8123"]],[2,3,["H802"]],[3,4,["H1961"]],[4,8,["H4828"]],[8,9,["H834"]],[9,15,["H7462"]]]},{"k":6930,"v":[[0,5,["H1961"]],[5,8,["H4480","H3117"]],[8,12,["H3117"]],[12,14,["H2406"]],[14,15,["H7105"]],[15,17,["H8123"]],[17,18,["H6485","(H853)"]],[18,20,["H802"]],[20,23,["H1423","H5795"]],[23,26,["H559"]],[26,30,["H935"]],[30,31,["H413"]],[31,33,["H802"]],[33,36,["H2315"]],[36,39,["H1"]],[39,41,["H3808"]],[41,42,["H5414"]],[42,46,["H935"]]]},{"k":6931,"v":[[0,3,["H1"]],[3,4,["H559"]],[4,7,["H559","H559"]],[7,8,["H3588"]],[8,12,["H8130","H8130"]],[12,16,["H5414"]],[16,20,["H4828"]],[20,22,["H3808"]],[22,24,["H6996"]],[24,25,["H269"]],[25,26,["H2896"]],[26,27,["H4480"]],[27,29,["H1961"]],[29,33,["H4994"]],[33,34,["H8478"]],[34,36,[]]]},{"k":6932,"v":[[0,2,["H8123"]],[2,3,["H559"]],[3,6,["H6471"]],[6,11,["H5352"]],[11,14,["H4480","H6430"]],[14,15,["H3588"]],[15,16,["H589"]],[16,17,["H6213","H5973"]],[17,20,["H7451"]]]},{"k":6933,"v":[[0,2,["H8123"]],[2,3,["H1980"]],[3,5,["H3920"]],[5,6,["H7969"]],[6,7,["H3967"]],[7,8,["H7776"]],[8,10,["H3947"]],[10,11,["H3940"]],[11,13,["H6437"]],[13,14,["H2180"]],[14,15,["H413"]],[15,16,["H2180"]],[16,18,["H7760"]],[18,19,["H259"]],[19,20,["H3940"]],[20,23,["H8432"]],[23,24,["H996"]],[24,25,["H8147"]],[25,26,["H2180"]]]},{"k":6934,"v":[[0,5,["H1197"]],[5,7,["H3940"]],[7,9,["H784"]],[9,13,["H7971"]],[13,17,["H7054"]],[17,20,["H6430"]],[20,23,["H1197"]],[23,26,["H4480","H1430"]],[26,28,["H5704"]],[28,31,["H7054"]],[31,32,["H5704"]],[32,34,["H3754"]],[34,36,["H2132"]]]},{"k":6935,"v":[[0,3,["H6430"]],[3,4,["H559"]],[4,5,["H4310"]],[5,7,["H6213"]],[7,8,["H2063"]],[8,11,["H559"]],[11,12,["H8123"]],[12,16,["H2860"]],[16,19,["H8554"]],[19,20,["H3588"]],[20,23,["H3947","(H853)"]],[23,25,["H802"]],[25,27,["H5414"]],[27,31,["H4828"]],[31,34,["H6430"]],[34,36,["H5927"]],[36,38,["H8313"]],[38,42,["H1"]],[42,44,["H784"]]]},{"k":6936,"v":[[0,2,["H8123"]],[2,3,["H559"]],[3,6,["H518"]],[6,9,["H6213"]],[9,10,["H2063"]],[10,11,["H3588","H518"]],[11,15,["H5358"]],[15,20,["H310"]],[20,23,["H2308"]]]},{"k":6937,"v":[[0,3,["H5221"]],[3,5,["H7785"]],[5,6,["H5921"]],[6,7,["H3409"]],[7,10,["H1419"]],[10,11,["H4347"]],[11,15,["H3381"]],[15,17,["H3427"]],[17,20,["H5585"]],[20,23,["H5553"]],[23,24,["H5862"]]]},{"k":6938,"v":[[0,3,["H6430"]],[3,5,["H5927"]],[5,7,["H2583"]],[7,9,["H3063"]],[9,12,["H5203"]],[12,14,["H3896"]]]},{"k":6939,"v":[[0,3,["H376"]],[3,5,["H3063"]],[5,6,["H559"]],[6,7,["H4100"]],[7,11,["H5927"]],[11,12,["H5921"]],[12,16,["H559"]],[16,18,["H631","(H853)"]],[18,19,["H8123"]],[19,23,["H5927"]],[23,25,["H6213"]],[25,28,["H834"]],[28,31,["H6213"]],[31,33,[]]]},{"k":6940,"v":[[0,2,["H7969"]],[2,3,["H505"]],[3,4,["H376"]],[4,6,["H4480","H3063"]],[6,7,["H3381"]],[7,8,["H413"]],[8,10,["H5585"]],[10,13,["H5553"]],[13,14,["H5862"]],[14,16,["H559"]],[16,18,["H8123"]],[18,19,["H3045"]],[19,21,["H3808"]],[21,22,["H3588"]],[22,24,["H6430"]],[24,26,["H4910"]],[26,29,["H4100"]],[29,31,["H2063"]],[31,35,["H6213"]],[35,40,["H559"]],[40,43,["H834"]],[43,45,["H6213"]],[45,48,["H3651"]],[48,51,["H6213"]],[51,53,[]]]},{"k":6941,"v":[[0,3,["H559"]],[3,9,["H3381"]],[9,11,["H631"]],[11,16,["H5414"]],[16,20,["H3027"]],[20,23,["H6430"]],[23,25,["H8123"]],[25,26,["H559"]],[26,29,["H7650"]],[29,32,["H6435"]],[32,36,["H6293"]],[36,39,["H859"]]]},{"k":6942,"v":[[0,3,["H559"]],[3,6,["H559"]],[6,7,["H3808"]],[7,8,["H3588"]],[8,13,["H631","H631"]],[13,15,["H5414"]],[15,19,["H3027"]],[19,25,["H4191","H3808","H4191"]],[25,29,["H631"]],[29,32,["H8147"]],[32,33,["H2319"]],[33,34,["H5688"]],[34,38,["H5927"]],[38,39,["H4480"]],[39,41,["H5553"]]]},{"k":6943,"v":[[0,3,["H1931"]],[3,4,["H935"]],[4,5,["H5704"]],[5,6,["H3896"]],[6,8,["H6430"]],[8,9,["H7321"]],[9,10,["H7125"]],[10,14,["H7307"]],[14,17,["H3068"]],[17,19,["H6743"]],[19,20,["H5921"]],[20,24,["H5688"]],[24,25,["H834"]],[25,27,["H5921"]],[27,29,["H2220"]],[29,30,["H1961"]],[30,32,["H6593"]],[32,33,["H834"]],[33,35,["H1197"]],[35,37,["H784"]],[37,40,["H612"]],[40,41,["H4549"]],[41,43,["H4480","H5921"]],[43,45,["H3027"]]]},{"k":6944,"v":[[0,3,["H4672"]],[3,5,["H2961"]],[5,6,["H3895"]],[6,9,["H2543"]],[9,12,["H7971"]],[12,14,["H3027"]],[14,16,["H3947"]],[16,19,["H5221"]],[19,21,["H505"]],[21,22,["H376"]],[22,23,[]]]},{"k":6945,"v":[[0,2,["H8123"]],[2,3,["H559"]],[3,6,["H3895"]],[6,9,["H2543"]],[9,12,["H2565","H2565"]],[12,15,["H3895"]],[15,18,["H2543"]],[18,21,["H5221"]],[21,23,["H505"]],[23,24,["H376"]]]},{"k":6946,"v":[[0,5,["H1961"]],[5,11,["H3615"]],[11,13,["H1696"]],[13,17,["H7993"]],[17,19,["H3895"]],[19,23,["H4480","H3027"]],[23,25,["H7121"]],[25,26,["H1931"]],[26,27,["H4725"]],[27,28,["H7437"]]]},{"k":6947,"v":[[0,5,["H6770","H3966"]],[5,7,["H7121"]],[7,8,["H413"]],[8,10,["H3068"]],[10,12,["H559"]],[12,13,["H859"]],[13,15,["H5414","(H853)"]],[15,16,["H2063"]],[16,17,["H1419"]],[17,18,["H8668"]],[18,21,["H3027"]],[21,24,["H5650"]],[24,26,["H6258"]],[26,29,["H4191"]],[29,31,["H6772"]],[31,33,["H5307"]],[33,36,["H3027"]],[36,39,["H6189"]]]},{"k":6948,"v":[[0,2,["H430"]],[2,3,["H1234","(H853)"]],[3,6,["H4388"]],[6,7,["H834"]],[7,11,["H3895"]],[11,14,["H3318"]],[14,15,["H4325"]],[15,16,["H4480"]],[16,21,["H8354"]],[21,23,["H7307"]],[23,25,["H7725"]],[25,28,["H2421"]],[28,29,["H5921","H3651"]],[29,31,["H7121"]],[31,33,["H8034"]],[33,35,["H5875"]],[35,36,["H834"]],[36,39,["H3896"]],[39,40,["H5704"]],[40,41,["H2088"]],[41,42,["H3117"]]]},{"k":6949,"v":[[0,3,["H8199","(H853)"]],[3,4,["H3478"]],[4,7,["H3117"]],[7,10,["H6430"]],[10,11,["H6242"]],[11,12,["H8141"]]]},{"k":6950,"v":[[0,2,["H1980"]],[2,3,["H8123"]],[3,5,["H5804"]],[5,7,["H7200"]],[7,8,["H8033"]],[8,10,["H802","H2181"]],[10,13,["H935"]],[13,14,["H413"]],[14,15,[]]]},{"k":6951,"v":[[0,6,["H5841"]],[6,7,["H559"]],[7,8,["H8123"]],[8,10,["H935"]],[10,11,["H2008"]],[11,14,["H5437"]],[14,19,["H693"]],[19,22,["H3605"]],[22,23,["H3915"]],[23,26,["H8179"]],[26,29,["H5892"]],[29,32,["H2790"]],[32,33,["H3605"]],[33,35,["H3915"]],[35,36,["H559"]],[36,39,["H1242"]],[39,40,["H5704"]],[40,43,["H216"]],[43,46,["H2026"]],[46,47,[]]]},{"k":6952,"v":[[0,2,["H8123"]],[2,3,["H7901"]],[3,4,["H5704"]],[4,5,["H2677","H3915"]],[5,7,["H6965"]],[7,9,["H2677","H3915"]],[9,11,["H270"]],[11,13,["H1817"]],[13,16,["H8179"]],[16,19,["H5892"]],[19,22,["H8147"]],[22,23,["H4201"]],[23,26,["H5265"]],[26,31,["H5973","H1280"]],[31,33,["H7760"]],[33,35,["H5921"]],[35,37,["H3802"]],[37,41,["H5927"]],[41,42,["H413"]],[42,44,["H7218"]],[44,47,["H2022"]],[47,48,["H834"]],[48,50,["H5921","H6440"]],[50,51,["H2275"]]]},{"k":6953,"v":[[0,5,["H1961"]],[5,6,["H310","H3651"]],[6,9,["H157"]],[9,11,["H802"]],[11,14,["H5158"]],[14,16,["H7796"]],[16,18,["H8034"]],[18,20,["H1807"]]]},{"k":6954,"v":[[0,3,["H5633"]],[3,6,["H6430"]],[6,8,["H5927"]],[8,9,["H413"]],[9,12,["H559"]],[12,15,["H6601"]],[15,18,["H7200"]],[18,19,["H4100"]],[19,21,["H1419"]],[21,22,["H3581"]],[22,26,["H4100"]],[26,30,["H3201"]],[30,36,["H631"]],[36,39,["H6031"]],[39,42,["H587"]],[42,44,["H5414"]],[44,47,["H376"]],[47,51,["H505","H3967"]],[51,54,["H3701"]]]},{"k":6955,"v":[[0,2,["H1807"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H8123"]],[5,6,["H5046"]],[6,10,["H4994"]],[10,11,["H4100"]],[11,13,["H1419"]],[13,14,["H3581"]],[14,17,["H4100"]],[17,21,["H631"]],[21,23,["H6031"]],[23,24,[]]]},{"k":6956,"v":[[0,2,["H8123"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H518"]],[6,8,["H631"]],[8,11,["H7651"]],[11,12,["H3892"]],[12,13,["H3499"]],[13,14,["H834"]],[14,16,["H3808"]],[16,17,["H2717"]],[17,22,["H2470"]],[22,24,["H1961"]],[24,26,["H259"]],[26,27,["H120"]]]},{"k":6957,"v":[[0,3,["H5633"]],[3,6,["H6430"]],[6,8,["H5927"]],[8,11,["H7651"]],[11,12,["H3892"]],[12,13,["H3499"]],[13,14,["H834"]],[14,16,["H3808"]],[16,18,["H2717"]],[18,21,["H631"]],[21,24,[]]]},{"k":6958,"v":[[0,7,["H693"]],[7,8,["H3427"]],[8,13,["H2315"]],[13,16,["H559"]],[16,17,["H413"]],[17,20,["H6430"]],[20,22,["H5921"]],[22,24,["H8123"]],[24,27,["H5423","(H853)"]],[27,29,["H3499"]],[29,30,["H834"]],[30,32,["H6616"]],[32,34,["H5296"]],[34,36,["H5423"]],[36,39,["H7306"]],[39,41,["H784"]],[41,44,["H3581"]],[44,46,["H3808"]],[46,47,["H3045"]]]},{"k":6959,"v":[[0,2,["H1807"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H8123"]],[5,6,["H2009"]],[6,9,["H2048"]],[9,12,["H1696","H413"]],[12,14,["H3577"]],[14,15,["H6258"]],[15,16,["H5046"]],[16,20,["H4994"]],[20,21,["H4100"]],[21,25,["H631"]]]},{"k":6960,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H518"]],[6,10,["H631","H631"]],[10,12,["H2319"]],[12,13,["H5688"]],[13,14,["H834"]],[14,15,["H3808"]],[15,17,["H6213","H4399"]],[17,22,["H2470"]],[22,24,["H1961"]],[24,26,["H259"]],[26,27,["H120"]]]},{"k":6961,"v":[[0,1,["H1807"]],[1,3,["H3947"]],[3,4,["H2319"]],[4,5,["H5688"]],[5,7,["H631"]],[7,11,["H559"]],[11,12,["H413"]],[12,15,["H6430"]],[15,17,["H5921"]],[17,19,["H8123"]],[19,25,["H693"]],[25,26,["H3427"]],[26,29,["H2315"]],[29,32,["H5423"]],[32,35,["H4480","H5921"]],[35,37,["H2220"]],[37,40,["H2339"]]]},{"k":6962,"v":[[0,2,["H1807"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H8123"]],[5,6,["H5704","H2008"]],[6,9,["H2048"]],[9,12,["H1696","H413"]],[12,14,["H3576"]],[14,15,["H5046"]],[15,17,["H4100"]],[17,21,["H631"]],[21,24,["H559"]],[24,25,["H413"]],[25,27,["H518"]],[27,29,["H707","(H853)"]],[29,31,["H7651"]],[31,32,["H4253"]],[32,35,["H7218"]],[35,36,["H5973"]],[36,38,["H4545"]]]},{"k":6963,"v":[[0,3,["H8628"]],[3,7,["H3489"]],[7,9,["H559"]],[9,10,["H413"]],[10,13,["H6430"]],[13,15,["H5921"]],[15,17,["H8123"]],[17,20,["H3364"]],[20,24,["H4480","H8142"]],[24,27,["H5265","(H853)"]],[27,30,["H3489"]],[30,33,["H708"]],[33,37,["H4545"]]]},{"k":6964,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H349"]],[6,9,["H559"]],[9,11,["H157"]],[11,15,["H3820"]],[15,17,["H369"]],[17,18,["H854"]],[18,22,["H2048"]],[22,25,["H7969"]],[25,26,["H6471"]],[26,29,["H3808"]],[29,30,["H5046"]],[30,32,["H4100"]],[32,34,["H1419"]],[34,35,["H3581"]],[35,36,[]]]},{"k":6965,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,8,["H6693"]],[8,10,["H3605","H3117"]],[10,13,["H1697"]],[13,15,["H509"]],[15,20,["H5315"]],[20,22,["H7114"]],[22,24,["H4191"]]]},{"k":6966,"v":[[0,3,["H5046"]],[3,4,["(H853)"]],[4,5,["H3605"]],[5,7,["H3820"]],[7,9,["H559"]],[9,14,["H3808"]],[14,15,["H5927"]],[15,17,["H4177"]],[17,18,["H5921"]],[18,20,["H7218"]],[20,21,["H3588"]],[21,22,["H589"]],[22,26,["H5139"]],[26,28,["H430"]],[28,31,["H517"]],[31,32,["H4480","H990"]],[32,33,["H518"]],[33,36,["H1548"]],[36,39,["H3581"]],[39,41,["H5493"]],[41,42,["H4480"]],[42,48,["H2470"]],[48,50,["H1961"]],[50,52,["H3605"]],[52,54,["H120"]]]},{"k":6967,"v":[[0,3,["H1807"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,8,["H5046"]],[8,9,["(H853)"]],[9,10,["H3605"]],[10,12,["H3820"]],[12,14,["H7971"]],[14,16,["H7121"]],[16,19,["H5633"]],[19,22,["H6430"]],[22,23,["H559"]],[23,25,["H5927"]],[25,27,["H6471"]],[27,28,["H3588"]],[28,31,["H5046"]],[31,32,["(H853)"]],[32,33,["H3605"]],[33,35,["H3820"]],[35,38,["H5633"]],[38,41,["H6430"]],[41,43,["H5927"]],[43,44,["H413"]],[44,47,["H5927"]],[47,48,["H3701"]],[48,51,["H3027"]]]},{"k":6968,"v":[[0,5,["H3462"]],[5,6,["H5921"]],[6,8,["H1290"]],[8,11,["H7121"]],[11,14,["H376"]],[14,21,["H1548","(H853)"]],[21,23,["H7651"]],[23,24,["H4253"]],[24,27,["H7218"]],[27,30,["H2490"]],[30,32,["H6031"]],[32,36,["H3581"]],[36,37,["H5493"]],[37,38,["H4480","H5921"]],[38,39,[]]]},{"k":6969,"v":[[0,3,["H559"]],[3,5,["H6430"]],[5,7,["H5921"]],[7,9,["H8123"]],[9,12,["H3364"]],[12,16,["H4480","H8142"]],[16,18,["H559"]],[18,22,["H3318"]],[22,27,["H6471","H6471"]],[27,30,["H5287"]],[30,32,["H1931"]],[32,33,["H3045"]],[33,34,["H3808"]],[34,35,["H3588"]],[35,37,["H3068"]],[37,39,["H5493"]],[39,40,["H4480","H5921"]],[40,41,[]]]},{"k":6970,"v":[[0,3,["H6430"]],[3,4,["H270"]],[4,8,["H5365","(H853)"]],[8,10,["H5869"]],[10,14,["H3381","(H853)"]],[14,16,["H5804"]],[16,18,["H631"]],[18,23,["H5178"]],[23,26,["H1961"]],[26,27,["H2912"]],[27,30,["H615"]],[30,31,["H1004"]]]},{"k":6971,"v":[[0,3,["H8181"]],[3,6,["H7218"]],[6,7,["H2490"]],[7,10,["H6779"]],[10,11,["H834"]],[11,14,["H1548"]]]},{"k":6972,"v":[[0,3,["H5633"]],[3,6,["H6430"]],[6,9,["H622"]],[9,12,["H2076"]],[12,14,["H1419"]],[14,15,["H2077"]],[15,17,["H1712"]],[17,19,["H430"]],[19,22,["H8057"]],[22,25,["H559"]],[25,27,["H430"]],[27,29,["H5414","(H853)"]],[29,30,["H8123"]],[30,32,["H341"]],[32,35,["H3027"]]]},{"k":6973,"v":[[0,4,["H5971"]],[4,5,["H7200"]],[5,8,["H1984","(H853)"]],[8,10,["H430"]],[10,11,["H3588"]],[11,13,["H559"]],[13,15,["H430"]],[15,17,["H5414"]],[17,20,["H3027","(H853)"]],[20,22,["H341"]],[22,25,["H2717"]],[25,28,["H776"]],[28,29,["H834"]],[29,31,["H7235","(H853)","H2491"]],[31,33,[]]]},{"k":6974,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,8,["H3820"]],[8,10,["H2896"]],[10,13,["H559"]],[13,14,["H7121"]],[14,16,["H8123"]],[16,22,["H7832"]],[22,25,["H7121"]],[25,27,["H8123"]],[27,32,["H4480","H1004","H615"]],[32,37,["H6711","H6440"]],[37,40,["H5975"]],[40,42,["H996"]],[42,44,["H5982"]]]},{"k":6975,"v":[[0,2,["H8123"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5288"]],[6,8,["H2388"]],[8,12,["H3027"]],[12,13,["H5117"]],[13,18,["H4184","(H853)"]],[18,20,["H5982"]],[20,21,["H834","H5921"]],[21,23,["H1004"]],[23,24,["H3559"]],[24,28,["H8172"]],[28,29,["H5921"]],[29,30,[]]]},{"k":6976,"v":[[0,3,["H1004"]],[3,5,["H4390"]],[5,7,["H376"]],[7,9,["H802"]],[9,11,["H3605"]],[11,13,["H5633"]],[13,16,["H6430"]],[16,18,["H8033"]],[18,22,["H5921"]],[22,24,["H1406"]],[24,26,["H7969"]],[26,27,["H505"]],[27,28,["H376"]],[28,30,["H802"]],[30,32,["H7200"]],[32,34,["H8123"]],[34,36,["H7832"]]]},{"k":6977,"v":[[0,2,["H8123"]],[2,3,["H7121"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H559"]],[8,10,["H136"]],[10,11,["H3069"]],[11,12,["H2142"]],[12,16,["H4994"]],[16,18,["H2388"]],[18,22,["H4994"]],[22,23,["H389"]],[23,24,["H2088"]],[24,25,["H6471"]],[25,27,["H430"]],[27,34,["H5358","H5359","H259"]],[34,37,["H4480","H6430"]],[37,40,["H4480","H8147"]],[40,41,["H5869"]]]},{"k":6978,"v":[[0,2,["H8123"]],[2,4,["H3943"]],[4,5,["(H853)"]],[5,7,["H8147"]],[7,8,["H8432"]],[8,9,["H5982"]],[9,10,["H5921"]],[10,11,["H834"]],[11,13,["H1004"]],[13,14,["H3559"]],[14,16,["H5921"]],[16,21,["H5564"]],[21,24,["H259"]],[24,28,["H3225"]],[28,32,["H259"]],[32,35,["H8040"]]]},{"k":6979,"v":[[0,2,["H8123"]],[2,3,["H559"]],[3,5,["H5315"]],[5,6,["H4191"]],[6,7,["H5973"]],[7,9,["H6430"]],[9,12,["H5186"]],[12,17,["H3581"]],[17,20,["H1004"]],[20,21,["H5307"]],[21,22,["H5921"]],[22,24,["H5633"]],[24,26,["H5921"]],[26,27,["H3605"]],[27,29,["H5971"]],[29,30,["H834"]],[30,35,["H4191"]],[35,36,["H834"]],[36,38,["H4191"]],[38,41,["H4194"]],[41,42,["H1961"]],[42,43,["H7227"]],[43,46,["H4480","H834"]],[46,48,["H4191"]],[48,51,["H2416"]]]},{"k":6980,"v":[[0,3,["H251"]],[3,5,["H3605"]],[5,7,["H1004"]],[7,10,["H1"]],[10,12,["H3381"]],[12,14,["H5375"]],[14,19,["H5927"]],[19,21,["H6912"]],[21,23,["H996"]],[23,24,["H6881"]],[24,26,["H847"]],[26,29,["H6913"]],[29,31,["H4495"]],[31,33,["H1"]],[33,35,["H1931"]],[35,36,["H8199","(H853)"]],[36,37,["H3478"]],[37,38,["H6242"]],[38,39,["H8141"]]]},{"k":6981,"v":[[0,3,["H1961"]],[3,5,["H376"]],[5,7,["H4480","H2022"]],[7,8,["H669"]],[8,10,["H8034"]],[10,12,["H4321"]]]},{"k":6982,"v":[[0,3,["H559"]],[3,6,["H517"]],[6,9,["H505","H3967"]],[9,12,["H3701"]],[12,13,["H834"]],[13,15,["H3947"]],[15,20,["H859"]],[20,21,["H422"]],[21,23,["H559"]],[23,25,["H1571"]],[25,28,["H241"]],[28,29,["H2009"]],[29,31,["H3701"]],[31,33,["H854"]],[33,35,["H589"]],[35,36,["H3947"]],[36,40,["H517"]],[40,41,["H559"]],[41,42,["H1288"]],[42,47,["H3068"]],[47,49,["H1121"]]]},{"k":6983,"v":[[0,5,["H7725","(H853)"]],[5,8,["H505","H3967"]],[8,11,["H3701"]],[11,14,["H517"]],[14,16,["H517"]],[16,17,["H559"]],[17,21,["H6942","H6942","(H853)"]],[21,23,["H3701"]],[23,26,["H3068"]],[26,29,["H4480","H3027"]],[29,32,["H1121"]],[32,34,["H6213"]],[34,37,["H6459"]],[37,41,["H4541"]],[41,42,["H6258"]],[42,46,["H7725"]],[46,49,[]]]},{"k":6984,"v":[[0,3,["H7725","(H853)"]],[3,5,["H3701"]],[5,8,["H517"]],[8,11,["H517"]],[11,12,["H3947"]],[12,14,["H3967"]],[14,17,["H3701"]],[17,19,["H5414"]],[19,23,["H6884"]],[23,25,["H6213"]],[25,29,["H6459"]],[29,33,["H4541"]],[33,36,["H1961"]],[36,39,["H1004"]],[39,41,["H4321"]]]},{"k":6985,"v":[[0,3,["H376"]],[3,4,["H4318"]],[4,7,["H1004"]],[7,9,["H430"]],[9,11,["H6213"]],[11,13,["H646"]],[13,15,["H8655"]],[15,17,["H4390","(H853)","H3027"]],[17,18,["H259"]],[18,21,["H4480","H1121"]],[21,23,["H1961"]],[23,25,["H3548"]]]},{"k":6986,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,6,["H369"]],[6,7,["H4428"]],[7,9,["H3478"]],[9,12,["H376"]],[12,13,["H6213"]],[13,17,["H3477"]],[17,21,["H5869"]]]},{"k":6987,"v":[[0,3,["H1961"]],[3,6,["H5288"]],[6,9,["H4480","H1035","H3063"]],[9,12,["H4480","H4940"]],[12,14,["H3063"]],[14,15,["H1931"]],[15,18,["H3881"]],[18,20,["H1931"]],[20,21,["H1481"]],[21,22,["H8033"]]]},{"k":6988,"v":[[0,3,["H376"]],[3,4,["H1980"]],[4,8,["H4480","H5892"]],[8,10,["H4480","H1035","H3063"]],[10,12,["H1481"]],[12,13,["H834"]],[13,16,["H4672"]],[16,21,["H935"]],[21,23,["H2022"]],[23,24,["H669"]],[24,25,["H5704"]],[25,27,["H1004"]],[27,29,["H4318"]],[29,32,["H6213","H1870"]]]},{"k":6989,"v":[[0,2,["H4318"]],[2,3,["H559"]],[3,6,["H4480","H370"]],[6,7,["H935"]],[7,11,["H559"]],[11,12,["H413"]],[12,14,["H595"]],[14,17,["H3881"]],[17,19,["H4480","H1035","H3063"]],[19,21,["H595"]],[21,22,["H1980"]],[22,24,["H1481"]],[24,25,["H834"]],[25,28,["H4672"]],[28,30,[]]]},{"k":6990,"v":[[0,2,["H4318"]],[2,3,["H559"]],[3,6,["H3427"]],[6,7,["H5978"]],[7,10,["H1961"]],[10,14,["H1"]],[14,17,["H3548"]],[17,19,["H595"]],[19,21,["H5414"]],[21,23,["H6235"]],[23,26,["H3701"]],[26,29,["H3117"]],[29,32,["H6187"]],[32,34,["H899"]],[34,37,["H4241"]],[37,40,["H3881"]],[40,42,["H1980"]]]},{"k":6991,"v":[[0,3,["H3881"]],[3,5,["H2974"]],[5,7,["H3427"]],[7,8,["H854"]],[8,10,["H376"]],[10,14,["H5288"]],[14,15,["H1961"]],[15,19,["H259"]],[19,22,["H4480","H1121"]]]},{"k":6992,"v":[[0,2,["H4318"]],[2,3,["H4390","(H853)","H3027"]],[3,5,["H3881"]],[5,9,["H5288"]],[9,10,["H1961"]],[10,12,["H3548"]],[12,14,["H1961"]],[14,17,["H1004"]],[17,19,["H4318"]]]},{"k":6993,"v":[[0,2,["H559"]],[2,3,["H4318"]],[3,4,["H6258"]],[4,5,["H3045"]],[5,7,["H3588"]],[7,9,["H3068"]],[9,13,["H3190"]],[13,14,["H3588"]],[14,16,["H1961"]],[16,18,["H3881"]],[18,21,["H3548"]]]},{"k":6994,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,6,["H369"]],[6,7,["H4428"]],[7,9,["H3478"]],[9,12,["H1992"]],[12,13,["H3117"]],[13,15,["H7626"]],[15,18,["H1839"]],[18,19,["H1245"]],[19,22,["H5159"]],[22,24,["H3427"]],[24,26,["H3588"]],[26,27,["H5704"]],[27,28,["H1931"]],[28,29,["H3117"]],[29,32,["H5159"]],[32,34,["H3808"]],[34,35,["H5307"]],[35,38,["H8432"]],[38,40,["H7626"]],[40,42,["H3478"]]]},{"k":6995,"v":[[0,3,["H1121"]],[3,5,["H1835"]],[5,6,["H7971"]],[6,9,["H4480","H4940"]],[9,10,["H2568"]],[10,11,["H376"]],[11,14,["H4480","H7098"]],[14,15,["H376"]],[15,17,["H2428"]],[17,19,["H4480","H6881"]],[19,22,["H4480","H847"]],[22,25,["H7270","(H853)"]],[25,27,["H776"]],[27,30,["H2713"]],[30,34,["H559"]],[34,35,["H413"]],[35,37,["H1980"]],[37,38,["H2713","(H853)"]],[38,40,["H776"]],[40,44,["H935"]],[44,46,["H2022"]],[46,47,["H669"]],[47,48,["H5704"]],[48,50,["H1004"]],[50,52,["H4318"]],[52,54,["H3885"]],[54,55,["H8033"]]]},{"k":6996,"v":[[0,2,["H1992"]],[2,4,["H5973"]],[4,6,["H1004"]],[6,8,["H4318"]],[8,9,["H1992"]],[9,10,["H5234","(H853)"]],[10,12,["H6963"]],[12,16,["H5288"]],[16,18,["H3881"]],[18,22,["H5493"]],[22,23,["H8033"]],[23,25,["H559"]],[25,28,["H4310"]],[28,29,["H935"]],[29,31,["H1988"]],[31,33,["H4100"]],[33,34,["H6213"]],[34,35,["H859"]],[35,37,["H2088"]],[37,40,["H4100"]],[40,43,["H6311"]]]},{"k":6997,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H2090"]],[6,8,["H2090"]],[8,9,["H6213"]],[9,10,["H4318"]],[10,15,["H7936"]],[15,19,["H1961"]],[19,21,["H3548"]]]},{"k":6998,"v":[[0,3,["H559"]],[3,7,["H7592"]],[7,10,["H4994"]],[10,12,["H430"]],[12,16,["H3045"]],[16,19,["H1870"]],[19,20,["H834"]],[20,21,["H587"]],[21,22,["H1980"]],[22,25,["H6743"]]]},{"k":6999,"v":[[0,3,["H3548"]],[3,4,["H559"]],[4,7,["H1980"]],[7,9,["H7965"]],[9,10,["H5227"]],[10,12,["H3068"]],[12,15,["H1870"]],[15,16,["H834"]],[16,18,["H1980"]]]},{"k":7000,"v":[[0,3,["H2568"]],[3,4,["H376"]],[4,5,["H1980"]],[5,7,["H935"]],[7,9,["H3919"]],[9,11,["H7200","(H853)"]],[11,13,["H5971"]],[13,14,["H834"]],[14,16,["H7130"]],[16,19,["H3427"]],[19,20,["H983"]],[20,23,["H4941"]],[23,26,["H6722"]],[26,27,["H8252"]],[27,29,["H982"]],[29,33,["H369"]],[33,34,["H3423","H6114"]],[34,37,["H776"]],[37,43,["H3637"]],[43,46,["H1697"]],[46,48,["H1992"]],[48,50,["H7350"]],[50,53,["H4480","H6722"]],[53,56,["H369"]],[56,57,["H1697"]],[57,58,["H5973"]],[58,60,["H120"]]]},{"k":7001,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H251"]],[6,8,["H6881"]],[8,10,["H847"]],[10,13,["H251"]],[13,14,["H559"]],[14,17,["H4100"]],[17,19,["H859"]]]},{"k":7002,"v":[[0,3,["H559"]],[3,4,["H6965"]],[4,9,["H5927"]],[9,10,["H5921"]],[10,12,["H3588"]],[12,15,["H7200","(H853)"]],[15,17,["H776"]],[17,19,["H2009"]],[19,22,["H3966"]],[22,23,["H2896"]],[23,26,["H859"]],[26,27,["H2814"]],[27,30,["H6101","H408"]],[30,32,["H1980"]],[32,35,["H935"]],[35,37,["H3423","(H853)"]],[37,39,["H776"]]]},{"k":7003,"v":[[0,3,["H935"]],[3,6,["H935"]],[6,7,["H413"]],[7,9,["H5971"]],[9,10,["H982"]],[10,14,["H7342"]],[14,15,["H776"]],[15,16,["H3588"]],[16,17,["H430"]],[17,19,["H5414"]],[19,23,["H3027"]],[23,25,["H4725"]],[25,26,["H834"]],[26,29,["H369"]],[29,30,["H4270"]],[30,32,["H3605"]],[32,33,["H1697"]],[33,34,["H834"]],[34,38,["H776"]]]},{"k":7004,"v":[[0,3,["H5265"]],[3,5,["H4480","H8033"]],[5,8,["H4480","H4940"]],[8,11,["H1839"]],[11,14,["H4480","H6881"]],[14,18,["H4480","H847"]],[18,19,["H8337"]],[19,20,["H3967"]],[20,21,["H376"]],[21,22,["H2296"]],[22,24,["H3627"]],[24,26,["H4421"]]]},{"k":7005,"v":[[0,4,["H5927"]],[4,6,["H2583"]],[6,8,["H7157"]],[8,10,["H3063"]],[10,11,["H5921","H3651"]],[11,13,["H7121"]],[13,14,["H1931"]],[14,15,["H4725"]],[15,16,["H4265"]],[16,17,["H5704"]],[17,18,["H2088"]],[18,19,["H3117"]],[19,20,["H2009"]],[20,23,["H310"]],[23,24,["H7157"]]]},{"k":7006,"v":[[0,3,["H5674"]],[3,4,["H4480","H8033"]],[4,6,["H2022"]],[6,7,["H669"]],[7,9,["H935"]],[9,10,["H5704"]],[10,12,["H1004"]],[12,14,["H4318"]]]},{"k":7007,"v":[[0,2,["H6030"]],[2,4,["H2568"]],[4,5,["H376"]],[5,7,["H1980"]],[7,10,["H7270","(H853)"]],[10,12,["H776"]],[12,14,["H3919"]],[14,16,["H559"]],[16,17,["H413"]],[17,19,["H251"]],[19,22,["H3045"]],[22,23,["H3588"]],[23,25,["H3426"]],[25,27,["H428"]],[27,28,["H1004"]],[28,30,["H646"]],[30,32,["H8655"]],[32,36,["H6459"]],[36,40,["H4541"]],[40,41,["H6258"]],[41,43,["H3045"]],[43,44,["H4100"]],[44,48,["H6213"]]]},{"k":7008,"v":[[0,3,["H5493"]],[3,4,["H8033"]],[4,6,["H935"]],[6,7,["H413"]],[7,9,["H1004"]],[9,13,["H5288"]],[13,15,["H3881"]],[15,19,["H1004"]],[19,21,["H4318"]],[21,23,["H7592","H7965"]],[23,24,[]]]},{"k":7009,"v":[[0,3,["H8337"]],[3,4,["H3967"]],[4,5,["H376"]],[5,6,["H2296"]],[6,9,["H3627"]],[9,11,["H4421"]],[11,12,["H834"]],[12,16,["H4480","H1121"]],[16,18,["H1835"]],[18,19,["H5324"]],[19,22,["H6607"]],[22,25,["H8179"]]]},{"k":7010,"v":[[0,3,["H2568"]],[3,4,["H376"]],[4,6,["H5927"]],[6,9,["H7270","(H853)"]],[9,11,["H776"]],[11,13,["H5927"]],[13,16,["H935"]],[16,17,["H8033"]],[17,19,["H3947","(H853)"]],[19,22,["H6459"]],[22,25,["H646"]],[25,28,["H8655"]],[28,32,["H4541"]],[32,35,["H3548"]],[35,36,["H5324"]],[36,39,["H6607"]],[39,42,["H8179"]],[42,45,["H8337"]],[45,46,["H3967"]],[46,47,["H376"]],[47,50,["H2296"]],[50,52,["H3627"]],[52,54,["H4421"]]]},{"k":7011,"v":[[0,2,["H428"]],[2,3,["H935"]],[3,5,["H4318"]],[5,6,["H1004"]],[6,8,["H3947","(H853)"]],[8,11,["H6459"]],[11,13,["H646"]],[13,16,["H8655"]],[16,20,["H4541"]],[20,22,["H559"]],[22,24,["H3548"]],[24,25,["H413"]],[25,27,["H4100"]],[27,28,["H6213"]],[28,29,["H859"]]]},{"k":7012,"v":[[0,3,["H559"]],[3,8,["H2790"]],[8,9,["H7760"]],[9,11,["H3027"]],[11,12,["H5921"]],[12,14,["H6310"]],[14,16,["H1980"]],[16,17,["H5973"]],[17,20,["H1961"]],[20,24,["H1"]],[24,27,["H3548"]],[27,30,["H2896"]],[30,34,["H1961"]],[34,36,["H3548"]],[36,39,["H1004"]],[39,41,["H259"]],[41,42,["H376"]],[42,43,["H176"]],[43,46,["H1961"]],[46,48,["H3548"]],[48,51,["H7626"]],[51,54,["H4940"]],[54,56,["H3478"]]]},{"k":7013,"v":[[0,3,["H3548"]],[3,4,["H3820"]],[4,6,["H3190"]],[6,9,["H3947","(H853)"]],[9,11,["H646"]],[11,14,["H8655"]],[14,18,["H6459"]],[18,20,["H935"]],[20,23,["H7130"]],[23,26,["H5971"]]]},{"k":7014,"v":[[0,3,["H6437"]],[3,5,["H1980"]],[5,7,["H7760","(H853)"]],[7,10,["H2945"]],[10,13,["H4735"]],[13,16,["H3520"]],[16,17,["H6440"]],[17,18,[]]]},{"k":7015,"v":[[0,3,["H1992"]],[3,7,["H7368"]],[7,10,["H4480","H1004"]],[10,12,["H4318"]],[12,14,["H376"]],[14,15,["H834"]],[15,19,["H1004"]],[19,20,["H5973"]],[20,22,["H4318"]],[22,23,["H1004"]],[23,26,["H2199"]],[26,28,["H1692","(H853)"]],[28,30,["H1121"]],[30,32,["H1835"]]]},{"k":7016,"v":[[0,3,["H7121"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H1835"]],[8,11,["H5437"]],[11,13,["H6440"]],[13,15,["H559"]],[15,17,["H4318"]],[17,18,["H4100"]],[18,21,["H3588"]],[21,27,["H2199"]]]},{"k":7017,"v":[[0,3,["H559"]],[3,7,["H3947","(H853)"]],[7,9,["H430"]],[9,10,["H834"]],[10,12,["H6213"]],[12,15,["H3548"]],[15,20,["H1980"]],[20,22,["H4100"]],[22,25,["H5750"]],[25,27,["H4100"]],[27,29,["H2088"]],[29,32,["H559"]],[32,33,["H413"]],[33,35,["H4100"]],[35,37,[]]]},{"k":7018,"v":[[0,3,["H1121"]],[3,5,["H1835"]],[5,6,["H559"]],[6,7,["H413"]],[7,10,["H408"]],[10,12,["H6963"]],[12,14,["H8085"]],[14,15,["H5973"]],[15,17,["H6435"]],[17,18,["H4751","H5315"]],[18,19,["H376"]],[19,20,["H6293"]],[20,25,["H622"]],[25,27,["H5315"]],[27,30,["H5315"]],[30,33,["H1004"]]]},{"k":7019,"v":[[0,3,["H1121"]],[3,5,["H1835"]],[5,6,["H1980"]],[6,8,["H1870"]],[8,11,["H4318"]],[11,12,["H7200"]],[12,13,["H3588"]],[13,14,["H1992"]],[14,17,["H2389"]],[17,18,["H4480"]],[18,21,["H6437"]],[21,24,["H7725"]],[24,25,["H413"]],[25,27,["H1004"]]]},{"k":7020,"v":[[0,2,["H1992"]],[2,3,["H3947","(H853)"]],[3,6,["H834"]],[6,7,["H4318"]],[7,9,["H6213"]],[9,12,["H3548"]],[12,13,["H834"]],[13,15,["H1961"]],[15,17,["H935"]],[17,18,["H5921"]],[18,19,["H3919"]],[19,20,["H5921"]],[20,22,["H5971"]],[22,26,["H8252"]],[26,28,["H982"]],[28,31,["H5221"]],[31,35,["H6310"]],[35,38,["H2719"]],[38,40,["H8313"]],[40,42,["H5892"]],[42,44,["H784"]]]},{"k":7021,"v":[[0,4,["H369"]],[4,5,["H5337"]],[5,6,["H3588"]],[6,7,["H1931"]],[7,9,["H7350"]],[9,11,["H4480","H6721"]],[11,15,["H369"]],[15,16,["H1697"]],[16,17,["H5973"]],[17,19,["H120"]],[19,21,["H1931"]],[21,25,["H6010"]],[25,26,["H834"]],[26,29,["H1050"]],[29,32,["H1129","(H853)"]],[32,34,["H5892"]],[34,36,["H3427"]],[36,37,[]]]},{"k":7022,"v":[[0,3,["H7121"]],[3,5,["H8034"]],[5,8,["H5892"]],[8,9,["H1835"]],[9,12,["H8034"]],[12,14,["H1835"]],[14,16,["H1"]],[16,17,["H834"]],[17,19,["H3205"]],[19,21,["H3478"]],[21,22,["H199"]],[22,24,["H8034"]],[24,27,["H5892"]],[27,29,["H3919"]],[29,32,["H7223"]]]},{"k":7023,"v":[[0,3,["H1121"]],[3,5,["H1835"]],[5,7,["H6965","(H853)"]],[7,10,["H6459"]],[10,12,["H3083"]],[12,14,["H1121"]],[14,16,["H1648"]],[16,18,["H1121"]],[18,20,["H4519"]],[20,21,["H1931"]],[21,24,["H1121"]],[24,25,["H1961"]],[25,26,["H3548"]],[26,29,["H7626"]],[29,31,["H1839"]],[31,32,["H5704"]],[32,34,["H3117"]],[34,37,["H1540"]],[37,40,["H776"]]]},{"k":7024,"v":[[0,5,["H7760","(H853)"]],[5,6,["H4318"]],[6,8,["H6459"]],[8,9,["H834"]],[9,11,["H6213"]],[11,12,["H3605"]],[12,14,["H3117"]],[14,17,["H1004"]],[17,19,["H430"]],[19,20,["H1961"]],[20,22,["H7887"]]]},{"k":7025,"v":[[0,5,["H1961"]],[5,7,["H1992"]],[7,8,["H3117"]],[8,12,["H369"]],[12,13,["H4428"]],[13,15,["H3478"]],[15,18,["H1961"]],[18,20,["H376"]],[20,21,["H3881"]],[21,22,["H1481"]],[22,25,["H3411"]],[25,27,["H2022"]],[27,28,["H669"]],[28,30,["H3947"]],[30,34,["H802","H6370"]],[34,37,["H4480","H1035","H3063"]]]},{"k":7026,"v":[[0,3,["H6370"]],[3,6,["H2181"]],[6,7,["H5921"]],[7,11,["H1980"]],[11,12,["H4480","H854"]],[12,14,["H413"]],[14,16,["H1"]],[16,17,["H1004"]],[17,18,["H413"]],[18,19,["H1035","H3063"]],[19,21,["H1961"]],[21,22,["H8033"]],[22,23,["H702"]],[23,24,["H3117"]],[24,25,["H2320"]]]},{"k":7027,"v":[[0,3,["H376"]],[3,4,["H6965"]],[4,6,["H1980"]],[6,7,["H310"]],[7,10,["H1696"]],[10,11,["H5921","H3820"]],[11,18,["H7725"]],[18,21,["H5288"]],[21,22,["H5973"]],[22,26,["H6776"]],[26,28,["H2543"]],[28,31,["H935"]],[31,35,["H1"]],[35,36,["H1004"]],[36,40,["H1"]],[40,43,["H5291"]],[43,44,["H7200"]],[44,47,["H8055"]],[47,49,["H7125"]],[49,50,[]]]},{"k":7028,"v":[[0,5,["H2859"]],[5,7,["H5291"]],[7,8,["H1"]],[8,9,["H2388"]],[9,13,["H3427"]],[13,14,["H854"]],[14,16,["H7969"]],[16,17,["H3117"]],[17,21,["H398"]],[21,23,["H8354"]],[23,25,["H3885"]],[25,26,["H8033"]]]},{"k":7029,"v":[[0,5,["H1961"]],[5,8,["H7243"]],[8,9,["H3117"]],[9,13,["H7925"]],[13,16,["H1242"]],[16,20,["H6965"]],[20,22,["H1980"]],[22,25,["H5291"]],[25,26,["H1"]],[26,27,["H559"]],[27,28,["H413"]],[28,32,["H2860"]],[32,33,["H5582"]],[33,35,["H3820"]],[35,38,["H6595"]],[38,40,["H3899"]],[40,42,["H310"]],[42,45,["H1980"]]]},{"k":7030,"v":[[0,4,["H3427"]],[4,7,["H398"]],[7,9,["H8354"]],[9,10,["H8147"]],[10,13,["H3162"]],[13,16,["H5291"]],[16,17,["H1"]],[17,19,["H559"]],[19,20,["H413"]],[20,22,["H376"]],[22,24,["H2974"]],[24,27,["H4994"]],[27,31,["H3885"]],[31,35,["H3820"]],[35,37,["H3190"]]]},{"k":7031,"v":[[0,4,["H376"]],[4,6,["H6965"]],[6,8,["H1980"]],[8,12,["H2859"]],[12,13,["H6484"]],[13,17,["H3885"]],[17,18,["H8033"]],[18,19,["H7725"]]]},{"k":7032,"v":[[0,4,["H7925"]],[4,7,["H1242"]],[7,10,["H2549"]],[10,11,["H3117"]],[11,13,["H1980"]],[13,16,["H5291"]],[16,17,["H1"]],[17,18,["H559"]],[18,19,["H5582"]],[19,21,["H3824"]],[21,24,["H4994"]],[24,27,["H4102"]],[27,28,["H5704"]],[28,29,["H5186","H3117"]],[29,33,["H398"]],[33,34,["H8147"]],[34,36,[]]]},{"k":7033,"v":[[0,4,["H376"]],[4,6,["H6965"]],[6,8,["H1980"]],[8,9,["H1931"]],[9,12,["H6370"]],[12,15,["H5288"]],[15,19,["H2859"]],[19,21,["H5291"]],[21,22,["H1"]],[22,23,["H559"]],[23,26,["H2009"]],[26,27,["H4994"]],[27,29,["H3117"]],[29,30,["H7503"]],[30,32,["H6150"]],[32,35,["H4994"]],[35,38,["H3885"]],[38,39,["H2009"]],[39,41,["H3117"]],[41,45,["H2583"]],[45,46,["H3885"]],[46,47,["H6311"]],[47,50,["H3824"]],[50,53,["H3190"]],[53,56,["H4279"]],[56,59,["H7925"]],[59,62,["H1870"]],[62,66,["H1980"]],[66,67,["H168"]]]},{"k":7034,"v":[[0,3,["H376"]],[3,4,["H14"]],[4,5,["H3808"]],[5,8,["H3885"]],[8,12,["H6965"]],[12,14,["H1980"]],[14,16,["H935"]],[16,18,["H5704","H5227"]],[18,19,["H2982"]],[19,20,["H1931"]],[20,22,["H3389"]],[22,26,["H5973"]],[26,28,["H6776"]],[28,29,["H2543"]],[29,30,["H2280"]],[30,32,["H6370"]],[32,35,["H5973"]],[35,36,[]]]},{"k":7035,"v":[[0,3,["H1992"]],[3,5,["H5973"]],[5,6,["H2982"]],[6,8,["H3117"]],[8,10,["H3966"]],[10,11,["H7286"]],[11,14,["H5288"]],[14,15,["H559"]],[15,16,["H413"]],[16,18,["H113"]],[18,19,["H1980"]],[19,22,["H4994"]],[22,27,["H5493"]],[27,28,["H413"]],[28,29,["H2063"]],[29,30,["H5892"]],[30,33,["H2983"]],[33,35,["H3885"]],[35,37,[]]]},{"k":7036,"v":[[0,3,["H113"]],[3,4,["H559"]],[4,5,["H413"]],[5,9,["H3808"]],[9,11,["H5493"]],[11,13,["H413"]],[13,15,["H5892"]],[15,18,["H5237"]],[18,19,["H834"]],[19,21,["H3808"]],[21,24,["H4480","H1121"]],[24,26,["H3478"]],[26,30,["H5674"]],[30,31,["H5704"]],[31,32,["H1390"]]]},{"k":7037,"v":[[0,3,["H559"]],[3,6,["H5288"]],[6,7,["H1980"]],[7,12,["H7126"]],[12,14,["H259"]],[14,17,["H4725"]],[17,21,["H3885"]],[21,23,["H1390"]],[23,24,["H176"]],[24,26,["H7414"]]]},{"k":7038,"v":[[0,4,["H5674"]],[4,8,["H1980"]],[8,11,["H8121"]],[11,13,["H935"]],[13,19,["H681"]],[19,20,["H1390"]],[20,21,["H834"]],[21,24,["H1144"]]]},{"k":7039,"v":[[0,4,["H5493"]],[4,5,["H8033"]],[5,8,["H935"]],[8,11,["H3885"]],[11,13,["H1390"]],[13,18,["H935"]],[18,22,["H3427"]],[22,25,["H7339"]],[25,28,["H5892"]],[28,32,["H369"]],[32,33,["H376"]],[33,35,["H622"]],[35,39,["H1004"]],[39,41,["H3885"]]]},{"k":7040,"v":[[0,2,["H2009"]],[2,4,["H935"]],[4,6,["H2205"]],[6,7,["H376"]],[7,8,["H4480"]],[8,10,["H4639"]],[10,12,["H4480"]],[12,14,["H7704"]],[14,16,["H6153"]],[16,17,["H3676"]],[17,21,["H4480","H2022"]],[21,22,["H669"]],[22,24,["H1931"]],[24,25,["H1481"]],[25,27,["H1390"]],[27,30,["H376"]],[30,33,["H4725"]],[33,35,["H1145"]]]},{"k":7041,"v":[[0,6,["H5375"]],[6,8,["H5869"]],[8,10,["H7200","(H853)"]],[10,12,["H732"]],[12,13,["H376"]],[13,16,["H7339"]],[16,19,["H5892"]],[19,22,["H2205"]],[22,23,["H376"]],[23,24,["H559"]],[24,25,["H4480","H575"]],[25,26,["H1980"]],[26,29,["H4480","H370"]],[29,30,["H935"]],[30,31,[]]]},{"k":7042,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H587"]],[6,8,["H5674"]],[8,10,["H4480","H1035","H3063"]],[10,11,["H5704"]],[11,13,["H3411"]],[13,15,["H2022"]],[15,16,["H669"]],[16,18,["H4480","H8033"]],[18,20,["H595"]],[20,23,["H1980"]],[23,24,["H5704"]],[24,25,["H1035","H3063"]],[25,27,["H589"]],[27,30,["H1980"]],[30,33,["H1004"]],[33,36,["H3068"]],[36,40,["H369"]],[40,41,["H376"]],[41,43,["H622"]],[43,46,["H1004"]]]},{"k":7043,"v":[[0,3,["H3426"]],[3,4,["H1571"]],[4,5,["H8401"]],[5,6,["H1571"]],[6,7,["H4554"]],[7,10,["H2543"]],[10,13,["H3426"]],[13,14,["H3899"]],[14,16,["H3196"]],[16,17,["H1571"]],[17,23,["H519"]],[23,28,["H5288"]],[28,31,["H5973"]],[31,33,["H5650"]],[33,36,["H369"]],[36,37,["H4270"]],[37,39,["H3605"]],[39,40,["H1697"]]]},{"k":7044,"v":[[0,3,["H2205"]],[3,4,["H376"]],[4,5,["H559"]],[5,6,["H7965"]],[6,10,["H7535"]],[10,12,["H3605"]],[12,14,["H4270"]],[14,16,["H5921"]],[16,18,["H7535"]],[18,19,["H3885"]],[19,20,["H408"]],[20,23,["H7339"]]]},{"k":7045,"v":[[0,3,["H935"]],[3,7,["H1004"]],[7,10,["H1101"]],[10,13,["H2543"]],[13,16,["H7364"]],[16,18,["H7272"]],[18,21,["H398"]],[21,23,["H8354"]]]},{"k":7046,"v":[[0,3,["H1992"]],[3,8,["H3190","(H853)","H3820"]],[8,9,["H2009"]],[9,11,["H376"]],[11,14,["H5892"]],[14,15,["H376"]],[15,16,["H1121"]],[16,18,["H1100"]],[18,23,["H5437","(H853)","H1004"]],[23,25,["H1849"]],[25,26,["H5921"]],[26,28,["H1817"]],[28,30,["H559"]],[30,31,["H413"]],[31,33,["H1167"]],[33,36,["H1004"]],[36,39,["H2205"]],[39,40,["H559"]],[40,42,["H3318","(H853)"]],[42,44,["H376"]],[44,45,["H834"]],[45,46,["H935"]],[46,47,["H413"]],[47,49,["H1004"]],[49,53,["H3045"]],[53,54,[]]]},{"k":7047,"v":[[0,3,["H376"]],[3,5,["H1167"]],[5,8,["H1004"]],[8,10,["H3318"]],[10,11,["H413"]],[11,14,["H559"]],[14,15,["H413"]],[15,17,["H408"]],[17,19,["H251"]],[19,23,["H4994"]],[23,27,["H7489","H408"]],[27,29,["H310","H834"]],[29,30,["H2088"]],[30,31,["H376"]],[31,33,["H935"]],[33,34,["H413"]],[34,36,["H1004"]],[36,37,["H6213"]],[37,38,["H408","(H853)"]],[38,39,["H2063"]],[39,40,["H5039"]]]},{"k":7048,"v":[[0,1,["H2009"]],[1,5,["H1323"]],[5,7,["H1330"]],[7,10,["H6370"]],[10,15,["H3318"]],[15,16,["H4994"]],[16,18,["H6031"]],[18,22,["H6213"]],[22,26,["H5869"]],[26,27,["H2896"]],[27,32,["H2088"]],[32,33,["H376"]],[33,34,["H6213"]],[34,35,["H3808"]],[35,36,["H2063"]],[36,37,["H5039"]],[37,39,["H1697"]]]},{"k":7049,"v":[[0,3,["H376"]],[3,4,["H14"]],[4,5,["H3808"]],[5,6,["H8085"]],[6,11,["H376"]],[11,12,["H2388"]],[12,14,["H6370"]],[14,18,["H3318","H2351"]],[18,19,["H413"]],[19,23,["H3045"]],[23,26,["H5953"]],[26,28,["H3605"]],[28,30,["H3915"]],[30,31,["H5704"]],[31,33,["H1242"]],[33,37,["H7837"]],[37,40,["H5927"]],[40,44,["H7971"]]]},{"k":7050,"v":[[0,2,["H935"]],[2,4,["H802"]],[4,7,["H6437"]],[7,10,["H1242"]],[10,13,["H5307"]],[13,16,["H6607"]],[16,19,["H376"]],[19,20,["H1004"]],[20,21,["H834","H8033"]],[21,23,["H113"]],[23,25,["H5704"]],[25,28,["H216"]]]},{"k":7051,"v":[[0,3,["H113"]],[3,5,["H6965"]],[5,8,["H1242"]],[8,10,["H6605"]],[10,12,["H1817"]],[12,15,["H1004"]],[15,18,["H3318"]],[18,20,["H1980"]],[20,22,["H1870"]],[22,24,["H2009"]],[24,26,["H802"]],[26,28,["H6370"]],[28,31,["H5307"]],[31,34,["H6607"]],[34,37,["H1004"]],[37,40,["H3027"]],[40,42,["H5921"]],[42,44,["H5592"]]]},{"k":7052,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H6965"]],[6,11,["H1980"]],[11,13,["H369"]],[13,14,["H6030"]],[14,18,["H3947"]],[18,21,["H5921"]],[21,23,["H2543"]],[23,26,["H376"]],[26,28,["H6965"]],[28,30,["H1980"]],[30,34,["H4725"]]]},{"k":7053,"v":[[0,5,["H935"]],[5,6,["H413"]],[6,8,["H1004"]],[8,10,["H3947","(H853)"]],[10,12,["H3979"]],[12,15,["H2388"]],[15,18,["H6370"]],[18,20,["H5408"]],[20,25,["H6106"]],[25,27,["H8147","H6240"]],[27,28,["H5409"]],[28,30,["H7971"]],[30,33,["H3605"]],[33,35,["H1366"]],[35,37,["H3478"]]]},{"k":7054,"v":[[0,3,["H1961"]],[3,6,["H3605"]],[6,8,["H7200"]],[8,10,["H559"]],[10,13,["H3808"]],[13,14,["H2063"]],[14,16,["H1961"]],[16,17,["H3808"]],[17,18,["H7200"]],[18,21,["H4480","H3117"]],[21,24,["H1121"]],[24,26,["H3478"]],[26,28,["H5927"]],[28,32,["H4480","H776"]],[32,34,["H4714"]],[34,35,["H5704"]],[35,36,["H2088"]],[36,37,["H3117"]],[37,38,["H7760"]],[38,39,["H5921"]],[39,42,["H5779"]],[42,44,["H1696"]],[44,46,[]]]},{"k":7055,"v":[[0,2,["H3605"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H3318"]],[8,11,["H5712"]],[11,14,["H6950"]],[14,16,["H259"]],[16,17,["H376"]],[17,19,["H4480","H1835"]],[19,21,["H5704"]],[21,22,["H884"]],[22,25,["H776"]],[25,27,["H1568"]],[27,28,["H413"]],[28,30,["H3068"]],[30,32,["H4709"]]]},{"k":7056,"v":[[0,3,["H6438"]],[3,5,["H3605"]],[5,7,["H5971"]],[7,10,["H3605"]],[10,12,["H7626"]],[12,14,["H3478"]],[14,16,["H3320"]],[16,19,["H6951"]],[19,22,["H5971"]],[22,24,["H430"]],[24,25,["H702"]],[25,26,["H3967"]],[26,27,["H505"]],[27,28,["H376","H7273"]],[28,30,["H8025"]],[30,31,["H2719"]]]},{"k":7057,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,6,["H8085"]],[6,7,["H3588"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,14,["H5927"]],[14,16,["H4709"]],[16,18,["H559"]],[18,20,["H1121"]],[20,22,["H3478"]],[22,23,["H1696"]],[23,25,["H349"]],[25,26,["H1961"]],[26,27,["H2063"]],[27,28,["H7451"]]]},{"k":7058,"v":[[0,3,["H376","H3881"]],[3,5,["H376"]],[5,8,["H802"]],[8,11,["H7523"]],[11,12,["H6030"]],[12,14,["H559"]],[14,16,["H935"]],[16,18,["H1390"]],[18,19,["H834"]],[19,22,["H1144"]],[22,23,["H589"]],[23,26,["H6370"]],[26,28,["H3885"]]]},{"k":7059,"v":[[0,3,["H1167"]],[3,5,["H1390"]],[5,6,["H6965"]],[6,7,["H5921"]],[7,14,["H5437","(H853)","H1004"]],[14,15,["H5921"]],[15,18,["H3915"]],[18,20,["H1819"]],[20,23,["H2026"]],[23,27,["H6370"]],[27,30,["H6031"]],[30,34,["H4191"]]]},{"k":7060,"v":[[0,3,["H270"]],[3,5,["H6370"]],[5,10,["H5408"]],[10,12,["H7971"]],[12,15,["H3605"]],[15,17,["H7704"]],[17,20,["H5159"]],[20,22,["H3478"]],[22,23,["H3588"]],[23,26,["H6213"]],[26,27,["H2154"]],[27,29,["H5039"]],[29,31,["H3478"]]]},{"k":7061,"v":[[0,1,["H2009"]],[1,4,["H3605"]],[4,5,["H1121"]],[5,7,["H3478"]],[7,8,["H3051"]],[8,9,["H1988"]],[9,11,["H1697"]],[11,13,["H6098"]]]},{"k":7062,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H6965"]],[5,7,["H259"]],[7,8,["H376"]],[8,9,["H559"]],[9,12,["H3808"]],[12,13,["H376"]],[13,16,["H1980"]],[16,19,["H168"]],[19,20,["H3808"]],[20,23,["H376"]],[23,26,["H5493"]],[26,29,["H1004"]]]},{"k":7063,"v":[[0,2,["H6258"]],[2,3,["H2088"]],[3,7,["H1697"]],[7,8,["H834"]],[8,11,["H6213"]],[11,13,["H1390"]],[13,19,["H1486"]],[19,20,["H5921"]],[20,21,[]]]},{"k":7064,"v":[[0,4,["H3947"]],[4,5,["H6235"]],[5,6,["H376"]],[6,9,["H3967"]],[9,11,["H3605"]],[11,13,["H7626"]],[13,15,["H3478"]],[15,18,["H3967"]],[18,21,["H505"]],[21,24,["H505"]],[24,28,["H7233"]],[28,30,["H3947"]],[30,31,["H6720"]],[31,34,["H5971"]],[34,38,["H6213"]],[38,41,["H935"]],[41,43,["H1387"]],[43,45,["H1144"]],[45,48,["H3605"]],[48,50,["H5039"]],[50,51,["H834"]],[51,54,["H6213"]],[54,56,["H3478"]]]},{"k":7065,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,6,["H3478"]],[6,8,["H622"]],[8,9,["H413"]],[9,11,["H5892"]],[11,13,["H2270"]],[13,15,["H259"]],[15,16,["H376"]]]},{"k":7066,"v":[[0,3,["H7626"]],[3,5,["H3478"]],[5,6,["H7971"]],[6,7,["H376"]],[7,9,["H3605"]],[9,11,["H7626"]],[11,13,["H1144"]],[13,14,["H559"]],[14,15,["H4100"]],[15,16,["H7451"]],[16,18,["H2063"]],[18,19,["H834"]],[19,21,["H1961"]],[21,23,[]]]},{"k":7067,"v":[[0,1,["H6258"]],[1,3,["H5414"]],[3,4,["(H853)"]],[4,6,["H376"]],[6,8,["H1121"]],[8,10,["H1100"]],[10,11,["H834"]],[11,14,["H1390"]],[14,21,["H4191"]],[21,24,["H1197"]],[24,25,["H7451"]],[25,27,["H4480","H3478"]],[27,30,["H1121"]],[30,32,["H1144"]],[32,33,["H14"]],[33,34,["H3808"]],[34,35,["H8085"]],[35,38,["H6963"]],[38,41,["H251"]],[41,43,["H1121"]],[43,45,["H3478"]]]},{"k":7068,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,8,["H622"]],[8,10,["H4480"]],[10,12,["H5892"]],[12,14,["H1390"]],[14,17,["H3318"]],[17,19,["H4421"]],[19,20,["H5973"]],[20,22,["H1121"]],[22,24,["H3478"]]]},{"k":7069,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,7,["H6485"]],[7,9,["H1931"]],[9,10,["H3117"]],[10,14,["H4480","H5892"]],[14,15,["H6242"]],[15,17,["H8337"]],[17,18,["H505"]],[18,19,["H376"]],[19,21,["H8025"]],[21,22,["H2719"]],[22,23,["H905"]],[23,25,["H4480","H3427"]],[25,27,["H1390"]],[27,30,["H6485"]],[30,31,["H7651"]],[31,32,["H3967"]],[32,33,["H970"]],[33,34,["H376"]]]},{"k":7070,"v":[[0,2,["H4480","H3605"]],[2,3,["H2088"]],[3,4,["H5971"]],[4,7,["H7651"]],[7,8,["H3967"]],[8,9,["H977"]],[9,10,["H376"]],[10,11,["H334","H3027","H3225"]],[11,13,["H3605","H2088"]],[13,15,["H7049"]],[15,16,["H68"]],[16,17,["H413"]],[17,19,["H8185"]],[19,22,["H3808"]],[22,23,["H2398"]]]},{"k":7071,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,6,["H905"]],[6,7,["H4480","H1144"]],[7,9,["H6485"]],[9,10,["H702"]],[10,11,["H3967"]],[11,12,["H505"]],[12,13,["H376"]],[13,15,["H8025"]],[15,16,["H2719"]],[16,17,["H3605"]],[17,18,["H2088"]],[18,20,["H376"]],[20,22,["H4421"]]]},{"k":7072,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6965"]],[6,9,["H5927"]],[9,14,["H1008"]],[14,17,["H7592"]],[17,19,["H430"]],[19,21,["H559"]],[21,22,["H4310"]],[22,27,["H5927"]],[27,28,["H8462"]],[28,31,["H4421"]],[31,32,["H5973"]],[32,34,["H1121"]],[34,36,["H1144"]],[36,39,["H3068"]],[39,40,["H559"]],[40,41,["H3063"]],[41,45,["H8462"]]]},{"k":7073,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H6965"]],[7,10,["H1242"]],[10,12,["H2583"]],[12,13,["H5921"]],[13,14,["H1390"]]]},{"k":7074,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,7,["H3318"]],[7,9,["H4421"]],[9,10,["H5973"]],[10,11,["H1144"]],[11,14,["H376"]],[14,16,["H3478"]],[16,20,["H6186"]],[20,22,["H4421"]],[22,23,["H854"]],[23,25,["H413"]],[25,26,["H1390"]]]},{"k":7075,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,7,["H3318"]],[7,9,["H4480"]],[9,10,["H1390"]],[10,13,["H7843"]],[13,16,["H776"]],[16,19,["H3478"]],[19,20,["H1931"]],[20,21,["H3117"]],[21,22,["H6242"]],[22,24,["H8147"]],[24,25,["H505"]],[25,26,["H376"]]]},{"k":7076,"v":[[0,3,["H5971"]],[3,5,["H376"]],[5,7,["H3478"]],[7,9,["H2388"]],[9,11,["H6186"]],[11,13,["H4421"]],[13,14,["H3254"]],[14,16,["H6186"]],[16,19,["H4725"]],[19,20,["H834","H8033"]],[20,25,["H6186"]],[25,27,["H7223"]],[27,28,["H3117"]]]},{"k":7077,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H5927"]],[7,9,["H1058"]],[9,10,["H6440"]],[10,12,["H3068"]],[12,13,["H5704"]],[13,14,["H6153"]],[14,17,["H7592"]],[17,20,["H3068"]],[20,21,["H559"]],[21,25,["H5066"]],[25,26,["H3254"]],[26,28,["H4421"]],[28,29,["H5973"]],[29,31,["H1121"]],[31,33,["H1144"]],[33,35,["H251"]],[35,38,["H3068"]],[38,39,["H559"]],[39,41,["H5927"]],[41,42,["H413"]],[42,43,[]]]},{"k":7078,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H7126"]],[7,8,["H413"]],[8,10,["H1121"]],[10,12,["H1144"]],[12,14,["H8145"]],[14,15,["H3117"]]]},{"k":7079,"v":[[0,2,["H1144"]],[2,4,["H3318"]],[4,5,["H7125"]],[5,8,["H4480"]],[8,9,["H1390"]],[9,11,["H8145"]],[11,12,["H3117"]],[12,14,["H7843"]],[14,18,["H776"]],[18,21,["H1121"]],[21,23,["H3478"]],[23,24,["H5750"]],[24,25,["H8083","H6240"]],[25,26,["H505"]],[26,27,["H376"]],[27,28,["H3605"]],[28,29,["H428"]],[29,30,["H8025"]],[30,32,["H2719"]]]},{"k":7080,"v":[[0,2,["H3605"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H3605"]],[8,10,["H5971"]],[10,12,["H5927"]],[12,14,["H935"]],[14,19,["H1008"]],[19,21,["H1058"]],[21,23,["H3427"]],[23,24,["H8033"]],[24,25,["H6440"]],[25,27,["H3068"]],[27,29,["H6684"]],[29,30,["H1931"]],[30,31,["H3117"]],[31,32,["H5704"]],[32,33,["H6153"]],[33,35,["H5927"]],[35,37,["H5930"]],[37,40,["H8002"]],[40,41,["H6440"]],[41,43,["H3068"]]]},{"k":7081,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H7592"]],[6,9,["H3068"]],[9,12,["H727"]],[12,15,["H1285"]],[15,17,["H430"]],[17,19,["H8033"]],[19,21,["H1992"]],[21,22,["H3117"]]]},{"k":7082,"v":[[0,2,["H6372"]],[2,4,["H1121"]],[4,6,["H499"]],[6,8,["H1121"]],[8,10,["H175"]],[10,11,["H5975"]],[11,12,["H6440"]],[12,15,["H1992"]],[15,16,["H3117"]],[16,17,["H559"]],[17,20,["H5750"]],[20,21,["H3254"]],[21,23,["H3318"]],[23,25,["H4421"]],[25,26,["H5973"]],[26,28,["H1121"]],[28,30,["H1144"]],[30,32,["H251"]],[32,33,["H518"]],[33,36,["H2308"]],[36,39,["H3068"]],[39,40,["H559"]],[40,42,["H5927"]],[42,43,["H3588"]],[43,45,["H4279"]],[45,48,["H5414"]],[48,52,["H3027"]]]},{"k":7083,"v":[[0,2,["H3478"]],[2,3,["H7760"]],[3,6,["H693"]],[6,8,["H5439","H413"]],[8,9,["H1390"]]]},{"k":7084,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H5927"]],[7,8,["H413"]],[8,10,["H1121"]],[10,12,["H1144"]],[12,15,["H7992"]],[15,16,["H3117"]],[16,21,["H6186"]],[21,22,["H413"]],[22,23,["H1390"]],[23,27,["H6471","H6471"]]]},{"k":7085,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,7,["H3318"]],[7,8,["H7125"]],[8,10,["H5971"]],[10,14,["H5423"]],[14,15,["H4480"]],[15,17,["H5892"]],[17,20,["H2490"]],[20,22,["H5221"]],[22,25,["H4480","H5971"]],[25,27,["H2491"]],[27,31,["H6471","H6471"]],[31,34,["H4546"]],[34,36,["H834"]],[36,37,["H259"]],[37,39,["H5927"]],[39,44,["H1008"]],[44,47,["H259"]],[47,49,["H1390"]],[49,52,["H7704"]],[52,54,["H7970"]],[54,55,["H376"]],[55,57,["H3478"]]]},{"k":7086,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,6,["H559"]],[6,7,["H1992"]],[7,10,["H5062"]],[10,11,["H6440"]],[11,16,["H7223"]],[16,19,["H1121"]],[19,21,["H3478"]],[21,22,["H559"]],[22,25,["H5127"]],[25,27,["H5423"]],[27,29,["H4480"]],[29,31,["H5892"]],[31,32,["H413"]],[32,34,["H4546"]]]},{"k":7087,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,6,["H3478"]],[6,8,["H6965"]],[8,12,["H4480","H4725"]],[12,17,["H6186"]],[17,19,["H1193"]],[19,24,["H693"]],[24,26,["H3478"]],[26,28,["H1518"]],[28,32,["H4480","H4725"]],[32,37,["H4480","H4629"]],[37,39,["H4480","H1390"]]]},{"k":7088,"v":[[0,3,["H935"]],[3,4,["H4480","H5048"]],[4,5,["H1390"]],[5,6,["H6235"]],[6,7,["H505"]],[7,8,["H977"]],[8,9,["H376"]],[9,12,["H4480","H3605"]],[12,13,["H3478"]],[13,16,["H4421"]],[16,18,["H3513"]],[18,20,["H1992"]],[20,21,["H3045"]],[21,22,["H3808"]],[22,23,["H3588"]],[23,24,["H7451"]],[24,26,["H5060"]],[26,27,[]]]},{"k":7089,"v":[[0,3,["H3068"]],[3,4,["H5062","(H853)"]],[4,5,["H1144"]],[5,6,["H6440"]],[6,7,["H3478"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,13,["H7843"]],[13,16,["H1144"]],[16,17,["H1931"]],[17,18,["H3117"]],[18,19,["H6242"]],[19,21,["H2568"]],[21,22,["H505"]],[22,25,["H3967"]],[25,26,["H376"]],[26,27,["H3605"]],[27,28,["H428"]],[28,29,["H8025"]],[29,31,["H2719"]]]},{"k":7090,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,6,["H7200"]],[6,7,["H3588"]],[7,10,["H5062"]],[10,13,["H376"]],[13,15,["H3478"]],[15,16,["H5414"]],[16,17,["H4725"]],[17,20,["H1144"]],[20,21,["H3588"]],[21,23,["H982"]],[23,24,["H413"]],[24,28,["H693"]],[28,29,["H834"]],[29,32,["H7760"]],[32,33,["H413"]],[33,34,["H1390"]]]},{"k":7091,"v":[[0,5,["H693"]],[5,6,["H2363"]],[6,8,["H6584"]],[8,9,["H413"]],[9,10,["H1390"]],[10,15,["H693"]],[15,18,["H4900"]],[18,20,["H5221","(H853)"]],[20,21,["H3605"]],[21,23,["H5892"]],[23,26,["H6310"]],[26,29,["H2719"]]]},{"k":7092,"v":[[0,3,["H1961"]],[3,6,["H4150"]],[6,9,["H376"]],[9,11,["H3478"]],[11,16,["H693"]],[16,22,["H7235"]],[22,23,["H4864"]],[23,25,["H6227"]],[25,27,["H5927"]],[27,29,["H4480"]],[29,31,["H5892"]]]},{"k":7093,"v":[[0,4,["H376"]],[4,6,["H3478"]],[6,7,["H2015"]],[7,10,["H4421"]],[10,11,["H1144"]],[11,12,["H2490"]],[12,14,["H5221"]],[14,16,["H2491"]],[16,19,["H376"]],[19,21,["H3478"]],[21,23,["H7970"]],[23,24,["H376"]],[24,25,["H3588"]],[25,27,["H559"]],[27,28,["H389"]],[28,29,["H1931"]],[29,32,["H5062","H5062"]],[32,33,["H6440"]],[33,38,["H7223"]],[38,39,["H4421"]]]},{"k":7094,"v":[[0,4,["H4864"]],[4,5,["H2490"]],[5,8,["H5927"]],[8,10,["H4480"]],[10,12,["H5892"]],[12,15,["H5982"]],[15,17,["H6227"]],[17,19,["H1144"]],[19,20,["H6437"]],[20,21,["H310"]],[21,24,["H2009"]],[24,26,["H3632"]],[26,29,["H5892"]],[29,31,["H5927"]],[31,33,["H8064"]]]},{"k":7095,"v":[[0,4,["H376"]],[4,6,["H3478"]],[6,8,["H2015"]],[8,10,["H376"]],[10,12,["H1144"]],[12,14,["H926"]],[14,15,["H3588"]],[15,17,["H7200"]],[17,18,["H3588"]],[18,19,["H7451"]],[19,21,["H5060"]],[21,22,["H5921"]],[22,23,[]]]},{"k":7096,"v":[[0,3,["H6437"]],[3,6,["H6440"]],[6,8,["H376"]],[8,10,["H3478"]],[10,11,["H413"]],[11,13,["H1870"]],[13,16,["H4057"]],[16,19,["H4421"]],[19,20,["H1692"]],[20,24,["H834"]],[24,29,["H4480","H5892"]],[29,31,["H7843"]],[31,34,["H8432"]],[34,36,[]]]},{"k":7097,"v":[[0,7,["H3803","(H853)","H1144"]],[7,9,["H7291"]],[9,14,["H1869"]],[14,16,["H4496"]],[16,18,["H5704","H5227"]],[18,19,["H1390"]],[19,22,["H4480","H4217","H8121"]]]},{"k":7098,"v":[[0,3,["H5307"]],[3,5,["H4480","H1144"]],[5,6,["H8083","H6240"]],[6,7,["H505"]],[7,8,["H376","(H853)"]],[8,9,["H3605"]],[9,10,["H428"]],[10,12,["H376"]],[12,14,["H2428"]]]},{"k":7099,"v":[[0,3,["H6437"]],[3,5,["H5127"]],[5,8,["H4057"]],[8,9,["H413"]],[9,11,["H5553"]],[11,13,["H7417"]],[13,16,["H5953"]],[16,21,["H4546"]],[21,22,["H2568"]],[22,23,["H505"]],[23,24,["H376"]],[24,27,["H1692"]],[27,28,["H310"]],[28,30,["H5704"]],[30,31,["H1440"]],[31,33,["H5221"]],[33,35,["H505"]],[35,36,["H376"]],[36,37,["H4480"]],[37,38,[]]]},{"k":7100,"v":[[0,3,["H3605"]],[3,5,["H5307"]],[5,6,["H1931"]],[6,7,["H3117"]],[7,9,["H4480","H1144"]],[9,10,["H1961"]],[10,11,["H6242"]],[11,13,["H2568"]],[13,14,["H505"]],[14,15,["H376"]],[15,17,["H8025"]],[17,19,["H2719","(H853)"]],[19,20,["H3605"]],[20,21,["H428"]],[21,23,["H376"]],[23,25,["H2428"]]]},{"k":7101,"v":[[0,2,["H8337"]],[2,3,["H3967"]],[3,4,["H376"]],[4,5,["H6437"]],[5,7,["H5127"]],[7,10,["H4057"]],[10,11,["H413"]],[11,13,["H5553"]],[13,14,["H7417"]],[14,16,["H3427"]],[16,19,["H5553"]],[19,20,["H7417"]],[20,21,["H702"]],[21,22,["H2320"]]]},{"k":7102,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,7,["H7725"]],[7,8,["H413"]],[8,10,["H1121"]],[10,12,["H1144"]],[12,14,["H5221"]],[14,18,["H6310"]],[18,21,["H2719"]],[21,25,["H4974"]],[25,28,["H4480","H5892"]],[28,29,["H5704"]],[29,31,["H929"]],[31,33,["H3605"]],[33,37,["H4672"]],[37,38,["H1571"]],[38,40,["H7971"]],[40,42,["H784"]],[42,43,["H3605"]],[43,45,["H5892"]],[45,49,["H4672"]]]},{"k":7103,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,7,["H7650"]],[7,9,["H4709"]],[9,10,["H559"]],[10,13,["H3808"]],[13,14,["H376"]],[14,15,["H4480"]],[15,17,["H5414"]],[17,19,["H1323"]],[19,21,["H1144"]],[21,23,["H802"]]]},{"k":7104,"v":[[0,3,["H5971"]],[3,4,["H935"]],[4,9,["H1008"]],[9,11,["H3427"]],[11,12,["H8033"]],[12,13,["H5704"]],[13,14,["H6153"]],[14,15,["H6440"]],[15,16,["H430"]],[16,19,["H5375"]],[19,21,["H6963"]],[21,23,["H1058"]],[23,24,["H1065","H1419"]]]},{"k":7105,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,8,["H4100"]],[8,10,["H2063"]],[10,13,["H1961"]],[13,15,["H3478"]],[15,21,["H3117"]],[21,22,["H259"]],[22,23,["H7626"]],[23,24,["H6485"]],[24,26,["H4480","H3478"]]]},{"k":7106,"v":[[0,5,["H1961"]],[5,8,["H4480","H4283"]],[8,11,["H5971"]],[11,13,["H7925"]],[13,15,["H1129"]],[15,16,["H8033"]],[16,18,["H4196"]],[18,20,["H5927"]],[20,22,["H5930"]],[22,25,["H8002"]]]},{"k":7107,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H4310"]],[7,11,["H4480","H3605"]],[11,13,["H7626"]],[13,15,["H3478"]],[15,16,["H834"]],[16,19,["H5927","H3808"]],[19,22,["H6951"]],[22,23,["H413"]],[23,25,["H3068"]],[25,26,["H3588"]],[26,29,["H1961"]],[29,31,["H1419"]],[31,32,["H7621"]],[32,33,["H834"]],[33,38,["H5927","H3808"]],[38,39,["H413"]],[39,41,["H3068"]],[41,43,["H4709"]],[43,44,["H559"]],[44,51,["H4191","H4191"]]]},{"k":7108,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5162"]],[6,8,["H413"]],[8,9,["H1144"]],[9,11,["H251"]],[11,13,["H559"]],[13,16,["H259"]],[16,17,["H7626"]],[17,19,["H1438"]],[19,21,["H4480","H3478"]],[21,23,["H3117"]]]},{"k":7109,"v":[[0,1,["H4100"]],[1,4,["H6213"]],[4,6,["H802"]],[6,10,["H3498"]],[10,12,["H587"]],[12,14,["H7650"]],[14,17,["H3068"]],[17,21,["H1115"]],[21,22,["H5414"]],[22,26,["H4480","H1323"]],[26,28,["H802"]]]},{"k":7110,"v":[[0,3,["H559"]],[3,4,["H4310"]],[4,5,["H259"]],[5,10,["H4480","H7626"]],[10,12,["H3478"]],[12,13,["H834"]],[13,16,["H5927","H3808"]],[16,18,["H4709"]],[18,19,["H413"]],[19,21,["H3068"]],[21,23,["H2009"]],[23,25,["H935"]],[25,26,["H3808","H376"]],[26,27,["H413"]],[27,29,["H4264"]],[29,31,["H4480","H3003","H1568"]],[31,32,["H413"]],[32,34,["H6951"]]]},{"k":7111,"v":[[0,3,["H5971"]],[3,5,["H6485"]],[5,7,["H2009"]],[7,10,["H369","H376"]],[10,13,["H4480","H3427"]],[13,15,["H3003","H1568"]],[15,16,["H8033"]]]},{"k":7112,"v":[[0,3,["H5712"]],[3,4,["H7971"]],[4,5,["H8033"]],[5,6,["H8147","H6240"]],[6,7,["H505"]],[7,8,["H376"]],[8,11,["H4480","H1121","H2428"]],[11,13,["H6680"]],[13,15,["H559"]],[15,16,["H1980"]],[16,18,["H5221","(H853)"]],[18,20,["H3427"]],[20,22,["H3003","H1568"]],[22,25,["H6310"]],[25,28,["H2719"]],[28,31,["H802"]],[31,34,["H2945"]]]},{"k":7113,"v":[[0,2,["H2088"]],[2,5,["H1697"]],[5,6,["H834"]],[6,9,["H6213"]],[9,13,["H2763"]],[13,14,["H3605"]],[14,15,["H2145"]],[15,17,["H3605"]],[17,18,["H802"]],[18,21,["H3045","H4904"]],[21,23,["H2145"]]]},{"k":7114,"v":[[0,3,["H4672"]],[3,6,["H4480","H3427"]],[6,8,["H3003","H1568"]],[8,9,["H702"]],[9,10,["H3967"]],[10,11,["H5291"]],[11,12,["H1330"]],[12,13,["H834"]],[13,15,["H3045"]],[15,16,["H3808"]],[16,17,["H376"]],[17,19,["H4904"]],[19,22,["H2145"]],[22,25,["H935"]],[25,27,["H413"]],[27,29,["H4264"]],[29,31,["H7887"]],[31,32,["H834"]],[32,36,["H776"]],[36,38,["H3667"]]]},{"k":7115,"v":[[0,3,["H3605"]],[3,4,["H5712"]],[4,5,["H7971"]],[5,8,["H1696"]],[8,9,["H413"]],[9,11,["H1121"]],[11,13,["H1144"]],[13,14,["H834"]],[14,18,["H5553"]],[18,19,["H7417"]],[19,22,["H7121"]],[22,23,["H7965"]],[23,25,[]]]},{"k":7116,"v":[[0,2,["H1144"]],[2,4,["H7725"]],[4,6,["H1931"]],[6,7,["H6256"]],[7,10,["H5414"]],[10,12,["H802"]],[12,13,["H834"]],[13,17,["H2421"]],[17,20,["H4480","H802"]],[20,22,["H3003","H1568"]],[22,25,["H3651"]],[25,27,["H4672"]],[27,29,["H3808"]]]},{"k":7117,"v":[[0,3,["H5971"]],[3,5,["H5162"]],[5,7,["H1144"]],[7,8,["H3588"]],[8,11,["H3068"]],[11,13,["H6213"]],[13,15,["H6556"]],[15,18,["H7626"]],[18,20,["H3478"]]]},{"k":7118,"v":[[0,3,["H2205"]],[3,6,["H5712"]],[6,7,["H559"]],[7,8,["H4100"]],[8,11,["H6213"]],[11,13,["H802"]],[13,17,["H3498"]],[17,18,["H3588"]],[18,20,["H802"]],[20,22,["H8045"]],[22,25,["H4480","H1144"]]]},{"k":7119,"v":[[0,3,["H559"]],[3,8,["H3425"]],[8,13,["H6413"]],[13,15,["H1144"]],[15,18,["H7626"]],[18,20,["H3808"]],[20,21,["H4229"]],[21,24,["H4480","H3478"]]]},{"k":7120,"v":[[0,2,["H587"]],[2,3,["H3201"]],[3,4,["H3808"]],[4,5,["H5414"]],[5,7,["H802"]],[7,10,["H4480","H1323"]],[10,11,["H3588"]],[11,13,["H1121"]],[13,15,["H3478"]],[15,17,["H7650"]],[17,18,["H559"]],[18,19,["H779"]],[19,23,["H5414"]],[23,25,["H802"]],[25,27,["H1144"]]]},{"k":7121,"v":[[0,3,["H559"]],[3,4,["H2009"]],[4,8,["H2282"]],[8,11,["H3068"]],[11,13,["H7887"]],[13,14,["H4480","H3117","H3117"]],[14,18,["H834"]],[18,23,["H4480","H6828"]],[23,25,["H4480","H1008"]],[25,29,["H4217","H8121"]],[29,32,["H4546"]],[32,35,["H5927"]],[35,37,["H4480","H1008"]],[37,39,["H7927"]],[39,43,["H4480","H5045"]],[43,45,["H3829"]]]},{"k":7122,"v":[[0,3,["H6680","(H853)"]],[3,5,["H1121"]],[5,7,["H1144"]],[7,8,["H559"]],[8,9,["H1980"]],[9,13,["H693"]],[13,16,["H3754"]]]},{"k":7123,"v":[[0,2,["H7200"]],[2,4,["H2009"]],[4,5,["H518"]],[5,7,["H1323"]],[7,9,["H7887"]],[9,11,["H3318"]],[11,13,["H2342"]],[13,15,["H4246"]],[15,19,["H3318"]],[19,20,["H4480"]],[20,22,["H3754"]],[22,24,["H2414"]],[24,27,["H376"]],[27,29,["H802"]],[29,32,["H4480","H1323"]],[32,34,["H7887"]],[34,36,["H1980"]],[36,39,["H776"]],[39,41,["H1144"]]]},{"k":7124,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,7,["H1"]],[7,8,["H176"]],[8,10,["H251"]],[10,11,["H935"]],[11,12,["H413"]],[12,15,["H7378"]],[15,19,["H559"]],[19,20,["H413"]],[20,23,["H2603"]],[23,29,["H3588"]],[29,31,["H3947"]],[31,32,["H3808"]],[32,35,["H376"]],[35,37,["H802"]],[37,40,["H4421"]],[40,41,["H3588"]],[41,42,["H859"]],[42,44,["H3808"]],[44,45,["H5414"]],[45,50,["H6256"]],[50,55,["H816"]]]},{"k":7125,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,6,["H6213"]],[6,7,["H3651"]],[7,9,["H5375"]],[9,11,["H802"]],[11,15,["H4557"]],[15,16,["H4480"]],[16,19,["H2342"]],[19,20,["H834"]],[20,22,["H1497"]],[22,25,["H1980"]],[25,27,["H7725"]],[27,28,["H413"]],[28,30,["H5159"]],[30,32,["H1129","(H853)"]],[32,34,["H5892"]],[34,36,["H3427"]],[36,38,[]]]},{"k":7126,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H1980"]],[6,7,["H4480","H8033"]],[7,9,["H1931"]],[9,10,["H6256"]],[10,12,["H376"]],[12,15,["H7626"]],[15,19,["H4940"]],[19,23,["H3318"]],[23,25,["H4480","H8033"]],[25,27,["H376"]],[27,30,["H5159"]]]},{"k":7127,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,6,["H369"]],[6,7,["H4428"]],[7,9,["H3478"]],[9,11,["H376"]],[11,12,["H6213"]],[12,16,["H3477"]],[16,20,["H5869"]]]},{"k":7128,"v":[[0,5,["H1961"]],[5,8,["H3117"]],[8,11,["H8199"]],[11,12,["H8199"]],[12,15,["H1961"]],[15,17,["H7458"]],[17,20,["H776"]],[20,24,["H376"]],[24,26,["H4480","H1035","H3063"]],[26,27,["H1980"]],[27,29,["H1481"]],[29,32,["H7704"]],[32,34,["H4124"]],[34,35,["H1931"]],[35,38,["H802"]],[38,41,["H8147"]],[41,42,["H1121"]]]},{"k":7129,"v":[[0,3,["H8034"]],[3,6,["H376"]],[6,8,["H458"]],[8,11,["H8034"]],[11,14,["H802"]],[14,15,["H5281"]],[15,18,["H8034"]],[18,21,["H8147"]],[21,22,["H1121"]],[22,23,["H4248"]],[23,25,["H3630"]],[25,26,["H673"]],[26,28,["H4480","H1035","H3063"]],[28,31,["H935"]],[31,34,["H7704"]],[34,36,["H4124"]],[36,38,["H1961"]],[38,39,["H8033"]]]},{"k":7130,"v":[[0,2,["H458"]],[2,3,["H5281"]],[3,4,["H376"]],[4,5,["H4191"]],[5,7,["H1931"]],[7,9,["H7604"]],[9,12,["H8147"]],[12,13,["H1121"]]]},{"k":7131,"v":[[0,3,["H5375"]],[3,5,["H802"]],[5,10,["H4125"]],[10,12,["H8034"]],[12,15,["H259"]],[15,17,["H6204"]],[17,20,["H8034"]],[20,23,["H8145"]],[23,24,["H7327"]],[24,27,["H3427"]],[27,28,["H8033"]],[28,30,["H6235"]],[30,31,["H8141"]]]},{"k":7132,"v":[[0,2,["H4248"]],[2,4,["H3630"]],[4,5,["H4191"]],[5,6,["H1571"]],[6,7,["H8147"]],[7,12,["H802"]],[12,14,["H7604"]],[14,18,["H4480","H8147","H3206"]],[18,21,["H4480","H376"]]]},{"k":7133,"v":[[0,2,["H1931"]],[2,3,["H6965"]],[3,8,["H3618"]],[8,12,["H7725"]],[12,15,["H4480","H7704"]],[15,17,["H4124"]],[17,18,["H3588"]],[18,21,["H8085"]],[21,24,["H7704"]],[24,26,["H4124"]],[26,28,["H3588"]],[28,30,["H3068"]],[30,32,["H6485","(H853)"]],[32,34,["H5971"]],[34,36,["H5414"]],[36,38,["H3899"]]]},{"k":7134,"v":[[0,4,["H3318"]],[4,6,["H4480"]],[6,8,["H4725"]],[8,9,["H834","H8033"]],[9,11,["H1961"]],[11,14,["H8147"]],[14,17,["H3618"]],[17,19,["H5973"]],[19,22,["H1980"]],[22,25,["H1870"]],[25,27,["H7725"]],[27,28,["H413"]],[28,30,["H776"]],[30,32,["H3063"]]]},{"k":7135,"v":[[0,2,["H5281"]],[2,3,["H559"]],[3,6,["H8147"]],[6,9,["H3618"]],[9,10,["H1980"]],[10,11,["H7725"]],[11,12,["H802"]],[12,15,["H517"]],[15,16,["H1004"]],[16,18,["H3068"]],[18,19,["H6213"]],[19,20,["H2617"]],[20,21,["H5973"]],[21,23,["H834"]],[23,26,["H6213"]],[26,27,["H5973"]],[27,29,["H4191"]],[29,31,["H5973"]],[31,32,[]]]},{"k":7136,"v":[[0,2,["H3068"]],[2,3,["H5414"]],[3,8,["H4672"]],[8,9,["H4496"]],[9,10,["H802"]],[10,15,["H1004"]],[15,18,["H376"]],[18,21,["H5401"]],[21,26,["H5375"]],[26,28,["H6963"]],[28,30,["H1058"]]]},{"k":7137,"v":[[0,3,["H559"]],[3,6,["H3588"]],[6,9,["H7725"]],[9,10,["H854"]],[10,14,["H5971"]]]},{"k":7138,"v":[[0,2,["H5281"]],[2,3,["H559"]],[3,5,["H7725"]],[5,7,["H1323"]],[7,8,["H4100"]],[8,11,["H1980"]],[11,12,["H5973"]],[12,16,["H5750"]],[16,19,["H1121"]],[19,22,["H4578"]],[22,26,["H1961"]],[26,28,["H376"]]]},{"k":7139,"v":[[0,2,["H7725"]],[2,4,["H1323"]],[4,5,["H1980"]],[5,8,["H3588"]],[8,12,["H2204"]],[12,14,["H4480","H1961"]],[14,16,["H376"]],[16,17,["H3588"]],[17,20,["H559"]],[20,22,["H3426"]],[22,23,["H8615"]],[23,27,["H1961"]],[27,29,["H376"]],[29,30,["H1571"]],[30,32,["H3915"]],[32,35,["H1571"]],[35,36,["H3205"]],[36,37,["H1121"]]]},{"k":7140,"v":[[0,3,["H7663"]],[3,5,["H2004"]],[5,6,["H5704","H834"]],[6,9,["H1431"]],[9,12,["H5702"]],[12,14,["H2004"]],[14,16,["H1961"]],[16,17,["H376"]],[17,18,["H408"]],[18,20,["H1323"]],[20,21,["H3588"]],[21,23,["H4843"]],[23,25,["H3966"]],[25,26,["H4480"]],[26,29,["H3588"]],[29,31,["H3027"]],[31,34,["H3068"]],[34,37,["H3318"]],[37,39,[]]]},{"k":7141,"v":[[0,4,["H5375"]],[4,6,["H6963"]],[6,8,["H1058"]],[8,9,["H5750"]],[9,11,["H6204"]],[11,12,["H5401"]],[12,16,["H2545"]],[16,18,["H7327"]],[18,19,["H1692"]],[19,21,[]]]},{"k":7142,"v":[[0,3,["H559"]],[3,4,["H2009"]],[4,8,["H2994"]],[8,11,["H7725"]],[11,12,["H413"]],[12,14,["H5971"]],[14,16,["H413"]],[16,18,["H430"]],[18,19,["H7725"]],[19,21,["H310"]],[21,25,["H2994"]]]},{"k":7143,"v":[[0,2,["H7327"]],[2,3,["H559"]],[3,4,["H6293"]],[4,6,["H408"]],[6,8,["H5800"]],[8,12,["H7725"]],[12,15,["H4480","H310"]],[15,17,["H3588"]],[17,18,["H413","H834"]],[18,20,["H1980"]],[20,23,["H1980"]],[23,25,["H834"]],[25,27,["H3885"]],[27,30,["H3885"]],[30,32,["H5971"]],[32,36,["H5971"]],[36,39,["H430"]],[39,41,["H430"]]]},{"k":7144,"v":[[0,1,["H834"]],[1,3,["H4191"]],[3,6,["H4191"]],[6,8,["H8033"]],[8,12,["H6912"]],[12,14,["H3068"]],[14,15,["H6213"]],[15,16,["H3541"]],[16,20,["H3254"]],[20,21,["H3541"]],[21,24,["H3588"]],[24,25,["H4194"]],[25,26,["H6504"]],[26,27,["H996"]],[27,29,["H996"]]]},{"k":7145,"v":[[0,3,["H7200"]],[3,4,["H3588"]],[4,5,["H1931"]],[5,8,["H553"]],[8,10,["H1980"]],[10,11,["H854"]],[11,15,["H2308"]],[15,16,["H1696"]],[16,17,["H413"]],[17,18,[]]]},{"k":7146,"v":[[0,3,["H8147"]],[3,4,["H1980"]],[4,5,["H5704"]],[5,7,["H935"]],[7,9,["H1035"]],[9,14,["H1961"]],[14,18,["H935"]],[18,20,["H1035"]],[20,22,["H3605"]],[22,24,["H5892"]],[24,26,["H1949"]],[26,27,["H5921"]],[27,31,["H559"]],[31,33,["H2063"]],[33,34,["H5281"]]]},{"k":7147,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H7121"]],[6,8,["H408"]],[8,9,["H5281"]],[9,10,["H7121"]],[10,12,["H4755"]],[12,13,["H3588"]],[13,15,["H7706"]],[15,19,["H3966","H4843"]],[19,21,[]]]},{"k":7148,"v":[[0,1,["H589"]],[1,3,["H1980"]],[3,4,["H4392"]],[4,7,["H3068"]],[7,12,["H7725"]],[12,13,["H7387"]],[13,14,["H4100"]],[14,16,["H7121"]],[16,19,["H5281"]],[19,22,["H3068"]],[22,24,["H6030"]],[24,29,["H7706"]],[29,31,["H7489"]],[31,32,[]]]},{"k":7149,"v":[[0,2,["H5281"]],[2,3,["H7725"]],[3,5,["H7327"]],[5,7,["H4125"]],[7,11,["H3618"]],[11,13,["H5973"]],[13,15,["H7725"]],[15,19,["H4480","H7704"]],[19,21,["H4124"]],[21,23,["H1992"]],[23,24,["H935"]],[24,26,["H1035"]],[26,29,["H8462"]],[29,31,["H8184"]],[31,32,["H7105"]]]},{"k":7150,"v":[[0,2,["H5281"]],[2,5,["H4129"]],[5,8,["H376"]],[8,10,["H1368"]],[10,11,["H376"]],[11,13,["H2428"]],[13,16,["H4480","H4940"]],[16,18,["H458"]],[18,21,["H8034"]],[21,23,["H1162"]]]},{"k":7151,"v":[[0,2,["H7327"]],[2,4,["H4125"]],[4,5,["H559"]],[5,6,["H413"]],[6,7,["H5281"]],[7,10,["H4994"]],[10,11,["H1980"]],[11,14,["H7704"]],[14,16,["H3950"]],[16,19,["H7641"]],[19,20,["H310","H834"]],[20,24,["H5869"]],[24,27,["H4672"]],[27,28,["H2580"]],[28,31,["H559"]],[31,34,["H1980"]],[34,36,["H1323"]]]},{"k":7152,"v":[[0,3,["H1980"]],[3,5,["H935"]],[5,7,["H3950"]],[7,10,["H7704"]],[10,11,["H310"]],[11,13,["H7114"]],[13,16,["H4745"]],[16,19,["H7136"]],[19,22,["H2513"]],[22,25,["H7704"]],[25,28,["H1162"]],[28,29,["H834"]],[29,33,["H4480","H4940"]],[33,35,["H458"]]]},{"k":7153,"v":[[0,2,["H2009"]],[2,3,["H1162"]],[3,4,["H935"]],[4,6,["H4480","H1035"]],[6,8,["H559"]],[8,11,["H7114"]],[11,13,["H3068"]],[13,15,["H5973"]],[15,19,["H559"]],[19,22,["H3068"]],[22,23,["H1288"]],[23,24,[]]]},{"k":7154,"v":[[0,2,["H559"]],[2,3,["H1162"]],[3,6,["H5288"]],[6,9,["H5324"]],[9,10,["H5921"]],[10,12,["H7114"]],[12,13,["H4310"]],[13,14,["H5291"]],[14,16,["H2063"]]]},{"k":7155,"v":[[0,3,["H5288"]],[3,6,["H5324"]],[6,7,["H5921"]],[7,9,["H7114"]],[9,10,["H6030"]],[10,12,["H559"]],[12,13,["H1931"]],[13,16,["H4125"]],[16,17,["H5291"]],[17,20,["H7725"]],[20,21,["H5973"]],[21,22,["H5281"]],[22,26,["H4480","H7704"]],[26,28,["H4124"]]]},{"k":7156,"v":[[0,3,["H559"]],[3,5,["H4994"]],[5,9,["H3950"]],[9,11,["H622"]],[11,12,["H310"]],[12,14,["H7114"]],[14,17,["H6016"]],[17,20,["H935"]],[20,23,["H5975"]],[23,25,["H4480","H227"]],[25,27,["H1242"]],[27,28,["H5704"]],[28,29,["H6258"]],[29,30,["H2088"]],[30,32,["H3427"]],[32,34,["H4592"]],[34,37,["H1004"]]]},{"k":7157,"v":[[0,2,["H559"]],[2,3,["H1162"]],[3,4,["H413"]],[4,5,["H7327"]],[5,6,["H8085"]],[6,8,["H3808"]],[8,10,["H1323"]],[10,11,["H1980"]],[11,12,["H408"]],[12,14,["H3950"]],[14,16,["H312"]],[16,17,["H7704"]],[17,18,["H1571","H3808"]],[18,19,["H5674"]],[19,21,["H4480","H2088"]],[21,22,["H3541"]],[22,23,["H1692"]],[23,26,["H5973"]],[26,28,["H5291"]]]},{"k":7158,"v":[[0,3,["H5869"]],[3,7,["H7704"]],[7,8,["H834"]],[8,11,["H7114"]],[11,13,["H1980"]],[13,15,["H310"]],[15,19,["H3808"]],[19,20,["H6680","(H853)"]],[20,23,["H5288"]],[23,27,["H1115"]],[27,28,["H5060"]],[28,34,["H6770"]],[34,35,["H1980"]],[35,36,["H413"]],[36,38,["H3627"]],[38,40,["H8354"]],[40,43,["H4480","H834"]],[43,46,["H5288"]],[46,48,["H7579"]]]},{"k":7159,"v":[[0,3,["H5307"]],[3,4,["H5921"]],[4,6,["H6440"]],[6,9,["H7812"]],[9,12,["H776"]],[12,14,["H559"]],[14,15,["H413"]],[15,17,["H4069"]],[17,20,["H4672"]],[20,21,["H2580"]],[21,24,["H5869"]],[24,29,["H5234"]],[29,33,["H595"]],[33,36,["H5237"]]]},{"k":7160,"v":[[0,2,["H1162"]],[2,3,["H6030"]],[3,5,["H559"]],[5,10,["H5046"]],[10,12,["H5046"]],[12,14,["H3605"]],[14,15,["H834"]],[15,18,["H6213"]],[18,19,["(H853)"]],[19,23,["H2545"]],[23,24,["H310"]],[24,26,["H4194"]],[26,29,["H376"]],[29,34,["H5800"]],[34,36,["H1"]],[36,39,["H517"]],[39,42,["H776"]],[42,45,["H4138"]],[45,48,["H1980"]],[48,49,["H413"]],[49,51,["H5971"]],[51,52,["H834"]],[52,54,["H3045"]],[54,55,["H3808"]],[55,56,["H8032","H8543"]]]},{"k":7161,"v":[[0,2,["H3068"]],[2,3,["H7999"]],[3,5,["H6467"]],[5,8,["H8003"]],[8,9,["H4909"]],[9,11,["H1961"]],[11,13,["H4480","H5973"]],[13,15,["H3068"]],[15,16,["H430"]],[16,18,["H3478"]],[18,19,["H8478"]],[19,20,["H834"]],[20,21,["H3671"]],[21,24,["H935"]],[24,26,["H2620"]]]},{"k":7162,"v":[[0,3,["H559"]],[3,6,["H4672"]],[6,7,["H2580"]],[7,10,["H5869"]],[10,12,["H113"]],[12,13,["H3588"]],[13,17,["H5162"]],[17,21,["H3588"]],[21,24,["H1696"]],[24,25,["H5921","H3820"]],[25,28,["H8198"]],[28,30,["H595"]],[30,31,["H1961"]],[31,32,["H3808"]],[32,35,["H259"]],[35,38,["H8198"]]]},{"k":7163,"v":[[0,2,["H1162"]],[2,3,["H559"]],[3,7,["H6256","H400"]],[7,8,["H5066"]],[8,10,["H1988"]],[10,12,["H398"]],[12,13,["H4480"]],[13,15,["H3899"]],[15,17,["H2881"]],[17,19,["H6595"]],[19,22,["H2558"]],[22,25,["H3427"]],[25,26,["H4480","H6654"]],[26,28,["H7114"]],[28,31,["H6642"]],[31,33,["H7039"]],[33,38,["H398"]],[38,41,["H7646"]],[41,43,["H3498"]]]},{"k":7164,"v":[[0,6,["H6965"]],[6,8,["H3950"]],[8,9,["H1162"]],[9,10,["H6680","(H853)"]],[10,13,["H5288"]],[13,14,["H559"]],[14,17,["H3950"]],[17,18,["H1571"]],[18,19,["H996"]],[19,21,["H6016"]],[21,23,["H3637"]],[23,25,["H3808"]]]},{"k":7165,"v":[[0,3,["H7997"]],[3,4,["H1571"]],[4,6,["H4480"]],[6,8,["H6653"]],[8,10,["H7997"]],[10,14,["H5800"]],[14,19,["H3950"]],[19,22,["H1605"]],[22,24,["H3808"]]]},{"k":7166,"v":[[0,3,["H3950"]],[3,6,["H7704"]],[6,7,["H5704"]],[7,8,["H6153"]],[8,11,["H2251","(H853)"]],[11,12,["H834"]],[12,15,["H3950"]],[15,18,["H1961"]],[18,21,["H374"]],[21,23,["H8184"]]]},{"k":7167,"v":[[0,5,["H5375"]],[5,7,["H935"]],[7,10,["H5892"]],[10,15,["H2545"]],[15,16,["H7200","(H853)"]],[16,17,["H834"]],[17,20,["H3950"]],[20,24,["H3318"]],[24,26,["H5414"]],[26,28,["(H853)"]],[28,29,["H834"]],[29,32,["H3498"]],[32,36,["H4480","H7648"]]]},{"k":7168,"v":[[0,5,["H2545"]],[5,6,["H559"]],[6,9,["H375"]],[9,12,["H3950"]],[12,14,["H3117"]],[14,16,["H375"]],[16,17,["H6213"]],[17,19,["H1288"]],[19,20,["H1961"]],[20,25,["H5234"]],[25,30,["H5046"]],[30,34,["H2545","(H853)"]],[34,35,["H5973"]],[35,36,["H834"]],[36,39,["H6213"]],[39,41,["H559"]],[41,43,["H376"]],[43,44,["H8034"]],[44,45,["H5973"]],[45,46,["H834"]],[46,48,["H6213"]],[48,50,["H3117"]],[50,52,["H1162"]]]},{"k":7169,"v":[[0,2,["H5281"]],[2,3,["H559"]],[3,8,["H3618"]],[8,9,["H1288"]],[9,11,["H1931"]],[11,14,["H3068"]],[14,15,["H834"]],[15,17,["H3808"]],[17,19,["H5800"]],[19,21,["H2617"]],[21,22,["H854"]],[22,24,["H2416"]],[24,26,["H854"]],[26,28,["H4191"]],[28,30,["H5281"]],[30,31,["H559"]],[31,35,["H376"]],[35,39,["H7138"]],[39,42,["H1931"]],[42,46,["H4480","H1350"]]]},{"k":7170,"v":[[0,2,["H7327"]],[2,4,["H4125"]],[4,5,["H559"]],[5,7,["H559"]],[7,8,["H413"]],[8,10,["H1571"]],[10,14,["H1692"]],[14,15,["H5973"]],[15,16,["H834"]],[16,18,["H5288"]],[18,19,["H5704","H518"]],[19,22,["H3615","(H853)"]],[22,23,["H3605"]],[23,24,["H834"]],[24,25,["H7105"]]]},{"k":7171,"v":[[0,2,["H5281"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7327"]],[5,9,["H3618"]],[9,12,["H2896"]],[12,14,["H1323"]],[14,15,["H3588"]],[15,18,["H3318"]],[18,19,["H5973"]],[19,21,["H5291"]],[21,24,["H6293"]],[24,26,["H3808"]],[26,29,["H312"]],[29,30,["H7704"]]]},{"k":7172,"v":[[0,4,["H1692"]],[4,7,["H5291"]],[7,9,["H1162"]],[9,11,["H3950"]],[11,12,["H5704"]],[12,14,["H3615"]],[14,16,["H8184"]],[16,17,["H7105"]],[17,20,["H2406"]],[20,21,["H7105"]],[21,23,["H3427"]],[23,24,["H854"]],[24,28,["H2545"]]]},{"k":7173,"v":[[0,2,["H5281"]],[2,6,["H2545"]],[6,7,["H559"]],[7,11,["H1323"]],[11,14,["H3808"]],[14,15,["H1245"]],[15,16,["H4494"]],[16,19,["H834"]],[19,23,["H3190"]],[23,25,[]]]},{"k":7174,"v":[[0,2,["H6258"]],[2,4,["H3808"]],[4,5,["H1162"]],[5,8,["H4130"]],[8,9,["H854"]],[9,10,["H834"]],[10,11,["H5291"]],[11,13,["H1961"]],[13,14,["H2009"]],[14,15,["H1931"]],[15,16,["H2219"]],[16,17,["H8184"]],[17,19,["H3915"]],[19,20,["(H853)"]],[20,22,["H1637"]]]},{"k":7175,"v":[[0,1,["H7364"]],[1,5,["H5480"]],[5,8,["H7760"]],[8,10,["H8071"]],[10,11,["H5921"]],[11,16,["H3381"]],[16,19,["H1637"]],[19,24,["H3045","H408"]],[24,27,["H376"]],[27,28,["H5704"]],[28,32,["H3615"]],[32,33,["H398"]],[33,35,["H8354"]]]},{"k":7176,"v":[[0,4,["H1961"]],[4,8,["H7901"]],[8,12,["H3045","(H853)"]],[12,14,["H4725"]],[14,15,["H834","H8033"]],[15,18,["H7901"]],[18,23,["H935"]],[23,25,["H1540"]],[25,27,["H4772"]],[27,31,["H7901"]],[31,33,["H1931"]],[33,35,["H5046"]],[35,36,["(H853)"]],[36,37,["H834"]],[37,40,["H6213"]]]},{"k":7177,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3605"]],[6,7,["H834"]],[7,9,["H559"]],[9,10,["H413"]],[10,14,["H6213"]]]},{"k":7178,"v":[[0,4,["H3381"]],[4,7,["H1637"]],[7,9,["H6213"]],[9,12,["H3605"]],[12,13,["H834"]],[13,17,["H2545"]],[17,18,["H6680"]],[18,19,[]]]},{"k":7179,"v":[[0,3,["H1162"]],[3,5,["H398"]],[5,7,["H8354"]],[7,10,["H3820"]],[10,12,["H3190"]],[12,14,["H935"]],[14,17,["H7901"]],[17,20,["H7097"]],[20,25,["H6194"]],[25,28,["H935"]],[28,29,["H3909"]],[29,31,["H1540"]],[31,33,["H4772"]],[33,37,["H7901"]]]},{"k":7180,"v":[[0,5,["H1961"]],[5,7,["H2677","H3915"]],[7,10,["H376"]],[10,12,["H2729"]],[12,15,["H3943"]],[15,17,["H2009"]],[17,19,["H802"]],[19,20,["H7901"]],[20,23,["H4772"]]]},{"k":7181,"v":[[0,3,["H559"]],[3,4,["H4310"]],[4,6,["H859"]],[6,9,["H559"]],[9,10,["H595"]],[10,12,["H7327"]],[12,14,["H519"]],[14,15,["H6566"]],[15,18,["H3671"]],[18,19,["H5921"]],[19,21,["H519"]],[21,22,["H3588"]],[22,23,["H859"]],[23,27,["H1350"]]]},{"k":7182,"v":[[0,3,["H559"]],[3,4,["H1288"]],[4,6,["H859"]],[6,9,["H3068"]],[9,11,["H1323"]],[11,16,["H3190"]],[16,17,["H2617"]],[17,21,["H314"]],[21,22,["H4480"]],[22,25,["H7223"]],[25,29,["H1980","H310"]],[29,30,["H1115"]],[30,32,["H970"]],[32,33,["H518"]],[33,34,["H1800"]],[34,35,["H518"]],[35,36,["H6223"]]]},{"k":7183,"v":[[0,2,["H6258"]],[2,4,["H1323"]],[4,5,["H3372"]],[5,6,["H408"]],[6,9,["H6213"]],[9,12,["H3605"]],[12,13,["H834"]],[13,15,["H559"]],[15,16,["H3588"]],[16,17,["H3605"]],[17,19,["H8179"]],[19,22,["H5971"]],[22,24,["H3045"]],[24,25,["H3588"]],[25,29,["H2428"]],[29,30,["H802"]]]},{"k":7184,"v":[[0,2,["H6258","H3588"]],[2,5,["H551"]],[5,6,["H3588","H518"]],[6,7,["H595"]],[7,11,["H1350"]],[11,12,["H1571"]],[12,14,["H3426"]],[14,16,["H1350"]],[16,17,["H7138"]],[17,18,["H4480"]],[18,19,[]]]},{"k":7185,"v":[[0,1,["H3885"]],[1,3,["H3915"]],[3,7,["H1961"]],[7,10,["H1242"]],[10,12,["H518"]],[12,22,["H1350"]],[22,23,["H2896"]],[23,29,["H1350"]],[29,31,["H518"]],[31,33,["H2654"]],[33,34,["H3808"]],[34,40,["H1350"]],[40,45,["H595"]],[45,51,["H1350"]],[51,56,["H3068"]],[56,57,["H2416"]],[57,59,["H7901"]],[59,60,["H5704"]],[60,62,["H1242"]]]},{"k":7186,"v":[[0,3,["H7901"]],[3,6,["H4772"]],[6,7,["H5704"]],[7,9,["H1242"]],[9,13,["H6965"]],[13,14,["H2958"]],[14,15,["H376"]],[15,17,["H5234","(H853)"]],[17,18,["H7453"]],[18,21,["H559"]],[21,24,["H408"]],[24,26,["H3045"]],[26,27,["H3588"]],[27,29,["H802"]],[29,30,["H935"]],[30,33,["H1637"]]]},{"k":7187,"v":[[0,3,["H559"]],[3,4,["H3051"]],[4,6,["H4304"]],[6,7,["H834"]],[7,10,["H5921"]],[10,13,["H270"]],[13,18,["H270"]],[18,21,["H4058"]],[21,22,["H8337"]],[22,25,["H8184"]],[25,27,["H7896"]],[27,29,["H5921"]],[29,34,["H935"]],[34,36,["H5892"]]]},{"k":7188,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,9,["H2545"]],[9,11,["H559"]],[11,12,["H4310"]],[12,14,["H859"]],[14,16,["H1323"]],[16,19,["H5046"]],[19,20,["(H853)"]],[20,21,["H3605"]],[21,22,["H834"]],[22,24,["H376"]],[24,26,["H6213"]],[26,28,[]]]},{"k":7189,"v":[[0,3,["H559"]],[3,4,["H428"]],[4,5,["H8337"]],[5,8,["H8184"]],[8,9,["H5414"]],[9,12,["H3588"]],[12,14,["H559"]],[14,15,["H413"]],[15,17,["H935"]],[17,18,["H408"]],[18,19,["H7387"]],[19,20,["H413"]],[20,24,["H2545"]]]},{"k":7190,"v":[[0,2,["H559"]],[2,5,["H3427"]],[5,7,["H1323"]],[7,8,["H5704","H834"]],[8,10,["H3045"]],[10,11,["H349"]],[11,13,["H1697"]],[13,15,["H5307"]],[15,16,["H3588"]],[16,18,["H376"]],[18,20,["H3808"]],[20,23,["H8252"]],[23,24,["H3588","H518"]],[24,27,["H3615"]],[27,29,["H1697"]],[29,31,["H3117"]]]},{"k":7191,"v":[[0,4,["H5927","H1162"]],[4,7,["H8179"]],[7,11,["H3427"]],[11,12,["H8033"]],[12,14,["H2009"]],[14,16,["H1350"]],[16,19,["H1162"]],[19,20,["H1696"]],[20,22,["H5674"]],[22,24,["H834"]],[24,26,["H559"]],[26,28,["H6423"]],[28,30,["H492"]],[30,32,["H5493"]],[32,34,["H3427"]],[34,35,["H6311"]],[35,39,["H5493"]],[39,42,["H3427"]]]},{"k":7192,"v":[[0,3,["H3947"]],[3,4,["H6235"]],[4,5,["H376"]],[5,8,["H4480","H2205"]],[8,11,["H5892"]],[11,13,["H559"]],[13,16,["H3427"]],[16,17,["H6311"]],[17,21,["H3427"]]]},{"k":7193,"v":[[0,3,["H559"]],[3,6,["H1350"]],[6,7,["H5281"]],[7,11,["H7725"]],[11,15,["H4480","H7704"]],[15,17,["H4124"]],[17,18,["H4376"]],[18,20,["H2513"]],[20,22,["H7704"]],[22,23,["H834"]],[23,26,["H251"]],[26,27,["H458"]]]},{"k":7194,"v":[[0,2,["H589"]],[2,3,["H559"]],[3,5,["H1540","H241"]],[5,7,["H559"]],[7,8,["H7069"]],[8,10,["H5048"]],[10,12,["H3427"]],[12,14,["H5048"]],[14,16,["H2205"]],[16,19,["H5971"]],[19,20,["H518"]],[20,23,["H1350"]],[23,25,["H1350"]],[25,28,["H518"]],[28,31,["H3808"]],[31,32,["H1350"]],[32,35,["H5046"]],[35,40,["H3045"]],[40,41,["H3588"]],[41,44,["H369"]],[44,46,["H1350"]],[46,48,["H2108"]],[48,51,["H595"]],[51,53,["H310"]],[53,57,["H559"]],[57,58,["H595"]],[58,60,["H1350"]],[60,61,[]]]},{"k":7195,"v":[[0,2,["H559"]],[2,3,["H1162"]],[3,5,["H3117"]],[5,7,["H7069"]],[7,9,["H7704"]],[9,12,["H4480","H3027"]],[12,14,["H5281"]],[14,17,["H7069"]],[17,20,["H4480","H854"]],[20,21,["H7327"]],[21,23,["H4125"]],[23,25,["H802"]],[25,28,["H4191"]],[28,31,["H6965"]],[31,33,["H8034"]],[33,36,["H4191"]],[36,37,["H5921"]],[37,39,["H5159"]]]},{"k":7196,"v":[[0,3,["H1350"]],[3,4,["H559"]],[4,6,["H3808","H3201"]],[6,7,["H1350"]],[7,11,["H6435"]],[11,13,["H7843","(H853)"]],[13,16,["H5159"]],[16,17,["H1350"]],[17,18,["H859","(H853)"]],[18,20,["H1353"]],[20,23,["H3588"]],[23,25,["H3808","H3201"]],[25,26,["H1350"]],[26,27,[]]]},{"k":7197,"v":[[0,2,["H2063"]],[2,8,["H6440"]],[8,10,["H3478"]],[10,11,["H5921"]],[11,12,["H1353"]],[12,14,["H5921"]],[14,15,["H8545"]],[15,18,["H6965"]],[18,19,["H3605"]],[19,20,["H1697"]],[20,22,["H376"]],[22,24,["H8025"]],[24,26,["H5275"]],[26,28,["H5414"]],[28,32,["H7453"]],[32,34,["H2063"]],[34,37,["H8584"]],[37,39,["H3478"]]]},{"k":7198,"v":[[0,3,["H1350"]],[3,4,["H559"]],[4,6,["H1162"]],[6,7,["H7069"]],[7,14,["H8025"]],[14,16,["H5275"]]]},{"k":7199,"v":[[0,2,["H1162"]],[2,3,["H559"]],[3,6,["H2205"]],[6,9,["H3605"]],[9,11,["H5971"]],[11,12,["H859"]],[12,14,["H5707"]],[14,16,["H3117"]],[16,17,["H3588"]],[17,20,["H7069","(H853)"]],[20,21,["H3605"]],[21,22,["H834"]],[22,24,["H458"]],[24,26,["H3605"]],[26,27,["H834"]],[27,29,["H3630"]],[29,31,["H4248"]],[31,34,["H4480","H3027"]],[34,36,["H5281"]]]},{"k":7200,"v":[[0,1,["H1571","(H853)"]],[1,2,["H7327"]],[2,4,["H4125"]],[4,6,["H802"]],[6,8,["H4248"]],[8,11,["H7069"]],[11,15,["H802"]],[15,18,["H6965"]],[18,20,["H8034"]],[20,23,["H4191"]],[23,24,["H5921"]],[24,26,["H5159"]],[26,29,["H8034"]],[29,32,["H4191"]],[32,34,["H3808"]],[34,36,["H3772"]],[36,38,["H4480","H5973"]],[38,40,["H251"]],[40,44,["H4480","H8179"]],[44,47,["H4725"]],[47,48,["H859"]],[48,50,["H5707"]],[50,52,["H3117"]]]},{"k":7201,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H834"]],[5,9,["H8179"]],[9,12,["H2205"]],[12,13,["H559"]],[13,16,["H5707"]],[16,18,["H3068"]],[18,19,["H5414","(H853)"]],[19,21,["H802"]],[21,24,["H935"]],[24,25,["H413"]],[25,27,["H1004"]],[27,29,["H7354"]],[29,32,["H3812"]],[32,33,["H834"]],[33,34,["H8147"]],[34,36,["H1129","(H853)"]],[36,38,["H1004"]],[38,40,["H3478"]],[40,42,["H6213"]],[42,44,["H2428"]],[44,46,["H672"]],[46,49,["H7121","H8034"]],[49,51,["H1035"]]]},{"k":7202,"v":[[0,4,["H1004"]],[4,5,["H1961"]],[5,8,["H1004"]],[8,10,["H6557"]],[10,11,["H834"]],[11,12,["H8559"]],[12,13,["H3205"]],[13,15,["H3063"]],[15,16,["H4480"]],[16,18,["H2233"]],[18,19,["H834"]],[19,21,["H3068"]],[21,23,["H5414"]],[23,25,["H4480"]],[25,26,["H2063"]],[26,28,["H5291"]]]},{"k":7203,"v":[[0,2,["H1162"]],[2,3,["H3947","(H853)"]],[3,4,["H7327"]],[4,7,["H1961"]],[7,9,["H802"]],[9,13,["H935"]],[13,15,["H413"]],[15,18,["H3068"]],[18,19,["H5414"]],[19,21,["H2032"]],[21,24,["H3205"]],[24,26,["H1121"]]]},{"k":7204,"v":[[0,3,["H802"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H5281"]],[6,7,["H1288"]],[7,10,["H3068"]],[10,11,["H834"]],[11,13,["H3808"]],[13,14,["H7673"]],[14,17,["H3117"]],[17,20,["H1350"]],[20,23,["H8034"]],[23,26,["H7121"]],[26,28,["H3478"]]]},{"k":7205,"v":[[0,4,["H1961"]],[4,8,["H7725"]],[8,11,["H5315"]],[11,14,["H3557"]],[14,15,["(H853)"]],[15,18,["H7872"]],[18,19,["H3588"]],[19,23,["H3618"]],[23,24,["H834"]],[24,25,["H157"]],[25,27,["H834"]],[27,29,["H2896"]],[29,33,["H4480","H7651"]],[33,34,["H1121"]],[34,36,["H3205"]],[36,37,[]]]},{"k":7206,"v":[[0,2,["H5281"]],[2,3,["H3947","(H853)"]],[3,5,["H3206"]],[5,7,["H7896"]],[7,11,["H2436"]],[11,13,["H1961"]],[13,14,["H539"]],[14,16,[]]]},{"k":7207,"v":[[0,5,["H7934"]],[5,6,["H7121"]],[6,9,["H8034"]],[9,10,["H559"]],[10,14,["H1121"]],[14,15,["H3205"]],[15,17,["H5281"]],[17,20,["H7121"]],[20,22,["H8034"]],[22,23,["H5744"]],[23,24,["H1931"]],[24,27,["H1"]],[27,29,["H3448"]],[29,31,["H1"]],[31,33,["H1732"]]]},{"k":7208,"v":[[0,2,["H428"]],[2,5,["H8435"]],[5,7,["H6557"]],[7,8,["H6557"]],[8,9,["H3205","(H853)"]],[9,10,["H2696"]]]},{"k":7209,"v":[[0,2,["H2696"]],[2,3,["H3205","(H853)"]],[3,4,["H7410"]],[4,6,["H7410","(H853)"]],[6,7,["H3205"]],[7,8,["H5992"]]]},{"k":7210,"v":[[0,2,["H5992"]],[2,3,["H3205","(H853)"]],[3,4,["H5177"]],[4,6,["H5177"]],[6,7,["H3205","(H853)"]],[7,8,["H8009"]]]},{"k":7211,"v":[[0,2,["H8012"]],[2,3,["H3205","(H853)"]],[3,4,["H1162"]],[4,6,["H1162"]],[6,7,["H3205","(H853)"]],[7,8,["H5744"]]]},{"k":7212,"v":[[0,2,["H5744"]],[2,3,["H3205","(H853)"]],[3,4,["H3448"]],[4,6,["H3448"]],[6,7,["H3205","(H853)"]],[7,8,["H1732"]]]},{"k":7213,"v":[[0,3,["H1961"]],[3,5,["H259"]],[5,6,["H376"]],[6,7,["H4480"]],[7,8,["H7436"]],[8,10,["H4480","H2022"]],[10,11,["H669"]],[11,14,["H8034"]],[14,16,["H511"]],[16,18,["H1121"]],[18,20,["H3395"]],[20,22,["H1121"]],[22,24,["H453"]],[24,26,["H1121"]],[26,28,["H8459"]],[28,30,["H1121"]],[30,32,["H6689"]],[32,34,["H673"]]]},{"k":7214,"v":[[0,4,["H8147"]],[4,5,["H802"]],[5,7,["H8034"]],[7,10,["H259"]],[10,12,["H2584"]],[12,15,["H8034"]],[15,18,["H8145"]],[18,19,["H6444"]],[19,21,["H6444"]],[21,22,["H1961"]],[22,23,["H3206"]],[23,25,["H2584"]],[25,27,["H369"]],[27,28,["H3206"]]]},{"k":7215,"v":[[0,2,["H1931"]],[2,3,["H376"]],[3,5,["H5927"]],[5,9,["H4480","H5892"]],[9,10,["H4480","H3117","H3117"]],[10,12,["H7812"]],[12,15,["H2076"]],[15,18,["H3068"]],[18,20,["H6635"]],[20,22,["H7887"]],[22,25,["H8147"]],[25,26,["H1121"]],[26,28,["H5941"]],[28,29,["H2652"]],[29,31,["H6372"]],[31,33,["H3548"]],[33,36,["H3068"]],[36,38,["H8033"]]]},{"k":7216,"v":[[0,4,["H3117"]],[4,5,["H1961"]],[5,7,["H511"]],[7,8,["H2076"]],[8,10,["H5414"]],[10,12,["H6444"]],[12,14,["H802"]],[14,17,["H3605"]],[17,19,["H1121"]],[19,22,["H1323"]],[22,23,["H4490"]]]},{"k":7217,"v":[[0,3,["H2584"]],[3,5,["H5414"]],[5,6,["H259"]],[6,7,["H639"]],[7,8,["H4490"]],[8,9,["H3588"]],[9,11,["H157","(H853)"]],[11,12,["H2584"]],[12,15,["H3068"]],[15,18,["H5462"]],[18,20,["H7358"]]]},{"k":7218,"v":[[0,3,["H6869"]],[3,4,["H1571"]],[4,5,["H3707"]],[5,7,["H3708"]],[7,9,["H5668"]],[9,12,["H7481"]],[12,13,["H3588"]],[13,15,["H3068"]],[15,18,["H5462","H1157"]],[18,20,["H7358"]]]},{"k":7219,"v":[[0,4,["H6213"]],[4,5,["H3651"]],[5,6,["H8141"]],[6,8,["H8141"]],[8,9,["H4480","H1767"]],[9,12,["H5927"]],[12,15,["H4480","H1004"]],[15,18,["H3068"]],[18,19,["H3651"]],[19,21,["H3707"]],[21,25,["H1058"]],[25,28,["H3808"]],[28,29,["H398"]]]},{"k":7220,"v":[[0,2,["H559"]],[2,3,["H511"]],[3,5,["H376"]],[5,8,["H2584"]],[8,9,["H4100"]],[9,10,["H1058"]],[10,13,["H4100"]],[13,14,["H398"]],[14,16,["H3808"]],[16,18,["H4100"]],[18,21,["H3824"]],[21,22,["H7489"]],[22,24,["H3808"]],[24,25,["H595"]],[25,26,["H2896"]],[26,30,["H4480","H6235"]],[30,31,["H1121"]]]},{"k":7221,"v":[[0,2,["H2584"]],[2,4,["H6965"]],[4,5,["H310"]],[5,8,["H398"]],[8,10,["H7887"]],[10,12,["H310"]],[12,15,["H8354"]],[15,17,["H5941"]],[17,19,["H3548"]],[19,20,["H3427"]],[20,21,["H5921"]],[21,23,["H3678"]],[23,24,["H5921"]],[24,26,["H4201"]],[26,29,["H1964"]],[29,32,["H3068"]]]},{"k":7222,"v":[[0,2,["H1931"]],[2,5,["H4751"]],[5,7,["H5315"]],[7,9,["H6419"]],[9,10,["H5921"]],[10,12,["H3068"]],[12,15,["H1058","H1058"]]]},{"k":7223,"v":[[0,3,["H5087"]],[3,5,["H5088"]],[5,7,["H559"]],[7,9,["H3068"]],[9,11,["H6635"]],[11,12,["H518"]],[12,16,["H7200","H7200"]],[16,19,["H6040"]],[19,22,["H519"]],[22,24,["H2142"]],[24,27,["H3808"]],[27,28,["H7911","(H853)"]],[28,30,["H519"]],[30,33,["H5414"]],[33,36,["H519"]],[36,38,["H376"]],[38,39,["H2233"]],[39,43,["H5414"]],[43,47,["H3068"]],[47,48,["H3605"]],[48,50,["H3117"]],[50,53,["H2416"]],[53,57,["H3808"]],[57,58,["H4177"]],[58,59,["H5927"]],[59,60,["H5921"]],[60,62,["H7218"]]]},{"k":7224,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,8,["H7235"]],[8,9,["H6419"]],[9,10,["H6440"]],[10,12,["H3068"]],[12,14,["H5941"]],[14,15,["H8104","(H853)"]],[15,17,["H6310"]]]},{"k":7225,"v":[[0,2,["H2584"]],[2,3,["H1931"]],[3,4,["H1696"]],[4,5,["H5921"]],[5,7,["H3820"]],[7,8,["H7535"]],[8,10,["H8193"]],[10,11,["H5128"]],[11,14,["H6963"]],[14,16,["H3808"]],[16,17,["H8085"]],[17,19,["H5941"]],[19,20,["H2803"]],[20,24,["H7910"]]]},{"k":7226,"v":[[0,2,["H5941"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5704"]],[6,7,["H4970"]],[7,11,["H7937"]],[11,13,["H5493","(H853)"]],[13,15,["H3196"]],[15,16,["H4480","H5921"]],[16,17,[]]]},{"k":7227,"v":[[0,2,["H2584"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H3808"]],[6,8,["H113"]],[8,12,["H802"]],[12,15,["H7186"]],[15,16,["H7307"]],[16,17,["H595"]],[17,19,["H8354"]],[19,20,["H3808"]],[20,21,["H3196"]],[21,24,["H7941"]],[24,28,["H8210","(H853)"]],[28,30,["H5315"]],[30,31,["H6440"]],[31,33,["H3068"]]]},{"k":7228,"v":[[0,1,["H5414"]],[1,2,["H408","(H853)"]],[2,4,["H519"]],[4,5,["H6440"]],[5,9,["H1323","H1100"]],[9,10,["H3588"]],[10,14,["H4480","H7230"]],[14,17,["H7879"]],[17,19,["H3708"]],[19,22,["H1696"]],[22,23,["H5704","H6258"]]]},{"k":7229,"v":[[0,2,["H5941"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H1980"]],[6,8,["H7965"]],[8,11,["H430"]],[11,13,["H3478"]],[13,14,["H5414"]],[14,15,["(H853)"]],[15,17,["H7596"]],[17,18,["H834"]],[18,21,["H7592"]],[21,22,["H4480","H5973"]],[22,23,[]]]},{"k":7230,"v":[[0,3,["H559"]],[3,6,["H8198"]],[6,7,["H4672"]],[7,8,["H2580"]],[8,11,["H5869"]],[11,14,["H802"]],[14,15,["H1980"]],[15,17,["H1870"]],[17,20,["H398"]],[20,23,["H6440"]],[23,24,["H1961"]],[24,25,["H3808"]],[25,26,["H5750"]],[26,27,[]]]},{"k":7231,"v":[[0,8,["H7925","H1242"]],[8,10,["H7812"]],[10,11,["H6440"]],[11,13,["H3068"]],[13,15,["H7725"]],[15,17,["H935"]],[17,18,["H413"]],[18,20,["H1004"]],[20,22,["H7414"]],[22,24,["H511"]],[24,25,["H3045","(H853)"]],[25,26,["H2584"]],[26,28,["H802"]],[28,31,["H3068"]],[31,32,["H2142"]],[32,33,[]]]},{"k":7232,"v":[[0,5,["H1961"]],[5,8,["H3117"]],[8,10,["H8622"]],[10,13,["H2584"]],[13,15,["H2029"]],[15,18,["H3205"]],[18,20,["H1121"]],[20,22,["H7121","(H853)"]],[22,24,["H8034"]],[24,25,["H8050"]],[25,27,["H3588"]],[27,30,["H7592"]],[30,34,["H4480","H3068"]]]},{"k":7233,"v":[[0,3,["H376"]],[3,4,["H511"]],[4,6,["H3605"]],[6,8,["H1004"]],[8,10,["H5927"]],[10,12,["H2076"]],[12,15,["H3068","(H853)"]],[15,17,["H3117"]],[17,18,["H2077"]],[18,21,["H5088"]]]},{"k":7234,"v":[[0,2,["H2584"]],[2,5,["H5927","H3808"]],[5,6,["H3588"]],[6,8,["H559"]],[8,11,["H376"]],[11,17,["H5704"]],[17,19,["H5288"]],[19,21,["H1580"]],[21,26,["H935"]],[26,31,["H7200","(H853)"]],[31,32,["H6440"]],[32,34,["H3068"]],[34,36,["H8033"]],[36,37,["H3427"]],[37,39,["H5704","H5769"]]]},{"k":7235,"v":[[0,2,["H511"]],[2,4,["H376"]],[4,5,["H559"]],[5,8,["H6213"]],[8,10,["H5869"]],[10,12,["H2896"]],[12,13,["H3427"]],[13,14,["H5704"]],[14,17,["H1580"]],[17,19,["H389"]],[19,21,["H3068"]],[21,22,["H6965","(H853)"]],[22,24,["H1697"]],[24,27,["H802"]],[27,28,["H3427"]],[28,33,["H3243","(H853)","H1121"]],[33,34,["H5704"]],[34,36,["H1580"]],[36,37,[]]]},{"k":7236,"v":[[0,2,["H834"]],[2,5,["H1580"]],[5,10,["H5927"]],[10,11,["H5973"]],[11,14,["H7969"]],[14,15,["H6499"]],[15,17,["H259"]],[17,18,["H374"]],[18,20,["H7058"]],[20,23,["H5035"]],[23,25,["H3196"]],[25,27,["H935"]],[27,31,["H1004"]],[31,34,["H3068"]],[34,36,["H7887"]],[36,39,["H5288"]],[39,41,["H5288"]]]},{"k":7237,"v":[[0,3,["H7819","(H853)"]],[3,5,["H6499"]],[5,7,["H935","(H853)"]],[7,9,["H5288"]],[9,10,["H413"]],[10,11,["H5941"]]]},{"k":7238,"v":[[0,3,["H559"]],[3,4,["H994"]],[4,6,["H113"]],[6,9,["H5315"]],[9,10,["H2416"]],[10,12,["H113"]],[12,13,["H589"]],[13,16,["H802"]],[16,18,["H5324"]],[18,19,["H5973"]],[19,21,["H2088"]],[21,22,["H6419"]],[22,23,["H413"]],[23,25,["H3068"]]]},{"k":7239,"v":[[0,1,["H413"]],[1,2,["H2088"]],[2,3,["H5288"]],[3,5,["H6419"]],[5,8,["H3068"]],[8,10,["H5414"]],[10,11,["(H853)"]],[11,13,["H7596"]],[13,14,["H834"]],[14,16,["H7592"]],[16,17,["H4480","H5973"]],[17,18,[]]]},{"k":7240,"v":[[0,2,["H1571"]],[2,3,["H595"]],[3,5,["H7592"]],[5,9,["H3068"]],[9,11,["H3605"]],[11,12,["H834"]],[12,14,["H3117"]],[14,15,["H1931"]],[15,17,["H1961"]],[17,18,["H7592"]],[18,21,["H3068"]],[21,24,["H7812"]],[24,26,["H3068"]],[26,27,["H8033"]]]},{"k":7241,"v":[[0,2,["H2584"]],[2,3,["H6419"]],[3,5,["H559"]],[5,7,["H3820"]],[7,8,["H5970"]],[8,11,["H3068"]],[11,13,["H7161"]],[13,15,["H7311"]],[15,18,["H3068"]],[18,20,["H6310"]],[20,22,["H7337"]],[22,23,["H5921"]],[23,25,["H341"]],[25,26,["H3588"]],[26,28,["H8055"]],[28,31,["H3444"]]]},{"k":7242,"v":[[0,3,["H369"]],[3,4,["H6918"]],[4,7,["H3068"]],[7,8,["H3588"]],[8,11,["H369"]],[11,12,["H1115"]],[12,14,["H369"]],[14,18,["H6697"]],[18,21,["H430"]]]},{"k":7243,"v":[[0,1,["H1696"]],[1,2,["H408"]],[2,3,["H7235"]],[3,6,["H1364","H1364"]],[6,9,["H6277"]],[9,11,["H3318"]],[11,14,["H4480","H6310"]],[14,15,["H3588"]],[15,17,["H3068"]],[17,20,["H410"]],[20,22,["H1844"]],[22,26,["H5949"]],[26,28,["H8505"]]]},{"k":7244,"v":[[0,2,["H7198"]],[2,6,["H1368"]],[6,8,["H2844"]],[8,12,["H3782"]],[12,14,["H247"]],[14,16,["H2428"]]]},{"k":7245,"v":[[0,4,["H7649"]],[4,8,["H7936"]],[8,10,["H3899"]],[10,15,["H7457"]],[15,16,["H2308"]],[16,18,["H5704"]],[18,20,["H6135"]],[20,22,["H3205"]],[22,23,["H7651"]],[23,28,["H7227"]],[28,29,["H1121"]],[29,32,["H535"]]]},{"k":7246,"v":[[0,2,["H3068"]],[2,3,["H4191"]],[3,6,["H2421"]],[6,9,["H3381"]],[9,12,["H7585"]],[12,15,["H5927"]]]},{"k":7247,"v":[[0,2,["H3068"]],[2,4,["H3423"]],[4,7,["H6238"]],[7,10,["H8213"]],[10,11,["H637"]],[11,13,["H7311"]]]},{"k":7248,"v":[[0,3,["H6965"]],[3,5,["H1800"]],[5,9,["H4480","H6083"]],[9,12,["H7311"]],[12,14,["H34"]],[14,17,["H4480","H830"]],[17,19,["H3427"]],[19,21,["H5973"]],[21,22,["H5081"]],[22,27,["H5157"]],[27,29,["H3678"]],[29,31,["H3519"]],[31,32,["H3588"]],[32,34,["H4690"]],[34,37,["H776"]],[37,40,["H3068"]],[40,44,["H7896"]],[44,46,["H8398"]],[46,47,["H5921"]],[47,48,[]]]},{"k":7249,"v":[[0,3,["H8104"]],[3,5,["H7272"]],[5,8,["H2623"]],[8,11,["H7563"]],[11,14,["H1826"]],[14,16,["H2822"]],[16,17,["H3588"]],[17,19,["H3581"]],[19,21,["H3808"]],[21,22,["H376"]],[22,23,["H1396"]]]},{"k":7250,"v":[[0,2,["H7378"]],[2,5,["H3068"]],[5,10,["H2865"]],[10,13,["H8064"]],[13,16,["H7481"]],[16,17,["H5921"]],[17,20,["H3068"]],[20,22,["H1777"]],[22,24,["H657"]],[24,27,["H776"]],[27,31,["H5414"]],[31,32,["H5797"]],[32,35,["H4428"]],[35,37,["H7311"]],[37,39,["H7161"]],[39,42,["H4899"]]]},{"k":7251,"v":[[0,2,["H511"]],[2,3,["H1980"]],[3,5,["H7414"]],[5,6,["H5921"]],[6,8,["H1004"]],[8,11,["H5288"]],[11,12,["H1961"]],[12,13,["H8334"]],[13,14,["(H853)"]],[14,16,["H3068","(H853)"]],[16,17,["H6440"]],[17,18,["H5941"]],[18,20,["H3548"]]]},{"k":7252,"v":[[0,3,["H1121"]],[3,5,["H5941"]],[5,7,["H1121"]],[7,9,["H1100"]],[9,11,["H3045"]],[11,12,["H3808","(H853)"]],[12,14,["H3068"]]]},{"k":7253,"v":[[0,3,["H3548"]],[3,4,["H4941"]],[4,5,["H854"]],[5,7,["H5971"]],[7,11,["H3605"]],[11,12,["H376"]],[12,13,["H2076"]],[13,14,["H2077"]],[14,16,["H3548"]],[16,17,["H5288"]],[17,18,["H935"]],[18,21,["H1320"]],[21,24,["H1310"]],[24,27,["H4207"]],[27,29,["H7969"]],[29,30,["H8127"]],[30,33,["H3027"]]]},{"k":7254,"v":[[0,3,["H5221"]],[3,7,["H3595"]],[7,8,["H176"]],[8,9,["H1731"]],[9,10,["H176"]],[10,11,["H7037"]],[11,12,["H176"]],[12,13,["H6517"]],[13,14,["H3605"]],[14,15,["H834"]],[15,17,["H4207"]],[17,19,["H5927"]],[19,21,["H3548"]],[21,22,["H3947"]],[22,25,["H3602"]],[25,27,["H6213"]],[27,29,["H7887"]],[29,31,["H3605"]],[31,33,["H3478"]],[33,35,["H935"]],[35,36,["H8033"]]]},{"k":7255,"v":[[0,1,["H1571"]],[1,2,["H2962"]],[2,4,["H6999","(H853)"]],[4,6,["H2459"]],[6,8,["H3548"]],[8,9,["H5288"]],[9,10,["H935"]],[10,12,["H559"]],[12,15,["H376"]],[15,17,["H2076"]],[17,18,["H5414"]],[18,19,["H1320"]],[19,21,["H6740"]],[21,24,["H3548"]],[24,28,["H3808"]],[28,29,["H3947"]],[29,31,["H1320","H1310"]],[31,32,["H4480"]],[32,34,["H3588","H518"]],[34,35,["H2416"]]]},{"k":7256,"v":[[0,4,["H376"]],[4,5,["H559"]],[5,6,["H413"]],[6,13,["H6999","H6999"]],[13,15,["H2459"]],[15,16,["H3117"]],[16,19,["H3947"]],[19,22,["H834"]],[22,24,["H5315"]],[24,25,["H183"]],[25,29,["H559"]],[29,32,["H3588"]],[32,35,["H5414"]],[35,38,["H6258"]],[38,40,["H518"]],[40,41,["H3808"]],[41,44,["H3947"]],[44,47,["H2394"]]]},{"k":7257,"v":[[0,3,["H2403"]],[3,7,["H5288"]],[7,8,["H1961"]],[8,9,["H3966"]],[9,10,["H1419","(H853)"]],[10,11,["H6440"]],[11,13,["H3068"]],[13,14,["H3588"]],[14,15,["H376"]],[15,16,["H5006","(H853)"]],[16,18,["H4503"]],[18,21,["H3068"]]]},{"k":7258,"v":[[0,2,["H8050"]],[2,3,["H8334","(H853)"]],[3,4,["H6440"]],[4,6,["H3068"]],[6,9,["H5288"]],[9,10,["H2296"]],[10,13,["H906"]],[13,14,["H646"]]]},{"k":7259,"v":[[0,3,["H517"]],[3,4,["H6213"]],[4,7,["H6996"]],[7,8,["H4598"]],[8,10,["H5927"]],[10,17,["H4480","H3117","H3117"]],[17,21,["H5927"]],[21,22,["H854"]],[22,24,["H376"]],[24,26,["H2076","(H853)"]],[26,28,["H3117"]],[28,29,["H2077"]]]},{"k":7260,"v":[[0,2,["H5941"]],[2,3,["H1288","(H853)"]],[3,4,["H511"]],[4,7,["H802"]],[7,9,["H559"]],[9,11,["H3068"]],[11,12,["H7760"]],[12,14,["H2233"]],[14,15,["H4480"]],[15,16,["H2063"]],[16,17,["H802"]],[17,18,["H8478"]],[18,20,["H7596"]],[20,21,["H834"]],[21,23,["H7592"]],[23,26,["H3068"]],[26,29,["H1980"]],[29,33,["H4725"]]]},{"k":7261,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,4,["H6485","(H853)"]],[4,5,["H2584"]],[5,9,["H2029"]],[9,11,["H3205"]],[11,12,["H7969"]],[12,13,["H1121"]],[13,15,["H8147"]],[15,16,["H1323"]],[16,19,["H5288"]],[19,20,["H8050"]],[20,21,["H1431"]],[21,22,["H5973"]],[22,24,["H3068"]]]},{"k":7262,"v":[[0,2,["H5941"]],[2,4,["H3966"]],[4,5,["H2204"]],[5,7,["H8085","(H853)"]],[7,8,["H3605"]],[8,9,["H834"]],[9,11,["H1121"]],[11,12,["H6213"]],[12,14,["H3605"]],[14,15,["H3478"]],[15,17,["H834"]],[17,19,["H7901"]],[19,20,["H854"]],[20,22,["H802"]],[22,24,["H6633"]],[24,27,["H6607"]],[27,30,["H168"]],[30,33,["H4150"]]]},{"k":7263,"v":[[0,3,["H559"]],[3,6,["H4100"]],[6,7,["H6213"]],[7,9,["H428"]],[9,10,["H1697"]],[10,11,["H834"]],[11,12,["H595"]],[12,13,["H8085"]],[13,14,["(H853)"]],[14,16,["H7451"]],[16,17,["H1697"]],[17,18,["H4480","H854"]],[18,19,["H3605"]],[19,20,["H428"]],[20,21,["H5971"]]]},{"k":7264,"v":[[0,1,["H408"]],[1,3,["H1121"]],[3,4,["H3588"]],[4,7,["H3808"]],[7,8,["H2896"]],[8,9,["H8052"]],[9,10,["H834"]],[10,11,["H595"]],[11,12,["H8085"]],[12,16,["H3068"]],[16,17,["H5971"]],[17,19,["H5674"]]]},{"k":7265,"v":[[0,1,["H518"]],[1,3,["H376"]],[3,4,["H2398"]],[4,6,["H376"]],[6,8,["H430"]],[8,10,["H6419"]],[10,13,["H518"]],[13,15,["H376"]],[15,16,["H2398"]],[16,19,["H3068"]],[19,20,["H4310"]],[20,22,["H6419"]],[22,25,["H3808"]],[25,27,["H8085"]],[27,31,["H6963"]],[31,34,["H1"]],[34,35,["H3588"]],[35,37,["H3068"]],[37,38,["H2654"]],[38,39,["H4191"]],[39,40,[]]]},{"k":7266,"v":[[0,3,["H5288"]],[3,4,["H8050"]],[4,5,["H1980"]],[5,6,["H1432"]],[6,10,["H2896"]],[10,11,["H1571"]],[11,12,["H5973"]],[12,14,["H3068"]],[14,16,["H1571"]],[16,17,["H5973"]],[17,18,["H376"]]]},{"k":7267,"v":[[0,3,["H935"]],[3,5,["H376"]],[5,7,["H430"]],[7,8,["H413"]],[8,9,["H5941"]],[9,11,["H559"]],[11,12,["H413"]],[12,14,["H3541"]],[14,15,["H559"]],[15,17,["H3068"]],[17,21,["H1540","H1540"]],[21,22,["H413"]],[22,24,["H1004"]],[24,27,["H1"]],[27,30,["H1961"]],[30,32,["H4714"]],[32,34,["H6547"]],[34,35,["H1004"]]]},{"k":7268,"v":[[0,4,["H977"]],[4,8,["H4480","H3605"]],[8,10,["H7626"]],[10,12,["H3478"]],[12,16,["H3548"]],[16,18,["H5927"]],[18,19,["H5921"]],[19,21,["H4196"]],[21,23,["H6999"]],[23,24,["H7004"]],[24,26,["H5375"]],[26,28,["H646"]],[28,29,["H6440"]],[29,34,["H5414"]],[34,37,["H1004"]],[37,40,["H1","(H853)"]],[40,41,["H3605"]],[41,46,["H801"]],[46,49,["H1121"]],[49,51,["H3478"]]]},{"k":7269,"v":[[0,1,["H4100"]],[1,2,["H1163"]],[2,6,["H2077"]],[6,10,["H4503"]],[10,11,["H834"]],[11,14,["H6680"]],[14,17,["H4583"]],[17,19,["H3513","(H853)"]],[19,21,["H1121"]],[21,22,["H4480"]],[22,27,["H1254"]],[27,30,["H4480","H7225"]],[30,32,["H3605"]],[32,34,["H4503"]],[34,36,["H3478"]],[36,38,["H5971"]]]},{"k":7270,"v":[[0,1,["H3651"]],[1,3,["H3068"]],[3,4,["H430"]],[4,6,["H3478"]],[6,7,["H5002"]],[7,9,["H559"]],[9,10,["H559"]],[10,13,["H1004"]],[13,16,["H1004"]],[16,19,["H1"]],[19,21,["H1980"]],[21,22,["H6440"]],[22,25,["H5704","H5769"]],[25,27,["H6258"]],[27,29,["H3068"]],[29,30,["H5002"]],[30,33,["H2486"]],[33,36,["H3588"]],[36,39,["H3513"]],[39,43,["H3513"]],[43,47,["H959"]],[47,52,["H7043"]]]},{"k":7271,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,9,["H1438","(H853)"]],[9,11,["H2220"]],[11,14,["H2220"]],[14,17,["H1"]],[17,18,["H1004"]],[18,23,["H4480","H1961"]],[23,26,["H2205"]],[26,29,["H1004"]]]},{"k":7272,"v":[[0,4,["H5027"]],[4,6,["H6862"]],[6,9,["H4583"]],[9,11,["H3605"]],[11,14,["H834"]],[14,17,["H3190","(H853)"]],[17,18,["H3478"]],[18,22,["H3808"]],[22,23,["H1961"]],[23,26,["H2205"]],[26,29,["H1004"]],[29,31,["H3605","H3117"]]]},{"k":7273,"v":[[0,3,["H376"]],[3,9,["H3808"]],[9,11,["H3772"]],[11,12,["H4480","H5973"]],[12,14,["H4196"]],[14,18,["H3615","(H853)"]],[18,20,["H5869"]],[20,23,["H109","(H853)"]],[23,25,["H5315"]],[25,27,["H3605"]],[27,29,["H4768"]],[29,32,["H1004"]],[32,34,["H4191"]],[34,40,["H376"]]]},{"k":7274,"v":[[0,2,["H2088"]],[2,6,["H226"]],[6,9,["H834"]],[9,11,["H935"]],[11,12,["H413"]],[12,14,["H8147"]],[14,15,["H1121"]],[15,16,["H413"]],[16,17,["H2652"]],[17,19,["H6372"]],[19,21,["H259"]],[21,22,["H3117"]],[22,25,["H4191"]],[25,26,["H8147"]],[26,28,[]]]},{"k":7275,"v":[[0,6,["H6965"]],[6,8,["H539"]],[8,9,["H3548"]],[9,12,["H6213"]],[12,16,["H834"]],[16,20,["H3824"]],[20,24,["H5315"]],[24,28,["H1129"]],[28,31,["H539"]],[31,32,["H1004"]],[32,36,["H1980"]],[36,37,["H6440"]],[37,39,["H4899"]],[39,41,["H3605","H3117"]]]},{"k":7276,"v":[[0,6,["H1961"]],[6,9,["H3605"]],[9,12,["H3498"]],[12,15,["H1004"]],[15,17,["H935"]],[17,19,["H7812"]],[19,24,["H95"]],[24,26,["H3701"]],[26,29,["H3603"]],[29,31,["H3899"]],[31,34,["H559"]],[34,35,["H5596"]],[35,39,["H4994"]],[39,40,["H413"]],[40,41,["H259"]],[41,45,["H3550"]],[45,49,["H398"]],[49,51,["H6595"]],[51,53,["H3899"]]]},{"k":7277,"v":[[0,3,["H5288"]],[3,4,["H8050"]],[4,5,["H8334"]],[5,6,["(H853)"]],[6,8,["H3068"]],[8,9,["H6440"]],[9,10,["H5941"]],[10,13,["H1697"]],[13,16,["H3068"]],[16,17,["H1961"]],[17,18,["H3368"]],[18,20,["H1992"]],[20,21,["H3117"]],[21,24,["H369"]],[24,25,["H6555"]],[25,26,["H2377"]]]},{"k":7278,"v":[[0,5,["H1961"]],[5,8,["H3117"]],[8,9,["H1931"]],[9,10,["H5941"]],[10,13,["H7901"]],[13,16,["H4725"]],[16,19,["H5869"]],[19,20,["H2490"]],[20,23,["H3544"]],[23,26,["H3201"]],[26,27,["H3808"]],[27,28,["H7200"]]]},{"k":7279,"v":[[0,2,["H2962"]],[2,4,["H5216"]],[4,6,["H430"]],[6,8,["H3518"]],[8,11,["H1964"]],[11,14,["H3068"]],[14,15,["H834","H8033"]],[15,17,["H727"]],[17,19,["H430"]],[19,22,["H8050"]],[22,25,["H7901"]],[25,27,[]]]},{"k":7280,"v":[[0,3,["H3068"]],[3,4,["H7121","H413"]],[4,5,["H8050"]],[5,8,["H559"]],[8,9,["H2009"]],[9,11,[]]]},{"k":7281,"v":[[0,3,["H7323"]],[3,4,["H413"]],[4,5,["H5941"]],[5,7,["H559"]],[7,8,["H2009"]],[8,11,["H3588"]],[11,13,["H7121"]],[13,17,["H559"]],[17,19,["H7121"]],[19,20,["H3808"]],[20,22,["H7901"]],[22,23,["H7725"]],[23,26,["H1980"]],[26,29,["H7901"]]]},{"k":7282,"v":[[0,3,["H3068"]],[3,4,["H7121"]],[4,5,["H5750"]],[5,6,["H3254"]],[6,7,["H8050"]],[7,9,["H8050"]],[9,10,["H6965"]],[10,12,["H1980"]],[12,13,["H413"]],[13,14,["H5941"]],[14,16,["H559"]],[16,17,["H2009"]],[17,20,["H3588"]],[20,23,["H7121"]],[23,27,["H559"]],[27,29,["H7121"]],[29,30,["H3808"]],[30,32,["H1121"]],[32,34,["H7901"]],[34,35,["H7725"]]]},{"k":7283,"v":[[0,2,["H8050"]],[2,5,["H2962"]],[5,6,["H3045","(H853)"]],[6,8,["H3068"]],[8,12,["H1697"]],[12,15,["H3068"]],[15,16,["H2962"]],[16,17,["H1540"]],[17,18,["H413"]],[18,19,[]]]},{"k":7284,"v":[[0,3,["H3068"]],[3,4,["H7121"]],[4,5,["H8050"]],[5,6,["H3254"]],[6,8,["H7992"]],[8,12,["H6965"]],[12,14,["H1980"]],[14,15,["H413"]],[15,16,["H5941"]],[16,18,["H559"]],[18,19,["H2009"]],[19,22,["H3588"]],[22,25,["H7121"]],[25,28,["H5941"]],[28,29,["H995"]],[29,30,["H3588"]],[30,32,["H3068"]],[32,34,["H7121"]],[34,36,["H5288"]]]},{"k":7285,"v":[[0,2,["H5941"]],[2,3,["H559"]],[3,5,["H8050"]],[5,6,["H1980"]],[6,8,["H7901"]],[8,12,["H1961"]],[12,13,["H518"]],[13,15,["H7121","H413"]],[15,20,["H559"]],[20,21,["H1696"]],[21,22,["H3068"]],[22,23,["H3588"]],[23,25,["H5650"]],[25,26,["H8085"]],[26,28,["H8050"]],[28,29,["H1980"]],[29,32,["H7901"]],[32,35,["H4725"]]]},{"k":7286,"v":[[0,3,["H3068"]],[3,4,["H935"]],[4,6,["H3320"]],[6,8,["H7121"]],[8,12,["H6471","H6471"]],[12,13,["H8050"]],[13,14,["H8050"]],[14,16,["H8050"]],[16,17,["H559"]],[17,18,["H1696"]],[18,19,["H3588"]],[19,21,["H5650"]],[21,22,["H8085"]]]},{"k":7287,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H8050"]],[6,7,["H2009"]],[7,8,["H595"]],[8,10,["H6213"]],[10,12,["H1697"]],[12,14,["H3478"]],[14,16,["H834"]],[16,17,["H8147"]],[17,19,["H241"]],[19,22,["H3605"]],[22,24,["H8085"]],[24,27,["H6750"]]]},{"k":7288,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H6965"]],[6,7,["H413"]],[7,8,["H5941","(H853)"]],[8,9,["H3605"]],[9,11,["H834"]],[11,14,["H1696"]],[14,15,["H413"]],[15,17,["H1004"]],[17,20,["H2490"]],[20,26,["H3615"]]]},{"k":7289,"v":[[0,4,["H5046"]],[4,6,["H3588"]],[6,7,["H589"]],[7,9,["H8199","(H853)"]],[9,11,["H1004"]],[11,13,["H5704","H5769"]],[13,16,["H5771"]],[16,17,["H834"]],[17,19,["H3045"]],[19,20,["H3588"]],[20,22,["H1121"]],[22,25,["H7043"]],[25,28,["H3543"]],[28,30,["H3808"]]]},{"k":7290,"v":[[0,2,["H3651"]],[2,5,["H7650"]],[5,8,["H1004"]],[8,10,["H5941"]],[10,13,["H5771"]],[13,15,["H5941"]],[15,16,["H1004"]],[16,18,["H518"]],[18,20,["H3722"]],[20,22,["H2077"]],[22,24,["H4503"]],[24,26,["H5704","H5769"]]]},{"k":7291,"v":[[0,2,["H8050"]],[2,3,["H7901"]],[3,4,["H5704"]],[4,6,["H1242"]],[6,8,["H6605","(H853)"]],[8,10,["H1817"]],[10,13,["H1004"]],[13,16,["H3068"]],[16,18,["H8050"]],[18,19,["H3372"]],[19,21,["H4480","H5046","H413"]],[21,22,["H5941","(H853)"]],[22,24,["H4759"]]]},{"k":7292,"v":[[0,2,["H5941"]],[2,3,["H7121","(H853)"]],[3,4,["H8050"]],[4,6,["H559"]],[6,7,["H8050"]],[7,9,["H1121"]],[9,12,["H559"]],[12,13,["H2009"]],[13,15,[]]]},{"k":7293,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,7,["H1697"]],[7,8,["H834"]],[8,12,["H1696"]],[12,13,["H413"]],[13,17,["H4994"]],[17,18,["H3582"]],[18,20,["H408"]],[20,21,["H4480"]],[21,23,["H430"]],[23,24,["H6213"]],[24,25,["H3541"]],[25,29,["H3254"]],[29,30,["H3541"]],[30,31,["H518"]],[31,33,["H3582"]],[33,35,["H1697"]],[35,36,["H4480"]],[36,39,["H4480","H3605"]],[39,41,["H1697"]],[41,42,["H834"]],[42,44,["H1696"]],[44,45,["H413"]],[45,46,[]]]},{"k":7294,"v":[[0,2,["H8050"]],[2,3,["H5046"]],[3,4,["(H853)"]],[4,5,["H3605"]],[5,6,["H1697"]],[6,8,["H3582"]],[8,9,["H3808"]],[9,10,["H4480"]],[10,14,["H559"]],[14,15,["H1931"]],[15,18,["H3068"]],[18,21,["H6213"]],[21,23,["H5869"]],[23,25,["H2896"]]]},{"k":7295,"v":[[0,2,["H8050"]],[2,3,["H1431"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H5973"]],[8,13,["H3808","H4480","H3605"]],[13,16,["H1697"]],[16,17,["H5307"]],[17,20,["H776"]]]},{"k":7296,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,5,["H4480","H1835"]],[5,7,["H5704"]],[7,8,["H884"]],[8,9,["H3045"]],[9,10,["H3588"]],[10,11,["H8050"]],[11,13,["H539"]],[13,17,["H5030"]],[17,20,["H3068"]]]},{"k":7297,"v":[[0,3,["H3068"]],[3,4,["H7200"]],[4,5,["H3254"]],[5,7,["H7887"]],[7,8,["H3588"]],[8,10,["H3068"]],[10,12,["H1540"]],[12,13,["H413"]],[13,14,["H8050"]],[14,16,["H7887"]],[16,19,["H1697"]],[19,22,["H3068"]]]},{"k":7298,"v":[[0,3,["H1697"]],[3,5,["H8050"]],[5,6,["H1961"]],[6,8,["H3605"]],[8,9,["H3478"]],[9,11,["H3478"]],[11,13,["H3318"]],[13,14,["H7125"]],[14,16,["H6430"]],[16,18,["H4421"]],[18,20,["H2583"]],[20,21,["H5921"]],[21,22,["H72"]],[22,25,["H6430"]],[25,26,["H2583"]],[26,28,["H663"]]]},{"k":7299,"v":[[0,3,["H6430"]],[3,7,["H6186"]],[7,8,["H7125"]],[8,9,["H3478"]],[9,13,["H5203"]],[13,14,["H4421"]],[14,15,["H3478"]],[15,17,["H5062"]],[17,18,["H6440"]],[18,20,["H6430"]],[20,23,["H5221"]],[23,26,["H4634"]],[26,29,["H7704"]],[29,31,["H702"]],[31,32,["H505"]],[32,33,["H376"]]]},{"k":7300,"v":[[0,4,["H5971"]],[4,6,["H935"]],[6,7,["H413"]],[7,9,["H4264"]],[9,11,["H2205"]],[11,13,["H3478"]],[13,14,["H559"]],[14,15,["H4100"]],[15,18,["H3068"]],[18,19,["H5062"]],[19,22,["H3117"]],[22,23,["H6440"]],[23,25,["H6430"]],[25,28,["H3947","(H853)"]],[28,30,["H727"]],[30,33,["H1285"]],[33,36,["H3068"]],[36,39,["H4480","H7887"]],[39,40,["H413"]],[40,45,["H935"]],[45,46,["H7130"]],[46,50,["H3467"]],[50,55,["H4480","H3709"]],[55,58,["H341"]]]},{"k":7301,"v":[[0,3,["H5971"]],[3,4,["H7971"]],[4,6,["H7887"]],[6,10,["H5375"]],[10,12,["H4480","H8033","(H853)"]],[12,14,["H727"]],[14,17,["H1285"]],[17,20,["H3068"]],[20,22,["H6635"]],[22,24,["H3427"]],[24,27,["H3742"]],[27,30,["H8147"]],[30,31,["H1121"]],[31,33,["H5941"]],[33,34,["H2652"]],[34,36,["H6372"]],[36,38,["H8033"]],[38,39,["H5973"]],[39,41,["H727"]],[41,44,["H1285"]],[44,46,["H430"]]]},{"k":7302,"v":[[0,4,["H727"]],[4,7,["H1285"]],[7,10,["H3068"]],[10,11,["H935"]],[11,12,["H413"]],[12,14,["H4264"]],[14,15,["H3605"]],[15,16,["H3478"]],[16,17,["H7321"]],[17,20,["H1419"]],[20,21,["H8643"]],[21,25,["H776"]],[25,26,["H1949"]],[26,27,[]]]},{"k":7303,"v":[[0,4,["H6430"]],[4,5,["H8085","(H853)"]],[5,7,["H6963"]],[7,10,["H8643"]],[10,12,["H559"]],[12,13,["H4100"]],[13,16,["H6963"]],[16,18,["H2063"]],[18,19,["H1419"]],[19,20,["H8643"]],[20,23,["H4264"]],[23,26,["H5680"]],[26,29,["H3045"]],[29,30,["H3588"]],[30,32,["H727"]],[32,35,["H3068"]],[35,37,["H935"]],[37,38,["H413"]],[38,40,["H4264"]]]},{"k":7304,"v":[[0,3,["H6430"]],[3,5,["H3372"]],[5,6,["H3588"]],[6,8,["H559"]],[8,9,["H430"]],[9,11,["H935"]],[11,12,["H413"]],[12,14,["H4264"]],[14,17,["H559"]],[17,18,["H188"]],[18,21,["H3588"]],[21,24,["H3808"]],[24,25,["H1961"]],[25,28,["H2063"]],[28,29,["H865","H8032"]]]},{"k":7305,"v":[[0,1,["H188"]],[1,4,["H4310"]],[4,6,["H5337"]],[6,11,["H4480","H3027"]],[11,13,["H428"]],[13,14,["H117"]],[14,15,["H430"]],[15,16,["H428"]],[16,19,["H430"]],[19,21,["H5221","(H853)"]],[21,23,["H4714"]],[23,25,["H3605"]],[25,27,["H4347"]],[27,30,["H4057"]]]},{"k":7306,"v":[[0,2,["H2388"]],[2,4,["H1961"]],[4,7,["H376"]],[7,10,["H6430"]],[10,15,["H3645","H5647"]],[15,18,["H5680"]],[18,19,["H834"]],[19,22,["H5647"]],[22,25,["H1961"]],[25,28,["H376"]],[28,30,["H3898"]]]},{"k":7307,"v":[[0,3,["H6430"]],[3,4,["H3898"]],[4,6,["H3478"]],[6,8,["H5062"]],[8,11,["H5127"]],[11,13,["H376"]],[13,16,["H168"]],[16,19,["H1961"]],[19,21,["H3966"]],[21,22,["H1419"]],[22,23,["H4347"]],[23,26,["H5307"]],[26,28,["H4480","H3478"]],[28,29,["H7970"]],[29,30,["H505"]],[30,31,["H7273"]]]},{"k":7308,"v":[[0,3,["H727"]],[3,5,["H430"]],[5,7,["H3947"]],[7,10,["H8147"]],[10,11,["H1121"]],[11,13,["H5941"]],[13,14,["H2652"]],[14,16,["H6372"]],[16,18,["H4191"]]]},{"k":7309,"v":[[0,3,["H7323"]],[3,5,["H376"]],[5,7,["H1144"]],[7,11,["H4480","H4634"]],[11,13,["H935"]],[13,15,["H7887"]],[15,17,["H1931"]],[17,18,["H3117"]],[18,21,["H4055"]],[21,22,["H7167"]],[22,25,["H127"]],[25,26,["H5921"]],[26,28,["H7218"]]]},{"k":7310,"v":[[0,4,["H935"]],[4,5,["H2009"]],[5,6,["H5941"]],[6,7,["H3427"]],[7,8,["H5921"]],[8,10,["H3678"]],[10,13,["H3197","H1870"]],[13,14,["H6822"]],[14,15,["H3588"]],[15,17,["H3820"]],[17,18,["H2730"]],[18,19,["H5921"]],[19,21,["H727"]],[21,23,["H430"]],[23,27,["H376"]],[27,28,["H935"]],[28,31,["H5892"]],[31,33,["H5046"]],[33,35,["H3605"]],[35,37,["H5892"]],[37,39,["H2199"]]]},{"k":7311,"v":[[0,3,["H5941"]],[3,4,["H8085","(H853)"]],[4,6,["H6963"]],[6,9,["H6818"]],[9,11,["H559"]],[11,12,["H4100"]],[12,15,["H6963"]],[15,17,["H2088"]],[17,18,["H1995"]],[18,21,["H376"]],[21,22,["H935"]],[22,24,["H4116"]],[24,26,["H5046"]],[26,27,["H5941"]]]},{"k":7312,"v":[[0,2,["H5941"]],[2,4,["H8375"]],[4,6,["H8083"]],[6,7,["H8141"]],[7,8,["H1121"]],[8,11,["H5869"]],[11,13,["H6965"]],[13,16,["H3201"]],[16,17,["H3808"]],[17,18,["H7200"]]]},{"k":7313,"v":[[0,3,["H376"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H5941"]],[6,7,["H595"]],[7,11,["H935"]],[11,13,["H4480"]],[13,15,["H4634"]],[15,17,["H589"]],[17,18,["H5127"]],[18,20,["H3117"]],[20,22,["H4480"]],[22,24,["H4634"]],[24,27,["H559"]],[27,28,["H4100"]],[28,29,["H1961"]],[29,31,["H1697"]],[31,33,["H1121"]]]},{"k":7314,"v":[[0,3,["H1319"]],[3,4,["H6030"]],[4,6,["H559"]],[6,7,["H3478"]],[7,9,["H5127"]],[9,10,["H6440"]],[10,12,["H6430"]],[12,16,["H1961"]],[16,17,["H1571"]],[17,19,["H1419"]],[19,20,["H4046"]],[20,23,["H5971"]],[23,26,["H8147"]],[26,27,["H1121"]],[27,28,["H1571"]],[28,29,["H2652"]],[29,31,["H6372"]],[31,33,["H4191"]],[33,36,["H727"]],[36,38,["H430"]],[38,40,["H3947"]]]},{"k":7315,"v":[[0,5,["H1961"]],[5,9,["H2142"]],[9,10,["(H853)"]],[10,12,["H727"]],[12,14,["H430"]],[14,17,["H5307"]],[17,19,["H4480","H5921"]],[19,21,["H3678"]],[21,22,["H322"]],[22,23,["H1157"]],[23,25,["H3027"]],[25,28,["H8179"]],[28,31,["H4665"]],[31,32,["H7665"]],[32,35,["H4191"]],[35,36,["H3588"]],[36,40,["H2204"]],[40,41,["H376"]],[41,43,["H3515"]],[43,45,["H1931"]],[45,47,["H8199","(H853)"]],[47,48,["H3478"]],[48,49,["H705"]],[49,50,["H8141"]]]},{"k":7316,"v":[[0,5,["H3618"]],[5,6,["H6372"]],[6,7,["H802"]],[7,10,["H2030"]],[10,14,["H3205"]],[14,18,["H8085","(H853)"]],[18,20,["H8052"]],[20,23,["H727"]],[23,25,["H430"]],[25,27,["H3947"]],[27,33,["H2524"]],[33,36,["H376"]],[36,38,["H4191"]],[38,41,["H3766"]],[41,43,["H3205"]],[43,44,["H3588"]],[44,46,["H6735"]],[46,47,["H2015"]],[47,48,["H5921"]],[48,49,[]]]},{"k":7317,"v":[[0,4,["H6256"]],[4,7,["H4191"]],[7,11,["H5324"]],[11,14,["H1696"]],[14,15,["H5921"]],[15,17,["H3372"]],[17,18,["H408"]],[18,19,["H3588"]],[19,22,["H3205"]],[22,24,["H1121"]],[24,27,["H6030"]],[27,28,["H3808"]],[28,29,["H3808"]],[29,32,["H7896","H3820"]],[32,33,[]]]},{"k":7318,"v":[[0,3,["H7121"]],[3,5,["H5288"]],[5,6,["H350"]],[6,7,["H559"]],[7,9,["H3519"]],[9,11,["H1540"]],[11,13,["H4480","H3478"]],[13,14,["H413"]],[14,16,["H727"]],[16,18,["H430"]],[18,20,["H3947"]],[20,22,["H413"]],[22,27,["H2524"]],[27,30,["H376"]]]},{"k":7319,"v":[[0,3,["H559"]],[3,5,["H3519"]],[5,7,["H1540"]],[7,9,["H4480","H3478"]],[9,10,["H3588"]],[10,12,["H727"]],[12,14,["H430"]],[14,16,["H3947"]]]},{"k":7320,"v":[[0,3,["H6430"]],[3,4,["H3947","(H853)"]],[4,6,["H727"]],[6,8,["H430"]],[8,10,["H935"]],[10,13,["H4480","H72"]],[13,15,["H795"]]]},{"k":7321,"v":[[0,3,["H6430"]],[3,4,["H3947","(H853)"]],[4,6,["H727"]],[6,8,["H430"]],[8,10,["H935"]],[10,14,["H1004"]],[14,16,["H1712"]],[16,18,["H3322"]],[18,20,["H681"]],[20,21,["H1712"]]]},{"k":7322,"v":[[0,5,["H795"]],[5,7,["H7925"]],[7,10,["H4480","H4283"]],[10,11,["H2009"]],[11,12,["H1712"]],[12,14,["H5307"]],[14,17,["H6440"]],[17,20,["H776"]],[20,21,["H6440"]],[21,23,["H727"]],[23,26,["H3068"]],[26,29,["H3947","(H853)"]],[29,30,["H1712"]],[30,32,["H7725"]],[32,36,["H4725"]],[36,37,[]]]},{"k":7323,"v":[[0,5,["H7925"]],[5,8,["H4480","H4283"]],[8,9,["H1242"]],[9,10,["H2009"]],[10,11,["H1712"]],[11,13,["H5307"]],[13,16,["H6440"]],[16,19,["H776"]],[19,20,["H6440"]],[20,22,["H727"]],[22,25,["H3068"]],[25,28,["H7218"]],[28,30,["H1712"]],[30,32,["H8147"]],[32,34,["H3709"]],[34,37,["H3027"]],[37,40,["H3772"]],[40,41,["H413"]],[41,43,["H4670"]],[43,44,["H7535"]],[44,48,["H1712"]],[48,50,["H7604"]],[50,51,["H5921"]],[51,52,[]]]},{"k":7324,"v":[[0,1,["H5921","H3651"]],[1,2,["H3808"]],[2,4,["H3548"]],[4,6,["H1712"]],[6,8,["H3605"]],[8,10,["H935"]],[10,12,["H1712"]],[12,13,["H1004"]],[13,14,["H1869"]],[14,15,["H5921"]],[15,17,["H4670"]],[17,19,["H1712"]],[19,21,["H795"]],[21,22,["H5704"]],[22,23,["H2088"]],[23,24,["H3117"]]]},{"k":7325,"v":[[0,3,["H3027"]],[3,6,["H3068"]],[6,8,["H3513"]],[8,9,["H413"]],[9,12,["H795"]],[12,15,["H8074"]],[15,18,["H5221"]],[18,21,["H6076"]],[21,22,["(H853)"]],[22,23,["H795"]],[23,26,["H1366"]],[26,27,[]]]},{"k":7326,"v":[[0,4,["H376"]],[4,6,["H795"]],[6,7,["H7200"]],[7,8,["H3588"]],[8,11,["H3651"]],[11,13,["H559"]],[13,15,["H727"]],[15,18,["H430"]],[18,20,["H3478"]],[20,22,["H3808"]],[22,23,["H3427"]],[23,24,["H5973"]],[24,26,["H3588"]],[26,28,["H3027"]],[28,30,["H7185"]],[30,31,["H5921"]],[31,34,["H5921"]],[34,35,["H1712"]],[35,37,["H430"]]]},{"k":7327,"v":[[0,2,["H7971"]],[2,5,["H622","(H853)"]],[5,6,["H3605"]],[6,8,["H5633"]],[8,11,["H6430"]],[11,12,["H413"]],[12,15,["H559"]],[15,16,["H4100"]],[16,19,["H6213"]],[19,22,["H727"]],[22,25,["H430"]],[25,27,["H3478"]],[27,30,["H559"]],[30,33,["H727"]],[33,36,["H430"]],[36,38,["H3478"]],[38,41,["H5437"]],[41,43,["H1661"]],[43,46,["H5437","(H853)"]],[46,48,["H727"]],[48,51,["H430"]],[51,53,["H3478"]],[53,55,[]]]},{"k":7328,"v":[[0,3,["H1961"]],[3,6,["H310"]],[6,11,["H5437","(H853)"]],[11,13,["H3027"]],[13,16,["H3068"]],[16,17,["H1961"]],[17,20,["H5892"]],[20,23,["H3966"]],[23,24,["H1419"]],[24,25,["H4103"]],[25,28,["H5221","(H853)"]],[28,30,["H376"]],[30,33,["H5892"]],[33,35,["H4480","H6996"]],[35,37,["H1419"]],[37,41,["H6076"]],[41,45,["H8368"]]]},{"k":7329,"v":[[0,3,["H7971","(H853)"]],[3,5,["H727"]],[5,7,["H430"]],[7,9,["H6138"]],[9,14,["H1961"]],[14,17,["H727"]],[17,19,["H430"]],[19,20,["H935"]],[20,22,["H6138"]],[22,25,["H6139"]],[25,27,["H2199"]],[27,28,["H559"]],[28,32,["H5437","(H853)"]],[32,34,["H727"]],[34,37,["H430"]],[37,39,["H3478"]],[39,40,["H413"]],[40,43,["H4191"]],[43,47,["H5971"]]]},{"k":7330,"v":[[0,3,["H7971"]],[3,6,["H622","(H853)"]],[6,7,["H3605"]],[7,9,["H5633"]],[9,12,["H6430"]],[12,14,["H559"]],[14,16,["H7971","(H853)"]],[16,18,["H727"]],[18,21,["H430"]],[21,23,["H3478"]],[23,28,["H7725"]],[28,32,["H4725"]],[32,35,["H4191"]],[35,37,["H3808"]],[37,40,["H5971"]],[40,41,["H3588"]],[41,43,["H1961"]],[43,45,["H4194"]],[45,46,["H4103"]],[46,48,["H3605"]],[48,50,["H5892"]],[50,52,["H3027"]],[52,54,["H430"]],[54,56,["H3966"]],[56,57,["H3513"]],[57,58,["H8033"]]]},{"k":7331,"v":[[0,3,["H376"]],[3,4,["H834"]],[4,5,["H4191"]],[5,6,["H3808"]],[6,8,["H5221"]],[8,11,["H6076"]],[11,14,["H7775"]],[14,17,["H5892"]],[17,19,["H5927"]],[19,21,["H8064"]]]},{"k":7332,"v":[[0,3,["H727"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,10,["H7704"]],[10,13,["H6430"]],[13,14,["H7651"]],[14,15,["H2320"]]]},{"k":7333,"v":[[0,3,["H6430"]],[3,4,["H7121"]],[4,7,["H3548"]],[7,10,["H7080"]],[10,11,["H559"]],[11,12,["H4100"]],[12,15,["H6213"]],[15,18,["H727"]],[18,21,["H3068"]],[21,22,["H3045"]],[22,24,["H4100"]],[24,27,["H7971"]],[27,31,["H4725"]]]},{"k":7334,"v":[[0,3,["H559"]],[3,4,["H518"]],[4,7,["H7971","(H853)"]],[7,9,["H727"]],[9,12,["H430"]],[12,14,["H3478"]],[14,15,["H7971"]],[15,17,["H408"]],[17,18,["H7387"]],[18,19,["H3588"]],[19,23,["H7725","H7725"]],[23,27,["H817"]],[27,28,["H227"]],[28,32,["H7495"]],[32,37,["H3045"]],[37,40,["H4100"]],[40,42,["H3027"]],[42,44,["H3808"]],[44,45,["H5493"]],[45,46,["H4480"]],[46,47,[]]]},{"k":7335,"v":[[0,2,["H559"]],[2,4,["H4100"]],[4,9,["H817"]],[9,10,["H834"]],[10,13,["H7725"]],[13,17,["H559"]],[17,18,["H2568"]],[18,19,["H2091"]],[19,20,["H6076"]],[20,22,["H2568"]],[22,23,["H2091"]],[23,24,["H5909"]],[24,28,["H4557"]],[28,31,["H5633"]],[31,34,["H6430"]],[34,35,["H3588"]],[35,36,["H259"]],[36,37,["H4046"]],[37,41,["H3605"]],[41,45,["H5633"]]]},{"k":7336,"v":[[0,4,["H6213"]],[4,5,["H6754"]],[5,8,["H6076"]],[8,10,["H6754"]],[10,13,["H5909"]],[13,15,["H7843","(H853)"]],[15,17,["H776"]],[17,21,["H5414"]],[21,22,["H3519"]],[22,25,["H430"]],[25,27,["H3478"]],[27,28,["H194"]],[28,31,["H7043","(H853)"]],[31,33,["H3027"]],[33,35,["H4480","H5921"]],[35,39,["H4480","H5921"]],[39,41,["H430"]],[41,44,["H4480","H5921"]],[44,46,["H776"]]]},{"k":7337,"v":[[0,1,["H4100"]],[1,5,["H3513","(H853)"]],[5,7,["H3824"]],[7,8,["H834"]],[8,10,["H4714"]],[10,12,["H6547"]],[12,13,["H3513","(H853)"]],[13,15,["H3820"]],[15,16,["H834"]],[16,20,["H5953"]],[20,25,["H3808"]],[25,29,["H7971"]],[29,32,["H1980"]]]},{"k":7338,"v":[[0,1,["H6258"]],[1,3,["H6213"]],[3,4,["H259"]],[4,5,["H2319"]],[5,6,["H5699"]],[6,8,["H3947"]],[8,9,["H8147"]],[9,10,["H5763"]],[10,11,["H6510"]],[11,12,["H5921"]],[12,13,["H834"]],[13,16,["H5927"]],[16,17,["H3808"]],[17,18,["H5923"]],[18,20,["H631","(H853)"]],[20,22,["H6510"]],[22,25,["H5699"]],[25,27,["H7725"]],[27,29,["H1121"]],[29,30,["H1004"]],[30,31,["H4480","H310"]],[31,32,[]]]},{"k":7339,"v":[[0,2,["H3947","(H853)"]],[2,4,["H727"]],[4,7,["H3068"]],[7,9,["H5414"]],[9,11,["H413"]],[11,13,["H5699"]],[13,15,["H7760"]],[15,17,["H3627"]],[17,19,["H2091"]],[19,20,["H834"]],[20,22,["H7725"]],[22,27,["H817"]],[27,30,["H712"]],[30,33,["H4480","H6654"]],[33,38,["H7971","(H853)"]],[38,42,["H1980"]]]},{"k":7340,"v":[[0,2,["H7200"]],[2,3,["H518"]],[3,6,["H5927"]],[6,9,["H1870"]],[9,13,["H1366"]],[13,15,["H1053"]],[15,17,["H1931"]],[17,19,["H6213"]],[19,20,["(H853)"]],[20,21,["H2063"]],[21,22,["H1419"]],[22,23,["H7451"]],[23,25,["H518"]],[25,26,["H3808"]],[26,30,["H3045"]],[30,31,["H3588"]],[31,34,["H3808"]],[34,36,["H3027"]],[36,38,["H5060"]],[38,40,["H1931"]],[40,43,["H4745"]],[43,45,["H1961"]],[45,47,[]]]},{"k":7341,"v":[[0,3,["H376"]],[3,4,["H6213"]],[4,5,["H3651"]],[5,7,["H3947"]],[7,8,["H8147"]],[8,9,["H5763"]],[9,10,["H6510"]],[10,12,["H631"]],[12,16,["H5699"]],[16,19,["H3607"]],[19,21,["H1121"]],[21,23,["H1004"]]]},{"k":7342,"v":[[0,3,["H7760","(H853)"]],[3,5,["H727"]],[5,8,["H3068"]],[8,9,["H413"]],[9,11,["H5699"]],[11,14,["H712"]],[14,15,["H854"]],[15,17,["H5909"]],[17,19,["H2091"]],[19,22,["H6754"]],[22,25,["H2914"]]]},{"k":7343,"v":[[0,3,["H6510"]],[3,6,["H3474"]],[6,7,["H1870"]],[7,8,["H5921"]],[8,10,["H1870"]],[10,12,["H1053"]],[12,15,["H1980"]],[15,16,["H259"]],[16,17,["H4546"]],[17,18,["H1600"]],[18,21,["H1980"]],[21,25,["H5493","H3808"]],[25,29,["H3225"]],[29,33,["H8040"]],[33,36,["H5633"]],[36,39,["H6430"]],[39,40,["H1980"]],[40,41,["H310"]],[41,43,["H5704"]],[43,45,["H1366"]],[45,47,["H1053"]]]},{"k":7344,"v":[[0,4,["H1053"]],[4,6,["H7114"]],[6,8,["H2406"]],[8,9,["H7105"]],[9,12,["H6010"]],[12,16,["H5375","(H853)"]],[16,18,["H5869"]],[18,20,["H7200","(H853)"]],[20,22,["H727"]],[22,24,["H8055"]],[24,26,["H7200"]],[26,27,[]]]},{"k":7345,"v":[[0,3,["H5699"]],[3,4,["H935"]],[4,5,["H413"]],[5,7,["H7704"]],[7,9,["H3091"]],[9,11,["H1030"]],[11,13,["H5975"]],[13,14,["H8033"]],[14,15,["H8033"]],[15,19,["H1419"]],[19,20,["H68"]],[20,23,["H1234","(H853)"]],[23,25,["H6086"]],[25,28,["H5699"]],[28,30,["H5927"]],[30,32,["H6510"]],[32,35,["H5930"]],[35,38,["H3068"]]]},{"k":7346,"v":[[0,3,["H3881"]],[3,5,["H3381","(H853)"]],[5,7,["H727"]],[7,10,["H3068"]],[10,13,["H712"]],[13,14,["H834"]],[14,16,["H854"]],[16,18,["H834"]],[18,20,["H3627"]],[20,22,["H2091"]],[22,25,["H7760"]],[25,27,["H413"]],[27,29,["H1419"]],[29,30,["H68"]],[30,33,["H376"]],[33,35,["H1053"]],[35,36,["H5927"]],[36,38,["H5930"]],[38,40,["H2076"]],[40,41,["H2077"]],[41,43,["H1931"]],[43,44,["H3117"]],[44,47,["H3068"]]]},{"k":7347,"v":[[0,4,["H2568"]],[4,5,["H5633"]],[5,8,["H6430"]],[8,10,["H7200"]],[10,13,["H7725"]],[13,15,["H6138"]],[15,17,["H1931"]],[17,18,["H3117"]]]},{"k":7348,"v":[[0,2,["H428"]],[2,5,["H2091"]],[5,6,["H2914"]],[6,7,["H834"]],[7,9,["H6430"]],[9,10,["H7725"]],[10,14,["H817"]],[14,17,["H3068"]],[17,19,["H795"]],[19,20,["H259"]],[20,22,["H5804"]],[22,23,["H259"]],[23,25,["H831"]],[25,26,["H259"]],[26,28,["H1661"]],[28,29,["H259"]],[29,31,["H6138"]],[31,32,["H259"]]]},{"k":7349,"v":[[0,3,["H2091"]],[3,4,["H5909"]],[4,8,["H4557"]],[8,10,["H3605"]],[10,12,["H5892"]],[12,15,["H6430"]],[15,19,["H2568"]],[19,20,["H5633"]],[20,24,["H4480","H5892","H4013"]],[24,26,["H5704"]],[26,27,["H6521"]],[27,28,["H3724"]],[28,30,["H5704"]],[30,32,["H1419"]],[32,35,["H59"]],[35,36,["H834","H5921"]],[36,39,["H5117","(H853)"]],[39,41,["H727"]],[41,44,["H3068"]],[44,48,["H5704"]],[48,49,["H2088"]],[49,50,["H3117"]],[50,53,["H7704"]],[53,55,["H3091"]],[55,57,["H1030"]]]},{"k":7350,"v":[[0,3,["H5221"]],[3,5,["H376"]],[5,7,["H1053"]],[7,8,["H3588"]],[8,11,["H7200"]],[11,14,["H727"]],[14,17,["H3068"]],[17,20,["H5221"]],[20,23,["H5971"]],[23,24,["H2572"]],[24,25,["H505"]],[25,29,["H7657"]],[29,30,["H376"]],[30,33,["H5971"]],[33,34,["H56"]],[34,35,["H3588"]],[35,37,["H3068"]],[37,39,["H5221"]],[39,43,["H5971"]],[43,46,["H1419"]],[46,47,["H4347"]]]},{"k":7351,"v":[[0,3,["H376"]],[3,5,["H1053"]],[5,6,["H559"]],[6,7,["H4310"]],[7,9,["H3201"]],[9,11,["H5975"]],[11,12,["H6440"]],[12,13,["H2088"]],[13,14,["H6918"]],[14,15,["H3068"]],[15,16,["H430"]],[16,18,["H413"]],[18,19,["H4310"]],[19,23,["H5927"]],[23,24,["H4480","H5921"]],[24,25,[]]]},{"k":7352,"v":[[0,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,7,["H3427"]],[7,9,["H7157"]],[9,10,["H559"]],[10,12,["H6430"]],[12,15,["H7725","(H853)"]],[15,17,["H727"]],[17,20,["H3068"]],[20,23,["H3381"]],[23,27,["H5927","(H853)"]],[27,28,["H413"]],[28,29,[]]]},{"k":7353,"v":[[0,3,["H376"]],[3,5,["H7157"]],[5,6,["H935"]],[6,9,["H5927","(H853)"]],[9,11,["H727"]],[11,14,["H3068"]],[14,16,["H935"]],[16,18,["H413"]],[18,20,["H1004"]],[20,22,["H41"]],[22,25,["H1389"]],[25,27,["H6942"]],[27,28,["H499"]],[28,30,["H1121"]],[30,32,["H8104","(H853)"]],[32,34,["H727"]],[34,37,["H3068"]]]},{"k":7354,"v":[[0,5,["H1961"]],[5,6,["H4480","H3117"]],[6,8,["H727"]],[8,9,["H3427"]],[9,11,["H7157"]],[11,14,["H3117"]],[14,16,["H7235"]],[16,19,["H1961"]],[19,20,["H6242"]],[20,21,["H8141"]],[21,23,["H3605"]],[23,25,["H1004"]],[25,27,["H3478"]],[27,28,["H5091"]],[28,29,["H310"]],[29,31,["H3068"]]]},{"k":7355,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3605"]],[5,7,["H1004"]],[7,9,["H3478"]],[9,10,["H559"]],[10,11,["H518"]],[11,12,["H859"]],[12,14,["H7725"]],[14,15,["H413"]],[15,17,["H3068"]],[17,19,["H3605"]],[19,21,["H3824"]],[21,24,["H5493","(H853)"]],[24,26,["H5236"]],[26,27,["H430"]],[27,29,["H6252"]],[29,31,["H4480","H8432"]],[31,34,["H3559"]],[34,36,["H3824"]],[36,37,["H413"]],[37,39,["H3068"]],[39,41,["H5647"]],[41,43,["H905"]],[43,47,["H5337"]],[47,52,["H4480","H3027"]],[52,55,["H6430"]]]},{"k":7356,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,8,["H5493","(H853)"]],[8,9,["H1168"]],[9,11,["H6252"]],[11,13,["H5647","(H853)"]],[13,15,["H3068"]],[15,16,["H905"]]]},{"k":7357,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H6908","(H853)"]],[4,5,["H3605"]],[5,6,["H3478"]],[6,8,["H4709"]],[8,12,["H6419"]],[12,13,["H1157"]],[13,15,["H413"]],[15,17,["H3068"]]]},{"k":7358,"v":[[0,4,["H6908"]],[4,6,["H4709"]],[6,8,["H7579"]],[8,9,["H4325"]],[9,13,["H8210"]],[13,14,["H6440"]],[14,16,["H3068"]],[16,18,["H6684"]],[18,20,["H1931"]],[20,21,["H3117"]],[21,23,["H559"]],[23,24,["H8033"]],[24,27,["H2398"]],[27,30,["H3068"]],[30,32,["H8050"]],[32,33,["H8199","(H853)"]],[33,35,["H1121"]],[35,37,["H3478"]],[37,39,["H4709"]]]},{"k":7359,"v":[[0,4,["H6430"]],[4,5,["H8085"]],[5,6,["H3588"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,13,["H6908"]],[13,15,["H4709"]],[15,17,["H5633"]],[17,20,["H6430"]],[20,22,["H5927"]],[22,23,["H413"]],[23,24,["H3478"]],[24,28,["H1121"]],[28,30,["H3478"]],[30,31,["H8085"]],[31,35,["H3372"]],[35,36,["H4480","H6440"]],[36,38,["H6430"]]]},{"k":7360,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H8050"]],[8,9,["H2790"]],[9,10,["H408"]],[10,12,["H4480","H2199"]],[12,13,["H413"]],[13,15,["H3068"]],[15,17,["H430"]],[17,18,["H4480"]],[18,23,["H3467"]],[23,28,["H4480","H3027"]],[28,31,["H6430"]]]},{"k":7361,"v":[[0,2,["H8050"]],[2,3,["H3947"]],[3,4,["H259"]],[4,5,["H2461"]],[5,6,["H2924"]],[6,8,["H5927"]],[8,13,["H5930"]],[13,14,["H3632"]],[14,17,["H3068"]],[17,19,["H8050"]],[19,20,["H2199"]],[20,21,["H413"]],[21,23,["H3068"]],[23,24,["H1157"]],[24,25,["H3478"]],[25,28,["H3068"]],[28,29,["H6030"]],[29,30,[]]]},{"k":7362,"v":[[0,3,["H8050"]],[3,4,["H1961"]],[4,6,["H5927"]],[6,9,["H5930"]],[9,11,["H6430"]],[11,13,["H5066"]],[13,15,["H4421"]],[15,17,["H3478"]],[17,20,["H3068"]],[20,21,["H7481"]],[21,24,["H1419"]],[24,25,["H6963"]],[25,27,["H1931"]],[27,28,["H3117"]],[28,29,["H5921"]],[29,31,["H6430"]],[31,33,["H2000"]],[33,38,["H5062"]],[38,39,["H6440"]],[39,40,["H3478"]]]},{"k":7363,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,7,["H3318"]],[7,8,["H4480"]],[8,9,["H4709"]],[9,11,["H7291","(H853)"]],[11,13,["H6430"]],[13,15,["H5221"]],[15,17,["H5704"]],[17,20,["H4480","H8478"]],[20,21,["H1033"]]]},{"k":7364,"v":[[0,2,["H8050"]],[2,3,["H3947"]],[3,4,["H259"]],[4,5,["H68"]],[5,7,["H7760"]],[7,9,["H996"]],[9,10,["H4709"]],[10,12,["H8129"]],[12,14,["H7121","(H853)"]],[14,16,["H8034"]],[16,19,["H72"]],[19,20,["H559"]],[20,21,["H5704","H2009"]],[21,24,["H3068"]],[24,25,["H5826"]],[25,26,[]]]},{"k":7365,"v":[[0,3,["H6430"]],[3,5,["H3665"]],[5,8,["H935"]],[8,9,["H3808"]],[9,10,["H3254","H5750"]],[10,13,["H1366"]],[13,15,["H3478"]],[15,18,["H3027"]],[18,21,["H3068"]],[21,22,["H1961"]],[22,25,["H6430"]],[25,26,["H3605"]],[26,28,["H3117"]],[28,30,["H8050"]]]},{"k":7366,"v":[[0,3,["H5892"]],[3,4,["H834"]],[4,6,["H6430"]],[6,8,["H3947"]],[8,9,["H4480","H854"]],[9,10,["H3478"]],[10,12,["H7725"]],[12,14,["H3478"]],[14,16,["H4480","H6138"]],[16,18,["H5704"]],[18,19,["H1661"]],[19,22,["H1366"]],[22,25,["H3478"]],[25,26,["H5337"]],[26,30,["H4480","H3027"]],[30,33,["H6430"]],[33,36,["H1961"]],[36,37,["H7965"]],[37,38,["H996"]],[38,39,["H3478"]],[39,42,["H567"]]]},{"k":7367,"v":[[0,2,["H8050"]],[2,3,["H8199","(H853)"]],[3,4,["H3478"]],[4,5,["H3605"]],[5,7,["H3117"]],[7,10,["H2416"]]]},{"k":7368,"v":[[0,3,["H1980"]],[3,4,["H4880","H1767"]],[4,5,["H8141"]],[5,7,["H8141"]],[7,9,["H5437"]],[9,11,["H1008"]],[11,13,["H1537"]],[13,15,["H4709"]],[15,17,["H8199","(H853)"]],[17,18,["H3478"]],[18,19,["H854"]],[19,20,["H3605"]],[20,21,["H428"]],[21,22,["H4725"]]]},{"k":7369,"v":[[0,3,["H8666"]],[3,6,["H7414"]],[6,7,["H3588"]],[7,8,["H8033"]],[8,11,["H1004"]],[11,13,["H8033"]],[13,15,["H8199","(H853)"]],[15,16,["H3478"]],[16,18,["H8033"]],[18,20,["H1129"]],[20,22,["H4196"]],[22,25,["H3068"]]]},{"k":7370,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H8050"]],[7,9,["H2204"]],[9,12,["H7760","(H853)"]],[12,14,["H1121"]],[14,15,["H8199"]],[15,17,["H3478"]]]},{"k":7371,"v":[[0,3,["H8034"]],[3,6,["H1060"]],[6,7,["H1961"]],[7,8,["H3100"]],[8,11,["H8034"]],[11,14,["H4932"]],[14,15,["H29"]],[15,18,["H8199"]],[18,20,["H884"]]]},{"k":7372,"v":[[0,3,["H1121"]],[3,4,["H1980"]],[4,5,["H3808"]],[5,8,["H1870"]],[8,11,["H5186"]],[11,12,["H310"]],[12,13,["H1215"]],[13,15,["H3947"]],[15,16,["H7810"]],[16,18,["H5186"]],[18,19,["H4941"]]]},{"k":7373,"v":[[0,2,["H3605"]],[2,4,["H2205"]],[4,6,["H3478"]],[6,9,["H6908"]],[9,11,["H935"]],[11,12,["H413"]],[12,13,["H8050"]],[13,15,["H7414"]]]},{"k":7374,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H2009"]],[5,6,["H859"]],[6,8,["H2204"]],[8,11,["H1121"]],[11,12,["H1980"]],[12,13,["H3808"]],[13,16,["H1870"]],[16,17,["H6258"]],[17,18,["H7760"]],[18,21,["H4428"]],[21,23,["H8199"]],[23,26,["H3605"]],[26,28,["H1471"]]]},{"k":7375,"v":[[0,3,["H1697"]],[3,4,["H3415","H5869"]],[4,5,["H8050"]],[5,6,["H834"]],[6,8,["H559"]],[8,9,["H5414"]],[9,12,["H4428"]],[12,14,["H8199"]],[14,17,["H8050"]],[17,18,["H6419"]],[18,19,["H413"]],[19,21,["H3068"]]]},{"k":7376,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H8050"]],[6,7,["H8085"]],[7,10,["H6963"]],[10,13,["H5971"]],[13,15,["H3605"]],[15,16,["H834"]],[16,18,["H559"]],[18,19,["H413"]],[19,21,["H3588"]],[21,24,["H3808"]],[24,25,["H3988"]],[25,27,["H3588"]],[27,30,["H3988"]],[30,36,["H4480","H4427"]],[36,37,["H5921"]],[37,38,[]]]},{"k":7377,"v":[[0,3,["H3605"]],[3,5,["H4639"]],[5,6,["H834"]],[6,9,["H6213"]],[9,12,["H4480","H3117"]],[12,17,["H5927","(H853)"]],[17,20,["H4480","H4714"]],[20,22,["H5704"]],[22,23,["H2088"]],[23,24,["H3117"]],[24,28,["H5800"]],[28,31,["H5647"]],[31,32,["H312"]],[32,33,["H430"]],[33,34,["H3651"]],[34,35,["H6213"]],[35,36,["H1992"]],[36,37,["H1571"]],[37,39,[]]]},{"k":7378,"v":[[0,1,["H6258"]],[1,3,["H8085"]],[3,6,["H6963"]],[6,7,["H389"]],[7,8,["H3588"]],[8,10,["H5749","H5749"]],[10,14,["H5046"]],[14,17,["H4941"]],[17,20,["H4428"]],[20,21,["H834"]],[21,23,["H4427"]],[23,24,["H5921"]],[24,25,[]]]},{"k":7379,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H3605"]],[4,6,["H1697"]],[6,9,["H3068"]],[9,10,["H413"]],[10,12,["H5971"]],[12,14,["H7592"]],[14,15,["H4480","H854"]],[15,18,["H4428"]]]},{"k":7380,"v":[[0,3,["H559"]],[3,4,["H2088"]],[4,6,["H1961"]],[6,8,["H4941"]],[8,11,["H4428"]],[11,12,["H834"]],[12,14,["H4427"]],[14,15,["H5921"]],[15,19,["H3947","(H853)"]],[19,21,["H1121"]],[21,23,["H7760"]],[23,29,["H4818"]],[29,34,["H6571"]],[34,38,["H7323"]],[38,39,["H6440"]],[39,41,["H4818"]]]},{"k":7381,"v":[[0,4,["H7760"]],[4,6,["H8269"]],[6,8,["H505"]],[8,10,["H8269"]],[10,12,["H2572"]],[12,18,["H2790"]],[18,20,["H2758"]],[20,23,["H7114"]],[23,25,["H7105"]],[25,28,["H6213"]],[28,30,["H3627"]],[30,32,["H4421"]],[32,34,["H3627"]],[34,37,["H7393"]]]},{"k":7382,"v":[[0,4,["H3947"]],[4,6,["H1323"]],[6,9,["H7548"]],[9,13,["H2879"]],[13,17,["H644"]]]},{"k":7383,"v":[[0,4,["H3947"]],[4,6,["H7704"]],[6,9,["H3754"]],[9,12,["H2132"]],[12,15,["H2896"]],[15,19,["H5414"]],[19,23,["H5650"]]]},{"k":7384,"v":[[0,6,["H6237"]],[6,9,["H2233"]],[9,13,["H3754"]],[13,15,["H5414"]],[15,18,["H5631"]],[18,22,["H5650"]]]},{"k":7385,"v":[[0,4,["H3947"]],[4,6,["H5650"]],[6,9,["H8198"]],[9,12,["H2896"]],[12,14,["H970"]],[14,17,["H2543"]],[17,19,["H6213"]],[19,23,["H4399"]]]},{"k":7386,"v":[[0,5,["H6237"]],[5,8,["H6629"]],[8,10,["H859"]],[10,12,["H1961"]],[12,14,["H5650"]]]},{"k":7387,"v":[[0,5,["H2199"]],[5,7,["H1931"]],[7,8,["H3117"]],[8,9,["H4480","H6440"]],[9,12,["H4428"]],[12,13,["H834"]],[13,17,["H977"]],[17,21,["H3068"]],[21,23,["H3808"]],[23,24,["H6030"]],[24,27,["H1931"]],[27,28,["H3117"]]]},{"k":7388,"v":[[0,3,["H5971"]],[3,4,["H3985"]],[4,6,["H8085"]],[6,8,["H6963"]],[8,10,["H8050"]],[10,13,["H559"]],[13,14,["H3808"]],[14,15,["H3588","H518"]],[15,18,["H1961"]],[18,20,["H4428"]],[20,21,["H5921"]],[21,22,[]]]},{"k":7389,"v":[[0,2,["H587"]],[2,3,["H1571"]],[3,5,["H1961"]],[5,7,["H3605"]],[7,9,["H1471"]],[9,13,["H4428"]],[13,15,["H8199"]],[15,19,["H3318"]],[19,20,["H6440"]],[20,23,["H3898","(H853)"]],[23,25,["H4421"]]]},{"k":7390,"v":[[0,2,["H8050"]],[2,3,["H8085","(H853)"]],[3,4,["H3605"]],[4,6,["H1697"]],[6,9,["H5971"]],[9,12,["H1696"]],[12,16,["H241"]],[16,19,["H3068"]]]},{"k":7391,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H8050"]],[6,7,["H8085"]],[7,10,["H6963"]],[10,15,["H4427","H4428"]],[15,17,["H8050"]],[17,18,["H559"]],[18,19,["H413"]],[19,21,["H376"]],[21,23,["H3478"]],[23,24,["H1980"]],[24,27,["H376"]],[27,30,["H5892"]]]},{"k":7392,"v":[[0,3,["H1961"]],[3,5,["H376"]],[5,7,["H4480","H1144"]],[7,9,["H8034"]],[9,11,["H7027"]],[11,13,["H1121"]],[13,15,["H22"]],[15,17,["H1121"]],[17,19,["H6872"]],[19,21,["H1121"]],[21,23,["H1064"]],[23,25,["H1121"]],[25,27,["H647"]],[27,29,["H1145"]],[29,32,["H1368"]],[32,34,["H2428"]]]},{"k":7393,"v":[[0,3,["H1961"]],[3,5,["H1121"]],[5,7,["H8034"]],[7,9,["H7586"]],[9,13,["H970"]],[13,16,["H2896"]],[16,20,["H369"]],[20,23,["H4480","H1121"]],[23,25,["H3478"]],[25,27,["H2896"]],[27,28,["H376"]],[28,29,["H4480"]],[29,33,["H4480","H7926"]],[33,35,["H4605"]],[35,38,["H1364"]],[38,40,["H4480","H3605"]],[40,43,["H5971"]]]},{"k":7394,"v":[[0,3,["H860"]],[3,5,["H7027"]],[5,6,["H7586"]],[6,7,["H1"]],[7,9,["H6"]],[9,11,["H7027"]],[11,12,["H559"]],[12,13,["H413"]],[13,14,["H7586"]],[14,16,["H1121"]],[16,17,["H3947"]],[17,18,["H4994","(H853)"]],[18,19,["H259"]],[19,22,["H4480","H5288"]],[22,23,["H854"]],[23,26,["H6965"]],[26,27,["H1980"]],[27,28,["H1245","(H853)"]],[28,30,["H860"]]]},{"k":7395,"v":[[0,4,["H5674"]],[4,5,["H2022"]],[5,6,["H669"]],[6,9,["H5674"]],[9,11,["H776"]],[11,13,["H8031"]],[13,16,["H4672"]],[16,18,["H3808"]],[18,22,["H5674"]],[22,24,["H776"]],[24,26,["H8171"]],[26,31,["H369"]],[31,35,["H5674"]],[35,37,["H776"]],[37,40,["H1145"]],[40,43,["H4672"]],[43,45,["H3808"]]]},{"k":7396,"v":[[0,3,["H1992"]],[3,5,["H935"]],[5,8,["H776"]],[8,10,["H6689"]],[10,11,["H7586"]],[11,12,["H559"]],[12,15,["H5288"]],[15,16,["H834"]],[16,18,["H5973"]],[18,20,["H1980"]],[20,24,["H7725"]],[24,25,["H6435"]],[25,27,["H1"]],[27,28,["H2308"]],[28,30,["H4480"]],[30,32,["H860"]],[32,35,["H1672"]],[35,37,[]]]},{"k":7397,"v":[[0,3,["H559"]],[3,6,["H2009"]],[6,7,["H4994"]],[7,11,["H2063"]],[11,12,["H5892"]],[12,14,["H376"]],[14,16,["H430"]],[16,21,["H3513"]],[21,22,["H376"]],[22,23,["H3605"]],[23,24,["H834"]],[24,26,["H1696"]],[26,30,["H935","H935"]],[30,31,["H4994"]],[31,34,["H1980"]],[34,35,["H8033"]],[35,36,["H194"]],[36,39,["H5046"]],[39,40,["(H853)"]],[40,42,["H1870"]],[42,43,["H834","H5921"]],[43,46,["H1980"]]]},{"k":7398,"v":[[0,2,["H559"]],[2,3,["H7586"]],[3,6,["H5288"]],[6,8,["H2009"]],[8,11,["H1980"]],[11,12,["H4100"]],[12,15,["H935"]],[15,17,["H376"]],[17,18,["H3588"]],[18,20,["H3899"]],[20,22,["H235"]],[22,25,["H4480","H3627"]],[25,29,["H369"]],[29,31,["H8670"]],[31,33,["H935"]],[33,36,["H376"]],[36,38,["H430"]],[38,39,["H4100"]],[39,41,[]]]},{"k":7399,"v":[[0,3,["H5288"]],[3,4,["H6030","(H853)"]],[4,5,["H7586"]],[5,6,["H3254"]],[6,8,["H559"]],[8,9,["H2009"]],[9,12,["H4672"]],[12,14,["H3027"]],[14,17,["H7253"]],[17,20,["H8255"]],[20,22,["H3701"]],[22,26,["H5414"]],[26,29,["H376"]],[29,31,["H430"]],[31,33,["H5046"]],[33,34,["(H853)"]],[34,36,["H1870"]]]},{"k":7400,"v":[[0,1,["H6440"]],[1,3,["H3478"]],[3,6,["H376"]],[6,7,["H1980"]],[7,9,["H1875"]],[9,11,["H430"]],[11,12,["H3541"]],[12,14,["H559"]],[14,15,["H1980"]],[15,19,["H1980"]],[19,20,["H5704"]],[20,22,["H7200"]],[22,23,["H3588"]],[23,27,["H3117"]],[27,30,["H5030"]],[30,32,["H6440"]],[32,33,["H7121"]],[33,35,["H7200"]]]},{"k":7401,"v":[[0,2,["H559"]],[2,3,["H7586"]],[3,6,["H5288"]],[6,7,["H2896"]],[7,8,["H1697"]],[8,9,["H1980"]],[9,12,["H1980"]],[12,15,["H1980"]],[15,16,["H413"]],[16,18,["H5892"]],[18,19,["H834","H8033"]],[19,21,["H376"]],[21,23,["H430"]],[23,24,[]]]},{"k":7402,"v":[[0,3,["H1992"]],[3,5,["H5927"]],[5,7,["H4608"]],[7,10,["H5892"]],[10,11,["H1992"]],[11,12,["H4672"]],[12,14,["H5291"]],[14,16,["H3318"]],[16,18,["H7579"]],[18,19,["H4325"]],[19,21,["H559"]],[21,24,["H3426"]],[24,26,["H7200"]],[26,27,["H2088"]]]},{"k":7403,"v":[[0,3,["H6030"]],[3,6,["H559"]],[6,8,["H3426"]],[8,9,["H2009"]],[9,12,["H6440"]],[12,15,["H4116"]],[15,16,["H6258"]],[16,17,["H3588"]],[17,19,["H935"]],[19,21,["H3117"]],[21,24,["H5892"]],[24,25,["H3588"]],[25,29,["H2077"]],[29,32,["H5971"]],[32,34,["H3117"]],[34,38,["H1116"]]]},{"k":7404,"v":[[0,6,["H935"]],[6,9,["H5892"]],[9,12,["H3651"]],[12,13,["H4672"]],[13,15,["H2962"]],[15,18,["H5927"]],[18,22,["H1116"]],[22,24,["H398"]],[24,25,["H3588"]],[25,27,["H5971"]],[27,29,["H3808"]],[29,30,["H398"]],[30,31,["H5704"]],[31,33,["H935"]],[33,34,["H3588"]],[34,35,["H1931"]],[35,37,["H1288"]],[37,39,["H2077"]],[39,41,["H310","H3651"]],[41,43,["H398"]],[43,46,["H7121"]],[46,47,["H6258"]],[47,51,["H5927"]],[51,52,["H3588"]],[52,55,["H3117"]],[55,58,["H4672"]],[58,59,[]]]},{"k":7405,"v":[[0,4,["H5927"]],[4,7,["H5892"]],[7,10,["H1992"]],[10,12,["H935"]],[12,13,["H8432"]],[13,15,["H5892"]],[15,16,["H2009"]],[16,17,["H8050"]],[17,19,["H3318"]],[19,20,["H7125"]],[20,25,["H5927"]],[25,29,["H1116"]]]},{"k":7406,"v":[[0,3,["H3068"]],[3,5,["H1540"]],[5,6,["H8050"]],[6,7,["H854"]],[7,9,["H241"]],[9,10,["H259"]],[10,11,["H3117"]],[11,12,["H6440"]],[12,13,["H7586"]],[13,14,["H935"]],[14,15,["H559"]]]},{"k":7407,"v":[[0,2,["H4279"]],[2,5,["H6256"]],[5,8,["H7971"]],[8,11,["H376"]],[11,15,["H4480","H776"]],[15,17,["H1144"]],[17,21,["H4886"]],[21,25,["H5057"]],[25,26,["H5921"]],[26,28,["H5971"]],[28,29,["H3478"]],[29,33,["H3467","(H853)"]],[33,35,["H5971"]],[35,39,["H4480","H3027"]],[39,42,["H6430"]],[42,43,["H3588"]],[43,47,["H7200","(H853)"]],[47,49,["H5971"]],[49,50,["H3588"]],[50,52,["H6818"]],[52,54,["H935"]],[54,56,["H413"]]]},{"k":7408,"v":[[0,3,["H8050"]],[3,4,["H7200","(H853)"]],[4,5,["H7586"]],[5,7,["H3068"]],[7,8,["H6030"]],[8,11,["H2009"]],[11,13,["H376"]],[13,14,["H834"]],[14,16,["H559"]],[16,17,["H413"]],[17,21,["H2088"]],[21,23,["H6113"]],[23,26,["H5971"]]]},{"k":7409,"v":[[0,2,["H7586"]],[2,4,["H5066"]],[4,5,["(H853)"]],[5,6,["H8050"]],[6,7,["H8432"]],[7,9,["H8179"]],[9,11,["H559"]],[11,12,["H5046"]],[12,16,["H4994"]],[16,17,["H335","H2088"]],[17,19,["H7200"]],[19,20,["H1004"]],[20,21,[]]]},{"k":7410,"v":[[0,2,["H8050"]],[2,3,["H6030","(H853)"]],[3,4,["H7586"]],[4,6,["H559"]],[6,7,["H595"]],[7,10,["H7200"]],[10,12,["H5927"]],[12,13,["H6440"]],[13,18,["H1116"]],[18,22,["H398"]],[22,23,["H5973"]],[23,26,["H3117"]],[26,29,["H1242"]],[29,34,["H7971"]],[34,37,["H5046"]],[37,39,["H3605"]],[39,40,["H834"]],[40,44,["H3824"]]]},{"k":7411,"v":[[0,5,["H860"]],[5,8,["H6"]],[8,9,["H7969"]],[9,10,["H3117"]],[10,11,["H3117"]],[11,12,["H7760"]],[12,13,["H408","(H853)"]],[13,15,["H3820"]],[15,18,["H3588"]],[18,21,["H4672"]],[21,24,["H4310"]],[24,26,["H3605"]],[26,28,["H2532"]],[28,30,["H3478"]],[30,33,["H3808"]],[33,38,["H3605"]],[38,40,["H1"]],[40,41,["H1004"]]]},{"k":7412,"v":[[0,2,["H7586"]],[2,3,["H6030"]],[3,5,["H559"]],[5,7,["H3808"]],[7,8,["H595"]],[8,10,["H1145"]],[10,13,["H4480","H6996"]],[13,16,["H7626"]],[16,18,["H3478"]],[18,21,["H4940"]],[21,23,["H6810"]],[23,25,["H4480","H3605"]],[25,27,["H4940"]],[27,30,["H7626"]],[30,32,["H1144"]],[32,33,["H4100"]],[33,35,["H1696"]],[35,37,["H1697","H2088"]],[37,38,["H413"]],[38,39,[]]]},{"k":7413,"v":[[0,2,["H8050"]],[2,3,["H3947","(H853)"]],[3,4,["H7586"]],[4,7,["H5288"]],[7,9,["H935"]],[9,13,["H3957"]],[13,17,["H5414"]],[17,20,["H7218"]],[20,21,["H4725"]],[21,26,["H7121"]],[26,27,["H1992"]],[27,30,["H7970"]],[30,31,["H376"]]]},{"k":7414,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,6,["H2876"]],[6,7,["H5414","(H853)"]],[7,9,["H4490"]],[9,10,["H834"]],[10,12,["H5414"]],[12,15,["H834"]],[15,17,["H559"]],[17,18,["H413"]],[18,20,["H7760"]],[20,22,["H5973"]],[22,23,[]]]},{"k":7415,"v":[[0,3,["H2876"]],[3,5,["H7311","(H853)"]],[5,7,["H7785"]],[7,12,["H5921"]],[12,15,["H7760"]],[15,17,["H6440"]],[17,18,["H7586"]],[18,21,["H559"]],[21,22,["H2009"]],[22,26,["H7604"]],[26,27,["H7760"]],[27,29,["H6440"]],[29,32,["H398"]],[32,33,["H3588"]],[33,36,["H4150"]],[36,40,["H8104"]],[40,45,["H559"]],[45,48,["H7121"]],[48,50,["H5971"]],[50,52,["H7586"]],[52,54,["H398"]],[54,55,["H5973"]],[55,56,["H8050"]],[56,57,["H1931"]],[57,58,["H3117"]]]},{"k":7416,"v":[[0,6,["H3381"]],[6,10,["H4480","H1116"]],[10,13,["H5892"]],[13,15,["H1696"]],[15,16,["H5973"]],[16,17,["H7586"]],[17,18,["H5921"]],[18,23,["H1406"]]]},{"k":7417,"v":[[0,4,["H7925"]],[4,9,["H1961"]],[9,12,["H5927"]],[12,15,["H7837"]],[15,17,["H8050"]],[17,18,["H7121","H413"]],[18,19,["H7586"]],[19,25,["H1406"]],[25,26,["H559"]],[26,27,["H6965"]],[27,33,["H7971"]],[33,35,["H7586"]],[35,36,["H6965"]],[36,40,["H3318"]],[40,41,["H8147"]],[41,44,["H1931"]],[44,46,["H8050"]],[46,47,["H2351"]]]},{"k":7418,"v":[[0,3,["H1992"]],[3,6,["H3381"]],[6,9,["H7097"]],[9,12,["H5892"]],[12,13,["H8050"]],[13,14,["H559"]],[14,15,["H413"]],[15,16,["H7586"]],[16,17,["H559"]],[17,19,["H5288"]],[19,21,["H5674"]],[21,22,["H6440"]],[22,27,["H5674"]],[27,31,["H5975","H859"]],[31,33,["H3117"]],[33,37,["H8085"]],[37,38,["(H853)"]],[38,40,["H1697"]],[40,42,["H430"]]]},{"k":7419,"v":[[0,2,["H8050"]],[2,3,["H3947","(H853)"]],[3,5,["H6378"]],[5,7,["H8081"]],[7,9,["H3332"]],[9,11,["H5921"]],[11,13,["H7218"]],[13,15,["H5401"]],[15,18,["H559"]],[18,21,["H3808"]],[21,22,["H3588"]],[22,24,["H3068"]],[24,26,["H4886"]],[26,30,["H5057"]],[30,31,["H5921"]],[31,33,["H5159"]]]},{"k":7420,"v":[[0,4,["H1980"]],[4,5,["H4480","H5973"]],[5,8,["H3117"]],[8,12,["H4672"]],[12,13,["H8147"]],[13,14,["H376"]],[14,15,["H5973"]],[15,16,["H7354"]],[16,17,["H6900"]],[17,20,["H1366"]],[20,22,["H1144"]],[22,24,["H6766"]],[24,28,["H559"]],[28,29,["H413"]],[29,32,["H860"]],[32,33,["H834"]],[33,35,["H1980"]],[35,37,["H1245"]],[37,39,["H4672"]],[39,41,["H2009"]],[41,43,["H1"]],[43,45,["H5203","(H853)"]],[45,47,["H1697"]],[47,50,["H860"]],[50,52,["H1672"]],[52,55,["H559"]],[55,56,["H4100"]],[56,59,["H6213"]],[59,62,["H1121"]]]},{"k":7421,"v":[[0,5,["H2498"]],[5,6,["H1973"]],[6,8,["H4480","H8033"]],[8,12,["H935"]],[12,13,["H5704"]],[13,15,["H436"]],[15,17,["H8396"]],[17,19,["H8033"]],[19,21,["H4672"]],[21,23,["H7969"]],[23,24,["H376"]],[24,26,["H5927"]],[26,27,["H413"]],[27,28,["H430"]],[28,30,["H1008"]],[30,31,["H259"]],[31,32,["H5375"]],[32,33,["H7969"]],[33,34,["H1423"]],[34,36,["H259"]],[36,37,["H5375"]],[37,38,["H7969"]],[38,39,["H3603"]],[39,41,["H3899"]],[41,43,["H259"]],[43,44,["H5375"]],[44,46,["H5035"]],[46,48,["H3196"]]]},{"k":7422,"v":[[0,4,["H7592","H7965"]],[4,7,["H5414"]],[7,9,["H8147"]],[9,12,["H3899"]],[12,16,["H3947"]],[16,19,["H4480","H3027"]]]},{"k":7423,"v":[[0,2,["H310","H3651"]],[2,5,["H935"]],[5,8,["H1389"]],[8,10,["H430"]],[10,11,["H834","H8033"]],[11,14,["H5333"]],[14,17,["H6430"]],[17,23,["H1961"]],[23,27,["H935"]],[27,28,["H8033"]],[28,31,["H5892"]],[31,35,["H6293"]],[35,37,["H2256"]],[37,39,["H5030"]],[39,41,["H3381"]],[41,45,["H4480","H1116"]],[45,48,["H5035"]],[48,51,["H8596"]],[51,54,["H2485"]],[54,57,["H3658"]],[57,58,["H6440"]],[58,61,["H1992"]],[61,63,["H5012"]]]},{"k":7424,"v":[[0,3,["H7307"]],[3,6,["H3068"]],[6,8,["H6743"]],[8,9,["H5921"]],[9,14,["H5012"]],[14,16,["H5973"]],[16,20,["H2015"]],[20,22,["H312"]],[22,23,["H376"]]]},{"k":7425,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,6,["H428"]],[6,7,["H226"]],[7,9,["H935"]],[9,14,["H6213"]],[14,17,["H834","H4672","H3027"]],[17,19,["H3588"]],[19,20,["H430"]],[20,22,["H5973"]],[22,23,[]]]},{"k":7426,"v":[[0,5,["H3381"]],[5,6,["H6440"]],[6,9,["H1537"]],[9,11,["H2009"]],[11,12,["H595"]],[12,15,["H3381"]],[15,16,["H413"]],[16,19,["H5927"]],[19,21,["H5930"]],[21,24,["H2076"]],[24,25,["H2077"]],[25,28,["H8002"]],[28,29,["H7651"]],[29,30,["H3117"]],[30,33,["H3176"]],[33,34,["H5704"]],[34,36,["H935"]],[36,37,["H413"]],[37,40,["H3045"]],[40,41,["(H853)"]],[41,42,["H834"]],[42,45,["H6213"]]]},{"k":7427,"v":[[0,3,["H1961"]],[3,9,["H6437"]],[9,11,["H7926"]],[11,13,["H1980"]],[13,14,["H4480","H5973"]],[14,15,["H8050"]],[15,16,["H430"]],[16,17,["H2015"]],[17,19,["H312"]],[19,20,["H3820"]],[20,22,["H3605"]],[22,23,["H428"]],[23,24,["H226"]],[24,27,["H935"]],[27,28,["H1931"]],[28,29,["H3117"]]]},{"k":7428,"v":[[0,4,["H935"]],[4,5,["H8033"]],[5,8,["H1389"]],[8,9,["H2009"]],[9,11,["H2256"]],[11,13,["H5030"]],[13,14,["H7125"]],[14,18,["H7307"]],[18,20,["H430"]],[20,21,["H6743"]],[21,22,["H5921"]],[22,26,["H5012"]],[26,27,["H8432"]],[27,28,[]]]},{"k":7429,"v":[[0,5,["H1961"]],[5,7,["H3605"]],[7,9,["H3045"]],[9,11,["H4480","H865","H8032"]],[11,12,["H7200"]],[12,14,["H2009"]],[14,16,["H5012"]],[16,17,["H5973"]],[17,19,["H5030"]],[19,22,["H5971"]],[22,23,["H559"]],[23,24,["H376"]],[24,25,["H413"]],[25,26,["H7453"]],[26,27,["H4100"]],[27,29,["H2088"]],[29,32,["H1961"]],[32,35,["H1121"]],[35,37,["H7027"]],[37,39,["H7586"]],[39,40,["H1571"]],[40,43,["H5030"]]]},{"k":7430,"v":[[0,2,["H376"]],[2,6,["H4480","H8033"]],[6,7,["H6030"]],[7,9,["H559"]],[9,11,["H4310"]],[11,14,["H1"]],[14,15,["H5921","H3651"]],[15,17,["H1961"]],[17,19,["H4912"]],[19,21,["H7586"]],[21,22,["H1571"]],[22,25,["H5030"]]]},{"k":7431,"v":[[0,7,["H3615"]],[7,9,["H4480","H5012"]],[9,11,["H935"]],[11,15,["H1116"]]]},{"k":7432,"v":[[0,2,["H7586"]],[2,3,["H1730"]],[3,4,["H559"]],[4,5,["H413"]],[5,8,["H413"]],[8,10,["H5288"]],[10,11,["H575"]],[11,12,["H1980"]],[12,16,["H559"]],[16,18,["H1245","(H853)"]],[18,20,["H860"]],[20,24,["H7200"]],[24,25,["H3588"]],[25,29,["H369"]],[29,31,["H935"]],[31,32,["H413"]],[32,33,["H8050"]]]},{"k":7433,"v":[[0,2,["H7586"]],[2,3,["H1730"]],[3,4,["H559"]],[4,5,["H5046"]],[5,9,["H4994"]],[9,10,["H4100"]],[10,11,["H8050"]],[11,12,["H559"]],[12,14,[]]]},{"k":7434,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1730"]],[6,10,["H5046","H5046"]],[10,11,["H3588"]],[11,13,["H860"]],[13,15,["H4672"]],[15,19,["H1697"]],[19,22,["H4410"]],[22,23,["H834"]],[23,24,["H8050"]],[24,25,["H559"]],[25,27,["H5046"]],[27,29,["H3808"]]]},{"k":7435,"v":[[0,2,["H8050"]],[2,6,["H6817","(H853)","H5971"]],[6,7,["H413"]],[7,9,["H3068"]],[9,11,["H4709"]]]},{"k":7436,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H1121"]],[5,7,["H3478"]],[7,8,["H3541"]],[8,9,["H559"]],[9,11,["H3068"]],[11,12,["H430"]],[12,14,["H3478"]],[14,15,["H595"]],[15,17,["H5927","(H853)"]],[17,18,["H3478"]],[18,21,["H4480","H4714"]],[21,23,["H5337"]],[23,28,["H4480","H3027"]],[28,31,["H4714"]],[31,36,["H4480","H3027"]],[36,38,["H3605"]],[38,39,["H4467"]],[39,44,["H3905"]],[44,45,[]]]},{"k":7437,"v":[[0,2,["H859"]],[2,5,["H3117"]],[5,6,["H3988","(H853)"]],[6,8,["H430"]],[8,9,["H834"]],[9,10,["H1931"]],[10,11,["H3467"]],[11,15,["H4480","H3605"]],[15,17,["H7451"]],[17,20,["H6869"]],[20,24,["H559"]],[24,28,["H3588"]],[28,29,["H7760"]],[29,31,["H4428"]],[31,32,["H5921"]],[32,34,["H6258"]],[34,37,["H3320"]],[37,38,["H6440"]],[38,40,["H3068"]],[40,43,["H7626"]],[43,47,["H505"]]]},{"k":7438,"v":[[0,3,["H8050"]],[3,5,["(H853)"]],[5,6,["H3605"]],[6,8,["H7626"]],[8,10,["H3478"]],[10,13,["H7126"]],[13,15,["H7626"]],[15,17,["H1144"]],[17,19,["H3920"]]]},{"k":7439,"v":[[0,4,["(H853)"]],[4,6,["H7626"]],[6,8,["H1144"]],[8,11,["H7126"]],[11,14,["H4940"]],[14,16,["H4940"]],[16,18,["H4309"]],[18,20,["H3920"]],[20,22,["H7586"]],[22,24,["H1121"]],[24,26,["H7027"]],[26,28,["H3920"]],[28,32,["H1245"]],[32,36,["H3808"]],[36,38,["H4672"]]]},{"k":7440,"v":[[0,3,["H7592"]],[3,6,["H3068"]],[6,7,["H5750"]],[7,10,["H376"]],[10,12,["H5750"]],[12,13,["H935"]],[13,14,["H1988"]],[14,17,["H3068"]],[17,18,["H559"]],[18,19,["H2009"]],[19,20,["H1931"]],[20,23,["H2244"]],[23,24,["H413"]],[24,26,["H3627"]]]},{"k":7441,"v":[[0,3,["H7323"]],[3,5,["H3947"]],[5,7,["H4480","H8033"]],[7,11,["H3320"]],[11,12,["H8432"]],[12,14,["H5971"]],[14,17,["H1361"]],[17,19,["H4480","H3605"]],[19,22,["H5971"]],[22,25,["H4480","H7926"]],[25,27,["H4605"]]]},{"k":7442,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3605"]],[5,7,["H5971"]],[7,8,["H7200"]],[8,11,["H834"]],[11,13,["H3068"]],[13,15,["H977"]],[15,16,["H3588"]],[16,19,["H369"]],[19,21,["H3644"]],[21,23,["H3605"]],[23,25,["H5971"]],[25,27,["H3605"]],[27,29,["H5971"]],[29,30,["H7321"]],[30,32,["H559"]],[32,34,["H2421"]],[34,36,["H4428"]]]},{"k":7443,"v":[[0,2,["H8050"]],[2,3,["H1696","H413"]],[3,5,["H5971","(H853)"]],[5,7,["H4941"]],[7,10,["H4410"]],[10,12,["H3789"]],[12,16,["H5612"]],[16,20,["H5117"]],[20,21,["H6440"]],[21,23,["H3068"]],[23,25,["H8050"]],[25,26,["H7971","(H853)"]],[26,27,["H3605"]],[27,29,["H5971"]],[29,32,["H376"]],[32,35,["H1004"]]]},{"k":7444,"v":[[0,2,["H7586"]],[2,3,["H1571"]],[3,4,["H1980"]],[4,5,["H1004"]],[5,7,["H1390"]],[7,10,["H1980"]],[10,11,["H5973"]],[11,16,["H2428"]],[16,17,["H834"]],[17,18,["H3820"]],[18,19,["H430"]],[19,21,["H5060"]]]},{"k":7445,"v":[[0,3,["H1121"]],[3,5,["H1100"]],[5,6,["H559"]],[6,7,["H4100"]],[7,9,["H2088"]],[9,11,["H3467"]],[11,15,["H959"]],[15,18,["H935"]],[18,20,["H3808"]],[20,21,["H4503"]],[21,26,["H2790"]]]},{"k":7446,"v":[[0,2,["H5176"]],[2,4,["H5984"]],[4,6,["H5927"]],[6,8,["H2583"]],[8,9,["H5921"]],[9,10,["H3003","H1568"]],[10,12,["H3605"]],[12,14,["H376"]],[14,16,["H3003"]],[16,17,["H559"]],[17,18,["H413"]],[18,19,["H5176"]],[19,20,["H3772"]],[20,22,["H1285"]],[22,28,["H5647"]],[28,29,[]]]},{"k":7447,"v":[[0,2,["H5176"]],[2,4,["H5984"]],[4,5,["H559","H413"]],[5,8,["H2063"]],[8,12,["H3772"]],[12,21,["H5365"]],[21,22,["H3605"]],[22,24,["H3225"]],[24,25,["H5869"]],[25,27,["H7760"]],[27,31,["H2781"]],[31,32,["H5921"]],[32,33,["H3605"]],[33,34,["H3478"]]]},{"k":7448,"v":[[0,3,["H2205"]],[3,5,["H3003"]],[5,6,["H559"]],[6,7,["H413"]],[7,11,["H7651"]],[11,12,["H3117"]],[12,13,["H7503"]],[13,17,["H7971"]],[17,18,["H4397"]],[18,20,["H3605"]],[20,22,["H1366"]],[22,24,["H3478"]],[24,27,["H518"]],[27,31,["H369"]],[31,33,["H3467"]],[33,38,["H3318"]],[38,39,["H413"]],[39,40,[]]]},{"k":7449,"v":[[0,2,["H935"]],[2,4,["H4397"]],[4,6,["H1390"]],[6,8,["H7586"]],[8,10,["H1696"]],[10,12,["H1697"]],[12,15,["H241"]],[15,18,["H5971"]],[18,20,["H3605"]],[20,22,["H5971"]],[22,24,["H5375","(H853)"]],[24,26,["H6963"]],[26,28,["H1058"]]]},{"k":7450,"v":[[0,2,["H2009"]],[2,3,["H7586"]],[3,4,["H935"]],[4,5,["H310"]],[5,7,["H1241"]],[7,9,["H4480"]],[9,11,["H7704"]],[11,13,["H7586"]],[13,14,["H559"]],[14,15,["H4100"]],[15,18,["H5971"]],[18,19,["H3588"]],[19,21,["H1058"]],[21,24,["H5608"]],[24,25,["(H853)"]],[25,27,["H1697"]],[27,30,["H376"]],[30,32,["H3003"]]]},{"k":7451,"v":[[0,3,["H7307"]],[3,5,["H430"]],[5,6,["H6743"]],[6,7,["H5921"]],[7,8,["H7586"]],[8,11,["H8085","(H853)"]],[11,12,["H428"]],[12,13,["H1697"]],[13,16,["H639"]],[16,18,["H2734"]],[18,19,["H3966"]]]},{"k":7452,"v":[[0,3,["H3947"]],[3,5,["H6776"]],[5,7,["H1241"]],[7,12,["H5408"]],[12,14,["H7971"]],[14,17,["H3605"]],[17,19,["H1366"]],[19,21,["H3478"]],[21,24,["H3027"]],[24,26,["H4397"]],[26,27,["H559"]],[27,28,["H834"]],[28,31,["H369","H3318"]],[31,32,["H310"]],[32,33,["H7586"]],[33,35,["H310"]],[35,36,["H8050"]],[36,37,["H3541"]],[37,41,["H6213"]],[41,44,["H1241"]],[44,47,["H6343"]],[47,50,["H3068"]],[50,51,["H5307"]],[51,52,["H5921"]],[52,54,["H5971"]],[54,58,["H3318"]],[58,60,["H259"]],[60,61,["H376"]]]},{"k":7453,"v":[[0,4,["H6485"]],[4,7,["H966"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,12,["H1961"]],[12,13,["H7969"]],[13,14,["H3967"]],[14,15,["H505"]],[15,18,["H376"]],[18,20,["H3063"]],[20,21,["H7970"]],[21,22,["H505"]]]},{"k":7454,"v":[[0,3,["H559"]],[3,6,["H4397"]],[6,8,["H935"]],[8,9,["H3541"]],[9,12,["H559"]],[12,15,["H376"]],[15,17,["H3003","H1568"]],[17,19,["H4279"]],[19,24,["H8121"]],[24,26,["H2527"]],[26,29,["H1961"]],[29,30,["H8668"]],[30,33,["H4397"]],[33,34,["H935"]],[34,36,["H5046"]],[36,40,["H376"]],[40,42,["H3003"]],[42,46,["H8055"]]]},{"k":7455,"v":[[0,3,["H376"]],[3,5,["H3003"]],[5,6,["H559"]],[6,8,["H4279"]],[8,12,["H3318"]],[12,13,["H413"]],[13,18,["H6213"]],[18,21,["H3605"]],[21,23,["H5869"]],[23,24,["H2896"]],[24,26,[]]]},{"k":7456,"v":[[0,3,["H1961"]],[3,7,["H4480","H4283"]],[7,9,["H7586"]],[9,10,["H7760","(H853)"]],[10,12,["H5971"]],[12,14,["H7969"]],[14,15,["H7218"]],[15,18,["H935"]],[18,21,["H8432"]],[21,24,["H4264"]],[24,27,["H1242"]],[27,28,["H821"]],[28,30,["H5221","(H853)"]],[30,32,["H5983"]],[32,33,["H5704"]],[33,35,["H2527"]],[35,38,["H3117"]],[38,43,["H1961"]],[43,47,["H7604"]],[47,49,["H6327"]],[49,52,["H8147"]],[52,56,["H3808"]],[56,57,["H7604"]],[57,58,["H3162"]]]},{"k":7457,"v":[[0,3,["H5971"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H8050"]],[6,7,["H4310"]],[7,11,["H559"]],[11,13,["H7586"]],[13,14,["H4427"]],[14,15,["H5921"]],[15,17,["H5414"]],[17,19,["H376"]],[19,26,["H4191"]]]},{"k":7458,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,6,["H3808"]],[6,8,["H376"]],[8,12,["H4191"]],[12,13,["H2088"]],[13,14,["H3117"]],[14,15,["H3588"]],[15,17,["H3117"]],[17,19,["H3068"]],[19,21,["H6213"]],[21,22,["H8668"]],[22,24,["H3478"]]]},{"k":7459,"v":[[0,2,["H559"]],[2,3,["H8050"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H1980"]],[7,11,["H1980"]],[11,13,["H1537"]],[13,15,["H2318"]],[15,17,["H4410"]],[17,18,["H8033"]]]},{"k":7460,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H1980"]],[5,7,["H1537"]],[7,9,["H8033"]],[9,13,["H4427","(H853)","H7586"]],[13,14,["H6440"]],[14,16,["H3068"]],[16,18,["H1537"]],[18,20,["H8033"]],[20,22,["H2076"]],[22,23,["H2077"]],[23,26,["H8002"]],[26,27,["H6440"]],[27,29,["H3068"]],[29,31,["H8033"]],[31,32,["H7586"]],[32,34,["H3605"]],[34,36,["H376"]],[36,38,["H3478"]],[38,39,["H8055"]],[39,40,["H3966"]]]},{"k":7461,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3605"]],[5,6,["H3478"]],[6,7,["H2009"]],[7,10,["H8085"]],[10,13,["H6963"]],[13,15,["H3605"]],[15,16,["H834"]],[16,18,["H559"]],[18,25,["H4427","H4428"]],[25,26,["H5921"]],[26,27,[]]]},{"k":7462,"v":[[0,2,["H6258"]],[2,3,["H2009"]],[3,5,["H4428"]],[5,6,["H1980"]],[6,7,["H6440"]],[7,10,["H589"]],[10,12,["H2204"]],[12,14,["H7867"]],[14,16,["H2009"]],[16,18,["H1121"]],[18,20,["H854"]],[20,23,["H589"]],[23,25,["H1980"]],[25,26,["H6440"]],[26,30,["H4480","H5271"]],[30,31,["H5704"]],[31,32,["H2088"]],[32,33,["H3117"]]]},{"k":7463,"v":[[0,1,["H2009"]],[1,5,["H6030"]],[5,8,["H5048"]],[8,10,["H3068"]],[10,12,["H5048"]],[12,14,["H4899"]],[14,15,["H4310","(H853)"]],[15,16,["H7794"]],[16,19,["H3947"]],[19,21,["H4310"]],[21,22,["H2543"]],[22,25,["H3947"]],[25,27,["H4310"]],[27,30,["H6231","(H853)"]],[30,31,["H4310"]],[31,34,["H7533"]],[34,38,["H4480","H3027","H4310"]],[38,41,["H3947"]],[41,43,["H3724"]],[43,45,["H5956"]],[45,47,["H5869"]],[47,52,["H7725"]],[52,54,[]]]},{"k":7464,"v":[[0,3,["H559"]],[3,6,["H3808"]],[6,7,["H6231"]],[7,9,["H3808"]],[9,10,["H7533"]],[10,12,["H3808"]],[12,15,["H3947"]],[15,16,["H3972"]],[16,20,["H4480","H3027","H376"]]]},{"k":7465,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H3068"]],[7,9,["H5707"]],[9,14,["H4899"]],[14,16,["H5707"]],[16,17,["H2088"]],[17,18,["H3117"]],[18,19,["H3588"]],[19,22,["H3808"]],[22,23,["H4672"]],[23,24,["H3972"]],[24,27,["H3027"]],[27,30,["H559"]],[30,33,["H5707"]]]},{"k":7466,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,10,["H3068"]],[10,11,["H834"]],[11,12,["H6213","(H853)"]],[12,13,["H4872"]],[13,15,["H175"]],[15,17,["H834"]],[17,18,["H5927","(H853)"]],[18,20,["H1"]],[20,25,["H4480","H776"]],[25,27,["H4714"]]]},{"k":7467,"v":[[0,1,["H6258"]],[1,4,["H3320"]],[4,8,["H8199"]],[8,9,["H854"]],[9,11,["H6440"]],[11,13,["H3068"]],[13,14,["(H853)"]],[14,15,["H3605"]],[15,18,["H6666"]],[18,21,["H3068"]],[21,22,["H834"]],[22,24,["H6213"]],[24,25,["H854"]],[25,28,["H854"]],[28,30,["H1"]]]},{"k":7468,"v":[[0,1,["H834"]],[1,2,["H3290"]],[2,4,["H935"]],[4,6,["H4714"]],[6,9,["H1"]],[9,10,["H2199"]],[10,11,["H413"]],[11,13,["H3068"]],[13,16,["H3068"]],[16,17,["H7971","(H853)"]],[17,18,["H4872"]],[18,20,["H175"]],[20,23,["H3318","(H853)"]],[23,25,["H1"]],[25,28,["H4480","H4714"]],[28,32,["H3427"]],[32,34,["H2088"]],[34,35,["H4725"]]]},{"k":7469,"v":[[0,4,["H7911","(H853)"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H4376"]],[10,14,["H3027"]],[14,16,["H5516"]],[16,17,["H8269"]],[17,20,["H6635"]],[20,22,["H2674"]],[22,26,["H3027"]],[26,29,["H6430"]],[29,33,["H3027"]],[33,36,["H4428"]],[36,38,["H4124"]],[38,41,["H3898"]],[41,43,[]]]},{"k":7470,"v":[[0,3,["H2199"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H559"]],[8,11,["H2398"]],[11,12,["H3588"]],[12,15,["H5800","(H853)"]],[15,17,["H3068"]],[17,20,["H5647","(H853)"]],[20,21,["H1168"]],[21,23,["H6252"]],[23,25,["H6258"]],[25,26,["H5337"]],[26,31,["H4480","H3027"]],[31,34,["H341"]],[34,38,["H5647"]],[38,39,[]]]},{"k":7471,"v":[[0,3,["H3068"]],[3,4,["H7971","(H853)"]],[4,5,["H3378"]],[5,7,["H917"]],[7,9,["H3316"]],[9,11,["H8050"]],[11,13,["H5337"]],[13,18,["H4480","H3027"]],[18,21,["H341"]],[21,24,["H4480","H5439"]],[24,27,["H3427"]],[27,28,["H983"]]]},{"k":7472,"v":[[0,4,["H7200"]],[4,5,["H3588"]],[5,6,["H5176"]],[6,8,["H4428"]],[8,11,["H1121"]],[11,13,["H5983"]],[13,14,["H935"]],[14,15,["H5921"]],[15,18,["H559"]],[18,21,["H3808"]],[21,22,["H3588"]],[22,24,["H4428"]],[24,26,["H4427"]],[26,27,["H5921"]],[27,31,["H3068"]],[31,33,["H430"]],[33,36,["H4428"]]]},{"k":7473,"v":[[0,1,["H6258"]],[1,3,["H2009"]],[3,5,["H4428"]],[5,6,["H834"]],[6,9,["H977"]],[9,11,["H834"]],[11,14,["H7592"]],[14,16,["H2009"]],[16,18,["H3068"]],[18,20,["H5414"]],[20,22,["H4428"]],[22,23,["H5921"]],[23,24,[]]]},{"k":7474,"v":[[0,1,["H518"]],[1,4,["H3372","(H853)"]],[4,6,["H3068"]],[6,8,["H5647"]],[8,11,["H8085"]],[11,13,["H6963"]],[13,15,["H3808"]],[15,17,["H4784","(H853)"]],[17,19,["H6310"]],[19,22,["H3068"]],[22,25,["H1571"]],[25,26,["H859"]],[26,28,["H1571"]],[28,30,["H4428"]],[30,31,["H834"]],[31,32,["H4427"]],[32,33,["H5921"]],[33,35,["H1961"]],[35,36,["H310"]],[36,38,["H3068"]],[38,40,["H430"]]]},{"k":7475,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H8085"]],[6,8,["H6963"]],[8,11,["H3068"]],[11,14,["H4784","(H853)"]],[14,16,["H6310"]],[16,19,["H3068"]],[19,23,["H3027"]],[23,26,["H3068"]],[26,27,["H1961"]],[27,35,["H1"]]]},{"k":7476,"v":[[0,1,["H6258"]],[1,2,["H1571"]],[2,3,["H3320"]],[3,5,["H7200","(H853)"]],[5,6,["H2088"]],[6,7,["H1419"]],[7,8,["H1697"]],[8,9,["H834"]],[9,11,["H3068"]],[11,13,["H6213"]],[13,16,["H5869"]]]},{"k":7477,"v":[[0,3,["H3808"]],[3,4,["H2406"]],[4,5,["H7105"]],[5,7,["H3117"]],[7,10,["H7121"]],[10,11,["H413"]],[11,13,["H3068"]],[13,17,["H5414"]],[17,18,["H6963"]],[18,20,["H4306"]],[20,24,["H3045"]],[24,26,["H7200"]],[26,27,["H3588"]],[27,29,["H7451"]],[29,31,["H7227"]],[31,32,["H834"]],[32,35,["H6213"]],[35,38,["H5869"]],[38,41,["H3068"]],[41,43,["H7592"]],[43,46,["H4428"]]]},{"k":7478,"v":[[0,2,["H8050"]],[2,3,["H7121"]],[3,4,["H413"]],[4,6,["H3068"]],[6,9,["H3068"]],[9,10,["H5414"]],[10,11,["H6963"]],[11,13,["H4306"]],[13,14,["H1931"]],[14,15,["H3117"]],[15,17,["H3605"]],[17,19,["H5971"]],[19,20,["H3966"]],[20,21,["H3372","(H853)"]],[21,23,["H3068"]],[23,25,["H8050"]]]},{"k":7479,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H559"]],[5,6,["H413"]],[6,7,["H8050"]],[7,8,["H6419"]],[8,9,["H1157"]],[9,11,["H5650"]],[11,12,["H413"]],[12,14,["H3068"]],[14,16,["H430"]],[16,19,["H4191"]],[19,20,["H408"]],[20,21,["H3588"]],[21,24,["H3254"]],[24,25,["H5921"]],[25,26,["H3605"]],[26,28,["H2403"]],[28,30,["H7451"]],[30,32,["H7592"]],[32,35,["H4428"]]]},{"k":7480,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H3372"]],[7,8,["H408"]],[8,9,["H859"]],[9,11,["H6213","(H853)"]],[11,12,["H3605"]],[12,13,["H2063"]],[13,14,["H7451"]],[14,15,["H389"]],[15,18,["H408","H5493"]],[18,20,["H4480","H310"]],[20,22,["H3068"]],[22,24,["H5647","(H853)"]],[24,26,["H3068"]],[26,28,["H3605"]],[28,30,["H3824"]]]},{"k":7481,"v":[[0,5,["H3808","H5493"]],[5,6,["H3588"]],[6,11,["H310"]],[11,12,["H8414"]],[12,14,["H834"]],[14,15,["H3808"]],[15,16,["H3276"]],[16,17,["H3808"]],[17,18,["H5337"]],[18,19,["H3588"]],[19,20,["H1992"]],[20,22,["H8414"]]]},{"k":7482,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H3808"]],[5,6,["H5203","(H853)"]],[6,8,["H5971"]],[8,11,["H1419"]],[11,12,["H8034"]],[12,13,["H5668"]],[13,14,["H3588"]],[14,17,["H2974"]],[17,19,["H3068"]],[19,21,["H6213"]],[21,24,["H5971"]]]},{"k":7483,"v":[[0,1,["H1571"]],[1,4,["H595"]],[4,6,["H2486"]],[6,10,["H4480","H2398"]],[10,13,["H3068"]],[13,15,["H4480","H2308"]],[15,17,["H6419"]],[17,18,["H1157"]],[18,23,["H3384"]],[23,26,["H2896"]],[26,29,["H3477"]],[29,30,["H1870"]]]},{"k":7484,"v":[[0,1,["H389"]],[1,2,["H3372","(H853)"]],[2,4,["H3068"]],[4,6,["H5647"]],[6,9,["H571"]],[9,11,["H3605"]],[11,13,["H3824"]],[13,14,["H3588"]],[14,15,["H7200","(H853)"]],[15,16,["H834"]],[16,21,["H1431"]],[21,22,["H5973"]],[22,23,[]]]},{"k":7485,"v":[[0,2,["H518"]],[2,7,["H7489","H7489"]],[7,11,["H5595"]],[11,12,["H1571"]],[12,13,["H859"]],[13,14,["H1571"]],[14,16,["H4428"]]]},{"k":7486,"v":[[0,1,["H7586"]],[1,2,["H4427"]],[2,3,["H1121"]],[3,4,["H8141"]],[4,9,["H4427"]],[9,10,["H8147"]],[10,11,["H8141"]],[11,12,["H5921"]],[12,13,["H3478"]]]},{"k":7487,"v":[[0,1,["H7586"]],[1,2,["H977"]],[2,4,["H7969"]],[4,5,["H505"]],[5,8,["H4480","H3478"]],[8,11,["H505"]],[11,12,["H1961"]],[12,13,["H5973"]],[13,14,["H7586"]],[14,16,["H4363"]],[16,19,["H2022"]],[19,20,["H1008"]],[20,23,["H505"]],[23,24,["H1961"]],[24,25,["H5973"]],[25,26,["H3083"]],[26,28,["H1390"]],[28,30,["H1144"]],[30,33,["H3499"]],[33,36,["H5971"]],[36,38,["H7971"]],[38,40,["H376"]],[40,43,["H168"]]]},{"k":7488,"v":[[0,2,["H3083"]],[2,3,["H5221","(H853)"]],[3,5,["H5333"]],[5,8,["H6430"]],[8,9,["H834"]],[9,12,["H1387"]],[12,15,["H6430"]],[15,16,["H8085"]],[16,20,["H7586"]],[20,21,["H8628"]],[21,23,["H7782"]],[23,25,["H3605"]],[25,27,["H776"]],[27,28,["H559"]],[28,31,["H5680"]],[31,32,["H8085"]]]},{"k":7489,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,4,["H8085"]],[4,5,["H559"]],[5,7,["H7586"]],[7,9,["H5221","(H853)"]],[9,11,["H5333"]],[11,14,["H6430"]],[14,17,["H3478"]],[17,18,["H1571"]],[18,22,["H887"]],[22,25,["H6430"]],[25,28,["H5971"]],[28,31,["H6817"]],[31,32,["H310"]],[32,33,["H7586"]],[33,35,["H1537"]]]},{"k":7490,"v":[[0,3,["H6430"]],[3,6,["H622"]],[6,8,["H3898"]],[8,9,["H5973"]],[9,10,["H3478"]],[10,11,["H7970"]],[11,12,["H505"]],[12,13,["H7393"]],[13,15,["H8337"]],[15,16,["H505"]],[16,17,["H6571"]],[17,19,["H5971"]],[19,22,["H2344"]],[22,23,["H834"]],[23,25,["H5921"]],[25,27,["H3220"]],[27,28,["H8193"]],[28,30,["H7230"]],[30,34,["H5927"]],[34,36,["H2583"]],[36,38,["H4363"]],[38,39,["H6926"]],[39,41,["H1007"]]]},{"k":7491,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,6,["H7200"]],[6,7,["H3588"]],[7,12,["H6887"]],[12,13,["H3588"]],[13,15,["H5971"]],[15,17,["H5065"]],[17,20,["H5971"]],[20,23,["H2244"]],[23,25,["H4631"]],[25,28,["H2337"]],[28,31,["H5553"]],[31,35,["H6877"]],[35,38,["H953"]]]},{"k":7492,"v":[[0,5,["H5680"]],[5,7,["H5674","(H853)"]],[7,8,["H3383"]],[8,11,["H776"]],[11,13,["H1410"]],[13,15,["H1568"]],[15,18,["H7586"]],[18,21,["H5750"]],[21,23,["H1537"]],[23,25,["H3605"]],[25,27,["H5971"]],[27,28,["H310"]],[28,30,["H2729"]]]},{"k":7493,"v":[[0,3,["H3176"]],[3,4,["H7651"]],[4,5,["H3117"]],[5,10,["H4150"]],[10,11,["H834"]],[11,12,["H8050"]],[12,16,["H8050"]],[16,17,["H935"]],[17,18,["H3808"]],[18,20,["H1537"]],[20,23,["H5971"]],[23,25,["H6327"]],[25,26,["H4480","H5921"]],[26,27,[]]]},{"k":7494,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,5,["H5066"]],[5,8,["H5930"]],[8,9,["H413"]],[9,13,["H8002"]],[13,16,["H5927"]],[16,19,["H5930"]]]},{"k":7495,"v":[[0,5,["H1961"]],[5,14,["H3615"]],[14,16,["H5927"]],[16,19,["H5930"]],[19,20,["H2009"]],[20,21,["H8050"]],[21,22,["H935"]],[22,24,["H7586"]],[24,26,["H3318"]],[26,28,["H7125"]],[28,33,["H1288"]],[33,34,[]]]},{"k":7496,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H4100"]],[4,7,["H6213"]],[7,9,["H7586"]],[9,10,["H559"]],[10,11,["H3588"]],[11,13,["H7200"]],[13,14,["H3588"]],[14,16,["H5971"]],[16,18,["H5310"]],[18,19,["H4480","H5921"]],[19,23,["H859"]],[23,24,["H935"]],[24,25,["H3808"]],[25,28,["H3117"]],[28,29,["H4150"]],[29,33,["H6430"]],[33,36,["H622"]],[36,38,["H4363"]]]},{"k":7497,"v":[[0,2,["H559"]],[2,5,["H6430"]],[5,8,["H3381"]],[8,9,["H6258"]],[9,10,["H413"]],[10,13,["H1537"]],[13,17,["H3808"]],[17,19,["H2470"]],[19,20,["H6440"]],[20,22,["H3068"]],[22,25,["H662"]],[25,28,["H5927"]],[28,31,["H5930"]]]},{"k":7498,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7586"]],[5,9,["H5528"]],[9,12,["H3808"]],[12,13,["H8104","(H853)"]],[13,15,["H4687"]],[15,18,["H3068"]],[18,20,["H430"]],[20,21,["H834"]],[21,23,["H6680"]],[23,25,["H3588"]],[25,26,["H6258"]],[26,29,["H3068"]],[29,31,["H3559","(H853)"]],[31,33,["H4467"]],[33,34,["H413"]],[34,35,["H3478"]],[35,37,["H5704","H5769"]]]},{"k":7499,"v":[[0,2,["H6258"]],[2,4,["H4467"]],[4,6,["H3808"]],[6,7,["H6965"]],[7,9,["H3068"]],[9,11,["H1245"]],[11,14,["H376"]],[14,18,["H3824"]],[18,21,["H3068"]],[21,23,["H6680"]],[23,27,["H5057"]],[27,28,["H5921"]],[28,30,["H5971"]],[30,31,["H3588"]],[31,34,["H3808"]],[34,35,["H8104"]],[35,36,["(H853)"]],[36,37,["H834"]],[37,39,["H3068"]],[39,40,["H6680"]],[40,41,[]]]},{"k":7500,"v":[[0,2,["H8050"]],[2,3,["H6965"]],[3,7,["H5927"]],[7,8,["H4480"]],[8,9,["H1537"]],[9,11,["H1390"]],[11,13,["H1144"]],[13,15,["H7586"]],[15,16,["H6485","(H853)"]],[16,18,["H5971"]],[18,21,["H4672"]],[21,22,["H5973"]],[22,25,["H8337"]],[25,26,["H3967"]],[26,27,["H376"]]]},{"k":7501,"v":[[0,2,["H7586"]],[2,4,["H3083"]],[4,6,["H1121"]],[6,9,["H5971"]],[9,12,["H4672"]],[12,13,["H5973"]],[13,15,["H3427"]],[15,17,["H1387"]],[17,19,["H1144"]],[19,22,["H6430"]],[22,23,["H2583"]],[23,25,["H4363"]]]},{"k":7502,"v":[[0,3,["H7843"]],[3,5,["H3318"]],[5,8,["H4480","H4264"]],[8,11,["H6430"]],[11,13,["H7969"]],[13,14,["H7218"]],[14,15,["H259"]],[15,16,["H7218"]],[16,17,["H6437"]],[17,18,["H413"]],[18,20,["H1870"]],[20,24,["H6084"]],[24,25,["H413"]],[25,27,["H776"]],[27,29,["H7777"]]]},{"k":7503,"v":[[0,2,["H259"]],[2,3,["H7218"]],[3,4,["H6437"]],[4,6,["H1870"]],[6,8,["H1032"]],[8,10,["H259"]],[10,11,["H7218"]],[11,12,["H6437"]],[12,15,["H1870"]],[15,18,["H1366"]],[18,20,["H8259"]],[20,21,["H5921"]],[21,23,["H1516"]],[23,25,["H6650"]],[25,28,["H4057"]]]},{"k":7504,"v":[[0,4,["H3808"]],[4,5,["H2796"]],[5,6,["H4672"]],[6,8,["H3605"]],[8,10,["H776"]],[10,12,["H3478"]],[12,13,["H3588"]],[13,15,["H6430"]],[15,16,["H559"]],[16,17,["H6435"]],[17,19,["H5680"]],[19,20,["H6213"]],[20,22,["H2719"]],[22,23,["H176"]],[23,24,["H2595"]]]},{"k":7505,"v":[[0,2,["H3605"]],[2,4,["H3478"]],[4,6,["H3381"]],[6,9,["H6430"]],[9,11,["H3913"]],[11,13,["H376","(H853)"]],[13,15,["H4282"]],[15,18,["H855"]],[18,21,["H7134"]],[21,24,["H4281"]]]},{"k":7506,"v":[[0,3,["H1961"]],[3,5,["H6477","H6310"]],[5,8,["H4281"]],[8,12,["H855"]],[12,16,["H7969","H7053"]],[16,20,["H7134"]],[20,23,["H5324"]],[23,25,["H1861"]]]},{"k":7507,"v":[[0,5,["H1961"]],[5,8,["H3117"]],[8,10,["H4421"]],[10,14,["H3808"]],[14,15,["H2719"]],[15,17,["H2595"]],[17,18,["H4672"]],[18,21,["H3027"]],[21,23,["H3605"]],[23,26,["H5971"]],[26,27,["H834"]],[27,29,["H854"]],[29,30,["H7586"]],[30,32,["H3083"]],[32,35,["H7586"]],[35,38,["H3083"]],[38,40,["H1121"]],[40,43,["H4672"]]]},{"k":7508,"v":[[0,3,["H4673"]],[3,6,["H6430"]],[6,8,["H3318"]],[8,9,["H413"]],[9,11,["H4569"]],[11,13,["H4363"]]]},{"k":7509,"v":[[0,5,["H1961"]],[5,8,["H3117"]],[8,10,["H3083"]],[10,12,["H1121"]],[12,14,["H7586"]],[14,15,["H559"]],[15,16,["H413"]],[16,19,["H5288"]],[19,21,["H5375"]],[21,23,["H3627"]],[23,24,["H1980"]],[24,29,["H5674"]],[29,30,["H413"]],[30,32,["H6430"]],[32,33,["H4673"]],[33,34,["H834"]],[34,39,["H4480","H5676","H1975"]],[39,42,["H5046"]],[42,43,["H3808"]],[43,45,["H1"]]]},{"k":7510,"v":[[0,2,["H7586"]],[2,3,["H3427"]],[3,7,["H7097"]],[7,9,["H1390"]],[9,10,["H8478"]],[10,13,["H7416"]],[13,14,["H834"]],[14,17,["H4051"]],[17,20,["H5971"]],[20,21,["H834"]],[21,23,["H5973"]],[23,27,["H8337"]],[27,28,["H3967"]],[28,29,["H376"]]]},{"k":7511,"v":[[0,2,["H281"]],[2,4,["H1121"]],[4,6,["H285"]],[6,7,["H350"]],[7,8,["H251"]],[8,10,["H1121"]],[10,12,["H6372"]],[12,14,["H1121"]],[14,16,["H5941"]],[16,18,["H3068"]],[18,19,["H3548"]],[19,21,["H7887"]],[21,22,["H5375"]],[22,24,["H646"]],[24,27,["H5971"]],[27,28,["H3045"]],[28,29,["H3808"]],[29,30,["H3588"]],[30,31,["H3083"]],[31,33,["H1980"]]]},{"k":7512,"v":[[0,2,["H996"]],[2,4,["H4569"]],[4,6,["H834"]],[6,7,["H3083"]],[7,8,["H1245"]],[8,11,["H5674"]],[11,12,["H5921"]],[12,14,["H6430"]],[14,15,["H4673"]],[15,19,["H8127"]],[19,20,["H5553"]],[20,23,["H4480","H2088"]],[23,24,["H4480","H5676"]],[24,27,["H8127"]],[27,28,["H5553"]],[28,31,["H4480","H2088"]],[31,32,["H4480","H5676"]],[32,35,["H8034"]],[35,38,["H259"]],[38,40,["H949"]],[40,43,["H8034"]],[43,46,["H259"]],[46,47,["H5573"]]]},{"k":7513,"v":[[0,2,["H8127"]],[2,5,["H259"]],[5,7,["H4690"]],[7,8,["H4480","H6828"]],[8,10,["H4136"]],[10,11,["H4363"]],[11,14,["H259"]],[14,15,["H4480","H5045"]],[15,17,["H4136"]],[17,18,["H1387"]]]},{"k":7514,"v":[[0,2,["H3083"]],[2,3,["H559"]],[3,4,["H413"]],[4,7,["H5288"]],[7,9,["H5375"]],[9,11,["H3627"]],[11,12,["H1980"]],[12,17,["H5674"]],[17,18,["H413"]],[18,20,["H4673"]],[20,22,["H428"]],[22,23,["H6189"]],[23,27,["H194"]],[27,29,["H3068"]],[29,31,["H6213"]],[31,34,["H3588"]],[34,37,["H369"]],[37,38,["H4622"]],[38,41,["H3068"]],[41,43,["H3467"]],[43,45,["H7227"]],[45,46,["H176"]],[46,48,["H4592"]]]},{"k":7515,"v":[[0,3,["H3627","H5375"]],[3,4,["H559"]],[4,7,["H6213"]],[7,8,["H3605"]],[8,9,["H834"]],[9,13,["H3824"]],[13,14,["H5186"]],[14,16,["H2009"]],[16,19,["H5973"]],[19,24,["H3824"]]]},{"k":7516,"v":[[0,2,["H559"]],[2,3,["H3083"]],[3,4,["H2009"]],[4,5,["H587"]],[5,8,["H5674"]],[8,9,["H413"]],[9,11,["H376"]],[11,16,["H1540"]],[16,17,["H413"]],[17,18,[]]]},{"k":7517,"v":[[0,1,["H518"]],[1,3,["H559"]],[3,4,["H3541"]],[4,5,["H413"]],[5,7,["H1826"]],[7,8,["H5704"]],[8,10,["H5060"]],[10,11,["H413"]],[11,17,["H5975"]],[17,20,["H8478"]],[20,23,["H3808"]],[23,25,["H5927"]],[25,26,["H413"]],[26,27,[]]]},{"k":7518,"v":[[0,2,["H518"]],[2,4,["H559"]],[4,5,["H3541"]],[5,7,["H5927"]],[7,8,["H5921"]],[8,14,["H5927"]],[14,15,["H3588"]],[15,17,["H3068"]],[17,19,["H5414"]],[19,23,["H3027"]],[23,25,["H2088"]],[25,29,["H226"]],[29,31,[]]]},{"k":7519,"v":[[0,2,["H8147"]],[2,6,["H1540"]],[6,7,["H413"]],[7,9,["H4673"]],[9,12,["H6430"]],[12,15,["H6430"]],[15,16,["H559"]],[16,17,["H2009"]],[17,19,["H5680"]],[19,21,["H3318"]],[21,23,["H4480"]],[23,25,["H2356"]],[25,26,["H834","H8033"]],[26,30,["H2244"]]]},{"k":7520,"v":[[0,3,["H376"]],[3,6,["H4675"]],[6,7,["H6030","(H853)"]],[7,8,["H3083"]],[8,11,["H3627","H5375"]],[11,13,["H559"]],[13,15,["H5927"]],[15,16,["H413"]],[16,21,["H3045"]],[21,24,["H1697"]],[24,26,["H3083"]],[26,27,["H559"]],[27,28,["H413"]],[28,30,["H3627","H5375"]],[30,32,["H5927"]],[32,33,["H310"]],[33,35,["H3588"]],[35,37,["H3068"]],[37,39,["H5414"]],[39,43,["H3027"]],[43,45,["H3478"]]]},{"k":7521,"v":[[0,2,["H3083"]],[2,4,["H5927"]],[4,5,["H5921"]],[5,7,["H3027"]],[7,9,["H5921"]],[9,11,["H7272"]],[11,14,["H3627","H5375"]],[14,15,["H310"]],[15,19,["H5307"]],[19,20,["H6440"]],[20,21,["H3083"]],[21,24,["H3627","H5375"]],[24,25,["H4191"]],[25,26,["H310"]],[26,27,[]]]},{"k":7522,"v":[[0,3,["H7223"]],[3,4,["H4347"]],[4,5,["H834"]],[5,6,["H3083"]],[6,9,["H3627","H5375"]],[9,10,["H5221"]],[10,11,["H1961"]],[11,13,["H6242"]],[13,14,["H376"]],[14,20,["H2677"]],[20,21,["H4618"]],[21,23,["H7704"]],[23,26,["H6776"]],[26,30,[]]]},{"k":7523,"v":[[0,3,["H1961"]],[3,4,["H2731"]],[4,7,["H4264"]],[7,10,["H7704"]],[10,13,["H3605"]],[13,15,["H5971"]],[15,17,["H4673"]],[17,20,["H7843"]],[20,21,["H1992"]],[21,22,["H1571"]],[22,23,["H2729"]],[23,26,["H776"]],[26,27,["H7264"]],[27,30,["H1961"]],[30,33,["H430"]],[33,34,["H2731"]]]},{"k":7524,"v":[[0,3,["H6822"]],[3,5,["H7586"]],[5,7,["H1390"]],[7,9,["H1144"]],[9,10,["H7200"]],[10,12,["H2009"]],[12,14,["H1995"]],[14,16,["H4127"]],[16,19,["H1980"]],[19,22,["H1986"]],[22,24,[]]]},{"k":7525,"v":[[0,2,["H559"]],[2,3,["H7586"]],[3,6,["H5971"]],[6,7,["H834"]],[7,9,["H854"]],[9,11,["H6485"]],[11,12,["H4994"]],[12,14,["H7200"]],[14,15,["H4310"]],[15,17,["H1980"]],[17,18,["H4480","H5973"]],[18,24,["H6485"]],[24,25,["H2009"]],[25,26,["H3083"]],[26,29,["H3627","H5375"]],[29,31,["H369"]],[31,32,[]]]},{"k":7526,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,5,["H281"]],[5,7,["H5066"]],[7,9,["H727"]],[9,11,["H430"]],[11,12,["H3588"]],[12,14,["H727"]],[14,16,["H430"]],[16,17,["H1961"]],[17,19,["H1931"]],[19,20,["H3117"]],[20,23,["H1121"]],[23,25,["H3478"]]]},{"k":7527,"v":[[0,5,["H1961"]],[5,6,["H5704"]],[6,7,["H7586"]],[7,8,["H1696"]],[8,9,["H413"]],[9,11,["H3548"]],[11,14,["H1995"]],[14,15,["H834"]],[15,19,["H4264"]],[19,22,["H6430"]],[22,24,["H1980"]],[24,26,["H1980","H7227"]],[26,28,["H7586"]],[28,29,["H559"]],[29,30,["H413"]],[30,32,["H3548"]],[32,33,["H622"]],[33,35,["H3027"]]]},{"k":7528,"v":[[0,2,["H7586"]],[2,4,["H3605"]],[4,6,["H5971"]],[6,7,["H834"]],[7,9,["H854"]],[9,12,["H2199"]],[12,15,["H935"]],[15,16,["H5704"]],[16,18,["H4421"]],[18,20,["H2009"]],[20,22,["H376"]],[22,23,["H2719"]],[23,24,["H1961"]],[24,27,["H7453"]],[27,32,["H3966"]],[32,33,["H1419"]],[33,34,["H4103"]]]},{"k":7529,"v":[[0,3,["H5680"]],[3,5,["H1961"]],[5,8,["H6430"]],[8,9,["H865"]],[9,11,["H8032"]],[11,12,["H834"]],[12,14,["H5927"]],[14,15,["H5973"]],[15,19,["H4264"]],[19,24,["H5439"]],[24,26,["H1992"]],[26,27,["H1571"]],[27,30,["H1961"]],[30,31,["H5973"]],[31,33,["H3478"]],[33,34,["H834"]],[34,36,["H5973"]],[36,37,["H7586"]],[37,39,["H3083"]]]},{"k":7530,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,6,["H3478"]],[6,10,["H2244"]],[10,12,["H2022"]],[12,13,["H669"]],[13,16,["H8085"]],[16,17,["H3588"]],[17,19,["H6430"]],[19,20,["H5127"]],[20,22,["H1992"]],[22,23,["H1571"]],[23,25,["H1692"]],[25,26,["H310"]],[26,30,["H4421"]]]},{"k":7531,"v":[[0,3,["H3068"]],[3,4,["H3467","(H853)"]],[4,5,["H3478"]],[5,6,["H1931"]],[6,7,["H3117"]],[7,10,["H4421"]],[10,12,["H5674"]],[12,13,["(H853)"]],[13,14,["H1007"]]]},{"k":7532,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,7,["H5065"]],[7,8,["H1931"]],[8,9,["H3117"]],[9,11,["H7586"]],[11,13,["H422","(H853)"]],[13,15,["H5971"]],[15,16,["H559"]],[16,17,["H779"]],[17,20,["H376"]],[20,21,["H834"]],[21,22,["H398"]],[22,24,["H3899"]],[24,25,["H5704"]],[25,26,["H6153"]],[26,31,["H5358"]],[31,34,["H4480","H341"]],[34,36,["H3808","H3605"]],[36,39,["H5971"]],[39,40,["H2938"]],[40,42,["H3899"]]]},{"k":7533,"v":[[0,2,["H3605"]],[2,6,["H776"]],[6,7,["H935"]],[7,10,["H3293"]],[10,13,["H1961"]],[13,14,["H1706"]],[14,15,["H5921","H6440"]],[15,17,["H7704"]]]},{"k":7534,"v":[[0,4,["H5971"]],[4,6,["H935"]],[6,7,["H413"]],[7,9,["H3293"]],[9,10,["H2009"]],[10,12,["H1706"]],[12,13,["H1982"]],[13,15,["H369"]],[15,17,["H5381"]],[17,19,["H3027"]],[19,20,["H413"]],[20,22,["H6310"]],[22,23,["H3588"]],[23,25,["H5971"]],[25,26,["H3372","(H853)"]],[26,28,["H7621"]]]},{"k":7535,"v":[[0,2,["H3083"]],[2,3,["H8085"]],[3,4,["H3808"]],[4,7,["H1"]],[7,13,["H7650","(H853)","H5971"]],[13,17,["H7971","(H853)"]],[17,19,["H7097"]],[19,22,["H4294"]],[22,23,["H834"]],[23,27,["H3027"]],[27,29,["H2881"]],[29,30,["(H853)"]],[30,33,["H3295","H1706"]],[33,35,["H7725"]],[35,37,["H3027"]],[37,38,["H413"]],[38,40,["H6310"]],[40,43,["H5869"]],[43,45,["H215"]]]},{"k":7536,"v":[[0,2,["H6030"]],[2,3,["H376"]],[3,6,["H4480","H5971"]],[6,8,["H559"]],[8,10,["H1"]],[10,17,["H7650","H7650","(H853)","H5971"]],[17,18,["H559"]],[18,19,["H779"]],[19,22,["H376"]],[22,23,["H834"]],[23,24,["H398"]],[24,26,["H3899"]],[26,28,["H3117"]],[28,31,["H5971"]],[31,33,["H5888"]]]},{"k":7537,"v":[[0,2,["H559"]],[2,3,["H3083"]],[3,5,["H1"]],[5,7,["H5916","(H853)"]],[7,9,["H776"]],[9,10,["H7200"]],[10,13,["H4994"]],[13,14,["H3588"]],[14,16,["H5869"]],[16,19,["H215"]],[19,20,["H3588"]],[20,22,["H2938"]],[22,24,["H4592"]],[24,26,["H2088"]],[26,27,["H1706"]]]},{"k":7538,"v":[[0,3,["H637","H3588"]],[3,5,["H3588","H3863"]],[5,7,["H5971"]],[7,10,["H398","H398"]],[10,12,["H3117"]],[12,15,["H4480","H7998"]],[15,18,["H341"]],[18,19,["H834"]],[19,21,["H4672"]],[21,22,["H3588"]],[22,25,["H3808"]],[25,27,["H6258"]],[27,30,["H7235"]],[30,31,["H4347"]],[31,34,["H6430"]]]},{"k":7539,"v":[[0,3,["H5221"]],[3,5,["H6430"]],[5,6,["H1931"]],[6,7,["H3117"]],[7,9,["H4480","H4363"]],[9,11,["H357"]],[11,14,["H5971"]],[14,16,["H3966"]],[16,17,["H5888"]]]},{"k":7540,"v":[[0,3,["H5971"]],[3,4,["H6213"]],[4,5,["H413"]],[5,7,["H7998"]],[7,9,["H3947"]],[9,10,["H6629"]],[10,12,["H1241"]],[12,14,["H1121","H1241"]],[14,16,["H7819"]],[16,20,["H776"]],[20,23,["H5971"]],[23,25,["H398"]],[25,27,["H5921"]],[27,29,["H1818"]]]},{"k":7541,"v":[[0,3,["H5046"]],[3,4,["H7586"]],[4,5,["H559"]],[5,6,["H2009"]],[6,8,["H5971"]],[8,9,["H2398"]],[9,12,["H3068"]],[12,16,["H398"]],[16,17,["H5921"]],[17,19,["H1818"]],[19,22,["H559"]],[22,25,["H898"]],[25,26,["H1556"]],[26,28,["H1419"]],[28,29,["H68"]],[29,30,["H413"]],[30,33,["H3117"]]]},{"k":7542,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,5,["H6327"]],[5,8,["H5971"]],[8,10,["H559"]],[10,15,["H5066","H413"]],[15,17,["H376"]],[17,19,["H7794"]],[19,22,["H376"]],[22,24,["H7716"]],[24,26,["H7819"]],[26,28,["H2088"]],[28,30,["H398"]],[30,32,["H2398"]],[32,33,["H3808"]],[33,36,["H3068"]],[36,38,["H398"]],[38,39,["H413"]],[39,41,["H1818"]],[41,43,["H3605"]],[43,45,["H5971"]],[45,46,["H5066"]],[46,48,["H376"]],[48,50,["H7794"]],[50,51,["H3027"]],[51,54,["H3915"]],[54,56,["H7819"]],[56,58,["H8033"]]]},{"k":7543,"v":[[0,2,["H7586"]],[2,3,["H1129"]],[3,5,["H4196"]],[5,8,["H3068"]],[8,13,["H2490"]],[13,14,["H4196"]],[14,17,["H1129"]],[17,20,["H3068"]]]},{"k":7544,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,7,["H3381"]],[7,8,["H310"]],[8,10,["H6430"]],[10,12,["H3915"]],[12,14,["H962"]],[14,16,["H5704"]],[16,18,["H1242"]],[18,19,["H216"]],[19,23,["H3808"]],[23,24,["H7604"]],[24,26,["H376"]],[26,31,["H559"]],[31,32,["H6213"]],[32,33,["H3605"]],[33,34,["H5869"]],[34,35,["H2896"]],[35,39,["H559"]],[39,41,["H3548"]],[41,45,["H7126"]],[45,46,["H1988"]],[46,47,["H413"]],[47,48,["H430"]]]},{"k":7545,"v":[[0,2,["H7586"]],[2,4,["H7592"]],[4,6,["H430"]],[6,10,["H3381"]],[10,11,["H310"]],[11,13,["H6430"]],[13,16,["H5414"]],[16,20,["H3027"]],[20,22,["H3478"]],[22,25,["H6030"]],[25,27,["H3808"]],[27,28,["H1931"]],[28,29,["H3117"]]]},{"k":7546,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,6,["H5066"]],[6,7,["H1988"]],[7,8,["H3605"]],[8,10,["H6438"]],[10,13,["H5971"]],[13,15,["H3045"]],[15,17,["H7200"]],[17,18,["H4100"]],[18,20,["H2403"]],[20,22,["H1961"]],[22,23,["H2063"]],[23,24,["H3117"]]]},{"k":7547,"v":[[0,1,["H3588"]],[1,4,["H3068"]],[4,5,["H2416"]],[5,7,["H3467","(H853)"]],[7,8,["H3478"]],[8,9,["H3588","H518"]],[9,11,["H3426"]],[11,13,["H3083"]],[13,15,["H1121"]],[15,19,["H4191","H4191"]],[19,25,["H369"]],[25,27,["H4480","H3605"]],[27,29,["H5971"]],[29,31,["H6030"]],[31,32,[]]]},{"k":7548,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,5,["H3605"]],[5,6,["H3478"]],[6,7,["H1961"]],[7,8,["H859"]],[8,10,["H259"]],[10,11,["H5676"]],[11,13,["H589"]],[13,15,["H3083"]],[15,17,["H1121"]],[17,19,["H1961"]],[19,22,["H259"]],[22,23,["H5676"]],[23,26,["H5971"]],[26,27,["H559"]],[27,28,["H413"]],[28,29,["H7586"]],[29,30,["H6213"]],[30,32,["H5869"]],[32,33,["H2896"]],[33,35,[]]]},{"k":7549,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3068"]],[6,7,["H430"]],[7,9,["H3478"]],[9,10,["H3051"]],[10,12,["H8549"]],[12,15,["H7586"]],[15,17,["H3083"]],[17,19,["H3920"]],[19,22,["H5971"]],[22,23,["H3318"]]]},{"k":7550,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H5307"]],[4,6,["H996"]],[6,9,["H3083"]],[9,11,["H1121"]],[11,13,["H3083"]],[13,15,["H3920"]]]},{"k":7551,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3083"]],[5,6,["H5046"]],[6,8,["H4100"]],[8,11,["H6213"]],[11,13,["H3083"]],[13,14,["H5046"]],[14,17,["H559"]],[17,21,["H2938","H2938"]],[21,23,["H4592"]],[23,24,["H1706"]],[24,27,["H7097"]],[27,30,["H4294"]],[30,31,["H834"]],[31,35,["H3027"]],[35,37,["H2009"]],[37,40,["H4191"]]]},{"k":7552,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H430"]],[4,5,["H6213"]],[5,6,["H3541"]],[6,8,["H3254"]],[8,9,["H3541"]],[9,10,["H3588"]],[10,14,["H4191","H4191"]],[14,15,["H3083"]]]},{"k":7553,"v":[[0,3,["H5971"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H7586"]],[6,8,["H3083"]],[8,9,["H4191"]],[9,10,["H834"]],[10,12,["H6213"]],[12,13,["H2063"]],[13,14,["H1419"]],[14,15,["H3444"]],[15,17,["H3478"]],[17,19,["H2486"]],[19,22,["H3068"]],[22,23,["H2416"]],[23,26,["H518"]],[26,28,["H4480","H8185"]],[28,31,["H7218"]],[31,32,["H5307"]],[32,35,["H776"]],[35,36,["H3588"]],[36,39,["H6213"]],[39,40,["H5973"]],[40,41,["H430"]],[41,42,["H2088"]],[42,43,["H3117"]],[43,46,["H5971"]],[46,47,["H6299","(H853)"]],[47,48,["H3083"]],[48,51,["H4191"]],[51,52,["H3808"]]]},{"k":7554,"v":[[0,2,["H7586"]],[2,4,["H5927"]],[4,6,["H4480","H310"]],[6,8,["H6430"]],[8,11,["H6430"]],[11,12,["H1980"]],[12,16,["H4725"]]]},{"k":7555,"v":[[0,2,["H7586"]],[2,3,["H3920"]],[3,5,["H4410"]],[5,6,["H5921"]],[6,7,["H3478"]],[7,9,["H3898"]],[9,11,["H3605"]],[11,13,["H341"]],[13,16,["H5439"]],[16,18,["H4124"]],[18,22,["H1121"]],[22,24,["H5983"]],[24,27,["H123"]],[27,31,["H4428"]],[31,33,["H6678"]],[33,37,["H6430"]],[37,39,["H3605","H834"]],[39,41,["H6437"]],[41,44,["H7561"]],[44,45,[]]]},{"k":7556,"v":[[0,3,["H6213"]],[3,5,["H2428"]],[5,7,["H5221","(H853)"]],[7,9,["H6002"]],[9,11,["H5337","(H853)"]],[11,12,["H3478"]],[12,16,["H4480","H3027"]],[16,20,["H8154"]],[20,21,[]]]},{"k":7557,"v":[[0,3,["H1121"]],[3,5,["H7586"]],[5,6,["H1961"]],[6,7,["H3083"]],[7,9,["H3440"]],[9,11,["H4444"]],[11,14,["H8034"]],[14,17,["H8147"]],[17,18,["H1323"]],[18,22,["H8034"]],[22,25,["H1067"]],[25,26,["H4764"]],[26,29,["H8034"]],[29,32,["H6996"]],[32,33,["H4324"]]]},{"k":7558,"v":[[0,3,["H8034"]],[3,5,["H7586"]],[5,6,["H802"]],[6,8,["H293"]],[8,10,["H1323"]],[10,12,["H290"]],[12,15,["H8034"]],[15,18,["H8269"]],[18,21,["H6635"]],[21,23,["H74"]],[23,25,["H1121"]],[25,27,["H5369"]],[27,28,["H7586"]],[28,29,["H1730"]]]},{"k":7559,"v":[[0,2,["H7027"]],[2,5,["H1"]],[5,7,["H7586"]],[7,9,["H5369"]],[9,11,["H1"]],[11,13,["H74"]],[13,16,["H1121"]],[16,18,["H22"]]]},{"k":7560,"v":[[0,3,["H1961"]],[3,4,["H2389"]],[4,5,["H4421"]],[5,6,["H5921"]],[6,8,["H6430"]],[8,9,["H3605"]],[9,11,["H3117"]],[11,13,["H7586"]],[13,16,["H7586"]],[16,17,["H7200"]],[17,18,["H3605"]],[18,19,["H1368"]],[19,20,["H376"]],[20,22,["H3605"]],[22,23,["H2428"]],[23,24,["H1121"]],[24,26,["H622"]],[26,28,["H413"]],[28,29,[]]]},{"k":7561,"v":[[0,1,["H8050"]],[1,3,["H559"]],[3,4,["H413"]],[4,5,["H7586"]],[5,7,["H3068"]],[7,8,["H7971"]],[8,11,["H4886"]],[11,15,["H4428"]],[15,16,["H5921"]],[16,18,["H5971"]],[18,19,["H5921"]],[19,20,["H3478"]],[20,21,["H6258"]],[21,23,["H8085"]],[23,27,["H6963"]],[27,30,["H1697"]],[30,33,["H3068"]]]},{"k":7562,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H6485"]],[8,9,["(H853)"]],[9,10,["H834"]],[10,11,["H6002"]],[11,12,["H6213"]],[12,14,["H3478"]],[14,15,["H834"]],[15,17,["H7760"]],[17,23,["H1870"]],[23,27,["H5927"]],[27,29,["H4480","H4714"]]]},{"k":7563,"v":[[0,1,["H6258"]],[1,2,["H1980"]],[2,4,["H5221","(H853)"]],[4,5,["H6002"]],[5,8,["H2763","(H853)"]],[8,9,["H3605"]],[9,10,["H834"]],[10,14,["H2550","H5921"]],[14,16,["H3808"]],[16,18,["H4191"]],[18,20,["H4480","H376"]],[20,21,["H5704"]],[21,22,["H802"]],[22,23,["(H4480)","H5768"]],[23,25,["H3243"]],[25,26,["(H4480)","H7794"]],[26,28,["H7716"]],[28,29,["(H4480)","H1581"]],[29,31,["H2543"]]]},{"k":7564,"v":[[0,2,["H7586"]],[2,6,["H8085","(H853)","H5971"]],[6,8,["H6485"]],[8,11,["H2923"]],[11,13,["H3967"]],[13,14,["H505"]],[14,15,["H7273"]],[15,17,["H6235"]],[17,18,["H505","(H853)"]],[18,19,["H376"]],[19,21,["H3063"]]]},{"k":7565,"v":[[0,2,["H7586"]],[2,3,["H935"]],[3,4,["H5704"]],[4,6,["H5892"]],[6,8,["H6002"]],[8,11,["H693"]],[11,14,["H5158"]]]},{"k":7566,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H7017"]],[6,7,["H1980"]],[7,8,["H5493"]],[8,11,["H3381"]],[11,13,["H4480","H8432"]],[13,15,["H6002"]],[15,16,["H6435"]],[16,18,["H622"]],[18,20,["H5973"]],[20,23,["H859"]],[23,24,["H6213"]],[24,25,["H2617"]],[25,26,["H5973"]],[26,27,["H3605"]],[27,29,["H1121"]],[29,31,["H3478"]],[31,35,["H5927"]],[35,38,["H4480","H4714"]],[38,41,["H7017"]],[41,42,["H5493"]],[42,44,["H4480","H8432"]],[44,46,["H6003"]]]},{"k":7567,"v":[[0,2,["H7586"]],[2,3,["H5221","(H853)"]],[3,5,["H6002"]],[5,7,["H4480","H2341"]],[7,10,["H935"]],[10,12,["H7793"]],[12,13,["H834"]],[13,15,["H5921"]],[15,16,["H6440"]],[16,17,["H4714"]]]},{"k":7568,"v":[[0,3,["H8610","(H853)"]],[3,4,["H90"]],[4,6,["H4428"]],[6,9,["H6002"]],[9,10,["H2416"]],[10,13,["H2763"]],[13,14,["H3605"]],[14,16,["H5971"]],[16,19,["H6310"]],[19,22,["H2719"]]]},{"k":7569,"v":[[0,2,["H7586"]],[2,5,["H5971"]],[5,6,["H2550","H5921"]],[6,7,["H90"]],[7,10,["H4315"]],[10,13,["H6629"]],[13,17,["H1241"]],[17,21,["H4932"]],[21,24,["H3733"]],[24,26,["H3605"]],[26,29,["H2896"]],[29,31,["H14"]],[31,32,["H3808"]],[32,34,["H2763"]],[34,37,["H3605"]],[37,38,["H4399"]],[38,41,["H5240"]],[41,43,["H4549"]],[43,47,["H2763"]]]},{"k":7570,"v":[[0,2,["H1961"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H413"]],[8,9,["H8050"]],[9,10,["H559"]]]},{"k":7571,"v":[[0,3,["H5162"]],[3,4,["H3588"]],[4,8,["H4427","(H853)"]],[8,9,["H7586"]],[9,12,["H4428"]],[12,13,["H3588"]],[13,17,["H7725"]],[17,19,["H4480","H310"]],[19,23,["H3808"]],[23,24,["H6965"]],[24,26,["H1697"]],[26,29,["H2734"]],[29,30,["H8050"]],[30,33,["H2199"]],[33,34,["H413"]],[34,36,["H3068"]],[36,37,["H3605"]],[37,38,["H3915"]]]},{"k":7572,"v":[[0,3,["H8050"]],[3,5,["H7925"]],[5,7,["H7125"]],[7,8,["H7586"]],[8,11,["H1242"]],[11,14,["H5046"]],[14,15,["H8050"]],[15,16,["H559"]],[16,17,["H7586"]],[17,18,["H935"]],[18,20,["H3760"]],[20,22,["H2009"]],[22,26,["H5324"]],[26,28,["H3027"]],[28,32,["H5437"]],[32,35,["H5674"]],[35,38,["H3381"]],[38,40,["H1537"]]]},{"k":7573,"v":[[0,2,["H8050"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H7586"]],[5,7,["H7586"]],[7,8,["H559"]],[8,11,["H1288"]],[11,13,["H859"]],[13,16,["H3068"]],[16,19,["H6965","(H853)"]],[19,21,["H1697"]],[21,24,["H3068"]]]},{"k":7574,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H4100"]],[4,7,["H2088"]],[7,8,["H6963"]],[8,11,["H6629"]],[11,14,["H241"]],[14,17,["H6963"]],[17,20,["H1241"]],[20,21,["H834"]],[21,22,["H595"]],[22,23,["H8085"]]]},{"k":7575,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,6,["H935"]],[6,10,["H4480","H6003"]],[10,11,["H834"]],[11,13,["H5971"]],[13,14,["H2550","H5921"]],[14,16,["H4315"]],[16,19,["H6629"]],[19,23,["H1241"]],[23,25,["H4616","H2076"]],[25,28,["H3068"]],[28,30,["H430"]],[30,33,["H3498"]],[33,37,["H2763"]]]},{"k":7576,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7586"]],[5,6,["H7503"]],[6,10,["H5046"]],[10,11,["(H853)"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H1696"]],[16,17,["H413"]],[17,20,["H3915"]],[20,23,["H559"]],[23,27,["H1696"]]]},{"k":7577,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H518"]],[4,5,["H859"]],[5,7,["H6996"]],[7,11,["H5869"]],[11,13,["H859"]],[13,14,["H3808"]],[14,17,["H7218"]],[17,20,["H7626"]],[20,22,["H3478"]],[22,25,["H3068"]],[25,26,["H4886"]],[26,28,["H4428"]],[28,29,["H5921"]],[29,30,["H3478"]]]},{"k":7578,"v":[[0,3,["H3068"]],[3,4,["H7971"]],[4,8,["H1870"]],[8,10,["H559"]],[10,11,["H1980"]],[11,14,["H2763","(H853)"]],[14,16,["H2400","(H853)"]],[16,18,["H6002"]],[18,20,["H3898"]],[20,23,["H5704"]],[23,26,["H3615"]]]},{"k":7579,"v":[[0,1,["H4100"]],[1,5,["H3808"]],[5,6,["H8085"]],[6,8,["H6963"]],[8,11,["H3068"]],[11,14,["H5860"]],[14,15,["H413"]],[15,17,["H7998"]],[17,19,["H6213"]],[19,20,["H7451"]],[20,23,["H5869"]],[23,26,["H3068"]]]},{"k":7580,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H8050"]],[5,6,["H834"]],[6,9,["H8085"]],[9,11,["H6963"]],[11,14,["H3068"]],[14,17,["H1980"]],[17,19,["H1870"]],[19,20,["H834"]],[20,22,["H3068"]],[22,23,["H7971"]],[23,27,["H935","(H853)"]],[27,28,["H90"]],[28,30,["H4428"]],[30,32,["H6002"]],[32,36,["H2763"]],[36,38,["H6002"]]]},{"k":7581,"v":[[0,3,["H5971"]],[3,4,["H3947"]],[4,7,["H4480","H7998"]],[7,8,["H6629"]],[8,10,["H1241"]],[10,12,["H7225"]],[12,21,["H2764"]],[21,23,["H2076"]],[23,26,["H3068"]],[26,28,["H430"]],[28,30,["H1537"]]]},{"k":7582,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,6,["H3068"]],[6,9,["H2656"]],[9,12,["H5930"]],[12,14,["H2077"]],[14,17,["H8085"]],[17,19,["H6963"]],[19,22,["H3068"]],[22,23,["H2009"]],[23,25,["H8085"]],[25,27,["H2896"]],[27,29,["H4480","H2077"]],[29,32,["H7181"]],[32,35,["H4480","H2459"]],[35,37,["H352"]]]},{"k":7583,"v":[[0,1,["H3588"]],[1,2,["H4805"]],[2,6,["H2403"]],[6,8,["H7081"]],[8,10,["H6484"]],[10,13,["H205"]],[13,15,["H8655"]],[15,16,["H3282"]],[16,19,["H3988","(H853)"]],[19,21,["H1697"]],[21,24,["H3068"]],[24,28,["H3988"]],[28,32,["H4480","H4428"]]]},{"k":7584,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H8050"]],[5,8,["H2398"]],[8,9,["H3588"]],[9,12,["H5674","(H853)"]],[12,14,["H6310"]],[14,17,["H3068"]],[17,20,["H1697"]],[20,21,["H3588"]],[21,23,["H3372","(H853)"]],[23,25,["H5971"]],[25,27,["H8085"]],[27,29,["H6963"]]]},{"k":7585,"v":[[0,1,["H6258"]],[1,5,["H4994"]],[5,6,["H5375","(H853)"]],[6,8,["H2403"]],[8,11,["H7725"]],[11,12,["H5973"]],[12,17,["H7812"]],[17,19,["H3068"]]]},{"k":7586,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7586"]],[5,8,["H3808"]],[8,9,["H7725"]],[9,10,["H5973"]],[10,12,["H3588"]],[12,15,["H3988","(H853)"]],[15,17,["H1697"]],[17,20,["H3068"]],[20,23,["H3068"]],[23,25,["H3988"]],[25,28,["H4480","H1961"]],[28,29,["H4428"]],[29,30,["H5921"]],[30,31,["H3478"]]]},{"k":7587,"v":[[0,3,["H8050"]],[3,5,["H5437"]],[5,8,["H1980"]],[8,11,["H2388"]],[11,14,["H3671"]],[14,17,["H4598"]],[17,20,["H7167"]]]},{"k":7588,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,7,["H3068"]],[7,9,["H7167","(H853)"]],[9,11,["H4468"]],[11,13,["H3478"]],[13,14,["H4480","H5921"]],[14,17,["H3117"]],[17,20,["H5414"]],[20,24,["H7453"]],[24,29,["H2896"]],[29,30,["H4480"]],[30,31,[]]]},{"k":7589,"v":[[0,2,["H1571"]],[2,4,["H5331"]],[4,6,["H3478"]],[6,8,["H3808"]],[8,9,["H8266"]],[9,10,["H3808"]],[10,11,["H5162"]],[11,12,["H3588"]],[12,15,["H3808"]],[15,17,["H120"]],[17,19,["H1931"]],[19,21,["H5162"]]]},{"k":7590,"v":[[0,3,["H559"]],[3,6,["H2398"]],[6,8,["H3513"]],[8,10,["H6258"]],[10,13,["H4994"]],[13,14,["H5048"]],[14,16,["H2205"]],[16,19,["H5971"]],[19,21,["H5048"]],[21,22,["H3478"]],[22,25,["H7725"]],[25,26,["H5973"]],[26,31,["H7812"]],[31,33,["H3068"]],[33,35,["H430"]]]},{"k":7591,"v":[[0,2,["H8050"]],[2,4,["H7725"]],[4,5,["H310"]],[5,6,["H7586"]],[6,8,["H7586"]],[8,9,["H7812"]],[9,11,["H3068"]]]},{"k":7592,"v":[[0,2,["H559"]],[2,3,["H8050"]],[3,6,["H5066"]],[6,7,["H413"]],[7,8,["(H853)"]],[8,9,["H90"]],[9,11,["H4428"]],[11,14,["H6002"]],[14,16,["H90"]],[16,17,["H1980"]],[17,18,["H413"]],[18,20,["H4574"]],[20,22,["H90"]],[22,23,["H559"]],[23,24,["H403"]],[24,26,["H4751"]],[26,28,["H4194"]],[28,30,["H5493"]]]},{"k":7593,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H834"]],[4,6,["H2719"]],[6,9,["H802"]],[9,10,["H7921"]],[10,11,["H3651"]],[11,14,["H517"]],[14,16,["H7921"]],[16,18,["H4480","H802"]],[18,20,["H8050"]],[20,24,["H8158","(H853)","H90"]],[24,25,["H6440"]],[25,27,["H3068"]],[27,29,["H1537"]]]},{"k":7594,"v":[[0,2,["H8050"]],[2,3,["H1980"]],[3,5,["H7414"]],[5,7,["H7586"]],[7,9,["H5927"]],[9,10,["H413"]],[10,12,["H1004"]],[12,14,["H1390"]],[14,16,["H7586"]]]},{"k":7595,"v":[[0,2,["H8050"]],[2,4,["H3808"]],[4,5,["H3254"]],[5,7,["H7200","(H853)"]],[7,8,["H7586"]],[8,9,["H5704"]],[9,11,["H3117"]],[11,14,["H4194"]],[14,15,["H3588"]],[15,16,["H8050"]],[16,17,["H56"]],[17,18,["H413"]],[18,19,["H7586"]],[19,22,["H3068"]],[22,23,["H5162"]],[23,24,["H3588"]],[24,29,["H4427","(H853)","H7586"]],[29,30,["H5921"]],[30,31,["H3478"]]]},{"k":7596,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H8050"]],[6,8,["H5704","H4100"]],[8,10,["H859"]],[10,11,["H56"]],[11,12,["H413"]],[12,13,["H7586"]],[13,15,["H589"]],[15,17,["H3988"]],[17,20,["H4480","H4427"]],[20,21,["H5921"]],[21,22,["H3478"]],[22,23,["H4390"]],[23,25,["H7161"]],[25,27,["H8081"]],[27,29,["H1980"]],[29,32,["H7971"]],[32,34,["H413"]],[34,35,["H3448"]],[35,37,["H1022"]],[37,38,["H3588"]],[38,41,["H7200"]],[41,44,["H4428"]],[44,47,["H1121"]]]},{"k":7597,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H349"]],[4,7,["H1980"]],[7,9,["H7586"]],[9,10,["H8085"]],[10,14,["H2026"]],[14,18,["H3068"]],[18,19,["H559"]],[19,20,["H3947"]],[20,22,["H5697","H1241"]],[22,23,["H3027"]],[23,26,["H559"]],[26,29,["H935"]],[29,31,["H2076"]],[31,34,["H3068"]]]},{"k":7598,"v":[[0,2,["H7121"]],[2,3,["H3448"]],[3,6,["H2077"]],[6,8,["H595"]],[8,10,["H3045"]],[10,11,["(H853)"]],[11,12,["H834"]],[12,15,["H6213"]],[15,19,["H4886"]],[19,22,["(H853)"]],[22,23,["H834"]],[23,25,["H559"]],[25,26,["H413"]],[26,27,[]]]},{"k":7599,"v":[[0,2,["H8050"]],[2,3,["H6213","(H853)"]],[3,5,["H834"]],[5,7,["H3068"]],[7,8,["H1696"]],[8,10,["H935"]],[10,12,["H1035"]],[12,15,["H2205"]],[15,18,["H5892"]],[18,19,["H2729"]],[19,22,["H7122"]],[22,24,["H559"]],[24,25,["H935"]],[25,27,["H7965"]]]},{"k":7600,"v":[[0,3,["H559"]],[3,4,["H7965"]],[4,7,["H935"]],[7,9,["H2076"]],[9,12,["H3068"]],[12,14,["H6942"]],[14,16,["H935"]],[16,17,["H854"]],[17,21,["H2077"]],[21,24,["H6942","(H853)"]],[24,25,["H3448"]],[25,28,["H1121"]],[28,30,["H7121"]],[30,34,["H2077"]]]},{"k":7601,"v":[[0,5,["H1961"]],[5,9,["H935"]],[9,13,["H7200","(H853)"]],[13,14,["H446"]],[14,16,["H559"]],[16,17,["H389"]],[17,19,["H3068"]],[19,20,["H4899"]],[20,22,["H5048"]],[22,23,[]]]},{"k":7602,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H8050"]],[6,7,["H5027"]],[7,8,["H408"]],[8,9,["H413"]],[9,11,["H4758"]],[11,13,["H413"]],[13,15,["H1364"]],[15,18,["H6967"]],[18,19,["H3588"]],[19,22,["H3988"]],[22,24,["H3588"]],[24,28,["H3808"]],[28,29,["H834"]],[29,30,["H120"]],[30,31,["H7200"]],[31,32,["H3588"]],[32,33,["H120"]],[33,34,["H7200"]],[34,38,["H5869"]],[38,41,["H3068"]],[41,42,["H7200"]],[42,45,["H3824"]]]},{"k":7603,"v":[[0,2,["H3448"]],[2,3,["H7121","H413"]],[3,4,["H41"]],[4,8,["H5674"]],[8,9,["H6440"]],[9,10,["H8050"]],[10,13,["H559"]],[13,14,["H1571","H3808"]],[14,17,["H3068"]],[17,18,["H977"]],[18,19,["H2088"]]]},{"k":7604,"v":[[0,2,["H3448"]],[2,4,["H8048"]],[4,7,["H5674"]],[7,10,["H559"]],[10,11,["H1571","H3808"]],[11,14,["H3068"]],[14,15,["H977"]],[15,16,["H2088"]]]},{"k":7605,"v":[[0,2,["H3448"]],[2,4,["H7651"]],[4,7,["H1121"]],[7,9,["H5674"]],[9,10,["H6440"]],[10,11,["H8050"]],[11,13,["H8050"]],[13,14,["H559"]],[14,15,["H413"]],[15,16,["H3448"]],[16,18,["H3068"]],[18,20,["H3808"]],[20,21,["H977"]],[21,22,["H428"]]]},{"k":7606,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3448"]],[5,8,["H8552"]],[8,10,["H5288"]],[10,13,["H559"]],[13,15,["H7604"]],[15,16,["H5750"]],[16,18,["H6996"]],[18,20,["H2009"]],[20,22,["H7462"]],[22,24,["H6629"]],[24,26,["H8050"]],[26,27,["H559"]],[27,28,["H413"]],[28,29,["H3448"]],[29,30,["H7971"]],[30,32,["H3947"]],[32,34,["H3588"]],[34,37,["H3808"]],[37,39,["H5437"]],[39,40,["H5704"]],[40,42,["H935"]],[42,43,["H6311"]]]},{"k":7607,"v":[[0,3,["H7971"]],[3,5,["H935"]],[5,9,["H1931"]],[9,11,["H132"]],[11,13,["H5973"]],[13,16,["H3303"]],[16,17,["H5869"]],[17,19,["H2896"]],[19,22,["H7210"]],[22,25,["H3068"]],[25,26,["H559"]],[26,27,["H6965"]],[27,28,["H4886"]],[28,30,["H3588"]],[30,31,["H2088"]],[31,33,["H1931"]]]},{"k":7608,"v":[[0,2,["H8050"]],[2,3,["H3947","(H853)"]],[3,5,["H7161"]],[5,7,["H8081"]],[7,9,["H4886"]],[9,13,["H7130"]],[13,16,["H251"]],[16,19,["H7307"]],[19,22,["H3068"]],[22,23,["H6743"]],[23,24,["H413"]],[24,25,["H1732"]],[25,28,["H4480","H3117","H1931"]],[28,29,["H4605"]],[29,31,["H8050"]],[31,33,["H6965"]],[33,35,["H1980"]],[35,37,["H7414"]]]},{"k":7609,"v":[[0,3,["H7307"]],[3,6,["H3068"]],[6,7,["H5493"]],[7,8,["H4480","H5973"]],[8,9,["H7586"]],[9,12,["H7451"]],[12,13,["H7307"]],[13,14,["H4480","H854"]],[14,16,["H3068"]],[16,17,["H1204"]],[17,18,[]]]},{"k":7610,"v":[[0,2,["H7586"]],[2,3,["H5650"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H2009"]],[7,8,["H4994"]],[8,10,["H7451"]],[10,11,["H7307"]],[11,13,["H430"]],[13,14,["H1204"]],[14,15,[]]]},{"k":7611,"v":[[0,3,["H113"]],[3,4,["H4994"]],[4,5,["H559"]],[5,7,["H5650"]],[7,10,["H6440"]],[10,14,["H1245"]],[14,16,["H376"]],[16,20,["H3045"]],[20,21,["H5059"]],[21,24,["H3658"]],[24,30,["H1961"]],[30,31,["H1961"]],[31,33,["H7451"]],[33,34,["H7307"]],[34,36,["H430"]],[36,38,["H5921"]],[38,43,["H5059"]],[43,46,["H3027"]],[46,51,["H2895"]]]},{"k":7612,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5650"]],[6,7,["H7200"]],[7,9,["H4994"]],[9,11,["H376"]],[11,14,["H5059"]],[14,15,["H3190"]],[15,17,["H935"]],[17,19,["H413"]],[19,20,[]]]},{"k":7613,"v":[[0,2,["H6030"]],[2,3,["H259"]],[3,6,["H5288"]],[6,8,["H559"]],[8,9,["H2009"]],[9,12,["H7200"]],[12,14,["H1121"]],[14,16,["H3448"]],[16,18,["H1022"]],[18,21,["H3045"]],[21,23,["H5059"]],[23,26,["H1368"]],[26,28,["H2428"]],[28,31,["H376"]],[31,33,["H4421"]],[33,35,["H995"]],[35,37,["H1697"]],[37,40,["H8389"]],[40,41,["H376"]],[41,44,["H3068"]],[44,46,["H5973"]],[46,47,[]]]},{"k":7614,"v":[[0,2,["H7586"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H3448"]],[6,8,["H559"]],[8,9,["H7971"]],[9,10,["(H853)"]],[10,11,["H1732"]],[11,13,["H1121"]],[13,14,["H834"]],[14,18,["H6629"]]]},{"k":7615,"v":[[0,2,["H3448"]],[2,3,["H3947"]],[3,5,["H2543"]],[5,8,["H3899"]],[8,11,["H4997"]],[11,13,["H3196"]],[13,15,["H259"]],[15,16,["H1423","H5795"]],[16,18,["H7971"]],[18,20,["H3027"]],[20,21,["H1732"]],[21,23,["H1121"]],[23,24,["H413"]],[24,25,["H7586"]]]},{"k":7616,"v":[[0,2,["H1732"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H7586"]],[5,7,["H5975"]],[7,8,["H6440"]],[8,12,["H157"]],[12,14,["H3966"]],[14,17,["H1961"]],[17,19,["H3627","H5375"]]]},{"k":7617,"v":[[0,2,["H7586"]],[2,3,["H7971"]],[3,4,["H413"]],[4,5,["H3448"]],[5,6,["H559"]],[6,8,["H1732"]],[8,11,["H4994"]],[11,12,["H5975"]],[12,13,["H6440"]],[13,15,["H3588"]],[15,18,["H4672"]],[18,19,["H2580"]],[19,22,["H5869"]]]},{"k":7618,"v":[[0,5,["H1961"]],[5,6,["H1961"]],[6,9,["H7307"]],[9,11,["H430"]],[11,13,["H413"]],[13,14,["H7586"]],[14,16,["H1732"]],[16,17,["H3947","(H853)"]],[17,19,["H3658"]],[19,21,["H5059"]],[21,24,["H3027"]],[24,26,["H7586"]],[26,28,["H7304"]],[28,31,["H2895"]],[31,34,["H7451"]],[34,35,["H7307"]],[35,36,["H5493"]],[36,37,["H4480","H5921"]],[37,38,[]]]},{"k":7619,"v":[[0,3,["H6430"]],[3,5,["H622","(H853)"]],[5,7,["H4264"]],[7,9,["H4421"]],[9,13,["H622"]],[13,15,["H7755"]],[15,16,["H834"]],[16,19,["H3063"]],[19,21,["H2583"]],[21,22,["H996"]],[22,23,["H7755"]],[23,25,["H5825"]],[25,27,["H658"]]]},{"k":7620,"v":[[0,2,["H7586"]],[2,5,["H376"]],[5,7,["H3478"]],[7,10,["H622"]],[10,12,["H2583"]],[12,15,["H6010"]],[15,17,["H425"]],[17,21,["H4421"]],[21,23,["H6186"]],[23,24,["H7125"]],[24,26,["H6430"]]]},{"k":7621,"v":[[0,3,["H6430"]],[3,4,["H5975"]],[4,5,["H413"]],[5,7,["H2022"]],[7,11,["H4480","H2088"]],[11,13,["H3478"]],[13,14,["H5975"]],[14,15,["H413"]],[15,17,["H2022"]],[17,21,["H4480","H2088"]],[21,26,["H1516"]],[26,27,["H996"]],[27,28,[]]]},{"k":7622,"v":[[0,4,["H3318"]],[4,6,["H376","H1143"]],[6,10,["H4480","H4264"]],[10,13,["H6430"]],[13,14,["H8034"]],[14,15,["H1555"]],[15,17,["H4480","H1661"]],[17,19,["H1363"]],[19,21,["H8337"]],[21,22,["H520"]],[22,25,["H2239"]]]},{"k":7623,"v":[[0,5,["H3553"]],[5,7,["H5178"]],[7,8,["H5921"]],[8,10,["H7218"]],[10,12,["H1931"]],[12,14,["H3847"]],[14,17,["H8302"]],[17,19,["H7193"]],[19,22,["H4948"]],[22,25,["H8302"]],[25,27,["H2568"]],[27,28,["H505"]],[28,29,["H8255"]],[29,31,["H5178"]]]},{"k":7624,"v":[[0,4,["H4697"]],[4,6,["H5178"]],[6,7,["H5921"]],[7,9,["H7272"]],[9,12,["H3591"]],[12,14,["H5178"]],[14,15,["H996"]],[15,17,["H3802"]]]},{"k":7625,"v":[[0,3,["H2671"]],[3,6,["H2595"]],[6,10,["H707"]],[10,11,["H4500"]],[11,14,["H2595"]],[14,15,["H3852"]],[15,17,["H8337"]],[17,18,["H3967"]],[18,19,["H8255"]],[19,21,["H1270"]],[21,24,["H5375"]],[24,26,["H6793"]],[26,27,["H1980"]],[27,28,["H6440"]],[28,29,[]]]},{"k":7626,"v":[[0,3,["H5975"]],[3,5,["H7121"]],[5,6,["H413"]],[6,8,["H4634"]],[8,10,["H3478"]],[10,12,["H559"]],[12,15,["H4100"]],[15,19,["H3318"]],[19,23,["H4421"]],[23,25,["H6186"]],[25,27,["H3808"]],[27,28,["H595"]],[28,30,["H6430"]],[30,32,["H859"]],[32,33,["H5650"]],[33,35,["H7586"]],[35,36,["H1262"]],[36,39,["H376"]],[39,46,["H3381"]],[46,47,["H413"]],[47,48,[]]]},{"k":7627,"v":[[0,1,["H518"]],[1,4,["H3201"]],[4,6,["H3898"]],[6,7,["H854"]],[7,11,["H5221"]],[11,16,["H1961"]],[16,18,["H5650"]],[18,20,["H518"]],[20,21,["H589"]],[21,22,["H3201"]],[22,26,["H5221"]],[26,31,["H1961"]],[31,33,["H5650"]],[33,35,["H5647"]],[35,36,[]]]},{"k":7628,"v":[[0,3,["H6430"]],[3,4,["H559"]],[4,5,["H589"]],[5,6,["H2778","(H853)"]],[6,8,["H4634"]],[8,10,["H3478"]],[10,11,["H2088"]],[11,12,["H3117"]],[12,13,["H5414"]],[13,16,["H376"]],[16,20,["H3898"]],[20,21,["H3162"]]]},{"k":7629,"v":[[0,2,["H7586"]],[2,4,["H3605"]],[4,5,["H3478"]],[5,6,["H8085","(H853)"]],[6,7,["H428"]],[7,8,["H1697"]],[8,11,["H6430"]],[11,14,["H2865"]],[14,16,["H3966"]],[16,17,["H3372"]]]},{"k":7630,"v":[[0,2,["H1732"]],[2,5,["H1121"]],[5,7,["H2088"]],[7,8,["H376","H673"]],[8,10,["H4480","H1035"]],[10,12,["H8034"]],[12,14,["H3448"]],[14,18,["H8083"]],[18,19,["H1121"]],[19,22,["H376"]],[22,23,["H935"]],[23,25,["H376"]],[25,28,["H2204"]],[28,32,["H3117"]],[32,34,["H7586"]]]},{"k":7631,"v":[[0,3,["H7969"]],[3,4,["H1419"]],[4,5,["H1121"]],[5,7,["H3448"]],[7,8,["H1980"]],[8,10,["H1980","H310"]],[10,11,["H7586"]],[11,14,["H4421"]],[14,17,["H8034"]],[17,20,["H7969"]],[20,21,["H1121"]],[21,22,["H834"]],[22,23,["H1980"]],[23,26,["H4421"]],[26,28,["H446"]],[28,30,["H1060"]],[30,32,["H4932"]],[32,35,["H41"]],[35,38,["H7992"]],[38,39,["H8048"]]]},{"k":7632,"v":[[0,2,["H1732"]],[2,5,["H6996"]],[5,8,["H7969"]],[8,9,["H1419"]],[9,10,["H1980","H310"]],[10,11,["H7586"]]]},{"k":7633,"v":[[0,2,["H1732"]],[2,3,["H1980"]],[3,5,["H7725"]],[5,6,["H4480","H5921"]],[6,7,["H7586"]],[7,9,["H7462","(H853)"]],[9,11,["H1"]],[11,12,["H6629"]],[12,14,["H1035"]]]},{"k":7634,"v":[[0,3,["H6430"]],[3,5,["H5066"]],[5,6,["H7925"]],[6,8,["H6150"]],[8,11,["H3320"]],[11,12,["H705"]],[12,13,["H3117"]]]},{"k":7635,"v":[[0,2,["H3448"]],[2,3,["H559"]],[3,5,["H1732"]],[5,7,["H1121"]],[7,8,["H3947"]],[8,9,["H4994"]],[9,12,["H251"]],[12,14,["H374"]],[14,16,["H2088"]],[16,17,["H7039"]],[17,20,["H2088"]],[20,21,["H6235"]],[21,22,["H3899"]],[22,24,["H7323"]],[24,27,["H4264"]],[27,30,["H251"]]]},{"k":7636,"v":[[0,2,["H935"]],[2,3,["H428"]],[3,4,["H6235"]],[4,5,["H2757","H2461"]],[5,8,["H8269"]],[8,11,["H505"]],[11,14,["H6485"]],[14,16,["H251"]],[16,17,["H7965"]],[17,19,["H3947"]],[19,21,["H6161"]]]},{"k":7637,"v":[[0,2,["H7586"]],[2,4,["H1992"]],[4,6,["H3605"]],[6,8,["H376"]],[8,10,["H3478"]],[10,14,["H6010"]],[14,16,["H425"]],[16,17,["H3898"]],[17,18,["H5973"]],[18,20,["H6430"]]]},{"k":7638,"v":[[0,2,["H1732"]],[2,5,["H7925"]],[5,8,["H1242"]],[8,10,["H5203","(H853)"]],[10,12,["H6629"]],[12,13,["H5921"]],[13,15,["H8104"]],[15,17,["H5375"]],[17,19,["H1980"]],[19,20,["H834"]],[20,21,["H3448"]],[21,23,["H6680"]],[23,27,["H935"]],[27,30,["H4570"]],[30,33,["H2428"]],[33,36,["H3318"]],[36,37,["H413"]],[37,39,["H4634"]],[39,41,["H7321"]],[41,44,["H4421"]]]},{"k":7639,"v":[[0,2,["H3478"]],[2,5,["H6430"]],[5,11,["H6186"]],[11,12,["H4634"]],[12,13,["H7125"]],[13,14,["H4634"]]]},{"k":7640,"v":[[0,2,["H1732"]],[2,3,["H5203","(H853)"]],[3,5,["H3627"]],[5,6,["H5921"]],[6,8,["H3027"]],[8,11,["H8104"]],[11,14,["H3627"]],[14,16,["H7323"]],[16,19,["H4634"]],[19,21,["H935"]],[21,23,["H7592","H7965"]],[23,25,["H251"]]]},{"k":7641,"v":[[0,3,["H1931"]],[3,4,["H1696"]],[4,5,["H5973"]],[5,7,["H2009"]],[7,10,["H5927"]],[10,12,["H376","H1143"]],[12,14,["H6430"]],[14,16,["H4480","H1661"]],[16,17,["H1555"]],[17,19,["H8034"]],[19,23,["H4480","H4630"]],[23,26,["H6430"]],[26,28,["H1696"]],[28,32,["H428"]],[32,33,["H1697"]],[33,35,["H1732"]],[35,36,["H8085"]],[36,37,[]]]},{"k":7642,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,6,["H3478"]],[6,9,["H7200","(H853)"]],[9,11,["H376"]],[11,12,["H5127"]],[12,13,["H4480","H6440"]],[13,17,["H3966"]],[17,18,["H3372"]]]},{"k":7643,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,6,["H559"]],[6,9,["H7200"]],[9,10,["H2088"]],[10,11,["H376"]],[11,15,["H5927"]],[15,16,["H3588"]],[16,18,["H2778","(H853)"]],[18,19,["H3478"]],[19,23,["H5927"]],[23,27,["H1961"]],[27,30,["H376"]],[30,31,["H834"]],[31,32,["H5221"]],[32,35,["H4428"]],[35,37,["H6238"]],[37,40,["H1419"]],[40,41,["H6239"]],[41,44,["H5414"]],[44,47,["H1323"]],[47,49,["H6213"]],[49,51,["H1"]],[51,52,["H1004"]],[52,53,["H2670"]],[53,55,["H3478"]]]},{"k":7644,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H376"]],[6,8,["H5975"]],[8,9,["H5973"]],[9,11,["H559"]],[11,12,["H4100"]],[12,15,["H6213"]],[15,18,["H376"]],[18,19,["H834"]],[19,20,["H5221","(H853)"]],[20,21,["H1975"]],[21,22,["H6430"]],[22,25,["H5493"]],[25,27,["H2781"]],[27,28,["H4480","H5921"]],[28,29,["H3478"]],[29,30,["H3588"]],[30,31,["H4310"]],[31,33,["H2088"]],[33,34,["H6189"]],[34,35,["H6430"]],[35,36,["H3588"]],[36,39,["H2778"]],[39,41,["H4634"]],[41,44,["H2416"]],[44,45,["H430"]]]},{"k":7645,"v":[[0,3,["H5971"]],[3,4,["H559"]],[4,7,["H2088"]],[7,8,["H1697"]],[8,9,["H559"]],[9,10,["H3541"]],[10,14,["H6213"]],[14,17,["H376"]],[17,18,["H834"]],[18,19,["H5221"]],[19,20,[]]]},{"k":7646,"v":[[0,2,["H446"]],[2,4,["H1419"]],[4,5,["H251"]],[5,6,["H8085"]],[6,9,["H1696"]],[9,10,["H413"]],[10,12,["H376"]],[12,14,["H446"]],[14,15,["H639"]],[15,17,["H2734"]],[17,19,["H1732"]],[19,22,["H559"]],[22,23,["H4100"]],[23,26,["H3381"]],[26,29,["H5921"]],[29,30,["H4310"]],[30,33,["H5203"]],[33,34,["H2007"]],[34,35,["H4592"]],[35,36,["H6629"]],[36,39,["H4057"]],[39,40,["H589"]],[40,41,["H3045","(H853)"]],[41,43,["H2087"]],[43,46,["H7455"]],[46,49,["H3824"]],[49,50,["H3588"]],[50,54,["H3381"]],[54,55,["H4616"]],[55,58,["H7200"]],[58,60,["H4421"]]]},{"k":7647,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H4100"]],[4,7,["H6258"]],[7,8,["H6213"]],[8,11,["H3808"]],[11,13,["H1697"]]]},{"k":7648,"v":[[0,3,["H5437"]],[3,4,["H4480","H681"]],[4,7,["H413","H4136","H312"]],[7,9,["H559"]],[9,12,["H2088"]],[12,13,["H1697"]],[13,16,["H5971"]],[16,17,["H1697"]],[17,19,["H7725"]],[19,22,["H7223"]],[22,23,["H1697"]]]},{"k":7649,"v":[[0,4,["H1697"]],[4,6,["H8085"]],[6,7,["H834"]],[7,8,["H1732"]],[8,9,["H1696"]],[9,11,["H5046"]],[11,13,["H6440"]],[13,14,["H7586"]],[14,17,["H3947"]],[17,19,[]]]},{"k":7650,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7586"]],[5,7,["H408"]],[7,8,["H120"]],[8,9,["H3820"]],[9,10,["H5307"]],[10,11,["H5921"]],[11,15,["H5650"]],[15,17,["H1980"]],[17,19,["H3898"]],[19,20,["H5973"]],[20,21,["H2088"]],[21,22,["H6430"]]]},{"k":7651,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,8,["H3808"]],[8,9,["H3201"]],[9,11,["H1980"]],[11,12,["H413"]],[12,13,["H2088"]],[13,14,["H6430"]],[14,16,["H3898"]],[16,17,["H5973"]],[17,19,["H3588"]],[19,20,["H859"]],[20,24,["H5288"]],[24,26,["H1931"]],[26,28,["H376"]],[28,30,["H4421"]],[30,33,["H4480","H5271"]]]},{"k":7652,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7586"]],[5,7,["H5650"]],[7,8,["H1961","H7462"]],[8,10,["H1"]],[10,11,["H6629"]],[11,14,["H935"]],[14,16,["H738"]],[16,19,["H1677"]],[19,21,["H5375"]],[21,23,["H7716"]],[23,27,["H4480","H5739"]]]},{"k":7653,"v":[[0,4,["H3318"]],[4,5,["H310"]],[5,8,["H5221"]],[8,11,["H5337"]],[11,16,["H4480","H6310"]],[16,20,["H6965"]],[20,21,["H5921"]],[21,24,["H2388"]],[24,28,["H2206"]],[28,30,["H5221"]],[30,33,["H4191"]],[33,34,[]]]},{"k":7654,"v":[[0,2,["H5650"]],[2,3,["H5221"]],[3,4,["H1571","(H853)"]],[4,6,["H738"]],[6,7,["H1571"]],[7,9,["H1677"]],[9,11,["H2088"]],[11,12,["H6189"]],[12,13,["H6430"]],[13,15,["H1961"]],[15,17,["H259"]],[17,18,["H4480"]],[18,20,["H3588"]],[20,23,["H2778"]],[23,25,["H4634"]],[25,28,["H2416"]],[28,29,["H430"]]]},{"k":7655,"v":[[0,1,["H1732"]],[1,2,["H559"]],[2,5,["H3068"]],[5,6,["H834"]],[6,7,["H5337"]],[7,12,["H4480","H3027"]],[12,15,["H738"]],[15,20,["H4480","H3027"]],[20,23,["H1677"]],[23,24,["H1931"]],[24,26,["H5337"]],[26,31,["H4480","H3027"]],[31,33,["H2088"]],[33,34,["H6430"]],[34,36,["H7586"]],[36,37,["H559"]],[37,38,["H413"]],[38,39,["H1732"]],[39,40,["H1980"]],[40,43,["H3068"]],[43,44,["H1961"]],[44,45,["H5973"]],[45,46,[]]]},{"k":7656,"v":[[0,2,["H7586"]],[2,3,["H3847","(H853)"]],[3,4,["H1732"]],[4,7,["H4055"]],[7,10,["H5414"]],[10,12,["H6959"]],[12,14,["H5178"]],[14,15,["H5921"]],[15,17,["H7218"]],[17,20,["H3847"]],[20,26,["H8302"]]]},{"k":7657,"v":[[0,2,["H1732"]],[2,3,["H2296","(H853)"]],[3,5,["H2719"]],[5,6,["H4480","H5921"]],[6,8,["H4055"]],[8,11,["H2974"]],[11,13,["H1980"]],[13,14,["H3588"]],[14,17,["H3808"]],[17,18,["H5254"]],[18,21,["H1732"]],[21,22,["H559"]],[22,23,["H413"]],[23,24,["H7586"]],[24,26,["H3201","H3808"]],[26,27,["H1980"]],[27,29,["H428"]],[29,30,["H3588"]],[30,33,["H3808"]],[33,34,["H5254"]],[34,37,["H1732"]],[37,38,["H5493"]],[38,40,["H4480","H5921"]],[40,41,[]]]},{"k":7658,"v":[[0,3,["H3947"]],[3,5,["H4731"]],[5,8,["H3027"]],[8,10,["H977"]],[10,12,["H2568"]],[12,13,["H2512"]],[13,14,["H68"]],[14,16,["H4480"]],[16,18,["H5158"]],[18,20,["H7760"]],[20,24,["H7462"]],[24,25,["H3627"]],[25,26,["H834"]],[26,32,["H3219"]],[32,35,["H7050"]],[35,39,["H3027"]],[39,43,["H5066"]],[43,44,["H413"]],[44,46,["H6430"]]]},{"k":7659,"v":[[0,3,["H6430"]],[3,4,["H1980"]],[4,5,["H1980"]],[5,8,["H7131"]],[8,9,["H413"]],[9,10,["H1732"]],[10,13,["H376"]],[13,15,["H5375"]],[15,17,["H6793"]],[17,19,["H6440"]],[19,20,[]]]},{"k":7660,"v":[[0,4,["H6430"]],[4,6,["H5027"]],[6,8,["H7200","(H853)"]],[8,9,["H1732"]],[9,11,["H959"]],[11,13,["H3588"]],[13,15,["H1961"]],[15,18,["H5288"]],[18,20,["H132"]],[20,22,["H5973"]],[22,24,["H3303"]],[24,25,["H4758"]]]},{"k":7661,"v":[[0,3,["H6430"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H1732"]],[6,8,["H595"]],[8,10,["H3611"]],[10,11,["H3588"]],[11,12,["H859"]],[12,13,["H935"]],[13,14,["H413"]],[14,17,["H4731"]],[17,20,["H6430"]],[20,21,["H7043","(H853)"]],[21,22,["H1732"]],[22,25,["H430"]]]},{"k":7662,"v":[[0,3,["H6430"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H1732"]],[6,7,["H1980"]],[7,8,["H413"]],[8,13,["H5414","(H853)"]],[13,15,["H1320"]],[15,18,["H5775"]],[18,21,["H8064"]],[21,25,["H929"]],[25,28,["H7704"]]]},{"k":7663,"v":[[0,2,["H559"]],[2,3,["H1732"]],[3,4,["H413"]],[4,6,["H6430"]],[6,7,["H859"]],[7,8,["H935"]],[8,9,["H413"]],[9,13,["H2719"]],[13,17,["H2595"]],[17,21,["H3591"]],[21,23,["H595"]],[23,24,["H935"]],[24,25,["H413"]],[25,29,["H8034"]],[29,32,["H3068"]],[32,34,["H6635"]],[34,36,["H430"]],[36,39,["H4634"]],[39,41,["H3478"]],[41,42,["H834"]],[42,45,["H2778"]]]},{"k":7664,"v":[[0,1,["H2088"]],[1,2,["H3117"]],[2,5,["H3068"]],[5,6,["H5462"]],[6,10,["H3027"]],[10,14,["H5221"]],[14,17,["H5493","(H853)"]],[17,19,["H7218"]],[19,20,["H4480","H5921"]],[20,25,["H5414"]],[25,27,["H6297"]],[27,30,["H4264"]],[30,33,["H6430"]],[33,34,["H2088"]],[34,35,["H3117"]],[35,38,["H5775"]],[38,41,["H8064"]],[41,46,["H2416"]],[46,49,["H776"]],[49,51,["H3605"]],[51,53,["H776"]],[53,55,["H3045"]],[55,56,["H3588"]],[56,58,["H3426"]],[58,60,["H430"]],[60,62,["H3478"]]]},{"k":7665,"v":[[0,2,["H3605"]],[2,3,["H2088"]],[3,4,["H6951"]],[4,6,["H3045"]],[6,7,["H3588"]],[7,9,["H3068"]],[9,10,["H3467"]],[10,11,["H3808"]],[11,13,["H2719"]],[13,15,["H2595"]],[15,16,["H3588"]],[16,18,["H4421"]],[18,21,["H3068"]],[21,25,["H5414"]],[25,29,["H3027"]]]},{"k":7666,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,8,["H6430"]],[8,9,["H6965"]],[9,11,["H1980"]],[11,14,["H7126"]],[14,16,["H7125"]],[16,17,["H1732"]],[17,19,["H1732"]],[19,20,["H4116"]],[20,22,["H7323"]],[22,25,["H4634"]],[25,27,["H7125"]],[27,29,["H6430"]]]},{"k":7667,"v":[[0,2,["H1732"]],[2,3,["H7971","(H853)"]],[3,5,["H3027"]],[5,6,["H413"]],[6,8,["H3627"]],[8,10,["H3947"]],[10,11,["H4480","H8033"]],[11,13,["H68"]],[13,15,["H7049"]],[15,18,["H5221","(H853)"]],[18,20,["H6430"]],[20,21,["H413"]],[21,23,["H4696"]],[23,26,["H68"]],[26,27,["H2883"]],[27,30,["H4696"]],[30,33,["H5307"]],[33,34,["H5921"]],[34,36,["H6440"]],[36,39,["H776"]]]},{"k":7668,"v":[[0,2,["H1732"]],[2,3,["H2388"]],[3,4,["H4480"]],[4,6,["H6430"]],[6,9,["H7050"]],[9,13,["H68"]],[13,15,["H5221","(H853)"]],[15,17,["H6430"]],[17,19,["H4191"]],[19,24,["H369"]],[24,25,["H2719"]],[25,28,["H3027"]],[28,30,["H1732"]]]},{"k":7669,"v":[[0,2,["H1732"]],[2,3,["H7323"]],[3,5,["H5975"]],[5,6,["H413"]],[6,8,["H6430"]],[8,10,["H3947","(H853)"]],[10,12,["H2719"]],[12,14,["H8025"]],[14,19,["H4480","H8593"]],[19,22,["H4191"]],[22,26,["H3772","(H853)"]],[26,28,["H7218"]],[28,33,["H6430"]],[33,34,["H7200"]],[34,36,["H1368"]],[36,38,["H4191"]],[38,40,["H5127"]]]},{"k":7670,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,8,["H3063"]],[8,9,["H6965"]],[9,11,["H7321"]],[11,13,["H7291","(H853)"]],[13,15,["H6430"]],[15,16,["H5704"]],[16,18,["H935"]],[18,21,["H1516"]],[21,23,["H5704"]],[23,25,["H8179"]],[25,27,["H6138"]],[27,30,["H2491"]],[30,33,["H6430"]],[33,35,["H5307"]],[35,38,["H1870"]],[38,40,["H8189"]],[40,42,["H5704"]],[42,43,["H1661"]],[43,45,["H5704"]],[45,46,["H6138"]]]},{"k":7671,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H7725"]],[6,8,["H4480","H1814"]],[8,9,["H310"]],[9,11,["H6430"]],[11,14,["H8155","(H853)"]],[14,16,["H4264"]]]},{"k":7672,"v":[[0,2,["H1732"]],[2,3,["H3947","(H853)"]],[3,5,["H7218"]],[5,8,["H6430"]],[8,10,["H935"]],[10,13,["H3389"]],[13,16,["H7760"]],[16,18,["H3627"]],[18,21,["H168"]]]},{"k":7673,"v":[[0,3,["H7586"]],[3,4,["H7200","(H853)"]],[4,5,["H1732"]],[5,7,["H3318"]],[7,8,["H7125"]],[8,10,["H6430"]],[10,12,["H559"]],[12,13,["H413"]],[13,14,["H74"]],[14,16,["H8269"]],[16,19,["H6635"]],[19,20,["H74"]],[20,21,["H4310"]],[21,22,["H1121"]],[22,24,["H2088"]],[24,25,["H5288"]],[25,27,["H74"]],[27,28,["H559"]],[28,31,["H5315"]],[31,32,["H2416"]],[32,34,["H4428"]],[34,36,["H518"]],[36,37,["H3045"]]]},{"k":7674,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H7592"]],[5,6,["H859"]],[6,7,["H4310"]],[7,8,["H1121"]],[8,10,["H5958"]],[10,11,[]]]},{"k":7675,"v":[[0,3,["H1732"]],[3,4,["H7725"]],[4,7,["H4480","H5221"]],[7,8,["(H853)"]],[8,10,["H6430"]],[10,11,["H74"]],[11,12,["H3947"]],[12,15,["H935"]],[15,17,["H6440"]],[17,18,["H7586"]],[18,21,["H7218"]],[21,24,["H6430"]],[24,27,["H3027"]]]},{"k":7676,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4310"]],[6,7,["H1121"]],[7,9,["H859"]],[9,12,["H5288"]],[12,14,["H1732"]],[14,15,["H559"]],[15,19,["H1121"]],[19,22,["H5650"]],[22,23,["H3448"]],[23,25,["H1022"]]]},{"k":7677,"v":[[0,5,["H1961"]],[5,11,["H3615"]],[11,13,["H1696"]],[13,14,["H413"]],[14,15,["H7586"]],[15,18,["H5315"]],[18,20,["H3083"]],[20,22,["H7194"]],[22,25,["H5315"]],[25,27,["H1732"]],[27,29,["H3083"]],[29,30,["H157"]],[30,35,["H5315"]]]},{"k":7678,"v":[[0,2,["H7586"]],[2,3,["H3947"]],[3,5,["H1931"]],[5,6,["H3117"]],[6,9,["H5414"]],[9,14,["H7725","H3808"]],[14,17,["H1"]],[17,18,["H1004"]]]},{"k":7679,"v":[[0,2,["H3083"]],[2,4,["H1732"]],[4,5,["H3772"]],[5,7,["H1285"]],[7,10,["H157"]],[10,15,["H5315"]]]},{"k":7680,"v":[[0,2,["H3083"]],[2,4,["H6584"]],[4,5,["(H853)"]],[5,7,["H4598"]],[7,8,["H834"]],[8,10,["H5921"]],[10,13,["H5414"]],[13,16,["H1732"]],[16,19,["H4055"]],[19,21,["H5704"]],[21,23,["H2719"]],[23,25,["H5704"]],[25,27,["H7198"]],[27,29,["H5704"]],[29,31,["H2290"]]]},{"k":7681,"v":[[0,2,["H1732"]],[2,4,["H3318"]],[4,5,["H834","H3605"]],[5,6,["H7586"]],[6,7,["H7971"]],[7,12,["H7919"]],[12,14,["H7586"]],[14,15,["H7760"]],[15,17,["H5921"]],[17,19,["H376"]],[19,21,["H4421"]],[21,25,["H3190"]],[25,28,["H5869"]],[28,30,["H3605"]],[30,32,["H5971"]],[32,34,["H1571"]],[34,37,["H5869"]],[37,39,["H7586"]],[39,40,["H5650"]]]},{"k":7682,"v":[[0,5,["H1961"]],[5,8,["H935"]],[8,10,["H1732"]],[10,12,["H7725"]],[12,15,["H4480","H5221"]],[15,16,["(H853)"]],[16,18,["H6430"]],[18,21,["H802"]],[21,23,["H3318"]],[23,25,["H4480","H3605"]],[25,26,["H5892"]],[26,28,["H3478"]],[28,29,["H7891"]],[29,31,["H4246"]],[31,33,["H7125"]],[33,34,["H4428"]],[34,35,["H7586"]],[35,37,["H8596"]],[37,39,["H8057"]],[39,44,["H7991"]]]},{"k":7683,"v":[[0,3,["H802"]],[3,4,["H6030"]],[4,9,["H7832"]],[9,11,["H559"]],[11,12,["H7586"]],[12,14,["H5221"]],[14,16,["H505"]],[16,18,["H1732"]],[18,21,["H7233"]]]},{"k":7684,"v":[[0,2,["H7586"]],[2,4,["H3966"]],[4,5,["H2734"]],[5,7,["H2088"]],[7,8,["H1697"]],[8,9,["H3415","H5869"]],[9,13,["H559"]],[13,16,["H5414"]],[16,18,["H1732"]],[18,20,["H7233"]],[20,26,["H5414"]],[26,28,["H505"]],[28,34,["H5750"]],[34,35,["H389"]],[35,37,["H4410"]]]},{"k":7685,"v":[[0,2,["H7586"]],[2,3,["H5770","(H853)"]],[3,4,["H1732"]],[4,7,["H4480","H3117","H1931"]],[7,9,["H1973"]]]},{"k":7686,"v":[[0,5,["H1961"]],[5,8,["H4480","H4283"]],[8,11,["H7451"]],[11,12,["H7307"]],[12,14,["H430"]],[14,15,["H6743"]],[15,16,["H413"]],[16,17,["H7586"]],[17,20,["H5012"]],[20,23,["H8432"]],[23,26,["H1004"]],[26,28,["H1732"]],[28,29,["H5059"]],[29,32,["H3027"]],[32,36,["H3117","H3117"]],[36,41,["H2595"]],[41,43,["H7586"]],[43,44,["H3027"]]]},{"k":7687,"v":[[0,2,["H7586"]],[2,3,["H2904","(H853)"]],[3,5,["H2595"]],[5,8,["H559"]],[8,11,["H5221"]],[11,12,["H1732"]],[12,16,["H7023"]],[16,20,["H1732"]],[20,21,["H5437"]],[21,25,["H4480","H6440"]],[25,26,["H6471"]]]},{"k":7688,"v":[[0,2,["H7586"]],[2,4,["H3372"]],[4,5,["H4480","H6440"]],[5,6,["H1732"]],[6,7,["H3588"]],[7,9,["H3068"]],[9,10,["H1961"]],[10,11,["H5973"]],[11,15,["H5493"]],[15,16,["H4480","H5973"]],[16,17,["H7586"]]]},{"k":7689,"v":[[0,2,["H7586"]],[2,3,["H5493"]],[3,5,["H4480","H5973"]],[5,8,["H7760"]],[8,11,["H8269"]],[11,14,["H505"]],[14,18,["H3318"]],[18,21,["H935"]],[21,22,["H6440"]],[22,24,["H5971"]]]},{"k":7690,"v":[[0,2,["H1732"]],[2,5,["H7919"]],[5,7,["H3605"]],[7,9,["H1870"]],[9,12,["H3068"]],[12,14,["H5973"]],[14,15,[]]]},{"k":7691,"v":[[0,3,["H7586"]],[3,4,["H7200"]],[4,5,["H834"]],[5,6,["H1931"]],[6,10,["H7919","H3966"]],[10,13,["H1481"]],[13,14,["H4480","H6440"]],[14,15,[]]]},{"k":7692,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,5,["H3063"]],[5,6,["H157","(H853)"]],[6,7,["H1732"]],[7,8,["H3588"]],[8,9,["H1931"]],[9,11,["H3318"]],[11,14,["H935"]],[14,15,["H6440"]],[15,16,[]]]},{"k":7693,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,6,["H2009"]],[6,8,["H1419"]],[8,9,["H1323"]],[9,10,["H4764"]],[10,14,["H5414"]],[14,17,["H802"]],[17,18,["H389"]],[18,19,["H1961"]],[19,21,["H1121","H2428"]],[21,25,["H3898"]],[25,27,["H3068"]],[27,28,["H4421"]],[28,30,["H7586"]],[30,31,["H559"]],[31,33,["H408"]],[33,35,["H3027"]],[35,36,["H1961"]],[36,42,["H3027"]],[42,45,["H6430"]],[45,46,["H1961"]],[46,48,[]]]},{"k":7694,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7586"]],[5,6,["H4310"]],[6,8,["H595"]],[8,10,["H4310"]],[10,13,["H2416"]],[13,16,["H1"]],[16,17,["H4940"]],[17,19,["H3478"]],[19,20,["H3588"]],[20,23,["H1961"]],[23,26,["H2860"]],[26,29,["H4428"]]]},{"k":7695,"v":[[0,5,["H1961"]],[5,8,["H6256"]],[8,9,["(H853)"]],[9,10,["H4764"]],[10,11,["H7586"]],[11,12,["H1323"]],[12,16,["H5414"]],[16,18,["H1732"]],[18,20,["H1931"]],[20,22,["H5414"]],[22,24,["H5741"]],[24,26,["H4259"]],[26,28,["H802"]]]},{"k":7696,"v":[[0,2,["H4324"]],[2,3,["H7586"]],[3,4,["H1323"]],[4,5,["H157","(H853)"]],[5,6,["H1732"]],[6,9,["H5046"]],[9,10,["H7586"]],[10,13,["H1697"]],[13,14,["H3474","H5869"]],[14,15,[]]]},{"k":7697,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,6,["H5414"]],[6,12,["H1961"]],[12,14,["H4170"]],[14,20,["H3027"]],[20,23,["H6430"]],[23,25,["H1961"]],[25,29,["H7586"]],[29,30,["H559"]],[30,31,["H413"]],[31,32,["H1732"]],[32,36,["H3117"]],[36,41,["H2860"]],[41,47,["H8147"]]]},{"k":7698,"v":[[0,2,["H7586"]],[2,3,["H6680","(H853)"]],[3,5,["H5650"]],[5,7,["H1696"]],[7,8,["H413"]],[8,9,["H1732"]],[9,10,["H3909"]],[10,12,["H559"]],[12,13,["H2009"]],[13,15,["H4428"]],[15,17,["H2654"]],[17,21,["H3605"]],[21,23,["H5650"]],[23,24,["H157"]],[24,26,["H6258"]],[26,30,["H4428"]],[30,33,["H2860"]]]},{"k":7699,"v":[[0,2,["H7586"]],[2,3,["H5650"]],[3,4,["H1696","(H853)"]],[4,5,["H428"]],[5,6,["H1697"]],[6,9,["H241"]],[9,11,["H1732"]],[11,13,["H1732"]],[13,14,["H559"]],[14,15,["H5869"]],[15,20,["H7043"]],[20,25,["H4428"]],[25,28,["H2860"]],[28,31,["H595"]],[31,34,["H7326"]],[34,35,["H376"]],[35,38,["H7034"]]]},{"k":7700,"v":[[0,3,["H5650"]],[3,5,["H7586"]],[5,6,["H5046"]],[6,8,["H559"]],[8,10,["H428"]],[10,11,["H1697"]],[11,12,["H1696"]],[12,13,["H1732"]]]},{"k":7701,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H3541"]],[4,7,["H559"]],[7,9,["H1732"]],[9,11,["H4428"]],[11,12,["H2656"]],[12,13,["H369"]],[13,15,["H4119"]],[15,16,["H3588"]],[16,18,["H3967"]],[18,19,["H6190"]],[19,22,["H6430"]],[22,25,["H5358"]],[25,28,["H4428"]],[28,29,["H341"]],[29,31,["H7586"]],[31,32,["H2803"]],[32,34,["(H853)"]],[34,35,["H1732"]],[35,36,["H5307"]],[36,39,["H3027"]],[39,42,["H6430"]]]},{"k":7702,"v":[[0,4,["H5650"]],[4,5,["H5046"]],[5,6,["H1732","(H853)"]],[6,7,["H428"]],[7,8,["H1697"]],[8,10,["H3474","H1697","H5869"]],[10,11,["H1732"]],[11,16,["H4428"]],[16,19,["H2860"]],[19,22,["H3117"]],[22,24,["H3808"]],[24,25,["H4390"]]]},{"k":7703,"v":[[0,2,["H1732"]],[2,3,["H6965"]],[3,5,["H1980"]],[5,6,["H1931"]],[6,9,["H376"]],[9,11,["H5221"]],[11,14,["H6430"]],[14,16,["H3967"]],[16,17,["H376"]],[17,19,["H1732"]],[19,20,["H935","(H853)"]],[20,22,["H6190"]],[22,29,["H4390"]],[29,32,["H4428"]],[32,38,["H4428"]],[38,41,["H2860"]],[41,43,["H7586"]],[43,44,["H5414"]],[44,45,["(H853)"]],[45,46,["H4324"]],[46,48,["H1323"]],[48,50,["H802"]]]},{"k":7704,"v":[[0,2,["H7586"]],[2,3,["H7200"]],[3,5,["H3045"]],[5,6,["H3588"]],[6,8,["H3068"]],[8,10,["H5973"]],[10,11,["H1732"]],[11,14,["H4324"]],[14,15,["H7586"]],[15,16,["H1323"]],[16,17,["H157"]],[17,18,[]]]},{"k":7705,"v":[[0,2,["H7586"]],[2,4,["H5750"]],[4,6,["H3254"]],[6,7,["H3372"]],[7,8,["H4480","H6440"]],[8,9,["H1732"]],[9,11,["H7586"]],[11,12,["H1961","(H853)"]],[12,13,["H1732"]],[13,14,["H341"]],[14,15,["H3605","H3117"]]]},{"k":7706,"v":[[0,3,["H8269"]],[3,6,["H6430"]],[6,8,["H3318"]],[8,13,["H1961"]],[13,14,["H4480","H167"]],[14,17,["H3318"]],[17,19,["H1732"]],[19,23,["H7919"]],[23,25,["H4480","H3605"]],[25,27,["H5650"]],[27,29,["H7586"]],[29,33,["H8034"]],[33,35,["H3966"]],[35,37,["H3365"]]]},{"k":7707,"v":[[0,2,["H7586"]],[2,3,["H1696"]],[3,4,["H413"]],[4,5,["H3083"]],[5,7,["H1121"]],[7,9,["H413"]],[9,10,["H3605"]],[10,12,["H5650"]],[12,16,["H4191","(H853)"]],[16,17,["H1732"]]]},{"k":7708,"v":[[0,2,["H3083"]],[2,3,["H7586"]],[3,4,["H1121"]],[4,5,["H2654"]],[5,6,["H3966"]],[6,8,["H1732"]],[8,10,["H3083"]],[10,11,["H5046"]],[11,12,["H1732"]],[12,13,["H559"]],[13,14,["H7586"]],[14,16,["H1"]],[16,17,["H1245"]],[17,19,["H4191"]],[19,21,["H6258"]],[21,25,["H4994"]],[25,29,["H8104"]],[29,32,["H1242"]],[32,34,["H3427"]],[34,37,["H5643"]],[37,41,["H2244"]]]},{"k":7709,"v":[[0,2,["H589"]],[2,5,["H3318"]],[5,7,["H5975"]],[7,8,["H3027"]],[8,10,["H1"]],[10,13,["H7704"]],[13,14,["H834","H8033"]],[14,15,["H859"]],[15,18,["H589"]],[18,20,["H1696"]],[20,21,["H413"]],[21,23,["H1"]],[23,27,["H4100"]],[27,29,["H7200"]],[29,33,["H5046"]],[33,34,[]]]},{"k":7710,"v":[[0,2,["H3083"]],[2,3,["H1696"]],[3,4,["H2896"]],[4,6,["H1732"]],[6,7,["H413"]],[7,8,["H7586"]],[8,10,["H1"]],[10,12,["H559"]],[12,13,["H413"]],[13,16,["H408"]],[16,18,["H4428"]],[18,19,["H2398"]],[19,22,["H5650"]],[22,24,["H1732"]],[24,25,["H3588"]],[25,28,["H3808"]],[28,29,["H2398"]],[29,33,["H3588"]],[33,35,["H4639"]],[35,40,["H3966"]],[40,41,["H2896"]]]},{"k":7711,"v":[[0,4,["H7760","(H853)"]],[4,6,["H5315"]],[6,9,["H3709"]],[9,11,["H5221","(H853)"]],[11,13,["H6430"]],[13,16,["H3068"]],[16,17,["H6213"]],[17,19,["H1419"]],[19,20,["H8668"]],[20,22,["H3605"]],[22,23,["H3478"]],[23,25,["H7200"]],[25,29,["H8055"]],[29,30,["H4100"]],[30,34,["H2398"]],[34,36,["H5355"]],[36,37,["H1818"]],[37,39,["H4191","(H853)"]],[39,40,["H1732"]],[40,43,["H2600"]]]},{"k":7712,"v":[[0,2,["H7586"]],[2,3,["H8085"]],[3,6,["H6963"]],[6,8,["H3083"]],[8,10,["H7586"]],[10,11,["H7650"]],[11,14,["H3068"]],[14,15,["H2416"]],[15,18,["H518"]],[18,20,["H4191"]]]},{"k":7713,"v":[[0,2,["H3083"]],[2,3,["H7121"]],[3,4,["H1732"]],[4,6,["H3083"]],[6,7,["H5046"]],[7,8,["(H853)"]],[8,9,["H3605"]],[9,10,["H428"]],[10,11,["H1697"]],[11,13,["H3083"]],[13,14,["H935","(H853)"]],[14,15,["H1732"]],[15,16,["H413"]],[16,17,["H7586"]],[17,20,["H1961"]],[20,23,["H6440"]],[23,27,["H8032","H865"]]]},{"k":7714,"v":[[0,3,["H1961"]],[3,4,["H4421"]],[4,5,["H3254"]],[5,7,["H1732"]],[7,9,["H3318"]],[9,11,["H3898"]],[11,14,["H6430"]],[14,16,["H5221"]],[16,20,["H1419"]],[20,21,["H4347"]],[21,24,["H5127"]],[24,25,["H4480","H6440"]],[25,26,[]]]},{"k":7715,"v":[[0,3,["H7451"]],[3,4,["H7307"]],[4,7,["H3068"]],[7,8,["H1961"]],[8,9,["H413"]],[9,10,["H7586"]],[10,12,["H1931"]],[12,13,["H3427"]],[13,16,["H1004"]],[16,19,["H2595"]],[19,22,["H3027"]],[22,24,["H1732"]],[24,25,["H5059"]],[25,28,["H3027"]]]},{"k":7716,"v":[[0,2,["H7586"]],[2,3,["H1245"]],[3,5,["H5221"]],[5,6,["H1732"]],[6,10,["H7023"]],[10,13,["H2595"]],[13,17,["H6362"]],[17,21,["H4480","H6440","H7586"]],[21,24,["H5221","(H853)"]],[24,26,["H2595"]],[26,29,["H7023"]],[29,31,["H1732"]],[31,32,["H5127"]],[32,34,["H4422"]],[34,35,["H1931"]],[35,36,["H3915"]]]},{"k":7717,"v":[[0,1,["H7586"]],[1,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H1732"]],[6,7,["H1004"]],[7,9,["H8104"]],[9,13,["H4191"]],[13,17,["H1242"]],[17,19,["H4324"]],[19,20,["H1732"]],[20,21,["H802"]],[21,22,["H5046"]],[22,24,["H559"]],[24,25,["H518"]],[25,27,["H4422"]],[27,28,["H369","(H853)"]],[28,30,["H5315"]],[30,32,["H3915"]],[32,34,["H4279"]],[34,35,["H859"]],[35,38,["H4191"]]]},{"k":7718,"v":[[0,2,["H4324"]],[2,5,["H3381","(H853)","H1732"]],[5,6,["H1157"]],[6,8,["H2474"]],[8,11,["H1980"]],[11,13,["H1272"]],[13,15,["H4422"]]]},{"k":7719,"v":[[0,2,["H4324"]],[2,3,["H3947","(H853)"]],[3,5,["H8655"]],[5,7,["H7760"]],[7,9,["H413"]],[9,11,["H4296"]],[11,13,["H7760"]],[13,15,["H3523"]],[15,17,["H5795"]],[17,21,["H4763"]],[21,23,["H3680"]],[23,27,["H899"]]]},{"k":7720,"v":[[0,3,["H7586"]],[3,4,["H7971"]],[4,5,["H4397"]],[5,7,["H3947","(H853)"]],[7,8,["H1732"]],[8,10,["H559"]],[10,11,["H1931"]],[11,13,["H2470"]]]},{"k":7721,"v":[[0,2,["H7586"]],[2,3,["H7971","(H853)"]],[3,5,["H4397"]],[5,8,["H7200","(H853)"]],[8,9,["H1732"]],[9,10,["H559"]],[10,13,["H5927","(H853)"]],[13,14,["H413"]],[14,18,["H4296"]],[18,22,["H4191"]],[22,23,[]]]},{"k":7722,"v":[[0,4,["H4397"]],[4,7,["H935"]],[7,8,["H2009"]],[8,12,["H8655"]],[12,13,["H413"]],[13,15,["H4296"]],[15,18,["H3523"]],[18,20,["H5795"]],[20,24,["H4763"]]]},{"k":7723,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H4324"]],[5,6,["H4100"]],[6,9,["H7411"]],[9,11,["H3602"]],[11,14,["H7971","(H853)"]],[14,16,["H341"]],[16,20,["H4422"]],[20,22,["H4324"]],[22,23,["H559","H413"]],[23,24,["H7586"]],[24,25,["H1931"]],[25,26,["H559"]],[26,27,["H413"]],[27,31,["H7971"]],[31,32,["H4100"]],[32,35,["H4191"]],[35,36,[]]]},{"k":7724,"v":[[0,2,["H1732"]],[2,3,["H1272"]],[3,5,["H4422"]],[5,7,["H935"]],[7,8,["H413"]],[8,9,["H8050"]],[9,11,["H7414"]],[11,13,["H5046"]],[13,14,["(H853)"]],[14,15,["H3605"]],[15,16,["H834"]],[16,17,["H7586"]],[17,19,["H6213"]],[19,23,["H1931"]],[23,25,["H8050"]],[25,26,["H1980"]],[26,28,["H3427"]],[28,30,["H5121"]]]},{"k":7725,"v":[[0,4,["H5046"]],[4,5,["H7586"]],[5,6,["H559"]],[6,7,["H2009"]],[7,8,["H1732"]],[8,11,["H5121"]],[11,13,["H7414"]]]},{"k":7726,"v":[[0,2,["H7586"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,6,["H3947","(H853)"]],[6,7,["H1732"]],[7,11,["H7200","(H853)"]],[11,13,["H3862"]],[13,16,["H5030"]],[16,17,["H5012"]],[17,19,["H8050"]],[19,20,["H5975"]],[20,22,["H5324"]],[22,23,["H5921"]],[23,26,["H7307"]],[26,28,["H430"]],[28,29,["H1961"]],[29,30,["H5921"]],[30,32,["H4397"]],[32,34,["H7586"]],[34,36,["H1992"]],[36,37,["H1571"]],[37,38,["H5012"]]]},{"k":7727,"v":[[0,5,["H5046"]],[5,6,["H7586"]],[6,8,["H7971"]],[8,9,["H312"]],[9,10,["H4397"]],[10,12,["H1992"]],[12,13,["H5012"]],[13,14,["H1571"]],[14,16,["H7586"]],[16,17,["H7971"]],[17,18,["H4397"]],[18,19,["H3254"]],[19,21,["H7992"]],[21,24,["H1992"]],[24,25,["H5012"]],[25,26,["H1571"]]]},{"k":7728,"v":[[0,2,["H1980"]],[2,3,["H1931"]],[3,4,["H1571"]],[4,6,["H7414"]],[6,8,["H935"]],[8,9,["H5704"]],[9,11,["H1419"]],[11,12,["H953"]],[12,13,["H834"]],[13,16,["H7906"]],[16,19,["H7592"]],[19,21,["H559"]],[21,22,["H375"]],[22,24,["H8050"]],[24,26,["H1732"]],[26,29,["H559"]],[29,30,["H2009"]],[30,34,["H5121"]],[34,36,["H7414"]]]},{"k":7729,"v":[[0,3,["H1980"]],[3,4,["H8033"]],[4,5,["H413"]],[5,6,["H5121"]],[6,8,["H7414"]],[8,11,["H7307"]],[11,13,["H430"]],[13,14,["H1961"]],[14,15,["H5921"]],[15,16,["H1931"]],[16,17,["H1571"]],[17,21,["H1980","H1980"]],[21,23,["H5012"]],[23,24,["H5704"]],[24,26,["H935"]],[26,28,["H5121"]],[28,30,["H7414"]]]},{"k":7730,"v":[[0,2,["H1931"]],[2,4,["H6584"]],[4,6,["H899"]],[6,7,["H1571"]],[7,9,["H5012"]],[9,10,["H6440"]],[10,11,["H8050"]],[11,14,["H1571"]],[14,17,["H5307"]],[17,18,["H6174"]],[18,19,["H3605"]],[19,20,["H1931"]],[20,21,["H3117"]],[21,23,["H3605"]],[23,25,["H3915"]],[25,26,["H5921","H3651"]],[26,28,["H559"]],[28,30,["H7586"]],[30,31,["H1571"]],[31,34,["H5030"]]]},{"k":7731,"v":[[0,2,["H1732"]],[2,3,["H1272"]],[3,5,["H4480","H5121"]],[5,7,["H7414"]],[7,9,["H935"]],[9,11,["H559"]],[11,12,["H6440"]],[12,13,["H3083"]],[13,14,["H4100"]],[14,17,["H6213"]],[17,18,["H4100"]],[18,21,["H5771"]],[21,23,["H4100"]],[23,26,["H2403"]],[26,27,["H6440"]],[27,29,["H1"]],[29,30,["H3588"]],[30,32,["H1245","(H853)"]],[32,34,["H5315"]]]},{"k":7732,"v":[[0,3,["H559"]],[3,7,["H2486"]],[7,10,["H3808"]],[10,11,["H4191"]],[11,12,["H2009"]],[12,14,["H1"]],[14,16,["H6213"]],[16,17,["H3808","H1697"]],[17,19,["H1419"]],[19,20,["H176"]],[20,21,["H6996"]],[21,26,["H3808","H1540"]],[26,27,["(H853)"]],[27,28,["H241"]],[28,30,["H4069"]],[30,33,["H1"]],[33,34,["H5641","(H853)"]],[34,35,["H2088"]],[35,36,["H1697"]],[36,37,["H4480"]],[37,39,["H2063"]],[39,41,["H369"]],[41,42,[]]]},{"k":7733,"v":[[0,2,["H1732"]],[2,3,["H7650"]],[3,4,["H5750"]],[4,6,["H559"]],[6,8,["H1"]],[8,10,["H3045","H3045"]],[10,11,["H3588"]],[11,14,["H4672"]],[14,15,["H2580"]],[15,18,["H5869"]],[18,21,["H559"]],[21,23,["H408"]],[23,24,["H3083"]],[24,25,["H3045"]],[25,26,["H2063"]],[26,27,["H6435"]],[27,30,["H6087"]],[30,32,["H199"]],[32,35,["H3068"]],[35,36,["H2416"]],[36,40,["H5315"]],[40,41,["H2416"]],[41,42,["H3588"]],[42,46,["H6587"]],[46,47,["H996"]],[47,50,["H4194"]]]},{"k":7734,"v":[[0,2,["H559"]],[2,3,["H3083"]],[3,4,["H413"]],[4,5,["H1732"]],[5,6,["H4100"]],[6,8,["H5315"]],[8,9,["H559"]],[9,13,["H6213"]],[13,16,[]]]},{"k":7735,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3083"]],[5,6,["H2009"]],[6,8,["H4279"]],[8,12,["H2320"]],[12,14,["H595"]],[14,19,["H3427","H3427"]],[19,20,["H5973"]],[20,22,["H4428"]],[22,24,["H398"]],[24,28,["H7971"]],[28,33,["H5641"]],[33,36,["H7704"]],[36,37,["H5704"]],[37,39,["H7992"]],[39,42,["H6153"]]]},{"k":7736,"v":[[0,1,["H518"]],[1,3,["H1"]],[3,6,["H6485","H6485"]],[6,9,["H559"]],[9,10,["H1732"]],[10,12,["H7592","H7592"]],[12,14,["H4480"]],[14,19,["H7323"]],[19,21,["H1035"]],[21,23,["H5892"]],[23,24,["H3588"]],[24,28,["H3117"]],[28,29,["H2077"]],[29,30,["H8033"]],[30,32,["H3605"]],[32,34,["H4940"]]]},{"k":7737,"v":[[0,1,["H518"]],[1,3,["H559"]],[3,4,["H3541"]],[4,7,["H2896"]],[7,9,["H5650"]],[9,12,["H7965"]],[12,14,["H518"]],[14,18,["H2734","H2734"]],[18,21,["H3045"]],[21,22,["H3588"]],[22,23,["H7451"]],[23,25,["H3615"]],[25,26,["H4480","H5973"]],[26,27,[]]]},{"k":7738,"v":[[0,4,["H6213"]],[4,5,["H2617"]],[5,6,["H5921"]],[6,8,["H5650"]],[8,9,["H3588"]],[9,12,["H935","(H853)"]],[12,14,["H5650"]],[14,17,["H1285"]],[17,20,["H3068"]],[20,21,["H5973"]],[21,24,["H518"]],[24,26,["H3426"]],[26,29,["H5771"]],[29,30,["H4191"]],[30,32,["H859"]],[32,33,["H5704"]],[33,34,["H4100"]],[34,37,["H935"]],[37,41,["H1"]]]},{"k":7739,"v":[[0,2,["H3083"]],[2,3,["H559"]],[3,6,["H2486"]],[6,9,["H3588"]],[9,10,["H518"]],[10,13,["H3045","H3045"]],[13,14,["H3588"]],[14,15,["H7451"]],[15,17,["H3615"]],[17,18,["H4480","H5973"]],[18,20,["H1"]],[20,22,["H935"]],[22,23,["H5921"]],[23,27,["H3808"]],[27,29,["H5046"]],[29,31,[]]]},{"k":7740,"v":[[0,2,["H559"]],[2,3,["H1732"]],[3,4,["H413"]],[4,5,["H3083"]],[5,6,["H4310"]],[6,8,["H5046"]],[8,10,["H176"]],[10,11,["H4100"]],[11,14,["H1"]],[14,15,["H6030"]],[15,17,["H7186"]]]},{"k":7741,"v":[[0,2,["H3083"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,6,["H1980"]],[6,11,["H3318"]],[11,14,["H7704"]],[14,18,["H3318"]],[18,19,["H8147"]],[19,24,["H7704"]]]},{"k":7742,"v":[[0,2,["H3083"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,7,["H3068"]],[7,8,["H430"]],[8,10,["H3478"]],[10,11,["H3588"]],[11,14,["H2713","(H853)"]],[14,16,["H1"]],[16,19,["H4279"]],[19,21,["H6256"]],[21,24,["H7992"]],[24,27,["H2009"]],[27,31,["H2896"]],[31,32,["H413"]],[32,33,["H1732"]],[33,36,["H227"]],[36,37,["H7971"]],[37,38,["H3808"]],[38,39,["H413"]],[39,44,["H1540","(H853)","H241"]]]},{"k":7743,"v":[[0,2,["H3068"]],[2,3,["H6213"]],[3,4,["H3541"]],[4,6,["H3541"]],[6,7,["H3254"]],[7,9,["H3083"]],[9,11,["H3588"]],[11,13,["H3190","H413"]],[13,15,["H1"]],[15,18,["(H853)"]],[18,19,["H7451"]],[19,25,["H1540","(H853)","H241"]],[25,29,["H7971"]],[29,33,["H1980"]],[33,35,["H7965"]],[35,38,["H3068"]],[38,39,["H1961"]],[39,40,["H5973"]],[40,42,["H834"]],[42,45,["H1961"]],[45,46,["H5973"]],[46,48,["H1"]]]},{"k":7744,"v":[[0,4,["H3808"]],[4,6,["H518"]],[6,7,["H5750"]],[7,9,["H2416"]],[9,10,["H6213","H5973"]],[10,13,["H2617"]],[13,16,["H3068"]],[16,19,["H4191"]],[19,20,["H3808"]]]},{"k":7745,"v":[[0,5,["H3808"]],[5,7,["H3772","(H853)"]],[7,9,["H2617"]],[9,10,["H4480","H5973"]],[10,12,["H1004"]],[12,14,["H5704","H5769"]],[14,16,["H3808"]],[16,19,["H3068"]],[19,22,["H3772","(H853)"]],[22,24,["H341"]],[24,26,["H1732"]],[26,28,["H376"]],[28,31,["H4480","H5921","H6440"]],[31,34,["H127"]]]},{"k":7746,"v":[[0,2,["H3083"]],[2,3,["H3772"]],[3,6,["H5973"]],[6,8,["H1004"]],[8,10,["H1732"]],[10,14,["H3068"]],[14,16,["H1245"]],[16,20,["H4480","H3027"]],[20,22,["H1732"]],[22,23,["H341"]]]},{"k":7747,"v":[[0,2,["H3083"]],[2,3,["(H853)"]],[3,4,["H1732"]],[4,6,["H7650"]],[6,7,["H3254"]],[7,10,["H160"]],[10,12,["H3588"]],[12,14,["H157"]],[14,18,["H160"]],[18,21,["H5315"]]]},{"k":7748,"v":[[0,2,["H3083"]],[2,3,["H559"]],[3,7,["H4279"]],[7,11,["H2320"]],[11,16,["H6485"]],[16,17,["H3588"]],[17,19,["H4186"]],[19,22,["H6485"]]]},{"k":7749,"v":[[0,7,["H8027"]],[7,12,["H3381"]],[12,13,["H3966"]],[13,15,["H935"]],[15,16,["H413"]],[16,18,["H4725"]],[18,19,["H834"]],[19,23,["H5641"]],[23,24,["H8033","H3117"]],[24,26,["H4639"]],[26,32,["H3427"]],[32,33,["H681"]],[33,35,["H68"]],[35,36,["H237"]]]},{"k":7750,"v":[[0,2,["H589"]],[2,4,["H3384"]],[4,5,["H7969"]],[5,6,["H2671"]],[6,9,["H6654"]],[9,14,["H7971"]],[14,17,["H4307"]]]},{"k":7751,"v":[[0,2,["H2009"]],[2,5,["H7971","(H853)"]],[5,7,["H5288"]],[7,9,["H1980"]],[9,11,["H4672","(H853)"]],[11,13,["H2671"]],[13,14,["H518"]],[14,17,["H559","H559"]],[17,20,["H5288"]],[20,21,["H2009"]],[21,23,["H2671"]],[23,27,["H4480","H2008"]],[27,30,["H3947"]],[30,33,["H935"]],[33,35,["H3588"]],[35,38,["H7965"]],[38,42,["H369"]],[42,43,["H1697"]],[43,46,["H3068"]],[46,47,["H2416"]]]},{"k":7752,"v":[[0,2,["H518"]],[2,4,["H559"]],[4,5,["H3541"]],[5,9,["H5958"]],[9,10,["H2009"]],[10,12,["H2671"]],[12,14,["H4480","H1973"]],[14,18,["H1980"]],[18,19,["H3588"]],[19,21,["H3068"]],[21,25,["H7971"]]]},{"k":7753,"v":[[0,5,["H1697"]],[5,6,["H834"]],[6,7,["H859"]],[7,9,["H589"]],[9,11,["H1696"]],[11,13,["H2009"]],[13,15,["H3068"]],[15,17,["H996"]],[17,22,["H5704","H5769"]]]},{"k":7754,"v":[[0,2,["H1732"]],[2,4,["H5641"]],[4,7,["H7704"]],[7,12,["H2320"]],[12,14,["H1961"]],[14,16,["H4428"]],[16,19,["H3427"]],[19,21,["H398"]],[21,22,["H3899"]]]},{"k":7755,"v":[[0,3,["H4428"]],[3,4,["H3427"]],[4,5,["H5921"]],[5,7,["H4186"]],[7,11,["H6471","H6471"]],[11,13,["H413"]],[13,15,["H4186"]],[15,18,["H7023"]],[18,20,["H3083"]],[20,21,["H6965"]],[21,23,["H74"]],[23,24,["H3427"]],[24,26,["H7586"]],[26,27,["H4480","H6654"]],[27,29,["H1732"]],[29,30,["H4725"]],[30,32,["H6485"]]]},{"k":7756,"v":[[0,2,["H7586"]],[2,3,["H1696"]],[3,4,["H3808"]],[4,6,["H3972"]],[6,7,["H1931"]],[7,8,["H3117"]],[8,9,["H3588"]],[9,11,["H559"]],[11,14,["H4745"]],[14,16,["H1931"]],[16,18,["H1115"]],[18,19,["H2889"]],[19,20,["H3588"]],[20,23,["H3808"]],[23,24,["H2889"]]]},{"k":7757,"v":[[0,5,["H1961"]],[5,8,["H4480","H4283"]],[8,12,["H8145"]],[12,16,["H2320"]],[16,18,["H1732"]],[18,19,["H4725"]],[19,21,["H6485"]],[21,23,["H7586"]],[23,24,["H559"]],[24,25,["H413"]],[25,26,["H3083"]],[26,28,["H1121"]],[28,29,["H4069"]],[29,30,["H935"]],[30,31,["H3808"]],[31,33,["H1121"]],[33,35,["H3448"]],[35,36,["H413"]],[36,37,["H3899"]],[37,38,["H1571"]],[38,39,["H8543"]],[39,40,["H1571"]],[40,42,["H3117"]]]},{"k":7758,"v":[[0,2,["H3083"]],[2,3,["H6030","(H853)"]],[3,4,["H7586"]],[4,5,["H1732"]],[5,7,["H7592","H7592"]],[7,9,["H4480","H5973"]],[9,13,["H5704"]],[13,14,["H1035"]]]},{"k":7759,"v":[[0,3,["H559"]],[3,6,["H7971"]],[6,9,["H4994"]],[9,10,["H3588"]],[10,12,["H4940"]],[12,15,["H2077"]],[15,18,["H5892"]],[18,21,["H251"]],[21,22,["H1931"]],[22,24,["H6680"]],[24,30,["H6258"]],[30,31,["H518"]],[31,34,["H4672"]],[34,35,["H2580"]],[35,38,["H5869"]],[38,42,["H4422"]],[42,45,["H4994"]],[45,47,["H7200","(H853)"]],[47,49,["H251"]],[49,50,["H5921","H3651"]],[50,52,["H935"]],[52,53,["H3808"]],[53,54,["H413"]],[54,56,["H4428"]],[56,57,["H7979"]]]},{"k":7760,"v":[[0,2,["H7586"]],[2,3,["H639"]],[3,5,["H2734"]],[5,7,["H3083"]],[7,10,["H559"]],[10,14,["H1121"]],[14,17,["H5753"]],[17,18,["H4780"]],[18,21,["H3808"]],[21,23,["H3045"]],[23,24,["H3588"]],[24,25,["H859"]],[25,27,["H977"]],[27,29,["H1121"]],[29,31,["H3448"]],[31,35,["H1322"]],[35,39,["H1322"]],[39,42,["H517"]],[42,43,["H6172"]]]},{"k":7761,"v":[[0,1,["H3588"]],[1,3,["H3605","H3117"]],[3,4,["H834"]],[4,6,["H1121"]],[6,8,["H3448"]],[8,9,["H2416"]],[9,10,["H5921"]],[10,12,["H127"]],[12,13,["H859"]],[13,15,["H3808"]],[15,17,["H3559"]],[17,20,["H4438"]],[20,22,["H6258"]],[22,23,["H7971"]],[23,25,["H3947","(H853)"]],[25,27,["H413"]],[27,29,["H3588"]],[29,30,["H1931"]],[30,33,["H1121","H4194"]]]},{"k":7762,"v":[[0,2,["H3083"]],[2,3,["H6030","(H853)"]],[3,4,["H7586"]],[4,6,["H1"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H4100"]],[11,15,["H4191"]],[15,16,["H4100"]],[16,19,["H6213"]]]},{"k":7763,"v":[[0,2,["H7586"]],[2,3,["H2904","(H853)"]],[3,5,["H2595"]],[5,6,["H5921"]],[6,9,["H5221"]],[9,12,["H3083"]],[12,13,["H3045"]],[13,14,["H3588"]],[14,15,["H1931"]],[15,17,["H3615"]],[17,18,["H4480","H5973"]],[18,20,["H1"]],[20,22,["H4191","(H853)"]],[22,23,["H1732"]]]},{"k":7764,"v":[[0,2,["H3083"]],[2,3,["H6965"]],[3,4,["H4480","H5973"]],[4,6,["H7979"]],[6,8,["H2750"]],[8,9,["H639"]],[9,12,["H398"]],[12,13,["H3808"]],[13,14,["H3899"]],[14,16,["H8145"]],[16,17,["H3117"]],[17,20,["H2320"]],[20,21,["H3588"]],[21,24,["H6087"]],[24,25,["H413"]],[25,26,["H1732"]],[26,27,["H3588"]],[27,29,["H1"]],[29,33,["H3637"]]]},{"k":7765,"v":[[0,5,["H1961"]],[5,8,["H1242"]],[8,10,["H3083"]],[10,12,["H3318"]],[12,15,["H7704"]],[15,19,["H4150"]],[19,21,["H1732"]],[21,24,["H6996"]],[24,25,["H5288"]],[25,26,["H5973"]],[26,27,[]]]},{"k":7766,"v":[[0,3,["H559"]],[3,6,["H5288"]],[6,7,["H7323"]],[7,9,["H4672"]],[9,10,["H4994","(H853)"]],[10,12,["H2671"]],[12,13,["H834"]],[13,14,["H595"]],[14,15,["H3384"]],[15,19,["H5288"]],[19,20,["H7323"]],[20,21,["H1931"]],[21,22,["H3384"]],[22,24,["H2678"]],[24,25,["H5674"]],[25,26,[]]]},{"k":7767,"v":[[0,4,["H5288"]],[4,6,["H935"]],[6,7,["H5704"]],[7,9,["H4725"]],[9,12,["H2678"]],[12,13,["H834"]],[13,14,["H3083"]],[14,16,["H3384"]],[16,17,["H3083"]],[17,18,["H7121"]],[18,19,["H310"]],[19,21,["H5288"]],[21,23,["H559"]],[23,25,["H3808"]],[25,27,["H2678"]],[27,28,["H4480","H1973"]],[28,29,[]]]},{"k":7768,"v":[[0,2,["H3083"]],[2,3,["H7121"]],[3,4,["H310"]],[4,6,["H5288"]],[6,8,["H2363"]],[8,9,["H4120"]],[9,10,["H5975"]],[10,11,["H408"]],[11,13,["H3083"]],[13,14,["H5288"]],[14,16,["H3950","(H853)"]],[16,18,["H2678"]],[18,20,["H935"]],[20,21,["H413"]],[21,23,["H113"]]]},{"k":7769,"v":[[0,3,["H5288"]],[3,4,["H3045"]],[4,5,["H3808"]],[5,7,["H3972"]],[7,8,["H389"]],[8,9,["H3083"]],[9,11,["H1732"]],[11,12,["H3045","(H853)"]],[12,14,["H1697"]]]},{"k":7770,"v":[[0,2,["H3083"]],[2,3,["H5414","(H853)"]],[3,5,["H3627"]],[5,6,["H413"]],[6,7,["H834"]],[7,8,["H5288"]],[8,10,["H559"]],[10,13,["H1980"]],[13,14,["H935"]],[14,18,["H5892"]]]},{"k":7771,"v":[[0,6,["H5288"]],[6,8,["H935"]],[8,9,["H1732"]],[9,10,["H6965"]],[10,15,["H4480","H681"]],[15,17,["H5045"]],[17,19,["H5307"]],[19,22,["H639"]],[22,25,["H776"]],[25,28,["H7812"]],[28,29,["H7969"]],[29,30,["H6471"]],[30,33,["H5401"]],[33,34,["H376","(H853)"]],[34,35,["H7453"]],[35,37,["H1058"]],[37,38,["H376"]],[38,39,["H854"]],[39,40,["H7453"]],[40,41,["H5704"]],[41,42,["H1732"]],[42,43,["H1431"]]]},{"k":7772,"v":[[0,2,["H3083"]],[2,3,["H559"]],[3,5,["H1732"]],[5,6,["H1980"]],[6,8,["H7965"]],[8,10,["H834"]],[10,13,["H7650"]],[13,14,["H8147"]],[14,16,["H587"]],[16,19,["H8034"]],[19,22,["H3068"]],[22,23,["H559"]],[23,25,["H3068"]],[25,26,["H1961"]],[26,27,["H996"]],[27,32,["H996"]],[32,34,["H2233"]],[34,37,["H2233"]],[37,39,["H5704","H5769"]],[39,42,["H6965"]],[42,44,["H1980"]],[44,46,["H3083"]],[46,47,["H935"]],[47,50,["H5892"]]]},{"k":7773,"v":[[0,2,["H935"]],[2,3,["H1732"]],[3,5,["H5011"]],[5,6,["H413"]],[6,7,["H288"]],[7,9,["H3548"]],[9,11,["H288"]],[11,13,["H2729"]],[13,16,["H7125"]],[16,18,["H1732"]],[18,20,["H559"]],[20,23,["H4069"]],[23,25,["H859"]],[25,26,["H905"]],[26,28,["H369"]],[28,29,["H376"]],[29,30,["H854"]],[30,31,[]]]},{"k":7774,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H288"]],[5,7,["H3548"]],[7,9,["H4428"]],[9,11,["H6680"]],[11,14,["H1697"]],[14,17,["H559"]],[17,18,["H413"]],[18,21,["H408"]],[21,22,["H376"]],[22,23,["H3045"]],[23,25,["H3972"]],[25,26,["(H853)"]],[26,28,["H1697"]],[28,29,["H834"]],[29,30,["H595"]],[30,31,["H7971"]],[31,34,["H834"]],[34,37,["H6680"]],[37,42,["H3045"]],[42,44,["H5288"]],[44,45,["H413"]],[45,46,["H6423"]],[46,48,["H492"]],[48,50,["H4725"]]]},{"k":7775,"v":[[0,1,["H6258"]],[1,3,["H4100"]],[3,4,["H3426"]],[4,5,["H8478"]],[5,7,["H3027"]],[7,8,["H5414"]],[8,10,["H2568"]],[10,13,["H3899"]],[13,16,["H3027"]],[16,17,["H176"]],[17,21,["H4672"]]]},{"k":7776,"v":[[0,3,["H3548"]],[3,4,["H6030","(H853)"]],[4,5,["H1732"]],[5,7,["H559"]],[7,10,["H369"]],[10,11,["H2455"]],[11,12,["H3899"]],[12,13,["H413","H8478"]],[13,15,["H3027"]],[15,16,["H3588","H518"]],[16,18,["H3426"]],[18,19,["H6944"]],[19,20,["H3899"]],[20,21,["H518"]],[21,24,["H5288"]],[24,27,["H8104"]],[27,29,["H389"]],[29,31,["H4480","H802"]]]},{"k":7777,"v":[[0,2,["H1732"]],[2,3,["H6030","(H853)"]],[3,5,["H3548"]],[5,7,["H559"]],[7,10,["H3588","H518"]],[10,13,["H802"]],[13,16,["H6113"]],[16,21,["H8032"]],[21,22,["H8543"]],[22,26,["H3318"]],[26,29,["H3627"]],[29,33,["H5288"]],[33,35,["H6944"]],[35,42,["H1870"]],[42,43,["H2455"]],[43,44,["H637"]],[44,45,["H3588"]],[45,48,["H6942"]],[48,50,["H3117"]],[50,53,["H3627"]]]},{"k":7778,"v":[[0,3,["H3548"]],[3,4,["H5414"]],[4,6,["H6944"]],[6,8,["H3588"]],[8,10,["H1961"]],[10,11,["H3808"]],[11,12,["H3899"]],[12,13,["H8033"]],[13,14,["H3588","H518"]],[14,16,["H3899","H6440"]],[16,19,["H5493"]],[19,21,["H4480","H6440"]],[21,23,["H3068"]],[23,25,["H7760"]],[25,26,["H2527"]],[26,27,["H3899"]],[27,30,["H3117"]],[30,35,["H3947"]]]},{"k":7779,"v":[[0,4,["H376"]],[4,7,["H4480","H5650"]],[7,9,["H7586"]],[9,11,["H8033"]],[11,12,["H1931"]],[12,13,["H3117"]],[13,14,["H6113"]],[14,15,["H6440"]],[15,17,["H3068"]],[17,20,["H8034"]],[20,22,["H1673"]],[22,24,["H130"]],[24,26,["H47"]],[26,29,["H7462"]],[29,30,["H834"]],[30,33,["H7586"]]]},{"k":7780,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H288"]],[5,8,["H3426"]],[8,9,["H371"]],[9,10,["H6311"]],[10,11,["H8478"]],[11,13,["H3027"]],[13,14,["H2595"]],[14,15,["H176"]],[15,16,["H2719"]],[16,17,["H3588"]],[17,20,["H1571","H3808"]],[20,21,["H3947"]],[21,23,["H2719"]],[23,24,["H1571"]],[24,26,["H3627"]],[26,27,["H3027"]],[27,29,["H3588"]],[29,31,["H4428"]],[31,32,["H1697"]],[32,33,["H1961"]],[33,34,["H5169"]]]},{"k":7781,"v":[[0,3,["H3548"]],[3,4,["H559"]],[4,6,["H2719"]],[6,8,["H1555"]],[8,10,["H6430"]],[10,11,["H834"]],[11,13,["H5221"]],[13,16,["H6010"]],[16,18,["H425"]],[18,19,["H2009"]],[19,20,["H1931"]],[20,23,["H3874"]],[23,26,["H8071"]],[26,27,["H310"]],[27,29,["H646"]],[29,30,["H518"]],[30,33,["H3947"]],[33,35,["H3947"]],[35,37,["H3588"]],[37,40,["H369"]],[40,41,["H312"]],[41,42,["H2108"]],[42,44,["H2088"]],[44,46,["H1732"]],[46,47,["H559"]],[47,50,["H369"]],[50,53,["H5414"]],[53,55,[]]]},{"k":7782,"v":[[0,2,["H1732"]],[2,3,["H6965"]],[3,5,["H1272"]],[5,6,["H1931"]],[6,7,["H3117"]],[7,10,["H4480","H6440"]],[10,11,["H7586"]],[11,13,["H935"]],[13,14,["H413"]],[14,15,["H397"]],[15,17,["H4428"]],[17,19,["H1661"]]]},{"k":7783,"v":[[0,3,["H5650"]],[3,5,["H397"]],[5,6,["H559"]],[6,7,["H413"]],[7,10,["H3808"]],[10,11,["H2088"]],[11,12,["H1732"]],[12,14,["H4428"]],[14,17,["H776"]],[17,20,["H3808"]],[20,24,["H6030"]],[24,26,["H2088"]],[26,28,["H4246"]],[28,29,["H559"]],[29,30,["H7586"]],[30,32,["H5221"]],[32,34,["H505"]],[34,36,["H1732"]],[36,39,["H7233"]]]},{"k":7784,"v":[[0,2,["H1732"]],[2,4,["H7760","(H853)"]],[4,5,["H428"]],[5,6,["H1697"]],[6,9,["H3824"]],[9,12,["H3966"]],[12,13,["H3372"]],[13,14,["H4480","H6440"]],[14,15,["H397"]],[15,17,["H4428"]],[17,19,["H1661"]]]},{"k":7785,"v":[[0,3,["H8138","(H853)"]],[3,5,["H2940"]],[5,6,["H5869"]],[6,11,["H1984"]],[11,14,["H3027"]],[14,16,["H8427"]],[16,17,["H5921"]],[17,19,["H1817"]],[19,22,["H8179"]],[22,26,["H7388"]],[26,28,["H3381"]],[28,29,["H413"]],[29,31,["H2206"]]]},{"k":7786,"v":[[0,2,["H559"]],[2,3,["H397"]],[3,4,["H413"]],[4,6,["H5650"]],[6,7,["H2009"]],[7,9,["H7200"]],[9,11,["H376"]],[11,13,["H7696"]],[13,14,["H4100"]],[14,18,["H935"]],[18,20,["H413"]],[20,21,[]]]},{"k":7787,"v":[[0,2,["H589"]],[2,3,["H2638"]],[3,6,["H7696"]],[6,7,["H3588"]],[7,10,["H935","(H853)"]],[10,11,["H2088"]],[11,17,["H7696"]],[17,20,["H5921"]],[20,22,["H2088"]],[22,24,["H935"]],[24,25,["H413"]],[25,27,["H1004"]]]},{"k":7788,"v":[[0,1,["H1732"]],[1,3,["H1980"]],[3,4,["H4480","H8033"]],[4,6,["H4422"]],[6,7,["H413"]],[7,9,["H4631"]],[9,10,["H5725"]],[10,14,["H251"]],[14,16,["H3605"]],[16,18,["H1"]],[18,19,["H1004"]],[19,20,["H8085"]],[20,24,["H3381"]],[24,25,["H8033"]],[25,26,["H413"]],[26,27,[]]]},{"k":7789,"v":[[0,2,["H3605"]],[2,3,["H376"]],[3,7,["H4689"]],[7,9,["H3605"]],[9,10,["H376"]],[10,11,["H834"]],[11,14,["H5378"]],[14,16,["H3605"]],[16,17,["H376"]],[17,20,["H4751","H5315"]],[20,22,["H6908"]],[22,23,["H413"]],[23,27,["H1961"]],[27,29,["H8269"]],[29,30,["H5921"]],[30,34,["H1961"]],[34,35,["H5973"]],[35,38,["H702"]],[38,39,["H3967"]],[39,40,["H376"]]]},{"k":7790,"v":[[0,2,["H1732"]],[2,3,["H1980"]],[3,4,["H4480","H8033"]],[4,6,["H4708"]],[6,8,["H4124"]],[8,11,["H559"]],[11,12,["H413"]],[12,14,["H4428"]],[14,16,["H4124"]],[16,19,["H1"]],[19,22,["H517"]],[22,25,["H4994"]],[25,27,["H3318"]],[27,30,["H854"]],[30,32,["H5704","H834"]],[32,34,["H3045"]],[34,35,["H4100"]],[35,36,["H430"]],[36,38,["H6213"]],[38,40,[]]]},{"k":7791,"v":[[0,3,["H5148"]],[3,4,["(H853)"]],[4,5,["H6440"]],[5,7,["H4428"]],[7,9,["H4124"]],[9,12,["H3427"]],[12,13,["H5973"]],[13,15,["H3605"]],[15,17,["H3117"]],[17,19,["H1732"]],[19,20,["H1961"]],[20,23,["H4686"]]]},{"k":7792,"v":[[0,3,["H5030"]],[3,4,["H1410"]],[4,5,["H559"]],[5,6,["H413"]],[6,7,["H1732"]],[7,8,["H3427"]],[8,9,["H3808"]],[9,12,["H4686"]],[12,13,["H1980"]],[13,15,["H935"]],[15,19,["H776"]],[19,21,["H3063"]],[21,23,["H1732"]],[23,24,["H1980"]],[24,26,["H935"]],[26,29,["H3293"]],[29,31,["H2802"]]]},{"k":7793,"v":[[0,2,["H7586"]],[2,3,["H8085"]],[3,4,["H3588"]],[4,5,["H1732"]],[5,7,["H3045"]],[7,10,["H376"]],[10,11,["H834"]],[11,13,["H854"]],[13,16,["H7586"]],[16,17,["H3427"]],[17,19,["H1390"]],[19,20,["H8478"]],[20,22,["H815"]],[22,24,["H7414"]],[24,27,["H2595"]],[27,30,["H3027"]],[30,32,["H3605"]],[32,34,["H5650"]],[34,36,["H5324"]],[36,37,["H5921"]],[37,38,[]]]},{"k":7794,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,6,["H5650"]],[6,8,["H5324"]],[8,9,["H5921"]],[9,11,["H8085"]],[11,12,["H4994"]],[12,14,["H1145"]],[14,17,["H1121"]],[17,19,["H3448"]],[19,20,["H5414"]],[20,22,["H3605"]],[22,25,["H7704"]],[25,27,["H3754"]],[27,29,["H7760"]],[29,31,["H3605"]],[31,32,["H8269"]],[32,34,["H505"]],[34,36,["H8269"]],[36,38,["H3967"]]]},{"k":7795,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,6,["H7194"]],[6,7,["H5921"]],[7,12,["H369"]],[12,14,["H1540","(H853)","H241"]],[14,18,["H1121"]],[18,22,["H3772"]],[22,23,["H5973"]],[23,25,["H1121"]],[25,27,["H3448"]],[27,31,["H369"]],[31,32,["H4480"]],[32,36,["H2470"]],[36,37,["H5921"]],[37,41,["H1540","(H853)","H241"]],[41,43,["H3588"]],[43,45,["H1121"]],[45,48,["H6965","(H853)"]],[48,50,["H5650"]],[50,51,["H5921"]],[51,56,["H693"]],[56,59,["H2088"]],[59,60,["H3117"]]]},{"k":7796,"v":[[0,2,["H6030"]],[2,3,["H1673"]],[3,5,["H130"]],[5,6,["H1931"]],[6,8,["H5324"]],[8,9,["H5921"]],[9,11,["H5650"]],[11,13,["H7586"]],[13,15,["H559"]],[15,17,["H7200","(H853)"]],[17,19,["H1121"]],[19,21,["H3448"]],[21,22,["H935"]],[22,24,["H5011"]],[24,25,["H413"]],[25,26,["H288"]],[26,28,["H1121"]],[28,30,["H285"]]]},{"k":7797,"v":[[0,3,["H7592"]],[3,6,["H3068"]],[6,10,["H5414"]],[10,12,["H6720"]],[12,14,["H5414"]],[14,17,["H2719"]],[17,19,["H1555"]],[19,21,["H6430"]]]},{"k":7798,"v":[[0,3,["H4428"]],[3,4,["H7971"]],[4,6,["H7121","(H853)"]],[6,7,["H288"]],[7,9,["H3548"]],[9,11,["H1121"]],[11,13,["H285"]],[13,15,["H3605"]],[15,17,["H1"]],[17,18,["H1004"]],[18,20,["H3548"]],[20,21,["H834"]],[21,24,["H5011"]],[24,27,["H935"]],[27,28,["H3605"]],[28,31,["H413"]],[31,33,["H4428"]]]},{"k":7799,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H8085"]],[4,5,["H4994"]],[5,7,["H1121"]],[7,9,["H285"]],[9,12,["H559"]],[12,13,["H2009"]],[13,17,["H113"]]]},{"k":7800,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4100"]],[6,9,["H7194"]],[9,10,["H5921"]],[10,12,["H859"]],[12,15,["H1121"]],[15,17,["H3448"]],[17,22,["H5414"]],[22,24,["H3899"]],[24,27,["H2719"]],[27,30,["H7592"]],[30,32,["H430"]],[32,38,["H6965"]],[38,39,["H413"]],[39,44,["H693"]],[44,47,["H2088"]],[47,48,["H3117"]]]},{"k":7801,"v":[[0,2,["H288"]],[2,3,["H6030","(H853)"]],[3,5,["H4428"]],[5,7,["H559"]],[7,9,["H4310"]],[9,12,["H539"]],[12,14,["H3605"]],[14,16,["H5650"]],[16,18,["H1732"]],[18,22,["H4428"]],[22,25,["H2860"]],[25,27,["H5493"]],[27,28,["H413"]],[28,30,["H4928"]],[30,33,["H3513"]],[33,36,["H1004"]]]},{"k":7802,"v":[[0,3,["H3117"]],[3,4,["H2490"]],[4,6,["H7592"]],[6,8,["H430"]],[8,13,["H2486"]],[13,17,["H408"]],[17,19,["H4428"]],[19,20,["H7760"]],[20,22,["H1697"]],[22,25,["H5650"]],[25,28,["H3605"]],[28,30,["H1004"]],[30,33,["H1"]],[33,34,["H3588"]],[34,36,["H5650"]],[36,37,["H3045"]],[37,38,["H3808"]],[38,40,["H3605"]],[40,41,["H2063"]],[41,42,["H6996"]],[42,43,["H176"]],[43,44,["H1419"]]]},{"k":7803,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,8,["H4191","H4191"]],[8,9,["H288"]],[9,10,["H859"]],[10,12,["H3605"]],[12,14,["H1"]],[14,15,["H1004"]]]},{"k":7804,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H7323"]],[7,9,["H5324"]],[9,10,["H5921"]],[10,12,["H5437"]],[12,14,["H4191"]],[14,16,["H3548"]],[16,19,["H3068"]],[19,20,["H3588"]],[20,22,["H3027"]],[22,23,["H1571"]],[23,25,["H5973"]],[25,26,["H1732"]],[26,28,["H3588"]],[28,30,["H3045"]],[30,31,["H3588"]],[31,32,["H1931"]],[32,33,["H1272"]],[33,36,["H3808"]],[36,37,["H1540","(H853)"]],[37,40,["H241"]],[40,43,["H5650"]],[43,46,["H4428"]],[46,47,["H14"]],[47,48,["H3808"]],[48,50,["H7971","(H853)"]],[50,52,["H3027"]],[52,54,["H6293"]],[54,57,["H3548"]],[57,60,["H3068"]]]},{"k":7805,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H1673"]],[6,7,["H5437"]],[7,8,["H859"]],[8,10,["H6293"]],[10,13,["H3548"]],[13,15,["H1673"]],[15,17,["H130"]],[17,18,["H5437"]],[18,20,["H1931"]],[20,21,["H6293"]],[21,24,["H3548"]],[24,26,["H4191"]],[26,28,["H1931"]],[28,29,["H3117"]],[29,30,["H8084"]],[30,32,["H2568"]],[32,33,["H376"]],[33,36,["H5375"]],[36,38,["H906"]],[38,39,["H646"]]]},{"k":7806,"v":[[0,2,["H5011"]],[2,4,["H5892"]],[4,7,["H3548"]],[7,8,["H5221"]],[8,12,["H6310"]],[12,15,["H2719"]],[15,17,["H4480","H376"]],[17,19,["H802"]],[19,20,["H4480","H5768"]],[20,22,["H3243"]],[22,24,["H7794"]],[24,26,["H2543"]],[26,28,["H7716"]],[28,31,["H6310"]],[31,34,["H2719"]]]},{"k":7807,"v":[[0,2,["H259"]],[2,5,["H1121"]],[5,7,["H288"]],[7,9,["H1121"]],[9,11,["H285"]],[11,12,["H8034"]],[12,13,["H54"]],[13,14,["H4422"]],[14,16,["H1272"]],[16,17,["H310"]],[17,18,["H1732"]]]},{"k":7808,"v":[[0,2,["H54"]],[2,3,["H5046"]],[3,4,["H1732"]],[4,5,["H3588"]],[5,6,["H7586"]],[6,8,["H2026","(H853)"]],[8,10,["H3068"]],[10,11,["H3548"]]]},{"k":7809,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H54"]],[5,7,["H3045"]],[7,9,["H1931"]],[9,10,["H3117"]],[10,11,["H3588"]],[11,12,["H1673"]],[12,14,["H130"]],[14,16,["H8033"]],[16,17,["H3588"]],[17,21,["H5046","H5046"]],[21,22,["H7586"]],[22,23,["H595"]],[23,25,["H5437"]],[25,29,["H3605"]],[29,31,["H5315"]],[31,34,["H1"]],[34,35,["H1004"]]]},{"k":7810,"v":[[0,1,["H3427"]],[1,3,["H854"]],[3,5,["H3372"]],[5,6,["H408"]],[6,7,["H3588"]],[7,9,["H834"]],[9,10,["H1245","(H853)"]],[10,12,["H5315"]],[12,13,["H1245","(H853)"]],[13,15,["H5315"]],[15,16,["H3588"]],[16,17,["H5973"]],[17,19,["H859"]],[19,23,["H4931"]]]},{"k":7811,"v":[[0,3,["H5046"]],[3,4,["H1732"]],[4,5,["H559"]],[5,6,["H2009"]],[6,8,["H6430"]],[8,9,["H3898"]],[9,11,["H7084"]],[11,13,["H1992"]],[13,14,["H8154","(H853)"]],[14,16,["H1637"]]]},{"k":7812,"v":[[0,2,["H1732"]],[2,3,["H7592"]],[3,6,["H3068"]],[6,7,["H559"]],[7,10,["H1980"]],[10,12,["H5221"]],[12,13,["H428"]],[13,14,["H6430"]],[14,17,["H3068"]],[17,18,["H559"]],[18,19,["H413"]],[19,20,["H1732"]],[20,21,["H1980"]],[21,23,["H5221"]],[23,25,["H6430"]],[25,27,["H3467","(H853)"]],[27,28,["H7084"]]]},{"k":7813,"v":[[0,2,["H1732"]],[2,3,["H376"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H2009"]],[7,8,["H587"]],[8,10,["H3372"]],[10,11,["H6311"]],[11,13,["H3063"]],[13,15,["H637"]],[15,18,["H3588"]],[18,20,["H1980"]],[20,22,["H7084"]],[22,23,["H413"]],[23,25,["H4634"]],[25,28,["H6430"]]]},{"k":7814,"v":[[0,2,["H1732"]],[2,3,["H7592"]],[3,6,["H3068"]],[6,7,["H5750"]],[7,8,["H3254"]],[8,11,["H3068"]],[11,12,["H6030"]],[12,15,["H559"]],[15,16,["H6965"]],[16,18,["H3381"]],[18,20,["H7084"]],[20,21,["H3588"]],[21,22,["H589"]],[22,24,["H5414","(H853)"]],[24,26,["H6430"]],[26,29,["H3027"]]]},{"k":7815,"v":[[0,2,["H1732"]],[2,5,["H376"]],[5,6,["H1980"]],[6,8,["H7084"]],[8,10,["H3898"]],[10,13,["H6430"]],[13,16,["H5090","(H853)"]],[16,18,["H4735"]],[18,20,["H5221"]],[20,24,["H1419"]],[24,25,["H4347"]],[25,27,["H1732"]],[27,28,["H3467","(H853)"]],[28,30,["H3427"]],[30,32,["H7084"]]]},{"k":7816,"v":[[0,5,["H1961"]],[5,7,["H54"]],[7,9,["H1121"]],[9,11,["H288"]],[11,12,["H1272"]],[12,13,["H413"]],[13,14,["H1732"]],[14,16,["H7084"]],[16,20,["H3381"]],[20,23,["H646"]],[23,26,["H3027"]]]},{"k":7817,"v":[[0,4,["H5046"]],[4,5,["H7586"]],[5,6,["H3588"]],[6,7,["H1732"]],[7,9,["H935"]],[9,11,["H7084"]],[11,13,["H7586"]],[13,14,["H559"]],[14,15,["H430"]],[15,17,["H5234"]],[17,21,["H3027"]],[21,22,["H3588"]],[22,26,["H5462"]],[26,28,["H935"]],[28,31,["H5892"]],[31,34,["H1817"]],[34,36,["H1280"]]]},{"k":7818,"v":[[0,2,["H7586"]],[2,3,["H8085","(H853)"]],[3,4,["H3605"]],[4,6,["H5971"]],[6,9,["H4421"]],[9,12,["H3381"]],[12,14,["H7084"]],[14,16,["H6696","H413"]],[16,17,["H1732"]],[17,20,["H376"]]]},{"k":7819,"v":[[0,2,["H1732"]],[2,3,["H3045"]],[3,4,["H3588"]],[4,5,["H7586"]],[5,7,["H2790"]],[7,8,["H7451"]],[8,9,["H5921"]],[9,13,["H559"]],[13,14,["H413"]],[14,15,["H54"]],[15,17,["H3548"]],[17,19,["H5066"]],[19,21,["H646"]]]},{"k":7820,"v":[[0,2,["H559"]],[2,3,["H1732"]],[3,5,["H3068"]],[5,6,["H430"]],[6,8,["H3478"]],[8,10,["H5650"]],[10,13,["H8085","H8085"]],[13,14,["H3588"]],[14,15,["H7586"]],[15,16,["H1245"]],[16,18,["H935"]],[18,19,["H413"]],[19,20,["H7084"]],[20,22,["H7843"]],[22,24,["H5892"]],[24,27,["H5668"]]]},{"k":7821,"v":[[0,3,["H1167"]],[3,5,["H7084"]],[5,8,["H5462"]],[8,11,["H3027"]],[11,13,["H7586"]],[13,15,["H3381"]],[15,16,["H834"]],[16,18,["H5650"]],[18,20,["H8085"]],[20,22,["H3068"]],[22,23,["H430"]],[23,25,["H3478"]],[25,28,["H4994"]],[28,29,["H5046"]],[29,31,["H5650"]],[31,34,["H3068"]],[34,35,["H559"]],[35,39,["H3381"]]]},{"k":7822,"v":[[0,2,["H559"]],[2,3,["H1732"]],[3,6,["H1167"]],[6,8,["H7084"]],[8,9,["H5462"]],[9,13,["H376"]],[13,16,["H3027"]],[16,18,["H7586"]],[18,21,["H3068"]],[21,22,["H559"]],[22,27,["H5462"]]]},{"k":7823,"v":[[0,2,["H1732"]],[2,5,["H376"]],[5,9,["H8337"]],[9,10,["H3967","(H376)"]],[10,11,["H6965"]],[11,13,["H3318"]],[13,16,["H4480","H7084"]],[16,18,["H1980"]],[18,19,["H834"]],[19,22,["H1980"]],[22,26,["H5046"]],[26,27,["H7586"]],[27,28,["H3588"]],[28,29,["H1732"]],[29,31,["H4422"]],[31,33,["H4480","H7084"]],[33,36,["H2308"]],[36,39,["H3318"]]]},{"k":7824,"v":[[0,2,["H1732"]],[2,3,["H3427"]],[3,6,["H4057"]],[6,9,["H4679"]],[9,11,["H3427"]],[11,14,["H2022"]],[14,17,["H4057"]],[17,19,["H2128"]],[19,21,["H7586"]],[21,22,["H1245"]],[22,24,["H3605"]],[24,25,["H3117"]],[25,27,["H430"]],[27,28,["H5414"]],[28,30,["H3808"]],[30,33,["H3027"]]]},{"k":7825,"v":[[0,2,["H1732"]],[2,3,["H7200"]],[3,4,["H3588"]],[4,5,["H7586"]],[5,8,["H3318"]],[8,10,["H1245","(H853)"]],[10,12,["H5315"]],[12,14,["H1732"]],[14,18,["H4057"]],[18,20,["H2128"]],[20,23,["H2793"]]]},{"k":7826,"v":[[0,2,["H3083"]],[2,3,["H7586"]],[3,4,["H1121"]],[4,5,["H6965"]],[5,7,["H1980"]],[7,8,["H413"]],[8,9,["H1732"]],[9,12,["H2793"]],[12,14,["H2388","(H853)"]],[14,16,["H3027"]],[16,18,["H430"]]]},{"k":7827,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3372"]],[6,7,["H408"]],[7,8,["H3588"]],[8,10,["H3027"]],[10,12,["H7586"]],[12,14,["H1"]],[14,16,["H3808"]],[16,17,["H4672"]],[17,20,["H859"]],[20,23,["H4427"]],[23,24,["H5921"]],[24,25,["H3478"]],[25,27,["H595"]],[27,29,["H1961"]],[29,30,["H4932"]],[30,34,["H3651"]],[34,35,["H1571"]],[35,36,["H7586"]],[36,38,["H1"]],[38,39,["H3045"]]]},{"k":7828,"v":[[0,3,["H8147"]],[3,4,["H3772"]],[4,6,["H1285"]],[6,7,["H6440"]],[7,9,["H3068"]],[9,11,["H1732"]],[11,12,["H3427"]],[12,15,["H2793"]],[15,17,["H3083"]],[17,18,["H1980"]],[18,21,["H1004"]]]},{"k":7829,"v":[[0,3,["H5927"]],[3,5,["H2130"]],[5,6,["H413"]],[6,7,["H7586"]],[7,9,["H1390"]],[9,10,["H559"]],[10,12,["H3808"]],[12,13,["H1732"]],[13,15,["H5641"]],[15,16,["H5973"]],[16,20,["H4679"]],[20,23,["H2793"]],[23,26,["H1389"]],[26,28,["H2444"]],[28,29,["H834"]],[29,33,["H4480","H3225"]],[33,35,["H3452"]]]},{"k":7830,"v":[[0,1,["H6258"]],[1,4,["H4428"]],[4,6,["H3381"]],[6,9,["H3605"]],[9,11,["H185"]],[11,14,["H5315"]],[14,17,["H3381"]],[17,24,["H5462"]],[24,28,["H4428"]],[28,29,["H3027"]]]},{"k":7831,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H1288"]],[4,6,["H859"]],[6,9,["H3068"]],[9,10,["H3588"]],[10,13,["H2550"]],[13,14,["H5921"]],[14,15,[]]]},{"k":7832,"v":[[0,1,["H1980"]],[1,4,["H4994"]],[4,5,["H3559"]],[5,6,["H5750"]],[6,8,["H3045"]],[8,10,["H7200","(H853)"]],[10,12,["H4725"]],[12,13,["H834"]],[13,15,["H7272"]],[15,16,["H1961"]],[16,18,["H4310"]],[18,20,["H7200"]],[20,22,["H8033"]],[22,23,["H3588"]],[23,26,["H559","H413"]],[26,29,["H1931"]],[29,32,["H6191","H6191"]]]},{"k":7833,"v":[[0,1,["H7200"]],[1,5,["H3045"]],[5,7,["H4480","H3605"]],[7,10,["H4224"]],[10,11,["H834"]],[11,14,["H2244"]],[14,18,["H7725"]],[18,19,["H413"]],[19,21,["H413"]],[21,23,["H3559"]],[23,27,["H1980"]],[27,28,["H854"]],[28,35,["H1961"]],[35,36,["H518"]],[36,38,["H1961","H3426"]],[38,41,["H776"]],[41,47,["H2664","(H853)"]],[47,49,["H3605"]],[49,51,["H505"]],[51,53,["H3063"]]]},{"k":7834,"v":[[0,3,["H6965"]],[3,5,["H1980"]],[5,7,["H2128"]],[7,8,["H6440"]],[8,9,["H7586"]],[9,11,["H1732"]],[11,14,["H376"]],[14,18,["H4057"]],[18,20,["H4584"]],[20,23,["H6160"]],[23,24,["H413"]],[24,26,["H3225"]],[26,28,["H3452"]]]},{"k":7835,"v":[[0,1,["H7586"]],[1,5,["H376"]],[5,6,["H1980"]],[6,8,["H1245"]],[8,12,["H5046"]],[12,13,["H1732"]],[13,17,["H3381"]],[17,20,["H5553"]],[20,22,["H3427"]],[22,25,["H4057"]],[25,27,["H4584"]],[27,30,["H7586"]],[30,31,["H8085"]],[31,34,["H7291"]],[34,35,["H310"]],[35,36,["H1732"]],[36,39,["H4057"]],[39,41,["H4584"]]]},{"k":7836,"v":[[0,2,["H7586"]],[2,3,["H1980"]],[3,6,["H4480","H2088","H4480","H6654"]],[6,9,["H2022"]],[9,11,["H1732"]],[11,14,["H376"]],[14,17,["H4480","H2088","H4480","H6654"]],[17,20,["H2022"]],[20,22,["H1732"]],[22,24,["H1961","H2648"]],[24,27,["H1980"]],[27,30,["H4480","H6440"]],[30,31,["H7586"]],[31,33,["H7586"]],[33,36,["H376"]],[36,37,["H5849","H413"]],[37,38,["H1732"]],[38,41,["H376"]],[41,45,["H8610"]],[45,46,[]]]},{"k":7837,"v":[[0,3,["H935"]],[3,5,["H4397"]],[5,6,["H413"]],[6,7,["H7586"]],[7,8,["H559"]],[8,9,["H4116"]],[9,12,["H1980"]],[12,13,["H3588"]],[13,15,["H6430"]],[15,17,["H6584","H5921"]],[17,19,["H776"]]]},{"k":7838,"v":[[0,2,["H7586"]],[2,3,["H7725"]],[3,5,["H4480","H7291"]],[5,6,["H310"]],[6,7,["H1732"]],[7,9,["H1980"]],[9,10,["H7125"]],[10,12,["H6430"]],[12,13,["H5921","H3651"]],[13,15,["H7121"]],[15,16,["H1931"]],[16,17,["H4725"]],[17,18,["H5555","(H5553","H4256)"]]]},{"k":7839,"v":[[0,2,["H1732"]],[2,4,["H5927"]],[4,6,["H4480","H8033"]],[6,8,["H3427"]],[8,11,["H4679"]],[11,13,["H5872"]]]},{"k":7840,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H7586"]],[7,9,["H7725"]],[9,11,["H4480","H310"]],[11,13,["H6430"]],[13,17,["H5046"]],[17,19,["H559"]],[19,20,["H2009"]],[20,21,["H1732"]],[21,25,["H4057"]],[25,27,["H5872"]]]},{"k":7841,"v":[[0,2,["H7586"]],[2,3,["H3947"]],[3,4,["H7969"]],[4,5,["H505"]],[5,6,["H977"]],[6,7,["H376"]],[7,10,["H4480","H3605"]],[10,11,["H3478"]],[11,13,["H1980"]],[13,15,["H1245","(H853)"]],[15,16,["H1732"]],[16,19,["H376"]],[19,20,["H5921","H6440"]],[20,22,["H6697"]],[22,26,["H3277"]]]},{"k":7842,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H1448","H6629"]],[6,7,["H5921"]],[7,9,["H1870"]],[9,10,["H8033"]],[10,13,["H4631"]],[13,15,["H7586"]],[15,17,["H935"]],[17,19,["H5526","(H853)"]],[19,21,["H7272"]],[21,23,["H1732"]],[23,26,["H376"]],[26,27,["H3427"]],[27,30,["H3411"]],[30,33,["H4631"]]]},{"k":7843,"v":[[0,3,["H376"]],[3,5,["H1732"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H2009"]],[9,11,["H3117"]],[11,13,["H834"]],[13,15,["H3068"]],[15,16,["H559"]],[16,17,["H413"]],[17,19,["H2009"]],[19,20,["H595"]],[20,22,["H5414","(H853)"]],[22,24,["H341"]],[24,27,["H3027"]],[27,31,["H6213"]],[31,34,["H834"]],[34,38,["H3190","H5869"]],[38,42,["H1732"]],[42,43,["H6965"]],[43,46,["H3772","(H853)"]],[46,48,["H3671"]],[48,50,["H7586"]],[50,51,["H4598"]],[51,52,["H3909"]]]},{"k":7844,"v":[[0,5,["H1961"]],[5,6,["H310","H3651"]],[6,8,["H1732"]],[8,9,["H3820"]],[9,10,["H5221"]],[10,12,["H5921","H834"]],[12,16,["H3772","(H853)"]],[16,17,["H7586"]],[17,18,["H3671"]]]},{"k":7845,"v":[[0,3,["H559"]],[3,6,["H376"]],[6,8,["H4480","H3068"]],[8,9,["H2486"]],[9,10,["H518"]],[10,13,["H6213","(H853)"]],[13,14,["H2088"]],[14,15,["H1697"]],[15,18,["H113"]],[18,20,["H3068"]],[20,21,["H4899"]],[21,24,["H7971"]],[24,26,["H3027"]],[26,29,["H3588"]],[29,30,["H1931"]],[30,33,["H4899"]],[33,36,["H3068"]]]},{"k":7846,"v":[[0,2,["H1732"]],[2,3,["H8156","(H853)"]],[3,5,["H376"]],[5,8,["H1697"]],[8,10,["H5414"]],[10,12,["H3808"]],[12,14,["H6965"]],[14,15,["H413"]],[15,16,["H7586"]],[16,18,["H7586"]],[18,20,["H6965"]],[20,24,["H4480","H4631"]],[24,26,["H1980"]],[26,29,["H1870"]]]},{"k":7847,"v":[[0,1,["H1732"]],[1,3,["H6965"]],[3,4,["H310","H3651"]],[4,7,["H3318"]],[7,8,["H4480"]],[8,10,["H4631"]],[10,12,["H7121"]],[12,13,["H310"]],[13,14,["H7586"]],[14,15,["H559"]],[15,17,["H113"]],[17,19,["H4428"]],[19,22,["H7586"]],[22,23,["H5027"]],[23,24,["H310"]],[24,26,["H1732"]],[26,27,["H6915"]],[27,30,["H639"]],[30,33,["H776"]],[33,36,["H7812"]]]},{"k":7848,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H7586"]],[5,6,["H4100"]],[6,7,["H8085"]],[7,8,["(H853)"]],[8,9,["H120"]],[9,10,["H1697"]],[10,11,["H559"]],[11,12,["H2009"]],[12,13,["H1732"]],[13,14,["H1245"]],[14,16,["H7451"]]]},{"k":7849,"v":[[0,1,["H2009"]],[1,2,["H2088"]],[2,3,["H3117"]],[3,5,["H5869"]],[5,7,["H7200","(H853)"]],[7,8,["H834"]],[8,11,["H3068"]],[11,13,["H5414"]],[13,16,["H3117"]],[16,19,["H3027"]],[19,22,["H4631"]],[22,25,["H559"]],[25,27,["H2026"]],[27,32,["H2347","H5921"]],[32,36,["H559"]],[36,39,["H3808"]],[39,41,["H7971"]],[41,43,["H3027"]],[43,46,["H113"]],[46,47,["H3588"]],[47,48,["H1931"]],[48,51,["H3068"]],[51,52,["H4899"]]]},{"k":7850,"v":[[0,3,["H1"]],[3,4,["H7200"]],[4,5,["H1571"]],[5,6,["H7200","(H853)"]],[6,8,["H3671"]],[8,11,["H4598"]],[11,14,["H3027"]],[14,15,["H3588"]],[15,20,["H3772","(H853)"]],[20,22,["H3671"]],[22,25,["H4598"]],[25,27,["H2026"]],[27,29,["H3808"]],[29,30,["H3045"]],[30,33,["H7200"]],[33,34,["H3588"]],[34,37,["H369"]],[37,38,["H7451"]],[38,40,["H6588"]],[40,43,["H3027"]],[43,47,["H3808"]],[47,48,["H2398"]],[48,52,["H859"]],[52,53,["H6658","(H853)"]],[53,55,["H5315"]],[55,57,["H3947"]],[57,58,[]]]},{"k":7851,"v":[[0,2,["H3068"]],[2,3,["H8199"]],[3,4,["H996"]],[4,10,["H3068"]],[10,11,["H5358"]],[11,13,["H4480"]],[13,17,["H3027"]],[17,19,["H3808"]],[19,20,["H1961"]],[20,22,[]]]},{"k":7852,"v":[[0,1,["H834"]],[1,2,["H559"]],[2,4,["H4912"]],[4,7,["H6931"]],[7,8,["H7562"]],[8,9,["H3318"]],[9,12,["H4480","H7563"]],[12,15,["H3027"]],[15,17,["H3808"]],[17,18,["H1961"]],[18,20,[]]]},{"k":7853,"v":[[0,1,["H310"]],[1,2,["H4310"]],[2,5,["H4428"]],[5,7,["H3478"]],[7,9,["H3318"]],[9,10,["H310"]],[10,11,["H4310"]],[11,13,["H859"]],[13,14,["H7291"]],[14,15,["H310"]],[15,17,["H4191"]],[17,18,["H3611"]],[18,19,["H310"]],[19,20,["H259"]],[20,21,["H6550"]]]},{"k":7854,"v":[[0,2,["H3068"]],[2,4,["H1961"]],[4,5,["H1781"]],[5,7,["H8199"]],[7,8,["H996"]],[8,13,["H7200"]],[13,15,["H7378","(H853)"]],[15,17,["H7379"]],[17,19,["H8199"]],[19,24,["H4480","H3027"]]]},{"k":7855,"v":[[0,5,["H1961"]],[5,7,["H1732"]],[7,11,["H3615"]],[11,13,["H1696","(H853)"]],[13,14,["H428"]],[14,15,["H1697"]],[15,16,["H413"]],[16,17,["H7586"]],[17,19,["H7586"]],[19,20,["H559"]],[20,22,["H2088"]],[22,24,["H6963"]],[24,26,["H1121"]],[26,27,["H1732"]],[27,29,["H7586"]],[29,31,["H5375"]],[31,33,["H6963"]],[33,35,["H1058"]]]},{"k":7856,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,6,["H859"]],[6,9,["H6662"]],[9,10,["H4480"]],[10,12,["H3588"]],[12,13,["H859"]],[13,15,["H1580"]],[15,17,["H2896"]],[17,19,["H589"]],[19,21,["H1580"]],[21,23,["H7451"]]]},{"k":7857,"v":[[0,2,["H859"]],[2,4,["H5046"]],[4,6,["H3117","(H853)"]],[6,8,["H834"]],[8,11,["H6213"]],[11,12,["H2896"]],[12,13,["H854"]],[13,14,["(H853)"]],[14,17,["H834"]],[17,19,["H3068"]],[19,21,["H5462"]],[21,25,["H3027"]],[25,27,["H2026"]],[27,29,["H3808"]]]},{"k":7858,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H4672","(H853)"]],[5,7,["H341"]],[7,12,["H7971"]],[12,13,["H2896"]],[13,14,["H1870"]],[14,17,["H3068"]],[17,18,["H7999"]],[18,20,["H2896"]],[20,21,["H8478"]],[21,22,["H834"]],[22,25,["H6213"]],[25,28,["H2088"]],[28,29,["H3117"]]]},{"k":7859,"v":[[0,2,["H6258"]],[2,3,["H2009"]],[3,6,["H3045"]],[6,7,["H3588"]],[7,12,["H4427","H4427"]],[12,16,["H4467"]],[16,18,["H3478"]],[18,21,["H6965"]],[21,24,["H3027"]]]},{"k":7860,"v":[[0,1,["H7650"]],[1,2,["H6258"]],[2,8,["H3068"]],[8,9,["H518"]],[9,14,["H3772","(H853)"]],[14,16,["H2233"]],[16,17,["H310"]],[17,20,["H518"]],[20,24,["H8045","(H853)"]],[24,26,["H8034"]],[26,31,["H4480","H1004","H1"]]]},{"k":7861,"v":[[0,2,["H1732"]],[2,3,["H7650"]],[3,5,["H7586"]],[5,7,["H7586"]],[7,8,["H1980","H413"]],[8,9,["H1004"]],[9,11,["H1732"]],[11,14,["H376"]],[14,17,["H5927"]],[17,18,["H5921"]],[18,20,["H4686"]]]},{"k":7862,"v":[[0,2,["H8050"]],[2,3,["H4191"]],[3,5,["H3605"]],[5,7,["H3478"]],[7,10,["H6908"]],[10,12,["H5594"]],[12,15,["H6912"]],[15,19,["H1004"]],[19,21,["H7414"]],[21,23,["H1732"]],[23,24,["H6965"]],[24,27,["H3381"]],[27,28,["H413"]],[28,30,["H4057"]],[30,32,["H6290"]]]},{"k":7863,"v":[[0,5,["H376"]],[5,7,["H4584"]],[7,9,["H4639"]],[9,12,["H3760"]],[12,15,["H376"]],[15,17,["H3966"]],[17,18,["H1419"]],[18,22,["H7969"]],[22,23,["H505"]],[23,24,["H6629"]],[24,27,["H505"]],[27,28,["H5795"]],[28,31,["H1961"]],[31,32,["H1494","(H853)"]],[32,34,["H6629"]],[34,36,["H3760"]]]},{"k":7864,"v":[[0,3,["H8034"]],[3,6,["H376"]],[6,8,["H5037"]],[8,11,["H8034"]],[11,14,["H802"]],[14,15,["H26"]],[15,20,["H802"]],[20,22,["H2896"]],[22,23,["H7922"]],[23,27,["H3303"]],[27,28,["H8389"]],[28,31,["H376"]],[31,33,["H7186"]],[33,35,["H7451"]],[35,38,["H4611"]],[38,40,["H1931"]],[40,46,["H3612"]]]},{"k":7865,"v":[[0,2,["H1732"]],[2,3,["H8085"]],[3,6,["H4057"]],[6,7,["H3588"]],[7,8,["H5037"]],[8,10,["H1494","(H853)"]],[10,12,["H6629"]]]},{"k":7866,"v":[[0,2,["H1732"]],[2,4,["H7971"]],[4,5,["H6235"]],[5,7,["H5288"]],[7,9,["H1732"]],[9,10,["H559"]],[10,14,["H5288"]],[14,17,["H5927"]],[17,19,["H3760"]],[19,21,["H935"]],[21,22,["H413"]],[22,23,["H5037"]],[23,25,["H7592","H7965"]],[25,29,["H8034"]]]},{"k":7867,"v":[[0,2,["H3541"]],[2,5,["H559"]],[5,9,["H2416"]],[9,12,["H7965"]],[12,16,["H859"]],[16,18,["H7965"]],[18,22,["H1004"]],[22,24,["H7965"]],[24,27,["H3605"]],[27,28,["H834"]],[28,30,[]]]},{"k":7868,"v":[[0,2,["H6258"]],[2,5,["H8085"]],[5,6,["H3588"]],[6,9,["H1494"]],[9,10,["H6258"]],[10,12,["H7462"]],[12,13,["H834"]],[13,14,["H1961"]],[14,15,["H5973"]],[15,18,["H3637"]],[18,20,["H3808"]],[20,21,["H3808"]],[21,24,["H3972"]],[24,25,["H6485"]],[25,28,["H3605"]],[28,30,["H3117"]],[30,32,["H1961"]],[32,34,["H3760"]]]},{"k":7869,"v":[[0,1,["H7592","(H853)"]],[1,4,["H5288"]],[4,8,["H5046"]],[8,14,["H5288"]],[14,15,["H4672"]],[15,16,["H2580"]],[16,19,["H5869"]],[19,20,["H3588"]],[20,22,["H935"]],[22,23,["H5921"]],[23,25,["H2896"]],[25,26,["H3117"]],[26,27,["H5414"]],[27,30,["H4994","(H853)"]],[30,31,["H834"]],[31,32,["H4672"]],[32,35,["H3027"]],[35,38,["H5650"]],[38,42,["H1121"]],[42,43,["H1732"]]]},{"k":7870,"v":[[0,3,["H1732"]],[3,5,["H5288"]],[5,6,["H935"]],[6,8,["H1696"]],[8,9,["H413"]],[9,10,["H5037"]],[10,13,["H3605"]],[13,14,["H428"]],[14,15,["H1697"]],[15,18,["H8034"]],[18,20,["H1732"]],[20,22,["H5117"]]]},{"k":7871,"v":[[0,2,["H5037"]],[2,3,["H6030","(H853)"]],[3,4,["H1732"]],[4,5,["H5650"]],[5,7,["H559"]],[7,8,["H4310"]],[8,10,["H1732"]],[10,12,["H4310"]],[12,15,["H1121"]],[15,17,["H3448"]],[17,20,["H7231"]],[20,21,["H5650"]],[21,24,["H3117"]],[24,27,["H6555"]],[27,29,["H376"]],[29,30,["H4480","H6440"]],[30,32,["H113"]]]},{"k":7872,"v":[[0,4,["H3947","(H853)"]],[4,6,["H3899"]],[6,9,["H4325"]],[9,12,["H2878"]],[12,13,["H834"]],[13,16,["H2873"]],[16,19,["H1494"]],[19,21,["H5414"]],[21,24,["H376"]],[24,25,["H834"]],[25,27,["H3045"]],[27,28,["H3808"]],[28,29,["H335","H4480","H2088"]],[29,30,["H1992"]],[30,31,[]]]},{"k":7873,"v":[[0,2,["H1732"]],[2,4,["H5288"]],[4,5,["H2015"]],[5,7,["H1870"]],[7,10,["H7725"]],[10,12,["H935"]],[12,14,["H5046"]],[14,16,["H3605"]],[16,17,["H428"]],[17,18,["H1697"]]]},{"k":7874,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,6,["H376"]],[6,9,["H2296"]],[9,11,["H376","(H853)"]],[11,13,["H2719"]],[13,17,["H2296"]],[17,19,["H376","(H853)"]],[19,21,["H2719"]],[21,23,["H1732"]],[23,24,["H1571"]],[24,26,["H2296","(H853)"]],[26,28,["H2719"]],[28,32,["H5927"]],[32,33,["H310"]],[33,34,["H1732"]],[34,36,["H702"]],[36,37,["H3967"]],[37,38,["H376"]],[38,41,["H3967"]],[41,42,["H3427"]],[42,43,["H5921"]],[43,45,["H3627"]]]},{"k":7875,"v":[[0,2,["H259","H5288"]],[2,6,["H4480","H5288"]],[6,7,["H5046"]],[7,8,["H26"]],[8,9,["H5037"]],[9,10,["H802"]],[10,11,["H559"]],[11,12,["H2009"]],[12,13,["H1732"]],[13,14,["H7971"]],[14,15,["H4397"]],[15,19,["H4480","H4057"]],[19,21,["H1288","(H853)"]],[21,23,["H113"]],[23,26,["H5860"]],[26,28,[]]]},{"k":7876,"v":[[0,3,["H376"]],[3,5,["H3966"]],[5,6,["H2896"]],[6,12,["H3808"]],[12,13,["H3637"]],[13,14,["H3808"]],[14,15,["H6485"]],[15,18,["H3972"]],[18,21,["H3605","H3117"]],[21,24,["H1980"]],[24,25,["H854"]],[25,29,["H1961"]],[29,32,["H7704"]]]},{"k":7877,"v":[[0,2,["H1961"]],[2,4,["H2346"]],[4,5,["H5921"]],[5,7,["H1571"]],[7,9,["H3915"]],[9,10,["H1571"]],[10,11,["H3119"]],[11,12,["H3605"]],[12,14,["H3117"]],[14,16,["H1961"]],[16,17,["H5973"]],[17,19,["H7462"]],[19,21,["H6629"]]]},{"k":7878,"v":[[0,1,["H6258"]],[1,3,["H3045"]],[3,5,["H7200"]],[5,6,["H4100"]],[6,9,["H6213"]],[9,10,["H3588"]],[10,11,["H7451"]],[11,13,["H3615"]],[13,14,["H413"]],[14,16,["H113"]],[16,18,["H5921"]],[18,19,["H3605"]],[19,21,["H1004"]],[21,23,["H1931"]],[23,27,["H1121"]],[27,29,["H1100"]],[29,34,["H4480","H1696"]],[34,35,["H413"]],[35,36,[]]]},{"k":7879,"v":[[0,2,["H26"]],[2,4,["H4116"]],[4,6,["H3947"]],[6,8,["H3967"]],[8,9,["H3899"]],[9,11,["H8147"]],[11,12,["H5035"]],[12,14,["H3196"]],[14,16,["H2568"]],[16,17,["H6629"]],[17,19,["H6213"]],[19,21,["H2568"]],[21,22,["H5429"]],[22,24,["H7039"]],[24,28,["H3967"]],[28,31,["H6778"]],[31,34,["H3967"]],[34,37,["H1690"]],[37,39,["H7760"]],[39,41,["H5921"]],[41,42,["H2543"]]]},{"k":7880,"v":[[0,3,["H559"]],[3,6,["H5288"]],[6,8,["H5674"]],[8,9,["H6440"]],[9,11,["H2005"]],[11,13,["H935"]],[13,14,["H310"]],[14,18,["H5046"]],[18,19,["H3808"]],[19,21,["H376"]],[21,22,["H5037"]]]},{"k":7881,"v":[[0,3,["H1961"]],[3,6,["H1931"]],[6,7,["H7392"]],[7,8,["H5921"]],[8,10,["H2543"]],[10,14,["H3381"]],[14,17,["H5643"]],[17,20,["H2022"]],[20,22,["H2009"]],[22,23,["H1732"]],[23,26,["H376"]],[26,28,["H3381"]],[28,29,["H7125"]],[29,33,["H6298"]],[33,34,[]]]},{"k":7882,"v":[[0,2,["H1732"]],[2,4,["H559"]],[4,5,["H389"]],[5,7,["H8267"]],[7,10,["H8104","(H853)"]],[10,11,["H3605"]],[11,12,["H834"]],[12,13,["H2088"]],[13,18,["H4057"]],[18,21,["H3808","H3972"]],[21,23,["H6485"]],[23,25,["H4480","H3605"]],[25,26,["H834"]],[26,33,["H7725"]],[33,35,["H7451"]],[35,36,["H8478"]],[36,37,["H2896"]]]},{"k":7883,"v":[[0,1,["H3541"]],[1,3,["H3254"]],[3,4,["H3541"]],[4,5,["H6213"]],[5,6,["H430"]],[6,9,["H341"]],[9,11,["H1732"]],[11,12,["H518"]],[12,14,["H7604"]],[14,16,["H4480","H3605"]],[16,17,["H834"]],[17,21,["H5704"]],[21,24,["H1242"]],[24,27,["H8366"]],[27,30,["H7023"]]]},{"k":7884,"v":[[0,3,["H26"]],[3,4,["H7200","(H853)"]],[4,5,["H1732"]],[5,7,["H4116"]],[7,9,["H3381"]],[9,10,["H4480","H5921"]],[10,12,["H2543"]],[12,14,["H5307"]],[14,15,["H639"]],[15,16,["H1732"]],[16,17,["H5921"]],[17,19,["H6440"]],[19,22,["H7812"]],[22,25,["H776"]]]},{"k":7885,"v":[[0,2,["H5307"]],[2,3,["H5921"]],[3,5,["H7272"]],[5,7,["H559"]],[7,9,["H589"]],[9,11,["H113"]],[11,16,["H5771"]],[16,21,["H519"]],[21,24,["H4994"]],[24,25,["H1696"]],[25,28,["H241"]],[28,30,["H8085","(H853)"]],[30,32,["H1697"]],[32,35,["H519"]]]},{"k":7886,"v":[[0,2,["H408"]],[2,4,["H113"]],[4,7,["H4994"]],[7,8,["H7760","(H853)","H3820","H413"]],[8,9,["H2088"]],[9,10,["H376"]],[10,12,["H1100"]],[12,14,["H5037"]],[14,15,["H3588"]],[15,18,["H8034"]],[18,20,["H3651"]],[20,22,["H1931"]],[22,23,["H5037"]],[23,26,["H8034"]],[26,28,["H5039"]],[28,30,["H5973"]],[30,33,["H589"]],[33,35,["H519"]],[35,36,["H7200"]],[36,37,["H3808","(H853)"]],[37,40,["H5288"]],[40,43,["H113"]],[43,44,["H834"]],[44,47,["H7971"]]]},{"k":7887,"v":[[0,1,["H6258"]],[1,4,["H113"]],[4,7,["H3068"]],[7,8,["H2416"]],[8,12,["H5315"]],[12,13,["H2416"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H4513"]],[18,21,["H4480","H935"]],[21,24,["H1818"]],[24,27,["H3467"]],[27,32,["H3027"]],[32,33,["H6258"]],[33,36,["H341"]],[36,40,["H1245"]],[40,41,["H7451"]],[41,42,["H413"]],[42,44,["H113"]],[44,45,["H1961"]],[45,47,["H5037"]]]},{"k":7888,"v":[[0,2,["H6258"]],[2,3,["H2063"]],[3,4,["H1293"]],[4,5,["H834"]],[5,7,["H8198"]],[7,9,["H935"]],[9,12,["H113"]],[12,17,["H5414"]],[17,21,["H5288"]],[21,23,["H1980","H7272"]],[23,25,["H113"]]]},{"k":7889,"v":[[0,3,["H4994"]],[3,4,["H5375"]],[4,6,["H6588"]],[6,9,["H519"]],[9,10,["H3588"]],[10,12,["H3068"]],[12,15,["H6213","H6213"]],[15,17,["H113"]],[17,19,["H539"]],[19,20,["H1004"]],[20,21,["H3588"]],[21,23,["H113"]],[23,24,["H3898"]],[24,26,["H4421"]],[26,29,["H3068"]],[29,31,["H7451"]],[31,33,["H3808"]],[33,35,["H4672"]],[35,40,["H4480","H3117"]]]},{"k":7890,"v":[[0,3,["H120"]],[3,5,["H6965"]],[5,7,["H7291"]],[7,11,["H1245","(H853)"]],[11,13,["H5315"]],[13,16,["H5315"]],[16,19,["H113"]],[19,21,["H1961"]],[21,22,["H6887"]],[22,25,["H6872"]],[25,27,["H2416"]],[27,28,["H854"]],[28,30,["H3068"]],[30,32,["H430"]],[32,35,["H5315"]],[35,38,["H341"]],[38,43,["H7049"]],[43,48,["H8432"]],[48,51,["H7050"]]]},{"k":7891,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,9,["H3068"]],[9,12,["H6213"]],[12,15,["H113"]],[15,18,["H3605","(H853)"]],[18,20,["H2896"]],[20,21,["H834"]],[21,24,["H1696"]],[24,25,["H5921"]],[25,30,["H6680"]],[30,32,["H5057"]],[32,33,["H5921"]],[33,34,["H3478"]]]},{"k":7892,"v":[[0,2,["H2063"]],[2,4,["H1961"]],[4,5,["H3808"]],[5,6,["H6330"]],[6,10,["H4383"]],[10,12,["H3820"]],[12,15,["H113"]],[15,20,["H8210"]],[20,21,["H1818"]],[21,22,["H2600"]],[22,26,["H113"]],[26,28,["H3467"]],[28,33,["H3068"]],[33,37,["H3190"]],[37,40,["H113"]],[40,42,["H2142","(H853)"]],[42,44,["H519"]]]},{"k":7893,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H26"]],[5,6,["H1288"]],[6,9,["H3068"]],[9,10,["H430"]],[10,12,["H3478"]],[12,13,["H834"]],[13,14,["H7971"]],[14,16,["H2088"]],[16,17,["H3117"]],[17,19,["H7125"]],[19,20,[]]]},{"k":7894,"v":[[0,2,["H1288"]],[2,5,["H2940"]],[5,7,["H1288"]],[7,9,["H859"]],[9,10,["H834"]],[10,12,["H3607"]],[12,14,["H2088"]],[14,15,["H3117"]],[15,17,["H4480","H935"]],[17,20,["H1818"]],[20,23,["H3467"]],[23,28,["H3027"]]]},{"k":7895,"v":[[0,4,["H199"]],[4,7,["H3068"]],[7,8,["H430"]],[8,10,["H3478"]],[10,11,["H2416"]],[11,12,["H834"]],[12,16,["H4513"]],[16,18,["H4480","H7489"]],[18,20,["H3588","H3884"]],[20,23,["H4116"]],[23,25,["H935"]],[25,27,["H7125"]],[27,29,["H3588"]],[29,32,["H518"]],[32,34,["H3498"]],[34,36,["H5037"]],[36,37,["H5704"]],[37,39,["H1242"]],[39,40,["H216"]],[40,43,["H8366"]],[43,46,["H7023"]]]},{"k":7896,"v":[[0,2,["H1732"]],[2,3,["H3947"]],[3,6,["H4480","H3027","(H853)"]],[6,8,["H834"]],[8,11,["H935"]],[11,14,["H559"]],[14,18,["H5927"]],[18,20,["H7965"]],[20,23,["H1004"]],[23,24,["H7200"]],[24,27,["H8085"]],[27,30,["H6963"]],[30,33,["H5375"]],[33,35,["H6440"]]]},{"k":7897,"v":[[0,2,["H26"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H5037"]],[5,7,["H2009"]],[7,11,["H4960"]],[11,14,["H1004"]],[14,17,["H4960"]],[17,20,["H4428"]],[20,22,["H5037"]],[22,23,["H3820"]],[23,25,["H2896"]],[25,26,["H5921"]],[26,29,["H1931"]],[29,31,["H5704","H3966"]],[31,32,["H7910"]],[32,35,["H5046"]],[35,37,["H3808","H1697"]],[37,38,["H6996"]],[38,40,["H1419"]],[40,41,["H5704"]],[41,43,["H1242"]],[43,44,["H216"]]]},{"k":7898,"v":[[0,5,["H1961"]],[5,8,["H1242"]],[8,11,["H3196"]],[11,14,["H3318"]],[14,16,["H4480","H5037"]],[16,19,["H802"]],[19,21,["H5046"]],[21,22,["(H853)"]],[22,23,["H428"]],[23,24,["H1697"]],[24,27,["H3820"]],[27,28,["H4191"]],[28,29,["H7130"]],[29,32,["H1931"]],[32,33,["H1961"]],[33,36,["H68"]]]},{"k":7899,"v":[[0,5,["H1961"]],[5,7,["H6235"]],[7,8,["H3117"]],[8,12,["H3068"]],[12,13,["H5062","(H853)"]],[13,14,["H5037"]],[14,17,["H4191"]]]},{"k":7900,"v":[[0,3,["H1732"]],[3,4,["H8085"]],[4,5,["H3588"]],[5,6,["H5037"]],[6,8,["H4191"]],[8,10,["H559"]],[10,11,["H1288"]],[11,14,["H3068"]],[14,15,["H834"]],[15,17,["H7378","(H853)"]],[17,19,["H7379"]],[19,22,["H2781"]],[22,25,["H4480","H3027"]],[25,27,["H5037"]],[27,30,["H2820"]],[30,32,["H5650"]],[32,34,["H4480","H7451"]],[34,37,["H3068"]],[37,39,["H7725"]],[39,41,["H7451"]],[41,43,["H5037"]],[43,47,["H7218"]],[47,49,["H1732"]],[49,50,["H7971"]],[50,52,["H1696"]],[52,54,["H26"]],[54,56,["H3947"]],[56,61,["H802"]]]},{"k":7901,"v":[[0,4,["H5650"]],[4,6,["H1732"]],[6,8,["H935"]],[8,9,["H413"]],[9,10,["H26"]],[10,12,["H3760"]],[12,14,["H1696"]],[14,15,["H413"]],[15,17,["H559"]],[17,18,["H1732"]],[18,19,["H7971"]],[19,21,["H413"]],[21,24,["H3947"]],[24,29,["H802"]]]},{"k":7902,"v":[[0,3,["H6965"]],[3,6,["H7812"]],[6,9,["H639"]],[9,12,["H776"]],[12,14,["H559"]],[14,15,["H2009"]],[15,18,["H519"]],[18,21,["H8198"]],[21,23,["H7364"]],[23,25,["H7272"]],[25,28,["H5650"]],[28,31,["H113"]]]},{"k":7903,"v":[[0,2,["H26"]],[2,3,["H4116"]],[3,5,["H6965"]],[5,7,["H7392"]],[7,8,["H5921"]],[8,10,["H2543"]],[10,12,["H2568"]],[12,13,["H5291"]],[13,17,["H1980"]],[17,18,["H7272"]],[18,22,["H1980"]],[22,23,["H310"]],[23,25,["H4397"]],[25,27,["H1732"]],[27,29,["H1961"]],[29,31,["H802"]]]},{"k":7904,"v":[[0,1,["H1732"]],[1,3,["H3947"]],[3,4,["H293"]],[4,6,["H4480","H3157"]],[6,9,["H1961"]],[9,10,["H1571"]],[10,11,["H8147"]],[11,15,["H802"]]]},{"k":7905,"v":[[0,2,["H7586"]],[2,4,["H5414","(H853)"]],[4,5,["H4324"]],[5,7,["H1323"]],[7,8,["H1732"]],[8,9,["H802"]],[9,11,["H6406"]],[11,13,["H1121"]],[13,15,["H3919"]],[15,16,["H834"]],[16,19,["H4480","H1554"]]]},{"k":7906,"v":[[0,3,["H2130"]],[3,4,["H935"]],[4,5,["H413"]],[5,6,["H7586"]],[6,8,["H1390"]],[8,9,["H559"]],[9,11,["H3808"]],[11,12,["H1732"]],[12,14,["H5641"]],[14,17,["H1389"]],[17,19,["H2444"]],[19,22,["H5921","H6440"]],[22,23,["H3452"]]]},{"k":7907,"v":[[0,2,["H7586"]],[2,3,["H6965"]],[3,6,["H3381"]],[6,7,["H413"]],[7,9,["H4057"]],[9,11,["H2128"]],[11,13,["H7969"]],[13,14,["H505"]],[14,15,["H977"]],[15,16,["H376"]],[16,18,["H3478"]],[18,19,["H854"]],[19,22,["H1245","(H853)"]],[22,23,["H1732"]],[23,26,["H4057"]],[26,28,["H2128"]]]},{"k":7908,"v":[[0,2,["H7586"]],[2,3,["H2583"]],[3,6,["H1389"]],[6,8,["H2444"]],[8,9,["H834"]],[9,11,["H5921","H6440"]],[11,12,["H3452"]],[12,13,["H5921"]],[13,15,["H1870"]],[15,17,["H1732"]],[17,18,["H3427"]],[18,21,["H4057"]],[21,24,["H7200"]],[24,25,["H3588"]],[25,26,["H7586"]],[26,27,["H935"]],[27,28,["H310"]],[28,32,["H4057"]]]},{"k":7909,"v":[[0,1,["H1732"]],[1,4,["H7971"]],[4,5,["H7270"]],[5,7,["H3045"]],[7,8,["H3588"]],[8,9,["H7586"]],[9,12,["H935","H413"]],[12,14,["H3559"]]]},{"k":7910,"v":[[0,2,["H1732"]],[2,3,["H6965"]],[3,5,["H935"]],[5,6,["H413"]],[6,8,["H4725"]],[8,9,["H834","H8033"]],[9,10,["H7586"]],[10,12,["H2583"]],[12,14,["H1732"]],[14,15,["H7200","(H853)"]],[15,17,["H4725"]],[17,18,["H834","H8033"]],[18,19,["H7586"]],[19,20,["H7901"]],[20,22,["H74"]],[22,24,["H1121"]],[24,26,["H5369"]],[26,28,["H8269"]],[28,31,["H6635"]],[31,33,["H7586"]],[33,34,["H7901"]],[34,37,["H4570"]],[37,40,["H5971"]],[40,41,["H2583"]],[41,43,["H5439"]],[43,44,[]]]},{"k":7911,"v":[[0,2,["H6030"]],[2,3,["H1732"]],[3,5,["H559"]],[5,6,["H413"]],[6,7,["H288"]],[7,9,["H2850"]],[9,11,["H413"]],[11,12,["H52"]],[12,14,["H1121"]],[14,16,["H6870"]],[16,17,["H251"]],[17,19,["H3097"]],[19,20,["H559"]],[20,21,["H4310"]],[21,24,["H3381"]],[24,25,["H854"]],[25,27,["H413"]],[27,28,["H7586"]],[28,29,["H413"]],[29,31,["H4264"]],[31,33,["H52"]],[33,34,["H559"]],[34,35,["H589"]],[35,38,["H3381"]],[38,39,["H5973"]],[39,40,[]]]},{"k":7912,"v":[[0,2,["H1732"]],[2,4,["H52"]],[4,5,["H935"]],[5,6,["H413"]],[6,8,["H5971"]],[8,10,["H3915"]],[10,12,["H2009"]],[12,13,["H7586"]],[13,14,["H7901"]],[14,15,["H3463"]],[15,18,["H4570"]],[18,21,["H2595"]],[21,22,["H4600"]],[22,25,["H776"]],[25,28,["H4763"]],[28,30,["H74"]],[30,33,["H5971"]],[33,34,["H7901"]],[34,36,["H5439"]],[36,37,[]]]},{"k":7913,"v":[[0,2,["H559"]],[2,3,["H52"]],[3,4,["H413"]],[4,5,["H1732"]],[5,6,["H430"]],[6,8,["H5462","(H853)"]],[8,10,["H341"]],[10,13,["H3027"]],[13,15,["H3117"]],[15,16,["H6258"]],[16,20,["H5221"]],[20,24,["H4994"]],[24,27,["H2595"]],[27,31,["H776"]],[31,33,["H259","H6471"]],[33,37,["H3808"]],[37,42,["H8138"]]]},{"k":7914,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H52"]],[5,6,["H7843"]],[6,8,["H408"]],[8,9,["H3588"]],[9,10,["H4310"]],[10,13,["H7971"]],[13,15,["H3027"]],[15,18,["H3068"]],[18,19,["H4899"]],[19,22,["H5352"]]]},{"k":7915,"v":[[0,1,["H1732"]],[1,2,["H559"]],[2,3,["H3588","H518"]],[3,6,["H3068"]],[6,7,["H2416"]],[7,9,["H3068"]],[9,11,["H5062"]],[11,13,["H176"]],[13,15,["H3117"]],[15,17,["H935"]],[17,19,["H4191"]],[19,20,["H176"]],[20,23,["H3381"]],[23,25,["H4421"]],[25,27,["H5595"]]]},{"k":7916,"v":[[0,2,["H4480","H3068"]],[2,3,["H2486"]],[3,8,["H4480","H7971"]],[8,10,["H3027"]],[10,13,["H3068"]],[13,14,["H4899"]],[14,18,["H4994"]],[18,19,["H3947"]],[19,21,["H6258","(H853)"]],[21,23,["H2595"]],[23,24,["H834"]],[24,28,["H4763"]],[28,31,["H6835"]],[31,33,["H4325"]],[33,37,["H1980"]]]},{"k":7917,"v":[[0,2,["H1732"]],[2,3,["H3947","(H853)"]],[3,5,["H2595"]],[5,8,["H6835"]],[8,10,["H4325"]],[10,12,["H7586"]],[12,13,["H4763"]],[13,18,["H1980"]],[18,20,["H369"]],[20,22,["H7200"]],[22,24,["H369"]],[24,25,["H3045"]],[25,27,["H369"]],[27,28,["H6974"]],[28,29,["H3588"]],[29,32,["H3605"]],[32,33,["H3463"]],[33,34,["H3588"]],[34,37,["H8639"]],[37,40,["H3068"]],[40,42,["H5307"]],[42,43,["H5921"]],[43,44,[]]]},{"k":7918,"v":[[0,2,["H1732"]],[2,4,["H5674"]],[4,8,["H5676"]],[8,10,["H5975"]],[10,11,["H5921"]],[11,13,["H7218"]],[13,16,["H2022"]],[16,18,["H4480","H7350"]],[18,20,["H7227"]],[20,21,["H4725"]],[21,23,["H996"]],[23,24,[]]]},{"k":7919,"v":[[0,2,["H1732"]],[2,3,["H7121"]],[3,4,["H413"]],[4,6,["H5971"]],[6,8,["H413"]],[8,9,["H74"]],[9,11,["H1121"]],[11,13,["H5369"]],[13,14,["H559"]],[14,15,["H6030"]],[15,17,["H3808"]],[17,18,["H74"]],[18,20,["H74"]],[20,21,["H6030"]],[21,23,["H559"]],[23,24,["H4310"]],[24,26,["H859"]],[26,28,["H7121"]],[28,29,["H413"]],[29,31,["H4428"]]]},{"k":7920,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H74"]],[5,7,["H3808"]],[7,8,["H859"]],[8,11,["H376"]],[11,13,["H4310"]],[13,17,["H3644"]],[17,19,["H3478"]],[19,20,["H4100"]],[20,24,["H3808"]],[24,25,["H8104","H413"]],[25,27,["H113"]],[27,29,["H4428"]],[29,30,["H3588"]],[30,32,["H935"]],[32,33,["H259"]],[33,36,["H5971"]],[36,39,["H7843","(H853)"]],[39,41,["H4428"]],[41,43,["H113"]]]},{"k":7921,"v":[[0,1,["H2088"]],[1,2,["H1697"]],[2,4,["H3808"]],[4,5,["H2896"]],[5,6,["H834"]],[6,9,["H6213"]],[9,12,["H3068"]],[12,13,["H2416"]],[13,14,["H859"]],[14,16,["H1121"]],[16,18,["H4194"]],[18,19,["H834"]],[19,22,["H3808"]],[22,23,["H8104","H5921"]],[23,25,["H113"]],[25,27,["H3068"]],[27,28,["H4899"]],[28,30,["H6258"]],[30,31,["H7200"]],[31,32,["H335"]],[32,34,["H4428"]],[34,35,["H2595"]],[35,39,["H6835"]],[39,41,["H4325"]],[41,42,["H834"]],[42,46,["H4763"]]]},{"k":7922,"v":[[0,2,["H7586"]],[2,3,["H5234","(H853)"]],[3,4,["H1732"]],[4,5,["H6963"]],[5,7,["H559"]],[7,9,["H2088"]],[9,11,["H6963"]],[11,13,["H1121"]],[13,14,["H1732"]],[14,16,["H1732"]],[16,17,["H559"]],[17,21,["H6963"]],[21,23,["H113"]],[23,25,["H4428"]]]},{"k":7923,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,7,["H113"]],[7,8,["H2088"]],[8,9,["H7291"]],[9,10,["H310"]],[10,12,["H5650"]],[12,13,["H3588"]],[13,14,["H4100"]],[14,17,["H6213"]],[17,19,["H4100"]],[19,20,["H7451"]],[20,24,["H3027"]]]},{"k":7924,"v":[[0,1,["H6258"]],[1,5,["H4994"]],[5,8,["H113"]],[8,10,["H4428"]],[10,11,["H8085","(H853)"]],[11,13,["H1697"]],[13,16,["H5650"]],[16,17,["H518"]],[17,19,["H3068"]],[19,23,["H5496"]],[23,28,["H7306"]],[28,30,["H4503"]],[30,32,["H518"]],[32,36,["H1121"]],[36,38,["H120"]],[38,39,["H779"]],[39,41,["H1992"]],[41,42,["H6440"]],[42,44,["H3068"]],[44,45,["H3588"]],[45,50,["H1644"]],[50,52,["H3117"]],[52,54,["H4480","H5596"]],[54,57,["H5159"]],[57,60,["H3068"]],[60,61,["H559"]],[61,62,["H1980"]],[62,63,["H5647"]],[63,64,["H312"]],[64,65,["H430"]]]},{"k":7925,"v":[[0,1,["H6258"]],[1,4,["H408"]],[4,6,["H1818"]],[6,7,["H5307"]],[7,10,["H776"]],[10,11,["H4480","H5048"]],[11,13,["H6440"]],[13,16,["H3068"]],[16,17,["H3588"]],[17,19,["H4428"]],[19,21,["H3478"]],[21,24,["H3318"]],[24,26,["H1245","(H853)"]],[26,28,["H6550"]],[28,30,["H834"]],[30,31,["H259"]],[31,33,["H7291"]],[33,35,["H7124"]],[35,38,["H2022"]]]},{"k":7926,"v":[[0,2,["H559"]],[2,3,["H7586"]],[3,6,["H2398"]],[6,7,["H7725"]],[7,9,["H1121"]],[9,10,["H1732"]],[10,11,["H3588"]],[11,14,["H3808"]],[14,15,["H5750"]],[15,18,["H7489"]],[18,19,["H8478","H834"]],[19,21,["H5315"]],[21,23,["H3365"]],[23,26,["H5869"]],[26,27,["H2088"]],[27,28,["H3117"]],[28,29,["H2009"]],[29,34,["H5528"]],[34,37,["H7686"]],[37,38,["H7235","H3966"]]]},{"k":7927,"v":[[0,2,["H1732"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H2009"]],[6,8,["H4428"]],[8,9,["H2595"]],[9,12,["H259"]],[12,16,["H4480","H5288"]],[16,18,["H5674"]],[18,20,["H3947"]],[20,21,[]]]},{"k":7928,"v":[[0,2,["H3068"]],[2,3,["H7725"]],[3,6,["H376","(H853)"]],[6,8,["H6666"]],[8,11,["H530"]],[11,12,["H834"]],[12,14,["H3068"]],[14,15,["H5414"]],[15,19,["H3027"]],[19,21,["H3117"]],[21,24,["H14"]],[24,25,["H3808"]],[25,27,["H7971"]],[27,29,["H3027"]],[29,32,["H3068"]],[32,33,["H4899"]]]},{"k":7929,"v":[[0,2,["H2009"]],[2,3,["H834"]],[3,5,["H5315"]],[5,8,["H1431"]],[8,10,["H2088"]],[10,11,["H3117"]],[11,14,["H5869"]],[14,15,["H3651"]],[15,18,["H5315"]],[18,21,["H1431"]],[21,25,["H5869"]],[25,28,["H3068"]],[28,32,["H5337"]],[32,36,["H4480","H3605"]],[36,37,["H6869"]]]},{"k":7930,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,6,["H1288"]],[6,8,["H859"]],[8,10,["H1121"]],[10,11,["H1732"]],[11,14,["H1571"]],[14,16,["H6213","H6213"]],[16,19,["H1571"]],[19,22,["H3201","H3201"]],[22,24,["H1732"]],[24,25,["H1980"]],[25,28,["H1870"]],[28,30,["H7586"]],[30,31,["H7725"]],[31,34,["H4725"]]]},{"k":7931,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3820"]],[6,9,["H6258"]],[9,10,["H5595"]],[10,11,["H259"]],[11,12,["H3117"]],[12,15,["H3027"]],[15,17,["H7586"]],[17,20,["H369"]],[20,21,["H2896"]],[21,24,["H3588"]],[24,29,["H4422","H4422"]],[29,30,["H413"]],[30,32,["H776"]],[32,35,["H6430"]],[35,37,["H7586"]],[37,39,["H2976"]],[39,40,["H4480"]],[40,43,["H1245"]],[43,46,["H5750"]],[46,48,["H3605"]],[48,49,["H1366"]],[49,51,["H3478"]],[51,55,["H4422"]],[55,59,["H4480","H3027"]]]},{"k":7932,"v":[[0,2,["H1732"]],[2,3,["H6965"]],[3,5,["H1931"]],[5,7,["H5674"]],[7,10,["H8337"]],[10,11,["H3967"]],[11,12,["H376"]],[12,13,["H834"]],[13,15,["H5973"]],[15,17,["H413"]],[17,18,["H397"]],[18,20,["H1121"]],[20,22,["H4582"]],[22,23,["H4428"]],[23,25,["H1661"]]]},{"k":7933,"v":[[0,2,["H1732"]],[2,3,["H3427"]],[3,4,["H5973"]],[4,5,["H397"]],[5,7,["H1661"]],[7,8,["H1931"]],[8,11,["H376"]],[11,13,["H376"]],[13,16,["H1004"]],[16,18,["H1732"]],[18,21,["H8147"]],[21,22,["H802"]],[22,23,["H293"]],[23,25,["H3159"]],[25,27,["H26"]],[27,29,["H3761"]],[29,30,["H5037"]],[30,31,["H802"]]]},{"k":7934,"v":[[0,4,["H5046"]],[4,5,["H7586"]],[5,6,["H3588"]],[6,7,["H1732"]],[7,9,["H1272"]],[9,11,["H1661"]],[11,14,["H1245"]],[14,15,["H3808"]],[15,16,["H5750"]],[16,17,["H3254"]],[17,19,[]]]},{"k":7935,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H397"]],[5,6,["H518"]],[6,9,["H4994"]],[9,10,["H4672"]],[10,11,["H2580"]],[11,14,["H5869"]],[14,17,["H5414"]],[17,20,["H4725"]],[20,22,["H259"]],[22,23,["H5892"]],[23,26,["H7704"]],[26,30,["H3427"]],[30,31,["H8033"]],[31,33,["H4100"]],[33,36,["H5650"]],[36,37,["H3427"]],[37,40,["H4467"]],[40,41,["H5892"]],[41,42,["H5973"]],[42,43,[]]]},{"k":7936,"v":[[0,2,["H397"]],[2,3,["H5414"]],[3,4,["(H853)"]],[4,5,["H6860"]],[5,6,["H1931"]],[6,7,["H3117"]],[7,8,["H3651"]],[8,9,["H6860"]],[9,10,["H1961"]],[10,13,["H4428"]],[13,15,["H3063"]],[15,16,["H5704"]],[16,17,["H2088"]],[17,18,["H3117"]]]},{"k":7937,"v":[[0,3,["H3117"]],[3,4,["H834"]],[4,5,["H1732"]],[5,6,["H3427"]],[6,9,["H7704"]],[9,12,["H6430"]],[12,13,["H1961"]],[13,15,["H4557"]],[15,16,["H3117"]],[16,18,["H702"]],[18,19,["H2320"]]]},{"k":7938,"v":[[0,2,["H1732"]],[2,5,["H376"]],[5,7,["H5927"]],[7,9,["H6584","H413"]],[9,11,["H1651"]],[11,14,["H1511"]],[14,17,["H6003"]],[17,18,["H3588"]],[18,19,["H2007"]],[19,23,["H834","H4480","H5769"]],[23,25,["H3427"]],[25,28,["H776"]],[28,31,["H935"]],[31,33,["H7793"]],[33,35,["H5704"]],[35,37,["H776"]],[37,39,["H4714"]]]},{"k":7939,"v":[[0,2,["H1732"]],[2,3,["H5221","(H853)"]],[3,5,["H776"]],[5,7,["H2421"]],[7,8,["H3808"]],[8,9,["H376"]],[9,11,["H802"]],[11,15,["H3947"]],[15,17,["H6629"]],[17,20,["H1241"]],[20,23,["H2543"]],[23,26,["H1581"]],[26,29,["H899"]],[29,31,["H7725"]],[31,33,["H935"]],[33,34,["H413"]],[34,35,["H397"]]]},{"k":7940,"v":[[0,2,["H397"]],[2,3,["H559"]],[3,4,["H408"]],[4,9,["H6584"]],[9,11,["H3117"]],[11,13,["H1732"]],[13,14,["H559"]],[14,15,["H5921"]],[15,17,["H5045"]],[17,19,["H3063"]],[19,21,["H5921"]],[21,23,["H5045"]],[23,26,["H3397"]],[26,28,["H413"]],[28,30,["H5045"]],[30,33,["H7017"]]]},{"k":7941,"v":[[0,2,["H1732"]],[2,3,["H2421"]],[3,4,["H3808"]],[4,5,["H376"]],[5,7,["H802"]],[7,10,["H935"]],[10,13,["H1661"]],[13,14,["H559"]],[14,15,["H6435"]],[15,18,["H5046"]],[18,19,["H5921"]],[19,21,["H559"]],[21,22,["H3541"]],[22,23,["H6213"]],[23,24,["H1732"]],[24,26,["H3541"]],[26,30,["H4941"]],[30,31,["H3605"]],[31,33,["H3117"]],[33,35,["H3427"]],[35,38,["H7704"]],[38,41,["H6430"]]]},{"k":7942,"v":[[0,2,["H397"]],[2,3,["H539"]],[3,4,["H1732"]],[4,5,["H559"]],[5,10,["H5971"]],[10,11,["H3478"]],[11,14,["H887","H887"]],[14,19,["H1961"]],[19,21,["H5650"]],[21,23,["H5769"]]]},{"k":7943,"v":[[0,5,["H1961"]],[5,7,["H1992"]],[7,8,["H3117"]],[8,11,["H6430"]],[11,13,["H6908","(H853)"]],[13,15,["H4264"]],[15,17,["H6635"]],[17,19,["H3898"]],[19,21,["H3478"]],[21,23,["H397"]],[23,24,["H559"]],[24,25,["H413"]],[25,26,["H1732"]],[26,29,["H3045","H3045"]],[29,30,["H3588"]],[30,34,["H3318"]],[34,35,["H854"]],[35,38,["H4264"]],[38,39,["H859"]],[39,42,["H376"]]]},{"k":7944,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H397"]],[5,6,["H3651"]],[6,7,["H859"]],[7,9,["H3045","(H853)"]],[9,10,["H834"]],[10,12,["H5650"]],[12,14,["H6213"]],[14,16,["H397"]],[16,17,["H559"]],[17,18,["H413"]],[18,19,["H1732"]],[19,20,["H3651"]],[20,23,["H7760"]],[23,25,["H8104"]],[25,28,["H7218"]],[28,30,["H3605","H3117"]]]},{"k":7945,"v":[[0,2,["H8050"]],[2,4,["H4191"]],[4,6,["H3605"]],[6,7,["H3478"]],[7,9,["H5594"]],[9,12,["H6912"]],[12,15,["H7414"]],[15,20,["H5892"]],[20,22,["H7586"]],[22,25,["H5493"]],[25,30,["H178"]],[30,33,["H3049"]],[33,37,["H4480","H776"]]]},{"k":7946,"v":[[0,3,["H6430"]],[3,6,["H6908"]],[6,8,["H935"]],[8,10,["H2583"]],[10,12,["H7766"]],[12,14,["H7586"]],[14,18,["H6908","(H853)","H3605","H3478"]],[18,21,["H2583"]],[21,23,["H1533"]]]},{"k":7947,"v":[[0,3,["H7586"]],[3,4,["H7200","(H853)"]],[4,6,["H4264"]],[6,9,["H6430"]],[9,12,["H3372"]],[12,15,["H3820"]],[15,16,["H3966"]],[16,17,["H2729"]]]},{"k":7948,"v":[[0,3,["H7586"]],[3,4,["H7592"]],[4,7,["H3068"]],[7,9,["H3068"]],[9,10,["H6030"]],[10,12,["H3808"]],[12,13,["H1571"]],[13,15,["H2472"]],[15,16,["H1571"]],[16,18,["H224"]],[18,19,["H1571"]],[19,21,["H5030"]]]},{"k":7949,"v":[[0,2,["H559"]],[2,3,["H7586"]],[3,6,["H5650"]],[6,7,["H1245"]],[7,10,["H802"]],[10,12,["H1172"]],[12,15,["H178"]],[15,19,["H1980"]],[19,20,["H413"]],[20,23,["H1875"]],[23,28,["H5650"]],[28,29,["H559"]],[29,30,["H413"]],[30,32,["H2009"]],[32,36,["H802"]],[36,38,["H1172"]],[38,41,["H178"]],[41,43,["H5874"]]]},{"k":7950,"v":[[0,2,["H7586"]],[2,4,["H2664"]],[4,7,["H3847"]],[7,8,["H312"]],[8,9,["H899"]],[9,11,["H1931"]],[11,12,["H1980"]],[12,14,["H8147"]],[14,15,["H376"]],[15,16,["H5973"]],[16,20,["H935"]],[20,21,["H413"]],[21,23,["H802"]],[23,25,["H3915"]],[25,28,["H559"]],[28,31,["H4994"]],[31,32,["H7080"]],[32,38,["H178"]],[38,40,["H5927"]],[40,43,["(H853)"]],[43,44,["H834"]],[44,47,["H559"]],[47,48,["H413"]],[48,49,[]]]},{"k":7951,"v":[[0,3,["H802"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H2009"]],[7,8,["H859"]],[8,9,["H3045","(H853)"]],[9,10,["H834"]],[10,11,["H7586"]],[11,13,["H6213"]],[13,14,["H834"]],[14,18,["H3772","(H853)"]],[18,23,["H178"]],[23,26,["H3049"]],[26,28,["H4480"]],[28,30,["H776"]],[30,31,["H4100"]],[31,34,["H859"]],[34,36,["H5367"]],[36,39,["H5315"]],[39,44,["H4191"]]]},{"k":7952,"v":[[0,2,["H7586"]],[2,3,["H7650"]],[3,8,["H3068"]],[8,9,["H559"]],[9,12,["H3068"]],[12,13,["H2416"]],[13,16,["H518"]],[16,17,["H5771"]],[17,18,["H7136"]],[18,22,["H2088"]],[22,23,["H1697"]]]},{"k":7953,"v":[[0,2,["H559"]],[2,4,["H802","(H853)"]],[4,5,["H4310"]],[5,9,["H5927"]],[9,14,["H559"]],[14,17,["H5927","(H853)"]],[17,18,["H8050"]]]},{"k":7954,"v":[[0,4,["H802"]],[4,5,["H7200","(H853)"]],[5,6,["H8050"]],[6,8,["H2199"]],[8,11,["H1419"]],[11,12,["H6963"]],[12,15,["H802"]],[15,16,["H559"]],[16,17,["H413"]],[17,18,["H7586"]],[18,19,["H559"]],[19,20,["H4100"]],[20,23,["H7411"]],[23,26,["H859"]],[26,28,["H7586"]]]},{"k":7955,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,8,["H408"]],[8,9,["H3372"]],[9,10,["H3588"]],[10,11,["H4100"]],[11,12,["H7200"]],[12,16,["H802"]],[16,17,["H559"]],[17,18,["H413"]],[18,19,["H7586"]],[19,21,["H7200"]],[21,22,["H430"]],[22,23,["H5927"]],[23,25,["H4480"]],[25,27,["H776"]]]},{"k":7956,"v":[[0,3,["H559"]],[3,6,["H4100"]],[6,7,["H8389"]],[7,13,["H559"]],[13,15,["H2205"]],[15,16,["H376"]],[16,18,["H5927"]],[18,20,["H1931"]],[20,22,["H5844"]],[22,25,["H4598"]],[25,27,["H7586"]],[27,28,["H3045"]],[28,29,["H3588"]],[29,32,["H8050"]],[32,34,["H1931"]],[34,35,["H6915"]],[35,38,["H639"]],[38,41,["H776"]],[41,44,["H7812"]]]},{"k":7957,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7586"]],[5,6,["H4100"]],[6,9,["H7264"]],[9,14,["H5927","(H853)"]],[14,16,["H7586"]],[16,17,["H559"]],[17,20,["H3966"]],[20,21,["H6887"]],[21,24,["H6430"]],[24,26,["H3898"]],[26,30,["H430"]],[30,32,["H5493"]],[32,33,["H4480","H5921"]],[33,36,["H6030"]],[36,38,["H3808"]],[38,39,["H5750"]],[39,40,["H1571"]],[40,41,["H3027"]],[41,42,["H5030"]],[42,43,["H1571"]],[43,45,["H2472"]],[45,49,["H7121"]],[49,55,["H3045"]],[55,58,["H4100"]],[58,61,["H6213"]]]},{"k":7958,"v":[[0,2,["H559"]],[2,3,["H8050"]],[3,4,["H4100"]],[4,8,["H7592"]],[8,13,["H3068"]],[13,15,["H5493"]],[15,16,["H4480","H5921"]],[16,20,["H1961"]],[20,22,["H6145"]]]},{"k":7959,"v":[[0,3,["H3068"]],[3,5,["H6213"]],[5,8,["H834"]],[8,10,["H1696"]],[10,11,["H3027"]],[11,15,["H3068"]],[15,17,["H7167","(H853)"]],[17,19,["H4467"]],[19,23,["H4480","H3027"]],[23,25,["H5414"]],[25,29,["H7453"]],[29,32,["H1732"]]]},{"k":7960,"v":[[0,1,["H834"]],[1,3,["H8085"]],[3,4,["H3808"]],[4,6,["H6963"]],[6,9,["H3068"]],[9,10,["H3808"]],[10,11,["H6213"]],[11,13,["H2740"]],[13,14,["H639"]],[14,16,["H6002"]],[16,17,["H5921","H3651"]],[17,20,["H3068"]],[20,21,["H6213"]],[21,22,["H2088"]],[22,23,["H1697"]],[23,26,["H2088"]],[26,27,["H3117"]]]},{"k":7961,"v":[[0,1,["H1571"]],[1,3,["H3068"]],[3,6,["H5414","(H853)"]],[6,7,["H3478"]],[7,8,["H5973"]],[8,12,["H3027"]],[12,15,["H6430"]],[15,18,["H4279"]],[18,20,["H859"]],[20,23,["H1121"]],[23,25,["H5973"]],[25,28,["H3068"]],[28,29,["H1571"]],[29,31,["H5414","(H853)"]],[31,33,["H4264"]],[33,35,["H3478"]],[35,38,["H3027"]],[38,41,["H6430"]]]},{"k":7962,"v":[[0,2,["H7586"]],[2,3,["H5307"]],[3,4,["H4116"]],[4,6,["H4393","H6967"]],[6,9,["H776"]],[9,12,["H3966"]],[12,13,["H3372"]],[13,17,["H4480","H1697"]],[17,19,["H8050"]],[19,20,["H1571"]],[20,22,["H1961"]],[22,23,["H3808"]],[23,24,["H3581"]],[24,27,["H3588"]],[27,30,["H398"]],[30,31,["H3808"]],[31,32,["H3899"]],[32,33,["H3605"]],[33,35,["H3117"]],[35,37,["H3605"]],[37,39,["H3915"]]]},{"k":7963,"v":[[0,3,["H802"]],[3,4,["H935"]],[4,5,["H413"]],[5,6,["H7586"]],[6,8,["H7200"]],[8,9,["H3588"]],[9,12,["H3966"]],[12,13,["H926"]],[13,15,["H559"]],[15,16,["H413"]],[16,18,["H2009"]],[18,20,["H8198"]],[20,22,["H8085"]],[22,24,["H6963"]],[24,28,["H7760"]],[28,30,["H5315"]],[30,33,["H3709"]],[33,36,["H8085"]],[36,37,["(H853)"]],[37,39,["H1697"]],[39,40,["H834"]],[40,42,["H1696"]],[42,43,["H413"]],[43,44,[]]]},{"k":7964,"v":[[0,1,["H6258"]],[1,5,["H4994"]],[5,6,["H8085"]],[6,7,["H859"]],[7,8,["H1571"]],[8,11,["H6963"]],[11,14,["H8198"]],[14,18,["H7760"]],[18,20,["H6595"]],[20,22,["H3899"]],[22,23,["H6440"]],[23,26,["H398"]],[26,30,["H1961"]],[30,31,["H3581"]],[31,32,["H3588"]],[32,34,["H1980"]],[34,37,["H1870"]]]},{"k":7965,"v":[[0,3,["H3985"]],[3,5,["H559"]],[5,8,["H3808"]],[8,9,["H398"]],[9,12,["H5650"]],[12,14,["H1571"]],[14,16,["H802"]],[16,17,["H6555"]],[17,21,["H8085"]],[21,24,["H6963"]],[24,27,["H6965"]],[27,30,["H4480","H776"]],[30,32,["H3427"]],[32,33,["H413"]],[33,35,["H4296"]]]},{"k":7966,"v":[[0,3,["H802"]],[3,6,["H4770"]],[6,7,["H5695"]],[7,10,["H1004"]],[10,13,["H4116"]],[13,15,["H2076"]],[15,18,["H3947"]],[18,19,["H7058"]],[19,21,["H3888"]],[21,25,["H644"]],[25,27,["H4682"]],[27,28,[]]]},{"k":7967,"v":[[0,3,["H5066"]],[3,5,["H6440"]],[5,6,["H7586"]],[6,8,["H6440"]],[8,10,["H5650"]],[10,14,["H398"]],[14,18,["H6965"]],[18,21,["H1980"]],[21,22,["H1931"]],[22,23,["H3915"]]]},{"k":7968,"v":[[0,3,["H6430"]],[3,5,["H6908","(H853)"]],[5,6,["H3605"]],[6,8,["H4264"]],[8,10,["H663"]],[10,13,["H3478"]],[13,14,["H2583"]],[14,17,["H5869"]],[17,18,["H834"]],[18,21,["H3157"]]]},{"k":7969,"v":[[0,3,["H5633"]],[3,6,["H6430"]],[6,8,["H5674"]],[8,10,["H3967"]],[10,13,["H505"]],[13,15,["H1732"]],[15,18,["H376"]],[18,20,["H5674"]],[20,23,["H314"]],[23,24,["H5973"]],[24,25,["H397"]]]},{"k":7970,"v":[[0,2,["H559"]],[2,4,["H8269"]],[4,7,["H6430"]],[7,8,["H4100"]],[8,10,["H428"]],[10,11,["H5680"]],[11,14,["H397"]],[14,15,["H559"]],[15,16,["H413"]],[16,18,["H8269"]],[18,21,["H6430"]],[21,23,["H3808"]],[23,24,["H2088"]],[24,25,["H1732"]],[25,27,["H5650"]],[27,29,["H7586"]],[29,31,["H4428"]],[31,33,["H3478"]],[33,34,["H834"]],[34,36,["H1961"]],[36,37,["H854"]],[37,39,["H2088"]],[39,40,["H3117"]],[40,41,["H176"]],[41,42,["H2088"]],[42,43,["H8141"]],[43,47,["H4672"]],[47,48,["H3808"]],[48,49,["H3972"]],[49,52,["H4480","H3117"]],[52,54,["H5307"]],[54,57,["H5704"]],[57,58,["H2088"]],[58,59,["H3117"]]]},{"k":7971,"v":[[0,3,["H8269"]],[3,6,["H6430"]],[6,8,["H7107"]],[8,9,["H5973"]],[9,13,["H8269"]],[13,16,["H6430"]],[16,17,["H559"]],[17,23,["H7725","(H853)","H376"]],[23,28,["H7725"]],[28,29,["H413"]],[29,31,["H4725"]],[31,32,["H834","H8033"]],[32,35,["H6485"]],[35,40,["H3808"]],[40,42,["H3381"]],[42,43,["H5973"]],[43,46,["H4421"]],[46,47,["H3808"]],[47,50,["H4421"]],[50,52,["H1961"]],[52,54,["H7854"]],[54,58,["H4100"]],[58,61,["H7521"]],[61,62,["H2088"]],[62,63,["H413"]],[63,65,["H113"]],[65,68,["H3808"]],[68,72,["H7218"]],[72,74,["H1992"]],[74,75,["H376"]]]},{"k":7972,"v":[[0,2,["H3808"]],[2,3,["H2088"]],[3,4,["H1732"]],[4,6,["H834"]],[6,8,["H6030"]],[8,13,["H4246"]],[13,14,["H559"]],[14,15,["H7586"]],[15,16,["H5221"]],[16,18,["H505"]],[18,20,["H1732"]],[20,23,["H7233"]]]},{"k":7973,"v":[[0,2,["H397"]],[2,3,["H7121","H413"]],[3,4,["H1732"]],[4,6,["H559"]],[6,7,["H413"]],[7,12,["H3068"]],[12,13,["H2416"]],[13,14,["H859"]],[14,17,["H3477"]],[17,21,["H3318"]],[21,25,["H935"]],[25,26,["H854"]],[26,30,["H4264"]],[30,32,["H2896"]],[32,35,["H5869"]],[35,36,["H3588"]],[36,39,["H3808"]],[39,40,["H4672"]],[40,41,["H7451"]],[41,46,["H4480","H3117"]],[46,49,["H935"]],[49,50,["H413"]],[50,52,["H5704"]],[52,53,["H2088"]],[53,54,["H3117"]],[54,57,["H5869","H5633"]],[57,58,["H2896"]],[58,59,["H859"]],[59,60,["H3808"]]]},{"k":7974,"v":[[0,2,["H6258"]],[2,3,["H7725"]],[3,5,["H1980"]],[5,7,["H7965"]],[7,10,["H6213","H7451","H5869"]],[10,11,["H3808"]],[11,13,["H5633"]],[13,16,["H6430"]]]},{"k":7975,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H397"]],[5,6,["H3588"]],[6,7,["H4100"]],[7,10,["H6213"]],[10,12,["H4100"]],[12,15,["H4672"]],[15,18,["H5650"]],[18,20,["H4480","H3117"]],[20,21,["H834"]],[21,24,["H1961"]],[24,25,["H6440"]],[25,27,["H5704"]],[27,28,["H2088"]],[28,29,["H3117"]],[29,30,["H3588"]],[30,33,["H3808"]],[33,34,["H1980"]],[34,35,["H3898"]],[35,38,["H341"]],[38,41,["H113"]],[41,43,["H4428"]]]},{"k":7976,"v":[[0,2,["H397"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H413"]],[6,7,["H1732"]],[7,9,["H3045"]],[9,10,["H3588"]],[10,11,["H859"]],[11,13,["H2896"]],[13,16,["H5869"]],[16,19,["H4397"]],[19,21,["H430"]],[21,22,["H389"]],[22,24,["H8269"]],[24,27,["H6430"]],[27,29,["H559"]],[29,32,["H3808"]],[32,34,["H5927"]],[34,35,["H5973"]],[35,39,["H4421"]]]},{"k":7977,"v":[[0,2,["H6258"]],[2,5,["H7925"]],[5,8,["H1242"]],[8,11,["H113"]],[11,12,["H5650"]],[12,13,["H834"]],[13,15,["H935"]],[15,16,["H854"]],[16,25,["H7925"]],[25,28,["H1242"]],[28,31,["H216"]],[31,32,["H1980"]]]},{"k":7978,"v":[[0,2,["H1732"]],[2,5,["H376"]],[5,8,["H7925"]],[8,10,["H1980"]],[10,13,["H1242"]],[13,15,["H7725"]],[15,16,["H413"]],[16,18,["H776"]],[18,21,["H6430"]],[21,24,["H6430"]],[24,26,["H5927"]],[26,28,["H3157"]]]},{"k":7979,"v":[[0,5,["H1961"]],[5,7,["H1732"]],[7,10,["H376"]],[10,12,["H935"]],[12,14,["H6860"]],[14,17,["H7992"]],[17,18,["H3117"]],[18,21,["H6003"]],[21,23,["H6584","H413"]],[23,25,["H5045"]],[25,27,["H6860"]],[27,29,["H5221","(H853)"]],[29,30,["H6860"]],[30,32,["H8313"]],[32,35,["H784"]]]},{"k":7980,"v":[[0,6,["H7617","(H853)","H802"]],[6,7,["H834"]],[7,11,["H4191"]],[11,12,["H3808"]],[12,13,["H376"]],[13,14,["H5704"]],[14,15,["H1419"]],[15,17,["H4480","H6996"]],[17,21,["H5090"]],[21,23,["H1980"]],[23,26,["H1870"]]]},{"k":7981,"v":[[0,2,["H1732"]],[2,5,["H376"]],[5,6,["H935"]],[6,7,["H413"]],[7,9,["H5892"]],[9,11,["H2009"]],[11,14,["H8313"]],[14,16,["H784"]],[16,19,["H802"]],[19,22,["H1121"]],[22,25,["H1323"]],[25,28,["H7617"]]]},{"k":7982,"v":[[0,2,["H1732"]],[2,5,["H5971"]],[5,6,["H834"]],[6,8,["H854"]],[8,11,["H5375","(H853)"]],[11,13,["H6963"]],[13,15,["H1058"]],[15,16,["H5704","H834"]],[16,20,["H369"]],[20,21,["H3581"]],[21,23,["H1058"]]]},{"k":7983,"v":[[0,2,["H1732"]],[2,3,["H8147"]],[3,4,["H802"]],[4,7,["H7617"]],[7,8,["H293"]],[8,10,["H3159"]],[10,12,["H26"]],[12,14,["H802"]],[14,16,["H5037"]],[16,18,["H3761"]]]},{"k":7984,"v":[[0,2,["H1732"]],[2,4,["H3966"]],[4,5,["H3334"]],[5,6,["H3588"]],[6,8,["H5971"]],[8,9,["H559"]],[9,11,["H5619"]],[11,13,["H3588"]],[13,15,["H5315"]],[15,17,["H3605"]],[17,19,["H5971"]],[19,21,["H4843"]],[21,23,["H376"]],[23,24,["H5921"]],[24,26,["H1121"]],[26,28,["H5921"]],[28,30,["H1323"]],[30,32,["H1732"]],[32,34,["H2388"]],[34,37,["H3068"]],[37,39,["H430"]]]},{"k":7985,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H54"]],[5,7,["H3548"]],[7,8,["H288"]],[8,9,["H1121"]],[9,12,["H4994"]],[12,15,["H5066"]],[15,17,["H646"]],[17,19,["H54"]],[19,20,["H5066"]],[20,21,["(H853)"]],[21,23,["H646"]],[23,24,["H413"]],[24,25,["H1732"]]]},{"k":7986,"v":[[0,2,["H1732"]],[2,3,["H7592"]],[3,6,["H3068"]],[6,7,["H559"]],[7,10,["H7291"]],[10,11,["H310"]],[11,12,["H2088"]],[12,13,["H1416"]],[13,16,["H5381"]],[16,20,["H559"]],[20,22,["H7291"]],[22,23,["H3588"]],[23,27,["H5381","H5381"]],[27,32,["H5337","H5337"]],[32,33,[]]]},{"k":7987,"v":[[0,2,["H1732"]],[2,3,["H1980"]],[3,4,["H1931"]],[4,7,["H8337"]],[7,8,["H3967"]],[8,9,["H376"]],[9,10,["H834"]],[10,12,["H854"]],[12,15,["H935"]],[15,16,["H5704"]],[16,18,["H5158"]],[18,19,["H1308"]],[19,25,["H3498"]],[25,26,["H5975"]]]},{"k":7988,"v":[[0,2,["H1732"]],[2,3,["H7291"]],[3,4,["H1931"]],[4,6,["H702"]],[6,7,["H3967"]],[7,8,["H376"]],[8,11,["H3967","(H376)"]],[11,13,["H5975"]],[13,14,["H834"]],[14,17,["H6296"]],[17,23,["H4480","H5674","(H853)"]],[23,25,["H5158"]],[25,26,["H1308"]]]},{"k":7989,"v":[[0,3,["H4672"]],[3,5,["H376","H4713"]],[5,8,["H7704"]],[8,10,["H3947"]],[10,12,["H413"]],[12,13,["H1732"]],[13,15,["H5414"]],[15,17,["H3899"]],[17,21,["H398"]],[21,26,["H8248"]],[26,27,["H4325"]]]},{"k":7990,"v":[[0,3,["H5414"]],[3,6,["H6400"]],[6,11,["H1690"]],[11,13,["H8147"]],[13,16,["H6778"]],[16,21,["H398"]],[21,23,["H7307"]],[23,25,["H7725"]],[25,26,["H413"]],[26,28,["H3588"]],[28,31,["H398"]],[31,32,["H3808"]],[32,33,["H3899"]],[33,34,["H3808"]],[34,35,["H8354"]],[35,37,["H4325"]],[37,38,["H7969"]],[38,39,["H3117"]],[39,41,["H7969"]],[41,42,["H3915"]]]},{"k":7991,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,7,["H4310"]],[7,9,["H859"]],[9,11,["H335","H4480","H2088"]],[11,13,["H859"]],[13,16,["H559"]],[16,17,["H595"]],[17,21,["H5288"]],[21,23,["H4713"]],[23,24,["H5650"]],[24,27,["H376","H6003"]],[27,30,["H113"]],[30,31,["H5800"]],[31,33,["H3588"]],[33,34,["H7969"]],[34,35,["H3117"]],[35,39,["H2470"]]]},{"k":7992,"v":[[0,1,["H587"]],[1,4,["H6584"]],[4,7,["H5045"]],[7,10,["H3774"]],[10,12,["H5921"]],[12,15,["H834"]],[15,18,["H3063"]],[18,20,["H5921"]],[20,22,["H5045"]],[22,24,["H3612"]],[24,27,["H8313"]],[27,28,["H6860"]],[28,30,["H784"]]]},{"k":7993,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,10,["H3381"]],[10,11,["H413"]],[11,12,["H2088"]],[12,13,["H1416"]],[13,16,["H559"]],[16,17,["H7650"]],[17,21,["H430"]],[21,25,["H518"]],[25,26,["H4191"]],[26,28,["H518"]],[28,29,["H5462"]],[29,33,["H3027"]],[33,36,["H113"]],[36,42,["H3381"]],[42,43,["H413"]],[43,44,["H2088"]],[44,45,["H1416"]]]},{"k":7994,"v":[[0,7,["H3381"]],[7,8,["H2009"]],[8,12,["H5203"]],[12,13,["H5921","H6440"]],[13,14,["H3605"]],[14,16,["H776"]],[16,17,["H398"]],[17,19,["H8354"]],[19,21,["H2287"]],[21,24,["H3605"]],[24,26,["H1419"]],[26,27,["H7998"]],[27,28,["H834"]],[28,31,["H3947"]],[31,35,["H4480","H776"]],[35,38,["H6430"]],[38,43,["H4480","H776"]],[43,45,["H3063"]]]},{"k":7995,"v":[[0,2,["H1732"]],[2,3,["H5221"]],[3,7,["H4480","H5399"]],[7,9,["H5704"]],[9,11,["H6153"]],[11,15,["H4283"]],[15,18,["H4422"]],[18,19,["H3808"]],[19,21,["H376"]],[21,24,["H3588","H518"]],[24,25,["H702"]],[25,26,["H3967"]],[26,27,["H5288"]],[27,28,["H376"]],[28,29,["H834"]],[29,30,["H7392"]],[30,31,["H5921"]],[31,32,["H1581"]],[32,34,["H5127"]]]},{"k":7996,"v":[[0,2,["H1732"]],[2,3,["H5337","(H853)"]],[3,4,["H3605"]],[4,5,["H834"]],[5,7,["H6002"]],[7,10,["H3947"]],[10,12,["H1732"]],[12,13,["H5337"]],[13,15,["H8147"]],[15,16,["H802"]]]},{"k":7997,"v":[[0,4,["H3808"]],[4,5,["H5737"]],[5,8,["H4480"]],[8,9,["H6996"]],[9,10,["H5704"]],[10,11,["H1419"]],[11,12,["H5704"]],[12,13,["H1121"]],[13,15,["H1323"]],[15,17,["H4480","H7998"]],[17,18,["H5704"]],[18,19,["H3605"]],[19,21,["H834"]],[21,24,["H3947"]],[24,27,["H1732"]],[27,28,["H7725"]],[28,29,["H3605"]]]},{"k":7998,"v":[[0,2,["H1732"]],[2,3,["H3947","(H853)"]],[3,4,["H3605"]],[4,6,["H6629"]],[6,9,["H1241"]],[9,12,["H5090"]],[12,13,["H6440"]],[13,14,["H1931"]],[14,16,["H4735"]],[16,18,["H559"]],[18,19,["H2088"]],[19,21,["H1732"]],[21,22,["H7998"]]]},{"k":7999,"v":[[0,2,["H1732"]],[2,3,["H935"]],[3,4,["H413"]],[4,7,["H3967"]],[7,8,["H376"]],[8,9,["H834"]],[9,12,["H6296"]],[12,17,["H1980","H310"]],[17,18,["H1732"]],[18,25,["H3427"]],[25,28,["H5158"]],[28,29,["H1308"]],[29,33,["H3318"]],[33,35,["H7125"]],[35,36,["H1732"]],[36,39,["H7125"]],[39,41,["H5971"]],[41,42,["H834"]],[42,44,["H854"]],[44,48,["H1732"]],[48,50,["H5066"]],[50,51,["(H853)"]],[51,53,["H5971"]],[53,55,["H7592","H7965"]],[55,56,[]]]},{"k":8000,"v":[[0,2,["H6030"]],[2,3,["H3605"]],[3,5,["H7451"]],[5,6,["H376"]],[6,10,["H1100"]],[10,12,["H4480","H376"]],[12,13,["H834"]],[13,14,["H1980"]],[14,15,["H5973"]],[15,16,["H1732"]],[16,18,["H559"]],[18,19,["H3282","H834"]],[19,21,["H1980"]],[21,22,["H3808"]],[22,23,["H5973"]],[23,27,["H3808"]],[27,28,["H5414"]],[28,33,["H4480","H7998"]],[33,34,["H834"]],[34,37,["H5337"]],[37,38,["H3588","H518"]],[38,41,["H376","(H853)"]],[41,43,["H802"]],[43,46,["H1121"]],[46,52,["H5090"]],[52,54,["H1980"]]]},{"k":8001,"v":[[0,2,["H559"]],[2,3,["H1732"]],[3,6,["H3808"]],[6,7,["H6213"]],[7,8,["H3651"]],[8,10,["H251"]],[10,11,["H854"]],[11,13,["H834"]],[13,15,["H3068"]],[15,17,["H5414"]],[17,21,["H8104"]],[21,24,["H5414","(H853)"]],[24,26,["H1416"]],[26,28,["H935"]],[28,29,["H5921"]],[29,33,["H3027"]]]},{"k":8002,"v":[[0,2,["H4310"]],[2,4,["H8085"]],[4,8,["H2088"]],[8,9,["H1697"]],[9,10,["H3588"]],[10,13,["H2506"]],[13,17,["H3381"]],[17,20,["H4421"]],[20,24,["H2506"]],[24,27,["H3427"]],[27,28,["H5921"]],[28,30,["H3627"]],[30,33,["H2505"]],[33,34,["H3162"]]]},{"k":8003,"v":[[0,3,["H1961"]],[3,7,["H4480","H3117","H1931"]],[7,8,["H4605"]],[8,11,["H7760"]],[11,14,["H2706"]],[14,17,["H4941"]],[17,19,["H3478"]],[19,20,["H5704"]],[20,21,["H2088"]],[21,22,["H3117"]]]},{"k":8004,"v":[[0,3,["H1732"]],[3,4,["H935"]],[4,5,["H413"]],[5,6,["H6860"]],[6,8,["H7971"]],[8,11,["H4480","H7998"]],[11,14,["H2205"]],[14,16,["H3063"]],[16,20,["H7453"]],[20,21,["H559"]],[21,22,["H2009"]],[22,24,["H1293"]],[24,29,["H4480","H7998"]],[29,32,["H341"]],[32,35,["H3068"]]]},{"k":8005,"v":[[0,3,["H834"]],[3,6,["H1008"]],[6,10,["H834"]],[10,13,["H5045"]],[13,14,["H7418"]],[14,18,["H834"]],[18,21,["H3492"]]]},{"k":8006,"v":[[0,4,["H834"]],[4,7,["H6177"]],[7,11,["H834"]],[11,14,["H8224"]],[14,18,["H834"]],[18,21,["H851"]]]},{"k":8007,"v":[[0,4,["H834"]],[4,7,["H7403"]],[7,11,["H834"]],[11,15,["H5892"]],[15,18,["H3397"]],[18,22,["H834"]],[22,26,["H5892"]],[26,29,["H7017"]]]},{"k":8008,"v":[[0,4,["H834"]],[4,7,["H2767"]],[7,11,["H834"]],[11,14,["H3565"]],[14,18,["H834"]],[18,21,["H6269"]]]},{"k":8009,"v":[[0,4,["H834"]],[4,7,["H2275"]],[7,10,["H3605"]],[10,12,["H4725"]],[12,13,["H834","H8033"]],[13,14,["H1732"]],[14,15,["H1931"]],[15,18,["H376"]],[18,22,["H1980"]]]},{"k":8010,"v":[[0,3,["H6430"]],[3,4,["H3898"]],[4,6,["H3478"]],[6,9,["H376"]],[9,11,["H3478"]],[11,12,["H5127"]],[12,14,["H4480","H6440"]],[14,16,["H6430"]],[16,19,["H5307"]],[19,20,["H2491"]],[20,22,["H2022"]],[22,23,["H1533"]]]},{"k":8011,"v":[[0,3,["H6430"]],[3,6,["H1692","(H853)"]],[6,7,["H7586"]],[7,11,["H1121"]],[11,14,["H6430"]],[14,15,["H5221","(H853)"]],[15,16,["H3083"]],[16,18,["H41"]],[18,20,["H4444"]],[20,21,["H7586"]],[21,22,["H1121"]]]},{"k":8012,"v":[[0,3,["H4421"]],[3,5,["H3513"]],[5,6,["H413"]],[6,7,["H7586"]],[7,10,["H3384","H376"]],[10,11,["H4672"]],[11,16,["H3966"]],[16,17,["H2342"]],[17,20,["H4480","H3384"]]]},{"k":8013,"v":[[0,2,["H559"]],[2,3,["H7586"]],[3,6,["H5375","H3627"]],[6,7,["H8025"]],[7,9,["H2719"]],[9,13,["H1856"]],[13,15,["H6435"]],[15,16,["H428"]],[16,17,["H6189"]],[17,18,["H935"]],[18,22,["H1856"]],[22,24,["H5953"]],[24,28,["H5375","H3627"]],[28,29,["H14"]],[29,30,["H3808"]],[30,31,["H3588"]],[31,34,["H3966"]],[34,35,["H3372"]],[35,37,["H7586"]],[37,38,["H3947","(H853)"]],[38,40,["H2719"]],[40,42,["H5307"]],[42,43,["H5921"]],[43,44,[]]]},{"k":8014,"v":[[0,4,["H5375","H3627"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,7,["H7586"]],[7,9,["H4191"]],[9,10,["H1931"]],[10,11,["H5307"]],[11,12,["H1571"]],[12,13,["H5921"]],[13,15,["H2719"]],[15,17,["H4191"]],[17,18,["H5973"]],[18,19,[]]]},{"k":8015,"v":[[0,2,["H7586"]],[2,3,["H4191"]],[3,6,["H7969"]],[6,7,["H1121"]],[7,10,["H5375","H3627"]],[10,11,["H1571"]],[11,12,["H3605"]],[12,14,["H376"]],[14,16,["H1931"]],[16,17,["H3117"]],[17,18,["H3162"]]]},{"k":8016,"v":[[0,4,["H376"]],[4,6,["H3478"]],[6,7,["H834"]],[7,12,["H5676"]],[12,15,["H6010"]],[15,18,["H834"]],[18,23,["H5676"]],[23,24,["H3383"]],[24,25,["H7200"]],[25,26,["H3588"]],[26,28,["H376"]],[28,30,["H3478"]],[30,31,["H5127"]],[31,33,["H3588"]],[33,34,["H7586"]],[34,37,["H1121"]],[37,39,["H4191"]],[39,41,["H5800","(H853)"]],[41,43,["H5892"]],[43,45,["H5127"]],[45,48,["H6430"]],[48,49,["H935"]],[49,51,["H3427"]],[51,53,["H2004"]]]},{"k":8017,"v":[[0,5,["H1961"]],[5,8,["H4480","H4283"]],[8,11,["H6430"]],[11,12,["H935"]],[12,14,["H6584","(H853)"]],[14,16,["H2491"]],[16,19,["H4672","(H853)"]],[19,20,["H7586"]],[20,23,["H7969"]],[23,24,["H1121"]],[24,25,["H5307"]],[25,27,["H2022"]],[27,28,["H1533"]]]},{"k":8018,"v":[[0,4,["H3772","(H853)"]],[4,6,["H7218"]],[6,9,["H6584","(H853)"]],[9,11,["H3627"]],[11,13,["H7971"]],[13,16,["H776"]],[16,19,["H6430"]],[19,21,["H5439"]],[21,23,["H1319"]],[23,27,["H1004"]],[27,30,["H6091"]],[30,32,["H854"]],[32,34,["H5971"]]]},{"k":8019,"v":[[0,3,["H7760","(H853)"]],[3,5,["H3627"]],[5,8,["H1004"]],[8,10,["H6252"]],[10,13,["H8628"]],[13,15,["H1472"]],[15,18,["H2346"]],[18,20,["H1052"]]]},{"k":8020,"v":[[0,4,["H3427"]],[4,6,["H3003","H1568"]],[6,7,["H8085","H413","(H853)"]],[7,10,["H834"]],[10,12,["H6430"]],[12,14,["H6213"]],[14,16,["H7586"]]]},{"k":8021,"v":[[0,1,["H3605"]],[1,3,["H2428"]],[3,4,["H376"]],[4,5,["H6965"]],[5,7,["H1980"]],[7,8,["H3605"]],[8,9,["H3915"]],[9,11,["H3947","(H853)"]],[11,13,["H1472"]],[13,15,["H7586"]],[15,18,["H1472"]],[18,21,["H1121"]],[21,24,["H4480","H2346"]],[24,26,["H1052"]],[26,28,["H935"]],[28,30,["H3003"]],[30,32,["H8313"]],[32,34,["H8033"]]]},{"k":8022,"v":[[0,3,["H3947","(H853)"]],[3,5,["H6106"]],[5,7,["H6912"]],[7,9,["H8478"]],[9,11,["H815"]],[11,13,["H3003"]],[13,15,["H6684"]],[15,16,["H7651"]],[16,17,["H3117"]]]},{"k":8023,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,8,["H4194"]],[8,10,["H7586"]],[10,12,["H1732"]],[12,14,["H7725"]],[14,17,["H4480","H5221"]],[17,18,["(H853)"]],[18,20,["H6002"]],[20,22,["H1732"]],[22,24,["H3427"]],[24,25,["H8147"]],[25,26,["H3117"]],[26,28,["H6860"]]]},{"k":8024,"v":[[0,5,["H1961"]],[5,8,["H7992"]],[8,9,["H3117"]],[9,11,["H2009"]],[11,13,["H376"]],[13,14,["H935"]],[14,16,["H4480"]],[16,18,["H4264"]],[18,19,["H4480","H5973"]],[19,20,["H7586"]],[20,23,["H899"]],[23,24,["H7167"]],[24,26,["H127"]],[26,27,["H5921"]],[27,29,["H7218"]],[29,33,["H1961"]],[33,36,["H935"]],[36,37,["H413"]],[37,38,["H1732"]],[38,41,["H5307"]],[41,44,["H776"]],[44,47,["H7812"]]]},{"k":8025,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,7,["H335","H4480","H2088"]],[7,8,["H935"]],[8,12,["H559"]],[12,13,["H413"]],[13,18,["H4480","H4264"]],[18,20,["H3478"]],[20,23,["H4422"]]]},{"k":8026,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4100"]],[6,7,["H1961"]],[7,9,["H1697"]],[9,12,["H4994"]],[12,13,["H5046"]],[13,17,["H559"]],[17,18,["H834"]],[18,20,["H5971"]],[20,22,["H5127"]],[22,23,["H4480"]],[23,25,["H4421"]],[25,27,["H7235"]],[27,28,["H4480"]],[28,30,["H5971"]],[30,31,["H1571"]],[31,33,["H5307"]],[33,35,["H4191"]],[35,37,["H7586"]],[37,39,["H3083"]],[39,41,["H1121"]],[41,43,["H4191"]],[43,44,["H1571"]]]},{"k":8027,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,7,["H5288"]],[7,9,["H5046"]],[9,11,["H349"]],[11,12,["H3045"]],[12,14,["H3588"]],[14,15,["H7586"]],[15,17,["H3083"]],[17,19,["H1121"]],[19,21,["H4191"]]]},{"k":8028,"v":[[0,4,["H5288"]],[4,6,["H5046"]],[6,8,["H559"]],[8,11,["H7136"]],[11,13,["H7122"]],[13,15,["H2022"]],[15,16,["H1533"]],[16,17,["H2009"]],[17,18,["H7586"]],[18,19,["H8172"]],[19,20,["H5921"]],[20,22,["H2595"]],[22,24,["H2009"]],[24,26,["H7393"]],[26,28,["H1167","H6571"]],[28,30,["H1692"]],[30,32,[]]]},{"k":8029,"v":[[0,4,["H6437"]],[4,5,["H310"]],[5,8,["H7200"]],[8,11,["H7121"]],[11,12,["H413"]],[12,16,["H559"]],[16,17,["H2009"]],[17,19,[]]]},{"k":8030,"v":[[0,3,["H559"]],[3,6,["H4310"]],[6,8,["H859"]],[8,11,["H559"]],[11,12,["H413"]],[12,13,["H595"]],[13,16,["H6003"]]]},{"k":8031,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,6,["H5975"]],[6,9,["H4994"]],[9,10,["H5921"]],[10,13,["H4191"]],[13,15,["H3588"]],[15,16,["H7661"]],[16,18,["H270"]],[18,21,["H3588"]],[21,23,["H5315"]],[23,25,["H5750"]],[25,26,["H3605"]],[26,28,[]]]},{"k":8032,"v":[[0,3,["H5975"]],[3,4,["H5921"]],[4,7,["H4191"]],[7,9,["H3588"]],[9,12,["H3045"]],[12,13,["H3588"]],[13,16,["H3808"]],[16,17,["H2421"]],[17,19,["H310"]],[19,22,["H5307"]],[22,25,["H3947"]],[25,27,["H5145"]],[27,28,["H834"]],[28,30,["H5921"]],[30,32,["H7218"]],[32,35,["H685"]],[35,36,["H834"]],[36,38,["H5921"]],[38,40,["H2220"]],[40,43,["H935"]],[43,45,["H2008"]],[45,46,["H413"]],[46,48,["H113"]]]},{"k":8033,"v":[[0,2,["H1732"]],[2,4,["H2388"]],[4,7,["H899"]],[7,9,["H7167"]],[9,12,["H1571"]],[12,13,["H3605"]],[13,15,["H376"]],[15,16,["H834"]],[16,18,["H854"]],[18,19,[]]]},{"k":8034,"v":[[0,3,["H5594"]],[3,5,["H1058"]],[5,7,["H6684"]],[7,8,["H5704"]],[8,9,["H6153"]],[9,10,["H5921"]],[10,11,["H7586"]],[11,13,["H5921"]],[13,14,["H3083"]],[14,16,["H1121"]],[16,18,["H5921"]],[18,20,["H5971"]],[20,23,["H3068"]],[23,25,["H5921"]],[25,27,["H1004"]],[27,29,["H3478"]],[29,30,["H3588"]],[30,33,["H5307"]],[33,36,["H2719"]]]},{"k":8035,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,7,["H5288"]],[7,9,["H5046"]],[9,11,["H335","H4480","H4100"]],[11,13,["H859"]],[13,16,["H559"]],[16,17,["H595"]],[17,20,["H1121"]],[20,23,["H376","H1616"]],[23,25,["H6003"]]]},{"k":8036,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H349"]],[6,9,["H3808"]],[9,10,["H3372"]],[10,13,["H7971"]],[13,15,["H3027"]],[15,17,["H7843","(H853)"]],[17,19,["H3068"]],[19,20,["H4899"]]]},{"k":8037,"v":[[0,2,["H1732"]],[2,3,["H7121"]],[3,4,["H259"]],[4,8,["H4480","H5288"]],[8,10,["H559"]],[10,12,["H5066"]],[12,14,["H6293"]],[14,19,["H5221"]],[19,23,["H4191"]]]},{"k":8038,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,7,["H1818"]],[7,9,["H5921"]],[9,11,["H7218"]],[11,12,["H3588"]],[12,14,["H6310"]],[14,16,["H6030"]],[16,19,["H559"]],[19,20,["H595"]],[20,22,["H4191","(H853)"]],[22,24,["H3068"]],[24,25,["H4899"]]]},{"k":8039,"v":[[0,2,["H1732"]],[2,3,["H6969"]],[3,4,["H854"]],[4,5,["H2063"]],[5,6,["H7015"]],[6,7,["H5921"]],[7,8,["H7586"]],[8,10,["H5921"]],[10,11,["H3083"]],[11,13,["H1121"]]]},{"k":8040,"v":[[0,3,["H559"]],[3,5,["H3925"]],[5,7,["H1121"]],[7,9,["H3063"]],[9,14,["H7198"]],[14,15,["H2009"]],[15,18,["H3789"]],[18,19,["H5921"]],[19,21,["H5612"]],[21,23,["H3477"]]]},{"k":8041,"v":[[0,2,["H6643"]],[2,4,["H3478"]],[4,6,["H2491"]],[6,7,["H5921"]],[7,10,["H1116"]],[10,11,["H349"]],[11,14,["H1368"]],[14,15,["H5307"]]]},{"k":8042,"v":[[0,1,["H5046"]],[1,3,["H408"]],[3,5,["H1661"]],[5,6,["H1319"]],[6,8,["H408"]],[8,11,["H2351"]],[11,13,["H831"]],[13,14,["H6435"]],[14,16,["H1323"]],[16,19,["H6430"]],[19,20,["H8055"]],[20,21,["H6435"]],[21,23,["H1323"]],[23,26,["H6189"]],[26,27,["H5937"]]]},{"k":8043,"v":[[0,2,["H2022"]],[2,4,["H1533"]],[4,8,["H408"]],[8,9,["H2919"]],[9,10,["H408"]],[10,14,["H4306"]],[14,15,["H5921"]],[15,18,["H7704"]],[18,20,["H8641"]],[20,21,["H3588"]],[21,22,["H8033"]],[22,24,["H4043"]],[24,27,["H1368"]],[27,31,["H1602"]],[31,33,["H4043"]],[33,35,["H7586"]],[35,40,["H1097"]],[40,42,["H4899"]],[42,44,["H8081"]]]},{"k":8044,"v":[[0,3,["H4480","H1818"]],[3,6,["H2491"]],[6,9,["H4480","H2459"]],[9,12,["H1368"]],[12,14,["H7198"]],[14,16,["H3083"]],[16,17,["H7734"]],[17,18,["H3808"]],[18,19,["H268"]],[19,22,["H2719"]],[22,24,["H7586"]],[24,25,["H7725"]],[25,26,["H3808"]],[26,27,["H7387"]]]},{"k":8045,"v":[[0,1,["H7586"]],[1,3,["H3083"]],[3,5,["H157"]],[5,7,["H5273"]],[7,10,["H2416"]],[10,14,["H4194"]],[14,17,["H3808"]],[17,18,["H6504"]],[18,21,["H7043"]],[21,23,["H4480","H5404"]],[23,26,["H1396"]],[26,28,["H4480","H738"]]]},{"k":8046,"v":[[0,2,["H1323"]],[2,4,["H3478"]],[4,5,["H1058"]],[5,6,["H413"]],[6,7,["H7586"]],[7,9,["H3847"]],[9,12,["H8144"]],[12,13,["H5973"]],[13,15,["H5730"]],[15,18,["H5927"]],[18,19,["H5716"]],[19,21,["H2091"]],[21,22,["H5921"]],[22,24,["H3830"]]]},{"k":8047,"v":[[0,1,["H349"]],[1,4,["H1368"]],[4,5,["H5307"]],[5,8,["H8432"]],[8,11,["H4421"]],[11,13,["H3083"]],[13,16,["H2491"]],[16,17,["H5921"]],[17,20,["H1116"]]]},{"k":8048,"v":[[0,3,["H6887"]],[3,4,["H5921"]],[4,7,["H251"]],[7,8,["H3083"]],[8,9,["H3966"]],[9,10,["H5276"]],[10,17,["H160"]],[17,21,["H6381"]],[21,24,["H4480","H160"]],[24,26,["H802"]]]},{"k":8049,"v":[[0,1,["H349"]],[1,4,["H1368"]],[4,5,["H5307"]],[5,8,["H3627"]],[8,10,["H4421"]],[10,11,["H6"]]]},{"k":8050,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H3651"]],[7,9,["H1732"]],[9,10,["H7592"]],[10,13,["H3068"]],[13,14,["H559"]],[14,18,["H5927"]],[18,20,["H259"]],[20,23,["H5892"]],[23,25,["H3063"]],[25,28,["H3068"]],[28,29,["H559"]],[29,30,["H413"]],[30,33,["H5927"]],[33,35,["H1732"]],[35,36,["H559"]],[36,37,["H575"]],[37,41,["H5927"]],[41,44,["H559"]],[44,46,["H2275"]]]},{"k":8051,"v":[[0,2,["H1732"]],[2,4,["H5927"]],[4,5,["H8033"]],[5,8,["H8147"]],[8,9,["H802"]],[9,10,["H1571"]],[10,11,["H293"]],[11,13,["H3159"]],[13,15,["H26"]],[15,16,["H5037"]],[16,17,["H802"]],[17,19,["H3761"]]]},{"k":8052,"v":[[0,3,["H376"]],[3,4,["H834"]],[4,6,["H5973"]],[6,9,["H1732"]],[9,11,["H5927"]],[11,13,["H376"]],[13,16,["H1004"]],[16,19,["H3427"]],[19,22,["H5892"]],[22,24,["H2275"]]]},{"k":8053,"v":[[0,3,["H376"]],[3,5,["H3063"]],[5,6,["H935"]],[6,8,["H8033"]],[8,10,["H4886","(H853)"]],[10,11,["H1732"]],[11,12,["H4428"]],[12,13,["H5921"]],[13,15,["H1004"]],[15,17,["H3063"]],[17,20,["H5046"]],[20,21,["H1732"]],[21,22,["H559"]],[22,25,["H376"]],[25,27,["H3003","H1568"]],[27,30,["H834"]],[30,31,["H6912","(H853)"]],[31,32,["H7586"]]]},{"k":8054,"v":[[0,2,["H1732"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,7,["H376"]],[7,9,["H3003","H1568"]],[9,11,["H559"]],[11,12,["H413"]],[12,14,["H1288"]],[14,16,["H859"]],[16,19,["H3068"]],[19,20,["H834"]],[20,23,["H6213"]],[23,24,["H2088"]],[24,25,["H2617"]],[25,26,["H5973"]],[26,28,["H113"]],[28,30,["H5973"]],[30,31,["H7586"]],[31,34,["H6912"]],[34,35,[]]]},{"k":8055,"v":[[0,2,["H6258"]],[2,4,["H3068"]],[4,5,["H6213"]],[5,6,["H2617"]],[6,8,["H571"]],[8,9,["H5973"]],[9,12,["H595"]],[12,13,["H1571"]],[13,15,["H6213"]],[15,17,["H2063"]],[17,18,["H2896"]],[18,19,["H834"]],[19,22,["H6213"]],[22,23,["H2088"]],[23,24,["H1697"]]]},{"k":8056,"v":[[0,2,["H6258"]],[2,5,["H3027"]],[5,7,["H2388"]],[7,9,["H1961"]],[9,11,["H1121","H2428"]],[11,12,["H3588"]],[12,14,["H113"]],[14,15,["H7586"]],[15,17,["H4191"]],[17,19,["H1571"]],[19,21,["H1004"]],[21,23,["H3063"]],[23,25,["H4886"]],[25,27,["H4428"]],[27,28,["H5921"]],[28,29,[]]]},{"k":8057,"v":[[0,2,["H74"]],[2,4,["H1121"]],[4,6,["H5369"]],[6,7,["H8269"]],[7,9,["H7586"]],[9,10,["H6635"]],[10,11,["H3947","(H853)"]],[11,12,["H378"]],[12,14,["H1121"]],[14,16,["H7586"]],[16,20,["H5674"]],[20,22,["H4266"]]]},{"k":8058,"v":[[0,4,["H4427"]],[4,5,["H413"]],[5,6,["H1568"]],[6,8,["H413"]],[8,10,["H843"]],[10,12,["H413"]],[12,13,["H3157"]],[13,15,["H5921"]],[15,16,["H669"]],[16,18,["H5921"]],[18,19,["H1144"]],[19,21,["H5921"]],[21,22,["H3605"]],[22,23,["H3478"]]]},{"k":8059,"v":[[0,1,["H378"]],[1,2,["H7586"]],[2,3,["H1121"]],[3,5,["H705"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,13,["H5921"]],[13,14,["H3478"]],[14,16,["H4427"]],[16,17,["H8147"]],[17,18,["H8141"]],[18,19,["H389"]],[19,21,["H1004"]],[21,23,["H3063"]],[23,24,["H1961","H310"]],[24,25,["H1732"]]]},{"k":8060,"v":[[0,3,["H4557","H3117"]],[3,4,["H834"]],[4,5,["H1732"]],[5,6,["H1961"]],[6,7,["H4428"]],[7,9,["H2275"]],[9,10,["H5921"]],[10,12,["H1004"]],[12,14,["H3063"]],[14,15,["H1961"]],[15,16,["H7651"]],[16,17,["H8141"]],[17,19,["H8337"]],[19,20,["H2320"]]]},{"k":8061,"v":[[0,2,["H74"]],[2,4,["H1121"]],[4,6,["H5369"]],[6,9,["H5650"]],[9,11,["H378"]],[11,13,["H1121"]],[13,15,["H7586"]],[15,17,["H3318"]],[17,19,["H4480","H4266"]],[19,21,["H1391"]]]},{"k":8062,"v":[[0,2,["H3097"]],[2,4,["H1121"]],[4,6,["H6870"]],[6,9,["H5650"]],[9,11,["H1732"]],[11,13,["H3318"]],[13,15,["H6298"]],[15,16,["H3162"]],[16,17,["H5921"]],[17,19,["H1295"]],[19,21,["H1391"]],[21,25,["H3427"]],[25,27,["H428"]],[27,31,["H4480","H2088"]],[31,32,["H5921"]],[32,34,["H1295"]],[34,37,["H428"]],[37,41,["H4480","H2088"]],[41,42,["H5921"]],[42,44,["H1295"]]]},{"k":8063,"v":[[0,2,["H74"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3097"]],[5,9,["H5288"]],[9,10,["H4994"]],[10,11,["H6965"]],[11,13,["H7832"]],[13,14,["H6440"]],[14,17,["H3097"]],[17,18,["H559"]],[18,21,["H6965"]]]},{"k":8064,"v":[[0,3,["H6965"]],[3,6,["H5674"]],[6,8,["H4557"]],[8,9,["H8147","H6240"]],[9,11,["H1144"]],[11,15,["H378"]],[15,17,["H1121"]],[17,19,["H7586"]],[19,21,["H8147","H6240"]],[21,24,["H4480","H5650"]],[24,26,["H1732"]]]},{"k":8065,"v":[[0,3,["H2388"]],[3,5,["H376"]],[5,7,["H7453"]],[7,10,["H7218"]],[10,14,["H2719"]],[14,17,["H7453"]],[17,18,["H6654"]],[18,22,["H5307"]],[22,23,["H3162"]],[23,25,["H1931"]],[25,26,["H4725"]],[26,28,["H7121"]],[28,29,["H2521"]],[29,30,["H834"]],[30,33,["H1391"]]]},{"k":8066,"v":[[0,3,["H1961"]],[3,5,["H5704","H3966"]],[5,6,["H7186"]],[6,7,["H4421"]],[7,8,["H1931"]],[8,9,["H3117"]],[9,11,["H74"]],[11,13,["H5062"]],[13,16,["H376"]],[16,18,["H3478"]],[18,19,["H6440"]],[19,21,["H5650"]],[21,23,["H1732"]]]},{"k":8067,"v":[[0,2,["H8033"]],[2,3,["H1961"]],[3,4,["H7969"]],[4,5,["H1121"]],[5,7,["H6870"]],[7,9,["H3097"]],[9,11,["H52"]],[11,13,["H6214"]],[13,15,["H6214"]],[15,18,["H7031"]],[18,20,["H7272"]],[20,22,["H259"]],[22,23,["H834","H7704"]],[23,24,["H6643"]]]},{"k":8068,"v":[[0,2,["H6214"]],[2,3,["H7291"]],[3,4,["H310"]],[4,5,["H74"]],[5,8,["H1980"]],[8,10,["H5186"]],[10,11,["H3808"]],[11,12,["H5921"]],[12,14,["H3225"]],[14,17,["H5921"]],[17,19,["H8040"]],[19,21,["H4480","H310"]],[21,22,["H74"]]]},{"k":8069,"v":[[0,2,["H74"]],[2,3,["H6437"]],[3,4,["H310"]],[4,7,["H559"]],[7,9,["H859"]],[9,10,["H6214"]],[10,13,["H559"]],[13,14,["H595"]],[14,15,[]]]},{"k":8070,"v":[[0,2,["H74"]],[2,3,["H559"]],[3,8,["H5186"]],[8,9,["H5921"]],[9,11,["H3225"]],[11,13,["H176"]],[13,14,["H5921"]],[14,16,["H8040"]],[16,20,["H270"]],[20,22,["H259"]],[22,26,["H4480","H5288"]],[26,28,["H3947"]],[28,29,["(H853)"]],[29,31,["H2488"]],[31,33,["H6214"]],[33,34,["H14"]],[34,35,["H3808"]],[35,37,["H5493"]],[37,39,["H4480","H310"]],[39,41,[]]]},{"k":8071,"v":[[0,2,["H74"]],[2,3,["H559"]],[3,4,["H3254"]],[4,5,["H413"]],[5,6,["H6214"]],[6,9,["H5493"]],[9,11,["H4480","H310"]],[11,13,["H4100"]],[13,16,["H5221"]],[16,20,["H776"]],[20,21,["H349"]],[21,26,["H5375"]],[26,28,["H6440"]],[28,29,["H413"]],[29,30,["H3097"]],[30,32,["H251"]]]},{"k":8072,"v":[[0,3,["H3985"]],[3,6,["H5493"]],[6,8,["H74"]],[8,13,["H310"]],[13,15,["H2595"]],[15,16,["H5221"]],[16,18,["H413"]],[18,20,["H2570"]],[20,24,["H2595"]],[24,26,["H3318"]],[26,27,["H4480","H310"]],[27,32,["H5307"]],[32,33,["H8033"]],[33,35,["H4191"]],[35,39,["H8478"]],[39,44,["H1961"]],[44,47,["H3605"]],[47,49,["H935"]],[49,50,["H413"]],[50,52,["H4725"]],[52,53,["H834"]],[53,54,["H6214"]],[54,56,["H5307"]],[56,58,["H4191"]],[58,60,["H5975"]]]},{"k":8073,"v":[[0,1,["H3097"]],[1,4,["H52"]],[4,5,["H7291"]],[5,6,["H310"]],[6,7,["H74"]],[7,10,["H8121"]],[10,12,["H935"]],[12,14,["H1992"]],[14,16,["H935"]],[16,17,["H5704"]],[17,19,["H1389"]],[19,21,["H522"]],[21,22,["H834"]],[22,24,["H5921","H6440"]],[24,25,["H1520"]],[25,28,["H1870"]],[28,31,["H4057"]],[31,33,["H1391"]]]},{"k":8074,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,8,["H6908"]],[8,9,["H310"]],[9,10,["H74"]],[10,12,["H1961"]],[12,13,["H259"]],[13,14,["H92"]],[14,16,["H5975"]],[16,17,["H5921"]],[17,19,["H7218"]],[19,21,["H259"]],[21,22,["H1389"]]]},{"k":8075,"v":[[0,2,["H74"]],[2,3,["H7121"]],[3,4,["H413"]],[4,5,["H3097"]],[5,7,["H559"]],[7,10,["H2719"]],[10,11,["H398"]],[11,13,["H5331"]],[13,14,["H3045"]],[14,16,["H3808"]],[16,17,["H3588"]],[17,20,["H1961"]],[20,21,["H4751"]],[21,25,["H314"]],[25,27,["H5704"]],[27,32,["H3808"]],[32,34,["H559"]],[34,36,["H5971"]],[36,37,["H7725"]],[37,39,["H4480","H310"]],[39,41,["H251"]]]},{"k":8076,"v":[[0,2,["H3097"]],[2,3,["H559"]],[3,5,["H430"]],[5,6,["H2416"]],[6,7,["H3588","H3884"]],[7,10,["H1696"]],[10,11,["H3588"]],[11,12,["H227"]],[12,15,["H1242"]],[15,17,["H5971"]],[17,20,["H5927"]],[20,22,["H376"]],[22,24,["H4480","H310"]],[24,26,["H251"]]]},{"k":8077,"v":[[0,2,["H3097"]],[2,3,["H8628"]],[3,5,["H7782"]],[5,7,["H3605"]],[7,9,["H5971"]],[9,10,["H5975"]],[10,13,["H7291"]],[13,14,["H310"]],[14,15,["H3478"]],[15,16,["H3808"]],[16,17,["H5750"]],[17,18,["H3808"]],[18,19,["H3898"]],[19,22,["H3254"]]]},{"k":8078,"v":[[0,2,["H74"]],[2,5,["H376"]],[5,6,["H1980"]],[6,7,["H3605"]],[7,8,["H1931"]],[8,9,["H3915"]],[9,12,["H6160"]],[12,15,["H5674","(H853)"]],[15,16,["H3383"]],[16,19,["H1980"]],[19,20,["H3605"]],[20,21,["H1338"]],[21,24,["H935"]],[24,26,["H4266"]]]},{"k":8079,"v":[[0,2,["H3097"]],[2,3,["H7725"]],[3,5,["H4480","H310"]],[5,6,["H74"]],[6,15,["H6908","(H853)","H3605","H5971"]],[15,17,["H6485"]],[17,20,["H4480","H5650","H1732"]],[20,21,["H8672","H6240"]],[21,22,["H376"]],[22,24,["H6214"]]]},{"k":8080,"v":[[0,3,["H5650"]],[3,5,["H1732"]],[5,7,["H5221"]],[7,9,["H4480","H1144"]],[9,12,["H74"]],[12,13,["H4480","H376"]],[13,16,["H7969"]],[16,17,["H3967"]],[17,19,["H8346"]],[19,20,["H376"]],[20,21,["H4191"]]]},{"k":8081,"v":[[0,4,["H5375","(H853)"]],[4,5,["H6214"]],[5,7,["H6912"]],[7,11,["H6913"]],[11,14,["H1"]],[14,15,["H834"]],[15,18,["H1035"]],[18,20,["H3097"]],[20,23,["H376"]],[23,24,["H1980"]],[24,25,["H3605"]],[25,26,["H3915"]],[26,31,["H2275"]],[31,35,["H215"]]]},{"k":8082,"v":[[0,3,["H1961"]],[3,4,["H752"]],[4,5,["H4421"]],[5,6,["H996"]],[6,8,["H1004"]],[8,10,["H7586"]],[10,13,["H1004"]],[13,15,["H1732"]],[15,17,["H1732"]],[17,21,["H1980","H2390"]],[21,24,["H1004"]],[24,26,["H7586"]],[26,27,["H1980"]],[27,30,["H1800"]]]},{"k":8083,"v":[[0,3,["H1732"]],[3,5,["H1121"]],[5,6,["H3205"]],[6,8,["H2275"]],[8,11,["H1060"]],[11,12,["H1961"]],[12,13,["H550"]],[13,15,["H293"]],[15,17,["H3159"]]]},{"k":8084,"v":[[0,3,["H4932"]],[3,4,["H3609"]],[4,6,["H26"]],[6,8,["H802"]],[8,10,["H5037"]],[10,12,["H3761"]],[12,15,["H7992"]],[15,16,["H53"]],[16,18,["H1121"]],[18,20,["H4601"]],[20,22,["H1323"]],[22,24,["H8526"]],[24,25,["H4428"]],[25,27,["H1650"]]]},{"k":8085,"v":[[0,3,["H7243"]],[3,4,["H138"]],[4,6,["H1121"]],[6,8,["H2294"]],[8,11,["H2549"]],[11,12,["H8203"]],[12,14,["H1121"]],[14,16,["H37"]]]},{"k":8086,"v":[[0,3,["H8345"]],[3,4,["H3507"]],[4,6,["H5698"]],[6,7,["H1732"]],[7,8,["H802"]],[8,9,["H428"]],[9,11,["H3205"]],[11,13,["H1732"]],[13,15,["H2275"]]]},{"k":8087,"v":[[0,5,["H1961"]],[5,8,["H1961"]],[8,9,["H4421"]],[9,10,["H996"]],[10,12,["H1004"]],[12,14,["H7586"]],[14,17,["H1004"]],[17,19,["H1732"]],[19,21,["H74"]],[21,24,["H2388"]],[24,27,["H1004"]],[27,29,["H7586"]]]},{"k":8088,"v":[[0,2,["H7586"]],[2,5,["H6370"]],[5,7,["H8034"]],[7,9,["H7532"]],[9,11,["H1323"]],[11,13,["H345"]],[13,16,["H559"]],[16,17,["H413"]],[17,18,["H74"]],[18,19,["H4069"]],[19,22,["H935"]],[22,24,["H413"]],[24,26,["H1"]],[26,27,["H6370"]]]},{"k":8089,"v":[[0,3,["H74"]],[3,4,["H3966"]],[4,5,["H2734"]],[5,6,["H5921"]],[6,8,["H1697"]],[8,10,["H378"]],[10,12,["H559"]],[12,14,["H595"]],[14,16,["H3611"]],[16,17,["H7218"]],[17,18,["H834"]],[18,20,["H3063"]],[20,22,["H6213"]],[22,23,["H2617"]],[23,25,["H3117"]],[25,26,["H5973"]],[26,28,["H1004"]],[28,30,["H7586"]],[30,32,["H1"]],[32,33,["H413"]],[33,35,["H251"]],[35,37,["H413"]],[37,39,["H4828"]],[39,42,["H3808"]],[42,43,["H4672"]],[43,47,["H3027"]],[47,49,["H1732"]],[49,52,["H6485","H5921"]],[52,55,["H3117"]],[55,58,["H5771"]],[58,61,["H802"]]]},{"k":8090,"v":[[0,1,["H3541"]],[1,2,["H6213"]],[2,3,["H430"]],[3,5,["H74"]],[5,7,["H3254"]],[7,8,["H3541"]],[8,9,["H3588"]],[9,10,["H834"]],[10,12,["H3068"]],[12,14,["H7650"]],[14,16,["H1732"]],[16,17,["H3588"]],[17,18,["H3651"]],[18,20,["H6213"]],[20,22,[]]]},{"k":8091,"v":[[0,2,["H5674"]],[2,4,["H4467"]],[4,7,["H4480","H1004"]],[7,9,["H7586"]],[9,13,["H6965"]],[13,14,["(H853)"]],[14,15,["H3678"]],[15,17,["H1732"]],[17,18,["H5921"]],[18,19,["H3478"]],[19,21,["H5921"]],[21,22,["H3063"]],[22,24,["H4480","H1835"]],[24,26,["H5704"]],[26,27,["H884"]]]},{"k":8092,"v":[[0,3,["H3201"]],[3,4,["H3808"]],[4,5,["H7725","(H853)"]],[5,6,["H74"]],[6,8,["H1697"]],[8,9,["H5750"]],[9,12,["H4480","H3372"]],[12,13,[]]]},{"k":8093,"v":[[0,2,["H74"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H1732"]],[6,9,["H8478"]],[9,10,["H559"]],[10,11,["H4310"]],[11,14,["H776"]],[14,15,["H559"]],[15,17,["H3772"]],[17,19,["H1285"]],[19,20,["H854"]],[20,23,["H2009"]],[23,25,["H3027"]],[25,28,["H5973"]],[28,32,["H5437","(H853)"]],[32,33,["H3605"]],[33,34,["H3478"]],[34,35,["H413"]],[35,36,[]]]},{"k":8094,"v":[[0,3,["H559"]],[3,4,["H2896"]],[4,5,["H589"]],[5,7,["H3772"]],[7,9,["H1285"]],[9,10,["H854"]],[10,12,["H389"]],[12,13,["H259"]],[13,14,["H1697"]],[14,15,["H595"]],[15,16,["H7592"]],[16,17,["H4480","H854"]],[17,20,["H559"]],[20,23,["H3808"]],[23,24,["H7200","(H853)"]],[24,26,["H6440"]],[26,27,["H3588","H518"]],[27,29,["H6440"]],[29,30,["H935","(H853)"]],[30,31,["H4324"]],[31,32,["H7586"]],[32,33,["H1323"]],[33,36,["H935"]],[36,38,["H7200","(H853)"]],[38,40,["H6440"]]]},{"k":8095,"v":[[0,2,["H1732"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H378"]],[6,7,["H7586"]],[7,8,["H1121"]],[8,9,["H559"]],[9,10,["H5414"]],[10,11,["(H853)"]],[11,13,["H802","(H853)"]],[13,14,["H4324"]],[14,15,["H834"]],[15,17,["H781"]],[17,22,["H3967"]],[22,23,["H6190"]],[23,26,["H6430"]]]},{"k":8096,"v":[[0,2,["H378"]],[2,3,["H7971"]],[3,5,["H3947"]],[5,7,["H4480","H5973"]],[7,9,["H376"]],[9,11,["H4480","H5973"]],[11,12,["H6409"]],[12,14,["H1121"]],[14,16,["H3919"]]]},{"k":8097,"v":[[0,3,["H376"]],[3,4,["H1980"]],[4,5,["H854"]],[5,7,["H1980"]],[7,8,["H1058"]],[8,9,["H310"]],[9,11,["H5704"]],[11,12,["H980"]],[12,14,["H559"]],[14,15,["H74"]],[15,16,["H413"]],[16,18,["H1980"]],[18,19,["H7725"]],[19,22,["H7725"]]]},{"k":8098,"v":[[0,2,["H74"]],[2,3,["H1961"]],[3,4,["H1697"]],[4,5,["H5973"]],[5,7,["H2205"]],[7,9,["H3478"]],[9,10,["H559"]],[10,12,["H1961","H1245"]],[12,13,["(H853)"]],[13,14,["H1732"]],[14,16,["H1571","H8543"]],[16,17,["H1571","H8032"]],[17,20,["H4428"]],[20,21,["H5921"]],[21,22,[]]]},{"k":8099,"v":[[0,1,["H6258"]],[1,3,["H6213"]],[3,5,["H3588"]],[5,7,["H3068"]],[7,9,["H559"]],[9,10,["H413"]],[10,11,["H1732"]],[11,12,["H559"]],[12,15,["H3027"]],[15,18,["H5650"]],[18,19,["H1732"]],[19,22,["H3467","(H853)"]],[22,24,["H5971"]],[24,25,["H3478"]],[25,29,["H4480","H3027"]],[29,32,["H6430"]],[32,37,["H4480","H3027"]],[37,39,["H3605"]],[39,41,["H341"]]]},{"k":8100,"v":[[0,2,["H74"]],[2,3,["H1571"]],[3,4,["H1696"]],[4,7,["H241"]],[7,9,["H1144"]],[9,11,["H74"]],[11,12,["H1980"]],[12,13,["H1571"]],[13,15,["H1696"]],[15,18,["H241"]],[18,20,["H1732"]],[20,22,["H2275","(H853)"]],[22,23,["H3605"]],[23,24,["H834"]],[24,26,["H2896","H5869"]],[26,28,["H3478"]],[28,32,["H5869"]],[32,35,["H3605"]],[35,36,["H1004"]],[36,38,["H1144"]]]},{"k":8101,"v":[[0,2,["H74"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H1732"]],[5,7,["H2275"]],[7,9,["H6242"]],[9,10,["H376"]],[10,11,["H854"]],[11,14,["H1732"]],[14,15,["H6213"]],[15,16,["H74"]],[16,19,["H376"]],[19,20,["H834"]],[20,22,["H854"]],[22,25,["H4960"]]]},{"k":8102,"v":[[0,2,["H74"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,8,["H6965"]],[8,10,["H1980"]],[10,13,["H6908","(H853)"]],[13,14,["H3605"]],[14,15,["H3478"]],[15,16,["H413"]],[16,18,["H113"]],[18,20,["H4428"]],[20,24,["H3772"]],[24,26,["H1285"]],[26,27,["H854"]],[27,33,["H4427"]],[33,35,["H3605"]],[35,36,["H834"]],[36,38,["H5315"]],[38,39,["H183"]],[39,41,["H1732"]],[41,42,["H7971","(H853)"]],[42,43,["H74"]],[43,47,["H1980"]],[47,49,["H7965"]]]},{"k":8103,"v":[[0,2,["H2009"]],[2,4,["H5650"]],[4,6,["H1732"]],[6,8,["H3097"]],[8,9,["H935"]],[9,13,["H4480","H1416"]],[13,15,["H935"]],[15,18,["H7227"]],[18,19,["H7998"]],[19,20,["H5973"]],[20,23,["H74"]],[23,25,["H369"]],[25,26,["H5973"]],[26,27,["H1732"]],[27,29,["H2275"]],[29,30,["H3588"]],[30,35,["H7971"]],[35,39,["H1980"]],[39,41,["H7965"]]]},{"k":8104,"v":[[0,2,["H3097"]],[2,4,["H3605"]],[4,6,["H6635"]],[6,7,["H834"]],[7,9,["H854"]],[9,12,["H935"]],[12,14,["H5046"]],[14,15,["H3097"]],[15,16,["H559"]],[16,17,["H74"]],[17,19,["H1121"]],[19,21,["H5369"]],[21,22,["H935"]],[22,23,["H413"]],[23,25,["H4428"]],[25,31,["H7971"]],[31,35,["H1980"]],[35,37,["H7965"]]]},{"k":8105,"v":[[0,2,["H3097"]],[2,3,["H935"]],[3,4,["H413"]],[4,6,["H4428"]],[6,8,["H559"]],[8,9,["H4100"]],[9,12,["H6213"]],[12,13,["H2009"]],[13,14,["H74"]],[14,15,["H935"]],[15,16,["H413"]],[16,18,["H4100"]],[18,26,["H7971"]],[26,31,["H1980"]]]},{"k":8106,"v":[[0,2,["H3045","(H853)"]],[2,3,["H74"]],[3,5,["H1121"]],[5,7,["H5369"]],[7,8,["H3588"]],[8,10,["H935"]],[10,12,["H6601"]],[12,16,["H3045","(H853)"]],[16,19,["H4161"]],[19,23,["H4126"]],[23,26,["H3045","(H853)"]],[26,27,["H3605"]],[27,28,["H834"]],[28,29,["H859"]],[29,30,["H6213"]]]},{"k":8107,"v":[[0,3,["H3097"]],[3,6,["H3318"]],[6,7,["H4480","H5973"]],[7,8,["H1732"]],[8,10,["H7971"]],[10,11,["H4397"]],[11,12,["H310"]],[12,13,["H74"]],[13,17,["H7725","(H853)"]],[17,20,["H4480","H953"]],[20,22,["H5626"]],[22,24,["H1732"]],[24,25,["H3045"]],[25,27,["H3808"]]]},{"k":8108,"v":[[0,3,["H74"]],[3,5,["H7725"]],[5,7,["H2275"]],[7,8,["H3097"]],[8,11,["H5186"]],[11,12,["H413","H8432"]],[12,14,["H8179"]],[14,16,["H1696"]],[16,17,["H854"]],[17,19,["H7987"]],[19,21,["H5221"]],[21,23,["H8033"]],[23,26,["H2570"]],[26,30,["H4191"]],[30,33,["H1818"]],[33,35,["H6214"]],[35,37,["H251"]]]},{"k":8109,"v":[[0,2,["H4480","H310","H3651"]],[2,4,["H1732"]],[4,5,["H8085"]],[5,8,["H559"]],[8,9,["H595"]],[9,12,["H4467"]],[12,14,["H5355"]],[14,15,["H4480","H5973"]],[15,17,["H3068"]],[17,19,["H5704","H5769"]],[19,22,["H4480","H1818"]],[22,24,["H74"]],[24,26,["H1121"]],[26,28,["H5369"]]]},{"k":8110,"v":[[0,3,["H2342"]],[3,4,["H5921"]],[4,6,["H7218"]],[6,8,["H3097"]],[8,10,["H413"]],[10,11,["H3605"]],[11,13,["H1"]],[13,14,["H1004"]],[14,18,["H408"]],[18,19,["H3772"]],[19,22,["H4480","H1004"]],[22,24,["H3097"]],[24,29,["H2100"]],[29,34,["H6879"]],[34,37,["H2388"]],[37,40,["H6418"]],[40,43,["H5307"]],[43,46,["H2719"]],[46,49,["H2638"]],[49,50,["H3899"]]]},{"k":8111,"v":[[0,2,["H3097"]],[2,4,["H52"]],[4,6,["H251"]],[6,7,["H2026"]],[7,8,["H74"]],[8,9,["H5921","H834"]],[9,12,["H4191"]],[12,14,["H251","(H853)"]],[14,15,["H6214"]],[15,17,["H1391"]],[17,20,["H4421"]]]},{"k":8112,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3097"]],[5,7,["H413"]],[7,8,["H3605"]],[8,10,["H5971"]],[10,11,["H834"]],[11,13,["H854"]],[13,15,["H7167"]],[15,17,["H899"]],[17,19,["H2296"]],[19,22,["H8242"]],[22,24,["H5594"]],[24,25,["H6440"]],[25,26,["H74"]],[26,28,["H4428"]],[28,29,["H1732"]],[29,31,["H310"]],[31,33,["H4296"]]]},{"k":8113,"v":[[0,3,["H6912","(H853)"]],[3,4,["H74"]],[4,6,["H2275"]],[6,9,["H4428"]],[9,11,["H5375","(H853)"]],[11,13,["H6963"]],[13,15,["H1058"]],[15,16,["H413"]],[16,18,["H6913"]],[18,20,["H74"]],[20,22,["H3605"]],[22,24,["H5971"]],[24,25,["H1058"]]]},{"k":8114,"v":[[0,3,["H4428"]],[3,4,["H6969"]],[4,5,["H413"]],[5,6,["H74"]],[6,8,["H559"]],[8,9,["H4191"]],[9,10,["H74"]],[10,13,["H5036"]],[13,14,["H4194"]]]},{"k":8115,"v":[[0,2,["H3027"]],[2,4,["H3808"]],[4,5,["H631"]],[5,6,["H3808"]],[6,8,["H7272"]],[8,9,["H5066"]],[9,11,["H5178"]],[11,14,["H1121"]],[14,15,["H5307"]],[15,16,["H6440"]],[16,17,["H5766"]],[17,18,["H1121"]],[18,20,["H5307"]],[20,23,["H3605"]],[23,25,["H5971"]],[25,26,["H1058"]],[26,27,["H3254"]],[27,28,["H5921"]],[28,29,[]]]},{"k":8116,"v":[[0,3,["H3605"]],[3,5,["H5971"]],[5,6,["H935"]],[6,8,["(H853)"]],[8,9,["H1732"]],[9,11,["H1262"]],[11,12,["H3899"]],[12,16,["H5750"]],[16,17,["H3117"]],[17,18,["H1732"]],[18,19,["H7650"]],[19,20,["H559"]],[20,21,["H3541"]],[21,22,["H6213"]],[22,23,["H430"]],[23,27,["H3254"]],[27,28,["H3541"]],[28,29,["H3588","H518"]],[29,31,["H2938"]],[31,32,["H3899"]],[32,33,["H176"]],[33,35,["H3605","H3972"]],[35,36,["H6440"]],[36,38,["H8121"]],[38,40,["H935"]]]},{"k":8117,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H5234"]],[6,12,["H3190","H5869"]],[12,14,["H3605","H834"]],[14,16,["H4428"]],[16,17,["H6213"]],[17,18,["H2895","H5869"]],[18,19,["H3605"]],[19,21,["H5971"]]]},{"k":8118,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H3605"]],[6,7,["H3478"]],[7,8,["H3045"]],[8,9,["H1931"]],[9,10,["H3117"]],[10,11,["H3588"]],[11,13,["H1961"]],[13,14,["H3808"]],[14,17,["H4480","H4428"]],[17,19,["H4191"]],[19,20,["H74"]],[20,22,["H1121"]],[22,24,["H5369"]]]},{"k":8119,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H5650"]],[7,8,["H3045"]],[8,10,["H3808"]],[10,11,["H3588"]],[11,15,["H8269"]],[15,19,["H1419"]],[19,20,["H5307"]],[20,21,["H2088"]],[21,22,["H3117"]],[22,24,["H3478"]]]},{"k":8120,"v":[[0,2,["H595"]],[2,5,["H3117"]],[5,6,["H7390"]],[6,8,["H4886"]],[8,9,["H4428"]],[9,11,["H428"]],[11,12,["H376"]],[12,14,["H1121"]],[14,16,["H6870"]],[16,19,["H7186"]],[19,20,["H4480"]],[20,23,["H3068"]],[23,25,["H7999"]],[25,27,["H6213"]],[27,29,["H7451"]],[29,33,["H7451"]]]},{"k":8121,"v":[[0,3,["H7586"]],[3,4,["H1121"]],[4,5,["H8085"]],[5,6,["H3588"]],[6,7,["H74"]],[7,9,["H4191"]],[9,11,["H2275"]],[11,13,["H3027"]],[13,15,["H7503"]],[15,17,["H3605"]],[17,19,["H3478"]],[19,21,["H926"]]]},{"k":8122,"v":[[0,2,["H7586"]],[2,3,["H1121"]],[3,4,["H1961"]],[4,5,["H8147"]],[5,6,["H376"]],[6,9,["H8269"]],[9,11,["H1416"]],[11,13,["H8034"]],[13,16,["H259"]],[16,18,["H1196"]],[18,21,["H8034"]],[21,24,["H8145"]],[24,25,["H7394"]],[25,27,["H1121"]],[27,29,["H7417"]],[29,31,["H886"]],[31,34,["H4480","H1121"]],[34,36,["H1144"]],[36,37,["H3588"]],[37,38,["H881"]],[38,39,["H1571"]],[39,41,["H2803"]],[41,42,["H5921"]],[42,43,["H1144"]]]},{"k":8123,"v":[[0,3,["H886"]],[3,4,["H1272"]],[4,6,["H1664"]],[6,8,["H1961"]],[8,9,["H1481"]],[9,10,["H8033"]],[10,11,["H5704"]],[11,12,["H2088"]],[12,13,["H3117"]]]},{"k":8124,"v":[[0,2,["H3083"]],[2,3,["H7586"]],[3,4,["H1121"]],[4,7,["H1121"]],[7,10,["H5223"]],[10,13,["H7272"]],[13,15,["H1961"]],[15,16,["H2568"]],[16,17,["H8141"]],[17,18,["H1121"]],[18,21,["H8052"]],[21,22,["H935"]],[22,24,["H7586"]],[24,26,["H3083"]],[26,29,["H4480","H3157"]],[29,32,["H539"]],[32,35,["H5375"]],[35,37,["H5127"]],[37,42,["H1961"]],[42,46,["H2648"]],[46,48,["H5127"]],[48,51,["H5307"]],[51,54,["H6452"]],[54,57,["H8034"]],[57,59,["H4648"]]]},{"k":8125,"v":[[0,3,["H1121"]],[3,5,["H7417"]],[5,7,["H886"]],[7,8,["H7394"]],[8,10,["H1195"]],[10,11,["H1980"]],[11,13,["H935"]],[13,16,["H2527"]],[16,19,["H3117"]],[19,20,["H413"]],[20,22,["H1004"]],[22,24,["H378"]],[24,25,["H1931"]],[25,26,["H7901"]],[26,27,["(H853)"]],[27,29,["H4904"]],[29,31,["H6672"]]]},{"k":8126,"v":[[0,3,["H935"]],[3,4,["H2008"]],[4,5,["H5704"]],[5,7,["H8432"]],[7,10,["H1004"]],[10,16,["H3947"]],[16,17,["H2406"]],[17,20,["H5221"]],[20,22,["H413"]],[22,24,["H2570"]],[24,27,["H7394"]],[27,29,["H1196"]],[29,31,["H251"]],[31,32,["H4422"]]]},{"k":8127,"v":[[0,4,["H935"]],[4,7,["H1004"]],[7,8,["H1931"]],[8,9,["H7901"]],[9,10,["H5921"]],[10,12,["H4296"]],[12,15,["H2315","H4904"]],[15,18,["H5221"]],[18,21,["H4191"]],[21,24,["H5493","(H853)","H7218"]],[24,27,["H3947","(H853)"]],[27,29,["H7218"]],[29,33,["H1980"]],[33,34,["H1870"]],[34,36,["H6160"]],[36,37,["H3605"]],[37,38,["H3915"]]]},{"k":8128,"v":[[0,3,["H935","(H853)"]],[3,5,["H7218"]],[5,7,["H378"]],[7,8,["H413"]],[8,9,["H1732"]],[9,11,["H2275"]],[11,13,["H559"]],[13,14,["H413"]],[14,16,["H4428"]],[16,17,["H2009"]],[17,19,["H7218"]],[19,21,["H378"]],[21,23,["H1121"]],[23,25,["H7586"]],[25,27,["H341"]],[27,28,["H834"]],[28,29,["H1245","(H853)"]],[29,31,["H5315"]],[31,34,["H3068"]],[34,36,["H5414","H5360"]],[36,38,["H113"]],[38,40,["H4428"]],[40,41,["H2088"]],[41,42,["H3117"]],[42,44,["H4480","H7586"]],[44,48,["H4480","H2233"]]]},{"k":8129,"v":[[0,2,["H1732"]],[2,3,["H6030","(H853)"]],[3,4,["H7394"]],[4,6,["H1196"]],[6,8,["H251"]],[8,10,["H1121"]],[10,12,["H7417"]],[12,14,["H886"]],[14,16,["H559"]],[16,21,["H3068"]],[21,22,["H2416"]],[22,23,["H834"]],[23,25,["H6299","(H853)"]],[25,27,["H5315"]],[27,30,["H4480","H3605"]],[30,31,["H6869"]]]},{"k":8130,"v":[[0,1,["H3588"]],[1,3,["H5046"]],[3,5,["H559"]],[5,6,["H2009"]],[6,7,["H7586"]],[7,9,["H4191"]],[9,10,["H5869"]],[10,12,["H1961"]],[12,15,["H1319"]],[15,18,["H270"]],[18,22,["H2026"]],[22,25,["H6860"]],[25,26,["H834"]],[26,32,["H5414"]],[32,38,["H1309"]]]},{"k":8131,"v":[[0,3,["H637"]],[3,4,["H3588"]],[4,5,["H7563"]],[5,6,["H376"]],[6,8,["H2026","(H853)"]],[8,10,["H6662"]],[10,11,["H376"]],[11,15,["H1004"]],[15,16,["H5921"]],[16,18,["H4904"]],[18,21,["H3808"]],[21,23,["H6258"]],[23,24,["H1245","(H853)"]],[24,26,["H1818"]],[26,29,["H4480","H3027"]],[29,33,["H1197","(H853)"]],[33,34,["H4480"]],[34,36,["H776"]]]},{"k":8132,"v":[[0,2,["H1732"]],[2,3,["H6680","(H853)"]],[3,6,["H5288"]],[6,9,["H2026"]],[9,13,["H7112","(H853)"]],[13,15,["H3027"]],[15,18,["H7272"]],[18,22,["H8518"]],[22,23,["H5921"]],[23,25,["H1295"]],[25,27,["H2275"]],[27,30,["H3947"]],[30,32,["H7218"]],[32,34,["H378"]],[34,36,["H6912"]],[36,40,["H6913"]],[40,42,["H74"]],[42,44,["H2275"]]]},{"k":8133,"v":[[0,2,["H935"]],[2,3,["H3605"]],[3,5,["H7626"]],[5,7,["H3478"]],[7,8,["H413"]],[8,9,["H1732"]],[9,11,["H2275"]],[11,13,["H559"]],[13,14,["H559"]],[14,15,["H2009"]],[15,16,["H587"]],[16,19,["H6106"]],[19,22,["H1320"]]]},{"k":8134,"v":[[0,1,["H1571"]],[1,4,["H865","H8032"]],[4,6,["H7586"]],[6,7,["H1961"]],[7,8,["H4428"]],[8,9,["H5921"]],[9,11,["H859"]],[11,12,["H1961"]],[12,16,["H3318"]],[16,18,["H935","(H853)"]],[18,20,["H3478"]],[20,23,["H3068"]],[23,24,["H559"]],[24,27,["H859"]],[27,29,["H7462","(H853)"]],[29,31,["H5971","(H853)"]],[31,32,["H3478"]],[32,34,["H859"]],[34,36,["H1961"]],[36,38,["H5057"]],[38,39,["H5921"]],[39,40,["H3478"]]]},{"k":8135,"v":[[0,2,["H3605"]],[2,4,["H2205"]],[4,6,["H3478"]],[6,7,["H935"]],[7,8,["H413"]],[8,10,["H4428"]],[10,12,["H2275"]],[12,14,["H4428"]],[14,15,["H1732"]],[15,16,["H3772"]],[16,18,["H1285"]],[18,22,["H2275"]],[22,23,["H6440"]],[23,25,["H3068"]],[25,28,["H4886","(H853)"]],[28,29,["H1732"]],[29,30,["H4428"]],[30,31,["H5921"]],[31,32,["H3478"]]]},{"k":8136,"v":[[0,1,["H1732"]],[1,3,["H7970"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,10,["H4427"]],[10,13,["H4427"]],[13,14,["H705"]],[14,15,["H8141"]]]},{"k":8137,"v":[[0,2,["H2275"]],[2,4,["H4427"]],[4,5,["H5921"]],[5,6,["H3063"]],[6,7,["H7651"]],[7,8,["H8141"]],[8,10,["H8337"]],[10,11,["H2320"]],[11,14,["H3389"]],[14,16,["H4427"]],[16,17,["H7970"]],[17,19,["H7969"]],[19,20,["H8141"]],[20,21,["H5921"]],[21,22,["H3605"]],[22,23,["H3478"]],[23,25,["H3063"]]]},{"k":8138,"v":[[0,3,["H4428"]],[3,6,["H376"]],[6,7,["H1980"]],[7,9,["H3389"]],[9,10,["H413"]],[10,12,["H2983"]],[12,14,["H3427"]],[14,17,["H776"]],[17,19,["H559"]],[19,21,["H1732"]],[21,22,["H559"]],[22,23,["H3588","H518"]],[23,26,["H5493"]],[26,28,["H5787"]],[28,31,["H6455"]],[31,34,["H3808"]],[34,36,["H935"]],[36,37,["H2008"]],[37,38,["H559"]],[38,39,["H1732"]],[39,40,["H3808"]],[40,42,["H935"]],[42,43,["H2008"]]]},{"k":8139,"v":[[0,2,["H1732"]],[2,3,["H3920","(H853)"]],[3,6,["H4686"]],[6,8,["H6726"]],[8,10,["H1931"]],[10,13,["H5892"]],[13,15,["H1732"]]]},{"k":8140,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H1931"]],[5,6,["H3117"]],[6,7,["H3605"]],[7,9,["H5060"]],[9,12,["H6794"]],[12,14,["H5221"]],[14,16,["H2983"]],[16,19,["H6455"]],[19,22,["H5787"]],[22,25,["H8130"]],[25,27,["H1732"]],[27,28,["H5315"]],[28,35,["H5921","H3651"]],[35,37,["H559"]],[37,39,["H5787"]],[39,42,["H6455"]],[42,44,["H3808"]],[44,45,["H935"]],[45,46,["H413"]],[46,48,["H1004"]]]},{"k":8141,"v":[[0,2,["H1732"]],[2,3,["H3427"]],[3,6,["H4686"]],[6,8,["H7121"]],[8,11,["H5892"]],[11,13,["H1732"]],[13,15,["H1732"]],[15,16,["H1129"]],[16,18,["H5439"]],[18,19,["H4480"]],[19,20,["H4407"]],[20,22,["H1004"]]]},{"k":8142,"v":[[0,2,["H1732"]],[2,4,["H1980","H1980"]],[4,7,["H1419"]],[7,10,["H3068"]],[10,11,["H430"]],[11,13,["H6635"]],[13,15,["H5973"]],[15,16,[]]]},{"k":8143,"v":[[0,2,["H2438"]],[2,3,["H4428"]],[3,5,["H6865"]],[5,6,["H7971"]],[6,7,["H4397"]],[7,8,["H413"]],[8,9,["H1732"]],[9,11,["H730"]],[11,12,["H6086"]],[12,14,["H2796","H6086"]],[14,16,["H2796","H18","H7023"]],[16,19,["H1129"]],[19,20,["H1732"]],[20,22,["H1004"]]]},{"k":8144,"v":[[0,2,["H1732"]],[2,3,["H3045"]],[3,4,["H3588"]],[4,6,["H3068"]],[6,8,["H3559"]],[8,10,["H4428"]],[10,11,["H5921"]],[11,12,["H3478"]],[12,14,["H3588"]],[14,17,["H5375"]],[17,19,["H4467"]],[19,22,["H5971"]],[22,23,["H3478"]],[23,24,["H5668"]]]},{"k":8145,"v":[[0,2,["H1732"]],[2,3,["H3947"]],[3,5,["H5750"]],[5,6,["H6370"]],[6,8,["H802"]],[8,11,["H4480","H3389"]],[11,12,["H310"]],[12,15,["H935"]],[15,17,["H4480","H2275"]],[17,21,["H5750"]],[21,22,["H1121"]],[22,24,["H1323"]],[24,25,["H3205"]],[25,27,["H1732"]]]},{"k":8146,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,10,["H3209"]],[10,14,["H3389"]],[14,15,["H8051"]],[15,17,["H7727"]],[17,19,["H5416"]],[19,21,["H8010"]]]},{"k":8147,"v":[[0,1,["H2984"]],[1,4,["H474"]],[4,6,["H5298"]],[6,8,["H3309"]]]},{"k":8148,"v":[[0,2,["H476"]],[2,4,["H450"]],[4,6,["H467"]]]},{"k":8149,"v":[[0,4,["H6430"]],[4,5,["H8085"]],[5,6,["H3588"]],[6,9,["H4886","(H853)"]],[9,10,["H1732"]],[10,11,["H4428"]],[11,12,["H5921"]],[12,13,["H3478"]],[13,14,["H3605"]],[14,16,["H6430"]],[16,18,["H5927"]],[18,20,["H1245","(H853)"]],[20,21,["H1732"]],[21,23,["H1732"]],[23,24,["H8085"]],[24,29,["H3381"]],[29,30,["H413"]],[30,32,["H4686"]]]},{"k":8150,"v":[[0,2,["H6430"]],[2,4,["H935"]],[4,7,["H5203"]],[7,10,["H6010"]],[10,12,["H7497"]]]},{"k":8151,"v":[[0,2,["H1732"]],[2,3,["H7592"]],[3,6,["H3068"]],[6,7,["H559"]],[7,11,["H5927"]],[11,12,["H413"]],[12,14,["H6430"]],[14,17,["H5414"]],[17,21,["H3027"]],[21,24,["H3068"]],[24,25,["H559"]],[25,26,["H413"]],[26,27,["H1732"]],[27,29,["H5927"]],[29,30,["H3588"]],[30,34,["H5414","H5414","(H853)"]],[34,36,["H6430"]],[36,39,["H3027"]]]},{"k":8152,"v":[[0,2,["H1732"]],[2,3,["H935"]],[3,5,["H1188"]],[5,7,["H1732"]],[7,8,["H5221"]],[8,10,["H8033"]],[10,12,["H559"]],[12,14,["H3068"]],[14,18,["H6555","(H853)"]],[18,20,["H341"]],[20,21,["H6440"]],[21,25,["H6556"]],[25,27,["H4325"]],[27,28,["H5921","H3651"]],[28,30,["H7121"]],[30,32,["H8034"]],[32,34,["H1931"]],[34,35,["H4725"]],[35,36,["H1188"]]]},{"k":8153,"v":[[0,2,["H8033"]],[2,4,["H5800","(H853)"]],[4,6,["H6091"]],[6,8,["H1732"]],[8,11,["H376"]],[11,12,["H5375"]],[12,13,[]]]},{"k":8154,"v":[[0,3,["H6430"]],[3,5,["H5927"]],[5,6,["H5750"]],[6,7,["H3254"]],[7,10,["H5203"]],[10,13,["H6010"]],[13,15,["H7497"]]]},{"k":8155,"v":[[0,3,["H1732"]],[3,4,["H7592"]],[4,7,["H3068"]],[7,9,["H559"]],[9,12,["H3808"]],[12,14,["H5927"]],[14,18,["H5437","H413"]],[18,19,["H310"]],[19,22,["H935"]],[22,26,["H4480","H4136"]],[26,29,["H1057"]]]},{"k":8156,"v":[[0,4,["H1961"]],[4,7,["H8085","(H853)"]],[7,9,["H6963"]],[9,12,["H6807"]],[12,15,["H7218"]],[15,19,["H1057"]],[19,21,["H227"]],[21,24,["H2782"]],[24,26,["H3588"]],[26,27,["H227"]],[27,30,["H3068"]],[30,32,["H3318"]],[32,33,["H6440"]],[33,36,["H5221"]],[36,38,["H4264"]],[38,41,["H6430"]]]},{"k":8157,"v":[[0,2,["H1732"]],[2,3,["H6213"]],[3,4,["H3651"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H6680"]],[9,12,["H5221","(H853)"]],[12,14,["H6430"]],[14,16,["H4480","H1387"]],[16,19,["H935"]],[19,21,["H1507"]]]},{"k":8158,"v":[[0,1,["H5750"]],[1,2,["H1732"]],[2,4,["H622","(H853)"]],[4,5,["H3605"]],[5,7,["H977"]],[7,10,["H3478"]],[10,11,["H7970"]],[11,12,["H505"]]]},{"k":8159,"v":[[0,2,["H1732"]],[2,3,["H6965"]],[3,5,["H1980"]],[5,7,["H3605"]],[7,9,["H5971"]],[9,10,["H834"]],[10,12,["H854"]],[12,15,["H4480","H1184"]],[15,17,["H3063"]],[17,20,["H5927"]],[20,22,["H4480","H8033","(H853)"]],[22,24,["H727"]],[24,26,["H430"]],[26,27,["H834"]],[27,28,["H8034"]],[28,30,["H7121"]],[30,33,["H8034"]],[33,36,["H3068"]],[36,38,["H6635"]],[38,40,["H3427","H5921"]],[40,43,["H3742"]]]},{"k":8160,"v":[[0,3,["H7392","(H853)"]],[3,5,["H727"]],[5,7,["H430"]],[7,8,["H413"]],[8,10,["H2319"]],[10,11,["H5699"]],[11,13,["H5375"]],[13,18,["H4480","H1004"]],[18,20,["H41"]],[20,21,["H834"]],[21,24,["H1390"]],[24,26,["H5798"]],[26,28,["H283"]],[28,30,["H1121"]],[30,32,["H41"]],[32,33,["H5090","(H853)"]],[33,35,["H2319"]],[35,36,["H5699"]]]},{"k":8161,"v":[[0,3,["H5375"]],[3,8,["H4480","H1004"]],[8,10,["H41"]],[10,11,["H834"]],[11,14,["H1390"]],[14,15,["H5973"]],[15,17,["H727"]],[17,19,["H430"]],[19,21,["H283"]],[21,22,["H1980"]],[22,23,["H6440"]],[23,25,["H727"]]]},{"k":8162,"v":[[0,2,["H1732"]],[2,4,["H3605"]],[4,6,["H1004"]],[6,8,["H3478"]],[8,9,["H7832"]],[9,10,["H6440"]],[10,12,["H3068"]],[12,14,["H3605"]],[14,20,["H1265"]],[20,21,["H6086"]],[21,24,["H3658"]],[24,27,["H5035"]],[27,30,["H8596"]],[30,33,["H4517"]],[33,36,["H6767"]]]},{"k":8163,"v":[[0,4,["H935"]],[4,5,["H5704"]],[5,6,["H5225"]],[6,7,["H1637"]],[7,8,["H5798"]],[8,10,["H7971"]],[10,13,["H413"]],[13,15,["H727"]],[15,17,["H430"]],[17,20,["H270"]],[20,23,["H3588"]],[23,25,["H1241"]],[25,26,["H8058"]],[26,27,[]]]},{"k":8164,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,10,["H5798"]],[10,12,["H430"]],[12,13,["H5221"]],[13,15,["H8033"]],[15,16,["H5921"]],[16,18,["H7944"]],[18,20,["H8033"]],[20,22,["H4191"]],[22,23,["H5973"]],[23,25,["H727"]],[25,27,["H430"]]]},{"k":8165,"v":[[0,2,["H1732"]],[2,4,["H2734"]],[4,5,["H5921","H834"]],[5,7,["H3068"]],[7,9,["H6555"]],[9,11,["H6556"]],[11,13,["H5798"]],[13,18,["H7121"]],[18,20,["H1931"]],[20,21,["H4725"]],[21,22,["H6560"]],[22,23,["H5704"]],[23,24,["H2088"]],[24,25,["H3117"]]]},{"k":8166,"v":[[0,2,["H1732"]],[2,4,["H3372"]],[4,5,["(H853)"]],[5,7,["H3068"]],[7,8,["H1931"]],[8,9,["H3117"]],[9,11,["H559"]],[11,12,["H349"]],[12,15,["H727"]],[15,18,["H3068"]],[18,19,["H935"]],[19,20,["H413"]],[20,21,[]]]},{"k":8167,"v":[[0,2,["H1732"]],[2,3,["H14"]],[3,4,["H3808"]],[4,5,["H5493","(H853)"]],[5,7,["H727"]],[7,10,["H3068"]],[10,11,["H413"]],[11,13,["H5921"]],[13,15,["H5892"]],[15,17,["H1732"]],[17,19,["H1732"]],[19,22,["H5186"]],[22,25,["H1004"]],[25,27,["H5654"]],[27,29,["H1663"]]]},{"k":8168,"v":[[0,3,["H727"]],[3,6,["H3068"]],[6,7,["H3427"]],[7,10,["H1004"]],[10,12,["H5654"]],[12,14,["H1663"]],[14,15,["H7969"]],[15,16,["H2320"]],[16,19,["H3068"]],[19,20,["H1288","(H853)"]],[20,21,["H5654"]],[21,23,["H3605"]],[23,25,["H1004"]]]},{"k":8169,"v":[[0,4,["H5046"]],[4,5,["H4428"]],[5,6,["H1732"]],[6,7,["H559"]],[7,9,["H3068"]],[9,11,["H1288","(H853)"]],[11,13,["H1004"]],[13,15,["H5654"]],[15,17,["H3605"]],[17,18,["H834"]],[18,22,["H5668"]],[22,25,["H727"]],[25,27,["H430"]],[27,29,["H1732"]],[29,30,["H1980"]],[30,33,["H5927","(H853)"]],[33,35,["H727"]],[35,37,["H430"]],[37,40,["H4480","H1004"]],[40,42,["H5654"]],[42,45,["H5892"]],[45,47,["H1732"]],[47,49,["H8057"]]]},{"k":8170,"v":[[0,3,["H1961"]],[3,6,["H3588"]],[6,9,["H5375"]],[9,11,["H727"]],[11,14,["H3068"]],[14,16,["H6805"]],[16,17,["H8337"]],[17,18,["H6806"]],[18,20,["H2076"]],[20,21,["H7794"]],[21,23,["H4806"]]]},{"k":8171,"v":[[0,2,["H1732"]],[2,3,["H3769"]],[3,4,["H6440"]],[4,6,["H3068"]],[6,8,["H3605"]],[8,10,["H5797"]],[10,12,["H1732"]],[12,14,["H2296"]],[14,17,["H906"]],[17,18,["H646"]]]},{"k":8172,"v":[[0,2,["H1732"]],[2,4,["H3605"]],[4,6,["H1004"]],[6,8,["H3478"]],[8,10,["H5927","(H853)"]],[10,12,["H727"]],[12,15,["H3068"]],[15,17,["H8643"]],[17,21,["H6963"]],[21,24,["H7782"]]]},{"k":8173,"v":[[0,2,["H1961"]],[2,4,["H727"]],[4,7,["H3068"]],[7,8,["H935"]],[8,11,["H5892"]],[11,13,["H1732"]],[13,14,["H4324"]],[14,15,["H7586"]],[15,16,["H1323"]],[16,17,["H8259"]],[17,18,["H1157"]],[18,20,["H2474"]],[20,22,["H7200","(H853)"]],[22,23,["H4428"]],[23,24,["H1732"]],[24,25,["H6339"]],[25,27,["H3769"]],[27,28,["H6440"]],[28,30,["H3068"]],[30,33,["H959"]],[33,37,["H3820"]]]},{"k":8174,"v":[[0,4,["H935","(H853)"]],[4,6,["H727"]],[6,9,["H3068"]],[9,11,["H3322"]],[11,15,["H4725"]],[15,18,["H8432"]],[18,21,["H168"]],[21,22,["H834"]],[22,23,["H1732"]],[23,25,["H5186"]],[25,29,["H1732"]],[29,30,["H5927"]],[30,32,["H5930"]],[32,35,["H8002"]],[35,36,["H6440"]],[36,38,["H3068"]]]},{"k":8175,"v":[[0,5,["H1732"]],[5,9,["H3615"]],[9,11,["H4480","H5927"]],[11,13,["H5930"]],[13,16,["H8002"]],[16,18,["H1288","(H853)"]],[18,20,["H5971"]],[20,23,["H8034"]],[23,26,["H3068"]],[26,28,["H6635"]]]},{"k":8176,"v":[[0,3,["H2505"]],[3,5,["H3605"]],[5,7,["H5971"]],[7,11,["H3605"]],[11,12,["H1995"]],[12,14,["H3478"]],[14,17,["H5704"]],[17,19,["H802"]],[19,21,["H4480","H376"]],[21,24,["H376"]],[24,25,["H259"]],[25,26,["H2471"]],[26,28,["H3899"]],[28,30,["H259"]],[30,32,["H829"]],[32,36,["H259"]],[36,37,["H809"]],[37,41,["H3605"]],[41,43,["H5971"]],[43,44,["H1980"]],[44,46,["H376"]],[46,49,["H1004"]]]},{"k":8177,"v":[[0,2,["H1732"]],[2,3,["H7725"]],[3,5,["H1288","(H853)"]],[5,7,["H1004"]],[7,9,["H4324"]],[9,11,["H1323"]],[11,13,["H7586"]],[13,15,["H3318"]],[15,17,["H7125"]],[17,18,["H1732"]],[18,20,["H559"]],[20,21,["H4100"]],[21,22,["H3513"]],[22,25,["H4428"]],[25,27,["H3478"]],[27,29,["H3117"]],[29,30,["H834"]],[30,32,["H1540"]],[32,34,["H3117"]],[34,37,["H5869"]],[37,40,["H519"]],[40,43,["H5650"]],[43,45,["H259"]],[45,49,["H7386"]],[49,52,["H1540","H1540"]]]},{"k":8178,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H4324"]],[5,8,["H6440"]],[8,10,["H3068"]],[10,11,["H834"]],[11,12,["H977"]],[12,16,["H4480","H1"]],[16,19,["H4480","H3605"]],[19,21,["H1004"]],[21,23,["H6680"]],[23,25,["H5057"]],[25,26,["H5921"]],[26,28,["H5971"]],[28,31,["H3068"]],[31,32,["H5921"]],[32,33,["H3478"]],[33,37,["H7832"]],[37,38,["H6440"]],[38,40,["H3068"]]]},{"k":8179,"v":[[0,4,["H5750"]],[4,7,["H7043"]],[7,9,["H4480","H2063"]],[9,12,["H1961"]],[12,13,["H8217"]],[13,17,["H5869"]],[17,19,["H5973"]],[19,21,["H519"]],[21,22,["H834"]],[22,25,["H559"]],[25,34,["H3513"]]]},{"k":8180,"v":[[0,2,["H4324"]],[2,4,["H1323"]],[4,6,["H7586"]],[6,7,["H1961"]],[7,8,["H3808"]],[8,9,["H3206"]],[9,10,["H5704"]],[10,12,["H3117"]],[12,15,["H4194"]]]},{"k":8181,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,8,["H4428"]],[8,9,["H3427"]],[9,12,["H1004"]],[12,15,["H3068"]],[15,19,["H5117"]],[19,21,["H4480","H5439"]],[21,23,["H4480","H3605"]],[23,25,["H341"]]]},{"k":8182,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H5416"]],[6,8,["H5030"]],[8,9,["H7200"]],[9,10,["H4994"]],[10,11,["H595"]],[11,12,["H3427"]],[12,15,["H1004"]],[15,17,["H730"]],[17,20,["H727"]],[20,22,["H430"]],[22,23,["H3427"]],[23,24,["H8432"]],[24,25,["H3407"]]]},{"k":8183,"v":[[0,2,["H5416"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,7,["H1980"]],[7,8,["H6213"]],[8,9,["H3605"]],[9,10,["H834"]],[10,14,["H3824"]],[14,15,["H3588"]],[15,17,["H3068"]],[17,19,["H5973"]],[19,20,[]]]},{"k":8184,"v":[[0,5,["H1961"]],[5,6,["H1931"]],[6,7,["H3915"]],[7,10,["H1697"]],[10,13,["H3068"]],[13,14,["H1961"]],[14,15,["H413"]],[15,16,["H5416"]],[16,17,["H559"]]]},{"k":8185,"v":[[0,1,["H1980"]],[1,3,["H559","H413"]],[3,5,["H5650"]],[5,6,["H1732"]],[6,7,["H3541"]],[7,8,["H559"]],[8,10,["H3068"]],[10,12,["H859"]],[12,13,["H1129"]],[13,16,["H1004"]],[16,20,["H3427"]],[20,21,[]]]},{"k":8186,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H3427"]],[5,8,["H1004"]],[8,11,["H4480","H3117"]],[11,15,["H5927","(H853)"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,22,["H4480","H4714"]],[22,24,["H5704"]],[24,25,["H2088"]],[25,26,["H3117"]],[26,28,["H1961"]],[28,29,["H1980"]],[29,32,["H168"]],[32,36,["H4908"]]]},{"k":8187,"v":[[0,2,["H3605"]],[2,5,["H834"]],[5,8,["H1980"]],[8,10,["H3605"]],[10,12,["H1121"]],[12,14,["H3478"]],[14,15,["H1696"]],[15,18,["H1697"]],[18,19,["H854"]],[19,20,["H259"]],[20,23,["H7626"]],[23,25,["H3478"]],[25,26,["H834"]],[26,28,["H6680"]],[28,30,["H7462","(H853)"]],[30,32,["H5971","(H853)"]],[32,33,["H3478"]],[33,34,["H559"]],[34,35,["H4100"]],[35,36,["H1129"]],[36,38,["H3808"]],[38,41,["H1004"]],[41,43,["H730"]]]},{"k":8188,"v":[[0,1,["H6258"]],[1,2,["H3541"]],[2,6,["H559"]],[6,9,["H5650"]],[9,10,["H1732"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H3068"]],[14,16,["H6635"]],[16,17,["H589"]],[17,18,["H3947"]],[18,20,["H4480"]],[20,22,["H5116"]],[22,24,["H4480","H310"]],[24,26,["H6629"]],[26,28,["H1961"]],[28,29,["H5057"]],[29,30,["H5921"]],[30,32,["H5971"]],[32,33,["H5921"]],[33,34,["H3478"]]]},{"k":8189,"v":[[0,3,["H1961"]],[3,4,["H5973"]],[4,6,["H3605","H834"]],[6,8,["H1980"]],[8,12,["H3772","(H853)"]],[12,13,["H3605"]],[13,15,["H341"]],[15,19,["H4480","H6440"]],[19,22,["H6213"]],[22,25,["H1419"]],[25,26,["H8034"]],[26,30,["H8034"]],[30,33,["H1419"]],[33,35,["H834"]],[35,39,["H776"]]]},{"k":8190,"v":[[0,4,["H7760"]],[4,6,["H4725"]],[6,9,["H5971"]],[9,10,["H3478"]],[10,13,["H5193"]],[13,18,["H7931"]],[18,21,["H8478"]],[21,26,["H7264"]],[26,27,["H3808"]],[27,28,["H5750"]],[28,29,["H3808"]],[29,32,["H1121"]],[32,34,["H5766"]],[34,35,["H6031"]],[35,38,["H3254"]],[38,39,["H834"]],[39,40,["H7223"]]]},{"k":8191,"v":[[0,3,["H4480"]],[3,5,["H3117"]],[5,6,["H834"]],[6,8,["H6680"]],[8,9,["H8199"]],[9,12,["H5921"]],[12,14,["H5971"]],[14,15,["H3478"]],[15,21,["H5117"]],[21,23,["H4480","H3605"]],[23,25,["H341"]],[25,28,["H3068"]],[28,29,["H5046"]],[29,31,["H3588"]],[31,34,["H6213"]],[34,37,["H1004"]]]},{"k":8192,"v":[[0,2,["H3588"]],[2,4,["H3117"]],[4,6,["H4390"]],[6,10,["H7901"]],[10,11,["H854"]],[11,13,["H1"]],[13,17,["H6965","(H853)"]],[17,19,["H2233"]],[19,20,["H310"]],[20,22,["H834"]],[22,24,["H3318"]],[24,28,["H4480","H4578"]],[28,32,["H3559","(H853)"]],[32,34,["H4467"]]]},{"k":8193,"v":[[0,1,["H1931"]],[1,3,["H1129"]],[3,5,["H1004"]],[5,8,["H8034"]],[8,12,["H3559","(H853)"]],[12,14,["H3678"]],[14,17,["H4467"]],[17,19,["H5704","H5769"]]]},{"k":8194,"v":[[0,1,["H589"]],[1,3,["H1961"]],[3,5,["H1"]],[5,7,["H1931"]],[7,9,["H1961"]],[9,11,["H1121"]],[11,12,["H834"]],[12,15,["H5753"]],[15,18,["H3198"]],[18,22,["H7626"]],[22,24,["H376"]],[24,28,["H5061"]],[28,31,["H1121"]],[31,33,["H120"]]]},{"k":8195,"v":[[0,3,["H2617"]],[3,5,["H3808"]],[5,7,["H5493"]],[7,8,["H4480"]],[8,10,["H834"]],[10,12,["H5493"]],[12,14,["H4480","H5973"]],[14,15,["H7586"]],[15,16,["H834"]],[16,19,["H5493"]],[19,20,["H4480","H6440"]],[20,21,[]]]},{"k":8196,"v":[[0,3,["H1004"]],[3,6,["H4467"]],[6,9,["H539"]],[9,11,["H5704","H5769"]],[11,12,["H6440"]],[12,15,["H3678"]],[15,17,["H1961"]],[17,18,["H3559"]],[18,20,["H5704","H5769"]]]},{"k":8197,"v":[[0,3,["H3605"]],[3,4,["H428"]],[4,5,["H1697"]],[5,9,["H3605"]],[9,10,["H2088"]],[10,11,["H2384"]],[11,12,["H3651"]],[12,14,["H5416"]],[14,15,["H1696"]],[15,16,["H413"]],[16,17,["H1732"]]]},{"k":8198,"v":[[0,2,["H935"]],[2,3,["H4428"]],[3,4,["H1732"]],[4,7,["H3427"]],[7,8,["H6440"]],[8,10,["H3069"]],[10,13,["H559"]],[13,14,["H4310"]],[14,16,["H595"]],[16,18,["H136"]],[18,19,["H3069"]],[19,21,["H4310"]],[21,24,["H1004"]],[24,25,["H3588"]],[25,28,["H935"]],[28,30,["H5704","H1988"]]]},{"k":8199,"v":[[0,2,["H2063"]],[2,4,["H5750"]],[4,6,["H6994"]],[6,10,["H5869"]],[10,12,["H136"]],[12,13,["H3069"]],[13,17,["H1696"]],[17,18,["H1571"]],[18,19,["H413"]],[19,21,["H5650"]],[21,22,["H1004"]],[22,28,["H4480","H7350"]],[28,31,["H2063"]],[31,33,["H8452"]],[33,35,["H120"]],[35,37,["H136"]],[37,38,["H3069"]]]},{"k":8200,"v":[[0,2,["H4100"]],[2,4,["H1732"]],[4,5,["H3254","H1696"]],[5,6,["H5750"]],[6,7,["H413"]],[7,10,["H859"]],[10,11,["H136"]],[11,12,["H3069"]],[12,13,["H3045","(H853)"]],[13,15,["H5650"]]]},{"k":8201,"v":[[0,4,["H5668","H1697"]],[4,10,["H3820"]],[10,13,["H6213","(H853)"]],[13,14,["H3605"]],[14,15,["H2063"]],[15,17,["H1420"]],[17,19,["(H853)"]],[19,21,["H5650"]],[21,22,["H3045"]],[22,23,[]]]},{"k":8202,"v":[[0,1,["H5921","H3651"]],[1,4,["H1431"]],[4,6,["H3068"]],[6,7,["H136"]],[7,8,["H3588"]],[8,11,["H369"]],[11,13,["H3644"]],[13,14,["H369"]],[14,18,["H430"]],[18,19,["H2108"]],[19,23,["H3605"]],[23,24,["H834"]],[24,27,["H8085"]],[27,30,["H241"]]]},{"k":8203,"v":[[0,2,["H4310"]],[2,3,["H259"]],[3,4,["H1471"]],[4,7,["H776"]],[7,11,["H5971"]],[11,14,["H3478"]],[14,15,["H834"]],[15,16,["H430"]],[16,17,["H1980"]],[17,19,["H6299"]],[19,22,["H5971"]],[22,27,["H7760"]],[27,30,["H8034"]],[30,33,["H6213"]],[33,36,["H1420"]],[36,39,["H3372"]],[39,42,["H776"]],[42,43,["H4480","H6440"]],[43,45,["H5971"]],[45,46,["H834"]],[46,48,["H6299"]],[48,52,["H4480","H4714"]],[52,55,["H1471"]],[55,58,["H430"]]]},{"k":8204,"v":[[0,4,["H3559"]],[4,6,["(H853)"]],[6,8,["H5971"]],[8,9,["H3478"]],[9,13,["H5971"]],[13,17,["H5704","H5769"]],[17,19,["H859"]],[19,20,["H3068"]],[20,22,["H1961"]],[22,24,["H430"]]]},{"k":8205,"v":[[0,2,["H6258"]],[2,4,["H3068"]],[4,5,["H430"]],[5,7,["H1697"]],[7,8,["H834"]],[8,11,["H1696"]],[11,12,["H5921"]],[12,14,["H5650"]],[14,16,["H5921"]],[16,18,["H1004"]],[18,19,["H6965"]],[19,22,["H5704","H5769"]],[22,24,["H6213"]],[24,25,["H834"]],[25,28,["H1696"]]]},{"k":8206,"v":[[0,4,["H8034"]],[4,6,["H1431"]],[6,8,["H5704","H5769"]],[8,9,["H559"]],[9,11,["H3068"]],[11,13,["H6635"]],[13,16,["H430"]],[16,17,["H5921"]],[17,18,["H3478"]],[18,22,["H1004"]],[22,25,["H5650"]],[25,26,["H1732"]],[26,27,["H1961"]],[27,28,["H3559"]],[28,29,["H6440"]],[29,30,[]]]},{"k":8207,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H430"]],[7,9,["H3478"]],[9,11,["H1540","H241"]],[11,14,["H5650"]],[14,15,["H559"]],[15,18,["H1129"]],[18,21,["H1004"]],[21,22,["H5921","H3651"]],[22,25,["H5650"]],[25,26,["H4672"]],[26,27,["(H853)"]],[27,29,["H3820"]],[29,31,["H6419","(H853)"]],[31,32,["H2063"]],[32,33,["H8605"]],[33,34,["H413"]],[34,35,[]]]},{"k":8208,"v":[[0,2,["H6258"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H859"]],[6,8,["H1931"]],[8,9,["H430"]],[9,12,["H1697"]],[12,13,["H1961"]],[13,14,["H571"]],[14,18,["H1696","(H853)"]],[18,19,["H2063"]],[19,20,["H2896"]],[20,21,["H413"]],[21,23,["H5650"]]]},{"k":8209,"v":[[0,2,["H6258"]],[2,5,["H2974"]],[5,8,["H1288","(H853)"]],[8,10,["H1004"]],[10,13,["H5650"]],[13,17,["H1961"]],[17,19,["H5769"]],[19,20,["H6440"]],[20,22,["H3588"]],[22,23,["H859"]],[23,25,["H136"]],[25,26,["H3069"]],[26,28,["H1696"]],[28,33,["H4480","H1293"]],[33,36,["H1004"]],[36,39,["H5650"]],[39,41,["H1288"]],[41,43,["H5769"]]]},{"k":8210,"v":[[0,2,["H310"]],[2,3,["H3651"]],[3,7,["H1961"]],[7,9,["H1732"]],[9,10,["H5221","(H853)"]],[10,12,["H6430"]],[12,14,["H3665"]],[14,17,["H1732"]],[17,18,["H3947","(H853)"]],[18,19,["H4965"]],[19,23,["H4480","H3027"]],[23,26,["H6430"]]]},{"k":8211,"v":[[0,3,["H5221","(H853)"]],[3,4,["H4124"]],[4,6,["H4058"]],[6,10,["H2256"]],[10,13,["H7901","(H853)"]],[13,16,["H776"]],[16,19,["H8147"]],[19,20,["H2256"]],[20,21,["H4058"]],[21,26,["H4191"]],[26,30,["H4393"]],[30,31,["H2256"]],[31,34,["H2421"]],[34,38,["H4124"]],[38,39,["H1961"]],[39,40,["H1732"]],[40,41,["H5650"]],[41,43,["H5375"]],[43,44,["H4503"]]]},{"k":8212,"v":[[0,1,["H1732"]],[1,2,["H5221"]],[2,3,["(H853)"]],[3,4,["H1909"]],[4,6,["H1121"]],[6,8,["H7340"]],[8,9,["H4428"]],[9,11,["H6678"]],[11,14,["H1980"]],[14,16,["H7725"]],[16,18,["H3027"]],[18,21,["H5104"]],[21,22,["H6578"]]]},{"k":8213,"v":[[0,2,["H1732"]],[2,3,["H3920"]],[3,4,["H4480"]],[4,7,["H505"]],[7,10,["H7651"]],[10,11,["H3967"]],[11,12,["H6571"]],[12,14,["H6242"]],[14,15,["H505"]],[15,16,["H376","H7273"]],[16,18,["H1732"]],[18,19,["H6131","(H853)"]],[19,20,["H3605"]],[20,22,["H7393"]],[22,25,["H3498"]],[25,26,["H4480"]],[26,30,["H3967"]],[30,31,["H7393"]]]},{"k":8214,"v":[[0,4,["H758"]],[4,6,["H1834"]],[6,7,["H935"]],[7,9,["H5826"]],[9,10,["H1909"]],[10,11,["H4428"]],[11,13,["H6678"]],[13,14,["H1732"]],[14,15,["H5221"]],[15,18,["H758"]],[18,19,["H8147"]],[19,21,["H6242"]],[21,22,["H505"]],[22,23,["H376"]]]},{"k":8215,"v":[[0,2,["H1732"]],[2,3,["H7760"]],[3,4,["H5333"]],[4,6,["H758"]],[6,8,["H1834"]],[8,11,["H758"]],[11,12,["H1961"]],[12,13,["H5650"]],[13,15,["H1732"]],[15,17,["H5375"]],[17,18,["H4503"]],[18,21,["H3068"]],[21,22,["H3467","(H853)"]],[22,23,["H1732"]],[23,24,["H3605","H834"]],[24,26,["H1980"]]]},{"k":8216,"v":[[0,2,["H1732"]],[2,3,["H3947","(H853)"]],[3,5,["H7982"]],[5,7,["H2091"]],[7,8,["H834"]],[8,9,["H1961"]],[9,10,["H413"]],[10,12,["H5650"]],[12,14,["H1909"]],[14,16,["H935"]],[16,19,["H3389"]]]},{"k":8217,"v":[[0,3,["H4480","H984"]],[3,6,["H4480","H1268"]],[6,7,["H5892"]],[7,9,["H1909"]],[9,10,["H4428"]],[10,11,["H1732"]],[11,12,["H3947"]],[12,13,["H3966"]],[13,14,["H7235"]],[14,15,["H5178"]]]},{"k":8218,"v":[[0,2,["H8583"]],[2,3,["H4428"]],[3,5,["H2574"]],[5,6,["H8085"]],[6,7,["H3588"]],[7,8,["H1732"]],[8,10,["H5221","(H853)"]],[10,11,["H3605"]],[11,13,["H2428"]],[13,15,["H1909"]]]},{"k":8219,"v":[[0,2,["H8583"]],[2,3,["H7971","(H853)"]],[3,4,["H3141"]],[4,6,["H1121"]],[6,7,["H413"]],[7,8,["H4428"]],[8,9,["H1732"]],[9,11,["H7592","H7965"]],[11,15,["H1288"]],[15,17,["H5921","H834"]],[17,20,["H3898"]],[20,22,["H1909"]],[22,24,["H5221"]],[24,26,["H3588"]],[26,27,["H1909"]],[27,28,["H1961"]],[28,29,["H4421"]],[29,31,["H8583"]],[31,34,["H1961"]],[34,35,["H3027"]],[35,37,["H3627"]],[37,39,["H3701"]],[39,41,["H3627"]],[41,43,["H2091"]],[43,45,["H3627"]],[45,47,["H5178"]]]},{"k":8220,"v":[[0,2,["H1571"]],[2,3,["H4428"]],[3,4,["H1732"]],[4,6,["H6942"]],[6,9,["H3068"]],[9,10,["H5973"]],[10,12,["H3701"]],[12,14,["H2091"]],[14,15,["H834"]],[15,18,["H6942"]],[18,20,["H4480","H3605"]],[20,21,["H1471"]],[21,22,["H834"]],[22,24,["H3533"]]]},{"k":8221,"v":[[0,2,["H4480","H758"]],[2,5,["H4480","H4124"]],[5,9,["H4480","H1121"]],[9,11,["H5983"]],[11,15,["H4480","H6430"]],[15,18,["H4480","H6002"]],[18,22,["H4480","H7998"]],[22,24,["H1909"]],[24,25,["H1121"]],[25,27,["H7340"]],[27,28,["H4428"]],[28,30,["H6678"]]]},{"k":8222,"v":[[0,2,["H1732"]],[2,3,["H6213"]],[3,6,["H8034"]],[6,9,["H7725"]],[9,11,["H4480","H5221"]],[11,12,["(H853)"]],[12,14,["H758"]],[14,17,["H1516"]],[17,19,["H4417"]],[19,21,["H8083","H6240"]],[21,22,["H505"]],[22,23,[]]]},{"k":8223,"v":[[0,3,["H7760"]],[3,4,["H5333"]],[4,6,["H123"]],[6,8,["H3605"]],[8,9,["H123"]],[9,10,["H7760"]],[10,12,["H5333"]],[12,14,["H3605"]],[14,17,["H123"]],[17,18,["H1961"]],[18,19,["H1732"]],[19,20,["H5650"]],[20,23,["H3068"]],[23,24,["H3467","(H853)"]],[24,25,["H1732"]],[25,26,["H3605","H834"]],[26,28,["H1980"]]]},{"k":8224,"v":[[0,2,["H1732"]],[2,3,["H4427"]],[3,4,["H5921"]],[4,5,["H3605"]],[5,6,["H3478"]],[6,8,["H1732"]],[8,9,["H6213"]],[9,10,["H4941"]],[10,12,["H6666"]],[12,14,["H3605"]],[14,16,["H5971"]]]},{"k":8225,"v":[[0,2,["H3097"]],[2,4,["H1121"]],[4,6,["H6870"]],[6,8,["H5921"]],[8,10,["H6635"]],[10,12,["H3092"]],[12,14,["H1121"]],[14,16,["H286"]],[16,18,["H2142"]]]},{"k":8226,"v":[[0,2,["H6659"]],[2,4,["H1121"]],[4,6,["H285"]],[6,8,["H288"]],[8,10,["H1121"]],[10,12,["H54"]],[12,15,["H3548"]],[15,17,["H8304"]],[17,20,["H5608"]]]},{"k":8227,"v":[[0,2,["H1141"]],[2,4,["H1121"]],[4,6,["H3077"]],[6,11,["H3774"]],[11,14,["H6432"]],[14,16,["H1732"]],[16,17,["H1121"]],[17,18,["H1961"]],[18,20,["H3548"]]]},{"k":8228,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H3426"]],[5,6,["H5750"]],[6,7,["H834"]],[7,10,["H3498"]],[10,13,["H1004"]],[13,15,["H7586"]],[15,19,["H6213","H5973"]],[19,21,["H2617"]],[21,23,["H3129"]],[23,24,["H5668"]]]},{"k":8229,"v":[[0,6,["H1004"]],[6,8,["H7586"]],[8,10,["H5650"]],[10,12,["H8034"]],[12,14,["H6717"]],[14,19,["H7121"]],[19,21,["H413"]],[21,22,["H1732"]],[22,24,["H4428"]],[24,25,["H559"]],[25,26,["H413"]],[26,29,["H859"]],[29,30,["H6717"]],[30,33,["H559"]],[33,35,["H5650"]],[35,37,[]]]},{"k":8230,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H657"]],[7,8,["H5750"]],[8,9,["H376"]],[9,12,["H1004"]],[12,14,["H7586"]],[14,18,["H6213"]],[18,20,["H2617"]],[20,22,["H430"]],[22,23,["H5973"]],[23,26,["H6717"]],[26,27,["H559"]],[27,28,["H413"]],[28,30,["H4428"]],[30,31,["H3083"]],[31,33,["H5750"]],[33,35,["H1121"]],[35,38,["H5223"]],[38,41,["H7272"]]]},{"k":8231,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H375"]],[7,9,["H1931"]],[9,11,["H6717"]],[11,12,["H559"]],[12,13,["H413"]],[13,15,["H4428"]],[15,16,["H2009"]],[16,17,["H1931"]],[17,21,["H1004"]],[21,23,["H4353"]],[23,25,["H1121"]],[25,27,["H5988"]],[27,29,["H3810"]]]},{"k":8232,"v":[[0,2,["H4428"]],[2,3,["H1732"]],[3,4,["H7971"]],[4,6,["H3947"]],[6,11,["H4480","H1004"]],[11,13,["H4353"]],[13,15,["H1121"]],[15,17,["H5988"]],[17,19,["H4480","H3810"]]]},{"k":8233,"v":[[0,3,["H4648"]],[3,5,["H1121"]],[5,7,["H3083"]],[7,9,["H1121"]],[9,11,["H7586"]],[11,13,["H935"]],[13,14,["H413"]],[14,15,["H1732"]],[15,17,["H5307"]],[17,18,["H5921"]],[18,20,["H6440"]],[20,23,["H7812"]],[23,25,["H1732"]],[25,26,["H559"]],[26,27,["H4648"]],[27,30,["H559"]],[30,31,["H2009"]],[31,33,["H5650"]]]},{"k":8234,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,6,["H3372"]],[6,7,["H408"]],[7,8,["H3588"]],[8,12,["H6213","H6213","H5973"]],[12,14,["H2617"]],[14,16,["H3083"]],[16,18,["H1"]],[18,19,["H5668"]],[19,22,["H7725"]],[22,23,["(H853)"]],[23,24,["H3605"]],[24,26,["H7704"]],[26,28,["H7586"]],[28,30,["H1"]],[30,32,["H859"]],[32,34,["H398"]],[34,35,["H3899"]],[35,36,["H5921"]],[36,38,["H7979"]],[38,39,["H8548"]]]},{"k":8235,"v":[[0,4,["H7812"]],[4,6,["H559"]],[6,7,["H4100"]],[7,10,["H5650"]],[10,11,["H3588"]],[11,14,["H6437"]],[14,15,["H413"]],[15,16,["H834"]],[16,18,["H4191"]],[18,19,["H3611"]],[19,21,["H3644"]],[21,22,[]]]},{"k":8236,"v":[[0,3,["H4428"]],[3,4,["H7121"]],[4,5,["H413"]],[5,6,["H6717"]],[6,7,["H7586"]],[7,8,["H5288"]],[8,10,["H559"]],[10,11,["H413"]],[11,15,["H5414"]],[15,18,["H113"]],[18,19,["H1121"]],[19,20,["H3605"]],[20,21,["H834"]],[21,22,["H1961"]],[22,24,["H7586"]],[24,27,["H3605"]],[27,29,["H1004"]]]},{"k":8237,"v":[[0,1,["H859"]],[1,5,["H1121"]],[5,8,["H5650"]],[8,10,["H5647","(H853)"]],[10,12,["H127"]],[12,18,["H935"]],[18,24,["H113"]],[24,25,["H1121"]],[25,27,["H1961"]],[27,28,["H3899"]],[28,30,["H398"]],[30,32,["H4648"]],[32,34,["H113"]],[34,35,["H1121"]],[35,37,["H398"]],[37,38,["H3899"]],[38,39,["H8548"]],[39,40,["H5921"]],[40,42,["H7979"]],[42,44,["H6717"]],[44,46,["H2568","H6240"]],[46,47,["H1121"]],[47,49,["H6242"]],[49,50,["H5650"]]]},{"k":8238,"v":[[0,2,["H559"]],[2,3,["H6717"]],[3,4,["H413"]],[4,6,["H4428"]],[6,9,["H3605"]],[9,10,["H834"]],[10,12,["H113"]],[12,14,["H4428"]],[14,16,["H6680","(H853)"]],[16,18,["H5650"]],[18,19,["H3651"]],[19,22,["H5650"]],[22,23,["H6213"]],[23,26,["H4648"]],[26,32,["H398"]],[32,33,["H5921"]],[33,35,["H7979"]],[35,37,["H259"]],[37,41,["H4480","H1121","H4428"]]]},{"k":8239,"v":[[0,2,["H4648"]],[2,5,["H6996"]],[5,6,["H1121"]],[6,8,["H8034"]],[8,10,["H4316"]],[10,12,["H3605"]],[12,14,["H4186"]],[14,17,["H1004"]],[17,19,["H6717"]],[19,21,["H5650"]],[21,23,["H4648"]]]},{"k":8240,"v":[[0,2,["H4648"]],[2,3,["H3427"]],[3,5,["H3389"]],[5,6,["H3588"]],[6,7,["H1931"]],[7,9,["H398"]],[9,10,["H8548"]],[10,11,["H5921"]],[11,13,["H4428"]],[13,14,["H7979"]],[14,17,["H6455"]],[17,19,["H8147"]],[19,21,["H7272"]]]},{"k":8241,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H3651"]],[7,10,["H4428"]],[10,13,["H1121"]],[13,15,["H5983"]],[15,16,["H4191"]],[16,18,["H2586"]],[18,20,["H1121"]],[20,21,["H4427"]],[21,24,["H8478"]]]},{"k":8242,"v":[[0,2,["H559"]],[2,3,["H1732"]],[3,6,["H6213"]],[6,7,["H2617"]],[7,8,["H5973"]],[8,9,["H2586"]],[9,11,["H1121"]],[11,13,["H5176"]],[13,14,["H834"]],[14,16,["H1"]],[16,17,["H6213"]],[17,18,["H2617"]],[18,19,["H5973"]],[19,22,["H1732"]],[22,23,["H7971"]],[23,25,["H5162"]],[25,29,["H3027"]],[29,32,["H5650"]],[32,33,["H413"]],[33,35,["H1"]],[35,37,["H1732"]],[37,38,["H5650"]],[38,39,["H935"]],[39,42,["H776"]],[42,45,["H1121"]],[45,47,["H5983"]]]},{"k":8243,"v":[[0,3,["H8269"]],[3,6,["H1121"]],[6,8,["H5983"]],[8,9,["H559"]],[9,10,["H413"]],[10,11,["H2586"]],[11,13,["H113"]],[13,14,["H5869"]],[14,17,["H1732"]],[17,19,["H3513","(H853)"]],[19,21,["H1"]],[21,22,["H3588"]],[22,25,["H7971"]],[25,26,["H5162"]],[26,30,["H3808"]],[30,31,["H1732"]],[31,33,["H7971","(H853)"]],[33,35,["H5650"]],[35,36,["H413"]],[36,38,["H5668"]],[38,39,["H2713","(H853)"]],[39,41,["H5892"]],[41,46,["H7270"]],[46,49,["H2015"]],[49,50,[]]]},{"k":8244,"v":[[0,2,["H2586"]],[2,3,["H3947"]],[3,4,["H1732","(H853)"]],[4,5,["H5650"]],[5,8,["H1548"]],[8,9,["(H853)"]],[9,11,["H2677"]],[11,14,["H2206"]],[14,17,["H3772","(H853)"]],[17,19,["H4063"]],[19,22,["H2677"]],[22,24,["H5704"]],[24,26,["H8357"]],[26,30,["H7971"]]]},{"k":8245,"v":[[0,3,["H5046"]],[3,6,["H1732"]],[6,8,["H7971"]],[8,10,["H7125"]],[10,12,["H3588"]],[12,14,["H376"]],[14,15,["H1961"]],[15,16,["H3966"]],[16,17,["H3637"]],[17,20,["H4428"]],[20,21,["H559"]],[21,22,["H3427"]],[22,24,["H3405"]],[24,25,["H5704"]],[25,27,["H2206"]],[27,29,["H6779"]],[29,32,["H7725"]]]},{"k":8246,"v":[[0,4,["H1121"]],[4,6,["H5983"]],[6,7,["H7200"]],[7,8,["H3588"]],[8,10,["H887"]],[10,12,["H1732"]],[12,14,["H1121"]],[14,16,["H5983"]],[16,17,["H7971"]],[17,19,["H7936","(H853)"]],[19,21,["H758"]],[21,23,["H1050"]],[23,26,["H758"]],[26,28,["H6678"]],[28,29,["H6242"]],[29,30,["H505"]],[30,31,["H7273"]],[31,34,["H4428"]],[34,35,["H4601"]],[35,37,["H505"]],[37,38,["H376"]],[38,41,["H382"]],[41,42,["H8147","H6240"]],[42,43,["H505"]],[43,44,["H376"]]]},{"k":8247,"v":[[0,3,["H1732"]],[3,4,["H8085"]],[4,8,["H7971","(H853)"]],[8,9,["H3097"]],[9,11,["H3605"]],[11,13,["H6635"]],[13,17,["H1368"]]]},{"k":8248,"v":[[0,3,["H1121"]],[3,5,["H5983"]],[5,7,["H3318"]],[7,11,["H4421"]],[11,13,["H6186"]],[13,16,["H6607"]],[16,20,["H8179"]],[20,23,["H758"]],[23,25,["H6678"]],[25,28,["H7340"]],[28,30,["H382"]],[30,32,["H4601"]],[32,35,["H905"]],[35,38,["H7704"]]]},{"k":8249,"v":[[0,2,["H3097"]],[2,3,["H7200"]],[3,4,["H3588"]],[4,6,["H6440"]],[6,9,["H4421"]],[9,10,["H1961"]],[10,11,["H413"]],[11,13,["H4480","H6440"]],[13,15,["H4480","H268"]],[15,17,["H977"]],[17,19,["H4480","H3605"]],[19,21,["H977"]],[21,24,["H3478"]],[24,29,["H6186"]],[29,30,["H7125"]],[30,32,["H758"]]]},{"k":8250,"v":[[0,3,["H3499"]],[3,6,["H5971"]],[6,8,["H5414"]],[8,11,["H3027"]],[11,13,["H52"]],[13,15,["H251"]],[15,22,["H6186"]],[22,23,["H7125"]],[23,25,["H1121"]],[25,27,["H5983"]]]},{"k":8251,"v":[[0,3,["H559"]],[3,4,["H518"]],[4,6,["H758"]],[6,9,["H2388"]],[9,10,["H4480"]],[10,14,["H1961"]],[14,15,["H3444"]],[15,18,["H518"]],[18,20,["H1121"]],[20,22,["H5983"]],[22,25,["H2388"]],[25,26,["H4480"]],[26,31,["H1980"]],[31,33,["H3467"]],[33,34,[]]]},{"k":8252,"v":[[0,4,["H2388"]],[4,10,["H2388"]],[10,11,["H1157"]],[11,13,["H5971"]],[13,15,["H1157"]],[15,17,["H5892"]],[17,20,["H430"]],[20,23,["H3068"]],[23,24,["H6213"]],[24,27,["H5869"]],[27,29,["H2896"]]]},{"k":8253,"v":[[0,2,["H3097"]],[2,4,["H5066"]],[4,7,["H5971"]],[7,8,["H834"]],[8,10,["H5973"]],[10,14,["H4421"]],[14,17,["H758"]],[17,20,["H5127"]],[20,21,["H4480","H6440"]],[21,22,[]]]},{"k":8254,"v":[[0,4,["H1121"]],[4,6,["H5983"]],[6,7,["H7200"]],[7,8,["H3588"]],[8,10,["H758"]],[10,12,["H5127"]],[12,14,["H5127"]],[14,17,["H4480","H6440"]],[17,18,["H52"]],[18,20,["H935"]],[20,23,["H5892"]],[23,25,["H3097"]],[25,26,["H7725"]],[26,27,["H4480","H5921"]],[27,29,["H1121"]],[29,31,["H5983"]],[31,33,["H935"]],[33,35,["H3389"]]]},{"k":8255,"v":[[0,4,["H758"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,9,["H5062"]],[9,10,["H6440"]],[10,11,["H3478"]],[11,14,["H622"]],[14,15,["H3162"]]]},{"k":8256,"v":[[0,2,["H1928"]],[2,3,["H7971"]],[3,6,["H3318","(H853)"]],[6,8,["H758"]],[8,9,["H834"]],[9,11,["H4480","H5676"]],[11,13,["H5104"]],[13,16,["H935"]],[16,18,["H2431"]],[18,20,["H7731"]],[20,22,["H8269"]],[22,25,["H6635"]],[25,27,["H1928"]],[27,29,["H6440"]],[29,30,[]]]},{"k":8257,"v":[[0,5,["H5046"]],[5,6,["H1732"]],[6,11,["H622","(H853)","H3605","H3478"]],[11,14,["H5674","(H853)"]],[14,15,["H3383"]],[15,17,["H935"]],[17,19,["H2431"]],[19,22,["H758"]],[22,26,["H6186"]],[26,27,["H7125"]],[27,28,["H1732"]],[28,30,["H3898"]],[30,31,["H5973"]],[31,32,[]]]},{"k":8258,"v":[[0,3,["H758"]],[3,4,["H5127"]],[4,5,["H4480","H6440"]],[5,6,["H3478"]],[6,8,["H1732"]],[8,9,["H2026"]],[9,13,["H7651"]],[13,14,["H3967"]],[14,15,["H7393"]],[15,18,["H4480","H758"]],[18,20,["H705"]],[20,21,["H505"]],[21,22,["H6571"]],[22,24,["H5221"]],[24,25,["H7731"]],[25,27,["H8269"]],[27,30,["H6635"]],[30,32,["H4191"]],[32,33,["H8033"]]]},{"k":8259,"v":[[0,3,["H3605"]],[3,5,["H4428"]],[5,8,["H5650"]],[8,10,["H1928"]],[10,11,["H7200"]],[11,12,["H3588"]],[12,15,["H5062"]],[15,16,["H6440"]],[16,17,["H3478"]],[17,20,["H7999"]],[20,21,["H854"]],[21,22,["H3478"]],[22,24,["H5647"]],[24,28,["H758"]],[28,29,["H3372"]],[29,31,["H3467","(H853)"]],[31,33,["H1121"]],[33,35,["H5983"]],[35,37,["H5750"]]]},{"k":8260,"v":[[0,5,["H1961"]],[5,8,["H8141"]],[8,10,["H8666"]],[10,13,["H6256"]],[13,15,["H4428"]],[15,17,["H3318"]],[17,21,["H1732"]],[21,22,["H7971","(H853)"]],[22,23,["H3097"]],[23,26,["H5650"]],[26,27,["H5973"]],[27,30,["H3605"]],[30,31,["H3478"]],[31,34,["H7843","(H853)"]],[34,36,["H1121"]],[36,38,["H5983"]],[38,40,["H6696","H5921"]],[40,41,["H7237"]],[41,43,["H1732"]],[43,44,["H3427"]],[44,47,["H3389"]]]},{"k":8261,"v":[[0,5,["H1961"]],[5,8,["H6256","H6153"]],[8,10,["H1732"]],[10,11,["H6965"]],[11,13,["H4480","H5921"]],[13,15,["H4904"]],[15,17,["H1980"]],[17,18,["H5921"]],[18,20,["H1406"]],[20,23,["H4428"]],[23,24,["H1004"]],[24,26,["H4480","H5921"]],[26,28,["H1406"]],[28,30,["H7200"]],[30,32,["H802"]],[32,33,["H7364"]],[33,37,["H802"]],[37,39,["H3966"]],[39,40,["H2896"]],[40,42,["H4758"]],[42,43,[]]]},{"k":8262,"v":[[0,2,["H1732"]],[2,3,["H7971"]],[3,5,["H1875"]],[5,8,["H802"]],[8,11,["H559"]],[11,13,["H3808"]],[13,14,["H2063"]],[14,15,["H1339"]],[15,17,["H1323"]],[17,19,["H463"]],[19,21,["H802"]],[21,23,["H223"]],[23,25,["H2850"]]]},{"k":8263,"v":[[0,2,["H1732"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,6,["H3947"]],[6,10,["H935"]],[10,12,["H413"]],[12,16,["H7901"]],[16,18,["H5973"]],[18,20,["H1931"]],[20,22,["H6942"]],[22,25,["H4480","H2932"]],[25,28,["H7725"]],[28,29,["H413"]],[29,31,["H1004"]]]},{"k":8264,"v":[[0,3,["H802"]],[3,4,["H2029"]],[4,6,["H7971"]],[6,8,["H5046"]],[8,9,["H1732"]],[9,11,["H559"]],[11,12,["H595"]],[12,15,["H2030"]]]},{"k":8265,"v":[[0,2,["H1732"]],[2,3,["H7971"]],[3,4,["H413"]],[4,5,["H3097"]],[5,7,["H7971","H413"]],[7,8,["(H853)"]],[8,9,["H223"]],[9,11,["H2850"]],[11,13,["H3097"]],[13,14,["H7971","(H853)"]],[14,15,["H223"]],[15,16,["H413"]],[16,17,["H1732"]]]},{"k":8266,"v":[[0,3,["H223"]],[3,5,["H935"]],[5,6,["H413"]],[6,8,["H1732"]],[8,9,["H7592"]],[9,13,["H3097"]],[13,14,["H7965"]],[14,18,["H5971"]],[18,19,["H7965"]],[19,23,["H4421"]],[23,24,["H7965"]]]},{"k":8267,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H223"]],[5,7,["H3381"]],[7,10,["H1004"]],[10,12,["H7364"]],[12,14,["H7272"]],[14,16,["H223"]],[16,17,["H3318"]],[17,22,["H4480","H1004","H4428"]],[22,25,["H3318","H310"]],[25,28,["H4864"]],[28,33,["H4428"]]]},{"k":8268,"v":[[0,2,["H223"]],[2,3,["H7901"]],[3,6,["H6607"]],[6,9,["H4428"]],[9,10,["H1004"]],[10,11,["H854"]],[11,12,["H3605"]],[12,14,["H5650"]],[14,17,["H113"]],[17,19,["H3381"]],[19,20,["H3808"]],[20,22,["H413"]],[22,24,["H1004"]]]},{"k":8269,"v":[[0,5,["H5046"]],[5,6,["H1732"]],[6,7,["H559"]],[7,8,["H223"]],[8,11,["H3381","H3808"]],[11,12,["H413"]],[12,14,["H1004"]],[14,15,["H1732"]],[15,16,["H559"]],[16,17,["H413"]],[17,18,["H223"]],[18,19,["H935"]],[19,20,["H859"]],[20,21,["H3808"]],[21,24,["H4480","H1870"]],[24,25,["H4069"]],[25,29,["H3808"]],[29,31,["H3381"]],[31,32,["H413"]],[32,34,["H1004"]]]},{"k":8270,"v":[[0,2,["H223"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,7,["H727"]],[7,9,["H3478"]],[9,11,["H3063"]],[11,12,["H3427"]],[12,14,["H5521"]],[14,17,["H113"]],[17,18,["H3097"]],[18,21,["H5650"]],[21,24,["H113"]],[24,26,["H2583"]],[26,27,["H5921"]],[27,29,["H6440"]],[29,30,["H7704"]],[30,32,["H589"]],[32,34,["H935"]],[34,35,["H413"]],[35,37,["H1004"]],[37,39,["H398"]],[39,42,["H8354"]],[42,45,["H7901"]],[45,46,["H5973"]],[46,48,["H802"]],[48,51,["H2416"]],[51,55,["H5315"]],[55,56,["H2416"]],[56,60,["H6213","(H853)"]],[60,61,["H2088"]],[61,62,["H1697"]]]},{"k":8271,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H223"]],[5,6,["H3427"]],[6,7,["H2088"]],[7,9,["H3117"]],[9,10,["H1571"]],[10,13,["H4279"]],[13,18,["H7971"]],[18,20,["H223"]],[20,21,["H3427"]],[21,23,["H3389"]],[23,24,["H1931"]],[24,25,["H3117"]],[25,28,["H4480","H4283"]]]},{"k":8272,"v":[[0,3,["H1732"]],[3,5,["H7121"]],[5,9,["H398"]],[9,11,["H8354"]],[11,12,["H6440"]],[12,18,["H7937"]],[18,21,["H6153"]],[21,24,["H3318"]],[24,26,["H7901"]],[26,29,["H4904"]],[29,30,["H5973"]],[30,32,["H5650"]],[32,35,["H113"]],[35,37,["H3381"]],[37,38,["H3808"]],[38,40,["H413"]],[40,42,["H1004"]]]},{"k":8273,"v":[[0,5,["H1961"]],[5,8,["H1242"]],[8,10,["H1732"]],[10,11,["H3789"]],[11,13,["H5612"]],[13,14,["H413"]],[14,15,["H3097"]],[15,17,["H7971"]],[17,21,["H3027"]],[21,23,["H223"]]]},{"k":8274,"v":[[0,3,["H3789"]],[3,6,["H5612"]],[6,7,["H559"]],[7,8,["H3051"]],[8,9,["(H853)"]],[9,10,["H223"]],[10,11,["H413"]],[11,13,["H4136","H6440"]],[13,16,["H2389"]],[16,17,["H4421"]],[17,19,["H7725"]],[19,21,["H4480","H310"]],[21,27,["H5221"]],[27,29,["H4191"]]]},{"k":8275,"v":[[0,5,["H1961"]],[5,7,["H3097"]],[7,8,["H8104","H413"]],[8,10,["H5892"]],[10,13,["H5414","(H853)"]],[13,14,["H223"]],[14,15,["H413"]],[15,17,["H4725"]],[17,18,["H834","H8033"]],[18,20,["H3045"]],[20,21,["H3588"]],[21,22,["H2428"]],[22,23,["H376"]],[23,24,[]]]},{"k":8276,"v":[[0,3,["H376"]],[3,6,["H5892"]],[6,8,["H3318"]],[8,10,["H3898"]],[10,11,["H854"]],[11,12,["H3097"]],[12,15,["H5307"]],[15,17,["H4480"]],[17,19,["H5971"]],[19,22,["H4480","H5650"]],[22,24,["H1732"]],[24,26,["H223"]],[26,28,["H2850"]],[28,29,["H4191"]],[29,30,["H1571"]]]},{"k":8277,"v":[[0,2,["H3097"]],[2,3,["H7971"]],[3,5,["H5046"]],[5,6,["H1732","(H853)"]],[6,7,["H3605"]],[7,9,["H1697"]],[9,12,["H4421"]]]},{"k":8278,"v":[[0,2,["H6680","(H853)"]],[2,4,["H4397"]],[4,5,["H559"]],[5,11,["H3615"]],[11,13,["H1696"]],[13,15,["H1697"]],[15,18,["H4421"]],[18,19,["H413"]],[19,21,["H4428"]]]},{"k":8279,"v":[[0,2,["H518"]],[2,4,["H1961"]],[4,7,["H4428"]],[7,8,["H2534"]],[8,9,["H5927"]],[9,12,["H559"]],[12,15,["H4069"]],[15,16,["H5066"]],[16,20,["H413"]],[20,22,["H5892"]],[22,26,["H3898"]],[26,27,["H3045"]],[27,29,["H3808"]],[29,30,["H834"]],[30,33,["H3384"]],[33,34,["H4480","H5921"]],[34,36,["H2346"]]]},{"k":8280,"v":[[0,1,["H4310"]],[1,2,["H5221","(H853)"]],[2,3,["H40"]],[3,5,["H1121"]],[5,7,["H3380"]],[7,9,["H3808"]],[9,11,["H802"]],[11,12,["H7993"]],[12,14,["H6400"]],[14,17,["H7393"]],[17,18,["H5921"]],[18,20,["H4480","H5921"]],[20,22,["H2346"]],[22,25,["H4191"]],[25,27,["H8405"]],[27,28,["H4100"]],[28,31,["H5066","H413"]],[31,33,["H2346"]],[33,35,["H559"]],[35,38,["H5650"]],[38,39,["H223"]],[39,41,["H2850"]],[41,43,["H4191"]],[43,44,["H1571"]]]},{"k":8281,"v":[[0,3,["H4397"]],[3,4,["H1980"]],[4,6,["H935"]],[6,8,["H5046"]],[8,9,["H1732","(H853)"]],[9,10,["H3605"]],[10,11,["H834"]],[11,12,["H3097"]],[12,14,["H7971"]],[14,16,[]]]},{"k":8282,"v":[[0,3,["H4397"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H1732"]],[6,7,["H3588"]],[7,9,["H376"]],[9,10,["H1396"]],[10,11,["H5921"]],[11,15,["H3318"]],[15,16,["H413"]],[16,20,["H7704"]],[20,23,["H1961"]],[23,24,["H5921"]],[24,27,["H5704"]],[27,29,["H6607"]],[29,32,["H8179"]]]},{"k":8283,"v":[[0,3,["H3384"]],[3,4,["H3384"]],[4,6,["H4480","H5921"]],[6,8,["H2346"]],[8,9,["H413"]],[9,11,["H5650"]],[11,17,["H4480","H5650","H4428"]],[17,19,["H4191"]],[19,22,["H5650"]],[22,23,["H223"]],[23,25,["H2850"]],[25,27,["H4191"]],[27,28,["H1571"]]]},{"k":8284,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4397"]],[6,7,["H3541"]],[7,10,["H559"]],[10,11,["H413"]],[11,12,["H3097"]],[12,14,["H408","(H853)"]],[14,15,["H2088"]],[15,16,["H1697"]],[16,17,["H3415","H5869"]],[17,19,["H3588"]],[19,21,["H2719"]],[21,22,["H398"]],[22,23,["H2088"]],[23,27,["H2090"]],[27,30,["H4421"]],[30,32,["H2388"]],[32,33,["H413"]],[33,35,["H5892"]],[35,37,["H2040"]],[37,40,["H2388"]],[40,42,[]]]},{"k":8285,"v":[[0,4,["H802"]],[4,6,["H223"]],[6,7,["H8085"]],[7,8,["H3588"]],[8,9,["H223"]],[9,11,["H376"]],[11,13,["H4191"]],[13,15,["H5594"]],[15,16,["H5921"]],[16,18,["H1167"]]]},{"k":8286,"v":[[0,4,["H60"]],[4,6,["H5674"]],[6,7,["H1732"]],[7,8,["H7971"]],[8,10,["H622"]],[10,12,["H413"]],[12,14,["H1004"]],[14,17,["H1961"]],[17,19,["H802"]],[19,21,["H3205"]],[21,24,["H1121"]],[24,27,["H1697"]],[27,28,["H834"]],[28,29,["H1732"]],[29,31,["H6213"]],[31,32,["H3415","H5869"]],[32,34,["H3068"]]]},{"k":8287,"v":[[0,3,["H3068"]],[3,4,["H7971","(H853)"]],[4,5,["H5416"]],[5,6,["H413"]],[6,7,["H1732"]],[7,10,["H935"]],[10,11,["H413"]],[11,14,["H559"]],[14,18,["H1961"]],[18,19,["H8147"]],[19,20,["H376"]],[20,22,["H259"]],[22,23,["H5892"]],[23,25,["H259"]],[25,26,["H6223"]],[26,29,["H259"]],[29,30,["H7326"]]]},{"k":8288,"v":[[0,2,["H6223"]],[2,4,["H1961"]],[4,5,["H3966"]],[5,6,["H7235"]],[6,7,["H6629"]],[7,9,["H1241"]]]},{"k":8289,"v":[[0,3,["H7326"]],[3,6,["H369","H3605"]],[6,7,["H3588","H518"]],[7,8,["H259"]],[8,9,["H6996"]],[9,11,["H3535"]],[11,12,["H834"]],[12,14,["H1961"]],[14,15,["H7069"]],[15,18,["H2421"]],[18,22,["H1431"]],[22,23,["H3162"]],[23,24,["H5973"]],[24,27,["H5973"]],[27,29,["H1121"]],[29,32,["H398"]],[32,36,["H4480","H6595"]],[36,38,["H8354"]],[38,42,["H4480","H3563"]],[42,44,["H7901"]],[44,47,["H2436"]],[47,49,["H1961"]],[49,54,["H1323"]]]},{"k":8290,"v":[[0,3,["H935"]],[3,5,["H1982"]],[5,8,["H6223"]],[8,9,["H376"]],[9,12,["H2550"]],[12,14,["H3947"]],[14,18,["H4480","H6629"]],[18,23,["H4480","H1241"]],[23,25,["H6213"]],[25,29,["H732"]],[29,32,["H935"]],[32,36,["H3947"]],[36,38,["H7326"]],[38,39,["H376","(H853)"]],[39,40,["H3535"]],[40,42,["H6213"]],[42,46,["H376"]],[46,49,["H935"]],[49,50,["H413"]],[50,51,[]]]},{"k":8291,"v":[[0,2,["H1732"]],[2,3,["H639"]],[3,5,["H3966"]],[5,6,["H2734"]],[6,9,["H376"]],[9,12,["H559"]],[12,13,["H413"]],[13,14,["H5416"]],[14,17,["H3068"]],[17,18,["H2416"]],[18,20,["H376"]],[20,23,["H6213"]],[23,24,["H2063"]],[24,28,["H3588","H1121","H4194"]]]},{"k":8292,"v":[[0,4,["H7999"]],[4,6,["H3535"]],[6,7,["H706"]],[7,8,["H6118","H834"]],[8,10,["H6213","(H853)"]],[10,11,["H2088"]],[11,12,["H1697"]],[12,14,["H5921","H834"]],[14,17,["H3808"]],[17,18,["H2550"]]]},{"k":8293,"v":[[0,2,["H5416"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,6,["H859"]],[6,9,["H376"]],[9,10,["H3541"]],[10,11,["H559"]],[11,13,["H3068"]],[13,14,["H430"]],[14,16,["H3478"]],[16,17,["H595"]],[17,18,["H4886"]],[18,20,["H4428"]],[20,21,["H5921"]],[21,22,["H3478"]],[22,24,["H595"]],[24,25,["H5337"]],[25,30,["H4480","H3027"]],[30,32,["H7586"]]]},{"k":8294,"v":[[0,3,["H5414"]],[3,4,["(H853)"]],[4,6,["H113"]],[6,7,["H1004"]],[7,10,["H113"]],[10,11,["H802"]],[11,14,["H2436"]],[14,16,["H5414"]],[16,17,["(H853)"]],[17,19,["H1004"]],[19,21,["H3478"]],[21,24,["H3063"]],[24,26,["H518"]],[26,31,["H4592"]],[31,36,["H3254"]],[36,39,["H2007"]],[39,41,["H2007"]],[41,42,[]]]},{"k":8295,"v":[[0,1,["H4069"]],[1,4,["H959","(H853)"]],[4,6,["H1697"]],[6,9,["H3068"]],[9,11,["H6213"]],[11,12,["H7451"]],[12,15,["H5869"]],[15,18,["H5221","(H853)"]],[18,19,["H223"]],[19,21,["H2850"]],[21,24,["H2719"]],[24,27,["H3947"]],[27,29,["H802"]],[29,33,["H802"]],[33,36,["H2026"]],[36,40,["H2719"]],[40,43,["H1121"]],[43,45,["H5983"]]]},{"k":8296,"v":[[0,1,["H6258"]],[1,4,["H2719"]],[4,6,["H3808","H5704","H5769"]],[6,7,["H5493"]],[7,10,["H4480","H1004"]],[10,11,["H6118","H3588"]],[11,14,["H959"]],[14,18,["H3947","(H853)"]],[18,20,["H802"]],[20,22,["H223"]],[22,24,["H2850"]],[24,26,["H1961"]],[26,28,["H802"]]]},{"k":8297,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H2009"]],[5,9,["H6965"]],[9,10,["H7451"]],[10,11,["H5921"]],[11,17,["H4480","H1004"]],[17,21,["H3947","(H853)"]],[21,23,["H802"]],[23,26,["H5869"]],[26,28,["H5414"]],[28,32,["H7453"]],[32,36,["H7901"]],[36,37,["H5973"]],[37,39,["H802"]],[39,42,["H5869"]],[42,44,["H2063"]],[44,45,["H8121"]]]},{"k":8298,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,3,["H6213"]],[3,5,["H5643"]],[5,7,["H589"]],[7,9,["H6213","(H853)"]],[9,10,["H2088"]],[10,11,["H1697"]],[11,12,["H5048"]],[12,13,["H3605"]],[13,14,["H3478"]],[14,16,["H5048"]],[16,18,["H8121"]]]},{"k":8299,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H5416"]],[5,8,["H2398"]],[8,11,["H3068"]],[11,13,["H5416"]],[13,14,["H559"]],[14,15,["H413"]],[15,16,["H1732"]],[16,18,["H3068"]],[18,19,["H1571"]],[19,22,["H5674"]],[22,24,["H2403"]],[24,27,["H3808"]],[27,28,["H4191"]]]},{"k":8300,"v":[[0,1,["H657"]],[1,2,["H3588"]],[2,4,["H2088"]],[4,5,["H1697"]],[5,10,["H5006","(H853)"]],[10,13,["H341"]],[13,16,["H3068"]],[16,18,["H5006"]],[18,20,["H1121"]],[20,21,["H1571"]],[21,24,["H3209"]],[24,29,["H4191","H4191"]]]},{"k":8301,"v":[[0,2,["H5416"]],[2,3,["H1980"]],[3,4,["H413"]],[4,6,["H1004"]],[6,9,["H3068"]],[9,10,["H5062","(H853)"]],[10,12,["H3206"]],[12,13,["H834"]],[13,14,["H223"]],[14,15,["H802"]],[15,16,["H3205"]],[16,18,["H1732"]],[18,23,["H605"]]]},{"k":8302,"v":[[0,1,["H1732"]],[1,3,["H1245","(H853)"]],[3,4,["H430"]],[4,5,["H1157"]],[5,7,["H5288"]],[7,9,["H1732"]],[9,10,["H6684","H6685"]],[10,12,["H935"]],[12,15,["H7901"]],[15,16,["H3605"]],[16,17,["H3885"]],[17,20,["H776"]]]},{"k":8303,"v":[[0,3,["H2205"]],[3,6,["H1004"]],[6,7,["H6965"]],[7,10,["H5921"]],[10,15,["H6965"]],[15,16,["H4480"]],[16,18,["H776"]],[18,21,["H14"]],[21,22,["H3808"]],[22,23,["H3808"]],[23,26,["H1262"]],[26,27,["H3899"]],[27,28,["H854"]],[28,29,[]]]},{"k":8304,"v":[[0,5,["H1961"]],[5,8,["H7637"]],[8,9,["H3117"]],[9,12,["H3206"]],[12,13,["H4191"]],[13,16,["H5650"]],[16,18,["H1732"]],[18,19,["H3372"]],[19,21,["H5046"]],[21,23,["H3588"]],[23,25,["H3206"]],[25,27,["H4191"]],[27,28,["H3588"]],[28,30,["H559"]],[30,31,["H2009"]],[31,34,["H3206"]],[34,35,["H1961"]],[35,37,["H2416"]],[37,39,["H1696"]],[39,40,["H413"]],[40,45,["H3808"]],[45,46,["H8085"]],[46,49,["H6963"]],[49,50,["H349"]],[50,54,["H6213","H7451"]],[54,58,["H559","H413"]],[58,62,["H3206"]],[62,64,["H4191"]]]},{"k":8305,"v":[[0,3,["H1732"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,7,["H5650"]],[7,8,["H3907"]],[8,9,["H1732"]],[9,10,["H995"]],[10,11,["H3588"]],[11,13,["H3206"]],[13,15,["H4191"]],[15,17,["H1732"]],[17,18,["H559"]],[18,19,["H413"]],[19,21,["H5650"]],[21,24,["H3206"]],[24,25,["H4191"]],[25,28,["H559"]],[28,31,["H4191"]]]},{"k":8306,"v":[[0,2,["H1732"]],[2,3,["H6965"]],[3,6,["H4480","H776"]],[6,8,["H7364"]],[8,10,["H5480"]],[10,13,["H2498"]],[13,15,["H8071"]],[15,17,["H935"]],[17,20,["H1004"]],[20,23,["H3068"]],[23,25,["H7812"]],[25,28,["H935"]],[28,29,["H413"]],[29,32,["H1004"]],[32,36,["H7592"]],[36,38,["H7760"]],[38,39,["H3899"]],[39,45,["H398"]]]},{"k":8307,"v":[[0,2,["H559"]],[2,4,["H5650"]],[4,5,["H413"]],[5,7,["H4100"]],[7,8,["H1697"]],[8,10,["H2088"]],[10,11,["H834"]],[11,14,["H6213"]],[14,17,["H6684"]],[17,19,["H1058"]],[19,22,["H3206","H5668"]],[22,23,["H3206","H5668"]],[23,26,["H2416"]],[26,28,["H834"]],[28,30,["H3206"]],[30,32,["H4191"]],[32,35,["H6965"]],[35,37,["H398"]],[37,38,["H3899"]]]},{"k":8308,"v":[[0,3,["H559"]],[3,6,["H3206"]],[6,8,["H5750"]],[8,9,["H2416"]],[9,11,["H6684"]],[11,13,["H1058"]],[13,14,["H3588"]],[14,16,["H559"]],[16,17,["H4310"]],[17,19,["H3045"]],[19,21,["H3068"]],[21,24,["H2603"]],[24,29,["H3206"]],[29,31,["H2416"]]]},{"k":8309,"v":[[0,2,["H6258"]],[2,5,["H4191"]],[5,6,["H4100","H2088"]],[6,8,["H589"]],[8,9,["H6684"]],[9,10,["H3201"]],[10,14,["H7725"]],[14,15,["H5750"]],[15,16,["H589"]],[16,18,["H1980"]],[18,19,["H413"]],[19,22,["H1931"]],[22,24,["H3808"]],[24,25,["H7725"]],[25,26,["H413"]],[26,27,[]]]},{"k":8310,"v":[[0,2,["H1732"]],[2,3,["H5162","(H853)"]],[3,4,["H1339"]],[4,6,["H802"]],[6,8,["H935"]],[8,10,["H413"]],[10,13,["H7901"]],[13,14,["H5973"]],[14,18,["H3205"]],[18,20,["H1121"]],[20,23,["H7121","(H853)"]],[23,25,["H8034"]],[25,26,["H8010"]],[26,29,["H3068"]],[29,30,["H157"]],[30,31,[]]]},{"k":8311,"v":[[0,3,["H7971"]],[3,6,["H3027"]],[6,8,["H5416"]],[8,10,["H5030"]],[10,13,["H7121","(H853)"]],[13,15,["H8034"]],[15,16,["H3041"]],[16,17,["H5668"]],[17,20,["H3068"]]]},{"k":8312,"v":[[0,2,["H3097"]],[2,3,["H3898"]],[3,5,["H7237"]],[5,8,["H1121"]],[8,10,["H5983"]],[10,12,["H3920","(H853)"]],[12,14,["H4410"]],[14,15,["H5892"]]]},{"k":8313,"v":[[0,2,["H3097"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H1732"]],[6,8,["H559"]],[8,11,["H3898"]],[11,13,["H7237"]],[13,14,["H1571"]],[14,16,["H3920","(H853)"]],[16,18,["H5892"]],[18,20,["H4325"]]]},{"k":8314,"v":[[0,1,["H6258"]],[1,3,["H622","(H853)"]],[3,5,["H3499"]],[5,8,["H5971"]],[8,11,["H2583"]],[11,12,["H5921"]],[12,14,["H5892"]],[14,16,["H3920"]],[16,18,["H6435"]],[18,19,["H589"]],[19,20,["H3920","(H853)"]],[20,22,["H5892"]],[22,26,["H7121"]],[26,27,["H5921"]],[27,29,["H8034"]]]},{"k":8315,"v":[[0,2,["H1732"]],[2,3,["H622","(H853)"]],[3,4,["H3605"]],[4,6,["H5971"]],[6,9,["H1980"]],[9,11,["H7237"]],[11,13,["H3898"]],[13,17,["H3920"]],[17,18,[]]]},{"k":8316,"v":[[0,3,["H3947","(H853)"]],[3,5,["H4428"]],[5,6,["H5850"]],[6,8,["H4480","H5921"]],[8,10,["H7218"]],[10,12,["H4948"]],[12,16,["H3603"]],[16,18,["H2091"]],[18,21,["H3368"]],[21,22,["H68"]],[22,25,["H1961"]],[25,27,["H5921"]],[27,28,["H1732"]],[28,29,["H7218"]],[29,33,["H3318"]],[33,35,["H7998"]],[35,38,["H5892"]],[38,40,["H3966"]],[40,41,["H7235"]]]},{"k":8317,"v":[[0,4,["H3318"]],[4,6,["H5971"]],[6,7,["H834"]],[7,11,["H7760"]],[11,14,["H4050"]],[14,17,["H2757"]],[17,19,["H1270"]],[19,22,["H4037"]],[22,24,["H1270"]],[24,29,["H5674","(H853)"]],[29,31,["H4404"]],[31,33,["H3651"]],[33,34,["H6213"]],[34,37,["H3605"]],[37,39,["H5892"]],[39,42,["H1121"]],[42,44,["H5983"]],[44,46,["H1732"]],[46,48,["H3605"]],[48,50,["H5971"]],[50,51,["H7725"]],[51,53,["H3389"]]]},{"k":8318,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H3651"]],[7,9,["H53"]],[9,11,["H1121"]],[11,13,["H1732"]],[13,16,["H3303"]],[16,17,["H269"]],[17,19,["H8034"]],[19,21,["H8559"]],[21,23,["H550"]],[23,25,["H1121"]],[25,27,["H1732"]],[27,28,["H157"]],[28,29,[]]]},{"k":8319,"v":[[0,2,["H550"]],[2,5,["H6887"]],[5,9,["H2470"]],[9,10,["H5668"]],[10,12,["H269"]],[12,13,["H8559"]],[13,14,["H3588"]],[14,15,["H1931"]],[15,18,["H1330"]],[18,20,["H550"]],[20,21,["H5869"]],[21,23,["H6381"]],[23,27,["H6213"]],[27,29,["H3972"]],[29,31,[]]]},{"k":8320,"v":[[0,2,["H550"]],[2,5,["H7453"]],[5,7,["H8034"]],[7,9,["H3122"]],[9,11,["H1121"]],[11,13,["H8093"]],[13,14,["H1732"]],[14,15,["H251"]],[15,17,["H3122"]],[17,20,["H3966"]],[20,21,["H2450"]],[21,22,["H376"]]]},{"k":8321,"v":[[0,3,["H559"]],[3,6,["H4069"]],[6,8,["H859"]],[8,11,["H4428"]],[11,12,["H1121"]],[12,13,["H3602","H1800"]],[13,15,["H1242"]],[15,17,["H1242"]],[17,20,["H3808"]],[20,21,["H5046"]],[21,24,["H550"]],[24,25,["H559"]],[25,28,["H589"]],[28,29,["H157","(H853)"]],[29,30,["H8559"]],[30,32,["H251"]],[32,33,["H53"]],[33,34,["H269"]]]},{"k":8322,"v":[[0,2,["H3122"]],[2,3,["H559"]],[3,8,["H7901"]],[8,9,["H5921"]],[9,11,["H4904"]],[11,15,["H2470"]],[15,19,["H1"]],[19,20,["H935"]],[20,22,["H7200"]],[22,24,["H559"]],[24,25,["H413"]],[25,29,["H4994"]],[29,32,["H269"]],[32,33,["H8559"]],[33,34,["H935"]],[34,36,["H1262"]],[36,38,["H3899"]],[38,40,["H6213","(H853)"]],[40,42,["H1279"]],[42,45,["H5869"]],[45,46,["H4616","H834"]],[46,49,["H7200"]],[49,52,["H398"]],[52,56,["H4480","H3027"]]]},{"k":8323,"v":[[0,2,["H550"]],[2,4,["H7901"]],[4,8,["H2470"]],[8,12,["H4428"]],[12,14,["H935"]],[14,16,["H7200"]],[16,18,["H550"]],[18,19,["H559"]],[19,20,["H413"]],[20,22,["H4428"]],[22,25,["H4994"]],[25,27,["H8559"]],[27,29,["H269"]],[29,30,["H935"]],[30,32,["H3823"]],[32,35,["H8147"]],[35,37,["H3834"]],[37,40,["H5869"]],[40,44,["H1262"]],[44,47,["H4480","H3027"]]]},{"k":8324,"v":[[0,2,["H1732"]],[2,3,["H7971"]],[3,4,["H1004"]],[4,5,["H413"]],[5,6,["H8559"]],[6,7,["H559"]],[7,8,["H1980"]],[8,9,["H4994"]],[9,12,["H251"]],[12,13,["H550"]],[13,14,["H1004"]],[14,16,["H6213"]],[16,18,["H1279"]]]},{"k":8325,"v":[[0,2,["H8559"]],[2,3,["H1980"]],[3,6,["H251"]],[6,7,["H550"]],[7,8,["H1004"]],[8,10,["H1931"]],[10,13,["H7901"]],[13,16,["H3947","(H853)"]],[16,17,["H1217"]],[17,19,["H3888"]],[19,23,["H3823"]],[23,26,["H5869"]],[26,29,["H1310","(H853)"]],[29,31,["H3834"]]]},{"k":8326,"v":[[0,3,["H3947","(H853)"]],[3,5,["H4958"]],[5,9,["H3332"]],[9,10,["H6440"]],[10,14,["H3985"]],[14,16,["H398"]],[16,18,["H550"]],[18,19,["H559"]],[19,21,["H3318"]],[21,22,["H3605"]],[22,23,["H376"]],[23,24,["H4480","H5921"]],[24,29,["H3318"]],[29,30,["H3605"]],[30,31,["H376"]],[31,32,["H4480","H5921"]],[32,33,[]]]},{"k":8327,"v":[[0,2,["H550"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H8559"]],[5,6,["H935"]],[6,8,["H1279"]],[8,11,["H2315"]],[11,15,["H1262"]],[15,18,["H4480","H3027"]],[18,20,["H8559"]],[20,21,["H3947","(H853)"]],[21,23,["H3834"]],[23,24,["H834"]],[24,27,["H6213"]],[27,29,["H935"]],[29,33,["H2315"]],[33,35,["H550"]],[35,37,["H251"]]]},{"k":8328,"v":[[0,5,["H5066"]],[5,7,["H413"]],[7,10,["H398"]],[10,13,["H2388"]],[13,17,["H559"]],[17,20,["H935"]],[20,21,["H7901"]],[21,22,["H5973"]],[22,25,["H269"]]]},{"k":8329,"v":[[0,3,["H559"]],[3,5,["H408"]],[5,7,["H251"]],[7,9,["H408"]],[9,10,["H6031"]],[10,12,["H3588"]],[12,13,["H3808"]],[13,15,["H3651"]],[15,19,["H6213"]],[19,21,["H3478"]],[21,22,["H6213"]],[22,23,["H408"]],[23,24,["(H853)"]],[24,25,["H2063"]],[25,26,["H5039"]]]},{"k":8330,"v":[[0,2,["H589"]],[2,3,["H575"]],[3,6,["(H853)"]],[6,8,["H2781"]],[8,10,["H1980"]],[10,14,["H859"]],[14,17,["H1961"]],[17,19,["H259"]],[19,22,["H5036"]],[22,24,["H3478"]],[24,25,["H6258"]],[25,29,["H4994"]],[29,30,["H1696"]],[30,31,["H413"]],[31,33,["H4428"]],[33,34,["H3588"]],[34,37,["H3808"]],[37,38,["H4513"]],[38,40,["H4480"]],[40,41,[]]]},{"k":8331,"v":[[0,3,["H14"]],[3,4,["H3808"]],[4,5,["H8085"]],[5,8,["H6963"]],[8,11,["H2388"]],[11,14,["H6031"]],[14,18,["H7901"]],[18,19,[]]]},{"k":8332,"v":[[0,2,["H550"]],[2,3,["H8130"]],[3,5,["H8135","H1419","H3966"]],[5,7,["H3588"]],[7,9,["H8135"]],[9,10,["H834"]],[10,12,["H8130"]],[12,15,["H1419"]],[15,18,["H4480","H160"]],[18,19,["H834"]],[19,22,["H157"]],[22,25,["H550"]],[25,26,["H559"]],[26,29,["H6965"]],[29,31,["H1980"]]]},{"k":8333,"v":[[0,3,["H559"]],[3,8,["H408"]],[8,9,["H182"]],[9,10,["H2063"]],[10,11,["H7451"]],[11,15,["H7971"]],[15,17,["H1419"]],[17,20,["H4480","H312"]],[20,21,["H834"]],[21,23,["H6213"]],[23,24,["H5973"]],[24,28,["H14"]],[28,29,["H3808"]],[29,30,["H8085"]],[30,32,[]]]},{"k":8334,"v":[[0,3,["H7121","(H853)"]],[3,5,["H5288"]],[5,7,["H8334"]],[7,11,["H559"]],[11,12,["H7971"]],[12,13,["H4994","(H853)"]],[13,14,["H2063"]],[14,18,["H4480","H5921","H2351"]],[18,20,["H5274"]],[20,22,["H1817"]],[22,23,["H310"]],[23,24,[]]]},{"k":8335,"v":[[0,5,["H3801"]],[5,8,["H6446"]],[8,9,["H5921"]],[9,11,["H3588"]],[11,13,["H3651"]],[13,14,["H4598"]],[14,17,["H4428"]],[17,18,["H1323"]],[18,21,["H1330"]],[21,22,["H3847"]],[22,25,["H8334"]],[25,26,["H3318"]],[26,28,["H2351"]],[28,30,["H5274"]],[30,32,["H1817"]],[32,33,["H310"]],[33,34,[]]]},{"k":8336,"v":[[0,2,["H8559"]],[2,3,["H3947"]],[3,4,["H665"]],[4,5,["H5921"]],[5,7,["H7218"]],[7,9,["H7167"]],[9,11,["H3801"]],[11,14,["H6446"]],[14,15,["H834"]],[15,17,["H5921"]],[17,20,["H7760"]],[20,22,["H3027"]],[22,23,["H5921"]],[23,25,["H7218"]],[25,28,["H1980","H1980"]],[28,29,["H2199"]]]},{"k":8337,"v":[[0,2,["H53"]],[2,4,["H251"]],[4,5,["H559"]],[5,6,["H413"]],[6,9,["H550"]],[9,11,["H251"]],[11,12,["H1961"]],[12,13,["H5973"]],[13,16,["H2790"]],[16,17,["H6258"]],[17,21,["H269"]],[21,22,["H1931"]],[22,25,["H251"]],[25,26,["H7896","(H853)","H3820"]],[26,27,["H408"]],[27,28,["H2088"]],[28,29,["H1697"]],[29,31,["H8559"]],[31,32,["H3427"]],[32,33,["H8074"]],[33,36,["H251"]],[36,37,["H53"]],[37,38,["H1004"]]]},{"k":8338,"v":[[0,3,["H4428"]],[3,4,["H1732"]],[4,5,["H8085"]],[5,6,["(H853)"]],[6,7,["H3605"]],[7,8,["H428"]],[8,9,["H1697"]],[9,12,["H3966"]],[12,13,["H2734"]]]},{"k":8339,"v":[[0,2,["H53"]],[2,3,["H1696"]],[3,4,["H5973"]],[4,7,["H550"]],[7,8,["H3808"]],[8,9,["H2896"]],[9,10,["H5704"]],[10,11,["H4480","H7451"]],[11,12,["H3588"]],[12,13,["H53"]],[13,14,["H8130","(H853)"]],[14,15,["H550"]],[15,16,["H5921","H1697","H834"]],[16,19,["H6031","(H853)"]],[19,21,["H269"]],[21,22,["H8559"]]]},{"k":8340,"v":[[0,5,["H1961"]],[5,9,["H8141","H3117"]],[9,11,["H53"]],[11,12,["H1961"]],[12,13,["H1494"]],[13,15,["H1178"]],[15,16,["H834"]],[16,18,["H5973"]],[18,19,["H669"]],[19,21,["H53"]],[21,22,["H7121"]],[22,23,["H3605"]],[23,25,["H4428"]],[25,26,["H1121"]]]},{"k":8341,"v":[[0,2,["H53"]],[2,3,["H935"]],[3,4,["H413"]],[4,6,["H4428"]],[6,8,["H559"]],[8,9,["H2009"]],[9,10,["H4994"]],[10,12,["H5650"]],[12,14,["H1494"]],[14,17,["H4428"]],[17,20,["H4994"]],[20,23,["H5650"]],[23,24,["H1980"]],[24,25,["H5973"]],[25,27,["H5650"]]]},{"k":8342,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H53"]],[6,7,["H408"]],[7,9,["H1121"]],[9,12,["H408"]],[12,13,["H3605"]],[13,14,["H4994"]],[14,15,["H1980"]],[15,16,["H3808"]],[16,19,["H3513"]],[19,20,["H5921"]],[20,24,["H6555"]],[24,28,["H14"]],[28,29,["H3808"]],[29,30,["H1980"]],[30,32,["H1288"]],[32,33,[]]]},{"k":8343,"v":[[0,2,["H559"]],[2,3,["H53"]],[3,5,["H3808"]],[5,8,["H4994"]],[8,11,["H251"]],[11,12,["H550"]],[12,13,["H1980"]],[13,14,["H854"]],[14,18,["H4428"]],[18,19,["H559"]],[19,22,["H4100"]],[22,25,["H1980"]],[25,26,["H5973"]],[26,27,[]]]},{"k":8344,"v":[[0,2,["H53"]],[2,3,["H6555"]],[3,7,["(H853)"]],[7,8,["H550"]],[8,10,["H3605"]],[10,12,["H4428"]],[12,13,["H1121"]],[13,14,["H7971"]],[14,15,["H854"]],[15,16,[]]]},{"k":8345,"v":[[0,2,["H53"]],[2,4,["H6680","(H853)"]],[4,6,["H5288"]],[6,7,["H559"]],[7,8,["H7200"]],[8,10,["H4994"]],[10,12,["H550"]],[12,13,["H3820"]],[13,15,["H2895"]],[15,17,["H3196"]],[17,21,["H559"]],[21,22,["H413"]],[22,24,["H5221","(H853)"]],[24,25,["H550"]],[25,27,["H4191"]],[27,29,["H3372"]],[29,30,["H408"]],[30,32,["H3808"]],[32,33,["H595"]],[33,34,["H6680"]],[34,37,["H2388"]],[37,39,["H1961"]],[39,40,["H1121","H2428"]]]},{"k":8346,"v":[[0,3,["H5288"]],[3,5,["H53"]],[5,6,["H6213"]],[6,8,["H550"]],[8,9,["H834"]],[9,10,["H53"]],[10,12,["H6680"]],[12,14,["H3605"]],[14,16,["H4428"]],[16,17,["H1121"]],[17,18,["H6965"]],[18,21,["H376"]],[21,24,["H7392"]],[24,25,["H5921"]],[25,27,["H6505"]],[27,29,["H5127"]]]},{"k":8347,"v":[[0,5,["H1961"]],[5,7,["H1992"]],[7,11,["H1870"]],[11,13,["H8052"]],[13,14,["H935"]],[14,15,["H413"]],[15,16,["H1732"]],[16,17,["H559"]],[17,18,["H53"]],[18,20,["H5221","(H853)"]],[20,21,["H3605"]],[21,23,["H4428"]],[23,24,["H1121"]],[24,28,["H3808"]],[28,29,["H259"]],[29,30,["H4480"]],[30,32,["H3498"]]]},{"k":8348,"v":[[0,3,["H4428"]],[3,4,["H6965"]],[4,6,["H7167","(H853)"]],[6,8,["H899"]],[8,10,["H7901"]],[10,13,["H776"]],[13,15,["H3605"]],[15,17,["H5650"]],[17,19,["H5324"]],[19,22,["H899"]],[22,23,["H7167"]]]},{"k":8349,"v":[[0,2,["H3122"]],[2,4,["H1121"]],[4,6,["H8093"]],[6,7,["H1732"]],[7,8,["H251"]],[8,9,["H6030"]],[9,11,["H559"]],[11,13,["H408"]],[13,15,["H113"]],[15,16,["H559"]],[16,20,["H4191","(H853)"]],[20,21,["H3605"]],[21,24,["H5288"]],[24,26,["H4428"]],[26,27,["H1121"]],[27,28,["H3588"]],[28,29,["H550"]],[29,30,["H905"]],[30,32,["H4191"]],[32,33,["H3588"]],[33,34,["H5921"]],[34,36,["H6310"]],[36,38,["H53"]],[38,41,["H1961"]],[41,42,["H7760"]],[42,45,["H4480","H3117"]],[45,48,["H6031","(H853)"]],[48,50,["H269"]],[50,51,["H8559"]]]},{"k":8350,"v":[[0,1,["H6258"]],[1,4,["H408"]],[4,6,["H113"]],[6,8,["H4428"]],[8,9,["H7760"]],[9,11,["H1697"]],[11,12,["H413"]],[12,14,["H3820"]],[14,16,["H559"]],[16,18,["H3605"]],[18,20,["H4428"]],[20,21,["H1121"]],[21,23,["H4191"]],[23,24,["H3588","H518"]],[24,25,["H550"]],[25,26,["H905"]],[26,28,["H4191"]]]},{"k":8351,"v":[[0,2,["H53"]],[2,3,["H1272"]],[3,7,["H5288"]],[7,11,["H6822"]],[11,13,["H5375","(H853)"]],[13,15,["H5869"]],[15,17,["H7200"]],[17,19,["H2009"]],[19,21,["H1980"]],[21,22,["H7227"]],[22,23,["H5971"]],[23,26,["H4480","H1870"]],[26,30,["H4480","H6654","H2022"]],[30,31,["H310"]],[31,32,[]]]},{"k":8352,"v":[[0,2,["H3122"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,7,["H2009"]],[7,9,["H4428"]],[9,10,["H1121"]],[10,11,["H935"]],[11,14,["H5650"]],[14,15,["H1697"]],[15,16,["H3651"]],[16,18,["H1961"]]]},{"k":8353,"v":[[0,5,["H1961"]],[5,13,["H3615"]],[13,15,["H1696"]],[15,17,["H2009"]],[17,19,["H4428"]],[19,20,["H1121"]],[20,21,["H935"]],[21,24,["H5375"]],[24,26,["H6963"]],[26,28,["H1058"]],[28,31,["H4428"]],[31,32,["H1571"]],[32,34,["H3605"]],[34,36,["H5650"]],[36,37,["H1058"]],[37,38,["H3966"]],[38,39,["H1419"]]]},{"k":8354,"v":[[0,2,["H53"]],[2,3,["H1272"]],[3,5,["H1980"]],[5,6,["H413"]],[6,7,["H8526"]],[7,9,["H1121"]],[9,11,["H5989"]],[11,12,["H4428"]],[12,14,["H1650"]],[14,17,["H56"]],[17,18,["H5921"]],[18,20,["H1121"]],[20,21,["H3605"]],[21,22,["H3117"]]]},{"k":8355,"v":[[0,2,["H53"]],[2,3,["H1272"]],[3,5,["H1980"]],[5,7,["H1650"]],[7,9,["H1961"]],[9,10,["H8033"]],[10,11,["H7969"]],[11,12,["H8141"]]]},{"k":8356,"v":[[0,5,["H4428"]],[5,6,["H1732"]],[6,7,["H3615"]],[7,10,["H3318"]],[10,11,["H413"]],[11,12,["H53"]],[12,13,["H3588"]],[13,16,["H5162"]],[16,17,["H5921"]],[17,18,["H550"]],[18,19,["H3588"]],[19,22,["H4191"]]]},{"k":8357,"v":[[0,2,["H3097"]],[2,4,["H1121"]],[4,6,["H6870"]],[6,7,["H3045"]],[7,8,["H3588"]],[8,10,["H4428"]],[10,11,["H3820"]],[11,13,["H5921"]],[13,14,["H53"]]]},{"k":8358,"v":[[0,2,["H3097"]],[2,3,["H7971"]],[3,5,["H8620"]],[5,7,["H3947"]],[7,8,["H4480","H8033"]],[8,10,["H2450"]],[10,11,["H802"]],[11,13,["H559"]],[13,14,["H413"]],[14,18,["H4994"]],[18,24,["H56"]],[24,27,["H3847"]],[27,28,["H4994"]],[28,29,["H60"]],[29,30,["H899"]],[30,32,["H5480"]],[32,33,["H408"]],[33,36,["H8081"]],[36,38,["H1961"]],[38,41,["H802"]],[41,42,["H2088"]],[42,45,["H7227"]],[45,46,["H3117"]],[46,47,["H56"]],[47,48,["H5921"]],[48,50,["H4191"]]]},{"k":8359,"v":[[0,2,["H935"]],[2,3,["H413"]],[3,5,["H4428"]],[5,7,["H1696"]],[7,8,["H413"]],[8,9,["H2088"]],[9,10,["H1697"]],[10,11,["H413"]],[11,14,["H3097"]],[14,15,["H7760","(H853)"]],[15,17,["H1697"]],[17,20,["H6310"]]]},{"k":8360,"v":[[0,4,["H802"]],[4,6,["H8621"]],[6,7,["H559"]],[7,8,["H413"]],[8,10,["H4428"]],[10,12,["H5307"]],[12,13,["H5921"]],[13,15,["H639"]],[15,18,["H776"]],[18,21,["H7812"]],[21,23,["H559"]],[23,24,["H3467"]],[24,26,["H4428"]]]},{"k":8361,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H4100"]],[7,12,["H559"]],[12,13,["H589"]],[13,15,["H61"]],[15,17,["H490"]],[17,18,["H802"]],[18,21,["H376"]],[21,23,["H4191"]]]},{"k":8362,"v":[[0,3,["H8198"]],[3,5,["H8147"]],[5,6,["H1121"]],[6,9,["H8147"]],[9,11,["H5327"]],[11,14,["H7704"]],[14,18,["H369"]],[18,20,["H5337","H996"]],[20,24,["H259"]],[24,25,["H5221","(H853)"]],[25,27,["H259"]],[27,29,["H4191"]],[29,30,[]]]},{"k":8363,"v":[[0,2,["H2009"]],[2,4,["H3605"]],[4,5,["H4940"]],[5,7,["H6965"]],[7,8,["H5921"]],[8,10,["H8198"]],[10,13,["H559"]],[13,14,["H5414","(H853)"]],[14,17,["H5221"]],[17,19,["H251"]],[19,23,["H4191"]],[23,27,["H5315"]],[27,30,["H251"]],[30,31,["H834"]],[31,33,["H2026"]],[33,37,["H8045","(H853)"]],[37,39,["H3423"]],[39,40,["H1571"]],[40,45,["H3518","(H853)"]],[45,47,["H1513"]],[47,48,["H834"]],[48,50,["H7604"]],[50,53,["H1115"]],[53,54,["H7604"]],[54,57,["H376"]],[57,59,["H8034"]],[59,61,["H7611"]],[61,62,["H5921","H6440"]],[62,64,["H127"]]]},{"k":8364,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H802"]],[7,8,["H1980"]],[8,11,["H1004"]],[11,13,["H589"]],[13,16,["H6680"]],[16,17,["H5921"]],[17,18,[]]]},{"k":8365,"v":[[0,3,["H802"]],[3,5,["H8621"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H4428"]],[9,11,["H113"]],[11,13,["H4428"]],[13,15,["H5771"]],[15,17,["H5921"]],[17,20,["H5921"]],[20,22,["H1"]],[22,23,["H1004"]],[23,26,["H4428"]],[26,29,["H3678"]],[29,31,["H5355"]]]},{"k":8366,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H1696"]],[6,8,["H413"]],[8,10,["H935"]],[10,12,["H413"]],[12,17,["H3808"]],[17,18,["H5060"]],[18,20,["H3254"]],[20,21,["H5750"]]]},{"k":8367,"v":[[0,2,["H559"]],[2,6,["H4994"]],[6,9,["H4428"]],[9,10,["H2142","(H853)"]],[10,12,["H3068"]],[12,14,["H430"]],[14,18,["H3808"]],[18,21,["H1350"]],[21,23,["H1818"]],[23,25,["H7843"]],[25,27,["H7235"]],[27,30,["H8045","(H853)"]],[30,32,["H1121"]],[32,35,["H559"]],[35,38,["H3068"]],[38,39,["H2416"]],[39,42,["H518"]],[42,44,["H4480","H8185"]],[44,47,["H1121"]],[47,48,["H5307"]],[48,51,["H776"]]]},{"k":8368,"v":[[0,3,["H802"]],[3,4,["H559"]],[4,7,["H8198"]],[7,10,["H4994"]],[10,11,["H1696"]],[11,13,["H1697"]],[13,14,["H413"]],[14,16,["H113"]],[16,18,["H4428"]],[18,21,["H559"]],[21,23,["H1696"]]]},{"k":8369,"v":[[0,3,["H802"]],[3,4,["H559"]],[4,5,["H4100"]],[5,9,["H2803"]],[9,10,["H2063"]],[10,13,["H5921"]],[13,15,["H5971"]],[15,17,["H430"]],[17,20,["H4428"]],[20,22,["H4480","H1696"]],[22,23,["H2088"]],[23,24,["H1697"]],[24,29,["H818"]],[29,33,["H4428"]],[33,35,["H1115"]],[35,38,["H7725","(H853)"]],[38,40,["H5080"]]]},{"k":8370,"v":[[0,1,["H3588"]],[1,5,["H4191","H4191"]],[5,9,["H4325"]],[9,10,["H5064"]],[10,13,["H776"]],[13,14,["H834"]],[14,15,["H3808"]],[15,18,["H622"]],[18,20,["H3808"]],[20,22,["H430"]],[22,23,["H5375"]],[23,25,["H5315"]],[25,29,["H2803"]],[29,30,["H4284"]],[30,33,["H5080"]],[33,36,["H5080"]],[36,37,["H4480"]],[37,38,[]]]},{"k":8371,"v":[[0,1,["H6258"]],[1,3,["H834"]],[3,6,["H935"]],[6,8,["H1696"]],[8,9,["(H853)"]],[9,10,["H2088"]],[10,11,["H1697"]],[11,12,["H413"]],[12,14,["H113"]],[14,16,["H4428"]],[16,19,["H3588"]],[19,21,["H5971"]],[21,25,["H3372"]],[25,28,["H8198"]],[28,29,["H559"]],[29,32,["H4994"]],[32,33,["H1696"]],[33,34,["H413"]],[34,36,["H4428"]],[36,39,["H194"]],[39,42,["H4428"]],[42,44,["H6213","(H853)"]],[44,46,["H1697"]],[46,49,["H519"]]]},{"k":8372,"v":[[0,1,["H3588"]],[1,3,["H4428"]],[3,5,["H8085"]],[5,7,["H5337","(H853)"]],[7,9,["H519"]],[9,13,["H4480","H3709"]],[13,16,["H376"]],[16,19,["H8045"]],[19,23,["H1121"]],[23,24,["H3162"]],[24,28,["H4480","H5159"]],[28,30,["H430"]]]},{"k":8373,"v":[[0,3,["H8198"]],[3,4,["H559"]],[4,6,["H1697"]],[6,9,["H113"]],[9,11,["H4428"]],[11,13,["H4994"]],[13,14,["H1961"]],[14,15,["H4496"]],[15,16,["H3588"]],[16,19,["H4397"]],[19,21,["H430"]],[21,22,["H3651"]],[22,25,["H113"]],[25,27,["H4428"]],[27,29,["H8085"]],[29,30,["H2896"]],[30,32,["H7451"]],[32,35,["H3068"]],[35,37,["H430"]],[37,39,["H1961"]],[39,40,["H5973"]],[40,41,[]]]},{"k":8374,"v":[[0,3,["H4428"]],[3,4,["H6030"]],[4,6,["H559"]],[6,7,["H413"]],[7,9,["H802"]],[9,10,["H3582"]],[10,11,["H408"]],[11,12,["H4480"]],[12,16,["H4994"]],[16,18,["H1697"]],[18,19,["H834"]],[19,20,["H595"]],[20,22,["H7592"]],[22,26,["H802"]],[26,27,["H559"]],[27,30,["H113"]],[30,32,["H4428"]],[32,33,["H4994"]],[33,34,["H1696"]]]},{"k":8375,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,8,["H3027"]],[8,10,["H3097"]],[10,11,["H854"]],[11,14,["H3605"]],[14,15,["H2063"]],[15,18,["H802"]],[18,19,["H6030"]],[19,21,["H559"]],[21,24,["H5315"]],[24,25,["H2416"]],[25,27,["H113"]],[27,29,["H4428"]],[29,32,["H518","H786"]],[32,35,["H3231"]],[35,40,["H8041"]],[40,42,["H4480","H3605"]],[42,43,["H834"]],[43,45,["H113"]],[45,47,["H4428"]],[47,49,["H1696"]],[49,50,["H3588"]],[50,52,["H5650"]],[52,53,["H3097"]],[53,54,["H1931"]],[54,55,["H6680"]],[55,58,["H1931"]],[58,59,["H7760","(H853)"]],[59,60,["H3605"]],[60,61,["H428"]],[61,62,["H1697"]],[62,65,["H6310"]],[65,68,["H8198"]]]},{"k":8376,"v":[[0,1,["H5668"]],[1,3,["H5437","(H853)"]],[3,5,["H6440"]],[5,7,["H1697"]],[7,10,["H5650"]],[10,11,["H3097"]],[11,12,["H6213","(H853)"]],[12,13,["H2088"]],[13,14,["H1697"]],[14,17,["H113"]],[17,19,["H2450"]],[19,23,["H2451"]],[23,26,["H4397"]],[26,28,["H430"]],[28,30,["H3045","(H853)"]],[30,31,["H3605"]],[31,33,["H834"]],[33,37,["H776"]]]},{"k":8377,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3097"]],[6,7,["H2009"]],[7,8,["H4994"]],[8,11,["H6213","(H853)"]],[11,12,["H2088"]],[12,13,["H1697"]],[13,14,["H1980"]],[14,16,["H7725","(H853)"]],[16,19,["H5288"]],[19,20,["H53"]],[20,21,[]]]},{"k":8378,"v":[[0,2,["H3097"]],[2,3,["H5307"]],[3,6,["H776"]],[6,7,["H413"]],[7,9,["H6440"]],[9,12,["H7812"]],[12,14,["H1288","(H853)"]],[14,16,["H4428"]],[16,18,["H3097"]],[18,19,["H559"]],[19,21,["H3117"]],[21,23,["H5650"]],[23,24,["H3045"]],[24,25,["H3588"]],[25,28,["H4672"]],[28,29,["H2580"]],[29,32,["H5869"]],[32,34,["H113"]],[34,36,["H4428"]],[36,38,["H834"]],[38,40,["H4428"]],[40,42,["H6213","(H853)"]],[42,44,["H1697"]],[44,47,["H5650"]]]},{"k":8379,"v":[[0,2,["H3097"]],[2,3,["H6965"]],[3,5,["H1980"]],[5,7,["H1650"]],[7,9,["H935","(H853)"]],[9,10,["H53"]],[10,12,["H3389"]]]},{"k":8380,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H5437"]],[7,8,["H413"]],[8,11,["H1004"]],[11,15,["H3808"]],[15,16,["H7200"]],[16,18,["H6440"]],[18,20,["H53"]],[20,21,["H5437"]],[21,22,["H413"]],[22,25,["H1004"]],[25,27,["H7200"]],[27,28,["H3808"]],[28,30,["H4428"]],[30,31,["H6440"]]]},{"k":8381,"v":[[0,3,["H3605"]],[3,4,["H3478"]],[4,6,["H1961"]],[6,7,["H3808","H376"]],[7,11,["H3966"]],[11,12,["H1984"]],[12,14,["H53"]],[14,17,["H3303"]],[17,20,["H4480","H3709"]],[20,23,["H7272"]],[23,25,["H5704"]],[25,30,["H6936"]],[30,32,["H1961"]],[32,33,["H3808"]],[33,34,["H3971"]],[34,36,[]]]},{"k":8382,"v":[[0,4,["H1548","(H853)"]],[4,6,["H7218"]],[6,9,["H1961"]],[9,13,["H4480","H7093","H3117","H3117"]],[13,14,["H834"]],[14,16,["H1548"]],[16,18,["H3588"]],[18,22,["H3513"]],[22,23,["H5921"]],[23,27,["H1548"]],[27,30,["H8254","(H853)"]],[30,32,["H8181"]],[32,35,["H7218"]],[35,38,["H3967"]],[38,39,["H8255"]],[39,42,["H4428"]],[42,43,["H68"]]]},{"k":8383,"v":[[0,3,["H53"]],[3,6,["H3205"]],[6,7,["H7969"]],[7,8,["H1121"]],[8,10,["H259"]],[10,11,["H1323"]],[11,13,["H8034"]],[13,15,["H8559"]],[15,16,["H1931"]],[16,17,["H1961"]],[17,19,["H802"]],[19,22,["H3303"]],[22,23,["H4758"]]]},{"k":8384,"v":[[0,2,["H53"]],[2,3,["H3427"]],[3,6,["H8141","H3117"]],[6,8,["H3389"]],[8,10,["H7200"]],[10,11,["H3808"]],[11,13,["H4428"]],[13,14,["H6440"]]]},{"k":8385,"v":[[0,2,["H53"]],[2,3,["H7971"]],[3,4,["H413"]],[4,5,["H3097"]],[5,8,["H7971"]],[8,10,["H413"]],[10,12,["H4428"]],[12,15,["H14"]],[15,16,["H3808"]],[16,17,["H935"]],[17,18,["H413"]],[18,23,["H7971"]],[23,24,["H5750"]],[24,27,["H8145"]],[27,29,["H14"]],[29,30,["H3808"]],[30,31,["H935"]]]},{"k":8386,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H5650"]],[6,7,["H7200"]],[7,8,["H3097"]],[8,9,["H2513"]],[9,11,["H413"]],[11,12,["H3027"]],[12,16,["H8184"]],[16,17,["H8033"]],[17,18,["H1980"]],[18,20,["H3341"]],[20,23,["H784"]],[23,25,["H53"]],[25,26,["H5650"]],[26,27,["H3341","(H853)"]],[27,29,["H2513"]],[29,31,["H784"]]]},{"k":8387,"v":[[0,2,["H3097"]],[2,3,["H6965"]],[3,5,["H935"]],[5,6,["H413"]],[6,7,["H53"]],[7,10,["H1004"]],[10,12,["H559"]],[12,13,["H413"]],[13,15,["H4100"]],[15,18,["H5650"]],[18,19,["H3341","(H853)"]],[19,21,["H2513"]],[21,23,["H784"]]]},{"k":8388,"v":[[0,2,["H53"]],[2,3,["H559","H413"]],[3,4,["H3097"]],[4,5,["H2009"]],[5,7,["H7971"]],[7,8,["H413"]],[8,10,["H559"]],[10,11,["H935"]],[11,12,["H2008"]],[12,16,["H7971"]],[16,18,["H413"]],[18,20,["H4428"]],[20,22,["H559"]],[22,23,["H4100"]],[23,25,["H589"]],[25,26,["H935"]],[26,28,["H4480","H1650"]],[28,32,["H2896"]],[32,38,["H8033"]],[38,39,["H5750"]],[39,40,["H6258"]],[40,44,["H7200"]],[44,46,["H4428"]],[46,47,["H6440"]],[47,49,["H518"]],[49,51,["H3426"]],[51,53,["H5771"]],[53,58,["H4191"]],[58,59,[]]]},{"k":8389,"v":[[0,2,["H3097"]],[2,3,["H935"]],[3,4,["H413"]],[4,6,["H4428"]],[6,8,["H5046"]],[8,14,["H7121"]],[14,15,["H413"]],[15,16,["H53"]],[16,18,["H935"]],[18,19,["H413"]],[19,21,["H4428"]],[21,23,["H7812"]],[23,25,["H5921"]],[25,27,["H639"]],[27,30,["H776"]],[30,31,["H6440"]],[31,33,["H4428"]],[33,36,["H4428"]],[36,37,["H5401"]],[37,38,["H53"]]]},{"k":8390,"v":[[0,5,["H1961"]],[5,6,["H4480","H310"]],[6,7,["H3651"]],[7,9,["H53"]],[9,10,["H6213"]],[10,12,["H4818"]],[12,14,["H5483"]],[14,16,["H2572"]],[16,17,["H376"]],[17,19,["H7323"]],[19,20,["H6440"]],[20,21,[]]]},{"k":8391,"v":[[0,2,["H53"]],[2,5,["H7925"]],[5,7,["H5975"]],[7,8,["H5921","H3027"]],[8,10,["H1870"]],[10,13,["H8179"]],[13,16,["H1961"]],[16,20,["H3605"]],[20,21,["H376"]],[21,22,["H834"]],[22,23,["H1961"]],[23,25,["H7379"]],[25,26,["H935"]],[26,27,["H413"]],[27,29,["H4428"]],[29,31,["H4941"]],[31,33,["H53"]],[33,34,["H7121"]],[34,35,["H413"]],[35,38,["H559"]],[38,39,["H4480","H2088"]],[39,40,["H335"]],[40,41,["H5892"]],[41,43,["H859"]],[43,46,["H559"]],[46,48,["H5650"]],[48,51,["H4480","H259"]],[51,54,["H7626"]],[54,56,["H3478"]]]},{"k":8392,"v":[[0,2,["H53"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H7200"]],[6,8,["H1697"]],[8,10,["H2896"]],[10,12,["H5228"]],[12,16,["H369"]],[16,21,["H4428"]],[21,23,["H8085"]],[23,24,[]]]},{"k":8393,"v":[[0,1,["H53"]],[1,2,["H559"]],[2,5,["H4310"]],[5,8,["H7760"]],[8,9,["H8199"]],[9,12,["H776"]],[12,14,["H3605"]],[14,15,["H376"]],[15,16,["H834"]],[16,17,["H1961"]],[17,19,["H7379"]],[19,21,["H4941"]],[21,23,["H935"]],[23,24,["H5921"]],[24,31,["H6663"]]]},{"k":8394,"v":[[0,3,["H1961"]],[3,8,["H376"]],[8,10,["H7126"]],[10,16,["H7812"]],[16,19,["H7971","(H853)"]],[19,21,["H3027"]],[21,23,["H2388"]],[23,26,["H5401"]],[26,27,[]]]},{"k":8395,"v":[[0,3,["H2088"]],[3,4,["H1697"]],[4,5,["H6213"]],[5,6,["H53"]],[6,8,["H3605"]],[8,9,["H3478"]],[9,10,["H834"]],[10,11,["H935"]],[11,12,["H413"]],[12,14,["H4428"]],[14,16,["H4941"]],[16,18,["H53"]],[18,19,["H1589","(H853)"]],[19,21,["H3820"]],[21,24,["H376"]],[24,26,["H3478"]]]},{"k":8396,"v":[[0,5,["H1961"]],[5,6,["H4480","H7093"]],[6,7,["H705"]],[7,8,["H8141"]],[8,10,["H53"]],[10,11,["H559"]],[11,12,["H413"]],[12,14,["H4428"]],[14,17,["H4994"]],[17,20,["H1980"]],[20,22,["H7999","(H853)"]],[22,24,["H5088"]],[24,25,["H834"]],[25,28,["H5087"]],[28,31,["H3068"]],[31,33,["H2275"]]]},{"k":8397,"v":[[0,1,["H3588"]],[1,3,["H5650"]],[3,4,["H5087"]],[4,6,["H5088"]],[6,9,["H3427"]],[9,11,["H1650"]],[11,13,["H758"]],[13,14,["H559"]],[14,15,["H518"]],[15,17,["H3068"]],[17,21,["H7725"]],[21,24,["H3389"]],[24,28,["H5647","(H853)"]],[28,30,["H3068"]]]},{"k":8398,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H1980"]],[7,9,["H7965"]],[9,12,["H6965"]],[12,14,["H1980"]],[14,16,["H2275"]]]},{"k":8399,"v":[[0,2,["H53"]],[2,3,["H7971"]],[3,4,["H7270"]],[4,6,["H3605"]],[6,8,["H7626"]],[8,10,["H3478"]],[10,11,["H559"]],[11,16,["H8085","(H853)"]],[16,18,["H6963"]],[18,21,["H7782"]],[21,25,["H559"]],[25,26,["H53"]],[26,27,["H4427"]],[27,29,["H2275"]]]},{"k":8400,"v":[[0,2,["H854"]],[2,3,["H53"]],[3,4,["H1980"]],[4,6,["H3967"]],[6,7,["H376"]],[7,10,["H4480","H3389"]],[10,13,["H7121"]],[13,16,["H1980"]],[16,19,["H8537"]],[19,22,["H3045"]],[22,23,["H3808"]],[23,24,["H3605"]],[24,25,["H1697"]]]},{"k":8401,"v":[[0,2,["H53"]],[2,3,["H7971"]],[3,4,["(H853)"]],[4,5,["H302"]],[5,7,["H1526"]],[7,8,["H1732"]],[8,9,["H3289"]],[9,12,["H5892"]],[12,15,["H4480","H1542"]],[15,18,["H2076","(H853)"]],[18,19,["H2077"]],[19,22,["H7195"]],[22,23,["H1961"]],[23,24,["H533"]],[24,27,["H5971"]],[27,28,["H7227"]],[28,29,["H1980"]],[29,30,["H854"]],[30,31,["H53"]]]},{"k":8402,"v":[[0,3,["H935"]],[3,5,["H5046"]],[5,6,["H413"]],[6,7,["H1732"]],[7,8,["H559"]],[8,10,["H3820"]],[10,13,["H376"]],[13,15,["H3478"]],[15,16,["H1961"]],[16,17,["H310"]],[17,18,["H53"]]]},{"k":8403,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H3605"]],[5,7,["H5650"]],[7,8,["H834"]],[8,10,["H854"]],[10,13,["H3389"]],[13,14,["H6965"]],[14,18,["H1272"]],[18,19,["H3588"]],[19,21,["H1961"]],[21,22,["H3808"]],[22,24,["H6413"]],[24,25,["H6440"]],[25,26,["H53"]],[26,28,["H4116"]],[28,30,["H1980"]],[30,31,["H6435"]],[31,33,["H5381"]],[33,35,["H4116"]],[35,37,["H5080","(H853)"]],[37,38,["H7451"]],[38,39,["H5921"]],[39,42,["H5221"]],[42,44,["H5892"]],[44,47,["H6310"]],[47,50,["H2719"]]]},{"k":8404,"v":[[0,3,["H4428"]],[3,4,["H5650"]],[4,5,["H559"]],[5,6,["H413"]],[6,8,["H4428"]],[8,9,["H2009"]],[9,11,["H5650"]],[11,16,["H834","H3605"]],[16,18,["H113"]],[18,20,["H4428"]],[20,22,["H977"]]]},{"k":8405,"v":[[0,3,["H4428"]],[3,5,["H3318"]],[5,7,["H3605"]],[7,9,["H1004"]],[9,10,["H7272"]],[10,14,["H4428"]],[14,15,["H5800","(H853)"]],[15,16,["H6235"]],[16,17,["H802"]],[17,20,["H6370"]],[20,22,["H8104"]],[22,24,["H1004"]]]},{"k":8406,"v":[[0,3,["H4428"]],[3,5,["H3318"]],[5,7,["H3605"]],[7,9,["H5971"]],[9,10,["H7272"]],[10,13,["H5975"]],[13,16,["H1004"]],[16,20,["H4801"]]]},{"k":8407,"v":[[0,2,["H3605"]],[2,4,["H5650"]],[4,6,["H5674"]],[6,7,["H5921","H3027"]],[7,10,["H3605"]],[10,12,["H3774"]],[12,14,["H3605"]],[14,16,["H6432"]],[16,18,["H3605"]],[18,20,["H1663"]],[20,21,["H8337"]],[21,22,["H3967"]],[22,23,["H376"]],[23,24,["H834"]],[24,25,["H935"]],[25,26,["H7272"]],[26,29,["H4480","H1661"]],[29,31,["H5674"]],[31,32,["H5921","H6440"]],[32,34,["H4428"]]]},{"k":8408,"v":[[0,2,["H559"]],[2,4,["H4428"]],[4,5,["H413"]],[5,6,["H863"]],[6,8,["H1663"]],[8,9,["H4100"]],[9,10,["H1980"]],[10,11,["H859"]],[11,12,["H1571"]],[12,13,["H854"]],[13,15,["H7725"]],[15,18,["H4725"]],[18,20,["H3427"]],[20,21,["H5973"]],[21,23,["H4428"]],[23,24,["H3588"]],[24,25,["H859"]],[25,28,["H5237"]],[28,30,["H1571"]],[30,32,["H1540"]]]},{"k":8409,"v":[[0,3,["H935"]],[3,5,["H8543"]],[5,9,["H3117"]],[9,13,["H1980"]],[13,15,["H5128"]],[15,16,["H5973"]],[16,19,["H589"]],[19,20,["H1980"]],[20,21,["H5921","H834"]],[21,22,["H589"]],[22,23,["H1980"]],[23,24,["H7725"]],[24,28,["H7725","(H853)"]],[28,30,["H251"]],[30,31,["H2617"]],[31,33,["H571"]],[33,35,["H5973"]],[35,36,[]]]},{"k":8410,"v":[[0,2,["H863"]],[2,3,["H6030","(H853)"]],[3,5,["H4428"]],[5,7,["H559"]],[7,10,["H3068"]],[10,11,["H2416"]],[11,15,["H113"]],[15,17,["H4428"]],[17,18,["H2416"]],[18,19,["H3588","H518"]],[19,21,["H834"]],[21,22,["H4725"]],[22,24,["H113"]],[24,26,["H4428"]],[26,28,["H1961"]],[28,29,["H518"]],[29,31,["H4194"]],[31,32,["H518"]],[32,33,["H2416"]],[33,34,["H3588"]],[34,35,["H8033"]],[35,39,["H5650"]],[39,40,["H1961"]]]},{"k":8411,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H863"]],[5,6,["H1980"]],[6,9,["H5674"]],[9,11,["H863"]],[11,13,["H1663"]],[13,15,["H5674"]],[15,17,["H3605"]],[17,19,["H376"]],[19,21,["H3605"]],[21,24,["H2945"]],[24,25,["H834"]],[25,27,["H854"]],[27,28,[]]]},{"k":8412,"v":[[0,2,["H3605"]],[2,4,["H776"]],[4,5,["H1058"]],[5,8,["H1419"]],[8,9,["H6963"]],[9,11,["H3605"]],[11,13,["H5971"]],[13,15,["H5674"]],[15,17,["H4428"]],[17,21,["H5674"]],[21,23,["H5158"]],[23,24,["H6939"]],[24,26,["H3605"]],[26,28,["H5971"]],[28,30,["H5674"]],[30,31,["H5921","H6440"]],[31,33,["H1870"]],[33,34,["(H853)"]],[34,36,["H4057"]]]},{"k":8413,"v":[[0,2,["H2009"]],[2,3,["H6659"]],[3,4,["H1571"]],[4,6,["H3605"]],[6,8,["H3881"]],[8,10,["H854"]],[10,12,["H5375","(H853)"]],[12,14,["H727"]],[14,17,["H1285"]],[17,19,["H430"]],[19,23,["H3332","(H853)"]],[23,25,["H727"]],[25,27,["H430"]],[27,29,["H54"]],[29,31,["H5927"]],[31,32,["H5704"]],[32,33,["H3605"]],[33,35,["H5971"]],[35,37,["H8552"]],[37,38,["H5674"]],[38,40,["H4480"]],[40,42,["H5892"]]]},{"k":8414,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H6659"]],[6,8,["H7725","(H853)"]],[8,10,["H727"]],[10,12,["H430"]],[12,15,["H5892"]],[15,16,["H518"]],[16,19,["H4672"]],[19,20,["H2580"]],[20,23,["H5869"]],[23,26,["H3068"]],[26,31,["H7725"]],[31,33,["H7200"]],[33,39,["H5116"]]]},{"k":8415,"v":[[0,2,["H518"]],[2,4,["H3541"]],[4,5,["H559"]],[5,8,["H3808"]],[8,9,["H2654"]],[9,12,["H2009"]],[12,18,["H6213"]],[18,21,["H834"]],[21,22,["H5869"]],[22,23,["H2896"]],[23,25,[]]]},{"k":8416,"v":[[0,2,["H4428"]],[2,3,["H559"]],[3,5,["H413"]],[5,6,["H6659"]],[6,8,["H3548"]],[8,11,["H859"]],[11,13,["H7200"]],[13,14,["H7725"]],[14,17,["H5892"]],[17,19,["H7965"]],[19,22,["H8147"]],[22,23,["H1121"]],[23,24,["H854"]],[24,26,["H290"]],[26,28,["H1121"]],[28,30,["H3083"]],[30,32,["H1121"]],[32,34,["H54"]]]},{"k":8417,"v":[[0,1,["H7200"]],[1,2,["H595"]],[2,4,["H4102"]],[4,7,["H6160"]],[7,10,["H4057"]],[10,11,["H5704"]],[11,13,["H935"]],[13,14,["H1697"]],[14,15,["H4480","H5973"]],[15,18,["H5046"]],[18,19,[]]]},{"k":8418,"v":[[0,1,["H6659"]],[1,4,["H54"]],[4,5,["H7725","(H853)"]],[5,7,["H727"]],[7,9,["H430"]],[9,12,["H3389"]],[12,15,["H3427"]],[15,16,["H8033"]]]},{"k":8419,"v":[[0,2,["H1732"]],[2,4,["H5927"]],[4,7,["H4608"]],[7,10,["H2132"]],[10,12,["H1058"]],[12,16,["H5927"]],[16,20,["H7218"]],[20,21,["H2645"]],[21,23,["H1931"]],[23,24,["H1980"]],[24,25,["H3182"]],[25,27,["H3605"]],[27,29,["H5971"]],[29,30,["H834"]],[30,32,["H854"]],[32,34,["H2645"]],[34,36,["H376"]],[36,38,["H7218"]],[38,42,["H5927"]],[42,43,["H1058"]],[43,47,["H5927"]]]},{"k":8420,"v":[[0,3,["H5046"]],[3,4,["H1732"]],[4,5,["H559"]],[5,6,["H302"]],[6,10,["H7194"]],[10,11,["H5973"]],[11,12,["H53"]],[12,14,["H1732"]],[14,15,["H559"]],[15,17,["H3068"]],[17,20,["H4994"]],[20,21,["(H853)"]],[21,23,["H6098"]],[23,25,["H302"]],[25,27,["H5528"]]]},{"k":8421,"v":[[0,5,["H1961"]],[5,8,["H1732"]],[8,10,["H935"]],[10,11,["H5704"]],[11,13,["H7218"]],[13,17,["H834"]],[17,19,["H7812"]],[19,20,["H430"]],[20,21,["H2009"]],[21,22,["H2365"]],[22,24,["H757"]],[24,27,["H7125"]],[27,31,["H3801"]],[31,32,["H7167"]],[32,34,["H127"]],[34,35,["H5921"]],[35,37,["H7218"]]]},{"k":8422,"v":[[0,3,["H1732"]],[3,4,["H559"]],[4,5,["H518"]],[5,8,["H5674"]],[8,9,["H854"]],[9,14,["H1961"]],[14,16,["H4853"]],[16,17,["H5921"]],[17,18,[]]]},{"k":8423,"v":[[0,2,["H518"]],[2,4,["H7725"]],[4,7,["H5892"]],[7,9,["H559"]],[9,11,["H53"]],[11,12,["H589"]],[12,14,["H1961"]],[14,16,["H5650"]],[16,18,["H4428"]],[18,20,["H589"]],[20,24,["H1"]],[24,25,["H5650"]],[25,26,["H4480","H227"]],[26,29,["H589"]],[29,30,["H6258"]],[30,34,["H5650"]],[34,40,["H6565","(H853)"]],[40,42,["H6098"]],[42,44,["H302"]]]},{"k":8424,"v":[[0,4,["H3808"]],[4,5,["H8033"]],[5,6,["H5973"]],[6,8,["H6659"]],[8,10,["H54"]],[10,12,["H3548"]],[12,16,["H1961"]],[16,18,["H3605"]],[18,19,["H1697"]],[19,20,["H834"]],[20,23,["H8085"]],[23,28,["H4480","H1004","H4428"]],[28,31,["H5046"]],[31,34,["H6659"]],[34,36,["H54"]],[36,38,["H3548"]]]},{"k":8425,"v":[[0,1,["H2009"]],[1,4,["H8033"]],[4,5,["H5973"]],[5,8,["H8147"]],[8,9,["H1121"]],[9,10,["H290"]],[10,11,["H6659"]],[11,14,["H3083"]],[14,15,["H54"]],[15,18,["H3027"]],[18,22,["H7971"]],[22,23,["H413"]],[23,25,["H3605"]],[25,26,["H1697"]],[26,27,["H834"]],[27,30,["H8085"]]]},{"k":8426,"v":[[0,2,["H2365"]],[2,3,["H1732"]],[3,4,["H7463"]],[4,5,["H935"]],[5,8,["H5892"]],[8,10,["H53"]],[10,11,["H935"]],[11,13,["H3389"]]]},{"k":8427,"v":[[0,3,["H1732"]],[3,6,["H4592"]],[6,7,["H5674"]],[7,9,["H4480","H7218"]],[9,13,["H2009"]],[13,14,["H6717"]],[14,16,["H5288"]],[16,18,["H4648"]],[18,19,["H7125"]],[19,23,["H6776"]],[23,25,["H2543"]],[25,26,["H2280"]],[26,28,["H5921"]],[28,31,["H3967"]],[31,34,["H3899"]],[34,37,["H3967"]],[37,40,["H6778"]],[40,43,["H3967"]],[43,46,["H7019"]],[46,49,["H5035"]],[49,51,["H3196"]]]},{"k":8428,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H6717"]],[6,7,["H4100"]],[7,11,["H428"]],[11,13,["H6717"]],[13,14,["H559"]],[14,16,["H2543"]],[16,20,["H4428"]],[20,21,["H1004"]],[21,24,["H7392"]],[24,27,["H3899"]],[27,30,["H7019"]],[30,34,["H5288"]],[34,36,["H398"]],[36,39,["H3196"]],[39,44,["H3287"]],[44,47,["H4057"]],[47,49,["H8354"]]]},{"k":8429,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H346"]],[6,9,["H113"]],[9,10,["H1121"]],[10,12,["H6717"]],[12,13,["H559"]],[13,14,["H413"]],[14,16,["H4428"]],[16,17,["H2009"]],[17,19,["H3427"]],[19,21,["H3389"]],[21,22,["H3588"]],[22,24,["H559"]],[24,26,["H3117"]],[26,29,["H1004"]],[29,31,["H3478"]],[31,32,["H7725"]],[32,33,["(H853)"]],[33,35,["H4468"]],[35,38,["H1"]]]},{"k":8430,"v":[[0,2,["H559"]],[2,4,["H4428"]],[4,6,["H6717"]],[6,7,["H2009"]],[7,10,["H3605"]],[10,11,["H834"]],[11,14,["H4648"]],[14,16,["H6717"]],[16,17,["H559"]],[17,20,["H7812"]],[20,25,["H4672"]],[25,26,["H2580"]],[26,29,["H5869"]],[29,31,["H113"]],[31,33,["H4428"]]]},{"k":8431,"v":[[0,3,["H4428"]],[3,4,["H1732"]],[4,5,["H935"]],[5,6,["H5704"]],[6,7,["H980"]],[7,8,["H2009"]],[8,9,["H4480","H8033"]],[9,11,["H3318"]],[11,13,["H376"]],[13,16,["H4480","H4940"]],[16,19,["H1004"]],[19,21,["H7586"]],[21,23,["H8034"]],[23,25,["H8096"]],[25,27,["H1121"]],[27,29,["H1617"]],[29,32,["H3318"]],[32,34,["H7043"]],[34,38,["H3318"]]]},{"k":8432,"v":[[0,3,["H5619"]],[3,4,["H68"]],[4,5,["(H853)"]],[5,6,["H1732"]],[6,9,["H3605"]],[9,11,["H5650"]],[11,13,["H4428"]],[13,14,["H1732"]],[14,16,["H3605"]],[16,18,["H5971"]],[18,20,["H3605"]],[20,23,["H1368"]],[23,28,["H4480","H3225"]],[28,32,["H4480","H8040"]]]},{"k":8433,"v":[[0,2,["H3541"]],[2,3,["H559"]],[3,4,["H8096"]],[4,7,["H7043"]],[7,9,["H3318"]],[9,11,["H3318"]],[11,13,["H1818"]],[13,14,["H376"]],[14,17,["H376"]],[17,19,["H1100"]]]},{"k":8434,"v":[[0,2,["H3068"]],[2,4,["H7725"]],[4,5,["H5921"]],[5,7,["H3605"]],[7,9,["H1818"]],[9,12,["H1004"]],[12,14,["H7586"]],[14,16,["H834"]],[16,17,["H8478"]],[17,20,["H4427"]],[20,23,["H3068"]],[23,25,["H5414","(H853)"]],[25,27,["H4410"]],[27,30,["H3027"]],[30,32,["H53"]],[32,34,["H1121"]],[34,36,["H2009"]],[36,42,["H7451"]],[42,43,["H3588"]],[43,44,["H859"]],[44,47,["H1818"]],[47,48,["H376"]]]},{"k":8435,"v":[[0,2,["H559"]],[2,3,["H52"]],[3,5,["H1121"]],[5,7,["H6870"]],[7,8,["H413"]],[8,10,["H4428"]],[10,11,["H4100"]],[11,13,["H2088"]],[13,14,["H4191"]],[14,15,["H3611"]],[15,16,["H7043","(H853)"]],[16,18,["H113"]],[18,20,["H4428"]],[20,24,["H5674"]],[24,27,["H4994"]],[27,30,["H5493","(H853)"]],[30,32,["H7218"]]]},{"k":8436,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H4100"]],[5,13,["H1121"]],[13,15,["H6870"]],[15,16,["H3541"]],[16,19,["H7043"]],[19,20,["H3588"]],[20,22,["H3068"]],[22,24,["H559"]],[24,27,["H7043","(H853)"]],[27,28,["H1732"]],[28,29,["H4310"]],[29,32,["H559"]],[32,33,["H4069"]],[33,36,["H6213"]],[36,37,["H3651"]]]},{"k":8437,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H52"]],[5,7,["H413"]],[7,8,["H3605"]],[8,10,["H5650"]],[10,11,["H2009"]],[11,13,["H1121"]],[13,14,["H834"]],[14,16,["H3318"]],[16,19,["H4480","H4578"]],[19,20,["H1245","(H853)"]],[20,22,["H5315"]],[22,25,["H637","H3588"]],[25,26,["H6258"]],[26,29,["H1145"]],[29,34,["H5117"]],[34,38,["H7043"]],[38,39,["H3588"]],[39,41,["H3068"]],[41,43,["H559"]],[43,44,[]]]},{"k":8438,"v":[[0,3,["H194"]],[3,6,["H3068"]],[6,8,["H7200"]],[8,11,["H6040"]],[11,15,["H3068"]],[15,17,["H7725"]],[17,19,["H2896"]],[19,20,["H8478"]],[20,22,["H7045"]],[22,23,["H2088"]],[23,24,["H3117"]]]},{"k":8439,"v":[[0,3,["H1732"]],[3,6,["H376"]],[6,7,["H1980"]],[7,10,["H1870"]],[10,11,["H8096"]],[11,13,["H1980"]],[13,16,["H2022"]],[16,17,["H6763"]],[17,19,["H5980"]],[19,22,["H7043"]],[22,25,["H1980"]],[25,27,["H5619"]],[27,28,["H68"]],[28,29,["H5980"]],[29,32,["H6080"]],[32,33,["H6083"]]]},{"k":8440,"v":[[0,3,["H4428"]],[3,5,["H3605"]],[5,7,["H5971"]],[7,8,["H834"]],[8,10,["H854"]],[10,12,["H935"]],[12,13,["H5889"]],[13,16,["H5314"]],[16,17,["H8033"]]]},{"k":8441,"v":[[0,2,["H53"]],[2,4,["H3605"]],[4,6,["H5971"]],[6,8,["H376"]],[8,10,["H3478"]],[10,11,["H935"]],[11,13,["H3389"]],[13,15,["H302"]],[15,16,["H854"]],[16,17,[]]]},{"k":8442,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H2365"]],[7,9,["H757"]],[9,10,["H1732"]],[10,11,["H7463"]],[11,13,["H935"]],[13,14,["H413"]],[14,15,["H53"]],[15,17,["H2365"]],[17,18,["H559"]],[18,19,["H413"]],[19,20,["H53"]],[20,22,["H2421"]],[22,24,["H4428"]],[24,26,["H2421"]],[26,28,["H4428"]]]},{"k":8443,"v":[[0,2,["H53"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H2365"]],[5,7,["H2088"]],[7,9,["H2617"]],[9,10,["(H853)"]],[10,12,["H7453"]],[12,13,["H4100"]],[13,14,["H1980"]],[14,16,["H3808"]],[16,17,["H854"]],[17,19,["H7453"]]]},{"k":8444,"v":[[0,2,["H2365"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H53"]],[5,6,["H3808"]],[6,7,["H3588"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H2088"]],[12,13,["H5971"]],[13,15,["H3605"]],[15,17,["H376"]],[17,19,["H3478"]],[19,20,["H977"]],[20,24,["H1961"]],[24,26,["H854"]],[26,30,["H3427"]]]},{"k":8445,"v":[[0,2,["H8145"]],[2,3,["H4310"]],[3,5,["H589"]],[5,6,["H5647"]],[6,9,["H3808"]],[9,13,["H6440"]],[13,16,["H1121"]],[16,17,["H834"]],[17,20,["H5647"]],[20,23,["H1"]],[23,24,["H6440"]],[24,25,["H3651"]],[25,28,["H1961"]],[28,31,["H6440"]]]},{"k":8446,"v":[[0,2,["H559"]],[2,3,["H53"]],[3,4,["H413"]],[4,5,["H302"]],[5,6,["H3051"]],[6,7,["H6098"]],[7,10,["H4100"]],[10,13,["H6213"]]]},{"k":8447,"v":[[0,2,["H302"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H53"]],[5,6,["H935"]],[6,8,["H413"]],[8,10,["H1"]],[10,11,["H6370"]],[11,12,["H834"]],[12,15,["H5117"]],[15,17,["H8104"]],[17,19,["H1004"]],[19,21,["H3605"]],[21,22,["H3478"]],[22,24,["H8085"]],[24,25,["H3588"]],[25,28,["H887"]],[28,29,["H854"]],[29,31,["H1"]],[31,35,["H3027"]],[35,37,["H3605"]],[37,38,["H834"]],[38,40,["H854"]],[40,43,["H2388"]]]},{"k":8448,"v":[[0,3,["H5186"]],[3,4,["H53"]],[4,6,["H168"]],[6,7,["H5921"]],[7,9,["H1406"]],[9,14,["H53"]],[14,15,["H935"]],[15,17,["H413"]],[17,19,["H1"]],[19,20,["H6370"]],[20,23,["H5869"]],[23,25,["H3605"]],[25,26,["H3478"]]]},{"k":8449,"v":[[0,3,["H6098"]],[3,5,["H302"]],[5,6,["H834"]],[6,8,["H3289"]],[8,10,["H1992"]],[10,11,["H3117"]],[11,13,["H834"]],[13,16,["H376"]],[16,18,["H7592"]],[18,21,["H1697"]],[21,23,["H430"]],[23,24,["H3651"]],[24,26,["H3605"]],[26,28,["H6098"]],[28,30,["H302"]],[30,31,["H1571"]],[31,33,["H1732"]],[33,34,["H1571"]],[34,36,["H53"]]]},{"k":8450,"v":[[0,2,["H302"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H53"]],[5,8,["H4994"]],[8,10,["H977"]],[10,11,["H8147","H6240"]],[11,12,["H505"]],[12,13,["H376"]],[13,17,["H6965"]],[17,19,["H7291"]],[19,20,["H310"]],[20,21,["H1732"]],[21,23,["H3915"]]]},{"k":8451,"v":[[0,4,["H935"]],[4,5,["H5921"]],[5,8,["H1931"]],[8,10,["H3023"]],[10,12,["H7504"]],[12,13,["H3027"]],[13,18,["H2729","(H853)"]],[18,20,["H3605"]],[20,22,["H5971"]],[22,23,["H834"]],[23,25,["H854"]],[25,28,["H5127"]],[28,32,["H5221","(H853)"]],[32,34,["H4428"]],[34,35,["H905"]]]},{"k":8452,"v":[[0,5,["H7725"]],[5,6,["H3605"]],[6,8,["H5971"]],[8,9,["H413"]],[9,12,["H376"]],[12,13,["H834"]],[13,14,["H859"]],[14,15,["H1245"]],[15,19,["H3605"]],[19,20,["H7725"]],[20,22,["H3605"]],[22,24,["H5971"]],[24,26,["H1961"]],[26,28,["H7965"]]]},{"k":8453,"v":[[0,3,["H1697"]],[3,4,["H3474"]],[4,5,["H53"]],[5,6,["H5869"]],[6,8,["H3605"]],[8,10,["H2205"]],[10,12,["H3478"]]]},{"k":8454,"v":[[0,2,["H559"]],[2,3,["H53"]],[3,4,["H7121"]],[4,5,["H4994"]],[5,6,["H2365"]],[6,8,["H757"]],[8,9,["H1571"]],[9,13,["H8085"]],[13,14,["H1571"]],[14,15,["H4100"]],[15,16,["H1931"]],[16,17,["H6310"]]]},{"k":8455,"v":[[0,3,["H2365"]],[3,5,["H935"]],[5,6,["H413"]],[6,7,["H53"]],[7,8,["H53"]],[8,9,["H559"]],[9,10,["H413"]],[10,12,["H559"]],[12,13,["H302"]],[13,15,["H1696"]],[15,17,["H2088"]],[17,18,["H1697"]],[18,21,["H6213"]],[21,22,["(H853)"]],[22,24,["H1697"]],[24,25,["H518"]],[25,26,["H369"]],[26,27,["H1696"]],[27,28,["H859"]]]},{"k":8456,"v":[[0,2,["H2365"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H53"]],[5,7,["H6098"]],[7,8,["H834"]],[8,9,["H302"]],[9,11,["H3289"]],[11,13,["H3808"]],[13,14,["H2896"]],[14,16,["H2063"]],[16,17,["H6471"]]]},{"k":8457,"v":[[0,2,["H559"]],[2,3,["H2365"]],[3,4,["H859"]],[4,5,["H3045","(H853)"]],[5,7,["H1"]],[7,10,["H376"]],[10,11,["H3588"]],[11,12,["H1992"]],[12,15,["H1368"]],[15,17,["H1992"]],[17,19,["H4751"]],[19,22,["H5315"]],[22,25,["H1677"]],[25,29,["H7909"]],[29,32,["H7704"]],[32,35,["H1"]],[35,38,["H376"]],[38,40,["H4421"]],[40,43,["H3808"]],[43,44,["H3885"]],[44,45,["H854"]],[45,47,["H5971"]]]},{"k":8458,"v":[[0,1,["H2009"]],[1,2,["H1931"]],[2,4,["H2244"]],[4,5,["H6258"]],[5,7,["H259"]],[7,8,["H6354"]],[8,9,["H176"]],[9,11,["H259"]],[11,13,["H4725"]],[13,19,["H1961"]],[19,25,["H5307"]],[25,28,["H8462"]],[28,31,["H8085","H8085"]],[31,34,["H559"]],[34,36,["H1961"]],[36,38,["H4046"]],[38,41,["H5971"]],[41,42,["H834"]],[42,43,["H310"]],[43,44,["H53"]]]},{"k":8459,"v":[[0,2,["H1931"]],[2,3,["H1571"]],[3,6,["H1121","H2428"]],[6,7,["H834"]],[7,8,["H3820"]],[8,12,["H3820"]],[12,15,["H738"]],[15,18,["H4549","H4549"]],[18,19,["H3588"]],[19,20,["H3605"]],[20,21,["H3478"]],[21,22,["H3045"]],[22,23,["H3588"]],[23,25,["H1"]],[25,29,["H1368"]],[29,32,["H834"]],[32,34,["H854"]],[34,37,["H2428"]],[37,38,["H1121"]]]},{"k":8460,"v":[[0,1,["H3588"]],[1,3,["H3289"]],[3,5,["H3605"]],[5,6,["H3478"]],[6,8,["H622"]],[8,9,["H622"]],[9,10,["H5921"]],[10,13,["H4480","H1835"]],[13,15,["H5704"]],[15,16,["H884"]],[16,19,["H2344"]],[19,20,["H834"]],[20,22,["H5921"]],[22,24,["H3220"]],[24,26,["H7230"]],[26,30,["H1980"]],[30,32,["H7128"]],[32,36,["H6440"]]]},{"k":8461,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,8,["H259"]],[8,9,["H4725"]],[9,10,["H834","H8033"]],[10,14,["H4672"]],[14,18,["H5117"]],[18,19,["H5921"]],[19,21,["H834"]],[21,23,["H2919"]],[23,24,["H5307"]],[24,25,["H5921"]],[25,27,["H127"]],[27,33,["H3605"]],[33,35,["H376"]],[35,36,["H834"]],[36,38,["H854"]],[38,42,["H3808"]],[42,44,["H3498"]],[44,46,["H1571"]],[46,48,["H259"]]]},{"k":8462,"v":[[0,2,["H518"]],[2,5,["H622"]],[5,6,["H413"]],[6,8,["H5892"]],[8,11,["H3605"]],[11,12,["H3478"]],[12,13,["H5375"]],[13,14,["H2256"]],[14,15,["H413"]],[15,16,["H1931"]],[16,17,["H5892"]],[17,21,["H5498"]],[21,23,["H5704"]],[23,25,["H5158"]],[25,26,["H5704","H834"]],[26,29,["H3808"]],[29,31,["H1571"]],[31,32,["H6872"]],[32,33,["H4672"]],[33,34,["H8033"]]]},{"k":8463,"v":[[0,2,["H53"]],[2,4,["H3605"]],[4,6,["H376"]],[6,8,["H3478"]],[8,9,["H559"]],[9,11,["H6098"]],[11,13,["H2365"]],[13,15,["H757"]],[15,17,["H2896"]],[17,20,["H4480","H6098"]],[20,22,["H302"]],[22,25,["H3068"]],[25,27,["H6680"]],[27,29,["H6565","(H853)"]],[29,31,["H2896"]],[31,32,["H6098"]],[32,34,["H302"]],[34,37,["H5668"]],[37,40,["H3068"]],[40,42,["H935"]],[42,43,["H7451"]],[43,44,["H413"]],[44,45,["H53"]]]},{"k":8464,"v":[[0,2,["H559"]],[2,3,["H2365"]],[3,4,["H413"]],[4,5,["H6659"]],[5,7,["H413"]],[7,8,["H54"]],[8,10,["H3548"]],[10,11,["H2063"]],[11,13,["H2063"]],[13,15,["H302"]],[15,16,["H3289","(H853)"]],[16,17,["H53"]],[17,20,["H2205"]],[20,22,["H3478"]],[22,24,["H2063"]],[24,26,["H2063"]],[26,28,["H589"]],[28,29,["H3289"]]]},{"k":8465,"v":[[0,1,["H6258"]],[1,3,["H7971"]],[3,4,["H4120"]],[4,6,["H5046"]],[6,7,["H1732"]],[7,8,["H559"]],[8,9,["H3885"]],[9,10,["H408"]],[10,12,["H3915"]],[12,15,["H6160"]],[15,18,["H4057"]],[18,19,["H1571"]],[19,20,["H5674"]],[20,22,["H5674"]],[22,23,["H6435"]],[23,25,["H4428"]],[25,28,["H1104"]],[28,30,["H3605"]],[30,32,["H5971"]],[32,33,["H834"]],[33,35,["H854"]],[35,36,[]]]},{"k":8466,"v":[[0,2,["H3083"]],[2,4,["H290"]],[4,5,["H5975"]],[5,7,["H5883"]],[7,8,["H3588"]],[8,10,["H3201"]],[10,11,["H3808"]],[11,13,["H7200"]],[13,15,["H935"]],[15,18,["H5892"]],[18,21,["H8198"]],[21,22,["H1980"]],[22,24,["H5046"]],[24,27,["H1992"]],[27,28,["H1980"]],[28,30,["H5046"]],[30,31,["H4428"]],[31,32,["H1732"]]]},{"k":8467,"v":[[0,3,["H5288"]],[3,4,["H7200"]],[4,7,["H5046"]],[7,8,["H53"]],[8,11,["H1980"]],[11,12,["H8147"]],[12,16,["H4120"]],[16,18,["H935"]],[18,19,["H413"]],[19,21,["H376"]],[21,22,["H1004"]],[22,24,["H980"]],[24,28,["H875"]],[28,31,["H2691"]],[31,32,["H8033"]],[32,35,["H3381"]]]},{"k":8468,"v":[[0,3,["H802"]],[3,4,["H3947"]],[4,6,["H6566","(H853)"]],[6,8,["H4539"]],[8,9,["H5921"]],[9,11,["H875"]],[11,12,["H6440"]],[12,14,["H7849"]],[14,16,["H7383"]],[16,17,["H5921"]],[17,20,["H1697"]],[20,22,["H3808"]],[22,23,["H3045"]]]},{"k":8469,"v":[[0,3,["H53"]],[3,4,["H5650"]],[4,5,["H935"]],[5,6,["H413"]],[6,8,["H802"]],[8,11,["H1004"]],[11,13,["H559"]],[13,14,["H346"]],[14,16,["H290"]],[16,18,["H3083"]],[18,21,["H802"]],[21,22,["H559"]],[22,28,["H5674"]],[28,30,["H4323"]],[30,32,["H4325"]],[32,37,["H1245"]],[37,40,["H3808"]],[40,41,["H4672"]],[41,44,["H7725"]],[44,46,["H3389"]]]},{"k":8470,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,9,["H1980"]],[9,13,["H5927"]],[13,17,["H4480","H875"]],[17,19,["H1980"]],[19,21,["H5046"]],[21,22,["H4428"]],[22,23,["H1732"]],[23,25,["H559"]],[25,26,["H413"]],[26,27,["H1732"]],[27,28,["H6965"]],[28,32,["H5674","H4120","(H853)"]],[32,34,["H4325"]],[34,35,["H3588"]],[35,36,["H3602"]],[36,38,["H302"]],[38,39,["H3289"]],[39,40,["H5921"]],[40,41,[]]]},{"k":8471,"v":[[0,2,["H1732"]],[2,3,["H6965"]],[3,5,["H3605"]],[5,7,["H5971"]],[7,8,["H834"]],[8,10,["H854"]],[10,15,["H5674","(H853)"]],[15,16,["H3383"]],[16,17,["H5704"]],[17,19,["H1242"]],[19,20,["H216"]],[20,22,["H5737"]],[22,23,["H3808"]],[23,24,["H259"]],[24,27,["H834"]],[27,29,["H3808"]],[29,31,["H5674","(H853)"]],[31,32,["H3383"]]]},{"k":8472,"v":[[0,3,["H302"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,7,["H6098"]],[7,9,["H3808"]],[9,10,["H6213"]],[10,12,["H2280"]],[12,13,["(H853)"]],[13,14,["H2543"]],[14,16,["H6965"]],[16,18,["H1980"]],[18,21,["H413"]],[21,23,["H1004"]],[23,24,["H413"]],[24,26,["H5892"]],[26,28,["H6680","H413"]],[28,30,["H1004"]],[30,35,["H2614"]],[35,37,["H4191"]],[37,40,["H6912"]],[40,43,["H6913"]],[43,46,["H1"]]]},{"k":8473,"v":[[0,2,["H1732"]],[2,3,["H935"]],[3,5,["H4266"]],[5,7,["H53"]],[7,9,["H5674","(H853)"]],[9,10,["H3383"]],[10,11,["H1931"]],[11,13,["H3605"]],[13,15,["H376"]],[15,17,["H3478"]],[17,18,["H5973"]],[18,19,[]]]},{"k":8474,"v":[[0,2,["H53"]],[2,3,["H7760"]],[3,4,["H6021"]],[4,5,["H5921"]],[5,8,["H6635"]],[8,9,["H8478"]],[9,11,["H3097"]],[11,13,["H6021"]],[13,16,["H376"]],[16,17,["H1121"]],[17,19,["H8034"]],[19,21,["H3501"]],[21,23,["H3481"]],[23,24,["H834"]],[24,25,["H935"]],[25,27,["H413"]],[27,28,["H26"]],[28,30,["H1323"]],[30,32,["H5176"]],[32,33,["H269"]],[33,35,["H6870"]],[35,36,["H3097"]],[36,37,["H517"]]]},{"k":8475,"v":[[0,2,["H3478"]],[2,4,["H53"]],[4,5,["H2583"]],[5,8,["H776"]],[8,10,["H1568"]]]},{"k":8476,"v":[[0,5,["H1961"]],[5,7,["H1732"]],[7,9,["H935"]],[9,11,["H4266"]],[11,13,["H7629"]],[13,15,["H1121"]],[15,17,["H5176"]],[17,19,["H4480","H7237"]],[19,22,["H1121"]],[22,24,["H5983"]],[24,26,["H4353"]],[26,28,["H1121"]],[28,30,["H5988"]],[30,32,["H4480","H3810"]],[32,34,["H1271"]],[34,36,["H1569"]],[36,38,["H4480","H7274"]]]},{"k":8477,"v":[[0,1,["H5066"]],[1,2,["H4904"]],[2,4,["H5592"]],[4,6,["H3335"]],[6,7,["H3627"]],[7,9,["H2406"]],[9,11,["H8184"]],[11,13,["H7058"]],[13,15,["H7039"]],[15,18,["H6321"]],[18,20,["H5742"]],[20,22,["H7039"]],[22,23,[]]]},{"k":8478,"v":[[0,2,["H1706"]],[2,4,["H2529"]],[4,6,["H6629"]],[6,8,["H8194"]],[8,10,["H1241"]],[10,12,["H1732"]],[12,16,["H5971"]],[16,17,["H834"]],[17,19,["H854"]],[19,22,["H398"]],[22,23,["H3588"]],[23,25,["H559"]],[25,27,["H5971"]],[27,29,["H7457"]],[29,31,["H5889"]],[31,33,["H6771"]],[33,36,["H4057"]]]},{"k":8479,"v":[[0,2,["H1732"]],[2,3,["H6485","(H853)"]],[3,5,["H5971"]],[5,6,["H834"]],[6,8,["H854"]],[8,11,["H7760"]],[11,12,["H8269"]],[12,14,["H505"]],[14,16,["H8269"]],[16,18,["H3967"]],[18,19,["H5921"]],[19,20,[]]]},{"k":8480,"v":[[0,2,["H1732"]],[2,4,["H7971"]],[4,7,["H7992"]],[7,8,["(H853)"]],[8,10,["H5971"]],[10,13,["H3027"]],[13,15,["H3097"]],[15,19,["H7992"]],[19,22,["H3027"]],[22,24,["H52"]],[24,26,["H1121"]],[26,28,["H6870"]],[28,29,["H3097"]],[29,30,["H251"]],[30,34,["H7992"]],[34,37,["H3027"]],[37,39,["H863"]],[39,41,["H1663"]],[41,44,["H4428"]],[44,45,["H559"]],[45,46,["H413"]],[46,48,["H5971"]],[48,53,["H3318","H3318"]],[53,54,["H5973"]],[54,56,["H589"]],[56,57,["H1571"]]]},{"k":8481,"v":[[0,3,["H5971"]],[3,4,["H559"]],[4,7,["H3808"]],[7,9,["H3318"]],[9,10,["H3588"]],[10,11,["H518"]],[11,14,["H5127","H5127"]],[14,17,["H3808"]],[17,18,["H7760","H3820"]],[18,19,["H413"]],[19,21,["H3808"]],[21,22,["H518"]],[22,23,["H2677"]],[23,26,["H4191"]],[26,29,["H7760","H3820"]],[29,30,["H413"]],[30,32,["H3588"]],[32,33,["H6258"]],[33,36,["H3644"]],[36,37,["H6235"]],[37,38,["H505"]],[38,42,["H6258"]],[42,45,["H2896"]],[45,46,["H3588"]],[46,48,["H5826"]],[48,53,["H4480","H5892"]]]},{"k":8482,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H834"]],[7,8,["H5869"]],[8,10,["H3190"]],[10,13,["H6213"]],[13,16,["H4428"]],[16,17,["H5975"]],[17,18,["H413"]],[18,20,["H8179"]],[20,21,["H3027"]],[21,23,["H3605"]],[23,25,["H5971"]],[25,27,["H3318"]],[27,29,["H3967"]],[29,32,["H505"]]]},{"k":8483,"v":[[0,3,["H4428"]],[3,4,["H6680","(H853)"]],[4,5,["H3097"]],[5,7,["H52"]],[7,9,["H863"]],[9,10,["H559"]],[10,12,["H328"]],[12,19,["H5288"]],[19,22,["H53"]],[22,24,["H3605"]],[24,26,["H5971"]],[26,27,["H8085"]],[27,30,["H4428"]],[30,31,["(H853)"]],[31,32,["H3605"]],[32,34,["H8269"]],[34,35,["H6680"]],[35,36,["H5921","H1697"]],[36,37,["H53"]]]},{"k":8484,"v":[[0,3,["H5971"]],[3,5,["H3318"]],[5,8,["H7704"]],[8,9,["H7125"]],[9,10,["H3478"]],[10,13,["H4421"]],[13,14,["H1961"]],[14,17,["H3293"]],[17,19,["H669"]]]},{"k":8485,"v":[[0,1,["H8033"]],[1,3,["H5971"]],[3,5,["H3478"]],[5,7,["H5062"]],[7,8,["H6440"]],[8,10,["H5650"]],[10,12,["H1732"]],[12,15,["H1961"]],[15,16,["H8033"]],[16,18,["H1419"]],[18,19,["H4046"]],[19,20,["H1931"]],[20,21,["H3117"]],[21,23,["H6242"]],[23,24,["H505"]],[24,25,[]]]},{"k":8486,"v":[[0,3,["H4421"]],[3,4,["H1961"]],[4,5,["H8033"]],[5,6,["H6327"]],[6,7,["H5921"]],[7,9,["H6440"]],[9,11,["H3605"]],[11,13,["H776"]],[13,16,["H3293"]],[16,17,["H398"]],[17,18,["H7235"]],[18,19,["H5971"]],[19,20,["H1931"]],[20,21,["H3117"]],[21,24,["H2719"]],[24,25,["H398"]]]},{"k":8487,"v":[[0,2,["H53"]],[2,3,["H7122"]],[3,5,["H5650"]],[5,7,["H1732"]],[7,9,["H53"]],[9,10,["H7392"]],[10,11,["H5921"]],[11,13,["H6505"]],[13,16,["H6505"]],[16,17,["H935"]],[17,18,["H8478"]],[18,21,["H7730"]],[21,24,["H1419"]],[24,25,["H424"]],[25,28,["H7218"]],[28,30,["H2388"]],[30,33,["H424"]],[33,38,["H5414"]],[38,39,["H996"]],[39,41,["H8064"]],[41,44,["H776"]],[44,47,["H6505"]],[47,48,["H834"]],[48,50,["H8478"]],[50,53,["H5674"]]]},{"k":8488,"v":[[0,3,["H259"]],[3,4,["H376"]],[4,5,["H7200"]],[5,8,["H5046"]],[8,9,["H3097"]],[9,11,["H559"]],[11,12,["H2009"]],[12,14,["H7200","(H853)"]],[14,15,["H53"]],[15,16,["H8518"]],[16,19,["H424"]]]},{"k":8489,"v":[[0,2,["H3097"]],[2,3,["H559"]],[3,6,["H376"]],[6,8,["H5046"]],[8,11,["H2009"]],[11,13,["H7200"]],[13,16,["H4069"]],[16,19,["H3808"]],[19,20,["H5221"]],[20,22,["H8033"]],[22,25,["H776"]],[25,30,["H5414"]],[30,32,["H6235"]],[32,35,["H3701"]],[35,37,["H259"]],[37,38,["H2290"]]]},{"k":8490,"v":[[0,3,["H376"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3097"]],[6,7,["H3863"]],[7,8,["H595"]],[8,10,["H8254"]],[10,12,["H505"]],[12,15,["H3701"]],[15,16,["H5921"]],[16,18,["H3709"]],[18,22,["H3808"]],[22,24,["H7971"]],[24,26,["H3027"]],[26,27,["H413"]],[27,29,["H4428"]],[29,30,["H1121"]],[30,31,["H3588"]],[31,34,["H241"]],[34,36,["H4428"]],[36,37,["H6680"]],[37,40,["H52"]],[40,42,["H863"]],[42,43,["H559"]],[43,46,["H8104"]],[46,50,["H5288"]],[50,51,["H53"]]]},{"k":8491,"v":[[0,1,["H176"]],[1,5,["H6213"]],[5,6,["H8267"]],[6,10,["H5315"]],[10,15,["H3808","H3605","H1697"]],[15,16,["H3582"]],[16,17,["H4480"]],[17,19,["H4428"]],[19,22,["H859"]],[22,26,["H3320"]],[26,27,["H4480","H5048"]],[27,28,[]]]},{"k":8492,"v":[[0,2,["H559"]],[2,3,["H3097"]],[3,6,["H3808"]],[6,7,["H3176"]],[7,8,["H3651"]],[8,9,["H6440"]],[9,13,["H3947"]],[13,14,["H7969"]],[14,15,["H7626"]],[15,18,["H3709"]],[18,20,["H8628"]],[20,24,["H3820"]],[24,26,["H53"]],[26,27,["H5750"]],[27,31,["H2416"]],[31,34,["H3820"]],[34,37,["H424"]]]},{"k":8493,"v":[[0,2,["H6235"]],[2,4,["H5288"]],[4,6,["H5375"]],[6,7,["H3097"]],[7,8,["H3627"]],[8,10,["H5437"]],[10,12,["H5221","(H853)"]],[12,13,["H53"]],[13,15,["H4191"]],[15,16,[]]]},{"k":8494,"v":[[0,2,["H3097"]],[2,3,["H8628"]],[3,5,["H7782"]],[5,8,["H5971"]],[8,9,["H7725"]],[9,11,["H4480","H7291"]],[11,12,["H310"]],[12,13,["H3478"]],[13,14,["H3588"]],[14,15,["H3097"]],[15,17,["H2820","(H853)"]],[17,19,["H5971"]]]},{"k":8495,"v":[[0,3,["H3947","(H853)"]],[3,4,["H53"]],[4,6,["H7993"]],[6,8,["H413"]],[8,10,["H1419"]],[10,11,["H6354"]],[11,14,["H3293"]],[14,16,["H5324"]],[16,18,["H3966"]],[18,19,["H1419"]],[19,20,["H1530"]],[20,22,["H68"]],[22,23,["H5921"]],[23,26,["H3605"]],[26,27,["H3478"]],[27,28,["H5127"]],[28,30,["H376"]],[30,33,["H168"]]]},{"k":8496,"v":[[0,2,["H53"]],[2,5,["H2416"]],[5,7,["H3947"]],[7,10,["H5324"]],[10,12,["(H853)"]],[12,14,["H4678"]],[14,15,["H834"]],[15,19,["H4428"]],[19,20,["H6010"]],[20,21,["H3588"]],[21,23,["H559"]],[23,26,["H369"]],[26,27,["H1121"]],[27,28,["H5668"]],[28,33,["H2142","H8034"]],[33,36,["H7121"]],[36,38,["H4678"]],[38,39,["H5921"]],[39,42,["H8034"]],[42,46,["H7121"]],[46,47,["H5704"]],[47,48,["H2088"]],[48,49,["H3117"]],[49,50,["H53"]],[50,51,["H3027"]]]},{"k":8497,"v":[[0,2,["H559"]],[2,3,["H290"]],[3,5,["H1121"]],[5,7,["H6659"]],[7,10,["H4994"]],[10,11,["H7323"]],[11,13,["H1319","(H853)"]],[13,15,["H4428"]],[15,18,["H3588"]],[18,20,["H3068"]],[20,22,["H8199"]],[22,26,["H341"]]]},{"k":8498,"v":[[0,2,["H3097"]],[2,3,["H559"]],[3,6,["H859"]],[6,8,["H3808"]],[8,10,["H376","H1309"]],[10,11,["H2088"]],[11,12,["H3117"]],[12,17,["H1319"]],[17,18,["H312"]],[18,19,["H3117"]],[19,21,["H2088"]],[21,22,["H3117"]],[22,27,["H1319","H3808"]],[27,28,["H3588","H5921"]],[28,30,["H4428"]],[30,31,["H1121"]],[31,33,["H4191"]]]},{"k":8499,"v":[[0,2,["H559"]],[2,3,["H3097"]],[3,5,["H3569"]],[5,6,["H1980"]],[6,7,["H5046"]],[7,9,["H4428"]],[9,10,["H834"]],[10,13,["H7200"]],[13,15,["H3569"]],[15,17,["H7812"]],[17,19,["H3097"]],[19,21,["H7323"]]]},{"k":8500,"v":[[0,2,["H559"]],[2,3,["H290"]],[3,5,["H1121"]],[5,7,["H6659"]],[7,8,["H5750"]],[8,9,["H3254"]],[9,10,["H413"]],[10,11,["H3097"]],[11,13,["H1961","H4100"]],[13,16,["H589"]],[16,17,["H4994"]],[17,19,["H1571"]],[19,20,["H7323"]],[20,21,["H310"]],[21,22,["H3569"]],[22,24,["H3097"]],[24,25,["H559"]],[25,26,["H4100","H2088"]],[26,28,["H859"]],[28,29,["H7323"]],[29,31,["H1121"]],[31,36,["H369"]],[36,37,["H1309"]],[37,38,["H4672"]]]},{"k":8501,"v":[[0,2,["H1961","H4100"]],[2,7,["H7323"]],[7,10,["H559"]],[10,13,["H7323"]],[13,15,["H290"]],[15,16,["H7323"]],[16,19,["H1870"]],[19,22,["H3603"]],[22,24,["H5674","(H853)"]],[24,25,["H3569"]]]},{"k":8502,"v":[[0,2,["H1732"]],[2,3,["H3427"]],[3,4,["H996"]],[4,6,["H8147"]],[6,7,["H8179"]],[7,10,["H6822"]],[10,12,["H1980"]],[12,13,["H413"]],[13,15,["H1406"]],[15,18,["H8179"]],[18,19,["H413"]],[19,21,["H2346"]],[21,24,["H5375","(H853)"]],[24,26,["H5869"]],[26,28,["H7200"]],[28,30,["H2009"]],[30,32,["H376"]],[32,33,["H7323"]],[33,34,["H905"]]]},{"k":8503,"v":[[0,3,["H6822"]],[3,4,["H7121"]],[4,6,["H5046"]],[6,8,["H4428"]],[8,11,["H4428"]],[11,12,["H559"]],[12,13,["H518"]],[13,16,["H905"]],[16,19,["H1309"]],[19,22,["H6310"]],[22,25,["H1980"]],[25,26,["H1980"]],[26,29,["H7131"]]]},{"k":8504,"v":[[0,3,["H6822"]],[3,4,["H7200"]],[4,5,["H312"]],[5,6,["H376"]],[6,7,["H7323"]],[7,10,["H6822"]],[10,11,["H7121"]],[11,12,["H413"]],[12,14,["H7778"]],[14,16,["H559"]],[16,17,["H2009"]],[17,19,["H376"]],[19,20,["H7323"]],[20,21,["H905"]],[21,24,["H4428"]],[24,25,["H559"]],[25,26,["H2088"]],[26,27,["H1571"]],[27,29,["H1319"]]]},{"k":8505,"v":[[0,3,["H6822"]],[3,4,["H559"]],[4,5,["H589"]],[5,6,["H7200","(H853)"]],[6,8,["H4794"]],[8,11,["H7223"]],[11,15,["H4794"]],[15,17,["H290"]],[17,19,["H1121"]],[19,21,["H6659"]],[21,24,["H4428"]],[24,25,["H559"]],[25,26,["H2088"]],[26,29,["H2896"]],[29,30,["H376"]],[30,32,["H935"]],[32,34,["H2896"]],[34,35,["H1309"]]]},{"k":8506,"v":[[0,2,["H290"]],[2,3,["H7121"]],[3,5,["H559"]],[5,6,["H413"]],[6,8,["H4428"]],[8,11,["H7965"]],[11,15,["H7812"]],[15,18,["H776"]],[18,21,["H639"]],[21,24,["H4428"]],[24,26,["H559"]],[26,27,["H1288"]],[27,30,["H3068"]],[30,32,["H430"]],[32,33,["H834"]],[33,36,["H5462","(H853)"]],[36,38,["H376"]],[38,39,["H834"]],[39,41,["H5375","(H853)"]],[41,43,["H3027"]],[43,46,["H113"]],[46,48,["H4428"]]]},{"k":8507,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,8,["H5288"]],[8,9,["H53"]],[9,10,["H7965"]],[10,12,["H290"]],[12,13,["H559"]],[13,15,["H3097"]],[15,16,["H7971","(H853)"]],[16,18,["H4428"]],[18,19,["H5650"]],[19,23,["H5650"]],[23,25,["H7200"]],[25,27,["H1419"]],[27,28,["H1995"]],[28,31,["H3045"]],[31,32,["H3808"]],[32,33,["H4100"]],[33,35,[]]]},{"k":8508,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,8,["H5437"]],[8,10,["H3320"]],[10,11,["H3541"]],[11,15,["H5437"]],[15,18,["H5975"]]]},{"k":8509,"v":[[0,2,["H2009"]],[2,3,["H3569"]],[3,4,["H935"]],[4,6,["H3569"]],[6,7,["H559"]],[7,8,["H1319"]],[8,10,["H113"]],[10,12,["H4428"]],[12,13,["H3588"]],[13,15,["H3068"]],[15,17,["H8199"]],[17,20,["H3117"]],[20,21,["H4480","H3027"]],[21,22,["H3605"]],[22,26,["H6965"]],[26,27,["H5921"]],[27,28,[]]]},{"k":8510,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3569"]],[6,10,["H5288"]],[10,11,["H53"]],[11,12,["H7965"]],[12,14,["H3569"]],[14,15,["H559"]],[15,17,["H341"]],[17,20,["H113"]],[20,22,["H4428"]],[22,24,["H3605"]],[24,25,["H834"]],[25,26,["H6965"]],[26,27,["H5921"]],[27,32,["H7451"]],[32,33,["H1961"]],[33,37,["H5288"]],[37,38,[]]]},{"k":8511,"v":[[0,3,["H4428"]],[3,6,["H7264"]],[6,9,["H5927"]],[9,10,["H5921"]],[10,12,["H5944"]],[12,15,["H8179"]],[15,17,["H1058"]],[17,21,["H1980"]],[21,22,["H3541"]],[22,24,["H559"]],[24,27,["H1121"]],[27,28,["H53"]],[28,30,["H1121"]],[30,32,["H1121"]],[32,33,["H53"]],[33,35,["H4310","H5414"]],[35,36,["H589"]],[36,38,["H4191"]],[38,39,["H8478"]],[39,42,["H53"]],[42,44,["H1121"]],[44,46,["H1121"]]]},{"k":8512,"v":[[0,4,["H5046"]],[4,5,["H3097"]],[5,6,["H2009"]],[6,8,["H4428"]],[8,9,["H1058"]],[9,11,["H56"]],[11,12,["H5921"]],[12,13,["H53"]]]},{"k":8513,"v":[[0,3,["H8668"]],[3,4,["H1961"]],[4,5,["H3117"]],[5,9,["H60"]],[9,11,["H3605"]],[11,13,["H5971"]],[13,14,["H3588"]],[14,16,["H5971"]],[16,17,["H8085"]],[17,18,["H559"]],[18,19,["H1931"]],[19,20,["H3117"]],[20,23,["H4428"]],[23,25,["H6087"]],[25,26,["H5921"]],[26,28,["H1121"]]]},{"k":8514,"v":[[0,3,["H5971"]],[3,4,["H935"]],[4,7,["H1589"]],[7,8,["H1931"]],[8,9,["H3117"]],[9,12,["H5892"]],[12,13,["H834"]],[13,14,["H5971"]],[14,16,["H3637"]],[16,18,["H1589"]],[18,21,["H5127"]],[21,23,["H4421"]]]},{"k":8515,"v":[[0,3,["H4428"]],[3,4,["H3813","(H853)"]],[4,6,["H6440"]],[6,9,["H4428"]],[9,10,["H2199"]],[10,13,["H1419"]],[13,14,["H6963"]],[14,17,["H1121"]],[17,18,["H53"]],[18,20,["H53"]],[20,22,["H1121"]],[22,24,["H1121"]]]},{"k":8516,"v":[[0,2,["H3097"]],[2,3,["H935"]],[3,6,["H1004"]],[6,7,["H413"]],[7,9,["H4428"]],[9,11,["H559"]],[11,14,["H3001"]],[14,16,["H3117","(H853)"]],[16,18,["H6440"]],[18,20,["H3605"]],[20,22,["H5650"]],[22,25,["H3117"]],[25,27,["H4422","(H853)"]],[27,29,["H5315"]],[29,32,["H5315"]],[32,35,["H1121"]],[35,39,["H1323"]],[39,42,["H5315"]],[42,45,["H802"]],[45,48,["H5315"]],[48,51,["H6370"]]]},{"k":8517,"v":[[0,4,["H157","(H853)"]],[4,6,["H8130"]],[6,8,["H8130","(H853)"]],[8,10,["H157"]],[10,11,["H3588"]],[11,14,["H5046"]],[14,16,["H3117"]],[16,17,["H3588"]],[17,20,["H369"]],[20,21,["H8269"]],[21,23,["H5650"]],[23,24,["H3588"]],[24,26,["H3117"]],[26,28,["H3045"]],[28,29,["H3588"]],[29,30,["H3863"]],[30,31,["H53"]],[31,33,["H2416"]],[33,35,["H3605"]],[35,38,["H4191"]],[38,40,["H3117"]],[40,41,["H227"]],[41,46,["H5869","H3477"]]]},{"k":8518,"v":[[0,1,["H6258"]],[1,3,["H6965"]],[3,5,["H3318"]],[5,7,["H1696"]],[7,8,["H5921","H3820"]],[8,11,["H5650"]],[11,12,["H3588"]],[12,14,["H7650"]],[14,17,["H3068"]],[17,18,["H3588"]],[18,22,["H369","H3318"]],[22,25,["H518"]],[25,26,["H3885"]],[26,27,["H376"]],[27,28,["H854"]],[28,31,["H3915"]],[31,33,["H2063"]],[33,36,["H7489"]],[36,40,["H4480","H3605"]],[40,42,["H7451"]],[42,43,["H834"]],[43,44,["H935","H5921"]],[44,48,["H4480","H5271"]],[48,49,["H5704"]],[49,50,["H6258"]]]},{"k":8519,"v":[[0,3,["H4428"]],[3,4,["H6965"]],[4,6,["H3427"]],[6,9,["H8179"]],[9,12,["H5046"]],[12,14,["H3605"]],[14,16,["H5971"]],[16,17,["H559"]],[17,18,["H2009"]],[18,20,["H4428"]],[20,22,["H3427"]],[22,25,["H8179"]],[25,27,["H3605"]],[27,29,["H5971"]],[29,30,["H935"]],[30,31,["H6440"]],[31,33,["H4428"]],[33,35,["H3478"]],[35,37,["H5127"]],[37,39,["H376"]],[39,42,["H168"]]]},{"k":8520,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H1961"]],[5,7,["H1777"]],[7,9,["H3605"]],[9,11,["H7626"]],[11,13,["H3478"]],[13,14,["H559"]],[14,16,["H4428"]],[16,17,["H5337"]],[17,22,["H4480","H3709"]],[22,25,["H341"]],[25,27,["H1931"]],[27,28,["H4422"]],[28,33,["H4480","H3709"]],[33,36,["H6430"]],[36,38,["H6258"]],[38,41,["H1272"]],[41,43,["H4480"]],[43,45,["H776"]],[45,46,["H4480","H5921"]],[46,47,["H53"]]]},{"k":8521,"v":[[0,2,["H53"]],[2,3,["H834"]],[3,5,["H4886"]],[5,6,["H5921"]],[6,9,["H4191"]],[9,11,["H4421"]],[11,12,["H6258"]],[12,14,["H4100"]],[14,15,["H2790"]],[15,16,["H859"]],[16,21,["H7725","(H853)"]],[21,23,["H4428"]],[23,24,[]]]},{"k":8522,"v":[[0,2,["H4428"]],[2,3,["H1732"]],[3,4,["H7971"]],[4,5,["H413"]],[5,6,["H6659"]],[6,8,["H413"]],[8,9,["H54"]],[9,11,["H3548"]],[11,12,["H559"]],[12,13,["H1696"]],[13,14,["H413"]],[14,16,["H2205"]],[16,18,["H3063"]],[18,19,["H559"]],[19,20,["H4100"]],[20,21,["H1961"]],[21,24,["H314"]],[24,26,["H7725","(H853)"]],[26,28,["H4428"]],[28,30,["H413"]],[30,32,["H1004"]],[32,35,["H1697"]],[35,37,["H3605"]],[37,38,["H3478"]],[38,40,["H935"]],[40,41,["H413"]],[41,43,["H4428"]],[43,45,["H413"]],[45,47,["H1004"]]]},{"k":8523,"v":[[0,1,["H859"]],[1,4,["H251"]],[4,5,["H859"]],[5,8,["H6106"]],[8,11,["H1320"]],[11,12,["H4100"]],[12,14,["H1961"]],[14,17,["H314"]],[17,20,["H7725","(H853)"]],[20,22,["H4428"]]]},{"k":8524,"v":[[0,2,["H559"]],[2,5,["H6021"]],[5,7,["H859"]],[7,8,["H3808"]],[8,11,["H6106"]],[11,15,["H1320"]],[15,16,["H430"]],[16,17,["H6213"]],[17,18,["H3541"]],[18,22,["H3254"]],[22,23,["H3541"]],[23,24,["H518"]],[24,26,["H1961"]],[26,27,["H3808"]],[27,28,["H8269"]],[28,31,["H6635"]],[31,32,["H6440"]],[32,34,["H3605","H3117"]],[34,37,["H8478"]],[37,39,["H3097"]]]},{"k":8525,"v":[[0,3,["H5186","(H853)"]],[3,5,["H3824"]],[5,7,["H3605"]],[7,9,["H376"]],[9,11,["H3063"]],[11,17,["H259"]],[17,18,["H376"]],[18,22,["H7971"]],[22,25,["H413"]],[25,27,["H4428"]],[27,28,["H7725"]],[28,29,["H859"]],[29,31,["H3605"]],[31,33,["H5650"]]]},{"k":8526,"v":[[0,3,["H4428"]],[3,4,["H7725"]],[4,6,["H935"]],[6,7,["H5704"]],[7,8,["H3383"]],[8,10,["H3063"]],[10,11,["H935"]],[11,13,["H1537"]],[13,15,["H1980"]],[15,17,["H7125"]],[17,19,["H4428"]],[19,24,["H5674","(H853)","H4428","(H853)"]],[24,25,["H3383"]]]},{"k":8527,"v":[[0,2,["H8096"]],[2,4,["H1121"]],[4,6,["H1617"]],[6,8,["H1145"]],[8,9,["H834"]],[9,12,["H4480","H980"]],[12,13,["H4116"]],[13,16,["H3381"]],[16,17,["H5973"]],[17,19,["H376"]],[19,21,["H3063"]],[21,23,["H7125"]],[23,24,["H4428"]],[24,25,["H1732"]]]},{"k":8528,"v":[[0,5,["H505"]],[5,6,["H376"]],[6,8,["H4480","H1144"]],[8,9,["H5973"]],[9,12,["H6717"]],[12,14,["H5288"]],[14,17,["H1004"]],[17,19,["H7586"]],[19,22,["H2568","H6240"]],[22,23,["H1121"]],[23,26,["H6242"]],[26,27,["H5650"]],[27,28,["H854"]],[28,33,["H6743"]],[33,34,["H3383"]],[34,35,["H6440"]],[35,37,["H4428"]]]},{"k":8529,"v":[[0,4,["H5674"]],[4,7,["H5679"]],[7,10,["H5674","(H853)"]],[10,12,["H4428"]],[12,13,["H1004"]],[13,16,["H6213"]],[16,19,["H5869"]],[19,20,["H2896"]],[20,22,["H8096"]],[22,24,["H1121"]],[24,26,["H1617"]],[26,28,["H5307"]],[28,29,["H6440"]],[29,31,["H4428"]],[31,36,["H5674"]],[36,37,["H3383"]]]},{"k":8530,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H4428"]],[5,7,["H408"]],[7,9,["H113"]],[9,10,["H2803"]],[10,11,["H5771"]],[11,14,["H408"]],[14,17,["H2142","(H853)"]],[17,19,["H834"]],[19,21,["H5650"]],[21,23,["H5753"]],[23,25,["H3117"]],[25,26,["H834"]],[26,28,["H113"]],[28,30,["H4428"]],[30,32,["H3318"]],[32,34,["H4480","H3389"]],[34,37,["H4428"]],[37,39,["H7760"]],[39,41,["H413"]],[41,43,["H3820"]]]},{"k":8531,"v":[[0,1,["H3588"]],[1,3,["H5650"]],[3,5,["H3045"]],[5,6,["H3588"]],[6,7,["H589"]],[7,9,["H2398"]],[9,11,["H2009"]],[11,14,["H935"]],[14,16,["H7223"]],[16,18,["H3117"]],[18,20,["H3605"]],[20,22,["H1004"]],[22,24,["H3130"]],[24,27,["H3381"]],[27,29,["H7125"]],[29,31,["H113"]],[31,33,["H4428"]]]},{"k":8532,"v":[[0,2,["H52"]],[2,4,["H1121"]],[4,6,["H6870"]],[6,7,["H6030"]],[7,9,["H559"]],[9,11,["H3808"]],[11,12,["H8096"]],[12,16,["H4191"]],[16,17,["H8478"]],[17,18,["H2063"]],[18,19,["H3588"]],[19,21,["H7043","(H853)"]],[21,23,["H3068"]],[23,24,["H4899"]]]},{"k":8533,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H4100"]],[4,12,["H1121"]],[12,14,["H6870"]],[14,15,["H3588"]],[15,19,["H3117"]],[19,20,["H1961"]],[20,21,["H7854"]],[21,27,["H376"]],[27,31,["H4191"]],[31,33,["H3117"]],[33,35,["H3478"]],[35,36,["H3588"]],[36,38,["H3808"]],[38,40,["H3045"]],[40,41,["H3588"]],[41,42,["H589"]],[42,45,["H3117"]],[45,46,["H4428"]],[46,47,["H5921"]],[47,48,["H3478"]]]},{"k":8534,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H8096"]],[6,9,["H3808"]],[9,10,["H4191"]],[10,13,["H4428"]],[13,14,["H7650"]],[14,16,[]]]},{"k":8535,"v":[[0,2,["H4648"]],[2,4,["H1121"]],[4,6,["H7586"]],[6,8,["H3381"]],[8,10,["H7125"]],[10,12,["H4428"]],[12,15,["H3808"]],[15,16,["H6213"]],[16,18,["H7272"]],[18,19,["H3808"]],[19,20,["H6213"]],[20,22,["H8222"]],[22,23,["H3808"]],[23,24,["H3526"]],[24,26,["H899"]],[26,27,["H4480"]],[27,29,["H3117"]],[29,31,["H4428"]],[31,32,["H1980"]],[32,33,["H5704"]],[33,35,["H3117"]],[35,37,["H935"]],[37,40,["H7965"]]]},{"k":8536,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,9,["H935"]],[9,11,["H3389"]],[11,13,["H7125"]],[13,15,["H4428"]],[15,18,["H4428"]],[18,19,["H559"]],[19,22,["H4100"]],[22,23,["H1980"]],[23,24,["H3808"]],[24,26,["H5973"]],[26,28,["H4648"]]]},{"k":8537,"v":[[0,3,["H559"]],[3,5,["H113"]],[5,7,["H4428"]],[7,9,["H5650"]],[9,10,["H7411"]],[10,12,["H3588"]],[12,14,["H5650"]],[14,15,["H559"]],[15,18,["H2280"]],[18,21,["H2543"]],[21,25,["H7392"]],[25,26,["H5921"]],[26,28,["H1980"]],[28,29,["H854"]],[29,31,["H4428"]],[31,32,["H3588"]],[32,34,["H5650"]],[34,36,["H6455"]]]},{"k":8538,"v":[[0,4,["H7270"]],[4,6,["H5650"]],[6,7,["H413"]],[7,9,["H113"]],[9,11,["H4428"]],[11,14,["H113"]],[14,16,["H4428"]],[16,20,["H4397"]],[20,22,["H430"]],[22,23,["H6213"]],[23,27,["H2896"]],[27,30,["H5869"]]]},{"k":8539,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,5,["H1"]],[5,6,["H1004"]],[6,7,["H1961"]],[7,8,["H3588","H518"]],[8,9,["H4194"]],[9,10,["H376"]],[10,11,["H6440"]],[11,13,["H113"]],[13,15,["H4428"]],[15,19,["H7896","(H853)"]],[19,21,["H5650"]],[21,26,["H398"]],[26,30,["H7979"]],[30,31,["H4100"]],[31,32,["H6666"]],[32,34,["H3426"]],[34,36,["H5759"]],[36,38,["H2199"]],[38,40,["H5750"]],[40,41,["H413"]],[41,43,["H4428"]]]},{"k":8540,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H4100"]],[7,8,["H1696"]],[8,11,["H5750"]],[11,14,["H1697"]],[14,17,["H559"]],[17,18,["H859"]],[18,20,["H6717"]],[20,21,["H2505","(H853)"]],[21,23,["H7704"]]]},{"k":8541,"v":[[0,2,["H4648"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,7,["H1571"]],[7,10,["H3947","(H853)"]],[10,11,["H3605"]],[11,12,["H310","H834"]],[12,15,["H113"]],[15,17,["H4428"]],[17,20,["H935"]],[20,22,["H7965"]],[22,23,["H413"]],[23,26,["H1004"]]]},{"k":8542,"v":[[0,2,["H1271"]],[2,4,["H1569"]],[4,6,["H3381"]],[6,8,["H4480","H7274"]],[8,11,["H5674"]],[11,12,["H3383"]],[12,13,["H854"]],[13,15,["H4428"]],[15,19,["H7971","(H853)"]],[19,20,["H3383"]]]},{"k":8543,"v":[[0,2,["H1271"]],[2,5,["H3966"]],[5,6,["H2204"]],[6,9,["H8084"]],[9,10,["H8141"]],[10,11,["H1121"]],[11,13,["H1931"]],[13,15,["(H853)"]],[15,17,["H4428"]],[17,19,["H3557"]],[19,22,["H7871"]],[22,24,["H4266"]],[24,25,["H3588"]],[25,26,["H1931"]],[26,29,["H3966"]],[29,30,["H1419"]],[30,31,["H376"]]]},{"k":8544,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H1271"]],[6,7,["H5674"]],[7,8,["H859"]],[8,10,["H854"]],[10,15,["H3557"]],[15,17,["H5973"]],[17,20,["H3389"]]]},{"k":8545,"v":[[0,2,["H1271"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,7,["H4100"]],[7,8,["H3117","H8141"]],[8,12,["H2416"]],[12,13,["H3588"]],[13,17,["H5927"]],[17,18,["H854"]],[18,20,["H4428"]],[20,22,["H3389"]]]},{"k":8546,"v":[[0,1,["H595"]],[1,4,["H3117"]],[4,5,["H8084"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,11,["H3045"]],[11,12,["H996"]],[12,13,["H2896"]],[13,15,["H7451"]],[15,16,["H518"]],[16,18,["H5650"]],[18,19,["H2938","(H853)"]],[19,20,["H834"]],[20,22,["H398"]],[22,24,["H834"]],[24,26,["H8354"]],[26,27,["H518"]],[27,29,["H8085"]],[29,31,["H5750"]],[31,33,["H6963"]],[33,36,["H7891"]],[36,39,["H7891"]],[39,40,["H4100"]],[40,44,["H5650"]],[44,45,["H1961"]],[45,46,["H5750"]],[46,48,["H4853"]],[48,49,["H413"]],[49,51,["H113"]],[51,53,["H4428"]]]},{"k":8547,"v":[[0,2,["H5650"]],[2,8,["H5674","H4592","(H853)"]],[8,9,["H3383"]],[9,10,["H854"]],[10,12,["H4428"]],[12,14,["H4100"]],[14,17,["H4428"]],[17,18,["H1580"]],[18,22,["H2063"]],[22,24,["H1578"]]]},{"k":8548,"v":[[0,3,["H5650"]],[3,6,["H4994"]],[6,9,["H7725"]],[9,13,["H4191"]],[13,17,["H5892"]],[17,21,["H5973"]],[21,23,["H6913"]],[23,26,["H1"]],[26,30,["H517"]],[30,32,["H2009"]],[32,34,["H5650"]],[34,35,["H3643"]],[35,39,["H5674"]],[39,40,["H5973"]],[40,42,["H113"]],[42,44,["H4428"]],[44,46,["H6213"]],[46,48,["(H853)"]],[48,49,["H834"]],[49,51,["H5869"]],[51,52,["H2896"]],[52,54,[]]]},{"k":8549,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H3643"]],[5,8,["H5674"]],[8,9,["H854"]],[9,12,["H589"]],[12,14,["H6213"]],[14,16,["(H853)"]],[16,20,["H5869"]],[20,21,["H2896"]],[21,25,["H834","H3605"]],[25,28,["H977"]],[28,29,["H5921"]],[29,34,["H6213"]],[34,36,[]]]},{"k":8550,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H5674","(H853)"]],[6,7,["H3383"]],[7,11,["H4428"]],[11,14,["H5674"]],[14,16,["H4428"]],[16,17,["H5401"]],[17,18,["H1271"]],[18,20,["H1288"]],[20,24,["H7725"]],[24,28,["H4725"]]]},{"k":8551,"v":[[0,3,["H4428"]],[3,5,["H5674"]],[5,7,["H1537"]],[7,9,["H3643"]],[9,11,["H5674"]],[11,12,["H5973"]],[12,15,["H3605"]],[15,17,["H5971"]],[17,19,["H3063"]],[19,20,["H5674","(H853)"]],[20,22,["H4428"]],[22,24,["H1571"]],[24,25,["H2677"]],[25,27,["H5971"]],[27,29,["H3478"]]]},{"k":8552,"v":[[0,2,["H2009"]],[2,3,["H3605"]],[3,5,["H376"]],[5,7,["H3478"]],[7,8,["H935"]],[8,9,["H413"]],[9,11,["H4428"]],[11,13,["H559"]],[13,14,["H413"]],[14,16,["H4428"]],[16,17,["H4069"]],[17,20,["H251"]],[20,22,["H376"]],[22,24,["H3063"]],[24,27,["H1589"]],[27,30,["H5674","(H853)"]],[30,32,["H4428"]],[32,35,["H1004"]],[35,37,["H3605"]],[37,38,["H1732"]],[38,39,["H376"]],[39,40,["H5973"]],[40,42,["(H853)"]],[42,43,["H3383"]]]},{"k":8553,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,6,["H3063"]],[6,7,["H6030","H5921"]],[7,9,["H376"]],[9,11,["H3478"]],[11,12,["H3588"]],[12,14,["H4428"]],[14,18,["H7138"]],[18,19,["H413"]],[19,21,["H4100","H2088"]],[21,25,["H2734"]],[25,26,["H5921"]],[26,27,["H2088"]],[27,28,["H1697"]],[28,33,["H398","H398"]],[33,34,["H4480"]],[34,36,["H4428"]],[36,38,["H518"]],[38,44,["H5379","H5375"]]]},{"k":8554,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,6,["H6030","(H853)"]],[6,8,["H376"]],[8,10,["H3063"]],[10,12,["H559"]],[12,15,["H6235"]],[15,16,["H3027"]],[16,19,["H4428"]],[19,21,["H589"]],[21,23,["H1571"]],[23,27,["H1732"]],[27,28,["H4480"]],[28,30,["H4069"]],[30,34,["H7043"]],[34,38,["H1697"]],[38,40,["H3808"]],[40,41,["H1961"]],[41,42,["H7223"]],[42,46,["H7725","(H853)"]],[46,48,["H4428"]],[48,51,["H1697"]],[51,54,["H376"]],[54,56,["H3063"]],[56,58,["H7185"]],[58,61,["H4480","H1697"]],[61,64,["H376"]],[64,66,["H3478"]]]},{"k":8555,"v":[[0,2,["H8033"]],[2,3,["H7122"]],[3,8,["H376"]],[8,10,["H1100"]],[10,12,["H8034"]],[12,14,["H7652"]],[14,16,["H1121"]],[16,18,["H1075"]],[18,20,["H1145"]],[20,23,["H8628"]],[23,25,["H7782"]],[25,27,["H559"]],[27,30,["H369"]],[30,31,["H2506"]],[31,33,["H1732"]],[33,34,["H3808"]],[34,37,["H5159"]],[37,40,["H1121"]],[40,42,["H3448"]],[42,44,["H376"]],[44,47,["H168"]],[47,49,["H3478"]]]},{"k":8556,"v":[[0,2,["H3605"]],[2,3,["H376"]],[3,5,["H3478"]],[5,7,["H5927"]],[7,9,["H4480","H310"]],[9,10,["H1732"]],[10,12,["H310"]],[12,13,["H7652"]],[13,15,["H1121"]],[15,17,["H1075"]],[17,20,["H376"]],[20,22,["H3063"]],[22,23,["H1692"]],[23,26,["H4428"]],[26,27,["H4480"]],[27,28,["H3383"]],[28,30,["H5704"]],[30,31,["H3389"]]]},{"k":8557,"v":[[0,2,["H1732"]],[2,3,["H935"]],[3,4,["H413"]],[4,6,["H1004"]],[6,8,["H3389"]],[8,11,["H4428"]],[11,12,["H3947","(H853)"]],[12,14,["H6235"]],[14,15,["H802"]],[15,17,["H6370"]],[17,18,["H834"]],[18,21,["H5117"]],[21,23,["H8104"]],[23,25,["H1004"]],[25,27,["H5414"]],[27,30,["H1004","H4931"]],[30,32,["H3557"]],[32,35,["H935"]],[35,36,["H3808"]],[36,38,["H413"]],[38,42,["H1961"]],[42,44,["H6887"]],[44,45,["H5704"]],[45,47,["H3117"]],[47,50,["H4191"]],[50,51,["H2424"]],[51,53,["H491"]]]},{"k":8558,"v":[[0,2,["H559"]],[2,4,["H4428"]],[4,5,["H413"]],[5,6,["H6021"]],[6,7,["H2199"]],[7,8,["(H853)"]],[8,10,["H376"]],[10,12,["H3063"]],[12,14,["H7969"]],[14,15,["H3117"]],[15,18,["H859"]],[18,19,["H6311"]],[19,20,["H5975"]]]},{"k":8559,"v":[[0,2,["H6021"]],[2,3,["H1980"]],[3,5,["H2199"]],[5,8,["(H853)"]],[8,9,["H3063"]],[9,13,["H3186"]],[13,14,["H4480"]],[14,17,["H4150"]],[17,18,["H834"]],[18,21,["H3259"]],[21,22,[]]]},{"k":8560,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H52"]],[5,6,["H6258"]],[6,8,["H7652"]],[8,10,["H1121"]],[10,12,["H1075"]],[12,16,["H3415"]],[16,17,["H4480"]],[17,19,["H53"]],[19,20,["H3947"]],[20,21,["H859","(H853)"]],[21,23,["H113"]],[23,24,["H5650"]],[24,26,["H7291"]],[26,27,["H310"]],[27,29,["H6435"]],[29,31,["H4672"]],[31,33,["H1219"]],[33,34,["H5892"]],[34,36,["H5337","H5869"]],[36,37,[]]]},{"k":8561,"v":[[0,4,["H3318"]],[4,5,["H310"]],[5,7,["H3097"]],[7,8,["H376"]],[8,11,["H3774"]],[11,14,["H6432"]],[14,16,["H3605"]],[16,19,["H1368"]],[19,23,["H3318"]],[23,25,["H4480","H3389"]],[25,27,["H7291"]],[27,28,["H310"]],[28,29,["H7652"]],[29,31,["H1121"]],[31,33,["H1075"]]]},{"k":8562,"v":[[0,2,["H1992"]],[2,4,["H5973"]],[4,6,["H1419"]],[6,7,["H68"]],[7,8,["H834"]],[8,11,["H1391"]],[11,12,["H6021"]],[12,13,["H935"]],[13,14,["H6440"]],[14,17,["H3097"]],[17,18,["H4055"]],[18,23,["H3830"]],[23,25,["H2296"]],[25,26,["H5921"]],[26,29,["H5921"]],[29,32,["H2289"]],[32,35,["H2719"]],[35,36,["H6775"]],[36,37,["H5921"]],[37,39,["H4975"]],[39,42,["H8593"]],[42,46,["H1931"]],[46,48,["H3318"]],[48,51,["H5307"]]]},{"k":8563,"v":[[0,2,["H3097"]],[2,3,["H559"]],[3,5,["H6021"]],[5,7,["H859"]],[7,9,["H7965"]],[9,11,["H251"]],[11,13,["H3097"]],[13,14,["H270"]],[14,15,["H6021"]],[15,18,["H2206"]],[18,21,["H3225"]],[21,22,["H3027"]],[22,24,["H5401"]],[24,25,[]]]},{"k":8564,"v":[[0,2,["H6021"]],[2,4,["H3808"]],[4,5,["H8104"]],[5,8,["H2719"]],[8,9,["H834"]],[9,12,["H3097"]],[12,13,["H3027"]],[13,16,["H5221"]],[16,19,["H413"]],[19,21,["H2570"]],[21,25,["H8210"]],[25,27,["H4578"]],[27,30,["H776"]],[30,32,["H8138"]],[32,34,["H3808"]],[34,38,["H4191"]],[38,40,["H3097"]],[40,42,["H52"]],[42,44,["H251"]],[44,45,["H7291"]],[45,46,["H310"]],[46,47,["H7652"]],[47,49,["H1121"]],[49,51,["H1075"]]]},{"k":8565,"v":[[0,2,["H376"]],[2,5,["H4480","H5288","H3097"]],[5,6,["H5975"]],[6,7,["H5921"]],[7,10,["H559"]],[10,11,["H4310"]],[11,12,["H834"]],[12,13,["H2654"]],[13,14,["H3097"]],[14,16,["H4310"]],[16,17,["H834"]],[17,20,["H1732"]],[20,24,["H310"]],[24,25,["H3097"]]]},{"k":8566,"v":[[0,2,["H6021"]],[2,3,["H1556"]],[3,5,["H1818"]],[5,8,["H8432"]],[8,11,["H4546"]],[11,15,["H376"]],[15,16,["H7200"]],[16,17,["H3588"]],[17,18,["H3605"]],[18,20,["H5971"]],[20,22,["H5975"]],[22,24,["H5437","(H853)"]],[24,25,["H6021"]],[25,27,["H4480"]],[27,29,["H4546"]],[29,32,["H7704"]],[32,34,["H7993"]],[34,36,["H899"]],[36,37,["H5921"]],[37,39,["H834"]],[39,41,["H7200"]],[41,43,["H3605"]],[43,46,["H935"]],[46,47,["H5921"]],[47,50,["H5975"]]]},{"k":8567,"v":[[0,1,["H834"]],[1,4,["H3014"]],[4,6,["H4480"]],[6,8,["H4546"]],[8,9,["H3605"]],[9,11,["H376"]],[11,13,["H5674"]],[13,14,["H310"]],[14,15,["H3097"]],[15,17,["H7291"]],[17,18,["H310"]],[18,19,["H7652"]],[19,21,["H1121"]],[21,23,["H1075"]]]},{"k":8568,"v":[[0,4,["H5674"]],[4,5,["H3605"]],[5,7,["H7626"]],[7,9,["H3478"]],[9,11,["H59"]],[11,14,["H1038"]],[14,16,["H3605"]],[16,18,["H1276"]],[18,23,["H7035"]],[23,25,["H935"]],[25,26,["H637"]],[26,27,["H310"]],[27,28,[]]]},{"k":8569,"v":[[0,3,["H935"]],[3,5,["H6696","H5921"]],[5,10,["H62"]],[10,14,["H8210"]],[14,16,["H5550"]],[16,17,["H413"]],[17,19,["H5892"]],[19,22,["H5975"]],[22,25,["H2426"]],[25,27,["H3605"]],[27,29,["H5971"]],[29,30,["H834"]],[30,32,["H854"]],[32,33,["H3097"]],[33,34,["H7843"]],[34,36,["H2346"]],[36,40,["H5307"]]]},{"k":8570,"v":[[0,2,["H7121"]],[2,4,["H2450"]],[4,5,["H802"]],[5,7,["H4480"]],[7,9,["H5892"]],[9,10,["H8085"]],[10,11,["H8085"]],[11,12,["H559"]],[12,15,["H4994"]],[15,16,["H413"]],[16,17,["H3097"]],[17,19,["H7126"]],[19,20,["H5704","H2008"]],[20,24,["H1696"]],[24,25,["H413"]],[25,26,[]]]},{"k":8571,"v":[[0,6,["H7126"]],[6,7,["H413"]],[7,10,["H802"]],[10,11,["H559"]],[11,13,["H859"]],[13,14,["H3097"]],[14,17,["H559"]],[17,18,["H589"]],[18,23,["H559"]],[23,26,["H8085"]],[26,28,["H1697"]],[28,31,["H519"]],[31,34,["H559"]],[34,35,["H595"]],[35,37,["H8085"]]]},{"k":8572,"v":[[0,3,["H559"]],[3,4,["H559"]],[4,7,["H1696"]],[7,9,["H1696"]],[9,12,["H7223"]],[12,13,["H559"]],[13,17,["H7592","H7592"]],[17,20,["H59"]],[20,22,["H3651"]],[22,24,["H8552"]],[24,26,[]]]},{"k":8573,"v":[[0,1,["H595"]],[1,8,["H7999"]],[8,10,["H539"]],[10,12,["H3478"]],[12,13,["H859"]],[13,14,["H1245"]],[14,16,["H4191"]],[16,18,["H5892"]],[18,21,["H517"]],[21,23,["H3478"]],[23,24,["H4100"]],[24,28,["H1104"]],[28,30,["H5159"]],[30,33,["H3068"]]]},{"k":8574,"v":[[0,2,["H3097"]],[2,3,["H6030"]],[3,5,["H559"]],[5,8,["H2486"]],[8,11,["H2486"]],[11,14,["H518"]],[14,18,["H1104"]],[18,19,["H518"]],[19,20,["H7843"]]]},{"k":8575,"v":[[0,2,["H1697"]],[2,4,["H3808"]],[4,5,["H3651"]],[5,6,["H3588"]],[6,8,["H376"]],[8,10,["H4480","H2022"]],[10,11,["H669"]],[11,12,["H7652"]],[12,14,["H1121"]],[14,16,["H1075"]],[16,18,["H8034"]],[18,21,["H5375"]],[21,23,["H3027"]],[23,26,["H4428"]],[26,29,["H1732"]],[29,30,["H5414"]],[30,32,["H905"]],[32,36,["H1980"]],[36,37,["H4480","H5921"]],[37,39,["H5892"]],[39,42,["H802"]],[42,43,["H559"]],[43,44,["H413"]],[44,45,["H3097"]],[45,46,["H2009"]],[46,48,["H7218"]],[48,51,["H7993"]],[51,52,["H413"]],[52,54,["H1157"]],[54,56,["H2346"]]]},{"k":8576,"v":[[0,3,["H802"]],[3,4,["H935"]],[4,5,["H413"]],[5,6,["H3605"]],[6,8,["H5971"]],[8,11,["H2451"]],[11,15,["H3772","(H853)"]],[15,17,["H7218"]],[17,19,["H7652"]],[19,21,["H1121"]],[21,23,["H1075"]],[23,27,["H7993"]],[27,28,["H413"]],[28,29,["H3097"]],[29,32,["H8628"]],[32,34,["H7782"]],[34,37,["H6327"]],[37,38,["H4480","H5921"]],[38,40,["H5892"]],[40,42,["H376"]],[42,45,["H168"]],[45,47,["H3097"]],[47,48,["H7725"]],[48,50,["H3389"]],[50,51,["H413"]],[51,53,["H4428"]]]},{"k":8577,"v":[[0,2,["H3097"]],[2,4,["H413"]],[4,5,["H3605"]],[5,7,["H6635"]],[7,9,["H3478"]],[9,11,["H1141"]],[11,13,["H1121"]],[13,15,["H3077"]],[15,17,["H5921"]],[17,19,["H3774"]],[19,21,["H5921"]],[21,23,["H6432"]]]},{"k":8578,"v":[[0,2,["H151"]],[2,4,["H5921"]],[4,6,["H4522"]],[6,8,["H3092"]],[8,10,["H1121"]],[10,12,["H286"]],[12,14,["H2142"]]]},{"k":8579,"v":[[0,2,["H7724"]],[2,4,["H5608"]],[4,6,["H6659"]],[6,8,["H54"]],[8,11,["H3548"]]]},{"k":8580,"v":[[0,2,["H5896"]],[2,3,["H1571"]],[3,5,["H2972"]],[5,6,["H1961"]],[6,9,["H3548"]],[9,11,["H1732"]]]},{"k":8581,"v":[[0,3,["H1961"]],[3,5,["H7458"]],[5,8,["H3117"]],[8,10,["H1732"]],[10,11,["H7969"]],[11,12,["H8141"]],[12,13,["H8141"]],[13,14,["H310"]],[14,15,["H8141"]],[15,17,["H1732"]],[17,18,["H1245","H6440"]],[18,21,["H3068"]],[21,24,["H3068"]],[24,25,["H559"]],[25,28,["H413"]],[28,29,["H7586"]],[29,31,["H413"]],[31,33,["H1818"]],[33,34,["H1004"]],[34,35,["H5921","H834"]],[35,37,["H4191","(H853)"]],[37,39,["H1393"]]]},{"k":8582,"v":[[0,3,["H4428"]],[3,4,["H7121"]],[4,6,["H1393"]],[6,8,["H559"]],[8,9,["H413"]],[9,13,["H1393"]],[13,15,["H3808"]],[15,18,["H4480","H1121"]],[18,20,["H3478"]],[20,21,["H3588","H518"]],[21,24,["H4480","H3499"]],[24,27,["H567"]],[27,30,["H1121"]],[30,32,["H3478"]],[32,34,["H7650"]],[34,38,["H7586"]],[38,39,["H1245"]],[39,41,["H5221"]],[41,45,["H7065"]],[45,48,["H1121"]],[48,50,["H3478"]],[50,52,["H3063"]]]},{"k":8583,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1393"]],[6,7,["H4100"]],[7,10,["H6213"]],[10,14,["H4100"]],[14,19,["H3722"]],[19,23,["H1288","(H853)"]],[23,25,["H5159"]],[25,28,["H3068"]]]},{"k":8584,"v":[[0,3,["H1393"]],[3,4,["H559"]],[4,10,["H369"]],[10,11,["H3701"]],[11,13,["H2091"]],[13,14,["H5973"]],[14,15,["H7586"]],[15,17,["H5973"]],[17,19,["H1004"]],[19,20,["H369"]],[20,25,["H4191"]],[25,27,["H376"]],[27,29,["H3478"]],[29,32,["H559"]],[32,33,["H4100"]],[33,34,["H859"]],[34,36,["H559"]],[36,40,["H6213"]],[40,42,[]]]},{"k":8585,"v":[[0,3,["H559","H413"]],[3,5,["H4428"]],[5,7,["H376"]],[7,8,["H834"]],[8,9,["H3615"]],[9,12,["H834"]],[12,13,["H1819"]],[13,20,["H8045"]],[20,22,["H4480","H3320"]],[22,24,["H3605"]],[24,27,["H1366"]],[27,29,["H3478"]]]},{"k":8586,"v":[[0,2,["H7651"]],[2,3,["H376"]],[3,6,["H4480","H1121"]],[6,8,["H5414"]],[8,14,["H3363"]],[14,19,["H3068"]],[19,21,["H1390"]],[21,23,["H7586"]],[23,26,["H3068"]],[26,28,["H972"]],[28,31,["H4428"]],[31,32,["H559"]],[32,33,["H589"]],[33,35,["H5414"]],[35,36,[]]]},{"k":8587,"v":[[0,3,["H4428"]],[3,4,["H2550","H5921"]],[4,5,["H4648"]],[5,7,["H1121"]],[7,9,["H3083"]],[9,11,["H1121"]],[11,13,["H7586"]],[13,14,["H5921"]],[14,17,["H3068"]],[17,18,["H7621"]],[18,19,["H834"]],[19,21,["H996"]],[21,23,["H996"]],[23,24,["H1732"]],[24,26,["H3083"]],[26,28,["H1121"]],[28,30,["H7586"]]]},{"k":8588,"v":[[0,3,["H4428"]],[3,4,["H3947","(H853)"]],[4,6,["H8147"]],[6,7,["H1121"]],[7,9,["H7532"]],[9,11,["H1323"]],[11,13,["H345"]],[13,14,["H834"]],[14,16,["H3205"]],[16,18,["H7586","(H853)"]],[18,19,["H764"]],[19,21,["H4648"]],[21,24,["H2568"]],[24,25,["H1121"]],[25,27,["H4324"]],[27,29,["H1323"]],[29,31,["H7586"]],[31,32,["H834"]],[32,35,["H3205"]],[35,37,["H5741"]],[37,39,["H1121"]],[39,41,["H1271"]],[41,43,["H4259"]]]},{"k":8589,"v":[[0,3,["H5414"]],[3,7,["H3027"]],[7,10,["H1393"]],[10,13,["H3363"]],[13,17,["H2022"]],[17,18,["H6440"]],[18,20,["H3068"]],[20,23,["H5307"]],[23,25,["H7651"]],[25,26,["H3162"]],[26,31,["H4191"]],[31,34,["H3117"]],[34,36,["H7105"]],[36,39,["H7223"]],[39,43,["H8462"]],[43,45,["H8184"]],[45,46,["H7105"]]]},{"k":8590,"v":[[0,2,["H7532"]],[2,4,["H1323"]],[4,6,["H345"]],[6,7,["H3947","(H853)"]],[7,8,["H8242"]],[8,10,["H5186"]],[10,14,["H413"]],[14,16,["H6697"]],[16,19,["H4480","H8462"]],[19,21,["H7105"]],[21,22,["H5704"]],[22,23,["H4325"]],[23,24,["H5413"]],[24,25,["H5921"]],[25,28,["H4480"]],[28,29,["H8064"]],[29,31,["H5414"]],[31,32,["H3808"]],[32,34,["H5775"]],[34,37,["H8064"]],[37,39,["H5117"]],[39,40,["H5921"]],[40,43,["H3119"]],[43,46,["H2416"]],[46,49,["H7704"]],[49,51,["H3915"]]]},{"k":8591,"v":[[0,4,["H5046"]],[4,5,["H1732","(H853)"]],[5,6,["H834"]],[6,7,["H7532"]],[7,9,["H1323"]],[9,11,["H345"]],[11,13,["H6370"]],[13,15,["H7586"]],[15,17,["H6213"]]]},{"k":8592,"v":[[0,2,["H1732"]],[2,3,["H1980"]],[3,5,["H3947","(H853)"]],[5,7,["H6106"]],[7,9,["H7586"]],[9,12,["H6106"]],[12,14,["H3083"]],[14,16,["H1121"]],[16,17,["H4480","H854"]],[17,19,["H1167"]],[19,21,["H3003","H1568"]],[21,22,["H834"]],[22,24,["H1589"]],[24,28,["H4480","H7339"]],[28,30,["H1052"]],[30,31,["H834","H8033"]],[31,33,["H6430"]],[33,35,["H8511"]],[35,37,["H3117"]],[37,39,["H6430"]],[39,41,["H5221","(H853)"]],[41,42,["H7586"]],[42,44,["H1533"]]]},{"k":8593,"v":[[0,4,["H5927"]],[4,6,["H4480","H8033","(H853)"]],[6,8,["H6106"]],[8,10,["H7586"]],[10,13,["H6106"]],[13,15,["H3083"]],[15,17,["H1121"]],[17,20,["H622","(H853)"]],[20,22,["H6106"]],[22,27,["H3363"]]]},{"k":8594,"v":[[0,1,["(H853)"]],[1,3,["H6106"]],[3,5,["H7586"]],[5,7,["H3083"]],[7,9,["H1121"]],[9,10,["H6912"]],[10,14,["H776"]],[14,16,["H1144"]],[16,18,["H6762"]],[18,21,["H6913"]],[21,23,["H7027"]],[23,25,["H1"]],[25,28,["H6213"]],[28,29,["H3605"]],[29,30,["H834"]],[30,32,["H4428"]],[32,33,["H6680"]],[33,36,["H310","H3651"]],[36,37,["H430"]],[37,39,["H6279"]],[39,42,["H776"]]]},{"k":8595,"v":[[0,3,["H6430"]],[3,4,["H1961"]],[4,6,["H4421"]],[6,8,["H854"]],[8,9,["H3478"]],[9,11,["H1732"]],[11,13,["H3381"]],[13,16,["H5650"]],[16,17,["H5973"]],[17,21,["H3898","(H853)"]],[21,23,["H6430"]],[23,25,["H1732"]],[25,27,["H5774"]]]},{"k":8596,"v":[[0,2,["H3430"]],[2,3,["H834"]],[3,7,["H3211"]],[7,10,["H7498"]],[10,12,["H4948"]],[12,15,["H7013"]],[15,17,["H7969"]],[17,18,["H3967"]],[18,21,["H5178"]],[21,23,["H4948"]],[23,24,["H1931"]],[24,26,["H2296"]],[26,29,["H2319"]],[29,31,["H559"]],[31,34,["H5221","(H853)"]],[34,35,["H1732"]]]},{"k":8597,"v":[[0,2,["H52"]],[2,4,["H1121"]],[4,6,["H6870"]],[6,7,["H5826"]],[7,10,["H5221","(H853)"]],[10,12,["H6430"]],[12,14,["H4191"]],[14,16,["H227"]],[16,18,["H376"]],[18,20,["H1732"]],[20,21,["H7650"]],[21,24,["H559"]],[24,27,["H3318"]],[27,28,["H3808"]],[28,29,["H5750"]],[29,34,["H4421"]],[34,37,["H3518"]],[37,38,["H3808","(H853)"]],[38,40,["H5216"]],[40,42,["H3478"]]]},{"k":8598,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H3651"]],[7,10,["H1961"]],[10,11,["H5750"]],[11,13,["H4421"]],[13,14,["H5973"]],[14,16,["H6430"]],[16,18,["H1359"]],[18,19,["H227"]],[19,20,["H5444"]],[20,22,["H2843"]],[22,23,["H5221","(H853)"]],[23,24,["H5593"]],[24,25,["H834"]],[25,29,["H3211"]],[29,32,["H7498"]]]},{"k":8599,"v":[[0,3,["H1961"]],[3,4,["H5750"]],[4,6,["H4421"]],[6,8,["H1359"]],[8,9,["H5973"]],[9,11,["H6430"]],[11,13,["H445"]],[13,15,["H1121"]],[15,17,["H3296"]],[17,19,["H1022"]],[19,20,["H5221"]],[20,23,["(H853)"]],[23,24,["H1555"]],[24,26,["H1663"]],[26,28,["H6086"]],[28,31,["H2595"]],[31,35,["H707"]],[35,36,["H4500"]]]},{"k":8600,"v":[[0,3,["H1961"]],[3,4,["H5750"]],[4,6,["H4421"]],[6,8,["H1661"]],[8,10,["H1961"]],[10,12,["H376"]],[12,15,["H4055"]],[15,20,["H3027"]],[20,21,["H8337"]],[21,22,["H676"]],[22,26,["H7272"]],[26,27,["H8337"]],[27,28,["H676"]],[28,29,["H702"]],[29,31,["H6242"]],[31,33,["H4557"]],[33,35,["H1931"]],[35,36,["H1571"]],[36,38,["H3205"]],[38,41,["H7498"]]]},{"k":8601,"v":[[0,4,["H2778","(H853)"]],[4,5,["H3478"]],[5,6,["H3083"]],[6,8,["H1121"]],[8,10,["H8092"]],[10,12,["H251"]],[12,14,["H1732"]],[14,15,["H5221"]],[15,16,[]]]},{"k":8602,"v":[[0,1,["H428","(H853)"]],[1,2,["H702"]],[2,4,["H3205"]],[4,7,["H7498"]],[7,9,["H1661"]],[9,11,["H5307"]],[11,14,["H3027"]],[14,16,["H1732"]],[16,20,["H3027"]],[20,23,["H5650"]]]},{"k":8603,"v":[[0,2,["H1732"]],[2,3,["H1696"]],[3,6,["H3068","(H853)"]],[6,8,["H1697"]],[8,10,["H2063"]],[10,11,["H7892"]],[11,14,["H3117"]],[14,17,["H3068"]],[17,19,["H5337"]],[19,24,["H4480","H3709"]],[24,26,["H3605"]],[26,28,["H341"]],[28,33,["H4480","H3709"]],[33,35,["H7586"]]]},{"k":8604,"v":[[0,3,["H559"]],[3,5,["H3068"]],[5,8,["H5553"]],[8,11,["H4686"]],[11,14,["H6403"]]]},{"k":8605,"v":[[0,2,["H430"]],[2,5,["H6697"]],[5,10,["H2620"]],[10,14,["H4043"]],[14,17,["H7161"]],[17,20,["H3468"]],[20,23,["H4869"]],[23,26,["H4498"]],[26,28,["H3467"]],[28,30,["H3467"]],[30,33,["H4480","H2555"]]]},{"k":8606,"v":[[0,4,["H7121"]],[4,6,["H3068"]],[6,12,["H1984"]],[12,17,["H3467"]],[17,20,["H4480","H341"]]]},{"k":8607,"v":[[0,1,["H3588"]],[1,3,["H4867"]],[3,5,["H4194"]],[5,6,["H661"]],[6,9,["H5158"]],[9,11,["H1100"]],[11,15,["H1204"]]]},{"k":8608,"v":[[0,2,["H2256"]],[2,4,["H7585"]],[4,7,["H5437"]],[7,9,["H4170"]],[9,11,["H4194"]],[11,12,["H6923"]],[12,13,[]]]},{"k":8609,"v":[[0,3,["H6862"]],[3,6,["H7121"]],[6,8,["H3068"]],[8,10,["H7121"]],[10,11,["H413"]],[11,13,["H430"]],[13,17,["H8085"]],[17,19,["H6963"]],[19,23,["H4480","H1964"]],[23,26,["H7775"]],[26,31,["H241"]]]},{"k":8610,"v":[[0,3,["H776"]],[3,4,["H1607"]],[4,6,["H7493"]],[6,8,["H4146"]],[8,10,["H8064"]],[10,11,["H7264"]],[11,13,["H1607"]],[13,14,["H3588"]],[14,17,["H2734"]]]},{"k":8611,"v":[[0,3,["H5927"]],[3,5,["H6227"]],[5,9,["H639"]],[9,11,["H784"]],[11,15,["H4480","H6310"]],[15,16,["H398"]],[16,17,["H1513"]],[17,19,["H1197"]],[19,20,["H4480"]],[20,21,[]]]},{"k":8612,"v":[[0,2,["H5186"]],[2,4,["H8064"]],[4,8,["H3381"]],[8,10,["H6205"]],[10,12,["H8478"]],[12,14,["H7272"]]]},{"k":8613,"v":[[0,3,["H7392"]],[3,4,["H5921"]],[4,6,["H3742"]],[6,9,["H5774"]],[9,13,["H7200"]],[13,14,["H5921"]],[14,16,["H3671"]],[16,19,["H7307"]]]},{"k":8614,"v":[[0,3,["H7896"]],[3,4,["H2822"]],[4,5,["H5521"]],[5,7,["H5439"]],[7,9,["H2841"]],[9,10,["H4325"]],[10,13,["H5645"]],[13,16,["H7834"]]]},{"k":8615,"v":[[0,3,["H4480","H5051"]],[3,4,["H5048"]],[4,7,["H1513"]],[7,9,["H784"]],[9,10,["H1197"]]]},{"k":8616,"v":[[0,2,["H3068"]],[2,3,["H7481"]],[3,4,["H4480"]],[4,5,["H8064"]],[5,9,["H5945"]],[9,10,["H5414"]],[10,12,["H6963"]]]},{"k":8617,"v":[[0,4,["H7971"]],[4,5,["H2671"]],[5,7,["H6327"]],[7,9,["H1300"]],[9,11,["H2000"]],[11,12,[]]]},{"k":8618,"v":[[0,3,["H650"]],[3,6,["H3220"]],[6,7,["H7200"]],[7,9,["H4146"]],[9,12,["H8398"]],[12,14,["H1540"]],[14,17,["H1606"]],[17,20,["H3068"]],[20,23,["H4480","H5397"]],[23,26,["H7307"]],[26,29,["H639"]]]},{"k":8619,"v":[[0,2,["H7971"]],[2,4,["H4480","H4791"]],[4,6,["H3947"]],[6,9,["H4871"]],[9,14,["H4480","H4325","H7227"]]]},{"k":8620,"v":[[0,2,["H5337"]],[2,7,["H4480","H341","H5794"]],[7,12,["H4480","H8130"]],[12,14,["H3588"]],[14,18,["H553"]],[18,19,["H4480"]],[19,20,[]]]},{"k":8621,"v":[[0,2,["H6923"]],[2,6,["H3117"]],[6,9,["H343"]],[9,12,["H3068"]],[12,13,["H1961"]],[13,15,["H4937"]]]},{"k":8622,"v":[[0,4,["H3318"]],[4,9,["H4800","(H853)"]],[9,11,["H2502"]],[11,13,["H3588"]],[13,15,["H2654"]],[15,17,[]]]},{"k":8623,"v":[[0,2,["H3068"]],[2,3,["H1580"]],[3,8,["H6666"]],[8,12,["H1252"]],[12,15,["H3027"]],[15,18,["H7725"]],[18,19,[]]]},{"k":8624,"v":[[0,1,["H3588"]],[1,4,["H8104"]],[4,6,["H1870"]],[6,9,["H3068"]],[9,12,["H3808"]],[12,13,["H7561"]],[13,17,["H4480","H430"]]]},{"k":8625,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H4941"]],[4,6,["H5048"]],[6,12,["H2708"]],[12,15,["H3808"]],[15,16,["H5493"]],[16,17,["H4480"]],[17,18,[]]]},{"k":8626,"v":[[0,2,["H1961"]],[2,4,["H8549"]],[4,10,["H8104"]],[10,13,["H4480","H5771"]]]},{"k":8627,"v":[[0,3,["H3068"]],[3,5,["H7725"]],[5,10,["H6666"]],[10,14,["H1252"]],[14,15,["H5048"]],[15,18,["H5869"]]]},{"k":8628,"v":[[0,1,["H5973"]],[1,3,["H2623"]],[3,8,["H2616"]],[8,10,["H5973"]],[10,12,["H8549"]],[12,13,["H1368"]],[13,18,["H8552"]]]},{"k":8629,"v":[[0,1,["H5973"]],[1,3,["H2889"]],[3,8,["H1305"]],[8,10,["H5973"]],[10,12,["H6141"]],[12,17,["H6617"]]]},{"k":8630,"v":[[0,3,["H6041"]],[3,4,["H5971"]],[4,7,["H3467"]],[7,10,["H5869"]],[10,12,["H5921"]],[12,14,["H7311"]],[14,20,["H8213"]]]},{"k":8631,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,5,["H5216"]],[5,7,["H3068"]],[7,10,["H3068"]],[10,12,["H5050"]],[12,14,["H2822"]]]},{"k":8632,"v":[[0,1,["H3588"]],[1,6,["H7323"]],[6,9,["H1416"]],[9,12,["H430"]],[12,15,["H1801"]],[15,18,["H7791"]]]},{"k":8633,"v":[[0,3,["H410"]],[3,5,["H1870"]],[5,7,["H8549"]],[7,9,["H565"]],[9,12,["H3068"]],[12,14,["H6884"]],[14,15,["H1931"]],[15,18,["H4043"]],[18,20,["H3605"]],[20,23,["H2620"]],[23,25,[]]]},{"k":8634,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,4,["H410"]],[4,5,["H4480","H1107"]],[5,7,["H3068"]],[7,9,["H4310"]],[9,12,["H6697"]],[12,13,["H4480","H1107"]],[13,15,["H430"]]]},{"k":8635,"v":[[0,1,["H410"]],[1,4,["H4581"]],[4,6,["H2428"]],[6,9,["H5425"]],[9,11,["H1870"]],[11,12,["H8549"]]]},{"k":8636,"v":[[0,2,["H7737"]],[2,4,["H7272"]],[4,6,["H355"]],[6,9,["H5975"]],[9,11,["H5921"]],[11,14,["H1116"]]]},{"k":8637,"v":[[0,2,["H3925"]],[2,4,["H3027"]],[4,6,["H4421"]],[6,10,["H7198"]],[10,12,["H5154"]],[12,14,["H5181"]],[14,17,["H2220"]]]},{"k":8638,"v":[[0,4,["H5414"]],[4,7,["H4043"]],[7,10,["H3468"]],[10,13,["H6038"]],[13,17,["H7235"]]]},{"k":8639,"v":[[0,3,["H7337"]],[3,5,["H6806"]],[5,6,["H8478"]],[6,11,["H7166"]],[11,13,["H3808"]],[13,14,["H4571"]]]},{"k":8640,"v":[[0,3,["H7291"]],[3,5,["H341"]],[5,7,["H8045"]],[7,12,["H3808","H7725"]],[12,13,["H5704"]],[13,16,["H3615"]],[16,17,[]]]},{"k":8641,"v":[[0,4,["H3615"]],[4,7,["H4272"]],[7,12,["H3808"]],[12,13,["H6965"]],[13,17,["H5307"]],[17,18,["H8478"]],[18,20,["H7272"]]]},{"k":8642,"v":[[0,4,["H247"]],[4,7,["H2428"]],[7,9,["H4421"]],[9,13,["H6965"]],[13,18,["H3766"]],[18,19,["H8478"]],[19,20,[]]]},{"k":8643,"v":[[0,4,["H5414"]],[4,7,["H6203"]],[7,10,["H341"]],[10,14,["H6789"]],[14,17,["H8130"]],[17,18,[]]]},{"k":8644,"v":[[0,2,["H8159"]],[2,6,["H369"]],[6,8,["H3467"]],[8,10,["H413"]],[10,12,["H3068"]],[12,15,["H6030"]],[15,17,["H3808"]]]},{"k":8645,"v":[[0,4,["H7833"]],[4,10,["H6083"]],[10,13,["H776"]],[13,16,["H1854"]],[16,20,["H2916"]],[20,23,["H2351"]],[23,28,["H7554"]]]},{"k":8646,"v":[[0,4,["H6403"]],[4,8,["H4480","H7379"]],[8,11,["H5971"]],[11,14,["H8104"]],[14,18,["H7218"]],[18,21,["H1471"]],[21,23,["H5971"]],[23,26,["H3045"]],[26,27,["H3808"]],[27,29,["H5647"]],[29,30,[]]]},{"k":8647,"v":[[0,1,["H1121","H5236"]],[1,4,["H3584"]],[4,11,["H8085","H241"]],[11,15,["H8085"]],[15,17,[]]]},{"k":8648,"v":[[0,1,["H1121","H5236"]],[1,4,["H5034"]],[4,9,["H2296"]],[9,14,["H4480","H4526"]]]},{"k":8649,"v":[[0,2,["H3068"]],[2,3,["H2416"]],[3,5,["H1288"]],[5,8,["H6697"]],[8,10,["H7311"]],[10,13,["H430"]],[13,16,["H6697"]],[16,19,["H3468"]]]},{"k":8650,"v":[[0,3,["H410"]],[3,5,["H5414","H5360"]],[5,10,["H8213"]],[10,12,["H5971"]],[12,13,["H8478"]],[13,14,[]]]},{"k":8651,"v":[[0,5,["H3318"]],[5,8,["H4480","H341"]],[8,16,["H7311"]],[16,21,["H4480","H6965"]],[21,26,["H5337"]],[26,31,["H4480","H376","H2555"]]]},{"k":8652,"v":[[0,1,["H5921","H3651"]],[1,5,["H3034"]],[5,9,["H3068"]],[9,12,["H1471"]],[12,17,["H2167"]],[17,20,["H8034"]]]},{"k":8653,"v":[[0,4,["H4024"]],[4,6,["H3444"]],[6,9,["H4428"]],[9,11,["H6213"]],[11,12,["H2617"]],[12,15,["H4899"]],[15,17,["H1732"]],[17,21,["H2233"]],[21,23,["H5704","H5769"]]]},{"k":8654,"v":[[0,2,["H428"]],[2,5,["H314"]],[5,6,["H1697"]],[6,8,["H1732"]],[8,9,["H1732"]],[9,11,["H1121"]],[11,13,["H3448"]],[13,14,["H5002","(H1732)"]],[14,17,["H1397"]],[17,21,["H6965"]],[21,23,["H5920"]],[23,25,["H4899"]],[25,28,["H430"]],[28,30,["H3290"]],[30,33,["H5273"]],[33,34,["H2158"]],[34,36,["H3478"]],[36,37,["H5002"]]]},{"k":8655,"v":[[0,2,["H7307"]],[2,5,["H3068"]],[5,6,["H1696"]],[6,11,["H4405"]],[11,13,["H5921"]],[13,15,["H3956"]]]},{"k":8656,"v":[[0,2,["H430"]],[2,4,["H3478"]],[4,5,["H559"]],[5,7,["H6697"]],[7,9,["H3478"]],[9,10,["H1696"]],[10,16,["H4910"]],[16,17,["H120"]],[17,20,["H6662"]],[20,21,["H4910"]],[21,24,["H3374"]],[24,26,["H430"]]]},{"k":8657,"v":[[0,7,["H216"]],[7,10,["H1242"]],[10,13,["H8121"]],[13,14,["H2224"]],[14,17,["H1242"]],[17,18,["H3808"]],[18,19,["H5645"]],[19,23,["H1877"]],[23,28,["H4480","H776"]],[28,31,["H4480","H5051"]],[31,33,["H4480","H4306"]]]},{"k":8658,"v":[[0,1,["H3588"]],[1,3,["H1004"]],[3,5,["H3808"]],[5,6,["H3651"]],[6,7,["H5973"]],[7,8,["H410"]],[8,9,["H3588"]],[9,12,["H7760"]],[12,16,["H5769"]],[16,17,["H1285"]],[17,18,["H6186"]],[18,20,["H3605"]],[20,23,["H8104"]],[23,24,["H3588"]],[24,27,["H3605"]],[27,29,["H3468"]],[29,31,["H3605"]],[31,33,["H2656"]],[33,34,["H3588"]],[34,38,["H3808"]],[38,40,["H6779"]]]},{"k":8659,"v":[[0,5,["H1100"]],[5,8,["H3605"]],[8,12,["H6975"]],[12,14,["H5074"]],[14,15,["H3588"]],[15,17,["H3808"]],[17,19,["H3947"]],[19,21,["H3027"]]]},{"k":8660,"v":[[0,3,["H376"]],[3,6,["H5060"]],[6,10,["H4390"]],[10,12,["H1270"]],[12,15,["H6086"]],[15,18,["H2595"]],[18,24,["H8313","H8313"]],[24,26,["H784"]],[26,30,["H7675"]]]},{"k":8661,"v":[[0,1,["H428"]],[1,4,["H8034"]],[4,8,["H1368"]],[8,9,["H834"]],[9,10,["H1732"]],[10,13,["H8461"]],[13,15,["H3427"]],[15,18,["H7675"]],[18,19,["H7218"]],[19,22,["H7991"]],[22,24,["H1931"]],[24,26,["H5722"]],[26,28,["H6112"]],[28,34,["H5921"]],[34,35,["H8083"]],[35,36,["H3967"]],[36,39,["H2491"]],[39,41,["H259"]],[41,42,["H6471"]]]},{"k":8662,"v":[[0,2,["H310"]],[2,5,["H499"]],[5,7,["H1121"]],[7,9,["H1734"]],[9,11,["H1121","H266"]],[11,15,["H7969"]],[15,17,["H1368"]],[17,18,["H5973"]],[18,19,["H1732"]],[19,22,["H2778"]],[22,24,["H6430"]],[24,27,["H8033"]],[27,29,["H622"]],[29,31,["H4421"]],[31,34,["H376"]],[34,36,["H3478"]],[36,39,["H5927"]]]},{"k":8663,"v":[[0,1,["H1931"]],[1,2,["H6965"]],[2,4,["H5221"]],[4,6,["H6430"]],[6,7,["H5704","H3588"]],[7,9,["H3027"]],[9,11,["H3021"]],[11,14,["H3027"]],[14,15,["H1692"]],[15,16,["H413"]],[16,18,["H2719"]],[18,21,["H3068"]],[21,22,["H6213"]],[22,24,["H1419"]],[24,25,["H8668"]],[25,26,["H1931"]],[26,27,["H3117"]],[27,30,["H5971"]],[30,31,["H7725"]],[31,32,["H310"]],[32,34,["H389"]],[34,36,["H6584"]]]},{"k":8664,"v":[[0,2,["H310"]],[2,5,["H8048"]],[5,7,["H1121"]],[7,9,["H89"]],[9,11,["H2043"]],[11,14,["H6430"]],[14,17,["H622"]],[17,20,["H2416"]],[20,21,["H8033"]],[21,22,["H1961"]],[22,24,["H2513"]],[24,26,["H7704"]],[26,27,["H4392"]],[27,29,["H5742"]],[29,32,["H5971"]],[32,33,["H5127"]],[33,34,["H4480","H6440"]],[34,36,["H6430"]]]},{"k":8665,"v":[[0,3,["H3320"]],[3,6,["H8432"]],[6,9,["H2513"]],[9,11,["H5337"]],[11,14,["H5221","(H853)"]],[14,16,["H6430"]],[16,19,["H3068"]],[19,20,["H6213"]],[20,22,["H1419"]],[22,23,["H8668"]]]},{"k":8666,"v":[[0,2,["H7969"]],[2,5,["H7970"]],[5,6,["H7218"]],[6,8,["H3381"]],[8,10,["H935"]],[10,11,["H413"]],[11,12,["H1732"]],[12,13,["H413"]],[13,16,["H7105"]],[16,17,["H413"]],[17,19,["H4631"]],[19,21,["H5725"]],[21,24,["H2416"]],[24,27,["H6430"]],[27,28,["H2583"]],[28,31,["H6010"]],[31,33,["H7497"]]]},{"k":8667,"v":[[0,2,["H1732"]],[2,4,["H227"]],[4,7,["H4686"]],[7,10,["H4673"]],[10,13,["H6430"]],[13,15,["H227"]],[15,17,["H1035"]]]},{"k":8668,"v":[[0,2,["H1732"]],[2,3,["H183"]],[3,5,["H559"]],[5,8,["H4310"]],[8,12,["H8248"]],[12,15,["H4325"]],[15,18,["H4480","H953"]],[18,20,["H1035"]],[20,21,["H834"]],[21,25,["H8179"]]]},{"k":8669,"v":[[0,3,["H7969"]],[3,5,["H1368"]],[5,7,["H1234"]],[7,9,["H4264"]],[9,12,["H6430"]],[12,14,["H7579"]],[14,15,["H4325"]],[15,19,["H4480","H953"]],[19,21,["H1035"]],[21,22,["H834"]],[22,26,["H8179"]],[26,28,["H5375"]],[28,31,["H935"]],[31,33,["H413"]],[33,34,["H1732"]],[34,37,["H14"]],[37,38,["H3808"]],[38,39,["H8354"]],[39,44,["H5258","(H853)"]],[44,47,["H3068"]]]},{"k":8670,"v":[[0,3,["H559"]],[3,6,["H2486"]],[6,10,["H3068"]],[10,14,["H4480","H6213"]],[14,15,["H2063"]],[15,20,["H1818"]],[20,23,["H376"]],[23,25,["H1980"]],[25,30,["H5315"]],[30,33,["H14"]],[33,34,["H3808"]],[34,35,["H8354"]],[35,37,["H428"]],[37,39,["H6213"]],[39,41,["H7969"]],[41,43,["H1368"]]]},{"k":8671,"v":[[0,2,["H52"]],[2,4,["H251"]],[4,6,["H3097"]],[6,8,["H1121"]],[8,10,["H6870"]],[10,12,["H7218"]],[12,14,["H7992"]],[14,16,["H1931"]],[16,18,["H5782","(H853)"]],[18,20,["H2595"]],[20,21,["H5921"]],[21,22,["H7969"]],[22,23,["H3967"]],[23,25,["H2491"]],[25,30,["H8034"]],[30,32,["H7969"]]]},{"k":8672,"v":[[0,3,["H3588"]],[3,4,["H4480"]],[4,5,["H3513"]],[5,7,["H7969"]],[7,10,["H1961"]],[10,12,["H8269"]],[12,15,["H935"]],[15,16,["H3808"]],[16,17,["H5704"]],[17,20,["H7969"]]]},{"k":8673,"v":[[0,2,["H1141"]],[2,4,["H1121"]],[4,6,["H3077"]],[6,8,["H1121"]],[8,11,["H2428"]],[11,12,["H376"]],[12,14,["H4480","H6909"]],[14,19,["H7227","H6467"]],[19,20,["H1931"]],[20,21,["H5221","(H853)"]],[21,22,["H8147"]],[22,24,["H739"]],[24,26,["H4124"]],[26,27,["H1931"]],[27,29,["H3381"]],[29,32,["H5221","(H853)"]],[32,34,["H738"]],[34,37,["H8432"]],[37,40,["H8432","H953"]],[40,42,["H3117"]],[42,44,["H7950"]]]},{"k":8674,"v":[[0,2,["H1931"]],[2,3,["H5221","(H853)"]],[3,5,["H376","H4713"]],[5,7,["H4758"]],[7,8,["H376"]],[8,11,["H4713"]],[11,14,["H2595"]],[14,17,["H3027"]],[17,21,["H3381"]],[21,22,["H413"]],[22,26,["H7626"]],[26,28,["H1497","(H853)"]],[28,30,["H2595"]],[30,35,["H4480","H3027","H4713"]],[35,37,["H5221"]],[37,42,["H2595"]]]},{"k":8675,"v":[[0,1,["H428"]],[1,3,["H6213"]],[3,4,["H1141"]],[4,6,["H1121"]],[6,8,["H3077"]],[8,12,["H8034"]],[12,14,["H7969"]],[14,16,["H1368"]]]},{"k":8676,"v":[[0,4,["H3513"]],[4,5,["H4480"]],[5,7,["H7970"]],[7,10,["H935"]],[10,11,["H3808"]],[11,12,["H413"]],[12,15,["H7969"]],[15,17,["H1732"]],[17,18,["H7760"]],[18,20,["H413"]],[20,22,["H4928"]]]},{"k":8677,"v":[[0,1,["H6214"]],[1,3,["H251"]],[3,5,["H3097"]],[5,10,["H7970"]],[10,11,["H445"]],[11,13,["H1121"]],[13,15,["H1734"]],[15,17,["H1035"]]]},{"k":8678,"v":[[0,1,["H8048"]],[1,3,["H2733"]],[3,4,["H470"]],[4,6,["H2733"]]]},{"k":8679,"v":[[0,1,["H2503"]],[1,3,["H6407"]],[3,4,["H5896"]],[4,6,["H1121"]],[6,8,["H6142"]],[8,10,["H8621"]]]},{"k":8680,"v":[[0,1,["H44"]],[1,3,["H6069"]],[3,4,["H4012"]],[4,6,["H2843"]]]},{"k":8681,"v":[[0,1,["H6756"]],[1,3,["H266"]],[3,4,["H4121"]],[4,6,["H5200"]]]},{"k":8682,"v":[[0,1,["H2460"]],[1,3,["H1121"]],[3,5,["H1196"]],[5,7,["H5200"]],[7,8,["H863"]],[8,10,["H1121"]],[10,12,["H7380"]],[12,15,["H4480","H1390"]],[15,18,["H1121"]],[18,20,["H1144"]]]},{"k":8683,"v":[[0,1,["H1141"]],[1,3,["H6553"]],[3,4,["H1914"]],[4,7,["H4480","H5158"]],[7,9,["H1608"]]]},{"k":8684,"v":[[0,1,["H45"]],[1,3,["H6164"]],[3,4,["H5820"]],[4,6,["H1273"]]]},{"k":8685,"v":[[0,1,["H455"]],[1,3,["H8170"]],[3,6,["H1121"]],[6,8,["H3464"]],[8,9,["H3083"]]]},{"k":8686,"v":[[0,1,["H8048"]],[1,3,["H2043"]],[3,4,["H279"]],[4,6,["H1121"]],[6,8,["H8325"]],[8,10,["H2043"]]]},{"k":8687,"v":[[0,1,["H467"]],[1,3,["H1121"]],[3,5,["H308"]],[5,7,["H1121"]],[7,10,["H4602"]],[10,11,["H463"]],[11,13,["H1121"]],[13,15,["H302"]],[15,17,["H1526"]]]},{"k":8688,"v":[[0,1,["H2695"]],[1,3,["H3761"]],[3,4,["H6474"]],[4,6,["H701"]]]},{"k":8689,"v":[[0,1,["H3008"]],[1,3,["H1121"]],[3,5,["H5416"]],[5,7,["H4480","H6678"]],[7,8,["H1137"]],[8,10,["H1425"]]]},{"k":8690,"v":[[0,1,["H6768"]],[1,3,["H5984"]],[3,4,["H5171"]],[4,6,["H886"]],[6,7,["H3627","H5375"]],[7,9,["H3097"]],[9,11,["H1121"]],[11,13,["H6870"]]]},{"k":8691,"v":[[0,1,["H5896"]],[1,3,["H3505"]],[3,4,["H1619"]],[4,6,["H3505"]]]},{"k":8692,"v":[[0,1,["H223"]],[1,3,["H2850"]],[3,4,["H7970"]],[4,6,["H7651"]],[6,8,["H3605"]]]},{"k":8693,"v":[[0,2,["H3254"]],[2,4,["H639"]],[4,7,["H3068"]],[7,9,["H2734"]],[9,11,["H3478"]],[11,14,["H5496","(H853)"]],[14,15,["H1732"]],[15,19,["H559"]],[19,20,["H1980"]],[20,21,["H4487","(H853)"]],[21,22,["H3478"]],[22,24,["H3063"]]]},{"k":8694,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3097"]],[6,8,["H8269"]],[8,11,["H2428"]],[11,12,["H834"]],[12,14,["H854"]],[14,16,["H7751"]],[16,17,["H4994"]],[17,19,["H3605"]],[19,21,["H7626"]],[21,23,["H3478"]],[23,25,["H4480","H1835"]],[25,27,["H5704"]],[27,28,["H884"]],[28,30,["H6485"]],[30,31,["(H853)"]],[31,33,["H5971"]],[33,37,["H3045","(H853)"]],[37,39,["H4557"]],[39,42,["H5971"]]]},{"k":8695,"v":[[0,2,["H3097"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,9,["H3068"]],[9,11,["H430"]],[11,12,["H3254"]],[12,13,["H413"]],[13,15,["H5971"]],[15,20,["H1992","H1992"]],[20,22,["H3967","H6471"]],[22,26,["H5869"]],[26,29,["H113"]],[29,31,["H4428"]],[31,33,["H7200"]],[33,36,["H4100"]],[36,39,["H113"]],[39,41,["H4428"]],[41,42,["H2654"]],[42,44,["H2088"]],[44,45,["H1697"]]]},{"k":8696,"v":[[0,3,["H4428"]],[3,4,["H1697"]],[4,5,["H2388"]],[5,6,["H413"]],[6,7,["H3097"]],[7,9,["H5921"]],[9,11,["H8269"]],[11,14,["H2428"]],[14,16,["H3097"]],[16,19,["H8269"]],[19,22,["H2428"]],[22,24,["H3318"]],[24,27,["H6440"]],[27,30,["H4428"]],[30,32,["H6485","(H853)"]],[32,34,["H5971"]],[34,36,["H3478"]]]},{"k":8697,"v":[[0,4,["H5674","(H853)"]],[4,5,["H3383"]],[5,7,["H2583"]],[7,9,["H6177"]],[9,13,["H3225"]],[13,16,["H5892"]],[16,17,["H834"]],[17,21,["H8432"]],[21,24,["H5158"]],[24,26,["H1410"]],[26,28,["H413"]],[28,29,["H3270"]]]},{"k":8698,"v":[[0,3,["H935"]],[3,5,["H1568"]],[5,7,["H413"]],[7,9,["H776"]],[9,11,["H8483"]],[11,14,["H935"]],[14,16,["H1842"]],[16,18,["H5439"]],[18,19,["H413"]],[19,20,["H6721"]]]},{"k":8699,"v":[[0,2,["H935"]],[2,6,["H4013"]],[6,8,["H6865"]],[8,11,["H3605"]],[11,13,["H5892"]],[13,16,["H2340"]],[16,20,["H3669"]],[20,24,["H3318"]],[24,25,["H413"]],[25,27,["H5045"]],[27,29,["H3063"]],[29,32,["H884"]]]},{"k":8700,"v":[[0,5,["H7751"]],[5,7,["H3605"]],[7,9,["H776"]],[9,11,["H935"]],[11,13,["H3389"]],[13,16,["H4480","H7097"]],[16,18,["H8672"]],[18,19,["H2320"]],[19,21,["H6242"]],[21,22,["H3117"]]]},{"k":8701,"v":[[0,2,["H3097"]],[2,4,["H5414","(H853)"]],[4,6,["H4557"]],[6,9,["H4662"]],[9,12,["H5971"]],[12,13,["H413"]],[13,15,["H4428"]],[15,18,["H1961"]],[18,20,["H3478"]],[20,21,["H8083"]],[21,22,["H3967"]],[22,23,["H505"]],[23,24,["H2428"]],[24,25,["H376"]],[25,27,["H8025"]],[27,29,["H2719"]],[29,32,["H376"]],[32,34,["H3063"]],[34,36,["H2568"]],[36,37,["H3967"]],[37,38,["H505"]],[38,39,["H376"]]]},{"k":8702,"v":[[0,2,["H1732"]],[2,3,["H3820"]],[3,4,["H5221"]],[4,6,["H310"]],[6,7,["H3651"]],[7,10,["H5608","(H853)"]],[10,12,["H5971"]],[12,14,["H1732"]],[14,15,["H559"]],[15,16,["H413"]],[16,18,["H3068"]],[18,21,["H2398"]],[21,22,["H3966"]],[22,24,["H834"]],[24,27,["H6213"]],[27,29,["H6258"]],[29,32,["H4994"]],[32,34,["H3068"]],[34,36,["H5674","(H853)"]],[36,38,["H5771"]],[38,41,["H5650"]],[41,42,["H3588"]],[42,46,["H3966"]],[46,47,["H5528"]]]},{"k":8703,"v":[[0,3,["H1732"]],[3,5,["H6965"]],[5,8,["H1242"]],[8,10,["H1697"]],[10,13,["H3068"]],[13,14,["H1961"]],[14,15,["H413"]],[15,17,["H5030"]],[17,18,["H1410"]],[18,19,["H1732"]],[19,20,["H2374"]],[20,21,["H559"]]]},{"k":8704,"v":[[0,1,["H1980"]],[1,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,6,["H3541"]],[6,7,["H1696"]],[7,9,["H3068"]],[9,10,["H595"]],[10,11,["H5190","H5921"]],[11,13,["H7969"]],[13,15,["H977"]],[15,17,["H259"]],[17,18,["H4480"]],[18,23,["H6213"]],[23,26,[]]]},{"k":8705,"v":[[0,2,["H1410"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H1732"]],[5,7,["H5046"]],[7,10,["H559"]],[10,14,["H7651"]],[14,15,["H8141"]],[15,17,["H7458"]],[17,18,["H935"]],[18,23,["H776"]],[23,24,["H518"]],[24,27,["H5127"]],[27,28,["H7969"]],[28,29,["H2320"]],[29,30,["H6440"]],[30,32,["H6862"]],[32,34,["H1931"]],[34,35,["H7291"]],[35,37,["H518"]],[37,40,["H1961"]],[40,41,["H7969"]],[41,42,["H3117"]],[42,43,["H1698"]],[43,46,["H776"]],[46,47,["H6258"]],[47,48,["H3045"]],[48,50,["H7200"]],[50,51,["H4100"]],[51,52,["H1697"]],[52,55,["H7725"]],[55,59,["H7971"]],[59,60,[]]]},{"k":8706,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1410"]],[5,10,["H3966"]],[10,11,["H6862"]],[11,14,["H5307"]],[14,15,["H4994"]],[15,18,["H3027"]],[18,21,["H3068"]],[21,22,["H3588"]],[22,24,["H7356"]],[24,26,["H7227"]],[26,30,["H408"]],[30,31,["H5307"]],[31,34,["H3027"]],[34,36,["H120"]]]},{"k":8707,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,6,["H1698"]],[6,8,["H3478"]],[8,11,["H1242"]],[11,13,["H5704"]],[13,15,["H6256"]],[15,16,["H4150"]],[16,19,["H4191"]],[19,20,["H4480"]],[20,22,["H5971"]],[22,24,["H4480","H1835"]],[24,26,["H5704"]],[26,27,["H884"]],[27,28,["H7657"]],[28,29,["H505"]],[29,30,["H376"]]]},{"k":8708,"v":[[0,4,["H4397"]],[4,6,["H7971"]],[6,8,["H3027"]],[8,10,["H3389"]],[10,12,["H7843"]],[12,15,["H3068"]],[15,17,["H5162"]],[17,18,["H413"]],[18,20,["H7451"]],[20,22,["H559"]],[22,25,["H4397"]],[25,27,["H7843"]],[27,29,["H5971"]],[29,32,["H7227"]],[32,33,["H7503"]],[33,34,["H6258"]],[34,36,["H3027"]],[36,39,["H4397"]],[39,42,["H3068"]],[42,43,["H1961"]],[43,44,["H5973"]],[44,46,["H1637"]],[46,48,["H728"]],[48,50,["H2983"]]]},{"k":8709,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3068"]],[6,9,["H7200","(H853)"]],[9,11,["H4397"]],[11,13,["H5221"]],[13,15,["H5971"]],[15,17,["H559"]],[17,18,["H2009"]],[18,19,["H595"]],[19,21,["H2398"]],[21,23,["H595"]],[23,26,["H5753"]],[26,28,["H428"]],[28,29,["H6629"]],[29,30,["H4100"]],[30,33,["H6213"]],[33,36,["H3027"]],[36,39,["H4994"]],[39,40,["H1961"]],[40,46,["H1"]],[46,47,["H1004"]]]},{"k":8710,"v":[[0,2,["H1410"]],[2,3,["H935"]],[3,4,["H1931"]],[4,5,["H3117"]],[5,6,["H413"]],[6,7,["H1732"]],[7,9,["H559"]],[9,13,["H5927"]],[13,14,["H6965"]],[14,16,["H4196"]],[16,19,["H3068"]],[19,22,["H1637"]],[22,24,["H728"]],[24,26,["H2983"]]]},{"k":8711,"v":[[0,2,["H1732"]],[2,6,["H1697"]],[6,8,["H1410"]],[8,10,["H5927"]],[10,11,["H834"]],[11,13,["H3068"]],[13,14,["H6680"]]]},{"k":8712,"v":[[0,2,["H728"]],[2,3,["H8259"]],[3,5,["H7200","(H853)"]],[5,7,["H4428"]],[7,10,["H5650"]],[10,12,["H5674"]],[12,13,["H5921"]],[13,16,["H728"]],[16,18,["H3318"]],[18,21,["H7812"]],[21,24,["H4428"]],[24,27,["H639"]],[27,30,["H776"]]]},{"k":8713,"v":[[0,2,["H728"]],[2,3,["H559"]],[3,4,["H4069"]],[4,7,["H113"]],[7,9,["H4428"]],[9,10,["H935"]],[10,11,["H413"]],[11,13,["H5650"]],[13,15,["H1732"]],[15,16,["H559"]],[16,18,["H7069","(H853)"]],[18,20,["H1637"]],[20,21,["H4480","H5973"]],[21,24,["H1129"]],[24,26,["H4196"]],[26,29,["H3068"]],[29,32,["H4046"]],[32,35,["H6113"]],[35,36,["H4480","H5921"]],[36,38,["H5971"]]]},{"k":8714,"v":[[0,2,["H728"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,8,["H113"]],[8,10,["H4428"]],[10,11,["H3947"]],[11,14,["H5927"]],[14,17,["H2896"]],[17,19,["H5869"]],[19,20,["H7200"]],[20,23,["H1241"]],[23,26,["H5930"]],[26,29,["H4173"]],[29,32,["H3627"]],[32,35,["H1241"]],[35,37,["H6086"]]]},{"k":8715,"v":[[0,1,["H3605"]],[1,5,["H728"]],[5,8,["H4428"]],[8,9,["H5414"]],[9,10,["H413"]],[10,12,["H4428"]],[12,14,["H728"]],[14,15,["H559"]],[15,18,["H4428"]],[18,20,["H3068"]],[20,22,["H430"]],[22,23,["H7521"]],[23,24,[]]]},{"k":8716,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H728"]],[6,7,["H3808"]],[7,8,["H3588"]],[8,12,["H7069","H7069"]],[12,14,["H4480","H854"]],[14,18,["H4242"]],[18,19,["H3808"]],[19,22,["H5927"]],[22,24,["H5930"]],[24,27,["H3068"]],[27,29,["H430"]],[29,32,["H834"]],[32,36,["H2600"]],[36,38,["H1732"]],[38,39,["H7069","(H853)"]],[39,41,["H1637"]],[41,44,["H1241"]],[44,46,["H2572"]],[46,47,["H8255"]],[47,49,["H3701"]]]},{"k":8717,"v":[[0,2,["H1732"]],[2,3,["H1129"]],[3,4,["H8033"]],[4,6,["H4196"]],[6,9,["H3068"]],[9,11,["H5927"]],[11,13,["H5930"]],[13,16,["H8002"]],[16,19,["H3068"]],[19,21,["H6279"]],[21,24,["H776"]],[24,27,["H4046"]],[27,29,["H6113"]],[29,30,["H4480","H5921"]],[30,31,["H3478"]]]},{"k":8718,"v":[[0,2,["H4428"]],[2,3,["H1732"]],[3,5,["H2204"]],[5,7,["H935"]],[7,9,["H3117"]],[9,12,["H3680"]],[12,15,["H899"]],[15,20,["H3808","H3179"]]]},{"k":8719,"v":[[0,3,["H5650"]],[3,4,["H559"]],[4,10,["H1245"]],[10,13,["H113"]],[13,15,["H4428"]],[15,17,["H5291"]],[17,18,["H1330"]],[18,22,["H5975"]],[22,23,["H6440"]],[23,25,["H4428"]],[25,29,["H5532"]],[29,34,["H7901"]],[34,37,["H2436"]],[37,40,["H113"]],[40,42,["H4428"]],[42,45,["H2552"]]]},{"k":8720,"v":[[0,3,["H1245"]],[3,6,["H3303"]],[6,7,["H5291"]],[7,9,["H3605"]],[9,11,["H1366"]],[11,13,["H3478"]],[13,15,["H4672","(H853)"]],[15,16,["H49"]],[16,18,["H7767"]],[18,20,["H935"]],[20,24,["H4428"]]]},{"k":8721,"v":[[0,3,["H5291"]],[3,5,["H5704","H3966"]],[5,6,["H3303"]],[6,8,["H5532"]],[8,10,["H4428"]],[10,12,["H8334"]],[12,17,["H4428"]],[17,18,["H3045"]],[18,20,["H3808"]]]},{"k":8722,"v":[[0,2,["H138"]],[2,4,["H1121"]],[4,6,["H2294"]],[6,8,["H4984"]],[8,9,["H559"]],[9,10,["H589"]],[10,13,["H4427"]],[13,16,["H6213"]],[16,18,["H7393"]],[18,20,["H6571"]],[20,22,["H2572"]],[22,23,["H376"]],[23,25,["H7323"]],[25,26,["H6440"]],[26,27,[]]]},{"k":8723,"v":[[0,3,["H1"]],[3,5,["H3808"]],[5,6,["H6087"]],[6,10,["H4480","H3117"]],[10,12,["H559"]],[12,13,["H4069"]],[13,16,["H6213"]],[16,17,["H3602"]],[17,19,["H1931"]],[19,20,["H1571"]],[20,23,["H3966"]],[23,24,["H2896","H8389"]],[24,29,["H3205"]],[29,31,["H310"]],[31,32,["H53"]]]},{"k":8724,"v":[[0,3,["H1697"]],[3,4,["H5973"]],[4,5,["H3097"]],[5,7,["H1121"]],[7,9,["H6870"]],[9,11,["H5973"]],[11,12,["H54"]],[12,14,["H3548"]],[14,17,["H310"]],[17,18,["H138"]],[18,19,["H5826"]],[19,20,[]]]},{"k":8725,"v":[[0,2,["H6659"]],[2,4,["H3548"]],[4,6,["H1141"]],[6,8,["H1121"]],[8,10,["H3077"]],[10,12,["H5416"]],[12,14,["H5030"]],[14,16,["H8096"]],[16,18,["H7472"]],[18,22,["H1368"]],[22,23,["H834"]],[23,26,["H1732"]],[26,27,["H1961"]],[27,28,["H3808"]],[28,29,["H5973"]],[29,30,["H138"]]]},{"k":8726,"v":[[0,2,["H138"]],[2,3,["H2076"]],[3,4,["H6629"]],[4,6,["H1241"]],[6,9,["H4806"]],[9,10,["H5973"]],[10,12,["H68"]],[12,14,["H2120"]],[14,15,["H834"]],[15,17,["H681"]],[17,18,["H5883"]],[18,20,["H7121","(H853)"]],[20,21,["H3605"]],[21,23,["H251"]],[23,25,["H4428"]],[25,26,["H1121"]],[26,28,["H3605"]],[28,30,["H376"]],[30,32,["H3063"]],[32,34,["H4428"]],[34,35,["H5650"]]]},{"k":8727,"v":[[0,2,["H5416"]],[2,4,["H5030"]],[4,6,["H1141"]],[6,10,["H1368"]],[10,12,["H8010"]],[12,14,["H251"]],[14,16,["H7121"]],[16,17,["H3808"]]]},{"k":8728,"v":[[0,2,["H5416"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1339"]],[5,7,["H517"]],[7,9,["H8010"]],[9,10,["H559"]],[10,13,["H3808"]],[13,14,["H8085"]],[14,15,["H3588"]],[15,16,["H138"]],[16,18,["H1121"]],[18,20,["H2294"]],[20,22,["H4427"]],[22,24,["H1732"]],[24,26,["H113"]],[26,27,["H3045"]],[27,29,["H3808"]]]},{"k":8729,"v":[[0,1,["H6258"]],[1,3,["H1980"]],[3,8,["H4994"]],[8,9,["H3289"]],[9,11,["H6098"]],[11,15,["H4422","(H853)"]],[15,18,["H5315"]],[18,21,["H5315"]],[21,24,["H1121"]],[24,25,["H8010"]]]},{"k":8730,"v":[[0,1,["H1980"]],[1,5,["H935"]],[5,6,["H413"]],[6,7,["H4428"]],[7,8,["H1732"]],[8,10,["H559"]],[10,11,["H413"]],[11,14,["H3808"]],[14,15,["H859"]],[15,17,["H113"]],[17,19,["H4428"]],[19,20,["H7650"]],[20,23,["H519"]],[23,24,["H559"]],[24,25,["H3588"]],[25,26,["H8010"]],[26,28,["H1121"]],[28,30,["H4427"]],[30,31,["H310"]],[31,34,["H1931"]],[34,36,["H3427"]],[36,37,["H5921"]],[37,39,["H3678"]],[39,40,["H4069"]],[40,43,["H138"]],[43,44,["H4427"]]]},{"k":8731,"v":[[0,1,["H2009"]],[1,4,["H5750"]],[4,5,["H1696"]],[5,6,["H8033"]],[6,7,["H5973"]],[7,9,["H4428"]],[9,10,["H589"]],[10,14,["H935"]],[14,15,["H310"]],[15,18,["H4390","(H853)"]],[18,20,["H1697"]]]},{"k":8732,"v":[[0,2,["H1339"]],[2,4,["H935"]],[4,5,["H413"]],[5,7,["H4428"]],[7,10,["H2315"]],[10,13,["H4428"]],[13,15,["H3966"]],[15,16,["H2204"]],[16,18,["H49"]],[18,20,["H7767"]],[20,22,["H8334","(H853)"]],[22,24,["H4428"]]]},{"k":8733,"v":[[0,2,["H1339"]],[2,3,["H6915"]],[3,6,["H7812"]],[6,9,["H4428"]],[9,12,["H4428"]],[12,13,["H559"]],[13,14,["H4100"]],[14,16,[]]]},{"k":8734,"v":[[0,3,["H559"]],[3,7,["H113"]],[7,8,["H859"]],[8,9,["H7650"]],[9,12,["H3068"]],[12,14,["H430"]],[14,17,["H519"]],[17,19,["H3588"]],[19,20,["H8010"]],[20,22,["H1121"]],[22,24,["H4427"]],[24,25,["H310"]],[25,28,["H1931"]],[28,30,["H3427"]],[30,31,["H5921"]],[31,33,["H3678"]]]},{"k":8735,"v":[[0,2,["H6258"]],[2,3,["H2009"]],[3,4,["H138"]],[4,5,["H4427"]],[5,7,["H6258"]],[7,9,["H113"]],[9,11,["H4428"]],[11,13,["H3045"]],[13,15,["H3808"]]]},{"k":8736,"v":[[0,4,["H2076"]],[4,5,["H7794"]],[5,8,["H4806"]],[8,10,["H6629"]],[10,12,["H7230"]],[12,15,["H7121"]],[15,16,["H3605"]],[16,18,["H1121"]],[18,21,["H4428"]],[21,23,["H54"]],[23,25,["H3548"]],[25,27,["H3097"]],[27,29,["H8269"]],[29,32,["H6635"]],[32,34,["H8010"]],[34,36,["H5650"]],[36,39,["H3808"]],[39,40,["H7121"]]]},{"k":8737,"v":[[0,2,["H859"]],[2,4,["H113"]],[4,6,["H4428"]],[6,8,["H5869"]],[8,10,["H3605"]],[10,11,["H3478"]],[11,13,["H5921"]],[13,18,["H5046"]],[18,20,["H4310"]],[20,22,["H3427"]],[22,23,["H5921"]],[23,25,["H3678"]],[25,28,["H113"]],[28,30,["H4428"]],[30,31,["H310"]],[31,32,[]]]},{"k":8738,"v":[[0,6,["H1961"]],[6,9,["H113"]],[9,11,["H4428"]],[11,13,["H7901"]],[13,14,["H5973"]],[14,16,["H1"]],[16,18,["H589"]],[18,21,["H1121"]],[21,22,["H8010"]],[22,25,["H1961"]],[25,26,["H2400"]]]},{"k":8739,"v":[[0,2,["H2009"]],[2,5,["H5750"]],[5,6,["H1696"]],[6,7,["H5973"]],[7,9,["H4428"]],[9,10,["H5416"]],[10,12,["H5030"]],[12,15,["H935"]]]},{"k":8740,"v":[[0,3,["H5046"]],[3,5,["H4428"]],[5,6,["H559"]],[6,7,["H2009"]],[7,8,["H5416"]],[8,10,["H5030"]],[10,16,["H935"]],[16,17,["H6440"]],[17,19,["H4428"]],[19,22,["H7812"]],[22,25,["H4428"]],[25,26,["H5921"]],[26,28,["H639"]],[28,31,["H776"]]]},{"k":8741,"v":[[0,2,["H5416"]],[2,3,["H559"]],[3,5,["H113"]],[5,7,["H4428"]],[7,9,["H859"]],[9,10,["H559"]],[10,11,["H138"]],[11,13,["H4427"]],[13,14,["H310"]],[14,17,["H1931"]],[17,19,["H3427"]],[19,20,["H5921"]],[20,22,["H3678"]]]},{"k":8742,"v":[[0,1,["H3588"]],[1,5,["H3381"]],[5,7,["H3117"]],[7,10,["H2076"]],[10,11,["H7794"]],[11,14,["H4806"]],[14,16,["H6629"]],[16,18,["H7230"]],[18,21,["H7121"]],[21,22,["H3605"]],[22,24,["H4428"]],[24,25,["H1121"]],[25,28,["H8269"]],[28,31,["H6635"]],[31,33,["H54"]],[33,35,["H3548"]],[35,37,["H2009"]],[37,39,["H398"]],[39,41,["H8354"]],[41,42,["H6440"]],[42,45,["H559"]],[45,47,["H2421"]],[47,48,["H4428"]],[48,49,["H138"]]]},{"k":8743,"v":[[0,4,["H589"]],[4,6,["H5650"]],[6,8,["H6659"]],[8,10,["H3548"]],[10,12,["H1141"]],[12,14,["H1121"]],[14,16,["H3077"]],[16,19,["H5650"]],[19,20,["H8010"]],[20,23,["H3808"]],[23,24,["H7121"]]]},{"k":8744,"v":[[0,2,["H2088"]],[2,3,["H1697"]],[3,4,["H1961"]],[4,5,["H4480","H854"]],[5,7,["H113"]],[7,9,["H4428"]],[9,13,["H3808"]],[13,16,["H3045","(H853)"]],[16,18,["H5650"]],[18,19,["H4310"]],[19,21,["H3427"]],[21,22,["H5921"]],[22,24,["H3678"]],[24,27,["H113"]],[27,29,["H4428"]],[29,30,["H310"]],[30,31,[]]]},{"k":8745,"v":[[0,2,["H4428"]],[2,3,["H1732"]],[3,4,["H6030"]],[4,6,["H559"]],[6,7,["H7121"]],[7,9,["H1339"]],[9,13,["H935"]],[13,15,["H4428"]],[15,16,["H6440"]],[16,18,["H5975"]],[18,19,["H6440"]],[19,21,["H4428"]]]},{"k":8746,"v":[[0,3,["H4428"]],[3,4,["H7650"]],[4,6,["H559"]],[6,9,["H3068"]],[9,10,["H2416"]],[10,11,["H834"]],[11,13,["H6299","(H853)"]],[13,15,["H5315"]],[15,18,["H4480","H3605"]],[18,19,["H6869"]]]},{"k":8747,"v":[[0,1,["H3588"]],[1,2,["H834"]],[2,4,["H7650"]],[4,9,["H3068"]],[9,10,["H430"]],[10,12,["H3478"]],[12,13,["H559"]],[13,14,["H3588"]],[14,15,["H8010"]],[15,17,["H1121"]],[17,19,["H4427"]],[19,20,["H310"]],[20,23,["H1931"]],[23,25,["H3427"]],[25,26,["H5921"]],[26,28,["H3678"]],[28,31,["H8478"]],[31,32,["H3588"]],[32,33,["H3651"]],[33,37,["H6213"]],[37,38,["H2088"]],[38,39,["H3117"]]]},{"k":8748,"v":[[0,2,["H1339"]],[2,3,["H6915"]],[3,6,["H639"]],[6,9,["H776"]],[9,12,["H7812"]],[12,15,["H4428"]],[15,17,["H559"]],[17,20,["H113"]],[20,21,["H4428"]],[21,22,["H1732"]],[22,23,["H2421"]],[23,25,["H5769"]]]},{"k":8749,"v":[[0,2,["H4428"]],[2,3,["H1732"]],[3,4,["H559"]],[4,5,["H7121"]],[5,7,["H6659"]],[7,9,["H3548"]],[9,11,["H5416"]],[11,13,["H5030"]],[13,15,["H1141"]],[15,17,["H1121"]],[17,19,["H3077"]],[19,22,["H935"]],[22,23,["H6440"]],[23,25,["H4428"]]]},{"k":8750,"v":[[0,2,["H4428"]],[2,4,["H559"]],[4,7,["H3947"]],[7,8,["H5973"]],[8,9,["(H853)"]],[9,11,["H5650"]],[11,14,["H113"]],[14,16,["(H853)"]],[16,17,["H8010"]],[17,19,["H1121"]],[19,21,["H7392"]],[21,22,["H5921"]],[22,25,["H6506"]],[25,29,["H3381","(H853)"]],[29,30,["H413"]],[30,31,["H1521"]]]},{"k":8751,"v":[[0,3,["H6659"]],[3,5,["H3548"]],[5,7,["H5416"]],[7,9,["H5030"]],[9,10,["H4886"]],[10,12,["H8033"]],[12,13,["H4428"]],[13,14,["H5921"]],[14,15,["H3478"]],[15,17,["H8628"]],[17,21,["H7782"]],[21,23,["H559"]],[23,25,["H2421"]],[25,26,["H4428"]],[26,27,["H8010"]]]},{"k":8752,"v":[[0,5,["H5927"]],[5,6,["H310"]],[6,11,["H935"]],[11,13,["H3427"]],[13,14,["H5921"]],[14,16,["H3678"]],[16,18,["H1931"]],[18,21,["H4427"]],[21,24,["H8478"]],[24,28,["H6680"]],[28,31,["H1961"]],[31,32,["H5057"]],[32,33,["H5921"]],[33,34,["H3478"]],[34,36,["H5921"]],[36,37,["H3063"]]]},{"k":8753,"v":[[0,2,["H1141"]],[2,4,["H1121"]],[4,6,["H3077"]],[6,7,["H6030","(H853)"]],[7,9,["H4428"]],[9,11,["H559"]],[11,12,["H543"]],[12,14,["H3068"]],[14,15,["H430"]],[15,18,["H113"]],[18,20,["H4428"]],[20,21,["H559"]],[21,22,["H3651"]],[22,23,[]]]},{"k":8754,"v":[[0,1,["H834"]],[1,3,["H3068"]],[3,5,["H1961"]],[5,6,["H5973"]],[6,8,["H113"]],[8,10,["H4428"]],[10,12,["H3651"]],[12,13,["H1961"]],[13,15,["H5973"]],[15,16,["H8010"]],[16,21,["H1431","(H853)","H3678"]],[21,24,["H4480","H3678"]],[24,27,["H113"]],[27,28,["H4428"]],[28,29,["H1732"]]]},{"k":8755,"v":[[0,2,["H6659"]],[2,4,["H3548"]],[4,6,["H5416"]],[6,8,["H5030"]],[8,10,["H1141"]],[10,12,["H1121"]],[12,14,["H3077"]],[14,17,["H3774"]],[17,20,["H6432"]],[20,22,["H3381"]],[22,24,["(H853)"]],[24,25,["H8010"]],[25,27,["H7392"]],[27,28,["H5921"]],[28,29,["H4428"]],[29,30,["H1732"]],[30,31,["H6506"]],[31,33,["H1980"]],[33,35,["H5921"]],[35,36,["H1521"]]]},{"k":8756,"v":[[0,2,["H6659"]],[2,4,["H3548"]],[4,5,["H3947","(H853)"]],[5,7,["H7161"]],[7,9,["H8081"]],[9,11,["H4480"]],[11,13,["H168"]],[13,15,["H4886","(H853)"]],[15,16,["H8010"]],[16,19,["H8628"]],[19,21,["H7782"]],[21,23,["H3605"]],[23,25,["H5971"]],[25,26,["H559"]],[26,28,["H2421"]],[28,29,["H4428"]],[29,30,["H8010"]]]},{"k":8757,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H5927"]],[6,7,["H310"]],[7,11,["H5971"]],[11,12,["H2490"]],[12,14,["H2485"]],[14,16,["H8056"]],[16,18,["H1419"]],[18,19,["H8057"]],[19,23,["H776"]],[23,24,["H1234"]],[24,27,["H6963"]],[27,29,[]]]},{"k":8758,"v":[[0,2,["H138"]],[2,4,["H3605"]],[4,6,["H7121"]],[6,7,["H834"]],[7,9,["H854"]],[9,11,["H8085"]],[11,14,["H1992"]],[14,18,["H3615"]],[18,20,["H398"]],[20,23,["H3097"]],[23,24,["H8085","(H853)"]],[24,26,["H6963"]],[26,29,["H7782"]],[29,31,["H559"]],[31,32,["H4069"]],[32,35,["H6963"]],[35,38,["H7151"]],[38,42,["H1993"]]]},{"k":8759,"v":[[0,4,["H5750"]],[4,5,["H1696"]],[5,6,["H2009"]],[6,7,["H3129"]],[7,9,["H1121"]],[9,11,["H54"]],[11,13,["H3548"]],[13,14,["H935"]],[14,16,["H138"]],[16,17,["H559"]],[17,21,["H935"]],[21,22,["H3588"]],[22,23,["H859"]],[23,26,["H2428"]],[26,27,["H376"]],[27,31,["H2896","H1319"]]]},{"k":8760,"v":[[0,2,["H3129"]],[2,3,["H6030"]],[3,5,["H559"]],[5,7,["H138"]],[7,8,["H61"]],[8,10,["H113"]],[10,11,["H4428"]],[11,12,["H1732"]],[12,16,["H4427","(H853)","H8010"]]]},{"k":8761,"v":[[0,3,["H4428"]],[3,5,["H7971"]],[5,6,["H854"]],[6,7,["(H853)"]],[7,8,["H6659"]],[8,10,["H3548"]],[10,12,["H5416"]],[12,14,["H5030"]],[14,16,["H1141"]],[16,18,["H1121"]],[18,20,["H3077"]],[20,23,["H3774"]],[23,26,["H6432"]],[26,33,["H7392","(H853)"]],[33,34,["H5921"]],[34,36,["H4428"]],[36,37,["H6506"]]]},{"k":8762,"v":[[0,2,["H6659"]],[2,4,["H3548"]],[4,6,["H5416"]],[6,8,["H5030"]],[8,10,["H4886"]],[10,12,["H4428"]],[12,14,["H1521"]],[14,19,["H5927"]],[19,21,["H4480","H8033"]],[21,22,["H8056"]],[22,26,["H7151"]],[26,27,["H1949"]],[27,29,["H1931"]],[29,32,["H6963"]],[32,33,["H834"]],[33,36,["H8085"]]]},{"k":8763,"v":[[0,2,["H1571"]],[2,3,["H8010"]],[3,4,["H3427"]],[4,5,["H5921"]],[5,7,["H3678"]],[7,10,["H4410"]]]},{"k":8764,"v":[[0,2,["H1571"]],[2,4,["H4428"]],[4,5,["H5650"]],[5,6,["H935"]],[6,8,["H1288","(H853)"]],[8,10,["H113"]],[10,11,["H4428"]],[11,12,["H1732"]],[12,13,["H559"]],[13,14,["H430"]],[14,15,["(H853)"]],[15,17,["H8034"]],[17,19,["H8010"]],[19,20,["H3190"]],[20,23,["H4480","H8034"]],[23,25,["(H853)"]],[25,27,["H3678"]],[27,28,["H1431"]],[28,31,["H4480","H3678"]],[31,34,["H4428"]],[34,36,["H7812"]],[36,37,["H5921"]],[37,39,["H4904"]]]},{"k":8765,"v":[[0,2,["H1571"]],[2,3,["H3602"]],[3,4,["H559"]],[4,6,["H4428"]],[6,7,["H1288"]],[7,10,["H3068"]],[10,11,["H430"]],[11,13,["H3478"]],[13,14,["H834"]],[14,16,["H5414"]],[16,19,["H3427"]],[19,20,["H5921"]],[20,22,["H3678"]],[22,24,["H3117"]],[24,26,["H5869"]],[26,28,["H7200"]],[28,29,[]]]},{"k":8766,"v":[[0,2,["H3605"]],[2,4,["H7121"]],[4,5,["H834"]],[5,8,["H138"]],[8,10,["H2729"]],[10,13,["H6965"]],[13,15,["H1980"]],[15,17,["H376"]],[17,19,["H1870"]]]},{"k":8767,"v":[[0,2,["H138"]],[2,3,["H3372"]],[3,4,["H4480","H6440"]],[4,6,["H8010"]],[6,8,["H6965"]],[8,10,["H1980"]],[10,13,["H2388"]],[13,16,["H7161"]],[16,19,["H4196"]]]},{"k":8768,"v":[[0,4,["H5046"]],[4,5,["H8010"]],[5,6,["H559"]],[6,7,["H2009"]],[7,8,["H138"]],[8,9,["H3372","(H853)"]],[9,10,["H4428"]],[10,11,["H8010"]],[11,13,["H2009"]],[13,17,["H270"]],[17,20,["H7161"]],[20,23,["H4196"]],[23,24,["H559"]],[24,26,["H4428"]],[26,27,["H8010"]],[27,28,["H7650"]],[28,32,["H3117"]],[32,36,["H518"]],[36,37,["H4191","(H853)"]],[37,39,["H5650"]],[39,42,["H2719"]]]},{"k":8769,"v":[[0,2,["H8010"]],[2,3,["H559"]],[3,4,["H518"]],[4,7,["H1961"]],[7,10,["H2428"]],[10,11,["H1121"]],[11,14,["H3808"]],[14,17,["H4480","H8183"]],[17,19,["H5307"]],[19,22,["H776"]],[22,24,["H518"]],[24,25,["H7451"]],[25,28,["H4672"]],[28,33,["H4191"]]]},{"k":8770,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H7971"]],[4,9,["H3381"]],[9,10,["H4480","H5921"]],[10,12,["H4196"]],[12,15,["H935"]],[15,18,["H7812"]],[18,20,["H4428"]],[20,21,["H8010"]],[21,23,["H8010"]],[23,24,["H559"]],[24,27,["H1980"]],[27,30,["H1004"]]]},{"k":8771,"v":[[0,3,["H3117"]],[3,5,["H1732"]],[5,7,["H7126"]],[7,11,["H4191"]],[11,14,["H6680","(H853)"]],[14,15,["H8010"]],[15,17,["H1121"]],[17,18,["H559"]]]},{"k":8772,"v":[[0,1,["H595"]],[1,2,["H1980"]],[2,4,["H1870"]],[4,6,["H3605"]],[6,8,["H776"]],[8,11,["H2388"]],[11,14,["H1961"]],[14,17,["H376"]]]},{"k":8773,"v":[[0,2,["H8104","(H853)"]],[2,4,["H4931"]],[4,7,["H3068"]],[7,9,["H430"]],[9,11,["H1980"]],[11,14,["H1870"]],[14,16,["H8104"]],[16,18,["H2708"]],[18,21,["H4687"]],[21,24,["H4941"]],[24,27,["H5715"]],[27,31,["H3789"]],[31,32,["(H853)"]],[32,34,["H8451"]],[34,36,["H4872"]],[36,37,["H4616"]],[37,40,["H7919"]],[40,42,["H3605"]],[42,43,["H834"]],[43,45,["H6213"]],[45,47,["H3605","H834","H8033"]],[47,49,["H6437"]],[49,50,[]]]},{"k":8774,"v":[[0,1,["H4616"]],[1,3,["H3068"]],[3,5,["H6965","(H853)"]],[5,7,["H1697"]],[7,8,["H834"]],[8,10,["H1696"]],[10,11,["H5921"]],[11,13,["H559"]],[13,14,["H518"]],[14,16,["H1121"]],[16,18,["H8104"]],[18,19,["(H853)"]],[19,21,["H1870"]],[21,23,["H1980"]],[23,24,["H6440"]],[24,27,["H571"]],[27,29,["H3605"]],[29,31,["H3824"]],[31,34,["H3605"]],[34,36,["H5315"]],[36,39,["H3808"]],[39,40,["H3772"]],[40,42,["H559"]],[42,45,["H376"]],[45,46,["H4480","H5921"]],[46,48,["H3678"]],[48,50,["H3478"]]]},{"k":8775,"v":[[0,1,["H1571"]],[1,2,["H859"]],[2,3,["H3045"]],[3,4,["(H853)"]],[4,5,["H834"]],[5,6,["H3097"]],[6,8,["H1121"]],[8,10,["H6870"]],[10,11,["H6213"]],[11,15,["H834"]],[15,17,["H6213"]],[17,20,["H8147"]],[20,21,["H8269"]],[21,24,["H6635"]],[24,26,["H3478"]],[26,28,["H74"]],[28,30,["H1121"]],[30,32,["H5369"]],[32,35,["H6021"]],[35,37,["H1121"]],[37,39,["H3500"]],[39,42,["H2026"]],[42,44,["H7760"]],[44,46,["H1818"]],[46,48,["H4421"]],[48,50,["H7965"]],[50,52,["H5414"]],[52,54,["H1818"]],[54,56,["H4421"]],[56,59,["H2290"]],[59,60,["H834"]],[60,64,["H4975"]],[64,68,["H5275"]],[68,69,["H834"]],[69,73,["H7272"]]]},{"k":8776,"v":[[0,1,["H6213"]],[1,6,["H2451"]],[6,9,["H3808"]],[9,12,["H7872"]],[12,14,["H3381"]],[14,17,["H7585"]],[17,19,["H7965"]]]},{"k":8777,"v":[[0,2,["H6213"]],[2,3,["H2617"]],[3,6,["H1121"]],[6,8,["H1271"]],[8,10,["H1569"]],[10,14,["H1961"]],[14,18,["H398"]],[18,21,["H7979"]],[21,22,["H3588"]],[22,23,["H3651"]],[23,25,["H7126"]],[25,26,["H413"]],[26,30,["H1272"]],[30,31,["H4480","H6440"]],[31,33,["H53"]],[33,35,["H251"]]]},{"k":8778,"v":[[0,2,["H2009"]],[2,5,["H5973"]],[5,7,["H8096"]],[7,9,["H1121"]],[9,11,["H1617"]],[11,13,["H1145"]],[13,15,["H4480","H980"]],[15,16,["H1931"]],[16,17,["H7043"]],[17,21,["H4834"]],[21,22,["H7045"]],[22,25,["H3117"]],[25,28,["H1980"]],[28,30,["H4266"]],[30,32,["H1931"]],[32,34,["H3381"]],[34,36,["H7125"]],[36,39,["H3383"]],[39,42,["H7650"]],[42,47,["H3068"]],[47,48,["H559"]],[48,51,["H518"]],[51,55,["H4191"]],[55,58,["H2719"]]]},{"k":8779,"v":[[0,1,["H6258"]],[1,6,["H408","H5352"]],[6,7,["H3588"]],[7,8,["H859"]],[8,11,["H2450"]],[11,12,["H376"]],[12,14,["H3045","(H853)"]],[14,15,["H834"]],[15,19,["H6213"]],[19,23,["(H853)"]],[23,25,["H7872"]],[25,28,["H3381"]],[28,31,["H7585"]],[31,33,["H1818"]]]},{"k":8780,"v":[[0,2,["H1732"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,12,["H5892"]],[12,14,["H1732"]]]},{"k":8781,"v":[[0,3,["H3117"]],[3,4,["H834"]],[4,5,["H1732"]],[5,6,["H4427"]],[6,7,["H5921"]],[7,8,["H3478"]],[8,10,["H705"]],[10,11,["H8141"]],[11,12,["H7651"]],[12,13,["H8141"]],[13,14,["H4427"]],[14,17,["H2275"]],[17,19,["H7970"]],[19,21,["H7969"]],[21,22,["H8141"]],[22,23,["H4427"]],[23,26,["H3389"]]]},{"k":8782,"v":[[0,2,["H3427"]],[2,3,["H8010"]],[3,4,["H5921"]],[4,6,["H3678"]],[6,8,["H1732"]],[8,10,["H1"]],[10,13,["H4438"]],[13,15,["H3559"]],[15,16,["H3966"]]]},{"k":8783,"v":[[0,2,["H138"]],[2,4,["H1121"]],[4,6,["H2294"]],[6,7,["H935"]],[7,8,["H413"]],[8,9,["H1339"]],[9,11,["H517"]],[11,13,["H8010"]],[13,16,["H559"]],[16,17,["H935"]],[17,19,["H7965"]],[19,22,["H559"]],[22,23,["H7965"]]]},{"k":8784,"v":[[0,2,["H559"]],[2,8,["H1697"]],[8,9,["H413"]],[9,13,["H559"]],[13,15,["H1696"]]]},{"k":8785,"v":[[0,3,["H559"]],[3,4,["H859"]],[4,5,["H3045"]],[5,6,["H3588"]],[6,8,["H4410"]],[8,9,["H1961"]],[9,13,["H3605"]],[13,14,["H3478"]],[14,15,["H7760"]],[15,17,["H6440"]],[17,18,["H5921"]],[18,23,["H4427"]],[23,26,["H4410"]],[26,29,["H5437"]],[29,32,["H1961"]],[32,34,["H251"]],[34,35,["H3588"]],[35,37,["H1961"]],[37,41,["H4480","H3068"]]]},{"k":8786,"v":[[0,2,["H6258"]],[2,3,["H595"]],[3,4,["H7592"]],[4,5,["H259"]],[5,6,["H7596"]],[6,7,["H4480","H854"]],[7,9,["H7725","(H853)","H6440"]],[9,11,["H408"]],[11,14,["H559"]],[14,15,["H413"]],[15,18,["H1696"]]]},{"k":8787,"v":[[0,3,["H559"]],[3,4,["H559"]],[4,7,["H4994"]],[7,9,["H8010"]],[9,11,["H4428"]],[11,12,["H3588"]],[12,15,["H3808"]],[15,18,["H7725","(H853)","H6440"]],[18,21,["H5414"]],[21,22,["(H853)"]],[22,23,["H49"]],[23,25,["H7767"]],[25,27,["H802"]]]},{"k":8788,"v":[[0,2,["H1339"]],[2,3,["H559"]],[3,4,["H2896"]],[4,5,["H595"]],[5,7,["H1696"]],[7,8,["H5921"]],[8,10,["H413"]],[10,12,["H4428"]]]},{"k":8789,"v":[[0,1,["H1339"]],[1,3,["H935"]],[3,4,["H413"]],[4,5,["H4428"]],[5,6,["H8010"]],[6,8,["H1696"]],[8,11,["H5921"]],[11,12,["H138"]],[12,15,["H4428"]],[15,17,["H6965"]],[17,19,["H7122"]],[19,23,["H7812"]],[23,28,["H3427"]],[28,29,["H5921"]],[29,31,["H3678"]],[31,35,["H3678"]],[35,38,["H7760"]],[38,41,["H4428"]],[41,42,["H517"]],[42,45,["H3427"]],[45,49,["H3225"]]]},{"k":8790,"v":[[0,3,["H559"]],[3,4,["H595"]],[4,5,["H7592"]],[5,6,["H259"]],[6,7,["H6996"]],[7,8,["H7596"]],[8,9,["H4480"]],[9,17,["H408","H7725","(H853)","H6440"]],[17,20,["H4428"]],[20,21,["H559"]],[21,25,["H7592"]],[25,27,["H517"]],[27,28,["H3588"]],[28,31,["H3808"]],[31,34,["H7725","(H853)","H6440"]]]},{"k":8791,"v":[[0,3,["H559"]],[3,4,["(H853)"]],[4,5,["H49"]],[5,7,["H7767"]],[7,9,["H5414"]],[9,11,["H138"]],[11,13,["H251"]],[13,15,["H802"]]]},{"k":8792,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H6030"]],[4,6,["H559"]],[6,9,["H517"]],[9,11,["H4100"]],[11,13,["H859"]],[13,14,["H7592","(H853)"]],[14,15,["H49"]],[15,17,["H7767"]],[17,19,["H138"]],[19,20,["H7592"]],[20,22,["(H853)"]],[22,24,["H4410"]],[24,26,["H3588"]],[26,27,["H1931"]],[27,29,["H4480"]],[29,30,["H1419"]],[30,31,["H251"]],[31,37,["H54"]],[37,39,["H3548"]],[39,42,["H3097"]],[42,44,["H1121"]],[44,46,["H6870"]]]},{"k":8793,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H7650"]],[4,7,["H3068"]],[7,8,["H559"]],[8,9,["H430"]],[9,10,["H6213"]],[10,11,["H3541"]],[11,15,["H3254"]],[15,16,["H3541"]],[16,17,["H3588"]],[17,18,["H138"]],[18,21,["H1696","(H853)"]],[21,22,["H2088"]],[22,23,["H1697"]],[23,27,["H5315"]]]},{"k":8794,"v":[[0,1,["H6258"]],[1,5,["H3068"]],[5,6,["H2416"]],[6,7,["H834"]],[7,9,["H3559"]],[9,12,["H3427"]],[12,14,["H5921"]],[14,16,["H3678"]],[16,18,["H1732"]],[18,20,["H1"]],[20,22,["H834"]],[22,24,["H6213"]],[24,27,["H1004"]],[27,28,["H834"]],[28,30,["H1696"]],[30,31,["H138"]],[31,36,["H4191"]],[36,38,["H3117"]]]},{"k":8795,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H7971"]],[4,7,["H3027"]],[7,9,["H1141"]],[9,11,["H1121"]],[11,13,["H3077"]],[13,16,["H6293"]],[16,21,["H4191"]]]},{"k":8796,"v":[[0,3,["H54"]],[3,5,["H3548"]],[5,6,["H559"]],[6,8,["H4428"]],[8,9,["H1980"]],[9,12,["H6068"]],[12,13,["H5921"]],[13,16,["H7704"]],[16,17,["H3588"]],[17,18,["H859"]],[18,20,["H376"]],[20,22,["H4194"]],[22,26,["H3808"]],[26,28,["H2088"]],[28,29,["H3117"]],[29,33,["H4191"]],[33,34,["H3588"]],[34,36,["H5375","(H853)"]],[36,38,["H727"]],[38,41,["H136"]],[41,42,["H3068"]],[42,43,["H6440"]],[43,44,["H1732"]],[44,46,["H1"]],[46,48,["H3588"]],[48,52,["H6031"]],[52,54,["H3605"]],[54,55,["H834"]],[55,57,["H1"]],[57,59,["H6031"]]]},{"k":8797,"v":[[0,2,["H8010"]],[2,4,["H1644","(H853)"]],[4,5,["H54"]],[5,7,["H4480","H1961"]],[7,8,["H3548"]],[8,11,["H3068"]],[11,15,["H4390","(H853)"]],[15,17,["H1697"]],[17,20,["H3068"]],[20,21,["H834"]],[21,23,["H1696"]],[23,24,["H5921"]],[24,26,["H1004"]],[26,28,["H5941"]],[28,30,["H7887"]]]},{"k":8798,"v":[[0,2,["H8052"]],[2,3,["H935"]],[3,4,["H5704"]],[4,5,["H3097"]],[5,6,["H3588"]],[6,7,["H3097"]],[7,9,["H5186"]],[9,10,["H310"]],[10,11,["H138"]],[11,14,["H5186"]],[14,15,["H3808"]],[15,16,["H310"]],[16,17,["H53"]],[17,19,["H3097"]],[19,20,["H5127"]],[20,21,["H413"]],[21,23,["H168"]],[23,26,["H3068"]],[26,29,["H2388"]],[29,32,["H7161"]],[32,35,["H4196"]]]},{"k":8799,"v":[[0,4,["H5046"]],[4,5,["H4428"]],[5,6,["H8010"]],[6,7,["H3588"]],[7,8,["H3097"]],[8,10,["H5127"]],[10,11,["H413"]],[11,13,["H168"]],[13,16,["H3068"]],[16,18,["H2009"]],[18,21,["H681"]],[21,23,["H4196"]],[23,25,["H8010"]],[25,26,["H7971","(H853)"]],[26,27,["H1141"]],[27,29,["H1121"]],[29,31,["H3077"]],[31,32,["H559"]],[32,33,["H1980"]],[33,34,["H6293"]],[34,36,[]]]},{"k":8800,"v":[[0,2,["H1141"]],[2,3,["H935"]],[3,4,["H413"]],[4,6,["H168"]],[6,9,["H3068"]],[9,11,["H559"]],[11,12,["H413"]],[12,14,["H3541"]],[14,15,["H559"]],[15,17,["H4428"]],[17,19,["H3318"]],[19,22,["H559"]],[22,23,["H3808"]],[23,24,["H3588"]],[24,27,["H4191"]],[27,28,["H6311"]],[28,30,["H1141"]],[30,31,["H7725","(H853)"]],[31,33,["H4428"]],[33,34,["H1697"]],[34,36,["H559"]],[36,37,["H3541"]],[37,38,["H1696"]],[38,39,["H3097"]],[39,41,["H3541"]],[41,43,["H6030"]],[43,44,[]]]},{"k":8801,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H6213"]],[7,8,["H834"]],[8,11,["H1696"]],[11,13,["H6293"]],[13,17,["H6912"]],[17,23,["H5493"]],[23,25,["H2600"]],[25,26,["H1818"]],[26,27,["H834"]],[27,28,["H3097"]],[28,29,["H8210"]],[29,30,["H4480","H5921"]],[30,33,["H4480","H5921"]],[33,35,["H1004"]],[35,38,["H1"]]]},{"k":8802,"v":[[0,3,["H3068"]],[3,5,["H7725","(H853)"]],[5,7,["H1818"]],[7,8,["H5921"]],[8,11,["H7218"]],[11,12,["H834"]],[12,13,["H6293"]],[13,15,["H8147"]],[15,16,["H376"]],[16,18,["H6662"]],[18,20,["H2896"]],[20,21,["H4480"]],[21,24,["H2026"]],[24,28,["H2719"]],[28,30,["H1"]],[30,31,["H1732"]],[31,32,["H3808"]],[32,33,["H3045"]],[33,36,["(H853)"]],[36,37,["H74"]],[37,39,["H1121"]],[39,41,["H5369"]],[41,42,["H8269"]],[42,45,["H6635"]],[45,47,["H3478"]],[47,49,["H6021"]],[49,51,["H1121"]],[51,53,["H3500"]],[53,54,["H8269"]],[54,57,["H6635"]],[57,59,["H3063"]]]},{"k":8803,"v":[[0,2,["H1818"]],[2,5,["H7725"]],[5,8,["H7218"]],[8,10,["H3097"]],[10,14,["H7218"]],[14,17,["H2233"]],[17,19,["H5769"]],[19,22,["H1732"]],[22,26,["H2233"]],[26,30,["H1004"]],[30,34,["H3678"]],[34,37,["H1961"]],[37,38,["H7965"]],[38,40,["H5704","H5769"]],[40,41,["H4480","H5973"]],[41,43,["H3068"]]]},{"k":8804,"v":[[0,2,["H1141"]],[2,4,["H1121"]],[4,6,["H3077"]],[6,8,["H5927"]],[8,10,["H6293"]],[10,14,["H4191"]],[14,19,["H6912"]],[19,23,["H1004"]],[23,26,["H4057"]]]},{"k":8805,"v":[[0,3,["H4428"]],[3,4,["H5414","(H853)"]],[4,5,["H1141"]],[5,7,["H1121"]],[7,9,["H3077"]],[9,12,["H8478"]],[12,13,["H5921"]],[13,15,["H6635"]],[15,17,["H6659"]],[17,19,["H3548"]],[19,22,["H4428"]],[22,23,["H5414"]],[23,26,["H8478"]],[26,28,["H54"]]]},{"k":8806,"v":[[0,3,["H4428"]],[3,4,["H7971"]],[4,6,["H7121"]],[6,8,["H8096"]],[8,10,["H559"]],[10,13,["H1129"]],[13,16,["H1004"]],[16,18,["H3389"]],[18,20,["H3427"]],[20,21,["H8033"]],[21,25,["H3808","H3318"]],[25,26,["H4480","H8033"]],[26,27,["H575"]],[27,28,["H575"]]]},{"k":8807,"v":[[0,4,["H1961"]],[4,8,["H3117"]],[8,11,["H3318"]],[11,14,["H5674","(H853)"]],[14,16,["H5158"]],[16,17,["H6939"]],[17,20,["H3045"]],[20,22,["H3045"]],[22,23,["H3588"]],[23,27,["H4191","H4191"]],[27,29,["H1818"]],[29,31,["H1961"]],[31,35,["H7218"]]]},{"k":8808,"v":[[0,2,["H8096"]],[2,3,["H559"]],[3,6,["H4428"]],[6,8,["H1697"]],[8,10,["H2896"]],[10,11,["H834"]],[11,13,["H113"]],[13,15,["H4428"]],[15,17,["H1696"]],[17,18,["H3651"]],[18,21,["H5650"]],[21,22,["H6213"]],[22,24,["H8096"]],[24,25,["H3427"]],[25,27,["H3389"]],[27,28,["H7227"]],[28,29,["H3117"]]]},{"k":8809,"v":[[0,5,["H1961"]],[5,8,["H4480","H7093"]],[8,10,["H7969"]],[10,11,["H8141"]],[11,13,["H8147"]],[13,16,["H5650"]],[16,18,["H8096"]],[18,20,["H1272"]],[20,21,["H413"]],[21,22,["H397"]],[22,23,["H1121"]],[23,25,["H4601"]],[25,26,["H4428"]],[26,28,["H1661"]],[28,31,["H5046"]],[31,32,["H8096"]],[32,33,["H559"]],[33,34,["H2009"]],[34,36,["H5650"]],[36,39,["H1661"]]]},{"k":8810,"v":[[0,2,["H8096"]],[2,3,["H6965"]],[3,5,["H2280","(H853)"]],[5,7,["H2543"]],[7,9,["H1980"]],[9,11,["H1661"]],[11,12,["H413"]],[12,13,["H397"]],[13,15,["H1245","(H853)"]],[15,17,["H5650"]],[17,19,["H8096"]],[19,20,["H1980"]],[20,22,["H935","(H853)"]],[22,24,["H5650"]],[24,26,["H4480","H1661"]]]},{"k":8811,"v":[[0,4,["H5046"]],[4,5,["H8010"]],[5,6,["H3588"]],[6,7,["H8096"]],[7,9,["H1980"]],[9,11,["H4480","H3389"]],[11,13,["H1661"]],[13,17,["H7725"]]]},{"k":8812,"v":[[0,3,["H4428"]],[3,4,["H7971"]],[4,6,["H7121"]],[6,8,["H8096"]],[8,10,["H559"]],[10,11,["H413"]],[11,15,["H3808"]],[15,19,["H7650"]],[19,22,["H3068"]],[22,24,["H5749"]],[24,27,["H559"]],[27,31,["H3045","H3045"]],[31,34,["H3117"]],[34,37,["H3318"]],[37,40,["H1980"]],[40,41,["H575"]],[41,42,["H575"]],[42,43,["H3588"]],[43,47,["H4191","H4191"]],[47,50,["H559"]],[50,51,["H413"]],[51,54,["H1697"]],[54,58,["H8085"]],[58,60,["H2896"]]]},{"k":8813,"v":[[0,1,["H4069"]],[1,5,["H3808"]],[5,6,["H8104","(H853)"]],[6,8,["H7621"]],[8,11,["H3068"]],[11,14,["H4687"]],[14,15,["H834"]],[15,18,["H6680"]],[18,19,["H5921"]],[19,20,[]]]},{"k":8814,"v":[[0,2,["H4428"]],[2,3,["H559"]],[3,5,["H413"]],[5,6,["H8096"]],[6,7,["H859"]],[7,8,["H3045","(H853)"]],[8,9,["H3605"]],[9,11,["H7451"]],[11,12,["H834"]],[12,14,["H3824"]],[14,17,["H3045"]],[17,18,["H834"]],[18,20,["H6213"]],[20,22,["H1732"]],[22,24,["H1"]],[24,27,["H3068"]],[27,29,["H7725","(H853)"]],[29,31,["H7451"]],[31,35,["H7218"]]]},{"k":8815,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,6,["H1288"]],[6,9,["H3678"]],[9,11,["H1732"]],[11,13,["H1961"]],[13,14,["H3559"]],[14,15,["H6440"]],[15,17,["H3068"]],[17,19,["H5704","H5769"]]]},{"k":8816,"v":[[0,3,["H4428"]],[3,4,["H6680","(H853)"]],[4,5,["H1141"]],[5,7,["H1121"]],[7,9,["H3077"]],[9,12,["H3318"]],[12,14,["H6293"]],[14,19,["H4191"]],[19,22,["H4467"]],[22,24,["H3559"]],[24,27,["H3027"]],[27,29,["H8010"]]]},{"k":8817,"v":[[0,2,["H8010"]],[2,4,["H2859"]],[4,5,["H854"]],[5,6,["H6547"]],[6,7,["H4428"]],[7,9,["H4714"]],[9,11,["H3947","(H853)"]],[11,12,["H6547"]],[12,13,["H1323"]],[13,15,["H935"]],[15,17,["H413"]],[17,19,["H5892"]],[19,21,["H1732"]],[21,22,["H5704"]],[22,27,["H3615"]],[27,29,["H1129","(H853)"]],[29,32,["H1004"]],[32,35,["H1004"]],[35,38,["H3068"]],[38,41,["H2346"]],[41,43,["H3389"]],[43,45,["H5439"]]]},{"k":8818,"v":[[0,1,["H7535"]],[1,3,["H5971"]],[3,4,["H2076"]],[4,7,["H1116"]],[7,8,["H3588"]],[8,11,["H3808"]],[11,12,["H1004"]],[12,13,["H1129"]],[13,16,["H8034"]],[16,19,["H3068"]],[19,20,["H5704"]],[20,21,["H1992"]],[21,22,["H3117"]]]},{"k":8819,"v":[[0,2,["H8010"]],[2,3,["H157","(H853)"]],[3,5,["H3068"]],[5,6,["H1980"]],[6,9,["H2708"]],[9,11,["H1732"]],[11,13,["H1"]],[13,14,["H7535"]],[14,15,["H1931"]],[15,16,["H2076"]],[16,19,["H6999"]],[19,22,["H1116"]]]},{"k":8820,"v":[[0,3,["H4428"]],[3,4,["H1980"]],[4,6,["H1391"]],[6,8,["H2076"]],[8,9,["H8033"]],[9,10,["H3588"]],[10,11,["H1931"]],[11,14,["H1419"]],[14,16,["H1116"]],[16,18,["H505"]],[18,20,["H5930"]],[20,22,["H8010"]],[22,23,["H5927"]],[23,24,["H5921"]],[24,25,["H1931"]],[25,26,["H4196"]]]},{"k":8821,"v":[[0,2,["H1391"]],[2,4,["H3068"]],[4,5,["H7200"]],[5,6,["H413"]],[6,7,["H8010"]],[7,10,["H2472"]],[10,12,["H3915"]],[12,14,["H430"]],[14,15,["H559"]],[15,16,["H7592"]],[16,17,["H4100"]],[17,20,["H5414"]],[20,21,[]]]},{"k":8822,"v":[[0,2,["H8010"]],[2,3,["H559"]],[3,4,["H859"]],[4,6,["H6213"]],[6,7,["H5973"]],[7,9,["H5650"]],[9,10,["H1732"]],[10,12,["H1"]],[12,13,["H1419"]],[13,14,["H2617"]],[14,16,["H834"]],[16,18,["H1980"]],[18,19,["H6440"]],[19,22,["H571"]],[22,25,["H6666"]],[25,28,["H3483"]],[28,30,["H3824"]],[30,31,["H5973"]],[31,36,["H8104"]],[36,38,["(H853)"]],[38,39,["H2088"]],[39,40,["H1419"]],[40,41,["H2617"]],[41,45,["H5414"]],[45,48,["H1121"]],[48,50,["H3427"]],[50,51,["H5921"]],[51,53,["H3678"]],[53,57,["H2088"]],[57,58,["H3117"]]]},{"k":8823,"v":[[0,2,["H6258"]],[2,4,["H3068"]],[4,6,["H430"]],[6,7,["H859"]],[7,9,["(H853)"]],[9,11,["H5650"]],[11,12,["H4427"]],[12,13,["H8478"]],[13,15,["H1732"]],[15,17,["H1"]],[17,19,["H595"]],[19,23,["H6996"]],[23,24,["H5288"]],[24,26,["H3045"]],[26,27,["H3808"]],[27,31,["H3318"]],[31,34,["H935"]]]},{"k":8824,"v":[[0,3,["H5650"]],[3,7,["H8432"]],[7,10,["H5971"]],[10,11,["H834"]],[11,14,["H977"]],[14,16,["H7227"]],[16,17,["H5971"]],[17,18,["H834"]],[18,19,["H3808"]],[19,21,["H4487"]],[21,22,["H3808"]],[22,23,["H5608"]],[23,25,["H4480","H7230"]]]},{"k":8825,"v":[[0,1,["H5414"]],[1,4,["H5650"]],[4,6,["H8085"]],[6,7,["H3820"]],[7,9,["H8199","(H853)"]],[9,11,["H5971"]],[11,15,["H995"]],[15,16,["H996"]],[16,17,["H2896"]],[17,19,["H7451"]],[19,20,["H3588"]],[20,21,["H4310"]],[21,23,["H3201"]],[23,25,["H8199"]],[25,26,["H2088"]],[26,29,["H3515","(H853)"]],[29,31,["H5971"]]]},{"k":8826,"v":[[0,3,["H1697"]],[3,4,["H3190","H5869"]],[4,6,["H136"]],[6,7,["H3588"]],[7,8,["H8010"]],[8,10,["H7592","(H853)"]],[10,11,["H2088"]],[11,12,["H1697"]]]},{"k":8827,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3282","H834"]],[6,9,["H7592","(H853)"]],[9,10,["H2088"]],[10,11,["H1697"]],[11,14,["H3808"]],[14,15,["H7592"]],[15,18,["H7227"]],[18,19,["H3117"]],[19,20,["H3808"]],[20,22,["H7592"]],[22,23,["H6239"]],[23,26,["H3808"]],[26,28,["H7592"]],[28,30,["H5315"]],[30,33,["H341"]],[33,36,["H7592"]],[36,39,["H995"]],[39,41,["H8085"]],[41,42,["H4941"]]]},{"k":8828,"v":[[0,1,["H2009"]],[1,4,["H6213"]],[4,8,["H1697"]],[8,9,["H2009"]],[9,12,["H5414"]],[12,15,["H2450"]],[15,18,["H995"]],[18,19,["H3820"]],[19,21,["H834"]],[21,23,["H1961"]],[23,24,["H3808"]],[24,26,["H3644"]],[26,27,["H6440"]],[27,29,["H3808"]],[29,30,["H310"]],[30,34,["H6965"]],[34,37,["H3644"]]]},{"k":8829,"v":[[0,4,["H1571"]],[4,5,["H5414"]],[5,8,["H834"]],[8,11,["H3808"]],[11,12,["H7592"]],[12,13,["H1571"]],[13,14,["H6239"]],[14,15,["H1571"]],[15,16,["H3519"]],[16,18,["H834"]],[18,21,["H3808"]],[21,22,["H1961"]],[22,23,["H376"]],[23,26,["H4428"]],[26,29,["H3644"]],[29,30,["H3605"]],[30,32,["H3117"]]]},{"k":8830,"v":[[0,2,["H518"]],[2,5,["H1980"]],[5,8,["H1870"]],[8,10,["H8104"]],[10,12,["H2706"]],[12,15,["H4687"]],[15,16,["H834"]],[16,18,["H1"]],[18,19,["H1732"]],[19,21,["H1980"]],[21,25,["H748","(H853)"]],[25,27,["H3117"]]]},{"k":8831,"v":[[0,2,["H8010"]],[2,3,["H3364"]],[3,5,["H2009"]],[5,9,["H2472"]],[9,12,["H935"]],[12,14,["H3389"]],[14,16,["H5975"]],[16,17,["H6440"]],[17,19,["H727"]],[19,22,["H1285"]],[22,25,["H136"]],[25,28,["H5927"]],[28,30,["H5930"]],[30,32,["H6213"]],[32,34,["H8002"]],[34,36,["H6213"]],[36,38,["H4960"]],[38,40,["H3605"]],[40,42,["H5650"]]]},{"k":8832,"v":[[0,1,["H227"]],[1,2,["H935"]],[2,4,["H8147"]],[4,5,["H802"]],[5,8,["H2181"]],[8,9,["H413"]],[9,11,["H4428"]],[11,13,["H5975"]],[13,14,["H6440"]],[14,15,[]]]},{"k":8833,"v":[[0,3,["H259"]],[3,4,["H802"]],[4,5,["H559"]],[5,6,["H994"]],[6,8,["H113"]],[8,9,["H589"]],[9,11,["H2063"]],[11,12,["H802"]],[12,13,["H3427"]],[13,15,["H259"]],[15,16,["H1004"]],[16,23,["H3205"]],[23,24,["H5973"]],[24,28,["H1004"]]]},{"k":8834,"v":[[0,5,["H1961"]],[5,7,["H7992"]],[7,8,["H3117"]],[8,13,["H3205"]],[13,15,["H2063"]],[15,16,["H802"]],[16,18,["H3205"]],[18,19,["H1571"]],[19,21,["H587"]],[21,23,["H3162"]],[23,26,["H369"]],[26,27,["H2114"]],[27,28,["H854"]],[28,32,["H1004"]],[32,33,["H2108"]],[33,34,["H587"]],[34,35,["H8147"]],[35,38,["H1004"]]]},{"k":8835,"v":[[0,2,["H2063"]],[2,3,["H802"]],[3,4,["H1121"]],[4,5,["H4191"]],[5,8,["H3915"]],[8,9,["H834"]],[9,11,["H7901","H5921"]],[11,12,[]]]},{"k":8836,"v":[[0,3,["H6965"]],[3,5,["H8432","H3915"]],[5,7,["H3947","(H853)"]],[7,9,["H1121"]],[9,11,["H4480","H681"]],[11,15,["H519"]],[15,16,["H3463"]],[16,18,["H7901"]],[18,22,["H2436"]],[22,24,["H7901"]],[24,26,["H4191"]],[26,27,["H1121"]],[27,30,["H2436"]]]},{"k":8837,"v":[[0,4,["H6965"]],[4,7,["H1242"]],[7,12,["H3242","(H853)","H1121"]],[12,13,["H2009"]],[13,16,["H4191"]],[16,21,["H995","H413"]],[21,25,["H1242"]],[25,26,["H2009"]],[26,28,["H1961"]],[28,29,["H3808"]],[29,31,["H1121"]],[31,32,["H834"]],[32,35,["H3205"]]]},{"k":8838,"v":[[0,3,["H312"]],[3,4,["H802"]],[4,5,["H559"]],[5,6,["H3808"]],[6,7,["H3588"]],[7,9,["H2416"]],[9,12,["H1121"]],[12,15,["H4191"]],[15,18,["H1121"]],[18,20,["H2063"]],[20,21,["H559"]],[21,22,["H3808"]],[22,23,["H3588"]],[23,25,["H4191"]],[25,28,["H1121"]],[28,31,["H2416"]],[31,34,["H1121"]],[34,37,["H1696"]],[37,38,["H6440"]],[38,40,["H4428"]]]},{"k":8839,"v":[[0,2,["H559"]],[2,4,["H4428"]],[4,6,["H2063"]],[6,7,["H559"]],[7,8,["H2088"]],[8,11,["H1121"]],[11,13,["H2416"]],[13,16,["H1121"]],[16,19,["H4191"]],[19,22,["H2063"]],[22,23,["H559"]],[23,24,["H3808"]],[24,25,["H3588"]],[25,27,["H1121"]],[27,30,["H4191"]],[30,33,["H1121"]],[33,36,["H2416"]]]},{"k":8840,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H3947"]],[5,8,["H2719"]],[8,11,["H935"]],[11,13,["H2719"]],[13,14,["H6440"]],[14,16,["H4428"]]]},{"k":8841,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H1504","(H853)"]],[5,7,["H2416"]],[7,8,["H3206"]],[8,10,["H8147"]],[10,12,["H5414","(H853)"]],[12,13,["H2677"]],[13,16,["H259"]],[16,18,["H2677"]],[18,21,["H259"]]]},{"k":8842,"v":[[0,2,["H559"]],[2,4,["H802"]],[4,5,["H834"]],[5,7,["H2416"]],[7,8,["H1121"]],[8,10,["H413"]],[10,12,["H4428"]],[12,13,["H3588"]],[13,15,["H7356"]],[15,16,["H3648"]],[16,17,["H5921"]],[17,19,["H1121"]],[19,22,["H559"]],[22,23,["H994"]],[23,25,["H113"]],[25,26,["H5414"]],[26,27,["(H853)"]],[27,29,["H2416"]],[29,30,["H3205"]],[30,33,["H408"]],[33,35,["H4191","H4191"]],[35,39,["H2063"]],[39,40,["H559"]],[40,43,["H1961"]],[43,44,["H1571","H3808"]],[44,46,["H1571"]],[46,49,["H1504"]],[49,50,[]]]},{"k":8843,"v":[[0,3,["H4428"]],[3,4,["H6030"]],[4,6,["H559"]],[6,7,["H5414"]],[7,8,["(H853)"]],[8,10,["H2416"]],[10,11,["H3205"]],[11,14,["H3808"]],[14,16,["H4191","H4191"]],[16,18,["H1931"]],[18,21,["H517"]],[21,22,[]]]},{"k":8844,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,4,["H8085"]],[4,5,["(H853)"]],[5,7,["H4941"]],[7,8,["H834"]],[8,10,["H4428"]],[10,12,["H8199"]],[12,15,["H3372","H4480","H6440"]],[15,17,["H4428"]],[17,18,["H3588"]],[18,20,["H7200"]],[20,21,["H3588"]],[21,23,["H2451"]],[23,25,["H430"]],[25,28,["H7130"]],[28,30,["H6213"]],[30,31,["H4941"]]]},{"k":8845,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H1961"]],[4,5,["H4428"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,8,["H3478"]]]},{"k":8846,"v":[[0,2,["H428"]],[2,5,["H8269"]],[5,6,["H834"]],[6,9,["H5838"]],[9,11,["H1121"]],[11,13,["H6659"]],[13,15,["H3548"]]]},{"k":8847,"v":[[0,1,["H456"]],[1,3,["H281"]],[3,5,["H1121"]],[5,7,["H7894"]],[7,8,["H5608"]],[8,9,["H3092"]],[9,11,["H1121"]],[11,13,["H286"]],[13,15,["H2142"]]]},{"k":8848,"v":[[0,2,["H1141"]],[2,4,["H1121"]],[4,6,["H3077"]],[6,8,["H5921"]],[8,10,["H6635"]],[10,12,["H6659"]],[12,14,["H54"]],[14,17,["H3548"]]]},{"k":8849,"v":[[0,2,["H5838"]],[2,4,["H1121"]],[4,6,["H5416"]],[6,8,["H5921"]],[8,10,["H5324"]],[10,12,["H2071"]],[12,14,["H1121"]],[14,16,["H5416"]],[16,19,["H3548"]],[19,22,["H4428"]],[22,23,["H7463"]]]},{"k":8850,"v":[[0,2,["H301"]],[2,4,["H5921"]],[4,6,["H1004"]],[6,8,["H141"]],[8,10,["H1121"]],[10,12,["H5653"]],[12,14,["H5921"]],[14,16,["H4522"]]]},{"k":8851,"v":[[0,2,["H8010"]],[2,4,["H8147","H6240"]],[4,5,["H5324"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,8,["H3478"]],[8,11,["H3557"]],[11,12,["(H853)"]],[12,14,["H4428"]],[14,17,["H1004"]],[17,19,["H259"]],[19,21,["H2320"]],[21,24,["H8141"]],[24,26,["H3557"]]]},{"k":8852,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,9,["H1133"]],[9,11,["H2022"]],[11,12,["H669"]]]},{"k":8853,"v":[[0,4,["H1128"]],[4,6,["H4739"]],[6,9,["H8169"]],[9,11,["H1053"]],[11,13,["H358"]]]},{"k":8854,"v":[[0,4,["H1136"]],[4,6,["H700"]],[6,10,["H7755"]],[10,12,["H3605"]],[12,14,["H776"]],[14,16,["H2660"]]]},{"k":8855,"v":[[0,4,["H1125"]],[4,6,["H3605"]],[6,8,["H5299"]],[8,10,["H1756"]],[10,13,["H2955"]],[13,15,["H1323"]],[15,17,["H8010"]],[17,19,["H802"]]]},{"k":8856,"v":[[0,1,["H1195"]],[1,3,["H1121"]],[3,5,["H286"]],[5,9,["H8590"]],[9,11,["H4023"]],[11,13,["H3605"]],[13,14,["H1052"]],[14,15,["H834"]],[15,17,["H681"]],[17,18,["H6891"]],[18,19,["H4480","H8478"]],[19,20,["H3157"]],[20,22,["H4480","H1052"]],[22,23,["H5704"]],[23,24,["H65"]],[24,26,["H5704"]],[26,31,["H4480","H5676"]],[31,32,["H3361"]]]},{"k":8857,"v":[[0,4,["H1127"]],[4,6,["H7433"]],[6,11,["H2333"]],[11,13,["H2971"]],[13,15,["H1121"]],[15,17,["H4519"]],[17,18,["H834"]],[18,21,["H1568"]],[21,27,["H2256"]],[27,29,["H709"]],[29,30,["H834"]],[30,33,["H1316"]],[33,34,["H8346"]],[34,35,["H1419"]],[35,36,["H5892"]],[36,38,["H2346"]],[38,40,["H5178"]],[40,41,["H1280"]]]},{"k":8858,"v":[[0,1,["H292"]],[1,3,["H1121"]],[3,5,["H5714"]],[5,7,["H4266"]]]},{"k":8859,"v":[[0,1,["H290"]],[1,4,["H5321"]],[4,5,["H1931"]],[5,6,["H1571"]],[6,7,["H3947","(H853)"]],[7,8,["H1315"]],[8,10,["H1323"]],[10,12,["H8010"]],[12,14,["H802"]]]},{"k":8860,"v":[[0,1,["H1195"]],[1,3,["H1121"]],[3,5,["H2365"]],[5,8,["H836"]],[8,11,["H1175"]]]},{"k":8861,"v":[[0,1,["H3092"]],[1,3,["H1121"]],[3,5,["H6515"]],[5,7,["H3485"]]]},{"k":8862,"v":[[0,1,["H8096"]],[1,3,["H1121"]],[3,5,["H414"]],[5,7,["H1144"]]]},{"k":8863,"v":[[0,1,["H1398"]],[1,3,["H1121"]],[3,5,["H221"]],[5,9,["H776"]],[9,11,["H1568"]],[11,14,["H776"]],[14,16,["H5511"]],[16,17,["H4428"]],[17,20,["H567"]],[20,23,["H5747"]],[23,24,["H4428"]],[24,26,["H1316"]],[26,31,["H259"]],[31,32,["H5333"]],[32,33,["H834"]],[33,37,["H776"]]]},{"k":8864,"v":[[0,1,["H3063"]],[1,3,["H3478"]],[3,5,["H7227"]],[5,8,["H2344"]],[8,9,["H834"]],[9,11,["H5921"]],[11,13,["H3220"]],[13,15,["H7230"]],[15,16,["H398"]],[16,18,["H8354"]],[18,21,["H8056"]]]},{"k":8865,"v":[[0,2,["H8010"]],[2,3,["H4910"]],[3,5,["H3605"]],[5,6,["H4467"]],[6,7,["H4480"]],[7,9,["H5104"]],[9,12,["H776"]],[12,15,["H6430"]],[15,17,["H5704"]],[17,19,["H1366"]],[19,21,["H4714"]],[21,23,["H5066"]],[23,24,["H4503"]],[24,26,["H5647","(H853)"]],[26,27,["H8010"]],[27,28,["H3605"]],[28,30,["H3117"]],[30,33,["H2416"]]]},{"k":8866,"v":[[0,2,["H8010"]],[2,3,["H3899"]],[3,5,["H259"]],[5,6,["H3117"]],[6,7,["H1961"]],[7,8,["H7970"]],[8,9,["H3734"]],[9,12,["H5560"]],[12,14,["H8346"]],[14,15,["H3734"]],[15,17,["H7058"]]]},{"k":8867,"v":[[0,1,["H6235"]],[1,2,["H1277"]],[2,3,["H1241"]],[3,5,["H6242"]],[5,6,["H1241"]],[6,10,["H7471"]],[10,13,["H3967"]],[13,14,["H6629"]],[14,15,["H905"]],[15,16,["H4480","H354"]],[16,18,["H6643"]],[18,20,["H3180"]],[20,22,["H75"]],[22,23,["H1257"]]]},{"k":8868,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,4,["H7287"]],[4,6,["H3605"]],[6,11,["H5676"]],[11,13,["H5104"]],[13,15,["H4480","H8607"]],[15,17,["H5704"]],[17,18,["H5804"]],[18,20,["H3605"]],[20,22,["H4428"]],[22,25,["H5676"]],[25,27,["H5104"]],[27,30,["H1961"]],[30,31,["H7965"]],[31,33,["H4480","H3605"]],[33,34,["H5676"]],[34,36,["H4480","H5439"]],[36,37,[]]]},{"k":8869,"v":[[0,2,["H3063"]],[2,4,["H3478"]],[4,5,["H3427"]],[5,6,["H983"]],[6,8,["H376"]],[8,9,["H8478"]],[9,11,["H1612"]],[11,13,["H8478"]],[13,16,["H8384"]],[16,18,["H4480","H1835"]],[18,20,["H5704"]],[20,21,["H884"]],[21,22,["H3605"]],[22,24,["H3117"]],[24,26,["H8010"]]]},{"k":8870,"v":[[0,2,["H8010"]],[2,3,["H1961"]],[3,4,["H705"]],[4,5,["H505"]],[5,6,["H723"]],[6,8,["H5483"]],[8,11,["H4817"]],[11,13,["H8147","H6240"]],[13,14,["H505"]],[14,15,["H6571"]]]},{"k":8871,"v":[[0,2,["H428"]],[2,3,["H5324"]],[3,5,["H3557"]],[5,6,["(H853)"]],[6,7,["H4428"]],[7,8,["H8010"]],[8,11,["H3605"]],[11,13,["H7131"]],[13,14,["H413"]],[14,15,["H4428"]],[15,16,["H8010"]],[16,17,["H7979"]],[17,19,["H376"]],[19,22,["H2320"]],[22,24,["H5737"]],[24,25,["H3808","H1697"]]]},{"k":8872,"v":[[0,1,["H8184"]],[1,4,["H8401"]],[4,7,["H5483"]],[7,9,["H7409"]],[9,10,["H935"]],[10,12,["H413"]],[12,14,["H4725"]],[14,15,["H834","H8033"]],[15,18,["H1961"]],[18,20,["H376"]],[20,24,["H4941"]]]},{"k":8873,"v":[[0,2,["H430"]],[2,3,["H5414"]],[3,4,["H8010"]],[4,5,["H2451"]],[5,7,["H8394"]],[7,8,["H3966"]],[8,9,["H7235"]],[9,11,["H7341"]],[11,13,["H3820"]],[13,17,["H2344"]],[17,18,["H834"]],[18,20,["H5921"]],[20,22,["H3220"]],[22,23,["H8193"]]]},{"k":8874,"v":[[0,2,["H8010"]],[2,3,["H2451"]],[3,6,["H7235","H4480","H2451"]],[6,8,["H3605"]],[8,10,["H1121"]],[10,14,["H6924"]],[14,16,["H4480","H3605"]],[16,18,["H2451"]],[18,20,["H4714"]]]},{"k":8875,"v":[[0,4,["H2449"]],[4,6,["H4480","H3605"]],[6,7,["H120"]],[7,9,["H4480","H387"]],[9,11,["H250"]],[11,13,["H1968"]],[13,15,["H3633"]],[15,17,["H1862"]],[17,19,["H1121"]],[19,21,["H4235"]],[21,24,["H8034"]],[24,25,["H1961"]],[25,27,["H3605"]],[27,28,["H1471"]],[28,30,["H5439"]]]},{"k":8876,"v":[[0,3,["H1696"]],[3,4,["H7969"]],[4,5,["H505"]],[5,6,["H4912"]],[6,9,["H7892"]],[9,10,["H1961"]],[10,12,["H505"]],[12,14,["H2568"]]]},{"k":8877,"v":[[0,3,["H1696"]],[3,4,["H5921"]],[4,5,["H6086"]],[5,6,["H4480"]],[6,9,["H730"]],[9,10,["H834"]],[10,13,["H3844"]],[13,15,["H5704"]],[15,17,["H231"]],[17,18,["H834"]],[18,20,["H3318"]],[20,23,["H7023"]],[23,25,["H1696"]],[25,27,["H5921"]],[27,28,["H929"]],[28,30,["H5921"]],[30,31,["H5775"]],[31,33,["H5921"]],[33,35,["H7431"]],[35,37,["H5921"]],[37,38,["H1709"]]]},{"k":8878,"v":[[0,3,["H935"]],[3,5,["H4480","H3605"]],[5,6,["H5971"]],[6,8,["H8085","(H853)"]],[8,10,["H2451"]],[10,12,["H8010"]],[12,13,["H4480","H854"]],[13,14,["H3605"]],[14,15,["H4428"]],[15,18,["H776"]],[18,19,["H834"]],[19,22,["H8085","(H853)"]],[22,24,["H2451"]]]},{"k":8879,"v":[[0,2,["H2438"]],[2,3,["H4428"]],[3,5,["H6865"]],[5,6,["H7971","(H853)"]],[6,8,["H5650"]],[8,9,["H413"]],[9,10,["H8010"]],[10,11,["H3588"]],[11,14,["H8085"]],[14,15,["H3588"]],[15,18,["H4886"]],[18,20,["H4428"]],[20,23,["H8478"]],[23,26,["H1"]],[26,27,["H3588"]],[27,28,["H2438"]],[28,29,["H1961"]],[29,30,["H3605","H3117"]],[30,32,["H157"]],[32,34,["H1732"]]]},{"k":8880,"v":[[0,2,["H8010"]],[2,3,["H7971"]],[3,4,["H413"]],[4,5,["H2438"]],[5,6,["H559"]]]},{"k":8881,"v":[[0,1,["H859"]],[1,2,["H3045"]],[2,4,["H3588","(H853)"]],[4,5,["H1732"]],[5,7,["H1"]],[7,8,["H3201"]],[8,9,["H3808"]],[9,10,["H1129"]],[10,12,["H1004"]],[12,15,["H8034"]],[15,18,["H3068"]],[18,20,["H430"]],[20,21,["H4480","H6440"]],[21,23,["H4421"]],[23,24,["H834"]],[24,30,["H5437"]],[30,31,["H5704"]],[31,33,["H3068"]],[33,34,["H5414"]],[34,36,["H8478"]],[36,38,["H3709"]],[38,41,["H7272"]]]},{"k":8882,"v":[[0,2,["H6258"]],[2,4,["H3068"]],[4,6,["H430"]],[6,10,["H5117"]],[10,13,["H4480","H5439"]],[13,18,["H369"]],[18,19,["H7854"]],[19,20,["H369"]],[20,21,["H7451"]],[21,22,["H6294"]]]},{"k":8883,"v":[[0,2,["H2009"]],[2,4,["H559"]],[4,6,["H1129"]],[6,8,["H1004"]],[8,11,["H8034"]],[11,14,["H3068"]],[14,16,["H430"]],[16,17,["H834"]],[17,19,["H3068"]],[19,20,["H1696"]],[20,21,["H413"]],[21,22,["H1732"]],[22,24,["H1"]],[24,25,["H559"]],[25,27,["H1121"]],[27,28,["H834"]],[28,31,["H5414"]],[31,32,["H5921"]],[32,34,["H3678"]],[34,37,["H8478"]],[37,38,["H1931"]],[38,40,["H1129"]],[40,42,["H1004"]],[42,45,["H8034"]]]},{"k":8884,"v":[[0,1,["H6258"]],[1,3,["H6680"]],[3,7,["H3772"]],[7,10,["H730"]],[10,12,["H4480"]],[12,13,["H3844"]],[13,16,["H5650"]],[16,18,["H1961"]],[18,19,["H5973"]],[19,21,["H5650"]],[21,27,["H5414"]],[27,28,["H7939"]],[28,31,["H5650"]],[31,34,["H3605"]],[34,35,["H834"]],[35,38,["H559"]],[38,39,["H3588"]],[39,40,["H859"]],[40,41,["H3045"]],[41,42,["H3588"]],[42,45,["H369"]],[45,48,["H376"]],[48,51,["H3045"]],[51,53,["H3772"]],[53,54,["H6086"]],[54,58,["H6722"]]]},{"k":8885,"v":[[0,5,["H1961"]],[5,7,["H2438"]],[7,8,["H8085","(H853)"]],[8,10,["H1697"]],[10,12,["H8010"]],[12,15,["H8055"]],[15,16,["H3966"]],[16,18,["H559"]],[18,19,["H1288"]],[19,22,["H3068"]],[22,24,["H3117"]],[24,25,["H834"]],[25,27,["H5414"]],[27,29,["H1732"]],[29,31,["H2450"]],[31,32,["H1121"]],[32,33,["H5921"]],[33,34,["H2088"]],[34,35,["H7227"]],[35,36,["H5971"]]]},{"k":8886,"v":[[0,2,["H2438"]],[2,3,["H7971"]],[3,4,["H413"]],[4,5,["H8010"]],[5,6,["H559"]],[6,9,["H8085","(H853)"]],[9,12,["H834"]],[12,14,["H7971"]],[14,15,["H413"]],[15,19,["H589"]],[19,21,["H6213","(H853)"]],[21,22,["H3605"]],[22,24,["H2656"]],[24,26,["H6086"]],[26,28,["H730"]],[28,31,["H6086"]],[31,33,["H1265"]]]},{"k":8887,"v":[[0,2,["H5650"]],[2,6,["H3381"]],[6,7,["H4480"]],[7,8,["H3844"]],[8,11,["H3220"]],[11,13,["H589"]],[13,15,["H7760"]],[15,18,["H3220"]],[18,20,["H1702"]],[20,21,["H5704"]],[21,23,["H4725"]],[23,24,["H834"]],[24,27,["H7971","H413"]],[27,35,["H5310"]],[35,36,["H8033"]],[36,38,["H859"]],[38,40,["H5375"]],[40,43,["H859"]],[43,45,["H6213","(H853)"]],[45,47,["H2656"]],[47,49,["H5414"]],[49,50,["H3899"]],[50,53,["H1004"]]]},{"k":8888,"v":[[0,2,["H2438"]],[2,3,["H5414"]],[3,4,["H8010"]],[4,5,["H730"]],[5,6,["H6086"]],[6,8,["H1265"]],[8,9,["H6086"]],[9,12,["H3605"]],[12,14,["H2656"]]]},{"k":8889,"v":[[0,2,["H8010"]],[2,3,["H5414"]],[3,4,["H2438"]],[4,5,["H6242"]],[5,6,["H505"]],[6,7,["H3734"]],[7,9,["H2406"]],[9,11,["H4361"]],[11,14,["H1004"]],[14,16,["H6242"]],[16,17,["H3734"]],[17,19,["H3795"]],[19,20,["H8081"]],[20,21,["H3541"]],[21,22,["H5414"]],[22,23,["H8010"]],[23,25,["H2438"]],[25,26,["H8141"]],[26,28,["H8141"]]]},{"k":8890,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,5,["H8010"]],[5,6,["H2451"]],[6,7,["H834"]],[7,9,["H1696"]],[9,13,["H1961"]],[13,14,["H7965"]],[14,15,["H996"]],[15,16,["H2438"]],[16,18,["H8010"]],[18,21,["H8147"]],[21,25,["H3772","H1285"]]]},{"k":8891,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H5927"]],[4,6,["H4522"]],[6,9,["H4480","H3605"]],[9,10,["H3478"]],[10,13,["H4522"]],[13,14,["H1961"]],[14,15,["H7970"]],[15,16,["H505"]],[16,17,["H376"]]]},{"k":8892,"v":[[0,3,["H7971"]],[3,6,["H3844"]],[6,7,["H6235"]],[7,8,["H505"]],[8,10,["H2320"]],[10,12,["H2487"]],[12,14,["H2320"]],[14,16,["H1961"]],[16,18,["H3844"]],[18,20,["H8147"]],[20,21,["H2320"]],[21,23,["H1004"]],[23,25,["H141"]],[25,27,["H5921"]],[27,29,["H4522"]]]},{"k":8893,"v":[[0,2,["H8010"]],[2,3,["H1961"]],[3,6,["H7657"]],[6,7,["H505"]],[7,9,["H5375"]],[9,10,["H5449"]],[10,12,["H8084"]],[12,13,["H505"]],[13,14,["H2672"]],[14,17,["H2022"]]]},{"k":8894,"v":[[0,3,["H905","H4480","H8269"]],[3,5,["H8010"]],[5,6,["H5324"]],[6,7,["H834"]],[7,9,["H5921"]],[9,11,["H4399"]],[11,12,["H7969"]],[12,13,["H505"]],[13,15,["H7969"]],[15,16,["H3967"]],[16,18,["H7287"]],[18,21,["H5971"]],[21,23,["H6213"]],[23,26,["H4399"]]]},{"k":8895,"v":[[0,3,["H4428"]],[3,4,["H6680"]],[4,7,["H5265"]],[7,8,["H1419"]],[8,9,["H68"]],[9,10,["H3368"]],[10,11,["H68"]],[11,13,["H1496"]],[13,14,["H68"]],[14,18,["H3245"]],[18,21,["H1004"]]]},{"k":8896,"v":[[0,2,["H8010"]],[2,3,["H1129"]],[3,5,["H2438"]],[5,6,["H1129"]],[6,8,["H6458"]],[8,12,["H1382"]],[12,15,["H3559"]],[15,16,["H6086"]],[16,18,["H68"]],[18,20,["H1129"]],[20,22,["H1004"]]]},{"k":8897,"v":[[0,5,["H1961"]],[5,8,["H702"]],[8,9,["H3967"]],[9,11,["H8084"]],[11,12,["H8141"]],[12,15,["H1121"]],[15,17,["H3478"]],[17,20,["H3318"]],[20,23,["H4480","H776"]],[23,25,["H4714"]],[25,28,["H7243"]],[28,29,["H8141"]],[29,31,["H8010"]],[31,32,["H4427"]],[32,33,["H5921"]],[33,34,["H3478"]],[34,37,["H2320"]],[37,38,["H2099"]],[38,39,["H1931"]],[39,42,["H8145"]],[42,43,["H2320"]],[43,48,["H1129"]],[48,50,["H1004"]],[50,53,["H3068"]]]},{"k":8898,"v":[[0,3,["H1004"]],[3,4,["H834"]],[4,5,["H4428"]],[5,6,["H8010"]],[6,7,["H1129"]],[7,10,["H3068"]],[10,12,["H753"]],[12,15,["H8346"]],[15,16,["H520"]],[16,19,["H7341"]],[19,21,["H6242"]],[21,25,["H6967"]],[25,27,["H7970"]],[27,28,["H520"]]]},{"k":8899,"v":[[0,3,["H197"]],[3,4,["H5921","H6440"]],[4,6,["H1964"]],[6,9,["H1004"]],[9,10,["H6242"]],[10,11,["H520"]],[11,14,["H753"]],[14,16,["H5921","H6440"]],[16,19,["H7341"]],[19,22,["H1004"]],[22,24,["H6235"]],[24,25,["H520"]],[25,28,["H7341"]],[28,30,["H5921","H6440"]],[30,32,["H1004"]]]},{"k":8900,"v":[[0,4,["H1004"]],[4,6,["H6213"]],[6,7,["H2474"]],[7,9,["H331"]],[9,10,["H8261"]]]},{"k":8901,"v":[[0,2,["H5921"]],[2,4,["H7023"]],[4,7,["H1004"]],[7,9,["H1129"]],[9,10,["H3326"]],[10,12,["H5439"]],[12,13,["(H853)"]],[13,15,["H7023"]],[15,18,["H1004"]],[18,20,["H5439"]],[20,24,["H1964"]],[24,28,["H1687"]],[28,31,["H6213"]],[31,32,["H6763"]],[32,34,["H5439"]]]},{"k":8902,"v":[[0,2,["H8481"]],[2,3,["H3326"]],[3,5,["H2568"]],[5,6,["H520"]],[6,7,["H7341"]],[7,10,["H8484"]],[10,12,["H8337"]],[12,13,["H520"]],[13,14,["H7341"]],[14,17,["H7992"]],[17,19,["H7651"]],[19,20,["H520"]],[20,21,["H7341"]],[21,22,["H3588"]],[22,23,["H2351"]],[23,29,["H1004"]],[29,31,["H5414"]],[31,33,["H4052"]],[33,35,["H5439"]],[35,40,["H1115"]],[40,42,["H270"]],[42,45,["H7023"]],[45,48,["H1004"]]]},{"k":8903,"v":[[0,3,["H1004"]],[3,8,["H1129"]],[8,10,["H1129"]],[10,12,["H68"]],[12,14,["H8003"]],[14,18,["H4551"]],[18,24,["H3808"]],[24,25,["H4718"]],[25,27,["H1631"]],[27,29,["H3605"]],[29,30,["H3627"]],[30,32,["H1270"]],[32,33,["H8085"]],[33,36,["H1004"]],[36,41,["H1129"]]]},{"k":8904,"v":[[0,2,["H6607"]],[2,5,["H8484"]],[5,6,["H6763"]],[6,8,["H413"]],[8,10,["H3233"]],[10,11,["H3802"]],[11,14,["H1004"]],[14,18,["H5927"]],[18,21,["H3883"]],[21,22,["H5921"]],[22,24,["H8484"]],[24,28,["H4480"]],[28,30,["H8484"]],[30,31,["H413"]],[31,33,["H7992"]]]},{"k":8905,"v":[[0,3,["H1129","(H853)"]],[3,5,["H1004"]],[5,7,["H3615"]],[7,10,["H5603","(H853)"]],[10,12,["H1004"]],[12,14,["H1356"]],[14,16,["H7713"]],[16,18,["H730"]]]},{"k":8906,"v":[[0,4,["H1129","(H853)"]],[4,5,["H3326"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,9,["H1004"]],[9,10,["H2568"]],[10,11,["H520"]],[11,12,["H6967"]],[12,16,["H270","(H853)"]],[16,18,["H1004"]],[18,20,["H6086"]],[20,22,["H730"]]]},{"k":8907,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H8010"]],[9,10,["H559"]]]},{"k":8908,"v":[[0,2,["H2088"]],[2,3,["H1004"]],[3,4,["H834"]],[4,5,["H859"]],[5,8,["H1129"]],[8,9,["H518"]],[9,12,["H1980"]],[12,15,["H2708"]],[15,17,["H6213"]],[17,19,["H4941"]],[19,21,["H8104","(H853)"]],[21,22,["H3605"]],[22,24,["H4687"]],[24,26,["H1980"]],[26,32,["H6965","(H853)"]],[32,34,["H1697"]],[34,36,["H854"]],[36,37,["H834"]],[37,39,["H1696"]],[39,40,["H413"]],[40,41,["H1732"]],[41,43,["H1"]]]},{"k":8909,"v":[[0,4,["H7931"]],[4,5,["H8432"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,12,["H3808"]],[12,13,["H5800","(H853)"]],[13,15,["H5971"]],[15,16,["H3478"]]]},{"k":8910,"v":[[0,2,["H8010"]],[2,3,["H1129","(H853)"]],[3,5,["H1004"]],[5,7,["H3615"]],[7,8,[]]]},{"k":8911,"v":[[0,3,["H1129","(H853)"]],[3,5,["H7023"]],[5,8,["H1004"]],[8,9,["H4480","H1004"]],[9,11,["H6763"]],[11,13,["H730"]],[13,16,["H4480","H7172"]],[16,19,["H1004"]],[19,22,["H7023"]],[22,25,["H5604"]],[25,28,["H6823"]],[28,32,["H4480","H1004"]],[32,34,["H6086"]],[34,36,["H6823","(H853)"]],[36,38,["H7172"]],[38,41,["H1004"]],[41,43,["H6763"]],[43,45,["H1265"]]]},{"k":8912,"v":[[0,3,["H1129","(H853)"]],[3,4,["H6242"]],[4,5,["H520"]],[5,8,["H4480","H3411"]],[8,11,["H1004"]],[11,12,["H4480"]],[12,14,["H7172"]],[14,17,["H7023"]],[17,19,["H6763"]],[19,21,["H730"]],[21,24,["H1129"]],[24,28,["H4480","H1004"]],[28,32,["H1687"]],[32,37,["H6944","H6944"]],[37,38,[]]]},{"k":8913,"v":[[0,3,["H1004"]],[3,4,["H1931"]],[4,7,["H1964"]],[7,8,["H3942"]],[8,10,["H1961"]],[10,11,["H705"]],[11,12,["H520"]],[12,13,[]]]},{"k":8914,"v":[[0,3,["H730"]],[3,4,["H413"]],[4,6,["H1004"]],[6,7,["H6441"]],[7,9,["H4734"]],[9,11,["H6497"]],[11,13,["H6358"]],[13,14,["H6731"]],[14,15,["H3605"]],[15,17,["H730"]],[17,20,["H369"]],[20,21,["H68"]],[21,22,["H7200"]]]},{"k":8915,"v":[[0,3,["H1687"]],[3,5,["H3559"]],[5,8,["H8432","H1004"]],[8,9,["H4480","H6441"]],[9,11,["H5414"]],[11,12,["H8033","(H853)"]],[12,14,["H727"]],[14,17,["H1285"]],[17,20,["H3068"]]]},{"k":8916,"v":[[0,3,["H1687"]],[3,6,["H6440"]],[6,8,["H6242"]],[8,9,["H520"]],[9,11,["H753"]],[11,13,["H6242"]],[13,14,["H520"]],[14,16,["H7341"]],[16,18,["H6242"]],[18,19,["H520"]],[19,22,["H6967"]],[22,26,["H6823"]],[26,29,["H5462"]],[29,30,["H2091"]],[30,33,["H6823"]],[33,35,["H4196"]],[35,39,["H730"]]]},{"k":8917,"v":[[0,2,["H8010"]],[2,3,["H6823","(H853)"]],[3,5,["H1004"]],[5,6,["H4480","H6441"]],[6,8,["H5462"]],[8,9,["H2091"]],[9,14,["H5674"]],[14,17,["H7569"]],[17,19,["H2091"]],[19,20,["H6440"]],[20,22,["H1687"]],[22,25,["H6823"]],[25,28,["H2091"]]]},{"k":8918,"v":[[0,3,["H3605"]],[3,4,["H1004"]],[4,6,["H6823"]],[6,8,["H2091"]],[8,9,["H5704"]],[9,12,["H8552"]],[12,13,["H3605"]],[13,15,["H1004"]],[15,18,["H3605"]],[18,19,["H4196"]],[19,20,["H834"]],[20,24,["H1687"]],[24,26,["H6823"]],[26,28,["H2091"]]]},{"k":8919,"v":[[0,4,["H1687"]],[4,6,["H6213"]],[6,7,["H8147"]],[7,8,["H3742"]],[8,10,["H8081"]],[10,11,["H6086"]],[11,13,["H6235"]],[13,14,["H520"]],[14,15,["H6967"]]]},{"k":8920,"v":[[0,2,["H2568"]],[2,3,["H520"]],[3,6,["H259"]],[6,7,["H3671"]],[7,10,["H3742"]],[10,12,["H2568"]],[12,13,["H520"]],[13,15,["H8145"]],[15,16,["H3671"]],[16,19,["H3742"]],[19,23,["H4480","H7098"]],[23,27,["H3671"]],[27,28,["H5704"]],[28,31,["H7098"]],[31,34,["H3671"]],[34,36,["H6235"]],[36,37,["H520"]]]},{"k":8921,"v":[[0,3,["H8145"]],[3,4,["H3742"]],[4,6,["H6235"]],[6,7,["H520"]],[7,8,["H8147"]],[8,10,["H3742"]],[10,13,["H259"]],[13,14,["H4060"]],[14,16,["H259"]],[16,17,["H7095"]]]},{"k":8922,"v":[[0,2,["H6967"]],[2,5,["H259"]],[5,6,["H3742"]],[6,8,["H6235"]],[8,9,["H520"]],[9,11,["H3651"]],[11,16,["H8145"]],[16,17,["H3742"]]]},{"k":8923,"v":[[0,3,["H5414","(H853)"]],[3,5,["H3742"]],[5,6,["H8432"]],[6,8,["H6442"]],[8,9,["H1004"]],[9,13,["H6566","(H853)"]],[13,15,["H3671"]],[15,18,["H3742"]],[18,22,["H3671"]],[22,25,["H259"]],[25,26,["H5060"]],[26,29,["H7023"]],[29,32,["H3671"]],[32,35,["H8145"]],[35,36,["H3742"]],[36,37,["H5060"]],[37,39,["H8145"]],[39,40,["H7023"]],[40,43,["H3671"]],[43,44,["H5060"]],[44,45,["H3671"]],[45,46,["H413","H3671"]],[46,47,["H413"]],[47,49,["H8432"]],[49,52,["H1004"]]]},{"k":8924,"v":[[0,3,["H6823","(H853)"]],[3,5,["H3742"]],[5,7,["H2091"]]]},{"k":8925,"v":[[0,3,["H7049"]],[3,4,["H3605"]],[4,6,["H7023"]],[6,9,["H1004"]],[9,11,["H4524"]],[11,13,["H6603"]],[13,14,["H4734"]],[14,16,["H3742"]],[16,19,["H8561"]],[19,21,["H6358"]],[21,22,["H6731"]],[22,23,["H4480","H6440"]],[23,25,["H2435"]]]},{"k":8926,"v":[[0,3,["H7172"]],[3,6,["H1004"]],[6,8,["H6823"]],[8,10,["H2091"]],[10,11,["H6441"]],[11,13,["H2435"]]]},{"k":8927,"v":[[0,4,["H6607"]],[4,7,["H1687"]],[7,9,["H6213"]],[9,10,["H1817"]],[10,12,["H8081"]],[12,13,["H6086"]],[13,15,["H352"]],[15,18,["H4201"]],[18,22,["H2549"]],[22,25,[]]]},{"k":8928,"v":[[0,2,["H8147"]],[2,3,["H1817"]],[3,7,["H8081"]],[7,8,["H6086"]],[8,11,["H7049"]],[11,12,["H5921"]],[12,14,["H4734"]],[14,16,["H3742"]],[16,19,["H8561"]],[19,21,["H6358"]],[21,22,["H6731"]],[22,24,["H6823"]],[24,27,["H2091"]],[27,29,["H7286","(H853)"]],[29,30,["H2091"]],[30,31,["H5921"]],[31,33,["H3742"]],[33,35,["H5921"]],[35,38,["H8561"]]]},{"k":8929,"v":[[0,1,["H3651"]],[1,3,["H6213"]],[3,7,["H6607"]],[7,10,["H1964"]],[10,11,["H4201"]],[11,13,["H8081"]],[13,14,["H6086"]],[14,17,["H4480","H854","H7243"]],[17,20,[]]]},{"k":8930,"v":[[0,3,["H8147"]],[3,4,["H1817"]],[4,7,["H1265"]],[7,8,["H6086"]],[8,10,["H8147"]],[10,11,["H6763"]],[11,14,["H259"]],[14,15,["H1817"]],[15,17,["H1550"]],[17,20,["H8147"]],[20,21,["H7050"]],[21,24,["H8145"]],[24,25,["H1817"]],[25,27,["H1550"]]]},{"k":8931,"v":[[0,3,["H7049"]],[3,5,["H3742"]],[5,8,["H8561"]],[8,10,["H6358"]],[10,11,["H6731"]],[11,13,["H6823"]],[13,16,["H2091"]],[16,17,["H3474"]],[17,18,["H5921"]],[18,21,["H2707"]]]},{"k":8932,"v":[[0,3,["H1129"]],[3,5,["H6442","(H853)"]],[5,6,["H2691"]],[6,8,["H7969"]],[8,9,["H2905"]],[9,12,["H1496"]],[12,15,["H2905"]],[15,17,["H730"]],[17,18,["H3773"]]]},{"k":8933,"v":[[0,3,["H7243"]],[3,4,["H8141"]],[4,7,["H3245"]],[7,10,["H1004"]],[10,13,["H3068"]],[13,17,["H3391"]],[17,18,["H2099"]]]},{"k":8934,"v":[[0,4,["H259","H6240"]],[4,5,["H8141"]],[5,8,["H3391"]],[8,9,["H945"]],[9,10,["H1931"]],[10,13,["H8066"]],[13,14,["H2320"]],[14,17,["H1004"]],[17,18,["H3615"]],[18,20,["H3605"]],[20,22,["H1697"]],[22,27,["H3605"]],[27,29,["H4941"]],[29,35,["H7651"]],[35,36,["H8141"]],[36,38,["H1129"]],[38,39,[]]]},{"k":8935,"v":[[0,2,["H8010"]],[2,4,["H1129"]],[4,7,["H1004"]],[7,8,["H7969","H6240"]],[8,9,["H8141"]],[9,12,["H3615","(H853)"]],[12,13,["H3605"]],[13,15,["H1004"]]]},{"k":8936,"v":[[0,2,["H1129"]],[2,3,["(H853)"]],[3,5,["H1004"]],[5,8,["H3293"]],[8,10,["H3844"]],[10,12,["H753"]],[12,16,["H3967"]],[16,17,["H520"]],[17,20,["H7341"]],[20,22,["H2572"]],[22,23,["H520"]],[23,26,["H6967"]],[26,28,["H7970"]],[28,29,["H520"]],[29,30,["H5921"]],[30,31,["H702"]],[31,32,["H2905"]],[32,34,["H730"]],[34,35,["H5982"]],[35,37,["H730"]],[37,38,["H3773"]],[38,39,["H5921"]],[39,41,["H5982"]]]},{"k":8937,"v":[[0,4,["H5603"]],[4,6,["H730"]],[6,7,["H4480","H4605"]],[7,8,["H5921"]],[8,10,["H6763"]],[10,11,["H834"]],[11,13,["H5921"]],[13,14,["H705"]],[14,15,["H2568"]],[15,16,["H5982"]],[16,17,["H2568","H6240"]],[17,20,["H2905"]]]},{"k":8938,"v":[[0,4,["H8261"]],[4,6,["H7969"]],[6,7,["H2905"]],[7,9,["H4237"]],[9,11,["H413"]],[11,12,["H4237"]],[12,14,["H7969"]],[14,15,["H6471"]]]},{"k":8939,"v":[[0,2,["H3605"]],[2,4,["H6607"]],[4,6,["H4201"]],[6,8,["H7251"]],[8,11,["H8260"]],[11,13,["H4237"]],[13,15,["H413"]],[15,16,["H4237"]],[16,18,["H7969"]],[18,19,["H6471"]]]},{"k":8940,"v":[[0,3,["H6213"]],[3,5,["H197"]],[5,7,["H5982"]],[7,9,["H753"]],[9,12,["H2572"]],[12,13,["H520"]],[13,16,["H7341"]],[16,18,["H7970"]],[18,19,["H520"]],[19,22,["H197"]],[22,24,["H5921","H6440"]],[24,29,["H5982"]],[29,33,["H5646"]],[33,35,["H5921","H6440"]],[35,36,[]]]},{"k":8941,"v":[[0,3,["H6213"]],[3,5,["H197"]],[5,8,["H3678"]],[8,9,["H834","H8033"]],[9,12,["H8199"]],[12,15,["H197"]],[15,17,["H4941"]],[17,21,["H5603"]],[21,23,["H730"]],[23,29,["H4480","H7172"]],[29,30,["H5704"]],[30,32,["H7172"]]]},{"k":8942,"v":[[0,3,["H1004"]],[3,4,["H834","H8033"]],[4,6,["H3427"]],[6,8,["H312"]],[8,9,["H2691"]],[9,10,["H4480","H1004"]],[10,12,["H197"]],[12,14,["H1961"]],[14,17,["H2088"]],[17,18,["H4639"]],[18,19,["H8010"]],[19,20,["H6213"]],[20,23,["H1004"]],[23,25,["H6547"]],[25,26,["H1323"]],[26,27,["H834"]],[27,30,["H3947"]],[30,35,["H2088"]],[35,36,["H197"]]]},{"k":8943,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,5,["H3368"]],[5,6,["H68"]],[6,10,["H4060"]],[10,13,["H1496"]],[13,14,["H1641"]],[14,16,["H4050"]],[16,17,["H4480","H1004"]],[17,19,["H4480","H2351"]],[19,23,["H4480","H4527"]],[23,24,["H5704"]],[24,26,["H2948"]],[26,31,["H4480","H2351"]],[31,32,["H5704"]],[32,34,["H1419"]],[34,35,["H2691"]]]},{"k":8944,"v":[[0,3,["H3245"]],[3,6,["H3368"]],[6,7,["H68"]],[7,9,["H1419"]],[9,10,["H68"]],[10,11,["H68"]],[11,13,["H6235"]],[13,14,["H520"]],[14,16,["H68"]],[16,18,["H8083"]],[18,19,["H520"]]]},{"k":8945,"v":[[0,2,["H4480","H4605"]],[2,4,["H3368"]],[4,5,["H68"]],[5,8,["H4060"]],[8,11,["H1496"]],[11,13,["H730"]]]},{"k":8946,"v":[[0,3,["H1419"]],[3,4,["H2691"]],[4,6,["H5439"]],[6,9,["H7969"]],[9,10,["H2905"]],[10,13,["H1496"]],[13,16,["H2905"]],[16,18,["H730"]],[18,19,["H3773"]],[19,23,["H6442"]],[23,24,["H2691"]],[24,27,["H1004"]],[27,30,["H3068"]],[30,34,["H197"]],[34,37,["H1004"]]]},{"k":8947,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H7971"]],[4,6,["H3947","(H853)"]],[6,7,["H2438"]],[7,10,["H4480","H6865"]]]},{"k":8948,"v":[[0,1,["H1931"]],[1,4,["H490"]],[4,5,["H1121"]],[5,8,["H4480","H4294"]],[8,10,["H5321"]],[10,13,["H1"]],[13,16,["H376"]],[16,18,["H6876"]],[18,20,["H2790"]],[20,22,["H5178"]],[22,26,["H4390"]],[26,27,["H854"]],[27,28,["H2451"]],[28,30,["H8394"]],[30,32,["H1847"]],[32,34,["H6213"]],[34,35,["H3605"]],[35,36,["H4399"]],[36,38,["H5178"]],[38,41,["H935"]],[41,42,["H413"]],[42,43,["H4428"]],[43,44,["H8010"]],[44,46,["H6213","(H853)"]],[46,47,["H3605"]],[47,49,["H4399"]]]},{"k":8949,"v":[[0,3,["H6696","(H853)"]],[3,4,["H8147"]],[4,5,["H5982"]],[5,7,["H5178"]],[7,9,["H8083","H6240"]],[9,10,["H520"]],[10,11,["H6967"]],[11,12,["H5982","H259"]],[12,15,["H2339"]],[15,17,["H8147","H6240"]],[17,18,["H520"]],[18,24,["H5437","(H853)","H5982","H8145"]]]},{"k":8950,"v":[[0,3,["H6213"]],[3,4,["H8147"]],[4,5,["H3805"]],[5,7,["H3332"]],[7,8,["H5178"]],[8,10,["H5414"]],[10,11,["H5921"]],[11,13,["H7218"]],[13,16,["H5982"]],[16,18,["H6967"]],[18,21,["H259"]],[21,22,["H3805"]],[22,24,["H2568"]],[24,25,["H520"]],[25,28,["H6967"]],[28,31,["H8145"]],[31,32,["H3805"]],[32,34,["H2568"]],[34,35,["H520"]]]},{"k":8951,"v":[[0,2,["H7638"]],[2,4,["H7639"]],[4,5,["H4639"]],[5,7,["H1434"]],[7,9,["H8333"]],[9,10,["H4639"]],[10,13,["H3805"]],[13,14,["H834"]],[14,16,["H5921"]],[16,18,["H7218"]],[18,21,["H5982"]],[21,22,["H7651"]],[22,25,["H259"]],[25,26,["H3805"]],[26,28,["H7651"]],[28,31,["H8145"]],[31,32,["H3805"]]]},{"k":8952,"v":[[0,3,["H6213","(H853)"]],[3,5,["H5982"]],[5,7,["H8147"]],[7,8,["H2905"]],[8,10,["H5439"]],[10,11,["H5921"]],[11,13,["H259"]],[13,14,["H7639"]],[14,16,["H3680","(H853)"]],[16,18,["H3805"]],[18,19,["H834"]],[19,21,["H5921"]],[21,23,["H7218"]],[23,25,["H7416"]],[25,27,["H3651"]],[27,28,["H6213"]],[28,32,["H8145"]],[32,33,["H3805"]]]},{"k":8953,"v":[[0,3,["H3805"]],[3,4,["H834"]],[4,6,["H5921"]],[6,8,["H7218"]],[8,11,["H5982"]],[11,14,["H7799"]],[14,15,["H4639"]],[15,18,["H197"]],[18,19,["H702"]],[19,20,["H520"]]]},{"k":8954,"v":[[0,3,["H3805"]],[3,4,["H5921"]],[4,6,["H8147"]],[6,7,["H5982"]],[7,10,["H1571"]],[10,11,["H4480","H4605"]],[11,13,["H4480","H5980"]],[13,15,["H990"]],[15,16,["H834"]],[16,18,["H5676"]],[18,20,["H7639"]],[20,23,["H7416"]],[23,26,["H3967"]],[26,28,["H2905"]],[28,30,["H5439"]],[30,31,["H5921"]],[31,33,["H8145"]],[33,34,["H3805"]]]},{"k":8955,"v":[[0,4,["H6965","(H853)"]],[4,6,["H5982"]],[6,9,["H197"]],[9,12,["H1964"]],[12,16,["H6965"]],[16,18,["H3233","(H853)"]],[18,19,["H5982"]],[19,21,["H7121","(H853)"]],[21,23,["H8034"]],[23,25,["H3199"]],[25,29,["H6965","(H853)"]],[29,31,["H8042"]],[31,32,["H5982"]],[32,34,["H7121","(H853)"]],[34,36,["H8034"]],[36,38,["H1162"]]]},{"k":8956,"v":[[0,2,["H5921"]],[2,4,["H7218"]],[4,7,["H5982"]],[7,9,["H7799"]],[9,10,["H4639"]],[10,14,["H4399"]],[14,17,["H5982"]],[17,18,["H8552"]]]},{"k":8957,"v":[[0,3,["H6213","(H853)"]],[3,5,["H3332"]],[5,6,["H3220"]],[6,7,["H6235"]],[7,8,["H520"]],[8,12,["H4480","H8193"]],[12,13,["H5704"]],[13,15,["H8193"]],[15,18,["H5696"]],[18,20,["H5439"]],[20,23,["H6967"]],[23,25,["H2568"]],[25,26,["H520"]],[26,29,["H6957"]],[29,31,["H7970"]],[31,32,["H520"]],[32,34,["H5437"]],[34,37,["H5439"]]]},{"k":8958,"v":[[0,2,["H4480","H8478"]],[2,4,["H8193"]],[4,8,["H5439"]],[8,11,["H6497"]],[11,12,["H5437"]],[12,14,["H6235"]],[14,17,["H520"]],[17,18,["H5362","(H853)"]],[18,20,["H3220"]],[20,22,["H5439"]],[22,24,["H6497"]],[24,26,["H3332"]],[26,28,["H8147"]],[28,29,["H2905"]],[29,33,["H3333"]]]},{"k":8959,"v":[[0,2,["H5975"]],[2,3,["H5921"]],[3,4,["H8147","H6240"]],[4,5,["H1241"]],[5,6,["H7969"]],[6,7,["H6437"]],[7,10,["H6828"]],[10,12,["H7969"]],[12,13,["H6437"]],[13,16,["H3220"]],[16,18,["H7969"]],[18,19,["H6437"]],[19,22,["H5045"]],[22,24,["H7969"]],[24,25,["H6437"]],[25,28,["H4217"]],[28,31,["H3220"]],[31,34,["H4480","H4605"]],[34,35,["H5921"]],[35,38,["H3605"]],[38,41,["H268"]],[41,43,["H1004"]]]},{"k":8960,"v":[[0,6,["H2947"]],[6,7,["H5672"]],[7,10,["H8193"]],[10,13,["H4639"]],[13,16,["H8193"]],[16,19,["H3563"]],[19,21,["H6525"]],[21,23,["H7799"]],[23,25,["H3557"]],[25,27,["H505"]],[27,28,["H1324"]]]},{"k":8961,"v":[[0,3,["H6213","(H853)"]],[3,4,["H6235"]],[4,5,["H4350"]],[5,7,["H5178"]],[7,8,["H702"]],[8,9,["H520"]],[9,12,["H753"]],[12,14,["H259"]],[14,15,["H4350"]],[15,17,["H702"]],[17,18,["H520"]],[18,20,["H7341"]],[20,23,["H7969"]],[23,24,["H520"]],[24,26,["H6967"]],[26,28,[]]]},{"k":8962,"v":[[0,3,["H4639"]],[3,6,["H4350"]],[6,9,["H2088"]],[9,13,["H4526"]],[13,16,["H4526"]],[16,18,["H996"]],[18,20,["H7948"]]]},{"k":8963,"v":[[0,2,["H5921"]],[2,4,["H4526"]],[4,5,["H834"]],[5,7,["H996"]],[7,9,["H7948"]],[9,11,["H738"]],[11,12,["H1241"]],[12,14,["H3742"]],[14,16,["H5921"]],[16,18,["H7948"]],[18,22,["H3653"]],[22,23,["H4480","H4605"]],[23,25,["H4480","H8478"]],[25,27,["H738"]],[27,29,["H1241"]],[29,32,["H3914"]],[32,35,["H4174"]],[35,36,["H4639"]]]},{"k":8964,"v":[[0,2,["H259"]],[2,3,["H4350"]],[3,5,["H702"]],[5,6,["H5178"]],[6,7,["H212"]],[7,9,["H5633"]],[9,11,["H5178"]],[11,14,["H702"]],[14,15,["H6471"]],[15,18,["H3802"]],[18,19,["H4480","H8478"]],[19,21,["H3595"]],[21,23,["H3802"]],[23,24,["H3332"]],[24,27,["H4480","H5676"]],[27,29,["H376"]],[29,30,["H3914"]]]},{"k":8965,"v":[[0,3,["H6310"]],[3,6,["H4480","H1004"]],[6,8,["H3805"]],[8,10,["H4605"]],[10,13,["H520"]],[13,16,["H6310"]],[16,19,["H5696"]],[19,22,["H4639"]],[22,25,["H3653"]],[25,27,["H520"]],[27,30,["H2677","H520"]],[30,32,["H1571"]],[32,33,["H5921"]],[33,35,["H6310"]],[35,39,["H4734"]],[39,42,["H4526"]],[42,43,["H7251"]],[43,44,["H3808"]],[44,45,["H5696"]]]},{"k":8966,"v":[[0,2,["H4480","H8478"]],[2,4,["H4526"]],[4,6,["H702"]],[6,7,["H212"]],[7,10,["H3027"]],[10,13,["H212"]],[13,18,["H4350"]],[18,21,["H6967"]],[21,23,["H259"]],[23,24,["H212"]],[24,27,["H520"]],[27,29,["H2677"]],[29,31,["H520"]]]},{"k":8967,"v":[[0,3,["H4639"]],[3,6,["H212"]],[6,10,["H4639"]],[10,13,["H4818"]],[13,14,["H212"]],[14,16,["H3027"]],[16,19,["H1354"]],[19,22,["H2839"]],[22,25,["H2840"]],[25,27,["H3605"]],[27,28,["H3332"]]]},{"k":8968,"v":[[0,4,["H702"]],[4,5,["H3802"]],[5,6,["H413"]],[6,8,["H702"]],[8,9,["H6438"]],[9,11,["H259"]],[11,12,["H4350"]],[12,15,["H3802"]],[15,17,["H4480"]],[17,20,["H4350"]],[20,21,[]]]},{"k":8969,"v":[[0,4,["H7218"]],[4,7,["H4350"]],[7,11,["H5696"]],[11,12,["H5439"]],[12,14,["H2677"]],[14,16,["H520"]],[16,17,["H6967"]],[17,19,["H5921"]],[19,21,["H7218"]],[21,24,["H4350"]],[24,26,["H3027"]],[26,30,["H4526"]],[30,33,["H4480"]],[33,35,[]]]},{"k":8970,"v":[[0,2,["H5921"]],[2,4,["H3871"]],[4,7,["H3027"]],[7,10,["H5921"]],[10,12,["H4526"]],[12,15,["H6605"]],[15,16,["H3742"]],[16,17,["H738"]],[17,20,["H8561"]],[20,24,["H4626"]],[24,27,["H376"]],[27,29,["H3914"]],[29,31,["H5439"]]]},{"k":8971,"v":[[0,2,["H2063"]],[2,5,["H6213","(H853)"]],[5,7,["H6235"]],[7,8,["H4350"]],[8,9,["H3605"]],[9,13,["H259"]],[13,14,["H4165"]],[14,15,["H259"]],[15,16,["H4060"]],[16,18,["H259"]],[18,19,["H7095"]]]},{"k":8972,"v":[[0,2,["H6213"]],[2,4,["H6235"]],[4,5,["H3595"]],[5,7,["H5178"]],[7,8,["H259"]],[8,9,["H3595"]],[9,10,["H3557"]],[10,11,["H705"]],[11,12,["H1324"]],[12,14,["H259"]],[14,15,["H3595"]],[15,17,["H702"]],[17,18,["H520"]],[18,20,["H5921"]],[20,22,["H259"]],[22,25,["H6235"]],[25,26,["H4350"]],[26,27,["H259"]],[27,28,["H3595"]]]},{"k":8973,"v":[[0,3,["H5414","(H853)"]],[3,4,["H2568"]],[4,5,["H4350"]],[5,6,["H5921"]],[6,8,["H4480","H3225"]],[8,9,["H3802"]],[9,12,["H1004"]],[12,14,["H2568"]],[14,15,["H5921"]],[15,17,["H4480","H8040"]],[17,18,["H3802"]],[18,21,["H1004"]],[21,24,["H5414"]],[24,26,["H3220"]],[26,29,["H3233"]],[29,30,["H4480","H3802"]],[30,33,["H1004"]],[33,34,["H6924"]],[34,36,["H4480","H4136"]],[36,38,["H5045"]]]},{"k":8974,"v":[[0,2,["H2438"]],[2,3,["H6213","(H853)"]],[3,5,["H3595"]],[5,8,["H3257"]],[8,11,["H4219"]],[11,13,["H2438"]],[13,16,["H3615"]],[16,18,["H6213","(H853)"]],[18,19,["H3605"]],[19,21,["H4399"]],[21,22,["H834"]],[22,24,["H6213"]],[24,25,["H4428"]],[25,26,["H8010"]],[26,29,["H1004"]],[29,32,["H3068"]]]},{"k":8975,"v":[[0,2,["H8147"]],[2,3,["H5982"]],[3,7,["H1543"]],[7,10,["H3805"]],[10,11,["H834"]],[11,13,["H5921"]],[13,15,["H7218"]],[15,18,["H8147"]],[18,19,["H5982"]],[19,22,["H8147"]],[22,23,["H7639"]],[23,25,["H3680","(H853)"]],[25,27,["H8147"]],[27,28,["H1543"]],[28,31,["H3805"]],[31,32,["H834"]],[32,34,["H5921"]],[34,36,["H7218"]],[36,39,["H5982"]]]},{"k":8976,"v":[[0,2,["H702"]],[2,3,["H3967"]],[3,4,["H7416"]],[4,7,["H8147"]],[7,8,["H7639"]],[8,10,["H8147"]],[10,11,["H2905"]],[11,13,["H7416"]],[13,15,["H259"]],[15,16,["H7639"]],[16,18,["H3680","(H853)"]],[18,20,["H8147"]],[20,21,["H1543"]],[21,24,["H3805"]],[24,25,["H834"]],[25,27,["H5921","H6440"]],[27,29,["H5982"]]]},{"k":8977,"v":[[0,3,["H6235"]],[3,4,["H4350"]],[4,6,["H6235"]],[6,7,["H3595"]],[7,8,["H5921"]],[8,10,["H4350"]]]},{"k":8978,"v":[[0,2,["H259"]],[2,3,["H3220"]],[3,5,["H8147","H6240"]],[5,6,["H1241"]],[6,7,["H8478"]],[7,9,["H3220"]]]},{"k":8979,"v":[[0,3,["H5518"]],[3,6,["H3257"]],[6,9,["H4219"]],[9,11,["H3605"]],[11,12,["H428"]],[12,13,["H3627"]],[13,14,["H834"]],[14,15,["H2438"]],[15,16,["H6213"]],[16,18,["H4428"]],[18,19,["H8010"]],[19,22,["H1004"]],[22,25,["H3068"]],[25,28,["H4803"]],[28,29,["H5178"]]]},{"k":8980,"v":[[0,3,["H3603"]],[3,5,["H3383"]],[5,8,["H4428"]],[8,9,["H3332"]],[9,13,["H4568"]],[13,14,["H127"]],[14,15,["H996"]],[15,16,["H5523"]],[16,18,["H6891"]]]},{"k":8981,"v":[[0,2,["H8010"]],[2,3,["H5117","(H853)"]],[3,4,["H3605"]],[4,6,["H3627"]],[6,11,["H3966","H3966"]],[11,12,["H4480","H7230"]],[12,13,["H3808"]],[13,16,["H4948"]],[16,19,["H5178"]],[19,21,["H2713"]]]},{"k":8982,"v":[[0,2,["H8010"]],[2,3,["H6213","(H853)"]],[3,4,["H3605"]],[4,6,["H3627"]],[6,7,["H834"]],[7,11,["H1004"]],[11,14,["H3068","(H853)"]],[14,16,["H4196"]],[16,18,["H2091"]],[18,21,["H7979"]],[21,23,["H2091"]],[23,24,["H834","H5921"]],[24,26,["H3899","H6440"]],[26,27,[]]]},{"k":8983,"v":[[0,3,["H4501"]],[3,5,["H5462"]],[5,6,["H2091"]],[6,7,["H2568"]],[7,10,["H4480","H3225"]],[10,13,["H2568"]],[13,16,["H4480","H8040"]],[16,17,["H6440"]],[17,19,["H1687"]],[19,22,["H6525"]],[22,25,["H5216"]],[25,28,["H4457"]],[28,30,["H2091"]]]},{"k":8984,"v":[[0,3,["H5592"]],[3,6,["H4212"]],[6,9,["H4219"]],[9,12,["H3709"]],[12,15,["H4289"]],[15,17,["H5462"]],[17,18,["H2091"]],[18,21,["H6596"]],[21,23,["H2091"]],[23,27,["H1817"]],[27,30,["H6442"]],[30,31,["H1004"]],[31,33,["H6944"]],[33,34,["H6944"]],[34,39,["H1817"]],[39,42,["H1004"]],[42,47,["H1964"]]]},{"k":8985,"v":[[0,3,["H7999"]],[3,4,["H3605"]],[4,6,["H4399"]],[6,7,["H834"]],[7,8,["H4428"]],[8,9,["H8010"]],[9,10,["H6213"]],[10,13,["H1004"]],[13,16,["H3068"]],[16,18,["H8010"]],[18,20,["H935","(H853)"]],[20,24,["H1732"]],[24,26,["H1"]],[26,28,["H6944"]],[28,29,["(H853)"]],[29,31,["H3701"]],[31,34,["H2091"]],[34,37,["H3627"]],[37,40,["H5414"]],[40,43,["H214"]],[43,46,["H1004"]],[46,49,["H3068"]]]},{"k":8986,"v":[[0,1,["H227"]],[1,2,["H8010"]],[2,3,["H6950","(H853)"]],[3,5,["H2205"]],[5,7,["H3478"]],[7,8,["(H853)"]],[8,9,["H3605"]],[9,11,["H7218"]],[11,14,["H4294"]],[14,16,["H5387"]],[16,19,["H1"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,25,["H413"]],[25,26,["H4428"]],[26,27,["H8010"]],[27,29,["H3389"]],[29,34,["H5927","(H853)"]],[34,36,["H727"]],[36,39,["H1285"]],[39,42,["H3068"]],[42,46,["H4480","H5892"]],[46,48,["H1732"]],[48,49,["H1931"]],[49,51,["H6726"]]]},{"k":8987,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,6,["H3478"]],[6,8,["H6950"]],[8,9,["H413"]],[9,10,["H4428"]],[10,11,["H8010"]],[11,14,["H2282"]],[14,17,["H3391"]],[17,18,["H388"]],[18,19,["H1931"]],[19,22,["H7637"]],[22,23,["H2320"]]]},{"k":8988,"v":[[0,2,["H3605"]],[2,4,["H2205"]],[4,6,["H3478"]],[6,7,["H935"]],[7,10,["H3548"]],[10,12,["H5375","(H853)"]],[12,14,["H727"]]]},{"k":8989,"v":[[0,4,["H5927","(H853)"]],[4,6,["H727"]],[6,9,["H3068"]],[9,12,["H168"]],[12,15,["H4150"]],[15,17,["H3605"]],[17,19,["H6944"]],[19,20,["H3627"]],[20,21,["H834"]],[21,25,["H168"]],[25,30,["H3548"]],[30,33,["H3881"]],[33,35,["H5927"]]]},{"k":8990,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,5,["H3605"]],[5,7,["H5712"]],[7,9,["H3478"]],[9,12,["H3259"]],[12,13,["H5921"]],[13,16,["H854"]],[16,18,["H6440"]],[18,20,["H727"]],[20,21,["H2076"]],[21,22,["H6629"]],[22,24,["H1241"]],[24,25,["H834"]],[25,27,["H3808"]],[27,29,["H5608"]],[29,30,["H3808"]],[30,31,["H4487"]],[31,33,["H4480","H7230"]]]},{"k":8991,"v":[[0,3,["H3548"]],[3,5,["H935","(H853)"]],[5,7,["H727"]],[7,10,["H1285"]],[10,13,["H3068"]],[13,14,["H413"]],[14,16,["H4725"]],[16,17,["H413"]],[17,19,["H1687"]],[19,22,["H1004"]],[22,23,["H413"]],[23,25,["H6944"]],[25,26,["H6944"]],[26,29,["H413","H8478"]],[29,31,["H3671"]],[31,34,["H3742"]]]},{"k":8992,"v":[[0,1,["H3588"]],[1,3,["H3742"]],[3,5,["H6566"]],[5,8,["H3671"]],[8,9,["H413"]],[9,11,["H4725"]],[11,14,["H727"]],[14,17,["H3742"]],[17,18,["H5526","H5921"]],[18,20,["H727"]],[20,23,["H905"]],[23,25,["H4480","H4605"]]]},{"k":8993,"v":[[0,4,["H748"]],[4,6,["H905"]],[6,9,["H7218"]],[9,12,["H905"]],[12,14,["H7200"]],[14,15,["H4480"]],[15,18,["H6944"]],[18,20,["H5921","H6440"]],[20,22,["H1687"]],[22,26,["H3808"]],[26,27,["H7200"]],[27,28,["H2351"]],[28,30,["H8033"]],[30,32,["H1961"]],[32,33,["H5704"]],[33,34,["H2088"]],[34,35,["H3117"]]]},{"k":8994,"v":[[0,3,["H369"]],[3,6,["H727"]],[6,7,["H7535"]],[7,9,["H8147"]],[9,10,["H3871"]],[10,12,["H68"]],[12,13,["H834"]],[13,14,["H4872"]],[14,15,["H5117"]],[15,16,["H8033"]],[16,18,["H2722"]],[18,19,["H834"]],[19,21,["H3068"]],[21,22,["H3772"]],[22,25,["H5973"]],[25,27,["H1121"]],[27,29,["H3478"]],[29,33,["H3318"]],[33,36,["H4480","H776"]],[36,38,["H4714"]]]},{"k":8995,"v":[[0,5,["H1961"]],[5,8,["H3548"]],[8,11,["H3318"]],[11,12,["H4480"]],[12,14,["H6944"]],[14,18,["H6051"]],[18,19,["H4390","(H853)"]],[19,21,["H1004"]],[21,24,["H3068"]]]},{"k":8996,"v":[[0,4,["H3548"]],[4,5,["H3201"]],[5,6,["H3808"]],[6,7,["H5975"]],[7,9,["H8334"]],[9,10,["H4480","H6440"]],[10,13,["H6051"]],[13,14,["H3588"]],[14,16,["H3519"]],[16,19,["H3068"]],[19,21,["H4390","(H853)"]],[21,23,["H1004"]],[23,26,["H3068"]]]},{"k":8997,"v":[[0,1,["H227"]],[1,2,["H559"]],[2,3,["H8010"]],[3,5,["H3068"]],[5,6,["H559"]],[6,10,["H7931"]],[10,14,["H6205"]]]},{"k":8998,"v":[[0,4,["H1129","H1129"]],[4,7,["H1004"]],[7,10,["H2073"]],[10,13,["H4349"]],[13,18,["H3427"]],[18,20,["H5769"]]]},{"k":8999,"v":[[0,3,["H4428"]],[3,4,["H5437","(H853)"]],[4,6,["H6440"]],[6,9,["H1288","(H853)"]],[9,10,["H3605"]],[10,12,["H6951"]],[12,14,["H3478"]],[14,16,["H3605"]],[16,18,["H6951"]],[18,20,["H3478"]],[20,21,["H5975"]]]},{"k":9000,"v":[[0,3,["H559"]],[3,4,["H1288"]],[4,7,["H3068"]],[7,8,["H430"]],[8,10,["H3478"]],[10,11,["H834"]],[11,12,["H1696"]],[12,15,["H6310"]],[15,16,["H854"]],[16,17,["H1732"]],[17,19,["H1"]],[19,24,["H3027"]],[24,25,["H4390"]],[25,27,["H559"]]]},{"k":9001,"v":[[0,1,["H4480"]],[1,3,["H3117"]],[3,4,["H834"]],[4,7,["H3318","(H853)"]],[7,9,["H5971","(H853)"]],[9,10,["H3478"]],[10,13,["H4480","H4714"]],[13,15,["H977"]],[15,16,["H3808"]],[16,17,["H5892"]],[17,20,["H4480","H3605"]],[20,22,["H7626"]],[22,24,["H3478"]],[24,26,["H1129"]],[26,28,["H1004"]],[28,31,["H8034"]],[31,33,["H1961"]],[33,34,["H8033"]],[34,37,["H977"]],[37,38,["H1732"]],[38,40,["H1961"]],[40,41,["H5921"]],[41,43,["H5971"]],[43,44,["H3478"]]]},{"k":9002,"v":[[0,3,["H1961"]],[3,4,["H5973"]],[4,6,["H3824"]],[6,8,["H1732"]],[8,10,["H1"]],[10,12,["H1129"]],[12,14,["H1004"]],[14,17,["H8034"]],[17,20,["H3068"]],[20,21,["H430"]],[21,23,["H3478"]]]},{"k":9003,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H1732"]],[6,8,["H1"]],[8,9,["H3282","H834"]],[9,11,["H1961"]],[11,12,["H5973"]],[12,14,["H3824"]],[14,16,["H1129"]],[16,18,["H1004"]],[18,21,["H8034"]],[21,24,["H2895"]],[24,25,["H3588"]],[25,27,["H1961"]],[27,28,["H5973"]],[28,30,["H3824"]]]},{"k":9004,"v":[[0,1,["H7535"]],[1,2,["H859"]],[2,4,["H3808"]],[4,5,["H1129"]],[5,7,["H1004"]],[7,8,["H3588","H518"]],[8,10,["H1121"]],[10,14,["H3318"]],[14,18,["H4480","H2504"]],[18,19,["H1931"]],[19,21,["H1129"]],[21,23,["H1004"]],[23,26,["H8034"]]]},{"k":9005,"v":[[0,3,["H3068"]],[3,5,["H6965","(H853)"]],[5,7,["H1697"]],[7,8,["H834"]],[8,10,["H1696"]],[10,15,["H6965"]],[15,18,["H8478"]],[18,20,["H1732"]],[20,22,["H1"]],[22,24,["H3427"]],[24,25,["H5921"]],[25,27,["H3678"]],[27,29,["H3478"]],[29,30,["H834"]],[30,32,["H3068"]],[32,33,["H1696"]],[33,36,["H1129"]],[36,38,["H1004"]],[38,41,["H8034"]],[41,44,["H3068"]],[44,45,["H430"]],[45,47,["H3478"]]]},{"k":9006,"v":[[0,4,["H7760"]],[4,5,["H8033"]],[5,7,["H4725"]],[7,10,["H727"]],[10,11,["H834","H8033"]],[11,14,["H1285"]],[14,17,["H3068"]],[17,18,["H834"]],[18,20,["H3772"]],[20,21,["H5973"]],[21,23,["H1"]],[23,28,["H3318","(H853)"]],[28,31,["H4480","H776"]],[31,33,["H4714"]]]},{"k":9007,"v":[[0,2,["H8010"]],[2,3,["H5975"]],[3,4,["H6440"]],[4,6,["H4196"]],[6,9,["H3068"]],[9,12,["H5048"]],[12,14,["H3605"]],[14,16,["H6951"]],[16,18,["H3478"]],[18,21,["H6566"]],[21,23,["H3709"]],[23,25,["H8064"]]]},{"k":9008,"v":[[0,3,["H559"]],[3,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,10,["H369"]],[10,11,["H430"]],[11,13,["H3644"]],[13,15,["H8064"]],[15,16,["H4480","H4605"]],[16,18,["H5921"]],[18,19,["H776"]],[19,20,["H4480","H8478"]],[20,22,["H8104"]],[22,23,["H1285"]],[23,25,["H2617"]],[25,28,["H5650"]],[28,30,["H1980"]],[30,31,["H6440"]],[31,34,["H3605"]],[34,36,["H3820"]]]},{"k":9009,"v":[[0,1,["H834"]],[1,3,["H8104"]],[3,6,["H5650"]],[6,7,["H1732"]],[7,9,["H1","(H853)"]],[9,10,["H834"]],[10,12,["H1696"]],[12,15,["H1696"]],[15,19,["H6310"]],[19,22,["H4390"]],[22,26,["H3027"]],[26,30,["H2088"]],[30,31,["H3117"]]]},{"k":9010,"v":[[0,2,["H6258"]],[2,3,["H3068"]],[3,4,["H430"]],[4,6,["H3478"]],[6,7,["H8104"]],[7,10,["H5650"]],[10,11,["H1732"]],[11,13,["H1","(H853)"]],[13,14,["H834"]],[14,16,["H1696"]],[16,18,["H559"]],[18,21,["H3808"]],[21,22,["H3772"]],[22,25,["H376"]],[25,28,["H4480","H6440"]],[28,30,["H3427"]],[30,31,["H5921"]],[31,33,["H3678"]],[33,35,["H3478"]],[35,36,["H7535"]],[36,37,["H518"]],[37,39,["H1121"]],[39,42,["H8104","(H853)"]],[42,44,["H1870"]],[44,47,["H1980"]],[47,48,["H6440"]],[48,50,["H834"]],[50,53,["H1980"]],[53,54,["H6440"]],[54,55,[]]]},{"k":9011,"v":[[0,2,["H6258"]],[2,4,["H430"]],[4,6,["H3478"]],[6,9,["H1697"]],[9,12,["H4994"]],[12,14,["H539"]],[14,15,["H834"]],[15,17,["H1696"]],[17,20,["H5650"]],[20,21,["H1732"]],[21,23,["H1"]]]},{"k":9012,"v":[[0,1,["H3588"]],[1,3,["H430"]],[3,4,["H552"]],[4,5,["H3427"]],[5,6,["H5921"]],[6,8,["H776"]],[8,9,["H2009"]],[9,11,["H8064"]],[11,13,["H8064"]],[13,15,["H8064"]],[15,16,["H3808"]],[16,17,["H3557"]],[17,21,["H637","H3588"]],[21,22,["H2088"]],[22,23,["H1004"]],[23,24,["H834"]],[24,27,["H1129"]]]},{"k":9013,"v":[[0,4,["H6437"]],[4,5,["H413"]],[5,7,["H8605"]],[7,10,["H5650"]],[10,12,["H413"]],[12,14,["H8467"]],[14,16,["H3068"]],[16,18,["H430"]],[18,20,["H8085"]],[20,21,["H413"]],[21,23,["H7440"]],[23,25,["H413"]],[25,27,["H8605"]],[27,28,["H834"]],[28,30,["H5650"]],[30,31,["H6419"]],[31,32,["H6440"]],[32,35,["H3117"]]]},{"k":9014,"v":[[0,3,["H5869"]],[3,5,["H1961"]],[5,6,["H6605"]],[6,7,["H413"]],[7,8,["H2088"]],[8,9,["H1004"]],[9,10,["H3915"]],[10,12,["H3117"]],[12,14,["H413"]],[14,16,["H4725"]],[16,18,["H834"]],[18,21,["H559"]],[21,23,["H8034"]],[23,25,["H1961"]],[25,26,["H8033"]],[26,30,["H8085"]],[30,31,["H413"]],[31,33,["H8605"]],[33,34,["H834"]],[34,36,["H5650"]],[36,38,["H6419"]],[38,39,["H413"]],[39,40,["H2088"]],[40,41,["H4725"]]]},{"k":9015,"v":[[0,2,["H8085"]],[2,4,["H413"]],[4,6,["H8467"]],[6,9,["H5650"]],[9,13,["H5971"]],[13,14,["H3478"]],[14,15,["H834"]],[15,18,["H6419"]],[18,19,["H413"]],[19,20,["H2088"]],[20,21,["H4725"]],[21,23,["H8085"]],[23,24,["H859"]],[24,25,["H413"]],[25,26,["H8064"]],[26,28,["H3427"]],[28,29,["H4725"]],[29,33,["H8085"]],[33,34,["H5545"]]]},{"k":9016,"v":[[0,0,["(H853)"]],[0,1,["H834"]],[1,3,["H376"]],[3,4,["H2398"]],[4,7,["H7453"]],[7,10,["H423"]],[10,12,["H5377"]],[12,19,["H422"]],[19,22,["H422"]],[22,23,["H935"]],[23,24,["H6440"]],[24,26,["H4196"]],[26,28,["H2088"]],[28,29,["H1004"]]]},{"k":9017,"v":[[0,2,["H8085"]],[2,3,["H859"]],[3,5,["H8064"]],[5,7,["H6213"]],[7,9,["H8199","(H853)"]],[9,11,["H5650"]],[11,12,["H7561"]],[12,14,["H7563"]],[14,16,["H5414"]],[16,18,["H1870"]],[18,21,["H7218"]],[21,23,["H6663"]],[23,25,["H6662"]],[25,27,["H5414"]],[27,32,["H6666"]]]},{"k":9018,"v":[[0,3,["H5971"]],[3,4,["H3478"]],[4,7,["H5062"]],[7,8,["H6440"]],[8,10,["H341"]],[10,11,["H834"]],[11,14,["H2398"]],[14,20,["H7725"]],[20,21,["H413"]],[21,24,["H3034","(H853)"]],[24,26,["H8034"]],[26,28,["H6419"]],[28,31,["H2603"]],[31,32,["H413"]],[32,35,["H2088"]],[35,36,["H1004"]]]},{"k":9019,"v":[[0,2,["H8085"]],[2,3,["H859"]],[3,5,["H8064"]],[5,7,["H5545"]],[7,9,["H2403"]],[9,12,["H5971"]],[12,13,["H3478"]],[13,17,["H7725"]],[17,18,["H413"]],[18,20,["H127"]],[20,21,["H834"]],[21,23,["H5414"]],[23,26,["H1"]]]},{"k":9020,"v":[[0,2,["H8064"]],[2,5,["H6113"]],[5,8,["H1961"]],[8,9,["H3808"]],[9,10,["H4306"]],[10,11,["H3588"]],[11,14,["H2398"]],[14,19,["H6419"]],[19,20,["H413"]],[20,21,["H2088"]],[21,22,["H4725"]],[22,24,["H3034","(H853)"]],[24,26,["H8034"]],[26,28,["H7725"]],[28,31,["H4480","H2403"]],[31,32,["H3588"]],[32,34,["H6031"]],[34,35,[]]]},{"k":9021,"v":[[0,2,["H8085"]],[2,3,["H859"]],[3,5,["H8064"]],[5,7,["H5545"]],[7,9,["H2403"]],[9,12,["H5650"]],[12,16,["H5971"]],[16,17,["H3478"]],[17,18,["H3588"]],[18,20,["H3384"]],[20,21,["(H853)"]],[21,22,["H834"]],[22,23,["H2896"]],[23,24,["H1870"]],[24,28,["H1980"]],[28,30,["H5414"]],[30,31,["H4306"]],[31,32,["H5921"]],[32,34,["H776"]],[34,35,["H834"]],[35,38,["H5414"]],[38,41,["H5971"]],[41,44,["H5159"]]]},{"k":9022,"v":[[0,1,["H3588"]],[1,3,["H1961"]],[3,6,["H776"]],[6,7,["H7458"]],[7,8,["H3588"]],[8,10,["H1961"]],[10,11,["H1698"]],[11,12,["H7711"]],[12,13,["H3420"]],[13,14,["H697"]],[14,16,["H3588"]],[16,18,["H1961"]],[18,19,["H2625"]],[19,20,["H3588"]],[20,22,["H341"]],[22,23,["H6887"]],[23,27,["H776"]],[27,30,["H8179"]],[30,31,["H3605"]],[31,32,["H5061"]],[32,33,["H3605"]],[33,34,["H4245"]],[34,36,[]]]},{"k":9023,"v":[[0,1,["H3605"]],[1,2,["H8605"]],[2,4,["H8467"]],[4,5,["H3605","H834"]],[5,6,["H1961"]],[6,9,["H3605"]],[9,10,["H120"]],[10,13,["H3605"]],[13,15,["H5971"]],[15,16,["H3478"]],[16,17,["H834"]],[17,19,["H3045"]],[19,21,["H376"]],[21,23,["H5061"]],[23,27,["H3824"]],[27,30,["H6566"]],[30,32,["H3709"]],[32,33,["H413"]],[33,34,["H2088"]],[34,35,["H1004"]]]},{"k":9024,"v":[[0,2,["H8085"]],[2,3,["H859"]],[3,5,["H8064"]],[5,7,["H3427"]],[7,8,["H4349"]],[8,10,["H5545"]],[10,12,["H6213"]],[12,14,["H5414"]],[14,17,["H376"]],[17,19,["H3605"]],[19,21,["H1870"]],[21,22,["H834","(H853)"]],[22,23,["H3824"]],[23,25,["H3045"]],[25,26,["H3588"]],[26,27,["H859"]],[27,30,["H905"]],[30,31,["H3045","(H853)"]],[31,33,["H3824"]],[33,35,["H3605"]],[35,37,["H1121"]],[37,39,["H120"]]]},{"k":9025,"v":[[0,1,["H4616"]],[1,4,["H3372"]],[4,6,["H3605"]],[6,8,["H3117"]],[8,9,["H834"]],[9,10,["H1992"]],[10,11,["H2416"]],[11,12,["H5921","H6440"]],[12,14,["H127"]],[14,15,["H834"]],[15,17,["H5414"]],[17,20,["H1"]]]},{"k":9026,"v":[[0,1,["H1571"]],[1,2,["H413"]],[2,4,["H5237"]],[4,5,["H834"]],[5,7,["H3808"]],[7,10,["H4480","H5971"]],[10,11,["H3478"]],[11,13,["H935"]],[13,18,["H4480","H776","H7350"]],[18,22,["H4616","H8034"]]]},{"k":9027,"v":[[0,1,["H3588"]],[1,5,["H8085","(H853)"]],[5,7,["H1419"]],[7,8,["H8034"]],[8,12,["H2389"]],[12,13,["H3027"]],[13,18,["H5186"]],[18,19,["H2220"]],[19,23,["H935"]],[23,25,["H6419"]],[25,26,["H413"]],[26,27,["H2088"]],[27,28,["H1004"]]]},{"k":9028,"v":[[0,1,["H8085"]],[1,2,["H859"]],[2,4,["H8064"]],[4,6,["H3427"]],[6,7,["H4349"]],[7,9,["H6213"]],[9,12,["H3605"]],[12,13,["H834"]],[13,15,["H5237"]],[15,16,["H7121"]],[16,17,["H413"]],[17,20,["H4616"]],[20,21,["H3605"]],[21,22,["H5971"]],[22,25,["H776"]],[25,27,["H3045","(H853)"]],[27,29,["H8034"]],[29,31,["H3372"]],[31,36,["H5971"]],[36,37,["H3478"]],[37,42,["H3045"]],[42,43,["H3588"]],[43,44,["H2088"]],[44,45,["H1004"]],[45,46,["H834"]],[46,49,["H1129"]],[49,51,["H7121"]],[51,52,["H5921"]],[52,54,["H8034"]]]},{"k":9029,"v":[[0,1,["H3588"]],[1,3,["H5971"]],[3,5,["H3318"]],[5,7,["H4421"]],[7,8,["H5921"]],[8,10,["H341"]],[10,11,["H1870","H834"]],[11,14,["H7971"]],[14,18,["H6419"]],[18,19,["H413"]],[19,21,["H3068"]],[21,22,["H1870"]],[22,24,["H5892"]],[24,25,["H834"]],[25,28,["H977"]],[28,32,["H1004"]],[32,33,["H834"]],[33,36,["H1129"]],[36,39,["H8034"]]]},{"k":9030,"v":[[0,2,["H8085"]],[2,5,["H8064","(H853)"]],[5,7,["H8605"]],[7,10,["H8467"]],[10,12,["H6213"]],[12,14,["H4941"]]]},{"k":9031,"v":[[0,1,["H3588"]],[1,3,["H2398"]],[3,6,["H3588"]],[6,9,["H369"]],[9,10,["H120"]],[10,11,["H834"]],[11,12,["H2398"]],[12,13,["H3808"]],[13,17,["H599"]],[17,21,["H5414"]],[21,23,["H6440"]],[23,25,["H341"]],[25,31,["H7617"]],[31,32,["H7617"]],[32,33,["H413"]],[33,35,["H776"]],[35,38,["H341"]],[38,39,["H7350"]],[39,40,["H176"]],[40,41,["H7138"]]]},{"k":9032,"v":[[0,6,["H7725","H413","H3820"]],[6,9,["H776"]],[9,10,["H834","H8033"]],[10,14,["H7617"]],[14,16,["H7725"]],[16,19,["H2603"]],[19,20,["H413"]],[20,24,["H776"]],[24,30,["H7617"]],[30,31,["H559"]],[31,34,["H2398"]],[34,38,["H5753"]],[38,42,["H7561"]]]},{"k":9033,"v":[[0,3,["H7725"]],[3,4,["H413"]],[4,7,["H3605"]],[7,9,["H3824"]],[9,12,["H3605"]],[12,14,["H5315"]],[14,17,["H776"]],[17,20,["H341"]],[20,21,["H834"]],[21,25,["H7617","(H853)"]],[25,27,["H6419"]],[27,28,["H413"]],[28,30,["H1870"]],[30,32,["H776"]],[32,33,["H834"]],[33,35,["H5414"]],[35,38,["H1"]],[38,40,["H5892"]],[40,41,["H834"]],[41,44,["H977"]],[44,47,["H1004"]],[47,48,["H834"]],[48,51,["H1129"]],[51,54,["H8034"]]]},{"k":9034,"v":[[0,2,["H8085"]],[2,3,["(H853)"]],[3,5,["H8605"]],[5,8,["H8467"]],[8,10,["H8064"]],[10,12,["H3427"]],[12,13,["H4349"]],[13,15,["H6213"]],[15,17,["H4941"]]]},{"k":9035,"v":[[0,2,["H5545"]],[2,4,["H5971"]],[4,5,["H834"]],[5,7,["H2398"]],[7,11,["H3605"]],[11,13,["H6588"]],[13,14,["H834"]],[14,17,["H6586"]],[17,21,["H5414"]],[21,23,["H7356"]],[23,24,["H6440"]],[24,29,["H7617"]],[29,35,["H7355"]],[35,36,[]]]},{"k":9036,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,5,["H5971"]],[5,8,["H5159"]],[8,9,["H834"]],[9,12,["H3318"]],[12,15,["H4480","H4714"]],[15,18,["H4480","H8432"]],[18,21,["H3564"]],[21,23,["H1270"]]]},{"k":9037,"v":[[0,3,["H5869"]],[3,5,["H1961"]],[5,6,["H6605"]],[6,7,["H413"]],[7,9,["H8467"]],[9,12,["H5650"]],[12,14,["H413"]],[14,16,["H8467"]],[16,19,["H5971"]],[19,20,["H3478"]],[20,22,["H8085"]],[22,23,["H413"]],[23,26,["H3605"]],[26,29,["H7121"]],[29,31,["H413"]],[31,32,[]]]},{"k":9038,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H914"]],[4,8,["H4480","H3605"]],[8,10,["H5971"]],[10,13,["H776"]],[13,17,["H5159"]],[17,18,["H834"]],[18,20,["H1696"]],[20,23,["H3027"]],[23,25,["H4872"]],[25,27,["H5650"]],[27,30,["H3318","(H853)"]],[30,32,["H1"]],[32,35,["H4480","H4714"]],[35,37,["H136"]],[37,38,["H3068"]]]},{"k":9039,"v":[[0,3,["H1961"]],[3,7,["H8010"]],[7,11,["H3615"]],[11,13,["H6419","(H853)"]],[13,14,["H3605"]],[14,15,["H2063"]],[15,16,["H8605"]],[16,18,["H8467"]],[18,19,["H413"]],[19,21,["H3068"]],[21,23,["H6965"]],[23,25,["H4480","H6440"]],[25,27,["H4196"]],[27,30,["H3068"]],[30,32,["H4480","H3766"]],[32,33,["H5921"]],[33,35,["H1290"]],[35,38,["H3709"]],[38,40,["H6566"]],[40,42,["H8064"]]]},{"k":9040,"v":[[0,3,["H5975"]],[3,5,["H1288","(H853)"]],[5,6,["H3605"]],[6,8,["H6951"]],[8,10,["H3478"]],[10,13,["H1419"]],[13,14,["H6963"]],[14,15,["H559"]]]},{"k":9041,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,5,["H834"]],[5,7,["H5414"]],[7,8,["H4496"]],[8,11,["H5971"]],[11,12,["H3478"]],[12,15,["H3605"]],[15,16,["H834"]],[16,18,["H1696"]],[18,21,["H3808"]],[21,22,["H5307"]],[22,23,["H259"]],[23,24,["H1697"]],[24,26,["H4480","H3605"]],[26,28,["H2896"]],[28,29,["H1697"]],[29,30,["H834"]],[30,32,["H1696"]],[32,35,["H3027"]],[35,37,["H4872"]],[37,39,["H5650"]]]},{"k":9042,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,5,["H1961"]],[5,6,["H5973"]],[6,8,["H834"]],[8,10,["H1961"]],[10,11,["H5973"]],[11,13,["H1"]],[13,16,["H408"]],[16,17,["H5800"]],[17,19,["H408"]],[19,20,["H5203"]],[20,21,[]]]},{"k":9043,"v":[[0,4,["H5186"]],[4,6,["H3824"]],[6,7,["H413"]],[7,10,["H1980"]],[10,12,["H3605"]],[12,14,["H1870"]],[14,17,["H8104"]],[17,19,["H4687"]],[19,22,["H2706"]],[22,25,["H4941"]],[25,26,["H834"]],[26,28,["H6680","(H853)"]],[28,30,["H1"]]]},{"k":9044,"v":[[0,3,["H428"]],[3,5,["H1697"]],[5,6,["H834"]],[6,10,["H2603"]],[10,11,["H6440"]],[11,13,["H3068"]],[13,14,["H1961"]],[14,15,["H7138"]],[15,16,["H413"]],[16,18,["H3068"]],[18,20,["H430"]],[20,21,["H3119"]],[21,23,["H3915"]],[23,26,["H6213"]],[26,28,["H4941"]],[28,31,["H5650"]],[31,34,["H4941"]],[34,37,["H5971"]],[37,38,["H3478"]],[38,41,["H3117"]],[41,44,["H1697"]],[44,46,["H3117"]]]},{"k":9045,"v":[[0,1,["H4616"]],[1,2,["H3605"]],[2,4,["H5971"]],[4,7,["H776"]],[7,9,["H3045"]],[9,10,["H3588"]],[10,12,["H3068"]],[12,14,["H430"]],[14,19,["H369"]],[19,20,["H5750"]]]},{"k":9046,"v":[[0,3,["H3824"]],[3,5,["H1961"]],[5,6,["H8003"]],[6,7,["H5973"]],[7,9,["H3068"]],[9,11,["H430"]],[11,13,["H1980"]],[13,16,["H2706"]],[16,19,["H8104"]],[19,21,["H4687"]],[21,24,["H2088"]],[24,25,["H3117"]]]},{"k":9047,"v":[[0,3,["H4428"]],[3,5,["H3605"]],[5,6,["H3478"]],[6,7,["H5973"]],[7,9,["H2076"]],[9,10,["H2077"]],[10,11,["H6440"]],[11,13,["H3068"]]]},{"k":9048,"v":[[0,2,["H8010"]],[2,3,["H2076","(H853)"]],[3,5,["H2077"]],[5,8,["H8002"]],[8,9,["H834"]],[9,11,["H2076"]],[11,14,["H3068"]],[14,15,["H8147"]],[15,17,["H6242"]],[17,18,["H505"]],[18,19,["H1241"]],[19,22,["H3967"]],[22,24,["H6242"]],[24,25,["H505"]],[25,26,["H6629"]],[26,29,["H4428"]],[29,31,["H3605"]],[31,33,["H1121"]],[33,35,["H3478"]],[35,36,["H2596","(H853)"]],[36,38,["H1004"]],[38,41,["H3068"]]]},{"k":9049,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H4428"]],[6,7,["H6942","(H853)"]],[7,9,["H8432"]],[9,12,["H2691"]],[12,13,["H834"]],[13,15,["H6440"]],[15,17,["H1004"]],[17,20,["H3068"]],[20,21,["H3588"]],[21,22,["H8033"]],[22,24,["H6213","(H853)"]],[24,26,["H5930"]],[26,29,["H4503"]],[29,32,["H2459"]],[32,36,["H8002"]],[36,37,["H3588"]],[37,39,["H5178"]],[39,40,["H4196"]],[40,41,["H834"]],[41,43,["H6440"]],[43,45,["H3068"]],[45,48,["H6996"]],[48,50,["H4480","H3557","(H853)"]],[50,53,["H5930"]],[53,56,["H4503"]],[56,59,["H2459"]],[59,63,["H8002"]]]},{"k":9050,"v":[[0,3,["H1931"]],[3,4,["H6256"]],[4,5,["H8010"]],[5,6,["H6213","(H853)"]],[6,8,["H2282"]],[8,10,["H3605"]],[10,11,["H3478"]],[11,12,["H5973"]],[12,15,["H1419"]],[15,16,["H6951"]],[16,20,["H4480","H935"]],[20,22,["H2574"]],[22,23,["H5704"]],[23,25,["H5158"]],[25,27,["H4714"]],[27,28,["H6440"]],[28,30,["H3068"]],[30,32,["H430"]],[32,33,["H7651"]],[33,34,["H3117"]],[34,36,["H7651"]],[36,37,["H3117"]],[37,39,["H702","H6240"]],[39,40,["H3117"]]]},{"k":9051,"v":[[0,3,["H8066"]],[3,4,["H3117"]],[4,6,["H7971","(H853)"]],[6,8,["H5971"]],[8,12,["H1288","(H853)"]],[12,14,["H4428"]],[14,16,["H1980"]],[16,19,["H168"]],[19,20,["H8056"]],[20,22,["H2896"]],[22,24,["H3820"]],[24,25,["H5921"]],[25,26,["H3605"]],[26,28,["H2896"]],[28,29,["H834"]],[29,31,["H3068"]],[31,33,["H6213"]],[33,35,["H1732"]],[35,37,["H5650"]],[37,40,["H3478"]],[40,42,["H5971"]]]},{"k":9052,"v":[[0,5,["H1961"]],[5,7,["H8010"]],[7,9,["H3615"]],[9,11,["H1129"]],[11,12,["(H853)"]],[12,14,["H1004"]],[14,17,["H3068"]],[17,20,["H4428"]],[20,21,["H1004"]],[21,23,["H3605"]],[23,24,["H8010"]],[24,25,["H2837"]],[25,26,["H834"]],[26,29,["H2654"]],[29,31,["H6213"]]]},{"k":9053,"v":[[0,3,["H3068"]],[3,4,["H7200"]],[4,5,["H413"]],[5,6,["H8010"]],[6,9,["H8145"]],[9,10,["H834"]],[10,13,["H7200"]],[13,14,["H413"]],[14,17,["H1391"]]]},{"k":9054,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,9,["H8085","(H853)"]],[9,11,["H8605"]],[11,14,["H8467"]],[14,15,["H834"]],[15,18,["H2063"]],[18,19,["H6440"]],[19,23,["H6942","(H853)"]],[23,24,["H2088"]],[24,25,["H1004"]],[25,26,["H834"]],[26,29,["H1129"]],[29,31,["H7760"]],[31,33,["H8034"]],[33,34,["H8033"]],[34,36,["H5704","H5769"]],[36,39,["H5869"]],[39,42,["H3820"]],[42,44,["H1961"]],[44,45,["H8033"]],[45,46,["H3605","H3117"]]]},{"k":9055,"v":[[0,2,["H518"]],[2,3,["H859"]],[3,5,["H1980"]],[5,6,["H6440"]],[6,8,["H834"]],[8,9,["H1732"]],[9,11,["H1"]],[11,12,["H1980"]],[12,14,["H8537"]],[14,16,["H3824"]],[16,19,["H3476"]],[19,21,["H6213"]],[21,24,["H3605"]],[24,25,["H834"]],[25,28,["H6680"]],[28,32,["H8104"]],[32,34,["H2706"]],[34,37,["H4941"]]]},{"k":9056,"v":[[0,4,["H6965","(H853)"]],[4,6,["H3678"]],[6,9,["H4467"]],[9,10,["H5921"]],[10,11,["H3478"]],[11,13,["H5769"]],[13,14,["H834"]],[14,16,["H1696"]],[16,17,["H5921"]],[17,18,["H1732"]],[18,20,["H1"]],[20,21,["H559"]],[21,24,["H3808"]],[24,25,["H3772"]],[25,28,["H376"]],[28,29,["H4480","H5921"]],[29,31,["H3678"]],[31,33,["H3478"]]]},{"k":9057,"v":[[0,2,["H518"]],[2,7,["H7725","H7725"]],[7,9,["H4480","H310"]],[9,11,["H859"]],[11,14,["H1121"]],[14,17,["H3808"]],[17,18,["H8104"]],[18,20,["H4687"]],[20,23,["H2708"]],[23,24,["H834"]],[24,27,["H5414"]],[27,28,["H6440"]],[28,31,["H1980"]],[31,33,["H5647"]],[33,34,["H312"]],[34,35,["H430"]],[35,37,["H7812"]],[37,38,[]]]},{"k":9058,"v":[[0,5,["H3772","(H853)"]],[5,6,["H3478"]],[6,8,["H4480","H5921","H6440"]],[8,10,["H127"]],[10,11,["H834"]],[11,14,["H5414"]],[14,18,["H1004"]],[18,19,["H834"]],[19,22,["H6942"]],[22,25,["H8034"]],[25,28,["H7971"]],[28,30,["H4480","H5921"]],[30,32,["H6440"]],[32,34,["H3478"]],[34,36,["H1961"]],[36,38,["H4912"]],[38,41,["H8148"]],[41,43,["H3605"]],[43,44,["H5971"]]]},{"k":9059,"v":[[0,3,["H2088"]],[3,4,["H1004"]],[4,6,["H1961"]],[6,7,["H5945"]],[7,9,["H3605"]],[9,11,["H5674"]],[11,12,["H5921"]],[12,16,["H8074"]],[16,19,["H8319"]],[19,23,["H559"]],[23,24,["H4100"]],[24,27,["H3068"]],[27,28,["H6213"]],[28,29,["H3602"]],[29,31,["H2063"]],[31,32,["H776"]],[32,35,["H2088"]],[35,36,["H1004"]]]},{"k":9060,"v":[[0,4,["H559"]],[4,5,["H5921","H834"]],[5,7,["H5800","(H853)"]],[7,9,["H3068"]],[9,11,["H430"]],[11,12,["H834"]],[12,14,["H3318","(H853)"]],[14,16,["H1"]],[16,20,["H4480","H776"]],[20,22,["H4714"]],[22,26,["H2388"]],[26,28,["H312"]],[28,29,["H430"]],[29,32,["H7812"]],[32,35,["H5647"]],[35,37,["H5921","H3651"]],[37,40,["H3068"]],[40,41,["H935"]],[41,42,["H5921"]],[42,43,["(H853)"]],[43,44,["H3605"]],[44,45,["H2063"]],[45,46,["H7451"]]]},{"k":9061,"v":[[0,5,["H1961"]],[5,8,["H4480","H7097"]],[8,10,["H6242"]],[10,11,["H8141"]],[11,12,["H834"]],[12,13,["H8010"]],[13,15,["H1129","(H853)"]],[15,17,["H8147"]],[17,18,["H1004","(H853)"]],[18,20,["H1004"]],[20,23,["H3068"]],[23,26,["H4428"]],[26,27,["H1004"]]]},{"k":9062,"v":[[0,2,["H2438"]],[2,4,["H4428"]],[4,6,["H6865"]],[6,8,["H5375","(H853)"]],[8,9,["H8010"]],[9,11,["H730"]],[11,12,["H6086"]],[12,14,["H1265"]],[14,15,["H6086"]],[15,18,["H2091"]],[18,21,["H3605"]],[21,23,["H2656"]],[23,25,["H227"]],[25,26,["H4428"]],[26,27,["H8010"]],[27,28,["H5414"]],[28,29,["H2438"]],[29,30,["H6242"]],[30,31,["H5892"]],[31,34,["H776"]],[34,36,["H1551"]]]},{"k":9063,"v":[[0,2,["H2438"]],[2,4,["H3318"]],[4,6,["H4480","H6865"]],[6,8,["H7200","(H853)"]],[8,10,["H5892"]],[10,11,["H834"]],[11,12,["H8010"]],[12,14,["H5414"]],[14,18,["H3474","H5869"]],[18,20,["H3808"]]]},{"k":9064,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,5,["H5892"]],[5,7,["H428"]],[7,8,["H834"]],[8,11,["H5414"]],[11,14,["H251"]],[14,17,["H7121"]],[17,20,["H776"]],[20,22,["H3521"]],[22,23,["H5704"]],[23,24,["H2088"]],[24,25,["H3117"]]]},{"k":9065,"v":[[0,2,["H2438"]],[2,3,["H7971"]],[3,6,["H4428"]],[6,7,["H3967","H6242"]],[7,8,["H3603"]],[8,10,["H2091"]]]},{"k":9066,"v":[[0,2,["H2088"]],[2,5,["H1697"]],[5,8,["H4522"]],[8,9,["H834"]],[9,10,["H4428"]],[10,11,["H8010"]],[11,12,["H5927"]],[12,15,["H1129","(H853)"]],[15,17,["H1004"]],[17,20,["H3068"]],[20,24,["H1004"]],[24,26,["H4407"]],[26,29,["H2346"]],[29,31,["H3389"]],[31,33,["H2674"]],[33,35,["H4023"]],[35,37,["H1507"]]]},{"k":9067,"v":[[0,2,["H6547"]],[2,3,["H4428"]],[3,5,["H4714"]],[5,8,["H5927"]],[8,10,["H3920","(H853)"]],[10,11,["H1507"]],[11,13,["H8313"]],[13,16,["H784"]],[16,18,["H2026"]],[18,20,["H3669"]],[20,22,["H3427"]],[22,25,["H5892"]],[25,27,["H5414"]],[27,31,["H7964"]],[31,34,["H1323"]],[34,35,["H8010"]],[35,36,["H802"]]]},{"k":9068,"v":[[0,2,["H8010"]],[2,3,["H1129","(H853)"]],[3,4,["H1507"]],[4,6,["H1032"]],[6,8,["H8481"]]]},{"k":9069,"v":[[0,2,["H1191"]],[2,4,["H8412"]],[4,7,["H4057"]],[7,10,["H776"]]]},{"k":9070,"v":[[0,2,["H3605"]],[2,4,["H5892"]],[4,6,["H4543"]],[6,7,["H834"]],[7,8,["H8010"]],[8,9,["H1961"]],[9,11,["H5892"]],[11,14,["H7393"]],[14,16,["H5892"]],[16,19,["H6571"]],[19,22,["H834"]],[22,23,["H8010"]],[23,24,["H2836"]],[24,26,["H1129"]],[26,28,["H3389"]],[28,31,["H3844"]],[31,34,["H3605"]],[34,36,["H776"]],[36,39,["H4475"]]]},{"k":9071,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,7,["H3498"]],[7,8,["H4480"]],[8,10,["H567"]],[10,11,["H2850"]],[11,12,["H6522"]],[12,13,["H2340"]],[13,15,["H2983"]],[15,16,["H834"]],[16,18,["H3808"]],[18,21,["H4480","H1121"]],[21,23,["H3478"]]]},{"k":9072,"v":[[0,2,["H1121"]],[2,3,["H834"]],[3,5,["H3498"]],[5,6,["H310"]],[6,10,["H776"]],[10,11,["H834"]],[11,13,["H1121"]],[13,15,["H3478"]],[15,18,["H3808"]],[18,19,["H3201"]],[19,22,["H2763"]],[22,26,["H8010"]],[26,27,["H5927"]],[27,31,["H4522","H5647"]],[31,32,["H5704"]],[32,33,["H2088"]],[33,34,["H3117"]]]},{"k":9073,"v":[[0,4,["H4480","H1121"]],[4,6,["H3478"]],[6,8,["H8010"]],[8,9,["H5414"]],[9,10,["H3808"]],[10,11,["H5650"]],[11,12,["H3588"]],[12,13,["H1992"]],[13,15,["H376"]],[15,17,["H4421"]],[17,20,["H5650"]],[20,23,["H8269"]],[23,26,["H7991"]],[26,28,["H8269"]],[28,31,["H7393"]],[31,34,["H6571"]]]},{"k":9074,"v":[[0,1,["H428"]],[1,4,["H8269"]],[4,7,["H5324"]],[7,8,["H834"]],[8,10,["H5921"]],[10,11,["H8010"]],[11,12,["H4399"]],[12,13,["H2568"]],[13,14,["H3967"]],[14,16,["H2572"]],[16,19,["H7287"]],[19,22,["H5971"]],[22,24,["H6213"]],[24,27,["H4399"]]]},{"k":9075,"v":[[0,1,["H389"]],[1,2,["H6547"]],[2,3,["H1323"]],[3,5,["H5927"]],[5,9,["H4480","H5892"]],[9,11,["H1732"]],[11,12,["H413"]],[12,14,["H1004"]],[14,15,["H834"]],[15,18,["H1129"]],[18,21,["H227"]],[21,24,["H1129","(H853)"]],[24,25,["H4407"]]]},{"k":9076,"v":[[0,2,["H7969"]],[2,3,["H6471"]],[3,6,["H8141"]],[6,8,["H8010"]],[8,9,["H5927"]],[9,11,["H5930"]],[11,14,["H8002"]],[14,15,["H5921"]],[15,17,["H4196"]],[17,18,["H834"]],[18,20,["H1129"]],[20,23,["H3068"]],[23,27,["H6999"]],[27,28,["H854"]],[28,31,["H834"]],[31,33,["H6440"]],[33,35,["H3068"]],[35,38,["H7999","(H853)"]],[38,40,["H1004"]]]},{"k":9077,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H6213"]],[4,8,["H590"]],[8,10,["H6100"]],[10,11,["H834"]],[11,13,["H854"]],[13,14,["H359"]],[14,15,["H5921"]],[15,17,["H8193"]],[17,20,["H5488"]],[20,21,["H3220"]],[21,24,["H776"]],[24,26,["H123"]]]},{"k":9078,"v":[[0,2,["H2438"]],[2,3,["H7971"]],[3,6,["H590","(H853)"]],[6,8,["H5650"]],[8,9,["H376","H591"]],[9,12,["H3045"]],[12,15,["H3220"]],[15,16,["H5973"]],[16,18,["H5650"]],[18,20,["H8010"]]]},{"k":9079,"v":[[0,3,["H935"]],[3,5,["H211"]],[5,7,["H3947"]],[7,9,["H4480","H8033"]],[9,10,["H2091"]],[10,11,["H702"]],[11,12,["H3967"]],[12,14,["H6242"]],[14,15,["H3603"]],[15,17,["H935"]],[17,19,["H413"]],[19,20,["H4428"]],[20,21,["H8010"]]]},{"k":9080,"v":[[0,4,["H4436"]],[4,6,["H7614"]],[6,7,["H8085"]],[7,8,["(H853)"]],[8,10,["H8088"]],[10,12,["H8010"]],[12,15,["H8034"]],[15,18,["H3068"]],[18,20,["H935"]],[20,22,["H5254"]],[22,26,["H2420"]]]},{"k":9081,"v":[[0,3,["H935"]],[3,5,["H3389"]],[5,8,["H3966"]],[8,9,["H3515"]],[9,10,["H2428"]],[10,12,["H1581"]],[12,14,["H5375"]],[14,15,["H1314"]],[15,17,["H3966"]],[17,18,["H7227"]],[18,19,["H2091"]],[19,21,["H3368"]],[21,22,["H68"]],[22,27,["H935"]],[27,28,["H413"]],[28,29,["H8010"]],[29,31,["H1696"]],[31,32,["H413"]],[32,34,["(H853)"]],[34,35,["H3605"]],[35,36,["H834"]],[36,37,["H1961"]],[37,38,["H5973"]],[38,40,["H3824"]]]},{"k":9082,"v":[[0,2,["H8010"]],[2,3,["H5046"]],[3,4,["(H853)"]],[4,5,["H3605"]],[5,7,["H1697"]],[7,9,["H1961"]],[9,10,["H3808"]],[10,12,["H1697"]],[12,13,["H5956"]],[13,14,["H4480"]],[14,16,["H4428"]],[16,17,["H834"]],[17,19,["H5046"]],[19,21,["H3808"]]]},{"k":9083,"v":[[0,4,["H4436"]],[4,6,["H7614"]],[6,8,["H7200","(H853)"]],[8,9,["H3605"]],[9,10,["H8010"]],[10,11,["H2451"]],[11,14,["H1004"]],[14,15,["H834"]],[15,18,["H1129"]]]},{"k":9084,"v":[[0,3,["H3978"]],[3,6,["H7979"]],[6,9,["H4186"]],[9,12,["H5650"]],[12,15,["H4612"]],[15,18,["H8334"]],[18,21,["H4403"]],[21,24,["H4945"]],[24,27,["H5930"]],[27,29,["H834"]],[29,32,["H5927"]],[32,35,["H1004"]],[35,38,["H3068"]],[38,40,["H1961"]],[40,41,["H3808"]],[41,42,["H5750"]],[42,43,["H7307"]],[43,45,[]]]},{"k":9085,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,8,["H1961"]],[8,10,["H571"]],[10,11,["H1697"]],[11,12,["H834"]],[12,14,["H8085"]],[14,18,["H776"]],[18,19,["H5921"]],[19,21,["H1697"]],[21,23,["H5921"]],[23,25,["H2451"]]]},{"k":9086,"v":[[0,3,["H539"]],[3,4,["H3808"]],[4,6,["H1697"]],[6,7,["H5704","H834"]],[7,9,["H935"]],[9,12,["H5869"]],[12,14,["H7200"]],[14,17,["H2009"]],[17,19,["H2677"]],[19,21,["H3808"]],[21,22,["H5046"]],[22,25,["H2451"]],[25,27,["H2896"]],[27,28,["H3254","H413"]],[28,30,["H8052"]],[30,31,["H834"]],[31,33,["H8085"]]]},{"k":9087,"v":[[0,1,["H835"]],[1,4,["H376"]],[4,5,["H835"]],[5,7,["H428"]],[7,9,["H5650"]],[9,11,["H5975"]],[11,12,["H8548"]],[12,13,["H6440"]],[13,17,["H8085","(H853)"]],[17,19,["H2451"]]]},{"k":9088,"v":[[0,1,["H1288"]],[1,2,["H1961"]],[2,4,["H3068"]],[4,6,["H430"]],[6,7,["H834"]],[7,8,["H2654"]],[8,12,["H5414"]],[12,14,["H5921"]],[14,16,["H3678"]],[16,18,["H3478"]],[18,21,["H3068"]],[21,22,["H157","(H853)"]],[22,23,["H3478"]],[23,25,["H5769"]],[25,27,["H7760"]],[27,30,["H4428"]],[30,32,["H6213"]],[32,33,["H4941"]],[33,35,["H6666"]]]},{"k":9089,"v":[[0,3,["H5414"]],[3,5,["H4428"]],[5,7,["H3967"]],[7,9,["H6242"]],[9,10,["H3603"]],[10,12,["H2091"]],[12,15,["H1314"]],[15,16,["H3966"]],[16,18,["H7235"]],[18,20,["H3368"]],[20,21,["H68"]],[21,23,["H935"]],[23,24,["H3808"]],[24,25,["H5750"]],[25,26,["H1931"]],[26,27,["H7230"]],[27,29,["H1314"]],[29,32,["H834"]],[32,34,["H4436"]],[34,36,["H7614"]],[36,37,["H5414"]],[37,39,["H4428"]],[39,40,["H8010"]]]},{"k":9090,"v":[[0,3,["H590"]],[3,4,["H1571"]],[4,6,["H2438"]],[6,7,["H834"]],[7,8,["H5375"]],[8,9,["H2091"]],[9,11,["H4480","H211"]],[11,13,["H935"]],[13,15,["H4480","H211"]],[15,16,["H3966"]],[16,17,["H7235"]],[17,19,["H484"]],[19,20,["H6086"]],[20,22,["H3368"]],[22,23,["H68"]]]},{"k":9091,"v":[[0,3,["H4428"]],[3,4,["H6213"]],[4,5,["(H853)"]],[5,7,["H484"]],[7,8,["H6086"]],[8,9,["H4552"]],[9,12,["H1004"]],[12,15,["H3068"]],[15,19,["H4428"]],[19,20,["H1004"]],[20,21,["H3658"]],[21,24,["H5035"]],[24,26,["H7891"]],[26,28,["H935"]],[28,29,["H3808"]],[29,30,["H3651"]],[30,31,["H484"]],[31,32,["H6086"]],[32,33,["H3808"]],[33,35,["H7200"]],[35,36,["H5704"]],[36,37,["H2088"]],[37,38,["H3117"]]]},{"k":9092,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H5414"]],[4,7,["H4436"]],[7,9,["H7614","(H853)"]],[9,10,["H3605"]],[10,12,["H2656"]],[12,13,["H834"]],[13,15,["H7592"]],[15,16,["H4480","H905"]],[16,18,["H834"]],[18,19,["H8010"]],[19,20,["H5414"]],[20,25,["H3027","H4428"]],[25,28,["H6437"]],[28,30,["H1980"]],[30,34,["H776"]],[34,35,["H1931"]],[35,38,["H5650"]]]},{"k":9093,"v":[[0,3,["H4948"]],[3,5,["H2091"]],[5,6,["H834"]],[6,7,["H935"]],[7,9,["H8010"]],[9,11,["H259"]],[11,12,["H8141"]],[12,13,["H1961"]],[13,14,["H8337"]],[14,15,["H3967"]],[15,16,["H8346"]],[16,18,["H8337"]],[18,19,["H3603"]],[19,21,["H2091"]]]},{"k":9094,"v":[[0,1,["H905"]],[1,7,["H4480","H376","H8446"]],[7,11,["H4536"]],[11,15,["H7402"]],[15,18,["H3605"]],[18,20,["H4428"]],[20,22,["H6154"]],[22,26,["H6346"]],[26,29,["H776"]]]},{"k":9095,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H6213"]],[4,6,["H3967"]],[6,7,["H6793"]],[7,9,["H7820"]],[9,10,["H2091"]],[10,11,["H8337"]],[11,12,["H3967"]],[12,15,["H2091"]],[15,16,["H5927"]],[16,17,["H5921"]],[17,18,["H259"]],[18,19,["H6793"]]]},{"k":9096,"v":[[0,4,["H7969"]],[4,5,["H3967"]],[5,6,["H4043"]],[6,8,["H7820"]],[8,9,["H2091"]],[9,10,["H7969"]],[10,11,["H4488"]],[11,13,["H2091"]],[13,14,["H5927"]],[14,15,["H5921"]],[15,16,["H259"]],[16,17,["H4043"]],[17,20,["H4428"]],[20,21,["H5414"]],[21,25,["H1004"]],[25,28,["H3293"]],[28,30,["H3844"]]]},{"k":9097,"v":[[0,3,["H4428"]],[3,4,["H6213"]],[4,6,["H1419"]],[6,7,["H3678"]],[7,9,["H8127"]],[9,11,["H6823"]],[11,15,["H6338"]],[15,16,["H2091"]]]},{"k":9098,"v":[[0,2,["H3678"]],[2,4,["H8337"]],[4,5,["H4609"]],[5,8,["H7218"]],[8,11,["H3678"]],[11,13,["H5696"]],[13,14,["H4480","H310"]],[14,18,["H3027"]],[18,21,["H4480","H2088","H4480","H2088"]],[21,22,["H413"]],[22,24,["H4725"]],[24,27,["H7675"]],[27,29,["H8147"]],[29,30,["H738"]],[30,31,["H5975"]],[31,32,["H681"]],[32,34,["H3027"]]]},{"k":9099,"v":[[0,2,["H8147","H6240"]],[2,3,["H738"]],[3,4,["H5975"]],[4,5,["H8033"]],[5,6,["H5921"]],[6,9,["H4480","H2088"]],[9,13,["H4480","H2088"]],[13,16,["H8337"]],[16,17,["H4609"]],[17,20,["H3808"]],[20,22,["H3651"]],[22,23,["H6213"]],[23,25,["H3605"]],[25,26,["H4467"]]]},{"k":9100,"v":[[0,2,["H3605"]],[2,3,["H4428"]],[3,4,["H8010"]],[4,5,["H4945"]],[5,6,["H3627"]],[6,9,["H2091"]],[9,11,["H3605"]],[11,13,["H3627"]],[13,16,["H1004"]],[16,19,["H3293"]],[19,21,["H3844"]],[21,24,["H5462"]],[24,25,["H2091"]],[25,26,["H369"]],[26,29,["H3701"]],[29,32,["H3808","H3972"]],[32,33,["H2803"]],[33,37,["H3117"]],[37,39,["H8010"]]]},{"k":9101,"v":[[0,1,["H3588"]],[1,3,["H4428"]],[3,6,["H3220"]],[6,8,["H590"]],[8,10,["H8659"]],[10,11,["H5973"]],[11,13,["H590"]],[13,15,["H2438"]],[15,16,["H259"]],[16,18,["H7969"]],[18,19,["H8141"]],[19,20,["H935"]],[20,22,["H590"]],[22,24,["H8659"]],[24,25,["H5375"]],[25,26,["H2091"]],[26,28,["H3701"]],[28,29,["H8143"]],[29,31,["H6971"]],[31,33,["H8500"]]]},{"k":9102,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,5,["H1431","H4480","H3605"]],[5,7,["H4428"]],[7,10,["H776"]],[10,12,["H6239"]],[12,15,["H2451"]]]},{"k":9103,"v":[[0,2,["H3605"]],[2,4,["H776"]],[4,5,["H1245","(H853)"]],[5,6,["H6440"]],[6,7,["H8010"]],[7,9,["H8085","(H853)"]],[9,11,["H2451"]],[11,12,["H834"]],[12,13,["H430"]],[13,15,["H5414"]],[15,18,["H3820"]]]},{"k":9104,"v":[[0,2,["H1992"]],[2,3,["H935"]],[3,5,["H376"]],[5,7,["H4503"]],[7,8,["H3627"]],[8,10,["H3701"]],[10,12,["H3627"]],[12,14,["H2091"]],[14,16,["H8008"]],[16,18,["H5402"]],[18,20,["H1314"]],[20,21,["H5483"]],[21,23,["H6505"]],[23,25,["H1697"]],[25,26,["H8141"]],[26,28,["H8141"]]]},{"k":9105,"v":[[0,2,["H8010"]],[2,4,["H622"]],[4,5,["H7393"]],[5,7,["H6571"]],[7,10,["H1961"]],[10,12,["H505"]],[12,14,["H702"]],[14,15,["H3967"]],[15,16,["H7393"]],[16,18,["H8147","H6240"]],[18,19,["H505"]],[19,20,["H6571"]],[20,23,["H5148"]],[23,26,["H5892"]],[26,28,["H7393"]],[28,30,["H5973"]],[30,32,["H4428"]],[32,34,["H3389"]]]},{"k":9106,"v":[[0,3,["H4428"]],[3,4,["H5414","(H853)"]],[4,5,["H3701"]],[5,9,["H3389"]],[9,11,["H68"]],[11,13,["H730"]],[13,14,["H5414"]],[14,21,["H8256"]],[21,22,["H834"]],[22,26,["H8219"]],[26,28,["H7230"]]]},{"k":9107,"v":[[0,2,["H8010"]],[2,4,["H5483"]],[4,5,["H4161"]],[5,8,["H4480","H4714"]],[8,11,["H4480","H4723"]],[11,13,["H4428"]],[13,14,["H5503"]],[14,15,["H3947"]],[15,18,["H4480","H4723"]],[18,21,["H4242"]]]},{"k":9108,"v":[[0,3,["H4818"]],[3,5,["H5927"]],[5,8,["H3318"]],[8,10,["H4480","H4714"]],[10,12,["H8337"]],[12,13,["H3967"]],[13,16,["H3701"]],[16,19,["H5483"]],[19,22,["H3967"]],[22,24,["H2572"]],[24,26,["H3651"]],[26,28,["H3605"]],[28,30,["H4428"]],[30,33,["H2850"]],[33,37,["H4428"]],[37,39,["H758"]],[39,44,["H3318"]],[44,47,["H3027"]]]},{"k":9109,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H157"]],[4,5,["H7227"]],[5,6,["H5237"]],[6,7,["H802"]],[7,9,["H854"]],[9,11,["H1323"]],[11,13,["H6547"]],[13,17,["H4125"]],[17,18,["H5984"]],[18,19,["H130"]],[19,20,["H6722"]],[20,22,["H2850"]]]},{"k":9110,"v":[[0,1,["H4480"]],[1,3,["H1471"]],[3,5,["H834"]],[5,7,["H3068"]],[7,8,["H559"]],[8,9,["H413"]],[9,11,["H1121"]],[11,13,["H3478"]],[13,16,["H3808"]],[16,18,["H935"]],[18,21,["H3808"]],[21,23,["H1992"]],[23,25,["H935"]],[25,29,["H403"]],[29,33,["H5186","(H853)"]],[33,35,["H3824"]],[35,36,["H310"]],[36,38,["H430"]],[38,39,["H8010"]],[39,40,["H1692"]],[40,44,["H157"]]]},{"k":9111,"v":[[0,3,["H1961"]],[3,4,["H7651"]],[4,5,["H3967"]],[5,6,["H802"]],[6,7,["H8282"]],[7,9,["H7969"]],[9,10,["H3967"]],[10,11,["H6370"]],[11,14,["H802"]],[14,16,["H5186","(H853)"]],[16,18,["H3820"]]]},{"k":9112,"v":[[0,5,["H1961"]],[5,6,["H6256"]],[6,7,["H8010"]],[7,9,["H2209"]],[9,12,["H802"]],[12,14,["H5186","(H853)"]],[14,16,["H3824"]],[16,17,["H310"]],[17,18,["H312"]],[18,19,["H430"]],[19,22,["H3824"]],[22,23,["H1961"]],[23,24,["H3808"]],[24,25,["H8003"]],[25,26,["H5973"]],[26,28,["H3068"]],[28,30,["H430"]],[30,34,["H3824"]],[34,36,["H1732"]],[36,38,["H1"]]]},{"k":9113,"v":[[0,2,["H8010"]],[2,3,["H1980"]],[3,4,["H310"]],[4,5,["H6253"]],[5,7,["H430"]],[7,10,["H6722"]],[10,12,["H310"]],[12,13,["H4445"]],[13,15,["H8251"]],[15,18,["H5984"]]]},{"k":9114,"v":[[0,2,["H8010"]],[2,3,["H6213"]],[3,4,["H7451"]],[4,7,["H5869"]],[7,10,["H3068"]],[10,14,["H3808","H4390"]],[14,15,["H310"]],[15,17,["H3068"]],[17,20,["H1732"]],[20,22,["H1"]]]},{"k":9115,"v":[[0,1,["H227"]],[1,3,["H8010"]],[3,4,["H1129"]],[4,7,["H1116"]],[7,9,["H3645"]],[9,11,["H8251"]],[11,13,["H4124"]],[13,16,["H2022"]],[16,17,["H834"]],[17,19,["H5921","H6440"]],[19,20,["H3389"]],[20,23,["H4432"]],[23,25,["H8251"]],[25,28,["H1121"]],[28,30,["H5983"]]]},{"k":9116,"v":[[0,2,["H3651"]],[2,3,["H6213"]],[3,6,["H3605"]],[6,8,["H5237"]],[8,9,["H802"]],[9,12,["H6999"]],[12,14,["H2076"]],[14,17,["H430"]]]},{"k":9117,"v":[[0,3,["H3068"]],[3,5,["H599"]],[5,7,["H8010"]],[7,8,["H3588"]],[8,10,["H3824"]],[10,12,["H5186"]],[12,13,["H4480","H5973"]],[13,15,["H3068"]],[15,16,["H430"]],[16,18,["H3478"]],[18,21,["H7200"]],[21,22,["H413"]],[22,24,["H6471"]]]},{"k":9118,"v":[[0,3,["H6680","H413"]],[3,5,["H5921"]],[5,6,["H2088"]],[6,7,["H1697"]],[7,11,["H1115"]],[11,12,["H1980"]],[12,13,["H310"]],[13,14,["H312"]],[14,15,["H430"]],[15,18,["H8104"]],[18,19,["H3808","(H853)"]],[19,21,["H834"]],[21,23,["H3068"]],[23,24,["H6680"]]]},{"k":9119,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,6,["H8010"]],[6,7,["H3282"]],[7,8,["H834"]],[8,9,["H2063"]],[9,10,["H1961"]],[10,12,["H5973"]],[12,17,["H3808"]],[17,18,["H8104"]],[18,20,["H1285"]],[20,23,["H2708"]],[23,24,["H834"]],[24,27,["H6680","H5921"]],[27,32,["H7167","H7167","(H853)"]],[32,34,["H4467"]],[34,35,["H4480","H5921"]],[35,39,["H5414"]],[39,43,["H5650"]]]},{"k":9120,"v":[[0,1,["H389"]],[1,4,["H3117"]],[4,7,["H3808"]],[7,8,["H6213"]],[8,14,["H4616","H1732","H1"]],[14,18,["H7167"]],[18,23,["H4480","H3027"]],[23,26,["H1121"]]]},{"k":9121,"v":[[0,1,["H7535"]],[1,4,["H3808"]],[4,6,["H7167","(H853)"]],[6,7,["H3605"]],[7,9,["H4467"]],[9,12,["H5414"]],[12,13,["H259"]],[13,14,["H7626"]],[14,17,["H1121"]],[17,22,["H4616","H1732","H5650"]],[22,26,["H4616","H3389"]],[26,27,["H834"]],[27,30,["H977"]]]},{"k":9122,"v":[[0,3,["H3068"]],[3,5,["H6965"]],[5,7,["H7854"]],[7,9,["H8010","(H853)"]],[9,10,["H1908"]],[10,12,["H130"]],[12,13,["H1931"]],[13,18,["H4480","H2233","H4428"]],[18,20,["H123"]]]},{"k":9123,"v":[[0,5,["H1961"]],[5,7,["H1732"]],[7,8,["H1961"]],[8,9,["(H853)"]],[9,10,["H123"]],[10,12,["H3097"]],[12,14,["H8269"]],[14,17,["H6635"]],[17,20,["H5927"]],[20,22,["H6912","(H853)"]],[22,24,["H2491"]],[24,28,["H5221"]],[28,29,["H3605"]],[29,30,["H2145"]],[30,32,["H123"]]]},{"k":9124,"v":[[0,1,["H3588"]],[1,2,["H8337"]],[2,3,["H2320"]],[3,5,["H3097"]],[5,6,["H3427"]],[6,7,["H8033"]],[7,9,["H3605"]],[9,10,["H3478"]],[10,11,["H5704"]],[11,15,["H3772"]],[15,16,["H3605"]],[16,17,["H2145"]],[17,19,["H123"]]]},{"k":9125,"v":[[0,2,["H111"]],[2,3,["H1272"]],[3,4,["H1931"]],[4,6,["H376"]],[6,7,["H129"]],[7,11,["H4480","H5650","H1"]],[11,12,["H854"]],[12,15,["H935"]],[15,17,["H4714"]],[17,18,["H1908"]],[18,22,["H6996"]],[22,23,["H5288"]]]},{"k":9126,"v":[[0,3,["H6965"]],[3,6,["H4480","H4080"]],[6,8,["H935"]],[8,10,["H6290"]],[10,13,["H3947"]],[13,14,["H376"]],[14,15,["H5973"]],[15,19,["H4480","H6290"]],[19,22,["H935"]],[22,24,["H4714"]],[24,25,["H413"]],[25,26,["H6547"]],[26,27,["H4428"]],[27,29,["H4714"]],[29,31,["H5414"]],[31,34,["H1004"]],[34,36,["H559"]],[36,38,["H3899"]],[38,40,["H5414"]],[40,42,["H776"]]]},{"k":9127,"v":[[0,2,["H1908"]],[2,3,["H4672"]],[3,4,["H3966"]],[4,5,["H2580"]],[5,8,["H5869"]],[8,10,["H6547"]],[10,14,["H5414"]],[14,17,["H802","(H853)"]],[17,19,["H269"]],[19,23,["H802"]],[23,25,["H269"]],[25,27,["H8472"]],[27,29,["H1377"]]]},{"k":9128,"v":[[0,3,["H269"]],[3,5,["H8472"]],[5,6,["H3205"]],[6,7,["(H853)"]],[7,8,["H1592"]],[8,10,["H1121"]],[10,12,["H8472"]],[12,13,["H1580"]],[13,14,["H8432"]],[14,15,["H6547"]],[15,16,["H1004"]],[16,18,["H1592"]],[18,19,["H1961"]],[19,21,["H6547"]],[21,22,["H1004"]],[22,23,["H8432"]],[23,25,["H1121"]],[25,27,["H6547"]]]},{"k":9129,"v":[[0,3,["H1908"]],[3,4,["H8085"]],[4,6,["H4714"]],[6,7,["H3588"]],[7,8,["H1732"]],[8,9,["H7901"]],[9,10,["H5973"]],[10,12,["H1"]],[12,14,["H3588"]],[14,15,["H3097"]],[15,17,["H8269"]],[17,20,["H6635"]],[20,22,["H4191"]],[22,23,["H1908"]],[23,24,["H559"]],[24,25,["H413"]],[25,26,["H6547"]],[26,29,["H7971"]],[29,33,["H1980"]],[33,34,["H413"]],[34,37,["H776"]]]},{"k":9130,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,6,["H3588"]],[6,7,["H4100"]],[7,9,["H859"]],[9,10,["H2638"]],[10,11,["H5973"]],[11,14,["H2009"]],[14,16,["H1245"]],[16,18,["H1980"]],[18,19,["H413"]],[19,22,["H776"]],[22,25,["H559"]],[25,26,["H3808"]],[26,27,["H3588"]],[27,33,["H7971","H7971"]]]},{"k":9131,"v":[[0,2,["H430"]],[2,5,["H6965"]],[5,7,["H7854","(H853)"]],[7,8,["H7331"]],[8,10,["H1121"]],[10,12,["H450"]],[12,13,["H834"]],[13,14,["H1272"]],[14,15,["H4480","H854"]],[15,17,["H113"]],[17,18,["H1909"]],[18,19,["H4428"]],[19,21,["H6678"]]]},{"k":9132,"v":[[0,3,["H6908"]],[3,4,["H376"]],[4,5,["H5921"]],[5,8,["H1961"]],[8,9,["H8269"]],[9,12,["H1416"]],[12,14,["H1732"]],[14,15,["H2026"]],[15,21,["H1980"]],[21,23,["H1834"]],[23,25,["H3427"]],[25,28,["H4427"]],[28,30,["H1834"]]]},{"k":9133,"v":[[0,3,["H1961"]],[3,5,["H7854"]],[5,7,["H3478"]],[7,8,["H3605"]],[8,10,["H3117"]],[10,12,["H8010"]],[12,13,["H854"]],[13,15,["H7451"]],[15,16,["H834"]],[16,17,["H1908"]],[17,21,["H6973"]],[21,22,["H3478"]],[22,24,["H4427"]],[24,25,["H5921"]],[25,26,["H758"]]]},{"k":9134,"v":[[0,2,["H3379"]],[2,4,["H1121"]],[4,6,["H5028"]],[6,8,["H673"]],[8,9,["H4480"]],[9,10,["H6868"]],[10,11,["H8010"]],[11,12,["H5650"]],[12,14,["H517"]],[14,15,["H8034"]],[15,17,["H6871"]],[17,19,["H490"]],[19,20,["H802"]],[20,24,["H7311"]],[24,26,["H3027"]],[26,29,["H4428"]]]},{"k":9135,"v":[[0,2,["H2088"]],[2,5,["H1697"]],[5,6,["H834"]],[6,9,["H7311"]],[9,11,["H3027"]],[11,14,["H4428"]],[14,15,["H8010"]],[15,16,["H1129","(H853)"]],[16,17,["H4407"]],[17,19,["H5462","(H853)"]],[19,21,["H6556"]],[21,24,["H5892"]],[24,26,["H1732"]],[26,28,["H1"]]]},{"k":9136,"v":[[0,3,["H376"]],[3,4,["H3379"]],[4,7,["H1368"]],[7,10,["H2428"]],[10,12,["H8010"]],[12,13,["H7200","(H853)"]],[13,16,["H5288"]],[16,17,["H3588"]],[17,18,["H1931"]],[18,20,["H6213","H4399"]],[20,24,["H6485","(H853)"]],[24,26,["H3605"]],[26,28,["H5447"]],[28,31,["H1004"]],[31,33,["H3130"]]]},{"k":9137,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,8,["H6256"]],[8,10,["H3379"]],[10,12,["H3318"]],[12,14,["H4480","H3389"]],[14,17,["H5030"]],[17,18,["H281"]],[18,20,["H7888"]],[20,21,["H4672"]],[21,25,["H1870"]],[25,27,["H1931"]],[27,30,["H3680"]],[30,33,["H2319"]],[33,34,["H8008"]],[34,37,["H8147"]],[37,39,["H905"]],[39,42,["H7704"]]]},{"k":9138,"v":[[0,2,["H281"]],[2,3,["H8610"]],[3,5,["H2319"]],[5,6,["H8008"]],[6,7,["H834"]],[7,9,["H5921"]],[9,12,["H7167"]],[12,15,["H8147","H6240"]],[15,16,["H7168"]]]},{"k":9139,"v":[[0,3,["H559"]],[3,5,["H3379"]],[5,6,["H3947"]],[6,8,["H6235"]],[8,9,["H7168"]],[9,10,["H3588"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H3068"]],[14,16,["H430"]],[16,18,["H3478"]],[18,19,["H2009"]],[19,22,["H7167","(H853)"]],[22,24,["H4467"]],[24,28,["H4480","H3027"]],[28,30,["H8010"]],[30,33,["H5414","(H853)"]],[33,34,["H6235"]],[34,35,["H7626"]],[35,37,[]]]},{"k":9140,"v":[[0,4,["H1961"]],[4,5,["H259"]],[5,6,["H7626"]],[6,11,["H4616","H1732","H5650"]],[11,15,["H4616","H3389"]],[15,17,["H5892"]],[17,18,["H834"]],[18,21,["H977"]],[21,24,["H4480","H3605"]],[24,26,["H7626"]],[26,28,["H3478"]]]},{"k":9141,"v":[[0,1,["H3282"]],[1,2,["H834"]],[2,5,["H5800"]],[5,9,["H7812"]],[9,10,["H6253"]],[10,12,["H430"]],[12,15,["H6721"]],[15,16,["H3645"]],[16,18,["H430"]],[18,21,["H4124"]],[21,23,["H4445"]],[23,25,["H430"]],[25,28,["H1121"]],[28,30,["H5983"]],[30,33,["H3808"]],[33,34,["H1980"]],[34,37,["H1870"]],[37,39,["H6213"]],[39,43,["H3477"]],[43,46,["H5869"]],[46,51,["H2708"]],[51,54,["H4941"]],[54,57,["H1732"]],[57,59,["H1"]]]},{"k":9142,"v":[[0,4,["H3808"]],[4,5,["H3947","(H853)"]],[5,7,["H3605"]],[7,8,["H4467"]],[8,12,["H4480","H3027"]],[12,13,["H3588"]],[13,16,["H7896"]],[16,18,["H5387"]],[18,19,["H3605"]],[19,21,["H3117"]],[21,24,["H2416"]],[24,29,["H4616","H1732","H5650"]],[29,30,["H834","(H853)"]],[30,32,["H977"]],[32,33,["H834"]],[33,35,["H8104"]],[35,37,["H4687"]],[37,40,["H2708"]]]},{"k":9143,"v":[[0,4,["H3947"]],[4,6,["H4410"]],[6,11,["H4480","H3027","H1121"]],[11,14,["H5414"]],[14,18,["(H853)"]],[18,19,["H6235"]],[19,20,["H7626"]]]},{"k":9144,"v":[[0,4,["H1121"]],[4,7,["H5414"]],[7,8,["H259"]],[8,9,["H7626"]],[9,10,["H4616"]],[10,11,["H1732"]],[11,13,["H5650"]],[13,15,["H1961"]],[15,17,["H5216"]],[17,18,["H3605","H3117"]],[18,19,["H6440"]],[19,22,["H3389"]],[22,24,["H5892"]],[24,25,["H834"]],[25,28,["H977"]],[28,31,["H7760"]],[31,33,["H8034"]],[33,34,["H8033"]]]},{"k":9145,"v":[[0,4,["H3947"]],[4,9,["H4427"]],[9,12,["H3605"]],[12,13,["H834"]],[13,15,["H5315"]],[15,16,["H183"]],[16,19,["H1961"]],[19,20,["H4428"]],[20,21,["H5921"]],[21,22,["H3478"]]]},{"k":9146,"v":[[0,4,["H1961"]],[4,5,["H518"]],[5,9,["H8085","(H853)"]],[9,10,["H3605"]],[10,11,["H834"]],[11,13,["H6680"]],[13,17,["H1980"]],[17,20,["H1870"]],[20,22,["H6213"]],[22,25,["H3477"]],[25,28,["H5869"]],[28,30,["H8104"]],[30,32,["H2708"]],[32,35,["H4687"]],[35,36,["H834"]],[36,37,["H1732"]],[37,39,["H5650"]],[39,40,["H6213"]],[40,44,["H1961"]],[44,45,["H5973"]],[45,48,["H1129"]],[48,51,["H539"]],[51,52,["H1004"]],[52,53,["H834"]],[53,55,["H1129"]],[55,57,["H1732"]],[57,60,["H5414","(H853)"]],[60,61,["H3478"]],[61,63,[]]]},{"k":9147,"v":[[0,4,["H4616"]],[4,5,["H2063"]],[5,6,["H6031","(H853)"]],[6,8,["H2233"]],[8,10,["H1732"]],[10,11,["H389"]],[11,12,["H3808"]],[12,14,["H3605","H3117"]]]},{"k":9148,"v":[[0,1,["H8010"]],[1,2,["H1245"]],[2,5,["H4191","(H853)"]],[5,6,["H3379"]],[6,8,["H3379"]],[8,9,["H6965"]],[9,11,["H1272"]],[11,13,["H4714"]],[13,14,["H413"]],[14,15,["H7895"]],[15,16,["H4428"]],[16,18,["H4714"]],[18,20,["H1961"]],[20,22,["H4714"]],[22,23,["H5704"]],[23,25,["H4194"]],[25,27,["H8010"]]]},{"k":9149,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H8010"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,16,["H2451"]],[16,18,["H1992"]],[18,19,["H3808"]],[19,20,["H3789"]],[20,21,["H5921"]],[21,23,["H5612"]],[23,26,["H1697"]],[26,28,["H8010"]]]},{"k":9150,"v":[[0,3,["H3117"]],[3,4,["H834"]],[4,5,["H8010"]],[5,6,["H4427"]],[6,8,["H3389"]],[8,9,["H5921"]],[9,10,["H3605"]],[10,11,["H3478"]],[11,13,["H705"]],[13,14,["H8141"]]]},{"k":9151,"v":[[0,2,["H8010"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,12,["H5892"]],[12,14,["H1732"]],[14,16,["H1"]],[16,18,["H7346"]],[18,20,["H1121"]],[20,21,["H4427"]],[21,24,["H8478"]]]},{"k":9152,"v":[[0,2,["H7346"]],[2,3,["H1980"]],[3,5,["H7927"]],[5,6,["H3588"]],[6,7,["H3605"]],[7,8,["H3478"]],[8,10,["H935"]],[10,12,["H7927"]],[12,16,["H4427","(H853)"]]]},{"k":9153,"v":[[0,5,["H1961"]],[5,7,["H3379"]],[7,9,["H1121"]],[9,11,["H5028"]],[11,12,["H1931"]],[12,14,["H5750"]],[14,16,["H4714"]],[16,17,["H8085"]],[17,20,["H834"]],[20,23,["H1272"]],[23,26,["H4480","H6440"]],[26,28,["H4428"]],[28,29,["H8010"]],[29,31,["H3379"]],[31,32,["H3427"]],[32,34,["H4714"]]]},{"k":9154,"v":[[0,3,["H7971"]],[3,5,["H7121"]],[5,8,["H3379"]],[8,10,["H3605"]],[10,12,["H6951"]],[12,14,["H3478"]],[14,15,["H935"]],[15,17,["H1696"]],[17,18,["H413"]],[18,19,["H7346"]],[19,20,["H559"]]]},{"k":9155,"v":[[0,2,["H1"]],[2,3,["(H853)"]],[3,5,["H5923"]],[5,6,["H7185"]],[6,7,["H6258"]],[7,10,["H859"]],[10,12,["H7186"]],[12,13,["H4480","H5656"]],[13,16,["H1"]],[16,19,["H3515"]],[19,20,["H4480","H5923"]],[20,21,["H834"]],[21,23,["H5414"]],[23,24,["H5921"]],[24,26,["H7043"]],[26,30,["H5647"]],[30,31,[]]]},{"k":9156,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1980"]],[6,7,["H5750"]],[7,9,["H7969"]],[9,10,["H3117"]],[10,13,["H7725"]],[13,14,["H413"]],[14,18,["H5971"]],[18,19,["H1980"]]]},{"k":9157,"v":[[0,2,["H4428"]],[2,3,["H7346"]],[3,4,["H3289"]],[4,5,["H854"]],[5,8,["H2205"]],[8,9,["H834"]],[9,10,["H5975","(H853)"]],[10,11,["H6440"]],[11,12,["H8010"]],[12,14,["H1"]],[14,15,["H1961"]],[15,18,["H2416"]],[18,20,["H559"]],[20,21,["H349"]],[21,23,["H859"]],[23,24,["H3289"]],[24,28,["H7725","H1697","(H853)"]],[28,29,["H2088"]],[29,30,["H5971"]]]},{"k":9158,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H559"]],[6,7,["H518"]],[7,10,["H1961"]],[10,12,["H5650"]],[12,14,["H2088"]],[14,15,["H5971"]],[15,17,["H3117"]],[17,20,["H5647"]],[20,23,["H6030"]],[23,26,["H1696"]],[26,27,["H2896"]],[27,28,["H1697"]],[28,29,["H413"]],[29,34,["H1961"]],[34,36,["H5650"]],[36,38,["H3605","H3117"]]]},{"k":9159,"v":[[0,3,["H5800","(H853)"]],[3,5,["H6098"]],[5,9,["H2205"]],[9,10,["H834"]],[10,13,["H3289"]],[13,16,["H3289"]],[16,17,["H854"]],[17,20,["H3206"]],[20,21,["H834"]],[21,24,["H1431"]],[24,25,["H854"]],[25,28,["H834"]],[28,29,["H5975"]],[29,30,["H6440"]],[30,31,[]]]},{"k":9160,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H4100"]],[6,7,["H3289"]],[7,9,["H859"]],[9,13,["H7725","H1697","(H853)"]],[13,14,["H2088"]],[14,15,["H5971"]],[15,16,["H834"]],[16,18,["H1696"]],[18,19,["H413"]],[19,21,["H559"]],[21,24,["H5923"]],[24,25,["H834"]],[25,27,["H1"]],[27,29,["H5414"]],[29,30,["H5921"]],[30,32,["H7043"]]]},{"k":9161,"v":[[0,4,["H3206"]],[4,5,["H834"]],[5,8,["H1431"]],[8,9,["H854"]],[9,11,["H1696"]],[11,12,["H413"]],[12,14,["H559"]],[14,15,["H3541"]],[15,18,["H559"]],[18,20,["H2088"]],[20,21,["H5971"]],[21,22,["H834"]],[22,23,["H1696"]],[23,24,["H413"]],[24,26,["H559"]],[26,28,["H1"]],[28,29,["(H853)"]],[29,31,["H5923"]],[31,32,["H3513"]],[32,35,["H859"]],[35,37,["H7043"]],[37,38,["H4480","H5921"]],[38,40,["H3541"]],[40,43,["H1696"]],[43,44,["H413"]],[44,47,["H6995"]],[47,51,["H5666"]],[51,54,["H1"]],[54,55,["H4480","H4975"]]]},{"k":9162,"v":[[0,2,["H6258"]],[2,5,["H1"]],[5,7,["H6006","H5921"]],[7,11,["H3515"]],[11,12,["H5923"]],[12,13,["H589"]],[13,15,["H3254"]],[15,16,["H5921"]],[16,18,["H5923"]],[18,20,["H1"]],[20,22,["H3256"]],[22,25,["H7752"]],[25,27,["H589"]],[27,29,["H3256"]],[29,32,["H6137"]]]},{"k":9163,"v":[[0,2,["H3379"]],[2,4,["H3605"]],[4,6,["H5971"]],[6,7,["H935"]],[7,8,["H413"]],[8,9,["H7346"]],[9,11,["H7992"]],[11,12,["H3117"]],[12,13,["H834"]],[13,15,["H4428"]],[15,17,["H1696"]],[17,18,["H559"]],[18,19,["H7725"]],[19,20,["H413"]],[20,24,["H7992"]],[24,25,["H3117"]]]},{"k":9164,"v":[[0,3,["H4428"]],[3,4,["H6030","(H853)"]],[4,6,["H5971"]],[6,7,["H7186"]],[7,9,["H5800","(H853)"]],[9,12,["H2205"]],[12,13,["H6098"]],[13,14,["H834"]],[14,16,["H3289"]],[16,17,[]]]},{"k":9165,"v":[[0,2,["H1696"]],[2,3,["H413"]],[3,7,["H6098"]],[7,11,["H3206"]],[11,12,["H559"]],[12,14,["H1"]],[14,15,["(H853)"]],[15,17,["H5923"]],[17,18,["H3513"]],[18,20,["H589"]],[20,22,["H3254"]],[22,23,["H5921"]],[23,25,["H5923"]],[25,27,["H1"]],[27,29,["H3256"]],[29,32,["H7752"]],[32,34,["H589"]],[34,36,["H3256"]],[36,39,["H6137"]]]},{"k":9166,"v":[[0,3,["H4428"]],[3,4,["H8085"]],[4,5,["H3808"]],[5,6,["H413"]],[6,8,["H5971"]],[8,9,["H3588"]],[9,11,["H5438"]],[11,12,["H1961"]],[12,13,["H4480","H5973"]],[13,15,["H3068"]],[15,16,["H4616"]],[16,19,["H6965","(H853)"]],[19,21,["H1697"]],[21,22,["H834"]],[22,24,["H3068"]],[24,25,["H1696"]],[25,26,["H3027"]],[26,27,["H281"]],[27,29,["H7888"]],[29,30,["H413"]],[30,31,["H3379"]],[31,33,["H1121"]],[33,35,["H5028"]]]},{"k":9167,"v":[[0,3,["H3605"]],[3,4,["H3478"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,8,["H4428"]],[8,9,["H8085"]],[9,10,["H3808"]],[10,11,["H413"]],[11,14,["H5971"]],[14,15,["H7725","H1697","(H853)"]],[15,17,["H4428"]],[17,18,["H559"]],[18,19,["H4100"]],[19,20,["H2506"]],[20,24,["H1732"]],[24,25,["H3808"]],[25,28,["H5159"]],[28,31,["H1121"]],[31,33,["H3448"]],[33,36,["H168"]],[36,38,["H3478"]],[38,39,["H6258"]],[39,40,["H7200"]],[40,44,["H1004"]],[44,45,["H1732"]],[45,47,["H3478"]],[47,48,["H1980"]],[48,51,["H168"]]]},{"k":9168,"v":[[0,5,["H1121"]],[5,7,["H3478"]],[7,9,["H3427"]],[9,12,["H5892"]],[12,14,["H3063"]],[14,15,["H7346"]],[15,16,["H4427"]],[16,17,["H5921"]],[17,18,[]]]},{"k":9169,"v":[[0,2,["H4428"]],[2,3,["H7346"]],[3,4,["H7971","(H853)"]],[4,5,["H151"]],[5,6,["H834"]],[6,8,["H5921"]],[8,10,["H4522"]],[10,12,["H3605"]],[12,13,["H3478"]],[13,14,["H7275"]],[14,17,["H68"]],[17,20,["H4191"]],[20,22,["H4428"]],[22,23,["H7346"]],[23,25,["H553"]],[25,29,["H5927"]],[29,32,["H4818"]],[32,34,["H5127"]],[34,36,["H3389"]]]},{"k":9170,"v":[[0,2,["H3478"]],[2,3,["H6586"]],[3,6,["H1004"]],[6,8,["H1732"]],[8,9,["H5704"]],[9,10,["H2088"]],[10,11,["H3117"]]]},{"k":9171,"v":[[0,5,["H1961"]],[5,7,["H3605"]],[7,8,["H3478"]],[8,9,["H8085"]],[9,10,["H3588"]],[10,11,["H3379"]],[11,14,["H7725"]],[14,17,["H7971"]],[17,19,["H7121"]],[19,21,["H413"]],[21,23,["H5712"]],[23,27,["H4427","(H853)"]],[27,28,["H5921"]],[28,29,["H3605"]],[29,30,["H3478"]],[30,32,["H1961"]],[32,33,["H3808"]],[33,35,["H310"]],[35,37,["H1004"]],[37,39,["H1732"]],[39,40,["H2108"]],[40,42,["H7626"]],[42,44,["H3063"]],[44,45,["H905"]]]},{"k":9172,"v":[[0,3,["H7346"]],[3,5,["H935"]],[5,7,["H3389"]],[7,9,["H6950","(H853)"]],[9,10,["H3605"]],[10,12,["H1004"]],[12,14,["H3063"]],[14,15,["H854"]],[15,17,["H7626"]],[17,19,["H1144"]],[19,21,["H3967"]],[21,23,["H8084"]],[23,24,["H505"]],[24,25,["H977"]],[25,29,["H6213","H4421"]],[29,31,["H3898"]],[31,32,["H5973"]],[32,34,["H1004"]],[34,36,["H3478"]],[36,38,["H7725","(H853)"]],[38,40,["H4410"]],[40,43,["H7346"]],[43,45,["H1121"]],[45,47,["H8010"]]]},{"k":9173,"v":[[0,3,["H1697"]],[3,5,["H430"]],[5,6,["H1961"]],[6,7,["H413"]],[7,8,["H8098"]],[8,10,["H376"]],[10,12,["H430"]],[12,13,["H559"]]]},{"k":9174,"v":[[0,1,["H559"]],[1,2,["H413"]],[2,3,["H7346"]],[3,5,["H1121"]],[5,7,["H8010"]],[7,8,["H4428"]],[8,10,["H3063"]],[10,12,["H413"]],[12,13,["H3605"]],[13,15,["H1004"]],[15,17,["H3063"]],[17,19,["H1144"]],[19,23,["H3499"]],[23,26,["H5971"]],[26,27,["H559"]]]},{"k":9175,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,7,["H3808"]],[7,9,["H5927"]],[9,10,["H3808"]],[10,11,["H3898"]],[11,12,["H5973"]],[12,14,["H251"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,19,["H7725"]],[19,21,["H376"]],[21,24,["H1004"]],[24,25,["H3588"]],[25,26,["H2088"]],[26,27,["H1697"]],[27,28,["H1961"]],[28,29,["H4480","H854"]],[29,32,["H8085"]],[32,33,["(H853)"]],[33,36,["H1697"]],[36,39,["H3068"]],[39,41,["H7725"]],[41,43,["H1980"]],[43,47,["H1697"]],[47,50,["H3068"]]]},{"k":9176,"v":[[0,2,["H3379"]],[2,3,["H1129","(H853)"]],[3,4,["H7927"]],[4,6,["H2022"]],[6,7,["H669"]],[7,9,["H3427"]],[9,13,["H3318"]],[13,15,["H4480","H8033"]],[15,17,["H1129","(H853)"]],[17,18,["H6439"]]]},{"k":9177,"v":[[0,2,["H3379"]],[2,3,["H559"]],[3,6,["H3820"]],[6,7,["H6258"]],[7,10,["H4467"]],[10,11,["H7725"]],[11,14,["H1004"]],[14,16,["H1732"]]]},{"k":9178,"v":[[0,1,["H518"]],[1,2,["H2088"]],[2,3,["H5971"]],[3,5,["H5927"]],[5,7,["H6213"]],[7,8,["H2077"]],[8,11,["H1004"]],[11,14,["H3068"]],[14,16,["H3389"]],[16,20,["H3820"]],[20,22,["H2088"]],[22,23,["H5971"]],[23,25,["H7725"]],[25,26,["H413"]],[26,28,["H113"]],[28,30,["H413"]],[30,31,["H7346"]],[31,32,["H4428"]],[32,34,["H3063"]],[34,38,["H2026"]],[38,42,["H7725"]],[42,43,["H413"]],[43,44,["H7346"]],[44,45,["H4428"]],[45,47,["H3063"]]]},{"k":9179,"v":[[0,3,["H4428"]],[3,5,["H3289"]],[5,7,["H6213"]],[7,8,["H8147"]],[8,9,["H5695"]],[9,11,["H2091"]],[11,13,["H559"]],[13,14,["H413"]],[14,19,["H7227"]],[19,24,["H4480","H5927"]],[24,26,["H3389"]],[26,27,["H2009"]],[27,29,["H430"]],[29,31,["H3478"]],[31,32,["H834"]],[32,33,["H5927"]],[33,39,["H4480","H776"]],[39,41,["H4714"]]]},{"k":9180,"v":[[0,3,["H7760","(H853)"]],[3,5,["H259"]],[5,7,["H1008"]],[7,10,["H259"]],[10,11,["H5414"]],[11,14,["H1835"]]]},{"k":9181,"v":[[0,2,["H2088"]],[2,3,["H1697"]],[3,4,["H1961"]],[4,6,["H2403"]],[6,9,["H5971"]],[9,10,["H1980"]],[10,13,["H6440"]],[13,15,["H259"]],[15,17,["H5704"]],[17,18,["H1835"]]]},{"k":9182,"v":[[0,3,["H6213","(H853)"]],[3,5,["H1004"]],[5,8,["H1116"]],[8,10,["H6213"]],[10,11,["H3548"]],[11,14,["H4480","H7098"]],[14,17,["H5971"]],[17,18,["H834"]],[18,19,["H1961"]],[19,20,["H3808"]],[20,23,["H4480","H1121"]],[23,25,["H3878"]]]},{"k":9183,"v":[[0,2,["H3379"]],[2,3,["H6213"]],[3,5,["H2282"]],[5,8,["H8066"]],[8,9,["H2320"]],[9,12,["H2568","H6240"]],[12,13,["H3117"]],[13,16,["H2320"]],[16,20,["H2282"]],[20,21,["H834"]],[21,24,["H3063"]],[24,27,["H5927"]],[27,28,["H5921"]],[28,30,["H4196"]],[30,31,["H3651"]],[31,32,["H6213"]],[32,35,["H1008"]],[35,36,["H2076"]],[36,39,["H5695"]],[39,40,["H834"]],[40,43,["H6213"]],[43,46,["H5975"]],[46,48,["H1008","(H853)"]],[48,50,["H3548"]],[50,54,["H1116"]],[54,55,["H834"]],[55,58,["H6213"]]]},{"k":9184,"v":[[0,3,["H5927"]],[3,4,["H5921"]],[4,6,["H4196"]],[6,7,["H834"]],[7,10,["H6213"]],[10,12,["H1008"]],[12,14,["H2568","H6240"]],[14,15,["H3117"]],[15,18,["H8066"]],[18,19,["H2320"]],[19,23,["H2320"]],[23,24,["H834"]],[24,27,["H908"]],[27,31,["H4480","H3820"]],[31,33,["H6213"]],[33,35,["H2282"]],[35,38,["H1121"]],[38,40,["H3478"]],[40,43,["H5927"]],[43,44,["H5921"]],[44,46,["H4196"]],[46,49,["H6999"]]]},{"k":9185,"v":[[0,2,["H2009"]],[2,4,["H935"]],[4,6,["H376"]],[6,8,["H430"]],[8,11,["H4480","H3063"]],[11,14,["H1697"]],[14,17,["H3068"]],[17,18,["H413"]],[18,19,["H1008"]],[19,21,["H3379"]],[21,22,["H5975"]],[22,23,["H5921"]],[23,25,["H4196"]],[25,28,["H6999"]]]},{"k":9186,"v":[[0,3,["H7121"]],[3,4,["H5921"]],[4,6,["H4196"]],[6,9,["H1697"]],[9,12,["H3068"]],[12,14,["H559"]],[14,16,["H4196"]],[16,17,["H4196"]],[17,18,["H3541"]],[18,19,["H559"]],[19,21,["H3068"]],[21,22,["H2009"]],[22,24,["H1121"]],[24,27,["H3205"]],[27,30,["H1004"]],[30,32,["H1732"]],[32,33,["H2977"]],[33,35,["H8034"]],[35,37,["H5921"]],[37,41,["H2076","(H853)"]],[41,43,["H3548"]],[43,47,["H1116"]],[47,50,["H6999"]],[50,51,["H5921"]],[51,54,["H120"]],[54,55,["H6106"]],[55,58,["H8313"]],[58,59,["H5921"]],[59,60,[]]]},{"k":9187,"v":[[0,3,["H5414"]],[3,5,["H4159"]],[5,7,["H1931"]],[7,8,["H3117"]],[8,9,["H559"]],[9,10,["H2088"]],[10,13,["H4159"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H1696"]],[18,19,["H2009"]],[19,21,["H4196"]],[21,24,["H7167"]],[24,27,["H1880"]],[27,28,["H834"]],[28,30,["H5921"]],[30,35,["H8210"]]]},{"k":9188,"v":[[0,5,["H1961"]],[5,7,["H4428"]],[7,8,["H3379"]],[8,9,["H8085","(H853)"]],[9,11,["H1697"]],[11,14,["H376"]],[14,16,["H430"]],[16,17,["H834"]],[17,19,["H7121"]],[19,20,["H5921"]],[20,22,["H4196"]],[22,24,["H1008"]],[24,28,["H7971","(H853)"]],[28,30,["H3027"]],[30,31,["H4480","H5921"]],[31,33,["H4196"]],[33,34,["H559"]],[34,36,["H8610"]],[36,41,["H3027"]],[41,42,["H834"]],[42,45,["H7971"]],[45,46,["H5921"]],[46,49,["H3001"]],[49,53,["H3201"]],[53,54,["H3808"]],[54,58,["H7725"]],[58,59,["H413"]],[59,60,[]]]},{"k":9189,"v":[[0,2,["H4196"]],[2,5,["H7167"]],[5,8,["H1880"]],[8,10,["H8210"]],[10,11,["H4480"]],[11,13,["H4196"]],[13,17,["H4159"]],[17,18,["H834"]],[18,20,["H376"]],[20,22,["H430"]],[22,24,["H5414"]],[24,27,["H1697"]],[27,30,["H3068"]]]},{"k":9190,"v":[[0,3,["H4428"]],[3,4,["H6030"]],[4,6,["H559"]],[6,7,["H413"]],[7,9,["H376"]],[9,11,["H430"]],[11,12,["H2470"]],[12,13,["H4994","(H853)"]],[13,15,["H6440"]],[15,18,["H3068"]],[18,20,["H430"]],[20,22,["H6419"]],[22,23,["H1157"]],[23,27,["H3027"]],[27,32,["H7725","H413"]],[32,35,["H376"]],[35,37,["H430"]],[37,38,["H2470","(H853)"]],[38,40,["H6440","H3068"]],[40,43,["H4428"]],[43,44,["H3027"]],[44,48,["H7725","H413"]],[48,50,["H1961"]],[50,54,["H7223"]]]},{"k":9191,"v":[[0,3,["H4428"]],[3,4,["H1696"]],[4,5,["H413"]],[5,7,["H376"]],[7,9,["H430"]],[9,10,["H935"]],[10,11,["H1004"]],[11,12,["H854"]],[12,15,["H5582"]],[15,20,["H5414"]],[20,23,["H4991"]]]},{"k":9192,"v":[[0,3,["H376"]],[3,5,["H430"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H4428"]],[9,10,["H518"]],[10,13,["H5414"]],[13,14,["(H853)"]],[14,15,["H2677"]],[15,17,["H1004"]],[17,20,["H3808"]],[20,22,["H935"]],[22,23,["H5973"]],[23,25,["H3808"]],[25,28,["H398"]],[28,29,["H3899"]],[29,30,["H3808"]],[30,31,["H8354"]],[31,32,["H4325"]],[32,34,["H2088"]],[34,35,["H4725"]]]},{"k":9193,"v":[[0,1,["H3588"]],[1,2,["H3651"]],[2,5,["H6680"]],[5,9,["H1697"]],[9,12,["H3068"]],[12,13,["H559"]],[13,14,["H398"]],[14,15,["H3808"]],[15,16,["H3899"]],[16,17,["H3808"]],[17,18,["H8354"]],[18,19,["H4325"]],[19,20,["H3808"]],[20,22,["H7725"]],[22,26,["H1870"]],[26,27,["H834"]],[27,29,["H1980"]]]},{"k":9194,"v":[[0,3,["H1980"]],[3,4,["H312"]],[4,5,["H1870"]],[5,7,["H7725"]],[7,8,["H3808"]],[8,11,["H1870"]],[11,12,["H834"]],[12,14,["H935"]],[14,15,["H413"]],[15,16,["H1008"]]]},{"k":9195,"v":[[0,3,["H3427"]],[3,5,["H259","H2205"]],[5,6,["H5030"]],[6,8,["H1008"]],[8,11,["H1121"]],[11,12,["H935"]],[12,14,["H5608"]],[14,15,["(H853)"]],[15,16,["H3605"]],[16,18,["H4639"]],[18,19,["H834"]],[19,21,["H376"]],[21,23,["H430"]],[23,25,["H6213"]],[25,27,["H3117"]],[27,29,["H1008","(H853)"]],[29,31,["H1697"]],[31,32,["H834"]],[32,35,["H1696"]],[35,36,["H413"]],[36,38,["H4428"]],[38,41,["H5608"]],[41,45,["H1"]]]},{"k":9196,"v":[[0,3,["H1"]],[3,4,["H1696"]],[4,5,["H413"]],[5,7,["H335","H2088"]],[7,8,["H1870"]],[8,9,["H1980"]],[9,13,["H1121"]],[13,15,["H7200","(H853)"]],[15,16,["H834"]],[16,17,["H1870"]],[17,19,["H376"]],[19,21,["H430"]],[21,22,["H1980"]],[22,23,["H834"]],[23,24,["H935"]],[24,26,["H4480","H3063"]]]},{"k":9197,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,7,["H2280"]],[7,10,["H2543"]],[10,13,["H2280"]],[13,16,["H2543"]],[16,19,["H7392"]],[19,20,["H5921"]]]},{"k":9198,"v":[[0,2,["H1980"]],[2,3,["H310"]],[3,5,["H376"]],[5,7,["H430"]],[7,9,["H4672"]],[9,11,["H3427"]],[11,12,["H8478"]],[12,14,["H424"]],[14,17,["H559"]],[17,18,["H413"]],[18,21,["H859"]],[21,23,["H376"]],[23,25,["H430"]],[25,26,["H834"]],[26,27,["H935"]],[27,28,["H4480"]],[28,29,["H3063"]],[29,32,["H559"]],[32,33,["H589"]],[33,34,[]]]},{"k":9199,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1980"]],[6,7,["H1004"]],[7,8,["H854"]],[8,11,["H398"]],[11,12,["H3899"]]]},{"k":9200,"v":[[0,3,["H559"]],[3,5,["H3201"]],[5,6,["H3808"]],[6,7,["H7725"]],[7,8,["H854"]],[8,12,["H935"]],[12,13,["H854"]],[13,15,["H3808"]],[15,18,["H398"]],[18,19,["H3899"]],[19,20,["H3808"]],[20,21,["H8354"]],[21,22,["H4325"]],[22,23,["H854"]],[23,26,["H2088"]],[26,27,["H4725"]]]},{"k":9201,"v":[[0,1,["H3588"]],[1,4,["H1697"]],[4,5,["H413"]],[5,9,["H1697"]],[9,12,["H3068"]],[12,15,["H398"]],[15,16,["H3808"]],[16,17,["H3899"]],[17,18,["H3808"]],[18,19,["H8354"]],[19,20,["H4325"]],[20,21,["H8033"]],[21,22,["H3808"]],[22,24,["H7725"]],[24,26,["H1980"]],[26,29,["H1870"]],[29,30,["H834"]],[30,32,["H1980"]]]},{"k":9202,"v":[[0,2,["H559"]],[2,5,["H589"]],[5,8,["H5030"]],[8,9,["H1571"]],[9,15,["H4397"]],[15,16,["H1696"]],[16,17,["H413"]],[17,21,["H1697"]],[21,24,["H3068"]],[24,25,["H559"]],[25,28,["H7725"]],[28,29,["H854"]],[29,31,["H413"]],[31,33,["H1004"]],[33,37,["H398"]],[37,38,["H3899"]],[38,40,["H8354"]],[40,41,["H4325"]],[41,44,["H3584"]],[44,46,[]]]},{"k":9203,"v":[[0,4,["H7725"]],[4,5,["H854"]],[5,9,["H398"]],[9,10,["H3899"]],[10,13,["H1004"]],[13,15,["H8354"]],[15,16,["H4325"]]]},{"k":9204,"v":[[0,5,["H1961"]],[5,7,["H1992"]],[7,8,["H3427"]],[8,9,["H413"]],[9,11,["H7979"]],[11,14,["H1697"]],[14,17,["H3068"]],[17,18,["H1961"]],[18,19,["H413"]],[19,21,["H5030"]],[21,22,["H834"]],[22,25,["H7725"]]]},{"k":9205,"v":[[0,3,["H7121"]],[3,4,["H413"]],[4,6,["H376"]],[6,8,["H430"]],[8,9,["H834"]],[9,10,["H935"]],[10,11,["H4480"]],[11,12,["H3063"]],[12,13,["H559"]],[13,14,["H3541"]],[14,15,["H559"]],[15,17,["H3068"]],[17,18,["H3282","H3588"]],[18,22,["H4784"]],[22,24,["H6310"]],[24,27,["H3068"]],[27,30,["H3808"]],[30,31,["H8104","(H853)"]],[31,33,["H4687"]],[33,34,["H834"]],[34,36,["H3068"]],[36,38,["H430"]],[38,39,["H6680"]],[39,40,[]]]},{"k":9206,"v":[[0,3,["H7725"]],[3,6,["H398"]],[6,7,["H3899"]],[7,9,["H8354"]],[9,10,["H4325"]],[10,13,["H4725"]],[13,16,["H834"]],[16,20,["H1696"]],[20,21,["H413"]],[21,23,["H398"]],[23,24,["H408"]],[24,25,["H3899"]],[25,27,["H8354"]],[27,28,["H408"]],[28,29,["H4325"]],[29,31,["H5038"]],[31,33,["H3808"]],[33,34,["H935"]],[34,35,["H413"]],[35,37,["H6913"]],[37,40,["H1"]]]},{"k":9207,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,9,["H398"]],[9,10,["H3899"]],[10,12,["H310"]],[12,15,["H8354"]],[15,18,["H2280"]],[18,22,["H2543"]],[22,27,["H5030"]],[27,28,["H834"]],[28,32,["H7725"]]]},{"k":9208,"v":[[0,5,["H1980"]],[5,7,["H738"]],[7,8,["H4672"]],[8,12,["H1870"]],[12,14,["H4191"]],[14,18,["H5038"]],[18,19,["H1961"]],[19,20,["H7993"]],[20,23,["H1870"]],[23,26,["H2543"]],[26,27,["H5975"]],[27,28,["H681"]],[28,31,["H738"]],[31,33,["H5975"]],[33,34,["H681"]],[34,36,["H5038"]]]},{"k":9209,"v":[[0,2,["H2009"]],[2,3,["H376"]],[3,5,["H5674"]],[5,7,["H7200","(H853)"]],[7,9,["H5038"]],[9,10,["H7993"]],[10,13,["H1870"]],[13,16,["H738"]],[16,17,["H5975"]],[17,18,["H681"]],[18,20,["H5038"]],[20,23,["H935"]],[23,25,["H1696"]],[25,29,["H5892"]],[29,30,["H834"]],[30,32,["H2205"]],[32,33,["H5030"]],[33,34,["H3427"]]]},{"k":9210,"v":[[0,4,["H5030"]],[4,5,["H834"]],[5,8,["H7725"]],[8,9,["H4480"]],[9,11,["H1870"]],[11,12,["H8085"]],[12,15,["H559"]],[15,16,["H1931"]],[16,19,["H376"]],[19,21,["H430"]],[21,22,["H834"]],[22,24,["H4784"]],[24,25,["(H853)"]],[25,27,["H6310"]],[27,30,["H3068"]],[30,33,["H3068"]],[33,35,["H5414"]],[35,39,["H738"]],[39,42,["H7665"]],[42,45,["H4191"]],[45,50,["H1697"]],[50,53,["H3068"]],[53,54,["H834"]],[54,56,["H1696"]],[56,58,[]]]},{"k":9211,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H1121"]],[6,7,["H559"]],[7,8,["H2280"]],[8,9,["(H853)"]],[9,11,["H2543"]],[11,14,["H2280"]],[14,15,[]]]},{"k":9212,"v":[[0,3,["H1980"]],[3,5,["H4672","(H853)"]],[5,7,["H5038"]],[7,8,["H7993"]],[8,11,["H1870"]],[11,14,["H2543"]],[14,17,["H738"]],[17,18,["H5975"]],[18,19,["H681"]],[19,21,["H5038"]],[21,23,["H738"]],[23,25,["H3808"]],[25,26,["H398","(H853)"]],[26,28,["H5038"]],[28,29,["H3808"]],[29,30,["H7665","(H853)"]],[30,32,["H2543"]]]},{"k":9213,"v":[[0,3,["H5030"]],[3,5,["H5375","(H853)"]],[5,7,["H5038"]],[7,10,["H376"]],[10,12,["H430"]],[12,14,["H5117"]],[14,16,["H413"]],[16,18,["H2543"]],[18,22,["H7725"]],[22,25,["H2205"]],[25,26,["H5030"]],[26,27,["H935"]],[27,28,["H413"]],[28,30,["H5892"]],[30,32,["H5594"]],[32,35,["H6912"]],[35,36,[]]]},{"k":9214,"v":[[0,3,["H5117","(H853)"]],[3,5,["H5038"]],[5,9,["H6913"]],[9,12,["H5594"]],[12,13,["H5921"]],[13,16,["H1945"]],[16,18,["H251"]]]},{"k":9215,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,9,["H6912"]],[9,13,["H559"]],[13,14,["H413"]],[14,16,["H1121"]],[16,17,["H559"]],[17,21,["H4191"]],[21,23,["H6912"]],[23,27,["H6913"]],[27,28,["H834"]],[28,30,["H376"]],[30,32,["H430"]],[32,34,["H6912"]],[34,35,["H5117","(H853)"]],[35,37,["H6106"]],[37,38,["H681"]],[38,40,["H6106"]]]},{"k":9216,"v":[[0,1,["H3588"]],[1,3,["H1697"]],[3,4,["H834"]],[4,6,["H7121"]],[6,9,["H1697"]],[9,12,["H3068"]],[12,13,["H5921"]],[13,15,["H4196"]],[15,17,["H1008"]],[17,19,["H5921"]],[19,20,["H3605"]],[20,22,["H1004"]],[22,26,["H1116"]],[26,27,["H834"]],[27,31,["H5892"]],[31,33,["H8111"]],[33,38,["H1961","H1961"]]]},{"k":9217,"v":[[0,1,["H310"]],[1,2,["H2088"]],[2,3,["H1697"]],[3,4,["H3379"]],[4,5,["H7725"]],[5,6,["H3808"]],[6,10,["H4480","H1870","H7451"]],[10,12,["H6213"]],[12,13,["H7725"]],[13,16,["H4480","H7098"]],[16,19,["H5971"]],[19,20,["H3548"]],[20,24,["H1116"]],[24,26,["H2655"]],[26,28,["H4390","(H853)","H3027"]],[28,32,["H1961"]],[32,36,["H3548"]],[36,40,["H1116"]]]},{"k":9218,"v":[[0,2,["H2088"]],[2,3,["H1697"]],[3,4,["H1961"]],[4,5,["H2403"]],[5,8,["H1004"]],[8,10,["H3379"]],[10,15,["H3582"]],[15,18,["H8045"]],[18,21,["H4480","H5921"]],[21,23,["H6440"]],[23,26,["H127"]]]},{"k":9219,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,4,["H29"]],[4,6,["H1121"]],[6,8,["H3379"]],[8,10,["H2470"]]]},{"k":9220,"v":[[0,2,["H3379"]],[2,3,["H559"]],[3,6,["H802"]],[6,7,["H6965"]],[7,10,["H4994"]],[10,13,["H8138"]],[13,14,["H3588"]],[14,15,["H859"]],[15,17,["H3808"]],[17,18,["H3045"]],[18,22,["H802"]],[22,24,["H3379"]],[24,26,["H1980"]],[26,29,["H7887"]],[29,30,["H2009"]],[30,31,["H8033"]],[31,33,["H281"]],[33,35,["H5030"]],[35,36,["H1931"]],[36,37,["H1696","H5921"]],[37,43,["H4428"]],[43,44,["H5921"]],[44,45,["H2088"]],[45,46,["H5971"]]]},{"k":9221,"v":[[0,2,["H3947"]],[2,3,["H3027"]],[3,5,["H6235"]],[5,6,["H3899"]],[6,8,["H5350"]],[8,11,["H1228"]],[11,13,["H1706"]],[13,15,["H935"]],[15,16,["H413"]],[16,18,["H1931"]],[18,20,["H5046"]],[20,22,["H4100"]],[22,24,["H1961"]],[24,27,["H5288"]]]},{"k":9222,"v":[[0,2,["H3379"]],[2,3,["H802"]],[3,4,["H6213"]],[4,5,["H3651"]],[5,7,["H6965"]],[7,9,["H1980"]],[9,11,["H7887"]],[11,13,["H935"]],[13,16,["H1004"]],[16,18,["H281"]],[18,20,["H281"]],[20,21,["H3201"]],[21,22,["H3808"]],[22,23,["H7200"]],[23,24,["H3588"]],[24,26,["H5869"]],[26,28,["H6965"]],[28,33,["H4480","H7869"]]]},{"k":9223,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H281"]],[6,7,["H2009"]],[7,9,["H802"]],[9,11,["H3379"]],[11,12,["H935"]],[12,14,["H1875"]],[14,16,["H1697"]],[16,17,["H4480","H5973"]],[17,19,["H413"]],[19,21,["H1121"]],[21,22,["H3588"]],[22,23,["H1931"]],[23,25,["H2470"]],[25,26,["H2090"]],[26,28,["H2088"]],[28,31,["H1696"]],[31,32,["H413"]],[32,37,["H1961"]],[37,41,["H935"]],[41,43,["H1931"]],[43,49,["H5234"]],[49,50,["H5234"]]]},{"k":9224,"v":[[0,3,["H1961"]],[3,6,["H281"]],[6,7,["H8085","(H853)"]],[7,9,["H6963"]],[9,12,["H7272"]],[12,16,["H935"]],[16,19,["H6607"]],[19,22,["H559"]],[22,24,["H935"]],[24,26,["H802"]],[26,28,["H3379"]],[28,29,["H4100","H2088"]],[29,35,["H5234","H859"]],[35,37,["H595"]],[37,39,["H7971"]],[39,40,["H413"]],[40,43,["H7186"]],[43,44,[]]]},{"k":9225,"v":[[0,1,["H1980"]],[1,2,["H559"]],[2,3,["H3379"]],[3,4,["H3541"]],[4,5,["H559"]],[5,7,["H3068"]],[7,8,["H430"]],[8,10,["H3478"]],[10,11,["H3282","H834"]],[11,14,["H7311"]],[14,17,["H4480","H8432"]],[17,19,["H5971"]],[19,21,["H5414"]],[21,23,["H5057"]],[23,24,["H5921"]],[24,26,["H5971"]],[26,27,["H3478"]]]},{"k":9226,"v":[[0,2,["H7167","(H853)"]],[2,4,["H4467"]],[4,8,["H4480","H1004"]],[8,10,["H1732"]],[10,12,["H5414"]],[12,19,["H3808"]],[19,20,["H1961"]],[20,23,["H5650"]],[23,24,["H1732"]],[24,25,["H834"]],[25,26,["H8104"]],[26,28,["H4687"]],[28,30,["H834"]],[30,31,["H1980","H310"]],[31,34,["H3605"]],[34,36,["H3824"]],[36,38,["H6213"]],[38,40,["H7535"]],[40,43,["H3477"]],[43,46,["H5869"]]]},{"k":9227,"v":[[0,3,["H6213"]],[3,4,["H7489"]],[4,6,["H4480","H3605"]],[6,7,["H834"]],[7,8,["H1961"]],[8,9,["H6440"]],[9,14,["H1980"]],[14,16,["H6213"]],[16,18,["H312"]],[18,19,["H430"]],[19,22,["H4541"]],[22,27,["H3707"]],[27,30,["H7993"]],[30,32,["H310"]],[32,34,["H1458"]]]},{"k":9228,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,5,["H935"]],[5,6,["H7451"]],[6,7,["H413"]],[7,9,["H1004"]],[9,11,["H3379"]],[11,15,["H3772"]],[15,17,["H3379"]],[17,20,["H8366"]],[20,23,["H7023"]],[23,29,["H6113"]],[29,31,["H5800"]],[31,33,["H3478"]],[33,37,["H1197"]],[37,39,["H310"]],[39,42,["H1004"]],[42,44,["H3379"]],[44,45,["H834"]],[45,49,["H1197"]],[49,50,["H1557"]],[50,51,["H5704"]],[51,55,["H8552"]]]},{"k":9229,"v":[[0,3,["H4191"]],[3,5,["H3379"]],[5,8,["H5892"]],[8,11,["H3611"]],[11,12,["H398"]],[12,16,["H4191"]],[16,19,["H7704"]],[19,22,["H5775"]],[22,25,["H8064"]],[25,26,["H398"]],[26,27,["H3588"]],[27,29,["H3068"]],[29,31,["H1696"]],[31,32,[]]]},{"k":9230,"v":[[0,1,["H6965"]],[1,2,["H859"]],[2,4,["H1980"]],[4,9,["H1004"]],[9,13,["H7272"]],[13,14,["H935"]],[14,17,["H5892"]],[17,19,["H3206"]],[19,21,["H4191"]]]},{"k":9231,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,5,["H5594"]],[5,9,["H6912"]],[9,11,["H3588","H2088"]],[11,13,["H905"]],[13,15,["H3379"]],[15,17,["H935"]],[17,18,["H413"]],[18,20,["H6913"]],[20,21,["H3282"]],[21,26,["H4672"]],[26,28,["H2896"]],[28,29,["H1697"]],[29,30,["H413"]],[30,32,["H3068"]],[32,33,["H430"]],[33,35,["H3478"]],[35,38,["H1004"]],[38,40,["H3379"]]]},{"k":9232,"v":[[0,3,["H3068"]],[3,7,["H6965"]],[7,9,["H4428"]],[9,10,["H5921"]],[10,11,["H3478"]],[11,12,["H834"]],[12,15,["H3772","(H853)"]],[15,17,["H1004"]],[17,19,["H3379"]],[19,20,["H2088"]],[20,21,["H3117"]],[21,23,["H4100"]],[23,24,["H1571"]],[24,25,["H6258"]]]},{"k":9233,"v":[[0,3,["H3068"]],[3,5,["H5221","(H853)"]],[5,6,["H3478"]],[6,7,["H834"]],[7,9,["H7070"]],[9,11,["H5110"]],[11,14,["H4325"]],[14,19,["H5428","(H853)"]],[19,20,["H3478"]],[20,22,["H4480","H5921"]],[22,23,["H2063"]],[23,24,["H2896"]],[24,25,["H127"]],[25,26,["H834"]],[26,28,["H5414"]],[28,31,["H1"]],[31,34,["H2219"]],[34,36,["H4480","H5676"]],[36,38,["H5104"]],[38,39,["H3282","H834"]],[39,42,["H6213","(H853)"]],[42,44,["H842"]],[44,49,["H3707","(H853)","H3068"]]]},{"k":9234,"v":[[0,6,["H5414","(H853)","H3478"]],[6,7,["H1558"]],[7,10,["H2403"]],[10,12,["H3379"]],[12,13,["H834"]],[13,15,["H2398"]],[15,17,["H834"]],[17,21,["H2398","(H853)","H3478"]]]},{"k":9235,"v":[[0,2,["H3379"]],[2,3,["H802"]],[3,4,["H6965"]],[4,6,["H1980"]],[6,8,["H935"]],[8,10,["H8656"]],[10,13,["H1931"]],[13,14,["H935"]],[14,17,["H5592"]],[17,20,["H1004"]],[20,22,["H5288"]],[22,23,["H4191"]]]},{"k":9236,"v":[[0,3,["H6912"]],[3,6,["H3605"]],[6,7,["H3478"]],[7,8,["H5594"]],[8,14,["H1697"]],[14,17,["H3068"]],[17,18,["H834"]],[18,20,["H1696"]],[20,23,["H3027"]],[23,26,["H5650"]],[26,27,["H281"]],[27,29,["H5030"]]]},{"k":9237,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3379"]],[8,9,["H834"]],[9,11,["H3898"]],[11,13,["H834"]],[13,15,["H4427"]],[15,16,["H2009"]],[16,19,["H3789"]],[19,20,["H5921"]],[20,22,["H5612"]],[22,25,["H1697","H3117"]],[25,28,["H4428"]],[28,30,["H3478"]]]},{"k":9238,"v":[[0,3,["H3117"]],[3,4,["H834"]],[4,5,["H3379"]],[5,6,["H4427"]],[6,8,["H8147"]],[8,10,["H6242"]],[10,11,["H8141"]],[11,14,["H7901"]],[14,15,["H5973"]],[15,17,["H1"]],[17,19,["H5070"]],[19,21,["H1121"]],[21,22,["H4427"]],[22,25,["H8478"]]]},{"k":9239,"v":[[0,2,["H7346"]],[2,4,["H1121"]],[4,6,["H8010"]],[6,7,["H4427"]],[7,9,["H3063"]],[9,10,["H7346"]],[10,12,["H705"]],[12,14,["H259"]],[14,15,["H8141"]],[15,16,["H1121"]],[16,21,["H4427"]],[21,24,["H4427"]],[24,25,["H7651","H6240"]],[25,26,["H8141"]],[26,28,["H3389"]],[28,30,["H5892"]],[30,31,["H834"]],[31,33,["H3068"]],[33,35,["H977"]],[35,38,["H4480","H3605"]],[38,40,["H7626"]],[40,42,["H3478"]],[42,44,["H7760","(H853)"]],[44,46,["H8034"]],[46,47,["H8033"]],[47,50,["H517"]],[50,51,["H8034"]],[51,53,["H5279"]],[53,55,["H5984"]]]},{"k":9240,"v":[[0,2,["H3063"]],[2,3,["H6213"]],[3,4,["H7451"]],[4,7,["H5869"]],[7,10,["H3068"]],[10,16,["H7065","(H853)"]],[16,19,["H2403"]],[19,20,["H834"]],[20,23,["H2398"]],[23,25,["H4480","H3605"]],[25,26,["H834"]],[26,28,["H1"]],[28,30,["H6213"]]]},{"k":9241,"v":[[0,2,["H1992"]],[2,3,["H1571"]],[3,4,["H1129"]],[4,7,["H1116"]],[7,9,["H4676"]],[9,11,["H842"]],[11,12,["H5921"]],[12,13,["H3605"]],[13,14,["H1364"]],[14,15,["H1389"]],[15,17,["H8478"]],[17,18,["H3605"]],[18,19,["H7488"]],[19,20,["H6086"]]]},{"k":9242,"v":[[0,3,["H1961"]],[3,4,["H1571"]],[4,5,["H6945"]],[5,8,["H776"]],[8,11,["H6213"]],[11,14,["H3605"]],[14,16,["H8441"]],[16,19,["H1471"]],[19,20,["H834"]],[20,22,["H3068"]],[22,24,["H3423"]],[24,25,["H4480","H6440"]],[25,27,["H1121"]],[27,29,["H3478"]]]},{"k":9243,"v":[[0,5,["H1961"]],[5,8,["H2549"]],[8,9,["H8141"]],[9,11,["H4428"]],[11,12,["H7346"]],[12,14,["H7895"]],[14,15,["H4428"]],[15,17,["H4714"]],[17,19,["H5927"]],[19,20,["H5921"]],[20,21,["H3389"]]]},{"k":9244,"v":[[0,4,["H3947","(H853)"]],[4,6,["H214"]],[6,9,["H1004"]],[9,12,["H3068"]],[12,15,["H214"]],[15,18,["H4428"]],[18,19,["H1004"]],[19,23,["H3947"]],[23,24,["H3605"]],[24,28,["H3947","(H853)"]],[28,29,["H3605"]],[29,31,["H4043"]],[31,33,["H2091"]],[33,34,["H834"]],[34,35,["H8010"]],[35,37,["H6213"]]]},{"k":9245,"v":[[0,2,["H4428"]],[2,3,["H7346"]],[3,4,["H6213"]],[4,7,["H8478"]],[7,8,["H5178"]],[8,9,["H4043"]],[9,11,["H6485"]],[11,13,["H5921"]],[13,15,["H3027"]],[15,18,["H8269"]],[18,21,["H7323"]],[21,23,["H8104"]],[23,25,["H6607"]],[25,28,["H4428"]],[28,29,["H1004"]]]},{"k":9246,"v":[[0,3,["H1961"]],[3,5,["H4480","H1767"]],[5,7,["H4428"]],[7,8,["H935"]],[8,11,["H1004"]],[11,14,["H3068"]],[14,17,["H7323"]],[17,18,["H5375"]],[18,23,["H7725"]],[23,24,["H413"]],[24,26,["H7323"]],[26,27,["H8372"]]]},{"k":9247,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H7346"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3063"]]]},{"k":9248,"v":[[0,3,["H1961"]],[3,4,["H4421"]],[4,5,["H996"]],[5,6,["H7346"]],[6,8,["H3379"]],[8,9,["H3605"]],[9,11,["H3117"]]]},{"k":9249,"v":[[0,2,["H7346"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,10,["H5973"]],[10,12,["H1"]],[12,15,["H5892"]],[15,17,["H1732"]],[17,20,["H517"]],[20,21,["H8034"]],[21,23,["H5279"]],[23,25,["H5984"]],[25,27,["H38"]],[27,29,["H1121"]],[29,30,["H4427"]],[30,33,["H8478"]]]},{"k":9250,"v":[[0,4,["H8083","H6240"]],[4,5,["H8141"]],[5,7,["H4428"]],[7,8,["H3379"]],[8,10,["H1121"]],[10,12,["H5028"]],[12,13,["H4427"]],[13,14,["H38"]],[14,15,["H5921"]],[15,16,["H3063"]]]},{"k":9251,"v":[[0,1,["H7969"]],[1,2,["H8141"]],[2,3,["H4427"]],[3,6,["H3389"]],[6,9,["H517"]],[9,10,["H8034"]],[10,12,["H4601"]],[12,14,["H1323"]],[14,16,["H53"]]]},{"k":9252,"v":[[0,3,["H1980"]],[3,5,["H3605"]],[5,7,["H2403"]],[7,10,["H1"]],[10,11,["H834"]],[11,14,["H6213"]],[14,15,["H6440"]],[15,19,["H3824"]],[19,20,["H1961"]],[20,21,["H3808"]],[21,22,["H8003"]],[22,23,["H5973"]],[23,25,["H3068"]],[25,27,["H430"]],[27,30,["H3824"]],[30,32,["H1732"]],[32,34,["H1"]]]},{"k":9253,"v":[[0,1,["H3588"]],[1,4,["H4616","H1732"]],[4,7,["H3068"]],[7,9,["H430"]],[9,10,["H5414"]],[10,13,["H5216"]],[13,15,["H3389"]],[15,18,["H6965","(H853)"]],[18,20,["H1121"]],[20,21,["H310"]],[21,25,["H5975","(H853)"]],[25,26,["H3389"]]]},{"k":9254,"v":[[0,1,["H834"]],[1,2,["H1732"]],[2,3,["H6213"]],[3,6,["(H853)"]],[6,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,17,["H3808","H5493"]],[17,19,["H4480","H3605"]],[19,21,["H834"]],[21,23,["H6680"]],[23,25,["H3605"]],[25,27,["H3117"]],[27,30,["H2416"]],[30,32,["H7535"]],[32,35,["H1697"]],[35,37,["H223"]],[37,39,["H2850"]]]},{"k":9255,"v":[[0,3,["H1961"]],[3,4,["H4421"]],[4,5,["H996"]],[5,6,["H7346"]],[6,8,["H3379"]],[8,9,["H3605"]],[9,11,["H3117"]],[11,14,["H2416"]]]},{"k":9256,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H38"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3063"]],[28,31,["H1961"]],[31,32,["H4421"]],[32,33,["H996"]],[33,34,["H38"]],[34,36,["H3379"]]]},{"k":9257,"v":[[0,2,["H38"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,13,["H5892"]],[13,15,["H1732"]],[15,17,["H609"]],[17,19,["H1121"]],[19,20,["H4427"]],[20,23,["H8478"]]]},{"k":9258,"v":[[0,4,["H6242"]],[4,5,["H8141"]],[5,7,["H3379"]],[7,8,["H4428"]],[8,10,["H3478"]],[10,11,["H4427","H4428"]],[11,12,["H609"]],[12,14,["H3063"]]]},{"k":9259,"v":[[0,2,["H705"]],[2,4,["H259"]],[4,5,["H8141"]],[5,6,["H4427"]],[6,9,["H3389"]],[9,12,["H517"]],[12,13,["H8034"]],[13,15,["H4601"]],[15,17,["H1323"]],[17,19,["H53"]]]},{"k":9260,"v":[[0,2,["H609"]],[2,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H1732"]],[16,18,["H1"]]]},{"k":9261,"v":[[0,4,["H5674"]],[4,6,["H6945"]],[6,8,["H4480"]],[8,10,["H776"]],[10,12,["H5493","(H853)"]],[12,13,["H3605"]],[13,15,["H1544"]],[15,16,["H834"]],[16,18,["H1"]],[18,20,["H6213"]]]},{"k":9262,"v":[[0,2,["H1571","(H853)"]],[2,3,["H4601"]],[3,5,["H517"]],[5,9,["H5493"]],[9,12,["H4480","H1377"]],[12,13,["H834"]],[13,16,["H6213"]],[16,18,["H4656"]],[18,21,["H842"]],[21,23,["H609"]],[23,24,["H3772","(H853)"]],[24,26,["H4656"]],[26,28,["H8313"]],[28,32,["H5158"]],[32,33,["H6939"]]]},{"k":9263,"v":[[0,4,["H1116"]],[4,6,["H3808"]],[6,7,["H5493"]],[7,8,["H7535"]],[8,9,["H609"]],[9,10,["H3824"]],[10,11,["H1961"]],[11,12,["H8003"]],[12,13,["H5973"]],[13,15,["H3068"]],[15,16,["H3605"]],[16,18,["H3117"]]]},{"k":9264,"v":[[0,4,["H935","(H853)"]],[4,9,["H1"]],[9,11,["H6944"]],[11,18,["H6944"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,25,["H3701"]],[25,27,["H2091"]],[27,29,["H3627"]]]},{"k":9265,"v":[[0,3,["H1961"]],[3,4,["H4421"]],[4,5,["H996"]],[5,6,["H609"]],[6,8,["H1201"]],[8,9,["H4428"]],[9,11,["H3478"]],[11,12,["H3605"]],[12,14,["H3117"]]]},{"k":9266,"v":[[0,2,["H1201"]],[2,3,["H4428"]],[3,5,["H3478"]],[5,7,["H5927"]],[7,8,["H5921"]],[8,9,["H3063"]],[9,11,["H1129","(H853)"]],[11,12,["H7414"]],[12,16,["H1115"]],[16,17,["H5414"]],[17,21,["H3318"]],[21,24,["H935"]],[24,26,["H609"]],[26,27,["H4428"]],[27,29,["H3063"]]]},{"k":9267,"v":[[0,2,["H609"]],[2,3,["H3947","(H853)"]],[3,4,["H3605"]],[4,6,["H3701"]],[6,9,["H2091"]],[9,12,["H3498"]],[12,15,["H214"]],[15,18,["H1004"]],[18,21,["H3068"]],[21,24,["H214"]],[24,27,["H4428"]],[27,28,["H1004"]],[28,30,["H5414"]],[30,34,["H3027"]],[34,37,["H5650"]],[37,39,["H4428"]],[39,40,["H609"]],[40,41,["H7971"]],[41,43,["H413"]],[43,44,["H1130"]],[44,46,["H1121"]],[46,48,["H2886"]],[48,50,["H1121"]],[50,52,["H2383"]],[52,53,["H4428"]],[53,55,["H758"]],[55,57,["H3427"]],[57,59,["H1834"]],[59,60,["H559"]]]},{"k":9268,"v":[[0,4,["H1285"]],[4,5,["H996"]],[5,10,["H996"]],[10,12,["H1"]],[12,15,["H1"]],[15,16,["H2009"]],[16,19,["H7971"]],[19,23,["H7810"]],[23,25,["H3701"]],[25,27,["H2091"]],[27,28,["H1980"]],[28,30,["H6565","(H853)"]],[30,32,["H1285"]],[32,33,["H854"]],[33,34,["H1201"]],[34,35,["H4428"]],[35,37,["H3478"]],[37,41,["H5927"]],[41,42,["H4480","H5921"]],[42,43,[]]]},{"k":9269,"v":[[0,2,["H1130"]],[2,3,["H8085"]],[3,4,["H413"]],[4,5,["H4428"]],[5,6,["H609"]],[6,8,["H7971","(H853)"]],[8,10,["H8269"]],[10,13,["H2428"]],[13,14,["H834"]],[14,17,["H5921"]],[17,19,["H5892"]],[19,21,["H3478"]],[21,23,["H5221","(H853)"]],[23,24,["H5859"]],[24,26,["H1835"]],[26,28,["H62"]],[28,30,["H3605"]],[30,31,["H3672"]],[31,32,["H5921"]],[32,33,["H3605"]],[33,35,["H776"]],[35,37,["H5321"]]]},{"k":9270,"v":[[0,5,["H1961"]],[5,7,["H1201"]],[7,8,["H8085"]],[8,13,["H2308"]],[13,14,["H4480","H1129"]],[14,15,["(H853)"]],[15,16,["H7414"]],[16,18,["H3427"]],[18,20,["H8656"]]]},{"k":9271,"v":[[0,2,["H4428"]],[2,3,["H609"]],[3,6,["H8085"]],[6,7,["(H853)"]],[7,8,["H3605"]],[8,9,["H3063"]],[9,10,["H369"]],[10,12,["H5355"]],[12,16,["H5375","(H853)"]],[16,18,["H68"]],[18,20,["H7414"]],[20,23,["H6086"]],[23,25,["H834"]],[25,26,["H1201"]],[26,28,["H1129"]],[28,30,["H4428"]],[30,31,["H609"]],[31,32,["H1129"]],[32,34,["(H853)"]],[34,35,["H1387"]],[35,37,["H1144"]],[37,39,["H4709"]]]},{"k":9272,"v":[[0,2,["H3499"]],[2,4,["H3605"]],[4,6,["H1697"]],[6,8,["H609"]],[8,10,["H3605"]],[10,12,["H1369"]],[12,14,["H3605"]],[14,15,["H834"]],[15,17,["H6213"]],[17,20,["H5892"]],[20,21,["H834"]],[21,23,["H1129"]],[23,25,["H1992"]],[25,26,["H3808"]],[26,27,["H3789"]],[27,28,["H5921"]],[28,30,["H5612"]],[30,33,["H1697","H3117"]],[33,36,["H4428"]],[36,38,["H3063"]],[38,39,["H7535"]],[39,42,["H6256"]],[42,46,["H2209"]],[46,49,["H2470"]],[49,50,["(H853)"]],[50,52,["H7272"]]]},{"k":9273,"v":[[0,2,["H609"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,10,["H5973"]],[10,12,["H1"]],[12,15,["H5892"]],[15,17,["H1732"]],[17,19,["H1"]],[19,21,["H3092"]],[21,23,["H1121"]],[23,24,["H4427"]],[24,27,["H8478"]]]},{"k":9274,"v":[[0,2,["H5070"]],[2,4,["H1121"]],[4,6,["H3379"]],[6,9,["H4427"]],[9,10,["H5921"]],[10,11,["H3478"]],[11,14,["H8147"]],[14,15,["H8141"]],[15,17,["H609"]],[17,18,["H4428"]],[18,20,["H3063"]],[20,22,["H4427"]],[22,23,["H5921"]],[23,24,["H3478"]],[24,26,["H8141"]]]},{"k":9275,"v":[[0,3,["H6213"]],[3,4,["H7451"]],[4,7,["H5869"]],[7,10,["H3068"]],[10,12,["H1980"]],[12,15,["H1870"]],[15,18,["H1"]],[18,22,["H2403"]],[22,23,["H834"]],[23,28,["H2398","(H853)","H3478"]]]},{"k":9276,"v":[[0,2,["H1201"]],[2,4,["H1121"]],[4,6,["H281"]],[6,9,["H1004"]],[9,11,["H3485"]],[11,12,["H7194"]],[12,13,["H5921"]],[13,16,["H1201"]],[16,17,["H5221"]],[17,20,["H1405"]],[20,21,["H834"]],[21,25,["H6430"]],[25,27,["H5070"]],[27,29,["H3605"]],[29,30,["H3478"]],[30,32,["H6696"]],[32,33,["H5921"]],[33,34,["H1405"]]]},{"k":9277,"v":[[0,4,["H7969"]],[4,5,["H8141"]],[5,7,["H609"]],[7,8,["H4428"]],[8,10,["H3063"]],[10,12,["H1201"]],[12,13,["H4191"]],[13,16,["H4427"]],[16,19,["H8478"]]]},{"k":9278,"v":[[0,5,["H1961"]],[5,8,["H4427"]],[8,11,["H5221","(H853)"]],[11,12,["H3605"]],[12,14,["H1004"]],[14,16,["H3379"]],[16,18,["H7604"]],[18,19,["H3808"]],[19,21,["H3379"]],[21,22,["H3605"]],[22,24,["H5397"]],[24,25,["H5704"]],[25,28,["H8045"]],[28,33,["H1697"]],[33,36,["H3068"]],[36,37,["H834"]],[37,39,["H1696"]],[39,40,["H3027"]],[40,42,["H5650"]],[42,43,["H281"]],[43,45,["H7888"]]]},{"k":9279,"v":[[0,1,["H5921"]],[1,4,["H2403"]],[4,6,["H3379"]],[6,7,["H834"]],[7,9,["H2398"]],[9,11,["H834"]],[11,15,["H2398","(H853)","H3478"]],[15,18,["H3708"]],[18,19,["H834"]],[19,21,["H3707","(H853)"]],[21,23,["H3068"]],[23,24,["H430"]],[24,26,["H3478"]],[26,28,[]]]},{"k":9280,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H5070"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3478"]]]},{"k":9281,"v":[[0,3,["H1961"]],[3,4,["H4421"]],[4,5,["H996"]],[5,6,["H609"]],[6,8,["H1201"]],[8,9,["H4428"]],[9,11,["H3478"]],[11,12,["H3605"]],[12,14,["H3117"]]]},{"k":9282,"v":[[0,3,["H7969"]],[3,4,["H8141"]],[4,6,["H609"]],[6,7,["H4428"]],[7,9,["H3063"]],[9,11,["H1201"]],[11,13,["H1121"]],[13,15,["H281"]],[15,17,["H4427"]],[17,18,["H5921"]],[18,19,["H3605"]],[19,20,["H3478"]],[20,22,["H8656"]],[22,23,["H6242"]],[23,25,["H702"]],[25,26,["H8141"]]]},{"k":9283,"v":[[0,3,["H6213"]],[3,4,["H7451"]],[4,7,["H5869"]],[7,10,["H3068"]],[10,12,["H1980"]],[12,15,["H1870"]],[15,17,["H3379"]],[17,21,["H2403"]],[21,22,["H834"]],[22,27,["H2398","(H853)","H3478"]]]},{"k":9284,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3058"]],[9,11,["H1121"]],[11,13,["H2607"]],[13,14,["H5921"]],[14,15,["H1201"]],[15,16,["H559"]]]},{"k":9285,"v":[[0,1,["H3282","H834"]],[1,4,["H7311"]],[4,7,["H4480"]],[7,9,["H6083"]],[9,11,["H5414"]],[11,13,["H5057"]],[13,14,["H5921"]],[14,16,["H5971"]],[16,17,["H3478"]],[17,21,["H1980"]],[21,24,["H1870"]],[24,26,["H3379"]],[26,29,["(H853)"]],[29,31,["H5971"]],[31,32,["H3478"]],[32,34,["H2398"]],[34,39,["H3707"]],[39,42,["H2403"]]]},{"k":9286,"v":[[0,1,["H2009"]],[1,5,["H1197"]],[5,7,["H310"]],[7,9,["H1201"]],[9,12,["H310"]],[12,15,["H1004"]],[15,18,["H5414","(H853)"]],[18,20,["H1004"]],[20,23,["H1004"]],[23,25,["H3379"]],[25,27,["H1121"]],[27,29,["H5028"]]]},{"k":9287,"v":[[0,3,["H4191"]],[3,5,["H1201"]],[5,8,["H5892"]],[8,11,["H3611"]],[11,12,["H398"]],[12,16,["H4191"]],[16,21,["H7704"]],[21,24,["H5775"]],[24,27,["H8064"]],[27,28,["H398"]]]},{"k":9288,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H1201"]],[8,10,["H834"]],[10,12,["H6213"]],[12,15,["H1369"]],[15,17,["H1992"]],[17,18,["H3808"]],[18,19,["H3789"]],[19,20,["H5921"]],[20,22,["H5612"]],[22,25,["H1697","H3117"]],[25,28,["H4428"]],[28,30,["H3478"]]]},{"k":9289,"v":[[0,2,["H1201"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,11,["H8656"]],[11,13,["H425"]],[13,15,["H1121"]],[15,16,["H4427"]],[16,19,["H8478"]]]},{"k":9290,"v":[[0,2,["H1571"]],[2,5,["H3027"]],[5,8,["H5030"]],[8,9,["H3058"]],[9,11,["H1121"]],[11,13,["H2607"]],[13,14,["H1961"]],[14,16,["H1697"]],[16,19,["H3068"]],[19,20,["H413"]],[20,21,["H1201"]],[21,23,["H413"]],[23,25,["H1004"]],[25,27,["H5921"]],[27,28,["H3605"]],[28,30,["H7451"]],[30,31,["H834"]],[31,33,["H6213"]],[33,36,["H5869"]],[36,39,["H3068"]],[39,44,["H3707"]],[44,47,["H4639"]],[47,50,["H3027"]],[50,52,["H1961"]],[52,55,["H1004"]],[55,57,["H3379"]],[57,59,["H5921","H834"]],[59,61,["H5221"]],[61,62,[]]]},{"k":9291,"v":[[0,3,["H6242"]],[3,5,["H8337"]],[5,6,["H8141"]],[6,8,["H609"]],[8,9,["H4428"]],[9,11,["H3063"]],[11,13,["H425"]],[13,15,["H1121"]],[15,17,["H1201"]],[17,19,["H4427"]],[19,20,["H5921"]],[20,21,["H3478"]],[21,23,["H8656"]],[23,25,["H8141"]]]},{"k":9292,"v":[[0,3,["H5650"]],[3,4,["H2174"]],[4,5,["H8269"]],[5,7,["H4276"]],[7,9,["H7393"]],[9,10,["H7194"]],[10,11,["H5921"]],[11,14,["H1931"]],[14,17,["H8656"]],[17,18,["H8354"]],[18,20,["H7910"]],[20,23,["H1004"]],[23,25,["H777"]],[25,26,["H5921"]],[26,29,["H1004"]],[29,31,["H8656"]]]},{"k":9293,"v":[[0,2,["H2174"]],[2,4,["H935"]],[4,6,["H5221"]],[6,9,["H4191"]],[9,13,["H6242"]],[13,15,["H7651"]],[15,16,["H8141"]],[16,18,["H609"]],[18,19,["H4428"]],[19,21,["H3063"]],[21,23,["H4427"]],[23,26,["H8478"]]]},{"k":9294,"v":[[0,5,["H1961"]],[5,10,["H4427"]],[10,15,["H3427"]],[15,16,["H5921"]],[16,18,["H3678"]],[18,21,["H5221","(H853)"]],[21,22,["H3605"]],[22,24,["H1004"]],[24,26,["H1201"]],[26,28,["H7604"]],[28,30,["H3808"]],[30,33,["H8366"]],[33,36,["H7023"]],[36,40,["H1350"]],[40,44,["H7453"]]]},{"k":9295,"v":[[0,3,["H2174"]],[3,4,["H8045","(H853)"]],[4,5,["H3605"]],[5,7,["H1004"]],[7,9,["H1201"]],[9,13,["H1697"]],[13,16,["H3068"]],[16,17,["H834"]],[17,19,["H1696"]],[19,20,["H413"]],[20,21,["H1201"]],[21,22,["H3027"]],[22,23,["H3058"]],[23,25,["H5030"]]]},{"k":9296,"v":[[0,1,["H413"]],[1,2,["H3605"]],[2,4,["H2403"]],[4,6,["H1201"]],[6,9,["H2403"]],[9,11,["H425"]],[11,13,["H1121"]],[13,15,["H834"]],[15,17,["H2398"]],[17,20,["H834"]],[20,25,["H2398","(H853)","H3478"]],[25,27,["H3707","(H853)"]],[27,29,["H3068"]],[29,30,["H430"]],[30,32,["H3478"]],[32,37,["H1892"]]]},{"k":9297,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H425"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3478"]]]},{"k":9298,"v":[[0,3,["H6242"]],[3,5,["H7651"]],[5,6,["H8141"]],[6,8,["H609"]],[8,9,["H4428"]],[9,11,["H3063"]],[11,13,["H2174"]],[13,14,["H4427"]],[14,15,["H7651"]],[15,16,["H3117"]],[16,18,["H8656"]],[18,21,["H5971"]],[21,23,["H2583"]],[23,24,["H5921"]],[24,25,["H1405"]],[25,26,["H834"]],[26,30,["H6430"]]]},{"k":9299,"v":[[0,3,["H5971"]],[3,6,["H2583"]],[6,7,["H8085"]],[7,8,["H559"]],[8,9,["H2174"]],[9,11,["H7194"]],[11,14,["H1571"]],[14,15,["H5221","(H853)"]],[15,17,["H4428"]],[17,19,["H3605"]],[19,20,["H3478"]],[20,21,["(H853)"]],[21,22,["H6018"]],[22,24,["H8269"]],[24,27,["H6635"]],[27,28,["H4427"]],[28,29,["H5921"]],[29,30,["H3478"]],[30,31,["H1931"]],[31,32,["H3117"]],[32,35,["H4264"]]]},{"k":9300,"v":[[0,2,["H6018"]],[2,4,["H5927"]],[4,5,["H4480"]],[5,6,["H1405"]],[6,8,["H3605"]],[8,9,["H3478"]],[9,10,["H5973"]],[10,14,["H6696","H5921"]],[14,15,["H8656"]]]},{"k":9301,"v":[[0,5,["H1961"]],[5,7,["H2174"]],[7,8,["H7200"]],[8,9,["H3588"]],[9,11,["H5892"]],[11,13,["H3920"]],[13,16,["H935"]],[16,17,["H413"]],[17,19,["H759"]],[19,22,["H4428"]],[22,23,["H1004"]],[23,25,["H8313","(H853)"]],[25,27,["H4428"]],[27,28,["H1004"]],[28,29,["H5921"]],[29,32,["H784"]],[32,34,["H4191"]]]},{"k":9302,"v":[[0,1,["H5921"]],[1,3,["H2403"]],[3,4,["H834"]],[4,6,["H2398"]],[6,8,["H6213"]],[8,9,["H7451"]],[9,12,["H5869"]],[12,15,["H3068"]],[15,17,["H1980"]],[17,20,["H1870"]],[20,22,["H3379"]],[22,26,["H2403"]],[26,27,["H834"]],[27,29,["H6213"]],[29,34,["H2398","(H853)","H3478"]]]},{"k":9303,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H2174"]],[8,11,["H7195"]],[11,12,["H834"]],[12,14,["H7194"]],[14,16,["H1992"]],[16,17,["H3808"]],[17,18,["H3789"]],[18,19,["H5921"]],[19,21,["H5612"]],[21,24,["H1697","H3117"]],[24,27,["H4428"]],[27,29,["H3478"]]]},{"k":9304,"v":[[0,1,["H227"]],[1,4,["H5971"]],[4,6,["H3478"]],[6,7,["H2505"]],[7,10,["H2677"]],[10,11,["H2677"]],[11,14,["H5971"]],[14,15,["H1961","H310"]],[15,16,["H8402"]],[16,18,["H1121"]],[18,20,["H1527"]],[20,24,["H4427"]],[24,26,["H2677"]],[26,27,["H310"]],[27,28,["H6018"]]]},{"k":9305,"v":[[0,3,["H5971"]],[3,4,["H834"]],[4,5,["H310"]],[5,6,["H6018"]],[6,8,["H2388","(H853)"]],[8,10,["H5971"]],[10,11,["H834"]],[11,12,["H310"]],[12,13,["H8402"]],[13,15,["H1121"]],[15,17,["H1527"]],[17,19,["H8402"]],[19,20,["H4191"]],[20,22,["H6018"]],[22,23,["H4427"]]]},{"k":9306,"v":[[0,3,["H7970"]],[3,5,["H259"]],[5,6,["H8141"]],[6,8,["H609"]],[8,9,["H4428"]],[9,11,["H3063"]],[11,13,["H6018"]],[13,15,["H4427"]],[15,16,["H5921"]],[16,17,["H3478"]],[17,18,["H8147","H6240"]],[18,19,["H8141"]],[19,20,["H8337"]],[20,21,["H8141"]],[21,22,["H4427"]],[22,25,["H8656"]]]},{"k":9307,"v":[[0,3,["H7069","(H853)"]],[3,5,["H2022"]],[5,6,["H8111"]],[6,7,["H4480","H854"]],[7,8,["H8106"]],[8,11,["H3603"]],[11,13,["H3701"]],[13,16,["H1129","(H853)"]],[16,18,["H2022"]],[18,20,["H7121","(H853)"]],[20,22,["H8034"]],[22,25,["H5892"]],[25,26,["H834"]],[26,28,["H1129"]],[28,29,["H5921"]],[29,31,["H8034"]],[31,33,["H8106"]],[33,34,["H113"]],[34,37,["H2022"]],[37,38,["H8111"]]]},{"k":9308,"v":[[0,2,["H6018"]],[2,3,["H6213"]],[3,4,["H7451"]],[4,7,["H5869"]],[7,10,["H3068"]],[10,13,["H7489"]],[13,15,["H4480","H3605"]],[15,16,["H834"]],[16,18,["H6440"]],[18,19,[]]]},{"k":9309,"v":[[0,3,["H1980"]],[3,5,["H3605"]],[5,7,["H1870"]],[7,9,["H3379"]],[9,11,["H1121"]],[11,13,["H5028"]],[13,17,["H2403"]],[17,18,["H834"]],[18,23,["H2398","(H853)","H3478"]],[23,25,["H3707","(H853)"]],[25,27,["H3068"]],[27,28,["H430"]],[28,30,["H3478"]],[30,35,["H1892"]]]},{"k":9310,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H6018"]],[8,9,["H834"]],[9,11,["H6213"]],[11,14,["H1369"]],[14,15,["H834"]],[15,17,["H6213"]],[17,19,["H1992"]],[19,20,["H3808"]],[20,21,["H3789"]],[21,22,["H5921"]],[22,24,["H5612"]],[24,27,["H1697","H3117"]],[27,30,["H4428"]],[30,32,["H3478"]]]},{"k":9311,"v":[[0,2,["H6018"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,11,["H8111"]],[11,13,["H256"]],[13,15,["H1121"]],[15,16,["H4427"]],[16,19,["H8478"]]]},{"k":9312,"v":[[0,4,["H7970"]],[4,6,["H8083"]],[6,7,["H8141"]],[7,9,["H609"]],[9,10,["H4428"]],[10,12,["H3063"]],[12,14,["H256"]],[14,16,["H1121"]],[16,18,["H6018"]],[18,20,["H4427"]],[20,21,["H5921"]],[21,22,["H3478"]],[22,24,["H256"]],[24,26,["H1121"]],[26,28,["H6018"]],[28,29,["H4427"]],[29,30,["H5921"]],[30,31,["H3478"]],[31,33,["H8111"]],[33,34,["H6242"]],[34,36,["H8147"]],[36,37,["H8141"]]]},{"k":9313,"v":[[0,2,["H256"]],[2,4,["H1121"]],[4,6,["H6018"]],[6,7,["H6213"]],[7,8,["H7451"]],[8,11,["H5869"]],[11,14,["H3068"]],[14,16,["H4480","H3605"]],[16,17,["H834"]],[17,19,["H6440"]],[19,20,[]]]},{"k":9314,"v":[[0,5,["H1961"]],[5,13,["H7043"]],[13,17,["H1980"]],[17,20,["H2403"]],[20,22,["H3379"]],[22,24,["H1121"]],[24,26,["H5028"]],[26,29,["H3947"]],[29,31,["H802","(H853)"]],[31,32,["H348"]],[32,34,["H1323"]],[34,36,["H856"]],[36,37,["H4428"]],[37,40,["H6722"]],[40,42,["H1980"]],[42,44,["H5647","(H853)"]],[44,45,["H1168"]],[45,47,["H7812"]],[47,48,[]]]},{"k":9315,"v":[[0,4,["H6965"]],[4,6,["H4196"]],[6,8,["H1168"]],[8,11,["H1004"]],[11,13,["H1168"]],[13,14,["H834"]],[14,17,["H1129"]],[17,19,["H8111"]]]},{"k":9316,"v":[[0,2,["H256"]],[2,3,["H6213","(H853)"]],[3,5,["H842"]],[5,7,["H256"]],[7,8,["H6213"]],[8,9,["H3254"]],[9,11,["H3707","(H853)"]],[11,13,["H3068"]],[13,14,["H430"]],[14,16,["H3478"]],[16,20,["H4480","H3605"]],[20,22,["H4428"]],[22,24,["H3478"]],[24,25,["H834"]],[25,26,["H1961"]],[26,27,["H6440"]],[27,28,[]]]},{"k":9317,"v":[[0,3,["H3117"]],[3,5,["H2419"]],[5,7,["H1017"]],[7,8,["H1129","(H853)"]],[8,9,["H3405"]],[9,13,["H3245"]],[13,16,["H48"]],[16,18,["H1060"]],[18,21,["H5324"]],[21,23,["H1817"]],[23,27,["H6810"]],[27,29,["H7687"]],[29,33,["H1697"]],[33,36,["H3068"]],[36,37,["H834"]],[37,39,["H1696"]],[39,40,["H3027"]],[40,41,["H3091"]],[41,43,["H1121"]],[43,45,["H5126"]]]},{"k":9318,"v":[[0,2,["H452"]],[2,4,["H8664"]],[4,9,["H4480","H8453"]],[9,11,["H1568"]],[11,12,["H559"]],[12,13,["H413"]],[13,14,["H256"]],[14,17,["H3068"]],[17,18,["H430"]],[18,20,["H3478"]],[20,21,["H2416"]],[21,22,["H6440"]],[22,23,["H834"]],[23,25,["H5975"]],[25,28,["H518"]],[28,29,["H1961"]],[29,30,["H2919"]],[30,32,["H4306"]],[32,33,["H428"]],[33,34,["H8141"]],[34,35,["H3588","H518"]],[35,36,["H6310"]],[36,39,["H1697"]]]},{"k":9319,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":9320,"v":[[0,1,["H1980"]],[1,3,["H4480","H2088"]],[3,5,["H6437"]],[5,7,["H6924"]],[7,10,["H5641"]],[10,13,["H5158"]],[13,14,["H3747"]],[14,15,["H834"]],[15,17,["H5921","H6440"]],[17,18,["H3383"]]]},{"k":9321,"v":[[0,4,["H1961"]],[4,8,["H8354"]],[8,11,["H4480","H5158"]],[11,15,["H6680"]],[15,17,["H6158"]],[17,19,["H3557"]],[19,21,["H8033"]]]},{"k":9322,"v":[[0,3,["H1980"]],[3,5,["H6213"]],[5,9,["H1697"]],[9,12,["H3068"]],[12,15,["H1980"]],[15,17,["H3427"]],[17,20,["H5158"]],[20,21,["H3747"]],[21,22,["H834"]],[22,24,["H5921","H6440"]],[24,25,["H3383"]]]},{"k":9323,"v":[[0,3,["H6158"]],[3,4,["H935"]],[4,6,["H3899"]],[6,8,["H1320"]],[8,11,["H1242"]],[11,13,["H3899"]],[13,15,["H1320"]],[15,18,["H6153"]],[18,21,["H8354"]],[21,22,["H4480"]],[22,24,["H5158"]]]},{"k":9324,"v":[[0,5,["H1961"]],[5,6,["H4480","H7093"]],[6,8,["H3117"]],[8,11,["H5158"]],[11,13,["H3001"]],[13,14,["H3588"]],[14,17,["H1961"]],[17,18,["H3808"]],[18,19,["H1653"]],[19,22,["H776"]]]},{"k":9325,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":9326,"v":[[0,1,["H6965"]],[1,2,["H1980"]],[2,5,["H6886"]],[5,6,["H834"]],[6,9,["H6721"]],[9,11,["H3427"]],[11,12,["H8033"]],[12,13,["H2009"]],[13,16,["H6680"]],[16,18,["H490"]],[18,19,["H802"]],[19,20,["H8033"]],[20,22,["H3557"]],[22,23,[]]]},{"k":9327,"v":[[0,3,["H6965"]],[3,5,["H1980"]],[5,7,["H6886"]],[7,11,["H935"]],[11,12,["H413"]],[12,14,["H6607"]],[14,17,["H5892"]],[17,18,["H2009"]],[18,20,["H490"]],[20,21,["H802"]],[21,23,["H8033"]],[23,24,["H7197"]],[24,26,["H6086"]],[26,29,["H7121"]],[29,30,["H413"]],[30,33,["H559"]],[33,34,["H3947"]],[34,38,["H4994"]],[38,40,["H4592"]],[40,41,["H4325"]],[41,44,["H3627"]],[44,48,["H8354"]]]},{"k":9328,"v":[[0,5,["H1980"]],[5,7,["H3947"]],[7,10,["H7121"]],[10,11,["H413"]],[11,14,["H559"]],[14,15,["H3947"]],[15,19,["H4994"]],[19,21,["H6595"]],[21,23,["H3899"]],[23,26,["H3027"]]]},{"k":9329,"v":[[0,3,["H559"]],[3,6,["H3068"]],[6,8,["H430"]],[8,9,["H2416"]],[9,11,["H3426"]],[11,12,["H518"]],[12,14,["H4580"]],[14,15,["H3588","H518"]],[15,17,["H4393","H3709"]],[17,19,["H7058"]],[19,22,["H3537"]],[22,25,["H4592"]],[25,26,["H8081"]],[26,29,["H6835"]],[29,31,["H2009"]],[31,34,["H7197"]],[34,35,["H8147"]],[35,36,["H6086"]],[36,41,["H935"]],[41,43,["H6213"]],[43,49,["H1121"]],[49,53,["H398"]],[53,56,["H4191"]]]},{"k":9330,"v":[[0,2,["H452"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3372"]],[6,7,["H408"]],[7,8,["H935"]],[8,10,["H6213"]],[10,14,["H1697"]],[14,15,["H389"]],[15,16,["H6213"]],[16,18,["H4480","H8033"]],[18,20,["H6996"]],[20,21,["H5692"]],[21,22,["H7223"]],[22,24,["H3318"]],[24,29,["H314"]],[29,30,["H6213"]],[30,36,["H1121"]]]},{"k":9331,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H430"]],[6,8,["H3478"]],[8,10,["H3537"]],[10,12,["H7058"]],[12,14,["H3808"]],[14,15,["H3615"]],[15,16,["H3808"]],[16,19,["H6835"]],[19,21,["H8081"]],[21,22,["H2637"]],[22,23,["H5704"]],[23,25,["H3117"]],[25,28,["H3068"]],[28,29,["H5414"]],[29,30,["H1653"]],[30,31,["H5921","H6440"]],[31,33,["H127"]]]},{"k":9332,"v":[[0,3,["H1980"]],[3,5,["H6213"]],[5,9,["H1697"]],[9,11,["H452"]],[11,13,["H1931"]],[13,15,["H1931"]],[15,18,["H1004"]],[18,20,["H398"]],[20,22,["H3117"]]]},{"k":9333,"v":[[0,3,["H3537"]],[3,5,["H7058"]],[5,6,["H3615"]],[6,7,["H3808"]],[7,8,["H3808"]],[8,11,["H6835"]],[11,13,["H8081"]],[13,14,["H2637"]],[14,18,["H1697"]],[18,21,["H3068"]],[21,22,["H834"]],[22,24,["H1696"]],[24,25,["H3027"]],[25,26,["H452"]]]},{"k":9334,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H428"]],[7,8,["H1697"]],[8,11,["H1121"]],[11,14,["H802"]],[14,16,["H1172"]],[16,19,["H1004"]],[19,21,["H2470"]],[21,24,["H2483"]],[24,25,["H1961"]],[25,26,["H3966"]],[26,27,["H2389"]],[27,28,["H5704","H834"]],[28,31,["H3808"]],[31,32,["H5397"]],[32,33,["H3498"]],[33,35,[]]]},{"k":9335,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H452"]],[5,6,["H4100"]],[6,15,["H376"]],[15,17,["H430"]],[17,20,["H935"]],[20,21,["H413"]],[21,24,["(H853)"]],[24,26,["H5771"]],[26,28,["H2142"]],[28,31,["H4191","(H853)"]],[31,33,["H1121"]]]},{"k":9336,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H5414"]],[6,7,["(H853)"]],[7,9,["H1121"]],[9,12,["H3947"]],[12,17,["H4480","H2436"]],[17,21,["H5927"]],[21,22,["H413"]],[22,24,["H5944"]],[24,25,["H834","H8033"]],[25,26,["H1931"]],[26,27,["H3427"]],[27,29,["H7901"]],[29,31,["H5921"]],[31,34,["H4296"]]]},{"k":9337,"v":[[0,3,["H7121"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H559"]],[8,10,["H3068"]],[10,12,["H430"]],[12,15,["H1571"]],[15,17,["H7489"]],[17,18,["H5921"]],[18,20,["H490"]],[20,21,["H5973"]],[21,22,["H834"]],[22,23,["H589"]],[23,24,["H1481"]],[24,26,["H4191","(H853)"]],[26,28,["H1121"]]]},{"k":9338,"v":[[0,4,["H4058"]],[4,5,["H5921"]],[5,7,["H3206"]],[7,8,["H7969"]],[8,9,["H6471"]],[9,11,["H7121"]],[11,12,["H413"]],[12,14,["H3068"]],[14,16,["H559"]],[16,18,["H3068"]],[18,20,["H430"]],[20,23,["H4994"]],[23,25,["H2088"]],[25,26,["H3206"]],[26,27,["H5315"]],[27,31,["H7725","H5921","H7130"]]]},{"k":9339,"v":[[0,3,["H3068"]],[3,4,["H8085"]],[4,6,["H6963"]],[6,8,["H452"]],[8,11,["H5315"]],[11,14,["H3206"]],[14,18,["H7725","H5921","H7130"]],[18,21,["H2421"]]]},{"k":9340,"v":[[0,2,["H452"]],[2,3,["H3947","(H853)"]],[3,5,["H3206"]],[5,9,["H3381"]],[9,11,["H4480"]],[11,13,["H5944"]],[13,16,["H1004"]],[16,18,["H5414"]],[18,22,["H517"]],[22,24,["H452"]],[24,25,["H559"]],[25,26,["H7200"]],[26,28,["H1121"]],[28,29,["H2416"]]]},{"k":9341,"v":[[0,3,["H802"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H452"]],[6,7,["H6258"]],[7,9,["H2088"]],[9,11,["H3045"]],[11,12,["H3588"]],[12,13,["H859"]],[13,16,["H376"]],[16,18,["H430"]],[18,22,["H1697"]],[22,25,["H3068"]],[25,28,["H6310"]],[28,30,["H571"]]]},{"k":9342,"v":[[0,5,["H1961"]],[5,7,["H7227"]],[7,8,["H3117"]],[8,11,["H1697"]],[11,14,["H3068"]],[14,15,["H1961"]],[15,16,["H413"]],[16,17,["H452"]],[17,20,["H7992"]],[20,21,["H8141"]],[21,22,["H559"]],[22,23,["H1980"]],[23,25,["H7200"]],[25,26,["H413"]],[26,27,["H256"]],[27,31,["H5414"]],[31,32,["H4306"]],[32,33,["H5921","H6440"]],[33,35,["H127"]]]},{"k":9343,"v":[[0,2,["H452"]],[2,3,["H1980"]],[3,6,["H7200"]],[6,7,["H413"]],[7,8,["H256"]],[8,13,["H2389"]],[13,14,["H7458"]],[14,16,["H8111"]]]},{"k":9344,"v":[[0,2,["H256"]],[2,3,["H7121","H413"]],[3,4,["H5662"]],[4,5,["H834"]],[5,8,["H5921"]],[8,11,["H1004"]],[11,13,["H5662"]],[13,14,["H1961","H3372","(H853)"]],[14,16,["H3068"]],[16,17,["H3966"]]]},{"k":9345,"v":[[0,3,["H1961"]],[3,6,["H348"]],[6,8,["H3772","(H853)"]],[8,10,["H5030"]],[10,13,["H3068"]],[13,15,["H5662"]],[15,16,["H3947"]],[16,18,["H3967"]],[18,19,["H5030"]],[19,21,["H2244"]],[21,24,["H2572","H376"]],[24,27,["H4631"]],[27,29,["H3557"]],[29,32,["H3899"]],[32,34,["H4325"]]]},{"k":9346,"v":[[0,2,["H256"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H5662"]],[5,6,["H1980"]],[6,9,["H776"]],[9,10,["H413"]],[10,11,["H3605"]],[11,12,["H4599"]],[12,14,["H4325"]],[14,16,["H413"]],[16,17,["H3605"]],[17,18,["H5158"]],[18,19,["H194"]],[19,22,["H4672"]],[22,23,["H2682"]],[23,30,["H2421","H5483","H6505"]],[30,33,["H3772"]],[33,34,["H3808"]],[34,37,["H4480","H929"]]]},{"k":9347,"v":[[0,3,["H2505","(H853)"]],[3,5,["H776"]],[5,9,["H5674"]],[9,12,["H256"]],[12,13,["H1980"]],[13,14,["H259"]],[14,15,["H1870"]],[15,17,["H905"]],[17,19,["H5662"]],[19,20,["H1980"]],[20,21,["H259"]],[21,22,["H1870"]],[22,24,["H905"]]]},{"k":9348,"v":[[0,3,["H5662"]],[3,4,["H1961"]],[4,7,["H1870"]],[7,8,["H2009"]],[8,9,["H452"]],[9,10,["H7122"]],[10,14,["H5234"]],[14,17,["H5307"]],[17,18,["H5921"]],[18,20,["H6440"]],[20,22,["H559"]],[22,24,["H859"]],[24,25,["H2088"]],[25,27,["H113"]],[27,28,["H452"]]]},{"k":9349,"v":[[0,3,["H559"]],[3,5,["H589"]],[5,7,["H1980"]],[7,8,["H559"]],[8,10,["H113"]],[10,11,["H2009"]],[11,12,["H452"]],[12,14,[]]]},{"k":9350,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,7,["H2398"]],[7,8,["H3588"]],[8,9,["H859"]],[9,11,["H5414","(H853)"]],[11,13,["H5650"]],[13,16,["H3027"]],[16,18,["H256"]],[18,20,["H4191"]],[20,21,[]]]},{"k":9351,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,6,["H2416"]],[6,8,["H3426"]],[8,9,["H518"]],[9,10,["H1471"]],[10,12,["H4467"]],[12,13,["H834","H8033"]],[13,15,["H113"]],[15,17,["H3808"]],[17,18,["H7971"]],[18,20,["H1245"]],[20,25,["H559"]],[25,28,["H369"]],[28,33,["H7650"]],[33,34,["(H853)"]],[34,36,["H4467"]],[36,38,["H1471"]],[38,39,["H3588"]],[39,41,["H4672"]],[41,43,["H3808"]]]},{"k":9352,"v":[[0,2,["H6258"]],[2,3,["H859"]],[3,4,["H559"]],[4,5,["H1980"]],[5,6,["H559"]],[6,8,["H113"]],[8,9,["H2009"]],[9,10,["H452"]],[10,12,[]]]},{"k":9353,"v":[[0,6,["H1961"]],[6,10,["H589"]],[10,12,["H1980"]],[12,13,["H4480","H854"]],[13,17,["H7307"]],[17,20,["H3068"]],[20,22,["H5375"]],[22,24,["H5921","H834"]],[24,26,["H3045"]],[26,27,["H3808"]],[27,32,["H935"]],[32,34,["H5046"]],[34,35,["H256"]],[35,38,["H3808"]],[38,39,["H4672"]],[39,43,["H2026"]],[43,48,["H5650"]],[48,49,["H3372","(H853)"]],[49,51,["H3068"]],[51,54,["H4480","H5271"]]]},{"k":9354,"v":[[0,3,["H3808"]],[3,4,["H5046"]],[4,6,["H113","(H853)"]],[6,7,["H834"]],[7,9,["H6213"]],[9,11,["H348"]],[11,12,["H2026","(H853)"]],[12,14,["H5030"]],[14,17,["H3068"]],[17,20,["H2244"]],[20,22,["H3967"]],[22,23,["H376"]],[23,27,["H4480","H5030","H3068"]],[27,29,["H2572","H2572","H376"]],[29,32,["H4631"]],[32,34,["H3557"]],[34,37,["H3899"]],[37,39,["H4325"]]]},{"k":9355,"v":[[0,2,["H6258"]],[2,3,["H859"]],[3,4,["H559"]],[4,5,["H1980"]],[5,6,["H559"]],[6,8,["H113"]],[8,9,["H2009"]],[9,10,["H452"]],[10,16,["H2026"]],[16,17,[]]]},{"k":9356,"v":[[0,2,["H452"]],[2,3,["H559"]],[3,6,["H3068"]],[6,8,["H6635"]],[8,9,["H2416"]],[9,10,["H6440"]],[10,11,["H834"]],[11,13,["H5975"]],[13,16,["H3588"]],[16,18,["H7200"]],[18,19,["H413"]],[19,22,["H3117"]]]},{"k":9357,"v":[[0,2,["H5662"]],[2,3,["H1980"]],[3,5,["H7122"]],[5,6,["H256"]],[6,8,["H5046"]],[8,11,["H256"]],[11,12,["H1980"]],[12,14,["H7122"]],[14,15,["H452"]]]},{"k":9358,"v":[[0,5,["H1961"]],[5,7,["H256"]],[7,8,["H7200","(H853)"]],[8,9,["H452"]],[9,11,["H256"]],[11,12,["H559"]],[12,13,["H413"]],[13,16,["H859"]],[16,18,["H2088"]],[18,19,["H5916"]],[19,20,["H3478"]]]},{"k":9359,"v":[[0,3,["H559"]],[3,6,["H3808"]],[6,7,["H5916","(H853)"]],[7,8,["H3478"]],[8,9,["H3588","H518"]],[9,10,["H859"]],[10,13,["H1"]],[13,14,["H1004"]],[14,19,["H5800","(H853)"]],[19,21,["H4687"]],[21,24,["H3068"]],[24,28,["H1980","H310"]],[28,29,["H1168"]]]},{"k":9360,"v":[[0,1,["H6258"]],[1,3,["H7971"]],[3,5,["H6908"]],[5,6,["H413"]],[6,7,["(H853)"]],[7,8,["H3605"]],[8,9,["H3478"]],[9,10,["H413"]],[10,11,["H2022"]],[11,12,["H3760"]],[12,15,["H5030"]],[15,17,["H1168"]],[17,18,["H702"]],[18,19,["H3967"]],[19,21,["H2572"]],[21,24,["H5030"]],[24,27,["H842"]],[27,28,["H702"]],[28,29,["H3967"]],[29,31,["H398"]],[31,33,["H348"]],[33,34,["H7979"]]]},{"k":9361,"v":[[0,2,["H256"]],[2,3,["H7971"]],[3,5,["H3605"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,14,["H6908","(H853)","H5030"]],[14,15,["H413"]],[15,16,["H2022"]],[16,17,["H3760"]]]},{"k":9362,"v":[[0,2,["H452"]],[2,3,["H5066"]],[3,4,["H413"]],[4,5,["H3605"]],[5,7,["H5971"]],[7,9,["H559"]],[9,11,["H5704","H4970"]],[11,12,["H6452"]],[12,13,["H859"]],[13,14,["H5921"]],[14,15,["H8147"]],[15,16,["H5587"]],[16,17,["H518"]],[17,19,["H3068"]],[19,21,["H430"]],[21,22,["H1980","H310"]],[22,25,["H518"]],[25,26,["H1168"]],[26,28,["H1980","H310"]],[28,32,["H5971"]],[32,33,["H6030"]],[33,35,["H3808"]],[35,37,["H1697"]]]},{"k":9363,"v":[[0,2,["H559"]],[2,3,["H452"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H589"]],[7,10,["H905"]],[10,11,["H3498"]],[11,13,["H5030"]],[13,16,["H3068"]],[16,18,["H1168"]],[18,19,["H5030"]],[19,21,["H702"]],[21,22,["H3967"]],[22,24,["H2572"]],[24,25,["H376"]]]},{"k":9364,"v":[[0,4,["H5414"]],[4,6,["H8147"]],[6,7,["H6499"]],[7,11,["H977"]],[11,12,["H259"]],[12,13,["H6499"]],[13,20,["H5408"]],[20,22,["H7760"]],[22,24,["H5921"]],[24,25,["H6086"]],[25,27,["H7760"]],[27,28,["H3808"]],[28,29,["H784"]],[29,32,["H589"]],[32,34,["H6213","(H853)"]],[34,36,["H259"]],[36,37,["H6499"]],[37,39,["H5414"]],[39,41,["H5921"]],[41,42,["H6086"]],[42,44,["H7760"]],[44,45,["H3808"]],[45,46,["H784"]],[46,47,[]]]},{"k":9365,"v":[[0,2,["H7121"]],[2,6,["H8034"]],[6,9,["H430"]],[9,11,["H589"]],[11,13,["H7121"]],[13,16,["H8034"]],[16,19,["H3068"]],[19,22,["H430"]],[22,23,["H834"]],[23,24,["H6030"]],[24,26,["H784"]],[26,28,["H1931"]],[28,29,["H1961"]],[29,30,["H430"]],[30,32,["H3605"]],[32,34,["H5971"]],[34,35,["H6030"]],[35,37,["H559"]],[37,40,["H2896"]],[40,41,["H1697"]]]},{"k":9366,"v":[[0,2,["H452"]],[2,3,["H559"]],[3,6,["H5030"]],[6,8,["H1168"]],[8,9,["H977"]],[9,11,["H259"]],[11,12,["H6499"]],[12,16,["H6213"]],[16,18,["H7223"]],[18,19,["H3588"]],[19,20,["H859"]],[20,22,["H7227"]],[22,24,["H7121"]],[24,27,["H8034"]],[27,30,["H430"]],[30,32,["H7760"]],[32,33,["H3808"]],[33,34,["H784"]],[34,35,[]]]},{"k":9367,"v":[[0,3,["H3947","(H853)"]],[3,5,["H6499"]],[5,6,["H834"]],[6,8,["H5414"]],[8,12,["H6213"]],[12,15,["H7121"]],[15,18,["H8034"]],[18,20,["H1168"]],[20,22,["H4480","H1242"]],[22,24,["H5704"]],[24,25,["H6672"]],[25,26,["H559"]],[26,28,["H1168"]],[28,29,["H6030"]],[29,34,["H369"]],[34,35,["H6963"]],[35,36,["H369"]],[36,39,["H6030"]],[39,42,["H6452"]],[42,43,["H5921"]],[43,45,["H4196"]],[45,46,["H834"]],[46,48,["H6213"]]]},{"k":9368,"v":[[0,5,["H1961"]],[5,7,["H6672"]],[7,9,["H452"]],[9,10,["H2048"]],[10,13,["H559"]],[13,14,["H7121"]],[14,15,["H6963","H1419"]],[15,16,["H3588"]],[16,17,["H1931"]],[17,20,["H430"]],[20,21,["H3588"]],[21,24,["H7879"]],[24,25,["H3588"]],[25,28,["H7873"]],[28,29,["H3588"]],[29,34,["H1870"]],[34,36,["H194"]],[36,37,["H1931"]],[37,38,["H3463"]],[38,42,["H3364"]]]},{"k":9369,"v":[[0,3,["H7121"]],[3,4,["H6963","H1419"]],[4,7,["H1413"]],[7,10,["H4941"]],[10,12,["H2719"]],[12,14,["H7420"]],[14,15,["H5704"]],[15,17,["H1818"]],[17,19,["H8210"]],[19,20,["H5921"]],[20,21,[]]]},{"k":9370,"v":[[0,5,["H1961"]],[5,7,["H6672"]],[7,9,["H5674"]],[9,12,["H5012"]],[12,13,["H5704"]],[13,18,["H5927"]],[18,22,["H4503"]],[22,26,["H369"]],[26,27,["H6963"]],[27,28,["H369"]],[28,31,["H6030"]],[31,32,["H369"]],[32,35,["H7182"]]]},{"k":9371,"v":[[0,2,["H452"]],[2,3,["H559"]],[3,5,["H3605"]],[5,7,["H5971"]],[7,9,["H5066"]],[9,10,["H413"]],[10,13,["H3605"]],[13,15,["H5971"]],[15,17,["H5066"]],[17,18,["H413"]],[18,22,["H7495","(H853)"]],[22,24,["H4196"]],[24,27,["H3068"]],[27,31,["H2040"]]]},{"k":9372,"v":[[0,2,["H452"]],[2,3,["H3947"]],[3,4,["H8147","H6240"]],[4,5,["H68"]],[5,9,["H4557"]],[9,12,["H7626"]],[12,15,["H1121"]],[15,17,["H3290"]],[17,18,["H413"]],[18,19,["H834"]],[19,21,["H1697"]],[21,24,["H3068"]],[24,25,["H1961"]],[25,26,["H559"]],[26,27,["H3478"]],[27,29,["H1961"]],[29,31,["H8034"]]]},{"k":9373,"v":[[0,2,["H854"]],[2,4,["H68"]],[4,6,["H1129"]],[6,8,["H4196"]],[8,11,["H8034"]],[11,14,["H3068"]],[14,17,["H6213"]],[17,19,["H8585"]],[19,20,["H5439"]],[20,22,["H4196"]],[22,27,["H1004"]],[27,29,["H5429"]],[29,31,["H2233"]]]},{"k":9374,"v":[[0,3,["H6186","(H853)"]],[3,5,["H6086"]],[5,9,["H5408","(H853)"]],[9,11,["H6499"]],[11,15,["H7760"]],[15,17,["H5921"]],[17,19,["H6086"]],[19,21,["H559"]],[21,22,["H4390"]],[22,23,["H702"]],[23,24,["H3537"]],[24,26,["H4325"]],[26,28,["H3332"]],[28,30,["H5921"]],[30,33,["H5930"]],[33,35,["H5921"]],[35,37,["H6086"]]]},{"k":9375,"v":[[0,3,["H559"]],[3,8,["H8138"]],[8,15,["H8138"]],[15,18,["H559"]],[18,23,["H8027"]],[23,30,["H8027"]]]},{"k":9376,"v":[[0,3,["H4325"]],[3,4,["H1980"]],[4,6,["H5439"]],[6,8,["H4196"]],[8,11,["H4390","(H853)"]],[11,13,["H8585"]],[13,14,["H1571"]],[14,16,["H4325"]]]},{"k":9377,"v":[[0,5,["H1961"]],[5,11,["H5927"]],[11,15,["H4503"]],[15,17,["H452"]],[17,19,["H5030"]],[19,21,["H5066"]],[21,23,["H559"]],[23,24,["H3068"]],[24,25,["H430"]],[25,27,["H85"]],[27,28,["H3327"]],[28,31,["H3478"]],[31,35,["H3045"]],[35,37,["H3117"]],[37,38,["H3588"]],[38,39,["H859"]],[39,41,["H430"]],[41,43,["H3478"]],[43,46,["H589"]],[46,49,["H5650"]],[49,54,["H6213","(H853)"]],[54,55,["H3605"]],[55,56,["H428"]],[56,57,["H1697"]],[57,60,["H1697"]]]},{"k":9378,"v":[[0,1,["H6030"]],[1,4,["H3068"]],[4,5,["H6030"]],[5,8,["H2088"]],[8,9,["H5971"]],[9,11,["H3045"]],[11,12,["H3588"]],[12,13,["H859"]],[13,16,["H3068"]],[16,17,["H430"]],[17,20,["H859"]],[20,22,["H5437","(H853)"]],[22,24,["H3820"]],[24,26,["H322"]]]},{"k":9379,"v":[[0,3,["H784"]],[3,6,["H3068"]],[6,7,["H5307"]],[7,9,["H398","(H853)"]],[9,12,["H5930"]],[12,15,["H6086"]],[15,18,["H68"]],[18,21,["H6083"]],[21,24,["H3897"]],[24,26,["H4325"]],[26,27,["H834"]],[27,31,["H8585"]]]},{"k":9380,"v":[[0,3,["H3605"]],[3,5,["H5971"]],[5,6,["H7200"]],[6,9,["H5307"]],[9,10,["H5921"]],[10,12,["H6440"]],[12,15,["H559"]],[15,17,["H3068"]],[17,18,["H1931"]],[18,21,["H430"]],[21,23,["H3068"]],[23,24,["H1931"]],[24,27,["H430"]]]},{"k":9381,"v":[[0,2,["H452"]],[2,3,["H559"]],[3,6,["H8610","(H853)"]],[6,8,["H5030"]],[8,10,["H1168"]],[10,12,["H408"]],[12,13,["H376"]],[13,15,["H4480"]],[15,16,["H4422"]],[16,19,["H8610"]],[19,22,["H452"]],[22,25,["H3381"]],[25,26,["H413"]],[26,28,["H5158"]],[28,29,["H7028"]],[29,31,["H7819"]],[31,33,["H8033"]]]},{"k":9382,"v":[[0,2,["H452"]],[2,3,["H559"]],[3,5,["H256"]],[5,8,["H5927"]],[8,9,["H398"]],[9,11,["H8354"]],[11,12,["H3588"]],[12,16,["H6963"]],[16,18,["H1995"]],[18,20,["H1653"]]]},{"k":9383,"v":[[0,2,["H256"]],[2,4,["H5927"]],[4,6,["H398"]],[6,9,["H8354"]],[9,11,["H452"]],[11,13,["H5927"]],[13,14,["H413"]],[14,16,["H7218"]],[16,18,["H3760"]],[18,23,["H1457"]],[23,26,["H776"]],[26,28,["H7760"]],[28,30,["H6440"]],[30,31,["H996"]],[31,33,["H1290"]]]},{"k":9384,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H5288"]],[5,7,["H5927"]],[7,8,["H4994"]],[8,9,["H5027"]],[9,10,["H1870"]],[10,12,["H3220"]],[12,16,["H5927"]],[16,18,["H5027"]],[18,20,["H559"]],[20,23,["H369","H3972"]],[23,26,["H559"]],[26,28,["H7725"]],[28,29,["H7651"]],[29,30,["H6471"]]]},{"k":9385,"v":[[0,5,["H1961"]],[5,9,["H7637"]],[9,12,["H559"]],[12,13,["H2009"]],[13,15,["H5927"]],[15,17,["H6996"]],[17,18,["H5645"]],[18,22,["H4480","H3220"]],[22,25,["H376"]],[25,26,["H3709"]],[26,29,["H559"]],[29,31,["H5927"]],[31,32,["H559"]],[32,33,["H413"]],[33,34,["H256"]],[34,35,["H631"]],[35,41,["H3381"]],[41,44,["H1653"]],[44,45,["H6113"]],[45,47,["H3808"]]]},{"k":9386,"v":[[0,5,["H1961"]],[5,9,["H5704","H3541","H5704","H3541"]],[9,12,["H8064"]],[12,14,["H6937"]],[14,16,["H5645"]],[16,18,["H7307"]],[18,21,["H1961"]],[21,23,["H1419"]],[23,24,["H1653"]],[24,26,["H256"]],[26,27,["H7392"]],[27,29,["H1980"]],[29,31,["H3157"]]]},{"k":9387,"v":[[0,3,["H3027"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H452"]],[9,13,["H8151"]],[13,15,["H4975"]],[15,17,["H7323"]],[17,18,["H6440"]],[18,19,["H256"]],[19,20,["H5704"]],[20,22,["H935"]],[22,24,["H3157"]]]},{"k":9388,"v":[[0,2,["H256"]],[2,3,["H5046"]],[3,4,["H348","(H853)"]],[4,5,["H3605"]],[5,6,["H834"]],[6,7,["H452"]],[7,9,["H6213"]],[9,11,["H3605"]],[11,12,["H834"]],[12,15,["H2026","(H853)"]],[15,16,["H3605"]],[16,18,["H5030"]],[18,21,["H2719"]]]},{"k":9389,"v":[[0,2,["H348"]],[2,3,["H7971"]],[3,5,["H4397"]],[5,6,["H413"]],[6,7,["H452"]],[7,8,["H559"]],[8,9,["H3541"]],[9,12,["H430"]],[12,13,["H6213"]],[13,17,["H3254"]],[17,18,["H3541"]],[18,19,["H3588"]],[19,21,["H7760"]],[21,22,["(H853)"]],[22,24,["H5315"]],[24,27,["H5315"]],[27,29,["H259"]],[29,30,["H4480"]],[30,34,["H4279"]],[34,37,["H6256"]]]},{"k":9390,"v":[[0,4,["H7200"]],[4,7,["H6965"]],[7,9,["H1980"]],[9,10,["H413"]],[10,12,["H5315"]],[12,14,["H935"]],[14,16,["H884"]],[16,17,["H834"]],[17,20,["H3063"]],[20,22,["H5117","(H853)"]],[22,24,["H5288"]],[24,25,["H8033"]]]},{"k":9391,"v":[[0,3,["H1931"]],[3,4,["H1980"]],[4,6,["H3117"]],[6,7,["H1870"]],[7,10,["H4057"]],[10,12,["H935"]],[12,15,["H3427"]],[15,16,["H8478"]],[16,17,["H259"]],[17,19,["H7574"]],[19,22,["H7592","(H853)"]],[22,24,["H5315"]],[24,28,["H4191"]],[28,30,["H559"]],[30,33,["H7227"]],[33,34,["H6258"]],[34,36,["H3068"]],[36,38,["H3947"]],[38,40,["H5315"]],[40,41,["H3588"]],[41,42,["H595"]],[42,44,["H3808"]],[44,45,["H2896"]],[45,48,["H4480","H1"]]]},{"k":9392,"v":[[0,4,["H7901"]],[4,6,["H3462"]],[6,7,["H8478"]],[7,8,["H259"]],[8,10,["H7574"]],[10,11,["H2009"]],[11,12,["H2088"]],[12,14,["H4397"]],[14,15,["H5060"]],[15,18,["H559"]],[18,21,["H6965"]],[21,23,["H398"]]]},{"k":9393,"v":[[0,3,["H5027"]],[3,5,["H2009"]],[5,9,["H5692"]],[9,13,["H7529"]],[13,16,["H6835"]],[16,18,["H4325"]],[18,21,["H4763"]],[21,25,["H398"]],[25,27,["H8354"]],[27,31,["H7901"]],[31,32,["H7725"]]]},{"k":9394,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,8,["H7725"]],[8,11,["H8145"]],[11,13,["H5060"]],[13,16,["H559"]],[16,17,["H6965"]],[17,19,["H398"]],[19,20,["H3588"]],[20,22,["H1870"]],[22,25,["H7227"]],[25,26,["H4480"]],[26,27,[]]]},{"k":9395,"v":[[0,3,["H6965"]],[3,6,["H398"]],[6,8,["H8354"]],[8,10,["H1980"]],[10,13,["H3581"]],[13,15,["H1931"]],[15,16,["H396"]],[16,17,["H705"]],[17,18,["H3117"]],[18,20,["H705"]],[20,21,["H3915"]],[21,22,["H5704"]],[22,23,["H2722"]],[23,25,["H2022"]],[25,27,["H430"]]]},{"k":9396,"v":[[0,3,["H935"]],[3,4,["H8033"]],[4,5,["H413"]],[5,7,["H4631"]],[7,9,["H3885"]],[9,10,["H8033"]],[10,12,["H2009"]],[12,14,["H1697"]],[14,17,["H3068"]],[17,19,["H413"]],[19,23,["H559"]],[23,26,["H4100"]],[26,29,["H6311"]],[29,30,["H452"]]]},{"k":9397,"v":[[0,3,["H559"]],[3,8,["H7065","H7065"]],[8,11,["H3068"]],[11,12,["H430"]],[12,14,["H6635"]],[14,15,["H3588"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,21,["H5800"]],[21,23,["H1285"]],[23,25,["H2040","(H853)"]],[25,27,["H4196"]],[27,29,["H2026"]],[29,31,["H5030"]],[31,34,["H2719"]],[34,36,["H589"]],[36,39,["H905"]],[39,41,["H3498"]],[41,44,["H1245","(H853)"]],[44,46,["H5315"]],[46,50,["H3947"]]]},{"k":9398,"v":[[0,3,["H559"]],[3,5,["H3318"]],[5,7,["H5975"]],[7,10,["H2022"]],[10,11,["H6440"]],[11,13,["H3068"]],[13,15,["H2009"]],[15,17,["H3068"]],[17,19,["H5674"]],[19,22,["H1419"]],[22,24,["H2389"]],[24,25,["H7307"]],[25,26,["H6561"]],[26,28,["H2022"]],[28,32,["H7665"]],[32,34,["H5553"]],[34,35,["H6440"]],[35,37,["H3068"]],[37,40,["H3068"]],[40,42,["H3808"]],[42,45,["H7307"]],[45,47,["H310"]],[47,49,["H7307"]],[49,51,["H7494"]],[51,54,["H3068"]],[54,56,["H3808"]],[56,59,["H7494"]]]},{"k":9399,"v":[[0,2,["H310"]],[2,4,["H7494"]],[4,6,["H784"]],[6,9,["H3068"]],[9,11,["H3808"]],[11,14,["H784"]],[14,16,["H310"]],[16,18,["H784"]],[18,20,["H1827"]],[20,21,["H1851"]],[21,22,["H6963"]]]},{"k":9400,"v":[[0,3,["H1961"]],[3,6,["H452"]],[6,7,["H8085"]],[7,11,["H3874"]],[11,13,["H6440"]],[13,16,["H155"]],[16,19,["H3318"]],[19,21,["H5975"]],[21,25,["H6607"]],[25,28,["H4631"]],[28,30,["H2009"]],[30,34,["H6963"]],[34,35,["H413"]],[35,38,["H559"]],[38,39,["H4100"]],[39,42,["H6311"]],[42,43,["H452"]]]},{"k":9401,"v":[[0,3,["H559"]],[3,8,["H7065","H7065"]],[8,11,["H3068"]],[11,12,["H430"]],[12,14,["H6635"]],[14,15,["H3588"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,21,["H5800"]],[21,23,["H1285"]],[23,25,["H2040","(H853)"]],[25,27,["H4196"]],[27,29,["H2026"]],[29,31,["H5030"]],[31,34,["H2719"]],[34,36,["H589"]],[36,39,["H905"]],[39,41,["H3498"]],[41,44,["H1245","(H853)"]],[44,46,["H5315"]],[46,50,["H3947"]]]},{"k":9402,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H1980"]],[7,8,["H7725"]],[8,11,["H1870"]],[11,14,["H4057"]],[14,16,["H1834"]],[16,20,["H935"]],[20,21,["H4886","(H853)"]],[21,22,["H2371"]],[22,25,["H4428"]],[25,26,["H5921"]],[26,27,["H758"]]]},{"k":9403,"v":[[0,2,["H3058"]],[2,4,["H1121"]],[4,6,["H5250"]],[6,9,["H4886"]],[9,12,["H4428"]],[12,13,["H5921"]],[13,14,["H3478"]],[14,16,["H477"]],[16,18,["H1121"]],[18,20,["H8202"]],[20,22,["H4480","H65"]],[22,25,["H4886"]],[25,28,["H5030"]],[28,31,["H8478"]]]},{"k":9404,"v":[[0,6,["H1961"]],[6,10,["H4422"]],[10,12,["H4480","H2719"]],[12,14,["H2371"]],[14,16,["H3058"]],[16,17,["H4191"]],[17,21,["H4422"]],[21,24,["H4480","H2719"]],[24,26,["H3058"]],[26,28,["H477"]],[28,29,["H4191"]]]},{"k":9405,"v":[[0,4,["H7604"]],[4,6,["H7651"]],[6,7,["H505"]],[7,9,["H3478"]],[9,10,["H3605"]],[10,12,["H1290"]],[12,13,["H834"]],[13,15,["H3808"]],[15,16,["H3766"]],[16,18,["H1168"]],[18,20,["H3605"]],[20,21,["H6310"]],[21,22,["H834"]],[22,24,["H3808"]],[24,25,["H5401"]],[25,26,[]]]},{"k":9406,"v":[[0,3,["H1980"]],[3,4,["H4480","H8033"]],[4,6,["H4672","(H853)"]],[6,7,["H477"]],[7,9,["H1121"]],[9,11,["H8202"]],[11,12,["H1931"]],[12,14,["H2790"]],[14,16,["H8147","H6240"]],[16,17,["H6776"]],[17,20,["H6440"]],[20,23,["H1931"]],[23,26,["H8147","H6240"]],[26,28,["H452"]],[28,29,["H5674"]],[29,30,["H413"]],[30,33,["H7993"]],[33,35,["H155"]],[35,36,["H413"]],[36,37,[]]]},{"k":9407,"v":[[0,3,["H5800","(H853)"]],[3,5,["H1241"]],[5,7,["H7323"]],[7,8,["H310"]],[8,9,["H452"]],[9,11,["H559"]],[11,16,["H4994"]],[16,17,["H5401"]],[17,19,["H1"]],[19,22,["H517"]],[22,27,["H1980","H310"]],[27,31,["H559"]],[31,34,["H1980"]],[34,36,["H7725"]],[36,37,["H3588"]],[37,38,["H4100"]],[38,41,["H6213"]],[41,43,[]]]},{"k":9408,"v":[[0,4,["H7725"]],[4,5,["H4480","H310"]],[5,8,["H3947","(H853)"]],[8,10,["H6776"]],[10,12,["H1241"]],[12,14,["H2076"]],[14,17,["H1310"]],[17,19,["H1320"]],[19,22,["H3627"]],[22,25,["H1241"]],[25,27,["H5414"]],[27,30,["H5971"]],[30,34,["H398"]],[34,37,["H6965"]],[37,39,["H1980"]],[39,40,["H310"]],[40,41,["H452"]],[41,43,["H8334"]],[43,45,[]]]},{"k":9409,"v":[[0,2,["H1130"]],[2,4,["H4428"]],[4,6,["H758"]],[6,11,["H6908","(H853)","H3605","H2428"]],[11,15,["H7970"]],[15,17,["H8147"]],[17,18,["H4428"]],[18,19,["H854"]],[19,22,["H5483"]],[22,24,["H7393"]],[24,28,["H5927"]],[28,30,["H6696","H5921"]],[30,31,["H8111"]],[31,33,["H3898"]],[33,35,[]]]},{"k":9410,"v":[[0,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H256"]],[6,7,["H4428"]],[7,9,["H3478"]],[9,12,["H5892"]],[12,14,["H559"]],[14,17,["H3541"]],[17,18,["H559"]],[18,19,["H1130"]]]},{"k":9411,"v":[[0,2,["H3701"]],[2,5,["H2091"]],[5,9,["H802"]],[9,13,["H1121"]],[13,16,["H2896"]],[16,18,[]]]},{"k":9412,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H6030"]],[6,8,["H559"]],[8,10,["H113"]],[10,12,["H4428"]],[12,16,["H1697"]],[16,17,["H589"]],[17,21,["H3605"]],[21,22,["H834"]],[22,24,[]]]},{"k":9413,"v":[[0,3,["H4397"]],[3,5,["H7725"]],[5,7,["H559"]],[7,8,["H3541"]],[8,9,["H559"]],[9,10,["H1130"]],[10,11,["H559"]],[11,12,["H3588"]],[12,15,["H7971"]],[15,16,["H413"]],[16,18,["H559"]],[18,21,["H5414"]],[21,24,["H3701"]],[24,27,["H2091"]],[27,30,["H802"]],[30,33,["H1121"]]]},{"k":9414,"v":[[0,1,["H3588"]],[1,4,["H7971","(H853)"]],[4,6,["H5650"]],[6,7,["H413"]],[7,10,["H4279"]],[10,11,["H518"]],[11,13,["H6256"]],[13,17,["H2664","(H853)"]],[17,19,["H1004"]],[19,22,["H1004"]],[22,25,["H5650"]],[25,29,["H1961"]],[29,31,["H3605"]],[31,33,["H4261"]],[33,36,["H5869"]],[36,39,["H7760"]],[39,43,["H3027"]],[43,47,["H3947"]]]},{"k":9415,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H7121"]],[6,7,["H3605"]],[7,9,["H2205"]],[9,12,["H776"]],[12,14,["H559"]],[14,15,["H3045"]],[15,18,["H4994"]],[18,20,["H7200"]],[20,21,["H3588"]],[21,22,["H2088"]],[22,24,["H1245"]],[24,25,["H7451"]],[25,26,["H3588"]],[26,28,["H7971"]],[28,29,["H413"]],[29,33,["H802"]],[33,37,["H1121"]],[37,41,["H3701"]],[41,45,["H2091"]],[45,48,["H4513","H4480"]],[48,50,["H3808"]]]},{"k":9416,"v":[[0,2,["H3605"]],[2,4,["H2205"]],[4,6,["H3605"]],[6,8,["H5971"]],[8,9,["H559"]],[9,10,["H413"]],[10,12,["H8085"]],[12,13,["H408"]],[13,16,["H3808"]],[16,17,["H14"]]]},{"k":9417,"v":[[0,3,["H559"]],[3,6,["H4397"]],[6,8,["H1130"]],[8,9,["H559"]],[9,11,["H113"]],[11,13,["H4428"]],[13,14,["H3605"]],[14,15,["H834"]],[15,18,["H7971"]],[18,20,["H413"]],[20,22,["H5650"]],[22,25,["H7223"]],[25,28,["H6213"]],[28,30,["H2088"]],[30,31,["H1697"]],[31,33,["H3201"]],[33,34,["H3808"]],[34,35,["H6213"]],[35,38,["H4397"]],[38,39,["H1980"]],[39,41,["H7725"]],[41,43,["H1697"]],[43,44,[]]]},{"k":9418,"v":[[0,2,["H1130"]],[2,3,["H7971"]],[3,4,["H413"]],[4,7,["H559"]],[7,9,["H430"]],[9,10,["H6213"]],[10,11,["H3541"]],[11,15,["H3254"]],[15,16,["H3541"]],[16,17,["H518"]],[17,19,["H6083"]],[19,21,["H8111"]],[21,23,["H5606"]],[23,25,["H8168"]],[25,27,["H3605"]],[27,29,["H5971"]],[29,30,["H834"]],[30,31,["H7272"]],[31,32,[]]]},{"k":9419,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H6030"]],[6,8,["H559"]],[8,9,["H1696"]],[9,12,["H408"]],[12,15,["H2296"]],[15,20,["H1984"]],[20,26,["H6605"]]]},{"k":9420,"v":[[0,5,["H1961"]],[5,8,["H8085","(H853)"]],[8,9,["H2088"]],[9,10,["H1697"]],[10,12,["H1931"]],[12,14,["H8354"]],[14,15,["H1931"]],[15,18,["H4428"]],[18,21,["H5521"]],[21,24,["H559"]],[24,25,["H413"]],[25,27,["H5650"]],[27,28,["H7760"]],[28,34,["H7760"]],[34,38,["H5921"]],[38,40,["H5892"]]]},{"k":9421,"v":[[0,2,["H2009"]],[2,4,["H5066"]],[4,5,["H259"]],[5,6,["H5030"]],[6,7,["H413"]],[7,8,["H256"]],[8,9,["H4428"]],[9,11,["H3478"]],[11,12,["H559"]],[12,13,["H3541"]],[13,14,["H559"]],[14,16,["H3068"]],[16,19,["H7200","(H853)"]],[19,20,["H3605"]],[20,21,["H2088"]],[21,22,["H1419"]],[22,23,["H1995"]],[23,24,["H2009"]],[24,27,["H5414"]],[27,31,["H3027"]],[31,33,["H3117"]],[33,37,["H3045"]],[37,38,["H3588"]],[38,39,["H589"]],[39,42,["H3068"]]]},{"k":9422,"v":[[0,2,["H256"]],[2,3,["H559"]],[3,5,["H4310"]],[5,8,["H559"]],[8,9,["H3541"]],[9,10,["H559"]],[10,12,["H3068"]],[12,17,["H5288"]],[17,20,["H8269"]],[20,23,["H4082"]],[23,26,["H559"]],[26,27,["H4310"]],[27,29,["H631"]],[29,31,["H4421"]],[31,34,["H559"]],[34,35,["H859"]]]},{"k":9423,"v":[[0,3,["H6485","(H853)"]],[3,6,["H5288"]],[6,9,["H8269"]],[9,12,["H4082"]],[12,15,["H1961"]],[15,17,["H3967"]],[17,19,["H7970"]],[19,20,["H8147"]],[20,22,["H310"]],[22,25,["H6485","(H853)"]],[25,26,["H3605"]],[26,28,["H5971"]],[28,30,["H3605"]],[30,32,["H1121"]],[32,34,["H3478"]],[34,36,["H7651"]],[36,37,["H505"]]]},{"k":9424,"v":[[0,4,["H3318"]],[4,6,["H6672"]],[6,8,["H1130"]],[8,10,["H8354"]],[10,12,["H7910"]],[12,15,["H5521"]],[15,16,["H1931"]],[16,19,["H4428"]],[19,21,["H7970"]],[21,23,["H8147"]],[23,24,["H4428"]],[24,26,["H5826"]],[26,27,[]]]},{"k":9425,"v":[[0,4,["H5288"]],[4,7,["H8269"]],[7,10,["H4082"]],[10,12,["H3318"]],[12,13,["H7223"]],[13,15,["H1130"]],[15,17,["H7971"]],[17,20,["H5046"]],[20,22,["H559"]],[22,25,["H376"]],[25,27,["H3318"]],[27,29,["H4480","H8111"]]]},{"k":9426,"v":[[0,3,["H559"]],[3,4,["H518"]],[4,8,["H3318"]],[8,10,["H7965"]],[10,11,["H8610"]],[11,13,["H2416"]],[13,15,["H518"]],[15,19,["H3318"]],[19,21,["H4421"]],[21,22,["H8610"]],[22,24,["H2416"]]]},{"k":9427,"v":[[0,2,["H428"]],[2,4,["H5288"]],[4,7,["H8269"]],[7,10,["H4082"]],[10,12,["H3318"]],[12,13,["H4480"]],[13,15,["H5892"]],[15,18,["H2428"]],[18,19,["H834"]],[19,20,["H310"]],[20,21,[]]]},{"k":9428,"v":[[0,3,["H5221"]],[3,5,["H376"]],[5,7,["H376"]],[7,10,["H758"]],[10,11,["H5127"]],[11,13,["H3478"]],[13,14,["H7291"]],[14,17,["H1130"]],[17,19,["H4428"]],[19,21,["H758"]],[21,22,["H4422"]],[22,23,["H5921"]],[23,25,["H5483"]],[25,28,["H6571"]]]},{"k":9429,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,7,["H3318"]],[7,9,["H5221","(H853)"]],[9,11,["H5483"]],[11,13,["H7393"]],[13,15,["H5221"]],[15,17,["H758"]],[17,20,["H1419"]],[20,21,["H4347"]]]},{"k":9430,"v":[[0,3,["H5030"]],[3,4,["H5066"]],[4,5,["H413"]],[5,7,["H4428"]],[7,9,["H3478"]],[9,11,["H559"]],[11,14,["H1980"]],[14,16,["H2388"]],[16,18,["H3045"]],[18,20,["H7200","(H853)"]],[20,21,["H834"]],[21,23,["H6213"]],[23,24,["H3588"]],[24,27,["H8666"]],[27,30,["H8141"]],[30,32,["H4428"]],[32,34,["H758"]],[34,37,["H5927"]],[37,38,["H5921"]],[38,39,[]]]},{"k":9431,"v":[[0,3,["H5650"]],[3,6,["H4428"]],[6,8,["H758"]],[8,9,["H559"]],[9,10,["H413"]],[10,13,["H430"]],[13,15,["H430"]],[15,18,["H2022"]],[18,19,["H5921","H3651"]],[19,22,["H2388"]],[22,23,["H4480"]],[23,25,["H199"]],[25,28,["H3898"]],[28,29,["H854"]],[29,33,["H4334"]],[33,35,["H518"]],[35,39,["H3808","H2388"]],[39,40,["H4480"]],[40,41,[]]]},{"k":9432,"v":[[0,2,["H6213"]],[2,3,["H2088"]],[3,4,["H1697"]],[4,8,["H5493","H4428"]],[8,10,["H376"]],[10,14,["H4480","H4725"]],[14,16,["H7760"]],[16,17,["H6346"]],[17,20,["H8478"]]]},{"k":9433,"v":[[0,2,["H859","H4487"]],[2,5,["H2428"]],[5,8,["H2428"]],[8,12,["H5307","H4480","(H853)"]],[12,13,["H5483"]],[13,15,["H5483"]],[15,17,["H7393"]],[17,19,["H7393"]],[19,24,["H3898"]],[24,28,["H4334"]],[28,30,["H518","H3808"]],[30,34,["H2388"]],[34,35,["H4480"]],[35,39,["H8085"]],[39,42,["H6963"]],[42,44,["H6213"]],[44,45,["H3651"]]]},{"k":9434,"v":[[0,5,["H1961"]],[5,8,["H8666"]],[8,11,["H8141"]],[11,13,["H1130"]],[13,14,["H6485","(H853)"]],[14,16,["H758"]],[16,19,["H5927"]],[19,21,["H663"]],[21,23,["H4421"]],[23,24,["H5973"]],[24,25,["H3478"]]]},{"k":9435,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H6485"]],[7,11,["H3557"]],[11,13,["H1980"]],[13,14,["H7121"]],[14,18,["H1121"]],[18,20,["H3478"]],[20,21,["H2583"]],[21,22,["H5048"]],[22,25,["H8147"]],[25,27,["H2835"]],[27,29,["H5795"]],[29,32,["H758"]],[32,33,["H4390","(H853)"]],[33,35,["H776"]]]},{"k":9436,"v":[[0,3,["H5066"]],[3,5,["H376"]],[5,7,["H430"]],[7,9,["H559"]],[9,10,["H413"]],[10,12,["H4428"]],[12,14,["H3478"]],[14,16,["H559"]],[16,17,["H3541"]],[17,18,["H559"]],[18,20,["H3068"]],[20,21,["H3282","H834"]],[21,23,["H758"]],[23,25,["H559"]],[25,27,["H3068"]],[27,29,["H430"]],[29,32,["H2022"]],[32,34,["H1931"]],[34,36,["H3808"]],[36,37,["H430"]],[37,40,["H6010"]],[40,44,["H5414","(H853)"]],[44,45,["H3605"]],[45,46,["H2088"]],[46,47,["H1419"]],[47,48,["H1995"]],[48,51,["H3027"]],[51,55,["H3045"]],[55,56,["H3588"]],[56,57,["H589"]],[57,60,["H3068"]]]},{"k":9437,"v":[[0,3,["H2583"]],[3,4,["H428"]],[4,6,["H5227"]],[6,8,["H428"]],[8,9,["H7651"]],[9,10,["H3117"]],[10,14,["H1961"]],[14,18,["H7637"]],[18,19,["H3117"]],[19,21,["H4421"]],[21,23,["H7126"]],[23,26,["H1121"]],[26,28,["H3478"]],[28,29,["H5221"]],[29,30,["(H853)"]],[30,32,["H758"]],[32,34,["H3967"]],[34,35,["H505"]],[35,36,["H7273"]],[36,38,["H259"]],[38,39,["H3117"]]]},{"k":9438,"v":[[0,3,["H3498"]],[3,4,["H5127"]],[4,6,["H663"]],[6,7,["H413"]],[7,9,["H5892"]],[9,13,["H2346"]],[13,14,["H5307"]],[14,15,["H5921"]],[15,16,["H6242"]],[16,18,["H7651"]],[18,19,["H505"]],[19,22,["H376"]],[22,25,["H3498"]],[25,27,["H1130"]],[27,28,["H5127"]],[28,30,["H935"]],[30,31,["H413"]],[31,33,["H5892"]],[33,37,["H2315","H2315"]]]},{"k":9439,"v":[[0,3,["H5650"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H2009"]],[7,8,["H4994"]],[8,11,["H8085"]],[11,12,["H3588"]],[12,14,["H4428"]],[14,17,["H1004"]],[17,19,["H3478"]],[19,21,["H2617"]],[21,22,["H4428"]],[22,27,["H4994"]],[27,28,["H7760"]],[28,29,["H8242"]],[29,32,["H4975"]],[32,34,["H2256"]],[34,37,["H7218"]],[37,40,["H3318"]],[40,41,["H413"]],[41,43,["H4428"]],[43,45,["H3478"]],[45,46,["H194"]],[46,49,["H2421","(H853)"]],[49,51,["H5315"]]]},{"k":9440,"v":[[0,3,["H2296"]],[3,4,["H8242"]],[4,7,["H4975"]],[7,10,["H2256"]],[10,13,["H7218"]],[13,15,["H935"]],[15,16,["H413"]],[16,18,["H4428"]],[18,20,["H3478"]],[20,22,["H559"]],[22,24,["H5650"]],[24,25,["H1130"]],[25,26,["H559"]],[26,29,["H4994"]],[29,31,["H5315"]],[31,32,["H2421"]],[32,35,["H559"]],[35,38,["H5750"]],[38,39,["H2416"]],[39,40,["H1931"]],[40,43,["H251"]]]},{"k":9441,"v":[[0,3,["H376"]],[3,6,["H5172"]],[6,12,["H4480"]],[12,16,["H4116"]],[16,17,["H2480"]],[17,21,["H559"]],[21,23,["H251"]],[23,24,["H1130"]],[24,27,["H559"]],[27,28,["H935"]],[28,30,["H3947"]],[30,33,["H1130"]],[33,35,["H3318"]],[35,36,["H413"]],[36,44,["H5927"]],[44,45,["H5921"]],[45,47,["H4818"]]]},{"k":9442,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H5892"]],[7,8,["H834"]],[8,10,["H1"]],[10,11,["H3947"]],[11,12,["H4480","H854"]],[12,14,["H1"]],[14,17,["H7725"]],[17,21,["H7760"]],[21,22,["H2351"]],[22,26,["H1834"]],[26,27,["H834"]],[27,29,["H1"]],[29,30,["H7760"]],[30,32,["H8111"]],[32,36,["H589"]],[36,40,["H7971"]],[40,43,["H1285"]],[43,46,["H3772"]],[46,48,["H1285"]],[48,54,["H7971"]]]},{"k":9443,"v":[[0,3,["H259"]],[3,4,["H376"]],[4,7,["H4480","H1121"]],[7,10,["H5030"]],[10,11,["H559"]],[11,12,["H413"]],[12,14,["H7453"]],[14,17,["H1697"]],[17,20,["H3068"]],[20,21,["H5221"]],[21,25,["H4994"]],[25,28,["H376"]],[28,29,["H3985"]],[29,31,["H5221"]],[31,32,[]]]},{"k":9444,"v":[[0,2,["H559"]],[2,6,["H3282","H834"]],[6,9,["H3808"]],[9,10,["H8085"]],[10,12,["H6963"]],[12,15,["H3068"]],[15,16,["H2009"]],[16,22,["H1980"]],[22,23,["H4480","(H853)"]],[23,26,["H738"]],[26,28,["H5221"]],[28,36,["H1980"]],[36,37,["H4480","H681"]],[37,40,["H738"]],[40,41,["H4672"]],[41,44,["H5221"]],[44,45,[]]]},{"k":9445,"v":[[0,3,["H4672"]],[3,4,["H312"]],[4,5,["H376"]],[5,7,["H559"]],[7,8,["H5221"]],[8,12,["H4994"]],[12,15,["H376"]],[15,16,["H5221"]],[16,21,["H5221"]],[21,23,["H6481"]],[23,24,[]]]},{"k":9446,"v":[[0,3,["H5030"]],[3,4,["H1980"]],[4,6,["H5975"]],[6,9,["H4428"]],[9,10,["H5921"]],[10,12,["H1870"]],[12,15,["H2664"]],[15,17,["H666"]],[17,18,["H5921"]],[18,20,["H5869"]]]},{"k":9447,"v":[[0,2,["H1961"]],[2,4,["H4428"]],[4,6,["H5674"]],[6,7,["H1931"]],[7,8,["H6817"]],[8,9,["H413"]],[9,11,["H4428"]],[11,14,["H559"]],[14,16,["H5650"]],[16,18,["H3318"]],[18,21,["H7130"]],[21,24,["H4421"]],[24,26,["H2009"]],[26,28,["H376"]],[28,30,["H5493"]],[30,32,["H935"]],[32,34,["H376"]],[34,35,["H413"]],[35,38,["H559"]],[38,39,["H8104","(H853)"]],[39,40,["H2088"]],[40,41,["H376"]],[41,42,["H518"]],[42,48,["H6485","H6485"]],[48,52,["H5315"]],[52,53,["H1961"]],[53,54,["H8478"]],[54,56,["H5315"]],[56,57,["H176"]],[57,61,["H8254"]],[61,63,["H3603"]],[63,65,["H3701"]]]},{"k":9448,"v":[[0,4,["H5650"]],[4,5,["H1961"]],[5,6,["H6213"]],[6,7,["H2008"]],[7,9,["H2008"]],[9,10,["H1931"]],[10,12,["H369"]],[12,15,["H4428"]],[15,17,["H3478"]],[17,18,["H559"]],[18,19,["H413"]],[19,21,["H3651"]],[21,24,["H4941"]],[24,26,["H859"]],[26,28,["H2782"]],[28,29,[]]]},{"k":9449,"v":[[0,3,["H4116"]],[3,5,["H5493","(H853)"]],[5,7,["H666"]],[7,9,["H4480","H5921"]],[9,11,["H5869"]],[11,14,["H4428"]],[14,16,["H3478"]],[16,17,["H5234"]],[17,19,["H3588"]],[19,20,["H1931"]],[20,24,["H4480","H5030"]]]},{"k":9450,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,10,["H3282"]],[10,14,["H7971"]],[14,18,["H4480","H3027","(H853)"]],[18,20,["H376"]],[20,26,["H2764"]],[26,29,["H5315"]],[29,31,["H1961"]],[31,32,["H8478"]],[32,34,["H5315"]],[34,37,["H5971"]],[37,38,["H8478"]],[38,40,["H5971"]]]},{"k":9451,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H1980"]],[6,7,["H5921"]],[7,9,["H1004"]],[9,10,["H5620"]],[10,12,["H2198"]],[12,14,["H935"]],[14,16,["H8111"]]]},{"k":9452,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H428"]],[7,8,["H1697"]],[8,10,["H5022"]],[10,12,["H3158"]],[12,13,["H1961"]],[13,15,["H3754"]],[15,16,["H834"]],[16,19,["H3157"]],[19,20,["H681"]],[20,23,["H1964"]],[23,25,["H256"]],[25,26,["H4428"]],[26,28,["H8111"]]]},{"k":9453,"v":[[0,2,["H256"]],[2,3,["H1696"]],[3,4,["H413"]],[4,5,["H5022"]],[5,6,["H559"]],[6,7,["H5414"]],[7,8,["(H853)"]],[8,10,["H3754"]],[10,14,["H1961"]],[14,18,["H1588"]],[18,20,["H3419"]],[20,21,["H3588"]],[21,22,["H1931"]],[22,25,["H7138","H681"]],[25,27,["H1004"]],[27,31,["H5414"]],[31,33,["H8478"]],[33,36,["H2896"]],[36,37,["H3754"]],[37,38,["H4480"]],[38,41,["H518"]],[41,46,["H2895","H5869"]],[46,49,["H5414"]],[49,52,["H4242"]],[52,54,["H2088"]],[54,56,["H3701"]]]},{"k":9454,"v":[[0,2,["H5022"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H256"]],[5,7,["H4480","H3068"]],[7,8,["H2486"]],[8,14,["H4480","H5414","(H853)"]],[14,16,["H5159"]],[16,19,["H1"]],[19,21,[]]]},{"k":9455,"v":[[0,2,["H256"]],[2,3,["H935"]],[3,4,["H413"]],[4,6,["H1004"]],[6,7,["H5620"]],[7,9,["H2198"]],[9,10,["H5921"]],[10,13,["H1697"]],[13,14,["H834"]],[14,15,["H5022"]],[15,17,["H3158"]],[17,19,["H1696"]],[19,20,["H413"]],[20,25,["H559"]],[25,28,["H3808"]],[28,29,["H5414"]],[29,30,["(H853)"]],[30,32,["H5159"]],[32,35,["H1"]],[35,40,["H7901"]],[40,41,["H5921"]],[41,43,["H4296"]],[43,46,["H5437","(H853)"]],[46,48,["H6440"]],[48,51,["H398"]],[51,52,["H3808"]],[52,53,["H3899"]]]},{"k":9456,"v":[[0,2,["H348"]],[2,4,["H802"]],[4,5,["H935"]],[5,6,["H413"]],[6,9,["H1696"]],[9,10,["H413"]],[10,12,["H4100","H2088"]],[12,15,["H7307"]],[15,17,["H5620"]],[17,20,["H398"]],[20,21,["H369"]],[21,22,["H3899"]]]},{"k":9457,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H3588"]],[6,8,["H1696"]],[8,9,["H413"]],[9,10,["H5022"]],[10,12,["H3158"]],[12,14,["H559"]],[14,17,["H5414"]],[17,18,["(H853)"]],[18,20,["H3754"]],[20,22,["H3701"]],[22,23,["H176"]],[23,25,["H518"]],[25,27,["H2654"]],[27,28,["H859"]],[28,31,["H5414"]],[31,34,["H3754"]],[34,35,["H8478"]],[35,39,["H559"]],[39,42,["H3808"]],[42,43,["H5414"]],[43,44,["(H853)"]],[44,46,["H3754"]]]},{"k":9458,"v":[[0,2,["H348"]],[2,4,["H802"]],[4,5,["H559"]],[5,6,["H413"]],[6,9,["H859"]],[9,10,["H6258"]],[10,11,["H6213","H5921"]],[11,13,["H4410"]],[13,15,["H3478"]],[15,16,["H6965"]],[16,18,["H398"]],[18,19,["H3899"]],[19,23,["H3820"]],[23,25,["H3190"]],[25,26,["H589"]],[26,28,["H5414"]],[28,29,["(H853)"]],[29,31,["H3754"]],[31,33,["H5022"]],[33,35,["H3158"]]]},{"k":9459,"v":[[0,3,["H3789"]],[3,4,["H5612"]],[4,6,["H256"]],[6,7,["H8034"]],[7,9,["H2856"]],[9,13,["H2368"]],[13,15,["H7971"]],[15,17,["H5612"]],[17,18,["H413"]],[18,20,["H2205"]],[20,22,["H413"]],[22,24,["H2715"]],[24,25,["H834"]],[25,29,["H5892"]],[29,30,["H3427"]],[30,31,["H854"]],[31,32,["H5022"]]]},{"k":9460,"v":[[0,3,["H3789"]],[3,6,["H5612"]],[6,7,["H559"]],[7,8,["H7121"]],[8,10,["H6685"]],[10,12,["H3427","(H853)"]],[12,13,["H5022"]],[13,15,["H7218"]],[15,18,["H5971"]]]},{"k":9461,"v":[[0,2,["H3427"]],[2,3,["H8147"]],[3,4,["H376"]],[4,5,["H1121"]],[5,7,["H1100"]],[7,8,["H5048"]],[8,13,["H5749"]],[13,15,["H559"]],[15,18,["H1288"]],[18,19,["H430"]],[19,22,["H4428"]],[22,27,["H3318"]],[27,29,["H5619"]],[29,34,["H4191"]]]},{"k":9462,"v":[[0,3,["H376"]],[3,6,["H5892"]],[6,9,["H2205"]],[9,12,["H2715"]],[12,13,["H834"]],[13,16,["H3427"]],[16,19,["H5892"]],[19,20,["H6213"]],[20,21,["H834"]],[21,22,["H348"]],[22,24,["H7971"]],[24,25,["H413"]],[25,28,["H834"]],[28,31,["H3789"]],[31,34,["H5612"]],[34,35,["H834"]],[35,38,["H7971"]],[38,39,["H413"]],[39,40,[]]]},{"k":9463,"v":[[0,2,["H7121"]],[2,4,["H6685"]],[4,6,["H3427","(H853)"]],[6,7,["H5022"]],[7,9,["H7218"]],[9,12,["H5971"]]]},{"k":9464,"v":[[0,4,["H935"]],[4,5,["H8147"]],[5,6,["H376"]],[6,7,["H1121"]],[7,9,["H1100"]],[9,11,["H3427"]],[11,12,["H5048"]],[12,16,["H376"]],[16,18,["H1100"]],[18,20,["H5749"]],[20,23,["(H853)"]],[23,24,["H5022"]],[24,27,["H5048"]],[27,30,["H5971"]],[30,31,["H559"]],[31,32,["H5022"]],[32,34,["H1288"]],[34,35,["H430"]],[35,38,["H4428"]],[38,43,["H3318"]],[43,45,["H4480","H2351"]],[45,47,["H5892"]],[47,49,["H5619"]],[49,52,["H68"]],[52,55,["H4191"]]]},{"k":9465,"v":[[0,3,["H7971"]],[3,4,["H413"]],[4,5,["H348"]],[5,6,["H559"]],[6,7,["H5022"]],[7,9,["H5619"]],[9,12,["H4191"]]]},{"k":9466,"v":[[0,5,["H1961"]],[5,7,["H348"]],[7,8,["H8085"]],[8,9,["H3588"]],[9,10,["H5022"]],[10,12,["H5619"]],[12,15,["H4191"]],[15,17,["H348"]],[17,18,["H559"]],[18,19,["H413"]],[19,20,["H256"]],[20,21,["H6965"]],[21,23,["H3423"]],[23,24,["(H853)"]],[24,26,["H3754"]],[26,28,["H5022"]],[28,30,["H3158"]],[30,31,["H834"]],[31,33,["H3985"]],[33,35,["H5414"]],[35,38,["H3701"]],[38,39,["H3588"]],[39,40,["H5022"]],[40,42,["H369"]],[42,43,["H2416"]],[43,44,["H3588"]],[44,45,["H4191"]]]},{"k":9467,"v":[[0,5,["H1961"]],[5,7,["H256"]],[7,8,["H8085"]],[8,9,["H3588"]],[9,10,["H5022"]],[10,12,["H4191"]],[12,14,["H256"]],[14,16,["H6965"]],[16,19,["H3381"]],[19,20,["H413"]],[20,22,["H3754"]],[22,24,["H5022"]],[24,26,["H3158"]],[26,29,["H3423"]],[29,31,[]]]},{"k":9468,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H452"]],[9,11,["H8664"]],[11,12,["H559"]]]},{"k":9469,"v":[[0,1,["H6965"]],[1,3,["H3381"]],[3,5,["H7121"]],[5,6,["H256"]],[6,7,["H4428"]],[7,9,["H3478"]],[9,10,["H834"]],[10,13,["H8111"]],[13,14,["H2009"]],[14,19,["H3754"]],[19,21,["H5022"]],[21,22,["H834","H8033"]],[22,26,["H3381"]],[26,28,["H3423"]],[28,29,[]]]},{"k":9470,"v":[[0,4,["H1696"]],[4,5,["H413"]],[5,7,["H559"]],[7,8,["H3541"]],[8,9,["H559"]],[9,11,["H3068"]],[11,14,["H7523"]],[14,16,["H1571"]],[16,18,["H3423"]],[18,22,["H1696"]],[22,23,["H413"]],[23,25,["H559"]],[25,26,["H3541"]],[26,27,["H559"]],[27,29,["H3068"]],[29,32,["H4725"]],[32,33,["H834"]],[33,34,["H3611"]],[34,35,["H3952","(H853)"]],[35,37,["H1818"]],[37,39,["H5022"]],[39,41,["H3611"]],[41,42,["H3952","(H853)"]],[42,44,["H1818"]],[44,45,["H1571"]],[45,46,["H859"]]]},{"k":9471,"v":[[0,2,["H256"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H452"]],[5,8,["H4672"]],[8,12,["H341"]],[12,15,["H559"]],[15,18,["H4672"]],[18,20,["H3282"]],[20,23,["H4376"]],[23,26,["H6213"]],[26,27,["H7451"]],[27,30,["H5869"]],[30,33,["H3068"]]]},{"k":9472,"v":[[0,1,["H2009"]],[1,4,["H935"]],[4,5,["H7451"]],[5,6,["H413"]],[6,11,["H1197"]],[11,13,["H310"]],[13,17,["H3772"]],[17,19,["H256"]],[19,22,["H8366"]],[22,25,["H7023"]],[25,31,["H6113"]],[31,33,["H5800"]],[33,35,["H3478"]]]},{"k":9473,"v":[[0,3,["H5414","(H853)"]],[3,5,["H1004"]],[5,8,["H1004"]],[8,10,["H3379"]],[10,12,["H1121"]],[12,14,["H5028"]],[14,18,["H1004"]],[18,20,["H1201"]],[20,22,["H1121"]],[22,24,["H281"]],[24,25,["H413"]],[25,27,["H3708"]],[27,28,["H834"]],[28,34,["H3707"]],[34,39,["H2398","(H853)","H3478"]]]},{"k":9474,"v":[[0,3,["H348"]],[3,4,["H1571"]],[4,5,["H1696"]],[5,7,["H3068"]],[7,8,["H559"]],[8,10,["H3611"]],[10,12,["H398","(H853)"]],[12,13,["H348"]],[13,16,["H2426"]],[16,18,["H3157"]]]},{"k":9475,"v":[[0,3,["H4191"]],[3,5,["H256"]],[5,8,["H5892"]],[8,10,["H3611"]],[10,12,["H398"]],[12,16,["H4191"]],[16,19,["H7704"]],[19,22,["H5775"]],[22,25,["H8064"]],[25,26,["H398"]]]},{"k":9476,"v":[[0,1,["H7535"]],[1,3,["H1961"]],[3,4,["H3808"]],[4,7,["H256"]],[7,8,["H834"]],[8,11,["H4376"]],[11,13,["H6213"]],[13,14,["H7451"]],[14,17,["H5869"]],[17,20,["H3068"]],[20,21,["H834","(H853)"]],[21,22,["H348"]],[22,24,["H802"]],[24,26,["H5496"]]]},{"k":9477,"v":[[0,4,["H3966"]],[4,5,["H8581"]],[5,7,["H1980","H310"]],[7,8,["H1544"]],[8,11,["H3605"]],[11,13,["H834"]],[13,14,["H6213"]],[14,16,["H567"]],[16,17,["H834"]],[17,19,["H3068"]],[19,21,["H3423"]],[21,22,["H4480","H6440"]],[22,24,["H1121"]],[24,26,["H3478"]]]},{"k":9478,"v":[[0,5,["H1961"]],[5,7,["H256"]],[7,8,["H8085","(H853)"]],[8,9,["H428"]],[9,10,["H1697"]],[10,13,["H7167"]],[13,15,["H899"]],[15,17,["H7760"]],[17,18,["H8242"]],[18,19,["H5921"]],[19,21,["H1320"]],[21,23,["H6684"]],[23,25,["H7901"]],[25,27,["H8242"]],[27,29,["H1980"]],[29,30,["H328"]]]},{"k":9479,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H452"]],[9,11,["H8664"]],[11,12,["H559"]]]},{"k":9480,"v":[[0,1,["H7200"]],[1,3,["H3588"]],[3,4,["H256"]],[4,6,["H3665"]],[6,7,["H4480","H6440"]],[7,9,["H3282","H3588"]],[9,12,["H3665"]],[12,13,["H4480","H6440"]],[13,17,["H3808"]],[17,18,["H935"]],[18,20,["H7451"]],[20,23,["H3117"]],[23,27,["H1121"]],[27,28,["H3117"]],[28,31,["H935"]],[31,33,["H7451"]],[33,34,["H5921"]],[34,36,["H1004"]]]},{"k":9481,"v":[[0,3,["H3427"]],[3,4,["H7969"]],[4,5,["H8141"]],[5,6,["H369"]],[6,7,["H4421"]],[7,8,["H996"]],[8,9,["H758"]],[9,11,["H3478"]]]},{"k":9482,"v":[[0,5,["H1961"]],[5,8,["H7992"]],[8,9,["H8141"]],[9,11,["H3092"]],[11,13,["H4428"]],[13,15,["H3063"]],[15,17,["H3381"]],[17,18,["H413"]],[18,20,["H4428"]],[20,22,["H3478"]]]},{"k":9483,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H5650"]],[9,10,["H3045"]],[10,12,["H3588"]],[12,15,["H7433"]],[15,19,["H587"]],[19,21,["H2814"]],[21,23,["H4480","H3947"]],[23,29,["H4480","H3027"]],[29,32,["H4428"]],[32,34,["H758"]]]},{"k":9484,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H3092"]],[5,8,["H1980"]],[8,9,["H854"]],[9,12,["H4421"]],[12,14,["H7433"]],[14,16,["H3092"]],[16,17,["H559"]],[17,18,["H413"]],[18,20,["H4428"]],[20,22,["H3478"]],[22,29,["H5971"]],[29,32,["H5971"]],[32,34,["H5483"]],[34,37,["H5483"]]]},{"k":9485,"v":[[0,2,["H3092"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,8,["H3478"]],[8,9,["H1875"]],[9,12,["H4994"]],[12,13,["(H853)"]],[13,15,["H1697"]],[15,18,["H3068"]],[18,20,["H3117"]]]},{"k":9486,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,9,["H6908","(H853)","H5030"]],[9,11,["H702"]],[11,12,["H3967"]],[12,13,["H376"]],[13,15,["H559"]],[15,16,["H413"]],[16,20,["H1980"]],[20,21,["H5921"]],[21,22,["H7433"]],[22,24,["H4421"]],[24,25,["H518"]],[25,28,["H2308"]],[28,31,["H559"]],[31,33,["H5927"]],[33,36,["H136"]],[36,38,["H5414"]],[38,42,["H3027"]],[42,45,["H4428"]]]},{"k":9487,"v":[[0,2,["H3092"]],[2,3,["H559"]],[3,6,["H369"]],[6,7,["H6311"]],[7,9,["H5030"]],[9,12,["H3068"]],[12,13,["H5750"]],[13,17,["H1875"]],[17,18,["H4480","H854"]],[18,19,[]]]},{"k":9488,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3092"]],[8,11,["H5750"]],[11,12,["H259"]],[12,13,["H376"]],[13,14,["H4321"]],[14,16,["H1121"]],[16,18,["H3229"]],[18,19,["H4480","H854"]],[19,23,["H1875"]],[23,24,["(H853)"]],[24,26,["H3068"]],[26,28,["H589"]],[28,29,["H8130"]],[29,31,["H3588"]],[31,34,["H3808"]],[34,35,["H5012"]],[35,36,["H2896"]],[36,37,["H5921"]],[37,39,["H3588","H518"]],[39,40,["H7451"]],[40,42,["H3092"]],[42,43,["H559"]],[43,45,["H408"]],[45,47,["H4428"]],[47,48,["H559"]],[48,49,["H3651"]]]},{"k":9489,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H7121","H413"]],[6,7,["H259"]],[7,8,["H5631"]],[8,10,["H559"]],[10,11,["H4116"]],[11,13,["H4321"]],[13,15,["H1121"]],[15,17,["H3229"]]]},{"k":9490,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,7,["H3092"]],[7,9,["H4428"]],[9,11,["H3063"]],[11,12,["H3427"]],[12,13,["H376"]],[13,14,["H5921"]],[14,16,["H3678"]],[16,19,["H3847"]],[19,21,["H899"]],[21,25,["H1637"]],[25,28,["H6607"]],[28,31,["H8179"]],[31,33,["H8111"]],[33,35,["H3605"]],[35,37,["H5030"]],[37,38,["H5012"]],[38,39,["H6440"]],[39,40,[]]]},{"k":9491,"v":[[0,2,["H6667"]],[2,4,["H1121"]],[4,6,["H3668"]],[6,7,["H6213"]],[7,9,["H7161"]],[9,11,["H1270"]],[11,14,["H559"]],[14,15,["H3541"]],[15,16,["H559"]],[16,18,["H3068"]],[18,20,["H428"]],[20,23,["H5055","(H853)"]],[23,25,["H758"]],[25,26,["H5704"]],[26,29,["H3615"]],[29,30,[]]]},{"k":9492,"v":[[0,2,["H3605"]],[2,4,["H5030"]],[4,5,["H5012"]],[5,6,["H3651"]],[6,7,["H559"]],[7,9,["H5927"]],[9,11,["H7433"]],[11,13,["H6743"]],[13,16,["H3068"]],[16,18,["H5414"]],[18,22,["H4428"]],[22,23,["H3027"]]]},{"k":9493,"v":[[0,3,["H4397"]],[3,4,["H834"]],[4,6,["H1980"]],[6,8,["H7121"]],[8,9,["H4321"]],[9,10,["H1696"]],[10,11,["H413"]],[11,13,["H559"]],[13,14,["H2009"]],[14,15,["H4994"]],[15,17,["H1697"]],[17,20,["H5030"]],[20,22,["H2896"]],[22,23,["H413"]],[23,25,["H4428"]],[25,27,["H259"]],[27,28,["H6310"]],[28,31,["H1697"]],[31,34,["H4994"]],[34,35,["H1961"]],[35,38,["H1697"]],[38,40,["H259"]],[40,42,["H4480"]],[42,44,["H1696"]],[44,48,["H2896"]]]},{"k":9494,"v":[[0,2,["H4321"]],[2,3,["H559"]],[3,6,["H3068"]],[6,7,["H2416"]],[7,8,["H834"]],[8,10,["H3068"]],[10,11,["H559"]],[11,12,["H413"]],[12,17,["H1696"]]]},{"k":9495,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H4428"]],[6,9,["H4428"]],[9,10,["H559"]],[10,11,["H413"]],[11,13,["H4321"]],[13,16,["H1980"]],[16,17,["H413"]],[17,18,["H7433"]],[18,20,["H4421"]],[20,21,["H518"]],[21,24,["H2308"]],[24,27,["H559","H413"]],[27,29,["H5927"]],[29,31,["H6743"]],[31,34,["H3068"]],[34,36,["H5414"]],[36,40,["H3027"]],[40,43,["H4428"]]]},{"k":9496,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H5704"]],[7,8,["H4100"]],[8,9,["H6471"]],[9,11,["H589"]],[11,12,["H7650"]],[12,14,["H834"]],[14,16,["H1696","H413"]],[16,18,["H3808"]],[18,19,["H7535"]],[19,23,["H571"]],[23,26,["H8034"]],[26,29,["H3068"]]]},{"k":9497,"v":[[0,3,["H559"]],[3,5,["H7200","(H853)"]],[5,6,["H3605"]],[6,7,["H3478"]],[7,8,["H6327"]],[8,9,["H413"]],[9,11,["H2022"]],[11,13,["H6629"]],[13,14,["H834"]],[14,16,["H369"]],[16,18,["H7462"]],[18,21,["H3068"]],[21,22,["H559"]],[22,23,["H428"]],[23,25,["H3808"]],[25,26,["H113"]],[26,29,["H7725"]],[29,31,["H376"]],[31,34,["H1004"]],[34,36,["H7965"]]]},{"k":9498,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3092"]],[8,11,["H3808"]],[11,12,["H559","H413"]],[12,17,["H5012"]],[17,18,["H3808"]],[18,19,["H2896"]],[19,20,["H5921"]],[20,22,["H3588","H518"]],[22,23,["H7451"]]]},{"k":9499,"v":[[0,3,["H559"]],[3,4,["H8085"]],[4,6,["H3651"]],[6,8,["H1697"]],[8,11,["H3068"]],[11,13,["H7200","(H853)"]],[13,15,["H3068"]],[15,16,["H3427"]],[16,17,["H5921"]],[17,19,["H3678"]],[19,21,["H3605"]],[21,23,["H6635"]],[23,25,["H8064"]],[25,26,["H5975"]],[26,27,["H5921"]],[27,32,["H4480","H3225"]],[32,36,["H4480","H8040"]]]},{"k":9500,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H4310"]],[5,7,["H6601","(H853)"]],[7,8,["H256"]],[8,13,["H5927"]],[13,15,["H5307"]],[15,17,["H7433"]],[17,19,["H2088"]],[19,20,["H559"]],[20,23,["H3541"]],[23,25,["H2088"]],[25,26,["H559"]],[26,29,["H3541"]]]},{"k":9501,"v":[[0,4,["H3318"]],[4,6,["H7307"]],[6,8,["H5975"]],[8,9,["H6440"]],[9,11,["H3068"]],[11,13,["H559"]],[13,14,["H589"]],[14,16,["H6601"]],[16,17,[]]]},{"k":9502,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H4100"]],[7,10,["H559"]],[10,14,["H3318"]],[14,18,["H1961"]],[18,20,["H8267"]],[20,21,["H7307"]],[21,24,["H6310"]],[24,26,["H3605"]],[26,28,["H5030"]],[28,31,["H559"]],[31,34,["H6601"]],[34,37,["H3201"]],[37,38,["H1571"]],[38,40,["H3318"]],[40,42,["H6213"]],[42,43,["H3651"]]]},{"k":9503,"v":[[0,1,["H6258"]],[1,3,["H2009"]],[3,5,["H3068"]],[5,7,["H5414"]],[7,9,["H8267"]],[9,10,["H7307"]],[10,13,["H6310"]],[13,15,["H3605"]],[15,16,["H428"]],[16,18,["H5030"]],[18,21,["H3068"]],[21,23,["H1696"]],[23,24,["H7451"]],[24,25,["H5921"]],[25,26,[]]]},{"k":9504,"v":[[0,2,["H6667"]],[2,4,["H1121"]],[4,6,["H3668"]],[6,8,["H5066"]],[8,10,["H5221","(H853)"]],[10,11,["H4321"]],[11,12,["H5921"]],[12,14,["H3895"]],[14,16,["H559"]],[16,17,["H335"]],[17,18,["H2088"]],[18,19,["H5674"]],[19,21,["H7307"]],[21,24,["H3068"]],[24,25,["H4480","H854"]],[25,28,["H1696"]],[28,29,["H854"]],[29,30,[]]]},{"k":9505,"v":[[0,2,["H4321"]],[2,3,["H559"]],[3,4,["H2009"]],[4,7,["H7200"]],[7,9,["H1931"]],[9,10,["H3117"]],[10,11,["H834"]],[11,15,["H935"]],[15,17,["H2315"]],[17,18,["H2315"]],[18,21,["H2247"]]]},{"k":9506,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H3947","(H853)"]],[7,8,["H4321"]],[8,12,["H7725"]],[12,13,["H413"]],[13,14,["H526"]],[14,16,["H8269"]],[16,19,["H5892"]],[19,21,["H413"]],[21,22,["H3101"]],[22,24,["H4428"]],[24,25,["H1121"]]]},{"k":9507,"v":[[0,2,["H559"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H4428"]],[6,7,["H7760","(H853)"]],[7,8,["H2088"]],[8,12,["H1004","H3608"]],[12,14,["H398"]],[14,17,["H3899"]],[17,19,["H3906"]],[19,22,["H4325"]],[22,24,["H3906"]],[24,25,["H5704"]],[25,27,["H935"]],[27,29,["H7965"]]]},{"k":9508,"v":[[0,2,["H4321"]],[2,3,["H559"]],[3,4,["H518"]],[4,8,["H7725","H7725"]],[8,10,["H7965"]],[10,12,["H3068"]],[12,14,["H3808"]],[14,15,["H1696"]],[15,20,["H559"]],[20,21,["H8085"]],[21,23,["H5971"]],[23,24,["H3605"]],[24,27,[]]]},{"k":9509,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,7,["H3092"]],[7,9,["H4428"]],[9,11,["H3063"]],[11,13,["H5927"]],[13,15,["H7433"]]]},{"k":9510,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3092"]],[8,12,["H2664"]],[12,14,["H935"]],[14,17,["H4421"]],[17,19,["H3847"]],[19,20,["H859"]],[20,23,["H899"]],[23,26,["H4428"]],[26,28,["H3478"]],[28,30,["H2664"]],[30,32,["H935"]],[32,35,["H4421"]]]},{"k":9511,"v":[[0,3,["H4428"]],[3,5,["H758"]],[5,6,["H6680","(H853)"]],[6,7,["H834"]],[7,8,["H7970"]],[8,10,["H8147"]],[10,15,["H8269"]],[15,16,["H834"]],[16,17,["H7393"]],[17,18,["H559"]],[18,19,["H3898"]],[19,20,["H3808"]],[20,21,["H854"]],[21,22,["H6996"]],[22,24,["H1419"]],[24,25,["H3588","H518"]],[25,26,["H905"]],[26,27,["H854"]],[27,29,["H4428"]],[29,31,["H3478"]]]},{"k":9512,"v":[[0,5,["H1961"]],[5,8,["H8269"]],[8,11,["H7393"]],[11,12,["H7200","(H853)"]],[12,13,["H3092"]],[13,15,["H1992"]],[15,16,["H559"]],[16,17,["H389"]],[17,18,["H1931"]],[18,21,["H4428"]],[21,23,["H3478"]],[23,27,["H5493"]],[27,29,["H3898"]],[29,30,["H5921"]],[30,33,["H3092"]],[33,35,["H2199"]]]},{"k":9513,"v":[[0,5,["H1961"]],[5,8,["H8269"]],[8,11,["H7393"]],[11,12,["H7200"]],[12,13,["H3588"]],[13,14,["H1931"]],[14,16,["H3808"]],[16,18,["H4428"]],[18,20,["H3478"]],[20,24,["H7725"]],[24,26,["H4480","H310"]],[26,27,[]]]},{"k":9514,"v":[[0,4,["H376"]],[4,5,["H4900"]],[5,7,["H7198"]],[7,10,["H8537"]],[10,12,["H5221","(H853)"]],[12,14,["H4428"]],[14,16,["H3478"]],[16,17,["H996"]],[17,19,["H1694"]],[19,22,["H8302"]],[22,25,["H559"]],[25,31,["H7395"]],[31,32,["H2015"]],[32,34,["H3027"]],[34,38,["H3318"]],[38,39,["H4480"]],[39,41,["H4264"]],[41,42,["H3588"]],[42,45,["H2470"]]]},{"k":9515,"v":[[0,3,["H4421"]],[3,4,["H5927"]],[4,5,["H1931"]],[5,6,["H3117"]],[6,9,["H4428"]],[9,10,["H1961"]],[10,12,["H5975"]],[12,15,["H4818"]],[15,16,["H5227"]],[16,18,["H758"]],[18,20,["H4191"]],[20,22,["H6153"]],[22,25,["H1818"]],[25,27,["H3332"]],[27,30,["H4347"]],[30,31,["H413"]],[31,33,["H2436"]],[33,36,["H7393"]]]},{"k":9516,"v":[[0,3,["H5674"]],[3,5,["H7440"]],[5,8,["H4264"]],[8,12,["H935"]],[12,15,["H8121"]],[15,16,["H559"]],[16,18,["H376"]],[18,19,["H413"]],[19,21,["H5892"]],[21,24,["H376"]],[24,25,["H413"]],[25,28,["H776"]]]},{"k":9517,"v":[[0,3,["H4428"]],[3,4,["H4191"]],[4,7,["H935"]],[7,9,["H8111"]],[9,12,["H6912","(H853)"]],[12,14,["H4428"]],[14,16,["H8111"]]]},{"k":9518,"v":[[0,3,["H7857","(H853)"]],[3,5,["H7393"]],[5,6,["H5921"]],[6,8,["H1295"]],[8,10,["H8111"]],[10,13,["H3611"]],[13,15,["H3952","(H853)"]],[15,17,["H1818"]],[17,20,["H7364"]],[20,22,["H2185"]],[22,26,["H1697"]],[26,29,["H3068"]],[29,30,["H834"]],[30,32,["H1696"]]]},{"k":9519,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H256"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,16,["H8127"]],[16,17,["H1004"]],[17,18,["H834"]],[18,20,["H1129"]],[20,22,["H3605"]],[22,24,["H5892"]],[24,25,["H834"]],[25,27,["H1129"]],[27,29,["H1992"]],[29,30,["H3808"]],[30,31,["H3789"]],[31,32,["H5921"]],[32,34,["H5612"]],[34,37,["H1697","H3117"]],[37,40,["H4428"]],[40,42,["H3478"]]]},{"k":9520,"v":[[0,2,["H256"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,8,["H274"]],[8,10,["H1121"]],[10,11,["H4427"]],[11,14,["H8478"]]]},{"k":9521,"v":[[0,2,["H3092"]],[2,4,["H1121"]],[4,6,["H609"]],[6,9,["H4427"]],[9,10,["H5921"]],[10,11,["H3063"]],[11,14,["H702"]],[14,15,["H8141"]],[15,17,["H256"]],[17,18,["H4428"]],[18,20,["H3478"]]]},{"k":9522,"v":[[0,1,["H3092"]],[1,3,["H7970"]],[3,5,["H2568"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H6242"]],[16,18,["H2568"]],[18,19,["H8141"]],[19,21,["H3389"]],[21,24,["H517"]],[24,25,["H8034"]],[25,27,["H5806"]],[27,29,["H1323"]],[29,31,["H7977"]]]},{"k":9523,"v":[[0,3,["H1980"]],[3,5,["H3605"]],[5,7,["H1870"]],[7,9,["H609"]],[9,11,["H1"]],[11,15,["H3808","H5493"]],[15,16,["H4480"]],[16,18,["H6213"]],[18,22,["H3477"]],[22,25,["H5869"]],[25,28,["H3068"]],[28,29,["H389"]],[29,32,["H1116"]],[32,34,["H3808"]],[34,36,["H5493"]],[36,39,["H5971"]],[39,40,["H2076"]],[40,43,["H6999"]],[43,44,["H5750"]],[44,48,["H1116"]]]},{"k":9524,"v":[[0,2,["H3092"]],[2,4,["H7999"]],[4,5,["H5973"]],[5,7,["H4428"]],[7,9,["H3478"]]]},{"k":9525,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3092"]],[8,11,["H1369"]],[11,12,["H834"]],[12,14,["H6213"]],[14,16,["H834"]],[16,18,["H3898"]],[18,20,["H1992"]],[20,21,["H3808"]],[21,22,["H3789"]],[22,23,["H5921"]],[23,25,["H5612"]],[25,28,["H1697","H3117"]],[28,31,["H4428"]],[31,33,["H3063"]]]},{"k":9526,"v":[[0,3,["H3499"]],[3,6,["H6945"]],[6,7,["H834"]],[7,8,["H7604"]],[8,11,["H3117"]],[11,14,["H1"]],[14,15,["H609"]],[15,17,["H1197"]],[17,19,["H4480"]],[19,21,["H776"]]]},{"k":9527,"v":[[0,4,["H369"]],[4,5,["H4428"]],[5,7,["H123"]],[7,9,["H5324"]],[9,11,["H4428"]]]},{"k":9528,"v":[[0,1,["H3092"]],[1,2,["H6213"]],[2,3,["H591"]],[3,5,["H8659"]],[5,7,["H1980"]],[7,9,["H211"]],[9,11,["H2091"]],[11,14,["H1980"]],[14,15,["H3808"]],[15,16,["H3588"]],[16,18,["H591"]],[18,20,["H7665"]],[20,22,["H6100"]]]},{"k":9529,"v":[[0,1,["H227"]],[1,2,["H559"]],[2,3,["H274"]],[3,5,["H1121"]],[5,7,["H256"]],[7,8,["H413"]],[8,9,["H3092"]],[9,12,["H5650"]],[12,13,["H1980"]],[13,14,["H5973"]],[14,16,["H5650"]],[16,19,["H591"]],[19,21,["H3092"]],[21,22,["H14"]],[22,23,["H3808"]]]},{"k":9530,"v":[[0,2,["H3092"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,10,["H5973"]],[10,12,["H1"]],[12,15,["H5892"]],[15,17,["H1732"]],[17,19,["H1"]],[19,21,["H3088"]],[21,23,["H1121"]],[23,24,["H4427"]],[24,27,["H8478"]]]},{"k":9531,"v":[[0,1,["H274"]],[1,3,["H1121"]],[3,5,["H256"]],[5,8,["H4427"]],[8,9,["H5921"]],[9,10,["H3478"]],[10,12,["H8111"]],[12,14,["H7651","H6240"]],[14,15,["H8141"]],[15,17,["H3092"]],[17,18,["H4428"]],[18,20,["H3063"]],[20,22,["H4427"]],[22,24,["H8141"]],[24,25,["H5921"]],[25,26,["H3478"]]]},{"k":9532,"v":[[0,3,["H6213"]],[3,4,["H7451"]],[4,7,["H5869"]],[7,10,["H3068"]],[10,12,["H1980"]],[12,15,["H1870"]],[15,18,["H1"]],[18,22,["H1870"]],[22,25,["H517"]],[25,29,["H1870"]],[29,31,["H3379"]],[31,33,["H1121"]],[33,35,["H5028"]],[35,36,["H834"]],[36,40,["H2398","(H853)","H3478"]]]},{"k":9533,"v":[[0,3,["H5647","(H853)"]],[3,4,["H1168"]],[4,6,["H7812"]],[6,11,["H3707","(H853)"]],[11,13,["H3068"]],[13,14,["H430"]],[14,16,["H3478"]],[16,19,["H3605"]],[19,20,["H834"]],[20,22,["H1"]],[22,24,["H6213"]]]},{"k":9534,"v":[[0,2,["H4124"]],[2,3,["H6586"]],[3,5,["H3478"]],[5,6,["H310"]],[6,8,["H4194"]],[8,10,["H256"]]]},{"k":9535,"v":[[0,2,["H274"]],[2,4,["H5307"]],[4,5,["H1157"]],[5,7,["H7639"]],[7,11,["H5944"]],[11,12,["H834"]],[12,15,["H8111"]],[15,18,["H2470"]],[18,21,["H7971"]],[21,22,["H4397"]],[22,24,["H559"]],[24,25,["H413"]],[25,27,["H1980"]],[27,28,["H1875"]],[28,30,["H1176"]],[30,32,["H430"]],[32,34,["H6138"]],[34,35,["H518"]],[35,38,["H2421"]],[38,41,["H4480","H2483","H2088"]]]},{"k":9536,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H1696"]],[7,8,["H413"]],[8,9,["H452"]],[9,11,["H8664"]],[11,12,["H6965"]],[12,14,["H5927"]],[14,16,["H7125"]],[16,18,["H4397"]],[18,21,["H4428"]],[21,23,["H8111"]],[23,25,["H1696"]],[25,26,["H413"]],[26,31,["H4480","H1097"]],[31,34,["H369"]],[34,36,["H430"]],[36,38,["H3478"]],[38,40,["H859"]],[40,41,["H1980"]],[41,43,["H1875"]],[43,45,["H1176"]],[45,47,["H430"]],[47,49,["H6138"]]]},{"k":9537,"v":[[0,2,["H3651"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H3068"]],[6,9,["H3808"]],[9,11,["H3381"]],[11,12,["H4480"]],[12,14,["H4296"]],[14,16,["H834","H8033"]],[16,20,["H5927"]],[20,21,["H3588"]],[21,24,["H4191","H4191"]],[24,26,["H452"]],[26,27,["H1980"]]]},{"k":9538,"v":[[0,4,["H4397"]],[4,6,["H7725"]],[6,7,["H413"]],[7,10,["H559"]],[10,11,["H413"]],[11,13,["H4100"]],[13,16,["H2088"]],[16,18,["H7725"]]]},{"k":9539,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H5927"]],[7,9,["H376"]],[9,10,["H5927"]],[10,12,["H7125"]],[12,15,["H559"]],[15,16,["H413"]],[16,18,["H1980"]],[18,20,["H7725"]],[20,21,["H413"]],[21,23,["H4428"]],[23,24,["H834"]],[24,25,["H7971"]],[25,28,["H1696"]],[28,29,["H413"]],[29,31,["H3541"]],[31,32,["H559"]],[32,34,["H3068"]],[34,38,["H4480","H1097"]],[38,41,["H369"]],[41,43,["H430"]],[43,45,["H3478"]],[45,47,["H859"]],[47,48,["H7971"]],[48,50,["H1875"]],[50,52,["H1176"]],[52,54,["H430"]],[54,56,["H6138"]],[56,57,["H3651"]],[57,60,["H3808"]],[60,62,["H3381"]],[62,63,["H4480"]],[63,65,["H4296"]],[65,67,["H834","H8033"]],[67,71,["H5927"]],[71,72,["H3588"]],[72,75,["H4191","H4191"]]]},{"k":9540,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H4100"]],[6,7,["H4941"]],[7,9,["H376"]],[9,12,["H834"]],[12,14,["H5927"]],[14,16,["H7125"]],[16,19,["H1696","H413"]],[19,20,["(H853)"]],[20,21,["H428"]],[21,22,["H1697"]]]},{"k":9541,"v":[[0,3,["H559","H413"]],[3,9,["H376","H1167","H8181"]],[9,11,["H247"]],[11,14,["H232"]],[14,16,["H5785"]],[16,19,["H4975"]],[19,22,["H559"]],[22,23,["H1931"]],[23,25,["H452"]],[25,27,["H8664"]]]},{"k":9542,"v":[[0,4,["H7971"]],[4,5,["H413"]],[5,8,["H8269"]],[8,10,["H2572"]],[10,13,["H2572"]],[13,17,["H5927"]],[17,18,["H413"]],[18,21,["H2009"]],[21,23,["H3427"]],[23,24,["H5921"]],[24,26,["H7218"]],[26,29,["H2022"]],[29,32,["H1696"]],[32,33,["H413"]],[33,36,["H376"]],[36,38,["H430"]],[38,40,["H4428"]],[40,42,["H1696"]],[42,44,["H3381"]]]},{"k":9543,"v":[[0,2,["H452"]],[2,3,["H6030"]],[3,5,["H1696"]],[5,6,["H413"]],[6,8,["H8269"]],[8,10,["H2572"]],[10,11,["H518"]],[11,12,["H589"]],[12,15,["H376"]],[15,17,["H430"]],[17,20,["H784"]],[20,22,["H3381"]],[22,23,["H4480"]],[23,24,["H8064"]],[24,26,["H398"]],[26,30,["H2572"]],[30,34,["H3381"]],[34,35,["H784"]],[35,36,["H4480"]],[36,37,["H8064"]],[37,39,["H398"]],[39,43,["H2572"]]]},{"k":9544,"v":[[0,1,["H7725"]],[1,4,["H7971"]],[4,5,["H413"]],[5,7,["H312"]],[7,8,["H8269"]],[8,10,["H2572"]],[10,13,["H2572"]],[13,16,["H6030"]],[16,18,["H1696"]],[18,19,["H413"]],[19,22,["H376"]],[22,24,["H430"]],[24,25,["H3541"]],[25,28,["H4428"]],[28,29,["H559"]],[29,31,["H3381"]],[31,32,["H4120"]]]},{"k":9545,"v":[[0,2,["H452"]],[2,3,["H6030"]],[3,5,["H1696"]],[5,6,["H413"]],[6,8,["H518"]],[8,9,["H589"]],[9,12,["H376"]],[12,14,["H430"]],[14,16,["H784"]],[16,18,["H3381"]],[18,19,["H4480"]],[19,20,["H8064"]],[20,22,["H398"]],[22,26,["H2572"]],[26,29,["H784"]],[29,31,["H430"]],[31,33,["H3381"]],[33,34,["H4480"]],[34,35,["H8064"]],[35,37,["H398"]],[37,41,["H2572"]]]},{"k":9546,"v":[[0,3,["H7971"]],[3,4,["H7725"]],[4,6,["H8269"]],[6,9,["H7992"]],[9,10,["H2572"]],[10,13,["H2572"]],[13,16,["H7992"]],[16,17,["H8269"]],[17,19,["H2572"]],[19,21,["H5927"]],[21,23,["H935"]],[23,25,["H3766"]],[25,26,["H5921"]],[26,28,["H1290"]],[28,29,["H5048"]],[29,30,["H452"]],[30,32,["H2603","H413"]],[32,35,["H1696"]],[35,36,["H413"]],[36,39,["H376"]],[39,41,["H430"]],[41,44,["H4994"]],[44,47,["H5315"]],[47,50,["H5315"]],[50,52,["H428"]],[52,53,["H2572"]],[53,55,["H5650"]],[55,57,["H3365"]],[57,60,["H5869"]]]},{"k":9547,"v":[[0,1,["H2009"]],[1,5,["H3381","H784"]],[5,6,["H4480"]],[6,7,["H8064"]],[7,10,["H398","(H853)"]],[10,12,["H8147"]],[12,13,["H8269"]],[13,16,["H7223"]],[16,17,["H2572"]],[17,20,["H2572"]],[20,24,["H5315"]],[24,25,["H6258"]],[25,27,["H3365"]],[27,30,["H5869"]]]},{"k":9548,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H1696"]],[7,8,["H413"]],[8,9,["H452"]],[9,11,["H3381"]],[11,12,["H854"]],[12,16,["H408","H3372"]],[16,17,["H4480","H6440"]],[17,21,["H6965"]],[21,24,["H3381"]],[24,25,["H854"]],[25,27,["H413"]],[27,29,["H4428"]]]},{"k":9549,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,11,["H3282","H834"]],[11,14,["H7971"]],[14,15,["H4397"]],[15,17,["H1875"]],[17,19,["H1176"]],[19,21,["H430"]],[21,23,["H6138"]],[23,27,["H4480","H1097"]],[27,30,["H369"]],[30,31,["H430"]],[31,33,["H3478"]],[33,35,["H1875"]],[35,38,["H1697"]],[38,39,["H3651"]],[39,42,["H3808"]],[42,44,["H3381"]],[44,45,["H4480"]],[45,47,["H4296"]],[47,49,["H834","H8033"]],[49,53,["H5927"]],[53,54,["H3588"]],[54,57,["H4191","H4191"]]]},{"k":9550,"v":[[0,3,["H4191"]],[3,7,["H1697"]],[7,10,["H3068"]],[10,11,["H834"]],[11,12,["H452"]],[12,14,["H1696"]],[14,16,["H3088"]],[16,17,["H4427"]],[17,20,["H8478"]],[20,23,["H8147"]],[23,24,["H8141"]],[24,26,["H3088"]],[26,28,["H1121"]],[28,30,["H3092"]],[30,31,["H4428"]],[31,33,["H3063"]],[33,34,["H3588"]],[34,36,["H1961"]],[36,37,["H3808"]],[37,38,["H1121"]]]},{"k":9551,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H274"]],[8,9,["H834"]],[9,11,["H6213"]],[11,13,["H1992"]],[13,14,["H3808"]],[14,15,["H3789"]],[15,16,["H5921"]],[16,18,["H5612"]],[18,21,["H1697","H3117"]],[21,24,["H4428"]],[24,26,["H3478"]]]},{"k":9552,"v":[[0,5,["H1961"]],[5,8,["H3068"]],[8,11,["H5927","(H853)"]],[11,12,["H452"]],[12,14,["H8064"]],[14,17,["H5591"]],[17,19,["H452"]],[19,20,["H1980"]],[20,22,["H477"]],[22,23,["H4480"]],[23,24,["H1537"]]]},{"k":9553,"v":[[0,2,["H452"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H477"]],[5,6,["H3427"]],[6,7,["H6311"]],[7,10,["H4994"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,15,["H7971"]],[15,17,["H5704"]],[17,18,["H1008"]],[18,20,["H477"]],[20,21,["H559"]],[21,26,["H3068"]],[26,27,["H2416"]],[27,31,["H5315"]],[31,32,["H2416"]],[32,35,["H518"]],[35,36,["H5800"]],[36,41,["H3381"]],[41,43,["H1008"]]]},{"k":9554,"v":[[0,3,["H1121"]],[3,6,["H5030"]],[6,7,["H834"]],[7,10,["H1008"]],[10,12,["H3318"]],[12,13,["H413"]],[13,14,["H477"]],[14,16,["H559"]],[16,17,["H413"]],[17,19,["H3045"]],[19,21,["H3588"]],[21,23,["H3068"]],[23,26,["H3947","(H853)"]],[26,28,["H113"]],[28,29,["H4480","H5921"]],[29,31,["H7218"]],[31,33,["H3117"]],[33,36,["H559"]],[36,37,["H1571"]],[37,38,["H589"]],[38,39,["H3045"]],[39,44,["H2814"]]]},{"k":9555,"v":[[0,2,["H452"]],[2,3,["H559"]],[3,6,["H477"]],[6,7,["H3427"]],[7,8,["H6311"]],[8,11,["H4994"]],[11,12,["H3588"]],[12,14,["H3068"]],[14,16,["H7971"]],[16,19,["H3405"]],[19,22,["H559"]],[22,25,["H3068"]],[25,26,["H2416"]],[26,30,["H5315"]],[30,31,["H2416"]],[31,34,["H518"]],[34,35,["H5800"]],[35,39,["H935"]],[39,41,["H3405"]]]},{"k":9556,"v":[[0,3,["H1121"]],[3,6,["H5030"]],[6,7,["H834"]],[7,10,["H3405"]],[10,11,["H5066"]],[11,12,["H413"]],[12,13,["H477"]],[13,15,["H559"]],[15,16,["H413"]],[16,18,["H3045"]],[18,20,["H3588"]],[20,22,["H3068"]],[22,25,["H3947","(H853)"]],[25,27,["H113"]],[27,28,["H4480","H5921"]],[28,30,["H7218"]],[30,32,["H3117"]],[32,35,["H559"]],[35,36,["H1571"]],[36,37,["H589"]],[37,38,["H3045"]],[38,43,["H2814"]]]},{"k":9557,"v":[[0,2,["H452"]],[2,3,["H559"]],[3,6,["H3427"]],[6,9,["H4994"]],[9,10,["H6311"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,15,["H7971"]],[15,18,["H3383"]],[18,21,["H559"]],[21,24,["H3068"]],[24,25,["H2416"]],[25,29,["H5315"]],[29,30,["H2416"]],[30,33,["H518"]],[33,34,["H5800"]],[34,38,["H8147"]],[38,40,["H1980"]]]},{"k":9558,"v":[[0,2,["H2572"]],[2,3,["H376"]],[3,6,["H4480","H1121"]],[6,9,["H5030"]],[9,10,["H1980"]],[10,12,["H5975"]],[12,14,["H4480","H5048"]],[14,16,["H4480","H7350"]],[16,19,["H8147"]],[19,20,["H5975"]],[20,21,["H5921"]],[21,22,["H3383"]]]},{"k":9559,"v":[[0,2,["H452"]],[2,3,["H3947","(H853)"]],[3,5,["H155"]],[5,9,["H1563"]],[9,11,["H5221","(H853)"]],[11,13,["H4325"]],[13,17,["H2673"]],[17,18,["H2008"]],[18,20,["H2008"]],[20,24,["H8147"]],[24,26,["H5674"]],[26,29,["H2724"]]]},{"k":9560,"v":[[0,5,["H1961"]],[5,10,["H5674"]],[10,12,["H452"]],[12,13,["H559"]],[13,14,["H413"]],[14,15,["H477"]],[15,16,["H7592"]],[16,17,["H4100"]],[17,20,["H6213"]],[20,23,["H2962"]],[23,27,["H3947"]],[27,28,["H4480","H5973"]],[28,31,["H477"]],[31,32,["H559"]],[32,35,["H4994"]],[35,38,["H8147"]],[38,39,["H6310"]],[39,42,["H7307"]],[42,43,["H1961"]],[43,44,["H413"]],[44,45,[]]]},{"k":9561,"v":[[0,3,["H559"]],[3,6,["H7592"]],[6,9,["H7185"]],[9,11,["H518"]],[11,13,["H7200"]],[13,18,["H3947"]],[18,19,["H4480","H854"]],[19,23,["H1961"]],[23,24,["H3651"]],[24,28,["H518"]],[28,29,["H369"]],[29,32,["H3808"]],[32,33,["H1961"]],[33,34,[]]]},{"k":9562,"v":[[0,5,["H1961"]],[5,7,["H1992"]],[7,10,["H1980"]],[10,12,["H1696"]],[12,14,["H2009"]],[14,18,["H7393"]],[18,20,["H784"]],[20,22,["H5483"]],[22,24,["H784"]],[24,26,["H6504"]],[26,28,["H8147"]],[28,29,["H996"]],[29,31,["H452"]],[31,33,["H5927"]],[33,36,["H5591"]],[36,38,["H8064"]]]},{"k":9563,"v":[[0,2,["H477"]],[2,3,["H7200"]],[3,6,["H1931"]],[6,7,["H6817"]],[7,9,["H1"]],[9,11,["H1"]],[11,13,["H7393"]],[13,15,["H3478"]],[15,18,["H6571"]],[18,22,["H7200"]],[22,24,["H3808"]],[24,25,["H5750"]],[25,29,["H2388"]],[29,33,["H899"]],[33,35,["H7167"]],[35,38,["H8147"]],[38,39,["H7168"]]]},{"k":9564,"v":[[0,3,["H7311"]],[3,4,["(H853)"]],[4,6,["H155"]],[6,8,["H452"]],[8,9,["H834"]],[9,10,["H5307"]],[10,11,["H4480","H5921"]],[11,15,["H7725"]],[15,17,["H5975"]],[17,18,["H5921"]],[18,20,["H8193"]],[20,22,["H3383"]]]},{"k":9565,"v":[[0,3,["H3947","(H853)"]],[3,5,["H155"]],[5,7,["H452"]],[7,8,["H834"]],[8,9,["H5307"]],[9,10,["H4480","H5921"]],[10,13,["H5221","(H853)"]],[13,15,["H4325"]],[15,17,["H559"]],[17,18,["H346"]],[18,21,["H3068"]],[21,22,["H430"]],[22,24,["H452"]],[24,27,["H1931"]],[27,28,["H637"]],[28,30,["H5221","(H853)"]],[30,32,["H4325"]],[32,34,["H2673"]],[34,35,["H2008"]],[35,37,["H2008"]],[37,39,["H477"]],[39,41,["H5674"]]]},{"k":9566,"v":[[0,4,["H1121"]],[4,7,["H5030"]],[7,8,["H834"]],[8,11,["H4480","H5048"]],[11,13,["H3405"]],[13,14,["H7200"]],[14,17,["H559"]],[17,19,["H7307"]],[19,21,["H452"]],[21,23,["H5117"]],[23,24,["H5921"]],[24,25,["H477"]],[25,28,["H935"]],[28,30,["H7125"]],[30,34,["H7812"]],[34,37,["H776"]],[37,39,[]]]},{"k":9567,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H2009"]],[6,7,["H4994"]],[7,9,["H3426"]],[9,10,["H854"]],[10,12,["H5650"]],[12,13,["H2572"]],[13,14,["H1121","H2428"]],[14,15,["H376"]],[15,18,["H1980"]],[18,21,["H4994"]],[21,23,["H1245","(H853)"]],[23,25,["H113"]],[25,27,["H6435"]],[27,29,["H7307"]],[29,32,["H3068"]],[32,36,["H5375"]],[36,38,["H7993"]],[38,41,["H259"]],[41,42,["H2022"]],[42,43,["H176"]],[43,45,["H259"]],[45,46,["H1516"]],[46,49,["H559"]],[49,52,["H3808"]],[52,53,["H7971"]]]},{"k":9568,"v":[[0,4,["H6484"]],[4,6,["H5704"]],[6,9,["H954"]],[9,11,["H559"]],[11,12,["H7971"]],[12,14,["H7971"]],[14,16,["H2572"]],[16,17,["H376"]],[17,20,["H1245"]],[20,21,["H7969"]],[21,22,["H3117"]],[22,24,["H4672"]],[24,26,["H3808"]]]},{"k":9569,"v":[[0,5,["H7725"]],[5,6,["H413"]],[6,9,["H1931"]],[9,10,["H3427"]],[10,12,["H3405"]],[12,14,["H559"]],[14,15,["H413"]],[15,19,["H3808"]],[19,20,["H559"]],[20,21,["H413"]],[21,23,["H1980"]],[23,24,["H408"]]]},{"k":9570,"v":[[0,3,["H376"]],[3,6,["H5892"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H477"]],[9,10,["H2009"]],[10,13,["H4994"]],[13,15,["H4186"]],[15,18,["H5892"]],[18,20,["H2896"]],[20,21,["H834"]],[21,23,["H113"]],[23,24,["H7200"]],[24,27,["H4325"]],[27,29,["H7451"]],[29,32,["H776"]],[32,33,["H7921"]]]},{"k":9571,"v":[[0,3,["H559"]],[3,4,["H3947"]],[4,7,["H2319"]],[7,8,["H6746"]],[8,10,["H7760"]],[10,11,["H4417"]],[11,12,["H8033"]],[12,15,["H3947"]],[15,17,["H413"]],[17,18,[]]]},{"k":9572,"v":[[0,4,["H3318"]],[4,5,["H413"]],[5,7,["H4161"]],[7,10,["H4325"]],[10,12,["H7993"]],[12,14,["H4417"]],[14,16,["H8033"]],[16,18,["H559"]],[18,19,["H3541"]],[19,20,["H559"]],[20,22,["H3068"]],[22,25,["H7495"]],[25,26,["H428"]],[26,27,["H4325"]],[27,30,["H3808"]],[30,31,["H1961"]],[31,33,["H4480","H8033"]],[33,35,["H5750"]],[35,36,["H4194"]],[36,38,["H7921"]],[38,39,[]]]},{"k":9573,"v":[[0,3,["H4325"]],[3,5,["H7495"]],[5,6,["H5704"]],[6,7,["H2088"]],[7,8,["H3117"]],[8,12,["H1697"]],[12,14,["H477"]],[14,15,["H834"]],[15,17,["H1696"]]]},{"k":9574,"v":[[0,4,["H5927"]],[4,6,["H4480","H8033"]],[6,8,["H1008"]],[8,11,["H1931"]],[11,14,["H5927"]],[14,17,["H1870"]],[17,20,["H3318"]],[20,21,["H6996"]],[21,22,["H5288"]],[22,24,["H4480"]],[24,26,["H5892"]],[26,28,["H7046"]],[28,31,["H559"]],[31,35,["H5927"]],[35,38,["H7142"]],[38,40,["H5927"]],[40,43,["H7142"]]]},{"k":9575,"v":[[0,3,["H6437"]],[3,4,["H310"]],[4,6,["H7200"]],[6,10,["H7043"]],[10,14,["H8034"]],[14,17,["H3068"]],[17,21,["H3318"]],[21,22,["H8147"]],[22,24,["H1677"]],[24,26,["H4480"]],[26,28,["H3293"]],[28,30,["H1234"]],[30,31,["H705"]],[31,33,["H8147"]],[33,34,["H3206"]],[34,35,["H4480"]],[35,36,[]]]},{"k":9576,"v":[[0,3,["H1980"]],[3,5,["H4480","H8033"]],[5,6,["H413"]],[6,7,["H2022"]],[7,8,["H3760"]],[8,11,["H4480","H8033"]],[11,13,["H7725"]],[13,15,["H8111"]]]},{"k":9577,"v":[[0,2,["H3088"]],[2,4,["H1121"]],[4,6,["H256"]],[6,9,["H4427"]],[9,10,["H5921"]],[10,11,["H3478"]],[11,13,["H8111"]],[13,15,["H8083","H6240"]],[15,16,["H8141"]],[16,18,["H3092"]],[18,19,["H4428"]],[19,21,["H3063"]],[21,23,["H4427"]],[23,24,["H8147","H6240"]],[24,25,["H8141"]]]},{"k":9578,"v":[[0,3,["H6213"]],[3,4,["H7451"]],[4,7,["H5869"]],[7,10,["H3068"]],[10,11,["H7535"]],[11,12,["H3808"]],[12,15,["H1"]],[15,19,["H517"]],[19,23,["H5493","(H853)"]],[23,25,["H4676"]],[25,27,["H1168"]],[27,28,["H834"]],[28,30,["H1"]],[30,32,["H6213"]]]},{"k":9579,"v":[[0,1,["H7535"]],[1,3,["H1692"]],[3,6,["H2403"]],[6,8,["H3379"]],[8,10,["H1121"]],[10,12,["H5028"]],[12,13,["H834"]],[13,14,["(H853)"]],[14,15,["H3478"]],[15,17,["H2398"]],[17,19,["H5493"]],[19,20,["H3808"]],[20,21,["H4480"]]]},{"k":9580,"v":[[0,2,["H4338"]],[2,3,["H4428"]],[3,5,["H4124"]],[5,6,["H1961"]],[6,8,["H5349"]],[8,10,["H7725"]],[10,13,["H4428"]],[13,15,["H3478"]],[15,17,["H3967"]],[17,18,["H505"]],[18,19,["H3733"]],[19,22,["H3967"]],[22,23,["H505"]],[23,24,["H352"]],[24,27,["H6785"]]]},{"k":9581,"v":[[0,5,["H1961"]],[5,7,["H256"]],[7,9,["H4194"]],[9,12,["H4428"]],[12,14,["H4124"]],[14,15,["H6586"]],[15,18,["H4428"]],[18,20,["H3478"]]]},{"k":9582,"v":[[0,2,["H4428"]],[2,3,["H3088"]],[3,5,["H3318"]],[5,7,["H4480","H8111"]],[7,9,["H1931"]],[9,10,["H3117"]],[10,12,["H6485","(H853)"]],[12,13,["H3605"]],[13,14,["H3478"]]]},{"k":9583,"v":[[0,3,["H1980"]],[3,5,["H7971"]],[5,6,["H413"]],[6,7,["H3092"]],[7,9,["H4428"]],[9,11,["H3063"]],[11,12,["H559"]],[12,14,["H4428"]],[14,16,["H4124"]],[16,18,["H6586"]],[18,23,["H1980"]],[23,24,["H854"]],[24,26,["H413"]],[26,27,["H4124"]],[27,29,["H4421"]],[29,32,["H559"]],[32,36,["H5927"]],[36,43,["H5971"]],[43,46,["H5971"]],[46,49,["H5483"]],[49,52,["H5483"]]]},{"k":9584,"v":[[0,3,["H559"]],[3,4,["H335","H2088"]],[4,5,["H1870"]],[5,9,["H5927"]],[9,12,["H559"]],[12,14,["H1870"]],[14,17,["H4057"]],[17,19,["H123"]]]},{"k":9585,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H1980"]],[6,9,["H4428"]],[9,11,["H3063"]],[11,14,["H4428"]],[14,16,["H123"]],[16,21,["H5437"]],[21,23,["H7651"]],[23,24,["H3117"]],[24,25,["H1870"]],[25,28,["H1961"]],[28,29,["H3808"]],[29,30,["H4325"]],[30,33,["H4264"]],[33,37,["H929"]],[37,38,["H834"]],[38,39,["H7272"]],[39,40,[]]]},{"k":9586,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H162"]],[7,8,["H3588"]],[8,10,["H3068"]],[10,12,["H7121"]],[12,13,["H428"]],[13,14,["H7969"]],[14,15,["H4428"]],[15,18,["H5414"]],[18,22,["H3027"]],[22,24,["H4124"]]]},{"k":9587,"v":[[0,2,["H3092"]],[2,3,["H559"]],[3,6,["H369"]],[6,7,["H6311"]],[7,9,["H5030"]],[9,12,["H3068"]],[12,16,["H1875"]],[16,17,["(H853)"]],[17,19,["H3068"]],[19,20,["H4480","H854"]],[20,23,["H259"]],[23,26,["H4428"]],[26,29,["H4480","H5650","H3478"]],[29,30,["H6030"]],[30,32,["H559"]],[32,33,["H6311"]],[33,35,["H477"]],[35,37,["H1121"]],[37,39,["H8202"]],[39,40,["H834"]],[40,41,["H3332"]],[41,42,["H4325"]],[42,43,["H5921"]],[43,45,["H3027"]],[45,47,["H452"]]]},{"k":9588,"v":[[0,2,["H3092"]],[2,3,["H559"]],[3,5,["H1697"]],[5,8,["H3068"]],[8,9,["H3426"]],[9,10,["H854"]],[10,14,["H4428"]],[14,16,["H3478"]],[16,18,["H3092"]],[18,21,["H4428"]],[21,23,["H123"]],[23,25,["H3381"]],[25,26,["H413"]],[26,27,[]]]},{"k":9589,"v":[[0,2,["H477"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,8,["H3478"]],[8,9,["H4100"]],[9,16,["H1980"]],[16,18,["H413"]],[18,20,["H5030"]],[20,23,["H1"]],[23,25,["H413"]],[25,27,["H5030"]],[27,30,["H517"]],[30,33,["H4428"]],[33,35,["H3478"]],[35,36,["H559"]],[36,39,["H408"]],[39,40,["H3588"]],[40,42,["H3068"]],[42,44,["H7121"]],[44,45,["H428"]],[45,46,["H7969"]],[46,47,["H4428"]],[47,50,["H5414"]],[50,54,["H3027"]],[54,56,["H4124"]]]},{"k":9590,"v":[[0,2,["H477"]],[2,3,["H559"]],[3,6,["H3068"]],[6,8,["H6635"]],[8,9,["H2416"]],[9,10,["H6440"]],[10,11,["H834"]],[11,13,["H5975"]],[13,14,["H3588"]],[14,17,["H3884"]],[17,19,["H589"]],[19,20,["H5375"]],[20,22,["H6440"]],[22,24,["H3092"]],[24,26,["H4428"]],[26,28,["H3063"]],[28,32,["H5027"]],[32,33,["H413"]],[33,35,["H518"]],[35,36,["H7200"]],[36,37,[]]]},{"k":9591,"v":[[0,2,["H6258"]],[2,3,["H3947"]],[3,6,["H5059"]],[6,11,["H1961"]],[11,14,["H5059"]],[14,15,["H5059"]],[15,18,["H3027"]],[18,21,["H3068"]],[21,22,["H1961"]],[22,23,["H5921"]],[23,24,[]]]},{"k":9592,"v":[[0,3,["H559"]],[3,4,["H3541"]],[4,5,["H559"]],[5,7,["H3068"]],[7,8,["H6213"]],[8,9,["H2088"]],[9,10,["H5158"]],[10,13,["H1356","H1356"]]]},{"k":9593,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,8,["H3808"]],[8,9,["H7200"]],[9,10,["H7307"]],[10,11,["H3808"]],[11,14,["H7200"]],[14,15,["H1653"]],[15,17,["H1931"]],[17,18,["H5158"]],[18,21,["H4390"]],[21,23,["H4325"]],[23,27,["H8354"]],[27,29,["H859"]],[29,32,["H4735"]],[32,35,["H929"]]]},{"k":9594,"v":[[0,2,["H2063"]],[2,7,["H7043"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H5414","(H853)"]],[16,18,["H4124"]],[18,22,["H3027"]]]},{"k":9595,"v":[[0,4,["H5221"]],[4,5,["H3605"]],[5,6,["H4013"]],[6,7,["H5892"]],[7,9,["H3605"]],[9,10,["H4004"]],[10,11,["H5892"]],[11,14,["H5307"]],[14,15,["H3605"]],[15,16,["H2896"]],[16,17,["H6086"]],[17,19,["H5640"]],[19,20,["H3605"]],[20,21,["H4599"]],[21,23,["H4325"]],[23,25,["H3510"]],[25,26,["H3605"]],[26,27,["H2896"]],[27,30,["H2513"]],[30,32,["H68"]]]},{"k":9596,"v":[[0,5,["H1961"]],[5,8,["H1242"]],[8,12,["H4503"]],[12,14,["H5927"]],[14,16,["H2009"]],[16,18,["H935"]],[18,19,["H4325"]],[19,22,["H4480","H1870"]],[22,24,["H123"]],[24,27,["H776"]],[27,29,["H4390"]],[29,30,["H854"]],[30,31,["H4325"]]]},{"k":9597,"v":[[0,3,["H3605"]],[3,5,["H4124"]],[5,6,["H8085"]],[6,7,["H3588"]],[7,9,["H4428"]],[9,12,["H5927"]],[12,14,["H3898"]],[14,19,["H6817","H4480","H3605"]],[19,25,["H2296"]],[25,26,["H2290"]],[26,28,["H4605"]],[28,30,["H5975"]],[30,31,["H5921"]],[31,33,["H1366"]]]},{"k":9598,"v":[[0,5,["H7925"]],[5,8,["H1242"]],[8,11,["H8121"]],[11,12,["H2224"]],[12,13,["H5921"]],[13,15,["H4325"]],[15,18,["H4124"]],[18,19,["H7200","(H853)"]],[19,21,["H4325"]],[21,25,["H4480","H5048"]],[25,27,["H122"]],[27,29,["H1818"]]]},{"k":9599,"v":[[0,3,["H559"]],[3,4,["H2088"]],[4,6,["H1818"]],[6,8,["H4428"]],[8,11,["H2717","H2717"]],[11,15,["H5221","(H853)"]],[15,16,["H376"]],[16,17,["H7453"]],[17,18,["H6258"]],[18,20,["H4124"]],[20,23,["H7998"]]]},{"k":9600,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H4264"]],[7,9,["H3478"]],[9,11,["H3478"]],[11,13,["H6965"]],[13,15,["H5221","(H853)"]],[15,17,["H4124"]],[17,21,["H5127"]],[21,22,["H4480","H6440"]],[22,26,["H5221"]],[26,28,["H5221","(H853)"]],[28,30,["H4124"]],[30,34,[]]]},{"k":9601,"v":[[0,4,["H2040"]],[4,6,["H5892"]],[6,9,["H3605"]],[9,10,["H2896"]],[10,11,["H2513"]],[11,14,["H7993"]],[14,16,["H376"]],[16,18,["H68"]],[18,20,["H4390"]],[20,24,["H5640"]],[24,25,["H3605"]],[25,27,["H4599"]],[27,29,["H4325"]],[29,31,["H5307"]],[31,32,["H3605"]],[32,34,["H2896"]],[34,35,["H6086"]],[35,36,["H5704"]],[36,38,["H7025"]],[38,39,["H7604"]],[39,42,["H68"]],[42,46,["H7051"]],[46,48,["H5437"]],[48,51,["H5221"]],[51,52,[]]]},{"k":9602,"v":[[0,4,["H4428"]],[4,6,["H4124"]],[6,7,["H7200"]],[7,8,["H3588"]],[8,10,["H4421"]],[10,13,["H2388"]],[13,14,["H4480"]],[14,17,["H3947"]],[17,18,["H854"]],[18,20,["H7651"]],[20,21,["H3967"]],[21,22,["H376"]],[22,24,["H8025"]],[24,25,["H2719"]],[25,28,["H1234"]],[28,30,["H413"]],[30,32,["H4428"]],[32,34,["H123"]],[34,37,["H3201"]],[37,38,["H3808"]]]},{"k":9603,"v":[[0,3,["H3947","(H853)"]],[3,5,["H1060"]],[5,6,["H1121"]],[6,7,["H834"]],[7,10,["H4427"]],[10,13,["H8478"]],[13,15,["H5927"]],[15,20,["H5930"]],[20,21,["H5921"]],[21,23,["H2346"]],[23,26,["H1961"]],[26,27,["H1419"]],[27,28,["H7110"]],[28,29,["H5921"]],[29,30,["H3478"]],[30,33,["H5265"]],[33,34,["H4480","H5921"]],[34,37,["H7725"]],[37,41,["H776"]]]},{"k":9604,"v":[[0,3,["H6817"]],[3,5,["H259"]],[5,6,["H802"]],[6,9,["H4480","H802"]],[9,12,["H1121"]],[12,15,["H5030"]],[15,16,["H413"]],[16,17,["H477"]],[17,18,["H559"]],[18,20,["H5650"]],[20,22,["H376"]],[22,24,["H4191"]],[24,26,["H859"]],[26,27,["H3045"]],[27,28,["H3588"]],[28,30,["H5650"]],[30,31,["H1961"]],[31,32,["H3372","(H853)"]],[32,34,["H3068"]],[34,37,["H5383"]],[37,39,["H935"]],[39,41,["H3947"]],[41,43,["(H853)"]],[43,45,["H8147"]],[45,46,["H3206"]],[46,49,["H5650"]]]},{"k":9605,"v":[[0,2,["H477"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4100"]],[6,9,["H6213"]],[9,12,["H5046"]],[12,14,["H4100"]],[14,15,["H3426"]],[15,19,["H1004"]],[19,22,["H559"]],[22,24,["H8198"]],[24,26,["H369"]],[26,28,["H3605"]],[28,31,["H1004"]],[31,32,["H3588","H518"]],[32,34,["H610"]],[34,36,["H8081"]]]},{"k":9606,"v":[[0,3,["H559"]],[3,4,["H1980"]],[4,5,["H7592"]],[5,7,["H3627"]],[7,8,["H4480","H2351"]],[8,9,["H4480","H854"]],[9,10,["H3605"]],[10,12,["H7934"]],[12,14,["H7386"]],[14,15,["H3627"]],[15,19,["H408","H4591"]]]},{"k":9607,"v":[[0,6,["H935"]],[6,9,["H5462"]],[9,11,["H1817"]],[11,12,["H1157"]],[12,15,["H1157"]],[15,17,["H1121"]],[17,21,["H3332"]],[21,22,["H5921"]],[22,23,["H3605"]],[23,24,["H428"]],[24,25,["H3627"]],[25,30,["H5265"]],[30,34,["H4392"]]]},{"k":9608,"v":[[0,3,["H1980"]],[3,4,["H4480","H854"]],[4,7,["H5462"]],[7,9,["H1817"]],[9,10,["H1157"]],[10,13,["H1157"]],[13,15,["H1121"]],[15,16,["H1992"]],[16,17,["H5066"]],[17,20,["H413"]],[20,23,["H1931"]],[23,25,["H3332"]]]},{"k":9609,"v":[[0,5,["H1961"]],[5,8,["H3627"]],[8,10,["H4390"]],[10,13,["H559"]],[13,14,["H413"]],[14,16,["H1121"]],[16,17,["H5066","H413"]],[17,19,["H5750"]],[19,21,["H3627"]],[21,24,["H559"]],[24,25,["H413"]],[25,29,["H369"]],[29,31,["H3627"]],[31,32,["H5750"]],[32,35,["H8081"]],[35,36,["H5975"]]]},{"k":9610,"v":[[0,3,["H935"]],[3,5,["H5046"]],[5,7,["H376"]],[7,9,["H430"]],[9,12,["H559"]],[12,13,["H1980"]],[13,14,["H4376","(H853)"]],[14,16,["H8081"]],[16,18,["H7999","(H853)"]],[18,20,["H5386"]],[20,22,["H2421"]],[22,23,["H859"]],[23,26,["H1121"]],[26,29,["H3498"]]]},{"k":9611,"v":[[0,3,["H1961"]],[3,6,["H3117"]],[6,8,["H477"]],[8,9,["H5674"]],[9,10,["H413"]],[10,11,["H7766"]],[11,12,["H8033"]],[12,15,["H1419"]],[15,16,["H802"]],[16,19,["H2388"]],[19,22,["H398"]],[22,23,["H3899"]],[23,27,["H1961"]],[27,30,["H4480","H1767"]],[30,34,["H5674"]],[34,37,["H5493"]],[37,38,["H8033"]],[38,40,["H398"]],[40,41,["H3899"]]]},{"k":9612,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H376"]],[6,7,["H2009"]],[7,8,["H4994"]],[8,10,["H3045"]],[10,11,["H3588"]],[11,12,["H1931"]],[12,15,["H6918"]],[15,16,["H376"]],[16,18,["H430"]],[18,21,["H5674","H5921"]],[21,23,["H8548"]]]},{"k":9613,"v":[[0,3,["H6213"]],[3,5,["H6996"]],[5,6,["H5944"]],[6,9,["H4994"]],[9,12,["H7023"]],[12,16,["H7760"]],[16,19,["H8033"]],[19,21,["H4296"]],[21,24,["H7979"]],[24,27,["H3678"]],[27,30,["H4501"]],[30,34,["H1961"]],[34,37,["H935"]],[37,38,["H413"]],[38,44,["H5493"]],[44,45,["H8033"]]]},{"k":9614,"v":[[0,3,["H1961"]],[3,6,["H3117"]],[6,9,["H935"]],[9,10,["H8033"]],[10,13,["H5493"]],[13,14,["H413"]],[14,16,["H5944"]],[16,18,["H7901"]],[18,19,["H8033"]]]},{"k":9615,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H1522"]],[5,7,["H5288"]],[7,8,["H7121"]],[8,9,["H2063"]],[9,10,["H7767"]],[10,15,["H7121"]],[15,18,["H5975"]],[18,19,["H6440"]],[19,20,[]]]},{"k":9616,"v":[[0,3,["H559"]],[3,6,["H559"]],[6,7,["H4994"]],[7,8,["H413"]],[8,10,["H2009"]],[10,14,["H2729"]],[14,15,["H413"]],[15,17,["H854"]],[17,18,["H3605"]],[18,19,["H2063"]],[19,20,["H2731"]],[20,21,["H4100"]],[21,25,["H6213"]],[25,28,["H3426"]],[28,31,["H1696"]],[31,33,["H413"]],[33,35,["H4428"]],[35,36,["H176"]],[36,37,["H413"]],[37,39,["H8269"]],[39,42,["H6635"]],[42,45,["H559"]],[45,46,["H595"]],[46,47,["H3427"]],[47,48,["H8432"]],[48,51,["H5971"]]]},{"k":9617,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,9,["H6213"]],[9,13,["H1522"]],[13,14,["H559"]],[14,15,["H61"]],[15,18,["H369"]],[18,19,["H1121"]],[19,22,["H376"]],[22,24,["H2204"]]]},{"k":9618,"v":[[0,3,["H559"]],[3,4,["H7121"]],[4,10,["H7121"]],[10,13,["H5975"]],[13,16,["H6607"]]]},{"k":9619,"v":[[0,3,["H559"]],[3,5,["H2088"]],[5,6,["H4150"]],[6,10,["H6256"]],[10,12,["H2416"]],[12,13,["H859"]],[13,15,["H2263"]],[15,17,["H1121"]],[17,20,["H559"]],[20,21,["H408"]],[21,23,["H113"]],[23,25,["H376"]],[25,27,["H430"]],[27,30,["H3576","H408"]],[30,33,["H8198"]]]},{"k":9620,"v":[[0,3,["H802"]],[3,4,["H2029"]],[4,6,["H3205"]],[6,8,["H1121"]],[8,10,["H2088"]],[10,11,["H4150"]],[11,12,["H834"]],[12,13,["H477"]],[13,15,["H1696"]],[15,16,["H413"]],[16,21,["H6256"]],[21,23,["H2416"]]]},{"k":9621,"v":[[0,4,["H3206"]],[4,6,["H1431"]],[6,8,["H1961"]],[8,11,["H3117"]],[11,15,["H3318"]],[15,16,["H413"]],[16,18,["H1"]],[18,19,["H413"]],[19,21,["H7114"]]]},{"k":9622,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1"]],[6,8,["H7218"]],[8,10,["H7218"]],[10,13,["H559"]],[13,14,["H413"]],[14,16,["H5288"]],[16,17,["H5375"]],[17,19,["H413"]],[19,21,["H517"]]]},{"k":9623,"v":[[0,5,["H5375"]],[5,8,["H935"]],[8,10,["H413"]],[10,12,["H517"]],[12,14,["H3427"]],[14,15,["H5921"]],[15,17,["H1290"]],[17,18,["H5704"]],[18,19,["H6672"]],[19,22,["H4191"]]]},{"k":9624,"v":[[0,4,["H5927"]],[4,6,["H7901"]],[6,8,["H5921"]],[8,10,["H4296"]],[10,13,["H376"]],[13,15,["H430"]],[15,17,["H5462"]],[17,20,["H1157"]],[20,24,["H3318"]]]},{"k":9625,"v":[[0,3,["H7121"]],[3,4,["H413"]],[4,6,["H376"]],[6,8,["H559"]],[8,9,["H7971"]],[9,13,["H4994"]],[13,14,["H259"]],[14,15,["H4480"]],[15,18,["H5288"]],[18,20,["H259"]],[20,23,["H860"]],[23,27,["H7323"]],[27,28,["H5704"]],[28,30,["H376"]],[30,32,["H430"]],[32,35,["H7725"]]]},{"k":9626,"v":[[0,3,["H559"]],[3,4,["H4069"]],[4,6,["H859"]],[6,7,["H1980"]],[7,8,["H413"]],[8,11,["H3117"]],[11,14,["H3808"]],[14,16,["H2320"]],[16,17,["H3808"]],[17,18,["H7676"]],[18,21,["H559"]],[21,25,["H7965"]]]},{"k":9627,"v":[[0,3,["H2280"]],[3,5,["H860"]],[5,7,["H559"]],[7,8,["H413"]],[8,10,["H5288"]],[10,11,["H5090"]],[11,14,["H1980"]],[14,15,["H6113"]],[15,16,["H408"]],[16,18,["H7392"]],[18,21,["H3588","H518"]],[21,23,["H559"]],[23,24,[]]]},{"k":9628,"v":[[0,3,["H1980"]],[3,5,["H935"]],[5,6,["H413"]],[6,8,["H376"]],[8,10,["H430"]],[10,11,["H413"]],[11,12,["H2022"]],[12,13,["H3760"]],[13,18,["H1961"]],[18,21,["H376"]],[21,23,["H430"]],[23,24,["H7200"]],[24,27,["H4480","H5048"]],[27,30,["H559"]],[30,31,["H413"]],[31,32,["H1522"]],[32,34,["H5288"]],[34,35,["H2009"]],[35,38,["H1975"]],[38,39,["H7767"]]]},{"k":9629,"v":[[0,1,["H7323"]],[1,2,["H6258"]],[2,5,["H4994"]],[5,7,["H7122"]],[7,10,["H559"]],[10,15,["H7965"]],[15,20,["H7965"]],[20,23,["H376"]],[23,26,["H7965"]],[26,29,["H3206"]],[29,32,["H559"]],[32,35,["H7965"]]]},{"k":9630,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H376"]],[7,9,["H430"]],[9,10,["H413"]],[10,12,["H2022"]],[12,14,["H2388"]],[14,18,["H7272"]],[18,20,["H1522"]],[20,22,["H5066"]],[22,26,["H1920"]],[26,29,["H376"]],[29,31,["H430"]],[31,32,["H559"]],[32,35,["H7503"]],[35,36,["H3588"]],[36,38,["H5315"]],[38,40,["H4843"]],[40,45,["H3068"]],[45,47,["H5956"]],[47,49,["H4480"]],[49,53,["H3808"]],[53,54,["H5046"]],[54,55,[]]]},{"k":9631,"v":[[0,3,["H559"]],[3,6,["H7592"]],[6,8,["H1121"]],[8,9,["H4480","H854"]],[9,11,["H113"]],[11,14,["H3808"]],[14,15,["H559"]],[15,17,["H3808"]],[17,18,["H7952"]],[18,19,[]]]},{"k":9632,"v":[[0,3,["H559"]],[3,5,["H1522"]],[5,7,["H2296"]],[7,9,["H4975"]],[9,11,["H3947"]],[11,13,["H4938"]],[13,16,["H3027"]],[16,20,["H1980"]],[20,21,["H3588"]],[21,23,["H4672"]],[23,25,["H376"]],[25,26,["H1288"]],[26,28,["H3808"]],[28,30,["H3588"]],[30,31,["H376"]],[31,32,["H1288"]],[32,34,["H6030"]],[34,36,["H3808"]],[36,39,["H7760"]],[39,41,["H4938"]],[41,42,["H5921"]],[42,44,["H6440"]],[44,47,["H5288"]]]},{"k":9633,"v":[[0,3,["H517"]],[3,6,["H5288"]],[6,7,["H559"]],[7,10,["H3068"]],[10,11,["H2416"]],[11,15,["H5315"]],[15,16,["H2416"]],[16,19,["H518"]],[19,20,["H5800"]],[20,24,["H6965"]],[24,26,["H1980","H310"]],[26,27,[]]]},{"k":9634,"v":[[0,2,["H1522"]],[2,4,["H5674"]],[4,5,["H6440"]],[5,8,["H7760","(H853)"]],[8,10,["H4938"]],[10,11,["H5921"]],[11,13,["H6440"]],[13,16,["H5288"]],[16,20,["H369"]],[20,21,["H6963"]],[21,22,["H369"]],[22,23,["H7182"]],[23,27,["H7725"]],[27,29,["H7122"]],[29,32,["H5046"]],[32,34,["H559"]],[34,36,["H5288"]],[36,38,["H3808"]],[38,39,["H6974"]]]},{"k":9635,"v":[[0,3,["H477"]],[3,5,["H935"]],[5,8,["H1004"]],[8,9,["H2009"]],[9,11,["H5288"]],[11,13,["H4191"]],[13,15,["H7901"]],[15,16,["H5921"]],[16,18,["H4296"]]]},{"k":9636,"v":[[0,3,["H935"]],[3,6,["H5462"]],[6,8,["H1817"]],[8,9,["H1157"]],[9,11,["H8147"]],[11,13,["H6419"]],[13,14,["H413"]],[14,16,["H3068"]]]},{"k":9637,"v":[[0,4,["H5927"]],[4,6,["H7901"]],[6,7,["H5921"]],[7,9,["H3206"]],[9,11,["H7760"]],[11,13,["H6310"]],[13,14,["H5921"]],[14,16,["H6310"]],[16,19,["H5869"]],[19,20,["H5921"]],[20,22,["H5869"]],[22,25,["H3709"]],[25,26,["H5921"]],[26,28,["H3709"]],[28,31,["H1457"]],[31,33,["H5921"]],[33,38,["H1320"]],[38,41,["H3206"]],[41,43,["H2552"]]]},{"k":9638,"v":[[0,3,["H7725"]],[3,5,["H1980"]],[5,8,["H1004"]],[8,11,["H259","H2008","H259","H2008"]],[11,14,["H5927"]],[14,16,["H1457"]],[16,18,["H5921"]],[18,22,["H5288"]],[22,23,["H2237","H5704"]],[23,24,["H7651"]],[24,25,["H6471"]],[25,28,["H5288"]],[28,29,["H6491","(H853)"]],[29,31,["H5869"]]]},{"k":9639,"v":[[0,3,["H7121","H413"]],[3,4,["H1522"]],[4,6,["H559"]],[6,7,["H7121","H413"]],[7,8,["H2063"]],[8,9,["H7767"]],[9,12,["H7121"]],[12,18,["H935"]],[18,20,["H413"]],[20,23,["H559"]],[23,25,["H5375"]],[25,27,["H1121"]]]},{"k":9640,"v":[[0,4,["H935"]],[4,6,["H5307"]],[6,7,["H5921"]],[7,9,["H7272"]],[9,12,["H7812"]],[12,15,["H776"]],[15,18,["H5375","(H853)"]],[18,20,["H1121"]],[20,23,["H3318"]]]},{"k":9641,"v":[[0,2,["H477"]],[2,4,["H7725"]],[4,6,["H1537"]],[6,11,["H7458"]],[11,14,["H776"]],[14,17,["H1121"]],[17,20,["H5030"]],[20,22,["H3427"]],[22,23,["H6440"]],[23,27,["H559"]],[27,30,["H5288"]],[30,32,["H8239"]],[32,34,["H1419"]],[34,35,["H5518"]],[35,37,["H1310"]],[37,38,["H5138"]],[38,41,["H1121"]],[41,44,["H5030"]]]},{"k":9642,"v":[[0,2,["H259"]],[2,4,["H3318"]],[4,5,["H413"]],[5,7,["H7704"]],[7,9,["H3950"]],[9,10,["H219"]],[10,12,["H4672"]],[12,14,["H7704"]],[14,15,["H1612"]],[15,17,["H3950"]],[17,18,["H4480"]],[18,19,["H7704"]],[19,20,["H6498"]],[20,22,["H899"]],[22,23,["H4393"]],[23,25,["H935"]],[25,27,["H6398"]],[27,29,["H413"]],[29,31,["H5518"]],[31,33,["H5138"]],[33,34,["H3588"]],[34,36,["H3045"]],[36,38,["H3808"]]]},{"k":9643,"v":[[0,4,["H3332"]],[4,7,["H376"]],[7,9,["H398"]],[9,14,["H1961"]],[14,18,["H398"]],[18,21,["H4480","H5138"]],[21,23,["H1992"]],[23,25,["H6817"]],[25,27,["H559"]],[27,30,["H376"]],[30,32,["H430"]],[32,35,["H4194"]],[35,38,["H5518"]],[38,41,["H3201"]],[41,42,["H3808"]],[42,43,["H398"]],[43,44,[]]]},{"k":9644,"v":[[0,3,["H559"]],[3,5,["H3947"]],[5,6,["H7058"]],[6,9,["H7993"]],[9,11,["H413"]],[11,13,["H5518"]],[13,16,["H559"]],[16,18,["H3332"]],[18,21,["H5971"]],[21,25,["H398"]],[25,28,["H1961"]],[28,29,["H3808"]],[29,30,["H1697","H7451"]],[30,33,["H5518"]]]},{"k":9645,"v":[[0,3,["H935"]],[3,5,["H376"]],[5,7,["H4480","H1190"]],[7,9,["H935"]],[9,11,["H376"]],[11,13,["H430"]],[13,14,["H3899"]],[14,17,["H1061"]],[17,18,["H6242"]],[18,19,["H3899"]],[19,21,["H8184"]],[21,26,["H3759"]],[26,29,["H6861"]],[29,33,["H559"]],[33,34,["H5414"]],[34,37,["H5971"]],[37,41,["H398"]]]},{"k":9646,"v":[[0,3,["H8334"]],[3,4,["H559"]],[4,5,["H4100"]],[5,8,["H5414"]],[8,9,["H2088"]],[9,10,["H6440"]],[10,12,["H3967"]],[12,13,["H376"]],[13,15,["H559"]],[15,17,["H5414"]],[17,19,["H5971"]],[19,23,["H398"]],[23,24,["H3588"]],[24,25,["H3541"]],[25,26,["H559"]],[26,28,["H3068"]],[28,31,["H398"]],[31,34,["H3498"]],[34,35,[]]]},{"k":9647,"v":[[0,3,["H5414"]],[3,5,["H6440"]],[5,10,["H398"]],[10,12,["H3498"]],[12,17,["H1697"]],[17,20,["H3068"]]]},{"k":9648,"v":[[0,2,["H5283"]],[2,3,["H8269"]],[3,6,["H6635"]],[6,9,["H4428"]],[9,11,["H758"]],[11,12,["H1961"]],[12,14,["H1419"]],[14,15,["H376"]],[15,16,["H6440"]],[16,18,["H113"]],[18,20,["H5375","H6440"]],[20,21,["H3588"]],[21,25,["H3068"]],[25,27,["H5414"]],[27,28,["H8668"]],[28,30,["H758"]],[30,32,["H1961"]],[32,35,["H1368"]],[35,36,["H376"]],[36,38,["H2428"]],[38,43,["H6879"]]]},{"k":9649,"v":[[0,3,["H758"]],[3,6,["H3318"]],[6,8,["H1416"]],[8,13,["H7617"]],[13,17,["H4480","H776"]],[17,19,["H3478"]],[19,21,["H6996"]],[21,22,["H5291"]],[22,25,["H1961","H6440"]],[25,27,["H5283"]],[27,28,["H802"]]]},{"k":9650,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1404"]],[6,8,["H305"]],[8,10,["H113"]],[10,12,["H6440"]],[12,14,["H5030"]],[14,15,["H834"]],[15,18,["H8111"]],[18,19,["H227"]],[19,22,["H622"]],[22,26,["H4480","H6883"]]]},{"k":9651,"v":[[0,4,["H935"]],[4,6,["H5046"]],[6,8,["H113"]],[8,9,["H559"]],[9,10,["H2063"]],[10,12,["H2063"]],[12,13,["H1696"]],[13,15,["H5291"]],[15,16,["H834"]],[16,20,["H4480","H776"]],[20,22,["H3478"]]]},{"k":9652,"v":[[0,3,["H4428"]],[3,5,["H758"]],[5,6,["H559"]],[6,8,["H1980"]],[8,9,["H935"]],[9,13,["H7971"]],[13,15,["H5612"]],[15,16,["H413"]],[16,18,["H4428"]],[18,20,["H3478"]],[20,23,["H1980"]],[23,25,["H3947"]],[25,26,["H3027"]],[26,28,["H6235"]],[28,29,["H3603"]],[29,31,["H3701"]],[31,33,["H8337"]],[33,34,["H505"]],[34,37,["H2091"]],[37,39,["H6235"]],[39,40,["H2487"]],[40,42,["H899"]]]},{"k":9653,"v":[[0,3,["H935"]],[3,5,["H5612"]],[5,6,["H413"]],[6,8,["H4428"]],[8,10,["H3478"]],[10,11,["H559"]],[11,12,["H6258"]],[12,14,["H2088"]],[14,15,["H5612"]],[15,17,["H935"]],[17,18,["H413"]],[18,20,["H2009"]],[20,24,["H7971","(H853)"]],[24,25,["H5283"]],[25,27,["H5650"]],[27,28,["H413"]],[28,33,["H622"]],[33,37,["H4480","H6883"]]]},{"k":9654,"v":[[0,5,["H1961"]],[5,8,["H4428"]],[8,10,["H3478"]],[10,12,["H7121","(H853)"]],[12,14,["H5612"]],[14,17,["H7167"]],[17,19,["H899"]],[19,21,["H559"]],[21,23,["H589"]],[23,24,["H430"]],[24,26,["H4191"]],[26,30,["H2421"]],[30,31,["H3588"]],[31,32,["H2088"]],[32,35,["H7971"]],[35,36,["H413"]],[36,39,["H622"]],[39,41,["H376"]],[41,44,["H4480","H6883"]],[44,45,["H3588","H389"]],[45,46,["H3045"]],[46,49,["H4994"]],[49,51,["H7200"]],[51,52,["H3588"]],[52,53,["H1931"]],[53,56,["H579"]],[56,58,[]]]},{"k":9655,"v":[[0,3,["H1961"]],[3,6,["H477"]],[6,8,["H376"]],[8,10,["H430"]],[10,12,["H8085"]],[12,13,["H3588"]],[13,15,["H4428"]],[15,17,["H3478"]],[17,19,["H7167","(H853)"]],[19,21,["H899"]],[21,24,["H7971"]],[24,25,["H413"]],[25,27,["H4428"]],[27,28,["H559"]],[28,29,["H4100"]],[29,32,["H7167"]],[32,34,["H899"]],[34,37,["H935"]],[37,38,["H4994"]],[38,39,["H413"]],[39,44,["H3045"]],[44,45,["H3588"]],[45,47,["H3426"]],[47,49,["H5030"]],[49,51,["H3478"]]]},{"k":9656,"v":[[0,2,["H5283"]],[2,3,["H935"]],[3,6,["H5483"]],[6,10,["H7393"]],[10,12,["H5975"]],[12,15,["H6607"]],[15,18,["H1004"]],[18,20,["H477"]]]},{"k":9657,"v":[[0,2,["H477"]],[2,3,["H7971"]],[3,5,["H4397"]],[5,6,["H413"]],[6,8,["H559"]],[8,9,["H1980"]],[9,11,["H7364"]],[11,13,["H3383"]],[13,14,["H7651"]],[14,15,["H6471"]],[15,18,["H1320"]],[18,21,["H7725"]],[21,28,["H2891"]]]},{"k":9658,"v":[[0,2,["H5283"]],[2,4,["H7107"]],[4,7,["H1980"]],[7,9,["H559"]],[9,10,["H2009"]],[10,12,["H559"]],[12,17,["H3318","H3318"]],[17,18,["H413"]],[18,21,["H5975"]],[21,23,["H7121"]],[23,26,["H8034"]],[26,29,["H3068"]],[29,31,["H430"]],[31,33,["H5130"]],[33,35,["H3027"]],[35,36,["H413"]],[36,38,["H4725"]],[38,40,["H622"]],[40,42,["H6879"]]]},{"k":9659,"v":[[0,2,["H3808"]],[2,3,["H71"]],[3,5,["H6554"]],[5,6,["H5104"]],[6,8,["H1834"]],[8,9,["H2896"]],[9,11,["H4480","H3605"]],[11,13,["H4325"]],[13,15,["H3478"]],[15,18,["H3808"]],[18,19,["H7364"]],[19,24,["H2891"]],[24,27,["H6437"]],[27,30,["H1980"]],[30,33,["H2534"]]]},{"k":9660,"v":[[0,3,["H5650"]],[3,5,["H5066"]],[5,7,["H1696"]],[7,8,["H413"]],[8,11,["H559"]],[11,13,["H1"]],[13,16,["H5030"]],[16,18,["H1696","H413"]],[18,22,["H1419"]],[22,23,["H1697"]],[23,26,["H3808"]],[26,28,["H6213"]],[28,32,["H637"]],[32,34,["H3588"]],[34,36,["H559"]],[36,37,["H413"]],[37,39,["H7364"]],[39,42,["H2891"]]]},{"k":9661,"v":[[0,4,["H3381"]],[4,6,["H2881"]],[6,8,["H7651"]],[8,9,["H6471"]],[9,11,["H3383"]],[11,15,["H1697"]],[15,18,["H376"]],[18,20,["H430"]],[20,23,["H1320"]],[23,25,["H7725"]],[25,29,["H1320"]],[29,32,["H6996"]],[32,33,["H5288"]],[33,37,["H2891"]]]},{"k":9662,"v":[[0,3,["H7725"]],[3,4,["H413"]],[4,6,["H376"]],[6,8,["H430"]],[8,9,["H1931"]],[9,11,["H3605"]],[11,13,["H4264"]],[13,15,["H935"]],[15,17,["H5975"]],[17,18,["H6440"]],[18,22,["H559"]],[22,23,["H2009"]],[23,24,["H4994"]],[24,26,["H3045"]],[26,27,["H3588"]],[27,30,["H369"]],[30,31,["H430"]],[31,33,["H3605"]],[33,35,["H776"]],[35,36,["H3588","H518"]],[36,38,["H3478"]],[38,39,["H6258"]],[39,43,["H4994"]],[43,44,["H3947"]],[44,46,["H1293"]],[46,47,["H4480","H854"]],[47,49,["H5650"]]]},{"k":9663,"v":[[0,3,["H559"]],[3,6,["H3068"]],[6,7,["H2416"]],[7,8,["H6440"]],[8,9,["H834"]],[9,11,["H5975"]],[11,14,["H3947"]],[14,18,["H6484"]],[18,21,["H3947"]],[21,25,["H3985"]]]},{"k":9664,"v":[[0,2,["H5283"]],[2,3,["H559"]],[3,6,["H3808"]],[6,10,["H4994"]],[10,12,["H5414"]],[12,15,["H5650"]],[15,17,["H6776","H6505"]],[17,18,["H4853"]],[18,20,["H127"]],[20,21,["H3588"]],[21,23,["H5650"]],[23,25,["H5750"]],[25,26,["H6213"]],[26,27,["H3808"]],[27,29,["H5930"]],[29,31,["H2077"]],[31,33,["H312"]],[33,34,["H430"]],[34,35,["H3588","H518"]],[35,38,["H3068"]]]},{"k":9665,"v":[[0,2,["H2088"]],[2,3,["H1697"]],[3,5,["H3068"]],[5,6,["H5545"]],[6,8,["H5650"]],[8,12,["H113"]],[12,13,["H935"]],[13,16,["H1004"]],[16,18,["H7417"]],[18,20,["H7812"]],[20,21,["H8033"]],[21,23,["H1931"]],[23,24,["H8172"]],[24,25,["H5921"]],[25,27,["H3027"]],[27,31,["H7812"]],[31,34,["H1004"]],[34,36,["H7417"]],[36,41,["H7812"]],[41,44,["H1004"]],[44,46,["H7417"]],[46,48,["H3068"]],[48,49,["H5545"]],[49,51,["H5650"]],[51,53,["H2088"]],[53,54,["H1697"]]]},{"k":9666,"v":[[0,3,["H559"]],[3,6,["H1980"]],[6,8,["H7965"]],[8,11,["H1980"]],[11,12,["H4480","H854"]],[12,16,["H3530","H776"]]]},{"k":9667,"v":[[0,2,["H1522"]],[2,4,["H5288"]],[4,6,["H477"]],[6,8,["H376"]],[8,10,["H430"]],[10,11,["H559"]],[11,12,["H2009"]],[12,14,["H113"]],[14,16,["H2820","(H853)"]],[16,17,["H5283"]],[17,18,["H2088"]],[18,19,["H761"]],[19,22,["H4480","H3947"]],[22,25,["H4480","H3027","(H853)"]],[25,27,["H834"]],[27,29,["H935"]],[29,30,["H3588","H518"]],[30,33,["H3068"]],[33,34,["H2416"]],[34,37,["H7323"]],[37,38,["H310"]],[38,41,["H3947"]],[41,42,["H3972"]],[42,43,["H4480","H854"]],[43,44,[]]]},{"k":9668,"v":[[0,2,["H1522"]],[2,3,["H7291"]],[3,4,["H310"]],[4,5,["H5283"]],[5,8,["H5283"]],[8,9,["H7200"]],[9,11,["H7323"]],[11,12,["H310"]],[12,16,["H5307"]],[16,17,["H4480","H5921"]],[17,19,["H4818"]],[19,21,["H7122"]],[21,24,["H559"]],[24,27,["H7965"]]]},{"k":9669,"v":[[0,3,["H559"]],[3,6,["H7965"]],[6,8,["H113"]],[8,10,["H7971"]],[10,12,["H559"]],[12,13,["H2009"]],[13,15,["H6258","H2088"]],[15,18,["H935"]],[18,19,["H413"]],[19,22,["H4480","H2022"]],[22,23,["H669"]],[23,24,["H8147"]],[24,26,["H5288"]],[26,29,["H4480","H1121"]],[29,32,["H5030"]],[32,33,["H5414"]],[33,37,["H4994"]],[37,39,["H3603"]],[39,41,["H3701"]],[41,43,["H8147"]],[43,44,["H2487"]],[44,46,["H899"]]]},{"k":9670,"v":[[0,2,["H5283"]],[2,3,["H559"]],[3,5,["H2974"]],[5,6,["H3947"]],[6,8,["H3603"]],[8,11,["H6555"]],[11,14,["H6696"]],[14,16,["H3603"]],[16,18,["H3701"]],[18,20,["H8147"]],[20,21,["H2754"]],[21,23,["H8147"]],[23,24,["H2487"]],[24,26,["H899"]],[26,28,["H5414"]],[28,30,["H413"]],[30,31,["H8147"]],[31,34,["H5288"]],[34,37,["H5375"]],[37,39,["H6440"]],[39,40,[]]]},{"k":9671,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H6076"]],[7,9,["H3947"]],[9,13,["H4480","H3027"]],[13,15,["H6485"]],[15,19,["H1004"]],[19,22,["(H853)"]],[22,24,["H376"]],[24,25,["H7971"]],[25,28,["H1980"]]]},{"k":9672,"v":[[0,2,["H1931"]],[2,4,["H935"]],[4,6,["H5975"]],[6,7,["H413"]],[7,9,["H113"]],[9,11,["H477"]],[11,12,["H559"]],[12,13,["H413"]],[13,15,["H4480","H370"]],[15,18,["H1522"]],[18,21,["H559"]],[21,23,["H5650"]],[23,24,["H1980"]],[24,25,["H3808"]],[25,26,["H575","H575"]]]},{"k":9673,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1980"]],[6,7,["H3808"]],[7,9,["H3820"]],[9,12,["H834"]],[12,14,["H376"]],[14,16,["H2015"]],[16,17,["H4480","H5921"]],[17,19,["H4818"]],[19,21,["H7122"]],[21,26,["H6256"]],[26,28,["H3947","(H853)"]],[28,29,["H3701"]],[29,32,["H3947"]],[32,33,["H899"]],[33,35,["H2132"]],[35,37,["H3754"]],[37,39,["H6629"]],[39,41,["H1241"]],[41,43,["H5650"]],[43,45,["H8198"]]]},{"k":9674,"v":[[0,2,["H6883"]],[2,5,["H5283"]],[5,7,["H1692"]],[7,13,["H2233"]],[13,15,["H5769"]],[15,19,["H3318"]],[19,22,["H4480","H6440"]],[22,24,["H6879"]],[24,28,["H7950"]]]},{"k":9675,"v":[[0,3,["H1121"]],[3,6,["H5030"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H477"]],[9,10,["H2009"]],[10,11,["H4994"]],[11,13,["H4725"]],[13,14,["H834","H8033"]],[14,15,["H587"]],[15,16,["H3427"]],[16,17,["H6440"]],[17,21,["H6862"]],[21,22,["H4480"]],[22,23,[]]]},{"k":9676,"v":[[0,3,["H1980"]],[3,6,["H4994"]],[6,7,["H5704"]],[7,8,["H3383"]],[8,10,["H3947"]],[10,11,["H4480","H8033"]],[11,13,["H376"]],[13,14,["H259"]],[14,15,["H6982"]],[15,19,["H6213"]],[19,22,["H4725"]],[22,23,["H8033"]],[23,24,["H8033"]],[24,27,["H3427"]],[27,30,["H559"]],[30,31,["H1980"]],[31,32,[]]]},{"k":9677,"v":[[0,2,["H259"]],[2,3,["H559"]],[3,5,["H2974"]],[5,8,["H4994"]],[8,10,["H1980"]],[10,11,["H854"]],[11,13,["H5650"]],[13,16,["H559"]],[16,17,["H589"]],[17,19,["H1980"]]]},{"k":9678,"v":[[0,3,["H1980"]],[3,4,["H854"]],[4,9,["H935"]],[9,11,["H3383"]],[11,14,["H1504"]],[14,15,["H6086"]]]},{"k":9679,"v":[[0,3,["H259"]],[3,4,["H1961"]],[4,5,["H5307"]],[5,7,["H6982"]],[7,10,["H1270"]],[10,11,["H5307"]],[11,12,["H413"]],[12,14,["H4325"]],[14,17,["H6817"]],[17,19,["H559"]],[19,20,["H162"]],[20,21,["H113"]],[21,23,["H1931"]],[23,25,["H7592"]]]},{"k":9680,"v":[[0,3,["H376"]],[3,5,["H430"]],[5,6,["H559"]],[6,7,["H575"]],[7,8,["H5307"]],[8,12,["H7200"]],[12,13,["(H853)"]],[13,15,["H4725"]],[15,19,["H7094"]],[19,21,["H6086"]],[21,23,["H7993"]],[23,26,["H8033"]],[26,29,["H1270"]],[29,31,["H6687"]]]},{"k":9681,"v":[[0,2,["H559"]],[2,6,["H7311"]],[6,12,["H7971"]],[12,14,["H3027"]],[14,16,["H3947"]],[16,17,[]]]},{"k":9682,"v":[[0,3,["H4428"]],[3,5,["H758"]],[5,6,["H3898"]],[6,8,["H3478"]],[8,11,["H3289"]],[11,12,["H413"]],[12,14,["H5650"]],[14,15,["H559"]],[15,16,["H413"]],[16,19,["H6423","H492"]],[19,21,["H4725"]],[21,25,["H8466"]]]},{"k":9683,"v":[[0,3,["H376"]],[3,5,["H430"]],[5,6,["H7971"]],[6,7,["H413"]],[7,9,["H4428"]],[9,11,["H3478"]],[11,12,["H559"]],[12,13,["H8104"]],[13,17,["H4480","H5674"]],[17,18,["H2088"]],[18,20,["H4725"]],[20,21,["H3588"]],[21,22,["H8033"]],[22,24,["H758"]],[24,27,["H5185"]]]},{"k":9684,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H7971"]],[6,7,["H413"]],[7,9,["H4725"]],[9,10,["H834"]],[10,12,["H376"]],[12,14,["H430"]],[14,15,["H559"]],[15,18,["H2094"]],[18,23,["H8104"]],[23,24,["H8033"]],[24,25,["H3808"]],[25,26,["H259"]],[26,27,["H3808"]],[27,28,["H8147"]]]},{"k":9685,"v":[[0,3,["H3820"]],[3,6,["H4428"]],[6,8,["H758"]],[8,11,["H5590"]],[11,12,["H5921"]],[12,13,["H2088"]],[13,14,["H1697"]],[14,17,["H7121","H413"]],[17,19,["H5650"]],[19,21,["H559"]],[21,22,["H413"]],[22,26,["H3808"]],[26,27,["H5046"]],[27,29,["H4310"]],[29,30,["H4480","H7945"]],[30,33,["H413"]],[33,35,["H4428"]],[35,37,["H3478"]]]},{"k":9686,"v":[[0,2,["H259"]],[2,5,["H4480","H5650"]],[5,6,["H559"]],[6,7,["H3808"]],[7,9,["H113"]],[9,11,["H4428"]],[11,12,["H3588"]],[12,13,["H477"]],[13,15,["H5030"]],[15,16,["H834"]],[16,19,["H3478"]],[19,20,["H5046"]],[20,22,["H4428"]],[22,24,["H3478","(H853)"]],[24,26,["H1697"]],[26,27,["H834"]],[27,29,["H1696"]],[29,32,["H2315","H4904"]]]},{"k":9687,"v":[[0,3,["H559"]],[3,4,["H1980"]],[4,6,["H7200"]],[6,7,["H351"]],[7,8,["H1931"]],[8,13,["H7971"]],[13,15,["H3947"]],[15,20,["H5046"]],[20,22,["H559"]],[22,23,["H2009"]],[23,27,["H1886"]]]},{"k":9688,"v":[[0,2,["H7971"]],[2,4,["H8033"]],[4,5,["H5483"]],[5,7,["H7393"]],[7,10,["H3515"]],[10,11,["H2428"]],[11,14,["H935"]],[14,16,["H3915"]],[16,18,["H5362","H5921"]],[18,20,["H5892"]],[20,21,[]]]},{"k":9689,"v":[[0,4,["H8334"]],[4,7,["H376"]],[7,9,["H430"]],[9,11,["H6965"]],[11,12,["H7925"]],[12,15,["H3318"]],[15,16,["H2009"]],[16,18,["H2428"]],[18,19,["H5437","(H853)"]],[19,21,["H5892"]],[21,24,["H5483"]],[24,26,["H7393"]],[26,29,["H5288"]],[29,30,["H559"]],[30,31,["H413"]],[31,33,["H162"]],[33,35,["H113"]],[35,36,["H349"]],[36,39,["H6213"]]]},{"k":9690,"v":[[0,3,["H559"]],[3,4,["H3372"]],[4,5,["H408"]],[5,6,["H3588"]],[6,8,["H834"]],[8,10,["H854"]],[10,13,["H7227"]],[13,16,["H4480","H834"]],[16,18,["H854"]],[18,19,[]]]},{"k":9691,"v":[[0,2,["H477"]],[2,3,["H6419"]],[3,5,["H559"]],[5,6,["H3068"]],[6,9,["H4994"]],[9,10,["H6491","(H853)"]],[10,12,["H5869"]],[12,16,["H7200"]],[16,19,["H3068"]],[19,20,["H6491","(H853)"]],[20,22,["H5869"]],[22,26,["H5288"]],[26,29,["H7200"]],[29,31,["H2009"]],[31,33,["H2022"]],[33,35,["H4390"]],[35,37,["H5483"]],[37,39,["H7393"]],[39,41,["H784"]],[41,43,["H5439"]],[43,44,["H477"]]]},{"k":9692,"v":[[0,5,["H3381"]],[5,6,["H413"]],[6,8,["H477"]],[8,9,["H6419"]],[9,10,["H413"]],[10,12,["H3068"]],[12,14,["H559"]],[14,15,["H5221","(H853)"]],[15,16,["H2088"]],[16,17,["H1471"]],[17,20,["H4994"]],[20,22,["H5575"]],[22,25,["H5221"]],[25,28,["H5575"]],[28,32,["H1697"]],[32,34,["H477"]]]},{"k":9693,"v":[[0,2,["H477"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H2088"]],[6,8,["H3808"]],[8,10,["H1870"]],[10,11,["H3808"]],[11,13,["H2090"]],[13,15,["H5892"]],[15,16,["H1980","H310"]],[16,21,["H1980"]],[21,23,["H413"]],[23,25,["H376"]],[25,26,["H834"]],[26,28,["H1245"]],[28,31,["H1980"]],[31,34,["H8111"]]]},{"k":9694,"v":[[0,5,["H1961"]],[5,9,["H935"]],[9,11,["H8111"]],[11,13,["H477"]],[13,14,["H559"]],[14,15,["H3068"]],[15,16,["H6491","(H853)"]],[16,18,["H5869"]],[18,20,["H428"]],[20,25,["H7200"]],[25,28,["H3068"]],[28,29,["H6491","(H853)"]],[29,31,["H5869"]],[31,34,["H7200"]],[34,36,["H2009"]],[36,41,["H8432"]],[41,43,["H8111"]]]},{"k":9695,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H477"]],[8,11,["H7200"]],[11,14,["H1"]],[14,17,["H5221"]],[17,21,["H5221"]],[21,22,[]]]},{"k":9696,"v":[[0,3,["H559"]],[3,6,["H3808"]],[6,7,["H5221"]],[7,10,["H859"]],[10,11,["H5221"]],[11,13,["H834"]],[13,17,["H7617"]],[17,20,["H2719"]],[20,24,["H7198"]],[24,25,["H7760"]],[25,26,["H3899"]],[26,28,["H4325"]],[28,29,["H6440"]],[29,34,["H398"]],[34,36,["H8354"]],[36,38,["H1980"]],[38,39,["H413"]],[39,41,["H113"]]]},{"k":9697,"v":[[0,3,["H3739"]],[3,4,["H1419"]],[4,5,["H3740"]],[5,12,["H398"]],[12,14,["H8354"]],[14,18,["H7971"]],[18,21,["H1980"]],[21,22,["H413"]],[22,24,["H113"]],[24,27,["H1416"]],[27,29,["H758"]],[29,30,["H935"]],[30,31,["H3808"]],[31,32,["H3254","H5750"]],[32,35,["H776"]],[35,37,["H3478"]]]},{"k":9698,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H3651"]],[7,9,["H1130"]],[9,10,["H4428"]],[10,12,["H758"]],[12,13,["H6908","(H853)"]],[13,14,["H3605"]],[14,16,["H4264"]],[16,19,["H5927"]],[19,21,["H6696","H5921"]],[21,22,["H8111"]]]},{"k":9699,"v":[[0,3,["H1961"]],[3,5,["H1419"]],[5,6,["H7458"]],[6,8,["H8111"]],[8,10,["H2009"]],[10,12,["H6696","H5921"]],[12,14,["H5704"]],[14,16,["H2543"]],[16,17,["H7218"]],[17,18,["H1961"]],[18,21,["H8084"]],[21,24,["H3701"]],[24,28,["H7255"]],[28,31,["H6894"]],[31,34,["H2755"]],[34,36,["H2568"]],[36,39,["H3701"]]]},{"k":9700,"v":[[0,4,["H4428"]],[4,6,["H3478"]],[6,7,["H1961"]],[7,9,["H5674"]],[9,10,["H5921"]],[10,12,["H2346"]],[12,14,["H6817"]],[14,16,["H802"]],[16,17,["H413"]],[17,19,["H559"]],[19,20,["H3467"]],[20,22,["H113"]],[22,24,["H4428"]]]},{"k":9701,"v":[[0,3,["H559"]],[3,6,["H3068"]],[6,8,["H408"]],[8,9,["H3467"]],[9,11,["H4480","H370"]],[11,14,["H3467"]],[14,17,["H4480"]],[17,19,["H1637"]],[19,20,["H176"]],[20,22,["H4480"]],[22,24,["H3342"]]]},{"k":9702,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H4100"]],[7,12,["H559"]],[12,13,["H2063"]],[13,14,["H802"]],[14,15,["H559"]],[15,16,["H413"]],[16,18,["H5414","(H853)"]],[18,20,["H1121"]],[20,24,["H398"]],[24,27,["H3117"]],[27,31,["H398"]],[31,33,["H1121"]],[33,35,["H4279"]]]},{"k":9703,"v":[[0,3,["H1310","(H853)"]],[3,5,["H1121"]],[5,8,["H398"]],[8,12,["H559"]],[12,13,["H413"]],[13,17,["H312"]],[17,18,["H3117"]],[18,19,["H5414","(H853)"]],[19,21,["H1121"]],[21,25,["H398"]],[25,30,["H2244","(H853)"]],[30,32,["H1121"]]]},{"k":9704,"v":[[0,5,["H1961"]],[5,8,["H4428"]],[8,9,["H8085","(H853)"]],[9,11,["H1697"]],[11,14,["H802"]],[14,17,["H7167","(H853)"]],[17,19,["H899"]],[19,21,["H1931"]],[21,23,["H5674"]],[23,24,["H5921"]],[24,26,["H2346"]],[26,29,["H5971"]],[29,30,["H7200"]],[30,32,["H2009"]],[32,35,["H8242"]],[35,36,["H4480","H1004"]],[36,37,["H5921"]],[37,39,["H1320"]]]},{"k":9705,"v":[[0,3,["H559"]],[3,4,["H430"]],[4,5,["H6213"]],[5,6,["H3541"]],[6,8,["H3254"]],[8,9,["H3541"]],[9,12,["H518"]],[12,14,["H7218"]],[14,16,["H477"]],[16,18,["H1121"]],[18,20,["H8202"]],[20,22,["H5975"]],[22,23,["H5921"]],[23,26,["H3117"]]]},{"k":9706,"v":[[0,2,["H477"]],[2,3,["H3427"]],[3,6,["H1004"]],[6,9,["H2205"]],[9,10,["H3427"]],[10,11,["H854"]],[11,16,["H7971"]],[16,18,["H376"]],[18,20,["H4480","H6440"]],[20,23,["H2962"]],[23,25,["H4397"]],[25,26,["H935"]],[26,27,["H413"]],[27,29,["H1931"]],[29,30,["H559"]],[30,31,["H413"]],[31,33,["H2205"]],[33,34,["H7200"]],[34,36,["H3588"]],[36,37,["H2088"]],[37,38,["H1121"]],[38,41,["H7523"]],[41,43,["H7971"]],[43,46,["H5493","(H853)"]],[46,48,["H7218"]],[48,49,["H7200"]],[49,52,["H4397"]],[52,53,["H935"]],[53,54,["H5462"]],[54,56,["H1817"]],[56,60,["H3905","(H853)"]],[60,63,["H1817"]],[63,65,["H3808"]],[65,67,["H6963"]],[67,70,["H113"]],[70,71,["H7272"]],[71,72,["H310"]],[72,73,[]]]},{"k":9707,"v":[[0,4,["H5750"]],[4,5,["H1696"]],[5,6,["H5973"]],[6,8,["H2009"]],[8,10,["H4397"]],[10,12,["H3381"]],[12,13,["H413"]],[13,17,["H559"]],[17,18,["H2009"]],[18,19,["H2063"]],[19,20,["H7451"]],[20,22,["H4480","H854"]],[22,24,["H3068"]],[24,25,["H4100"]],[25,28,["H3176"]],[28,31,["H3068"]],[31,33,["H5750"]]]},{"k":9708,"v":[[0,2,["H477"]],[2,3,["H559"]],[3,4,["H8085"]],[4,7,["H1697"]],[7,10,["H3068"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H3068"]],[14,16,["H4279"]],[16,19,["H6256"]],[19,22,["H5429"]],[22,25,["H5560"]],[25,30,["H8255"]],[30,33,["H5429"]],[33,35,["H8184"]],[35,38,["H8255"]],[38,41,["H8179"]],[41,43,["H8111"]]]},{"k":9709,"v":[[0,3,["H7991"]],[3,4,["H5921"]],[4,5,["H834"]],[5,6,["H3027"]],[6,8,["H4428"]],[8,9,["H8172"]],[9,10,["H6030","(H853)"]],[10,12,["H376"]],[12,14,["H430"]],[14,16,["H559"]],[16,17,["H2009"]],[17,20,["H3068"]],[20,22,["H6213"]],[22,23,["H699"]],[23,25,["H8064"]],[25,27,["H2088"]],[27,28,["H1697"]],[28,29,["H1961"]],[29,32,["H559"]],[32,33,["H2009"]],[33,36,["H7200"]],[36,40,["H5869"]],[40,43,["H3808"]],[43,44,["H398"]],[44,45,["H4480","H8033"]]]},{"k":9710,"v":[[0,3,["H1961"]],[3,4,["H702"]],[4,5,["H6879"]],[5,6,["H376"]],[6,10,["H6607"]],[10,13,["H8179"]],[13,16,["H559"]],[16,17,["H376"]],[17,18,["H413"]],[18,19,["H7453"]],[19,20,["H4100"]],[20,21,["H3427"]],[21,22,["H587"]],[22,23,["H6311"]],[23,24,["H5704"]],[24,26,["H4191"]]]},{"k":9711,"v":[[0,1,["H518"]],[1,3,["H559"]],[3,6,["H935"]],[6,9,["H5892"]],[9,12,["H7458"]],[12,16,["H5892"]],[16,20,["H4191"]],[20,21,["H8033"]],[21,23,["H518"]],[23,25,["H3427"]],[25,27,["H6311"]],[27,29,["H4191"]],[29,31,["H6258"]],[31,33,["H1980"]],[33,37,["H5307"]],[37,38,["H413"]],[38,40,["H4264"]],[40,43,["H758"]],[43,44,["H518"]],[44,48,["H2421"]],[48,51,["H2421"]],[51,53,["H518"]],[53,55,["H4191"]],[55,60,["H4191"]]]},{"k":9712,"v":[[0,4,["H6965"]],[4,7,["H5399"]],[7,9,["H935"]],[9,10,["H413"]],[10,12,["H4264"]],[12,15,["H758"]],[15,20,["H935"]],[20,21,["H5704"]],[21,24,["H7097"]],[24,27,["H4264"]],[27,29,["H758"]],[29,30,["H2009"]],[30,33,["H369"]],[33,34,["H376"]],[34,35,["H8033"]]]},{"k":9713,"v":[[0,3,["H136"]],[3,5,["(H853)"]],[5,7,["H4264"]],[7,10,["H758"]],[10,12,["H8085"]],[12,14,["H6963"]],[14,16,["H7393"]],[16,19,["H6963"]],[19,21,["H5483"]],[21,24,["H6963"]],[24,27,["H1419"]],[27,28,["H2428"]],[28,31,["H559"]],[31,32,["H376"]],[32,33,["H413"]],[33,34,["H251"]],[34,35,["H2009"]],[35,37,["H4428"]],[37,39,["H3478"]],[39,41,["H7936"]],[41,42,["H5921"]],[42,43,["(H853)"]],[43,45,["H4428"]],[45,48,["H2850"]],[48,51,["H4428"]],[51,54,["H4714"]],[54,56,["H935"]],[56,57,["H5921"]],[57,58,[]]]},{"k":9714,"v":[[0,3,["H6965"]],[3,5,["H5127"]],[5,8,["H5399"]],[8,10,["H5800","(H853)"]],[10,12,["H168"]],[12,15,["H5483"]],[15,18,["H2543"]],[18,21,["H4264"]],[21,22,["H834"]],[22,23,["H1931"]],[23,26,["H5127"]],[26,27,["H413"]],[27,29,["H5315"]]]},{"k":9715,"v":[[0,3,["H428"]],[3,4,["H6879"]],[4,5,["H935"]],[5,6,["H5704"]],[6,9,["H7097"]],[9,12,["H4264"]],[12,14,["H935"]],[14,15,["H413"]],[15,16,["H259"]],[16,17,["H168"]],[17,20,["H398"]],[20,22,["H8354"]],[22,24,["H5375"]],[24,25,["H4480","H8033"]],[25,26,["H3701"]],[26,28,["H2091"]],[28,30,["H899"]],[30,32,["H1980"]],[32,34,["H2934"]],[34,38,["H7725"]],[38,40,["H935"]],[40,41,["H413"]],[41,42,["H312"]],[42,43,["H168"]],[43,45,["H5375"]],[45,46,["H4480","H8033"]],[46,49,["H1980"]],[49,51,["H2934"]],[51,52,[]]]},{"k":9716,"v":[[0,3,["H559"]],[3,4,["H376"]],[4,5,["H413"]],[5,6,["H7453"]],[6,7,["H587"]],[7,8,["H6213"]],[8,9,["H3808"]],[9,10,["H3651"]],[10,11,["H2088"]],[11,12,["H3117"]],[12,15,["H3117"]],[15,18,["H1309"]],[18,20,["H587"]],[20,23,["H2814"]],[23,26,["H2442"]],[26,27,["H5704"]],[27,29,["H1242"]],[29,30,["H216"]],[30,32,["H5771"]],[32,35,["H4672"]],[35,37,["H6258"]],[37,39,["H1980"]],[39,43,["H935"]],[43,45,["H5046"]],[45,47,["H4428"]],[47,48,["H1004"]]]},{"k":9717,"v":[[0,3,["H935"]],[3,5,["H7121"]],[5,6,["H413"]],[6,8,["H7778"]],[8,11,["H5892"]],[11,14,["H5046"]],[14,16,["H559"]],[16,18,["H935"]],[18,19,["H413"]],[19,21,["H4264"]],[21,24,["H758"]],[24,26,["H2009"]],[26,29,["H369"]],[29,30,["H376"]],[30,31,["H8033"]],[31,33,["H6963"]],[33,35,["H120"]],[35,36,["H3588","H518"]],[36,37,["H5483"]],[37,38,["H631"]],[38,40,["H2543"]],[40,41,["H631"]],[41,44,["H168"]],[44,45,["H834"]],[45,46,["H1992"]],[46,47,[]]]},{"k":9718,"v":[[0,3,["H7121"]],[3,5,["H7778"]],[5,8,["H5046"]],[8,12,["H4428"]],[12,13,["H1004"]],[13,14,["H6441"]]]},{"k":9719,"v":[[0,3,["H4428"]],[3,4,["H6965"]],[4,7,["H3915"]],[7,9,["H559"]],[9,10,["H413"]],[10,12,["H5650"]],[12,15,["H4994"]],[15,16,["H5046"]],[16,17,["(H853)"]],[17,18,["H834"]],[18,20,["H758"]],[20,22,["H6213"]],[22,26,["H3045"]],[26,27,["H3588"]],[27,28,["H587"]],[28,30,["H7457"]],[30,35,["H3318"]],[35,36,["H4480"]],[36,38,["H4264"]],[38,41,["H2247"]],[41,44,["H7704"]],[44,45,["H559"]],[45,46,["H3588"]],[46,49,["H3318"]],[49,50,["H4480"]],[50,52,["H5892"]],[52,55,["H8610"]],[55,57,["H2416"]],[57,59,["H935"]],[59,60,["H413"]],[60,62,["H5892"]]]},{"k":9720,"v":[[0,2,["H259"]],[2,5,["H4480","H5650"]],[5,6,["H6030"]],[6,8,["H559"]],[8,11,["H3947"]],[11,14,["H4994"]],[14,15,["H2568"]],[15,16,["H4480"]],[16,18,["H5483"]],[18,20,["H7604"]],[20,21,["H834"]],[21,23,["H7604"]],[23,27,["H2009"]],[27,31,["H3605"]],[31,33,["H1995"]],[33,35,["H3478"]],[35,36,["H834"]],[36,38,["H7604"]],[38,41,["H2009"]],[41,48,["H3605"]],[48,50,["H1995"]],[50,53,["H3478"]],[53,54,["H834"]],[54,56,["H8552"]],[56,60,["H7971"]],[60,62,["H7200"]]]},{"k":9721,"v":[[0,2,["H3947"]],[2,4,["H8147"]],[4,5,["H7393"]],[5,6,["H5483"]],[6,9,["H4428"]],[9,10,["H7971"]],[10,11,["H310"]],[11,13,["H4264"]],[13,16,["H758"]],[16,17,["H559"]],[17,18,["H1980"]],[18,20,["H7200"]]]},{"k":9722,"v":[[0,3,["H1980"]],[3,4,["H310"]],[4,6,["H5704"]],[6,7,["H3383"]],[7,9,["H2009"]],[9,10,["H3605"]],[10,12,["H1870"]],[12,14,["H4392"]],[14,16,["H899"]],[16,18,["H3627"]],[18,19,["H834"]],[19,21,["H758"]],[21,24,["H7993"]],[24,27,["H2648"]],[27,30,["H4397"]],[30,31,["H7725"]],[31,33,["H5046"]],[33,35,["H4428"]]]},{"k":9723,"v":[[0,3,["H5971"]],[3,5,["H3318"]],[5,7,["H962","(H853)"]],[7,9,["H4264"]],[9,12,["H758"]],[12,15,["H5429"]],[15,18,["H5560"]],[18,19,["H1961"]],[19,23,["H8255"]],[23,26,["H5429"]],[26,28,["H8184"]],[28,31,["H8255"]],[31,35,["H1697"]],[35,38,["H3068"]]]},{"k":9724,"v":[[0,3,["H4428"]],[3,4,["H6485","(H853)"]],[4,6,["H7991"]],[6,7,["H5921"]],[7,8,["H834"]],[8,9,["H3027"]],[9,11,["H8172"]],[11,16,["H5921"]],[16,18,["H8179"]],[18,21,["H5971"]],[21,23,["H7429"]],[23,27,["H8179"]],[27,30,["H4191"]],[30,31,["H834"]],[31,33,["H376"]],[33,35,["H430"]],[35,37,["H1696"]],[37,38,["H834"]],[38,39,["H1696"]],[39,42,["H4428"]],[42,44,["H3381"]],[44,45,["H413"]],[45,46,[]]]},{"k":9725,"v":[[0,5,["H1961"]],[5,8,["H376"]],[8,10,["H430"]],[10,12,["H1696"]],[12,13,["H413"]],[13,15,["H4428"]],[15,16,["H559"]],[16,18,["H5429"]],[18,20,["H8184"]],[20,23,["H8255"]],[23,26,["H5429"]],[26,29,["H5560"]],[29,32,["H8255"]],[32,34,["H1961"]],[34,36,["H4279"]],[36,39,["H6256"]],[39,42,["H8179"]],[42,44,["H8111"]]]},{"k":9726,"v":[[0,3,["H7991"]],[3,4,["H6030","(H853)"]],[4,6,["H376"]],[6,8,["H430"]],[8,10,["H559"]],[10,12,["H2009"]],[12,15,["H3068"]],[15,17,["H6213"]],[17,18,["H699"]],[18,20,["H8064"]],[20,22,["H2088"]],[22,24,["H1697"]],[24,25,["H1961"]],[25,28,["H559"]],[28,29,["H2009"]],[29,32,["H7200"]],[32,36,["H5869"]],[36,39,["H3808"]],[39,40,["H398"]],[40,41,["H4480","H8033"]]]},{"k":9727,"v":[[0,2,["H3651"]],[2,5,["H1961"]],[5,10,["H5971"]],[10,12,["H7429"]],[12,16,["H8179"]],[16,19,["H4191"]]]},{"k":9728,"v":[[0,2,["H1696"]],[2,3,["H477"]],[3,4,["H413"]],[4,6,["H802"]],[6,7,["H834","(H853)"]],[7,8,["H1121"]],[8,13,["H2421"]],[13,14,["H559"]],[14,15,["H6965"]],[15,17,["H1980"]],[17,18,["H859"]],[18,21,["H1004"]],[21,23,["H1481"]],[23,24,["H834"]],[24,27,["H1481"]],[27,28,["H3588"]],[28,30,["H3068"]],[30,32,["H7121"]],[32,35,["H7458"]],[35,39,["H1571"]],[39,40,["H935"]],[40,41,["H413"]],[41,43,["H776"]],[43,44,["H7651"]],[44,45,["H8141"]]]},{"k":9729,"v":[[0,3,["H802"]],[3,4,["H6965"]],[4,6,["H6213"]],[6,9,["H1697"]],[9,12,["H376"]],[12,14,["H430"]],[14,16,["H1931"]],[16,17,["H1980"]],[17,20,["H1004"]],[20,22,["H1481"]],[22,25,["H776"]],[25,28,["H6430"]],[28,29,["H7651"]],[29,30,["H8141"]]]},{"k":9730,"v":[[0,5,["H1961"]],[5,8,["H7651"]],[8,9,["H8141"]],[9,10,["H4480","H7097"]],[10,13,["H802"]],[13,14,["H7725"]],[14,18,["H4480","H776"]],[18,21,["H6430"]],[21,25,["H3318"]],[25,27,["H6817"]],[27,28,["H413"]],[28,30,["H4428"]],[30,31,["H413"]],[31,33,["H1004"]],[33,35,["H413"]],[35,37,["H7704"]]]},{"k":9731,"v":[[0,3,["H4428"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H1522"]],[6,8,["H5288"]],[8,11,["H376"]],[11,13,["H430"]],[13,14,["H559"]],[14,15,["H5608"]],[15,19,["H4994","(H853)"]],[19,20,["H3605"]],[20,23,["H1419"]],[23,24,["H834"]],[24,25,["H477"]],[25,27,["H6213"]]]},{"k":9732,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,9,["H5608"]],[9,11,["H4428","(H853)"]],[11,12,["H834"]],[12,20,["H2421","(H853)","H4191"]],[20,22,["H2009"]],[22,24,["H802"]],[24,25,["H834","(H853)"]],[25,26,["H1121"]],[26,31,["H2421"]],[31,32,["H6817"]],[32,33,["H413"]],[33,35,["H4428"]],[35,36,["H5921"]],[36,38,["H1004"]],[38,40,["H5921"]],[40,42,["H7704"]],[42,44,["H1522"]],[44,45,["H559"]],[45,47,["H113"]],[47,49,["H4428"]],[49,50,["H2063"]],[50,53,["H802"]],[53,55,["H2088"]],[55,58,["H1121"]],[58,59,["H834"]],[59,60,["H477"]],[60,63,["H2421"]]]},{"k":9733,"v":[[0,4,["H4428"]],[4,5,["H7592"]],[5,7,["H802"]],[7,9,["H5608"]],[9,13,["H4428"]],[13,14,["H5414"]],[14,18,["H259"]],[18,19,["H5631"]],[19,20,["H559"]],[20,21,["H7725","(H853)"]],[21,22,["H3605"]],[22,23,["H834"]],[23,27,["H3605"]],[27,29,["H8393"]],[29,32,["H7704"]],[32,35,["H4480","H3117"]],[35,38,["H5800","(H853)"]],[38,40,["H776"]],[40,42,["H5704"]],[42,43,["H6258"]]]},{"k":9734,"v":[[0,2,["H477"]],[2,3,["H935"]],[3,5,["H1834"]],[5,7,["H1130"]],[7,9,["H4428"]],[9,11,["H758"]],[11,13,["H2470"]],[13,17,["H5046"]],[17,19,["H559"]],[19,21,["H376"]],[21,23,["H430"]],[23,25,["H935"]],[25,26,["H5704","H2008"]]]},{"k":9735,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H2371"]],[6,7,["H3947"]],[7,9,["H4503"]],[9,12,["H3027"]],[12,14,["H1980"]],[14,15,["H7122"]],[15,17,["H376"]],[17,19,["H430"]],[19,21,["H1875","(H853)"]],[21,24,["H3068"]],[24,25,["H4480","H854"]],[25,27,["H559"]],[27,30,["H2421"]],[30,33,["H4480","H2483","H2088"]]]},{"k":9736,"v":[[0,2,["H2371"]],[2,3,["H1980"]],[3,5,["H7122"]],[5,8,["H3947"]],[8,10,["H4503"]],[10,11,["H3027"]],[11,15,["H3605"]],[15,17,["H2898"]],[17,19,["H1834"]],[19,20,["H705"]],[20,21,["H1581"]],[21,22,["H4853"]],[22,24,["H935"]],[24,26,["H5975"]],[26,27,["H6440"]],[27,30,["H559"]],[30,32,["H1121"]],[32,33,["H1130"]],[33,34,["H4428"]],[34,36,["H758"]],[36,38,["H7971"]],[38,40,["H413"]],[40,42,["H559"]],[42,45,["H2421"]],[45,48,["H4480","H2483","H2088"]]]},{"k":9737,"v":[[0,2,["H477"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1980"]],[6,7,["H559"]],[7,13,["H2421","H2421"]],[13,16,["H3068"]],[16,18,["H7200"]],[18,20,["H3588"]],[20,24,["H4191","H4191"]]]},{"k":9738,"v":[[0,3,["H5975","(H853)"]],[3,5,["H6440"]],[5,6,["H7760"]],[6,7,["H5704"]],[7,10,["H954"]],[10,13,["H376"]],[13,15,["H430"]],[15,16,["H1058"]]]},{"k":9739,"v":[[0,2,["H2371"]],[2,3,["H559"]],[3,4,["H4069"]],[4,5,["H1058"]],[5,7,["H113"]],[7,10,["H559"]],[10,11,["H3588"]],[11,13,["H3045","(H853)"]],[13,15,["H7451"]],[15,16,["H834"]],[16,19,["H6213"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,27,["H4013"]],[27,30,["H7971"]],[30,32,["H784"]],[32,36,["H970"]],[36,39,["H2026"]],[39,42,["H2719"]],[42,45,["H7376"]],[45,47,["H5768"]],[47,50,["H1234"]],[50,54,["H2030"]]]},{"k":9740,"v":[[0,2,["H2371"]],[2,3,["H559"]],[3,4,["H3588"]],[4,5,["H4100"]],[5,8,["H5650"]],[8,10,["H3611"]],[10,11,["H3588"]],[11,14,["H6213"]],[14,15,["H2088"]],[15,16,["H1419"]],[16,17,["H1697"]],[17,19,["H477"]],[19,20,["H559"]],[20,22,["H3068"]],[22,24,["H7200"]],[24,30,["H4428"]],[30,31,["H5921"]],[31,32,["H758"]]]},{"k":9741,"v":[[0,3,["H1980"]],[3,4,["H4480","H854"]],[4,5,["H477"]],[5,7,["H935"]],[7,8,["H413"]],[8,10,["H113"]],[10,12,["H559"]],[12,15,["H4100"]],[15,16,["H559"]],[16,17,["H477"]],[17,22,["H559"]],[22,24,["H559"]],[24,30,["H2421","H2421"]]]},{"k":9742,"v":[[0,5,["H1961"]],[5,8,["H4480","H4283"]],[8,11,["H3947"]],[11,14,["H4346"]],[14,16,["H2881"]],[16,19,["H4325"]],[19,21,["H6566"]],[21,23,["H5921"]],[23,25,["H6440"]],[25,29,["H4191"]],[29,31,["H2371"]],[31,32,["H4427"]],[32,35,["H8478"]]]},{"k":9743,"v":[[0,4,["H2568"]],[4,5,["H8141"]],[5,7,["H3141"]],[7,9,["H1121"]],[9,11,["H256"]],[11,12,["H4428"]],[12,14,["H3478"]],[14,15,["H3092"]],[15,18,["H4428"]],[18,20,["H3063"]],[20,21,["H3088"]],[21,23,["H1121"]],[23,25,["H3092"]],[25,26,["H4428"]],[26,28,["H3063"]],[28,31,["H4427"]]]},{"k":9744,"v":[[0,1,["H7970"]],[1,3,["H8147"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,6,["H1961"]],[6,12,["H4427"]],[12,15,["H4427"]],[15,16,["H8083"]],[16,17,["H8141"]],[17,19,["H3389"]]]},{"k":9745,"v":[[0,3,["H1980"]],[3,6,["H1870"]],[6,9,["H4428"]],[9,11,["H3478"]],[11,12,["H834"]],[12,13,["H6213"]],[13,15,["H1004"]],[15,17,["H256"]],[17,18,["H3588"]],[18,20,["H1323"]],[20,22,["H256"]],[22,23,["H1961"]],[23,25,["H802"]],[25,28,["H6213"]],[28,29,["H7451"]],[29,32,["H5869"]],[32,35,["H3068"]]]},{"k":9746,"v":[[0,3,["H3068"]],[3,4,["H14"]],[4,5,["H3808"]],[5,6,["H7843","(H853)"]],[6,7,["H3063"]],[7,9,["H1732"]],[9,11,["H5650"]],[11,12,["H4616"]],[12,13,["H834"]],[13,15,["H559"]],[15,18,["H5414"]],[18,20,["H3605","H3117"]],[20,22,["H5216"]],[22,26,["H1121"]]]},{"k":9747,"v":[[0,3,["H3117"]],[3,4,["H123"]],[4,5,["H6586"]],[5,7,["H4480","H8478"]],[7,9,["H3027"]],[9,11,["H3063"]],[11,13,["H4427"]],[13,15,["H4428"]],[15,16,["H5921"]],[16,17,[]]]},{"k":9748,"v":[[0,2,["H3141"]],[2,4,["H5674"]],[4,6,["H6811"]],[6,8,["H3605"]],[8,10,["H7393"]],[10,11,["H5973"]],[11,14,["H1931"]],[14,15,["H6965"]],[15,17,["H3915"]],[17,19,["H5221","(H853)"]],[19,21,["H123"]],[21,25,["H5437","H413"]],[25,28,["H8269"]],[28,31,["H7393"]],[31,34,["H5971"]],[34,35,["H5127"]],[35,38,["H168"]]]},{"k":9749,"v":[[0,2,["H123"]],[2,3,["H6586"]],[3,5,["H4480","H8478"]],[5,7,["H3027"]],[7,9,["H3063"]],[9,10,["H5704"]],[10,11,["H2088"]],[11,12,["H3117"]],[12,13,["H227"]],[13,14,["H3841"]],[14,15,["H6586"]],[15,18,["H1931"]],[18,19,["H6256"]]]},{"k":9750,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3141"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3063"]]]},{"k":9751,"v":[[0,2,["H3141"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,10,["H5973"]],[10,12,["H1"]],[12,15,["H5892"]],[15,17,["H1732"]],[17,19,["H274"]],[19,21,["H1121"]],[21,22,["H4427"]],[22,25,["H8478"]]]},{"k":9752,"v":[[0,3,["H8147","H6240"]],[3,4,["H8141"]],[4,6,["H3141"]],[6,8,["H1121"]],[8,10,["H256"]],[10,11,["H4428"]],[11,13,["H3478"]],[13,15,["H274"]],[15,17,["H1121"]],[17,19,["H3088"]],[19,20,["H4428"]],[20,22,["H3063"]],[22,25,["H4427"]]]},{"k":9753,"v":[[0,1,["H8147"]],[1,3,["H6242"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,7,["H274"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H259"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,22,["H517"]],[22,23,["H8034"]],[23,25,["H6271"]],[25,27,["H1323"]],[27,29,["H6018"]],[29,30,["H4428"]],[30,32,["H3478"]]]},{"k":9754,"v":[[0,3,["H1980"]],[3,6,["H1870"]],[6,9,["H1004"]],[9,11,["H256"]],[11,13,["H6213"]],[13,14,["H7451"]],[14,17,["H5869"]],[17,20,["H3068"]],[20,24,["H1004"]],[24,26,["H256"]],[26,27,["H3588"]],[27,28,["H1931"]],[28,33,["H2860"]],[33,36,["H1004"]],[36,38,["H256"]]]},{"k":9755,"v":[[0,3,["H1980"]],[3,4,["H854"]],[4,5,["H3141"]],[5,7,["H1121"]],[7,9,["H256"]],[9,12,["H4421"]],[12,13,["H5973"]],[13,14,["H2371"]],[14,15,["H4428"]],[15,17,["H758"]],[17,19,["H7433"]],[19,22,["H761"]],[22,23,["H5221","(H853)"]],[23,24,["H3141"]]]},{"k":9756,"v":[[0,2,["H4428"]],[2,3,["H3141"]],[3,5,["H7725"]],[5,8,["H7495"]],[8,10,["H3157"]],[10,11,["H4480"]],[11,13,["H4347"]],[13,14,["H834"]],[14,16,["H761"]],[16,18,["H5221"]],[18,21,["H7414"]],[21,24,["H3898"]],[24,25,["H854"]],[25,26,["H2371"]],[26,27,["H4428"]],[27,29,["H758"]],[29,31,["H274"]],[31,33,["H1121"]],[33,35,["H3088"]],[35,36,["H4428"]],[36,38,["H3063"]],[38,40,["H3381"]],[40,42,["H7200","(H853)"]],[42,43,["H3141"]],[43,45,["H1121"]],[45,47,["H256"]],[47,49,["H3157"]],[49,50,["H3588"]],[50,51,["H1931"]],[51,53,["H2470"]]]},{"k":9757,"v":[[0,2,["H477"]],[2,4,["H5030"]],[4,5,["H7121"]],[5,6,["H259"]],[6,9,["H4480","H1121"]],[9,12,["H5030"]],[12,14,["H559"]],[14,18,["H2296"]],[18,20,["H4975"]],[20,22,["H3947"]],[22,23,["H2088"]],[23,24,["H6378"]],[24,26,["H8081"]],[26,29,["H3027"]],[29,31,["H1980"]],[31,33,["H7433"]]]},{"k":9758,"v":[[0,4,["H935"]],[4,5,["H8033"]],[5,7,["H7200"]],[7,8,["H8033"]],[8,9,["H3058"]],[9,11,["H1121"]],[11,13,["H3092"]],[13,15,["H1121"]],[15,17,["H5250"]],[17,20,["H935"]],[20,25,["H6965"]],[25,27,["H4480","H8432"]],[27,29,["H251"]],[29,31,["H935"]],[31,35,["H2315"]],[35,36,["H2315"]]]},{"k":9759,"v":[[0,2,["H3947"]],[2,4,["H6378"]],[4,6,["H8081"]],[6,8,["H3332"]],[8,10,["H5921"]],[10,12,["H7218"]],[12,14,["H559"]],[14,15,["H3541"]],[15,16,["H559"]],[16,18,["H3068"]],[18,21,["H4886"]],[21,23,["H4428"]],[23,24,["H413"]],[24,25,["H3478"]],[25,27,["H6605"]],[27,29,["H1817"]],[29,31,["H5127"]],[31,33,["H2442"]],[33,34,["H3808"]]]},{"k":9760,"v":[[0,4,["H5288"]],[4,8,["H5288"]],[8,10,["H5030"]],[10,11,["H1980"]],[11,13,["H7433"]]]},{"k":9761,"v":[[0,4,["H935"]],[4,5,["H2009"]],[5,7,["H8269"]],[7,10,["H2428"]],[10,12,["H3427"]],[12,15,["H559"]],[15,19,["H1697"]],[19,20,["H413"]],[20,23,["H8269"]],[23,25,["H3058"]],[25,26,["H559"]],[26,27,["H413"]],[27,28,["H4310"]],[28,30,["H4480","H3605"]],[30,34,["H559"]],[34,35,["H413"]],[35,38,["H8269"]]]},{"k":9762,"v":[[0,3,["H6965"]],[3,5,["H935"]],[5,8,["H1004"]],[8,11,["H3332"]],[11,13,["H8081"]],[13,14,["H413"]],[14,16,["H7218"]],[16,18,["H559"]],[18,21,["H3541"]],[21,22,["H559"]],[22,24,["H3068"]],[24,25,["H430"]],[25,27,["H3478"]],[27,30,["H4886"]],[30,32,["H4428"]],[32,33,["H413"]],[33,35,["H5971"]],[35,38,["H3068"]],[38,40,["H413"]],[40,41,["H3478"]]]},{"k":9763,"v":[[0,4,["H5221","(H853)"]],[4,6,["H1004"]],[6,8,["H256"]],[8,10,["H113"]],[10,14,["H5358"]],[14,16,["H1818"]],[16,19,["H5650"]],[19,21,["H5030"]],[21,24,["H1818"]],[24,26,["H3605"]],[26,28,["H5650"]],[28,31,["H3068"]],[31,34,["H4480","H3027"]],[34,36,["H348"]]]},{"k":9764,"v":[[0,3,["H3605"]],[3,4,["H1004"]],[4,6,["H256"]],[6,8,["H6"]],[8,13,["H3772"]],[13,15,["H256"]],[15,18,["H8366"]],[18,21,["H7023"]],[21,27,["H6113"]],[27,29,["H5800"]],[29,31,["H3478"]]]},{"k":9765,"v":[[0,4,["H5414","(H853)"]],[4,6,["H1004"]],[6,8,["H256"]],[8,11,["H1004"]],[11,13,["H3379"]],[13,15,["H1121"]],[15,17,["H5028"]],[17,21,["H1004"]],[21,23,["H1201"]],[23,25,["H1121"]],[25,27,["H281"]]]},{"k":9766,"v":[[0,3,["H3611"]],[3,5,["H398"]],[5,6,["H348"]],[6,9,["H2506"]],[9,11,["H3157"]],[11,16,["H369"]],[16,18,["H6912"]],[18,22,["H6605"]],[22,24,["H1817"]],[24,26,["H5127"]]]},{"k":9767,"v":[[0,2,["H3058"]],[2,4,["H3318"]],[4,5,["H413"]],[5,7,["H5650"]],[7,10,["H113"]],[10,13,["H559"]],[13,18,["H7965"]],[18,19,["H4069"]],[19,20,["H935"]],[20,21,["H2088"]],[21,22,["H7696"]],[22,24,["H413"]],[24,28,["H559"]],[28,29,["H413"]],[29,31,["H859"]],[31,32,["H3045"]],[32,34,["H376"]],[34,35,["(H853)"]],[35,37,["H7879"]]]},{"k":9768,"v":[[0,3,["H559"]],[3,6,["H8267"]],[6,7,["H5046"]],[7,9,["H4994"]],[9,12,["H559"]],[12,13,["H2063"]],[13,15,["H2063"]],[15,16,["H559"]],[16,18,["H413"]],[18,20,["H559"]],[20,21,["H3541"]],[21,22,["H559"]],[22,24,["H3068"]],[24,27,["H4886"]],[27,29,["H4428"]],[29,30,["H413"]],[30,31,["H3478"]]]},{"k":9769,"v":[[0,3,["H4116"]],[3,5,["H3947"]],[5,7,["H376"]],[7,9,["H899"]],[9,11,["H7760"]],[11,13,["H8478"]],[13,15,["H413"]],[15,17,["H1634"]],[17,20,["H4609"]],[20,22,["H8628"]],[22,24,["H7782"]],[24,25,["H559"]],[25,26,["H3058"]],[26,28,["H4427"]]]},{"k":9770,"v":[[0,2,["H3058"]],[2,4,["H1121"]],[4,6,["H3092"]],[6,8,["H1121"]],[8,10,["H5250"]],[10,11,["H7194"]],[11,12,["H413"]],[12,13,["H3141"]],[13,15,["H3141"]],[15,16,["H1961"]],[16,17,["H8104"]],[17,18,["H7433"]],[18,19,["H1931"]],[19,21,["H3605"]],[21,22,["H3478"]],[22,23,["H4480","H6440"]],[23,25,["H2371"]],[25,26,["H4428"]],[26,28,["H758"]]]},{"k":9771,"v":[[0,2,["H4428"]],[2,3,["H3088"]],[3,5,["H7725"]],[5,8,["H7495"]],[8,10,["H3157"]],[10,11,["H4480"]],[11,13,["H4347"]],[13,14,["H834"]],[14,16,["H761"]],[16,18,["H5221"]],[18,22,["H3898"]],[22,23,["H854"]],[23,24,["H2371"]],[24,25,["H4428"]],[25,27,["H758"]],[27,29,["H3058"]],[29,30,["H559"]],[30,31,["H518"]],[31,33,["H3426"]],[33,35,["H5315"]],[35,38,["H408"]],[38,40,["H3318"]],[40,42,["H6412"]],[42,44,["H4480"]],[44,46,["H5892"]],[46,48,["H1980"]],[48,50,["H5046"]],[50,53,["H3157"]]]},{"k":9772,"v":[[0,2,["H3058"]],[2,6,["H7392"]],[6,8,["H1980"]],[8,10,["H3157"]],[10,11,["H3588"]],[11,12,["H3141"]],[12,13,["H7901"]],[13,14,["H8033"]],[14,16,["H274"]],[16,17,["H4428"]],[17,19,["H3063"]],[19,22,["H3381"]],[22,24,["H7200","(H853)"]],[24,25,["H3141"]]]},{"k":9773,"v":[[0,3,["H5975"]],[3,5,["H6822"]],[5,6,["H5921"]],[6,8,["H4026"]],[8,10,["H3157"]],[10,13,["H7200","(H853)"]],[13,15,["H8229"]],[15,17,["H3058"]],[17,20,["H935"]],[20,22,["H559"]],[22,23,["H589"]],[23,24,["H7200"]],[24,26,["H8229"]],[26,28,["H3088"]],[28,29,["H559"]],[29,30,["H3947"]],[30,32,["H7395"]],[32,34,["H7971"]],[34,36,["H7122"]],[36,41,["H559"]],[41,44,["H7965"]]]},{"k":9774,"v":[[0,3,["H1980"]],[3,6,["H7392","H5483"]],[6,8,["H7122"]],[8,11,["H559"]],[11,12,["H3541"]],[12,13,["H559"]],[13,15,["H4428"]],[15,18,["H7965"]],[18,20,["H3058"]],[20,21,["H559"]],[21,22,["H4100"]],[22,28,["H7965"]],[28,29,["H5437"]],[29,31,["H413","H310"]],[31,35,["H6822"]],[35,36,["H5046"]],[36,37,["H559"]],[37,39,["H4397"]],[39,40,["H935"]],[40,41,["H5704"]],[41,42,["H1992"]],[42,47,["H7725","H3808"]]]},{"k":9775,"v":[[0,4,["H7971"]],[4,6,["H8145"]],[6,8,["H7392","H5483"]],[8,10,["H935"]],[10,11,["H413"]],[11,14,["H559"]],[14,15,["H3541"]],[15,16,["H559"]],[16,18,["H4428"]],[18,21,["H7965"]],[21,23,["H3058"]],[23,24,["H559"]],[24,25,["H4100"]],[25,31,["H7965"]],[31,32,["H5437"]],[32,34,["H413","H310"]],[34,35,[]]]},{"k":9776,"v":[[0,3,["H6822"]],[3,4,["H5046"]],[4,5,["H559"]],[5,7,["H935"]],[7,8,["H5704"]],[8,9,["H413"]],[9,14,["H7725","H3808"]],[14,17,["H4491"]],[17,21,["H4491"]],[21,23,["H3058"]],[23,25,["H1121"]],[25,27,["H5250"]],[27,28,["H3588"]],[28,30,["H5090"]],[30,31,["H7697"]]]},{"k":9777,"v":[[0,2,["H3088"]],[2,3,["H559"]],[3,5,["H631"]],[5,8,["H7393"]],[8,11,["H631"]],[11,13,["H3088"]],[13,14,["H4428"]],[14,16,["H3478"]],[16,18,["H274"]],[18,19,["H4428"]],[19,21,["H3063"]],[21,23,["H3318"]],[23,24,["H376"]],[24,27,["H7393"]],[27,31,["H3318"]],[31,32,["H7122"]],[32,33,["H3058"]],[33,35,["H4672"]],[35,39,["H2513"]],[39,41,["H5022"]],[41,43,["H3158"]]]},{"k":9778,"v":[[0,5,["H1961"]],[5,7,["H3088"]],[7,8,["H7200","(H853)"]],[8,9,["H3058"]],[9,12,["H559"]],[12,15,["H7965"]],[15,16,["H3058"]],[16,19,["H559"]],[19,20,["H4100"]],[20,21,["H7965"]],[21,24,["H5704"]],[24,26,["H2183"]],[26,29,["H517"]],[29,30,["H348"]],[30,33,["H3785"]],[33,36,["H7227"]]]},{"k":9779,"v":[[0,2,["H3088"]],[2,3,["H2015"]],[3,5,["H3027"]],[5,7,["H5127"]],[7,9,["H559"]],[9,10,["H413"]],[10,11,["H274"]],[11,14,["H4820"]],[14,16,["H274"]]]},{"k":9780,"v":[[0,2,["H3058"]],[2,5,["H7198"]],[5,8,["H4390"]],[8,9,["H3027"]],[9,11,["H5221","(H853)"]],[11,12,["H3088"]],[12,13,["H996"]],[13,15,["H2220"]],[15,18,["H2678"]],[18,20,["H3318"]],[20,23,["H4480","H3820"]],[23,27,["H3766"]],[27,30,["H7393"]]]},{"k":9781,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,5,["H920"]],[5,7,["H7991"]],[7,9,["H5375"]],[9,11,["H7993"]],[11,15,["H2513"]],[15,18,["H7704"]],[18,20,["H5022"]],[20,22,["H3158"]],[22,23,["H3588"]],[23,24,["H2142"]],[24,28,["H589"]],[28,30,["H859","(H853)"]],[30,31,["H7392"]],[31,32,["H6776"]],[32,33,["H310"]],[33,34,["H256"]],[34,36,["H1"]],[36,38,["H3068"]],[38,39,["H5375","(H853)"]],[39,40,["H2088"]],[40,41,["H4853"]],[41,42,["H5921"]],[42,43,[]]]},{"k":9782,"v":[[0,1,["H518","H3808"]],[1,4,["H7200"]],[4,5,["H570","(H853)"]],[5,7,["H1818"]],[7,9,["H5022"]],[9,12,["H1818"]],[12,15,["H1121"]],[15,16,["H5002"]],[16,18,["H3068"]],[18,22,["H7999"]],[22,25,["H2063"]],[25,26,["H2513"]],[26,27,["H5002"]],[27,29,["H3068"]],[29,30,["H6258"]],[30,32,["H5375"]],[32,34,["H7993"]],[34,38,["H2513"]],[38,44,["H1697"]],[44,47,["H3068"]]]},{"k":9783,"v":[[0,3,["H274"]],[3,5,["H4428"]],[5,7,["H3063"]],[7,8,["H7200"]],[8,11,["H5127"]],[11,14,["H1870"]],[14,17,["H1588"]],[17,18,["H1004"]],[18,20,["H3058"]],[20,21,["H7291"]],[21,22,["H310"]],[22,25,["H559"]],[25,26,["H5221"]],[26,28,["H1571"]],[28,29,["H413"]],[29,31,["H4818"]],[31,39,["H4608"]],[39,41,["H1483"]],[41,42,["H834"]],[42,44,["H854"]],[44,45,["H2991"]],[45,48,["H5127"]],[48,50,["H4023"]],[50,52,["H4191"]],[52,53,["H8033"]]]},{"k":9784,"v":[[0,3,["H5650"]],[3,8,["H7392","(H853)"]],[8,10,["H3389"]],[10,12,["H6912"]],[12,16,["H6900"]],[16,17,["H5973"]],[17,19,["H1"]],[19,22,["H5892"]],[22,24,["H1732"]]]},{"k":9785,"v":[[0,4,["H259","H6240"]],[4,5,["H8141"]],[5,7,["H3141"]],[7,9,["H1121"]],[9,11,["H256"]],[11,13,["H274"]],[13,15,["H4427"]],[15,16,["H5921"]],[16,17,["H3063"]]]},{"k":9786,"v":[[0,3,["H3058"]],[3,5,["H935"]],[5,7,["H3157"]],[7,8,["H348"]],[8,9,["H8085"]],[9,14,["H7760","H6320"]],[14,16,["H5869"]],[16,18,["H3190","(H853)"]],[18,20,["H7218"]],[20,23,["H8259"]],[23,24,["H1157"]],[24,26,["H2474"]]]},{"k":9787,"v":[[0,3,["H3058"]],[3,5,["H935"]],[5,8,["H8179"]],[8,10,["H559"]],[10,12,["H2174"]],[12,13,["H7965"]],[13,15,["H2026"]],[15,17,["H113"]]]},{"k":9788,"v":[[0,4,["H5375"]],[4,6,["H6440"]],[6,7,["H413"]],[7,9,["H2474"]],[9,11,["H559"]],[11,12,["H4310"]],[12,16,["H854"]],[16,17,["H4310"]],[17,21,["H8259"]],[21,22,["H413"]],[22,24,["H8147"]],[24,26,["H7969"]],[26,27,["H5631"]]]},{"k":9789,"v":[[0,3,["H559"]],[3,6,["H8058"]],[6,11,["H8058"]],[11,16,["H4480","H1818"]],[16,18,["H5137"]],[18,19,["H413"]],[19,21,["H7023"]],[21,23,["H413"]],[23,25,["H5483"]],[25,31,["H7429"]]]},{"k":9790,"v":[[0,6,["H935"]],[6,9,["H398"]],[9,11,["H8354"]],[11,13,["H559"]],[13,15,["H6485"]],[15,16,["H4994","(H853)"]],[16,17,["H2063"]],[17,18,["H779"]],[18,21,["H6912"]],[21,23,["H3588"]],[23,24,["H1931"]],[24,27,["H4428"]],[27,28,["H1323"]]]},{"k":9791,"v":[[0,3,["H1980"]],[3,5,["H6912"]],[5,9,["H4672"]],[9,11,["H3808"]],[11,14,["H3588","H518"]],[14,16,["H1538"]],[16,19,["H7272"]],[19,22,["H3709"]],[22,25,["H3027"]]]},{"k":9792,"v":[[0,4,["H7725"]],[4,6,["H5046"]],[6,10,["H559"]],[10,11,["H1931"]],[11,14,["H1697"]],[14,17,["H3068"]],[17,18,["H834"]],[18,20,["H1696"]],[20,21,["H3027"]],[21,23,["H5650"]],[23,24,["H452"]],[24,26,["H8664"]],[26,27,["H559"]],[27,30,["H2506"]],[30,32,["H3157"]],[32,34,["H3611"]],[34,35,["H398","(H853)"]],[35,37,["H1320"]],[37,39,["H348"]]]},{"k":9793,"v":[[0,3,["H5038"]],[3,5,["H348"]],[5,7,["H1961"]],[7,9,["H1828"]],[9,10,["H5921"]],[10,12,["H6440"]],[12,15,["H7704"]],[15,18,["H2506"]],[18,20,["H3157"]],[20,22,["H834"]],[22,25,["H3808"]],[25,26,["H559"]],[26,27,["H2063"]],[27,29,["H348"]]]},{"k":9794,"v":[[0,2,["H256"]],[2,4,["H7657"]],[4,5,["H1121"]],[5,7,["H8111"]],[7,9,["H3058"]],[9,10,["H3789"]],[10,11,["H5612"]],[11,13,["H7971"]],[13,15,["H8111"]],[15,16,["H413"]],[16,18,["H8269"]],[18,20,["H3157"]],[20,23,["H2205"]],[23,25,["H413"]],[25,29,["H539"]],[29,30,["H256"]],[30,32,["H559"]]]},{"k":9795,"v":[[0,1,["H6258"]],[1,5,["H2088"]],[5,6,["H5612"]],[6,7,["H935"]],[7,8,["H413"]],[8,12,["H113"]],[12,13,["H1121"]],[13,15,["H854"]],[15,20,["H854"]],[20,22,["H7393"]],[22,24,["H5483"]],[24,26,["H4013"]],[26,27,["H5892"]],[27,30,["H5402"]]]},{"k":9796,"v":[[0,3,["H7200"]],[3,5,["H2896"]],[5,7,["H3477"]],[7,11,["H4480","H1121","H113"]],[11,13,["H7760"]],[13,15,["H5921"]],[15,17,["H1"]],[17,18,["H3678"]],[18,20,["H3898"]],[20,21,["H5921"]],[21,23,["H113"]],[23,24,["H1004"]]]},{"k":9797,"v":[[0,4,["H3966","H3966"]],[4,5,["H3372"]],[5,7,["H559"]],[7,8,["H2009"]],[8,9,["H8147"]],[9,10,["H4428"]],[10,11,["H5975"]],[11,12,["H3808"]],[12,13,["H6440"]],[13,15,["H349"]],[15,18,["H587"]],[18,19,["H5975"]]]},{"k":9798,"v":[[0,3,["H834"]],[3,5,["H5921"]],[5,7,["H1004"]],[7,10,["H834"]],[10,12,["H5921"]],[12,14,["H5892"]],[14,16,["H2205"]],[16,21,["H539"]],[21,25,["H7971"]],[25,26,["H413"]],[26,27,["H3058"]],[27,28,["H559"]],[28,29,["H587"]],[29,32,["H5650"]],[32,35,["H6213"]],[35,36,["H3605"]],[36,37,["H834"]],[37,40,["H559","H413"]],[40,44,["H3808"]],[44,47,["H4427","H376"]],[47,48,["H6213"]],[48,53,["H2896"]],[53,56,["H5869"]]]},{"k":9799,"v":[[0,3,["H3789"]],[3,5,["H5612"]],[5,8,["H8145"]],[8,9,["H413"]],[9,11,["H559"]],[11,12,["H518"]],[12,13,["H859"]],[13,18,["H859"]],[18,20,["H8085"]],[20,23,["H6963"]],[23,24,["H3947"]],[24,25,["(H853)"]],[25,27,["H7218"]],[27,30,["H376"]],[30,32,["H113"]],[32,33,["H1121"]],[33,35,["H935"]],[35,36,["H413"]],[36,39,["H3157"]],[39,42,["H4279"]],[42,44,["H6256"]],[44,47,["H4428"]],[47,48,["H1121"]],[48,50,["H7657"]],[50,51,["H376"]],[51,53,["H854"]],[53,56,["H1419"]],[56,59,["H5892"]],[59,63,["H1431","(H853)"]]]},{"k":9800,"v":[[0,5,["H1961"]],[5,8,["H5612"]],[8,9,["H935"]],[9,10,["H413"]],[10,14,["H3947","(H853)"]],[14,16,["H4428"]],[16,17,["H1121"]],[17,19,["H7819"]],[19,20,["H7657"]],[20,21,["H376"]],[21,23,["H7760","(H853)"]],[23,25,["H7218"]],[25,27,["H1731"]],[27,29,["H7971","H413"]],[29,33,["H3157"]]]},{"k":9801,"v":[[0,3,["H935"]],[3,5,["H4397"]],[5,7,["H5046"]],[7,9,["H559"]],[9,12,["H935"]],[12,14,["H7218"]],[14,17,["H4428"]],[17,18,["H1121"]],[18,21,["H559"]],[21,22,["H7760"]],[22,26,["H8147"]],[26,27,["H6652"]],[27,31,["H6607"]],[31,34,["H8179"]],[34,35,["H5704"]],[35,37,["H1242"]]]},{"k":9802,"v":[[0,5,["H1961"]],[5,8,["H1242"]],[8,12,["H3318"]],[12,14,["H5975"]],[14,16,["H559"]],[16,17,["H413"]],[17,18,["H3605"]],[18,20,["H5971"]],[20,21,["H859"]],[21,23,["H6662"]],[23,24,["H2009"]],[24,25,["H589"]],[25,26,["H7194"]],[26,27,["H5921"]],[27,29,["H113"]],[29,31,["H2026"]],[31,34,["H4310"]],[34,35,["H5221","(H853)"]],[35,36,["H3605"]],[36,37,["H428"]]]},{"k":9803,"v":[[0,1,["H3045"]],[1,2,["H645"]],[2,3,["H3588"]],[3,6,["H5307"]],[6,9,["H776"]],[9,10,["H3808"]],[10,13,["H4480","H1697"]],[13,16,["H3068"]],[16,17,["H834"]],[17,19,["H3068"]],[19,20,["H1696"]],[20,21,["H5921"]],[21,23,["H1004"]],[23,25,["H256"]],[25,28,["H3068"]],[28,30,["H6213","(H853)"]],[30,32,["H834"]],[32,34,["H1696"]],[34,35,["H3027"]],[35,37,["H5650"]],[37,38,["H452"]]]},{"k":9804,"v":[[0,2,["H3058"]],[2,3,["H5221","(H853)"]],[3,4,["H3605"]],[4,6,["H7604"]],[6,9,["H1004"]],[9,11,["H256"]],[11,13,["H3157"]],[13,15,["H3605"]],[15,18,["H1419"]],[18,21,["H3045"]],[21,24,["H3548"]],[24,25,["H5704"]],[25,27,["H7604"]],[27,29,["H1115"]],[29,30,["H8300"]]]},{"k":9805,"v":[[0,3,["H6965"]],[3,5,["H935"]],[5,7,["H1980"]],[7,9,["H8111"]],[9,12,["H1931"]],[12,17,["H1044"]],[17,20,["H1870"]]]},{"k":9806,"v":[[0,1,["H3058"]],[1,2,["H4672"]],[2,3,["(H853)"]],[3,5,["H251"]],[5,7,["H274"]],[7,8,["H4428"]],[8,10,["H3063"]],[10,12,["H559"]],[12,13,["H4310"]],[13,15,["H859"]],[15,18,["H559"]],[18,19,["H587"]],[19,22,["H251"]],[22,24,["H274"]],[24,28,["H3381"]],[28,30,["H7965"]],[30,32,["H1121"]],[32,35,["H4428"]],[35,38,["H1121"]],[38,41,["H1377"]]]},{"k":9807,"v":[[0,3,["H559"]],[3,4,["H8610"]],[4,6,["H2416"]],[6,9,["H8610"]],[9,11,["H2416"]],[11,13,["H7819"]],[13,15,["H413"]],[15,17,["H953"]],[17,21,["H1044"]],[21,23,["H8147"]],[23,25,["H705"]],[25,26,["H376"]],[26,27,["H3808"]],[27,28,["H7604"]],[28,30,["H376"]],[30,31,["H4480"]],[31,32,[]]]},{"k":9808,"v":[[0,5,["H1980"]],[5,6,["H4480","H8033"]],[6,9,["H4672","(H853)"]],[9,10,["H3082"]],[10,12,["H1121"]],[12,14,["H7394"]],[14,17,["H7122"]],[17,21,["H1288"]],[21,24,["H559"]],[24,25,["H413"]],[25,27,["H3426","(H853)"]],[27,29,["H3824"]],[29,30,["H3477"]],[30,31,["H834"]],[31,33,["H3824"]],[33,35,["H5973"]],[35,37,["H3824"]],[37,39,["H3082"]],[39,40,["H559"]],[40,42,["H3426"]],[42,45,["H3426"]],[45,46,["H5414"]],[46,47,["(H853)"]],[47,49,["H3027"]],[49,52,["H5414"]],[52,55,["H3027"]],[55,60,["H5927"]],[60,61,["H413"]],[61,63,["H413"]],[63,65,["H4818"]]]},{"k":9809,"v":[[0,3,["H559"]],[3,4,["H1980"]],[4,5,["H854"]],[5,8,["H7200"]],[8,10,["H7068"]],[10,13,["H3068"]],[13,18,["H7392"]],[18,21,["H7393"]]]},{"k":9810,"v":[[0,4,["H935"]],[4,6,["H8111"]],[6,8,["H5221","(H853)"]],[8,9,["H3605"]],[9,11,["H7604"]],[11,13,["H256"]],[13,15,["H8111"]],[15,16,["H5704"]],[16,19,["H8045"]],[19,24,["H1697"]],[24,27,["H3068"]],[27,28,["H834"]],[28,30,["H1696"]],[30,31,["H413"]],[31,32,["H452"]]]},{"k":9811,"v":[[0,2,["H3058"]],[2,3,["H6908","(H853)"]],[3,4,["H3605"]],[4,6,["H5971"]],[6,9,["H559"]],[9,10,["H413"]],[10,12,["H256"]],[12,13,["H5647","(H853)"]],[13,14,["H1168"]],[14,16,["H4592"]],[16,18,["H3058"]],[18,20,["H5647"]],[20,22,["H7235"]]]},{"k":9812,"v":[[0,1,["H6258"]],[1,3,["H7121"]],[3,4,["H413"]],[4,6,["H3605"]],[6,8,["H5030"]],[8,10,["H1168"]],[10,11,["H3605"]],[11,13,["H5647"]],[13,15,["H3605"]],[15,17,["H3548"]],[17,19,["H376","H408"]],[19,21,["H6485"]],[21,22,["H3588"]],[22,26,["H1419"]],[26,27,["H2077"]],[27,31,["H1168"]],[31,32,["H3605","H834"]],[32,35,["H6485"]],[35,38,["H3808"]],[38,39,["H2421"]],[39,41,["H3058"]],[41,42,["H6213"]],[42,45,["H6122"]],[45,48,["H4616"]],[48,52,["H6","(H853)"]],[52,54,["H5647"]],[54,56,["H1168"]]]},{"k":9813,"v":[[0,2,["H3058"]],[2,3,["H559"]],[3,4,["H6942"]],[4,7,["H6116"]],[7,9,["H1168"]],[9,12,["H7121"]],[12,13,[]]]},{"k":9814,"v":[[0,2,["H3058"]],[2,3,["H7971"]],[3,5,["H3605"]],[5,6,["H3478"]],[6,8,["H3605"]],[8,10,["H5647"]],[10,12,["H1168"]],[12,13,["H935"]],[13,18,["H3808"]],[18,20,["H376"]],[20,21,["H7604"]],[21,22,["H834"]],[22,23,["H935"]],[23,24,["H3808"]],[24,27,["H935"]],[27,30,["H1004"]],[30,32,["H1168"]],[32,35,["H1004"]],[35,37,["H1168"]],[37,39,["H4390"]],[39,42,["H6310"]],[42,44,["H6310"]]]},{"k":9815,"v":[[0,3,["H559"]],[3,6,["H834"]],[6,8,["H5921"]],[8,10,["H4458"]],[10,12,["H3318"]],[12,13,["H3830"]],[13,15,["H3605"]],[15,17,["H5647"]],[17,19,["H1168"]],[19,24,["H3318"]],[24,25,["H4403"]]]},{"k":9816,"v":[[0,2,["H3058"]],[2,3,["H935"]],[3,5,["H3082"]],[5,7,["H1121"]],[7,9,["H7394"]],[9,12,["H1004"]],[12,14,["H1168"]],[14,16,["H559"]],[16,19,["H5647"]],[19,21,["H1168"]],[21,22,["H2664"]],[22,24,["H7200"]],[24,25,["H6435"]],[25,27,["H3426"]],[27,28,["H6311"]],[28,29,["H5973"]],[29,34,["H4480","H5650"]],[34,37,["H3068"]],[37,38,["H3588","H518"]],[38,40,["H5647"]],[40,42,["H1168"]],[42,43,["H905"]]]},{"k":9817,"v":[[0,5,["H935"]],[5,7,["H6213"]],[7,8,["H2077"]],[8,11,["H5930"]],[11,12,["H3058"]],[12,13,["H7760"]],[13,14,["H8084"]],[14,15,["H376"]],[15,16,["H2351"]],[16,18,["H559"]],[18,20,["H376"]],[20,21,["H4480"]],[21,23,["H376"]],[23,24,["H834"]],[24,25,["H589"]],[25,27,["H935"]],[27,28,["H5921"]],[28,30,["H3027"]],[30,31,["H4422"]],[31,38,["H5315"]],[38,41,["H8478"]],[41,43,["H5315"]],[43,45,[]]]},{"k":9818,"v":[[0,5,["H1961"]],[5,13,["H3615"]],[13,15,["H6213"]],[15,18,["H5930"]],[18,20,["H3058"]],[20,21,["H559"]],[21,24,["H7323"]],[24,28,["H7991"]],[28,30,["H935"]],[30,32,["H5221"]],[32,35,["H376","H408"]],[35,37,["H3318"]],[37,40,["H5221"]],[40,44,["H6310"]],[44,47,["H2719"]],[47,50,["H7323"]],[50,53,["H7991"]],[53,56,["H7993"]],[56,58,["H1980"]],[58,59,["H5704"]],[59,61,["H5892"]],[61,64,["H1004"]],[64,66,["H1168"]]]},{"k":9819,"v":[[0,4,["H3318","(H853)"]],[4,6,["H4676"]],[6,10,["H1004"]],[10,12,["H1168"]],[12,14,["H8313"]],[14,15,[]]]},{"k":9820,"v":[[0,4,["H5422","(H853)"]],[4,6,["H4676"]],[6,8,["H1168"]],[8,11,["H5422","(H853)"]],[11,13,["H1004"]],[13,15,["H1168"]],[15,17,["H7760"]],[17,21,["H4163"]],[21,22,["H5704"]],[22,24,["H3117"]]]},{"k":9821,"v":[[0,2,["H3058"]],[2,3,["H8045","(H853)"]],[3,4,["H1168"]],[4,7,["H4480","H3478"]]]},{"k":9822,"v":[[0,1,["H7535"]],[1,4,["H2399"]],[4,6,["H3379"]],[6,8,["H1121"]],[8,10,["H5028"]],[10,11,["H834"]],[11,12,["(H853)"]],[12,13,["H3478"]],[13,15,["H2398"]],[15,16,["H3058"]],[16,17,["H5493"]],[17,18,["H3808"]],[18,20,["H4480","H310"]],[20,25,["H2091"]],[25,26,["H5695"]],[26,27,["H834"]],[27,30,["H1008"]],[30,32,["H834"]],[32,35,["H1835"]]]},{"k":9823,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3058"]],[6,7,["H3282","H834"]],[7,11,["H2895"]],[11,13,["H6213"]],[13,17,["H3477"]],[17,20,["H5869"]],[20,23,["H6213"]],[23,26,["H1004"]],[26,28,["H256"]],[28,31,["H3605"]],[31,32,["H834"]],[32,36,["H3824"]],[36,38,["H1121"]],[38,41,["H7243"]],[41,44,["H3427"]],[44,45,["H5921"]],[45,47,["H3678"]],[47,49,["H3478"]]]},{"k":9824,"v":[[0,2,["H3058"]],[2,5,["H8104","H3808"]],[5,7,["H1980"]],[7,10,["H8451"]],[10,13,["H3068"]],[13,14,["H430"]],[14,16,["H3478"]],[16,18,["H3605"]],[18,20,["H3824"]],[20,23,["H5493"]],[23,24,["H3808"]],[24,25,["H4480","H5921"]],[25,27,["H2403"]],[27,29,["H3379"]],[29,30,["H834"]],[30,31,["(H853)"]],[31,32,["H3478"]],[32,34,["H2398"]]]},{"k":9825,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,5,["H3068"]],[5,6,["H2490"]],[6,10,["H7096","H3478"]],[10,12,["H2371"]],[12,13,["H5221"]],[13,16,["H3605"]],[16,18,["H1366"]],[18,20,["H3478"]]]},{"k":9826,"v":[[0,1,["H4480"]],[1,2,["H3383"]],[2,3,["H4217","H8121","(H853)"]],[3,4,["H3605"]],[4,6,["H776"]],[6,8,["H1568"]],[8,10,["H1425"]],[10,13,["H7206"]],[13,16,["H4520"]],[16,18,["H4480","H6177"]],[18,19,["H834"]],[19,21,["H5921"]],[21,23,["H5158"]],[23,24,["H769"]],[24,26,["H1568"]],[26,28,["H1316"]]]},{"k":9827,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3058"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H3605"]],[15,17,["H1369"]],[17,19,["H1992"]],[19,20,["H3808"]],[20,21,["H3789"]],[21,22,["H5921"]],[22,24,["H5612"]],[24,27,["H1697","H3117"]],[27,30,["H4428"]],[30,32,["H3478"]]]},{"k":9828,"v":[[0,2,["H3058"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,12,["H8111"]],[12,14,["H3059"]],[14,16,["H1121"]],[16,17,["H4427"]],[17,20,["H8478"]]]},{"k":9829,"v":[[0,3,["H3117"]],[3,4,["H834"]],[4,5,["H3058"]],[5,6,["H4427"]],[6,7,["H5921"]],[7,8,["H3478"]],[8,10,["H8111"]],[10,12,["H6242"]],[12,14,["H8083"]],[14,15,["H8141"]]]},{"k":9830,"v":[[0,3,["H6271"]],[3,5,["H517"]],[5,7,["H274"]],[7,8,["H7200"]],[8,9,["H3588"]],[9,11,["H1121"]],[11,13,["H4191"]],[13,15,["H6965"]],[15,17,["H6","(H853)"]],[17,18,["H3605"]],[18,20,["H2233"]],[20,21,["H4467"]]]},{"k":9831,"v":[[0,2,["H3089"]],[2,4,["H1323"]],[4,6,["H4428"]],[6,7,["H3141"]],[7,8,["H269"]],[8,10,["H274"]],[10,11,["H3947","(H853)"]],[11,12,["H3101"]],[12,14,["H1121"]],[14,16,["H274"]],[16,18,["H1589"]],[18,21,["H4480","H8432"]],[21,23,["H4428"]],[23,24,["H1121"]],[24,27,["H4191"]],[27,30,["H5641"]],[30,36,["H3243"]],[36,39,["H2315","H4296"]],[39,40,["H4480","H6440"]],[40,41,["H6271"]],[41,46,["H3808"]],[46,47,["H4191"]]]},{"k":9832,"v":[[0,3,["H1961"]],[3,5,["H854"]],[5,6,["H2244"]],[6,9,["H1004"]],[9,12,["H3068"]],[12,13,["H8337"]],[13,14,["H8141"]],[14,16,["H6271"]],[16,18,["H4427"]],[18,19,["H5921"]],[19,21,["H776"]]]},{"k":9833,"v":[[0,3,["H7637"]],[3,4,["H8141"]],[4,5,["H3077"]],[5,6,["H7971"]],[6,8,["H3947","(H853)"]],[8,10,["H8269"]],[10,12,["H3967"]],[12,15,["H3746"]],[15,18,["H7323"]],[18,20,["H935"]],[20,22,["H413"]],[22,26,["H1004"]],[26,29,["H3068"]],[29,31,["H3772"]],[31,33,["H1285"]],[33,39,["H7650"]],[39,44,["H1004"]],[44,47,["H3068"]],[47,49,["H7200"]],[49,50,["(H853)"]],[50,52,["H4428"]],[52,53,["H1121"]]]},{"k":9834,"v":[[0,3,["H6680"]],[3,5,["H559"]],[5,6,["H2088"]],[6,9,["H1697"]],[9,10,["H834"]],[10,13,["H6213"]],[13,16,["H7992"]],[16,17,["H4480"]],[17,20,["H935"]],[20,24,["H7676"]],[24,28,["H8104"]],[28,31,["H4931"]],[31,34,["H4428"]],[34,35,["H1004"]]]},{"k":9835,"v":[[0,4,["H7992"]],[4,9,["H8179"]],[9,11,["H5495"]],[11,15,["H7992"]],[15,18,["H8179"]],[18,19,["H310"]],[19,21,["H7323"]],[21,25,["H8104","(H853)"]],[25,27,["H4931"]],[27,30,["H1004"]],[30,36,["H4535"]]]},{"k":9836,"v":[[0,2,["H8147"]],[2,3,["H3027"]],[3,5,["H3605"]],[5,9,["H3318"]],[9,12,["H7676"]],[12,16,["H8104","(H853)"]],[16,18,["H4931"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,25,["H413"]],[25,27,["H4428"]]]},{"k":9837,"v":[[0,4,["H5362","H5921"]],[4,6,["H4428"]],[6,8,["H5439"]],[8,10,["H376"]],[10,13,["H3627"]],[13,16,["H3027"]],[16,20,["H935"]],[20,21,["H413"]],[21,23,["H7713"]],[23,27,["H4191"]],[27,29,["H1961"]],[29,31,["H854"]],[31,33,["H4428"]],[33,37,["H3318"]],[37,42,["H935"]]]},{"k":9838,"v":[[0,3,["H8269"]],[3,6,["H3967"]],[6,7,["H6213"]],[7,10,["H3605"]],[10,12,["H834"]],[12,13,["H3077"]],[13,15,["H3548"]],[15,16,["H6680"]],[16,19,["H3947"]],[19,21,["H376","(H853)"]],[21,23,["H376"]],[23,28,["H935"]],[28,31,["H7676"]],[31,32,["H5973"]],[32,37,["H3318"]],[37,40,["H7676"]],[40,42,["H935"]],[42,43,["H413"]],[43,44,["H3077"]],[44,46,["H3548"]]]},{"k":9839,"v":[[0,4,["H8269"]],[4,6,["H3967"]],[6,9,["H3548"]],[9,10,["H5414","(H853)"]],[10,11,["H4428"]],[11,12,["H1732"]],[12,13,["H2595"]],[13,15,["H7982"]],[15,16,["H834"]],[16,20,["H1004"]],[20,23,["H3068"]]]},{"k":9840,"v":[[0,3,["H7323"]],[3,4,["H5975"]],[4,6,["H376"]],[6,9,["H3627"]],[9,12,["H3027"]],[12,14,["H5439","H5921"]],[14,16,["H4428"]],[16,20,["H4480","H3802","H3233"]],[20,23,["H1004"]],[23,24,["H5704"]],[24,26,["H8042"]],[26,27,["H3802"]],[27,30,["H1004"]],[30,34,["H4196"]],[34,37,["H1004"]]]},{"k":9841,"v":[[0,4,["H3318","(H853)"]],[4,6,["H4428"]],[6,7,["H1121"]],[7,9,["H5414","(H853)"]],[9,11,["H5145"]],[11,12,["H5921"]],[12,18,["H5715"]],[18,23,["H4427","(H853)"]],[23,25,["H4886"]],[25,29,["H5221"]],[29,31,["H3709"]],[31,33,["H559"]],[33,35,["H2421"]],[35,37,["H4428"]]]},{"k":9842,"v":[[0,3,["H6271"]],[3,4,["H8085","(H853)"]],[4,6,["H6963"]],[6,9,["H7323"]],[9,13,["H5971"]],[13,15,["H935"]],[15,16,["H413"]],[16,18,["H5971"]],[18,21,["H1004"]],[21,24,["H3068"]]]},{"k":9843,"v":[[0,4,["H7200"]],[4,5,["H2009"]],[5,7,["H4428"]],[7,8,["H5975"]],[8,9,["H5921"]],[9,11,["H5982"]],[11,14,["H4941"]],[14,18,["H8269"]],[18,21,["H2689"]],[21,22,["H413"]],[22,24,["H4428"]],[24,26,["H3605"]],[26,28,["H5971"]],[28,31,["H776"]],[31,32,["H8056"]],[32,34,["H8628"]],[34,36,["H2689"]],[36,38,["H6271"]],[38,39,["H7167","(H853)"]],[39,41,["H899"]],[41,43,["H7121"]],[43,44,["H7195"]],[44,45,["H7195"]]]},{"k":9844,"v":[[0,2,["H3077"]],[2,4,["H3548"]],[4,5,["H6680","(H853)"]],[5,7,["H8269"]],[7,10,["H3967"]],[10,12,["H6485"]],[12,15,["H2428"]],[15,17,["H559"]],[17,18,["H413"]],[18,22,["H3318","(H853)"]],[22,23,["H413","H4480","H1004"]],[23,25,["H7713"]],[25,29,["H935","H310"]],[29,31,["H4191"]],[31,34,["H2719"]],[34,35,["H3588"]],[35,37,["H3548"]],[37,39,["H559"]],[39,42,["H408"]],[42,44,["H4191"]],[44,47,["H1004"]],[47,50,["H3068"]]]},{"k":9845,"v":[[0,3,["H7760"]],[3,4,["H3027"]],[4,9,["H935"]],[9,12,["H1870"]],[12,17,["H5483"]],[17,18,["H3996"]],[18,21,["H4428"]],[21,22,["H1004"]],[22,24,["H8033"]],[24,27,["H4191"]]]},{"k":9846,"v":[[0,2,["H3077"]],[2,3,["H3772","(H853)"]],[3,5,["H1285"]],[5,6,["H996"]],[6,8,["H3068"]],[8,11,["H4428"]],[11,14,["H5971"]],[14,18,["H1961"]],[18,20,["H3068"]],[20,21,["H5971"]],[21,22,["H996"]],[22,24,["H4428"]],[24,28,["H5971"]]]},{"k":9847,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,7,["H776"]],[7,8,["H935"]],[8,11,["H1004"]],[11,13,["H1168"]],[13,17,["H5422"]],[17,19,["H4196"]],[19,22,["H6754"]],[22,26,["H7665"]],[26,27,["H3190"]],[27,29,["H2026","(H853)"]],[29,30,["H4977"]],[30,32,["H3548"]],[32,34,["H1168"]],[34,35,["H6440"]],[35,37,["H4196"]],[37,40,["H3548"]],[40,41,["H7760"]],[41,42,["H6486"]],[42,43,["H5921"]],[43,45,["H1004"]],[45,48,["H3068"]]]},{"k":9848,"v":[[0,3,["H3947","(H853)"]],[3,5,["H8269"]],[5,7,["H3967"]],[7,10,["H3746"]],[10,13,["H7323"]],[13,15,["H3605"]],[15,17,["H5971"]],[17,20,["H776"]],[20,24,["H3381","(H853)"]],[24,26,["H4428"]],[26,29,["H4480","H1004"]],[29,32,["H3068"]],[32,34,["H935"]],[34,37,["H1870"]],[37,40,["H8179"]],[40,43,["H7323"]],[43,46,["H4428"]],[46,47,["H1004"]],[47,50,["H3427"]],[50,51,["H5921"]],[51,53,["H3678"]],[53,56,["H4428"]]]},{"k":9849,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,7,["H776"]],[7,8,["H8055"]],[8,11,["H5892"]],[11,14,["H8252"]],[14,17,["H4191"]],[17,18,["H6271"]],[18,21,["H2719"]],[21,24,["H4428"]],[24,25,["H1004"]]]},{"k":9850,"v":[[0,1,["H7651"]],[1,2,["H8141"]],[2,3,["H1121"]],[3,5,["H3060"]],[5,10,["H4427"]]]},{"k":9851,"v":[[0,3,["H7651"]],[3,4,["H8141"]],[4,6,["H3058"]],[6,7,["H3060"]],[7,10,["H4427"]],[10,12,["H705"]],[12,13,["H8141"]],[13,14,["H4427"]],[14,17,["H3389"]],[17,20,["H517"]],[20,21,["H8034"]],[21,23,["H6645"]],[23,25,["H4480","H884"]]]},{"k":9852,"v":[[0,2,["H3060"]],[2,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,14,["H3605"]],[14,16,["H3117"]],[16,17,["H834"]],[17,18,["H3077"]],[18,20,["H3548"]],[20,21,["H3384"]],[21,22,[]]]},{"k":9853,"v":[[0,1,["H7535"]],[1,4,["H1116"]],[4,6,["H3808"]],[6,8,["H5493"]],[8,10,["H5971"]],[10,11,["H5750"]],[11,12,["H2076"]],[12,15,["H6999"]],[15,19,["H1116"]]]},{"k":9854,"v":[[0,2,["H3060"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3548"]],[6,7,["H3605"]],[7,9,["H3701"]],[9,13,["H6944"]],[13,14,["H834"]],[14,16,["H935"]],[16,19,["H1004"]],[19,22,["H3068"]],[22,25,["H3701"]],[25,30,["H5674"]],[30,34,["H3701"]],[34,37,["H5315"]],[37,40,["H6187"]],[40,42,["H3605"]],[42,44,["H3701"]],[44,45,["H834"]],[45,46,["H5927"]],[46,47,["H5921"]],[47,49,["H376"]],[49,50,["H3820"]],[50,52,["H935"]],[52,55,["H1004"]],[55,58,["H3068"]]]},{"k":9855,"v":[[0,3,["H3548"]],[3,4,["H3947"]],[4,9,["H376"]],[9,10,["H4480","H854"]],[10,12,["H4378"]],[12,15,["H1992"]],[15,16,["H2388","(H853)"]],[16,18,["H919"]],[18,21,["H1004"]],[21,22,["H3605","H834","H8033"]],[22,24,["H919"]],[24,27,["H4672"]]]},{"k":9856,"v":[[0,3,["H1961"]],[3,8,["H7969"]],[8,10,["H6242"]],[10,11,["H8141"]],[11,13,["H4428"]],[13,14,["H3060"]],[14,16,["H3548"]],[16,18,["H3808"]],[18,19,["H2388","(H853)"]],[19,21,["H919"]],[21,24,["H1004"]]]},{"k":9857,"v":[[0,2,["H4428"]],[2,3,["H3060"]],[3,4,["H7121"]],[4,6,["H3077"]],[6,8,["H3548"]],[8,12,["H3548"]],[12,14,["H559"]],[14,15,["H413"]],[15,17,["H4069"]],[17,18,["H2388"]],[18,20,["H369","(H853)"]],[20,22,["H919"]],[22,25,["H1004"]],[25,26,["H6258"]],[26,28,["H3947"]],[28,29,["H408"]],[29,31,["H3701"]],[31,32,["H4480","H854"]],[32,34,["H4378"]],[34,35,["H3588"]],[35,36,["H5414"]],[36,40,["H919"]],[40,43,["H1004"]]]},{"k":9858,"v":[[0,3,["H3548"]],[3,4,["H225"]],[4,6,["H3947"]],[6,7,["H1115"]],[7,9,["H3701"]],[9,10,["H4480","H854"]],[10,12,["H5971"]],[12,13,["H1115"]],[13,15,["H2388","(H853)"]],[15,17,["H919"]],[17,20,["H1004"]]]},{"k":9859,"v":[[0,2,["H3077"]],[2,4,["H3548"]],[4,5,["H3947"]],[5,6,["H259"]],[6,7,["H727"]],[7,9,["H5344"]],[9,11,["H2356"]],[11,14,["H1817"]],[14,18,["H5414"]],[18,20,["H681"]],[20,22,["H4196"]],[22,26,["H3225"]],[26,28,["H376"]],[28,29,["H935"]],[29,32,["H1004"]],[32,35,["H3068"]],[35,38,["H3548"]],[38,40,["H8104"]],[40,42,["H5592"]],[42,43,["H5414"]],[43,44,["H8033","(H853)"]],[44,45,["H3605"]],[45,47,["H3701"]],[47,50,["H935"]],[50,53,["H1004"]],[53,56,["H3068"]]]},{"k":9860,"v":[[0,3,["H1961"]],[3,7,["H7200"]],[7,8,["H3588"]],[8,11,["H7227"]],[11,12,["H3701"]],[12,15,["H727"]],[15,18,["H4428"]],[18,19,["H5608"]],[19,22,["H1419"]],[22,23,["H3548"]],[23,25,["H5927"]],[25,31,["H6696"]],[31,33,["H4487","(H853)"]],[33,35,["H3701"]],[35,38,["H4672"]],[38,41,["H1004"]],[41,44,["H3068"]]]},{"k":9861,"v":[[0,3,["H5414","(H853)"]],[3,5,["H3701"]],[5,7,["H8505"]],[7,8,["H5921"]],[8,10,["H3027"]],[10,14,["H6213"]],[14,16,["H4399"]],[16,20,["H6485"]],[20,23,["H1004"]],[23,26,["H3068"]],[26,31,["H3318"]],[31,34,["H2796","H6086"]],[34,36,["H1129"]],[36,38,["H6213"]],[38,41,["H1004"]],[41,44,["H3068"]]]},{"k":9862,"v":[[0,3,["H1443"]],[3,5,["H2672"]],[5,7,["H68"]],[7,10,["H7069"]],[10,11,["H6086"]],[11,13,["H4274"]],[13,14,["H68"]],[14,16,["H2388","(H853)"]],[16,18,["H919"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,27,["H3605"]],[27,28,["H834"]],[28,31,["H3318"]],[31,32,["H5921"]],[32,34,["H1004"]],[34,36,["H2394"]],[36,37,[]]]},{"k":9863,"v":[[0,1,["H389"]],[1,4,["H3808"]],[4,5,["H6213"]],[5,8,["H1004"]],[8,11,["H3068"]],[11,12,["H5592"]],[12,14,["H3701"]],[14,15,["H4212"]],[15,16,["H4219"]],[16,17,["H2689"]],[17,18,["H3605"]],[18,19,["H3627"]],[19,21,["H2091"]],[21,23,["H3627"]],[23,25,["H3701"]],[25,26,["H4480"]],[26,28,["H3701"]],[28,31,["H935"]],[31,34,["H1004"]],[34,37,["H3068"]]]},{"k":9864,"v":[[0,1,["H3588"]],[1,3,["H5414"]],[3,7,["H6213","H4399"]],[7,9,["H2388"]],[9,10,["(H853)"]],[10,12,["H1004"]],[12,15,["H3068"]]]},{"k":9865,"v":[[0,3,["H2803"]],[3,4,["H3808"]],[4,5,["H854"]],[5,7,["H376"]],[7,8,["H5921"]],[8,9,["H834"]],[9,10,["H3027"]],[10,12,["H5414","(H853)"]],[12,14,["H3701"]],[14,17,["H5414"]],[17,19,["H6213","H4399"]],[19,20,["H3588"]],[20,21,["H1992"]],[21,22,["H6213"]],[22,23,["H530"]]]},{"k":9866,"v":[[0,2,["H817"]],[2,3,["H3701"]],[3,5,["H2403"]],[5,6,["H3701"]],[6,8,["H3808"]],[8,9,["H935"]],[9,12,["H1004"]],[12,15,["H3068"]],[15,17,["H1961"]],[17,19,["H3548"]]]},{"k":9867,"v":[[0,1,["H227"]],[1,2,["H2371"]],[2,3,["H4428"]],[3,5,["H758"]],[5,7,["H5927"]],[7,9,["H3898"]],[9,10,["H5921"]],[10,11,["H1661"]],[11,13,["H3920"]],[13,16,["H2371"]],[16,17,["H7760"]],[17,19,["H6440"]],[19,22,["H5927"]],[22,23,["H5921"]],[23,24,["H3389"]]]},{"k":9868,"v":[[0,2,["H3060"]],[2,3,["H4428"]],[3,5,["H3063"]],[5,6,["H3947","(H853)"]],[6,7,["H3605"]],[7,10,["H6944"]],[10,11,["H834"]],[11,12,["H3092"]],[12,14,["H3088"]],[14,16,["H274"]],[16,18,["H1"]],[18,19,["H4428"]],[19,21,["H3063"]],[21,23,["H6942"]],[23,28,["H6944"]],[28,30,["H3605"]],[30,32,["H2091"]],[32,35,["H4672"]],[35,38,["H214"]],[38,41,["H1004"]],[41,44,["H3068"]],[44,48,["H4428"]],[48,49,["H1004"]],[49,51,["H7971"]],[51,54,["H2371"]],[54,55,["H4428"]],[55,57,["H758"]],[57,61,["H5927"]],[61,62,["H4480","H5921"]],[62,63,["H3389"]]]},{"k":9869,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3101"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3063"]]]},{"k":9870,"v":[[0,3,["H5650"]],[3,4,["H6965"]],[4,6,["H7194"]],[6,8,["H7195"]],[8,10,["H5221","(H853)"]],[10,11,["H3101"]],[11,14,["H1004"]],[14,16,["H4407"]],[16,19,["H3381"]],[19,21,["H5538"]]]},{"k":9871,"v":[[0,2,["H3108"]],[2,4,["H1121"]],[4,6,["H8100"]],[6,8,["H3075"]],[8,10,["H1121"]],[10,12,["H7763"]],[12,14,["H5650"]],[14,15,["H5221"]],[15,19,["H4191"]],[19,22,["H6912"]],[22,24,["H5973"]],[24,26,["H1"]],[26,29,["H5892"]],[29,31,["H1732"]],[31,33,["H558"]],[33,35,["H1121"]],[35,36,["H4427"]],[36,39,["H8478"]]]},{"k":9872,"v":[[0,3,["H7969"]],[3,5,["H6242"]],[5,6,["H8141"]],[6,8,["H3101"]],[8,10,["H1121"]],[10,12,["H274"]],[12,13,["H4428"]],[13,15,["H3063"]],[15,16,["H3059"]],[16,18,["H1121"]],[18,20,["H3058"]],[20,23,["H4427"]],[23,24,["H5921"]],[24,25,["H3478"]],[25,27,["H8111"]],[27,30,["H7651","H6240"]],[30,31,["H8141"]]]},{"k":9873,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H1980","H310"]],[15,17,["H2403"]],[17,19,["H3379"]],[19,21,["H1121"]],[21,23,["H5028"]],[23,24,["H834"]],[24,25,["(H853)"]],[25,26,["H3478"]],[26,28,["H2398"]],[28,30,["H5493"]],[30,31,["H3808"]],[31,32,["H4480"]]]},{"k":9874,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,10,["H3478"]],[10,13,["H5414"]],[13,17,["H3027"]],[17,19,["H2371"]],[19,20,["H4428"]],[20,22,["H758"]],[22,26,["H3027"]],[26,28,["H1130"]],[28,30,["H1121"]],[30,32,["H2371"]],[32,33,["H3605"]],[33,35,["H3117"]]]},{"k":9875,"v":[[0,2,["H3059"]],[2,3,["H2470","(H853)"]],[3,5,["H6440","H3068"]],[5,8,["H3068"]],[8,9,["H8085"]],[9,10,["H413"]],[10,12,["H3588"]],[12,14,["H7200","(H853)"]],[14,16,["H3906"]],[16,18,["H3478"]],[18,19,["H3588"]],[19,21,["H4428"]],[21,23,["H758"]],[23,24,["H3905"]],[24,25,[]]]},{"k":9876,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,5,["H3478"]],[5,7,["H3467"]],[7,12,["H3318"]],[12,14,["H4480","H8478"]],[14,16,["H3027"]],[16,19,["H758"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,25,["H3427"]],[25,28,["H168"]],[28,30,["H8543","H8032"]]]},{"k":9877,"v":[[0,1,["H389"]],[1,3,["H5493"]],[3,4,["H3808"]],[4,7,["H4480","H2403"]],[7,10,["H1004"]],[10,12,["H3379"]],[12,13,["H834"]],[13,14,["(H853)"]],[14,15,["H3478"]],[15,16,["H2398"]],[16,18,["H1980"]],[18,22,["H5975"]],[22,24,["H842"]],[24,25,["H1571"]],[25,27,["H8111"]]]},{"k":9878,"v":[[0,1,["H3588","H3808"]],[1,4,["H7604"]],[4,7,["H5971"]],[7,9,["H3059"]],[9,10,["H3588","H518"]],[10,11,["H2572"]],[11,12,["H6571"]],[12,14,["H6235"]],[14,15,["H7393"]],[15,17,["H6235"]],[17,18,["H505"]],[18,19,["H7273"]],[19,20,["H3588"]],[20,22,["H4428"]],[22,24,["H758"]],[24,26,["H6"]],[26,30,["H7760"]],[30,34,["H6083"]],[34,36,["H1758"]]]},{"k":9879,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3059"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,16,["H1369"]],[16,18,["H1992"]],[18,19,["H3808"]],[19,20,["H3789"]],[20,21,["H5921"]],[21,23,["H5612"]],[23,26,["H1697","H3117"]],[26,29,["H4428"]],[29,31,["H3478"]]]},{"k":9880,"v":[[0,2,["H3059"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,12,["H8111"]],[12,14,["H3101"]],[14,16,["H1121"]],[16,17,["H4427"]],[17,20,["H8478"]]]},{"k":9881,"v":[[0,3,["H7970"]],[3,5,["H7651"]],[5,6,["H8141"]],[6,8,["H3101"]],[8,9,["H4428"]],[9,11,["H3063"]],[11,13,["H3060"]],[13,15,["H1121"]],[15,17,["H3059"]],[17,19,["H4427"]],[19,20,["H5921"]],[20,21,["H3478"]],[21,23,["H8111"]],[23,26,["H8337","H6240"]],[26,27,["H8141"]]]},{"k":9882,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H5493"]],[15,16,["H3808"]],[16,18,["H4480","H3605"]],[18,20,["H2403"]],[20,22,["H3379"]],[22,24,["H1121"]],[24,26,["H5028"]],[26,27,["H834"]],[27,28,["(H853)"]],[28,29,["H3478"]],[29,30,["H2398"]],[30,33,["H1980"]],[33,34,[]]]},{"k":9883,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3101"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,16,["H1369"]],[16,17,["H834"]],[17,19,["H3898"]],[19,20,["H5973"]],[20,21,["H558"]],[21,22,["H4428"]],[22,24,["H3063"]],[24,26,["H1992"]],[26,27,["H3808"]],[27,28,["H3789"]],[28,29,["H5921"]],[29,31,["H5612"]],[31,34,["H1697","H3117"]],[34,37,["H4428"]],[37,39,["H3478"]]]},{"k":9884,"v":[[0,2,["H3101"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,8,["H3379"]],[8,9,["H3427"]],[9,10,["H5921"]],[10,12,["H3678"]],[12,14,["H3101"]],[14,16,["H6912"]],[16,18,["H8111"]],[18,19,["H5973"]],[19,21,["H4428"]],[21,23,["H3478"]]]},{"k":9885,"v":[[0,2,["H477"]],[2,5,["H2470"]],[5,6,["H854"]],[6,8,["H2483"]],[8,9,["H834"]],[9,11,["H4191"]],[11,13,["H3101"]],[13,15,["H4428"]],[15,17,["H3478"]],[17,19,["H3381"]],[19,20,["H413"]],[20,23,["H1058"]],[23,24,["H5921"]],[24,26,["H6440"]],[26,28,["H559"]],[28,31,["H1"]],[31,33,["H1"]],[33,35,["H7393"]],[35,37,["H3478"]],[37,40,["H6571"]],[40,41,[]]]},{"k":9886,"v":[[0,2,["H477"]],[2,3,["H559"]],[3,6,["H3947"]],[6,7,["H7198"]],[7,9,["H2671"]],[9,12,["H3947"]],[12,13,["H413"]],[13,15,["H7198"]],[15,17,["H2671"]]]},{"k":9887,"v":[[0,3,["H559"]],[3,6,["H4428"]],[6,8,["H3478"]],[8,9,["H7392"]],[9,11,["H3027"]],[11,12,["H5921"]],[12,14,["H7198"]],[14,17,["H7392"]],[17,19,["H3027"]],[19,23,["H477"]],[23,24,["H7760"]],[24,26,["H3027"]],[26,27,["H5921"]],[27,29,["H4428"]],[29,30,["H3027"]]]},{"k":9888,"v":[[0,3,["H559"]],[3,4,["H6605"]],[4,6,["H2474"]],[6,7,["H6924"]],[7,10,["H6605"]],[10,13,["H477"]],[13,14,["H559"]],[14,15,["H3384"]],[15,18,["H3384"]],[18,21,["H559"]],[21,23,["H2671"]],[23,26,["H3068"]],[26,27,["H8668"]],[27,30,["H2671"]],[30,32,["H8668"]],[32,34,["H758"]],[34,38,["H5221","(H853)"]],[38,40,["H758"]],[40,42,["H663"]],[42,43,["H5704"]],[43,46,["H3615"]],[46,47,[]]]},{"k":9889,"v":[[0,3,["H559"]],[3,4,["H3947"]],[4,6,["H2671"]],[6,9,["H3947"]],[9,13,["H559"]],[13,16,["H4428"]],[16,18,["H3478"]],[18,19,["H5221"]],[19,22,["H776"]],[22,25,["H5221"]],[25,26,["H7969","H6471"]],[26,28,["H5975"]]]},{"k":9890,"v":[[0,3,["H376"]],[3,5,["H430"]],[5,7,["H7107"]],[7,8,["H5921"]],[8,11,["H559"]],[11,15,["H5221"]],[15,16,["H2568"]],[16,17,["H176"]],[17,18,["H8337"]],[18,19,["H6471"]],[19,20,["H227"]],[20,23,["H5221","(H853)"]],[23,24,["H758"]],[24,25,["H5704"]],[25,28,["H3615"]],[28,31,["H6258"]],[31,34,["H5221","(H853)"]],[34,35,["H758"]],[35,37,["H7969","H6471"]]]},{"k":9891,"v":[[0,2,["H477"]],[2,3,["H4191"]],[3,6,["H6912"]],[6,10,["H1416"]],[10,13,["H4124"]],[13,14,["H935"]],[14,16,["H776"]],[16,20,["H935"]],[20,23,["H8141"]]]},{"k":9892,"v":[[0,5,["H1961"]],[5,7,["H1992"]],[7,9,["H6912"]],[9,11,["H376"]],[11,13,["H2009"]],[13,15,["H7200","(H853)"]],[15,17,["H1416"]],[17,22,["H7993","(H853)"]],[22,24,["H376"]],[24,27,["H6913"]],[27,29,["H477"]],[29,33,["H376"]],[33,36,["H1980"]],[36,38,["H5060"]],[38,40,["H6106"]],[40,42,["H477"]],[42,44,["H2421"]],[44,47,["H6965"]],[47,48,["H5921"]],[48,50,["H7272"]]]},{"k":9893,"v":[[0,2,["H2371"]],[2,3,["H4428"]],[3,5,["H758"]],[5,6,["H3905","(H853)"]],[6,7,["H3478"]],[7,8,["H3605"]],[8,10,["H3117"]],[10,12,["H3059"]]]},{"k":9894,"v":[[0,3,["H3068"]],[3,5,["H2603"]],[5,11,["H7355"]],[11,15,["H6437"]],[15,16,["H413"]],[16,18,["H4616"]],[18,21,["H1285"]],[21,22,["H854"]],[22,23,["H85"]],[23,24,["H3327"]],[24,26,["H3290"]],[26,28,["H14"]],[28,29,["H3808"]],[29,30,["H7843"]],[30,32,["H3808"]],[32,33,["H7993"]],[33,36,["H4480","H5921"]],[36,38,["H6440"]],[38,39,["H5704"]],[39,40,["H6258"]]]},{"k":9895,"v":[[0,2,["H2371"]],[2,3,["H4428"]],[3,5,["H758"]],[5,6,["H4191"]],[6,8,["H1130"]],[8,10,["H1121"]],[10,11,["H4427"]],[11,14,["H8478"]]]},{"k":9896,"v":[[0,2,["H3060"]],[2,4,["H1121"]],[4,6,["H3059"]],[6,7,["H3947"]],[7,8,["H7725"]],[8,12,["H4480","H3027"]],[12,14,["H1130"]],[14,16,["H1121"]],[16,18,["H2371","(H853)"]],[18,20,["H5892"]],[20,21,["H834"]],[21,24,["H3947"]],[24,28,["H4480","H3027"]],[28,30,["H3059"]],[30,32,["H1"]],[32,34,["H4421"]],[34,35,["H7969"]],[35,36,["H6471"]],[36,38,["H3101"]],[38,39,["H5221"]],[39,42,["H7725","(H853)"]],[42,44,["H5892"]],[44,46,["H3478"]]]},{"k":9897,"v":[[0,3,["H8147"]],[3,4,["H8141"]],[4,6,["H3101"]],[6,7,["H1121"]],[7,9,["H3059"]],[9,10,["H4428"]],[10,12,["H3478"]],[12,13,["H4427"]],[13,14,["H558"]],[14,16,["H1121"]],[16,18,["H3101"]],[18,19,["H4428"]],[19,21,["H3063"]]]},{"k":9898,"v":[[0,2,["H1961"]],[2,3,["H6242"]],[3,5,["H2568"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,14,["H4427"]],[14,15,["H6242"]],[15,17,["H8672"]],[17,18,["H8141"]],[18,20,["H3389"]],[20,23,["H517"]],[23,24,["H8034"]],[24,26,["H3086"]],[26,27,["H4480"]],[27,28,["H3389"]]]},{"k":9899,"v":[[0,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,14,["H7535"]],[14,15,["H3808"]],[15,17,["H1732"]],[17,19,["H1"]],[19,21,["H6213"]],[21,25,["H3605"]],[25,26,["H834"]],[26,27,["H3101"]],[27,29,["H1"]],[29,30,["H6213"]]]},{"k":9900,"v":[[0,1,["H7535"]],[1,4,["H1116"]],[4,6,["H3808"]],[6,8,["H5493"]],[8,10,["H5750"]],[10,12,["H5971"]],[12,14,["H2076"]],[14,17,["H6999"]],[17,21,["H1116"]]]},{"k":9901,"v":[[0,5,["H1961"]],[5,8,["H834"]],[8,10,["H4467"]],[10,12,["H2388"]],[12,15,["H3027"]],[15,18,["H5221","(H853)"]],[18,20,["H5650"]],[20,23,["H5221","(H853)"]],[23,25,["H4428"]],[25,27,["H1"]]]},{"k":9902,"v":[[0,3,["H1121"]],[3,6,["H5221"]],[6,8,["H4191"]],[8,9,["H3808"]],[9,15,["H3789"]],[15,18,["H5612"]],[18,21,["H8451"]],[21,23,["H4872"]],[23,24,["H834"]],[24,26,["H3068"]],[26,27,["H6680"]],[27,28,["H559"]],[28,30,["H1"]],[30,32,["H3808"]],[32,36,["H4191"]],[36,37,["H5921"]],[37,39,["H1121"]],[39,40,["H3808"]],[40,42,["H1121"]],[42,46,["H4191"]],[46,47,["H5921"]],[47,49,["H1"]],[49,50,["H3588","H518"]],[50,52,["H376"]],[52,57,["H4191"]],[57,61,["H2399"]]]},{"k":9903,"v":[[0,1,["H1931"]],[1,2,["H5221","(H853)"]],[2,3,["(H853)"]],[3,4,["H123"]],[4,7,["H1516"]],[7,9,["H4417"]],[9,10,["H6235"]],[10,11,["H505"]],[11,13,["H8610","(H853)"]],[13,14,["H5554"]],[14,16,["H4421"]],[16,18,["H7121","(H853)"]],[18,20,["H8034"]],[20,23,["H3371"]],[23,24,["H5704"]],[24,25,["H2088"]],[25,26,["H3117"]]]},{"k":9904,"v":[[0,1,["H227"]],[1,2,["H558"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H3060"]],[6,8,["H1121"]],[8,10,["H3059"]],[10,11,["H1121"]],[11,13,["H3058"]],[13,14,["H4428"]],[14,16,["H3478"]],[16,17,["H559"]],[17,18,["H1980"]],[18,23,["H7200"]],[23,26,["H6440"]]]},{"k":9905,"v":[[0,2,["H3060"]],[2,4,["H4428"]],[4,6,["H3478"]],[6,7,["H7971"]],[7,8,["H413"]],[8,9,["H558"]],[9,10,["H4428"]],[10,12,["H3063"]],[12,13,["H559"]],[13,15,["H2336"]],[15,16,["H834"]],[16,19,["H3844"]],[19,20,["H7971"]],[20,21,["H413"]],[21,23,["H730"]],[23,24,["H834"]],[24,27,["H3844"]],[27,28,["H559"]],[28,29,["H5414","(H853)"]],[29,31,["H1323"]],[31,34,["H1121"]],[34,36,["H802"]],[36,40,["H5674"]],[40,42,["H7704"]],[42,43,["H2416"]],[43,44,["H834"]],[44,47,["H3844"]],[47,50,["H7429","(H853)"]],[50,52,["H2336"]]]},{"k":9906,"v":[[0,4,["H5221","H5221","(H853)"]],[4,5,["H123"]],[5,8,["H3820"]],[8,12,["H5375"]],[12,13,["H3513"]],[13,17,["H3427"]],[17,19,["H1004"]],[19,21,["H4100"]],[21,24,["H1624"]],[24,27,["H7451"]],[27,31,["H5307"]],[31,33,["H859"]],[33,35,["H3063"]],[35,36,["H5973"]],[36,37,[]]]},{"k":9907,"v":[[0,2,["H558"]],[2,4,["H3808"]],[4,5,["H8085"]],[5,7,["H3060"]],[7,8,["H4428"]],[8,10,["H3478"]],[10,12,["H5927"]],[12,14,["H1931"]],[14,16,["H558"]],[16,17,["H4428"]],[17,19,["H3063"]],[19,22,["H7200"]],[22,25,["H6440"]],[25,27,["H1053"]],[27,28,["H834"]],[28,31,["H3063"]]]},{"k":9908,"v":[[0,2,["H3063"]],[2,7,["H5062"]],[7,8,["H6440"]],[8,9,["H3478"]],[9,12,["H5127"]],[12,14,["H376"]],[14,17,["H168"]]]},{"k":9909,"v":[[0,2,["H3060"]],[2,3,["H4428"]],[3,5,["H3478"]],[5,6,["H8610"]],[6,7,["H558"]],[7,8,["H4428"]],[8,10,["H3063"]],[10,12,["H1121"]],[12,14,["H3060"]],[14,16,["H1121"]],[16,18,["H274"]],[18,20,["H1053"]],[20,22,["H935"]],[22,24,["H3389"]],[24,27,["H6555"]],[27,29,["H2346"]],[29,31,["H3389"]],[31,34,["H8179"]],[34,36,["H669"]],[36,37,["H5704"]],[37,39,["H6438"]],[39,40,["H8179"]],[40,41,["H702"]],[41,42,["H3967"]],[42,43,["H520"]]]},{"k":9910,"v":[[0,3,["H3947","(H853)"]],[3,4,["H3605"]],[4,6,["H2091"]],[6,8,["H3701"]],[8,10,["H3605"]],[10,12,["H3627"]],[12,15,["H4672"]],[15,18,["H1004"]],[18,21,["H3068"]],[21,25,["H214"]],[25,28,["H4428"]],[28,29,["H1004"]],[29,31,["H1121","H8594"]],[31,33,["H7725"]],[33,35,["H8111"]]]},{"k":9911,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3060"]],[8,9,["H834"]],[9,11,["H6213"]],[11,14,["H1369"]],[14,16,["H834"]],[16,18,["H3898"]],[18,19,["H5973"]],[19,20,["H558"]],[20,21,["H4428"]],[21,23,["H3063"]],[23,25,["H1992"]],[25,26,["H3808"]],[26,27,["H3789"]],[27,28,["H5921"]],[28,30,["H5612"]],[30,33,["H1697","H3117"]],[33,36,["H4428"]],[36,38,["H3478"]]]},{"k":9912,"v":[[0,2,["H3060"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,11,["H8111"]],[11,12,["H5973"]],[12,14,["H4428"]],[14,16,["H3478"]],[16,18,["H3379"]],[18,20,["H1121"]],[20,21,["H4427"]],[21,24,["H8478"]]]},{"k":9913,"v":[[0,2,["H558"]],[2,4,["H1121"]],[4,6,["H3101"]],[6,7,["H4428"]],[7,9,["H3063"]],[9,10,["H2421"]],[10,11,["H310"]],[11,13,["H4194"]],[13,15,["H3060"]],[15,16,["H1121"]],[16,18,["H3059"]],[18,19,["H4428"]],[19,21,["H3478"]],[21,22,["H2568","H6240"]],[22,23,["H8141"]]]},{"k":9914,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H558"]],[8,10,["H1992"]],[10,11,["H3808"]],[11,12,["H3789"]],[12,13,["H5921"]],[13,15,["H5612"]],[15,18,["H1697","H3117"]],[18,21,["H4428"]],[21,23,["H3063"]]]},{"k":9915,"v":[[0,3,["H7194"]],[3,5,["H7195"]],[5,6,["H5921"]],[6,9,["H3389"]],[9,12,["H5127"]],[12,14,["H3923"]],[14,17,["H7971"]],[17,18,["H310"]],[18,21,["H3923"]],[21,23,["H4191"]],[23,25,["H8033"]]]},{"k":9916,"v":[[0,3,["H5375"]],[3,5,["H5921"]],[5,6,["H5483"]],[6,10,["H6912"]],[10,12,["H3389"]],[12,13,["H5973"]],[13,15,["H1"]],[15,18,["H5892"]],[18,20,["H1732"]]]},{"k":9917,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H3063"]],[6,7,["H3947","(H853)"]],[7,8,["H5838"]],[8,9,["H1931"]],[9,11,["H8337","H6240"]],[11,12,["H8141"]],[12,13,["H1121"]],[13,17,["H4427","(H853)"]],[17,19,["H8478"]],[19,21,["H1"]],[21,22,["H558"]]]},{"k":9918,"v":[[0,1,["H1931"]],[1,2,["H1129","(H853)"]],[2,3,["H359"]],[3,5,["H7725"]],[5,8,["H3063"]],[8,10,["H310"]],[10,12,["H4428"]],[12,13,["H7901"]],[13,14,["H5973"]],[14,16,["H1"]]]},{"k":9919,"v":[[0,3,["H2568","H6240"]],[3,4,["H8141"]],[4,6,["H558"]],[6,8,["H1121"]],[8,10,["H3101"]],[10,11,["H4428"]],[11,13,["H3063"]],[13,14,["H3379"]],[14,16,["H1121"]],[16,18,["H3101"]],[18,19,["H4428"]],[19,21,["H3478"]],[21,24,["H4427"]],[24,26,["H8111"]],[26,29,["H705"]],[29,31,["H259"]],[31,32,["H8141"]]]},{"k":9920,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H5493"]],[15,16,["H3808"]],[16,18,["H4480","H3605"]],[18,20,["H2403"]],[20,22,["H3379"]],[22,24,["H1121"]],[24,26,["H5028"]],[26,27,["H834"]],[27,28,["(H853)"]],[28,29,["H3478"]],[29,31,["H2398"]]]},{"k":9921,"v":[[0,1,["H1931"]],[1,2,["H7725","(H853)"]],[2,4,["H1366"]],[4,6,["H3478"]],[6,9,["H4480","H935"]],[9,11,["H2574"]],[11,12,["H5704"]],[12,14,["H3220"]],[14,17,["H6160"]],[17,21,["H1697"]],[21,24,["H3068"]],[24,25,["H430"]],[25,27,["H3478"]],[27,28,["H834"]],[28,30,["H1696"]],[30,33,["H3027"]],[33,36,["H5650"]],[36,37,["H3124"]],[37,39,["H1121"]],[39,41,["H573"]],[41,43,["H5030"]],[43,44,["H834"]],[44,47,["H4480","H1662"]]]},{"k":9922,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,4,["H7200","(H853)"]],[4,6,["H6040"]],[6,8,["H3478"]],[8,12,["H3966"]],[12,13,["H4784"]],[13,18,["H657"]],[18,20,["H6113"]],[20,22,["H657"]],[22,23,["H5800"]],[23,24,["H369"]],[24,26,["H5826"]],[26,28,["H3478"]]]},{"k":9923,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H3808"]],[5,10,["H4229","(H853)"]],[10,12,["H8034"]],[12,14,["H3478"]],[14,16,["H4480","H8478"]],[16,17,["H8064"]],[17,20,["H3467"]],[20,24,["H3027"]],[24,26,["H3379"]],[26,28,["H1121"]],[28,30,["H3101"]]]},{"k":9924,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3379"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,16,["H1369"]],[16,17,["H834"]],[17,19,["H3898"]],[19,21,["H834"]],[21,23,["H7725","(H853)"]],[23,24,["H1834"]],[24,26,["H2574"]],[26,30,["H3063"]],[30,32,["H3478"]],[32,34,["H1992"]],[34,35,["H3808"]],[35,36,["H3789"]],[36,37,["H5921"]],[37,39,["H5612"]],[39,42,["H1697","H3117"]],[42,45,["H4428"]],[45,47,["H3478"]]]},{"k":9925,"v":[[0,2,["H3379"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,8,["H5973"]],[8,10,["H4428"]],[10,12,["H3478"]],[12,14,["H2148"]],[14,16,["H1121"]],[16,17,["H4427"]],[17,20,["H8478"]]]},{"k":9926,"v":[[0,3,["H6242"]],[3,5,["H7651"]],[5,6,["H8141"]],[6,8,["H3379"]],[8,9,["H4428"]],[9,11,["H3478"]],[11,13,["H5838"]],[13,14,["H1121"]],[14,16,["H558"]],[16,17,["H4428"]],[17,19,["H3063"]],[19,21,["H4427"]]]},{"k":9927,"v":[[0,1,["H8334","H6240"]],[1,2,["H8141"]],[2,3,["H1121"]],[3,4,["H1961"]],[4,10,["H4427"]],[10,13,["H4427"]],[13,14,["H8147"]],[14,16,["H2572"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,22,["H517"]],[22,23,["H8034"]],[23,25,["H3203"]],[25,27,["H4480","H3389"]]]},{"k":9928,"v":[[0,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3605"]],[16,17,["H834"]],[17,19,["H1"]],[19,20,["H558"]],[20,22,["H6213"]]]},{"k":9929,"v":[[0,1,["H7535"]],[1,5,["H1116"]],[5,7,["H3808"]],[7,8,["H5493"]],[8,10,["H5971"]],[10,11,["H2076"]],[11,14,["H6999"]],[14,15,["H5750"]],[15,19,["H1116"]]]},{"k":9930,"v":[[0,3,["H3068"]],[3,4,["H5060","(H853)"]],[4,6,["H4428"]],[6,10,["H1961"]],[10,12,["H6879"]],[12,13,["H5704"]],[13,15,["H3117"]],[15,18,["H4194"]],[18,20,["H3427"]],[20,23,["H2669"]],[23,24,["H1004"]],[24,26,["H3147"]],[26,28,["H4428"]],[28,29,["H1121"]],[29,31,["H5921"]],[31,33,["H1004"]],[33,34,["H8199","(H853)"]],[34,36,["H5971"]],[36,39,["H776"]]]},{"k":9931,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H5838"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3063"]]]},{"k":9932,"v":[[0,2,["H5838"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,11,["H5973"]],[11,13,["H1"]],[13,16,["H5892"]],[16,18,["H1732"]],[18,20,["H3147"]],[20,22,["H1121"]],[22,23,["H4427"]],[23,26,["H8478"]]]},{"k":9933,"v":[[0,3,["H7970"]],[3,5,["H8083"]],[5,6,["H8141"]],[6,8,["H5838"]],[8,9,["H4428"]],[9,11,["H3063"]],[11,13,["H2148"]],[13,15,["H1121"]],[15,17,["H3379"]],[17,18,["H4427"]],[18,19,["H5921"]],[19,20,["H3478"]],[20,22,["H8111"]],[22,23,["H8337"]],[23,24,["H2320"]]]},{"k":9934,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,14,["H834"]],[14,16,["H1"]],[16,18,["H6213"]],[18,20,["H5493"]],[20,21,["H3808"]],[21,24,["H4480","H2403"]],[24,26,["H3379"]],[26,28,["H1121"]],[28,30,["H5028"]],[30,31,["H834"]],[31,32,["(H853)"]],[32,33,["H3478"]],[33,35,["H2398"]]]},{"k":9935,"v":[[0,2,["H7967"]],[2,4,["H1121"]],[4,6,["H3003"]],[6,7,["H7194"]],[7,8,["H5921"]],[8,11,["H5221"]],[11,13,["H6905"]],[13,15,["H5971"]],[15,17,["H4191"]],[17,20,["H4427"]],[20,23,["H8478"]]]},{"k":9936,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H2148"]],[8,9,["H2009"]],[9,12,["H3789"]],[12,13,["H5921"]],[13,15,["H5612"]],[15,18,["H1697","H3117"]],[18,21,["H4428"]],[21,23,["H3478"]]]},{"k":9937,"v":[[0,1,["H1931"]],[1,4,["H1697"]],[4,7,["H3068"]],[7,8,["H834"]],[8,10,["H1696"]],[10,11,["H413"]],[11,12,["H3058"]],[12,13,["H559"]],[13,15,["H1121"]],[15,17,["H3427"]],[17,18,["H5921"]],[18,20,["H3678"]],[20,22,["H3478"]],[22,25,["H7243"]],[25,28,["H3651"]],[28,32,["H1961"]]]},{"k":9938,"v":[[0,1,["H7967"]],[1,3,["H1121"]],[3,5,["H3003"]],[5,8,["H4427"]],[8,11,["H8672"]],[11,13,["H7970"]],[13,14,["H8141"]],[14,16,["H5818"]],[16,17,["H4428"]],[17,19,["H3063"]],[19,22,["H4427"]],[22,24,["H3117"]],[24,25,["H3391"]],[25,27,["H8111"]]]},{"k":9939,"v":[[0,2,["H4505"]],[2,4,["H1121"]],[4,6,["H1424"]],[6,8,["H5927"]],[8,10,["H4480","H8656"]],[10,12,["H935"]],[12,14,["H8111"]],[14,16,["H5221","(H853)"]],[16,17,["H7967"]],[17,19,["H1121"]],[19,21,["H3003"]],[21,23,["H8111"]],[23,25,["H4191"]],[25,28,["H4427"]],[28,31,["H8478"]]]},{"k":9940,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H7967"]],[8,11,["H7195"]],[11,12,["H834"]],[12,14,["H7194"]],[14,15,["H2009"]],[15,18,["H3789"]],[18,19,["H5921"]],[19,21,["H5612"]],[21,24,["H1697","H3117"]],[24,27,["H4428"]],[27,29,["H3478"]]]},{"k":9941,"v":[[0,1,["H227"]],[1,2,["H4505"]],[2,3,["H5221","(H853)"]],[3,4,["H8607"]],[4,6,["H3605"]],[6,7,["H834"]],[7,12,["H1366"]],[12,15,["H4480","H8656"]],[15,16,["H3588"]],[16,18,["H6605"]],[18,19,["H3808"]],[19,24,["H5221"]],[24,26,["(H853)"]],[26,27,["H3605"]],[27,34,["H2030"]],[34,37,["H1234"]]]},{"k":9942,"v":[[0,3,["H8672"]],[3,5,["H7970"]],[5,6,["H8141"]],[6,8,["H5838"]],[8,9,["H4428"]],[9,11,["H3063"]],[11,13,["H4505"]],[13,15,["H1121"]],[15,17,["H1424"]],[17,19,["H4427"]],[19,20,["H5921"]],[20,21,["H3478"]],[21,24,["H6235"]],[24,25,["H8141"]],[25,27,["H8111"]]]},{"k":9943,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H5493"]],[15,16,["H3808"]],[16,17,["H3605"]],[17,19,["H3117"]],[19,20,["H4480","H5921"]],[20,22,["H2403"]],[22,24,["H3379"]],[24,26,["H1121"]],[26,28,["H5028"]],[28,29,["H834"]],[29,30,["(H853)"]],[30,31,["H3478"]],[31,33,["H2398"]]]},{"k":9944,"v":[[0,2,["H6322"]],[2,4,["H4428"]],[4,6,["H804"]],[6,7,["H935"]],[7,8,["H5921"]],[8,10,["H776"]],[10,12,["H4505"]],[12,13,["H5414"]],[13,14,["H6322"]],[14,16,["H505"]],[16,17,["H3603"]],[17,19,["H3701"]],[19,22,["H3027"]],[22,24,["H1961"]],[24,25,["H854"]],[25,28,["H2388"]],[28,30,["H4467"]],[30,33,["H3027"]]]},{"k":9945,"v":[[0,2,["H4505"]],[2,3,["H3318","(H853)"]],[3,5,["H3701"]],[5,6,["H5921"]],[6,7,["H3478"]],[7,9,["H5921"]],[9,10,["H3605"]],[10,13,["H1368"]],[13,15,["H2428"]],[15,17,["H259"]],[17,18,["H376"]],[18,19,["H2572"]],[19,20,["H8255"]],[20,22,["H3701"]],[22,24,["H5414"]],[24,27,["H4428"]],[27,29,["H804"]],[29,32,["H4428"]],[32,34,["H804"]],[34,36,["H7725"]],[36,38,["H5975"]],[38,39,["H3808"]],[39,40,["H8033"]],[40,43,["H776"]]]},{"k":9946,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H4505"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3478"]]]},{"k":9947,"v":[[0,2,["H4505"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,8,["H6494"]],[8,10,["H1121"]],[10,11,["H4427"]],[11,14,["H8478"]]]},{"k":9948,"v":[[0,3,["H2572"]],[3,4,["H8141"]],[4,6,["H5838"]],[6,7,["H4428"]],[7,9,["H3063"]],[9,10,["H6494"]],[10,12,["H1121"]],[12,14,["H4505"]],[14,17,["H4427"]],[17,18,["H5921"]],[18,19,["H3478"]],[19,21,["H8111"]],[21,25,["H8141"]]]},{"k":9949,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H5493"]],[15,16,["H3808"]],[16,19,["H4480","H2403"]],[19,21,["H3379"]],[21,23,["H1121"]],[23,25,["H5028"]],[25,26,["H834"]],[26,27,["(H853)"]],[27,28,["H3478"]],[28,30,["H2398"]]]},{"k":9950,"v":[[0,2,["H6492"]],[2,4,["H1121"]],[4,6,["H7425"]],[6,8,["H7991"]],[8,11,["H7194"]],[11,12,["H5921"]],[12,15,["H5221"]],[15,18,["H8111"]],[18,21,["H759"]],[21,24,["H4428"]],[24,25,["H1004"]],[25,26,["H854"]],[26,27,["H709"]],[27,28,["H854"]],[28,29,["H745"]],[29,31,["H5973"]],[31,33,["H2572"]],[33,34,["H376"]],[34,37,["H4480","H1121","H1569"]],[37,40,["H4191"]],[40,43,["H4427"]],[43,46,["H8478"]]]},{"k":9951,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H6494"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,14,["H2009"]],[14,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3478"]]]},{"k":9952,"v":[[0,3,["H8147"]],[3,5,["H2572"]],[5,6,["H8141"]],[6,8,["H5838"]],[8,9,["H4428"]],[9,11,["H3063"]],[11,12,["H6492"]],[12,14,["H1121"]],[14,16,["H7425"]],[16,19,["H4427"]],[19,20,["H5921"]],[20,21,["H3478"]],[21,23,["H8111"]],[23,26,["H6242"]],[26,27,["H8141"]]]},{"k":9953,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H5493"]],[15,16,["H3808"]],[16,17,["H4480"]],[17,19,["H2403"]],[19,21,["H3379"]],[21,23,["H1121"]],[23,25,["H5028"]],[25,26,["H834"]],[26,27,["(H853)"]],[27,28,["H3478"]],[28,30,["H2398"]]]},{"k":9954,"v":[[0,3,["H3117"]],[3,5,["H6492"]],[5,6,["H4428"]],[6,8,["H3478"]],[8,9,["H935"]],[9,10,["H8407"]],[10,11,["H4428"]],[11,13,["H804"]],[13,15,["H3947","(H853)"]],[15,16,["H5859"]],[16,18,["H62"]],[18,20,["H3239"]],[20,22,["H6943"]],[22,24,["H2674"]],[24,26,["H1568"]],[26,28,["H1551"]],[28,29,["H3605"]],[29,31,["H776"]],[31,33,["H5321"]],[33,37,["H1540"]],[37,39,["H804"]]]},{"k":9955,"v":[[0,2,["H1954"]],[2,4,["H1121"]],[4,6,["H425"]],[6,7,["H7194"]],[7,9,["H7195"]],[9,10,["H5921"]],[10,11,["H6492"]],[11,13,["H1121"]],[13,15,["H7425"]],[15,17,["H5221"]],[17,20,["H4191"]],[20,23,["H4427"]],[23,26,["H8478"]],[26,29,["H6242"]],[29,30,["H8141"]],[30,32,["H3147"]],[32,34,["H1121"]],[34,36,["H5818"]]]},{"k":9956,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H6492"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,14,["H2009"]],[14,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3478"]]]},{"k":9957,"v":[[0,3,["H8147"]],[3,4,["H8141"]],[4,6,["H6492"]],[6,8,["H1121"]],[8,10,["H7425"]],[10,11,["H4428"]],[11,13,["H3478"]],[13,15,["H3147"]],[15,17,["H1121"]],[17,19,["H5818"]],[19,20,["H4428"]],[20,22,["H3063"]],[22,24,["H4427"]]]},{"k":9958,"v":[[0,1,["H2568"]],[1,3,["H6242"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,6,["H1961"]],[6,12,["H4427"]],[12,15,["H4427"]],[15,16,["H8337","H6240"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,22,["H517"]],[22,23,["H8034"]],[23,25,["H3388"]],[25,27,["H1323"]],[27,29,["H6659"]]]},{"k":9959,"v":[[0,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H6213"]],[15,18,["H3605"]],[18,19,["H834"]],[19,21,["H1"]],[21,22,["H5818"]],[22,24,["H6213"]]]},{"k":9960,"v":[[0,1,["H7535"]],[1,4,["H1116"]],[4,6,["H3808"]],[6,7,["H5493"]],[7,9,["H5971"]],[9,10,["H2076"]],[10,13,["H6999"]],[13,14,["H5750"]],[14,18,["H1116"]],[18,19,["H1931"]],[19,20,["H1129","(H853)"]],[20,22,["H5945"]],[22,23,["H8179"]],[23,26,["H1004"]],[26,29,["H3068"]]]},{"k":9961,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3147"]],[8,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3063"]]]},{"k":9962,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,5,["H3068"]],[5,6,["H2490"]],[6,8,["H7971"]],[8,10,["H3063"]],[10,11,["H7526"]],[11,13,["H4428"]],[13,15,["H758"]],[15,17,["H6492"]],[17,19,["H1121"]],[19,21,["H7425"]]]},{"k":9963,"v":[[0,2,["H3147"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,10,["H5973"]],[10,12,["H1"]],[12,15,["H5892"]],[15,17,["H1732"]],[17,19,["H1"]],[19,21,["H271"]],[21,23,["H1121"]],[23,24,["H4427"]],[24,27,["H8478"]]]},{"k":9964,"v":[[0,3,["H7651","H6240"]],[3,4,["H8141"]],[4,6,["H6492"]],[6,8,["H1121"]],[8,10,["H7425"]],[10,11,["H271"]],[11,13,["H1121"]],[13,15,["H3147"]],[15,16,["H4428"]],[16,18,["H3063"]],[18,21,["H4427"]]]},{"k":9965,"v":[[0,1,["H6242"]],[1,2,["H8141"]],[2,3,["H1121"]],[3,5,["H271"]],[5,10,["H4427"]],[10,12,["H4427"]],[12,13,["H8337","H6240"]],[13,14,["H8141"]],[14,16,["H3389"]],[16,18,["H6213"]],[18,19,["H3808"]],[19,23,["H3477"]],[23,26,["H5869"]],[26,29,["H3068"]],[29,31,["H430"]],[31,33,["H1732"]],[33,35,["H1"]]]},{"k":9966,"v":[[0,3,["H1980"]],[3,6,["H1870"]],[6,9,["H4428"]],[9,11,["H3478"]],[11,12,["H1571"]],[12,14,["(H853)"]],[14,16,["H1121"]],[16,19,["H5674"]],[19,21,["H784"]],[21,25,["H8441"]],[25,28,["H1471"]],[28,29,["H834","(H853)"]],[29,31,["H3068"]],[31,33,["H3423"]],[33,35,["H4480","H6440"]],[35,37,["H1121"]],[37,39,["H3478"]]]},{"k":9967,"v":[[0,3,["H2076"]],[3,6,["H6999"]],[6,10,["H1116"]],[10,12,["H5921"]],[12,14,["H1389"]],[14,16,["H8478"]],[16,17,["H3605"]],[17,18,["H7488"]],[18,19,["H6086"]]]},{"k":9968,"v":[[0,1,["H227"]],[1,2,["H7526"]],[2,3,["H4428"]],[3,5,["H758"]],[5,7,["H6492"]],[7,8,["H1121"]],[8,10,["H7425"]],[10,11,["H4428"]],[11,13,["H3478"]],[13,15,["H5927"]],[15,17,["H3389"]],[17,19,["H4421"]],[19,22,["H6696","H5921"]],[22,23,["H271"]],[23,25,["H3201"]],[25,26,["H3808"]],[26,27,["H3898"]],[27,28,[]]]},{"k":9969,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,4,["H7526"]],[4,5,["H4428"]],[5,7,["H758"]],[7,8,["H7725","(H853)"]],[8,9,["H359"]],[9,11,["H758"]],[11,13,["H5394","(H853)"]],[13,15,["H3064"]],[15,17,["H4480","H359"]],[17,20,["H726"]],[20,21,["H935"]],[21,23,["H359"]],[23,25,["H3427"]],[25,26,["H8033"]],[26,27,["H5704"]],[27,28,["H2088"]],[28,29,["H3117"]]]},{"k":9970,"v":[[0,2,["H271"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H8407"]],[6,7,["H4428"]],[7,9,["H804"]],[9,10,["H559"]],[10,11,["H589"]],[11,14,["H5650"]],[14,17,["H1121"]],[17,19,["H5927"]],[19,21,["H3467"]],[21,26,["H4480","H3709"]],[26,29,["H4428"]],[29,31,["H758"]],[31,36,["H4480","H3709"]],[36,39,["H4428"]],[39,41,["H3478"]],[41,44,["H6965"]],[44,45,["H5921"]],[45,46,[]]]},{"k":9971,"v":[[0,2,["H271"]],[2,3,["H3947","(H853)"]],[3,5,["H3701"]],[5,7,["H2091"]],[7,10,["H4672"]],[10,13,["H1004"]],[13,16,["H3068"]],[16,20,["H214"]],[20,23,["H4428"]],[23,24,["H1004"]],[24,26,["H7971"]],[26,30,["H7810"]],[30,33,["H4428"]],[33,35,["H804"]]]},{"k":9972,"v":[[0,3,["H4428"]],[3,5,["H804"]],[5,6,["H8085"]],[6,7,["H413"]],[7,11,["H4428"]],[11,13,["H804"]],[13,15,["H5927"]],[15,16,["H413"]],[16,17,["H1834"]],[17,19,["H8610"]],[19,27,["H1540"]],[27,29,["H7024"]],[29,31,["H4191"]],[31,32,["H7526"]]]},{"k":9973,"v":[[0,2,["H4428"]],[2,3,["H271"]],[3,4,["H1980"]],[4,6,["H1834"]],[6,8,["H7122"]],[8,9,["H8407"]],[9,10,["H4428"]],[10,12,["H804"]],[12,14,["H7200","(H853)"]],[14,16,["H4196"]],[16,17,["H834"]],[17,20,["H1834"]],[20,22,["H4428"]],[22,23,["H271"]],[23,24,["H7971"]],[24,25,["H413"]],[25,26,["H223"]],[26,28,["H3548","(H853)"]],[28,30,["H1823"]],[30,33,["H4196"]],[33,36,["H8403"]],[36,41,["H3605"]],[41,43,["H4639"]],[43,44,[]]]},{"k":9974,"v":[[0,2,["H223"]],[2,4,["H3548"]],[4,5,["H1129","(H853)"]],[5,7,["H4196"]],[7,10,["H3605"]],[10,11,["H834"]],[11,12,["H4428"]],[12,13,["H271"]],[13,15,["H7971"]],[15,17,["H4480","H1834"]],[17,18,["H3651"]],[18,19,["H223"]],[19,21,["H3548"]],[21,22,["H6213"]],[22,24,["H5704"]],[24,25,["H4428"]],[25,26,["H271"]],[26,27,["H935"]],[27,29,["H4480","H1834"]]]},{"k":9975,"v":[[0,4,["H4428"]],[4,6,["H935"]],[6,8,["H4480","H1834"]],[8,10,["H4428"]],[10,11,["H7200","(H853)"]],[11,13,["H4196"]],[13,16,["H4428"]],[16,17,["H7126"]],[17,18,["H5921"]],[18,20,["H4196"]],[20,22,["H5927"]],[22,23,["H5921"]]]},{"k":9976,"v":[[0,3,["H6999","(H853)"]],[3,6,["H5930"]],[6,10,["H4503"]],[10,12,["H5258","(H853)"]],[12,15,["H5262"]],[15,17,["H2236","(H853)"]],[17,19,["H1818"]],[19,21,["H834"]],[21,23,["H8002"]],[23,24,["H5921"]],[24,26,["H4196"]]]},{"k":9977,"v":[[0,3,["H7126"]],[3,6,["H5178"]],[6,7,["H4196"]],[7,8,["H834"]],[8,10,["H6440"]],[10,12,["H3068"]],[12,13,["H4480","H854"]],[13,15,["H6440"]],[15,18,["H1004"]],[18,20,["H4480","H996"]],[20,22,["H4196"]],[22,25,["H1004"]],[25,28,["H3068"]],[28,30,["H5414"]],[30,32,["H5921"]],[32,34,["H6828"]],[34,35,["H3409"]],[35,38,["H4196"]]]},{"k":9978,"v":[[0,2,["H4428"]],[2,3,["H271"]],[3,4,["H6680","(H853)"]],[4,5,["H223"]],[5,7,["H3548"]],[7,8,["H559"]],[8,9,["H5921"]],[9,11,["H1419"]],[11,12,["H4196"]],[12,13,["H6999","(H853)"]],[13,15,["H1242"]],[15,17,["H5930"]],[17,20,["H6153"]],[20,22,["H4503"]],[22,25,["H4428"]],[25,27,["H5930"]],[27,31,["H4503"]],[31,35,["H5930"]],[35,37,["H3605"]],[37,39,["H5971"]],[39,42,["H776"]],[42,46,["H4503"]],[46,50,["H5262"]],[50,52,["H2236"]],[52,53,["H5921"]],[53,55,["H3605"]],[55,57,["H1818"]],[57,61,["H5930"]],[61,63,["H3605"]],[63,65,["H1818"]],[65,68,["H2077"]],[68,71,["H5178"]],[71,72,["H4196"]],[72,74,["H1961"]],[74,78,["H1239"]],[78,79,[]]]},{"k":9979,"v":[[0,2,["H6213"]],[2,3,["H223"]],[3,5,["H3548"]],[5,8,["H3605"]],[8,9,["H834"]],[9,10,["H4428"]],[10,11,["H271"]],[11,12,["H6680"]]]},{"k":9980,"v":[[0,2,["H4428"]],[2,3,["H271"]],[3,5,["H7112","(H853)"]],[5,7,["H4526"]],[7,10,["H4350"]],[10,12,["H5493"]],[12,14,["H3595"]],[14,16,["H4480","H5921"]],[16,20,["H3381"]],[20,22,["H3220"]],[22,24,["H4480","H5921"]],[24,26,["H5178"]],[26,27,["H1241"]],[27,28,["H834"]],[28,30,["H8478"]],[30,33,["H5414"]],[33,35,["H5921"]],[35,37,["H4837"]],[37,39,["H68"]]]},{"k":9981,"v":[[0,3,["H4329"]],[3,6,["H7676"]],[6,7,["H834"]],[7,10,["H1129"]],[10,13,["H1004"]],[13,16,["H4428"]],[16,17,["H3996"]],[17,18,["H2435"]],[18,19,["H5437"]],[19,23,["H1004"]],[23,26,["H3068"]],[26,27,["H4480","H6440"]],[27,29,["H4428"]],[29,31,["H804"]]]},{"k":9982,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H271"]],[8,9,["H834"]],[9,11,["H6213"]],[11,13,["H1992"]],[13,14,["H3808"]],[14,15,["H3789"]],[15,16,["H5921"]],[16,18,["H5612"]],[18,21,["H1697","H3117"]],[21,24,["H4428"]],[24,26,["H3063"]]]},{"k":9983,"v":[[0,2,["H271"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,10,["H5973"]],[10,12,["H1"]],[12,15,["H5892"]],[15,17,["H1732"]],[17,19,["H2396"]],[19,21,["H1121"]],[21,22,["H4427"]],[22,25,["H8478"]]]},{"k":9984,"v":[[0,3,["H8147","H6240"]],[3,4,["H8141"]],[4,6,["H271"]],[6,7,["H4428"]],[7,9,["H3063"]],[9,11,["H1954"]],[11,13,["H1121"]],[13,15,["H425"]],[15,17,["H4427"]],[17,19,["H8111"]],[19,20,["H5921"]],[20,21,["H3478"]],[21,22,["H8672"]],[22,23,["H8141"]]]},{"k":9985,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,14,["H7535"]],[14,15,["H3808"]],[15,18,["H4428"]],[18,20,["H3478"]],[20,21,["H834"]],[21,22,["H1961"]],[22,23,["H6440"]],[23,24,[]]]},{"k":9986,"v":[[0,1,["H5921"]],[1,4,["H5927"]],[4,5,["H8022"]],[5,6,["H4428"]],[6,8,["H804"]],[8,10,["H1954"]],[10,11,["H1961"]],[11,13,["H5650"]],[13,15,["H7725"]],[15,17,["H4503"]]]},{"k":9987,"v":[[0,3,["H4428"]],[3,5,["H804"]],[5,6,["H4672"]],[6,7,["H7195"]],[7,9,["H1954"]],[9,13,["H7971"]],[13,14,["H4397"]],[14,15,["H413"]],[15,16,["H5471"]],[16,17,["H4428"]],[17,19,["H4714"]],[19,21,["H5927"]],[21,22,["H3808"]],[22,23,["H4503"]],[23,26,["H4428"]],[26,28,["H804"]],[28,33,["H8141"]],[33,35,["H8141"]],[35,38,["H4428"]],[38,40,["H804"]],[40,43,["H6113"]],[43,45,["H631"]],[45,48,["H1004","H3608"]]]},{"k":9988,"v":[[0,3,["H4428"]],[3,5,["H804"]],[5,7,["H5927"]],[7,9,["H3605"]],[9,11,["H776"]],[11,14,["H5927"]],[14,16,["H8111"]],[16,18,["H6696","H5921"]],[18,20,["H7969"]],[20,21,["H8141"]]]},{"k":9989,"v":[[0,3,["H8671"]],[3,4,["H8141"]],[4,6,["H1954"]],[6,8,["H4428"]],[8,10,["H804"]],[10,11,["H3920","(H853)"]],[11,12,["H8111"]],[12,16,["H1540","(H853)","H3478"]],[16,18,["H804"]],[18,20,["H3427"]],[20,23,["H2477"]],[23,26,["H2249"]],[26,29,["H5104"]],[29,31,["H1470"]],[31,35,["H5892"]],[35,38,["H4074"]]]},{"k":9990,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,11,["H2398"]],[11,14,["H3068"]],[14,16,["H430"]],[16,21,["H5927","(H853)"]],[21,25,["H4480","H776"]],[25,27,["H4714"]],[27,29,["H4480","H8478"]],[29,31,["H3027"]],[31,33,["H6547"]],[33,34,["H4428"]],[34,36,["H4714"]],[36,39,["H3372"]],[39,40,["H312"]],[40,41,["H430"]]]},{"k":9991,"v":[[0,2,["H1980"]],[2,5,["H2708"]],[5,8,["H1471"]],[8,9,["H834"]],[9,11,["H3068"]],[11,13,["H3423"]],[13,15,["H4480","H6440"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,23,["H4428"]],[23,25,["H3478"]],[25,26,["H834"]],[26,29,["H6213"]]]},{"k":9992,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H2644"]],[7,9,["H1697"]],[9,10,["H834"]],[10,12,["H3808"]],[12,13,["H3651"]],[13,14,["H5921"]],[14,16,["H3068"]],[16,18,["H430"]],[18,21,["H1129"]],[21,24,["H1116"]],[24,26,["H3605"]],[26,28,["H5892"]],[28,31,["H4480","H4026"]],[31,34,["H5341"]],[34,35,["H5704"]],[35,37,["H4013"]],[37,38,["H5892"]]]},{"k":9993,"v":[[0,5,["H5324"]],[5,6,["H4676"]],[6,8,["H842"]],[8,9,["H5921"]],[9,10,["H3605"]],[10,11,["H1364"]],[11,12,["H1389"]],[12,14,["H8478"]],[14,15,["H3605"]],[15,16,["H7488"]],[16,17,["H6086"]]]},{"k":9994,"v":[[0,2,["H8033"]],[2,5,["H6999"]],[5,7,["H3605"]],[7,10,["H1116"]],[10,14,["H1471"]],[14,15,["H834"]],[15,17,["H3068"]],[17,19,["H1540"]],[19,20,["H4480","H6440"]],[20,23,["H6213"]],[23,24,["H7451"]],[24,25,["H1697"]],[25,27,["H3707","(H853)"]],[27,29,["H3068"]],[29,31,[]]]},{"k":9995,"v":[[0,3,["H5647"]],[3,4,["H1544"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H559"]],[9,14,["H3808"]],[14,15,["H6213","(H853)"]],[15,16,["H2088"]],[16,17,["H1697"]]]},{"k":9996,"v":[[0,3,["H3068"]],[3,4,["H5749"]],[4,6,["H3478"]],[6,9,["H3063"]],[9,10,["H3027"]],[10,11,["H3605"]],[11,13,["H5030"]],[13,16,["H3605"]],[16,18,["H2374"]],[18,19,["H559"]],[19,20,["H7725"]],[20,25,["H4480","H1870","H7451"]],[25,27,["H8104"]],[27,29,["H4687"]],[29,32,["H2708"]],[32,35,["H3605"]],[35,37,["H8451"]],[37,38,["H834"]],[38,40,["H6680","(H853)"]],[40,42,["H1"]],[42,44,["H834"]],[44,46,["H7971"]],[46,47,["H413"]],[47,49,["H3027"]],[49,51,["H5650"]],[51,53,["H5030"]]]},{"k":9997,"v":[[0,4,["H3808"]],[4,5,["H8085"]],[5,7,["H7185","(H853)"]],[7,9,["H6203"]],[9,13,["H6203"]],[13,16,["H1"]],[16,17,["H834"]],[17,19,["H3808"]],[19,20,["H539"]],[20,23,["H3068"]],[23,25,["H430"]]]},{"k":9998,"v":[[0,3,["H3988","(H853)"]],[3,5,["H2706"]],[5,8,["H1285"]],[8,9,["H834"]],[9,11,["H3772"]],[11,12,["H854"]],[12,14,["H1"]],[14,17,["H5715"]],[17,18,["H834"]],[18,20,["H5749"]],[20,25,["H1980","H310"]],[25,26,["H1892"]],[26,29,["H1891"]],[29,32,["H310"]],[32,34,["H1471"]],[34,35,["H834"]],[35,38,["H5439"]],[38,41,["H834"]],[41,43,["H3068"]],[43,45,["H6680"]],[45,50,["H1115"]],[50,51,["H6213"]],[51,53,[]]]},{"k":9999,"v":[[0,3,["H5800","(H853)"]],[3,4,["H3605"]],[4,6,["H4687"]],[6,9,["H3068"]],[9,11,["H430"]],[11,13,["H6213"]],[13,16,["H4541"]],[16,18,["H8147"]],[18,19,["H5695"]],[19,21,["H6213"]],[21,23,["H842"]],[23,25,["H7812"]],[25,26,["H3605"]],[26,28,["H6635"]],[28,30,["H8064"]],[30,32,["H5647","(H853)"]],[32,33,["H1168"]]]},{"k":10000,"v":[[0,3,["(H853)"]],[3,5,["H1121"]],[5,8,["H1323"]],[8,11,["H5674"]],[11,13,["H784"]],[13,15,["H7080"]],[15,16,["H7081"]],[16,18,["H5172"]],[18,21,["H4376"]],[21,23,["H6213"]],[23,24,["H7451"]],[24,27,["H5869"]],[27,30,["H3068"]],[30,35,["H3707"]]]},{"k":10001,"v":[[0,3,["H3068"]],[3,6,["H599","H3966"]],[6,8,["H3478"]],[8,10,["H5493"]],[10,13,["H4480","H5921"]],[13,15,["H6440"]],[15,18,["H3808"]],[18,19,["H7604"]],[19,20,["H7535"]],[20,22,["H7626"]],[22,24,["H3063"]],[24,25,["H905"]]]},{"k":10002,"v":[[0,1,["H1571"]],[1,2,["H3063"]],[2,3,["H8104"]],[3,4,["H3808","(H853)"]],[4,6,["H4687"]],[6,9,["H3068"]],[9,11,["H430"]],[11,13,["H1980"]],[13,16,["H2708"]],[16,18,["H3478"]],[18,19,["H834"]],[19,21,["H6213"]]]},{"k":10003,"v":[[0,3,["H3068"]],[3,4,["H3988"]],[4,5,["H3605"]],[5,7,["H2233"]],[7,9,["H3478"]],[9,11,["H6031"]],[11,14,["H5414"]],[14,18,["H3027"]],[18,20,["H8154"]],[20,21,["H5704","H834"]],[21,26,["H7993"]],[26,29,["H4480","H6440"]]]},{"k":10004,"v":[[0,1,["H3588"]],[1,3,["H7167"]],[3,4,["H3478"]],[4,5,["H4480","H5921"]],[5,7,["H1004"]],[7,9,["H1732"]],[9,12,["(H853)"]],[12,13,["H3379"]],[13,15,["H1121"]],[15,17,["H5028"]],[17,18,["H4427"]],[18,20,["H3379"]],[20,21,["H5080","(H853)"]],[21,22,["H3478"]],[22,24,["H4480","H310"]],[24,26,["H3068"]],[26,30,["H2398"]],[30,32,["H1419"]],[32,33,["H2401"]]]},{"k":10005,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H1980"]],[6,8,["H3605"]],[8,10,["H2403"]],[10,12,["H3379"]],[12,13,["H834"]],[13,15,["H6213"]],[15,17,["H5493"]],[17,18,["H3808"]],[18,19,["H4480"]],[19,20,[]]]},{"k":10006,"v":[[0,1,["H5704","H834"]],[1,3,["H3068"]],[3,4,["H5493","(H853)"]],[4,5,["H3478"]],[5,7,["H4480","H5921"]],[7,9,["H6440"]],[9,10,["H834"]],[10,13,["H1696"]],[13,14,["H3027"]],[14,15,["H3605"]],[15,17,["H5650"]],[17,19,["H5030"]],[19,22,["H3478"]],[22,24,["H1540"]],[24,26,["H4480","H5921"]],[26,29,["H127"]],[29,31,["H804"]],[31,32,["H5704"]],[32,33,["H2088"]],[33,34,["H3117"]]]},{"k":10007,"v":[[0,3,["H4428"]],[3,5,["H804"]],[5,6,["H935"]],[6,9,["H4480","H894"]],[9,12,["H4480","H3575"]],[12,15,["H4480","H5755"]],[15,18,["H4480","H2574"]],[18,21,["H5617"]],[21,23,["H3427"]],[23,27,["H5892"]],[27,29,["H8111"]],[29,30,["H8478"]],[30,33,["H1121"]],[33,35,["H3478"]],[35,38,["H3423","(H853)"]],[38,39,["H8111"]],[39,41,["H3427"]],[41,44,["H5892"]],[44,45,[]]]},{"k":10008,"v":[[0,4,["H1961"]],[4,7,["H8462"]],[7,10,["H3427"]],[10,11,["H8033"]],[11,14,["H3372"]],[14,15,["H3808","(H853)"]],[15,17,["H3068"]],[17,20,["H3068"]],[20,21,["H7971","(H853)"]],[21,22,["H738"]],[22,26,["H2026"]],[26,29,[]]]},{"k":10009,"v":[[0,3,["H559"]],[3,6,["H4428"]],[6,8,["H804"]],[8,9,["H559"]],[9,11,["H1471"]],[11,12,["H834"]],[12,15,["H1540"]],[15,17,["H3427"]],[17,20,["H5892"]],[20,22,["H8111"]],[22,23,["H3045"]],[23,24,["H3808","(H853)"]],[24,26,["H4941"]],[26,29,["H430"]],[29,32,["H776"]],[32,36,["H7971","(H853)"]],[36,37,["H738"]],[37,41,["H2009"]],[41,43,["H4191"]],[43,45,["H834"]],[45,47,["H3045"]],[47,48,["H369","(H853)"]],[48,50,["H4941"]],[50,53,["H430"]],[53,56,["H776"]]]},{"k":10010,"v":[[0,3,["H4428"]],[3,5,["H804"]],[5,6,["H6680"]],[6,7,["H559"]],[7,8,["H1980"]],[8,9,["H8033"]],[9,10,["H259"]],[10,13,["H4480","H3548"]],[13,14,["H834"]],[14,16,["H1540"]],[16,18,["H4480","H8033"]],[18,22,["H1980"]],[22,24,["H3427"]],[24,25,["H8033"]],[25,29,["H3384"]],[29,30,["(H853)"]],[30,32,["H4941"]],[32,35,["H430"]],[35,38,["H776"]]]},{"k":10011,"v":[[0,2,["H259"]],[2,5,["H4480","H3548"]],[5,6,["H834"]],[6,10,["H1540"]],[10,12,["H4480","H8111"]],[12,13,["H935"]],[13,15,["H3427"]],[15,17,["H1008"]],[17,19,["H3384"]],[19,21,["H349"]],[21,24,["H3372","(H853)"]],[24,26,["H3068"]]]},{"k":10012,"v":[[0,3,["H1471","H1471"]],[3,4,["H6213"]],[4,5,["H430"]],[5,10,["H5117"]],[10,14,["H1004"]],[14,18,["H1116"]],[18,19,["H834"]],[19,21,["H8118"]],[21,23,["H6213"]],[23,25,["H1471","H1471"]],[25,28,["H5892"]],[28,29,["H834","H8033"]],[29,30,["H1992"]],[30,31,["H3427"]]]},{"k":10013,"v":[[0,3,["H376"]],[3,5,["H894"]],[5,6,["H6213","(H853)"]],[6,7,["H5524"]],[7,10,["H376"]],[10,12,["H3575"]],[12,13,["H6213","(H853)"]],[13,14,["H5370"]],[14,17,["H376"]],[17,19,["H2574"]],[19,20,["H6213","(H853)"]],[20,21,["H807"]]]},{"k":10014,"v":[[0,3,["H5761"]],[3,4,["H6213"]],[4,5,["H5026"]],[5,7,["H8662"]],[7,10,["H5616"]],[10,11,["H8313","(H853)"]],[11,13,["H1121"]],[13,15,["H784"]],[15,17,["H152"]],[17,19,["H6048"]],[19,21,["H430"]],[21,23,["H5617"]]]},{"k":10015,"v":[[0,3,["H1961","H3372","(H853)"]],[3,5,["H3068"]],[5,7,["H6213"]],[7,12,["H4480","H7098"]],[12,15,["H3548"]],[15,19,["H1116"]],[19,21,["H6213"]],[21,26,["H1004"]],[26,30,["H1116"]]]},{"k":10016,"v":[[0,2,["H1961","H3372","(H853)"]],[2,4,["H3068"]],[4,6,["H1961","H5647"]],[6,9,["H430"]],[9,12,["H4941"]],[12,15,["H1471"]],[15,16,["H834","(H853)"]],[16,19,["H1540"]],[19,21,["H4480","H8033"]]]},{"k":10017,"v":[[0,1,["H5704"]],[1,2,["H2088"]],[2,3,["H3117"]],[3,4,["H1992"]],[4,5,["H6213"]],[5,8,["H7223"]],[8,9,["H4941"]],[9,11,["H3372"]],[11,12,["H369","(H853)"]],[12,14,["H3068"]],[14,15,["H369"]],[15,16,["H6213"]],[16,20,["H2708"]],[20,24,["H4941"]],[24,28,["H8451"]],[28,30,["H4687"]],[30,31,["H834"]],[31,33,["H3068"]],[33,34,["H6680","(H853)"]],[34,36,["H1121"]],[36,38,["H3290"]],[38,39,["H834"]],[39,41,["H7760","H8034"]],[41,42,["H3478"]]]},{"k":10018,"v":[[0,1,["H854"]],[1,4,["H3068"]],[4,6,["H3772"]],[6,8,["H1285"]],[8,10,["H6680"]],[10,12,["H559"]],[12,15,["H3808"]],[15,16,["H3372"]],[16,17,["H312"]],[17,18,["H430"]],[18,19,["H3808"]],[19,21,["H7812"]],[21,24,["H3808"]],[24,25,["H5647"]],[25,27,["H3808"]],[27,28,["H2076"]],[28,30,[]]]},{"k":10019,"v":[[0,1,["H3588","H518","(H853)"]],[1,3,["H3068"]],[3,4,["H834"]],[4,7,["H5927","(H853)"]],[7,11,["H4480","H776"]],[11,13,["H4714"]],[13,15,["H1419"]],[15,16,["H3581"]],[16,20,["H5186"]],[20,21,["H2220"]],[21,25,["H3372"]],[25,30,["H7812"]],[30,37,["H2076"]]]},{"k":10020,"v":[[0,3,["H2706"]],[3,6,["H4941"]],[6,9,["H8451"]],[9,12,["H4687"]],[12,13,["H834"]],[13,15,["H3789"]],[15,20,["H8104"]],[20,22,["H6213"]],[22,24,["H3605","H3117"]],[24,28,["H3808"]],[28,29,["H3372"]],[29,30,["H312"]],[30,31,["H430"]]]},{"k":10021,"v":[[0,3,["H1285"]],[3,4,["H834"]],[4,7,["H3772"]],[7,8,["H854"]],[8,12,["H3808"]],[12,13,["H7911"]],[13,14,["H3808"]],[14,17,["H3372"]],[17,18,["H312"]],[18,19,["H430"]]]},{"k":10022,"v":[[0,1,["H3588","H518","(H853)"]],[1,3,["H3068"]],[3,5,["H430"]],[5,8,["H3372"]],[8,10,["H1931"]],[10,12,["H5337"]],[12,17,["H4480","H3027"]],[17,19,["H3605"]],[19,21,["H341"]]]},{"k":10023,"v":[[0,4,["H3808"]],[4,5,["H8085"]],[5,6,["H3588","H518"]],[6,7,["H1992"]],[7,8,["H6213"]],[8,11,["H7223"]],[11,12,["H4941"]]]},{"k":10024,"v":[[0,2,["H428"]],[2,3,["H1471"]],[3,4,["H1961","H3372","(H853)"]],[4,6,["H3068"]],[6,8,["H5647"]],[8,11,["H6456"]],[11,12,["H1571"]],[12,14,["H1121"]],[14,17,["H1121"]],[17,18,["H1121"]],[18,19,["H834"]],[19,20,["H6213"]],[20,22,["H1"]],[22,24,["H6213"]],[24,25,["H1992"]],[25,26,["H5704"]],[26,27,["H2088"]],[27,28,["H3117"]]]},{"k":10025,"v":[[0,5,["H1961"]],[5,8,["H7969"]],[8,9,["H8141"]],[9,11,["H1954"]],[11,12,["H1121"]],[12,14,["H425"]],[14,15,["H4428"]],[15,17,["H3478"]],[17,19,["H2396"]],[19,21,["H1121"]],[21,23,["H271"]],[23,24,["H4428"]],[24,26,["H3063"]],[26,29,["H4427"]]]},{"k":10026,"v":[[0,1,["H6242"]],[1,3,["H2568"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,6,["H1961"]],[6,12,["H4427"]],[12,15,["H4427"]],[15,16,["H6242"]],[16,18,["H8672"]],[18,19,["H8141"]],[19,21,["H3389"]],[21,23,["H517"]],[23,24,["H8034"]],[24,27,["H21"]],[27,29,["H1323"]],[29,31,["H2148"]]]},{"k":10027,"v":[[0,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3605"]],[16,17,["H834"]],[17,18,["H1732"]],[18,20,["H1"]],[20,21,["H6213"]]]},{"k":10028,"v":[[0,1,["H1931"]],[1,2,["H5493","(H853)"]],[2,5,["H1116"]],[5,7,["H7665","(H853)"]],[7,9,["H4676"]],[9,12,["H3772","(H853)"]],[12,14,["H842"]],[14,18,["H3807"]],[18,20,["H5178"]],[20,21,["H5175"]],[21,22,["H834"]],[22,23,["H4872"]],[23,25,["H6213"]],[25,26,["H3588"]],[26,27,["H5704"]],[27,28,["H1992"]],[28,29,["H3117"]],[29,31,["H1121"]],[31,33,["H3478"]],[33,34,["H1961"]],[34,36,["H6999"]],[36,41,["H7121"]],[41,43,["H5180"]]]},{"k":10029,"v":[[0,2,["H982"]],[2,5,["H3068"]],[5,6,["H430"]],[6,8,["H3478"]],[8,11,["H310"]],[11,13,["H1961"]],[13,14,["H3808"]],[14,16,["H3644"]],[16,18,["H3605"]],[18,20,["H4428"]],[20,22,["H3063"]],[22,25,["H834"]],[25,26,["H1961"]],[26,27,["H6440"]],[27,28,[]]]},{"k":10030,"v":[[0,3,["H1692"]],[3,6,["H3068"]],[6,8,["H5493"]],[8,9,["H3808"]],[9,11,["H4480","H310"]],[11,14,["H8104"]],[14,16,["H4687"]],[16,17,["H834"]],[17,19,["H3068"]],[19,20,["H6680","(H853)"]],[20,21,["H4872"]]]},{"k":10031,"v":[[0,3,["H3068"]],[3,4,["H1961"]],[4,5,["H5973"]],[5,9,["H7919"]],[9,10,["H3605","H834"]],[10,13,["H3318"]],[13,16,["H4775"]],[16,19,["H4428"]],[19,21,["H804"]],[21,23,["H5647"]],[23,25,["H3808"]]]},{"k":10032,"v":[[0,1,["H1931"]],[1,2,["H5221","(H853)"]],[2,4,["H6430"]],[4,6,["H5704"]],[6,7,["H5804"]],[7,10,["H1366"]],[10,14,["H4480","H4026"]],[14,17,["H5341"]],[17,18,["H5704"]],[18,20,["H4013"]],[20,21,["H5892"]]]},{"k":10033,"v":[[0,5,["H1961"]],[5,8,["H7243"]],[8,9,["H8141"]],[9,11,["H4428"]],[11,12,["H2396"]],[12,13,["H1931"]],[13,16,["H7637"]],[16,17,["H8141"]],[17,19,["H1954"]],[19,20,["H1121"]],[20,22,["H425"]],[22,23,["H4428"]],[23,25,["H3478"]],[25,27,["H8022"]],[27,28,["H4428"]],[28,30,["H804"]],[30,32,["H5927"]],[32,33,["H5921"]],[33,34,["H8111"]],[34,36,["H6696","H5921"]],[36,37,[]]]},{"k":10034,"v":[[0,4,["H4480","H7097"]],[4,6,["H7969"]],[6,7,["H8141"]],[7,9,["H3920"]],[9,14,["H8337"]],[14,15,["H8141"]],[15,17,["H2396"]],[17,18,["H1931"]],[18,21,["H8672"]],[21,22,["H8141"]],[22,24,["H1954"]],[24,25,["H4428"]],[25,27,["H3478"]],[27,28,["H8111"]],[28,30,["H3920"]]]},{"k":10035,"v":[[0,3,["H4428"]],[3,5,["H804"]],[5,8,["H1540","(H853)"]],[8,9,["H3478"]],[9,11,["H804"]],[11,13,["H5148"]],[13,16,["H2477"]],[16,19,["H2249"]],[19,22,["H5104"]],[22,24,["H1470"]],[24,28,["H5892"]],[28,31,["H4074"]]]},{"k":10036,"v":[[0,1,["H5921","H834"]],[1,3,["H8085"]],[3,4,["H3808"]],[4,6,["H6963"]],[6,9,["H3068"]],[9,11,["H430"]],[11,13,["H5674","(H853)"]],[13,15,["H1285"]],[15,16,["(H853)"]],[16,17,["H3605"]],[17,18,["H834"]],[18,19,["H4872"]],[19,21,["H5650"]],[21,24,["H3068"]],[24,25,["H6680"]],[25,28,["H3808"]],[28,29,["H8085"]],[29,31,["H3808"]],[31,32,["H6213"]],[32,33,[]]]},{"k":10037,"v":[[0,4,["H702","H6240"]],[4,5,["H8141"]],[5,7,["H4428"]],[7,8,["H2396"]],[8,10,["H5576"]],[10,11,["H4428"]],[11,13,["H804"]],[13,15,["H5927"]],[15,16,["H5921"]],[16,17,["H3605"]],[17,19,["H1219"]],[19,20,["H5892"]],[20,22,["H3063"]],[22,24,["H8610"]],[24,25,[]]]},{"k":10038,"v":[[0,2,["H2396"]],[2,3,["H4428"]],[3,5,["H3063"]],[5,6,["H7971"]],[6,7,["H413"]],[7,9,["H4428"]],[9,11,["H804"]],[11,13,["H3923"]],[13,14,["H559"]],[14,17,["H2398"]],[17,18,["H7725"]],[18,19,["H4480","H5921"]],[19,20,["(H853)"]],[20,22,["H834"]],[22,24,["H5414"]],[24,25,["H5921"]],[25,29,["H5375"]],[29,32,["H4428"]],[32,34,["H804"]],[34,35,["H7760"]],[35,36,["H5921"]],[36,37,["H2396"]],[37,38,["H4428"]],[38,40,["H3063"]],[40,41,["H7969"]],[41,42,["H3967"]],[42,43,["H3603"]],[43,45,["H3701"]],[45,47,["H7970"]],[47,48,["H3603"]],[48,50,["H2091"]]]},{"k":10039,"v":[[0,2,["H2396"]],[2,3,["H5414"]],[3,4,["(H853)"]],[4,5,["H3605"]],[5,7,["H3701"]],[7,10,["H4672"]],[10,13,["H1004"]],[13,16,["H3068"]],[16,20,["H214"]],[20,23,["H4428"]],[23,24,["H1004"]]]},{"k":10040,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,5,["H2396"]],[5,7,["H7112"]],[7,10,["(H853)"]],[10,12,["H1817"]],[12,15,["H1964"]],[15,18,["H3068"]],[18,22,["H547"]],[22,23,["H834"]],[23,24,["H2396"]],[24,25,["H4428"]],[25,27,["H3063"]],[27,29,["H6823"]],[29,31,["H5414"]],[31,35,["H4428"]],[35,37,["H804"]]]},{"k":10041,"v":[[0,3,["H4428"]],[3,5,["H804"]],[5,6,["H7971","(H853)"]],[6,7,["H8661"]],[7,9,["H7249"]],[9,11,["H7262"]],[11,12,["H4480"]],[12,13,["H3923"]],[13,14,["H413"]],[14,15,["H4428"]],[15,16,["H2396"]],[16,19,["H3515"]],[19,20,["H2426"]],[20,22,["H3389"]],[22,26,["H5927"]],[26,28,["H935"]],[28,30,["H3389"]],[30,36,["H5927"]],[36,38,["H935"]],[38,40,["H5975"]],[40,43,["H8585"]],[43,46,["H5945"]],[46,47,["H1295"]],[47,48,["H834"]],[48,52,["H4546"]],[52,55,["H3526"]],[55,56,["H7704"]]]},{"k":10042,"v":[[0,5,["H7121"]],[5,6,["H413"]],[6,8,["H4428"]],[8,11,["H3318"]],[11,12,["H413"]],[12,14,["H471"]],[14,16,["H1121"]],[16,18,["H2518"]],[18,19,["H834"]],[19,21,["H5921"]],[21,23,["H1004"]],[23,25,["H7644"]],[25,27,["H5608"]],[27,29,["H3098"]],[29,31,["H1121"]],[31,33,["H623"]],[33,35,["H2142"]]]},{"k":10043,"v":[[0,2,["H7262"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H559"]],[6,8,["H4994"]],[8,9,["H413"]],[9,10,["H2396"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H1419"]],[14,15,["H4428"]],[15,17,["H4428"]],[17,19,["H804"]],[19,20,["H4100"]],[20,21,["H986"]],[21,23,["H2088"]],[23,24,["H834"]],[24,26,["H982"]]]},{"k":10044,"v":[[0,2,["H559"]],[2,3,["H389"]],[3,7,["H8193"]],[7,8,["H1697"]],[8,11,["H6098"]],[11,13,["H1369"]],[13,16,["H4421"]],[16,17,["H6258"]],[17,18,["H5921"]],[18,19,["H4310"]],[19,22,["H982"]],[22,23,["H3588"]],[23,25,["H4775"]],[25,27,[]]]},{"k":10045,"v":[[0,1,["H6258"]],[1,2,["H2009"]],[2,4,["H982"]],[4,5,["H5921"]],[5,7,["H4938"]],[7,9,["H2088"]],[9,10,["H7533"]],[10,11,["H7070"]],[11,13,["H5921"]],[13,14,["H4714"]],[14,15,["H5921"]],[15,16,["H834"]],[16,19,["H376"]],[19,20,["H5564"]],[20,23,["H935"]],[23,26,["H3709"]],[26,28,["H5344"]],[28,30,["H3651"]],[30,32,["H6547"]],[32,33,["H4428"]],[33,35,["H4714"]],[35,37,["H3605"]],[37,39,["H982"]],[39,40,["H5921"]],[40,41,[]]]},{"k":10046,"v":[[0,2,["H3588"]],[2,4,["H559"]],[4,5,["H413"]],[5,8,["H982"]],[8,9,["H413"]],[9,11,["H3068"]],[11,13,["H430"]],[13,15,["H3808"]],[15,17,["H1931"]],[17,18,["H834","(H853)"]],[18,20,["H1116"]],[20,23,["H4196"]],[23,24,["H2396"]],[24,27,["H5493"]],[27,30,["H559"]],[30,32,["H3063"]],[32,34,["H3389"]],[34,37,["H7812"]],[37,38,["H6440"]],[38,39,["H2088"]],[39,40,["H4196"]],[40,42,["H3389"]]]},{"k":10047,"v":[[0,1,["H6258"]],[1,5,["H4994"]],[5,7,["H6149"]],[7,8,["H854"]],[8,10,["H113"]],[10,12,["H4428"]],[12,14,["H804"]],[14,18,["H5414"]],[18,21,["H505"]],[21,22,["H5483"]],[22,23,["H518"]],[23,26,["H3201"]],[26,31,["H5414"]],[31,32,["H7392"]],[32,33,["H5921"]],[33,34,[]]]},{"k":10048,"v":[[0,1,["H349"]],[1,6,["H7725","(H853)"]],[6,8,["H6440"]],[8,10,["H259"]],[10,11,["H6346"]],[11,14,["H6996"]],[14,17,["H113"]],[17,18,["H5650"]],[18,22,["H982"]],[22,23,["H5921"]],[23,24,["H4714"]],[24,26,["H7393"]],[26,29,["H6571"]]]},{"k":10049,"v":[[0,3,["H6258"]],[3,5,["H5927"]],[5,6,["H4480","H1107"]],[6,8,["H3068"]],[8,9,["H5921"]],[9,10,["H2088"]],[10,11,["H4725"]],[11,13,["H7843"]],[13,16,["H3068"]],[16,17,["H559"]],[17,18,["H413"]],[18,21,["H5927"]],[21,22,["H5921"]],[22,23,["H2063"]],[23,24,["H776"]],[24,26,["H7843"]],[26,27,[]]]},{"k":10050,"v":[[0,2,["H559"]],[2,3,["H471"]],[3,5,["H1121"]],[5,7,["H2518"]],[7,9,["H7644"]],[9,11,["H3098"]],[11,12,["H413"]],[12,13,["H7262"]],[13,14,["H1696"]],[14,17,["H4994"]],[17,18,["H413"]],[18,20,["H5650"]],[20,24,["H762"]],[24,25,["H3588"]],[25,26,["H587"]],[26,27,["H8085"]],[27,30,["H1696"]],[30,31,["H408"]],[31,32,["H5973"]],[32,37,["H3066"]],[37,40,["H241"]],[40,43,["H5971"]],[43,44,["H834"]],[44,46,["H5921"]],[46,48,["H2346"]]]},{"k":10051,"v":[[0,2,["H7262"]],[2,3,["H559"]],[3,4,["H413"]],[4,8,["H113"]],[8,9,["H7971"]],[9,11,["H5921"]],[11,13,["H113"]],[13,15,["H413"]],[15,18,["H1696","(H853)"]],[18,19,["H428"]],[19,20,["H1697"]],[20,23,["H3808"]],[23,26,["H5921"]],[26,28,["H376"]],[28,30,["H3427"]],[30,31,["H5921"]],[31,33,["H2346"]],[33,37,["H398","(H853)"]],[37,40,["H2716"]],[40,42,["H8354","(H853)"]],[42,45,["H7890"]],[45,46,["H5973"]],[46,47,[]]]},{"k":10052,"v":[[0,2,["H7262"]],[2,3,["H5975"]],[3,5,["H7121"]],[5,8,["H1419"]],[8,9,["H6963"]],[9,13,["H3066"]],[13,15,["H1696"]],[15,16,["H559"]],[16,17,["H8085"]],[17,19,["H1697"]],[19,22,["H1419"]],[22,23,["H4428"]],[23,25,["H4428"]],[25,27,["H804"]]]},{"k":10053,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H4428"]],[4,6,["H408"]],[6,7,["H2396"]],[7,8,["H5377"]],[8,10,["H3588"]],[10,13,["H3808"]],[13,15,["H3201"]],[15,17,["H5337"]],[17,22,["H4480","H3027"]]]},{"k":10054,"v":[[0,1,["H408"]],[1,3,["H2396"]],[3,6,["H982","H853"]],[6,7,["H413"]],[7,9,["H3068"]],[9,10,["H559"]],[10,12,["H3068"]],[12,15,["H5337","H5337"]],[15,17,["(H853)"]],[17,18,["H2063"]],[18,19,["H5892"]],[19,21,["H3808"]],[21,23,["H5414"]],[23,26,["H3027"]],[26,29,["H4428"]],[29,31,["H804"]]]},{"k":10055,"v":[[0,1,["H8085"]],[1,2,["H408"]],[2,3,["H413"]],[3,4,["H2396"]],[4,5,["H3588"]],[5,6,["H3541"]],[6,7,["H559"]],[7,9,["H4428"]],[9,11,["H804"]],[11,12,["H6213"]],[12,15,["H854"]],[15,19,["H1293"]],[19,22,["H3318"]],[22,23,["H413"]],[23,27,["H398"]],[27,30,["H376"]],[30,34,["H1612"]],[34,37,["H376"]],[37,41,["H8384"]],[41,43,["H8354"]],[43,46,["H376"]],[46,48,["H4325"]],[48,51,["H953"]]]},{"k":10056,"v":[[0,1,["H5704"]],[1,3,["H935"]],[3,7,["H3947","(H853)"]],[7,8,["H413"]],[8,10,["H776"]],[10,14,["H776"]],[14,16,["H776"]],[16,18,["H1715"]],[18,20,["H8492"]],[20,22,["H776"]],[22,24,["H3899"]],[24,26,["H3754"]],[26,28,["H776"]],[28,30,["H3323"]],[30,31,["H2132"]],[31,34,["H1706"]],[34,38,["H2421"]],[38,40,["H3808"]],[40,41,["H4191"]],[41,43,["H8085"]],[43,44,["H408"]],[44,45,["H413"]],[45,46,["H2396"]],[46,47,["H3588"]],[47,49,["H5496"]],[49,51,["H559"]],[51,53,["H3068"]],[53,55,["H5337"]],[55,56,[]]]},{"k":10057,"v":[[0,2,["H376"]],[2,5,["H430"]],[5,8,["H1471"]],[8,11,["H5337","H5337","(H853)"]],[11,13,["H776"]],[13,17,["H4480","H3027"]],[17,20,["H4428"]],[20,22,["H804"]]]},{"k":10058,"v":[[0,1,["H346"]],[1,4,["H430"]],[4,6,["H2574"]],[6,9,["H774"]],[9,10,["H346"]],[10,13,["H430"]],[13,15,["H5617"]],[15,16,["H2012"]],[16,18,["H5755"]],[18,21,["H5337","(H853)"]],[21,22,["H8111"]],[22,26,["H4480","H3027"]]]},{"k":10059,"v":[[0,1,["H4310"]],[1,5,["H3605"]],[5,7,["H430"]],[7,10,["H776"]],[10,11,["H834"]],[11,13,["H5337","(H853)"]],[13,15,["H776"]],[15,19,["H4480","H3027"]],[19,20,["H3588"]],[20,22,["H3068"]],[22,24,["H5337","(H853)"]],[24,25,["H3389"]],[25,29,["H4480","H3027"]]]},{"k":10060,"v":[[0,3,["H5971"]],[3,6,["H2790"]],[6,8,["H6030"]],[8,10,["H3808"]],[10,12,["H1697"]],[12,13,["H3588"]],[13,15,["H4428"]],[15,16,["H4687"]],[16,18,["H559"]],[18,19,["H6030"]],[19,21,["H3808"]]]},{"k":10061,"v":[[0,2,["H935"]],[2,3,["H471"]],[3,5,["H1121"]],[5,7,["H2518"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H1004"]],[12,14,["H7644"]],[14,16,["H5608"]],[16,18,["H3098"]],[18,20,["H1121"]],[20,22,["H623"]],[22,24,["H2142"]],[24,25,["H413"]],[25,26,["H2396"]],[26,29,["H899"]],[29,30,["H7167"]],[30,32,["H5046"]],[32,35,["H1697"]],[35,37,["H7262"]]]},{"k":10062,"v":[[0,5,["H1961"]],[5,7,["H4428"]],[7,8,["H2396"]],[8,9,["H8085"]],[9,13,["H7167","(H853)"]],[13,15,["H899"]],[15,18,["H3680"]],[18,20,["H8242"]],[20,22,["H935"]],[22,25,["H1004"]],[25,28,["H3068"]]]},{"k":10063,"v":[[0,3,["H7971","(H853)"]],[3,4,["H471"]],[4,5,["H834"]],[5,7,["H5921"]],[7,9,["H1004"]],[9,11,["H7644"]],[11,13,["H5608"]],[13,16,["H2205"]],[16,19,["H3548"]],[19,20,["H3680"]],[20,22,["H8242"]],[22,23,["H413"]],[23,24,["H3470"]],[24,26,["H5030"]],[26,28,["H1121"]],[28,30,["H531"]]]},{"k":10064,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3541"]],[6,7,["H559"]],[7,8,["H2396"]],[8,9,["H2088"]],[9,10,["H3117"]],[10,13,["H3117"]],[13,15,["H6869"]],[15,18,["H8433"]],[18,20,["H5007"]],[20,21,["H3588"]],[21,23,["H1121"]],[23,25,["H935"]],[25,26,["H5704"]],[26,28,["H4866"]],[28,32,["H369"]],[32,33,["H3581"]],[33,36,["H3205"]]]},{"k":10065,"v":[[0,3,["H194"]],[3,5,["H3068"]],[5,7,["H430"]],[7,9,["H8085","(H853)"]],[9,10,["H3605"]],[10,12,["H1697"]],[12,14,["H7262"]],[14,15,["H834"]],[15,17,["H4428"]],[17,19,["H804"]],[19,21,["H113"]],[21,23,["H7971"]],[23,25,["H2778"]],[25,27,["H2416"]],[27,28,["H430"]],[28,31,["H3198"]],[31,33,["H1697"]],[33,34,["H834"]],[34,36,["H3068"]],[36,38,["H430"]],[38,40,["H8085"]],[40,43,["H5375"]],[43,45,["H8605"]],[45,46,["H1157"]],[46,48,["H7611"]],[48,51,["H4672"]]]},{"k":10066,"v":[[0,3,["H5650"]],[3,5,["H4428"]],[5,6,["H2396"]],[6,7,["H935"]],[7,8,["H413"]],[8,9,["H3470"]]]},{"k":10067,"v":[[0,2,["H3470"]],[2,3,["H559"]],[3,6,["H3541"]],[6,9,["H559"]],[9,10,["H413"]],[10,12,["H113"]],[12,13,["H3541"]],[13,14,["H559"]],[14,16,["H3068"]],[16,19,["H408","H3372"]],[19,20,["H4480","H6440"]],[20,22,["H1697"]],[22,23,["H834"]],[23,26,["H8085"]],[26,28,["H834"]],[28,30,["H5288"]],[30,33,["H4428"]],[33,35,["H804"]],[35,37,["H1442"]],[37,38,[]]]},{"k":10068,"v":[[0,1,["H2009"]],[1,4,["H5414"]],[4,6,["H7307"]],[6,12,["H8085"]],[12,14,["H8052"]],[14,17,["H7725"]],[17,21,["H776"]],[21,28,["H5307"]],[28,31,["H2719"]],[31,35,["H776"]]]},{"k":10069,"v":[[0,2,["H7262"]],[2,3,["H7725"]],[3,5,["H4672","(H853)"]],[5,7,["H4428"]],[7,9,["H804"]],[9,10,["H3898"]],[10,11,["H5921"]],[11,12,["H3841"]],[12,13,["H3588"]],[13,16,["H8085"]],[16,17,["H3588"]],[17,20,["H5265"]],[20,22,["H4480","H3923"]]]},{"k":10070,"v":[[0,4,["H8085"]],[4,5,["H559"]],[5,6,["H413"]],[6,7,["H8640"]],[7,8,["H4428"]],[8,10,["H3568"]],[10,11,["H2009"]],[11,15,["H3318"]],[15,17,["H3898"]],[17,18,["H854"]],[18,21,["H7971"]],[21,22,["H4397"]],[22,23,["H7725"]],[23,24,["H413"]],[24,25,["H2396"]],[25,26,["H559"]]]},{"k":10071,"v":[[0,1,["H3541"]],[1,4,["H559"]],[4,5,["H413"]],[5,6,["H2396"]],[6,7,["H4428"]],[7,9,["H3063"]],[9,10,["H559"]],[10,12,["H408"]],[12,14,["H430"]],[14,16,["H834"]],[16,17,["H859"]],[17,18,["H982"]],[18,19,["H5377"]],[19,21,["H559"]],[21,22,["H3389"]],[22,24,["H3808"]],[24,26,["H5414"]],[26,29,["H3027"]],[29,32,["H4428"]],[32,34,["H804"]]]},{"k":10072,"v":[[0,1,["H2009"]],[1,2,["H859"]],[2,4,["H8085","(H853)"]],[4,5,["H834"]],[5,7,["H4428"]],[7,9,["H804"]],[9,11,["H6213"]],[11,13,["H3605"]],[13,14,["H776"]],[14,18,["H2763"]],[18,21,["H859"]],[21,23,["H5337"]]]},{"k":10073,"v":[[0,3,["H430"]],[3,6,["H1471"]],[6,7,["H5337"]],[7,9,["H834"]],[9,11,["H1"]],[11,13,["H7843"]],[13,14,["(H853)"]],[14,15,["H1470"]],[15,17,["H2771"]],[17,19,["H7530"]],[19,22,["H1121"]],[22,24,["H5729"]],[24,25,["H834"]],[25,28,["H8515"]]]},{"k":10074,"v":[[0,1,["H346"]],[1,4,["H4428"]],[4,6,["H2574"]],[6,9,["H4428"]],[9,11,["H774"]],[11,14,["H4428"]],[14,17,["H5892"]],[17,19,["H5617"]],[19,21,["H2012"]],[21,23,["H5755"]]]},{"k":10075,"v":[[0,2,["H2396"]],[2,3,["H3947","(H853)"]],[3,5,["H5612"]],[5,8,["H4480","H3027"]],[8,11,["H4397"]],[11,13,["H7121"]],[13,16,["H2396"]],[16,18,["H5927"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,26,["H6566"]],[26,28,["H6440"]],[28,30,["H3068"]]]},{"k":10076,"v":[[0,2,["H2396"]],[2,3,["H6419"]],[3,4,["H6440"]],[4,6,["H3068"]],[6,8,["H559"]],[8,10,["H3068"]],[10,11,["H430"]],[11,13,["H3478"]],[13,15,["H3427"]],[15,18,["H3742"]],[18,19,["H859"]],[19,22,["H430"]],[22,25,["H905"]],[25,27,["H3605"]],[27,29,["H4467"]],[29,32,["H776"]],[32,33,["H859"]],[33,35,["H6213","(H853)"]],[35,36,["H8064"]],[36,38,["H776"]]]},{"k":10077,"v":[[0,1,["H3068"]],[1,3,["H5186"]],[3,5,["H241"]],[5,7,["H8085"]],[7,8,["H6491"]],[8,9,["H3068"]],[9,11,["H5869"]],[11,13,["H7200"]],[13,15,["H8085","(H853)"]],[15,17,["H1697"]],[17,19,["H5576"]],[19,20,["H834"]],[20,22,["H7971"]],[22,25,["H2778"]],[25,27,["H2416"]],[27,28,["H430"]]]},{"k":10078,"v":[[0,3,["H546"]],[3,4,["H3068"]],[4,6,["H4428"]],[6,8,["H804"]],[8,10,["H2717"]],[10,12,["H1471"]],[12,13,["(H853)"]],[13,15,["H776"]]]},{"k":10079,"v":[[0,3,["H5414","(H853)"]],[3,5,["H430"]],[5,8,["H784"]],[8,9,["H3588"]],[9,10,["H1992"]],[10,12,["H3808"]],[12,13,["H430"]],[13,14,["H3588","H518"]],[14,16,["H4639"]],[16,18,["H120"]],[18,19,["H3027"]],[19,20,["H6086"]],[20,22,["H68"]],[22,26,["H6"]],[26,27,[]]]},{"k":10080,"v":[[0,1,["H6258"]],[1,4,["H3068"]],[4,6,["H430"]],[6,9,["H4994"]],[9,10,["H3467"]],[10,16,["H4480","H3027"]],[16,18,["H3605"]],[18,20,["H4467"]],[20,23,["H776"]],[23,25,["H3045"]],[25,26,["H3588"]],[26,27,["H859"]],[27,30,["H3068"]],[30,31,["H430"]],[31,34,["H905"]]]},{"k":10081,"v":[[0,2,["H3470"]],[2,4,["H1121"]],[4,6,["H531"]],[6,7,["H7971"]],[7,8,["H413"]],[8,9,["H2396"]],[9,10,["H559"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H3068"]],[14,15,["H430"]],[15,17,["H3478"]],[17,19,["H834"]],[19,22,["H6419"]],[22,23,["H413"]],[23,25,["H413"]],[25,26,["H5576"]],[26,27,["H4428"]],[27,29,["H804"]],[29,32,["H8085"]]]},{"k":10082,"v":[[0,1,["H2088"]],[1,4,["H1697"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H1696"]],[9,10,["H5921"]],[10,13,["H1330"]],[13,15,["H1323"]],[15,17,["H6726"]],[17,19,["H959"]],[19,25,["H3932"]],[25,27,["H1323"]],[27,29,["H3389"]],[29,31,["H5128"]],[31,33,["H7218"]],[33,34,["H310"]],[34,35,[]]]},{"k":10083,"v":[[0,0,["(H853)"]],[0,1,["H4310"]],[1,4,["H2778"]],[4,6,["H1442"]],[6,8,["H5921"]],[8,9,["H4310"]],[9,12,["H7311"]],[12,14,["H6963"]],[14,17,["H5375"]],[17,19,["H5869"]],[19,21,["H4791"]],[21,23,["H5921"]],[23,25,["H6918"]],[25,28,["H3478"]]]},{"k":10084,"v":[[0,1,["H3027"]],[1,3,["H4397"]],[3,6,["H2778"]],[6,8,["H136"]],[8,11,["H559"]],[11,14,["H7230"]],[14,17,["H7393"]],[17,18,["H589"]],[18,21,["H5927"]],[21,24,["H4791"]],[24,27,["H2022"]],[27,30,["H3411"]],[30,32,["H3844"]],[32,36,["H3772"]],[36,38,["H6967"]],[38,40,["H730"]],[40,44,["H4004"]],[44,46,["H1265"]],[46,51,["H935"]],[51,54,["H4411"]],[54,57,["H7093"]],[57,61,["H3293"]],[61,64,["H3760"]]]},{"k":10085,"v":[[0,1,["H589"]],[1,3,["H6979"]],[3,5,["H8354"]],[5,6,["H2114"]],[6,7,["H4325"]],[7,11,["H3709"]],[11,14,["H6471"]],[14,18,["H2717"]],[18,19,["H3605"]],[19,21,["H2975"]],[21,24,["H4693"]]]},{"k":10086,"v":[[0,3,["H3808"]],[3,4,["H8085"]],[4,6,["H4480","H7350"]],[6,10,["H6213"]],[10,15,["H4480","H3117","H6924"]],[15,19,["H3335"]],[19,21,["H6258"]],[21,27,["H935"]],[27,31,["H1961"]],[31,34,["H7582"]],[34,35,["H1219"]],[35,36,["H5892"]],[36,38,["H5327"]],[38,39,["H1530"]]]},{"k":10087,"v":[[0,3,["H3427"]],[3,6,["H7116"]],[6,7,["H3027"]],[7,10,["H2865"]],[10,12,["H954"]],[12,14,["H1961"]],[14,17,["H6212"]],[17,20,["H7704"]],[20,24,["H3419"]],[24,25,["H1877"]],[25,28,["H2682"]],[28,31,["H1406"]],[31,35,["H7711"]],[35,36,["H6440"]],[36,40,["H7054"]]]},{"k":10088,"v":[[0,3,["H3045"]],[3,5,["H3427"]],[5,9,["H3318"]],[9,13,["H935"]],[13,16,["H7264"]],[16,17,["H413"]],[17,18,[]]]},{"k":10089,"v":[[0,1,["H3282"]],[1,3,["H7264"]],[3,4,["H413"]],[4,8,["H7600"]],[8,11,["H5927"]],[11,14,["H241"]],[14,18,["H7760"]],[18,20,["H2397"]],[20,23,["H639"]],[23,26,["H4964"]],[26,29,["H8193"]],[29,35,["H7725"]],[35,38,["H1870"]],[38,40,["H834"]],[40,42,["H935"]]]},{"k":10090,"v":[[0,2,["H2088"]],[2,6,["H226"]],[6,11,["H398"]],[11,13,["H8141"]],[13,19,["H5599"]],[19,23,["H8145"]],[23,24,["H8141"]],[24,30,["H7823"]],[30,34,["H7992"]],[34,35,["H8141"]],[35,36,["H2232"]],[36,39,["H7114"]],[39,41,["H5193"]],[41,42,["H3754"]],[42,44,["H398"]],[44,46,["H6529"]],[46,47,[]]]},{"k":10091,"v":[[0,3,["H7604"]],[3,6,["H6413"]],[6,9,["H1004"]],[9,11,["H3063"]],[11,14,["H3254"]],[14,16,["H8328"]],[16,17,["H4295"]],[17,19,["H6213"]],[19,20,["H6529"]],[20,21,["H4605"]]]},{"k":10092,"v":[[0,1,["H3588"]],[1,4,["H4480","H3389"]],[4,7,["H3318"]],[7,9,["H7611"]],[9,13,["H6413"]],[13,16,["H4480","H2022"]],[16,17,["H6726"]],[17,19,["H7068"]],[19,22,["H3068"]],[22,26,["H6213"]],[26,27,["H2063"]]]},{"k":10093,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H413"]],[6,8,["H4428"]],[8,10,["H804"]],[10,13,["H3808"]],[13,14,["H935"]],[14,15,["H413"]],[15,16,["H2063"]],[16,17,["H5892"]],[17,18,["H3808"]],[18,19,["H3384"]],[19,21,["H2671"]],[21,22,["H8033"]],[22,23,["H3808"]],[23,25,["H6923"]],[25,28,["H4043"]],[28,29,["H3808"]],[29,30,["H8210"]],[30,32,["H5550"]],[32,33,["H5921"]],[33,34,[]]]},{"k":10094,"v":[[0,3,["H1870"]],[3,4,["H834"]],[4,6,["H935"]],[6,12,["H7725"]],[12,15,["H3808"]],[15,16,["H935"]],[16,17,["H413"]],[17,18,["H2063"]],[18,19,["H5892"]],[19,20,["H5002"]],[20,22,["H3068"]]]},{"k":10095,"v":[[0,4,["H1598","H413"]],[4,5,["H2063"]],[5,6,["H5892"]],[6,8,["H3467"]],[8,13,["H4616"]],[13,17,["H5650"]],[17,18,["H1732"]],[18,19,["H4616"]]]},{"k":10096,"v":[[0,5,["H1961"]],[5,6,["H1931"]],[6,7,["H3915"]],[7,10,["H4397"]],[10,13,["H3068"]],[13,15,["H3318"]],[15,17,["H5221"]],[17,20,["H4264"]],[20,23,["H804"]],[23,25,["H3967"]],[25,26,["H8084"]],[26,28,["H2568"]],[28,29,["H505"]],[29,34,["H7925"]],[34,37,["H1242"]],[37,38,["H2009"]],[38,41,["H3605"]],[41,42,["H4191"]],[42,43,["H6297"]]]},{"k":10097,"v":[[0,2,["H5576"]],[2,3,["H4428"]],[3,5,["H804"]],[5,6,["H5265"]],[6,8,["H1980"]],[8,10,["H7725"]],[10,12,["H3427"]],[12,14,["H5210"]]]},{"k":10098,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,9,["H7812"]],[9,12,["H1004"]],[12,14,["H5268"]],[14,16,["H430"]],[16,18,["H152"]],[18,20,["H8272"]],[20,22,["H1121"]],[22,23,["H5221"]],[23,27,["H2719"]],[27,29,["H1992"]],[29,30,["H4422"]],[30,33,["H776"]],[33,35,["H780"]],[35,37,["H634"]],[37,39,["H1121"]],[39,40,["H4427"]],[40,43,["H8478"]]]},{"k":10099,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,6,["H2470","H2396"]],[6,8,["H4191"]],[8,11,["H5030"]],[11,12,["H3470"]],[12,14,["H1121"]],[14,16,["H531"]],[16,17,["H935"]],[17,18,["H413"]],[18,21,["H559"]],[21,22,["H413"]],[22,24,["H3541"]],[24,25,["H559"]],[25,27,["H3068"]],[27,32,["H6680","H1004"]],[32,33,["H3588"]],[33,34,["H859"]],[34,36,["H4191"]],[36,38,["H3808"]],[38,39,["H2421"]]]},{"k":10100,"v":[[0,3,["H5437","(H853)"]],[3,5,["H6440"]],[5,6,["H413"]],[6,8,["H7023"]],[8,10,["H6419"]],[10,11,["H413"]],[11,13,["H3068"]],[13,14,["H559"]]]},{"k":10101,"v":[[0,3,["H577"]],[3,5,["H3068"]],[5,6,["H2142"]],[6,7,["H4994","(H853)"]],[7,8,["H834"]],[8,11,["H1980"]],[11,12,["H6440"]],[12,15,["H571"]],[15,19,["H8003"]],[19,20,["H3824"]],[20,23,["H6213"]],[23,27,["H2896"]],[27,30,["H5869"]],[30,32,["H2396"]],[32,33,["H1058"]],[33,34,["H1065","H1419"]]]},{"k":10102,"v":[[0,5,["H1961"]],[5,6,["H3808"]],[6,7,["H3470"]],[7,10,["H3318"]],[10,13,["H8484"]],[13,14,["H2691"]],[14,17,["H1697"]],[17,20,["H3068"]],[20,21,["H1961"]],[21,22,["H413"]],[22,24,["H559"]]]},{"k":10103,"v":[[0,2,["H7725"]],[2,4,["H559","H413"]],[4,5,["H2396"]],[5,7,["H5057"]],[7,10,["H5971"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H3068"]],[14,16,["H430"]],[16,18,["H1732"]],[18,20,["H1"]],[20,23,["H8085","(H853)"]],[23,25,["H8605"]],[25,28,["H7200","(H853)"]],[28,30,["H1832"]],[30,31,["H2009"]],[31,34,["H7495"]],[34,38,["H7992"]],[38,39,["H3117"]],[39,43,["H5927"]],[43,46,["H1004"]],[46,49,["H3068"]]]},{"k":10104,"v":[[0,4,["H3254"]],[4,5,["H5921"]],[5,7,["H3117"]],[7,8,["H2568","H6240"]],[8,9,["H8141"]],[9,13,["H5337"]],[13,16,["H2063"]],[16,17,["H5892"]],[17,21,["H4480","H3709"]],[21,24,["H4428"]],[24,26,["H804"]],[26,30,["H1598","H5921"]],[30,31,["H2063"]],[31,32,["H5892"]],[32,36,["H4616"]],[36,40,["H5650"]],[40,41,["H1732"]],[41,42,["H4616"]]]},{"k":10105,"v":[[0,2,["H3470"]],[2,3,["H559"]],[3,4,["H3947"]],[4,6,["H1690"]],[6,8,["H8384"]],[8,11,["H3947"]],[11,13,["H7760"]],[13,15,["H5921"]],[15,17,["H7822"]],[17,20,["H2421"]]]},{"k":10106,"v":[[0,2,["H2396"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3470"]],[5,6,["H4100"]],[6,10,["H226"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,15,["H7495"]],[15,22,["H5927"]],[22,25,["H1004"]],[25,28,["H3068"]],[28,30,["H7992"]],[30,31,["H3117"]]]},{"k":10107,"v":[[0,2,["H3470"]],[2,3,["H559"]],[3,4,["H2088"]],[4,5,["H226"]],[5,9,["H4480","H854"]],[9,11,["H3068"]],[11,12,["H3588"]],[12,14,["H3068"]],[14,16,["H6213","(H853)"]],[16,18,["H1697"]],[18,19,["H834"]],[19,22,["H1696"]],[22,25,["H6738"]],[25,27,["H1980"]],[27,28,["H6235"]],[28,29,["H4609"]],[29,30,["H518"]],[30,32,["H7725"]],[32,33,["H6235"]],[33,34,["H4609"]]]},{"k":10108,"v":[[0,2,["H3169"]],[2,3,["H559"]],[3,8,["H7043"]],[8,11,["H6738"]],[11,14,["H5186"]],[14,15,["H6235"]],[15,16,["H4609"]],[16,17,["H3808"]],[17,18,["H3588"]],[18,21,["H6738"]],[21,22,["H7725"]],[22,23,["H322"]],[23,24,["H6235"]],[24,25,["H4609"]]]},{"k":10109,"v":[[0,2,["H3470"]],[2,4,["H5030"]],[4,5,["H7121"]],[5,6,["H413"]],[6,8,["H3068"]],[8,11,["H7725","(H853)"]],[11,13,["H6738"]],[13,14,["H6235"]],[14,15,["H4609"]],[15,16,["H322"]],[16,18,["H834"]],[18,22,["H3381"]],[22,25,["H4609"]],[25,27,["H271"]]]},{"k":10110,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,4,["H1255"]],[4,6,["H1121"]],[6,8,["H1081"]],[8,9,["H4428"]],[9,11,["H894"]],[11,12,["H7971"]],[12,13,["H5612"]],[13,16,["H4503"]],[16,17,["H413"]],[17,18,["H2396"]],[18,19,["H3588"]],[19,22,["H8085"]],[22,23,["H3588"]],[23,24,["H2396"]],[24,27,["H2470"]]]},{"k":10111,"v":[[0,2,["H2396"]],[2,3,["H8085"]],[3,4,["H5921"]],[4,7,["H7200"]],[7,8,["(H853)"]],[8,9,["H3605"]],[9,11,["H1004"]],[11,15,["H5238","(H853)"]],[15,17,["H3701"]],[17,20,["H2091"]],[20,23,["H1314"]],[23,26,["H2896"]],[26,27,["H8081"]],[27,31,["H1004"]],[31,34,["H3627"]],[34,36,["H3605"]],[36,37,["H834"]],[37,39,["H4672"]],[39,42,["H214"]],[42,44,["H1961"]],[44,45,["H3808","H1697"]],[45,48,["H1004"]],[48,51,["H3605"]],[51,53,["H4475"]],[53,54,["H834"]],[54,55,["H2396"]],[55,56,["H7200"]],[56,58,["H3808"]]]},{"k":10112,"v":[[0,2,["H935"]],[2,3,["H3470"]],[3,5,["H5030"]],[5,6,["H413"]],[6,7,["H4428"]],[7,8,["H2396"]],[8,10,["H559"]],[10,11,["H413"]],[11,13,["H4100"]],[13,14,["H559"]],[14,15,["H428"]],[15,16,["H376"]],[16,19,["H4480","H370"]],[19,20,["H935"]],[20,22,["H413"]],[22,25,["H2396"]],[25,26,["H559"]],[26,29,["H935"]],[29,33,["H4480","H776","H7350"]],[33,36,["H4480","H894"]]]},{"k":10113,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,7,["H7200"]],[7,10,["H1004"]],[10,12,["H2396"]],[12,13,["H559","(H853)"]],[13,14,["H3605"]],[14,17,["H834"]],[17,21,["H1004"]],[21,24,["H7200"]],[24,26,["H1961"]],[26,27,["H3808","H1697"]],[27,30,["H214"]],[30,31,["H834"]],[31,34,["H3808"]],[34,35,["H7200"]],[35,36,[]]]},{"k":10114,"v":[[0,2,["H3470"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H2396"]],[5,6,["H8085"]],[6,8,["H1697"]],[8,11,["H3068"]]]},{"k":10115,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,6,["H3605"]],[6,7,["H834"]],[7,11,["H1004"]],[11,14,["H834"]],[14,16,["H1"]],[16,21,["H686"]],[21,22,["H5704"]],[22,23,["H2088"]],[23,24,["H3117"]],[24,27,["H5375"]],[27,29,["H894"]],[29,30,["H3808","H1697"]],[30,33,["H3498"]],[33,34,["H559"]],[34,36,["H3068"]]]},{"k":10116,"v":[[0,4,["H4480","H1121"]],[4,5,["H834"]],[5,7,["H3318"]],[7,8,["H4480"]],[8,10,["H834"]],[10,13,["H3205"]],[13,17,["H3947"]],[17,21,["H1961"]],[21,22,["H5631"]],[22,25,["H1964"]],[25,28,["H4428"]],[28,30,["H894"]]]},{"k":10117,"v":[[0,2,["H559"]],[2,3,["H2396"]],[3,4,["H413"]],[4,5,["H3470"]],[5,6,["H2896"]],[6,9,["H1697"]],[9,12,["H3068"]],[12,13,["H834"]],[13,16,["H1696"]],[16,19,["H559"]],[19,22,["H3808"]],[22,24,["H518"]],[24,25,["H7965"]],[25,27,["H571"]],[27,28,["H1961"]],[28,31,["H3117"]]]},{"k":10118,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H2396"]],[8,10,["H3605"]],[10,12,["H1369"]],[12,14,["H834"]],[14,16,["H6213","(H853)"]],[16,18,["H1295"]],[18,21,["H8585"]],[21,23,["H935","(H853)"]],[23,24,["H4325"]],[24,27,["H5892"]],[27,29,["H1992"]],[29,30,["H3808"]],[30,31,["H3789"]],[31,32,["H5921"]],[32,34,["H5612"]],[34,37,["H1697","H3117"]],[37,40,["H4428"]],[40,42,["H3063"]]]},{"k":10119,"v":[[0,2,["H2396"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,8,["H4519"]],[8,10,["H1121"]],[10,11,["H4427"]],[11,14,["H8478"]]]},{"k":10120,"v":[[0,1,["H4519"]],[1,3,["H8147","H6240"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,10,["H4427"]],[10,12,["H4427"]],[12,13,["H2572"]],[13,15,["H2568"]],[15,16,["H8141"]],[16,18,["H3389"]],[18,21,["H517"]],[21,22,["H8034"]],[22,24,["H2657"]]]},{"k":10121,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H8441"]],[16,19,["H1471"]],[19,20,["H834"]],[20,22,["H3068"]],[22,24,["H3423"]],[24,25,["H4480","H6440"]],[25,27,["H1121"]],[27,29,["H3478"]]]},{"k":10122,"v":[[0,4,["H1129"]],[4,5,["H7725","(H853)"]],[5,8,["H1116"]],[8,9,["H834"]],[9,10,["H2396"]],[10,12,["H1"]],[12,14,["H6"]],[14,18,["H6965"]],[18,19,["H4196"]],[19,21,["H1168"]],[21,23,["H6213"]],[23,25,["H842"]],[25,26,["H834"]],[26,27,["H6213"]],[27,28,["H256"]],[28,29,["H4428"]],[29,31,["H3478"]],[31,33,["H7812"]],[33,34,["H3605"]],[34,36,["H6635"]],[36,38,["H8064"]],[38,40,["H5647"]],[40,41,[]]]},{"k":10123,"v":[[0,3,["H1129"]],[3,4,["H4196"]],[4,7,["H1004"]],[7,10,["H3068"]],[10,12,["H834"]],[12,14,["H3068"]],[14,15,["H559"]],[15,17,["H3389"]],[17,20,["H7760","(H853)"]],[20,22,["H8034"]]]},{"k":10124,"v":[[0,3,["H1129"]],[3,4,["H4196"]],[4,6,["H3605"]],[6,8,["H6635"]],[8,10,["H8064"]],[10,13,["H8147"]],[13,14,["H2691"]],[14,17,["H1004"]],[17,20,["H3068"]]]},{"k":10125,"v":[[0,3,["(H853)"]],[3,5,["H1121"]],[5,7,["H5674"]],[7,9,["H784"]],[9,12,["H6049"]],[12,15,["H5172"]],[15,17,["H6213"]],[17,20,["H178"]],[20,22,["H3049"]],[22,24,["H6213"]],[24,25,["H7235"]],[25,26,["H7451"]],[26,29,["H5869"]],[29,32,["H3068"]],[32,37,["H3707"]]]},{"k":10126,"v":[[0,3,["H7760","(H853)"]],[3,6,["H6459"]],[6,9,["H842"]],[9,10,["H834"]],[10,13,["H6213"]],[13,16,["H1004"]],[16,18,["H834"]],[18,20,["H3068"]],[20,21,["H559"]],[21,22,["H413"]],[22,23,["H1732"]],[23,25,["H413"]],[25,26,["H8010"]],[26,28,["H1121"]],[28,30,["H2088"]],[30,31,["H1004"]],[31,34,["H3389"]],[34,35,["H834"]],[35,38,["H977"]],[38,41,["H4480","H3605"]],[41,42,["H7626"]],[42,44,["H3478"]],[44,47,["H7760","(H853)"]],[47,49,["H8034"]],[49,51,["H5769"]]]},{"k":10127,"v":[[0,1,["H3808"]],[1,6,["H7272"]],[6,8,["H3478"]],[8,9,["H5110"]],[9,11,["H3254"]],[11,13,["H4480"]],[13,15,["H127"]],[15,16,["H834"]],[16,18,["H5414"]],[18,20,["H1"]],[20,21,["H7535"]],[21,22,["H518"]],[22,25,["H8104"]],[25,27,["H6213"]],[27,30,["H3605"]],[30,31,["H834"]],[31,34,["H6680"]],[34,39,["H3605"]],[39,41,["H8451"]],[41,42,["H834"]],[42,44,["H5650"]],[44,45,["H4872"]],[45,46,["H6680"]],[46,47,[]]]},{"k":10128,"v":[[0,3,["H8085"]],[3,4,["H3808"]],[4,6,["H4519"]],[6,7,["H8582"]],[7,10,["H6213","(H853)"]],[10,12,["H7451"]],[12,13,["H4480"]],[13,16,["H1471"]],[16,17,["H834"]],[17,19,["H3068"]],[19,20,["H8045"]],[20,21,["H4480","H6440"]],[21,23,["H1121"]],[23,25,["H3478"]]]},{"k":10129,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H3027"]],[5,7,["H5650"]],[7,9,["H5030"]],[9,10,["H559"]]]},{"k":10130,"v":[[0,1,["H3282","H834"]],[1,2,["H4519"]],[2,3,["H4428"]],[3,5,["H3063"]],[5,7,["H6213"]],[7,8,["H428"]],[8,9,["H8441"]],[9,13,["H7489"]],[13,15,["H4480","H3605"]],[15,16,["H834"]],[16,18,["H567"]],[18,19,["H6213"]],[19,20,["H834"]],[20,22,["H6440"]],[22,26,["(H853)"]],[26,27,["H3063"]],[27,28,["H1571"]],[28,30,["H2398"]],[30,33,["H1544"]]]},{"k":10131,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H430"]],[6,8,["H3478"]],[8,9,["H2009"]],[9,12,["H935"]],[12,14,["H7451"]],[14,15,["H5921"]],[15,16,["H3389"]],[16,18,["H3063"]],[18,19,["H834"]],[19,20,["H3605"]],[20,21,["H8085"]],[21,24,["H8147"]],[24,26,["H241"]],[26,28,["H6750"]]]},{"k":10132,"v":[[0,4,["H5186"]],[4,5,["H5921"]],[5,6,["H3389","(H853)"]],[6,8,["H6957"]],[8,10,["H8111"]],[10,13,["H4949"]],[13,16,["H1004"]],[16,18,["H256"]],[18,22,["H4229","(H853)"]],[22,23,["H3389"]],[23,24,["H834"]],[24,27,["H4229","(H853)"]],[27,29,["H6747"]],[29,30,["H4229"]],[30,33,["H2015"]],[33,36,["H5921","H6440"]]]},{"k":10133,"v":[[0,4,["H5203","(H853)"]],[4,6,["H7611"]],[6,9,["H5159"]],[9,11,["H5414"]],[11,15,["H3027"]],[15,18,["H341"]],[18,22,["H1961"]],[22,24,["H957"]],[24,27,["H4933"]],[27,29,["H3605"]],[29,31,["H341"]]]},{"k":10134,"v":[[0,1,["H3282","H834"]],[1,4,["H6213"]],[4,7,["(H853)"]],[7,8,["H7451"]],[8,11,["H5869"]],[11,13,["H1961"]],[13,17,["H3707","(H853)"]],[17,18,["H4480"]],[18,20,["H3117"]],[20,22,["H1"]],[22,24,["H3318"]],[24,27,["H4480","H4714"]],[27,29,["H5704"]],[29,30,["H2088"]],[30,31,["H3117"]]]},{"k":10135,"v":[[0,1,["H1571"]],[1,2,["H4519"]],[2,3,["H8210"]],[3,4,["H5355"]],[4,5,["H1818"]],[5,6,["H3966"]],[6,7,["H7235"]],[7,8,["H5704","H834"]],[8,11,["H4390","(H853)"]],[11,12,["H3389"]],[12,15,["H6310"]],[15,17,["H6310"]],[17,20,["H905","H4480","H2403"]],[20,21,["H834"]],[21,26,["H2398","(H853)","H3063"]],[26,28,["H6213"]],[28,32,["H7451"]],[32,35,["H5869"]],[35,38,["H3068"]]]},{"k":10136,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H4519"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,16,["H2403"]],[16,17,["H834"]],[17,19,["H2398"]],[19,21,["H1992"]],[21,22,["H3808"]],[22,23,["H3789"]],[23,24,["H5921"]],[24,26,["H5612"]],[26,29,["H1697","H3117"]],[29,32,["H4428"]],[32,34,["H3063"]]]},{"k":10137,"v":[[0,2,["H4519"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,12,["H1588"]],[12,16,["H1004"]],[16,19,["H1588"]],[19,21,["H5798"]],[21,23,["H526"]],[23,25,["H1121"]],[25,26,["H4427"]],[26,29,["H8478"]]]},{"k":10138,"v":[[0,1,["H526"]],[1,3,["H6242"]],[3,5,["H8147"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H8147"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,22,["H517"]],[22,23,["H8034"]],[23,25,["H4922"]],[25,27,["H1323"]],[27,29,["H2743"]],[29,30,["H4480"]],[30,31,["H3192"]]]},{"k":10139,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,14,["H834"]],[14,16,["H1"]],[16,17,["H4519"]],[17,18,["H6213"]]]},{"k":10140,"v":[[0,3,["H1980"]],[3,5,["H3605"]],[5,7,["H1870"]],[7,8,["H834"]],[8,10,["H1"]],[10,12,["H1980"]],[12,14,["H5647","(H853)"]],[14,16,["H1544"]],[16,17,["H834"]],[17,19,["H1"]],[19,20,["H5647"]],[20,22,["H7812"]],[22,23,[]]]},{"k":10141,"v":[[0,3,["H5800","(H853)"]],[3,5,["H3068"]],[5,6,["H430"]],[6,9,["H1"]],[9,11,["H1980"]],[11,12,["H3808"]],[12,15,["H1870"]],[15,18,["H3068"]]]},{"k":10142,"v":[[0,3,["H5650"]],[3,5,["H526"]],[5,6,["H7194"]],[6,7,["H5921"]],[7,10,["H4191","(H853)"]],[10,12,["H4428"]],[12,16,["H1004"]]]},{"k":10143,"v":[[0,3,["H5971"]],[3,6,["H776"]],[6,7,["H5221","(H853)"]],[7,8,["H3605"]],[8,12,["H7194"]],[12,13,["H5921"]],[13,14,["H4428"]],[14,15,["H526"]],[15,18,["H5971"]],[18,21,["H776"]],[21,22,["(H853)"]],[22,23,["H2977"]],[23,25,["H1121"]],[25,26,["H4427"]],[26,29,["H8478"]]]},{"k":10144,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H526"]],[8,9,["H834"]],[9,11,["H6213"]],[11,13,["H1992"]],[13,14,["H3808"]],[14,15,["H3789"]],[15,16,["H5921"]],[16,18,["H5612"]],[18,21,["H1697","H3117"]],[21,24,["H4428"]],[24,26,["H3063"]]]},{"k":10145,"v":[[0,4,["H6912"]],[4,7,["H6900"]],[7,10,["H1588"]],[10,12,["H5798"]],[12,14,["H2977"]],[14,16,["H1121"]],[16,17,["H4427"]],[17,20,["H8478"]]]},{"k":10146,"v":[[0,1,["H2977"]],[1,3,["H8083"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,10,["H4427"]],[10,13,["H4427"]],[13,14,["H7970"]],[14,16,["H259"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,22,["H517"]],[22,23,["H8034"]],[23,25,["H3040"]],[25,27,["H1323"]],[27,29,["H5718"]],[29,31,["H4480","H1218"]]]},{"k":10147,"v":[[0,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H1980"]],[15,17,["H3605"]],[17,19,["H1870"]],[19,21,["H1732"]],[21,23,["H1"]],[23,27,["H3808","H5493"]],[27,31,["H3225"]],[31,35,["H8040"]]]},{"k":10148,"v":[[0,5,["H1961"]],[5,8,["H8083","H6240"]],[8,9,["H8141"]],[9,11,["H4428"]],[11,12,["H2977"]],[12,15,["H4428"]],[15,16,["H7971","(H853)"]],[16,17,["H8227"]],[17,19,["H1121"]],[19,21,["H683"]],[21,23,["H1121"]],[23,25,["H4918"]],[25,27,["H5608"]],[27,30,["H1004"]],[30,33,["H3068"]],[33,34,["H559"]]]},{"k":10149,"v":[[0,2,["H5927"]],[2,3,["H413"]],[3,4,["H2518"]],[4,6,["H1419"]],[6,7,["H3548"]],[7,11,["H8552","(H853)"]],[11,13,["H3701"]],[13,16,["H935"]],[16,19,["H1004"]],[19,22,["H3068"]],[22,23,["H834"]],[23,25,["H8104"]],[25,28,["H5592"]],[28,30,["H622"]],[30,31,["H4480","H854"]],[31,33,["H5971"]]]},{"k":10150,"v":[[0,4,["H5414"]],[4,6,["H5921"]],[6,8,["H3027"]],[8,11,["H6213"]],[11,14,["H4399"]],[14,18,["H6485"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,28,["H5414"]],[28,32,["H6213"]],[32,35,["H4399"]],[35,36,["H834"]],[36,40,["H1004"]],[40,43,["H3068"]],[43,45,["H2388"]],[45,47,["H919"]],[47,50,["H1004"]]]},{"k":10151,"v":[[0,2,["H2796"]],[2,4,["H1129"]],[4,6,["H1443"]],[6,9,["H7069"]],[9,10,["H6086"]],[10,12,["H4274"]],[12,13,["H68"]],[13,15,["H2388","(H853)"]],[15,17,["H1004"]]]},{"k":10152,"v":[[0,1,["H389"]],[1,4,["H3808"]],[4,5,["H2803"]],[5,7,["H854"]],[7,11,["H3701"]],[11,14,["H5414"]],[14,15,["H5921"]],[15,17,["H3027"]],[17,18,["H3588"]],[18,19,["H1992"]],[19,20,["H6213"]],[20,21,["H530"]]]},{"k":10153,"v":[[0,2,["H2518"]],[2,4,["H1419"]],[4,5,["H3548"]],[5,6,["H559"]],[6,7,["H5921"]],[7,8,["H8227"]],[8,10,["H5608"]],[10,13,["H4672"]],[13,15,["H5612"]],[15,18,["H8451"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,26,["H2518"]],[26,27,["H5414","(H853)"]],[27,29,["H5612"]],[29,30,["H413"]],[30,31,["H8227"]],[31,34,["H7121"]],[34,35,[]]]},{"k":10154,"v":[[0,2,["H8227"]],[2,4,["H5608"]],[4,5,["H935"]],[5,6,["H413"]],[6,8,["H4428"]],[8,14,["H7725","(H853)","H4428","H1697"]],[14,16,["H559"]],[16,18,["H5650"]],[18,20,["H5413","(H853)"]],[20,22,["H3701"]],[22,25,["H4672"]],[25,28,["H1004"]],[28,31,["H5414"]],[31,33,["H5921"]],[33,35,["H3027"]],[35,39,["H6213"]],[39,41,["H4399"]],[41,45,["H6485"]],[45,48,["H1004"]],[48,51,["H3068"]]]},{"k":10155,"v":[[0,2,["H8227"]],[2,4,["H5608"]],[4,5,["H5046"]],[5,7,["H4428"]],[7,8,["H559"]],[8,9,["H2518"]],[9,11,["H3548"]],[11,13,["H5414"]],[13,16,["H5612"]],[16,18,["H8227"]],[18,19,["H7121"]],[19,21,["H6440"]],[21,23,["H4428"]]]},{"k":10156,"v":[[0,5,["H1961"]],[5,8,["H4428"]],[8,10,["H8085","(H853)"]],[10,12,["H1697"]],[12,15,["H5612"]],[15,18,["H8451"]],[18,21,["H7167","(H853)"]],[21,23,["H899"]]]},{"k":10157,"v":[[0,3,["H4428"]],[3,4,["H6680","(H853)"]],[4,5,["H2518"]],[5,7,["H3548"]],[7,9,["H296"]],[9,11,["H1121"]],[11,13,["H8227"]],[13,15,["H5907"]],[15,17,["H1121"]],[17,19,["H4320"]],[19,21,["H8227"]],[21,23,["H5608"]],[23,25,["H6222"]],[25,27,["H5650"]],[27,30,["H4428"]],[30,31,["H559"]]]},{"k":10158,"v":[[0,1,["H1980"]],[1,3,["H1875"]],[3,4,["(H853)"]],[4,6,["H3068"]],[6,7,["H1157"]],[7,10,["H1157"]],[10,12,["H5971"]],[12,14,["H1157"]],[14,15,["H3605"]],[15,16,["H3063"]],[16,17,["H5921"]],[17,19,["H1697"]],[19,21,["H2088"]],[21,22,["H5612"]],[22,25,["H4672"]],[25,26,["H3588"]],[26,27,["H1419"]],[27,30,["H2534"]],[30,33,["H3068"]],[33,34,["H834"]],[34,36,["H3341"]],[36,39,["H5921","H834"]],[39,41,["H1"]],[41,43,["H3808"]],[43,44,["H8085"]],[44,45,["H5921"]],[45,47,["H1697"]],[47,49,["H2088"]],[49,50,["H5612"]],[50,52,["H6213"]],[52,55,["H3605"]],[55,59,["H3789"]],[59,60,["H5921"]],[60,61,[]]]},{"k":10159,"v":[[0,2,["H2518"]],[2,4,["H3548"]],[4,6,["H296"]],[6,8,["H5907"]],[8,10,["H8227"]],[10,12,["H6222"]],[12,13,["H1980"]],[13,14,["H413"]],[14,15,["H2468"]],[15,17,["H5031"]],[17,19,["H802"]],[19,21,["H7967"]],[21,23,["H1121"]],[23,25,["H8616"]],[25,27,["H1121"]],[27,29,["H2745"]],[29,30,["H8104"]],[30,33,["H899"]],[33,35,["H1931"]],[35,36,["H3427"]],[36,38,["H3389"]],[38,41,["H4932"]],[41,44,["H1696"]],[44,45,["H413"]],[45,46,[]]]},{"k":10160,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,10,["H430"]],[10,12,["H3478"]],[12,13,["H559"]],[13,15,["H376"]],[15,16,["H834"]],[16,17,["H7971"]],[17,19,["H413"]],[19,20,[]]]},{"k":10161,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H2009"]],[5,8,["H935"]],[8,9,["H7451"]],[9,10,["H413"]],[10,11,["H2088"]],[11,12,["H4725"]],[12,14,["H5921"]],[14,16,["H3427"]],[16,18,["(H853)"]],[18,19,["H3605"]],[19,21,["H1697"]],[21,24,["H5612"]],[24,25,["H834"]],[25,27,["H4428"]],[27,29,["H3063"]],[29,31,["H7121"]]]},{"k":10162,"v":[[0,1,["H8478","H834"]],[1,4,["H5800"]],[4,9,["H6999"]],[9,11,["H312"]],[11,12,["H430"]],[12,13,["H4616"]],[13,19,["H3707"]],[19,21,["H3605"]],[21,23,["H4639"]],[23,26,["H3027"]],[26,29,["H2534"]],[29,32,["H3341"]],[32,34,["H2088"]],[34,35,["H4725"]],[35,38,["H3808"]],[38,40,["H3518"]]]},{"k":10163,"v":[[0,2,["H413"]],[2,4,["H4428"]],[4,6,["H3063"]],[6,8,["H7971"]],[8,11,["H1875"]],[11,12,["(H853)"]],[12,14,["H3068"]],[14,15,["H3541"]],[15,18,["H559"]],[18,19,["H413"]],[19,21,["H3541"]],[21,22,["H559"]],[22,24,["H3068"]],[24,25,["H430"]],[25,27,["H3478"]],[27,31,["H1697"]],[31,32,["H834"]],[32,35,["H8085"]]]},{"k":10164,"v":[[0,1,["H3282"]],[1,3,["H3824"]],[3,5,["H7401"]],[5,10,["H3665"]],[10,11,["H4480","H6440"]],[11,13,["H3068"]],[13,16,["H8085"]],[16,17,["H834"]],[17,19,["H1696"]],[19,20,["H5921"]],[20,21,["H2088"]],[21,22,["H4725"]],[22,24,["H5921"]],[24,26,["H3427"]],[26,31,["H1961"]],[31,33,["H8047"]],[33,36,["H7045"]],[36,39,["H7167","(H853)"]],[39,41,["H899"]],[41,43,["H1058"]],[43,44,["H6440"]],[44,46,["H595"]],[46,47,["H1571"]],[47,49,["H8085"]],[49,51,["H5002"]],[51,53,["H3068"]]]},{"k":10165,"v":[[0,1,["H2009"]],[1,2,["H3651"]],[2,5,["H622"]],[5,7,["H5921"]],[7,9,["H1"]],[9,14,["H622"]],[14,15,["H413"]],[15,17,["H6913"]],[17,19,["H7965"]],[19,22,["H5869"]],[22,24,["H3808"]],[24,25,["H7200"]],[25,26,["H3605"]],[26,28,["H7451"]],[28,29,["H834"]],[29,30,["H589"]],[30,32,["H935"]],[32,33,["H5921"]],[33,34,["H2088"]],[34,35,["H4725"]],[35,38,["H7725","(H853)"]],[38,40,["H4428"]],[40,41,["H1697"]],[41,42,[]]]},{"k":10166,"v":[[0,3,["H4428"]],[3,4,["H7971"]],[4,7,["H622"]],[7,8,["H413"]],[8,10,["H3605"]],[10,12,["H2205"]],[12,14,["H3063"]],[14,17,["H3389"]]]},{"k":10167,"v":[[0,3,["H4428"]],[3,5,["H5927"]],[5,8,["H1004"]],[8,11,["H3068"]],[11,13,["H3605"]],[13,15,["H376"]],[15,17,["H3063"]],[17,19,["H3605"]],[19,21,["H3427"]],[21,23,["H3389"]],[23,24,["H854"]],[24,28,["H3548"]],[28,31,["H5030"]],[31,33,["H3605"]],[33,35,["H5971"]],[35,37,["H4480","H6996"]],[37,39,["H1419"]],[39,42,["H7121"]],[42,45,["H241","(H853)"]],[45,46,["H3605"]],[46,48,["H1697"]],[48,51,["H5612"]],[51,54,["H1285"]],[54,57,["H4672"]],[57,60,["H1004"]],[60,63,["H3068"]]]},{"k":10168,"v":[[0,3,["H4428"]],[3,4,["H5975"]],[4,5,["H5921"]],[5,7,["H5982"]],[7,9,["H3772","(H853)"]],[9,11,["H1285"]],[11,12,["H6440"]],[12,14,["H3068"]],[14,16,["H1980"]],[16,17,["H310"]],[17,19,["H3068"]],[19,22,["H8104"]],[22,24,["H4687"]],[24,27,["H5715"]],[27,30,["H2708"]],[30,32,["H3605"]],[32,34,["H3820"]],[34,36,["H3605"]],[36,38,["H5315"]],[38,40,["H6965","(H853)"]],[40,42,["H1697"]],[42,44,["H2063"]],[44,45,["H1285"]],[45,48,["H3789"]],[48,49,["H5921"]],[49,50,["H2088"]],[50,51,["H5612"]],[51,53,["H3605"]],[53,55,["H5971"]],[55,56,["H5975"]],[56,59,["H1285"]]]},{"k":10169,"v":[[0,3,["H4428"]],[3,4,["H6680","(H853)"]],[4,5,["H2518"]],[5,7,["H1419"]],[7,8,["H3548"]],[8,11,["H3548"]],[11,15,["H4932"]],[15,18,["H8104"]],[18,21,["H5592"]],[21,24,["H3318"]],[24,28,["H4480","H1964"]],[28,31,["H3068","(H853)"]],[31,32,["H3605"]],[32,34,["H3627"]],[34,37,["H6213"]],[37,39,["H1168"]],[39,43,["H842"]],[43,46,["H3605"]],[46,48,["H6635"]],[48,50,["H8064"]],[50,53,["H8313"]],[53,55,["H4480","H2351"]],[55,56,["H3389"]],[56,59,["H7709"]],[59,61,["H6939"]],[61,63,["H5375","(H853)"]],[63,65,["H6083"]],[65,69,["H1008"]]]},{"k":10170,"v":[[0,4,["H7673","(H853)"]],[4,7,["H3649"]],[7,8,["H834"]],[8,10,["H4428"]],[10,12,["H3063"]],[12,14,["H5414"]],[14,17,["H6999"]],[17,21,["H1116"]],[21,24,["H5892"]],[24,26,["H3063"]],[26,32,["H4524"]],[32,33,["H3389"]],[33,38,["H6999"]],[38,40,["H1168"]],[40,43,["H8121"]],[43,47,["H3394"]],[47,51,["H4208"]],[51,54,["H3605"]],[54,56,["H6635"]],[56,58,["H8064"]]]},{"k":10171,"v":[[0,4,["H3318","(H853)"]],[4,6,["H842"]],[6,9,["H4480","H1004"]],[9,12,["H3068"]],[12,13,["H4480","H2351"]],[13,14,["H3389"]],[14,15,["H413"]],[15,17,["H5158"]],[17,18,["H6939"]],[18,20,["H8313"]],[20,24,["H5158"]],[24,25,["H6939"]],[25,29,["H1854"]],[29,31,["H6083"]],[31,33,["H7993","(H853)"]],[33,35,["H6083"]],[35,37,["H5921"]],[37,39,["H6913"]],[39,42,["H1121"]],[42,45,["H5971"]]]},{"k":10172,"v":[[0,4,["H5422","(H853)"]],[4,6,["H1004"]],[6,9,["H6945"]],[9,10,["H834"]],[10,14,["H1004"]],[14,17,["H3068"]],[17,18,["H834","H8033"]],[18,20,["H802"]],[20,21,["H707"]],[21,22,["H1004"]],[22,25,["H842"]]]},{"k":10173,"v":[[0,3,["H935","(H853)"]],[3,4,["H3605"]],[4,6,["H3548"]],[6,10,["H4480","H5892"]],[10,12,["H3063"]],[12,14,["H2930","(H853)"]],[14,17,["H1116"]],[17,18,["H834","H8033"]],[18,20,["H3548"]],[20,23,["H6999"]],[23,25,["H4480","H1387"]],[25,26,["H5704"]],[26,27,["H884"]],[27,30,["H5422","(H853)"]],[30,33,["H1116"]],[33,36,["H8179"]],[36,37,["H834"]],[37,42,["H6607"]],[42,45,["H8179"]],[45,47,["H3091"]],[47,49,["H8269"]],[49,52,["H5892"]],[52,53,["H834"]],[53,55,["H5921"]],[55,57,["H376"]],[57,59,["H8040"]],[59,62,["H8179"]],[62,65,["H5892"]]]},{"k":10174,"v":[[0,1,["H389"]],[1,3,["H3548"]],[3,7,["H1116"]],[7,10,["H5927","H3808"]],[10,11,["H413"]],[11,13,["H4196"]],[13,16,["H3068"]],[16,18,["H3389"]],[18,19,["H3588","H518"]],[19,22,["H398"]],[22,26,["H4682"]],[26,27,["H8432"]],[27,29,["H251"]]]},{"k":10175,"v":[[0,3,["H2930","(H853)"]],[3,4,["H8612"]],[4,5,["H834"]],[5,9,["H1516"]],[9,12,["H1121"]],[12,14,["H2011"]],[14,16,["H1115"]],[16,17,["H376"]],[17,19,["(H853)"]],[19,21,["H1121"]],[21,24,["H1323"]],[24,27,["H5674"]],[27,29,["H784"]],[29,31,["H4432"]]]},{"k":10176,"v":[[0,4,["H7673","(H853)"]],[4,6,["H5483"]],[6,7,["H834"]],[7,9,["H4428"]],[9,11,["H3063"]],[11,13,["H5414"]],[13,16,["H8121"]],[16,20,["H4480","H935"]],[20,23,["H1004"]],[23,26,["H3068"]],[26,27,["H413"]],[27,29,["H3957"]],[29,31,["H5419"]],[31,33,["H5631"]],[33,34,["H834"]],[34,38,["H6503"]],[38,40,["H8313"]],[40,42,["H4818"]],[42,45,["H8121"]],[45,47,["H784"]]]},{"k":10177,"v":[[0,3,["H4196"]],[3,4,["H834"]],[4,6,["H5921"]],[6,8,["H1406"]],[8,12,["H5944"]],[12,14,["H271"]],[14,15,["H834"]],[15,17,["H4428"]],[17,19,["H3063"]],[19,21,["H6213"]],[21,24,["H4196"]],[24,25,["H834"]],[25,26,["H4519"]],[26,28,["H6213"]],[28,31,["H8147"]],[31,32,["H2691"]],[32,35,["H1004"]],[35,38,["H3068"]],[38,41,["H4428"]],[41,43,["H5422"]],[43,47,["H7323"]],[47,49,["H4480","H8033"]],[49,51,["H7993","(H853)"]],[51,53,["H6083"]],[53,56,["H413"]],[56,58,["H5158"]],[58,59,["H6939"]]]},{"k":10178,"v":[[0,4,["H1116"]],[4,5,["H834"]],[5,7,["H5921","H6440"]],[7,8,["H3389"]],[8,9,["H834"]],[9,14,["H4480","H3225"]],[14,17,["H2022"]],[17,19,["H4889"]],[19,20,["H834"]],[20,21,["H8010"]],[21,23,["H4428"]],[23,25,["H3478"]],[25,27,["H1129"]],[27,29,["H6253"]],[29,31,["H8251"]],[31,34,["H6722"]],[34,37,["H3645"]],[37,39,["H8251"]],[39,42,["H4124"]],[42,45,["H4445"]],[45,47,["H8441"]],[47,50,["H1121"]],[50,52,["H5983"]],[52,55,["H4428"]],[55,56,["H2930"]]]},{"k":10179,"v":[[0,5,["H7665","(H853)"]],[5,7,["H4676"]],[7,10,["H3772","(H853)"]],[10,12,["H842"]],[12,14,["H4390","(H853)"]],[14,16,["H4725"]],[16,19,["H6106"]],[19,21,["H120"]]]},{"k":10180,"v":[[0,1,["H1571","(H853)"]],[1,3,["H4196"]],[3,4,["H834"]],[4,7,["H1008"]],[7,11,["H1116"]],[11,12,["H834"]],[12,13,["H3379"]],[13,15,["H1121"]],[15,17,["H5028"]],[17,18,["H834"]],[18,19,["(H853)"]],[19,20,["H3478"]],[20,22,["H2398"]],[22,24,["H6213"]],[24,25,["H1571","(H853)"]],[25,26,["H1931"]],[26,27,["H4196"]],[27,31,["H1116"]],[31,34,["H5422"]],[34,36,["H8313","(H853)"]],[36,39,["H1116"]],[39,43,["H1854"]],[43,45,["H6083"]],[45,47,["H8313"]],[47,49,["H842"]]]},{"k":10181,"v":[[0,3,["H2977"]],[3,4,["H6437"]],[4,7,["H7200","(H853)"]],[7,9,["H6913"]],[9,10,["H834"]],[10,12,["H8033"]],[12,15,["H2022"]],[15,17,["H7971"]],[17,19,["H3947","(H853)"]],[19,21,["H6106"]],[21,23,["H4480"]],[23,25,["H6913"]],[25,27,["H8313"]],[27,29,["H5921"]],[29,31,["H4196"]],[31,33,["H2930"]],[33,38,["H1697"]],[38,41,["H3068"]],[41,42,["H834"]],[42,44,["H376"]],[44,46,["H430"]],[46,47,["H7121"]],[47,48,["H834"]],[48,49,["H7121","(H853)"]],[49,50,["H428"]],[50,51,["H1697"]]]},{"k":10182,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,5,["H6725"]],[5,7,["H1975"]],[7,8,["H834"]],[8,9,["H589"]],[9,10,["H7200"]],[10,13,["H376"]],[13,16,["H5892"]],[16,17,["H559","H413"]],[17,22,["H6913"]],[22,25,["H376"]],[25,27,["H430"]],[27,28,["H834"]],[28,29,["H935"]],[29,31,["H4480","H3063"]],[31,33,["H7121","(H853)"]],[33,34,["H428"]],[34,35,["H1697"]],[35,36,["H834"]],[36,39,["H6213"]],[39,40,["H5921"]],[40,42,["H4196"]],[42,44,["H1008"]]]},{"k":10183,"v":[[0,3,["H559"]],[3,6,["H5117"]],[6,8,["H408"]],[8,9,["H376"]],[9,10,["H5128"]],[10,12,["H6106"]],[12,18,["H4422","H6106"]],[18,19,["H854"]],[19,21,["H6106"]],[21,24,["H5030"]],[24,25,["H834"]],[25,26,["H935"]],[26,29,["H4480","H8111"]]]},{"k":10184,"v":[[0,1,["(H853)"]],[1,2,["H3605"]],[2,4,["H1004"]],[4,5,["H1571"]],[5,9,["H1116"]],[9,10,["H834"]],[10,14,["H5892"]],[14,16,["H8111"]],[16,17,["H834"]],[17,19,["H4428"]],[19,21,["H3478"]],[21,23,["H6213"]],[23,29,["H3707"]],[29,30,["H2977"]],[30,32,["H5493"]],[32,34,["H6213"]],[34,39,["H3605"]],[39,41,["H4639"]],[41,42,["H834"]],[42,45,["H6213"]],[45,47,["H1008"]]]},{"k":10185,"v":[[0,3,["H2076","(H853)"]],[3,4,["H3605"]],[4,6,["H3548"]],[6,10,["H1116"]],[10,11,["H834"]],[11,13,["H8033"]],[13,14,["H5921"]],[14,16,["H4196"]],[16,18,["H8313","(H853)"]],[18,19,["H120"]],[19,20,["H6106"]],[20,21,["H5921"]],[21,24,["H7725"]],[24,26,["H3389"]]]},{"k":10186,"v":[[0,3,["H4428"]],[3,4,["H6680","(H853)"]],[4,5,["H3605"]],[5,7,["H5971"]],[7,8,["H559"]],[8,9,["H6213"]],[9,11,["H6453"]],[11,14,["H3068"]],[14,16,["H430"]],[16,20,["H3789"]],[20,21,["H5921"]],[21,23,["H5612"]],[23,25,["H2088"]],[25,26,["H1285"]]]},{"k":10187,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H6213"]],[5,6,["H2088"]],[6,8,["H6453"]],[8,11,["H4480","H3117"]],[11,14,["H8199"]],[14,15,["H834"]],[15,16,["H8199","(H853)"]],[16,17,["H3478"]],[17,20,["H3605"]],[20,22,["H3117"]],[22,25,["H4428"]],[25,27,["H3478"]],[27,31,["H4428"]],[31,33,["H3063"]]]},{"k":10188,"v":[[0,1,["H3588","H518"]],[1,4,["H8083","H6240"]],[4,5,["H8141"]],[5,7,["H4428"]],[7,8,["H2977"]],[8,10,["H2088"]],[10,11,["H6453"]],[11,13,["H6213"]],[13,16,["H3068"]],[16,18,["H3389"]]]},{"k":10189,"v":[[0,1,["H1571","(H853)"]],[1,6,["H178"]],[6,9,["H3049"]],[9,12,["H8655"]],[12,15,["H1544"]],[15,17,["H3605"]],[17,19,["H8251"]],[19,20,["H834"]],[20,22,["H7200"]],[22,25,["H776"]],[25,27,["H3063"]],[27,30,["H3389"]],[30,32,["H2977"]],[32,34,["H1197"]],[34,35,["H4616"]],[35,38,["H6965","(H853)"]],[38,40,["H1697"]],[40,43,["H8451"]],[43,46,["H3789"]],[46,47,["H5921"]],[47,49,["H5612"]],[49,50,["H834"]],[50,51,["H2518"]],[51,53,["H3548"]],[53,54,["H4672"]],[54,57,["H1004"]],[57,60,["H3068"]]]},{"k":10190,"v":[[0,4,["H3644"]],[4,5,["H1961"]],[5,7,["H3808"]],[7,8,["H4428"]],[8,9,["H6440"]],[9,11,["H834"]],[11,12,["H7725"]],[12,13,["H413"]],[13,15,["H3068"]],[15,17,["H3605"]],[17,19,["H3824"]],[19,22,["H3605"]],[22,24,["H5315"]],[24,27,["H3605"]],[27,29,["H3966"]],[29,32,["H3605"]],[32,34,["H8451"]],[34,36,["H4872"]],[36,37,["H3808"]],[37,38,["H310"]],[38,40,["H6965"]],[40,44,["H3644"]]]},{"k":10191,"v":[[0,1,["H389"]],[1,3,["H3068"]],[3,4,["H7725"]],[4,5,["H3808"]],[5,8,["H4480","H2740"]],[8,11,["H1419"]],[11,12,["H639"]],[12,13,["H834"]],[13,15,["H639"]],[15,17,["H2734"]],[17,19,["H3063"]],[19,20,["H5921"]],[20,22,["H3605"]],[22,24,["H3708"]],[24,25,["H834"]],[25,26,["H4519"]],[26,28,["H3707"]],[28,30,[]]]},{"k":10192,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,7,["H5493","(H853)"]],[7,8,["H3063"]],[8,9,["H1571"]],[9,11,["H4480","H5921"]],[11,13,["H6440"]],[13,14,["H834"]],[14,17,["H5493","(H853)"]],[17,18,["H3478"]],[18,22,["H3988","(H853)"]],[22,23,["H2063"]],[23,24,["H5892","(H853)"]],[24,25,["H3389"]],[25,26,["H834"]],[26,29,["H977"]],[29,32,["H1004"]],[32,34,["H834"]],[34,36,["H559"]],[36,38,["H8034"]],[38,40,["H1961"]],[40,41,["H8033"]]]},{"k":10193,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H2977"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3063"]]]},{"k":10194,"v":[[0,3,["H3117"]],[3,4,["H6549"]],[4,5,["H4428"]],[5,7,["H4714"]],[7,9,["H5927"]],[9,10,["H5921"]],[10,12,["H4428"]],[12,14,["H804"]],[14,15,["H5921"]],[15,17,["H5104"]],[17,18,["H6578"]],[18,20,["H4428"]],[20,21,["H2977"]],[21,22,["H1980"]],[22,23,["H7122"]],[23,27,["H4191"]],[27,30,["H4023"]],[30,34,["H7200"]],[34,35,[]]]},{"k":10195,"v":[[0,3,["H5650"]],[3,4,["H7392"]],[4,9,["H4191"]],[9,11,["H4480","H4023"]],[11,13,["H935"]],[13,16,["H3389"]],[16,18,["H6912"]],[18,23,["H6900"]],[23,26,["H5971"]],[26,29,["H776"]],[29,30,["H3947","(H853)"]],[30,31,["H3059"]],[31,33,["H1121"]],[33,35,["H2977"]],[35,37,["H4886"]],[37,42,["H4427","(H853)"]],[42,46,["H8478","H1"]]]},{"k":10196,"v":[[0,1,["H3059"]],[1,3,["H6242"]],[3,5,["H7969"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H7969"]],[16,17,["H2320"]],[17,19,["H3389"]],[19,22,["H517"]],[22,23,["H8034"]],[23,25,["H2537"]],[25,27,["H1323"]],[27,29,["H3414"]],[29,31,["H4480","H3841"]]]},{"k":10197,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3605"]],[16,17,["H834"]],[17,19,["H1"]],[19,21,["H6213"]]]},{"k":10198,"v":[[0,2,["H6549"]],[2,6,["H631"]],[6,8,["H7247"]],[8,11,["H776"]],[11,13,["H2574"]],[13,18,["H4480","H4427"]],[18,20,["H3389"]],[20,22,["H5414","H5921"]],[22,24,["H776"]],[24,27,["H6066"]],[27,30,["H3967"]],[30,31,["H3603"]],[31,33,["H3701"]],[33,36,["H3603"]],[36,38,["H2091"]]]},{"k":10199,"v":[[0,2,["H6549"]],[2,3,["H4427","(H853)"]],[3,4,["H471"]],[4,6,["H1121"]],[6,8,["H2977"]],[8,9,["H4427"]],[9,12,["H8478"]],[12,14,["H2977"]],[14,16,["H1"]],[16,18,["H5437","(H853)"]],[18,20,["H8034"]],[20,22,["H3079"]],[22,24,["H3947"]],[24,25,["H3059"]],[25,29,["H935"]],[29,31,["H4714"]],[31,33,["H4191"]],[33,34,["H8033"]]]},{"k":10200,"v":[[0,2,["H3079"]],[2,3,["H5414"]],[3,5,["H3701"]],[5,8,["H2091"]],[8,10,["H6547"]],[10,11,["H389"]],[11,13,["H6186","(H853)"]],[13,15,["H776"]],[15,17,["H5414","(H853)"]],[17,19,["H3701"]],[19,20,["H5921"]],[20,23,["H6310"]],[23,25,["H6547"]],[25,27,["H5065","(H853)"]],[27,29,["H3701"]],[29,32,["H2091"]],[32,33,["(H853)"]],[33,35,["H5971"]],[35,38,["H776"]],[38,41,["H376"]],[41,45,["H6187"]],[45,47,["H5414"]],[47,50,["H6549"]]]},{"k":10201,"v":[[0,1,["H3079"]],[1,3,["H6242"]],[3,5,["H2568"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H259","H6240"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,22,["H517"]],[22,23,["H8034"]],[23,25,["H2080"]],[25,27,["H1323"]],[27,29,["H6305"]],[29,30,["H4480"]],[30,31,["H7316"]]]},{"k":10202,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3605"]],[16,17,["H834"]],[17,19,["H1"]],[19,21,["H6213"]]]},{"k":10203,"v":[[0,3,["H3117"]],[3,4,["H5019"]],[4,5,["H4428"]],[5,7,["H894"]],[7,9,["H5927"]],[9,11,["H3079"]],[11,12,["H1961"]],[12,14,["H5650"]],[14,15,["H7969"]],[15,16,["H8141"]],[16,19,["H7725"]],[19,21,["H4775"]],[21,23,[]]]},{"k":10204,"v":[[0,3,["H3068"]],[3,4,["H7971"]],[4,6,["(H853)"]],[6,7,["H1416"]],[7,10,["H3778"]],[10,12,["H1416"]],[12,15,["H758"]],[15,17,["H1416"]],[17,20,["H4124"]],[20,22,["H1416"]],[22,25,["H1121"]],[25,27,["H5983"]],[27,29,["H7971"]],[29,32,["H3063"]],[32,34,["H6"]],[34,39,["H1697"]],[39,42,["H3068"]],[42,43,["H834"]],[43,45,["H1696"]],[45,46,["H3027"]],[46,48,["H5650"]],[48,50,["H5030"]]]},{"k":10205,"v":[[0,1,["H389"]],[1,2,["H5921"]],[2,4,["H6310"]],[4,7,["H3068"]],[7,8,["H1961"]],[8,11,["H3063"]],[11,13,["H5493"]],[13,16,["H4480","H5921"]],[16,18,["H6440"]],[18,21,["H2403"]],[21,23,["H4519"]],[23,26,["H3605"]],[26,27,["H834"]],[27,29,["H6213"]]]},{"k":10206,"v":[[0,2,["H1571"]],[2,5,["H5355"]],[5,6,["H1818"]],[6,7,["H834"]],[7,9,["H8210"]],[9,12,["H4390","(H853)"]],[12,13,["H3389"]],[13,15,["H5355"]],[15,16,["H1818"]],[16,19,["H3068"]],[19,20,["H14"]],[20,21,["H3808"]],[21,22,["H5545"]]]},{"k":10207,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3079"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3063"]]]},{"k":10208,"v":[[0,2,["H3079"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,8,["H3078"]],[8,10,["H1121"]],[10,11,["H4427"]],[11,14,["H8478"]]]},{"k":10209,"v":[[0,3,["H4428"]],[3,5,["H4714"]],[5,6,["H3318"]],[6,7,["H3808"]],[7,8,["H3254"]],[8,10,["H5750"]],[10,14,["H4480","H776"]],[14,15,["H3588"]],[15,17,["H4428"]],[17,19,["H894"]],[19,21,["H3947"]],[21,24,["H4480","H5104"]],[24,26,["H4714"]],[26,27,["H5704"]],[27,29,["H4480","H5158"]],[29,30,["H6578"]],[30,31,["H3605"]],[31,32,["H834"]],[32,33,["H1961"]],[33,36,["H4428"]],[36,38,["H4714"]]]},{"k":10210,"v":[[0,1,["H3078"]],[1,3,["H8083","H6240"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,10,["H4427"]],[10,13,["H4427"]],[13,15,["H3389"]],[15,16,["H7969"]],[16,17,["H2320"]],[17,20,["H517"]],[20,21,["H8034"]],[21,23,["H5179"]],[23,25,["H1323"]],[25,27,["H494"]],[27,29,["H4480","H3389"]]]},{"k":10211,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3605"]],[16,17,["H834"]],[17,19,["H1"]],[19,21,["H6213"]]]},{"k":10212,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,5,["H5650"]],[5,7,["H5019"]],[7,8,["H4428"]],[8,10,["H894"]],[10,12,["H5927"]],[12,14,["H3389"]],[14,17,["H5892"]],[17,19,["H935","H4692"]]]},{"k":10213,"v":[[0,2,["H5019"]],[2,3,["H4428"]],[3,5,["H894"]],[5,6,["H935"]],[6,7,["H5921"]],[7,9,["H5892"]],[9,12,["H5650"]],[12,14,["H6696","H5921"]],[14,15,[]]]},{"k":10214,"v":[[0,2,["H3078"]],[2,4,["H4428"]],[4,6,["H3063"]],[6,8,["H3318"]],[8,9,["H5921"]],[9,11,["H4428"]],[11,13,["H894"]],[13,14,["H1931"]],[14,17,["H517"]],[17,20,["H5650"]],[20,23,["H8269"]],[23,26,["H5631"]],[26,29,["H4428"]],[29,31,["H894"]],[31,32,["H3947"]],[32,36,["H8083"]],[36,37,["H8141"]],[37,40,["H4427"]]]},{"k":10215,"v":[[0,4,["H3318"]],[4,5,["H4480","H8033","(H853)"]],[5,6,["H3605"]],[6,8,["H214"]],[8,11,["H1004"]],[11,14,["H3068"]],[14,17,["H214"]],[17,20,["H4428"]],[20,21,["H1004"]],[21,25,["H7112","(H853)"]],[25,26,["H3605"]],[26,28,["H3627"]],[28,30,["H2091"]],[30,31,["H834"]],[31,32,["H8010"]],[32,33,["H4428"]],[33,35,["H3478"]],[35,37,["H6213"]],[37,40,["H1964"]],[40,43,["H3068"]],[43,44,["H834"]],[44,46,["H3068"]],[46,48,["H1696"]]]},{"k":10216,"v":[[0,4,["H1540","(H853)"]],[4,5,["H3605"]],[5,6,["H3389"]],[6,8,["H3605"]],[8,10,["H8269"]],[10,12,["H3605"]],[12,15,["H1368"]],[15,17,["H2428"]],[17,19,["H6235"]],[19,20,["H505"]],[20,21,["H1540"]],[21,23,["H3605"]],[23,25,["H2796"]],[25,27,["H4525"]],[27,28,["H3808"]],[28,29,["H7604"]],[29,30,["H2108"]],[30,33,["H1803"]],[33,36,["H5971"]],[36,39,["H776"]]]},{"k":10217,"v":[[0,4,["H1540","(H853)"]],[4,5,["H3078"]],[5,7,["H894"]],[7,10,["H4428"]],[10,11,["H517"]],[11,14,["H4428"]],[14,15,["H802"]],[15,18,["H5631"]],[18,21,["H352"]],[21,24,["H776"]],[24,26,["H1980"]],[26,29,["H1473"]],[29,31,["H4480","H3389"]],[31,33,["H894"]]]},{"k":10218,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,6,["H2428"]],[6,8,["H7651"]],[8,9,["H505"]],[9,11,["H2796"]],[11,13,["H4525"]],[13,15,["H505"]],[15,16,["H3605"]],[16,19,["H1368"]],[19,21,["H6213"]],[21,23,["H4421"]],[23,27,["H4428"]],[27,29,["H894"]],[29,30,["H935"]],[30,31,["H1473"]],[31,33,["H894"]]]},{"k":10219,"v":[[0,3,["H4428"]],[3,5,["H894"]],[5,6,["H4427","(H853)"]],[6,7,["H4983"]],[7,10,["H1730"]],[10,11,["H4427"]],[11,14,["H8478"]],[14,16,["H5437","(H853)"]],[16,18,["H8034"]],[18,20,["H6667"]]]},{"k":10220,"v":[[0,1,["H6667"]],[1,3,["H6242"]],[3,5,["H259"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H259","H6240"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,22,["H517"]],[22,23,["H8034"]],[23,25,["H2537"]],[25,27,["H1323"]],[27,29,["H3414"]],[29,31,["H4480","H3841"]]]},{"k":10221,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3605"]],[16,17,["H834"]],[17,18,["H3079"]],[18,20,["H6213"]]]},{"k":10222,"v":[[0,1,["H3588"]],[1,2,["H5921"]],[2,4,["H639"]],[4,7,["H3068"]],[7,11,["H1961"]],[11,13,["H3389"]],[13,15,["H3063"]],[15,16,["H5704"]],[16,21,["H7993","(H853)"]],[21,22,["H4480","H5921"]],[22,24,["H6440"]],[24,26,["H6667"]],[26,27,["H4775"]],[27,30,["H4428"]],[30,32,["H894"]]]},{"k":10223,"v":[[0,5,["H1961"]],[5,8,["H8671"]],[8,9,["H8141"]],[9,12,["H4427"]],[12,15,["H6224"]],[15,16,["H2320"]],[16,19,["H6218"]],[19,23,["H2320"]],[23,25,["H5019"]],[25,26,["H4428"]],[26,28,["H894"]],[28,29,["H935"]],[29,30,["H1931"]],[30,32,["H3605"]],[32,34,["H2428"]],[34,35,["H5921"]],[35,36,["H3389"]],[36,38,["H2583"]],[38,39,["H5921"]],[39,43,["H1129"]],[43,44,["H1785"]],[44,45,["H5921"]],[45,48,["H5439"]]]},{"k":10224,"v":[[0,3,["H5892"]],[3,5,["H935","H4692"]],[5,6,["H5704"]],[6,8,["H6249","H6240"]],[8,9,["H8141"]],[9,11,["H4428"]],[11,12,["H6667"]]]},{"k":10225,"v":[[0,4,["H8672"]],[4,9,["H2320"]],[9,11,["H7458"]],[11,12,["H2388"]],[12,15,["H5892"]],[15,18,["H1961"]],[18,19,["H3808"]],[19,20,["H3899"]],[20,23,["H5971"]],[23,26,["H776"]]]},{"k":10226,"v":[[0,3,["H5892"]],[3,6,["H1234"]],[6,8,["H3605"]],[8,10,["H376"]],[10,12,["H4421"]],[12,15,["H3915"]],[15,18,["H1870"]],[18,21,["H8179"]],[21,22,["H996"]],[22,24,["H2346"]],[24,25,["H834"]],[25,27,["H5921"]],[27,29,["H4428"]],[29,30,["H1588"]],[30,33,["H3778"]],[33,35,["H5921"]],[35,37,["H5892"]],[37,39,["H5439"]],[39,43,["H1980"]],[43,45,["H1870"]],[45,48,["H6160"]]]},{"k":10227,"v":[[0,3,["H2428"]],[3,6,["H3778"]],[6,7,["H7291"]],[7,8,["H310"]],[8,10,["H4428"]],[10,12,["H5381"]],[12,16,["H6160"]],[16,18,["H3405"]],[18,20,["H3605"]],[20,22,["H2428"]],[22,24,["H6327"]],[24,25,["H4480","H5921"]],[25,26,[]]]},{"k":10228,"v":[[0,3,["H8610","(H853)"]],[3,5,["H4428"]],[5,9,["H5927","(H853)"]],[9,10,["H413"]],[10,12,["H4428"]],[12,14,["H894"]],[14,16,["H7247"]],[16,19,["H1696"]],[19,20,["H4941"]],[20,21,["H854"]],[21,22,[]]]},{"k":10229,"v":[[0,3,["H7819"]],[3,5,["H1121"]],[5,7,["H6667"]],[7,10,["H5869"]],[10,13,["H5786","(H853)"]],[13,15,["H5869"]],[15,17,["H6667"]],[17,19,["H631"]],[19,24,["H5178"]],[24,26,["H935"]],[26,29,["H894"]]]},{"k":10230,"v":[[0,4,["H2549"]],[4,5,["H2320"]],[5,8,["H7651"]],[8,12,["H2320"]],[12,13,["H1931"]],[13,16,["H8672","H6240"]],[16,17,["H8141"]],[17,19,["H4428"]],[19,20,["H5019"]],[20,21,["H4428"]],[21,23,["H894"]],[23,24,["H935"]],[24,25,["H5018"]],[25,26,["H7227"]],[26,29,["H2876"]],[29,31,["H5650"]],[31,34,["H4428"]],[34,36,["H894"]],[36,38,["H3389"]]]},{"k":10231,"v":[[0,3,["H8313","(H853)"]],[3,5,["H1004"]],[5,8,["H3068"]],[8,11,["H4428"]],[11,12,["H1004"]],[12,14,["H3605"]],[14,16,["H1004"]],[16,18,["H3389"]],[18,20,["H3605"]],[20,21,["H1419"]],[21,23,["H1004"]],[23,24,["H8313"]],[24,27,["H784"]]]},{"k":10232,"v":[[0,2,["H3605"]],[2,4,["H2428"]],[4,7,["H3778"]],[7,8,["H834"]],[8,12,["H7227"]],[12,15,["H2876"]],[15,17,["H5422"]],[17,19,["H2346"]],[19,21,["H3389"]],[21,23,["H5439"]]]},{"k":10233,"v":[[0,3,["H3499"]],[3,6,["H5971"]],[6,9,["H7604"]],[9,12,["H5892"]],[12,15,["H5307"]],[15,16,["H834"]],[16,18,["H5307"]],[18,19,["H5921"]],[19,21,["H4428"]],[21,23,["H894"]],[23,26,["H3499"]],[26,29,["H1995"]],[29,31,["H5018"]],[31,33,["H7227"]],[33,36,["H2876"]],[36,38,["H1540"]]]},{"k":10234,"v":[[0,3,["H7227"]],[3,6,["H2876"]],[6,7,["H7604"]],[7,10,["H4480","H1803"]],[10,13,["H776"]],[13,16,["H3755"]],[16,18,["H1461"]]]},{"k":10235,"v":[[0,3,["H5982"]],[3,5,["H5178"]],[5,6,["H834"]],[6,10,["H1004"]],[10,13,["H3068"]],[13,16,["H4350"]],[16,19,["H5178"]],[19,20,["H3220"]],[20,21,["H834"]],[21,25,["H1004"]],[25,28,["H3068"]],[28,31,["H3778"]],[31,34,["H7665"]],[34,36,["H5375","(H853)"]],[36,38,["H5178"]],[38,42,["H894"]]]},{"k":10236,"v":[[0,3,["H5518"]],[3,6,["H3257"]],[6,9,["H4212"]],[9,12,["H3709"]],[12,14,["H3605"]],[14,16,["H3627"]],[16,18,["H5178"]],[18,19,["H834"]],[19,21,["H8334"]],[21,24,["H3947"]]]},{"k":10237,"v":[[0,3,["H4289"]],[3,6,["H4219"]],[6,10,["H834"]],[10,13,["H2091"]],[13,15,["H2091"]],[15,18,["H3701"]],[18,20,["H3701"]],[20,22,["H7227"]],[22,25,["H2876"]],[25,27,["H3947"]]]},{"k":10238,"v":[[0,2,["H8147"]],[2,3,["H5982"]],[3,4,["H259"]],[4,5,["H3220"]],[5,8,["H4350"]],[8,9,["H834"]],[9,10,["H8010"]],[10,12,["H6213"]],[12,15,["H1004"]],[15,18,["H3068"]],[18,20,["H5178"]],[20,22,["H3605"]],[22,23,["H428"]],[23,24,["H3627"]],[24,25,["H1961"]],[25,26,["H3808"]],[26,27,["H4948"]]]},{"k":10239,"v":[[0,2,["H6967"]],[2,5,["H259"]],[5,6,["H5982"]],[6,8,["H8083","H6240"]],[8,9,["H520"]],[9,12,["H3805"]],[12,13,["H5921"]],[13,16,["H5178"]],[16,19,["H6967"]],[19,22,["H3805"]],[22,23,["H7969"]],[23,24,["H520"]],[24,28,["H7639"]],[28,30,["H7416"]],[30,31,["H5921"]],[31,33,["H3805"]],[33,35,["H5439"]],[35,36,["H3605"]],[36,38,["H5178"]],[38,42,["H428"]],[42,45,["H8145"]],[45,46,["H5982"]],[46,47,["H5921"]],[47,49,["H7639"]]]},{"k":10240,"v":[[0,3,["H7227"]],[3,6,["H2876"]],[6,7,["H3947","(H853)"]],[7,8,["H8304"]],[8,10,["H7218"]],[10,11,["H3548"]],[11,13,["H6846"]],[13,15,["H4932"]],[15,16,["H3548"]],[16,19,["H7969"]],[19,20,["H8104"]],[20,23,["H5592"]]]},{"k":10241,"v":[[0,3,["H4480"]],[3,5,["H5892"]],[5,7,["H3947"]],[7,8,["H259"]],[8,9,["H5631"]],[9,10,["H834","H1931"]],[10,12,["H6496"]],[12,13,["H5921"]],[13,15,["H376"]],[15,17,["H4421"]],[17,19,["H2568"]],[19,20,["H376"]],[20,24,["H4480","H7200"]],[24,27,["H4428"]],[27,28,["H6440"]],[28,29,["H834"]],[29,31,["H4672"]],[31,34,["H5892"]],[34,37,["H8269"]],[37,38,["H5608"]],[38,41,["H6635"]],[41,43,["H6633","(H853)"]],[43,45,["H5971"]],[45,48,["H776"]],[48,50,["H8346"]],[50,51,["H376"]],[51,54,["H4480","H5971"]],[54,57,["H776"]],[57,60,["H4672"]],[60,63,["H5892"]]]},{"k":10242,"v":[[0,2,["H5018"]],[2,3,["H7227"]],[3,6,["H2876"]],[6,7,["H3947"]],[7,10,["H1980"]],[10,12,["H5921"]],[12,14,["H4428"]],[14,16,["H894"]],[16,18,["H7247"]]]},{"k":10243,"v":[[0,3,["H4428"]],[3,5,["H894"]],[5,6,["H5221"]],[6,9,["H4191"]],[9,12,["H7247"]],[12,15,["H776"]],[15,17,["H2574"]],[17,19,["H3063"]],[19,22,["H1540"]],[22,24,["H4480","H5921"]],[24,26,["H127"]]]},{"k":10244,"v":[[0,5,["H5971"]],[5,7,["H7604"]],[7,10,["H776"]],[10,12,["H3063"]],[12,13,["H834"]],[13,14,["H5019"]],[14,15,["H4428"]],[15,17,["H894"]],[17,19,["H7604"]],[19,21,["H5921"]],[21,24,["(H853)"]],[24,25,["H1436"]],[25,27,["H1121"]],[27,29,["H296"]],[29,31,["H1121"]],[31,33,["H8227"]],[33,34,["H6485"]]]},{"k":10245,"v":[[0,3,["H3605"]],[3,5,["H8269"]],[5,8,["H2428"]],[8,9,["H1992"]],[9,12,["H376"]],[12,13,["H8085"]],[13,14,["H3588"]],[14,16,["H4428"]],[16,18,["H894"]],[18,20,["(H853)"]],[20,21,["H1436"]],[21,22,["H6485"]],[22,24,["H935"]],[24,25,["H413"]],[25,26,["H1436"]],[26,28,["H4709"]],[28,30,["H3458"]],[30,32,["H1121"]],[32,34,["H5418"]],[34,36,["H3110"]],[36,38,["H1121"]],[38,40,["H7143"]],[40,42,["H8304"]],[42,44,["H1121"]],[44,46,["H8576"]],[46,48,["H5200"]],[48,50,["H2970"]],[50,52,["H1121"]],[52,55,["H4602"]],[55,56,["H1992"]],[56,59,["H376"]]]},{"k":10246,"v":[[0,2,["H1436"]],[2,3,["H7650"]],[3,9,["H376"]],[9,11,["H559"]],[11,14,["H3372"]],[14,15,["H408"]],[15,19,["H4480","H5650"]],[19,22,["H3778"]],[22,23,["H3427"]],[23,26,["H776"]],[26,28,["H5647","(H853)"]],[28,30,["H4428"]],[30,32,["H894"]],[32,37,["H3190"]],[37,39,[]]]},{"k":10247,"v":[[0,5,["H1961"]],[5,8,["H7637"]],[8,9,["H2320"]],[9,11,["H3458"]],[11,13,["H1121"]],[13,15,["H5418"]],[15,17,["H1121"]],[17,19,["H476"]],[19,22,["H4480","H2233"]],[22,23,["H4410"]],[23,24,["H935"]],[24,26,["H6235"]],[26,27,["H376"]],[27,28,["H854"]],[28,31,["H5221","(H853)"]],[31,32,["H1436"]],[32,35,["H4191"]],[35,38,["H3064"]],[38,41,["H3778"]],[41,42,["H834"]],[42,43,["H1961"]],[43,44,["H854"]],[44,47,["H4709"]]]},{"k":10248,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H4480","H6996"]],[6,8,["H1419"]],[8,11,["H8269"]],[11,14,["H2428"]],[14,15,["H6965"]],[15,17,["H935"]],[17,19,["H4714"]],[19,20,["H3588"]],[20,23,["H3372"]],[23,24,["H4480","H6440"]],[24,26,["H3778"]]]},{"k":10249,"v":[[0,5,["H1961"]],[5,8,["H7651"]],[8,10,["H7970"]],[10,11,["H8141"]],[11,14,["H1546"]],[14,16,["H3078"]],[16,17,["H4428"]],[17,19,["H3063"]],[19,22,["H8147","H6240"]],[22,23,["H2320"]],[23,26,["H7651"]],[26,28,["H6242"]],[28,32,["H2320"]],[32,34,["H192"]],[34,35,["H4428"]],[35,37,["H894"]],[37,40,["H8141"]],[40,45,["H4427"]],[45,48,["H5375","(H853)"]],[48,50,["H7218"]],[50,52,["H3078"]],[52,53,["H4428"]],[53,55,["H3063"]],[55,58,["H4480","H1004","H3608"]]]},{"k":10250,"v":[[0,3,["H1696"]],[3,4,["H2896"]],[4,5,["H854"]],[5,8,["H5414","(H853)"]],[8,10,["H3678"]],[10,11,["H4480","H5921"]],[11,13,["H3678"]],[13,16,["H4428"]],[16,17,["H834"]],[17,19,["H854"]],[19,22,["H894"]]]},{"k":10251,"v":[[0,2,["H8132","(H853)"]],[2,4,["H3608"]],[4,5,["H899"]],[5,9,["H398"]],[9,10,["H3899"]],[10,11,["H8548"]],[11,12,["H6440"]],[12,14,["H3605"]],[14,16,["H3117"]],[16,19,["H2416"]]]},{"k":10252,"v":[[0,3,["H737"]],[3,6,["H8548"]],[6,7,["H737"]],[7,8,["H5414"]],[8,10,["H4480","H854"]],[10,12,["H4428"]],[12,14,["H3117"]],[14,15,["H1697"]],[15,18,["H3117"]],[18,19,["H3605"]],[19,21,["H3117"]],[21,24,["H2416"]]]},{"k":10253,"v":[[0,1,["H121"]],[1,2,["H8352"]],[2,3,["H583"]]]},{"k":10254,"v":[[0,1,["H7018"]],[1,2,["H4111"]],[2,3,["H3382"]]]},{"k":10255,"v":[[0,1,["H2585"]],[1,2,["H4968"]],[2,3,["H3929"]]]},{"k":10256,"v":[[0,1,["H5146"]],[1,2,["H8035"]],[2,3,["H2526"]],[3,5,["H3315"]]]},{"k":10257,"v":[[0,2,["H1121"]],[2,4,["H3315"]],[4,5,["H1586"]],[5,7,["H4031"]],[7,9,["H4074"]],[9,11,["H3120"]],[11,13,["H8422"]],[13,15,["H4902"]],[15,17,["H8494"]]]},{"k":10258,"v":[[0,3,["H1121"]],[3,5,["H1586"]],[5,6,["H813"]],[6,8,["H7384"]],[8,10,["H8425"]]]},{"k":10259,"v":[[0,3,["H1121"]],[3,5,["H3120"]],[5,6,["H473"]],[6,8,["H8659"]],[8,9,["H3794"]],[9,11,["H1721"]]]},{"k":10260,"v":[[0,2,["H1121"]],[2,4,["H2526"]],[4,5,["H3568"]],[5,7,["H4714"]],[7,8,["H6316"]],[8,10,["H3667"]]]},{"k":10261,"v":[[0,3,["H1121"]],[3,5,["H3568"]],[5,6,["H5434"]],[6,8,["H2341"]],[8,10,["H5454"]],[10,12,["H7484"]],[12,14,["H5455"]],[14,17,["H1121"]],[17,19,["H7484"]],[19,20,["H7614"]],[20,22,["H1719"]]]},{"k":10262,"v":[[0,2,["H3568"]],[2,3,["H3205","(H853)"]],[3,4,["H5248"]],[4,5,["H1931"]],[5,6,["H2490"]],[6,8,["H1961"]],[8,9,["H1368"]],[9,12,["H776"]]]},{"k":10263,"v":[[0,2,["H4714"]],[2,3,["H3205","(H853)"]],[3,4,["H3866"]],[4,6,["H6047"]],[6,8,["H3853"]],[8,10,["H5320"]]]},{"k":10264,"v":[[0,2,["H6625"]],[2,4,["H3695"]],[4,6,["H834","H4480","H8033"]],[6,7,["H3318"]],[7,9,["H6430"]],[9,11,["H3732"]]]},{"k":10265,"v":[[0,2,["H3667"]],[2,3,["H3205","(H853)"]],[3,4,["H6721"]],[4,6,["H1060"]],[6,8,["H2845"]]]},{"k":10266,"v":[[0,2,["H2983"]],[2,6,["H567"]],[6,9,["H1622"]]]},{"k":10267,"v":[[0,3,["H2340"]],[3,6,["H6208"]],[6,9,["H5513"]]]},{"k":10268,"v":[[0,3,["H721"]],[3,6,["H6786"]],[6,9,["H2577"]]]},{"k":10269,"v":[[0,2,["H1121"]],[2,4,["H8035"]],[4,5,["H5867"]],[5,7,["H804"]],[7,9,["H775"]],[9,11,["H3865"]],[11,13,["H758"]],[13,15,["H5780"]],[15,17,["H2343"]],[17,19,["H1666"]],[19,21,["H4902"]]]},{"k":10270,"v":[[0,2,["H775"]],[2,3,["H3205","(H853)"]],[3,4,["H7974"]],[4,6,["H7974"]],[6,7,["H3205","(H853)"]],[7,8,["H5677"]]]},{"k":10271,"v":[[0,3,["H5677"]],[3,5,["H3205"]],[5,6,["H8147"]],[6,7,["H1121"]],[7,9,["H8034"]],[9,12,["H259"]],[12,14,["H6389"]],[14,15,["H3588"]],[15,18,["H3117"]],[18,20,["H776"]],[20,22,["H6385"]],[22,25,["H251"]],[25,26,["H8034"]],[26,28,["H3355"]]]},{"k":10272,"v":[[0,2,["H3355"]],[2,3,["H3205","(H853)"]],[3,4,["H486"]],[4,6,["H8026"]],[6,8,["H2700"]],[8,10,["H3392"]]]},{"k":10273,"v":[[0,1,["H1913"]],[1,4,["H187"]],[4,6,["H1853"]]]},{"k":10274,"v":[[0,2,["H5858"]],[2,4,["H39"]],[4,6,["H7614"]]]},{"k":10275,"v":[[0,2,["H211"]],[2,4,["H2341"]],[4,6,["H3103"]],[6,7,["H3605"]],[7,8,["H428"]],[8,11,["H1121"]],[11,13,["H3355"]]]},{"k":10276,"v":[[0,1,["H8035"]],[1,2,["H775"]],[2,3,["H7974"]]]},{"k":10277,"v":[[0,1,["H5677"]],[1,2,["H6389"]],[2,3,["H7466"]]]},{"k":10278,"v":[[0,1,["H8286"]],[1,2,["H5152"]],[2,3,["H8646"]]]},{"k":10279,"v":[[0,1,["H87"]],[1,3,["H1931"]],[3,5,["H85"]]]},{"k":10280,"v":[[0,2,["H1121"]],[2,4,["H85"]],[4,5,["H3327"]],[5,7,["H3458"]]]},{"k":10281,"v":[[0,1,["H428"]],[1,4,["H8435"]],[4,6,["H1060"]],[6,8,["H3458"]],[8,9,["H5032"]],[9,11,["H6938"]],[11,13,["H110"]],[13,15,["H4017"]]]},{"k":10282,"v":[[0,1,["H4927"]],[1,3,["H1746"]],[3,4,["H4854"]],[4,5,["H2301"]],[5,7,["H8485"]]]},{"k":10283,"v":[[0,1,["H3195"]],[1,2,["H5305"]],[2,4,["H6929"]],[4,5,["H428"]],[5,8,["H1121"]],[8,10,["H3458"]]]},{"k":10284,"v":[[0,3,["H1121"]],[3,5,["H6989"]],[5,6,["H85"]],[6,7,["H6370"]],[7,9,["H3205","(H853)"]],[9,10,["H2175"]],[10,12,["H3370"]],[12,14,["H4091"]],[14,16,["H4080"]],[16,18,["H3435"]],[18,20,["H7744"]],[20,23,["H1121"]],[23,25,["H3370"]],[25,26,["H7614"]],[26,28,["H1719"]]]},{"k":10285,"v":[[0,3,["H1121"]],[3,5,["H4080"]],[5,6,["H5891"]],[6,8,["H6081"]],[8,10,["H2585"]],[10,12,["H28"]],[12,14,["H420"]],[14,15,["H3605"]],[15,16,["H428"]],[16,19,["H1121"]],[19,21,["H6989"]]]},{"k":10286,"v":[[0,2,["H85"]],[2,3,["H3205","(H853)"]],[3,4,["H3327"]],[4,6,["H1121"]],[6,8,["H3327"]],[8,9,["H6215"]],[9,11,["H3478"]]]},{"k":10287,"v":[[0,2,["H1121"]],[2,4,["H6215"]],[4,5,["H464"]],[5,6,["H7467"]],[6,8,["H3266"]],[8,10,["H3281"]],[10,12,["H7141"]]]},{"k":10288,"v":[[0,2,["H1121"]],[2,4,["H464"]],[4,5,["H8487"]],[5,7,["H201"]],[7,8,["H6825"]],[8,10,["H1609"]],[10,11,["H7073"]],[11,13,["H8555"]],[13,15,["H6002"]]]},{"k":10289,"v":[[0,2,["H1121"]],[2,4,["H7467"]],[4,5,["H5184"]],[5,6,["H2226"]],[6,7,["H8048"]],[7,9,["H4199"]]]},{"k":10290,"v":[[0,3,["H1121"]],[3,5,["H8165"]],[5,6,["H3877"]],[6,8,["H7732"]],[8,10,["H6649"]],[10,12,["H6034"]],[12,14,["H1787"]],[14,16,["H687"]],[16,18,["H1789"]]]},{"k":10291,"v":[[0,3,["H1121"]],[3,5,["H3877"]],[5,6,["H2753"]],[6,8,["H1950"]],[8,10,["H8555"]],[10,12,["H3877"]],[12,13,["H269"]]]},{"k":10292,"v":[[0,2,["H1121"]],[2,4,["H7732"]],[4,5,["H5935"]],[5,7,["H4506"]],[7,9,["H5858"]],[9,10,["H8195"]],[10,12,["H208"]],[12,15,["H1121"]],[15,17,["H6649"]],[17,18,["H345"]],[18,20,["H6034"]]]},{"k":10293,"v":[[0,2,["H1121"]],[2,4,["H6034"]],[4,5,["H1787"]],[5,8,["H1121"]],[8,10,["H1787"]],[10,11,["H2566"]],[11,13,["H790"]],[13,15,["H3506"]],[15,17,["H3763"]]]},{"k":10294,"v":[[0,2,["H1121"]],[2,4,["H687"]],[4,5,["H1092"]],[5,7,["H2190"]],[7,9,["H3292"]],[9,11,["H1121"]],[11,13,["H1789"]],[13,14,["H5780"]],[14,16,["H765"]]]},{"k":10295,"v":[[0,2,["H428"]],[2,5,["H4428"]],[5,6,["H834"]],[6,7,["H4427"]],[7,10,["H776"]],[10,12,["H123"]],[12,13,["H6440"]],[13,15,["H4428"]],[15,16,["H4427"]],[16,19,["H1121"]],[19,21,["H3478"]],[21,22,["H1106"]],[22,24,["H1121"]],[24,26,["H1160"]],[26,29,["H8034"]],[29,32,["H5892"]],[32,34,["H1838"]]]},{"k":10296,"v":[[0,3,["H1106"]],[3,5,["H4191"]],[5,6,["H3103"]],[6,8,["H1121"]],[8,10,["H2226"]],[10,12,["H4480","H1224"]],[12,13,["H4427"]],[13,16,["H8478"]]]},{"k":10297,"v":[[0,3,["H3103"]],[3,5,["H4191"]],[5,6,["H2367"]],[6,9,["H4480","H776"]],[9,12,["H8489"]],[12,13,["H4427"]],[13,16,["H8478"]]]},{"k":10298,"v":[[0,3,["H2367"]],[3,5,["H4191"]],[5,6,["H1908"]],[6,8,["H1121"]],[8,10,["H911"]],[10,12,["H5221","(H853)"]],[12,13,["H4080"]],[13,16,["H7704"]],[16,18,["H4124"]],[18,19,["H4427"]],[19,22,["H8478"]],[22,25,["H8034"]],[25,28,["H5892"]],[28,30,["H5762"]]]},{"k":10299,"v":[[0,3,["H1908"]],[3,5,["H4191"]],[5,6,["H8072"]],[6,8,["H4480","H4957"]],[8,9,["H4427"]],[9,12,["H8478"]]]},{"k":10300,"v":[[0,3,["H8072"]],[3,5,["H4191"]],[5,6,["H7586"]],[6,8,["H4480","H7344"]],[8,11,["H5104"]],[11,12,["H4427"]],[12,15,["H8478"]]]},{"k":10301,"v":[[0,3,["H7586"]],[3,5,["H4191"]],[5,6,["H1177"]],[6,8,["H1121"]],[8,10,["H5907"]],[10,11,["H4427"]],[11,14,["H8478"]]]},{"k":10302,"v":[[0,3,["H1177"]],[3,5,["H4191"]],[5,6,["H1908"]],[6,7,["H4427"]],[7,10,["H8478"]],[10,13,["H8034"]],[13,16,["H5892"]],[16,18,["H6464"]],[18,21,["H802"]],[21,22,["H8034"]],[22,24,["H4105"]],[24,26,["H1323"]],[26,28,["H4308"]],[28,30,["H1323"]],[30,32,["H4314"]]]},{"k":10303,"v":[[0,1,["H1908"]],[1,2,["H4191"]],[2,6,["H441"]],[6,8,["H123"]],[8,9,["H1961"]],[9,10,["H441"]],[10,11,["H8555"]],[11,12,["H441"]],[12,13,["H5933"]],[13,14,["H441"]],[14,15,["H3509"]]]},{"k":10304,"v":[[0,1,["H441"]],[1,2,["H173"]],[2,3,["H441"]],[3,4,["H425"]],[4,5,["H441"]],[5,6,["H6373"]]]},{"k":10305,"v":[[0,1,["H441"]],[1,2,["H7073"]],[2,3,["H441"]],[3,4,["H8487"]],[4,5,["H441"]],[5,6,["H4014"]]]},{"k":10306,"v":[[0,1,["H441"]],[1,2,["H4025"]],[2,3,["H441"]],[3,4,["H5902"]],[4,5,["H428"]],[5,8,["H441"]],[8,10,["H123"]]]},{"k":10307,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H3478"]],[6,7,["H7205"]],[7,8,["H8095"]],[8,9,["H3878"]],[9,11,["H3063"]],[11,12,["H3485"]],[12,14,["H2074"]]]},{"k":10308,"v":[[0,1,["H1835"]],[1,2,["H3130"]],[2,4,["H1144"]],[4,5,["H5321"]],[5,6,["H1410"]],[6,8,["H836"]]]},{"k":10309,"v":[[0,2,["H1121"]],[2,4,["H3063"]],[4,5,["H6147"]],[5,7,["H209"]],[7,9,["H7956"]],[9,11,["H7969"]],[11,13,["H3205"]],[13,18,["H4480","H1323"]],[18,20,["H7770"]],[20,22,["H3669"]],[22,24,["H6147"]],[24,26,["H1060"]],[26,28,["H3063"]],[28,29,["H1961"]],[29,30,["H7451"]],[30,33,["H5869"]],[33,36,["H3068"]],[36,39,["H4191"]],[39,40,[]]]},{"k":10310,"v":[[0,2,["H8559"]],[2,6,["H3618"]],[6,7,["H3205"]],[7,8,["(H853)"]],[8,9,["H6557"]],[9,11,["H2226"]],[11,12,["H3605"]],[12,14,["H1121"]],[14,16,["H3063"]],[16,18,["H2568"]]]},{"k":10311,"v":[[0,2,["H1121"]],[2,4,["H6557"]],[4,5,["H2696"]],[5,7,["H2538"]]]},{"k":10312,"v":[[0,3,["H1121"]],[3,5,["H2226"]],[5,6,["H2174"]],[6,8,["H387"]],[8,10,["H1968"]],[10,12,["H3633"]],[12,14,["H1873"]],[14,15,["H2568"]],[15,19,["H3605"]]]},{"k":10313,"v":[[0,3,["H1121"]],[3,5,["H3756"]],[5,6,["H5917"]],[6,8,["H5916"]],[8,10,["H3478"]],[10,11,["H834"]],[11,12,["H4603"]],[12,16,["H2764"]]]},{"k":10314,"v":[[0,3,["H1121"]],[3,5,["H387"]],[5,6,["H5838"]]]},{"k":10315,"v":[[0,2,["H1121"]],[2,5,["H2696"]],[5,6,["H834"]],[6,8,["H3205"]],[8,10,["(H853)"]],[10,11,["H3396"]],[11,13,["H7410"]],[13,15,["H3621"]]]},{"k":10316,"v":[[0,2,["H7410"]],[2,3,["H3205","(H853)"]],[3,4,["H5992"]],[4,6,["H5992"]],[6,7,["H3205","(H853)"]],[7,8,["H5177"]],[8,9,["H5387"]],[9,12,["H1121"]],[12,14,["H3063"]]]},{"k":10317,"v":[[0,2,["H5177"]],[2,3,["H3205","(H853)"]],[3,4,["H8007"]],[4,6,["H8007"]],[6,7,["H3205","(H853)"]],[7,8,["H1162"]]]},{"k":10318,"v":[[0,2,["H1162"]],[2,3,["H3205","(H853)"]],[3,4,["H5744"]],[4,6,["H5744"]],[6,7,["H3205","(H853)"]],[7,8,["H3448"]]]},{"k":10319,"v":[[0,2,["H3448"]],[2,3,["H3205","(H853)"]],[3,5,["H1060","(H853)"]],[5,6,["H446"]],[6,8,["H41"]],[8,10,["H8145"]],[10,12,["H8092"]],[12,14,["H7992"]]]},{"k":10320,"v":[[0,1,["H5417"]],[1,3,["H7243"]],[3,4,["H7288"]],[4,6,["H2549"]]]},{"k":10321,"v":[[0,1,["H684"]],[1,3,["H8345"]],[3,4,["H1732"]],[4,6,["H7637"]]]},{"k":10322,"v":[[0,2,["H269"]],[2,4,["H6870"]],[4,6,["H26"]],[6,9,["H1121"]],[9,11,["H6870"]],[11,12,["H52"]],[12,14,["H3097"]],[14,16,["H6214"]],[16,17,["H7969"]]]},{"k":10323,"v":[[0,2,["H26"]],[2,3,["H3205","(H853)"]],[3,4,["H6021"]],[4,7,["H1"]],[7,9,["H6021"]],[9,11,["H3500"]],[11,13,["H3459"]]]},{"k":10324,"v":[[0,2,["H3612"]],[2,4,["H1121"]],[4,6,["H2696"]],[6,7,["H3205"]],[7,9,["H854"]],[9,10,["H5806"]],[10,12,["H802"]],[12,14,["H854"]],[14,15,["H3408"]],[15,17,["H1121"]],[17,19,["H428"]],[19,20,["H3475"]],[20,22,["H7727"]],[22,24,["H715"]]]},{"k":10325,"v":[[0,3,["H5806"]],[3,5,["H4191"]],[5,6,["H3612"]],[6,7,["H3947"]],[7,9,["(H853)"]],[9,10,["H672"]],[10,12,["H3205"]],[12,13,["(H853)"]],[13,14,["H2354"]]]},{"k":10326,"v":[[0,2,["H2354"]],[2,3,["H3205","(H853)"]],[3,4,["H221"]],[4,6,["H221"]],[6,7,["H3205","(H853)"]],[7,8,["H1212"]]]},{"k":10327,"v":[[0,2,["H310"]],[2,3,["H2696"]],[3,5,["H935"]],[5,6,["H413"]],[6,8,["H1323"]],[8,10,["H4353"]],[10,12,["H1"]],[12,14,["H1568"]],[14,16,["H1931"]],[16,17,["H3947"]],[17,19,["H1931"]],[19,21,["H8346"]],[21,22,["H8141"]],[22,23,["H1121"]],[23,26,["H3205"]],[26,27,["(H853)"]],[27,28,["H7687"]]]},{"k":10328,"v":[[0,2,["H7687"]],[2,3,["H3205","(H853)"]],[3,4,["H2971"]],[4,6,["H1961"]],[6,7,["H7969"]],[7,9,["H6242"]],[9,10,["H5892"]],[10,13,["H776"]],[13,15,["H1568"]]]},{"k":10329,"v":[[0,3,["H3947"]],[3,4,["H1650"]],[4,6,["H758"]],[6,7,["H854"]],[7,9,["H2333"]],[9,11,["H2971"]],[11,12,["H4480","H854"]],[12,14,["H854"]],[14,15,["H7079"]],[15,18,["H1323"]],[18,21,["H8346"]],[21,22,["H5892"]],[22,23,["H3605"]],[23,24,["H428"]],[24,28,["H1121"]],[28,30,["H4353"]],[30,32,["H1"]],[32,34,["H1568"]]]},{"k":10330,"v":[[0,3,["H310"]],[3,4,["H2696"]],[4,6,["H4194"]],[6,8,["H3613"]],[8,10,["H29"]],[10,11,["H2696"]],[11,12,["H802"]],[12,13,["H3205"]],[13,14,["(H853)"]],[14,15,["H806"]],[15,17,["H1"]],[17,19,["H8620"]]]},{"k":10331,"v":[[0,3,["H1121"]],[3,5,["H3396"]],[5,7,["H1060"]],[7,9,["H2696"]],[9,10,["H1961"]],[10,11,["H7410"]],[11,13,["H1060"]],[13,15,["H946"]],[15,17,["H767"]],[17,19,["H684"]],[19,21,["H281"]]]},{"k":10332,"v":[[0,1,["H3396"]],[1,2,["H1961"]],[2,4,["H312"]],[4,5,["H802"]],[5,7,["H8034"]],[7,9,["H5851"]],[9,10,["H1931"]],[10,13,["H517"]],[13,15,["H208"]]]},{"k":10333,"v":[[0,3,["H1121"]],[3,5,["H7410"]],[5,7,["H1060"]],[7,9,["H3396"]],[9,10,["H1961"]],[10,11,["H4619"]],[11,13,["H3226"]],[13,15,["H6134"]]]},{"k":10334,"v":[[0,3,["H1121"]],[3,5,["H208"]],[5,6,["H1961"]],[6,7,["H8060"]],[7,9,["H3047"]],[9,12,["H1121"]],[12,14,["H8060"]],[14,15,["H5070"]],[15,17,["H51"]]]},{"k":10335,"v":[[0,3,["H8034"]],[3,6,["H802"]],[6,8,["H51"]],[8,10,["H32"]],[10,13,["H3205"]],[13,14,["(H853)"]],[14,15,["H257"]],[15,17,["H4140"]]]},{"k":10336,"v":[[0,3,["H1121"]],[3,5,["H5070"]],[5,6,["H5540"]],[6,8,["H649"]],[8,10,["H5540"]],[10,11,["H4191"]],[11,12,["H3808"]],[12,13,["H1121"]]]},{"k":10337,"v":[[0,3,["H1121"]],[3,5,["H649"]],[5,6,["H3469"]],[6,9,["H1121"]],[9,11,["H3469"]],[11,12,["H8348"]],[12,15,["H1121"]],[15,17,["H8348"]],[17,18,["H304"]]]},{"k":10338,"v":[[0,3,["H1121"]],[3,5,["H3047"]],[5,7,["H251"]],[7,9,["H8060"]],[9,10,["H3500"]],[10,12,["H3126"]],[12,14,["H3500"]],[14,15,["H4191"]],[15,16,["H3808"]],[16,17,["H1121"]]]},{"k":10339,"v":[[0,3,["H1121"]],[3,5,["H3126"]],[5,6,["H6431"]],[6,8,["H2117"]],[8,9,["H428"]],[9,10,["H1961"]],[10,12,["H1121"]],[12,14,["H3396"]]]},{"k":10340,"v":[[0,2,["H8348"]],[2,3,["H1961"]],[3,4,["H3808"]],[4,5,["H1121"]],[5,6,["H3588","H518"]],[6,7,["H1323"]],[7,9,["H8348"]],[9,12,["H5650"]],[12,14,["H4713"]],[14,16,["H8034"]],[16,18,["H3398"]]]},{"k":10341,"v":[[0,2,["H8348"]],[2,3,["H5414","(H853)"]],[3,5,["H1323"]],[5,7,["H3398"]],[7,9,["H5650"]],[9,11,["H802"]],[11,14,["H3205"]],[14,15,["(H853)"]],[15,16,["H6262"]]]},{"k":10342,"v":[[0,2,["H6262"]],[2,3,["H3205","(H853)"]],[3,4,["H5416"]],[4,6,["H5416"]],[6,7,["H3205","(H853)"]],[7,8,["H2066"]]]},{"k":10343,"v":[[0,2,["H2066"]],[2,3,["H3205","(H853)"]],[3,4,["H654"]],[4,6,["H654"]],[6,7,["H3205","(H853)"]],[7,8,["H5744"]]]},{"k":10344,"v":[[0,2,["H5744"]],[2,3,["H3205","(H853)"]],[3,4,["H3058"]],[4,6,["H3058"]],[6,7,["H3205","(H853)"]],[7,8,["H5838"]]]},{"k":10345,"v":[[0,2,["H5838"]],[2,3,["H3205","(H853)"]],[3,4,["H2503"]],[4,6,["H2503"]],[6,7,["H3205","(H853)"]],[7,8,["H501"]]]},{"k":10346,"v":[[0,2,["H501"]],[2,3,["H3205","(H853)"]],[3,4,["H5581"]],[4,6,["H5581"]],[6,7,["H3205","(H853)"]],[7,8,["H7967"]]]},{"k":10347,"v":[[0,2,["H7967"]],[2,3,["H3205","(H853)"]],[3,4,["H3359"]],[4,6,["H3359"]],[6,7,["H3205","(H853)"]],[7,8,["H476"]]]},{"k":10348,"v":[[0,3,["H1121"]],[3,5,["H3612"]],[5,7,["H251"]],[7,9,["H3396"]],[9,11,["H4337"]],[11,13,["H1060"]],[13,14,["H1931"]],[14,17,["H1"]],[17,19,["H2128"]],[19,22,["H1121"]],[22,24,["H4762"]],[24,26,["H1"]],[26,28,["H2275"]]]},{"k":10349,"v":[[0,3,["H1121"]],[3,5,["H2275"]],[5,6,["H7141"]],[6,8,["H8599"]],[8,10,["H7552"]],[10,12,["H8087"]]]},{"k":10350,"v":[[0,2,["H8087"]],[2,3,["H3205","(H853)"]],[3,4,["H7357"]],[4,6,["H1"]],[6,8,["H3421"]],[8,10,["H7552"]],[10,11,["H3205","(H853)"]],[11,12,["H8060"]]]},{"k":10351,"v":[[0,3,["H1121"]],[3,5,["H8060"]],[5,7,["H4584"]],[7,9,["H4584"]],[9,12,["H1"]],[12,14,["H1049"]]]},{"k":10352,"v":[[0,2,["H5891"]],[2,3,["H3612"]],[3,4,["H6370"]],[4,5,["H3205","(H853)"]],[5,6,["H2771"]],[6,8,["H4162"]],[8,10,["H1495"]],[10,12,["H2771"]],[12,13,["H3205","(H853)"]],[13,14,["H1495"]]]},{"k":10353,"v":[[0,3,["H1121"]],[3,5,["H3056"]],[5,6,["H7276"]],[6,8,["H3147"]],[8,10,["H1529"]],[10,12,["H6404"]],[12,14,["H5891"]],[14,16,["H8174"]]]},{"k":10354,"v":[[0,1,["H4601"]],[1,2,["H3612"]],[2,3,["H6370"]],[3,4,["H3205"]],[4,5,["H7669"]],[5,7,["H8647"]]]},{"k":10355,"v":[[0,2,["H3205"]],[2,4,["H8174"]],[4,6,["H1"]],[6,8,["H4089","(H853)"]],[8,9,["H7724"]],[9,11,["H1"]],[11,13,["H4343"]],[13,16,["H1"]],[16,18,["H1388"]],[18,21,["H1323"]],[21,23,["H3612"]],[23,25,["H5915"]]]},{"k":10356,"v":[[0,1,["H428"]],[1,2,["H1961"]],[2,4,["H1121"]],[4,6,["H3612"]],[6,8,["H1121"]],[8,10,["H2354"]],[10,12,["H1060"]],[12,14,["H672"]],[14,15,["H7732"]],[15,17,["H1"]],[17,19,["H7157"]]]},{"k":10357,"v":[[0,1,["H8007"]],[1,3,["H1"]],[3,5,["H1035"]],[5,6,["H2780"]],[6,8,["H1"]],[8,10,["H1013"]]]},{"k":10358,"v":[[0,2,["H7732"]],[2,4,["H1"]],[4,6,["H7157"]],[6,7,["H1961"]],[7,8,["H1121"]],[8,9,["H7204"]],[9,11,["H2677"]],[11,14,["H4506"]]]},{"k":10359,"v":[[0,3,["H4940"]],[3,5,["H7157"]],[5,7,["H3505"]],[7,10,["H6336"]],[10,13,["H8126"]],[13,16,["H4954"]],[16,18,["H4480","H428"]],[18,19,["H3318"]],[19,21,["H6882"]],[21,24,["H848"]]]},{"k":10360,"v":[[0,2,["H1121"]],[2,4,["H8007"]],[4,5,["H1035"]],[5,8,["H5200"]],[8,13,["H5854"]],[13,15,["H2677"]],[15,18,["H2680"]],[18,20,["H6882"]]]},{"k":10361,"v":[[0,3,["H4940"]],[3,6,["H5608"]],[6,8,["H3427"]],[8,10,["H3258"]],[10,12,["H8654"]],[12,14,["H8101"]],[14,16,["H7756"]],[16,17,["H1992"]],[17,20,["H7017"]],[20,22,["H935"]],[22,24,["H4480","H2575"]],[24,26,["H1"]],[26,29,["H1004"]],[29,31,["H7394"]]]},{"k":10362,"v":[[0,2,["H428"]],[2,3,["H1961"]],[3,5,["H1121"]],[5,7,["H1732"]],[7,8,["H834"]],[8,10,["H3205"]],[10,14,["H2275"]],[14,16,["H1060"]],[16,17,["H550"]],[17,19,["H293"]],[19,21,["H3159"]],[21,23,["H8145"]],[23,24,["H1840"]],[24,26,["H26"]],[26,28,["H3762"]]]},{"k":10363,"v":[[0,2,["H7992"]],[2,3,["H53"]],[3,5,["H1121"]],[5,7,["H4601"]],[7,9,["H1323"]],[9,11,["H8526"]],[11,12,["H4428"]],[12,14,["H1650"]],[14,16,["H7243"]],[16,17,["H138"]],[17,19,["H1121"]],[19,21,["H2294"]]]},{"k":10364,"v":[[0,2,["H2549"]],[2,3,["H8203"]],[3,5,["H37"]],[5,7,["H8345"]],[7,8,["H3507"]],[8,10,["H5698"]],[10,12,["H802"]]]},{"k":10365,"v":[[0,2,["H8337"]],[2,4,["H3205"]],[4,8,["H2275"]],[8,10,["H8033"]],[10,12,["H4427"]],[12,13,["H7651"]],[13,14,["H8141"]],[14,16,["H8337"]],[16,17,["H2320"]],[17,20,["H3389"]],[20,22,["H4427"]],[22,23,["H7970"]],[23,25,["H7969"]],[25,26,["H8141"]]]},{"k":10366,"v":[[0,2,["H428"]],[2,4,["H3205"]],[4,8,["H3389"]],[8,9,["H8092"]],[9,11,["H7727"]],[11,13,["H5416"]],[13,15,["H8010"]],[15,16,["H702"]],[16,18,["H1340"]],[18,20,["H1323"]],[20,22,["H5988"]]]},{"k":10367,"v":[[0,1,["H2984"]],[1,4,["H476"]],[4,6,["H467"]]]},{"k":10368,"v":[[0,2,["H5052"]],[2,4,["H5298"]],[4,6,["H3309"]]]},{"k":10369,"v":[[0,2,["H476"]],[2,4,["H450"]],[4,6,["H467"]],[6,7,["H8672"]]]},{"k":10370,"v":[[0,3,["H3605"]],[3,5,["H1121"]],[5,7,["H1732"]],[7,8,["H4480","H905"]],[8,10,["H1121"]],[10,13,["H6370"]],[13,15,["H8559"]],[15,17,["H269"]]]},{"k":10371,"v":[[0,2,["H8010"]],[2,3,["H1121"]],[3,5,["H7346"]],[5,6,["H29"]],[6,8,["H1121"]],[8,9,["H609"]],[9,11,["H1121"]],[11,12,["H3092"]],[12,14,["H1121"]]]},{"k":10372,"v":[[0,1,["H3141"]],[1,3,["H1121"]],[3,4,["H274"]],[4,6,["H1121"]],[6,7,["H3101"]],[7,9,["H1121"]]]},{"k":10373,"v":[[0,1,["H558"]],[1,3,["H1121"]],[3,4,["H5838"]],[4,6,["H1121"]],[6,7,["H3147"]],[7,9,["H1121"]]]},{"k":10374,"v":[[0,1,["H271"]],[1,3,["H1121"]],[3,4,["H2396"]],[4,6,["H1121"]],[6,7,["H4519"]],[7,9,["H1121"]]]},{"k":10375,"v":[[0,1,["H526"]],[1,3,["H1121"]],[3,4,["H2977"]],[4,6,["H1121"]]]},{"k":10376,"v":[[0,3,["H1121"]],[3,5,["H2977"]],[5,8,["H1060"]],[8,9,["H3110"]],[9,11,["H8145"]],[11,12,["H3079"]],[12,14,["H7992"]],[14,15,["H6667"]],[15,17,["H7243"]],[17,18,["H7967"]]]},{"k":10377,"v":[[0,3,["H1121"]],[3,5,["H3079"]],[5,6,["H3204"]],[6,8,["H1121"]],[8,9,["H6667"]],[9,11,["H1121"]]]},{"k":10378,"v":[[0,3,["H1121"]],[3,5,["H3204"]],[5,6,["H617"]],[6,7,["H7597"]],[7,9,["H1121"]]]},{"k":10379,"v":[[0,1,["H4443"]],[1,4,["H6305"]],[4,6,["H8137"]],[6,7,["H3359"]],[7,8,["H1953"]],[8,10,["H5072"]]]},{"k":10380,"v":[[0,3,["H1121"]],[3,5,["H6305"]],[5,7,["H2216"]],[7,9,["H8096"]],[9,12,["H1121"]],[12,14,["H2216"]],[14,15,["H4918"]],[15,17,["H2608"]],[17,19,["H8019"]],[19,21,["H269"]]]},{"k":10381,"v":[[0,2,["H2807"]],[2,4,["H169"]],[4,6,["H1296"]],[6,8,["H2619"]],[8,9,["H3142"]],[9,10,["H2568"]]]},{"k":10382,"v":[[0,3,["H1121"]],[3,5,["H2608"]],[5,6,["H6410"]],[6,8,["H3470"]],[8,10,["H1121"]],[10,12,["H7509"]],[12,14,["H1121"]],[14,16,["H770"]],[16,18,["H1121"]],[18,20,["H5662"]],[20,22,["H1121"]],[22,24,["H7935"]]]},{"k":10383,"v":[[0,3,["H1121"]],[3,5,["H7935"]],[5,6,["H8098"]],[6,9,["H1121"]],[9,11,["H8098"]],[11,12,["H2407"]],[12,14,["H3008"]],[14,16,["H1282"]],[16,18,["H5294"]],[18,20,["H8202"]],[20,21,["H8337"]]]},{"k":10384,"v":[[0,3,["H1121"]],[3,5,["H5294"]],[5,6,["H454"]],[6,8,["H2396"]],[8,10,["H5840"]],[10,11,["H7969"]]]},{"k":10385,"v":[[0,3,["H1121"]],[3,5,["H454"]],[5,7,["H1939"]],[7,9,["H475"]],[9,11,["H6411"]],[11,13,["H6126"]],[13,15,["H3110"]],[15,17,["H1806"]],[17,19,["H6054"]],[19,20,["H7651"]]]},{"k":10386,"v":[[0,2,["H1121"]],[2,4,["H3063"]],[4,5,["H6557"]],[5,6,["H2696"]],[6,8,["H3756"]],[8,10,["H2354"]],[10,12,["H7732"]]]},{"k":10387,"v":[[0,2,["H7211"]],[2,4,["H1121"]],[4,6,["H7732"]],[6,7,["H3205","(H853)"]],[7,8,["H3189"]],[8,10,["H3189"]],[10,11,["H3205","(H853)"]],[11,12,["H267"]],[12,14,["H3855"]],[14,15,["H428"]],[15,18,["H4940"]],[18,21,["H6882"]]]},{"k":10388,"v":[[0,2,["H428"]],[2,6,["H1"]],[6,8,["H5862"]],[8,9,["H3157"]],[9,11,["H3457"]],[11,13,["H3031"]],[13,16,["H8034"]],[16,19,["H269"]],[19,21,["H6753"]]]},{"k":10389,"v":[[0,2,["H6439"]],[2,4,["H1"]],[4,6,["H1446"]],[6,8,["H5829"]],[8,10,["H1"]],[10,12,["H2364"]],[12,13,["H428"]],[13,16,["H1121"]],[16,18,["H2354"]],[18,20,["H1060"]],[20,22,["H672"]],[22,24,["H1"]],[24,26,["H1035"]]]},{"k":10390,"v":[[0,2,["H806"]],[2,4,["H1"]],[4,6,["H8620"]],[6,7,["H1961"]],[7,8,["H8147"]],[8,9,["H802"]],[9,10,["H2458"]],[10,12,["H5292"]]]},{"k":10391,"v":[[0,2,["H5292"]],[2,3,["H3205"]],[3,4,["(H853)"]],[4,5,["H275"]],[5,7,["H2660"]],[7,9,["H8488"]],[9,11,["H326"]],[11,12,["H428"]],[12,15,["H1121"]],[15,17,["H5292"]]]},{"k":10392,"v":[[0,3,["H1121"]],[3,5,["H2458"]],[5,7,["H6889"]],[7,9,["H3328"]],[9,11,["H869"]]]},{"k":10393,"v":[[0,2,["H6976"]],[2,3,["H3205","(H853)"]],[3,4,["H6036"]],[4,6,["H6637"]],[6,9,["H4940"]],[9,11,["H316"]],[11,13,["H1121"]],[13,15,["H2037"]]]},{"k":10394,"v":[[0,2,["H3258"]],[2,3,["H1961"]],[3,5,["H3513"]],[5,8,["H4480","H251"]],[8,11,["H517"]],[11,12,["H7121"]],[12,14,["H8034"]],[14,15,["H3258"]],[15,16,["H559"]],[16,17,["H3588"]],[17,19,["H3205"]],[19,22,["H6090"]]]},{"k":10395,"v":[[0,2,["H3258"]],[2,3,["H7121"]],[3,6,["H430"]],[6,8,["H3478"]],[8,9,["H559"]],[9,11,["H518"]],[11,16,["H1288","H1288"]],[16,18,["H7235","(H853)"]],[18,20,["H1366"]],[20,24,["H3027"]],[24,26,["H1961"]],[26,27,["H5973"]],[27,33,["H6213"]],[33,35,["H4480"]],[35,36,["H7451"]],[36,40,["H1115"]],[40,41,["H6087"]],[41,44,["H430"]],[44,45,["H935"]],[45,46,["(H853)"]],[46,48,["H834"]],[48,50,["H7592"]]]},{"k":10396,"v":[[0,2,["H3620"]],[2,4,["H251"]],[4,6,["H7746"]],[6,7,["H3205","(H853)"]],[7,8,["H4243"]],[8,9,["H1931"]],[9,12,["H1"]],[12,14,["H850"]]]},{"k":10397,"v":[[0,2,["H850"]],[2,3,["H3205","(H853)"]],[3,4,["H1051"]],[4,6,["H6454"]],[6,8,["H8468"]],[8,10,["H1"]],[10,12,["H5904"]],[12,13,["H428"]],[13,16,["H376"]],[16,18,["H7397"]]]},{"k":10398,"v":[[0,3,["H1121"]],[3,5,["H7073"]],[5,6,["H6274"]],[6,8,["H8304"]],[8,11,["H1121"]],[11,13,["H6274"]],[13,14,["H2867"]]]},{"k":10399,"v":[[0,2,["H4587"]],[2,3,["H3205","(H853)"]],[3,4,["H6084"]],[4,6,["H8304"]],[6,7,["H3205","(H853)"]],[7,8,["H3097"]],[8,10,["H1"]],[10,13,["H1516"]],[13,15,["H2798"]],[15,16,["H3588"]],[16,18,["H1961"]],[18,19,["H2796"]]]},{"k":10400,"v":[[0,3,["H1121"]],[3,5,["H3612"]],[5,7,["H1121"]],[7,9,["H3312"]],[9,10,["H5900"]],[10,11,["H425"]],[11,13,["H5277"]],[13,16,["H1121"]],[16,18,["H425"]],[18,20,["H7073"]]]},{"k":10401,"v":[[0,3,["H1121"]],[3,5,["H3094"]],[5,6,["H2128"]],[6,8,["H2129"]],[8,9,["H8493"]],[9,11,["H840"]]]},{"k":10402,"v":[[0,3,["H1121"]],[3,5,["H5834"]],[5,7,["H3500"]],[7,9,["H4778"]],[9,11,["H6081"]],[11,13,["H3210"]],[13,16,["H2029","(H853)"]],[16,17,["H4813"]],[17,19,["H8060"]],[19,21,["H3431"]],[21,23,["H1"]],[23,25,["H851"]]]},{"k":10403,"v":[[0,3,["H802"]],[3,4,["H3057"]],[4,5,["H3205","(H853)"]],[5,6,["H3382"]],[6,8,["H1"]],[8,10,["H1446"]],[10,12,["H2268"]],[12,14,["H1"]],[14,16,["H7755"]],[16,18,["H3354"]],[18,20,["H1"]],[20,22,["H2182"]],[22,24,["H428"]],[24,27,["H1121"]],[27,29,["H1332"]],[29,31,["H1323"]],[31,33,["H6547"]],[33,34,["H834"]],[34,35,["H4778"]],[35,36,["H3947"]]]},{"k":10404,"v":[[0,3,["H1121"]],[3,6,["H802"]],[6,7,["H1940"]],[7,9,["H269"]],[9,11,["H5163"]],[11,13,["H1"]],[13,15,["H7084"]],[15,17,["H1636"]],[17,19,["H851"]],[19,21,["H4602"]]]},{"k":10405,"v":[[0,3,["H1121"]],[3,5,["H7889"]],[5,7,["H550"]],[7,9,["H7441"]],[9,10,["H1135"]],[10,12,["H8436"]],[12,15,["H1121"]],[15,17,["H3469"]],[17,19,["H2105"]],[19,21,["H1132"]]]},{"k":10406,"v":[[0,2,["H1121"]],[2,4,["H7956"]],[4,6,["H1121"]],[6,8,["H3063"]],[8,10,["H6147"]],[10,12,["H1"]],[12,14,["H3922"]],[14,16,["H3935"]],[16,18,["H1"]],[18,20,["H4762"]],[20,23,["H4940"]],[23,26,["H1004"]],[26,30,["H5656"]],[30,32,["H948"]],[32,35,["H1004"]],[35,37,["H791"]]]},{"k":10407,"v":[[0,2,["H3137"]],[2,5,["H376"]],[5,7,["H3578"]],[7,9,["H3101"]],[9,11,["H8315"]],[11,12,["H834"]],[12,15,["H1166"]],[15,17,["H4124"]],[17,19,["H3433"]],[19,23,["H6267"]],[23,24,["H1697"]]]},{"k":10408,"v":[[0,1,["H1992"]],[1,4,["H3335"]],[4,8,["H3427"]],[8,10,["H5196"]],[10,12,["H1448"]],[12,13,["H8033"]],[13,15,["H3427"]],[15,16,["H5973"]],[16,18,["H4428"]],[18,21,["H4399"]]]},{"k":10409,"v":[[0,2,["H1121"]],[2,4,["H8095"]],[4,6,["H5241"]],[6,8,["H3226"]],[8,9,["H3402"]],[9,10,["H2226"]],[10,12,["H7586"]]]},{"k":10410,"v":[[0,1,["H7967"]],[1,3,["H1121"]],[3,4,["H4017"]],[4,6,["H1121"]],[6,7,["H4927"]],[7,9,["H1121"]]]},{"k":10411,"v":[[0,3,["H1121"]],[3,5,["H4927"]],[5,6,["H2536"]],[6,8,["H1121"]],[8,9,["H2139"]],[9,11,["H1121"]],[11,12,["H8096"]],[12,14,["H1121"]]]},{"k":10412,"v":[[0,2,["H8096"]],[2,4,["H8337","H6240"]],[4,5,["H1121"]],[5,7,["H8337"]],[7,8,["H1323"]],[8,11,["H251"]],[11,13,["H369"]],[13,14,["H7227"]],[14,15,["H1121"]],[15,16,["H3808"]],[16,18,["H3605"]],[18,20,["H4940"]],[20,21,["H7235"]],[21,23,["H5704"]],[23,25,["H1121"]],[25,27,["H3063"]]]},{"k":10413,"v":[[0,3,["H3427"]],[3,5,["H884"]],[5,7,["H4137"]],[7,9,["H2705"]]]},{"k":10414,"v":[[0,3,["H1090"]],[3,6,["H6107"]],[6,9,["H8434"]]]},{"k":10415,"v":[[0,3,["H1328"]],[3,6,["H2767"]],[6,9,["H6860"]]]},{"k":10416,"v":[[0,3,["H1024"]],[3,5,["H2702"]],[5,8,["H1011"]],[8,11,["H8189"]],[11,12,["H428"]],[12,15,["H5892"]],[15,16,["H5704"]],[16,18,["H4427"]],[18,20,["H1732"]]]},{"k":10417,"v":[[0,3,["H2691"]],[3,5,["H5862"]],[5,7,["H5871"]],[7,8,["H7417"]],[8,10,["H8507"]],[10,12,["H6228"]],[12,13,["H2568"]],[13,14,["H5892"]]]},{"k":10418,"v":[[0,2,["H3605"]],[2,4,["H2691"]],[4,5,["H834"]],[5,8,["H5439"]],[8,10,["H428"]],[10,11,["H5892"]],[11,12,["H5704"]],[12,13,["H1168"]],[13,14,["H2063"]],[14,17,["H4186"]],[17,20,["H3187"]]]},{"k":10419,"v":[[0,2,["H4877"]],[2,4,["H3230"]],[4,6,["H3144"]],[6,8,["H1121"]],[8,10,["H558"]]]},{"k":10420,"v":[[0,2,["H3100"]],[2,4,["H3058"]],[4,6,["H1121"]],[6,8,["H3143"]],[8,10,["H1121"]],[10,12,["H8304"]],[12,14,["H1121"]],[14,16,["H6221"]]]},{"k":10421,"v":[[0,2,["H454"]],[2,4,["H3291"]],[4,6,["H3439"]],[6,8,["H6222"]],[8,10,["H5717"]],[10,12,["H3450"]],[12,14,["H1141"]]]},{"k":10422,"v":[[0,2,["H2124"]],[2,4,["H1121"]],[4,6,["H8230"]],[6,8,["H1121"]],[8,10,["H438"]],[10,12,["H1121"]],[12,14,["H3042"]],[14,16,["H1121"]],[16,18,["H8113"]],[18,20,["H1121"]],[20,22,["H8098"]]]},{"k":10423,"v":[[0,1,["H428"]],[1,2,["H935"]],[2,5,["H8034"]],[5,7,["H5387"]],[7,10,["H4940"]],[10,13,["H1004"]],[13,16,["H1"]],[16,17,["H6555"]],[17,18,["H7230"]]]},{"k":10424,"v":[[0,3,["H1980"]],[3,6,["H3996"]],[6,8,["H1446"]],[8,10,["H5704"]],[10,13,["H4217"]],[13,16,["H1516"]],[16,18,["H1245"]],[18,19,["H4829"]],[19,22,["H6629"]]]},{"k":10425,"v":[[0,3,["H4672"]],[3,4,["H8082"]],[4,5,["H4829"]],[5,7,["H2896"]],[7,10,["H776"]],[10,12,["H7342","H3027"]],[12,14,["H8252"]],[14,16,["H7961"]],[16,17,["H3588"]],[17,19,["H4480"]],[19,20,["H2526"]],[20,22,["H3427"]],[22,23,["H8033"]],[23,25,["H6440"]]]},{"k":10426,"v":[[0,2,["H428"]],[2,3,["H3789"]],[3,5,["H8034"]],[5,6,["H935"]],[6,9,["H3117"]],[9,11,["H3169"]],[11,12,["H4428"]],[12,14,["H3063"]],[14,16,["H5221","(H853)"]],[16,18,["H168"]],[18,21,["H4583"]],[21,22,["H834"]],[22,24,["H4672"]],[24,25,["H8033"]],[25,29,["H2763"]],[29,30,["H5704"]],[30,31,["H2088"]],[31,32,["H3117"]],[32,34,["H3427"]],[34,37,["H8478"]],[37,38,["H3588"]],[38,41,["H4829"]],[41,42,["H8033"]],[42,45,["H6629"]]]},{"k":10427,"v":[[0,3,["H4480"]],[3,6,["H4480"]],[6,8,["H1121"]],[8,10,["H8095"]],[10,11,["H2568"]],[11,12,["H3967"]],[12,13,["H376"]],[13,14,["H1980"]],[14,16,["H2022"]],[16,17,["H8165"]],[17,21,["H7218"]],[21,22,["H6410"]],[22,24,["H5294"]],[24,26,["H7509"]],[26,28,["H5816"]],[28,30,["H1121"]],[30,32,["H3469"]]]},{"k":10428,"v":[[0,3,["H5221","(H853)"]],[3,5,["H7611"]],[5,8,["H6002"]],[8,11,["H6413"]],[11,13,["H3427"]],[13,14,["H8033"]],[14,15,["H5704"]],[15,16,["H2088"]],[16,17,["H3117"]]]},{"k":10429,"v":[[0,3,["H1121"]],[3,5,["H7205"]],[5,7,["H1060"]],[7,9,["H3478"]],[9,10,["H3588"]],[10,11,["H1931"]],[11,14,["H1060"]],[14,19,["H2490"]],[19,21,["H1"]],[21,22,["H3326"]],[22,24,["H1062"]],[24,26,["H5414"]],[26,29,["H1121"]],[29,31,["H3130"]],[31,33,["H1121"]],[33,35,["H3478"]],[35,43,["H3808","H3187"]],[43,46,["H1062"]]]},{"k":10430,"v":[[0,1,["H3588"]],[1,2,["H3063"]],[2,3,["H1396"]],[3,6,["H251"]],[6,8,["H4480"]],[8,13,["H5057"]],[13,16,["H1062"]],[16,18,["H3130"]]]},{"k":10431,"v":[[0,2,["H1121"]],[2,6,["H7205"]],[6,8,["H1060"]],[8,10,["H3478"]],[10,12,["H2585"]],[12,14,["H6396"]],[14,15,["H2696"]],[15,17,["H3756"]]]},{"k":10432,"v":[[0,2,["H1121"]],[2,4,["H3100"]],[4,5,["H8098"]],[5,7,["H1121"]],[7,8,["H1463"]],[8,10,["H1121"]],[10,11,["H8096"]],[11,13,["H1121"]]]},{"k":10433,"v":[[0,1,["H4318"]],[1,3,["H1121"]],[3,4,["H7211"]],[4,6,["H1121"]],[6,7,["H1168"]],[7,9,["H1121"]]]},{"k":10434,"v":[[0,1,["H880"]],[1,3,["H1121"]],[3,4,["H834"]],[4,5,["H8407"]],[5,6,["H4428"]],[6,8,["H804"]],[8,10,["H1540"]],[10,12,["H1931"]],[12,14,["H5387"]],[14,17,["H7206"]]]},{"k":10435,"v":[[0,3,["H251"]],[3,6,["H4940"]],[6,9,["H3187"]],[9,12,["H8435"]],[12,17,["H7218"]],[17,18,["H3273"]],[18,20,["H2148"]]]},{"k":10436,"v":[[0,2,["H1106"]],[2,4,["H1121"]],[4,6,["H5811"]],[6,8,["H1121"]],[8,10,["H8087"]],[10,12,["H1121"]],[12,14,["H3100"]],[14,15,["H1931"]],[15,16,["H3427"]],[16,18,["H6177"]],[18,20,["H5704"]],[20,21,["H5015"]],[21,23,["H1186"]]]},{"k":10437,"v":[[0,2,["H4217"]],[2,4,["H3427"]],[4,5,["H5704"]],[5,8,["H935"]],[8,11,["H4057"]],[11,12,["H4480"]],[12,14,["H5104"]],[14,15,["H6578"]],[15,16,["H3588"]],[16,18,["H4735"]],[18,20,["H7235"]],[20,23,["H776"]],[23,25,["H1568"]]]},{"k":10438,"v":[[0,4,["H3117"]],[4,6,["H7586"]],[6,8,["H6213"]],[8,9,["H4421"]],[9,10,["H5973"]],[10,12,["H1905"]],[12,14,["H5307"]],[14,17,["H3027"]],[17,20,["H3427"]],[20,23,["H168"]],[23,25,["H5921","H3605","H6440"]],[25,27,["H4217"]],[27,30,["H1568"]]]},{"k":10439,"v":[[0,3,["H1121"]],[3,5,["H1410"]],[5,6,["H3427"]],[6,8,["H5048"]],[8,12,["H776"]],[12,14,["H1316"]],[14,15,["H5704"]],[15,16,["H5548"]]]},{"k":10440,"v":[[0,1,["H3100"]],[1,3,["H7218"]],[3,5,["H8223"]],[5,7,["H4932"]],[7,9,["H3285"]],[9,11,["H8202"]],[11,13,["H1316"]]]},{"k":10441,"v":[[0,3,["H251"]],[3,6,["H1004"]],[6,9,["H1"]],[9,11,["H4317"]],[11,13,["H4918"]],[13,15,["H7652"]],[15,17,["H3140"]],[17,19,["H3275"]],[19,21,["H2127"]],[21,23,["H5677"]],[23,24,["H7651"]]]},{"k":10442,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H32"]],[6,8,["H1121"]],[8,10,["H2359"]],[10,12,["H1121"]],[12,14,["H3386"]],[14,16,["H1121"]],[16,18,["H1568"]],[18,20,["H1121"]],[20,22,["H4317"]],[22,24,["H1121"]],[24,26,["H3454"]],[26,28,["H1121"]],[28,30,["H3163"]],[30,32,["H1121"]],[32,34,["H938"]]]},{"k":10443,"v":[[0,1,["H277"]],[1,3,["H1121"]],[3,5,["H5661"]],[5,7,["H1121"]],[7,9,["H1476"]],[9,10,["H7218"]],[10,13,["H1004"]],[13,16,["H1"]]]},{"k":10444,"v":[[0,3,["H3427"]],[3,5,["H1568"]],[5,7,["H1316"]],[7,11,["H1323"]],[11,14,["H3605"]],[14,16,["H4054"]],[16,18,["H8289"]],[18,19,["H5921"]],[19,21,["H8444"]]]},{"k":10445,"v":[[0,1,["H3605"]],[1,6,["H3187"]],[6,9,["H3117"]],[9,11,["H3147"]],[11,12,["H4428"]],[12,14,["H3063"]],[14,18,["H3117"]],[18,20,["H3379"]],[20,21,["H4428"]],[21,23,["H3478"]]]},{"k":10446,"v":[[0,2,["H1121"]],[2,4,["H7205"]],[4,7,["H1425"]],[7,9,["H2677"]],[9,11,["H7626"]],[11,13,["H4519"]],[13,14,["H4480"]],[14,16,["H1121","H2428"]],[16,17,["H376"]],[17,20,["H5375"]],[20,21,["H4043"]],[21,23,["H2719"]],[23,26,["H1869"]],[26,28,["H7198"]],[28,30,["H3925"]],[30,32,["H4421"]],[32,34,["H702"]],[34,36,["H705"]],[36,37,["H505"]],[37,38,["H7651"]],[38,39,["H3967"]],[39,41,["H8346"]],[41,44,["H3318"]],[44,47,["H6635"]]]},{"k":10447,"v":[[0,3,["H6213"]],[3,4,["H4421"]],[4,5,["H5973"]],[5,7,["H1905"]],[7,9,["H3195"]],[9,11,["H5305"]],[11,13,["H5114"]]]},{"k":10448,"v":[[0,4,["H5826"]],[4,5,["H5921"]],[5,9,["H1905"]],[9,11,["H5414"]],[11,14,["H3027"]],[14,16,["H3605"]],[16,19,["H7945","H5973"]],[19,21,["H3588"]],[21,23,["H2199"]],[23,25,["H430"]],[25,28,["H4421"]],[28,32,["H6279"]],[32,35,["H3588"]],[35,39,["H982"]],[39,41,[]]]},{"k":10449,"v":[[0,4,["H7617"]],[4,6,["H4735"]],[6,9,["H1581"]],[9,10,["H2572"]],[10,11,["H505"]],[11,14,["H6629"]],[14,16,["H3967"]],[16,18,["H2572"]],[18,19,["H505"]],[19,22,["H2543"]],[22,24,["H505"]],[24,27,["H5315","H120"]],[27,29,["H3967"]],[29,30,["H505"]]]},{"k":10450,"v":[[0,1,["H3588"]],[1,4,["H5307"]],[4,5,["H7227"]],[5,6,["H2491"]],[6,7,["H3588"]],[7,9,["H4421"]],[9,12,["H4480","H430"]],[12,15,["H3427"]],[15,18,["H8478"]],[18,19,["H5704"]],[19,21,["H1473"]]]},{"k":10451,"v":[[0,3,["H1121"]],[3,6,["H2677"]],[6,7,["H7626"]],[7,9,["H4519"]],[9,10,["H3427"]],[10,13,["H776"]],[13,14,["H1992"]],[14,15,["H7235"]],[15,17,["H4480","H1316"]],[17,18,["H5704"]],[18,19,["H1179"]],[19,21,["H8149"]],[21,24,["H2022"]],[24,25,["H2768"]]]},{"k":10452,"v":[[0,2,["H428"]],[2,5,["H7218"]],[5,8,["H1004"]],[8,11,["H1"]],[11,13,["H6081"]],[13,15,["H3469"]],[15,17,["H447"]],[17,19,["H5837"]],[19,21,["H3414"]],[21,23,["H1938"]],[23,25,["H3164"]],[25,26,["H1368"]],[26,27,["H376"]],[27,29,["H2428"]],[29,30,["H8034"]],[30,31,["H376"]],[31,33,["H7218"]],[33,36,["H1004"]],[36,39,["H1"]]]},{"k":10453,"v":[[0,3,["H4603"]],[3,6,["H430"]],[6,9,["H1"]],[9,13,["H2181"]],[13,14,["H310"]],[14,16,["H430"]],[16,19,["H5971"]],[19,22,["H776"]],[22,23,["H834"]],[23,24,["H430"]],[24,25,["H8045"]],[25,26,["H4480","H6440"]],[26,27,[]]]},{"k":10454,"v":[[0,3,["H430"]],[3,5,["H3478"]],[5,7,["H5782","(H853)"]],[7,9,["H7307"]],[9,11,["H6322"]],[11,12,["H4428"]],[12,14,["H804"]],[14,17,["H7307"]],[17,19,["H8407"]],[19,20,["H4428"]],[20,22,["H804"]],[22,27,["H1540"]],[27,30,["H7206"]],[30,33,["H1425"]],[33,36,["H2677"]],[36,37,["H7626"]],[37,39,["H4519"]],[39,41,["H935"]],[41,44,["H2477"]],[44,46,["H2249"]],[46,48,["H2024"]],[48,52,["H5104"]],[52,53,["H1470"]],[53,54,["H5704"]],[54,55,["H2088"]],[55,56,["H3117"]]]},{"k":10455,"v":[[0,2,["H1121"]],[2,4,["H3878"]],[4,5,["H1648"]],[5,6,["H6955"]],[6,8,["H4847"]]]},{"k":10456,"v":[[0,3,["H1121"]],[3,5,["H6955"]],[5,6,["H6019"]],[6,7,["H3324"]],[7,9,["H2275"]],[9,11,["H5816"]]]},{"k":10457,"v":[[0,3,["H1121"]],[3,5,["H6019"]],[5,6,["H175"]],[6,8,["H4872"]],[8,10,["H4813"]],[10,12,["H1121"]],[12,15,["H175"]],[15,16,["H5070"]],[16,18,["H30"]],[18,19,["H499"]],[19,21,["H385"]]]},{"k":10458,"v":[[0,1,["H499"]],[1,2,["H3205","(H853)"]],[2,3,["H6372"]],[3,4,["H6372"]],[4,5,["H3205","(H853)"]],[5,6,["H50"]]]},{"k":10459,"v":[[0,2,["H50"]],[2,3,["H3205","(H853)"]],[3,4,["H1231"]],[4,6,["H1231"]],[6,7,["H3205","(H853)"]],[7,8,["H5813"]]]},{"k":10460,"v":[[0,2,["H5813"]],[2,3,["H3205","(H853)"]],[3,4,["H2228"]],[4,6,["H2228"]],[6,7,["H3205","(H853)"]],[7,8,["H4812"]]]},{"k":10461,"v":[[0,1,["H4812"]],[1,2,["H3205","(H853)"]],[2,3,["H568"]],[3,5,["H568"]],[5,6,["H3205","(H853)"]],[6,7,["H285"]]]},{"k":10462,"v":[[0,2,["H285"]],[2,3,["H3205","(H853)"]],[3,4,["H6659"]],[4,6,["H6659"]],[6,7,["H3205","(H853)"]],[7,8,["H290"]]]},{"k":10463,"v":[[0,2,["H290"]],[2,3,["H3205","(H853)"]],[3,4,["H5838"]],[4,6,["H5838"]],[6,7,["H3205","(H853)"]],[7,8,["H3110"]]]},{"k":10464,"v":[[0,2,["H3110"]],[2,3,["H3205","(H853)"]],[3,4,["H5838"]],[4,5,["H1931"]],[5,8,["H834"]],[8,12,["H3547"]],[12,15,["H1004"]],[15,16,["H834"]],[16,17,["H8010"]],[17,18,["H1129"]],[18,20,["H3389"]]]},{"k":10465,"v":[[0,2,["H5838"]],[2,3,["H3205","(H853)"]],[3,4,["H568"]],[4,6,["H568"]],[6,7,["H3205","(H853)"]],[7,8,["H285"]]]},{"k":10466,"v":[[0,2,["H285"]],[2,3,["H3205","(H853)"]],[3,4,["H6659"]],[4,6,["H6659"]],[6,7,["H3205","(H853)"]],[7,8,["H7967"]]]},{"k":10467,"v":[[0,2,["H7967"]],[2,3,["H3205","(H853)"]],[3,4,["H2518"]],[4,6,["H2518"]],[6,7,["H3205","(H853)"]],[7,8,["H5838"]]]},{"k":10468,"v":[[0,2,["H5838"]],[2,3,["H3205","(H853)"]],[3,4,["H8304"]],[4,6,["H8304"]],[6,7,["H3205","(H853)"]],[7,8,["H3087"]]]},{"k":10469,"v":[[0,2,["H3087"]],[2,3,["H1980"]],[3,8,["H3068"]],[8,10,["H1540","(H853)"]],[10,11,["H3063"]],[11,13,["H3389"]],[13,16,["H3027"]],[16,18,["H5019"]]]},{"k":10470,"v":[[0,2,["H1121"]],[2,4,["H3878"]],[4,5,["H1648"]],[5,6,["H6955"]],[6,8,["H4847"]]]},{"k":10471,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H1121"]],[8,10,["H1648"]],[10,11,["H3845"]],[11,13,["H8096"]]]},{"k":10472,"v":[[0,3,["H1121"]],[3,5,["H6955"]],[5,7,["H6019"]],[7,9,["H3324"]],[9,11,["H2275"]],[11,13,["H5816"]]]},{"k":10473,"v":[[0,2,["H1121"]],[2,4,["H4847"]],[4,5,["H4249"]],[5,7,["H4187"]],[7,9,["H428"]],[9,12,["H4940"]],[12,15,["H3881"]],[15,19,["H1"]]]},{"k":10474,"v":[[0,2,["H1648"]],[2,3,["H3845"]],[3,5,["H1121"]],[5,6,["H3189"]],[6,8,["H1121"]],[8,9,["H2155"]],[9,11,["H1121"]]]},{"k":10475,"v":[[0,1,["H3098"]],[1,3,["H1121"]],[3,4,["H5714"]],[4,6,["H1121"]],[6,7,["H2226"]],[7,9,["H1121"]],[9,10,["H2979"]],[10,12,["H1121"]]]},{"k":10476,"v":[[0,2,["H1121"]],[2,4,["H6955"]],[4,5,["H5992"]],[5,7,["H1121"]],[7,8,["H7141"]],[8,10,["H1121"]],[10,11,["H617"]],[11,13,["H1121"]]]},{"k":10477,"v":[[0,1,["H511"]],[1,3,["H1121"]],[3,5,["H43"]],[5,7,["H1121"]],[7,9,["H617"]],[9,11,["H1121"]]]},{"k":10478,"v":[[0,1,["H8480"]],[1,3,["H1121"]],[3,4,["H222"]],[4,6,["H1121"]],[6,7,["H5818"]],[7,9,["H1121"]],[9,11,["H7586"]],[11,13,["H1121"]]]},{"k":10479,"v":[[0,3,["H1121"]],[3,5,["H511"]],[5,6,["H6022"]],[6,8,["H287"]]]},{"k":10480,"v":[[0,3,["H511"]],[3,5,["H1121"]],[5,7,["H511"]],[7,8,["H6689"]],[8,10,["H1121"]],[10,12,["H5184"]],[12,14,["H1121"]]]},{"k":10481,"v":[[0,1,["H446"]],[1,3,["H1121"]],[3,4,["H3395"]],[4,6,["H1121"]],[6,7,["H511"]],[7,9,["H1121"]]]},{"k":10482,"v":[[0,3,["H1121"]],[3,5,["H8050"]],[5,7,["H1060"]],[7,8,["H2059"]],[8,10,["H29"]]]},{"k":10483,"v":[[0,2,["H1121"]],[2,4,["H4847"]],[4,5,["H4249"]],[5,6,["H3845"]],[6,8,["H1121"]],[8,9,["H8096"]],[9,11,["H1121"]],[11,12,["H5798"]],[12,14,["H1121"]]]},{"k":10484,"v":[[0,1,["H8092"]],[1,3,["H1121"]],[3,4,["H2293"]],[4,6,["H1121"]],[6,7,["H6222"]],[7,9,["H1121"]]]},{"k":10485,"v":[[0,2,["H428"]],[2,5,["H834"]],[5,6,["H1732"]],[6,7,["H5975"]],[7,8,["H5921"]],[8,10,["H3027"]],[10,12,["H7892"]],[12,15,["H1004"]],[15,18,["H3068"]],[18,22,["H4480","H727"]],[22,24,["H4480","H4494"]]]},{"k":10486,"v":[[0,3,["H1961","H8334"]],[3,4,["H6440"]],[4,7,["H4908"]],[7,10,["H168"]],[10,13,["H4150"]],[13,15,["H7892"]],[15,16,["H5704"]],[16,17,["H8010"]],[17,19,["H1129","(H853)"]],[19,21,["H1004"]],[21,24,["H3068"]],[24,26,["H3389"]],[26,30,["H5975"]],[30,31,["H5921"]],[31,33,["H5656"]],[33,37,["H4941"]]]},{"k":10487,"v":[[0,2,["H428"]],[2,6,["H5975"]],[6,9,["H1121"]],[9,12,["H4480","H1121"]],[12,15,["H6956"]],[15,16,["H1968"]],[16,18,["H7891"]],[18,20,["H1121"]],[20,22,["H3100"]],[22,24,["H1121"]],[24,26,["H8050"]]]},{"k":10488,"v":[[0,2,["H1121"]],[2,4,["H511"]],[4,6,["H1121"]],[6,8,["H3395"]],[8,10,["H1121"]],[10,12,["H447"]],[12,14,["H1121"]],[14,16,["H8430"]]]},{"k":10489,"v":[[0,2,["H1121"]],[2,4,["H6689"]],[4,6,["H1121"]],[6,8,["H511"]],[8,10,["H1121"]],[10,12,["H4287"]],[12,14,["H1121"]],[14,16,["H6022"]]]},{"k":10490,"v":[[0,2,["H1121"]],[2,4,["H511"]],[4,6,["H1121"]],[6,8,["H3100"]],[8,10,["H1121"]],[10,12,["H5838"]],[12,14,["H1121"]],[14,16,["H6846"]]]},{"k":10491,"v":[[0,2,["H1121"]],[2,4,["H8480"]],[4,6,["H1121"]],[6,8,["H617"]],[8,10,["H1121"]],[10,12,["H43"]],[12,14,["H1121"]],[14,16,["H7141"]]]},{"k":10492,"v":[[0,2,["H1121"]],[2,4,["H3324"]],[4,6,["H1121"]],[6,8,["H6955"]],[8,10,["H1121"]],[10,12,["H3878"]],[12,14,["H1121"]],[14,16,["H3478"]]]},{"k":10493,"v":[[0,3,["H251"]],[3,4,["H623"]],[4,6,["H5975"]],[6,7,["H5921"]],[7,10,["H3225"]],[10,12,["H623"]],[12,14,["H1121"]],[14,16,["H1296"]],[16,18,["H1121"]],[18,20,["H8092"]]]},{"k":10494,"v":[[0,2,["H1121"]],[2,4,["H4317"]],[4,6,["H1121"]],[6,8,["H1202"]],[8,10,["H1121"]],[10,12,["H4441"]]]},{"k":10495,"v":[[0,2,["H1121"]],[2,4,["H867"]],[4,6,["H1121"]],[6,8,["H2226"]],[8,10,["H1121"]],[10,12,["H5718"]]]},{"k":10496,"v":[[0,2,["H1121"]],[2,4,["H387"]],[4,6,["H1121"]],[6,8,["H2155"]],[8,10,["H1121"]],[10,12,["H8096"]]]},{"k":10497,"v":[[0,2,["H1121"]],[2,4,["H3189"]],[4,6,["H1121"]],[6,8,["H1648"]],[8,10,["H1121"]],[10,12,["H3878"]]]},{"k":10498,"v":[[0,3,["H251"]],[3,5,["H1121"]],[5,7,["H4847"]],[7,9,["H5921"]],[9,12,["H8040"]],[12,13,["H387"]],[13,15,["H1121"]],[15,17,["H7029"]],[17,19,["H1121"]],[19,21,["H5660"]],[21,23,["H1121"]],[23,25,["H4409"]]]},{"k":10499,"v":[[0,2,["H1121"]],[2,4,["H2811"]],[4,6,["H1121"]],[6,8,["H558"]],[8,10,["H1121"]],[10,12,["H2518"]]]},{"k":10500,"v":[[0,2,["H1121"]],[2,4,["H557"]],[4,6,["H1121"]],[6,8,["H1137"]],[8,10,["H1121"]],[10,12,["H8106"]]]},{"k":10501,"v":[[0,2,["H1121"]],[2,4,["H4249"]],[4,6,["H1121"]],[6,8,["H4187"]],[8,10,["H1121"]],[10,12,["H4847"]],[12,14,["H1121"]],[14,16,["H3878"]]]},{"k":10502,"v":[[0,2,["H251"]],[2,5,["H3881"]],[5,7,["H5414"]],[7,10,["H3605"]],[10,12,["H5656"]],[12,15,["H4908"]],[15,18,["H1004"]],[18,20,["H430"]]]},{"k":10503,"v":[[0,2,["H175"]],[2,5,["H1121"]],[5,6,["H6999"]],[6,7,["H5921"]],[7,9,["H4196"]],[9,13,["H5930"]],[13,15,["H5921"]],[15,17,["H4196"]],[17,19,["H7004"]],[19,24,["H3605"]],[24,26,["H4399"]],[26,31,["H6944","H6944"]],[31,36,["H3722"]],[36,37,["H5921"]],[37,38,["H3478"]],[38,41,["H3605"]],[41,42,["H834"]],[42,43,["H4872"]],[43,45,["H5650"]],[45,47,["H430"]],[47,49,["H6680"]]]},{"k":10504,"v":[[0,2,["H428"]],[2,5,["H1121"]],[5,7,["H175"]],[7,8,["H499"]],[8,10,["H1121"]],[10,11,["H6372"]],[11,13,["H1121"]],[13,14,["H50"]],[14,16,["H1121"]]]},{"k":10505,"v":[[0,1,["H1231"]],[1,3,["H1121"]],[3,4,["H5813"]],[4,6,["H1121"]],[6,7,["H2228"]],[7,9,["H1121"]]]},{"k":10506,"v":[[0,1,["H4812"]],[1,3,["H1121"]],[3,4,["H568"]],[4,6,["H1121"]],[6,7,["H285"]],[7,9,["H1121"]]]},{"k":10507,"v":[[0,1,["H6659"]],[1,3,["H1121"]],[3,4,["H290"]],[4,6,["H1121"]]]},{"k":10508,"v":[[0,2,["H428"]],[2,6,["H4186"]],[6,9,["H2918"]],[9,12,["H1366"]],[12,15,["H1121"]],[15,17,["H175"]],[17,20,["H4940"]],[20,23,["H6956"]],[23,24,["H3588"]],[24,26,["H1961"]],[26,28,["H1486"]]]},{"k":10509,"v":[[0,3,["H5414"]],[3,4,["(H853)"]],[4,5,["H2275"]],[5,8,["H776"]],[8,10,["H3063"]],[10,13,["H4054"]],[13,16,["H5439"]],[16,17,[]]]},{"k":10510,"v":[[0,3,["H7704"]],[3,6,["H5892"]],[6,9,["H2691"]],[9,12,["H5414"]],[12,14,["H3612"]],[14,16,["H1121"]],[16,18,["H3312"]]]},{"k":10511,"v":[[0,4,["H1121"]],[4,6,["H175"]],[6,8,["H5414","(H853)"]],[8,10,["H5892"]],[10,12,["H3063"]],[12,13,["(H853)"]],[13,14,["H2275"]],[14,18,["H4733"]],[18,20,["H3841"]],[20,23,["H4054"]],[23,25,["H3492"]],[25,27,["H851"]],[27,30,["H4054"]]]},{"k":10512,"v":[[0,2,["H2432"]],[2,5,["H4054","(H853)"]],[5,6,["H1688"]],[6,9,["H4054"]]]},{"k":10513,"v":[[0,2,["H6228"]],[2,5,["H4054"]],[5,7,["H1053"]],[7,10,["H4054"]]]},{"k":10514,"v":[[0,5,["H4480","H4294"]],[5,7,["H1144","(H853)"]],[7,8,["H1387"]],[8,11,["H4054"]],[11,13,["H5964"]],[13,16,["H4054"]],[16,18,["H6068"]],[18,21,["H4054"]],[21,22,["H3605"]],[22,24,["H5892"]],[24,27,["H4940"]],[27,29,["H7969","H6240"]],[29,30,["H5892"]]]},{"k":10515,"v":[[0,4,["H1121"]],[4,6,["H6955"]],[6,9,["H3498"]],[9,12,["H4480","H4940"]],[12,15,["H4294"]],[15,22,["H4480","H2677"]],[22,23,["H4294"]],[23,28,["H4276"]],[28,31,["H4519"]],[31,33,["H1486"]],[33,34,["H6235"]],[34,35,["H5892"]]]},{"k":10516,"v":[[0,4,["H1121"]],[4,6,["H1648"]],[6,9,["H4940"]],[9,13,["H4480","H4294"]],[13,15,["H3485"]],[15,20,["H4480","H4294"]],[20,22,["H836"]],[22,27,["H4480","H4294"]],[27,29,["H5321"]],[29,34,["H4480","H4294"]],[34,36,["H4519"]],[36,38,["H1316"]],[38,39,["H7969","H6240"]],[39,40,["H5892"]]]},{"k":10517,"v":[[0,3,["H1121"]],[3,5,["H4847"]],[5,9,["H1486"]],[9,12,["H4940"]],[12,16,["H4480","H4294"]],[16,18,["H7205"]],[18,23,["H4480","H4294"]],[23,25,["H1410"]],[25,30,["H4480","H4294"]],[30,32,["H2074"]],[32,33,["H8147","H6240"]],[33,34,["H5892"]]]},{"k":10518,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5414"]],[6,9,["H3881"]],[9,10,["(H853)"]],[10,11,["H5892"]],[11,14,["H4054"]]]},{"k":10519,"v":[[0,3,["H5414"]],[3,5,["H1486"]],[5,9,["H4480","H4294"]],[9,12,["H1121"]],[12,14,["H3063"]],[14,19,["H4480","H4294"]],[19,22,["H1121"]],[22,24,["H8095"]],[24,29,["H4480","H4294"]],[29,32,["H1121"]],[32,34,["H1144","(H853)"]],[34,35,["H428"]],[35,36,["H5892"]],[36,37,["H834"]],[37,39,["H7121"]],[39,42,["H8034"]]]},{"k":10520,"v":[[0,6,["H4480","H4940"]],[6,9,["H1121"]],[9,11,["H6955"]],[11,12,["H1961"]],[12,13,["H5892"]],[13,16,["H1366"]],[16,20,["H4480","H4294"]],[20,22,["H669"]]]},{"k":10521,"v":[[0,3,["H5414"]],[3,6,["(H853)"]],[6,8,["H5892"]],[8,10,["H4733","(H853)"]],[10,11,["H7927"]],[11,13,["H2022"]],[13,14,["H669"]],[14,17,["H4054"]],[17,21,["H1507"]],[21,24,["H4054"]]]},{"k":10522,"v":[[0,2,["H3361"]],[2,5,["H4054"]],[5,7,["H1032"]],[7,10,["H4054"]]]},{"k":10523,"v":[[0,2,["H357"]],[2,5,["H4054"]],[5,7,["H1667"]],[7,10,["H4054"]]]},{"k":10524,"v":[[0,3,["H4480"]],[3,5,["H4276"]],[5,6,["H4294"]],[6,8,["H4519","(H853)"]],[8,9,["H6063"]],[9,12,["H4054"]],[12,14,["H1109"]],[14,17,["H4054"]],[17,20,["H4940"]],[20,23,["H3498"]],[23,26,["H1121"]],[26,28,["H6955"]]]},{"k":10525,"v":[[0,3,["H1121"]],[3,5,["H1648"]],[5,11,["H4480","H4940"]],[11,14,["H2677"]],[14,15,["H4294"]],[15,17,["H4519","(H853)"]],[17,18,["H1474"]],[18,20,["H1316"]],[20,23,["H4054"]],[23,25,["H6252"]],[25,28,["H4054"]]]},{"k":10526,"v":[[0,5,["H4480","H4294"]],[5,7,["H3485","(H853)"]],[7,8,["H6943"]],[8,11,["H4054","(H853)"]],[11,12,["H1705"]],[12,15,["H4054"]]]},{"k":10527,"v":[[0,2,["H7216"]],[2,5,["H4054"]],[5,7,["H6046"]],[7,10,["H4054"]]]},{"k":10528,"v":[[0,5,["H4480","H4294"]],[5,7,["H836","(H853)"]],[7,8,["H4913"]],[8,11,["H4054"]],[11,13,["H5658"]],[13,16,["H4054"]]]},{"k":10529,"v":[[0,2,["H2712"]],[2,5,["H4054"]],[5,7,["H7340"]],[7,10,["H4054"]]]},{"k":10530,"v":[[0,5,["H4480","H4294"]],[5,7,["H5321","(H853)"]],[7,8,["H6943"]],[8,10,["H1551"]],[10,13,["H4054"]],[13,15,["H2540"]],[15,18,["H4054"]],[18,20,["H7156"]],[20,23,["H4054"]]]},{"k":10531,"v":[[0,3,["H3498"]],[3,6,["H1121"]],[6,8,["H4847"]],[8,14,["H4480","H4294"]],[14,16,["H2074","(H853)"]],[16,17,["H7417"]],[17,20,["H4054","(H853)"]],[20,21,["H8396"]],[21,24,["H4054"]]]},{"k":10532,"v":[[0,5,["H4480","H5676"]],[5,6,["H3383"]],[6,8,["H3405"]],[8,12,["H4217"]],[12,14,["H3383"]],[14,21,["H4480","H4294"]],[21,23,["H7205","(H853)"]],[23,24,["H1221"]],[24,27,["H4057"]],[27,30,["H4054"]],[30,32,["H3096"]],[32,35,["H4054"]]]},{"k":10533,"v":[[0,1,["H6932"]],[1,5,["H4054"]],[5,7,["H4158"]],[7,10,["H4054"]]]},{"k":10534,"v":[[0,5,["H4480","H4294"]],[5,7,["H1410","(H853)"]],[7,8,["H7216"]],[8,10,["H1568"]],[10,13,["H4054"]],[13,15,["H4266"]],[15,18,["H4054"]]]},{"k":10535,"v":[[0,2,["H2809"]],[2,5,["H4054"]],[5,7,["H3270"]],[7,10,["H4054"]]]},{"k":10536,"v":[[0,3,["H1121"]],[3,5,["H3485"]],[5,7,["H8439"]],[7,9,["H6312"]],[9,10,["H3437"]],[10,12,["H8110"]],[12,13,["H702"]]]},{"k":10537,"v":[[0,3,["H1121"]],[3,5,["H8439"]],[5,6,["H5813"]],[6,8,["H7509"]],[8,10,["H3400"]],[10,12,["H3181"]],[12,14,["H3005"]],[14,16,["H8050"]],[16,17,["H7218"]],[17,20,["H1"]],[20,21,["H1004"]],[21,25,["H8439"]],[25,29,["H1368"]],[29,31,["H2428"]],[31,34,["H8435"]],[34,36,["H4557"]],[36,40,["H3117"]],[40,42,["H1732"]],[42,43,["H8147"]],[43,45,["H6242"]],[45,46,["H505"]],[46,48,["H8337"]],[48,49,["H3967"]]]},{"k":10538,"v":[[0,3,["H1121"]],[3,5,["H5813"]],[5,6,["H3156"]],[6,9,["H1121"]],[9,11,["H3156"]],[11,12,["H4317"]],[12,14,["H5662"]],[14,16,["H3100"]],[16,17,["H3449"]],[17,18,["H2568"]],[18,19,["H3605"]],[19,22,["H7218"]],[22,23,[]]]},{"k":10539,"v":[[0,2,["H5921"]],[2,6,["H8435"]],[6,9,["H1004"]],[9,12,["H1"]],[12,14,["H1416"]],[14,16,["H6635"]],[16,18,["H4421"]],[18,19,["H8337"]],[19,21,["H7970"]],[21,22,["H505"]],[22,24,["H3588"]],[24,27,["H7235"]],[27,28,["H802"]],[28,30,["H1121"]]]},{"k":10540,"v":[[0,3,["H251"]],[3,5,["H3605"]],[5,7,["H4940"]],[7,9,["H3485"]],[9,12,["H1368"]],[12,14,["H2428"]],[14,20,["H3187","H3605"]],[20,21,["H8084"]],[21,23,["H7651"]],[23,24,["H505"]]]},{"k":10541,"v":[[0,4,["H1144"]],[4,5,["H1106"]],[5,7,["H1071"]],[7,9,["H3043"]],[9,10,["H7969"]]]},{"k":10542,"v":[[0,3,["H1121"]],[3,5,["H1106"]],[5,6,["H675"]],[6,8,["H5813"]],[8,10,["H5816"]],[10,12,["H3406"]],[12,14,["H5901"]],[14,15,["H2568"]],[15,16,["H7218"]],[16,19,["H1004"]],[19,22,["H1"]],[22,24,["H1368"]],[24,26,["H2428"]],[26,32,["H3187"]],[32,33,["H6242"]],[33,35,["H8147"]],[35,36,["H505"]],[36,38,["H7970"]],[38,40,["H702"]]]},{"k":10543,"v":[[0,3,["H1121"]],[3,5,["H1071"]],[5,6,["H2160"]],[6,8,["H3135"]],[8,10,["H461"]],[10,12,["H454"]],[12,14,["H6018"]],[14,16,["H3406"]],[16,18,["H29"]],[18,20,["H6068"]],[20,22,["H5964"]],[22,23,["H3605"]],[23,24,["H428"]],[24,27,["H1121"]],[27,29,["H1071"]]]},{"k":10544,"v":[[0,3,["H3187"]],[3,8,["H3187"]],[8,11,["H8435"]],[11,12,["H7218"]],[12,15,["H1004"]],[15,18,["H1"]],[18,20,["H1368"]],[20,22,["H2428"]],[22,24,["H6242"]],[24,25,["H505"]],[25,28,["H3967"]]]},{"k":10545,"v":[[0,2,["H1121"]],[2,5,["H3043"]],[5,6,["H1092"]],[6,9,["H1121"]],[9,11,["H1092"]],[11,12,["H3266"]],[12,14,["H1144"]],[14,16,["H164"]],[16,18,["H3668"]],[18,20,["H2133"]],[20,22,["H8659"]],[22,24,["H300"]]]},{"k":10546,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,4,["H1121"]],[4,6,["H3043"]],[6,9,["H7218"]],[9,12,["H1"]],[12,14,["H1368"]],[14,16,["H2428"]],[16,18,["H7651","H6240"]],[18,19,["H505"]],[19,22,["H3967"]],[22,27,["H3318"]],[27,29,["H6635"]],[29,31,["H4421"]]]},{"k":10547,"v":[[0,1,["H8206"]],[1,4,["H2650"]],[4,6,["H1121"]],[6,8,["H5893"]],[8,10,["H2366"]],[10,12,["H1121"]],[12,14,["H313"]]]},{"k":10548,"v":[[0,2,["H1121"]],[2,4,["H5321"]],[4,5,["H3185"]],[5,7,["H1476"]],[7,9,["H3337"]],[9,11,["H7967"]],[11,13,["H1121"]],[13,15,["H1090"]]]},{"k":10549,"v":[[0,2,["H1121"]],[2,4,["H4519"]],[4,5,["H844"]],[5,6,["H834"]],[6,8,["H3205"]],[8,11,["H6370"]],[11,13,["H761"]],[13,14,["H3205","(H853)"]],[14,15,["H4353"]],[15,17,["H1"]],[17,19,["H1568"]]]},{"k":10550,"v":[[0,2,["H4353"]],[2,3,["H3947"]],[3,5,["H802"]],[5,9,["H2650"]],[9,11,["H8206"]],[11,13,["H269"]],[13,14,["H8034"]],[14,16,["H4601"]],[16,19,["H8034"]],[19,22,["H8145"]],[22,24,["H6765"]],[24,26,["H6765"]],[26,27,["H1961"]],[27,28,["H1323"]]]},{"k":10551,"v":[[0,2,["H4601"]],[2,4,["H802"]],[4,6,["H4353"]],[6,7,["H3205"]],[7,9,["H1121"]],[9,12,["H7121"]],[12,14,["H8034"]],[14,15,["H6570"]],[15,18,["H8034"]],[18,21,["H251"]],[21,23,["H8329"]],[23,26,["H1121"]],[26,28,["H198"]],[28,30,["H7552"]]]},{"k":10552,"v":[[0,3,["H1121"]],[3,5,["H198"]],[5,6,["H917"]],[6,7,["H428"]],[7,10,["H1121"]],[10,12,["H1568"]],[12,14,["H1121"]],[14,16,["H4353"]],[16,18,["H1121"]],[18,20,["H4519"]]]},{"k":10553,"v":[[0,3,["H269"]],[3,4,["H4447"]],[4,5,["H3205","(H853)"]],[5,6,["H379"]],[6,8,["H44"]],[8,10,["H4244"]]]},{"k":10554,"v":[[0,3,["H1121"]],[3,5,["H8061"]],[5,6,["H1961"]],[6,7,["H291"]],[7,9,["H7928"]],[9,11,["H3949"]],[11,13,["H593"]]]},{"k":10555,"v":[[0,3,["H1121"]],[3,5,["H669"]],[5,6,["H7803"]],[6,8,["H1260"]],[8,10,["H1121"]],[10,12,["H8480"]],[12,14,["H1121"]],[14,16,["H497"]],[16,18,["H1121"]],[18,20,["H8480"]],[20,22,["H1121"]]]},{"k":10556,"v":[[0,2,["H2066"]],[2,4,["H1121"]],[4,6,["H7803"]],[6,8,["H1121"]],[8,10,["H5827"]],[10,12,["H496"]],[12,15,["H376"]],[15,17,["H1661"]],[17,20,["H3205"]],[20,23,["H776"]],[23,24,["H2026"]],[24,25,["H3588"]],[25,28,["H3381"]],[28,31,["H3947","(H853)"]],[31,33,["H4735"]]]},{"k":10557,"v":[[0,2,["H669"]],[2,4,["H1"]],[4,5,["H56"]],[5,6,["H7227"]],[6,7,["H3117"]],[7,10,["H251"]],[10,11,["H935"]],[11,13,["H5162"]],[13,14,[]]]},{"k":10558,"v":[[0,5,["H935"]],[5,6,["H413"]],[6,8,["H802"]],[8,10,["H2030"]],[10,12,["H3205"]],[12,14,["H1121"]],[14,17,["H7121","(H853)"]],[17,19,["H8034"]],[19,20,["H1283"]],[20,21,["H3588"]],[21,23,["H1961"]],[23,24,["H7451"]],[24,27,["H1004"]]]},{"k":10559,"v":[[0,3,["H1323"]],[3,5,["H7609"]],[5,7,["H1129","(H853)"]],[7,8,["H1032"]],[8,10,["H8481"]],[10,13,["H5945"]],[13,15,["H242"]]]},{"k":10560,"v":[[0,2,["H7506"]],[2,5,["H1121"]],[5,7,["H7566"]],[7,9,["H8520"]],[9,11,["H1121"]],[11,13,["H8465"]],[13,15,["H1121"]]]},{"k":10561,"v":[[0,1,["H3936"]],[1,3,["H1121"]],[3,4,["H5989"]],[4,6,["H1121"]],[6,7,["H476"]],[7,9,["H1121"]]]},{"k":10562,"v":[[0,1,["H5126"]],[1,3,["H1121"]],[3,4,["H3091"]],[4,6,["H1121"]]]},{"k":10563,"v":[[0,3,["H272"]],[3,5,["H4186"]],[5,7,["H1008"]],[7,10,["H1323"]],[10,13,["H4217"]],[13,14,["H5295"]],[14,16,["H4628"]],[16,17,["H1507"]],[17,20,["H1323"]],[20,22,["H7927"]],[22,26,["H1323"]],[26,28,["H5704"]],[28,29,["H5804"]],[29,32,["H1323"]],[32,33,[]]]},{"k":10564,"v":[[0,2,["H5921"]],[2,4,["H3027"]],[4,7,["H1121"]],[7,9,["H4519"]],[9,10,["H1052"]],[10,13,["H1323"]],[13,14,["H8590"]],[14,17,["H1323"]],[17,18,["H4023"]],[18,21,["H1323"]],[21,22,["H1756"]],[22,25,["H1323"]],[25,27,["H428"]],[27,28,["H3427"]],[28,30,["H1121"]],[30,32,["H3130"]],[32,34,["H1121"]],[34,36,["H3478"]]]},{"k":10565,"v":[[0,2,["H1121"]],[2,4,["H836"]],[4,5,["H3232"]],[5,7,["H3440"]],[7,9,["H3440"]],[9,11,["H1283"]],[11,13,["H8294"]],[13,15,["H269"]]]},{"k":10566,"v":[[0,3,["H1121"]],[3,5,["H1283"]],[5,6,["H2268"]],[6,8,["H4439"]],[8,9,["H1931"]],[9,12,["H1"]],[12,14,["H1269"]]]},{"k":10567,"v":[[0,2,["H2268"]],[2,3,["H3205","(H853)"]],[3,4,["H3310"]],[4,6,["H7763"]],[6,8,["H2369"]],[8,10,["H7774"]],[10,12,["H269"]]]},{"k":10568,"v":[[0,3,["H1121"]],[3,5,["H3310"]],[5,6,["H6457"]],[6,8,["H1118"]],[8,10,["H6220"]],[10,11,["H428"]],[11,14,["H1121"]],[14,16,["H3310"]]]},{"k":10569,"v":[[0,3,["H1121"]],[3,5,["H8106"]],[5,6,["H277"]],[6,8,["H7303"]],[8,9,["H3160"]],[9,11,["H758"]]]},{"k":10570,"v":[[0,3,["H1121"]],[3,6,["H251"]],[6,7,["H1987"]],[7,8,["H6690"]],[8,10,["H3234"]],[10,12,["H8028"]],[12,14,["H6000"]]]},{"k":10571,"v":[[0,2,["H1121"]],[2,4,["H6690"]],[4,5,["H5477"]],[5,7,["H2774"]],[7,9,["H7777"]],[9,11,["H1275"]],[11,13,["H3236"]]]},{"k":10572,"v":[[0,1,["H1221"]],[1,3,["H1936"]],[3,5,["H8037"]],[5,7,["H8030"]],[7,9,["H3506"]],[9,11,["H878"]]]},{"k":10573,"v":[[0,3,["H1121"]],[3,5,["H3500"]],[5,6,["H3312"]],[6,8,["H6462"]],[8,10,["H690"]]]},{"k":10574,"v":[[0,3,["H1121"]],[3,5,["H5925"]],[5,6,["H733"]],[6,8,["H2592"]],[8,10,["H7525"]]]},{"k":10575,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,5,["H1121"]],[5,7,["H836"]],[7,8,["H7218"]],[8,11,["H1"]],[11,12,["H1004"]],[12,13,["H1305"]],[13,16,["H1368"]],[16,18,["H2428"]],[18,19,["H7218"]],[19,22,["H5387"]],[22,28,["H3187","H4557"]],[28,36,["H6635"]],[36,39,["H4421"]],[39,41,["H6242"]],[41,43,["H8337"]],[43,44,["H505"]],[44,45,["H376"]]]},{"k":10576,"v":[[0,2,["H1144"]],[2,3,["H3205","(H853)"]],[3,4,["H1106"]],[4,6,["H1060"]],[6,7,["H788"]],[7,9,["H8145"]],[9,11,["H315"]],[11,13,["H7992"]]]},{"k":10577,"v":[[0,1,["H5119"]],[1,3,["H7243"]],[3,5,["H7498"]],[5,7,["H2549"]]]},{"k":10578,"v":[[0,3,["H1121"]],[3,5,["H1106"]],[5,6,["H1961"]],[6,7,["H146"]],[7,9,["H1617"]],[9,11,["H31"]]]},{"k":10579,"v":[[0,2,["H50"]],[2,4,["H5283"]],[4,6,["H265"]]]},{"k":10580,"v":[[0,2,["H1617"]],[2,4,["H8197"]],[4,6,["H2361"]]]},{"k":10581,"v":[[0,2,["H428"]],[2,5,["H1121"]],[5,7,["H261"]],[7,8,["H428"]],[8,11,["H7218"]],[11,14,["H1"]],[14,17,["H3427"]],[17,19,["H1387"]],[19,22,["H1540"]],[22,24,["H413"]],[24,25,["H4506"]]]},{"k":10582,"v":[[0,2,["H5283"]],[2,4,["H281"]],[4,6,["H1617"]],[6,7,["H1931"]],[7,8,["H1540"]],[8,11,["H3205","(H853)"]],[11,12,["H5798"]],[12,14,["H284"]]]},{"k":10583,"v":[[0,2,["H7842"]],[2,3,["H3205"]],[3,7,["H7704"]],[7,9,["H4124"]],[9,10,["H4480"]],[10,15,["H7971","(H853)"]],[15,16,["H2366"]],[16,18,["H1199"]],[18,21,["H802"]]]},{"k":10584,"v":[[0,3,["H3205"]],[3,4,["H4480"]],[4,5,["H2321"]],[5,7,["H802","(H853)"]],[7,8,["H3103"]],[8,10,["H6644"]],[10,12,["H4331"]],[12,14,["H4445"]]]},{"k":10585,"v":[[0,2,["H3263"]],[2,4,["H7634"]],[4,6,["H4821"]],[6,7,["H428"]],[7,10,["H1121"]],[10,11,["H7218"]],[11,14,["H1"]]]},{"k":10586,"v":[[0,3,["H4480","H2366"]],[3,5,["H3205","(H853)"]],[5,6,["H36"]],[6,8,["H508"]]]},{"k":10587,"v":[[0,2,["H1121"]],[2,4,["H508"]],[4,5,["H5677"]],[5,7,["H4936"]],[7,9,["H8106"]],[9,10,["H1931"]],[10,11,["H1129","(H853)"]],[11,12,["H207"]],[12,14,["H3850"]],[14,17,["H1323"]],[17,18,[]]]},{"k":10588,"v":[[0,1,["H1283"]],[1,4,["H8087"]],[4,5,["H1992"]],[5,7,["H7218"]],[7,10,["H1"]],[10,13,["H3427"]],[13,15,["H357"]],[15,16,["H1992"]],[16,18,["H1272","(H853)"]],[18,20,["H3427"]],[20,22,["H1661"]]]},{"k":10589,"v":[[0,2,["H283"]],[2,3,["H8349"]],[3,5,["H3406"]]]},{"k":10590,"v":[[0,2,["H2069"]],[2,4,["H6166"]],[4,6,["H5738"]]]},{"k":10591,"v":[[0,2,["H4317"]],[2,4,["H3472"]],[4,6,["H3109"]],[6,8,["H1121"]],[8,10,["H1283"]]]},{"k":10592,"v":[[0,2,["H2069"]],[2,4,["H4918"]],[4,6,["H2395"]],[6,8,["H2268"]]]},{"k":10593,"v":[[0,1,["H3461"]],[1,4,["H3152"]],[4,6,["H3103"]],[6,8,["H1121"]],[8,10,["H508"]]]},{"k":10594,"v":[[0,2,["H3356"]],[2,4,["H2147"]],[4,6,["H2067"]]]},{"k":10595,"v":[[0,2,["H462"]],[2,4,["H6769"]],[4,6,["H447"]]]},{"k":10596,"v":[[0,2,["H5718"]],[2,4,["H1256"]],[4,6,["H8119"]],[6,8,["H1121"]],[8,10,["H8096"]]]},{"k":10597,"v":[[0,2,["H3473"]],[2,4,["H5677"]],[4,6,["H447"]]]},{"k":10598,"v":[[0,2,["H5658"]],[2,4,["H2147"]],[4,6,["H2605"]]]},{"k":10599,"v":[[0,2,["H2608"]],[2,4,["H5867"]],[4,6,["H6070"]]]},{"k":10600,"v":[[0,2,["H3301"]],[2,4,["H6439"]],[4,6,["H1121"]],[6,8,["H8349"]]]},{"k":10601,"v":[[0,2,["H8125"]],[2,4,["H7841"]],[4,6,["H6271"]]]},{"k":10602,"v":[[0,2,["H3298"]],[2,4,["H452"]],[4,6,["H2147"]],[6,8,["H1121"]],[8,10,["H3395"]]]},{"k":10603,"v":[[0,1,["H428"]],[1,3,["H7218"]],[3,6,["H1"]],[6,9,["H8435"]],[9,10,["H7218"]],[10,12,["H428"]],[12,13,["H3427"]],[13,15,["H3389"]]]},{"k":10604,"v":[[0,3,["H1391"]],[3,4,["H3427"]],[4,6,["H1"]],[6,8,["H1391"]],[8,10,["H802"]],[10,11,["H8034"]],[11,13,["H4601"]]]},{"k":10605,"v":[[0,3,["H1060"]],[3,4,["H1121"]],[4,5,["H5658"]],[5,7,["H6698"]],[7,9,["H7027"]],[9,11,["H1168"]],[11,13,["H5070"]]]},{"k":10606,"v":[[0,2,["H1446"]],[2,4,["H283"]],[4,6,["H2144"]]]},{"k":10607,"v":[[0,2,["H4732"]],[2,3,["H3205","(H853)"]],[3,4,["H8039"]],[4,6,["H1992"]],[6,7,["H637"]],[7,8,["H3427"]],[8,9,["H5973"]],[9,11,["H251"]],[11,13,["H3389"]],[13,15,["H5048"]],[15,16,[]]]},{"k":10608,"v":[[0,2,["H5369"]],[2,3,["H3205","(H853)"]],[3,4,["H7027"]],[4,6,["H7027"]],[6,7,["H3205","(H853)"]],[7,8,["H7586"]],[8,10,["H7586"]],[10,11,["H3205","(H853)"]],[11,12,["H3083"]],[12,14,["H4444"]],[14,16,["H41"]],[16,18,["H792"]]]},{"k":10609,"v":[[0,3,["H1121"]],[3,5,["H3083"]],[5,7,["H4807"]],[7,9,["H4807"]],[9,10,["H3205","(H853)"]],[10,11,["H4318"]]]},{"k":10610,"v":[[0,3,["H1121"]],[3,5,["H4318"]],[5,7,["H6377"]],[7,9,["H4429"]],[9,11,["H8390"]],[11,13,["H271"]]]},{"k":10611,"v":[[0,2,["H271"]],[2,3,["H3205","(H853)"]],[3,4,["H3085"]],[4,6,["H3085"]],[6,7,["H3205","(H853)"]],[7,8,["H5964"]],[8,10,["H5820"]],[10,12,["H2174"]],[12,14,["H2174"]],[14,15,["H3205","(H853)"]],[15,16,["H4162"]]]},{"k":10612,"v":[[0,2,["H4162"]],[2,3,["H3205","(H853)"]],[3,4,["H1150"]],[4,5,["H7498"]],[5,8,["H1121"]],[8,9,["H501"]],[9,11,["H1121"]],[11,12,["H682"]],[12,14,["H1121"]]]},{"k":10613,"v":[[0,2,["H682"]],[2,4,["H8337"]],[4,5,["H1121"]],[5,7,["H8034"]],[7,9,["H428"]],[9,10,["H5840"]],[10,11,["H1074"]],[11,13,["H3458"]],[13,15,["H8187"]],[15,17,["H5662"]],[17,19,["H2605"]],[19,20,["H3605"]],[20,21,["H428"]],[21,24,["H1121"]],[24,26,["H682"]]]},{"k":10614,"v":[[0,3,["H1121"]],[3,5,["H6232"]],[5,7,["H251"]],[7,9,["H198"]],[9,11,["H1060"]],[11,12,["H3266"]],[12,14,["H8145"]],[14,16,["H467"]],[16,18,["H7992"]]]},{"k":10615,"v":[[0,3,["H1121"]],[3,5,["H198"]],[5,6,["H1961"]],[6,7,["H1368"]],[7,8,["H376"]],[8,10,["H2428"]],[10,11,["H1869","H7198"]],[11,14,["H7235"]],[14,15,["H1121"]],[15,17,["H1121"]],[17,18,["H1121"]],[18,20,["H3967"]],[20,22,["H2572"]],[22,23,["H3605"]],[23,24,["H428"]],[24,28,["H4480","H1121"]],[28,30,["H1144"]]]},{"k":10616,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,7,["H3187"]],[7,9,["H2009"]],[9,12,["H3789"]],[12,13,["H5921"]],[13,15,["H5612"]],[15,18,["H4428"]],[18,20,["H3478"]],[20,22,["H3063"]],[22,26,["H1540"]],[26,28,["H894"]],[28,31,["H4604"]]]},{"k":10617,"v":[[0,3,["H7223"]],[3,4,["H3427"]],[4,5,["H834"]],[5,9,["H272"]],[9,12,["H5892"]],[12,15,["H3478"]],[15,17,["H3548"]],[17,18,["H3881"]],[18,21,["H5411"]]]},{"k":10618,"v":[[0,3,["H3389"]],[3,4,["H3427"]],[4,5,["H4480"]],[5,7,["H1121"]],[7,9,["H3063"]],[9,11,["H4480"]],[11,13,["H1121"]],[13,15,["H1144"]],[15,17,["H4480"]],[17,19,["H1121"]],[19,21,["H669"]],[21,23,["H4519"]]]},{"k":10619,"v":[[0,1,["H5793"]],[1,3,["H1121"]],[3,5,["H5989"]],[5,7,["H1121"]],[7,9,["H6018"]],[9,11,["H1121"]],[11,13,["H566"]],[13,15,["H1121"]],[15,17,["H1137"]],[17,20,["H4480","H1121"]],[20,22,["H6557"]],[22,24,["H1121"]],[24,26,["H3063"]]]},{"k":10620,"v":[[0,2,["H4480"]],[2,4,["H7888"]],[4,5,["H6222"]],[5,7,["H1060"]],[7,10,["H1121"]]]},{"k":10621,"v":[[0,2,["H4480"]],[2,4,["H1121"]],[4,6,["H2226"]],[6,7,["H3262"]],[7,10,["H251"]],[10,11,["H8337"]],[11,12,["H3967"]],[12,14,["H8673"]]]},{"k":10622,"v":[[0,2,["H4480"]],[2,4,["H1121"]],[4,6,["H1144"]],[6,7,["H5543"]],[7,9,["H1121"]],[9,11,["H4918"]],[11,13,["H1121"]],[13,15,["H1938"]],[15,17,["H1121"]],[17,19,["H5574"]]]},{"k":10623,"v":[[0,2,["H2997"]],[2,4,["H1121"]],[4,6,["H3395"]],[6,8,["H425"]],[8,10,["H1121"]],[10,12,["H5813"]],[12,14,["H1121"]],[14,16,["H4381"]],[16,18,["H4918"]],[18,20,["H1121"]],[20,22,["H8203"]],[22,24,["H1121"]],[24,26,["H7467"]],[26,28,["H1121"]],[28,30,["H2998"]]]},{"k":10624,"v":[[0,3,["H251"]],[3,7,["H8435"]],[7,8,["H8672"]],[8,9,["H3967"]],[9,11,["H2572"]],[11,13,["H8337"]],[13,14,["H3605"]],[14,15,["H428"]],[15,16,["H376"]],[16,18,["H7218"]],[18,21,["H1"]],[21,24,["H1004"]],[24,27,["H1"]]]},{"k":10625,"v":[[0,2,["H4480"]],[2,4,["H3548"]],[4,5,["H3048"]],[5,7,["H3080"]],[7,9,["H3199"]]]},{"k":10626,"v":[[0,2,["H5838"]],[2,4,["H1121"]],[4,6,["H2518"]],[6,8,["H1121"]],[8,10,["H4918"]],[10,12,["H1121"]],[12,14,["H6659"]],[14,16,["H1121"]],[16,18,["H4812"]],[18,20,["H1121"]],[20,22,["H285"]],[22,24,["H5057"]],[24,27,["H1004"]],[27,29,["H430"]]]},{"k":10627,"v":[[0,2,["H5718"]],[2,4,["H1121"]],[4,6,["H3395"]],[6,8,["H1121"]],[8,10,["H6583"]],[10,12,["H1121"]],[12,14,["H4441"]],[14,16,["H4640"]],[16,18,["H1121"]],[18,20,["H5717"]],[20,22,["H1121"]],[22,24,["H3170"]],[24,26,["H1121"]],[26,28,["H4918"]],[28,30,["H1121"]],[30,32,["H4921"]],[32,34,["H1121"]],[34,36,["H564"]]]},{"k":10628,"v":[[0,3,["H251"]],[3,4,["H7218"]],[4,7,["H1004"]],[7,10,["H1"]],[10,12,["H505"]],[12,14,["H7651"]],[14,15,["H3967"]],[15,17,["H8346"]],[17,20,["H1368","H2428"]],[20,23,["H4399"]],[23,26,["H5656"]],[26,29,["H1004"]],[29,31,["H430"]]]},{"k":10629,"v":[[0,2,["H4480"]],[2,4,["H3881"]],[4,5,["H8098"]],[5,7,["H1121"]],[7,9,["H2815"]],[9,11,["H1121"]],[11,13,["H5840"]],[13,15,["H1121"]],[15,17,["H2811"]],[17,18,["H4480"]],[18,20,["H1121"]],[20,22,["H4847"]]]},{"k":10630,"v":[[0,2,["H1230"]],[2,3,["H2792"]],[3,5,["H1559"]],[5,7,["H4983"]],[7,9,["H1121"]],[9,11,["H4316"]],[11,13,["H1121"]],[13,15,["H2147"]],[15,17,["H1121"]],[17,19,["H623"]]]},{"k":10631,"v":[[0,2,["H5662"]],[2,4,["H1121"]],[4,6,["H8098"]],[6,8,["H1121"]],[8,10,["H1559"]],[10,12,["H1121"]],[12,14,["H3038"]],[14,16,["H1296"]],[16,18,["H1121"]],[18,20,["H609"]],[20,22,["H1121"]],[22,24,["H511"]],[24,26,["H3427"]],[26,29,["H2691"]],[29,32,["H5200"]]]},{"k":10632,"v":[[0,3,["H7778"]],[3,5,["H7967"]],[5,7,["H6126"]],[7,9,["H2929"]],[9,11,["H289"]],[11,14,["H251"]],[14,15,["H7967"]],[15,18,["H7218"]]]},{"k":10633,"v":[[0,2,["H5704","H2008"]],[2,6,["H4428"]],[6,7,["H8179"]],[7,8,["H4217"]],[8,9,["H1992"]],[9,11,["H7778"]],[11,14,["H4264"]],[14,17,["H1121"]],[17,19,["H3878"]]]},{"k":10634,"v":[[0,2,["H7967"]],[2,4,["H1121"]],[4,6,["H6981"]],[6,8,["H1121"]],[8,10,["H43"]],[10,12,["H1121"]],[12,14,["H7141"]],[14,17,["H251"]],[17,20,["H1004"]],[20,23,["H1"]],[23,25,["H7145"]],[25,27,["H5921"]],[27,29,["H4399"]],[29,32,["H5656"]],[32,33,["H8104"]],[33,36,["H5592"]],[36,39,["H168"]],[39,42,["H1"]],[42,44,["H5921"]],[44,46,["H4264"]],[46,49,["H3068"]],[49,51,["H8104"]],[51,54,["H3996"]]]},{"k":10635,"v":[[0,2,["H6372"]],[2,4,["H1121"]],[4,6,["H499"]],[6,7,["H1961"]],[7,9,["H5057"]],[9,10,["H5921"]],[10,14,["H6440"]],[14,17,["H3068"]],[17,19,["H5973"]],[19,20,[]]]},{"k":10636,"v":[[0,2,["H2148"]],[2,4,["H1121"]],[4,6,["H4920"]],[6,8,["H7778"]],[8,11,["H6607"]],[11,14,["H168"]],[14,17,["H4150"]]]},{"k":10637,"v":[[0,1,["H3605"]],[1,5,["H1305"]],[5,8,["H7778"]],[8,11,["H5592"]],[11,14,["H3967"]],[14,16,["H8147","H6240"]],[16,17,["H1992"]],[17,22,["H3187"]],[22,25,["H2691"]],[25,27,["H1732"]],[27,29,["H8050"]],[29,31,["H7203"]],[31,33,["H3245"]],[33,37,["H530"]]]},{"k":10638,"v":[[0,2,["H1992"]],[2,5,["H1121"]],[5,8,["H5921"]],[8,11,["H8179"]],[11,14,["H1004"]],[14,17,["H3068"]],[17,20,["H1004"]],[20,23,["H168"]],[23,25,["H4931"]]]},{"k":10639,"v":[[0,2,["H702"]],[2,3,["H7307"]],[3,4,["H1961"]],[4,6,["H7778"]],[6,9,["H4217"]],[9,10,["H3220"]],[10,11,["H6828"]],[11,13,["H5045"]]]},{"k":10640,"v":[[0,3,["H251"]],[3,8,["H2691"]],[8,11,["H935"]],[11,13,["H7651"]],[13,14,["H3117"]],[14,16,["H4480","H6256"]],[16,17,["H413"]],[17,18,["H6256"]],[18,19,["H5973"]],[19,20,["H428"]]]},{"k":10641,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,3,["H3881"]],[3,5,["H702"]],[5,6,["H1368"]],[6,7,["H7778"]],[7,12,["H530"]],[12,14,["H1961"]],[14,15,["H5921"]],[15,17,["H3957"]],[17,19,["H214"]],[19,22,["H1004"]],[22,24,["H430"]]]},{"k":10642,"v":[[0,3,["H3885"]],[3,5,["H5439"]],[5,7,["H1004"]],[7,9,["H430"]],[9,10,["H3588"]],[10,12,["H4931"]],[12,14,["H5921"]],[14,18,["H4668"]],[18,21,["H1242","H1242"]],[21,24,["H1992"]]]},{"k":10643,"v":[[0,3,["H4480"]],[3,8,["H5921"]],[8,10,["H5656"]],[10,11,["H3627"]],[11,12,["H3588"]],[12,17,["H935"]],[17,19,["H3318"]],[19,21,["H4557"]]]},{"k":10644,"v":[[0,2,["H4480"]],[2,6,["H4487"]],[6,8,["H5921"]],[8,10,["H3627"]],[10,12,["H3605"]],[12,14,["H3627"]],[14,17,["H6944"]],[17,21,["H5560"]],[21,24,["H3196"]],[24,27,["H8081"]],[27,30,["H3828"]],[30,33,["H1314"]]]},{"k":10645,"v":[[0,3,["H4480"]],[3,5,["H1121"]],[5,8,["H3548"]],[8,9,["H7543"]],[9,11,["H4842"]],[11,14,["H1314"]]]},{"k":10646,"v":[[0,2,["H4993"]],[2,4,["H4480"]],[4,6,["H3881"]],[6,7,["H1931"]],[7,10,["H1060"]],[10,12,["H7967"]],[12,14,["H7145"]],[14,18,["H530"]],[18,19,["H5921"]],[19,24,["H4639"]],[24,27,["H2281"]]]},{"k":10647,"v":[[0,3,["H4480"]],[3,5,["H251"]],[5,8,["H1121"]],[8,9,["H4480"]],[9,11,["H6956"]],[11,13,["H5921"]],[13,15,["H3899","H4635"]],[15,17,["H3559"]],[17,20,["H7676","H7676"]]]},{"k":10648,"v":[[0,2,["H428"]],[2,5,["H7891"]],[5,6,["H7218"]],[6,9,["H1"]],[9,12,["H3881"]],[12,17,["H3957"]],[17,19,["H6362"]],[19,20,["H3588"]],[20,23,["H5921"]],[23,26,["H4399"]],[26,27,["H3119"]],[27,29,["H3915"]]]},{"k":10649,"v":[[0,1,["H428"]],[1,2,["H7218"]],[2,3,["H1"]],[3,6,["H3881"]],[6,8,["H7218"]],[8,11,["H8435"]],[11,12,["H428"]],[12,13,["H3427"]],[13,15,["H3389"]]]},{"k":10650,"v":[[0,3,["H1391"]],[3,4,["H3427"]],[4,6,["H1"]],[6,8,["H1391"]],[8,9,["H3273"]],[9,11,["H802"]],[11,12,["H8034"]],[12,14,["H4601"]]]},{"k":10651,"v":[[0,3,["H1060"]],[3,4,["H1121"]],[4,5,["H5658"]],[5,7,["H6698"]],[7,9,["H7027"]],[9,11,["H1168"]],[11,13,["H5369"]],[13,15,["H5070"]]]},{"k":10652,"v":[[0,2,["H1446"]],[2,4,["H283"]],[4,6,["H2148"]],[6,8,["H4732"]]]},{"k":10653,"v":[[0,2,["H4732"]],[2,3,["H3205","(H853)"]],[3,4,["H8043"]],[4,6,["H1992"]],[6,7,["H637"]],[7,8,["H3427"]],[8,9,["H5973"]],[9,11,["H251"]],[11,13,["H3389"]],[13,15,["H5048"]],[15,17,["H251"]]]},{"k":10654,"v":[[0,2,["H5369"]],[2,3,["H3205","(H853)"]],[3,4,["H7027"]],[4,6,["H7027"]],[6,7,["H3205","(H853)"]],[7,8,["H7586"]],[8,10,["H7586"]],[10,11,["H3205","(H853)"]],[11,12,["H3083"]],[12,14,["H4444"]],[14,16,["H41"]],[16,18,["H792"]]]},{"k":10655,"v":[[0,3,["H1121"]],[3,5,["H3083"]],[5,7,["H4807"]],[7,9,["H4810"]],[9,10,["H3205","(H853)"]],[10,11,["H4318"]]]},{"k":10656,"v":[[0,3,["H1121"]],[3,5,["H4318"]],[5,7,["H6377"]],[7,9,["H4429"]],[9,11,["H8475"]],[11,13,[]]]},{"k":10657,"v":[[0,2,["H271"]],[2,3,["H3205","(H853)"]],[3,4,["H3294"]],[4,6,["H3294"]],[6,7,["H3205","(H853)"]],[7,8,["H5964"]],[8,10,["H5820"]],[10,12,["H2174"]],[12,14,["H2174"]],[14,15,["H3205","(H853)"]],[15,16,["H4162"]]]},{"k":10658,"v":[[0,2,["H4162"]],[2,3,["H3205","(H853)"]],[3,4,["H1150"]],[4,6,["H7509"]],[6,8,["H1121"]],[8,9,["H501"]],[9,11,["H1121"]],[11,12,["H682"]],[12,14,["H1121"]]]},{"k":10659,"v":[[0,2,["H682"]],[2,4,["H8337"]],[4,5,["H1121"]],[5,7,["H8034"]],[7,9,["H428"]],[9,10,["H5840"]],[10,11,["H1074"]],[11,13,["H3458"]],[13,15,["H8187"]],[15,17,["H5662"]],[17,19,["H2605"]],[19,20,["H428"]],[20,23,["H1121"]],[23,25,["H682"]]]},{"k":10660,"v":[[0,3,["H6430"]],[3,4,["H3898"]],[4,6,["H3478"]],[6,9,["H376"]],[9,11,["H3478"]],[11,12,["H5127"]],[12,14,["H4480","H6440"]],[14,16,["H6430"]],[16,19,["H5307"]],[19,20,["H2491"]],[20,22,["H2022"]],[22,23,["H1533"]]]},{"k":10661,"v":[[0,3,["H6430"]],[3,5,["H1692"]],[5,6,["H310"]],[6,7,["H7586"]],[7,9,["H310"]],[9,11,["H1121"]],[11,14,["H6430"]],[14,15,["H5221","(H853)"]],[15,16,["H3129"]],[16,18,["H41"]],[18,20,["H4444"]],[20,22,["H1121"]],[22,24,["H7586"]]]},{"k":10662,"v":[[0,3,["H4421"]],[3,5,["H3513"]],[5,6,["H5921"]],[6,7,["H7586"]],[7,10,["H3384","H7198"]],[10,11,["H4672"]],[11,16,["H2342"]],[16,17,["H4480"]],[17,19,["H3384"]]]},{"k":10663,"v":[[0,2,["H559"]],[2,3,["H7586"]],[3,4,["H413"]],[4,6,["H5375","H3627"]],[6,7,["H8025"]],[7,9,["H2719"]],[9,13,["H1856"]],[13,15,["H6435"]],[15,16,["H428"]],[16,17,["H6189"]],[17,18,["H935"]],[18,20,["H5953"]],[20,24,["H5375","H3627"]],[24,25,["H14"]],[25,26,["H3808"]],[26,27,["H3588"]],[27,31,["H3372","H3966"]],[31,33,["H7586"]],[33,34,["H3947","(H853)"]],[34,36,["H2719"]],[36,38,["H5307"]],[38,39,["H5921"]],[39,40,[]]]},{"k":10664,"v":[[0,4,["H5375","H3627"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,7,["H7586"]],[7,9,["H4191"]],[9,10,["H1931"]],[10,11,["H5307"]],[11,12,["H1571"]],[12,13,["H5921"]],[13,15,["H2719"]],[15,17,["H4191"]]]},{"k":10665,"v":[[0,2,["H7586"]],[2,3,["H4191"]],[3,6,["H7969"]],[6,7,["H1121"]],[7,9,["H3605"]],[9,11,["H1004"]],[11,12,["H4191"]],[12,13,["H3162"]]]},{"k":10666,"v":[[0,3,["H3605"]],[3,5,["H376"]],[5,7,["H3478"]],[7,8,["H834"]],[8,12,["H6010"]],[12,13,["H7200"]],[13,14,["H3588"]],[14,16,["H5127"]],[16,18,["H3588"]],[18,19,["H7586"]],[19,22,["H1121"]],[22,24,["H4191"]],[24,27,["H5800"]],[27,29,["H5892"]],[29,31,["H5127"]],[31,34,["H6430"]],[34,35,["H935"]],[35,37,["H3427"]],[37,39,[]]]},{"k":10667,"v":[[0,5,["H1961"]],[5,6,["H4480"]],[6,8,["H4283"]],[8,11,["H6430"]],[11,12,["H935"]],[12,14,["H6584","(H853)"]],[14,16,["H2491"]],[16,19,["H4672","(H853)"]],[19,20,["H7586"]],[20,23,["H1121"]],[23,24,["H5307"]],[24,26,["H2022"]],[26,27,["H1533"]]]},{"k":10668,"v":[[0,5,["H6584"]],[5,8,["H5375","(H853)"]],[8,10,["H7218"]],[10,13,["H3627"]],[13,15,["H7971"]],[15,18,["H776"]],[18,21,["H6430"]],[21,23,["H5439"]],[23,26,["H1319","(H853)"]],[26,29,["H6091"]],[29,33,["H5971"]]]},{"k":10669,"v":[[0,3,["H7760","(H853)"]],[3,5,["H3627"]],[5,8,["H1004"]],[8,11,["H430"]],[11,13,["H8628"]],[13,15,["H1538"]],[15,18,["H1004"]],[18,20,["H1712"]]]},{"k":10670,"v":[[0,3,["H3605"]],[3,4,["H3003","H1568"]],[4,5,["H8085","(H853)"]],[5,6,["H3605"]],[6,7,["H834"]],[7,9,["H6430"]],[9,11,["H6213"]],[11,13,["H7586"]]]},{"k":10671,"v":[[0,2,["H6965"]],[2,3,["H3605"]],[3,5,["H2428"]],[5,6,["H376"]],[6,9,["H5375","(H853)"]],[9,11,["H1480"]],[11,13,["H7586"]],[13,16,["H1480"]],[16,19,["H1121"]],[19,21,["H935"]],[21,24,["H3003"]],[24,26,["H6912","(H853)"]],[26,28,["H6106"]],[28,29,["H8478"]],[29,31,["H424"]],[31,33,["H3003"]],[33,35,["H6684"]],[35,36,["H7651"]],[36,37,["H3117"]]]},{"k":10672,"v":[[0,2,["H7586"]],[2,3,["H4191"]],[3,6,["H4604"]],[6,7,["H834"]],[7,9,["H4603"]],[9,12,["H3068"]],[12,14,["H5921"]],[14,16,["H1697"]],[16,19,["H3068"]],[19,20,["H834"]],[20,22,["H8104"]],[22,23,["H3808"]],[23,25,["H1571"]],[25,27,["H7592"]],[27,35,["H178"]],[35,37,["H1875"]],[37,39,[]]]},{"k":10673,"v":[[0,2,["H1875"]],[2,3,["H3808"]],[3,6,["H3068"]],[6,9,["H4191"]],[9,12,["H5437","(H853)"]],[12,14,["H4410"]],[14,16,["H1732"]],[16,18,["H1121"]],[18,20,["H3448"]]]},{"k":10674,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,5,["H6908"]],[5,6,["H413"]],[6,7,["H1732"]],[7,9,["H2275"]],[9,10,["H559"]],[10,11,["H2009"]],[11,12,["H587"]],[12,15,["H6106"]],[15,18,["H1320"]]]},{"k":10675,"v":[[0,2,["H1571"]],[2,5,["H8543","H1571","H8032"]],[5,6,["H1571"]],[6,8,["H7586"]],[8,9,["H1961"]],[9,10,["H4428"]],[10,11,["H859"]],[11,16,["H3318"]],[16,19,["H935","(H853)"]],[19,20,["H3478"]],[20,23,["H3068"]],[23,25,["H430"]],[25,26,["H559"]],[26,29,["H859"]],[29,31,["H7462","(H853)"]],[31,33,["H5971","(H853)"]],[33,34,["H3478"]],[34,36,["H859"]],[36,38,["H1961"]],[38,39,["H5057"]],[39,40,["H5921"]],[40,42,["H5971"]],[42,43,["H3478"]]]},{"k":10676,"v":[[0,2,["H935"]],[2,3,["H3605"]],[3,5,["H2205"]],[5,7,["H3478"]],[7,8,["H413"]],[8,10,["H4428"]],[10,12,["H2275"]],[12,14,["H1732"]],[14,15,["H3772"]],[15,17,["H1285"]],[17,21,["H2275"]],[21,22,["H6440"]],[22,24,["H3068"]],[24,27,["H4886","(H853)"]],[27,28,["H1732"]],[28,29,["H4428"]],[29,30,["H5921"]],[30,31,["H3478"]],[31,35,["H1697"]],[35,38,["H3068"]],[38,39,["H3027"]],[39,40,["H8050"]]]},{"k":10677,"v":[[0,2,["H1732"]],[2,4,["H3605"]],[4,5,["H3478"]],[5,6,["H1980"]],[6,8,["H3389"]],[8,9,["H1931"]],[9,11,["H2982"]],[11,12,["H8033"]],[12,14,["H2983"]],[14,17,["H3427"]],[17,20,["H776"]]]},{"k":10678,"v":[[0,3,["H3427"]],[3,5,["H2982"]],[5,6,["H559"]],[6,8,["H1732"]],[8,11,["H3808"]],[11,12,["H935"]],[12,13,["H2008"]],[13,15,["H1732"]],[15,16,["H3920","(H853)"]],[16,18,["H4686"]],[18,20,["H6726"]],[20,21,["H1931"]],[21,24,["H5892"]],[24,26,["H1732"]]]},{"k":10679,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H3605"]],[4,5,["H5221"]],[5,7,["H2983"]],[7,8,["H7223"]],[8,10,["H1961"]],[10,11,["H7218"]],[11,13,["H8269"]],[13,15,["H3097"]],[15,17,["H1121"]],[17,19,["H6870"]],[19,22,["H5927","H7223"]],[22,24,["H1961"]],[24,25,["H7218"]]]},{"k":10680,"v":[[0,2,["H1732"]],[2,3,["H3427"]],[3,6,["H4679"]],[6,7,["H5921","H3651"]],[7,9,["H7121"]],[9,12,["H5892"]],[12,14,["H1732"]]]},{"k":10681,"v":[[0,3,["H1129"]],[3,5,["H5892"]],[5,7,["H4480","H5439"]],[7,9,["H4480"]],[9,10,["H4407"]],[10,12,["H5439"]],[12,14,["H3097"]],[14,15,["H2421","(H853)"]],[15,17,["H7605"]],[17,20,["H5892"]]]},{"k":10682,"v":[[0,2,["H1732"]],[2,6,["H1980","H1980","H1431"]],[6,9,["H3068"]],[9,11,["H6635"]],[11,13,["H5973"]],[13,14,[]]]},{"k":10683,"v":[[0,1,["H428"]],[1,5,["H7218"]],[5,9,["H1368"]],[9,10,["H834"]],[10,11,["H1732"]],[11,15,["H2388"]],[15,16,["H5973"]],[16,20,["H4438"]],[20,22,["H5973"]],[22,23,["H3605"]],[23,24,["H3478"]],[24,28,["H4427"]],[28,32,["H1697"]],[32,35,["H3068"]],[35,36,["H5921"]],[36,37,["H3478"]]]},{"k":10684,"v":[[0,2,["H428"]],[2,5,["H4557"]],[5,9,["H1368"]],[9,10,["H834"]],[10,11,["H1732"]],[11,13,["H3434"]],[13,15,["H1121","H2453"]],[15,17,["H7218"]],[17,20,["H7991"]],[20,21,["H1931"]],[21,23,["H5782","(H853)"]],[23,25,["H2595"]],[25,26,["H5921"]],[26,27,["H7969"]],[27,28,["H3967"]],[28,29,["H2491"]],[29,33,["H259"]],[33,34,["H6471"]]]},{"k":10685,"v":[[0,2,["H310"]],[2,5,["H499"]],[5,7,["H1121"]],[7,9,["H1734"]],[9,11,["H266"]],[11,12,["H1931"]],[12,17,["H7969"]],[17,18,["H1368"]]]},{"k":10686,"v":[[0,1,["H1931"]],[1,2,["H1961"]],[2,3,["H5973"]],[3,4,["H1732"]],[4,6,["H6450"]],[6,8,["H8033"]],[8,10,["H6430"]],[10,13,["H622"]],[13,15,["H4421"]],[15,17,["H1961"]],[17,19,["H2513"]],[19,21,["H7704"]],[21,22,["H4392"]],[22,24,["H8184"]],[24,27,["H5971"]],[27,28,["H5127"]],[28,30,["H4480","H6440"]],[30,32,["H6430"]]]},{"k":10687,"v":[[0,4,["H3320"]],[4,7,["H8432"]],[7,10,["H2513"]],[10,12,["H5337"]],[12,15,["H5221","(H853)"]],[15,17,["H6430"]],[17,20,["H3068"]],[20,21,["H3467"]],[21,25,["H1419"]],[25,26,["H8668"]]]},{"k":10688,"v":[[0,2,["H7969"]],[2,3,["H4480"]],[3,5,["H7970"]],[5,6,["H7218"]],[6,8,["H3381"]],[8,9,["H5921"]],[9,11,["H6697"]],[11,12,["H413"]],[12,13,["H1732"]],[13,14,["H413"]],[14,16,["H4631"]],[16,18,["H5725"]],[18,21,["H4264"]],[21,24,["H6430"]],[24,25,["H2583"]],[25,28,["H6010"]],[28,30,["H7497"]]]},{"k":10689,"v":[[0,2,["H1732"]],[2,4,["H227"]],[4,7,["H4686"]],[7,10,["H6430"]],[10,11,["H5333"]],[11,13,["H227"]],[13,15,["H1035"]]]},{"k":10690,"v":[[0,2,["H1732"]],[2,3,["H183"]],[3,5,["H559"]],[5,7,["H4310"]],[7,12,["H8248"]],[12,15,["H4325"]],[15,18,["H4480","H953"]],[18,20,["H1035"]],[20,21,["H834"]],[21,25,["H8179"]]]},{"k":10691,"v":[[0,3,["H7969"]],[3,5,["H1234"]],[5,7,["H4264"]],[7,10,["H6430"]],[10,12,["H7579"]],[12,13,["H4325"]],[13,17,["H4480","H953"]],[17,19,["H1035"]],[19,20,["H834"]],[20,24,["H8179"]],[24,26,["H5375"]],[26,29,["H935"]],[29,31,["H413"]],[31,32,["H1732"]],[32,34,["H1732"]],[34,35,["H14"]],[35,36,["H3808"]],[36,37,["H8354"]],[37,43,["H5258","(H853)"]],[43,46,["H3068"]]]},{"k":10692,"v":[[0,2,["H559"]],[2,4,["H4480","H430"]],[4,6,["H2486"]],[6,11,["H4480","H6213"]],[11,13,["H2063"]],[13,16,["H8354"]],[16,18,["H1818"]],[18,20,["H428"]],[20,21,["H376"]],[21,26,["H5315"]],[26,29,["H3588"]],[29,35,["H5315"]],[35,37,["H935"]],[37,41,["H14"]],[41,42,["H3808"]],[42,43,["H8354"]],[43,46,["H428"]],[46,47,["H6213"]],[47,49,["H7969"]],[49,50,["H1368"]]]},{"k":10693,"v":[[0,2,["H52"]],[2,4,["H251"]],[4,6,["H3097"]],[6,7,["H1931"]],[7,8,["H1961"]],[8,9,["H7218"]],[9,12,["H7969"]],[12,15,["H5782","(H853)"]],[15,17,["H2595"]],[17,18,["H5921"]],[18,19,["H7969"]],[19,20,["H3967"]],[20,21,["H1931"]],[21,22,["H2491"]],[22,27,["H8034"]],[27,30,["H7969"]]]},{"k":10694,"v":[[0,1,["H4480"]],[1,3,["H7969"]],[3,7,["H3513"]],[7,10,["H8147"]],[10,13,["H1961"]],[13,15,["H8269"]],[15,18,["H935"]],[18,19,["H3808"]],[19,20,["H5704"]],[20,23,["H7969"]]]},{"k":10695,"v":[[0,1,["H1141"]],[1,3,["H1121"]],[3,5,["H3111"]],[5,7,["H1121"]],[7,10,["H2428"]],[10,11,["H376"]],[11,12,["H4480"]],[12,13,["H6909"]],[13,17,["H7227"]],[17,18,["H6467"]],[18,19,["H1931"]],[19,20,["H5221","(H853)"]],[20,21,["H8147"]],[21,23,["H739"]],[23,25,["H4124"]],[25,27,["H1931"]],[27,29,["H3381"]],[29,31,["H5221","(H853)"]],[31,33,["H738"]],[33,34,["H8432"]],[34,36,["H953"]],[36,39,["H7950"]],[39,40,["H3117"]]]},{"k":10696,"v":[[0,2,["H1931"]],[2,3,["H5221","(H853)"]],[3,5,["H376","H4713"]],[5,7,["H376"]],[7,10,["H4060"]],[10,11,["H2568"]],[11,12,["H520"]],[12,17,["H4713"]],[17,18,["H3027"]],[18,21,["H2595"]],[21,24,["H707"]],[24,25,["H4500"]],[25,29,["H3381"]],[29,30,["H413"]],[30,34,["H7626"]],[34,36,["H1497","(H853)"]],[36,38,["H2595"]],[38,43,["H4480","H3027","H4713"]],[43,45,["H2026"]],[45,50,["H2595"]]]},{"k":10697,"v":[[0,1,["H428"]],[1,3,["H6213"]],[3,4,["H1141"]],[4,6,["H1121"]],[6,8,["H3111"]],[8,12,["H8034"]],[12,15,["H7969"]],[15,16,["H1368"]]]},{"k":10698,"v":[[0,1,["H2009"]],[1,2,["H1931"]],[2,4,["H3513"]],[4,5,["H4480"]],[5,7,["H7970"]],[7,9,["H935"]],[9,10,["H3808"]],[10,11,["H413"]],[11,14,["H7969"]],[14,16,["H1732"]],[16,17,["H7760"]],[17,19,["H5921"]],[19,21,["H4928"]]]},{"k":10699,"v":[[0,4,["H1368"]],[4,7,["H2428"]],[7,9,["H6214"]],[9,11,["H251"]],[11,13,["H3097"]],[13,14,["H445"]],[14,16,["H1121"]],[16,18,["H1734"]],[18,20,["H4480","H1035"]]]},{"k":10700,"v":[[0,1,["H8054"]],[1,3,["H2033"]],[3,4,["H2503"]],[4,6,["H6397"]]]},{"k":10701,"v":[[0,1,["H5896"]],[1,3,["H1121"]],[3,5,["H6142"]],[5,7,["H8621"]],[7,8,["H44"]],[8,10,["H6069"]]]},{"k":10702,"v":[[0,1,["H5444"]],[1,3,["H2843"]],[3,4,["H5866"]],[4,6,["H266"]]]},{"k":10703,"v":[[0,1,["H4121"]],[1,3,["H5200"]],[3,4,["H2466"]],[4,6,["H1121"]],[6,8,["H1196"]],[8,10,["H5200"]]]},{"k":10704,"v":[[0,1,["H863"]],[1,3,["H1121"]],[3,5,["H7380"]],[5,7,["H4480","H1390"]],[7,12,["H1121"]],[12,14,["H1144"]],[14,15,["H1141"]],[15,17,["H6553"]]]},{"k":10705,"v":[[0,1,["H2360"]],[1,4,["H4480","H5158"]],[4,6,["H1608"]],[6,7,["H22"]],[7,9,["H6164"]]]},{"k":10706,"v":[[0,1,["H5820"]],[1,3,["H978"]],[3,4,["H455"]],[4,6,["H8170"]]]},{"k":10707,"v":[[0,2,["H1121"]],[2,4,["H2044"]],[4,6,["H1493"]],[6,7,["H3129"]],[7,9,["H1121"]],[9,11,["H7681"]],[11,13,["H2043"]]]},{"k":10708,"v":[[0,1,["H279"]],[1,3,["H1121"]],[3,5,["H7940"]],[5,7,["H2043"]],[7,8,["H465"]],[8,10,["H1121"]],[10,12,["H218"]]]},{"k":10709,"v":[[0,1,["H2660"]],[1,3,["H4382"]],[3,4,["H281"]],[4,6,["H6397"]]]},{"k":10710,"v":[[0,1,["H2695"]],[1,3,["H3761"]],[3,4,["H5293"]],[4,6,["H1121"]],[6,8,["H229"]]]},{"k":10711,"v":[[0,1,["H3100"]],[1,3,["H251"]],[3,5,["H5416"]],[5,6,["H4006"]],[6,8,["H1121"]],[8,10,["H1905"]]]},{"k":10712,"v":[[0,1,["H6768"]],[1,3,["H5984"]],[3,4,["H5171"]],[4,6,["H1307"]],[6,8,["H5375","H3627"]],[8,10,["H3097"]],[10,12,["H1121"]],[12,14,["H6870"]]]},{"k":10713,"v":[[0,1,["H5896"]],[1,3,["H3505"]],[3,4,["H1619"]],[4,6,["H3505"]]]},{"k":10714,"v":[[0,1,["H223"]],[1,3,["H2850"]],[3,4,["H2066"]],[4,6,["H1121"]],[6,8,["H304"]]]},{"k":10715,"v":[[0,1,["H5721"]],[1,3,["H1121"]],[3,5,["H7877"]],[5,7,["H7206"]],[7,9,["H7218"]],[9,12,["H7206"]],[12,14,["H7970"]],[14,15,["H5921"]],[15,16,[]]]},{"k":10716,"v":[[0,1,["H2605"]],[1,3,["H1121"]],[3,5,["H4601"]],[5,7,["H3146"]],[7,9,["H4981"]]]},{"k":10717,"v":[[0,1,["H5814"]],[1,3,["H6254"]],[3,4,["H8091"]],[4,6,["H3273"]],[6,8,["H1121"]],[8,10,["H2369"]],[10,12,["H6200"]]]},{"k":10718,"v":[[0,1,["H3043"]],[1,3,["H1121"]],[3,5,["H8113"]],[5,7,["H3109"]],[7,9,["H251"]],[9,11,["H8491"]]]},{"k":10719,"v":[[0,1,["H447"]],[1,3,["H4233"]],[3,5,["H3403"]],[5,7,["H3145"]],[7,9,["H1121"]],[9,11,["H493"]],[11,13,["H3495"]],[13,15,["H4125"]]]},{"k":10720,"v":[[0,1,["H447"]],[1,3,["H5744"]],[3,5,["H3300"]],[5,7,["H4677"]]]},{"k":10721,"v":[[0,2,["H428"]],[2,6,["H935"]],[6,7,["H413"]],[7,8,["H1732"]],[8,10,["H6860"]],[10,13,["H5750"]],[13,16,["H6113"]],[16,17,["H4480","H6440"]],[17,19,["H7586"]],[19,21,["H1121"]],[21,23,["H7027"]],[23,25,["H1992"]],[25,30,["H1368"]],[30,31,["H5826"]],[31,34,["H4421"]]]},{"k":10722,"v":[[0,3,["H5401"]],[3,5,["H7198"]],[5,12,["H3231"]],[12,15,["H8041"]],[15,18,["H68"]],[18,21,["H2671"]],[21,25,["H7198"]],[25,29,["H4480","H251","H7586"]],[29,31,["H4480","H1144"]]]},{"k":10723,"v":[[0,2,["H7218"]],[2,4,["H295"]],[4,6,["H3101"]],[6,8,["H1121"]],[8,10,["H8094"]],[10,12,["H1395"]],[12,14,["H3149"]],[14,16,["H6404"]],[16,18,["H1121"]],[18,20,["H5820"]],[20,22,["H1294"]],[22,24,["H3058"]],[24,26,["H6069"]]]},{"k":10724,"v":[[0,2,["H3460"]],[2,4,["H1393"]],[4,7,["H1368"]],[7,10,["H7970"]],[10,12,["H5921"]],[12,14,["H7970"]],[14,16,["H3414"]],[16,18,["H3166"]],[18,20,["H3110"]],[20,22,["H3107"]],[22,24,["H1452"]]]},{"k":10725,"v":[[0,1,["H498"]],[1,3,["H3406"]],[3,5,["H1183"]],[5,7,["H8114"]],[7,9,["H8203"]],[9,11,["H2741"]]]},{"k":10726,"v":[[0,1,["H511"]],[1,3,["H3449"]],[3,5,["H5832"]],[5,7,["H3134"]],[7,9,["H3434"]],[9,11,["H7145"]]]},{"k":10727,"v":[[0,2,["H3132"]],[2,4,["H2069"]],[4,6,["H1121"]],[6,8,["H3395"]],[8,9,["H4480"]],[9,10,["H1446"]]]},{"k":10728,"v":[[0,2,["H4480"]],[2,4,["H1425"]],[4,7,["H914"]],[7,8,["H413"]],[8,9,["H1732"]],[9,12,["H4679"]],[12,15,["H4057"]],[15,16,["H1368"]],[16,18,["H2428"]],[18,20,["H376"]],[20,22,["H6635"]],[22,26,["H4421"]],[26,29,["H6186"]],[29,30,["H6793"]],[30,32,["H7420"]],[32,34,["H6440"]],[34,38,["H6440"]],[38,40,["H738"]],[40,44,["H4116"]],[44,47,["H6643"]],[47,48,["H5921"]],[48,50,["H2022"]]]},{"k":10729,"v":[[0,1,["H5829"]],[1,3,["H7218"]],[3,4,["H5662"]],[4,6,["H8145"]],[6,7,["H446"]],[7,9,["H7992"]]]},{"k":10730,"v":[[0,1,["H4925"]],[1,3,["H7243"]],[3,4,["H3414"]],[4,6,["H2549"]]]},{"k":10731,"v":[[0,1,["H6262"]],[1,3,["H8345"]],[3,4,["H447"]],[4,6,["H7637"]]]},{"k":10732,"v":[[0,1,["H3110"]],[1,3,["H8066"]],[3,4,["H443"]],[4,6,["H8671"]]]},{"k":10733,"v":[[0,1,["H3414"]],[1,3,["H6224"]],[3,4,["H4344"]],[4,6,["H6249","H6240"]]]},{"k":10734,"v":[[0,1,["H428"]],[1,5,["H4480","H1121"]],[5,7,["H1410"]],[7,8,["H7218"]],[8,11,["H6635"]],[11,12,["H259"]],[12,15,["H6996"]],[15,19,["H3967"]],[19,22,["H1419"]],[22,25,["H505"]]]},{"k":10735,"v":[[0,1,["H428"]],[1,3,["H1992"]],[3,4,["H834"]],[4,6,["H5674","(H853)"]],[6,7,["H3383"]],[7,10,["H7223"]],[10,11,["H2320"]],[11,13,["H1931"]],[13,15,["H4390","H5921"]],[15,16,["H3605"]],[16,18,["H1428"]],[18,23,["H1272","(H853)"]],[23,24,["H3605"]],[24,28,["H6010"]],[28,32,["H4217"]],[32,36,["H4628"]]]},{"k":10736,"v":[[0,3,["H935"]],[3,4,["H4480"]],[4,6,["H1121"]],[6,8,["H1144"]],[8,10,["H3063"]],[10,11,["H5704"]],[11,13,["H4679"]],[13,15,["H1732"]]]},{"k":10737,"v":[[0,2,["H1732"]],[2,4,["H3318"]],[4,6,["H6440"]],[6,9,["H6030"]],[9,11,["H559"]],[11,14,["H518"]],[14,17,["H935"]],[17,18,["H7965"]],[18,19,["H413"]],[19,22,["H5826"]],[22,25,["H3824"]],[25,27,["H1961"]],[27,28,["H3162"]],[28,29,["H5921"]],[29,32,["H518"]],[32,37,["H7411"]],[37,41,["H6862"]],[41,45,["H3808"]],[45,46,["H2555"]],[46,49,["H3709"]],[49,51,["H430"]],[51,54,["H1"]],[54,55,["H7200"]],[55,58,["H3198"]],[58,59,[]]]},{"k":10738,"v":[[0,3,["H7307"]],[3,5,["H3847","(H853)"]],[5,6,["H6022"]],[6,9,["H7218"]],[9,12,["H7991"]],[12,19,["H1732"]],[19,23,["H5973"]],[23,25,["H1121"]],[25,27,["H3448"]],[27,28,["H7965"]],[28,29,["H7965"]],[29,34,["H7965"]],[34,38,["H5826"]],[38,39,["H3588"]],[39,41,["H430"]],[41,42,["H5826"]],[42,45,["H1732"]],[45,46,["H6901"]],[46,49,["H5414"]],[49,51,["H7218"]],[51,54,["H1416"]]]},{"k":10739,"v":[[0,3,["H5307"]],[3,5,["H4480"]],[5,6,["H4519"]],[6,7,["H5921"]],[7,8,["H1732"]],[8,11,["H935"]],[11,12,["H5973"]],[12,14,["H6430"]],[14,15,["H5921"]],[15,16,["H7586"]],[16,18,["H4421"]],[18,21,["H5826"]],[21,23,["H3808"]],[23,24,["H3588"]],[24,26,["H5633"]],[26,29,["H6430"]],[29,31,["H6098"]],[31,34,["H7971"]],[34,35,["H559"]],[35,38,["H5307"]],[38,39,["H413"]],[39,41,["H113"]],[41,42,["H7586"]],[42,48,["H7218"]]]},{"k":10740,"v":[[0,3,["H1980"]],[3,4,["H413"]],[4,5,["H6860"]],[5,7,["H5307"]],[7,8,["H5921"]],[8,11,["H4480","H4519"]],[11,12,["H5734"]],[12,14,["H3107"]],[14,16,["H3043"]],[16,18,["H4317"]],[18,20,["H3107"]],[20,22,["H453"]],[22,24,["H6769"]],[24,25,["H7218"]],[25,28,["H505"]],[28,29,["H834"]],[29,32,["H4519"]]]},{"k":10741,"v":[[0,2,["H1992"]],[2,3,["H5826","H5973"]],[3,4,["H1732"]],[4,5,["H5921"]],[5,7,["H1416"]],[7,11,["H3588"]],[11,14,["H3605"]],[14,16,["H1368"]],[16,18,["H2428"]],[18,20,["H1961"]],[20,21,["H8269"]],[21,24,["H6635"]]]},{"k":10742,"v":[[0,1,["H3588"]],[1,4,["H6256"]],[4,5,["H3117"]],[5,7,["H3117"]],[7,9,["H935"]],[9,10,["H5921"]],[10,11,["H1732"]],[11,13,["H5826"]],[13,15,["H5704"]],[15,19,["H1419"]],[19,20,["H4264"]],[20,23,["H4264"]],[23,25,["H430"]]]},{"k":10743,"v":[[0,2,["H428"]],[2,5,["H4557"]],[5,8,["H7218"]],[8,12,["H2502"]],[12,15,["H6635"]],[15,17,["H935"]],[17,18,["H5921"]],[18,19,["H1732"]],[19,21,["H2275"]],[21,23,["H5437"]],[23,25,["H4438"]],[25,27,["H7586"]],[27,28,["H413"]],[28,33,["H6310"]],[33,36,["H3068"]]]},{"k":10744,"v":[[0,2,["H1121"]],[2,4,["H3063"]],[4,6,["H5375"]],[6,7,["H6793"]],[7,9,["H7420"]],[9,11,["H8337"]],[11,12,["H505"]],[12,14,["H8083"]],[14,15,["H3967"]],[15,17,["H2502"]],[17,20,["H6635"]]]},{"k":10745,"v":[[0,1,["H4480"]],[1,3,["H1121"]],[3,5,["H8095"]],[5,7,["H1368"]],[7,9,["H2428"]],[9,12,["H6635"]],[12,13,["H7651"]],[13,14,["H505"]],[14,17,["H3967"]]]},{"k":10746,"v":[[0,1,["H4480"]],[1,3,["H1121"]],[3,5,["H3878"]],[5,6,["H702"]],[6,7,["H505"]],[7,9,["H8337"]],[9,10,["H3967"]]]},{"k":10747,"v":[[0,2,["H3111"]],[2,5,["H5057"]],[5,8,["H175"]],[8,10,["H5973"]],[10,13,["H7969"]],[13,14,["H505"]],[14,16,["H7651"]],[16,17,["H3967"]]]},{"k":10748,"v":[[0,2,["H6659"]],[2,5,["H5288"]],[5,6,["H1368"]],[6,8,["H2428"]],[8,12,["H1"]],[12,13,["H1004"]],[13,14,["H6242"]],[14,16,["H8147"]],[16,17,["H8269"]]]},{"k":10749,"v":[[0,2,["H4480"]],[2,4,["H1121"]],[4,6,["H1144"]],[6,8,["H251"]],[8,10,["H7586"]],[10,11,["H7969"]],[11,12,["H505"]],[12,14,["H5704","H2008"]],[14,17,["H4768"]],[17,21,["H8104"]],[21,23,["H4931"]],[23,26,["H1004"]],[26,28,["H7586"]]]},{"k":10750,"v":[[0,2,["H4480"]],[2,4,["H1121"]],[4,6,["H669"]],[6,7,["H6242"]],[7,8,["H505"]],[8,10,["H8083"]],[10,11,["H3967"]],[11,13,["H1368"]],[13,15,["H2428"]],[15,16,["H376","H8034"]],[16,19,["H1004"]],[19,22,["H1"]]]},{"k":10751,"v":[[0,4,["H4480","H2677"]],[4,5,["H4294"]],[5,7,["H4519"]],[7,8,["H8083","H6240"]],[8,9,["H505"]],[9,10,["H834"]],[10,12,["H5344"]],[12,14,["H8034"]],[14,16,["H935"]],[16,20,["H4427","(H853)","H1732"]]]},{"k":10752,"v":[[0,4,["H4480","H1121"]],[4,6,["H3485"]],[6,11,["H3045"]],[11,12,["H998"]],[12,15,["H6256"]],[15,17,["H3045"]],[17,18,["H4100"]],[18,19,["H3478"]],[19,22,["H6213"]],[22,24,["H7218"]],[24,29,["H3967"]],[29,31,["H3605"]],[31,33,["H251"]],[33,35,["H5921"]],[35,37,["H6310"]]]},{"k":10753,"v":[[0,2,["H4480","H2074"]],[2,6,["H3318"]],[6,8,["H6635"]],[8,9,["H6186"]],[9,11,["H4421"]],[11,13,["H3605"]],[13,14,["H3627"]],[14,16,["H4421"]],[16,17,["H2572"]],[17,18,["H505"]],[18,22,["H5737"]],[22,25,["H3808"]],[25,28,["H3820","H3820"]]]},{"k":10754,"v":[[0,3,["H4480","H5321"]],[3,5,["H505"]],[5,6,["H8269"]],[6,8,["H5973"]],[8,11,["H6793"]],[11,13,["H2595"]],[13,14,["H7970"]],[14,16,["H7651"]],[16,17,["H505"]]]},{"k":10755,"v":[[0,2,["H4480"]],[2,4,["H1839"]],[4,5,["H6186"]],[5,7,["H4421"]],[7,8,["H6242"]],[8,10,["H8083"]],[10,11,["H505"]],[11,13,["H8337"]],[13,14,["H3967"]]]},{"k":10756,"v":[[0,3,["H4480","H836"]],[3,7,["H3318"]],[7,9,["H6635"]],[9,10,["H6186"]],[10,12,["H4421"]],[12,13,["H705"]],[13,14,["H505"]]]},{"k":10757,"v":[[0,5,["H4480","H5676"]],[5,7,["H3383"]],[7,8,["H4480"]],[8,10,["H7206"]],[10,13,["H1425"]],[13,17,["H2677"]],[17,18,["H7626"]],[18,20,["H4519"]],[20,23,["H3605"]],[23,25,["H3627"]],[25,27,["H6635"]],[27,30,["H4421"]],[30,32,["H3967"]],[32,34,["H6242"]],[34,35,["H505"]]]},{"k":10758,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,3,["H376"]],[3,5,["H4421"]],[5,8,["H5737"]],[8,9,["H4634"]],[9,10,["H935"]],[10,13,["H8003"]],[13,14,["H3824"]],[14,16,["H2275"]],[16,20,["H4427","(H853)","H1732"]],[20,21,["H5921"]],[21,22,["H3605"]],[22,23,["H3478"]],[23,25,["H3605"]],[25,27,["H7611"]],[27,28,["H1571"]],[28,30,["H3478"]],[30,33,["H259"]],[33,34,["H3820"]],[34,38,["H4427","(H853)","H1732"]]]},{"k":10759,"v":[[0,2,["H8033"]],[2,4,["H1961"]],[4,5,["H5973"]],[5,6,["H1732"]],[6,7,["H7969"]],[7,8,["H3117"]],[8,9,["H398"]],[9,11,["H8354"]],[11,12,["H3588"]],[12,14,["H251"]],[14,16,["H3559"]],[16,18,[]]]},{"k":10760,"v":[[0,1,["H1571"]],[1,5,["H7138","H413"]],[5,8,["H5704"]],[8,9,["H3485"]],[9,11,["H2074"]],[11,13,["H5321"]],[13,14,["H935"]],[14,15,["H3899"]],[15,17,["H2543"]],[17,20,["H1581"]],[20,23,["H6505"]],[23,26,["H1241"]],[26,28,["H3978"]],[28,29,["H7058"]],[29,32,["H1690"]],[32,36,["H6778"]],[36,38,["H3196"]],[38,40,["H8081"]],[40,42,["H1241"]],[42,44,["H6629"]],[44,45,["H7230"]],[45,46,["H3588"]],[46,49,["H8057"]],[49,51,["H3478"]]]},{"k":10761,"v":[[0,2,["H1732"]],[2,3,["H3289"]],[3,4,["H5973"]],[4,6,["H8269"]],[6,8,["H505"]],[8,10,["H3967"]],[10,13,["H3605"]],[13,14,["H5057"]]]},{"k":10762,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H3605"]],[5,7,["H6951"]],[7,9,["H3478"]],[9,10,["H518"]],[10,13,["H2895"]],[13,14,["H5921"]],[14,20,["H4480"]],[20,22,["H3068"]],[22,24,["H430"]],[24,27,["H7971"]],[27,28,["H6555"]],[28,29,["H5921"]],[29,31,["H251"]],[31,36,["H7604"]],[36,38,["H3605"]],[38,40,["H776"]],[40,42,["H3478"]],[42,44,["H5973"]],[44,49,["H3548"]],[49,51,["H3881"]],[51,56,["H5892"]],[56,58,["H4054"]],[58,63,["H6908"]],[63,64,["H413"]],[64,65,[]]]},{"k":10763,"v":[[0,5,["H5437","(H853)"]],[5,7,["H727"]],[7,10,["H430"]],[10,11,["H413"]],[11,13,["H3588"]],[13,15,["H1875"]],[15,16,["H3808"]],[16,21,["H3117"]],[21,23,["H7586"]]]},{"k":10764,"v":[[0,2,["H3605"]],[2,4,["H6951"]],[4,5,["H559"]],[5,9,["H6213"]],[9,10,["H3651"]],[10,11,["H3588"]],[11,13,["H1697"]],[13,15,["H3474"]],[15,18,["H5869"]],[18,20,["H3605"]],[20,22,["H5971"]]]},{"k":10765,"v":[[0,2,["H1732"]],[2,3,["H6950","(H853)"]],[3,4,["H3605"]],[4,5,["H3478"]],[5,7,["H4480"]],[7,8,["H7883"]],[8,10,["H4714"]],[10,12,["H5704"]],[12,14,["H935"]],[14,16,["H2574"]],[16,18,["H935","(H853)"]],[18,20,["H727"]],[20,22,["H430"]],[22,24,["H4480","H7157"]]]},{"k":10766,"v":[[0,2,["H1732"]],[2,4,["H5927"]],[4,6,["H3605"]],[6,7,["H3478"]],[7,9,["H1173"]],[9,12,["H413"]],[12,13,["H7157"]],[13,14,["H834"]],[14,17,["H3063"]],[17,20,["H5927"]],[20,21,["H4480","H8033","(H853)"]],[21,23,["H727"]],[23,25,["H430"]],[25,27,["H3068"]],[27,29,["H3427"]],[29,32,["H3742"]],[32,33,["H834"]],[33,34,["H8034"]],[34,36,["H7121"]],[36,38,[]]]},{"k":10767,"v":[[0,3,["H7392","(H853)"]],[3,5,["H727"]],[5,7,["H430"]],[7,8,["H5921"]],[8,10,["H2319"]],[10,11,["H5699"]],[11,15,["H4480","H1004"]],[15,17,["H41"]],[17,19,["H5798"]],[19,21,["H283"]],[21,22,["H5090"]],[22,24,["H5699"]]]},{"k":10768,"v":[[0,2,["H1732"]],[2,4,["H3605"]],[4,5,["H3478"]],[5,6,["H7832"]],[6,7,["H6440"]],[7,8,["H430"]],[8,10,["H3605"]],[10,12,["H5797"]],[12,15,["H7892"]],[15,18,["H3658"]],[18,21,["H5035"]],[21,24,["H8596"]],[24,27,["H4700"]],[27,30,["H2689"]]]},{"k":10769,"v":[[0,4,["H935"]],[4,5,["H5704"]],[5,7,["H1637"]],[7,9,["H3592"]],[9,10,["H5798"]],[10,12,["H7971","(H853)"]],[12,14,["H3027"]],[14,16,["H270","(H853)"]],[16,18,["H727"]],[18,19,["H3588"]],[19,21,["H1241"]],[21,22,["H8058"]]]},{"k":10770,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,10,["H5798"]],[10,13,["H5221","H5921"]],[13,15,["H5921","H834"]],[15,17,["H7971"]],[17,19,["H3027"]],[19,20,["H5921"]],[20,22,["H727"]],[22,24,["H8033"]],[24,26,["H4191"]],[26,27,["H6440"]],[27,28,["H430"]]]},{"k":10771,"v":[[0,2,["H1732"]],[2,4,["H2734"]],[4,5,["H3588"]],[5,7,["H3068"]],[7,9,["H6555"]],[9,11,["H6556"]],[11,13,["H5798"]],[13,15,["H1931"]],[15,16,["H4725"]],[16,18,["H7121"]],[18,19,["H6560"]],[19,20,["H5704"]],[20,21,["H2088"]],[21,22,["H3117"]]]},{"k":10772,"v":[[0,2,["H1732"]],[2,4,["H3372","(H853)"]],[4,6,["H430"]],[6,7,["H1931"]],[7,8,["H3117"]],[8,9,["H559"]],[9,10,["H1963"]],[10,13,["H935","(H853)"]],[13,15,["H727"]],[15,17,["H430"]],[17,19,["H413"]],[19,20,[]]]},{"k":10773,"v":[[0,2,["H1732"]],[2,3,["H5493"]],[3,4,["H3808","(H853)"]],[4,6,["H727"]],[6,8,["H413"]],[8,10,["H413"]],[10,12,["H5892"]],[12,14,["H1732"]],[14,18,["H5186"]],[18,19,["H413"]],[19,21,["H1004"]],[21,23,["H5654"]],[23,25,["H1663"]]]},{"k":10774,"v":[[0,3,["H727"]],[3,5,["H430"]],[5,6,["H3427"]],[6,7,["H5973"]],[7,9,["H1004"]],[9,11,["H5654"]],[11,14,["H1004"]],[14,15,["H7969"]],[15,16,["H2320"]],[16,19,["H3068"]],[19,20,["H1288","(H853)"]],[20,22,["H1004"]],[22,24,["H5654"]],[24,26,["H3605"]],[26,27,["H834"]],[27,29,[]]]},{"k":10775,"v":[[0,2,["H2438"]],[2,3,["H4428"]],[3,5,["H6865"]],[5,6,["H7971"]],[6,7,["H4397"]],[7,8,["H413"]],[8,9,["H1732"]],[9,11,["H6086"]],[11,13,["H730"]],[13,15,["H2796","H7023"]],[15,17,["H2796","H6086"]],[17,19,["H1129"]],[19,22,["H1004"]]]},{"k":10776,"v":[[0,2,["H1732"]],[2,3,["H3045"]],[3,4,["H3588"]],[4,6,["H3068"]],[6,8,["H3559"]],[8,10,["H4428"]],[10,11,["H5921"]],[11,12,["H3478"]],[12,13,["H3588"]],[13,15,["H4438"]],[15,18,["H5375"]],[18,20,["H4605"]],[20,22,["H5668"]],[22,24,["H5971"]],[24,25,["H3478"]]]},{"k":10777,"v":[[0,2,["H1732"]],[2,3,["H3947"]],[3,4,["H5750"]],[4,5,["H802"]],[5,7,["H3389"]],[7,9,["H1732"]],[9,10,["H3205"]],[10,11,["H5750"]],[11,12,["H1121"]],[12,14,["H1323"]]]},{"k":10778,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H3205"]],[8,9,["H834"]],[9,11,["H1961"]],[11,13,["H3389"]],[13,14,["H8051"]],[14,16,["H7727"]],[16,17,["H5416"]],[17,19,["H8010"]]]},{"k":10779,"v":[[0,2,["H2984"]],[2,4,["H474"]],[4,6,["H467"]]]},{"k":10780,"v":[[0,2,["H5052"]],[2,4,["H5298"]],[4,6,["H3309"]]]},{"k":10781,"v":[[0,2,["H476"]],[2,4,["H1182"]],[4,6,["H467"]]]},{"k":10782,"v":[[0,4,["H6430"]],[4,5,["H8085"]],[5,6,["H3588"]],[6,7,["H1732"]],[7,9,["H4886"]],[9,10,["H4428"]],[10,11,["H5921"]],[11,12,["H3605"]],[12,13,["H3478"]],[13,14,["H3605"]],[14,16,["H6430"]],[16,18,["H5927"]],[18,20,["H1245","(H853)"]],[20,21,["H1732"]],[21,23,["H1732"]],[23,24,["H8085"]],[24,29,["H3318"]],[29,30,["H6440"]],[30,31,[]]]},{"k":10783,"v":[[0,3,["H6430"]],[3,4,["H935"]],[4,6,["H6584"]],[6,10,["H6010"]],[10,12,["H7497"]]]},{"k":10784,"v":[[0,2,["H1732"]],[2,3,["H7592"]],[3,5,["H430"]],[5,6,["H559"]],[6,10,["H5927"]],[10,11,["H5921"]],[11,13,["H6430"]],[13,17,["H5414"]],[17,21,["H3027"]],[21,24,["H3068"]],[24,25,["H559"]],[25,29,["H5927"]],[29,33,["H5414"]],[33,37,["H3027"]]]},{"k":10785,"v":[[0,4,["H5927"]],[4,6,["H1188"]],[6,8,["H1732"]],[8,9,["H5221"]],[9,11,["H8033"]],[11,13,["H1732"]],[13,14,["H559"]],[14,15,["H430"]],[15,18,["H6555","(H853)"]],[18,21,["H341"]],[21,24,["H3027"]],[24,28,["H6556"]],[28,30,["H4325"]],[30,31,["H5921","H3651"]],[31,33,["H7121"]],[33,35,["H8034"]],[35,37,["H1931"]],[37,38,["H4725"]],[38,39,["H1188"]]]},{"k":10786,"v":[[0,5,["H5800","(H853)"]],[5,7,["H430"]],[7,8,["H8033"]],[8,9,["H1732"]],[9,12,["H559"]],[12,16,["H8313"]],[16,18,["H784"]]]},{"k":10787,"v":[[0,3,["H6430"]],[3,4,["H5750"]],[4,5,["H3254"]],[5,8,["H6584"]],[8,11,["H6010"]]]},{"k":10788,"v":[[0,2,["H1732"]],[2,3,["H7592"]],[3,4,["H5750"]],[4,6,["H430"]],[6,8,["H430"]],[8,9,["H559"]],[9,14,["H3808","H5927"]],[14,15,["H310"]],[15,18,["H5437"]],[18,19,["H4480","H5921"]],[19,22,["H935"]],[22,26,["H4480","H4136"]],[26,29,["H1057"]]]},{"k":10789,"v":[[0,4,["H1961"]],[4,8,["H8085","(H853)"]],[8,10,["H6963"]],[10,12,["H6807"]],[12,15,["H7218"]],[15,19,["H1057"]],[19,21,["H227"]],[21,25,["H3318"]],[25,27,["H4421"]],[27,28,["H3588"]],[28,29,["H430"]],[29,32,["H3318"]],[32,33,["H6440"]],[33,36,["H5221","(H853)"]],[36,38,["H4264"]],[38,41,["H6430"]]]},{"k":10790,"v":[[0,1,["H1732"]],[1,3,["H6213"]],[3,4,["H834"]],[4,5,["H430"]],[5,6,["H6680"]],[6,10,["H5221","(H853)"]],[10,12,["H4264"]],[12,15,["H6430"]],[15,17,["H4480","H1391"]],[17,19,["H5704"]],[19,20,["H1507"]]]},{"k":10791,"v":[[0,3,["H8034"]],[3,5,["H1732"]],[5,7,["H3318"]],[7,9,["H3605"]],[9,10,["H776"]],[10,13,["H3068"]],[13,14,["H5414","(H853)"]],[14,16,["H6343"]],[16,19,["H5921"]],[19,20,["H3605"]],[20,21,["H1471"]]]},{"k":10792,"v":[[0,3,["H6213"]],[3,5,["H1004"]],[5,8,["H5892"]],[8,10,["H1732"]],[10,12,["H3559"]],[12,14,["H4725"]],[14,17,["H727"]],[17,19,["H430"]],[19,21,["H5186"]],[21,25,["H168"]]]},{"k":10793,"v":[[0,1,["H227"]],[1,2,["H1732"]],[2,3,["H559"]],[3,4,["H3808"]],[4,7,["H5375","(H853)"]],[7,9,["H727"]],[9,11,["H430"]],[11,12,["H3588","H518"]],[12,14,["H3881"]],[14,15,["H3588"]],[15,19,["H3068"]],[19,20,["H977"]],[20,22,["H5375","(H853)"]],[22,24,["H727"]],[24,26,["H430"]],[26,29,["H8334"]],[29,33,["H5704","H5769"]]]},{"k":10794,"v":[[0,2,["H1732"]],[2,3,["H6950","(H853)"]],[3,4,["H3605"]],[4,5,["H3478"]],[5,7,["H413"]],[7,8,["H3389"]],[8,11,["H5927","(H853)"]],[11,13,["H727"]],[13,16,["H3068"]],[16,17,["H413"]],[17,19,["H4725"]],[19,20,["H834"]],[20,23,["H3559"]],[23,25,[]]]},{"k":10795,"v":[[0,2,["H1732"]],[2,3,["H622","(H853)"]],[3,5,["H1121"]],[5,7,["H175"]],[7,10,["H3881"]]]},{"k":10796,"v":[[0,3,["H1121"]],[3,5,["H6955"]],[5,6,["H222"]],[6,8,["H8269"]],[8,11,["H251"]],[11,13,["H3967"]],[13,15,["H6242"]]]},{"k":10797,"v":[[0,3,["H1121"]],[3,5,["H4847"]],[5,6,["H6222"]],[6,8,["H8269"]],[8,11,["H251"]],[11,13,["H3967"]],[13,15,["H6242"]]]},{"k":10798,"v":[[0,3,["H1121"]],[3,5,["H1648"]],[5,6,["H3100"]],[6,8,["H8269"]],[8,11,["H251"]],[11,13,["H3967"]],[13,15,["H7970"]]]},{"k":10799,"v":[[0,3,["H1121"]],[3,5,["H469"]],[5,6,["H8098"]],[6,8,["H8269"]],[8,11,["H251"]],[11,13,["H3967"]]]},{"k":10800,"v":[[0,3,["H1121"]],[3,5,["H2275"]],[5,6,["H447"]],[6,8,["H8269"]],[8,11,["H251"]],[11,12,["H8084"]]]},{"k":10801,"v":[[0,3,["H1121"]],[3,5,["H5816"]],[5,6,["H5992"]],[6,8,["H8269"]],[8,11,["H251"]],[11,13,["H3967"]],[13,15,["H8147","H6240"]]]},{"k":10802,"v":[[0,2,["H1732"]],[2,3,["H7121"]],[3,5,["H6659"]],[5,7,["H54"]],[7,9,["H3548"]],[9,13,["H3881"]],[13,15,["H222"]],[15,16,["H6222"]],[16,18,["H3100"]],[18,19,["H8098"]],[19,21,["H447"]],[21,23,["H5992"]]]},{"k":10803,"v":[[0,2,["H559"]],[2,5,["H859"]],[5,8,["H7218"]],[8,11,["H1"]],[11,14,["H3881"]],[14,16,["H6942"]],[16,18,["H859"]],[18,21,["H251"]],[21,26,["H5927","(H853)"]],[26,28,["H727"]],[28,31,["H3068"]],[31,32,["H430"]],[32,34,["H3478"]],[34,35,["H413"]],[35,41,["H3559"]],[41,43,[]]]},{"k":10804,"v":[[0,2,["H3588"]],[2,3,["H859"]],[3,6,["H3808"]],[6,9,["H4480","H7223"]],[9,11,["H3068"]],[11,13,["H430"]],[13,16,["H6555"]],[16,19,["H3588"]],[19,22,["H1875"]],[22,24,["H3808"]],[24,28,["H4941"]]]},{"k":10805,"v":[[0,3,["H3548"]],[3,6,["H3881"]],[6,8,["H6942"]],[8,11,["H5927","(H853)"]],[11,13,["H727"]],[13,16,["H3068"]],[16,17,["H430"]],[17,19,["H3478"]]]},{"k":10806,"v":[[0,3,["H1121"]],[3,6,["H3881"]],[6,7,["H5375","(H853)"]],[7,9,["H727"]],[9,11,["H430"]],[11,14,["H3802"]],[14,17,["H4133"]],[17,18,["H5921"]],[18,19,["H834"]],[19,20,["H4872"]],[20,21,["H6680"]],[21,25,["H1697"]],[25,28,["H3068"]]]},{"k":10807,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,6,["H8269"]],[6,9,["H3881"]],[9,11,["H5975","(H853)"]],[11,13,["H251"]],[13,17,["H7891"]],[17,19,["H3627"]],[19,21,["H7892"]],[21,22,["H5035"]],[22,24,["H3658"]],[24,26,["H4700"]],[26,27,["H8085"]],[27,30,["H7311"]],[30,32,["H6963"]],[32,34,["H8057"]]]},{"k":10808,"v":[[0,3,["H3881"]],[3,4,["H5975","(H853)"]],[4,5,["H1968"]],[5,7,["H1121"]],[7,9,["H3100"]],[9,11,["H4480"]],[11,13,["H251"]],[13,14,["H623"]],[14,16,["H1121"]],[16,18,["H1296"]],[18,20,["H4480"]],[20,22,["H1121"]],[22,24,["H4847"]],[24,26,["H251"]],[26,27,["H387"]],[27,29,["H1121"]],[29,31,["H6984"]]]},{"k":10809,"v":[[0,2,["H5973"]],[2,5,["H251"]],[5,8,["H4932"]],[8,10,["H2148"]],[10,11,["H1122"]],[11,13,["H3268"]],[13,15,["H8070"]],[15,17,["H3171"]],[17,19,["H6042"]],[19,20,["H446"]],[20,22,["H1141"]],[22,24,["H4641"]],[24,26,["H4993"]],[26,28,["H466"]],[28,30,["H4737"]],[30,32,["H5654"]],[32,34,["H3273"]],[34,36,["H7778"]]]},{"k":10810,"v":[[0,3,["H7891"]],[3,4,["H1968"]],[4,5,["H623"]],[5,7,["H387"]],[7,11,["H8085"]],[11,13,["H4700"]],[13,15,["H5178"]]]},{"k":10811,"v":[[0,2,["H2148"]],[2,4,["H5815"]],[4,6,["H8070"]],[6,8,["H3171"]],[8,10,["H6042"]],[10,12,["H446"]],[12,14,["H4641"]],[14,16,["H1141"]],[16,18,["H5035"]],[18,19,["H5921"]],[19,20,["H5961"]]]},{"k":10812,"v":[[0,2,["H4993"]],[2,4,["H466"]],[4,6,["H4737"]],[6,8,["H5654"]],[8,10,["H3273"]],[10,12,["H5812"]],[12,14,["H3658"]],[14,15,["H5921"]],[15,17,["H8067"]],[17,19,["H5329"]]]},{"k":10813,"v":[[0,2,["H3663"]],[2,3,["H8269"]],[3,6,["H3881"]],[6,9,["H4853"]],[9,11,["H3256"]],[11,14,["H4853"]],[14,15,["H3588"]],[15,16,["H1931"]],[16,18,["H995"]]]},{"k":10814,"v":[[0,2,["H1296"]],[2,4,["H511"]],[4,6,["H7778"]],[6,9,["H727"]]]},{"k":10815,"v":[[0,2,["H7645"]],[2,4,["H3146"]],[4,6,["H5417"]],[6,8,["H6022"]],[8,10,["H2148"]],[10,12,["H1141"]],[12,14,["H461"]],[14,16,["H3548"]],[16,18,["H2690"]],[18,21,["H2689"]],[21,22,["H6440"]],[22,24,["H727"]],[24,26,["H430"]],[26,28,["H5654"]],[28,30,["H3174"]],[30,32,["H7778"]],[32,35,["H727"]]]},{"k":10816,"v":[[0,1,["H1961"]],[1,2,["H1732"]],[2,5,["H2205"]],[5,7,["H3478"]],[7,10,["H8269"]],[10,12,["H505"]],[12,13,["H1980"]],[13,16,["H5927","(H853)"]],[16,18,["H727"]],[18,21,["H1285"]],[21,24,["H3068"]],[24,26,["H4480"]],[26,28,["H1004"]],[28,30,["H5654"]],[30,32,["H8057"]]]},{"k":10817,"v":[[0,5,["H1961"]],[5,7,["H430"]],[7,8,["H5826","(H853)"]],[8,10,["H3881"]],[10,12,["H5375"]],[12,14,["H727"]],[14,17,["H1285"]],[17,20,["H3068"]],[20,23,["H2076"]],[23,24,["H7651"]],[24,25,["H6499"]],[25,27,["H7651"]],[27,28,["H352"]]]},{"k":10818,"v":[[0,2,["H1732"]],[2,4,["H3736"]],[4,7,["H4598"]],[7,10,["H948"]],[10,12,["H3605"]],[12,14,["H3881"]],[14,16,["H5375","(H853)"]],[16,18,["H727"]],[18,21,["H7891"]],[21,23,["H3663"]],[23,25,["H8269"]],[25,28,["H4853"]],[28,31,["H7891"]],[31,32,["H1732"]],[32,38,["H646"]],[38,40,["H906"]]]},{"k":10819,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,5,["H5927","(H853)"]],[5,7,["H727"]],[7,10,["H1285"]],[10,13,["H3068"]],[13,15,["H8643"]],[15,18,["H6963"]],[18,21,["H7782"]],[21,24,["H2689"]],[24,27,["H4700"]],[27,30,["H8085"]],[30,32,["H5035"]],[32,34,["H3658"]]]},{"k":10820,"v":[[0,5,["H1961"]],[5,8,["H727"]],[8,11,["H1285"]],[11,14,["H3068"]],[14,15,["H935"]],[15,16,["H5704"]],[16,18,["H5892"]],[18,20,["H1732"]],[20,22,["H4324"]],[22,24,["H1323"]],[24,26,["H7586"]],[26,28,["H8259"]],[28,29,["H1157"]],[29,31,["H2474"]],[31,32,["H7200","(H853)"]],[32,33,["H4428"]],[33,34,["H1732"]],[34,35,["H7540"]],[35,37,["H7832"]],[37,40,["H959"]],[40,44,["H3820"]]]},{"k":10821,"v":[[0,3,["H935","(H853)"]],[3,5,["H727"]],[5,7,["H430"]],[7,9,["H3322"]],[9,13,["H8432"]],[13,16,["H168"]],[16,17,["H834"]],[17,18,["H1732"]],[18,20,["H5186"]],[20,25,["H7126"]],[25,27,["H5930"]],[27,30,["H8002"]],[30,31,["H6440"]],[31,32,["H430"]]]},{"k":10822,"v":[[0,3,["H1732"]],[3,7,["H3615"]],[7,9,["H4480","H5927"]],[9,12,["H5930"]],[12,16,["H8002"]],[16,18,["H1288","(H853)"]],[18,20,["H5971"]],[20,23,["H8034"]],[23,26,["H3068"]]]},{"k":10823,"v":[[0,3,["H2505"]],[3,6,["H3605","H376"]],[6,8,["H3478"]],[8,10,["H4480","H376"]],[10,12,["H802"]],[12,15,["H376"]],[15,17,["H3603"]],[17,19,["H3899"]],[19,25,["H829"]],[25,28,["H809"]],[28,30,[]]]},{"k":10824,"v":[[0,3,["H5414"]],[3,5,["H4480"]],[5,7,["H3881"]],[7,9,["H8334"]],[9,10,["H6440"]],[10,12,["H727"]],[12,15,["H3068"]],[15,18,["H2142"]],[18,21,["H3034"]],[21,23,["H1984"]],[23,25,["H3068"]],[25,26,["H430"]],[26,28,["H3478"]]]},{"k":10825,"v":[[0,1,["H623"]],[1,3,["H7218"]],[3,5,["H4932"]],[5,8,["H2148"]],[8,9,["H3273"]],[9,11,["H8070"]],[11,13,["H3171"]],[13,15,["H4993"]],[15,17,["H446"]],[17,19,["H1141"]],[19,21,["H5654"]],[21,23,["H3273"]],[23,25,["H3627","H5035"]],[25,28,["H3658"]],[28,30,["H623"]],[30,33,["H8085"]],[33,35,["H4700"]]]},{"k":10826,"v":[[0,1,["H1141"]],[1,4,["H3166"]],[4,6,["H3548"]],[6,8,["H2689"]],[8,9,["H8548"]],[9,10,["H6440"]],[10,12,["H727"]],[12,15,["H1285"]],[15,17,["H430"]]]},{"k":10827,"v":[[0,1,["H227"]],[1,3,["H1931"]],[3,4,["H3117"]],[4,5,["H1732"]],[5,6,["H5414"]],[6,7,["H7218"]],[7,11,["H3034"]],[11,13,["H3068"]],[13,16,["H3027"]],[16,18,["H623"]],[18,21,["H251"]]]},{"k":10828,"v":[[0,2,["H3034"]],[2,5,["H3068"]],[5,6,["H7121"]],[6,9,["H8034"]],[9,11,["H3045"]],[11,13,["H5949"]],[13,16,["H5971"]]]},{"k":10829,"v":[[0,1,["H7891"]],[1,5,["H2167"]],[5,8,["H7878"]],[8,11,["H3605"]],[11,14,["H6381"]]]},{"k":10830,"v":[[0,1,["H1984"]],[1,5,["H6944"]],[5,6,["H8034"]],[6,9,["H3820"]],[9,12,["H8055"]],[12,14,["H1245"]],[14,16,["H3068"]]]},{"k":10831,"v":[[0,1,["H1875"]],[1,3,["H3068"]],[3,6,["H5797"]],[6,7,["H1245"]],[7,9,["H6440"]],[9,10,["H8548"]]]},{"k":10832,"v":[[0,1,["H2142"]],[1,4,["H6381"]],[4,5,["H834"]],[5,8,["H6213"]],[8,10,["H4159"]],[10,13,["H4941"]],[13,16,["H6310"]]]},{"k":10833,"v":[[0,3,["H2233"]],[3,5,["H3478"]],[5,7,["H5650"]],[7,9,["H1121"]],[9,11,["H3290"]],[11,14,["H972"]]]},{"k":10834,"v":[[0,1,["H1931"]],[1,4,["H3068"]],[4,6,["H430"]],[6,8,["H4941"]],[8,11,["H3605"]],[11,13,["H776"]]]},{"k":10835,"v":[[0,3,["H2142"]],[3,4,["H5769"]],[4,7,["H1285"]],[7,9,["H1697"]],[9,12,["H6680"]],[12,15,["H505"]],[15,16,["H1755"]]]},{"k":10836,"v":[[0,5,["H834"]],[5,7,["H3772"]],[7,8,["H854"]],[8,9,["H85"]],[9,13,["H7621"]],[13,15,["H3327"]]]},{"k":10837,"v":[[0,3,["H5975"]],[3,7,["H3290"]],[7,10,["H2706"]],[10,13,["H3478"]],[13,16,["H5769"]],[16,17,["H1285"]]]},{"k":10838,"v":[[0,1,["H559"]],[1,6,["H5414"]],[6,8,["H776"]],[8,10,["H3667"]],[10,12,["H2256"]],[12,15,["H5159"]]]},{"k":10839,"v":[[0,3,["H1961"]],[3,5,["H4962"]],[5,8,["H4592"]],[8,10,["H1481"]],[10,12,[]]]},{"k":10840,"v":[[0,4,["H1980"]],[4,6,["H4480","H1471"]],[6,7,["H413"]],[7,8,["H1471"]],[8,12,["H4480","H4467"]],[12,13,["H413"]],[13,14,["H312"]],[14,15,["H5971"]]]},{"k":10841,"v":[[0,2,["H5117"]],[2,3,["H3808"]],[3,4,["H376"]],[4,8,["H6231"]],[8,11,["H3198"]],[11,12,["H4428"]],[12,15,["H5921"]]]},{"k":10842,"v":[[0,2,["H5060"]],[2,3,["H408"]],[3,5,["H4899"]],[5,7,["H7489"]],[7,9,["H5030"]],[9,10,["H408"]],[10,11,[]]]},{"k":10843,"v":[[0,1,["H7891"]],[1,4,["H3068"]],[4,5,["H3605"]],[5,7,["H776"]],[7,9,["H1319"]],[9,11,["H4480","H3117"]],[11,12,["H413"]],[12,13,["H3117"]],[13,15,["H3444"]]]},{"k":10844,"v":[[0,1,["H5608","(H853)"]],[1,3,["H3519"]],[3,6,["H1471"]],[6,9,["H6381"]],[9,11,["H3605"]],[11,12,["H5971"]]]},{"k":10845,"v":[[0,1,["H3588"]],[1,2,["H1419"]],[2,5,["H3068"]],[5,7,["H3966"]],[7,10,["H1984"]],[10,11,["H1931"]],[11,16,["H3372"]],[16,17,["H5921"]],[17,18,["H3605"]],[18,19,["H430"]]]},{"k":10846,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H430"]],[4,7,["H5971"]],[7,9,["H457"]],[9,12,["H3068"]],[12,13,["H6213"]],[13,15,["H8064"]]]},{"k":10847,"v":[[0,1,["H1935"]],[1,3,["H1926"]],[3,7,["H6440"]],[7,8,["H5797"]],[8,10,["H2304"]],[10,14,["H4725"]]]},{"k":10848,"v":[[0,1,["H3051"]],[1,4,["H3068"]],[4,6,["H4940"]],[6,9,["H5971"]],[9,10,["H3051"]],[10,13,["H3068"]],[13,14,["H3519"]],[14,16,["H5797"]]]},{"k":10849,"v":[[0,1,["H3051"]],[1,4,["H3068"]],[4,6,["H3519"]],[6,10,["H8034"]],[10,11,["H5375"]],[11,13,["H4503"]],[13,15,["H935"]],[15,16,["H6440"]],[16,18,["H7812"]],[18,20,["H3068"]],[20,23,["H1927"]],[23,25,["H6944"]]]},{"k":10850,"v":[[0,1,["H2342"]],[1,2,["H4480","H6440"]],[2,4,["H3605"]],[4,6,["H776"]],[6,8,["H8398"]],[8,9,["H637"]],[9,12,["H3559"]],[12,16,["H1077"]],[16,17,["H4131"]]]},{"k":10851,"v":[[0,3,["H8064"]],[3,5,["H8055"]],[5,9,["H776"]],[9,10,["H1523"]],[10,14,["H559"]],[14,17,["H1471"]],[17,19,["H3068"]],[19,20,["H4427"]]]},{"k":10852,"v":[[0,3,["H3220"]],[3,4,["H7481"]],[4,7,["H4393"]],[7,11,["H7704"]],[11,12,["H5970"]],[12,14,["H3605"]],[14,15,["H834"]],[15,17,[]]]},{"k":10853,"v":[[0,1,["H227"]],[1,4,["H6086"]],[4,7,["H3293"]],[7,9,["H7442"]],[9,12,["H4480","H6440"]],[12,15,["H3068"]],[15,16,["H3588"]],[16,18,["H935"]],[18,20,["H8199","(H853)"]],[20,22,["H776"]]]},{"k":10854,"v":[[0,3,["H3034"]],[3,6,["H3068"]],[6,7,["H3588"]],[7,10,["H2896"]],[10,11,["H3588"]],[11,13,["H2617"]],[13,16,["H5769"]]]},{"k":10855,"v":[[0,2,["H559"]],[2,4,["H3467"]],[4,7,["H430"]],[7,10,["H3468"]],[10,14,["H6908"]],[14,16,["H5337"]],[16,18,["H4480"]],[18,20,["H1471"]],[20,25,["H3034"]],[25,28,["H6944"]],[28,29,["H8034"]],[29,31,["H7623"]],[31,34,["H8416"]]]},{"k":10856,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,9,["H4480","H5769"]],[9,11,["H5704","H5769"]],[11,13,["H3605"]],[13,15,["H5971"]],[15,16,["H559"]],[16,17,["H543"]],[17,19,["H1984"]],[19,21,["H3068"]]]},{"k":10857,"v":[[0,3,["H5800"]],[3,4,["H8033"]],[4,5,["H6440"]],[5,7,["H727"]],[7,10,["H1285"]],[10,13,["H3068"]],[13,14,["H623"]],[14,17,["H251"]],[17,19,["H8334"]],[19,20,["H6440"]],[20,22,["H727"]],[22,23,["H8548"]],[23,28,["H1697","H3117","H3117"]]]},{"k":10858,"v":[[0,2,["H5654"]],[2,5,["H251"]],[5,6,["H8346"]],[6,8,["H8083"]],[8,9,["H5654"]],[9,12,["H1121"]],[12,14,["H3038"]],[14,16,["H2621"]],[16,19,["H7778"]]]},{"k":10859,"v":[[0,2,["H6659"]],[2,4,["H3548"]],[4,7,["H251"]],[7,9,["H3548"]],[9,10,["H6440"]],[10,12,["H4908"]],[12,15,["H3068"]],[15,19,["H1116"]],[19,20,["H834"]],[20,23,["H1391"]]]},{"k":10860,"v":[[0,2,["H5927"]],[2,4,["H5930"]],[4,7,["H3068"]],[7,8,["H5921"]],[8,10,["H4196"]],[10,14,["H5930"]],[14,15,["H8548"]],[15,16,["H1242"]],[16,18,["H6153"]],[18,24,["H3605"]],[24,27,["H3789"]],[27,30,["H8451"]],[30,33,["H3068"]],[33,34,["H834"]],[34,36,["H6680"]],[36,37,["H3478"]]]},{"k":10861,"v":[[0,2,["H5973"]],[2,4,["H1968"]],[4,6,["H3038"]],[6,9,["H7605"]],[9,12,["H1305"]],[12,13,["H834"]],[13,15,["H5344"]],[15,17,["H8034"]],[17,20,["H3034"]],[20,23,["H3068"]],[23,24,["H3588"]],[24,26,["H2617"]],[26,29,["H5769"]]]},{"k":10862,"v":[[0,2,["H5973"]],[2,4,["H1968"]],[4,6,["H3038"]],[6,8,["H2689"]],[8,10,["H4700"]],[10,17,["H8085"]],[17,20,["H7892"]],[20,21,["H3627"]],[21,23,["H430"]],[23,26,["H1121"]],[26,28,["H3038"]],[28,30,["H8179"]]]},{"k":10863,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H1980"]],[5,7,["H376"]],[7,10,["H1004"]],[10,12,["H1732"]],[12,13,["H5437"]],[13,15,["H1288","(H853)"]],[15,17,["H1004"]]]},{"k":10864,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H1732"]],[7,8,["H3427"]],[8,11,["H1004"]],[11,13,["H1732"]],[13,14,["H559"]],[14,15,["H413"]],[15,16,["H5416"]],[16,18,["H5030"]],[18,19,["H2009"]],[19,20,["H595"]],[20,21,["H3427"]],[21,24,["H1004"]],[24,26,["H730"]],[26,29,["H727"]],[29,32,["H1285"]],[32,35,["H3068"]],[35,37,["H8478"]],[37,38,["H3407"]]]},{"k":10865,"v":[[0,2,["H5416"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,6,["H6213"]],[6,7,["H3605"]],[7,8,["H834"]],[8,12,["H3824"]],[12,13,["H3588"]],[13,14,["H430"]],[14,16,["H5973"]],[16,17,[]]]},{"k":10866,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,8,["H3915"]],[8,11,["H1697"]],[11,13,["H430"]],[13,14,["H1961"]],[14,15,["H413"]],[15,16,["H5416"]],[16,17,["H559"]]]},{"k":10867,"v":[[0,1,["H1980"]],[1,3,["H559","H413"]],[3,4,["H1732"]],[4,6,["H5650"]],[6,7,["H3541"]],[7,8,["H559"]],[8,10,["H3068"]],[10,11,["H859"]],[11,13,["H3808"]],[13,14,["H1129"]],[14,17,["H1004"]],[17,20,["H3427"]]]},{"k":10868,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H3427"]],[5,8,["H1004"]],[8,9,["H4480"]],[9,11,["H3117"]],[11,12,["H834"]],[12,15,["H5927","(H853)"]],[15,16,["H3478"]],[16,17,["H5704"]],[17,18,["H2088"]],[18,19,["H3117"]],[19,22,["H1961"]],[22,24,["H4480","H168"]],[24,25,["H413"]],[25,26,["H168"]],[26,30,["H4480","H4908"]],[30,32,[]]]},{"k":10869,"v":[[0,1,["H3605","H834"]],[1,4,["H1980"]],[4,6,["H3605"]],[6,7,["H3478"]],[7,8,["H1696"]],[8,11,["H1697"]],[11,12,["H854"]],[12,13,["H259"]],[13,16,["H8199"]],[16,18,["H3478"]],[18,19,["H834"]],[19,21,["H6680"]],[21,23,["H7462","(H853)"]],[23,25,["H5971"]],[25,26,["H559"]],[26,27,["H4100"]],[27,30,["H3808"]],[30,31,["H1129"]],[31,34,["H1004"]],[34,36,["H730"]]]},{"k":10870,"v":[[0,1,["H6258"]],[1,3,["H3541"]],[3,6,["H559"]],[6,9,["H5650"]],[9,10,["H1732"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H3068"]],[14,16,["H6635"]],[16,17,["H589"]],[17,18,["H3947"]],[18,20,["H4480"]],[20,22,["H5116"]],[22,24,["H4480"]],[24,25,["H310"]],[25,27,["H6629"]],[27,31,["H1961"]],[31,32,["H5057"]],[32,33,["H5921"]],[33,35,["H5971"]],[35,36,["H3478"]]]},{"k":10871,"v":[[0,4,["H1961"]],[4,5,["H5973"]],[5,7,["H3605","H834"]],[7,10,["H1980"]],[10,14,["H3772","(H853)"]],[14,15,["H3605"]],[15,17,["H341"]],[17,19,["H4480","H6440"]],[19,23,["H6213"]],[23,26,["H8034"]],[26,29,["H8034"]],[29,33,["H1419"]],[33,34,["H834"]],[34,38,["H776"]]]},{"k":10872,"v":[[0,4,["H7760"]],[4,6,["H4725"]],[6,9,["H5971"]],[9,10,["H3478"]],[10,13,["H5193"]],[13,18,["H7931"]],[18,21,["H8478"]],[21,25,["H7264"]],[25,26,["H3808"]],[26,27,["H5750"]],[27,28,["H3808"]],[28,31,["H1121"]],[31,33,["H5766"]],[33,34,["H1086"]],[34,37,["H3254"]],[37,38,["H834"]],[38,41,["H7223"]]]},{"k":10873,"v":[[0,4,["H4480","H3117"]],[4,5,["H834"]],[5,7,["H6680"]],[7,8,["H8199"]],[8,11,["H5921"]],[11,13,["H5971"]],[13,14,["H3478"]],[14,18,["H3665","(H853)"]],[18,19,["H3605"]],[19,21,["H341"]],[21,24,["H5046"]],[24,28,["H3068"]],[28,30,["H1129"]],[30,33,["H1004"]]]},{"k":10874,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,9,["H3117"]],[9,11,["H4390"]],[11,15,["H1980"]],[15,18,["H5973"]],[18,20,["H1"]],[20,25,["H6965","(H853)"]],[25,27,["H2233"]],[27,28,["H310"]],[28,30,["H834"]],[30,32,["H1961"]],[32,35,["H4480","H1121"]],[35,39,["H3559","(H853)"]],[39,41,["H4438"]]]},{"k":10875,"v":[[0,1,["H1931"]],[1,3,["H1129"]],[3,6,["H1004"]],[6,10,["H3559","(H853)"]],[10,12,["H3678"]],[12,14,["H5704","H5769"]]]},{"k":10876,"v":[[0,1,["H589"]],[1,3,["H1961"]],[3,5,["H1"]],[5,7,["H1931"]],[7,9,["H1961"]],[9,11,["H1121"]],[11,15,["H3808"]],[15,19,["H5493","H2617"]],[19,20,["H4480","H5973"]],[20,22,["H834"]],[22,24,["H5493"]],[24,28,["H4480","H834"]],[28,29,["H1961"]],[29,30,["H6440"]],[30,31,[]]]},{"k":10877,"v":[[0,4,["H5975"]],[4,8,["H1004"]],[8,12,["H4438"]],[12,14,["H5704","H5769"]],[14,17,["H3678"]],[17,19,["H1961"]],[19,20,["H3559"]],[20,22,["H5704","H5769"]]]},{"k":10878,"v":[[0,3,["H3605"]],[3,4,["H428"]],[4,5,["H1697"]],[5,9,["H3605"]],[9,10,["H2088"]],[10,11,["H2377"]],[11,12,["H3651"]],[12,14,["H5416"]],[14,15,["H1696"]],[15,16,["H413"]],[16,17,["H1732"]]]},{"k":10879,"v":[[0,2,["H1732"]],[2,4,["H4428"]],[4,5,["H935"]],[5,7,["H3427"]],[7,8,["H6440"]],[8,10,["H3068"]],[10,12,["H559"]],[12,13,["H4310"]],[13,15,["H589"]],[15,17,["H3068"]],[17,18,["H430"]],[18,20,["H4310"]],[20,23,["H1004"]],[23,24,["H3588"]],[24,27,["H935"]],[27,29,["H5704","H1988"]]]},{"k":10880,"v":[[0,3,["H2063"]],[3,7,["H6994"]],[7,10,["H5869"]],[10,12,["H430"]],[12,17,["H1696"]],[17,18,["H5921"]],[18,20,["H5650"]],[20,21,["H1004"]],[21,27,["H4480","H7350"]],[27,30,["H7200"]],[30,35,["H8448"]],[35,38,["H120"]],[38,41,["H4609"]],[41,43,["H3068"]],[43,44,["H430"]]]},{"k":10881,"v":[[0,1,["H4100"]],[1,3,["H1732"]],[3,5,["H3254","H5750"]],[5,6,["H413"]],[6,10,["H3519"]],[10,11,["(H853)"]],[11,13,["H5650"]],[13,15,["H859"]],[15,16,["H3045","(H853)"]],[16,18,["H5650"]]]},{"k":10882,"v":[[0,2,["H3068"]],[2,6,["H5668","H5650"]],[6,12,["H3820"]],[12,15,["H6213","(H853)"]],[15,16,["H3605"]],[16,17,["H2063"]],[17,18,["H1420"]],[18,21,["H3045","(H853)"]],[21,22,["H3605"]],[22,25,["H1420"]]]},{"k":10883,"v":[[0,2,["H3068"]],[2,5,["H369"]],[5,7,["H3644"]],[7,8,["H369"]],[8,12,["H430"]],[12,13,["H2108"]],[13,17,["H3605"]],[17,18,["H834"]],[18,21,["H8085"]],[21,24,["H241"]]]},{"k":10884,"v":[[0,2,["H4310"]],[2,3,["H259"]],[3,4,["H1471"]],[4,7,["H776"]],[7,11,["H5971"]],[11,12,["H3478"]],[12,13,["H834"]],[13,14,["H430"]],[14,15,["H1980"]],[15,17,["H6299"]],[17,22,["H5971"]],[22,24,["H7760"]],[24,27,["H8034"]],[27,29,["H1420"]],[29,31,["H3372"]],[31,34,["H1644"]],[34,35,["H1471"]],[35,37,["H4480","H6440"]],[37,39,["H5971"]],[39,40,["H834"]],[40,43,["H6299"]],[43,46,["H4480","H4714"]]]},{"k":10885,"v":[[0,1,["(H853)"]],[1,3,["H5971"]],[3,4,["H3478"]],[4,7,["H5414"]],[7,10,["H5971"]],[10,12,["H5704","H5769"]],[12,14,["H859"]],[14,15,["H3068"]],[15,16,["H1961"]],[16,18,["H430"]]]},{"k":10886,"v":[[0,2,["H6258"]],[2,3,["H3068"]],[3,6,["H1697"]],[6,7,["H834"]],[7,10,["H1696"]],[10,11,["H5921"]],[11,13,["H5650"]],[13,15,["H5921"]],[15,17,["H1004"]],[17,19,["H539"]],[19,21,["H5704","H5769"]],[21,23,["H6213"]],[23,24,["H834"]],[24,27,["H1696"]]]},{"k":10887,"v":[[0,5,["H539"]],[5,8,["H8034"]],[8,11,["H1431"]],[11,13,["H5704","H5769"]],[13,14,["H559"]],[14,16,["H3068"]],[16,18,["H6635"]],[18,21,["H430"]],[21,23,["H3478"]],[23,26,["H430"]],[26,28,["H3478"]],[28,32,["H1004"]],[32,34,["H1732"]],[34,36,["H5650"]],[36,38,["H3559"]],[38,39,["H6440"]],[39,40,[]]]},{"k":10888,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,5,["H430"]],[5,7,["H1540","(H853)","H241"]],[7,9,["H5650"]],[9,13,["H1129"]],[13,16,["H1004"]],[16,17,["H5921","H3651"]],[17,19,["H5650"]],[19,21,["H4672"]],[21,26,["H6419"]],[26,27,["H6440"]],[27,28,[]]]},{"k":10889,"v":[[0,2,["H6258"]],[2,3,["H3068"]],[3,4,["H859"]],[4,6,["H430"]],[6,9,["H1696"]],[9,10,["H2063"]],[10,11,["H2896"]],[11,12,["H5921"]],[12,14,["H5650"]]]},{"k":10890,"v":[[0,1,["H6258"]],[1,5,["H2974"]],[5,8,["H1288","(H853)"]],[8,10,["H1004"]],[10,13,["H5650"]],[13,17,["H1961"]],[17,18,["H6440"]],[18,21,["H5769"]],[21,22,["H3588"]],[22,23,["H859"]],[23,24,["H1288"]],[24,26,["H3068"]],[26,31,["H1288"]],[31,33,["H5769"]]]},{"k":10891,"v":[[0,2,["H310"]],[2,3,["H3651"]],[3,7,["H1961"]],[7,9,["H1732"]],[9,10,["H5221","(H853)"]],[10,12,["H6430"]],[12,14,["H3665"]],[14,17,["H3947","(H853)"]],[17,18,["H1661"]],[18,21,["H1323"]],[21,25,["H4480","H3027"]],[25,28,["H6430"]]]},{"k":10892,"v":[[0,3,["H5221","(H853)"]],[3,4,["H4124"]],[4,7,["H4124"]],[7,8,["H1961"]],[8,9,["H1732"]],[9,10,["H5650"]],[10,12,["H5375"]],[12,13,["H4503"]]]},{"k":10893,"v":[[0,2,["H1732"]],[2,3,["H5221","(H853)"]],[3,4,["H1928"]],[4,5,["H4428"]],[5,7,["H6678"]],[7,9,["H2574"]],[9,12,["H1980"]],[12,14,["H5324"]],[14,16,["H3027"]],[16,19,["H5104"]],[19,20,["H6578"]]]},{"k":10894,"v":[[0,2,["H1732"]],[2,3,["H3920"]],[3,4,["H4480"]],[4,7,["H505"]],[7,8,["H7393"]],[8,10,["H7651"]],[10,11,["H505"]],[11,12,["H6571"]],[12,14,["H6242"]],[14,15,["H505"]],[15,16,["H376","H7273"]],[16,17,["H1732"]],[17,19,["H6131","(H853)"]],[19,20,["H3605"]],[20,22,["H7393"]],[22,25,["H3498"]],[25,26,["H4480"]],[26,29,["H3967"]],[29,30,["H7393"]]]},{"k":10895,"v":[[0,4,["H758"]],[4,6,["H1834"]],[6,7,["H935"]],[7,9,["H5826"]],[9,10,["H1928"]],[10,11,["H4428"]],[11,13,["H6678"]],[13,14,["H1732"]],[14,15,["H5221"]],[15,18,["H758"]],[18,19,["H8147"]],[19,21,["H6242"]],[21,22,["H505"]],[22,23,["H376"]]]},{"k":10896,"v":[[0,2,["H1732"]],[2,3,["H7760"]],[3,6,["H758","H1834"]],[6,9,["H758"]],[9,10,["H1961"]],[10,11,["H1732"]],[11,12,["H5650"]],[12,14,["H5375"]],[14,15,["H4503"]],[15,18,["H3068"]],[18,19,["H3467"]],[19,20,["H1732"]],[20,21,["H3605","H834"]],[21,23,["H1980"]]]},{"k":10897,"v":[[0,2,["H1732"]],[2,3,["H3947","(H853)"]],[3,5,["H7982"]],[5,7,["H2091"]],[7,8,["H834"]],[8,9,["H1961"]],[9,10,["H5921"]],[10,12,["H5650"]],[12,14,["H1928"]],[14,16,["H935"]],[16,19,["H3389"]]]},{"k":10898,"v":[[0,3,["H4480","H2880"]],[3,6,["H4480","H3560"]],[6,7,["H5892"]],[7,9,["H1928"]],[9,10,["H3947"]],[10,11,["H1732"]],[11,12,["H3966"]],[12,13,["H7227"]],[13,14,["H5178"]],[14,16,["H8010"]],[16,17,["H6213","(H853)"]],[17,19,["H5178"]],[19,20,["H3220"]],[20,23,["H5982"]],[23,26,["H3627"]],[26,28,["H5178"]]]},{"k":10899,"v":[[0,3,["H8583"]],[3,4,["H4428"]],[4,6,["H2574"]],[6,7,["H8085"]],[7,8,["H3588"]],[8,9,["H1732"]],[9,11,["H5221","(H853)"]],[11,12,["H3605"]],[12,14,["H2428"]],[14,16,["H1928"]],[16,17,["H4428"]],[17,19,["H6678"]]]},{"k":10900,"v":[[0,2,["H7971","(H853)"]],[2,3,["H1913"]],[3,5,["H1121"]],[5,6,["H413"]],[6,7,["H4428"]],[7,8,["H1732"]],[8,10,["H7592"]],[10,13,["H7965"]],[13,16,["H1288"]],[16,18,["H5921","H834"]],[18,21,["H3898"]],[21,23,["H1928"]],[23,25,["H5221"]],[25,27,["H3588"]],[27,28,["H1928"]],[28,30,["H1961","H376","H4421"]],[30,32,["H8583"]],[32,37,["H3605"]],[37,39,["H3627"]],[39,41,["H2091"]],[41,43,["H3701"]],[43,45,["H5178"]]]},{"k":10901,"v":[[0,2,["H1571"]],[2,3,["H4428"]],[3,4,["H1732"]],[4,5,["H6942"]],[5,8,["H3068"]],[8,9,["H5973"]],[9,11,["H3701"]],[11,14,["H2091"]],[14,15,["H834"]],[15,17,["H5375"]],[17,19,["H4480","H3605"]],[19,21,["H1471"]],[21,23,["H4480","H123"]],[23,26,["H4480","H4124"]],[26,30,["H4480","H1121"]],[30,32,["H5983"]],[32,36,["H4480","H6430"]],[36,39,["H4480","H6002"]]]},{"k":10902,"v":[[0,2,["H52"]],[2,4,["H1121"]],[4,6,["H6870"]],[6,7,["H5221","(H853)"]],[7,10,["H123"]],[10,13,["H1516"]],[13,15,["H4417"]],[15,16,["H8083","H6240"]],[16,17,["H505"]]]},{"k":10903,"v":[[0,3,["H7760"]],[3,4,["H5333"]],[4,6,["H123"]],[6,8,["H3605"]],[8,10,["H123"]],[10,11,["H1961"]],[11,12,["H1732"]],[12,13,["H5650"]],[13,16,["H3068"]],[16,17,["H3467","(H853)"]],[17,18,["H1732"]],[18,19,["H3605","H834"]],[19,21,["H1980"]]]},{"k":10904,"v":[[0,2,["H1732"]],[2,3,["H4427"]],[3,4,["H5921"]],[4,5,["H3605"]],[5,6,["H3478"]],[6,8,["H1961","H6213"]],[8,9,["H4941"]],[9,11,["H6666"]],[11,13,["H3605"]],[13,15,["H5971"]]]},{"k":10905,"v":[[0,2,["H3097"]],[2,4,["H1121"]],[4,6,["H6870"]],[6,8,["H5921"]],[8,10,["H6635"]],[10,12,["H3092"]],[12,14,["H1121"]],[14,16,["H286"]],[16,17,["H2142"]]]},{"k":10906,"v":[[0,2,["H6659"]],[2,4,["H1121"]],[4,6,["H285"]],[6,8,["H40"]],[8,10,["H1121"]],[10,12,["H54"]],[12,15,["H3548"]],[15,17,["H7798"]],[17,19,["H5608"]]]},{"k":10907,"v":[[0,2,["H1141"]],[2,4,["H1121"]],[4,6,["H3111"]],[6,8,["H5921"]],[8,10,["H3774"]],[10,13,["H6432"]],[13,16,["H1121"]],[16,18,["H1732"]],[18,20,["H7223"]],[20,21,["H3027"]],[21,23,["H4428"]]]},{"k":10908,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H3651"]],[7,9,["H5176"]],[9,11,["H4428"]],[11,14,["H1121"]],[14,16,["H5983"]],[16,17,["H4191"]],[17,20,["H1121"]],[20,21,["H4427"]],[21,24,["H8478"]]]},{"k":10909,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,6,["H6213"]],[6,7,["H2617"]],[7,8,["H5973"]],[8,9,["H2586"]],[9,11,["H1121"]],[11,13,["H5176"]],[13,14,["H3588"]],[14,16,["H1"]],[16,17,["H6213"]],[17,18,["H2617"]],[18,19,["H5973"]],[19,22,["H1732"]],[22,23,["H7971"]],[23,24,["H4397"]],[24,26,["H5162"]],[26,28,["H5921"]],[28,30,["H1"]],[30,33,["H5650"]],[33,35,["H1732"]],[35,36,["H935"]],[36,37,["H413"]],[37,39,["H776"]],[39,42,["H1121"]],[42,44,["H5983"]],[44,45,["H413"]],[45,46,["H2586"]],[46,48,["H5162"]],[48,49,[]]]},{"k":10910,"v":[[0,3,["H8269"]],[3,6,["H1121"]],[6,8,["H5983"]],[8,9,["H559"]],[9,11,["H2586"]],[11,12,["H5869"]],[12,15,["H1732"]],[15,17,["H3513","(H853)"]],[17,19,["H1"]],[19,20,["H3588"]],[20,23,["H7971"]],[23,24,["H5162"]],[24,28,["H3808"]],[28,30,["H5650"]],[30,31,["H935"]],[31,32,["H413"]],[32,34,["H5668"]],[34,36,["H2713"]],[36,39,["H2015"]],[39,43,["H7270"]],[43,45,["H776"]]]},{"k":10911,"v":[[0,2,["H2586"]],[2,3,["H3947","(H853)"]],[3,4,["H1732"]],[4,5,["H5650"]],[5,7,["H1548"]],[7,11,["H3772","(H853)"]],[11,13,["H4063"]],[13,16,["H2677"]],[16,18,["H5704"]],[18,20,["H4667"]],[20,24,["H7971"]]]},{"k":10912,"v":[[0,3,["H1980"]],[3,6,["H5046"]],[6,7,["H1732"]],[7,8,["H5921"]],[8,10,["H376"]],[10,15,["H7971"]],[15,17,["H7125"]],[17,19,["H3588"]],[19,21,["H376"]],[21,22,["H1961"]],[22,23,["H3966"]],[23,24,["H3637"]],[24,27,["H4428"]],[27,28,["H559"]],[28,29,["H3427"]],[29,31,["H3405"]],[31,32,["H5704","H834"]],[32,34,["H2206"]],[34,36,["H6779"]],[36,39,["H7725"]]]},{"k":10913,"v":[[0,4,["H1121"]],[4,6,["H5983"]],[6,7,["H7200"]],[7,8,["H3588"]],[8,13,["H887"]],[13,14,["H5973"]],[14,15,["H1732"]],[15,16,["H2586"]],[16,19,["H1121"]],[19,21,["H5983"]],[21,22,["H7971"]],[22,24,["H505"]],[24,25,["H3603"]],[25,27,["H3701"]],[27,29,["H7936"]],[29,31,["H7393"]],[31,33,["H6571"]],[33,35,["H4480"]],[35,36,["H763"]],[36,39,["H4480"]],[39,40,["H758","H4601"]],[40,44,["H4480","H6678"]]]},{"k":10914,"v":[[0,3,["H7936"]],[3,4,["H7970"]],[4,6,["H8147"]],[6,7,["H505"]],[7,8,["H7393"]],[8,11,["H4428"]],[11,13,["H4601"]],[13,16,["H5971"]],[16,18,["H935"]],[18,20,["H2583"]],[20,21,["H6440"]],[21,22,["H4311"]],[22,25,["H1121"]],[25,27,["H5983"]],[27,30,["H622"]],[30,33,["H4480","H5892"]],[33,35,["H935"]],[35,37,["H4421"]]]},{"k":10915,"v":[[0,3,["H1732"]],[3,4,["H8085"]],[4,8,["H7971","(H853)"]],[8,9,["H3097"]],[9,11,["H3605"]],[11,13,["H6635"]],[13,17,["H1368"]]]},{"k":10916,"v":[[0,3,["H1121"]],[3,5,["H5983"]],[5,7,["H3318"]],[7,13,["H6186","H4421"]],[13,16,["H6607"]],[16,19,["H5892"]],[19,22,["H4428"]],[22,23,["H834"]],[23,25,["H935"]],[25,28,["H905"]],[28,31,["H7704"]]]},{"k":10917,"v":[[0,3,["H3097"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,7,["H6440","H4421"]],[7,9,["H1961"]],[9,10,["H413"]],[10,12,["H6440"]],[12,14,["H268"]],[14,16,["H977"]],[16,19,["H4480","H3605"]],[19,21,["H977"]],[21,23,["H3478"]],[23,28,["H6186"]],[28,29,["H7125"]],[29,31,["H758"]]]},{"k":10918,"v":[[0,3,["H3499"]],[3,6,["H5971"]],[6,8,["H5414"]],[8,11,["H3027"]],[11,13,["H52"]],[13,15,["H251"]],[15,21,["H6186"]],[21,22,["H7125"]],[22,24,["H1121"]],[24,26,["H5983"]]]},{"k":10919,"v":[[0,3,["H559"]],[3,4,["H518"]],[4,6,["H758"]],[6,9,["H2388"]],[9,10,["H4480"]],[10,15,["H1961","H8668"]],[15,18,["H518"]],[18,20,["H1121"]],[20,22,["H5983"]],[22,25,["H2388"]],[25,26,["H4480"]],[26,31,["H3467"]],[31,32,[]]]},{"k":10920,"v":[[0,4,["H2388"]],[4,10,["H2388"]],[10,11,["H1157"]],[11,13,["H5971"]],[13,15,["H1157"]],[15,17,["H5892"]],[17,20,["H430"]],[20,24,["H3068"]],[24,25,["H6213"]],[25,29,["H2896"]],[29,32,["H5869"]]]},{"k":10921,"v":[[0,2,["H3097"]],[2,5,["H5971"]],[5,6,["H834"]],[6,8,["H5973"]],[8,11,["H5066"]],[11,12,["H6440"]],[12,14,["H758"]],[14,17,["H4421"]],[17,20,["H5127"]],[20,21,["H4480","H6440"]],[21,22,[]]]},{"k":10922,"v":[[0,4,["H1121"]],[4,6,["H5983"]],[6,7,["H7200"]],[7,8,["H3588"]],[8,10,["H758"]],[10,12,["H5127"]],[12,13,["H1992"]],[13,14,["H1571"]],[14,15,["H5127"]],[15,16,["H4480","H6440"]],[16,17,["H52"]],[17,19,["H251"]],[19,21,["H935"]],[21,24,["H5892"]],[24,26,["H3097"]],[26,27,["H935"]],[27,29,["H3389"]]]},{"k":10923,"v":[[0,4,["H758"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,12,["H5062"]],[12,13,["H6440"]],[13,14,["H3478"]],[14,16,["H7971"]],[16,17,["H4397"]],[17,20,["H3318","(H853)"]],[20,22,["H758"]],[22,23,["H834"]],[23,25,["H4480","H5676"]],[25,27,["H5104"]],[27,29,["H7780"]],[29,31,["H8269"]],[31,34,["H6635"]],[34,36,["H1928"]],[36,38,["H6440"]],[38,39,[]]]},{"k":10924,"v":[[0,4,["H5046"]],[4,5,["H1732"]],[5,8,["H622","(H853)"]],[8,9,["H3605"]],[9,10,["H3478"]],[10,13,["H5674"]],[13,14,["H3383"]],[14,16,["H935"]],[16,17,["H413"]],[17,24,["H6186","H4421"]],[24,25,["H413"]],[25,29,["H1732"]],[29,35,["H6186"]],[35,36,["H7125"]],[36,38,["H758"]],[38,40,["H3898"]],[40,41,["H5973"]],[41,42,[]]]},{"k":10925,"v":[[0,3,["H758"]],[3,4,["H5127"]],[4,5,["H4480","H6440"]],[5,6,["H3478"]],[6,8,["H1732"]],[8,9,["H2026"]],[9,12,["H4480","H758"]],[12,13,["H7651"]],[13,14,["H505"]],[14,19,["H7393"]],[19,21,["H705"]],[21,22,["H505"]],[22,23,["H376","H7273"]],[23,25,["H4191"]],[25,26,["H7780"]],[26,28,["H8269"]],[28,31,["H6635"]]]},{"k":10926,"v":[[0,4,["H5650"]],[4,6,["H1928"]],[6,7,["H7200"]],[7,8,["H3588"]],[8,14,["H5062"]],[14,15,["H6440"]],[15,16,["H3478"]],[16,19,["H7999"]],[19,20,["H5973"]],[20,21,["H1732"]],[21,25,["H5647"]],[25,26,["H3808"]],[26,27,["H14"]],[27,29,["H758"]],[29,30,["H3467","(H853)"]],[30,32,["H1121"]],[32,34,["H5983"]],[34,36,["H5750"]]]},{"k":10927,"v":[[0,5,["H1961"]],[5,7,["H6256"]],[7,9,["H8141"]],[9,11,["H8666"]],[11,14,["H6256"]],[14,16,["H4428"]],[16,18,["H3318"]],[18,21,["H3097"]],[21,23,["H5090","(H853)"]],[23,25,["H2428"]],[25,28,["H6635"]],[28,30,["H7843","(H853)"]],[30,32,["H776"]],[32,35,["H1121"]],[35,37,["H5983"]],[37,39,["H935"]],[39,41,["H6696","(H853)"]],[41,42,["H7237"]],[42,44,["H1732"]],[44,45,["H3427"]],[45,47,["H3389"]],[47,49,["H3097"]],[49,50,["H5221","(H853)"]],[50,51,["H7237"]],[51,53,["H2040"]],[53,54,[]]]},{"k":10928,"v":[[0,2,["H1732"]],[2,3,["H3947","(H853)"]],[3,5,["H5850"]],[5,8,["H4428"]],[8,10,["H4480","H5921"]],[10,12,["H7218"]],[12,14,["H4672"]],[14,17,["H4948"]],[17,19,["H3603"]],[19,21,["H2091"]],[21,25,["H3368"]],[25,26,["H68"]],[26,32,["H1961"]],[32,33,["H5921"]],[33,34,["H1732"]],[34,35,["H7218"]],[35,43,["H3318","H3966","H7235","H7998"]],[43,46,["H5892"]]]},{"k":10929,"v":[[0,4,["H3318"]],[4,6,["H5971"]],[6,7,["H834"]],[7,12,["H7787"]],[12,15,["H4050"]],[15,18,["H2757"]],[18,20,["H1270"]],[20,23,["H4050"]],[23,25,["H3651"]],[25,26,["H6213"]],[26,27,["H1732"]],[27,29,["H3605"]],[29,31,["H5892"]],[31,34,["H1121"]],[34,36,["H5983"]],[36,38,["H1732"]],[38,40,["H3605"]],[40,42,["H5971"]],[42,43,["H7725"]],[43,45,["H3389"]]]},{"k":10930,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H3651"]],[7,10,["H5975"]],[10,11,["H4421"]],[11,13,["H1507"]],[13,14,["H5973"]],[14,16,["H6430"]],[16,19,["H227"]],[19,20,["H5444"]],[20,22,["H2843"]],[22,23,["H5221","(H853)"]],[23,24,["H5598"]],[24,29,["H4480","H3211"]],[29,32,["H7497"]],[32,36,["H3665"]]]},{"k":10931,"v":[[0,3,["H1961"]],[3,4,["H4421"]],[4,5,["H5750"]],[5,6,["H854"]],[6,8,["H6430"]],[8,10,["H445"]],[10,12,["H1121"]],[12,14,["H3265"]],[14,15,["H5221","(H853)"]],[15,16,["H3902"]],[16,18,["H251"]],[18,20,["H1555"]],[20,22,["H1663"]],[22,24,["H2595"]],[24,25,["H6086"]],[25,29,["H707"]],[29,30,["H4500"]]]},{"k":10932,"v":[[0,3,["H5750"]],[3,5,["H1961"]],[5,6,["H4421"]],[6,8,["H1661"]],[8,10,["H1961"]],[10,12,["H376"]],[12,15,["H4060"]],[15,19,["H676"]],[19,21,["H702"]],[21,23,["H6242"]],[23,24,["H8337"]],[24,29,["H8337"]],[29,34,["H1931"]],[34,35,["H1571"]],[35,38,["H3205"]],[38,41,["H7497"]]]},{"k":10933,"v":[[0,4,["H2778","(H853)"]],[4,5,["H3478"]],[5,6,["H3083"]],[6,8,["H1121"]],[8,10,["H8092"]],[10,11,["H1732"]],[11,12,["H251"]],[12,13,["H5221"]],[13,14,[]]]},{"k":10934,"v":[[0,1,["H411"]],[1,3,["H3205"]],[3,6,["H7497"]],[6,8,["H1661"]],[8,11,["H5307"]],[11,14,["H3027"]],[14,16,["H1732"]],[16,20,["H3027"]],[20,23,["H5650"]]]},{"k":10935,"v":[[0,2,["H7854"]],[2,4,["H5975"]],[4,5,["H5921"]],[5,6,["H3478"]],[6,8,["H5496","(H853)"]],[8,9,["H1732"]],[9,11,["H4487","(H853)"]],[11,12,["H3478"]]]},{"k":10936,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3097"]],[5,7,["H413"]],[7,9,["H8269"]],[9,12,["H5971"]],[12,13,["H1980"]],[13,14,["H5608","(H853)"]],[14,15,["H3478"]],[15,17,["H4480","H884"]],[17,19,["H5704"]],[19,20,["H1835"]],[20,22,["H935","(H853)"]],[22,24,["H4557"]],[24,27,["H413"]],[27,32,["H3045"]],[32,33,[]]]},{"k":10937,"v":[[0,2,["H3097"]],[2,3,["H559"]],[3,5,["H3068"]],[5,8,["H5971"]],[8,10,["H3967"]],[10,11,["H6471"]],[11,14,["H3254"]],[14,16,["H1992"]],[16,20,["H113"]],[20,22,["H4428"]],[22,25,["H3808"]],[25,26,["H3605"]],[26,28,["H113"]],[28,29,["H5650"]],[29,30,["H4100"]],[30,34,["H113"]],[34,35,["H1245"]],[35,37,["H2063"]],[37,38,["H4100"]],[38,41,["H1961"]],[41,45,["H819"]],[45,47,["H3478"]]]},{"k":10938,"v":[[0,3,["H4428"]],[3,4,["H1697"]],[4,5,["H2388"]],[5,6,["H5921"]],[6,7,["H3097"]],[7,9,["H3097"]],[9,10,["H3318"]],[10,12,["H1980"]],[12,14,["H3605"]],[14,15,["H3478"]],[15,17,["H935"]],[17,19,["H3389"]]]},{"k":10939,"v":[[0,2,["H3097"]],[2,3,["H5414","(H853)"]],[3,5,["H4557"]],[5,8,["H4662"]],[8,11,["H5971"]],[11,12,["H413"]],[12,13,["H1732"]],[13,15,["H3605"]],[15,18,["H3478"]],[18,19,["H1961"]],[19,21,["H505"]],[21,22,["H505"]],[22,25,["H3967"]],[25,26,["H505"]],[26,27,["H376"]],[27,29,["H8025"]],[29,30,["H2719"]],[30,32,["H3063"]],[32,34,["H702"]],[34,35,["H3967"]],[35,38,["H7657"]],[38,39,["H505"]],[39,40,["H376"]],[40,42,["H8025"]],[42,43,["H2719"]]]},{"k":10940,"v":[[0,2,["H3878"]],[2,4,["H1144"]],[4,5,["H6485"]],[5,7,["H3808"]],[7,8,["H8432"]],[8,10,["H3588"]],[10,12,["H4428"]],[12,13,["H1697"]],[13,15,["H8581"]],[15,16,["(H853)"]],[16,17,["H3097"]]]},{"k":10941,"v":[[0,2,["H430"]],[2,4,["H3415","H5869"]],[4,5,["H5921"]],[5,6,["H2088"]],[6,7,["H1697"]],[7,10,["H5221","(H853)"]],[10,11,["H3478"]]]},{"k":10942,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H430"]],[5,8,["H2398"]],[8,9,["H3966"]],[9,10,["H834"]],[10,13,["H6213","(H853)"]],[13,14,["H2088"]],[14,15,["H1697"]],[15,17,["H6258"]],[17,20,["H4994"]],[20,22,["H5674","(H853)"]],[22,24,["H5771"]],[24,27,["H5650"]],[27,28,["H3588"]],[28,33,["H5528","H3966"]]]},{"k":10943,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H1410"]],[6,7,["H1732"]],[7,8,["H2374"]],[8,9,["H559"]]]},{"k":10944,"v":[[0,1,["H1980"]],[1,3,["H1696","H413"]],[3,4,["H1732"]],[4,5,["H559"]],[5,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,10,["H589"]],[10,11,["H5186","H5921"]],[11,13,["H7969"]],[13,15,["H977"]],[15,17,["H259"]],[17,19,["H4480","H1992"]],[19,23,["H6213"]],[23,26,[]]]},{"k":10945,"v":[[0,2,["H1410"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H1732"]],[5,7,["H559"]],[7,10,["H3541"]],[10,11,["H559"]],[11,13,["H3068"]],[13,14,["H6901"]],[14,15,[]]]},{"k":10946,"v":[[0,1,["H518"]],[1,2,["H7969"]],[2,3,["H8141"]],[3,4,["H7458"]],[4,5,["H518"]],[5,6,["H7969"]],[6,7,["H2320"]],[7,10,["H5595"]],[10,11,["H4480","H6440"]],[11,13,["H6862"]],[13,17,["H2719"]],[17,20,["H341"]],[20,21,["H5381"]],[21,24,["H518"]],[24,25,["H7969"]],[25,26,["H3117"]],[26,28,["H2719"]],[28,31,["H3068"]],[31,34,["H1698"]],[34,37,["H776"]],[37,40,["H4397"]],[40,43,["H3068"]],[43,44,["H7843"]],[44,46,["H3605"]],[46,48,["H1366"]],[48,50,["H3478"]],[50,51,["H6258"]],[51,53,["H7200"]],[53,55,["H4100"]],[55,56,["H1697"]],[56,60,["H7725","(H853)"]],[60,64,["H7971"]],[64,65,[]]]},{"k":10947,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1410"]],[5,11,["H6887","H3966"]],[11,14,["H5307"]],[14,15,["H4994"]],[15,18,["H3027"]],[18,21,["H3068"]],[21,22,["H3588"]],[22,23,["H3966"]],[23,24,["H7227"]],[24,27,["H7356"]],[27,31,["H408"]],[31,32,["H5307"]],[32,35,["H3027"]],[35,37,["H120"]]]},{"k":10948,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,5,["H1698"]],[5,7,["H3478"]],[7,10,["H5307"]],[10,12,["H4480","H3478"]],[12,13,["H7657"]],[13,14,["H505"]],[14,15,["H376"]]]},{"k":10949,"v":[[0,2,["H430"]],[2,3,["H7971"]],[3,5,["H4397"]],[5,7,["H3389"]],[7,9,["H7843"]],[9,15,["H7843"]],[15,17,["H3068"]],[17,18,["H7200"]],[18,22,["H5162"]],[22,23,["H5921"]],[23,25,["H7451"]],[25,27,["H559"]],[27,30,["H4397"]],[30,32,["H7843"]],[32,35,["H7227"]],[35,36,["H7503"]],[36,37,["H6258"]],[37,39,["H3027"]],[39,42,["H4397"]],[42,45,["H3068"]],[45,46,["H5975"]],[46,47,["H5973"]],[47,49,["H1637"]],[49,51,["H771"]],[51,53,["H2983"]]]},{"k":10950,"v":[[0,2,["H1732"]],[2,4,["H5375","(H853)"]],[4,6,["H5869"]],[6,8,["H7200","(H853)"]],[8,10,["H4397"]],[10,13,["H3068"]],[13,14,["H5975"]],[14,15,["H996"]],[15,17,["H776"]],[17,20,["H8064"]],[20,23,["H8025"]],[23,24,["H2719"]],[24,27,["H3027"]],[27,29,["H5186"]],[29,30,["H5921"]],[30,31,["H3389"]],[31,33,["H1732"]],[33,36,["H2205"]],[36,41,["H3680"]],[41,43,["H8242"]],[43,44,["H5307"]],[44,45,["H5921"]],[45,47,["H6440"]]]},{"k":10951,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H430"]],[5,8,["H3808"]],[8,9,["H589"]],[9,11,["H559"]],[11,13,["H5971"]],[13,16,["H4487"]],[16,18,["H589"]],[18,19,["H1931"]],[19,21,["H834"]],[21,23,["H2398"]],[23,27,["H7489","H7489"]],[27,31,["H428"]],[31,32,["H6629"]],[32,33,["H4100"]],[33,36,["H6213"]],[36,39,["H3027"]],[39,42,["H4994"]],[42,44,["H3068"]],[44,46,["H430"]],[46,47,["H1961"]],[47,53,["H1"]],[53,54,["H1004"]],[54,56,["H3808"]],[56,59,["H5971"]],[59,64,["H4046"]]]},{"k":10952,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H559","H413"]],[7,8,["H1410"]],[8,10,["H559"]],[10,12,["H1732"]],[12,13,["H3588"]],[13,14,["H1732"]],[14,17,["H5927"]],[17,20,["H6965"]],[20,22,["H4196"]],[22,25,["H3068"]],[25,28,["H1637"]],[28,30,["H771"]],[30,32,["H2983"]]]},{"k":10953,"v":[[0,2,["H1732"]],[2,4,["H5927"]],[4,7,["H1697"]],[7,9,["H1410"]],[9,10,["H834"]],[10,12,["H1696"]],[12,15,["H8034"]],[15,18,["H3068"]]]},{"k":10954,"v":[[0,2,["H771"]],[2,4,["H7725"]],[4,6,["H7200","(H853)"]],[6,8,["H4397"]],[8,11,["H702"]],[11,12,["H1121"]],[12,13,["H5973"]],[13,16,["H2244"]],[16,18,["H771"]],[18,20,["H1758"]],[20,21,["H2406"]]]},{"k":10955,"v":[[0,3,["H1732"]],[3,4,["H935"]],[4,5,["H5704"]],[5,6,["H771"]],[6,7,["H771"]],[7,8,["H5027"]],[8,10,["H7200","(H853)"]],[10,11,["H1732"]],[11,14,["H3318"]],[14,15,["H4480"]],[15,17,["H1637"]],[17,20,["H7812"]],[20,22,["H1732"]],[22,25,["H639"]],[25,28,["H776"]]]},{"k":10956,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H771"]],[5,6,["H5414"]],[6,9,["H4725"]],[9,12,["H1637"]],[12,16,["H1129"]],[16,18,["H4196"]],[18,22,["H3068"]],[22,25,["H5414"]],[25,30,["H4392"]],[30,31,["H3701"]],[31,34,["H4046"]],[34,37,["H6113"]],[37,38,["H4480","H5921"]],[38,40,["H5971"]]]},{"k":10957,"v":[[0,2,["H771"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,6,["H3947"]],[6,13,["H113"]],[13,15,["H4428"]],[15,16,["H6213"]],[16,20,["H2896"]],[20,23,["H5869"]],[23,24,["H7200"]],[24,26,["H5414"]],[26,29,["H1241"]],[29,33,["H5930"]],[33,37,["H4173"]],[37,39,["H6086"]],[39,42,["H2406"]],[42,46,["H4503"]],[46,48,["H5414"]],[48,50,["H3605"]]]},{"k":10958,"v":[[0,2,["H4428"]],[2,3,["H1732"]],[3,4,["H559"]],[4,6,["H771"]],[6,7,["H3808"]],[7,8,["H3588"]],[8,12,["H7069","H7069"]],[12,16,["H4392"]],[16,17,["H3701"]],[17,18,["H3588"]],[18,21,["H3808"]],[21,22,["H5375"]],[22,24,["H834"]],[24,29,["H3068"]],[29,31,["H5927"]],[31,33,["H5930"]],[33,35,["H2600"]]]},{"k":10959,"v":[[0,2,["H1732"]],[2,3,["H5414"]],[3,5,["H771"]],[5,8,["H4725"]],[8,9,["H8337"]],[9,10,["H3967"]],[10,11,["H8255"]],[11,13,["H2091"]],[13,15,["H4948"]]]},{"k":10960,"v":[[0,2,["H1732"]],[2,3,["H1129"]],[3,4,["H8033"]],[4,6,["H4196"]],[6,9,["H3068"]],[9,11,["H5927"]],[11,13,["H5930"]],[13,16,["H8002"]],[16,18,["H7121"]],[18,19,["H413"]],[19,21,["H3068"]],[21,24,["H6030"]],[24,26,["H4480"]],[26,27,["H8064"]],[27,29,["H784"]],[29,30,["H5921"]],[30,32,["H4196"]],[32,35,["H5930"]]]},{"k":10961,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,6,["H4397"]],[6,13,["H7725","H2719"]],[13,14,["H413"]],[14,16,["H5084"]],[16,17,[]]]},{"k":10962,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,5,["H1732"]],[5,6,["H7200"]],[6,7,["H3588"]],[7,9,["H3068"]],[9,11,["H6030"]],[11,15,["H1637"]],[15,17,["H771"]],[17,19,["H2983"]],[19,22,["H2076"]],[22,23,["H8033"]]]},{"k":10963,"v":[[0,3,["H4908"]],[3,6,["H3068"]],[6,7,["H834"]],[7,8,["H4872"]],[8,9,["H6213"]],[9,12,["H4057"]],[12,15,["H4196"]],[15,19,["H5930"]],[19,22,["H1931"]],[22,23,["H6256"]],[23,27,["H1116"]],[27,29,["H1391"]]]},{"k":10964,"v":[[0,2,["H1732"]],[2,3,["H3201"]],[3,4,["H3808"]],[4,5,["H1980"]],[5,6,["H6440"]],[6,9,["H1875"]],[9,11,["H430"]],[11,12,["H3588"]],[12,15,["H1204"]],[15,16,["H4480","H6440"]],[16,19,["H2719"]],[19,22,["H4397"]],[22,25,["H3068"]]]},{"k":10965,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H2088"]],[4,7,["H1004"]],[7,10,["H3068"]],[10,11,["H430"]],[11,13,["H2088"]],[13,16,["H4196"]],[16,20,["H5930"]],[20,22,["H3478"]]]},{"k":10966,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,6,["H3664","(H853)"]],[6,8,["H1616"]],[8,9,["H834"]],[9,13,["H776"]],[13,15,["H3478"]],[15,18,["H5975"]],[18,19,["H2672"]],[19,21,["H2672"]],[21,22,["H1496"]],[22,23,["H68"]],[23,25,["H1129"]],[25,27,["H1004"]],[27,29,["H430"]]]},{"k":10967,"v":[[0,2,["H1732"]],[2,3,["H3559"]],[3,4,["H1270"]],[4,6,["H7230"]],[6,9,["H4548"]],[9,12,["H1817"]],[12,15,["H8179"]],[15,19,["H4226"]],[19,21,["H5178"]],[21,23,["H7230"]],[23,24,["H369"]],[24,25,["H4948"]]]},{"k":10968,"v":[[0,2,["H730"]],[2,3,["H6086"]],[3,5,["H369","H4557"]],[5,6,["H3588"]],[6,8,["H6722"]],[8,12,["H6876"]],[12,13,["H935"]],[13,14,["H7230"]],[14,15,["H730"]],[15,16,["H6086"]],[16,18,["H1732"]]]},{"k":10969,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H8010"]],[4,6,["H1121"]],[6,8,["H5288"]],[8,10,["H7390"]],[10,13,["H1004"]],[13,18,["H1129"]],[18,21,["H3068"]],[21,24,["H4605"]],[24,25,["H1431"]],[25,27,["H8034"]],[27,30,["H8597"]],[30,32,["H3605"]],[32,33,["H776"]],[33,37,["H4994"]],[37,39,["H3559"]],[39,43,["H1732"]],[43,44,["H3559"]],[44,45,["H7230"]],[45,46,["H6440"]],[46,48,["H4194"]]]},{"k":10970,"v":[[0,3,["H7121"]],[3,5,["H8010"]],[5,7,["H1121"]],[7,9,["H6680"]],[9,12,["H1129"]],[12,14,["H1004"]],[14,17,["H3068"]],[17,18,["H430"]],[18,20,["H3478"]]]},{"k":10971,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H8010"]],[5,7,["H1121"]],[7,10,["H589"]],[10,12,["H1961"]],[12,13,["H5973"]],[13,15,["H3824"]],[15,17,["H1129"]],[17,19,["H1004"]],[19,22,["H8034"]],[22,25,["H3068"]],[25,27,["H430"]]]},{"k":10972,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H5921"]],[8,10,["H559"]],[10,13,["H8210"]],[13,14,["H1818"]],[14,15,["H7230"]],[15,18,["H6213"]],[18,19,["H1419"]],[19,20,["H4421"]],[20,23,["H3808"]],[23,24,["H1129"]],[24,26,["H1004"]],[26,29,["H8034"]],[29,30,["H3588"]],[30,33,["H8210"]],[33,34,["H7227"]],[34,35,["H1818"]],[35,38,["H776"]],[38,41,["H6440"]]]},{"k":10973,"v":[[0,1,["H2009"]],[1,3,["H1121"]],[3,6,["H3205"]],[6,9,["H1931"]],[9,11,["H1961"]],[11,13,["H376"]],[13,15,["H4496"]],[15,21,["H5117"]],[21,23,["H4480","H3605"]],[23,25,["H341"]],[25,27,["H4480","H5439"]],[27,28,["H3588"]],[28,30,["H8034"]],[30,32,["H1961"]],[32,33,["H8010"]],[33,37,["H5414"]],[37,38,["H7965"]],[38,40,["H8253"]],[40,41,["H5921"]],[41,42,["H3478"]],[42,45,["H3117"]]]},{"k":10974,"v":[[0,1,["H1931"]],[1,3,["H1129"]],[3,5,["H1004"]],[5,8,["H8034"]],[8,10,["H1931"]],[10,12,["H1961"]],[12,14,["H1121"]],[14,16,["H589"]],[16,20,["H1"]],[20,24,["H3559"]],[24,26,["H3678"]],[26,29,["H4438"]],[29,30,["H5921"]],[30,31,["H3478"]],[31,33,["H5704","H5769"]]]},{"k":10975,"v":[[0,1,["H6258"]],[1,3,["H1121"]],[3,5,["H3068"]],[5,6,["H1961"]],[6,7,["H5973"]],[7,10,["H6743"]],[10,13,["H1129"]],[13,15,["H1004"]],[15,18,["H3068"]],[18,20,["H430"]],[20,21,["H834"]],[21,24,["H1696"]],[24,25,["H5921"]],[25,26,[]]]},{"k":10976,"v":[[0,1,["H389"]],[1,3,["H3068"]],[3,4,["H5414"]],[4,6,["H7922"]],[6,8,["H998"]],[8,12,["H6680"]],[12,13,["H5921"]],[13,14,["H3478"]],[14,18,["H8104","(H853)"]],[18,20,["H8451"]],[20,23,["H3068"]],[23,25,["H430"]]]},{"k":10977,"v":[[0,1,["H227"]],[1,4,["H6743"]],[4,5,["H518"]],[5,8,["H8104"]],[8,10,["H6213","(H853)"]],[10,12,["H2706"]],[12,14,["H4941"]],[14,15,["H834"]],[15,17,["H3068"]],[17,18,["H6680","(H853)"]],[18,19,["H4872"]],[19,21,["H5921"]],[21,22,["H3478"]],[22,24,["H2388"]],[24,28,["H553"]],[28,29,["H3372"]],[29,30,["H408"]],[30,31,["H408"]],[31,33,["H2865"]]]},{"k":10978,"v":[[0,2,["H2009"]],[2,5,["H6040"]],[5,8,["H3559"]],[8,11,["H1004"]],[11,14,["H3068"]],[14,16,["H3967"]],[16,17,["H505"]],[17,18,["H3603"]],[18,20,["H2091"]],[20,23,["H505"]],[23,24,["H505"]],[24,25,["H3603"]],[25,27,["H3701"]],[27,30,["H5178"]],[30,32,["H1270"]],[32,33,["H369"]],[33,34,["H4948"]],[34,35,["H3588"]],[35,37,["H1961"]],[37,39,["H7230"]],[39,40,["H6086"]],[40,43,["H68"]],[43,46,["H3559"]],[46,50,["H3254"]],[50,51,["H5921"]]]},{"k":10979,"v":[[0,4,["H6213","H4399"]],[4,5,["H5973"]],[5,8,["H7230"]],[8,9,["H2672"]],[9,11,["H2796"]],[11,13,["H68"]],[13,15,["H6086"]],[15,18,["H3605"]],[18,21,["H2450"]],[21,24,["H3605"]],[24,26,["H4399"]]]},{"k":10980,"v":[[0,3,["H2091"]],[3,5,["H3701"]],[5,8,["H5178"]],[8,11,["H1270"]],[11,14,["H369"]],[14,15,["H4557"]],[15,16,["H6965"]],[16,20,["H6213"]],[20,23,["H3068"]],[23,24,["H1961"]],[24,25,["H5973"]],[25,26,[]]]},{"k":10981,"v":[[0,1,["H1732"]],[1,3,["H6680"]],[3,4,["H3605"]],[4,6,["H8269"]],[6,8,["H3478"]],[8,10,["H5826"]],[10,11,["H8010"]],[11,13,["H1121"]],[13,14,[]]]},{"k":10982,"v":[[0,2,["H3808"]],[2,4,["H3068"]],[4,6,["H430"]],[6,7,["H5973"]],[7,15,["H5117"]],[15,18,["H4480","H5439"]],[18,19,["H3588"]],[19,22,["H5414","(H853)"]],[22,24,["H3427"]],[24,27,["H776"]],[27,30,["H3027"]],[30,33,["H776"]],[33,35,["H3533"]],[35,36,["H6440"]],[36,38,["H3068"]],[38,40,["H6440"]],[40,42,["H5971"]]]},{"k":10983,"v":[[0,1,["H6258"]],[1,2,["H5414"]],[2,4,["H3824"]],[4,7,["H5315"]],[7,9,["H1875"]],[9,11,["H3068"]],[11,13,["H430"]],[13,14,["H6965"]],[14,17,["H1129"]],[17,18,["(H853)"]],[18,20,["H4720"]],[20,23,["H3068"]],[23,24,["H430"]],[24,26,["H935","(H853)"]],[26,28,["H727"]],[28,31,["H1285"]],[31,34,["H3068"]],[34,37,["H6944"]],[37,38,["H3627"]],[38,40,["H430"]],[40,43,["H1004"]],[43,48,["H1129"]],[48,51,["H8034"]],[51,54,["H3068"]]]},{"k":10984,"v":[[0,3,["H1732"]],[3,5,["H2204"]],[5,7,["H7646"]],[7,9,["H3117"]],[9,11,["H4427","(H853)"]],[11,12,["H8010"]],[12,14,["H1121"]],[14,16,["H5921"]],[16,17,["H3478"]]]},{"k":10985,"v":[[0,4,["H622","(H853)"]],[4,5,["H3605"]],[5,7,["H8269"]],[7,9,["H3478"]],[9,12,["H3548"]],[12,15,["H3881"]]]},{"k":10986,"v":[[0,3,["H3881"]],[3,5,["H5608"]],[5,8,["H4480","H1121"]],[8,10,["H7970"]],[10,11,["H8141"]],[11,13,["H4605"]],[13,16,["H4557"]],[16,19,["H1538"]],[19,22,["H1397"]],[22,23,["H1961"]],[23,24,["H7970"]],[24,26,["H8083"]],[26,27,["H505"]]]},{"k":10987,"v":[[0,2,["H4480","H428"]],[2,3,["H6242"]],[3,5,["H702"]],[5,6,["H505"]],[6,10,["H5329","H5921"]],[10,12,["H4399"]],[12,15,["H1004"]],[15,18,["H3068"]],[18,20,["H8337"]],[20,21,["H505"]],[21,23,["H7860"]],[23,25,["H8199"]]]},{"k":10988,"v":[[0,2,["H702"]],[2,3,["H505"]],[3,5,["H7778"]],[5,7,["H702"]],[7,8,["H505"]],[8,9,["H1984"]],[9,11,["H3068"]],[11,14,["H3627"]],[14,15,["H834"]],[15,17,["H6213"]],[17,21,["H1984"]],[21,22,[]]]},{"k":10989,"v":[[0,2,["H1732"]],[2,3,["H2505"]],[3,6,["H4256"]],[6,9,["H1121"]],[9,11,["H3878"]],[11,13,["H1648"]],[13,14,["H6955"]],[14,16,["H4847"]]]},{"k":10990,"v":[[0,3,["H1649"]],[3,5,["H3936"]],[5,7,["H8096"]]]},{"k":10991,"v":[[0,2,["H1121"]],[2,4,["H3936"]],[4,6,["H7218"]],[6,8,["H3171"]],[8,10,["H2241"]],[10,12,["H3100"]],[12,13,["H7969"]]]},{"k":10992,"v":[[0,2,["H1121"]],[2,4,["H8096"]],[4,5,["H8013"]],[5,7,["H2381"]],[7,9,["H2039"]],[9,10,["H7969"]],[10,11,["H428"]],[11,14,["H7218"]],[14,17,["H1"]],[17,19,["H3936"]]]},{"k":10993,"v":[[0,3,["H1121"]],[3,5,["H8096"]],[5,7,["H3189"]],[7,8,["H2126"]],[8,10,["H3266"]],[10,12,["H1283"]],[12,13,["H428"]],[13,14,["H702"]],[14,17,["H1121"]],[17,19,["H8096"]]]},{"k":10994,"v":[[0,2,["H3189"]],[2,3,["H1961"]],[3,5,["H7218"]],[5,7,["H2125"]],[7,9,["H8145"]],[9,11,["H3266"]],[11,13,["H1283"]],[13,16,["H7235","H3808"]],[16,17,["H1121"]],[17,20,["H1961"]],[20,22,["H259"]],[22,23,["H6486"]],[23,27,["H1"]],[27,28,["H1004"]]]},{"k":10995,"v":[[0,2,["H1121"]],[2,4,["H6955"]],[4,5,["H6019"]],[5,6,["H3324"]],[6,7,["H2275"]],[7,9,["H5816"]],[9,10,["H702"]]]},{"k":10996,"v":[[0,2,["H1121"]],[2,4,["H6019"]],[4,5,["H175"]],[5,7,["H4872"]],[7,9,["H175"]],[9,11,["H914"]],[11,15,["H6942"]],[15,19,["H6944","H6944"]],[19,20,["H1931"]],[20,23,["H1121"]],[23,25,["H5704","H5769"]],[25,28,["H6999"]],[28,29,["H6440"]],[29,31,["H3068"]],[31,33,["H8334"]],[33,38,["H1288"]],[38,41,["H8034"]],[41,43,["H5704","H5769"]]]},{"k":10997,"v":[[0,3,["H4872"]],[3,5,["H376"]],[5,7,["H430"]],[7,9,["H1121"]],[9,11,["H7121"]],[11,12,["H5921"]],[12,14,["H7626"]],[14,16,["H3878"]]]},{"k":10998,"v":[[0,2,["H1121"]],[2,4,["H4872"]],[4,6,["H1648"]],[6,8,["H461"]]]},{"k":10999,"v":[[0,3,["H1121"]],[3,5,["H1648"]],[5,6,["H7619"]],[6,9,["H7218"]]]},{"k":11000,"v":[[0,3,["H1121"]],[3,5,["H461"]],[5,7,["H7345"]],[7,9,["H7218"]],[9,11,["H461"]],[11,12,["H1961"]],[12,13,["H3808"]],[13,14,["H312"]],[14,15,["H1121"]],[15,18,["H1121"]],[18,20,["H7345"]],[20,23,["H7235","H4605"]]]},{"k":11001,"v":[[0,3,["H1121"]],[3,5,["H3324"]],[5,6,["H8013"]],[6,8,["H7218"]]]},{"k":11002,"v":[[0,3,["H1121"]],[3,5,["H2275"]],[5,6,["H3404"]],[6,8,["H7218"]],[8,9,["H568"]],[9,11,["H8145"]],[11,12,["H3166"]],[12,14,["H7992"]],[14,16,["H3360"]],[16,18,["H7243"]]]},{"k":11003,"v":[[0,3,["H1121"]],[3,5,["H5816"]],[5,6,["H4318"]],[6,8,["H7218"]],[8,10,["H3449"]],[10,12,["H8145"]]]},{"k":11004,"v":[[0,2,["H1121"]],[2,4,["H4847"]],[4,5,["H4249"]],[5,7,["H4187"]],[7,9,["H1121"]],[9,11,["H4249"]],[11,12,["H499"]],[12,14,["H7027"]]]},{"k":11005,"v":[[0,2,["H499"]],[2,3,["H4191"]],[3,5,["H1961"]],[5,6,["H3808"]],[6,7,["H1121"]],[7,8,["H3588","H518"]],[8,9,["H1323"]],[9,12,["H251"]],[12,14,["H1121"]],[14,16,["H7027"]],[16,17,["H5375"]],[17,18,[]]]},{"k":11006,"v":[[0,2,["H1121"]],[2,4,["H4187"]],[4,5,["H4249"]],[5,7,["H5740"]],[7,9,["H3406"]],[9,10,["H7969"]]]},{"k":11007,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H3878"]],[6,9,["H1004"]],[9,12,["H1"]],[12,15,["H7218"]],[15,18,["H1"]],[18,22,["H6485"]],[22,24,["H4557"]],[24,26,["H8034"]],[26,29,["H1538"]],[29,31,["H6213"]],[31,33,["H4399"]],[33,36,["H5656"]],[36,39,["H1004"]],[39,42,["H3068"]],[42,45,["H4480","H1121"]],[45,47,["H6242"]],[47,48,["H8141"]],[48,50,["H4605"]]]},{"k":11008,"v":[[0,1,["H3588"]],[1,2,["H1732"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H430"]],[6,8,["H3478"]],[8,11,["H5117"]],[11,14,["H5971"]],[14,18,["H7931"]],[18,20,["H3389"]],[20,22,["H5704","H5769"]]]},{"k":11009,"v":[[0,2,["H1571"]],[2,5,["H3881"]],[5,8,["H369"]],[8,10,["H5375","(H853)"]],[10,12,["H4908"]],[12,14,["H3605"]],[14,15,["H3627"]],[15,20,["H5656"]],[20,21,[]]]},{"k":11010,"v":[[0,1,["H3588"]],[1,4,["H314"]],[4,5,["H1697"]],[5,7,["H1732"]],[7,9,["H1121","H3881"]],[9,11,["H4557"]],[11,15,["H4480","H1121","H6242","H8141"]],[15,17,["H4605"]]]},{"k":11011,"v":[[0,1,["H3588"]],[1,3,["H4612"]],[3,7,["H3027"]],[7,9,["H1121"]],[9,11,["H175"]],[11,14,["H5656"]],[14,17,["H1004"]],[17,20,["H3068"]],[20,21,["H5921"]],[21,23,["H2691"]],[23,25,["H5921"]],[25,27,["H3957"]],[27,29,["H5921"]],[29,31,["H2893"]],[31,33,["H3605"]],[33,35,["H6944"]],[35,38,["H4639"]],[38,41,["H5656"]],[41,44,["H1004"]],[44,46,["H430"]]]},{"k":11012,"v":[[0,4,["H3899","H4635"]],[4,9,["H5560"]],[9,12,["H4503"]],[12,16,["H4682"]],[16,17,["H7550"]],[17,26,["H4227"]],[26,32,["H7246"]],[32,36,["H3605"]],[36,38,["H4884"]],[38,40,["H4060"]]]},{"k":11013,"v":[[0,3,["H5975"]],[3,5,["H1242","H1242"]],[5,7,["H3034"]],[7,9,["H1984"]],[9,11,["H3068"]],[11,13,["H3651"]],[13,15,["H6153"]]]},{"k":11014,"v":[[0,3,["H5927"]],[3,4,["H3605"]],[4,6,["H5930"]],[6,9,["H3068"]],[9,12,["H7676"]],[12,16,["H2320"]],[16,21,["H4150"]],[21,23,["H4557"]],[23,27,["H4941"]],[27,29,["H5921"]],[29,31,["H8548"]],[31,32,["H6440"]],[32,34,["H3068"]]]},{"k":11015,"v":[[0,5,["H8104","(H853)"]],[5,7,["H4931"]],[7,10,["H168"]],[10,13,["H4150"]],[13,16,["H4931"]],[16,19,["H6944"]],[19,23,["H4931"]],[23,26,["H1121"]],[26,28,["H175"]],[28,30,["H251"]],[30,33,["H5656"]],[33,36,["H1004"]],[36,39,["H3068"]]]},{"k":11016,"v":[[0,5,["H4256"]],[5,8,["H1121"]],[8,10,["H175"]],[10,12,["H1121"]],[12,14,["H175"]],[14,15,["H5070"]],[15,17,["H30"]],[17,18,["H499"]],[18,20,["H385"]]]},{"k":11017,"v":[[0,2,["H5070"]],[2,4,["H30"]],[4,5,["H4191"]],[5,6,["H6440"]],[6,8,["H1"]],[8,10,["H1961"]],[10,11,["H3808"]],[11,12,["H1121"]],[12,14,["H499"]],[14,16,["H385"]],[16,20,["H3547"]]]},{"k":11018,"v":[[0,2,["H1732"]],[2,3,["H2505"]],[3,6,["H6659"]],[6,7,["H4480"]],[7,9,["H1121"]],[9,11,["H499"]],[11,13,["H288"]],[13,14,["H4480"]],[14,16,["H1121"]],[16,18,["H385"]],[18,22,["H6486"]],[22,25,["H5656"]]]},{"k":11019,"v":[[0,4,["H7227"]],[4,5,["H7218"]],[5,6,["H1397"]],[6,7,["H4672"]],[7,10,["H1121"]],[10,12,["H499"]],[12,13,["H4480"]],[13,16,["H1121"]],[16,18,["H385"]],[18,23,["H2505"]],[23,26,["H1121"]],[26,28,["H499"]],[28,31,["H8337","H6240"]],[31,33,["H7218"]],[33,36,["H1004"]],[36,39,["H1"]],[39,41,["H8083"]],[41,44,["H1121"]],[44,46,["H385"]],[46,50,["H1004"]],[50,53,["H1"]]]},{"k":11020,"v":[[0,4,["H2505"]],[4,6,["H1486"]],[6,8,["H428"]],[8,9,["H5973"]],[9,10,["H428"]],[10,11,["H3588"]],[11,13,["H8269"]],[13,16,["H6944"]],[16,18,["H8269"]],[18,23,["H430"]],[23,24,["H1961"]],[24,27,["H4480","H1121"]],[27,29,["H499"]],[29,33,["H1121"]],[33,35,["H385"]]]},{"k":11021,"v":[[0,2,["H8098"]],[2,4,["H1121"]],[4,6,["H5417"]],[6,8,["H5608"]],[8,10,["H4480"]],[10,12,["H3878"]],[12,13,["H3789"]],[13,15,["H6440"]],[15,17,["H4428"]],[17,20,["H8269"]],[20,22,["H6659"]],[22,24,["H3548"]],[24,26,["H288"]],[26,28,["H1121"]],[28,30,["H54"]],[30,34,["H7218"]],[34,37,["H1"]],[37,40,["H3548"]],[40,42,["H3881"]],[42,43,["H259"]],[43,44,["H1"]],[44,45,["H1004"]],[45,47,["H270"]],[47,49,["H499"]],[49,52,["H270"]],[52,54,["H385"]]]},{"k":11022,"v":[[0,3,["H7223"]],[3,4,["H1486"]],[4,6,["H3318"]],[6,8,["H3080"]],[8,10,["H8145"]],[10,12,["H3048"]]]},{"k":11023,"v":[[0,2,["H7992"]],[2,4,["H2766"]],[4,6,["H7243"]],[6,8,["H8188"]]]},{"k":11024,"v":[[0,2,["H2549"]],[2,4,["H4441"]],[4,6,["H8345"]],[6,8,["H4326"]]]},{"k":11025,"v":[[0,2,["H7637"]],[2,4,["H6976"]],[4,6,["H8066"]],[6,8,["H29"]]]},{"k":11026,"v":[[0,2,["H8671"]],[2,4,["H3442"]],[4,6,["H6224"]],[6,8,["H7935"]]]},{"k":11027,"v":[[0,2,["H6249","H6240"]],[2,4,["H475"]],[4,6,["H8147","H6240"]],[6,8,["H3356"]]]},{"k":11028,"v":[[0,2,["H7969","H6240"]],[2,4,["H2647"]],[4,6,["H702","H6240"]],[6,8,["H3428"]]]},{"k":11029,"v":[[0,2,["H2568","H6240"]],[2,4,["H1083"]],[4,6,["H8337","H6240"]],[6,8,["H564"]]]},{"k":11030,"v":[[0,2,["H7651","H6240"]],[2,4,["H2387"]],[4,6,["H8083","H6240"]],[6,8,["H6483"]]]},{"k":11031,"v":[[0,2,["H8672","H6240"]],[2,4,["H6611"]],[4,6,["H6242"]],[6,8,["H3168"]]]},{"k":11032,"v":[[0,2,["H259"]],[2,4,["H6242"]],[4,6,["H3199"]],[6,8,["H8147"]],[8,10,["H6242"]],[10,12,["H1577"]]]},{"k":11033,"v":[[0,2,["H7969"]],[2,4,["H6242"]],[4,6,["H1806"]],[6,8,["H702"]],[8,10,["H6242"]],[10,12,["H4590"]]]},{"k":11034,"v":[[0,1,["H428"]],[1,4,["H6486"]],[4,9,["H5656"]],[9,11,["H935"]],[11,14,["H1004"]],[14,17,["H3068"]],[17,21,["H4941"]],[21,22,["H3027"]],[22,23,["H175"]],[23,25,["H1"]],[25,26,["H834"]],[26,28,["H3068"]],[28,29,["H430"]],[29,31,["H3478"]],[31,33,["H6680"]],[33,34,[]]]},{"k":11035,"v":[[0,3,["H3498"]],[3,6,["H1121"]],[6,8,["H3878"]],[8,13,["H1121"]],[13,15,["H6019"]],[15,16,["H7619"]],[16,19,["H1121"]],[19,21,["H7619"]],[21,22,["H3165"]]]},{"k":11036,"v":[[0,2,["H7345"]],[2,5,["H1121"]],[5,7,["H7345"]],[7,9,["H7218"]],[9,11,["H3449"]]]},{"k":11037,"v":[[0,3,["H3325"]],[3,4,["H8013"]],[4,7,["H1121"]],[7,9,["H8013"]],[9,10,["H3189"]]]},{"k":11038,"v":[[0,3,["H1121"]],[3,6,["H3404"]],[6,9,["H568"]],[9,11,["H8145"]],[11,12,["H3166"]],[12,14,["H7992"]],[14,15,["H3360"]],[15,17,["H7243"]]]},{"k":11039,"v":[[0,3,["H1121"]],[3,5,["H5816"]],[5,6,["H4318"]],[6,9,["H1121"]],[9,11,["H4318"]],[11,12,["H8053"]]]},{"k":11040,"v":[[0,2,["H251"]],[2,4,["H4318"]],[4,6,["H3449"]],[6,9,["H1121"]],[9,11,["H3449"]],[11,12,["H2148"]]]},{"k":11041,"v":[[0,2,["H1121"]],[2,4,["H4847"]],[4,6,["H4249"]],[6,8,["H4187"]],[8,10,["H1121"]],[10,12,["H3269"]],[12,13,["H1121"]]]},{"k":11042,"v":[[0,2,["H1121"]],[2,4,["H4847"]],[4,6,["H3269"]],[6,7,["H1121"]],[7,9,["H7719"]],[9,11,["H2139"]],[11,13,["H5681"]]]},{"k":11043,"v":[[0,2,["H4249"]],[2,4,["H499"]],[4,6,["H1961"]],[6,7,["H3808"]],[7,8,["H1121"]]]},{"k":11044,"v":[[0,2,["H7027"]],[2,4,["H1121"]],[4,6,["H7027"]],[6,8,["H3396"]]]},{"k":11045,"v":[[0,2,["H1121"]],[2,5,["H4187"]],[5,6,["H4249"]],[6,8,["H5740"]],[8,10,["H3406"]],[10,11,["H428"]],[11,14,["H1121"]],[14,17,["H3881"]],[17,20,["H1004"]],[20,23,["H1"]]]},{"k":11046,"v":[[0,1,["H1992"]],[1,2,["H1571"]],[2,3,["H5307"]],[3,4,["H1486"]],[4,6,["H5980"]],[6,8,["H251"]],[8,10,["H1121"]],[10,12,["H175"]],[12,15,["H6440"]],[15,17,["H1732"]],[17,19,["H4428"]],[19,21,["H6659"]],[21,23,["H288"]],[23,26,["H7218"]],[26,29,["H1"]],[29,32,["H3548"]],[32,34,["H3881"]],[34,37,["H7218"]],[37,38,["H1"]],[38,40,["H5980"]],[40,42,["H6996"]],[42,43,["H251"]]]},{"k":11047,"v":[[0,2,["H1732"]],[2,5,["H8269"]],[5,8,["H6635"]],[8,9,["H914"]],[9,12,["H5656"]],[12,15,["H1121"]],[15,17,["H623"]],[17,20,["H1968"]],[20,23,["H3038"]],[23,26,["H5012"]],[26,28,["H3658"]],[28,30,["H5035"]],[30,33,["H4700"]],[33,36,["H4557"]],[36,39,["H376","H4399"]],[39,43,["H5656"]],[43,44,["H1961"]]]},{"k":11048,"v":[[0,3,["H1121"]],[3,5,["H623"]],[5,6,["H2139"]],[6,8,["H3130"]],[8,10,["H5418"]],[10,12,["H841"]],[12,14,["H1121"]],[14,16,["H623"]],[16,17,["H5921"]],[17,19,["H3027"]],[19,21,["H623"]],[21,23,["H5012"]],[23,25,["H5921"]],[25,27,["H3027"]],[27,30,["H4428"]]]},{"k":11049,"v":[[0,2,["H3038"]],[2,4,["H1121"]],[4,6,["H3038"]],[6,7,["H1436"]],[7,9,["H6874"]],[9,11,["H3470"]],[11,12,["H2811"]],[12,14,["H4993"]],[14,15,["H8337"]],[15,16,["H5921"]],[16,18,["H3027"]],[18,21,["H1"]],[21,22,["H3038"]],[22,24,["H5012"]],[24,27,["H3658"]],[27,28,["H5921"]],[28,30,["H3034"]],[30,33,["H1984"]],[33,35,["H3068"]]]},{"k":11050,"v":[[0,2,["H1968"]],[2,4,["H1121"]],[4,6,["H1968"]],[6,7,["H1232"]],[7,8,["H4983"]],[8,9,["H5816"]],[9,10,["H7619"]],[10,12,["H3406"]],[12,13,["H2608"]],[13,14,["H2607"]],[14,15,["H448"]],[15,16,["H1437"]],[16,18,["H7320"]],[18,19,["H3436"]],[19,20,["H4413"]],[20,21,["H1956"]],[21,23,["H4238"]]]},{"k":11051,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,5,["H1121"]],[5,7,["H1968"]],[7,9,["H4428"]],[9,10,["H2374"]],[10,13,["H1697"]],[13,15,["H430"]],[15,18,["H7311"]],[18,20,["H7161"]],[20,22,["H430"]],[22,23,["H5414"]],[23,25,["H1968"]],[25,26,["H702","H6240"]],[26,27,["H1121"]],[27,29,["H7969"]],[29,30,["H1323"]]]},{"k":11052,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,4,["H5921"]],[4,6,["H3027"]],[6,9,["H1"]],[9,11,["H7892"]],[11,14,["H1004"]],[14,17,["H3068"]],[17,19,["H4700"]],[19,20,["H5035"]],[20,22,["H3658"]],[22,25,["H5656"]],[25,28,["H1004"]],[28,30,["H430"]],[30,32,["H5921"]],[32,34,["H4428"]],[34,35,["H3027"]],[35,37,["H623"]],[37,38,["H3038"]],[38,40,["H1968"]]]},{"k":11053,"v":[[0,3,["H4557"]],[3,6,["H5973"]],[6,8,["H251"]],[8,11,["H3925"]],[11,14,["H7892"]],[14,17,["H3068"]],[17,19,["H3605"]],[19,22,["H995"]],[22,23,["H1961"]],[23,25,["H3967"]],[25,26,["H8084"]],[26,28,["H8083"]]]},{"k":11054,"v":[[0,3,["H5307"]],[3,4,["H1486"]],[4,5,["H4931"]],[5,6,["H5980"]],[6,11,["H6996"]],[11,14,["H1419"]],[14,16,["H995"]],[16,17,["H5973"]],[17,19,["H8527"]]]},{"k":11055,"v":[[0,3,["H7223"]],[3,4,["H1486"]],[4,6,["H3318"]],[6,8,["H623"]],[8,10,["H3130"]],[10,12,["H8145"]],[12,14,["H1436"]],[14,15,["H1931"]],[15,18,["H251"]],[18,20,["H1121"]],[20,22,["H8147","H6240"]]]},{"k":11056,"v":[[0,2,["H7992"]],[2,4,["H2139"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11057,"v":[[0,2,["H7243"]],[2,4,["H3340"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11058,"v":[[0,2,["H2549"]],[2,4,["H5418"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11059,"v":[[0,2,["H8345"]],[2,4,["H1232"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11060,"v":[[0,2,["H7637"]],[2,4,["H3480"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11061,"v":[[0,2,["H8066"]],[2,4,["H3470"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11062,"v":[[0,2,["H8671"]],[2,4,["H4983"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11063,"v":[[0,2,["H6224"]],[2,4,["H8096"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11064,"v":[[0,2,["H6249","H6240"]],[2,4,["H5832"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11065,"v":[[0,2,["H8147","H6240"]],[2,4,["H2811"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11066,"v":[[0,2,["H7969","H6240"]],[2,4,["H7619"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11067,"v":[[0,2,["H702","H6240"]],[2,4,["H4993"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11068,"v":[[0,2,["H2568","H6240"]],[2,4,["H3406"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11069,"v":[[0,2,["H8337","H6240"]],[2,4,["H2608"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11070,"v":[[0,2,["H7651","H6240"]],[2,4,["H3436"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11071,"v":[[0,2,["H8083","H6240"]],[2,4,["H2607"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11072,"v":[[0,2,["H8672","H6240"]],[2,4,["H4413"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11073,"v":[[0,2,["H6242"]],[2,4,["H448"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11074,"v":[[0,2,["H259"]],[2,4,["H6242"]],[4,6,["H1956"]],[6,9,["H1121"]],[9,12,["H251"]],[12,14,["H8147","H6240"]]]},{"k":11075,"v":[[0,2,["H8147"]],[2,4,["H6242"]],[4,6,["H1437"]],[6,9,["H1121"]],[9,12,["H251"]],[12,14,["H8147","H6240"]]]},{"k":11076,"v":[[0,2,["H7969"]],[2,4,["H6242"]],[4,6,["H4238"]],[6,9,["H1121"]],[9,12,["H251"]],[12,14,["H8147","H6240"]]]},{"k":11077,"v":[[0,2,["H702"]],[2,4,["H6242"]],[4,6,["H7320"]],[6,9,["H1121"]],[9,12,["H251"]],[12,14,["H8147","H6240"]]]},{"k":11078,"v":[[0,3,["H4256"]],[3,6,["H7778"]],[6,9,["H7145"]],[9,11,["H4920"]],[11,13,["H1121"]],[13,15,["H6981"]],[15,16,["H4480"]],[16,18,["H1121"]],[18,20,["H623"]]]},{"k":11079,"v":[[0,3,["H1121"]],[3,5,["H4920"]],[5,7,["H2148"]],[7,9,["H1060"]],[9,10,["H3043"]],[10,12,["H8145"]],[12,13,["H2069"]],[13,15,["H7992"]],[15,16,["H3496"]],[16,18,["H7243"]]]},{"k":11080,"v":[[0,1,["H5867"]],[1,3,["H2549"]],[3,4,["H3076"]],[4,6,["H8345"]],[6,7,["H454"]],[7,9,["H7637"]]]},{"k":11081,"v":[[0,3,["H1121"]],[3,5,["H5654"]],[5,7,["H8098"]],[7,9,["H1060"]],[9,10,["H3075"]],[10,12,["H8145"]],[12,13,["H3098"]],[13,15,["H7992"]],[15,17,["H7940"]],[17,19,["H7243"]],[19,21,["H5417"]],[21,23,["H2549"]]]},{"k":11082,"v":[[0,1,["H5988"]],[1,3,["H8345"]],[3,4,["H3485"]],[4,6,["H7637"]],[6,7,["H6469"]],[7,9,["H8066"]],[9,10,["H3588"]],[10,11,["H430"]],[11,12,["H1288"]],[12,13,[]]]},{"k":11083,"v":[[0,3,["H8098"]],[3,5,["H1121"]],[5,7,["H1121"]],[7,8,["H3205"]],[8,10,["H4474"]],[10,13,["H1004"]],[13,16,["H1"]],[16,17,["H3588"]],[17,18,["H1992"]],[18,21,["H1368"]],[21,23,["H2428"]]]},{"k":11084,"v":[[0,2,["H1121"]],[2,4,["H8098"]],[4,5,["H6273"]],[5,7,["H7501"]],[7,9,["H5744"]],[9,10,["H443"]],[10,12,["H251"]],[12,15,["H1121","H2428"]],[15,16,["H453"]],[16,18,["H5565"]]]},{"k":11085,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,5,["H4480","H1121"]],[5,7,["H5654"]],[7,8,["H1992"]],[8,11,["H1121"]],[11,14,["H251"]],[14,15,["H2428"]],[15,16,["H376"]],[16,18,["H3581"]],[18,21,["H5656"]],[21,23,["H8346"]],[23,25,["H8147"]],[25,27,["H5654"]]]},{"k":11086,"v":[[0,2,["H4920"]],[2,4,["H1121"]],[4,6,["H251"]],[6,8,["H1121","H2428"]],[8,9,["H8083","H6240"]]]},{"k":11087,"v":[[0,2,["H2621"]],[2,3,["H4480"]],[3,5,["H1121"]],[5,7,["H4847"]],[7,9,["H1121"]],[9,10,["H8113"]],[10,12,["H7218"]],[12,13,["H3588"]],[13,16,["H1961"]],[16,17,["H3808"]],[17,19,["H1060"]],[19,22,["H1"]],[22,23,["H7760"]],[23,26,["H7218"]]]},{"k":11088,"v":[[0,1,["H2518"]],[1,3,["H8145"]],[3,4,["H2882"]],[4,6,["H7992"]],[6,7,["H2148"]],[7,9,["H7243"]],[9,10,["H3605"]],[10,12,["H1121"]],[12,14,["H251"]],[14,16,["H2621"]],[16,18,["H7969","H6240"]]]},{"k":11089,"v":[[0,2,["H428"]],[2,5,["H4256"]],[5,8,["H7778"]],[8,12,["H7218"]],[12,13,["H1397"]],[13,15,["H4931"]],[15,18,["H5980","H251"]],[18,20,["H8334"]],[20,23,["H1004"]],[23,26,["H3068"]]]},{"k":11090,"v":[[0,3,["H5307"]],[3,4,["H1486"]],[4,8,["H6996"]],[8,11,["H1419"]],[11,15,["H1004"]],[15,18,["H1"]],[18,21,["H8179","H8179"]]]},{"k":11091,"v":[[0,3,["H1486"]],[3,4,["H4217"]],[4,5,["H5307"]],[5,7,["H8018"]],[7,10,["H2148"]],[10,12,["H1121"]],[12,14,["H7922"]],[14,15,["H3289"]],[15,17,["H5307"]],[17,18,["H1486"]],[18,21,["H1486"]],[21,23,["H3318"]],[23,24,["H6828"]]]},{"k":11092,"v":[[0,2,["H5654"]],[2,3,["H5045"]],[3,7,["H1121"]],[7,9,["H1004"]],[9,11,["H624"]]]},{"k":11093,"v":[[0,2,["H8206"]],[2,4,["H2621"]],[4,9,["H4628"]],[9,10,["H5973"]],[10,12,["H8179"]],[12,13,["H7996"]],[13,16,["H4546"]],[16,20,["H5927"]],[20,21,["H4929"]],[21,22,["H5980"]],[22,23,["H4929"]]]},{"k":11094,"v":[[0,1,["H4217"]],[1,3,["H8337"]],[3,4,["H3881"]],[4,5,["H6828"]],[5,6,["H702"]],[6,8,["H3117"]],[8,9,["H5045"]],[9,10,["H702"]],[10,12,["H3117"]],[12,15,["H624"]],[15,16,["H8147"]],[16,18,["H8147"]]]},{"k":11095,"v":[[0,2,["H6503"]],[2,3,["H4628"]],[3,4,["H702"]],[4,7,["H4546"]],[7,9,["H8147"]],[9,11,["H6503"]]]},{"k":11096,"v":[[0,1,["H428"]],[1,4,["H4256"]],[4,7,["H7778"]],[7,10,["H1121"]],[10,12,["H7145"]],[12,16,["H1121"]],[16,18,["H4847"]]]},{"k":11097,"v":[[0,4,["H3881"]],[4,5,["H281"]],[5,7,["H5921"]],[7,9,["H214"]],[9,12,["H1004"]],[12,14,["H430"]],[14,18,["H214"]],[18,22,["H6944"]]]},{"k":11098,"v":[[0,4,["H1121"]],[4,6,["H3936"]],[6,8,["H1121"]],[8,11,["H1649"]],[11,12,["H3936"]],[12,13,["H7218"]],[13,14,["H1"]],[14,17,["H3936"]],[17,19,["H1649"]],[19,21,["H3172"]]]},{"k":11099,"v":[[0,2,["H1121"]],[2,4,["H3172"]],[4,5,["H2241"]],[5,7,["H3100"]],[7,9,["H251"]],[9,12,["H5921"]],[12,14,["H214"]],[14,17,["H1004"]],[17,20,["H3068"]]]},{"k":11100,"v":[[0,3,["H6020"]],[3,6,["H3325"]],[6,8,["H2276"]],[8,11,["H5817"]]]},{"k":11101,"v":[[0,2,["H7619"]],[2,4,["H1121"]],[4,6,["H1648"]],[6,8,["H1121"]],[8,10,["H4872"]],[10,12,["H5057"]],[12,13,["H5921"]],[13,15,["H214"]]]},{"k":11102,"v":[[0,3,["H251"]],[3,5,["H461"]],[5,6,["H7345"]],[6,8,["H1121"]],[8,10,["H3470"]],[10,12,["H1121"]],[12,14,["H3141"]],[14,16,["H1121"]],[16,18,["H2147"]],[18,20,["H1121"]],[20,22,["H8013"]],[22,24,["H1121"]]]},{"k":11103,"v":[[0,1,["H1931"]],[1,2,["H8013"]],[2,5,["H251"]],[5,7,["H5921"]],[7,8,["H3605"]],[8,10,["H214"]],[10,14,["H6944"]],[14,15,["H834"]],[15,16,["H1732"]],[16,18,["H4428"]],[18,21,["H7218"]],[21,22,["H1"]],[22,24,["H8269"]],[24,26,["H505"]],[26,28,["H3967"]],[28,31,["H8269"]],[31,34,["H6635"]],[34,36,["H6942"]]]},{"k":11104,"v":[[0,2,["H4480"]],[2,4,["H7998"]],[4,6,["H4480"]],[6,7,["H4421"]],[7,10,["H6942"]],[10,12,["H2388"]],[12,14,["H1004"]],[14,17,["H3068"]]]},{"k":11105,"v":[[0,2,["H3605"]],[2,4,["H8050"]],[4,6,["H7203"]],[6,8,["H7586"]],[8,10,["H1121"]],[10,12,["H7027"]],[12,14,["H74"]],[14,16,["H1121"]],[16,18,["H5369"]],[18,20,["H3097"]],[20,22,["H1121"]],[22,24,["H6870"]],[24,26,["H6942"]],[26,28,["H3605"]],[28,30,["H6942"]],[30,35,["H5921"]],[35,37,["H3027"]],[37,39,["H8019"]],[39,43,["H251"]]]},{"k":11106,"v":[[0,3,["H3325"]],[3,4,["H3663"]],[4,7,["H1121"]],[7,11,["H2435"]],[11,12,["H4399"]],[12,13,["H5921"]],[13,14,["H3478"]],[14,16,["H7860"]],[16,18,["H8199"]]]},{"k":11107,"v":[[0,4,["H2276"]],[4,5,["H2811"]],[5,8,["H251"]],[8,11,["H1121","H2428"]],[11,13,["H505"]],[13,15,["H7651"]],[15,16,["H3967"]],[16,18,["H6486"]],[18,19,["H5921"]],[19,22,["H3478"]],[22,25,["H4480","H5676"]],[25,26,["H3383"]],[26,27,["H4628"]],[27,29,["H3605"]],[29,31,["H4399"]],[31,34,["H3068"]],[34,38,["H5656"]],[38,41,["H4428"]]]},{"k":11108,"v":[[0,3,["H2276"]],[3,5,["H3404"]],[5,7,["H7218"]],[7,11,["H2276"]],[11,15,["H8435"]],[15,18,["H1"]],[18,21,["H705"]],[21,22,["H8141"]],[22,25,["H4438"]],[25,27,["H1732"]],[27,31,["H1875"]],[31,35,["H4672"]],[35,39,["H1368"]],[39,41,["H2428"]],[41,43,["H3270"]],[43,45,["H1568"]]]},{"k":11109,"v":[[0,3,["H251"]],[3,4,["H1121"]],[4,6,["H2428"]],[6,9,["H505"]],[9,11,["H7651"]],[11,12,["H3967"]],[12,13,["H7218"]],[13,14,["H1"]],[14,16,["H4428"]],[16,17,["H1732"]],[17,19,["H6485"]],[19,20,["H5921"]],[20,22,["H7206"]],[22,24,["H1425"]],[24,27,["H2677"]],[27,28,["H7626"]],[28,30,["H4520"]],[30,32,["H3605"]],[32,33,["H1697"]],[33,36,["H430"]],[36,38,["H1697"]],[38,41,["H4428"]]]},{"k":11110,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,8,["H4557"]],[8,12,["H7218"]],[12,13,["H1"]],[13,15,["H8269"]],[15,17,["H505"]],[17,19,["H3967"]],[19,22,["H7860"]],[22,24,["H8334","(H853)"]],[24,26,["H4428"]],[26,28,["H3605"]],[28,29,["H1697"]],[29,32,["H4256"]],[32,35,["H935"]],[35,38,["H3318"]],[38,41,["H2320","H2320"]],[41,43,["H3605"]],[43,45,["H2320"]],[45,48,["H8141"]],[48,50,["H259"]],[50,51,["H4256"]],[51,53,["H6242"]],[53,55,["H702"]],[55,56,["H505"]]]},{"k":11111,"v":[[0,1,["H5921"]],[1,3,["H7223"]],[3,4,["H4256"]],[4,7,["H7223"]],[7,8,["H2320"]],[8,10,["H3434"]],[10,12,["H1121"]],[12,14,["H2068"]],[14,16,["H5921"]],[16,18,["H4256"]],[18,20,["H6242"]],[20,22,["H702"]],[22,23,["H505"]]]},{"k":11112,"v":[[0,1,["H4480"]],[1,3,["H1121"]],[3,5,["H6557"]],[5,8,["H7218"]],[8,10,["H3605"]],[10,12,["H8269"]],[12,15,["H6635"]],[15,18,["H7223"]],[18,19,["H2320"]]]},{"k":11113,"v":[[0,2,["H5921"]],[2,4,["H4256"]],[4,7,["H8145"]],[7,8,["H2320"]],[8,10,["H1737"]],[10,12,["H266"]],[12,16,["H4256"]],[16,18,["H4732"]],[18,21,["H5057"]],[21,22,["H5921"]],[22,24,["H4256"]],[24,27,["H6242"]],[27,29,["H702"]],[29,30,["H505"]]]},{"k":11114,"v":[[0,2,["H7992"]],[2,3,["H8269"]],[3,6,["H6635"]],[6,9,["H7992"]],[9,10,["H2320"]],[10,12,["H1141"]],[12,14,["H1121"]],[14,16,["H3077"]],[16,18,["H7218"]],[18,19,["H3548"]],[19,21,["H5921"]],[21,23,["H4256"]],[23,25,["H6242"]],[25,27,["H702"]],[27,28,["H505"]]]},{"k":11115,"v":[[0,1,["H1931"]],[1,4,["H1141"]],[4,7,["H1368"]],[7,10,["H7970"]],[10,12,["H5921"]],[12,14,["H7970"]],[14,18,["H4256"]],[18,20,["H5990"]],[20,22,["H1121"]]]},{"k":11116,"v":[[0,2,["H7243"]],[2,6,["H7243"]],[6,7,["H2320"]],[7,9,["H6214"]],[9,11,["H251"]],[11,13,["H3097"]],[13,15,["H2069"]],[15,17,["H1121"]],[17,18,["H310"]],[18,21,["H5921"]],[21,23,["H4256"]],[23,25,["H6242"]],[25,27,["H702"]],[27,28,["H505"]]]},{"k":11117,"v":[[0,2,["H2549"]],[2,3,["H8269"]],[3,6,["H2549"]],[6,7,["H2320"]],[7,9,["H8049"]],[9,11,["H3155"]],[11,13,["H5921"]],[13,15,["H4256"]],[15,17,["H6242"]],[17,19,["H702"]],[19,20,["H505"]]]},{"k":11118,"v":[[0,2,["H8345"]],[2,6,["H8345"]],[6,7,["H2320"]],[7,9,["H5896"]],[9,11,["H1121"]],[11,13,["H6142"]],[13,15,["H8621"]],[15,17,["H5921"]],[17,19,["H4256"]],[19,21,["H6242"]],[21,23,["H702"]],[23,24,["H505"]]]},{"k":11119,"v":[[0,2,["H7637"]],[2,6,["H7637"]],[6,7,["H2320"]],[7,9,["H2503"]],[9,11,["H6397"]],[11,12,["H4480"]],[12,14,["H1121"]],[14,16,["H669"]],[16,18,["H5921"]],[18,20,["H4256"]],[20,22,["H6242"]],[22,24,["H702"]],[24,25,["H505"]]]},{"k":11120,"v":[[0,2,["H8066"]],[2,6,["H8066"]],[6,7,["H2320"]],[7,9,["H5444"]],[9,11,["H2843"]],[11,14,["H2227"]],[14,16,["H5921"]],[16,18,["H4256"]],[18,20,["H6242"]],[20,22,["H702"]],[22,23,["H505"]]]},{"k":11121,"v":[[0,2,["H8671"]],[2,6,["H8671"]],[6,7,["H2320"]],[7,9,["H44"]],[9,11,["H6069"]],[11,14,["H1145"]],[14,16,["H5921"]],[16,18,["H4256"]],[18,20,["H6242"]],[20,22,["H702"]],[22,23,["H505"]]]},{"k":11122,"v":[[0,2,["H6224"]],[2,6,["H6224"]],[6,7,["H2320"]],[7,9,["H4121"]],[9,11,["H5200"]],[11,14,["H2227"]],[14,16,["H5921"]],[16,18,["H4256"]],[18,20,["H6242"]],[20,22,["H702"]],[22,23,["H505"]]]},{"k":11123,"v":[[0,2,["H6249","H6240"]],[2,6,["H6249","H6240"]],[6,7,["H2320"]],[7,9,["H1141"]],[9,11,["H6553"]],[11,12,["H4480"]],[12,14,["H1121"]],[14,16,["H669"]],[16,18,["H5921"]],[18,20,["H4256"]],[20,22,["H6242"]],[22,24,["H702"]],[24,25,["H505"]]]},{"k":11124,"v":[[0,2,["H8147","H6240"]],[2,6,["H8147","H6240"]],[6,7,["H2320"]],[7,9,["H2469"]],[9,11,["H5200"]],[11,13,["H6274"]],[13,15,["H5921"]],[15,17,["H4256"]],[17,19,["H6242"]],[19,21,["H702"]],[21,22,["H505"]]]},{"k":11125,"v":[[0,2,["H5921"]],[2,4,["H7626"]],[4,6,["H3478"]],[6,8,["H5057"]],[8,11,["H7206"]],[11,13,["H461"]],[13,15,["H1121"]],[15,17,["H2147"]],[17,20,["H8099"]],[20,21,["H8203"]],[21,23,["H1121"]],[23,25,["H4601"]]]},{"k":11126,"v":[[0,3,["H3881"]],[3,4,["H2811"]],[4,6,["H1121"]],[6,8,["H7055"]],[8,11,["H175"]],[11,12,["H6659"]]]},{"k":11127,"v":[[0,2,["H3063"]],[2,3,["H453"]],[3,7,["H4480","H251"]],[7,9,["H1732"]],[9,11,["H3485"]],[11,12,["H6018"]],[12,14,["H1121"]],[14,16,["H4317"]]]},{"k":11128,"v":[[0,2,["H2074"]],[2,3,["H3460"]],[3,5,["H1121"]],[5,7,["H5662"]],[7,9,["H5321"]],[9,10,["H3406"]],[10,12,["H1121"]],[12,14,["H5837"]]]},{"k":11129,"v":[[0,3,["H1121"]],[3,5,["H669"]],[5,6,["H1954"]],[6,8,["H1121"]],[8,10,["H5812"]],[10,13,["H2677"]],[13,14,["H7626"]],[14,16,["H4519"]],[16,17,["H3100"]],[17,19,["H1121"]],[19,21,["H6305"]]]},{"k":11130,"v":[[0,3,["H2677"]],[3,6,["H4519"]],[6,8,["H1568"]],[8,9,["H3035"]],[9,11,["H1121"]],[11,13,["H2148"]],[13,15,["H1144"]],[15,16,["H3300"]],[16,18,["H1121"]],[18,20,["H74"]]]},{"k":11131,"v":[[0,2,["H1835"]],[2,3,["H5832"]],[3,5,["H1121"]],[5,7,["H3395"]],[7,8,["H428"]],[8,11,["H8269"]],[11,14,["H7626"]],[14,16,["H3478"]]]},{"k":11132,"v":[[0,2,["H1732"]],[2,3,["H5375"]],[3,4,["H3808"]],[4,6,["H4557"]],[6,12,["H4480","H1121","H6242","H8141"]],[12,14,["H4295"]],[14,15,["H3588"]],[15,17,["H3068"]],[17,19,["H559"]],[19,22,["H7235","(H853)"]],[22,23,["H3478"]],[23,27,["H3556"]],[27,30,["H8064"]]]},{"k":11133,"v":[[0,1,["H3097"]],[1,3,["H1121"]],[3,5,["H6870"]],[5,6,["H2490"]],[6,8,["H4487"]],[8,11,["H3615"]],[11,12,["H3808"]],[12,15,["H1961"]],[15,16,["H7110"]],[16,18,["H2063"]],[18,19,["H5921"]],[19,20,["H3478"]],[20,21,["H3808"]],[21,24,["H4557"]],[24,25,["H5927"]],[25,28,["H4557"]],[28,31,["H1697","H3117"]],[31,33,["H4428"]],[33,34,["H1732"]]]},{"k":11134,"v":[[0,2,["H5921"]],[2,4,["H4428"]],[4,5,["H214"]],[5,7,["H5820"]],[7,9,["H1121"]],[9,11,["H5717"]],[11,13,["H5921"]],[13,15,["H214"]],[15,18,["H7704"]],[18,21,["H5892"]],[21,25,["H3723"]],[25,29,["H4026"]],[29,31,["H3083"]],[31,33,["H1121"]],[33,35,["H5818"]]]},{"k":11135,"v":[[0,2,["H5921"]],[2,5,["H6213"]],[5,7,["H4399"]],[7,10,["H7704"]],[10,12,["H5656"]],[12,15,["H127"]],[15,17,["H5836"]],[17,19,["H1121"]],[19,21,["H3620"]]]},{"k":11136,"v":[[0,2,["H5921"]],[2,4,["H3754"]],[4,6,["H8096"]],[6,8,["H7435"]],[8,9,["H5921"]],[9,14,["H7945","H3754"]],[14,17,["H3196"]],[17,18,["H214"]],[18,20,["H2067"]],[20,22,["H8225"]]]},{"k":11137,"v":[[0,2,["H5921"]],[2,5,["H2132"]],[5,9,["H8256"]],[9,10,["H834"]],[10,15,["H8219"]],[15,17,["H1177"]],[17,19,["H1451"]],[19,21,["H5921"]],[21,23,["H214"]],[23,25,["H8081"]],[25,27,["H3135"]]]},{"k":11138,"v":[[0,2,["H5921"]],[2,4,["H1241"]],[4,6,["H7462"]],[6,8,["H8289"]],[8,10,["H7861"]],[10,12,["H8290"]],[12,14,["H5921"]],[14,16,["H1241"]],[16,21,["H6010"]],[21,23,["H8202"]],[23,25,["H1121"]],[25,27,["H5724"]]]},{"k":11139,"v":[[0,1,["H5921"]],[1,3,["H1581"]],[3,6,["H179"]],[6,8,["H3458"]],[8,10,["H5921"]],[10,12,["H860"]],[12,14,["H3165"]],[14,16,["H4824"]]]},{"k":11140,"v":[[0,2,["H5921"]],[2,4,["H6629"]],[4,6,["H3151"]],[6,8,["H1905"]],[8,9,["H3605"]],[9,10,["H428"]],[10,13,["H8269"]],[13,16,["H7399"]],[16,17,["H834"]],[17,19,["H4428"]],[19,20,["H1732"]]]},{"k":11141,"v":[[0,2,["H3083"]],[2,3,["H1732"]],[3,4,["H1730"]],[4,7,["H3289"]],[7,9,["H995"]],[9,10,["H376"]],[10,13,["H5608"]],[13,15,["H3171"]],[15,17,["H1121"]],[17,19,["H2453"]],[19,21,["H5973"]],[21,23,["H4428"]],[23,24,["H1121"]]]},{"k":11142,"v":[[0,2,["H302"]],[2,5,["H4428"]],[5,6,["H3289"]],[6,8,["H2365"]],[8,10,["H757"]],[10,13,["H4428"]],[13,14,["H7453"]]]},{"k":11143,"v":[[0,2,["H310"]],[2,3,["H302"]],[3,5,["H3077"]],[5,7,["H1121"]],[7,9,["H1141"]],[9,11,["H54"]],[11,14,["H8269"]],[14,17,["H4428"]],[17,18,["H6635"]],[18,20,["H3097"]]]},{"k":11144,"v":[[0,2,["H1732"]],[2,3,["H6950","(H853)"]],[3,4,["H3605"]],[4,6,["H8269"]],[6,8,["H3478"]],[8,10,["H8269"]],[10,13,["H7626"]],[13,16,["H8269"]],[16,19,["H4256"]],[19,21,["H8334","(H853)"]],[21,24,["H4428"]],[24,29,["H8269"]],[29,32,["H505"]],[32,34,["H8269"]],[34,37,["H3967"]],[37,40,["H8269"]],[40,42,["H3605"]],[42,44,["H7399"]],[44,46,["H4735"]],[46,49,["H4428"]],[49,53,["H1121"]],[53,54,["H5973"]],[54,56,["H5631"]],[56,61,["H1368"]],[61,64,["H3605"]],[64,66,["H2428"]],[66,67,["H1368"]],[67,68,["H413"]],[68,69,["H3389"]]]},{"k":11145,"v":[[0,2,["H1732"]],[2,4,["H4428"]],[4,6,["H6965"]],[6,7,["H5921"]],[7,9,["H7272"]],[9,11,["H559"]],[11,12,["H8085"]],[12,15,["H251"]],[15,18,["H5971"]],[18,22,["H589"]],[22,24,["H5973"]],[24,26,["H3824"]],[26,28,["H1129"]],[28,30,["H1004"]],[30,32,["H4496"]],[32,35,["H727"]],[35,38,["H1285"]],[38,41,["H3068"]],[41,45,["H1916","H7272"]],[45,48,["H430"]],[48,52,["H3559"]],[52,55,["H1129"]]]},{"k":11146,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,8,["H3808"]],[8,9,["H1129"]],[9,11,["H1004"]],[11,14,["H8034"]],[14,15,["H3588"]],[15,16,["H859"]],[16,20,["H376"]],[20,22,["H4421"]],[22,25,["H8210"]],[25,26,["H1818"]]]},{"k":11147,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,6,["H3478"]],[6,7,["H977"]],[7,10,["H4480","H3605"]],[10,12,["H1004"]],[12,15,["H1"]],[15,17,["H1961"]],[17,18,["H4428"]],[18,19,["H5921"]],[19,20,["H3478"]],[20,22,["H5769"]],[22,23,["H3588"]],[23,26,["H977"]],[26,27,["H3063"]],[27,31,["H5057"]],[31,35,["H1004"]],[35,37,["H3063"]],[37,39,["H1004"]],[39,42,["H1"]],[42,46,["H1121"]],[46,49,["H1"]],[49,51,["H7521"]],[51,56,["H4427"]],[56,57,["H5921"]],[57,58,["H3605"]],[58,59,["H3478"]]]},{"k":11148,"v":[[0,3,["H4480","H3605"]],[3,5,["H1121"]],[5,6,["H3588"]],[6,8,["H3068"]],[8,10,["H5414"]],[10,12,["H7227"]],[12,13,["H1121"]],[13,16,["H977"]],[16,17,["H8010"]],[17,19,["H1121"]],[19,21,["H3427"]],[21,22,["H5921"]],[22,24,["H3678"]],[24,27,["H4438"]],[27,30,["H3068"]],[30,31,["H5921"]],[31,32,["H3478"]]]},{"k":11149,"v":[[0,3,["H559"]],[3,6,["H8010"]],[6,8,["H1121"]],[8,9,["H1931"]],[9,11,["H1129"]],[11,13,["H1004"]],[13,16,["H2691"]],[16,17,["H3588"]],[17,20,["H977"]],[20,25,["H1121"]],[25,27,["H589"]],[27,29,["H1961"]],[29,31,["H1"]]]},{"k":11150,"v":[[0,4,["H3559","(H853)"]],[4,6,["H4438"]],[6,8,["H5704","H5769"]],[8,9,["H518"]],[9,12,["H2388"]],[12,14,["H6213"]],[14,16,["H4687"]],[16,19,["H4941"]],[19,22,["H2088"]],[22,23,["H3117"]]]},{"k":11151,"v":[[0,1,["H6258"]],[1,5,["H5869"]],[5,7,["H3605"]],[7,8,["H3478"]],[8,10,["H6951"]],[10,13,["H3068"]],[13,17,["H241"]],[17,20,["H430"]],[20,21,["H8104"]],[21,23,["H1875"]],[23,25,["H3605"]],[25,27,["H4687"]],[27,30,["H3068"]],[30,32,["H430"]],[32,33,["H4616"]],[33,36,["H3423","(H853)"]],[36,38,["H2896"]],[38,39,["H776"]],[39,45,["H5157"]],[45,48,["H1121"]],[48,49,["H310"]],[49,52,["H5704","H5769"]]]},{"k":11152,"v":[[0,2,["H859"]],[2,3,["H8010"]],[3,5,["H1121"]],[5,6,["H3045"]],[6,7,["(H853)"]],[7,9,["H430"]],[9,12,["H1"]],[12,14,["H5647"]],[14,18,["H8003"]],[18,19,["H3820"]],[19,23,["H2655"]],[23,24,["H5315"]],[24,25,["H3588"]],[25,27,["H3068"]],[27,28,["H1875"]],[28,29,["H3605"]],[29,30,["H3824"]],[30,32,["H995"]],[32,33,["H3605"]],[33,35,["H3336"]],[35,38,["H4284"]],[38,39,["H518"]],[39,41,["H1875"]],[41,46,["H4672"]],[46,50,["H518"]],[50,52,["H5800"]],[52,58,["H2186"]],[58,60,["H5704"]]]},{"k":11153,"v":[[0,2,["H7200"]],[2,3,["H6258"]],[3,4,["H3588"]],[4,6,["H3068"]],[6,8,["H977"]],[8,11,["H1129"]],[11,13,["H1004"]],[13,16,["H4720"]],[16,18,["H2388"]],[18,20,["H6213"]],[20,21,[]]]},{"k":11154,"v":[[0,2,["H1732"]],[2,3,["H5414"]],[3,5,["H8010"]],[5,7,["H1121","(H853)"]],[7,9,["H8403"]],[9,12,["H197"]],[12,16,["H1004"]],[16,21,["H1597"]],[21,27,["H5944"]],[27,32,["H6442"]],[32,33,["H2315"]],[33,38,["H1004"]],[38,42,["H3727"]]]},{"k":11155,"v":[[0,3,["H8403"]],[3,5,["H3605"]],[5,6,["H834"]],[6,8,["H1961"]],[8,11,["H7307"]],[11,12,["H5973"]],[12,14,["H2691"]],[14,17,["H1004"]],[17,20,["H3068"]],[20,23,["H3605"]],[23,25,["H3957"]],[25,27,["H5439"]],[27,30,["H214"]],[30,33,["H1004"]],[33,35,["H430"]],[35,39,["H214"]],[39,43,["H6944"]]]},{"k":11156,"v":[[0,4,["H4256"]],[4,7,["H3548"]],[7,10,["H3881"]],[10,13,["H3605"]],[13,15,["H4399"]],[15,18,["H5656"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,27,["H3605"]],[27,29,["H3627"]],[29,31,["H5656"]],[31,34,["H1004"]],[34,37,["H3068"]]]},{"k":11157,"v":[[0,4,["H2091"]],[4,6,["H4948"]],[6,10,["H2091"]],[10,12,["H3605"]],[12,13,["H3627"]],[13,18,["H5656","H5656"]],[18,22,["H3605"]],[22,23,["H3627"]],[23,25,["H3701"]],[25,27,["H4948"]],[27,29,["H3605"]],[29,30,["H3627"]],[30,35,["H5656","H5656"]]]},{"k":11158,"v":[[0,3,["H4948"]],[3,6,["H4501"]],[6,8,["H2091"]],[8,12,["H5216"]],[12,14,["H2091"]],[14,16,["H4948"]],[16,19,["H4501","H4501"]],[19,23,["H5216"]],[23,28,["H4501"]],[28,30,["H3701"]],[30,32,["H4948"]],[32,36,["H4501"]],[36,41,["H5216"]],[41,46,["H5656"]],[46,49,["H4501","H4501"]]]},{"k":11159,"v":[[0,3,["H4948"]],[3,6,["H2091"]],[6,9,["H7979"]],[9,11,["H4635"]],[11,14,["H7979","H7979"]],[14,17,["H3701"]],[17,20,["H7979"]],[20,22,["H3701"]]]},{"k":11160,"v":[[0,2,["H2889"]],[2,3,["H2091"]],[3,6,["H4207"]],[6,9,["H4219"]],[9,12,["H7184"]],[12,16,["H2091"]],[16,17,["H3713"]],[17,22,["H4948"]],[22,25,["H3713","H3713"]],[25,30,["H4948"]],[30,33,["H3713","H3713","H3713"]],[33,35,["H3701"]]]},{"k":11161,"v":[[0,4,["H4196"]],[4,6,["H7004"]],[6,7,["H2212"]],[7,8,["H2091"]],[8,10,["H4948"]],[10,12,["H2091"]],[12,15,["H8403"]],[15,18,["H4818"]],[18,21,["H3742"]],[21,24,["H6566"]],[24,28,["H5526"]],[28,30,["H727"]],[30,33,["H1285"]],[33,36,["H3068"]]]},{"k":11162,"v":[[0,1,["H3605"]],[1,6,["H3068"]],[6,9,["H7919"]],[9,11,["H3791"]],[11,14,["H4480","H3027"]],[14,15,["H5921"]],[15,18,["H3605"]],[18,20,["H4399"]],[20,23,["H8403"]]]},{"k":11163,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H8010"]],[5,7,["H1121"]],[7,9,["H2388"]],[9,13,["H553"]],[13,15,["H6213"]],[15,17,["H3372"]],[17,18,["H408"]],[18,19,["H408"]],[19,21,["H2865"]],[21,22,["H3588"]],[22,24,["H3068"]],[24,25,["H430"]],[25,28,["H430"]],[28,31,["H5973"]],[31,35,["H3808"]],[35,36,["H7503"]],[36,38,["H3808"]],[38,39,["H5800"]],[39,41,["H5704"]],[41,44,["H3615"]],[44,45,["H3605"]],[45,47,["H4399"]],[47,50,["H5656"]],[50,53,["H1004"]],[53,56,["H3068"]]]},{"k":11164,"v":[[0,2,["H2009"]],[2,4,["H4256"]],[4,7,["H3548"]],[7,10,["H3881"]],[10,18,["H3605"]],[18,20,["H5656"]],[20,23,["H1004"]],[23,25,["H430"]],[25,30,["H5973"]],[30,34,["H3605"]],[34,36,["H4399"]],[36,37,["H3605"]],[37,38,["H5081"]],[38,40,["H2451"]],[40,43,["H3605"]],[43,45,["H5656"]],[45,48,["H8269"]],[48,50,["H3605"]],[50,52,["H5971"]],[52,55,["H3605"]],[55,58,["H1697"]]]},{"k":11165,"v":[[0,2,["H1732"]],[2,4,["H4428"]],[4,5,["H559"]],[5,7,["H3605"]],[7,9,["H6951"]],[9,10,["H8010"]],[10,12,["H1121"]],[12,14,["H259"]],[14,15,["H430"]],[15,17,["H977"]],[17,20,["H5288"]],[20,22,["H7390"]],[22,25,["H4399"]],[25,27,["H1419"]],[27,28,["H3588"]],[28,30,["H1002"]],[30,32,["H3808"]],[32,34,["H120"]],[34,35,["H3588"]],[35,38,["H3068"]],[38,39,["H430"]]]},{"k":11166,"v":[[0,4,["H3559"]],[4,6,["H3605"]],[6,8,["H3581"]],[8,11,["H1004"]],[11,14,["H430"]],[14,16,["H2091"]],[16,23,["H2091"]],[23,26,["H3701"]],[26,30,["H3701"]],[30,33,["H5178"]],[33,37,["H5178"]],[37,39,["H1270"]],[39,43,["H1270"]],[43,45,["H6086"]],[45,49,["H6086"]],[49,50,["H7718"]],[50,51,["H68"]],[51,56,["H4394"]],[56,57,["H6320"]],[57,58,["H68"]],[58,62,["H7553"]],[62,65,["H3605"]],[65,67,["H3368"]],[67,68,["H68"]],[68,70,["H7893"]],[70,71,["H68"]],[71,73,["H7230"]]]},{"k":11167,"v":[[0,1,["H5750"]],[1,7,["H7521"]],[7,10,["H1004"]],[10,13,["H430"]],[13,15,["H3426"]],[15,20,["H5459"]],[20,22,["H2091"]],[22,24,["H3701"]],[24,28,["H5414"]],[28,31,["H1004"]],[31,34,["H430"]],[34,35,["H4605"]],[35,38,["H4480","H3605"]],[38,42,["H3559"]],[42,45,["H6944"]],[45,46,["H1004"]]]},{"k":11168,"v":[[0,2,["H7969"]],[2,3,["H505"]],[3,4,["H3603"]],[4,6,["H2091"]],[6,9,["H4480","H2091"]],[9,11,["H211"]],[11,13,["H7651"]],[13,14,["H505"]],[14,15,["H3603"]],[15,17,["H2212"]],[17,18,["H3701"]],[18,20,["H2902"]],[20,22,["H7023"]],[22,25,["H1004"]],[25,26,[]]]},{"k":11169,"v":[[0,2,["H2091"]],[2,6,["H2091"]],[6,9,["H3701"]],[9,13,["H3701"]],[13,17,["H3605"]],[17,19,["H4399"]],[19,25,["H3027"]],[25,27,["H2796"]],[27,29,["H4310"]],[29,32,["H5068"]],[32,36,["H4390","H3027"]],[36,38,["H3117"]],[38,41,["H3068"]]]},{"k":11170,"v":[[0,3,["H8269"]],[3,6,["H1"]],[6,8,["H8269"]],[8,11,["H7626"]],[11,13,["H3478"]],[13,16,["H8269"]],[16,18,["H505"]],[18,21,["H3967"]],[21,24,["H8269"]],[24,27,["H4428"]],[27,28,["H4399"]],[28,30,["H5068"]]]},{"k":11171,"v":[[0,2,["H5414"]],[2,5,["H5656"]],[5,8,["H1004"]],[8,10,["H430"]],[10,12,["H2091"]],[12,13,["H2568"]],[13,14,["H505"]],[14,15,["H3603"]],[15,18,["H7239"]],[18,19,["H150"]],[19,22,["H3701"]],[22,23,["H6235"]],[23,24,["H505"]],[24,25,["H3603"]],[25,28,["H5178"]],[28,30,["H7239","H8083","H505"]],[30,31,["H3603"]],[31,34,["H3967"]],[34,35,["H505"]],[35,36,["H3603"]],[36,38,["H1270"]]]},{"k":11172,"v":[[0,3,["H854"]],[3,6,["H68"]],[6,8,["H4672"]],[8,9,["H5414"]],[9,13,["H214"]],[13,16,["H1004"]],[16,19,["H3068"]],[19,20,["H5921"]],[20,22,["H3027"]],[22,24,["H3171"]],[24,26,["H1649"]]]},{"k":11173,"v":[[0,3,["H5971"]],[3,4,["H8055"]],[4,5,["H5921"]],[5,9,["H5068"]],[9,10,["H3588"]],[10,12,["H8003"]],[12,13,["H3820"]],[13,16,["H5068"]],[16,19,["H3068"]],[19,21,["H1732"]],[21,23,["H4428"]],[23,24,["H1571"]],[24,25,["H8055"]],[25,27,["H1419"]],[27,28,["H8057"]]]},{"k":11174,"v":[[0,2,["H1732"]],[2,3,["H1288","(H853)"]],[3,5,["H3068"]],[5,6,["H5869"]],[6,7,["H3605"]],[7,9,["H6951"]],[9,11,["H1732"]],[11,12,["H559"]],[12,13,["H1288"]],[13,15,["H859"]],[15,16,["H3068"]],[16,17,["H430"]],[17,19,["H3478"]],[19,21,["H1"]],[21,23,["H4480","H5769"]],[23,25,["H5704","H5769"]]]},{"k":11175,"v":[[0,3,["H3068"]],[3,6,["H1420"]],[6,9,["H1369"]],[9,12,["H8597"]],[12,15,["H5331"]],[15,18,["H1935"]],[18,19,["H3588"]],[19,20,["H3605"]],[20,25,["H8064"]],[25,29,["H776"]],[29,35,["H4467"]],[35,37,["H3068"]],[37,41,["H4984"]],[41,43,["H7218"]],[43,45,["H3605"]]]},{"k":11176,"v":[[0,2,["H6239"]],[2,4,["H3519"]],[4,6,["H4480","H6440"]],[6,9,["H859"]],[9,10,["H4910"]],[10,12,["H3605"]],[12,16,["H3027"]],[16,18,["H3581"]],[18,20,["H1369"]],[20,24,["H3027"]],[24,29,["H1431"]],[29,33,["H2388"]],[33,35,["H3605"]]]},{"k":11177,"v":[[0,1,["H6258"]],[1,4,["H430"]],[4,5,["H587"]],[5,6,["H3034"]],[6,9,["H1984"]],[9,11,["H8597"]],[11,12,["H8034"]]]},{"k":11178,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,4,["H589"]],[4,6,["H4310"]],[6,9,["H5971"]],[9,10,["H3588"]],[10,14,["H6113","H3581"]],[14,18,["H5068"]],[18,21,["H2063"]],[21,22,["H3588"]],[22,24,["H3605"]],[24,26,["H4480"]],[26,31,["H4480","H3027"]],[31,34,["H5414"]],[34,35,[]]]},{"k":11179,"v":[[0,1,["H3588"]],[1,2,["H587"]],[2,4,["H1616"]],[4,5,["H6440"]],[5,8,["H8453"]],[8,11,["H3605"]],[11,13,["H1"]],[13,15,["H3117"]],[15,16,["H5921"]],[16,18,["H776"]],[18,22,["H6738"]],[22,26,["H369"]],[26,27,["H4723"]]]},{"k":11180,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,5,["H3605"]],[5,6,["H2088"]],[6,7,["H1995"]],[7,8,["H834"]],[8,11,["H3559"]],[11,13,["H1129"]],[13,16,["H1004"]],[16,19,["H6944"]],[19,20,["H8034"]],[20,24,["H4480","H3027"]],[24,27,["H3605"]],[27,29,[]]]},{"k":11181,"v":[[0,2,["H3045"]],[2,5,["H430"]],[5,6,["H3588"]],[6,7,["H859"]],[7,8,["H974"]],[8,10,["H3824"]],[10,13,["H7521"]],[13,15,["H3476"]],[15,18,["H589"]],[18,21,["H4339"]],[21,24,["H3824"]],[24,28,["H5068"]],[28,29,["H3605"]],[29,31,["H428"]],[31,33,["H6258"]],[33,36,["H7200"]],[36,38,["H8057"]],[38,40,["H5971"]],[40,43,["H4672"]],[43,44,["H6311"]],[44,47,["H5068"]],[47,49,[]]]},{"k":11182,"v":[[0,2,["H3068"]],[2,3,["H430"]],[3,5,["H85"]],[5,6,["H3327"]],[6,9,["H3478"]],[9,11,["H1"]],[11,12,["H8104"]],[12,13,["H2063"]],[13,15,["H5769"]],[15,18,["H3336"]],[18,21,["H4284"]],[21,24,["H3824"]],[24,27,["H5971"]],[27,29,["H3559"]],[29,31,["H3824"]],[31,32,["H413"]],[32,33,[]]]},{"k":11183,"v":[[0,2,["H5414"]],[2,4,["H8010"]],[4,6,["H1121"]],[6,8,["H8003"]],[8,9,["H3824"]],[9,11,["H8104"]],[11,13,["H4687"]],[13,15,["H5715"]],[15,18,["H2706"]],[18,21,["H6213"]],[21,22,["H3605"]],[22,27,["H1129"]],[27,29,["H1002"]],[29,32,["H834"]],[32,36,["H3559"]]]},{"k":11184,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H3605"]],[5,7,["H6951"]],[7,8,["H4994"]],[8,9,["H1288","(H853)"]],[9,11,["H3068"]],[11,13,["H430"]],[13,15,["H3605"]],[15,17,["H6951"]],[17,18,["H1288"]],[18,20,["H3068"]],[20,21,["H430"]],[21,24,["H1"]],[24,29,["H6915"]],[29,31,["H7812"]],[31,33,["H3068"]],[33,36,["H4428"]]]},{"k":11185,"v":[[0,3,["H2076"]],[3,4,["H2077"]],[4,7,["H3068"]],[7,9,["H5927"]],[9,11,["H5930"]],[11,14,["H3068"]],[14,17,["H4283"]],[17,19,["H1931"]],[19,20,["H3117"]],[20,23,["H505"]],[23,24,["H6499"]],[24,26,["H505"]],[26,27,["H352"]],[27,30,["H505"]],[30,31,["H3532"]],[31,35,["H5262"]],[35,37,["H2077"]],[37,39,["H7230"]],[39,41,["H3605"]],[41,42,["H3478"]]]},{"k":11186,"v":[[0,3,["H398"]],[3,5,["H8354"]],[5,6,["H6440"]],[6,8,["H3068"]],[8,10,["H1931"]],[10,11,["H3117"]],[11,13,["H1419"]],[13,14,["H8057"]],[14,17,["H4427"]],[17,18,["H8010"]],[18,20,["H1121"]],[20,22,["H1732"]],[22,26,["H8145"]],[26,28,["H4886"]],[28,32,["H3068"]],[32,37,["H5057"]],[37,39,["H6659"]],[39,42,["H3548"]]]},{"k":11187,"v":[[0,2,["H8010"]],[2,3,["H3427"]],[3,4,["H5921"]],[4,6,["H3678"]],[6,9,["H3068"]],[9,11,["H4428"]],[11,13,["H8478"]],[13,14,["H1732"]],[14,16,["H1"]],[16,18,["H6743"]],[18,20,["H3605"]],[20,21,["H3478"]],[21,22,["H8085","H413"]],[22,23,[]]]},{"k":11188,"v":[[0,2,["H3605"]],[2,4,["H8269"]],[4,8,["H1368"]],[8,10,["H3605"]],[10,12,["H1121"]],[12,13,["H1571"]],[13,15,["H4428"]],[15,16,["H1732"]],[16,17,["H5414","H3027"]],[17,19,["H8478"]],[19,20,["H8010"]],[20,22,["H4428"]]]},{"k":11189,"v":[[0,3,["H3068"]],[3,4,["H1431","(H853)"]],[4,5,["H8010"]],[5,6,["H4605"]],[6,9,["H5869"]],[9,11,["H3605"]],[11,12,["H3478"]],[12,14,["H5414"]],[14,15,["H5921"]],[15,18,["H4438"]],[18,19,["H1935"]],[19,20,["H834"]],[20,22,["H3808"]],[22,23,["H1961"]],[23,24,["H5921"]],[24,25,["H3605"]],[25,26,["H4428"]],[26,27,["H6440"]],[27,29,["H5921"]],[29,30,["H3478"]]]},{"k":11190,"v":[[0,2,["H1732"]],[2,4,["H1121"]],[4,6,["H3448"]],[6,7,["H4427"]],[7,8,["H5921"]],[8,9,["H3605"]],[9,10,["H3478"]]]},{"k":11191,"v":[[0,3,["H3117"]],[3,4,["H834"]],[4,6,["H4427"]],[6,7,["H5921"]],[7,8,["H3478"]],[8,10,["H705"]],[10,11,["H8141"]],[11,12,["H7651"]],[12,13,["H8141"]],[13,14,["H4427"]],[14,17,["H2275"]],[17,19,["H7970"]],[19,21,["H7969"]],[21,23,["H4427"]],[23,26,["H3389"]]]},{"k":11192,"v":[[0,3,["H4191"]],[3,8,["H7872","H2896"]],[8,9,["H7649"]],[9,11,["H3117"]],[11,12,["H6239"]],[12,14,["H3519"]],[14,16,["H8010"]],[16,18,["H1121"]],[18,19,["H4427"]],[19,22,["H8478"]]]},{"k":11193,"v":[[0,3,["H1697"]],[3,5,["H1732"]],[5,7,["H4428"]],[7,8,["H7223"]],[8,10,["H314"]],[10,11,["H2009"]],[11,14,["H3789"]],[14,15,["H5921"]],[15,17,["H1697"]],[17,19,["H8050"]],[19,21,["H7203"]],[21,23,["H5921"]],[23,25,["H1697"]],[25,27,["H5416"]],[27,29,["H5030"]],[29,31,["H5921"]],[31,33,["H1697"]],[33,35,["H1410"]],[35,37,["H2374"]]]},{"k":11194,"v":[[0,1,["H5973"]],[1,2,["H3605"]],[2,4,["H4438"]],[4,7,["H1369"]],[7,10,["H6256"]],[10,11,["H834"]],[11,13,["H5674","H5921"]],[13,16,["H5921"]],[16,17,["H3478"]],[17,19,["H5921"]],[19,20,["H3605"]],[20,22,["H4467"]],[22,25,["H776"]]]},{"k":11195,"v":[[0,2,["H8010"]],[2,4,["H1121"]],[4,6,["H1732"]],[6,8,["H2388"]],[8,9,["H5921"]],[9,11,["H4438"]],[11,14,["H3068"]],[14,16,["H430"]],[16,18,["H5973"]],[18,21,["H1431"]],[21,23,["H4605"]]]},{"k":11196,"v":[[0,2,["H8010"]],[2,3,["H559"]],[3,5,["H3605"]],[5,6,["H3478"]],[6,9,["H8269"]],[9,11,["H505"]],[11,14,["H3967"]],[14,18,["H8199"]],[18,21,["H3605"]],[21,22,["H5387"]],[22,24,["H3605"]],[24,25,["H3478"]],[25,27,["H7218"]],[27,30,["H1"]]]},{"k":11197,"v":[[0,2,["H8010"]],[2,4,["H3605"]],[4,6,["H6951"]],[6,7,["H5973"]],[7,9,["H1980"]],[9,13,["H1116"]],[13,14,["H834"]],[14,17,["H1391"]],[17,18,["H3588"]],[18,19,["H8033"]],[19,20,["H1961"]],[20,22,["H168"]],[22,25,["H4150"]],[25,27,["H430"]],[27,28,["H834"]],[28,29,["H4872"]],[29,31,["H5650"]],[31,34,["H3068"]],[34,36,["H6213"]],[36,39,["H4057"]]]},{"k":11198,"v":[[0,1,["H61"]],[1,3,["H727"]],[3,5,["H430"]],[5,7,["H1732"]],[7,9,["H5927"]],[9,11,["H4480","H7157"]],[11,16,["H1732"]],[16,18,["H3559"]],[18,21,["H3588"]],[21,24,["H5186"]],[24,26,["H168"]],[26,30,["H3389"]]]},{"k":11199,"v":[[0,3,["H5178"]],[3,4,["H4196"]],[4,5,["H834"]],[5,6,["H1212"]],[6,8,["H1121"]],[8,10,["H221"]],[10,12,["H1121"]],[12,14,["H2354"]],[14,16,["H6213"]],[16,18,["H7760"]],[18,19,["H6440"]],[19,21,["H4908"]],[21,24,["H3068"]],[24,26,["H8010"]],[26,29,["H6951"]],[29,30,["H1875"]],[30,32,[]]]},{"k":11200,"v":[[0,2,["H8010"]],[2,4,["H5927"]],[4,5,["H8033"]],[5,6,["H5921"]],[6,8,["H5178"]],[8,9,["H4196"]],[9,10,["H6440"]],[10,12,["H3068"]],[12,13,["H834"]],[13,17,["H168"]],[17,20,["H4150"]],[20,22,["H5927"]],[22,24,["H505"]],[24,26,["H5930"]],[26,27,["H5921"]],[27,28,[]]]},{"k":11201,"v":[[0,2,["H1931"]],[2,3,["H3915"]],[3,5,["H430"]],[5,6,["H7200"]],[6,8,["H8010"]],[8,10,["H559"]],[10,13,["H7592"]],[13,14,["H4100"]],[14,17,["H5414"]],[17,18,[]]]},{"k":11202,"v":[[0,2,["H8010"]],[2,3,["H559"]],[3,5,["H430"]],[5,6,["H859"]],[6,8,["H6213"]],[8,9,["H1419"]],[9,10,["H2617"]],[10,11,["H5973"]],[11,12,["H1732"]],[12,14,["H1"]],[14,20,["H4427"]],[20,23,["H8478"]]]},{"k":11203,"v":[[0,1,["H6258"]],[1,3,["H3068"]],[3,4,["H430"]],[4,7,["H1697"]],[7,8,["H5973"]],[8,9,["H1732"]],[9,11,["H1"]],[11,13,["H539"]],[13,14,["H3588"]],[14,15,["H859"]],[15,19,["H4427"]],[19,20,["H5921"]],[20,22,["H5971"]],[22,25,["H6083"]],[25,28,["H776"]],[28,30,["H7227"]]]},{"k":11204,"v":[[0,1,["H5414"]],[1,3,["H6258"]],[3,4,["H2451"]],[4,6,["H4093"]],[6,11,["H3318"]],[11,14,["H935"]],[14,15,["H6440"]],[15,16,["H2088"]],[16,17,["H5971"]],[17,18,["H3588"]],[18,19,["H4310"]],[19,21,["H8199"]],[21,22,["H2088","(H853)"]],[22,24,["H5971"]],[24,28,["H1419"]]]},{"k":11205,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,5,["H8010"]],[5,6,["H3282","H834"]],[6,7,["H2063"]],[7,8,["H1961"]],[8,9,["H5973"]],[9,11,["H3824"]],[11,15,["H3808"]],[15,16,["H7592"]],[16,17,["H6239"]],[17,18,["H5233"]],[18,20,["H3519"]],[20,23,["H5315"]],[23,26,["H8130"]],[26,27,["H3808"]],[27,28,["H1571"]],[28,30,["H7592"]],[30,32,["H7227","H3117"]],[32,35,["H7592"]],[35,36,["H2451"]],[36,38,["H4093"]],[38,41,["H834"]],[41,44,["H8199","(H853)"]],[44,46,["H5971"]],[46,47,["H5921"]],[47,48,["H834"]],[48,53,["H4427"]]]},{"k":11206,"v":[[0,1,["H2451"]],[1,3,["H4093"]],[3,5,["H5414"]],[5,11,["H5414"]],[11,13,["H6239"]],[13,15,["H5233"]],[15,17,["H3519"]],[17,19,["H834","H3651"]],[19,20,["H3808"]],[20,23,["H4428"]],[23,25,["H1961"]],[25,26,["H834"]],[26,29,["H6440"]],[29,31,["H3808"]],[31,35,["H310"]],[35,37,["H1961"]],[37,39,["H3651"]]]},{"k":11207,"v":[[0,2,["H8010"]],[2,3,["H935"]],[3,10,["H1116"]],[10,11,["H834"]],[11,14,["H1391"]],[14,16,["H3389"]],[16,18,["H4480","H6440"]],[18,20,["H168"]],[20,23,["H4150"]],[23,25,["H4427"]],[25,26,["H5921"]],[26,27,["H3478"]]]},{"k":11208,"v":[[0,2,["H8010"]],[2,3,["H622"]],[3,4,["H7393"]],[4,6,["H6571"]],[6,9,["H1961"]],[9,11,["H505"]],[11,13,["H702"]],[13,14,["H3967"]],[14,15,["H7393"]],[15,17,["H8147","H6240"]],[17,18,["H505"]],[18,19,["H6571"]],[19,22,["H5117"]],[22,25,["H7393"]],[25,26,["H5892"]],[26,28,["H5973"]],[28,30,["H4428"]],[30,32,["H3389"]]]},{"k":11209,"v":[[0,3,["H4428"]],[3,4,["H5414","(H853)"]],[4,5,["H3701"]],[5,7,["H2091"]],[7,9,["H3389"]],[9,13,["H68"]],[13,16,["H730"]],[16,17,["H5414"]],[17,22,["H8256"]],[22,23,["H834"]],[23,27,["H8219"]],[27,29,["H7230"]]]},{"k":11210,"v":[[0,2,["H8010"]],[2,4,["H5483"]],[4,6,["H4161"]],[6,8,["H4480","H4714"]],[8,11,["H4723"]],[11,13,["H4428"]],[13,14,["H5503"]],[14,15,["H3947"]],[15,18,["H4723"]],[18,21,["H4242"]]]},{"k":11211,"v":[[0,4,["H5927"]],[4,7,["H3318"]],[7,10,["H4480","H4714"]],[10,12,["H4818"]],[12,14,["H8337"]],[14,15,["H3967"]],[15,18,["H3701"]],[18,21,["H5483"]],[21,24,["H3967"]],[24,26,["H2572"]],[26,28,["H3651"]],[28,31,["H3318"]],[31,34,["H3605"]],[34,36,["H4428"]],[36,39,["H2850"]],[39,43,["H4428"]],[43,45,["H758"]],[45,48,["H3027"]]]},{"k":11212,"v":[[0,2,["H8010"]],[2,3,["H559"]],[3,5,["H1129"]],[5,7,["H1004"]],[7,10,["H8034"]],[10,13,["H3068"]],[13,16,["H1004"]],[16,19,["H4438"]]]},{"k":11213,"v":[[0,2,["H8010"]],[2,4,["H5608"]],[4,7,["H7657"]],[7,8,["H505"]],[8,9,["H376"]],[9,12,["H5449"]],[12,14,["H8084"]],[14,15,["H505","(H376)"]],[15,17,["H2672"]],[17,20,["H2022"]],[20,22,["H7969"]],[22,23,["H505"]],[23,25,["H8337"]],[25,26,["H3967"]],[26,28,["H5329","H5921"]],[28,29,[]]]},{"k":11214,"v":[[0,2,["H8010"]],[2,3,["H7971"]],[3,4,["H413"]],[4,5,["H2361"]],[5,7,["H4428"]],[7,9,["H6865"]],[9,10,["H559"]],[10,11,["H834"]],[11,14,["H6213"]],[14,15,["H5973"]],[15,16,["H1732"]],[16,18,["H1"]],[18,21,["H7971"]],[21,23,["H730"]],[23,25,["H1129"]],[25,28,["H1004"]],[28,30,["H3427"]],[30,36,[]]]},{"k":11215,"v":[[0,1,["H2009"]],[1,2,["H589"]],[2,3,["H1129"]],[3,5,["H1004"]],[5,8,["H8034"]],[8,11,["H3068"]],[11,13,["H430"]],[13,15,["H6942"]],[15,21,["H6999"]],[21,22,["H6440"]],[22,24,["H5561"]],[24,25,["H7004"]],[25,29,["H8548"]],[29,30,["H4635"]],[30,35,["H5930"]],[35,36,["H1242"]],[36,38,["H6153"]],[38,41,["H7676"]],[41,46,["H2320"]],[46,51,["H4150"]],[51,54,["H3068"]],[54,56,["H430"]],[56,57,["H2063"]],[57,62,["H5769"]],[62,63,["H5921"]],[63,64,["H3478"]]]},{"k":11216,"v":[[0,3,["H1004"]],[3,4,["H834"]],[4,5,["H589"]],[5,6,["H1129"]],[6,8,["H1419"]],[8,9,["H3588"]],[9,10,["H1419"]],[10,13,["H430"]],[13,15,["H4480","H3605"]],[15,16,["H430"]]]},{"k":11217,"v":[[0,2,["H4310"]],[2,4,["H6113","H3581"]],[4,6,["H1129"]],[6,9,["H1004"]],[9,10,["H3588"]],[10,12,["H8064"]],[12,14,["H8064"]],[14,16,["H8064"]],[16,17,["H3808"]],[17,18,["H3557"]],[18,20,["H4310"]],[20,22,["H589"]],[22,24,["H834"]],[24,27,["H1129"]],[27,30,["H1004"]],[30,32,["H3588","H518"]],[32,35,["H6999"]],[35,36,["H6440"]],[36,37,[]]]},{"k":11218,"v":[[0,1,["H7971"]],[1,3,["H6258"]],[3,6,["H376"]],[6,7,["H2450"]],[7,9,["H6213"]],[9,11,["H2091"]],[11,14,["H3701"]],[14,17,["H5178"]],[17,20,["H1270"]],[20,23,["H710"]],[23,25,["H3758"]],[25,27,["H8504"]],[27,31,["H3045"]],[31,33,["H6605","H6603"]],[33,34,["H5973"]],[34,37,["H2450"]],[37,38,["H834"]],[38,40,["H5973"]],[40,43,["H3063"]],[43,46,["H3389"]],[46,47,["H834"]],[47,48,["H1732"]],[48,50,["H1"]],[50,52,["H3559"]]]},{"k":11219,"v":[[0,1,["H7971"]],[1,4,["H730"]],[4,5,["H6086"]],[5,7,["H1265"]],[7,10,["H418"]],[10,13,["H4480","H3844"]],[13,14,["H3588"]],[14,15,["H589"]],[15,16,["H3045"]],[16,17,["H834"]],[17,19,["H5650"]],[19,21,["H3045"]],[21,23,["H3772"]],[23,24,["H6086"]],[24,26,["H3844"]],[26,28,["H2009"]],[28,30,["H5650"]],[30,33,["H5973"]],[33,35,["H5650"]]]},{"k":11220,"v":[[0,3,["H3559"]],[3,5,["H6086"]],[5,7,["H7230"]],[7,8,["H3588"]],[8,10,["H1004"]],[10,11,["H834"]],[11,12,["H589"]],[12,16,["H1129"]],[16,19,["H6381"]],[19,20,["H1419"]]]},{"k":11221,"v":[[0,2,["H2009"]],[2,5,["H5414"]],[5,8,["H5650"]],[8,10,["H2404"]],[10,12,["H3772"]],[12,13,["H6086"]],[13,14,["H6242"]],[14,15,["H505"]],[15,16,["H3734"]],[16,18,["H4347"]],[18,19,["H2406"]],[19,21,["H6242"]],[21,22,["H505"]],[22,23,["H3734"]],[23,25,["H8184"]],[25,27,["H6242"]],[27,28,["H505"]],[28,29,["H1324"]],[29,31,["H3196"]],[31,33,["H6242"]],[33,34,["H505"]],[34,35,["H1324"]],[35,37,["H8081"]]]},{"k":11222,"v":[[0,2,["H2361"]],[2,4,["H4428"]],[4,6,["H6865"]],[6,7,["H559"]],[7,9,["H3791"]],[9,12,["H7971"]],[12,13,["H413"]],[13,14,["H8010"]],[14,17,["H3068"]],[17,19,["H160","(H853)"]],[19,21,["H5971"]],[21,24,["H5414"]],[24,26,["H4428"]],[26,27,["H5921"]],[27,28,[]]]},{"k":11223,"v":[[0,1,["H2361"]],[1,2,["H559"]],[2,4,["H1288"]],[4,7,["H3068"]],[7,8,["H430"]],[8,10,["H3478"]],[10,11,["H834"]],[11,12,["H6213","(H853)"]],[12,13,["H8064"]],[13,15,["H776"]],[15,16,["H834"]],[16,18,["H5414"]],[18,20,["H1732"]],[20,22,["H4428"]],[22,24,["H2450"]],[24,25,["H1121"]],[25,26,["H3045"]],[26,28,["H7922"]],[28,30,["H998"]],[30,31,["H834"]],[31,33,["H1129"]],[33,35,["H1004"]],[35,38,["H3068"]],[38,41,["H1004"]],[41,44,["H4438"]]]},{"k":11224,"v":[[0,2,["H6258"]],[2,5,["H7971"]],[5,7,["H2450"]],[7,8,["H376"]],[8,9,["H3045"]],[9,11,["H998"]],[11,13,["H2361"]],[13,15,["H1"]]]},{"k":11225,"v":[[0,2,["H1121"]],[2,5,["H802"]],[5,6,["H4480"]],[6,8,["H1323"]],[8,10,["H1835"]],[10,13,["H1"]],[13,16,["H376"]],[16,18,["H6876"]],[18,19,["H3045"]],[19,21,["H6213"]],[21,23,["H2091"]],[23,26,["H3701"]],[26,28,["H5178"]],[28,30,["H1270"]],[30,32,["H68"]],[32,35,["H6086"]],[35,37,["H713"]],[37,39,["H8504"]],[39,43,["H948"]],[43,46,["H3758"]],[46,49,["H6605"]],[49,51,["H3605"]],[51,53,["H6603"]],[53,57,["H2803"]],[57,58,["H3605"]],[58,59,["H4284"]],[59,60,["H834"]],[60,63,["H5414"]],[63,66,["H5973"]],[66,69,["H2450"]],[69,74,["H2450"]],[74,77,["H113"]],[77,78,["H1732"]],[78,80,["H1"]]]},{"k":11226,"v":[[0,1,["H6258"]],[1,4,["H2406"]],[4,7,["H8184"]],[7,9,["H8081"]],[9,12,["H3196"]],[12,13,["H834"]],[13,15,["H113"]],[15,17,["H559"]],[17,21,["H7971"]],[21,24,["H5650"]]]},{"k":11227,"v":[[0,2,["H587"]],[2,4,["H3772"]],[4,5,["H6086"]],[5,7,["H4480"]],[7,8,["H3844"]],[8,12,["H3605"]],[12,14,["H6878"]],[14,18,["H935"]],[18,23,["H7513"]],[23,24,["H5921"]],[24,25,["H3220"]],[25,27,["H3305"]],[27,29,["H859"]],[29,33,["H5927","(H853)"]],[33,35,["H3389"]]]},{"k":11228,"v":[[0,2,["H8010"]],[2,3,["H5608"]],[3,4,["H3605"]],[4,6,["H376","H1616"]],[6,7,["H834"]],[7,11,["H776"]],[11,13,["H3478"]],[13,14,["H310"]],[14,16,["H5610"]],[16,17,["H834"]],[17,18,["H1732"]],[18,20,["H1"]],[20,22,["H5608"]],[22,27,["H4672"]],[27,29,["H3967"]],[29,31,["H2572"]],[31,32,["H505"]],[32,34,["H7969"]],[34,35,["H505"]],[35,37,["H8337"]],[37,38,["H3967"]]]},{"k":11229,"v":[[0,3,["H6213"]],[3,6,["H7657"]],[6,7,["H505"]],[7,8,["H4480"]],[8,14,["H5449"]],[14,16,["H8084"]],[16,17,["H505"]],[17,20,["H2672"]],[20,23,["H2022"]],[23,25,["H7969"]],[25,26,["H505"]],[26,28,["H8337"]],[28,29,["H3967"]],[29,30,["H5329"]],[30,32,["H5647","(H853)"]],[32,34,["H5971"]],[34,36,[]]]},{"k":11230,"v":[[0,2,["H8010"]],[2,3,["H2490"]],[3,5,["H1129","(H853)"]],[5,7,["H1004"]],[7,10,["H3068"]],[10,12,["H3389"]],[12,14,["H2022"]],[14,15,["H4179"]],[15,16,["H834"]],[16,19,["H7200"]],[19,21,["H1732"]],[21,23,["H1"]],[23,26,["H4725"]],[26,27,["H834"]],[27,28,["H1732"]],[28,30,["H3559"]],[30,33,["H1637"]],[33,35,["H771"]],[35,37,["H2983"]]]},{"k":11231,"v":[[0,3,["H2490"]],[3,5,["H1129"]],[5,8,["H8145"]],[8,12,["H8145"]],[12,13,["H2320"]],[13,16,["H702"]],[16,17,["H8141"]],[17,20,["H4438"]]]},{"k":11232,"v":[[0,2,["H428"]],[2,7,["H8010"]],[7,9,["H3245"]],[9,12,["H1129","(H853)"]],[12,15,["H1004"]],[15,17,["H430"]],[17,19,["H753"]],[19,21,["H520"]],[21,24,["H7223"]],[24,25,["H4060"]],[25,27,["H8346"]],[27,28,["H520"]],[28,31,["H7341"]],[31,32,["H6242"]],[32,33,["H520"]]]},{"k":11233,"v":[[0,3,["H197"]],[3,4,["H834"]],[4,6,["H5921"]],[6,8,["H6440"]],[8,13,["H753"]],[13,18,["H5921","H6440"]],[18,20,["H7341"]],[20,23,["H1004"]],[23,24,["H6242"]],[24,25,["H520"]],[25,28,["H1363"]],[28,31,["H3967"]],[31,33,["H6242"]],[33,36,["H6823"]],[36,38,["H4480","H6441"]],[38,40,["H2889"]],[40,41,["H2091"]]]},{"k":11234,"v":[[0,3,["H1419"]],[3,4,["H1004"]],[4,6,["H2645"]],[6,8,["H1265"]],[8,9,["H6086"]],[9,12,["H2645"]],[12,14,["H2896"]],[14,15,["H2091"]],[15,17,["H5927"]],[17,18,["H5921"]],[18,20,["H8561"]],[20,22,["H8333"]]]},{"k":11235,"v":[[0,3,["H6823","(H853)"]],[3,5,["H1004"]],[5,7,["H3368"]],[7,8,["H68"]],[8,10,["H8597"]],[10,13,["H2091"]],[13,15,["H2091"]],[15,17,["H6516"]]]},{"k":11236,"v":[[0,2,["H2645"]],[2,3,["(H853)"]],[3,5,["H1004"]],[5,7,["H6982"]],[7,9,["H5592"]],[9,12,["H7023"]],[12,16,["H1817"]],[16,19,["H2091"]],[19,21,["H6605"]],[21,22,["H3742"]],[22,23,["H5921"]],[23,25,["H7023"]]]},{"k":11237,"v":[[0,3,["H6213","(H853)"]],[3,6,["H6944","H6944"]],[6,7,["H1004"]],[7,9,["H753"]],[9,13,["H5921","H6440"]],[13,15,["H7341"]],[15,18,["H1004"]],[18,19,["H6242"]],[19,20,["H520"]],[20,23,["H7341"]],[23,25,["H6242"]],[25,26,["H520"]],[26,29,["H2645"]],[29,32,["H2896"]],[32,33,["H2091"]],[33,36,["H8337"]],[36,37,["H3967"]],[37,38,["H3603"]]]},{"k":11238,"v":[[0,3,["H4948"]],[3,6,["H4548"]],[6,8,["H2572"]],[8,9,["H8255"]],[9,11,["H2091"]],[11,14,["H2645"]],[14,17,["H5944"]],[17,19,["H2091"]]]},{"k":11239,"v":[[0,5,["H6944","H6944"]],[5,6,["H1004"]],[6,8,["H6213"]],[8,9,["H8147"]],[9,10,["H3742"]],[10,12,["H6816"]],[12,13,["H4639"]],[13,15,["H6823"]],[15,18,["H2091"]]]},{"k":11240,"v":[[0,3,["H3671"]],[3,6,["H3742"]],[6,8,["H6242"]],[8,9,["H520"]],[9,10,["H753"]],[10,11,["H259"]],[11,12,["H3671"]],[12,18,["H2568"]],[18,19,["H520"]],[19,20,["H5060"]],[20,23,["H7023"]],[23,26,["H1004"]],[26,29,["H312"]],[29,30,["H3671"]],[30,33,["H2568"]],[33,34,["H520"]],[34,35,["H5060"]],[35,38,["H3671"]],[38,41,["H312"]],[41,42,["H3742"]]]},{"k":11241,"v":[[0,3,["H3671"]],[3,6,["H259"]],[6,7,["H3742"]],[7,9,["H2568"]],[9,10,["H520"]],[10,11,["H5060"]],[11,14,["H7023"]],[14,17,["H1004"]],[17,20,["H312"]],[20,21,["H3671"]],[21,23,["H2568"]],[23,24,["H520"]],[24,26,["H1695"]],[26,29,["H3671"]],[29,32,["H312"]],[32,33,["H3742"]]]},{"k":11242,"v":[[0,2,["H3671"]],[2,4,["H428"]],[4,5,["H3742"]],[5,8,["H6566"]],[8,9,["H6242"]],[9,10,["H520"]],[10,12,["H1992"]],[12,13,["H5975"]],[13,14,["H5921"]],[14,16,["H7272"]],[16,19,["H6440"]],[19,21,["H1004"]]]},{"k":11243,"v":[[0,3,["H6213","(H853)"]],[3,5,["H6532"]],[5,7,["H8504"]],[7,9,["H713"]],[9,11,["H3758"]],[11,14,["H948"]],[14,16,["H5927"]],[16,17,["H3742"]],[17,18,["H5921"]]]},{"k":11244,"v":[[0,3,["H6213"]],[3,4,["H6440"]],[4,6,["H1004"]],[6,7,["H8147"]],[7,8,["H5982"]],[8,10,["H7970"]],[10,12,["H2568"]],[12,13,["H520"]],[13,14,["H753"]],[14,17,["H6858"]],[17,18,["H834"]],[18,20,["H5921"]],[20,22,["H7218"]],[22,28,["H2568"]],[28,29,["H520"]]]},{"k":11245,"v":[[0,3,["H6213"]],[3,4,["H8333"]],[4,8,["H1687"]],[8,10,["H5414"]],[10,12,["H5921"]],[12,14,["H7218"]],[14,17,["H5982"]],[17,19,["H6213"]],[19,21,["H3967"]],[21,22,["H7416"]],[22,24,["H5414"]],[24,28,["H8333"]]]},{"k":11246,"v":[[0,4,["H6965","(H853)"]],[4,6,["H5982"]],[6,7,["H5921","H6440"]],[7,9,["H1964"]],[9,10,["H259"]],[10,14,["H4480","H3225"]],[14,17,["H259"]],[17,20,["H4480","H8040"]],[20,22,["H7121"]],[22,24,["H8034"]],[24,30,["H3227"]],[30,31,["H3199"]],[31,34,["H8034"]],[34,39,["H8042"]],[39,40,["H1162"]]]},{"k":11247,"v":[[0,3,["H6213"]],[3,5,["H4196"]],[5,7,["H5178"]],[7,8,["H6242"]],[8,9,["H520"]],[9,11,["H753"]],[11,14,["H6242"]],[14,15,["H520"]],[15,17,["H7341"]],[17,20,["H6235"]],[20,21,["H520"]],[21,23,["H6967"]],[23,24,[]]]},{"k":11248,"v":[[0,3,["H6213","(H853)"]],[3,5,["H3332"]],[5,6,["H3220"]],[6,8,["H6235"]],[8,9,["H520"]],[9,11,["H4480","H8193"]],[11,12,["H413"]],[12,13,["H8193"]],[13,14,["H5696"]],[14,16,["H5439"]],[16,18,["H2568"]],[18,19,["H520"]],[19,21,["H6967"]],[21,25,["H6957"]],[25,27,["H7970"]],[27,28,["H520"]],[28,30,["H5437"]],[30,33,["H5439"]]]},{"k":11249,"v":[[0,2,["H8478"]],[2,6,["H1823"]],[6,8,["H1241"]],[8,11,["H5437"]],[11,14,["H5439","H5439"]],[14,15,["H6235"]],[15,18,["H520"]],[18,19,["H5362","(H853)"]],[19,21,["H3220"]],[21,23,["H5439"]],[23,24,["H8147"]],[24,25,["H2905"]],[25,27,["H1241"]],[27,29,["H3332"]],[29,33,["H4166"]]]},{"k":11250,"v":[[0,2,["H5975"]],[2,3,["H5921"]],[3,4,["H8147","H6240"]],[4,5,["H1241"]],[5,6,["H7969"]],[6,7,["H6437"]],[7,10,["H6828"]],[10,12,["H7969"]],[12,13,["H6437"]],[13,16,["H3220"]],[16,18,["H7969"]],[18,19,["H6437"]],[19,22,["H5045"]],[22,24,["H7969"]],[24,25,["H6437"]],[25,28,["H4217"]],[28,31,["H3220"]],[31,34,["H4480","H4605"]],[34,35,["H5921"]],[35,38,["H3605"]],[38,41,["H268"]],[41,43,["H1004"]]]},{"k":11251,"v":[[0,3,["H5672"]],[3,8,["H2947"]],[8,11,["H8193"]],[11,16,["H4639"]],[16,19,["H8193"]],[19,22,["H3563"]],[22,24,["H6525"]],[24,26,["H7799"]],[26,29,["H2388"]],[29,31,["H3557"]],[31,32,["H7969"]],[32,33,["H505"]],[33,34,["H1324"]]]},{"k":11252,"v":[[0,2,["H6213"]],[2,4,["H6235"]],[4,5,["H3595"]],[5,7,["H5414"]],[7,8,["H2568"]],[8,12,["H4480","H3225"]],[12,14,["H2568"]],[14,17,["H4480","H8040"]],[17,19,["H7364"]],[19,21,["(H853)"]],[21,26,["H4639"]],[26,30,["H5930"]],[30,32,["H1740"]],[32,37,["H3220"]],[37,41,["H3548"]],[41,43,["H7364"]],[43,44,[]]]},{"k":11253,"v":[[0,3,["H6213","(H853)"]],[3,4,["H6235"]],[4,5,["H4501"]],[5,7,["H2091"]],[7,11,["H4941"]],[11,13,["H5414"]],[13,17,["H1964"]],[17,18,["H2568"]],[18,22,["H4480","H3225"]],[22,24,["H2568"]],[24,27,["H4480","H8040"]]]},{"k":11254,"v":[[0,2,["H6213"]],[2,4,["H6235"]],[4,5,["H7979"]],[5,7,["H5117"]],[7,11,["H1964"]],[11,12,["H2568"]],[12,16,["H4480","H3225"]],[16,18,["H2568"]],[18,21,["H4480","H8040"]],[21,24,["H6213"]],[24,26,["H3967"]],[26,27,["H4219"]],[27,29,["H2091"]]]},{"k":11255,"v":[[0,3,["H6213"]],[3,5,["H2691"]],[5,8,["H3548"]],[8,11,["H1419"]],[11,12,["H5835"]],[12,14,["H1817"]],[14,17,["H5835"]],[17,19,["H6823"]],[19,21,["H1817"]],[21,25,["H5178"]]]},{"k":11256,"v":[[0,3,["H5414"]],[3,5,["H3220"]],[5,8,["H3233"]],[8,9,["H4480","H3802"]],[9,13,["H6924"]],[13,15,["H4480","H4136"]],[15,17,["H5045"]]]},{"k":11257,"v":[[0,2,["H2361"]],[2,3,["H6213","(H853)"]],[3,5,["H5518"]],[5,8,["H3257"]],[8,11,["H4219"]],[11,13,["H2361"]],[13,16,["H3615","H6213","(H853)","H4399"]],[16,17,["H834"]],[17,21,["H6213"]],[21,23,["H4428"]],[23,24,["H8010"]],[24,27,["H1004"]],[27,29,["H430"]]]},{"k":11258,"v":[[0,4,["H8147"]],[4,5,["H5982"]],[5,8,["H1543"]],[8,11,["H3805"]],[11,14,["H5921"]],[14,16,["H7218"]],[16,19,["H8147"]],[19,20,["H5982"]],[20,23,["H8147"]],[23,24,["H7639"]],[24,26,["H3680","(H853)"]],[26,28,["H8147"]],[28,29,["H1543"]],[29,32,["H3805"]],[32,33,["H834"]],[33,35,["H5921"]],[35,37,["H7218"]],[37,40,["H5982"]]]},{"k":11259,"v":[[0,2,["H702"]],[2,3,["H3967"]],[3,4,["H7416"]],[4,7,["H8147"]],[7,8,["H7639"]],[8,9,["H8147"]],[9,10,["H2905"]],[10,12,["H7416"]],[12,14,["H259"]],[14,15,["H7639"]],[15,17,["H3680","(H853)"]],[17,19,["H8147"]],[19,20,["H1543"]],[20,23,["H3805"]],[23,24,["H834"]],[24,26,["H5921","H6440"]],[26,28,["H5982"]]]},{"k":11260,"v":[[0,2,["H6213"]],[2,4,["H4350"]],[4,6,["H3595"]],[6,7,["H6213"]],[7,9,["H5921"]],[9,11,["H4350"]]]},{"k":11261,"v":[[0,0,["(H853)"]],[0,1,["H259"]],[1,2,["H3220"]],[2,4,["H8147","H6240"]],[4,5,["H1241"]],[5,6,["H8478"]],[6,7,[]]]},{"k":11262,"v":[[0,2,["H5518"]],[2,6,["H3257"]],[6,9,["H4207"]],[9,11,["H3605"]],[11,13,["H3627"]],[13,15,["H2361"]],[15,17,["H1"]],[17,18,["H6213"]],[18,20,["H4428"]],[20,21,["H8010"]],[21,24,["H1004"]],[24,27,["H3068"]],[27,29,["H4838"]],[29,30,["H5178"]]]},{"k":11263,"v":[[0,3,["H3603"]],[3,5,["H3383"]],[5,8,["H4428"]],[8,9,["H3332"]],[9,13,["H4568"]],[13,14,["H127"]],[14,15,["H996"]],[15,16,["H5523"]],[16,18,["H6868"]]]},{"k":11264,"v":[[0,2,["H8010"]],[2,3,["H6213"]],[3,4,["H3605"]],[4,5,["H428"]],[5,6,["H3627"]],[6,8,["H3966"]],[8,9,["H7230"]],[9,10,["H3588"]],[10,12,["H4948"]],[12,15,["H5178"]],[15,17,["H3808"]],[17,20,["H2713"]]]},{"k":11265,"v":[[0,2,["H8010"]],[2,3,["H6213","(H853)"]],[3,4,["H3605"]],[4,6,["H3627"]],[6,7,["H834"]],[7,11,["H1004"]],[11,13,["H430"]],[13,15,["H2091"]],[15,16,["H4196"]],[16,20,["H7979"]],[20,21,["H5921"]],[21,23,["H3899","H6440"]],[23,25,[]]]},{"k":11266,"v":[[0,3,["H4501"]],[3,6,["H5216"]],[6,10,["H1197"]],[10,13,["H4941"]],[13,14,["H6440"]],[14,16,["H1687"]],[16,18,["H5462"]],[18,19,["H2091"]]]},{"k":11267,"v":[[0,3,["H6525"]],[3,6,["H5216"]],[6,9,["H4457"]],[9,13,["H2091"]],[13,15,["H1931"]],[15,16,["H4357"]],[16,17,["H2091"]]]},{"k":11268,"v":[[0,3,["H4212"]],[3,6,["H4219"]],[6,9,["H3709"]],[9,12,["H4289"]],[12,14,["H5462"]],[14,15,["H2091"]],[15,18,["H6607"]],[18,21,["H1004"]],[21,23,["H6442"]],[23,24,["H1817"]],[24,29,["H6944","H6944"]],[29,33,["H1817"]],[33,36,["H1004"]],[36,39,["H1964"]],[39,42,["H2091"]]]},{"k":11269,"v":[[0,2,["H3605"]],[2,4,["H4399"]],[4,5,["H834"]],[5,6,["H8010"]],[6,7,["H6213"]],[7,10,["H1004"]],[10,13,["H3068"]],[13,15,["H7999"]],[15,17,["H8010"]],[17,19,["H935","(H853)"]],[19,22,["H6944"]],[22,24,["H1732"]],[24,26,["H1"]],[26,28,["H6944"]],[28,31,["H3701"]],[31,34,["H2091"]],[34,36,["H3605"]],[36,38,["H3627"]],[38,39,["H5414"]],[39,43,["H214"]],[43,46,["H1004"]],[46,48,["H430"]]]},{"k":11270,"v":[[0,1,["H227"]],[1,2,["H8010"]],[2,3,["H6950","(H853)"]],[3,5,["H2205"]],[5,7,["H3478"]],[7,9,["H3605"]],[9,11,["H7218"]],[11,14,["H4294"]],[14,16,["H5387"]],[16,19,["H1"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,25,["H413"]],[25,26,["H3389"]],[26,29,["H5927","(H853)"]],[29,31,["H727"]],[31,34,["H1285"]],[34,37,["H3068"]],[37,41,["H4480","H5892"]],[41,43,["H1732"]],[43,44,["H1931"]],[44,46,["H6726"]]]},{"k":11271,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,6,["H3478"]],[6,8,["H6950"]],[8,9,["H413"]],[9,11,["H4428"]],[11,14,["H2282"]],[14,15,["H1931"]],[15,19,["H7637"]],[19,20,["H2320"]]]},{"k":11272,"v":[[0,2,["H3605"]],[2,4,["H2205"]],[4,6,["H3478"]],[6,7,["H935"]],[7,10,["H3881"]],[10,12,["H5375","(H853)"]],[12,14,["H727"]]]},{"k":11273,"v":[[0,4,["H5927","(H853)"]],[4,6,["H727"]],[6,9,["H168"]],[9,12,["H4150"]],[12,14,["H3605"]],[14,16,["H6944"]],[16,17,["H3627"]],[17,18,["H834"]],[18,22,["H168"]],[22,26,["H3548"]],[26,29,["H3881"]],[29,31,["H5927"]]]},{"k":11274,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,5,["H3605"]],[5,7,["H5712"]],[7,9,["H3478"]],[9,12,["H3259"]],[12,13,["H5921"]],[13,15,["H6440"]],[15,17,["H727"]],[17,18,["H2076"]],[18,19,["H6629"]],[19,21,["H1241"]],[21,22,["H834"]],[22,24,["H3808"]],[24,26,["H5608"]],[26,27,["H3808"]],[27,28,["H4487"]],[28,30,["H4480","H7230"]]]},{"k":11275,"v":[[0,3,["H3548"]],[3,5,["H935","(H853)"]],[5,7,["H727"]],[7,10,["H1285"]],[10,13,["H3068"]],[13,14,["H413"]],[14,16,["H4725"]],[16,17,["H413"]],[17,19,["H1687"]],[19,22,["H1004"]],[22,23,["H413"]],[23,26,["H6944","H6944"]],[26,29,["H413","H8478"]],[29,31,["H3671"]],[31,34,["H3742"]]]},{"k":11276,"v":[[0,3,["H3742"]],[3,5,["H1961","H6566"]],[5,7,["H3671"]],[7,8,["H5921"]],[8,10,["H4725"]],[10,13,["H727"]],[13,16,["H3742"]],[16,17,["H3680","H5921"]],[17,19,["H727"]],[19,22,["H905"]],[22,24,["H4480","H4605"]]]},{"k":11277,"v":[[0,4,["H748"]],[4,6,["H905"]],[6,12,["H7218"]],[12,15,["H905"]],[15,17,["H7200"]],[17,18,["H4480"]],[18,20,["H727"]],[20,21,["H5921","H6440"]],[21,23,["H1687"]],[23,27,["H3808"]],[27,28,["H7200"]],[28,29,["H2351"]],[29,31,["H8033"]],[31,33,["H1961"]],[33,34,["H5704"]],[34,35,["H2088"]],[35,36,["H3117"]]]},{"k":11278,"v":[[0,3,["H369"]],[3,6,["H727"]],[6,7,["H7535"]],[7,9,["H8147"]],[9,10,["H3871"]],[10,11,["H834"]],[11,12,["H4872"]],[12,13,["H5414"]],[13,16,["H2722"]],[16,17,["H834"]],[17,19,["H3068"]],[19,20,["H3772"]],[20,23,["H5973"]],[23,25,["H1121"]],[25,27,["H3478"]],[27,31,["H3318"]],[31,33,["H4480","H4714"]]]},{"k":11279,"v":[[0,5,["H1961"]],[5,8,["H3548"]],[8,11,["H3318"]],[11,12,["H4480"]],[12,14,["H6944"]],[14,16,["H3588"]],[16,17,["H3605"]],[17,19,["H3548"]],[19,22,["H4672"]],[22,24,["H6942"]],[24,27,["H369"]],[27,29,["H8104"]],[29,31,["H4256"]]]},{"k":11280,"v":[[0,3,["H3881"]],[3,7,["H7891"]],[7,8,["H3605"]],[8,12,["H623"]],[12,14,["H1968"]],[14,16,["H3038"]],[16,19,["H1121"]],[19,22,["H251"]],[22,24,["H3847"]],[24,27,["H948"]],[27,29,["H4700"]],[29,31,["H5035"]],[31,33,["H3658"]],[33,34,["H5975"]],[34,38,["H4217"]],[38,41,["H4196"]],[41,43,["H5973"]],[43,46,["H3967"]],[46,48,["H6242"]],[48,49,["H3548"]],[49,50,["H2690"]],[50,52,["H2689"]]]},{"k":11281,"v":[[0,5,["H1961"]],[5,8,["H2690"]],[8,10,["H7891"]],[10,13,["H259"]],[13,16,["H259"]],[16,17,["H6963"]],[17,20,["H8085"]],[20,22,["H1984"]],[22,24,["H3034"]],[24,26,["H3068"]],[26,31,["H7311"]],[31,33,["H6963"]],[33,36,["H2689"]],[36,38,["H4700"]],[38,40,["H3627"]],[40,42,["H7892"]],[42,44,["H1984"]],[44,46,["H3068"]],[46,48,["H3588"]],[48,51,["H2896"]],[51,52,["H3588"]],[52,54,["H2617"]],[54,57,["H5769"]],[57,61,["H1004"]],[61,63,["H4390"]],[63,66,["H6051"]],[66,69,["H1004"]],[69,72,["H3068"]]]},{"k":11282,"v":[[0,4,["H3548"]],[4,5,["H3201"]],[5,6,["H3808"]],[6,7,["H5975"]],[7,9,["H8334"]],[9,12,["H4480","H6440"]],[12,14,["H6051"]],[14,15,["H3588"]],[15,17,["H3519"]],[17,20,["H3068"]],[20,22,["H4390","(H853)"]],[22,24,["H1004"]],[24,26,["H430"]]]},{"k":11283,"v":[[0,1,["H227"]],[1,2,["H559"]],[2,3,["H8010"]],[3,5,["H3068"]],[5,7,["H559"]],[7,11,["H7931"]],[11,15,["H6205"]]]},{"k":11284,"v":[[0,2,["H589"]],[2,4,["H1129"]],[4,6,["H1004"]],[6,8,["H2073"]],[8,13,["H4349"]],[13,16,["H3427"]],[16,18,["H5769"]]]},{"k":11285,"v":[[0,3,["H4428"]],[3,4,["H5437","(H853)"]],[4,6,["H6440"]],[6,8,["H1288","(H853)"]],[8,10,["H3605"]],[10,11,["H6951"]],[11,13,["H3478"]],[13,15,["H3605"]],[15,17,["H6951"]],[17,19,["H3478"]],[19,20,["H5975"]]]},{"k":11286,"v":[[0,3,["H559"]],[3,4,["H1288"]],[4,7,["H3068"]],[7,8,["H430"]],[8,10,["H3478"]],[10,15,["H3027"]],[15,16,["H4390"]],[16,18,["H834"]],[18,20,["H1696"]],[20,23,["H6310"]],[23,24,["H854"]],[24,26,["H1"]],[26,27,["H1732"]],[27,28,["H559"]]]},{"k":11287,"v":[[0,1,["H4480"]],[1,3,["H3117"]],[3,4,["H834"]],[4,7,["H3318","(H853)"]],[7,9,["H5971"]],[9,13,["H4480","H776"]],[13,15,["H4714"]],[15,17,["H977"]],[17,18,["H3808"]],[18,19,["H5892"]],[19,21,["H4480","H3605"]],[21,23,["H7626"]],[23,25,["H3478"]],[25,27,["H1129"]],[27,29,["H1004"]],[29,33,["H8034"]],[33,35,["H1961"]],[35,36,["H8033"]],[36,37,["H3808"]],[37,38,["H977"]],[38,41,["H376"]],[41,43,["H1961"]],[43,45,["H5057"]],[45,46,["H5921"]],[46,48,["H5971"]],[48,49,["H3478"]]]},{"k":11288,"v":[[0,4,["H977"]],[4,5,["H3389"]],[5,8,["H8034"]],[8,10,["H1961"]],[10,11,["H8033"]],[11,14,["H977"]],[14,15,["H1732"]],[15,17,["H1961"]],[17,18,["H5921"]],[18,20,["H5971"]],[20,21,["H3478"]]]},{"k":11289,"v":[[0,3,["H1961"]],[3,4,["H5973"]],[4,6,["H3824"]],[6,8,["H1732"]],[8,10,["H1"]],[10,12,["H1129"]],[12,14,["H1004"]],[14,17,["H8034"]],[17,20,["H3068"]],[20,21,["H430"]],[21,23,["H3478"]]]},{"k":11290,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H1732"]],[6,8,["H1"]],[8,9,["H3588","H834"]],[9,12,["H1961"]],[12,13,["H5973"]],[13,15,["H3824"]],[15,17,["H1129"]],[17,19,["H1004"]],[19,22,["H8034"]],[22,25,["H2895"]],[25,27,["H3588"]],[27,29,["H1961"]],[29,30,["H5973"]],[30,32,["H3824"]]]},{"k":11291,"v":[[0,1,["H7535"]],[1,2,["H859"]],[2,4,["H3808"]],[4,5,["H1129"]],[5,7,["H1004"]],[7,8,["H3588"]],[8,10,["H1121"]],[10,14,["H3318"]],[14,16,["H4480"]],[16,18,["H2504"]],[18,19,["H1931"]],[19,21,["H1129"]],[21,23,["H1004"]],[23,26,["H8034"]]]},{"k":11292,"v":[[0,2,["H3068"]],[2,5,["H6965","(H853)"]],[5,7,["H1697"]],[7,8,["H834"]],[8,11,["H1696"]],[11,16,["H6965"]],[16,19,["H8478"]],[19,21,["H1732"]],[21,23,["H1"]],[23,26,["H3427"]],[26,27,["H5921"]],[27,29,["H3678"]],[29,31,["H3478"]],[31,32,["H834"]],[32,34,["H3068"]],[34,35,["H1696"]],[35,38,["H1129"]],[38,40,["H1004"]],[40,43,["H8034"]],[43,46,["H3068"]],[46,47,["H430"]],[47,49,["H3478"]]]},{"k":11293,"v":[[0,3,["H8033"]],[3,6,["H7760","(H853)"]],[6,8,["H727"]],[8,9,["H834","H8033"]],[9,12,["H1285"]],[12,15,["H3068"]],[15,16,["H834"]],[16,18,["H3772"]],[18,19,["H5973"]],[19,21,["H1121"]],[21,23,["H3478"]]]},{"k":11294,"v":[[0,3,["H5975"]],[3,4,["H6440"]],[4,6,["H4196"]],[6,9,["H3068"]],[9,13,["H5048"]],[13,14,["H3605"]],[14,16,["H6951"]],[16,18,["H3478"]],[18,21,["H6566"]],[21,23,["H3709"]]]},{"k":11295,"v":[[0,1,["H3588"]],[1,2,["H8010"]],[2,4,["H6213"]],[4,6,["H5178"]],[6,7,["H3595"]],[7,9,["H2568"]],[9,10,["H520"]],[10,11,["H753"]],[11,13,["H2568"]],[13,14,["H520"]],[14,15,["H7341"]],[15,17,["H7969"]],[17,18,["H520"]],[18,19,["H6967"]],[19,22,["H5414"]],[22,26,["H8432"]],[26,29,["H5835"]],[29,31,["H5921"]],[31,34,["H5975"]],[34,37,["H1288"]],[37,38,["H5921"]],[38,40,["H1290"]],[40,41,["H5048"]],[41,42,["H3605"]],[42,44,["H6951"]],[44,46,["H3478"]],[46,49,["H6566"]],[49,51,["H3709"]],[51,53,["H8064"]]]},{"k":11296,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,10,["H369"]],[10,11,["H430"]],[11,13,["H3644"]],[13,16,["H8064"]],[16,20,["H776"]],[20,22,["H8104"]],[22,23,["H1285"]],[23,26,["H2617"]],[26,29,["H5650"]],[29,31,["H1980"]],[31,32,["H6440"]],[32,35,["H3605"]],[35,37,["H3820"]]]},{"k":11297,"v":[[0,2,["H834"]],[2,4,["H8104"]],[4,7,["H5650"]],[7,8,["H1732"]],[8,10,["H1","(H853)"]],[10,12,["H834"]],[12,15,["H1696"]],[15,18,["H1696"]],[18,21,["H6310"]],[21,24,["H4390"]],[24,28,["H3027"]],[28,32,["H2088"]],[32,33,["H3117"]]]},{"k":11298,"v":[[0,1,["H6258"]],[1,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,8,["H8104"]],[8,11,["H5650"]],[11,12,["H1732"]],[12,14,["H1","(H853)"]],[14,16,["H834"]],[16,19,["H1696"]],[19,21,["H559"]],[21,24,["H3808"]],[24,25,["H3772"]],[25,28,["H376"]],[28,31,["H4480","H6440"]],[31,33,["H3427"]],[33,34,["H5921"]],[34,36,["H3678"]],[36,38,["H3478"]],[38,40,["H7535"]],[40,43,["H1121"]],[43,45,["H8104","(H853)"]],[45,48,["H1870"]],[48,50,["H1980"]],[50,53,["H8451"]],[53,54,["H834"]],[54,57,["H1980"]],[57,58,["H6440"]],[58,59,[]]]},{"k":11299,"v":[[0,1,["H6258"]],[1,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,10,["H1697"]],[10,12,["H539"]],[12,13,["H834"]],[13,16,["H1696"]],[16,19,["H5650"]],[19,20,["H1732"]]]},{"k":11300,"v":[[0,1,["H3588"]],[1,3,["H430"]],[3,6,["H552"]],[6,7,["H3427"]],[7,8,["H854"]],[8,9,["H120"]],[9,10,["H5921"]],[10,12,["H776"]],[12,13,["H2009"]],[13,14,["H8064"]],[14,17,["H8064"]],[17,19,["H8064"]],[19,20,["H3808"]],[20,21,["H3557"]],[21,25,["H637"]],[25,26,["H2088"]],[26,27,["H1004"]],[27,28,["H834"]],[28,31,["H1129"]]]},{"k":11301,"v":[[0,2,["H6437"]],[2,4,["H413"]],[4,6,["H8605"]],[6,9,["H5650"]],[9,11,["H413"]],[11,13,["H8467"]],[13,15,["H3068"]],[15,17,["H430"]],[17,19,["H8085"]],[19,20,["H413"]],[20,22,["H7440"]],[22,25,["H8605"]],[25,26,["H834"]],[26,28,["H5650"]],[28,29,["H6419"]],[29,30,["H6440"]],[30,31,[]]]},{"k":11302,"v":[[0,3,["H5869"]],[3,5,["H1961"]],[5,6,["H6605"]],[6,7,["H413"]],[7,8,["H2088"]],[8,9,["H1004"]],[9,10,["H3119"]],[10,12,["H3915"]],[12,13,["H413"]],[13,15,["H4725"]],[15,16,["H834"]],[16,19,["H559"]],[19,23,["H7760"]],[23,25,["H8034"]],[25,26,["H8033"]],[26,28,["H8085"]],[28,29,["H413"]],[29,31,["H8605"]],[31,32,["H834"]],[32,34,["H5650"]],[34,35,["H6419"]],[35,36,["H413"]],[36,37,["H2088"]],[37,38,["H4725"]]]},{"k":11303,"v":[[0,1,["H8085"]],[1,3,["H413"]],[3,5,["H8469"]],[5,8,["H5650"]],[8,12,["H5971"]],[12,13,["H3478"]],[13,14,["H834"]],[14,17,["H6419"]],[17,18,["H413"]],[18,19,["H2088"]],[19,20,["H4725"]],[20,21,["H8085"]],[21,22,["H859"]],[22,25,["H3427"]],[25,26,["H4480","H4725"]],[26,28,["H4480"]],[28,29,["H8064"]],[29,33,["H8085"]],[33,34,["H5545"]]]},{"k":11304,"v":[[0,1,["H518"]],[1,3,["H376"]],[3,4,["H2398"]],[4,7,["H7453"]],[7,10,["H423"]],[10,12,["H5375"]],[12,18,["H422"]],[18,21,["H423"]],[21,22,["H935"]],[22,23,["H6440"]],[23,25,["H4196"]],[25,27,["H2088"]],[27,28,["H1004"]]]},{"k":11305,"v":[[0,2,["H8085"]],[2,3,["H859"]],[3,4,["H4480"]],[4,5,["H8064"]],[5,7,["H6213"]],[7,9,["H8199","(H853)"]],[9,11,["H5650"]],[11,13,["H7725"]],[13,15,["H7563"]],[15,17,["H5414"]],[17,19,["H1870"]],[19,23,["H7218"]],[23,26,["H6663"]],[26,28,["H6662"]],[28,30,["H5414"]],[30,35,["H6666"]]]},{"k":11306,"v":[[0,2,["H518"]],[2,4,["H5971"]],[4,5,["H3478"]],[5,10,["H5062"]],[10,11,["H6440"]],[11,13,["H341"]],[13,14,["H3588"]],[14,17,["H2398"]],[17,22,["H7725"]],[22,24,["H3034","(H853)"]],[24,26,["H8034"]],[26,28,["H6419"]],[28,31,["H2603"]],[31,32,["H6440"]],[32,35,["H2088"]],[35,36,["H1004"]]]},{"k":11307,"v":[[0,2,["H8085"]],[2,3,["H859"]],[3,4,["H4480"]],[4,6,["H8064"]],[6,8,["H5545"]],[8,10,["H2403"]],[10,13,["H5971"]],[13,14,["H3478"]],[14,18,["H7725"]],[18,19,["H413"]],[19,21,["H127"]],[21,22,["H834"]],[22,24,["H5414"]],[24,30,["H1"]]]},{"k":11308,"v":[[0,3,["H8064"]],[3,6,["H6113"]],[6,9,["H1961"]],[9,10,["H3808"]],[10,11,["H4306"]],[11,12,["H3588"]],[12,15,["H2398"]],[15,21,["H6419"]],[21,22,["H413"]],[22,23,["H2088"]],[23,24,["H4725"]],[24,26,["H3034","(H853)"]],[26,28,["H8034"]],[28,30,["H7725"]],[30,33,["H4480","H2403"]],[33,34,["H3588"]],[34,37,["H6031"]],[37,38,[]]]},{"k":11309,"v":[[0,2,["H8085"]],[2,3,["H859"]],[3,5,["H8064"]],[5,7,["H5545"]],[7,9,["H2403"]],[9,12,["H5650"]],[12,16,["H5971"]],[16,17,["H3478"]],[17,18,["H3588"]],[18,21,["H3384"]],[21,24,["H2896"]],[24,25,["H1870"]],[25,26,["H834"]],[26,29,["H1980"]],[29,31,["H5414"]],[31,32,["H4306"]],[32,33,["H5921"]],[33,35,["H776"]],[35,36,["H834"]],[36,39,["H5414"]],[39,42,["H5971"]],[42,45,["H5159"]]]},{"k":11310,"v":[[0,1,["H3588"]],[1,3,["H1961"]],[3,4,["H7458"]],[4,7,["H776"]],[7,8,["H3588"]],[8,10,["H1961"]],[10,11,["H1698"]],[11,12,["H3588"]],[12,14,["H1961"]],[14,15,["H7711"]],[15,17,["H3420"]],[17,18,["H697"]],[18,20,["H2625"]],[20,21,["H3588"]],[21,23,["H341"]],[23,24,["H6887"]],[24,28,["H8179"]],[28,31,["H776"]],[31,32,["H3605"]],[32,33,["H5061"]],[33,35,["H3605"]],[35,36,["H4245"]],[36,38,[]]]},{"k":11311,"v":[[0,2,["H3605"]],[2,3,["H8605"]],[3,5,["H3605"]],[5,6,["H8467"]],[6,7,["H834"]],[7,10,["H1961"]],[10,12,["H3605"]],[12,13,["H120"]],[13,16,["H3605"]],[16,18,["H5971"]],[18,19,["H3478"]],[19,20,["H834"]],[20,22,["H376"]],[22,24,["H3045"]],[24,27,["H5061"]],[27,31,["H4341"]],[31,35,["H6566"]],[35,37,["H3709"]],[37,38,["H413"]],[38,39,["H2088"]],[39,40,["H1004"]]]},{"k":11312,"v":[[0,2,["H8085"]],[2,3,["H859"]],[3,4,["H4480"]],[4,5,["H8064"]],[5,7,["H3427"]],[7,8,["H4349"]],[8,10,["H5545"]],[10,12,["H5414"]],[12,15,["H376"]],[15,18,["H3605"]],[18,20,["H1870","(H853)"]],[20,22,["H3824"]],[22,24,["H3045"]],[24,25,["H3588"]],[25,26,["H859"]],[26,27,["H905"]],[27,28,["H3045","(H853)"]],[28,30,["H3824"]],[30,33,["H1121"]],[33,35,["H120"]]]},{"k":11313,"v":[[0,1,["H4616"]],[1,4,["H3372"]],[4,7,["H1980"]],[7,10,["H1870"]],[10,12,["H3605","H3117"]],[12,13,["H834"]],[13,14,["H1992"]],[14,15,["H2416"]],[15,16,["H5921","H6440"]],[16,18,["H127"]],[18,19,["H834"]],[19,21,["H5414"]],[21,24,["H1"]]]},{"k":11314,"v":[[0,1,["H1571"]],[1,2,["H413"]],[2,4,["H5237"]],[4,5,["H834"]],[5,7,["H3808"]],[7,10,["H4480","H5971"]],[10,11,["H3478"]],[11,14,["H935"]],[14,17,["H7350"]],[17,18,["H4480","H776"]],[18,23,["H4616","H1419","H8034"]],[23,26,["H2389"]],[26,27,["H3027"]],[27,31,["H5186"]],[31,32,["H2220"]],[32,35,["H935"]],[35,37,["H6419"]],[37,38,["H413"]],[38,39,["H2088"]],[39,40,["H1004"]]]},{"k":11315,"v":[[0,2,["H8085"]],[2,3,["H859"]],[3,4,["H4480"]],[4,6,["H8064"]],[6,10,["H3427"]],[10,11,["H4480","H4349"]],[11,13,["H6213"]],[13,16,["H3605"]],[16,17,["H834"]],[17,19,["H5237"]],[19,20,["H7121"]],[20,21,["H413"]],[21,24,["H4616"]],[24,25,["H3605"]],[25,26,["H5971"]],[26,29,["H776"]],[29,31,["H3045","(H853)"]],[31,33,["H8034"]],[33,35,["H3372"]],[35,40,["H5971"]],[40,41,["H3478"]],[41,44,["H3045"]],[44,45,["H3588"]],[45,46,["H2088"]],[46,47,["H1004"]],[47,48,["H834"]],[48,51,["H1129"]],[51,53,["H7121"]],[53,56,["H8034"]]]},{"k":11316,"v":[[0,1,["H3588"]],[1,3,["H5971"]],[3,5,["H3318"]],[5,7,["H4421"]],[7,8,["H5921"]],[8,10,["H341"]],[10,13,["H1870"]],[13,14,["H834"]],[14,17,["H7971"]],[17,21,["H6419"]],[21,22,["H413"]],[22,24,["H1870"]],[24,25,["H2063"]],[25,26,["H5892"]],[26,27,["H834"]],[27,30,["H977"]],[30,33,["H1004"]],[33,34,["H834"]],[34,37,["H1129"]],[37,40,["H8034"]]]},{"k":11317,"v":[[0,2,["H8085"]],[2,4,["H4480"]],[4,6,["H8064","(H853)"]],[6,8,["H8605"]],[8,11,["H8467"]],[11,13,["H6213"]],[13,15,["H4941"]]]},{"k":11318,"v":[[0,1,["H3588"]],[1,3,["H2398"]],[3,6,["H3588"]],[6,9,["H369"]],[9,10,["H120"]],[10,11,["H834"]],[11,12,["H2398"]],[12,13,["H3808"]],[13,17,["H599"]],[17,21,["H5414"]],[21,24,["H6440"]],[24,26,["H341"]],[26,32,["H7617","H7617"]],[32,33,["H413"]],[33,35,["H776"]],[35,37,["H7350"]],[37,38,["H176"]],[38,39,["H7138"]]]},{"k":11319,"v":[[0,5,["H7725","H413","H3824"]],[5,8,["H776"]],[8,9,["H834","H8033"]],[9,13,["H7617"]],[13,15,["H7725"]],[15,17,["H2603"]],[17,18,["H413"]],[18,22,["H776"]],[22,25,["H7628"]],[25,26,["H559"]],[26,29,["H2398"]],[29,33,["H5753"]],[33,37,["H7561"]]]},{"k":11320,"v":[[0,3,["H7725"]],[3,4,["H413"]],[4,7,["H3605"]],[7,9,["H3820"]],[9,12,["H3605"]],[12,14,["H5315"]],[14,17,["H776"]],[17,20,["H7628"]],[20,21,["H834"]],[21,26,["H7617","(H853)"]],[26,28,["H6419"]],[28,29,["H1870"]],[29,31,["H776"]],[31,32,["H834"]],[32,34,["H5414"]],[34,37,["H1"]],[37,41,["H5892"]],[41,42,["H834"]],[42,45,["H977"]],[45,49,["H1004"]],[49,50,["H834"]],[50,53,["H1129"]],[53,56,["H8034"]]]},{"k":11321,"v":[[0,2,["H8085"]],[2,4,["H4480"]],[4,6,["H8064"]],[6,10,["H3427"]],[10,11,["H4480","H4349","(H853)"]],[11,13,["H8605"]],[13,16,["H8467"]],[16,18,["H6213"]],[18,20,["H4941"]],[20,22,["H5545"]],[22,24,["H5971"]],[24,25,["H834"]],[25,27,["H2398"]],[27,29,[]]]},{"k":11322,"v":[[0,1,["H6258"]],[1,3,["H430"]],[3,7,["H4994"]],[7,9,["H5869"]],[9,10,["H1961"]],[10,11,["H6605"]],[11,15,["H241"]],[15,17,["H7183"]],[17,20,["H8605"]],[20,25,["H2088"]],[25,26,["H4725"]]]},{"k":11323,"v":[[0,1,["H6258"]],[1,3,["H6965"]],[3,5,["H3068"]],[5,6,["H430"]],[6,10,["H5118"]],[10,11,["H859"]],[11,14,["H727"]],[14,17,["H5797"]],[17,20,["H3548"]],[20,22,["H3068"]],[22,23,["H430"]],[23,25,["H3847"]],[25,27,["H8668"]],[27,31,["H2623"]],[31,32,["H8055"]],[32,34,["H2896"]]]},{"k":11324,"v":[[0,2,["H3068"]],[2,3,["H430"]],[3,6,["H7725","H408"]],[6,8,["H6440"]],[8,11,["H4899"]],[11,12,["H2142"]],[12,14,["H2617"]],[14,16,["H1732"]],[16,18,["H5650"]]]},{"k":11325,"v":[[0,3,["H8010"]],[3,7,["H3615"]],[7,9,["H6419"]],[9,11,["H784"]],[11,13,["H3381"]],[13,15,["H4480","H8064"]],[15,17,["H398"]],[17,20,["H5930"]],[20,23,["H2077"]],[23,26,["H3519"]],[26,29,["H3068"]],[29,30,["H4390","(H853)"]],[30,32,["H1004"]]]},{"k":11326,"v":[[0,3,["H3548"]],[3,4,["H3201"]],[4,5,["H3808"]],[5,6,["H935"]],[6,7,["H413"]],[7,9,["H1004"]],[9,12,["H3068"]],[12,13,["H3588"]],[13,15,["H3519"]],[15,18,["H3068"]],[18,20,["H4390","(H853)"]],[20,22,["H3068"]],[22,23,["H1004"]]]},{"k":11327,"v":[[0,3,["H3605"]],[3,5,["H1121"]],[5,7,["H3478"]],[7,8,["H7200"]],[8,11,["H784"]],[11,13,["H3381"]],[13,16,["H3519"]],[16,19,["H3068"]],[19,20,["H5921"]],[20,22,["H1004"]],[22,24,["H3766"]],[24,28,["H639"]],[28,31,["H776"]],[31,32,["H5921"]],[32,34,["H7531"]],[34,36,["H7812"]],[36,38,["H3034"]],[38,40,["H3068"]],[40,42,["H3588"]],[42,45,["H2896"]],[45,46,["H3588"]],[46,48,["H2617"]],[48,51,["H5769"]]]},{"k":11328,"v":[[0,3,["H4428"]],[3,5,["H3605"]],[5,7,["H5971"]],[7,8,["H2076"]],[8,9,["H2077"]],[9,10,["H6440"]],[10,12,["H3068"]]]},{"k":11329,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H2076","(H853)"]],[4,6,["H2077"]],[6,8,["H6242"]],[8,10,["H8147"]],[10,11,["H505"]],[11,12,["H1241"]],[12,15,["H3967"]],[15,17,["H6242"]],[17,18,["H505"]],[18,19,["H6629"]],[19,22,["H4428"]],[22,24,["H3605"]],[24,26,["H5971"]],[26,27,["H2596","(H853)"]],[27,29,["H1004"]],[29,31,["H430"]]]},{"k":11330,"v":[[0,3,["H3548"]],[3,4,["H5975"]],[4,5,["H5921"]],[5,7,["H4931"]],[7,9,["H3881"]],[9,12,["H3627"]],[12,14,["H7892"]],[14,17,["H3068"]],[17,18,["H834"]],[18,19,["H1732"]],[19,21,["H4428"]],[21,23,["H6213"]],[23,25,["H3034"]],[25,27,["H3068"]],[27,28,["H3588"]],[28,30,["H2617"]],[30,33,["H5769"]],[33,35,["H1732"]],[35,36,["H1984"]],[36,39,["H3027"]],[39,42,["H3548"]],[42,43,["H2690"]],[43,45,["H5048"]],[45,48,["H3605"]],[48,49,["H3478"]],[49,50,["H5975"]]]},{"k":11331,"v":[[0,2,["H8010"]],[2,3,["H6942","(H853)"]],[3,5,["H8432"]],[5,8,["H2691"]],[8,9,["H834"]],[9,11,["H6440"]],[11,13,["H1004"]],[13,16,["H3068"]],[16,17,["H3588"]],[17,18,["H8033"]],[18,20,["H6213"]],[20,22,["H5930"]],[22,25,["H2459"]],[25,29,["H8002"]],[29,30,["H3588"]],[30,32,["H5178"]],[32,33,["H4196"]],[33,34,["H834"]],[34,35,["H8010"]],[35,37,["H6213"]],[37,40,["H3201","H3808"]],[40,42,["H3557","(H853)"]],[42,45,["H5930"]],[45,49,["H4503"]],[49,52,["H2459"]]]},{"k":11332,"v":[[0,4,["H1931"]],[4,5,["H6256"]],[5,6,["H8010"]],[6,7,["H6213","(H853)"]],[7,9,["H2282"]],[9,10,["H7651"]],[10,11,["H3117"]],[11,13,["H3605"]],[13,14,["H3478"]],[14,15,["H5973"]],[15,18,["H3966"]],[18,19,["H1419"]],[19,20,["H6951"]],[20,24,["H4480","H935"]],[24,26,["H2574"]],[26,27,["H5704"]],[27,29,["H5158"]],[29,31,["H4714"]]]},{"k":11333,"v":[[0,4,["H8066"]],[4,5,["H3117"]],[5,7,["H6213"]],[7,10,["H6116"]],[10,11,["H3588"]],[11,13,["H6213"]],[13,15,["H2598"]],[15,18,["H4196"]],[18,19,["H7651"]],[19,20,["H3117"]],[20,23,["H2282"]],[23,24,["H7651"]],[24,25,["H3117"]]]},{"k":11334,"v":[[0,4,["H7969"]],[4,6,["H6242"]],[6,7,["H3117"]],[7,10,["H7637"]],[10,11,["H2320"]],[11,13,["H7971","(H853)"]],[13,15,["H5971"]],[15,19,["H168"]],[19,20,["H8056"]],[20,22,["H2896"]],[22,24,["H3820"]],[24,25,["H5921"]],[25,27,["H2896"]],[27,28,["H834"]],[28,30,["H3068"]],[30,32,["H6213"]],[32,34,["H1732"]],[34,37,["H8010"]],[37,40,["H3478"]],[40,42,["H5971"]]]},{"k":11335,"v":[[0,2,["H8010"]],[2,3,["H3615","(H853)"]],[3,5,["H1004"]],[5,8,["H3068"]],[8,11,["H4428"]],[11,12,["H1004"]],[12,14,["H3605"]],[14,16,["H935"]],[16,17,["H5921"]],[17,18,["H8010"]],[18,19,["H3820"]],[19,21,["H6213"]],[21,24,["H1004"]],[24,27,["H3068"]],[27,32,["H1004"]],[32,35,["H6743"]]]},{"k":11336,"v":[[0,3,["H3068"]],[3,4,["H7200"]],[4,5,["H413"]],[5,6,["H8010"]],[6,8,["H3915"]],[8,10,["H559"]],[10,15,["H8085","(H853)"]],[15,17,["H8605"]],[17,20,["H977"]],[20,21,["H2088"]],[21,22,["H4725"]],[22,27,["H1004"]],[27,29,["H2077"]]]},{"k":11337,"v":[[0,1,["H2005"]],[1,4,["H6113"]],[4,5,["H8064"]],[5,8,["H1961"]],[8,9,["H3808"]],[9,10,["H4306"]],[10,12,["H2005"]],[12,14,["H6680","H5921"]],[14,16,["H2284"]],[16,18,["H398"]],[18,20,["H776"]],[20,22,["H518"]],[22,24,["H7971"]],[24,25,["H1698"]],[25,28,["H5971"]]]},{"k":11338,"v":[[0,3,["H5971"]],[3,4,["H834"]],[4,6,["H7121","H5921"]],[6,9,["H8034"]],[9,12,["H3665"]],[12,14,["H6419"]],[14,16,["H1245"]],[16,18,["H6440"]],[18,20,["H7725"]],[20,23,["H7451"]],[23,24,["H4480","H1870"]],[24,27,["H589"]],[27,28,["H8085"]],[28,29,["H4480"]],[29,30,["H8064"]],[30,33,["H5545"]],[33,35,["H2403"]],[35,38,["H7495","(H853)"]],[38,40,["H776"]]]},{"k":11339,"v":[[0,1,["H6258"]],[1,3,["H5869"]],[3,5,["H1961"]],[5,6,["H6605"]],[6,9,["H241"]],[9,10,["H7183"]],[10,13,["H8605"]],[13,18,["H2088"]],[18,19,["H4725"]]]},{"k":11340,"v":[[0,2,["H6258"]],[2,5,["H977"]],[5,7,["H6942","(H853)"]],[7,8,["H2088"]],[8,9,["H1004"]],[9,12,["H8034"]],[12,14,["H1961"]],[14,15,["H8033"]],[15,17,["H5704","H5769"]],[17,20,["H5869"]],[20,23,["H3820"]],[23,25,["H1961"]],[25,26,["H8033"]],[26,27,["H3605","H3117"]]]},{"k":11341,"v":[[0,4,["H859"]],[4,5,["H518"]],[5,8,["H1980"]],[8,9,["H6440"]],[9,11,["H834"]],[11,12,["H1732"]],[12,14,["H1"]],[14,15,["H1980"]],[15,17,["H6213"]],[17,20,["H3605"]],[20,21,["H834"]],[21,24,["H6680"]],[24,28,["H8104"]],[28,30,["H2706"]],[30,33,["H4941"]]]},{"k":11342,"v":[[0,4,["H6965","(H853)"]],[4,6,["H3678"]],[6,9,["H4438"]],[9,11,["H834"]],[11,14,["H3772"]],[14,16,["H1732"]],[16,18,["H1"]],[18,19,["H559"]],[19,22,["H3808"]],[22,23,["H3772"]],[23,26,["H376"]],[26,29,["H4910"]],[29,31,["H3478"]]]},{"k":11343,"v":[[0,2,["H518"]],[2,3,["H859"]],[3,5,["H7725"]],[5,7,["H5800"]],[7,9,["H2708"]],[9,12,["H4687"]],[12,13,["H834"]],[13,16,["H5414"]],[16,17,["H6440"]],[17,21,["H1980"]],[21,23,["H5647"]],[23,24,["H312"]],[24,25,["H430"]],[25,27,["H7812"]],[27,28,[]]]},{"k":11344,"v":[[0,9,["H5428"]],[9,11,["H4480","H5921"]],[11,13,["H127"]],[13,14,["H834"]],[14,17,["H5414"]],[17,20,["H2088"]],[20,21,["H1004"]],[21,22,["H834"]],[22,25,["H6942"]],[25,28,["H8034"]],[28,32,["H7993"]],[32,33,["H4480","H5921"]],[33,35,["H6440"]],[35,38,["H5414"]],[38,43,["H4912"]],[43,46,["H8148"]],[46,48,["H3605"]],[48,49,["H5971"]]]},{"k":11345,"v":[[0,2,["H2088"]],[2,3,["H1004"]],[3,4,["H834"]],[4,5,["H1961"]],[5,6,["H5945"]],[6,10,["H8074"]],[10,13,["H3605"]],[13,15,["H5674"]],[15,16,["H5921"]],[16,22,["H559"]],[22,23,["H4100"]],[23,26,["H3068"]],[26,27,["H6213"]],[27,28,["H3602"]],[28,30,["H2063"]],[30,31,["H776"]],[31,34,["H2088"]],[34,35,["H1004"]]]},{"k":11346,"v":[[0,5,["H559"]],[5,6,["H5921","H834"]],[6,8,["H5800","(H853)"]],[8,10,["H3068"]],[10,11,["H430"]],[11,14,["H1"]],[14,15,["H834"]],[15,18,["H3318"]],[18,22,["H4480","H776"]],[22,24,["H4714"]],[24,27,["H2388"]],[27,29,["H312"]],[29,30,["H430"]],[30,32,["H7812"]],[32,35,["H5647"]],[35,37,["H5921","H3651"]],[37,40,["H935","(H853)"]],[40,41,["H3605"]],[41,42,["H2063"]],[42,43,["H7451"]],[43,44,["H5921"]],[44,45,[]]]},{"k":11347,"v":[[0,5,["H1961"]],[5,8,["H4480","H7093"]],[8,10,["H6242"]],[10,11,["H8141"]],[11,12,["H834"]],[12,13,["H8010"]],[13,15,["H1129"]],[15,17,["H1004"]],[17,20,["H3068"]],[20,24,["H1004"]]]},{"k":11348,"v":[[0,3,["H5892"]],[3,4,["H834"]],[4,5,["H2438"]],[5,7,["H5414"]],[7,9,["H8010"]],[9,10,["H8010"]],[10,11,["H1129"]],[11,14,["(H853)"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,20,["H3427"]],[20,21,["H8033"]]]},{"k":11349,"v":[[0,2,["H8010"]],[2,3,["H1980"]],[3,5,["H2578"]],[5,7,["H2388"]],[7,8,["H5921"]],[8,9,[]]]},{"k":11350,"v":[[0,3,["H1129","(H853)"]],[3,4,["H8412"]],[4,7,["H4057"]],[7,9,["H3605"]],[9,11,["H4543"]],[11,12,["H5892"]],[12,13,["H834"]],[13,15,["H1129"]],[15,17,["H2574"]]]},{"k":11351,"v":[[0,3,["H1129","(H853)"]],[3,4,["H1032"]],[4,6,["H5945"]],[6,8,["H1032"]],[8,10,["H8481"]],[10,11,["H4692"]],[11,12,["H5892"]],[12,14,["H2346"]],[14,15,["H1817"]],[15,17,["H1280"]]]},{"k":11352,"v":[[0,2,["H1191"]],[2,4,["H3605"]],[4,6,["H4543"]],[6,7,["H5892"]],[7,8,["H834"]],[8,9,["H8010"]],[9,10,["H1961"]],[10,12,["H3605"]],[12,14,["H7393"]],[14,15,["H5892"]],[15,18,["H5892"]],[18,21,["H6571"]],[21,23,["H3605"]],[23,24,["H834"]],[24,25,["H8010"]],[25,26,["H2837","H2836"]],[26,28,["H1129"]],[28,30,["H3389"]],[30,33,["H3844"]],[33,36,["H3605"]],[36,38,["H776"]],[38,41,["H4475"]]]},{"k":11353,"v":[[0,3,["H3605"]],[3,5,["H5971"]],[5,8,["H3498"]],[8,9,["H4480"]],[9,11,["H2850"]],[11,14,["H567"]],[14,17,["H6522"]],[17,20,["H2340"]],[20,23,["H2983"]],[23,24,["H834"]],[24,26,["H3808"]],[26,28,["H4480","H3478"]]]},{"k":11354,"v":[[0,2,["H4480"]],[2,4,["H1121"]],[4,5,["H834"]],[5,7,["H3498"]],[7,8,["H310"]],[8,12,["H776"]],[12,13,["H834"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,18,["H3615"]],[18,19,["H3808"]],[19,22,["H8010"]],[22,25,["H5927"]],[25,26,["H4522"]],[26,27,["H5704"]],[27,28,["H2088"]],[28,29,["H3117"]]]},{"k":11355,"v":[[0,2,["H4480"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H8010"]],[8,9,["H5414"]],[9,10,["H3808"]],[10,11,["H5650"]],[11,14,["H4399"]],[14,15,["H3588"]],[15,16,["H1992"]],[16,18,["H376"]],[18,20,["H4421"]],[20,22,["H8269"]],[22,25,["H7991"]],[25,27,["H8269"]],[27,30,["H7393"]],[30,32,["H6571"]]]},{"k":11356,"v":[[0,2,["H428"]],[2,5,["H8269"]],[5,7,["H4428"]],[7,8,["H8010"]],[8,9,["H5324"]],[9,12,["H3967"]],[12,14,["H2572"]],[14,17,["H7287"]],[17,20,["H5971"]]]},{"k":11357,"v":[[0,2,["H8010"]],[2,4,["H5927"]],[4,6,["H1323"]],[6,8,["H6547"]],[8,12,["H4480","H5892"]],[12,14,["H1732"]],[14,17,["H1004"]],[17,18,["H834"]],[18,21,["H1129"]],[21,24,["H3588"]],[24,26,["H559"]],[26,28,["H802"]],[28,30,["H3808"]],[30,31,["H3427"]],[31,34,["H1004"]],[34,36,["H1732"]],[36,37,["H4428"]],[37,39,["H3478"]],[39,40,["H3588"]],[40,44,["H6944"]],[44,45,["H834","H413"]],[45,47,["H727"]],[47,50,["H3068"]],[50,52,["H935"]]]},{"k":11358,"v":[[0,1,["H227"]],[1,2,["H8010"]],[2,3,["H5927"]],[3,5,["H5930"]],[5,8,["H3068"]],[8,9,["H5921"]],[9,11,["H4196"]],[11,14,["H3068"]],[14,15,["H834"]],[15,18,["H1129"]],[18,19,["H6440"]],[19,21,["H197"]]]},{"k":11359,"v":[[0,5,["H1697"]],[5,7,["H3117","H3117"]],[7,8,["H5927"]],[8,12,["H4687"]],[12,14,["H4872"]],[14,17,["H7676"]],[17,22,["H2320"]],[22,27,["H4150"]],[27,28,["H7969"]],[28,29,["H6471"]],[29,32,["H8141"]],[32,36,["H2282"]],[36,39,["H4682"]],[39,43,["H2282"]],[43,45,["H7620"]],[45,49,["H2282"]],[49,51,["H5521"]]]},{"k":11360,"v":[[0,3,["H5975"]],[3,7,["H4941"]],[7,9,["H1732"]],[9,11,["H1","(H853)"]],[11,13,["H4256"]],[13,16,["H3548"]],[16,17,["H5921"]],[17,19,["H5656"]],[19,22,["H3881"]],[22,23,["H5921"]],[23,25,["H4931"]],[25,27,["H1984"]],[27,29,["H8334"]],[29,30,["H5048"]],[30,32,["H3548"]],[32,35,["H1697"]],[35,39,["H3117","H3117"]],[39,41,["H7778"]],[41,45,["H4256"]],[45,48,["H8179","H8179"]],[48,49,["H3588"]],[49,50,["H3651"]],[50,52,["H1732"]],[52,54,["H376"]],[54,56,["H430"]],[56,57,["H4687"]]]},{"k":11361,"v":[[0,3,["H5493"]],[3,4,["H3808"]],[4,7,["H4687"]],[7,10,["H4428"]],[10,11,["H5921"]],[11,13,["H3548"]],[13,15,["H3881"]],[15,17,["H3605"]],[17,18,["H1697"]],[18,22,["H214"]]]},{"k":11362,"v":[[0,2,["H3605"]],[2,4,["H4399"]],[4,6,["H8010"]],[6,8,["H3559"]],[8,9,["H5704"]],[9,11,["H3117"]],[11,14,["H4143"]],[14,17,["H1004"]],[17,20,["H3068"]],[20,22,["H5704"]],[22,25,["H3615"]],[25,28,["H1004"]],[28,31,["H3068"]],[31,33,["H8003"]]]},{"k":11363,"v":[[0,1,["H227"]],[1,2,["H1980"]],[2,3,["H8010"]],[3,5,["H6100"]],[5,7,["H413"]],[7,8,["H359"]],[8,9,["H5921"]],[9,11,["H3220"]],[11,12,["H8193"]],[12,15,["H776"]],[15,17,["H123"]]]},{"k":11364,"v":[[0,2,["H2361"]],[2,3,["H7971"]],[3,7,["H3027"]],[7,10,["H5650"]],[10,11,["H591"]],[11,13,["H5650"]],[13,16,["H3045"]],[16,19,["H3220"]],[19,22,["H935"]],[22,23,["H5973"]],[23,25,["H5650"]],[25,27,["H8010"]],[27,29,["H211"]],[29,31,["H3947"]],[31,32,["H4480","H8033"]],[32,33,["H702"]],[33,34,["H3967"]],[34,36,["H2572"]],[36,37,["H3603"]],[37,39,["H2091"]],[39,41,["H935"]],[41,43,["H413"]],[43,44,["H4428"]],[44,45,["H8010"]]]},{"k":11365,"v":[[0,4,["H4436"]],[4,6,["H7614"]],[6,7,["H8085","(H853)"]],[7,10,["H8088"]],[10,12,["H8010"]],[12,14,["H935"]],[14,16,["H5254","(H853)"]],[16,17,["H8010"]],[17,20,["H2420"]],[20,22,["H3389"]],[22,25,["H3966"]],[25,26,["H3515"]],[26,27,["H2428"]],[27,29,["H1581"]],[29,31,["H5375"]],[31,32,["H1314"]],[32,34,["H2091"]],[34,36,["H7230"]],[36,38,["H3368"]],[38,39,["H68"]],[39,44,["H935"]],[44,45,["H413"]],[45,46,["H8010"]],[46,48,["H1696"]],[48,49,["H5973"]],[49,50,["(H853)"]],[50,52,["H3605"]],[52,53,["H834"]],[53,54,["H1961"]],[54,55,["H5973"]],[55,57,["H3824"]]]},{"k":11366,"v":[[0,2,["H8010"]],[2,3,["H5046"]],[3,4,["(H853)"]],[4,5,["H3605"]],[5,7,["H1697"]],[7,11,["H3808","H1697"]],[11,12,["H5956"]],[12,14,["H4480","H8010"]],[14,15,["H834"]],[15,17,["H5046"]],[17,19,["H3808"]]]},{"k":11367,"v":[[0,4,["H4436"]],[4,6,["H7614"]],[6,8,["H7200","(H853)"]],[8,10,["H2451"]],[10,12,["H8010"]],[12,15,["H1004"]],[15,16,["H834"]],[16,19,["H1129"]]]},{"k":11368,"v":[[0,3,["H3978"]],[3,6,["H7979"]],[6,9,["H4186"]],[9,12,["H5650"]],[12,15,["H4612"]],[15,18,["H8334"]],[18,21,["H4403"]],[21,23,["H4945"]],[23,27,["H4403"]],[27,30,["H5944"]],[30,32,["H834"]],[32,35,["H5927"]],[35,38,["H1004"]],[38,41,["H3068"]],[41,43,["H1961"]],[43,44,["H3808"]],[44,45,["H5750"]],[45,46,["H7307"]],[46,48,[]]]},{"k":11369,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,10,["H571"]],[10,11,["H1697"]],[11,12,["H834"]],[12,14,["H8085"]],[14,18,["H776"]],[18,19,["H5921"]],[19,21,["H1697"]],[21,23,["H5921"]],[23,25,["H2451"]]]},{"k":11370,"v":[[0,3,["H539"]],[3,4,["H3808"]],[4,6,["H1697"]],[6,7,["H5704","H834"]],[7,9,["H935"]],[9,12,["H5869"]],[12,14,["H7200"]],[14,17,["H2009"]],[17,20,["H2677"]],[20,23,["H4768"]],[23,26,["H2451"]],[26,28,["H3808"]],[28,29,["H5046"]],[29,33,["H3254","H5921"]],[33,35,["H8052"]],[35,36,["H834"]],[36,38,["H8085"]]]},{"k":11371,"v":[[0,1,["H835"]],[1,4,["H376"]],[4,6,["H835"]],[6,8,["H428"]],[8,10,["H5650"]],[10,12,["H5975"]],[12,13,["H8548"]],[13,14,["H6440"]],[14,17,["H8085","(H853)"]],[17,19,["H2451"]]]},{"k":11372,"v":[[0,1,["H1288"]],[1,2,["H1961"]],[2,4,["H3068"]],[4,6,["H430"]],[6,7,["H834"]],[7,8,["H2654"]],[8,12,["H5414"]],[12,14,["H5921"]],[14,16,["H3678"]],[16,19,["H4428"]],[19,22,["H3068"]],[22,24,["H430"]],[24,27,["H430"]],[27,28,["H160","(H853)"]],[28,29,["H3478"]],[29,31,["H5975"]],[31,34,["H5769"]],[34,36,["H5414"]],[36,39,["H4428"]],[39,40,["H5921"]],[40,43,["H6213"]],[43,44,["H4941"]],[44,46,["H6666"]]]},{"k":11373,"v":[[0,3,["H5414"]],[3,5,["H4428"]],[5,7,["H3967"]],[7,9,["H6242"]],[9,10,["H3603"]],[10,12,["H2091"]],[12,15,["H1314"]],[15,16,["H3966"]],[16,17,["H7230"]],[17,19,["H3368"]],[19,20,["H68"]],[20,21,["H3808"]],[21,22,["H1961"]],[22,25,["H1931"]],[25,26,["H1314"]],[26,27,["H834"]],[27,29,["H4436"]],[29,31,["H7614"]],[31,32,["H5414"]],[32,33,["H4428"]],[33,34,["H8010"]]]},{"k":11374,"v":[[0,3,["H5650"]],[3,4,["H1571"]],[4,6,["H2438"]],[6,9,["H5650"]],[9,11,["H8010"]],[11,12,["H834"]],[12,13,["H935"]],[13,14,["H2091"]],[14,16,["H4480","H211"]],[16,17,["H935"]],[17,18,["H418"]],[18,19,["H6086"]],[19,21,["H3368"]],[21,22,["H68"]]]},{"k":11375,"v":[[0,3,["H4428"]],[3,4,["H6213","(H853)"]],[4,7,["H418"]],[7,8,["H6086"]],[8,9,["H4546"]],[9,12,["H1004"]],[12,15,["H3068"]],[15,19,["H4428"]],[19,20,["H1004"]],[20,22,["H3658"]],[22,24,["H5035"]],[24,26,["H7891"]],[26,30,["H3808"]],[30,31,["H1992"]],[31,32,["H7200"]],[32,33,["H6440"]],[33,36,["H776"]],[36,38,["H3063"]]]},{"k":11376,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H5414"]],[4,7,["H4436"]],[7,9,["H7614","(H853)"]],[9,10,["H3605"]],[10,12,["H2656"]],[12,13,["H834"]],[13,15,["H7592"]],[15,16,["H4480","H905"]],[16,18,["H834"]],[18,21,["H935"]],[21,22,["H413"]],[22,24,["H4428"]],[24,27,["H2015"]],[27,30,["H1980"]],[30,34,["H776"]],[34,35,["H1931"]],[35,38,["H5650"]]]},{"k":11377,"v":[[0,3,["H4948"]],[3,5,["H2091"]],[5,6,["H834"]],[6,7,["H935"]],[7,9,["H8010"]],[9,11,["H259"]],[11,12,["H8141"]],[12,13,["H1961"]],[13,14,["H8337"]],[14,15,["H3967"]],[15,17,["H8346"]],[17,19,["H8337"]],[19,20,["H3603"]],[20,22,["H2091"]]]},{"k":11378,"v":[[0,1,["H905"]],[1,4,["H4480","H376","H8446"]],[4,6,["H5503"]],[6,7,["H935"]],[7,9,["H3605"]],[9,11,["H4428"]],[11,13,["H6152"]],[13,15,["H6346"]],[15,18,["H776"]],[18,19,["H935"]],[19,20,["H2091"]],[20,22,["H3701"]],[22,24,["H8010"]]]},{"k":11379,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H6213"]],[4,6,["H3967"]],[6,7,["H6793"]],[7,9,["H7820"]],[9,10,["H2091"]],[10,11,["H8337"]],[11,12,["H3967"]],[12,15,["H7820"]],[15,16,["H2091"]],[16,17,["H5927"]],[17,18,["H5921"]],[18,19,["H259"]],[19,20,["H6793"]]]},{"k":11380,"v":[[0,2,["H7969"]],[2,3,["H3967"]],[3,4,["H4043"]],[4,8,["H7820"]],[8,9,["H2091"]],[9,10,["H7969"]],[10,11,["H3967"]],[11,14,["H2091"]],[14,15,["H5927"]],[15,16,["H5921"]],[16,17,["H259"]],[17,18,["H4043"]],[18,21,["H4428"]],[21,22,["H5414"]],[22,26,["H1004"]],[26,29,["H3293"]],[29,31,["H3844"]]]},{"k":11381,"v":[[0,3,["H4428"]],[3,4,["H6213"]],[4,6,["H1419"]],[6,7,["H3678"]],[7,9,["H8127"]],[9,11,["H6823"]],[11,14,["H2889"]],[14,15,["H2091"]]]},{"k":11382,"v":[[0,4,["H8337"]],[4,5,["H4609"]],[5,8,["H3678"]],[8,11,["H3534"]],[11,13,["H2091"]],[13,16,["H270"]],[16,19,["H3678"]],[19,21,["H3027"]],[21,24,["H4480","H2088","H4480","H2088"]],[24,25,["H5921"]],[25,27,["H7675"]],[27,28,["H4725"]],[28,30,["H8147"]],[30,31,["H738"]],[31,32,["H5975"]],[32,33,["H681"]],[33,35,["H3027"]]]},{"k":11383,"v":[[0,2,["H8147","H6240"]],[2,3,["H738"]],[3,4,["H5975"]],[4,5,["H8033"]],[5,9,["H4480","H2088"]],[9,13,["H4480","H2088"]],[13,14,["H5921"]],[14,16,["H8337"]],[16,17,["H4609"]],[17,20,["H3808"]],[20,22,["H3651"]],[22,23,["H6213"]],[23,25,["H3605"]],[25,26,["H4467"]]]},{"k":11384,"v":[[0,2,["H3605"]],[2,4,["H4945"]],[4,5,["H3627"]],[5,7,["H4428"]],[7,8,["H8010"]],[8,11,["H2091"]],[11,13,["H3605"]],[13,15,["H3627"]],[15,18,["H1004"]],[18,21,["H3293"]],[21,23,["H3844"]],[23,26,["H5462"]],[26,27,["H2091"]],[27,28,["H369"]],[28,31,["H3701"]],[31,36,["H3972"]],[36,37,["H2803"]],[37,41,["H3117"]],[41,43,["H8010"]]]},{"k":11385,"v":[[0,1,["H3588"]],[1,3,["H4428"]],[3,4,["H591"]],[4,5,["H1980"]],[5,7,["H8659"]],[7,8,["H5973"]],[8,10,["H5650"]],[10,12,["H2361"]],[12,14,["H7969"]],[14,15,["H8141"]],[15,16,["H259"]],[16,17,["H935"]],[17,19,["H591"]],[19,21,["H8659"]],[21,22,["H5375"]],[22,23,["H2091"]],[23,25,["H3701"]],[25,26,["H8143"]],[26,28,["H6971"]],[28,30,["H8500"]]]},{"k":11386,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H1431"]],[4,5,["H4480","H3605"]],[5,7,["H4428"]],[7,10,["H776"]],[10,12,["H6239"]],[12,14,["H2451"]]]},{"k":11387,"v":[[0,2,["H3605"]],[2,4,["H4428"]],[4,7,["H776"]],[7,8,["H1245","(H853)"]],[8,10,["H6440"]],[10,12,["H8010"]],[12,14,["H8085","(H853)"]],[14,16,["H2451"]],[16,17,["H834"]],[17,18,["H430"]],[18,20,["H5414"]],[20,23,["H3820"]]]},{"k":11388,"v":[[0,2,["H1992"]],[2,3,["H935"]],[3,5,["H376"]],[5,7,["H4503"]],[7,8,["H3627"]],[8,10,["H3701"]],[10,12,["H3627"]],[12,14,["H2091"]],[14,16,["H8008"]],[16,17,["H5402"]],[17,19,["H1314"]],[19,20,["H5483"]],[20,22,["H6505"]],[22,24,["H1697"]],[24,25,["H8141"]],[25,27,["H8141"]]]},{"k":11389,"v":[[0,2,["H8010"]],[2,3,["H1961"]],[3,4,["H702"]],[4,5,["H505"]],[5,6,["H723"]],[6,8,["H5483"]],[8,10,["H4818"]],[10,12,["H8147","H6240"]],[12,13,["H505"]],[13,14,["H6571"]],[14,17,["H5117"]],[17,20,["H7393"]],[20,21,["H5892"]],[21,23,["H5973"]],[23,25,["H4428"]],[25,27,["H3389"]]]},{"k":11390,"v":[[0,3,["H1961","H4910"]],[3,5,["H3605"]],[5,7,["H4428"]],[7,8,["H4480"]],[8,10,["H5104"]],[10,12,["H5704"]],[12,14,["H776"]],[14,17,["H6430"]],[17,19,["H5704"]],[19,21,["H1366"]],[21,23,["H4714"]]]},{"k":11391,"v":[[0,3,["H4428"]],[3,4,["H5414","(H853)"]],[4,5,["H3701"]],[5,7,["H3389"]],[7,9,["H68"]],[9,12,["H730"]],[12,13,["H5414"]],[13,18,["H8256"]],[18,19,["H834"]],[19,24,["H8219"]],[24,26,["H7230"]]]},{"k":11392,"v":[[0,3,["H3318"]],[3,5,["H8010"]],[5,6,["H5483"]],[6,9,["H4480","H4714"]],[9,13,["H4480","H3605"]],[13,14,["H776"]]]},{"k":11393,"v":[[0,3,["H7605"]],[3,6,["H1697"]],[6,8,["H8010"]],[8,9,["H7223"]],[9,11,["H314"]],[11,13,["H1992"]],[13,14,["H3808"]],[14,15,["H3789"]],[15,16,["H5921"]],[16,18,["H1697"]],[18,20,["H5416"]],[20,22,["H5030"]],[22,24,["H5921"]],[24,26,["H5016"]],[26,28,["H281"]],[28,30,["H7888"]],[30,34,["H2378"]],[34,36,["H3260"]],[36,38,["H2374"]],[38,39,["H5921"]],[39,40,["H3379"]],[40,42,["H1121"]],[42,44,["H5028"]]]},{"k":11394,"v":[[0,2,["H8010"]],[2,3,["H4427"]],[3,5,["H3389"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,8,["H3478"]],[8,9,["H705"]],[9,10,["H8141"]]]},{"k":11395,"v":[[0,2,["H8010"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,10,["H6912"]],[10,13,["H5892"]],[13,15,["H1732"]],[15,17,["H1"]],[17,19,["H7346"]],[19,21,["H1121"]],[21,22,["H4427"]],[22,25,["H8478"]]]},{"k":11396,"v":[[0,2,["H7346"]],[2,3,["H1980"]],[3,5,["H7927"]],[5,6,["H3588"]],[6,8,["H7927"]],[8,10,["H3605"]],[10,11,["H3478"]],[11,12,["H935"]],[12,16,["H4427","(H853)"]]]},{"k":11397,"v":[[0,5,["H1961"]],[5,7,["H3379"]],[7,9,["H1121"]],[9,11,["H5028"]],[11,12,["H1931"]],[12,15,["H4714"]],[15,16,["H834"]],[16,19,["H1272"]],[19,22,["H4480","H6440"]],[22,24,["H8010"]],[24,26,["H4428"]],[26,27,["H8085"]],[27,30,["H3379"]],[30,31,["H7725"]],[31,34,["H4480","H4714"]]]},{"k":11398,"v":[[0,3,["H7971"]],[3,5,["H7121"]],[5,8,["H3379"]],[8,10,["H3605"]],[10,11,["H3478"]],[11,12,["H935"]],[12,14,["H1696"]],[14,15,["H413"]],[15,16,["H7346"]],[16,17,["H559"]]]},{"k":11399,"v":[[0,2,["H1"]],[2,3,["(H853)"]],[3,5,["H5923"]],[5,6,["H7185"]],[6,7,["H6258"]],[7,9,["H7043"]],[9,13,["H7186"]],[13,14,["H4480","H5656"]],[14,17,["H1"]],[17,20,["H3515"]],[20,21,["H4480","H5923"]],[21,22,["H834"]],[22,24,["H5414"]],[24,25,["H5921"]],[25,30,["H5647"]],[30,31,[]]]},{"k":11400,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H7725"]],[7,8,["H413"]],[8,10,["H5750"]],[10,11,["H7969"]],[11,12,["H3117"]],[12,15,["H5971"]],[15,16,["H1980"]]]},{"k":11401,"v":[[0,2,["H4428"]],[2,3,["H7346"]],[3,5,["H3289"]],[5,6,["H854"]],[6,9,["H2205"]],[9,10,["H834"]],[10,11,["H1961"]],[11,12,["H5975"]],[12,13,["H6440"]],[13,14,["H8010"]],[14,16,["H1"]],[16,20,["H1961","H2416"]],[20,21,["H559"]],[21,22,["H349"]],[22,24,["H3289"]],[24,25,["H859"]],[25,28,["H7725"]],[28,29,["H1697"]],[29,31,["H2088"]],[31,32,["H5971"]]]},{"k":11402,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H559"]],[6,7,["H518"]],[7,9,["H1961"]],[9,10,["H2896"]],[10,12,["H2088"]],[12,13,["H5971"]],[13,15,["H7521"]],[15,18,["H1696"]],[18,19,["H2896"]],[19,20,["H1697"]],[20,21,["H413"]],[21,25,["H1961"]],[25,27,["H5650"]],[27,29,["H3605","H3117"]]]},{"k":11403,"v":[[0,3,["H5800","(H853)"]],[3,5,["H6098"]],[5,6,["H834"]],[6,9,["H2205"]],[9,10,["H3289"]],[10,14,["H3289"]],[14,15,["H854"]],[15,18,["H3206"]],[18,19,["H834"]],[19,22,["H1431"]],[22,23,["H854"]],[23,26,["H5975"]],[26,27,["H6440"]],[27,28,[]]]},{"k":11404,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H4100"]],[6,8,["H3289"]],[8,9,["H859"]],[9,13,["H7725"]],[13,14,["H1697","(H853)"]],[14,16,["H2088"]],[16,17,["H5971"]],[17,18,["H834"]],[18,20,["H1696"]],[20,21,["H413"]],[21,23,["H559"]],[23,24,["H7043"]],[24,25,["H4480"]],[25,27,["H5923"]],[27,28,["H834"]],[28,30,["H1"]],[30,32,["H5414"]],[32,33,["H5921"]],[33,34,[]]]},{"k":11405,"v":[[0,4,["H3206"]],[4,5,["H834"]],[5,8,["H1431"]],[8,9,["H854"]],[9,11,["H1696"]],[11,12,["H854"]],[12,14,["H559"]],[14,15,["H3541"]],[15,18,["H559"]],[18,20,["H5971"]],[20,21,["H834"]],[21,22,["H1696"]],[22,23,["H413"]],[23,25,["H559"]],[25,27,["H1"]],[27,31,["H3513","(H853)","H5923"]],[31,37,["H859","H7043"]],[37,38,["H4480","H5921"]],[38,40,["H3541"]],[40,43,["H559"]],[43,44,["H413"]],[44,47,["H6995"]],[47,51,["H5666"]],[51,54,["H1"]],[54,55,["H4480","H4975"]]]},{"k":11406,"v":[[0,2,["H6258"]],[2,4,["H1"]],[4,5,["H6006"]],[5,7,["H3515"]],[7,8,["H5923"]],[8,9,["H5921"]],[9,11,["H589"]],[11,14,["H3254"]],[14,15,["H5921"]],[15,17,["H5923"]],[17,19,["H1"]],[19,20,["H3256"]],[20,23,["H7752"]],[23,25,["H589"]],[25,30,["H6137"]]]},{"k":11407,"v":[[0,2,["H3379"]],[2,4,["H3605"]],[4,6,["H5971"]],[6,7,["H935"]],[7,8,["H413"]],[8,9,["H7346"]],[9,12,["H7992"]],[12,13,["H3117"]],[13,14,["H834"]],[14,16,["H4428"]],[16,17,["H1696"]],[17,18,["H559"]],[18,20,["H7725"]],[20,21,["H413"]],[21,25,["H7992"]],[25,26,["H3117"]]]},{"k":11408,"v":[[0,3,["H4428"]],[3,4,["H6030"]],[4,6,["H7186"]],[6,8,["H4428"]],[8,9,["H7346"]],[9,10,["H5800","(H853)"]],[10,12,["H6098"]],[12,16,["H2205"]]]},{"k":11409,"v":[[0,2,["H1696","H413"]],[2,6,["H6098"]],[6,10,["H3206"]],[10,11,["H559"]],[11,13,["H1"]],[13,17,["H3513","(H853)","H5923"]],[17,19,["H589"]],[19,21,["H3254"]],[21,22,["H5921"]],[22,24,["H1"]],[24,25,["H3256"]],[25,28,["H7752"]],[28,30,["H589"]],[30,35,["H6137"]]]},{"k":11410,"v":[[0,3,["H4428"]],[3,4,["H8085"]],[4,5,["H3808"]],[5,6,["H413"]],[6,8,["H5971"]],[8,9,["H3588"]],[9,11,["H5252"]],[11,12,["H1961"]],[12,13,["H4480","H5973"]],[13,14,["H430"]],[14,15,["H4616"]],[15,17,["H3068"]],[17,19,["H6965","(H853)"]],[19,21,["H1697"]],[21,22,["H834"]],[22,24,["H1696"]],[24,27,["H3027"]],[27,29,["H281"]],[29,31,["H7888"]],[31,32,["H413"]],[32,33,["H3379"]],[33,35,["H1121"]],[35,37,["H5028"]]]},{"k":11411,"v":[[0,3,["H3605"]],[3,4,["H3478"]],[4,6,["H3588"]],[6,8,["H4428"]],[8,10,["H3808"]],[10,11,["H8085"]],[11,15,["H5971"]],[15,16,["H7725","(H853)"]],[16,18,["H4428"]],[18,19,["H559"]],[19,20,["H4100"]],[20,21,["H2506"]],[21,25,["H1732"]],[25,29,["H3808"]],[29,30,["H5159"]],[30,33,["H1121"]],[33,35,["H3448"]],[35,37,["H376"]],[37,40,["H168"]],[40,42,["H3478"]],[42,44,["H6258"]],[44,45,["H1732"]],[45,46,["H7200"]],[46,50,["H1004"]],[50,52,["H3605"]],[52,53,["H3478"]],[53,54,["H1980"]],[54,57,["H168"]]]},{"k":11412,"v":[[0,5,["H1121"]],[5,7,["H3478"]],[7,9,["H3427"]],[9,12,["H5892"]],[12,14,["H3063"]],[14,15,["H7346"]],[15,16,["H4427"]],[16,17,["H5921"]],[17,18,[]]]},{"k":11413,"v":[[0,2,["H4428"]],[2,3,["H7346"]],[3,4,["H7971","(H853)"]],[4,5,["H1913"]],[5,6,["H834"]],[6,8,["H5921"]],[8,10,["H4522"]],[10,13,["H1121"]],[13,15,["H3478"]],[15,16,["H7275"]],[16,19,["H68"]],[19,22,["H4191"]],[22,24,["H4428"]],[24,25,["H7346"]],[25,27,["H553"]],[27,31,["H5927"]],[31,34,["H4818"]],[34,36,["H5127"]],[36,38,["H3389"]]]},{"k":11414,"v":[[0,2,["H3478"]],[2,3,["H6586"]],[3,6,["H1004"]],[6,8,["H1732"]],[8,9,["H5704"]],[9,10,["H2088"]],[10,11,["H3117"]]]},{"k":11415,"v":[[0,3,["H7346"]],[3,5,["H935"]],[5,7,["H3389"]],[7,9,["H6950","(H853)"]],[9,12,["H1004"]],[12,14,["H3063"]],[14,16,["H1144"]],[16,18,["H3967"]],[18,20,["H8084"]],[20,21,["H505"]],[21,22,["H977"]],[22,26,["H6213","H4421"]],[26,28,["H3898"]],[28,29,["H5973"]],[29,30,["H3478"]],[30,34,["H7725","(H853)"]],[34,36,["H4467"]],[36,39,["H7346"]]]},{"k":11416,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H8098"]],[9,11,["H376"]],[11,13,["H430"]],[13,14,["H559"]]]},{"k":11417,"v":[[0,1,["H559"]],[1,2,["H413"]],[2,3,["H7346"]],[3,5,["H1121"]],[5,7,["H8010"]],[7,8,["H4428"]],[8,10,["H3063"]],[10,12,["H413"]],[12,13,["H3605"]],[13,14,["H3478"]],[14,16,["H3063"]],[16,18,["H1144"]],[18,19,["H559"]]]},{"k":11418,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,7,["H3808"]],[7,9,["H5927"]],[9,10,["H3808"]],[10,11,["H3898"]],[11,12,["H5973"]],[12,14,["H251"]],[14,15,["H7725"]],[15,17,["H376"]],[17,20,["H1004"]],[20,21,["H3588"]],[21,22,["H2088"]],[22,23,["H1697"]],[23,25,["H1961"]],[25,26,["H4480","H854"]],[26,30,["H8085","(H853)"]],[30,32,["H1697"]],[32,35,["H3068"]],[35,37,["H7725"]],[37,39,["H4480","H1980"]],[39,40,["H413"]],[40,41,["H3379"]]]},{"k":11419,"v":[[0,2,["H7346"]],[2,3,["H3427"]],[3,5,["H3389"]],[5,7,["H1129"]],[7,8,["H5892"]],[8,10,["H4692"]],[10,12,["H3063"]]]},{"k":11420,"v":[[0,2,["H1129"]],[2,3,["(H853)"]],[3,4,["H1035"]],[4,6,["H5862"]],[6,8,["H8620"]]]},{"k":11421,"v":[[0,2,["H1049"]],[2,4,["H7755"]],[4,6,["H5725"]]]},{"k":11422,"v":[[0,2,["H1661"]],[2,4,["H4762"]],[4,6,["H2128"]]]},{"k":11423,"v":[[0,2,["H115"]],[2,4,["H3923"]],[4,6,["H5825"]]]},{"k":11424,"v":[[0,2,["H6881"]],[2,4,["H357"]],[4,6,["H2275"]],[6,7,["H834"]],[7,10,["H3063"]],[10,13,["H1144"]],[13,14,["H4694"]],[14,15,["H5892"]]]},{"k":11425,"v":[[0,3,["H2388","(H853)"]],[3,6,["H4694"]],[6,8,["H5414"]],[8,9,["H5057"]],[9,13,["H214"]],[13,15,["H3978"]],[15,18,["H8081"]],[18,20,["H3196"]]]},{"k":11426,"v":[[0,3,["H3605"]],[3,5,["H5892","H5892"]],[5,8,["H6793"]],[8,10,["H7420"]],[10,15,["H2388","H7235","H3966"]],[15,16,["H1961"]],[16,17,["H3063"]],[17,19,["H1144"]],[19,22,[]]]},{"k":11427,"v":[[0,3,["H3548"]],[3,6,["H3881"]],[6,7,["H834"]],[7,10,["H3605"]],[10,11,["H3478"]],[11,12,["H3320"]],[12,13,["H5921"]],[13,17,["H4480","H3605"]],[17,19,["H1366"]]]},{"k":11428,"v":[[0,1,["H3588"]],[1,3,["H3881"]],[3,4,["H5800","(H853)"]],[4,6,["H4054"]],[6,9,["H272"]],[9,11,["H1980"]],[11,13,["H3063"]],[13,15,["H3389"]],[15,16,["H3588"]],[16,17,["H3379"]],[17,20,["H1121"]],[20,24,["H2186"]],[24,29,["H4480","H3547"]],[29,32,["H3068"]]]},{"k":11429,"v":[[0,3,["H5975"]],[3,5,["H3548"]],[5,9,["H1116"]],[9,13,["H8163"]],[13,17,["H5695"]],[17,18,["H834"]],[18,21,["H6213"]]]},{"k":11430,"v":[[0,2,["H310"]],[2,6,["H4480","H3605"]],[6,8,["H7626"]],[8,10,["H3478"]],[10,13,["H5414","(H853)"]],[13,15,["H3824"]],[15,17,["H1245","(H853)"]],[17,19,["H3068"]],[19,20,["H430"]],[20,22,["H3478"]],[22,23,["H935"]],[23,25,["H3389"]],[25,27,["H2076"]],[27,30,["H3068"]],[30,31,["H430"]],[31,34,["H1"]]]},{"k":11431,"v":[[0,3,["H2388","(H853)"]],[3,5,["H4438"]],[5,7,["H3063"]],[7,9,["(H853)"]],[9,10,["H7346"]],[10,12,["H1121"]],[12,14,["H8010"]],[14,15,["H553"]],[15,16,["H7969"]],[16,17,["H8141"]],[17,18,["H3588"]],[18,19,["H7969"]],[19,20,["H8141"]],[20,22,["H1980"]],[22,25,["H1870"]],[25,27,["H1732"]],[27,29,["H8010"]]]},{"k":11432,"v":[[0,2,["H7346"]],[2,3,["H3947"]],[3,4,["(H853)"]],[4,5,["H4258"]],[5,7,["H1323"]],[7,9,["H3406"]],[9,11,["H1121"]],[11,13,["H1732"]],[13,15,["H802"]],[15,17,["H32"]],[17,19,["H1323"]],[19,21,["H446"]],[21,23,["H1121"]],[23,25,["H3448"]]]},{"k":11433,"v":[[0,2,["H3205"]],[2,4,["H1121","(H853)"]],[4,5,["H3266"]],[5,7,["H8114"]],[7,9,["H2093"]]]},{"k":11434,"v":[[0,2,["H310"]],[2,5,["H3947","(H853)"]],[5,6,["H4601"]],[6,8,["H1323"]],[8,10,["H53"]],[10,12,["H3205"]],[12,13,["(H853)"]],[13,14,["H29"]],[14,16,["H6262"]],[16,18,["H2124"]],[18,20,["H8019"]]]},{"k":11435,"v":[[0,2,["H7346"]],[2,3,["H157","(H853)"]],[3,4,["H4601"]],[4,6,["H1323"]],[6,8,["H53"]],[8,10,["H4480","H3605"]],[10,12,["H802"]],[12,15,["H6370"]],[15,16,["H3588"]],[16,18,["H5375"]],[18,19,["H8083","H6240"]],[19,20,["H802"]],[20,22,["H8346"]],[22,23,["H6370"]],[23,25,["H3205"]],[25,26,["H6242"]],[26,28,["H8083"]],[28,29,["H1121"]],[29,31,["H8346"]],[31,32,["H1323"]]]},{"k":11436,"v":[[0,2,["H7346"]],[2,3,["H5975","(H853)"]],[3,4,["H29"]],[4,6,["H1121"]],[6,8,["H4601"]],[8,10,["H7218"]],[10,13,["H5057"]],[13,16,["H251"]],[16,17,["H3588"]],[17,23,["H4427"]]]},{"k":11437,"v":[[0,4,["H995"]],[4,6,["H6555"]],[6,8,["H4480","H3605"]],[8,10,["H1121"]],[10,12,["H3605"]],[12,14,["H776"]],[14,16,["H3063"]],[16,18,["H1144"]],[18,20,["H3605"]],[20,21,["H4694"]],[21,22,["H5892"]],[22,25,["H5414"]],[25,27,["H4202"]],[27,29,["H7230"]],[29,32,["H7592"]],[32,33,["H1995"]],[33,34,["H802"]]]},{"k":11438,"v":[[0,5,["H1961"]],[5,7,["H7346"]],[7,9,["H3559"]],[9,11,["H4438"]],[11,14,["H2394"]],[14,17,["H5800","(H853)"]],[17,19,["H8451"]],[19,22,["H3068"]],[22,24,["H3605"]],[24,25,["H3478"]],[25,26,["H5973"]],[26,27,[]]]},{"k":11439,"v":[[0,5,["H1961"]],[5,9,["H2549"]],[9,10,["H8141"]],[10,12,["H4428"]],[12,13,["H7346"]],[13,14,["H7895"]],[14,15,["H4428"]],[15,17,["H4714"]],[17,19,["H5927"]],[19,20,["H5921"]],[20,21,["H3389"]],[21,22,["H3588"]],[22,25,["H4603"]],[25,28,["H3068"]]]},{"k":11440,"v":[[0,3,["H505","H3967"]],[3,4,["H7393"]],[4,6,["H8346"]],[6,7,["H505"]],[7,8,["H6571"]],[8,11,["H5971"]],[11,13,["H369"]],[13,14,["H4557"]],[14,15,["H834"]],[15,16,["H935"]],[16,17,["H5973"]],[17,21,["H4480","H4714"]],[21,23,["H3864"]],[23,25,["H5525"]],[25,28,["H3569"]]]},{"k":11441,"v":[[0,3,["H3920","(H853)"]],[3,5,["H4694"]],[5,6,["H5892"]],[6,7,["H834"]],[7,10,["H3063"]],[10,12,["H935"]],[12,13,["H5704"]],[13,14,["H3389"]]]},{"k":11442,"v":[[0,2,["H935"]],[2,3,["H8098"]],[3,5,["H5030"]],[5,6,["H413"]],[6,7,["H7346"]],[7,11,["H8269"]],[11,13,["H3063"]],[13,14,["H834"]],[14,17,["H622"]],[17,18,["H413"]],[18,19,["H3389"]],[19,21,["H4480","H6440"]],[21,22,["H7895"]],[22,24,["H559"]],[24,27,["H3541"]],[27,28,["H559"]],[28,30,["H3068"]],[30,31,["H859"]],[31,33,["H5800"]],[33,38,["H589"]],[38,39,["H637"]],[39,40,["H5800"]],[40,44,["H3027"]],[44,46,["H7895"]]]},{"k":11443,"v":[[0,3,["H8269"]],[3,5,["H3478"]],[5,8,["H4428"]],[8,10,["H3665"]],[10,13,["H559"]],[13,15,["H3068"]],[15,17,["H6662"]]]},{"k":11444,"v":[[0,4,["H3068"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,9,["H3665"]],[9,11,["H1697"]],[11,14,["H3068"]],[14,15,["H1961"]],[15,16,["H413"]],[16,17,["H8098"]],[17,18,["H559"]],[18,22,["H3665"]],[22,26,["H3808"]],[26,27,["H7843"]],[27,32,["H5414"]],[32,34,["H4592"]],[34,35,["H6413"]],[35,38,["H2534"]],[38,40,["H3808"]],[40,43,["H5413"]],[43,45,["H3389"]],[45,48,["H3027"]],[48,50,["H7895"]]]},{"k":11445,"v":[[0,1,["H3588"]],[1,4,["H1961"]],[4,6,["H5650"]],[6,10,["H3045"]],[10,12,["H5656"]],[12,15,["H5656"]],[15,18,["H4467"]],[18,21,["H776"]]]},{"k":11446,"v":[[0,2,["H7895"]],[2,3,["H4428"]],[3,5,["H4714"]],[5,7,["H5927"]],[7,8,["H5921"]],[8,9,["H3389"]],[9,12,["H3947","(H853)"]],[12,14,["H214"]],[14,17,["H1004"]],[17,20,["H3068"]],[20,23,["H214"]],[23,26,["H4428"]],[26,27,["H1004"]],[27,29,["H3947","(H853)"]],[29,30,["H3605"]],[30,33,["H3947","(H853)"]],[33,36,["H4043"]],[36,38,["H2091"]],[38,39,["H834"]],[39,40,["H8010"]],[40,42,["H6213"]]]},{"k":11447,"v":[[0,2,["H8478"]],[2,4,["H4428"]],[4,5,["H7346"]],[5,6,["H6213"]],[6,7,["H4043"]],[7,9,["H5178"]],[9,11,["H6485"]],[11,13,["H5921"]],[13,15,["H3027"]],[15,18,["H8269"]],[18,21,["H7323"]],[21,23,["H8104"]],[23,25,["H6607"]],[25,28,["H4428"]],[28,29,["H1004"]]]},{"k":11448,"v":[[0,2,["H4480","H1767"]],[2,4,["H4428"]],[4,6,["H1961","H935"]],[6,8,["H1004"]],[8,11,["H3068"]],[11,13,["H7323"]],[13,14,["H935"]],[14,16,["H5375"]],[16,21,["H7725"]],[21,22,["H413"]],[22,24,["H7323"]],[24,25,["H8372"]]]},{"k":11449,"v":[[0,5,["H3665"]],[5,7,["H639"]],[7,10,["H3068"]],[10,11,["H7725"]],[11,12,["H4480"]],[12,17,["H3808"]],[17,18,["H7843"]],[18,20,["H3617"]],[20,22,["H1571"]],[22,24,["H3063"]],[24,25,["H1697"]],[25,26,["H1961"]],[26,27,["H2896"]]]},{"k":11450,"v":[[0,2,["H4428"]],[2,3,["H7346"]],[3,5,["H2388"]],[5,7,["H3389"]],[7,9,["H4427"]],[9,10,["H3588"]],[10,11,["H7346"]],[11,13,["H259"]],[13,15,["H705"]],[15,16,["H8141"]],[16,17,["H1121"]],[17,22,["H4427"]],[22,25,["H4427"]],[25,26,["H7651","H6240"]],[26,27,["H8141"]],[27,29,["H3389"]],[29,31,["H5892"]],[31,32,["H834"]],[32,34,["H3068"]],[34,36,["H977"]],[36,39,["H4480","H3605"]],[39,41,["H7626"]],[41,43,["H3478"]],[43,45,["H7760","(H853)"]],[45,47,["H8034"]],[47,48,["H8033"]],[48,51,["H517"]],[51,52,["H8034"]],[52,54,["H5279"]],[54,56,["H5984"]]]},{"k":11451,"v":[[0,3,["H6213"]],[3,4,["H7451"]],[4,5,["H3588"]],[5,7,["H3559"]],[7,8,["H3808"]],[8,10,["H3820"]],[10,12,["H1875","(H853)"]],[12,14,["H3068"]]]},{"k":11452,"v":[[0,3,["H1697"]],[3,5,["H7346"]],[5,6,["H7223"]],[6,8,["H314"]],[8,10,["H1992"]],[10,11,["H3808"]],[11,12,["H3789"]],[12,15,["H1697"]],[15,17,["H8098"]],[17,19,["H5030"]],[19,22,["H5714"]],[22,24,["H2374"]],[24,26,["H3187"]],[26,30,["H4421"]],[30,32,["H7346"]],[32,34,["H3379"]],[34,35,["H3605","H3117"]]]},{"k":11453,"v":[[0,2,["H7346"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,12,["H5892"]],[12,14,["H1732"]],[14,16,["H29"]],[16,18,["H1121"]],[18,19,["H4427"]],[19,22,["H8478"]]]},{"k":11454,"v":[[0,4,["H8083","H6240"]],[4,5,["H8141"]],[5,7,["H4428"]],[7,8,["H3379"]],[8,10,["H29"]],[10,12,["H4427"]],[12,13,["H5921"]],[13,14,["H3063"]]]},{"k":11455,"v":[[0,2,["H4427"]],[2,3,["H7969"]],[3,4,["H8141"]],[4,6,["H3389"]],[6,8,["H517"]],[8,9,["H8034"]],[9,12,["H4322"]],[12,14,["H1323"]],[14,16,["H222"]],[16,17,["H4480"]],[17,18,["H1390"]],[18,21,["H1961"]],[21,22,["H4421"]],[22,23,["H996"]],[23,24,["H29"]],[24,26,["H3379"]]]},{"k":11456,"v":[[0,2,["H29"]],[2,3,["H631","(H853)"]],[3,5,["H4421"]],[5,10,["H2428"]],[10,13,["H1368"]],[13,15,["H4421"]],[15,17,["H702"]],[17,18,["H3967"]],[18,19,["H505"]],[19,20,["H977"]],[20,21,["H376"]],[21,22,["H3379"]],[22,28,["H6186","H4421"]],[28,29,["H5973"]],[29,32,["H8083"]],[32,33,["H3967"]],[33,34,["H505"]],[34,35,["H977"]],[35,36,["H376"]],[36,39,["H1368"]],[39,41,["H2428"]]]},{"k":11457,"v":[[0,2,["H29"]],[2,4,["H6965"]],[4,5,["H4480","H5921"]],[5,6,["H2022"]],[6,7,["H6787"]],[7,8,["H834"]],[8,11,["H2022"]],[11,12,["H669"]],[12,14,["H559"]],[14,15,["H8085"]],[15,18,["H3379"]],[18,20,["H3605"]],[20,21,["H3478"]]]},{"k":11458,"v":[[0,3,["H3808"]],[3,5,["H3045"]],[5,6,["H3588"]],[6,8,["H3068"]],[8,9,["H430"]],[9,11,["H3478"]],[11,12,["H5414"]],[12,14,["H4467"]],[14,15,["H5921"]],[15,16,["H3478"]],[16,18,["H1732"]],[18,20,["H5769"]],[20,27,["H1121"]],[27,30,["H1285"]],[30,32,["H4417"]]]},{"k":11459,"v":[[0,2,["H3379"]],[2,4,["H1121"]],[4,6,["H5028"]],[6,8,["H5650"]],[8,10,["H8010"]],[10,12,["H1121"]],[12,14,["H1732"]],[14,17,["H6965"]],[17,20,["H4775"]],[20,21,["H5921"]],[21,23,["H113"]]]},{"k":11460,"v":[[0,4,["H6908"]],[4,5,["H5921"]],[5,7,["H7386"]],[7,8,["H376"]],[8,10,["H1121"]],[10,12,["H1100"]],[12,16,["H553"]],[16,17,["H5921"]],[17,18,["H7346"]],[18,20,["H1121"]],[20,22,["H8010"]],[22,24,["H7346"]],[24,25,["H1961"]],[25,26,["H5288"]],[26,28,["H7390","H3824"]],[28,31,["H3808"]],[31,32,["H2388","H6440"]],[32,33,[]]]},{"k":11461,"v":[[0,2,["H6258"]],[2,3,["H859"]],[3,4,["H559"]],[4,6,["H2388"]],[6,8,["H4467"]],[8,11,["H3068"]],[11,14,["H3027"]],[14,17,["H1121"]],[17,19,["H1732"]],[19,21,["H859"]],[21,24,["H7227"]],[24,25,["H1995"]],[25,29,["H5973"]],[29,31,["H2091"]],[31,32,["H5695"]],[32,33,["H834"]],[33,34,["H3379"]],[34,35,["H6213"]],[35,38,["H430"]]]},{"k":11462,"v":[[0,3,["H3808"]],[3,5,["H5080","(H853)"]],[5,7,["H3548"]],[7,10,["H3068","(H853)"]],[10,12,["H1121"]],[12,14,["H175"]],[14,17,["H3881"]],[17,20,["H6213"]],[20,22,["H3548"]],[22,28,["H5971"]],[28,31,["H776"]],[31,34,["H3605"]],[34,35,["H935"]],[35,37,["H4390","H3027"]],[37,41,["H1121","H1241"]],[41,42,["H6499"]],[42,44,["H7651"]],[44,45,["H352"]],[45,49,["H1961"]],[49,51,["H3548"]],[51,56,["H3808"]],[56,57,["H430"]]]},{"k":11463,"v":[[0,4,["H587"]],[4,6,["H3068"]],[6,9,["H430"]],[9,13,["H3808"]],[13,14,["H5800"]],[14,18,["H3548"]],[18,20,["H8334"]],[20,23,["H3068"]],[23,26,["H1121"]],[26,28,["H175"]],[28,31,["H3881"]],[31,35,["H4399"]]]},{"k":11464,"v":[[0,3,["H6999"]],[3,6,["H3068"]],[6,8,["H1242","H1242"]],[8,11,["H6153","H6153"]],[11,13,["H5930"]],[13,15,["H5561"]],[15,16,["H7004"]],[16,18,["H3899","H4635"]],[18,24,["H5921"]],[24,26,["H2889"]],[26,27,["H7979"]],[27,30,["H4501"]],[30,32,["H2091"]],[32,35,["H5216"]],[35,38,["H1197"]],[38,40,["H6153","H6153"]],[40,41,["H3588"]],[41,42,["H587"]],[42,43,["H8104","(H853)"]],[43,45,["H4931"]],[45,48,["H3068"]],[48,50,["H430"]],[50,52,["H859"]],[52,54,["H5800"]],[54,55,[]]]},{"k":11465,"v":[[0,2,["H2009"]],[2,3,["H430"]],[3,6,["H5973"]],[6,10,["H7218"]],[10,13,["H3548"]],[13,15,["H8643"]],[15,16,["H2689"]],[16,19,["H7321"]],[19,20,["H5921"]],[20,23,["H1121"]],[23,25,["H3478"]],[25,26,["H3898"]],[26,28,["H408"]],[28,29,["H5973"]],[29,31,["H3068"]],[31,32,["H430"]],[32,35,["H1"]],[35,36,["H3588"]],[36,39,["H3808"]],[39,40,["H6743"]]]},{"k":11466,"v":[[0,2,["H3379"]],[2,3,["H5437","(H853)"]],[3,5,["H3993"]],[5,8,["H935"]],[8,9,["H4480","H310"]],[9,13,["H1961"]],[13,14,["H6440"]],[14,15,["H3063"]],[15,18,["H3993"]],[18,20,["H4480","H310"]],[20,21,[]]]},{"k":11467,"v":[[0,3,["H3063"]],[3,5,["H6437"]],[5,6,["H2009"]],[6,8,["H4421"]],[8,10,["H6440"]],[10,12,["H268"]],[12,15,["H6817"]],[15,18,["H3068"]],[18,21,["H3548"]],[21,22,["H2690"]],[22,25,["H2689"]]]},{"k":11468,"v":[[0,3,["H376"]],[3,5,["H3063"]],[5,8,["H7321"]],[8,12,["H376"]],[12,14,["H3063"]],[14,15,["H7321"]],[15,19,["H1961"]],[19,21,["H430"]],[21,22,["H5062","(H853)"]],[22,23,["H3379"]],[23,25,["H3605"]],[25,26,["H3478"]],[26,27,["H6440"]],[27,28,["H29"]],[28,30,["H3063"]]]},{"k":11469,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5127"]],[6,7,["H4480","H6440"]],[7,8,["H3063"]],[8,10,["H430"]],[10,11,["H5414"]],[11,15,["H3027"]]]},{"k":11470,"v":[[0,2,["H29"]],[2,5,["H5971"]],[5,6,["H5221"]],[6,10,["H7227"]],[10,11,["H4347"]],[11,15,["H5307"]],[15,16,["H2491"]],[16,18,["H4480","H3478"]],[18,19,["H2568"]],[19,20,["H3967"]],[20,21,["H505"]],[21,22,["H977"]],[22,23,["H376"]]]},{"k":11471,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,8,["H3665"]],[8,10,["H1931"]],[10,11,["H6256"]],[11,14,["H1121"]],[14,16,["H3063"]],[16,17,["H553"]],[17,18,["H3588"]],[18,20,["H8172"]],[20,21,["H5921"]],[21,23,["H3068"]],[23,24,["H430"]],[24,27,["H1"]]]},{"k":11472,"v":[[0,2,["H29"]],[2,3,["H7291"]],[3,4,["H310"]],[4,5,["H3379"]],[5,7,["H3920"]],[7,8,["H5892"]],[8,9,["H4480"]],[9,10,["(H853)"]],[10,11,["H1008"]],[11,12,["H854"]],[12,14,["H1323"]],[14,17,["H3466"]],[17,18,["H854"]],[18,20,["H1323"]],[20,23,["H6085"]],[23,26,["H1323"]],[26,27,[]]]},{"k":11473,"v":[[0,1,["H3808"]],[1,3,["H3379"]],[3,4,["H6113"]],[4,5,["H3581"]],[5,6,["H5750"]],[6,9,["H3117"]],[9,11,["H29"]],[11,14,["H3068"]],[14,15,["H5062"]],[15,19,["H4191"]]]},{"k":11474,"v":[[0,2,["H29"]],[2,4,["H2388"]],[4,6,["H5375"]],[6,7,["H702","H6240"]],[7,8,["H802"]],[8,10,["H3205"]],[10,11,["H6242"]],[11,13,["H8147"]],[13,14,["H1121"]],[14,16,["H8337","H6240"]],[16,17,["H1323"]]]},{"k":11475,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H29"]],[8,11,["H1870"]],[11,14,["H1697"]],[14,16,["H3789"]],[16,19,["H4097"]],[19,22,["H5030"]],[22,23,["H5714"]]]},{"k":11476,"v":[[0,2,["H29"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,13,["H5892"]],[13,15,["H1732"]],[15,17,["H609"]],[17,19,["H1121"]],[19,20,["H4427"]],[20,23,["H8478"]],[23,26,["H3117"]],[26,28,["H776"]],[28,30,["H8252"]],[30,31,["H6235"]],[31,32,["H8141"]]]},{"k":11477,"v":[[0,2,["H609"]],[2,3,["H6213"]],[3,7,["H2896"]],[7,9,["H3477"]],[9,12,["H5869"]],[12,15,["H3068"]],[15,17,["H430"]]]},{"k":11478,"v":[[0,4,["H5493","(H853)"]],[4,6,["H4196"]],[6,9,["H5236"]],[9,14,["H1116"]],[14,17,["H7665","(H853)"]],[17,19,["H4676"]],[19,22,["H1438","(H853)"]],[22,24,["H842"]]]},{"k":11479,"v":[[0,2,["H559"]],[2,3,["H3063"]],[3,5,["H1875","(H853)"]],[5,7,["H3068"]],[7,8,["H430"]],[8,11,["H1"]],[11,14,["H6213"]],[14,16,["H8451"]],[16,19,["H4687"]]]},{"k":11480,"v":[[0,4,["H5493"]],[4,7,["H4480","H3605"]],[7,9,["H5892"]],[9,11,["H3063","(H853)"]],[11,14,["H1116"]],[14,17,["H2553"]],[17,20,["H4467"]],[20,22,["H8252"]],[22,23,["H6440"]],[23,24,[]]]},{"k":11481,"v":[[0,3,["H1129"]],[3,4,["H4694"]],[4,5,["H5892"]],[5,7,["H3063"]],[7,8,["H3588"]],[8,10,["H776"]],[10,12,["H8252"]],[12,16,["H369"]],[16,17,["H4421"]],[17,19,["H428"]],[19,20,["H8141"]],[20,21,["H3588"]],[21,23,["H3068"]],[23,27,["H5117"]]]},{"k":11482,"v":[[0,3,["H559"]],[3,5,["H3063"]],[5,8,["H1129","(H853)"]],[8,9,["H428"]],[9,10,["H5892"]],[10,13,["H5437"]],[13,15,["H2346"]],[15,17,["H4026"]],[17,18,["H1817"]],[18,20,["H1280"]],[20,23,["H776"]],[23,25,["H5750"]],[25,26,["H6440"]],[26,28,["H3588"]],[28,31,["H1875","(H853)"]],[31,33,["H3068"]],[33,35,["H430"]],[35,38,["H1875"]],[38,45,["H5117"]],[45,48,["H4480","H5439"]],[48,51,["H1129"]],[51,53,["H6743"]]]},{"k":11483,"v":[[0,2,["H609"]],[2,3,["H1961"]],[3,5,["H2428"]],[5,9,["H5375"]],[9,10,["H6793"]],[10,12,["H7420"]],[12,14,["H4480"]],[14,15,["H3063"]],[15,16,["H7969"]],[16,17,["H3967"]],[17,18,["H505"]],[18,22,["H4480","H1144"]],[22,24,["H5375"]],[24,25,["H4043"]],[25,27,["H1869"]],[27,28,["H7198"]],[28,30,["H3967"]],[30,32,["H8084"]],[32,33,["H505"]],[33,34,["H3605"]],[34,35,["H428"]],[35,38,["H1368"]],[38,40,["H2428"]]]},{"k":11484,"v":[[0,4,["H3318"]],[4,5,["H413"]],[5,7,["H2226"]],[7,9,["H3569"]],[9,12,["H2428"]],[12,15,["H505"]],[15,16,["H505"]],[16,18,["H7969"]],[18,19,["H3967"]],[19,20,["H4818"]],[20,22,["H935"]],[22,23,["H5704"]],[23,24,["H4762"]]]},{"k":11485,"v":[[0,2,["H609"]],[2,4,["H3318"]],[4,5,["H6440"]],[5,13,["H6186","H4421"]],[13,16,["H1516"]],[16,18,["H6859"]],[18,20,["H4762"]]]},{"k":11486,"v":[[0,2,["H609"]],[2,3,["H7121"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H559"]],[10,11,["H3068"]],[11,14,["H369"]],[14,15,["H5973"]],[15,18,["H5826"]],[18,19,["H996"]],[19,21,["H7227"]],[21,27,["H369"]],[27,28,["H3581"]],[28,29,["H5826"]],[29,32,["H3068"]],[32,34,["H430"]],[34,35,["H3588"]],[35,37,["H8172"]],[37,38,["H5921"]],[38,43,["H8034"]],[43,45,["H935"]],[45,46,["H5921"]],[46,47,["H2088"]],[47,48,["H1995"]],[48,50,["H3068"]],[50,51,["H859"]],[51,54,["H430"]],[54,56,["H408"]],[56,57,["H582"]],[57,58,["H6113"]],[58,59,["H5973"]],[59,60,[]]]},{"k":11487,"v":[[0,3,["H3068"]],[3,4,["H5062","(H853)"]],[4,6,["H3569"]],[6,7,["H6440"]],[7,8,["H609"]],[8,10,["H6440"]],[10,11,["H3063"]],[11,14,["H3569"]],[14,15,["H5127"]]]},{"k":11488,"v":[[0,2,["H609"]],[2,5,["H5971"]],[5,6,["H834"]],[6,8,["H5973"]],[8,10,["H7291"]],[10,12,["H5704"]],[12,13,["H1642"]],[13,16,["H4480","H3569"]],[16,18,["H5307"]],[18,22,["H369"]],[22,23,["H4241"]],[23,25,["H3588"]],[25,28,["H7665"]],[28,29,["H6440"]],[29,31,["H3068"]],[31,33,["H6440"]],[33,35,["H4264"]],[35,39,["H5375"]],[39,40,["H3966"]],[40,41,["H7235"]],[41,42,["H7998"]]]},{"k":11489,"v":[[0,3,["H5221","(H853)"]],[3,4,["H3605"]],[4,6,["H5892"]],[6,8,["H5439"]],[8,9,["H1642"]],[9,10,["H3588"]],[10,12,["H6343"]],[12,15,["H3068"]],[15,16,["H1961"]],[16,17,["H5921"]],[17,21,["H962","(H853)"]],[21,22,["H3605"]],[22,24,["H5892"]],[24,25,["H3588"]],[25,27,["H1961"]],[27,29,["H7227"]],[29,30,["H961"]],[30,32,[]]]},{"k":11490,"v":[[0,2,["H5221"]],[2,3,["H1571"]],[3,5,["H168"]],[5,7,["H4735"]],[7,10,["H7617"]],[10,11,["H6629"]],[11,13,["H1581"]],[13,15,["H7230"]],[15,17,["H7725"]],[17,19,["H3389"]]]},{"k":11491,"v":[[0,3,["H7307"]],[3,5,["H430"]],[5,6,["H1961"]],[6,7,["H5921"]],[7,8,["H5838"]],[8,10,["H1121"]],[10,12,["H5752"]]]},{"k":11492,"v":[[0,4,["H3318"]],[4,6,["H6440"]],[6,7,["H609"]],[7,9,["H559"]],[9,12,["H8085"]],[12,15,["H609"]],[15,17,["H3605"]],[17,18,["H3063"]],[18,20,["H1144"]],[20,22,["H3068"]],[22,24,["H5973"]],[24,28,["H1961"]],[28,29,["H5973"]],[29,32,["H518"]],[32,34,["H1875"]],[34,39,["H4672"]],[39,43,["H518"]],[43,45,["H5800"]],[45,49,["H5800"]],[49,50,[]]]},{"k":11493,"v":[[0,5,["H7227","H3117"]],[5,6,["H3478"]],[6,9,["H3808"]],[9,11,["H571"]],[11,12,["H430"]],[12,14,["H3808"]],[14,16,["H3384"]],[16,17,["H3548"]],[17,19,["H3808"]],[19,20,["H8451"]]]},{"k":11494,"v":[[0,6,["H6862"]],[6,8,["H7725"]],[8,9,["H5921"]],[9,11,["H3068"]],[11,12,["H430"]],[12,14,["H3478"]],[14,16,["H1245"]],[16,20,["H4672"]],[20,22,[]]]},{"k":11495,"v":[[0,3,["H1992"]],[3,4,["H6256"]],[4,7,["H369"]],[7,8,["H7965"]],[8,13,["H3318"]],[13,19,["H935"]],[19,20,["H3588"]],[20,21,["H7227"]],[21,22,["H4103"]],[22,24,["H5921"]],[24,25,["H3605"]],[25,27,["H3427"]],[27,30,["H776"]]]},{"k":11496,"v":[[0,2,["H1471"]],[2,4,["H3807"]],[4,6,["H1471"]],[6,8,["H5892"]],[8,10,["H5892"]],[10,11,["H3588"]],[11,12,["H430"]],[12,14,["H2000"]],[14,17,["H3605"]],[17,18,["H6869"]]]},{"k":11497,"v":[[0,3,["H859","H2388"]],[3,7,["H408"]],[7,9,["H3027"]],[9,11,["H7503"]],[11,12,["H3588"]],[12,14,["H6468"]],[14,16,["H3426"]],[16,17,["H7939"]]]},{"k":11498,"v":[[0,3,["H609"]],[3,4,["H8085"]],[4,5,["H428"]],[5,6,["H1697"]],[6,9,["H5016"]],[9,11,["H5752"]],[11,13,["H5030"]],[13,16,["H2388"]],[16,19,["H5674"]],[19,22,["H8251"]],[22,25,["H4480","H3605"]],[25,27,["H776"]],[27,29,["H3063"]],[29,31,["H1144"]],[31,34,["H4480"]],[34,36,["H5892"]],[36,37,["H834"]],[37,40,["H3920"]],[40,42,["H4480","H2022"]],[42,43,["H669"]],[43,45,["H2318","(H853)"]],[45,47,["H4196"]],[47,50,["H3068"]],[50,51,["H834"]],[51,53,["H6440"]],[53,55,["H197"]],[55,58,["H3068"]]]},{"k":11499,"v":[[0,3,["H6908","(H853)"]],[3,4,["H3605"]],[4,5,["H3063"]],[5,7,["H1144"]],[7,10,["H1481"]],[10,11,["H5973"]],[11,15,["H4480","H669"]],[15,17,["H4519"]],[17,21,["H4480","H8095"]],[21,22,["H3588"]],[22,24,["H5307"]],[24,25,["H5921"]],[25,29,["H4480","H3478"]],[29,31,["H7230"]],[31,34,["H7200"]],[34,35,["H3588"]],[35,37,["H3068"]],[37,39,["H430"]],[39,41,["H5973"]],[41,42,[]]]},{"k":11500,"v":[[0,5,["H6908"]],[5,7,["H3389"]],[7,10,["H7992"]],[10,11,["H2320"]],[11,14,["H2568","H6240"]],[14,15,["H8141"]],[15,18,["H4438"]],[18,20,["H609"]]]},{"k":11501,"v":[[0,3,["H2076"]],[3,6,["H3068"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,10,["H4480"]],[10,12,["H7998"]],[12,16,["H935"]],[16,17,["H7651"]],[17,18,["H3967"]],[18,19,["H1241"]],[19,21,["H7651"]],[21,22,["H505"]],[22,23,["H6629"]]]},{"k":11502,"v":[[0,3,["H935"]],[3,6,["H1285"]],[6,8,["H1875","(H853)"]],[8,10,["H3068"]],[10,11,["H430"]],[11,14,["H1"]],[14,16,["H3605"]],[16,18,["H3824"]],[18,21,["H3605"]],[21,23,["H5315"]]]},{"k":11503,"v":[[0,2,["H3605","H834"]],[2,4,["H3808"]],[4,5,["H1875"]],[5,7,["H3068"]],[7,8,["H430"]],[8,10,["H3478"]],[10,15,["H4191"]],[15,16,["H4480"]],[16,17,["H6996"]],[17,18,["H5704"]],[18,19,["H1419"]],[19,21,["H4480","H376"]],[21,22,["H5704"]],[22,23,["H802"]]]},{"k":11504,"v":[[0,3,["H7650"]],[3,6,["H3068"]],[6,9,["H1419"]],[9,10,["H6963"]],[10,13,["H8643"]],[13,16,["H2689"]],[16,19,["H7782"]]]},{"k":11505,"v":[[0,2,["H3605"]],[2,3,["H3063"]],[3,4,["H8055"]],[4,5,["H5921"]],[5,7,["H7621"]],[7,8,["H3588"]],[8,11,["H7650"]],[11,13,["H3605"]],[13,15,["H3824"]],[15,17,["H1245"]],[17,21,["H3605"]],[21,22,["H7522"]],[22,26,["H4672"]],[26,31,["H3068"]],[31,34,["H5117"]],[34,36,["H4480","H5439"]]]},{"k":11506,"v":[[0,2,["H1571"]],[2,4,["H4601"]],[4,6,["H517"]],[6,8,["H609"]],[8,10,["H4428"]],[10,12,["H5493"]],[12,16,["H4480","H1377"]],[16,17,["H834"]],[17,20,["H6213"]],[20,22,["H4656"]],[22,25,["H842"]],[25,27,["H609"]],[27,29,["H3772","(H853)"]],[29,31,["H4656"]],[31,33,["H1854"]],[33,36,["H8313"]],[36,40,["H5158"]],[40,41,["H6939"]]]},{"k":11507,"v":[[0,4,["H1116"]],[4,6,["H3808"]],[6,8,["H5493"]],[8,11,["H4480","H3478"]],[11,12,["H7535"]],[12,14,["H3824"]],[14,16,["H609"]],[16,17,["H1961"]],[17,18,["H8003"]],[18,19,["H3605"]],[19,21,["H3117"]]]},{"k":11508,"v":[[0,4,["H935"]],[4,6,["H1004"]],[6,8,["H430","(H853)"]],[8,13,["H1"]],[13,15,["H6944"]],[15,21,["H6944"]],[21,22,["H3701"]],[22,24,["H2091"]],[24,26,["H3627"]]]},{"k":11509,"v":[[0,3,["H1961"]],[3,4,["H3808"]],[4,6,["H4421"]],[6,7,["H5704"]],[7,9,["H2568"]],[9,11,["H7970"]],[11,12,["H8141"]],[12,15,["H4438"]],[15,17,["H609"]]]},{"k":11510,"v":[[0,3,["H8337"]],[3,5,["H7970"]],[5,6,["H8141"]],[6,9,["H4438"]],[9,11,["H609"]],[11,12,["H1201"]],[12,13,["H4428"]],[13,15,["H3478"]],[15,17,["H5927"]],[17,18,["H5921"]],[18,19,["H3063"]],[19,21,["H1129","(H853)"]],[21,22,["H7414"]],[22,29,["H5414"]],[29,30,["H1115"]],[30,32,["H3318"]],[32,35,["H935"]],[35,37,["H609"]],[37,38,["H4428"]],[38,40,["H3063"]]]},{"k":11511,"v":[[0,2,["H609"]],[2,4,["H3318"]],[4,5,["H3701"]],[5,7,["H2091"]],[7,11,["H4480","H214"]],[11,14,["H1004"]],[14,17,["H3068"]],[17,21,["H4428"]],[21,22,["H1004"]],[22,24,["H7971"]],[24,25,["H413"]],[25,26,["H1130"]],[26,27,["H4428"]],[27,29,["H758"]],[29,31,["H3427"]],[31,33,["H1834"]],[33,34,["H559"]]]},{"k":11512,"v":[[0,4,["H1285"]],[4,5,["H996"]],[5,12,["H996"]],[12,14,["H1"]],[14,17,["H1"]],[17,18,["H2009"]],[18,21,["H7971"]],[21,23,["H3701"]],[23,25,["H2091"]],[25,26,["H1980"]],[26,27,["H6565"]],[27,29,["H1285"]],[29,30,["H854"]],[30,31,["H1201"]],[31,32,["H4428"]],[32,34,["H3478"]],[34,38,["H5927"]],[38,39,["H4480","H5921"]],[39,40,[]]]},{"k":11513,"v":[[0,2,["H1130"]],[2,3,["H8085"]],[3,4,["H413"]],[4,5,["H4428"]],[5,6,["H609"]],[6,8,["H7971","(H853)"]],[8,10,["H8269"]],[10,12,["H834"]],[12,13,["H2428"]],[13,14,["H413"]],[14,16,["H5892"]],[16,18,["H3478"]],[18,21,["H5221","(H853)"]],[21,22,["H5859"]],[22,24,["H1835"]],[24,26,["H66"]],[26,28,["H3605"]],[28,30,["H4543"]],[30,31,["H5892"]],[31,33,["H5321"]]]},{"k":11514,"v":[[0,5,["H1961"]],[5,7,["H1201"]],[7,8,["H8085"]],[8,13,["H2308"]],[13,14,["H4480","H1129","(H853)"]],[14,16,["H7414"]],[16,18,["(H853)"]],[18,20,["H4399"]],[20,21,["H7673"]]]},{"k":11515,"v":[[0,2,["H609"]],[2,4,["H4428"]],[4,5,["H3947","(H853)"]],[5,6,["H3605"]],[6,7,["H3063"]],[7,11,["H5375","(H853)"]],[11,13,["H68"]],[13,15,["H7414"]],[15,18,["H6086"]],[18,20,["H834"]],[20,21,["H1201"]],[21,23,["H1129"]],[23,26,["H1129"]],[26,27,["(H853)"]],[27,28,["H1387"]],[28,30,["H4709"]]]},{"k":11516,"v":[[0,3,["H1931"]],[3,4,["H6256"]],[4,5,["H2607"]],[5,7,["H7203"]],[7,8,["H935"]],[8,9,["H413"]],[9,10,["H609"]],[10,11,["H4428"]],[11,13,["H3063"]],[13,15,["H559"]],[15,16,["H413"]],[16,21,["H8172"]],[21,22,["H5921"]],[22,24,["H4428"]],[24,26,["H758"]],[26,28,["H3808"]],[28,29,["H8172"]],[29,30,["H5921"]],[30,32,["H3068"]],[32,34,["H430"]],[34,35,["H5921","H3651"]],[35,38,["H2428"]],[38,41,["H4428"]],[41,43,["H758"]],[43,44,["H4422"]],[44,48,["H4480","H3027"]]]},{"k":11517,"v":[[0,1,["H1961"]],[1,2,["H3808"]],[2,4,["H3569"]],[4,7,["H3864"]],[7,9,["H7230"]],[9,10,["H2428"]],[10,12,["H3966"]],[12,13,["H7235"]],[13,14,["H7393"]],[14,16,["H6571"]],[16,21,["H8172"]],[21,22,["H5921"]],[22,24,["H3068"]],[24,26,["H5414"]],[26,30,["H3027"]]]},{"k":11518,"v":[[0,1,["H3588"]],[1,3,["H5869"]],[3,6,["H3068"]],[6,10,["H7751"]],[10,13,["H3605"]],[13,14,["H776"]],[14,18,["H2388"]],[18,22,["H5973"]],[22,25,["H3824"]],[25,27,["H8003"]],[27,28,["H413"]],[28,30,["H5921","H2063"]],[30,34,["H5528"]],[34,35,["H3588"]],[35,37,["H4480","H6258"]],[37,40,["H3426"]],[40,41,["H4421"]]]},{"k":11519,"v":[[0,2,["H609"]],[2,4,["H3707"]],[4,5,["H413"]],[5,7,["H7203"]],[7,9,["H5414"]],[9,13,["H4115"]],[13,14,["H1004"]],[14,15,["H3588"]],[15,20,["H2197"]],[20,21,["H5973"]],[21,24,["H5921"]],[24,25,["H2063"]],[25,28,["H609"]],[28,29,["H7533"]],[29,31,["H4480"]],[31,33,["H5971"]],[33,35,["H1931"]],[35,36,["H6256"]]]},{"k":11520,"v":[[0,2,["H2009"]],[2,4,["H1697"]],[4,6,["H609"]],[6,7,["H7223"]],[7,9,["H314"]],[9,10,["H2009"]],[10,13,["H3789"]],[13,14,["H5921"]],[14,16,["H5612"]],[16,19,["H4428"]],[19,21,["H3063"]],[21,23,["H3478"]]]},{"k":11521,"v":[[0,2,["H609"]],[2,5,["H7970"]],[5,7,["H8672"]],[7,8,["H8141"]],[8,11,["H4438"]],[11,13,["H2456"]],[13,16,["H7272"]],[16,17,["H5704"]],[17,19,["H2483"]],[19,21,["H4605"]],[21,23,["H1571"]],[23,26,["H2483"]],[26,28,["H1875"]],[28,29,["H3808","(H853)"]],[29,32,["H3068"]],[32,33,["H3588"]],[33,36,["H7495"]]]},{"k":11522,"v":[[0,2,["H609"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,8,["H4191"]],[8,11,["H259"]],[11,13,["H705"]],[13,14,["H8141"]],[14,17,["H4427"]]]},{"k":11523,"v":[[0,3,["H6912"]],[3,8,["H6913"]],[8,9,["H834"]],[9,12,["H3738"]],[12,17,["H5892"]],[17,19,["H1732"]],[19,21,["H7901"]],[21,25,["H4904"]],[25,26,["H834"]],[26,28,["H4390"]],[28,31,["H1314"]],[31,34,["H2177"]],[34,41,["H7543","H4842","H4639"]],[41,44,["H8313"]],[44,46,["H5704","H3966"]],[46,47,["H1419"]],[47,48,["H8316"]],[48,50,[]]]},{"k":11524,"v":[[0,2,["H3092"]],[2,4,["H1121"]],[4,5,["H4427"]],[5,8,["H8478"]],[8,11,["H2388"]],[11,12,["H5921"]],[12,13,["H3478"]]]},{"k":11525,"v":[[0,3,["H5414"]],[3,4,["H2428"]],[4,6,["H3605"]],[6,8,["H1219"]],[8,9,["H5892"]],[9,11,["H3063"]],[11,13,["H5414"]],[13,14,["H5333"]],[14,17,["H776"]],[17,19,["H3063"]],[19,23,["H5892"]],[23,25,["H669"]],[25,26,["H834"]],[26,27,["H609"]],[27,29,["H1"]],[29,31,["H3920"]]]},{"k":11526,"v":[[0,3,["H3068"]],[3,4,["H1961"]],[4,5,["H5973"]],[5,6,["H3092"]],[6,7,["H3588"]],[7,9,["H1980"]],[9,12,["H7223"]],[12,13,["H1870"]],[13,16,["H1"]],[16,17,["H1732"]],[17,19,["H1875"]],[19,20,["H3808"]],[20,22,["H1168"]]]},{"k":11527,"v":[[0,1,["H3588"]],[1,2,["H1875"]],[2,6,["H430"]],[6,9,["H1"]],[9,11,["H1980"]],[11,14,["H4687"]],[14,16,["H3808"]],[16,19,["H4639"]],[19,21,["H3478"]]]},{"k":11528,"v":[[0,3,["H3068"]],[3,4,["H3559","(H853)"]],[4,6,["H4467"]],[6,9,["H3027"]],[9,11,["H3605"]],[11,12,["H3063"]],[12,13,["H5414"]],[13,15,["H3092"]],[15,16,["H4503"]],[16,19,["H1961"]],[19,20,["H6239"]],[20,22,["H3519"]],[22,24,["H7230"]]]},{"k":11529,"v":[[0,3,["H3820"]],[3,6,["H1361"]],[6,9,["H1870"]],[9,12,["H3068"]],[12,13,["H5750"]],[13,16,["H5493","(H853)"]],[16,19,["H1116"]],[19,21,["H842"]],[21,24,["H4480","H3063"]]]},{"k":11530,"v":[[0,4,["H7969"]],[4,5,["H8141"]],[5,8,["H4427"]],[8,10,["H7971"]],[10,13,["H8269"]],[13,16,["H1134"]],[16,19,["H5662"]],[19,22,["H2148"]],[22,25,["H5417"]],[25,28,["H4322"]],[28,30,["H3925"]],[30,33,["H5892"]],[33,35,["H3063"]]]},{"k":11531,"v":[[0,2,["H5973"]],[2,6,["H3881"]],[6,8,["H8098"]],[8,10,["H5418"]],[10,12,["H2069"]],[12,14,["H6214"]],[14,16,["H8070"]],[16,18,["H3083"]],[18,20,["H138"]],[20,22,["H2900"]],[22,24,["H2899"]],[24,25,["H3881"]],[25,27,["H5973"]],[27,29,["H476"]],[29,31,["H3088"]],[31,32,["H3548"]]]},{"k":11532,"v":[[0,3,["H3925"]],[3,5,["H3063"]],[5,9,["H5612"]],[9,12,["H8451"]],[12,15,["H3068"]],[15,16,["H5973"]],[16,20,["H5437"]],[20,22,["H3605"]],[22,24,["H5892"]],[24,26,["H3063"]],[26,28,["H3925"]],[28,30,["H5971"]]]},{"k":11533,"v":[[0,3,["H6343"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H5921"]],[8,9,["H3605"]],[9,11,["H4467"]],[11,14,["H776"]],[14,15,["H834"]],[15,18,["H5439"]],[18,19,["H3063"]],[19,25,["H3898","H3808"]],[25,26,["H5973"]],[26,27,["H3092"]]]},{"k":11534,"v":[[0,3,["H4480"]],[3,5,["H6430"]],[5,6,["H935"]],[6,7,["H3092"]],[7,8,["H4503"]],[8,10,["H4853"]],[10,11,["H3701"]],[11,12,["H1571"]],[12,14,["H6163"]],[14,15,["H935"]],[15,17,["H6629"]],[17,18,["H7651"]],[18,19,["H505"]],[19,21,["H7651"]],[21,22,["H3967"]],[22,23,["H352"]],[23,25,["H7651"]],[25,26,["H505"]],[26,28,["H7651"]],[28,29,["H3967"]],[29,31,["H8495"]]]},{"k":11535,"v":[[0,2,["H3092"]],[2,3,["H1961","H1980"]],[3,4,["H1432"]],[4,5,["H5704","H4605"]],[5,8,["H1129"]],[8,10,["H3063"]],[10,11,["H1003"]],[11,13,["H5892"]],[13,15,["H4543"]]]},{"k":11536,"v":[[0,3,["H1961"]],[3,4,["H7227"]],[4,5,["H4399"]],[5,8,["H5892"]],[8,10,["H3063"]],[10,13,["H376"]],[13,15,["H4421"]],[15,17,["H1368"]],[17,19,["H2428"]],[19,22,["H3389"]]]},{"k":11537,"v":[[0,2,["H428"]],[2,5,["H6486"]],[5,11,["H1004"]],[11,14,["H1"]],[14,16,["H3063"]],[16,18,["H8269"]],[18,20,["H505"]],[20,21,["H5734"]],[21,23,["H8269"]],[23,25,["H5973"]],[25,28,["H1368"]],[28,30,["H2428"]],[30,31,["H7969"]],[31,32,["H3967"]],[32,33,["H505"]]]},{"k":11538,"v":[[0,2,["H5921","H3027"]],[2,6,["H3076"]],[6,8,["H8269"]],[8,10,["H5973"]],[10,13,["H3967"]],[13,15,["H8084"]],[15,16,["H505"]]]},{"k":11539,"v":[[0,2,["H5921","H3027"]],[2,5,["H6007"]],[5,7,["H1121"]],[7,9,["H2147"]],[9,13,["H5068"]],[13,16,["H3068"]],[16,19,["H5973"]],[19,21,["H3967"]],[21,22,["H505"]],[22,24,["H1368"]],[24,26,["H2428"]]]},{"k":11540,"v":[[0,2,["H4480"]],[2,3,["H1144"]],[3,4,["H450"]],[4,7,["H1368"]],[7,9,["H2428"]],[9,11,["H5973"]],[11,14,["H5401"]],[14,16,["H7198"]],[16,18,["H4043"]],[18,20,["H3967"]],[20,21,["H505"]]]},{"k":11541,"v":[[0,2,["H5921","H3027"]],[2,5,["H3075"]],[5,7,["H5973"]],[7,10,["H3967"]],[10,12,["H8084"]],[12,13,["H505"]],[13,15,["H2502"]],[15,18,["H6635"]]]},{"k":11542,"v":[[0,1,["H428"]],[1,3,["H8334","(H853)"]],[3,5,["H4428"]],[5,6,["H4480","H905"]],[6,8,["H834"]],[8,10,["H4428"]],[10,11,["H5414"]],[11,14,["H4013"]],[14,15,["H5892"]],[15,17,["H3605"]],[17,18,["H3063"]]]},{"k":11543,"v":[[0,2,["H3092"]],[2,3,["H1961"]],[3,4,["H6239"]],[4,6,["H3519"]],[6,8,["H7230"]],[8,11,["H2859"]],[11,13,["H256"]]]},{"k":11544,"v":[[0,2,["H7093"]],[2,4,["H8141"]],[4,7,["H3381"]],[7,8,["H413"]],[8,9,["H256"]],[9,11,["H8111"]],[11,13,["H256"]],[13,14,["H2076"]],[14,15,["H6629"]],[15,17,["H1241"]],[17,21,["H7230"]],[21,25,["H5971"]],[25,26,["H834"]],[26,29,["H5973"]],[29,32,["H5496"]],[32,36,["H5927"]],[36,39,["H413"]],[39,40,["H7433"]]]},{"k":11545,"v":[[0,2,["H256"]],[2,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3092"]],[8,9,["H4428"]],[9,11,["H3063"]],[11,14,["H1980"]],[14,15,["H5973"]],[15,18,["H7433"]],[18,21,["H559"]],[21,23,["H3644"]],[23,26,["H3644"]],[26,30,["H5971"]],[30,33,["H5971"]],[33,38,["H5973"]],[38,42,["H4421"]]]},{"k":11546,"v":[[0,2,["H3092"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,8,["H3478"]],[8,9,["H1875"]],[9,12,["H4994"]],[12,13,["(H853)"]],[13,15,["H1697"]],[15,18,["H3068"]],[18,20,["H3117"]]]},{"k":11547,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,7,["H6908","(H853)"]],[7,9,["H5030"]],[9,10,["H702"]],[10,11,["H3967"]],[11,12,["H376"]],[12,14,["H559"]],[14,15,["H413"]],[15,19,["H1980"]],[19,20,["H413"]],[20,21,["H7433"]],[21,23,["H4421"]],[23,24,["H518"]],[24,27,["H2308"]],[27,30,["H559"]],[30,32,["H5927"]],[32,34,["H430"]],[34,36,["H5414"]],[36,40,["H4428"]],[40,41,["H3027"]]]},{"k":11548,"v":[[0,2,["H3092"]],[2,3,["H559"]],[3,6,["H369"]],[6,7,["H6311"]],[7,9,["H5030"]],[9,12,["H3068"]],[12,13,["H5750"]],[13,17,["H1875"]],[17,19,["H4480","H854"]]]},{"k":11549,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3092"]],[8,11,["H5750"]],[11,12,["H259"]],[12,13,["H376"]],[13,15,["H4480","H854"]],[15,18,["H1875"]],[18,19,["(H853)"]],[19,21,["H3068"]],[21,23,["H589"]],[23,24,["H8130"]],[24,26,["H3588"]],[26,28,["H369"]],[28,29,["H5012"]],[29,30,["H2896"]],[30,31,["H5921"]],[31,33,["H3588"]],[33,34,["H3605","H3117"]],[34,35,["H7451"]],[35,37,["H1931"]],[37,39,["H4321"]],[39,41,["H1121"]],[41,43,["H3229"]],[43,45,["H3092"]],[45,46,["H559"]],[46,48,["H408"]],[48,50,["H4428"]],[50,51,["H559"]],[51,52,["H3651"]]]},{"k":11550,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H7121"]],[6,7,["H413"]],[7,8,["H259"]],[8,11,["H5631"]],[11,13,["H559"]],[13,15,["H4116"]],[15,16,["H4319"]],[16,18,["H1121"]],[18,20,["H3229"]]]},{"k":11551,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,7,["H3092"]],[7,8,["H4428"]],[8,10,["H3063"]],[10,11,["H3427"]],[11,12,["H376"]],[12,15,["H5921"]],[15,17,["H3678"]],[17,18,["H3847"]],[18,21,["H899"]],[21,24,["H3427"]],[24,28,["H1637"]],[28,32,["H6607"]],[32,35,["H8179"]],[35,37,["H8111"]],[37,39,["H3605"]],[39,41,["H5030"]],[41,42,["H5012"]],[42,43,["H6440"]],[43,44,[]]]},{"k":11552,"v":[[0,2,["H6667"]],[2,4,["H1121"]],[4,6,["H3668"]],[6,8,["H6213"]],[8,10,["H7161"]],[10,12,["H1270"]],[12,14,["H559"]],[14,15,["H3541"]],[15,16,["H559"]],[16,18,["H3068"]],[18,20,["H428"]],[20,23,["H5055","(H853)"]],[23,24,["H758"]],[24,25,["H5704"]],[25,28,["H3615"]]]},{"k":11553,"v":[[0,2,["H3605"]],[2,4,["H5030"]],[4,5,["H5012"]],[5,6,["H3651"]],[6,7,["H559"]],[7,9,["H5927"]],[9,11,["H7433"]],[11,13,["H6743"]],[13,16,["H3068"]],[16,18,["H5414"]],[18,22,["H3027"]],[22,25,["H4428"]]]},{"k":11554,"v":[[0,3,["H4397"]],[3,4,["H834"]],[4,5,["H1980"]],[5,7,["H7121"]],[7,8,["H4321"]],[8,9,["H1696"]],[9,10,["H413"]],[10,12,["H559"]],[12,13,["H2009"]],[13,15,["H1697"]],[15,18,["H5030"]],[18,20,["H2896"]],[20,21,["H413"]],[21,23,["H4428"]],[23,25,["H259"]],[25,26,["H6310"]],[26,29,["H1697"]],[29,33,["H4994"]],[33,34,["H1961"]],[34,36,["H259"]],[36,37,["H4480"]],[37,40,["H1696"]],[40,42,["H2896"]]]},{"k":11555,"v":[[0,2,["H4321"]],[2,3,["H559"]],[3,6,["H3068"]],[6,7,["H2416"]],[7,8,["H3588","(H853)"]],[8,9,["H834"]],[9,11,["H430"]],[11,12,["H559"]],[12,16,["H1696"]]]},{"k":11556,"v":[[0,5,["H935"]],[5,6,["H413"]],[6,8,["H4428"]],[8,10,["H4428"]],[10,11,["H559"]],[11,12,["H413"]],[12,14,["H4318"]],[14,17,["H1980"]],[17,18,["H413"]],[18,19,["H7433"]],[19,21,["H4421"]],[21,22,["H518"]],[22,25,["H2308"]],[25,28,["H559"]],[28,31,["H5927"]],[31,33,["H6743"]],[33,38,["H5414"]],[38,41,["H3027"]]]},{"k":11557,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,8,["H5704","H4100"]],[8,9,["H6471"]],[9,11,["H589"]],[11,12,["H7650"]],[12,14,["H834"]],[14,16,["H1696"]],[16,17,["H3808"]],[17,18,["H7535"]],[18,20,["H571"]],[20,21,["H413"]],[21,25,["H8034"]],[25,28,["H3068"]]]},{"k":11558,"v":[[0,3,["H559"]],[3,6,["H7200","(H853)"]],[6,7,["H3605"]],[7,8,["H3478"]],[8,9,["H6327"]],[9,10,["H5921"]],[10,12,["H2022"]],[12,14,["H6629"]],[14,15,["H834"]],[15,17,["H369"]],[17,18,["H7462"]],[18,21,["H3068"]],[21,22,["H559"]],[22,23,["H428"]],[23,25,["H3808"]],[25,26,["H113"]],[26,29,["H7725"]],[29,32,["H376"]],[32,35,["H1004"]],[35,37,["H7965"]]]},{"k":11559,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3092"]],[8,11,["H3808"]],[11,12,["H559","H413"]],[12,17,["H3808"]],[17,18,["H5012"]],[18,19,["H2896"]],[19,20,["H5921"]],[20,22,["H3588","H518"]],[22,23,["H7451"]]]},{"k":11560,"v":[[0,3,["H559"]],[3,4,["H3651"]],[4,5,["H8085"]],[5,7,["H1697"]],[7,10,["H3068"]],[10,12,["H7200","(H853)"]],[12,14,["H3068"]],[14,15,["H3427"]],[15,16,["H5921"]],[16,18,["H3678"]],[18,20,["H3605"]],[20,22,["H6635"]],[22,24,["H8064"]],[24,25,["H5975"]],[25,26,["H5921"]],[26,29,["H3225"]],[29,33,["H8040"]]]},{"k":11561,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H4310"]],[5,7,["H6601","(H853)"]],[7,8,["H256"]],[8,9,["H4428"]],[9,11,["H3478"]],[11,16,["H5927"]],[16,18,["H5307"]],[18,20,["H7433"]],[20,22,["H2088"]],[22,23,["H559"]],[23,24,["H559"]],[24,27,["H3602"]],[27,29,["H2088"]],[29,30,["H559"]],[30,33,["H3602"]]]},{"k":11562,"v":[[0,4,["H3318"]],[4,6,["H7307"]],[6,8,["H5975"]],[8,9,["H6440"]],[9,11,["H3068"]],[11,13,["H559"]],[13,14,["H589"]],[14,16,["H6601"]],[16,20,["H3068"]],[20,21,["H559"]],[21,22,["H413"]],[22,24,["H4100"]]]},{"k":11563,"v":[[0,3,["H559"]],[3,7,["H3318"]],[7,9,["H1961"]],[9,11,["H8267"]],[11,12,["H7307"]],[12,15,["H6310"]],[15,17,["H3605"]],[17,19,["H5030"]],[19,23,["H559"]],[23,26,["H6601"]],[26,31,["H1571"]],[31,32,["H3201"]],[32,34,["H3318"]],[34,36,["H6213"]],[36,38,["H3651"]]]},{"k":11564,"v":[[0,1,["H6258"]],[1,3,["H2009"]],[3,5,["H3068"]],[5,7,["H5414"]],[7,9,["H8267"]],[9,10,["H7307"]],[10,13,["H6310"]],[13,15,["H428"]],[15,17,["H5030"]],[17,20,["H3068"]],[20,22,["H1696"]],[22,23,["H7451"]],[23,24,["H5921"]],[24,25,[]]]},{"k":11565,"v":[[0,2,["H6667"]],[2,4,["H1121"]],[4,6,["H3668"]],[6,8,["H5066"]],[8,10,["H5221","(H853)"]],[10,11,["H4321"]],[11,12,["H5921"]],[12,14,["H3895"]],[14,16,["H559"]],[16,17,["H335","H2088"]],[17,18,["H1870"]],[18,19,["H5674"]],[19,21,["H7307"]],[21,24,["H3068"]],[24,25,["H4480","H854"]],[25,28,["H1696"]],[28,29,["H854"]],[29,30,[]]]},{"k":11566,"v":[[0,2,["H4321"]],[2,3,["H559"]],[3,4,["H2009"]],[4,7,["H7200"]],[7,9,["H1931"]],[9,10,["H3117"]],[10,11,["H834"]],[11,14,["H935"]],[14,18,["H2315","H2315"]],[18,21,["H2244"]]]},{"k":11567,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H3947"]],[7,8,["(H853)"]],[8,9,["H4321"]],[9,13,["H7725"]],[13,14,["H413"]],[14,15,["H526"]],[15,17,["H8269"]],[17,20,["H5892"]],[20,22,["H413"]],[22,23,["H3101"]],[23,25,["H4428"]],[25,26,["H1121"]]]},{"k":11568,"v":[[0,2,["H559"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H4428"]],[6,7,["H7760"]],[7,8,["H2088"]],[8,12,["H1004","H3608"]],[12,14,["H398"]],[14,17,["H3899"]],[17,19,["H3906"]],[19,22,["H4325"]],[22,24,["H3906"]],[24,25,["H5704"]],[25,27,["H7725"]],[27,29,["H7965"]]]},{"k":11569,"v":[[0,2,["H4321"]],[2,3,["H559"]],[3,4,["H518"]],[4,7,["H7725","H7725"]],[7,9,["H7965"]],[9,12,["H3808"]],[12,14,["H3068"]],[14,15,["H1696"]],[15,20,["H559"]],[20,21,["H8085"]],[21,22,["H3605"]],[22,24,["H5971"]]]},{"k":11570,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,7,["H3092"]],[7,9,["H4428"]],[9,11,["H3063"]],[11,13,["H5927"]],[13,14,["H413"]],[14,15,["H7433"]]]},{"k":11571,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3092"]],[8,12,["H2664"]],[12,15,["H935"]],[15,18,["H4421"]],[18,22,["H859","H3847"]],[22,24,["H899"]],[24,27,["H4428"]],[27,29,["H3478"]],[29,31,["H2664"]],[31,34,["H935"]],[34,37,["H4421"]]]},{"k":11572,"v":[[0,3,["H4428"]],[3,5,["H758"]],[5,7,["H6680","(H853)"]],[7,9,["H8269"]],[9,12,["H7393"]],[12,13,["H834"]],[13,17,["H559"]],[17,18,["H3898"]],[18,20,["H3808"]],[20,21,["H854"]],[21,22,["H6996"]],[22,23,["H854"]],[23,24,["H1419"]],[24,25,["H3588","H518"]],[25,26,["H905"]],[26,27,["H854"]],[27,29,["H4428"]],[29,31,["H3478"]]]},{"k":11573,"v":[[0,5,["H1961"]],[5,8,["H8269"]],[8,11,["H7393"]],[11,12,["H7200","(H853)"]],[12,13,["H3092"]],[13,15,["H1992"]],[15,16,["H559"]],[16,17,["H1931"]],[17,20,["H4428"]],[20,22,["H3478"]],[22,25,["H5437"]],[25,26,["H5921"]],[26,29,["H3898"]],[29,31,["H3092"]],[31,33,["H2199"]],[33,36,["H3068"]],[36,37,["H5826"]],[37,40,["H430"]],[40,41,["H5496"]],[41,45,["H4480"]],[45,46,[]]]},{"k":11574,"v":[[0,5,["H1961"]],[5,9,["H8269"]],[9,12,["H7393"]],[12,13,["H7200"]],[13,14,["H3588"]],[14,16,["H1961"]],[16,17,["H3808"]],[17,19,["H4428"]],[19,21,["H3478"]],[21,25,["H7725"]],[25,27,["H4480","H310"]],[27,28,[]]]},{"k":11575,"v":[[0,4,["H376"]],[4,5,["H4900"]],[5,7,["H7198"]],[7,10,["H8537"]],[10,12,["H5221","(H853)"]],[12,14,["H4428"]],[14,16,["H3478"]],[16,17,["H996"]],[17,19,["H1694"]],[19,22,["H8302"]],[22,25,["H559"]],[25,29,["H7395"]],[29,30,["H2015"]],[30,32,["H3027"]],[32,38,["H3318"]],[38,39,["H4480"]],[39,41,["H4264"]],[41,42,["H3588"]],[42,45,["H2470"]]]},{"k":11576,"v":[[0,3,["H4421"]],[3,4,["H5927"]],[4,5,["H1931"]],[5,6,["H3117"]],[6,9,["H4428"]],[9,11,["H3478"]],[11,14,["H1961","H5975"]],[14,17,["H4818"]],[17,18,["H5227"]],[18,20,["H758"]],[20,21,["H5704"]],[21,23,["H6153"]],[23,27,["H6256"]],[27,30,["H8121"]],[30,32,["H935"]],[32,34,["H4191"]]]},{"k":11577,"v":[[0,2,["H3092"]],[2,4,["H4428"]],[4,6,["H3063"]],[6,7,["H7725"]],[7,8,["H413"]],[8,10,["H1004"]],[10,12,["H7965"]],[12,14,["H3389"]]]},{"k":11578,"v":[[0,2,["H3058"]],[2,4,["H1121"]],[4,6,["H2607"]],[6,8,["H2374"]],[8,10,["H3318"]],[10,12,["H413","H6440"]],[12,15,["H559"]],[15,16,["H413"]],[16,17,["H4428"]],[17,18,["H3092"]],[18,21,["H5826"]],[21,23,["H7563"]],[23,25,["H157"]],[25,28,["H8130"]],[28,30,["H3068"]],[30,31,["H2063"]],[31,33,["H7110"]],[33,34,["H5921"]],[34,37,["H4480","H6440"]],[37,39,["H3068"]]]},{"k":11579,"v":[[0,1,["H61"]],[1,4,["H2896"]],[4,5,["H1697"]],[5,6,["H4672"]],[6,7,["H5973"]],[7,10,["H3588"]],[10,14,["H1197"]],[14,16,["H842"]],[16,18,["H4480"]],[18,20,["H776"]],[20,23,["H3559"]],[23,25,["H3824"]],[25,27,["H1875"]],[27,28,["H430"]]]},{"k":11580,"v":[[0,2,["H3092"]],[2,3,["H3427"]],[3,5,["H3389"]],[5,9,["H3318"]],[9,10,["H7725"]],[10,13,["H5971"]],[13,15,["H4480","H884"]],[15,16,["H5704"]],[16,17,["H2022"]],[17,18,["H669"]],[18,22,["H7725"]],[22,23,["H413"]],[23,25,["H3068"]],[25,26,["H430"]],[26,29,["H1"]]]},{"k":11581,"v":[[0,3,["H5975"]],[3,4,["H8199"]],[4,7,["H776"]],[7,9,["H3605"]],[9,11,["H1219"]],[11,12,["H5892"]],[12,14,["H3063"]],[14,15,["H5892"]],[15,17,["H5892"]]]},{"k":11582,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H8199"]],[5,7,["H7200"]],[7,8,["H4100"]],[8,9,["H859"]],[9,10,["H6213"]],[10,11,["H3588"]],[11,13,["H8199"]],[13,14,["H3808"]],[14,16,["H120"]],[16,17,["H3588"]],[17,20,["H3068"]],[20,23,["H5973"]],[23,27,["H1697","H4941"]]]},{"k":11583,"v":[[0,2,["H6258"]],[2,5,["H6343"]],[5,8,["H3068"]],[8,9,["H1961"]],[9,10,["H5921"]],[10,13,["H8104"]],[13,15,["H6213"]],[15,17,["H3588"]],[17,20,["H369"]],[20,21,["H5766"]],[21,22,["H5973"]],[22,24,["H3068"]],[24,26,["H430"]],[26,28,["H4856"]],[28,30,["H6440"]],[30,32,["H4727"]],[32,34,["H7810"]]]},{"k":11584,"v":[[0,1,["H1571"]],[1,3,["H3389"]],[3,5,["H3092"]],[5,6,["H5975"]],[6,7,["H4480"]],[7,9,["H3881"]],[9,13,["H3548"]],[13,17,["H4480","H7218"]],[17,20,["H1"]],[20,22,["H3478"]],[22,25,["H4941"]],[25,28,["H3068"]],[28,31,["H7379"]],[31,34,["H7725"]],[34,36,["H3389"]]]},{"k":11585,"v":[[0,3,["H6680","H5921"]],[3,5,["H559"]],[5,6,["H3541"]],[6,9,["H6213"]],[9,12,["H3374"]],[12,15,["H3068"]],[15,16,["H530"]],[16,20,["H8003"]],[20,21,["H3824"]]]},{"k":11586,"v":[[0,4,["H3605","H7379","H834"]],[4,6,["H935"]],[6,7,["H5921"]],[7,11,["H4480","H251"]],[11,13,["H3427"]],[13,16,["H5892"]],[16,17,["H996"]],[17,18,["H1818"]],[18,20,["H1818"]],[20,21,["H996"]],[21,22,["H8451"]],[22,24,["H4687"]],[24,25,["H2706"]],[25,27,["H4941"]],[27,31,["H2094"]],[31,35,["H816"]],[35,36,["H3808"]],[36,39,["H3068"]],[39,42,["H7110"]],[42,43,["H1961"]],[43,44,["H5921"]],[44,47,["H5921"]],[47,49,["H251"]],[49,50,["H3541"]],[50,51,["H6213"]],[51,55,["H3808"]],[55,56,["H816"]]]},{"k":11587,"v":[[0,2,["H2009"]],[2,3,["H568"]],[3,5,["H7218"]],[5,6,["H3548"]],[6,8,["H5921"]],[8,11,["H3605"]],[11,12,["H1697"]],[12,15,["H3068"]],[15,17,["H2069"]],[17,19,["H1121"]],[19,21,["H3458"]],[21,23,["H5057"]],[23,26,["H1004"]],[26,28,["H3063"]],[28,30,["H3605"]],[30,32,["H4428"]],[32,33,["H1697"]],[33,36,["H3881"]],[36,39,["H7860"]],[39,40,["H6440"]],[40,42,["H6213"]],[42,43,["H2388"]],[43,46,["H3068"]],[46,48,["H1961"]],[48,49,["H5973"]],[49,51,["H2896"]]]},{"k":11588,"v":[[0,4,["H1961"]],[4,5,["H310"]],[5,6,["H3651"]],[6,10,["H1121"]],[10,12,["H4124"]],[12,15,["H1121"]],[15,17,["H5983"]],[17,19,["H5973"]],[19,22,["H4480"]],[22,24,["H5984"]],[24,25,["H935"]],[25,26,["H5921"]],[26,27,["H3092"]],[27,29,["H4421"]]]},{"k":11589,"v":[[0,3,["H935"]],[3,6,["H5046"]],[6,7,["H3092"]],[7,8,["H559"]],[8,10,["H935"]],[10,12,["H7227"]],[12,13,["H1995"]],[13,14,["H5921"]],[14,17,["H4480","H5676"]],[17,19,["H3220"]],[19,23,["H4480","H758"]],[23,25,["H2009"]],[25,29,["H2688"]],[29,30,["H1931"]],[30,32,["H5872"]]]},{"k":11590,"v":[[0,2,["H3092"]],[2,3,["H3372"]],[3,5,["H5414","(H853)"]],[5,6,["H6440"]],[6,8,["H1875"]],[8,10,["H3068"]],[10,12,["H7121"]],[12,14,["H6685"]],[14,15,["H5921"]],[15,16,["H3605"]],[16,17,["H3063"]]]},{"k":11591,"v":[[0,2,["H3063"]],[2,5,["H6908"]],[5,7,["H1245"]],[7,9,["H4480"]],[9,11,["H3068"]],[11,12,["H1571"]],[12,15,["H4480","H3605"]],[15,17,["H5892"]],[17,19,["H3063"]],[19,21,["H935"]],[21,23,["H1245","(H853)"]],[23,25,["H3068"]]]},{"k":11592,"v":[[0,2,["H3092"]],[2,3,["H5975"]],[3,6,["H6951"]],[6,8,["H3063"]],[8,10,["H3389"]],[10,13,["H1004"]],[13,16,["H3068"]],[16,17,["H6440"]],[17,19,["H2319"]],[19,20,["H2691"]]]},{"k":11593,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H430"]],[5,8,["H1"]],[8,10,["H3808"]],[10,11,["H859"]],[11,12,["H430"]],[12,14,["H8064"]],[14,16,["H4910"]],[16,18,["H859"]],[18,20,["H3605"]],[20,22,["H4467"]],[22,25,["H1471"]],[25,29,["H3027"]],[29,33,["H3581"]],[33,35,["H1369"]],[35,38,["H369"]],[38,42,["H3320","H5973"]],[42,43,[]]]},{"k":11594,"v":[[0,2,["H3808"]],[2,3,["H859"]],[3,5,["H430"]],[5,9,["H3423","(H853)"]],[9,11,["H3427"]],[11,13,["H2063"]],[13,14,["H776"]],[14,15,["H4480","H6440"]],[15,17,["H5971"]],[17,18,["H3478"]],[18,20,["H5414"]],[20,24,["H2233"]],[24,26,["H85"]],[26,28,["H157"]],[28,30,["H5769"]]]},{"k":11595,"v":[[0,3,["H3427"]],[3,7,["H1129"]],[7,10,["H4720"]],[10,14,["H8034"]],[14,15,["H559"]]]},{"k":11596,"v":[[0,1,["H518"]],[1,3,["H7451"]],[3,4,["H935"]],[4,5,["H5921"]],[5,9,["H2719"]],[9,10,["H8196"]],[10,12,["H1698"]],[12,14,["H7458"]],[14,16,["H5975"]],[16,17,["H6440"]],[17,18,["H2088"]],[18,19,["H1004"]],[19,23,["H6440"]],[23,24,["H3588"]],[24,26,["H8034"]],[26,29,["H2088"]],[29,30,["H1004"]],[30,32,["H2199"]],[32,33,["H413"]],[33,37,["H4480","H6869"]],[37,41,["H8085"]],[41,43,["H3467"]]]},{"k":11597,"v":[[0,2,["H6258"]],[2,3,["H2009"]],[3,5,["H1121"]],[5,7,["H5983"]],[7,9,["H4124"]],[9,11,["H2022"]],[11,12,["H8165"]],[12,13,["H834"]],[13,16,["H3808"]],[16,17,["H5414"]],[17,18,["H3478"]],[18,19,["H935"]],[19,22,["H935"]],[22,26,["H4480","H776"]],[26,28,["H4714"]],[28,29,["H3588"]],[29,31,["H5493"]],[31,32,["H4480","H5921"]],[32,35,["H8045"]],[35,37,["H3808"]]]},{"k":11598,"v":[[0,1,["H2009"]],[1,5,["H1992"]],[5,6,["H1580","H5921"]],[6,9,["H935"]],[9,13,["H1644"]],[13,16,["H4480","H3425"]],[16,17,["H834"]],[17,23,["H3423"]]]},{"k":11599,"v":[[0,3,["H430"]],[3,6,["H3808"]],[6,7,["H8199"]],[7,9,["H3588"]],[9,12,["H369"]],[12,13,["H3581"]],[13,14,["H6440"]],[14,15,["H2088"]],[15,16,["H7227"]],[16,17,["H1995"]],[17,19,["H935"]],[19,20,["H5921"]],[20,22,["H3808"]],[22,23,["H3045"]],[23,24,["H587"]],[24,25,["H4100"]],[25,27,["H6213"]],[27,28,["H3588"]],[28,30,["H5869"]],[30,32,["H5921"]],[32,33,[]]]},{"k":11600,"v":[[0,2,["H3605"]],[2,3,["H3063"]],[3,4,["H5975"]],[4,5,["H6440"]],[5,7,["H3068"]],[7,8,["H1571"]],[8,11,["H2945"]],[11,13,["H802"]],[13,16,["H1121"]]]},{"k":11601,"v":[[0,2,["H5921"]],[2,3,["H3166"]],[3,5,["H1121"]],[5,7,["H2148"]],[7,9,["H1121"]],[9,11,["H1141"]],[11,13,["H1121"]],[13,15,["H3273"]],[15,17,["H1121"]],[17,19,["H4983"]],[19,21,["H3881"]],[21,22,["H4480"]],[22,24,["H1121"]],[24,26,["H623"]],[26,27,["H1961"]],[27,29,["H7307"]],[29,32,["H3068"]],[32,35,["H8432"]],[35,38,["H6951"]]]},{"k":11602,"v":[[0,3,["H559"]],[3,4,["H7181"]],[4,6,["H3605"]],[6,7,["H3063"]],[7,10,["H3427"]],[10,12,["H3389"]],[12,15,["H4428"]],[15,16,["H3092"]],[16,17,["H3541"]],[17,18,["H559"]],[18,20,["H3068"]],[20,25,["(H859)","H3372","H408"]],[25,26,["H408"]],[26,27,["H2865"]],[27,30,["H4480","H6440"]],[30,31,["H2088"]],[31,32,["H7227"]],[32,33,["H1995"]],[33,34,["H3588"]],[34,36,["H4421"]],[36,38,["H3808"]],[38,40,["H3588"]],[40,41,["H430"]]]},{"k":11603,"v":[[0,2,["H4279"]],[2,5,["H3381"]],[5,6,["H5921"]],[6,8,["H2009"]],[8,11,["H5927"]],[11,14,["H4608"]],[14,16,["H6732"]],[16,20,["H4672"]],[20,24,["H5490"]],[24,27,["H5158"]],[27,28,["H6440"]],[28,30,["H4057"]],[30,32,["H3385"]]]},{"k":11604,"v":[[0,3,["H3808"]],[3,6,["H3898"]],[6,8,["H2063"]],[8,11,["H3320"]],[11,12,["H5975"]],[12,16,["H7200","(H853)"]],[16,18,["H3444"]],[18,21,["H3068"]],[21,22,["H5973"]],[22,25,["H3063"]],[25,27,["H3389"]],[27,28,["H3372"]],[28,29,["H408"]],[29,30,["H408"]],[30,32,["H2865"]],[32,34,["H4279"]],[34,36,["H3318"]],[36,37,["H6440"]],[37,41,["H3068"]],[41,44,["H5973"]],[44,45,[]]]},{"k":11605,"v":[[0,2,["H3092"]],[2,5,["H6915"]],[5,8,["H639"]],[8,11,["H776"]],[11,13,["H3605"]],[13,14,["H3063"]],[14,17,["H3427"]],[17,19,["H3389"]],[19,20,["H5307"]],[20,21,["H6440"]],[21,23,["H3068"]],[23,24,["H7812"]],[24,26,["H3068"]]]},{"k":11606,"v":[[0,3,["H3881"]],[3,6,["H1121"]],[6,7,["H4480"]],[7,9,["H6956"]],[9,11,["H4480"]],[11,13,["H1121"]],[13,16,["H7145"]],[16,18,["H6965"]],[18,20,["H1984"]],[20,22,["H3068"]],[22,23,["H430"]],[23,25,["H3478"]],[25,28,["H1419"]],[28,29,["H6963"]],[29,31,["H4605"]]]},{"k":11607,"v":[[0,4,["H7925"]],[4,7,["H1242"]],[7,10,["H3318"]],[10,13,["H4057"]],[13,15,["H8620"]],[15,20,["H3318"]],[20,21,["H3092"]],[21,22,["H5975"]],[22,24,["H559"]],[24,25,["H8085"]],[25,28,["H3063"]],[28,31,["H3427"]],[31,33,["H3389"]],[33,34,["H539"]],[34,37,["H3068"]],[37,39,["H430"]],[39,44,["H539"]],[44,45,["H539"]],[45,47,["H5030"]],[47,51,["H6743"]]]},{"k":11608,"v":[[0,5,["H3289"]],[5,6,["H413"]],[6,8,["H5971"]],[8,10,["H5975"]],[10,11,["H7891"]],[11,14,["H3068"]],[14,18,["H1984"]],[18,20,["H1927"]],[20,22,["H6944"]],[22,26,["H3318"]],[26,27,["H6440"]],[27,29,["H2502"]],[29,32,["H559"]],[32,33,["H3034"]],[33,35,["H3068"]],[35,36,["H3588"]],[36,38,["H2617"]],[38,41,["H5769"]]]},{"k":11609,"v":[[0,2,["H6256"]],[2,4,["H2490"]],[4,6,["H7440"]],[6,9,["H8416"]],[9,11,["H3068"]],[11,12,["H5414"]],[12,13,["H693"]],[13,14,["H5921"]],[14,16,["H1121"]],[16,18,["H5983"]],[18,19,["H4124"]],[19,21,["H2022"]],[21,22,["H8165"]],[22,25,["H935"]],[25,27,["H3063"]],[27,31,["H5062"]]]},{"k":11610,"v":[[0,3,["H1121"]],[3,5,["H5983"]],[5,7,["H4124"]],[7,9,["H5975"]],[9,10,["H5921"]],[10,12,["H3427"]],[12,14,["H2022"]],[14,15,["H8165"]],[15,18,["H2763"]],[18,20,["H8045"]],[20,28,["H3615"]],[28,31,["H3427"]],[31,33,["H8165"]],[33,35,["H376"]],[35,36,["H5826"]],[36,38,["H4889"]],[38,39,["H7453"]]]},{"k":11611,"v":[[0,3,["H3063"]],[3,4,["H935"]],[4,5,["H5921"]],[5,8,["H4707"]],[8,11,["H4057"]],[11,13,["H6437"]],[13,14,["H413"]],[14,16,["H1995"]],[16,18,["H2009"]],[18,22,["H6297"]],[22,23,["H5307"]],[23,26,["H776"]],[26,28,["H369"]],[28,29,["H6413"]]]},{"k":11612,"v":[[0,3,["H3092"]],[3,6,["H5971"]],[6,7,["H935"]],[7,10,["H962","(H853)"]],[10,12,["H7998"]],[12,16,["H4672"]],[16,20,["H7230"]],[20,22,["H7399"]],[22,26,["H6297"]],[26,28,["H2530"]],[28,29,["H3627"]],[29,33,["H5337"]],[33,37,["H369"]],[37,41,["H4853"]],[41,44,["H1961"]],[44,45,["H7969"]],[45,46,["H3117"]],[46,48,["H962","(H853)"]],[48,51,["H7998"]],[51,52,["H1931"]],[52,55,["H7227"]]]},{"k":11613,"v":[[0,4,["H7243"]],[4,5,["H3117"]],[5,8,["H6950"]],[8,11,["H6010"]],[11,13,["H1294"]],[13,14,["H3588"]],[14,15,["H8033"]],[15,17,["H1288","(H853)"]],[17,19,["H3068"]],[19,20,["H5921","H3651","(H853)"]],[20,22,["H8034"]],[22,25,["H1931"]],[25,26,["H4725"]],[26,28,["H7121"]],[28,30,["H6010"]],[30,32,["H1294"]],[32,33,["H5704"]],[33,35,["H3117"]]]},{"k":11614,"v":[[0,3,["H7725"]],[3,4,["H3605"]],[4,5,["H376"]],[5,7,["H3063"]],[7,9,["H3389"]],[9,11,["H3092"]],[11,14,["H7218"]],[14,19,["H7725"]],[19,20,["H413"]],[20,21,["H3389"]],[21,23,["H8057"]],[23,24,["H3588"]],[24,26,["H3068"]],[26,31,["H8055"]],[31,34,["H4480","H341"]]]},{"k":11615,"v":[[0,3,["H935"]],[3,5,["H3389"]],[5,7,["H5035"]],[7,9,["H3658"]],[9,11,["H2689"]],[11,12,["H413"]],[12,14,["H1004"]],[14,17,["H3068"]]]},{"k":11616,"v":[[0,3,["H6343"]],[3,5,["H430"]],[5,6,["H1961"]],[6,7,["H5921"]],[7,8,["H3605"]],[8,10,["H4467"]],[10,13,["H776"]],[13,17,["H8085"]],[17,18,["H3588"]],[18,20,["H3068"]],[20,21,["H3898"]],[21,22,["H5973"]],[22,24,["H341"]],[24,26,["H3478"]]]},{"k":11617,"v":[[0,3,["H4438"]],[3,5,["H3092"]],[5,7,["H8252"]],[7,10,["H430"]],[10,13,["H5117"]],[13,15,["H4480","H5439"]]]},{"k":11618,"v":[[0,2,["H3092"]],[2,3,["H4427"]],[3,4,["H5921"]],[4,5,["H3063"]],[5,8,["H7970"]],[8,10,["H2568"]],[10,11,["H8141"]],[11,12,["H1121"]],[12,17,["H4427"]],[17,20,["H4427"]],[20,21,["H6242"]],[21,23,["H2568"]],[23,24,["H8141"]],[24,26,["H3389"]],[26,29,["H517"]],[29,30,["H8034"]],[30,32,["H5806"]],[32,34,["H1323"]],[34,36,["H7977"]]]},{"k":11619,"v":[[0,3,["H1980"]],[3,6,["H1870"]],[6,8,["H609"]],[8,10,["H1"]],[10,12,["H5493"]],[12,13,["H3808"]],[13,14,["H4480"]],[14,16,["H6213"]],[16,20,["H3477"]],[20,23,["H5869"]],[23,26,["H3068"]]]},{"k":11620,"v":[[0,1,["H389"]],[1,4,["H1116"]],[4,6,["H3808"]],[6,8,["H5493"]],[8,11,["H5750"]],[11,13,["H5971"]],[13,15,["H3808"]],[15,16,["H3559"]],[16,18,["H3824"]],[18,21,["H430"]],[21,24,["H1"]]]},{"k":11621,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3092"]],[8,9,["H7223"]],[9,11,["H314"]],[11,12,["H2009"]],[12,15,["H3789"]],[15,18,["H1697"]],[18,20,["H3058"]],[20,22,["H1121"]],[22,24,["H2607"]],[24,25,["H834"]],[25,27,["H5927"]],[27,28,["H5921"]],[28,30,["H5612"]],[30,33,["H4428"]],[33,35,["H3478"]]]},{"k":11622,"v":[[0,2,["H310"]],[2,3,["H3651"]],[3,5,["H3092"]],[5,6,["H4428"]],[6,8,["H3063"]],[8,10,["H2266"]],[10,11,["H5973"]],[11,12,["H274"]],[12,13,["H4428"]],[13,15,["H3478"]],[15,16,["H1931"]],[16,19,["H7561","H6213"]]]},{"k":11623,"v":[[0,3,["H2266"]],[3,5,["H5973"]],[5,8,["H6213"]],[8,9,["H591"]],[9,11,["H1980"]],[11,13,["H8659"]],[13,16,["H6213"]],[16,18,["H591"]],[18,20,["H6100"]]]},{"k":11624,"v":[[0,2,["H461"]],[2,4,["H1121"]],[4,6,["H1735"]],[6,8,["H4480","H4762"]],[8,9,["H5012"]],[9,10,["H5921"]],[10,11,["H3092"]],[11,12,["H559"]],[12,17,["H2266"]],[17,18,["H5973"]],[18,19,["H274"]],[19,21,["H3068"]],[21,23,["H6555","(H853)"]],[23,25,["H4639"]],[25,28,["H591"]],[28,30,["H7665"]],[30,35,["H6113","H3808"]],[35,37,["H1980"]],[37,38,["H413"]],[38,39,["H8659"]]]},{"k":11625,"v":[[0,2,["H3092"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,10,["H5973"]],[10,12,["H1"]],[12,15,["H5892"]],[15,17,["H1732"]],[17,19,["H3088"]],[19,21,["H1121"]],[21,22,["H4427"]],[22,25,["H8478"]]]},{"k":11626,"v":[[0,4,["H251"]],[4,6,["H1121"]],[6,8,["H3092"]],[8,9,["H5838"]],[9,11,["H3171"]],[11,13,["H2148"]],[13,15,["H5838"]],[15,17,["H4317"]],[17,19,["H8203"]],[19,20,["H3605"]],[20,21,["H428"]],[21,24,["H1121"]],[24,26,["H3092"]],[26,27,["H4428"]],[27,29,["H3478"]]]},{"k":11627,"v":[[0,3,["H1"]],[3,4,["H5414"]],[4,6,["H7227"]],[6,7,["H4979"]],[7,9,["H3701"]],[9,12,["H2091"]],[12,16,["H4030"]],[16,17,["H5973"]],[17,18,["H4694"]],[18,19,["H5892"]],[19,21,["H3063"]],[21,24,["H4467"]],[24,25,["H5414"]],[25,28,["H3088"]],[28,29,["H3588"]],[29,30,["H1931"]],[30,33,["H1060"]]]},{"k":11628,"v":[[0,3,["H3088"]],[3,6,["H6965"]],[6,7,["H5921"]],[7,9,["H4467"]],[9,12,["H1"]],[12,15,["H2388"]],[15,17,["H2026","(H853)"]],[17,18,["H3605"]],[18,20,["H251"]],[20,23,["H2719"]],[23,26,["H1571"]],[26,29,["H4480","H8269"]],[29,31,["H3478"]]]},{"k":11629,"v":[[0,1,["H3088"]],[1,3,["H7970"]],[3,5,["H8147"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H8083"]],[16,17,["H8141"]],[17,19,["H3389"]]]},{"k":11630,"v":[[0,3,["H1980"]],[3,6,["H1870"]],[6,9,["H4428"]],[9,11,["H3478"]],[11,13,["H834"]],[13,14,["H6213"]],[14,16,["H1004"]],[16,18,["H256"]],[18,19,["H3588"]],[19,21,["H1961"]],[21,23,["H1323"]],[23,25,["H256"]],[25,27,["H802"]],[27,30,["H6213"]],[30,34,["H7451"]],[34,37,["H5869"]],[37,40,["H3068"]]]},{"k":11631,"v":[[0,3,["H3068"]],[3,4,["H14"]],[4,5,["H3808"]],[5,6,["H7843","(H853)"]],[6,8,["H1004"]],[8,10,["H1732"]],[10,12,["H4616"]],[12,14,["H1285"]],[14,15,["H834"]],[15,18,["H3772"]],[18,20,["H1732"]],[20,22,["H834"]],[22,24,["H559"]],[24,26,["H5414"]],[26,28,["H5216"]],[28,34,["H1121"]],[34,36,["H3605","H3117"]]]},{"k":11632,"v":[[0,3,["H3117"]],[3,5,["H123"]],[5,6,["H6586"]],[6,8,["H4480","H8478"]],[8,10,["H3027"]],[10,12,["H3063"]],[12,14,["H4427","H5921"]],[14,17,["H4428"]]]},{"k":11633,"v":[[0,2,["H3088"]],[2,4,["H5674"]],[4,5,["H5973"]],[5,7,["H8269"]],[7,9,["H3605"]],[9,11,["H7393"]],[11,12,["H5973"]],[12,17,["H1961","H6965"]],[17,19,["H3915"]],[19,21,["H5221","(H853)"]],[21,23,["H123"]],[23,25,["H5437","H413"]],[25,30,["H8269"]],[30,33,["H7393"]]]},{"k":11634,"v":[[0,3,["H123"]],[3,4,["H6586"]],[4,6,["H4480","H8478"]],[6,8,["H3027"]],[8,10,["H3063"]],[10,11,["H5704"]],[11,12,["H2088"]],[12,13,["H3117"]],[13,15,["H1931"]],[15,16,["H6256"]],[16,19,["H3841"]],[19,20,["H6586"]],[20,22,["H4480","H8478"]],[22,24,["H3027"]],[24,25,["H3588"]],[25,28,["H5800","(H853)"]],[28,30,["H3068"]],[30,31,["H430"]],[31,34,["H1"]]]},{"k":11635,"v":[[0,1,["H1571"]],[1,2,["H1931"]],[2,3,["H6213"]],[3,5,["H1116"]],[5,8,["H2022"]],[8,10,["H3063"]],[10,12,["(H853)"]],[12,14,["H3427"]],[14,16,["H3389"]],[16,19,["H2181"]],[19,21,["H5080","(H853)"]],[21,22,["H3063"]],[22,23,[]]]},{"k":11636,"v":[[0,3,["H935"]],[3,5,["H4385"]],[5,6,["H413"]],[6,9,["H4480","H452"]],[9,11,["H5030"]],[11,12,["H559"]],[12,13,["H3541"]],[13,14,["H559"]],[14,16,["H3068"]],[16,17,["H430"]],[17,19,["H1732"]],[19,21,["H1"]],[21,22,["H8478","H834"]],[22,25,["H3808"]],[25,26,["H1980"]],[26,29,["H1870"]],[29,31,["H3092"]],[31,33,["H1"]],[33,37,["H1870"]],[37,39,["H609"]],[39,40,["H4428"]],[40,42,["H3063"]]]},{"k":11637,"v":[[0,3,["H1980"]],[3,6,["H1870"]],[6,9,["H4428"]],[9,11,["H3478"]],[11,14,["(H853)"]],[14,15,["H3063"]],[15,18,["H3427"]],[18,20,["H3389"]],[20,24,["H2181"]],[24,28,["H2181"]],[28,31,["H1004"]],[31,33,["H256"]],[33,35,["H1571"]],[35,37,["H2026","(H853)"]],[37,39,["H251"]],[39,42,["H1"]],[42,43,["H1004"]],[43,46,["H2896"]],[46,47,["H4480"]],[47,48,[]]]},{"k":11638,"v":[[0,1,["H2009"]],[1,4,["H1419"]],[4,5,["H4046"]],[5,8,["H3068"]],[8,9,["H5062"]],[9,11,["H5971"]],[11,14,["H1121"]],[14,17,["H802"]],[17,19,["H3605"]],[19,21,["H7399"]]]},{"k":11639,"v":[[0,2,["H859"]],[2,5,["H7227"]],[5,6,["H2483"]],[6,8,["H4245"]],[8,11,["H4578"]],[11,12,["H5704"]],[12,14,["H4578"]],[14,16,["H3318"]],[16,19,["H4480"]],[19,21,["H2483"]],[21,22,["H3117"]],[22,23,["H5921"]],[23,24,["H3117"]]]},{"k":11640,"v":[[0,3,["H3068"]],[3,5,["H5782"]],[5,6,["H5921"]],[6,7,["H3088","(H853)"]],[7,9,["H7307"]],[9,12,["H6430"]],[12,16,["H6163"]],[16,17,["H834"]],[17,19,["H5921","H3027"]],[19,21,["H3569"]]]},{"k":11641,"v":[[0,4,["H5927"]],[4,6,["H3063"]],[6,9,["H1234"]],[9,13,["H7617","(H853)"]],[13,14,["H3605"]],[14,16,["H7399"]],[16,19,["H4672"]],[19,22,["H4428"]],[22,23,["H1004"]],[23,26,["H1121"]],[26,27,["H1571"]],[27,30,["H802"]],[30,35,["H3808"]],[35,37,["H1121"]],[37,38,["H7604"]],[38,40,["H3588","H518"]],[40,41,["H3059"]],[41,43,["H6996"]],[43,46,["H1121"]]]},{"k":11642,"v":[[0,2,["H310"]],[2,3,["H3605"]],[3,4,["H2063"]],[4,6,["H3068"]],[6,7,["H5062"]],[7,11,["H4578"]],[11,14,["H369","H4832"]],[14,15,["H2483"]]]},{"k":11643,"v":[[0,5,["H1961"]],[5,10,["H3117","H4480","H3117"]],[10,13,["H6256","H3318","H7093"]],[13,15,["H8147"]],[15,16,["H3117"]],[16,18,["H4578"]],[18,20,["H3318"]],[20,23,["H5973"]],[23,25,["H2483"]],[25,28,["H4191"]],[28,30,["H7451"]],[30,31,["H8463"]],[31,34,["H5971"]],[34,35,["H6213"]],[35,36,["H3808"]],[36,37,["H8316"]],[37,42,["H8316"]],[42,45,["H1"]]]},{"k":11644,"v":[[0,1,["H7970"]],[1,3,["H8147"]],[3,5,["H1121"]],[5,6,["H1961"]],[6,12,["H4427"]],[12,15,["H4427"]],[15,17,["H3389"]],[17,18,["H8083"]],[18,19,["H8141"]],[19,21,["H1980"]],[21,22,["H3808"]],[22,24,["H2532"]],[24,27,["H6912"]],[27,31,["H5892"]],[31,33,["H1732"]],[33,35,["H3808"]],[35,38,["H6913"]],[38,41,["H4428"]]]},{"k":11645,"v":[[0,3,["H3427"]],[3,5,["H3389"]],[5,6,["(H853)"]],[6,7,["H274"]],[7,9,["H6996"]],[9,10,["H1121"]],[10,11,["H4427"]],[11,14,["H8478"]],[14,15,["H3588"]],[15,19,["H1416"]],[19,21,["H935"]],[21,24,["H6163"]],[24,27,["H4264"]],[27,29,["H2026"]],[29,30,["H3605"]],[30,32,["H7223"]],[32,34,["H274"]],[34,36,["H1121"]],[36,38,["H3088"]],[38,39,["H4428"]],[39,41,["H3063"]],[41,42,["H4427"]]]},{"k":11646,"v":[[0,1,["H705"]],[1,3,["H8147"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,7,["H274"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H259"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,21,["H517"]],[21,22,["H8034"]],[22,25,["H6271"]],[25,27,["H1323"]],[27,29,["H6018"]]]},{"k":11647,"v":[[0,1,["H1931"]],[1,2,["H1571"]],[2,3,["H1980"]],[3,6,["H1870"]],[6,9,["H1004"]],[9,11,["H256"]],[11,12,["H3588"]],[12,14,["H517"]],[14,15,["H1961"]],[15,17,["H3289"]],[17,20,["H7561"]]]},{"k":11648,"v":[[0,3,["H6213"]],[3,4,["H7451"]],[4,7,["H5869"]],[7,10,["H3068"]],[10,13,["H1004"]],[13,15,["H256"]],[15,16,["H3588"]],[16,17,["H1992"]],[17,18,["H1961"]],[18,20,["H3289"]],[20,21,["H310"]],[21,23,["H4194"]],[23,26,["H1"]],[26,29,["H4889"]]]},{"k":11649,"v":[[0,2,["H1980"]],[2,3,["H1571"]],[3,6,["H6098"]],[6,8,["H1980"]],[8,9,["H854"]],[9,10,["H3088"]],[10,12,["H1121"]],[12,14,["H256"]],[14,15,["H4428"]],[15,17,["H3478"]],[17,19,["H4421"]],[19,20,["H5921"]],[20,21,["H2371"]],[21,22,["H4428"]],[22,24,["H758"]],[24,26,["H7433"]],[26,29,["H761"]],[29,30,["H5221","(H853)"]],[30,31,["H3141"]]]},{"k":11650,"v":[[0,3,["H7725"]],[3,6,["H7495"]],[6,8,["H3157"]],[8,10,["H3588"]],[10,12,["H4347"]],[12,13,["H834"]],[13,15,["H5221"]],[15,18,["H7414"]],[18,21,["H3898","(H853)"]],[21,23,["H2371"]],[23,24,["H4428"]],[24,26,["H758"]],[26,28,["H5838"]],[28,30,["H1121"]],[30,32,["H3088"]],[32,33,["H4428"]],[33,35,["H3063"]],[35,37,["H3381"]],[37,39,["H7200","(H853)"]],[39,40,["H3088"]],[40,42,["H1121"]],[42,44,["H256"]],[44,46,["H3157"]],[46,47,["H3588"]],[47,48,["H1931"]],[48,50,["H2470"]]]},{"k":11651,"v":[[0,3,["H8395"]],[3,5,["H274"]],[5,6,["H1961"]],[6,8,["H4480","H430"]],[8,10,["H935"]],[10,11,["H413"]],[11,12,["H3141"]],[12,17,["H935"]],[17,20,["H3318"]],[20,21,["H5973"]],[21,22,["H3088"]],[22,23,["H413"]],[23,24,["H3058"]],[24,26,["H1121"]],[26,28,["H5250"]],[28,29,["H834"]],[29,31,["H3068"]],[31,33,["H4886"]],[33,36,["H3772","(H853)"]],[36,38,["H1004"]],[38,40,["H256"]]]},{"k":11652,"v":[[0,5,["H1961"]],[5,8,["H3058"]],[8,11,["H8199"]],[11,12,["H5973"]],[12,14,["H1004"]],[14,16,["H256"]],[16,18,["H4672","(H853)"]],[18,20,["H8269"]],[20,22,["H3063"]],[22,25,["H1121"]],[25,28,["H251"]],[28,30,["H274"]],[30,32,["H8334"]],[32,34,["H274"]],[34,36,["H2026"]],[36,37,[]]]},{"k":11653,"v":[[0,3,["H1245","(H853)"]],[3,4,["H274"]],[4,7,["H3920"]],[7,10,["H1931"]],[10,12,["H2244"]],[12,14,["H8111"]],[14,16,["H935"]],[16,18,["H413"]],[18,19,["H3058"]],[19,24,["H4191"]],[24,27,["H6912"]],[27,29,["H3588"]],[29,30,["H559"]],[30,32,["H1931"]],[32,35,["H1121"]],[35,37,["H3092"]],[37,38,["H834"]],[38,39,["H1875","(H853)"]],[39,41,["H3068"]],[41,43,["H3605"]],[43,45,["H3824"]],[45,48,["H1004"]],[48,50,["H274"]],[50,52,["H369"]],[52,53,["H3581"]],[53,56,["H6113"]],[56,58,["H4467"]]]},{"k":11654,"v":[[0,3,["H6271"]],[3,5,["H517"]],[5,7,["H274"]],[7,8,["H7200"]],[8,9,["H3588"]],[9,11,["H1121"]],[11,13,["H4191"]],[13,15,["H6965"]],[15,17,["H1696","(H853)"]],[17,18,["H3605"]],[18,20,["H2233"]],[20,21,["H4467"]],[21,24,["H1004"]],[24,26,["H3063"]]]},{"k":11655,"v":[[0,2,["H3090"]],[2,4,["H1323"]],[4,7,["H4428"]],[7,8,["H3947","(H853)"]],[8,9,["H3101"]],[9,11,["H1121"]],[11,13,["H274"]],[13,15,["H1589"]],[15,18,["H4480","H8432"]],[18,20,["H4428"]],[20,21,["H1121"]],[21,24,["H4191"]],[24,26,["H5414"]],[26,30,["H3243"]],[30,33,["H2315","H4296"]],[33,35,["H3090"]],[35,37,["H1323"]],[37,39,["H4428"]],[39,40,["H3088"]],[40,42,["H802"]],[42,44,["H3077"]],[44,46,["H3548"]],[46,47,["H3588"]],[47,48,["H1931"]],[48,49,["H1961"]],[49,51,["H269"]],[51,53,["H274"]],[53,54,["H5641"]],[54,56,["H4480","H6440"]],[56,57,["H6271"]],[57,61,["H4191"]],[61,63,["H3808"]]]},{"k":11656,"v":[[0,3,["H1961"]],[3,4,["H854"]],[4,6,["H2244"]],[6,9,["H1004"]],[9,11,["H430"]],[11,12,["H8337"]],[12,13,["H8141"]],[13,15,["H6271"]],[15,16,["H4427"]],[16,17,["H5921"]],[17,19,["H776"]]]},{"k":11657,"v":[[0,4,["H7637"]],[4,5,["H8141"]],[5,6,["H3077"]],[6,8,["H2388"]],[8,10,["H3947","(H853)"]],[10,12,["H8269"]],[12,14,["H3967"]],[14,15,["H5838"]],[15,17,["H1121"]],[17,19,["H3395"]],[19,21,["H3458"]],[21,23,["H1121"]],[23,25,["H3076"]],[25,27,["H5838"]],[27,29,["H1121"]],[29,31,["H5744"]],[31,33,["H4641"]],[33,35,["H1121"]],[35,37,["H5718"]],[37,39,["H478"]],[39,41,["H1121"]],[41,43,["H2147"]],[43,45,["H1285"]],[45,46,["H5973"]],[46,47,[]]]},{"k":11658,"v":[[0,4,["H5437"]],[4,6,["H3063"]],[6,8,["H6908","(H853)"]],[8,10,["H3881"]],[10,13,["H4480","H3605"]],[13,15,["H5892"]],[15,17,["H3063"]],[17,20,["H7218"]],[20,23,["H1"]],[23,25,["H3478"]],[25,28,["H935"]],[28,29,["H413"]],[29,30,["H3389"]]]},{"k":11659,"v":[[0,2,["H3605"]],[2,4,["H6951"]],[4,5,["H3772"]],[5,7,["H1285"]],[7,8,["H5973"]],[8,10,["H4428"]],[10,13,["H1004"]],[13,15,["H430"]],[15,18,["H559"]],[18,21,["H2009"]],[21,23,["H4428"]],[23,24,["H1121"]],[24,26,["H4427"]],[26,27,["H834"]],[27,29,["H3068"]],[29,31,["H1696"]],[31,32,["H5921"]],[32,34,["H1121"]],[34,36,["H1732"]]]},{"k":11660,"v":[[0,1,["H2088"]],[1,4,["H1697"]],[4,5,["H834"]],[5,8,["H6213"]],[8,11,["H7992"]],[11,12,["H4480"]],[12,14,["H935"]],[14,17,["H7676"]],[17,20,["H3548"]],[20,24,["H3881"]],[24,27,["H7778"]],[27,30,["H5592"]]]},{"k":11661,"v":[[0,4,["H7992"]],[4,9,["H4428"]],[9,10,["H1004"]],[10,14,["H7992"]],[14,17,["H8179"]],[17,20,["H3247"]],[20,22,["H3605"]],[22,24,["H5971"]],[24,29,["H2691"]],[29,32,["H1004"]],[32,35,["H3068"]]]},{"k":11662,"v":[[0,3,["H408"]],[3,4,["H935"]],[4,7,["H1004"]],[7,10,["H3068"]],[10,11,["H3588","H518"]],[11,13,["H3548"]],[13,17,["H8334"]],[17,20,["H3881"]],[20,21,["H1992"]],[21,24,["H935"]],[24,25,["H3588"]],[25,26,["H1992"]],[26,28,["H6944"]],[28,30,["H3605"]],[30,32,["H5971"]],[32,34,["H8104"]],[34,36,["H4931"]],[36,39,["H3068"]]]},{"k":11663,"v":[[0,3,["H3881"]],[3,5,["H5362","(H853)"]],[5,7,["H4428"]],[7,9,["H5439"]],[9,11,["H376"]],[11,14,["H3627"]],[14,17,["H3027"]],[17,21,["H935"]],[21,22,["H413"]],[22,24,["H1004"]],[24,30,["H4191"]],[30,32,["H1961"]],[32,34,["H854"]],[34,36,["H4428"]],[36,40,["H935"]],[40,45,["H3318"]]]},{"k":11664,"v":[[0,3,["H3881"]],[3,5,["H3605"]],[5,6,["H3063"]],[6,7,["H6213"]],[7,11,["H3605"]],[11,12,["H834"]],[12,13,["H3077"]],[13,15,["H3548"]],[15,17,["H6680"]],[17,19,["H3947"]],[19,21,["H376","(H853)"]],[21,23,["H376"]],[23,28,["H935"]],[28,31,["H7676"]],[31,32,["H5973"]],[32,37,["H3318"]],[37,41,["H7676"]],[41,42,["H3588"]],[42,43,["H3077"]],[43,45,["H3548"]],[45,46,["H6362"]],[46,47,["H3808","(H853)"]],[47,49,["H4256"]]]},{"k":11665,"v":[[0,2,["H3077"]],[2,4,["H3548"]],[4,5,["H5414"]],[5,8,["H8269"]],[8,10,["H3967","(H853)"]],[10,11,["H2595"]],[11,13,["H4043"]],[13,15,["H7982"]],[15,16,["H834"]],[16,19,["H4428"]],[19,20,["H1732"]],[20,21,["H834"]],[21,25,["H1004"]],[25,27,["H430"]]]},{"k":11666,"v":[[0,3,["H5975","(H853)"]],[3,4,["H3605"]],[4,6,["H5971"]],[6,8,["H376"]],[8,11,["H7973"]],[11,14,["H3027"]],[14,17,["H3233"]],[17,18,["H4480","H3802"]],[18,21,["H1004"]],[21,22,["H5704"]],[22,24,["H8042"]],[24,25,["H3802"]],[25,28,["H1004"]],[28,32,["H4196"]],[32,35,["H1004"]],[35,36,["H5921"]],[36,38,["H4428"]],[38,40,["H5439"]]]},{"k":11667,"v":[[0,4,["H3318","(H853)"]],[4,6,["H4428"]],[6,7,["H1121"]],[7,9,["H5414"]],[9,10,["H5921"]],[10,11,["(H853)"]],[11,13,["H5145"]],[13,18,["H5715"]],[18,22,["H4427","(H853)"]],[22,24,["H3077"]],[24,27,["H1121"]],[27,28,["H4886"]],[28,31,["H559"]],[31,33,["H2421"]],[33,35,["H4428"]]]},{"k":11668,"v":[[0,3,["H6271"]],[3,4,["H8085","(H853)"]],[4,6,["H6963"]],[6,9,["H5971"]],[9,10,["H7323"]],[10,12,["H1984","(H853)"]],[12,14,["H4428"]],[14,16,["H935"]],[16,17,["H413"]],[17,19,["H5971"]],[19,22,["H1004"]],[22,25,["H3068"]]]},{"k":11669,"v":[[0,3,["H7200"]],[3,5,["H2009"]],[5,7,["H4428"]],[7,8,["H5975"]],[8,9,["H5921"]],[9,11,["H5982"]],[11,15,["H3996"]],[15,18,["H8269"]],[18,21,["H2689"]],[21,22,["H5921"]],[22,24,["H4428"]],[24,26,["H3605"]],[26,28,["H5971"]],[28,31,["H776"]],[31,32,["H8056"]],[32,34,["H8628"]],[34,36,["H2689"]],[36,39,["H7891"]],[39,41,["H3627"]],[41,43,["H7892"]],[43,47,["H3045"]],[47,50,["H1984"]],[50,52,["H6271"]],[52,53,["H7167","(H853)"]],[53,55,["H899"]],[55,57,["H559"]],[57,58,["H7195"]],[58,59,["H7195"]]]},{"k":11670,"v":[[0,2,["H3077"]],[2,4,["H3548"]],[4,6,["H3318","(H853)"]],[6,8,["H8269"]],[8,10,["H3967"]],[10,14,["H6485"]],[14,16,["H2428"]],[16,18,["H559"]],[18,19,["H413"]],[19,23,["H3318"]],[23,26,["H413","H4480","H1004","H7713"]],[26,29,["H935","H310"]],[29,34,["H4191"]],[34,37,["H2719"]],[37,38,["H3588"]],[38,40,["H3548"]],[40,41,["H559"]],[41,42,["H4191"]],[42,44,["H3808"]],[44,47,["H4480","H1004"]],[47,50,["H3068"]]]},{"k":11671,"v":[[0,3,["H7760"]],[3,4,["H3027"]],[4,11,["H935"]],[11,12,["H413"]],[12,14,["H3996"]],[14,17,["H5483"]],[17,18,["H8179"]],[18,21,["H4428"]],[21,22,["H1004"]],[22,24,["H4191"]],[24,26,["H8033"]]]},{"k":11672,"v":[[0,2,["H3077"]],[2,3,["H3772"]],[3,5,["H1285"]],[5,6,["H996"]],[6,9,["H996"]],[9,10,["H3605"]],[10,12,["H5971"]],[12,14,["H996"]],[14,16,["H4428"]],[16,20,["H1961"]],[20,22,["H3068"]],[22,23,["H5971"]]]},{"k":11673,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H935"]],[6,8,["H1004"]],[8,10,["H1168"]],[10,14,["H5422"]],[14,18,["H4196"]],[18,21,["H6754"]],[21,23,["H7665"]],[23,25,["H2026"]],[25,26,["H4977"]],[26,28,["H3548"]],[28,30,["H1168"]],[30,31,["H6440"]],[31,33,["H4196"]]]},{"k":11674,"v":[[0,2,["H3077"]],[2,3,["H7760"]],[3,5,["H6486"]],[5,8,["H1004"]],[8,11,["H3068"]],[11,14,["H3027"]],[14,17,["H3548"]],[17,19,["H3881"]],[19,20,["H834"]],[20,21,["H1732"]],[21,23,["H2505"]],[23,24,["H5921"]],[24,26,["H1004"]],[26,29,["H3068"]],[29,31,["H5927"]],[31,34,["H5930"]],[34,37,["H3068"]],[37,41,["H3789"]],[41,44,["H8451"]],[44,46,["H4872"]],[46,48,["H8057"]],[48,51,["H7892"]],[51,56,["H5921","H3027"]],[56,57,["H1732"]]]},{"k":11675,"v":[[0,3,["H5975"]],[3,5,["H7778"]],[5,6,["H5921"]],[6,8,["H8179"]],[8,11,["H1004"]],[11,14,["H3068"]],[14,16,["H3808"]],[16,19,["H2931"]],[19,21,["H3605"]],[21,22,["H1697"]],[22,25,["H935"]]]},{"k":11676,"v":[[0,3,["H3947","(H853)"]],[3,5,["H8269"]],[5,7,["H3967"]],[7,10,["H117"]],[10,13,["H4910"]],[13,16,["H5971"]],[16,18,["H3605"]],[18,20,["H5971"]],[20,23,["H776"]],[23,26,["H3381","(H853)"]],[26,28,["H4428"]],[28,31,["H4480","H1004"]],[31,34,["H3068"]],[34,37,["H935"]],[37,38,["H8432"]],[38,40,["H5945"]],[40,41,["H8179"]],[41,44,["H4428"]],[44,45,["H1004"]],[45,47,["H3427","(H853)"]],[47,49,["H4428"]],[49,50,["H5921"]],[50,52,["H3678"]],[52,55,["H4467"]]]},{"k":11677,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,7,["H776"]],[7,8,["H8055"]],[8,11,["H5892"]],[11,13,["H8252"]],[13,18,["H4191"]],[18,19,["H6271"]],[19,22,["H2719"]]]},{"k":11678,"v":[[0,1,["H3101"]],[1,3,["H7651"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,10,["H4427"]],[10,13,["H4427"]],[13,14,["H705"]],[14,15,["H8141"]],[15,17,["H3389"]],[17,19,["H517"]],[19,20,["H8034"]],[20,23,["H6645"]],[23,25,["H4480","H884"]]]},{"k":11679,"v":[[0,2,["H3077"]],[2,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,14,["H3605"]],[14,16,["H3117"]],[16,18,["H3077"]],[18,20,["H3548"]]]},{"k":11680,"v":[[0,2,["H3077"]],[2,3,["H5375"]],[3,6,["H8147"]],[6,7,["H802"]],[7,10,["H3205"]],[10,11,["H1121"]],[11,13,["H1323"]]]},{"k":11681,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H3651"]],[7,9,["H3101"]],[9,10,["H1961"]],[10,11,["H5973","H3820"]],[11,13,["H2318","(H853)"]],[13,15,["H1004"]],[15,18,["H3068"]]]},{"k":11682,"v":[[0,4,["H6908","(H853)"]],[4,6,["H3548"]],[6,9,["H3881"]],[9,11,["H559"]],[11,15,["H3318"]],[15,18,["H5892"]],[18,20,["H3063"]],[20,22,["H6908"]],[22,24,["H4480","H3605"]],[24,25,["H3478"]],[25,26,["H3701"]],[26,28,["H2388","(H853)"]],[28,30,["H1004"]],[30,33,["H430"]],[33,34,["H4480","H1767"]],[34,35,["H8141"]],[35,37,["H8141"]],[37,41,["H859"]],[41,42,["H4116"]],[42,44,["H1697"]],[44,47,["H3881"]],[47,48,["H4116"]],[48,50,["H3808"]]]},{"k":11683,"v":[[0,3,["H4428"]],[3,4,["H7121"]],[4,6,["H3077"]],[6,8,["H7218"]],[8,10,["H559"]],[10,13,["H4069"]],[13,16,["H3808"]],[16,17,["H1875"]],[17,18,["H5921"]],[18,20,["H3881"]],[20,23,["H935"]],[23,26,["H4480","H3063"]],[26,30,["H4480","H3389","(H853)"]],[30,32,["H4864"]],[32,38,["H4872"]],[38,40,["H5650"]],[40,43,["H3068"]],[43,47,["H6951"]],[47,49,["H3478"]],[49,52,["H168"]],[52,54,["H5715"]]]},{"k":11684,"v":[[0,1,["H3588"]],[1,3,["H1121"]],[3,5,["H6271"]],[5,8,["H4849"]],[8,11,["H6555","(H853)"]],[11,13,["H1004"]],[13,15,["H430"]],[15,17,["H1571"]],[17,18,["H3605"]],[18,21,["H6944"]],[21,24,["H1004"]],[24,27,["H3068"]],[27,30,["H6213"]],[30,32,["H1168"]]]},{"k":11685,"v":[[0,4,["H4428"]],[4,5,["H559"]],[5,7,["H6213"]],[7,8,["H259"]],[8,9,["H727"]],[9,11,["H5414"]],[11,13,["H2351"]],[13,16,["H8179"]],[16,19,["H1004"]],[19,22,["H3068"]]]},{"k":11686,"v":[[0,3,["H5414"]],[3,5,["H6963"]],[5,7,["H3063"]],[7,9,["H3389"]],[9,12,["H935"]],[12,15,["H3068"]],[15,17,["H4864"]],[17,19,["H4872"]],[19,21,["H5650"]],[21,23,["H430"]],[23,25,["H5921"]],[25,26,["H3478"]],[26,29,["H4057"]]]},{"k":11687,"v":[[0,2,["H3605"]],[2,4,["H8269"]],[4,6,["H3605"]],[6,8,["H5971"]],[8,9,["H8055"]],[9,12,["H935"]],[12,14,["H7993"]],[14,17,["H727"]],[17,18,["H5704"]],[18,23,["H3615"]]]},{"k":11688,"v":[[0,5,["H1961"]],[5,9,["H6256","(H853)"]],[9,11,["H727"]],[11,13,["H935"]],[13,14,["H413"]],[14,16,["H4428"]],[16,17,["H6486"]],[17,20,["H3027"]],[20,23,["H3881"]],[23,27,["H7200"]],[27,28,["H3588"]],[28,31,["H7227"]],[31,32,["H3701"]],[32,34,["H4428"]],[34,35,["H5608"]],[35,38,["H7218"]],[38,39,["H3548"]],[39,40,["H6496"]],[40,41,["H935"]],[41,43,["H6168","(H853)"]],[43,45,["H727"]],[45,47,["H5375"]],[47,50,["H7725"]],[50,52,["H413"]],[52,54,["H4725"]],[54,56,["H3541"]],[56,58,["H6213"]],[58,59,["H3117"]],[59,61,["H3117"]],[61,63,["H622"]],[63,64,["H3701"]],[64,66,["H7230"]]]},{"k":11689,"v":[[0,3,["H4428"]],[3,5,["H3077"]],[5,6,["H5414"]],[6,8,["H413"]],[8,11,["H6213"]],[11,13,["H4399"]],[13,16,["H5656"]],[16,19,["H1004"]],[19,22,["H3068"]],[22,24,["H1961","H7936"]],[24,25,["H2672"]],[25,27,["H2796"]],[27,29,["H2318"]],[29,31,["H1004"]],[31,34,["H3068"]],[34,36,["H1571"]],[36,39,["H2796"]],[39,40,["H1270"]],[40,42,["H5178"]],[42,44,["H2388","(H853)"]],[44,46,["H1004"]],[46,49,["H3068"]]]},{"k":11690,"v":[[0,3,["H6213","H4399"]],[3,4,["H6213"]],[4,7,["H4399"]],[7,9,["H5927","H724"]],[9,10,["H3027"]],[10,14,["H5975","(H853)"]],[14,16,["H1004"]],[16,18,["H430"]],[18,19,["H5921"]],[19,21,["H4971"]],[21,23,["H553"]],[23,24,[]]]},{"k":11691,"v":[[0,5,["H3615"]],[5,8,["H935","(H853)"]],[8,10,["H7605"]],[10,13,["H3701"]],[13,14,["H6440"]],[14,16,["H4428"]],[16,18,["H3077"]],[18,21,["H6213"]],[21,22,["H3627"]],[22,25,["H1004"]],[25,28,["H3068"]],[28,30,["H3627"]],[30,32,["H8335"]],[32,35,["H5927"]],[35,38,["H3709"]],[38,40,["H3627"]],[40,42,["H2091"]],[42,44,["H3701"]],[44,47,["H1961","H5927"]],[47,49,["H5930"]],[49,52,["H1004"]],[52,55,["H3068"]],[55,56,["H8548"]],[56,57,["H3605"]],[57,59,["H3117"]],[59,61,["H3077"]]]},{"k":11692,"v":[[0,2,["H3077"]],[2,4,["H2204"]],[4,7,["H7646"]],[7,9,["H3117"]],[9,12,["H4191"]],[12,14,["H3967"]],[14,16,["H7970"]],[16,17,["H8141"]],[17,18,["H1121"]],[18,23,["H4194"]]]},{"k":11693,"v":[[0,3,["H6912"]],[3,7,["H5892"]],[7,9,["H1732"]],[9,10,["H5973"]],[10,12,["H4428"]],[12,13,["H3588"]],[13,16,["H6213"]],[16,17,["H2896"]],[17,19,["H3478"]],[19,21,["H5973"]],[21,22,["H430"]],[22,26,["H1004"]]]},{"k":11694,"v":[[0,2,["H310"]],[2,4,["H4194"]],[4,6,["H3077"]],[6,7,["H935"]],[7,9,["H8269"]],[9,11,["H3063"]],[11,14,["H7812"]],[14,17,["H4428"]],[17,18,["H227"]],[18,20,["H4428"]],[20,21,["H8085"]],[21,22,["H413"]],[22,23,[]]]},{"k":11695,"v":[[0,3,["H5800","(H853)"]],[3,5,["H1004"]],[5,8,["H3068"]],[8,9,["H430"]],[9,12,["H1"]],[12,14,["H5647","(H853)"]],[14,15,["H842"]],[15,17,["H6091"]],[17,19,["H7110"]],[19,20,["H1961"]],[20,21,["H5921"]],[21,22,["H3063"]],[22,24,["H3389"]],[24,26,["H2063"]],[26,28,["H819"]]]},{"k":11696,"v":[[0,3,["H7971"]],[3,4,["H5030"]],[4,10,["H7725"]],[10,11,["H413"]],[11,13,["H3068"]],[13,16,["H5749"]],[16,22,["H3808"]],[22,24,["H238"]]]},{"k":11697,"v":[[0,3,["H7307"]],[3,5,["H430"]],[5,7,["H3847","(H853)"]],[7,8,["H2148"]],[8,10,["H1121"]],[10,12,["H3077"]],[12,14,["H3548"]],[14,16,["H5975"]],[16,17,["H4480","H5921"]],[17,19,["H5971"]],[19,21,["H559"]],[21,24,["H3541"]],[24,25,["H559"]],[25,26,["H430"]],[26,27,["H4100"]],[27,28,["H5674"]],[28,29,["H859","(H853)"]],[29,31,["H4687"]],[31,34,["H3068"]],[34,37,["H3808"]],[37,38,["H6743"]],[38,39,["H3588"]],[39,42,["H5800"]],[42,44,["H3068"]],[44,48,["H5800","(H853)"]],[48,49,[]]]},{"k":11698,"v":[[0,3,["H7194"]],[3,4,["H5921"]],[4,7,["H7275"]],[7,10,["H68"]],[10,13,["H4687"]],[13,16,["H4428"]],[16,19,["H2691"]],[19,22,["H1004"]],[22,25,["H3068"]]]},{"k":11699,"v":[[0,2,["H3101"]],[2,4,["H4428"]],[4,5,["H2142"]],[5,6,["H3808"]],[6,8,["H2617"]],[8,9,["H834"]],[9,10,["H3077"]],[10,12,["H1"]],[12,14,["H6213"]],[14,15,["H5973"]],[15,18,["H2026","(H853)"]],[18,20,["H1121"]],[20,24,["H4191"]],[24,26,["H559"]],[26,28,["H3068"]],[28,30,["H7200"]],[30,33,["H1875"]],[33,34,[]]]},{"k":11700,"v":[[0,5,["H1961"]],[5,8,["H8622"]],[8,11,["H8141"]],[11,14,["H2428"]],[14,16,["H758"]],[16,18,["H5927"]],[18,19,["H5921"]],[19,23,["H935"]],[23,24,["H413"]],[24,25,["H3063"]],[25,27,["H3389"]],[27,29,["H7843","(H853)"]],[29,30,["H3605"]],[30,32,["H8269"]],[32,35,["H5971"]],[35,39,["H4480","H5971"]],[39,41,["H7971"]],[41,42,["H3605"]],[42,44,["H7998"]],[44,49,["H4428"]],[49,51,["H1834"]]]},{"k":11701,"v":[[0,1,["H3588"]],[1,3,["H2428"]],[3,6,["H758"]],[6,7,["H935"]],[7,11,["H4705"]],[11,13,["H376"]],[13,16,["H3068"]],[16,17,["H5414"]],[17,19,["H3966"]],[19,20,["H7230"]],[20,21,["H2428"]],[21,24,["H3027"]],[24,25,["H3588"]],[25,28,["H5800","(H853)"]],[28,30,["H3068"]],[30,31,["H430"]],[31,34,["H1"]],[34,37,["H6213"]],[37,38,["H8201"]],[38,39,["H854"]],[39,40,["H3101"]]]},{"k":11702,"v":[[0,5,["H1980"]],[5,6,["H4480"]],[6,8,["H3588"]],[8,10,["H5800"]],[10,13,["H7227"]],[13,14,["H4251"]],[14,17,["H5650"]],[17,18,["H7194"]],[18,19,["H5921"]],[19,23,["H1818"]],[23,26,["H1121"]],[26,28,["H3077"]],[28,30,["H3548"]],[30,32,["H2026"]],[32,34,["H5921"]],[34,36,["H4296"]],[36,39,["H4191"]],[39,42,["H6912"]],[42,46,["H5892"]],[46,48,["H1732"]],[48,51,["H6912"]],[51,53,["H3808"]],[53,56,["H6913"]],[56,59,["H4428"]]]},{"k":11703,"v":[[0,2,["H428"]],[2,6,["H7194"]],[6,7,["H5921"]],[7,9,["H2066"]],[9,11,["H1121"]],[11,13,["H8100"]],[13,15,["H5984"]],[15,17,["H3075"]],[17,19,["H1121"]],[19,21,["H8116"]],[21,23,["H4125"]]]},{"k":11704,"v":[[0,4,["H1121"]],[4,7,["H7230"]],[7,10,["H4853"]],[10,12,["H5921"]],[12,16,["H3247"]],[16,19,["H1004"]],[19,21,["H430"]],[21,22,["H2009"]],[22,25,["H3789"]],[25,26,["H5921"]],[26,28,["H4097"]],[28,31,["H5612"]],[31,34,["H4428"]],[34,36,["H558"]],[36,38,["H1121"]],[38,39,["H4427"]],[39,42,["H8478"]]]},{"k":11705,"v":[[0,1,["H558"]],[1,3,["H6242"]],[3,5,["H2568"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H6242"]],[16,18,["H8672"]],[18,19,["H8141"]],[19,21,["H3389"]],[21,24,["H517"]],[24,25,["H8034"]],[25,27,["H3086"]],[27,29,["H4480","H3389"]]]},{"k":11706,"v":[[0,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,14,["H7535"]],[14,15,["H3808"]],[15,18,["H8003"]],[18,19,["H3824"]]]},{"k":11707,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,8,["H4467"]],[8,10,["H2388"]],[10,11,["H5921"]],[11,15,["H2026","(H853)"]],[15,17,["H5650"]],[17,20,["H5221","(H853)"]],[20,22,["H4428"]],[22,24,["H1"]]]},{"k":11708,"v":[[0,3,["H4191"]],[3,4,["H3808"]],[4,6,["H1121"]],[6,7,["H3588"]],[7,12,["H3789"]],[12,15,["H8451"]],[15,18,["H5612"]],[18,20,["H4872"]],[20,21,["H834"]],[21,23,["H3068"]],[23,24,["H6680"]],[24,25,["H559"]],[25,27,["H1"]],[27,29,["H3808"]],[29,30,["H4191"]],[30,31,["H5921"]],[31,33,["H1121"]],[33,34,["H3808"]],[34,37,["H1121"]],[37,38,["H4191"]],[38,39,["H5921"]],[39,41,["H1"]],[41,42,["H3588"]],[42,44,["H376"]],[44,46,["H4191"]],[46,50,["H2399"]]]},{"k":11709,"v":[[0,2,["H558"]],[2,5,["H6908","(H853)","H3063"]],[5,7,["H5975"]],[7,9,["H8269"]],[9,11,["H505"]],[11,13,["H8269"]],[13,15,["H3967"]],[15,19,["H1004"]],[19,22,["H1"]],[22,24,["H3605"]],[24,25,["H3063"]],[25,27,["H1144"]],[27,30,["H6485"]],[30,33,["H6242"]],[33,34,["H8141"]],[34,35,["H4480","H1121"]],[35,37,["H4605"]],[37,39,["H4672"]],[39,41,["H7969"]],[41,42,["H3967"]],[42,43,["H505"]],[43,44,["H977"]],[44,49,["H3318"]],[49,51,["H6635"]],[51,54,["H270"]],[54,55,["H7420"]],[55,57,["H6793"]]]},{"k":11710,"v":[[0,2,["H7936"]],[2,5,["H3967"]],[5,6,["H505"]],[6,8,["H1368"]],[8,10,["H2428"]],[10,13,["H4480","H3478"]],[13,16,["H3967"]],[16,17,["H3603"]],[17,19,["H3701"]]]},{"k":11711,"v":[[0,3,["H935"]],[3,5,["H376"]],[5,7,["H430"]],[7,8,["H413"]],[8,10,["H559"]],[10,12,["H4428"]],[12,14,["H408"]],[14,16,["H6635"]],[16,18,["H3478"]],[18,19,["H935"]],[19,20,["H5973"]],[20,22,["H3588"]],[22,24,["H3068"]],[24,26,["H369"]],[26,27,["H5973"]],[27,28,["H3478"]],[28,32,["H3605"]],[32,34,["H1121"]],[34,36,["H669"]]]},{"k":11712,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,3,["H859"]],[3,5,["H935"]],[5,6,["H6213"]],[6,9,["H2388"]],[9,12,["H4421"]],[12,13,["H430"]],[13,17,["H3782"]],[17,18,["H6440"]],[18,20,["H341"]],[20,21,["H3588"]],[21,22,["H430"]],[22,23,["H3426"]],[23,24,["H3581"]],[24,26,["H5826"]],[26,30,["H3782"]]]},{"k":11713,"v":[[0,2,["H558"]],[2,3,["H559"]],[3,6,["H376"]],[6,8,["H430"]],[8,10,["H4100"]],[10,13,["H6213"]],[13,16,["H3967"]],[16,17,["H3603"]],[17,18,["H834"]],[18,21,["H5414"]],[21,24,["H1416"]],[24,26,["H3478"]],[26,29,["H376"]],[29,31,["H430"]],[31,32,["H559"]],[32,34,["H3068"]],[34,35,["H3426"]],[35,38,["H5414"]],[38,41,["H7235"]],[41,43,["H4480","H2088"]]]},{"k":11714,"v":[[0,2,["H558"]],[2,3,["H914"]],[3,8,["H1416"]],[8,9,["H834"]],[9,11,["H935"]],[11,12,["H413"]],[12,16,["H4480","H669"]],[16,18,["H1980"]],[18,19,["H4725"]],[19,23,["H639"]],[23,25,["H3966"]],[25,26,["H2734"]],[26,28,["H3063"]],[28,31,["H7725"]],[31,32,["H4725"]],[32,34,["H2750"]],[34,35,["H639"]]]},{"k":11715,"v":[[0,2,["H558"]],[2,4,["H2388"]],[4,7,["H5090","(H853)"]],[7,9,["H5971"]],[9,11,["H1980"]],[11,14,["H1516"]],[14,16,["H4417"]],[16,18,["H5221","(H853)"]],[18,21,["H1121"]],[21,23,["H8165"]],[23,24,["H6235"]],[24,25,["H505"]]]},{"k":11716,"v":[[0,3,["H6235"]],[3,4,["H505"]],[4,6,["H2416"]],[6,9,["H1121"]],[9,11,["H3063"]],[11,14,["H7617"]],[14,16,["H935"]],[16,20,["H7218"]],[20,23,["H5553"]],[23,27,["H7993"]],[27,30,["H4480","H7218"]],[30,33,["H5553"]],[33,36,["H3605"]],[36,40,["H1234"]]]},{"k":11717,"v":[[0,3,["H1121"]],[3,6,["H1416"]],[6,7,["H834"]],[7,8,["H558"]],[8,10,["H7725"]],[10,15,["H4480","H1980"]],[15,16,["H5973"]],[16,19,["H4421"]],[19,21,["H6584"]],[21,23,["H5892"]],[23,25,["H3063"]],[25,27,["H4480","H8111"]],[27,29,["H5704"]],[29,30,["H1032"]],[30,32,["H5221"]],[32,33,["H7969"]],[33,34,["H505"]],[34,35,["H4480"]],[35,38,["H962"]],[38,39,["H7227"]],[39,40,["H961"]]]},{"k":11718,"v":[[0,5,["H1961"]],[5,7,["H310"]],[7,8,["H558"]],[8,10,["H935"]],[10,13,["H4480","H5221","(H853)"]],[13,16,["H130"]],[16,19,["H935","(H853)"]],[19,21,["H430"]],[21,24,["H1121"]],[24,26,["H8165"]],[26,30,["H5975"]],[30,34,["H430"]],[34,38,["H7812"]],[38,39,["H6440"]],[39,43,["H6999"]],[43,45,[]]]},{"k":11719,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,10,["H558"]],[10,13,["H7971"]],[13,14,["H413"]],[14,17,["H5030"]],[17,19,["H559"]],[19,22,["H4100"]],[22,26,["H1875","(H853)"]],[26,28,["H430"]],[28,31,["H5971"]],[31,32,["H834"]],[32,34,["H3808"]],[34,35,["H5337","(H853)"]],[35,38,["H5971"]],[38,42,["H4480","H3027"]]]},{"k":11720,"v":[[0,5,["H1961"]],[5,8,["H1696"]],[8,9,["H413"]],[9,14,["H559"]],[14,19,["H5414"]],[19,22,["H4428"]],[22,23,["H3289"]],[23,24,["H2308"]],[24,25,["H4100"]],[25,29,["H5221"]],[29,32,["H5030"]],[32,33,["H2308"]],[33,35,["H559"]],[35,37,["H3045"]],[37,38,["H3588"]],[38,39,["H430"]],[39,41,["H3289"]],[41,43,["H7843"]],[43,45,["H3588"]],[45,48,["H6213"]],[48,49,["H2063"]],[49,52,["H3808"]],[52,53,["H8085"]],[53,56,["H6098"]]]},{"k":11721,"v":[[0,2,["H558"]],[2,3,["H4428"]],[3,5,["H3063"]],[5,7,["H3289"]],[7,9,["H7971"]],[9,10,["H413"]],[10,11,["H3101"]],[11,13,["H1121"]],[13,15,["H3059"]],[15,17,["H1121"]],[17,19,["H3058"]],[19,20,["H4428"]],[20,22,["H3478"]],[22,23,["H559"]],[23,24,["H1980"]],[24,29,["H7200"]],[29,32,["H6440"]]]},{"k":11722,"v":[[0,2,["H3101"]],[2,3,["H4428"]],[3,5,["H3478"]],[5,6,["H7971"]],[6,7,["H413"]],[7,8,["H558"]],[8,9,["H4428"]],[9,11,["H3063"]],[11,12,["H559"]],[12,14,["H2336"]],[14,15,["H834"]],[15,18,["H3844"]],[18,19,["H7971"]],[19,20,["H413"]],[20,22,["H730"]],[22,23,["H834"]],[23,26,["H3844"]],[26,27,["H559"]],[27,28,["H5414","(H853)"]],[28,30,["H1323"]],[30,33,["H1121"]],[33,35,["H802"]],[35,39,["H5674"]],[39,41,["H7704"]],[41,42,["H2416"]],[42,43,["H834"]],[43,46,["H3844"]],[46,49,["H7429","(H853)"]],[49,51,["H2336"]]]},{"k":11723,"v":[[0,2,["H559"]],[2,3,["H2009"]],[3,6,["H5221","(H853)"]],[6,8,["H123"]],[8,11,["H3820"]],[11,14,["H5375"]],[14,16,["H3513"]],[16,17,["H3427"]],[17,18,["H6258"]],[18,20,["H1004"]],[20,21,["H4100"]],[21,24,["H1624"]],[24,27,["H7451"]],[27,31,["H5307"]],[31,33,["H859"]],[33,35,["H3063"]],[35,36,["H5973"]],[36,37,[]]]},{"k":11724,"v":[[0,2,["H558"]],[2,4,["H3808"]],[4,5,["H8085"]],[5,6,["H3588"]],[6,7,["H1931"]],[7,10,["H4480","H430"]],[10,11,["H4616"]],[11,14,["H5414"]],[14,18,["H3027"]],[18,22,["H3588"]],[22,25,["H1875","(H853)"]],[25,27,["H430"]],[27,29,["H123"]]]},{"k":11725,"v":[[0,2,["H3101"]],[2,4,["H4428"]],[4,6,["H3478"]],[6,8,["H5927"]],[8,13,["H7200"]],[13,16,["H6440"]],[16,18,["H1931"]],[18,20,["H558"]],[20,21,["H4428"]],[21,23,["H3063"]],[23,25,["H1053"]],[25,26,["H834"]],[26,29,["H3063"]]]},{"k":11726,"v":[[0,2,["H3063"]],[2,7,["H5062"]],[7,8,["H6440"]],[8,9,["H3478"]],[9,12,["H5127"]],[12,14,["H376"]],[14,17,["H168"]]]},{"k":11727,"v":[[0,2,["H3101"]],[2,4,["H4428"]],[4,6,["H3478"]],[6,7,["H8610"]],[7,8,["H558"]],[8,9,["H4428"]],[9,11,["H3063"]],[11,13,["H1121"]],[13,15,["H3101"]],[15,17,["H1121"]],[17,19,["H3059"]],[19,21,["H1053"]],[21,23,["H935"]],[23,26,["H3389"]],[26,29,["H6555"]],[29,31,["H2346"]],[31,33,["H3389"]],[33,36,["H4480","H8179"]],[36,38,["H669"]],[38,39,["H5704"]],[39,41,["H6438"]],[41,42,["H8179"]],[42,43,["H702"]],[43,44,["H3967"]],[44,45,["H520"]]]},{"k":11728,"v":[[0,4,["H3605"]],[4,6,["H2091"]],[6,9,["H3701"]],[9,10,["(H853)"]],[10,11,["H3605"]],[11,13,["H3627"]],[13,16,["H4672"]],[16,19,["H1004"]],[19,21,["H430"]],[21,22,["H5973"]],[22,23,["H5654"]],[23,26,["H214"]],[26,29,["H4428"]],[29,30,["H1004","(H853)"]],[30,32,["H1121","H8594"]],[32,35,["H7725"]],[35,37,["H8111"]]]},{"k":11729,"v":[[0,2,["H558"]],[2,4,["H1121"]],[4,6,["H3101"]],[6,7,["H4428"]],[7,9,["H3063"]],[9,10,["H2421"]],[10,11,["H310"]],[11,13,["H4194"]],[13,15,["H3101"]],[15,16,["H1121"]],[16,18,["H3059"]],[18,19,["H4428"]],[19,21,["H3478"]],[21,22,["H2568","H6240"]],[22,23,["H8141"]]]},{"k":11730,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H558"]],[8,9,["H7223"]],[9,11,["H314"]],[11,12,["H2009"]],[12,15,["H3808"]],[15,16,["H3789"]],[16,17,["H5921"]],[17,19,["H5612"]],[19,22,["H4428"]],[22,24,["H3063"]],[24,26,["H3478"]]]},{"k":11731,"v":[[0,4,["H4480","H6256"]],[4,5,["H834"]],[5,6,["H558"]],[6,9,["H5493"]],[9,11,["H4480","H310"]],[11,13,["H3068"]],[13,15,["H7194"]],[15,17,["H7195"]],[17,18,["H5921"]],[18,21,["H3389"]],[21,24,["H5127"]],[24,26,["H3923"]],[26,29,["H7971"]],[29,31,["H3923"]],[31,32,["H310"]],[32,35,["H4191"]],[35,37,["H8033"]]]},{"k":11732,"v":[[0,3,["H5375"]],[3,5,["H5921"]],[5,6,["H5483"]],[6,8,["H6912"]],[8,10,["H5973"]],[10,12,["H1"]],[12,15,["H5892"]],[15,17,["H3063"]]]},{"k":11733,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H3063"]],[6,7,["H3947","(H853)"]],[7,8,["H5818"]],[8,9,["H1931"]],[9,11,["H8337","H6240"]],[11,12,["H8141"]],[12,13,["H1121"]],[13,17,["H4427","(H853)"]],[17,21,["H8478"]],[21,23,["H1"]],[23,24,["H558"]]]},{"k":11734,"v":[[0,1,["H1931"]],[1,2,["H1129","(H853)"]],[2,3,["H359"]],[3,5,["H7725"]],[5,8,["H3063"]],[8,10,["H310"]],[10,12,["H4428"]],[12,13,["H7901"]],[13,14,["H5973"]],[14,16,["H1"]]]},{"k":11735,"v":[[0,1,["H8337","H6240"]],[1,2,["H8141"]],[2,3,["H1121"]],[3,5,["H5818"]],[5,10,["H4427"]],[10,13,["H4427"]],[13,14,["H2572"]],[14,16,["H8147"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,21,["H517"]],[21,22,["H8034"]],[22,25,["H3203"]],[25,26,["H4480"]],[26,27,["H3389"]]]},{"k":11736,"v":[[0,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3605"]],[16,17,["H834"]],[17,19,["H1"]],[19,20,["H558"]],[20,21,["H6213"]]]},{"k":11737,"v":[[0,3,["H1961","H1875"]],[3,4,["H430"]],[4,7,["H3117"]],[7,9,["H2148"]],[9,12,["H995"]],[12,15,["H7200"]],[15,17,["H430"]],[17,21,["H3117"]],[21,23,["H1875","(H853)"]],[23,25,["H3068"]],[25,26,["H430"]],[26,30,["H6743"]]]},{"k":11738,"v":[[0,4,["H3318"]],[4,6,["H3898"]],[6,9,["H6430"]],[9,12,["H6555","(H853)"]],[12,14,["H2346"]],[14,16,["H1661"]],[16,19,["H2346"]],[19,21,["H2996"]],[21,24,["H2346"]],[24,26,["H795"]],[26,28,["H1129"]],[28,29,["H5892"]],[29,31,["H795"]],[31,35,["H6430"]]]},{"k":11739,"v":[[0,2,["H430"]],[2,3,["H5826"]],[3,5,["H5921"]],[5,7,["H6430"]],[7,9,["H5921"]],[9,11,["H6163"]],[11,13,["H3427"]],[13,15,["H1485"]],[15,18,["H4586"]]]},{"k":11740,"v":[[0,3,["H5984"]],[3,4,["H5414"]],[4,5,["H4503"]],[5,7,["H5818"]],[7,10,["H8034"]],[10,12,["H1980"]],[12,14,["H5704"]],[14,17,["H935"]],[17,19,["H4714"]],[19,20,["H3588"]],[20,22,["H2388"]],[22,24,["H5704","H4605"]]]},{"k":11741,"v":[[0,2,["H5818"]],[2,3,["H1129"]],[3,4,["H4026"]],[4,6,["H3389"]],[6,7,["H5921"]],[7,9,["H6438"]],[9,10,["H8179"]],[10,12,["H5921"]],[12,14,["H1516"]],[14,15,["H8179"]],[15,17,["H5921"]],[17,19,["H4740"]],[19,24,["H2388"]],[24,25,[]]]},{"k":11742,"v":[[0,3,["H1129"]],[3,4,["H4026"]],[4,7,["H4057"]],[7,9,["H2672"]],[9,10,["H7227"]],[10,11,["H953"]],[11,12,["H3588"]],[12,14,["H1961"]],[14,15,["H7227"]],[15,16,["H4735"]],[16,21,["H8219"]],[21,25,["H4334"]],[25,26,["H406"]],[26,30,["H3755"]],[30,33,["H2022"]],[33,36,["H3760"]],[36,37,["H3588"]],[37,39,["H1961","H157"]],[39,40,["H127"]]]},{"k":11743,"v":[[0,2,["H5818"]],[2,3,["H1961"]],[3,5,["H2428"]],[5,8,["H6213","H4421"]],[8,11,["H3318"]],[11,13,["H6635"]],[13,15,["H1416"]],[15,19,["H4557"]],[19,22,["H6486"]],[22,25,["H3027"]],[25,27,["H3273"]],[27,29,["H5608"]],[29,31,["H4641"]],[31,33,["H7860"]],[33,34,["H5921"]],[34,36,["H3027"]],[36,38,["H2608"]],[38,42,["H4428"]],[42,43,["H4480","H8269"]]]},{"k":11744,"v":[[0,2,["H3605"]],[2,3,["H4557"]],[3,6,["H7218"]],[6,9,["H1"]],[9,13,["H1368"]],[13,15,["H2428"]],[15,18,["H505"]],[18,20,["H8337"]],[20,21,["H3967"]]]},{"k":11745,"v":[[0,2,["H5921"]],[2,4,["H3027"]],[4,7,["H2428","H6635"]],[7,8,["H7969"]],[8,9,["H3967"]],[9,10,["H505"]],[10,12,["H7651"]],[12,13,["H505"]],[13,15,["H2568"]],[15,16,["H3967"]],[16,18,["H6213"]],[18,19,["H4421"]],[19,21,["H2428"]],[21,22,["H3581"]],[22,24,["H5826"]],[24,26,["H4428"]],[26,27,["H5921"]],[27,29,["H341"]]]},{"k":11746,"v":[[0,2,["H5818"]],[2,3,["H3559"]],[3,7,["H3605"]],[7,9,["H6635"]],[9,10,["H4043"]],[10,12,["H7420"]],[12,14,["H3553"]],[14,16,["H8302"]],[16,18,["H7198"]],[18,20,["H7050"]],[20,23,["H68"]]]},{"k":11747,"v":[[0,3,["H6213"]],[3,5,["H3389"]],[5,6,["H2810"]],[6,7,["H4284"]],[7,10,["H2803"]],[10,12,["H1961"]],[12,13,["H5921"]],[13,15,["H4026"]],[15,17,["H5921"]],[17,19,["H6438"]],[19,21,["H3384"]],[21,22,["H2671"]],[22,24,["H1419"]],[24,25,["H68"]],[25,29,["H8034"]],[29,30,["H3318"]],[30,32,["H5704","H4480","H7350"]],[32,33,["H3588"]],[33,36,["H6381"]],[36,37,["H5826"]],[37,38,["H5704","H3588"]],[38,41,["H2388"]]]},{"k":11748,"v":[[0,5,["H2394"]],[5,7,["H3820"]],[7,10,["H1361"]],[10,11,["H5704"]],[11,13,["H7843"]],[13,16,["H4603"]],[16,19,["H3068"]],[19,21,["H430"]],[21,23,["H935"]],[23,24,["H413"]],[24,26,["H1964"]],[26,29,["H3068"]],[29,32,["H6999"]],[32,33,["H5921"]],[33,35,["H4196"]],[35,37,["H7004"]]]},{"k":11749,"v":[[0,2,["H5838"]],[2,4,["H3548"]],[4,6,["H935"]],[6,7,["H310"]],[7,10,["H5973"]],[10,12,["H8084"]],[12,13,["H3548"]],[13,16,["H3068"]],[16,20,["H1121","H2428"]]]},{"k":11750,"v":[[0,3,["H5975","H5921"]],[3,4,["H5818"]],[4,6,["H4428"]],[6,8,["H559"]],[8,13,["H3808"]],[13,16,["H5818"]],[16,19,["H6999"]],[19,22,["H3068"]],[22,23,["H3588"]],[23,26,["H3548"]],[26,28,["H1121"]],[28,30,["H175"]],[30,33,["H6942"]],[33,36,["H6999"]],[36,38,["H3318"]],[38,39,["H4480"]],[39,41,["H4720"]],[41,42,["H3588"]],[42,45,["H4603"]],[45,46,["H3808"]],[46,52,["H3519"]],[52,55,["H4480","H3068"]],[55,56,["H430"]]]},{"k":11751,"v":[[0,2,["H5818"]],[2,4,["H2196"]],[4,8,["H4730"]],[8,11,["H3027"]],[11,14,["H6999"]],[14,19,["H2196"]],[19,20,["H5973"]],[20,22,["H3548"]],[22,24,["H6883"]],[24,27,["H2224"]],[27,30,["H4696"]],[30,31,["H6440"]],[31,33,["H3548"]],[33,36,["H1004"]],[36,39,["H3068"]],[39,41,["H4480","H5921"]],[41,43,["H7004"]],[43,44,["H4196"]]]},{"k":11752,"v":[[0,2,["H5838"]],[2,4,["H7218"]],[4,5,["H3548"]],[5,7,["H3605"]],[7,9,["H3548"]],[9,10,["H6437"]],[10,11,["H413"]],[11,14,["H2009"]],[14,15,["H1931"]],[15,17,["H6879"]],[17,20,["H4696"]],[20,25,["H926"]],[25,27,["H4480","H8033"]],[27,29,["H1931"]],[29,30,["H1765"]],[30,31,["H1571"]],[31,34,["H3318"]],[34,35,["H3588"]],[35,37,["H3068"]],[37,39,["H5060"]],[39,40,[]]]},{"k":11753,"v":[[0,2,["H5818"]],[2,4,["H4428"]],[4,5,["H1961"]],[5,7,["H6879"]],[7,8,["H5704"]],[8,10,["H3117"]],[10,13,["H4194"]],[13,15,["H3427"]],[15,18,["H2669"]],[18,19,["H1004"]],[19,22,["H6879"]],[22,23,["H3588"]],[23,27,["H1504"]],[27,30,["H4480","H1004"]],[30,33,["H3068"]],[33,35,["H3147"]],[35,37,["H1121"]],[37,39,["H5921"]],[39,41,["H4428"]],[41,42,["H1004"]],[42,43,["H8199","(H853)"]],[43,45,["H5971"]],[45,48,["H776"]]]},{"k":11754,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H5818"]],[8,9,["H7223"]],[9,11,["H314"]],[11,13,["H3470"]],[13,15,["H5030"]],[15,17,["H1121"]],[17,19,["H531"]],[19,20,["H3789"]]]},{"k":11755,"v":[[0,2,["H5818"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,11,["H5973"]],[11,13,["H1"]],[13,16,["H7704"]],[16,19,["H6900"]],[19,20,["H834"]],[20,24,["H4428"]],[24,25,["H3588"]],[25,27,["H559"]],[27,28,["H1931"]],[28,31,["H6879"]],[31,33,["H3147"]],[33,35,["H1121"]],[35,36,["H4427"]],[36,39,["H8478"]]]},{"k":11756,"v":[[0,1,["H3147"]],[1,3,["H6242"]],[3,5,["H2568"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H8337","H6240"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,21,["H517"]],[21,22,["H8034"]],[22,25,["H3388"]],[25,27,["H1323"]],[27,29,["H6659"]]]},{"k":11757,"v":[[0,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3605"]],[16,17,["H834"]],[17,19,["H1"]],[19,20,["H5818"]],[20,21,["H6213"]],[21,22,["H7535"]],[22,24,["H935"]],[24,25,["H3808"]],[25,26,["H413"]],[26,28,["H1964"]],[28,31,["H3068"]],[31,34,["H5971"]],[34,37,["H7843","H5750"]]]},{"k":11758,"v":[[0,1,["H1931"]],[1,2,["H1129","(H853)"]],[2,4,["H5945"]],[4,5,["H8179"]],[5,8,["H1004"]],[8,11,["H3068"]],[11,15,["H2346"]],[15,17,["H6077"]],[17,19,["H1129"]],[19,20,["H7230"]]]},{"k":11759,"v":[[0,3,["H1129"]],[3,4,["H5892"]],[4,7,["H2022"]],[7,9,["H3063"]],[9,13,["H2793"]],[13,15,["H1129"]],[15,16,["H1003"]],[16,18,["H4026"]]]},{"k":11760,"v":[[0,1,["H1931"]],[1,2,["H3898"]],[2,4,["H5973"]],[4,6,["H4428"]],[6,9,["H1121","H5983"]],[9,11,["H2388"]],[11,12,["H5921"]],[12,16,["H1121"]],[16,18,["H5983"]],[18,19,["H5414"]],[19,22,["H1931"]],[22,23,["H8141"]],[23,25,["H3967"]],[25,26,["H3603"]],[26,28,["H3701"]],[28,30,["H6235"]],[30,31,["H505"]],[31,32,["H3734"]],[32,34,["H2406"]],[34,36,["H6235"]],[36,37,["H505"]],[37,39,["H8184"]],[39,41,["H2063"]],[41,44,["H1121"]],[44,46,["H5983"]],[46,47,["H7725"]],[47,52,["H8145"]],[52,53,["H8141"]],[53,56,["H7992"]]]},{"k":11761,"v":[[0,2,["H3147"]],[2,4,["H2388"]],[4,5,["H3588"]],[5,7,["H3559"]],[7,9,["H1870"]],[9,10,["H6440"]],[10,12,["H3068"]],[12,14,["H430"]]]},{"k":11762,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3147"]],[8,10,["H3605"]],[10,12,["H4421"]],[12,15,["H1870"]],[15,16,["H2009"]],[16,19,["H3789"]],[19,20,["H5921"]],[20,22,["H5612"]],[22,25,["H4428"]],[25,27,["H3478"]],[27,29,["H3063"]]]},{"k":11763,"v":[[0,2,["H1961"]],[2,3,["H2568"]],[3,5,["H6242"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,14,["H4427"]],[14,15,["H8337","H6240"]],[15,16,["H8141"]],[16,18,["H3389"]]]},{"k":11764,"v":[[0,2,["H3147"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,13,["H5892"]],[13,15,["H1732"]],[15,17,["H271"]],[17,19,["H1121"]],[19,20,["H4427"]],[20,23,["H8478"]]]},{"k":11765,"v":[[0,1,["H271"]],[1,3,["H6242"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,10,["H4427"]],[10,13,["H4427"]],[13,14,["H8337","H6240"]],[14,15,["H8141"]],[15,17,["H3389"]],[17,20,["H6213"]],[20,21,["H3808"]],[21,25,["H3477"]],[25,28,["H5869"]],[28,31,["H3068"]],[31,33,["H1732"]],[33,35,["H1"]]]},{"k":11766,"v":[[0,3,["H1980"]],[3,6,["H1870"]],[6,9,["H4428"]],[9,11,["H3478"]],[11,13,["H6213"]],[13,14,["H1571"]],[14,16,["H4541"]],[16,18,["H1168"]]]},{"k":11767,"v":[[0,2,["H1931"]],[2,4,["H6999"]],[4,7,["H1516"]],[7,10,["H1121"]],[10,12,["H2011"]],[12,14,["H1197","(H853)"]],[14,16,["H1121"]],[16,19,["H784"]],[19,22,["H8441"]],[22,25,["H1471"]],[25,26,["H834"]],[26,28,["H3068"]],[28,31,["H3423"]],[31,32,["H4480","H6440"]],[32,34,["H1121"]],[34,36,["H3478"]]]},{"k":11768,"v":[[0,2,["H2076"]],[2,6,["H6999"]],[6,10,["H1116"]],[10,12,["H5921"]],[12,14,["H1389"]],[14,16,["H8478"]],[16,17,["H3605"]],[17,18,["H7488"]],[18,19,["H6086"]]]},{"k":11769,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,6,["H5414"]],[6,10,["H3027"]],[10,13,["H4428"]],[13,15,["H758"]],[15,18,["H5221"]],[18,22,["H7617"]],[22,24,["H1419"]],[24,26,["H4480"]],[26,28,["H7633"]],[28,30,["H935"]],[30,33,["H1834"]],[33,37,["H1571"]],[37,38,["H5414"]],[38,41,["H3027"]],[41,44,["H4428"]],[44,46,["H3478"]],[46,48,["H5221"]],[48,52,["H1419"]],[52,53,["H4347"]]]},{"k":11770,"v":[[0,2,["H6492"]],[2,4,["H1121"]],[4,6,["H7425"]],[6,7,["H2026"]],[7,9,["H3063"]],[9,11,["H3967"]],[11,13,["H6242"]],[13,14,["H505"]],[14,16,["H259"]],[16,17,["H3117"]],[17,20,["H3605"]],[20,22,["H1121","H2428"]],[22,26,["H5800","(H853)"]],[26,28,["H3068"]],[28,29,["H430"]],[29,32,["H1"]]]},{"k":11771,"v":[[0,2,["H2147"]],[2,5,["H1368"]],[5,7,["H669"]],[7,8,["H2026","(H853)"]],[8,9,["H4641"]],[9,11,["H4428"]],[11,12,["H1121"]],[12,14,["H5840"]],[14,16,["H5057"]],[16,19,["H1004"]],[19,21,["H511"]],[21,24,["H4932"]],[24,27,["H4428"]]]},{"k":11772,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,8,["H7617"]],[8,11,["H4480","H251"]],[11,13,["H3967"]],[13,14,["H505"]],[14,15,["H802"]],[15,16,["H1121"]],[16,18,["H1323"]],[18,22,["H962","H1571"]],[22,23,["H7227"]],[23,24,["H7998"]],[24,25,["H4480"]],[25,28,["H935","(H853)"]],[28,30,["H7998"]],[30,32,["H8111"]]]},{"k":11773,"v":[[0,3,["H5030"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H8033"]],[8,10,["H8034"]],[10,12,["H5752"]],[12,16,["H3318"]],[16,17,["H6440"]],[17,19,["H6635"]],[19,21,["H935"]],[21,23,["H8111"]],[23,25,["H559"]],[25,28,["H2009"]],[28,31,["H3068"]],[31,32,["H430"]],[32,35,["H1"]],[35,37,["H2534"]],[37,38,["H5921"]],[38,39,["H3063"]],[39,42,["H5414"]],[42,46,["H3027"]],[46,50,["H2026"]],[50,54,["H2197"]],[54,57,["H5060"]],[57,58,["H5704"]],[58,59,["H8064"]]]},{"k":11774,"v":[[0,2,["H6258"]],[2,3,["H859"]],[3,4,["H559"]],[4,7,["H3533"]],[7,9,["H1121"]],[9,11,["H3063"]],[11,13,["H3389"]],[13,15,["H5650"]],[15,17,["H8198"]],[17,23,["H3808"]],[23,24,["H5973"]],[24,26,["H7535"]],[26,28,["H859"]],[28,29,["H819"]],[29,32,["H3068"]],[32,34,["H430"]]]},{"k":11775,"v":[[0,1,["H6258"]],[1,2,["H8085"]],[2,6,["H7725"]],[6,8,["H7633"]],[8,10,["H834"]],[10,14,["H7617"]],[14,17,["H4480","H251"]],[17,18,["H3588"]],[18,20,["H2740"]],[20,21,["H639"]],[21,24,["H3068"]],[24,26,["H5921"]],[26,27,[]]]},{"k":11776,"v":[[0,2,["H376"]],[2,5,["H4480","H7218"]],[5,8,["H1121"]],[8,10,["H669"]],[10,11,["H5838"]],[11,13,["H1121"]],[13,15,["H3076"]],[15,16,["H1296"]],[16,18,["H1121"]],[18,20,["H4919"]],[20,22,["H3169"]],[22,24,["H1121"]],[24,26,["H7967"]],[26,28,["H6021"]],[28,30,["H1121"]],[30,32,["H2311"]],[32,34,["H6965"]],[34,35,["H5921"]],[35,38,["H935"]],[38,39,["H4480"]],[39,41,["H6635"]]]},{"k":11777,"v":[[0,2,["H559"]],[2,7,["H3808"]],[7,9,["H935","(H853)"]],[9,11,["H7633"]],[11,12,["H2008"]],[12,14,["H3588"]],[14,18,["H819","H5921"]],[18,20,["H3068"]],[20,22,["H859"]],[22,23,["H559"]],[23,25,["H3254"]],[25,27,["H5921"]],[27,29,["H2403"]],[29,31,["H5921"]],[31,33,["H819"]],[33,34,["H3588"]],[34,36,["H819"]],[36,38,["H7227"]],[38,42,["H2740"]],[42,43,["H639"]],[43,44,["H5921"]],[44,45,["H3478"]]]},{"k":11778,"v":[[0,4,["H2502"]],[4,5,["H5800","(H853)"]],[5,7,["H7633"]],[7,10,["H961"]],[10,11,["H6440"]],[11,13,["H8269"]],[13,15,["H3605"]],[15,17,["H6951"]]]},{"k":11779,"v":[[0,3,["H376"]],[3,4,["H834"]],[4,6,["H5344"]],[6,8,["H8034"]],[8,10,["H6965"]],[10,12,["H2388"]],[12,14,["H7633"]],[14,16,["H4480"]],[16,18,["H7998"]],[18,19,["H3847"]],[19,20,["H3605"]],[20,23,["H4636"]],[23,27,["H3847"]],[27,30,["H5274"]],[30,36,["H398"]],[36,39,["H8248"]],[39,41,["H5480"]],[41,44,["H5095"]],[44,45,["H3605"]],[45,47,["H3782"]],[47,51,["H2543"]],[51,53,["H935"]],[53,56,["H3405"]],[56,61,["H5899"]],[61,62,["H681"]],[62,64,["H251"]],[64,67,["H7725"]],[67,69,["H8111"]]]},{"k":11780,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,5,["H4428"]],[5,6,["H271"]],[6,7,["H7971"]],[7,8,["H5921"]],[8,10,["H4428"]],[10,12,["H804"]],[12,14,["H5826"]],[14,15,[]]]},{"k":11781,"v":[[0,2,["H5750"]],[2,4,["H130"]],[4,6,["H935"]],[6,8,["H5221"]],[8,9,["H3063"]],[9,12,["H7617"]],[12,13,["H7628"]]]},{"k":11782,"v":[[0,2,["H6430"]],[2,5,["H6584"]],[5,7,["H5892"]],[7,11,["H8219"]],[11,15,["H5045"]],[15,17,["H3063"]],[17,20,["H3920","(H853)"]],[20,21,["H1053"]],[21,23,["H357"]],[23,25,["H1450"]],[25,27,["H7755"]],[27,30,["H1323"]],[30,33,["H8553"]],[33,36,["H1323"]],[36,38,["H1579"]],[38,42,["H1323"]],[42,46,["H3427"]],[46,47,["H8033"]]]},{"k":11783,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,4,["H3665","(H853)"]],[4,5,["H3063"]],[5,8,["H5668"]],[8,9,["H271"]],[9,10,["H4428"]],[10,12,["H3478"]],[12,13,["H3588"]],[13,17,["H6544","H3063"]],[17,19,["H4603"]],[19,20,["H4604"]],[20,23,["H3068"]]]},{"k":11784,"v":[[0,2,["H8407"]],[2,3,["H4428"]],[3,5,["H804"]],[5,6,["H935"]],[6,7,["H5921"]],[7,10,["H6696"]],[10,13,["H2388"]],[13,15,["H3808"]]]},{"k":11785,"v":[[0,1,["H3588"]],[1,2,["H271"]],[2,6,["H2505"]],[6,8,["(H853)"]],[8,10,["H1004"]],[10,13,["H3068"]],[13,18,["H1004"]],[18,21,["H4428"]],[21,25,["H8269"]],[25,27,["H5414"]],[27,31,["H4428"]],[31,33,["H804"]],[33,36,["H5833"]],[36,38,["H3808"]]]},{"k":11786,"v":[[0,4,["H6256"]],[4,7,["H6887"]],[7,10,["H4603"]],[10,12,["H3254"]],[12,15,["H3068"]],[15,16,["H1931"]],[16,19,["H4428"]],[19,20,["H271"]]]},{"k":11787,"v":[[0,3,["H2076"]],[3,6,["H430"]],[6,8,["H1834"]],[8,10,["H5221"]],[10,14,["H559"]],[14,15,["H3588"]],[15,17,["H430"]],[17,20,["H4428"]],[20,22,["H758"]],[22,23,["H5826"]],[23,28,["H2076"]],[28,34,["H5826"]],[34,37,["H1992"]],[37,38,["H1961"]],[38,40,["H3782"]],[40,45,["H3605"]],[45,46,["H3478"]]]},{"k":11788,"v":[[0,2,["H271"]],[2,4,["H622","(H853)"]],[4,6,["H3627"]],[6,9,["H1004"]],[9,11,["H430"]],[11,15,["H7112","(H853)"]],[15,17,["H3627"]],[17,20,["H1004"]],[20,22,["H430"]],[22,25,["H5462","(H853)"]],[25,27,["H1817"]],[27,30,["H1004"]],[30,33,["H3068"]],[33,36,["H6213"]],[36,38,["H4196"]],[38,40,["H3605"]],[40,41,["H6438"]],[41,43,["H3389"]]]},{"k":11789,"v":[[0,3,["H3605"]],[3,5,["H5892","H5892"]],[5,7,["H3063"]],[7,9,["H6213"]],[9,11,["H1116"]],[11,14,["H6999"]],[14,16,["H312"]],[16,17,["H430"]],[17,21,["H3707","(H853)"]],[21,23,["H3068"]],[23,24,["H430"]],[24,27,["H1"]]]},{"k":11790,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,9,["H3605"]],[9,11,["H1870"]],[11,12,["H7223"]],[12,14,["H314"]],[14,15,["H2009"]],[15,18,["H3789"]],[18,19,["H5921"]],[19,21,["H5612"]],[21,24,["H4428"]],[24,26,["H3063"]],[26,28,["H3478"]]]},{"k":11791,"v":[[0,2,["H271"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,13,["H5892"]],[13,16,["H3389"]],[16,17,["H3588"]],[17,19,["H935"]],[19,21,["H3808"]],[21,24,["H6913"]],[24,27,["H4428"]],[27,29,["H3478"]],[29,31,["H3169"]],[31,33,["H1121"]],[33,34,["H4427"]],[34,37,["H8478"]]]},{"k":11792,"v":[[0,1,["H3169"]],[1,4,["H4427"]],[4,8,["H2568"]],[8,10,["H6242"]],[10,11,["H8141"]],[11,12,["H1121"]],[12,15,["H4427"]],[15,16,["H8672"]],[16,18,["H6242"]],[18,19,["H8141"]],[19,21,["H3389"]],[21,24,["H517"]],[24,25,["H8034"]],[25,27,["H29"]],[27,29,["H1323"]],[29,31,["H2148"]]]},{"k":11793,"v":[[0,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3605"]],[16,17,["H834"]],[17,18,["H1732"]],[18,20,["H1"]],[20,22,["H6213"]]]},{"k":11794,"v":[[0,1,["H1931"]],[1,4,["H7223"]],[4,5,["H8141"]],[5,8,["H4427"]],[8,11,["H7223"]],[11,12,["H2320"]],[12,13,["H6605","(H853)"]],[13,15,["H1817"]],[15,18,["H1004"]],[18,21,["H3068"]],[21,23,["H2388"]],[23,24,[]]]},{"k":11795,"v":[[0,4,["H935","(H853)"]],[4,6,["H3548"]],[6,9,["H3881"]],[9,13,["H622"]],[13,16,["H4217"]],[16,17,["H7339"]]]},{"k":11796,"v":[[0,2,["H559"]],[2,5,["H8085"]],[5,8,["H3881"]],[8,11,["H6942","H6258"]],[11,13,["H6942","(H853)"]],[13,15,["H1004"]],[15,18,["H3068"]],[18,19,["H430"]],[19,22,["H1"]],[22,25,["H3318","(H853)"]],[25,27,["H5079"]],[27,29,["H4480"]],[29,31,["H6944"]],[31,32,[]]]},{"k":11797,"v":[[0,1,["H3588"]],[1,3,["H1"]],[3,5,["H4603"]],[5,7,["H6213"]],[7,11,["H7451"]],[11,14,["H5869"]],[14,17,["H3068"]],[17,19,["H430"]],[19,22,["H5800"]],[22,27,["H5437"]],[27,29,["H6440"]],[29,32,["H4480","H4908"]],[32,35,["H3068"]],[35,37,["H5414"]],[37,39,["H6203"]]]},{"k":11798,"v":[[0,1,["H1571"]],[1,5,["H5462"]],[5,7,["H1817"]],[7,10,["H197"]],[10,13,["H3518","(H853)"]],[13,15,["H5216"]],[15,18,["H3808"]],[18,19,["H6999"]],[19,20,["H7004"]],[20,21,["H3808"]],[21,22,["H5927"]],[22,24,["H5930"]],[24,27,["H6944"]],[27,31,["H430"]],[31,33,["H3478"]]]},{"k":11799,"v":[[0,3,["H7110"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H5921"]],[8,9,["H3063"]],[9,11,["H3389"]],[11,15,["H5414"]],[15,18,["H2189"]],[18,20,["H8047"]],[20,23,["H8322"]],[23,24,["H834"]],[24,25,["H859"]],[25,26,["H7200"]],[26,29,["H5869"]]]},{"k":11800,"v":[[0,2,["H2009"]],[2,4,["H1"]],[4,6,["H5307"]],[6,9,["H2719"]],[9,12,["H1121"]],[12,15,["H1323"]],[15,18,["H802"]],[18,21,["H7628"]],[21,22,["H5921"]],[22,23,["H2063"]]]},{"k":11801,"v":[[0,1,["H6258"]],[1,4,["H5973"]],[4,6,["H3824"]],[6,8,["H3772"]],[8,10,["H1285"]],[10,13,["H3068"]],[13,14,["H430"]],[14,16,["H3478"]],[16,19,["H2740"]],[19,20,["H639"]],[20,23,["H7725"]],[23,24,["H4480"]],[24,25,[]]]},{"k":11802,"v":[[0,2,["H1121"]],[2,4,["H408"]],[4,5,["H6258"]],[5,6,["H7952"]],[6,7,["H3588"]],[7,9,["H3068"]],[9,11,["H977"]],[11,14,["H5975"]],[14,15,["H6440"]],[15,18,["H8334"]],[18,24,["H1961","H8334"]],[24,29,["H6999"]]]},{"k":11803,"v":[[0,3,["H3881"]],[3,4,["H6965"]],[4,5,["H4287"]],[5,7,["H1121"]],[7,9,["H6022"]],[9,11,["H3100"]],[11,13,["H1121"]],[13,15,["H5838"]],[15,16,["H4480"]],[16,18,["H1121"]],[18,21,["H6956"]],[21,23,["H4480"]],[23,25,["H1121"]],[25,27,["H4847"]],[27,28,["H7027"]],[28,30,["H1121"]],[30,32,["H5660"]],[32,34,["H5838"]],[34,36,["H1121"]],[36,38,["H3094"]],[38,40,["H4480"]],[40,42,["H1649"]],[42,43,["H3098"]],[43,45,["H1121"]],[45,47,["H2155"]],[47,49,["H5731"]],[49,51,["H1121"]],[51,53,["H3098"]]]},{"k":11804,"v":[[0,2,["H4480"]],[2,4,["H1121"]],[4,6,["H469"]],[6,7,["H8113"]],[7,9,["H3273"]],[9,11,["H4480"]],[11,13,["H1121"]],[13,15,["H623"]],[15,16,["H2148"]],[16,18,["H4983"]]]},{"k":11805,"v":[[0,2,["H4480"]],[2,4,["H1121"]],[4,6,["H1968"]],[6,7,["H3171"]],[7,9,["H8096"]],[9,11,["H4480"]],[11,13,["H1121"]],[13,15,["H3038"]],[15,16,["H8098"]],[16,18,["H5816"]]]},{"k":11806,"v":[[0,3,["H622","(H853)"]],[3,5,["H251"]],[5,8,["H6942"]],[8,10,["H935"]],[10,14,["H4687"]],[14,17,["H4428"]],[17,20,["H1697"]],[20,23,["H3068"]],[23,25,["H2891"]],[25,27,["H1004"]],[27,30,["H3068"]]]},{"k":11807,"v":[[0,3,["H3548"]],[3,4,["H935"]],[4,8,["H6441"]],[8,11,["H1004"]],[11,14,["H3068"]],[14,16,["H2891"]],[16,20,["H3318","(H853)"]],[20,21,["H3605"]],[21,23,["H2932"]],[23,24,["H834"]],[24,26,["H4672"]],[26,29,["H1964"]],[29,32,["H3068"]],[32,35,["H2691"]],[35,38,["H1004"]],[38,41,["H3068"]],[41,44,["H3881"]],[44,45,["H6901"]],[45,50,["H3318"]],[50,51,["H2351"]],[51,54,["H5158"]],[54,55,["H6939"]]]},{"k":11808,"v":[[0,3,["H2490"]],[3,6,["H259"]],[6,10,["H7223"]],[10,11,["H2320"]],[11,13,["H6942"]],[13,17,["H8083"]],[17,18,["H3117"]],[18,21,["H2320"]],[21,22,["H935"]],[22,26,["H197"]],[26,29,["H3068"]],[29,32,["H6942","(H853)"]],[32,34,["H1004"]],[34,37,["H3068"]],[37,39,["H8083"]],[39,40,["H3117"]],[40,44,["H8337","H6240"]],[44,45,["H3117"]],[45,48,["H7223"]],[48,49,["H2320"]],[49,53,["H3615"]]]},{"k":11809,"v":[[0,3,["H935"]],[3,4,["H6441"]],[4,5,["H413"]],[5,6,["H2396"]],[6,8,["H4428"]],[8,10,["H559"]],[10,13,["H2891","(H853)"]],[13,14,["H3605"]],[14,16,["H1004"]],[16,19,["H3068"]],[19,22,["H4196"]],[22,25,["H5930"]],[25,27,["H3605"]],[27,29,["H3627"]],[29,33,["H4635"]],[33,34,["H7979"]],[34,35,["(H853)"]],[35,36,["H3605"]],[36,38,["H3627"]],[38,39,[]]]},{"k":11810,"v":[[0,2,["H3605"]],[2,4,["H3627"]],[4,5,["H834"]],[5,6,["H4428"]],[6,7,["H271"]],[7,10,["H4438"]],[10,13,["H2186"]],[13,16,["H4604"]],[16,19,["H3559"]],[19,21,["H6942"]],[21,23,["H2009"]],[23,26,["H6440"]],[26,28,["H4196"]],[28,31,["H3068"]]]},{"k":11811,"v":[[0,2,["H3169"]],[2,4,["H4428"]],[4,6,["H7925"]],[6,8,["H622","(H853)"]],[8,10,["H8269"]],[10,13,["H5892"]],[13,16,["H5927"]],[16,19,["H1004"]],[19,22,["H3068"]]]},{"k":11812,"v":[[0,3,["H935"]],[3,4,["H7651"]],[4,5,["H6499"]],[5,7,["H7651"]],[7,8,["H352"]],[8,10,["H7651"]],[10,11,["H3532"]],[11,13,["H7651"]],[13,15,["H6842","H5795"]],[15,19,["H2403"]],[19,20,["H5921"]],[20,22,["H4467"]],[22,24,["H5921"]],[24,26,["H4720"]],[26,28,["H5921"]],[28,29,["H3063"]],[29,32,["H559"]],[32,34,["H3548"]],[34,36,["H1121"]],[36,38,["H175"]],[38,40,["H5927"]],[40,42,["H5921"]],[42,44,["H4196"]],[44,47,["H3068"]]]},{"k":11813,"v":[[0,3,["H7819"]],[3,5,["H1241"]],[5,8,["H3548"]],[8,9,["H6901","(H853)"]],[9,11,["H1818"]],[11,13,["H2236"]],[13,17,["H4196"]],[17,22,["H7819"]],[22,24,["H352"]],[24,26,["H2236"]],[26,28,["H1818"]],[28,31,["H4196"]],[31,33,["H7819"]],[33,36,["H3532"]],[36,39,["H2236"]],[39,41,["H1818"]],[41,44,["H4196"]]]},{"k":11814,"v":[[0,4,["H5066","(H853)"]],[4,7,["H8163"]],[7,11,["H2403"]],[11,12,["H6440"]],[12,14,["H4428"]],[14,17,["H6951"]],[17,20,["H5564"]],[20,22,["H3027"]],[22,23,["H5921"]],[23,24,[]]]},{"k":11815,"v":[[0,3,["H3548"]],[3,4,["H7819"]],[4,9,["H2398"]],[9,10,["H854"]],[10,12,["H1818"]],[12,15,["H4196"]],[15,19,["H3722"]],[19,20,["H5921"]],[20,21,["H3605"]],[21,22,["H3478"]],[22,23,["H3588"]],[23,25,["H4428"]],[25,26,["H559"]],[26,30,["H5930"]],[30,34,["H2403"]],[34,39,["H3605"]],[39,40,["H3478"]]]},{"k":11816,"v":[[0,3,["H5975","(H853)"]],[3,5,["H3881"]],[5,8,["H1004"]],[8,11,["H3068"]],[11,13,["H4700"]],[13,15,["H5035"]],[15,18,["H3658"]],[18,22,["H4687"]],[22,24,["H1732"]],[24,27,["H1410"]],[27,29,["H4428"]],[29,30,["H2374"]],[30,32,["H5416"]],[32,34,["H5030"]],[34,35,["H3588"]],[35,39,["H4687"]],[39,42,["H3068"]],[42,43,["H3027"]],[43,45,["H5030"]]]},{"k":11817,"v":[[0,3,["H3881"]],[3,4,["H5975"]],[4,7,["H3627"]],[7,9,["H1732"]],[9,12,["H3548"]],[12,15,["H2689"]]]},{"k":11818,"v":[[0,2,["H2396"]],[2,3,["H559"]],[3,5,["H5927"]],[5,8,["H5930"]],[8,11,["H4196"]],[11,13,["H6256"]],[13,16,["H5930"]],[16,17,["H2490"]],[17,19,["H7892"]],[19,22,["H3068"]],[22,23,["H2490"]],[23,27,["H2689"]],[27,29,["H5921"]],[29,31,["H3027","H3627"]],[31,34,["H1732"]],[34,35,["H4428"]],[35,37,["H3478"]]]},{"k":11819,"v":[[0,2,["H3605"]],[2,4,["H6951"]],[4,5,["H7812"]],[5,8,["H7892"]],[8,9,["H7891"]],[9,12,["H2689"]],[12,13,["H2690"]],[13,15,["H3605"]],[15,18,["H5704"]],[18,21,["H5930"]],[21,23,["H3615"]]]},{"k":11820,"v":[[0,7,["H3615"]],[7,9,["H5927"]],[9,11,["H4428"]],[11,13,["H3605"]],[13,16,["H4672"]],[16,17,["H854"]],[17,19,["H3766"]],[19,22,["H7812"]]]},{"k":11821,"v":[[0,2,["H3169"]],[2,4,["H4428"]],[4,7,["H8269"]],[7,8,["H559"]],[8,10,["H3881"]],[10,13,["H1984"]],[13,16,["H3068"]],[16,19,["H1697"]],[19,21,["H1732"]],[21,24,["H623"]],[24,26,["H2374"]],[26,30,["H1984"]],[30,31,["H5704"]],[31,32,["H8057"]],[32,37,["H6915"]],[37,39,["H7812"]]]},{"k":11822,"v":[[0,2,["H3169"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H6258"]],[6,9,["H4390","H3027"]],[9,13,["H3068"]],[13,15,["H5066"]],[15,17,["H935"]],[17,18,["H2077"]],[18,21,["H8426"]],[21,24,["H1004"]],[24,27,["H3068"]],[27,30,["H6951"]],[30,32,["H935"]],[32,33,["H2077"]],[33,36,["H8426"]],[36,40,["H3605"]],[40,44,["H5081"]],[44,45,["H3820"]],[45,47,["H5930"]]]},{"k":11823,"v":[[0,3,["H4557"]],[3,7,["H5930"]],[7,8,["H834"]],[8,10,["H6951"]],[10,11,["H935"]],[11,12,["H1961"]],[12,15,["H7657"]],[15,16,["H1241"]],[16,18,["H3967"]],[18,19,["H352"]],[19,22,["H3967"]],[22,23,["H3532"]],[23,24,["H3605"]],[24,25,["H428"]],[25,30,["H5930"]],[30,33,["H3068"]]]},{"k":11824,"v":[[0,4,["H6944"]],[4,6,["H8337"]],[6,7,["H3967"]],[7,8,["H1241"]],[8,10,["H7969"]],[10,11,["H505"]],[11,12,["H6629"]]]},{"k":11825,"v":[[0,1,["H7535"]],[1,3,["H3548"]],[3,4,["H1961"]],[4,6,["H4592"]],[6,10,["H3201"]],[10,11,["H3808"]],[11,12,["H6584","(H853)"]],[12,13,["H3605"]],[13,16,["H5930"]],[16,19,["H251"]],[19,21,["H3881"]],[21,23,["H2388"]],[23,25,["H5704"]],[25,27,["H4399"]],[27,29,["H3615"]],[29,31,["H5704"]],[31,34,["H3548"]],[34,37,["H6942"]],[37,38,["H3588"]],[38,40,["H3881"]],[40,43,["H3477"]],[43,45,["H3824"]],[45,48,["H6942"]],[48,51,["H4480","H3548"]]]},{"k":11826,"v":[[0,2,["H1571"]],[2,5,["H5930"]],[5,8,["H7230"]],[8,11,["H2459"]],[11,15,["H8002"]],[15,19,["H5262"]],[19,23,["H5930"]],[23,26,["H5656"]],[26,29,["H1004"]],[29,32,["H3068"]],[32,36,["H3559"]]]},{"k":11827,"v":[[0,2,["H3169"]],[2,3,["H8055"]],[3,5,["H3605"]],[5,7,["H5971"]],[7,8,["H5921"]],[8,9,["H430"]],[9,11,["H3559"]],[11,13,["H5971"]],[13,14,["H3588"]],[14,16,["H1697"]],[16,17,["H1961"]],[17,19,["H6597"]]]},{"k":11828,"v":[[0,2,["H3169"]],[2,3,["H7971"]],[3,4,["H5921"]],[4,5,["H3605"]],[5,6,["H3478"]],[6,8,["H3063"]],[8,10,["H3789"]],[10,11,["H107"]],[11,12,["H1571"]],[12,13,["H5921"]],[13,14,["H669"]],[14,16,["H4519"]],[16,20,["H935"]],[20,23,["H1004"]],[23,26,["H3068"]],[26,28,["H3389"]],[28,30,["H6213"]],[30,32,["H6453"]],[32,35,["H3068"]],[35,36,["H430"]],[36,38,["H3478"]]]},{"k":11829,"v":[[0,3,["H4428"]],[3,6,["H3289"]],[6,9,["H8269"]],[9,11,["H3605"]],[11,13,["H6951"]],[13,15,["H3389"]],[15,17,["H6213"]],[17,19,["H6453"]],[19,22,["H8145"]],[22,23,["H2320"]]]},{"k":11830,"v":[[0,1,["H3588"]],[1,3,["H3201"]],[3,4,["H3808"]],[4,5,["H6213"]],[5,8,["H1931"]],[8,9,["H6256"]],[9,10,["H3588"]],[10,12,["H3548"]],[12,14,["H3808"]],[14,16,["H6942"]],[16,17,["H4078"]],[17,18,["H3808"]],[18,21,["H5971"]],[21,24,["H622"]],[24,26,["H3389"]]]},{"k":11831,"v":[[0,3,["H1697"]],[3,4,["H3474","H5869"]],[4,6,["H4428"]],[6,8,["H3605"]],[8,10,["H6951"]]]},{"k":11832,"v":[[0,3,["H5975"]],[3,5,["H1697"]],[5,8,["H5674","H6963"]],[8,10,["H3605"]],[10,11,["H3478"]],[11,13,["H4480","H884"]],[13,15,["H5704"]],[15,16,["H1835"]],[16,20,["H935"]],[20,22,["H6213"]],[22,24,["H6453"]],[24,27,["H3068"]],[27,28,["H430"]],[28,30,["H3478"]],[30,32,["H3389"]],[32,33,["H3588"]],[33,36,["H3808"]],[36,37,["H6213"]],[37,41,["H7230"]],[41,49,["H3789"]]]},{"k":11833,"v":[[0,3,["H7323"]],[3,4,["H1980"]],[4,7,["H107"]],[7,8,["H4480","H3027"]],[8,10,["H4428"]],[10,13,["H8269"]],[13,15,["H3605"]],[15,16,["H3478"]],[16,18,["H3063"]],[18,23,["H4687"]],[23,26,["H4428"]],[26,27,["H559"]],[27,29,["H1121"]],[29,31,["H3478"]],[31,33,["H7725"]],[33,34,["H413"]],[34,36,["H3068"]],[36,37,["H430"]],[37,39,["H85"]],[39,40,["H3327"]],[40,42,["H3478"]],[42,46,["H7725"]],[46,47,["H413"]],[47,49,["H7604"]],[49,54,["H6413"]],[54,58,["H4480","H3709"]],[58,61,["H4428"]],[61,63,["H804"]]]},{"k":11834,"v":[[0,2,["H1961"]],[2,3,["H408"]],[3,7,["H1"]],[7,11,["H251"]],[11,12,["H834"]],[12,13,["H4603"]],[13,16,["H3068"]],[16,17,["H430"]],[17,20,["H1"]],[20,25,["H5414"]],[25,27,["H8047"]],[27,28,["H834"]],[28,29,["H859"]],[29,30,["H7200"]]]},{"k":11835,"v":[[0,1,["H6258"]],[1,5,["H408","H7185","H6203"]],[5,8,["H1"]],[8,11,["H5414","H3027"]],[11,15,["H3068"]],[15,17,["H935"]],[17,20,["H4720"]],[20,21,["H834"]],[21,24,["H6942"]],[24,26,["H5769"]],[26,28,["H5647","(H853)"]],[28,30,["H3068"]],[30,32,["H430"]],[32,35,["H2740"]],[35,38,["H639"]],[38,41,["H7725"]],[41,42,["H4480"]],[42,43,[]]]},{"k":11836,"v":[[0,1,["H3588"]],[1,5,["H7725"]],[5,6,["H5921"]],[6,8,["H3068"]],[8,10,["H251"]],[10,13,["H1121"]],[13,16,["H7356"]],[16,17,["H6440"]],[17,22,["H7617"]],[22,28,["H7725"]],[28,30,["H2063"]],[30,31,["H776"]],[31,32,["H3588"]],[32,34,["H3068"]],[34,36,["H430"]],[36,38,["H2587"]],[38,40,["H7349"]],[40,43,["H3808"]],[43,45,["H5493"]],[45,47,["H6440"]],[47,48,["H4480"]],[48,50,["H518"]],[50,52,["H7725"]],[52,53,["H413"]],[53,54,[]]]},{"k":11837,"v":[[0,3,["H7323"]],[3,4,["H1961","H5674"]],[4,6,["H4480","H5892"]],[6,8,["H5892"]],[8,11,["H776"]],[11,13,["H669"]],[13,15,["H4519"]],[15,17,["H5704"]],[17,18,["H2074"]],[18,24,["H1961","H7832","H5921"]],[24,26,["H3932"]],[26,27,[]]]},{"k":11838,"v":[[0,1,["H389"]],[1,2,["H376"]],[2,4,["H4480","H836"]],[4,6,["H4519"]],[6,9,["H4480","H2074"]],[9,11,["H3665"]],[11,13,["H935"]],[13,15,["H3389"]]]},{"k":11839,"v":[[0,1,["H1571"]],[1,3,["H3063"]],[3,5,["H3027"]],[5,7,["H430"]],[7,8,["H1961"]],[8,10,["H5414"]],[10,12,["H259"]],[12,13,["H3820"]],[13,15,["H6213"]],[15,17,["H4687"]],[17,20,["H4428"]],[20,24,["H8269"]],[24,27,["H1697"]],[27,30,["H3068"]]]},{"k":11840,"v":[[0,3,["H622"]],[3,5,["H3389"]],[5,6,["H7227"]],[6,7,["H5971"]],[7,9,["H6213","(H853)"]],[9,11,["H2282"]],[11,14,["H4682"]],[14,17,["H8145"]],[17,18,["H2320"]],[18,20,["H3966"]],[20,21,["H7230"]],[21,22,["H6951"]]]},{"k":11841,"v":[[0,3,["H6965"]],[3,6,["H5493","(H853)"]],[6,8,["H4196"]],[8,9,["H834"]],[9,12,["H3389"]],[12,14,["H3605"]],[14,18,["H6999"]],[18,21,["H5493"]],[21,23,["H7993"]],[23,27,["H5158"]],[27,28,["H6939"]]]},{"k":11842,"v":[[0,3,["H7819"]],[3,5,["H6453"]],[5,8,["H702","H6240"]],[8,12,["H8145"]],[12,13,["H2320"]],[13,16,["H3548"]],[16,19,["H3881"]],[19,21,["H3637"]],[21,24,["H6942"]],[24,27,["H935"]],[27,30,["H5930"]],[30,33,["H1004"]],[33,36,["H3068"]]]},{"k":11843,"v":[[0,3,["H5975"]],[3,4,["H5921"]],[4,6,["H5977"]],[6,9,["H4941"]],[9,13,["H8451"]],[13,15,["H4872"]],[15,17,["H376"]],[17,19,["H430"]],[19,21,["H3548"]],[21,22,["H2236","(H853)"]],[22,24,["H1818"]],[24,30,["H4480","H3027"]],[30,33,["H3881"]]]},{"k":11844,"v":[[0,1,["H3588"]],[1,4,["H7227"]],[4,7,["H6951"]],[7,8,["H834"]],[8,10,["H3808"]],[10,11,["H6942"]],[11,14,["H3881"]],[14,18,["H5921"]],[18,20,["H7821"]],[20,23,["H6453"]],[23,26,["H3605"]],[26,29,["H3808"]],[29,30,["H2889"]],[30,32,["H6942"]],[32,36,["H3068"]]]},{"k":11845,"v":[[0,1,["H3588"]],[1,3,["H4768"]],[3,6,["H5971"]],[6,8,["H7227"]],[8,10,["H4480","H669"]],[10,12,["H4519"]],[12,13,["H3485"]],[13,15,["H2074"]],[15,17,["H3808"]],[17,19,["H2891"]],[19,20,["H3588"]],[20,23,["H398","(H853)"]],[23,25,["H6453"]],[25,26,["H3808"]],[26,30,["H3789"]],[30,31,["H3588"]],[31,32,["H3169"]],[32,33,["H6419"]],[33,34,["H5921"]],[34,36,["H559"]],[36,38,["H2896"]],[38,39,["H3068"]],[39,40,["H3722"]],[40,42,["H1157"]]]},{"k":11846,"v":[[0,2,["H3559"]],[2,4,["H3824"]],[4,6,["H1875"]],[6,7,["H430"]],[7,9,["H3068"]],[9,10,["H430"]],[10,13,["H1"]],[13,17,["H3808"]],[17,22,["H2893"]],[22,25,["H6944"]]]},{"k":11847,"v":[[0,3,["H3068"]],[3,4,["H8085"]],[4,5,["H413"]],[5,6,["H3169"]],[6,8,["H7495","(H853)"]],[8,10,["H5971"]]]},{"k":11848,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,8,["H4672"]],[8,10,["H3389"]],[10,11,["H6213","(H853)"]],[11,13,["H2282"]],[13,16,["H4682"]],[16,17,["H7651"]],[17,18,["H3117"]],[18,20,["H1419"]],[20,21,["H8057"]],[21,24,["H3881"]],[24,27,["H3548"]],[27,28,["H1984"]],[28,30,["H3068"]],[30,31,["H3117"]],[31,33,["H3117"]],[33,36,["H5797"]],[36,37,["H3627"]],[37,40,["H3068"]]]},{"k":11849,"v":[[0,2,["H3169"]],[2,3,["H1696"]],[3,4,["H5921","H3820"]],[4,6,["H3605"]],[6,8,["H3881"]],[8,10,["H7919"]],[10,12,["H2896"]],[12,13,["H7922"]],[13,16,["H3068"]],[16,20,["H398"]],[20,21,["H854"]],[21,23,["H4150"]],[23,24,["H7651"]],[24,25,["H3117"]],[25,26,["H2076"]],[26,27,["H8002"]],[27,28,["H2077"]],[28,31,["H3034"]],[31,34,["H3068"]],[34,35,["H430"]],[35,38,["H1"]]]},{"k":11850,"v":[[0,3,["H3605"]],[3,4,["H6951"]],[4,6,["H3289"]],[6,8,["H6213"]],[8,9,["H312"]],[9,10,["H7651"]],[10,11,["H3117"]],[11,14,["H6213"]],[14,16,["H7651"]],[16,17,["H3117"]],[17,19,["H8057"]]]},{"k":11851,"v":[[0,1,["H3588"]],[1,2,["H2396"]],[2,3,["H4428"]],[3,5,["H3063"]],[5,7,["H7311"]],[7,10,["H6951"]],[10,12,["H505"]],[12,13,["H6499"]],[13,15,["H7651"]],[15,16,["H505"]],[16,17,["H6629"]],[17,20,["H8269"]],[20,21,["H7311"]],[21,24,["H6951"]],[24,26,["H505"]],[26,27,["H6499"]],[27,29,["H6235"]],[29,30,["H505"]],[30,31,["H6629"]],[31,35,["H7230"]],[35,37,["H3548"]],[37,39,["H6942"]]]},{"k":11852,"v":[[0,2,["H3605"]],[2,4,["H6951"]],[4,6,["H3063"]],[6,9,["H3548"]],[9,12,["H3881"]],[12,14,["H3605"]],[14,16,["H6951"]],[16,18,["H935"]],[18,21,["H4480","H3478"]],[21,24,["H1616"]],[24,26,["H935"]],[26,30,["H4480","H776"]],[30,32,["H3478"]],[32,35,["H3427"]],[35,37,["H3063"]],[37,38,["H8055"]]]},{"k":11853,"v":[[0,3,["H1961"]],[3,4,["H1419"]],[4,5,["H8057"]],[5,7,["H3389"]],[7,8,["H3588"]],[8,11,["H4480","H3117"]],[11,13,["H8010"]],[13,15,["H1121"]],[15,17,["H1732"]],[17,18,["H4428"]],[18,20,["H3478"]],[20,23,["H3808"]],[23,25,["H2063"]],[25,27,["H3389"]]]},{"k":11854,"v":[[0,3,["H3548"]],[3,5,["H3881"]],[5,6,["H6965"]],[6,8,["H1288","(H853)"]],[8,10,["H5971"]],[10,13,["H6963"]],[13,15,["H8085"]],[15,18,["H8605"]],[18,19,["H935"]],[19,23,["H6944"]],[23,25,["H4583"]],[25,28,["H8064"]]]},{"k":11855,"v":[[0,3,["H3605"]],[3,4,["H2063"]],[4,6,["H3615"]],[6,7,["H3605"]],[7,8,["H3478"]],[8,11,["H4672"]],[11,13,["H3318"]],[13,16,["H5892"]],[16,18,["H3063"]],[18,24,["H7665","H4676"]],[24,27,["H1438"]],[27,29,["H842"]],[29,32,["H5422","(H853)"]],[32,35,["H1116"]],[35,38,["H4196"]],[38,41,["H4480","H3605"]],[41,42,["H3063"]],[42,44,["H1144"]],[44,46,["H669"]],[46,49,["H4519"]],[49,50,["H5704"]],[50,54,["H3615"]],[54,58,["H3605"]],[58,60,["H1121"]],[60,62,["H3478"]],[62,63,["H7725"]],[63,65,["H376"]],[65,68,["H272"]],[68,72,["H5892"]]]},{"k":11856,"v":[[0,2,["H3169"]],[2,3,["H5975","(H853)"]],[3,5,["H4256"]],[5,8,["H3548"]],[8,11,["H3881"]],[11,12,["H5921"]],[12,14,["H4256"]],[14,16,["H376"]],[16,18,["H6310"]],[18,20,["H5656"]],[20,22,["H3548"]],[22,24,["H3881"]],[24,27,["H5930"]],[27,31,["H8002"]],[31,33,["H8334"]],[33,37,["H3034"]],[37,40,["H1984"]],[40,43,["H8179"]],[43,46,["H4264"]],[46,49,["H3068"]]]},{"k":11857,"v":[[0,5,["H4428"]],[5,6,["H4521"]],[6,7,["H4480"]],[7,9,["H7399"]],[9,13,["H5930"]],[13,18,["H1242"]],[18,20,["H6153"]],[20,22,["H5930"]],[22,26,["H5930"]],[26,29,["H7676"]],[29,34,["H2320"]],[34,39,["H4150"]],[39,43,["H3789"]],[43,46,["H8451"]],[46,49,["H3068"]]]},{"k":11858,"v":[[0,3,["H559"]],[3,5,["H5971"]],[5,7,["H3427"]],[7,9,["H3389"]],[9,11,["H5414"]],[11,13,["H4521"]],[13,16,["H3548"]],[16,19,["H3881"]],[19,20,["H4616"]],[20,24,["H2388"]],[24,27,["H8451"]],[27,30,["H3068"]]]},{"k":11859,"v":[[0,6,["H1697"]],[6,8,["H6555"]],[8,10,["H1121"]],[10,12,["H3478"]],[12,15,["H7235"]],[15,17,["H7225"]],[17,19,["H1715"]],[19,20,["H8492"]],[20,22,["H3323"]],[22,24,["H1706"]],[24,27,["H3605"]],[27,29,["H8393"]],[29,32,["H7704"]],[32,35,["H4643"]],[35,37,["H3605"]],[37,41,["H935"]],[41,42,["H7230"]]]},{"k":11860,"v":[[0,4,["H1121"]],[4,6,["H3478"]],[6,8,["H3063"]],[8,10,["H3427"]],[10,13,["H5892"]],[13,15,["H3063"]],[15,16,["H1992"]],[16,17,["H1571"]],[17,19,["H935"]],[19,21,["H4643"]],[21,23,["H1241"]],[23,25,["H6629"]],[25,28,["H4643"]],[28,31,["H6944"]],[31,34,["H6942"]],[34,37,["H3068"]],[37,39,["H430"]],[39,41,["H5414"]],[41,44,["H6194","H6194"]]]},{"k":11861,"v":[[0,3,["H7992"]],[3,4,["H2320"]],[4,6,["H2490"]],[6,10,["H3245"]],[10,13,["H6194"]],[13,15,["H3615"]],[15,19,["H7637"]],[19,20,["H2320"]]]},{"k":11862,"v":[[0,3,["H3169"]],[3,6,["H8269"]],[6,7,["H935"]],[7,9,["H7200","(H853)"]],[9,11,["H6194"]],[11,13,["H1288","(H853)"]],[13,15,["H3068"]],[15,18,["H5971"]],[18,19,["H3478"]]]},{"k":11863,"v":[[0,2,["H3169"]],[2,3,["H1875"]],[3,4,["H5921"]],[4,6,["H3548"]],[6,9,["H3881"]],[9,10,["H5921"]],[10,12,["H6194"]]]},{"k":11864,"v":[[0,2,["H5838"]],[2,4,["H7218"]],[4,5,["H3548"]],[5,8,["H1004"]],[8,10,["H6659"]],[10,11,["H559","H413"]],[11,14,["H559"]],[14,18,["H4480","H2490"]],[18,20,["H935"]],[20,22,["H8641"]],[22,25,["H1004"]],[25,28,["H3068"]],[28,32,["H7646"]],[32,34,["H398"]],[34,37,["H3498","H5704"]],[37,38,["H7230"]],[38,39,["H3588"]],[39,41,["H3068"]],[41,43,["H1288","(H853)"]],[43,45,["H5971"]],[45,50,["H3498"]],[50,51,["(H853)"]],[51,52,["H2088"]],[52,54,["H1995"]]]},{"k":11865,"v":[[0,2,["H3169"]],[2,3,["H559"]],[3,5,["H3559"]],[5,6,["H3957"]],[6,9,["H1004"]],[9,12,["H3068"]],[12,15,["H3559"]],[15,16,[]]]},{"k":11866,"v":[[0,3,["H935","(H853)"]],[3,5,["H8641"]],[5,8,["H4643"]],[8,11,["H6944"]],[11,13,["H530"]],[13,14,["H5921"]],[14,16,["H3562"]],[16,18,["H3878"]],[18,20,["H5057"]],[20,22,["H8096"]],[22,24,["H251"]],[24,27,["H4932"]]]},{"k":11867,"v":[[0,2,["H3171"]],[2,4,["H5812"]],[4,6,["H5184"]],[6,8,["H6214"]],[8,10,["H3406"]],[10,12,["H3107"]],[12,14,["H447"]],[14,16,["H3253"]],[16,18,["H4287"]],[18,20,["H1141"]],[20,22,["H6496"]],[22,25,["H4480","H3027"]],[25,27,["H3562"]],[27,29,["H8096"]],[29,31,["H251"]],[31,34,["H4662"]],[34,36,["H3169"]],[36,38,["H4428"]],[38,40,["H5838"]],[40,42,["H5057"]],[42,45,["H1004"]],[45,47,["H430"]]]},{"k":11868,"v":[[0,2,["H6981"]],[2,4,["H1121"]],[4,6,["H3232"]],[6,8,["H3778"]],[8,10,["H7778"]],[10,13,["H4217"]],[13,15,["H5921"]],[15,18,["H5071"]],[18,20,["H430"]],[20,22,["H5414"]],[22,24,["H8641"]],[24,27,["H3068"]],[27,32,["H6944","H6944"]]]},{"k":11869,"v":[[0,2,["H5921","H3027"]],[2,5,["H5731"]],[5,7,["H4509"]],[7,9,["H3442"]],[9,11,["H8098"]],[11,12,["H568"]],[12,14,["H7935"]],[14,17,["H5892"]],[17,20,["H3548"]],[20,24,["H530"]],[24,26,["H5414"]],[26,29,["H251"]],[29,31,["H4256"]],[31,36,["H1419"]],[36,40,["H6996"]]]},{"k":11870,"v":[[0,1,["H4480","H905"]],[1,3,["H3187"]],[3,5,["H2145"]],[5,7,["H7969"]],[7,8,["H8141"]],[8,9,["H4480","H1121"]],[9,11,["H4605"]],[11,15,["H3605"]],[15,17,["H935"]],[17,20,["H1004"]],[20,23,["H3068"]],[23,25,["H3117","H3117"]],[25,26,["H1697"]],[26,29,["H5656"]],[29,32,["H4931"]],[32,36,["H4256"]]]},{"k":11871,"v":[[0,2,["H854"]],[2,4,["H3187"]],[4,7,["H3548"]],[7,10,["H1004"]],[10,13,["H1"]],[13,16,["H3881"]],[16,18,["H6242"]],[18,19,["H8141"]],[19,20,["H4480","H1121"]],[20,22,["H4605"]],[22,25,["H4931"]],[25,28,["H4256"]]]},{"k":11872,"v":[[0,4,["H3187"]],[4,6,["H3605"]],[6,9,["H2945"]],[9,11,["H802"]],[11,14,["H1121"]],[14,17,["H1323"]],[17,19,["H3605"]],[19,21,["H6951"]],[21,22,["H3588"]],[22,26,["H530"]],[26,29,["H6942"]],[29,31,["H6944"]]]},{"k":11873,"v":[[0,4,["H1121"]],[4,6,["H175"]],[6,8,["H3548"]],[8,13,["H7704"]],[13,16,["H4054"]],[16,19,["H5892"]],[19,21,["H3605"]],[21,23,["H5892","H5892"]],[23,25,["H376"]],[25,26,["H834"]],[26,28,["H5344"]],[28,30,["H8034"]],[30,32,["H5414"]],[32,33,["H4490"]],[33,35,["H3605"]],[35,37,["H2145"]],[37,40,["H3548"]],[40,43,["H3605"]],[43,48,["H3187"]],[48,51,["H3881"]]]},{"k":11874,"v":[[0,2,["H2063"]],[2,3,["H6213"]],[3,4,["H3169"]],[4,6,["H3605"]],[6,7,["H3063"]],[7,9,["H6213"]],[9,13,["H2896"]],[13,15,["H3477"]],[15,17,["H571"]],[17,18,["H6440"]],[18,20,["H3068"]],[20,22,["H430"]]]},{"k":11875,"v":[[0,3,["H3605"]],[3,4,["H4639"]],[4,5,["H834"]],[5,7,["H2490"]],[7,10,["H5656"]],[10,13,["H1004"]],[13,15,["H430"]],[15,19,["H8451"]],[19,23,["H4687"]],[23,25,["H1875"]],[25,27,["H430"]],[27,29,["H6213"]],[29,32,["H3605"]],[32,34,["H3824"]],[34,36,["H6743"]]]},{"k":11876,"v":[[0,1,["H310"]],[1,2,["H428"]],[2,3,["H1697"]],[3,6,["H571"]],[6,8,["H5576"]],[8,9,["H4428"]],[9,11,["H804"]],[11,12,["H935"]],[12,14,["H935"]],[14,16,["H3063"]],[16,18,["H2583"]],[18,19,["H5921"]],[19,21,["H1219"]],[21,22,["H5892"]],[22,24,["H559"]],[24,26,["H1234"]],[26,28,["H413"]],[28,29,[]]]},{"k":11877,"v":[[0,3,["H3169"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,6,["H5576"]],[6,8,["H935"]],[8,13,["H6440"]],[13,15,["H4421"]],[15,16,["H5921"]],[16,17,["H3389"]]]},{"k":11878,"v":[[0,3,["H3289"]],[3,4,["H5973"]],[4,6,["H8269"]],[6,10,["H1368"]],[10,12,["H5640","(H853)"]],[12,14,["H4325"]],[14,17,["H5869"]],[17,18,["H834"]],[18,20,["H4480","H2351"]],[20,22,["H5892"]],[22,26,["H5826"]],[26,27,[]]]},{"k":11879,"v":[[0,4,["H6908"]],[4,5,["H7227"]],[5,6,["H5971"]],[6,9,["H5640","(H853)"]],[9,10,["H3605"]],[10,12,["H4599"]],[12,15,["H5158"]],[15,17,["H7857"]],[17,20,["H8432"]],[20,23,["H776"]],[23,24,["H559"]],[24,25,["H4100"]],[25,28,["H4428"]],[28,30,["H804"]],[30,31,["H935"]],[31,33,["H4672"]],[33,34,["H7227"]],[34,35,["H4325"]]]},{"k":11880,"v":[[0,4,["H2388"]],[4,7,["H1129","(H853)"]],[7,8,["H3605"]],[8,10,["H2346"]],[10,13,["H6555"]],[13,17,["H5927"]],[17,18,["H5921"]],[18,20,["H4026"]],[20,22,["H312"]],[22,23,["H2346"]],[23,24,["H2351"]],[24,26,["H2388","(H853)"]],[26,27,["H4407"]],[27,30,["H5892"]],[30,32,["H1732"]],[32,34,["H6213"]],[34,35,["H7973"]],[35,37,["H4043"]],[37,39,["H7230"]]]},{"k":11881,"v":[[0,3,["H5414"]],[3,4,["H8269"]],[4,6,["H4421"]],[6,7,["H5921"]],[7,9,["H5971"]],[9,13,["H6908"]],[13,14,["H413"]],[14,16,["H413"]],[16,18,["H7339"]],[18,21,["H8179"]],[21,24,["H5892"]],[24,26,["H1696"]],[26,27,["H5921","H3824"]],[27,30,["H559"]]]},{"k":11882,"v":[[0,2,["H2388"]],[2,4,["H553"]],[4,7,["H3372","H408"]],[7,8,["H408"]],[8,9,["H2865"]],[9,10,["H4480","H6440"]],[10,12,["H4428"]],[12,14,["H804"]],[14,16,["H4480","H6440"]],[16,17,["H3605"]],[17,19,["H1995"]],[19,20,["H834"]],[20,22,["H5973"]],[22,24,["H3588"]],[24,27,["H7227"]],[27,28,["H5973"]],[28,31,["H4480","H5973"]],[31,32,[]]]},{"k":11883,"v":[[0,1,["H5973"]],[1,5,["H2220"]],[5,7,["H1320"]],[7,9,["H5973"]],[9,13,["H3068"]],[13,15,["H430"]],[15,17,["H5826"]],[17,21,["H3898"]],[21,23,["H4421"]],[23,26,["H5971"]],[26,28,["H5564"]],[28,29,["H5921"]],[29,31,["H1697"]],[31,33,["H3169"]],[33,34,["H4428"]],[34,36,["H3063"]]]},{"k":11884,"v":[[0,1,["H310"]],[1,2,["H2088"]],[2,4,["H5576"]],[4,5,["H4428"]],[5,7,["H804"]],[7,8,["H7971"]],[8,10,["H5650"]],[10,12,["H3389"]],[12,14,["H1931"]],[14,18,["H5921"]],[18,19,["H3923"]],[19,21,["H3605"]],[21,23,["H4475"]],[23,24,["H5973"]],[24,26,["H5921"]],[26,27,["H3169"]],[27,28,["H4428"]],[28,30,["H3063"]],[30,32,["H5921"]],[32,33,["H3605"]],[33,34,["H3063"]],[34,35,["H834"]],[35,38,["H3389"]],[38,39,["H559"]]]},{"k":11885,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,3,["H5576"]],[3,4,["H4428"]],[4,6,["H804"]],[6,7,["H5921","H4100"]],[7,9,["H859"]],[9,10,["H982"]],[10,13,["H3427"]],[13,16,["H4692"]],[16,18,["H3389"]]]},{"k":11886,"v":[[0,2,["H3808"]],[2,3,["H3169"]],[3,4,["H5496"]],[4,8,["H5414"]],[8,11,["H4191"]],[11,13,["H7458"]],[13,16,["H6772"]],[16,17,["H559"]],[17,19,["H3068"]],[19,21,["H430"]],[21,23,["H5337"]],[23,28,["H4480","H3709"]],[28,31,["H4428"]],[31,33,["H804"]]]},{"k":11887,"v":[[0,2,["H3808"]],[2,4,["H1931"]],[4,5,["H3169"]],[5,7,["H5493","(H853)"]],[7,10,["H1116"]],[10,13,["H4196"]],[13,15,["H559"]],[15,16,["H3063"]],[16,18,["H3389"]],[18,19,["H559"]],[19,22,["H7812"]],[22,23,["H6440"]],[23,24,["H259"]],[24,25,["H4196"]],[25,28,["H6999"]],[28,29,["H5921"]],[29,30,[]]]},{"k":11888,"v":[[0,1,["H3045"]],[1,3,["H3808"]],[3,4,["H4100"]],[4,5,["H589"]],[5,8,["H1"]],[8,10,["H6213"]],[10,12,["H3605"]],[12,14,["H5971"]],[14,17,["H776"]],[17,20,["H430"]],[20,23,["H1471"]],[23,26,["H776"]],[26,29,["H3201","H3201"]],[29,31,["H5337","(H853)"]],[31,33,["H776"]],[33,37,["H4480","H3027"]]]},{"k":11889,"v":[[0,1,["H4310"]],[1,5,["H3605"]],[5,7,["H430"]],[7,9,["H428"]],[9,10,["H1471"]],[10,11,["H834"]],[11,13,["H1"]],[13,15,["H2763"]],[15,16,["H834"]],[16,17,["H3201"]],[17,18,["H5337","(H853)"]],[18,20,["H5971"]],[20,24,["H4480","H3027"]],[24,25,["H3588"]],[25,27,["H430"]],[27,30,["H3201"]],[30,32,["H5337"]],[32,37,["H4480","H3027"]]]},{"k":11890,"v":[[0,1,["H6258"]],[1,4,["H408"]],[4,5,["H2396"]],[5,6,["H5377"]],[6,8,["H408"]],[8,9,["H5496"]],[9,13,["H2063"]],[13,14,["H408"]],[14,16,["H539"]],[16,18,["H3588"]],[18,19,["H3808","H3605"]],[19,20,["H433"]],[20,22,["H3605"]],[22,23,["H1471"]],[23,25,["H4467"]],[25,27,["H3201"]],[27,29,["H5337"]],[29,31,["H5971"]],[31,35,["H4480","H3027"]],[35,40,["H4480","H3027"]],[40,43,["H1"]],[43,46,["H637","H3588"]],[46,49,["H430"]],[49,50,["H5337"]],[50,55,["H4480","H3027"]]]},{"k":11891,"v":[[0,3,["H5650"]],[3,4,["H1696"]],[4,5,["H5750"]],[5,7,["H5921"]],[7,9,["H3068"]],[9,10,["H430"]],[10,12,["H5921"]],[12,14,["H5650"]],[14,15,["H3169"]]]},{"k":11892,"v":[[0,2,["H3789"]],[2,4,["H5612"]],[4,6,["H2778"]],[6,9,["H3068"]],[9,10,["H430"]],[10,12,["H3478"]],[12,15,["H559"]],[15,16,["H5921"]],[16,18,["H559"]],[18,21,["H430"]],[21,24,["H1471"]],[24,27,["H776"]],[27,29,["H3808"]],[29,30,["H5337"]],[30,32,["H5971"]],[32,36,["H4480","H3027"]],[36,37,["H3651"]],[37,39,["H3808"]],[39,41,["H430"]],[41,43,["H3169"]],[43,44,["H5337"]],[44,46,["H5971"]],[46,50,["H4480","H3027"]]]},{"k":11893,"v":[[0,3,["H7121"]],[3,6,["H1419"]],[6,7,["H6963"]],[7,11,["H3066"]],[11,12,["H5921"]],[12,14,["H5971"]],[14,16,["H3389"]],[16,17,["H834"]],[17,19,["H5921"]],[19,21,["H2346"]],[21,23,["H3372"]],[23,27,["H926"]],[27,29,["H4616"]],[29,32,["H3920","(H853)"]],[32,34,["H5892"]]]},{"k":11894,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H430"]],[6,8,["H3389"]],[8,10,["H5921"]],[10,12,["H430"]],[12,15,["H5971"]],[15,18,["H776"]],[18,22,["H4639"]],[22,25,["H3027"]],[25,27,["H120"]]]},{"k":11895,"v":[[0,2,["H5921"]],[2,3,["H2063"]],[3,5,["H3169"]],[5,7,["H4428"]],[7,10,["H5030"]],[10,11,["H3470"]],[11,13,["H1121"]],[13,15,["H531"]],[15,16,["H6419"]],[16,18,["H2199"]],[18,20,["H8064"]]]},{"k":11896,"v":[[0,3,["H3068"]],[3,4,["H7971"]],[4,6,["H4397"]],[6,9,["H3582"]],[9,10,["H3605"]],[10,13,["H1368"]],[13,15,["H2428"]],[15,18,["H5057"]],[18,20,["H8269"]],[20,23,["H4264"]],[23,26,["H4428"]],[26,28,["H804"]],[28,31,["H7725"]],[31,33,["H1322"]],[33,35,["H6440"]],[35,39,["H776"]],[39,45,["H935"]],[45,47,["H1004"]],[47,50,["H430"]],[50,54,["H4480","H3329"]],[54,58,["H4578"]],[58,59,["H5307"]],[59,61,["H8033"]],[61,64,["H2719"]]]},{"k":11897,"v":[[0,3,["H3068"]],[3,4,["H3467","(H853)"]],[4,5,["H3169"]],[5,8,["H3427"]],[8,10,["H3389"]],[10,13,["H4480","H3027"]],[13,15,["H5576"]],[15,17,["H4428"]],[17,19,["H804"]],[19,23,["H4480","H3027"]],[23,25,["H3605"]],[25,28,["H5095"]],[28,32,["H4480","H5439"]]]},{"k":11898,"v":[[0,2,["H7227"]],[2,3,["H935"]],[3,4,["H4503"]],[4,7,["H3068"]],[7,9,["H3389"]],[9,11,["H4030"]],[11,13,["H3169"]],[13,14,["H4428"]],[14,16,["H3063"]],[16,21,["H5375"]],[21,24,["H5869"]],[24,26,["H3605"]],[26,27,["H1471"]],[27,29,["H4480","H310","H3651"]]]},{"k":11899,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,4,["H3169"]],[4,6,["H2470"]],[6,7,["H5704"]],[7,9,["H4191"]],[9,11,["H6419"]],[11,12,["H413"]],[12,14,["H3068"]],[14,17,["H559"]],[17,22,["H5414"]],[22,25,["H4159"]]]},{"k":11900,"v":[[0,2,["H3169"]],[2,5,["H7725","H3808"]],[5,9,["H1576"]],[9,11,["H5921"]],[11,13,["H3588"]],[13,15,["H3820"]],[15,18,["H1361"]],[18,21,["H1961"]],[21,22,["H7110"]],[22,23,["H5921"]],[23,26,["H5921"]],[26,27,["H3063"]],[27,29,["H3389"]]]},{"k":11901,"v":[[0,2,["H3169"]],[2,4,["H3665"]],[4,7,["H1363"]],[7,10,["H3820"]],[10,12,["H1931"]],[12,15,["H3427"]],[15,17,["H3389"]],[17,21,["H7110"]],[21,24,["H3068"]],[24,25,["H935"]],[25,26,["H3808"]],[26,27,["H5921"]],[27,31,["H3117"]],[31,33,["H3169"]]]},{"k":11902,"v":[[0,2,["H3169"]],[2,3,["H1961"]],[3,4,["H3966"]],[4,5,["H7235"]],[5,6,["H6239"]],[6,8,["H3519"]],[8,11,["H6213"]],[11,13,["H214"]],[13,15,["H3701"]],[15,18,["H2091"]],[18,21,["H3368"]],[21,22,["H68"]],[22,25,["H1314"]],[25,28,["H4043"]],[28,32,["H3605"]],[32,34,["H2532"]],[34,35,["H3627"]]]},{"k":11903,"v":[[0,1,["H4543"]],[1,5,["H8393"]],[5,7,["H1715"]],[7,9,["H8492"]],[9,11,["H3323"]],[11,13,["H723"]],[13,16,["H3605"]],[16,18,["H929","H929"]],[18,20,["H220"]],[20,22,["H5739"]]]},{"k":11904,"v":[[0,3,["H6213"]],[3,5,["H5892"]],[5,7,["H4735"]],[7,9,["H6629"]],[9,11,["H1241"]],[11,13,["H7230"]],[13,14,["H3588"]],[14,15,["H430"]],[15,17,["H5414"]],[17,19,["H7399"]],[19,20,["H3966"]],[20,21,["H7227"]]]},{"k":11905,"v":[[0,2,["H1931"]],[2,3,["H3169"]],[3,5,["H5640","(H853)"]],[5,7,["H5945"]],[7,8,["H4161","H4325"]],[8,10,["H1521"]],[10,14,["H3474"]],[14,15,["H4295"]],[15,19,["H4628"]],[19,22,["H5892"]],[22,24,["H1732"]],[24,26,["H3169"]],[26,27,["H6743"]],[27,29,["H3605"]],[29,31,["H4639"]]]},{"k":11906,"v":[[0,1,["H3651"]],[1,7,["H3887"]],[7,10,["H8269"]],[10,12,["H894"]],[12,14,["H7971"]],[14,15,["H5921"]],[15,19,["H1875"]],[19,21,["H4159"]],[21,22,["H834"]],[22,23,["H1961"]],[23,27,["H776"]],[27,28,["H430"]],[28,29,["H5800"]],[29,32,["H5254"]],[32,37,["H3045"]],[37,38,["H3605"]],[38,43,["H3824"]]]},{"k":11907,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3169"]],[8,11,["H2617"]],[11,12,["H2009"]],[12,15,["H3789"]],[15,18,["H2377"]],[18,20,["H3470"]],[20,22,["H5030"]],[22,24,["H1121"]],[24,26,["H531"]],[26,28,["H5921"]],[28,30,["H5612"]],[30,33,["H4428"]],[33,35,["H3063"]],[35,37,["H3478"]]]},{"k":11908,"v":[[0,2,["H3169"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,13,["H4608"]],[13,16,["H6913"]],[16,19,["H1121"]],[19,21,["H1732"]],[21,23,["H3605"]],[23,24,["H3063"]],[24,27,["H3427"]],[27,29,["H3389"]],[29,30,["H6213"]],[30,32,["H3519"]],[32,35,["H4194"]],[35,37,["H4519"]],[37,39,["H1121"]],[39,40,["H4427"]],[40,43,["H8478"]]]},{"k":11909,"v":[[0,1,["H4519"]],[1,3,["H8147","H6240"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,10,["H4427"]],[10,13,["H4427"]],[13,14,["H2572"]],[14,16,["H2568"]],[16,17,["H8141"]],[17,19,["H3389"]]]},{"k":11910,"v":[[0,2,["H6213"]],[2,6,["H7451"]],[6,9,["H5869"]],[9,12,["H3068"]],[12,16,["H8441"]],[16,19,["H1471"]],[19,20,["H834"]],[20,22,["H3068"]],[22,25,["H3423"]],[25,26,["H4480","H6440"]],[26,28,["H1121"]],[28,30,["H3478"]]]},{"k":11911,"v":[[0,3,["H1129"]],[3,4,["H7725","(H853)"]],[4,7,["H1116"]],[7,8,["H834"]],[8,9,["H3169"]],[9,11,["H1"]],[11,14,["H5422"]],[14,18,["H6965"]],[18,19,["H4196"]],[19,21,["H1168"]],[21,23,["H6213"]],[23,24,["H842"]],[24,26,["H7812"]],[26,27,["H3605"]],[27,29,["H6635"]],[29,31,["H8064"]],[31,33,["H5647"]],[33,34,[]]]},{"k":11912,"v":[[0,3,["H1129"]],[3,4,["H4196"]],[4,7,["H1004"]],[7,10,["H3068"]],[10,11,["H834"]],[11,13,["H3068"]],[13,15,["H559"]],[15,17,["H3389"]],[17,20,["H8034"]],[20,21,["H1961"]],[21,23,["H5769"]]]},{"k":11913,"v":[[0,3,["H1129"]],[3,4,["H4196"]],[4,6,["H3605"]],[6,8,["H6635"]],[8,10,["H8064"]],[10,13,["H8147"]],[13,14,["H2691"]],[14,17,["H1004"]],[17,20,["H3068"]]]},{"k":11914,"v":[[0,2,["H1931"]],[2,3,["(H853)"]],[3,5,["H1121"]],[5,7,["H5674"]],[7,10,["H784"]],[10,13,["H1516"]],[13,16,["H1121"]],[16,18,["H2011"]],[18,22,["H6049"]],[22,25,["H5172"]],[25,28,["H3784"]],[28,31,["H6213"]],[31,34,["H178"]],[34,37,["H3049"]],[37,39,["H6213"]],[39,40,["H7235"]],[40,41,["H7451"]],[41,44,["H5869"]],[44,47,["H3068"]],[47,52,["H3707"]]]},{"k":11915,"v":[[0,3,["H7760","(H853)"]],[3,6,["H6459"]],[6,8,["H5566"]],[8,9,["H834"]],[9,12,["H6213"]],[12,15,["H1004"]],[15,17,["H430"]],[17,19,["H834"]],[19,20,["H430"]],[20,22,["H559"]],[22,23,["H413"]],[23,24,["H1732"]],[24,26,["H413"]],[26,27,["H8010"]],[27,29,["H1121"]],[29,31,["H2088"]],[31,32,["H1004"]],[32,35,["H3389"]],[35,36,["H834"]],[36,39,["H977"]],[39,41,["H4480","H3605"]],[41,43,["H7626"]],[43,45,["H3478"]],[45,48,["H7760","(H853)"]],[48,50,["H8034"]],[50,52,["H5865"]]]},{"k":11916,"v":[[0,1,["H3808"]],[1,5,["H3254"]],[5,6,["H5493","(H853)"]],[6,8,["H7272"]],[8,10,["H3478"]],[10,13,["H4480","H5921"]],[13,15,["H127"]],[15,16,["H834"]],[16,19,["H5975"]],[19,22,["H1"]],[22,24,["H7535","H518"]],[24,28,["H8104"]],[28,30,["H6213","(H853)"]],[30,31,["H3605"]],[31,32,["H834"]],[32,35,["H6680"]],[35,40,["H3605"]],[40,41,["H8451"]],[41,44,["H2706"]],[44,47,["H4941"]],[47,50,["H3027"]],[50,52,["H4872"]]]},{"k":11917,"v":[[0,2,["H4519"]],[2,3,["(H853)"]],[3,4,["H3063"]],[4,7,["H3427"]],[7,9,["H3389"]],[9,11,["H8582"]],[11,14,["H6213"]],[14,15,["H7451"]],[15,16,["H4480"]],[16,18,["H1471"]],[18,19,["H834"]],[19,21,["H3068"]],[21,23,["H8045"]],[23,24,["H4480","H6440"]],[24,26,["H1121"]],[26,28,["H3478"]]]},{"k":11918,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4519"]],[6,8,["H413"]],[8,10,["H5971"]],[10,14,["H3808"]],[14,15,["H7181"]]]},{"k":11919,"v":[[0,3,["H3068"]],[3,4,["H935"]],[4,5,["H5921","(H853)"]],[5,8,["H8269"]],[8,12,["H6635"]],[12,14,["H4428"]],[14,16,["H804"]],[16,17,["H834"]],[17,18,["H3920","(H853)"]],[18,19,["H4519"]],[19,22,["H2336"]],[22,24,["H631"]],[24,27,["H5178"]],[27,29,["H1980"]],[29,32,["H894"]]]},{"k":11920,"v":[[0,6,["H6887"]],[6,8,["H2470","(H853)"]],[8,10,["H6440","H3068"]],[10,12,["H430"]],[12,15,["H3665"]],[15,16,["H3966"]],[16,17,["H4480","H6440"]],[17,19,["H430"]],[19,22,["H1"]]]},{"k":11921,"v":[[0,2,["H6419"]],[2,3,["H413"]],[3,8,["H6279"]],[8,12,["H8085"]],[12,14,["H8467"]],[14,18,["H7725"]],[18,20,["H3389"]],[20,23,["H4438"]],[23,25,["H4519"]],[25,26,["H3045"]],[26,27,["H3588"]],[27,29,["H3068"]],[29,30,["H1931"]],[30,32,["H430"]]]},{"k":11922,"v":[[0,2,["H310"]],[2,3,["H3651"]],[3,5,["H1129"]],[5,7,["H2346"]],[7,8,["H2435"]],[8,10,["H5892"]],[10,12,["H1732"]],[12,16,["H4628"]],[16,18,["H1521"]],[18,21,["H5158"]],[21,26,["H935"]],[26,29,["H1709"]],[29,30,["H8179"]],[30,33,["H5437"]],[33,34,["H6077"]],[34,42,["H1361","H3966"]],[42,44,["H7760"]],[44,45,["H8269"]],[45,47,["H2428"]],[47,49,["H3605"]],[49,51,["H1219"]],[51,52,["H5892"]],[52,54,["H3063"]]]},{"k":11923,"v":[[0,4,["H5493","(H853)"]],[4,6,["H5236"]],[6,7,["H430"]],[7,10,["H5566"]],[10,14,["H4480","H1004"]],[14,17,["H3068"]],[17,19,["H3605"]],[19,21,["H4196"]],[21,22,["H834"]],[22,25,["H1129"]],[25,28,["H2022"]],[28,31,["H1004"]],[31,34,["H3068"]],[34,37,["H3389"]],[37,39,["H7993"]],[39,42,["H2351"]],[42,44,["H5892"]]]},{"k":11924,"v":[[0,3,["H1129","(H853)"]],[3,5,["H4196"]],[5,8,["H3068"]],[8,10,["H2076"]],[10,11,["H5921"]],[11,12,["H8002"]],[12,13,["H2077"]],[13,16,["H8426"]],[16,18,["H559"]],[18,19,["H3063"]],[19,21,["H5647","(H853)"]],[21,23,["H3068"]],[23,24,["H430"]],[24,26,["H3478"]]]},{"k":11925,"v":[[0,1,["H61"]],[1,3,["H5971"]],[3,5,["H2076"]],[5,6,["H5750"]],[6,10,["H1116"]],[10,14,["H3068"]],[14,16,["H430"]],[16,17,["H7535"]]]},{"k":11926,"v":[[0,3,["H3499"]],[3,7,["H1697"]],[7,8,["H4519"]],[8,11,["H8605"]],[11,12,["H413"]],[12,14,["H430"]],[14,17,["H1697"]],[17,20,["H2374"]],[20,22,["H1696"]],[22,23,["H413"]],[23,27,["H8034"]],[27,30,["H3068"]],[30,31,["H430"]],[31,33,["H3478"]],[33,34,["H2009"]],[34,38,["H5921"]],[38,40,["H1697"]],[40,43,["H4428"]],[43,45,["H3478"]]]},{"k":11927,"v":[[0,2,["H8605"]],[2,8,["H6279"]],[8,12,["H3605"]],[12,14,["H2403"]],[14,17,["H4604"]],[17,20,["H4725"]],[20,21,["H834"]],[21,23,["H1129"]],[23,25,["H1116"]],[25,28,["H5975"]],[28,29,["H842"]],[29,32,["H6456"]],[32,33,["H6440"]],[33,36,["H3665"]],[36,37,["H2009"]],[37,40,["H3789"]],[40,41,["H5921"]],[41,43,["H1697"]],[43,46,["H2335"]]]},{"k":11928,"v":[[0,2,["H4519"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,14,["H1004"]],[14,16,["H526"]],[16,18,["H1121"]],[18,19,["H4427"]],[19,22,["H8478"]]]},{"k":11929,"v":[[0,1,["H526"]],[1,3,["H8147"]],[3,5,["H6242"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,14,["H4427"]],[14,15,["H8147"]],[15,16,["H8141"]],[16,18,["H3389"]]]},{"k":11930,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,14,["H834"]],[14,15,["H6213"]],[15,16,["H4519"]],[16,18,["H1"]],[18,20,["H526"]],[20,21,["H2076"]],[21,23,["H3605"]],[23,26,["H6456"]],[26,27,["H834"]],[27,28,["H4519"]],[28,30,["H1"]],[30,32,["H6213"]],[32,34,["H5647"]],[34,35,[]]]},{"k":11931,"v":[[0,4,["H3808","H3665"]],[4,5,["H4480","H6440"]],[5,7,["H3068"]],[7,9,["H4519"]],[9,11,["H1"]],[11,14,["H3665"]],[14,15,["H3588"]],[15,16,["H526"]],[16,17,["H819"]],[17,20,["H7235"]]]},{"k":11932,"v":[[0,3,["H5650"]],[3,4,["H7194"]],[4,5,["H5921"]],[5,8,["H4191"]],[8,13,["H1004"]]]},{"k":11933,"v":[[0,3,["H5971"]],[3,6,["H776"]],[6,7,["H5221","(H853)"]],[7,8,["H3605"]],[8,12,["H7194"]],[12,13,["H5921"]],[13,14,["H4428"]],[14,15,["H526"]],[15,18,["H5971"]],[18,21,["H776"]],[21,26,["H4427","(H853)","H2977","H1121"]],[26,29,["H8478"]]]},{"k":11934,"v":[[0,1,["H2977"]],[1,3,["H8083"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,10,["H4427"]],[10,13,["H4427"]],[13,15,["H3389"]],[15,16,["H259"]],[16,18,["H7970"]],[18,19,["H8141"]]]},{"k":11935,"v":[[0,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H1980"]],[15,18,["H1870"]],[18,20,["H1732"]],[20,22,["H1"]],[22,24,["H5493"]],[24,29,["H3225"]],[29,33,["H8040"]]]},{"k":11936,"v":[[0,4,["H8083"]],[4,5,["H8141"]],[5,8,["H4427"]],[8,10,["H1931"]],[10,12,["H5750"]],[12,13,["H5288"]],[13,15,["H2490"]],[15,17,["H1875"]],[17,20,["H430"]],[20,22,["H1732"]],[22,24,["H1"]],[24,28,["H8147","H6240"]],[28,29,["H8141"]],[29,31,["H2490"]],[31,33,["H2891","(H853)"]],[33,34,["H3063"]],[34,36,["H3389"]],[36,37,["H4480"]],[37,40,["H1116"]],[40,43,["H842"]],[43,47,["H6456"]],[47,51,["H4541"]]]},{"k":11937,"v":[[0,4,["H5422","(H853)"]],[4,6,["H4196"]],[6,8,["H1168"]],[8,11,["H6440"]],[11,14,["H2553"]],[14,15,["H834"]],[15,18,["H4605"]],[18,19,["H4480","H5921"]],[19,23,["H1438"]],[23,26,["H842"]],[26,30,["H6456"]],[30,34,["H4541"]],[34,38,["H7665"]],[38,41,["H1854"]],[41,45,["H2236"]],[45,47,["H5921","H6440"]],[47,49,["H6913"]],[49,54,["H2076"]],[54,56,[]]]},{"k":11938,"v":[[0,3,["H8313"]],[3,5,["H6106"]],[5,8,["H3548"]],[8,9,["H5921"]],[9,11,["H4196"]],[11,13,["H2891","(H853)"]],[13,14,["H3063"]],[14,16,["H3389"]]]},{"k":11939,"v":[[0,7,["H5892"]],[7,9,["H4519"]],[9,11,["H669"]],[11,13,["H8095"]],[13,15,["H5704"]],[15,16,["H5321"]],[16,19,["H2719"]],[19,21,["H5439"]]]},{"k":11940,"v":[[0,6,["H5422","(H853)"]],[6,8,["H4196"]],[8,11,["H842"]],[11,14,["H3807"]],[14,17,["H6456"]],[17,19,["H1854"]],[19,22,["H1438"]],[22,23,["H3605"]],[23,25,["H2553"]],[25,27,["H3605"]],[27,29,["H776"]],[29,31,["H3478"]],[31,33,["H7725"]],[33,35,["H3389"]]]},{"k":11941,"v":[[0,4,["H8083","H6240"]],[4,5,["H8141"]],[5,8,["H4427"]],[8,12,["H2891"]],[12,14,["H776"]],[14,17,["H1004"]],[17,19,["H7971","(H853)"]],[19,20,["H8227"]],[20,22,["H1121"]],[22,24,["H683"]],[24,26,["H4641"]],[26,28,["H8269"]],[28,31,["H5892"]],[31,33,["H3098"]],[33,35,["H1121"]],[35,37,["H3099"]],[37,39,["H2142"]],[39,41,["H2388","(H853)"]],[41,43,["H1004"]],[43,46,["H3068"]],[46,48,["H430"]]]},{"k":11942,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,6,["H2518"]],[6,8,["H1419"]],[8,9,["H3548"]],[9,11,["H5414","(H853)"]],[11,13,["H3701"]],[13,17,["H935"]],[17,19,["H1004"]],[19,21,["H430"]],[21,22,["H834"]],[22,24,["H3881"]],[24,26,["H8104"]],[26,28,["H5592"]],[28,30,["H622"]],[30,33,["H4480","H3027"]],[33,35,["H4519"]],[35,37,["H669"]],[37,40,["H4480","H3605"]],[40,42,["H7611"]],[42,44,["H3478"]],[44,47,["H4480","H3605"]],[47,48,["H3063"]],[48,50,["H1144"]],[50,53,["H7725"]],[53,55,["H3389"]]]},{"k":11943,"v":[[0,3,["H5414"]],[3,5,["H5921"]],[5,7,["H3027"]],[7,10,["H6213","H4399"]],[10,14,["H6485"]],[14,17,["H1004"]],[17,20,["H3068"]],[20,23,["H5414"]],[23,27,["H6213","H4399"]],[27,28,["H834"]],[28,29,["H6213"]],[29,32,["H1004"]],[32,35,["H3068"]],[35,37,["H918"]],[37,39,["H2388"]],[39,41,["H1004"]]]},{"k":11944,"v":[[0,4,["H2796"]],[4,6,["H1129"]],[6,7,["H5414"]],[7,11,["H7069"]],[11,12,["H4274"]],[12,13,["H68"]],[13,15,["H6086"]],[15,17,["H4226"]],[17,20,["H7136","(H853)"]],[20,22,["H1004"]],[22,23,["H834"]],[23,25,["H4428"]],[25,27,["H3063"]],[27,29,["H7843"]]]},{"k":11945,"v":[[0,3,["H376"]],[3,4,["H6213"]],[4,6,["H4399"]],[6,7,["H530"]],[7,10,["H5329"]],[10,11,["H5921"]],[11,14,["H3189"]],[14,16,["H5662"]],[16,18,["H3881"]],[18,19,["H4480"]],[19,21,["H1121"]],[21,23,["H4847"]],[23,25,["H2148"]],[25,27,["H4918"]],[27,28,["H4480"]],[28,30,["H1121"]],[30,33,["H6956"]],[33,37,["H6485"]],[37,42,["H3881"]],[42,43,["H3605"]],[43,46,["H995"]],[46,48,["H3627"]],[48,50,["H7892"]]]},{"k":11946,"v":[[0,4,["H5921"]],[4,8,["H5449"]],[8,11,["H5329"]],[11,13,["H3605"]],[13,15,["H6213"]],[15,17,["H4399"]],[17,22,["H5656","H5656"]],[22,24,["H4480"]],[24,26,["H3881"]],[26,29,["H5608"]],[29,31,["H7860"]],[31,33,["H7778"]]]},{"k":11947,"v":[[0,5,["H3318","(H853)"]],[5,7,["H3701"]],[7,11,["H935"]],[11,13,["H1004"]],[13,16,["H3068"]],[16,17,["H2518"]],[17,19,["H3548"]],[19,20,["H4672","(H853)"]],[20,22,["H5612"]],[22,25,["H8451"]],[25,28,["H3068"]],[28,30,["H3027"]],[30,31,["H4872"]]]},{"k":11948,"v":[[0,2,["H2518"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H413"]],[6,7,["H8227"]],[7,9,["H5608"]],[9,12,["H4672"]],[12,14,["H5612"]],[14,17,["H8451"]],[17,20,["H1004"]],[20,23,["H3068"]],[23,25,["H2518"]],[25,26,["H5414","(H853)"]],[26,28,["H5612"]],[28,29,["H413"]],[29,30,["H8227"]]]},{"k":11949,"v":[[0,2,["H8227"]],[2,3,["H935","(H853)"]],[3,5,["H5612"]],[5,6,["H413"]],[6,8,["H4428"]],[8,10,["H7725","(H853)"]],[10,12,["H4428"]],[12,13,["H1697"]],[13,15,["H5750"]],[15,16,["H559"]],[16,17,["H3605"]],[17,18,["H834"]],[18,20,["H5414"]],[20,23,["H3027","H5650"]],[23,24,["H1992"]],[24,25,["H6213"]],[25,26,[]]]},{"k":11950,"v":[[0,5,["H5413","(H853)"]],[5,7,["H3701"]],[7,10,["H4672"]],[10,13,["H1004"]],[13,16,["H3068"]],[16,19,["H5414"]],[19,21,["H5921"]],[21,23,["H3027"]],[23,26,["H6485"]],[26,28,["H5921"]],[28,30,["H3027"]],[30,33,["H6213","H4399"]]]},{"k":11951,"v":[[0,2,["H8227"]],[2,4,["H5608"]],[4,5,["H5046"]],[5,7,["H4428"]],[7,8,["H559"]],[8,9,["H2518"]],[9,11,["H3548"]],[11,13,["H5414"]],[13,16,["H5612"]],[16,18,["H8227"]],[18,19,["H7121"]],[19,21,["H6440"]],[21,23,["H4428"]]]},{"k":11952,"v":[[0,5,["H1961"]],[5,8,["H4428"]],[8,10,["H8085","(H853)"]],[10,12,["H1697"]],[12,15,["H8451"]],[15,18,["H7167","(H853)"]],[18,20,["H899"]]]},{"k":11953,"v":[[0,3,["H4428"]],[3,4,["H6680","(H853)"]],[4,5,["H2518"]],[5,7,["H296"]],[7,9,["H1121"]],[9,11,["H8227"]],[11,13,["H5658"]],[13,15,["H1121"]],[15,17,["H4318"]],[17,19,["H8227"]],[19,21,["H5608"]],[21,23,["H6222"]],[23,25,["H5650"]],[25,28,["H4428"]],[28,29,["H559"]]]},{"k":11954,"v":[[0,1,["H1980"]],[1,3,["H1875","(H853)"]],[3,5,["H3068"]],[5,6,["H1157"]],[6,9,["H1157"]],[9,13,["H7604"]],[13,15,["H3478"]],[15,18,["H3063"]],[18,19,["H5921"]],[19,21,["H1697"]],[21,24,["H5612"]],[24,25,["H834"]],[25,27,["H4672"]],[27,28,["H3588"]],[28,29,["H1419"]],[29,32,["H2534"]],[32,35,["H3068"]],[35,36,["H834"]],[36,39,["H5413"]],[39,42,["H5921","H834"]],[42,44,["H1"]],[44,46,["H3808"]],[46,47,["H8104","(H853)"]],[47,49,["H1697"]],[49,52,["H3068"]],[52,54,["H6213"]],[54,56,["H3605"]],[56,59,["H3789"]],[59,60,["H5921"]],[60,61,["H2088"]],[61,62,["H5612"]]]},{"k":11955,"v":[[0,2,["H2518"]],[2,5,["H834"]],[5,7,["H4428"]],[7,10,["H1980"]],[10,11,["H413"]],[11,12,["H2468"]],[12,14,["H5031"]],[14,16,["H802"]],[16,18,["H7967"]],[18,20,["H1121"]],[20,22,["H8616"]],[22,24,["H1121"]],[24,26,["H2641"]],[26,27,["H8104"]],[27,30,["H899"]],[30,32,["H1931"]],[32,33,["H3427"]],[33,35,["H3389"]],[35,38,["H4932"]],[38,41,["H1696"]],[41,42,["H413"]],[42,45,["H2063"]],[45,46,[]]]},{"k":11956,"v":[[0,3,["H559"]],[3,5,["H3541"]],[5,6,["H559"]],[6,8,["H3068"]],[8,9,["H430"]],[9,11,["H3478"]],[11,12,["H559"]],[12,15,["H376"]],[15,16,["H834"]],[16,17,["H7971"]],[17,19,["H413"]],[19,20,[]]]},{"k":11957,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H2009"]],[5,8,["H935"]],[8,9,["H7451"]],[9,10,["H5921"]],[10,11,["H2088"]],[11,12,["H4725"]],[12,14,["H5921"]],[14,16,["H3427"]],[16,18,["(H853)"]],[18,19,["H3605"]],[19,21,["H423"]],[21,24,["H3789"]],[24,25,["H5921"]],[25,27,["H5612"]],[27,28,["H834"]],[28,31,["H7121"]],[31,32,["H6440"]],[32,34,["H4428"]],[34,36,["H3063"]]]},{"k":11958,"v":[[0,1,["H8478","H834"]],[1,4,["H5800"]],[4,9,["H6999"]],[9,11,["H312"]],[11,12,["H430"]],[12,13,["H4616"]],[13,19,["H3707"]],[19,21,["H3605"]],[21,23,["H4639"]],[23,26,["H3027"]],[26,29,["H2534"]],[29,33,["H5413"]],[33,35,["H2088"]],[35,36,["H4725"]],[36,39,["H3808"]],[39,41,["H3518"]]]},{"k":11959,"v":[[0,3,["H413"]],[3,5,["H4428"]],[5,7,["H3063"]],[7,9,["H7971"]],[9,12,["H1875"]],[12,15,["H3068"]],[15,16,["H3541"]],[16,19,["H559"]],[19,20,["H413"]],[20,22,["H3541"]],[22,23,["H559"]],[23,25,["H3068"]],[25,26,["H430"]],[26,28,["H3478"]],[28,31,["H1697"]],[31,32,["H834"]],[32,35,["H8085"]]]},{"k":11960,"v":[[0,1,["H3282"]],[1,3,["H3824"]],[3,5,["H7401"]],[5,10,["H3665"]],[10,11,["H4480","H6440"]],[11,12,["H430"]],[12,15,["H8085","(H853)"]],[15,17,["H1697"]],[17,18,["H5921"]],[18,19,["H2088"]],[19,20,["H4725"]],[20,22,["H5921"]],[22,24,["H3427"]],[24,28,["H3665"]],[28,29,["H6440"]],[29,33,["H7167","(H853)"]],[33,35,["H899"]],[35,37,["H1058"]],[37,38,["H6440"]],[38,40,["H589"]],[40,43,["H8085"]],[43,45,["H1571"]],[45,46,["H5002"]],[46,48,["H3068"]]]},{"k":11961,"v":[[0,1,["H2009"]],[1,4,["H622"]],[4,6,["H413"]],[6,8,["H1"]],[8,13,["H622"]],[13,14,["H413"]],[14,16,["H6913"]],[16,18,["H7965"]],[18,19,["H3808"]],[19,22,["H5869"]],[22,23,["H7200"]],[23,24,["H3605"]],[24,26,["H7451"]],[26,27,["H834"]],[27,28,["H589"]],[28,30,["H935"]],[30,31,["H5921"]],[31,32,["H2088"]],[32,33,["H4725"]],[33,35,["H5921"]],[35,37,["H3427"]],[37,43,["H7725","(H853)"]],[43,45,["H4428"]],[45,46,["H1697"]],[46,47,[]]]},{"k":11962,"v":[[0,3,["H4428"]],[3,4,["H7971"]],[4,7,["H622","(H853)"]],[7,8,["H3605"]],[8,10,["H2205"]],[10,12,["H3063"]],[12,14,["H3389"]]]},{"k":11963,"v":[[0,3,["H4428"]],[3,5,["H5927"]],[5,8,["H1004"]],[8,11,["H3068"]],[11,13,["H3605"]],[13,15,["H376"]],[15,17,["H3063"]],[17,20,["H3427"]],[20,22,["H3389"]],[22,25,["H3548"]],[25,28,["H3881"]],[28,30,["H3605"]],[30,32,["H5971"]],[32,33,["H4480","H1419"]],[33,35,["H6996"]],[35,38,["H7121"]],[38,41,["H241","(H853)"]],[41,42,["H3605"]],[42,44,["H1697"]],[44,47,["H5612"]],[47,50,["H1285"]],[50,53,["H4672"]],[53,56,["H1004"]],[56,59,["H3068"]]]},{"k":11964,"v":[[0,3,["H4428"]],[3,4,["H5975"]],[4,5,["H5921"]],[5,7,["H5977"]],[7,9,["H3772","(H853)"]],[9,11,["H1285"]],[11,12,["H6440"]],[12,14,["H3068"]],[14,16,["H1980"]],[16,17,["H310"]],[17,19,["H3068"]],[19,22,["H8104","(H853)"]],[22,24,["H4687"]],[24,27,["H5715"]],[27,30,["H2706"]],[30,32,["H3605"]],[32,34,["H3824"]],[34,37,["H3605"]],[37,39,["H5315"]],[39,41,["H6213","(H853)"]],[41,43,["H1697"]],[43,46,["H1285"]],[46,49,["H3789"]],[49,50,["H5921"]],[50,51,["H2088"]],[51,52,["H5612"]]]},{"k":11965,"v":[[0,3,["(H853)"]],[3,4,["H3605"]],[4,7,["H4672"]],[7,9,["H3389"]],[9,11,["H1144"]],[11,13,["H5975"]],[13,18,["H3427"]],[18,20,["H3389"]],[20,21,["H6213"]],[21,25,["H1285"]],[25,27,["H430"]],[27,29,["H430"]],[29,32,["H1"]]]},{"k":11966,"v":[[0,2,["H2977"]],[2,4,["H5493","(H853)"]],[4,5,["H3605"]],[5,7,["H8441"]],[7,9,["H4480"]],[9,10,["H3605"]],[10,12,["H776"]],[12,13,["H834"]],[13,17,["H1121"]],[17,19,["H3478"]],[19,21,["(H853)"]],[21,22,["H3605"]],[22,25,["H4672"]],[25,27,["H3478"]],[27,29,["H5647"]],[29,32,["H5647","(H853)"]],[32,34,["H3068"]],[34,36,["H430"]],[36,38,["H3605"]],[38,40,["H3117"]],[40,42,["H5493"]],[42,43,["H3808"]],[43,45,["H4480","H310"]],[45,47,["H3068"]],[47,49,["H430"]],[49,52,["H1"]]]},{"k":11967,"v":[[0,2,["H2977"]],[2,3,["H6213"]],[3,5,["H6453"]],[5,8,["H3068"]],[8,10,["H3389"]],[10,13,["H7819"]],[13,15,["H6453"]],[15,18,["H702","H6240"]],[18,22,["H7223"]],[22,23,["H2320"]]]},{"k":11968,"v":[[0,3,["H5975"]],[3,5,["H3548"]],[5,6,["H5921"]],[6,8,["H4931"]],[8,10,["H2388"]],[10,14,["H5656"]],[14,17,["H1004"]],[17,20,["H3068"]]]},{"k":11969,"v":[[0,2,["H559"]],[2,5,["H3881"]],[5,7,["H4000"]],[7,8,["H3605"]],[8,9,["H3478"]],[9,12,["H6918"]],[12,15,["H3068"]],[15,16,["H5414","(H853)"]],[16,18,["H6944"]],[18,19,["H727"]],[19,22,["H1004"]],[22,23,["H834"]],[23,24,["H8010"]],[24,26,["H1121"]],[26,28,["H1732"]],[28,29,["H4428"]],[29,31,["H3478"]],[31,33,["H1129"]],[33,36,["H369"]],[36,39,["H4853"]],[39,42,["H3802"]],[42,43,["H5647"]],[43,44,["H6258","(H853)"]],[44,46,["H3068"]],[46,48,["H430"]],[48,51,["H5971"]],[51,52,["H3478"]]]},{"k":11970,"v":[[0,2,["H3559"]],[2,6,["H1004"]],[6,9,["H1"]],[9,12,["H4256"]],[12,16,["H3791"]],[16,18,["H1732"]],[18,19,["H4428"]],[19,21,["H3478"]],[21,26,["H4385"]],[26,28,["H8010"]],[28,30,["H1121"]]]},{"k":11971,"v":[[0,2,["H5975"]],[2,5,["H6944"]],[5,10,["H6391"]],[10,13,["H1004"]],[13,16,["H1"]],[16,19,["H251"]],[19,21,["H1121","H5971"]],[21,25,["H2515"]],[25,28,["H1004","H1"]],[28,31,["H3881"]]]},{"k":11972,"v":[[0,2,["H7819"]],[2,4,["H6453"]],[4,7,["H6942"]],[7,9,["H3559"]],[9,11,["H251"]],[11,15,["H6213"]],[15,19,["H1697"]],[19,22,["H3068"]],[22,25,["H3027"]],[25,27,["H4872"]]]},{"k":11973,"v":[[0,2,["H2977"]],[2,3,["H7311"]],[3,6,["H1121","H5971"]],[6,9,["H6629"]],[9,10,["H3532"]],[10,12,["H1121","H5795"]],[12,13,["H3605"]],[13,17,["H6453"]],[17,19,["H3605"]],[19,22,["H4672"]],[22,25,["H4557"]],[25,27,["H7970"]],[27,28,["H505"]],[28,30,["H7969"]],[30,31,["H505"]],[31,32,["H1241"]],[32,33,["H428"]],[33,37,["H4428"]],[37,38,["H4480","H7399"]]]},{"k":11974,"v":[[0,3,["H8269"]],[3,4,["H7311"]],[4,5,["H5071"]],[5,8,["H5971"]],[8,11,["H3548"]],[11,15,["H3881"]],[15,16,["H2518"]],[16,18,["H2148"]],[18,20,["H3171"]],[20,21,["H5057"]],[21,24,["H1004"]],[24,26,["H430"]],[26,27,["H5414"]],[27,30,["H3548"]],[30,34,["H6453"]],[34,36,["H505"]],[36,38,["H8337"]],[38,39,["H3967"]],[39,43,["H7969"]],[43,44,["H3967"]],[44,45,["H1241"]]]},{"k":11975,"v":[[0,1,["H3562"]],[1,4,["H8098"]],[4,6,["H5417"]],[6,8,["H251"]],[8,10,["H2811"]],[10,12,["H3273"]],[12,14,["H3107"]],[14,15,["H8269"]],[15,18,["H3881"]],[18,19,["H7311"]],[19,22,["H3881"]],[22,25,["H6453"]],[25,26,["H2568"]],[26,27,["H505"]],[27,31,["H2568"]],[31,32,["H3967"]],[32,33,["H1241"]]]},{"k":11976,"v":[[0,3,["H5656"]],[3,5,["H3559"]],[5,8,["H3548"]],[8,9,["H5975"]],[9,10,["H5921"]],[10,12,["H5977"]],[12,15,["H3881"]],[15,16,["H5921"]],[16,18,["H4256"]],[18,22,["H4428"]],[22,23,["H4687"]]]},{"k":11977,"v":[[0,3,["H7819"]],[3,5,["H6453"]],[5,8,["H3548"]],[8,9,["H2236"]],[9,14,["H4480","H3027"]],[14,17,["H3881"]],[17,18,["H6584"]],[18,19,[]]]},{"k":11978,"v":[[0,3,["H5493"]],[3,6,["H5930"]],[6,10,["H5414"]],[10,14,["H4653"]],[14,17,["H1004","H1"]],[17,20,["H1121","H5971"]],[20,22,["H7126"]],[22,25,["H3068"]],[25,29,["H3789"]],[29,32,["H5612"]],[32,34,["H4872"]],[34,36,["H3651"]],[36,41,["H1241"]]]},{"k":11979,"v":[[0,3,["H1310"]],[3,5,["H6453"]],[5,7,["H784"]],[7,11,["H4941"]],[11,15,["H6944"]],[15,17,["H1310"]],[17,20,["H5518"]],[20,23,["H1731"]],[23,26,["H6745"]],[26,30,["H7323"]],[30,32,["H3605"]],[32,34,["H1121","H5971"]]]},{"k":11980,"v":[[0,2,["H310"]],[2,5,["H3559"]],[5,11,["H3548"]],[11,12,["H3588"]],[12,14,["H3548"]],[14,16,["H1121"]],[16,18,["H175"]],[18,22,["H5927"]],[22,25,["H5930"]],[25,28,["H2459"]],[28,29,["H5704"]],[29,30,["H3915"]],[30,33,["H3881"]],[33,34,["H3559"]],[34,40,["H3548"]],[40,42,["H1121"]],[42,44,["H175"]]]},{"k":11981,"v":[[0,3,["H7891"]],[3,5,["H1121"]],[5,7,["H623"]],[7,9,["H5921"]],[9,11,["H4612"]],[11,15,["H4687"]],[15,17,["H1732"]],[17,19,["H623"]],[19,21,["H1968"]],[21,23,["H3038"]],[23,25,["H4428"]],[25,26,["H2374"]],[26,29,["H7778"]],[29,33,["H8179","H8179"]],[33,36,["H369"]],[36,37,["H5493"]],[37,38,["H4480","H5921"]],[38,40,["H5656"]],[40,41,["H3588"]],[41,43,["H251"]],[43,45,["H3881"]],[45,46,["H3559"]],[46,48,[]]]},{"k":11982,"v":[[0,2,["H3605"]],[2,4,["H5656"]],[4,7,["H3068"]],[7,9,["H3559"]],[9,11,["H1931"]],[11,12,["H3117"]],[12,14,["H6213"]],[14,16,["H6453"]],[16,19,["H5927"]],[19,21,["H5930"]],[21,22,["H5921"]],[22,24,["H4196"]],[24,27,["H3068"]],[27,31,["H4687"]],[31,33,["H4428"]],[33,34,["H2977"]]]},{"k":11983,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,8,["H4672"]],[8,9,["H6213","(H853)"]],[9,11,["H6453"]],[11,13,["H1931"]],[13,14,["H6256"]],[14,17,["H2282"]],[17,20,["H4682"]],[20,21,["H7651"]],[21,22,["H3117"]]]},{"k":11984,"v":[[0,4,["H3808"]],[4,5,["H6453"]],[5,7,["H3644"]],[7,9,["H6213"]],[9,11,["H3478"]],[11,14,["H4480","H3117"]],[14,16,["H8050"]],[16,18,["H5030"]],[18,19,["H3808"]],[19,20,["H6213"]],[20,21,["H3605"]],[21,23,["H4428"]],[23,25,["H3478"]],[25,26,["H6213"]],[26,29,["H6453"]],[29,30,["H834"]],[30,31,["H2977"]],[31,32,["H6213"]],[32,35,["H3548"]],[35,38,["H3881"]],[38,40,["H3605"]],[40,41,["H3063"]],[41,43,["H3478"]],[43,46,["H4672"]],[46,49,["H3427"]],[49,51,["H3389"]]]},{"k":11985,"v":[[0,3,["H8083","H6240"]],[3,4,["H8141"]],[4,7,["H4438"]],[7,9,["H2977"]],[9,11,["H2088"]],[11,12,["H6453"]],[12,13,["H6213"]]]},{"k":11986,"v":[[0,1,["H310"]],[1,2,["H3605"]],[2,3,["H2063"]],[3,4,["H834"]],[4,5,["H2977"]],[5,7,["H3559","(H853)"]],[7,9,["H1004"]],[9,10,["H5224"]],[10,11,["H4428"]],[11,13,["H4714"]],[13,15,["H5927"]],[15,17,["H3898"]],[17,19,["H3751"]],[19,20,["H5921"]],[20,21,["H6578"]],[21,23,["H2977"]],[23,25,["H3318"]],[25,26,["H7125"]],[26,27,[]]]},{"k":11987,"v":[[0,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,7,["H559"]],[7,8,["H4100"]],[8,16,["H4428"]],[16,18,["H3063"]],[18,21,["H3808"]],[21,22,["H5921"]],[22,23,["H859"]],[23,25,["H3117"]],[25,26,["H3588"]],[26,27,["H413"]],[27,29,["H1004"]],[29,33,["H4421"]],[33,35,["H430"]],[35,36,["H559"]],[36,40,["H926"]],[40,41,["H2308"]],[41,46,["H4480","H430"]],[46,47,["H834"]],[47,49,["H5973"]],[49,53,["H7843"]],[53,55,["H408"]]]},{"k":11988,"v":[[0,2,["H2977"]],[2,4,["H3808"]],[4,5,["H5437"]],[5,7,["H6440"]],[7,8,["H4480"]],[8,10,["H3588"]],[10,12,["H2664"]],[12,16,["H3898"]],[16,20,["H8085"]],[20,21,["H3808"]],[21,22,["H413"]],[22,24,["H1697"]],[24,26,["H5224"]],[26,29,["H4480","H6310"]],[29,31,["H430"]],[31,33,["H935"]],[33,35,["H3898"]],[35,38,["H1237"]],[38,40,["H4023"]]]},{"k":11989,"v":[[0,3,["H3384"]],[3,4,["H3384"]],[4,6,["H4428"]],[6,7,["H2977"]],[7,10,["H4428"]],[10,11,["H559"]],[11,14,["H5650"]],[14,17,["H5674"]],[17,18,["H3588"]],[18,22,["H2470","H3966"]]]},{"k":11990,"v":[[0,2,["H5650"]],[2,4,["H5674"]],[4,7,["H4480"]],[7,9,["H4818"]],[9,11,["H7392"]],[11,13,["H5921"]],[13,15,["H4932"]],[15,16,["H7393"]],[16,17,["H834"]],[17,22,["H1980"]],[22,25,["H3389"]],[25,28,["H4191"]],[28,31,["H6912"]],[31,36,["H6913"]],[36,39,["H1"]],[39,41,["H3605"]],[41,42,["H3063"]],[42,44,["H3389"]],[44,45,["H56"]],[45,46,["H5921"]],[46,47,["H2977"]]]},{"k":11991,"v":[[0,2,["H3414"]],[2,3,["H6969"]],[3,4,["H5921"]],[4,5,["H2977"]],[5,7,["H3605"]],[7,10,["H7891"]],[10,14,["H7891"]],[14,15,["H559"]],[15,16,["H5921"]],[16,17,["H2977"]],[17,20,["H7015"]],[20,21,["H5704"]],[21,23,["H3117"]],[23,25,["H5414"]],[25,28,["H2706"]],[28,29,["H5921"]],[29,30,["H3478"]],[30,32,["H2009"]],[32,35,["H3789"]],[35,36,["H5921"]],[36,38,["H7015"]]]},{"k":11992,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H2977"]],[8,11,["H2617"]],[11,17,["H3789"]],[17,20,["H8451"]],[20,23,["H3068"]]]},{"k":11993,"v":[[0,3,["H1697"]],[3,4,["H7223"]],[4,6,["H314"]],[6,7,["H2009"]],[7,10,["H3789"]],[10,11,["H5921"]],[11,13,["H5612"]],[13,16,["H4428"]],[16,18,["H3478"]],[18,20,["H3063"]]]},{"k":11994,"v":[[0,3,["H5971"]],[3,6,["H776"]],[6,7,["H3947","(H853)"]],[7,8,["H3059"]],[8,10,["H1121"]],[10,12,["H2977"]],[12,16,["H4427"]],[16,20,["H8478","H1"]],[20,22,["H3389"]]]},{"k":11995,"v":[[0,1,["H3059"]],[1,3,["H6242"]],[3,5,["H7969"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H7969"]],[16,17,["H2320"]],[17,19,["H3389"]]]},{"k":11996,"v":[[0,3,["H4428"]],[3,5,["H4714"]],[5,8,["H5493"]],[8,10,["H3389"]],[10,12,["H6064","(H853)"]],[12,14,["H776"]],[14,17,["H3967"]],[17,18,["H3603"]],[18,20,["H3701"]],[20,23,["H3603"]],[23,25,["H2091"]]]},{"k":11997,"v":[[0,3,["H4428"]],[3,5,["H4714"]],[5,6,["(H853)"]],[6,7,["H471"]],[7,9,["H251"]],[9,10,["H4427"]],[10,11,["H5921"]],[11,12,["H3063"]],[12,14,["H3389"]],[14,16,["H5437","(H853)"]],[16,18,["H8034"]],[18,20,["H3079"]],[20,22,["H5224"]],[22,23,["H3947"]],[23,24,["H3059"]],[24,26,["H251"]],[26,28,["H935"]],[28,31,["H4714"]]]},{"k":11998,"v":[[0,1,["H3079"]],[1,3,["H6242"]],[3,5,["H2568"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H259","H6240"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,22,["H6213"]],[22,26,["H7451"]],[26,29,["H5869"]],[29,32,["H3068"]],[32,34,["H430"]]]},{"k":11999,"v":[[0,1,["H5921"]],[1,4,["H5927"]],[4,5,["H5019"]],[5,6,["H4428"]],[6,8,["H894"]],[8,10,["H631"]],[10,13,["H5178"]],[13,15,["H1980"]],[15,18,["H894"]]]},{"k":12000,"v":[[0,1,["H5019"]],[1,3,["H935"]],[3,6,["H4480","H3627"]],[6,9,["H1004"]],[9,12,["H3068"]],[12,14,["H894"]],[14,16,["H5414"]],[16,20,["H1964"]],[20,22,["H894"]]]},{"k":12001,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3079"]],[8,11,["H8441"]],[11,12,["H834"]],[12,14,["H6213"]],[14,19,["H4672"]],[19,20,["H5921"]],[20,22,["H2009"]],[22,25,["H3789"]],[25,26,["H5921"]],[26,28,["H5612"]],[28,31,["H4428"]],[31,33,["H3478"]],[33,35,["H3063"]],[35,37,["H3078"]],[37,39,["H1121"]],[39,40,["H4427"]],[40,43,["H8478"]]]},{"k":12002,"v":[[0,1,["H3078"]],[1,3,["H8083"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,10,["H4427"]],[10,13,["H4427"]],[13,14,["H7969"]],[14,15,["H2320"]],[15,17,["H6235"]],[17,18,["H3117"]],[18,20,["H3389"]],[20,23,["H6213"]],[23,27,["H7451"]],[27,30,["H5869"]],[30,33,["H3068"]]]},{"k":12003,"v":[[0,4,["H8141"]],[4,6,["H8666"]],[6,7,["H4428"]],[7,8,["H5019"]],[8,9,["H7971"]],[9,11,["H935"]],[11,14,["H894"]],[14,15,["H5973"]],[15,17,["H2532"]],[17,18,["H3627"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,26,["H4427","(H853)"]],[26,27,["H6667"]],[27,29,["H251"]],[29,31,["H5921"]],[31,32,["H3063"]],[32,34,["H3389"]]]},{"k":12004,"v":[[0,1,["H6667"]],[1,3,["H259"]],[3,5,["H6242"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,14,["H4427"]],[14,15,["H259","H6240"]],[15,16,["H8141"]],[16,18,["H3389"]]]},{"k":12005,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H430"]],[15,19,["H3665","H3808"]],[19,20,["H4480","H6440"]],[20,21,["H3414"]],[21,23,["H5030"]],[23,27,["H4480","H6310"]],[27,30,["H3068"]]]},{"k":12006,"v":[[0,3,["H1571"]],[3,4,["H4775"]],[4,6,["H4428"]],[6,7,["H5019"]],[7,8,["H834"]],[8,12,["H7650"]],[12,14,["H430"]],[14,17,["H7185","(H853)"]],[17,19,["H6203"]],[19,21,["H553","(H853)"]],[21,23,["H3824"]],[23,25,["H4480","H7725"]],[25,26,["H413"]],[26,28,["H3068"]],[28,29,["H430"]],[29,31,["H3478"]]]},{"k":12007,"v":[[0,1,["H1571"]],[1,2,["H3605"]],[2,4,["H8269"]],[4,7,["H3548"]],[7,10,["H5971"]],[10,13,["H7235","H4603","H4604"]],[13,15,["H3605"]],[15,17,["H8441"]],[17,20,["H1471"]],[20,22,["H2930","(H853)"]],[22,24,["H1004"]],[24,27,["H3068"]],[27,28,["H834"]],[28,31,["H6942"]],[31,33,["H3389"]]]},{"k":12008,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,7,["H1"]],[7,8,["H7971"]],[8,9,["H5921"]],[9,11,["H3027"]],[11,13,["H4397"]],[13,16,["H7925"]],[16,18,["H7971"]],[18,19,["H3588"]],[19,22,["H2550"]],[22,23,["H5921"]],[23,25,["H5971"]],[25,27,["H5921"]],[27,30,["H4583"]]]},{"k":12009,"v":[[0,3,["H1961","H3931"]],[3,5,["H4397"]],[5,7,["H430"]],[7,9,["H959"]],[9,11,["H1697"]],[11,13,["H8591"]],[13,15,["H5030"]],[15,16,["H5704"]],[16,18,["H2534"]],[18,21,["H3068"]],[21,22,["H5927"]],[22,25,["H5971"]],[25,26,["H5704"]],[26,29,["H369"]],[29,30,["H4832"]]]},{"k":12010,"v":[[0,3,["H5927"]],[3,4,["H5921"]],[4,5,["(H853)"]],[5,7,["H4428"]],[7,10,["H3778"]],[10,12,["H2026"]],[12,15,["H970"]],[15,18,["H2719"]],[18,21,["H1004"]],[21,24,["H4720"]],[24,28,["H2550","H3808"]],[28,29,["H5921"]],[29,31,["H970"]],[31,33,["H1330"]],[33,35,["H2205"]],[35,41,["H3486"]],[41,43,["H5414"]],[43,45,["H3605"]],[45,48,["H3027"]]]},{"k":12011,"v":[[0,2,["H3605"]],[2,4,["H3627"]],[4,7,["H1004"]],[7,9,["H430"]],[9,10,["H1419"]],[10,12,["H6996"]],[12,15,["H214"]],[15,18,["H1004"]],[18,21,["H3068"]],[21,24,["H214"]],[24,27,["H4428"]],[27,31,["H8269"]],[31,32,["H3605"]],[32,35,["H935"]],[35,37,["H894"]]]},{"k":12012,"v":[[0,3,["H8313","(H853)"]],[3,5,["H1004"]],[5,7,["H430"]],[7,10,["H5422","(H853)"]],[10,12,["H2346"]],[12,14,["H3389"]],[14,16,["H8313"]],[16,17,["H3605"]],[17,19,["H759"]],[19,22,["H784"]],[22,24,["H7843"]],[24,25,["H3605"]],[25,27,["H4261"]],[27,28,["H3627"]],[28,29,[]]]},{"k":12013,"v":[[0,5,["H7611"]],[5,6,["H4480"]],[6,8,["H2719"]],[8,11,["H1540"]],[11,12,["H413"]],[12,13,["H894"]],[13,16,["H1961"]],[16,17,["H5650"]],[17,22,["H1121"]],[22,23,["H5704"]],[23,25,["H4427"]],[25,28,["H4438"]],[28,30,["H6539"]]]},{"k":12014,"v":[[0,2,["H4390"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,10,["H6310"]],[10,12,["H3414"]],[12,13,["H5704"]],[13,15,["H776"]],[15,17,["H7521","(H853)"]],[17,19,["H7676"]],[19,23,["H3605","H3117"]],[23,26,["H8074"]],[26,29,["H7673"]],[29,31,["H4390"]],[31,34,["H7657"]],[34,35,["H8141"]]]},{"k":12015,"v":[[0,4,["H259"]],[4,5,["H8141"]],[5,7,["H3566"]],[7,8,["H4428"]],[8,10,["H6539"]],[10,13,["H1697"]],[13,16,["H3068"]],[16,20,["H6310"]],[20,22,["H3414"]],[22,25,["H3615"]],[25,27,["H3068"]],[27,29,["H5782","(H853)"]],[29,31,["H7307"]],[31,33,["H3566"]],[33,34,["H4428"]],[34,36,["H6539"]],[36,41,["H5674","H6963"]],[41,43,["H3605"]],[43,45,["H4438"]],[45,49,["H1571"]],[49,51,["H4385"]],[51,52,["H559"]]]},{"k":12016,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,3,["H3566"]],[3,4,["H4428"]],[4,6,["H6539"]],[6,7,["H3605"]],[7,9,["H4467"]],[9,12,["H776"]],[12,15,["H3068"]],[15,16,["H430"]],[16,18,["H8064"]],[18,19,["H5414"]],[19,22,["H1931"]],[22,24,["H6485","H5921"]],[24,27,["H1129"]],[27,30,["H1004"]],[30,32,["H3389"]],[32,33,["H834"]],[33,36,["H3063"]],[36,37,["H4310"]],[37,43,["H4480","H3605"]],[43,45,["H5971"]],[45,47,["H3068"]],[47,49,["H430"]],[49,51,["H5973"]],[51,57,["H5927"]]]},{"k":12017,"v":[[0,4,["H259"]],[4,5,["H8141"]],[5,7,["H3566"]],[7,8,["H4428"]],[8,10,["H6539"]],[10,13,["H1697"]],[13,16,["H3068"]],[16,19,["H4480","H6310"]],[19,21,["H3414"]],[21,24,["H3615"]],[24,26,["H3068"]],[26,28,["H5782","(H853)"]],[28,30,["H7307"]],[30,32,["H3566"]],[32,33,["H4428"]],[33,35,["H6539"]],[35,40,["H5674","H6963"]],[40,42,["H3605"]],[42,44,["H4438"]],[44,48,["H1571"]],[48,50,["H4385"]],[50,51,["H559"]]]},{"k":12018,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,3,["H3566"]],[3,4,["H4428"]],[4,6,["H6539"]],[6,8,["H3068"]],[8,9,["H430"]],[9,11,["H8064"]],[11,13,["H5414"]],[13,15,["H3605"]],[15,17,["H4467"]],[17,20,["H776"]],[20,22,["H1931"]],[22,24,["H6485","H5921"]],[24,27,["H1129"]],[27,30,["H1004"]],[30,32,["H3389"]],[32,33,["H834"]],[33,36,["H3063"]]]},{"k":12019,"v":[[0,1,["H4310"]],[1,7,["H4480","H3605"]],[7,9,["H5971"]],[9,11,["H430"]],[11,12,["H1961"]],[12,13,["H5973"]],[13,19,["H5927"]],[19,21,["H3389"]],[21,22,["H834"]],[22,25,["H3063"]],[25,27,["H1129","(H853)"]],[27,29,["H1004"]],[29,32,["H3068"]],[32,33,["H430"]],[33,35,["H3478"]],[35,36,["H1931"]],[36,39,["H430"]],[39,40,["H834"]],[40,43,["H3389"]]]},{"k":12020,"v":[[0,2,["H3605"]],[2,3,["H7604"]],[3,5,["H4480","H3605"]],[5,6,["H4725"]],[6,7,["H834"]],[7,8,["H1931"]],[8,9,["H1481"]],[9,12,["H376"]],[12,15,["H4725"]],[15,16,["H5375"]],[16,19,["H3701"]],[19,22,["H2091"]],[22,25,["H7399"]],[25,28,["H929"]],[28,29,["H5973"]],[29,32,["H5071"]],[32,35,["H1004"]],[35,37,["H430"]],[37,38,["H834"]],[38,41,["H3389"]]]},{"k":12021,"v":[[0,3,["H6965"]],[3,5,["H7218"]],[5,8,["H1"]],[8,10,["H3063"]],[10,12,["H1144"]],[12,15,["H3548"]],[15,18,["H3881"]],[18,20,["H3605"]],[20,21,["(H853)"]],[21,23,["H7307"]],[23,24,["H430"]],[24,26,["H5782"]],[26,29,["H5927"]],[29,31,["H1129","(H853)"]],[31,33,["H1004"]],[33,36,["H3068"]],[36,37,["H834"]],[37,40,["H3389"]]]},{"k":12022,"v":[[0,2,["H3605"]],[2,6,["H5439"]],[6,8,["H2388"]],[8,10,["H3027"]],[10,12,["H3627"]],[12,14,["H3701"]],[14,16,["H2091"]],[16,18,["H7399"]],[18,21,["H929"]],[21,25,["H4030"]],[25,27,["H905","H5921","H3605"]],[27,31,["H5068"]]]},{"k":12023,"v":[[0,2,["H3566"]],[2,4,["H4428"]],[4,6,["H3318","(H853)"]],[6,8,["H3627"]],[8,11,["H1004"]],[11,14,["H3068"]],[14,15,["H834"]],[15,16,["H5019"]],[16,19,["H3318"]],[19,22,["H4480","H3389"]],[22,25,["H5414"]],[25,29,["H1004"]],[29,32,["H430"]]]},{"k":12024,"v":[[0,4,["H3566"]],[4,5,["H4428"]],[5,7,["H6539"]],[7,9,["H3318"]],[9,10,["H5921"]],[10,12,["H3027"]],[12,14,["H4990"]],[14,16,["H1489"]],[16,18,["H5608"]],[18,21,["H8339"]],[21,23,["H5387"]],[23,25,["H3063"]]]},{"k":12025,"v":[[0,2,["H428"]],[2,5,["H4557"]],[5,8,["H7970"]],[8,9,["H105"]],[9,11,["H2091"]],[11,13,["H505"]],[13,14,["H105"]],[14,16,["H3701"]],[16,17,["H8672"]],[17,19,["H6242"]],[19,20,["H4252"]]]},{"k":12026,"v":[[0,1,["H7970"]],[1,2,["H3713"]],[2,4,["H2091"]],[4,5,["H3701"]],[5,6,["H3713"]],[6,9,["H4932"]],[9,11,["H702"]],[11,12,["H3967"]],[12,14,["H6235"]],[14,16,["H312"]],[16,17,["H3627"]],[17,19,["H505"]]]},{"k":12027,"v":[[0,1,["H3605"]],[1,3,["H3627"]],[3,5,["H2091"]],[5,8,["H3701"]],[8,10,["H2568"]],[10,11,["H505"]],[11,13,["H702"]],[13,14,["H3967"]],[14,15,["H3605"]],[15,18,["H8339"]],[18,20,["H5927"]],[20,21,["H5973"]],[21,25,["H1473"]],[25,29,["H5927"]],[29,31,["H4480","H894"]],[31,33,["H3389"]]]},{"k":12028,"v":[[0,2,["H428"]],[2,5,["H1121"]],[5,8,["H4082"]],[8,11,["H5927"]],[11,15,["H4480","H7628"]],[15,22,["H1473"]],[22,23,["H834"]],[23,24,["H5019"]],[24,26,["H4428"]],[26,28,["H894"]],[28,31,["H1540"]],[31,33,["H894"]],[33,36,["H7725"]],[36,38,["H3389"]],[38,40,["H3063"]],[40,42,["H376"]],[42,45,["H5892"]]]},{"k":12029,"v":[[0,1,["H834"]],[1,2,["H935"]],[2,3,["H5973"]],[3,4,["H2216"]],[4,5,["H3442"]],[5,6,["H5166"]],[6,7,["H8304"]],[7,8,["H7480"]],[8,9,["H4782"]],[9,10,["H1114"]],[10,11,["H4558"]],[11,12,["H902"]],[12,13,["H7348"]],[13,14,["H1196"]],[14,16,["H4557"]],[16,19,["H376"]],[19,22,["H5971"]],[22,24,["H3478"]]]},{"k":12030,"v":[[0,2,["H1121"]],[2,4,["H6551"]],[4,6,["H505"]],[6,8,["H3967"]],[8,9,["H7657"]],[9,11,["H8147"]]]},{"k":12031,"v":[[0,2,["H1121"]],[2,4,["H8203"]],[4,5,["H7969"]],[5,6,["H3967"]],[6,7,["H7657"]],[7,9,["H8147"]]]},{"k":12032,"v":[[0,2,["H1121"]],[2,4,["H733"]],[4,5,["H7651"]],[5,6,["H3967"]],[6,7,["H7657"]],[7,9,["H2568"]]]},{"k":12033,"v":[[0,2,["H1121"]],[2,4,["H6355"]],[4,7,["H1121"]],[7,9,["H3442"]],[9,11,["H3097"]],[11,13,["H505"]],[13,14,["H8083"]],[14,15,["H3967"]],[15,17,["H8147","H6240"]]]},{"k":12034,"v":[[0,2,["H1121"]],[2,4,["H5867"]],[4,6,["H505"]],[6,8,["H3967"]],[8,9,["H2572"]],[9,11,["H702"]]]},{"k":12035,"v":[[0,2,["H1121"]],[2,4,["H2240"]],[4,5,["H8672"]],[5,6,["H3967"]],[6,7,["H705"]],[7,9,["H2568"]]]},{"k":12036,"v":[[0,2,["H1121"]],[2,4,["H2140"]],[4,5,["H7651"]],[5,6,["H3967"]],[6,8,["H8346"]]]},{"k":12037,"v":[[0,2,["H1121"]],[2,4,["H1137"]],[4,5,["H8337"]],[5,6,["H3967"]],[6,7,["H705"]],[7,9,["H8147"]]]},{"k":12038,"v":[[0,2,["H1121"]],[2,4,["H893"]],[4,5,["H8337"]],[5,6,["H3967"]],[6,7,["H6242"]],[7,9,["H7969"]]]},{"k":12039,"v":[[0,2,["H1121"]],[2,4,["H5803"]],[4,6,["H505"]],[6,8,["H3967"]],[8,9,["H6242"]],[9,11,["H8147"]]]},{"k":12040,"v":[[0,2,["H1121"]],[2,4,["H140"]],[4,5,["H8337"]],[5,6,["H3967"]],[6,7,["H8346"]],[7,9,["H8337"]]]},{"k":12041,"v":[[0,2,["H1121"]],[2,4,["H902"]],[4,6,["H505"]],[6,7,["H2572"]],[7,9,["H8337"]]]},{"k":12042,"v":[[0,2,["H1121"]],[2,4,["H5720"]],[4,5,["H702"]],[5,6,["H3967"]],[6,7,["H2572"]],[7,9,["H702"]]]},{"k":12043,"v":[[0,2,["H1121"]],[2,4,["H333"]],[4,6,["H3169"]],[6,7,["H8673"]],[7,9,["H8083"]]]},{"k":12044,"v":[[0,2,["H1121"]],[2,4,["H1209"]],[4,5,["H7969"]],[5,6,["H3967"]],[6,7,["H6242"]],[7,9,["H7969"]]]},{"k":12045,"v":[[0,2,["H1121"]],[2,4,["H3139"]],[4,6,["H3967"]],[6,8,["H8147","H6240"]]]},{"k":12046,"v":[[0,2,["H1121"]],[2,4,["H2828"]],[4,6,["H3967"]],[6,7,["H6242"]],[7,9,["H7969"]]]},{"k":12047,"v":[[0,2,["H1121"]],[2,4,["H1402"]],[4,5,["H8673"]],[5,7,["H2568"]]]},{"k":12048,"v":[[0,2,["H1121"]],[2,4,["H1035"]],[4,6,["H3967"]],[6,7,["H6242"]],[7,9,["H7969"]]]},{"k":12049,"v":[[0,2,["H376"]],[2,4,["H5199"]],[4,5,["H2572"]],[5,7,["H8337"]]]},{"k":12050,"v":[[0,2,["H376"]],[2,4,["H6068"]],[4,6,["H3967"]],[6,7,["H6242"]],[7,9,["H8083"]]]},{"k":12051,"v":[[0,2,["H1121"]],[2,4,["H5820"]],[4,5,["H705"]],[5,7,["H8147"]]]},{"k":12052,"v":[[0,2,["H1121"]],[2,4,["H7157"]],[4,5,["H3716"]],[5,7,["H881"]],[7,8,["H7651"]],[8,9,["H3967"]],[9,11,["H705"]],[11,13,["H7969"]]]},{"k":12053,"v":[[0,2,["H1121"]],[2,4,["H7414"]],[4,6,["H1387"]],[6,7,["H8337"]],[7,8,["H3967"]],[8,9,["H6242"]],[9,11,["H259"]]]},{"k":12054,"v":[[0,2,["H376"]],[2,4,["H4363"]],[4,6,["H3967"]],[6,7,["H6242"]],[7,9,["H8147"]]]},{"k":12055,"v":[[0,2,["H376"]],[2,4,["H1008"]],[4,6,["H5857"]],[6,8,["H3967"]],[8,9,["H6242"]],[9,11,["H7969"]]]},{"k":12056,"v":[[0,2,["H1121"]],[2,4,["H5015"]],[4,5,["H2572"]],[5,7,["H8147"]]]},{"k":12057,"v":[[0,2,["H1121"]],[2,4,["H4019"]],[4,6,["H3967"]],[6,7,["H2572"]],[7,9,["H8337"]]]},{"k":12058,"v":[[0,2,["H1121"]],[2,5,["H312"]],[5,6,["H5867"]],[6,8,["H505"]],[8,10,["H3967"]],[10,11,["H2572"]],[11,13,["H702"]]]},{"k":12059,"v":[[0,2,["H1121"]],[2,4,["H2766"]],[4,5,["H7969"]],[5,6,["H3967"]],[6,8,["H6242"]]]},{"k":12060,"v":[[0,2,["H1121"]],[2,4,["H3850"]],[4,5,["H2307"]],[5,7,["H207"]],[7,8,["H7651"]],[8,9,["H3967"]],[9,10,["H6242"]],[10,12,["H2568"]]]},{"k":12061,"v":[[0,2,["H1121"]],[2,4,["H3405"]],[4,5,["H7969"]],[5,6,["H3967"]],[6,7,["H705"]],[7,9,["H2568"]]]},{"k":12062,"v":[[0,2,["H1121"]],[2,4,["H5570"]],[4,5,["H7969"]],[5,6,["H505"]],[6,8,["H8337"]],[8,9,["H3967"]],[9,11,["H7970"]]]},{"k":12063,"v":[[0,2,["H3548"]],[2,4,["H1121"]],[4,6,["H3048"]],[6,9,["H1004"]],[9,11,["H3442"]],[11,12,["H8672"]],[12,13,["H3967"]],[13,14,["H7657"]],[14,16,["H7969"]]]},{"k":12064,"v":[[0,2,["H1121"]],[2,4,["H564"]],[4,6,["H505"]],[6,7,["H2572"]],[7,9,["H8147"]]]},{"k":12065,"v":[[0,2,["H1121"]],[2,4,["H6583"]],[4,6,["H505"]],[6,8,["H3967"]],[8,9,["H705"]],[9,11,["H7651"]]]},{"k":12066,"v":[[0,2,["H1121"]],[2,4,["H2766"]],[4,6,["H505"]],[6,8,["H7651","H6240"]]]},{"k":12067,"v":[[0,2,["H3881"]],[2,4,["H1121"]],[4,6,["H3442"]],[6,8,["H6934"]],[8,11,["H1121"]],[11,13,["H1938"]],[13,14,["H7657"]],[14,16,["H702"]]]},{"k":12068,"v":[[0,2,["H7891"]],[2,4,["H1121"]],[4,6,["H623"]],[6,8,["H3967"]],[8,9,["H6242"]],[9,11,["H8083"]]]},{"k":12069,"v":[[0,2,["H1121"]],[2,5,["H7778"]],[5,7,["H1121"]],[7,9,["H7967"]],[9,11,["H1121"]],[11,13,["H333"]],[13,15,["H1121"]],[15,17,["H2929"]],[17,19,["H1121"]],[19,21,["H6126"]],[21,23,["H1121"]],[23,25,["H2410"]],[25,27,["H1121"]],[27,29,["H7630"]],[29,31,["H3605"]],[31,33,["H3967"]],[33,34,["H7970"]],[34,36,["H8672"]]]},{"k":12070,"v":[[0,2,["H5411"]],[2,4,["H1121"]],[4,6,["H6727"]],[6,8,["H1121"]],[8,10,["H2817"]],[10,12,["H1121"]],[12,14,["H2884"]]]},{"k":12071,"v":[[0,2,["H1121"]],[2,4,["H7026"]],[4,6,["H1121"]],[6,8,["H5517"]],[8,10,["H1121"]],[10,12,["H6303"]]]},{"k":12072,"v":[[0,2,["H1121"]],[2,4,["H3838"]],[4,6,["H1121"]],[6,8,["H2286"]],[8,10,["H1121"]],[10,12,["H6126"]]]},{"k":12073,"v":[[0,2,["H1121"]],[2,4,["H2285"]],[4,6,["H1121"]],[6,8,["H8073"]],[8,10,["H1121"]],[10,12,["H2605"]]]},{"k":12074,"v":[[0,2,["H1121"]],[2,4,["H1435"]],[4,6,["H1121"]],[6,8,["H1515"]],[8,10,["H1121"]],[10,12,["H7211"]]]},{"k":12075,"v":[[0,2,["H1121"]],[2,4,["H7526"]],[4,6,["H1121"]],[6,8,["H5353"]],[8,10,["H1121"]],[10,12,["H1502"]]]},{"k":12076,"v":[[0,2,["H1121"]],[2,4,["H5798"]],[4,6,["H1121"]],[6,8,["H6454"]],[8,10,["H1121"]],[10,12,["H1153"]]]},{"k":12077,"v":[[0,2,["H1121"]],[2,4,["H619"]],[4,6,["H1121"]],[6,8,["H4586"]],[8,10,["H1121"]],[10,12,["H5304"]]]},{"k":12078,"v":[[0,2,["H1121"]],[2,4,["H1227"]],[4,6,["H1121"]],[6,8,["H2709"]],[8,10,["H1121"]],[10,12,["H2744"]]]},{"k":12079,"v":[[0,2,["H1121"]],[2,4,["H1213"]],[4,6,["H1121"]],[6,8,["H4240"]],[8,10,["H1121"]],[10,12,["H2797"]]]},{"k":12080,"v":[[0,2,["H1121"]],[2,4,["H1302"]],[4,6,["H1121"]],[6,8,["H5516"]],[8,10,["H1121"]],[10,12,["H8547"]]]},{"k":12081,"v":[[0,2,["H1121"]],[2,4,["H5335"]],[4,6,["H1121"]],[6,8,["H2412"]]]},{"k":12082,"v":[[0,2,["H1121"]],[2,4,["H8010"]],[4,5,["H5650"]],[5,7,["H1121"]],[7,9,["H5479"]],[9,11,["H1121"]],[11,13,["H5618"]],[13,15,["H1121"]],[15,17,["H6514"]]]},{"k":12083,"v":[[0,2,["H1121"]],[2,4,["H3279"]],[4,6,["H1121"]],[6,8,["H1874"]],[8,10,["H1121"]],[10,12,["H1435"]]]},{"k":12084,"v":[[0,2,["H1121"]],[2,4,["H8203"]],[4,6,["H1121"]],[6,8,["H2411"]],[8,10,["H1121"]],[10,14,["H6380"]],[14,16,["H1121"]],[16,18,["H532"]]]},{"k":12085,"v":[[0,1,["H3605"]],[1,3,["H5411"]],[3,6,["H1121"]],[6,8,["H8010"]],[8,9,["H5650"]],[9,11,["H7969"]],[11,12,["H3967"]],[12,13,["H8673"]],[13,15,["H8147"]]]},{"k":12086,"v":[[0,2,["H428"]],[2,7,["H5927"]],[7,9,["H4480","H8528"]],[9,10,["H8521"]],[10,11,["H3743"]],[11,12,["H135"]],[12,14,["H564"]],[14,17,["H3201"]],[17,18,["H3808"]],[18,19,["H5046"]],[19,21,["H1"]],[21,22,["H1004"]],[22,25,["H2233"]],[25,26,["H518"]],[26,27,["H1992"]],[27,30,["H4480","H3478"]]]},{"k":12087,"v":[[0,2,["H1121"]],[2,4,["H1806"]],[4,6,["H1121"]],[6,8,["H2900"]],[8,10,["H1121"]],[10,12,["H5353"]],[12,13,["H8337"]],[13,14,["H3967"]],[14,15,["H2572"]],[15,17,["H8147"]]]},{"k":12088,"v":[[0,4,["H4480","H1121"]],[4,7,["H3548"]],[7,9,["H1121"]],[9,11,["H2252"]],[11,13,["H1121"]],[13,15,["H6976"]],[15,17,["H1121"]],[17,19,["H1271"]],[19,20,["H834"]],[20,21,["H3947"]],[21,23,["H802"]],[23,26,["H4480","H1323"]],[26,28,["H1271"]],[28,30,["H1569"]],[30,33,["H7121"]],[33,34,["H5921"]],[34,36,["H8034"]]]},{"k":12089,"v":[[0,1,["H428"]],[1,2,["H1245"]],[2,4,["H3791"]],[4,11,["H3187"]],[11,15,["H3808"]],[15,16,["H4672"]],[16,22,["H1351"]],[22,23,["H4480"]],[23,25,["H3550"]]]},{"k":12090,"v":[[0,3,["H8660"]],[3,4,["H559"]],[4,7,["H834"]],[7,10,["H3808"]],[10,11,["H398"]],[11,16,["H4480","H6944","H6944"]],[16,17,["H5704"]],[17,20,["H5975"]],[20,22,["H3548"]],[22,24,["H224"]],[24,27,["H8550"]]]},{"k":12091,"v":[[0,2,["H3605"]],[2,3,["H6951"]],[3,4,["H259"]],[4,6,["H702","H7239"]],[6,9,["H505"]],[9,10,["H7969"]],[10,11,["H3967"]],[11,13,["H8346"]]]},{"k":12092,"v":[[0,1,["H4480","H905"]],[1,3,["H5650"]],[3,6,["H519"]],[6,8,["H428"]],[8,11,["H7651"]],[11,12,["H505"]],[12,13,["H7969"]],[13,14,["H3967"]],[14,15,["H7970"]],[15,17,["H7651"]],[17,24,["H3967"]],[24,26,["H7891"]],[26,29,["H7891"]]]},{"k":12093,"v":[[0,2,["H5483"]],[2,4,["H7651"]],[4,5,["H3967"]],[5,6,["H7970"]],[6,8,["H8337"]],[8,10,["H6505"]],[10,12,["H3967"]],[12,13,["H705"]],[13,15,["H2568"]]]},{"k":12094,"v":[[0,2,["H1581"]],[2,3,["H702"]],[3,4,["H3967"]],[4,5,["H7970"]],[5,7,["H2568"]],[7,9,["H2543"]],[9,10,["H8337"]],[10,11,["H505"]],[11,12,["H7651"]],[12,13,["H3967"]],[13,15,["H6242"]]]},{"k":12095,"v":[[0,5,["H4480","H7218"]],[5,8,["H1"]],[8,11,["H935"]],[11,14,["H1004"]],[14,17,["H3068"]],[17,18,["H834"]],[18,21,["H3389"]],[21,23,["H5068"]],[23,26,["H1004"]],[26,28,["H430"]],[28,32,["H5975"]],[32,33,["H5921"]],[33,35,["H4349"]]]},{"k":12096,"v":[[0,2,["H5414"]],[2,5,["H3581"]],[5,8,["H214"]],[8,11,["H4399"]],[11,12,["H8337","H7239"]],[12,15,["H505"]],[15,16,["H1871"]],[16,18,["H2091"]],[18,20,["H2568"]],[20,21,["H505"]],[21,22,["H4488"]],[22,24,["H3701"]],[24,27,["H3967"]],[27,28,["H3548"]],[28,29,["H3801"]]]},{"k":12097,"v":[[0,3,["H3548"]],[3,6,["H3881"]],[6,9,["H4480"]],[9,11,["H5971"]],[11,14,["H7891"]],[14,17,["H7778"]],[17,20,["H5411"]],[20,21,["H3427"]],[21,24,["H5892"]],[24,26,["H3605"]],[26,27,["H3478"]],[27,30,["H5892"]]]},{"k":12098,"v":[[0,4,["H7637"]],[4,5,["H2320"]],[5,7,["H5060"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,16,["H5892"]],[16,18,["H5971"]],[18,21,["H622"]],[21,23,["H259"]],[23,24,["H376"]],[24,25,["H413"]],[25,26,["H3389"]]]},{"k":12099,"v":[[0,3,["H6965"]],[3,4,["H3442"]],[4,6,["H1121"]],[6,8,["H3136"]],[8,11,["H251"]],[11,13,["H3548"]],[13,15,["H2216"]],[15,17,["H1121"]],[17,19,["H7597"]],[19,22,["H251"]],[22,24,["H1129","(H853)"]],[24,26,["H4196"]],[26,29,["H430"]],[29,31,["H3478"]],[31,33,["H5927"]],[33,35,["H5930"]],[35,36,["H5921"]],[36,40,["H3789"]],[40,43,["H8451"]],[43,45,["H4872"]],[45,47,["H376"]],[47,49,["H430"]]]},{"k":12100,"v":[[0,3,["H3559"]],[3,5,["H4196"]],[5,6,["H5921"]],[6,8,["H4350"]],[8,9,["H3588"]],[9,10,["H367"]],[10,12,["H5921"]],[12,17,["H4480","H5971"]],[17,20,["H776"]],[20,23,["H5927"]],[23,25,["H5930"]],[25,26,["H5921"]],[26,29,["H3068"]],[29,32,["H5930"]],[32,33,["H1242"]],[33,35,["H6153"]]]},{"k":12101,"v":[[0,2,["H6213"]],[2,3,["(H853)"]],[3,5,["H2282"]],[5,7,["H5521"]],[7,11,["H3789"]],[11,15,["H3117","H3117"]],[15,17,["H5930"]],[17,19,["H4557"]],[19,23,["H4941"]],[23,26,["H1697"]],[26,29,["H3117","H3117"]],[29,30,[]]]},{"k":12102,"v":[[0,2,["H310"]],[2,5,["H8548"]],[5,7,["H5930"]],[7,12,["H2320"]],[12,15,["H3605"]],[15,18,["H4150"]],[18,21,["H3068"]],[21,24,["H6942"]],[24,28,["H3605"]],[28,31,["H5068"]],[31,34,["H5071"]],[34,37,["H3068"]]]},{"k":12103,"v":[[0,4,["H4480","H3117","H259"]],[4,7,["H7637"]],[7,8,["H2320"]],[8,9,["H2490"]],[9,12,["H5927"]],[12,14,["H5930"]],[14,17,["H3068"]],[17,20,["H3245"]],[20,23,["H1964"]],[23,26,["H3068"]],[26,28,["H3808"]],[28,30,[]]]},{"k":12104,"v":[[0,2,["H5414"]],[2,3,["H3701"]],[3,7,["H2672"]],[7,11,["H2796"]],[11,13,["H3978"]],[13,15,["H4960"]],[15,17,["H8081"]],[17,21,["H6722"]],[21,26,["H6876"]],[26,28,["H935"]],[28,29,["H730"]],[29,30,["H6086"]],[30,31,["H4480"]],[31,32,["H3844"]],[32,33,["H413"]],[33,35,["H3220"]],[35,37,["H3305"]],[37,41,["H7558"]],[41,46,["H3566"]],[46,47,["H4428"]],[47,49,["H6539"]]]},{"k":12105,"v":[[0,4,["H8145"]],[4,5,["H8141"]],[5,8,["H935"]],[8,9,["H413"]],[9,11,["H1004"]],[11,13,["H430"]],[13,15,["H3389"]],[15,18,["H8145"]],[18,19,["H2320"]],[19,20,["H2490"]],[20,21,["H2216"]],[21,23,["H1121"]],[23,25,["H7597"]],[25,27,["H3442"]],[27,29,["H1121"]],[29,31,["H3136"]],[31,34,["H7605"]],[34,37,["H251"]],[37,39,["H3548"]],[39,42,["H3881"]],[42,44,["H3605"]],[44,48,["H935"]],[48,52,["H4480","H7628"]],[52,54,["H3389"]],[54,56,["H5975","(H853)"]],[56,58,["H3881"]],[58,62,["H4480","H1121","H6242","H8141"]],[62,64,["H4605"]],[64,66,["H5329"]],[66,67,["H5921"]],[67,69,["H4399"]],[69,72,["H1004"]],[72,75,["H3068"]]]},{"k":12106,"v":[[0,2,["H5975"]],[2,3,["H3442"]],[3,6,["H1121"]],[6,9,["H251"]],[9,10,["H6934"]],[10,13,["H1121"]],[13,15,["H1121"]],[15,17,["H3063"]],[17,18,["H259"]],[18,20,["H5329"]],[20,21,["H5921"]],[21,23,["H6213","H4399"]],[23,26,["H1004"]],[26,28,["H430"]],[28,30,["H1121"]],[30,32,["H2582"]],[32,35,["H1121"]],[35,38,["H251"]],[38,40,["H3881"]]]},{"k":12107,"v":[[0,4,["H1129"]],[4,7,["H3245"]],[7,8,["(H853)"]],[8,10,["H1964"]],[10,13,["H3068"]],[13,15,["H5975"]],[15,17,["H3548"]],[17,20,["H3847"]],[20,22,["H2689"]],[22,25,["H3881"]],[25,27,["H1121"]],[27,29,["H623"]],[29,31,["H4700"]],[31,33,["H1984","(H853)"]],[33,35,["H3068"]],[35,36,["H5921"]],[36,38,["H3027"]],[38,40,["H1732"]],[40,41,["H4428"]],[41,43,["H3478"]]]},{"k":12108,"v":[[0,6,["H6030"]],[6,8,["H1984"]],[8,11,["H3034"]],[11,14,["H3068"]],[14,15,["H3588"]],[15,18,["H2896"]],[18,19,["H3588"]],[19,21,["H2617"]],[21,24,["H5769"]],[24,25,["H5921"]],[25,26,["H3478"]],[26,28,["H3605"]],[28,30,["H5971"]],[30,31,["H7321"]],[31,34,["H1419"]],[34,35,["H8643"]],[35,38,["H1984"]],[38,40,["H3068"]],[40,41,["H5921"]],[41,51,["H3245","H1004","H3068"]]]},{"k":12109,"v":[[0,2,["H7227"]],[2,5,["H4480","H3548"]],[5,7,["H3881"]],[7,9,["H7218"]],[9,12,["H1"]],[12,16,["H2205"]],[16,17,["H834"]],[17,19,["H7200","(H853)"]],[19,21,["H7223"]],[21,22,["H1004"]],[22,30,["H3245","H2088","H1004"]],[30,33,["H5869"]],[33,34,["H1058"]],[34,37,["H1419"]],[37,38,["H6963"]],[38,40,["H7227"]],[40,42,["H8643","H7311","H6963"]],[42,44,["H8057"]]]},{"k":12110,"v":[[0,4,["H5971"]],[4,6,["H369"]],[6,7,["H5234"]],[7,9,["H6963"]],[9,12,["H8643"]],[12,14,["H8057"]],[14,17,["H6963"]],[17,20,["H1065"]],[20,23,["H5971"]],[23,24,["H3588"]],[24,26,["H5971"]],[26,27,["H7321"]],[27,30,["H1419"]],[30,31,["H8643"]],[31,34,["H6963"]],[34,36,["H8085"]],[36,38,["H5704","H4480","H7350"]]]},{"k":12111,"v":[[0,4,["H6862"]],[4,6,["H3063"]],[6,8,["H1144"]],[8,9,["H8085"]],[9,10,["H3588"]],[10,12,["H1121"]],[12,15,["H1473"]],[15,16,["H1129"]],[16,18,["H1964"]],[18,21,["H3068"]],[21,22,["H430"]],[22,24,["H3478"]]]},{"k":12112,"v":[[0,3,["H5066"]],[3,4,["H413"]],[4,5,["H2216"]],[5,7,["H413"]],[7,9,["H7218"]],[9,12,["H1"]],[12,14,["H559"]],[14,19,["H1129"]],[19,20,["H5973"]],[20,22,["H3588"]],[22,24,["H1875"]],[24,26,["H430"]],[26,31,["H587"]],[31,33,["H2076"]],[33,38,["H4480","H3117"]],[38,40,["H634"]],[40,41,["H4428"]],[41,43,["H804"]],[43,47,["H5927","(H853)"]],[47,48,["H6311"]]]},{"k":12113,"v":[[0,2,["H2216"]],[2,4,["H3442"]],[4,7,["H7605"]],[7,10,["H7218"]],[10,13,["H1"]],[13,15,["H3478"]],[15,16,["H559"]],[16,21,["H3808"]],[21,27,["H1129"]],[27,29,["H1004"]],[29,32,["H430"]],[32,33,["H3588"]],[33,35,["H587"]],[35,36,["H3162"]],[36,38,["H1129"]],[38,41,["H3068"]],[41,42,["H430"]],[42,44,["H3478"]],[44,45,["H834"]],[45,46,["H4428"]],[46,47,["H3566"]],[47,49,["H4428"]],[49,51,["H6539"]],[51,53,["H6680"]],[53,54,[]]]},{"k":12114,"v":[[0,3,["H5971"]],[3,6,["H776"]],[6,7,["H7503"]],[7,9,["H3027"]],[9,12,["H5971"]],[12,14,["H3063"]],[14,16,["H1089"]],[16,19,["H1129"]]]},{"k":12115,"v":[[0,2,["H7936"]],[2,3,["H3289"]],[3,4,["H5921"]],[4,7,["H6565"]],[7,9,["H6098"]],[9,10,["H3605"]],[10,12,["H3117"]],[12,14,["H3566"]],[14,15,["H4428"]],[15,17,["H6539"]],[17,19,["H5704"]],[19,21,["H4438"]],[21,23,["H1867"]],[23,24,["H4428"]],[24,26,["H6539"]]]},{"k":12116,"v":[[0,4,["H4438"]],[4,6,["H325"]],[6,9,["H8462"]],[9,12,["H4438"]],[12,13,["H3789"]],[13,18,["H7855"]],[18,19,["H5921"]],[19,21,["H3427"]],[21,23,["H3063"]],[23,25,["H3389"]]]},{"k":12117,"v":[[0,4,["H3117"]],[4,6,["H783"]],[6,7,["H3789"]],[7,8,["H1312"]],[8,9,["H4990"]],[9,10,["H2870"]],[10,13,["H7605"]],[13,16,["H3674"]],[16,17,["H5921"]],[17,18,["H783"]],[18,19,["H4428"]],[19,21,["H6539"]],[21,24,["H3791"]],[24,27,["H5406"]],[27,29,["H3789"]],[29,33,["H762"]],[33,35,["H8638"]],[35,39,["H762"]]]},{"k":12118,"v":[[0,1,["H7348"]],[1,3,["H2942","H1169"]],[3,5,["H8124"]],[5,7,["H5613"]],[7,8,["H3790"]],[8,9,["H2298"]],[9,10,["H104"]],[10,11,["H5922"]],[11,12,["H3390"]],[12,14,["H783"]],[14,16,["H4430"]],[16,19,["H3660"]]]},{"k":12119,"v":[[0,1,["H116"]],[1,3,["H7348"]],[3,5,["H2942","H1169"]],[5,7,["H8124"]],[7,9,["H5613"]],[9,12,["H7606"]],[12,15,["H3675"]],[15,17,["H1784"]],[17,19,["H671"]],[19,21,["H2967"]],[21,23,["H670"]],[23,25,["H756"]],[25,27,["H896"]],[27,29,["H7801"]],[29,31,["H1723"]],[31,34,["H5962"]]]},{"k":12120,"v":[[0,3,["H7606"]],[3,6,["H524"]],[6,7,["H1768"]],[7,9,["H7229"]],[9,11,["H3358"]],[11,12,["H620"]],[12,14,["H1541"]],[14,16,["H3488"]],[16,19,["H7149"]],[19,20,["H1768"]],[20,21,["H8115"]],[21,24,["H7606"]],[24,29,["H5675"]],[29,31,["H5103"]],[31,36,["H3706"]]]},{"k":12121,"v":[[0,1,["H1836"]],[1,4,["H6573"]],[4,7,["H104"]],[7,8,["H1768"]],[8,10,["H7972"]],[10,11,["H5922"]],[11,14,["H5922"]],[14,15,["H783"]],[15,17,["H4430"]],[17,19,["H5649"]],[19,21,["H606"]],[21,24,["H5675"]],[24,26,["H5103"]],[26,31,["H3706"]]]},{"k":12122,"v":[[0,1,["H1934"]],[1,3,["H3046"]],[3,6,["H4430"]],[6,9,["H3062"]],[9,10,["H1768"]],[10,12,["H5559"]],[12,13,["H4481","H3890"]],[13,15,["H5922"]],[15,18,["H858"]],[18,20,["H3390"]],[20,21,["H1124"]],[21,23,["H4779"]],[23,26,["H873"]],[26,27,["H7149"]],[27,31,["H3635"]],[31,33,["H7792"]],[33,36,["H2338"]],[36,38,["H787"]]]},{"k":12123,"v":[[0,1,["H1934"]],[1,3,["H3046"]],[3,4,["H3705"]],[4,7,["H4430"]],[7,8,["H1768"]],[8,9,["H2006"]],[9,10,["H1791"]],[10,11,["H7149"]],[11,13,["H1124"]],[13,16,["H7792"]],[16,18,["H3635"]],[18,23,["H3809"]],[23,24,["H5415"]],[24,25,["H4061"]],[25,26,["H1093"]],[26,28,["H1983"]],[28,33,["H5142"]],[33,35,["H674"]],[35,38,["H4430"]]]},{"k":12124,"v":[[0,1,["H3705"]],[1,2,["H3606","H6903","H1768"]],[2,5,["H4415","H4416"]],[5,9,["H1965"]],[9,13,["H3809"]],[13,14,["H749"]],[14,18,["H2370"]],[18,20,["H4430"]],[20,21,["H6173"]],[21,22,["H5922","H1836"]],[22,25,["H7972"]],[25,27,["H3046"]],[27,29,["H4430"]]]},{"k":12125,"v":[[0,1,["H1768"]],[1,5,["H1240"]],[5,8,["H5609"]],[8,11,["H1799"]],[11,12,["H1768"]],[12,14,["H2"]],[14,18,["H7912"]],[18,21,["H5609"]],[21,24,["H1799"]],[24,26,["H3046"]],[26,27,["H1768"]],[27,28,["H1791"]],[28,29,["H7149"]],[29,32,["H4779"]],[32,33,["H7149"]],[33,35,["H5142"]],[35,37,["H4430"]],[37,39,["H4083"]],[39,44,["H5648"]],[44,45,["H849"]],[45,48,["H1459"]],[48,49,["H4481"]],[49,50,["H5957"]],[50,51,["H3118"]],[51,52,["H5922"]],[52,54,["H1836"]],[54,56,["H1791"]],[56,57,["H7149"]],[57,58,["H2718"]]]},{"k":12126,"v":[[0,1,["H586"]],[1,2,["H3046"]],[2,4,["H4430"]],[4,5,["H1768"]],[5,6,["H2006"]],[6,7,["H1791"]],[7,8,["H7149"]],[8,10,["H1124"]],[10,14,["H7792"]],[14,17,["H3635"]],[17,19,["H1836"]],[19,20,["H6903"]],[20,23,["H383"]],[23,24,["H3809"]],[24,25,["H2508"]],[25,28,["H5675"]],[28,30,["H5103"]]]},{"k":12127,"v":[[0,2,["H7972"]],[2,4,["H4430"]],[4,6,["H6600"]],[6,7,["H5922"]],[7,8,["H7348"]],[8,10,["H1169","H2942"]],[10,13,["H8124"]],[13,15,["H5613"]],[15,19,["H7606"]],[19,22,["H3675"]],[22,23,["H1768"]],[23,24,["H3488"]],[24,26,["H8115"]],[26,30,["H7606"]],[30,31,["H5675"]],[31,33,["H5103"]],[33,34,["H8001"]],[34,39,["H3706"]]]},{"k":12128,"v":[[0,2,["H5407"]],[2,3,["H1768"]],[3,5,["H7972"]],[5,6,["H5922"]],[6,10,["H6568"]],[10,11,["H7123"]],[11,12,["H6925"]],[12,13,[]]]},{"k":12129,"v":[[0,3,["H7761","H2942"]],[3,8,["H1240"]],[8,12,["H7912"]],[12,13,["H1768"]],[13,14,["H1791"]],[14,15,["H7149"]],[15,16,["H4481"]],[16,17,["H5957"]],[17,18,["H3118"]],[18,21,["H5376"]],[21,22,["H5922"]],[22,23,["H4430"]],[23,26,["H4776"]],[26,28,["H849"]],[28,31,["H5648"]],[31,32,[]]]},{"k":12130,"v":[[0,3,["H1934"]],[3,4,["H8624"]],[4,5,["H4430"]],[5,7,["H5922"]],[7,8,["H3390"]],[8,11,["H7990"]],[11,13,["H3606"]],[13,15,["H5675"]],[15,17,["H5103"]],[17,19,["H4061"]],[19,20,["H1093"]],[20,22,["H1983"]],[22,24,["H3052"]],[24,26,[]]]},{"k":12131,"v":[[0,1,["H7761"]],[1,3,["H3705"]],[3,4,["H2942"]],[4,7,["H479"]],[7,8,["H1400"]],[8,10,["H989"]],[10,13,["H1791"]],[13,14,["H7149"]],[14,16,["H3809"]],[16,17,["H1124"]],[17,18,["H5705"]],[18,20,["H2941"]],[20,23,["H7761"]],[23,24,["H4481"]],[24,25,[]]]},{"k":12132,"v":[[0,2,["H2095","H1934"]],[2,7,["H7960"]],[7,9,["H5648"]],[9,10,["(H5922)","H1836"]],[10,11,["H4101"]],[11,13,["H2257"]],[13,14,["H7680"]],[14,17,["H5142"]],[17,20,["H4430"]]]},{"k":12133,"v":[[0,1,["H116"]],[1,2,["H4481","H1768"]],[2,4,["H6573"]],[4,6,["H4430"]],[6,7,["H783"]],[7,8,["H5407"]],[8,10,["H7123"]],[10,11,["H6925"]],[11,12,["H7348"]],[12,14,["H8124"]],[14,16,["H5613"]],[16,19,["H3675"]],[19,22,["H236"]],[22,24,["H924"]],[24,26,["H3390"]],[26,27,["H5922"]],[27,29,["H3062"]],[29,32,["H1994"]],[32,34,["H989"]],[34,36,["H153"]],[36,38,["H2429"]]]},{"k":12134,"v":[[0,1,["H116"]],[1,2,["H989"]],[2,4,["H5673"]],[4,7,["H1005"]],[7,9,["H426"]],[9,10,["H1768"]],[10,13,["H3390"]],[13,14,["H1934"]],[14,16,["H989"]],[16,17,["H5705"]],[17,19,["H8648"]],[19,20,["H8140"]],[20,23,["H4437"]],[23,25,["H1868"]],[25,26,["H4430"]],[26,28,["H6540"]]]},{"k":12135,"v":[[0,3,["H5029"]],[3,4,["H2292"]],[4,6,["H5029"]],[6,8,["H2148"]],[8,10,["H1247"]],[10,12,["H5714"]],[12,13,["H5013"]],[13,14,["H5922"]],[14,16,["H3062"]],[16,17,["H1768"]],[17,20,["H3061"]],[20,22,["H3390"]],[22,25,["H8036"]],[25,28,["H426"]],[28,30,["H3479"]],[30,32,["H5922"]],[32,33,[]]]},{"k":12136,"v":[[0,1,["H116"]],[1,3,["H6966"]],[3,4,["H2217"]],[4,6,["H1247"]],[6,8,["H7598"]],[8,10,["H3443"]],[10,12,["H1247"]],[12,14,["H3136"]],[14,16,["H8271"]],[16,18,["H1124"]],[18,20,["H1005"]],[20,22,["H426"]],[22,23,["H1768"]],[23,26,["H3390"]],[26,28,["H5974"]],[28,32,["H5029"]],[32,33,["H1768"]],[33,34,["H426"]],[34,35,["H5583"]],[35,36,[]]]},{"k":12137,"v":[[0,4,["H2166"]],[4,5,["H858"]],[5,6,["H5922"]],[6,8,["H8674"]],[8,9,["H6347"]],[9,12,["H5675"]],[12,14,["H5103"]],[14,16,["H8370"]],[16,19,["H3675"]],[19,21,["H560"]],[21,22,["H3652"]],[22,25,["H4479"]],[25,27,["H7761","H2942"]],[27,30,["H1124"]],[30,31,["H1836"]],[31,32,["H1005"]],[32,36,["H3635"]],[36,37,["H1836"]],[37,38,["H846"]]]},{"k":12138,"v":[[0,1,["H116"]],[1,2,["H560"]],[2,8,["H3660"]],[8,9,["H4479"]],[9,12,["H8036"]],[12,15,["H1400"]],[15,16,["H1768"]],[16,17,["H1124"]],[17,18,["H1836"]],[18,19,["H1147"]]]},{"k":12139,"v":[[0,3,["H5870"]],[3,6,["H426"]],[6,7,["H1934"]],[7,8,["H5922"]],[8,10,["H7868"]],[10,13,["H3062"]],[13,17,["H3809"]],[17,19,["H1994"]],[19,21,["H989"]],[21,22,["H5705"]],[22,24,["H2941"]],[24,25,["H1946"]],[25,27,["H1868"]],[27,29,["H116"]],[29,32,["H8421"]],[32,34,["H5407"]],[34,35,["H5922"]],[35,36,["H1836"]],[36,37,[]]]},{"k":12140,"v":[[0,2,["H6573"]],[2,5,["H104"]],[5,6,["H1768"]],[6,7,["H8674"]],[7,8,["H6347"]],[8,11,["H5675"]],[11,13,["H5103"]],[13,15,["H8370"]],[15,18,["H3675"]],[18,20,["H671"]],[20,21,["H1768"]],[21,25,["H5675"]],[25,27,["H5103"]],[27,28,["H7972"]],[28,29,["H5922"]],[29,30,["H1868"]],[30,32,["H4430"]]]},{"k":12141,"v":[[0,2,["H7972"]],[2,4,["H6600"]],[4,5,["H5922"]],[5,7,["H1459"]],[7,9,["H3790"]],[9,10,["H1836"]],[10,12,["H1868"]],[12,14,["H4430"]],[14,15,["H3606"]],[15,16,["H8001"]]]},{"k":12142,"v":[[0,1,["H1934"]],[1,3,["H3046"]],[3,6,["H4430"]],[6,7,["H1768"]],[7,9,["H236"]],[9,12,["H4083"]],[12,14,["H3061"]],[14,17,["H1005"]],[17,20,["H7229"]],[20,21,["H426"]],[21,22,["H1932"]],[22,24,["H1124"]],[24,26,["H1560"]],[26,27,["H69"]],[27,29,["H636"]],[29,31,["H7761"]],[31,34,["H3797"]],[34,36,["H1791"]],[36,37,["H5673"]],[37,38,["H5648"]],[38,40,["H629"]],[40,42,["H6744"]],[42,45,["H3028"]]]},{"k":12143,"v":[[0,1,["H116"]],[1,2,["H7593"]],[2,4,["H479"]],[4,5,["H7868"]],[5,7,["H560"]],[7,10,["H3660"]],[10,11,["H4479"]],[11,12,["H7761","H2942"]],[12,15,["H1124"]],[15,16,["H1836"]],[16,17,["H1005"]],[17,21,["H3635"]],[21,22,["H1836"]],[22,23,["H846"]]]},{"k":12144,"v":[[0,2,["H7593"]],[2,4,["H8036"]],[4,5,["H638"]],[5,7,["H3046"]],[7,9,["H1768"]],[9,12,["H3790"]],[12,14,["H8036"]],[14,17,["H1400"]],[17,18,["H1768"]],[18,21,["H7217"]],[21,23,[]]]},{"k":12145,"v":[[0,2,["H3660"]],[2,4,["H8421"]],[4,6,["H6600"]],[6,7,["H560"]],[7,8,["H586"]],[8,11,["H5649"]],[11,12,["H1768"]],[12,14,["H426"]],[14,16,["H8065"]],[16,18,["H772"]],[18,20,["H1124"]],[20,22,["H1005"]],[22,23,["H1768"]],[23,24,["H1934"]],[24,25,["H1124"]],[25,26,["H1836"]],[26,27,["H7690"]],[27,28,["H8140"]],[28,29,["H4481","H6928"]],[29,32,["H7229"]],[32,33,["H4430"]],[33,35,["H3479"]],[35,36,["H1124"]],[36,39,["H3635"]]]},{"k":12146,"v":[[0,1,["H3861"]],[1,2,["H4481"]],[2,3,["H1768"]],[3,5,["H2"]],[5,13,["H7265","H426","H8065"]],[13,15,["H3052"]],[15,16,["H1994"]],[16,19,["H3028"]],[19,21,["H5020"]],[21,23,["H4430"]],[23,25,["H895"]],[25,27,["H3679"]],[27,29,["H5642"]],[29,30,["H1836"]],[30,31,["H1005"]],[31,36,["H1541","H5972"]],[36,38,["H895"]]]},{"k":12147,"v":[[0,1,["H1297"]],[1,4,["H2298"]],[4,5,["H8140"]],[5,7,["H3567"]],[7,9,["H4430"]],[9,10,["H1768"]],[10,11,["H895"]],[11,14,["H4430"]],[14,15,["H3567"]],[15,16,["H7761"]],[16,18,["H2942"]],[18,20,["H1124"]],[20,21,["H1836"]],[21,22,["H1005"]],[22,24,["H426"]]]},{"k":12148,"v":[[0,3,["H3984"]],[3,4,["H638"]],[4,5,["H1768"]],[5,6,["H1722"]],[6,8,["H3702"]],[8,9,["H1768"]],[9,11,["H1005"]],[11,13,["H426"]],[13,14,["H1768"]],[14,15,["H5020"]],[15,16,["H5312"]],[16,18,["H4481"]],[18,20,["H1965"]],[20,21,["H1768"]],[21,24,["H3390"]],[24,26,["H2987"]],[26,27,["H1994"]],[27,30,["H1965"]],[30,31,["H1768"]],[31,32,["H895"]],[32,33,["H1994"]],[33,35,["H3567"]],[35,37,["H4430"]],[37,38,["H5312"]],[38,40,["H4481"]],[40,42,["H1965"]],[42,43,["H1768"]],[43,44,["H895"]],[44,48,["H3052"]],[48,52,["H8036"]],[52,54,["H8340"]],[54,55,["H1768"]],[55,58,["H7761"]],[58,59,["H6347"]]]},{"k":12149,"v":[[0,2,["H560"]],[2,5,["H5376"]],[5,6,["H429"]],[6,7,["H3984"]],[7,8,["H236"]],[8,9,["H5182"]],[9,10,["H1994"]],[10,13,["H1965"]],[13,14,["H1768"]],[14,17,["H3390"]],[17,21,["H1005"]],[21,23,["H426"]],[23,25,["H1124"]],[25,26,["H5922"]],[26,28,["H870"]]]},{"k":12150,"v":[[0,1,["H116"]],[1,2,["H858"]],[2,4,["H1791"]],[4,5,["H8340"]],[5,7,["H3052"]],[7,9,["H787"]],[9,10,["H1768"]],[10,12,["H1005"]],[12,14,["H426"]],[14,15,["H1768"]],[15,18,["H3390"]],[18,20,["H4481"]],[20,22,["H116"]],[22,24,["H5705"]],[24,25,["H3705"]],[25,30,["H1124"]],[30,35,["H3809"]],[35,36,["H8000"]]]},{"k":12151,"v":[[0,1,["H3705"]],[1,3,["H2006"]],[3,6,["H2869"]],[6,7,["H5922"]],[7,9,["H4430"]],[9,14,["H1240"]],[14,17,["H4430"]],[17,18,["H1596"]],[18,19,["H1005"]],[19,20,["H1768"]],[20,22,["H8536"]],[22,24,["H895"]],[24,25,["H2006"]],[25,27,["H383"]],[27,29,["H1768"]],[29,31,["H2942"]],[31,33,["H7761"]],[33,34,["H4481"]],[34,35,["H3567"]],[35,37,["H4430"]],[37,39,["H1124"]],[39,40,["H1791"]],[40,41,["H1005"]],[41,43,["H426"]],[43,45,["H3390"]],[45,49,["H4430"]],[49,50,["H7972"]],[50,52,["H7470"]],[52,53,["H5922"]],[53,55,["H5922"]],[55,57,["H1836"]]]},{"k":12152,"v":[[0,1,["H116"]],[1,2,["H1868"]],[2,4,["H4430"]],[4,5,["H7761"]],[5,7,["H2942"]],[7,11,["H1240"]],[11,14,["H1005"]],[14,17,["H5609"]],[17,18,["H1768","H8536"]],[18,20,["H1596"]],[20,23,["H5182"]],[23,25,["H895"]]]},{"k":12153,"v":[[0,4,["H7912"]],[4,6,["H307"]],[6,9,["H1001"]],[9,10,["H1768"]],[10,14,["H4083"]],[14,17,["H4076"]],[17,18,["H2298"]],[18,19,["H4040"]],[19,21,["H1459"]],[21,24,["H1799"]],[24,25,["H3652"]],[25,26,["H3790"]]]},{"k":12154,"v":[[0,3,["H2298"]],[3,4,["H8140"]],[4,6,["H3567"]],[6,8,["H4430"]],[8,11,["H3567"]],[11,13,["H4430"]],[13,14,["H7761"]],[14,16,["H2942"]],[16,19,["H1005"]],[19,21,["H426"]],[21,23,["H3390"]],[23,26,["H1005"]],[26,28,["H1124"]],[28,30,["H870"]],[30,31,["H1768"]],[31,33,["H1684"]],[33,34,["H1685"]],[34,38,["H787"]],[38,42,["H5446"]],[42,44,["H7314"]],[44,46,["H8361"]],[46,47,["H521"]],[47,50,["H6613"]],[50,52,["H8361"]],[52,53,["H521"]]]},{"k":12155,"v":[[0,2,["H8532"]],[2,3,["H5073"]],[3,4,["H1768"]],[4,5,["H1560"]],[5,6,["H69"]],[6,9,["H5073"]],[9,10,["H1768"]],[10,11,["H2323"]],[11,12,["H636"]],[12,16,["H5313"]],[16,18,["H3052"]],[18,20,["H4481"]],[20,22,["H4430"]],[22,23,["H1005"]]]},{"k":12156,"v":[[0,2,["H638"]],[2,5,["H1722"]],[5,7,["H3702"]],[7,8,["H3984"]],[8,11,["H1005"]],[11,13,["H426"]],[13,14,["H1768"]],[14,15,["H5020"]],[15,17,["H5312"]],[17,19,["H4481"]],[19,21,["H1965"]],[21,22,["H1768"]],[22,25,["H3390"]],[25,27,["H2987"]],[27,29,["H895"]],[29,31,["H8421"]],[31,34,["H1946"]],[34,37,["H1965"]],[37,38,["H1768"]],[38,41,["H3390"]],[41,46,["H870"]],[46,48,["H5182"]],[48,52,["H1005"]],[52,54,["H426"]]]},{"k":12157,"v":[[0,1,["H3705"]],[1,3,["H8674"]],[3,4,["H6347"]],[4,5,["H5675"]],[5,7,["H5103"]],[7,8,["H8370"]],[8,11,["H3675"]],[11,13,["H671"]],[13,14,["H1768"]],[14,16,["H5675"]],[16,18,["H5103"]],[18,19,["H1934"]],[19,21,["H7352"]],[21,22,["H4481"]],[22,23,["H8536"]]]},{"k":12158,"v":[[0,3,["H5673"]],[3,5,["H1791"]],[5,6,["H1005"]],[6,8,["H426"]],[8,9,["H7662"]],[9,12,["H6347"]],[12,15,["H3062"]],[15,18,["H7868"]],[18,21,["H3062"]],[21,22,["H1124"]],[22,23,["H1791"]],[23,24,["H1005"]],[24,26,["H426"]],[26,27,["H5922"]],[27,29,["H870"]]]},{"k":12159,"v":[[0,3,["H7761"]],[3,5,["H2942"]],[5,6,["H3964","H1768"]],[6,9,["H5648"]],[9,10,["H5974"]],[10,12,["H7868"]],[12,14,["H479"]],[14,15,["H3062"]],[15,18,["H1124"]],[18,20,["H1791"]],[20,21,["H1005"]],[21,23,["H426"]],[23,28,["H4481","H5232","H4430"]],[28,30,["H1768"]],[30,32,["H4061"]],[32,33,["H5675"]],[33,35,["H5103"]],[35,36,["H629"]],[36,37,["H5313"]],[37,38,["H1934"]],[38,39,["H3052"]],[39,41,["H479"]],[41,42,["H1400"]],[42,43,["H1768"]],[43,46,["H3809"]],[46,47,["H989"]]]},{"k":12160,"v":[[0,2,["H4100"]],[2,7,["H2818"]],[7,9,["H1123"]],[9,10,["H8450"]],[10,12,["H1798"]],[12,14,["H563"]],[14,18,["H5928"]],[18,21,["H426"]],[21,23,["H8065"]],[23,24,["H2591"]],[24,25,["H4416"]],[25,26,["H2562"]],[26,28,["H4887"]],[28,32,["H3983"]],[32,35,["H3549"]],[35,36,["H1768"]],[36,39,["H3390"]],[39,42,["H1934"]],[42,43,["H3052"]],[43,45,["H3118"]],[45,47,["H3118"]],[47,48,["H1768","H3809"]],[48,49,["H7960"]]]},{"k":12161,"v":[[0,1,["H1768"]],[1,3,["H1934"]],[3,4,["H7127"]],[4,8,["H5208"]],[8,11,["H426"]],[11,13,["H8065"]],[13,15,["H6739"]],[15,18,["H2417"]],[18,21,["H4430"]],[21,25,["H1123"]]]},{"k":12162,"v":[[0,4,["H7761"]],[4,6,["H2942"]],[6,7,["H1768"]],[7,8,["H3606","H606","H1768"]],[8,10,["H8133"]],[10,11,["H1836"]],[11,12,["H6600"]],[12,14,["H636"]],[14,17,["H5256"]],[17,18,["H4481"]],[18,20,["H1005"]],[20,24,["H2211"]],[24,28,["H4223"]],[28,29,["H5922"]],[29,33,["H1005"]],[33,35,["H5648"]],[35,37,["H5122"]],[37,38,["H5922"]],[38,39,["H1836"]]]},{"k":12163,"v":[[0,3,["H426"]],[3,4,["H1768"]],[4,8,["H8036"]],[8,10,["H7932"]],[10,11,["H8536"]],[11,12,["H4049"]],[12,13,["H3606"]],[13,14,["H4430"]],[14,16,["H5972"]],[16,17,["H1768"]],[17,19,["H7972"]],[19,22,["H3028"]],[22,24,["H8133"]],[24,27,["H2255"]],[27,28,["H1791"]],[28,29,["H1005"]],[29,31,["H426"]],[31,32,["H1768"]],[32,35,["H3390"]],[35,36,["H576"]],[36,37,["H1868"]],[37,39,["H7761"]],[39,41,["H2942"]],[41,45,["H5648"]],[45,47,["H629"]]]},{"k":12164,"v":[[0,1,["H116"]],[1,2,["H8674"]],[2,3,["H6347"]],[3,6,["H5675"]],[6,8,["H5103"]],[8,9,["H8370"]],[9,12,["H3675"]],[12,14,["H6903"]],[14,16,["H1768"]],[16,17,["H1868"]],[17,19,["H4430"]],[19,21,["H7972"]],[21,22,["H3660"]],[22,24,["H5648"]],[24,25,["H629"]]]},{"k":12165,"v":[[0,3,["H7868"]],[3,6,["H3062"]],[6,7,["H1124"]],[7,10,["H6744"]],[10,13,["H5017"]],[13,15,["H2292"]],[15,17,["H5029"]],[17,19,["H2148"]],[19,21,["H1247"]],[21,23,["H5714"]],[23,26,["H1124"]],[26,28,["H3635"]],[28,30,["H4481"]],[30,33,["H2941"]],[33,36,["H426"]],[36,38,["H3479"]],[38,41,["H4481"]],[41,43,["H2942"]],[43,45,["H3567"]],[45,47,["H1868"]],[47,49,["H783"]],[49,50,["H4430"]],[50,52,["H6540"]]]},{"k":12166,"v":[[0,2,["H1836"]],[2,3,["H1005"]],[3,5,["H3319"]],[5,6,["H5705"]],[6,8,["H8532"]],[8,9,["H3118"]],[9,12,["H3393"]],[12,13,["H144"]],[13,14,["H1768"]],[14,18,["H8353"]],[18,19,["H8140"]],[19,22,["H4437"]],[22,24,["H1868"]],[24,26,["H4430"]]]},{"k":12167,"v":[[0,3,["H1123"]],[3,5,["H3479"]],[5,7,["H3549"]],[7,10,["H3879"]],[10,13,["H7606"]],[13,16,["H1123"]],[16,19,["H1547"]],[19,20,["H5648"]],[20,22,["H2597"]],[22,24,["H1836"]],[24,25,["H1005"]],[25,27,["H426"]],[27,29,["H2305"]]]},{"k":12168,"v":[[0,2,["H7127"]],[2,5,["H2597"]],[5,7,["H1836"]],[7,8,["H1005"]],[8,10,["H426"]],[10,12,["H3969"]],[12,13,["H8450"]],[13,15,["H3969"]],[15,16,["H1798"]],[16,17,["H703"]],[17,18,["H3969"]],[18,19,["H563"]],[19,24,["H2409"]],[24,25,["H5922"]],[25,26,["H3606"]],[26,27,["H3479"]],[27,28,["H8648","H6236"]],[28,30,["H6841","H5796"]],[30,34,["H4510"]],[34,37,["H7625"]],[37,39,["H3479"]]]},{"k":12169,"v":[[0,3,["H6966"]],[3,5,["H3549"]],[5,8,["H6392"]],[8,11,["H3879"]],[11,14,["H4255"]],[14,15,["H5922"]],[15,17,["H5673"]],[17,19,["H426"]],[19,20,["H1768"]],[20,23,["H3390"]],[23,27,["H3792"]],[27,30,["H5609"]],[30,32,["H4873"]]]},{"k":12170,"v":[[0,3,["H1121"]],[3,6,["H1473"]],[6,7,["H6213","(H853)"]],[7,9,["H6453"]],[9,12,["H702","H6240"]],[12,16,["H7223"]],[16,17,["H2320"]]]},{"k":12171,"v":[[0,1,["H3588"]],[1,3,["H3548"]],[3,6,["H3881"]],[6,8,["H2891"]],[8,9,["H259"]],[9,10,["H3605"]],[10,14,["H2889"]],[14,16,["H7819"]],[16,18,["H6453"]],[18,20,["H3605"]],[20,22,["H1121"]],[22,25,["H1473"]],[25,29,["H251"]],[29,31,["H3548"]],[31,34,[]]]},{"k":12172,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,9,["H7725"]],[9,12,["H4480","H1473"]],[12,14,["H3605"]],[14,19,["H914"]],[19,20,["H413"]],[20,24,["H4480","H2932"]],[24,27,["H1471"]],[27,30,["H776"]],[30,32,["H1875"]],[32,34,["H3068"]],[34,35,["H430"]],[35,37,["H3478"]],[37,39,["H398"]]]},{"k":12173,"v":[[0,2,["H6213"]],[2,4,["H2282"]],[4,7,["H4682"]],[7,8,["H7651"]],[8,9,["H3117"]],[9,11,["H8057"]],[11,12,["H3588"]],[12,14,["H3068"]],[14,18,["H8055"]],[18,20,["H5437"]],[20,22,["H3820"]],[22,25,["H4428"]],[25,27,["H804"]],[27,28,["H5921"]],[28,31,["H2388"]],[31,33,["H3027"]],[33,36,["H4399"]],[36,39,["H1004"]],[39,41,["H430"]],[41,43,["H430"]],[43,45,["H3478"]]]},{"k":12174,"v":[[0,2,["H310"]],[2,3,["H428"]],[3,4,["H1697"]],[4,7,["H4438"]],[7,9,["H783"]],[9,10,["H4428"]],[10,12,["H6539"]],[12,13,["H5830"]],[13,15,["H1121"]],[15,17,["H8304"]],[17,19,["H1121"]],[19,21,["H5838"]],[21,23,["H1121"]],[23,25,["H2518"]]]},{"k":12175,"v":[[0,2,["H1121"]],[2,4,["H7967"]],[4,6,["H1121"]],[6,8,["H6659"]],[8,10,["H1121"]],[10,12,["H285"]]]},{"k":12176,"v":[[0,2,["H1121"]],[2,4,["H568"]],[4,6,["H1121"]],[6,8,["H5838"]],[8,10,["H1121"]],[10,12,["H4812"]]]},{"k":12177,"v":[[0,2,["H1121"]],[2,4,["H2228"]],[4,6,["H1121"]],[6,8,["H5813"]],[8,10,["H1121"]],[10,12,["H1231"]]]},{"k":12178,"v":[[0,2,["H1121"]],[2,4,["H50"]],[4,6,["H1121"]],[6,8,["H6372"]],[8,10,["H1121"]],[10,12,["H499"]],[12,14,["H1121"]],[14,16,["H175"]],[16,18,["H7218"]],[18,19,["H3548"]]]},{"k":12179,"v":[[0,1,["H1931"]],[1,2,["H5830"]],[2,4,["H5927"]],[4,6,["H4480","H894"]],[6,8,["H1931"]],[8,11,["H4106"]],[11,12,["H5608"]],[12,15,["H8451"]],[15,17,["H4872"]],[17,18,["H834"]],[18,20,["H3068"]],[20,21,["H430"]],[21,23,["H3478"]],[23,25,["H5414"]],[25,28,["H4428"]],[28,29,["H5414"]],[29,31,["H3605"]],[31,33,["H1246"]],[33,37,["H3027"]],[37,40,["H3068"]],[40,42,["H430"]],[42,43,["H5921"]],[43,44,[]]]},{"k":12180,"v":[[0,4,["H5927"]],[4,8,["H4480","H1121"]],[8,10,["H3478"]],[10,12,["H4480"]],[12,14,["H3548"]],[14,17,["H3881"]],[17,20,["H7891"]],[20,23,["H7778"]],[23,26,["H5411"]],[26,27,["H413"]],[27,28,["H3389"]],[28,31,["H7651"]],[31,32,["H8141"]],[32,34,["H783"]],[34,36,["H4428"]]]},{"k":12181,"v":[[0,3,["H935"]],[3,5,["H3389"]],[5,8,["H2549"]],[8,9,["H2320"]],[9,10,["H1931"]],[10,14,["H7637"]],[14,15,["H8141"]],[15,18,["H4428"]]]},{"k":12182,"v":[[0,1,["H3588"]],[1,4,["H259"]],[4,8,["H7223"]],[8,9,["H2320"]],[9,10,["H3246"]],[10,11,["H1931"]],[11,14,["H4609"]],[14,16,["H4480","H894"]],[16,20,["H259"]],[20,24,["H2549"]],[24,25,["H2320"]],[25,26,["H935"]],[26,28,["H413"]],[28,29,["H3389"]],[29,33,["H2896"]],[33,34,["H3027"]],[34,37,["H430"]],[37,38,["H5921"]],[38,39,[]]]},{"k":12183,"v":[[0,1,["H3588"]],[1,2,["H5830"]],[2,4,["H3559"]],[4,6,["H3824"]],[6,8,["H1875","(H853)"]],[8,10,["H8451"]],[10,13,["H3068"]],[13,16,["H6213"]],[16,20,["H3925"]],[20,22,["H3478"]],[22,23,["H2706"]],[23,25,["H4941"]]]},{"k":12184,"v":[[0,2,["H2088"]],[2,5,["H6572"]],[5,8,["H5406"]],[8,9,["H834"]],[9,11,["H4428"]],[11,12,["H783"]],[12,13,["H5414"]],[13,15,["H5830"]],[15,17,["H3548"]],[17,19,["H5608"]],[19,22,["H5608"]],[22,25,["H1697"]],[25,28,["H4687"]],[28,31,["H3068"]],[31,35,["H2706"]],[35,36,["H5921"]],[36,37,["H3478"]]]},{"k":12185,"v":[[0,1,["H783"]],[1,2,["H4430"]],[2,4,["H4430"]],[4,6,["H5831"]],[6,8,["H3549"]],[8,10,["H5613"]],[10,13,["H1882"]],[13,14,["H1768"]],[14,16,["H426"]],[16,18,["H8065"]],[18,19,["H1585"]],[19,25,["H3706"]]]},{"k":12186,"v":[[0,2,["H7761"]],[2,4,["H2942"]],[4,5,["H1768"]],[5,6,["H3606"]],[6,8,["H4481"]],[8,10,["H5972"]],[10,12,["H3479"]],[12,16,["H3549"]],[16,18,["H3879"]],[18,21,["H4437"]],[21,28,["H5069"]],[28,31,["H1946"]],[31,33,["H3390"]],[33,34,["H1946"]],[34,35,["H5974"]],[35,36,[]]]},{"k":12187,"v":[[0,1,["H3606","H6903","H1768"]],[1,5,["H7972"]],[5,6,["H4481","H6925"]],[6,8,["H4430"]],[8,12,["H7655"]],[12,13,["H3272"]],[13,15,["H1240"]],[15,16,["H5922"]],[16,17,["H3061"]],[17,19,["H3390"]],[19,23,["H1882"]],[23,26,["H426"]],[26,27,["H1768"]],[27,31,["H3028"]]]},{"k":12188,"v":[[0,3,["H2987"]],[3,5,["H3702"]],[5,7,["H1722"]],[7,8,["H1768"]],[8,10,["H4430"]],[10,13,["H3272"]],[13,16,["H5069"]],[16,19,["H426"]],[19,21,["H3479"]],[21,22,["H1768"]],[22,23,["H4907"]],[23,26,["H3390"]]]},{"k":12189,"v":[[0,2,["H3606"]],[2,4,["H3702"]],[4,6,["H1722"]],[6,7,["H1768"]],[7,10,["H7912"]],[10,12,["H3606"]],[12,14,["H4083"]],[14,16,["H895"]],[16,17,["H5974"]],[17,20,["H5069"]],[20,23,["H5974"]],[23,27,["H3549"]],[27,29,["H5069"]],[29,32,["H1005"]],[32,35,["H426"]],[35,36,["H1768"]],[36,39,["H3390"]]]},{"k":12190,"v":[[0,1,["H3606","H6903","H1836"]],[1,4,["H7066"]],[4,5,["H629"]],[5,7,["H1836"]],[7,8,["H3702"]],[8,9,["H8450"]],[9,10,["H1798"]],[10,11,["H563"]],[11,15,["H4504"]],[15,19,["H5261"]],[19,21,["H7127"]],[21,22,["H1994"]],[22,23,["H5922"]],[23,25,["H4056"]],[25,26,["H1768"]],[26,28,["H1005"]],[28,31,["H426"]],[31,32,["H1768"]],[32,35,["H3390"]]]},{"k":12191,"v":[[0,2,["H4101","H1768"]],[2,5,["H3191"]],[5,6,["H5922"]],[6,9,["H5922"]],[9,11,["H252"]],[11,13,["H5648"]],[13,16,["H7606"]],[16,19,["H3702"]],[19,22,["H1722"]],[22,24,["H5648"]],[24,27,["H7470"]],[27,30,["H426"]]]},{"k":12192,"v":[[0,2,["H3984"]],[2,4,["H1768"]],[4,6,["H3052"]],[6,10,["H6402"]],[10,13,["H1005"]],[13,16,["H426"]],[16,18,["H8000"]],[18,20,["H6925"]],[20,22,["H426"]],[22,24,["H3390"]]]},{"k":12193,"v":[[0,3,["H7606"]],[3,6,["H2819"]],[6,9,["H1005"]],[9,12,["H426"]],[12,13,["H1768"]],[13,17,["H5308"]],[17,19,["H5415"]],[19,20,["H5415"]],[20,23,["H4481"]],[23,25,["H4430"]],[25,26,["H1596"]],[26,27,["H1005"]]]},{"k":12194,"v":[[0,4,["H576"]],[4,5,["H783"]],[5,7,["H4430"]],[7,9,["H7761"]],[9,11,["H2942"]],[11,13,["H3606"]],[13,15,["H1490"]],[15,16,["H1768"]],[16,18,["H5675"]],[18,20,["H5103"]],[20,21,["H1768"]],[21,22,["H3606","H1768"]],[22,23,["H5831"]],[23,25,["H3549"]],[25,27,["H5613"]],[27,30,["H1882"]],[30,31,["H1768"]],[31,33,["H426"]],[33,35,["H8065"]],[35,37,["H7593"]],[37,42,["H5648"]],[42,43,["H629"]]]},{"k":12195,"v":[[0,1,["H5705"]],[1,3,["H3969"]],[3,4,["H3604"]],[4,6,["H3702"]],[6,8,["H5705"]],[8,10,["H3969"]],[10,11,["H3734"]],[11,13,["H2591"]],[13,15,["H5705"]],[15,17,["H3969"]],[17,18,["H1325"]],[18,20,["H2562"]],[20,22,["H5705"]],[22,24,["H3969"]],[24,25,["H1325"]],[25,27,["H4887"]],[27,29,["H4416"]],[29,30,["H1768","H3809"]],[30,31,["H3792"]],[31,33,[]]]},{"k":12196,"v":[[0,1,["H3606","H1768"]],[1,3,["H2941"]],[3,4,["H4481"]],[4,6,["H426"]],[6,8,["H8065"]],[8,12,["H149"]],[12,13,["H5648"]],[13,16,["H1005"]],[16,19,["H426"]],[19,21,["H8065"]],[21,22,["H1768"]],[22,23,["H4101"]],[23,26,["H1934"]],[26,27,["H7109"]],[27,28,["H5922"]],[28,30,["H4437"]],[30,33,["H4430"]],[33,36,["H1123"]]]},{"k":12197,"v":[[0,3,["H3046"]],[3,5,["H1768"]],[5,7,["H3606"]],[7,10,["H3549"]],[10,12,["H3879"]],[12,13,["H2171"]],[13,14,["H8652"]],[14,15,["H5412"]],[15,17,["H6399"]],[17,19,["H1836"]],[19,20,["H1005"]],[20,22,["H426"]],[22,25,["H3809"]],[25,27,["H7990"]],[27,29,["H7412"]],[29,30,["H4061"]],[30,31,["H1093"]],[31,33,["H1983"]],[33,34,["H5922"]],[34,35,[]]]},{"k":12198,"v":[[0,2,["H607"]],[2,3,["H5831"]],[3,6,["H2452"]],[6,9,["H426"]],[9,10,["H1768"]],[10,14,["H3028"]],[14,15,["H4483"]],[15,16,["H8200"]],[16,18,["H1782"]],[18,19,["H1768"]],[19,20,["H1934"]],[20,21,["H1778"]],[21,22,["H3606"]],[22,24,["H5972"]],[24,25,["H1768"]],[25,27,["H5675"]],[27,29,["H5103"]],[29,30,["H3606"]],[30,33,["H3046"]],[33,35,["H1882"]],[35,38,["H426"]],[38,40,["H3046"]],[40,43,["H1768"]],[43,44,["H3046"]],[44,46,["H3809"]]]},{"k":12199,"v":[[0,2,["H3606","H1768"]],[2,3,["H1934"]],[3,4,["H3809"]],[4,5,["H5648"]],[5,7,["H1882"]],[7,8,["H1768"]],[8,10,["H426"]],[10,13,["H1882"]],[13,14,["H1768"]],[14,16,["H4430"]],[16,17,["H1934"]],[17,18,["H1780"]],[18,20,["H5648"]],[20,21,["H629"]],[21,22,["H4481"]],[22,24,["H2006"]],[24,28,["H4193"]],[28,29,["H2006"]],[29,31,["H8332"]],[31,32,["H2006"]],[32,34,["H6065"]],[34,36,["H5232"]],[36,39,["H613"]]]},{"k":12200,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,5,["H430"]],[5,8,["H1"]],[8,9,["H834"]],[9,11,["H5414"]],[11,16,["H2063"]],[16,19,["H4428"]],[19,20,["H3820"]],[20,22,["H6286","(H853)"]],[22,24,["H1004"]],[24,27,["H3068"]],[27,28,["H834"]],[28,31,["H3389"]]]},{"k":12201,"v":[[0,3,["H5186"]],[3,4,["H2617"]],[4,5,["H5921"]],[5,7,["H6440"]],[7,9,["H4428"]],[9,12,["H3289"]],[12,15,["H3605"]],[15,17,["H4428"]],[17,18,["H1368"]],[18,19,["H8269"]],[19,21,["H589"]],[21,23,["H2388"]],[23,26,["H3027"]],[26,29,["H3068"]],[29,31,["H430"]],[31,33,["H5921"]],[33,38,["H6908"]],[38,41,["H4480","H3478"]],[41,43,["H7218"]],[43,46,["H5927"]],[46,47,["H5973"]],[47,48,[]]]},{"k":12202,"v":[[0,1,["H428"]],[1,5,["H7218"]],[5,8,["H1"]],[8,13,["H3187"]],[13,18,["H5927"]],[18,19,["H5973"]],[19,22,["H4480","H894"]],[22,25,["H4438"]],[25,27,["H783"]],[27,29,["H4428"]]]},{"k":12203,"v":[[0,3,["H4480","H1121"]],[3,5,["H6372"]],[5,6,["H1648"]],[6,9,["H4480","H1121"]],[9,11,["H385"]],[11,12,["H1840"]],[12,15,["H4480","H1121"]],[15,17,["H1732"]],[17,18,["H2407"]]]},{"k":12204,"v":[[0,3,["H4480","H1121"]],[3,5,["H7935"]],[5,8,["H4480","H1121"]],[8,10,["H6551"]],[10,11,["H2148"]],[11,13,["H5973"]],[13,18,["H3187"]],[18,21,["H2145"]],[21,23,["H3967"]],[23,25,["H2572"]]]},{"k":12205,"v":[[0,3,["H4480","H1121"]],[3,5,["H6355"]],[5,6,["H454"]],[6,8,["H1121"]],[8,10,["H2228"]],[10,12,["H5973"]],[12,15,["H3967"]],[15,16,["H2145"]]]},{"k":12206,"v":[[0,3,["H4480","H1121"]],[3,5,["H7935"]],[5,7,["H1121"]],[7,9,["H3166"]],[9,11,["H5973"]],[11,13,["H7969"]],[13,14,["H3967"]],[14,15,["H2145"]]]},{"k":12207,"v":[[0,3,["H4480","H1121"]],[3,6,["H5720"]],[6,7,["H5651"]],[7,9,["H1121"]],[9,11,["H3083"]],[11,13,["H5973"]],[13,15,["H2572"]],[15,16,["H2145"]]]},{"k":12208,"v":[[0,4,["H4480","H1121"]],[4,6,["H5867"]],[6,7,["H3470"]],[7,9,["H1121"]],[9,11,["H6271"]],[11,13,["H5973"]],[13,15,["H7657"]],[15,16,["H2145"]]]},{"k":12209,"v":[[0,4,["H4480","H1121"]],[4,6,["H8203"]],[6,7,["H2069"]],[7,9,["H1121"]],[9,11,["H4317"]],[11,13,["H5973"]],[13,15,["H8084"]],[15,16,["H2145"]]]},{"k":12210,"v":[[0,3,["H4480","H1121"]],[3,5,["H3097"]],[5,6,["H5662"]],[6,8,["H1121"]],[8,10,["H3171"]],[10,12,["H5973"]],[12,15,["H3967"]],[15,17,["H8083","H6240"]],[17,18,["H2145"]]]},{"k":12211,"v":[[0,4,["H4480","H1121"]],[4,6,["H8019"]],[6,8,["H1121"]],[8,10,["H3131"]],[10,12,["H5973"]],[12,15,["H3967"]],[15,17,["H8346"]],[17,18,["H2145"]]]},{"k":12212,"v":[[0,4,["H4480","H1121"]],[4,6,["H893"]],[6,7,["H2148"]],[7,9,["H1121"]],[9,11,["H893"]],[11,13,["H5973"]],[13,15,["H6242"]],[15,17,["H8083"]],[17,18,["H2145"]]]},{"k":12213,"v":[[0,4,["H4480","H1121"]],[4,6,["H5803"]],[6,7,["H3110"]],[7,9,["H1121"]],[9,11,["H6997"]],[11,13,["H5973"]],[13,16,["H3967"]],[16,18,["H6235"]],[18,19,["H2145"]]]},{"k":12214,"v":[[0,5,["H4480","H1121","H314"]],[5,7,["H140"]],[7,9,["H8034"]],[9,11,["H428"]],[11,12,["H467"]],[12,13,["H3273"]],[13,15,["H8098"]],[15,17,["H5973"]],[17,19,["H8346"]],[19,20,["H2145"]]]},{"k":12215,"v":[[0,3,["H4480","H1121"]],[3,6,["H902"]],[6,7,["H5793"]],[7,9,["H2072"]],[9,11,["H5973"]],[11,13,["H7657"]],[13,14,["H2145"]]]},{"k":12216,"v":[[0,5,["H6908"]],[5,6,["H413"]],[6,8,["H5104"]],[8,10,["H935"]],[10,11,["H413"]],[11,12,["H163"]],[12,14,["H8033"]],[14,18,["H2583"]],[18,19,["H7969"]],[19,20,["H3117"]],[20,23,["H995"]],[23,25,["H5971"]],[25,28,["H3548"]],[28,30,["H4672"]],[30,31,["H8033"]],[31,32,["H3808"]],[32,35,["H4480","H1121"]],[35,37,["H3878"]]]},{"k":12217,"v":[[0,2,["H7971"]],[2,5,["H461"]],[5,7,["H740"]],[7,9,["H8098"]],[9,12,["H494"]],[12,15,["H3402"]],[15,18,["H494"]],[18,21,["H5416"]],[21,24,["H2148"]],[24,27,["H4918"]],[27,29,["H7218"]],[29,32,["H3114"]],[32,35,["H494"]],[35,38,["H995"]]]},{"k":12218,"v":[[0,6,["H6680","(H853)"]],[6,7,["H5921"]],[7,8,["H112"]],[8,10,["H7218"]],[10,13,["H4725"]],[13,14,["H3703"]],[14,17,["H7760","H6310"]],[17,19,["H1697"]],[19,22,["H1696"]],[22,23,["H413"]],[23,24,["H112"]],[24,28,["H251"]],[28,30,["H5411"]],[30,33,["H4725"]],[33,34,["H3703"]],[34,38,["H935"]],[38,41,["H8334"]],[41,44,["H1004"]],[44,47,["H430"]]]},{"k":12219,"v":[[0,4,["H2896"]],[4,5,["H3027"]],[5,8,["H430"]],[8,9,["H5921"]],[9,12,["H935"]],[12,15,["H376"]],[15,17,["H7922"]],[17,20,["H4480","H1121"]],[20,22,["H4249"]],[22,24,["H1121"]],[24,26,["H3878"]],[26,28,["H1121"]],[28,30,["H3478"]],[30,32,["H8274"]],[32,35,["H1121"]],[35,38,["H251"]],[38,39,["H8083","H6240"]]]},{"k":12220,"v":[[0,2,["H2811"]],[2,4,["H854"]],[4,6,["H3470"]],[6,9,["H4480","H1121"]],[9,11,["H4847"]],[11,13,["H251"]],[13,16,["H1121"]],[16,17,["H6242"]]]},{"k":12221,"v":[[0,2,["H4480"]],[2,4,["H5411"]],[4,5,["H7945"]],[5,6,["H1732"]],[6,9,["H8269"]],[9,11,["H5414"]],[11,14,["H5656"]],[14,17,["H3881"]],[17,19,["H3967"]],[19,21,["H6242"]],[21,22,["H5411"]],[22,23,["H3605"]],[23,27,["H5344"]],[27,29,["H8034"]]]},{"k":12222,"v":[[0,3,["H7121"]],[3,5,["H6685"]],[5,6,["H8033"]],[6,7,["H5921"]],[7,9,["H5104"]],[9,11,["H163"]],[11,16,["H6031"]],[16,17,["H6440"]],[17,19,["H430"]],[19,21,["H1245"]],[21,22,["H4480"]],[22,25,["H3477"]],[25,26,["H1870"]],[26,33,["H2945"]],[33,36,["H3605"]],[36,38,["H7399"]]]},{"k":12223,"v":[[0,1,["H3588"]],[1,4,["H954"]],[4,6,["H7592"]],[6,7,["H4480"]],[7,9,["H4428"]],[9,13,["H2428"]],[13,15,["H6571"]],[15,17,["H5826"]],[17,21,["H4480","H341"]],[21,24,["H1870"]],[24,25,["H3588"]],[25,28,["H559"]],[28,31,["H4428"]],[31,32,["H559"]],[32,34,["H3027"]],[34,37,["H430"]],[37,39,["H5921"]],[39,40,["H3605"]],[40,43,["H2896"]],[43,45,["H1245"]],[45,49,["H5797"]],[49,52,["H639"]],[52,54,["H5921"]],[54,55,["H3605"]],[55,58,["H5800"]],[58,59,[]]]},{"k":12224,"v":[[0,3,["H6684"]],[3,5,["H1245"]],[5,7,["H4480","H430"]],[7,8,["H5921"]],[8,9,["H2063"]],[9,13,["H6279"]],[13,15,[]]]},{"k":12225,"v":[[0,3,["H914"]],[3,4,["H8147","H6240"]],[4,7,["H4480","H8269"]],[7,10,["H3548"]],[10,11,["H8274"]],[11,12,["H2811"]],[12,14,["H6235"]],[14,17,["H4480","H251"]],[17,18,["H5973"]],[18,19,[]]]},{"k":12226,"v":[[0,2,["H8254"]],[2,4,["(H853)"]],[4,6,["H3701"]],[6,9,["H2091"]],[9,12,["H3627"]],[12,15,["H8641"]],[15,18,["H1004"]],[18,21,["H430"]],[21,24,["H4428"]],[24,27,["H3289"]],[27,30,["H8269"]],[30,32,["H3605"]],[32,33,["H3478"]],[33,35,["H4672"]],[35,37,["H7311"]]]},{"k":12227,"v":[[0,3,["H8254"]],[3,4,["H5921"]],[4,6,["H3027"]],[6,7,["H8337"]],[7,8,["H3967"]],[8,10,["H2572"]],[10,11,["H3603"]],[11,13,["H3701"]],[13,15,["H3701"]],[15,16,["H3627"]],[16,18,["H3967"]],[18,19,["H3603"]],[19,22,["H2091"]],[22,24,["H3967"]],[24,25,["H3603"]]]},{"k":12228,"v":[[0,2,["H6242"]],[2,3,["H3713"]],[3,5,["H2091"]],[5,8,["H505"]],[8,9,["H150"]],[9,11,["H8147"]],[11,12,["H3627"]],[12,14,["H6668","H2896"]],[14,15,["H5178"]],[15,16,["H2530"]],[16,18,["H2091"]]]},{"k":12229,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H859"]],[6,8,["H6944"]],[8,11,["H3068"]],[11,13,["H3627"]],[13,15,["H6944"]],[15,19,["H3701"]],[19,22,["H2091"]],[22,26,["H5071"]],[26,29,["H3068"]],[29,30,["H430"]],[30,33,["H1"]]]},{"k":12230,"v":[[0,1,["H8245"]],[1,4,["H8104"]],[4,6,["H5704"]],[6,8,["H8254"]],[8,10,["H6440"]],[10,12,["H8269"]],[12,15,["H3548"]],[15,18,["H3881"]],[18,20,["H8269"]],[20,23,["H1"]],[23,25,["H3478"]],[25,27,["H3389"]],[27,30,["H3957"]],[30,33,["H1004"]],[33,36,["H3068"]]]},{"k":12231,"v":[[0,2,["H6901"]],[2,4,["H3548"]],[4,7,["H3881"]],[7,9,["H4948"]],[9,12,["H3701"]],[12,15,["H2091"]],[15,18,["H3627"]],[18,20,["H935"]],[20,23,["H3389"]],[23,26,["H1004"]],[26,29,["H430"]]]},{"k":12232,"v":[[0,3,["H5265"]],[3,6,["H4480","H5104"]],[6,8,["H163"]],[8,11,["H8147","H6240"]],[11,15,["H7223"]],[15,16,["H2320"]],[16,18,["H1980"]],[18,20,["H3389"]],[20,23,["H3027"]],[23,26,["H430"]],[26,27,["H1961"]],[27,28,["H5921"]],[28,32,["H5337"]],[32,36,["H4480","H3709"]],[36,39,["H341"]],[39,46,["H693"]],[46,47,["H5921"]],[47,49,["H1870"]]]},{"k":12233,"v":[[0,3,["H935"]],[3,5,["H3389"]],[5,7,["H3427"]],[7,8,["H8033"]],[8,9,["H7969"]],[9,10,["H3117"]]]},{"k":12234,"v":[[0,4,["H7243"]],[4,5,["H3117"]],[5,8,["H3701"]],[8,11,["H2091"]],[11,14,["H3627"]],[14,15,["H8254"]],[15,18,["H1004"]],[18,21,["H430"]],[21,22,["H5921"]],[22,24,["H3027"]],[24,26,["H4822"]],[26,28,["H1121"]],[28,30,["H223"]],[30,32,["H3548"]],[32,34,["H5973"]],[34,37,["H499"]],[37,39,["H1121"]],[39,41,["H6372"]],[41,43,["H5973"]],[43,46,["H3107"]],[46,48,["H1121"]],[48,50,["H3442"]],[50,52,["H5129"]],[52,54,["H1121"]],[54,56,["H1131"]],[56,57,["H3881"]]]},{"k":12235,"v":[[0,2,["H4557"]],[2,5,["H4948"]],[5,8,["H3605"]],[8,10,["H3605"]],[10,12,["H4948"]],[12,14,["H3789"]],[14,16,["H1931"]],[16,17,["H6256"]]]},{"k":12236,"v":[[0,3,["H1121"]],[3,10,["H1473"]],[10,13,["H935"]],[13,17,["H4480","H7628"]],[17,18,["H7126"]],[18,20,["H5930"]],[20,23,["H430"]],[23,25,["H3478"]],[25,26,["H8147","H6240"]],[26,27,["H6499"]],[27,28,["H5921"]],[28,29,["H3605"]],[29,30,["H3478"]],[30,31,["H8673"]],[31,33,["H8337"]],[33,34,["H352"]],[34,35,["H7657"]],[35,37,["H7651"]],[37,38,["H3532"]],[38,39,["H8147","H6240"]],[39,41,["H6842"]],[41,45,["H2403"]],[45,46,["H3605"]],[46,51,["H5930"]],[51,54,["H3068"]]]},{"k":12237,"v":[[0,3,["H5414","(H853)"]],[3,5,["H4428"]],[5,6,["H1881"]],[6,9,["H4428"]],[9,10,["H323"]],[10,14,["H6346"]],[14,17,["H5676"]],[17,19,["H5104"]],[19,22,["H5375","(H853)"]],[22,24,["H5971"]],[24,27,["H1004"]],[27,29,["H430"]]]},{"k":12238,"v":[[0,4,["H428"]],[4,6,["H3615"]],[6,8,["H8269"]],[8,9,["H5066"]],[9,10,["H413"]],[10,12,["H559"]],[12,14,["H5971"]],[14,16,["H3478"]],[16,19,["H3548"]],[19,22,["H3881"]],[22,24,["H3808"]],[24,26,["H914"]],[26,29,["H4480","H5971"]],[29,32,["H776"]],[32,37,["H8441"]],[37,41,["H3669"]],[41,43,["H2850"]],[43,45,["H6522"]],[45,47,["H2983"]],[47,49,["H5984"]],[49,51,["H4125"]],[51,53,["H4713"]],[53,56,["H567"]]]},{"k":12239,"v":[[0,1,["H3588"]],[1,4,["H5375"]],[4,7,["H4480","H1323"]],[7,13,["H1121"]],[13,17,["H6944"]],[17,18,["H2233"]],[18,21,["H6148"]],[21,24,["H5971"]],[24,27,["H776"]],[27,30,["H3027"]],[30,33,["H8269"]],[33,35,["H5461"]],[35,37,["H1961"]],[37,38,["H7223"]],[38,40,["H2088"]],[40,41,["H4604"]]]},{"k":12240,"v":[[0,4,["H8085","(H853)"]],[4,5,["H2088"]],[5,6,["H1697"]],[6,8,["H7167","(H853)"]],[8,10,["H899"]],[10,13,["H4598"]],[13,16,["H4803"]],[16,18,["H4480","H8181"]],[18,21,["H7218"]],[21,25,["H2206"]],[25,28,["H3427"]],[28,29,["H8074"]]]},{"k":12241,"v":[[0,3,["H622"]],[3,4,["H413"]],[4,7,["H3605"]],[7,9,["H2730"]],[9,12,["H1697"]],[12,15,["H430"]],[15,17,["H3478"]],[17,18,["H5921"]],[18,21,["H4604"]],[21,28,["H1473"]],[28,30,["H589"]],[30,31,["H3427"]],[31,32,["H8074"]],[32,33,["H5704"]],[33,35,["H6153"]],[35,36,["H4503"]]]},{"k":12242,"v":[[0,4,["H6153"]],[4,5,["H4503"]],[5,8,["H6965"]],[8,11,["H4480","H8589"]],[11,14,["H7167"]],[14,16,["H899"]],[16,19,["H4598"]],[19,21,["H3766"]],[21,22,["H5921"]],[22,24,["H1290"]],[24,27,["H6566"]],[27,29,["H3709"]],[29,30,["H413"]],[30,32,["H3068"]],[32,34,["H430"]]]},{"k":12243,"v":[[0,2,["H559"]],[2,5,["H430"]],[5,8,["H954"]],[8,10,["H3637"]],[10,13,["H7311"]],[13,15,["H6440"]],[15,16,["H413"]],[16,19,["H430"]],[19,20,["H3588"]],[20,22,["H5771"]],[22,24,["H7235"]],[24,25,["H4605"]],[25,27,["H7218"]],[27,30,["H819"]],[30,33,["H1431"]],[33,34,["H5704"]],[34,36,["H8064"]]]},{"k":12244,"v":[[0,3,["H4480","H3117"]],[3,6,["H1"]],[6,8,["H587"]],[8,12,["H1419"]],[12,13,["H819"]],[13,14,["H5704"]],[14,15,["H2088"]],[15,16,["H3117"]],[16,20,["H5771"]],[20,22,["H587"]],[22,24,["H4428"]],[24,27,["H3548"]],[27,29,["H5414"]],[29,32,["H3027"]],[32,35,["H4428"]],[35,38,["H776"]],[38,41,["H2719"]],[41,43,["H7628"]],[43,47,["H961"]],[47,50,["H1322"]],[50,52,["H6440"]],[52,56,["H2088"]],[56,57,["H3117"]]]},{"k":12245,"v":[[0,2,["H6258"]],[2,5,["H4592"]],[5,6,["H7281"]],[6,7,["H8467"]],[7,9,["H1961"]],[9,11,["H4480","H854"]],[11,13,["H3068"]],[13,15,["H430"]],[15,17,["H7604"]],[17,22,["H6413"]],[22,25,["H5414"]],[25,28,["H3489"]],[28,31,["H6944"]],[31,32,["H4725"]],[32,35,["H430"]],[35,37,["H215"]],[37,39,["H5869"]],[39,41,["H5414"]],[41,44,["H4592"]],[44,45,["H4241"]],[45,48,["H5659"]]]},{"k":12246,"v":[[0,1,["H3588"]],[1,2,["H587"]],[2,4,["H5650"]],[4,7,["H430"]],[7,9,["H3808"]],[9,10,["H5800"]],[10,14,["H5659"]],[14,17,["H5186"]],[17,18,["H2617"]],[18,19,["H5921"]],[19,23,["H6440"]],[23,26,["H4428"]],[26,28,["H6539"]],[28,30,["H5414"]],[30,33,["H4241"]],[33,36,["H7311","(H853)"]],[36,38,["H1004"]],[38,41,["H430"]],[41,44,["H5975","(H853)"]],[44,46,["H2723"]],[46,50,["H5414"]],[50,53,["H1447"]],[53,55,["H3063"]],[55,58,["H3389"]]]},{"k":12247,"v":[[0,2,["H6258"]],[2,5,["H430"]],[5,6,["H4100"]],[6,9,["H559"]],[9,10,["H310"]],[10,11,["H2063"]],[11,12,["H3588"]],[12,15,["H5800"]],[15,17,["H4687"]]]},{"k":12248,"v":[[0,1,["H834"]],[1,4,["H6680"]],[4,5,["H3027"]],[5,7,["H5650"]],[7,9,["H5030"]],[9,10,["H559"]],[10,12,["H776"]],[12,14,["H834"]],[14,15,["H859"]],[15,16,["H935"]],[16,18,["H3423"]],[18,22,["H5079"]],[22,23,["H776"]],[23,26,["H5079"]],[26,29,["H5971"]],[29,32,["H776"]],[32,35,["H8441"]],[35,36,["H834"]],[36,38,["H4390"]],[38,42,["H4480","H6310"]],[42,43,["H413"]],[43,44,["H6310"]],[44,47,["H2932"]]]},{"k":12249,"v":[[0,1,["H6258"]],[1,3,["H5414"]],[3,4,["H408"]],[4,6,["H1323"]],[6,9,["H1121"]],[9,10,["H408"]],[10,11,["H5375"]],[11,13,["H1323"]],[13,16,["H1121"]],[16,17,["H3808"]],[17,18,["H1875"]],[18,20,["H7965"]],[20,23,["H2896"]],[23,25,["H5704","H5769"]],[25,26,["H4616"]],[26,30,["H2388"]],[30,32,["H398","(H853)"]],[32,34,["H2898"]],[34,37,["H776"]],[37,43,["H3423"]],[43,46,["H1121"]],[46,48,["H5704","H5769"]]]},{"k":12250,"v":[[0,2,["H310"]],[2,3,["H3605"]],[3,6,["H935"]],[6,7,["H5921"]],[7,11,["H7451"]],[11,12,["H4639"]],[12,16,["H1419"]],[16,17,["H819"]],[17,18,["H3588"]],[18,20,["H859"]],[20,22,["H430"]],[22,24,["H2820"]],[24,26,["H4295"]],[26,29,["H4480","H5771"]],[29,33,["H5414"]],[33,36,["H6413"]],[36,38,["H2063"]]]},{"k":12251,"v":[[0,3,["H7725"]],[3,4,["H6565"]],[4,6,["H4687"]],[6,10,["H2859"]],[10,13,["H5971"]],[13,15,["H428"]],[15,16,["H8441"]],[16,18,["H3808"]],[18,21,["H599"]],[21,24,["H5704"]],[24,27,["H3615"]],[27,34,["H369"]],[34,35,["H7611"]],[35,37,["H6413"]]]},{"k":12252,"v":[[0,2,["H3068"]],[2,3,["H430"]],[3,5,["H3478"]],[5,6,["H859"]],[6,8,["H6662"]],[8,9,["H3588"]],[9,11,["H7604"]],[11,13,["H6413"]],[13,17,["H2063"]],[17,18,["H3117"]],[18,19,["H2009"]],[19,22,["H6440"]],[22,26,["H819"]],[26,27,["H3588"]],[27,29,["H369"]],[29,30,["H5975"]],[30,31,["H6440"]],[31,33,["H5921"]],[33,35,["H2088"]]]},{"k":12253,"v":[[0,3,["H5830"]],[3,5,["H6419"]],[5,10,["H3034"]],[10,11,["H1058"]],[11,15,["H5307"]],[15,16,["H6440"]],[16,18,["H1004"]],[18,20,["H430"]],[20,22,["H6908"]],[22,23,["H413"]],[23,27,["H4480","H3478"]],[27,29,["H3966"]],[29,30,["H7227"]],[30,31,["H6951"]],[31,33,["H376"]],[33,35,["H802"]],[35,37,["H3206"]],[37,38,["H3588"]],[38,40,["H5971"]],[40,41,["H1058"]],[41,43,["H7235","H1059"]]]},{"k":12254,"v":[[0,2,["H7935"]],[2,4,["H1121"]],[4,6,["H3171"]],[6,10,["H4480","H1121"]],[10,12,["H5867"]],[12,13,["H6030"]],[13,15,["H559"]],[15,17,["H5830"]],[17,18,["H587"]],[18,20,["H4603"]],[20,23,["H430"]],[23,26,["H3427"]],[26,27,["H5237"]],[27,28,["H802"]],[28,31,["H4480","H5971"]],[31,34,["H776"]],[34,36,["H6258"]],[36,38,["H3426"]],[38,39,["H4723"]],[39,41,["H3478"]],[41,42,["H5921"]],[42,43,["H2063"]],[43,44,[]]]},{"k":12255,"v":[[0,1,["H6258"]],[1,5,["H3772"]],[5,7,["H1285"]],[7,10,["H430"]],[10,13,["H3318"]],[13,14,["H3605"]],[14,16,["H802"]],[16,21,["H3205"]],[21,22,["H4480"]],[22,27,["H6098"]],[27,30,["H136"]],[30,35,["H2730"]],[35,38,["H4687"]],[38,41,["H430"]],[41,46,["H6213"]],[46,50,["H8451"]]]},{"k":12256,"v":[[0,1,["H6965"]],[1,2,["H3588"]],[2,4,["H1697"]],[4,6,["H5921"]],[6,8,["H587"]],[8,12,["H5973"]],[12,17,["H2388"]],[17,19,["H6213"]],[19,20,[]]]},{"k":12257,"v":[[0,2,["H6965"]],[2,3,["H5830"]],[3,5,["(H853)"]],[5,7,["H8269"]],[7,8,["H3548"]],[8,10,["H3881"]],[10,12,["H3605"]],[12,13,["H3478"]],[13,15,["H7650"]],[15,19,["H6213"]],[19,22,["H2088"]],[22,23,["H1697"]],[23,26,["H7650"]]]},{"k":12258,"v":[[0,2,["H5830"]],[2,4,["H6965"]],[4,6,["H4480","H6440"]],[6,8,["H1004"]],[8,10,["H430"]],[10,12,["H1980"]],[12,13,["H413"]],[13,15,["H3957"]],[15,17,["H3076"]],[17,19,["H1121"]],[19,21,["H475"]],[21,25,["H1980"]],[25,26,["H8033"]],[26,29,["H398"]],[29,30,["H3808"]],[30,31,["H3899"]],[31,32,["H3808"]],[32,33,["H8354"]],[33,34,["H4325"]],[34,35,["H3588"]],[35,37,["H56"]],[37,38,["H5921"]],[38,41,["H4604"]],[41,48,["H1473"]]]},{"k":12259,"v":[[0,4,["H5674","H6963"]],[4,6,["H3063"]],[6,8,["H3389"]],[8,10,["H3605"]],[10,12,["H1121"]],[12,15,["H1473"]],[15,21,["H6908"]],[21,23,["H3389"]]]},{"k":12260,"v":[[0,3,["H3605","H834"]],[3,5,["H3808"]],[5,6,["H935"]],[6,8,["H7969"]],[8,9,["H3117"]],[9,13,["H6098"]],[13,16,["H8269"]],[16,19,["H2205"]],[19,20,["H3605"]],[20,22,["H7399"]],[22,25,["H2763"]],[25,27,["H1931"]],[27,28,["H914"]],[28,31,["H4480","H6951"]],[31,38,["H1473"]]]},{"k":12261,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,6,["H3063"]],[6,8,["H1144"]],[8,11,["H6908"]],[11,13,["H3389"]],[13,15,["H7969"]],[15,16,["H3117"]],[16,17,["H1931"]],[17,20,["H8671"]],[20,21,["H2320"]],[21,24,["H6242"]],[24,28,["H2320"]],[28,30,["H3605"]],[30,32,["H5971"]],[32,33,["H3427"]],[33,36,["H7339"]],[36,39,["H1004"]],[39,41,["H430"]],[41,42,["H7460"]],[42,43,["H5921"]],[43,46,["H1697"]],[46,51,["H4480","H1653"]]]},{"k":12262,"v":[[0,2,["H5830"]],[2,4,["H3548"]],[4,6,["H6965"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H859"]],[11,13,["H4603"]],[13,16,["H3427"]],[16,17,["H5237"]],[17,18,["H802"]],[18,20,["H3254","H5921"]],[20,22,["H819"]],[22,24,["H3478"]]]},{"k":12263,"v":[[0,1,["H6258"]],[1,3,["H5414"]],[3,4,["H8426"]],[4,7,["H3068"]],[7,8,["H430"]],[8,11,["H1"]],[11,13,["H6213"]],[13,15,["H7522"]],[15,18,["H914"]],[18,21,["H4480","H5971"]],[21,24,["H776"]],[24,26,["H4480"]],[26,28,["H5237"]],[28,29,["H802"]]]},{"k":12264,"v":[[0,2,["H3605"]],[2,4,["H6951"]],[4,5,["H6030"]],[5,7,["H559"]],[7,10,["H1419"]],[10,11,["H6963"]],[11,15,["H1697","H5921"]],[15,16,["H3651"]],[16,19,["H6213"]]]},{"k":12265,"v":[[0,1,["H61"]],[1,3,["H5971"]],[3,5,["H7227"]],[5,10,["H6256"]],[10,13,["H1653"]],[13,17,["H369"]],[17,18,["H3581"]],[18,20,["H5975"]],[20,21,["H2351"]],[21,22,["H3808"]],[22,26,["H4399"]],[26,28,["H259"]],[28,29,["H3117"]],[29,30,["H3808"]],[30,31,["H8147"]],[31,32,["H3588"]],[32,35,["H7235"]],[35,38,["H6586"]],[38,40,["H2088"]],[40,41,["H1697"]]]},{"k":12266,"v":[[0,2,["H4994"]],[2,4,["H8269"]],[4,6,["H3605"]],[6,8,["H6951"]],[8,9,["H5975"]],[9,12,["H3605"]],[12,14,["H834"]],[14,16,["H3427"]],[16,17,["H5237"]],[17,18,["H802"]],[18,21,["H5892"]],[21,22,["H935"]],[22,24,["H2163"]],[24,25,["H6256"]],[25,27,["H5973"]],[27,30,["H2205"]],[30,33,["H5892","H5892"]],[33,36,["H8199"]],[36,38,["H5704"]],[38,40,["H2740"]],[40,41,["H639"]],[41,44,["H430"]],[44,45,["H5704"]],[45,46,["H2088"]],[46,47,["H1697"]],[47,49,["H7725"]],[49,50,["H4480"]],[50,51,[]]]},{"k":12267,"v":[[0,1,["H389"]],[1,2,["H3083"]],[2,4,["H1121"]],[4,6,["H6214"]],[6,8,["H3167"]],[8,10,["H1121"]],[10,12,["H8616"]],[12,14,["H5975"]],[14,15,["H5921"]],[15,16,["H2063"]],[16,19,["H4918"]],[19,21,["H7678"]],[21,23,["H3881"]],[23,24,["H5826"]],[24,25,[]]]},{"k":12268,"v":[[0,3,["H1121"]],[3,6,["H1473"]],[6,7,["H6213"]],[7,8,["H3651"]],[8,10,["H5830"]],[10,12,["H3548"]],[12,14,["H376"]],[14,15,["H7218"]],[15,18,["H1"]],[18,21,["H1004"]],[21,24,["H1"]],[24,26,["H3605"]],[26,31,["H8034"]],[31,33,["H914"]],[33,36,["H3427"]],[36,39,["H259"]],[39,40,["H3117"]],[40,43,["H6224"]],[43,44,["H2320"]],[44,46,["H1875"]],[46,48,["H1697"]]]},{"k":12269,"v":[[0,5,["H3615"]],[5,7,["H3605"]],[7,9,["H376"]],[9,12,["H3427"]],[12,13,["H5237"]],[13,14,["H802"]],[14,15,["H5704"]],[15,17,["H259"]],[17,18,["H3117"]],[18,21,["H7223"]],[21,22,["H2320"]]]},{"k":12270,"v":[[0,4,["H4480","H1121"]],[4,7,["H3548"]],[7,10,["H4672"]],[10,11,["H834"]],[11,13,["H3427"]],[13,14,["H5237"]],[14,15,["H802"]],[15,19,["H4480","H1121"]],[19,21,["H3442"]],[21,23,["H1121"]],[23,25,["H3136"]],[25,28,["H251"]],[28,29,["H4641"]],[29,31,["H461"]],[31,33,["H3402"]],[33,35,["H1436"]]]},{"k":12271,"v":[[0,3,["H5414"]],[3,5,["H3027"]],[5,10,["H3318"]],[10,12,["H802"]],[12,15,["H818"]],[15,19,["H352"]],[19,22,["H6629"]],[22,23,["H5921"]],[23,25,["H819"]]]},{"k":12272,"v":[[0,4,["H4480","H1121"]],[4,6,["H564"]],[6,7,["H2607"]],[7,9,["H2069"]]]},{"k":12273,"v":[[0,4,["H4480","H1121"]],[4,6,["H2766"]],[6,7,["H4641"]],[7,9,["H452"]],[9,11,["H8098"]],[11,13,["H3171"]],[13,15,["H5818"]]]},{"k":12274,"v":[[0,4,["H4480","H1121"]],[4,6,["H6583"]],[6,7,["H454"]],[7,8,["H4641"]],[8,9,["H3458"]],[9,10,["H5417"]],[10,11,["H3107"]],[11,13,["H501"]]]},{"k":12275,"v":[[0,2,["H4480"]],[2,4,["H3881"]],[4,5,["H3107"]],[5,7,["H8096"]],[7,9,["H7041"]],[9,11,["H1931"]],[11,13,["H7042"]],[13,14,["H6611"]],[14,15,["H3063"]],[15,17,["H461"]]]},{"k":12276,"v":[[0,1,["H4480"]],[1,3,["H7891"]],[3,5,["H475"]],[5,7,["H4480"]],[7,9,["H7778"]],[9,10,["H7967"]],[10,12,["H2928"]],[12,14,["H221"]]]},{"k":12277,"v":[[0,3,["H4480","H3478"]],[3,6,["H4480","H1121"]],[6,8,["H6551"]],[8,9,["H7422"]],[9,11,["H3150"]],[11,13,["H4441"]],[13,15,["H4326"]],[15,17,["H499"]],[17,19,["H4441"]],[19,21,["H1141"]]]},{"k":12278,"v":[[0,4,["H4480","H1121"]],[4,6,["H5867"]],[6,7,["H4983"]],[7,8,["H2148"]],[8,10,["H3171"]],[10,12,["H5660"]],[12,14,["H3406"]],[14,16,["H452"]]]},{"k":12279,"v":[[0,4,["H4480","H1121"]],[4,6,["H2240"]],[6,7,["H454"]],[7,8,["H475"]],[8,9,["H4983"]],[9,11,["H3406"]],[11,13,["H2066"]],[13,15,["H5819"]]]},{"k":12280,"v":[[0,3,["H4480","H1121"]],[3,6,["H893"]],[6,7,["H3076"]],[7,8,["H2608"]],[8,9,["H2079"]],[9,11,["H6270"]]]},{"k":12281,"v":[[0,4,["H4480","H1121"]],[4,6,["H1137"]],[6,7,["H4918"]],[7,8,["H4409"]],[8,10,["H5718"]],[10,11,["H3437"]],[11,13,["H7594"]],[13,15,["H3406"]]]},{"k":12282,"v":[[0,4,["H4480","H1121"]],[4,6,["H6355"]],[6,7,["H5733"]],[7,9,["H3636"]],[9,10,["H1141"]],[10,11,["H4641"]],[11,12,["H4983"]],[12,13,["H1212"]],[13,15,["H1131"]],[15,17,["H4519"]]]},{"k":12283,"v":[[0,4,["H1121"]],[4,6,["H2766"]],[6,7,["H461"]],[7,8,["H3449"]],[8,9,["H4441"]],[9,10,["H8098"]],[10,11,["H8095"]]]},{"k":12284,"v":[[0,1,["H1144"]],[1,2,["H4409"]],[2,4,["H8114"]]]},{"k":12285,"v":[[0,3,["H4480","H1121"]],[3,5,["H2828"]],[5,6,["H4982"]],[6,7,["H4992"]],[7,8,["H2066"]],[8,9,["H467"]],[9,10,["H3413"]],[10,11,["H4519"]],[11,13,["H8096"]]]},{"k":12286,"v":[[0,3,["H4480","H1121"]],[3,5,["H1137"]],[5,6,["H4572"]],[6,7,["H6019"]],[7,9,["H177"]]]},{"k":12287,"v":[[0,1,["H1141"]],[1,2,["H912"]],[2,3,["H3622"]]]},{"k":12288,"v":[[0,1,["H2057"]],[1,2,["H4822"]],[2,3,["H475"]]]},{"k":12289,"v":[[0,1,["H4983"]],[1,2,["H4982"]],[2,4,["H3299"]]]},{"k":12290,"v":[[0,2,["H1137"]],[2,4,["H1131"]],[4,5,["H8096"]]]},{"k":12291,"v":[[0,2,["H8018"]],[2,4,["H5416"]],[4,6,["H5718"]]]},{"k":12292,"v":[[0,1,["H4367"]],[1,2,["H8343"]],[2,3,["H8298"]]]},{"k":12293,"v":[[0,1,["H5832"]],[1,3,["H8018"]],[3,4,["H8114"]]]},{"k":12294,"v":[[0,1,["H7967"]],[1,2,["H568"]],[2,4,["H3130"]]]},{"k":12295,"v":[[0,3,["H4480","H1121"]],[3,5,["H5015"]],[5,6,["H3273"]],[6,7,["H4993"]],[7,8,["H2066"]],[8,9,["H2081"]],[9,10,["H3035"]],[10,12,["H3100"]],[12,13,["H1141"]]]},{"k":12296,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,4,["H5375"]],[4,5,["H5237"]],[5,6,["H802"]],[6,9,["H4480"]],[9,11,["H3426"]],[11,12,["H802"]],[12,16,["H7760"]],[16,17,["H1121"]]]},{"k":12297,"v":[[0,2,["H1697"]],[2,4,["H5166"]],[4,6,["H1121"]],[6,8,["H2446"]],[8,13,["H1961"]],[13,16,["H2320"]],[16,17,["H3691"]],[17,20,["H6242"]],[20,21,["H8141"]],[21,23,["H589"]],[23,24,["H1961"]],[24,26,["H7800"]],[26,28,["H1002"]]]},{"k":12298,"v":[[0,2,["H2607"]],[2,3,["H259"]],[3,6,["H4480","H251"]],[6,7,["H935"]],[7,8,["H1931"]],[8,11,["H376"]],[11,13,["H4480","H3063"]],[13,16,["H7592"]],[16,18,["H5921"]],[18,20,["H3064"]],[20,23,["H6413"]],[23,24,["H834"]],[24,26,["H7604"]],[26,27,["H4480"]],[27,29,["H7628"]],[29,31,["H5921"]],[31,32,["H3389"]]]},{"k":12299,"v":[[0,3,["H559"]],[3,7,["H7604"]],[7,8,["H834"]],[8,10,["H7604"]],[10,11,["H4480"]],[11,13,["H7628"]],[13,14,["H8033"]],[14,17,["H4082"]],[17,20,["H1419"]],[20,21,["H7451"]],[21,23,["H2781"]],[23,25,["H2346"]],[25,27,["H3389"]],[27,31,["H6555"]],[31,34,["H8179"]],[34,37,["H3341"]],[37,39,["H784"]]]},{"k":12300,"v":[[0,5,["H1961"]],[5,8,["H8085","(H853)"]],[8,9,["H428"]],[9,10,["H1697"]],[10,14,["H3427"]],[14,16,["H1058"]],[16,18,["H56"]],[18,20,["H3117"]],[20,22,["H1961","H6684"]],[22,24,["H6419"]],[24,25,["H6440"]],[25,27,["H430"]],[27,29,["H8064"]]]},{"k":12301,"v":[[0,2,["H559"]],[2,4,["H577"]],[4,7,["H3068"]],[7,8,["H430"]],[8,10,["H8064"]],[10,12,["H1419"]],[12,14,["H3372"]],[14,15,["H410"]],[15,17,["H8104"]],[17,18,["H1285"]],[18,20,["H2617"]],[20,24,["H157"]],[24,27,["H8104"]],[27,29,["H4687"]]]},{"k":12302,"v":[[0,3,["H241"]],[3,4,["H4994"]],[4,5,["H1961"]],[5,6,["H7183"]],[6,9,["H5869"]],[9,10,["H6605"]],[10,14,["H8085","H413"]],[14,16,["H8605"]],[16,19,["H5650"]],[19,20,["H834"]],[20,21,["H595"]],[21,22,["H6419"]],[22,23,["H6440"]],[23,25,["H3117"]],[25,26,["H3119"]],[26,28,["H3915"]],[28,29,["H5921"]],[29,31,["H1121"]],[31,33,["H3478"]],[33,35,["H5650"]],[35,37,["H3034","H5921"]],[37,39,["H2403"]],[39,42,["H1121"]],[42,44,["H3478"]],[44,45,["H834"]],[45,48,["H2398"]],[48,52,["H589"]],[52,55,["H1"]],[55,56,["H1004"]],[56,58,["H2398"]]]},{"k":12303,"v":[[0,5,["H2254","H2254"]],[5,10,["H3808"]],[10,11,["H8104","(H853)"]],[11,13,["H4687"]],[13,16,["H2706"]],[16,19,["H4941"]],[19,20,["H834"]],[20,22,["H6680","(H853)"]],[22,24,["H5650"]],[24,25,["H4872"]]]},{"k":12304,"v":[[0,1,["H2142"]],[1,3,["H4994"]],[3,4,["(H853)"]],[4,6,["H1697"]],[6,7,["H834"]],[7,9,["H6680","(H853)"]],[9,11,["H5650"]],[11,12,["H4872"]],[12,13,["H559"]],[13,15,["H859"]],[15,16,["H4603"]],[16,17,["H589"]],[17,21,["H6327","(H853)"]],[21,24,["H5971"]]]},{"k":12305,"v":[[0,4,["H7725"]],[4,5,["H413"]],[5,8,["H8104"]],[8,10,["H4687"]],[10,12,["H6213"]],[12,14,["H518"]],[14,16,["H1961"]],[16,20,["H5080"]],[20,24,["H7097"]],[24,27,["H8064"]],[27,31,["H6908"]],[31,34,["H4480","H8033"]],[34,37,["H935"]],[37,39,["H413"]],[39,41,["H4725"]],[41,42,["H834"]],[42,45,["H977"]],[45,47,["H7931","(H853)"]],[47,49,["H8034"]],[49,50,["H8033"]]]},{"k":12306,"v":[[0,2,["H1992"]],[2,5,["H5650"]],[5,8,["H5971"]],[8,9,["H834"]],[9,12,["H6299"]],[12,15,["H1419"]],[15,16,["H3581"]],[16,20,["H2389"]],[20,21,["H3027"]]]},{"k":12307,"v":[[0,2,["H136"]],[2,4,["H577"]],[4,7,["H4994"]],[7,9,["H241"]],[9,10,["H1961"]],[10,11,["H7183"]],[11,12,["H413"]],[12,14,["H8605"]],[14,17,["H5650"]],[17,19,["H413"]],[19,21,["H8605"]],[21,24,["H5650"]],[24,26,["H2655"]],[26,28,["H3372","(H853)"]],[28,30,["H8034"]],[30,32,["H6743"]],[32,34,["H4994"]],[34,37,["H5650"]],[37,39,["H3117"]],[39,41,["H5414"]],[41,43,["H7356"]],[43,46,["H6440"]],[46,48,["H2088"]],[48,49,["H376"]],[49,51,["H589"]],[51,52,["H1961"]],[52,54,["H4428"]],[54,55,["H4945"]]]},{"k":12308,"v":[[0,5,["H1961"]],[5,8,["H2320"]],[8,9,["H5212"]],[9,12,["H6242"]],[12,13,["H8141"]],[13,15,["H783"]],[15,17,["H4428"]],[17,19,["H3196"]],[19,21,["H6440"]],[21,26,["H5375","(H853)"]],[26,28,["H3196"]],[28,30,["H5414"]],[30,34,["H4428"]],[34,38,["H3808"]],[38,39,["H1961"]],[39,41,["H7451"]],[41,44,["H6440"]]]},{"k":12309,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H4069"]],[7,10,["H6440"]],[10,11,["H7451"]],[11,13,["H859"]],[13,15,["H369"]],[15,16,["H2470"]],[16,17,["H2088"]],[17,19,["H369"]],[19,21,["H3588","H518"]],[21,22,["H7455"]],[22,24,["H3820"]],[24,28,["H3966"]],[28,29,["H7235"]],[29,30,["H3372"]]]},{"k":12310,"v":[[0,2,["H559"]],[2,5,["H4428"]],[5,8,["H4428"]],[8,9,["H2421"]],[9,11,["H5769"]],[11,12,["H4069"]],[12,14,["H3808"]],[14,16,["H6440"]],[16,18,["H7489"]],[18,19,["H834"]],[19,21,["H5892"]],[21,23,["H1004"]],[23,26,["H1"]],[26,27,["H6913"]],[27,29,["H2720"]],[29,32,["H8179"]],[32,35,["H398"]],[35,37,["H784"]]]},{"k":12311,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H5921"]],[7,8,["H4100","H2088"]],[8,10,["H859"]],[10,12,["H1245"]],[12,15,["H6419"]],[15,16,["H413"]],[16,18,["H430"]],[18,20,["H8064"]]]},{"k":12312,"v":[[0,3,["H559"]],[3,6,["H4428"]],[6,7,["H518"]],[7,9,["H2895","H5921"]],[9,11,["H4428"]],[11,13,["H518"]],[13,15,["H5650"]],[15,18,["H3190"]],[18,21,["H6440"]],[21,22,["H834"]],[22,25,["H7971"]],[25,27,["H413"]],[27,28,["H3063"]],[28,29,["H413"]],[29,31,["H5892"]],[31,34,["H1"]],[34,35,["H6913"]],[35,39,["H1129"]],[39,40,[]]]},{"k":12313,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,8,["H7694"]],[8,10,["H3427"]],[10,11,["H681"]],[11,13,["H5704"]],[13,15,["H4970"]],[15,18,["H4109"]],[18,19,["H1961"]],[19,21,["H4970"]],[21,24,["H7725"]],[24,27,["H3190","H6440"]],[27,29,["H4428"]],[29,31,["H7971"]],[31,35,["H5414"]],[35,38,["H2165"]]]},{"k":12314,"v":[[0,3,["H559"]],[3,6,["H4428"]],[6,7,["H518"]],[7,9,["H2895","H5921"]],[9,11,["H4428"]],[11,13,["H107"]],[13,15,["H5414"]],[15,17,["H5921"]],[17,19,["H6346"]],[19,20,["H5676"]],[20,22,["H5104"]],[22,23,["H834"]],[23,28,["H5674"]],[28,29,["H5704","H834"]],[29,31,["H935"]],[31,32,["H413"]],[32,33,["H3063"]]]},{"k":12315,"v":[[0,3,["H107"]],[3,4,["H413"]],[4,5,["H623"]],[5,7,["H8104"]],[7,10,["H4428"]],[10,11,["H6508"]],[11,12,["H834"]],[12,15,["H5414"]],[15,17,["H6086"]],[17,20,["H7136"]],[20,21,["(H853)"]],[21,23,["H8179"]],[23,26,["H1002"]],[26,27,["H834"]],[27,31,["H1004"]],[31,35,["H2346"]],[35,38,["H5892"]],[38,42,["H1004"]],[42,43,["H834"]],[43,46,["H935"]],[46,47,["H413"]],[47,50,["H4428"]],[50,51,["H5414"]],[51,56,["H2896"]],[56,57,["H3027"]],[57,60,["H430"]],[60,61,["H5921"]],[61,62,[]]]},{"k":12316,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H6346"]],[6,7,["H5676"]],[7,9,["H5104"]],[9,11,["H5414"]],[11,12,["(H853)"]],[12,14,["H4428"]],[14,15,["H107"]],[15,18,["H4428"]],[18,20,["H7971"]],[20,21,["H8269"]],[21,24,["H2428"]],[24,26,["H6571"]],[26,27,["H5973"]],[27,28,[]]]},{"k":12317,"v":[[0,2,["H5571"]],[2,4,["H2772"]],[4,6,["H2900"]],[6,8,["H5650"]],[8,10,["H5984"]],[10,11,["H8085"]],[11,15,["H7489"]],[15,17,["H1419","H7451"]],[17,18,["H834"]],[18,21,["H935"]],[21,23,["H120"]],[23,25,["H1245"]],[25,27,["H2896"]],[27,30,["H1121"]],[30,32,["H3478"]]]},{"k":12318,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,5,["H3389"]],[5,7,["H1961"]],[7,8,["H8033"]],[8,9,["H7969"]],[9,10,["H3117"]]]},{"k":12319,"v":[[0,3,["H6965"]],[3,6,["H3915"]],[6,7,["H589"]],[7,10,["H4592"]],[10,11,["H376"]],[11,12,["H5973"]],[12,14,["H3808"]],[14,15,["H5046"]],[15,18,["H120"]],[18,19,["H4100"]],[19,21,["H430"]],[21,23,["H5414"]],[23,24,["H413"]],[24,26,["H3820"]],[26,28,["H6213"]],[28,30,["H3389"]],[30,31,["H369"]],[31,35,["H929"]],[35,36,["H5973"]],[36,38,["H3588","H518"]],[38,40,["H929"]],[40,41,["H834"]],[41,42,["H589"]],[42,43,["H7392"]],[43,44,[]]]},{"k":12320,"v":[[0,4,["H3318"]],[4,6,["H3915"]],[6,9,["H8179"]],[9,12,["H1516"]],[12,14,["H413","H6440"]],[14,16,["H8577"]],[16,17,["H5869"]],[17,19,["H413"]],[19,21,["H830"]],[21,22,["H8179"]],[22,24,["H1961","H7663"]],[24,26,["H2346"]],[26,28,["H3389"]],[28,29,["H834"]],[29,32,["H6555"]],[32,35,["H8179"]],[35,38,["H398"]],[38,40,["H784"]]]},{"k":12321,"v":[[0,4,["H5674"]],[4,5,["H413"]],[5,7,["H8179"]],[7,10,["H5869"]],[10,12,["H413"]],[12,14,["H4428"]],[14,15,["H1295"]],[15,19,["H369"]],[19,20,["H4725"]],[20,23,["H929"]],[23,26,["H8478"]],[26,29,["H5674"]]]},{"k":12322,"v":[[0,4,["H1961","H5927"]],[4,7,["H3915"]],[7,10,["H5158"]],[10,12,["H1961","H7663"]],[12,14,["H2346"]],[14,17,["H7725"]],[17,19,["H935"]],[19,22,["H8179"]],[22,25,["H1516"]],[25,28,["H7725"]]]},{"k":12323,"v":[[0,3,["H5461"]],[3,4,["H3045"]],[4,5,["H3808"]],[5,6,["H575"]],[6,8,["H1980"]],[8,10,["H4100"]],[10,11,["H589"]],[11,12,["H6213"]],[12,13,["H3808"]],[13,16,["H5704"]],[16,17,["H3651"]],[17,18,["H5046"]],[18,22,["H3064"]],[22,26,["H3548"]],[26,30,["H2715"]],[30,34,["H5461"]],[34,38,["H3499"]],[38,40,["H6213"]],[40,42,["H4399"]]]},{"k":12324,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H859"]],[6,7,["H7200"]],[7,9,["H7451"]],[9,10,["H834"]],[10,11,["H587"]],[11,14,["H834"]],[14,15,["H3389"]],[15,17,["H2720"]],[17,20,["H8179"]],[20,23,["H3341"]],[23,25,["H784"]],[25,26,["H1980"]],[26,31,["H1129","(H853)"]],[31,33,["H2346"]],[33,35,["H3389"]],[35,38,["H1961"]],[38,39,["H3808"]],[39,40,["H5750"]],[40,42,["H2781"]]]},{"k":12325,"v":[[0,3,["H5046"]],[3,5,["(H853)"]],[5,7,["H3027"]],[7,10,["H430"]],[10,11,["H834","H1931"]],[11,13,["H2896"]],[13,14,["H5921"]],[14,17,["H637"]],[17,19,["H4428"]],[19,20,["H1697"]],[20,21,["H834"]],[21,24,["H559"]],[24,29,["H559"]],[29,33,["H6965"]],[33,35,["H1129"]],[35,38,["H2388"]],[38,40,["H3027"]],[40,43,["H2896"]],[43,44,[]]]},{"k":12326,"v":[[0,3,["H5571"]],[3,5,["H2772"]],[5,7,["H2900"]],[7,9,["H5650"]],[9,11,["H5984"]],[11,13,["H1654"]],[13,15,["H6163"]],[15,16,["H8085"]],[16,22,["H3932"]],[22,24,["H959","H5921"]],[24,27,["H559"]],[27,28,["H4100"]],[28,30,["H2088"]],[30,31,["H1697"]],[31,32,["H834"]],[32,33,["H859"]],[33,34,["H6213"]],[34,36,["H859"]],[36,37,["H4775"]],[37,38,["H5921"]],[38,40,["H4428"]]]},{"k":12327,"v":[[0,2,["H7725","H1697"]],[2,6,["H559"]],[6,10,["H430"]],[10,12,["H8064"]],[12,13,["H1931"]],[13,15,["H6743"]],[15,18,["H587"]],[18,20,["H5650"]],[20,22,["H6965"]],[22,24,["H1129"]],[24,28,["H369"]],[28,29,["H2506"]],[29,31,["H6666"]],[31,33,["H2146"]],[33,35,["H3389"]]]},{"k":12328,"v":[[0,2,["H475"]],[2,4,["H1419"]],[4,5,["H3548"]],[5,7,["H6965"]],[7,10,["H251"]],[10,12,["H3548"]],[12,15,["H1129","(H853)"]],[15,17,["H6629"]],[17,18,["H8179"]],[18,19,["H1992"]],[19,20,["H6942"]],[20,24,["H5975"]],[24,26,["H1817"]],[26,30,["H5704"]],[30,32,["H4026"]],[32,34,["H3968"]],[34,36,["H6942"]],[36,38,["H5704"]],[38,40,["H4026"]],[40,42,["H2606"]]]},{"k":12329,"v":[[0,2,["H3027"]],[2,3,["H5921"]],[3,5,["H1129"]],[5,7,["H376"]],[7,9,["H3405"]],[9,11,["H3027"]],[11,12,["H5921"]],[12,14,["H1129"]],[14,15,["H2139"]],[15,17,["H1121"]],[17,19,["H566"]]]},{"k":12330,"v":[[0,3,["H1709"]],[3,4,["H8179"]],[4,7,["H1121"]],[7,9,["H5570"]],[9,10,["H1129"]],[10,11,["H1992"]],[11,15,["H7136"]],[15,19,["H5975"]],[19,21,["H1817"]],[21,24,["H4514"]],[24,28,["H1280"]],[28,29,[]]]},{"k":12331,"v":[[0,2,["H3027"]],[2,3,["H5921"]],[3,5,["H2388"]],[5,6,["H4822"]],[6,8,["H1121"]],[8,10,["H223"]],[10,12,["H1121"]],[12,14,["H6976"]],[14,16,["H3027"]],[16,17,["H5921"]],[17,19,["H2388"]],[19,20,["H4918"]],[20,22,["H1121"]],[22,24,["H1296"]],[24,26,["H1121"]],[26,28,["H4898"]],[28,30,["H3027"]],[30,31,["H5921"]],[31,33,["H2388"]],[33,34,["H6659"]],[34,36,["H1121"]],[36,38,["H1196"]]]},{"k":12332,"v":[[0,2,["H3027"]],[2,3,["H5921"]],[3,6,["H8621"]],[6,7,["H2388"]],[7,10,["H117"]],[10,11,["H935"]],[11,12,["H3808"]],[12,14,["H6677"]],[14,17,["H5656"]],[17,20,["H113"]]]},{"k":12333,"v":[[0,3,["H3465"]],[3,4,["H8179"]],[4,5,["H2388"]],[5,6,["H3111"]],[6,8,["H1121"]],[8,10,["H6454"]],[10,12,["H4918"]],[12,14,["H1121"]],[14,16,["H1152"]],[16,17,["H1992"]],[17,20,["H7136"]],[20,24,["H5975"]],[24,26,["H1817"]],[26,30,["H4514"]],[30,34,["H1280"]],[34,35,[]]]},{"k":12334,"v":[[0,2,["H3027"]],[2,3,["H5921"]],[3,5,["H2388"]],[5,6,["H4424"]],[6,8,["H1393"]],[8,10,["H3036"]],[10,12,["H4824"]],[12,14,["H376"]],[14,16,["H1391"]],[16,19,["H4709"]],[19,22,["H3678"]],[22,25,["H6346"]],[25,28,["H5676"]],[28,30,["H5104"]]]},{"k":12335,"v":[[0,1,["H3027"]],[1,2,["H5921"]],[2,4,["H2388"]],[4,5,["H5816"]],[5,7,["H1121"]],[7,9,["H2736"]],[9,12,["H6884"]],[12,13,["H3027"]],[13,14,["H5921"]],[14,17,["H2388"]],[17,18,["H2608"]],[18,20,["H1121"]],[20,25,["H7546"]],[25,28,["H5800"]],[28,29,["H3389"]],[29,30,["H5704"]],[30,32,["H7342"]],[32,33,["H2346"]]]},{"k":12336,"v":[[0,2,["H3027"]],[2,3,["H5921"]],[3,5,["H2388"]],[5,6,["H7509"]],[6,8,["H1121"]],[8,10,["H2354"]],[10,12,["H8269"]],[12,15,["H2677"]],[15,16,["H6418"]],[16,18,["H3389"]]]},{"k":12337,"v":[[0,2,["H3027"]],[2,3,["H5921"]],[3,5,["H2388"]],[5,6,["H3042"]],[6,8,["H1121"]],[8,10,["H2739"]],[10,13,["H5048"]],[13,15,["H1004"]],[15,17,["H3027"]],[17,18,["H5921"]],[18,20,["H2388"]],[20,21,["H2407"]],[21,23,["H1121"]],[23,25,["H2813"]]]},{"k":12338,"v":[[0,1,["H4441"]],[1,3,["H1121"]],[3,5,["H2766"]],[5,7,["H2815"]],[7,9,["H1121"]],[9,11,["H6355"]],[11,12,["H2388"]],[12,14,["H8145"]],[14,15,["H4060"]],[15,18,["H4026"]],[18,21,["H8574"]]]},{"k":12339,"v":[[0,2,["H3027"]],[2,3,["H5921"]],[3,5,["H2388"]],[5,6,["H7967"]],[6,8,["H1121"]],[8,10,["H3873"]],[10,12,["H8269"]],[12,15,["H2677"]],[15,16,["H6418"]],[16,18,["H3389"]],[18,19,["H1931"]],[19,22,["H1323"]]]},{"k":12340,"v":[[0,0,["(H853)"]],[0,2,["H1516"]],[2,3,["H8179"]],[3,4,["H2388"]],[4,5,["H2586"]],[5,8,["H3427"]],[8,10,["H2182"]],[10,11,["H1992"]],[11,12,["H1129"]],[12,16,["H5975"]],[16,18,["H1817"]],[18,21,["H4514"]],[21,25,["H1280"]],[25,29,["H505"]],[29,30,["H520"]],[30,33,["H2346"]],[33,34,["H5704"]],[34,36,["H830"]],[36,37,["H8179"]]]},{"k":12341,"v":[[0,3,["H830"]],[3,4,["H8179"]],[4,5,["H2388"]],[5,6,["H4441"]],[6,8,["H1121"]],[8,10,["H7394"]],[10,12,["H8269"]],[12,14,["H6418"]],[14,16,["H1021"]],[16,17,["H1931"]],[17,18,["H1129"]],[18,22,["H5975"]],[22,24,["H1817"]],[24,27,["H4514"]],[27,31,["H1280"]],[31,32,[]]]},{"k":12342,"v":[[0,3,["H8179"]],[3,6,["H5869"]],[6,7,["H2388"]],[7,8,["H7968"]],[8,10,["H1121"]],[10,12,["H3626"]],[12,14,["H8269"]],[14,16,["H6418"]],[16,18,["H4709"]],[18,19,["H1931"]],[19,20,["H1129"]],[20,23,["H2926"]],[23,27,["H5975"]],[27,29,["H1817"]],[29,32,["H4514"]],[32,36,["H1280"]],[36,40,["H2346"]],[40,43,["H1295"]],[43,45,["H7975"]],[45,48,["H4428"]],[48,49,["H1588"]],[49,51,["H5704"]],[51,53,["H4609"]],[53,56,["H3381"]],[56,59,["H4480","H5892"]],[59,61,["H1732"]]]},{"k":12343,"v":[[0,1,["H310"]],[1,3,["H2388"]],[3,4,["H5166"]],[4,6,["H1121"]],[6,8,["H5802"]],[8,10,["H8269"]],[10,13,["H2677"]],[13,14,["H6418"]],[14,16,["H1049"]],[16,17,["H5704"]],[17,21,["H5048"]],[21,23,["H6913"]],[23,25,["H1732"]],[25,27,["H5704"]],[27,29,["H1295"]],[29,32,["H6213"]],[32,34,["H5704"]],[34,36,["H1004"]],[36,39,["H1368"]]]},{"k":12344,"v":[[0,1,["H310"]],[1,3,["H2388"]],[3,5,["H3881"]],[5,6,["H7348"]],[6,8,["H1121"]],[8,10,["H1137"]],[10,11,["H3027"]],[11,12,["H5921"]],[12,14,["H2388"]],[14,15,["H2811"]],[15,17,["H8269"]],[17,20,["H2677"]],[20,21,["H6418"]],[21,23,["H7084"]],[23,26,["H6418"]]]},{"k":12345,"v":[[0,1,["H310"]],[1,3,["H2388"]],[3,5,["H251"]],[5,6,["H942"]],[6,8,["H1121"]],[8,10,["H2582"]],[10,12,["H8269"]],[12,15,["H2677"]],[15,16,["H6418"]],[16,18,["H7084"]]]},{"k":12346,"v":[[0,2,["H3027"]],[2,3,["H5921"]],[3,5,["H2388"]],[5,6,["H5829"]],[6,8,["H1121"]],[8,10,["H3442"]],[10,12,["H8269"]],[12,14,["H4709"]],[14,15,["H8145"]],[15,16,["H4060"]],[16,18,["H4480","H5048"]],[18,21,["H5927"]],[21,24,["H5402"]],[24,27,["H4740"]],[27,30,[]]]},{"k":12347,"v":[[0,1,["H310"]],[1,3,["H1263"]],[3,5,["H1121"]],[5,7,["H2079"]],[7,8,["H2734"]],[8,9,["H2388"]],[9,11,["H8145"]],[11,12,["H4060"]],[12,13,["H4480"]],[13,15,["H4740"]],[15,19,["H5704"]],[19,21,["H6607"]],[21,24,["H1004"]],[24,26,["H475"]],[26,28,["H1419"]],[28,29,["H3548"]]]},{"k":12348,"v":[[0,1,["H310"]],[1,3,["H2388"]],[3,4,["H4822"]],[4,6,["H1121"]],[6,8,["H223"]],[8,10,["H1121"]],[10,12,["H6976"]],[12,13,["H8145"]],[13,14,["H4060"]],[14,17,["H4480","H6607"]],[17,20,["H1004"]],[20,22,["H475"]],[22,24,["H5704"]],[24,26,["H8503"]],[26,29,["H1004"]],[29,31,["H475"]]]},{"k":12349,"v":[[0,2,["H310"]],[2,4,["H2388"]],[4,6,["H3548"]],[6,8,["H376"]],[8,11,["H3603"]]]},{"k":12350,"v":[[0,1,["H310"]],[1,3,["H2388"]],[3,4,["H1144"]],[4,6,["H2815"]],[6,8,["H5048"]],[8,10,["H1004"]],[10,11,["H310"]],[11,13,["H2388"]],[13,14,["H5838"]],[14,16,["H1121"]],[16,18,["H4641"]],[18,20,["H1121"]],[20,22,["H6055"]],[22,23,["H681"]],[23,25,["H1004"]]]},{"k":12351,"v":[[0,1,["H310"]],[1,3,["H2388"]],[3,4,["H1131"]],[4,6,["H1121"]],[6,8,["H2582"]],[8,9,["H8145"]],[9,10,["H4060"]],[10,13,["H4480","H1004"]],[13,15,["H5838"]],[15,16,["H5704"]],[16,18,["H4740"]],[18,23,["H5704"]],[23,25,["H6438"]]]},{"k":12352,"v":[[0,1,["H6420"]],[1,3,["H1121"]],[3,5,["H186"]],[5,7,["H4480","H5048"]],[7,9,["H4740"]],[9,15,["H4026"]],[15,18,["H3318"]],[18,21,["H4428"]],[21,22,["H5945"]],[22,23,["H4480","H1004"]],[23,24,["H834"]],[24,28,["H2691"]],[28,31,["H4307"]],[31,32,["H310"]],[32,34,["H6305"]],[34,36,["H1121"]],[36,38,["H6551"]]]},{"k":12353,"v":[[0,3,["H5411"]],[3,4,["H1961","H3427"]],[4,6,["H6077"]],[6,7,["H5704"]],[7,11,["H5048"]],[11,13,["H4325"]],[13,14,["H8179"]],[14,17,["H4217"]],[17,20,["H4026"]],[20,23,["H3318"]]]},{"k":12354,"v":[[0,1,["H310"]],[1,4,["H8621"]],[4,5,["H2388"]],[5,6,["H8145"]],[6,7,["H4060"]],[7,9,["H4480","H5048"]],[9,11,["H1419"]],[11,12,["H4026"]],[12,15,["H3318"]],[15,17,["H5704"]],[17,19,["H2346"]],[19,21,["H6077"]]]},{"k":12355,"v":[[0,2,["H4480","H5921"]],[2,4,["H5483"]],[4,5,["H8179"]],[5,6,["H2388"]],[6,8,["H3548"]],[8,10,["H376"]],[10,12,["H5048"]],[12,14,["H1004"]]]},{"k":12356,"v":[[0,1,["H310"]],[1,3,["H2388"]],[3,4,["H6659"]],[4,6,["H1121"]],[6,8,["H564"]],[8,10,["H5048"]],[10,12,["H1004"]],[12,13,["H310"]],[13,15,["H2388"]],[15,17,["H8098"]],[17,19,["H1121"]],[19,21,["H7935"]],[21,23,["H8104"]],[23,26,["H4217"]],[26,27,["H8179"]]]},{"k":12357,"v":[[0,1,["H310"]],[1,3,["H2388"]],[3,4,["H2608"]],[4,6,["H1121"]],[6,8,["H8018"]],[8,10,["H2586"]],[10,12,["H8345"]],[12,13,["H1121"]],[13,15,["H6764"]],[15,16,["H8145"]],[16,17,["H4060"]],[17,18,["H310"]],[18,20,["H2388"]],[20,21,["H4918"]],[21,23,["H1121"]],[23,25,["H1296"]],[25,27,["H5048"]],[27,29,["H5393"]]]},{"k":12358,"v":[[0,1,["H310"]],[1,3,["H2388"]],[3,4,["H4441"]],[4,6,["H6885"]],[6,7,["H1121"]],[7,8,["H5704"]],[8,10,["H1004"]],[10,13,["H5411"]],[13,17,["H7402"]],[17,19,["H5048"]],[19,21,["H8179"]],[21,22,["H4663"]],[22,24,["H5704"]],[24,27,["H5944"]],[27,30,["H6438"]]]},{"k":12359,"v":[[0,2,["H996"]],[2,5,["H5944"]],[5,8,["H6438"]],[8,11,["H6629"]],[11,12,["H8179"]],[12,13,["H2388"]],[13,15,["H6884"]],[15,18,["H7402"]]]},{"k":12360,"v":[[0,5,["H1961"]],[5,7,["H834"]],[7,8,["H5571"]],[8,9,["H8085"]],[9,10,["H3588"]],[10,11,["H587"]],[11,12,["H1129","(H853)"]],[12,14,["H2346"]],[14,17,["H2734"]],[17,21,["H7235","H3707"]],[21,23,["H3932","H5921"]],[23,25,["H3064"]]]},{"k":12361,"v":[[0,3,["H559"]],[3,4,["H6440"]],[4,6,["H251"]],[6,9,["H2428"]],[9,11,["H8111"]],[11,13,["H559"]],[13,14,["H4100"]],[14,15,["H6213"]],[15,17,["H537"]],[17,18,["H3064"]],[18,21,["H5800"]],[21,25,["H2076"]],[25,30,["H3615"]],[30,33,["H3117"]],[33,36,["H2421","(H853)"]],[36,38,["H68"]],[38,42,["H4480","H6194"]],[42,45,["H6083"]],[45,46,["H1992"]],[46,48,["H8313"]]]},{"k":12362,"v":[[0,2,["H2900"]],[2,4,["H5984"]],[4,6,["H681"]],[6,10,["H559"]],[10,11,["H1571"]],[11,13,["H834"]],[13,14,["H1992"]],[14,15,["H1129"]],[15,16,["H518"]],[16,18,["H7776"]],[18,20,["H5927"]],[20,25,["H6555"]],[25,27,["H68"]],[27,28,["H2346"]]]},{"k":12363,"v":[[0,1,["H8085"]],[1,4,["H430"]],[4,5,["H3588"]],[5,7,["H1961"]],[7,8,["H939"]],[8,10,["H7725"]],[10,12,["H2781"]],[12,13,["H413"]],[13,16,["H7218"]],[16,18,["H5414"]],[18,22,["H961"]],[22,25,["H776"]],[25,27,["H7633"]]]},{"k":12364,"v":[[0,2,["H3680","H5921"]],[2,3,["H408"]],[3,5,["H5771"]],[5,8,["H408"]],[8,10,["H2403"]],[10,13,["H4229"]],[13,15,["H4480","H6440"]],[15,17,["H3588"]],[17,23,["H3707"]],[23,24,["H5048"]],[24,26,["H1129"]]]},{"k":12365,"v":[[0,2,["H1129"]],[2,3,["(H853)"]],[3,5,["H2346"]],[5,7,["H3605"]],[7,9,["H2346"]],[9,12,["H7194"]],[12,13,["H5704"]],[13,15,["H2677"]],[15,19,["H5971"]],[19,20,["H1961"]],[20,22,["H3820"]],[22,24,["H6213"]]]},{"k":12366,"v":[[0,5,["H1961"]],[5,7,["H834"]],[7,8,["H5571"]],[8,10,["H2900"]],[10,13,["H6163"]],[13,16,["H5984"]],[16,19,["H796"]],[19,20,["H8085"]],[20,21,["H3588"]],[21,23,["H2346"]],[23,25,["H3389"]],[25,28,["H5927","H724"]],[28,30,["H3588"]],[30,32,["H6555"]],[32,33,["H2490"]],[33,36,["H5640"]],[36,40,["H3966"]],[40,41,["H2734"]]]},{"k":12367,"v":[[0,2,["H7194"]],[2,3,["H3605"]],[3,6,["H3162"]],[6,8,["H935"]],[8,11,["H3898"]],[11,13,["H3389"]],[13,16,["H6213","H8442"]],[16,17,[]]]},{"k":12368,"v":[[0,5,["H6419"]],[5,6,["H413"]],[6,8,["H430"]],[8,10,["H5975"]],[10,12,["H4929"]],[12,13,["H5921"]],[13,15,["H3119"]],[15,17,["H3915"]],[17,19,["H4480","H6440"]],[19,20,[]]]},{"k":12369,"v":[[0,2,["H3063"]],[2,3,["H559"]],[3,5,["H3581"]],[5,10,["H5449"]],[10,12,["H3782"]],[12,16,["H7235"]],[16,17,["H6083"]],[17,20,["H587"]],[20,22,["H3808"]],[22,23,["H3201"]],[23,25,["H1129"]],[25,27,["H2346"]]]},{"k":12370,"v":[[0,3,["H6862"]],[3,4,["H559"]],[4,7,["H3808"]],[7,8,["H3045"]],[8,9,["H3808"]],[9,10,["H7200"]],[10,11,["H5704","H834"]],[11,13,["H935"]],[13,14,["H413"]],[14,17,["H8432"]],[17,20,["H2026"]],[20,23,["(H853)"]],[23,25,["H4399"]],[25,27,["H7673"]]]},{"k":12371,"v":[[0,5,["H1961"]],[5,7,["H834"]],[7,9,["H3064"]],[9,11,["H3427"]],[11,12,["H681"]],[12,14,["H935"]],[14,16,["H559"]],[16,19,["H6235"]],[19,20,["H6471"]],[20,22,["H4480","H3605"]],[22,23,["H4725"]],[23,24,["H834"]],[24,27,["H7725"]],[27,28,["H5921"]],[28,34,[]]]},{"k":12372,"v":[[0,2,["H5975"]],[2,6,["H4480","H8482"]],[6,7,["H4725"]],[7,8,["H4480","H310"]],[8,10,["H2346"]],[10,15,["H6706"]],[15,18,["H5975","(H853)"]],[18,20,["H5971"]],[20,23,["H4940"]],[23,24,["H5973"]],[24,26,["H2719"]],[26,28,["H7420"]],[28,31,["H7198"]]]},{"k":12373,"v":[[0,3,["H7200"]],[3,6,["H6965"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H2715"]],[11,13,["H413"]],[13,15,["H5461"]],[15,17,["H413"]],[17,19,["H3499"]],[19,22,["H5971"]],[22,24,["H408"]],[24,26,["H3372"]],[26,27,["H4480","H6440"]],[27,29,["H2142","(H853)"]],[29,31,["H136"]],[31,34,["H1419"]],[34,36,["H3372"]],[36,38,["H3898"]],[38,39,["H5921"]],[39,41,["H251"]],[41,43,["H1121"]],[43,46,["H1323"]],[46,48,["H802"]],[48,51,["H1004"]]]},{"k":12374,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,8,["H341"]],[8,9,["H8085"]],[9,10,["H3588"]],[10,13,["H3045"]],[13,17,["H430"]],[17,23,["H6565","(H853)","H6098"]],[23,26,["H7725"]],[26,27,["H3605"]],[27,30,["H413"]],[30,32,["H2346"]],[32,34,["H376"]],[34,35,["H413"]],[35,37,["H4399"]]]},{"k":12375,"v":[[0,5,["H1961"]],[5,6,["H4480"]],[6,7,["H1931"]],[7,8,["H3117"]],[8,12,["H2677"]],[12,15,["H5288"]],[15,16,["H6213"]],[16,19,["H4399"]],[19,23,["H2677"]],[23,26,["H2388"]],[26,29,["H7420"]],[29,31,["H4043"]],[31,34,["H7198"]],[34,37,["H8302"]],[37,40,["H8269"]],[40,42,["H310"]],[42,43,["H3605"]],[43,45,["H1004"]],[45,47,["H3063"]]]},{"k":12376,"v":[[0,3,["H1129"]],[3,6,["H2346"]],[6,10,["H5375"]],[10,11,["H5447"]],[11,15,["H6006"]],[15,19,["H259"]],[19,22,["H3027"]],[22,23,["H6213"]],[23,26,["H4399"]],[26,30,["H259"]],[30,32,["H2388"]],[32,34,["H7973"]]]},{"k":12377,"v":[[0,3,["H1129"]],[3,5,["H376"]],[5,8,["H2719"]],[8,9,["H631"]],[9,10,["H5921"]],[10,12,["H4975"]],[12,15,["H1129"]],[15,19,["H8628"]],[19,21,["H7782"]],[21,23,["H681"]],[23,24,[]]]},{"k":12378,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H2715"]],[6,8,["H413"]],[8,10,["H5461"]],[10,12,["H413"]],[12,14,["H3499"]],[14,17,["H5971"]],[17,19,["H4399"]],[19,21,["H7235"]],[21,23,["H7342"]],[23,25,["H587"]],[25,27,["H6504"]],[27,28,["H5921"]],[28,30,["H2346"]],[30,31,["H376"]],[31,32,["H7350"]],[32,34,["H4480","H251"]]]},{"k":12379,"v":[[0,2,["H834"]],[2,3,["H4725"]],[3,6,["H8085","(H853)"]],[6,8,["H6963"]],[8,11,["H7782"]],[11,12,["H6908"]],[12,14,["H8033"]],[14,15,["H413"]],[15,18,["H430"]],[18,20,["H3898"]],[20,22,[]]]},{"k":12380,"v":[[0,2,["H587"]],[2,3,["H6213"]],[3,6,["H4399"]],[6,8,["H2677"]],[8,11,["H2388"]],[11,13,["H7420"]],[13,16,["H4480","H5927"]],[16,19,["H7837"]],[19,20,["H5704"]],[20,22,["H3556"]],[22,23,["H3318"]]]},{"k":12381,"v":[[0,1,["H1571"]],[1,4,["H1931"]],[4,5,["H6256"]],[5,6,["H559"]],[6,10,["H5971"]],[10,13,["H376"]],[13,16,["H5288"]],[16,17,["H3885"]],[17,18,["H8432"]],[18,19,["H3389"]],[19,23,["H3915"]],[23,26,["H1961"]],[26,28,["H4929"]],[28,32,["H4399"]],[32,35,["H3117"]]]},{"k":12382,"v":[[0,2,["H369"]],[2,3,["H589"]],[3,6,["H251"]],[6,9,["H5288"]],[9,12,["H376"]],[12,15,["H4929"]],[15,16,["H834"]],[16,17,["H310"]],[17,19,["H369"]],[19,21,["H587"]],[21,23,["H6584"]],[23,25,["H899"]],[25,29,["H376"]],[29,32,["H7971"]],[32,34,["H4325"]]]},{"k":12383,"v":[[0,3,["H1961"]],[3,5,["H1419"]],[5,6,["H6818"]],[6,9,["H5971"]],[9,13,["H802"]],[13,14,["H413"]],[14,16,["H251"]],[16,18,["H3064"]]]},{"k":12384,"v":[[0,3,["H3426"]],[3,4,["H834"]],[4,5,["H559"]],[5,6,["H587"]],[6,8,["H1121"]],[8,11,["H1323"]],[11,13,["H7227"]],[13,17,["H3947"]],[17,18,["H1715"]],[18,24,["H398"]],[24,26,["H2421"]]]},{"k":12385,"v":[[0,4,["H3426"]],[4,5,["H834"]],[5,6,["H559"]],[6,7,["H587"]],[7,9,["H6148"]],[9,11,["H7704"]],[11,12,["H3754"]],[12,14,["H1004"]],[14,18,["H3947"]],[18,19,["H1715"]],[19,23,["H7458"]]]},{"k":12386,"v":[[0,2,["H3426"]],[2,4,["H834"]],[4,5,["H559"]],[5,8,["H3867"]],[8,9,["H3701"]],[9,12,["H4428"]],[12,13,["H4060"]],[13,18,["H7704"]],[18,20,["H3754"]]]},{"k":12387,"v":[[0,2,["H6258"]],[2,4,["H1320"]],[4,8,["H1320"]],[8,11,["H251"]],[11,13,["H1121"]],[13,16,["H1121"]],[16,18,["H2009"]],[18,19,["H587"]],[19,22,["H3533","(H853)"]],[22,24,["H1121"]],[24,27,["H1323"]],[27,30,["H5650"]],[30,35,["H4480","H1323"]],[35,36,["H3426"]],[36,39,["H3533"]],[39,41,["H369"]],[41,46,["H410","H3027"]],[46,51,["H312"]],[51,55,["H7704"]],[55,57,["H3754"]]]},{"k":12388,"v":[[0,4,["H3966"]],[4,5,["H2734"]],[5,6,["H834"]],[6,8,["H8085","(H853)"]],[8,10,["H2201"]],[10,12,["H428"]],[12,13,["H1697"]]]},{"k":12389,"v":[[0,3,["H4427"]],[3,4,["H5921"]],[4,5,["H3820"]],[5,8,["H7378","(H853)"]],[8,10,["H2715"]],[10,13,["H5461"]],[13,15,["H559"]],[15,18,["H859"]],[18,19,["H5378"]],[19,20,["H4855"]],[20,22,["H376"]],[22,25,["H251"]],[25,28,["H5414"]],[28,30,["H1419"]],[30,31,["H6952"]],[31,32,["H5921"]],[32,33,[]]]},{"k":12390,"v":[[0,3,["H559"]],[3,6,["H587"]],[6,9,["H1767"]],[9,11,["H7069","(H853)"]],[11,13,["H251"]],[13,15,["H3064"]],[15,18,["H4376"]],[18,21,["H1471"]],[21,24,["H859"]],[24,25,["H1571"]],[25,26,["H4376","(H853)"]],[26,28,["H251"]],[28,33,["H4376"]],[33,40,["H2790"]],[40,42,["H4672"]],[42,43,["H3808","H1697"]],[43,45,[]]]},{"k":12391,"v":[[0,3,["H559"]],[3,6,["H3808"]],[6,7,["H2896","H1697"]],[7,8,["H834"]],[8,9,["H859"]],[9,10,["H6213"]],[10,13,["H3808"]],[13,15,["H1980"]],[15,18,["H3374"]],[18,21,["H430"]],[21,25,["H4480","H2781"]],[25,28,["H1471"]],[28,30,["H341"]]]},{"k":12392,"v":[[0,1,["H589"]],[1,2,["H1571"]],[2,5,["H251"]],[5,8,["H5288"]],[8,10,["H5383"]],[10,13,["H3701"]],[13,15,["H1715"]],[15,17,["H4994"]],[17,22,["H5800","(H853)"]],[22,23,["H2088"]],[23,24,["H4855"]]]},{"k":12393,"v":[[0,1,["H7725"]],[1,3,["H4994"]],[3,9,["H3117"]],[9,11,["H7704"]],[11,13,["H3754"]],[13,15,["H2132"]],[15,18,["H1004"]],[18,21,["H3967"]],[21,25,["H3701"]],[25,29,["H1715"]],[29,31,["H8492"]],[31,34,["H3323"]],[34,35,["H834"]],[35,36,["H859"]],[36,37,["H5383"]],[37,39,[]]]},{"k":12394,"v":[[0,2,["H559"]],[2,6,["H7725"]],[6,10,["H1245"]],[10,11,["H3808"]],[11,12,["H4480"]],[12,14,["H3651"]],[14,17,["H6213"]],[17,18,["H834"]],[18,19,["H859"]],[19,20,["H559"]],[20,23,["H7121","(H853)"]],[23,25,["H3548"]],[25,29,["H7650"]],[29,35,["H6213"]],[35,38,["H2088"]],[38,39,["H1697"]]]},{"k":12395,"v":[[0,1,["H1571"]],[1,3,["H5287"]],[3,5,["H2684"]],[5,7,["H559"]],[7,8,["H3602"]],[8,9,["H430"]],[9,11,["H5287","(H853)"]],[11,12,["H3605"]],[12,13,["H376"]],[13,16,["H4480","H1004"]],[16,20,["H4480","H3018"]],[20,21,["H834"]],[21,22,["H6965"]],[22,23,["H3808","(H853)"]],[23,24,["H2088"]],[24,25,["H1697"]],[25,27,["H3602"]],[27,28,["H1961"]],[28,31,["H5287"]],[31,33,["H7386"]],[33,35,["H3605"]],[35,37,["H6951"]],[37,38,["H559"]],[38,39,["H543"]],[39,41,["H1984","(H853)"]],[41,43,["H3068"]],[43,46,["H5971"]],[46,47,["H6213"]],[47,50,["H2088"]],[50,51,["H1697"]]]},{"k":12396,"v":[[0,1,["H1571"]],[1,4,["H4480","H3117"]],[4,5,["H834"]],[5,8,["H6680"]],[8,10,["H1961"]],[10,12,["H6346"]],[12,15,["H776"]],[15,17,["H3063"]],[17,20,["H6242"]],[20,21,["H4480","H8141"]],[21,23,["H5704"]],[23,25,["H8147"]],[25,27,["H7970"]],[27,28,["H8141"]],[28,30,["H783"]],[30,32,["H4428"]],[32,35,["H8147","H6240"]],[35,36,["H8141"]],[36,37,["H589"]],[37,40,["H251"]],[40,42,["H3808"]],[42,43,["H398"]],[43,45,["H3899"]],[45,48,["H6346"]]]},{"k":12397,"v":[[0,3,["H7223"]],[3,4,["H6346"]],[4,5,["H834"]],[5,8,["H6440"]],[8,11,["H3513"]],[11,12,["H5921"]],[12,14,["H5971"]],[14,17,["H3947"]],[17,18,["H4480"]],[18,20,["H3899"]],[20,22,["H3196"]],[22,23,["H310"]],[23,24,["H705"]],[24,25,["H8255"]],[25,27,["H3701"]],[27,28,["H1571"]],[28,31,["H5288"]],[31,33,["H7980"]],[33,34,["H5921"]],[34,36,["H5971"]],[36,38,["H3651"]],[38,39,["H6213"]],[39,40,["H3808"]],[40,41,["H589"]],[41,42,["H4480","H6440"]],[42,45,["H3374"]],[45,47,["H430"]]]},{"k":12398,"v":[[0,2,["H1571"]],[2,4,["H2388"]],[4,7,["H4399"]],[7,9,["H2063"]],[9,10,["H2346"]],[10,11,["H3808"]],[11,12,["H7069"]],[12,15,["H7704"]],[15,17,["H3605"]],[17,19,["H5288"]],[19,21,["H6908"]],[21,22,["H8033"]],[22,23,["H5921"]],[23,25,["H4399"]]]},{"k":12399,"v":[[0,4,["H5921"]],[4,6,["H7979"]],[6,8,["H3967"]],[8,10,["H2572","H376"]],[10,13,["H3064"]],[13,15,["H5461"]],[15,19,["H935"]],[19,20,["H413"]],[20,23,["H4480"]],[23,25,["H1471"]],[25,26,["H834"]],[26,28,["H5439"]],[28,29,[]]]},{"k":12400,"v":[[0,3,["H834"]],[3,4,["H1961"]],[4,5,["H6213"]],[5,8,["H3117","H259"]],[8,10,["H259"]],[10,11,["H7794"]],[11,13,["H8337"]],[13,14,["H1305"]],[14,15,["H6629"]],[15,17,["H6833"]],[17,19,["H6213"]],[19,23,["H996"]],[23,25,["H6235"]],[25,26,["H3117"]],[26,27,["H7235"]],[27,29,["H3605"]],[29,32,["H3196"]],[32,35,["H5973"]],[35,36,["H2088"]],[36,37,["H1245"]],[37,38,["H3808"]],[38,41,["H3899"]],[41,44,["H6346"]],[44,45,["H3588"]],[45,47,["H5656"]],[47,49,["H3513"]],[49,50,["H5921"]],[50,51,["H2088"]],[51,52,["H5971"]]]},{"k":12401,"v":[[0,1,["H2142"]],[1,5,["H430"]],[5,7,["H2896"]],[7,10,["H3605"]],[10,11,["H834"]],[11,14,["H6213"]],[14,15,["H5921"]],[15,16,["H2088"]],[16,17,["H5971"]]]},{"k":12402,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H5571"]],[7,9,["H2900"]],[9,11,["H1654"]],[11,13,["H6163"]],[13,16,["H3499"]],[16,19,["H341"]],[19,20,["H8085"]],[20,21,["H3588"]],[21,24,["H1129","(H853)"]],[24,26,["H2346"]],[26,31,["H3808"]],[31,32,["H6556"]],[32,33,["H3498"]],[33,35,["H1571"]],[35,36,["H5704"]],[36,37,["H1931"]],[37,38,["H6256"]],[38,41,["H3808"]],[41,43,["H5975"]],[43,45,["H1817"]],[45,48,["H8179"]]]},{"k":12403,"v":[[0,2,["H5571"]],[2,4,["H1654"]],[4,5,["H7971"]],[5,6,["H413"]],[6,8,["H559"]],[8,9,["H1980"]],[9,12,["H3259"]],[12,13,["H3162"]],[13,19,["H3715"]],[19,22,["H1237"]],[22,24,["H207"]],[24,26,["H1992"]],[26,27,["H2803"]],[27,29,["H6213"]],[29,31,["H7451"]]]},{"k":12404,"v":[[0,3,["H7971"]],[3,4,["H4397"]],[4,5,["H5921"]],[5,7,["H559"]],[7,8,["H589"]],[8,10,["H6213"]],[10,12,["H1419"]],[12,13,["H4399"]],[13,17,["H3808","H3201"]],[17,19,["H3381"]],[19,20,["H4100"]],[20,23,["H4399"]],[23,24,["H7673"]],[24,25,["H834"]],[25,27,["H7503"]],[27,31,["H3381"]],[31,32,["H413"]],[32,33,[]]]},{"k":12405,"v":[[0,3,["H7971"]],[3,4,["H413"]],[4,6,["H702"]],[6,7,["H6471"]],[7,9,["H2088"]],[9,10,["H1697"]],[10,13,["H7725"]],[13,17,["H2088"]],[17,18,["H1697"]]]},{"k":12406,"v":[[0,2,["H7971"]],[2,3,["H5571","(H853)"]],[3,5,["H5288"]],[5,6,["H413"]],[6,9,["H2088"]],[9,10,["H1697"]],[10,12,["H2549"]],[12,13,["H6471"]],[13,16,["H6605"]],[16,17,["H107"]],[17,20,["H3027"]]]},{"k":12407,"v":[[0,3,["H3789"]],[3,6,["H8085"]],[6,9,["H1471"]],[9,11,["H1654"]],[11,12,["H559"]],[12,15,["H859"]],[15,18,["H3064"]],[18,19,["H2803"]],[19,21,["H4775"]],[21,22,["H5921"]],[22,24,["H3651"]],[24,25,["H859"]],[25,26,["H1129"]],[26,28,["H2346"]],[28,30,["H859"]],[30,32,["H1933"]],[32,34,["H4428"]],[34,37,["H428"]],[37,38,["H1697"]]]},{"k":12408,"v":[[0,4,["H1571"]],[4,5,["H5975"]],[5,6,["H5030"]],[6,8,["H7121"]],[8,9,["H5921"]],[9,12,["H3389"]],[12,13,["H559"]],[13,17,["H4428"]],[17,19,["H3063"]],[19,21,["H6258"]],[21,25,["H8085"]],[25,28,["H4428"]],[28,31,["H428"]],[31,32,["H1697"]],[32,33,["H1980"]],[33,34,["H6258"]],[34,40,["H3289"]],[40,41,["H3162"]]]},{"k":12409,"v":[[0,3,["H7971"]],[3,4,["H413"]],[4,6,["H559"]],[6,8,["H1961"]],[8,9,["H3808"]],[9,10,["H428"]],[10,11,["H1697"]],[11,13,["H834"]],[13,14,["H859"]],[14,15,["H559"]],[15,16,["H3588"]],[16,17,["H859"]],[17,18,["H908"]],[18,24,["H4480","H3820"]]]},{"k":12410,"v":[[0,1,["H3588"]],[1,3,["H3605"]],[3,6,["H3372","(H853)"]],[6,7,["H559"]],[7,9,["H3027"]],[9,12,["H7503"]],[12,13,["H4480"]],[13,15,["H4399"]],[15,19,["H3808"]],[19,20,["H6213"]],[20,21,["H6258"]],[21,25,["H2388","(H853)"]],[25,27,["H3027"]]]},{"k":12411,"v":[[0,2,["H589"]],[2,3,["H935"]],[3,6,["H1004"]],[6,8,["H8098"]],[8,10,["H1121"]],[10,12,["H1806"]],[12,14,["H1121"]],[14,16,["H4105"]],[16,17,["H1931"]],[17,20,["H6113"]],[20,23,["H559"]],[23,27,["H3259"]],[27,28,["H413"]],[28,30,["H1004"]],[30,32,["H430"]],[32,33,["H413","H8432"]],[33,35,["H1964"]],[35,39,["H5462"]],[39,41,["H1817"]],[41,44,["H1964"]],[44,45,["H3588"]],[45,48,["H935"]],[48,50,["H2026"]],[50,55,["H3915"]],[55,58,["H935"]],[58,60,["H2026"]],[60,61,[]]]},{"k":12412,"v":[[0,3,["H559"]],[3,9,["H3644","H376"]],[9,10,["H1272"]],[10,12,["H4310"]],[12,15,["H834"]],[15,18,["H3644"]],[18,21,["H935"]],[21,22,["H413"]],[22,24,["H1964"]],[24,28,["H2425"]],[28,31,["H3808"]],[31,33,["H935"]]]},{"k":12413,"v":[[0,2,["H2009"]],[2,4,["H5234"]],[4,6,["H430"]],[6,8,["H3808"]],[8,9,["H7971"]],[9,11,["H3588"]],[11,14,["H1696"]],[14,16,["H5016"]],[16,17,["H5921"]],[17,20,["H2900"]],[20,22,["H5571"]],[22,24,["H7936"]],[24,25,[]]]},{"k":12414,"v":[[0,1,["H4616"]],[1,3,["H1931"]],[3,4,["H7936"]],[4,5,["H4616"]],[5,9,["H3372"]],[9,11,["H6213"]],[11,12,["H3651"]],[12,14,["H2398"]],[14,19,["H1961"]],[19,23,["H7451"]],[23,24,["H8034"]],[24,25,["H4616"]],[25,28,["H2778"]],[28,29,[]]]},{"k":12415,"v":[[0,2,["H430"]],[2,3,["H2142"]],[3,6,["H2900"]],[6,8,["H5571"]],[8,11,["H428"]],[11,13,["H4639"]],[13,14,["H1571"]],[14,17,["H5031"]],[17,18,["H5129"]],[18,21,["H3499"]],[21,24,["H5030"]],[24,25,["H834"]],[25,27,["H1961"]],[27,31,["H3372"]]]},{"k":12416,"v":[[0,3,["H2346"]],[3,5,["H7999"]],[5,8,["H6242"]],[8,10,["H2568"]],[10,15,["H435"]],[15,17,["H2572"]],[17,19,["H8147"]],[19,20,["H3117"]]]},{"k":12417,"v":[[0,5,["H1961"]],[5,7,["H834"]],[7,8,["H3605"]],[8,10,["H341"]],[10,11,["H8085"]],[11,14,["H3605"]],[14,16,["H1471"]],[16,17,["H834"]],[17,19,["H5439"]],[19,21,["H7200"]],[21,26,["H3966"]],[26,28,["H5307"]],[28,32,["H5869"]],[32,35,["H3045"]],[35,36,["H3588"]],[36,37,["H2063"]],[37,38,["H4399"]],[38,40,["H6213"]],[40,41,["H4480","H854"]],[41,43,["H430"]]]},{"k":12418,"v":[[0,1,["H1571"]],[1,3,["H1992"]],[3,4,["H3117"]],[4,6,["H2715"]],[6,8,["H3063"]],[8,9,["H1980"]],[9,10,["H7235"]],[10,11,["H107"]],[11,12,["H5921"]],[12,13,["H2900"]],[13,18,["H2900"]],[18,19,["H935"]],[19,20,["H413"]],[20,21,[]]]},{"k":12419,"v":[[0,1,["H3588"]],[1,4,["H7227"]],[4,6,["H3063"]],[6,7,["H1167","H7621"]],[7,10,["H3588"]],[10,11,["H1931"]],[11,16,["H2860"]],[16,18,["H7935"]],[18,20,["H1121"]],[20,22,["H733"]],[22,25,["H1121"]],[25,26,["H3076"]],[26,28,["H3947","(H853)"]],[28,30,["H1323"]],[30,32,["H4918"]],[32,34,["H1121"]],[34,36,["H1296"]]]},{"k":12420,"v":[[0,1,["H1571"]],[1,3,["H1961","H559"]],[3,6,["H2896"]],[6,7,["H6440"]],[7,10,["H1961","H3318"]],[10,12,["H1697"]],[12,16,["H2900"]],[16,17,["H7971"]],[17,18,["H107"]],[18,23,["H3372"]]]},{"k":12421,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,8,["H2346"]],[8,10,["H1129"]],[10,15,["H5975"]],[15,17,["H1817"]],[17,20,["H7778"]],[20,23,["H7891"]],[23,26,["H3881"]],[26,28,["H6485"]]]},{"k":12422,"v":[[0,3,["(H853)"]],[3,5,["H251"]],[5,6,["H2607"]],[6,8,["H2608"]],[8,10,["H8269"]],[10,13,["H1002"]],[13,14,["H6680"]],[14,15,["H5921"]],[15,16,["H3389"]],[16,17,["H3588"]],[17,18,["H1931"]],[18,21,["H571"]],[21,22,["H376"]],[22,24,["H3372","(H853)"]],[24,25,["H430"]],[25,27,["H4480","H7227"]]]},{"k":12423,"v":[[0,3,["H559"]],[3,7,["H3808"]],[7,9,["H8179"]],[9,11,["H3389"]],[11,13,["H6605"]],[13,14,["H5704"]],[14,16,["H8121"]],[16,18,["H2552"]],[18,20,["H5704"]],[20,21,["H1992"]],[21,22,["H5975"]],[22,26,["H1479"]],[26,28,["H1817"]],[28,30,["H270"]],[30,33,["H5975"]],[33,34,["H4931"]],[34,37,["H3427"]],[37,39,["H3389"]],[39,41,["H376"]],[41,44,["H4929"]],[44,47,["H376"]],[47,51,["H5048"]],[51,53,["H1004"]]]},{"k":12424,"v":[[0,3,["H5892"]],[3,5,["H7342","H3027"]],[5,7,["H1419"]],[7,10,["H5971"]],[10,12,["H4592"]],[12,13,["H8432"]],[13,16,["H1004"]],[16,18,["H369"]],[18,19,["H1129"]]]},{"k":12425,"v":[[0,3,["H430"]],[3,4,["H5414"]],[4,5,["H413"]],[5,7,["H3820"]],[7,10,["H6908","(H853)"]],[10,12,["H2715"]],[12,15,["H5461"]],[15,18,["H5971"]],[18,25,["H3187"]],[25,28,["H4672"]],[28,30,["H5612"]],[30,33,["H3188"]],[33,38,["H5927"]],[38,41,["H7223"]],[41,43,["H4672"]],[43,44,["H3789"]],[44,45,[]]]},{"k":12426,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,7,["H4082"]],[7,10,["H5927"]],[10,14,["H4480","H7628"]],[14,21,["H1473"]],[21,22,["H834"]],[22,23,["H5019"]],[23,25,["H4428"]],[25,27,["H894"]],[27,30,["H1540"]],[30,33,["H7725"]],[33,35,["H3389"]],[35,38,["H3063"]],[38,40,["H376"]],[40,43,["H5892"]]]},{"k":12427,"v":[[0,2,["H935"]],[2,3,["H5973"]],[3,4,["H2216"]],[4,5,["H3442"]],[5,6,["H5166"]],[6,7,["H5838"]],[7,8,["H7485"]],[8,9,["H5167"]],[9,10,["H4782"]],[10,11,["H1114"]],[11,12,["H4559"]],[12,13,["H902"]],[13,14,["H5149"]],[14,15,["H1196"]],[15,17,["H4557"]],[17,22,["H376"]],[22,25,["H5971"]],[25,27,["H3478"]],[27,29,[]]]},{"k":12428,"v":[[0,2,["H1121"]],[2,4,["H6551"]],[4,6,["H505"]],[6,8,["H3967"]],[8,9,["H7657"]],[9,11,["H8147"]]]},{"k":12429,"v":[[0,2,["H1121"]],[2,4,["H8203"]],[4,5,["H7969"]],[5,6,["H3967"]],[6,7,["H7657"]],[7,9,["H8147"]]]},{"k":12430,"v":[[0,2,["H1121"]],[2,4,["H733"]],[4,5,["H8337"]],[5,6,["H3967"]],[6,7,["H2572"]],[7,9,["H8147"]]]},{"k":12431,"v":[[0,2,["H1121"]],[2,4,["H6355"]],[4,7,["H1121"]],[7,9,["H3442"]],[9,11,["H3097"]],[11,13,["H505"]],[13,15,["H8083"]],[15,16,["H3967"]],[16,18,["H8083","H6240"]]]},{"k":12432,"v":[[0,2,["H1121"]],[2,4,["H5867"]],[4,6,["H505"]],[6,8,["H3967"]],[8,9,["H2572"]],[9,11,["H702"]]]},{"k":12433,"v":[[0,2,["H1121"]],[2,4,["H2240"]],[4,5,["H8083"]],[5,6,["H3967"]],[6,7,["H705"]],[7,9,["H2568"]]]},{"k":12434,"v":[[0,2,["H1121"]],[2,4,["H2140"]],[4,5,["H7651"]],[5,6,["H3967"]],[6,8,["H8346"]]]},{"k":12435,"v":[[0,2,["H1121"]],[2,4,["H1131"]],[4,5,["H8337"]],[5,6,["H3967"]],[6,7,["H705"]],[7,9,["H8083"]]]},{"k":12436,"v":[[0,2,["H1121"]],[2,4,["H893"]],[4,5,["H8337"]],[5,6,["H3967"]],[6,7,["H6242"]],[7,9,["H8083"]]]},{"k":12437,"v":[[0,2,["H1121"]],[2,4,["H5803"]],[4,6,["H505"]],[6,7,["H7969"]],[7,8,["H3967"]],[8,9,["H6242"]],[9,11,["H8147"]]]},{"k":12438,"v":[[0,2,["H1121"]],[2,4,["H140"]],[4,5,["H8337"]],[5,6,["H3967"]],[6,7,["H8346"]],[7,9,["H7651"]]]},{"k":12439,"v":[[0,2,["H1121"]],[2,4,["H902"]],[4,6,["H505"]],[6,7,["H8346"]],[7,9,["H7651"]]]},{"k":12440,"v":[[0,2,["H1121"]],[2,4,["H5720"]],[4,5,["H8337"]],[5,6,["H3967"]],[6,7,["H2572"]],[7,9,["H2568"]]]},{"k":12441,"v":[[0,2,["H1121"]],[2,4,["H333"]],[4,6,["H2396"]],[6,7,["H8673"]],[7,9,["H8083"]]]},{"k":12442,"v":[[0,2,["H1121"]],[2,4,["H2828"]],[4,5,["H7969"]],[5,6,["H3967"]],[6,7,["H6242"]],[7,9,["H8083"]]]},{"k":12443,"v":[[0,2,["H1121"]],[2,4,["H1209"]],[4,5,["H7969"]],[5,6,["H3967"]],[6,7,["H6242"]],[7,9,["H702"]]]},{"k":12444,"v":[[0,2,["H1121"]],[2,4,["H2756"]],[4,6,["H3967"]],[6,8,["H8147","H6240"]]]},{"k":12445,"v":[[0,2,["H1121"]],[2,4,["H1391"]],[4,5,["H8673"]],[5,7,["H2568"]]]},{"k":12446,"v":[[0,2,["H376"]],[2,4,["H1035"]],[4,6,["H5199"]],[6,8,["H3967"]],[8,9,["H8084"]],[9,11,["H8083"]]]},{"k":12447,"v":[[0,2,["H376"]],[2,4,["H6068"]],[4,6,["H3967"]],[6,7,["H6242"]],[7,9,["H8083"]]]},{"k":12448,"v":[[0,2,["H376"]],[2,4,["H1041"]],[4,5,["H705"]],[5,7,["H8147"]]]},{"k":12449,"v":[[0,2,["H376"]],[2,4,["H7157"]],[4,5,["H3716"]],[5,7,["H881"]],[7,8,["H7651"]],[8,9,["H3967"]],[9,10,["H705"]],[10,12,["H7969"]]]},{"k":12450,"v":[[0,2,["H376"]],[2,4,["H7414"]],[4,6,["H1387"]],[6,7,["H8337"]],[7,8,["H3967"]],[8,9,["H6242"]],[9,11,["H259"]]]},{"k":12451,"v":[[0,2,["H376"]],[2,4,["H4363"]],[4,6,["H3967"]],[6,8,["H6242"]],[8,10,["H8147"]]]},{"k":12452,"v":[[0,2,["H376"]],[2,4,["H1008"]],[4,6,["H5857"]],[6,8,["H3967"]],[8,9,["H6242"]],[9,11,["H7969"]]]},{"k":12453,"v":[[0,2,["H376"]],[2,5,["H312"]],[5,6,["H5015"]],[6,7,["H2572"]],[7,9,["H8147"]]]},{"k":12454,"v":[[0,2,["H1121"]],[2,5,["H312"]],[5,6,["H5867"]],[6,8,["H505"]],[8,10,["H3967"]],[10,11,["H2572"]],[11,13,["H702"]]]},{"k":12455,"v":[[0,2,["H1121"]],[2,4,["H2766"]],[4,5,["H7969"]],[5,6,["H3967"]],[6,8,["H6242"]]]},{"k":12456,"v":[[0,2,["H1121"]],[2,4,["H3405"]],[4,5,["H7969"]],[5,6,["H3967"]],[6,7,["H705"]],[7,9,["H2568"]]]},{"k":12457,"v":[[0,2,["H1121"]],[2,4,["H3850"]],[4,5,["H2307"]],[5,7,["H207"]],[7,8,["H7651"]],[8,9,["H3967"]],[9,10,["H6242"]],[10,12,["H259"]]]},{"k":12458,"v":[[0,2,["H1121"]],[2,4,["H5570"]],[4,5,["H7969"]],[5,6,["H505"]],[6,7,["H8672"]],[7,8,["H3967"]],[8,10,["H7970"]]]},{"k":12459,"v":[[0,2,["H3548"]],[2,4,["H1121"]],[4,6,["H3048"]],[6,9,["H1004"]],[9,11,["H3442"]],[11,12,["H8672"]],[12,13,["H3967"]],[13,14,["H7657"]],[14,16,["H7969"]]]},{"k":12460,"v":[[0,2,["H1121"]],[2,4,["H564"]],[4,6,["H505"]],[6,7,["H2572"]],[7,9,["H8147"]]]},{"k":12461,"v":[[0,2,["H1121"]],[2,4,["H6583"]],[4,6,["H505"]],[6,8,["H3967"]],[8,9,["H705"]],[9,11,["H7651"]]]},{"k":12462,"v":[[0,2,["H1121"]],[2,4,["H2766"]],[4,6,["H505"]],[6,8,["H7651","H6240"]]]},{"k":12463,"v":[[0,2,["H3881"]],[2,4,["H1121"]],[4,6,["H3442"]],[6,8,["H6934"]],[8,12,["H1121"]],[12,14,["H1937"]],[14,15,["H7657"]],[15,17,["H702"]]]},{"k":12464,"v":[[0,2,["H7891"]],[2,4,["H1121"]],[4,6,["H623"]],[6,8,["H3967"]],[8,9,["H705"]],[9,11,["H8083"]]]},{"k":12465,"v":[[0,2,["H7778"]],[2,4,["H1121"]],[4,6,["H7967"]],[6,8,["H1121"]],[8,10,["H333"]],[10,12,["H1121"]],[12,14,["H2929"]],[14,16,["H1121"]],[16,18,["H6126"]],[18,20,["H1121"]],[20,22,["H2410"]],[22,24,["H1121"]],[24,26,["H7630"]],[26,28,["H3967"]],[28,29,["H7970"]],[29,31,["H8083"]]]},{"k":12466,"v":[[0,2,["H5411"]],[2,4,["H1121"]],[4,6,["H6727"]],[6,8,["H1121"]],[8,10,["H2817"]],[10,12,["H1121"]],[12,14,["H2884"]]]},{"k":12467,"v":[[0,2,["H1121"]],[2,4,["H7026"]],[4,6,["H1121"]],[6,8,["H5517"]],[8,10,["H1121"]],[10,12,["H6303"]]]},{"k":12468,"v":[[0,2,["H1121"]],[2,4,["H3838"]],[4,6,["H1121"]],[6,8,["H2286"]],[8,10,["H1121"]],[10,12,["H8014"]]]},{"k":12469,"v":[[0,2,["H1121"]],[2,4,["H2605"]],[4,6,["H1121"]],[6,8,["H1435"]],[8,10,["H1121"]],[10,12,["H1515"]]]},{"k":12470,"v":[[0,2,["H1121"]],[2,4,["H7211"]],[4,6,["H1121"]],[6,8,["H7526"]],[8,10,["H1121"]],[10,12,["H5353"]]]},{"k":12471,"v":[[0,2,["H1121"]],[2,4,["H1502"]],[4,6,["H1121"]],[6,8,["H5798"]],[8,10,["H1121"]],[10,12,["H6454"]]]},{"k":12472,"v":[[0,2,["H1121"]],[2,4,["H1153"]],[4,6,["H1121"]],[6,8,["H4586"]],[8,10,["H1121"]],[10,12,["H5300"]]]},{"k":12473,"v":[[0,2,["H1121"]],[2,4,["H1227"]],[4,6,["H1121"]],[6,8,["H2709"]],[8,10,["H1121"]],[10,12,["H2744"]]]},{"k":12474,"v":[[0,2,["H1121"]],[2,4,["H1213"]],[4,6,["H1121"]],[6,8,["H4240"]],[8,10,["H1121"]],[10,12,["H2797"]]]},{"k":12475,"v":[[0,2,["H1121"]],[2,4,["H1302"]],[4,6,["H1121"]],[6,8,["H5516"]],[8,10,["H1121"]],[10,12,["H8547"]]]},{"k":12476,"v":[[0,2,["H1121"]],[2,4,["H5335"]],[4,6,["H1121"]],[6,8,["H2412"]]]},{"k":12477,"v":[[0,2,["H1121"]],[2,4,["H8010"]],[4,5,["H5650"]],[5,7,["H1121"]],[7,9,["H5479"]],[9,11,["H1121"]],[11,13,["H5618"]],[13,15,["H1121"]],[15,17,["H6514"]]]},{"k":12478,"v":[[0,2,["H1121"]],[2,4,["H3279"]],[4,6,["H1121"]],[6,8,["H1874"]],[8,10,["H1121"]],[10,12,["H1435"]]]},{"k":12479,"v":[[0,2,["H1121"]],[2,4,["H8203"]],[4,6,["H1121"]],[6,8,["H2411"]],[8,10,["H1121"]],[10,12,["H6380"]],[12,14,["H6380"]],[14,16,["H1121"]],[16,18,["H526"]]]},{"k":12480,"v":[[0,1,["H3605"]],[1,3,["H5411"]],[3,6,["H1121"]],[6,8,["H8010"]],[8,9,["H5650"]],[9,11,["H7969"]],[11,12,["H3967"]],[12,13,["H8673"]],[13,15,["H8147"]]]},{"k":12481,"v":[[0,2,["H428"]],[2,7,["H5927"]],[7,10,["H4480","H8528"]],[10,11,["H8521"]],[11,12,["H3743"]],[12,13,["H114"]],[13,15,["H564"]],[15,18,["H3201"]],[18,19,["H3808"]],[19,20,["H5046"]],[20,22,["H1"]],[22,23,["H1004"]],[23,26,["H2233"]],[26,27,["H518"]],[27,28,["H1992"]],[28,31,["H4480","H3478"]]]},{"k":12482,"v":[[0,2,["H1121"]],[2,4,["H1806"]],[4,6,["H1121"]],[6,8,["H2900"]],[8,10,["H1121"]],[10,12,["H5353"]],[12,13,["H8337"]],[13,14,["H3967"]],[14,15,["H705"]],[15,17,["H8147"]]]},{"k":12483,"v":[[0,2,["H4480"]],[2,4,["H3548"]],[4,6,["H1121"]],[6,8,["H2252"]],[8,10,["H1121"]],[10,12,["H6976"]],[12,14,["H1121"]],[14,16,["H1271"]],[16,17,["H834"]],[17,18,["H3947"]],[18,22,["H4480","H1323"]],[22,24,["H1271"]],[24,26,["H1569"]],[26,28,["H802"]],[28,31,["H7121"]],[31,32,["H5921"]],[32,34,["H8034"]]]},{"k":12484,"v":[[0,1,["H428"]],[1,2,["H1245"]],[2,4,["H3791"]],[4,11,["H3187"]],[11,15,["H3808"]],[15,16,["H4672"]],[16,21,["H1351"]],[21,23,["H4480"]],[23,25,["H3550"]]]},{"k":12485,"v":[[0,3,["H8660"]],[3,4,["H559"]],[4,7,["H834"]],[7,10,["H3808"]],[10,11,["H398"]],[11,16,["H4480","H6944","H6944"]],[16,17,["H5704"]],[17,19,["H5975"]],[19,22,["H3548"]],[22,24,["H224"]],[24,26,["H8550"]]]},{"k":12486,"v":[[0,2,["H3605"]],[2,3,["H6951"]],[3,4,["H259"]],[4,6,["H702","H7239"]],[6,9,["H505"]],[9,10,["H7969"]],[10,11,["H3967"]],[11,13,["H8346"]]]},{"k":12487,"v":[[0,1,["H4480","H905"]],[1,3,["H5650"]],[3,6,["H519"]],[6,8,["H428"]],[8,11,["H7651"]],[11,12,["H505"]],[12,13,["H7969"]],[13,14,["H3967"]],[14,15,["H7970"]],[15,17,["H7651"]],[17,22,["H3967"]],[22,23,["H705"]],[23,25,["H2568"]],[25,26,["H7891"]],[26,29,["H7891"]],[29,30,[]]]},{"k":12488,"v":[[0,2,["H5483"]],[2,3,["H7651"]],[3,4,["H3967"]],[4,5,["H7970"]],[5,7,["H8337"]],[7,9,["H6505"]],[9,11,["H3967"]],[11,12,["H705"]],[12,14,["H2568"]]]},{"k":12489,"v":[[0,2,["H1581"]],[2,3,["H702"]],[3,4,["H3967"]],[4,5,["H7970"]],[5,7,["H2568"]],[7,8,["H8337"]],[8,9,["H505"]],[9,10,["H7651"]],[10,11,["H3967"]],[11,13,["H6242"]],[13,14,["H2543"]]]},{"k":12490,"v":[[0,2,["H4480","H7117"]],[2,5,["H7218"]],[5,8,["H1"]],[8,9,["H5414"]],[9,12,["H4399"]],[12,14,["H8660"]],[14,15,["H5414"]],[15,18,["H214"]],[18,20,["H505"]],[20,21,["H1871"]],[21,23,["H2091"]],[23,24,["H2572"]],[24,25,["H4219"]],[25,26,["H2568"]],[26,27,["H3967"]],[27,29,["H7970"]],[29,30,["H3548"]],[30,31,["H3801"]]]},{"k":12491,"v":[[0,5,["H4480","H7218"]],[5,8,["H1"]],[8,9,["H5414"]],[9,12,["H214"]],[12,15,["H4399"]],[15,17,["H8147","H7239"]],[17,18,["H1871"]],[18,20,["H2091"]],[20,23,["H505"]],[23,26,["H3967"]],[26,27,["H4488"]],[27,29,["H3701"]]]},{"k":12492,"v":[[0,3,["H834"]],[3,5,["H7611"]],[5,8,["H5971"]],[8,9,["H5414"]],[9,11,["H8147"]],[11,12,["H7239"]],[12,13,["H1871"]],[13,15,["H2091"]],[15,18,["H505"]],[18,19,["H4488"]],[19,21,["H3701"]],[21,23,["H8346"]],[23,25,["H7651"]],[25,26,["H3548"]],[26,27,["H3801"]]]},{"k":12493,"v":[[0,3,["H3548"]],[3,6,["H3881"]],[6,9,["H7778"]],[9,12,["H7891"]],[12,15,["H4480"]],[15,17,["H5971"]],[17,20,["H5411"]],[20,22,["H3605"]],[22,23,["H3478"]],[23,24,["H3427"]],[24,27,["H5892"]],[27,31,["H7637"]],[31,32,["H2320"]],[32,33,["H5060"]],[33,35,["H1121"]],[35,37,["H3478"]],[37,41,["H5892"]]]},{"k":12494,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,7,["H622"]],[7,9,["H259"]],[9,10,["H376"]],[10,11,["H413"]],[11,13,["H7339"]],[13,14,["H834"]],[14,16,["H6440"]],[16,18,["H4325"]],[18,19,["H8179"]],[19,22,["H559"]],[22,24,["H5830"]],[24,26,["H5608"]],[26,28,["H935","(H853)"]],[28,30,["H5612"]],[30,33,["H8451"]],[33,35,["H4872"]],[35,36,["H834"]],[36,38,["H3068"]],[38,40,["H6680"]],[40,41,["(H853)"]],[41,42,["H3478"]]]},{"k":12495,"v":[[0,2,["H5830"]],[2,4,["H3548"]],[4,5,["H935","(H853)"]],[5,7,["H8451"]],[7,8,["H6440"]],[8,10,["H6951"]],[10,13,["H4480","H376"]],[13,15,["H802"]],[15,17,["H3605"]],[17,20,["H8085"]],[20,22,["H995"]],[22,25,["H259"]],[25,26,["H3117"]],[26,29,["H7637"]],[29,30,["H2320"]]]},{"k":12496,"v":[[0,3,["H7121"]],[3,5,["H6440"]],[5,7,["H7339"]],[7,8,["H834"]],[8,10,["H6440"]],[10,12,["H4325"]],[12,13,["H8179"]],[13,14,["H4480"]],[14,16,["H216"]],[16,17,["H5704"]],[17,18,["H4276","H3117"]],[18,19,["H5048"]],[19,21,["H376"]],[21,24,["H802"]],[24,29,["H995"]],[29,32,["H241"]],[32,34,["H3605"]],[34,36,["H5971"]],[36,39,["H413"]],[39,41,["H5612"]],[41,44,["H8451"]]]},{"k":12497,"v":[[0,2,["H5830"]],[2,4,["H5608"]],[4,5,["H5975"]],[5,6,["H5921"]],[6,8,["H4026"]],[8,10,["H6086"]],[10,11,["H834"]],[11,14,["H6213"]],[14,17,["H1697"]],[17,19,["H681"]],[19,21,["H5975"]],[21,22,["H4993"]],[22,24,["H8087"]],[24,26,["H6043"]],[26,28,["H223"]],[28,30,["H2518"]],[30,32,["H4641"]],[32,33,["H5921"]],[33,36,["H3225"]],[36,41,["H4480","H8040"]],[41,42,["H6305"]],[42,44,["H4332"]],[44,46,["H4441"]],[46,48,["H2828"]],[48,50,["H2806"]],[50,51,["H2148"]],[51,53,["H4918"]]]},{"k":12498,"v":[[0,2,["H5830"]],[2,3,["H6605"]],[3,5,["H5612"]],[5,8,["H5869"]],[8,10,["H3605"]],[10,12,["H5971"]],[12,13,["H3588"]],[13,15,["H1961"]],[15,16,["H4480","H5921"]],[16,17,["H3605"]],[17,19,["H5971"]],[19,23,["H6605"]],[23,25,["H3605"]],[25,27,["H5971"]],[27,29,["H5975"]]]},{"k":12499,"v":[[0,2,["H5830"]],[2,3,["H1288","(H853)"]],[3,5,["H3068"]],[5,7,["H1419"]],[7,8,["H430"]],[8,10,["H3605"]],[10,12,["H5971"]],[12,13,["H6030"]],[13,14,["H543"]],[14,15,["H543"]],[15,18,["H4607"]],[18,20,["H3027"]],[20,23,["H6915"]],[23,27,["H7812"]],[27,29,["H3068"]],[29,32,["H639"]],[32,35,["H776"]]]},{"k":12500,"v":[[0,2,["H3442"]],[2,4,["H1137"]],[4,6,["H8274"]],[6,7,["H3226"]],[7,8,["H6126"]],[8,9,["H7678"]],[9,10,["H1941"]],[10,11,["H4641"]],[11,12,["H7042"]],[12,13,["H5838"]],[13,14,["H3107"]],[14,15,["H2605"]],[15,16,["H6411"]],[16,19,["H3881"]],[19,20,["(H853)"]],[20,22,["H5971"]],[22,24,["H995"]],[24,26,["H8451"]],[26,29,["H5971"]],[29,31,["H5921"]],[31,33,["H5977"]]]},{"k":12501,"v":[[0,3,["H7121"]],[3,6,["H5612"]],[6,9,["H8451"]],[9,11,["H430"]],[11,12,["H6567"]],[12,14,["H7760"]],[14,16,["H7922"]],[16,21,["H995"]],[21,23,["H4744"]]]},{"k":12502,"v":[[0,2,["H5166"]],[2,3,["H1931"]],[3,6,["H8660"]],[6,8,["H5830"]],[8,10,["H3548"]],[10,12,["H5608"]],[12,15,["H3881"]],[15,17,["H995","(H853)"]],[17,19,["H5971"]],[19,20,["H559"]],[20,22,["H3605"]],[22,24,["H5971"]],[24,25,["H1931"]],[25,26,["H3117"]],[26,28,["H6918"]],[28,31,["H3068"]],[31,33,["H430"]],[33,34,["H56"]],[34,35,["H408"]],[35,36,["H408"]],[36,37,["H1058"]],[37,38,["H3588"]],[38,39,["H3605"]],[39,41,["H5971"]],[41,42,["H1058"]],[42,45,["H8085","(H853)"]],[45,47,["H1697"]],[47,50,["H8451"]]]},{"k":12503,"v":[[0,3,["H559"]],[3,6,["H1980"]],[6,9,["H398"]],[9,11,["H4924"]],[11,13,["H8354"]],[13,15,["H4477"]],[15,17,["H7971"]],[17,18,["H4490"]],[18,23,["H369"]],[23,25,["H3559"]],[25,26,["H3588"]],[26,28,["H3117"]],[28,30,["H6918"]],[30,33,["H113"]],[33,34,["H408"]],[34,37,["H6087"]],[37,38,["H3588"]],[38,40,["H2304"]],[40,43,["H3068"]],[43,46,["H4581"]]]},{"k":12504,"v":[[0,3,["H3881"]],[3,4,["H2814"]],[4,5,["H3605"]],[5,7,["H5971"]],[7,8,["H559"]],[8,11,["H2013"]],[11,12,["H3588"]],[12,14,["H3117"]],[14,16,["H6918"]],[16,17,["H408"]],[17,20,["H6087"]]]},{"k":12505,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H1980"]],[5,9,["H398"]],[9,12,["H8354"]],[12,15,["H7971"]],[15,16,["H4490"]],[16,19,["H6213"]],[19,20,["H1419"]],[20,21,["H8057"]],[21,22,["H3588"]],[22,25,["H995"]],[25,27,["H1697"]],[27,28,["H834"]],[28,30,["H3045"]],[30,32,[]]]},{"k":12506,"v":[[0,4,["H8145"]],[4,5,["H3117"]],[5,8,["H622"]],[8,10,["H7218"]],[10,13,["H1"]],[13,15,["H3605"]],[15,17,["H5971"]],[17,19,["H3548"]],[19,22,["H3881"]],[22,23,["H413"]],[23,24,["H5830"]],[24,26,["H5608"]],[26,29,["H7919","H413"]],[29,31,["H1697"]],[31,34,["H8451"]]]},{"k":12507,"v":[[0,3,["H4672"]],[3,4,["H3789"]],[4,7,["H8451"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H6680"]],[12,13,["H3027"]],[13,14,["H4872"]],[14,15,["H834"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,21,["H3427"]],[21,23,["H5521"]],[23,26,["H2282"]],[26,29,["H7637"]],[29,30,["H2320"]]]},{"k":12508,"v":[[0,2,["H834"]],[2,5,["H8085"]],[5,7,["H5674","H6963"]],[7,9,["H3605"]],[9,11,["H5892"]],[11,14,["H3389"]],[14,15,["H559"]],[15,17,["H3318"]],[17,20,["H2022"]],[20,22,["H935"]],[22,23,["H2132"]],[23,24,["H5929"]],[24,26,["H6086","H8081"]],[26,27,["H5929"]],[27,29,["H1918"]],[29,30,["H5929"]],[30,32,["H8558"]],[32,33,["H5929"]],[33,35,["H5929"]],[35,37,["H5687"]],[37,38,["H6086"]],[38,40,["H6213"]],[40,41,["H5521"]],[41,45,["H3789"]]]},{"k":12509,"v":[[0,3,["H5971"]],[3,5,["H3318"]],[5,7,["H935"]],[7,10,["H6213"]],[10,12,["H5521"]],[12,14,["H376"]],[14,15,["H5921"]],[15,20,["H1406"]],[20,24,["H2691"]],[24,28,["H2691"]],[28,31,["H1004"]],[31,33,["H430"]],[33,37,["H7339"]],[37,40,["H4325"]],[40,41,["H8179"]],[41,45,["H7339"]],[45,48,["H8179"]],[48,50,["H669"]]]},{"k":12510,"v":[[0,2,["H3605"]],[2,4,["H6951"]],[4,10,["H7725"]],[10,12,["H4480"]],[12,14,["H7628"]],[14,15,["H6213"]],[15,16,["H5521"]],[16,18,["H3427"]],[18,21,["H5521"]],[21,22,["H3588"]],[22,25,["H4480","H3117"]],[25,27,["H3442"]],[27,29,["H1121"]],[29,31,["H5126"]],[31,32,["H5704"]],[32,33,["H1931"]],[33,34,["H3117"]],[34,36,["H3808"]],[36,38,["H1121"]],[38,40,["H3478"]],[40,41,["H6213"]],[41,42,["H3651"]],[42,45,["H1961"]],[45,46,["H3966"]],[46,47,["H1419"]],[47,48,["H8057"]]]},{"k":12511,"v":[[0,2,["H3117"]],[2,4,["H3117"]],[4,5,["H4480"]],[5,7,["H7223"]],[7,8,["H3117"]],[8,9,["H5704"]],[9,11,["H314"]],[11,12,["H3117"]],[12,14,["H7121"]],[14,17,["H5612"]],[17,20,["H8451"]],[20,22,["H430"]],[22,25,["H6213"]],[25,27,["H2282"]],[27,28,["H7651"]],[28,29,["H3117"]],[29,33,["H8066"]],[33,34,["H3117"]],[34,38,["H6116"]],[38,42,["H4941"]]]},{"k":12512,"v":[[0,4,["H6242"]],[4,6,["H702"]],[6,7,["H3117"]],[7,9,["H2088"]],[9,10,["H2320"]],[10,12,["H1121"]],[12,14,["H3478"]],[14,16,["H622"]],[16,18,["H6685"]],[18,21,["H8242"]],[21,23,["H127"]],[23,24,["H5921"]],[24,25,[]]]},{"k":12513,"v":[[0,3,["H2233"]],[3,5,["H3478"]],[5,7,["H914"]],[7,9,["H4480","H3605"]],[9,10,["H1121","H5236"]],[10,12,["H5975"]],[12,14,["H3034","H5921"]],[14,16,["H2403"]],[16,19,["H5771"]],[19,22,["H1"]]]},{"k":12514,"v":[[0,4,["H6965"]],[4,5,["H5921"]],[5,7,["H5977"]],[7,9,["H7121"]],[9,12,["H5612"]],[12,15,["H8451"]],[15,18,["H3068"]],[18,20,["H430"]],[20,22,["H7243"]],[22,26,["H3117"]],[26,29,["H7243"]],[29,32,["H3034"]],[32,34,["H7812"]],[34,36,["H3068"]],[36,38,["H430"]]]},{"k":12515,"v":[[0,3,["H6965"]],[3,4,["H5921"]],[4,6,["H4608"]],[6,9,["H3881"]],[9,10,["H3442"]],[10,12,["H1137"]],[12,13,["H6934"]],[13,14,["H7645"]],[14,15,["H1138"]],[15,16,["H8274"]],[16,17,["H1137"]],[17,19,["H3662"]],[19,21,["H2199"]],[21,24,["H1419"]],[24,25,["H6963"]],[25,26,["H413"]],[26,28,["H3068"]],[28,30,["H430"]]]},{"k":12516,"v":[[0,3,["H3881"]],[3,4,["H3442"]],[4,6,["H6934"]],[6,7,["H1137"]],[7,8,["H2813"]],[8,9,["H8274"]],[9,10,["H1941"]],[10,11,["H7645"]],[11,13,["H6611"]],[13,14,["H559"]],[14,16,["H6965"]],[16,18,["H1288","(H853)"]],[18,20,["H3068"]],[20,22,["H430"]],[22,24,["H4480","H5769"]],[24,25,["H5704"]],[25,26,["H5769"]],[26,28,["H1288"]],[28,31,["H3519"]],[31,32,["H8034"]],[32,35,["H7311"]],[35,36,["H5921"]],[36,37,["H3605"]],[37,38,["H1293"]],[38,40,["H8416"]]]},{"k":12517,"v":[[0,1,["H859"]],[1,3,["H1931"]],[3,5,["H3068"]],[5,6,["H905"]],[6,7,["H859"]],[7,9,["H6213","(H853)"]],[9,10,["H8064"]],[10,12,["H8064"]],[12,14,["H8064"]],[14,16,["H3605"]],[16,18,["H6635"]],[18,20,["H776"]],[20,22,["H3605"]],[22,24,["H834"]],[24,26,["H5921"]],[26,28,["H3220"]],[28,30,["H3605"]],[30,31,["H834"]],[31,35,["H859"]],[35,36,["H2421","(H853)"]],[36,38,["H3605"]],[38,41,["H6635"]],[41,43,["H8064"]],[43,44,["H7812"]],[44,45,[]]]},{"k":12518,"v":[[0,1,["H859"]],[1,4,["H3068"]],[4,6,["H430"]],[6,7,["H834"]],[7,9,["H977"]],[9,10,["H87"]],[10,14,["H3318"]],[14,17,["H4480","H218"]],[17,20,["H3778"]],[20,22,["H7760"]],[22,25,["H8034"]],[25,27,["H85"]]]},{"k":12519,"v":[[0,2,["H4672","(H853)"]],[2,4,["H3824"]],[4,5,["H539"]],[5,6,["H6440"]],[6,9,["H3772"]],[9,11,["H1285"]],[11,12,["H5973"]],[12,15,["H5414","(H853)"]],[15,17,["H776"]],[17,20,["H3669"]],[20,22,["H2850"]],[22,24,["H567"]],[24,27,["H6522"]],[27,30,["H2983"]],[30,33,["H1622"]],[33,35,["H5414"]],[35,41,["H2233"]],[41,44,["H6965","(H853)"]],[44,46,["H1697"]],[46,47,["H3588"]],[47,48,["H859"]],[48,50,["H6662"]]]},{"k":12520,"v":[[0,3,["H7200","(H853)"]],[3,5,["H6040"]],[5,8,["H1"]],[8,10,["H4714"]],[10,12,["H8085"]],[12,14,["H2201"]],[14,15,["H5921"]],[15,17,["H5488"]],[17,18,["H3220"]]]},{"k":12521,"v":[[0,2,["H5414"]],[2,3,["H226"]],[3,5,["H4159"]],[5,7,["H6547"]],[7,10,["H3605"]],[10,12,["H5650"]],[12,15,["H3605"]],[15,17,["H5971"]],[17,20,["H776"]],[20,21,["H3588"]],[21,23,["H3045"]],[23,24,["H3588"]],[24,27,["H2102"]],[27,28,["H5921"]],[28,33,["H6213"]],[33,36,["H8034"]],[36,40,["H2088"]],[40,41,["H3117"]]]},{"k":12522,"v":[[0,4,["H1234"]],[4,6,["H3220"]],[6,7,["H6440"]],[7,13,["H5674"]],[13,15,["H8432"]],[15,18,["H3220"]],[18,22,["H3004"]],[22,25,["H7291"]],[25,27,["H7993"]],[27,30,["H4688"]],[30,31,["H3644"]],[31,33,["H68"]],[33,36,["H5794"]],[36,37,["H4325"]]]},{"k":12523,"v":[[0,3,["H5148"]],[3,7,["H3119"]],[7,10,["H6051"]],[10,11,["H5982"]],[11,15,["H3915"]],[15,18,["H5982"]],[18,20,["H784"]],[20,24,["H215"]],[24,25,["(H853)"]],[25,27,["H1870"]],[27,28,["H834"]],[28,31,["H1980"]]]},{"k":12524,"v":[[0,3,["H3381"]],[3,5,["H5921"]],[5,6,["H2022"]],[6,7,["H5514"]],[7,9,["H1696"]],[9,10,["H5973"]],[10,13,["H4480","H8064"]],[13,15,["H5414"]],[15,17,["H3477"]],[17,18,["H4941"]],[18,20,["H571"]],[20,21,["H8451"]],[21,22,["H2896"]],[22,23,["H2706"]],[23,25,["H4687"]]]},{"k":12525,"v":[[0,3,["H3045"]],[3,7,["H6944"]],[7,8,["H7676"]],[8,10,["H6680"]],[10,12,["H4687"]],[12,13,["H2706"]],[13,15,["H8451"]],[15,18,["H3027"]],[18,20,["H4872"]],[20,22,["H5650"]]]},{"k":12526,"v":[[0,2,["H5414"]],[2,4,["H3899"]],[4,6,["H4480","H8064"]],[6,9,["H7458"]],[9,12,["H3318"]],[12,13,["H4325"]],[13,19,["H4480","H5553"]],[19,22,["H6772"]],[22,24,["H559"]],[24,30,["H935"]],[30,32,["H3423","(H853)"]],[32,34,["H776"]],[34,35,["H834"]],[35,38,["H5375","(H853)","H3027"]],[38,40,["H5414"]],[40,41,[]]]},{"k":12527,"v":[[0,2,["H1992"]],[2,5,["H1"]],[5,7,["H2102"]],[7,9,["H7185","(H853)"]],[9,11,["H6203"]],[11,13,["H8085"]],[13,14,["H3808"]],[14,15,["H413"]],[15,17,["H4687"]]]},{"k":12528,"v":[[0,2,["H3985"]],[2,4,["H8085"]],[4,5,["H3808"]],[5,7,["H2142"]],[7,10,["H6381"]],[10,11,["H834"]],[11,13,["H6213"]],[13,14,["H5973"]],[14,17,["H7185","(H853)"]],[17,19,["H6203"]],[19,23,["H4805"]],[23,24,["H5414"]],[24,26,["H7218"]],[26,28,["H7725"]],[28,31,["H5659"]],[31,33,["H859"]],[33,36,["H433"]],[36,39,["H5547"]],[39,40,["H2587"]],[40,42,["H7349"]],[42,43,["H750"]],[43,45,["H639"]],[45,48,["H7227"]],[48,49,["H2617"]],[49,51,["H5800"]],[51,53,["H3808"]]]},{"k":12529,"v":[[0,1,["H637"]],[1,2,["H3588"]],[2,5,["H6213"]],[5,8,["H4541"]],[8,9,["H5695"]],[9,11,["H559"]],[11,12,["H2088"]],[12,15,["H430"]],[15,16,["H834"]],[16,19,["H5927"]],[19,22,["H4480","H4714"]],[22,25,["H6213"]],[25,26,["H1419"]],[26,27,["H5007"]]]},{"k":12530,"v":[[0,2,["H859"]],[2,5,["H7227"]],[5,6,["H7356"]],[6,7,["H5800"]],[7,9,["H3808"]],[9,12,["H4057","(H853)"]],[12,14,["H5982"]],[14,17,["H6051"]],[17,18,["H5493"]],[18,19,["H3808"]],[19,20,["H4480","H5921"]],[20,23,["H3119"]],[23,25,["H5148"]],[25,29,["H1870"]],[29,32,["H5982"]],[32,34,["H784"]],[34,36,["H3915"]],[36,40,["H215"]],[40,43,["H1870"]],[43,44,["H834"]],[44,47,["H1980"]]]},{"k":12531,"v":[[0,2,["H5414"]],[2,5,["H2896"]],[5,6,["H7307"]],[6,8,["H7919"]],[8,11,["H4513"]],[11,12,["H3808"]],[12,14,["H4478"]],[14,17,["H4480","H6310"]],[17,19,["H5414"]],[19,21,["H4325"]],[21,24,["H6772"]]]},{"k":12532,"v":[[0,2,["H705"]],[2,3,["H8141"]],[3,6,["H3557"]],[6,10,["H4057"]],[10,14,["H2637"]],[14,15,["H3808"]],[15,17,["H8008"]],[17,20,["H1086","H3808"]],[20,23,["H7272"]],[23,24,["H1216"]],[24,25,["H3808"]]]},{"k":12533,"v":[[0,3,["H5414"]],[3,5,["H4467"]],[5,7,["H5971"]],[7,10,["H2505"]],[10,13,["H6285"]],[13,16,["H3423","(H853)"]],[16,18,["H776"]],[18,20,["H5511"]],[20,23,["H776"]],[23,26,["H4428"]],[26,28,["H2809"]],[28,31,["H776"]],[31,33,["H5747"]],[33,34,["H4428"]],[34,36,["H1316"]]]},{"k":12534,"v":[[0,2,["H1121"]],[2,4,["H7235"]],[4,8,["H3556"]],[8,10,["H8064"]],[10,12,["H935"]],[12,14,["H413"]],[14,16,["H776"]],[16,18,["H834"]],[18,21,["H559"]],[21,24,["H1"]],[24,29,["H935"]],[29,31,["H3423"]],[31,32,[]]]},{"k":12535,"v":[[0,3,["H1121"]],[3,5,["H935"]],[5,7,["H3423","(H853)"]],[7,9,["H776"]],[9,12,["H3665"]],[12,13,["H6440"]],[13,14,["(H853)"]],[14,16,["H3427"]],[16,19,["H776"]],[19,21,["H3669"]],[21,23,["H5414"]],[23,27,["H3027"]],[27,30,["H4428"]],[30,33,["H5971"]],[33,36,["H776"]],[36,40,["H6213"]],[40,45,["H7522"]]]},{"k":12536,"v":[[0,3,["H3920"]],[3,4,["H1219"]],[4,5,["H5892"]],[5,8,["H8082"]],[8,9,["H127"]],[9,11,["H3423"]],[11,12,["H1004"]],[12,13,["H4392"]],[13,15,["H3605"]],[15,16,["H2898"]],[16,17,["H953"]],[17,18,["H2672"]],[18,19,["H3754"]],[19,21,["H2132"]],[21,23,["H3978"]],[23,24,["H6086"]],[24,26,["H7230"]],[26,30,["H398"]],[30,33,["H7646"]],[33,36,["H8080"]],[36,39,["H5727"]],[39,42,["H1419"]],[42,43,["H2898"]]]},{"k":12537,"v":[[0,4,["H4784"]],[4,6,["H4775"]],[6,10,["H7993","(H853)"]],[10,12,["H8451"]],[12,13,["H310"]],[13,15,["H1458"]],[15,17,["H2026"]],[17,19,["H5030"]],[19,20,["H834"]],[20,21,["H5749"]],[21,25,["H7725"]],[25,27,["H413"]],[27,31,["H6213"]],[31,32,["H1419"]],[32,33,["H5007"]]]},{"k":12538,"v":[[0,3,["H5414"]],[3,7,["H3027"]],[7,10,["H6862"]],[10,12,["H6887"]],[12,17,["H6256"]],[17,20,["H6869"]],[20,23,["H6817"]],[23,24,["H413"]],[24,26,["H859"]],[26,27,["H8085"]],[27,30,["H4480","H8064"]],[30,35,["H7227"]],[35,36,["H7356"]],[36,38,["H5414"]],[38,40,["H3467"]],[40,42,["H3467"]],[42,47,["H4480","H3027"]],[47,50,["H6862"]]]},{"k":12539,"v":[[0,5,["H5117"]],[5,7,["H6213"]],[7,8,["H7451"]],[8,9,["H7725"]],[9,10,["H6440"]],[10,13,["H5800"]],[13,18,["H3027"]],[18,21,["H341"]],[21,27,["H7287"]],[27,33,["H7725"]],[33,35,["H2199"]],[35,38,["H859"]],[38,39,["H8085"]],[39,42,["H4480","H8064"]],[42,44,["H7227"]],[44,45,["H6256"]],[45,48,["H5337"]],[48,53,["H7356"]]]},{"k":12540,"v":[[0,2,["H5749"]],[2,10,["H7725"]],[10,11,["H413"]],[11,13,["H8451"]],[13,15,["H1992"]],[15,17,["H2102"]],[17,19,["H8085"]],[19,20,["H3808"]],[20,23,["H4687"]],[23,25,["H2398"]],[25,28,["H4941"]],[28,29,["H834"]],[29,32,["H120"]],[32,33,["H6213"]],[33,36,["H2421"]],[36,40,["H5414","H5637"]],[40,42,["H3802"]],[42,44,["H7185"]],[44,46,["H6203"]],[46,49,["H3808"]],[49,50,["H8085"]]]},{"k":12541,"v":[[0,2,["H7227"]],[2,3,["H8141"]],[3,6,["H4900","H5921"]],[6,9,["H5749"]],[9,14,["H7307"]],[14,15,["H3027"]],[15,17,["H5030"]],[17,21,["H3808"]],[21,23,["H238"]],[23,25,["H5414"]],[25,30,["H3027"]],[30,33,["H5971"]],[33,36,["H776"]]]},{"k":12542,"v":[[0,4,["H7227"]],[4,5,["H7356"]],[5,9,["H3808"]],[9,11,["H6213","H3617"]],[11,13,["H3808"]],[13,14,["H5800"]],[14,16,["H3588"]],[16,17,["H859"]],[17,20,["H2587"]],[20,22,["H7349"]],[22,23,["H410"]]]},{"k":12543,"v":[[0,1,["H6258"]],[1,4,["H430"]],[4,6,["H1419"]],[6,8,["H1368"]],[8,11,["H3372"]],[11,12,["H410"]],[12,14,["H8104"]],[14,15,["H1285"]],[15,17,["H2617"]],[17,19,["H408","(H853)"]],[19,20,["H3605"]],[20,22,["H8513"]],[22,24,["H4591"]],[24,25,["H6440"]],[25,27,["H834"]],[27,30,["H4672"]],[30,34,["H4428"]],[34,37,["H8269"]],[37,41,["H3548"]],[41,45,["H5030"]],[45,49,["H1"]],[49,52,["H3605"]],[52,54,["H5971"]],[54,57,["H4480","H3117"]],[57,60,["H4428"]],[60,62,["H804"]],[62,63,["H5704"]],[63,64,["H2088"]],[64,65,["H3117"]]]},{"k":12544,"v":[[0,2,["H859"]],[2,4,["H6662"]],[4,5,["H5921"]],[5,6,["H3605"]],[6,9,["H935"]],[9,10,["H5921"]],[10,12,["H3588"]],[12,15,["H6213"]],[15,16,["H571"]],[16,18,["H587"]],[18,21,["H7561"]]]},{"k":12545,"v":[[0,4,["H4428"]],[4,6,["H8269"]],[6,8,["H3548"]],[8,9,["H3808"]],[9,11,["H1"]],[11,12,["H6213"]],[12,14,["H8451"]],[14,15,["H3808"]],[15,16,["H7181"]],[16,17,["H413"]],[17,19,["H4687"]],[19,22,["H5715"]],[22,23,["H834"]],[23,26,["H5749"]],[26,28,[]]]},{"k":12546,"v":[[0,2,["H1992"]],[2,4,["H3808"]],[4,5,["H5647"]],[5,9,["H4438"]],[9,13,["H7227"]],[13,14,["H2898"]],[14,15,["H834"]],[15,17,["H5414"]],[17,22,["H7342"]],[22,24,["H8082"]],[24,25,["H776"]],[25,26,["H834"]],[26,28,["H5414"]],[28,29,["H6440"]],[29,31,["H3808"]],[31,32,["H7725"]],[32,36,["H7451"]],[36,37,["H4480","H4611"]]]},{"k":12547,"v":[[0,1,["H2009"]],[1,2,["H587"]],[2,4,["H5650"]],[4,6,["H3117"]],[6,10,["H776"]],[10,11,["H834"]],[11,13,["H5414"]],[13,16,["H1"]],[16,18,["H398","(H853)"]],[18,20,["H6529"]],[20,24,["H2898"]],[24,26,["H2009"]],[26,27,["H587"]],[27,29,["H5650"]],[29,30,["H5921"]],[30,31,[]]]},{"k":12548,"v":[[0,4,["H7235"]],[4,5,["H8393"]],[5,8,["H4428"]],[8,9,["H834"]],[9,12,["H5414"]],[12,13,["H5921"]],[13,18,["H2403"]],[18,22,["H4910"]],[22,23,["H5921"]],[23,25,["H1472"]],[25,29,["H929"]],[29,32,["H7522"]],[32,34,["H587"]],[34,37,["H1419"]],[37,38,["H6869"]]]},{"k":12549,"v":[[0,4,["H3605"]],[4,5,["H2063"]],[5,6,["H587"]],[6,7,["H3772"]],[7,9,["H548"]],[9,12,["H3789"]],[12,16,["H8269"]],[16,17,["H3881"]],[17,19,["H3548"]],[19,20,["H2856","H5921"]],[20,22,[]]]},{"k":12550,"v":[[0,4,["H2856","H5921"]],[4,6,["H5166"]],[6,8,["H8660"]],[8,10,["H1121"]],[10,12,["H2446"]],[12,14,["H6667"]]]},{"k":12551,"v":[[0,1,["H8304"]],[1,2,["H5838"]],[2,3,["H3414"]]]},{"k":12552,"v":[[0,1,["H6583"]],[1,2,["H568"]],[2,3,["H4441"]]]},{"k":12553,"v":[[0,1,["H2407"]],[1,2,["H7645"]],[2,3,["H4409"]]]},{"k":12554,"v":[[0,1,["H2766"]],[1,2,["H4822"]],[2,3,["H5662"]]]},{"k":12555,"v":[[0,1,["H1840"]],[1,2,["H1599"]],[2,3,["H1263"]]]},{"k":12556,"v":[[0,1,["H4918"]],[1,2,["H29"]],[2,3,["H4326"]]]},{"k":12557,"v":[[0,1,["H4590"]],[1,2,["H1084"]],[2,3,["H8098"]],[3,4,["H428"]],[4,7,["H3548"]]]},{"k":12558,"v":[[0,3,["H3881"]],[3,5,["H3442"]],[5,7,["H1121"]],[7,9,["H245"]],[9,10,["H1131"]],[10,13,["H4480","H1121"]],[13,15,["H2582"]],[15,16,["H6934"]]]},{"k":12559,"v":[[0,3,["H251"]],[3,4,["H7645"]],[4,5,["H1941"]],[5,6,["H7042"]],[6,7,["H6411"]],[7,8,["H2605"]]]},{"k":12560,"v":[[0,1,["H4316"]],[1,2,["H7340"]],[2,3,["H2811"]]]},{"k":12561,"v":[[0,1,["H2139"]],[1,2,["H8274"]],[2,3,["H7645"]]]},{"k":12562,"v":[[0,1,["H1941"]],[1,2,["H1137"]],[2,3,["H1148"]]]},{"k":12563,"v":[[0,2,["H7218"]],[2,5,["H5971"]],[5,6,["H6551"]],[6,7,["H6355"]],[7,8,["H5867"]],[8,9,["H2240"]],[9,10,["H1137"]]]},{"k":12564,"v":[[0,1,["H1138"]],[1,2,["H5803"]],[2,3,["H893"]]]},{"k":12565,"v":[[0,1,["H138"]],[1,2,["H902"]],[2,3,["H5720"]]]},{"k":12566,"v":[[0,1,["H333"]],[1,2,["H2396"]],[2,3,["H5809"]]]},{"k":12567,"v":[[0,1,["H1941"]],[1,2,["H2828"]],[2,3,["H1209"]]]},{"k":12568,"v":[[0,1,["H2756"]],[1,2,["H6068"]],[2,3,["H5109"]]]},{"k":12569,"v":[[0,1,["H4047"]],[1,2,["H4918"]],[2,3,["H2387"]]]},{"k":12570,"v":[[0,1,["H4898"]],[1,2,["H6659"]],[2,3,["H3037"]]]},{"k":12571,"v":[[0,1,["H6410"]],[1,2,["H2605"]],[2,3,["H6043"]]]},{"k":12572,"v":[[0,1,["H1954"]],[1,2,["H2608"]],[2,3,["H2815"]]]},{"k":12573,"v":[[0,1,["H3873"]],[1,2,["H6401"]],[2,3,["H7733"]]]},{"k":12574,"v":[[0,1,["H7348"]],[1,2,["H2812"]],[2,3,["H4641"]]]},{"k":12575,"v":[[0,2,["H281"]],[2,3,["H2605"]],[3,4,["H6052"]]]},{"k":12576,"v":[[0,1,["H4409"]],[1,2,["H2766"]],[2,3,["H1196"]]]},{"k":12577,"v":[[0,3,["H7605"]],[3,6,["H5971"]],[6,8,["H3548"]],[8,10,["H3881"]],[10,12,["H7778"]],[12,14,["H7891"]],[14,16,["H5411"]],[16,18,["H3605"]],[18,23,["H914"]],[23,26,["H4480","H5971"]],[26,29,["H776"]],[29,30,["H413"]],[30,32,["H8451"]],[32,34,["H430"]],[34,36,["H802"]],[36,38,["H1121"]],[38,41,["H1323"]],[41,42,["H3605"]],[42,45,["H3045"]],[45,48,["H995"]]]},{"k":12578,"v":[[0,2,["H2388"]],[2,3,["H5921"]],[3,5,["H251"]],[5,7,["H117"]],[7,9,["H935"]],[9,12,["H423"]],[12,16,["H7621"]],[16,18,["H1980"]],[18,20,["H430"]],[20,21,["H8451"]],[21,22,["H834"]],[22,24,["H5414"]],[24,25,["H3027"]],[25,26,["H4872"]],[26,28,["H5650"]],[28,30,["H430"]],[30,33,["H8104"]],[33,35,["H6213","(H853)"]],[35,36,["H3605"]],[36,38,["H4687"]],[38,41,["H3068"]],[41,43,["H113"]],[43,46,["H4941"]],[46,49,["H2706"]]]},{"k":12579,"v":[[0,2,["H834"]],[2,5,["H3808"]],[5,6,["H5414"]],[6,8,["H1323"]],[8,11,["H5971"]],[11,14,["H776"]],[14,15,["H3808"]],[15,16,["H3947"]],[16,18,["H1323"]],[18,21,["H1121"]]]},{"k":12580,"v":[[0,4,["H5971"]],[4,7,["H776"]],[7,8,["H935","(H853)"]],[8,9,["H4728"]],[9,11,["H3605"]],[11,12,["H7668"]],[12,15,["H7676"]],[15,16,["H3117"]],[16,18,["H4376"]],[18,22,["H3808"]],[22,23,["H3947"]],[23,25,["H4480"]],[25,29,["H7676"]],[29,33,["H6944"]],[33,34,["H3117"]],[34,39,["H5203","(H853)"]],[39,41,["H7637"]],[41,42,["H8141"]],[42,45,["H4855"]],[45,47,["H3605"]],[47,48,["H3027"]]]},{"k":12581,"v":[[0,3,["H5975"]],[3,4,["H4687"]],[4,5,["H5921"]],[5,8,["H5414"]],[8,9,["H5921"]],[9,10,["H8141"]],[10,14,["H7992"]],[14,17,["H8255"]],[17,20,["H5656"]],[20,23,["H1004"]],[23,26,["H430"]]]},{"k":12582,"v":[[0,3,["H3899","H4635"]],[3,7,["H8548"]],[7,9,["H4503"]],[9,13,["H8548"]],[13,15,["H5930"]],[15,18,["H7676"]],[18,22,["H2320"]],[22,26,["H4150"]],[26,30,["H6944"]],[30,36,["H2403"]],[36,40,["H3722"]],[40,41,["H5921"]],[41,42,["H3478"]],[42,45,["H3605"]],[45,47,["H4399"]],[47,50,["H1004"]],[50,53,["H430"]]]},{"k":12583,"v":[[0,6,["H5307","H1486"]],[6,8,["H3548"]],[8,10,["H3881"]],[10,13,["H5971"]],[13,14,["H5921"]],[14,16,["H6086"]],[16,17,["H7133"]],[17,19,["H935"]],[19,23,["H1004"]],[23,26,["H430"]],[26,29,["H1004"]],[29,32,["H1"]],[32,34,["H6256"]],[34,35,["H2163"]],[35,36,["H8141"]],[36,38,["H8141"]],[38,40,["H1197"]],[40,41,["H5921"]],[41,43,["H4196"]],[43,46,["H3068"]],[46,48,["H430"]],[48,52,["H3789"]],[52,55,["H8451"]]]},{"k":12584,"v":[[0,3,["H935","(H853)"]],[3,5,["H1061"]],[5,8,["H127"]],[8,11,["H1061"]],[11,13,["H3605"]],[13,14,["H6529"]],[14,16,["H3605"]],[16,17,["H6086"]],[17,18,["H8141"]],[18,20,["H8141"]],[20,23,["H1004"]],[23,26,["H3068"]]]},{"k":12585,"v":[[0,3,["H1060"]],[3,6,["H1121"]],[6,10,["H929"]],[10,14,["H3789"]],[14,17,["H8451"]],[17,20,["H1062"]],[20,23,["H1241"]],[23,27,["H6629"]],[27,29,["H935"]],[29,32,["H1004"]],[32,35,["H430"]],[35,38,["H3548"]],[38,40,["H8334"]],[40,43,["H1004"]],[43,46,["H430"]]]},{"k":12586,"v":[[0,5,["H935"]],[5,7,["H7225"]],[7,10,["H6182"]],[10,13,["H8641"]],[13,16,["H6529"]],[16,18,["H3605"]],[18,21,["H6086"]],[21,23,["H8492"]],[23,26,["H3323"]],[26,29,["H3548"]],[29,30,["H413"]],[30,32,["H3957"]],[32,35,["H1004"]],[35,38,["H430"]],[38,41,["H4643"]],[41,44,["H127"]],[44,47,["H3881"]],[47,50,["H1992"]],[50,51,["H3881"]],[51,55,["H6237"]],[55,57,["H3605"]],[57,59,["H5892"]],[59,62,["H5656"]]]},{"k":12587,"v":[[0,3,["H3548"]],[3,5,["H1121"]],[5,7,["H175"]],[7,9,["H1961"]],[9,10,["H5973"]],[10,12,["H3881"]],[12,15,["H3881"]],[15,17,["H6237"]],[17,20,["H3881"]],[20,23,["H5927","(H853)"]],[23,25,["H4643"]],[25,28,["H4643"]],[28,31,["H1004"]],[31,34,["H430"]],[34,35,["H413"]],[35,37,["H3957"]],[37,40,["H214"]],[40,41,["H1004"]]]},{"k":12588,"v":[[0,1,["H3588"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,8,["H1121"]],[8,10,["H3878"]],[10,12,["H935","(H853)"]],[12,14,["H8641"]],[14,17,["H1715"]],[17,21,["H8492"]],[21,24,["H3323"]],[24,25,["H413"]],[25,27,["H3957"]],[27,28,["H8033"]],[28,31,["H3627"]],[31,34,["H4720"]],[34,37,["H3548"]],[37,39,["H8334"]],[39,42,["H7778"]],[42,45,["H7891"]],[45,49,["H3808"]],[49,50,["H5800","(H853)"]],[50,52,["H1004"]],[52,55,["H430"]]]},{"k":12589,"v":[[0,3,["H8269"]],[3,6,["H5971"]],[6,7,["H3427"]],[7,9,["H3389"]],[9,11,["H7605"]],[11,14,["H5971"]],[14,16,["H5307"]],[16,17,["H1486"]],[17,19,["H935"]],[19,20,["H259"]],[20,21,["H4480"]],[21,22,["H6235"]],[22,24,["H3427"]],[24,26,["H3389"]],[26,28,["H6944"]],[28,29,["H5892"]],[29,31,["H8672"]],[31,32,["H3027"]],[32,37,["H5892"]]]},{"k":12590,"v":[[0,3,["H5971"]],[3,4,["H1288"]],[4,5,["H3605"]],[5,7,["H376"]],[7,11,["H5068"]],[11,13,["H3427"]],[13,15,["H3389"]]]},{"k":12591,"v":[[0,2,["H428"]],[2,5,["H7218"]],[5,8,["H4082"]],[8,9,["H834"]],[9,10,["H3427"]],[10,12,["H3389"]],[12,16,["H5892"]],[16,18,["H3063"]],[18,19,["H3427"]],[19,21,["H376"]],[21,24,["H272"]],[24,27,["H5892"]],[27,30,["H3478"]],[30,32,["H3548"]],[32,35,["H3881"]],[35,38,["H5411"]],[38,41,["H1121"]],[41,43,["H8010"]],[43,44,["H5650"]]]},{"k":12592,"v":[[0,3,["H3389"]],[3,4,["H3427"]],[4,8,["H4480","H1121"]],[8,10,["H3063"]],[10,14,["H4480","H1121"]],[14,16,["H1144"]],[16,19,["H4480","H1121"]],[19,21,["H3063"]],[21,22,["H6265"]],[22,24,["H1121"]],[24,26,["H5818"]],[26,28,["H1121"]],[28,30,["H2148"]],[30,32,["H1121"]],[32,34,["H568"]],[34,36,["H1121"]],[36,38,["H8203"]],[38,40,["H1121"]],[40,42,["H4111"]],[42,45,["H4480","H1121"]],[45,47,["H6557"]]]},{"k":12593,"v":[[0,2,["H4641"]],[2,4,["H1121"]],[4,6,["H1263"]],[6,8,["H1121"]],[8,10,["H3626"]],[10,12,["H1121"]],[12,14,["H2382"]],[14,16,["H1121"]],[16,18,["H5718"]],[18,20,["H1121"]],[20,22,["H3114"]],[22,24,["H1121"]],[24,26,["H2148"]],[26,28,["H1121"]],[28,30,["H8023"]]]},{"k":12594,"v":[[0,1,["H3605"]],[1,3,["H1121"]],[3,5,["H6557"]],[5,7,["H3427"]],[7,9,["H3389"]],[9,11,["H702"]],[11,12,["H3967"]],[12,13,["H8346"]],[13,15,["H8083"]],[15,16,["H2428"]],[16,17,["H376"]]]},{"k":12595,"v":[[0,2,["H428"]],[2,5,["H1121"]],[5,7,["H1144"]],[7,8,["H5543"]],[8,10,["H1121"]],[10,12,["H4918"]],[12,14,["H1121"]],[14,16,["H3133"]],[16,18,["H1121"]],[18,20,["H6305"]],[20,22,["H1121"]],[22,24,["H6964"]],[24,26,["H1121"]],[26,28,["H4641"]],[28,30,["H1121"]],[30,32,["H384"]],[32,34,["H1121"]],[34,36,["H3470"]]]},{"k":12596,"v":[[0,2,["H310"]],[2,4,["H1373"]],[4,5,["H5543"]],[5,6,["H8672"]],[6,7,["H3967"]],[7,8,["H6242"]],[8,10,["H8083"]]]},{"k":12597,"v":[[0,2,["H3100"]],[2,4,["H1121"]],[4,6,["H2147"]],[6,9,["H6496","H5921"]],[9,11,["H3063"]],[11,13,["H1121"]],[13,15,["H5574"]],[15,17,["H4932"]],[17,18,["H5921"]],[18,20,["H5892"]]]},{"k":12598,"v":[[0,1,["H4480"]],[1,3,["H3548"]],[3,4,["H3048"]],[4,6,["H1121"]],[6,8,["H3114"]],[8,9,["H3199"]]]},{"k":12599,"v":[[0,1,["H8304"]],[1,3,["H1121"]],[3,5,["H2518"]],[5,7,["H1121"]],[7,9,["H4918"]],[9,11,["H1121"]],[11,13,["H6659"]],[13,15,["H1121"]],[15,17,["H4812"]],[17,19,["H1121"]],[19,21,["H285"]],[21,24,["H5057"]],[24,27,["H1004"]],[27,29,["H430"]]]},{"k":12600,"v":[[0,3,["H251"]],[3,5,["H6213"]],[5,7,["H4399"]],[7,10,["H1004"]],[10,12,["H8083"]],[12,13,["H3967"]],[13,14,["H6242"]],[14,16,["H8147"]],[16,18,["H5718"]],[18,20,["H1121"]],[20,22,["H3395"]],[22,24,["H1121"]],[24,26,["H6421"]],[26,28,["H1121"]],[28,30,["H557"]],[30,32,["H1121"]],[32,34,["H2148"]],[34,36,["H1121"]],[36,38,["H6583"]],[38,40,["H1121"]],[40,42,["H4441"]]]},{"k":12601,"v":[[0,3,["H251"]],[3,4,["H7218"]],[4,7,["H1"]],[7,9,["H3967"]],[9,10,["H705"]],[10,12,["H8147"]],[12,14,["H6023"]],[14,16,["H1121"]],[16,18,["H5832"]],[18,20,["H1121"]],[20,22,["H273"]],[22,24,["H1121"]],[24,26,["H4919"]],[26,28,["H1121"]],[28,30,["H564"]]]},{"k":12602,"v":[[0,3,["H251"]],[3,5,["H1368"]],[5,7,["H2428"]],[7,9,["H3967"]],[9,10,["H6242"]],[10,12,["H8083"]],[12,15,["H6496","H5921"]],[15,17,["H2068"]],[17,19,["H1121"]],[19,24,["H1419"]],[24,25,[]]]},{"k":12603,"v":[[0,2,["H4480"]],[2,4,["H3881"]],[4,5,["H8098"]],[5,7,["H1121"]],[7,9,["H2815"]],[9,11,["H1121"]],[11,13,["H5840"]],[13,15,["H1121"]],[15,17,["H2811"]],[17,19,["H1121"]],[19,21,["H1138"]]]},{"k":12604,"v":[[0,2,["H7678"]],[2,4,["H3107"]],[4,7,["H4480","H7218"]],[7,10,["H3881"]],[10,13,["H5921"]],[13,16,["H2435"]],[16,17,["H4399"]],[17,20,["H1004"]],[20,22,["H430"]]]},{"k":12605,"v":[[0,2,["H4983"]],[2,4,["H1121"]],[4,6,["H4318"]],[6,8,["H1121"]],[8,10,["H2067"]],[10,12,["H1121"]],[12,14,["H623"]],[14,17,["H7218"]],[17,19,["H8462"]],[19,21,["H3034"]],[21,23,["H8605"]],[23,25,["H1229"]],[25,27,["H4932"]],[27,30,["H4480","H251"]],[30,32,["H5653"]],[32,34,["H1121"]],[34,36,["H8051"]],[36,38,["H1121"]],[38,40,["H1559"]],[40,42,["H1121"]],[42,44,["H3038"]]]},{"k":12606,"v":[[0,1,["H3605"]],[1,3,["H3881"]],[3,6,["H6944"]],[6,7,["H5892"]],[7,10,["H3967"]],[10,11,["H8084"]],[11,13,["H702"]]]},{"k":12607,"v":[[0,3,["H7778"]],[3,4,["H6126"]],[4,5,["H2929"]],[5,8,["H251"]],[8,10,["H8104"]],[10,12,["H8179"]],[12,15,["H3967"]],[15,16,["H7657"]],[16,18,["H8147"]]]},{"k":12608,"v":[[0,3,["H7605"]],[3,5,["H3478"]],[5,8,["H3548"]],[8,11,["H3881"]],[11,14,["H3605"]],[14,16,["H5892"]],[16,18,["H3063"]],[18,20,["H376"]],[20,23,["H5159"]]]},{"k":12609,"v":[[0,3,["H5411"]],[3,4,["H3427"]],[4,6,["H6077"]],[6,8,["H6727"]],[8,10,["H1658"]],[10,12,["H5921"]],[12,14,["H5411"]]]},{"k":12610,"v":[[0,2,["H6496"]],[2,6,["H3881"]],[6,8,["H3389"]],[8,10,["H5813"]],[10,12,["H1121"]],[12,14,["H1137"]],[14,16,["H1121"]],[16,18,["H2811"]],[18,20,["H1121"]],[20,22,["H4983"]],[22,24,["H1121"]],[24,26,["H4316"]],[26,29,["H4480","H1121"]],[29,31,["H623"]],[31,33,["H7891"]],[33,35,["H5048"]],[35,37,["H4399"]],[37,40,["H1004"]],[40,42,["H430"]]]},{"k":12611,"v":[[0,1,["H3588"]],[1,5,["H4428"]],[5,6,["H4687"]],[6,7,["H5921"]],[7,12,["H548"]],[12,15,["H5921"]],[15,17,["H7891"]],[17,18,["H1697"]],[18,21,["H3117","H3117"]]]},{"k":12612,"v":[[0,2,["H6611"]],[2,4,["H1121"]],[4,6,["H4898"]],[6,9,["H4480","H1121"]],[9,11,["H2226"]],[11,13,["H1121"]],[13,15,["H3063"]],[15,19,["H4428"]],[19,20,["H3027"]],[20,22,["H3605"]],[22,23,["H1697"]],[23,26,["H5971"]]]},{"k":12613,"v":[[0,2,["H413"]],[2,4,["H2691"]],[4,7,["H7704"]],[7,11,["H4480","H1121"]],[11,13,["H3063"]],[13,14,["H3427"]],[14,16,["H7153"]],[16,20,["H2691"]],[20,24,["H1769"]],[24,28,["H1323"]],[28,32,["H3343"]],[32,36,["H1323"]],[36,37,[]]]},{"k":12614,"v":[[0,3,["H3442"]],[3,6,["H4137"]],[6,9,["H1046"]]]},{"k":12615,"v":[[0,3,["H2705"]],[3,6,["H884"]],[6,10,["H1323"]],[10,11,[]]]},{"k":12616,"v":[[0,3,["H6860"]],[3,6,["H4368"]],[6,10,["H1323"]],[10,11,[]]]},{"k":12617,"v":[[0,3,["H5884"]],[3,6,["H6881"]],[6,9,["H3412"]]]},{"k":12618,"v":[[0,1,["H2182"]],[1,2,["H5725"]],[2,6,["H2691"]],[6,8,["H3923"]],[8,11,["H7704"]],[11,14,["H5825"]],[14,18,["H1323"]],[18,22,["H2583"]],[22,24,["H4480","H884"]],[24,25,["H5704"]],[25,27,["H1516"]],[27,29,["H2011"]]]},{"k":12619,"v":[[0,2,["H1121"]],[2,5,["H1144"]],[5,7,["H4480","H1387"]],[7,10,["H4363"]],[10,12,["H5857"]],[12,14,["H1008"]],[14,18,["H1323"]]]},{"k":12620,"v":[[0,3,["H6068"]],[3,4,["H5011"]],[4,5,["H6055"]]]},{"k":12621,"v":[[0,1,["H2674"]],[1,2,["H7414"]],[2,3,["H1664"]]]},{"k":12622,"v":[[0,1,["H2307"]],[1,2,["H6650"]],[2,3,["H5041"]]]},{"k":12623,"v":[[0,1,["H3850"]],[1,3,["H207"]],[3,5,["H1516"]],[5,7,["H2798"]]]},{"k":12624,"v":[[0,2,["H4480"]],[2,4,["H3881"]],[4,6,["H4256"]],[6,8,["H3063"]],[8,11,["H1144"]]]},{"k":12625,"v":[[0,2,["H428"]],[2,5,["H3548"]],[5,8,["H3881"]],[8,9,["H834"]],[9,11,["H5927"]],[11,12,["H5973"]],[12,13,["H2216"]],[13,15,["H1121"]],[15,17,["H7597"]],[17,19,["H3442"]],[19,20,["H8304"]],[20,21,["H3414"]],[21,22,["H5830"]]]},{"k":12626,"v":[[0,1,["H568"]],[1,2,["H4409"]],[2,3,["H2407"]]]},{"k":12627,"v":[[0,1,["H7935"]],[1,2,["H7348"]],[2,3,["H4822"]]]},{"k":12628,"v":[[0,1,["H5714"]],[1,2,["H1599"]],[2,3,["H29"]]]},{"k":12629,"v":[[0,1,["H4326"]],[1,2,["H4573"]],[2,3,["H1083"]]]},{"k":12630,"v":[[0,1,["H8098"]],[1,3,["H3114"]],[3,4,["H3048"]]]},{"k":12631,"v":[[0,1,["H5543"]],[1,2,["H5987"]],[2,3,["H2518"]],[3,4,["H3048"]],[4,5,["H428"]],[5,8,["H7218"]],[8,11,["H3548"]],[11,15,["H251"]],[15,18,["H3117"]],[18,20,["H3442"]]]},{"k":12632,"v":[[0,3,["H3881"]],[3,4,["H3442"]],[4,5,["H1131"]],[5,6,["H6934"]],[6,7,["H8274"]],[7,8,["H3063"]],[8,10,["H4983"]],[10,13,["H5921"]],[13,15,["H1960"]],[15,16,["H1931"]],[16,19,["H251"]]]},{"k":12633,"v":[[0,2,["H1229"]],[2,4,["H6042"]],[4,6,["H251"]],[6,9,["H5048"]],[9,13,["H4931"]]]},{"k":12634,"v":[[0,2,["H3442"]],[2,3,["H3205","(H853)"]],[3,4,["H3113"]],[4,5,["H3113"]],[5,7,["H3205","(H853)"]],[7,8,["H475"]],[8,10,["H475"]],[10,11,["H3205","(H853)"]],[11,12,["H3111"]]]},{"k":12635,"v":[[0,2,["H3111"]],[2,3,["H3205","(H853)"]],[3,4,["H3129"]],[4,6,["H3129"]],[6,7,["H3205","(H853)"]],[7,8,["H3037"]]]},{"k":12636,"v":[[0,4,["H3117"]],[4,6,["H3113"]],[6,7,["H1961"]],[7,8,["H3548"]],[8,10,["H7218"]],[10,13,["H1"]],[13,15,["H8304"]],[15,16,["H4811"]],[16,18,["H3414"]],[18,19,["H2608"]]]},{"k":12637,"v":[[0,2,["H5830"]],[2,3,["H4918"]],[3,5,["H568"]],[5,6,["H3076"]]]},{"k":12638,"v":[[0,2,["H4409"]],[2,3,["H3129"]],[3,5,["H7645"]],[5,6,["H3130"]]]},{"k":12639,"v":[[0,2,["H2766"]],[2,3,["H5733"]],[3,5,["H4812"]],[5,6,["H2517"]]]},{"k":12640,"v":[[0,2,["H5714"]],[2,3,["H2148"]],[3,5,["H1599"]],[5,6,["H4918"]]]},{"k":12641,"v":[[0,2,["H29"]],[2,3,["H2147"]],[3,5,["H4509"]],[5,7,["H4153"]],[7,8,["H6408"]]]},{"k":12642,"v":[[0,2,["H1083"]],[2,3,["H8051"]],[3,5,["H8098"]],[5,6,["H3083"]]]},{"k":12643,"v":[[0,3,["H3114"]],[3,4,["H4982"]],[4,6,["H3048"]],[6,7,["H5813"]]]},{"k":12644,"v":[[0,2,["H5543"]],[2,3,["H7040"]],[3,5,["H5987"]],[5,6,["H5677"]]]},{"k":12645,"v":[[0,2,["H2518"]],[2,3,["H2811"]],[3,5,["H3048"]],[5,6,["H5417"]]]},{"k":12646,"v":[[0,2,["H3881"]],[2,5,["H3117"]],[5,7,["H475"]],[7,8,["H3111"]],[8,10,["H3110"]],[10,12,["H3037"]],[12,14,["H3789"]],[14,15,["H7218"]],[15,18,["H1"]],[18,21,["H3548"]],[21,22,["H5921"]],[22,24,["H4438"]],[24,26,["H1867"]],[26,28,["H6542"]]]},{"k":12647,"v":[[0,2,["H1121"]],[2,4,["H3878"]],[4,6,["H7218"]],[6,9,["H1"]],[9,11,["H3789"]],[11,12,["H5921"]],[12,14,["H5612"]],[14,17,["H1697"]],[17,19,["H5704"]],[19,21,["H3117"]],[21,23,["H3110"]],[23,25,["H1121"]],[25,27,["H475"]]]},{"k":12648,"v":[[0,3,["H7218"]],[3,6,["H3881"]],[6,7,["H2811"]],[7,8,["H8274"]],[8,10,["H3442"]],[10,12,["H1121"]],[12,14,["H6934"]],[14,17,["H251"]],[17,19,["H5048"]],[19,22,["H1984"]],[22,26,["H3034"]],[26,30,["H4687"]],[30,32,["H1732"]],[32,34,["H376"]],[34,36,["H430"]],[36,37,["H4929"]],[37,39,["H5980"]],[39,40,["H4929"]]]},{"k":12649,"v":[[0,1,["H4983"]],[1,3,["H1229"]],[3,4,["H5662"]],[4,5,["H4918"]],[5,6,["H2929"]],[6,7,["H6126"]],[7,9,["H7778"]],[9,10,["H8104"]],[10,12,["H4929"]],[12,15,["H624"]],[15,18,["H8179"]]]},{"k":12650,"v":[[0,1,["H428"]],[1,5,["H3117"]],[5,7,["H3113"]],[7,9,["H1121"]],[9,11,["H3442"]],[11,13,["H1121"]],[13,15,["H3136"]],[15,19,["H3117"]],[19,21,["H5166"]],[21,23,["H6346"]],[23,26,["H5830"]],[26,28,["H3548"]],[28,30,["H5608"]]]},{"k":12651,"v":[[0,4,["H2598"]],[4,7,["H2346"]],[7,9,["H3389"]],[9,11,["H1245","(H853)"]],[11,13,["H3881"]],[13,16,["H4480","H3605"]],[16,18,["H4725"]],[18,20,["H935"]],[20,23,["H3389"]],[23,25,["H6213"]],[25,27,["H2598"]],[27,29,["H8057"]],[29,32,["H8426"]],[32,35,["H7892"]],[35,37,["H4700"]],[37,38,["H5035"]],[38,41,["H3658"]]]},{"k":12652,"v":[[0,3,["H1121"]],[3,6,["H7891"]],[6,9,["H622"]],[9,12,["H4480"]],[12,15,["H3603"]],[15,17,["H5439"]],[17,18,["H3389"]],[18,20,["H4480"]],[20,22,["H2691"]],[22,24,["H5200"]]]},{"k":12653,"v":[[0,4,["H4480","H1004"]],[4,6,["H1537"]],[6,11,["H4480","H7704"]],[11,13,["H1387"]],[13,15,["H5820"]],[15,16,["H3588"]],[16,18,["H7891"]],[18,20,["H1129"]],[20,22,["H2691"]],[22,24,["H5439"]],[24,25,["H3389"]]]},{"k":12654,"v":[[0,3,["H3548"]],[3,6,["H3881"]],[6,8,["H2891"]],[8,10,["H2891","(H853)"]],[10,12,["H5971"]],[12,15,["H8179"]],[15,18,["H2346"]]]},{"k":12655,"v":[[0,4,["H5927","(H853)"]],[4,6,["H8269"]],[6,8,["H3063"]],[8,9,["H4480","H5921"]],[9,11,["H2346"]],[11,13,["H5975"]],[13,14,["H8147"]],[14,15,["H1419"]],[15,21,["H8426"]],[21,24,["H1980"]],[24,28,["H3225"]],[28,29,["H4480","H5921"]],[29,31,["H2346"]],[31,34,["H830"]],[34,35,["H8179"]]]},{"k":12656,"v":[[0,2,["H310"]],[2,4,["H1980"]],[4,5,["H1955"]],[5,7,["H2677"]],[7,10,["H8269"]],[10,12,["H3063"]]]},{"k":12657,"v":[[0,2,["H5838"]],[2,3,["H5830"]],[3,5,["H4918"]]]},{"k":12658,"v":[[0,1,["H3063"]],[1,3,["H1144"]],[3,5,["H8098"]],[5,7,["H3414"]]]},{"k":12659,"v":[[0,6,["H4480","H1121","H3548"]],[6,8,["H2689"]],[8,10,["H2148"]],[10,12,["H1121"]],[12,14,["H3129"]],[14,16,["H1121"]],[16,18,["H8098"]],[18,20,["H1121"]],[20,22,["H4983"]],[22,24,["H1121"]],[24,26,["H4320"]],[26,28,["H1121"]],[28,30,["H2139"]],[30,32,["H1121"]],[32,34,["H623"]]]},{"k":12660,"v":[[0,3,["H251"]],[3,4,["H8098"]],[4,6,["H5832"]],[6,7,["H4450"]],[7,8,["H1562"]],[8,9,["H4597"]],[9,10,["H5417"]],[10,12,["H3063"]],[12,13,["H2607"]],[13,16,["H7892"]],[16,17,["H3627"]],[17,19,["H1732"]],[19,21,["H376"]],[21,23,["H430"]],[23,25,["H5830"]],[25,27,["H5608"]],[27,28,["H6440"]],[28,29,[]]]},{"k":12661,"v":[[0,2,["H5921"]],[2,4,["H5869"]],[4,5,["H8179"]],[5,9,["H5048"]],[9,13,["H5927"]],[13,14,["H5921"]],[14,16,["H4609"]],[16,19,["H5892"]],[19,21,["H1732"]],[21,25,["H4608"]],[25,28,["H2346"]],[28,29,["H4480","H5921"]],[29,31,["H1004"]],[31,33,["H1732"]],[33,35,["H5704"]],[35,37,["H4325"]],[37,38,["H8179"]],[38,39,["H4217"]]]},{"k":12662,"v":[[0,3,["H8145"]],[3,9,["H8426"]],[9,10,["H1980"]],[10,12,["H4136"]],[12,15,["H589"]],[15,16,["H310"]],[16,20,["H2677"]],[20,23,["H5971"]],[23,24,["H4480","H5921"]],[24,26,["H2346"]],[26,28,["H4480","H5921"]],[28,30,["H4026"]],[30,33,["H8574"]],[33,35,["H5704"]],[35,37,["H7342"]],[37,38,["H2346"]]]},{"k":12663,"v":[[0,3,["H4480","H5921"]],[3,5,["H8179"]],[5,7,["H669"]],[7,9,["H5921"]],[9,11,["H3465"]],[11,12,["H8179"]],[12,14,["H5921"]],[14,16,["H1709"]],[16,17,["H8179"]],[17,20,["H4026"]],[20,22,["H2606"]],[22,25,["H4026"]],[25,27,["H3968"]],[27,29,["H5704"]],[29,31,["H6629"]],[31,32,["H8179"]],[32,36,["H5975"]],[36,39,["H4307"]],[39,40,["H8179"]]]},{"k":12664,"v":[[0,2,["H5975"]],[2,4,["H8147"]],[4,10,["H8426"]],[10,13,["H1004"]],[13,15,["H430"]],[15,17,["H589"]],[17,20,["H2677"]],[20,23,["H5461"]],[23,24,["H5973"]],[24,25,[]]]},{"k":12665,"v":[[0,3,["H3548"]],[3,4,["H471"]],[4,5,["H4641"]],[5,6,["H4509"]],[6,7,["H4320"]],[7,8,["H454"]],[8,9,["H2148"]],[9,11,["H2608"]],[11,13,["H2689"]]]},{"k":12666,"v":[[0,2,["H4641"]],[2,4,["H8098"]],[4,6,["H499"]],[6,8,["H5813"]],[8,10,["H3076"]],[10,12,["H4441"]],[12,14,["H5867"]],[14,16,["H5829"]],[16,19,["H7891"]],[19,21,["H8085"]],[21,23,["H3156"]],[23,25,["H6496"]]]},{"k":12667,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H2076"]],[5,6,["H1419"]],[6,7,["H2077"]],[7,9,["H8055"]],[9,10,["H3588"]],[10,11,["H430"]],[11,15,["H8055"]],[15,17,["H1419"]],[17,18,["H8057"]],[18,20,["H802"]],[20,21,["H1571"]],[21,24,["H3206"]],[24,25,["H8055"]],[25,29,["H8057"]],[29,31,["H3389"]],[31,33,["H8085"]],[33,36,["H4480","H7350"]]]},{"k":12668,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,6,["H376"]],[6,7,["H6485"]],[7,8,["H5921"]],[8,10,["H5393"]],[10,13,["H214"]],[13,16,["H8641"]],[16,19,["H7225"]],[19,23,["H4643"]],[23,25,["H3664"]],[25,31,["H7704"]],[31,34,["H5892"]],[34,36,["H4521"]],[36,39,["H8451"]],[39,42,["H3548"]],[42,44,["H3881"]],[44,45,["H3588"]],[45,46,["H3063"]],[46,47,["H8057"]],[47,48,["H5921"]],[48,50,["H3548"]],[50,52,["H5921"]],[52,54,["H3881"]],[54,56,["H5975"]]]},{"k":12669,"v":[[0,4,["H7891"]],[4,7,["H7778"]],[7,8,["H8104"]],[8,10,["H4931"]],[10,13,["H430"]],[13,16,["H4931"]],[16,19,["H2893"]],[19,23,["H4687"]],[23,25,["H1732"]],[25,28,["H8010"]],[28,30,["H1121"]]]},{"k":12670,"v":[[0,1,["H3588"]],[1,4,["H3117"]],[4,6,["H1732"]],[6,8,["H623"]],[8,10,["H4480","H6924"]],[10,13,["H7218"]],[13,16,["H7891"]],[16,18,["H7892"]],[18,20,["H8416"]],[20,22,["H3034"]],[22,24,["H430"]]]},{"k":12671,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,6,["H3117"]],[6,8,["H2216"]],[8,12,["H3117"]],[12,14,["H5166"]],[14,15,["H5414"]],[15,17,["H4521"]],[17,20,["H7891"]],[20,23,["H7778"]],[23,25,["H3117","H3117"]],[25,27,["H1697"]],[27,30,["H6942"]],[30,35,["H3881"]],[35,38,["H3881"]],[38,39,["H6942"]],[39,43,["H1121"]],[43,45,["H175"]]]},{"k":12672,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H7121"]],[5,8,["H5612"]],[8,10,["H4872"]],[10,13,["H241"]],[13,16,["H5971"]],[16,20,["H4672"]],[20,21,["H3789"]],[21,22,["H834"]],[22,24,["H5984"]],[24,27,["H4125"]],[27,29,["H3808"]],[29,30,["H935"]],[30,33,["H6951"]],[33,35,["H430"]],[35,37,["H5704","H5769"]]]},{"k":12673,"v":[[0,1,["H3588"]],[1,3,["H6923"]],[3,4,["H3808","(H853)"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,10,["H3899"]],[10,13,["H4325"]],[13,15,["H7936","(H853)"]],[15,16,["H1109"]],[16,17,["H5921"]],[17,22,["H7043"]],[22,26,["H430"]],[26,27,["H2015"]],[27,29,["H7045"]],[29,32,["H1293"]]]},{"k":12674,"v":[[0,5,["H1961"]],[5,9,["H8085","(H853)"]],[9,11,["H8451"]],[11,14,["H914"]],[14,16,["H4480","H3478"]],[16,17,["H3605"]],[17,20,["H6154"]]]},{"k":12675,"v":[[0,2,["H6440"]],[2,3,["H4480","H2088"]],[3,4,["H475"]],[4,6,["H3548"]],[6,9,["H5414"]],[9,12,["H3957"]],[12,15,["H1004"]],[15,18,["H430"]],[18,20,["H7138"]],[20,22,["H2900"]]]},{"k":12676,"v":[[0,4,["H6213"]],[4,8,["H1419"]],[8,9,["H3957"]],[9,10,["H8033"]],[10,11,["H6440","H1961"]],[11,13,["H5414","(H853)"]],[13,16,["H4503"]],[16,18,["H3828"]],[18,21,["H3627"]],[21,24,["H4643"]],[24,27,["H1715"]],[27,30,["H8492"]],[30,33,["H3323"]],[33,36,["H4687"]],[36,42,["H3881"]],[42,45,["H7891"]],[45,48,["H7778"]],[48,51,["H8641"]],[51,54,["H3548"]]]},{"k":12677,"v":[[0,3,["H3605"]],[3,4,["H2088"]],[4,6,["H1961"]],[6,7,["H3808"]],[7,10,["H3389"]],[10,11,["H3588"]],[11,14,["H8147"]],[14,16,["H7970"]],[16,17,["H8141"]],[17,19,["H783"]],[19,20,["H4428"]],[20,22,["H894"]],[22,23,["H935"]],[23,25,["H413"]],[25,27,["H4428"]],[27,29,["H7093"]],[29,31,["H3117"]],[31,34,["H7592"]],[34,35,["H4480"]],[35,37,["H4428"]]]},{"k":12678,"v":[[0,3,["H935"]],[3,5,["H3389"]],[5,7,["H995"]],[7,10,["H7451"]],[10,11,["H834"]],[11,12,["H475"]],[12,13,["H6213"]],[13,15,["H2900"]],[15,17,["H6213"]],[17,20,["H5393"]],[20,23,["H2691"]],[23,26,["H1004"]],[26,28,["H430"]]]},{"k":12679,"v":[[0,3,["H7489"]],[3,5,["H3966"]],[5,9,["H7993","(H853)"]],[9,10,["H3605"]],[10,12,["H1004"]],[12,13,["H3627"]],[13,15,["H2900"]],[15,16,["H2351"]],[16,17,["H4480"]],[17,19,["H3957"]]]},{"k":12680,"v":[[0,3,["H559"]],[3,6,["H2891"]],[6,8,["H3957"]],[8,10,["H8033"]],[10,13,["H7725"]],[13,15,["H3627"]],[15,18,["H1004"]],[18,20,["H430"]],[20,21,["H854"]],[21,24,["H4503"]],[24,27,["H3828"]]]},{"k":12681,"v":[[0,3,["H3045"]],[3,4,["H3588"]],[4,6,["H4521"]],[6,9,["H3881"]],[9,11,["H3808"]],[11,13,["H5414"]],[13,17,["H3881"]],[17,20,["H7891"]],[20,22,["H6213"]],[22,24,["H4399"]],[24,26,["H1272"]],[26,28,["H376"]],[28,31,["H7704"]]]},{"k":12682,"v":[[0,2,["H7378"]],[2,4,["H854"]],[4,6,["H5461"]],[6,8,["H559"]],[8,9,["H4069"]],[9,12,["H1004"]],[12,14,["H430"]],[14,15,["H5800"]],[15,20,["H6908"]],[20,22,["H5975"]],[22,24,["H5921"]],[24,26,["H5977"]]]},{"k":12683,"v":[[0,2,["H935"]],[2,3,["H3605"]],[3,4,["H3063"]],[4,6,["H4643"]],[6,9,["H1715"]],[9,13,["H8492"]],[13,16,["H3323"]],[16,19,["H214"]]]},{"k":12684,"v":[[0,4,["H686"]],[4,5,["H5921"]],[5,7,["H214"]],[7,8,["H8018"]],[8,10,["H3548"]],[10,12,["H6659"]],[12,14,["H5608"]],[14,16,["H4480"]],[16,18,["H3881"]],[18,19,["H6305"]],[19,22,["H5921","H3027"]],[22,25,["H2605"]],[25,27,["H1121"]],[27,29,["H2139"]],[29,31,["H1121"]],[31,33,["H4983"]],[33,34,["H3588"]],[34,37,["H2803"]],[37,38,["H539"]],[38,41,["H5921"]],[41,44,["H2505"]],[44,47,["H251"]]]},{"k":12685,"v":[[0,1,["H2142"]],[1,5,["H430"]],[5,6,["H5921"]],[6,7,["H2063"]],[7,11,["H4229","H408"]],[11,14,["H2617"]],[14,15,["H834"]],[15,18,["H6213"]],[18,21,["H1004"]],[21,24,["H430"]],[24,28,["H4929"]],[28,29,[]]]},{"k":12686,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,4,["H7200"]],[4,7,["H3063"]],[7,9,["H1869"]],[9,11,["H1660"]],[11,14,["H7676"]],[14,17,["H935"]],[17,18,["H6194"]],[18,20,["H6006","H5921"]],[20,21,["H2543"]],[21,23,["H637"]],[23,24,["H3196"]],[24,25,["H6025"]],[25,27,["H8384"]],[27,29,["H3605"]],[29,32,["H4853"]],[32,36,["H935"]],[36,37,["H3389"]],[37,40,["H7676"]],[40,41,["H3117"]],[41,44,["H5749"]],[44,49,["H3117"]],[49,52,["H4376"]],[52,53,["H6718"]]]},{"k":12687,"v":[[0,2,["H3427"]],[2,5,["H6876"]],[5,9,["H935"]],[9,10,["H1709"]],[10,12,["H3605"]],[12,15,["H4377"]],[15,17,["H4376"]],[17,20,["H7676"]],[20,23,["H1121"]],[23,25,["H3063"]],[25,28,["H3389"]]]},{"k":12688,"v":[[0,3,["H7378"]],[3,4,["H854"]],[4,6,["H2715"]],[6,8,["H3063"]],[8,10,["H559"]],[10,13,["H4100"]],[13,14,["H7451"]],[14,15,["H1697"]],[15,17,["H2088"]],[17,18,["H834"]],[18,19,["H859"]],[19,20,["H6213"]],[20,22,["H2490","(H853)"]],[22,24,["H7676"]],[24,25,["H3117"]]]},{"k":12689,"v":[[0,1,["H6213"]],[1,2,["H3808"]],[2,4,["H1"]],[4,5,["H3541"]],[5,10,["H430"]],[10,11,["H935","(H853)"]],[11,12,["H3605"]],[12,13,["H2063"]],[13,14,["H7451"]],[14,15,["H5921"]],[15,18,["H5921"]],[18,19,["H2063"]],[19,20,["H5892"]],[20,22,["H859"]],[22,24,["H3254"]],[24,25,["H2740"]],[25,26,["H5921"]],[26,27,["H3478"]],[27,29,["H2490","(H853)"]],[29,31,["H7676"]]]},{"k":12690,"v":[[0,5,["H1961"]],[5,7,["H834"]],[7,9,["H8179"]],[9,11,["H3389"]],[11,15,["H6751"]],[15,16,["H6440"]],[16,18,["H7676"]],[18,20,["H559"]],[20,23,["H1817"]],[23,26,["H5462"]],[26,28,["H559"]],[28,29,["H834"]],[29,32,["H3808"]],[32,34,["H6605"]],[34,35,["H5704"]],[35,36,["H310"]],[36,38,["H7676"]],[38,43,["H4480","H5288"]],[43,44,["H5975"]],[44,46,["H5921"]],[46,48,["H8179"]],[48,52,["H3808"]],[52,53,["H4853"]],[53,56,["H935"]],[56,59,["H7676"]],[59,60,["H3117"]]]},{"k":12691,"v":[[0,3,["H7402"]],[3,5,["H4376"]],[5,7,["H3605"]],[7,10,["H4465"]],[10,11,["H3885"]],[11,12,["H4480","H2351"]],[12,13,["H3389"]],[13,14,["H6471"]],[14,16,["H8147"]]]},{"k":12692,"v":[[0,3,["H5749"]],[3,7,["H559"]],[7,8,["H413"]],[8,10,["H4069"]],[10,11,["H3885"]],[11,12,["H859"]],[12,13,["H5048"]],[13,15,["H2346"]],[15,16,["H518"]],[16,20,["H8138"]],[20,23,["H7971"]],[23,24,["H3027"]],[24,27,["H4480"]],[27,28,["H1931"]],[28,29,["H6256"]],[29,31,["H935"]],[31,33,["H3808"]],[33,37,["H7676"]]]},{"k":12693,"v":[[0,3,["H559"]],[3,5,["H3881"]],[5,6,["H834"]],[6,8,["H1961"]],[8,10,["H2891"]],[10,15,["H935"]],[15,17,["H8104"]],[17,19,["H8179"]],[19,21,["H6942","(H853)"]],[21,23,["H7676"]],[23,24,["H3117"]],[24,25,["H2142"]],[25,29,["H430"]],[29,31,["H2063"]],[31,32,["H1571"]],[32,34,["H2347","H5921"]],[34,39,["H7230"]],[39,42,["H2617"]]]},{"k":12694,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,4,["H1571"]],[4,5,["H7200"]],[5,6,["(H853)"]],[6,7,["H3064"]],[7,10,["H3427"]],[10,11,["H802"]],[11,13,["H796"]],[13,15,["H5984"]],[15,18,["H4125"]]]},{"k":12695,"v":[[0,3,["H1121"]],[3,4,["H1696"]],[4,5,["H2677"]],[5,10,["H797"]],[10,12,["H5234"]],[12,13,["H369"]],[13,14,["H1696"]],[14,18,["H3066"]],[18,23,["H3956"]],[23,25,["H5971"]],[25,26,["H5971"]]]},{"k":12696,"v":[[0,3,["H7378"]],[3,4,["H5973"]],[4,7,["H7043"]],[7,10,["H5221"]],[10,11,["H376"]],[11,12,["H4480"]],[12,18,["H4803"]],[18,22,["H7650"]],[22,24,["H430"]],[24,28,["H518"]],[28,29,["H5414"]],[29,31,["H1323"]],[31,34,["H1121"]],[34,35,["H518"]],[35,36,["H5375"]],[36,38,["H4480","H1323"]],[38,41,["H1121"]],[41,44,[]]]},{"k":12697,"v":[[0,2,["H3808"]],[2,3,["H8010"]],[3,4,["H4428"]],[4,6,["H3478"]],[6,7,["H2398"]],[7,8,["H5921"]],[8,10,["H428"]],[10,13,["H7227"]],[13,14,["H1471"]],[14,15,["H1961"]],[15,17,["H3808"]],[17,18,["H4428"]],[18,20,["H3644"]],[20,22,["H1961"]],[22,23,["H157"]],[23,26,["H430"]],[26,28,["H430"]],[28,29,["H5414"]],[29,31,["H4428"]],[31,32,["H5921"]],[32,33,["H3605"]],[33,34,["H3478"]],[34,35,["H1571"]],[35,39,["H5237"]],[39,40,["H802"]],[40,43,["H2398"]]]},{"k":12698,"v":[[0,4,["H8085"]],[4,8,["H6213","(H853)"]],[8,9,["H3605"]],[9,10,["H2063"]],[10,11,["H1419"]],[11,12,["H7451"]],[12,14,["H4603"]],[14,17,["H430"]],[17,19,["H3427"]],[19,20,["H5237"]],[20,21,["H802"]]]},{"k":12699,"v":[[0,5,["H4480","H1121"]],[5,7,["H3111"]],[7,9,["H1121"]],[9,11,["H475"]],[11,13,["H1419"]],[13,14,["H3548"]],[14,18,["H2860"]],[18,20,["H5571"]],[20,22,["H2772"]],[22,25,["H1272"]],[25,27,["H4480","H5921"]],[27,28,[]]]},{"k":12700,"v":[[0,1,["H2142"]],[1,5,["H430"]],[5,6,["H5921"]],[6,9,["H1352"]],[9,11,["H3550"]],[11,14,["H1285"]],[14,17,["H3550"]],[17,21,["H3881"]]]},{"k":12701,"v":[[0,2,["H2891"]],[2,6,["H4480","H3605"]],[6,7,["H5236"]],[7,9,["H5975"]],[9,11,["H4931"]],[11,14,["H3548"]],[14,17,["H3881"]],[17,19,["H376"]],[19,22,["H4399"]]]},{"k":12702,"v":[[0,4,["H6086"]],[4,5,["H7133"]],[5,7,["H6256"]],[7,8,["H2163"]],[8,12,["H1061"]],[12,13,["H2142"]],[13,17,["H430"]],[17,19,["H2896"]]]},{"k":12703,"v":[[0,5,["H1961"]],[5,8,["H3117"]],[8,10,["H325"]],[10,11,["H1931"]],[11,13,["H325"]],[13,15,["H4427"]],[15,17,["H4480","H1912"]],[17,19,["H5704"]],[19,20,["H3568"]],[20,23,["H3967"]],[23,25,["H7651"]],[25,27,["H6242"]],[27,28,["H4082"]]]},{"k":12704,"v":[[0,3,["H1992"]],[3,4,["H3117"]],[4,7,["H4428"]],[7,8,["H325"]],[8,9,["H3427"]],[9,10,["H5921"]],[10,12,["H3678"]],[12,15,["H4438"]],[15,16,["H834"]],[16,19,["H7800"]],[19,21,["H1002"]]]},{"k":12705,"v":[[0,3,["H7969"]],[3,4,["H8141"]],[4,7,["H4427"]],[7,9,["H6213"]],[9,11,["H4960"]],[11,13,["H3605"]],[13,15,["H8269"]],[15,18,["H5650"]],[18,20,["H2428"]],[20,22,["H6539"]],[22,24,["H4074"]],[24,26,["H6579"]],[26,28,["H8269"]],[28,31,["H4082"]],[31,33,["H6440"]],[33,34,[]]]},{"k":12706,"v":[[0,3,["H7200","(H853)"]],[3,5,["H6239"]],[5,8,["H3519"]],[8,9,["H4438"]],[9,12,["H3366"]],[12,15,["H8597"]],[15,16,["H1420"]],[16,17,["H7227"]],[17,18,["H3117"]],[18,21,["H3967"]],[21,23,["H8084"]],[23,24,["H3117"]]]},{"k":12707,"v":[[0,3,["H428"]],[3,4,["H3117"]],[4,6,["H4390"]],[6,8,["H4428"]],[8,9,["H6213"]],[9,11,["H4960"]],[11,13,["H3605"]],[13,15,["H5971"]],[15,18,["H4672"]],[18,20,["H7800"]],[20,22,["H1002"]],[22,25,["H4480","H1419"]],[25,27,["H6996"]],[27,28,["H7651"]],[28,29,["H3117"]],[29,32,["H2691"]],[32,35,["H1594"]],[35,38,["H4428"]],[38,39,["H1055"]]]},{"k":12708,"v":[[0,3,["H2353"]],[3,4,["H3768"]],[4,6,["H8504"]],[6,8,["H270"]],[8,10,["H2256"]],[10,13,["H948"]],[13,15,["H713"]],[15,16,["H5921"]],[16,17,["H3701"]],[17,18,["H1550"]],[18,20,["H5982"]],[20,22,["H8336"]],[22,24,["H4296"]],[24,27,["H2091"]],[27,29,["H3701"]],[29,30,["H5921"]],[30,32,["H7531"]],[32,34,["H923"]],[34,36,["H8336"]],[36,38,["H1858"]],[38,41,["H5508"]]]},{"k":12709,"v":[[0,5,["H8248"]],[5,7,["H3627"]],[7,9,["H2091"]],[9,11,["H3627"]],[11,13,["H8138"]],[13,16,["H4480","H3627"]],[16,18,["H4438"]],[18,19,["H3196"]],[19,21,["H7227"]],[21,25,["H3027"]],[25,28,["H4428"]]]},{"k":12710,"v":[[0,3,["H8360"]],[3,8,["H1881"]],[8,9,["H369"]],[9,11,["H597"]],[11,12,["H3588"]],[12,13,["H3651"]],[13,15,["H4428"]],[15,17,["H3245"]],[17,18,["H5921"]],[18,19,["H3605"]],[19,21,["H7227"]],[21,24,["H1004"]],[24,28,["H6213"]],[28,32,["H376","H376"]],[32,33,["H7522"]]]},{"k":12711,"v":[[0,1,["H1571"]],[1,2,["H2060"]],[2,4,["H4436"]],[4,5,["H6213"]],[5,7,["H4960"]],[7,10,["H802"]],[10,13,["H4438"]],[13,14,["H1004"]],[14,15,["H834"]],[15,18,["H4428"]],[18,19,["H325"]]]},{"k":12712,"v":[[0,3,["H7637"]],[3,4,["H3117"]],[4,7,["H3820"]],[7,10,["H4428"]],[10,12,["H2895"]],[12,14,["H3196"]],[14,16,["H559"]],[16,17,["H4104"]],[17,18,["H968"]],[18,19,["H2726"]],[19,20,["H903"]],[20,22,["H5"]],[22,23,["H2242"]],[23,25,["H3752"]],[25,27,["H7651"]],[27,28,["H5631"]],[28,30,["H8334","(H853)"]],[30,33,["H6440"]],[33,35,["H325"]],[35,37,["H4428"]]]},{"k":12713,"v":[[0,2,["H935","(H853)"]],[2,3,["H2060"]],[3,5,["H4436"]],[5,6,["H6440"]],[6,8,["H4428"]],[8,11,["H3804"]],[11,12,["H4438"]],[12,14,["H7200"]],[14,16,["H5971"]],[16,19,["H8269","(H853)"]],[19,21,["H3308"]],[21,22,["H3588"]],[22,23,["H1931"]],[23,25,["H2896"]],[25,28,["H4758"]]]},{"k":12714,"v":[[0,3,["H4436"]],[3,4,["H2060"]],[4,5,["H3985"]],[5,7,["H935"]],[7,10,["H4428"]],[10,11,["H1697"]],[11,12,["H834","H3027"]],[12,14,["H5631"]],[14,18,["H4428"]],[18,19,["H3966"]],[19,20,["H7107"]],[20,23,["H2534"]],[23,24,["H1197"]],[24,26,[]]]},{"k":12715,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,8,["H2450"]],[8,10,["H3045"]],[10,12,["H6256"]],[12,13,["H3588"]],[13,14,["H3651"]],[14,17,["H4428"]],[17,18,["H1697"]],[18,19,["H6440"]],[19,20,["H3605"]],[20,22,["H3045"]],[22,23,["H1881"]],[23,25,["H1779"]]]},{"k":12716,"v":[[0,3,["H7138"]],[3,4,["H413"]],[4,7,["H3771"]],[7,8,["H8369"]],[8,9,["H133"]],[9,10,["H8659"]],[10,11,["H4825"]],[11,12,["H4826"]],[12,14,["H4462"]],[14,16,["H7651"]],[16,17,["H8269"]],[17,19,["H6539"]],[19,21,["H4074"]],[21,23,["H7200"]],[23,25,["H4428"]],[25,26,["H6440"]],[26,29,["H3427"]],[29,31,["H7223"]],[31,34,["H4438"]]]},{"k":12717,"v":[[0,1,["H4100"]],[1,4,["H6213"]],[4,7,["H4436"]],[7,8,["H2060"]],[8,11,["H1881"]],[11,12,["H5921","H834"]],[12,15,["H3808"]],[15,16,["H6213","(H853)"]],[16,18,["H3982"]],[18,21,["H4428"]],[21,22,["H325"]],[22,23,["H3027"]],[23,25,["H5631"]]]},{"k":12718,"v":[[0,2,["H4462"]],[2,3,["H559"]],[3,4,["H6440"]],[4,6,["H4428"]],[6,9,["H8269"]],[9,10,["H2060"]],[10,12,["H4436"]],[12,14,["H3808"]],[14,16,["H5753"]],[16,17,["H5921"]],[17,19,["H4428"]],[19,20,["H905"]],[20,21,["H3588"]],[21,23,["H5921"]],[23,24,["H3605"]],[24,26,["H8269"]],[26,28,["H5921"]],[28,29,["H3605"]],[29,31,["H5971"]],[31,32,["H834"]],[32,35,["H3605"]],[35,37,["H4082"]],[37,40,["H4428"]],[40,41,["H325"]]]},{"k":12719,"v":[[0,1,["H3588"]],[1,3,["H1697"]],[3,6,["H4436"]],[6,9,["H3318"]],[9,10,["H5921"]],[10,11,["H3605"]],[11,12,["H802"]],[12,17,["H959"]],[17,19,["H1167"]],[19,22,["H5869"]],[22,27,["H559"]],[27,29,["H4428"]],[29,30,["H325"]],[30,31,["H559","(H853)"]],[31,32,["H2060"]],[32,34,["H4436"]],[34,38,["H935"]],[38,39,["H6440"]],[39,43,["H935"]],[43,44,["H3808"]]]},{"k":12720,"v":[[0,4,["H8282"]],[4,6,["H6539"]],[6,8,["H4074"]],[8,9,["H559"]],[9,10,["H2088"]],[10,11,["H3117"]],[11,13,["H3605"]],[13,15,["H4428"]],[15,16,["H8269"]],[16,17,["H834"]],[17,20,["H8085","(H853)"]],[20,22,["H1697"]],[22,25,["H4436"]],[25,31,["H1767"]],[31,32,["H963"]],[32,34,["H7110"]]]},{"k":12721,"v":[[0,1,["H518"]],[1,3,["H2895","H5921"]],[3,5,["H4428"]],[5,8,["H3318"]],[8,10,["H4438"]],[10,11,["H1697"]],[11,12,["H4480","H6440"]],[12,18,["H3789"]],[18,21,["H1881"]],[21,24,["H6539"]],[24,27,["H4074"]],[27,31,["H3808"]],[31,32,["H5674"]],[32,33,["H834"]],[33,34,["H2060"]],[34,35,["H935"]],[35,36,["H3808"]],[36,38,["H6440"]],[38,39,["H4428"]],[39,40,["H325"]],[40,44,["H4428"]],[44,45,["H5414"]],[45,48,["H4438"]],[48,50,["H7468"]],[50,53,["H2896"]],[53,54,["H4480"]],[54,55,[]]]},{"k":12722,"v":[[0,4,["H4428"]],[4,5,["H6599"]],[5,6,["H834"]],[6,9,["H6213"]],[9,12,["H8085"]],[12,14,["H3605"]],[14,16,["H4438"]],[16,17,["H3588"]],[17,18,["H1931"]],[18,20,["H7227"]],[20,21,["H3605"]],[21,23,["H802"]],[23,25,["H5414"]],[25,28,["H1167"]],[28,29,["H3366"]],[29,32,["H4480","H1419"]],[32,34,["H6996"]]]},{"k":12723,"v":[[0,3,["H1697"]],[3,4,["H3190","H5869"]],[4,6,["H4428"]],[6,9,["H8269"]],[9,12,["H4428"]],[12,13,["H6213"]],[13,17,["H1697"]],[17,19,["H4462"]]]},{"k":12724,"v":[[0,3,["H7971"]],[3,4,["H5612"]],[4,5,["H413"]],[5,6,["H3605"]],[6,8,["H4428"]],[8,9,["H4082"]],[9,10,["H413"]],[10,12,["H4082","H4082"]],[12,16,["H3791"]],[16,19,["H413"]],[19,21,["H5971","H5971"]],[21,24,["H3956"]],[24,26,["H3605"]],[26,27,["H376"]],[27,28,["H1961"]],[28,30,["H8323"]],[30,34,["H1004"]],[34,40,["H1696"]],[40,44,["H3956"]],[44,47,["H5971"]]]},{"k":12725,"v":[[0,1,["H310"]],[1,2,["H428"]],[2,3,["H1697"]],[3,6,["H2534"]],[6,8,["H4428"]],[8,9,["H325"]],[9,11,["H7918"]],[11,13,["H2142","(H853)"]],[13,14,["H2060"]],[14,16,["H834"]],[16,19,["H6213"]],[19,21,["H834"]],[21,23,["H1504"]],[23,24,["H5921"]],[24,25,[]]]},{"k":12726,"v":[[0,2,["H559"]],[2,4,["H4428"]],[4,5,["H5288"]],[5,7,["H8334"]],[7,13,["H2896","H4758"]],[13,14,["H5291"]],[14,15,["H1330"]],[15,16,["H1245"]],[16,19,["H4428"]]]},{"k":12727,"v":[[0,4,["H4428"]],[4,5,["H6485"]],[5,6,["H6496"]],[6,8,["H3605"]],[8,10,["H4082"]],[10,13,["H4438"]],[13,18,["H6908","(H853)"]],[18,19,["H3605"]],[19,21,["H2896","H4758"]],[21,22,["H5291"]],[22,23,["H1330"]],[23,24,["H413"]],[24,25,["H7800"]],[25,27,["H1002"]],[27,28,["H413"]],[28,30,["H1004"]],[30,33,["H802"]],[33,34,["H413"]],[34,36,["H3027"]],[36,38,["H1896"]],[38,40,["H4428"]],[40,41,["H5631"]],[41,42,["H8104"]],[42,45,["H802"]],[45,51,["H8562"]],[51,53,["H5414"]],[53,54,[]]]},{"k":12728,"v":[[0,4,["H5291"]],[4,5,["H834"]],[5,6,["H3190","H5869"]],[6,8,["H4428"]],[8,10,["H4427"]],[10,11,["H8478"]],[11,13,["H2060"]],[13,16,["H1697"]],[16,17,["H3190","H5869"]],[17,19,["H4428"]],[19,22,["H6213"]],[22,23,["H3651"]]]},{"k":12729,"v":[[0,3,["H7800"]],[3,5,["H1002"]],[5,7,["H1961"]],[7,9,["H376"]],[9,10,["H3064"]],[10,12,["H8034"]],[12,14,["H4782"]],[14,16,["H1121"]],[16,18,["H2971"]],[18,20,["H1121"]],[20,22,["H8096"]],[22,24,["H1121"]],[24,26,["H7027"]],[26,28,["H1145"]]]},{"k":12730,"v":[[0,1,["H834"]],[1,5,["H1540"]],[5,7,["H4480","H3389"]],[7,8,["H5973"]],[8,10,["H1473"]],[10,11,["H834"]],[11,15,["H1540"]],[15,16,["H5973"]],[16,17,["H3204"]],[17,18,["H4428"]],[18,20,["H3063"]],[20,21,["H834"]],[21,22,["H5019"]],[22,24,["H4428"]],[24,26,["H894"]],[26,29,["H1540"]]]},{"k":12731,"v":[[0,4,["H1961","H539","(H853)"]],[4,5,["H1919"]],[5,6,["H1931"]],[6,8,["H635"]],[8,10,["H1730"]],[10,11,["H1323"]],[11,12,["H3588"]],[12,15,["H369"]],[15,16,["H1"]],[16,18,["H517"]],[18,21,["H5291"]],[21,23,["H3303","H8389"]],[23,25,["H2896","H4758"]],[25,27,["H4782"]],[27,30,["H1"]],[30,32,["H517"]],[32,34,["H4194"]],[34,35,["H3947"]],[35,39,["H1323"]]]},{"k":12732,"v":[[0,5,["H1961"]],[5,8,["H4428"]],[8,9,["H1697"]],[9,12,["H1881"]],[12,14,["H8085"]],[14,17,["H7227"]],[17,18,["H5291"]],[18,21,["H6908"]],[21,22,["H413"]],[22,23,["H7800"]],[23,25,["H1002"]],[25,26,["H413"]],[26,28,["H3027"]],[28,30,["H1896"]],[30,32,["H635"]],[32,34,["H3947"]],[34,36,["H413"]],[36,38,["H4428"]],[38,39,["H1004"]],[39,40,["H413"]],[40,42,["H3027"]],[42,44,["H1896"]],[44,45,["H8104"]],[45,48,["H802"]]]},{"k":12733,"v":[[0,3,["H5291"]],[3,4,["H3190","H5869"]],[4,8,["H5375"]],[8,9,["H2617"]],[9,10,["H6440"]],[10,14,["H926"]],[14,15,["H5414"]],[15,16,["(H853)"]],[16,20,["H8562"]],[20,21,["H854"]],[21,25,["H4490"]],[25,29,["H7651"]],[29,30,["H5291"]],[30,33,["H7200"]],[33,36,["H5414"]],[36,42,["H4480","H1004","H4428"]],[42,45,["H8138"]],[45,49,["H5291"]],[49,52,["H2896"]],[52,56,["H1004"]],[56,59,["H802"]]]},{"k":12734,"v":[[0,1,["H635"]],[1,3,["H3808"]],[3,4,["H5046","(H853)"]],[4,6,["H5971"]],[6,9,["H4138"]],[9,10,["H3588"]],[10,11,["H4782"]],[11,13,["H6680"]],[13,14,["H5921"]],[14,15,["H834"]],[15,18,["H3808"]],[18,19,["H5046"]],[19,20,[]]]},{"k":12735,"v":[[0,2,["H4782"]],[2,3,["H1980"]],[3,5,["H3605","H3117","H3117"]],[5,6,["H6440"]],[6,8,["H2691"]],[8,11,["H802"]],[11,12,["H1004"]],[12,14,["H3045","(H853)"]],[14,16,["H635"]],[16,17,["H7965"]],[17,19,["H4100"]],[19,21,["H6213"]],[21,23,[]]]},{"k":12736,"v":[[0,4,["H5291","H5291"]],[4,5,["H8447"]],[5,7,["H5060"]],[7,10,["H935"]],[10,11,["H413"]],[11,12,["H4428"]],[12,13,["H325"]],[13,15,["H4480","H7093"]],[15,18,["H1961"]],[18,19,["H8147","H6240"]],[19,20,["H2320"]],[20,24,["H1881"]],[24,27,["H802"]],[27,28,["H3588"]],[28,29,["H3651"]],[29,32,["H3117"]],[32,35,["H4795"]],[35,36,["H4390"]],[36,39,["H8337"]],[39,40,["H2320"]],[40,42,["H8081"]],[42,44,["H4753"]],[44,46,["H8337"]],[46,47,["H2320"]],[47,50,["H1314"]],[50,57,["H8562"]],[57,60,["H802"]]]},{"k":12737,"v":[[0,2,["H2088"]],[2,3,["H935"]],[3,5,["H5291"]],[5,6,["H413"]],[6,8,["H4428","(H853)"]],[8,9,["H3605","H834"]],[9,11,["H559"]],[11,13,["H5414"]],[13,16,["H935"]],[16,17,["H5973"]],[17,22,["H4480","H1004"]],[22,25,["H802"]],[25,26,["H5704"]],[26,28,["H4428"]],[28,29,["H1004"]]]},{"k":12738,"v":[[0,3,["H6153"]],[3,4,["H1931"]],[4,5,["H935"]],[5,9,["H1242"]],[9,10,["H1931"]],[10,11,["H7725"]],[11,12,["H413"]],[12,14,["H8145"]],[14,15,["H1004"]],[15,18,["H802"]],[18,19,["H413"]],[19,21,["H3027"]],[21,23,["H8190"]],[23,25,["H4428"]],[25,26,["H5631"]],[26,28,["H8104"]],[28,30,["H6370"]],[30,33,["H935"]],[33,34,["H413"]],[34,36,["H4428"]],[36,37,["H3808"]],[37,38,["H5750"]],[38,39,["H3588","H518"]],[39,41,["H4428"]],[41,42,["H2654"]],[42,49,["H7121"]],[49,51,["H8034"]]]},{"k":12739,"v":[[0,4,["H8447"]],[4,6,["H635"]],[6,8,["H1323"]],[8,10,["H32"]],[10,12,["H1730"]],[12,14,["H4782"]],[14,15,["H834"]],[15,17,["H3947"]],[17,21,["H1323"]],[21,23,["H5060"]],[23,26,["H935"]],[26,27,["H413"]],[27,29,["H4428"]],[29,31,["H1245"]],[31,32,["H3808","H1697"]],[32,33,["H3588","H518","(H853)"]],[33,34,["H834"]],[34,35,["H1896"]],[35,37,["H4428"]],[37,38,["H5631"]],[38,40,["H8104"]],[40,43,["H802"]],[43,44,["H559"]],[44,46,["H635"]],[46,47,["H1961","H5375"]],[47,48,["H2580"]],[48,51,["H5869"]],[51,53,["H3605"]],[53,56,["H7200"]],[56,58,[]]]},{"k":12740,"v":[[0,2,["H635"]],[2,4,["H3947"]],[4,5,["H413"]],[5,6,["H4428"]],[6,7,["H325"]],[7,8,["H413"]],[8,10,["H1004"]],[10,11,["H4438"]],[11,14,["H6224"]],[14,15,["H2320"]],[15,16,["H1931"]],[16,19,["H2320"]],[19,20,["H2887"]],[20,23,["H7651"]],[23,24,["H8141"]],[24,27,["H4438"]]]},{"k":12741,"v":[[0,3,["H4428"]],[3,4,["H157","(H853)"]],[4,5,["H635"]],[5,7,["H4480","H3605"]],[7,9,["H802"]],[9,12,["H5375"]],[12,13,["H2580"]],[13,15,["H2617"]],[15,18,["H6440"]],[18,21,["H4480","H3605"]],[21,23,["H1330"]],[23,27,["H7760"]],[27,29,["H4438"]],[29,30,["H3804"]],[30,33,["H7218"]],[33,37,["H4427"]],[37,38,["H8478"]],[38,40,["H2060"]]]},{"k":12742,"v":[[0,3,["H4428"]],[3,4,["H6213"]],[4,6,["H1419"]],[6,7,["H4960"]],[7,9,["H3605"]],[9,11,["H8269"]],[11,14,["H5650"]],[14,15,["(H853)"]],[15,16,["H635"]],[16,17,["H4960"]],[17,20,["H6213"]],[20,22,["H2010"]],[22,25,["H4082"]],[25,27,["H5414"]],[27,28,["H4864"]],[28,32,["H3027"]],[32,35,["H4428"]]]},{"k":12743,"v":[[0,4,["H1330"]],[4,7,["H6908"]],[7,10,["H8145"]],[10,12,["H4782"]],[12,13,["H3427"]],[13,16,["H4428"]],[16,17,["H8179"]]]},{"k":12744,"v":[[0,1,["H635"]],[1,3,["H369"]],[3,5,["H5046"]],[5,7,["H4138"]],[7,10,["H5971"]],[10,11,["H834"]],[11,12,["H4782"]],[12,14,["H6680"]],[14,15,["H5921"]],[15,17,["H635"]],[17,18,["H6213"]],[18,20,["H3982"]],[20,22,["H4782"]],[22,24,["H834"]],[24,27,["H1961"]],[27,29,["H545"]],[29,30,["H854"]],[30,31,[]]]},{"k":12745,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,5,["H4782"]],[5,6,["H3427"]],[6,9,["H4428"]],[9,10,["H8179"]],[10,11,["H8147"]],[11,14,["H4428"]],[14,15,["H5631"]],[15,16,["H904"]],[16,18,["H8657"]],[18,22,["H4480","H8104"]],[22,24,["H5592"]],[24,26,["H7107"]],[26,28,["H1245"]],[28,30,["H7971"]],[30,31,["H3027"]],[31,34,["H4428"]],[34,35,["H325"]]]},{"k":12746,"v":[[0,3,["H1697"]],[3,5,["H3045"]],[5,7,["H4782"]],[7,9,["H5046"]],[9,12,["H635"]],[12,14,["H4436"]],[14,16,["H635"]],[16,17,["H559"]],[17,19,["H4428"]],[19,22,["H4782"]],[22,23,["H8034"]]]},{"k":12747,"v":[[0,5,["H1245"]],[5,8,["H1697"]],[8,12,["H4672"]],[12,16,["H8147"]],[16,17,["H8518"]],[17,18,["H5921"]],[18,20,["H6086"]],[20,24,["H3789"]],[24,27,["H5612"]],[27,30,["H1697"]],[30,31,["H6440"]],[31,33,["H4428"]]]},{"k":12748,"v":[[0,1,["H310"]],[1,2,["H428"]],[2,3,["H1697"]],[3,5,["H4428"]],[5,6,["H325"]],[6,7,["H1431","(H853)"]],[7,8,["H2001"]],[8,10,["H1121"]],[10,12,["H4099"]],[12,14,["H91"]],[14,16,["H5375"]],[16,19,["H7760","(H853)"]],[19,21,["H3678"]],[21,22,["H4480","H5921"]],[22,23,["H3605"]],[23,25,["H8269"]],[25,26,["H834"]],[26,28,["H854"]],[28,29,[]]]},{"k":12749,"v":[[0,2,["H3605"]],[2,4,["H4428"]],[4,5,["H5650"]],[5,6,["H834"]],[6,10,["H4428"]],[10,11,["H8179"]],[11,12,["H3766"]],[12,14,["H7812"]],[14,15,["H2001"]],[15,16,["H3588"]],[16,18,["H4428"]],[18,20,["H3651"]],[20,21,["H6680"]],[21,25,["H4782"]],[25,26,["H3766"]],[26,27,["H3808"]],[27,28,["H3808"]],[28,31,["H7812"]]]},{"k":12750,"v":[[0,3,["H4428"]],[3,4,["H5650"]],[4,5,["H834"]],[5,9,["H4428"]],[9,10,["H8179"]],[10,11,["H559"]],[11,13,["H4782"]],[13,14,["H4069"]],[14,15,["H5674"]],[15,16,["H859","(H853)"]],[16,18,["H4428"]],[18,19,["H4687"]]]},{"k":12751,"v":[[0,5,["H1961"]],[5,8,["H559"]],[8,9,["H3117","H3117"]],[9,10,["H413"]],[10,14,["H8085"]],[14,15,["H3808"]],[15,16,["H413"]],[16,20,["H5046"]],[20,21,["H2001"]],[21,23,["H7200"]],[23,25,["H4782"]],[25,26,["H1697"]],[26,28,["H5975"]],[28,29,["H3588"]],[29,32,["H5046"]],[32,34,["H834"]],[34,35,["H1931"]],[35,38,["H3064"]]]},{"k":12752,"v":[[0,3,["H2001"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,6,["H4782"]],[6,7,["H3766"]],[7,8,["H369"]],[8,12,["H7812"]],[12,15,["H2001"]],[15,16,["H4390"]],[16,18,["H2534"]]]},{"k":12753,"v":[[0,3,["H5869"]],[3,4,["H959"]],[4,6,["H7971"]],[6,7,["H3027"]],[7,9,["H4782"]],[9,10,["H905"]],[10,11,["H3588"]],[11,14,["H5046"]],[14,15,["(H853)"]],[15,17,["H5971"]],[17,19,["H4782"]],[19,21,["H2001"]],[21,22,["H1245"]],[22,24,["H8045","(H853)"]],[24,25,["H3605"]],[25,27,["H3064"]],[27,28,["H834"]],[28,32,["H3605"]],[32,33,["H4438"]],[33,35,["H325"]],[35,38,["H5971"]],[38,40,["H4782"]]]},{"k":12754,"v":[[0,3,["H7223"]],[3,4,["H2320"]],[4,5,["H1931"]],[5,8,["H2320"]],[8,9,["H5212"]],[9,12,["H8147","H6240"]],[12,13,["H8141"]],[13,15,["H4428"]],[15,16,["H325"]],[16,18,["H5307"]],[18,19,["H6332"]],[19,20,["H1931"]],[20,23,["H1486"]],[23,24,["H6440"]],[24,25,["H2001"]],[25,27,["H4480","H3117"]],[27,29,["H3117"]],[29,32,["H4480","H2320"]],[32,34,["H2320"]],[34,37,["H8147","H6240"]],[37,39,["H1931"]],[39,42,["H2320"]],[42,43,["H143"]]]},{"k":12755,"v":[[0,2,["H2001"]],[2,3,["H559"]],[3,5,["H4428"]],[5,6,["H325"]],[6,8,["H3426"]],[8,10,["H259"]],[10,11,["H5971"]],[11,13,["H6340"]],[13,15,["H6504"]],[15,16,["H996"]],[16,18,["H5971"]],[18,20,["H3605"]],[20,22,["H4082"]],[22,25,["H4438"]],[25,28,["H1881"]],[28,30,["H8138"]],[30,32,["H4480","H3605"]],[32,33,["H5971"]],[33,34,["H369"]],[34,35,["H6213"]],[35,38,["H4428"]],[38,39,["H1881"]],[39,43,["H369"]],[43,46,["H4428"]],[46,47,["H7737"]],[47,49,["H5117"]],[49,50,[]]]},{"k":12756,"v":[[0,1,["H518"]],[1,3,["H2895","H5921"]],[3,5,["H4428"]],[5,9,["H3789"]],[9,14,["H6"]],[14,18,["H8254"]],[18,19,["H6235"]],[19,20,["H505"]],[20,21,["H3603"]],[21,23,["H3701"]],[23,24,["H5921"]],[24,26,["H3027"]],[26,32,["H6213"]],[32,35,["H4399"]],[35,37,["H935"]],[37,39,["H413"]],[39,41,["H4428"]],[41,42,["H1595"]]]},{"k":12757,"v":[[0,3,["H4428"]],[3,4,["H5493","(H853)"]],[4,6,["H2885"]],[6,7,["H4480","H5921"]],[7,9,["H3027"]],[9,11,["H5414"]],[11,14,["H2001"]],[14,16,["H1121"]],[16,18,["H4099"]],[18,20,["H91"]],[20,22,["H3064"]],[22,23,["H6887"]]]},{"k":12758,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H2001"]],[6,8,["H3701"]],[8,10,["H5414"]],[10,14,["H5971"]],[14,17,["H6213"]],[17,25,["H2896","H5869"]]]},{"k":12759,"v":[[0,4,["H4428"]],[4,5,["H5608"]],[5,6,["H7121"]],[6,9,["H7969","H6240"]],[9,10,["H3117"]],[10,13,["H7223"]],[13,14,["H2320"]],[14,18,["H3789"]],[18,21,["H3605"]],[21,22,["H834"]],[22,23,["H2001"]],[23,25,["H6680"]],[25,26,["H413"]],[26,28,["H4428"]],[28,29,["H323"]],[29,31,["H413"]],[31,33,["H6346"]],[33,34,["H834"]],[34,36,["H5921"]],[36,38,["H4082","H4082"]],[38,40,["H413"]],[40,42,["H8269"]],[42,45,["H5971","H5971"]],[45,48,["H4082","H4082"]],[48,52,["H3791"]],[52,57,["H5971","H5971"]],[57,60,["H3956"]],[60,63,["H8034"]],[63,65,["H4428"]],[65,66,["H325"]],[66,69,["H3789"]],[69,71,["H2856"]],[71,74,["H4428"]],[74,75,["H2885"]]]},{"k":12760,"v":[[0,3,["H5612"]],[3,5,["H7971"]],[5,6,["H3027"]],[6,7,["H7323"]],[7,8,["H413"]],[8,9,["H3605"]],[9,11,["H4428"]],[11,12,["H4082"]],[12,14,["H8045"]],[14,16,["H2026"]],[16,21,["H6","(H853)"]],[21,22,["H3605"]],[22,23,["H3064"]],[23,25,["H4480","H5288"]],[25,26,["H5704"]],[26,27,["H2205"]],[27,29,["H2945"]],[29,31,["H802"]],[31,33,["H259"]],[33,34,["H3117"]],[34,38,["H7969","H6240"]],[38,42,["H8147","H6240"]],[42,43,["H2320"]],[43,44,["H1931"]],[44,47,["H2320"]],[47,48,["H143"]],[48,53,["H7998"]],[53,58,["H962"]]]},{"k":12761,"v":[[0,2,["H6572"]],[2,5,["H3791"]],[5,8,["H1881"]],[8,11,["H5414"]],[11,13,["H3605"]],[13,14,["H4082","H4082"]],[14,16,["H1540"]],[16,18,["H3605"]],[18,19,["H5971"]],[19,23,["H1961"]],[23,24,["H6264"]],[24,26,["H2088"]],[26,27,["H3117"]]]},{"k":12762,"v":[[0,2,["H7323"]],[2,4,["H3318"]],[4,6,["H1765"]],[6,9,["H4428"]],[9,10,["H1697"]],[10,13,["H1881"]],[13,15,["H5414"]],[15,17,["H7800"]],[17,19,["H1002"]],[19,22,["H4428"]],[22,24,["H2001"]],[24,26,["H3427"]],[26,28,["H8354"]],[28,31,["H5892"]],[31,32,["H7800"]],[32,34,["H943"]]]},{"k":12763,"v":[[0,2,["H4782"]],[2,3,["H3045","(H853)"]],[3,4,["H3605"]],[4,5,["H834"]],[5,7,["H6213"]],[7,8,["H4782"]],[8,9,["H7167","(H853)"]],[9,11,["H899"]],[11,14,["H3847"]],[14,15,["H8242"]],[15,17,["H665"]],[17,20,["H3318"]],[20,23,["H8432"]],[23,26,["H5892"]],[26,28,["H2199"]],[28,31,["H1419"]],[31,34,["H4751"]],[34,35,["H2201"]]]},{"k":12764,"v":[[0,2,["H935"]],[2,3,["H5704"]],[3,4,["H6440"]],[4,6,["H4428"]],[6,7,["H8179"]],[7,8,["H3588"]],[8,9,["H369"]],[9,11,["H935"]],[11,12,["H413"]],[12,14,["H4428"]],[14,15,["H8179"]],[15,16,["H3830"]],[16,18,["H8242"]]]},{"k":12765,"v":[[0,3,["H3605"]],[3,4,["H4082","H4082"]],[4,5,["H4725","H834"]],[5,7,["H4428"]],[7,8,["H1697"]],[8,11,["H1881"]],[11,12,["H5060"]],[12,15,["H1419"]],[15,16,["H60"]],[16,19,["H3064"]],[19,21,["H6685"]],[21,23,["H1065"]],[23,25,["H4553"]],[25,27,["H7227"]],[27,28,["H3331"]],[28,30,["H8242"]],[30,32,["H665"]]]},{"k":12766,"v":[[0,2,["H635"]],[2,3,["H5291"]],[3,6,["H5631"]],[6,7,["H935"]],[7,9,["H5046"]],[9,15,["H4436"]],[15,16,["H3966"]],[16,17,["H2342"]],[17,20,["H7971"]],[20,21,["H899"]],[21,23,["H3847","(H853)"]],[23,24,["H4782"]],[24,28,["H5493"]],[28,30,["H8242"]],[30,31,["H4480","H5921"]],[31,35,["H6901"]],[35,37,["H3808"]]]},{"k":12767,"v":[[0,2,["H7121"]],[2,3,["H635"]],[3,5,["H2047"]],[5,9,["H4428"]],[9,10,["H4480","H5631"]],[10,11,["H834"]],[11,14,["H5975"]],[14,17,["H6440"]],[17,23,["H6680"]],[23,24,["H5921"]],[24,25,["H4782"]],[25,27,["H3045"]],[27,28,["H4100"]],[28,29,["H2088"]],[29,32,["H5921","H4100"]],[32,33,["H2088"]],[33,34,[]]]},{"k":12768,"v":[[0,2,["H2047"]],[2,4,["H3318"]],[4,5,["H413"]],[5,6,["H4782"]],[6,7,["H413"]],[7,9,["H7339"]],[9,12,["H5892"]],[12,13,["H834"]],[13,15,["H6440"]],[15,17,["H4428"]],[17,18,["H8179"]]]},{"k":12769,"v":[[0,2,["H4782"]],[2,3,["H5046"]],[3,5,["(H853)"]],[5,6,["H3605"]],[6,7,["H834"]],[7,9,["H7136"]],[9,12,["(H853)"]],[12,15,["H6575"]],[15,18,["H3701"]],[18,19,["H834"]],[19,20,["H2001"]],[20,22,["H559"]],[22,24,["H8254"]],[24,25,["H5921"]],[25,27,["H4428"]],[27,28,["H1595"]],[28,31,["H3064"]],[31,33,["H6"]],[33,34,[]]]},{"k":12770,"v":[[0,3,["H5414"]],[3,6,["H6572"]],[6,9,["H3791"]],[9,12,["H1881"]],[12,13,["H834"]],[13,15,["H5414"]],[15,17,["H7800"]],[17,19,["H8045"]],[19,22,["H7200"]],[22,24,["(H853)"]],[24,25,["H635"]],[25,28,["H5046"]],[28,34,["H6680"]],[34,35,["H5921"]],[35,40,["H935"]],[40,41,["H413"]],[41,43,["H4428"]],[43,46,["H2603"]],[46,52,["H1245"]],[52,53,["H4480","H6440"]],[53,55,["H5921"]],[55,57,["H5971"]]]},{"k":12771,"v":[[0,2,["H2047"]],[2,3,["H935"]],[3,5,["H5046"]],[5,6,["H635","(H853)"]],[6,8,["H1697"]],[8,10,["H4782"]]]},{"k":12772,"v":[[0,2,["H635"]],[2,3,["H559"]],[3,5,["H2047"]],[5,9,["H6680"]],[9,10,["H413"]],[10,11,["H4782"]]]},{"k":12773,"v":[[0,1,["H3605"]],[1,3,["H4428"]],[3,4,["H5650"]],[4,7,["H5971"]],[7,10,["H4428"]],[10,11,["H4082"]],[11,13,["H3045"]],[13,14,["H834"]],[14,15,["H3605","H834"]],[15,16,["H834"]],[16,17,["H376"]],[17,19,["H802"]],[19,21,["H935"]],[21,22,["H413"]],[22,24,["H4428"]],[24,25,["H413"]],[25,27,["H6442"]],[27,28,["H2691"]],[28,29,["H834"]],[29,31,["H3808"]],[31,32,["H7121"]],[32,35,["H259"]],[35,36,["H1881"]],[36,43,["H4191"]],[43,44,["H905"]],[44,47,["H4480","H834"]],[47,49,["H4428"]],[49,52,["H3447","(H853)"]],[52,54,["H2091"]],[54,55,["H8275"]],[55,59,["H2421"]],[59,61,["H589"]],[61,63,["H3808"]],[63,65,["H7121"]],[65,68,["H935"]],[68,69,["H413"]],[69,71,["H4428"]],[71,72,["H2088"]],[72,73,["H7970"]],[73,74,["H3117"]]]},{"k":12774,"v":[[0,3,["H5046"]],[3,5,["H4782","(H853)"]],[5,6,["H635"]],[6,7,["H1697"]]]},{"k":12775,"v":[[0,2,["H4782"]],[2,3,["H559"]],[3,5,["H7725","H413"]],[5,6,["H635"]],[6,7,["H1819"]],[7,8,["H408"]],[8,10,["H5315"]],[10,14,["H4422"]],[14,17,["H4428"]],[17,18,["H1004"]],[18,21,["H4480","H3605"]],[21,23,["H3064"]]]},{"k":12776,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,7,["H2790","H2790"]],[7,9,["H2063"]],[9,10,["H6256"]],[10,14,["H7305"]],[14,16,["H2020"]],[16,17,["H5975"]],[17,20,["H3064"]],[20,23,["H4480","H4725","H312"]],[23,25,["H859"]],[25,28,["H1"]],[28,29,["H1004"]],[29,32,["H6"]],[32,34,["H4310"]],[34,35,["H3045"]],[35,36,["H518"]],[36,39,["H5060"]],[39,42,["H4438"]],[42,46,["H6256"]],[46,48,["H2063"]]]},{"k":12777,"v":[[0,2,["H635"]],[2,3,["H559"]],[3,5,["H7725","H413"]],[5,6,["H4782"]],[6,8,[]]]},{"k":12778,"v":[[0,1,["H1980"]],[1,3,["H3664","(H853)"]],[3,4,["H3605"]],[4,6,["H3064"]],[6,9,["H4672"]],[9,11,["H7800"]],[11,13,["H6684"]],[13,15,["H5921"]],[15,18,["H408"]],[18,19,["H398"]],[19,20,["H408"]],[20,21,["H8354"]],[21,22,["H7969"]],[22,23,["H3117"]],[23,24,["H3915"]],[24,26,["H3117"]],[26,27,["H589"]],[27,28,["H1571"]],[28,31,["H5291"]],[31,33,["H6684"]],[33,34,["H3651"]],[34,36,["H3651"]],[36,40,["H935"]],[40,41,["H413"]],[41,43,["H4428"]],[43,44,["H834"]],[44,46,["H3808"]],[46,50,["H1881"]],[50,52,["H834"]],[52,54,["H6"]],[54,56,["H6"]]]},{"k":12779,"v":[[0,2,["H4782"]],[2,5,["H5674"]],[5,7,["H6213"]],[7,10,["H3605"]],[10,11,["H834"]],[11,12,["H635"]],[12,14,["H6680"]],[14,15,["H5921"]]]},{"k":12780,"v":[[0,5,["H1961"]],[5,8,["H7992"]],[8,9,["H3117"]],[9,11,["H635"]],[11,13,["H3847"]],[13,15,["H4438"]],[15,18,["H5975"]],[18,21,["H6442"]],[21,22,["H2691"]],[22,25,["H4428"]],[25,26,["H1004"]],[26,28,["H5227"]],[28,30,["H4428"]],[30,31,["H1004"]],[31,34,["H4428"]],[34,35,["H3427"]],[35,36,["H5921"]],[36,38,["H4438"]],[38,39,["H3678"]],[39,42,["H4438"]],[42,43,["H1004"]],[43,45,["H5227"]],[45,47,["H6607"]],[47,50,["H1004"]]]},{"k":12781,"v":[[0,3,["H1961"]],[3,7,["H4428"]],[7,8,["H7200","(H853)"]],[8,9,["H635"]],[9,11,["H4436"]],[11,12,["H5975"]],[12,15,["H2691"]],[15,18,["H5375"]],[18,19,["H2580"]],[19,22,["H5869"]],[22,25,["H4428"]],[25,27,["H3447"]],[27,29,["H635","(H853)"]],[29,31,["H2091"]],[31,32,["H8275"]],[32,33,["H834"]],[33,37,["H3027"]],[37,39,["H635"]],[39,41,["H7126"]],[41,43,["H5060"]],[43,45,["H7218"]],[45,48,["H8275"]]]},{"k":12782,"v":[[0,2,["H559"]],[2,4,["H4428"]],[4,7,["H4100"]],[7,10,["H4436"]],[10,11,["H635"]],[11,13,["H4100"]],[13,16,["H1246"]],[16,21,["H5414"]],[21,23,["H5704"]],[23,25,["H2677"]],[25,28,["H4438"]]]},{"k":12783,"v":[[0,2,["H635"]],[2,3,["H559"]],[3,4,["H518"]],[4,7,["H2895"]],[7,8,["H5921"]],[8,10,["H4428"]],[10,13,["H4428"]],[13,15,["H2001"]],[15,16,["H935"]],[16,18,["H3117"]],[18,19,["H413"]],[19,21,["H4960"]],[21,22,["H834"]],[22,25,["H6213"]],[25,27,[]]]},{"k":12784,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["(H853)"]],[5,6,["H2001"]],[6,9,["H4116"]],[9,13,["H6213","(H853)"]],[13,15,["H635"]],[15,17,["H1697"]],[17,20,["H4428"]],[20,22,["H2001"]],[22,23,["H935"]],[23,24,["H413"]],[24,26,["H4960"]],[26,27,["H834"]],[27,28,["H635"]],[28,30,["H6213"]]]},{"k":12785,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H635"]],[6,9,["H4960"]],[9,11,["H3196"]],[11,12,["H4100"]],[12,15,["H7596"]],[15,20,["H5414"]],[20,23,["H4100"]],[23,26,["H1246"]],[26,28,["H5704"]],[28,30,["H2677"]],[30,33,["H4438"]],[33,37,["H6213"]]]},{"k":12786,"v":[[0,2,["H6030"]],[2,3,["H635"]],[3,5,["H559"]],[5,7,["H7596"]],[7,10,["H1246"]],[10,11,[]]]},{"k":12787,"v":[[0,1,["H518"]],[1,4,["H4672"]],[4,5,["H2580"]],[5,8,["H5869"]],[8,11,["H4428"]],[11,13,["H518"]],[13,15,["H2895","H5921"]],[15,17,["H4428"]],[17,19,["H5414","(H853)"]],[19,21,["H7596"]],[21,24,["H6213","(H853)"]],[24,26,["H1246"]],[26,29,["H4428"]],[29,31,["H2001"]],[31,32,["H935"]],[32,33,["H413"]],[33,35,["H4960"]],[35,36,["H834"]],[36,39,["H6213"]],[39,45,["H6213"]],[45,47,["H4279"]],[47,50,["H4428"]],[50,52,["H1697"]]]},{"k":12788,"v":[[0,4,["H3318","H2001"]],[4,5,["H1931"]],[5,6,["H3117"]],[6,7,["H8056"]],[7,11,["H2896"]],[11,12,["H3820"]],[12,15,["H2001"]],[15,16,["H7200","(H853)"]],[16,17,["H4782"]],[17,20,["H4428"]],[20,21,["H8179"]],[21,26,["H6965","H3808"]],[26,27,["H3808"]],[27,28,["H2111"]],[28,29,["H4480"]],[29,30,["H2001"]],[30,31,["H2001"]],[31,33,["H4390"]],[33,35,["H2534"]],[35,36,["H5921"]],[36,37,["H4782"]]]},{"k":12789,"v":[[0,2,["H2001"]],[2,4,["H662"]],[4,8,["H935","H413"]],[8,9,["H1004"]],[9,11,["H7971"]],[11,13,["H935"]],[13,14,["(H853)"]],[14,16,["H157"]],[16,18,["H2238"]],[18,20,["H802"]]]},{"k":12790,"v":[[0,2,["H2001"]],[2,3,["H5608"]],[3,5,["(H853)"]],[5,7,["H3519"]],[7,10,["H6239"]],[10,13,["H7230"]],[13,16,["H1121"]],[16,18,["H3605"]],[18,21,["H834"]],[21,23,["H4428"]],[23,25,["H1431"]],[25,28,["H834"]],[28,31,["H5375"]],[31,33,["H5921"]],[33,35,["H8269"]],[35,37,["H5650"]],[37,40,["H4428"]]]},{"k":12791,"v":[[0,1,["H2001"]],[1,2,["H559"]],[2,3,["H637"]],[3,5,["H635"]],[5,7,["H4436"]],[7,10,["H3808"]],[10,13,["H935"]],[13,14,["H5973"]],[14,16,["H4428"]],[16,17,["H413"]],[17,19,["H4960"]],[19,20,["H834"]],[20,23,["H6213"]],[23,24,["H3588","H518"]],[24,28,["H4279"]],[28,30,["H589"]],[30,31,["H7121"]],[31,34,["H1571"]],[34,35,["H5973"]],[35,37,["H4428"]]]},{"k":12792,"v":[[0,2,["H3605"]],[2,3,["H2088"]],[3,4,["H7737"]],[4,6,["H369"]],[6,8,["H3605","H6256"]],[8,10,["H589"]],[10,11,["H7200","(H853)"]],[11,12,["H4782"]],[12,14,["H3064"]],[14,15,["H3427"]],[15,18,["H4428"]],[18,19,["H8179"]]]},{"k":12793,"v":[[0,2,["H559"]],[2,3,["H2238"]],[3,5,["H802"]],[5,7,["H3605"]],[7,9,["H157"]],[9,14,["H6086"]],[14,16,["H6213"]],[16,18,["H2572"]],[18,19,["H520"]],[19,20,["H1364"]],[20,23,["H1242"]],[23,24,["H559"]],[24,28,["H4428"]],[28,29,["(H853)"]],[29,30,["H4782"]],[30,33,["H8518"]],[33,34,["H5921"]],[34,36,["H935"]],[36,39,["H8056"]],[39,40,["H5973"]],[40,42,["H4428"]],[42,43,["H413"]],[43,45,["H4960"]],[45,48,["H1697"]],[48,49,["H3190","H6440"]],[49,50,["H2001"]],[50,55,["H6086"]],[55,58,["H6213"]]]},{"k":12794,"v":[[0,2,["H1931"]],[2,3,["H3915"]],[3,5,["H5074"]],[5,7,["H4428"]],[7,8,["H8142"]],[8,11,["H559"]],[11,13,["H935","(H853)"]],[13,15,["H5612"]],[15,17,["H2146"]],[17,20,["H1697","H3117"]],[20,23,["H1961"]],[23,24,["H7121"]],[24,25,["H6440"]],[25,27,["H4428"]]]},{"k":12795,"v":[[0,4,["H4672"]],[4,5,["H3789"]],[5,6,["H834"]],[6,7,["H4782"]],[7,9,["H5046"]],[9,10,["H5921"]],[10,11,["H904"]],[11,13,["H8657"]],[13,14,["H8147"]],[14,17,["H4428"]],[17,18,["H5631"]],[18,20,["H4480","H8104"]],[20,23,["H5592"]],[23,24,["H834"]],[24,25,["H1245"]],[25,27,["H7971"]],[27,28,["H3027"]],[28,31,["H4428"]],[31,32,["H325"]]]},{"k":12796,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H4100"]],[5,6,["H3366"]],[6,8,["H1420"]],[8,11,["H6213"]],[11,13,["H4782"]],[13,14,["H5921"]],[14,15,["H2088"]],[15,17,["H559"]],[17,19,["H4428"]],[19,20,["H5288"]],[20,22,["H8334"]],[22,27,["H3808","H1697"]],[27,28,["H6213"]],[28,29,["H5973"]],[29,30,[]]]},{"k":12797,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H4310"]],[5,9,["H2691"]],[9,11,["H2001"]],[11,13,["H935"]],[13,16,["H2435"]],[16,17,["H2691"]],[17,20,["H4428"]],[20,21,["H1004"]],[21,23,["H559"]],[23,26,["H4428"]],[26,28,["H8518","(H853)"]],[28,29,["H4782"]],[29,30,["H5921"]],[30,32,["H6086"]],[32,33,["H834"]],[33,36,["H3559"]],[36,38,[]]]},{"k":12798,"v":[[0,3,["H4428"]],[3,4,["H5288"]],[4,5,["H559"]],[5,6,["H413"]],[6,8,["H2009"]],[8,9,["H2001"]],[9,10,["H5975"]],[10,13,["H2691"]],[13,16,["H4428"]],[16,17,["H559"]],[17,21,["H935"]]]},{"k":12799,"v":[[0,2,["H2001"]],[2,4,["H935"]],[4,7,["H4428"]],[7,8,["H559"]],[8,11,["H4100"]],[11,14,["H6213"]],[14,17,["H376"]],[17,18,["H834"]],[18,20,["H4428"]],[20,21,["H2654"]],[21,23,["H3366"]],[23,25,["H2001"]],[25,26,["H559"]],[26,29,["H3820"]],[29,31,["H4310"]],[31,34,["H4428"]],[34,35,["H2654"]],[35,37,["H6213"]],[37,38,["H3366"]],[38,40,["H3148"]],[40,41,["H4480"]],[41,42,[]]]},{"k":12800,"v":[[0,2,["H2001"]],[2,3,["H559","H413"]],[3,5,["H4428"]],[5,8,["H376"]],[8,9,["H834"]],[9,11,["H4428"]],[11,12,["H2654"]],[12,14,["H3366"]]]},{"k":12801,"v":[[0,3,["H4438"]],[3,4,["H3830"]],[4,6,["H935"]],[6,7,["H834"]],[7,9,["H4428"]],[9,12,["H3847"]],[12,15,["H5483"]],[15,16,["H834"]],[16,18,["H4428"]],[18,19,["H7392"]],[19,20,["H5921"]],[20,23,["H3804"]],[23,24,["H4438"]],[24,25,["H834"]],[25,27,["H5414"]],[27,30,["H7218"]]]},{"k":12802,"v":[[0,4,["H3830"]],[4,6,["H5483"]],[6,8,["H5414"]],[8,9,["H5921"]],[9,11,["H3027"]],[11,13,["H376"]],[13,16,["H4428"]],[16,18,["H6579"]],[18,19,["H4480","H8269"]],[19,23,["H3847","(H853)"]],[23,25,["H376"]],[25,27,["H834"]],[27,29,["H4428"]],[29,30,["H2654"]],[30,32,["H3366"]],[32,34,["H7392"]],[34,36,["H5921"]],[36,37,["H5483"]],[37,40,["H7339"]],[40,43,["H5892"]],[43,45,["H7121"]],[45,46,["H6440"]],[46,48,["H3602"]],[48,52,["H6213"]],[52,55,["H376"]],[55,56,["H834"]],[56,58,["H4428"]],[58,59,["H2654"]],[59,61,["H3366"]]]},{"k":12803,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H2001"]],[6,8,["H4116"]],[8,10,["H3947","(H853)"]],[10,12,["H3830"]],[12,15,["H5483"]],[15,16,["H834"]],[16,19,["H1696"]],[19,21,["H6213"]],[21,23,["H3651"]],[23,25,["H4782"]],[25,27,["H3064"]],[27,29,["H3427"]],[29,32,["H4428"]],[32,33,["H8179"]],[33,35,["H408","H1697"]],[35,36,["H5307"]],[36,38,["H4480","H3605"]],[38,39,["H834"]],[39,42,["H1696"]]]},{"k":12804,"v":[[0,2,["H3947"]],[2,3,["H2001","(H853)"]],[3,5,["H3830"]],[5,8,["H5483"]],[8,10,["H3847","(H853)"]],[10,11,["H4782"]],[11,16,["H7392"]],[16,19,["H7339"]],[19,22,["H5892"]],[22,24,["H7121"]],[24,25,["H6440"]],[25,27,["H3602"]],[27,31,["H6213"]],[31,34,["H376"]],[34,35,["H834"]],[35,37,["H4428"]],[37,38,["H2654"]],[38,40,["H3366"]]]},{"k":12805,"v":[[0,2,["H4782"]],[2,4,["H7725"]],[4,5,["H413"]],[5,7,["H4428"]],[7,8,["H8179"]],[8,10,["H2001"]],[10,11,["H1765"]],[11,12,["H413"]],[12,14,["H1004"]],[14,15,["H57"]],[15,19,["H7218"]],[19,20,["H2645"]]]},{"k":12806,"v":[[0,2,["H2001"]],[2,3,["H5608"]],[3,4,["H2238"]],[4,6,["H802"]],[6,8,["H3605"]],[8,10,["H157","(H853)"]],[10,11,["H3605"]],[11,13,["H834"]],[13,15,["H7136"]],[15,18,["H559"]],[18,21,["H2450"]],[21,23,["H2238"]],[23,25,["H802"]],[25,28,["H518"]],[28,29,["H4782"]],[29,33,["H4480","H2233"]],[33,36,["H3064"]],[36,37,["H6440"]],[37,38,["H834"]],[38,41,["H2490"]],[41,43,["H5307"]],[43,46,["H3808"]],[46,47,["H3201"]],[47,50,["H3588"]],[50,53,["H5307","H5307"]],[53,54,["H6440"]],[54,55,[]]]},{"k":12807,"v":[[0,5,["H5750"]],[5,6,["H1696"]],[6,7,["H5973"]],[7,9,["H5060"]],[9,11,["H4428"]],[11,12,["H5631"]],[12,14,["H926"]],[14,16,["H935","(H853)"]],[16,17,["H2001"]],[17,18,["H413"]],[18,20,["H4960"]],[20,21,["H834"]],[21,22,["H635"]],[22,24,["H6213"]]]},{"k":12808,"v":[[0,3,["H4428"]],[3,5,["H2001"]],[5,6,["H935"]],[6,8,["H8354"]],[8,9,["H5973"]],[9,10,["H635"]],[10,12,["H4436"]]]},{"k":12809,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H1571"]],[5,7,["H635"]],[7,10,["H8145"]],[10,11,["H3117"]],[11,14,["H4960"]],[14,16,["H3196"]],[16,17,["H4100"]],[17,20,["H7596"]],[20,21,["H4436"]],[21,22,["H635"]],[22,27,["H5414"]],[27,30,["H4100"]],[30,33,["H1246"]],[33,38,["H6213"]],[38,40,["H5704"]],[40,42,["H2677"]],[42,45,["H4438"]]]},{"k":12810,"v":[[0,2,["H635"]],[2,4,["H4436"]],[4,5,["H6030"]],[5,7,["H559"]],[7,8,["H518"]],[8,11,["H4672"]],[11,12,["H2580"]],[12,15,["H5869"]],[15,17,["H4428"]],[17,19,["H518"]],[19,21,["H2895","H5921"]],[21,23,["H4428"]],[23,26,["H5315"]],[26,28,["H5414"]],[28,32,["H7596"]],[32,35,["H5971"]],[35,38,["H1246"]]]},{"k":12811,"v":[[0,1,["H3588"]],[1,4,["H4376"]],[4,5,["H589"]],[5,8,["H5971"]],[8,11,["H8045"]],[11,14,["H2026"]],[14,17,["H6"]],[17,19,["H432"]],[19,23,["H4376"]],[23,25,["H5650"]],[25,27,["H8198"]],[27,32,["H2790"]],[32,33,["H3588"]],[33,35,["H6862"]],[35,37,["H369"]],[37,38,["H7737"]],[38,40,["H4428"]],[40,41,["H5143"]]]},{"k":12812,"v":[[0,3,["H4428"]],[3,4,["H325"]],[4,5,["H559"]],[5,7,["H559"]],[7,9,["H635"]],[9,11,["H4436"]],[11,12,["H4310"]],[12,14,["H1931","H2088"]],[14,16,["H335"]],[16,18,["H2088","H1931"]],[18,19,["H834"]],[19,21,["H4390"]],[21,24,["H3820"]],[24,26,["H6213"]],[26,27,["H3651"]]]},{"k":12813,"v":[[0,2,["H635"]],[2,3,["H559"]],[3,5,["H376","H6862"]],[5,7,["H341"]],[7,9,["H2088"]],[9,10,["H7451"]],[10,11,["H2001"]],[11,13,["H2001"]],[13,15,["H1204"]],[15,16,["H4480","H6440"]],[16,18,["H4428"]],[18,21,["H4436"]]]},{"k":12814,"v":[[0,3,["H4428"]],[3,4,["H6965"]],[4,7,["H4480","H4960"]],[7,9,["H3196"]],[9,12,["H2534"]],[12,14,["H413"]],[14,16,["H1055"]],[16,17,["H1594"]],[17,19,["H2001"]],[19,21,["H5975"]],[21,24,["H1245"]],[24,25,["H5921"]],[25,27,["H5315"]],[27,29,["H4480","H635"]],[29,31,["H4436"]],[31,32,["H3588"]],[32,34,["H7200"]],[34,35,["H3588"]],[35,38,["H7451"]],[38,39,["H3615"]],[39,40,["H413"]],[40,42,["H4480","H854"]],[42,44,["H4428"]]]},{"k":12815,"v":[[0,3,["H4428"]],[3,4,["H7725"]],[4,9,["H4480","H1594","H1055"]],[9,10,["H413"]],[10,12,["H1004"]],[12,15,["H4960"]],[15,17,["H3196"]],[17,19,["H2001"]],[19,21,["H5307"]],[21,22,["H5921"]],[22,24,["H4296"]],[24,25,["H834","H5921"]],[25,26,["H635"]],[26,29,["H559"]],[29,31,["H4428"]],[31,34,["H3533","(H853)"]],[34,36,["H4436"]],[36,37,["H1571"]],[37,38,["H5973"]],[38,42,["H1004"]],[42,45,["H1697"]],[45,47,["H3318"]],[47,51,["H4480","H6310","H4428"]],[51,53,["H2645"]],[53,54,["H2001"]],[54,55,["H6440"]]]},{"k":12816,"v":[[0,2,["H2726"]],[2,3,["H259"]],[3,4,["H4480"]],[4,6,["H5631"]],[6,7,["H559"]],[7,8,["H6440"]],[8,10,["H4428"]],[10,11,["H2009"]],[11,12,["H1571"]],[12,14,["H6086"]],[14,15,["H2572"]],[15,16,["H520"]],[16,17,["H1364"]],[17,18,["H834"]],[18,19,["H2001"]],[19,21,["H6213"]],[21,23,["H4782"]],[23,24,["H834"]],[24,26,["H1696"]],[26,27,["H2896"]],[27,28,["H5921"]],[28,30,["H4428"]],[30,31,["H5975"]],[31,34,["H1004"]],[34,36,["H2001"]],[36,39,["H4428"]],[39,40,["H559"]],[40,41,["H8518"]],[41,43,["H5921"]]]},{"k":12817,"v":[[0,3,["H8518","(H853)"]],[3,4,["H2001"]],[4,5,["H5921"]],[5,7,["H6086"]],[7,8,["H834"]],[8,11,["H3559"]],[11,13,["H4782"]],[13,17,["H4428"]],[17,18,["H2534"]],[18,19,["H7918"]]]},{"k":12818,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H4428"]],[6,7,["H325"]],[7,8,["H5414","(H853)"]],[8,10,["H1004"]],[10,12,["H2001"]],[12,14,["H3064"]],[14,15,["H6887"]],[15,17,["H635"]],[17,19,["H4436"]],[19,21,["H4782"]],[21,22,["H935"]],[22,23,["H6440"]],[23,25,["H4428"]],[25,26,["H3588"]],[26,27,["H635"]],[27,29,["H5046"]],[29,30,["H4100"]],[30,31,["H1931"]],[31,34,[]]]},{"k":12819,"v":[[0,3,["H4428"]],[3,5,["H5493","(H853)"]],[5,7,["H2885"]],[7,8,["H834"]],[8,11,["H5674"]],[11,13,["H4480","H2001"]],[13,15,["H5414"]],[15,18,["H4782"]],[18,20,["H635"]],[20,21,["H7760","(H853)"]],[21,22,["H4782"]],[22,23,["H5921"]],[23,25,["H1004"]],[25,27,["H2001"]]]},{"k":12820,"v":[[0,2,["H635"]],[2,3,["H1696"]],[3,5,["H3254"]],[5,6,["H6440"]],[6,8,["H4428"]],[8,11,["H5307"]],[11,12,["H6440"]],[12,14,["H7272"]],[14,16,["H2603"]],[16,19,["H1058"]],[19,22,["H5674","(H853)"]],[22,24,["H7451"]],[24,26,["H2001"]],[26,28,["H91"]],[28,31,["H4284"]],[31,32,["H834"]],[32,35,["H2803"]],[35,36,["H5921"]],[36,38,["H3064"]]]},{"k":12821,"v":[[0,3,["H4428"]],[3,5,["H3447","(H853)"]],[5,7,["H2091"]],[7,8,["H8275"]],[8,10,["H635"]],[10,12,["H635"]],[12,13,["H6965"]],[13,15,["H5975"]],[15,16,["H6440"]],[16,18,["H4428"]]]},{"k":12822,"v":[[0,2,["H559"]],[2,3,["H518"]],[3,5,["H2895","H5921"]],[5,7,["H4428"]],[7,9,["H518"]],[9,12,["H4672"]],[12,13,["H2580"]],[13,16,["H6440"]],[16,19,["H1697"]],[19,21,["H3787"]],[21,22,["H6440"]],[22,24,["H4428"]],[24,26,["H589"]],[26,28,["H2895"]],[28,31,["H5869"]],[31,35,["H3789"]],[35,37,["H7725","(H853)"]],[37,39,["H5612"]],[39,40,["H4284"]],[40,42,["H2001"]],[42,44,["H1121"]],[44,46,["H4099"]],[46,48,["H91"]],[48,49,["H834"]],[49,51,["H3789"]],[51,53,["H6","(H853)"]],[53,55,["H3064"]],[55,56,["H834"]],[56,59,["H3605"]],[59,61,["H4428"]],[61,62,["H4082"]]]},{"k":12823,"v":[[0,1,["H3588"]],[1,2,["H349"]],[2,5,["H3201"]],[5,7,["H7200"]],[7,9,["H7451"]],[9,10,["H834"]],[10,13,["H4672","(H853)"]],[13,15,["H5971"]],[15,17,["H349"]],[17,20,["H3201"]],[20,22,["H7200"]],[22,24,["H13"]],[24,27,["H4138"]]]},{"k":12824,"v":[[0,3,["H4428"]],[3,4,["H325"]],[4,5,["H559"]],[5,7,["H635"]],[7,9,["H4436"]],[9,12,["H4782"]],[12,14,["H3064"]],[14,15,["H2009"]],[15,18,["H5414"]],[18,19,["H635"]],[19,21,["H1004"]],[21,23,["H2001"]],[23,28,["H8518"]],[28,29,["H5921"]],[29,31,["H6086"]],[31,32,["H5921","H834"]],[32,34,["H7971"]],[34,36,["H3027"]],[36,39,["H3064"]]]},{"k":12825,"v":[[0,1,["H3789"]],[1,2,["H859"]],[2,4,["H5921"]],[4,6,["H3064"]],[6,9,["H2896","H5869"]],[9,13,["H4428"]],[13,14,["H8034"]],[14,16,["H2856"]],[16,20,["H4428"]],[20,21,["H2885"]],[21,22,["H3588"]],[22,24,["H3791"]],[24,25,["H834"]],[25,27,["H3789"]],[27,30,["H4428"]],[30,31,["H8034"]],[31,33,["H2856"]],[33,36,["H4428"]],[36,37,["H2885"]],[37,39,["H369"]],[39,41,["H7725"]]]},{"k":12826,"v":[[0,4,["H4428"]],[4,5,["H5608"]],[5,6,["H7121"]],[6,8,["H1931"]],[8,9,["H6256"]],[9,12,["H7992"]],[12,13,["H2320"]],[13,14,["H1931"]],[14,17,["H2320"]],[17,18,["H5510"]],[18,21,["H7969"]],[21,23,["H6242"]],[23,29,["H3789"]],[29,32,["H3605"]],[32,33,["H834"]],[33,34,["H4782"]],[34,35,["H6680"]],[35,36,["H413"]],[36,38,["H3064"]],[38,40,["H413"]],[40,42,["H323"]],[42,45,["H6346"]],[45,47,["H8269"]],[47,50,["H4082"]],[50,51,["H834"]],[51,54,["H4480","H1912"]],[54,55,["H5704"]],[55,56,["H3568"]],[56,58,["H3967"]],[58,59,["H6242"]],[59,61,["H7651"]],[61,62,["H4082"]],[62,65,["H4082","H4082"]],[65,69,["H3791"]],[69,74,["H5971","H5971"]],[74,77,["H3956"]],[77,79,["H413"]],[79,81,["H3064"]],[81,85,["H3791"]],[85,90,["H3956"]]]},{"k":12827,"v":[[0,3,["H3789"]],[3,6,["H4428"]],[6,7,["H325"]],[7,8,["H8034"]],[8,10,["H2856"]],[10,14,["H4428"]],[14,15,["H2885"]],[15,17,["H7971"]],[17,18,["H5612"]],[18,19,["H3027"]],[19,20,["H7323"]],[20,22,["H5483"]],[22,24,["H7392"]],[24,26,["H7409"]],[26,27,["H327"]],[27,29,["H1121"]],[29,30,["H7424"]]]},{"k":12828,"v":[[0,1,["H834"]],[1,3,["H4428"]],[3,4,["H5414"]],[4,6,["H3064"]],[6,7,["H834"]],[7,10,["H3605"]],[10,11,["H5892","H5892"]],[11,15,["H6950"]],[15,18,["H5975"]],[18,19,["H5921"]],[19,21,["H5315"]],[21,23,["H8045"]],[23,25,["H2026"]],[25,30,["H6","(H853)"]],[30,31,["H3605"]],[31,33,["H2428"]],[33,36,["H5971"]],[36,38,["H4082"]],[38,41,["H6696"]],[41,45,["H2945"]],[45,47,["H802"]],[47,52,["H7998"]],[52,57,["H962"]]]},{"k":12829,"v":[[0,2,["H259"]],[2,3,["H3117"]],[3,5,["H3605"]],[5,7,["H4082"]],[7,9,["H4428"]],[9,10,["H325"]],[10,14,["H7969","H6240"]],[14,18,["H8147","H6240"]],[18,19,["H2320"]],[19,20,["H1931"]],[20,23,["H2320"]],[23,24,["H143"]]]},{"k":12830,"v":[[0,2,["H6572"]],[2,5,["H3791"]],[5,8,["H1881"]],[8,11,["H5414"]],[11,13,["H3605"]],[13,14,["H4082","H4082"]],[14,16,["H1540"]],[16,18,["H3605"]],[18,19,["H5971"]],[19,23,["H3064"]],[23,25,["H1961"]],[25,26,["H6264"]],[26,28,["H2088"]],[28,29,["H3117"]],[29,32,["H5358"]],[32,35,["H4480","H341"]]]},{"k":12831,"v":[[0,3,["H7323"]],[3,6,["H7392"]],[6,7,["H7409"]],[7,9,["H327"]],[9,11,["H3318"]],[11,13,["H926"]],[13,16,["H1765"]],[16,19,["H4428"]],[19,20,["H1697"]],[20,23,["H1881"]],[23,25,["H5414"]],[25,27,["H7800"]],[27,29,["H1002"]]]},{"k":12832,"v":[[0,2,["H4782"]],[2,4,["H3318"]],[4,7,["H4480","H6440"]],[7,10,["H4428"]],[10,12,["H4438"]],[12,13,["H3830"]],[13,15,["H8504"]],[15,17,["H2353"]],[17,21,["H1419"]],[21,22,["H5850"]],[22,24,["H2091"]],[24,28,["H8509"]],[28,31,["H948"]],[31,33,["H713"]],[33,36,["H5892"]],[36,38,["H7800"]],[38,39,["H6670"]],[39,42,["H8055"]]]},{"k":12833,"v":[[0,2,["H3064"]],[2,3,["H1961"]],[3,4,["H219"]],[4,6,["H8057"]],[6,8,["H8342"]],[8,10,["H3366"]]]},{"k":12834,"v":[[0,3,["H3605"]],[3,4,["H4082","H4082"]],[4,7,["H3605"]],[7,8,["H5892","H5892"]],[8,9,["H4725","H834"]],[9,11,["H4428"]],[11,12,["H1697"]],[12,15,["H1881"]],[15,16,["H5060"]],[16,18,["H3064"]],[18,20,["H8057"]],[20,22,["H8342"]],[22,24,["H4960"]],[24,27,["H2896"]],[27,28,["H3117"]],[28,30,["H7227"]],[30,33,["H4480","H5971"]],[33,36,["H776"]],[36,38,["H3054"]],[38,39,["H3588"]],[39,41,["H6343"]],[41,44,["H3064"]],[44,45,["H5307"]],[45,46,["H5921"]],[46,47,[]]]},{"k":12835,"v":[[0,4,["H8147","H6240"]],[4,5,["H2320"]],[5,6,["H1931"]],[6,9,["H2320"]],[9,10,["H143"]],[10,13,["H7969","H6240"]],[13,14,["H3117"]],[14,18,["H834"]],[18,20,["H4428"]],[20,21,["H1697"]],[21,24,["H1881"]],[24,26,["H5060"]],[26,31,["H6213"]],[31,34,["H3117"]],[34,35,["H834"]],[35,37,["H341"]],[37,40,["H3064"]],[40,41,["H7663"]],[41,44,["H7980"]],[44,48,["H1931"]],[48,53,["H2015"]],[53,54,["H834"]],[54,56,["H3064"]],[56,59,["H7980"]],[59,60,["H1992"]],[60,62,["H8130"]],[62,63,[]]]},{"k":12836,"v":[[0,2,["H3064"]],[2,5,["H6950"]],[5,8,["H5892"]],[8,10,["H3605"]],[10,12,["H4082"]],[12,15,["H4428"]],[15,16,["H325"]],[16,18,["H7971"]],[18,19,["H3027"]],[19,23,["H1245"]],[23,25,["H7451"]],[25,27,["H3808"]],[27,28,["H376"]],[28,30,["H5975"]],[30,32,["H3588"]],[32,34,["H6343"]],[34,37,["H5307"]],[37,38,["H5921"]],[38,39,["H3605"]],[39,40,["H5971"]]]},{"k":12837,"v":[[0,2,["H3605"]],[2,4,["H8269"]],[4,7,["H4082"]],[7,10,["H323"]],[10,13,["H6346"]],[13,15,["H6213","H4399"]],[15,16,["H834"]],[16,18,["H4428"]],[18,19,["H5375","(H853)"]],[19,21,["H3064"]],[21,22,["H3588"]],[22,24,["H6343"]],[24,26,["H4782"]],[26,27,["H5307"]],[27,28,["H5921"]],[28,29,[]]]},{"k":12838,"v":[[0,1,["H3588"]],[1,2,["H4782"]],[2,4,["H1419"]],[4,7,["H4428"]],[7,8,["H1004"]],[8,11,["H8089"]],[11,13,["H1980"]],[13,15,["H3605"]],[15,17,["H4082"]],[17,18,["H3588"]],[18,20,["H376"]],[20,21,["H4782"]],[21,22,["H1980"]],[22,25,["H1419"]]]},{"k":12839,"v":[[0,3,["H3064"]],[3,4,["H5221"]],[4,5,["H3605"]],[5,7,["H341"]],[7,10,["H4347"]],[10,13,["H2719"]],[13,15,["H2027"]],[15,17,["H12"]],[17,19,["H6213"]],[19,22,["H7522"]],[22,26,["H8130"]],[26,27,[]]]},{"k":12840,"v":[[0,3,["H7800"]],[3,5,["H1002"]],[5,7,["H3064"]],[7,8,["H2026"]],[8,10,["H6"]],[10,11,["H2568"]],[11,12,["H3967"]],[12,13,["H376"]]]},{"k":12841,"v":[[0,2,["H6577"]],[2,4,["H1813"]],[4,6,["H630"]]]},{"k":12842,"v":[[0,2,["H6334"]],[2,4,["H118"]],[4,6,["H743"]]]},{"k":12843,"v":[[0,2,["H6534"]],[2,4,["H747"]],[4,6,["H742"]],[6,8,["H2055"]]]},{"k":12844,"v":[[0,2,["H6235"]],[2,3,["H1121"]],[3,5,["H2001"]],[5,7,["H1121"]],[7,9,["H4099"]],[9,11,["H6887"]],[11,14,["H3064"]],[14,15,["H2026"]],[15,20,["H961"]],[20,21,["H7971"]],[21,23,["H3808","(H853)"]],[23,25,["H3027"]]]},{"k":12845,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H4557"]],[5,10,["H2026"]],[10,12,["H7800"]],[12,14,["H1002"]],[14,16,["H935"]],[16,17,["H6440"]],[17,19,["H4428"]]]},{"k":12846,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H635"]],[6,8,["H4436"]],[8,10,["H3064"]],[10,12,["H2026"]],[12,14,["H6"]],[14,15,["H2568"]],[15,16,["H3967"]],[16,17,["H376"]],[17,19,["H7800"]],[19,21,["H1002"]],[21,24,["H6235"]],[24,25,["H1121"]],[25,27,["H2001"]],[27,28,["H4100"]],[28,31,["H6213"]],[31,34,["H7605"]],[34,37,["H4428"]],[37,38,["H4082"]],[38,40,["H4100"]],[40,43,["H7596"]],[43,48,["H5414"]],[48,51,["H4100"]],[51,54,["H1246"]],[54,55,["H5750"]],[55,60,["H6213"]]]},{"k":12847,"v":[[0,2,["H559"]],[2,3,["H635"]],[3,4,["H518"]],[4,6,["H2895","H5921"]],[6,8,["H4428"]],[8,12,["H5414"]],[12,15,["H3064"]],[15,16,["H834"]],[16,19,["H7800"]],[19,21,["H6213"]],[21,23,["H4279"]],[23,24,["H1571"]],[24,28,["H3117"]],[28,29,["H1881"]],[29,32,["H2001"]],[32,33,["H6235"]],[33,34,["H1121"]],[34,36,["H8518"]],[36,37,["H5921"]],[37,39,["H6086"]]]},{"k":12848,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H3651"]],[6,9,["H6213"]],[9,12,["H1881"]],[12,14,["H5414"]],[14,16,["H7800"]],[16,19,["H8518"]],[19,20,["H2001"]],[20,21,["H6235"]],[21,22,["H1121"]]]},{"k":12849,"v":[[0,3,["H3064"]],[3,4,["H834"]],[4,7,["H7800"]],[7,10,["H6950"]],[10,13,["H702","H6240"]],[13,14,["H3117"]],[14,15,["H1571"]],[15,18,["H2320"]],[18,19,["H143"]],[19,21,["H2026"]],[21,22,["H7969"]],[22,23,["H3967"]],[23,24,["H376"]],[24,26,["H7800"]],[26,30,["H961"]],[30,32,["H7971"]],[32,33,["H3808","(H853)"]],[33,35,["H3027"]]]},{"k":12850,"v":[[0,3,["H7605"]],[3,4,["H3064"]],[4,5,["H834"]],[5,9,["H4428"]],[9,10,["H4082"]],[10,13,["H6950"]],[13,15,["H5975"]],[15,16,["H5921"]],[16,18,["H5315"]],[18,21,["H5117"]],[21,24,["H4480","H341"]],[24,26,["H2026"]],[26,29,["H8130"]],[29,30,["H7657"]],[30,32,["H2568"]],[32,33,["H505"]],[33,36,["H7971"]],[36,37,["H3808","(H853)"]],[37,39,["H3027"]],[39,42,["H961"]]]},{"k":12851,"v":[[0,3,["H7969","H6240"]],[3,4,["H3117"]],[4,7,["H2320"]],[7,8,["H143"]],[8,12,["H702","H6240"]],[12,17,["H5117"]],[17,20,["H6213"]],[20,23,["H3117"]],[23,25,["H4960"]],[25,27,["H8057"]]]},{"k":12852,"v":[[0,3,["H3064"]],[3,4,["H834"]],[4,7,["H7800"]],[7,9,["H6950"]],[9,12,["H7969","H6240"]],[12,18,["H702","H6240"]],[18,23,["H2568","H6240"]],[23,29,["H5117"]],[29,31,["H6213"]],[31,34,["H3117"]],[34,36,["H4960"]],[36,38,["H8057"]]]},{"k":12853,"v":[[0,1,["H5921","H3651"]],[1,3,["H3064"]],[3,6,["H6521"]],[6,8,["H3427"]],[8,11,["H6519"]],[11,12,["H5892"]],[12,13,["H6213","(H853)"]],[13,15,["H702","H6240"]],[15,16,["H3117"]],[16,19,["H2320"]],[19,20,["H143"]],[20,24,["H8057"]],[24,26,["H4960"]],[26,29,["H2896"]],[29,30,["H3117"]],[30,33,["H4916"]],[33,34,["H4490"]],[34,35,["H376"]],[35,37,["H7453"]]]},{"k":12854,"v":[[0,2,["H4782"]],[2,3,["H3789","(H853)"]],[3,4,["H428"]],[4,5,["H1697"]],[5,7,["H7971"]],[7,8,["H5612"]],[8,9,["H413"]],[9,10,["H3605"]],[10,12,["H3064"]],[12,13,["H834"]],[13,16,["H3605"]],[16,18,["H4082"]],[18,21,["H4428"]],[21,22,["H325"]],[22,24,["H7138"]],[24,26,["H7350"]]]},{"k":12855,"v":[[0,2,["H6965"]],[2,4,["H5921"]],[4,8,["H1961"]],[8,9,["H6213","(H853)"]],[9,11,["H702","H6240"]],[11,12,["H3117"]],[12,15,["H2320"]],[15,16,["H143"]],[16,19,["H2568","H6240"]],[19,20,["H3117"]],[20,24,["H3605","H8141","H8141"]]]},{"k":12856,"v":[[0,3,["H3117"]],[3,4,["H834"]],[4,6,["H3064"]],[6,7,["H5117"]],[7,10,["H4480","H341"]],[10,13,["H2320"]],[13,14,["H834"]],[14,16,["H2015"]],[16,20,["H4480","H3015"]],[20,22,["H8057"]],[22,25,["H4480","H60"]],[25,28,["H2896"]],[28,29,["H3117"]],[29,33,["H6213"]],[33,35,["H3117"]],[35,37,["H4960"]],[37,39,["H8057"]],[39,42,["H4916"]],[42,43,["H4490"]],[43,44,["H376"]],[44,46,["H7453"]],[46,48,["H4979"]],[48,51,["H34"]]]},{"k":12857,"v":[[0,3,["H3064"]],[3,4,["H6901"]],[4,6,["H6213","(H853)"]],[6,7,["H834"]],[7,10,["H2490"]],[10,12,["H834"]],[12,13,["H4782"]],[13,15,["H3789"]],[15,16,["H413"]],[16,17,[]]]},{"k":12858,"v":[[0,1,["H3588"]],[1,2,["H2001"]],[2,4,["H1121"]],[4,6,["H4099"]],[6,8,["H91"]],[8,10,["H6887"]],[10,12,["H3605"]],[12,14,["H3064"]],[14,16,["H2803"]],[16,17,["H5921"]],[17,19,["H3064"]],[19,21,["H6"]],[21,25,["H5307"]],[25,26,["H6332"]],[26,27,["H1931"]],[27,30,["H1486"]],[30,32,["H2000"]],[32,36,["H6"]],[36,37,[]]]},{"k":12859,"v":[[0,4,["H935"]],[4,5,["H6440"]],[5,7,["H4428"]],[7,9,["H559"]],[9,10,["H5973"]],[10,11,["H5612"]],[11,14,["H7451"]],[14,15,["H4284"]],[15,16,["H834"]],[16,18,["H2803"]],[18,19,["H5921"]],[19,21,["H3064"]],[21,23,["H7725"]],[23,24,["H5921"]],[24,27,["H7218"]],[27,33,["H1121"]],[33,36,["H8518"]],[36,37,["H5921"]],[37,39,["H6086"]]]},{"k":12860,"v":[[0,1,["H5921","H3651"]],[1,3,["H7121"]],[3,4,["H428"]],[4,5,["H3117"]],[5,6,["H6332"]],[6,7,["H5921"]],[7,9,["H8034"]],[9,11,["H6332"]],[11,12,["H5921","H3651"]],[12,13,["H5921"]],[13,14,["H3605"]],[14,16,["H1697"]],[16,18,["H2063"]],[18,19,["H107"]],[19,23,["H4100"]],[23,26,["H7200"]],[26,27,["H5921"]],[27,29,["H3602"]],[29,31,["H4100"]],[31,33,["H5060"]],[33,34,["H413"]],[34,35,[]]]},{"k":12861,"v":[[0,2,["H3064"]],[2,3,["H6965"]],[3,5,["H6901"]],[5,6,["H5921"]],[6,9,["H5921"]],[9,11,["H2233"]],[11,13,["H5921"]],[13,14,["H3605"]],[14,18,["H3867"]],[18,19,["H5921"]],[19,25,["H3808"]],[25,26,["H5674"]],[26,30,["H6213","(H853)"]],[30,31,["H428"]],[31,32,["H8147"]],[32,33,["H3117"]],[33,37,["H3791"]],[37,43,["H2165"]],[43,44,["H3605"]],[44,45,["H8141","H8141"]]]},{"k":12862,"v":[[0,3,["H428"]],[3,4,["H3117"]],[4,7,["H2142"]],[7,9,["H6213"]],[9,11,["H3605"]],[11,12,["H1755","H1755"]],[12,14,["H4940","H4940"]],[14,16,["H4082","H4082"]],[16,19,["H5892","H5892"]],[19,22,["H428"]],[22,23,["H3117"]],[23,25,["H6332"]],[25,27,["H3808"]],[27,28,["H5674"]],[28,30,["H4480","H8432"]],[30,32,["H3064"]],[32,33,["H3808"]],[33,35,["H2143"]],[35,38,["H5486"]],[38,41,["H4480","H2233"]]]},{"k":12863,"v":[[0,2,["H635"]],[2,4,["H4436"]],[4,6,["H1323"]],[6,8,["H32"]],[8,10,["H4782"]],[10,12,["H3064"]],[12,13,["H3789"]],[13,14,["H854"]],[14,15,["H3605"]],[15,16,["H8633"]],[16,18,["H6965","(H853)"]],[18,19,["H2063"]],[19,20,["H8145"]],[20,21,["H107"]],[21,23,["H6332"]]]},{"k":12864,"v":[[0,3,["H7971"]],[3,5,["H5612"]],[5,6,["H413"]],[6,7,["H3605"]],[7,9,["H3064"]],[9,10,["H413"]],[10,12,["H3967"]],[12,13,["H6242"]],[13,15,["H7651"]],[15,16,["H4082"]],[16,19,["H4438"]],[19,21,["H325"]],[21,23,["H1697"]],[23,25,["H7965"]],[25,27,["H571"]]]},{"k":12865,"v":[[0,2,["H6965","(H853)"]],[2,3,["H428"]],[3,4,["H3117"]],[4,6,["H6332"]],[6,9,["H2165"]],[9,12,["H834"]],[12,13,["H4782"]],[13,15,["H3064"]],[15,17,["H635"]],[17,19,["H4436"]],[19,21,["H6965","H5921"]],[21,24,["H834"]],[24,27,["H6965"]],[27,28,["H5921"]],[28,29,["H5315"]],[29,31,["H5921"]],[31,33,["H2233"]],[33,35,["H1697"]],[35,38,["H6685"]],[38,41,["H2201"]]]},{"k":12866,"v":[[0,3,["H3982"]],[3,5,["H635"]],[5,6,["H6965"]],[6,7,["H428"]],[7,8,["H1697"]],[8,10,["H6332"]],[10,14,["H3789"]],[14,17,["H5612"]]]},{"k":12867,"v":[[0,3,["H4428"]],[3,4,["H325"]],[4,5,["H7760"]],[5,7,["H4522"]],[7,8,["H5921"]],[8,10,["H776"]],[10,14,["H339"]],[14,17,["H3220"]]]},{"k":12868,"v":[[0,2,["H3605"]],[2,4,["H4639"]],[4,7,["H8633"]],[7,11,["H1369"]],[11,14,["H6575"]],[14,17,["H1420"]],[17,19,["H4782"]],[19,20,["H834"]],[20,22,["H4428"]],[22,23,["H1431"]],[23,26,["H1992"]],[26,27,["H3808"]],[27,28,["H3789"]],[28,29,["H5921"]],[29,31,["H5612"]],[31,34,["H1697","H3117"]],[34,37,["H4428"]],[37,39,["H4074"]],[39,41,["H6539"]]]},{"k":12869,"v":[[0,1,["H3588"]],[1,2,["H4782"]],[2,4,["H3064"]],[4,6,["H4932"]],[6,8,["H4428"]],[8,9,["H325"]],[9,11,["H1419"]],[11,14,["H3064"]],[14,16,["H7521"]],[16,19,["H7230"]],[19,22,["H251"]],[22,23,["H1875"]],[23,25,["H2896"]],[25,28,["H5971"]],[28,30,["H1696"]],[30,31,["H7965"]],[31,33,["H3605"]],[33,35,["H2233"]]]},{"k":12870,"v":[[0,2,["H1961"]],[2,4,["H376"]],[4,7,["H776"]],[7,9,["H5780"]],[9,11,["H8034"]],[11,13,["H347"]],[13,15,["H1931"]],[15,16,["H376"]],[16,17,["H1961"]],[17,18,["H8535"]],[18,20,["H3477"]],[20,24,["H3373"]],[24,25,["H430"]],[25,27,["H5493"]],[27,28,["H4480","H7451"]]]},{"k":12871,"v":[[0,4,["H3205"]],[4,7,["H7651"]],[7,8,["H1121"]],[8,10,["H7969"]],[10,11,["H1323"]]]},{"k":12872,"v":[[0,2,["H4735"]],[2,4,["H1961"]],[4,5,["H7651"]],[5,6,["H505"]],[6,7,["H6629"]],[7,9,["H7969"]],[9,10,["H505"]],[10,11,["H1581"]],[11,13,["H2568"]],[13,14,["H3967"]],[14,15,["H6776"]],[15,17,["H1241"]],[17,19,["H2568"]],[19,20,["H3967"]],[20,22,["H860"]],[22,25,["H3966"]],[25,26,["H7227"]],[26,27,["H5657"]],[27,30,["H1931"]],[30,31,["H376"]],[31,32,["H1961"]],[32,34,["H1419"]],[34,36,["H4480","H3605"]],[36,38,["H1121"]],[38,41,["H6924"]]]},{"k":12873,"v":[[0,3,["H1121"]],[3,4,["H1980"]],[4,6,["H6213","H4960"]],[6,9,["H1004"]],[9,11,["H376"]],[11,13,["H3117"]],[13,15,["H7971"]],[15,17,["H7121"]],[17,20,["H7969"]],[20,21,["H269"]],[21,23,["H398"]],[23,26,["H8354"]],[26,27,["H5973"]],[27,28,[]]]},{"k":12874,"v":[[0,3,["H1961"]],[3,5,["H3588"]],[5,7,["H3117"]],[7,10,["H4960"]],[10,13,["H5362"]],[13,15,["H347"]],[15,16,["H7971"]],[16,18,["H6942"]],[18,23,["H7925"]],[23,26,["H1242"]],[26,28,["H5927"]],[28,30,["H5930"]],[30,34,["H4557"]],[34,37,["H3605"]],[37,38,["H3588"]],[38,39,["H347"]],[39,40,["H559"]],[40,43,["H194"]],[43,46,["H1121"]],[46,48,["H2398"]],[48,50,["H1288"]],[50,51,["H430"]],[51,54,["H3824"]],[54,55,["H3602"]],[55,56,["H6213"]],[56,57,["H347"]],[57,58,["H3605","H3117"]]]},{"k":12875,"v":[[0,3,["H1961"]],[3,5,["H3117"]],[5,8,["H1121"]],[8,10,["H430"]],[10,11,["H935"]],[11,14,["H3320"]],[14,15,["H5921"]],[15,17,["H3068"]],[17,19,["H7854"]],[19,20,["H935"]],[20,21,["H1571"]],[21,22,["H8432"]],[22,23,[]]]},{"k":12876,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H7854"]],[6,7,["H4480","H370"]],[7,8,["H935"]],[8,11,["H7854"]],[11,12,["H6030","(H853)"]],[12,14,["H3068"]],[14,16,["H559"]],[16,21,["H4480","H7751"]],[21,24,["H776"]],[24,30,["H4480","H1980"]],[30,32,[]]]},{"k":12877,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H7854"]],[6,9,["H7760","H3820","H5921"]],[9,11,["H5650"]],[11,12,["H347"]],[12,13,["H3588"]],[13,16,["H369"]],[16,18,["H3644"]],[18,21,["H776"]],[21,23,["H8535"]],[23,26,["H3477"]],[26,27,["H376"]],[27,30,["H3373"]],[30,31,["H430"]],[31,33,["H5493"]],[33,34,["H4480","H7451"]]]},{"k":12878,"v":[[0,2,["H7854"]],[2,3,["H6030","(H853)"]],[3,5,["H3068"]],[5,7,["H559"]],[7,9,["H347"]],[9,10,["H3372"]],[10,11,["H430"]],[11,13,["H2600"]]]},{"k":12879,"v":[[0,2,["H3808"]],[2,3,["H859"]],[3,6,["H7753"]],[6,7,["H1157"]],[7,10,["H1157"]],[10,12,["H1004"]],[12,14,["H1157"]],[14,15,["H3605"]],[15,16,["H834"]],[16,21,["H4480","H5439"]],[21,24,["H1288"]],[24,26,["H4639"]],[26,29,["H3027"]],[29,32,["H4735"]],[32,34,["H6555"]],[34,37,["H776"]]]},{"k":12880,"v":[[0,1,["H199"]],[1,3,["H7971"]],[3,5,["H3027"]],[5,6,["H4994"]],[6,8,["H5060"]],[8,9,["H3605"]],[9,10,["H834"]],[10,13,["H518"]],[13,16,["H1288"]],[16,18,["H5921"]],[18,20,["H6440"]]]},{"k":12881,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H7854"]],[6,7,["H2009"]],[7,8,["H3605"]],[8,9,["H834"]],[9,15,["H3027"]],[15,16,["H7535"]],[16,17,["H413"]],[17,21,["H408","H7971"]],[21,23,["H3027"]],[23,25,["H7854"]],[25,27,["H3318"]],[27,28,["H4480","H5973"]],[28,30,["H6440"]],[30,33,["H3068"]]]},{"k":12882,"v":[[0,3,["H1961"]],[3,5,["H3117"]],[5,8,["H1121"]],[8,11,["H1323"]],[11,13,["H398"]],[13,15,["H8354"]],[15,16,["H3196"]],[16,19,["H1060"]],[19,20,["H251"]],[20,21,["H1004"]]]},{"k":12883,"v":[[0,3,["H935"]],[3,5,["H4397"]],[5,6,["H413"]],[6,7,["H347"]],[7,9,["H559"]],[9,11,["H1241"]],[11,12,["H1961"]],[12,13,["H2790"]],[13,16,["H860"]],[16,17,["H7462"]],[17,18,["H5921","H3027"]],[18,19,[]]]},{"k":12884,"v":[[0,3,["H7614"]],[3,4,["H5307"]],[4,10,["H3947"]],[10,14,["H5221"]],[14,16,["H5288"]],[16,19,["H6310"]],[19,22,["H2719"]],[22,24,["H589"]],[24,25,["H7535"]],[25,27,["H4422"]],[27,28,["H905"]],[28,30,["H5046"]],[30,31,[]]]},{"k":12885,"v":[[0,2,["H2088"]],[2,4,["H5750"]],[4,5,["H1696"]],[5,7,["H935"]],[7,9,["H2088"]],[9,11,["H559"]],[11,13,["H784"]],[13,15,["H430"]],[15,17,["H5307"]],[17,18,["H4480"]],[18,19,["H8064"]],[19,23,["H1197"]],[23,25,["H6629"]],[25,28,["H5288"]],[28,30,["H398"]],[30,33,["H589"]],[33,34,["H7535"]],[34,36,["H4422"]],[36,37,["H905"]],[37,39,["H5046"]],[39,40,[]]]},{"k":12886,"v":[[0,2,["H2088"]],[2,4,["H5750"]],[4,5,["H1696"]],[5,7,["H935"]],[7,9,["H2088"]],[9,11,["H559"]],[11,13,["H3778"]],[13,14,["H7760"]],[14,16,["H7969"]],[16,17,["H7218"]],[17,19,["H6584"]],[19,20,["H5921"]],[20,22,["H1581"]],[22,27,["H3947"]],[27,30,["H5221"]],[30,32,["H5288"]],[32,35,["H6310"]],[35,38,["H2719"]],[38,40,["H589"]],[40,41,["H7535"]],[41,43,["H4422"]],[43,44,["H905"]],[44,46,["H5046"]],[46,47,[]]]},{"k":12887,"v":[[0,2,["H2088"]],[2,4,["H5750"]],[4,5,["H1696"]],[5,7,["H935"]],[7,9,["H2088"]],[9,11,["H559"]],[11,13,["H1121"]],[13,16,["H1323"]],[16,18,["H398"]],[18,20,["H8354"]],[20,21,["H3196"]],[21,24,["H1060"]],[24,25,["H251"]],[25,26,["H1004"]]]},{"k":12888,"v":[[0,2,["H2009"]],[2,4,["H935"]],[4,6,["H1419"]],[6,7,["H7307"]],[7,8,["H4480","H5676"]],[8,10,["H4057"]],[10,12,["H5060"]],[12,14,["H702"]],[14,15,["H6438"]],[15,18,["H1004"]],[18,21,["H5307"]],[21,22,["H5921"]],[22,25,["H5288"]],[25,29,["H4191"]],[29,31,["H589"]],[31,32,["H7535"]],[32,34,["H4422"]],[34,35,["H905"]],[35,37,["H5046"]],[37,38,[]]]},{"k":12889,"v":[[0,2,["H347"]],[2,3,["H6965"]],[3,5,["H7167","(H853)"]],[5,7,["H4598"]],[7,9,["H1494","(H853)"]],[9,11,["H7218"]],[11,14,["H5307"]],[14,17,["H776"]],[17,19,["H7812"]]]},{"k":12890,"v":[[0,2,["H559"]],[2,3,["H6174"]],[3,6,["H3318"]],[6,10,["H4480","H990","H517"]],[10,12,["H6174"]],[12,15,["H7725"]],[15,16,["H8033"]],[16,18,["H3068"]],[18,19,["H5414"]],[19,22,["H3068"]],[22,25,["H3947"]],[25,26,["H1288"]],[26,27,["H1961"]],[27,29,["H8034"]],[29,32,["H3068"]]]},{"k":12891,"v":[[0,2,["H3605"]],[2,3,["H2063"]],[3,4,["H347"]],[4,5,["H2398"]],[5,6,["H3808"]],[6,7,["H3808"]],[7,8,["H5414"]],[8,9,["H430"]],[9,10,["H8604"]]]},{"k":12892,"v":[[0,3,["H1961"]],[3,5,["H3117"]],[5,8,["H1121"]],[8,10,["H430"]],[10,11,["H935"]],[11,14,["H3320"]],[14,15,["H5921"]],[15,17,["H3068"]],[17,19,["H7854"]],[19,20,["H935"]],[20,21,["H1571"]],[21,22,["H8432"]],[22,26,["H3320"]],[26,27,["H5921"]],[27,29,["H3068"]]]},{"k":12893,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H7854"]],[6,8,["H335","H4480","H2088"]],[8,9,["H935"]],[9,12,["H7854"]],[12,13,["H6030","(H853)"]],[13,15,["H3068"]],[15,17,["H559"]],[17,22,["H4480","H7751"]],[22,25,["H776"]],[25,31,["H4480","H1980"]],[31,33,[]]]},{"k":12894,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H7854"]],[6,9,["H7760","H3820","H413"]],[9,11,["H5650"]],[11,12,["H347"]],[12,13,["H3588"]],[13,16,["H369"]],[16,18,["H3644"]],[18,21,["H776"]],[21,23,["H8535"]],[23,26,["H3477"]],[26,27,["H376"]],[27,30,["H3373"]],[30,31,["H430"]],[31,33,["H5493"]],[33,34,["H4480","H7451"]],[34,36,["H5750"]],[36,39,["H2388"]],[39,41,["H8538"]],[41,44,["H5496"]],[44,49,["H1104"]],[49,52,["H2600"]]]},{"k":12895,"v":[[0,2,["H7854"]],[2,3,["H6030","(H853)"]],[3,5,["H3068"]],[5,7,["H559"]],[7,10,["H5785","H1157","H5785"]],[10,12,["H3605"]],[12,13,["H834"]],[13,15,["H376"]],[15,19,["H5414"]],[19,20,["H1157"]],[20,22,["H5315"]]]},{"k":12896,"v":[[0,1,["H199"]],[1,3,["H7971"]],[3,5,["H3027"]],[5,6,["H4994"]],[6,8,["H5060","H413"]],[8,10,["H6106"]],[10,13,["H1320"]],[13,14,["H518"]],[14,17,["H1288"]],[17,19,["H413"]],[19,21,["H6440"]]]},{"k":12897,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H7854"]],[6,7,["H2009"]],[7,12,["H3027"]],[12,13,["H389"]],[13,14,["H8104","(H853)"]],[14,16,["H5315"]]]},{"k":12898,"v":[[0,4,["H3318","H7854"]],[4,5,["H4480","H854"]],[5,7,["H6440"]],[7,10,["H3068"]],[10,12,["H5221","(H853)"]],[12,13,["H347"]],[13,15,["H7451"]],[15,16,["H7822"]],[16,19,["H4480","H3709"]],[19,22,["H7272"]],[22,23,["H5704"]],[23,25,["H6936"]]]},{"k":12899,"v":[[0,3,["H3947"]],[3,6,["H2789"]],[6,9,["H1623"]],[9,12,["H1931"]],[12,14,["H3427"]],[14,15,["H8432"]],[15,17,["H665"]]]},{"k":12900,"v":[[0,2,["H559"]],[2,4,["H802"]],[4,9,["H5750"]],[9,10,["H2388"]],[10,12,["H8538"]],[12,13,["H1288"]],[13,14,["H430"]],[14,16,["H4191"]]]},{"k":12901,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H1696"]],[7,9,["H259"]],[9,13,["H5036"]],[13,14,["H1696"]],[14,15,["H1571"]],[15,18,["H6901","(H853)"]],[18,19,["H2896"]],[19,22,["H4480","H854"]],[22,24,["H430"]],[24,28,["H3808"]],[28,29,["H6901"]],[29,30,["H7451"]],[30,32,["H3605"]],[32,33,["H2063"]],[33,35,["H3808"]],[35,36,["H347"]],[36,37,["H2398"]],[37,40,["H8193"]]]},{"k":12902,"v":[[0,3,["H347"]],[3,4,["H7969"]],[4,5,["H7453"]],[5,6,["H8085","(H853)"]],[6,8,["H3605"]],[8,9,["H2063"]],[9,10,["H7451"]],[10,13,["H935"]],[13,14,["H5921"]],[14,17,["H935"]],[17,19,["H376"]],[19,23,["H4480","H4725"]],[23,24,["H464"]],[24,26,["H8489"]],[26,28,["H1085"]],[28,30,["H7747"]],[30,32,["H6691"]],[32,34,["H5284"]],[34,40,["H3259"]],[40,41,["H3162"]],[41,43,["H935"]],[43,45,["H5110"]],[45,50,["H5162"]],[50,51,[]]]},{"k":12903,"v":[[0,5,["H5375","(H853)"]],[5,7,["H5869"]],[7,9,["H4480","H7350"]],[9,11,["H5234"]],[11,13,["H3808"]],[13,16,["H5375"]],[16,18,["H6963"]],[18,20,["H1058"]],[20,23,["H7167"]],[23,25,["H376"]],[25,27,["H4598"]],[27,29,["H2236"]],[29,30,["H6083"]],[30,31,["H5921"]],[31,33,["H7218"]],[33,35,["H8064"]]]},{"k":12904,"v":[[0,4,["H3427"]],[4,5,["H854"]],[5,9,["H776"]],[9,10,["H7651"]],[10,11,["H3117"]],[11,13,["H7651"]],[13,14,["H3915"]],[14,16,["H369"]],[16,17,["H1696"]],[17,19,["H1697"]],[19,20,["H413"]],[20,22,["H3588"]],[22,24,["H7200"]],[24,25,["H3588"]],[25,27,["H3511"]],[27,30,["H1431","H3966"]]]},{"k":12905,"v":[[0,1,["H310"]],[1,2,["H3651"]],[2,3,["H6605"]],[3,4,["H347","(H853)"]],[4,6,["H6310"]],[6,8,["H7043","(H853)"]],[8,10,["H3117"]]]},{"k":12906,"v":[[0,2,["H347"]],[2,3,["H6030"]],[3,5,["H559"]]]},{"k":12907,"v":[[0,3,["H3117"]],[3,4,["H6"]],[4,8,["H3205"]],[8,11,["H3915"]],[11,16,["H559"]],[16,21,["H1397"]],[21,22,["H2029"]]]},{"k":12908,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,4,["H1961"]],[4,5,["H2822"]],[5,7,["H408"]],[7,8,["H433"]],[8,9,["H1875"]],[9,12,["H4480","H4605"]],[12,13,["H408"]],[13,16,["H5105"]],[16,17,["H3313"]],[17,18,["H5921"]],[18,19,[]]]},{"k":12909,"v":[[0,2,["H2822"]],[2,7,["H6757"]],[7,8,["H1350"]],[8,12,["H6053"]],[12,13,["H7931"]],[13,14,["H5921"]],[14,18,["H3650"]],[18,21,["H3117"]],[21,22,["H1204"]],[22,23,[]]]},{"k":12910,"v":[[0,3,["H1931"]],[3,4,["H3915"]],[4,6,["H652"]],[6,8,["H3947"]],[8,12,["H408"]],[12,14,["H2302"]],[14,17,["H3117"]],[17,20,["H8141"]],[20,23,["H408"]],[23,24,["H935"]],[24,27,["H4557"]],[27,30,["H3391"]]]},{"k":12911,"v":[[0,1,["H2009"]],[1,3,["H1931"]],[3,4,["H3915"]],[4,5,["H1961"]],[5,6,["H1565"]],[6,8,["H408"]],[8,10,["H7445"]],[10,11,["H935"]],[11,12,[]]]},{"k":12912,"v":[[0,3,["H5344"]],[3,6,["H779"]],[6,8,["H3117"]],[8,11,["H6264"]],[11,14,["H5782"]],[14,16,["H3882"]]]},{"k":12913,"v":[[0,3,["H3556"]],[3,6,["H5399"]],[6,9,["H2821"]],[9,12,["H6960"]],[12,14,["H216"]],[14,17,["H369"]],[17,18,["H408"]],[18,21,["H7200"]],[21,23,["H6079"]],[23,26,["H7837"]]]},{"k":12914,"v":[[0,1,["H3588"]],[1,5,["H3808","H5462"]],[5,7,["H1817"]],[7,11,["H990"]],[11,13,["H5641"]],[13,14,["H5999"]],[14,17,["H4480","H5869"]]]},{"k":12915,"v":[[0,1,["H4100"]],[1,2,["H4191"]],[2,4,["H3808"]],[4,7,["H4480","H7358"]],[7,15,["H1478"]],[15,19,["H3318"]],[19,22,["H4480","H990"]]]},{"k":12916,"v":[[0,1,["H4069"]],[1,4,["H1290"]],[4,5,["H6923"]],[5,8,["H4100"]],[8,10,["H7699"]],[10,11,["H3588"]],[11,14,["H3243"]]]},{"k":12917,"v":[[0,1,["H3588"]],[1,2,["H6258"]],[2,7,["H7901"]],[7,10,["H8252"]],[10,14,["H3462"]],[14,15,["H227"]],[15,20,["H5117"]]]},{"k":12918,"v":[[0,1,["H5973"]],[1,2,["H4428"]],[2,4,["H3289"]],[4,7,["H776"]],[7,9,["H1129"]],[9,11,["H2723"]],[11,13,[]]]},{"k":12919,"v":[[0,1,["H176"]],[1,2,["H5973"]],[2,3,["H8269"]],[3,6,["H2091"]],[6,8,["H4390"]],[8,10,["H1004"]],[10,12,["H3701"]]]},{"k":12920,"v":[[0,1,["H176"]],[1,4,["H2934"]],[4,6,["H5309"]],[6,9,["H3808"]],[9,10,["H1961"]],[10,12,["H5768"]],[12,14,["H3808"]],[14,15,["H7200"]],[15,16,["H216"]]]},{"k":12921,"v":[[0,1,["H8033"]],[1,3,["H7563"]],[3,4,["H2308"]],[4,6,["H7267"]],[6,8,["H8033"]],[8,10,["H3019","H3581"]],[10,13,["H5117"]]]},{"k":12922,"v":[[0,3,["H615"]],[3,4,["H7599"]],[4,5,["H3162"]],[5,7,["H8085"]],[7,8,["H3808"]],[8,10,["H6963"]],[10,13,["H5065"]]]},{"k":12923,"v":[[0,2,["H6996"]],[2,4,["H1419"]],[4,6,["H8033"]],[6,9,["H5650"]],[9,11,["H2670"]],[11,14,["H4480","H113"]]]},{"k":12924,"v":[[0,1,["H4100"]],[1,3,["H216"]],[3,4,["H5414"]],[4,10,["H6001"]],[10,12,["H2416"]],[12,15,["H4751"]],[15,17,["H5315"]]]},{"k":12925,"v":[[0,2,["H2442"]],[2,4,["H4194"]],[4,8,["H369"]],[8,10,["H2658"]],[10,17,["H4480","H4301"]]]},{"k":12926,"v":[[0,2,["H8056"]],[2,3,["H413","H1524"]],[3,6,["H7797"]],[6,7,["H3588"]],[7,10,["H4672"]],[10,12,["H6913"]]]},{"k":12927,"v":[[0,7,["H1397"]],[7,8,["H834"]],[8,9,["H1870"]],[9,11,["H5641"]],[11,13,["H1157"]],[13,14,["H433"]],[14,17,["H5526"]]]},{"k":12928,"v":[[0,1,["H3588"]],[1,3,["H585"]],[3,4,["H935"]],[4,5,["H6440"]],[5,7,["H3899"]],[7,10,["H7581"]],[10,13,["H5413"]],[13,16,["H4325"]]]},{"k":12929,"v":[[0,1,["H3588"]],[1,7,["H6343","H6342"]],[7,10,["H857"]],[10,14,["H834"]],[14,18,["H3025"]],[18,20,["H935"]],[20,22,[]]]},{"k":12930,"v":[[0,3,["H3808"]],[3,5,["H7951"]],[5,6,["H3808"]],[6,9,["H8252"]],[9,10,["H3808"]],[10,13,["H5117"]],[13,15,["H7267"]],[15,16,["H935"]]]},{"k":12931,"v":[[0,2,["H464"]],[2,4,["H8489"]],[4,5,["H6030"]],[5,7,["H559"]]]},{"k":12932,"v":[[0,5,["H5254","H1697"]],[5,6,["H413"]],[6,11,["H3811"]],[11,13,["H4310"]],[13,14,["H3201"]],[14,15,["H6113"]],[15,18,["H4405"]]]},{"k":12933,"v":[[0,1,["H2009"]],[1,4,["H3256"]],[4,5,["H7227"]],[5,9,["H2388"]],[9,11,["H7504"]],[11,12,["H3027"]]]},{"k":12934,"v":[[0,2,["H4405"]],[2,4,["H6965"]],[4,8,["H3782"]],[8,12,["H553"]],[12,14,["H3766"]],[14,15,["H1290"]]]},{"k":12935,"v":[[0,1,["H3588"]],[1,2,["H6258"]],[2,5,["H935"]],[5,6,["H413"]],[6,10,["H3811"]],[10,12,["H5060","H5704"]],[12,17,["H926"]]]},{"k":12936,"v":[[0,2,["H3808"]],[2,5,["H3374"]],[5,7,["H3690"]],[7,9,["H8615"]],[9,12,["H8537"]],[12,15,["H1870"]]]},{"k":12937,"v":[[0,1,["H2142"]],[1,4,["H4994"]],[4,5,["H4310"]],[5,7,["H6"]],[7,9,["H5355"]],[9,11,["H375"]],[11,14,["H3477"]],[14,16,["H3582"]]]},{"k":12938,"v":[[0,2,["H834"]],[2,5,["H7200"]],[5,8,["H2790"]],[8,9,["H205"]],[9,11,["H2232"]],[11,12,["H5999"]],[12,13,["H7114"]],[13,15,[]]]},{"k":12939,"v":[[0,3,["H4480","H5397"]],[3,5,["H433"]],[5,7,["H6"]],[7,11,["H4480","H7307"]],[11,14,["H639"]],[14,17,["H3615"]]]},{"k":12940,"v":[[0,2,["H7581"]],[2,5,["H738"]],[5,8,["H6963"]],[8,12,["H7826"]],[12,15,["H8127"]],[15,19,["H3715"]],[19,21,["H5421"]]]},{"k":12941,"v":[[0,3,["H3918"]],[3,4,["H6"]],[4,6,["H4480","H1097"]],[6,8,["H2964"]],[8,12,["H3833"]],[12,13,["H1121"]],[13,16,["H6504"]]]},{"k":12942,"v":[[0,3,["H1697"]],[3,6,["H1589"]],[6,7,["H413"]],[7,11,["H241"]],[11,12,["H3947"]],[12,14,["H8102"]],[14,15,["H4480"]]]},{"k":12943,"v":[[0,2,["H5587"]],[2,5,["H4480","H2384"]],[5,8,["H3915"]],[8,11,["H8639"]],[11,12,["H5307"]],[12,13,["H5921"]],[13,14,["H376"]]]},{"k":12944,"v":[[0,1,["H6343"]],[1,3,["H7122"]],[3,6,["H7460"]],[6,9,["H7230"]],[9,11,["H6106"]],[11,13,["H6342"]]]},{"k":12945,"v":[[0,3,["H7307"]],[3,4,["H2498"]],[4,5,["H5921"]],[5,7,["H6440"]],[7,9,["H8185"]],[9,12,["H1320"]],[12,14,["H5568"]]]},{"k":12946,"v":[[0,3,["H5975"]],[3,7,["H3808"]],[7,8,["H5234"]],[8,10,["H4758"]],[10,13,["H8544"]],[13,15,["H5048"]],[15,17,["H5869"]],[17,20,["H1827"]],[20,23,["H8085"]],[23,25,["H6963"]],[25,26,[]]]},{"k":12947,"v":[[0,3,["H582"]],[3,8,["H6663","H4480","H433"]],[8,11,["H1397"]],[11,14,["H2891"]],[14,17,["H4480","H6213"]]]},{"k":12948,"v":[[0,1,["H2005"]],[1,5,["H539","H3808"]],[5,8,["H5650"]],[8,11,["H4397"]],[11,13,["H7760"]],[13,15,["H8417"]]]},{"k":12949,"v":[[0,3,["H637"]],[3,8,["H7931"]],[8,9,["H1004"]],[9,11,["H2563"]],[11,12,["H834"]],[12,13,["H3247"]],[13,17,["H6083"]],[17,20,["H1792"]],[20,21,["H6440"]],[21,23,["H6211"]]]},{"k":12950,"v":[[0,3,["H3807"]],[3,5,["H4480","H1242"]],[5,7,["H6153"]],[7,9,["H6"]],[9,11,["H5331"]],[11,13,["H4480","H1097"]],[13,14,["H7760"]],[14,15,[]]]},{"k":12951,"v":[[0,2,["H3808"]],[2,4,["H3499"]],[4,10,["H5265"]],[10,12,["H4191"]],[12,14,["H3808"]],[14,15,["H2451"]]]},{"k":12952,"v":[[0,1,["H7121"]],[1,2,["H4994"]],[2,5,["H3426"]],[5,9,["H6030"]],[9,12,["H413"]],[12,13,["H4310"]],[13,16,["H4480","H6918"]],[16,19,["H6437"]]]},{"k":12953,"v":[[0,1,["H3588"]],[1,2,["H3708"]],[2,3,["H2026"]],[3,5,["H191"]],[5,8,["H7068"]],[8,9,["H4191"]],[9,11,["H6601"]],[11,12,[]]]},{"k":12954,"v":[[0,1,["H589"]],[1,3,["H7200"]],[3,5,["H191"]],[5,7,["H8327"]],[7,9,["H6597"]],[9,11,["H5344"]],[11,13,["H5116"]]]},{"k":12955,"v":[[0,2,["H1121"]],[2,4,["H7368"]],[4,6,["H4480","H3468"]],[6,10,["H1792"]],[10,13,["H8179"]],[13,14,["H369"]],[14,19,["H5337"]],[19,20,[]]]},{"k":12956,"v":[[0,1,["H834"]],[1,2,["H7105"]],[2,4,["H7457"]],[4,6,["H398"]],[6,8,["H3947"]],[8,12,["H413"]],[12,14,["H4480","H6791"]],[14,17,["H6782"]],[17,19,["H7602"]],[19,21,["H2428"]]]},{"k":12957,"v":[[0,1,["H3588"]],[1,2,["H205"]],[2,5,["H3318","H3808"]],[5,8,["H4480","H6083"]],[8,9,["H3808"]],[9,11,["H5999"]],[11,12,["H6779"]],[12,16,["H4480","H127"]]]},{"k":12958,"v":[[0,1,["H3588"]],[1,2,["H120"]],[2,4,["H3205"]],[4,6,["H5999"]],[6,9,["H1121","H7565"]],[9,10,["H5774"]],[10,11,["H1361"]]]},{"k":12959,"v":[[0,1,["H589"]],[1,3,["H1875"]],[3,4,["H413"]],[4,5,["H410"]],[5,7,["H413"]],[7,8,["H430"]],[8,11,["H7760"]],[11,13,["H1700"]]]},{"k":12960,"v":[[0,2,["H6213"]],[2,4,["H1419"]],[4,6,["H369","H2714"]],[6,8,["H6381"]],[8,9,["H5704","H369"]],[9,10,["H4557"]]]},{"k":12961,"v":[[0,2,["H5414"]],[2,3,["H4306"]],[3,4,["H5921","H6440"]],[4,6,["H776"]],[6,8,["H7971"]],[8,9,["H4325"]],[9,10,["H5921","H6440"]],[10,12,["H2351"]]]},{"k":12962,"v":[[0,3,["H7760"]],[3,5,["H4791"]],[5,9,["H8217"]],[9,13,["H6937"]],[13,16,["H7682"]],[16,18,["H3468"]]]},{"k":12963,"v":[[0,2,["H6565"]],[2,4,["H4284"]],[4,7,["H6175"]],[7,11,["H3027"]],[11,12,["H3808"]],[12,13,["H6213"]],[13,15,["H8454"]]]},{"k":12964,"v":[[0,2,["H3920"]],[2,4,["H2450"]],[4,8,["H6193"]],[8,11,["H6098"]],[11,14,["H6617"]],[14,17,["H4116"]]]},{"k":12965,"v":[[0,2,["H6298"]],[2,4,["H2822"]],[4,7,["H3119"]],[7,9,["H4959"]],[9,12,["H6672"]],[12,16,["H3915"]]]},{"k":12966,"v":[[0,3,["H3467"]],[3,5,["H34"]],[5,8,["H4480","H2719"]],[8,11,["H4480","H6310"]],[11,15,["H4480","H3027"]],[15,18,["H2389"]]]},{"k":12967,"v":[[0,3,["H1800"]],[3,4,["H1961"]],[4,5,["H8615"]],[5,7,["H5766"]],[7,8,["H7092"]],[8,10,["H6310"]]]},{"k":12968,"v":[[0,1,["H2009"]],[1,2,["H835"]],[2,5,["H582"]],[5,7,["H433"]],[7,8,["H3198"]],[8,10,["H3988"]],[10,11,["H408"]],[11,14,["H4148"]],[14,17,["H7706"]]]},{"k":12969,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,4,["H3510"]],[4,7,["H2280"]],[7,9,["H4272"]],[9,12,["H3027"]],[12,14,["H7495"]]]},{"k":12970,"v":[[0,3,["H5337"]],[3,6,["H8337"]],[6,7,["H6869"]],[7,10,["H7651"]],[10,13,["H3808"]],[13,14,["H7451"]],[14,15,["H5060"]],[15,16,[]]]},{"k":12971,"v":[[0,2,["H7458"]],[2,5,["H6299"]],[5,8,["H4480","H4194"]],[8,11,["H4421"]],[11,14,["H4480","H3027"]],[14,17,["H2719"]]]},{"k":12972,"v":[[0,4,["H2244"]],[4,7,["H7752"]],[7,10,["H3956"]],[10,11,["H3808"]],[11,15,["H3372"]],[15,17,["H4480","H7701"]],[17,18,["H3588"]],[18,20,["H935"]]]},{"k":12973,"v":[[0,2,["H7701"]],[2,4,["H3720"]],[4,7,["H7832"]],[7,8,["H408"]],[8,12,["H3372"]],[12,15,["H4480","H2416"]],[15,18,["H776"]]]},{"k":12974,"v":[[0,1,["H3588"]],[1,6,["H1285"]],[6,7,["H5973"]],[7,9,["H68"]],[9,12,["H7704"]],[12,15,["H2416"]],[15,18,["H7704"]],[18,22,["H7999"]],[22,24,[]]]},{"k":12975,"v":[[0,4,["H3045"]],[4,7,["H168"]],[7,11,["H7965"]],[11,15,["H6485"]],[15,17,["H5116"]],[17,21,["H3808","H2398"]]]},{"k":12976,"v":[[0,3,["H3045"]],[3,5,["H3588"]],[5,7,["H2233"]],[7,10,["H7227"]],[10,13,["H6631"]],[13,16,["H6212"]],[16,19,["H776"]]]},{"k":12977,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H6913"]],[6,10,["H3624"]],[10,16,["H1430"]],[16,18,["H5927"]],[18,21,["H6256"]]]},{"k":12978,"v":[[0,1,["H2009"]],[1,2,["H2063"]],[2,5,["H2713"]],[5,7,["H3651"]],[7,8,["H1931"]],[8,10,["H8085"]],[10,13,["H3045"]],[13,14,["H859"]],[14,18,[]]]},{"k":12979,"v":[[0,2,["H347"]],[2,3,["H6030"]],[3,5,["H559"]]]},{"k":12980,"v":[[0,2,["H3863"]],[2,4,["H3708"]],[4,7,["H8254","H8254"]],[7,10,["H1942"]],[10,11,["H5375"]],[11,14,["H3976"]],[14,15,["H3162"]]]},{"k":12981,"v":[[0,1,["H3588"]],[1,2,["H6258"]],[2,6,["H3513"]],[6,9,["H4480","H2344"]],[9,12,["H3220"]],[12,13,["H5921","H3651"]],[13,15,["H1697"]],[15,18,["H3886"]]]},{"k":12982,"v":[[0,1,["H3588"]],[1,3,["H2671"]],[3,6,["H7706"]],[6,8,["H5978"]],[8,11,["H2534"]],[11,12,["H834"]],[12,14,["H8354"]],[14,16,["H7307"]],[16,18,["H1161"]],[18,20,["H433"]],[20,26,["H6186"]],[26,27,[]]]},{"k":12983,"v":[[0,4,["H6501"]],[4,5,["H5101"]],[5,9,["H1877"]],[9,10,["H518"]],[10,11,["H1600"]],[11,13,["H7794"]],[13,14,["H5921"]],[14,16,["H1098"]]]},{"k":12984,"v":[[0,5,["H8602"]],[5,7,["H398"]],[7,8,["H4480","H1097"]],[8,9,["H4417"]],[9,10,["H518"]],[10,12,["H3426"]],[12,14,["H2940"]],[14,17,["H7388"]],[17,20,["H2495"]]]},{"k":12985,"v":[[0,2,["H1992"]],[2,5,["H5315"]],[5,6,["H3985"]],[6,8,["H5060"]],[8,12,["H1741"]],[12,13,["H3899"]]]},{"k":12986,"v":[[0,2,["H4310"]],[2,4,["H5414"]],[4,5,["H935"]],[5,7,["H7596"]],[7,10,["H433"]],[10,12,["H5414"]],[12,19,["H8615"]]]},{"k":12987,"v":[[0,5,["H2974"]],[5,6,["H433"]],[6,8,["H1792"]],[8,14,["H5425"]],[14,16,["H3027"]],[16,20,["H1214"]]]},{"k":12988,"v":[[0,4,["H5750"]],[4,5,["H1961"]],[5,6,["H5165"]],[6,10,["H5539"]],[10,13,["H2427"]],[13,16,["H3808"]],[16,17,["H2550"]],[17,18,["H3588"]],[18,21,["H3808"]],[21,22,["H3582"]],[22,24,["H561"]],[24,28,["H6918"]]]},{"k":12989,"v":[[0,1,["H4100"]],[1,4,["H3581"]],[4,5,["H3588"]],[5,8,["H3176"]],[8,10,["H4100"]],[10,13,["H7093"]],[13,14,["H3588"]],[14,17,["H748"]],[17,19,["H5315"]]]},{"k":12990,"v":[[0,3,["H3581"]],[3,5,["H3581"]],[5,7,["H68"]],[7,11,["H1320"]],[11,13,["H5153"]]]},{"k":12991,"v":[[0,2,["H369"]],[2,4,["H5833"]],[4,9,["H8454"]],[9,10,["H5080"]],[10,12,["H4480"]],[12,13,[]]]},{"k":12992,"v":[[0,5,["H4523"]],[5,6,["H2617"]],[6,12,["H4480","H7453"]],[12,15,["H5800"]],[15,17,["H3374"]],[17,20,["H7706"]]]},{"k":12993,"v":[[0,2,["H251"]],[2,5,["H898"]],[5,6,["H3644"]],[6,8,["H5158"]],[8,12,["H650"]],[12,14,["H5158"]],[14,17,["H5674"]]]},{"k":12994,"v":[[0,3,["H6937"]],[3,6,["H4480"]],[6,8,["H7140"]],[8,10,["H5921"]],[10,12,["H7950"]],[12,14,["H5956"]]]},{"k":12995,"v":[[0,2,["H6256"]],[2,5,["H2215"]],[5,7,["H6789"]],[7,11,["H2527"]],[11,14,["H1846"]],[14,18,["H4480","H4725"]]]},{"k":12996,"v":[[0,2,["H734"]],[2,5,["H1870"]],[5,8,["H3943"]],[8,10,["H5927"]],[10,12,["H8414"]],[12,14,["H6"]]]},{"k":12997,"v":[[0,2,["H734"]],[2,4,["H8485"]],[4,5,["H5027"]],[5,7,["H1979"]],[7,9,["H7614"]],[9,10,["H6960"]],[10,11,["H3926"]],[11,12,[]]]},{"k":12998,"v":[[0,3,["H954"]],[3,4,["H3588"]],[4,7,["H982"]],[7,9,["H935"]],[9,10,["H5704"]],[10,13,["H2659"]]]},{"k":12999,"v":[[0,1,["H3588"]],[1,2,["H6258"]],[2,4,["H1961"]],[4,5,["H3808"]],[5,7,["H7200"]],[7,10,["H2866"]],[10,13,["H3372"]]]},{"k":13000,"v":[[0,1,["H3588"]],[1,3,["H559"]],[3,4,["H3051"]],[4,10,["H7809"]],[10,11,["H1157"]],[11,15,["H4480","H3581"]]]},{"k":13001,"v":[[0,2,["H4422"]],[2,7,["H4480","H3027","H6862"]],[7,9,["H6299"]],[9,13,["H4480","H3027"]],[13,16,["H6184"]]]},{"k":13002,"v":[[0,1,["H3384"]],[1,4,["H589"]],[4,8,["H2790"]],[8,13,["H995"]],[13,14,["H4100"]],[14,17,["H7686"]]]},{"k":13003,"v":[[0,1,["H4100"]],[1,2,["H4834"]],[2,4,["H3476"]],[4,5,["H561"]],[5,7,["H4100"]],[7,10,["H3198"]],[10,11,["H3198","H4480"]]]},{"k":13004,"v":[[0,3,["H2803"]],[3,5,["H3198"]],[5,6,["H4405"]],[6,9,["H561"]],[9,14,["H2976"]],[14,18,["H7307"]]]},{"k":13005,"v":[[0,1,["H637"]],[1,3,["H5307","H5921"]],[3,5,["H3490"]],[5,8,["H3738"]],[8,11,["H5921"]],[11,13,["H7453"]]]},{"k":13006,"v":[[0,1,["H6258"]],[1,4,["H2974"]],[4,5,["H6437"]],[5,12,["H5921","H6440"]],[12,14,["H518"]],[14,16,["H3576"]]]},{"k":13007,"v":[[0,1,["H7725"]],[1,4,["H4994"]],[4,7,["H408"]],[7,8,["H1961"]],[8,9,["H5766"]],[9,11,["H7725"]],[11,12,["H5750"]],[12,14,["H6664"]],[14,17,[]]]},{"k":13008,"v":[[0,2,["H3426"]],[2,3,["H5766"]],[3,6,["H3956"]],[6,7,["H3808"]],[7,9,["H2441"]],[9,10,["H995"]],[10,12,["H1942"]]]},{"k":13009,"v":[[0,3,["H3808"]],[3,6,["H6635"]],[6,8,["H582"]],[8,9,["H5921"]],[9,10,["H776"]],[10,14,["H3117"]],[14,18,["H3117"]],[18,21,["H7916"]]]},{"k":13010,"v":[[0,3,["H5650"]],[3,5,["H7602"]],[5,7,["H6738"]],[7,11,["H7916"]],[11,13,["H6960"]],[13,18,["H6467"]]]},{"k":13011,"v":[[0,1,["H3651"]],[1,6,["H5157"]],[6,7,["H3391"]],[7,9,["H7723"]],[9,11,["H5999"]],[11,12,["H3915"]],[12,14,["H4487"]],[14,16,[]]]},{"k":13012,"v":[[0,1,["H518"]],[1,4,["H7901"]],[4,6,["H559"]],[6,7,["H4970"]],[7,10,["H6965"]],[10,13,["H6153"]],[13,15,["H4059"]],[15,19,["H7646"]],[19,24,["H5076"]],[24,25,["H5704"]],[25,30,["H5399"]]]},{"k":13013,"v":[[0,2,["H1320"]],[2,4,["H3847"]],[4,6,["H7415"]],[6,8,["H1487"]],[8,10,["H6083"]],[10,12,["H5785"]],[12,14,["H7280"]],[14,17,["H3988"]]]},{"k":13014,"v":[[0,2,["H3117"]],[2,4,["H7043"]],[4,5,["H4480"]],[5,8,["H708"]],[8,11,["H3615"]],[11,12,["H657"]],[12,13,["H8615"]]]},{"k":13015,"v":[[0,2,["H2142"]],[2,3,["H3588"]],[3,5,["H2416"]],[5,7,["H7307"]],[7,9,["H5869"]],[9,11,["H3808"]],[11,12,["H7725"]],[12,13,["H7200"]],[13,14,["H2896"]]]},{"k":13016,"v":[[0,2,["H5869"]],[2,7,["H7210"]],[7,10,["H7789"]],[10,12,["H3808"]],[12,15,["H5869"]],[15,22,["H369"]]]},{"k":13017,"v":[[0,3,["H6051"]],[3,5,["H3615"]],[5,8,["H1980"]],[8,9,["H3651"]],[9,13,["H3381"]],[13,16,["H7585"]],[16,19,["H5927"]],[19,20,["H3808"]],[20,21,[]]]},{"k":13018,"v":[[0,3,["H7725"]],[3,4,["H3808"]],[4,5,["H5750"]],[5,8,["H1004"]],[8,9,["H3808"]],[9,12,["H4725"]],[12,13,["H5234"]],[13,16,["H5750"]]]},{"k":13019,"v":[[0,1,["H1571"]],[1,2,["H589"]],[2,4,["H3808"]],[4,5,["H2820"]],[5,7,["H6310"]],[7,10,["H1696"]],[10,13,["H6862"]],[13,16,["H7307"]],[16,19,["H7878"]],[19,22,["H4751"]],[22,25,["H5315"]]]},{"k":13020,"v":[[0,2,["H589"]],[2,4,["H3220"]],[4,5,["H518"]],[5,7,["H8577"]],[7,8,["H3588"]],[8,10,["H7760"]],[10,12,["H4929"]],[12,13,["H5921"]],[13,14,[]]]},{"k":13021,"v":[[0,1,["H3588"]],[1,3,["H559"]],[3,5,["H6210"]],[5,7,["H5162"]],[7,10,["H4904"]],[10,12,["H5375"]],[12,14,["H7879"]]]},{"k":13022,"v":[[0,3,["H2865"]],[3,6,["H2472"]],[6,8,["H1204"]],[8,11,["H4480","H2384"]]]},{"k":13023,"v":[[0,4,["H5315"]],[4,5,["H977"]],[5,6,["H4267"]],[6,8,["H4194"]],[8,12,["H4480","H6106"]]]},{"k":13024,"v":[[0,2,["H3988"]],[2,6,["H3808"]],[6,7,["H2421"]],[7,8,["H5769"]],[8,11,["H2308","H4480"]],[11,12,["H3588"]],[12,14,["H3117"]],[14,16,["H1892"]]]},{"k":13025,"v":[[0,1,["H4100"]],[1,3,["H582"]],[3,4,["H3588"]],[4,7,["H1431"]],[7,10,["H3588"]],[10,13,["H7896"]],[13,15,["H3820"]],[15,16,["H413"]],[16,17,[]]]},{"k":13026,"v":[[0,5,["H6485"]],[5,8,["H1242"]],[8,10,["H974"]],[10,13,["H7281"]]]},{"k":13027,"v":[[0,2,["H4100"]],[2,5,["H3808"]],[5,6,["H8159"]],[6,7,["H4480"]],[7,9,["H3808"]],[9,12,["H7503"]],[12,13,["H5704"]],[13,16,["H1104"]],[16,18,["H7536"]]]},{"k":13028,"v":[[0,3,["H2398"]],[3,4,["H4100"]],[4,7,["H6466"]],[7,12,["H5341"]],[12,14,["H120"]],[14,15,["H4100"]],[15,18,["H7760"]],[18,22,["H4645"]],[22,28,["H1861"]],[28,30,["H4853"]],[30,31,["H5921"]],[31,32,[]]]},{"k":13029,"v":[[0,2,["H4100"]],[2,5,["H3808"]],[5,6,["H5375"]],[6,8,["H6588"]],[8,11,["H5674","(H853)"]],[11,13,["H5771"]],[13,14,["H3588"]],[14,15,["H6258"]],[15,18,["H7901"]],[18,21,["H6083"]],[21,29,["H7836"]],[29,33,["H369"]],[33,34,[]]]},{"k":13030,"v":[[0,2,["H6030"]],[2,3,["H1085"]],[3,5,["H7747"]],[5,7,["H559"]]]},{"k":13031,"v":[[0,2,["H5704","H575"]],[2,5,["H4448"]],[5,6,["H428"]],[6,13,["H561"]],[13,16,["H6310"]],[16,20,["H3524"]],[20,21,["H7307"]]]},{"k":13032,"v":[[0,2,["H410"]],[2,3,["H5791"]],[3,4,["H4941"]],[4,5,["H518"]],[5,8,["H7706"]],[8,9,["H5791"]],[9,10,["H6664"]]]},{"k":13033,"v":[[0,1,["H518"]],[1,3,["H1121"]],[3,5,["H2398"]],[5,13,["H7971"]],[13,14,["H3027"]],[14,16,["H6588"]]]},{"k":13034,"v":[[0,1,["H518"]],[1,2,["H859"]],[2,7,["H7836","H413","H410"]],[7,11,["H2603"]],[11,12,["H413"]],[12,14,["H7706"]]]},{"k":13035,"v":[[0,1,["H518"]],[1,2,["H859"]],[2,4,["H2134"]],[4,6,["H3477"]],[6,7,["H3588"]],[7,8,["H6258"]],[8,11,["H5782"]],[11,12,["H5921"]],[12,17,["H5116"]],[17,20,["H6664"]],[20,21,["H7999"]]]},{"k":13036,"v":[[0,3,["H7225"]],[3,4,["H1961"]],[4,5,["H4705"]],[5,9,["H319"]],[9,11,["H3966"]],[11,12,["H7685"]]]},{"k":13037,"v":[[0,1,["H3588"]],[1,2,["H7592"]],[2,5,["H4994"]],[5,8,["H7223"]],[8,9,["H1755"]],[9,11,["H3559"]],[11,15,["H2714"]],[15,18,["H1"]]]},{"k":13038,"v":[[0,1,["H3588"]],[1,2,["H587"]],[2,6,["H8543"]],[6,8,["H3045"]],[8,9,["H3808"]],[9,10,["H3588"]],[10,12,["H3117"]],[12,13,["H5921"]],[13,14,["H776"]],[14,17,["H6738"]]]},{"k":13039,"v":[[0,2,["H3808"]],[2,3,["H1992"]],[3,4,["H3384"]],[4,7,["H559"]],[7,10,["H3318"]],[10,11,["H4405"]],[11,15,["H4480","H3820"]]]},{"k":13040,"v":[[0,3,["H1573"]],[3,5,["H1342"]],[5,6,["H3808"]],[6,7,["H1207"]],[7,10,["H260"]],[10,11,["H7685"]],[11,12,["H1097"]],[12,13,["H4325"]]]},{"k":13041,"v":[[0,4,["H5750"]],[4,7,["H3"]],[7,9,["H3808"]],[9,11,["H6998"]],[11,13,["H3001"]],[13,14,["H6440"]],[14,15,["H3605"]],[15,17,["H2682"]]]},{"k":13042,"v":[[0,1,["H3651"]],[1,4,["H734"]],[4,6,["H3605"]],[6,8,["H7911"]],[8,9,["H410"]],[9,12,["H2611"]],[12,13,["H8615"]],[13,15,["H6"]]]},{"k":13043,"v":[[0,1,["H834"]],[1,2,["H3689"]],[2,6,["H6990"]],[6,9,["H4009"]],[9,13,["H5908"]],[13,14,["H1004"]]]},{"k":13044,"v":[[0,3,["H8172"]],[3,4,["H5921"]],[4,6,["H1004"]],[6,10,["H3808"]],[10,11,["H5975"]],[11,16,["H2388"]],[16,20,["H3808"]],[20,21,["H6965"]]]},{"k":13045,"v":[[0,1,["H1931"]],[1,3,["H7373"]],[3,4,["H6440"]],[4,6,["H8121"]],[6,9,["H3127"]],[9,11,["H3318"]],[11,12,["H5921"]],[12,14,["H1593"]]]},{"k":13046,"v":[[0,2,["H8328"]],[2,4,["H5440"]],[4,5,["H5921"]],[5,7,["H1530"]],[7,9,["H2372"]],[9,11,["H1004"]],[11,13,["H68"]]]},{"k":13047,"v":[[0,1,["H518"]],[1,3,["H1104"]],[3,7,["H4480","H4725"]],[7,11,["H3584"]],[11,16,["H3808"]],[16,17,["H7200"]],[17,18,[]]]},{"k":13048,"v":[[0,1,["H2005"]],[1,2,["H1931"]],[2,5,["H4885"]],[5,8,["H1870"]],[8,13,["H4480","H6083"]],[13,15,["H312"]],[15,16,["H6779"]]]},{"k":13049,"v":[[0,1,["H2005"]],[1,2,["H410"]],[2,4,["H3808"]],[4,6,["H3988"]],[6,8,["H8535"]],[8,10,["H3808"]],[10,13,["H2388","H3027"]],[13,16,["H7489"]]]},{"k":13050,"v":[[0,1,["H5704"]],[1,3,["H4390"]],[3,5,["H6310"]],[5,7,["H7814"]],[7,10,["H8193"]],[10,12,["H8643"]]]},{"k":13051,"v":[[0,3,["H8130"]],[3,7,["H3847"]],[7,9,["H1322"]],[9,13,["H168"]],[13,16,["H7563"]],[16,20,["H369"]]]},{"k":13052,"v":[[0,2,["H347"]],[2,3,["H6030"]],[3,5,["H559"]]]},{"k":13053,"v":[[0,2,["H3045"]],[2,5,["H3588","H3651"]],[5,8,["H551"]],[8,10,["H4100"]],[10,12,["H582"]],[12,14,["H6663"]],[14,15,["H5973"]],[15,16,["H410"]]]},{"k":13054,"v":[[0,1,["H518"]],[1,3,["H2654"]],[3,4,["H7378"]],[4,5,["H5973"]],[5,8,["H3808"]],[8,9,["H6030"]],[9,11,["H259"]],[11,12,["H4480"]],[12,14,["H505"]]]},{"k":13055,"v":[[0,3,["H2450"]],[3,5,["H3824"]],[5,7,["H533"]],[7,9,["H3581"]],[9,10,["H4310"]],[10,12,["H7185"]],[12,14,["H413"]],[14,18,["H7999"]]]},{"k":13056,"v":[[0,2,["H6275"]],[2,4,["H2022"]],[4,7,["H3045"]],[7,8,["H3808"]],[8,9,["H834"]],[9,10,["H2015"]],[10,14,["H639"]]]},{"k":13057,"v":[[0,2,["H7264"]],[2,4,["H776"]],[4,8,["H4480","H4725"]],[8,11,["H5982"]],[11,13,["H6426"]]]},{"k":13058,"v":[[0,2,["H559"]],[2,4,["H2775"]],[4,7,["H2224"]],[7,8,["H3808"]],[8,11,["H2856"]],[11,13,["H3556"]]]},{"k":13059,"v":[[0,2,["H905"]],[2,4,["H5186"]],[4,6,["H8064"]],[6,8,["H1869"]],[8,9,["H5921"]],[9,11,["H1116"]],[11,14,["H3220"]]]},{"k":13060,"v":[[0,2,["H6213"]],[2,3,["H5906"]],[3,4,["H3685"]],[4,6,["H3598"]],[6,9,["H2315"]],[9,12,["H8486"]]]},{"k":13061,"v":[[0,2,["H6213"]],[2,4,["H1419"]],[4,5,["H5704","H369"]],[5,7,["H2714"]],[7,10,["H6381"]],[10,11,["H5704","H369"]],[11,12,["H4557"]]]},{"k":13062,"v":[[0,1,["H2005"]],[1,3,["H5674"]],[3,4,["H5921"]],[4,8,["H7200"]],[8,10,["H3808"]],[10,13,["H2498"]],[13,17,["H995"]],[17,19,["H3808"]]]},{"k":13063,"v":[[0,1,["H2005"]],[1,4,["H2862"]],[4,5,["H4310"]],[5,7,["H7725"]],[7,9,["H4310"]],[9,11,["H559"]],[11,12,["H413"]],[12,14,["H4100"]],[14,15,["H6213"]],[15,16,[]]]},{"k":13064,"v":[[0,2,["H433"]],[2,4,["H3808"]],[4,5,["H7725"]],[5,7,["H639"]],[7,9,["H7295"]],[9,10,["H5826"]],[10,12,["H7817"]],[12,13,["H8478"]],[13,14,[]]]},{"k":13065,"v":[[0,3,["H637","H3588"]],[3,5,["H595"]],[5,6,["H6030"]],[6,10,["H977"]],[10,12,["H1697"]],[12,15,["H5973"]],[15,16,[]]]},{"k":13066,"v":[[0,1,["H834"]],[1,2,["H518"]],[2,5,["H6663"]],[5,9,["H3808"]],[9,10,["H6030"]],[10,15,["H2603"]],[15,18,["H8199"]]]},{"k":13067,"v":[[0,1,["H518"]],[1,4,["H7121"]],[4,8,["H6030"]],[8,13,["H3808"]],[13,14,["H539"]],[14,15,["H3588"]],[15,18,["H238"]],[18,21,["H6963"]]]},{"k":13068,"v":[[0,1,["H834"]],[1,3,["H7779"]],[3,7,["H8183"]],[7,9,["H7235"]],[9,11,["H6482"]],[11,13,["H2600"]]]},{"k":13069,"v":[[0,3,["H3808"]],[3,4,["H5414"]],[4,7,["H7725"]],[7,9,["H7307"]],[9,10,["H3588"]],[10,11,["H7646"]],[11,14,["H4472"]]]},{"k":13070,"v":[[0,1,["H518"]],[1,5,["H3581"]],[5,6,["H2009"]],[6,9,["H533"]],[9,11,["H518"]],[11,13,["H4941"]],[13,14,["H4310"]],[14,19,["H3259"]],[19,21,[]]]},{"k":13071,"v":[[0,1,["H518"]],[1,3,["H6663"]],[3,7,["H6310"]],[7,9,["H7561"]],[9,14,["H589"]],[14,16,["H8535"]],[16,22,["H6140"]]]},{"k":13072,"v":[[0,2,["H589"]],[2,4,["H8535"]],[4,8,["H3808"]],[8,9,["H3045"]],[9,11,["H5315"]],[11,14,["H3988"]],[14,16,["H2416"]]]},{"k":13073,"v":[[0,1,["H1931"]],[1,3,["H259"]],[3,5,["H5921","H3651"]],[5,7,["H559"]],[7,9,["H1931"]],[9,10,["H3615"]],[10,12,["H8535"]],[12,15,["H7563"]]]},{"k":13074,"v":[[0,1,["H518"]],[1,3,["H7752"]],[3,4,["H4191"]],[4,5,["H6597"]],[5,8,["H3932"]],[8,11,["H4531"]],[11,14,["H5355"]]]},{"k":13075,"v":[[0,2,["H776"]],[2,4,["H5414"]],[4,7,["H3027"]],[7,10,["H7563"]],[10,12,["H3680"]],[12,14,["H6440"]],[14,17,["H8199"]],[17,19,["H518"]],[19,20,["H3808"]],[20,21,["H645"]],[21,23,["H4310"]],[23,25,["H1931"]]]},{"k":13076,"v":[[0,3,["H3117"]],[3,5,["H7043"]],[5,6,["H4480"]],[6,8,["H7323"]],[8,11,["H1272"]],[11,13,["H7200"]],[13,14,["H3808"]],[14,15,["H2896"]]]},{"k":13077,"v":[[0,4,["H2498"]],[4,5,["H5973"]],[5,7,["H16"]],[7,8,["H591"]],[8,11,["H5404"]],[11,13,["H2907"]],[13,14,["H5921"]],[14,16,["H400"]]]},{"k":13078,"v":[[0,1,["H518"]],[1,3,["H559"]],[3,6,["H7911"]],[6,8,["H7879"]],[8,12,["H5800"]],[12,14,["H6440"]],[14,16,["H1082"]],[16,17,[]]]},{"k":13079,"v":[[0,3,["H3025"]],[3,5,["H3605"]],[5,7,["H6094"]],[7,9,["H3045"]],[9,10,["H3588"]],[10,13,["H3808"]],[13,16,["H5352"]]]},{"k":13080,"v":[[0,2,["H595"]],[2,4,["H7561"]],[4,5,["H4100"]],[5,6,["H2088"]],[6,7,["H3021"]],[7,10,["H1892"]]]},{"k":13081,"v":[[0,1,["H518"]],[1,4,["H7364"]],[4,6,["H7950"]],[6,7,["H4325"]],[7,11,["H3709"]],[11,12,["H1253"]],[12,14,["H2141"]]]},{"k":13082,"v":[[0,1,["H227"]],[1,4,["H2881"]],[4,8,["H7845"]],[8,12,["H8008"]],[12,14,["H8581"]],[14,15,[]]]},{"k":13083,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,6,["H376"]],[6,8,["H3644"]],[8,13,["H6030"]],[13,18,["H935"]],[18,19,["H3162"]],[19,21,["H4941"]]]},{"k":13084,"v":[[0,1,["H3808"]],[1,3,["H3426"]],[3,5,["H3198"]],[5,6,["H996"]],[6,10,["H7896"]],[10,12,["H3027"]],[12,13,["H5921"]],[13,15,["H8147"]]]},{"k":13085,"v":[[0,6,["H5493","H7626"]],[6,7,["H4480","H5921"]],[7,11,["H408"]],[11,13,["H367"]],[13,14,["H1204"]],[14,15,[]]]},{"k":13086,"v":[[0,4,["H1696"]],[4,6,["H3808"]],[6,7,["H3372"]],[7,9,["H3588"]],[9,12,["H3808"]],[12,13,["H3651"]],[13,14,["H5978"]],[14,15,[]]]},{"k":13087,"v":[[0,2,["H5315"]],[2,4,["H5354"]],[4,7,["H2416"]],[7,10,["H5800"]],[10,12,["H7879"]],[12,13,["H5921"]],[13,17,["H1696"]],[17,20,["H4751"]],[20,23,["H5315"]]]},{"k":13088,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H433"]],[5,7,["H408"]],[7,8,["H7561"]],[8,10,["H3045"]],[10,12,["H5921","H4100"]],[12,14,["H7378"]],[14,16,[]]]},{"k":13089,"v":[[0,3,["H2896"]],[3,6,["H3588"]],[6,9,["H6231"]],[9,10,["H3588"]],[10,13,["H3988"]],[13,15,["H3018"]],[15,18,["H3709"]],[18,20,["H3313"]],[20,21,["H5921"]],[21,23,["H6098"]],[23,26,["H7563"]]]},{"k":13090,"v":[[0,3,["H5869"]],[3,5,["H1320"]],[5,6,["H518"]],[6,7,["H7200"]],[7,10,["H582"]],[10,11,["H7200"]]]},{"k":13091,"v":[[0,3,["H3117"]],[3,6,["H3117"]],[6,8,["H582"]],[8,11,["H8141"]],[11,13,["H1397"]],[13,14,["H3117"]]]},{"k":13092,"v":[[0,1,["H3588"]],[1,3,["H1245"]],[3,6,["H5771"]],[6,8,["H1875"]],[8,11,["H2403"]]]},{"k":13093,"v":[[0,2,["H1847"]],[2,3,["H3588"]],[3,6,["H3808"]],[6,7,["H7561"]],[7,11,["H369"]],[11,14,["H5337"]],[14,18,["H4480","H3027"]]]},{"k":13094,"v":[[0,2,["H3027"]],[2,4,["H6087"]],[4,7,["H6213"]],[7,9,["H3162"]],[9,11,["H5439"]],[11,15,["H1104"]],[15,16,[]]]},{"k":13095,"v":[[0,1,["H2142"]],[1,4,["H4994"]],[4,5,["H3588"]],[5,8,["H6213"]],[8,12,["H2563"]],[12,20,["H7725","H413","H6083"]]]},{"k":13096,"v":[[0,3,["H3808"]],[3,6,["H5413"]],[6,8,["H2461"]],[8,10,["H7087"]],[10,13,["H1385"]]]},{"k":13097,"v":[[0,3,["H3847"]],[3,6,["H5785"]],[6,8,["H1320"]],[8,11,["H7753"]],[11,14,["H6106"]],[14,16,["H1517"]]]},{"k":13098,"v":[[0,3,["H6213","H5978"]],[3,5,["H2416"]],[5,7,["H2617"]],[7,10,["H6486"]],[10,12,["H8104"]],[12,14,["H7307"]]]},{"k":13099,"v":[[0,2,["H428"]],[2,6,["H6845"]],[6,9,["H3824"]],[9,11,["H3045"]],[11,12,["H3588"]],[12,13,["H2063"]],[13,15,["H5973"]],[15,16,[]]]},{"k":13100,"v":[[0,1,["H518"]],[1,3,["H2398"]],[3,6,["H8104"]],[6,11,["H3808"]],[11,12,["H5352"]],[12,16,["H4480","H5771"]]]},{"k":13101,"v":[[0,1,["H518"]],[1,4,["H7561"]],[4,5,["H480"]],[5,12,["H6663"]],[12,16,["H3808"]],[16,18,["H5375"]],[18,20,["H7218"]],[20,23,["H7649"]],[23,25,["H7036"]],[25,27,["H7200"]],[27,30,["H6040"]]]},{"k":13102,"v":[[0,3,["H1342"]],[3,5,["H6679"]],[5,10,["H7826"]],[10,12,["H7725"]],[12,16,["H6381"]],[16,18,[]]]},{"k":13103,"v":[[0,2,["H2318"]],[2,4,["H5707"]],[4,5,["H5048"]],[5,8,["H7235"]],[8,10,["H3708"]],[10,11,["H5973"]],[11,13,["H2487"]],[13,15,["H6635"]],[15,17,["H5973"]],[17,18,[]]]},{"k":13104,"v":[[0,1,["H4100"]],[1,7,["H3318"]],[7,11,["H4480","H7358"]],[11,19,["H1478"]],[19,21,["H3808"]],[21,22,["H5869"]],[22,24,["H7200"]],[24,25,[]]]},{"k":13105,"v":[[0,4,["H1961"]],[4,6,["H834"]],[6,9,["H3808"]],[9,10,["H1961"]],[10,15,["H2986"]],[15,18,["H4480","H990"]],[18,21,["H6913"]]]},{"k":13106,"v":[[0,2,["H3808"]],[2,4,["H3117"]],[4,5,["H4592"]],[5,6,["H2308"]],[6,11,["H7896","H4480"]],[11,16,["H1082"]],[16,18,["H4592"]]]},{"k":13107,"v":[[0,1,["H2962"]],[1,3,["H1980"]],[3,7,["H3808"]],[7,8,["H7725"]],[8,10,["H413"]],[10,12,["H776"]],[12,14,["H2822"]],[14,19,["H6757"]]]},{"k":13108,"v":[[0,2,["H776"]],[2,4,["H5890"]],[4,5,["H3644"]],[5,6,["H652"]],[6,13,["H6757"]],[13,14,["H3808"]],[14,16,["H5468"]],[16,20,["H3313"]],[20,22,["H3644"]],[22,23,["H652"]]]},{"k":13109,"v":[[0,2,["H6030"]],[2,3,["H6691"]],[3,5,["H5284"]],[5,7,["H559"]]]},{"k":13110,"v":[[0,2,["H3808"]],[2,4,["H7230"]],[4,6,["H1697"]],[6,8,["H6030"]],[8,10,["H518"]],[10,12,["H376"]],[12,15,["H8193"]],[15,17,["H6663"]]]},{"k":13111,"v":[[0,3,["H907"]],[3,5,["H4962"]],[5,8,["H2790"]],[8,12,["H3932"]],[12,14,["H369"]],[14,18,["H3637"]]]},{"k":13112,"v":[[0,4,["H559"]],[4,6,["H3948"]],[6,8,["H2134"]],[8,11,["H1961"]],[11,12,["H1249"]],[12,15,["H5869"]]]},{"k":13113,"v":[[0,1,["H199"]],[1,3,["H4310"]],[3,4,["H433"]],[4,5,["H5414"]],[5,6,["H1696"]],[6,8,["H6605"]],[8,10,["H8193"]],[10,11,["H5973"]],[11,12,[]]]},{"k":13114,"v":[[0,5,["H5046"]],[5,8,["H8587"]],[8,10,["H2451"]],[10,11,["H3588"]],[11,14,["H3718"]],[14,18,["H8454"]],[18,19,["H3045"]],[19,21,["H3588"]],[21,22,["H433"]],[22,23,["H5382"]],[23,29,["H4480","H5771"]],[29,30,[]]]},{"k":13115,"v":[[0,4,["H2714"]],[4,6,["H4672"]],[6,7,["H433"]],[7,11,["H4672"]],[11,13,["H7706"]],[13,14,["H5704"]],[14,15,["H8503"]]]},{"k":13116,"v":[[0,4,["H1363"]],[4,6,["H8064"]],[6,7,["H4100"]],[7,10,["H6466"]],[10,11,["H6013"]],[11,13,["H4480","H7585"]],[13,14,["H4100"]],[14,17,["H3045"]]]},{"k":13117,"v":[[0,2,["H4055"]],[2,5,["H752"]],[5,8,["H4480","H776"]],[8,10,["H7342"]],[10,11,["H4480"]],[11,13,["H3220"]]]},{"k":13118,"v":[[0,1,["H518"]],[1,4,["H2498"]],[4,7,["H5462"]],[7,10,["H6950"]],[10,12,["H4310"]],[12,14,["H7725"]],[14,15,[]]]},{"k":13119,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,3,["H3045"]],[3,4,["H7723"]],[4,5,["H4962"]],[5,7,["H7200"]],[7,8,["H205"]],[8,12,["H3808"]],[12,14,["H995"]],[14,15,[]]]},{"k":13120,"v":[[0,2,["H5014"]],[2,3,["H376"]],[3,6,["H3823"]],[6,8,["H120"]],[8,10,["H3205"]],[10,14,["H6501"]],[14,15,["H5895"]]]},{"k":13121,"v":[[0,1,["H518"]],[1,2,["H859"]],[2,3,["H3559"]],[3,5,["H3820"]],[5,8,["H6566"]],[8,10,["H3709"]],[10,11,["H413"]],[11,12,[]]]},{"k":13122,"v":[[0,1,["H518"]],[1,2,["H205"]],[2,6,["H3027"]],[6,10,["H7368"]],[10,13,["H408"]],[13,14,["H5766"]],[14,15,["H7931"]],[15,18,["H168"]]]},{"k":13123,"v":[[0,1,["H3588"]],[1,2,["H227"]],[2,6,["H5375"]],[6,8,["H6440"]],[8,10,["H4480","H3971"]],[10,14,["H1961"]],[14,15,["H3332"]],[15,18,["H3808"]],[18,19,["H3372"]]]},{"k":13124,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H7911"]],[4,6,["H5999"]],[6,8,["H2142"]],[8,11,["H4325"]],[11,14,["H5674"]]]},{"k":13125,"v":[[0,3,["H2465"]],[3,6,["H6965"]],[6,9,["H4480","H6672"]],[9,13,["H5774"]],[13,16,["H1961"]],[16,19,["H1242"]]]},{"k":13126,"v":[[0,5,["H982"]],[5,6,["H3588"]],[6,7,["H3426"]],[7,9,["H8615"]],[9,13,["H2658"]],[13,21,["H7901"]],[21,23,["H983"]]]},{"k":13127,"v":[[0,5,["H7257"]],[5,7,["H369"]],[7,11,["H2729"]],[11,13,["H7227"]],[13,16,["H2470"]],[16,17,["H6440"]],[17,18,[]]]},{"k":13128,"v":[[0,3,["H5869"]],[3,6,["H7563"]],[6,8,["H3615"]],[8,13,["H4498","H6","H4480"]],[13,16,["H8615"]],[16,22,["H4646"]],[22,25,["H5315"]]]},{"k":13129,"v":[[0,2,["H347"]],[2,3,["H6030"]],[3,5,["H559"]]]},{"k":13130,"v":[[0,2,["H551"]],[2,3,["H3588"]],[3,4,["H859"]],[4,7,["H5971"]],[7,9,["H2451"]],[9,11,["H4191"]],[11,12,["H5973"]],[12,13,[]]]},{"k":13131,"v":[[0,1,["H1571"]],[1,4,["H3824"]],[4,8,["H3644"]],[8,9,["H595"]],[9,11,["H3808"]],[11,12,["H5307"]],[12,13,["H4480"]],[13,15,["H854"]],[15,16,["H4310"]],[16,18,["H369"]],[18,22,["H3644","H428"]]]},{"k":13132,"v":[[0,2,["H1961"]],[2,5,["H7814"]],[5,8,["H7453"]],[8,10,["H7121"]],[10,12,["H433"]],[12,15,["H6030"]],[15,18,["H6662"]],[18,19,["H8549"]],[19,24,["H7814"]]]},{"k":13133,"v":[[0,4,["H3559"]],[4,6,["H4571"]],[6,9,["H7272"]],[9,13,["H3940"]],[13,14,["H937"]],[14,17,["H6248"]],[17,23,["H7600"]]]},{"k":13134,"v":[[0,2,["H168"]],[2,4,["H7703"]],[4,5,["H7951"]],[5,9,["H7264"]],[9,10,["H410"]],[10,12,["H987"]],[12,14,["H834"]],[14,15,["H3027"]],[15,16,["H433"]],[16,17,["H935"]],[17,18,[]]]},{"k":13135,"v":[[0,1,["H199"]],[1,2,["H7592"]],[2,3,["H4994"]],[3,5,["H929"]],[5,9,["H3384"]],[9,13,["H5775"]],[13,16,["H8064"]],[16,20,["H5046"]],[20,21,[]]]},{"k":13136,"v":[[0,1,["H176"]],[1,2,["H7878"]],[2,5,["H776"]],[5,9,["H3384"]],[9,13,["H1709"]],[13,16,["H3220"]],[16,18,["H5608"]],[18,20,[]]]},{"k":13137,"v":[[0,1,["H4310"]],[1,2,["H3045"]],[2,3,["H3808"]],[3,5,["H3605"]],[5,6,["H428"]],[6,7,["H3588"]],[7,9,["H3027"]],[9,12,["H3068"]],[12,14,["H6213"]],[14,15,["H2063"]]]},{"k":13138,"v":[[0,2,["H834"]],[2,3,["H3027"]],[3,6,["H5315"]],[6,8,["H3605"]],[8,10,["H2416"]],[10,13,["H7307"]],[13,15,["H3605"]],[15,16,["H1320","H376"]]]},{"k":13139,"v":[[0,2,["H3808"]],[2,4,["H241"]],[4,5,["H974"]],[5,6,["H4405"]],[6,9,["H2441"]],[9,10,["H2938"]],[10,12,["H400"]]]},{"k":13140,"v":[[0,3,["H3453"]],[3,5,["H2451"]],[5,8,["H753"]],[8,10,["H3117"]],[10,11,["H8394"]]]},{"k":13141,"v":[[0,1,["H5973"]],[1,4,["H2451"]],[4,6,["H1369"]],[6,9,["H6098"]],[9,11,["H8394"]]]},{"k":13142,"v":[[0,1,["H2005"]],[1,4,["H2040"]],[4,7,["H3808"]],[7,10,["H1129"]],[10,13,["H5462","H5921"]],[13,15,["H376"]],[15,21,["H6605","H3808"]]]},{"k":13143,"v":[[0,1,["H2005"]],[1,3,["H6113"]],[3,5,["H4325"]],[5,9,["H3001"]],[9,14,["H7971"]],[14,17,["H2015"]],[17,19,["H776"]]]},{"k":13144,"v":[[0,1,["H5973"]],[1,4,["H5797"]],[4,6,["H8454"]],[6,8,["H7683"]],[8,11,["H7686"]],[11,13,[]]]},{"k":13145,"v":[[0,2,["H1980"]],[2,3,["H3289"]],[3,5,["H7758"]],[5,9,["H8199"]],[9,10,["H1984"]]]},{"k":13146,"v":[[0,2,["H6605"]],[2,4,["H4148"]],[4,6,["H4428"]],[6,8,["H631"]],[8,10,["H4975"]],[10,13,["H232"]]]},{"k":13147,"v":[[0,2,["H1980"]],[2,3,["H3548"]],[3,5,["H7758"]],[5,7,["H5557"]],[7,9,["H386"]]]},{"k":13148,"v":[[0,3,["H5493"]],[3,5,["H8193"]],[5,8,["H539"]],[8,11,["H3947"]],[11,13,["H2940"]],[13,16,["H2205"]]]},{"k":13149,"v":[[0,2,["H8210"]],[2,3,["H937"]],[3,4,["H5921"]],[4,5,["H5081"]],[5,7,["H7503"]],[7,9,["H4206"]],[9,12,["H650"]]]},{"k":13150,"v":[[0,2,["H1540"]],[2,4,["H6013"]],[4,6,["H4480"]],[6,7,["H2822"]],[7,10,["H3318"]],[10,12,["H216"]],[12,16,["H6757"]]]},{"k":13151,"v":[[0,2,["H7679"]],[2,4,["H1471"]],[4,6,["H6"]],[6,9,["H7849"]],[9,11,["H1471"]],[11,13,["H5148"]],[13,15,[]]]},{"k":13152,"v":[[0,3,["H5493"]],[3,5,["H3820"]],[5,8,["H7218"]],[8,11,["H5971"]],[11,14,["H776"]],[14,19,["H8582"]],[19,22,["H8414"]],[22,26,["H3808"]],[26,27,["H1870"]]]},{"k":13153,"v":[[0,2,["H4959"]],[2,5,["H2822"]],[5,6,["H3808"]],[6,7,["H216"]],[7,13,["H8582"]],[13,16,["H7910"]],[16,17,[]]]},{"k":13154,"v":[[0,1,["H2005"]],[1,3,["H5869"]],[3,5,["H7200"]],[5,6,["H3605"]],[6,9,["H241"]],[9,11,["H8085"]],[11,13,["H995"]],[13,14,[]]]},{"k":13155,"v":[[0,3,["H1847"]],[3,7,["H589"]],[7,8,["H3045"]],[8,9,["H1571"]],[9,10,["H595"]],[10,12,["H3808"]],[12,13,["H5307"]],[13,14,["H4480"]],[14,15,[]]]},{"k":13156,"v":[[0,1,["H199"]],[1,2,["H589"]],[2,4,["H1696"]],[4,5,["H413"]],[5,7,["H7706"]],[7,10,["H2654"]],[10,12,["H3198"]],[12,13,["H413"]],[13,14,["H410"]]]},{"k":13157,"v":[[0,1,["H199"]],[1,2,["H859"]],[2,4,["H2950"]],[4,6,["H8267"]],[6,9,["H3605"]],[9,10,["H7495"]],[10,13,["H457"]]]},{"k":13158,"v":[[0,2,["H4310"]],[2,4,["H5414"]],[4,8,["H2790","H2790"]],[8,12,["H1961"]],[12,14,["H2451"]]]},{"k":13159,"v":[[0,1,["H8085"]],[1,2,["H4994"]],[2,4,["H8433"]],[4,6,["H7181"]],[6,9,["H7379"]],[9,12,["H8193"]]]},{"k":13160,"v":[[0,3,["H1696"]],[3,4,["H5766"]],[4,6,["H410"]],[6,8,["H1696"]],[8,9,["H7423"]],[9,11,[]]]},{"k":13161,"v":[[0,3,["H5375"]],[3,5,["H6440"]],[5,8,["H7378"]],[8,10,["H410"]]]},{"k":13162,"v":[[0,3,["H2896"]],[3,4,["H3588"]],[4,9,["H2713","(H853)"]],[9,10,["H518"]],[10,13,["H582"]],[13,14,["H2048"]],[14,19,["H2048"]],[19,20,[]]]},{"k":13163,"v":[[0,4,["H3198","H3198"]],[4,6,["H518"]],[6,9,["H5643"]],[9,10,["H5375"]],[10,11,["H6440"]]]},{"k":13164,"v":[[0,2,["H3808"]],[2,4,["H7613"]],[4,7,["H1204"]],[7,10,["H6343"]],[10,11,["H5307"]],[11,12,["H5921"]],[12,13,[]]]},{"k":13165,"v":[[0,2,["H2146"]],[2,4,["H4912"]],[4,6,["H665"]],[6,8,["H1354"]],[8,10,["H1354"]],[10,12,["H2563"]]]},{"k":13166,"v":[[0,3,["H2790"]],[3,6,["H4480"]],[6,8,["H589"]],[8,10,["H1696"]],[10,13,["H5674"]],[13,14,["H5921"]],[14,16,["H4100"]],[16,17,[]]]},{"k":13167,"v":[[0,1,["H5921","H4100"]],[1,4,["H5375"]],[4,6,["H1320"]],[6,9,["H8127"]],[9,11,["H7760"]],[11,13,["H5315"]],[13,16,["H3709"]]]},{"k":13168,"v":[[0,1,["H2005"]],[1,3,["H6991"]],[3,8,["H3176"]],[8,11,["H389"]],[11,14,["H3198"]],[14,17,["H1870"]],[17,18,["H413","H6440"]],[18,19,[]]]},{"k":13169,"v":[[0,1,["H1931"]],[1,2,["H1571"]],[2,6,["H3444"]],[6,7,["H3588"]],[7,9,["H2611"]],[9,11,["H3808"]],[11,12,["H935"]],[12,13,["H6440"]],[13,14,[]]]},{"k":13170,"v":[[0,2,["H8085","H8085"]],[2,4,["H4405"]],[4,7,["H262"]],[7,10,["H241"]]]},{"k":13171,"v":[[0,1,["H2009"]],[1,2,["H4994"]],[2,5,["H6186"]],[5,7,["H4941"]],[7,9,["H3045"]],[9,10,["H3588"]],[10,11,["H589"]],[11,14,["H6663"]]]},{"k":13172,"v":[[0,1,["H4310"]],[1,3,["H1931"]],[3,6,["H7378"]],[6,7,["H5978"]],[7,9,["H3588"]],[9,10,["H6258"]],[10,15,["H2790"]],[15,21,["H1478"]]]},{"k":13173,"v":[[0,1,["H389"]],[1,2,["H6213"]],[2,3,["H408"]],[3,4,["H8147"]],[4,6,["H5978"]],[6,8,["H227"]],[8,11,["H3808"]],[11,13,["H5641"]],[13,14,["H4480","H6440"]],[14,15,[]]]},{"k":13174,"v":[[0,1,["H7368"]],[1,3,["H3709"]],[3,5,["H4480","H5921"]],[5,9,["H408"]],[9,11,["H367"]],[11,14,["H1204"]]]},{"k":13175,"v":[[0,2,["H7121"]],[2,5,["H595"]],[5,7,["H6030"]],[7,8,["H176"]],[8,11,["H1696"]],[11,13,["H7725"]],[13,15,[]]]},{"k":13176,"v":[[0,1,["H4100"]],[1,5,["H5771"]],[5,7,["H2403"]],[7,11,["H3045"]],[11,13,["H6588"]],[13,16,["H2403"]]]},{"k":13177,"v":[[0,1,["H4100"]],[1,2,["H5641"]],[2,5,["H6440"]],[5,7,["H2803"]],[7,11,["H341"]]]},{"k":13178,"v":[[0,3,["H6206"]],[3,5,["H5929"]],[5,9,["H5086"]],[9,13,["H7291"]],[13,15,["H3002"]],[15,16,["H7179"]]]},{"k":13179,"v":[[0,1,["H3588"]],[1,3,["H3789"]],[3,5,["H4846"]],[5,6,["H5921"]],[6,12,["H3423"]],[12,14,["H5771"]],[14,17,["H5271"]]]},{"k":13180,"v":[[0,2,["H7760"]],[2,4,["H7272"]],[4,8,["H5465"]],[8,11,["H8104"]],[11,13,["H3605"]],[13,15,["H734"]],[15,19,["H2707"]],[19,20,["H5921"]],[20,22,["H8328"]],[22,25,["H7272"]]]},{"k":13181,"v":[[0,2,["H1931"]],[2,6,["H7538"]],[6,7,["H1086"]],[7,10,["H899"]],[10,13,["H6211"]],[13,14,["H398"]]]},{"k":13182,"v":[[0,1,["H120"]],[1,4,["H3205"]],[4,7,["H802"]],[7,10,["H7116"]],[10,11,["H3117"]],[11,13,["H7649"]],[13,15,["H7267"]]]},{"k":13183,"v":[[0,3,["H3318"]],[3,6,["H6731"]],[6,10,["H5243"]],[10,12,["H1272"]],[12,16,["H6738"]],[16,18,["H5975"]],[18,19,["H3808"]]]},{"k":13184,"v":[[0,1,["H637"]],[1,4,["H6491"]],[4,6,["H5869"]],[6,7,["H5921"]],[7,10,["H2088"]],[10,12,["H935"]],[12,15,["H4941"]],[15,16,["H5973"]],[16,17,[]]]},{"k":13185,"v":[[0,1,["H4310"]],[1,3,["H5414"]],[3,5,["H2889"]],[5,10,["H4480","H2931"]],[10,11,["H3808"]],[11,12,["H259"]]]},{"k":13186,"v":[[0,1,["H518"]],[1,3,["H3117"]],[3,5,["H2782"]],[5,7,["H4557"]],[7,10,["H2320"]],[10,12,["H854"]],[12,16,["H6213"]],[16,18,["H2706"]],[18,21,["H3808"]],[21,22,["H5674"]]]},{"k":13187,"v":[[0,1,["H8159"]],[1,2,["H4480","H5921"]],[2,7,["H2308"]],[7,8,["H5704"]],[8,11,["H7521"]],[11,14,["H7916"]],[14,16,["H3117"]]]},{"k":13188,"v":[[0,1,["H3588"]],[1,3,["H3426"]],[3,4,["H8615"]],[4,7,["H6086"]],[7,8,["H518"]],[8,12,["H3772"]],[12,16,["H2498"]],[16,17,["H5750"]],[17,21,["H3127"]],[21,25,["H3808"]],[25,26,["H2308"]]]},{"k":13189,"v":[[0,1,["H518"]],[1,3,["H8328"]],[3,6,["H2204"]],[6,9,["H776"]],[9,12,["H1503"]],[12,14,["H4191"]],[14,17,["H6083"]]]},{"k":13190,"v":[[0,4,["H4480","H7381"]],[4,6,["H4325"]],[6,9,["H6524"]],[9,12,["H6213"]],[12,13,["H7105"]],[13,14,["H3644"]],[14,16,["H5194"]]]},{"k":13191,"v":[[0,2,["H1397"]],[2,3,["H4191"]],[3,6,["H2522"]],[6,8,["H120"]],[8,12,["H1478"]],[12,14,["H346"]],[14,16,[]]]},{"k":13192,"v":[[0,3,["H4325"]],[3,4,["H235"]],[4,5,["H4480"]],[5,7,["H3220"]],[7,10,["H5104"]],[10,11,["H2717"]],[11,14,["H3001"]]]},{"k":13193,"v":[[0,2,["H376"]],[2,4,["H7901"]],[4,6,["H6965"]],[6,7,["H3808"]],[7,8,["H5704"]],[8,10,["H8064"]],[10,13,["H1115"]],[13,16,["H3808"]],[16,17,["H6974"]],[17,18,["H3808"]],[18,20,["H5782"]],[20,24,["H4480","H8142"]]]},{"k":13194,"v":[[0,2,["H4310"]],[2,4,["H5414"]],[4,5,["H6845"]],[5,9,["H7585"]],[9,15,["H5641"]],[15,16,["H5704"]],[16,18,["H639"]],[18,20,["H7725"]],[20,24,["H7896"]],[24,28,["H2706"]],[28,30,["H2142"]],[30,31,[]]]},{"k":13195,"v":[[0,1,["H518"]],[1,3,["H1397"]],[3,4,["H4191"]],[4,7,["H2421"]],[7,9,["H3605"]],[9,11,["H3117"]],[11,15,["H6635"]],[15,18,["H3176"]],[18,19,["H5704"]],[19,21,["H2487"]],[21,22,["H935"]]]},{"k":13196,"v":[[0,3,["H7121"]],[3,5,["H595"]],[5,7,["H6030"]],[7,13,["H3700"]],[13,16,["H4639"]],[16,19,["H3027"]]]},{"k":13197,"v":[[0,1,["H3588"]],[1,2,["H6258"]],[2,4,["H5608"]],[4,6,["H6806"]],[6,9,["H3808"]],[9,10,["H8104"]],[10,11,["H5921"]],[11,13,["H2403"]]]},{"k":13198,"v":[[0,2,["H6588"]],[2,5,["H2856"]],[5,8,["H6872"]],[8,12,["H2950","H5921"]],[12,14,["H5771"]]]},{"k":13199,"v":[[0,2,["H199"]],[2,4,["H2022"]],[4,5,["H5307"]],[5,8,["H5034"]],[8,11,["H6697"]],[11,13,["H6275"]],[13,17,["H4480","H4725"]]]},{"k":13200,"v":[[0,2,["H4325"]],[2,3,["H7833"]],[3,5,["H68"]],[5,8,["H7857"]],[8,12,["H5599"]],[12,16,["H6083"]],[16,19,["H776"]],[19,22,["H6"]],[22,24,["H8615"]],[24,26,["H582"]]]},{"k":13201,"v":[[0,2,["H8630"]],[2,4,["H5331"]],[4,9,["H1980"]],[9,11,["H8138"]],[11,13,["H6440"]],[13,17,["H7971"]]]},{"k":13202,"v":[[0,2,["H1121"]],[2,5,["H3513"]],[5,8,["H3045"]],[8,10,["H3808"]],[10,15,["H6819"]],[15,18,["H995"]],[18,20,["H3808"]],[20,22,["H3926"]]]},{"k":13203,"v":[[0,1,["H389"]],[1,3,["H1320"]],[3,4,["H5921"]],[4,8,["H3510"]],[8,11,["H5315"]],[11,12,["H5921"]],[12,15,["H56"]]]},{"k":13204,"v":[[0,2,["H6030"]],[2,3,["H464"]],[3,5,["H8489"]],[5,7,["H559"]]]},{"k":13205,"v":[[0,3,["H2450"]],[3,5,["H6030"]],[5,6,["H7307"]],[6,7,["H1847"]],[7,9,["H4390"]],[9,11,["H990"]],[11,15,["H6921"]]]},{"k":13206,"v":[[0,3,["H3198"]],[3,5,["H3808","H5532"]],[5,6,["H1697"]],[6,9,["H4405"]],[9,14,["H3808"]],[14,15,["H3276"]]]},{"k":13207,"v":[[0,1,["H637"]],[1,2,["H859"]],[2,4,["H6565"]],[4,5,["H3374"]],[5,7,["H1639"]],[7,8,["H7881"]],[8,9,["H6440"]],[9,10,["H410"]]]},{"k":13208,"v":[[0,1,["H3588"]],[1,3,["H6310"]],[3,4,["H502"]],[4,6,["H5771"]],[6,9,["H977"]],[9,11,["H3956"]],[11,14,["H6175"]]]},{"k":13209,"v":[[0,3,["H6310"]],[3,4,["H7561"]],[4,7,["H3808"]],[7,8,["H589"]],[8,12,["H8193"]],[12,13,["H6030"]],[13,15,[]]]},{"k":13210,"v":[[0,4,["H7223"]],[4,5,["H120"]],[5,8,["H3205"]],[8,12,["H2342"]],[12,13,["H6440"]],[13,15,["H1389"]]]},{"k":13211,"v":[[0,3,["H8085"]],[3,5,["H5475"]],[5,7,["H433"]],[7,11,["H1639"]],[11,12,["H2451"]],[12,13,["H413"]],[13,14,[]]]},{"k":13212,"v":[[0,1,["H4100"]],[1,2,["H3045"]],[2,6,["H3045"]],[6,7,["H3808"]],[7,9,["H995"]],[9,11,["H1931"]],[11,13,["H3808"]],[13,14,["H5973"]],[14,15,[]]]},{"k":13213,"v":[[0,4,["H1571"]],[4,6,["H7867"]],[6,7,["H1571"]],[7,10,["H3453"]],[10,12,["H3524","H3117"]],[12,15,["H4480","H1"]]]},{"k":13214,"v":[[0,3,["H8575"]],[3,5,["H410"]],[5,6,["H4592"]],[6,7,["H4480"]],[7,12,["H328"]],[12,13,["H1697"]],[13,14,["H5973"]],[14,15,[]]]},{"k":13215,"v":[[0,1,["H4100"]],[1,4,["H3820"]],[4,7,["H3947"]],[7,9,["H4100"]],[9,12,["H5869"]],[12,14,["H7335"]]]},{"k":13216,"v":[[0,1,["H3588"]],[1,3,["H7725"]],[3,5,["H7307"]],[5,6,["H413"]],[6,7,["H410"]],[7,11,["H4405"]],[11,13,["H3318"]],[13,16,["H4480","H6310"]]]},{"k":13217,"v":[[0,1,["H4100"]],[1,3,["H582"]],[3,4,["H3588"]],[4,8,["H2135"]],[8,13,["H3205"]],[13,16,["H802"]],[16,17,["H3588"]],[17,21,["H6663"]]]},{"k":13218,"v":[[0,1,["H2005"]],[1,5,["H539","H3808"]],[5,8,["H6918"]],[8,11,["H8064"]],[11,13,["H3808"]],[13,14,["H2141"]],[14,17,["H5869"]]]},{"k":13219,"v":[[0,3,["H637","H3588"]],[3,4,["H8581"]],[4,6,["H444"]],[6,8,["H376"]],[8,10,["H8354"]],[10,11,["H5766"]],[11,13,["H4325"]]]},{"k":13220,"v":[[0,3,["H2331"]],[3,5,["H8085"]],[5,8,["H2088"]],[8,12,["H2372"]],[12,15,["H5608"]]]},{"k":13221,"v":[[0,1,["H834"]],[1,2,["H2450"]],[2,5,["H5046"]],[5,8,["H4480","H1"]],[8,11,["H3808"]],[11,12,["H3582"]],[12,13,[]]]},{"k":13222,"v":[[0,3,["H905"]],[3,5,["H776"]],[5,7,["H5414"]],[7,9,["H3808"]],[9,10,["H2114"]],[10,11,["H5674"]],[11,12,["H8432"]],[12,13,[]]]},{"k":13223,"v":[[0,3,["H7563"]],[3,6,["H2342"]],[6,7,["H3605"]],[7,9,["H3117"]],[9,12,["H4557"]],[12,14,["H8141"]],[14,16,["H6845"]],[16,19,["H6184"]]]},{"k":13224,"v":[[0,2,["H6343"]],[2,3,["H6963"]],[3,7,["H241"]],[7,9,["H7965"]],[9,11,["H7703"]],[11,14,["H935"]],[14,15,[]]]},{"k":13225,"v":[[0,2,["H539"]],[2,3,["H3808"]],[3,7,["H7725"]],[7,9,["H4480"]],[9,10,["H2822"]],[10,12,["H1931"]],[12,15,["H6822"]],[15,16,["H413"]],[16,18,["H2719"]]]},{"k":13226,"v":[[0,1,["H1931"]],[1,3,["H5074"]],[3,5,["H3899"]],[5,7,["H346"]],[7,11,["H3045"]],[11,12,["H3588"]],[12,14,["H3117"]],[14,16,["H2822"]],[16,18,["H3559"]],[18,21,["H3027"]]]},{"k":13227,"v":[[0,1,["H6862"]],[1,3,["H4691"]],[3,7,["H1204"]],[7,11,["H8630"]],[11,15,["H4428"]],[15,16,["H6264"]],[16,19,["H3593"]]]},{"k":13228,"v":[[0,1,["H3588"]],[1,4,["H5186"]],[4,6,["H3027"]],[6,7,["H413"]],[7,8,["H410"]],[8,11,["H1396"]],[11,12,["H413"]],[12,14,["H7706"]]]},{"k":13229,"v":[[0,2,["H7323"]],[2,3,["H413"]],[3,8,["H6677"]],[8,11,["H5672"]],[11,12,["H1354"]],[12,15,["H4043"]]]},{"k":13230,"v":[[0,1,["H3588"]],[1,3,["H3680"]],[3,5,["H6440"]],[5,8,["H2459"]],[8,10,["H6213"]],[10,13,["H6371"]],[13,14,["H5921"]],[14,16,["H3689"]]]},{"k":13231,"v":[[0,4,["H7931"]],[4,5,["H3582"]],[5,6,["H5892"]],[6,10,["H1004"]],[10,11,["H3808"]],[11,13,["H3427"]],[13,14,["H834"]],[14,16,["H6257"]],[16,19,["H1530"]]]},{"k":13232,"v":[[0,3,["H3808"]],[3,5,["H6238"]],[5,6,["H3808"]],[6,9,["H2428"]],[9,10,["H6965"]],[10,11,["H3808"]],[11,14,["H5186"]],[14,16,["H4512"]],[16,20,["H776"]]]},{"k":13233,"v":[[0,3,["H3808"]],[3,4,["H5493"]],[4,6,["H4480"]],[6,7,["H2822"]],[7,9,["H7957"]],[9,12,["H3001"]],[12,14,["H3127"]],[14,18,["H7307"]],[18,21,["H6310"]],[21,25,["H5493"]]]},{"k":13234,"v":[[0,2,["H408"]],[2,6,["H8582"]],[6,7,["H539"]],[7,9,["H7723"]],[9,10,["H3588"]],[10,11,["H7723"]],[11,13,["H1961"]],[13,15,["H8545"]]]},{"k":13235,"v":[[0,4,["H4390"]],[4,5,["H3808"]],[5,7,["H3117"]],[7,10,["H3712"]],[10,12,["H3808"]],[12,14,["H7488"]]]},{"k":13236,"v":[[0,4,["H2554"]],[4,7,["H1154"]],[7,10,["H1612"]],[10,14,["H7993"]],[14,16,["H5328"]],[16,19,["H2132"]]]},{"k":13237,"v":[[0,1,["H3588"]],[1,3,["H5712"]],[3,5,["H2611"]],[5,8,["H1565"]],[8,10,["H784"]],[10,12,["H398"]],[12,14,["H168"]],[14,16,["H7810"]]]},{"k":13238,"v":[[0,2,["H2029"]],[2,3,["H5999"]],[3,6,["H3205"]],[6,7,["H205"]],[7,10,["H990"]],[10,11,["H3559"]],[11,12,["H4820"]]]},{"k":13239,"v":[[0,2,["H347"]],[2,3,["H6030"]],[3,5,["H559"]]]},{"k":13240,"v":[[0,3,["H8085"]],[3,4,["H7227"]],[4,6,["H428"]],[6,7,["H5999"]],[7,8,["H5162"]],[8,11,["H3605"]]]},{"k":13241,"v":[[0,2,["H7307"]],[2,3,["H1697"]],[3,6,["H7093"]],[6,7,["H176"]],[7,8,["H4100"]],[8,9,["H4834"]],[9,11,["H3588"]],[11,13,["H6030"]]]},{"k":13242,"v":[[0,1,["H595"]],[1,2,["H1571"]],[2,4,["H1696"]],[4,8,["H3863"]],[8,10,["H5315"]],[10,11,["H3426"]],[11,15,["H8478","H5315"]],[15,19,["H2266"]],[19,20,["H4405"]],[20,21,["H5921"]],[21,24,["H5128"]],[24,25,["H1119"]],[25,26,["H7218"]],[26,27,["H5921"]],[27,28,[]]]},{"k":13243,"v":[[0,4,["H553"]],[4,6,["H1119"]],[6,8,["H6310"]],[8,11,["H5205"]],[11,14,["H8193"]],[14,16,["H2820"]],[16,18,[]]]},{"k":13244,"v":[[0,1,["H518"]],[1,3,["H1696"]],[3,5,["H3511"]],[5,7,["H3808"]],[7,8,["H2820"]],[8,12,["H2308"]],[12,13,["H4100","H4480"]],[13,16,["H1980"]]]},{"k":13245,"v":[[0,1,["H389"]],[1,2,["H6258"]],[2,7,["H3811"]],[7,11,["H8074"]],[11,12,["H3605"]],[12,14,["H5712"]]]},{"k":13246,"v":[[0,7,["H7059"]],[7,9,["H1961"]],[9,11,["H5707"]],[11,16,["H3585"]],[16,18,["H6965"]],[18,22,["H6030"]],[22,25,["H6440"]]]},{"k":13247,"v":[[0,2,["H2963"]],[2,6,["H639"]],[6,8,["H7852"]],[8,11,["H2786"]],[11,12,["H5921"]],[12,16,["H8127"]],[16,18,["H6862"]],[18,19,["H3913"]],[19,21,["H5869"]],[21,23,[]]]},{"k":13248,"v":[[0,3,["H6473"]],[3,4,["H5921"]],[4,8,["H6310"]],[8,11,["H5221"]],[11,15,["H3895"]],[15,16,["H2781"]],[16,20,["H4390"]],[20,21,["H3162"]],[21,22,["H5921"]],[22,23,[]]]},{"k":13249,"v":[[0,1,["H410"]],[1,3,["H5462"]],[3,5,["H413"]],[5,7,["H5760"]],[7,11,["H3399"]],[11,12,["H5921"]],[12,14,["H3027"]],[14,17,["H7563"]]]},{"k":13250,"v":[[0,2,["H1961"]],[2,4,["H7961"]],[4,10,["H6565"]],[10,14,["H270"]],[14,18,["H6203"]],[18,23,["H6327"]],[23,27,["H6965"]],[27,30,["H4307"]]]},{"k":13251,"v":[[0,2,["H7228"]],[2,6,["H5437","H5921"]],[6,8,["H6398"]],[8,10,["H3629"]],[10,14,["H3808"]],[14,15,["H2550"]],[15,18,["H8210"]],[18,20,["H4845"]],[20,23,["H776"]]]},{"k":13252,"v":[[0,2,["H6555"]],[2,5,["H6556"]],[5,6,["H5921","H6440"]],[6,7,["H6556"]],[7,9,["H7323"]],[9,10,["H5921"]],[10,14,["H1368"]]]},{"k":13253,"v":[[0,3,["H8609"]],[3,4,["H8242"]],[4,5,["H5921"]],[5,7,["H1539"]],[7,9,["H5953"]],[9,11,["H7161"]],[11,14,["H6083"]]]},{"k":13254,"v":[[0,2,["H6440"]],[2,4,["H2560"]],[4,5,["H4480"]],[5,6,["H1065"]],[6,8,["H5921"]],[8,10,["H6079"]],[10,15,["H6757"]]]},{"k":13255,"v":[[0,1,["H3808"]],[1,2,["H5921"]],[2,4,["H2555"]],[4,7,["H3709"]],[7,10,["H8605"]],[10,12,["H2134"]]]},{"k":13256,"v":[[0,2,["H776"]],[2,3,["H3680"]],[3,4,["H408"]],[4,7,["H1818"]],[7,11,["H2201"]],[11,12,["H1961"]],[12,13,["H408"]],[13,14,["H4725"]]]},{"k":13257,"v":[[0,1,["H1571"]],[1,2,["H6258"]],[2,3,["H2009"]],[3,5,["H5707"]],[5,8,["H8064"]],[8,11,["H7717"]],[11,14,["H4791"]]]},{"k":13258,"v":[[0,2,["H7453"]],[2,3,["H3887"]],[3,7,["H5869"]],[7,9,["H1811"]],[9,11,["H413"]],[11,12,["H433"]]]},{"k":13259,"v":[[0,5,["H3198"]],[5,8,["H1397"]],[8,9,["H5973"]],[9,10,["H433"]],[10,13,["H1121","H120"]],[13,17,["H7453"]]]},{"k":13260,"v":[[0,1,["H3588"]],[1,3,["H4557"]],[3,4,["H8141"]],[4,6,["H857"]],[6,10,["H1980"]],[10,12,["H734"]],[12,16,["H3808"]],[16,17,["H7725"]]]},{"k":13261,"v":[[0,2,["H7307"]],[2,4,["H2254"]],[4,6,["H3117"]],[6,8,["H2193"]],[8,10,["H6913"]],[10,14,[]]]},{"k":13262,"v":[[0,3,["H3808"]],[3,4,["H2049"]],[4,5,["H5978"]],[5,11,["H5869"]],[11,12,["H3885"]],[12,15,["H4784"]]]},{"k":13263,"v":[[0,2,["H7760"]],[2,3,["H4994"]],[3,8,["H6148"]],[8,9,["H5973"]],[9,11,["H4310"]],[11,13,["H1931"]],[13,16,["H8628"]],[16,17,["H3027"]],[17,19,[]]]},{"k":13264,"v":[[0,1,["H3588"]],[1,4,["H6845"]],[4,6,["H3820"]],[6,8,["H4480","H7922"]],[8,9,["H3651","H5921"]],[9,12,["H3808"]],[12,13,["H7311"]],[13,14,[]]]},{"k":13265,"v":[[0,3,["H5046"]],[3,4,["H2506"]],[4,7,["H7453"]],[7,10,["H5869"]],[10,13,["H1121"]],[13,15,["H3615"]]]},{"k":13266,"v":[[0,3,["H3322"]],[3,7,["H4914"]],[7,10,["H5971"]],[10,12,["H6440"]],[12,14,["H1961"]],[14,17,["H8611"]]]},{"k":13267,"v":[[0,2,["H5869"]],[2,5,["H3543"]],[5,9,["H4480","H3708"]],[9,11,["H3605"]],[11,13,["H3338"]],[13,17,["H6738"]]]},{"k":13268,"v":[[0,1,["H3477"]],[1,5,["H8074"]],[5,6,["H5921"]],[6,7,["H2063"]],[7,10,["H5355"]],[10,14,["H5782"]],[14,15,["H5921"]],[15,17,["H2611"]]]},{"k":13269,"v":[[0,2,["H6662"]],[2,5,["H270"]],[5,8,["H1870"]],[8,13,["H2889"]],[13,14,["H3027"]],[14,19,["H3254","H555"]]]},{"k":13270,"v":[[0,1,["H199"]],[1,5,["H3605"]],[5,8,["H7725"]],[8,10,["H935"]],[10,11,["H4994"]],[11,14,["H3808"]],[14,15,["H4672"]],[15,17,["H2450"]],[17,20,[]]]},{"k":13271,"v":[[0,2,["H3117"]],[2,4,["H5674"]],[4,6,["H2154"]],[6,9,["H5423"]],[9,12,["H4180"]],[12,15,["H3824"]]]},{"k":13272,"v":[[0,2,["H7760"]],[2,4,["H3915"]],[4,6,["H3117"]],[6,8,["H216"]],[8,10,["H7138"]],[10,11,["H4480","H6440"]],[11,13,["H2822"]]]},{"k":13273,"v":[[0,1,["H518"]],[1,3,["H6960"]],[3,5,["H7585"]],[5,8,["H1004"]],[8,11,["H7502"]],[11,13,["H3326"]],[13,16,["H2822"]]]},{"k":13274,"v":[[0,3,["H7121"]],[3,5,["H7845"]],[5,6,["H859"]],[6,9,["H1"]],[9,12,["H7415"]],[12,16,["H517"]],[16,19,["H269"]]]},{"k":13275,"v":[[0,2,["H346"]],[2,4,["H645"]],[4,6,["H8615"]],[6,10,["H8615"]],[10,11,["H4310"]],[11,13,["H7789"]],[13,14,[]]]},{"k":13276,"v":[[0,4,["H3381"]],[4,7,["H905"]],[7,10,["H7585"]],[10,11,["H518"]],[11,13,["H5183"]],[13,14,["H3162"]],[14,16,["H5921"]],[16,18,["H6083"]]]},{"k":13277,"v":[[0,2,["H6030"]],[2,3,["H1085"]],[3,5,["H7747"]],[5,7,["H559"]]]},{"k":13278,"v":[[0,2,["H5704","H575"]],[2,8,["H7760"]],[8,10,["H7078"]],[10,12,["H4405"]],[12,13,["H995"]],[13,15,["H310"]],[15,18,["H1696"]]]},{"k":13279,"v":[[0,1,["H4069"]],[1,4,["H2803"]],[4,6,["H929"]],[6,9,["H2933"]],[9,12,["H5869"]]]},{"k":13280,"v":[[0,2,["H2963"]],[2,3,["H5315"]],[3,6,["H639"]],[6,9,["H776"]],[9,11,["H5800"]],[11,12,["H4616"]],[12,17,["H6697"]],[17,19,["H6275"]],[19,23,["H4480","H4725"]]]},{"k":13281,"v":[[0,1,["H1571"]],[1,3,["H216"]],[3,6,["H7563"]],[6,10,["H1846"]],[10,13,["H7632"]],[13,16,["H784"]],[16,18,["H3808"]],[18,19,["H5050"]]]},{"k":13282,"v":[[0,2,["H216"]],[2,5,["H2821"]],[5,8,["H168"]],[8,11,["H5216"]],[11,15,["H1846"]],[15,16,["H5921"]],[16,17,[]]]},{"k":13283,"v":[[0,2,["H6806"]],[2,5,["H202"]],[5,8,["H3334"]],[8,12,["H6098"]],[12,16,["H7993"]]]},{"k":13284,"v":[[0,1,["H3588"]],[1,4,["H7971"]],[4,7,["H7568"]],[7,11,["H7272"]],[11,14,["H1980"]],[14,15,["H5921"]],[15,17,["H7639"]]]},{"k":13285,"v":[[0,2,["H6341"]],[2,4,["H270"]],[4,8,["H6119"]],[8,11,["H6782"]],[11,13,["H2388"]],[13,14,["H5921"]],[14,15,[]]]},{"k":13286,"v":[[0,2,["H2256"]],[2,4,["H2934"]],[4,9,["H776"]],[9,12,["H4434"]],[12,15,["H5921"]],[15,17,["H5410"]]]},{"k":13287,"v":[[0,1,["H1091"]],[1,5,["H1204"]],[5,8,["H5439"]],[8,11,["H6327"]],[11,15,["H7272"]]]},{"k":13288,"v":[[0,2,["H202"]],[2,4,["H1961"]],[4,5,["H7457"]],[5,7,["H343"]],[7,10,["H3559"]],[10,13,["H6763"]]]},{"k":13289,"v":[[0,3,["H398"]],[3,5,["H905"]],[5,8,["H5785"]],[8,11,["H1060"]],[11,13,["H4194"]],[13,15,["H398"]],[15,17,["H905"]]]},{"k":13290,"v":[[0,2,["H4009"]],[2,6,["H5423"]],[6,9,["H4480","H168"]],[9,13,["H6805"]],[13,17,["H4428"]],[17,19,["H1091"]]]},{"k":13291,"v":[[0,3,["H7931"]],[3,6,["H168"]],[6,10,["H4480","H1097"]],[10,13,["H1614"]],[13,16,["H2219"]],[16,17,["H5921"]],[17,19,["H5116"]]]},{"k":13292,"v":[[0,2,["H8328"]],[2,6,["H3001"]],[6,7,["H4480","H8478"]],[7,9,["H4480","H4605"]],[9,12,["H7105"]],[12,15,["H5243"]]]},{"k":13293,"v":[[0,2,["H2143"]],[2,4,["H6"]],[4,5,["H4480"]],[5,7,["H776"]],[7,12,["H3808"]],[12,13,["H8034"]],[13,14,["H5921"]],[14,16,["H6440","H2351"]]]},{"k":13294,"v":[[0,4,["H1920"]],[4,6,["H4480","H216"]],[6,7,["H413"]],[7,8,["H2822"]],[8,10,["H5074"]],[10,14,["H4480","H8398"]]]},{"k":13295,"v":[[0,3,["H3808"]],[3,5,["H5209"]],[5,6,["H3808"]],[6,7,["H5220"]],[7,10,["H5971"]],[10,11,["H369"]],[11,13,["H8300"]],[13,16,["H4033"]]]},{"k":13296,"v":[[0,4,["H314"]],[4,8,["H8074"]],[8,9,["H5921"]],[9,11,["H3117"]],[11,16,["H6931"]],[16,18,["H8178"]]]},{"k":13297,"v":[[0,1,["H389"]],[1,2,["H428"]],[2,5,["H4908"]],[5,8,["H5767"]],[8,10,["H2088"]],[10,13,["H4725"]],[13,17,["H3045"]],[17,18,["H3808"]],[18,19,["H410"]]]},{"k":13298,"v":[[0,2,["H347"]],[2,3,["H6030"]],[3,5,["H559"]]]},{"k":13299,"v":[[0,2,["H5704","H575"]],[2,5,["H3013"]],[5,7,["H5315"]],[7,12,["H1792"]],[12,14,["H4405"]]]},{"k":13300,"v":[[0,1,["H2088"]],[1,2,["H6235"]],[2,3,["H6471"]],[3,6,["H3637"]],[6,10,["H3808"]],[10,11,["H954"]],[11,16,["H1970"]],[16,18,[]]]},{"k":13301,"v":[[0,1,["H637"]],[1,4,["H551"]],[4,8,["H7686"]],[8,10,["H4879"]],[10,11,["H3885"]],[11,12,["H854"]],[12,13,[]]]},{"k":13302,"v":[[0,1,["H518"]],[1,2,["H551"]],[2,5,["H1431"]],[5,7,["H5921"]],[7,10,["H3198"]],[10,11,["H5921"]],[11,14,["H2781"]]]},{"k":13303,"v":[[0,1,["H3045"]],[1,2,["H645"]],[2,3,["H3588"]],[3,4,["H433"]],[4,6,["H5791"]],[6,10,["H5362","H5921"]],[10,14,["H4685"]]]},{"k":13304,"v":[[0,1,["H2005"]],[1,4,["H6817"]],[4,6,["H2555"]],[6,10,["H3808"]],[10,11,["H6030"]],[11,14,["H7768"]],[14,18,["H369"]],[18,19,["H4941"]]]},{"k":13305,"v":[[0,4,["H1443"]],[4,6,["H734"]],[6,9,["H3808"]],[9,10,["H5674"]],[10,14,["H7760"]],[14,15,["H2822"]],[15,16,["H5921"]],[16,18,["H5410"]]]},{"k":13306,"v":[[0,5,["H6584","H4480","H5921"]],[5,7,["H3519"]],[7,9,["H5493"]],[9,11,["H5850"]],[11,14,["H7218"]]]},{"k":13307,"v":[[0,3,["H5422"]],[3,7,["H5439"]],[7,11,["H1980"]],[11,14,["H8615"]],[14,17,["H5265"]],[17,20,["H6086"]]]},{"k":13308,"v":[[0,4,["H2734"]],[4,6,["H639"]],[6,7,["H5921"]],[7,11,["H2803"]],[11,19,["H6862"]]]},{"k":13309,"v":[[0,2,["H1416"]],[2,3,["H935"]],[3,4,["H3162"]],[4,7,["H5549"]],[7,9,["H1870"]],[9,10,["H5921"]],[10,13,["H2583"]],[13,15,["H5439"]],[15,17,["H168"]]]},{"k":13310,"v":[[0,6,["H7368","H251"]],[6,7,["H4480","H5921"]],[7,11,["H3045"]],[11,13,["H389"]],[13,14,["H2114"]],[14,15,["H4480"]],[15,16,[]]]},{"k":13311,"v":[[0,2,["H7138"]],[2,4,["H2308"]],[4,8,["H3045"]],[8,10,["H7911"]],[10,11,[]]]},{"k":13312,"v":[[0,3,["H1481"]],[3,6,["H1004"]],[6,9,["H519"]],[9,10,["H2803"]],[10,14,["H2114"]],[14,16,["H1961"]],[16,18,["H5237"]],[18,21,["H5869"]]]},{"k":13313,"v":[[0,2,["H7121"]],[2,4,["H5650"]],[4,9,["H3808"]],[9,10,["H6030"]],[10,12,["H2603"]],[12,14,["H1119"]],[14,16,["H6310"]]]},{"k":13314,"v":[[0,2,["H7307"]],[2,4,["H2114"]],[4,7,["H802"]],[7,10,["H2603"]],[10,13,["H1121"]],[13,18,["H990"]]]},{"k":13315,"v":[[0,1,["H1571"]],[1,3,["H5759"]],[3,4,["H3988"]],[4,7,["H6965"]],[7,10,["H1696"]],[10,12,[]]]},{"k":13316,"v":[[0,1,["H3605"]],[1,3,["H5475"]],[3,4,["H4962"]],[4,5,["H8581"]],[5,9,["H2088"]],[9,11,["H157"]],[11,13,["H2015"]],[13,15,[]]]},{"k":13317,"v":[[0,2,["H6106"]],[2,3,["H1692"]],[3,6,["H5785"]],[6,10,["H1320"]],[10,14,["H4422"]],[14,17,["H5785"]],[17,20,["H8127"]]]},{"k":13318,"v":[[0,3,["H2603"]],[3,7,["H2603"]],[7,10,["H859"]],[10,12,["H7453"]],[12,13,["H3588"]],[13,15,["H3027"]],[15,17,["H433"]],[17,19,["H5060"]],[19,20,[]]]},{"k":13319,"v":[[0,1,["H4100"]],[1,4,["H7291"]],[4,6,["H3644"]],[6,7,["H410"]],[7,10,["H3808"]],[10,11,["H7646"]],[11,14,["H4480","H1320"]]]},{"k":13320,"v":[[0,2,["H4310"]],[2,4,["H4405"]],[4,5,["H5414"]],[5,6,["H645"]],[6,7,["H3789"]],[7,9,["H4310"]],[9,11,["H5414"]],[11,12,["H2710"]],[12,15,["H5612"]]]},{"k":13321,"v":[[0,4,["H2672"]],[4,7,["H1270"]],[7,8,["H5842"]],[8,10,["H5777"]],[10,13,["H6697"]],[13,15,["H5703"]]]},{"k":13322,"v":[[0,2,["H589"]],[2,3,["H3045"]],[3,6,["H1350"]],[6,7,["H2416"]],[7,12,["H6965"]],[12,15,["H314"]],[15,17,["H5921"]],[17,19,["H6083"]]]},{"k":13323,"v":[[0,3,["H310"]],[3,5,["H5785"]],[5,7,["H5362"]],[7,8,["H2063"]],[8,13,["H4480","H1320"]],[13,16,["H2372"]],[16,17,["H433"]]]},{"k":13324,"v":[[0,1,["H834"]],[1,2,["H589"]],[2,4,["H2372"]],[4,9,["H5869"]],[9,11,["H7200"]],[11,13,["H3808"]],[13,14,["H2114"]],[14,17,["H3629"]],[17,19,["H3615"]],[19,20,["H2436"]],[20,21,[]]]},{"k":13325,"v":[[0,1,["H3588"]],[1,4,["H559"]],[4,5,["H4100"]],[5,6,["H7291"]],[6,11,["H8328"]],[11,14,["H1697"]],[14,16,["H4672"]],[16,18,[]]]},{"k":13326,"v":[[0,3,["H1481"]],[3,4,["H4480","H6440"]],[4,6,["H2719"]],[6,7,["H3588"]],[7,8,["H2534"]],[8,11,["H5771"]],[11,14,["H2719"]],[14,15,["H4616"]],[15,18,["H3045"]],[18,22,["H7945","H1779"]]]},{"k":13327,"v":[[0,2,["H6030"]],[2,3,["H6691"]],[3,5,["H5284"]],[5,7,["H559"]]]},{"k":13328,"v":[[0,1,["H3651"]],[1,4,["H5587"]],[4,8,["H7725"]],[8,10,["H5668"]],[10,14,["H2363"]]]},{"k":13329,"v":[[0,3,["H8085"]],[3,5,["H4148"]],[5,8,["H3639"]],[8,11,["H7307"]],[11,14,["H4480","H998"]],[14,18,["H6030"]]]},{"k":13330,"v":[[0,1,["H3045"]],[1,4,["H2063"]],[4,5,["H4480"]],[5,6,["H5703"]],[6,7,["H4480"]],[7,8,["H120"]],[8,10,["H7760"]],[10,11,["H5921"]],[11,12,["H776"]]]},{"k":13331,"v":[[0,1,["H3588"]],[1,3,["H7445"]],[3,6,["H7563"]],[6,8,["H4480","H7138"]],[8,11,["H8057"]],[11,14,["H2611"]],[14,16,["H5704"]],[16,18,["H7281"]]]},{"k":13332,"v":[[0,1,["H518"]],[1,3,["H7863"]],[3,5,["H5927"]],[5,8,["H8064"]],[8,11,["H7218"]],[11,12,["H5060"]],[12,15,["H5645"]]]},{"k":13333,"v":[[0,4,["H6"]],[4,6,["H5331"]],[6,10,["H1561"]],[10,14,["H7200"]],[14,17,["H559"]],[17,18,["H335"]],[18,20,[]]]},{"k":13334,"v":[[0,4,["H5774"]],[4,7,["H2472"]],[7,10,["H3808"]],[10,12,["H4672"]],[12,18,["H5074"]],[18,21,["H2384"]],[21,24,["H3915"]]]},{"k":13335,"v":[[0,2,["H5869"]],[2,5,["H7805"]],[5,10,["H3808"]],[10,11,["H3254"]],[11,12,["H3808"]],[12,15,["H4725"]],[15,17,["H5750"]],[17,18,["H7789"]],[18,19,[]]]},{"k":13336,"v":[[0,2,["H1121"]],[2,6,["H7521"]],[6,8,["H1800"]],[8,11,["H3027"]],[11,13,["H7725"]],[13,15,["H202"]]]},{"k":13337,"v":[[0,2,["H6106"]],[2,4,["H4390"]],[4,10,["H5934"]],[10,14,["H7901"]],[14,15,["H5973"]],[15,17,["H5921"]],[17,19,["H6083"]]]},{"k":13338,"v":[[0,1,["H518"]],[1,2,["H7451"]],[2,4,["H4985"]],[4,7,["H6310"]],[7,10,["H3582"]],[10,12,["H8478"]],[12,14,["H3956"]]]},{"k":13339,"v":[[0,3,["H2550","H5921"]],[3,6,["H5800"]],[6,8,["H3808"]],[8,12,["H4513"]],[12,13,["H8432"]],[13,15,["H2441"]]]},{"k":13340,"v":[[0,3,["H3899"]],[3,6,["H4578"]],[6,8,["H2015"]],[8,12,["H4846"]],[12,14,["H6620"]],[14,15,["H7130"]],[15,16,[]]]},{"k":13341,"v":[[0,4,["H1104"]],[4,5,["H2428"]],[5,12,["H6958"]],[12,13,["H410"]],[13,17,["H3423"]],[17,18,["H4480"]],[18,20,["H990"]]]},{"k":13342,"v":[[0,3,["H3243"]],[3,5,["H7219"]],[5,7,["H6620"]],[7,9,["H660"]],[9,10,["H3956"]],[10,12,["H2026"]],[12,13,[]]]},{"k":13343,"v":[[0,3,["H408"]],[3,4,["H7200"]],[4,6,["H6390"]],[6,8,["H5104"]],[8,10,["H5158"]],[10,12,["H1706"]],[12,14,["H2529"]]]},{"k":13344,"v":[[0,5,["H3022"]],[5,8,["H7725"]],[8,11,["H3808"]],[11,14,["H1104"]],[14,18,["H2428"]],[18,21,["H8545"]],[21,26,["H3808"]],[26,27,["H5965"]],[27,28,[]]]},{"k":13345,"v":[[0,1,["H3588"]],[1,4,["H7533"]],[4,7,["H5800"]],[7,9,["H1800"]],[9,15,["H1497"]],[15,17,["H1004"]],[17,20,["H1129"]],[20,21,["H3808"]]]},{"k":13346,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H3045"]],[5,6,["H7961"]],[6,9,["H990"]],[9,12,["H3808"]],[12,13,["H4422"]],[13,18,["H2530"]]]},{"k":13347,"v":[[0,3,["H369"]],[3,6,["H400"]],[6,8,["H8300"]],[8,9,["H3651","H5921"]],[9,11,["H3808"]],[11,13,["H2342"]],[13,16,["H2898"]]]},{"k":13348,"v":[[0,3,["H4390"]],[3,6,["H5607"]],[6,11,["H3334"]],[11,12,["H3605"]],[12,13,["H3027"]],[13,16,["H6001"]],[16,18,["H935"]],[18,20,[]]]},{"k":13349,"v":[[0,2,["H1961"]],[2,6,["H4390"]],[6,8,["H990"]],[8,11,["H7971"]],[11,13,["H2740"]],[13,16,["H639"]],[16,21,["H4305"]],[21,23,["H5921"]],[23,28,["H3894"]]]},{"k":13350,"v":[[0,3,["H1272"]],[3,6,["H1270"]],[6,7,["H4480","H5402"]],[7,10,["H7198"]],[10,12,["H5154"]],[12,16,["H2498"]]]},{"k":13351,"v":[[0,3,["H8025"]],[3,6,["H3318"]],[6,9,["H4480","H1465"]],[9,13,["H1300"]],[13,14,["H1980"]],[14,18,["H4480","H4846"]],[18,19,["H367"]],[19,21,["H5921"]],[21,22,[]]]},{"k":13352,"v":[[0,1,["H3605"]],[1,2,["H2822"]],[2,5,["H2934"]],[5,9,["H6845"]],[9,11,["H784"]],[11,12,["H3808"]],[12,13,["H5301"]],[13,15,["H398"]],[15,20,["H7489"]],[20,25,["H8300"]],[25,28,["H168"]]]},{"k":13353,"v":[[0,2,["H8064"]],[2,4,["H1540"]],[4,6,["H5771"]],[6,9,["H776"]],[9,12,["H6965"]],[12,14,[]]]},{"k":13354,"v":[[0,2,["H2981"]],[2,5,["H1004"]],[5,7,["H1540"]],[7,13,["H5064"]],[13,16,["H3117"]],[16,19,["H639"]]]},{"k":13355,"v":[[0,1,["H2088"]],[1,4,["H2506"]],[4,7,["H7563"]],[7,8,["H120"]],[8,10,["H4480","H430"]],[10,13,["H5159"]],[13,14,["H561"]],[14,18,["H4480","H410"]]]},{"k":13356,"v":[[0,2,["H347"]],[2,3,["H6030"]],[3,5,["H559"]]]},{"k":13357,"v":[[0,2,["H8085","H8085"]],[2,4,["H4405"]],[4,7,["H2063"]],[7,8,["H1961"]],[8,10,["H8575"]]]},{"k":13358,"v":[[0,1,["H5375"]],[1,4,["H595"]],[4,6,["H1696"]],[6,9,["H310"]],[9,12,["H1696"]],[12,14,["H3932"]]]},{"k":13359,"v":[[0,3,["H595"]],[3,6,["H7879"]],[6,8,["H120"]],[8,10,["H518"]],[10,14,["H4069"]],[14,16,["H3808"]],[16,18,["H7307"]],[18,20,["H7114"]]]},{"k":13360,"v":[[0,1,["H6437","H413"]],[1,5,["H8074"]],[5,7,["H7760"]],[7,9,["H3027"]],[9,10,["H5921"]],[10,12,["H6310"]]]},{"k":13361,"v":[[0,2,["H518"]],[2,4,["H2142"]],[4,7,["H926"]],[7,9,["H6427"]],[9,11,["H270"]],[11,14,["H1320"]]]},{"k":13362,"v":[[0,1,["H4069"]],[1,4,["H7563"]],[4,5,["H2421"]],[5,7,["H6275"]],[7,8,["H1571"]],[8,10,["H1396"]],[10,12,["H2428"]]]},{"k":13363,"v":[[0,2,["H2233"]],[2,4,["H3559"]],[4,7,["H6440"]],[7,8,["H5973"]],[8,12,["H6631"]],[12,15,["H5869"]]]},{"k":13364,"v":[[0,2,["H1004"]],[2,4,["H7965"]],[4,6,["H4480","H6343"]],[6,7,["H3808"]],[7,10,["H7626"]],[10,12,["H433"]],[12,13,["H5921"]],[13,14,[]]]},{"k":13365,"v":[[0,2,["H7794"]],[2,3,["H5674"]],[3,5,["H1602"]],[5,6,["H3808"]],[6,8,["H6510"]],[8,9,["H6403"]],[9,14,["H7921","H3808"]]]},{"k":13366,"v":[[0,3,["H7971"]],[3,6,["H5759"]],[6,9,["H6629"]],[9,12,["H3206"]],[12,13,["H7540"]]]},{"k":13367,"v":[[0,2,["H5375"]],[2,4,["H8596"]],[4,6,["H3658"]],[6,8,["H8055"]],[8,11,["H6963"]],[11,14,["H5748"]]]},{"k":13368,"v":[[0,2,["H3615"]],[2,4,["H3117"]],[4,6,["H2896"]],[6,10,["H7281"]],[10,12,["H5181"]],[12,15,["H7585"]]]},{"k":13369,"v":[[0,3,["H559"]],[3,5,["H410"]],[5,6,["H5493"]],[6,7,["H4480"]],[7,11,["H2654"]],[11,12,["H3808"]],[12,14,["H1847"]],[14,17,["H1870"]]]},{"k":13370,"v":[[0,1,["H4100"]],[1,4,["H7706"]],[4,5,["H3588"]],[5,8,["H5647"]],[8,11,["H4100"]],[11,12,["H3276"]],[12,16,["H3588"]],[16,18,["H6293"]],[18,20,[]]]},{"k":13371,"v":[[0,1,["H2005"]],[1,3,["H2898"]],[3,5,["H3808"]],[5,8,["H3027"]],[8,10,["H6098"]],[10,13,["H7563"]],[13,15,["H7368"]],[15,16,["H4480"]],[16,17,[]]]},{"k":13372,"v":[[0,2,["H4100"]],[2,5,["H5216"]],[5,8,["H7563"]],[8,10,["H1846"]],[10,14,["H935"]],[14,16,["H343"]],[16,17,["H5921"]],[17,20,["H2505"]],[20,21,["H2256"]],[21,24,["H639"]]]},{"k":13373,"v":[[0,2,["H1961"]],[2,4,["H8401"]],[4,5,["H6440"]],[5,7,["H7307"]],[7,10,["H4671"]],[10,13,["H5492"]],[13,15,["H1589"]]]},{"k":13374,"v":[[0,1,["H433"]],[1,3,["H6845"]],[3,5,["H205"]],[5,8,["H1121"]],[8,10,["H7999","H413"]],[10,15,["H3045"]],[15,16,[]]]},{"k":13375,"v":[[0,2,["H5869"]],[2,4,["H7200"]],[4,6,["H3589"]],[6,10,["H8354"]],[10,13,["H4480","H2534"]],[13,16,["H7706"]]]},{"k":13376,"v":[[0,1,["H3588"]],[1,2,["H4100"]],[2,3,["H2656"]],[3,8,["H1004"]],[8,9,["H310"]],[9,13,["H4557"]],[13,16,["H2320"]],[16,22,["H2686"]]]},{"k":13377,"v":[[0,3,["H3925"]],[3,4,["H410"]],[4,5,["H1847"]],[5,7,["H1931"]],[7,8,["H8199"]],[8,12,["H7311"]]]},{"k":13378,"v":[[0,1,["H2088"]],[1,2,["H4191"]],[2,5,["H8537"]],[5,6,["H6106"]],[6,8,["H3605"]],[8,10,["H7946"]],[10,12,["H7961"]]]},{"k":13379,"v":[[0,2,["H5845"]],[2,4,["H4390"]],[4,6,["H2461"]],[6,9,["H6106"]],[9,11,["H8248"]],[11,13,["H4221"]]]},{"k":13380,"v":[[0,2,["H2088"]],[2,3,["H4191"]],[3,6,["H4751"]],[6,9,["H5315"]],[9,11,["H3808"]],[11,12,["H398"]],[12,14,["H2896"]]]},{"k":13381,"v":[[0,4,["H7901"]],[4,5,["H3162"]],[5,6,["H5921"]],[6,8,["H6083"]],[8,11,["H7415"]],[11,13,["H3680","H5921"]],[13,14,[]]]},{"k":13382,"v":[[0,1,["H2005"]],[1,3,["H3045"]],[3,5,["H4284"]],[5,8,["H4209"]],[8,12,["H2554"]],[12,13,["H5921"]],[13,14,[]]]},{"k":13383,"v":[[0,1,["H3588"]],[1,3,["H559"]],[3,4,["H346"]],[4,7,["H1004"]],[7,10,["H5081"]],[10,12,["H346"]],[12,15,["H4908"]],[15,16,["H168"]],[16,19,["H7563"]]]},{"k":13384,"v":[[0,3,["H3808"]],[3,4,["H7592"]],[4,7,["H5674"]],[7,10,["H1870"]],[10,14,["H3808"]],[14,15,["H5234"]],[15,17,["H226"]]]},{"k":13385,"v":[[0,1,["H3588"]],[1,3,["H7451"]],[3,5,["H2820"]],[5,8,["H3117"]],[8,10,["H343"]],[10,15,["H2986"]],[15,18,["H3117"]],[18,20,["H5678"]]]},{"k":13386,"v":[[0,1,["H4310"]],[1,3,["H5046"]],[3,5,["H1870"]],[5,6,["H5921"]],[6,8,["H6440"]],[8,10,["H4310"]],[10,12,["H7999"]],[12,15,["H1931"]],[15,17,["H6213"]]]},{"k":13387,"v":[[0,3,["H1931"]],[3,5,["H2986"]],[5,8,["H6913"]],[8,11,["H8245"]],[11,12,["H5921"]],[12,14,["H1430"]]]},{"k":13388,"v":[[0,2,["H7263"]],[2,5,["H5158"]],[5,8,["H4985"]],[8,12,["H3605"]],[12,13,["H120"]],[13,15,["H4900"]],[15,16,["H310"]],[16,21,["H369","H4557"]],[21,22,["H6440"]],[22,23,[]]]},{"k":13389,"v":[[0,1,["H349"]],[1,3,["H5162"]],[3,7,["H1892"]],[7,11,["H8666"]],[11,13,["H7604"]],[13,14,["H4604"]]]},{"k":13390,"v":[[0,2,["H464"]],[2,4,["H8489"]],[4,5,["H6030"]],[5,7,["H559"]]]},{"k":13391,"v":[[0,3,["H1397"]],[3,5,["H5532"]],[5,7,["H410"]],[7,10,["H3588"]],[10,12,["H7919"]],[12,15,["H5532"]],[15,16,["H5921"]],[16,17,[]]]},{"k":13392,"v":[[0,4,["H2656"]],[4,7,["H7706"]],[7,8,["H3588"]],[8,11,["H6663"]],[11,12,["H518"]],[12,15,["H1215"]],[15,18,["H3588"]],[18,23,["H8552","H1870"]]]},{"k":13393,"v":[[0,3,["H3198"]],[3,6,["H4480","H3374"]],[6,11,["H935"]],[11,12,["H5973"]],[12,15,["H4941"]]]},{"k":13394,"v":[[0,2,["H3808"]],[2,4,["H7451"]],[4,5,["H7227"]],[5,8,["H5771"]],[8,9,["H369","H7093"]]]},{"k":13395,"v":[[0,1,["H3588"]],[1,6,["H2254"]],[6,9,["H251"]],[9,11,["H2600"]],[11,13,["H6584"]],[13,15,["H6174"]],[15,18,["H899"]]]},{"k":13396,"v":[[0,3,["H3808"]],[3,5,["H4325"]],[5,8,["H5889"]],[8,10,["H8248"]],[10,14,["H4513"]],[14,15,["H3899"]],[15,18,["H4480","H7457"]]]},{"k":13397,"v":[[0,5,["H2220"]],[5,6,["H376"]],[6,10,["H776"]],[10,14,["H5375","H6440"]],[14,15,["H3427"]],[15,17,[]]]},{"k":13398,"v":[[0,5,["H7971","H490"]],[5,6,["H7387"]],[6,9,["H2220"]],[9,12,["H3490"]],[12,15,["H1792"]]]},{"k":13399,"v":[[0,1,["H5921","H3651"]],[1,2,["H6341"]],[2,5,["H5439"]],[5,8,["H6597"]],[8,9,["H6343"]],[9,10,["H926"]],[10,11,[]]]},{"k":13400,"v":[[0,1,["H176"]],[1,2,["H2822"]],[2,6,["H3808"]],[6,7,["H7200"]],[7,9,["H8229"]],[9,11,["H4325"]],[11,12,["H3680"]],[12,13,[]]]},{"k":13401,"v":[[0,2,["H3808"]],[2,3,["H433"]],[3,6,["H1363"]],[6,8,["H8064"]],[8,10,["H7200"]],[10,12,["H7218"]],[12,15,["H3556"]],[15,16,["H3588"]],[16,19,["H7311"]]]},{"k":13402,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,6,["H410"]],[6,7,["H3045"]],[7,10,["H8199"]],[10,11,["H1157"]],[11,14,["H6205"]]]},{"k":13403,"v":[[0,2,["H5645"]],[2,5,["H5643"]],[5,10,["H7200"]],[10,11,["H3808"]],[11,14,["H1980"]],[14,17,["H2329"]],[17,19,["H8064"]]]},{"k":13404,"v":[[0,3,["H8104"]],[3,5,["H5769"]],[5,6,["H734"]],[6,7,["H834"]],[7,8,["H205"]],[8,9,["H4962"]],[9,11,["H1869"]]]},{"k":13405,"v":[[0,1,["H834"]],[1,4,["H7059"]],[4,6,["H3808"]],[6,7,["H6256"]],[7,9,["H3247"]],[9,11,["H3332"]],[11,14,["H5104"]]]},{"k":13406,"v":[[0,2,["H559"]],[2,4,["H410"]],[4,5,["H5493"]],[5,6,["H4480"]],[6,9,["H4100"]],[9,12,["H7706"]],[12,13,["H6466"]],[13,15,[]]]},{"k":13407,"v":[[0,2,["H1931"]],[2,3,["H4390"]],[3,5,["H1004"]],[5,7,["H2896"]],[7,11,["H6098"]],[11,14,["H7563"]],[14,16,["H7368"]],[16,17,["H4480"]],[17,18,[]]]},{"k":13408,"v":[[0,2,["H6662"]],[2,3,["H7200"]],[3,7,["H8055"]],[7,10,["H5355"]],[10,14,["H3932"]]]},{"k":13409,"v":[[0,1,["H518"]],[1,3,["H7009"]],[3,5,["H3808"]],[5,7,["H3582"]],[7,10,["H3499"]],[10,14,["H784"]],[14,15,["H398"]]]},{"k":13410,"v":[[0,1,["H5532"]],[1,2,["H4994"]],[2,4,["H5973"]],[4,9,["H7999"]],[9,11,["H2896"]],[11,13,["H935"]],[13,15,[]]]},{"k":13411,"v":[[0,1,["H3947"]],[1,4,["H4994"]],[4,6,["H8451"]],[6,9,["H4480","H6310"]],[9,12,["H7760"]],[12,14,["H561"]],[14,17,["H3824"]]]},{"k":13412,"v":[[0,1,["H518"]],[1,3,["H7725"]],[3,4,["H5704"]],[4,6,["H7706"]],[6,11,["H1129"]],[11,16,["H5766"]],[16,17,["H7368"]],[17,20,["H4480","H168"]]]},{"k":13413,"v":[[0,5,["H7896"]],[5,6,["H1220"]],[6,7,["H5921"]],[7,8,["H6083"]],[8,13,["H211"]],[13,16,["H6697"]],[16,19,["H5158"]]]},{"k":13414,"v":[[0,3,["H7706"]],[3,5,["H1961"]],[5,7,["H1220"]],[7,12,["H8443"]],[12,14,["H3701"]]]},{"k":13415,"v":[[0,1,["H3588"]],[1,2,["H227"]],[2,7,["H6026"]],[7,8,["H5921"]],[8,10,["H7706"]],[10,14,["H5375"]],[14,16,["H6440"]],[16,17,["H413"]],[17,18,["H433"]]]},{"k":13416,"v":[[0,5,["H6279"]],[5,6,["H413"]],[6,11,["H8085"]],[11,16,["H7999"]],[16,18,["H5088"]]]},{"k":13417,"v":[[0,4,["H1504"]],[4,6,["H562"]],[6,11,["H6965"]],[11,16,["H216"]],[16,18,["H5050"]],[18,19,["H5921"]],[19,21,["H1870"]]]},{"k":13418,"v":[[0,1,["H3588"]],[1,5,["H8213"]],[5,9,["H559"]],[9,13,["H1466"]],[13,17,["H3467"]],[17,20,["H7807","H5869"]]]},{"k":13419,"v":[[0,3,["H4422"]],[3,5,["H336"]],[5,8,["H5355"]],[8,12,["H4422"]],[12,15,["H1252"]],[15,18,["H3709"]]]},{"k":13420,"v":[[0,2,["H347"]],[2,3,["H6030"]],[3,5,["H559"]]]},{"k":13421,"v":[[0,1,["H1571"]],[1,3,["H3117"]],[3,6,["H7879"]],[6,7,["H4805"]],[7,9,["H3027"]],[9,11,["H3513"]],[11,12,["H5921"]],[12,14,["H585"]]]},{"k":13422,"v":[[0,2,["H4310","H5414"]],[2,4,["H3045"]],[4,8,["H4672"]],[8,13,["H935"]],[13,15,["H5704"]],[15,17,["H8499"]]]},{"k":13423,"v":[[0,3,["H6186"]],[3,5,["H4941"]],[5,6,["H6440"]],[6,9,["H4390"]],[9,11,["H6310"]],[11,13,["H8433"]]]},{"k":13424,"v":[[0,3,["H3045"]],[3,5,["H4405"]],[5,9,["H6030"]],[9,12,["H995"]],[12,13,["H4100"]],[13,16,["H559"]],[16,18,[]]]},{"k":13425,"v":[[0,3,["H7378"]],[3,4,["H5978"]],[4,8,["H7230"]],[8,9,["H3581"]],[9,10,["H3808"]],[10,11,["H389"]],[11,12,["H1931"]],[12,14,["H7760"]],[14,17,[]]]},{"k":13426,"v":[[0,1,["H8033"]],[1,3,["H3477"]],[3,5,["H3198"]],[5,6,["H5973"]],[6,12,["H6403"]],[12,14,["H5331"]],[14,17,["H4480","H8199"]]]},{"k":13427,"v":[[0,1,["H2005"]],[1,3,["H1980"]],[3,4,["H6924"]],[4,8,["H369"]],[8,11,["H268"]],[11,14,["H3808"]],[14,15,["H995"]],[15,16,[]]]},{"k":13428,"v":[[0,4,["H8040"]],[4,8,["H6213"]],[8,11,["H3808"]],[11,12,["H2372"]],[12,15,["H5848"]],[15,20,["H3225"]],[20,23,["H3808"]],[23,24,["H7200"]],[24,25,[]]]},{"k":13429,"v":[[0,1,["H3588"]],[1,3,["H3045"]],[3,5,["H1870"]],[5,8,["H5978"]],[8,12,["H974"]],[12,17,["H3318"]],[17,19,["H2091"]]]},{"k":13430,"v":[[0,2,["H7272"]],[2,4,["H270"]],[4,6,["H838"]],[6,8,["H1870"]],[8,11,["H8104"]],[11,13,["H3808"]],[13,14,["H5186"]]]},{"k":13431,"v":[[0,1,["H3808"]],[1,5,["H4185"]],[5,8,["H4687"]],[8,11,["H8193"]],[11,14,["H6845"]],[14,16,["H561"]],[16,19,["H6310"]],[19,23,["H4480","H2706"]],[23,24,[]]]},{"k":13432,"v":[[0,2,["H1931"]],[2,5,["H259"]],[5,8,["H4310"]],[8,10,["H7725"]],[10,15,["H5315"]],[15,16,["H183"]],[16,20,["H6213"]]]},{"k":13433,"v":[[0,1,["H3588"]],[1,3,["H7999"]],[3,8,["H2706"]],[8,12,["H7227"]],[12,13,["H2007"]],[13,16,["H5973"]],[16,17,[]]]},{"k":13434,"v":[[0,1,["H5921","H3651"]],[1,4,["H926"]],[4,7,["H4480","H6440"]],[7,10,["H995"]],[10,13,["H6342"]],[13,14,["H4480"]],[14,15,[]]]},{"k":13435,"v":[[0,2,["H410"]],[2,6,["H7401","H3820"]],[6,9,["H7706"]],[9,10,["H926"]],[10,11,[]]]},{"k":13436,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,6,["H6789"]],[6,7,["H4480","H6440"]],[7,9,["H2822"]],[9,13,["H3680"]],[13,15,["H652"]],[15,18,["H4480","H6440"]]]},{"k":13437,"v":[[0,1,["H4069"]],[1,3,["H6256"]],[3,5,["H3808"]],[5,6,["H6845"]],[6,9,["H4480","H7706"]],[9,13,["H3045"]],[13,15,["H3808"]],[15,16,["H2372"]],[16,18,["H3117"]]]},{"k":13438,"v":[[0,2,["H5381"]],[2,4,["H1367"]],[4,8,["H1497"]],[8,9,["H5739"]],[9,11,["H7462"]],[11,12,[]]]},{"k":13439,"v":[[0,3,["H5090"]],[3,5,["H2543"]],[5,8,["H3490"]],[8,16,["H2254","H7794","H490"]]]},{"k":13440,"v":[[0,2,["H5186"]],[2,4,["H34"]],[4,8,["H4480","H1870"]],[8,10,["H6041"]],[10,13,["H776"]],[13,14,["H2244"]],[14,16,["H3162"]]]},{"k":13441,"v":[[0,1,["H2005"]],[1,4,["H6501"]],[4,7,["H4057"]],[7,10,["H3318"]],[10,13,["H6467"]],[13,15,["H7836"]],[15,18,["H2964"]],[18,20,["H6160"]],[20,22,["H3899"]],[22,28,["H5288"]]]},{"k":13442,"v":[[0,2,["H7114"]],[2,6,["H1098"]],[6,9,["H7704"]],[9,12,["H3953"]],[12,14,["H3754"]],[14,17,["H7563"]]]},{"k":13443,"v":[[0,4,["H6174"]],[4,6,["H3885"]],[6,7,["H4480","H1097"]],[7,8,["H3830"]],[8,12,["H369"]],[12,13,["H3682"]],[13,16,["H7135"]]]},{"k":13444,"v":[[0,3,["H7372"]],[3,6,["H4480","H2230"]],[6,9,["H2022"]],[9,11,["H2263"]],[11,13,["H6697"]],[13,15,["H4480","H1097"]],[15,18,["H4268"]]]},{"k":13445,"v":[[0,2,["H1497"]],[2,4,["H3490"]],[4,7,["H4480","H7699"]],[7,11,["H2254"]],[11,12,["H5921"]],[12,14,["H6041"]]]},{"k":13446,"v":[[0,5,["H1980"]],[5,6,["H6174"]],[6,7,["H1097"]],[7,8,["H3830"]],[8,12,["H5375"]],[12,14,["H6016"]],[14,17,["H7457"]]]},{"k":13447,"v":[[0,3,["H6671"]],[3,4,["H996"]],[4,6,["H7791"]],[6,8,["H1869"]],[8,10,["H3342"]],[10,13,["H6770"]]]},{"k":13448,"v":[[0,1,["H4962"]],[1,2,["H5008"]],[2,7,["H4480","H5892"]],[7,10,["H5315"]],[10,13,["H2491"]],[13,15,["H7768"]],[15,17,["H433"]],[17,18,["H7760"]],[18,19,["H3808"]],[19,20,["H8604"]],[20,22,[]]]},{"k":13449,"v":[[0,1,["H1992"]],[1,2,["H1961"]],[2,6,["H4775"]],[6,9,["H216"]],[9,11,["H5234"]],[11,12,["H3808"]],[12,14,["H1870"]],[14,16,["H3808"]],[16,17,["H3427"]],[17,20,["H5410"]],[20,21,[]]]},{"k":13450,"v":[[0,2,["H7523"]],[2,3,["H6965"]],[3,6,["H216"]],[6,7,["H6991"]],[7,9,["H6041"]],[9,11,["H34"]],[11,15,["H3915"]],[15,16,["H1961"]],[16,19,["H1590"]]]},{"k":13451,"v":[[0,2,["H5869"]],[2,6,["H5003"]],[6,7,["H8104"]],[7,10,["H5399"]],[10,11,["H559"]],[11,12,["H3808"]],[12,13,["H5869"]],[13,15,["H7789"]],[15,18,["H5643","H7760"]],[18,20,["H6440"]]]},{"k":13452,"v":[[0,3,["H2822"]],[3,6,["H2864"]],[6,7,["H1004"]],[7,11,["H2856"]],[11,16,["H3119"]],[16,18,["H3045"]],[18,19,["H3808"]],[19,21,["H216"]]]},{"k":13453,"v":[[0,1,["H3588"]],[1,3,["H1242"]],[3,8,["H3162"]],[8,12,["H6757"]],[12,13,["H3588"]],[13,15,["H5234"]],[15,21,["H1091"]],[21,26,["H6757"]]]},{"k":13454,"v":[[0,1,["H1931"]],[1,3,["H7031"]],[3,4,["H5921","H6440"]],[4,6,["H4325"]],[6,8,["H2513"]],[8,10,["H7043"]],[10,13,["H776"]],[13,15,["H6437"]],[15,16,["H3808"]],[16,18,["H1870"]],[18,21,["H3754"]]]},{"k":13455,"v":[[0,1,["H6723"]],[1,2,["H1571"]],[2,3,["H2527"]],[3,4,["H1497"]],[4,6,["H7950"]],[6,7,["H4325"]],[7,11,["H7585"]],[11,15,["H2398"]]]},{"k":13456,"v":[[0,2,["H7358"]],[2,4,["H7911"]],[4,7,["H7415"]],[7,10,["H4988"]],[10,16,["H3808"]],[16,17,["H5750"]],[17,18,["H2142"]],[18,20,["H5766"]],[20,23,["H7665"]],[23,26,["H6086"]]]},{"k":13457,"v":[[0,3,["H7462"]],[3,5,["H6135"]],[5,7,["H3205"]],[7,8,["H3808"]],[8,11,["H3808"]],[11,12,["H3190"]],[12,15,["H490"]]]},{"k":13458,"v":[[0,2,["H4900"]],[2,5,["H47"]],[5,8,["H3581"]],[8,11,["H6965"]],[11,13,["H3808"]],[13,16,["H539"]],[16,18,["H2416"]]]},{"k":13459,"v":[[0,4,["H5414"]],[4,9,["H983"]],[9,12,["H8172"]],[12,15,["H5869"]],[15,17,["H5921"]],[17,19,["H1870"]]]},{"k":13460,"v":[[0,3,["H7426"]],[3,7,["H4592"]],[7,10,["H369"]],[10,13,["H4355"]],[13,20,["H7092"]],[20,22,["H3605"]],[22,26,["H5243"]],[26,29,["H7218"]],[29,34,["H7641"]]]},{"k":13461,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,7,["H645"]],[7,8,["H4310"]],[8,13,["H3576"]],[13,15,["H7760"]],[15,17,["H4405"]],[17,18,["H408"]],[18,19,[]]]},{"k":13462,"v":[[0,2,["H6030"]],[2,3,["H1085"]],[3,5,["H7747"]],[5,7,["H559"]]]},{"k":13463,"v":[[0,1,["H4910"]],[1,3,["H6343"]],[3,5,["H5973"]],[5,8,["H6213"]],[8,9,["H7965"]],[9,13,["H4791"]]]},{"k":13464,"v":[[0,2,["H3426"]],[2,4,["H4557"]],[4,7,["H1416"]],[7,9,["H5921"]],[9,10,["H4310"]],[10,12,["H3808"]],[12,14,["H216"]],[14,15,["H6965"]]]},{"k":13465,"v":[[0,1,["H4100"]],[1,4,["H582"]],[4,6,["H6663"]],[6,7,["H5973"]],[7,8,["H410"]],[8,10,["H4100"]],[10,14,["H2135"]],[14,17,["H3205"]],[17,20,["H802"]]]},{"k":13466,"v":[[0,1,["H2005"]],[1,2,["H5704"]],[2,5,["H3394"]],[5,8,["H166"]],[8,9,["H3808"]],[9,12,["H3556"]],[12,15,["H2141","H3808"]],[15,18,["H5869"]]]},{"k":13467,"v":[[0,3,["H637","H3588"]],[3,4,["H582"]],[4,8,["H7415"]],[8,11,["H1121"]],[11,13,["H120"]],[13,17,["H8438"]]]},{"k":13468,"v":[[0,2,["H347"]],[2,3,["H6030"]],[3,5,["H559"]]]},{"k":13469,"v":[[0,1,["H4100"]],[1,4,["H5826"]],[4,8,["H3808"]],[8,9,["H3581"]],[9,11,["H3467"]],[11,14,["H2220"]],[14,17,["H3808"]],[17,18,["H5797"]]]},{"k":13470,"v":[[0,1,["H4100"]],[1,4,["H3289"]],[4,8,["H3808"]],[8,9,["H2451"]],[9,14,["H7230"]],[14,15,["H3045"]],[15,17,["H8454"]],[17,20,[]]]},{"k":13471,"v":[[0,1,["H854"]],[1,2,["H4310"]],[2,5,["H5046"]],[5,6,["H4405"]],[6,8,["H4310"]],[8,9,["H5397"]],[9,10,["H3318"]],[10,11,["H4480"]],[11,12,[]]]},{"k":13472,"v":[[0,1,["H7496"]],[1,4,["H2342"]],[4,6,["H4480","H8478"]],[6,8,["H4325"]],[8,11,["H7931"]],[11,12,[]]]},{"k":13473,"v":[[0,1,["H7585"]],[1,3,["H6174"]],[3,4,["H5048"]],[4,7,["H11"]],[7,9,["H369"]],[9,10,["H3682"]]]},{"k":13474,"v":[[0,3,["H5186"]],[3,5,["H6828"]],[5,6,["H5921"]],[6,9,["H8414"]],[9,11,["H8518"]],[11,13,["H776"]],[13,14,["H5921"]],[14,15,["H1099"]]]},{"k":13475,"v":[[0,3,["H6887"]],[3,5,["H4325"]],[5,9,["H5645"]],[9,12,["H6051"]],[12,15,["H1234","H3808"]],[15,16,["H8478"]],[16,17,[]]]},{"k":13476,"v":[[0,3,["H270"]],[3,5,["H6440"]],[5,8,["H3678"]],[8,10,["H6576"]],[10,12,["H6051"]],[12,13,["H5921"]],[13,14,[]]]},{"k":13477,"v":[[0,3,["H2328","H5921"]],[3,5,["H6440","H4325"]],[5,7,["H2706"]],[7,8,["H5704"]],[8,10,["H216"]],[10,12,["H2822"]],[12,16,["H8503"]]]},{"k":13478,"v":[[0,2,["H5982"]],[2,4,["H8064"]],[4,5,["H7322"]],[5,8,["H8539"]],[8,11,["H4480","H1606"]]]},{"k":13479,"v":[[0,2,["H7280"]],[2,4,["H3220"]],[4,7,["H3581"]],[7,11,["H8394"]],[11,14,["H4272"]],[14,16,["H7293"]]]},{"k":13480,"v":[[0,3,["H7307"]],[3,6,["H8235"]],[6,8,["H8064"]],[8,10,["H3027"]],[10,12,["H2490"]],[12,14,["H1281"]],[14,15,["H5175"]]]},{"k":13481,"v":[[0,1,["H2005"]],[1,2,["H428"]],[2,4,["H7098"]],[4,7,["H1870"]],[7,9,["H4100"]],[9,10,["H8102"]],[10,12,["H1697"]],[12,14,["H8085"]],[14,19,["H7482"]],[19,22,["H1369"]],[22,23,["H4310"]],[23,25,["H995"]]]},{"k":13482,"v":[[0,1,["H3254"]],[1,2,["H347"]],[2,3,["H5375"]],[3,5,["H4912"]],[5,7,["H559"]]]},{"k":13483,"v":[[0,2,["H410"]],[2,3,["H2416"]],[3,7,["H5493"]],[7,9,["H4941"]],[9,12,["H7706"]],[12,15,["H4843"]],[15,17,["H5315"]]]},{"k":13484,"v":[[0,1,["H3605"]],[1,3,["H5750"]],[3,5,["H5397"]],[5,11,["H7307"]],[11,13,["H433"]],[13,17,["H639"]]]},{"k":13485,"v":[[0,2,["H8193"]],[2,4,["H518"]],[4,5,["H1696"]],[5,6,["H5766"]],[6,7,["H518"]],[7,9,["H3956"]],[9,10,["H1897"]],[10,11,["H7423"]]]},{"k":13486,"v":[[0,2,["H2486"]],[2,3,["H518"]],[3,6,["H6663"]],[6,8,["H5704"]],[8,10,["H1478"]],[10,13,["H3808"]],[13,14,["H5493"]],[14,16,["H8538"]],[16,17,["H4480"]],[17,18,[]]]},{"k":13487,"v":[[0,2,["H6666"]],[2,5,["H2388"]],[5,8,["H3808"]],[8,11,["H7503"]],[11,13,["H3824"]],[13,15,["H3808"]],[15,16,["H2778"]],[16,22,["H4480","H3117"]]]},{"k":13488,"v":[[0,3,["H341"]],[3,4,["H1961"]],[4,7,["H7563"]],[7,13,["H6965"]],[13,17,["H5767"]]]},{"k":13489,"v":[[0,1,["H3588"]],[1,2,["H4100"]],[2,5,["H8615"]],[5,8,["H2611"]],[8,9,["H3588"]],[9,12,["H1214"]],[12,13,["H3588"]],[13,14,["H433"]],[14,16,["H7953"]],[16,18,["H5315"]]]},{"k":13490,"v":[[0,2,["H410"]],[2,3,["H8085"]],[3,5,["H6818"]],[5,6,["H3588"]],[6,7,["H6869"]],[7,8,["H935"]],[8,9,["H5921"]],[9,10,[]]]},{"k":13491,"v":[[0,4,["H6026"]],[4,5,["H5921"]],[5,7,["H7706"]],[7,10,["H3605","H6256"]],[10,12,["H7121"]],[12,13,["H433"]]]},{"k":13492,"v":[[0,3,["H3384"]],[3,7,["H3027"]],[7,9,["H410"]],[9,11,["H834"]],[11,13,["H5973"]],[13,15,["H7706"]],[15,18,["H3808"]],[18,19,["H3582"]]]},{"k":13493,"v":[[0,1,["H2005"]],[1,2,["H3605"]],[2,4,["H859"]],[4,6,["H2372"]],[6,8,["H4100"]],[8,12,["H2088"]],[12,13,["H1892"]],[13,14,["H1891"]]]},{"k":13494,"v":[[0,1,["H2088"]],[1,4,["H2506"]],[4,7,["H7563"]],[7,8,["H120"]],[8,9,["H5973"]],[9,10,["H410"]],[10,13,["H5159"]],[13,15,["H6184"]],[15,19,["H3947"]],[19,22,["H4480","H7706"]]]},{"k":13495,"v":[[0,1,["H518"]],[1,3,["H1121"]],[3,5,["H7235"]],[5,8,["H3926"]],[8,10,["H2719"]],[10,13,["H6631"]],[13,15,["H3808"]],[15,17,["H7646"]],[17,19,["H3899"]]]},{"k":13496,"v":[[0,3,["H8300"]],[3,8,["H6912"]],[8,10,["H4194"]],[10,13,["H490"]],[13,15,["H3808"]],[15,16,["H1058"]]]},{"k":13497,"v":[[0,1,["H518"]],[1,4,["H6651"]],[4,5,["H3701"]],[5,8,["H6083"]],[8,10,["H3559"]],[10,11,["H4403"]],[11,14,["H2563"]]]},{"k":13498,"v":[[0,3,["H3559"]],[3,7,["H6662"]],[7,11,["H3847"]],[11,14,["H5355"]],[14,16,["H2505"]],[16,18,["H3701"]]]},{"k":13499,"v":[[0,2,["H1129"]],[2,4,["H1004"]],[4,7,["H6211"]],[7,11,["H5521"]],[11,14,["H5341"]],[14,15,["H6213"]]]},{"k":13500,"v":[[0,3,["H6223"]],[3,6,["H7901"]],[6,10,["H3808"]],[10,12,["H622"]],[12,14,["H6491"]],[14,16,["H5869"]],[16,20,["H369"]]]},{"k":13501,"v":[[0,1,["H1091"]],[1,3,["H5381"]],[3,7,["H4325"]],[7,9,["H5492"]],[9,12,["H1589"]],[12,15,["H3915"]]]},{"k":13502,"v":[[0,3,["H6921"]],[3,6,["H5375"]],[6,9,["H1980"]],[9,14,["H8175"]],[14,19,["H4480","H4725"]]]},{"k":13503,"v":[[0,4,["H7993"]],[4,5,["H5921"]],[5,8,["H3808"]],[8,9,["H2550"]],[9,13,["H1272","H1272"]],[13,17,["H4480","H3027"]]]},{"k":13504,"v":[[0,3,["H5606"]],[3,5,["H3709"]],[5,6,["H5921"]],[6,10,["H8319","H5921"]],[10,15,["H4480","H4725"]]]},{"k":13505,"v":[[0,1,["H3588"]],[1,3,["H3426"]],[3,5,["H4161"]],[5,8,["H3701"]],[8,11,["H4725"]],[11,13,["H2091"]],[13,16,["H2212"]],[16,17,[]]]},{"k":13506,"v":[[0,1,["H1270"]],[1,3,["H3947"]],[3,7,["H4480","H6083"]],[7,9,["H5154"]],[9,11,["H6694"]],[11,15,["H68"]]]},{"k":13507,"v":[[0,2,["H7760"]],[2,4,["H7093"]],[4,6,["H2822"]],[6,9,["H2713","H1931"]],[9,10,["H3605"]],[10,11,["H8503"]],[11,13,["H68"]],[13,15,["H652"]],[15,20,["H6757"]]]},{"k":13508,"v":[[0,2,["H5158"]],[2,4,["H6555"]],[4,5,["H4480","H5973"]],[5,7,["H1481"]],[7,11,["H7911"]],[11,12,["H4480"]],[12,14,["H7272"]],[14,18,["H1809"]],[18,22,["H5128"]],[22,24,["H4480","H582"]]]},{"k":13509,"v":[[0,4,["H776"]],[4,6,["H4480"]],[6,8,["H3318"]],[8,9,["H3899"]],[9,11,["H8478"]],[11,15,["H2015"]],[15,18,["H3644"]],[18,19,["H784"]]]},{"k":13510,"v":[[0,2,["H68"]],[2,7,["H4725"]],[7,9,["H5601"]],[9,13,["H6083"]],[13,15,["H2091"]]]},{"k":13511,"v":[[0,4,["H5410"]],[4,6,["H3808"]],[6,7,["H5861"]],[7,8,["H3045"]],[8,12,["H344"]],[12,13,["H5869"]],[13,15,["H3808"]],[15,16,["H7805"]]]},{"k":13512,"v":[[0,2,["H7830"]],[2,3,["H1121"]],[3,5,["H3808"]],[5,6,["H1869"]],[6,8,["H3808"]],[8,11,["H7826"]],[11,12,["H5710"]],[12,13,["H5921"]],[13,14,[]]]},{"k":13513,"v":[[0,3,["H7971"]],[3,5,["H3027"]],[5,8,["H2496"]],[8,10,["H2015"]],[10,12,["H2022"]],[12,15,["H4480","H8328"]]]},{"k":13514,"v":[[0,3,["H1234"]],[3,4,["H2975"]],[4,7,["H6697"]],[7,10,["H5869"]],[10,11,["H7200"]],[11,12,["H3605"]],[12,14,["H3366"]]]},{"k":13515,"v":[[0,2,["H2280"]],[2,4,["H5104"]],[4,6,["H4480","H1065"]],[6,12,["H8587"]],[12,15,["H3318"]],[15,17,["H216"]]]},{"k":13516,"v":[[0,2,["H4480","H370"]],[2,4,["H2451"]],[4,6,["H4672"]],[6,8,["H335","H2088"]],[8,11,["H4725"]],[11,13,["H998"]]]},{"k":13517,"v":[[0,1,["H582"]],[1,2,["H3045"]],[2,3,["H3808"]],[3,5,["H6187"]],[5,7,["H3808"]],[7,10,["H4672"]],[10,13,["H776"]],[13,16,["H2416"]]]},{"k":13518,"v":[[0,2,["H8415"]],[2,3,["H559"]],[3,4,["H1931"]],[4,6,["H3808"]],[6,11,["H3220"]],[11,12,["H559"]],[12,15,["H369"]],[15,16,["H5978"]],[16,17,[]]]},{"k":13519,"v":[[0,2,["H3808"]],[2,4,["H5414"]],[4,6,["H2091","H5462","H8478"]],[6,7,["H3808"]],[7,9,["H3701"]],[9,11,["H8254"]],[11,14,["H4242"]],[14,15,[]]]},{"k":13520,"v":[[0,2,["H3808"]],[2,4,["H5541"]],[4,7,["H3800"]],[7,9,["H211"]],[9,12,["H3368"]],[12,13,["H7718"]],[13,16,["H5601"]]]},{"k":13521,"v":[[0,2,["H2091"]],[2,5,["H2137"]],[5,6,["H3808"]],[6,7,["H6186"]],[7,11,["H8545"]],[11,18,["H3627"]],[18,21,["H6337"]]]},{"k":13522,"v":[[0,1,["H3808"]],[1,5,["H2142"]],[5,7,["H7215"]],[7,10,["H1378"]],[10,13,["H4901"]],[13,15,["H2451"]],[15,18,["H4480","H6443"]]]},{"k":13523,"v":[[0,2,["H6357"]],[2,4,["H3568"]],[4,6,["H3808"]],[6,7,["H6186"]],[7,9,["H3808"]],[9,13,["H5541"]],[13,15,["H2889"]],[15,16,["H3800"]]]},{"k":13524,"v":[[0,1,["H4480","H370"]],[1,3,["H935"]],[3,4,["H2451"]],[4,6,["H335","H2088"]],[6,9,["H4725"]],[9,11,["H998"]]]},{"k":13525,"v":[[0,4,["H5956"]],[4,7,["H4480","H5869"]],[7,9,["H3605"]],[9,10,["H2416"]],[10,13,["H5641"]],[13,16,["H4480","H5775"]],[16,19,["H8064"]]]},{"k":13526,"v":[[0,1,["H11"]],[1,3,["H4194"]],[3,4,["H559"]],[4,7,["H8085"]],[7,9,["H8088"]],[9,13,["H241"]]]},{"k":13527,"v":[[0,1,["H430"]],[1,2,["H995"]],[2,4,["H1870"]],[4,7,["H1931"]],[7,8,["H3045","(H853)"]],[8,10,["H4725"]],[10,11,[]]]},{"k":13528,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,3,["H5027"]],[3,6,["H7098"]],[6,9,["H776"]],[9,11,["H7200"]],[11,12,["H8478"]],[12,14,["H3605"]],[14,15,["H8064"]]]},{"k":13529,"v":[[0,2,["H6213"]],[2,4,["H4948"]],[4,7,["H7307"]],[7,10,["H8505"]],[10,12,["H4325"]],[12,14,["H4060"]]]},{"k":13530,"v":[[0,3,["H6213"]],[3,5,["H2706"]],[5,8,["H4306"]],[8,11,["H1870"]],[11,14,["H2385"]],[14,17,["H6963"]]]},{"k":13531,"v":[[0,1,["H227"]],[1,4,["H7200"]],[4,7,["H5608"]],[7,10,["H3559"]],[10,12,["H1571"]],[12,16,["H2713"]]]},{"k":13532,"v":[[0,3,["H120"]],[3,5,["H559"]],[5,6,["H2005"]],[6,8,["H3374"]],[8,11,["H136"]],[11,12,["H1931"]],[12,14,["H2451"]],[14,17,["H5493"]],[17,19,["H4480","H7451"]],[19,21,["H998"]]]},{"k":13533,"v":[[0,1,["H3254"]],[1,2,["H347"]],[2,3,["H5375"]],[3,5,["H4912"]],[5,7,["H559"]]]},{"k":13534,"v":[[0,2,["H4310"]],[2,4,["H5414"]],[4,7,["H3391"]],[7,8,["H6924"]],[8,12,["H3117"]],[12,14,["H433"]],[14,15,["H8104"]],[15,16,[]]]},{"k":13535,"v":[[0,3,["H5216"]],[3,4,["H1984"]],[4,5,["H5921"]],[5,7,["H7218"]],[7,12,["H216"]],[12,14,["H1980"]],[14,16,["H2822"]]]},{"k":13536,"v":[[0,1,["H834"]],[1,3,["H1961"]],[3,6,["H3117"]],[6,9,["H2779"]],[9,12,["H5475"]],[12,14,["H433"]],[14,16,["H5921"]],[16,18,["H168"]]]},{"k":13537,"v":[[0,3,["H7706"]],[3,5,["H5750"]],[5,6,["H5978"]],[6,10,["H5288"]],[10,12,["H5439"]],[12,13,[]]]},{"k":13538,"v":[[0,3,["H7364"]],[3,5,["H1978"]],[5,7,["H2529"]],[7,10,["H6697"]],[10,13,["H6694","H5978"]],[13,14,["H6388"]],[14,16,["H8081"]]]},{"k":13539,"v":[[0,4,["H3318"]],[4,7,["H8179"]],[7,8,["H5921"]],[8,10,["H7176"]],[10,13,["H3559"]],[13,15,["H4186"]],[15,18,["H7339"]]]},{"k":13540,"v":[[0,3,["H5288"]],[3,4,["H7200"]],[4,8,["H2244"]],[8,11,["H3453"]],[11,12,["H6965"]],[12,15,["H5975"]]]},{"k":13541,"v":[[0,2,["H8269"]],[2,3,["H6113"]],[3,4,["H4405"]],[4,6,["H7760"]],[6,8,["H3709"]],[8,11,["H6310"]]]},{"k":13542,"v":[[0,2,["H5057"]],[2,3,["H2244"]],[3,5,["H6963"]],[5,8,["H3956"]],[8,9,["H1692"]],[9,15,["H2441"]]]},{"k":13543,"v":[[0,1,["H3588"]],[1,3,["H241"]],[3,4,["H8085"]],[4,8,["H833"]],[8,13,["H5869"]],[13,14,["H7200"]],[14,18,["H5749"]],[18,20,[]]]},{"k":13544,"v":[[0,1,["H3588"]],[1,3,["H4422"]],[3,5,["H6041"]],[5,7,["H7768"]],[7,10,["H3490"]],[10,15,["H3808"]],[15,17,["H5826"]],[17,18,[]]]},{"k":13545,"v":[[0,2,["H1293"]],[2,9,["H6"]],[9,10,["H935"]],[10,11,["H5921"]],[11,17,["H490"]],[17,18,["H3820"]],[18,22,["H7442"]]]},{"k":13546,"v":[[0,3,["H3847"]],[3,4,["H6664"]],[4,7,["H3847"]],[7,10,["H4941"]],[10,14,["H4598"]],[14,17,["H6797"]]]},{"k":13547,"v":[[0,2,["H1961"]],[2,3,["H5869"]],[3,6,["H5787"]],[6,8,["H7272"]],[8,10,["H589"]],[10,13,["H6455"]]]},{"k":13548,"v":[[0,1,["H595"]],[1,4,["H1"]],[4,7,["H34"]],[7,10,["H7379"]],[10,13,["H3045"]],[13,14,["H3808"]],[14,17,["H2713"]]]},{"k":13549,"v":[[0,3,["H7665"]],[3,5,["H4973"]],[5,8,["H5767"]],[8,10,["H7993"]],[10,12,["H2964"]],[12,16,["H4480","H8127"]]]},{"k":13550,"v":[[0,3,["H559"]],[3,6,["H1478"]],[6,7,["H5973"]],[7,9,["H7064"]],[9,13,["H7235"]],[13,15,["H3117"]],[15,18,["H2344"]]]},{"k":13551,"v":[[0,2,["H8328"]],[2,5,["H6605"]],[5,6,["H413"]],[6,8,["H4325"]],[8,11,["H2919"]],[11,14,["H3885"]],[14,17,["H7105"]]]},{"k":13552,"v":[[0,2,["H3519"]],[2,4,["H2319"]],[4,5,["H5978"]],[5,9,["H7198"]],[9,11,["H2498"]],[11,14,["H3027"]]]},{"k":13553,"v":[[0,5,["H8085"]],[5,7,["H3176"]],[7,10,["H1826"]],[10,11,["H3926"]],[11,13,["H6098"]]]},{"k":13554,"v":[[0,1,["H310"]],[1,3,["H1697"]],[3,7,["H8138","H3808"]],[7,10,["H4405"]],[10,11,["H5197"]],[11,12,["H5921"]],[12,13,[]]]},{"k":13555,"v":[[0,3,["H3176"]],[3,9,["H4306"]],[9,12,["H6473"]],[12,14,["H6310"]],[14,20,["H4456"]]]},{"k":13556,"v":[[0,3,["H7832"]],[3,4,["H413"]],[4,7,["H539"]],[7,9,["H3808"]],[9,12,["H216"]],[12,15,["H6440"]],[15,19,["H5307","H3808"]]]},{"k":13557,"v":[[0,3,["H977"]],[3,5,["H1870"]],[5,7,["H3427"]],[7,8,["H7218"]],[8,10,["H7931"]],[10,13,["H4428"]],[13,16,["H1416"]],[16,17,["H834"]],[17,20,["H5162"]],[20,22,["H57"]]]},{"k":13558,"v":[[0,2,["H6258"]],[2,6,["H6810","H3117"]],[6,7,["H4480"]],[7,12,["H7832","H5921"]],[12,13,["H834"]],[13,14,["H1"]],[14,18,["H3988"]],[18,21,["H7896"]],[21,22,["H5973"]],[22,24,["H3611"]],[24,27,["H6629"]]]},{"k":13559,"v":[[0,1,["H1571"]],[1,2,["H4100"]],[2,5,["H3581"]],[5,8,["H3027"]],[8,12,["H5921"]],[12,14,["H3624"]],[14,16,["H6"]]]},{"k":13560,"v":[[0,2,["H2639"]],[2,4,["H3720"]],[4,7,["H1565"]],[7,8,["H6207"]],[8,11,["H6723"]],[11,14,["H570"]],[14,15,["H7722"]],[15,17,["H4875"]]]},{"k":13561,"v":[[0,3,["H6998"]],[3,4,["H4408"]],[4,5,["H5921"]],[5,7,["H7880"]],[7,9,["H7574"]],[9,10,["H8328"]],[10,13,["H3899"]]]},{"k":13562,"v":[[0,4,["H1644"]],[4,5,["H4480"]],[5,6,["H1460"]],[6,9,["H7321"]],[9,10,["H5921"]],[10,15,["H1590"]]]},{"k":13563,"v":[[0,2,["H7931"]],[2,5,["H6178"]],[5,8,["H5158"]],[8,10,["H2356"]],[10,13,["H6083"]],[13,17,["H3710"]]]},{"k":13564,"v":[[0,1,["H996"]],[1,3,["H7880"]],[3,5,["H5101"]],[5,6,["H8478"]],[6,8,["H2738"]],[8,12,["H5596"]]]},{"k":13565,"v":[[0,3,["H1121"]],[3,5,["H5036"]],[5,6,["H1571"]],[6,7,["H1121"]],[7,10,["H1097","H8034"]],[10,13,["H5217"]],[13,14,["H4480"]],[14,16,["H776"]]]},{"k":13566,"v":[[0,2,["H6258"]],[2,3,["H1961"]],[3,6,["H5058"]],[6,9,["H1961"]],[9,11,["H4405"]]]},{"k":13567,"v":[[0,2,["H8581"]],[2,6,["H7368"]],[6,7,["H4480"]],[7,10,["H2820"]],[10,11,["H3808"]],[11,13,["H7536"]],[13,16,["H4480","H6440"]]]},{"k":13568,"v":[[0,1,["H3588"]],[1,4,["H6605"]],[4,6,["H3499"]],[6,8,["H6031"]],[8,14,["H7971"]],[14,16,["H7448"]],[16,17,["H4480","H6440"]],[17,18,[]]]},{"k":13569,"v":[[0,1,["H5921"]],[1,3,["H3225"]],[3,5,["H6965"]],[5,7,["H6526"]],[7,10,["H7971"]],[10,12,["H7272"]],[12,16,["H5549"]],[16,17,["H5921"]],[17,20,["H734"]],[20,23,["H343"]]]},{"k":13570,"v":[[0,2,["H5420"]],[2,4,["H5410"]],[4,7,["H3276"]],[7,9,["H1942"]],[9,12,["H3808"]],[12,13,["H5826"]]]},{"k":13571,"v":[[0,2,["H857"]],[2,7,["H7342"]],[7,9,["H6556"]],[9,12,["H8478"]],[12,14,["H7722"]],[14,17,["H1556"]],[17,19,[]]]},{"k":13572,"v":[[0,1,["H1091"]],[1,3,["H2015"]],[3,4,["H5921"]],[4,7,["H7291"]],[7,9,["H5082"]],[9,12,["H7307"]],[12,15,["H3444"]],[15,17,["H5674"]],[17,20,["H5645"]]]},{"k":13573,"v":[[0,2,["H6258"]],[2,4,["H5315"]],[4,7,["H8210"]],[7,8,["H5921"]],[8,11,["H3117"]],[11,13,["H6040"]],[13,17,["H270"]],[17,18,[]]]},{"k":13574,"v":[[0,2,["H6106"]],[2,4,["H5365"]],[4,5,["H4480","H5921"]],[5,10,["H3915"]],[10,13,["H6207"]],[13,16,["H7901","H3808"]]]},{"k":13575,"v":[[0,3,["H7230"]],[3,4,["H3581"]],[4,10,["H3830"]],[10,11,["H2664"]],[11,15,["H247"]],[15,18,["H6310"]],[18,21,["H3801"]]]},{"k":13576,"v":[[0,3,["H3384"]],[3,7,["H2563"]],[7,11,["H4911"]],[11,13,["H6083"]],[13,15,["H665"]]]},{"k":13577,"v":[[0,2,["H7768"]],[2,3,["H413"]],[3,8,["H3808"]],[8,9,["H6030"]],[9,13,["H5975"]],[13,16,["H995"]],[16,18,[]]]},{"k":13578,"v":[[0,3,["H2015"]],[3,4,["H393"]],[4,9,["H6108"]],[9,10,["H3027"]],[10,14,["H7852"]],[14,15,[]]]},{"k":13579,"v":[[0,4,["H5375"]],[4,5,["H413"]],[5,7,["H7307"]],[7,12,["H7392"]],[12,16,["H4127"]],[16,18,["H7738"]]]},{"k":13580,"v":[[0,1,["H3588"]],[1,3,["H3045"]],[3,7,["H7725"]],[7,10,["H4194"]],[10,14,["H1004"]],[14,15,["H4150"]],[15,17,["H3605"]],[17,18,["H2416"]]]},{"k":13581,"v":[[0,1,["H389"]],[1,4,["H3808"]],[4,6,["H7971"]],[6,8,["H3027"]],[8,11,["H1164"]],[11,12,["H518"]],[12,14,["H7769"]],[14,17,["H6365"]]]},{"k":13582,"v":[[0,2,["H3808"]],[2,4,["H1058"]],[4,10,["H7186","H3117"]],[10,14,["H5315"]],[14,15,["H5701"]],[15,18,["H34"]]]},{"k":13583,"v":[[0,1,["H3588"]],[1,4,["H6960"]],[4,5,["H2896"]],[5,7,["H7451"]],[7,8,["H935"]],[8,14,["H3176"]],[14,16,["H216"]],[16,18,["H935"]],[18,19,["H652"]]]},{"k":13584,"v":[[0,2,["H4578"]],[2,3,["H7570"]],[3,5,["H1826"]],[5,6,["H3808"]],[6,8,["H3117"]],[8,10,["H6040"]],[10,11,["H6923"]],[11,12,[]]]},{"k":13585,"v":[[0,2,["H1980"]],[2,3,["H6937"]],[3,4,["H3808"]],[4,6,["H2535"]],[6,9,["H6965"]],[9,12,["H7768"]],[12,15,["H6951"]]]},{"k":13586,"v":[[0,2,["H1961"]],[2,4,["H251"]],[4,6,["H8577"]],[6,9,["H7453"]],[9,11,["H1323","H3284"]]]},{"k":13587,"v":[[0,2,["H5785"]],[2,4,["H7835"]],[4,5,["H4480","H5921"]],[5,9,["H6106"]],[9,11,["H2787"]],[11,12,["H4480"]],[12,13,["H2721"]]]},{"k":13588,"v":[[0,2,["H3658"]],[2,4,["H1961"]],[4,7,["H60"]],[7,10,["H5748"]],[10,13,["H6963"]],[13,17,["H1058"]]]},{"k":13589,"v":[[0,2,["H3772"]],[2,4,["H1285"]],[4,7,["H5869"]],[7,8,["H4100"]],[8,12,["H995"]],[12,13,["H5921"]],[13,15,["H1330"]]]},{"k":13590,"v":[[0,2,["H4100"]],[2,3,["H2506"]],[3,5,["H433"]],[5,9,["H4480","H4605"]],[9,12,["H5159"]],[12,15,["H7706"]],[15,18,["H4480","H4791"]]]},{"k":13591,"v":[[0,2,["H3808"]],[2,3,["H343"]],[3,6,["H5767"]],[6,9,["H5235"]],[9,13,["H6466"]],[13,15,["H205"]]]},{"k":13592,"v":[[0,2,["H3808"]],[2,3,["H1931"]],[3,4,["H7200"]],[4,6,["H1870"]],[6,8,["H5608"]],[8,9,["H3605"]],[9,11,["H6806"]]]},{"k":13593,"v":[[0,1,["H518"]],[1,4,["H1980"]],[4,5,["H5973"]],[5,6,["H7723"]],[6,10,["H7272"]],[10,12,["H2363"]],[12,13,["H5921"]],[13,14,["H4820"]]]},{"k":13594,"v":[[0,4,["H8254"]],[4,7,["H6664"]],[7,8,["H3976"]],[8,10,["H433"]],[10,12,["H3045"]],[12,14,["H8538"]]]},{"k":13595,"v":[[0,1,["H518"]],[1,3,["H838"]],[3,5,["H5186"]],[5,7,["H4480"]],[7,9,["H1870"]],[9,12,["H3820"]],[12,13,["H1980"]],[13,14,["H310"]],[14,16,["H5869"]],[16,20,["H3971"]],[20,22,["H1692"]],[22,25,["H3709"]]]},{"k":13596,"v":[[0,4,["H2232"]],[4,7,["H312"]],[7,8,["H398"]],[8,12,["H6631"]],[12,15,["H8327"]]]},{"k":13597,"v":[[0,1,["H518"]],[1,3,["H3820"]],[3,6,["H6601"]],[6,7,["H5921"]],[7,9,["H802"]],[9,15,["H693"]],[15,16,["H5921"]],[16,18,["H7453"]],[18,19,["H6607"]]]},{"k":13598,"v":[[0,4,["H802"]],[4,5,["H2912"]],[5,7,["H312"]],[7,10,["H312"]],[10,12,["H3766"]],[12,13,["H5921"]],[13,14,[]]]},{"k":13599,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,6,["H2154"]],[6,8,["H1931"]],[8,11,["H5771"]],[11,17,["H6414"]]]},{"k":13600,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,5,["H784"]],[5,7,["H398"]],[7,8,["H5704"]],[8,9,["H11"]],[9,13,["H8327"]],[13,14,["H3605"]],[14,16,["H8393"]]]},{"k":13601,"v":[[0,1,["H518"]],[1,4,["H3988"]],[4,6,["H4941"]],[6,9,["H5650"]],[9,13,["H519"]],[13,16,["H7378"]],[16,17,["H5978"]],[17,18,[]]]},{"k":13602,"v":[[0,1,["H4100"]],[1,5,["H6213"]],[5,6,["H3588"]],[6,7,["H410"]],[7,9,["H6965"]],[9,11,["H3588"]],[11,13,["H6485"]],[13,14,["H4100"]],[14,17,["H7725"]],[17,18,[]]]},{"k":13603,"v":[[0,2,["H3808"]],[2,5,["H6213"]],[5,9,["H990"]],[9,10,["H6213"]],[10,15,["H259"]],[15,16,["H3559"]],[16,20,["H7358"]]]},{"k":13604,"v":[[0,1,["H518"]],[1,4,["H4513"]],[4,6,["H1800"]],[6,9,["H4480","H2656"]],[9,14,["H5869"]],[14,17,["H490"]],[17,19,["H3615"]]]},{"k":13605,"v":[[0,3,["H398"]],[3,5,["H6595"]],[5,7,["H905"]],[7,10,["H3490"]],[10,12,["H3808"]],[12,13,["H398"]],[13,14,["H4480"]]]},{"k":13606,"v":[[0,1,["H3588"]],[1,4,["H4480","H5271"]],[4,8,["H1431"]],[8,14,["H1"]],[14,18,["H5148"]],[18,22,["H517"]],[22,23,["H4480","H990"]]]},{"k":13607,"v":[[0,1,["H518"]],[1,4,["H7200"]],[4,6,["H6"]],[6,8,["H4480","H1097"]],[8,10,["H3830"]],[10,13,["H34"]],[13,14,["H369"]],[14,15,["H3682"]]]},{"k":13608,"v":[[0,1,["H518"]],[1,3,["H2504"]],[3,5,["H3808"]],[5,6,["H1288"]],[6,13,["H2552"]],[13,16,["H4480","H1488"]],[16,19,["H3532"]]]},{"k":13609,"v":[[0,1,["H518"]],[1,5,["H5130"]],[5,7,["H3027"]],[7,8,["H5921"]],[8,10,["H3490"]],[10,11,["H3588"]],[11,13,["H7200"]],[13,15,["H5833"]],[15,18,["H8179"]]]},{"k":13610,"v":[[0,4,["H3802"]],[4,5,["H5307"]],[5,9,["H4480","H7929"]],[9,12,["H248"]],[12,14,["H7665"]],[14,17,["H4480","H7070"]]]},{"k":13611,"v":[[0,1,["H3588"]],[1,2,["H343"]],[2,4,["H410"]],[4,7,["H6343"]],[7,8,["H413"]],[8,15,["H4480","H7613"]],[15,17,["H3201"]],[17,18,["H3808"]],[18,19,[]]]},{"k":13612,"v":[[0,1,["H518"]],[1,4,["H7760"]],[4,5,["H2091"]],[5,7,["H3689"]],[7,10,["H559"]],[10,14,["H3800"]],[14,18,["H4009"]]]},{"k":13613,"v":[[0,1,["H518"]],[1,3,["H8055"]],[3,4,["H3588"]],[4,6,["H2428"]],[6,8,["H7227"]],[8,10,["H3588"]],[10,12,["H3027"]],[12,14,["H4672"]],[14,15,["H3524"]]]},{"k":13614,"v":[[0,1,["H518"]],[1,3,["H7200"]],[3,5,["H216"]],[5,6,["H3588"]],[6,8,["H1984"]],[8,11,["H3394"]],[11,12,["H1980"]],[12,14,["H3368"]]]},{"k":13615,"v":[[0,3,["H3820"]],[3,6,["H5643"]],[6,7,["H6601"]],[7,10,["H6310"]],[10,12,["H5401"]],[12,14,["H3027"]]]},{"k":13616,"v":[[0,1,["H1931"]],[1,2,["H1571"]],[2,5,["H5771"]],[5,11,["H6416"]],[11,12,["H3588"]],[12,16,["H3584"]],[16,18,["H410"]],[18,21,["H4480","H4605"]]]},{"k":13617,"v":[[0,1,["H518"]],[1,3,["H8055"]],[3,6,["H6365"]],[6,10,["H8130"]],[10,15,["H5782"]],[15,16,["H3588"]],[16,17,["H7451"]],[17,18,["H4672"]],[18,19,[]]]},{"k":13618,"v":[[0,1,["H3808"]],[1,4,["H5414"]],[4,6,["H2441"]],[6,8,["H2398"]],[8,10,["H7592"]],[10,12,["H423"]],[12,15,["H5315"]]]},{"k":13619,"v":[[0,1,["H518"]],[1,3,["H4962"]],[3,6,["H168"]],[6,7,["H559"]],[7,8,["H3808"]],[8,10,["H4310"]],[10,12,["H5414"]],[12,15,["H4480","H1320"]],[15,17,["H3808"]],[17,19,["H7646"]]]},{"k":13620,"v":[[0,2,["H1616"]],[2,4,["H3808"]],[4,5,["H3885"]],[5,8,["H2351"]],[8,11,["H6605"]],[11,13,["H1817"]],[13,16,["H734"]]]},{"k":13621,"v":[[0,1,["H518"]],[1,3,["H3680"]],[3,5,["H6588"]],[5,7,["H121"]],[7,9,["H2934"]],[9,11,["H5771"]],[11,14,["H2243"]]]},{"k":13622,"v":[[0,3,["H6206"]],[3,5,["H7227"]],[5,6,["H1995"]],[6,10,["H937"]],[10,12,["H4940"]],[12,13,["H2865"]],[13,18,["H1826"]],[18,22,["H3318","H3808"]],[22,25,["H6607"]]]},{"k":13623,"v":[[0,2,["H4310"]],[2,4,["H5414"]],[4,5,["H8085"]],[5,7,["H2005"]],[7,9,["H8420"]],[9,13,["H7706"]],[13,15,["H6030"]],[15,20,["H376","H7379"]],[20,22,["H3789"]],[22,24,["H5612"]]]},{"k":13624,"v":[[0,1,["H518"]],[1,4,["H5375"]],[4,6,["H5921"]],[6,8,["H7926"]],[8,10,["H6029"]],[10,14,["H5850"]],[14,16,[]]]},{"k":13625,"v":[[0,3,["H5046"]],[3,7,["H4557"]],[7,10,["H6806"]],[10,11,["H3644"]],[11,13,["H5057"]],[13,18,["H7126"]],[18,19,[]]]},{"k":13626,"v":[[0,1,["H518"]],[1,3,["H127"]],[3,4,["H2199"]],[4,5,["H5921"]],[5,10,["H8525"]],[10,11,["H3162"]],[11,13,["H1058"]]]},{"k":13627,"v":[[0,1,["H518"]],[1,4,["H398"]],[4,6,["H3581"]],[6,8,["H1097"]],[8,9,["H3701"]],[9,14,["H1167"]],[14,17,["H5301"]],[17,19,["H5315"]]]},{"k":13628,"v":[[0,2,["H2336"]],[2,3,["H3318"]],[3,4,["H8478"]],[4,6,["H2406"]],[6,8,["H890"]],[8,9,["H8478"]],[9,11,["H8184"]],[11,13,["H1697"]],[13,15,["H347"]],[15,17,["H8552"]]]},{"k":13629,"v":[[0,2,["H428"]],[2,3,["H7969"]],[3,4,["H376"]],[4,5,["H7673"]],[5,7,["H4480","H6030","(H853)"]],[7,8,["H347"]],[8,9,["H3588"]],[9,10,["H1931"]],[10,12,["H6662"]],[12,16,["H5869"]]]},{"k":13630,"v":[[0,3,["H2734"]],[3,5,["H639"]],[5,7,["H453"]],[7,9,["H1121"]],[9,11,["H1292"]],[11,13,["H940"]],[13,16,["H4480","H4940"]],[16,18,["H7410"]],[18,20,["H347"]],[20,23,["H639"]],[23,24,["H2734"]],[24,25,["H5921"]],[25,27,["H6663"]],[27,28,["H5315"]],[28,31,["H4480","H430"]]]},{"k":13631,"v":[[0,4,["H7969"]],[4,5,["H7453"]],[5,8,["H639"]],[8,9,["H2734"]],[9,10,["H5921","H834"]],[10,13,["H4672"]],[13,14,["H3808"]],[14,15,["H4617"]],[15,19,["H7561","(H853)"]],[19,20,["H347"]]]},{"k":13632,"v":[[0,2,["H453"]],[2,4,["H2442"]],[4,5,["(H853)"]],[5,6,["H347"]],[6,8,["H1697"]],[8,9,["H3588"]],[9,10,["H1992"]],[10,12,["H2205","H3117"]],[12,13,["H4480"]],[13,14,[]]]},{"k":13633,"v":[[0,2,["H453"]],[2,3,["H7200"]],[3,4,["H3588"]],[4,7,["H369"]],[7,8,["H4617"]],[8,11,["H6310"]],[11,14,["H7969"]],[14,15,["H376"]],[15,18,["H639"]],[18,20,["H2734"]]]},{"k":13634,"v":[[0,2,["H453"]],[2,4,["H1121"]],[4,6,["H1292"]],[6,8,["H940"]],[8,9,["H6030"]],[9,11,["H559"]],[11,12,["H589"]],[12,14,["H6810"]],[14,16,["H859"]],[16,19,["H3453","H3117"]],[19,20,["H5921","H3651"]],[20,23,["H2119"]],[23,25,["H3372"]],[25,27,["H4480","H2331"]],[27,30,["H1843"]]]},{"k":13635,"v":[[0,2,["H559"]],[2,3,["H3117"]],[3,5,["H1696"]],[5,7,["H7230"]],[7,9,["H8141"]],[9,11,["H3045"]],[11,12,["H2451"]]]},{"k":13636,"v":[[0,1,["H403"]],[1,5,["H7307"]],[5,7,["H582"]],[7,10,["H5397"]],[10,13,["H7706"]],[13,16,["H995"]]]},{"k":13637,"v":[[0,1,["H7227"]],[1,4,["H3808"]],[4,6,["H2449"]],[6,10,["H2205"]],[10,11,["H995"]],[11,12,["H4941"]]]},{"k":13638,"v":[[0,1,["H3651"]],[1,3,["H559"]],[3,4,["H8085"]],[4,7,["H589"]],[7,8,["H637"]],[8,10,["H2331"]],[10,12,["H1843"]]]},{"k":13639,"v":[[0,1,["H2005"]],[1,3,["H3176"]],[3,6,["H1697"]],[6,9,["H238"]],[9,10,["H5704"]],[10,12,["H8394"]],[12,13,["H5704"]],[13,16,["H2713"]],[16,19,["H4405"]]]},{"k":13640,"v":[[0,3,["H995"]],[3,4,["H5704"]],[4,7,["H2009"]],[7,10,["H369"]],[10,11,["H4480"]],[11,14,["H3198"]],[14,15,["H347"]],[15,18,["H6030"]],[18,20,["H561"]]]},{"k":13641,"v":[[0,1,["H6435"]],[1,4,["H559"]],[4,8,["H4672"]],[8,9,["H2451"]],[9,10,["H410"]],[10,13,["H5086"]],[13,14,["H3808"]],[14,15,["H376"]]]},{"k":13642,"v":[[0,4,["H3808"]],[4,5,["H6186"]],[5,7,["H4405"]],[7,8,["H413"]],[8,10,["H3808"]],[10,13,["H7725"]],[13,17,["H561"]]]},{"k":13643,"v":[[0,3,["H2865"]],[3,5,["H6030"]],[5,6,["H3808"]],[6,7,["H5750"]],[7,10,["H6275","H4480"]],[10,11,["H4405"]]]},{"k":13644,"v":[[0,4,["H3176"]],[4,5,["H3588"]],[5,7,["H1696"]],[7,8,["H3808"]],[8,9,["H3588"]],[9,11,["H5975"]],[11,13,["H6030"]],[13,14,["H3808"]],[14,15,["H5750"]]]},{"k":13645,"v":[[0,3,["H589"]],[3,5,["H6030"]],[5,6,["H637"]],[6,8,["H2506"]],[8,9,["H589"]],[9,10,["H637"]],[10,12,["H2331"]],[12,14,["H1843"]]]},{"k":13646,"v":[[0,1,["H3588"]],[1,4,["H4390"]],[4,6,["H4405"]],[6,8,["H7307"]],[8,9,["H990"]],[9,11,["H6693"]],[11,12,[]]]},{"k":13647,"v":[[0,1,["H2009"]],[1,3,["H990"]],[3,6,["H3196"]],[6,9,["H3808"]],[9,10,["H6605"]],[10,15,["H1234"]],[15,17,["H2319"]],[17,18,["H178"]]]},{"k":13648,"v":[[0,3,["H1696"]],[3,8,["H7304"]],[8,11,["H6605"]],[11,13,["H8193"]],[13,15,["H6030"]]]},{"k":13649,"v":[[0,3,["H408"]],[3,6,["H4994"]],[6,7,["H5375"]],[7,9,["H376"]],[9,10,["H6440"]],[10,11,["H3808"]],[11,16,["H3655"]],[16,17,["H413"]],[17,18,["H120"]]]},{"k":13650,"v":[[0,1,["H3588"]],[1,3,["H3045"]],[3,4,["H3808"]],[4,8,["H3655"]],[8,13,["H6213"]],[13,15,["H4592"]],[15,18,["H5375"]]]},{"k":13651,"v":[[0,1,["H199"]],[1,2,["H347"]],[2,5,["H4994"]],[5,6,["H8085"]],[6,8,["H4405"]],[8,10,["H238"]],[10,12,["H3605"]],[12,14,["H1697"]]]},{"k":13652,"v":[[0,1,["H2009"]],[1,2,["H4994"]],[2,5,["H6605"]],[5,7,["H6310"]],[7,9,["H3956"]],[9,11,["H1696"]],[11,14,["H2441"]]]},{"k":13653,"v":[[0,2,["H561"]],[2,7,["H3476"]],[7,10,["H3820"]],[10,13,["H8193"]],[13,15,["H4448"]],[15,16,["H1847"]],[16,17,["H1305"]]]},{"k":13654,"v":[[0,2,["H7307"]],[2,4,["H410"]],[4,6,["H6213"]],[6,10,["H5397"]],[10,13,["H7706"]],[13,17,["H2421"]]]},{"k":13655,"v":[[0,1,["H518"]],[1,3,["H3201"]],[3,4,["H7725"]],[4,10,["H6186"]],[10,11,["H6440"]],[11,14,["H3320"]]]},{"k":13656,"v":[[0,1,["H2005"]],[1,2,["H589"]],[2,7,["H6310"]],[7,9,["H410"]],[9,11,["H589"]],[11,12,["H1571"]],[12,14,["H7169"]],[14,18,["H4480","H2563"]]]},{"k":13657,"v":[[0,1,["H2009"]],[1,3,["H367"]],[3,5,["H3808"]],[5,8,["H1204"]],[8,9,["H3808"]],[9,12,["H405"]],[12,14,["H3513"]],[14,15,["H5921"]],[15,16,[]]]},{"k":13658,"v":[[0,1,["H389"]],[1,4,["H559"]],[4,7,["H241"]],[7,11,["H8085"]],[11,13,["H6963"]],[13,16,["H4405"]],[16,17,[]]]},{"k":13659,"v":[[0,1,["H589"]],[1,3,["H2134"]],[3,4,["H1097"]],[4,5,["H6588"]],[5,6,["H595"]],[6,8,["H2643"]],[8,9,["H3808"]],[9,12,["H5771"]],[12,14,[]]]},{"k":13660,"v":[[0,1,["H2005"]],[1,3,["H4672"]],[3,4,["H8569"]],[4,5,["H5921"]],[5,8,["H2803"]],[8,12,["H341"]]]},{"k":13661,"v":[[0,2,["H7760"]],[2,4,["H7272"]],[4,7,["H5465"]],[7,9,["H8104"]],[9,10,["H3605"]],[10,12,["H734"]]]},{"k":13662,"v":[[0,1,["H2005"]],[1,3,["H2063"]],[3,6,["H3808"]],[6,7,["H6663"]],[7,10,["H6030"]],[10,12,["H3588"]],[12,13,["H433"]],[13,15,["H7235"]],[15,17,["H4480","H582"]]]},{"k":13663,"v":[[0,1,["H4069"]],[1,4,["H7378"]],[4,5,["H413"]],[5,7,["H3588"]],[7,10,["H3808"]],[10,11,["H6030"]],[11,13,["H3605"]],[13,16,["H1697"]]]},{"k":13664,"v":[[0,1,["H3588"]],[1,2,["H410"]],[2,3,["H1696"]],[3,4,["H259"]],[4,6,["H8147"]],[6,9,["H7789"]],[9,11,["H3808"]]]},{"k":13665,"v":[[0,3,["H2472"]],[3,6,["H2384"]],[6,9,["H3915"]],[9,12,["H8639"]],[12,13,["H5307"]],[13,14,["H5921"]],[14,15,["H376"]],[15,17,["H8572"]],[17,18,["H5921"]],[18,20,["H4904"]]]},{"k":13666,"v":[[0,1,["H227"]],[1,3,["H1540"]],[3,5,["H241"]],[5,7,["H376"]],[7,9,["H2856"]],[9,11,["H4561"]]]},{"k":13667,"v":[[0,4,["H5493"]],[4,5,["H120"]],[5,8,["H4639"]],[8,10,["H3680"]],[10,11,["H1466"]],[11,13,["H4480","H1397"]]]},{"k":13668,"v":[[0,3,["H2820"]],[3,5,["H5315"]],[5,6,["H4480"]],[6,8,["H7845"]],[8,11,["H2416"]],[11,13,["H4480","H5674"]],[13,16,["H7973"]]]},{"k":13669,"v":[[0,3,["H3198"]],[3,6,["H4341"]],[6,7,["H5921"]],[7,9,["H4904"]],[9,12,["H7230"]],[12,15,["H6106"]],[15,17,["H386"]],[17,18,[]]]},{"k":13670,"v":[[0,4,["H2416"]],[4,5,["H2092"]],[5,6,["H3899"]],[6,9,["H5315"]],[9,10,["H8378"]],[10,11,["H3978"]]]},{"k":13671,"v":[[0,2,["H1320"]],[2,5,["H3615"]],[5,10,["H4480","H7210"]],[10,13,["H6106"]],[13,16,["H3808"]],[16,17,["H7200"]],[17,19,["H8192"]]]},{"k":13672,"v":[[0,3,["H5315"]],[3,5,["H7126"]],[5,8,["H7845"]],[8,11,["H2416"]],[11,14,["H4191"]]]},{"k":13673,"v":[[0,1,["H518"]],[1,3,["H3426"]],[3,5,["H4397"]],[5,6,["H5921"]],[6,9,["H3887"]],[9,10,["H259"]],[10,11,["H4480"]],[11,13,["H505"]],[13,15,["H5046"]],[15,17,["H120"]],[17,19,["H3476"]]]},{"k":13674,"v":[[0,4,["H2603"]],[4,8,["H559"]],[8,9,["H6308"]],[9,13,["H4480","H3381"]],[13,16,["H7845"]],[16,19,["H4672"]],[19,21,["H3724"]]]},{"k":13675,"v":[[0,2,["H1320"]],[2,5,["H7375"]],[5,8,["H4480","H5290"]],[8,11,["H7725"]],[11,14,["H3117"]],[14,17,["H5934"]]]},{"k":13676,"v":[[0,3,["H6279"]],[3,4,["H413"]],[4,5,["H433"]],[5,10,["H7521"]],[10,16,["H7200"]],[16,18,["H6440"]],[18,20,["H8643"]],[20,24,["H7725"]],[24,26,["H582"]],[26,28,["H6666"]]]},{"k":13677,"v":[[0,2,["H7789"]],[2,3,["H5921"]],[3,4,["H376"]],[4,8,["H559"]],[8,11,["H2398"]],[11,13,["H5753"]],[13,17,["H3477"]],[17,20,["H7737"]],[20,22,["H3808"]]]},{"k":13678,"v":[[0,3,["H6299"]],[3,5,["H5315"]],[5,7,["H4480","H5674"]],[7,10,["H7845"]],[10,13,["H2416"]],[13,15,["H7200"]],[15,17,["H216"]]]},{"k":13679,"v":[[0,1,["H2005"]],[1,2,["H3605"]],[2,3,["H428"]],[3,5,["H6466"]],[5,6,["H410"]],[6,7,["H6471","H7969"]],[7,8,["H5973"]],[8,9,["H1397"]]]},{"k":13680,"v":[[0,3,["H7725"]],[3,5,["H5315"]],[5,6,["H4480"]],[6,8,["H7845"]],[8,11,["H215"]],[11,14,["H216"]],[14,17,["H2416"]]]},{"k":13681,"v":[[0,2,["H7181"]],[2,4,["H347"]],[4,5,["H8085"]],[5,10,["H2790"]],[10,12,["H595"]],[12,14,["H1696"]]]},{"k":13682,"v":[[0,1,["H518"]],[1,3,["H3426"]],[3,7,["H4405"]],[7,8,["H7725"]],[8,10,["H1696"]],[10,11,["H3588"]],[11,13,["H2654"]],[13,15,["H6663"]],[15,16,[]]]},{"k":13683,"v":[[0,1,["H518"]],[1,2,["H369"]],[2,3,["H8085"]],[3,8,["H2790"]],[8,12,["H502"]],[12,14,["H2451"]]]},{"k":13684,"v":[[0,2,["H453"]],[2,3,["H6030"]],[3,5,["H559"]]]},{"k":13685,"v":[[0,1,["H8085"]],[1,3,["H4405"]],[3,6,["H2450"]],[6,10,["H238"]],[10,16,["H3045"]]]},{"k":13686,"v":[[0,1,["H3588"]],[1,3,["H241"]],[3,4,["H974"]],[4,5,["H4405"]],[5,8,["H2441"]],[8,9,["H2938"]],[9,10,["H398"]]]},{"k":13687,"v":[[0,3,["H977"]],[3,6,["H4941"]],[6,9,["H3045"]],[9,10,["H996"]],[10,12,["H4100"]],[12,14,["H2896"]]]},{"k":13688,"v":[[0,1,["H3588"]],[1,2,["H347"]],[2,4,["H559"]],[4,7,["H6663"]],[7,9,["H410"]],[9,12,["H5493"]],[12,14,["H4941"]]]},{"k":13689,"v":[[0,3,["H3576"]],[3,4,["H5921"]],[4,6,["H4941"]],[6,8,["H2671"]],[8,10,["H605"]],[10,11,["H1097"]],[11,12,["H6588"]]]},{"k":13690,"v":[[0,1,["H4310"]],[1,2,["H1397"]],[2,5,["H347"]],[5,8,["H8354"]],[8,9,["H3933"]],[9,11,["H4325"]]]},{"k":13691,"v":[[0,2,["H732"]],[2,4,["H2274"]],[4,5,["H5973"]],[5,7,["H6466"]],[7,9,["H205"]],[9,11,["H1980"]],[11,12,["H5973"]],[12,13,["H7562"]],[13,14,["H376"]]]},{"k":13692,"v":[[0,1,["H3588"]],[1,4,["H559"]],[4,6,["H5532"]],[6,8,["H1397"]],[8,9,["H3808"]],[9,13,["H7521"]],[13,15,["H5973"]],[15,16,["H430"]]]},{"k":13693,"v":[[0,1,["H3651"]],[1,2,["H8085"]],[2,6,["H376"]],[6,8,["H3824"]],[8,11,["H2486"]],[11,13,["H410"]],[13,18,["H4480","H7562"]],[18,22,["H7706"]],[22,27,["H4480","H5766"]]]},{"k":13694,"v":[[0,1,["H3588"]],[1,3,["H6467"]],[3,6,["H120"]],[6,9,["H7999"]],[9,15,["H376"]],[15,17,["H4672"]],[17,21,["H734"]]]},{"k":13695,"v":[[0,1,["H637"]],[1,2,["H551"]],[2,3,["H410"]],[3,5,["H3808"]],[5,7,["H7561"]],[7,8,["H3808"]],[8,11,["H7706"]],[11,12,["H5791"]],[12,13,["H4941"]]]},{"k":13696,"v":[[0,1,["H4310"]],[1,6,["H6485","H5921"]],[6,9,["H776"]],[9,11,["H4310"]],[11,13,["H7760"]],[13,15,["H3605"]],[15,16,["H8398"]]]},{"k":13697,"v":[[0,1,["H518"]],[1,3,["H7760"]],[3,5,["H3820"]],[5,6,["H413"]],[6,10,["H622"]],[10,11,["H413"]],[11,14,["H7307"]],[14,17,["H5397"]]]},{"k":13698,"v":[[0,1,["H3605"]],[1,2,["H1320"]],[2,4,["H1478"]],[4,5,["H3162"]],[5,7,["H120"]],[7,10,["H7725"]],[10,11,["H5921"]],[11,12,["H6083"]]]},{"k":13699,"v":[[0,1,["H518"]],[1,5,["H998"]],[5,6,["H8085"]],[6,7,["H2063"]],[7,8,["H238"]],[8,11,["H6963"]],[11,14,["H4405"]]]},{"k":13700,"v":[[0,2,["H637"]],[2,5,["H8130"]],[5,6,["H4941"]],[6,7,["H2280"]],[7,11,["H7561"]],[11,15,["H3524"]],[15,16,["H6662"]]]},{"k":13701,"v":[[0,5,["H559"]],[5,8,["H4428"]],[8,11,["H1100"]],[11,13,["H413"]],[13,14,["H5081"]],[14,17,["H7563"]]]},{"k":13702,"v":[[0,6,["H834"]],[6,7,["H5375"]],[7,8,["H3808"]],[8,10,["H6440"]],[10,12,["H8269"]],[12,13,["H3808"]],[13,14,["H5234"]],[14,16,["H7771"]],[16,18,["H6440"]],[18,20,["H1800"]],[20,21,["H3588"]],[21,23,["H3605"]],[23,26,["H4639"]],[26,29,["H3027"]]]},{"k":13703,"v":[[0,3,["H7281"]],[3,6,["H4191"]],[6,9,["H5971"]],[9,12,["H1607"]],[12,14,["H2676","H3915"]],[14,17,["H5674"]],[17,20,["H47"]],[20,24,["H5493"]],[24,25,["H3808"]],[25,26,["H3027"]]]},{"k":13704,"v":[[0,1,["H3588"]],[1,3,["H5869"]],[3,5,["H5921"]],[5,7,["H1870"]],[7,9,["H376"]],[9,12,["H7200"]],[12,13,["H3605"]],[13,15,["H6806"]]]},{"k":13705,"v":[[0,3,["H369"]],[3,4,["H2822"]],[4,5,["H369"]],[5,8,["H6757"]],[8,9,["H8033"]],[9,11,["H6466"]],[11,13,["H205"]],[13,16,["H5641"]]]},{"k":13706,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H7760"]],[5,6,["H5921"]],[6,7,["H376"]],[7,8,["H5750"]],[8,14,["H1980"]],[14,16,["H4941"]],[16,17,["H413"]],[17,18,["H410"]]]},{"k":13707,"v":[[0,5,["H7489"]],[5,7,["H3524"]],[7,8,["H3808"]],[8,9,["H2714"]],[9,11,["H5975"]],[11,12,["H312"]],[12,15,["H8478"]]]},{"k":13708,"v":[[0,1,["H3651"]],[1,3,["H5234"]],[3,5,["H4566"]],[5,8,["H2015"]],[8,12,["H3915"]],[12,17,["H1792"]]]},{"k":13709,"v":[[0,2,["H5606"]],[2,4,["H8478"]],[4,6,["H7563"]],[6,9,["H4725"]],[9,10,["H7200"]],[10,12,[]]]},{"k":13710,"v":[[0,1,["H834","H3651","H5921"]],[1,4,["H5493"]],[4,5,["H4480","H310"]],[5,9,["H3808"]],[9,10,["H7919"]],[10,11,["H3605"]],[11,14,["H1870"]]]},{"k":13711,"v":[[0,6,["H6818"]],[6,9,["H1800"]],[9,11,["H935"]],[11,12,["H5921"]],[12,16,["H8085"]],[16,18,["H6818"]],[18,21,["H6041"]]]},{"k":13712,"v":[[0,2,["H1931"]],[2,4,["H8252"]],[4,5,["H4310"]],[5,9,["H7561"]],[9,13,["H5641"]],[13,15,["H6440"]],[15,16,["H4310"]],[16,19,["H7789"]],[19,25,["H5921"]],[25,27,["H1471"]],[27,29,["H5921"]],[29,31,["H120"]],[31,32,["H3162"]]]},{"k":13713,"v":[[0,3,["H120","H2611"]],[3,5,["H4480","H4427"]],[5,8,["H5971"]],[8,10,["H4480","H4170"]]]},{"k":13714,"v":[[0,4,["H3588"]],[4,7,["H559"]],[7,8,["H413"]],[8,9,["H410"]],[9,12,["H5375"]],[12,16,["H3808"]],[16,17,["H2254"]],[17,19,[]]]},{"k":13715,"v":[[0,4,["H2372"]],[4,5,["H1107"]],[5,6,["H3384"]],[6,7,["H859"]],[7,9,["H518"]],[9,12,["H6466"]],[12,13,["H5766"]],[13,16,["H3254"]],[16,17,["H3808"]],[17,18,[]]]},{"k":13716,"v":[[0,7,["H4480","H5973"]],[7,10,["H7999"]],[10,12,["H3588"]],[12,14,["H3988"]],[14,16,["H3588"]],[16,17,["H859"]],[17,18,["H977"]],[18,20,["H3808"]],[20,21,["H589"]],[21,23,["H1696"]],[23,24,["H4100"]],[24,26,["H3045"]]]},{"k":13717,"v":[[0,2,["H376"]],[2,4,["H3824"]],[4,5,["H559"]],[5,10,["H2450"]],[10,11,["H1397"]],[11,12,["H8085"]],[12,14,[]]]},{"k":13718,"v":[[0,1,["H347"]],[1,3,["H1696"]],[3,4,["H3808"]],[4,5,["H1847"]],[5,8,["H1697"]],[8,10,["H3808"]],[10,11,["H7919"]]]},{"k":13719,"v":[[0,2,["H15"]],[2,5,["H347"]],[5,8,["H974"]],[8,9,["H5704"]],[9,11,["H5331"]],[11,12,["H5921"]],[12,15,["H8666"]],[15,17,["H205"]],[17,18,["H376"]]]},{"k":13720,"v":[[0,1,["H3588"]],[1,3,["H3254"]],[3,4,["H6588"]],[4,5,["H5921"]],[5,7,["H2403"]],[7,9,["H5606"]],[9,12,["H996"]],[12,15,["H7235"]],[15,17,["H561"]],[17,19,["H410"]]]},{"k":13721,"v":[[0,1,["H453"]],[1,2,["H6030"]],[2,5,["H559"]]]},{"k":13722,"v":[[0,1,["H2803"]],[1,3,["H2063"]],[3,6,["H4941"]],[6,9,["H559"]],[9,11,["H6664"]],[11,15,["H4480","H410"]]]},{"k":13723,"v":[[0,1,["H3588"]],[1,3,["H559"]],[3,4,["H4100"]],[4,5,["H5532"]],[5,12,["H4100"]],[12,13,["H3276"]],[13,23,["H4480","H2403"]]]},{"k":13724,"v":[[0,1,["H589"]],[1,3,["H7725","H4405"]],[3,7,["H7453"]],[7,8,["H5973"]],[8,9,[]]]},{"k":13725,"v":[[0,1,["H5027"]],[1,4,["H8064"]],[4,6,["H7200"]],[6,8,["H7789"]],[8,10,["H7834"]],[10,13,["H1361"]],[13,14,["H4480"]],[14,15,[]]]},{"k":13726,"v":[[0,1,["H518"]],[1,3,["H2398"]],[3,4,["H4100"]],[4,5,["H6466"]],[5,12,["H6588"]],[12,14,["H7231"]],[14,15,["H4100"]],[15,16,["H6213"]],[16,19,[]]]},{"k":13727,"v":[[0,1,["H518"]],[1,4,["H6663"]],[4,5,["H4100"]],[5,6,["H5414"]],[6,9,["H176"]],[9,10,["H4100"]],[10,11,["H3947"]],[11,15,["H4480","H3027"]]]},{"k":13728,"v":[[0,2,["H7562"]],[2,6,["H376"]],[6,8,["H3644"]],[8,12,["H6666"]],[12,16,["H1121"]],[16,18,["H120"]]]},{"k":13729,"v":[[0,5,["H4480","H7230"]],[5,7,["H6217"]],[7,13,["H2199"]],[13,16,["H7768"]],[16,21,["H4480","H2220"]],[21,24,["H7227"]]]},{"k":13730,"v":[[0,2,["H3808"]],[2,3,["H559"]],[3,4,["H346"]],[4,6,["H433"]],[6,8,["H6213"]],[8,10,["H5414"]],[10,11,["H2158"]],[11,14,["H3915"]]]},{"k":13731,"v":[[0,2,["H502"]],[2,7,["H4480","H929"]],[7,10,["H776"]],[10,14,["H2449"]],[14,17,["H4480","H5775"]],[17,19,["H8064"]]]},{"k":13732,"v":[[0,1,["H8033"]],[1,3,["H6817"]],[3,5,["H3808"]],[5,7,["H6030"]],[7,8,["H4480","H6440"]],[8,11,["H1347"]],[11,14,["H7451"]]]},{"k":13733,"v":[[0,1,["H389"]],[1,2,["H410"]],[2,4,["H3808"]],[4,5,["H8085"]],[5,6,["H7723"]],[6,7,["H3808"]],[7,10,["H7706"]],[10,11,["H7789"]],[11,12,[]]]},{"k":13734,"v":[[0,1,["H637","H3588"]],[1,3,["H559"]],[3,6,["H3808"]],[6,7,["H7789"]],[7,10,["H1779"]],[10,12,["H6440"]],[12,15,["H2342"]],[15,18,[]]]},{"k":13735,"v":[[0,2,["H6258"]],[2,3,["H3588"]],[3,6,["H369"]],[6,10,["H6485"]],[10,13,["H639"]],[13,16,["H3045"]],[16,18,["H3808"]],[18,20,["H3966"]],[20,21,["H6580"]]]},{"k":13736,"v":[[0,3,["H347"]],[3,4,["H6475"]],[4,6,["H6310"]],[6,8,["H1892"]],[8,10,["H3527"]],[10,11,["H4405"]],[11,12,["H1097"]],[12,13,["H1847"]]]},{"k":13737,"v":[[0,1,["H453"]],[1,3,["H3254"]],[3,5,["H559"]]]},{"k":13738,"v":[[0,1,["H3803"]],[1,4,["H2191"]],[4,8,["H2331"]],[8,10,["H3588"]],[10,13,["H5750"]],[13,15,["H4405"]],[15,17,["H433"]],[17,18,[]]]},{"k":13739,"v":[[0,3,["H5375"]],[3,5,["H1843"]],[5,7,["H4480","H7350"]],[7,10,["H5414"]],[10,11,["H6664"]],[11,14,["H6466"]]]},{"k":13740,"v":[[0,1,["H3588"]],[1,2,["H551"]],[2,4,["H4405"]],[4,6,["H3808"]],[6,8,["H8267"]],[8,12,["H8549"]],[12,14,["H1844"]],[14,16,["H5973"]],[16,17,[]]]},{"k":13741,"v":[[0,1,["H2005"]],[1,2,["H410"]],[2,4,["H3524"]],[4,6,["H3988"]],[6,7,["H3808"]],[7,11,["H3524"]],[11,13,["H3581"]],[13,15,["H3820"]]]},{"k":13742,"v":[[0,5,["H2421","H3808"]],[5,8,["H7563"]],[8,10,["H5414"]],[10,11,["H4941"]],[11,14,["H6041"]]]},{"k":13743,"v":[[0,2,["H1639"]],[2,3,["H3808"]],[3,5,["H5869"]],[5,8,["H4480","H6662"]],[8,10,["H854"]],[10,11,["H4428"]],[11,16,["H3678"]],[16,20,["H3427"]],[20,23,["H5331"]],[23,27,["H1361"]]]},{"k":13744,"v":[[0,2,["H518"]],[2,5,["H631"]],[5,7,["H2131"]],[7,10,["H3920"]],[10,12,["H2256"]],[12,14,["H6040"]]]},{"k":13745,"v":[[0,3,["H5046"]],[3,6,["H6467"]],[6,9,["H6588"]],[9,10,["H3588"]],[10,13,["H1396"]]]},{"k":13746,"v":[[0,2,["H1540"]],[2,5,["H241"]],[5,7,["H4148"]],[7,9,["H559"]],[9,10,["H3588"]],[10,12,["H7725"]],[12,14,["H4480","H205"]]]},{"k":13747,"v":[[0,1,["H518"]],[1,3,["H8085"]],[3,5,["H5647"]],[5,9,["H3615"]],[9,11,["H3117"]],[11,13,["H2896"]],[13,16,["H8141"]],[16,18,["H5273"]]]},{"k":13748,"v":[[0,2,["H518"]],[2,4,["H8085"]],[4,5,["H3808"]],[5,8,["H5674"]],[8,11,["H7973"]],[11,15,["H1478"]],[15,16,["H1097"]],[16,17,["H1847"]]]},{"k":13749,"v":[[0,3,["H2611"]],[3,5,["H3820"]],[5,7,["H7760"]],[7,8,["H639"]],[8,10,["H7768"]],[10,11,["H3808"]],[11,12,["H3588"]],[12,14,["H631"]],[14,15,[]]]},{"k":13750,"v":[[0,1,["H5315"]],[1,2,["H4191"]],[2,4,["H5290"]],[4,7,["H2416"]],[7,11,["H6945"]]]},{"k":13751,"v":[[0,2,["H2502"]],[2,4,["H6041"]],[4,7,["H6040"]],[7,9,["H1540"]],[9,11,["H241"]],[11,13,["H3906"]]]},{"k":13752,"v":[[0,2,["H637"]],[2,6,["H5496"]],[6,11,["H4480","H6310","H6862"]],[11,15,["H7338"]],[15,16,["H8478"]],[16,19,["H3808"]],[19,20,["H4164"]],[20,26,["H5183"]],[26,29,["H7979"]],[29,32,["H4390"]],[32,34,["H1880"]]]},{"k":13753,"v":[[0,4,["H4390"]],[4,6,["H1779"]],[6,9,["H7563"]],[9,10,["H1779"]],[10,12,["H4941"]],[12,14,["H8551"]],[14,16,[]]]},{"k":13754,"v":[[0,1,["H3588"]],[1,4,["H2534"]],[4,6,["H6435"]],[6,10,["H5496"]],[10,13,["H5607"]],[13,16,["H7227"]],[16,17,["H3724"]],[17,18,["H408"]],[18,19,["H5186"]],[19,20,[]]]},{"k":13755,"v":[[0,3,["H6186"]],[3,5,["H7769"]],[5,7,["H3808"]],[7,8,["H1222"]],[8,10,["H3605"]],[10,12,["H3981"]],[12,14,["H3581"]]]},{"k":13756,"v":[[0,1,["H7602"]],[1,2,["H408"]],[2,4,["H3915"]],[4,6,["H5971"]],[6,9,["H5927"]],[9,12,["H8478"]]]},{"k":13757,"v":[[0,2,["H8104"]],[2,4,["H6437","H408","H413"]],[4,5,["H205"]],[5,6,["H3588","H5921"]],[6,7,["H2088"]],[7,10,["H977"]],[10,13,["H4480","H6040"]]]},{"k":13758,"v":[[0,1,["H2005"]],[1,2,["H410"]],[2,3,["H7682"]],[3,6,["H3581"]],[6,7,["H4310"]],[7,8,["H3384"]],[8,10,["H3644"]]]},{"k":13759,"v":[[0,1,["H4310"]],[1,3,["H6485","H5921"]],[3,6,["H1870"]],[6,8,["H4310"]],[8,10,["H559"]],[10,13,["H6466"]],[13,14,["H5766"]]]},{"k":13760,"v":[[0,1,["H2142"]],[1,2,["H3588"]],[2,4,["H7679"]],[4,6,["H6467"]],[6,7,["H834"]],[7,8,["H376"]],[8,9,["H7789"]]]},{"k":13761,"v":[[0,1,["H3605"]],[1,2,["H120"]],[2,4,["H2372"]],[4,6,["H582"]],[6,8,["H5027"]],[8,11,["H4480","H7350"]]]},{"k":13762,"v":[[0,1,["H2005"]],[1,2,["H410"]],[2,4,["H7689"]],[4,7,["H3045"]],[7,9,["H3808"]],[9,10,["H3808"]],[10,13,["H4557"]],[13,16,["H8141"]],[16,19,["H2714"]]]},{"k":13763,"v":[[0,1,["H3588"]],[1,4,["H1639"]],[4,6,["H5198"]],[6,8,["H4325"]],[8,11,["H2212"]],[11,12,["H4306"]],[12,16,["H108"]],[16,17,[]]]},{"k":13764,"v":[[0,1,["H834"]],[1,3,["H7834"]],[3,5,["H5140"]],[5,7,["H7491"]],[7,8,["H5921"]],[8,9,["H120"]],[9,10,["H7227"]]]},{"k":13765,"v":[[0,1,["H637","H518"]],[1,4,["H995"]],[4,6,["H4666"]],[6,9,["H5645"]],[9,12,["H8663"]],[12,15,["H5521"]]]},{"k":13766,"v":[[0,1,["H2005"]],[1,3,["H6566"]],[3,5,["H216"]],[5,6,["H5921"]],[6,9,["H3680"]],[9,11,["H8328"]],[11,14,["H3220"]]]},{"k":13767,"v":[[0,1,["H3588"]],[1,4,["H1777"]],[4,7,["H5971"]],[7,9,["H5414"]],[9,10,["H400"]],[10,12,["H4342"]]]},{"k":13768,"v":[[0,1,["H5921"]],[1,2,["H3709"]],[2,4,["H3680"]],[4,6,["H216"]],[6,8,["H6680"]],[8,13,["H5921"]],[13,18,["H6293"]]]},{"k":13769,"v":[[0,2,["H7452"]],[2,4,["H5046"]],[4,5,["H5921"]],[5,8,["H4735"]],[8,9,["H637"]],[9,10,["H5921"]],[10,12,["H5927"]]]},{"k":13770,"v":[[0,2,["H2063"]],[2,3,["H637"]],[3,5,["H3820"]],[5,6,["H2729"]],[6,9,["H5425"]],[9,13,["H4480","H4725"]]]},{"k":13771,"v":[[0,2,["H8085","H8085"]],[2,4,["H7267"]],[4,7,["H6963"]],[7,10,["H1899"]],[10,13,["H3318"]],[13,16,["H4480","H6310"]]]},{"k":13772,"v":[[0,2,["H3474"]],[2,4,["H8478"]],[4,6,["H3605"]],[6,7,["H8064"]],[7,10,["H216"]],[10,11,["H5921"]],[11,13,["H3671"]],[13,16,["H776"]]]},{"k":13773,"v":[[0,1,["H310"]],[1,4,["H6963"]],[4,5,["H7580"]],[5,7,["H7481"]],[7,10,["H6963"]],[10,13,["H1347"]],[13,17,["H3808"]],[17,18,["H6117"]],[18,20,["H3588"]],[20,22,["H6963"]],[22,24,["H8085"]]]},{"k":13774,"v":[[0,1,["H410"]],[1,2,["H7481"]],[2,3,["H6381"]],[3,6,["H6963"]],[6,8,["H1419"]],[8,9,["H6213"]],[9,13,["H3808"]],[13,14,["H3045"]]]},{"k":13775,"v":[[0,1,["H3588"]],[1,3,["H559"]],[3,6,["H7950"]],[6,7,["H1933"]],[7,11,["H776"]],[11,15,["H4306"]],[15,16,["H1653"]],[16,20,["H4306"]],[20,21,["H1653"]],[21,24,["H5797"]]]},{"k":13776,"v":[[0,3,["H2856"]],[3,5,["H3027"]],[5,7,["H3605"]],[7,8,["H120"]],[8,10,["H3605"]],[10,11,["H376"]],[11,13,["H3045"]],[13,15,["H4639"]]]},{"k":13777,"v":[[0,3,["H2416"]],[3,4,["H935"]],[4,5,["H1119"]],[5,6,["H695"]],[6,8,["H7931"]],[8,11,["H4585"]]]},{"k":13778,"v":[[0,2,["H4480"]],[2,4,["H2315"]],[4,5,["H935"]],[5,7,["H5492"]],[7,9,["H7135"]],[9,13,["H4480","H4215"]]]},{"k":13779,"v":[[0,3,["H4480","H5397"]],[3,5,["H410"]],[5,6,["H7140"]],[6,8,["H5414"]],[8,11,["H7341"]],[11,14,["H4325"]],[14,16,["H4164"]]]},{"k":13780,"v":[[0,1,["H637"]],[1,3,["H7377"]],[3,5,["H2959"]],[5,8,["H5645"]],[8,10,["H6327"]],[10,12,["H216"]],[12,13,["H6051"]]]},{"k":13781,"v":[[0,2,["H1931"]],[2,4,["H2015"]],[4,6,["H4524"]],[6,9,["H8458"]],[9,13,["H6466"]],[13,14,["H3605","H834"]],[14,16,["H6680"]],[16,18,["H5921"]],[18,20,["H6440"]],[20,23,["H8398"]],[23,26,["H776"]]]},{"k":13782,"v":[[0,5,["H4672"]],[5,6,["H518"]],[6,8,["H7626"]],[8,9,["H518"]],[9,12,["H776"]],[12,13,["H518"]],[13,15,["H2617"]]]},{"k":13783,"v":[[0,1,["H238"]],[1,3,["H2063"]],[3,5,["H347"]],[5,7,["H5975"]],[7,9,["H995"]],[9,11,["H6381"]],[11,14,["H410"]]]},{"k":13784,"v":[[0,3,["H3045"]],[3,5,["H433"]],[5,6,["H7760","H5921"]],[6,11,["H216"]],[11,14,["H6051"]],[14,16,["H3313"]]]},{"k":13785,"v":[[0,3,["H3045","H5921"]],[3,5,["H4657"]],[5,8,["H5645"]],[8,11,["H4652"]],[11,16,["H8549"]],[16,18,["H1843"]]]},{"k":13786,"v":[[0,1,["H834"]],[1,3,["H899"]],[3,5,["H2525"]],[5,8,["H8252"]],[8,10,["H776"]],[10,13,["H4480","H1864"]],[13,14,[]]]},{"k":13787,"v":[[0,3,["H5973"]],[3,6,["H7554"]],[6,8,["H7834"]],[8,11,["H2389"]],[11,15,["H3332"]],[15,17,["H7209"]]]},{"k":13788,"v":[[0,1,["H3045"]],[1,3,["H4100"]],[3,6,["H559"]],[6,11,["H3808"]],[11,12,["H6186"]],[12,16,["H4480","H6440"]],[16,18,["H2822"]]]},{"k":13789,"v":[[0,4,["H5608"]],[4,6,["H3588"]],[6,8,["H1696"]],[8,9,["H518"]],[9,11,["H376"]],[11,12,["H559"]],[12,13,["H3588"]],[13,18,["H1104"]]]},{"k":13790,"v":[[0,2,["H6258"]],[2,4,["H7200"]],[4,5,["H3808"]],[5,7,["H925"]],[7,8,["H216"]],[8,9,["H1931"]],[9,13,["H7834"]],[13,16,["H7307"]],[16,17,["H5674"]],[17,19,["H2891"]],[19,20,[]]]},{"k":13791,"v":[[0,2,["H2091"]],[2,3,["H857"]],[3,7,["H4480","H6828"]],[7,8,["H5921"]],[8,9,["H433"]],[9,11,["H3372"]],[11,12,["H1935"]]]},{"k":13792,"v":[[0,3,["H7706"]],[3,5,["H3808"]],[5,8,["H4672"]],[8,11,["H7689"]],[11,13,["H3581"]],[13,16,["H4941"]],[16,19,["H7230"]],[19,21,["H6666"]],[21,24,["H3808"]],[24,25,["H6031"]]]},{"k":13793,"v":[[0,1,["H376"]],[1,3,["H3651"]],[3,4,["H3372"]],[4,7,["H7200"]],[7,8,["H3808"]],[8,9,["H3605"]],[9,12,["H2450"]],[12,14,["H3820"]]]},{"k":13794,"v":[[0,3,["H3068"]],[3,4,["H6030","(H853)"]],[4,5,["H347"]],[5,7,["H4480"]],[7,9,["H5591"]],[9,11,["H559"]]]},{"k":13795,"v":[[0,1,["H4310"]],[1,3,["H2088"]],[3,5,["H2821"]],[5,6,["H6098"]],[6,8,["H4405"]],[8,9,["H1097"]],[9,10,["H1847"]]]},{"k":13796,"v":[[0,2,["H247"]],[2,3,["H4994"]],[3,5,["H2504"]],[5,8,["H1397"]],[8,12,["H7592"]],[12,16,["H3045"]],[16,18,[]]]},{"k":13797,"v":[[0,1,["H375"]],[1,2,["H1961"]],[2,8,["H3245"]],[8,11,["H776"]],[11,12,["H5046"]],[12,13,["H518"]],[13,16,["H3045","H998"]]]},{"k":13798,"v":[[0,1,["H4310"]],[1,3,["H7760"]],[3,5,["H4461"]],[5,7,["H3588"]],[7,9,["H3045"]],[9,10,["H176"]],[10,11,["H4310"]],[11,13,["H5186"]],[13,15,["H6957"]],[15,16,["H5921"]],[16,17,[]]]},{"k":13799,"v":[[0,1,["H5921","H4100"]],[1,4,["H134"]],[4,6,["H2883"]],[6,7,["H176"]],[7,8,["H4310"]],[8,9,["H3384"]],[9,11,["H6438"]],[11,12,["H68"]],[12,13,[]]]},{"k":13800,"v":[[0,3,["H1242"]],[3,4,["H3556"]],[4,5,["H7442"]],[5,6,["H3162"]],[6,8,["H3605"]],[8,10,["H1121"]],[10,12,["H430"]],[12,15,["H7321"]]]},{"k":13801,"v":[[0,4,["H5526"]],[4,6,["H3220"]],[6,8,["H1817"]],[8,12,["H1518"]],[12,18,["H3318"]],[18,21,["H4480","H7358"]]]},{"k":13802,"v":[[0,3,["H7760"]],[3,5,["H6051"]],[5,7,["H3830"]],[7,11,["H6205"]],[11,13,["H2854"]],[13,15,[]]]},{"k":13803,"v":[[0,3,["H7665"]],[3,4,["H5921"]],[4,7,["H2706"]],[7,10,["H7760"]],[10,11,["H1280"]],[11,13,["H1817"]]]},{"k":13804,"v":[[0,2,["H559"]],[2,3,["H5704","H6311"]],[3,6,["H935"]],[6,8,["H3808"]],[8,9,["H3254"]],[9,11,["H6311"]],[11,14,["H1347"]],[14,15,["H1530"]],[15,17,["H7896"]]]},{"k":13805,"v":[[0,3,["H6680"]],[3,5,["H1242"]],[5,8,["H4480","H3117"]],[8,12,["H7837"]],[12,14,["H3045"]],[14,16,["H4725"]]]},{"k":13806,"v":[[0,5,["H270"]],[5,8,["H3671"]],[8,11,["H776"]],[11,14,["H7563"]],[14,17,["H5287"]],[17,19,["H4480"]],[19,20,[]]]},{"k":13807,"v":[[0,3,["H2015"]],[3,5,["H2563"]],[5,8,["H2368"]],[8,11,["H3320"]],[11,12,["H3644"]],[12,14,["H3830"]]]},{"k":13808,"v":[[0,4,["H4480","H7563"]],[4,6,["H216"]],[6,8,["H4513"]],[8,11,["H7311"]],[11,12,["H2220"]],[12,15,["H7665"]]]},{"k":13809,"v":[[0,3,["H935"]],[3,4,["H5704"]],[4,6,["H5033"]],[6,9,["H3220"]],[9,13,["H1980"]],[13,16,["H2714"]],[16,19,["H8415"]]]},{"k":13810,"v":[[0,3,["H8179"]],[3,5,["H4194"]],[5,7,["H1540"]],[7,13,["H7200"]],[13,15,["H8179"]],[15,20,["H6757"]]]},{"k":13811,"v":[[0,3,["H995","H5704"]],[3,5,["H7338"]],[5,8,["H776"]],[8,9,["H5046"]],[9,10,["H518"]],[10,12,["H3045"]],[12,14,["H3605"]]]},{"k":13812,"v":[[0,1,["H335","H2088"]],[1,4,["H1870"]],[4,6,["H216"]],[6,7,["H7931"]],[7,11,["H2822"]],[11,12,["H335","H2088"]],[12,15,["H4725"]],[15,16,[]]]},{"k":13813,"v":[[0,1,["H3588"]],[1,4,["H3947"]],[4,6,["H413"]],[6,8,["H1366"]],[8,11,["H3588"]],[11,14,["H995"]],[14,16,["H5410"]],[16,19,["H1004"]],[19,20,[]]]},{"k":13814,"v":[[0,1,["H3045"]],[1,4,["H3588"]],[4,7,["H227"]],[7,8,["H3205"]],[8,12,["H4557"]],[12,15,["H3117"]],[15,17,["H7227"]]]},{"k":13815,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H214"]],[6,9,["H7950"]],[9,13,["H7200"]],[13,15,["H214"]],[15,18,["H1259"]]]},{"k":13816,"v":[[0,1,["H834"]],[1,4,["H2820"]],[4,7,["H6256"]],[7,9,["H6862"]],[9,12,["H3117"]],[12,14,["H7128"]],[14,16,["H4421"]]]},{"k":13817,"v":[[0,2,["H335","H2088"]],[2,3,["H1870"]],[3,6,["H216"]],[6,7,["H2505"]],[7,9,["H6327"]],[9,12,["H6921"]],[12,13,["H5921"]],[13,15,["H776"]]]},{"k":13818,"v":[[0,1,["H4310"]],[1,3,["H6385"]],[3,5,["H8585"]],[5,10,["H7858"]],[10,13,["H1870"]],[13,16,["H2385"]],[16,18,["H6963"]]]},{"k":13819,"v":[[0,5,["H4305"]],[5,6,["H5921"]],[6,8,["H776"]],[8,10,["H3808"]],[10,11,["H376"]],[11,15,["H4057"]],[15,19,["H3808"]],[19,20,["H120"]]]},{"k":13820,"v":[[0,2,["H7646"]],[2,4,["H7722"]],[4,6,["H4875"]],[6,12,["H4161"]],[12,16,["H1877"]],[16,19,["H6779"]]]},{"k":13821,"v":[[0,1,["H3426"]],[1,3,["H4306"]],[3,5,["H1"]],[5,6,["H176"]],[6,7,["H4310"]],[7,9,["H3205"]],[9,11,["H96"]],[11,13,["H2919"]]]},{"k":13822,"v":[[0,4,["H4480","H990","H4310"]],[4,5,["H3318"]],[5,7,["H7140"]],[7,11,["H3713"]],[11,13,["H8064"]],[13,14,["H4310"]],[14,16,["H3205"]],[16,17,[]]]},{"k":13823,"v":[[0,2,["H4325"]],[2,4,["H2244"]],[4,8,["H68"]],[8,11,["H6440"]],[11,14,["H8415"]],[14,16,["H3920"]]]},{"k":13824,"v":[[0,3,["H7194"]],[3,6,["H4575"]],[6,8,["H3598"]],[8,9,["H176"]],[9,10,["H6605"]],[10,12,["H4189"]],[12,14,["H3685"]]]},{"k":13825,"v":[[0,4,["H3318"]],[4,5,["H4216"]],[5,8,["H6256"]],[8,12,["H5148"]],[12,13,["H5906"]],[13,14,["H5921"]],[14,16,["H1121"]]]},{"k":13826,"v":[[0,1,["H3045"]],[1,4,["H2708"]],[4,6,["H8064"]],[6,9,["H7760"]],[9,11,["H4896"]],[11,15,["H776"]]]},{"k":13827,"v":[[0,4,["H7311"]],[4,6,["H6963"]],[6,9,["H5645"]],[9,11,["H8229"]],[11,13,["H4325"]],[13,15,["H3680"]],[15,16,[]]]},{"k":13828,"v":[[0,3,["H7971"]],[3,4,["H1300"]],[4,8,["H1980"]],[8,10,["H559"]],[10,13,["H2009"]],[13,15,[]]]},{"k":13829,"v":[[0,1,["H4310"]],[1,3,["H7896"]],[3,4,["H2451"]],[4,8,["H2910"]],[8,9,["H176"]],[9,10,["H4310"]],[10,12,["H5414"]],[12,13,["H998"]],[13,16,["H7907"]]]},{"k":13830,"v":[[0,1,["H4310"]],[1,3,["H5608"]],[3,5,["H7834"]],[5,7,["H2451"]],[7,9,["H4310"]],[9,11,["H7901"]],[11,13,["H5035"]],[13,15,["H8064"]]]},{"k":13831,"v":[[0,3,["H6083"]],[3,4,["H3332"]],[4,6,["H4165"]],[6,9,["H7263"]],[9,12,["H1692"]]]},{"k":13832,"v":[[0,3,["H6679"]],[3,5,["H2964"]],[5,8,["H3833"]],[8,10,["H4390"]],[10,12,["H2416"]],[12,16,["H3715"]]]},{"k":13833,"v":[[0,1,["H3588"]],[1,3,["H7817"]],[3,6,["H4585"]],[6,8,["H3427"]],[8,11,["H5521"]],[11,15,["H3926","H695"]]]},{"k":13834,"v":[[0,1,["H4310"]],[1,2,["H3559"]],[2,5,["H6158"]],[5,7,["H6718"]],[7,8,["H3588"]],[8,11,["H3206"]],[11,12,["H7768"]],[12,13,["H413"]],[13,14,["H410"]],[14,16,["H8582"]],[16,18,["H1097"]],[18,20,["H400"]]]},{"k":13835,"v":[[0,1,["H3045"]],[1,4,["H6256"]],[4,8,["H3277"]],[8,11,["H5553"]],[11,13,["H3205"]],[13,17,["H8104"]],[17,20,["H355"]],[20,22,["H2342"]]]},{"k":13836,"v":[[0,3,["H5608"]],[3,5,["H3391"]],[5,8,["H4390"]],[8,10,["H3045"]],[10,13,["H6256"]],[13,17,["H3205"]]]},{"k":13837,"v":[[0,2,["H3766"]],[2,6,["H6398"]],[6,9,["H3206"]],[9,12,["H7971"]],[12,14,["H2256"]]]},{"k":13838,"v":[[0,3,["H1121"]],[3,7,["H2492"]],[7,10,["H7235"]],[10,12,["H1250"]],[12,15,["H3318"]],[15,17,["H7725"]],[17,18,["H3808"]],[18,20,[]]]},{"k":13839,"v":[[0,1,["H4310"]],[1,4,["H7971"]],[4,7,["H6501"]],[7,8,["H2670"]],[8,10,["H4310"]],[10,12,["H6605"]],[12,14,["H4147"]],[14,18,["H6171"]]]},{"k":13840,"v":[[0,1,["H834"]],[1,2,["H1004"]],[2,5,["H7760"]],[5,7,["H6160"]],[7,11,["H4420"]],[11,13,["H4908"]]]},{"k":13841,"v":[[0,2,["H7832"]],[2,4,["H1995"]],[4,7,["H7151"]],[7,8,["H3808"]],[8,9,["H8085"]],[9,12,["H8663"]],[12,15,["H5065"]]]},{"k":13842,"v":[[0,2,["H3491"]],[2,5,["H2022"]],[5,8,["H4829"]],[8,11,["H1875"]],[11,12,["H310"]],[12,13,["H3605"]],[13,15,["H3387"]]]},{"k":13843,"v":[[0,3,["H7214"]],[3,5,["H14"]],[5,7,["H5647"]],[7,9,["H518"]],[9,10,["H3885"]],[10,11,["H5921"]],[11,13,["H18"]]]},{"k":13844,"v":[[0,3,["H7194"]],[3,5,["H7214"]],[5,8,["H5688"]],[8,11,["H8525"]],[11,12,["H518"]],[12,15,["H7702"]],[15,17,["H6010"]],[17,18,["H310"]],[18,19,[]]]},{"k":13845,"v":[[0,3,["H982"]],[3,5,["H3588"]],[5,7,["H3581"]],[7,9,["H7227"]],[9,13,["H5800"]],[13,15,["H3018"]],[15,16,["H413"]],[16,17,[]]]},{"k":13846,"v":[[0,3,["H539"]],[3,5,["H3588"]],[5,9,["H7725"]],[9,11,["H2233"]],[11,13,["H622"]],[13,17,["H1637"]]]},{"k":13847,"v":[[0,4,["H5965"]],[4,5,["H3671"]],[5,8,["H7443"]],[8,9,["H518"]],[9,10,["H84"]],[10,12,["H2624"]],[12,15,["H5133"]]]},{"k":13848,"v":[[0,1,["H3588"]],[1,2,["H5800"]],[2,4,["H1000"]],[4,7,["H776"]],[7,9,["H2552"]],[9,11,["H5921"]],[11,12,["H6083"]]]},{"k":13849,"v":[[0,2,["H7911"]],[2,3,["H3588"]],[3,5,["H7272"]],[5,7,["H2115"]],[7,12,["H7704"]],[12,13,["H2416"]],[13,15,["H1758"]],[15,16,[]]]},{"k":13850,"v":[[0,3,["H7188"]],[3,7,["H1121"]],[7,12,["H3808"]],[12,15,["H3018"]],[15,18,["H7385"]],[18,19,["H1097"]],[19,20,["H6343"]]]},{"k":13851,"v":[[0,1,["H3588"]],[1,2,["H433"]],[2,4,["H5382"]],[4,7,["H2451"]],[7,8,["H3808"]],[8,11,["H2505"]],[11,14,["H998"]]]},{"k":13852,"v":[[0,2,["H6256"]],[2,6,["H4754"]],[6,8,["H4791"]],[8,10,["H7832"]],[10,12,["H5483"]],[12,15,["H7392"]]]},{"k":13853,"v":[[0,3,["H5414"]],[3,5,["H5483"]],[5,6,["H1369"]],[6,9,["H3847"]],[9,11,["H6677"]],[11,13,["H7483"]]]},{"k":13854,"v":[[0,5,["H7493"]],[5,8,["H697"]],[8,10,["H1935"]],[10,13,["H5170"]],[13,15,["H367"]]]},{"k":13855,"v":[[0,2,["H2658"]],[2,5,["H6010"]],[5,7,["H7797"]],[7,10,["H3581"]],[10,13,["H3318"]],[13,15,["H7125"]],[15,18,["H5402"]]]},{"k":13856,"v":[[0,2,["H7832"]],[2,4,["H6343"]],[4,7,["H3808"]],[7,8,["H2865"]],[8,9,["H3808"]],[9,12,["H7725"]],[12,13,["H4480","H6440"]],[13,15,["H2719"]]]},{"k":13857,"v":[[0,2,["H827"]],[2,3,["H7439"]],[3,4,["H5921"]],[4,7,["H3851"]],[7,8,["H2595"]],[8,11,["H3591"]]]},{"k":13858,"v":[[0,2,["H1572"]],[2,4,["H776"]],[4,6,["H7494"]],[6,8,["H7267"]],[8,9,["H3808"]],[9,10,["H539"]],[10,12,["H3588"]],[12,16,["H6963"]],[16,19,["H7782"]]]},{"k":13859,"v":[[0,2,["H559"]],[2,3,["H1767"]],[3,5,["H7782"]],[5,7,["H1889"]],[7,10,["H7306"]],[10,12,["H4421"]],[12,14,["H4480","H7350"]],[14,16,["H7482"]],[16,19,["H8269"]],[19,22,["H8643"]]]},{"k":13860,"v":[[0,3,["H5322"]],[3,4,["H82"]],[4,7,["H4480","H998"]],[7,9,["H6566"]],[9,11,["H3671"]],[11,14,["H8486"]]]},{"k":13861,"v":[[0,3,["H5404"]],[3,5,["H1361"]],[5,6,["H5921"]],[6,8,["H6310"]],[8,14,["H7311","H7064"]]]},{"k":13862,"v":[[0,2,["H7931"]],[2,4,["H3885"]],[4,7,["H5553"]],[7,8,["H5921"]],[8,10,["H8127"]],[10,13,["H5553"]],[13,17,["H4686"]]]},{"k":13863,"v":[[0,2,["H4480","H8033"]],[2,4,["H2658"]],[4,6,["H400"]],[6,9,["H5869"]],[9,10,["H5027"]],[10,12,["H4480","H7350"]]]},{"k":13864,"v":[[0,3,["H667"]],[3,6,["H5966"]],[6,7,["H1818"]],[7,9,["H834"]],[9,11,["H2491"]],[11,13,["H8033"]],[13,15,["H1931"]]]},{"k":13865,"v":[[0,3,["H3068"]],[3,4,["H6030","(H853)"]],[4,5,["H347"]],[5,7,["H559"]]]},{"k":13866,"v":[[0,4,["H7378"]],[4,5,["H5973"]],[5,7,["H7706"]],[7,8,["H3250"]],[8,12,["H3198"]],[12,13,["H433"]],[13,16,["H6030"]],[16,17,[]]]},{"k":13867,"v":[[0,2,["H347"]],[2,3,["H6030","(H853)"]],[3,5,["H3068"]],[5,7,["H559"]]]},{"k":13868,"v":[[0,1,["H2005"]],[1,4,["H7043"]],[4,5,["H4100"]],[5,8,["H7725"]],[8,12,["H7760"]],[12,14,["H3027"]],[14,15,["H3926"]],[15,17,["H6310"]]]},{"k":13869,"v":[[0,1,["H259"]],[1,4,["H1696"]],[4,8,["H3808"]],[8,9,["H6030"]],[9,11,["H8147"]],[11,17,["H3254","H3808"]]]},{"k":13870,"v":[[0,2,["H6030"]],[2,4,["H3068"]],[4,5,["(H853)"]],[5,6,["H347"]],[6,8,["H4480"]],[8,10,["H5591"]],[10,12,["H559"]]]},{"k":13871,"v":[[0,2,["H247"]],[2,4,["H2504"]],[4,5,["H4994"]],[5,8,["H1397"]],[8,11,["H7592"]],[11,15,["H3045"]],[15,18,[]]]},{"k":13872,"v":[[0,3,["H637"]],[3,4,["H6565"]],[4,6,["H4941"]],[6,9,["H7561"]],[9,11,["H4616"]],[11,15,["H6663"]]]},{"k":13873,"v":[[0,4,["H2220"]],[4,6,["H410"]],[6,10,["H7481"]],[10,13,["H6963"]],[13,15,["H3644"]]]},{"k":13874,"v":[[0,1,["H5710"]],[1,3,["H4994"]],[3,5,["H1347"]],[5,7,["H1363"]],[7,9,["H3847"]],[9,12,["H1935"]],[12,14,["H1926"]]]},{"k":13875,"v":[[0,2,["H6327"]],[2,4,["H5678"]],[4,7,["H639"]],[7,9,["H7200"]],[9,11,["H3605"]],[11,14,["H1343"]],[14,16,["H8213"]],[16,17,[]]]},{"k":13876,"v":[[0,2,["H7200"]],[2,4,["H3605"]],[4,7,["H1343"]],[7,11,["H3665"]],[11,14,["H1915"]],[14,16,["H7563"]],[16,19,["H8478"]]]},{"k":13877,"v":[[0,1,["H2934"]],[1,5,["H6083"]],[5,6,["H3162"]],[6,8,["H2280"]],[8,10,["H6440"]],[10,12,["H2934"]]]},{"k":13878,"v":[[0,3,["H589"]],[3,4,["H1571"]],[4,5,["H3034"]],[5,8,["H3588"]],[8,12,["H3225"]],[12,14,["H3467"]],[14,15,[]]]},{"k":13879,"v":[[0,1,["H2009"]],[1,2,["H4994"]],[2,3,["H930"]],[3,4,["H834"]],[4,6,["H6213"]],[6,7,["H5973"]],[7,10,["H398"]],[10,11,["H2682"]],[11,14,["H1241"]]]},{"k":13880,"v":[[0,1,["H2009"]],[1,2,["H4994"]],[2,4,["H3581"]],[4,8,["H4975"]],[8,11,["H202"]],[11,15,["H8306"]],[15,18,["H990"]]]},{"k":13881,"v":[[0,2,["H2654"]],[2,4,["H2180"]],[4,5,["H3644"]],[5,7,["H730"]],[7,9,["H1517"]],[9,12,["H6344"]],[12,15,["H8276"]]]},{"k":13882,"v":[[0,2,["H6106"]],[2,6,["H650"]],[6,8,["H5154"]],[8,10,["H1634"]],[10,13,["H4300"]],[13,15,["H1270"]]]},{"k":13883,"v":[[0,1,["H1931"]],[1,4,["H7225"]],[4,7,["H1870"]],[7,9,["H410"]],[9,12,["H6213"]],[12,17,["H2719"]],[17,19,["H5066"]],[19,21,[]]]},{"k":13884,"v":[[0,1,["H3588"]],[1,3,["H2022"]],[3,6,["H5375"]],[6,7,["H944"]],[7,8,["H8033"]],[8,9,["H3605"]],[9,11,["H2416"]],[11,14,["H7704"]],[14,15,["H7832"]]]},{"k":13885,"v":[[0,2,["H7901"]],[2,3,["H8478"]],[3,6,["H6628"]],[6,9,["H5643"]],[9,12,["H7070"]],[12,14,["H1207"]]]},{"k":13886,"v":[[0,3,["H6628"]],[3,4,["H5526"]],[4,8,["H6752"]],[8,10,["H6155"]],[10,13,["H5158"]],[13,16,["H5437"]]]},{"k":13887,"v":[[0,1,["H2005"]],[1,4,["H6231"]],[4,6,["H5104"]],[6,8,["H2648"]],[8,9,["H3808"]],[9,11,["H982"]],[11,12,["H3588"]],[12,16,["H1518"]],[16,17,["H3383"]],[17,18,["H413"]],[18,20,["H6310"]]]},{"k":13888,"v":[[0,2,["H3947"]],[2,6,["H5869"]],[6,8,["H639"]],[8,9,["H5344"]],[9,11,["H4170"]]]},{"k":13889,"v":[[0,4,["H4900"]],[4,5,["H3882"]],[5,8,["H2443"]],[8,11,["H3956"]],[11,14,["H2256"]],[14,18,["H8257"]]]},{"k":13890,"v":[[0,3,["H7760"]],[3,5,["H100"]],[5,8,["H639"]],[8,10,["H5344"]],[10,12,["H3895"]],[12,16,["H2336"]]]},{"k":13891,"v":[[0,4,["H7235"]],[4,5,["H8469"]],[5,6,["H413"]],[6,10,["H1696"]],[10,11,["H7390"]],[11,13,["H413"]],[13,14,[]]]},{"k":13892,"v":[[0,3,["H3772"]],[3,5,["H1285"]],[5,6,["H5973"]],[6,10,["H3947"]],[10,14,["H5650"]],[14,16,["H5769"]]]},{"k":13893,"v":[[0,3,["H7832"]],[3,9,["H6833"]],[9,13,["H7194"]],[13,17,["H5291"]]]},{"k":13894,"v":[[0,3,["H2271"]],[3,6,["H3738"]],[6,7,["H5921"]],[7,11,["H2673"]],[11,13,["H996"]],[13,15,["H3669"]]]},{"k":13895,"v":[[0,3,["H4390"]],[3,5,["H5785"]],[5,8,["H7905"]],[8,11,["H7218"]],[11,13,["H1709"]],[13,14,["H6767"]]]},{"k":13896,"v":[[0,1,["H7760"]],[1,3,["H3709"]],[3,4,["H5921"]],[4,6,["H2142"]],[6,8,["H4421"]],[8,10,["H408"]],[10,11,["H3254"]]]},{"k":13897,"v":[[0,1,["H2005"]],[1,3,["H8431"]],[3,8,["H3576"]],[8,14,["H2904"]],[14,15,["H1571"]],[15,16,["H413"]],[16,18,["H4758"]],[18,20,[]]]},{"k":13898,"v":[[0,1,["H3808"]],[1,4,["H393"]],[4,5,["H3588"]],[5,9,["H5782"]],[9,10,["H4310"]],[10,15,["H3320"]],[15,16,["H6440"]],[16,17,[]]]},{"k":13899,"v":[[0,1,["H4310"]],[1,3,["H6923"]],[3,8,["H7999"]],[8,12,["H8478"]],[12,14,["H3605"]],[14,15,["H8064"]],[15,17,[]]]},{"k":13900,"v":[[0,3,["H3808"]],[3,4,["H2790"]],[4,6,["H905"]],[6,7,["H1697"]],[7,9,["H1369"]],[9,12,["H2433"]],[12,13,["H6187"]]]},{"k":13901,"v":[[0,1,["H4310"]],[1,3,["H1540"]],[3,5,["H6440"]],[5,8,["H3830"]],[8,10,["H4310"]],[10,12,["H935"]],[12,17,["H3718"]],[17,18,["H7448"]]]},{"k":13902,"v":[[0,1,["H4310"]],[1,3,["H6605"]],[3,5,["H1817"]],[5,8,["H6440"]],[8,10,["H8127"]],[10,12,["H367"]],[12,14,["H5439"]]]},{"k":13903,"v":[[0,2,["H650","H4043"]],[2,5,["H1346"]],[5,8,["H5462"]],[8,12,["H6862"]],[12,13,["H2368"]]]},{"k":13904,"v":[[0,1,["H259"]],[1,4,["H5066"]],[4,6,["H259"]],[6,8,["H3808"]],[8,9,["H7307"]],[9,11,["H935"]],[11,12,["H996"]],[12,13,[]]]},{"k":13905,"v":[[0,3,["H1692"]],[3,4,["H376"]],[4,6,["H251"]],[6,9,["H3920"]],[9,12,["H3808"]],[12,14,["H6504"]]]},{"k":13906,"v":[[0,3,["H5846"]],[3,5,["H216"]],[5,7,["H1984"]],[7,10,["H5869"]],[10,14,["H6079"]],[14,17,["H7837"]]]},{"k":13907,"v":[[0,4,["H4480","H6310"]],[4,5,["H1980"]],[5,7,["H3940"]],[7,9,["H3590"]],[9,11,["H784"]],[11,13,["H4422"]]]},{"k":13908,"v":[[0,4,["H4480","H5156"]],[4,5,["H3318"]],[5,6,["H6227"]],[6,11,["H5301"]],[11,12,["H1731"]],[12,14,["H100"]]]},{"k":13909,"v":[[0,2,["H5315"]],[2,3,["H3857"]],[3,4,["H1513"]],[4,7,["H3851"]],[7,9,["H3318"]],[9,12,["H4480","H6310"]]]},{"k":13910,"v":[[0,3,["H6677"]],[3,4,["H3885"]],[4,5,["H5797"]],[5,7,["H1670"]],[7,11,["H1750"]],[11,12,["H6440"]],[12,13,[]]]},{"k":13911,"v":[[0,2,["H4651"]],[2,5,["H1320"]],[5,8,["H1692"]],[8,11,["H3332"]],[11,12,["H5921"]],[12,15,["H1077"]],[15,17,["H4131"]]]},{"k":13912,"v":[[0,2,["H3820"]],[2,5,["H3332"]],[5,6,["H3644"]],[6,8,["H68"]],[8,11,["H3332"]],[11,14,["H6400"]],[14,17,["H8482"]],[17,18,[]]]},{"k":13913,"v":[[0,4,["H4480","H7613"]],[4,7,["H410"]],[7,9,["H1481"]],[9,13,["H4480","H7667"]],[13,16,["H2398"]]]},{"k":13914,"v":[[0,2,["H2719"]],[2,6,["H5381"]],[6,9,["H1097"]],[9,10,["H6965"]],[10,12,["H2595"]],[12,14,["H4551"]],[14,17,["H8302"]]]},{"k":13915,"v":[[0,2,["H2803"]],[2,3,["H1270"]],[3,5,["H8401"]],[5,7,["H5154"]],[7,9,["H7539"]],[9,10,["H6086"]]]},{"k":13916,"v":[[0,2,["H1121","H7198"]],[2,3,["H3808"]],[3,6,["H1272"]],[6,7,["H68","H7050"]],[7,9,["H2015"]],[9,13,["H7179"]]]},{"k":13917,"v":[[0,1,["H8455"]],[1,3,["H2803"]],[3,5,["H7179"]],[5,7,["H7832"]],[7,10,["H7494"]],[10,13,["H3591"]]]},{"k":13918,"v":[[0,1,["H2303"]],[1,2,["H2789"]],[2,4,["H8478"]],[4,7,["H7502"]],[7,10,["H2742"]],[10,11,["H5921"]],[11,13,["H2916"]]]},{"k":13919,"v":[[0,4,["H4688"]],[4,6,["H7570"]],[6,9,["H5518"]],[9,11,["H7760"]],[11,13,["H3220"]],[13,18,["H4841"]]]},{"k":13920,"v":[[0,4,["H5410"]],[4,6,["H215"]],[6,7,["H310"]],[7,11,["H2803"]],[11,13,["H8415"]],[13,16,["H7872"]]]},{"k":13921,"v":[[0,1,["H5921"]],[1,2,["H6083"]],[2,5,["H369"]],[5,7,["H4915"]],[7,10,["H6213"]],[10,11,["H1097"]],[11,12,["H2844"]]]},{"k":13922,"v":[[0,2,["H7200","(H853)"]],[2,3,["H3605"]],[3,4,["H1364"]],[4,6,["H1931"]],[6,9,["H4428"]],[9,10,["H5921"]],[10,11,["H3605"]],[11,13,["H1121"]],[13,15,["H7830"]]]},{"k":13923,"v":[[0,2,["H347"]],[2,3,["H6030","(H853)"]],[3,5,["H3068"]],[5,7,["H559"]]]},{"k":13924,"v":[[0,2,["H3045"]],[2,3,["H3588"]],[3,6,["H3201"]],[6,7,["H3605"]],[7,11,["H3808"]],[11,12,["H4209"]],[12,15,["H1219"]],[15,16,["H4480"]],[16,17,[]]]},{"k":13925,"v":[[0,1,["H4310"]],[1,3,["H2088"]],[3,5,["H5956"]],[5,6,["H6098"]],[6,7,["H1097"]],[7,8,["H1847"]],[8,9,["H3651"]],[9,12,["H5046"]],[12,15,["H995"]],[15,16,["H3808"]],[16,19,["H6381"]],[19,20,["H4480"]],[20,24,["H3045"]],[24,25,["H3808"]]]},{"k":13926,"v":[[0,1,["H8085"]],[1,4,["H4994"]],[4,6,["H595"]],[6,8,["H1696"]],[8,11,["H7592"]],[11,15,["H3045"]],[15,18,[]]]},{"k":13927,"v":[[0,3,["H8085"]],[3,8,["H8088"]],[8,11,["H241"]],[11,13,["H6258"]],[13,15,["H5869"]],[15,16,["H7200"]],[16,17,[]]]},{"k":13928,"v":[[0,1,["H5921","H3651"]],[1,3,["H3988"]],[3,6,["H5162"]],[6,7,["H5921"]],[7,8,["H6083"]],[8,10,["H665"]]]},{"k":13929,"v":[[0,3,["H1961"]],[3,6,["H310"]],[6,8,["H3068"]],[8,10,["H1696","(H853)"]],[10,11,["H428"]],[11,12,["H1697"]],[12,13,["H413"]],[13,14,["H347"]],[14,16,["H3068"]],[16,17,["H559"]],[17,18,["H413"]],[18,19,["H464"]],[19,21,["H8489"]],[21,23,["H639"]],[23,25,["H2734"]],[25,31,["H8147"]],[31,32,["H7453"]],[32,33,["H3588"]],[33,36,["H3808"]],[36,37,["H1696"]],[37,38,["H413"]],[38,44,["H3559"]],[44,47,["H5650"]],[47,48,["H347"]],[48,49,[]]]},{"k":13930,"v":[[0,2,["H3947"]],[2,5,["H6258"]],[5,6,["H7651"]],[6,7,["H6499"]],[7,9,["H7651"]],[9,10,["H352"]],[10,12,["H1980"]],[12,13,["H413"]],[13,15,["H5650"]],[15,16,["H347"]],[16,19,["H5927"]],[19,20,["H1157"]],[20,24,["H5930"]],[24,27,["H5650"]],[27,28,["H347"]],[28,30,["H6419"]],[30,31,["H5921"]],[31,33,["H3588","H518"]],[33,34,["H6440"]],[34,37,["H5375"]],[37,38,["H1115"]],[38,40,["H6213"]],[40,41,["H5973"]],[41,45,["H5039"]],[45,47,["H3588"]],[47,50,["H3808"]],[50,51,["H1696"]],[51,52,["H413"]],[52,58,["H3559"]],[58,61,["H5650"]],[61,62,["H347"]]]},{"k":13931,"v":[[0,2,["H464"]],[2,4,["H8489"]],[4,6,["H1085"]],[6,8,["H7747"]],[8,10,["H6691"]],[10,12,["H5284"]],[12,13,["H1980"]],[13,15,["H6213"]],[15,17,["H834"]],[17,19,["H3068"]],[19,20,["H1696","H413"]],[20,23,["H3068"]],[23,25,["H5375","H6440","(H853)"]],[25,26,["H347"]]]},{"k":13932,"v":[[0,3,["H3068"]],[3,4,["H7725","(H853)"]],[4,6,["H7622"]],[6,8,["H347"]],[8,11,["H6419"]],[11,12,["H1157"]],[12,14,["H7453"]],[14,17,["H3068"]],[17,18,["H3254"]],[18,19,["H347","(H853)"]],[19,20,["H4932"]],[20,26,["H3605","H834"]]]},{"k":13933,"v":[[0,2,["H935"]],[2,4,["H413"]],[4,6,["H3605"]],[6,8,["H251"]],[8,10,["H3605"]],[10,12,["H269"]],[12,14,["H3605"]],[14,21,["H3045"]],[21,22,["H6440"]],[22,25,["H398"]],[25,26,["H3899"]],[26,27,["H5973"]],[27,31,["H1004"]],[31,34,["H5110"]],[34,37,["H5162"]],[37,39,["H5921"]],[39,40,["H3605"]],[40,42,["H7451"]],[42,43,["H834"]],[43,45,["H3068"]],[45,47,["H935"]],[47,48,["H5921"]],[48,51,["H376"]],[51,53,["H5414"]],[53,58,["H7192","H259"]],[58,61,["H376"]],[61,62,["H259"]],[62,63,["H5141"]],[63,65,["H2091"]]]},{"k":13934,"v":[[0,3,["H3068"]],[3,4,["H1288","(H853)"]],[4,7,["H319"]],[7,9,["H347"]],[9,13,["H4480","H7225"]],[13,16,["H1961"]],[16,17,["H702","H6240"]],[17,18,["H505"]],[18,19,["H6629"]],[19,21,["H8337"]],[21,22,["H505"]],[22,23,["H1581"]],[23,26,["H505"]],[26,27,["H6776"]],[27,29,["H1241"]],[29,32,["H505"]],[32,34,["H860"]]]},{"k":13935,"v":[[0,2,["H1961"]],[2,4,["H7658"]],[4,5,["H1121"]],[5,7,["H7969"]],[7,8,["H1323"]]]},{"k":13936,"v":[[0,3,["H7121"]],[3,5,["H8034"]],[5,8,["H259"]],[8,9,["H3224"]],[9,12,["H8034"]],[12,15,["H8145"]],[15,16,["H7103"]],[16,19,["H8034"]],[19,22,["H7992"]],[22,23,["H7163"]]]},{"k":13937,"v":[[0,3,["H3605"]],[3,5,["H776"]],[5,7,["H3808"]],[7,8,["H802"]],[8,9,["H4672"]],[9,11,["H3303"]],[11,14,["H1323"]],[14,16,["H347"]],[16,19,["H1"]],[19,20,["H5414"]],[20,22,["H5159"]],[22,23,["H8432"]],[23,25,["H251"]]]},{"k":13938,"v":[[0,1,["H310"]],[1,2,["H2063"]],[2,3,["H2421"]],[3,4,["H347"]],[4,6,["H3967"]],[6,8,["H705"]],[8,9,["H8141"]],[9,11,["H7200","(H853)"]],[11,13,["H1121"]],[13,14,["(H853)"]],[14,16,["H1121"]],[16,17,["H1121"]],[17,19,["H702"]],[19,20,["H1755"]]]},{"k":13939,"v":[[0,2,["H347"]],[2,3,["H4191"]],[3,5,["H2205"]],[5,7,["H7649"]],[7,9,["H3117"]]]},{"k":13940,"v":[[0,1,["H835"]],[1,4,["H376"]],[4,5,["H834"]],[5,6,["H1980"]],[6,7,["H3808"]],[7,10,["H6098"]],[10,13,["H7563"]],[13,14,["H3808"]],[14,15,["H5975"]],[15,18,["H1870"]],[18,20,["H2400"]],[20,21,["H3808"]],[21,22,["H3427"]],[22,25,["H4186"]],[25,28,["H3887"]]]},{"k":13941,"v":[[0,1,["H3588","H518"]],[1,3,["H2656"]],[3,7,["H8451"]],[7,10,["H3068"]],[10,14,["H8451"]],[14,17,["H1897"]],[17,18,["H3119"]],[18,20,["H3915"]]]},{"k":13942,"v":[[0,4,["H1961"]],[4,7,["H6086"]],[7,8,["H8362"]],[8,9,["H5921"]],[9,11,["H6388"]],[11,13,["H4325"]],[13,14,["H834"]],[14,16,["H5414"]],[16,18,["H6529"]],[18,21,["H6256"]],[21,23,["H5929"]],[23,26,["H3808"]],[26,27,["H5034"]],[27,29,["H3605","H834"]],[29,31,["H6213"]],[31,33,["H6743"]]]},{"k":13943,"v":[[0,2,["H7563"]],[2,4,["H3808"]],[4,5,["H3651"]],[5,6,["H3588","H518"]],[6,10,["H4671"]],[10,11,["H834"]],[11,13,["H7307"]],[13,15,["H5086"]]]},{"k":13944,"v":[[0,1,["H5921","H3651"]],[1,3,["H7563"]],[3,5,["H3808"]],[5,6,["H6965"]],[6,9,["H4941"]],[9,11,["H2400"]],[11,14,["H5712"]],[14,17,["H6662"]]]},{"k":13945,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,4,["H3045"]],[4,6,["H1870"]],[6,9,["H6662"]],[9,12,["H1870"]],[12,15,["H7563"]],[15,17,["H6"]]]},{"k":13946,"v":[[0,1,["H4100"]],[1,4,["H1471"]],[4,5,["H7283"]],[5,8,["H3816"]],[8,9,["H1897"]],[9,12,["H7385"]]]},{"k":13947,"v":[[0,2,["H4428"]],[2,5,["H776"]],[5,7,["H3320"]],[7,10,["H7336"]],[10,12,["H3245"]],[12,13,["H3162"]],[13,14,["H5921"]],[14,16,["H3068"]],[16,18,["H5921"]],[18,20,["H4899"]],[20,21,[]]]},{"k":13948,"v":[[0,6,["H5423","(H853)","H4147"]],[6,9,["H7993"]],[9,11,["H5688"]],[11,12,["H4480"]],[12,13,[]]]},{"k":13949,"v":[[0,3,["H3427"]],[3,6,["H8064"]],[6,8,["H7832"]],[8,10,["H136"]],[10,15,["H3932"]]]},{"k":13950,"v":[[0,1,["H227"]],[1,4,["H1696"]],[4,5,["H413"]],[5,9,["H639"]],[9,11,["H926"]],[11,16,["H2740"]]]},{"k":13951,"v":[[0,3,["H589"]],[3,4,["H5258"]],[4,6,["H4428"]],[6,7,["H5921"]],[7,9,["H6944"]],[9,10,["H2022"]],[10,12,["H6726"]]]},{"k":13952,"v":[[0,3,["H5608","H413"]],[3,5,["H2706"]],[5,7,["H3068"]],[7,9,["H559"]],[9,10,["H413"]],[10,12,["H859"]],[12,15,["H1121"]],[15,17,["H3117"]],[17,19,["H589"]],[19,20,["H3205"]],[20,21,[]]]},{"k":13953,"v":[[0,1,["H7592"]],[1,2,["H4480"]],[2,7,["H5414"]],[7,10,["H1471"]],[10,13,["H5159"]],[13,17,["H657"]],[17,20,["H776"]],[20,23,["H272"]]]},{"k":13954,"v":[[0,3,["H7489"]],[3,7,["H7626"]],[7,9,["H1270"]],[9,15,["H5310"]],[15,18,["H3335"]],[18,19,["H3627"]]]},{"k":13955,"v":[[0,2,["H7919"]],[2,3,["H6258"]],[3,7,["H4428"]],[7,9,["H3256"]],[9,11,["H8199"]],[11,14,["H776"]]]},{"k":13956,"v":[[0,1,["H5647","(H853)"]],[1,3,["H3068"]],[3,5,["H3374"]],[5,7,["H1523"]],[7,9,["H7461"]]]},{"k":13957,"v":[[0,1,["H5401"]],[1,3,["H1248"]],[3,4,["H6435"]],[4,7,["H599"]],[7,10,["H6"]],[10,13,["H1870"]],[13,14,["H3588"]],[14,16,["H639"]],[16,18,["H1197"]],[18,21,["H4592"]],[21,22,["H835"]],[22,24,["H3605"]],[24,29,["H2620"]],[29,31,[]]]},{"k":13958,"v":[[0,1,["H3068"]],[1,2,["H4100"]],[2,5,["H7231"]],[5,7,["H6862"]],[7,9,["H7227"]],[9,14,["H6965"]],[14,15,["H5921"]],[15,16,[]]]},{"k":13959,"v":[[0,1,["H7227"]],[1,5,["H559"]],[5,8,["H5315"]],[8,11,["H369"]],[11,12,["H3444"]],[12,16,["H430"]],[16,17,["H5542"]]]},{"k":13960,"v":[[0,2,["H859"]],[2,4,["H3068"]],[4,7,["H4043"]],[7,8,["H1157"]],[8,11,["H3519"]],[11,15,["H7311"]],[15,18,["H7218"]]]},{"k":13961,"v":[[0,2,["H7121"]],[2,3,["H413"]],[3,5,["H3068"]],[5,8,["H6963"]],[8,11,["H6030"]],[11,16,["H6944"]],[16,17,["H4480","H2022"]],[17,18,["H5542"]]]},{"k":13962,"v":[[0,1,["H589"]],[1,4,["H7901"]],[4,6,["H3462"]],[6,8,["H6974"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,12,["H5564"]],[12,13,[]]]},{"k":13963,"v":[[0,3,["H3808"]],[3,5,["H3372"]],[5,8,["H4480","H7233"]],[8,10,["H5971"]],[10,11,["H834"]],[11,13,["H7896"]],[13,15,["H5921"]],[15,18,["H5439"]]]},{"k":13964,"v":[[0,1,["H6965"]],[1,3,["H3068"]],[3,4,["H3467"]],[4,8,["H430"]],[8,9,["H3588"]],[9,12,["H5221","(H853)"]],[12,13,["H3605"]],[13,15,["H341"]],[15,19,["H3895"]],[19,22,["H7665"]],[22,24,["H8127"]],[24,27,["H7563"]]]},{"k":13965,"v":[[0,1,["H3444"]],[1,5,["H3068"]],[5,7,["H1293"]],[7,9,["H5921"]],[9,11,["H5971"]],[11,12,["H5542"]]]},{"k":13966,"v":[[0,1,["H6030"]],[1,5,["H7121"]],[5,7,["H430"]],[7,10,["H6664"]],[10,13,["H7337"]],[13,19,["H6862"]],[19,21,["H2603"]],[21,25,["H8085"]],[25,27,["H8605"]]]},{"k":13967,"v":[[0,3,["H1121"]],[3,5,["H376"]],[5,7,["H5704","H4100"]],[7,12,["H3519"]],[12,14,["H3639"]],[14,19,["H157"]],[19,20,["H7385"]],[20,23,["H1245"]],[23,24,["H3577"]],[24,25,["H5542"]]]},{"k":13968,"v":[[0,2,["H3045"]],[2,3,["H3588"]],[3,5,["H3068"]],[5,8,["H6395"]],[8,12,["H2623"]],[12,16,["H3068"]],[16,18,["H8085"]],[18,21,["H7121"]],[21,22,["H413"]],[22,23,[]]]},{"k":13969,"v":[[0,3,["H7264"]],[3,5,["H2398"]],[5,6,["H408"]],[6,7,["H559"]],[7,11,["H3824"]],[11,12,["H5921"]],[12,14,["H4904"]],[14,17,["H1826"]],[17,18,["H5542"]]]},{"k":13970,"v":[[0,1,["H2076"]],[1,3,["H2077"]],[3,5,["H6664"]],[5,9,["H982"]],[9,10,["H413"]],[10,12,["H3068"]]]},{"k":13971,"v":[[0,3,["H7227"]],[3,5,["H559"]],[5,6,["H4310"]],[6,8,["H7200"]],[8,11,["H2896"]],[11,12,["H3068"]],[12,15,["H5375"]],[15,17,["H216"]],[17,20,["H6440"]],[20,21,["H5921"]],[21,22,[]]]},{"k":13972,"v":[[0,3,["H5414"]],[3,4,["H8057"]],[4,7,["H3820"]],[7,12,["H4480","H6256"]],[12,15,["H1715"]],[15,18,["H8492"]],[18,19,["H7231"]]]},{"k":13973,"v":[[0,3,["H3162"]],[3,6,["H7901"]],[6,8,["H7965"]],[8,10,["H3462"]],[10,11,["H3588"]],[11,12,["H859"]],[12,13,["H3068"]],[13,14,["H910"]],[14,17,["H3427"]],[17,19,["H983"]]]},{"k":13974,"v":[[0,2,["H238"]],[2,5,["H561"]],[5,7,["H3068"]],[7,8,["H995"]],[8,10,["H1901"]]]},{"k":13975,"v":[[0,1,["H7181"]],[1,4,["H6963"]],[4,7,["H7773"]],[7,9,["H4428"]],[9,12,["H430"]],[12,13,["H3588"]],[13,14,["H413"]],[14,18,["H6419"]]]},{"k":13976,"v":[[0,2,["H6963"]],[2,5,["H8085"]],[5,8,["H1242"]],[8,10,["H3068"]],[10,13,["H1242"]],[13,16,["H6186"]],[16,24,["H6822"]]]},{"k":13977,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H3808"]],[4,6,["H410"]],[6,9,["H2655"]],[9,11,["H7562"]],[11,12,["H3808"]],[12,14,["H7451"]],[14,15,["H1481"]],[15,17,[]]]},{"k":13978,"v":[[0,2,["H1984"]],[2,4,["H3808"]],[4,5,["H3320"]],[5,6,["H5048"]],[6,8,["H5869"]],[8,10,["H8130"]],[10,11,["H3605"]],[11,12,["H6466"]],[12,14,["H205"]]]},{"k":13979,"v":[[0,3,["H6"]],[3,6,["H1696"]],[6,7,["H3577"]],[7,9,["H3068"]],[9,11,["H8581"]],[11,13,["H1818"]],[13,15,["H4820"]],[15,16,["H376"]]]},{"k":13980,"v":[[0,4,["H589"]],[4,7,["H935"]],[7,10,["H1004"]],[10,13,["H7230"]],[13,16,["H2617"]],[16,20,["H3374"]],[20,23,["H7812"]],[23,24,["H413"]],[24,26,["H6944"]],[26,27,["H1964"]]]},{"k":13981,"v":[[0,1,["H5148"]],[1,4,["H3068"]],[4,7,["H6666"]],[7,9,["H4616"]],[9,11,["H8324"]],[11,14,["H1870"]],[14,15,["H3474"]],[15,18,["H6440"]]]},{"k":13982,"v":[[0,1,["H3588"]],[1,4,["H369"]],[4,5,["H3559"]],[5,8,["H6310"]],[8,11,["H7130"]],[11,14,["H1942"]],[14,16,["H1627"]],[16,19,["H6605"]],[19,20,["H6913"]],[20,22,["H2505"]],[22,25,["H3956"]]]},{"k":13983,"v":[[0,1,["H816"]],[1,5,["H430"]],[5,8,["H5307"]],[8,12,["H4480","H4156"]],[12,15,["H5080"]],[15,18,["H7230"]],[18,21,["H6588"]],[21,22,["H3588"]],[22,25,["H4784"]],[25,27,[]]]},{"k":13984,"v":[[0,3,["H3605"]],[3,8,["H2620"]],[8,11,["H8055"]],[11,14,["H5769"]],[14,17,["H7442"]],[17,20,["H5526"]],[20,21,["H5921"]],[21,26,["H157"]],[26,28,["H8034"]],[28,30,["H5970"]],[30,32,[]]]},{"k":13985,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,3,["H3068"]],[3,5,["H1288"]],[5,7,["H6662"]],[7,9,["H7522"]],[9,12,["H5849"]],[12,17,["H6793"]]]},{"k":13986,"v":[[0,2,["H3068"]],[2,3,["H3198"]],[3,5,["H408"]],[5,8,["H639"]],[8,9,["H408"]],[9,10,["H3256"]],[10,15,["H2534"]]]},{"k":13987,"v":[[0,2,["H2603"]],[2,6,["H3068"]],[6,7,["H3588"]],[7,8,["H589"]],[8,10,["H536"]],[10,12,["H3068"]],[12,13,["H7495"]],[13,15,["H3588"]],[15,17,["H6106"]],[17,19,["H926"]]]},{"k":13988,"v":[[0,2,["H5315"]],[2,5,["H3966"]],[5,6,["H926"]],[6,8,["H859"]],[8,10,["H3068"]],[10,12,["H5704","H4970"]]]},{"k":13989,"v":[[0,1,["H7725"]],[1,3,["H3068"]],[3,4,["H2502"]],[4,6,["H5315"]],[6,8,["H3467"]],[8,13,["H4616","H2617"]]]},{"k":13990,"v":[[0,1,["H3588"]],[1,3,["H4194"]],[3,6,["H369"]],[6,7,["H2143"]],[7,12,["H7585"]],[12,13,["H4310"]],[13,17,["H3034"]]]},{"k":13991,"v":[[0,3,["H3021"]],[3,6,["H585"]],[6,7,["H3605"]],[7,9,["H3915"]],[9,13,["H4296"]],[13,15,["H7811"]],[15,17,["H4529"]],[17,19,["H6210"]],[19,22,["H1832"]]]},{"k":13992,"v":[[0,2,["H5869"]],[2,4,["H6244"]],[4,7,["H4480","H3708"]],[7,10,["H6275"]],[10,13,["H3605"]],[13,15,["H6887"]]]},{"k":13993,"v":[[0,1,["H5493"]],[1,2,["H4480"]],[2,4,["H3605"]],[4,6,["H6466"]],[6,8,["H205"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,13,["H8085"]],[13,15,["H6963"]],[15,18,["H1065"]]]},{"k":13994,"v":[[0,2,["H3068"]],[2,4,["H8085"]],[4,6,["H8467"]],[6,8,["H3068"]],[8,10,["H3947"]],[10,12,["H8605"]]]},{"k":13995,"v":[[0,2,["H3605"]],[2,4,["H341"]],[4,6,["H954"]],[6,8,["H3966"]],[8,9,["H926"]],[9,12,["H7725"]],[12,15,["H954"]],[15,16,["H7281"]]]},{"k":13996,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,11,["H2620"]],[11,12,["H3467"]],[12,15,["H4480","H3605"]],[15,18,["H7291"]],[18,21,["H5337"]],[21,22,[]]]},{"k":13997,"v":[[0,1,["H6435"]],[1,3,["H2963"]],[3,5,["H5315"]],[5,8,["H738"]],[8,12,["H6561"]],[12,16,["H369"]],[16,18,["H5337"]]]},{"k":13998,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,5,["H518"]],[5,8,["H6213"]],[8,9,["H2063"]],[9,10,["H518"]],[10,12,["H3426"]],[12,13,["H5766"]],[13,16,["H3709"]]]},{"k":13999,"v":[[0,1,["H518"]],[1,4,["H1580"]],[4,5,["H7451"]],[5,11,["H7999"]],[11,17,["H2502"]],[17,21,["H7387"]],[21,24,["H6887"]]]},{"k":14000,"v":[[0,3,["H341"]],[3,4,["H7291"]],[4,6,["H5315"]],[6,8,["H5381"]],[8,14,["H7429"]],[14,16,["H2416"]],[16,19,["H776"]],[19,21,["H7931"]],[21,23,["H3519"]],[23,26,["H6083"]],[26,27,["H5542"]]]},{"k":14001,"v":[[0,1,["H6965"]],[1,3,["H3068"]],[3,6,["H639"]],[6,9,["H5375"]],[9,13,["H5678"]],[13,16,["H6887"]],[16,18,["H5782"]],[18,19,["H413"]],[19,23,["H4941"]],[23,27,["H6680"]]]},{"k":14002,"v":[[0,4,["H5712"]],[4,7,["H3816"]],[7,10,["H5437"]],[10,13,["H5921"]],[13,15,["H7725"]],[15,18,["H4791"]]]},{"k":14003,"v":[[0,2,["H3068"]],[2,4,["H1777"]],[4,6,["H5971"]],[6,7,["H8199"]],[7,10,["H3068"]],[10,14,["H6664"]],[14,19,["H8537"]],[19,22,["H5921"]],[22,23,[]]]},{"k":14004,"v":[[0,1,["H4994"]],[1,4,["H7451"]],[4,7,["H7563"]],[7,11,["H1584"]],[11,13,["H3559"]],[13,15,["H6662"]],[15,18,["H6662"]],[18,19,["H430"]],[19,20,["H974"]],[20,22,["H3820"]],[22,24,["H3629"]]]},{"k":14005,"v":[[0,2,["H4043"]],[2,4,["H5921"]],[4,5,["H430"]],[5,7,["H3467"]],[7,9,["H3477"]],[9,11,["H3820"]]]},{"k":14006,"v":[[0,1,["H430"]],[1,2,["H8199"]],[2,4,["H6662"]],[4,6,["H410"]],[6,8,["H2194"]],[8,12,["H3605"]],[12,13,["H3117"]]]},{"k":14007,"v":[[0,1,["H518"]],[1,3,["H7725"]],[3,4,["H3808"]],[4,7,["H3913"]],[7,9,["H2719"]],[9,12,["H1869"]],[12,14,["H7198"]],[14,18,["H3559"]]]},{"k":14008,"v":[[0,4,["H3559"]],[4,8,["H3627"]],[8,10,["H4194"]],[10,12,["H6466"]],[12,14,["H2671"]],[14,17,["H1814"]]]},{"k":14009,"v":[[0,1,["H2009"]],[1,3,["H2254"]],[3,5,["H205"]],[5,8,["H2029"]],[8,9,["H5999"]],[9,12,["H3205"]],[12,13,["H8267"]]]},{"k":14010,"v":[[0,2,["H3738"]],[2,4,["H953"]],[4,6,["H2658"]],[6,10,["H5307"]],[10,13,["H7845"]],[13,16,["H6466"]]]},{"k":14011,"v":[[0,2,["H5999"]],[2,4,["H7725"]],[4,8,["H7218"]],[8,12,["H2555"]],[12,15,["H3381"]],[15,16,["H5921"]],[16,19,["H6936"]]]},{"k":14012,"v":[[0,3,["H3034"]],[3,5,["H3068"]],[5,9,["H6664"]],[9,13,["H2167"]],[13,16,["H8034"]],[16,19,["H3068"]],[19,21,["H5945"]]]},{"k":14013,"v":[[0,2,["H3068"]],[2,4,["H113"]],[4,5,["H4100"]],[5,6,["H117"]],[6,9,["H8034"]],[9,11,["H3605"]],[11,13,["H776"]],[13,14,["H834"]],[14,16,["H5414"]],[16,18,["H1935"]],[18,19,["H5921"]],[19,21,["H8064"]]]},{"k":14014,"v":[[0,4,["H4480","H6310"]],[4,6,["H5768"]],[6,8,["H3243"]],[8,11,["H3245"]],[11,12,["H5797"]],[12,14,["H4616"]],[14,16,["H6887"]],[16,20,["H7673"]],[20,22,["H341"]],[22,25,["H5358"]]]},{"k":14015,"v":[[0,1,["H3588"]],[1,3,["H7200"]],[3,5,["H8064"]],[5,7,["H4639"]],[7,10,["H676"]],[10,12,["H3394"]],[12,15,["H3556"]],[15,16,["H834"]],[16,19,["H3559"]]]},{"k":14016,"v":[[0,1,["H4100"]],[1,3,["H582"]],[3,4,["H3588"]],[4,7,["H2142"]],[7,12,["H1121"]],[12,14,["H120"]],[14,15,["H3588"]],[15,17,["H6485"]],[17,18,[]]]},{"k":14017,"v":[[0,8,["H2637","H4592"]],[8,11,["H4480","H430"]],[11,14,["H5849"]],[14,17,["H3519"]],[17,19,["H1926"]]]},{"k":14018,"v":[[0,6,["H4910"]],[6,9,["H4639"]],[9,12,["H3027"]],[12,15,["H7896"]],[15,16,["H3605"]],[16,18,["H8478"]],[18,20,["H7272"]]]},{"k":14019,"v":[[0,1,["H3605"]],[1,2,["H6792"]],[2,4,["H504"]],[4,5,["H1571"]],[5,8,["H929"]],[8,11,["H7704"]]]},{"k":14020,"v":[[0,2,["H6833"]],[2,5,["H8064"]],[5,8,["H1709"]],[8,11,["H3220"]],[11,15,["H5674"]],[15,17,["H734"]],[17,20,["H3220"]]]},{"k":14021,"v":[[0,2,["H3068"]],[2,4,["H113"]],[4,5,["H4100"]],[5,6,["H117"]],[6,9,["H8034"]],[9,11,["H3605"]],[11,13,["H776"]]]},{"k":14022,"v":[[0,3,["H3034"]],[3,6,["H3068"]],[6,9,["H3605"]],[9,10,["H3820"]],[10,14,["H5608"]],[14,15,["H3605"]],[15,18,["H6381"]]]},{"k":14023,"v":[[0,4,["H8055"]],[4,6,["H5970"]],[6,12,["H2167"]],[12,15,["H8034"]],[15,19,["H5945"]]]},{"k":14024,"v":[[0,3,["H341"]],[3,5,["H7725"]],[5,6,["H268"]],[6,9,["H3782"]],[9,11,["H6"]],[11,14,["H4480","H6440"]]]},{"k":14025,"v":[[0,1,["H3588"]],[1,4,["H6213"]],[4,6,["H4941"]],[6,9,["H1779"]],[9,11,["H3427"]],[11,14,["H3678"]],[14,15,["H8199"]],[15,16,["H6664"]]]},{"k":14026,"v":[[0,3,["H1605"]],[3,5,["H1471"]],[5,8,["H6"]],[8,10,["H7563"]],[10,14,["H4229"]],[14,16,["H8034"]],[16,18,["H5769"]],[18,20,["H5703"]]]},{"k":14027,"v":[[0,3,["H341"]],[3,4,["H2723"]],[4,10,["H8552","H5331"]],[10,14,["H5428"]],[14,15,["H5892"]],[15,17,["H2143"]],[17,19,["H6"]],[19,21,["H1992"]]]},{"k":14028,"v":[[0,3,["H3068"]],[3,5,["H3427"]],[5,7,["H5769"]],[7,10,["H3559"]],[10,12,["H3678"]],[12,14,["H4941"]]]},{"k":14029,"v":[[0,2,["H1931"]],[2,4,["H8199"]],[4,6,["H8398"]],[6,8,["H6664"]],[8,12,["H1777"]],[12,15,["H3816"]],[15,17,["H4339"]]]},{"k":14030,"v":[[0,2,["H3068"]],[2,5,["H1961"]],[5,7,["H4869"]],[7,10,["H1790"]],[10,12,["H4869"]],[12,14,["H6256"]],[14,16,["H6869"]]]},{"k":14031,"v":[[0,4,["H3045"]],[4,6,["H8034"]],[6,10,["H982"]],[10,13,["H3588"]],[13,15,["H3068"]],[15,17,["H3808"]],[17,18,["H5800"]],[18,21,["H1875"]],[21,22,[]]]},{"k":14032,"v":[[0,2,["H2167"]],[2,5,["H3068"]],[5,7,["H3427"]],[7,9,["H6726"]],[9,10,["H5046"]],[10,13,["H5971"]],[13,15,["H5949"]]]},{"k":14033,"v":[[0,1,["H3588"]],[1,4,["H1875"]],[4,6,["H1818"]],[6,8,["H2142"]],[8,11,["H7911"]],[11,12,["H3808"]],[12,14,["H6818"]],[14,17,["H6035"]]]},{"k":14034,"v":[[0,2,["H2603"]],[2,6,["H3068"]],[6,7,["H7200"]],[7,9,["H6040"]],[9,16,["H4480","H8130"]],[16,22,["H7311"]],[22,25,["H4480","H8179"]],[25,27,["H4194"]]]},{"k":14035,"v":[[0,1,["H4616"]],[1,5,["H5608"]],[5,6,["H3605"]],[6,8,["H8416"]],[8,11,["H8179"]],[11,14,["H1323"]],[14,16,["H6726"]],[16,19,["H1523"]],[19,22,["H3444"]]]},{"k":14036,"v":[[0,2,["H1471"]],[2,5,["H2883"]],[5,8,["H7845"]],[8,11,["H6213"]],[11,14,["H7568"]],[14,15,["H2098"]],[15,17,["H2934"]],[17,21,["H7272"]],[21,22,["H3920"]]]},{"k":14037,"v":[[0,2,["H3068"]],[2,4,["H3045"]],[4,7,["H4941"]],[7,10,["H6213"]],[10,12,["H7563"]],[12,14,["H3369"]],[14,17,["H6467"]],[17,21,["H3709"]],[21,22,["H1902"]],[22,23,["H5542"]]]},{"k":14038,"v":[[0,2,["H7563"]],[2,5,["H7725"]],[5,7,["H7585"]],[7,9,["H3605"]],[9,11,["H1471"]],[11,13,["H7913"]],[13,14,["H430"]]]},{"k":14039,"v":[[0,1,["H3588"]],[1,3,["H34"]],[3,5,["H3808"]],[5,6,["H5331"]],[6,8,["H7911"]],[8,10,["H8615"]],[10,13,["H6041"]],[13,16,["H6"]],[16,18,["H5703"]]]},{"k":14040,"v":[[0,1,["H6965"]],[1,3,["H3068"]],[3,5,["H408"]],[5,6,["H582"]],[6,7,["H5810"]],[7,10,["H1471"]],[10,12,["H8199"]],[12,13,["H5921"]],[13,15,["H6440"]]]},{"k":14041,"v":[[0,1,["H7896"]],[1,4,["H4172"]],[4,6,["H3068"]],[6,9,["H1471"]],[9,11,["H3045"]],[11,12,["H1992"]],[12,16,["H582"]],[16,17,["H5542"]]]},{"k":14042,"v":[[0,1,["H4100"]],[1,2,["H5975"]],[2,5,["H7350"]],[5,7,["H3068"]],[7,9,["H5956"]],[9,13,["H6256"]],[13,15,["H6869"]]]},{"k":14043,"v":[[0,2,["H7563"]],[2,5,["H1346"]],[5,7,["H1814"]],[7,9,["H6041"]],[9,13,["H8610"]],[13,16,["H4209"]],[16,17,["H2098"]],[17,20,["H2803"]]]},{"k":14044,"v":[[0,1,["H3588"]],[1,3,["H7563"]],[3,4,["H1984"]],[4,5,["H5921"]],[5,7,["H5315"]],[7,8,["H8378"]],[8,10,["H1288"]],[10,12,["H1214"]],[12,15,["H3068"]],[15,16,["H5006"]]]},{"k":14045,"v":[[0,2,["H7563"]],[2,5,["H1363"]],[5,8,["H639"]],[8,10,["H1077"]],[10,11,["H1875"]],[11,14,["H430"]],[14,16,["H369"]],[16,18,["H3605"]],[18,20,["H4209"]]]},{"k":14046,"v":[[0,2,["H1870"]],[2,4,["H3605","H6256"]],[4,5,["H2342"]],[5,7,["H4941"]],[7,10,["H4791"]],[10,14,["H4480","H5048"]],[14,17,["H3605"]],[17,19,["H6887"]],[19,21,["H6315"]],[21,23,[]]]},{"k":14047,"v":[[0,3,["H559"]],[3,6,["H3820"]],[6,9,["H1077"]],[9,11,["H4131"]],[11,15,["H1755","H1755","H834","H3808"]],[15,18,["H7451"]]]},{"k":14048,"v":[[0,2,["H6310"]],[2,4,["H4390"]],[4,6,["H423"]],[6,8,["H4820"]],[8,10,["H8496"]],[10,11,["H8478"]],[11,13,["H3956"]],[13,15,["H5999"]],[15,17,["H205"]]]},{"k":14049,"v":[[0,2,["H3427"]],[2,6,["H3993"]],[6,9,["H2691"]],[9,13,["H4565"]],[13,16,["H2026"]],[16,18,["H5355"]],[18,20,["H5869"]],[20,23,["H6845"]],[23,26,["H2489"]]]},{"k":14050,"v":[[0,4,["H693"]],[4,5,["H4565"]],[5,8,["H738"]],[8,11,["H5520"]],[11,15,["H693"]],[15,17,["H2414"]],[17,19,["H6041"]],[19,22,["H2414"]],[22,24,["H6041"]],[24,27,["H4900"]],[27,31,["H7568"]]]},{"k":14051,"v":[[0,2,["H1794"]],[2,4,["H7817"]],[4,8,["H2489"]],[8,10,["H5307"]],[10,14,["H6099"]]]},{"k":14052,"v":[[0,3,["H559"]],[3,6,["H3820"]],[6,7,["H410"]],[7,9,["H7911"]],[9,11,["H5641"]],[11,13,["H6440"]],[13,16,["H1077","H5331"]],[16,17,["H7200"]],[17,18,[]]]},{"k":14053,"v":[[0,1,["H6965"]],[1,3,["H3068"]],[3,5,["H410"]],[5,7,["H5375"]],[7,9,["H3027"]],[9,10,["H7911"]],[10,11,["H408"]],[11,13,["H6035"]]]},{"k":14054,"v":[[0,1,["H5921","H4100"]],[1,4,["H7563"]],[4,5,["H5006"]],[5,6,["H430"]],[6,9,["H559"]],[9,12,["H3820"]],[12,15,["H3808"]],[15,16,["H1875"]],[16,17,[]]]},{"k":14055,"v":[[0,3,["H7200"]],[3,5,["H3588"]],[5,6,["H859"]],[6,7,["H5027"]],[7,8,["H5999"]],[8,10,["H3708"]],[10,12,["H5414"]],[12,16,["H3027"]],[16,18,["H2489"]],[18,19,["H5800"]],[19,21,["H5921"]],[21,23,["H859"]],[23,24,["H1961"]],[24,26,["H5826"]],[26,29,["H3490"]]]},{"k":14056,"v":[[0,1,["H7665"]],[1,4,["H2220"]],[4,7,["H7563"]],[7,10,["H7451"]],[10,13,["H1875"]],[13,15,["H7562"]],[15,18,["H4672"]],[18,19,["H1077"]]]},{"k":14057,"v":[[0,2,["H3068"]],[2,4,["H4428"]],[4,6,["H5769"]],[6,8,["H5703"]],[8,10,["H1471"]],[10,12,["H6"]],[12,16,["H4480","H776"]]]},{"k":14058,"v":[[0,1,["H3068"]],[1,4,["H8085"]],[4,6,["H8378"]],[6,9,["H6035"]],[9,12,["H3559"]],[12,14,["H3820"]],[14,19,["H241"]],[19,21,["H7181"]]]},{"k":14059,"v":[[0,2,["H8199"]],[2,4,["H3490"]],[4,7,["H1790"]],[7,10,["H582"]],[10,11,["H4480"]],[11,13,["H776"]],[13,15,["H1077"]],[15,16,["H3254","H5750"]],[16,17,["H6206"]]]},{"k":14060,"v":[[0,3,["H3068"]],[3,7,["H2620"]],[7,8,["H349"]],[8,9,["H559"]],[9,13,["H5315"]],[13,14,["H5110"]],[14,17,["H6833"]],[17,20,["H2022"]]]},{"k":14061,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H7563"]],[4,5,["H1869"]],[5,7,["H7198"]],[7,10,["H3559"]],[10,12,["H2671"]],[12,13,["H5921"]],[13,15,["H3499"]],[15,19,["H1119","H652"]],[19,20,["H3384"]],[20,23,["H3477"]],[23,25,["H3820"]]]},{"k":14062,"v":[[0,1,["H3588"]],[1,3,["H8356"]],[3,5,["H2040"]],[5,6,["H4100"]],[6,9,["H6662"]],[9,10,["H6466"]]]},{"k":14063,"v":[[0,2,["H3068"]],[2,6,["H6944"]],[6,7,["H1964"]],[7,9,["H3068"]],[9,10,["H3678"]],[10,13,["H8064"]],[13,15,["H5869"]],[15,16,["H2372"]],[16,18,["H6079"]],[18,19,["H974"]],[19,21,["H1121"]],[21,23,["H120"]]]},{"k":14064,"v":[[0,2,["H3068"]],[2,3,["H974"]],[3,5,["H6662"]],[5,8,["H7563"]],[8,12,["H157"]],[12,13,["H2555"]],[13,15,["H5315"]],[15,16,["H8130"]]]},{"k":14065,"v":[[0,1,["H5921"]],[1,3,["H7563"]],[3,6,["H4305"]],[6,7,["H6341"]],[7,8,["H784"]],[8,10,["H1614"]],[10,13,["H2152"]],[13,14,["H7307"]],[14,19,["H4521"]],[19,22,["H3563"]]]},{"k":14066,"v":[[0,1,["H3588"]],[1,3,["H6662"]],[3,4,["H3068"]],[4,5,["H157"]],[5,6,["H6666"]],[6,8,["H6440"]],[8,10,["H2372"]],[10,12,["H3477"]]]},{"k":14067,"v":[[0,1,["H3467"]],[1,2,["H3068"]],[2,3,["H3588"]],[3,6,["H2623"]],[6,7,["H1584"]],[7,8,["H3588"]],[8,10,["H539"]],[10,11,["H6461"]],[11,15,["H4480","H1121"]],[15,17,["H120"]]]},{"k":14068,"v":[[0,2,["H1696"]],[2,3,["H7723"]],[3,5,["H376"]],[5,6,["H854"]],[6,8,["H7453"]],[8,10,["H2513"]],[10,11,["H8193"]],[11,16,["H3820","H3820"]],[16,19,["H1696"]]]},{"k":14069,"v":[[0,2,["H3068"]],[2,5,["H3772"]],[5,6,["H3605"]],[6,7,["H2513"]],[7,8,["H8193"]],[8,11,["H3956"]],[11,13,["H1696"]],[13,15,["H1419"]]]},{"k":14070,"v":[[0,1,["H834"]],[1,3,["H559"]],[3,6,["H3956"]],[6,9,["H1396"]],[9,11,["H8193"]],[11,15,["H4310"]],[15,17,["H113"]],[17,19,[]]]},{"k":14071,"v":[[0,3,["H4480","H7701"]],[3,6,["H6041"]],[6,9,["H4480","H603"]],[9,12,["H34"]],[12,13,["H6258"]],[13,16,["H6965"]],[16,17,["H559"]],[17,19,["H3068"]],[19,22,["H7896"]],[22,25,["H3468"]],[25,29,["H6315"]],[29,31,[]]]},{"k":14072,"v":[[0,2,["H565"]],[2,5,["H3068"]],[5,7,["H2889"]],[7,8,["H565"]],[8,10,["H3701"]],[10,11,["H6884"]],[11,14,["H5948"]],[14,16,["H776"]],[16,17,["H2212"]],[17,18,["H7659"]],[18,19,[]]]},{"k":14073,"v":[[0,1,["H859"]],[1,3,["H8104"]],[3,6,["H3068"]],[6,9,["H5341"]],[9,11,["H4480"]],[11,12,["H2098"]],[12,13,["H1755"]],[13,15,["H5769"]]]},{"k":14074,"v":[[0,2,["H7563"]],[2,3,["H1980"]],[3,6,["H5439"]],[6,9,["H2149"]],[9,10,["H120"]],[10,12,["H7311"]]]},{"k":14075,"v":[[0,2,["H5704","H575"]],[2,5,["H7911"]],[5,8,["H3068"]],[8,10,["H5331"]],[10,12,["H5704","H575"]],[12,15,["H5641","(H853)"]],[15,17,["H6440"]],[17,18,["H4480"]],[18,19,[]]]},{"k":14076,"v":[[0,2,["H5704","H575"]],[2,5,["H7896"]],[5,6,["H6098"]],[6,9,["H5315"]],[9,11,["H3015"]],[11,14,["H3824"]],[14,15,["H3119"]],[15,17,["H5704","H575"]],[17,20,["H341"]],[20,22,["H7311"]],[22,23,["H5921"]],[23,24,[]]]},{"k":14077,"v":[[0,1,["H5027"]],[1,3,["H6030"]],[3,6,["H3068"]],[6,8,["H430"]],[8,9,["H215"]],[9,11,["H5869"]],[11,12,["H6435"]],[12,14,["H3462"]],[14,18,["H4194"]]]},{"k":14078,"v":[[0,1,["H6435"]],[1,3,["H341"]],[3,4,["H559"]],[4,8,["H3201"]],[8,13,["H6862"]],[13,15,["H1523"]],[15,16,["H3588"]],[16,19,["H4131"]]]},{"k":14079,"v":[[0,2,["H589"]],[2,4,["H982"]],[4,7,["H2617"]],[7,9,["H3820"]],[9,11,["H1523"]],[11,14,["H3444"]]]},{"k":14080,"v":[[0,3,["H7891"]],[3,6,["H3068"]],[6,7,["H3588"]],[7,11,["H1580"]],[11,12,["H5921"]],[12,13,[]]]},{"k":14081,"v":[[0,2,["H5036"]],[2,4,["H559"]],[4,7,["H3820"]],[7,10,["H369"]],[10,11,["H430"]],[11,14,["H7843"]],[14,18,["H8581"]],[18,19,["H5949"]],[19,22,["H369"]],[22,24,["H6213"]],[24,25,["H2896"]]]},{"k":14082,"v":[[0,2,["H3068"]],[2,4,["H8259"]],[4,6,["H4480","H8064"]],[6,7,["H5921"]],[7,9,["H1121"]],[9,11,["H120"]],[11,13,["H7200"]],[13,16,["H3426"]],[16,20,["H7919"]],[20,22,["H1875","(H853)"]],[22,23,["H430"]]]},{"k":14083,"v":[[0,3,["H3605"]],[3,5,["H5493"]],[5,9,["H3162"]],[9,11,["H444"]],[11,14,["H369"]],[14,16,["H6213"]],[16,17,["H2896"]],[17,18,["H369"]],[18,19,["H1571"]],[19,20,["H259"]]]},{"k":14084,"v":[[0,2,["H3605"]],[2,4,["H6466"]],[4,6,["H205"]],[6,7,["H3808"]],[7,8,["H3045"]],[8,11,["H398"]],[11,13,["H5971"]],[13,16,["H398"]],[16,17,["H3899"]],[17,19,["H7121"]],[19,20,["H3808"]],[20,23,["H3068"]]]},{"k":14085,"v":[[0,1,["H8033"]],[1,6,["H6342","H6343"]],[6,7,["H3588"]],[7,8,["H430"]],[8,12,["H1755"]],[12,15,["H6662"]]]},{"k":14086,"v":[[0,3,["H954"]],[3,5,["H6098"]],[5,8,["H6041"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,14,["H4268"]]]},{"k":14087,"v":[[0,2,["H4310","H5414"]],[2,4,["H3444"]],[4,6,["H3478"]],[6,11,["H4480","H6726"]],[11,14,["H3068"]],[14,16,["H7725"]],[16,18,["H7622"]],[18,21,["H5971"]],[21,22,["H3290"]],[22,24,["H1523"]],[24,26,["H3478"]],[26,29,["H8055"]]]},{"k":14088,"v":[[0,1,["H3068"]],[1,2,["H4310"]],[2,4,["H1481"]],[4,7,["H168"]],[7,8,["H4310"]],[8,10,["H7931"]],[10,13,["H6944"]],[13,14,["H2022"]]]},{"k":14089,"v":[[0,3,["H1980"]],[3,4,["H8549"]],[4,6,["H6466"]],[6,7,["H6664"]],[7,9,["H1696"]],[9,11,["H571"]],[11,14,["H3824"]]]},{"k":14090,"v":[[0,3,["H7270"]],[3,4,["H3808"]],[4,5,["H5921"]],[5,7,["H3956"]],[7,8,["H3808"]],[8,9,["H6213"]],[9,10,["H7451"]],[10,13,["H7453"]],[13,14,["H3808"]],[14,16,["H5375"]],[16,18,["H2781"]],[18,19,["H5921"]],[19,21,["H7138"]]]},{"k":14091,"v":[[0,3,["H5869"]],[3,6,["H3988"]],[6,8,["H959"]],[8,11,["H3513"]],[11,14,["H3372"]],[14,16,["H3068"]],[16,19,["H7650"]],[19,23,["H7489"]],[23,25,["H4171"]],[25,26,["H3808"]]]},{"k":14092,"v":[[0,5,["H5414","H3808"]],[5,7,["H3701"]],[7,9,["H5392"]],[9,10,["H3808"]],[10,11,["H3947"]],[11,12,["H7810"]],[12,13,["H5921"]],[13,15,["H5355"]],[15,18,["H6213"]],[18,19,["H428"]],[19,22,["H3808","H5769"]],[22,24,["H4131"]]]},{"k":14093,"v":[[0,1,["H8104"]],[1,4,["H410"]],[4,5,["H3588"]],[5,12,["H2620"]]]},{"k":14094,"v":[[0,6,["H559"]],[6,9,["H3068"]],[9,10,["H859"]],[10,13,["H136"]],[13,15,["H2896"]],[15,17,["H1077"]],[17,18,["H5921"]],[18,19,[]]]},{"k":14095,"v":[[0,4,["H6918"]],[4,5,["H834"]],[5,9,["H776"]],[9,13,["H117"]],[13,17,["H3605"]],[17,19,["H2656"]]]},{"k":14096,"v":[[0,2,["H6094"]],[2,5,["H7235"]],[5,7,["H4116"]],[7,9,["H312"]],[9,13,["H5262"]],[13,15,["H4480","H1818"]],[15,18,["H1077"]],[18,19,["H5258"]],[19,20,["H1077"]],[20,22,["H5375","(H853)"]],[22,24,["H8034"]],[24,25,["H5921"]],[25,27,["H8193"]]]},{"k":14097,"v":[[0,2,["H3068"]],[2,5,["H4521"]],[5,8,["H2506"]],[8,12,["H3563"]],[12,13,["H859"]],[13,14,["H8551"]],[14,16,["H1486"]]]},{"k":14098,"v":[[0,2,["H2256"]],[2,4,["H5307"]],[4,8,["H5273"]],[8,10,["H637"]],[10,12,["H5921"]],[12,14,["H8231"]],[14,15,["H5159"]]]},{"k":14099,"v":[[0,3,["H1288","(H853)"]],[3,5,["H3068"]],[5,6,["H834"]],[6,10,["H3289"]],[10,12,["H3629"]],[12,13,["H637"]],[13,14,["H3256"]],[14,19,["H3915"]]]},{"k":14100,"v":[[0,3,["H7737"]],[3,5,["H3068"]],[5,6,["H8548"]],[6,7,["H5048"]],[7,9,["H3588"]],[9,15,["H4480","H3225"]],[15,18,["H1077"]],[18,20,["H4131"]]]},{"k":14101,"v":[[0,1,["H3651"]],[1,3,["H3820"]],[3,5,["H8055"]],[5,8,["H3519"]],[8,9,["H1523"]],[9,11,["H1320"]],[11,12,["H637"]],[12,14,["H7931"]],[14,16,["H983"]]]},{"k":14102,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H5800"]],[5,7,["H5315"]],[7,9,["H7585"]],[9,10,["H3808"]],[10,13,["H5414"]],[13,16,["H2623"]],[16,18,["H7200"]],[18,19,["H7845"]]]},{"k":14103,"v":[[0,3,["H3045"]],[3,6,["H734"]],[6,8,["H2416"]],[8,9,["H854"]],[9,11,["H6440"]],[11,13,["H7648"]],[13,15,["H8057"]],[15,19,["H3225"]],[19,22,["H5273"]],[22,24,["H5331"]]]},{"k":14104,"v":[[0,1,["H8085"]],[1,3,["H6664"]],[3,5,["H3068"]],[5,6,["H7181"]],[6,9,["H7440"]],[9,11,["H238"]],[11,14,["H8605"]],[14,17,["H3808"]],[17,20,["H4820"]],[20,21,["H8193"]]]},{"k":14105,"v":[[0,3,["H4941"]],[3,5,["H3318"]],[5,8,["H4480","H6440"]],[8,11,["H5869"]],[11,12,["H2372"]],[12,17,["H4339"]]]},{"k":14106,"v":[[0,3,["H974"]],[3,5,["H3820"]],[5,8,["H6485"]],[8,12,["H3915"]],[12,15,["H6884"]],[15,19,["H4672"]],[19,20,["H1077"]],[20,23,["H2161"]],[23,26,["H6310"]],[26,28,["H1077"]],[28,29,["H5674"]]]},{"k":14107,"v":[[0,3,["H6468"]],[3,5,["H120"]],[5,8,["H1697"]],[8,11,["H8193"]],[11,12,["H589"]],[12,14,["H8104"]],[14,18,["H734"]],[18,21,["H6530"]]]},{"k":14108,"v":[[0,2,["H8551"]],[2,4,["H838"]],[4,7,["H4570"]],[7,10,["H6471"]],[10,11,["H4131"]],[11,12,["H1077"]]]},{"k":14109,"v":[[0,1,["H589"]],[1,4,["H7121"]],[4,6,["H3588"]],[6,9,["H6030"]],[9,12,["H410"]],[12,13,["H5186"]],[13,15,["H241"]],[15,19,["H8085"]],[19,21,["H565"]]]},{"k":14110,"v":[[0,4,["H6395","H2617"]],[4,8,["H3467"]],[8,12,["H3225"]],[12,17,["H2620"]],[17,24,["H4480","H6965"]],[24,26,[]]]},{"k":14111,"v":[[0,1,["H8104"]],[1,5,["H380","H1323"]],[5,8,["H5869"]],[8,9,["H5641"]],[9,13,["H6738"]],[13,16,["H3671"]]]},{"k":14112,"v":[[0,1,["H4480","H6440"]],[1,3,["H7563"]],[3,4,["H2098"]],[4,5,["H7703"]],[5,9,["H5315"]],[9,10,["H341"]],[10,14,["H5362","H5921"]]]},{"k":14113,"v":[[0,4,["H5462"]],[4,7,["H2459"]],[7,10,["H6310"]],[10,12,["H1696"]],[12,13,["H1348"]]]},{"k":14114,"v":[[0,3,["H6258"]],[3,4,["H5437"]],[4,8,["H838"]],[8,11,["H7896"]],[11,13,["H5869"]],[13,15,["H5186"]],[15,18,["H776"]]]},{"k":14115,"v":[[0,1,["H1825"]],[1,4,["H738"]],[4,7,["H3700"]],[7,10,["H2963"]],[10,17,["H3715"]],[17,18,["H3427"]],[18,21,["H4565"]]]},{"k":14116,"v":[[0,1,["H6965"]],[1,3,["H3068"]],[3,4,["H6923","H6440"]],[4,8,["H3766"]],[8,9,["H6403"]],[9,11,["H5315"]],[11,14,["H4480","H7563"]],[14,18,["H2719"]]]},{"k":14117,"v":[[0,2,["H4480","H4962"]],[2,6,["H3027"]],[6,8,["H3068"]],[8,10,["H4480","H4962"]],[10,13,["H4480","H2465"]],[13,17,["H2506"]],[17,20,["H2416"]],[20,23,["H990"]],[23,25,["H4390"]],[25,28,["H6845"]],[28,32,["H7646"]],[32,34,["H1121"]],[34,36,["H5117"]],[36,38,["H3499"]],[38,44,["H5768"]]]},{"k":14118,"v":[[0,3,["H589"]],[3,6,["H2372"]],[6,8,["H6440"]],[8,10,["H6664"]],[10,14,["H7646"]],[14,17,["H6974"]],[17,20,["H8544"]]]},{"k":14119,"v":[[0,3,["H7355"]],[3,6,["H3068"]],[6,8,["H2391"]]]},{"k":14120,"v":[[0,2,["H3068"]],[2,5,["H5553"]],[5,8,["H4686"]],[8,11,["H6403"]],[11,13,["H410"]],[13,15,["H6697"]],[15,20,["H2620"]],[20,22,["H4043"]],[22,25,["H7161"]],[25,28,["H3468"]],[28,32,["H4869"]]]},{"k":14121,"v":[[0,3,["H7121"]],[3,6,["H3068"]],[6,12,["H1984"]],[12,17,["H3467"]],[17,18,["H4480"]],[18,20,["H341"]]]},{"k":14122,"v":[[0,2,["H2256"]],[2,4,["H4194"]],[4,5,["H661"]],[5,9,["H5158"]],[9,12,["H1100"]],[12,15,["H1204"]]]},{"k":14123,"v":[[0,2,["H2256"]],[2,4,["H7585"]],[4,7,["H5437"]],[7,9,["H4170"]],[9,11,["H4194"]],[11,12,["H6923"]],[12,13,[]]]},{"k":14124,"v":[[0,3,["H6862"]],[3,6,["H7121"]],[6,8,["H3068"]],[8,10,["H7768"]],[10,11,["H413"]],[11,13,["H430"]],[13,15,["H8085"]],[15,17,["H6963"]],[17,21,["H4480","H1964"]],[21,24,["H7775"]],[24,25,["H935"]],[25,26,["H6440"]],[26,31,["H241"]]]},{"k":14125,"v":[[0,3,["H776"]],[3,4,["H1607"]],[4,6,["H7493"]],[6,8,["H4146"]],[8,12,["H2022"]],[12,13,["H7264"]],[13,16,["H1607"]],[16,17,["H3588"]],[17,20,["H2734"]]]},{"k":14126,"v":[[0,3,["H5927"]],[3,5,["H6227"]],[5,9,["H639"]],[9,11,["H784"]],[11,15,["H4480","H6310"]],[15,16,["H398"]],[16,17,["H1513"]],[17,19,["H1197"]],[19,20,["H4480"]],[20,21,[]]]},{"k":14127,"v":[[0,2,["H5186"]],[2,4,["H8064"]],[4,8,["H3381"]],[8,10,["H6205"]],[10,12,["H8478"]],[12,14,["H7272"]]]},{"k":14128,"v":[[0,3,["H7392"]],[3,4,["H5921"]],[4,6,["H3742"]],[6,9,["H5774"]],[9,13,["H1675"]],[13,14,["H5921"]],[14,16,["H3671"]],[16,19,["H7307"]]]},{"k":14129,"v":[[0,2,["H7896"]],[2,3,["H2824"]],[3,6,["H5643"]],[6,8,["H5521"]],[8,10,["H5439"]],[10,13,["H2824"]],[13,14,["H4325"]],[14,17,["H5645"]],[17,20,["H7834"]]]},{"k":14130,"v":[[0,3,["H4480","H5051"]],[3,6,["H5048"]],[6,10,["H5645"]],[10,11,["H5674"]],[11,12,["H1259"]],[12,15,["H1513"]],[15,17,["H784"]]]},{"k":14131,"v":[[0,2,["H3068"]],[2,4,["H7481"]],[4,7,["H8064"]],[7,10,["H5945"]],[10,11,["H5414"]],[11,13,["H6963"]],[13,14,["H1259"]],[14,17,["H1513"]],[17,19,["H784"]]]},{"k":14132,"v":[[0,4,["H7971"]],[4,6,["H2671"]],[6,8,["H6327"]],[8,13,["H7232"]],[13,14,["H1300"]],[14,16,["H2000"]],[16,17,[]]]},{"k":14133,"v":[[0,3,["H650"]],[3,5,["H4325"]],[5,7,["H7200"]],[7,10,["H4146"]],[10,13,["H8398"]],[13,15,["H1540"]],[15,18,["H4480","H1606"]],[18,20,["H3068"]],[20,23,["H4480","H5397"]],[23,26,["H7307"]],[26,29,["H639"]]]},{"k":14134,"v":[[0,2,["H7971"]],[2,4,["H4480","H4791"]],[4,6,["H3947"]],[6,9,["H4871"]],[9,14,["H4480","H4325","H7227"]]]},{"k":14135,"v":[[0,2,["H5337"]],[2,6,["H5794"]],[6,7,["H4480","H341"]],[7,12,["H4480","H8130"]],[12,14,["H3588"]],[14,18,["H553"]],[18,19,["H4480"]],[19,20,[]]]},{"k":14136,"v":[[0,2,["H6923"]],[2,6,["H3117"]],[6,9,["H343"]],[9,12,["H3068"]],[12,13,["H1961"]],[13,15,["H4937"]]]},{"k":14137,"v":[[0,4,["H3318"]],[4,9,["H4800"]],[9,11,["H2502"]],[11,13,["H3588"]],[13,15,["H2654"]],[15,17,[]]]},{"k":14138,"v":[[0,2,["H3068"]],[2,3,["H1580"]],[3,8,["H6664"]],[8,12,["H1252"]],[12,15,["H3027"]],[15,18,["H7725"]],[18,19,[]]]},{"k":14139,"v":[[0,1,["H3588"]],[1,4,["H8104"]],[4,6,["H1870"]],[6,9,["H3068"]],[9,12,["H3808"]],[12,14,["H7561"]],[14,17,["H4480","H430"]]]},{"k":14140,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H4941"]],[4,6,["H5048"]],[6,11,["H3808"]],[11,13,["H5493"]],[13,15,["H2708"]],[15,16,["H4480"]],[16,17,[]]]},{"k":14141,"v":[[0,2,["H1961"]],[2,4,["H8549"]],[4,5,["H5973"]],[5,10,["H8104"]],[10,13,["H4480","H5771"]]]},{"k":14142,"v":[[0,4,["H3068"]],[4,5,["H7725"]],[5,10,["H6664"]],[10,14,["H1252"]],[14,17,["H3027"]],[17,18,["H5048"]],[18,20,["H5869"]]]},{"k":14143,"v":[[0,1,["H5973"]],[1,3,["H2623"]],[3,8,["H2616"]],[8,9,["H5973"]],[9,11,["H8549"]],[11,12,["H1399"]],[12,17,["H8552"]]]},{"k":14144,"v":[[0,1,["H5973"]],[1,3,["H1305"]],[3,8,["H1305"]],[8,10,["H5973"]],[10,12,["H6141"]],[12,17,["H6617"]]]},{"k":14145,"v":[[0,1,["H3588"]],[1,3,["H859"]],[3,4,["H3467"]],[4,6,["H6041"]],[6,7,["H5971"]],[7,11,["H8213"]],[11,12,["H7311"]],[12,13,["H5869"]]]},{"k":14146,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H215"]],[4,6,["H5216"]],[6,8,["H3068"]],[8,10,["H430"]],[10,12,["H5050"]],[12,14,["H2822"]]]},{"k":14147,"v":[[0,1,["H3588"]],[1,7,["H7323"]],[7,9,["H1416"]],[9,13,["H430"]],[13,17,["H1801"]],[17,19,["H7791"]]]},{"k":14148,"v":[[0,3,["H410"]],[3,5,["H1870"]],[5,7,["H8549"]],[7,9,["H565"]],[9,12,["H3068"]],[12,14,["H6884"]],[14,15,["H1931"]],[15,18,["H4043"]],[18,20,["H3605"]],[20,23,["H2620"]],[23,25,[]]]},{"k":14149,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,4,["H433"]],[4,5,["H4480","H1107"]],[5,7,["H3068"]],[7,9,["H4310"]],[9,12,["H6697"]],[12,13,["H2108"]],[13,15,["H430"]]]},{"k":14150,"v":[[0,3,["H410"]],[3,5,["H247"]],[5,8,["H2428"]],[8,10,["H5414"]],[10,12,["H1870"]],[12,13,["H8549"]]]},{"k":14151,"v":[[0,2,["H7737"]],[2,4,["H7272"]],[4,6,["H355"]],[6,9,["H5975"]],[9,11,["H5921"]],[11,14,["H1116"]]]},{"k":14152,"v":[[0,2,["H3925"]],[2,4,["H3027"]],[4,6,["H4421"]],[6,10,["H7198"]],[10,12,["H5154"]],[12,14,["H5181"]],[14,17,["H2220"]]]},{"k":14153,"v":[[0,4,["H5414"]],[4,7,["H4043"]],[7,10,["H3468"]],[10,14,["H3225"]],[14,18,["H5582"]],[18,21,["H6038"]],[21,25,["H7235"]]]},{"k":14154,"v":[[0,3,["H7337"]],[3,5,["H6806"]],[5,6,["H8478"]],[6,10,["H7166"]],[10,12,["H3808"]],[12,13,["H4571"]]]},{"k":14155,"v":[[0,3,["H7291"]],[3,5,["H341"]],[5,7,["H5381"]],[7,9,["H3808"]],[9,13,["H7725"]],[13,14,["H5704"]],[14,17,["H3615"]]]},{"k":14156,"v":[[0,3,["H4272"]],[3,8,["H3808"]],[8,9,["H3201"]],[9,11,["H6965"]],[11,14,["H5307"]],[14,15,["H8478"]],[15,17,["H7272"]]]},{"k":14157,"v":[[0,4,["H247"]],[4,7,["H2428"]],[7,10,["H4421"]],[10,13,["H3766"]],[13,14,["H8478"]],[14,19,["H6965"]],[19,21,[]]]},{"k":14158,"v":[[0,4,["H5414"]],[4,7,["H6203"]],[7,10,["H341"]],[10,14,["H6789"]],[14,17,["H8130"]],[17,18,[]]]},{"k":14159,"v":[[0,2,["H7768"]],[2,6,["H369"]],[6,8,["H3467"]],[8,11,["H5921"]],[11,13,["H3068"]],[13,16,["H6030"]],[16,18,["H3808"]]]},{"k":14160,"v":[[0,6,["H7833"]],[6,9,["H6083"]],[9,10,["H5921","H6440"]],[10,12,["H7307"]],[12,17,["H7324"]],[17,20,["H2916"]],[20,23,["H2351"]]]},{"k":14161,"v":[[0,3,["H6403"]],[3,7,["H4480","H7379"]],[7,10,["H5971"]],[10,14,["H7760"]],[14,17,["H7218"]],[17,20,["H1471"]],[20,22,["H5971"]],[22,26,["H3808"]],[26,27,["H3045"]],[27,29,["H5647"]],[29,30,[]]]},{"k":14162,"v":[[0,5,["H8088","H241"]],[5,10,["H8085"]],[10,13,["H1121","H5236"]],[13,15,["H3584"]],[15,18,[]]]},{"k":14163,"v":[[0,2,["H1121","H5236"]],[2,5,["H5034"]],[5,8,["H2727"]],[8,10,["H4480"]],[10,13,["H4526"]]]},{"k":14164,"v":[[0,2,["H3068"]],[2,3,["H2416"]],[3,5,["H1288"]],[5,8,["H6697"]],[8,12,["H430"]],[12,15,["H3468"]],[15,17,["H7311"]]]},{"k":14165,"v":[[0,3,["H410"]],[3,5,["H5414","H5360"]],[5,8,["H1696"]],[8,10,["H5971"]],[10,11,["H8478"]],[11,12,[]]]},{"k":14166,"v":[[0,2,["H6403"]],[2,6,["H4480","H341"]],[6,7,["H637"]],[7,11,["H7311"]],[11,12,["H4480"]],[12,16,["H6965"]],[16,21,["H5337"]],[21,25,["H2555"]],[25,26,["H4480","H376"]]]},{"k":14167,"v":[[0,1,["H5921","H3651"]],[1,5,["H3034"]],[5,9,["H3068"]],[9,12,["H1471"]],[12,15,["H2167"]],[15,18,["H8034"]]]},{"k":14168,"v":[[0,1,["H1431"]],[1,2,["H3444"]],[2,7,["H4428"]],[7,9,["H6213"]],[9,10,["H2617"]],[10,13,["H4899"]],[13,15,["H1732"]],[15,19,["H2233"]],[19,21,["H5704","H5769"]]]},{"k":14169,"v":[[0,2,["H8064"]],[2,3,["H5608"]],[3,5,["H3519"]],[5,7,["H410"]],[7,10,["H7549"]],[10,11,["H5046"]],[11,13,["H4639","H3027"]]]},{"k":14170,"v":[[0,1,["H3117"]],[1,3,["H3117"]],[3,4,["H5042"]],[4,5,["H562"]],[5,7,["H3915"]],[7,9,["H3915"]],[9,10,["H2331"]],[10,11,["H1847"]]]},{"k":14171,"v":[[0,3,["H369"]],[3,4,["H562"]],[4,5,["H369"]],[5,6,["H1697"]],[6,9,["H6963"]],[9,11,["H1097"]],[11,12,["H8085"]]]},{"k":14172,"v":[[0,2,["H6957"]],[2,5,["H3318"]],[5,7,["H3605"]],[7,9,["H776"]],[9,12,["H4405"]],[12,15,["H7097"]],[15,18,["H8398"]],[18,23,["H7760"]],[23,25,["H168"]],[25,28,["H8121"]]]},{"k":14173,"v":[[0,1,["H1931"]],[1,5,["H2860"]],[5,7,["H3318"]],[7,10,["H4480","H2646"]],[10,12,["H7797"]],[12,16,["H1368"]],[16,18,["H7323"]],[18,20,["H734"]]]},{"k":14174,"v":[[0,3,["H4161"]],[3,7,["H4480","H7097"]],[7,10,["H8064"]],[10,13,["H8622"]],[13,14,["H5921"]],[14,16,["H7098"]],[16,22,["H369"]],[22,23,["H5641"]],[23,26,["H4480","H2535"]],[26,27,[]]]},{"k":14175,"v":[[0,2,["H8451"]],[2,5,["H3068"]],[5,7,["H8549"]],[7,8,["H7725"]],[8,10,["H5315"]],[10,12,["H5715"]],[12,15,["H3068"]],[15,17,["H539"]],[17,19,["H2449"]],[19,21,["H6612"]]]},{"k":14176,"v":[[0,2,["H6490"]],[2,5,["H3068"]],[5,7,["H3477"]],[7,8,["H8055"]],[8,10,["H3820"]],[10,12,["H4687"]],[12,15,["H3068"]],[15,17,["H1249"]],[17,18,["H215"]],[18,20,["H5869"]]]},{"k":14177,"v":[[0,2,["H3374"]],[2,5,["H3068"]],[5,7,["H2889"]],[7,8,["H5975"]],[8,10,["H5703"]],[10,12,["H4941"]],[12,15,["H3068"]],[15,17,["H571"]],[17,19,["H6663"]],[19,20,["H3162"]]]},{"k":14178,"v":[[0,4,["H2530"]],[4,8,["H4480","H2091"]],[8,11,["H7227"]],[11,13,["H4480","H6337"]],[13,14,["H4966"]],[14,17,["H4480","H1706"]],[17,20,["H5317","H6688"]]]},{"k":14179,"v":[[0,1,["H1571"]],[1,6,["H5650"]],[6,7,["H2094"]],[7,10,["H8104"]],[10,15,["H7227"]],[15,16,["H6118"]]]},{"k":14180,"v":[[0,1,["H4310"]],[1,3,["H995"]],[3,5,["H7691"]],[5,6,["H5352"]],[6,10,["H4480","H5641"]],[10,11,[]]]},{"k":14181,"v":[[0,2,["H2820"]],[2,4,["H5650"]],[4,5,["H1571"]],[5,7,["H4480","H2086"]],[7,11,["H408"]],[11,13,["H4910"]],[13,16,["H227"]],[16,20,["H8552"]],[20,25,["H5352"]],[25,28,["H7227"]],[28,29,["H4480","H6588"]]]},{"k":14182,"v":[[0,3,["H561"]],[3,6,["H6310"]],[6,9,["H1902"]],[9,12,["H3820"]],[12,13,["H1961"]],[13,14,["H7522"]],[14,17,["H6440"]],[17,19,["H3068"]],[19,21,["H6697"]],[21,24,["H1350"]]]},{"k":14183,"v":[[0,2,["H3068"]],[2,3,["H6030"]],[3,7,["H3117"]],[7,9,["H6869"]],[9,11,["H8034"]],[11,14,["H430"]],[14,16,["H3290"]],[16,17,["H7682"]],[17,18,[]]]},{"k":14184,"v":[[0,1,["H7971"]],[1,3,["H5828"]],[3,6,["H4480","H6944"]],[6,8,["H5582"]],[8,12,["H4480","H6726"]]]},{"k":14185,"v":[[0,1,["H2142"]],[1,2,["H3605"]],[2,4,["H4503"]],[4,6,["H1878"]],[6,9,["H5930"]],[9,10,["H5542"]]]},{"k":14186,"v":[[0,1,["H5414"]],[1,7,["H3824"]],[7,9,["H4390"]],[9,10,["H3605"]],[10,12,["H6098"]]]},{"k":14187,"v":[[0,3,["H7442"]],[3,6,["H3444"]],[6,10,["H8034"]],[10,13,["H430"]],[13,19,["H1713"]],[19,21,["H3068"]],[21,22,["H4390"]],[22,23,["H3605"]],[23,25,["H4862"]]]},{"k":14188,"v":[[0,1,["H6258"]],[1,2,["H3045"]],[2,4,["H3588"]],[4,6,["H3068"]],[6,7,["H3467"]],[7,9,["H4899"]],[9,12,["H6030"]],[12,16,["H6944"]],[16,17,["H4480","H8064"]],[17,20,["H3468"]],[20,21,["H1369"]],[21,25,["H3225"]]]},{"k":14189,"v":[[0,1,["H428"]],[1,4,["H7393"]],[4,6,["H428"]],[6,8,["H5483"]],[8,10,["H587"]],[10,12,["H2142"]],[12,14,["H8034"]],[14,17,["H3068"]],[17,19,["H430"]]]},{"k":14190,"v":[[0,1,["H1992"]],[1,4,["H3766"]],[4,6,["H5307"]],[6,8,["H587"]],[8,10,["H6965"]],[10,13,["H5749"]]]},{"k":14191,"v":[[0,1,["H3467"]],[1,2,["H3068"]],[2,5,["H4428"]],[5,6,["H6030"]],[6,8,["H3117"]],[8,10,["H7121"]]]},{"k":14192,"v":[[0,2,["H4428"]],[2,4,["H8055"]],[4,7,["H5797"]],[7,9,["H3068"]],[9,13,["H3444"]],[13,14,["H4100"]],[14,15,["H3966"]],[15,18,["H1523"]]]},{"k":14193,"v":[[0,3,["H5414"]],[3,6,["H3820"]],[6,7,["H8378"]],[7,10,["H1077"]],[10,11,["H4513"]],[11,13,["H782"]],[13,16,["H8193"]],[16,17,["H5542"]]]},{"k":14194,"v":[[0,1,["H3588"]],[1,3,["H6923"]],[3,7,["H1293"]],[7,9,["H2896"]],[9,11,["H7896"]],[11,13,["H5850"]],[13,16,["H6337"]],[16,19,["H7218"]]]},{"k":14195,"v":[[0,2,["H7592"]],[2,3,["H2416"]],[3,4,["H4480"]],[4,8,["H5414"]],[8,12,["H753"]],[12,14,["H3117"]],[14,16,["H5769"]],[16,18,["H5703"]]]},{"k":14196,"v":[[0,2,["H3519"]],[2,4,["H1419"]],[4,7,["H3444"]],[7,8,["H1935"]],[8,10,["H1926"]],[10,13,["H7737"]],[13,14,["H5921"]],[14,15,[]]]},{"k":14197,"v":[[0,1,["H3588"]],[1,4,["H7896"]],[4,7,["H1293"]],[7,9,["H5703"]],[9,15,["H2302","H8057"]],[15,16,["H854"]],[16,18,["H6440"]]]},{"k":14198,"v":[[0,1,["H3588"]],[1,3,["H4428"]],[3,4,["H982"]],[4,7,["H3068"]],[7,11,["H2617"]],[11,15,["H5945"]],[15,18,["H1077"]],[18,20,["H4131"]]]},{"k":14199,"v":[[0,2,["H3027"]],[2,5,["H4672"]],[5,6,["H3605"]],[6,8,["H341"]],[8,11,["H3225"]],[11,14,["H4672"]],[14,17,["H8130"]],[17,18,[]]]},{"k":14200,"v":[[0,3,["H7896"]],[3,7,["H784"]],[7,8,["H8574"]],[8,11,["H6256"]],[11,14,["H6440"]],[14,16,["H3068"]],[16,20,["H1104"]],[20,23,["H639"]],[23,26,["H784"]],[26,28,["H398"]],[28,29,[]]]},{"k":14201,"v":[[0,2,["H6529"]],[2,5,["H6"]],[5,8,["H4480","H776"]],[8,11,["H2233"]],[11,15,["H4480","H1121"]],[15,17,["H120"]]]},{"k":14202,"v":[[0,1,["H3588"]],[1,3,["H5186"]],[3,4,["H7451"]],[4,5,["H5921"]],[5,8,["H2803"]],[8,11,["H4209"]],[11,15,["H1077"]],[15,16,["H3201"]],[16,18,[]]]},{"k":14203,"v":[[0,1,["H3588"]],[1,4,["H7896"]],[4,8,["H7926"]],[8,13,["H3559"]],[13,18,["H4340"]],[18,19,["H5921"]],[19,21,["H6440"]],[21,23,[]]]},{"k":14204,"v":[[0,3,["H7311"]],[3,4,["H3068"]],[4,8,["H5797"]],[8,12,["H7891"]],[12,14,["H2167"]],[14,16,["H1369"]]]},{"k":14205,"v":[[0,2,["H410"]],[2,4,["H410"]],[4,5,["H4100"]],[5,8,["H5800"]],[8,14,["H7350"]],[14,16,["H4480","H3444"]],[16,21,["H1697"]],[21,24,["H7581"]]]},{"k":14206,"v":[[0,3,["H430"]],[3,5,["H7121"]],[5,8,["H3119"]],[8,11,["H6030"]],[11,12,["H3808"]],[12,17,["H3915"]],[17,20,["H3808"]],[20,21,["H1747"]]]},{"k":14207,"v":[[0,2,["H859"]],[2,4,["H6918"]],[4,8,["H3427"]],[8,10,["H8416"]],[10,12,["H3478"]]]},{"k":14208,"v":[[0,2,["H1"]],[2,3,["H982"]],[3,7,["H982"]],[7,11,["H6403"]],[11,12,[]]]},{"k":14209,"v":[[0,2,["H2199"]],[2,3,["H413"]],[3,7,["H4422"]],[7,9,["H982"]],[9,14,["H3808"]],[14,15,["H954"]]]},{"k":14210,"v":[[0,2,["H595"]],[2,5,["H8438"]],[5,7,["H3808"]],[7,8,["H376"]],[8,10,["H2781"]],[10,12,["H120"]],[12,14,["H959"]],[14,17,["H5971"]]]},{"k":14211,"v":[[0,1,["H3605"]],[1,4,["H7200"]],[4,6,["H3932"]],[6,12,["H6362"]],[12,14,["H8193"]],[14,16,["H5128"]],[16,18,["H7218"]],[18,19,[]]]},{"k":14212,"v":[[0,2,["H1556"]],[2,3,["H413"]],[3,5,["H3068"]],[5,9,["H6403"]],[9,13,["H5337"]],[13,15,["H3588"]],[15,17,["H2654"]],[17,19,[]]]},{"k":14213,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,6,["H1518"]],[6,11,["H4480","H990"]],[11,16,["H982"]],[16,20,["H5921"]],[20,22,["H517"]],[22,23,["H7699"]]]},{"k":14214,"v":[[0,3,["H7993"]],[3,4,["H5921"]],[4,8,["H4480","H7358"]],[8,9,["H859"]],[9,12,["H410"]],[12,15,["H517"]],[15,16,["H4480","H990"]]]},{"k":14215,"v":[[0,2,["H408"]],[2,3,["H7368"]],[3,4,["H4480"]],[4,6,["H3588"]],[6,7,["H6869"]],[7,9,["H7138"]],[9,10,["H3588"]],[10,13,["H369"]],[13,15,["H5826"]]]},{"k":14216,"v":[[0,1,["H7227"]],[1,2,["H6499"]],[2,4,["H5437"]],[4,6,["H47"]],[6,9,["H1316"]],[9,13,["H3803"]]]},{"k":14217,"v":[[0,2,["H6475"]],[2,3,["H5921"]],[3,7,["H6310"]],[7,10,["H2963"]],[10,13,["H7580"]],[13,14,["H738"]]]},{"k":14218,"v":[[0,4,["H8210"]],[4,6,["H4325"]],[6,8,["H3605"]],[8,10,["H6106"]],[10,14,["H6504"]],[14,16,["H3820"]],[16,17,["H1961"]],[17,19,["H1749"]],[19,22,["H4549"]],[22,25,["H8432"]],[25,28,["H4578"]]]},{"k":14219,"v":[[0,2,["H3581"]],[2,5,["H3001"]],[5,8,["H2789"]],[8,11,["H3956"]],[11,12,["H1692"]],[12,15,["H4455"]],[15,19,["H8239"]],[19,23,["H6083"]],[23,25,["H4194"]]]},{"k":14220,"v":[[0,1,["H3588"]],[1,2,["H3611"]],[2,4,["H5437"]],[4,7,["H5712"]],[7,10,["H7489"]],[10,12,["H5362"]],[12,15,["H738"]],[15,17,["H3027"]],[17,20,["H7272"]]]},{"k":14221,"v":[[0,3,["H5608"]],[3,4,["H3605"]],[4,6,["H6106"]],[6,7,["H1992"]],[7,8,["H5027"]],[8,10,["H7200"]],[10,12,[]]]},{"k":14222,"v":[[0,2,["H2505"]],[2,4,["H899"]],[4,8,["H5307"]],[8,9,["H1486"]],[9,10,["H5921"]],[10,12,["H3830"]]]},{"k":14223,"v":[[0,3,["H408"]],[3,4,["H859"]],[4,5,["H7368"]],[5,9,["H3068"]],[9,12,["H360"]],[12,13,["H2363"]],[13,16,["H5833"]],[16,17,[]]]},{"k":14224,"v":[[0,1,["H5337"]],[1,3,["H5315"]],[3,6,["H4480","H2719"]],[6,8,["H3173"]],[8,11,["H4480","H3027"]],[11,14,["H3611"]]]},{"k":14225,"v":[[0,1,["H3467"]],[1,5,["H738"]],[5,6,["H4480","H6310"]],[6,10,["H6030"]],[10,14,["H4480","H7161"]],[14,17,["H7214"]]]},{"k":14226,"v":[[0,3,["H5608"]],[3,5,["H8034"]],[5,8,["H251"]],[8,11,["H8432"]],[11,14,["H6951"]],[14,17,["H1984"]],[17,18,[]]]},{"k":14227,"v":[[0,3,["H3373"]],[3,5,["H3068"]],[5,6,["H1984"]],[6,8,["H3605"]],[8,11,["H2233"]],[11,13,["H3290"]],[13,14,["H3513"]],[14,17,["H1481","H4480"]],[17,19,["H3605"]],[19,22,["H2233"]],[22,24,["H3478"]]]},{"k":14228,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H959"]],[5,6,["H3808"]],[6,7,["H8262"]],[7,9,["H6039"]],[9,12,["H6041"]],[12,13,["H3808"]],[13,16,["H5641"]],[16,18,["H6440"]],[18,19,["H4480"]],[19,24,["H7768"]],[24,25,["H413"]],[25,28,["H8085"]]]},{"k":14229,"v":[[0,2,["H8416"]],[2,5,["H4480","H854"]],[5,9,["H7227"]],[9,10,["H6951"]],[10,13,["H7999"]],[13,15,["H5088"]],[15,16,["H5048"]],[16,19,["H3373"]],[19,20,[]]]},{"k":14230,"v":[[0,2,["H6035"]],[2,4,["H398"]],[4,7,["H7646"]],[7,10,["H1984"]],[10,12,["H3068"]],[12,14,["H1875"]],[14,17,["H3824"]],[17,19,["H2421"]],[19,21,["H5703"]]]},{"k":14231,"v":[[0,1,["H3605"]],[1,3,["H657"]],[3,6,["H776"]],[6,8,["H2142"]],[8,10,["H7725"]],[10,11,["H413"]],[11,13,["H3068"]],[13,15,["H3605"]],[15,17,["H4940"]],[17,20,["H1471"]],[20,22,["H7812"]],[22,23,["H6440"]],[23,24,[]]]},{"k":14232,"v":[[0,1,["H3588"]],[1,3,["H4410"]],[3,6,["H3068"]],[6,11,["H4910"]],[11,14,["H1471"]]]},{"k":14233,"v":[[0,1,["H3605"]],[1,5,["H1879"]],[5,7,["H776"]],[7,9,["H398"]],[9,11,["H7812"]],[11,12,["H3605"]],[12,16,["H3381"]],[16,19,["H6083"]],[19,21,["H3766"]],[21,22,["H6440"]],[22,25,["H3808"]],[25,28,["H2421"]],[28,31,["H5315"]]]},{"k":14234,"v":[[0,2,["H2233"]],[2,4,["H5647"]],[4,9,["H5608"]],[9,12,["H136"]],[12,15,["H1755"]]]},{"k":14235,"v":[[0,3,["H935"]],[3,6,["H5046"]],[6,8,["H6666"]],[8,11,["H5971"]],[11,15,["H3205"]],[15,16,["H3588"]],[16,19,["H6213"]],[19,20,[]]]},{"k":14236,"v":[[0,2,["H3068"]],[2,5,["H7462"]],[5,8,["H3808"]],[8,9,["H2637"]]]},{"k":14237,"v":[[0,6,["H7257"]],[6,8,["H1877"]],[8,9,["H4999"]],[9,11,["H5095"]],[11,13,["H5921"]],[13,15,["H4496"]],[15,16,["H4325"]]]},{"k":14238,"v":[[0,2,["H7725"]],[2,4,["H5315"]],[4,6,["H5148"]],[6,10,["H4570"]],[10,12,["H6664"]],[12,16,["H4616","H8034"]]]},{"k":14239,"v":[[0,1,["H1571"]],[1,2,["H3588"]],[2,4,["H1980"]],[4,7,["H1516"]],[7,12,["H6757"]],[12,15,["H3372"]],[15,16,["H3808"]],[16,17,["H7451"]],[17,18,["H3588"]],[18,19,["H859"]],[19,21,["H5978"]],[21,24,["H7626"]],[24,27,["H4938"]],[27,28,["H1992"]],[28,29,["H5162"]],[29,30,[]]]},{"k":14240,"v":[[0,2,["H6186"]],[2,4,["H7979"]],[4,5,["H6440"]],[5,9,["H5048"]],[9,12,["H6887"]],[12,14,["H1878"]],[14,16,["H7218"]],[16,18,["H8081"]],[18,20,["H3563"]],[20,22,["H7310"]]]},{"k":14241,"v":[[0,1,["H389"]],[1,2,["H2896"]],[2,4,["H2617"]],[4,6,["H7291"]],[6,8,["H3605"]],[8,10,["H3117"]],[10,13,["H2416"]],[13,17,["H3427"]],[17,20,["H1004"]],[20,23,["H3068"]],[23,25,["H753","H3117"]]]},{"k":14242,"v":[[0,2,["H776"]],[2,5,["H3068"]],[5,8,["H4393"]],[8,11,["H8398"]],[11,15,["H3427"]],[15,16,[]]]},{"k":14243,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,4,["H3245"]],[4,6,["H5921"]],[6,8,["H3220"]],[8,10,["H3559"]],[10,12,["H5921"]],[12,14,["H5104"]]]},{"k":14244,"v":[[0,1,["H4310"]],[1,3,["H5927"]],[3,6,["H2022"]],[6,9,["H3068"]],[9,11,["H4310"]],[11,13,["H6965"]],[13,16,["H6944"]],[16,17,["H4725"]]]},{"k":14245,"v":[[0,4,["H5355"]],[4,5,["H3709"]],[5,8,["H1249"]],[8,9,["H3824"]],[9,10,["H834"]],[10,12,["H3808"]],[12,14,["H5375"]],[14,16,["H5315"]],[16,18,["H7723"]],[18,19,["H3808"]],[19,20,["H7650"]],[20,21,["H4820"]]]},{"k":14246,"v":[[0,3,["H5375"]],[3,5,["H1293"]],[5,6,["H4480","H854"]],[6,8,["H3068"]],[8,10,["H6666"]],[10,13,["H4480","H430"]],[13,16,["H3468"]]]},{"k":14247,"v":[[0,1,["H2088"]],[1,4,["H1755"]],[4,8,["H1875"]],[8,11,["H1245"]],[11,13,["H6440"]],[13,15,["H3290"]],[15,16,["H5542"]]]},{"k":14248,"v":[[0,2,["H5375"]],[2,4,["H7218"]],[4,7,["H8179"]],[7,12,["H5375"]],[12,14,["H5769"]],[14,15,["H6607"]],[15,18,["H4428"]],[18,20,["H3519"]],[20,23,["H935"]]]},{"k":14249,"v":[[0,1,["H4310"]],[1,3,["H2088"]],[3,4,["H4428"]],[4,6,["H3519"]],[6,8,["H3068"]],[8,9,["H5808"]],[9,11,["H1368"]],[11,13,["H3068"]],[13,14,["H1368"]],[14,16,["H4421"]]]},{"k":14250,"v":[[0,2,["H5375"]],[2,4,["H7218"]],[4,7,["H8179"]],[7,11,["H5375"]],[11,13,["H5769"]],[13,14,["H6607"]],[14,17,["H4428"]],[17,19,["H3519"]],[19,22,["H935"]]]},{"k":14251,"v":[[0,1,["H4310"]],[1,2,["H1931"]],[2,3,["H2088"]],[3,4,["H4428"]],[4,6,["H3519"]],[6,8,["H3068"]],[8,10,["H6635"]],[10,11,["H1931"]],[11,14,["H4428"]],[14,16,["H3519"]],[16,17,["H5542"]]]},{"k":14252,"v":[[0,1,["H413"]],[1,4,["H3068"]],[4,8,["H5375"]],[8,10,["H5315"]]]},{"k":14253,"v":[[0,3,["H430"]],[3,5,["H982"]],[5,10,["H408"]],[10,12,["H954"]],[12,14,["H408"]],[14,16,["H341"]],[16,17,["H5970"]],[17,19,[]]]},{"k":14254,"v":[[0,1,["H1571"]],[1,3,["H3605","H3808"]],[3,5,["H6960"]],[5,9,["H954"]],[9,13,["H954"]],[13,15,["H898"]],[15,17,["H7387"]]]},{"k":14255,"v":[[0,1,["H3045"]],[1,4,["H1870"]],[4,6,["H3068"]],[6,7,["H3925"]],[7,10,["H734"]]]},{"k":14256,"v":[[0,1,["H1869"]],[1,5,["H571"]],[5,7,["H3925"]],[7,9,["H3588"]],[9,10,["H859"]],[10,13,["H430"]],[13,16,["H3468"]],[16,21,["H6960"]],[21,22,["H3605"]],[22,24,["H3117"]]]},{"k":14257,"v":[[0,1,["H2142"]],[1,3,["H3068"]],[3,6,["H7356"]],[6,9,["H2617"]],[9,10,["H3588"]],[10,11,["H1992"]],[11,16,["H4480","H5769"]]]},{"k":14258,"v":[[0,1,["H2142"]],[1,2,["H408"]],[2,4,["H2403"]],[4,7,["H5271"]],[7,10,["H6588"]],[10,14,["H2617"]],[14,15,["H2142"]],[15,16,["H859"]],[16,21,["H4616","H2898"]],[21,23,["H3068"]]]},{"k":14259,"v":[[0,1,["H2896"]],[1,3,["H3477"]],[3,6,["H3068"]],[6,7,["H5921","H3651"]],[7,10,["H3384"]],[10,11,["H2400"]],[11,14,["H1870"]]]},{"k":14260,"v":[[0,2,["H6035"]],[2,5,["H1869"]],[5,7,["H4941"]],[7,10,["H6035"]],[10,13,["H3925"]],[13,15,["H1870"]]]},{"k":14261,"v":[[0,1,["H3605"]],[1,3,["H734"]],[3,6,["H3068"]],[6,8,["H2617"]],[8,10,["H571"]],[10,14,["H5341"]],[14,16,["H1285"]],[16,19,["H5713"]]]},{"k":14262,"v":[[0,4,["H4616","H8034"]],[4,6,["H3068"]],[6,7,["H5545"]],[7,9,["H5771"]],[9,10,["H3588"]],[10,11,["H1931"]],[11,13,["H7227"]]]},{"k":14263,"v":[[0,1,["H4310"]],[1,2,["H376"]],[2,5,["H2088"]],[5,6,["H3373"]],[6,8,["H3068"]],[8,12,["H3384"]],[12,15,["H1870"]],[15,19,["H977"]]]},{"k":14264,"v":[[0,2,["H5315"]],[2,4,["H3885"]],[4,6,["H2896"]],[6,9,["H2233"]],[9,11,["H3423"]],[11,13,["H776"]]]},{"k":14265,"v":[[0,2,["H5475"]],[2,5,["H3068"]],[5,10,["H3373"]],[10,15,["H3045"]],[15,18,["H1285"]]]},{"k":14266,"v":[[0,2,["H5869"]],[2,4,["H8548"]],[4,5,["H413"]],[5,7,["H3068"]],[7,8,["H3588"]],[8,9,["H1931"]],[9,14,["H3318","H7272"]],[14,17,["H4480","H7568"]]]},{"k":14267,"v":[[0,1,["H6437"]],[1,3,["H413"]],[3,7,["H2603"]],[7,10,["H3588"]],[10,11,["H589"]],[11,13,["H3173"]],[13,15,["H6041"]]]},{"k":14268,"v":[[0,2,["H6869"]],[2,5,["H3824"]],[5,7,["H7337"]],[7,12,["H3318"]],[12,15,["H4480","H4691"]]]},{"k":14269,"v":[[0,2,["H7200"]],[2,4,["H6040"]],[4,7,["H5999"]],[7,9,["H5375"]],[9,10,["H3605"]],[10,12,["H2403"]]]},{"k":14270,"v":[[0,1,["H7200"]],[1,3,["H341"]],[3,4,["H3588"]],[4,7,["H7231"]],[7,10,["H8130"]],[10,13,["H2555"]],[13,14,["H8135"]]]},{"k":14271,"v":[[0,2,["H8104"]],[2,4,["H5315"]],[4,6,["H5337"]],[6,10,["H408"]],[10,12,["H954"]],[12,13,["H3588"]],[13,17,["H2620"]],[17,19,[]]]},{"k":14272,"v":[[0,2,["H8537"]],[2,4,["H3476"]],[4,5,["H5341"]],[5,7,["H3588"]],[7,10,["H6960"]],[10,11,[]]]},{"k":14273,"v":[[0,1,["H6299","(H853)"]],[1,2,["H3478"]],[2,4,["H430"]],[4,7,["H4480","H3605"]],[7,9,["H6869"]]]},{"k":14274,"v":[[0,1,["H8199"]],[1,4,["H3068"]],[4,5,["H3588"]],[5,6,["H589"]],[6,8,["H1980"]],[8,11,["H8537"]],[11,14,["H982"]],[14,18,["H3068"]],[18,22,["H3808"]],[22,23,["H4571"]]]},{"k":14275,"v":[[0,1,["H974"]],[1,4,["H3068"]],[4,6,["H5254"]],[6,8,["H6884"]],[8,10,["H3629"]],[10,13,["H3820"]]]},{"k":14276,"v":[[0,1,["H3588"]],[1,3,["H2617"]],[3,5,["H5048"]],[5,7,["H5869"]],[7,11,["H1980"]],[11,14,["H571"]]]},{"k":14277,"v":[[0,3,["H3808"]],[3,4,["H3427"]],[4,5,["H5973"]],[5,6,["H7723"]],[6,7,["H4962"]],[7,8,["H3808"]],[8,12,["H935"]],[12,13,["H5973"]],[13,14,["H5956"]]]},{"k":14278,"v":[[0,3,["H8130"]],[3,5,["H6951"]],[5,8,["H7489"]],[8,11,["H3808"]],[11,12,["H3427"]],[12,13,["H5973"]],[13,15,["H7563"]]]},{"k":14279,"v":[[0,3,["H7364"]],[3,5,["H3709"]],[5,7,["H5356"]],[7,11,["H5437"]],[11,12,["(H853)"]],[12,13,["H4196"]],[13,15,["H3068"]]]},{"k":14280,"v":[[0,4,["H8085"]],[4,7,["H6963"]],[7,9,["H8426"]],[9,11,["H5608"]],[11,13,["H3605"]],[13,16,["H6381"]]]},{"k":14281,"v":[[0,1,["H3068"]],[1,4,["H157"]],[4,6,["H4583"]],[6,9,["H1004"]],[9,12,["H4725"]],[12,15,["H3519"]],[15,16,["H4908"]]]},{"k":14282,"v":[[0,1,["H622"]],[1,2,["H408"]],[2,4,["H5315"]],[4,5,["H5973"]],[5,6,["H2400"]],[6,9,["H2416"]],[9,10,["H5973"]],[10,11,["H1818"]],[11,12,["H376"]]]},{"k":14283,"v":[[0,2,["H834"]],[2,3,["H3027"]],[3,5,["H2154"]],[5,9,["H3225"]],[9,11,["H4390"]],[11,13,["H7810"]]]},{"k":14284,"v":[[0,4,["H589"]],[4,7,["H1980"]],[7,10,["H8537"]],[10,11,["H6299"]],[11,15,["H2603"]],[15,17,[]]]},{"k":14285,"v":[[0,2,["H7272"]],[2,3,["H5975"]],[3,7,["H4334"]],[7,10,["H4721"]],[10,13,["H1288"]],[13,15,["H3068"]]]},{"k":14286,"v":[[0,2,["H3068"]],[2,5,["H216"]],[5,8,["H3468"]],[8,9,["H4480","H4310"]],[9,12,["H3372"]],[12,14,["H3068"]],[14,17,["H4581"]],[17,20,["H2416"]],[20,22,["H4480","H4310"]],[22,26,["H6342"]]]},{"k":14287,"v":[[0,3,["H7489"]],[3,6,["H6862"]],[6,9,["H341"]],[9,10,["H7126"]],[10,11,["H5921"]],[11,15,["H398","(H853)"]],[15,17,["H1320"]],[17,18,["H1992"]],[18,19,["H3782"]],[19,21,["H5307"]]]},{"k":14288,"v":[[0,1,["H518"]],[1,3,["H4264"]],[3,5,["H2583"]],[5,6,["H5921"]],[6,9,["H3820"]],[9,11,["H3808"]],[11,12,["H3372"]],[12,13,["H518"]],[13,14,["H4421"]],[14,16,["H6965"]],[16,17,["H5921"]],[17,20,["H2063"]],[20,22,["H589"]],[22,24,["H982"]]]},{"k":14289,"v":[[0,1,["H259"]],[1,5,["H7592"]],[5,6,["H4480","H854"]],[6,8,["H3068"]],[8,13,["H1245"]],[13,17,["H3427"]],[17,20,["H1004"]],[20,23,["H3068"]],[23,24,["H3605"]],[24,26,["H3117"]],[26,29,["H2416"]],[29,31,["H2372"]],[31,33,["H5278"]],[33,36,["H3068"]],[36,39,["H1239"]],[39,42,["H1964"]]]},{"k":14290,"v":[[0,1,["H3588"]],[1,4,["H3117"]],[4,6,["H7451"]],[6,9,["H6845"]],[9,13,["H5520"]],[13,16,["H5643"]],[16,19,["H168"]],[19,22,["H5641"]],[22,28,["H7311"]],[28,31,["H6697"]]]},{"k":14291,"v":[[0,2,["H6258"]],[2,5,["H7218"]],[5,8,["H7311"]],[8,9,["H5921"]],[9,11,["H341"]],[11,13,["H5439"]],[13,18,["H2076"]],[18,21,["H168"]],[21,22,["H2077"]],[22,24,["H8643"]],[24,27,["H7891"]],[27,32,["H2167"]],[32,35,["H3068"]]]},{"k":14292,"v":[[0,1,["H8085"]],[1,3,["H3068"]],[3,6,["H7121"]],[6,9,["H6963"]],[9,11,["H2603"]],[11,16,["H6030"]],[16,17,[]]]},{"k":14293,"v":[[0,4,["H1245"]],[4,7,["H6440"]],[7,9,["H3820"]],[9,10,["H559"]],[10,12,["(H853)"]],[12,14,["H6440"]],[14,15,["H3068"]],[15,18,["H1245"]]]},{"k":14294,"v":[[0,1,["H5641"]],[1,2,["H408"]],[2,4,["H6440"]],[4,6,["H4480"]],[6,12,["H5186","H408","H5650"]],[12,14,["H639"]],[14,17,["H1961"]],[17,19,["H5833"]],[19,20,["H5203"]],[20,22,["H408"]],[22,23,["H408"]],[23,24,["H5800"]],[24,27,["H430"]],[27,30,["H3468"]]]},{"k":14295,"v":[[0,1,["H3588"]],[1,3,["H1"]],[3,6,["H517"]],[6,7,["H5800"]],[7,11,["H3068"]],[11,15,["H622"]]]},{"k":14296,"v":[[0,1,["H3384"]],[1,4,["H1870"]],[4,6,["H3068"]],[6,8,["H5148"]],[8,12,["H4334"]],[12,13,["H734"]],[13,15,["H4616"]],[15,17,["H8324"]]]},{"k":14297,"v":[[0,1,["H5414"]],[1,3,["H408"]],[3,7,["H5315"]],[7,10,["H6862"]],[10,11,["H3588"]],[11,12,["H8267"]],[12,13,["H5707"]],[13,16,["H6965"]],[16,23,["H3307"]],[23,24,["H2555"]]]},{"k":14298,"v":[[0,4,["H3884"]],[4,7,["H539"]],[7,9,["H7200"]],[9,11,["H2898"]],[11,14,["H3068"]],[14,17,["H776"]],[17,20,["H2416"]]]},{"k":14299,"v":[[0,1,["H6960"]],[1,2,["H413"]],[2,4,["H3068"]],[4,8,["H2388"]],[8,12,["H553"]],[12,14,["H3820"]],[14,15,["H6960"]],[15,18,["H413"]],[18,20,["H3068"]]]},{"k":14300,"v":[[0,1,["H413"]],[1,5,["H7121"]],[5,7,["H3068"]],[7,9,["H6697"]],[9,11,["H408"]],[11,12,["H2790"]],[12,13,["H4480"]],[13,15,["H6435"]],[15,19,["H2790"]],[19,20,["H4480"]],[20,24,["H4911","H5973"]],[24,28,["H3381"]],[28,31,["H953"]]]},{"k":14301,"v":[[0,1,["H8085"]],[1,3,["H6963"]],[3,6,["H8469"]],[6,9,["H7768"]],[9,10,["H413"]],[10,15,["H5375"]],[15,17,["H3027"]],[17,18,["H413"]],[18,20,["H6944"]],[20,21,["H1687"]]]},{"k":14302,"v":[[0,1,["H4900"]],[1,3,["H408"]],[3,5,["H5973"]],[5,7,["H7563"]],[7,9,["H5973"]],[9,11,["H6466"]],[11,13,["H205"]],[13,15,["H1696"]],[15,16,["H7965"]],[16,17,["H5973"]],[17,19,["H7453"]],[19,21,["H7451"]],[21,25,["H3824"]]]},{"k":14303,"v":[[0,1,["H5414"]],[1,6,["H6467"]],[6,11,["H7455"]],[11,14,["H4611"]],[14,15,["H5414"]],[15,19,["H4639"]],[19,22,["H3027"]],[22,23,["H7725"]],[23,27,["H1576"]]]},{"k":14304,"v":[[0,1,["H3588"]],[1,3,["H995","H413"]],[3,4,["H3808"]],[4,6,["H6468"]],[6,9,["H3068"]],[9,12,["H4639"]],[12,15,["H3027"]],[15,18,["H2040"]],[18,21,["H3808"]],[21,24,["H1129"]]]},{"k":14305,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,5,["H3588"]],[5,8,["H8085"]],[8,10,["H6963"]],[10,13,["H8469"]]]},{"k":14306,"v":[[0,2,["H3068"]],[2,5,["H5797"]],[5,8,["H4043"]],[8,10,["H3820"]],[10,11,["H982"]],[11,17,["H5826"]],[17,20,["H3820"]],[20,22,["H5937"]],[22,26,["H4480","H7892"]],[26,29,["H3034"]],[29,30,[]]]},{"k":14307,"v":[[0,2,["H3068"]],[2,5,["H5797"]],[5,7,["H1931"]],[7,10,["H3444"]],[10,11,["H4581"]],[11,14,["H4899"]]]},{"k":14308,"v":[[0,1,["H3467","(H853)"]],[1,3,["H5971"]],[3,5,["H1288","(H853)"]],[5,7,["H5159"]],[7,8,["H7462"]],[8,14,["H5375"]],[14,16,["H5704","H5769"]]]},{"k":14309,"v":[[0,1,["H3051"]],[1,4,["H3068"]],[4,7,["H1121","H410"]],[7,8,["H3051"]],[8,11,["H3068"]],[11,12,["H3519"]],[12,14,["H5797"]]]},{"k":14310,"v":[[0,1,["H3051"]],[1,4,["H3068"]],[4,6,["H3519"]],[6,10,["H8034"]],[10,11,["H7812"]],[11,13,["H3068"]],[13,16,["H1927"]],[16,18,["H6944"]]]},{"k":14311,"v":[[0,2,["H6963"]],[2,5,["H3068"]],[5,7,["H5921"]],[7,9,["H4325"]],[9,11,["H410"]],[11,13,["H3519"]],[13,14,["H7481"]],[14,16,["H3068"]],[16,18,["H5921"]],[18,19,["H7227"]],[19,20,["H4325"]]]},{"k":14312,"v":[[0,2,["H6963"]],[2,5,["H3068"]],[5,7,["H3581"]],[7,9,["H6963"]],[9,12,["H3068"]],[12,16,["H1926"]]]},{"k":14313,"v":[[0,2,["H6963"]],[2,5,["H3068"]],[5,6,["H7665"]],[6,8,["H730"]],[8,11,["H3068"]],[11,12,["H7665","(H853)"]],[12,14,["H730"]],[14,16,["H3844"]]]},{"k":14314,"v":[[0,6,["H7540"]],[6,7,["H3644"]],[7,9,["H5695"]],[9,10,["H3844"]],[10,12,["H8303"]],[12,13,["H3644"]],[13,15,["H1121"]],[15,16,["H7214"]]]},{"k":14315,"v":[[0,2,["H6963"]],[2,5,["H3068"]],[5,6,["H2672"]],[6,8,["H3852"]],[8,10,["H784"]]]},{"k":14316,"v":[[0,2,["H6963"]],[2,5,["H3068"]],[5,6,["H2342"]],[6,8,["H4057"]],[8,10,["H3068"]],[10,11,["H2342"]],[11,13,["H4057"]],[13,15,["H6946"]]]},{"k":14317,"v":[[0,2,["H6963"]],[2,5,["H3068"]],[5,8,["H355"]],[8,10,["H2342"]],[10,12,["H2834"]],[12,14,["H3295"]],[14,18,["H1964"]],[18,21,["H3605"]],[21,23,["H559"]],[23,25,["H3519"]]]},{"k":14318,"v":[[0,2,["H3068"]],[2,3,["H3427"]],[3,6,["H3999"]],[6,9,["H3068"]],[9,10,["H3427"]],[10,11,["H4428"]],[11,13,["H5769"]]]},{"k":14319,"v":[[0,2,["H3068"]],[2,4,["H5414"]],[4,5,["H5797"]],[5,8,["H5971"]],[8,10,["H3068"]],[10,12,["H1288","(H853)"]],[12,14,["H5971"]],[14,16,["H7965"]]]},{"k":14320,"v":[[0,3,["H7311"]],[3,6,["H3068"]],[6,7,["H3588"]],[7,12,["H1802"]],[12,15,["H3808"]],[15,18,["H341"]],[18,20,["H8055"]],[20,22,[]]]},{"k":14321,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,6,["H7768"]],[6,7,["H413"]],[7,12,["H7495"]],[12,13,[]]]},{"k":14322,"v":[[0,2,["H3068"]],[2,6,["H5927"]],[6,8,["H5315"]],[8,9,["H4480"]],[9,11,["H7585"]],[11,16,["H2421"]],[16,22,["H4480","H3381"]],[22,25,["H953"]]]},{"k":14323,"v":[[0,1,["H2167"]],[1,4,["H3068"]],[4,7,["H2623"]],[7,12,["H3034"]],[12,15,["H2143"]],[15,18,["H6944"]]]},{"k":14324,"v":[[0,1,["H3588"]],[1,3,["H639"]],[3,7,["H7281"]],[7,10,["H7522"]],[10,12,["H2416"]],[12,13,["H1065"]],[13,15,["H3885"]],[15,18,["H6153"]],[18,20,["H7440"]],[20,24,["H1242"]]]},{"k":14325,"v":[[0,4,["H7959"]],[4,5,["H589"]],[5,6,["H559"]],[6,9,["H1077","H5769"]],[9,11,["H4131"]]]},{"k":14326,"v":[[0,1,["H3068"]],[1,4,["H7522"]],[4,9,["H2042"]],[9,11,["H5975"]],[11,12,["H5797"]],[12,15,["H5641"]],[15,17,["H6440"]],[17,20,["H1961"]],[20,21,["H926"]]]},{"k":14327,"v":[[0,2,["H7121"]],[2,3,["H413"]],[3,6,["H3068"]],[6,8,["H413"]],[8,10,["H136"]],[10,13,["H2603"]]]},{"k":14328,"v":[[0,1,["H4100"]],[1,2,["H1215"]],[2,7,["H1818"]],[7,11,["H3381"]],[11,12,["H413"]],[12,14,["H7845"]],[14,17,["H6083"]],[17,18,["H3034"]],[18,22,["H5046"]],[22,24,["H571"]]]},{"k":14329,"v":[[0,1,["H8085"]],[1,3,["H3068"]],[3,6,["H2603"]],[6,9,["H3068"]],[9,10,["H1961"]],[10,13,["H5826"]]]},{"k":14330,"v":[[0,3,["H2015"]],[3,7,["H4553"]],[7,9,["H4234"]],[9,13,["H6605"]],[13,15,["H8242"]],[15,17,["H247"]],[17,20,["H8057"]]]},{"k":14331,"v":[[0,4,["H4616"]],[4,6,["H3519"]],[6,9,["H2167"]],[9,13,["H3808"]],[13,15,["H1826"]],[15,17,["H3068"]],[17,19,["H430"]],[19,23,["H3034"]],[23,27,["H5769"]]]},{"k":14332,"v":[[0,4,["H3068"]],[4,9,["H2620"]],[9,12,["H408","H5769"]],[12,14,["H954"]],[14,15,["H6403"]],[15,19,["H6666"]]]},{"k":14333,"v":[[0,2,["H5186"]],[2,4,["H241"]],[4,5,["H413"]],[5,7,["H5337"]],[7,9,["H4120"]],[9,10,["H1961"]],[10,13,["H4581"]],[13,14,["H6697"]],[14,17,["H1004"]],[17,19,["H4686"]],[19,21,["H3467"]],[21,22,[]]]},{"k":14334,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,5,["H5553"]],[5,8,["H4686"]],[8,13,["H4616","H8034"]],[13,14,["H5148"]],[14,17,["H5095"]],[17,18,[]]]},{"k":14335,"v":[[0,3,["H3318"]],[3,6,["H4480","H7568"]],[6,7,["H2098"]],[7,11,["H2934"]],[11,14,["H3588"]],[14,15,["H859"]],[15,18,["H4581"]]]},{"k":14336,"v":[[0,3,["H3027"]],[3,5,["H6485"]],[5,7,["H7307"]],[7,10,["H6299"]],[10,13,["H3068"]],[13,14,["H410"]],[14,16,["H571"]]]},{"k":14337,"v":[[0,3,["H8130"]],[3,6,["H8104"]],[6,7,["H7723"]],[7,8,["H1892"]],[8,10,["H589"]],[10,11,["H982"]],[11,12,["H413"]],[12,14,["H3068"]]]},{"k":14338,"v":[[0,4,["H1523"]],[4,6,["H8055"]],[6,9,["H2617"]],[9,10,["H834"]],[10,13,["H7200","(H853)"]],[13,15,["H6040"]],[15,18,["H3045"]],[18,20,["H5315"]],[20,22,["H6869"]]]},{"k":14339,"v":[[0,3,["H3808"]],[3,6,["H5462"]],[6,9,["H3027"]],[9,12,["H341"]],[12,15,["H5975"]],[15,17,["H7272"]],[17,21,["H4800"]]]},{"k":14340,"v":[[0,2,["H2603"]],[2,6,["H3068"]],[6,7,["H3588"]],[7,11,["H6862"]],[11,13,["H5869"]],[13,15,["H6244"]],[15,17,["H3708"]],[17,20,["H5315"]],[20,23,["H990"]]]},{"k":14341,"v":[[0,1,["H3588"]],[1,3,["H2416"]],[3,5,["H3615"]],[5,7,["H3015"]],[7,10,["H8141"]],[10,12,["H585"]],[12,14,["H3581"]],[14,15,["H3782"]],[15,19,["H5771"]],[19,22,["H6106"]],[22,24,["H6244"]]]},{"k":14342,"v":[[0,2,["H1961"]],[2,4,["H2781"]],[4,6,["H4480","H3605"]],[6,8,["H6887"]],[8,10,["H3966"]],[10,13,["H7934"]],[13,16,["H6343"]],[16,19,["H3045"]],[19,23,["H7200"]],[23,25,["H2351"]],[25,26,["H5074"]],[26,27,["H4480"]],[27,28,[]]]},{"k":14343,"v":[[0,3,["H7911"]],[3,7,["H4191"]],[7,10,["H4480","H3820"]],[10,12,["H1961"]],[12,15,["H6"]],[15,16,["H3627"]]]},{"k":14344,"v":[[0,1,["H3588"]],[1,4,["H8085"]],[4,6,["H1681"]],[6,8,["H7227"]],[8,9,["H4032"]],[9,13,["H4480","H5439"]],[13,17,["H3245"]],[17,18,["H3162"]],[18,19,["H5921"]],[19,22,["H2161"]],[22,25,["H3947"]],[25,27,["H5315"]]]},{"k":14345,"v":[[0,2,["H589"]],[2,3,["H982"]],[3,4,["H5921"]],[4,7,["H3068"]],[7,9,["H559"]],[9,10,["H859"]],[10,13,["H430"]]]},{"k":14346,"v":[[0,2,["H6256"]],[2,6,["H3027"]],[6,7,["H5337"]],[7,11,["H4480","H3027"]],[11,14,["H341"]],[14,19,["H4480","H7291"]],[19,20,[]]]},{"k":14347,"v":[[0,3,["H6440"]],[3,5,["H215"]],[5,6,["H5921"]],[6,8,["H5650"]],[8,9,["H3467"]],[9,13,["H2617"]],[13,14,[]]]},{"k":14348,"v":[[0,3,["H408"]],[3,5,["H954"]],[5,7,["H3068"]],[7,8,["H3588"]],[8,12,["H7121"]],[12,16,["H7563"]],[16,18,["H954"]],[18,23,["H1826"]],[23,26,["H7585"]]]},{"k":14349,"v":[[0,3,["H8267"]],[3,4,["H8193"]],[4,8,["H481"]],[8,10,["H1696"]],[10,12,["H6277"]],[12,13,["H1346"]],[13,15,["H937"]],[15,16,["H5921"]],[16,18,["H6662"]]]},{"k":14350,"v":[[0,2,["H4100"]],[2,3,["H7227"]],[3,6,["H2898"]],[6,7,["H834"]],[7,11,["H6845"]],[11,15,["H3373"]],[15,20,["H6466"]],[20,24,["H2620"]],[24,27,["H5048"]],[27,29,["H1121"]],[29,31,["H120"]]]},{"k":14351,"v":[[0,3,["H5641"]],[3,7,["H5643"]],[7,10,["H6440"]],[10,13,["H4480","H7407"]],[13,15,["H376"]],[15,20,["H6845"]],[20,23,["H5521"]],[23,26,["H4480","H7379"]],[26,28,["H3956"]]]},{"k":14352,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,5,["H3588"]],[5,12,["H6381","H2617"]],[12,15,["H4692"]],[15,16,["H5892"]]]},{"k":14353,"v":[[0,2,["H589"]],[2,3,["H559"]],[3,6,["H2648"]],[6,10,["H1629"]],[10,12,["H4480","H5048"]],[12,14,["H5869"]],[14,15,["H403"]],[15,17,["H8085"]],[17,19,["H6963"]],[19,22,["H8469"]],[22,25,["H7768"]],[25,26,["H413"]],[26,27,[]]]},{"k":14354,"v":[[0,2,["H157","(H853)"]],[2,4,["H3068"]],[4,5,["H3605"]],[5,8,["H2623"]],[8,11,["H3068"]],[11,12,["H5341"]],[12,14,["H539"]],[14,16,["H5921","H3499"]],[16,17,["H7999"]],[17,19,["H1346"]],[19,20,["H6213"]]]},{"k":14355,"v":[[0,4,["H2388"]],[4,8,["H553"]],[8,10,["H3824"]],[10,11,["H3605"]],[11,14,["H3176"]],[14,17,["H3068"]]]},{"k":14356,"v":[[0,1,["H835"]],[1,5,["H6588"]],[5,7,["H5375"]],[7,9,["H2401"]],[9,11,["H3680"]]]},{"k":14357,"v":[[0,1,["H835"]],[1,4,["H120"]],[4,8,["H3068"]],[8,9,["H2803"]],[9,10,["H3808"]],[10,11,["H5771"]],[11,15,["H7307"]],[15,18,["H369"]],[18,19,["H7423"]]]},{"k":14358,"v":[[0,1,["H3588"]],[1,4,["H2790"]],[4,6,["H6106"]],[6,8,["H1086"]],[8,11,["H7581"]],[11,12,["H3605"]],[12,14,["H3117"]],[14,15,[]]]},{"k":14359,"v":[[0,1,["H3588"]],[1,2,["H3119"]],[2,4,["H3915"]],[4,6,["H3027"]],[6,8,["H3513"]],[8,9,["H5921"]],[9,12,["H3955"]],[12,14,["H2015"]],[14,17,["H2725"]],[17,19,["H7019"]],[19,20,["H5542"]]]},{"k":14360,"v":[[0,2,["H3045"]],[2,4,["H2403"]],[4,9,["H5771"]],[9,12,["H3808"]],[12,13,["H3680"]],[13,15,["H559"]],[15,18,["H3034"]],[18,20,["H5921","H6588"]],[20,23,["H3068"]],[23,25,["H859"]],[25,26,["H5375"]],[26,28,["H5771"]],[28,31,["H2403"]],[31,32,["H5542"]]]},{"k":14361,"v":[[0,1,["H5921"]],[1,2,["H2063"]],[2,4,["H3605"]],[4,8,["H2623"]],[8,9,["H6419"]],[9,10,["H413"]],[10,14,["H6256"]],[14,19,["H4672"]],[19,20,["H7535"]],[20,23,["H7858"]],[23,25,["H7227"]],[25,26,["H4325"]],[26,29,["H3808"]],[29,31,["H5060"]],[31,32,["H413"]],[32,33,[]]]},{"k":14362,"v":[[0,1,["H859"]],[1,5,["H5643"]],[5,8,["H5341"]],[8,11,["H4480","H6862"]],[11,16,["H5437"]],[16,18,["H7438"]],[18,20,["H6405"]],[20,21,["H5542"]]]},{"k":14363,"v":[[0,3,["H7919"]],[3,6,["H3384"]],[6,10,["H1870"]],[10,11,["H2098"]],[11,14,["H1980"]],[14,17,["H3289","H5921"]],[17,21,["H5869"]]]},{"k":14364,"v":[[0,1,["H1961"]],[1,3,["H408"]],[3,6,["H5483"]],[6,10,["H6505"]],[10,13,["H369"]],[13,14,["H995"]],[14,16,["H5716"]],[16,20,["H1102"]],[20,22,["H4964"]],[22,24,["H7448"]],[24,25,["H1077"]],[25,28,["H7126"]],[28,30,["H413"]]]},{"k":14365,"v":[[0,1,["H7227"]],[1,2,["H4341"]],[2,7,["H7563"]],[7,11,["H982"]],[11,14,["H3068"]],[14,15,["H2617"]],[15,19,["H5437"]]]},{"k":14366,"v":[[0,2,["H8055"]],[2,5,["H3068"]],[5,7,["H1523"]],[7,9,["H6662"]],[9,13,["H7442"]],[13,14,["H3605"]],[14,18,["H3477"]],[18,20,["H3820"]]]},{"k":14367,"v":[[0,1,["H7442"]],[1,4,["H3068"]],[4,7,["H6662"]],[7,9,["H8416"]],[9,11,["H5000"]],[11,14,["H3477"]]]},{"k":14368,"v":[[0,1,["H3034"]],[1,3,["H3068"]],[3,5,["H3658"]],[5,6,["H2167"]],[6,11,["H5035"]],[11,17,["H6218"]]]},{"k":14369,"v":[[0,1,["H7891"]],[1,5,["H2319"]],[5,6,["H7892"]],[6,7,["H5059"]],[7,8,["H3190"]],[8,12,["H8643"]]]},{"k":14370,"v":[[0,1,["H3588"]],[1,3,["H1697"]],[3,6,["H3068"]],[6,8,["H3477"]],[8,10,["H3605"]],[10,12,["H4639"]],[12,16,["H530"]]]},{"k":14371,"v":[[0,2,["H157"]],[2,3,["H6666"]],[3,5,["H4941"]],[5,7,["H776"]],[7,9,["H4390"]],[9,12,["H2617"]],[12,15,["H3068"]]]},{"k":14372,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,9,["H8064"]],[9,10,["H6213"]],[10,12,["H3605"]],[12,14,["H6635"]],[14,19,["H7307"]],[19,22,["H6310"]]]},{"k":14373,"v":[[0,2,["H3664"]],[2,4,["H4325"]],[4,7,["H3220"]],[7,11,["H5067"]],[11,14,["H5414"]],[14,16,["H8415"]],[16,18,["H214"]]]},{"k":14374,"v":[[0,2,["H3605"]],[2,4,["H776"]],[4,5,["H3372"]],[5,7,["H4480","H3068"]],[7,9,["H3605"]],[9,11,["H3427"]],[11,14,["H8398"]],[14,17,["H1481"]],[17,18,["H4480"]],[18,19,[]]]},{"k":14375,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,3,["H559"]],[3,6,["H1961"]],[6,8,["H1931"]],[8,9,["H6680"]],[9,13,["H5975"]]]},{"k":14376,"v":[[0,2,["H3068"]],[2,5,["H6098"]],[5,8,["H1471"]],[8,10,["H6331"]],[10,14,["H4284"]],[14,17,["H5971"]],[17,20,["H5106"]]]},{"k":14377,"v":[[0,2,["H6098"]],[2,5,["H3068"]],[5,6,["H5975"]],[6,8,["H5769"]],[8,10,["H4284"]],[10,13,["H3820"]],[13,15,["H1755"]],[15,16,["H1755"]]]},{"k":14378,"v":[[0,1,["H835"]],[1,4,["H1471"]],[4,5,["H834"]],[5,6,["H430"]],[6,9,["H3068"]],[9,12,["H5971"]],[12,16,["H977"]],[16,20,["H5159"]]]},{"k":14379,"v":[[0,2,["H3068"]],[2,3,["H5027"]],[3,5,["H4480","H8064"]],[5,7,["H7200","(H853)"]],[7,8,["H3605"]],[8,10,["H1121"]],[10,12,["H120"]]]},{"k":14380,"v":[[0,3,["H4480","H4349"]],[3,6,["H3427"]],[6,8,["H7688"]],[8,9,["H413"]],[9,10,["H3605"]],[10,12,["H3427"]],[12,15,["H776"]]]},{"k":14381,"v":[[0,2,["H3335"]],[2,4,["H3820"]],[4,5,["H3162"]],[5,7,["H995","H413"]],[7,8,["H3605"]],[8,10,["H4639"]]]},{"k":14382,"v":[[0,3,["H369"]],[3,4,["H4428"]],[4,5,["H3467"]],[5,8,["H7230"]],[8,11,["H2428"]],[11,14,["H1368"]],[14,16,["H3808"]],[16,17,["H5337"]],[17,19,["H7230"]],[19,20,["H3581"]]]},{"k":14383,"v":[[0,2,["H5483"]],[2,6,["H8267"]],[6,8,["H8668"]],[8,9,["H3808"]],[9,12,["H4422"]],[12,16,["H7230"]],[16,17,["H2428"]]]},{"k":14384,"v":[[0,1,["H2009"]],[1,3,["H5869"]],[3,6,["H3068"]],[6,8,["H413"]],[8,11,["H3373"]],[11,16,["H3176"]],[16,19,["H2617"]]]},{"k":14385,"v":[[0,2,["H5337"]],[2,4,["H5315"]],[4,6,["H4480","H4194"]],[6,11,["H2421"]],[11,13,["H7458"]]]},{"k":14386,"v":[[0,2,["H5315"]],[2,3,["H2442"]],[3,6,["H3068"]],[6,7,["H1931"]],[7,10,["H5828"]],[10,13,["H4043"]]]},{"k":14387,"v":[[0,1,["H3588"]],[1,3,["H3820"]],[3,5,["H8055"]],[5,8,["H3588"]],[8,11,["H982"]],[11,14,["H6944"]],[14,15,["H8034"]]]},{"k":14388,"v":[[0,3,["H2617"]],[3,5,["H3068"]],[5,6,["H1961"]],[6,7,["H5921"]],[7,10,["H834"]],[10,12,["H3176"]],[12,14,[]]]},{"k":14389,"v":[[0,3,["H1288"]],[3,4,["(H853)"]],[4,5,["H3068"]],[5,7,["H3605"]],[7,8,["H6256"]],[8,10,["H8416"]],[10,12,["H8548"]],[12,16,["H6310"]]]},{"k":14390,"v":[[0,2,["H5315"]],[2,6,["H1984"]],[6,9,["H3068"]],[9,11,["H6035"]],[11,13,["H8085"]],[13,17,["H8055"]]]},{"k":14391,"v":[[0,2,["H1431"]],[2,4,["H3068"]],[4,5,["H854"]],[5,10,["H7311"]],[10,12,["H8034"]],[12,13,["H3162"]]]},{"k":14392,"v":[[0,2,["H1875","(H853)"]],[2,4,["H3068"]],[4,7,["H6030"]],[7,10,["H5337"]],[10,13,["H4480","H3605"]],[13,15,["H4035"]]]},{"k":14393,"v":[[0,2,["H5027"]],[2,3,["H413"]],[3,7,["H5102"]],[7,10,["H6440"]],[10,12,["H408"]],[12,13,["H2659"]]]},{"k":14394,"v":[[0,1,["H2088"]],[1,2,["H6041"]],[2,4,["H7121"]],[4,7,["H3068"]],[7,8,["H8085"]],[8,11,["H3467"]],[11,15,["H4480","H3605"]],[15,17,["H6869"]]]},{"k":14395,"v":[[0,2,["H4397"]],[2,5,["H3068"]],[5,6,["H2583"]],[6,8,["H5439"]],[8,11,["H3373"]],[11,14,["H2502"]],[14,15,[]]]},{"k":14396,"v":[[0,2,["H2938"]],[2,4,["H7200"]],[4,5,["H3588"]],[5,7,["H3068"]],[7,9,["H2896"]],[9,10,["H835"]],[10,13,["H1397"]],[13,15,["H2620"]],[15,17,[]]]},{"k":14397,"v":[[0,2,["H3372","(H853)"]],[2,4,["H3068"]],[4,7,["H6918"]],[7,8,["H3588"]],[8,11,["H369"]],[11,12,["H4270"]],[12,16,["H3373"]],[16,17,[]]]},{"k":14398,"v":[[0,3,["H3715"]],[3,5,["H7326"]],[5,8,["H7456"]],[8,12,["H1875"]],[12,14,["H3068"]],[14,16,["H3808"]],[16,17,["H2637"]],[17,18,["H3605"]],[18,19,["H2896"]],[19,20,[]]]},{"k":14399,"v":[[0,1,["H1980"]],[1,3,["H1121"]],[3,4,["H8085"]],[4,9,["H3925"]],[9,12,["H3374"]],[12,15,["H3068"]]]},{"k":14400,"v":[[0,1,["H4310"]],[1,2,["H376"]],[2,6,["H2655"]],[6,7,["H2416"]],[7,9,["H157"]],[9,11,["H3117"]],[11,15,["H7200"]],[15,16,["H2896"]]]},{"k":14401,"v":[[0,1,["H5341"]],[1,3,["H3956"]],[3,5,["H4480","H7451"]],[5,8,["H8193"]],[8,10,["H4480","H1696"]],[10,11,["H4820"]]]},{"k":14402,"v":[[0,1,["H5493"]],[1,3,["H4480","H7451"]],[3,5,["H6213"]],[5,6,["H2896"]],[6,7,["H1245"]],[7,8,["H7965"]],[8,10,["H7291"]],[10,11,[]]]},{"k":14403,"v":[[0,2,["H5869"]],[2,5,["H3068"]],[5,7,["H413"]],[7,9,["H6662"]],[9,12,["H241"]],[12,15,["H413"]],[15,17,["H7775"]]]},{"k":14404,"v":[[0,2,["H6440"]],[2,5,["H3068"]],[5,10,["H6213"]],[10,11,["H7451"]],[11,14,["H3772"]],[14,16,["H2143"]],[16,21,["H4480","H776"]]]},{"k":14405,"v":[[0,3,["H6817"]],[3,6,["H3068"]],[6,7,["H8085"]],[7,9,["H5337"]],[9,13,["H4480","H3605"]],[13,15,["H6869"]]]},{"k":14406,"v":[[0,2,["H3068"]],[2,4,["H7138"]],[4,11,["H7665"]],[11,12,["H3820"]],[12,14,["H3467"]],[14,20,["H1793"]],[20,21,["H7307"]]]},{"k":14407,"v":[[0,1,["H7227"]],[1,4,["H7451"]],[4,7,["H6662"]],[7,10,["H3068"]],[10,11,["H5337"]],[11,16,["H4480","H3605"]]]},{"k":14408,"v":[[0,2,["H8104"]],[2,3,["H3605"]],[3,5,["H6106"]],[5,6,["H3808"]],[6,7,["H259"]],[7,9,["H4480","H2007"]],[9,11,["H7665"]]]},{"k":14409,"v":[[0,1,["H7451"]],[1,3,["H4191"]],[3,5,["H7563"]],[5,9,["H8130"]],[9,11,["H6662"]],[11,14,["H816"]]]},{"k":14410,"v":[[0,2,["H3068"]],[2,3,["H6299"]],[3,5,["H5315"]],[5,8,["H5650"]],[8,10,["H3808","H3605"]],[10,14,["H2620"]],[14,19,["H816"]]]},{"k":14411,"v":[[0,1,["H7378"]],[1,5,["H3068"]],[5,6,["H854"]],[6,9,["H3401"]],[9,13,["H3898","(H853)"]],[13,17,["H3898"]],[17,18,[]]]},{"k":14412,"v":[[0,2,["H2388"]],[2,4,["H4043"]],[4,6,["H6793"]],[6,9,["H6965"]],[9,12,["H5833"]]]},{"k":14413,"v":[[0,2,["H7324"]],[2,5,["H2595"]],[5,7,["H5462"]],[7,10,["H7125"]],[10,13,["H7291"]],[13,15,["H559"]],[15,18,["H5315"]],[18,19,["H589"]],[19,22,["H3444"]]]},{"k":14414,"v":[[0,4,["H954"]],[4,8,["H3637"]],[8,11,["H1245"]],[11,13,["H5315"]],[13,17,["H5472"]],[17,18,["H268"]],[18,22,["H2659"]],[22,24,["H2803"]],[24,26,["H7451"]]]},{"k":14415,"v":[[0,3,["H1961"]],[3,5,["H4671"]],[5,6,["H6440"]],[6,8,["H7307"]],[8,12,["H4397"]],[12,15,["H3068"]],[15,16,["H1760"]],[16,17,[]]]},{"k":14416,"v":[[0,3,["H1870"]],[3,4,["H1961"]],[4,5,["H2822"]],[5,7,["H2519"]],[7,11,["H4397"]],[11,14,["H3068"]],[14,15,["H7291"]],[15,16,[]]]},{"k":14417,"v":[[0,1,["H3588"]],[1,3,["H2600"]],[3,6,["H2934"]],[6,10,["H7568"]],[10,13,["H7845"]],[13,16,["H2600"]],[16,19,["H2658"]],[19,22,["H5315"]]]},{"k":14418,"v":[[0,2,["H7722"]],[2,4,["H935"]],[4,7,["H3808","H3045"]],[7,11,["H7568"]],[11,12,["H834"]],[12,15,["H2934"]],[15,16,["H3920"]],[16,21,["H7722"]],[21,24,["H5307"]]]},{"k":14419,"v":[[0,3,["H5315"]],[3,6,["H1523"]],[6,9,["H3068"]],[9,12,["H7797"]],[12,15,["H3444"]]]},{"k":14420,"v":[[0,1,["H3605"]],[1,3,["H6106"]],[3,5,["H559"]],[5,6,["H3068"]],[6,7,["H4310"]],[7,11,["H3644"]],[11,13,["H5337"]],[13,15,["H6041"]],[15,21,["H4480","H2389"]],[21,22,["H4480"]],[22,26,["H6041"]],[26,29,["H34"]],[29,33,["H4480","H1497"]],[33,34,[]]]},{"k":14421,"v":[[0,1,["H2555"]],[1,2,["H5707"]],[2,5,["H6965"]],[5,10,["H7592"]],[10,12,["H834"]],[12,14,["H3045"]],[14,15,["H3808"]]]},{"k":14422,"v":[[0,2,["H7999"]],[2,4,["H7451"]],[4,5,["H8478"]],[5,6,["H2896"]],[6,9,["H7908"]],[9,12,["H5315"]]]},{"k":14423,"v":[[0,4,["H589"]],[4,8,["H2470"]],[8,10,["H3830"]],[10,12,["H8242"]],[12,14,["H6031"]],[14,16,["H5315"]],[16,18,["H6685"]],[18,21,["H8605"]],[21,22,["H7725"]],[22,23,["H5921"]],[23,26,["H2436"]]]},{"k":14424,"v":[[0,3,["H1980"]],[3,10,["H7453"]],[10,12,["H251"]],[12,15,["H7817"]],[15,16,["H6937"]],[16,20,["H57"]],[20,23,["H517"]]]},{"k":14425,"v":[[0,4,["H6761"]],[4,6,["H8055"]],[6,10,["H622"]],[10,13,["H5222"]],[13,16,["H622"]],[16,17,["H5921"]],[17,21,["H3045"]],[21,23,["H3808"]],[23,26,["H7167"]],[26,29,["H1826"]],[29,30,["H3808"]]]},{"k":14426,"v":[[0,2,["H2611"]],[2,3,["H3934"]],[3,5,["H4580"]],[5,7,["H2786"]],[7,8,["H5921"]],[8,12,["H8127"]]]},{"k":14427,"v":[[0,1,["H136"]],[1,3,["H4100"]],[3,7,["H7200"]],[7,8,["H7725"]],[8,10,["H5315"]],[10,13,["H4480","H7722"]],[13,15,["H3173"]],[15,18,["H4480","H3715"]]]},{"k":14428,"v":[[0,5,["H3034"]],[5,8,["H7227"]],[8,9,["H6951"]],[9,12,["H1984"]],[12,15,["H6099"]],[15,16,["H5971"]]]},{"k":14429,"v":[[0,2,["H408"]],[2,7,["H341"]],[7,8,["H8267"]],[8,9,["H8055"]],[9,15,["H7169"]],[15,18,["H5869"]],[18,20,["H8130"]],[20,24,["H2600"]]]},{"k":14430,"v":[[0,1,["H3588"]],[1,3,["H1696"]],[3,4,["H3808"]],[4,5,["H7965"]],[5,8,["H2803"]],[8,9,["H4820"]],[9,10,["H1697"]],[10,11,["H5921"]],[11,15,["H7282"]],[15,18,["H776"]]]},{"k":14431,"v":[[0,3,["H7337"]],[3,5,["H6310"]],[5,7,["H5921"]],[7,10,["H559"]],[10,11,["H1889"]],[11,12,["H1889"]],[12,14,["H5869"]],[14,16,["H7200"]],[16,17,[]]]},{"k":14432,"v":[[0,4,["H7200"]],[4,6,["H3068"]],[6,8,["H408"]],[8,9,["H2790"]],[9,11,["H136"]],[11,13,["H408"]],[13,14,["H7368"]],[14,15,["H4480"]],[15,16,[]]]},{"k":14433,"v":[[0,3,["H5782"]],[3,5,["H6974"]],[5,8,["H4941"]],[8,12,["H7379"]],[12,14,["H430"]],[14,17,["H136"]]]},{"k":14434,"v":[[0,1,["H8199"]],[1,4,["H3068"]],[4,6,["H430"]],[6,10,["H6664"]],[10,14,["H408"]],[14,15,["H8055"]],[15,17,[]]]},{"k":14435,"v":[[0,3,["H408"]],[3,4,["H559"]],[4,7,["H3820"]],[7,8,["H1889"]],[8,13,["H5315"]],[13,16,["H408"]],[16,17,["H559"]],[17,22,["H1104"]]]},{"k":14436,"v":[[0,4,["H954"]],[4,8,["H2659"]],[8,9,["H3162"]],[9,11,["H8056"]],[11,14,["H7451"]],[14,18,["H3847"]],[18,20,["H1322"]],[20,22,["H3639"]],[22,24,["H1431"]],[24,26,["H5921"]],[26,27,[]]]},{"k":14437,"v":[[0,5,["H7442"]],[5,8,["H8055"]],[8,10,["H2655"]],[10,13,["H6664"]],[13,17,["H559"]],[17,18,["H8548"]],[18,21,["H3068"]],[21,23,["H1431"]],[23,26,["H2655"]],[26,29,["H7965"]],[29,32,["H5650"]]]},{"k":14438,"v":[[0,3,["H3956"]],[3,5,["H1897"]],[5,8,["H6664"]],[8,12,["H8416"]],[12,13,["H3605"]],[13,15,["H3117"]],[15,16,[]]]},{"k":14439,"v":[[0,2,["H6588"]],[2,5,["H7563"]],[5,6,["H5002"]],[6,7,["H7130"]],[7,9,["H3820"]],[9,13,["H369"]],[13,14,["H6343"]],[14,16,["H430"]],[16,17,["H5048"]],[17,19,["H5869"]]]},{"k":14440,"v":[[0,1,["H3588"]],[1,3,["H2505","H413"]],[3,8,["H5869"]],[8,11,["H5771"]],[11,13,["H4672"]],[13,16,["H8130"]]]},{"k":14441,"v":[[0,2,["H1697"]],[2,5,["H6310"]],[5,7,["H205"]],[7,9,["H4820"]],[9,13,["H2308"]],[13,16,["H7919"]],[16,20,["H3190"]]]},{"k":14442,"v":[[0,2,["H2803"]],[2,3,["H205"]],[3,4,["H5921"]],[4,6,["H4904"]],[6,9,["H3320"]],[9,10,["H5921"]],[10,12,["H1870"]],[12,15,["H3808"]],[15,16,["H2896"]],[16,18,["H3988"]],[18,19,["H3808"]],[19,20,["H7451"]]]},{"k":14443,"v":[[0,2,["H2617"]],[2,4,["H3068"]],[4,8,["H8064"]],[8,11,["H530"]],[11,13,["H5704"]],[13,15,["H7834"]]]},{"k":14444,"v":[[0,2,["H6666"]],[2,6,["H410"]],[6,7,["H2042"]],[7,9,["H4941"]],[9,12,["H7227"]],[12,13,["H8415"]],[13,15,["H3068"]],[15,17,["H3467"]],[17,18,["H120"]],[18,20,["H929"]]]},{"k":14445,"v":[[0,1,["H4100"]],[1,2,["H3368"]],[2,5,["H2617"]],[5,7,["H430"]],[7,10,["H1121"]],[10,12,["H120"]],[12,15,["H2620"]],[15,18,["H6738"]],[18,21,["H3671"]]]},{"k":14446,"v":[[0,5,["H7301"]],[5,8,["H4480","H1880"]],[8,11,["H1004"]],[11,17,["H8248"]],[17,20,["H5158"]],[20,23,["H5730"]]]},{"k":14447,"v":[[0,1,["H3588"]],[1,2,["H5973"]],[2,6,["H4726"]],[6,8,["H2416"]],[8,11,["H216"]],[11,14,["H7200"]],[14,15,["H216"]]]},{"k":14448,"v":[[0,2,["H4900"]],[2,4,["H2617"]],[4,8,["H3045"]],[8,12,["H6666"]],[12,15,["H3477"]],[15,17,["H3820"]]]},{"k":14449,"v":[[0,2,["H408"]],[2,4,["H7272"]],[4,6,["H1346"]],[6,8,["H935"]],[8,12,["H408"]],[12,14,["H3027"]],[14,17,["H7563"]],[17,18,["H5110"]],[18,19,[]]]},{"k":14450,"v":[[0,1,["H8033"]],[1,4,["H6466"]],[4,6,["H205"]],[6,7,["H5307"]],[7,11,["H1760"]],[11,14,["H3808"]],[14,16,["H3201"]],[16,18,["H6965"]]]},{"k":14451,"v":[[0,3,["H408","H2734"]],[3,6,["H7489"]],[6,7,["H408"]],[7,10,["H7065"]],[10,13,["H6213"]],[13,15,["H5766"]]]},{"k":14452,"v":[[0,1,["H3588"]],[1,4,["H4120"]],[4,7,["H5243"]],[7,10,["H2682"]],[10,12,["H5034"]],[12,15,["H3418"]],[15,16,["H1877"]]]},{"k":14453,"v":[[0,1,["H982"]],[1,4,["H3068"]],[4,6,["H6213"]],[6,7,["H2896"]],[7,11,["H7931"]],[11,14,["H776"]],[14,16,["H530"]],[16,20,["H7462"]]]},{"k":14454,"v":[[0,2,["H6026"]],[2,4,["H5921"]],[4,6,["H3068"]],[6,10,["H5414"]],[10,13,["H4862"]],[13,16,["H3820"]]]},{"k":14455,"v":[[0,1,["H1556"]],[1,3,["H1870"]],[3,4,["H5921"]],[4,6,["H3068"]],[6,7,["H982"]],[7,9,["H5921"]],[9,12,["H1931"]],[12,17,["H6213"]]]},{"k":14456,"v":[[0,5,["H3318"]],[5,7,["H6664"]],[7,10,["H216"]],[10,13,["H4941"]],[13,16,["H6672"]]]},{"k":14457,"v":[[0,1,["H1826"]],[1,4,["H3068"]],[4,7,["H2342"]],[7,12,["H408","H2734"]],[12,17,["H6743"]],[17,20,["H1870"]],[20,24,["H376"]],[24,30,["H6213","H4209"]]]},{"k":14458,"v":[[0,1,["H7503"]],[1,3,["H4480","H639"]],[3,5,["H5800"]],[5,6,["H2534"]],[6,9,["H408","H2734"]],[9,12,["H389"]],[12,15,["H7489"]]]},{"k":14459,"v":[[0,1,["H3588"]],[1,2,["H7489"]],[2,6,["H3772"]],[6,11,["H6960"]],[11,13,["H3068"]],[13,14,["H1992"]],[14,16,["H3423"]],[16,18,["H776"]]]},{"k":14460,"v":[[0,2,["H5750"]],[2,4,["H4592"]],[4,8,["H7563"]],[8,10,["H369"]],[10,16,["H995","H5921"]],[16,18,["H4725"]],[18,22,["H369"]],[22,23,[]]]},{"k":14461,"v":[[0,3,["H6035"]],[3,5,["H3423"]],[5,7,["H776"]],[7,11,["H6026"]],[11,12,["H5921"]],[12,14,["H7230"]],[14,16,["H7965"]]]},{"k":14462,"v":[[0,2,["H7563"]],[2,3,["H2161"]],[3,6,["H6662"]],[6,8,["H2786"]],[8,9,["H5921"]],[9,13,["H8127"]]]},{"k":14463,"v":[[0,2,["H136"]],[2,4,["H7832"]],[4,7,["H3588"]],[7,9,["H7200"]],[9,10,["H3588"]],[10,12,["H3117"]],[12,14,["H935"]]]},{"k":14464,"v":[[0,2,["H7563"]],[2,5,["H6605"]],[5,7,["H2719"]],[7,10,["H1869"]],[10,12,["H7198"]],[12,15,["H5307"]],[15,17,["H6041"]],[17,19,["H34"]],[19,22,["H2873"]],[22,27,["H3477"]],[27,28,["H1870"]]]},{"k":14465,"v":[[0,2,["H2719"]],[2,4,["H935"]],[4,8,["H3820"]],[8,11,["H7198"]],[11,14,["H7665"]]]},{"k":14466,"v":[[0,2,["H4592"]],[2,5,["H6662"]],[5,9,["H2896"]],[9,12,["H4480","H1995"]],[12,14,["H7227"]],[14,15,["H7563"]]]},{"k":14467,"v":[[0,1,["H3588"]],[1,3,["H2220"]],[3,6,["H7563"]],[6,9,["H7665"]],[9,12,["H3068"]],[12,13,["H5564"]],[13,15,["H6662"]]]},{"k":14468,"v":[[0,2,["H3068"]],[2,3,["H3045"]],[3,5,["H3117"]],[5,8,["H8549"]],[8,11,["H5159"]],[11,13,["H1961"]],[13,15,["H5769"]]]},{"k":14469,"v":[[0,3,["H3808"]],[3,5,["H954"]],[5,8,["H7451"]],[8,9,["H6256"]],[9,13,["H3117"]],[13,15,["H7459"]],[15,19,["H7646"]]]},{"k":14470,"v":[[0,1,["H3588"]],[1,3,["H7563"]],[3,5,["H6"]],[5,8,["H341"]],[8,11,["H3068"]],[11,16,["H3368"]],[16,18,["H3733"]],[18,21,["H3615"]],[21,23,["H6227"]],[23,27,["H3615"]]]},{"k":14471,"v":[[0,2,["H7563"]],[2,3,["H3867"]],[3,5,["H7999"]],[5,6,["H3808"]],[6,10,["H6662"]],[10,12,["H2603"]],[12,14,["H5414"]]]},{"k":14472,"v":[[0,1,["H3588"]],[1,5,["H1288"]],[5,9,["H3423"]],[9,11,["H776"]],[11,16,["H7043"]],[16,22,["H3772"]]]},{"k":14473,"v":[[0,2,["H4703"]],[2,6,["H1397"]],[6,8,["H3559"]],[8,11,["H4480","H3068"]],[11,14,["H2654"]],[14,17,["H1870"]]]},{"k":14474,"v":[[0,1,["H3588"]],[1,3,["H5307"]],[3,6,["H3808"]],[6,10,["H2904"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,14,["H5564"]],[14,18,["H3027"]]]},{"k":14475,"v":[[0,3,["H1961"]],[3,4,["H5288"]],[4,5,["H1571"]],[5,8,["H2204"]],[8,12,["H3808"]],[12,13,["H7200"]],[13,15,["H6662"]],[15,16,["H5800"]],[16,19,["H2233"]],[19,20,["H1245"]],[20,21,["H3899"]]]},{"k":14476,"v":[[0,3,["H3605","H3117"]],[3,4,["H2603"]],[4,6,["H3867"]],[6,9,["H2233"]],[9,11,["H1293"]]]},{"k":14477,"v":[[0,1,["H5493"]],[1,2,["H4480"]],[2,3,["H7451"]],[3,5,["H6213"]],[5,6,["H2896"]],[6,8,["H7931"]],[8,10,["H5769"]]]},{"k":14478,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,4,["H157"]],[4,5,["H4941"]],[5,7,["H5800"]],[7,8,["H3808","(H853)"]],[8,10,["H2623"]],[10,13,["H8104"]],[13,15,["H5769"]],[15,18,["H2233"]],[18,21,["H7563"]],[21,25,["H3772"]]]},{"k":14479,"v":[[0,2,["H6662"]],[2,4,["H3423"]],[4,6,["H776"]],[6,8,["H7931"]],[8,9,["H5921"]],[9,11,["H5703"]]]},{"k":14480,"v":[[0,2,["H6310"]],[2,5,["H6662"]],[5,6,["H1897"]],[6,7,["H2451"]],[7,10,["H3956"]],[10,11,["H1696"]],[11,13,["H4941"]]]},{"k":14481,"v":[[0,2,["H8451"]],[2,5,["H430"]],[5,9,["H3820"]],[9,10,["H3808"]],[10,13,["H838"]],[13,15,["H4571"]]]},{"k":14482,"v":[[0,2,["H7563"]],[2,3,["H6822"]],[3,5,["H6662"]],[5,7,["H1245"]],[7,9,["H4191"]],[9,10,[]]]},{"k":14483,"v":[[0,2,["H3068"]],[2,4,["H3808"]],[4,5,["H5800"]],[5,9,["H3027"]],[9,10,["H3808"]],[10,11,["H7561"]],[11,16,["H8199"]]]},{"k":14484,"v":[[0,1,["H6960"]],[1,2,["H413"]],[2,4,["H3068"]],[4,6,["H8104"]],[6,8,["H1870"]],[8,12,["H7311"]],[12,15,["H3423"]],[15,17,["H776"]],[17,20,["H7563"]],[20,23,["H3772"]],[23,26,["H7200"]],[26,27,[]]]},{"k":14485,"v":[[0,3,["H7200"]],[3,5,["H7563"]],[5,8,["H6184"]],[8,11,["H6168"]],[11,14,["H7488"]],[14,16,["H249"]]]},{"k":14486,"v":[[0,4,["H5674"]],[4,6,["H2009"]],[6,9,["H369"]],[9,12,["H1245"]],[12,17,["H3808"]],[17,19,["H4672"]]]},{"k":14487,"v":[[0,1,["H8104"]],[1,3,["H8535"]],[3,6,["H7200"]],[6,8,["H3477"]],[8,9,["H3588"]],[9,11,["H319"]],[11,14,["H376"]],[14,16,["H7965"]]]},{"k":14488,"v":[[0,3,["H6586"]],[3,6,["H8045"]],[6,7,["H3162"]],[7,9,["H319"]],[9,12,["H7563"]],[12,16,["H3772"]]]},{"k":14489,"v":[[0,3,["H8668"]],[3,6,["H6662"]],[6,10,["H4480","H3068"]],[10,14,["H4581"]],[14,17,["H6256"]],[17,19,["H6869"]]]},{"k":14490,"v":[[0,3,["H3068"]],[3,5,["H5826"]],[5,8,["H6403"]],[8,12,["H6403"]],[12,16,["H4480","H7563"]],[16,18,["H3467"]],[18,20,["H3588"]],[20,22,["H2620"]],[22,24,[]]]},{"k":14491,"v":[[0,2,["H3068"]],[2,3,["H3198"]],[3,5,["H408"]],[5,8,["H7110"]],[8,10,["H3256"]],[10,15,["H2534"]]]},{"k":14492,"v":[[0,1,["H3588"]],[1,3,["H2671"]],[3,5,["H5181"]],[5,10,["H3027"]],[10,13,["H5181","H5921"]]]},{"k":14493,"v":[[0,3,["H369"]],[3,4,["H4974"]],[4,7,["H1320"]],[7,8,["H4480","H6440"]],[8,11,["H2195"]],[11,12,["H369"]],[12,16,["H7965"]],[16,19,["H6106"]],[19,20,["H4480","H6440"]],[20,23,["H2403"]]]},{"k":14494,"v":[[0,1,["H3588"]],[1,3,["H5771"]],[3,6,["H5674"]],[6,8,["H7218"]],[8,11,["H3515"]],[11,12,["H4853"]],[12,16,["H3513"]],[16,17,["H4480"]],[17,18,[]]]},{"k":14495,"v":[[0,2,["H2250"]],[2,3,["H887"]],[3,6,["H4743"]],[6,7,["H4480","H6440"]],[7,10,["H200"]]]},{"k":14496,"v":[[0,3,["H5753"]],[3,7,["H7817"]],[7,8,["H5704","H3966"]],[8,10,["H1980"]],[10,11,["H6937"]],[11,12,["H3605"]],[12,14,["H3117"]],[14,15,[]]]},{"k":14497,"v":[[0,1,["H3588"]],[1,3,["H3689"]],[3,5,["H4390"]],[5,8,["H7033"]],[8,13,["H369"]],[13,14,["H4974"]],[14,17,["H1320"]]]},{"k":14498,"v":[[0,3,["H6313"]],[3,5,["H5704","H3966"]],[5,6,["H1794"]],[6,9,["H7580"]],[9,14,["H4480","H5100"]],[14,17,["H3820"]]]},{"k":14499,"v":[[0,1,["H136"]],[1,2,["H3605"]],[2,4,["H8378"]],[4,6,["H5048"]],[6,10,["H585"]],[10,12,["H3808"]],[12,13,["H5641"]],[13,14,["H4480"]],[14,15,[]]]},{"k":14500,"v":[[0,2,["H3820"]],[2,3,["H5503"]],[3,5,["H3581"]],[5,6,["H5800"]],[6,11,["H216"]],[11,14,["H5869"]],[14,15,["H1992"]],[15,16,["H1571"]],[16,18,["H369"]],[18,19,["H854"]],[19,20,[]]]},{"k":14501,"v":[[0,2,["H157"]],[2,5,["H7453"]],[5,7,["H5975"]],[7,10,["H4480","H5048","H5061"]],[10,13,["H7138"]],[13,14,["H5975"]],[14,16,["H4480","H7350"]]]},{"k":14502,"v":[[0,5,["H1245"]],[5,7,["H5315"]],[7,9,["H5367"]],[9,15,["H1875"]],[15,17,["H7451"]],[17,18,["H1696"]],[18,20,["H1942"]],[20,22,["H1897"]],[22,23,["H4820"]],[23,24,["H3605"]],[24,26,["H3117"]],[26,27,[]]]},{"k":14503,"v":[[0,2,["H589"]],[2,5,["H2795"]],[5,7,["H8085"]],[7,8,["H3808"]],[8,15,["H483"]],[15,17,["H6605"]],[17,18,["H3808"]],[18,20,["H6310"]]]},{"k":14504,"v":[[0,3,["H1961"]],[3,6,["H376"]],[6,7,["H834"]],[7,8,["H8085"]],[8,9,["H3808"]],[9,13,["H6310"]],[13,15,["H369"]],[15,16,["H8433"]]]},{"k":14505,"v":[[0,1,["H3588"]],[1,5,["H3068"]],[5,8,["H3176"]],[8,9,["H859"]],[9,11,["H6030"]],[11,13,["H136"]],[13,15,["H430"]]]},{"k":14506,"v":[[0,1,["H3588"]],[1,3,["H559"]],[3,6,["H6435"]],[6,10,["H8055"]],[10,15,["H7272"]],[15,16,["H4131"]],[16,18,["H1431"]],[18,20,["H5921"]],[20,21,[]]]},{"k":14507,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,4,["H3559"]],[4,6,["H6761"]],[6,9,["H4341"]],[9,11,["H8548"]],[11,12,["H5048"]],[12,13,[]]]},{"k":14508,"v":[[0,1,["H3588"]],[1,4,["H5046"]],[4,6,["H5771"]],[6,10,["H1672"]],[10,13,["H4480","H2403"]]]},{"k":14509,"v":[[0,3,["H341"]],[3,5,["H2416"]],[5,9,["H6105"]],[9,13,["H8130"]],[13,15,["H8267"]],[15,17,["H7231"]]]},{"k":14510,"v":[[0,4,["H7999"]],[4,5,["H7451"]],[5,6,["H8478"]],[6,7,["H2896"]],[7,10,["H7853"]],[10,11,["H8478"]],[11,13,["H7291"]],[13,17,["H2896"]],[17,18,[]]]},{"k":14511,"v":[[0,1,["H5800"]],[1,3,["H408"]],[3,5,["H3068"]],[5,8,["H430"]],[8,10,["H408"]],[10,11,["H7368"]],[11,12,["H4480"]],[12,13,[]]]},{"k":14512,"v":[[0,2,["H2363"]],[2,4,["H5833"]],[4,7,["H136"]],[7,9,["H8668"]]]},{"k":14513,"v":[[0,2,["H559"]],[2,6,["H8104"]],[6,9,["H1870"]],[9,13,["H4480","H2398"]],[13,16,["H3956"]],[16,19,["H8104"]],[19,21,["H6310"]],[21,24,["H4269"]],[24,25,["H5750"]],[25,27,["H7563"]],[27,29,["H5048"]],[29,30,[]]]},{"k":14514,"v":[[0,3,["H481"]],[3,5,["H1747"]],[5,9,["H2814"]],[9,12,["H4480","H2896"]],[12,15,["H3511"]],[15,17,["H5916"]]]},{"k":14515,"v":[[0,2,["H3820"]],[2,4,["H2552"]],[4,5,["H7130"]],[5,10,["H1901"]],[10,12,["H784"]],[12,13,["H1197"]],[13,15,["H1696"]],[15,19,["H3956"]]]},{"k":14516,"v":[[0,1,["H3068"]],[1,5,["H3045"]],[5,7,["H7093"]],[7,10,["H4060"]],[10,13,["H3117"]],[13,14,["H4100"]],[14,15,["H1931"]],[15,20,["H3045"]],[20,21,["H4100"]],[21,22,["H2310"]],[22,23,["H589"]],[23,24,[]]]},{"k":14517,"v":[[0,1,["H2009"]],[1,4,["H5414"]],[4,6,["H3117"]],[6,9,["H2947"]],[9,12,["H2465"]],[12,15,["H369"]],[15,16,["H5048"]],[16,18,["H389"]],[18,19,["H3605"]],[19,20,["H120"]],[20,24,["H5324"]],[24,26,["H3605"]],[26,27,["H1892"]],[27,28,["H5542"]]]},{"k":14518,"v":[[0,1,["H389"]],[1,3,["H376"]],[3,4,["H1980"]],[4,8,["H6754"]],[8,9,["H389"]],[9,12,["H1993"]],[12,14,["H1892"]],[14,17,["H6651"]],[17,20,["H3045"]],[20,21,["H3808"]],[21,22,["H4310"]],[22,24,["H622"]],[24,25,[]]]},{"k":14519,"v":[[0,2,["H6258"]],[2,3,["H136"]],[3,4,["H4100"]],[4,5,["H6960"]],[5,9,["H8431"]],[9,12,[]]]},{"k":14520,"v":[[0,1,["H5337"]],[1,4,["H4480","H3605"]],[4,6,["H6588"]],[6,7,["H7760"]],[7,9,["H408"]],[9,11,["H2781"]],[11,14,["H5036"]]]},{"k":14521,"v":[[0,3,["H481"]],[3,5,["H6605"]],[5,6,["H3808"]],[6,8,["H6310"]],[8,9,["H3588"]],[9,10,["H859"]],[10,11,["H6213"]],[11,12,[]]]},{"k":14522,"v":[[0,1,["H5493"]],[1,3,["H5061"]],[3,5,["H4480","H5921"]],[5,7,["H589"]],[7,9,["H3615"]],[9,12,["H4480","H8409"]],[12,15,["H3027"]]]},{"k":14523,"v":[[0,4,["H8433"]],[4,6,["H3256"]],[6,7,["H376"]],[7,8,["H5921"]],[8,9,["H5771"]],[9,13,["H2530"]],[13,16,["H4529"]],[16,19,["H6211"]],[19,20,["H389"]],[20,21,["H3605"]],[21,22,["H120"]],[22,24,["H1892"]],[24,25,["H5542"]]]},{"k":14524,"v":[[0,1,["H8085"]],[1,3,["H8605"]],[3,5,["H3068"]],[5,8,["H238"]],[8,11,["H7775"]],[11,15,["H2790","H408"]],[15,16,["H413"]],[16,18,["H1832"]],[18,19,["H3588"]],[19,20,["H595"]],[20,23,["H1616"]],[23,24,["H5973"]],[24,28,["H8453"]],[28,30,["H3605"]],[30,32,["H1"]],[32,33,[]]]},{"k":14525,"v":[[0,2,["H8159","H4480"]],[2,8,["H1082"]],[8,9,["H2962"]],[9,11,["H1980"]],[11,15,["H369"]],[15,16,[]]]},{"k":14526,"v":[[0,2,["H6960"]],[2,3,["H6960"]],[3,6,["H3068"]],[6,9,["H5186"]],[9,10,["H413"]],[10,13,["H8085"]],[13,15,["H7775"]]]},{"k":14527,"v":[[0,4,["H5927"]],[4,9,["H7588"]],[9,10,["H4480","H953"]],[10,14,["H3121"]],[14,15,["H4480","H2916"]],[15,17,["H6965"]],[17,19,["H7272"]],[19,20,["H5921"]],[20,22,["H5553"]],[22,24,["H3559"]],[24,26,["H838"]]]},{"k":14528,"v":[[0,4,["H5414"]],[4,6,["H2319"]],[6,7,["H7892"]],[7,10,["H6310"]],[10,12,["H8416"]],[12,15,["H430"]],[15,16,["H7227"]],[16,18,["H7200"]],[18,21,["H3372"]],[21,24,["H982"]],[24,27,["H3068"]]]},{"k":14529,"v":[[0,1,["H835"]],[1,4,["H1397"]],[4,5,["H834"]],[5,6,["H7760"]],[6,8,["H3068"]],[8,10,["H4009"]],[10,12,["H6437","H413"]],[12,13,["H3808"]],[13,15,["H7295"]],[15,20,["H7750"]],[20,22,["H3577"]]]},{"k":14530,"v":[[0,1,["H7227"]],[1,3,["H3068"]],[3,5,["H430"]],[5,9,["H6381"]],[9,11,["H859"]],[11,13,["H6213"]],[13,16,["H4284"]],[16,19,["H413"]],[19,22,["H369"]],[22,27,["H6186"]],[27,29,["H413"]],[29,33,["H5046"]],[33,35,["H1696"]],[35,40,["H6105"]],[40,44,["H4480","H5608"]]]},{"k":14531,"v":[[0,1,["H2077"]],[1,3,["H4503"]],[3,6,["H3808"]],[6,7,["H2654"]],[7,9,["H241"]],[9,12,["H3738"]],[12,14,["H5930"]],[14,17,["H2401"]],[17,20,["H3808"]],[20,21,["H7592"]]]},{"k":14532,"v":[[0,1,["H227"]],[1,2,["H559"]],[2,4,["H2009"]],[4,6,["H935"]],[6,9,["H4039"]],[9,12,["H5612"]],[12,15,["H3789"]],[15,16,["H5921"]],[16,17,[]]]},{"k":14533,"v":[[0,2,["H2654"]],[2,4,["H6213"]],[4,6,["H7522"]],[6,9,["H430"]],[9,12,["H8451"]],[12,14,["H8432"]],[14,16,["H4578"]]]},{"k":14534,"v":[[0,3,["H1319"]],[3,4,["H6664"]],[4,7,["H7227"]],[7,8,["H6951"]],[8,9,["H2009"]],[9,12,["H3808"]],[12,13,["H3607"]],[13,15,["H8193"]],[15,17,["H3068"]],[17,18,["H859"]],[18,19,["H3045"]]]},{"k":14535,"v":[[0,3,["H3808"]],[3,4,["H3680"]],[4,6,["H6666"]],[6,7,["H8432"]],[7,9,["H3820"]],[9,12,["H559"]],[12,14,["H530"]],[14,17,["H8668"]],[17,20,["H3808"]],[20,21,["H3582"]],[21,23,["H2617"]],[23,26,["H571"]],[26,29,["H7227"]],[29,30,["H6951"]]]},{"k":14536,"v":[[0,1,["H3607"]],[1,2,["H3808"]],[2,3,["H859"]],[3,6,["H7356"]],[6,7,["H4480"]],[7,10,["H3068"]],[10,13,["H2617"]],[13,16,["H571"]],[16,17,["H8548"]],[17,18,["H5341"]],[18,19,[]]]},{"k":14537,"v":[[0,1,["H3588"]],[1,2,["H5704","H369","H4557"]],[2,3,["H7451"]],[3,7,["H661","H5921"]],[7,9,["H5771"]],[9,12,["H5381"]],[12,19,["H3808"]],[19,20,["H3201"]],[20,23,["H7200"]],[23,26,["H6105"]],[26,29,["H4480","H8185"]],[29,32,["H7218"]],[32,35,["H3820"]],[35,36,["H5800"]],[36,37,[]]]},{"k":14538,"v":[[0,2,["H7521"]],[2,4,["H3068"]],[4,6,["H5337"]],[6,9,["H3068"]],[9,11,["H2363"]],[11,13,["H5833"]],[13,14,[]]]},{"k":14539,"v":[[0,4,["H954"]],[4,6,["H2659"]],[6,7,["H3162"]],[7,10,["H1245"]],[10,12,["H5315"]],[12,14,["H5595"]],[14,19,["H5472"]],[19,20,["H268"]],[20,24,["H3637"]],[24,26,["H2655"]],[26,28,["H7451"]]]},{"k":14540,"v":[[0,4,["H8074"]],[4,5,["H5921"]],[5,7,["H6118"]],[7,10,["H1322"]],[10,12,["H559"]],[12,15,["H1889"]],[15,16,["H1889"]]]},{"k":14541,"v":[[0,2,["H3605"]],[2,5,["H1245"]],[5,7,["H7797"]],[7,10,["H8055"]],[10,16,["H157"]],[16,18,["H8668"]],[18,19,["H559"]],[19,20,["H8548"]],[20,22,["H3068"]],[22,24,["H1431"]]]},{"k":14542,"v":[[0,2,["H589"]],[2,4,["H6041"]],[4,6,["H34"]],[6,9,["H136"]],[9,10,["H2803"]],[10,13,["H859"]],[13,16,["H5833"]],[16,19,["H6403"]],[19,21,["H408"]],[21,22,["H309"]],[22,25,["H430"]]]},{"k":14543,"v":[[0,1,["H835"]],[1,5,["H7919","H413"]],[5,7,["H1800"]],[7,9,["H3068"]],[9,11,["H4422"]],[11,14,["H3117"]],[14,16,["H7451"]]]},{"k":14544,"v":[[0,2,["H3068"]],[2,4,["H8104"]],[4,9,["H2421"]],[9,14,["H833"]],[14,17,["H776"]],[17,21,["H408"]],[21,22,["H5414"]],[22,26,["H5315"]],[26,29,["H341"]]]},{"k":14545,"v":[[0,2,["H3068"]],[2,4,["H5582"]],[4,6,["H5921"]],[6,8,["H6210"]],[8,10,["H1741"]],[10,13,["H2015"]],[13,14,["H3605"]],[14,16,["H4904"]],[16,19,["H2483"]]]},{"k":14546,"v":[[0,1,["H589"]],[1,2,["H559"]],[2,3,["H3068"]],[3,5,["H2603"]],[5,8,["H7495"]],[8,10,["H5315"]],[10,11,["H3588"]],[11,14,["H2398"]],[14,16,[]]]},{"k":14547,"v":[[0,2,["H341"]],[2,3,["H559"]],[3,4,["H7451"]],[4,7,["H4970"]],[7,10,["H4191"]],[10,13,["H8034"]],[13,14,["H6"]]]},{"k":14548,"v":[[0,2,["H518"]],[2,4,["H935"]],[4,6,["H7200"]],[6,9,["H1696"]],[9,10,["H7723"]],[10,12,["H3820"]],[12,13,["H6908"]],[13,14,["H205"]],[14,19,["H3318"]],[19,20,["H2351"]],[20,22,["H1696"]],[22,23,[]]]},{"k":14549,"v":[[0,1,["H3605"]],[1,3,["H8130"]],[3,5,["H3907"]],[5,6,["H3162"]],[6,7,["H5921"]],[7,9,["H5921"]],[9,13,["H2803"]],[13,15,["H7451"]]]},{"k":14550,"v":[[0,2,["H1100"]],[2,3,["H1697"]],[3,7,["H3332"]],[7,12,["H834"]],[12,14,["H7901"]],[14,18,["H6965"]],[18,19,["H3808"]],[19,20,["H3254"]]]},{"k":14551,"v":[[0,1,["H1571"]],[1,5,["H7965","H376"]],[5,7,["H834"]],[7,9,["H982"]],[9,12,["H398"]],[12,15,["H3899"]],[15,18,["H1431"]],[18,20,["H6119"]],[20,21,["H5921"]],[21,22,[]]]},{"k":14552,"v":[[0,2,["H859"]],[2,4,["H3068"]],[4,6,["H2603"]],[6,12,["H6965"]],[12,16,["H7999"]],[16,17,[]]]},{"k":14553,"v":[[0,2,["H2063"]],[2,4,["H3045"]],[4,5,["H3588"]],[5,7,["H2654"]],[7,9,["H3588"]],[9,11,["H341"]],[11,13,["H3808"]],[13,14,["H7321"]],[14,15,["H5921"]],[15,16,[]]]},{"k":14554,"v":[[0,4,["H589"]],[4,6,["H8551"]],[6,10,["H8537"]],[10,12,["H5324"]],[12,16,["H6440"]],[16,18,["H5769"]]]},{"k":14555,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,9,["H4480","H5769"]],[9,11,["H5704"]],[11,12,["H5769"]],[12,13,["H543"]],[13,15,["H543"]]]},{"k":14556,"v":[[0,3,["H354"]],[3,4,["H6165"]],[4,5,["H5921"]],[5,7,["H4325"]],[7,8,["H650"]],[8,9,["H3651"]],[9,10,["H6165"]],[10,12,["H5315"]],[12,13,["H413"]],[13,16,["H430"]]]},{"k":14557,"v":[[0,2,["H5315"]],[2,3,["H6770"]],[3,5,["H430"]],[5,8,["H2416"]],[8,9,["H410"]],[9,10,["H4970"]],[10,13,["H935"]],[13,15,["H7200"]],[15,16,["H6440"]],[16,17,["H430"]]]},{"k":14558,"v":[[0,2,["H1832"]],[2,4,["H1961"]],[4,6,["H3899"]],[6,7,["H3119"]],[7,9,["H3915"]],[9,12,["H3605","H3117"]],[12,13,["H559"]],[13,14,["H413"]],[14,16,["H346"]],[16,19,["H430"]]]},{"k":14559,"v":[[0,3,["H2142"]],[3,4,["H428"]],[4,8,["H8210"]],[8,10,["H5315"]],[10,11,["H5921"]],[11,13,["H3588"]],[13,16,["H5674"]],[16,19,["H5519"]],[19,21,["H1718"]],[21,24,["H5704"]],[24,26,["H1004"]],[26,28,["H430"]],[28,31,["H6963"]],[31,33,["H7440"]],[33,35,["H8426"]],[35,38,["H1995"]],[38,41,["H2287"]]]},{"k":14560,"v":[[0,1,["H4100"]],[1,5,["H7817"]],[5,8,["H5315"]],[8,13,["H1993"]],[13,14,["H5921"]],[14,16,["H3176"]],[16,19,["H430"]],[19,20,["H3588"]],[20,23,["H5750"]],[23,24,["H3034"]],[24,28,["H3444"]],[28,31,["H6440"]]]},{"k":14561,"v":[[0,3,["H430"]],[3,5,["H5315"]],[5,8,["H7817"]],[8,9,["H5921"]],[9,11,["H5921","H3651"]],[11,14,["H2142"]],[14,18,["H4480","H776"]],[18,20,["H3383"]],[20,24,["H2769"]],[24,27,["H4480","H2022"]],[27,28,["H4706"]]]},{"k":14562,"v":[[0,1,["H8415"]],[1,2,["H7121"]],[2,3,["H413"]],[3,4,["H8415"]],[4,7,["H6963"]],[7,10,["H6794"]],[10,11,["H3605"]],[11,13,["H4867"]],[13,16,["H1530"]],[16,18,["H5674"]],[18,19,["H5921"]],[19,20,[]]]},{"k":14563,"v":[[0,3,["H3068"]],[3,5,["H6680"]],[5,7,["H2617"]],[7,10,["H3119"]],[10,14,["H3915"]],[14,16,["H7892"]],[16,19,["H5973"]],[19,23,["H8605"]],[23,26,["H410"]],[26,29,["H2416"]]]},{"k":14564,"v":[[0,3,["H559"]],[3,5,["H410"]],[5,7,["H5553"]],[7,8,["H4100"]],[8,11,["H7911"]],[11,13,["H4100"]],[13,14,["H1980"]],[14,16,["H6937"]],[16,20,["H3906"]],[20,23,["H341"]]]},{"k":14565,"v":[[0,4,["H7524"]],[4,7,["H6106"]],[7,9,["H6887"]],[9,10,["H2778"]],[10,14,["H559"]],[14,15,["H3605","H3117"]],[15,16,["H413"]],[16,18,["H346"]],[18,21,["H430"]]]},{"k":14566,"v":[[0,1,["H4100"]],[1,5,["H7817"]],[5,8,["H5315"]],[8,10,["H4100"]],[10,13,["H1993"]],[13,14,["H5921"]],[14,16,["H3176"]],[16,19,["H430"]],[19,20,["H3588"]],[20,23,["H5750"]],[23,24,["H3034"]],[24,29,["H3444"]],[29,32,["H6440"]],[32,35,["H430"]]]},{"k":14567,"v":[[0,1,["H8199"]],[1,4,["H430"]],[4,6,["H7378"]],[6,8,["H7379"]],[8,11,["H3808","H2623"]],[11,12,["H4480","H1471"]],[12,14,["H6403"]],[14,18,["H4820"]],[18,20,["H5766"]],[20,21,["H4480","H376"]]]},{"k":14568,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,5,["H430"]],[5,8,["H4581"]],[8,9,["H4100"]],[9,14,["H2186"]],[14,15,["H4100"]],[15,16,["H1980"]],[16,18,["H6937"]],[18,22,["H3906"]],[22,25,["H341"]]]},{"k":14569,"v":[[0,3,["H7971"]],[3,5,["H216"]],[5,8,["H571"]],[8,10,["H1992"]],[10,11,["H5148"]],[11,15,["H935"]],[15,17,["H413"]],[17,19,["H6944"]],[19,20,["H2022"]],[20,22,["H413"]],[22,24,["H4908"]]]},{"k":14570,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H4196"]],[7,9,["H430"]],[9,10,["H413"]],[10,11,["H410"]],[11,13,["H8057"]],[13,14,["H1524"]],[14,18,["H3658"]],[18,21,["H3034"]],[21,24,["H430"]],[24,26,["H430"]]]},{"k":14571,"v":[[0,1,["H4100"]],[1,5,["H7817"]],[5,8,["H5315"]],[8,10,["H4100"]],[10,13,["H1993"]],[13,14,["H5921"]],[14,16,["H3176"]],[16,18,["H430"]],[18,19,["H3588"]],[19,22,["H5750"]],[22,23,["H3034"]],[23,28,["H3444"]],[28,31,["H6440"]],[31,34,["H430"]]]},{"k":14572,"v":[[0,3,["H8085"]],[3,6,["H241"]],[6,8,["H430"]],[8,10,["H1"]],[10,12,["H5608"]],[12,15,["H6467"]],[15,17,["H6466"]],[17,20,["H3117"]],[20,23,["H3117"]],[23,25,["H6924"]]]},{"k":14573,"v":[[0,2,["H859"]],[2,5,["H3423"]],[5,7,["H1471"]],[7,10,["H3027"]],[10,12,["H5193"]],[12,17,["H7489"]],[17,19,["H3816"]],[19,23,["H7971"]]]},{"k":14574,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,6,["H776"]],[6,8,["H3423"]],[8,12,["H2719"]],[12,13,["H3808"]],[13,17,["H2220"]],[17,18,["H3467"]],[18,20,["H3588"]],[20,23,["H3225"]],[23,26,["H2220"]],[26,29,["H216"]],[29,32,["H6440"]],[32,33,["H3588"]],[33,37,["H7521"]],[37,39,[]]]},{"k":14575,"v":[[0,1,["H859"]],[1,4,["H4428"]],[4,6,["H430"]],[6,7,["H6680"]],[7,8,["H3444"]],[8,10,["H3290"]]]},{"k":14576,"v":[[0,6,["H5055"]],[6,8,["H6862"]],[8,11,["H8034"]],[11,16,["H947"]],[16,20,["H6965"]],[20,21,[]]]},{"k":14577,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H982"]],[5,8,["H7198"]],[8,9,["H3808"]],[9,12,["H2719"]],[12,13,["H3467"]],[13,14,[]]]},{"k":14578,"v":[[0,1,["H3588"]],[1,4,["H3467"]],[4,8,["H4480","H6862"]],[8,14,["H954"]],[14,16,["H8130"]],[16,17,[]]]},{"k":14579,"v":[[0,2,["H430"]],[2,4,["H1984"]],[4,5,["H3605"]],[5,7,["H3117"]],[7,10,["H3034"]],[10,12,["H8034"]],[12,14,["H5769"]],[14,15,["H5542"]]]},{"k":14580,"v":[[0,1,["H637"]],[1,5,["H2186"]],[5,10,["H3637"]],[10,14,["H3318","H3808"]],[14,17,["H6635"]]]},{"k":14581,"v":[[0,5,["H7725"]],[5,6,["H268"]],[6,7,["H4480"]],[7,9,["H6862"]],[9,13,["H8130"]],[13,15,["H8154"]],[15,17,[]]]},{"k":14582,"v":[[0,3,["H5414"]],[3,6,["H6629"]],[6,9,["H3978"]],[9,12,["H2219"]],[12,16,["H1471"]]]},{"k":14583,"v":[[0,2,["H4376"]],[2,4,["H5971"]],[4,6,["H3808","H1952"]],[6,9,["H3808"]],[9,10,["H7235"]],[10,15,["H4242"]]]},{"k":14584,"v":[[0,2,["H7760"]],[2,5,["H2781"]],[5,8,["H7934"]],[8,10,["H3933"]],[10,13,["H7047"]],[13,19,["H5439"]],[19,20,[]]]},{"k":14585,"v":[[0,2,["H7760"]],[2,5,["H4912"]],[5,8,["H1471"]],[8,10,["H4493"]],[10,13,["H7218"]],[13,16,["H3816"]]]},{"k":14586,"v":[[0,2,["H3639"]],[2,4,["H3605","H3117"]],[4,5,["H5048"]],[5,9,["H1322"]],[9,12,["H6440"]],[12,14,["H3680"]],[14,15,[]]]},{"k":14587,"v":[[0,3,["H4480","H6963"]],[3,7,["H2778"]],[7,9,["H1442"]],[9,11,["H4480","H6440"]],[11,14,["H341"]],[14,16,["H5358"]]]},{"k":14588,"v":[[0,1,["H3605"]],[1,2,["H2063"]],[2,5,["H935"]],[5,10,["H3808"]],[10,11,["H7911"]],[11,13,["H3808"]],[13,17,["H8266"]],[17,20,["H1285"]]]},{"k":14589,"v":[[0,2,["H3820"]],[2,4,["H3808"]],[4,5,["H5472"]],[5,6,["H268"]],[6,10,["H838"]],[10,11,["H5186"]],[11,12,["H4480"]],[12,14,["H734"]]]},{"k":14590,"v":[[0,1,["H3588"]],[1,5,["H1794"]],[5,9,["H4725"]],[9,11,["H8577"]],[11,13,["H3680","H5921"]],[13,19,["H6757"]]]},{"k":14591,"v":[[0,1,["H518"]],[1,4,["H7911"]],[4,6,["H8034"]],[6,9,["H430"]],[9,12,["H6566"]],[12,14,["H3709"]],[14,17,["H2114"]],[17,18,["H410"]]]},{"k":14592,"v":[[0,2,["H3808"]],[2,3,["H430"]],[3,4,["H2713"]],[4,5,["H2063"]],[5,7,["H3588"]],[7,8,["H1931"]],[8,9,["H3045"]],[9,11,["H8587"]],[11,14,["H3820"]]]},{"k":14593,"v":[[0,1,["H3588"]],[1,2,["H5921"]],[2,7,["H2026"]],[7,8,["H3605"]],[8,10,["H3117"]],[10,14,["H2803"]],[14,16,["H6629"]],[16,19,["H2878"]]]},{"k":14594,"v":[[0,1,["H5782"]],[1,2,["H4100"]],[2,3,["H3462"]],[3,6,["H136"]],[6,7,["H6974"]],[7,8,["H2186"]],[8,10,["H408"]],[10,13,["H5331"]]]},{"k":14595,"v":[[0,1,["H4100"]],[1,2,["H5641"]],[2,5,["H6440"]],[5,7,["H7911"]],[7,9,["H6040"]],[9,12,["H3906"]]]},{"k":14596,"v":[[0,1,["H3588"]],[1,3,["H5315"]],[3,6,["H7743"]],[6,9,["H6083"]],[9,11,["H990"]],[11,12,["H1692"]],[12,15,["H776"]]]},{"k":14597,"v":[[0,1,["H6965"]],[1,4,["H5833"]],[4,6,["H6299"]],[6,11,["H4616","H2617"]]]},{"k":14598,"v":[[0,2,["H3820"]],[2,4,["H7370"]],[4,6,["H2896"]],[6,7,["H1697"]],[7,8,["H589"]],[8,9,["H559"]],[9,16,["H4639"]],[16,19,["H4428"]],[19,21,["H3956"]],[21,24,["H5842"]],[24,27,["H4106"]],[27,28,["H5608"]]]},{"k":14599,"v":[[0,3,["H3302"]],[3,6,["H4480","H1121"]],[6,8,["H120"]],[8,9,["H2580"]],[9,11,["H3332"]],[11,14,["H8193"]],[14,15,["H5921","H3651"]],[15,16,["H430"]],[16,18,["H1288"]],[18,21,["H5769"]]]},{"k":14600,"v":[[0,1,["H2296"]],[1,3,["H2719"]],[3,4,["H5921"]],[4,6,["H3409"]],[6,9,["H1368"]],[9,12,["H1935"]],[12,15,["H1926"]]]},{"k":14601,"v":[[0,4,["H1926"]],[4,5,["H7392"]],[5,6,["H6743"]],[6,7,["H5921","H1697"]],[7,9,["H571"]],[9,11,["H6037"]],[11,13,["H6664"]],[13,17,["H3225"]],[17,19,["H3384"]],[19,21,["H3372"]],[21,22,[]]]},{"k":14602,"v":[[0,2,["H2671"]],[2,4,["H8150"]],[4,7,["H3820"]],[7,10,["H4428"]],[10,11,["H341"]],[11,14,["H5971"]],[14,15,["H5307"]],[15,16,["H8478"]],[16,17,[]]]},{"k":14603,"v":[[0,2,["H3678"]],[2,4,["H430"]],[4,7,["H5769"]],[7,9,["H5703"]],[9,11,["H7626"]],[11,14,["H4438"]],[14,17,["H4334"]],[17,18,["H7626"]]]},{"k":14604,"v":[[0,2,["H157"]],[2,3,["H6664"]],[3,5,["H8130"]],[5,6,["H7562"]],[6,7,["H5921","H3651"]],[7,8,["H430"]],[8,10,["H430"]],[10,12,["H4886"]],[12,16,["H8081"]],[16,18,["H8342"]],[18,21,["H4480","H2270"]]]},{"k":14605,"v":[[0,1,["H3605"]],[1,3,["H899"]],[3,6,["H4753"]],[6,8,["H174"]],[8,10,["H7102"]],[10,12,["H4480"]],[12,14,["H8127"]],[14,15,["H1964"]],[15,16,["H4480"]],[16,21,["H8055"]]]},{"k":14606,"v":[[0,1,["H4428"]],[1,2,["H1323"]],[2,6,["H3368"]],[6,11,["H3225"]],[11,13,["H5324"]],[13,15,["H7694"]],[15,17,["H3800"]],[17,19,["H211"]]]},{"k":14607,"v":[[0,1,["H8085"]],[1,3,["H1323"]],[3,5,["H7200"]],[5,7,["H5186"]],[7,9,["H241"]],[9,10,["H7911"]],[10,14,["H5971"]],[14,17,["H1"]],[17,18,["H1004"]]]},{"k":14608,"v":[[0,4,["H4428"]],[4,6,["H183"]],[6,8,["H3308"]],[8,9,["H3588"]],[9,10,["H1931"]],[10,13,["H113"]],[13,15,["H7812"]],[15,17,[]]]},{"k":14609,"v":[[0,3,["H1323"]],[3,5,["H6865"]],[5,11,["H4503"]],[11,14,["H6223"]],[14,17,["H5971"]],[17,19,["H2470"]],[19,21,["H6440"]]]},{"k":14610,"v":[[0,2,["H4428"]],[2,3,["H1323"]],[3,5,["H3605"]],[5,6,["H3520"]],[6,7,["H6441"]],[7,9,["H3830"]],[9,12,["H4480","H4865"]],[12,13,["H2091"]]]},{"k":14611,"v":[[0,4,["H2986"]],[4,7,["H4428"]],[7,11,["H7553"]],[11,13,["H1330"]],[13,15,["H7464"]],[15,17,["H310"]],[17,21,["H935"]],[21,23,[]]]},{"k":14612,"v":[[0,2,["H8057"]],[2,4,["H1524"]],[4,8,["H2986"]],[8,11,["H935"]],[11,14,["H4428"]],[14,15,["H1964"]]]},{"k":14613,"v":[[0,1,["H8478"]],[1,4,["H1"]],[4,6,["H1961"]],[6,8,["H1121"]],[8,12,["H7896"]],[12,13,["H8269"]],[13,15,["H3605"]],[15,17,["H776"]]]},{"k":14614,"v":[[0,5,["H8034"]],[5,8,["H2142"]],[8,10,["H3605"]],[10,11,["H1755","H1755"]],[11,12,["H5921","H3651"]],[12,15,["H5971"]],[15,16,["H3034"]],[16,19,["H5769"]],[19,21,["H5703"]]]},{"k":14615,"v":[[0,1,["H430"]],[1,4,["H4268"]],[4,6,["H5797"]],[6,8,["H3966"]],[8,9,["H4672"]],[9,10,["H5833"]],[10,12,["H6869"]]]},{"k":14616,"v":[[0,1,["H5921","H3651"]],[1,3,["H3808"]],[3,5,["H3372"]],[5,8,["H776"]],[8,10,["H4171"]],[10,14,["H2022"]],[14,16,["H4131"]],[16,19,["H3820"]],[19,22,["H3220"]]]},{"k":14617,"v":[[0,3,["H4325"]],[3,5,["H1993"]],[5,8,["H2560"]],[8,11,["H2022"]],[11,12,["H7493"]],[12,15,["H1346"]],[15,17,["H5542"]]]},{"k":14618,"v":[[0,4,["H5104"]],[4,6,["H6388"]],[6,10,["H8055"]],[10,12,["H5892"]],[12,14,["H430"]],[14,16,["H6918"]],[16,20,["H4908"]],[20,24,["H5945"]]]},{"k":14619,"v":[[0,1,["H430"]],[1,5,["H7130"]],[5,10,["H1077"]],[10,12,["H4131"]],[12,13,["H430"]],[13,15,["H5826"]],[15,19,["H6437"]],[19,20,["H1242"]]]},{"k":14620,"v":[[0,2,["H1471"]],[2,3,["H1993"]],[3,5,["H4467"]],[5,7,["H4131"]],[7,9,["H5414"]],[9,11,["H6963"]],[11,13,["H776"]],[13,14,["H4127"]]]},{"k":14621,"v":[[0,2,["H3068"]],[2,4,["H6635"]],[4,6,["H5973"]],[6,9,["H430"]],[9,11,["H3290"]],[11,14,["H4869"]],[14,15,["H5542"]]]},{"k":14622,"v":[[0,1,["H1980"]],[1,2,["H2372"]],[2,4,["H4659"]],[4,7,["H3068"]],[7,8,["H834"]],[8,9,["H8047"]],[9,12,["H7760"]],[12,15,["H776"]]]},{"k":14623,"v":[[0,3,["H4421"]],[3,5,["H7673"]],[5,6,["H5704"]],[6,8,["H7097"]],[8,11,["H776"]],[11,13,["H7665"]],[13,15,["H7198"]],[15,17,["H7112"]],[17,19,["H2595"]],[19,23,["H8313"]],[23,25,["H5699"]],[25,28,["H784"]]]},{"k":14624,"v":[[0,2,["H7503"]],[2,4,["H3045"]],[4,5,["H3588"]],[5,6,["H595"]],[6,8,["H430"]],[8,12,["H7311"]],[12,15,["H1471"]],[15,19,["H7311"]],[19,22,["H776"]]]},{"k":14625,"v":[[0,2,["H3068"]],[2,4,["H6635"]],[4,6,["H5973"]],[6,9,["H430"]],[9,11,["H3290"]],[11,14,["H4869"]],[14,15,["H5542"]]]},{"k":14626,"v":[[0,2,["H8628"]],[2,4,["H3709"]],[4,5,["H3605"]],[5,7,["H5971"]],[7,8,["H7321"]],[8,10,["H430"]],[10,13,["H6963"]],[13,15,["H7440"]]]},{"k":14627,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H5945"]],[5,7,["H3372"]],[7,11,["H1419"]],[11,12,["H4428"]],[12,13,["H5921"]],[13,14,["H3605"]],[14,16,["H776"]]]},{"k":14628,"v":[[0,3,["H1696"]],[3,5,["H5971"]],[5,6,["H8478"]],[6,10,["H3816"]],[10,11,["H8478"]],[11,13,["H7272"]]]},{"k":14629,"v":[[0,3,["H977","(H853)"]],[3,5,["H5159"]],[5,7,["(H853)"]],[7,9,["H1347"]],[9,11,["H3290"]],[11,12,["H834"]],[12,14,["H157"]],[14,15,["H5542"]]]},{"k":14630,"v":[[0,1,["H430"]],[1,4,["H5927"]],[4,7,["H8643"]],[7,9,["H3068"]],[9,12,["H6963"]],[12,15,["H7782"]]]},{"k":14631,"v":[[0,2,["H2167"]],[2,4,["H430"]],[4,6,["H2167"]],[6,8,["H2167"]],[8,11,["H4428"]],[11,13,["H2167"]]]},{"k":14632,"v":[[0,1,["H3588"]],[1,2,["H430"]],[2,5,["H4428"]],[5,7,["H3605"]],[7,9,["H776"]],[9,12,["H2167"]],[12,14,["H7919"]]]},{"k":14633,"v":[[0,1,["H430"]],[1,2,["H4427"]],[2,3,["H5921"]],[3,5,["H1471"]],[5,6,["H430"]],[6,7,["H3427"]],[7,8,["H5921"]],[8,10,["H3678"]],[10,13,["H6944"]]]},{"k":14634,"v":[[0,2,["H5081"]],[2,5,["H5971"]],[5,8,["H622"]],[8,11,["H5971"]],[11,14,["H430"]],[14,16,["H85"]],[16,17,["H3588"]],[17,19,["H4043"]],[19,22,["H776"]],[22,25,["H430"]],[25,28,["H3966"]],[28,29,["H5927"]]]},{"k":14635,"v":[[0,1,["H1419"]],[1,4,["H3068"]],[4,6,["H3966"]],[6,9,["H1984"]],[9,12,["H5892"]],[12,15,["H430"]],[15,18,["H2022"]],[18,21,["H6944"]]]},{"k":14636,"v":[[0,1,["H3303"]],[1,3,["H5131"]],[3,5,["H4885"]],[5,8,["H3605"]],[8,9,["H776"]],[9,11,["H2022"]],[11,12,["H6726"]],[12,15,["H3411"]],[15,18,["H6828"]],[18,20,["H7151"]],[20,23,["H7227"]],[23,24,["H4428"]]]},{"k":14637,"v":[[0,1,["H430"]],[1,3,["H3045"]],[3,6,["H759"]],[6,9,["H4869"]]]},{"k":14638,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H4428"]],[4,6,["H3259"]],[6,9,["H5674"]],[9,10,["H3162"]]]},{"k":14639,"v":[[0,1,["H1992"]],[1,2,["H7200"]],[2,5,["H3651"]],[5,7,["H8539"]],[7,10,["H926"]],[10,13,["H2648"]]]},{"k":14640,"v":[[0,1,["H7461"]],[1,4,["H270"]],[4,6,["H8033"]],[6,8,["H2427"]],[8,14,["H3205"]]]},{"k":14641,"v":[[0,2,["H7665"]],[2,4,["H591"]],[4,6,["H8659"]],[6,9,["H6921"]],[9,10,["H7307"]]]},{"k":14642,"v":[[0,1,["H834"]],[1,4,["H8085"]],[4,5,["H3651"]],[5,8,["H7200"]],[8,11,["H5892"]],[11,14,["H3068"]],[14,16,["H6635"]],[16,19,["H5892"]],[19,22,["H430"]],[22,23,["H430"]],[23,25,["H3559"]],[25,28,["H5704","H5769"]],[28,29,["H5542"]]]},{"k":14643,"v":[[0,3,["H1819"]],[3,6,["H2617"]],[6,8,["H430"]],[8,11,["H7130"]],[11,14,["H1964"]]]},{"k":14644,"v":[[0,4,["H8034"]],[4,6,["H430"]],[6,7,["H3651"]],[7,10,["H8416"]],[10,11,["H5921"]],[11,13,["H7099"]],[13,16,["H776"]],[16,19,["H3225"]],[19,21,["H4390"]],[21,23,["H6664"]]]},{"k":14645,"v":[[0,2,["H2022"]],[2,3,["H6726"]],[3,4,["H8055"]],[4,7,["H1323"]],[7,9,["H3063"]],[9,11,["H1523"]],[11,13,["H4616"]],[13,15,["H4941"]]]},{"k":14646,"v":[[0,2,["H5437"]],[2,3,["H6726"]],[3,7,["H5362"]],[7,9,["H5608"]],[9,11,["H4026"]],[11,12,[]]]},{"k":14647,"v":[[0,3,["H7896","H3820"]],[3,5,["H2430"]],[5,6,["H6448"]],[6,8,["H759"]],[8,9,["H4616"]],[9,12,["H5608"]],[12,16,["H1755"]],[16,17,["H314"]]]},{"k":14648,"v":[[0,1,["H3588"]],[1,2,["H2088"]],[2,3,["H430"]],[3,6,["H430"]],[6,8,["H5769"]],[8,10,["H5703"]],[10,11,["H1931"]],[11,15,["H5090"]],[15,17,["H5921"]],[17,18,["H4191"]]]},{"k":14649,"v":[[0,1,["H8085"]],[1,2,["H2063"]],[2,3,["H3605"]],[3,5,["H5971"]],[5,7,["H238"]],[7,8,["H3605"]],[8,10,["H3427"]],[10,13,["H2465"]]]},{"k":14650,"v":[[0,1,["H1571"]],[1,2,["H120"]],[2,3,["H1571"]],[3,4,["H376"]],[4,5,["H6223"]],[5,7,["H34"]],[7,8,["H3162"]]]},{"k":14651,"v":[[0,2,["H6310"]],[2,4,["H1696"]],[4,6,["H2454"]],[6,9,["H1900"]],[9,12,["H3820"]],[12,16,["H8394"]]]},{"k":14652,"v":[[0,3,["H5186"]],[3,5,["H241"]],[5,8,["H4912"]],[8,11,["H6605"]],[11,14,["H2420"]],[14,17,["H3658"]]]},{"k":14653,"v":[[0,1,["H4100"]],[1,4,["H3372"]],[4,7,["H3117"]],[7,9,["H7451"]],[9,12,["H5771"]],[12,15,["H6120"]],[15,19,["H5437"]]]},{"k":14654,"v":[[0,3,["H982"]],[3,4,["H5921"]],[4,6,["H2428"]],[6,9,["H1984"]],[9,12,["H7230"]],[12,15,["H6239"]]]},{"k":14655,"v":[[0,1,["H3808"]],[1,7,["H6299"]],[7,8,["H6299"]],[8,10,["H251"]],[10,11,["H3808"]],[11,12,["H5414"]],[12,14,["H430"]],[14,16,["H3724"]],[16,18,[]]]},{"k":14656,"v":[[0,3,["H6306"]],[3,6,["H5315"]],[6,8,["H3365"]],[8,11,["H2308"]],[11,13,["H5769"]]]},{"k":14657,"v":[[0,4,["H5750"]],[4,5,["H2421"]],[5,7,["H5331"]],[7,9,["H3808"]],[9,10,["H7200"]],[10,11,["H7845"]]]},{"k":14658,"v":[[0,1,["H3588"]],[1,3,["H7200"]],[3,6,["H2450"]],[6,7,["H4191"]],[7,8,["H3162"]],[8,10,["H3684"]],[10,14,["H1198"]],[14,15,["H6"]],[15,17,["H5800"]],[17,19,["H2428"]],[19,21,["H312"]]]},{"k":14659,"v":[[0,3,["H7130"]],[3,7,["H1004"]],[7,11,["H5769"]],[11,15,["H4908"]],[15,18,["H1755","H1755"]],[18,20,["H7121","H5921"]],[20,22,["H127"]],[22,26,["H8034"]]]},{"k":14660,"v":[[0,2,["H120"]],[2,5,["H3366"]],[5,6,["H3885"]],[6,7,["H1077"]],[7,10,["H4911"]],[10,12,["H929"]],[12,14,["H1820"]]]},{"k":14661,"v":[[0,1,["H2088"]],[1,3,["H1870"]],[3,6,["H3689"]],[6,9,["H310"]],[9,10,["H7521"]],[10,12,["H6310"]],[12,13,["H5542"]]]},{"k":14662,"v":[[0,2,["H6629"]],[2,5,["H8371"]],[5,8,["H7585"]],[8,9,["H4194"]],[9,11,["H7462"]],[11,16,["H3477"]],[16,19,["H7287"]],[19,24,["H1242"]],[24,27,["H6697"]],[27,29,["H1086"]],[29,32,["H7585"]],[32,35,["H4480","H2073"]]]},{"k":14663,"v":[[0,1,["H389"]],[1,2,["H430"]],[2,4,["H6299"]],[4,6,["H5315"]],[6,9,["H4480","H3027"]],[9,12,["H7585"]],[12,13,["H3588"]],[13,16,["H3947"]],[16,18,["H5542"]]]},{"k":14664,"v":[[0,2,["H408"]],[2,4,["H3372"]],[4,5,["H3588"]],[5,6,["H376"]],[6,9,["H6238"]],[9,10,["H3588"]],[10,12,["H3519"]],[12,15,["H1004"]],[15,17,["H7235"]]]},{"k":14665,"v":[[0,2,["H3588"]],[2,4,["H4194"]],[4,7,["H3947"]],[7,8,["H3808","H3605"]],[8,11,["H3519"]],[11,13,["H3808"]],[13,14,["H3381"]],[14,15,["H310"]],[15,16,[]]]},{"k":14666,"v":[[0,1,["H3588"]],[1,4,["H2416"]],[4,6,["H1288"]],[6,8,["H5315"]],[8,12,["H3034"]],[12,14,["H3588"]],[14,17,["H3190"]],[17,19,[]]]},{"k":14667,"v":[[0,3,["H935"]],[3,4,["H5704"]],[4,6,["H1755"]],[6,9,["H1"]],[9,12,["H5704","H5331","H3808"]],[12,13,["H7200"]],[13,14,["H216"]]]},{"k":14668,"v":[[0,1,["H120"]],[1,5,["H3366"]],[5,7,["H995"]],[7,8,["H3808"]],[8,10,["H4911"]],[10,12,["H929"]],[12,14,["H1820"]]]},{"k":14669,"v":[[0,2,["H410"]],[2,3,["H430"]],[3,6,["H3068"]],[6,8,["H1696"]],[8,10,["H7121"]],[10,12,["H776"]],[12,15,["H4480","H4217"]],[15,18,["H8121"]],[18,19,["H5704"]],[19,22,["H3996"]],[22,23,[]]]},{"k":14670,"v":[[0,3,["H4480","H6726"]],[3,5,["H4359"]],[5,7,["H3308"]],[7,8,["H430"]],[8,10,["H3313"]]]},{"k":14671,"v":[[0,2,["H430"]],[2,4,["H935"]],[4,7,["H408"]],[7,9,["H2790"]],[9,11,["H784"]],[11,13,["H398"]],[13,14,["H6440"]],[14,20,["H3966"]],[20,21,["H8175"]],[21,23,["H5439"]],[23,24,[]]]},{"k":14672,"v":[[0,3,["H7121"]],[3,4,["H413"]],[4,6,["H8064"]],[6,8,["H4480","H5920"]],[8,10,["H413"]],[10,12,["H776"]],[12,16,["H1777"]],[16,18,["H5971"]]]},{"k":14673,"v":[[0,4,["H622","H2623"]],[4,10,["H3772"]],[10,12,["H1285"]],[12,15,["H5921"]],[15,16,["H2077"]]]},{"k":14674,"v":[[0,3,["H8064"]],[3,5,["H5046"]],[5,7,["H6664"]],[7,8,["H3588"]],[8,9,["H430"]],[9,11,["H8199"]],[11,12,["H1931"]],[12,13,["H5542"]]]},{"k":14675,"v":[[0,1,["H8085"]],[1,4,["H5971"]],[4,8,["H1696"]],[8,10,["H3478"]],[10,14,["H5749"]],[14,17,["H595"]],[17,19,["H430"]],[19,22,["H430"]]]},{"k":14676,"v":[[0,3,["H3808"]],[3,4,["H3198"]],[4,6,["H5921"]],[6,8,["H2077"]],[8,12,["H5930"]],[12,16,["H8548"]],[16,17,["H5048"]],[17,18,[]]]},{"k":14677,"v":[[0,3,["H3947"]],[3,4,["H3808"]],[4,5,["H6499"]],[5,9,["H4480","H1004"]],[9,12,["H6260"]],[12,16,["H4480","H4356"]]]},{"k":14678,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,3,["H2416"]],[3,6,["H3293"]],[6,11,["H929"]],[11,14,["H505"]],[14,15,["H2042"]]]},{"k":14679,"v":[[0,2,["H3045"]],[2,3,["H3605"]],[3,5,["H5775"]],[5,8,["H2022"]],[8,12,["H2123"]],[12,15,["H7704"]],[15,17,["H5978"]]]},{"k":14680,"v":[[0,1,["H518"]],[1,4,["H7456"]],[4,7,["H3808"]],[7,8,["H559"]],[8,10,["H3588"]],[10,12,["H8398"]],[12,17,["H4393"]],[17,18,[]]]},{"k":14681,"v":[[0,3,["H398"]],[3,5,["H1320"]],[5,7,["H47"]],[7,9,["H8354"]],[9,11,["H1818"]],[11,13,["H6260"]]]},{"k":14682,"v":[[0,1,["H2076"]],[1,3,["H430"]],[3,4,["H8426"]],[4,6,["H7999"]],[6,8,["H5088"]],[8,12,["H5945"]]]},{"k":14683,"v":[[0,3,["H7121"]],[3,7,["H3117"]],[7,9,["H6869"]],[9,12,["H2502"]],[12,17,["H3513"]],[17,18,[]]]},{"k":14684,"v":[[0,4,["H7563"]],[4,5,["H430"]],[5,6,["H559"]],[6,7,["H4100"]],[7,13,["H5608"]],[13,15,["H2706"]],[15,20,["H5375"]],[20,22,["H1285"]],[22,23,["H5921"]],[23,25,["H6310"]]]},{"k":14685,"v":[[0,2,["H859"]],[2,3,["H8130"]],[3,4,["H4148"]],[4,6,["H7993"]],[6,8,["H1697"]],[8,9,["H310"]],[9,10,[]]]},{"k":14686,"v":[[0,1,["H518"]],[1,3,["H7200"]],[3,5,["H1590"]],[5,8,["H7521"]],[8,9,["H5973"]],[9,14,["H2506"]],[14,15,["H5973"]],[15,16,["H5003"]]]},{"k":14687,"v":[[0,2,["H7971"]],[2,4,["H6310"]],[4,6,["H7451"]],[6,9,["H3956"]],[9,10,["H6775"]],[10,11,["H4820"]]]},{"k":14688,"v":[[0,2,["H3427"]],[2,4,["H1696"]],[4,7,["H251"]],[7,9,["H5414","H1848"]],[9,12,["H517"]],[12,13,["H1121"]]]},{"k":14689,"v":[[0,1,["H428"]],[1,5,["H6213"]],[5,9,["H2790"]],[9,11,["H1819"]],[11,14,["H1961"]],[14,15,["H1961"]],[15,20,["H3644"]],[20,24,["H3198"]],[24,30,["H6186"]],[30,33,["H5869"]]]},{"k":14690,"v":[[0,1,["H4994"]],[1,2,["H995"]],[2,3,["H2063"]],[3,6,["H7911"]],[6,7,["H433"]],[7,8,["H6435"]],[8,13,["H2963"]],[13,17,["H369"]],[17,19,["H5337"]]]},{"k":14691,"v":[[0,2,["H2076"]],[2,3,["H8426"]],[3,4,["H3513"]],[4,10,["H7760"]],[10,12,["H1870"]],[12,16,["H7200"]],[16,18,["H3468"]],[18,20,["H430"]]]},{"k":14692,"v":[[0,2,["H2603"]],[2,6,["H430"]],[6,10,["H2617"]],[10,14,["H7230"]],[14,18,["H7356"]],[18,20,["H4229"]],[20,22,["H6588"]]]},{"k":14693,"v":[[0,1,["H3526"]],[1,3,["H7235"]],[3,6,["H4480","H5771"]],[6,8,["H2891"]],[8,12,["H4480","H2403"]]]},{"k":14694,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,3,["H3045"]],[3,5,["H6588"]],[5,8,["H2403"]],[8,10,["H8548"]],[10,11,["H5048"]],[11,12,[]]]},{"k":14695,"v":[[0,4,["H905"]],[4,7,["H2398"]],[7,9,["H6213"]],[9,11,["H7451"]],[11,14,["H5869"]],[14,15,["H4616"]],[15,19,["H6663"]],[19,22,["H1696"]],[22,25,["H2135"]],[25,28,["H8199"]]]},{"k":14696,"v":[[0,1,["H2005"]],[1,4,["H2342"]],[4,6,["H5771"]],[6,9,["H2399"]],[9,12,["H517"]],[12,13,["H3179"]],[13,14,[]]]},{"k":14697,"v":[[0,1,["H2005"]],[1,3,["H2654"]],[3,4,["H571"]],[4,8,["H2910"]],[8,12,["H5640"]],[12,19,["H3045"]],[19,20,["H2451"]]]},{"k":14698,"v":[[0,1,["H2398"]],[1,4,["H231"]],[4,9,["H2891"]],[9,10,["H3526"]],[10,16,["H3835"]],[16,18,["H4480","H7950"]]]},{"k":14699,"v":[[0,4,["H8085"]],[4,5,["H8342"]],[5,7,["H8057"]],[7,10,["H6106"]],[10,14,["H1794"]],[14,16,["H1523"]]]},{"k":14700,"v":[[0,1,["H5641"]],[1,3,["H6440"]],[3,6,["H4480","H2399"]],[6,9,["H4229"]],[9,10,["H3605"]],[10,12,["H5771"]]]},{"k":14701,"v":[[0,1,["H1254"]],[1,5,["H2889"]],[5,6,["H3820"]],[6,8,["H430"]],[8,10,["H2318"]],[10,12,["H3559"]],[12,13,["H7307"]],[13,14,["H7130"]],[14,15,[]]]},{"k":14702,"v":[[0,1,["H7993"]],[1,3,["H408"]],[3,7,["H4480","H6440"]],[7,9,["H3947"]],[9,10,["H408"]],[10,12,["H6944"]],[12,13,["H7307"]],[13,14,["H4480"]],[14,15,[]]]},{"k":14703,"v":[[0,1,["H7725"]],[1,5,["H8342"]],[5,8,["H3468"]],[8,10,["H5564"]],[10,14,["H5082"]],[14,15,["H7307"]]]},{"k":14704,"v":[[0,4,["H3925"]],[4,5,["H6586"]],[5,7,["H1870"]],[7,9,["H2400"]],[9,12,["H7725"]],[12,13,["H413"]],[13,14,[]]]},{"k":14705,"v":[[0,1,["H5337"]],[1,4,["H4480","H1818"]],[4,6,["H430"]],[6,8,["H430"]],[8,11,["H8668"]],[11,14,["H3956"]],[14,17,["H7442"]],[17,20,["H6666"]]]},{"k":14706,"v":[[0,2,["H136"]],[2,3,["H6605"]],[3,6,["H8193"]],[6,9,["H6310"]],[9,12,["H5046"]],[12,14,["H8416"]]]},{"k":14707,"v":[[0,1,["H3588"]],[1,3,["H2654"]],[3,4,["H3808"]],[4,5,["H2077"]],[5,9,["H5414"]],[9,12,["H7521"]],[12,13,["H3808"]],[13,16,["H5930"]]]},{"k":14708,"v":[[0,2,["H2077"]],[2,4,["H430"]],[4,7,["H7665"]],[7,8,["H7307"]],[8,10,["H7665"]],[10,13,["H1794"]],[13,14,["H3820"]],[14,16,["H430"]],[16,19,["H3808"]],[19,20,["H959"]]]},{"k":14709,"v":[[0,2,["H3190"]],[2,6,["H7522"]],[6,7,["(H853)"]],[7,8,["H6726"]],[8,9,["H1129"]],[9,12,["H2346"]],[12,14,["H3389"]]]},{"k":14710,"v":[[0,1,["H227"]],[1,5,["H2654"]],[5,8,["H2077"]],[8,10,["H6664"]],[10,13,["H5930"]],[13,17,["H3632"]],[17,18,["H227"]],[18,21,["H5927"]],[21,22,["H6499"]],[22,23,["H5921"]],[23,25,["H4196"]]]},{"k":14711,"v":[[0,1,["H4100"]],[1,4,["H1984"]],[4,6,["H7451"]],[6,9,["H1368"]],[9,11,["H2617"]],[11,13,["H410"]],[13,15,["H3605","H3117"]]]},{"k":14712,"v":[[0,2,["H3956"]],[2,3,["H2803"]],[3,4,["H1942"]],[4,7,["H3913"]],[7,8,["H8593"]],[8,9,["H6213"]],[9,10,["H7423"]]]},{"k":14713,"v":[[0,2,["H157"]],[2,3,["H7451"]],[3,6,["H4480","H2896"]],[6,8,["H8267"]],[8,12,["H4480","H1696"]],[12,13,["H6664"]],[13,14,["H5542"]]]},{"k":14714,"v":[[0,2,["H157"]],[2,3,["H3605"]],[3,4,["H1105"]],[4,5,["H1697"]],[5,8,["H4820"]],[8,9,["H3956"]]]},{"k":14715,"v":[[0,1,["H410"]],[1,3,["H1571"]],[3,4,["H5422"]],[4,7,["H5331"]],[7,12,["H2846"]],[12,16,["H5255"]],[16,20,["H4480","H168"]],[20,22,["H8327"]],[22,27,["H4480","H776"]],[27,30,["H2416"]],[30,31,["H5542"]]]},{"k":14716,"v":[[0,2,["H6662"]],[2,5,["H7200"]],[5,7,["H3372"]],[7,10,["H7832"]],[10,11,["H5921"]],[11,12,[]]]},{"k":14717,"v":[[0,1,["H2009"]],[1,5,["H1397"]],[5,7,["H7760"]],[7,8,["H3808"]],[8,9,["H430"]],[9,11,["H4581"]],[11,13,["H982"]],[13,16,["H7230"]],[16,19,["H6239"]],[19,21,["H5810"]],[21,25,["H1942"]]]},{"k":14718,"v":[[0,2,["H589"]],[2,6,["H7488"]],[6,8,["H2132"]],[8,11,["H1004"]],[11,13,["H430"]],[13,15,["H982"]],[15,18,["H2617"]],[18,20,["H430"]],[20,22,["H5769"]],[22,24,["H5703"]]]},{"k":14719,"v":[[0,3,["H3034"]],[3,6,["H5769"]],[6,7,["H3588"]],[7,10,["H6213"]],[10,16,["H6960"]],[16,18,["H8034"]],[18,19,["H3588"]],[19,22,["H2896"]],[22,23,["H5048"]],[23,25,["H2623"]]]},{"k":14720,"v":[[0,2,["H5036"]],[2,4,["H559"]],[4,7,["H3820"]],[7,10,["H369"]],[10,11,["H430"]],[11,12,["H7843"]],[12,18,["H8581"]],[18,19,["H5766"]],[19,22,["H369"]],[22,24,["H6213"]],[24,25,["H2896"]]]},{"k":14721,"v":[[0,1,["H430"]],[1,3,["H8259"]],[3,5,["H4480","H8064"]],[5,6,["H5921"]],[6,8,["H1121"]],[8,10,["H120"]],[10,12,["H7200"]],[12,15,["H3426"]],[15,19,["H7919"]],[19,22,["H1875","(H853)"]],[22,23,["H430"]]]},{"k":14722,"v":[[0,2,["H3605"]],[2,7,["H5472"]],[7,10,["H3162"]],[10,12,["H444"]],[12,15,["H369"]],[15,17,["H6213"]],[17,18,["H2896"]],[18,19,["H369"]],[19,20,["H1571"]],[20,21,["H259"]]]},{"k":14723,"v":[[0,3,["H6466"]],[3,5,["H205"]],[5,6,["H3808"]],[6,7,["H3045"]],[7,10,["H398"]],[10,12,["H5971"]],[12,15,["H398"]],[15,16,["H3899"]],[16,19,["H3808"]],[19,21,["H7121"]],[21,22,["H430"]]]},{"k":14724,"v":[[0,1,["H8033"]],[1,6,["H6342","H6343"]],[6,8,["H3808"]],[8,9,["H6343"]],[9,10,["H1961"]],[10,11,["H3588"]],[11,12,["H430"]],[12,14,["H6340"]],[14,16,["H6106"]],[16,20,["H2583"]],[20,28,["H954"]],[28,29,["H3588"]],[29,30,["H430"]],[30,32,["H3988"]],[32,33,[]]]},{"k":14725,"v":[[0,2,["H4310","H5414"]],[2,4,["H3444"]],[4,6,["H3478"]],[6,11,["H4480","H6726"]],[11,13,["H430"]],[13,15,["H7725"]],[15,17,["H7622"]],[17,20,["H5971"]],[20,21,["H3290"]],[21,23,["H1523"]],[23,25,["H3478"]],[25,28,["H8055"]]]},{"k":14726,"v":[[0,1,["H3467"]],[1,4,["H430"]],[4,7,["H8034"]],[7,9,["H1777"]],[9,13,["H1369"]]]},{"k":14727,"v":[[0,1,["H8085"]],[1,3,["H8605"]],[3,5,["H430"]],[5,7,["H238"]],[7,10,["H561"]],[10,13,["H6310"]]]},{"k":14728,"v":[[0,1,["H3588"]],[1,2,["H2114"]],[2,5,["H6965"]],[5,6,["H5921"]],[6,9,["H6184"]],[9,11,["H1245"]],[11,13,["H5315"]],[13,16,["H3808"]],[16,17,["H7760"]],[17,18,["H430"]],[18,19,["H5048"]],[19,21,["H5542"]]]},{"k":14729,"v":[[0,1,["H2009"]],[1,2,["H430"]],[2,5,["H5826"]],[5,7,["H136"]],[7,12,["H5564"]],[12,14,["H5315"]]]},{"k":14730,"v":[[0,3,["H7725"]],[3,4,["H7451"]],[4,7,["H8324"]],[7,10,["H6789"]],[10,13,["H571"]]]},{"k":14731,"v":[[0,3,["H5071"]],[3,4,["H2076"]],[4,9,["H3034"]],[9,11,["H8034"]],[11,13,["H3068"]],[13,14,["H3588"]],[14,17,["H2896"]]]},{"k":14732,"v":[[0,1,["H3588"]],[1,4,["H5337"]],[4,8,["H4480","H3605"]],[8,9,["H6869"]],[9,12,["H5869"]],[12,14,["H7200"]],[14,19,["H341"]]]},{"k":14733,"v":[[0,2,["H238"]],[2,5,["H8605"]],[5,7,["H430"]],[7,11,["H408","H5956"]],[11,14,["H4480","H8467"]]]},{"k":14734,"v":[[0,1,["H7181"]],[1,5,["H6030"]],[5,8,["H7300"]],[8,11,["H7879"]],[11,15,["H1949"]]]},{"k":14735,"v":[[0,4,["H4480","H6963"]],[4,7,["H341"]],[7,8,["H4480","H6440"]],[8,11,["H6125"]],[11,14,["H7563"]],[14,15,["H3588"]],[15,17,["H4131"]],[17,18,["H205"]],[18,19,["H5921"]],[19,23,["H639"]],[23,25,["H7852"]],[25,26,[]]]},{"k":14736,"v":[[0,2,["H3820"]],[2,5,["H2342"]],[5,6,["H7130"]],[6,10,["H367"]],[10,12,["H4194"]],[12,14,["H5307"]],[14,15,["H5921"]],[15,16,[]]]},{"k":14737,"v":[[0,1,["H3374"]],[1,3,["H7461"]],[3,5,["H935"]],[5,9,["H6427"]],[9,11,["H3680"]],[11,12,[]]]},{"k":14738,"v":[[0,3,["H559"]],[3,5,["H4310"]],[5,7,["H5414"]],[7,8,["H83"]],[8,11,["H3123"]],[11,17,["H5774"]],[17,21,["H7931"]]]},{"k":14739,"v":[[0,1,["H2009"]],[1,5,["H5074"]],[5,7,["H7368"]],[7,9,["H3885"]],[9,12,["H4057"]],[12,13,["H5542"]]]},{"k":14740,"v":[[0,3,["H2363"]],[3,5,["H4655"]],[5,8,["H4480","H7307"]],[8,9,["H5584"]],[9,11,["H4480","H5591"]]]},{"k":14741,"v":[[0,1,["H1104"]],[1,3,["H136"]],[3,5,["H6385"]],[5,7,["H3956"]],[7,8,["H3588"]],[8,11,["H7200"]],[11,12,["H2555"]],[12,14,["H7379"]],[14,17,["H5892"]]]},{"k":14742,"v":[[0,1,["H3119"]],[1,3,["H3915"]],[3,6,["H5437"]],[6,8,["H5921"]],[8,10,["H2346"]],[10,12,["H205"]],[12,15,["H5999"]],[15,19,["H7130"]],[19,21,[]]]},{"k":14743,"v":[[0,1,["H1942"]],[1,5,["H7130"]],[5,7,["H8496"]],[7,9,["H4820"]],[9,10,["H4185"]],[10,11,["H3808"]],[11,12,["H4480"]],[12,14,["H7339"]]]},{"k":14744,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,6,["H341"]],[6,8,["H2778"]],[8,14,["H5375"]],[14,16,["H3808"]],[16,21,["H8130"]],[21,25,["H1431"]],[25,27,["H5921"]],[27,34,["H5641"]],[34,35,["H4480"]],[35,36,[]]]},{"k":14745,"v":[[0,4,["H859"]],[4,6,["H582"]],[6,8,["H6187"]],[8,10,["H441"]],[10,13,["H3045"]]]},{"k":14746,"v":[[0,3,["H4985"]],[3,4,["H5475"]],[4,5,["H3162"]],[5,7,["H1980"]],[7,10,["H1004"]],[10,12,["H430"]],[12,14,["H7285"]]]},{"k":14747,"v":[[0,3,["H3451"]],[3,4,["H5921"]],[4,10,["H3381"]],[10,11,["H2416"]],[11,13,["H7585"]],[13,14,["H3588"]],[14,15,["H7451"]],[15,19,["H4033"]],[19,21,["H7130"]],[21,22,[]]]},{"k":14748,"v":[[0,4,["H589"]],[4,6,["H7121"]],[6,7,["H413"]],[7,8,["H430"]],[8,11,["H3068"]],[11,13,["H3467"]],[13,14,[]]]},{"k":14749,"v":[[0,1,["H6153"]],[1,3,["H1242"]],[3,6,["H6672"]],[6,9,["H7878"]],[9,12,["H1993"]],[12,16,["H8085"]],[16,18,["H6963"]]]},{"k":14750,"v":[[0,3,["H6299"]],[3,5,["H5315"]],[5,7,["H7965"]],[7,10,["H4480","H7128"]],[10,15,["H3588"]],[15,17,["H1961"]],[17,18,["H7227"]],[18,19,["H5978"]],[19,20,[]]]},{"k":14751,"v":[[0,1,["H410"]],[1,3,["H8085"]],[3,5,["H6031"]],[5,10,["H3427"]],[10,12,["H6924"]],[12,13,["H5542"]],[13,14,["H834"]],[14,17,["H369"]],[17,18,["H2487"]],[18,21,["H3372"]],[21,22,["H3808"]],[22,23,["H430"]]]},{"k":14752,"v":[[0,4,["H7971"]],[4,6,["H3027"]],[6,12,["H7965"]],[12,17,["H2490"]],[17,19,["H1285"]]]},{"k":14753,"v":[[0,5,["H6310"]],[5,7,["H2505"]],[7,9,["H4260"]],[9,11,["H7128"]],[11,15,["H3820"]],[15,17,["H1697"]],[17,19,["H7401"]],[19,21,["H4480","H8081"]],[21,24,["H1992"]],[24,26,["H6609"]]]},{"k":14754,"v":[[0,1,["H7993"]],[1,3,["H3053"]],[3,4,["H5921"]],[4,6,["H3068"]],[6,8,["H1931"]],[8,10,["H3557"]],[10,14,["H3808","H5769"]],[14,15,["H5414"]],[15,17,["H6662"]],[17,20,["H4131"]]]},{"k":14755,"v":[[0,2,["H859"]],[2,4,["H430"]],[4,8,["H3381"]],[8,11,["H875"]],[11,13,["H7845"]],[13,14,["H1818"]],[14,16,["H4820"]],[16,17,["H376"]],[17,19,["H3808"]],[19,22,["H2673"]],[22,24,["H3117"]],[24,26,["H589"]],[26,28,["H982"]],[28,30,[]]]},{"k":14756,"v":[[0,2,["H2603"]],[2,6,["H430"]],[6,7,["H3588"]],[7,8,["H582"]],[8,12,["H7602"]],[12,14,["H3898"]],[14,15,["H3605","H3117"]],[15,16,["H3905"]],[16,17,[]]]},{"k":14757,"v":[[0,2,["H8324"]],[2,4,["H3605","H3117"]],[4,7,["H7602"]],[7,8,["H3588"]],[8,11,["H7227"]],[11,13,["H3898"]],[13,19,["H4791"]]]},{"k":14758,"v":[[0,2,["H3117"]],[2,5,["H3372"]],[5,6,["H589"]],[6,8,["H982"]],[8,9,["H413"]],[9,10,[]]]},{"k":14759,"v":[[0,2,["H430"]],[2,5,["H1984"]],[5,7,["H1697"]],[7,9,["H430"]],[9,14,["H982"]],[14,17,["H3808"]],[17,18,["H3372"]],[18,19,["H4100"]],[19,20,["H1320"]],[20,22,["H6213"]],[22,24,[]]]},{"k":14760,"v":[[0,1,["H3605"]],[1,2,["H3117"]],[2,4,["H6087"]],[4,6,["H1697"]],[6,7,["H3605"]],[7,9,["H4284"]],[9,11,["H5921"]],[11,14,["H7451"]]]},{"k":14761,"v":[[0,4,["H1481"]],[4,6,["H6845"]],[6,8,["H1992"]],[8,9,["H8104"]],[9,11,["H6119"]],[11,12,["H834"]],[12,15,["H6960"]],[15,17,["H5315"]]]},{"k":14762,"v":[[0,2,["H3926"]],[2,3,["H6403"]],[3,4,["H5921"]],[4,5,["H205"]],[5,8,["H639"]],[8,10,["H3381"]],[10,12,["H5971"]],[12,14,["H430"]]]},{"k":14763,"v":[[0,2,["H5608"]],[2,4,["H5112"]],[4,5,["H7760"]],[5,6,["H859"]],[6,8,["H1832"]],[8,11,["H4997"]],[11,14,["H3808"]],[14,17,["H5612"]]]},{"k":14764,"v":[[0,1,["H3117"]],[1,3,["H7121"]],[3,6,["H227"]],[6,9,["H341"]],[9,10,["H7725"]],[10,11,["H268"]],[11,12,["H2088"]],[12,14,["H3045"]],[14,15,["H3588"]],[15,16,["H430"]],[16,19,[]]]},{"k":14765,"v":[[0,2,["H430"]],[2,5,["H1984"]],[5,7,["H1697"]],[7,10,["H3068"]],[10,13,["H1984"]],[13,15,["H1697"]]]},{"k":14766,"v":[[0,2,["H430"]],[2,7,["H982"]],[7,10,["H3808"]],[10,12,["H3372"]],[12,13,["H4100"]],[13,14,["H120"]],[14,16,["H6213"]],[16,18,[]]]},{"k":14767,"v":[[0,2,["H5088"]],[2,4,["H5921"]],[4,7,["H430"]],[7,10,["H7999"]],[10,11,["H8426"]],[11,13,[]]]},{"k":14768,"v":[[0,1,["H3588"]],[1,4,["H5337"]],[4,6,["H5315"]],[6,8,["H4480","H4194"]],[8,10,["H3808"]],[10,14,["H7272"]],[14,16,["H4480","H1762"]],[16,20,["H1980"]],[20,21,["H6440"]],[21,22,["H430"]],[22,25,["H216"]],[25,28,["H2416"]]]},{"k":14769,"v":[[0,2,["H2603"]],[2,6,["H430"]],[6,8,["H2603"]],[8,11,["H3588"]],[11,13,["H5315"]],[13,14,["H2620"]],[14,20,["H6738"]],[20,23,["H3671"]],[23,28,["H2620"]],[28,29,["H5704"]],[29,31,["H1942"]],[31,33,["H5674"]]]},{"k":14770,"v":[[0,3,["H7121"]],[3,5,["H430"]],[5,7,["H5945"]],[7,9,["H410"]],[9,11,["H1584"]],[11,14,["H5921"]],[14,15,[]]]},{"k":14771,"v":[[0,3,["H7971"]],[3,5,["H4480","H8064"]],[5,7,["H3467"]],[7,11,["H2778"]],[11,18,["H7602"]],[18,19,["H5542"]],[19,20,["H430"]],[20,23,["H7971"]],[23,25,["H2617"]],[25,28,["H571"]]]},{"k":14772,"v":[[0,2,["H5315"]],[2,4,["H8432"]],[4,5,["H3833"]],[5,8,["H7901"]],[8,16,["H3857"]],[16,19,["H1121"]],[19,21,["H120"]],[21,23,["H8127"]],[23,25,["H2595"]],[25,27,["H2671"]],[27,30,["H3956"]],[30,32,["H2299"]],[32,33,["H2719"]]]},{"k":14773,"v":[[0,3,["H7311"]],[3,5,["H430"]],[5,6,["H5921"]],[6,8,["H8064"]],[8,11,["H3519"]],[11,13,["H5921"]],[13,14,["H3605"]],[14,16,["H776"]]]},{"k":14774,"v":[[0,3,["H3559"]],[3,5,["H7568"]],[5,8,["H6471"]],[8,10,["H5315"]],[10,13,["H3721"]],[13,16,["H3738"]],[16,18,["H7882"]],[18,19,["H6440"]],[19,23,["H8432"]],[23,27,["H5307"]],[27,29,["H5542"]]]},{"k":14775,"v":[[0,2,["H3820"]],[2,4,["H3559"]],[4,6,["H430"]],[6,8,["H3820"]],[8,10,["H3559"]],[10,13,["H7891"]],[13,16,["H2167"]]]},{"k":14776,"v":[[0,2,["H5782"]],[2,4,["H3519"]],[4,5,["H5782"]],[5,6,["H5035"]],[6,8,["H3658"]],[8,12,["H5782"]],[12,13,["H7837"]]]},{"k":14777,"v":[[0,3,["H3034"]],[3,6,["H136"]],[6,9,["H5971"]],[9,12,["H2167"]],[12,17,["H3816"]]]},{"k":14778,"v":[[0,1,["H3588"]],[1,3,["H2617"]],[3,5,["H1419"]],[5,6,["H5704"]],[6,8,["H8064"]],[8,11,["H571"]],[11,12,["H5704"]],[12,14,["H7834"]]]},{"k":14779,"v":[[0,3,["H7311"]],[3,5,["H430"]],[5,6,["H5921"]],[6,8,["H8064"]],[8,11,["H3519"]],[11,13,["H5921"]],[13,14,["H3605"]],[14,16,["H776"]]]},{"k":14780,"v":[[0,3,["H552"]],[3,4,["H1696"]],[4,5,["H6664"]],[5,7,["H482"]],[7,10,["H8199"]],[10,11,["H4339"]],[11,14,["H1121"]],[14,16,["H120"]]]},{"k":14781,"v":[[0,1,["H637"]],[1,3,["H3820"]],[3,5,["H6466"]],[5,6,["H5766"]],[6,8,["H6424"]],[8,10,["H2555"]],[10,13,["H3027"]],[13,16,["H776"]]]},{"k":14782,"v":[[0,2,["H7563"]],[2,4,["H2114"]],[4,7,["H4480","H7358"]],[7,10,["H8582"]],[10,16,["H4480","H990"]],[16,17,["H1696"]],[17,18,["H3577"]]]},{"k":14783,"v":[[0,2,["H2534"]],[2,4,["H1823"]],[4,6,["H2534"]],[6,9,["H5175"]],[9,12,["H3644"]],[12,14,["H2795"]],[14,15,["H6620"]],[15,17,["H331"]],[17,19,["H241"]]]},{"k":14784,"v":[[0,1,["H834"]],[1,3,["H3808"]],[3,4,["H8085"]],[4,7,["H6963"]],[7,9,["H3907"]],[9,10,["H2266","H2267"]],[10,13,["H2449"]]]},{"k":14785,"v":[[0,1,["H2040"]],[1,3,["H8127"]],[3,5,["H430"]],[5,8,["H6310"]],[8,10,["H5422"]],[10,13,["H4459"]],[13,17,["H3715"]],[17,19,["H3068"]]]},{"k":14786,"v":[[0,4,["H3988"]],[4,5,["H3644"]],[5,6,["H4325"]],[6,8,["H1980"]],[8,12,["H1869"]],[12,18,["H2671"]],[18,22,["H3644"]],[22,25,["H4135"]]]},{"k":14787,"v":[[0,1,["H3644"]],[1,3,["H7642"]],[3,5,["H8557"]],[5,12,["H1980"]],[12,16,["H5309"]],[16,19,["H802"]],[19,23,["H1077"]],[23,24,["H2372"]],[24,26,["H8121"]]]},{"k":14788,"v":[[0,1,["H2962"]],[1,3,["H5518"]],[3,5,["H995"]],[5,7,["H329"]],[7,16,["H8175"]],[16,17,["H3644"]],[17,18,["H2416"]],[18,20,["H3644"]],[20,22,["H2740"]]]},{"k":14789,"v":[[0,2,["H6662"]],[2,4,["H8055"]],[4,5,["H3588"]],[5,7,["H2372"]],[7,9,["H5359"]],[9,12,["H7364"]],[12,14,["H6471"]],[14,17,["H1818"]],[17,20,["H7563"]]]},{"k":14790,"v":[[0,4,["H120"]],[4,6,["H559"]],[6,7,["H389"]],[7,11,["H6529"]],[11,14,["H6662"]],[14,15,["H389"]],[15,17,["H3426"]],[17,19,["H430"]],[19,21,["H8199"]],[21,24,["H776"]]]},{"k":14791,"v":[[0,1,["H5337"]],[1,5,["H4480","H341"]],[5,8,["H430"]],[8,9,["H7682"]],[9,16,["H4480","H6965"]],[16,17,[]]]},{"k":14792,"v":[[0,1,["H5337"]],[1,5,["H4480","H6466"]],[5,7,["H205"]],[7,9,["H3467"]],[9,12,["H1818"]],[12,13,["H4480","H376"]]]},{"k":14793,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,6,["H693"]],[6,9,["H5315"]],[9,11,["H5794"]],[11,13,["H1481"]],[13,14,["H5921"]],[14,16,["H3808"]],[16,19,["H6588"]],[19,20,["H3808"]],[20,23,["H2403"]],[23,25,["H3068"]]]},{"k":14794,"v":[[0,2,["H7323"]],[2,5,["H3559"]],[5,6,["H1097"]],[6,8,["H5771"]],[8,9,["H5782"]],[9,11,["H7125"]],[11,14,["H7200"]]]},{"k":14795,"v":[[0,1,["H859"]],[1,4,["H3068"]],[4,5,["H430"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,12,["H6974"]],[12,14,["H6485"]],[14,15,["H3605"]],[15,17,["H1471"]],[17,19,["H408"]],[19,20,["H2603"]],[20,22,["H3605"]],[22,23,["H205"]],[23,24,["H898"]],[24,25,["H5542"]]]},{"k":14796,"v":[[0,2,["H7725"]],[2,4,["H6153"]],[4,8,["H1993"]],[8,11,["H3611"]],[11,15,["H5437"]],[15,17,["H5892"]]]},{"k":14797,"v":[[0,1,["H2009"]],[1,4,["H5042"]],[4,7,["H6310"]],[7,8,["H2719"]],[8,12,["H8193"]],[12,13,["H3588"]],[13,14,["H4310"]],[14,18,["H8085"]]]},{"k":14798,"v":[[0,2,["H859"]],[2,4,["H3068"]],[4,6,["H7832"]],[6,12,["H3605"]],[12,14,["H1471"]],[14,16,["H3932"]]]},{"k":14799,"v":[[0,4,["H5797"]],[4,7,["H8104"]],[7,8,["H413"]],[8,10,["H3588"]],[10,11,["H430"]],[11,14,["H4869"]]]},{"k":14800,"v":[[0,2,["H430"]],[2,5,["H2617"]],[5,7,["H6923"]],[7,9,["H430"]],[9,13,["H7200"]],[13,18,["H8324"]]]},{"k":14801,"v":[[0,1,["H2026"]],[1,3,["H408"]],[3,4,["H6435"]],[4,6,["H5971"]],[6,7,["H7911"]],[7,8,["H5128"]],[8,12,["H2428"]],[12,16,["H3381"]],[16,18,["H136"]],[18,20,["H4043"]]]},{"k":14802,"v":[[0,3,["H2403"]],[3,6,["H6310"]],[6,9,["H1697"]],[9,12,["H8193"]],[12,17,["H3920"]],[17,20,["H1347"]],[20,23,["H4480","H423"]],[23,25,["H4480","H3585"]],[25,28,["H5608"]]]},{"k":14803,"v":[[0,1,["H3615"]],[1,4,["H2534"]],[4,5,["H3615"]],[5,10,["H369"]],[10,15,["H3045"]],[15,16,["H3588"]],[16,17,["H430"]],[17,18,["H4910"]],[18,20,["H3290"]],[20,23,["H657"]],[23,26,["H776"]],[26,27,["H5542"]]]},{"k":14804,"v":[[0,3,["H6153"]],[3,6,["H7725"]],[6,12,["H1993"]],[12,15,["H3611"]],[15,19,["H5437"]],[19,21,["H5892"]]]},{"k":14805,"v":[[0,2,["H1992"]],[2,6,["H5128"]],[6,8,["H398"]],[8,10,["H3885"]],[10,11,["H518"]],[11,14,["H3808"]],[14,15,["H7646"]]]},{"k":14806,"v":[[0,2,["H589"]],[2,4,["H7891"]],[4,7,["H5797"]],[7,12,["H7442"]],[12,15,["H2617"]],[15,18,["H1242"]],[18,19,["H3588"]],[19,22,["H1961"]],[22,24,["H4869"]],[24,26,["H4498"]],[26,29,["H3117"]],[29,32,["H6862"]]]},{"k":14807,"v":[[0,1,["H413"]],[1,5,["H5797"]],[5,8,["H2167"]],[8,9,["H3588"]],[9,10,["H430"]],[10,13,["H4869"]],[13,16,["H430"]],[16,19,["H2617"]]]},{"k":14808,"v":[[0,2,["H430"]],[2,7,["H2186"]],[7,10,["H6555"]],[10,15,["H599"]],[15,17,["H7725"]],[17,21,[]]]},{"k":14809,"v":[[0,5,["H776"]],[5,7,["H7493"]],[7,10,["H6480"]],[10,12,["H7495"]],[12,14,["H7667"]],[14,16,["H3588"]],[16,18,["H4131"]]]},{"k":14810,"v":[[0,3,["H7200"]],[3,5,["H5971"]],[5,6,["H7186"]],[6,13,["H8248"]],[13,15,["H3196"]],[15,17,["H8653"]]]},{"k":14811,"v":[[0,3,["H5414"]],[3,5,["H5251"]],[5,9,["H3373"]],[9,15,["H5127"]],[15,16,["H4480","H6440"]],[16,19,["H7189"]],[19,20,["H5542"]]]},{"k":14812,"v":[[0,1,["H4616"]],[1,3,["H3039"]],[3,6,["H2502"]],[6,7,["H3467"]],[7,11,["H3225"]],[11,13,["H6030"]],[13,14,[]]]},{"k":14813,"v":[[0,1,["H430"]],[1,3,["H1696"]],[3,6,["H6944"]],[6,9,["H5937"]],[9,12,["H2505"]],[12,13,["H7927"]],[13,16,["H4058"]],[16,18,["H6010"]],[18,20,["H5523"]]]},{"k":14814,"v":[[0,1,["H1568"]],[1,5,["H4519"]],[5,8,["H669"]],[8,12,["H4581"]],[12,15,["H7218"]],[15,16,["H3063"]],[16,19,["H2710"]]]},{"k":14815,"v":[[0,1,["H4124"]],[1,4,["H5518","H7366"]],[4,5,["H5921"]],[5,6,["H123"]],[6,10,["H7993"]],[10,12,["H5275"]],[12,13,["H6429"]],[13,14,["H7321"]],[14,16,["H5921"]],[16,18,[]]]},{"k":14816,"v":[[0,1,["H4310"]],[1,3,["H2986"]],[3,7,["H4692"]],[7,8,["H5892"]],[8,9,["H4310"]],[9,11,["H5148"]],[11,13,["H5704"]],[13,14,["H123"]]]},{"k":14817,"v":[[0,2,["H3808"]],[2,3,["H859"]],[3,5,["H430"]],[5,10,["H2186"]],[10,14,["H430"]],[14,17,["H3808"]],[17,19,["H3318"]],[19,22,["H6635"]]]},{"k":14818,"v":[[0,1,["H3051"]],[1,3,["H5833"]],[3,5,["H4480","H6862"]],[5,7,["H7723"]],[7,10,["H8668"]],[10,12,["H120"]]]},{"k":14819,"v":[[0,2,["H430"]],[2,5,["H6213"]],[5,6,["H2428"]],[6,8,["H1931"]],[8,14,["H947"]],[14,16,["H6862"]]]},{"k":14820,"v":[[0,1,["H8085"]],[1,3,["H7440"]],[3,5,["H430"]],[5,7,["H7181"]],[7,9,["H8605"]]]},{"k":14821,"v":[[0,3,["H4480","H7097"]],[3,6,["H776"]],[6,9,["H7121"]],[9,10,["H413"]],[10,14,["H3820"]],[14,16,["H5848"]],[16,17,["H5148"]],[17,21,["H6697"]],[21,24,["H7311"]],[24,25,["H4480"]],[25,26,[]]]},{"k":14822,"v":[[0,1,["H3588"]],[1,4,["H1961"]],[4,6,["H4268"]],[6,11,["H5797"]],[11,12,["H4026"]],[12,13,["H4480","H6440"]],[13,15,["H341"]]]},{"k":14823,"v":[[0,3,["H1481"]],[3,6,["H168"]],[6,8,["H5769"]],[8,11,["H2620"]],[11,14,["H5643"]],[14,17,["H3671"]],[17,18,["H5542"]]]},{"k":14824,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H430"]],[4,6,["H8085"]],[6,8,["H5088"]],[8,11,["H5414"]],[11,14,["H3425"]],[14,18,["H3373"]],[18,20,["H8034"]]]},{"k":14825,"v":[[0,3,["H3254"]],[3,5,["H4428"]],[5,6,["H3117","H5921","H3117"]],[6,9,["H8141"]],[9,10,["H3644"]],[10,12,["H1755","H1755"]]]},{"k":14826,"v":[[0,3,["H3427"]],[3,4,["H6440"]],[4,5,["H430"]],[5,7,["H5769"]],[7,9,["H4487"]],[9,10,["H2617"]],[10,12,["H571"]],[12,15,["H5341"]],[15,16,[]]]},{"k":14827,"v":[[0,1,["H3651"]],[1,5,["H2167"]],[5,8,["H8034"]],[8,10,["H5703"]],[10,14,["H3117","H3117"]],[14,15,["H7999"]],[15,17,["H5088"]]]},{"k":14828,"v":[[0,1,["H389"]],[1,3,["H5315"]],[3,4,["H1747"]],[4,5,["H413"]],[5,6,["H430"]],[6,7,["H4480"]],[7,11,["H3444"]]]},{"k":14829,"v":[[0,1,["H1931"]],[1,2,["H389"]],[2,5,["H6697"]],[5,8,["H3444"]],[8,12,["H4869"]],[12,15,["H3808"]],[15,17,["H7227"]],[17,18,["H4131"]]]},{"k":14830,"v":[[0,2,["H5704","H575"]],[2,6,["H2050"]],[6,7,["H5921"]],[7,9,["H376"]],[9,13,["H7523"]],[13,14,["H3605"]],[14,19,["H5186"]],[19,20,["H7023"]],[20,27,["H1760"]],[27,28,["H1447"]]]},{"k":14831,"v":[[0,2,["H389"]],[2,3,["H3289"]],[3,7,["H5080"]],[7,10,["H4480","H7613"]],[10,12,["H7521"]],[12,14,["H3577"]],[14,16,["H1288"]],[16,19,["H6310"]],[19,22,["H7043"]],[22,23,["H7130"]],[23,24,["H5542"]]]},{"k":14832,"v":[[0,2,["H5315"]],[2,3,["H1826"]],[3,5,["H389"]],[5,7,["H430"]],[7,8,["H3588"]],[8,10,["H8615"]],[10,12,["H4480"]],[12,13,[]]]},{"k":14833,"v":[[0,1,["H1931"]],[1,2,["H389"]],[2,5,["H6697"]],[5,8,["H3444"]],[8,12,["H4869"]],[12,15,["H3808"]],[15,17,["H4131"]]]},{"k":14834,"v":[[0,1,["H5921"]],[1,2,["H430"]],[2,5,["H3468"]],[5,8,["H3519"]],[8,10,["H6697"]],[10,13,["H5797"]],[13,16,["H4268"]],[16,19,["H430"]]]},{"k":14835,"v":[[0,1,["H982"]],[1,5,["H3605"]],[5,6,["H6256"]],[6,8,["H5971"]],[8,10,["H8210"]],[10,12,["H3824"]],[12,13,["H6440"]],[13,15,["H430"]],[15,18,["H4268"]],[18,21,["H5542"]]]},{"k":14836,"v":[[0,1,["H389"]],[1,5,["H1121","H120"]],[5,7,["H1892"]],[7,12,["H1121","H376"]],[12,15,["H3577"]],[15,18,["H5927"]],[18,21,["H3976"]],[21,22,["H1992"]],[22,24,["H3162"]],[24,27,["H4480","H1892"]]]},{"k":14837,"v":[[0,1,["H982"]],[1,2,["H408"]],[2,4,["H6233"]],[4,8,["H1891","H408"]],[8,10,["H1498"]],[10,11,["H3588"]],[11,12,["H2428"]],[12,13,["H5107"]],[13,14,["H7896"]],[14,15,["H408"]],[15,17,["H3820"]],[17,19,[]]]},{"k":14838,"v":[[0,1,["H430"]],[1,3,["H1696"]],[3,4,["H259"]],[4,5,["H8147"]],[5,8,["H8085"]],[8,9,["H2098"]],[9,10,["H3588"]],[10,11,["H5797"]],[11,14,["H430"]]]},{"k":14839,"v":[[0,5,["H136"]],[5,7,["H2617"]],[7,8,["H3588"]],[8,9,["H859"]],[9,10,["H7999"]],[10,13,["H376"]],[13,17,["H4639"]]]},{"k":14840,"v":[[0,2,["H430"]],[2,3,["H859"]],[3,6,["H410"]],[6,10,["H7836"]],[10,13,["H5315"]],[13,14,["H6770"]],[14,18,["H1320"]],[18,19,["H3642"]],[19,24,["H6723"]],[24,26,["H5889"]],[26,27,["H776"]],[27,29,["H1097"]],[29,30,["H4325"]],[30,31,[]]]},{"k":14841,"v":[[0,2,["H7200"]],[2,4,["H5797"]],[4,7,["H3519"]],[7,8,["H3651"]],[8,12,["H2372"]],[12,16,["H6944"]]]},{"k":14842,"v":[[0,1,["H3588"]],[1,3,["H2617"]],[3,5,["H2896"]],[5,7,["H4480","H2416"]],[7,9,["H8193"]],[9,11,["H7623"]],[11,12,[]]]},{"k":14843,"v":[[0,1,["H3651"]],[1,4,["H1288"]],[4,8,["H2416"]],[8,12,["H5375"]],[12,14,["H3709"]],[14,17,["H8034"]]]},{"k":14844,"v":[[0,2,["H5315"]],[2,5,["H7646"]],[5,6,["H3644"]],[6,8,["H2459"]],[8,10,["H1880"]],[10,13,["H6310"]],[13,15,["H1984"]],[15,18,["H7445"]],[18,19,["H8193"]]]},{"k":14845,"v":[[0,1,["H518"]],[1,3,["H2142"]],[3,5,["H5921"]],[5,7,["H3326"]],[7,9,["H1897"]],[9,15,["H821"]]]},{"k":14846,"v":[[0,1,["H3588"]],[1,4,["H1961"]],[4,6,["H5833"]],[6,10,["H6738"]],[10,13,["H3671"]],[13,16,["H7442"]]]},{"k":14847,"v":[[0,2,["H5315"]],[2,4,["H1692"]],[4,5,["H310"]],[5,9,["H3225"]],[9,10,["H8551"]],[10,11,[]]]},{"k":14848,"v":[[0,2,["H1992"]],[2,4,["H1245"]],[4,6,["H5315"]],[6,8,["H7722"]],[8,11,["H935"]],[11,15,["H8482"]],[15,18,["H776"]]]},{"k":14849,"v":[[0,3,["H5064"]],[3,4,["H5921","H3027"]],[4,6,["H2719"]],[6,9,["H1961"]],[9,11,["H4521"]],[11,13,["H7776"]]]},{"k":14850,"v":[[0,3,["H4428"]],[3,5,["H8055"]],[5,7,["H430"]],[7,9,["H3605"]],[9,11,["H7650"]],[11,15,["H1984"]],[15,16,["H3588"]],[16,18,["H6310"]],[18,22,["H1696"]],[22,23,["H8267"]],[23,26,["H5534"]]]},{"k":14851,"v":[[0,1,["H8085"]],[1,3,["H6963"]],[3,5,["H430"]],[5,8,["H7879"]],[8,9,["H5341"]],[9,11,["H2416"]],[11,13,["H4480","H6343"]],[13,16,["H341"]]]},{"k":14852,"v":[[0,1,["H5641"]],[1,6,["H4480","H5475"]],[6,9,["H7489"]],[9,12,["H4480","H7285"]],[12,15,["H6466"]],[15,17,["H205"]]]},{"k":14853,"v":[[0,1,["H834"]],[1,2,["H8150"]],[2,4,["H3956"]],[4,7,["H2719"]],[7,9,["H1869"]],[9,15,["H2671"]],[15,17,["H4751"]],[17,18,["H1697"]]]},{"k":14854,"v":[[0,4,["H3384"]],[4,6,["H4565"]],[6,9,["H8535"]],[9,10,["H6597"]],[10,13,["H3384"]],[13,17,["H3372"]],[17,18,["H3808"]]]},{"k":14855,"v":[[0,2,["H2388"]],[2,6,["H7451"]],[6,7,["H1697"]],[7,9,["H5608"]],[9,13,["H2934","H4170"]],[13,15,["H559"]],[15,16,["H4310"]],[16,18,["H7200"]],[18,19,[]]]},{"k":14856,"v":[[0,3,["H2664"]],[3,4,["H5766"]],[4,6,["H8552"]],[6,9,["H2665","H2664"]],[9,12,["H7130"]],[12,16,["H376"]],[16,21,["H3820"]],[21,23,["H6013"]]]},{"k":14857,"v":[[0,2,["H430"]],[2,4,["H3384"]],[4,9,["H2671"]],[9,10,["H6597"]],[10,13,["H1961"]],[13,14,["H4347"]]]},{"k":14858,"v":[[0,7,["H3956"]],[7,9,["H3782"]],[9,10,["H5921"]],[10,12,["H3605"]],[12,14,["H7200"]],[14,18,["H5074"]]]},{"k":14859,"v":[[0,2,["H3605"]],[2,3,["H120"]],[3,5,["H3372"]],[5,8,["H5046"]],[8,10,["H6467"]],[10,12,["H430"]],[12,17,["H7919"]],[17,20,["H4639"]]]},{"k":14860,"v":[[0,2,["H6662"]],[2,5,["H8055"]],[5,8,["H3068"]],[8,11,["H2620"]],[11,15,["H3605"]],[15,17,["H3477"]],[17,19,["H3820"]],[19,21,["H1984"]]]},{"k":14861,"v":[[0,1,["H8416"]],[1,2,["H1747"]],[2,6,["H430"]],[6,8,["H6726"]],[8,14,["H5088"]],[14,16,["H7999"]]]},{"k":14862,"v":[[0,4,["H8085"]],[4,5,["H8605"]],[5,6,["H5704"]],[6,9,["H3605"]],[9,10,["H1320"]],[10,11,["H935"]]]},{"k":14863,"v":[[0,1,["H1697","H5771"]],[1,2,["H1396"]],[2,3,["H4480"]],[3,8,["H6588"]],[8,9,["H859"]],[9,13,["H3722"]]]},{"k":14864,"v":[[0,1,["H835"]],[1,7,["H977"]],[7,11,["H7126"]],[11,17,["H7931"]],[17,20,["H2691"]],[20,24,["H7646"]],[24,27,["H2898"]],[27,30,["H1004"]],[30,34,["H6918"]],[34,35,["H1964"]]]},{"k":14865,"v":[[0,3,["H3372"]],[3,5,["H6664"]],[5,8,["H6030"]],[8,11,["H430"]],[11,14,["H3468"]],[14,18,["H4009"]],[18,20,["H3605"]],[20,22,["H7099"]],[22,25,["H776"]],[25,32,["H7350"]],[32,35,["H3220"]]]},{"k":14866,"v":[[0,4,["H3581"]],[4,6,["H3559"]],[6,8,["H2022"]],[8,10,["H247"]],[10,12,["H1369"]]]},{"k":14867,"v":[[0,2,["H7623"]],[2,4,["H7588"]],[4,7,["H3220"]],[7,9,["H7588"]],[9,12,["H1530"]],[12,15,["H1995"]],[15,18,["H3816"]]]},{"k":14868,"v":[[0,4,["H3427"]],[4,8,["H7098"]],[8,10,["H3372"]],[10,13,["H4480","H226"]],[13,17,["H4161"]],[17,20,["H1242"]],[20,22,["H6153"]],[22,24,["H7442"]]]},{"k":14869,"v":[[0,2,["H6485"]],[2,4,["H776"]],[4,6,["H7783"]],[6,9,["H7227"]],[9,10,["H6238"]],[10,14,["H6388"]],[14,16,["H430"]],[16,19,["H4390"]],[19,21,["H4325"]],[21,23,["H3559"]],[23,25,["H1715"]],[25,26,["H3588"]],[26,29,["H3651"]],[29,30,["H3559"]],[30,32,[]]]},{"k":14870,"v":[[0,4,["H8525"]],[4,6,["H7301"]],[6,8,["H5181"]],[8,10,["H1417"]],[10,15,["H4127"]],[15,17,["H7241"]],[17,19,["H1288"]],[19,21,["H6780"]],[21,22,[]]]},{"k":14871,"v":[[0,2,["H5849"]],[2,4,["H8141"]],[4,7,["H2896"]],[7,10,["H4570"]],[10,11,["H7491"]],[11,12,["H1880"]]]},{"k":14872,"v":[[0,2,["H7491"]],[2,5,["H4999"]],[5,8,["H4057"]],[8,12,["H1389"]],[12,13,["H1524"]],[13,16,["H2296"]]]},{"k":14873,"v":[[0,2,["H3733"]],[2,4,["H3847"]],[4,6,["H6629"]],[6,8,["H6010"]],[8,12,["H5848"]],[12,14,["H1250"]],[14,18,["H7321"]],[18,20,["H637"]],[20,21,["H7891"]]]},{"k":14874,"v":[[0,4,["H7321"]],[4,6,["H430"]],[6,7,["H3605"]],[7,9,["H776"]]]},{"k":14875,"v":[[0,2,["H2167"]],[2,4,["H3519"]],[4,7,["H8034"]],[7,8,["H7760"]],[8,10,["H8416"]],[10,11,["H3519"]]]},{"k":14876,"v":[[0,1,["H559"]],[1,3,["H430"]],[3,4,["H4100"]],[4,5,["H3372"]],[5,10,["H4639"]],[10,13,["H7230"]],[13,16,["H5797"]],[16,19,["H341"]],[19,20,["H3584"]],[20,23,[]]]},{"k":14877,"v":[[0,1,["H3605"]],[1,3,["H776"]],[3,5,["H7812"]],[5,9,["H2167"]],[9,14,["H2167"]],[14,17,["H8034"]],[17,18,["H5542"]]]},{"k":14878,"v":[[0,1,["H1980"]],[1,3,["H7200"]],[3,5,["H4659"]],[5,7,["H430"]],[7,10,["H3372"]],[10,13,["H5949"]],[13,14,["H5921"]],[14,16,["H1121"]],[16,18,["H120"]]]},{"k":14879,"v":[[0,2,["H2015"]],[2,4,["H3220"]],[4,6,["H3004"]],[6,9,["H5674"]],[9,12,["H5104"]],[12,14,["H7272"]],[14,15,["H8033"]],[15,18,["H8055"]],[18,20,[]]]},{"k":14880,"v":[[0,2,["H4910"]],[2,5,["H1369"]],[5,7,["H5769"]],[7,9,["H5869"]],[9,10,["H6822"]],[10,12,["H1471"]],[12,14,["H408"]],[14,16,["H5637"]],[16,17,["H7311"]],[17,19,["H5542"]]]},{"k":14881,"v":[[0,2,["H1288"]],[2,4,["H430"]],[4,6,["H5971"]],[6,10,["H6963"]],[10,13,["H8416"]],[13,16,["H8085"]]]},{"k":14882,"v":[[0,2,["H7760"]],[2,4,["H5315"]],[4,6,["H2416"]],[6,8,["H5414"]],[8,9,["H3808"]],[9,11,["H7272"]],[11,14,["H4132"]]]},{"k":14883,"v":[[0,1,["H3588"]],[1,4,["H430"]],[4,6,["H974"]],[6,10,["H6884"]],[10,13,["H3701"]],[13,15,["H6884"]]]},{"k":14884,"v":[[0,2,["H935"]],[2,6,["H4686"]],[6,8,["H7760"]],[8,9,["H4157"]],[9,12,["H4975"]]]},{"k":14885,"v":[[0,4,["H582"]],[4,6,["H7392"]],[6,9,["H7218"]],[9,11,["H935"]],[11,13,["H784"]],[13,16,["H4325"]],[16,21,["H3318"]],[21,24,["H7310"]],[24,25,[]]]},{"k":14886,"v":[[0,3,["H935"]],[3,6,["H1004"]],[6,9,["H5930"]],[9,12,["H7999"]],[12,15,["H5088"]]]},{"k":14887,"v":[[0,1,["H834"]],[1,3,["H8193"]],[3,5,["H6475"]],[5,8,["H6310"]],[8,10,["H1696"]],[10,15,["H6862"]]]},{"k":14888,"v":[[0,3,["H5927"]],[3,7,["H5930"]],[7,9,["H4220"]],[9,10,["H5973"]],[10,12,["H7004"]],[12,14,["H352"]],[14,17,["H6213"]],[17,18,["H1241"]],[18,19,["H5973"]],[19,20,["H6260"]],[20,21,["H5542"]]]},{"k":14889,"v":[[0,1,["H1980"]],[1,3,["H8085"]],[3,4,["H3605"]],[4,7,["H3373"]],[7,8,["H430"]],[8,12,["H5608"]],[12,13,["H834"]],[13,16,["H6213"]],[16,19,["H5315"]]]},{"k":14890,"v":[[0,2,["H7121"]],[2,3,["H413"]],[3,7,["H6310"]],[7,11,["H7318"]],[11,12,["H8478"]],[12,14,["H3956"]]]},{"k":14891,"v":[[0,1,["H518"]],[1,3,["H7200"]],[3,4,["H205"]],[4,7,["H3820"]],[7,9,["H136"]],[9,11,["H3808"]],[11,12,["H8085"]],[12,13,[]]]},{"k":14892,"v":[[0,2,["H403"]],[2,3,["H430"]],[3,5,["H8085"]],[5,9,["H7181"]],[9,12,["H6963"]],[12,15,["H8605"]]]},{"k":14893,"v":[[0,1,["H1288"]],[1,3,["H430"]],[3,4,["H834"]],[4,6,["H3808"]],[6,8,["H5493"]],[8,10,["H8605"]],[10,13,["H2617"]],[13,14,["H4480","H854"]],[14,15,[]]]},{"k":14894,"v":[[0,1,["H430"]],[1,3,["H2603"]],[3,7,["H1288"]],[7,12,["H6440"]],[12,14,["H215"]],[14,15,["H854"]],[15,17,["H5542"]]]},{"k":14895,"v":[[0,3,["H1870"]],[3,6,["H3045"]],[6,8,["H776"]],[8,11,["H3444"]],[11,13,["H3605"]],[13,14,["H1471"]]]},{"k":14896,"v":[[0,3,["H5971"]],[3,4,["H3034"]],[4,7,["H430"]],[7,9,["H3605"]],[9,11,["H5971"]],[11,12,["H3034"]],[12,13,[]]]},{"k":14897,"v":[[0,4,["H3816"]],[4,6,["H8055"]],[6,10,["H7442"]],[10,11,["H3588"]],[11,14,["H8199"]],[14,16,["H5971"]],[16,17,["H4334"]],[17,19,["H5148"]],[19,21,["H3816"]],[21,23,["H776"]],[23,24,["H5542"]]]},{"k":14898,"v":[[0,3,["H5971"]],[3,4,["H3034"]],[4,7,["H430"]],[7,9,["H3605"]],[9,11,["H5971"]],[11,12,["H3034"]],[12,13,[]]]},{"k":14899,"v":[[0,4,["H776"]],[4,5,["H5414"]],[5,7,["H2981"]],[7,9,["H430"]],[9,13,["H430"]],[13,15,["H1288"]],[15,16,[]]]},{"k":14900,"v":[[0,1,["H430"]],[1,3,["H1288"]],[3,6,["H3605"]],[6,8,["H657"]],[8,11,["H776"]],[11,13,["H3372"]],[13,14,[]]]},{"k":14901,"v":[[0,2,["H430"]],[2,3,["H6965"]],[3,6,["H341"]],[6,8,["H6327"]],[8,13,["H8130"]],[13,15,["H5127"]],[15,16,["H4480","H6440"]],[16,17,[]]]},{"k":14902,"v":[[0,2,["H6227"]],[2,5,["H5086"]],[5,9,["H5086"]],[9,11,["H1749"]],[11,12,["H4549"]],[12,13,["H4480","H6440"]],[13,15,["H784"]],[15,19,["H7563"]],[19,20,["H6"]],[20,23,["H4480","H6440"]],[23,25,["H430"]]]},{"k":14903,"v":[[0,4,["H6662"]],[4,6,["H8055"]],[6,9,["H5970"]],[9,10,["H6440"]],[10,11,["H430"]],[11,15,["H8057"]],[15,16,["H7797"]]]},{"k":14904,"v":[[0,1,["H7891"]],[1,3,["H430"]],[3,5,["H2167"]],[5,8,["H8034"]],[8,9,["H5549"]],[9,12,["H7392"]],[12,15,["H6160"]],[15,18,["H8034"]],[18,19,["H3050"]],[19,21,["H5937"]],[21,22,["H6440"]],[22,23,[]]]},{"k":14905,"v":[[0,2,["H1"]],[2,5,["H3490"]],[5,8,["H1781"]],[8,11,["H490"]],[11,13,["H430"]],[13,16,["H6944"]],[16,17,["H4583"]]]},{"k":14906,"v":[[0,1,["H430"]],[1,2,["H3427"]],[2,4,["H3173"]],[4,6,["H1004"]],[6,9,["H3318"]],[9,13,["H615"]],[13,15,["H3574"]],[15,16,["H389"]],[16,18,["H5637"]],[18,19,["H7931"]],[19,22,["H6707"]],[22,23,[]]]},{"k":14907,"v":[[0,2,["H430"]],[2,6,["H3318"]],[6,7,["H6440"]],[7,9,["H5971"]],[9,13,["H6805"]],[13,16,["H3452"]],[16,17,["H5542"]]]},{"k":14908,"v":[[0,2,["H776"]],[2,3,["H7493"]],[3,5,["H8064"]],[5,6,["H637"]],[6,7,["H5197"]],[7,10,["H4480","H6440"]],[10,12,["H430"]],[12,14,["H5514"]],[14,15,["H2088"]],[15,20,["H4480","H6440"]],[20,22,["H430"]],[22,24,["H430"]],[24,26,["H3478"]]]},{"k":14909,"v":[[0,3,["H430"]],[3,5,["H5130"]],[5,7,["H5071"]],[7,8,["H1653"]],[8,10,["H859"]],[10,12,["H3559"]],[12,14,["H5159"]],[14,18,["H3811"]]]},{"k":14910,"v":[[0,2,["H2416"]],[2,4,["H3427"]],[4,8,["H430"]],[8,10,["H3559"]],[10,13,["H2896"]],[13,16,["H6041"]]]},{"k":14911,"v":[[0,2,["H136"]],[2,3,["H5414"]],[3,5,["H562"]],[5,6,["H7227"]],[6,9,["H6635"]],[9,13,["H1319"]],[13,14,[]]]},{"k":14912,"v":[[0,1,["H4428"]],[1,3,["H6635"]],[3,6,["H5074","H5074"]],[6,10,["H5116"]],[10,12,["H1004"]],[12,13,["H2505"]],[13,15,["H7998"]]]},{"k":14913,"v":[[0,1,["H518"]],[1,4,["H7901"]],[4,5,["H996"]],[5,7,["H8240"]],[7,14,["H3671"]],[14,17,["H3123"]],[17,18,["H2645"]],[18,20,["H3701"]],[20,23,["H84"]],[23,25,["H3422"]],[25,26,["H2742"]]]},{"k":14914,"v":[[0,3,["H7706"]],[3,4,["H6566"]],[4,5,["H4428"]],[5,12,["H7949"]],[12,14,["H6756"]]]},{"k":14915,"v":[[0,2,["H2022"]],[2,4,["H430"]],[4,8,["H2022"]],[8,10,["H1316"]],[10,12,["H1386"]],[12,13,["H2022"]],[13,16,["H2022"]],[16,18,["H1316"]]]},{"k":14916,"v":[[0,1,["H4100"]],[1,2,["H7520"]],[2,5,["H1386"]],[5,6,["H2022"]],[6,10,["H2022"]],[10,12,["H430"]],[12,13,["H2530"]],[13,15,["H3427"]],[15,17,["H637"]],[17,19,["H3068"]],[19,21,["H7931"]],[21,25,["H5331"]]]},{"k":14917,"v":[[0,2,["H7393"]],[2,4,["H430"]],[4,7,["H7239"]],[7,9,["H505"]],[9,11,["H8136"]],[11,13,["H136"]],[13,19,["H5514"]],[19,22,["H6944"]],[22,23,[]]]},{"k":14918,"v":[[0,3,["H5927"]],[3,5,["H4791"]],[5,10,["H7617","H7628"]],[10,13,["H3947"]],[13,14,["H4979"]],[14,16,["H120"]],[16,20,["H5637"]],[20,21,["H637"]],[21,24,["H3050"]],[24,25,["H430"]],[25,27,["H7931"]],[27,29,[]]]},{"k":14919,"v":[[0,1,["H1288"]],[1,4,["H136"]],[4,6,["H3117","H3117"]],[6,7,["H6006"]],[7,13,["H410"]],[13,16,["H3444"]],[16,17,["H5542"]]]},{"k":14920,"v":[[0,5,["H410"]],[5,8,["H410"]],[8,10,["H4190"]],[10,13,["H3069"]],[13,15,["H136"]],[15,18,["H8444"]],[18,20,["H4194"]]]},{"k":14921,"v":[[0,1,["H389"]],[1,2,["H430"]],[2,4,["H4272"]],[4,6,["H7218"]],[6,9,["H341"]],[9,12,["H8181"]],[12,13,["H6936"]],[13,21,["H1980"]],[21,24,["H817"]]]},{"k":14922,"v":[[0,2,["H136"]],[2,3,["H559"]],[3,7,["H7725"]],[7,9,["H4480","H1316"]],[9,15,["H7725"]],[15,18,["H4480","H4688"]],[18,21,["H3220"]]]},{"k":14923,"v":[[0,1,["H4616"]],[1,3,["H7272"]],[3,6,["H4272"]],[6,9,["H1818"]],[9,12,["H4480","H341"]],[12,15,["H3956"]],[15,18,["H3611"]],[18,21,["H4482"]]]},{"k":14924,"v":[[0,3,["H7200"]],[3,5,["H1979"]],[5,7,["H430"]],[7,10,["H1979"]],[10,13,["H410"]],[13,15,["H4428"]],[15,18,["H6944"]]]},{"k":14925,"v":[[0,2,["H7891"]],[2,4,["H6923"]],[4,8,["H5059"]],[8,10,["H310"]],[10,11,["H8432"]],[11,15,["H5959"]],[15,18,["H8608"]]]},{"k":14926,"v":[[0,1,["H1288"]],[1,3,["H430"]],[3,6,["H4721"]],[6,9,["H3068"]],[9,12,["H4480","H4726"]],[12,14,["H3478"]]]},{"k":14927,"v":[[0,1,["H8033"]],[1,3,["H6810"]],[3,4,["H1144"]],[4,7,["H7287"]],[7,9,["H8269"]],[9,11,["H3063"]],[11,14,["H7277"]],[14,16,["H8269"]],[16,18,["H2074"]],[18,21,["H8269"]],[21,23,["H5321"]]]},{"k":14928,"v":[[0,2,["H430"]],[2,4,["H6680"]],[4,6,["H5797"]],[6,7,["H5810"]],[7,9,["H430"]],[9,11,["H2098"]],[11,14,["H6466"]],[14,16,[]]]},{"k":14929,"v":[[0,4,["H4480","H1964"]],[4,5,["H5921"]],[5,6,["H3389"]],[6,8,["H4428"]],[8,9,["H2986"]],[9,10,["H7862"]],[10,12,[]]]},{"k":14930,"v":[[0,1,["H1605"]],[1,3,["H2416"]],[3,5,["H7070"]],[5,7,["H5712"]],[7,10,["H47"]],[10,13,["H5695"]],[13,16,["H5971"]],[16,21,["H7511"]],[21,23,["H7518"]],[23,25,["H3701"]],[25,26,["H967"]],[26,29,["H5971"]],[29,31,["H2654"]],[31,33,["H7128"]]]},{"k":14931,"v":[[0,1,["H2831"]],[1,4,["H857"]],[4,5,["H4480"]],[5,6,["H4714"]],[6,7,["H3568"]],[7,11,["H7323"]],[11,13,["H3027"]],[13,15,["H430"]]]},{"k":14932,"v":[[0,1,["H7891"]],[1,3,["H430"]],[3,5,["H4467"]],[5,8,["H776"]],[8,11,["H2167"]],[11,14,["H136"]],[14,15,["H5542"]]]},{"k":14933,"v":[[0,4,["H7392"]],[4,7,["H8064"]],[7,9,["H8064"]],[9,13,["H6924"]],[13,14,["H2005"]],[14,18,["H5414"]],[18,20,["H6963"]],[20,24,["H5797"]],[24,25,["H6963"]]]},{"k":14934,"v":[[0,1,["H5414"]],[1,3,["H5797"]],[3,5,["H430"]],[5,7,["H1346"]],[7,9,["H5921"]],[9,10,["H3478"]],[10,13,["H5797"]],[13,17,["H7834"]]]},{"k":14935,"v":[[0,2,["H430"]],[2,5,["H3372"]],[5,10,["H4480","H4720"]],[10,12,["H410"]],[12,14,["H3478"]],[14,16,["H1931"]],[16,18,["H5414"]],[18,19,["H5797"]],[19,21,["H8592"]],[21,24,["H5971"]],[24,25,["H1288"]],[25,27,["H430"]]]},{"k":14936,"v":[[0,1,["H3467"]],[1,4,["H430"]],[4,5,["H3588"]],[5,7,["H4325"]],[7,10,["H935"]],[10,11,["H5704"]],[11,13,["H5315"]]]},{"k":14937,"v":[[0,2,["H2883"]],[2,4,["H4688"]],[4,5,["H3121"]],[5,9,["H369"]],[9,10,["H4613"]],[10,13,["H935"]],[13,15,["H4615"]],[15,16,["H4325"]],[16,19,["H7641"]],[19,20,["H7857"]],[20,21,[]]]},{"k":14938,"v":[[0,3,["H3021"]],[3,6,["H7121"]],[6,8,["H1627"]],[8,10,["H2787"]],[10,12,["H5869"]],[12,13,["H3615"]],[13,16,["H3176"]],[16,19,["H430"]]]},{"k":14939,"v":[[0,3,["H8130"]],[3,7,["H2600"]],[7,9,["H7231"]],[9,12,["H4480","H8185"]],[12,15,["H7218"]],[15,19,["H6789"]],[19,23,["H341"]],[23,24,["H8267"]],[24,26,["H6105"]],[26,27,["H227"]],[27,29,["H7725"]],[29,31,["H834"]],[31,35,["H3808","H1497"]]]},{"k":14940,"v":[[0,2,["H430"]],[2,3,["H859"]],[3,4,["H3045"]],[4,6,["H200"]],[6,9,["H819"]],[9,11,["H3808"]],[11,12,["H3582"]],[12,13,["H4480"]],[13,14,[]]]},{"k":14941,"v":[[0,2,["H408"]],[2,6,["H6960"]],[6,9,["H136"]],[9,10,["H3069"]],[10,12,["H6635"]],[12,14,["H954"]],[14,19,["H408"]],[19,22,["H1245"]],[22,25,["H3637"]],[25,30,["H430"]],[30,32,["H3478"]]]},{"k":14942,"v":[[0,1,["H3588"]],[1,4,["H5921"]],[4,7,["H5375"]],[7,8,["H2781"]],[8,9,["H3639"]],[9,11,["H3680"]],[11,13,["H6440"]]]},{"k":14943,"v":[[0,3,["H1961"]],[3,5,["H2114"]],[5,8,["H251"]],[8,11,["H5237"]],[11,14,["H517"]],[14,15,["H1121"]]]},{"k":14944,"v":[[0,1,["H3588"]],[1,3,["H7068"]],[3,6,["H1004"]],[6,10,["H398"]],[10,13,["H2781"]],[13,17,["H2778"]],[17,20,["H5307"]],[20,21,["H5921"]],[21,22,[]]]},{"k":14945,"v":[[0,3,["H1058"]],[3,7,["H5315"]],[7,9,["H6685"]],[9,11,["H1961"]],[11,14,["H2781"]]]},{"k":14946,"v":[[0,2,["H5414"]],[2,3,["H8242"]],[3,6,["H3830"]],[6,9,["H1961"]],[9,11,["H4912"]],[11,13,[]]]},{"k":14947,"v":[[0,3,["H3427"]],[3,6,["H8179"]],[6,7,["H7878"]],[7,14,["H5058"]],[14,17,["H8354","H7941"]]]},{"k":14948,"v":[[0,4,["H589"]],[4,6,["H8605"]],[6,11,["H3068"]],[11,14,["H7522"]],[14,15,["H6256"]],[15,17,["H430"]],[17,20,["H7230"]],[20,23,["H2617"]],[23,24,["H6030"]],[24,28,["H571"]],[28,31,["H3468"]]]},{"k":14949,"v":[[0,1,["H5337"]],[1,6,["H4480","H2916"]],[6,10,["H408"]],[10,11,["H2883"]],[11,15,["H5337"]],[15,19,["H4480","H8130"]],[19,25,["H4480","H4615"]],[25,26,["H4325"]]]},{"k":14950,"v":[[0,2,["H408"]],[2,4,["H7641","H4325"]],[4,5,["H7857"]],[5,7,["H408"]],[7,10,["H4688"]],[10,13,["H1104"]],[13,16,["H408"]],[16,18,["H875"]],[18,19,["H332"]],[19,21,["H6310"]],[21,22,["H5921"]],[22,23,[]]]},{"k":14951,"v":[[0,1,["H6030"]],[1,4,["H3068"]],[4,5,["H3588"]],[5,7,["H2617"]],[7,9,["H2896"]],[9,10,["H6437"]],[10,11,["H413"]],[11,16,["H7230"]],[16,20,["H7356"]]]},{"k":14952,"v":[[0,2,["H5641"]],[2,3,["H408"]],[3,5,["H6440"]],[5,8,["H4480","H5650"]],[8,9,["H3588"]],[9,13,["H6862"]],[13,14,["H6030"]],[14,16,["H4116"]]]},{"k":14953,"v":[[0,2,["H7126"]],[2,3,["H413"]],[3,5,["H5315"]],[5,7,["H1350"]],[7,9,["H6299"]],[9,12,["H4616"]],[12,14,["H341"]]]},{"k":14954,"v":[[0,1,["H859"]],[1,3,["H3045"]],[3,5,["H2781"]],[5,8,["H1322"]],[8,11,["H3639"]],[11,13,["H6887"]],[13,15,["H3605"]],[15,16,["H5048"]],[16,17,[]]]},{"k":14955,"v":[[0,1,["H2781"]],[1,3,["H7665"]],[3,5,["H3820"]],[5,11,["H5136"]],[11,14,["H6960"]],[14,19,["H5110"]],[19,23,["H369"]],[23,26,["H5162"]],[26,29,["H4672"]],[29,30,["H3808"]]]},{"k":14956,"v":[[0,2,["H5414"]],[2,5,["H7219"]],[5,8,["H1267"]],[8,12,["H6772"]],[12,16,["H2558"]],[16,18,["H8248"]]]},{"k":14957,"v":[[0,3,["H7979"]],[3,4,["H1961"]],[4,6,["H6341"]],[6,7,["H6440"]],[7,17,["H7965"]],[17,22,["H4170"]]]},{"k":14958,"v":[[0,3,["H5869"]],[3,5,["H2821"]],[5,9,["H4480","H7200"]],[9,13,["H4975"]],[13,14,["H8548"]],[14,16,["H4571"]]]},{"k":14959,"v":[[0,2,["H8210"]],[2,4,["H2195"]],[4,5,["H5921"]],[5,10,["H2740"]],[10,11,["H639"]],[11,13,["H5381"]],[13,15,[]]]},{"k":14960,"v":[[0,3,["H2918"]],[3,4,["H1961"]],[4,5,["H8074"]],[5,7,["H1961"]],[7,8,["H408"]],[8,9,["H3427"]],[9,12,["H168"]]]},{"k":14961,"v":[[0,1,["H3588"]],[1,3,["H7291"]],[3,5,["H834"]],[5,6,["H859"]],[6,8,["H5221"]],[8,11,["H5608"]],[11,12,["H413"]],[12,14,["H4341"]],[14,20,["H2491"]]]},{"k":14962,"v":[[0,1,["H5414"]],[1,2,["H5771"]],[2,3,["H5921"]],[3,5,["H5771"]],[5,9,["H408"]],[9,10,["H935"]],[10,13,["H6666"]]]},{"k":14963,"v":[[0,4,["H4229"]],[4,8,["H4480","H5612"]],[8,11,["H2416"]],[11,13,["H408"]],[13,15,["H3789"]],[15,16,["H5973"]],[16,18,["H6662"]]]},{"k":14964,"v":[[0,2,["H589"]],[2,4,["H6041"]],[4,6,["H3510"]],[6,9,["H3444"]],[9,11,["H430"]],[11,16,["H7682"]]]},{"k":14965,"v":[[0,3,["H1984"]],[3,5,["H8034"]],[5,7,["H430"]],[7,10,["H7892"]],[10,13,["H1431"]],[13,16,["H8426"]]]},{"k":14966,"v":[[0,4,["H3190"]],[4,6,["H3068"]],[6,10,["H4480","H7794"]],[10,12,["H6499"]],[12,15,["H7160"]],[15,17,["H6536"]]]},{"k":14967,"v":[[0,2,["H6035"]],[2,4,["H7200"]],[4,8,["H8055"]],[8,11,["H3824"]],[11,13,["H2421"]],[13,15,["H1875"]],[15,16,["H430"]]]},{"k":14968,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,4,["H8085","H413"]],[4,6,["H34"]],[6,8,["H959"]],[8,9,["H3808"]],[9,11,["H615"]]]},{"k":14969,"v":[[0,3,["H8064"]],[3,5,["H776"]],[5,6,["H1984"]],[6,9,["H3220"]],[9,12,["H3605"]],[12,14,["H7430"]],[14,15,[]]]},{"k":14970,"v":[[0,1,["H3588"]],[1,2,["H430"]],[2,4,["H3467"]],[4,5,["H6726"]],[5,8,["H1129"]],[8,10,["H5892"]],[10,12,["H3063"]],[12,16,["H3427"]],[16,17,["H8033"]],[17,22,["H3423"]]]},{"k":14971,"v":[[0,2,["H2233"]],[2,6,["H5650"]],[6,8,["H5157"]],[8,13,["H157"]],[13,15,["H8034"]],[15,17,["H7931"]],[17,18,[]]]},{"k":14972,"v":[[0,4,["H430"]],[4,6,["H5337"]],[6,9,["H2363"]],[9,11,["H5833"]],[11,14,["H3068"]]]},{"k":14973,"v":[[0,4,["H954"]],[4,6,["H2659"]],[6,9,["H1245"]],[9,11,["H5315"]],[11,15,["H5472"]],[15,16,["H268"]],[16,20,["H3637"]],[20,22,["H2655"]],[22,24,["H7451"]]]},{"k":14974,"v":[[0,5,["H7725"]],[5,6,["H5921"]],[6,8,["H6118"]],[8,11,["H1322"]],[11,13,["H559"]],[13,14,["H1889"]],[14,15,["H1889"]]]},{"k":14975,"v":[[0,2,["H3605"]],[2,5,["H1245"]],[5,7,["H7797"]],[7,10,["H8055"]],[10,17,["H157"]],[17,19,["H3444"]],[19,20,["H559"]],[20,21,["H8548"]],[21,23,["H430"]],[23,25,["H1431"]]]},{"k":14976,"v":[[0,2,["H589"]],[2,4,["H6041"]],[4,6,["H34"]],[6,8,["H2363"]],[8,12,["H430"]],[12,13,["H859"]],[13,16,["H5828"]],[16,19,["H6403"]],[19,21,["H3068"]],[21,23,["H408"]],[23,24,["H309"]]]},{"k":14977,"v":[[0,4,["H3068"]],[4,9,["H2620"]],[9,12,["H408","H5769"]],[12,16,["H954"]]]},{"k":14978,"v":[[0,1,["H5337"]],[1,5,["H6666"]],[5,10,["H6403"]],[10,11,["H5186"]],[11,13,["H241"]],[13,14,["H413"]],[14,17,["H3467"]],[17,18,[]]]},{"k":14979,"v":[[0,1,["H1961"]],[1,4,["H6697"]],[4,5,["H4583"]],[5,9,["H8548"]],[9,10,["H935"]],[10,14,["H6680"]],[14,16,["H3467"]],[16,18,["H3588"]],[18,19,["H859"]],[19,22,["H5553"]],[22,25,["H4686"]]]},{"k":14980,"v":[[0,1,["H6403"]],[1,5,["H430"]],[5,9,["H4480","H3027"]],[9,12,["H7563"]],[12,16,["H4480","H3709"]],[16,19,["H5765"]],[19,21,["H2556"]],[21,22,[]]]},{"k":14981,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,5,["H8615"]],[5,7,["H136"]],[7,8,["H3069"]],[8,12,["H4009"]],[12,15,["H4480","H5271"]]]},{"k":14982,"v":[[0,1,["H5921"]],[1,7,["H5564"]],[7,10,["H4480","H990"]],[10,11,["H859"]],[11,15,["H1491"]],[15,20,["H517"]],[20,21,["H4480","H4578"]],[21,23,["H8416"]],[23,26,["H8548"]],[26,28,[]]]},{"k":14983,"v":[[0,2,["H1961"]],[2,5,["H4159"]],[5,7,["H7227"]],[7,9,["H859"]],[9,12,["H5797"]],[12,13,["H4268"]]]},{"k":14984,"v":[[0,3,["H6310"]],[3,5,["H4390"]],[5,8,["H8416"]],[8,12,["H8597"]],[12,13,["H3605"]],[13,15,["H3117"]]]},{"k":14985,"v":[[0,4,["H7993","H408"]],[4,7,["H6256"]],[7,10,["H2209"]],[10,11,["H5800"]],[11,13,["H408"]],[13,16,["H3581"]],[16,17,["H3615"]]]},{"k":14986,"v":[[0,1,["H3588"]],[1,3,["H341"]],[3,4,["H559"]],[4,12,["H8104"]],[12,14,["H5315"]],[14,16,["H3289"]],[16,17,["H3162"]]]},{"k":14987,"v":[[0,1,["H559"]],[1,2,["H430"]],[2,4,["H5800"]],[4,6,["H7291"]],[6,8,["H8610"]],[8,10,["H3588"]],[10,13,["H369"]],[13,15,["H5337"]],[15,16,[]]]},{"k":14988,"v":[[0,2,["H430"]],[2,4,["H408"]],[4,5,["H7368"]],[5,6,["H4480"]],[6,10,["H430"]],[10,12,["H2439"]],[12,15,["H5833"]]]},{"k":14989,"v":[[0,4,["H954"]],[4,6,["H3615"]],[6,9,["H7853"]],[9,12,["H5315"]],[12,16,["H5844"]],[16,18,["H2781"]],[18,20,["H3639"]],[20,22,["H1245"]],[22,24,["H7451"]]]},{"k":14990,"v":[[0,2,["H589"]],[2,4,["H3176"]],[4,5,["H8548"]],[5,9,["H8416"]],[9,13,["H3254"]]]},{"k":14991,"v":[[0,2,["H6310"]],[2,5,["H5608"]],[5,7,["H6666"]],[7,10,["H8668"]],[10,11,["H3605"]],[11,13,["H3117"]],[13,14,["H3588"]],[14,16,["H3045"]],[16,17,["H3808"]],[17,19,["H5615"]],[19,20,[]]]},{"k":14992,"v":[[0,3,["H935"]],[3,6,["H1369"]],[6,9,["H136"]],[9,10,["H3069"]],[10,14,["H2142"]],[14,17,["H6666"]],[17,21,["H905"]]]},{"k":14993,"v":[[0,2,["H430"]],[2,5,["H3925"]],[5,9,["H4480","H5271"]],[9,11,["H5704","H2008"]],[11,14,["H5046"]],[14,17,["H6381"]]]},{"k":14994,"v":[[0,2,["H1571"]],[2,3,["H5704"]],[3,6,["H2209"]],[6,8,["H7872"]],[8,10,["H430"]],[10,11,["H5800"]],[11,13,["H408"]],[13,14,["H5704"]],[14,17,["H5046"]],[17,19,["H2220"]],[19,22,["H1755"]],[22,25,["H1369"]],[25,28,["H3605"]],[28,32,["H935"]]]},{"k":14995,"v":[[0,2,["H6666"]],[2,5,["H430"]],[5,7,["H5704"]],[7,8,["H4791"]],[8,9,["H834"]],[9,11,["H6213"]],[11,13,["H1419"]],[13,15,["H430"]],[15,16,["H4310"]],[16,20,["H3644"]]]},{"k":14996,"v":[[0,2,["H834"]],[2,4,["H7200"]],[4,6,["H7227"]],[6,8,["H7451"]],[8,9,["H6869"]],[9,11,["H2421"]],[11,13,["H7725"]],[13,18,["H5927"]],[18,19,["H7725"]],[19,22,["H4480","H8415"]],[22,25,["H776"]]]},{"k":14997,"v":[[0,3,["H7235"]],[3,5,["H1420"]],[5,7,["H5162"]],[7,11,["H5437"]]]},{"k":14998,"v":[[0,1,["H589"]],[1,3,["H1571"]],[3,4,["H3034"]],[4,8,["H3627","H5035"]],[8,11,["H571"]],[11,14,["H430"]],[14,19,["H2167"]],[19,22,["H3658"]],[22,26,["H6918"]],[26,28,["H3478"]]]},{"k":14999,"v":[[0,2,["H8193"]],[2,5,["H7442"]],[5,6,["H3588"]],[6,8,["H2167"]],[8,13,["H5315"]],[13,14,["H834"]],[14,17,["H6299"]]]},{"k":15000,"v":[[0,2,["H3956"]],[2,3,["H1571"]],[3,5,["H1897"]],[5,8,["H6666"]],[8,9,["H3605"]],[9,11,["H3117"]],[11,13,["H3588"]],[13,16,["H954"]],[16,17,["H3588"]],[17,22,["H2659"]],[22,24,["H1245"]],[24,26,["H7451"]]]},{"k":15001,"v":[[0,1,["H5414"]],[1,3,["H4428"]],[3,5,["H4941"]],[5,7,["H430"]],[7,10,["H6666"]],[10,13,["H4428"]],[13,14,["H1121"]]]},{"k":15002,"v":[[0,3,["H1777"]],[3,5,["H5971"]],[5,7,["H6664"]],[7,10,["H6041"]],[10,12,["H4941"]]]},{"k":15003,"v":[[0,2,["H2022"]],[2,4,["H5375"]],[4,5,["H7965"]],[5,8,["H5971"]],[8,12,["H1389"]],[12,14,["H6666"]]]},{"k":15004,"v":[[0,3,["H8199"]],[3,5,["H6041"]],[5,8,["H5971"]],[8,11,["H3467"]],[11,13,["H1121"]],[13,16,["H34"]],[16,21,["H1792"]],[21,23,["H6231"]]]},{"k":15005,"v":[[0,3,["H3372"]],[3,6,["H5973"]],[6,9,["H8121"]],[9,11,["H3394"]],[11,12,["H6440"]],[12,15,["H1755","H1755"]]]},{"k":15006,"v":[[0,4,["H3381"]],[4,6,["H4306"]],[6,7,["H5921"]],[7,10,["H1488"]],[10,12,["H7241"]],[12,14,["H2222"]],[14,16,["H776"]]]},{"k":15007,"v":[[0,3,["H3117"]],[3,6,["H6662"]],[6,7,["H6524"]],[7,9,["H7230"]],[9,11,["H7965"]],[11,13,["H5704"]],[13,16,["H3394"]],[16,17,["H1097"]]]},{"k":15008,"v":[[0,4,["H7287"]],[4,7,["H4480","H3220"]],[7,8,["H5704"]],[8,9,["H3220"]],[9,13,["H4480","H5104"]],[13,14,["H5704"]],[14,16,["H657"]],[16,19,["H776"]]]},{"k":15009,"v":[[0,6,["H6728"]],[6,8,["H3766"]],[8,9,["H6440"]],[9,13,["H341"]],[13,15,["H3897"]],[15,17,["H6083"]]]},{"k":15010,"v":[[0,2,["H4428"]],[2,4,["H8659"]],[4,8,["H339"]],[8,10,["H7725"]],[10,11,["H4503"]],[11,13,["H4428"]],[13,15,["H7614"]],[15,17,["H5434"]],[17,19,["H7126"]],[19,20,["H814"]]]},{"k":15011,"v":[[0,2,["H3605"]],[2,3,["H4428"]],[3,6,["H7812"]],[6,9,["H3605"]],[9,10,["H1471"]],[10,12,["H5647"]],[12,13,[]]]},{"k":15012,"v":[[0,1,["H3588"]],[1,4,["H5337"]],[4,6,["H34"]],[6,9,["H7768"]],[9,11,["H6041"]],[11,17,["H369"]],[17,18,["H5826"]]]},{"k":15013,"v":[[0,3,["H2347","H5921"]],[3,5,["H1800"]],[5,7,["H34"]],[7,10,["H3467"]],[10,12,["H5315"]],[12,15,["H34"]]]},{"k":15014,"v":[[0,3,["H1350"]],[3,5,["H5315"]],[5,7,["H4480","H8496"]],[7,9,["H4480","H2555"]],[9,11,["H3365"]],[11,14,["H1818"]],[14,18,["H5869"]]]},{"k":15015,"v":[[0,4,["H2421"]],[4,10,["H5414"]],[10,13,["H4480","H2091"]],[13,15,["H7614"]],[15,16,["H6419"]],[16,21,["H1157"]],[21,23,["H8548"]],[23,25,["H3605","H3117"]],[25,29,["H1288"]]]},{"k":15016,"v":[[0,3,["H1961"]],[3,5,["H6451"]],[5,7,["H1250"]],[7,10,["H776"]],[10,13,["H7218"]],[13,16,["H2022"]],[16,18,["H6529"]],[18,21,["H7493"]],[21,23,["H3844"]],[23,28,["H4480","H5892"]],[28,30,["H6692"]],[30,32,["H6212"]],[32,35,["H776"]]]},{"k":15017,"v":[[0,2,["H8034"]],[2,4,["H1961"]],[4,6,["H5769"]],[6,8,["H8034"]],[8,11,["H5125"]],[11,13,["H6440"]],[13,16,["H8121"]],[16,21,["H1288"]],[21,24,["H3605"]],[24,25,["H1471"]],[25,29,["H833"]]]},{"k":15018,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,5,["H430"]],[5,7,["H430"]],[7,9,["H3478"]],[9,11,["H905"]],[11,12,["H6213"]],[12,14,["H6381"]]]},{"k":15019,"v":[[0,2,["H1288"]],[2,5,["H3519"]],[5,6,["H8034"]],[6,8,["H5769"]],[8,10,["(H853)"]],[10,12,["H3605"]],[12,13,["H776"]],[13,15,["H4390"]],[15,18,["H3519"]],[18,19,["H543"]],[19,21,["H543"]]]},{"k":15020,"v":[[0,2,["H8605"]],[2,4,["H1732"]],[4,6,["H1121"]],[6,8,["H3448"]],[8,10,["H3615"]]]},{"k":15021,"v":[[0,1,["H389"]],[1,2,["H430"]],[2,4,["H2896"]],[4,6,["H3478"]],[6,14,["H1249"]],[14,15,["H3824"]]]},{"k":15022,"v":[[0,4,["H589"]],[4,6,["H7272"]],[6,8,["H4592"]],[8,9,["H5186"]],[9,11,["H838"]],[11,14,["H369"]],[14,15,["H8210"]]]},{"k":15023,"v":[[0,1,["H3588"]],[1,4,["H7065"]],[4,7,["H1984"]],[7,10,["H7200"]],[10,12,["H7965"]],[12,15,["H7563"]]]},{"k":15024,"v":[[0,1,["H3588"]],[1,4,["H369"]],[4,5,["H2784"]],[5,8,["H4194"]],[8,11,["H193"]],[11,13,["H1277"]]]},{"k":15025,"v":[[0,3,["H369"]],[3,5,["H5999"]],[5,8,["H582"]],[8,9,["H3808"]],[9,12,["H5060"]],[12,13,["H5973"]],[13,15,["H120"]]]},{"k":15026,"v":[[0,1,["H3651"]],[1,2,["H1346"]],[2,8,["H6059"]],[8,9,["H2555"]],[9,10,["H5848"]],[10,14,["H7897"]]]},{"k":15027,"v":[[0,2,["H5869"]],[2,4,["H3318"]],[4,6,["H4480","H2459"]],[6,9,["H5674"]],[9,11,["H3824"]],[11,13,["H4906"]]]},{"k":15028,"v":[[0,3,["H4167"]],[3,5,["H1696"]],[5,6,["H7451"]],[6,8,["H6233"]],[8,10,["H1696"]],[10,11,["H4480","H4791"]]]},{"k":15029,"v":[[0,2,["H8371"]],[2,4,["H6310"]],[4,7,["H8064"]],[7,10,["H3956"]],[10,11,["H1980"]],[11,14,["H776"]]]},{"k":15030,"v":[[0,1,["H3651"]],[1,3,["H5971"]],[3,4,["H7725"]],[4,5,["H1988"]],[5,7,["H4325"]],[7,10,["H4392"]],[10,14,["H4680"]],[14,16,[]]]},{"k":15031,"v":[[0,3,["H559"]],[3,4,["H349"]],[4,6,["H410"]],[6,7,["H3045"]],[7,10,["H3426"]],[10,11,["H1844"]],[11,15,["H5945"]]]},{"k":15032,"v":[[0,1,["H2009"]],[1,2,["H428"]],[2,5,["H7563"]],[5,7,["H7961"]],[7,10,["H5769"]],[10,12,["H7685"]],[12,14,["H2428"]]]},{"k":15033,"v":[[0,1,["H389"]],[1,4,["H2135"]],[4,6,["H3824"]],[6,8,["H7385"]],[8,10,["H7364"]],[10,12,["H3709"]],[12,14,["H5356"]]]},{"k":15034,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,8,["H1961"]],[8,9,["H5060"]],[9,11,["H8433"]],[11,13,["H1242"]]]},{"k":15035,"v":[[0,1,["H518"]],[1,3,["H559"]],[3,6,["H5608"]],[6,7,["H3644"]],[7,8,["H2009"]],[8,11,["H898"]],[11,14,["H1755"]],[14,17,["H1121"]]]},{"k":15036,"v":[[0,3,["H2803"]],[3,5,["H3045"]],[5,6,["H2063"]],[6,7,["H1931"]],[7,10,["H5999"]],[10,11,["H5869"]],[11,12,[]]]},{"k":15037,"v":[[0,1,["H5704"]],[1,3,["H935"]],[3,4,["H413"]],[4,6,["H4720"]],[6,8,["H410"]],[8,10,["H995"]],[10,13,["H319"]]]},{"k":15038,"v":[[0,1,["H389"]],[1,4,["H7896"]],[4,8,["H2513"]],[8,12,["H5307"]],[12,14,["H4876"]]]},{"k":15039,"v":[[0,1,["H349"]],[1,2,["H1961"]],[2,6,["H8047"]],[6,10,["H7281"]],[10,14,["H5486","H8552"]],[14,15,["H4480"]],[15,16,["H1091"]]]},{"k":15040,"v":[[0,3,["H2472"]],[3,6,["H4480","H6974"]],[6,9,["H136"]],[9,12,["H5782"]],[12,15,["H959"]],[15,17,["H6754"]]]},{"k":15041,"v":[[0,1,["H3588"]],[1,3,["H3824"]],[3,5,["H2556"]],[5,9,["H8150"]],[9,12,["H3629"]]]},{"k":15042,"v":[[0,2,["H1198"]],[2,4,["H589"]],[4,6,["H3808","H3045"]],[6,8,["H1961"]],[8,11,["H929"]],[11,12,["H5973"]],[12,13,[]]]},{"k":15043,"v":[[0,2,["H589"]],[2,4,["H8548"]],[4,5,["H5973"]],[5,9,["H270"]],[9,13,["H3225"]],[13,14,["H3027"]]]},{"k":15044,"v":[[0,3,["H5148"]],[3,7,["H6098"]],[7,9,["H310"]],[9,10,["H3947"]],[10,13,["H3519"]]]},{"k":15045,"v":[[0,1,["H4310"]],[1,5,["H8064"]],[5,11,["H3808"]],[11,13,["H776"]],[13,16,["H2654"]],[16,17,["H5973"]],[17,18,[]]]},{"k":15046,"v":[[0,2,["H7607"]],[2,5,["H3824"]],[5,6,["H3615"]],[6,8,["H430"]],[8,11,["H6697"]],[11,14,["H3824"]],[14,17,["H2506"]],[17,19,["H5769"]]]},{"k":15047,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,6,["H7369"]],[6,10,["H6"]],[10,13,["H6789"]],[13,14,["H3605"]],[14,19,["H2181"]],[19,20,["H4480"]],[20,21,[]]]},{"k":15048,"v":[[0,4,["H2896"]],[4,6,["H589"]],[6,9,["H7132"]],[9,11,["H430"]],[11,14,["H7896"]],[14,16,["H4268"]],[16,19,["H136"]],[19,20,["H3069"]],[20,24,["H5608"]],[24,25,["H3605"]],[25,27,["H4399"]]]},{"k":15049,"v":[[0,2,["H430"]],[2,3,["H4100"]],[3,8,["H2186"]],[8,10,["H5331"]],[10,14,["H639"]],[14,15,["H6225"]],[15,18,["H6629"]],[18,21,["H4830"]]]},{"k":15050,"v":[[0,1,["H2142"]],[1,3,["H5712"]],[3,7,["H7069"]],[7,9,["H6924"]],[9,11,["H7626"]],[11,14,["H5159"]],[14,18,["H1350"]],[18,19,["H2088"]],[19,20,["H2022"]],[20,21,["H6726"]],[21,25,["H7931"]]]},{"k":15051,"v":[[0,2,["H7311"]],[2,4,["H6471"]],[4,7,["H5331"]],[7,8,["H4876"]],[8,10,["H3605"]],[10,13,["H341"]],[13,16,["H7489"]],[16,19,["H6944"]]]},{"k":15052,"v":[[0,2,["H6887"]],[2,3,["H7580"]],[3,6,["H7130"]],[6,9,["H4150"]],[9,12,["H7760"]],[12,14,["H226"]],[14,16,["H226"]]]},{"k":15053,"v":[[0,4,["H3045"]],[4,10,["H935","H4605"]],[10,11,["H7134"]],[11,14,["H5442"]],[14,15,["H6086"]]]},{"k":15054,"v":[[0,2,["H6258"]],[2,5,["H1986"]],[5,8,["H6603"]],[8,11,["H3162"]],[11,13,["H3781"]],[13,15,["H3597"]]]},{"k":15055,"v":[[0,3,["H7971"]],[3,4,["H784"]],[4,7,["H4720"]],[7,10,["H2490"]],[10,16,["H4908"]],[16,19,["H8034"]],[19,22,["H776"]]]},{"k":15056,"v":[[0,2,["H559"]],[2,5,["H3820"]],[5,8,["H3238"]],[8,10,["H3162"]],[10,14,["H8313"]],[14,15,["H3605"]],[15,17,["H4150"]],[17,19,["H410"]],[19,22,["H776"]]]},{"k":15057,"v":[[0,2,["H7200"]],[2,3,["H3808"]],[3,5,["H226"]],[5,8,["H369"]],[8,9,["H5750"]],[9,11,["H5030"]],[11,12,["H3808"]],[12,15,["H854"]],[15,19,["H3045"]],[19,21,["H5704","H4100"]]]},{"k":15058,"v":[[0,2,["H430"]],[2,4,["H5704","H4970"]],[4,7,["H6862"]],[7,8,["H2778"]],[8,11,["H341"]],[11,12,["H5006"]],[12,14,["H8034"]],[14,16,["H5331"]]]},{"k":15059,"v":[[0,1,["H4100"]],[1,2,["H7725"]],[2,5,["H3027"]],[5,9,["H3225"]],[9,10,["H3615"]],[10,13,["H4480","H7130"]],[13,15,["H2436"]]]},{"k":15060,"v":[[0,2,["H430"]],[2,5,["H4428"]],[5,7,["H4480","H6924"]],[7,8,["H6466"]],[8,9,["H3444"]],[9,12,["H7130"]],[12,15,["H776"]]]},{"k":15061,"v":[[0,1,["H859"]],[1,3,["H6565"]],[3,5,["H3220"]],[5,8,["H5797"]],[8,10,["H7665"]],[10,12,["H7218"]],[12,15,["H8577"]],[15,16,["H5921"]],[16,18,["H4325"]]]},{"k":15062,"v":[[0,1,["H859"]],[1,2,["H7533"]],[2,4,["H7218"]],[4,6,["H3882"]],[6,10,["H5414"]],[10,14,["H3978"]],[14,17,["H5971"]],[17,20,["H6728"]]]},{"k":15063,"v":[[0,1,["H859"]],[1,3,["H1234"]],[3,5,["H4599"]],[5,8,["H5158"]],[8,9,["H859"]],[9,11,["H3001"]],[11,12,["H386"]],[12,13,["H5104"]]]},{"k":15064,"v":[[0,2,["H3117"]],[2,6,["H3915"]],[6,7,["H637"]],[7,10,["H859"]],[10,12,["H3559"]],[12,14,["H3974"]],[14,17,["H8121"]]]},{"k":15065,"v":[[0,1,["H859"]],[1,3,["H5324"]],[3,4,["H3605"]],[4,6,["H1367"]],[6,9,["H776"]],[9,10,["H859"]],[10,12,["H3335"]],[12,13,["H7019"]],[13,15,["H2779"]]]},{"k":15066,"v":[[0,1,["H2142"]],[1,2,["H2063"]],[2,5,["H341"]],[5,7,["H2778"]],[7,9,["H3068"]],[9,13,["H5036"]],[13,14,["H5971"]],[14,16,["H5006"]],[16,18,["H8034"]]]},{"k":15067,"v":[[0,2,["H5414"]],[2,3,["H408"]],[3,5,["H5315"]],[5,8,["H8449"]],[8,11,["H2416"]],[11,15,["H7911"]],[15,16,["H408"]],[16,18,["H2416"]],[18,21,["H6041"]],[21,23,["H5331"]]]},{"k":15068,"v":[[0,2,["H5027"]],[2,5,["H1285"]],[5,6,["H3588"]],[6,9,["H4285"]],[9,12,["H776"]],[12,14,["H4390"]],[14,17,["H4999"]],[17,19,["H2555"]]]},{"k":15069,"v":[[0,3,["H408"]],[3,5,["H1790"]],[5,6,["H7725"]],[6,7,["H3637"]],[7,10,["H6041"]],[10,12,["H34"]],[12,13,["H1984"]],[13,15,["H8034"]]]},{"k":15070,"v":[[0,1,["H6965"]],[1,3,["H430"]],[3,7,["H7378","H7379"]],[7,8,["H2142"]],[8,9,["H4480"]],[9,12,["H5036"]],[12,13,["H2781"]],[13,15,["H3605","H3117"]]]},{"k":15071,"v":[[0,1,["H7911"]],[1,2,["H408"]],[2,4,["H6963"]],[4,7,["H6887"]],[7,9,["H7588"]],[9,15,["H6965"]],[15,17,["H5927"]],[17,18,["H8548"]]]},{"k":15072,"v":[[0,4,["H430"]],[4,8,["H3034"]],[8,14,["H3034"]],[14,18,["H8034"]],[18,20,["H7138"]],[20,23,["H6381"]],[23,24,["H5608"]]]},{"k":15073,"v":[[0,1,["H3588"]],[1,4,["H3947"]],[4,6,["H4150"]],[6,7,["H589"]],[7,9,["H8199"]],[9,10,["H4339"]]]},{"k":15074,"v":[[0,2,["H776"]],[2,4,["H3605"]],[4,6,["H3427"]],[6,9,["H4127"]],[9,10,["H595"]],[10,12,["H8505"]],[12,14,["H5982"]],[14,17,["H5542"]]]},{"k":15075,"v":[[0,2,["H559"]],[2,5,["H1984"]],[5,8,["H408","H1984"]],[8,12,["H7563"]],[12,15,["H7311","H408"]],[15,17,["H7161"]]]},{"k":15076,"v":[[0,3,["H7311","H408"]],[3,5,["H7161"]],[5,7,["H4791"]],[7,8,["H1696"]],[8,12,["H6277"]],[12,13,["H6677"]]]},{"k":15077,"v":[[0,1,["H3588"]],[1,2,["H7311"]],[2,4,["H3808"]],[4,7,["H4480","H4161"]],[7,11,["H4480","H4628"]],[11,12,["H3808"]],[12,15,["H4480","H4057"]]]},{"k":15078,"v":[[0,1,["H3588"]],[1,2,["H430"]],[2,5,["H8199"]],[5,8,["H8213"]],[8,9,["H2088"]],[9,11,["H7311"]],[11,13,["H2088"]]]},{"k":15079,"v":[[0,1,["H3588"]],[1,4,["H3027"]],[4,7,["H3068"]],[7,11,["H3563"]],[11,14,["H3196"]],[14,16,["H2560"]],[16,19,["H4392"]],[19,21,["H4538"]],[21,25,["H5064"]],[25,28,["H4480","H2088"]],[28,29,["H389"]],[29,31,["H8105"]],[31,33,["H3605"]],[33,35,["H7563"]],[35,38,["H776"]],[38,42,["H4680"]],[42,44,["H8354"]],[44,45,[]]]},{"k":15080,"v":[[0,2,["H589"]],[2,4,["H5046"]],[4,6,["H5769"]],[6,10,["H2167"]],[10,13,["H430"]],[13,15,["H3290"]]]},{"k":15081,"v":[[0,1,["H3605"]],[1,3,["H7161"]],[3,6,["H7563"]],[6,11,["H1438"]],[11,14,["H7161"]],[14,17,["H6662"]],[17,20,["H7311"]]]},{"k":15082,"v":[[0,2,["H3063"]],[2,4,["H430"]],[4,5,["H3045"]],[5,7,["H8034"]],[7,9,["H1419"]],[9,11,["H3478"]]]},{"k":15083,"v":[[0,2,["H8004"]],[2,4,["H1961"]],[4,6,["H5520"]],[6,10,["H4585"]],[10,12,["H6726"]]]},{"k":15084,"v":[[0,1,["H8033"]],[1,2,["H7665"]],[2,5,["H7565"]],[5,8,["H7198"]],[8,10,["H4043"]],[10,13,["H2719"]],[13,16,["H4421"]],[16,17,["H5542"]]]},{"k":15085,"v":[[0,1,["H859"]],[1,4,["H215"]],[4,6,["H117"]],[6,9,["H4480","H2042"]],[9,11,["H2964"]]]},{"k":15086,"v":[[0,2,["H47","H3820"]],[2,4,["H7997"]],[4,7,["H5123"]],[7,9,["H8142"]],[9,11,["H3808","H3605"]],[11,14,["H376"]],[14,16,["H2428"]],[16,18,["H4672"]],[18,20,["H3027"]]]},{"k":15087,"v":[[0,3,["H4480","H1606"]],[3,5,["H430"]],[5,7,["H3290"]],[7,10,["H7393"]],[10,12,["H5483"]],[12,18,["H7290"]]]},{"k":15088,"v":[[0,1,["H859"]],[1,3,["H859"]],[3,7,["H3372"]],[7,9,["H4310"]],[9,11,["H5975"]],[11,14,["H6440"]],[14,16,["H4480","H227"]],[16,19,["H639"]]]},{"k":15089,"v":[[0,4,["H1779"]],[4,7,["H8085"]],[7,8,["H4480"]],[8,9,["H8064"]],[9,11,["H776"]],[11,12,["H3372"]],[12,15,["H8252"]]]},{"k":15090,"v":[[0,2,["H430"]],[2,3,["H6965"]],[3,5,["H4941"]],[5,7,["H3467"]],[7,8,["H3605"]],[8,10,["H6035"]],[10,13,["H776"]],[13,14,["H5542"]]]},{"k":15091,"v":[[0,1,["H3588"]],[1,3,["H2534"]],[3,5,["H120"]],[5,7,["H3034"]],[7,10,["H7611"]],[10,12,["H2534"]],[12,15,["H2296"]]]},{"k":15092,"v":[[0,1,["H5087"]],[1,3,["H7999"]],[3,6,["H3068"]],[6,8,["H430"]],[8,10,["H3605"]],[10,14,["H5439"]],[14,16,["H2986"]],[16,17,["H7862"]],[17,24,["H4172"]]]},{"k":15093,"v":[[0,4,["H1219"]],[4,6,["H7307"]],[6,8,["H5057"]],[8,11,["H3372"]],[11,14,["H4428"]],[14,17,["H776"]]]},{"k":15094,"v":[[0,2,["H6817"]],[2,3,["H413"]],[3,4,["H430"]],[4,7,["H6963"]],[7,9,["H413"]],[9,10,["H430"]],[10,13,["H6963"]],[13,17,["H238"]],[17,18,["H413"]],[18,19,[]]]},{"k":15095,"v":[[0,3,["H3117"]],[3,6,["H6869"]],[6,8,["H1875"]],[8,10,["H136"]],[10,12,["H3027"]],[12,13,["H5064"]],[13,16,["H3915"]],[16,18,["H6313"]],[18,19,["H3808"]],[19,21,["H5315"]],[21,22,["H3985"]],[22,25,["H5162"]]]},{"k":15096,"v":[[0,2,["H2142"]],[2,3,["H430"]],[3,6,["H1993"]],[6,8,["H7878"]],[8,11,["H7307"]],[11,13,["H5848"]],[13,14,["H5542"]]]},{"k":15097,"v":[[0,2,["H270"]],[2,4,["H5869"]],[4,5,["H8109"]],[5,9,["H6470"]],[9,12,["H3808"]],[12,13,["H1696"]]]},{"k":15098,"v":[[0,3,["H2803"]],[3,5,["H3117"]],[5,7,["H4480","H6924"]],[7,9,["H8141"]],[9,12,["H5769"]]]},{"k":15099,"v":[[0,4,["H2142"]],[4,6,["H5058"]],[6,9,["H3915"]],[9,11,["H7878"]],[11,12,["H5973"]],[12,15,["H3824"]],[15,18,["H7307"]],[18,21,["H2664"]]]},{"k":15100,"v":[[0,3,["H136"]],[3,5,["H2186"]],[5,7,["H5769"]],[7,12,["H7521"]],[12,13,["H3808"]],[13,14,["H3254","H5750"]]]},{"k":15101,"v":[[0,3,["H2617"]],[3,5,["H656"]],[5,7,["H5331"]],[7,10,["H562"]],[10,11,["H1584"]],[11,13,["H1755","H1755"]]]},{"k":15102,"v":[[0,2,["H410"]],[2,3,["H7911"]],[3,6,["H2589"]],[6,10,["H639"]],[10,12,["H7092"]],[12,15,["H7356"]],[15,16,["H5542"]]]},{"k":15103,"v":[[0,3,["H559"]],[3,4,["H1931"]],[4,7,["H2470"]],[7,13,["H8141"]],[13,17,["H3225"]],[17,21,["H5945"]]]},{"k":15104,"v":[[0,3,["H2142"]],[3,5,["H4611"]],[5,8,["H3050"]],[8,9,["H3588"]],[9,12,["H2142"]],[12,14,["H6382"]],[14,16,["H4480","H6924"]]]},{"k":15105,"v":[[0,3,["H1897"]],[3,6,["H3605"]],[6,8,["H6467"]],[8,10,["H7878"]],[10,13,["H5949"]]]},{"k":15106,"v":[[0,2,["H1870"]],[2,4,["H430"]],[4,8,["H6944"]],[8,9,["H4310"]],[9,12,["H1419"]],[12,14,["H410"]],[14,17,["H430"]]]},{"k":15107,"v":[[0,1,["H859"]],[1,4,["H410"]],[4,6,["H6213"]],[6,7,["H6382"]],[7,10,["H3045"]],[10,12,["H5797"]],[12,15,["H5971"]]]},{"k":15108,"v":[[0,5,["H2220"]],[5,6,["H1350"]],[6,8,["H5971"]],[8,10,["H1121"]],[10,12,["H3290"]],[12,14,["H3130"]],[14,15,["H5542"]]]},{"k":15109,"v":[[0,2,["H4325"]],[2,3,["H7200"]],[3,6,["H430"]],[6,8,["H4325"]],[8,9,["H7200"]],[9,13,["H2342"]],[13,15,["H8415"]],[15,16,["H637"]],[16,18,["H7264"]]]},{"k":15110,"v":[[0,2,["H5645"]],[2,4,["H2229"]],[4,5,["H4325"]],[5,7,["H7834"]],[7,9,["H5414"]],[9,11,["H6963"]],[11,13,["H2671"]],[13,14,["H637"]],[14,16,["H1980"]]]},{"k":15111,"v":[[0,2,["H6963"]],[2,5,["H7482"]],[5,9,["H1534"]],[9,11,["H1300"]],[11,12,["H215"]],[12,14,["H8398"]],[14,16,["H776"]],[16,17,["H7264"]],[17,19,["H7493"]]]},{"k":15112,"v":[[0,2,["H1870"]],[2,6,["H3220"]],[6,9,["H7635"]],[9,12,["H7227"]],[12,13,["H4325"]],[13,16,["H6119"]],[16,18,["H3808"]],[18,19,["H3045"]]]},{"k":15113,"v":[[0,2,["H5148"]],[2,4,["H5971"]],[4,7,["H6629"]],[7,10,["H3027"]],[10,12,["H4872"]],[12,14,["H175"]]]},{"k":15114,"v":[[0,2,["H238"]],[2,5,["H5971"]],[5,8,["H8451"]],[8,9,["H5186"]],[9,11,["H241"]],[11,14,["H561"]],[14,17,["H6310"]]]},{"k":15115,"v":[[0,3,["H6605"]],[3,5,["H6310"]],[5,8,["H4912"]],[8,11,["H5042"]],[11,13,["H2420"]],[13,14,["H4480"]],[14,15,["H6924"]]]},{"k":15116,"v":[[0,1,["H834"]],[1,4,["H8085"]],[4,6,["H3045"]],[6,9,["H1"]],[9,11,["H5608"]],[11,12,[]]]},{"k":15117,"v":[[0,3,["H3808"]],[3,4,["H3582"]],[4,8,["H4480","H1121"]],[8,9,["H5608"]],[9,12,["H1755"]],[12,14,["H314"]],[14,16,["H8416"]],[16,19,["H3068"]],[19,22,["H5807"]],[22,26,["H6381"]],[26,27,["H834"]],[27,30,["H6213"]]]},{"k":15118,"v":[[0,3,["H6965"]],[3,5,["H5715"]],[5,7,["H3290"]],[7,9,["H7760"]],[9,11,["H8451"]],[11,13,["H3478"]],[13,14,["H834"]],[14,16,["H6680","(H853)"]],[16,18,["H1"]],[18,24,["H3045"]],[24,27,["H1121"]]]},{"k":15119,"v":[[0,1,["H4616"]],[1,3,["H1755"]],[3,5,["H314"]],[5,7,["H3045"]],[7,11,["H1121"]],[11,15,["H3205"]],[15,18,["H6965"]],[18,20,["H5608"]],[20,24,["H1121"]]]},{"k":15120,"v":[[0,4,["H7760"]],[4,6,["H3689"]],[6,8,["H430"]],[8,10,["H3808"]],[10,11,["H7911"]],[11,13,["H4611"]],[13,15,["H410"]],[15,17,["H5341"]],[17,19,["H4687"]]]},{"k":15121,"v":[[0,3,["H3808"]],[3,4,["H1961"]],[4,7,["H1"]],[7,9,["H5637"]],[9,11,["H4784"]],[11,12,["H1755"]],[12,14,["H1755"]],[14,20,["H3559","H3808","H3820"]],[20,23,["H7307"]],[23,25,["H3808"]],[25,26,["H539"]],[26,27,["H854"]],[27,28,["H410"]]]},{"k":15122,"v":[[0,2,["H1121"]],[2,4,["H669"]],[4,6,["H5401"]],[6,8,["H7411"]],[8,9,["H7198"]],[9,11,["H2015"]],[11,14,["H3117"]],[14,16,["H7128"]]]},{"k":15123,"v":[[0,2,["H8104"]],[2,3,["H3808"]],[3,5,["H1285"]],[5,7,["H430"]],[7,9,["H3985"]],[9,11,["H1980"]],[11,14,["H8451"]]]},{"k":15124,"v":[[0,2,["H7911"]],[2,4,["H5949"]],[4,7,["H6381"]],[7,8,["H834"]],[8,11,["H7200"]],[11,12,[]]]},{"k":15125,"v":[[0,2,["H6382"]],[2,3,["H6213"]],[3,7,["H5048"]],[7,10,["H1"]],[10,13,["H776"]],[13,15,["H4714"]],[15,18,["H7704"]],[18,20,["H6814"]]]},{"k":15126,"v":[[0,2,["H1234"]],[2,4,["H3220"]],[4,10,["H5674"]],[10,15,["H4325"]],[15,17,["H5324"]],[17,18,["H3644"]],[18,20,["H5067"]]]},{"k":15127,"v":[[0,3,["H3119"]],[3,6,["H5148"]],[6,10,["H6051"]],[10,12,["H3605"]],[12,14,["H3915"]],[14,17,["H216"]],[17,19,["H784"]]]},{"k":15128,"v":[[0,2,["H1234"]],[2,4,["H6697"]],[4,7,["H4057"]],[7,11,["H8248"]],[11,16,["H7227"]],[16,17,["H8415"]]]},{"k":15129,"v":[[0,5,["H3318","H5140"]],[5,8,["H4480","H5553"]],[8,11,["H4325"]],[11,14,["H3381"]],[14,16,["H5104"]]]},{"k":15130,"v":[[0,3,["H2398"]],[3,4,["H5750"]],[4,5,["H3254"]],[5,9,["H4784"]],[9,12,["H5945"]],[12,15,["H6723"]]]},{"k":15131,"v":[[0,3,["H5254"]],[3,4,["H410"]],[4,7,["H3824"]],[7,9,["H7592"]],[9,10,["H400"]],[10,13,["H5315"]]]},{"k":15132,"v":[[0,3,["H1696"]],[3,5,["H430"]],[5,7,["H559"]],[7,8,["H3201"]],[8,9,["H410"]],[9,10,["H6186"]],[10,12,["H7979"]],[12,15,["H4057"]]]},{"k":15133,"v":[[0,1,["H2005"]],[1,3,["H5221"]],[3,5,["H6697"]],[5,8,["H4325"]],[8,10,["H2100"]],[10,13,["H5158"]],[13,14,["H7857"]],[14,15,["H3201"]],[15,17,["H5414"]],[17,18,["H3899"]],[18,19,["H1571"]],[19,22,["H3559"]],[22,23,["H7607"]],[23,26,["H5971"]]]},{"k":15134,"v":[[0,1,["H3651"]],[1,3,["H3068"]],[3,4,["H8085"]],[4,8,["H5674"]],[8,11,["H784"]],[11,13,["H5400"]],[13,15,["H3290"]],[15,17,["H639"]],[17,18,["H1571"]],[18,20,["H5927"]],[20,22,["H3478"]]]},{"k":15135,"v":[[0,1,["H3588"]],[1,3,["H539"]],[3,4,["H3808"]],[4,6,["H430"]],[6,8,["H982"]],[8,9,["H3808"]],[9,12,["H3444"]]]},{"k":15136,"v":[[0,4,["H6680"]],[4,6,["H7834"]],[6,8,["H4480","H4605"]],[8,10,["H6605"]],[10,12,["H1817"]],[12,14,["H8064"]]]},{"k":15137,"v":[[0,4,["H4305"]],[4,5,["H4478"]],[5,6,["H5921"]],[6,9,["H398"]],[9,12,["H5414"]],[12,16,["H1715"]],[16,18,["H8064"]]]},{"k":15138,"v":[[0,1,["H376"]],[1,3,["H398"]],[3,4,["H47"]],[4,5,["H3899"]],[5,7,["H7971"]],[7,9,["H6720"]],[9,12,["H7648"]]]},{"k":15139,"v":[[0,5,["H6921"]],[5,7,["H5265"]],[7,10,["H8064"]],[10,14,["H5797"]],[14,16,["H5090"]],[16,20,["H8486"]]]},{"k":15140,"v":[[0,2,["H4305"]],[2,3,["H7607"]],[3,5,["H5921"]],[5,8,["H6083"]],[8,10,["H3671"]],[10,11,["H5775"]],[11,15,["H2344"]],[15,18,["H3220"]]]},{"k":15141,"v":[[0,5,["H5307"]],[5,8,["H7130"]],[8,11,["H4264"]],[11,13,["H5439"]],[13,15,["H4908"]]]},{"k":15142,"v":[[0,4,["H398"]],[4,7,["H3966"]],[7,8,["H7646"]],[8,11,["H935"]],[11,15,["H8378"]]]},{"k":15143,"v":[[0,3,["H3808"]],[3,4,["H2114"]],[4,7,["H4480","H8378"]],[7,11,["H400"]],[11,13,["H5750"]],[13,16,["H6310"]]]},{"k":15144,"v":[[0,2,["H639"]],[2,4,["H430"]],[4,5,["H5927"]],[5,9,["H2026"]],[9,11,["H4924"]],[11,16,["H3766"]],[16,18,["H970"]],[18,21,["H3478"]]]},{"k":15145,"v":[[0,2,["H3605"]],[2,3,["H2063"]],[3,5,["H2398"]],[5,6,["H5750"]],[6,8,["H539"]],[8,9,["H3808"]],[9,13,["H6381"]]]},{"k":15146,"v":[[0,3,["H3117"]],[3,6,["H3615"]],[6,8,["H1892"]],[8,11,["H8141"]],[11,13,["H928"]]]},{"k":15147,"v":[[0,1,["H518"]],[1,3,["H2026"]],[3,7,["H1875"]],[7,11,["H7725"]],[11,14,["H7836"]],[14,16,["H410"]]]},{"k":15148,"v":[[0,3,["H2142"]],[3,4,["H3588"]],[4,5,["H430"]],[5,8,["H6697"]],[8,11,["H5945"]],[11,12,["H410"]],[12,14,["H1350"]]]},{"k":15149,"v":[[0,4,["H6601"]],[4,8,["H6310"]],[8,11,["H3576"]],[11,16,["H3956"]]]},{"k":15150,"v":[[0,3,["H3820"]],[3,6,["H3808","H3559"]],[6,7,["H5973"]],[7,9,["H3808"]],[9,12,["H539"]],[12,15,["H1285"]]]},{"k":15151,"v":[[0,2,["H1931"]],[2,6,["H7349"]],[6,7,["H3722"]],[7,9,["H5771"]],[9,11,["H7843"]],[11,13,["H3808"]],[13,15,["H7235"]],[15,22,["H639","H7725"]],[22,25,["H3808"]],[25,27,["H5782"]],[27,28,["H3605"]],[28,30,["H2534"]]]},{"k":15152,"v":[[0,3,["H2142"]],[3,4,["H3588"]],[4,5,["H1992"]],[5,8,["H1320"]],[8,10,["H7307"]],[10,13,["H1980"]],[13,17,["H3808","H7725"]]]},{"k":15153,"v":[[0,2,["H4100"]],[2,5,["H4784"]],[5,9,["H4057"]],[9,11,["H6087"]],[11,15,["H3452"]]]},{"k":15154,"v":[[0,4,["H7725"]],[4,6,["H5254"]],[6,7,["H410"]],[7,9,["H8428"]],[9,12,["H6918"]],[12,14,["H3478"]]]},{"k":15155,"v":[[0,2,["H2142"]],[2,3,["H3808","(H853)"]],[3,5,["H3027"]],[5,8,["H3117"]],[8,9,["H834"]],[9,11,["H6299"]],[11,13,["H4480"]],[13,15,["H6862"]]]},{"k":15156,"v":[[0,1,["H834"]],[1,4,["H7760"]],[4,6,["H226"]],[6,8,["H4714"]],[8,11,["H4159"]],[11,14,["H7704"]],[14,16,["H6814"]]]},{"k":15157,"v":[[0,3,["H2015"]],[3,5,["H2975"]],[5,7,["H1818"]],[7,10,["H5140"]],[10,14,["H1077"]],[14,15,["H8354"]]]},{"k":15158,"v":[[0,2,["H7971"]],[2,6,["H6157"]],[6,10,["H398"]],[10,13,["H6854"]],[13,15,["H7843"]],[15,16,[]]]},{"k":15159,"v":[[0,2,["H5414"]],[2,5,["H2981"]],[5,8,["H2625"]],[8,11,["H3018"]],[11,14,["H697"]]]},{"k":15160,"v":[[0,2,["H2026"]],[2,4,["H1612"]],[4,6,["H1259"]],[6,10,["H8256"]],[10,12,["H2602"]]]},{"k":15161,"v":[[0,3,["H5462"]],[3,5,["H1165"]],[5,9,["H1259"]],[9,12,["H4735"]],[12,15,["H7565"]]]},{"k":15162,"v":[[0,2,["H7971"]],[2,6,["H2740"]],[6,9,["H639"]],[9,10,["H5678"]],[10,12,["H2195"]],[12,14,["H6869"]],[14,16,["H4917"]],[16,17,["H7451"]],[17,18,["H4397"]],[18,20,[]]]},{"k":15163,"v":[[0,2,["H6424"]],[2,4,["H5410"]],[4,7,["H639"]],[7,9,["H2820"]],[9,10,["H3808"]],[10,12,["H5315"]],[12,14,["H4480","H4194"]],[14,16,["H5462"]],[16,18,["H2416"]],[18,22,["H1698"]]]},{"k":15164,"v":[[0,2,["H5221"]],[2,3,["H3605"]],[3,5,["H1060"]],[5,7,["H4714"]],[7,9,["H7225"]],[9,12,["H202"]],[12,15,["H168"]],[15,17,["H2526"]]]},{"k":15165,"v":[[0,5,["H5971"]],[5,8,["H5265"]],[8,10,["H6629"]],[10,12,["H5090"]],[12,16,["H4057"]],[16,19,["H5739"]]]},{"k":15166,"v":[[0,3,["H5148"]],[3,6,["H983"]],[6,10,["H6342"]],[10,11,["H3808"]],[11,14,["H3220"]],[14,15,["H3680"]],[15,17,["H341"]]]},{"k":15167,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H1366"]],[7,10,["H6944"]],[10,13,["H2088"]],[13,14,["H2022"]],[14,18,["H3225"]],[18,20,["H7069"]]]},{"k":15168,"v":[[0,3,["H1644"]],[3,5,["H1471"]],[5,7,["H4480","H6440"]],[7,10,["H5307"]],[10,13,["H5159"]],[13,15,["H2256"]],[15,19,["H7626"]],[19,21,["H3478"]],[21,23,["H7931"]],[23,26,["H168"]]]},{"k":15169,"v":[[0,3,["H5254"]],[3,5,["H4784","(H853)"]],[5,8,["H5945"]],[8,9,["H430"]],[9,11,["H8104"]],[11,12,["H3808"]],[12,14,["H5713"]]]},{"k":15170,"v":[[0,3,["H5472"]],[3,6,["H898"]],[6,9,["H1"]],[9,13,["H2015"]],[13,16,["H7423"]],[16,17,["H7198"]]]},{"k":15171,"v":[[0,6,["H3707"]],[6,10,["H1116"]],[10,15,["H7065"]],[15,19,["H6456"]]]},{"k":15172,"v":[[0,2,["H430"]],[2,3,["H8085"]],[3,7,["H5674"]],[7,9,["H3966"]],[9,10,["H3988"]],[10,11,["H3478"]]]},{"k":15173,"v":[[0,4,["H5203"]],[4,6,["H4908"]],[6,8,["H7887"]],[8,10,["H168"]],[10,13,["H7931"]],[13,15,["H120"]]]},{"k":15174,"v":[[0,2,["H5414"]],[2,4,["H5797"]],[4,6,["H7628"]],[6,9,["H8597"]],[9,12,["H6862"]],[12,13,["H3027"]]]},{"k":15175,"v":[[0,2,["H5462"]],[2,4,["H5971"]],[4,5,["H5462"]],[5,9,["H2719"]],[9,12,["H5674"]],[12,15,["H5159"]]]},{"k":15176,"v":[[0,2,["H784"]],[2,3,["H398"]],[3,6,["H970"]],[6,9,["H1330"]],[9,11,["H3808"]],[11,14,["H1984"]]]},{"k":15177,"v":[[0,2,["H3548"]],[2,3,["H5307"]],[3,6,["H2719"]],[6,9,["H490"]],[9,11,["H3808"]],[11,12,["H1058"]]]},{"k":15178,"v":[[0,3,["H136"]],[3,4,["H3364"]],[4,9,["H3463"]],[9,14,["H1368"]],[14,16,["H7442"]],[16,20,["H4480","H3196"]]]},{"k":15179,"v":[[0,3,["H5221"]],[3,5,["H6862"]],[5,9,["H268"]],[9,11,["H5414"]],[11,15,["H5769"]],[15,16,["H2781"]]]},{"k":15180,"v":[[0,3,["H3988"]],[3,5,["H168"]],[5,7,["H3130"]],[7,9,["H977"]],[9,10,["H3808"]],[10,12,["H7626"]],[12,14,["H669"]]]},{"k":15181,"v":[[0,2,["H977","(H853)"]],[2,4,["H7626"]],[4,6,["H3063","(H853)"]],[6,8,["H2022"]],[8,9,["H6726"]],[9,10,["H834"]],[10,12,["H157"]]]},{"k":15182,"v":[[0,3,["H1129"]],[3,5,["H4720"]],[5,6,["H3644"]],[6,7,["H7311"]],[7,11,["H776"]],[11,15,["H3245"]],[15,17,["H5769"]]]},{"k":15183,"v":[[0,2,["H977"]],[2,3,["H1732"]],[3,6,["H5650"]],[6,8,["H3947"]],[8,12,["H4480","H4356","H6629"]]]},{"k":15184,"v":[[0,2,["H4480","H310"]],[2,7,["H5763"]],[7,9,["H935"]],[9,12,["H7462"]],[12,13,["H3290"]],[13,15,["H5971"]],[15,17,["H3478"]],[17,19,["H5159"]]]},{"k":15185,"v":[[0,3,["H7462"]],[3,8,["H8537"]],[8,11,["H3824"]],[11,13,["H5148"]],[13,17,["H8394"]],[17,20,["H3709"]]]},{"k":15186,"v":[[0,2,["H430"]],[2,4,["H1471"]],[4,6,["H935"]],[6,9,["H5159","(H853)"]],[9,11,["H6944"]],[11,12,["H1964"]],[12,15,["H2930"]],[15,18,["H7760","(H853)"]],[18,19,["H3389"]],[19,21,["H5856"]]]},{"k":15187,"v":[[0,0,["(H853)"]],[0,3,["H5038"]],[3,6,["H5650"]],[6,9,["H5414"]],[9,12,["H3978"]],[12,15,["H5775"]],[15,18,["H8064"]],[18,20,["H1320"]],[20,23,["H2623"]],[23,26,["H2416"]],[26,29,["H776"]]]},{"k":15188,"v":[[0,2,["H1818"]],[2,5,["H8210"]],[5,7,["H4325"]],[7,9,["H5439"]],[9,10,["H3389"]],[10,14,["H369"]],[14,16,["H6912"]],[16,17,[]]]},{"k":15189,"v":[[0,3,["H1961"]],[3,5,["H2781"]],[5,8,["H7934"]],[8,10,["H3933"]],[10,12,["H7047"]],[12,18,["H5439"]],[18,19,[]]]},{"k":15190,"v":[[0,2,["H5704","H4100"]],[2,3,["H3068"]],[3,7,["H599"]],[7,9,["H5331"]],[9,12,["H7068"]],[12,13,["H1197"]],[13,14,["H3644"]],[14,15,["H784"]]]},{"k":15191,"v":[[0,2,["H8210"]],[2,4,["H2534"]],[4,5,["H413"]],[5,7,["H1471"]],[7,8,["H834"]],[8,10,["H3808"]],[10,11,["H3045"]],[11,14,["H5921"]],[14,16,["H4467"]],[16,17,["H834"]],[17,19,["H408"]],[19,20,["H7121"]],[20,23,["H8034"]]]},{"k":15192,"v":[[0,1,["H3588"]],[1,4,["H398","(H853)"]],[4,5,["H3290"]],[5,8,["H8074"]],[8,11,["H5116"]]]},{"k":15193,"v":[[0,2,["H2142"]],[2,3,["H408"]],[3,6,["H7223"]],[6,7,["H5771"]],[7,11,["H7356"]],[11,12,["H4116"]],[12,13,["H6923"]],[13,15,["H3588"]],[15,20,["H1809","H3966"]]]},{"k":15194,"v":[[0,1,["H5826"]],[1,4,["H430"]],[4,7,["H3468"]],[7,8,["H5921","H1697"]],[8,10,["H3519"]],[10,13,["H8034"]],[13,15,["H5337"]],[15,19,["H3722","H5921"]],[19,21,["H2403"]],[21,25,["H4616","H8034"]]]},{"k":15195,"v":[[0,1,["H4100"]],[1,4,["H1471"]],[4,5,["H559"]],[5,6,["H346"]],[6,9,["H430"]],[9,13,["H3045"]],[13,16,["H1471"]],[16,19,["H5869"]],[19,22,["H5360"]],[22,25,["H1818"]],[25,28,["H5650"]],[28,31,["H8210"]]]},{"k":15196,"v":[[0,3,["H603"]],[3,6,["H615"]],[6,7,["H935"]],[7,8,["H6440"]],[8,13,["H1433"]],[13,16,["H2220"]],[16,17,["H3498"]],[17,22,["H1121"]],[22,24,["H8546"]]]},{"k":15197,"v":[[0,2,["H7725"]],[2,5,["H7934"]],[5,6,["H7659"]],[6,7,["H413"]],[7,9,["H2436"]],[9,11,["H2781"]],[11,12,["H834"]],[12,15,["H2778"]],[15,18,["H136"]]]},{"k":15198,"v":[[0,2,["H587"]],[2,4,["H5971"]],[4,6,["H6629"]],[6,9,["H4830"]],[9,13,["H3034"]],[13,15,["H5769"]],[15,19,["H5608"]],[19,21,["H8416"]],[21,24,["H1755","H1755"]]]},{"k":15199,"v":[[0,2,["H238"]],[2,4,["H7462"]],[4,6,["H3478"]],[6,9,["H5090"]],[9,10,["H3130"]],[10,13,["H6629"]],[13,16,["H3427"]],[16,19,["H3742"]],[19,21,["H3313"]]]},{"k":15200,"v":[[0,1,["H6440"]],[1,2,["H669"]],[2,4,["H1144"]],[4,6,["H4519"]],[6,8,["H5782","(H853)"]],[8,10,["H1369"]],[10,12,["H1980"]],[12,14,["H3444"]],[14,15,[]]]},{"k":15201,"v":[[0,3,["H7725"]],[3,5,["H430"]],[5,9,["H6440"]],[9,11,["H215"]],[11,16,["H3467"]]]},{"k":15202,"v":[[0,2,["H3068"]],[2,3,["H430"]],[3,5,["H6635"]],[5,7,["H5704","H4970"]],[7,11,["H6225"]],[11,14,["H8605"]],[14,17,["H5971"]]]},{"k":15203,"v":[[0,2,["H398"]],[2,6,["H3899"]],[6,8,["H1832"]],[8,12,["H1832"]],[12,14,["H8248"]],[14,17,["H7991"]]]},{"k":15204,"v":[[0,2,["H7760"]],[2,5,["H4066"]],[5,8,["H7934"]],[8,11,["H341"]],[11,12,["H3932"]],[12,14,[]]]},{"k":15205,"v":[[0,3,["H7725"]],[3,5,["H430"]],[5,7,["H6635"]],[7,11,["H6440"]],[11,13,["H215"]],[13,18,["H3467"]]]},{"k":15206,"v":[[0,3,["H5265"]],[3,5,["H1612"]],[5,8,["H4480","H4714"]],[8,12,["H1644"]],[12,14,["H1471"]],[14,16,["H5193"]],[16,17,[]]]},{"k":15207,"v":[[0,2,["H6437"]],[2,4,["H6440"]],[4,13,["H8327","H8328"]],[13,16,["H4390"]],[16,18,["H776"]]]},{"k":15208,"v":[[0,2,["H2022"]],[2,4,["H3680"]],[4,7,["H6738"]],[7,12,["H6057"]],[12,17,["H410"]],[17,18,["H730"]]]},{"k":15209,"v":[[0,3,["H7971"]],[3,5,["H7105"]],[5,6,["H5704"]],[6,8,["H3220"]],[8,11,["H3127"]],[11,12,["H413"]],[12,14,["H5104"]]]},{"k":15210,"v":[[0,1,["H4100"]],[1,6,["H6555"]],[6,8,["H1447"]],[8,11,["H3605"]],[11,15,["H5674"]],[15,17,["H1870"]],[17,19,["H717"]],[19,20,[]]]},{"k":15211,"v":[[0,2,["H2386"]],[2,6,["H4480","H3293"]],[6,8,["H3765"]],[8,13,["H2123"]],[13,16,["H7704"]],[16,18,["H7462"]],[18,19,[]]]},{"k":15212,"v":[[0,1,["H7725"]],[1,3,["H4994"]],[3,6,["H430"]],[6,8,["H6635"]],[8,10,["H5027"]],[10,12,["H4480","H8064"]],[12,14,["H7200"]],[14,16,["H6485"]],[16,17,["H2063"]],[17,18,["H1612"]]]},{"k":15213,"v":[[0,3,["H3657"]],[3,4,["H834"]],[4,7,["H3225"]],[7,9,["H5193"]],[9,12,["H1121"]],[12,16,["H553"]],[16,18,[]]]},{"k":15214,"v":[[0,3,["H8313"]],[3,5,["H784"]],[5,9,["H3683"]],[9,11,["H6"]],[11,14,["H4480","H1606"]],[14,17,["H6440"]]]},{"k":15215,"v":[[0,3,["H3027"]],[3,4,["H1961"]],[4,5,["H5921"]],[5,7,["H376"]],[7,11,["H3225"]],[11,12,["H5921"]],[12,14,["H1121"]],[14,16,["H120"]],[16,20,["H553"]],[20,22,[]]]},{"k":15216,"v":[[0,3,["H3808"]],[3,6,["H5472"]],[6,7,["H4480"]],[7,9,["H2421"]],[9,14,["H7121"]],[14,17,["H8034"]]]},{"k":15217,"v":[[0,3,["H7725"]],[3,5,["H3068"]],[5,6,["H430"]],[6,8,["H6635"]],[8,11,["H6440"]],[11,13,["H215"]],[13,18,["H3467"]]]},{"k":15218,"v":[[0,2,["H7442"]],[2,4,["H430"]],[4,6,["H5797"]],[6,10,["H7321"]],[10,13,["H430"]],[13,15,["H3290"]]]},{"k":15219,"v":[[0,1,["H5375"]],[1,3,["H2172"]],[3,5,["H5414"]],[5,8,["H8596"]],[8,10,["H5273"]],[10,11,["H3658"]],[11,12,["H5973"]],[12,14,["H5035"]]]},{"k":15220,"v":[[0,2,["H8628"]],[2,4,["H7782"]],[4,8,["H2320"]],[8,12,["H3677"]],[12,16,["H2282"]],[16,17,["H3117"]]]},{"k":15221,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,5,["H2706"]],[5,7,["H3478"]],[7,10,["H4941"]],[10,13,["H430"]],[13,15,["H3290"]]]},{"k":15222,"v":[[0,3,["H7760"]],[3,5,["H3084"]],[5,8,["H5715"]],[8,12,["H3318"]],[12,13,["H5921"]],[13,15,["H776"]],[15,17,["H4714"]],[17,20,["H8085"]],[20,22,["H8193"]],[22,25,["H3045"]],[25,26,["H3808"]]]},{"k":15223,"v":[[0,2,["H5493"]],[2,4,["H7926"]],[4,7,["H4480","H5447"]],[7,9,["H3709"]],[9,11,["H5674"]],[11,14,["H4480","H1731"]]]},{"k":15224,"v":[[0,2,["H7121"]],[2,4,["H6869"]],[4,7,["H2502"]],[7,10,["H6030"]],[10,15,["H5643"]],[15,17,["H7482"]],[17,19,["H974"]],[19,21,["H5921"]],[21,23,["H4325"]],[23,25,["H4809"]],[25,26,["H5542"]]]},{"k":15225,"v":[[0,1,["H8085"]],[1,4,["H5971"]],[4,8,["H5749"]],[8,12,["H3478"]],[12,13,["H518"]],[13,16,["H8085"]],[16,18,[]]]},{"k":15226,"v":[[0,3,["H3808"]],[3,4,["H2114"]],[4,5,["H410"]],[5,6,["H1961"]],[6,9,["H3808"]],[9,12,["H7812"]],[12,14,["H5236"]],[14,15,["H410"]]]},{"k":15227,"v":[[0,1,["H595"]],[1,4,["H3068"]],[4,6,["H430"]],[6,8,["H5927"]],[8,13,["H4480","H776"]],[13,15,["H4714"]],[15,18,["H6310"]],[18,19,["H7337"]],[19,23,["H4390"]],[23,24,[]]]},{"k":15228,"v":[[0,3,["H5971"]],[3,5,["H3808"]],[5,6,["H8085"]],[6,9,["H6963"]],[9,11,["H3478"]],[11,12,["H14"]],[12,13,["H3808"]],[13,15,[]]]},{"k":15229,"v":[[0,5,["H7971"]],[5,9,["H3820"]],[9,10,["H8307"]],[10,13,["H1980"]],[13,17,["H4156"]]]},{"k":15230,"v":[[0,2,["H3863"]],[2,4,["H5971"]],[4,6,["H8085"]],[6,10,["H3478"]],[10,12,["H1980"]],[12,15,["H1870"]]]},{"k":15231,"v":[[0,3,["H4592"]],[3,5,["H3665"]],[5,7,["H341"]],[7,9,["H7725"]],[9,11,["H3027"]],[11,12,["H5921"]],[12,14,["H6862"]]]},{"k":15232,"v":[[0,2,["H8130"]],[2,5,["H3068"]],[5,8,["H3584"]],[8,14,["H6256"]],[14,17,["H1961"]],[17,19,["H5769"]]]},{"k":15233,"v":[[0,4,["H398"]],[4,9,["H4480","H2459"]],[9,12,["H2406"]],[12,15,["H1706"]],[15,19,["H4480","H6697"]],[19,23,["H7646"]],[23,24,[]]]},{"k":15234,"v":[[0,1,["H430"]],[1,2,["H5324"]],[2,5,["H5712"]],[5,8,["H410"]],[8,10,["H8199"]],[10,11,["H7130"]],[11,13,["H430"]]]},{"k":15235,"v":[[0,2,["H5704","H4970"]],[2,5,["H8199"]],[5,6,["H5766"]],[6,8,["H5375"]],[8,10,["H6440"]],[10,13,["H7563"]],[13,14,["H5542"]]]},{"k":15236,"v":[[0,1,["H8199"]],[1,3,["H1800"]],[3,5,["H3490"]],[5,7,["H6663"]],[7,10,["H6041"]],[10,12,["H7326"]]]},{"k":15237,"v":[[0,1,["H6403"]],[1,3,["H1800"]],[3,5,["H34"]],[5,6,["H5337"]],[6,11,["H4480","H3027"]],[11,14,["H7563"]]]},{"k":15238,"v":[[0,2,["H3045"]],[2,3,["H3808"]],[3,4,["H3808"]],[4,7,["H995"]],[7,10,["H1980"]],[10,12,["H2825"]],[12,13,["H3605"]],[13,15,["H4146"]],[15,18,["H776"]],[18,22,["H4131"]]]},{"k":15239,"v":[[0,1,["H589"]],[1,3,["H559"]],[3,6,["H430"]],[6,8,["H3605"]],[8,10,["H859"]],[10,12,["H1121"]],[12,16,["H5945"]]]},{"k":15240,"v":[[0,1,["H403"]],[1,4,["H4191"]],[4,6,["H120"]],[6,8,["H5307"]],[8,10,["H259"]],[10,13,["H8269"]]]},{"k":15241,"v":[[0,1,["H6965"]],[1,3,["H430"]],[3,4,["H8199"]],[4,6,["H776"]],[6,7,["H3588"]],[7,8,["H859"]],[8,10,["H5157"]],[10,11,["H3605"]],[11,12,["H1471"]]]},{"k":15242,"v":[[0,4,["H408","H1824"]],[4,6,["H430"]],[6,10,["H2790","H408"]],[10,13,["H408"]],[13,14,["H8252"]],[14,16,["H410"]]]},{"k":15243,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H341"]],[4,7,["H1993"]],[7,11,["H8130"]],[11,15,["H5375"]],[15,17,["H7218"]]]},{"k":15244,"v":[[0,4,["H6191"]],[4,5,["H5475"]],[5,6,["H5921"]],[6,8,["H5971"]],[8,10,["H3289"]],[10,11,["H5921"]],[11,14,["H6845"]]]},{"k":15245,"v":[[0,3,["H559"]],[3,4,["H1980"]],[4,10,["H3582"]],[10,14,["H4480","H1471"]],[14,17,["H8034"]],[17,19,["H3478"]],[19,22,["H3808"]],[22,23,["H5750"]],[23,25,["H2142"]]]},{"k":15246,"v":[[0,1,["H3588"]],[1,5,["H3289"]],[5,8,["H3820","H3162"]],[8,11,["H1285","H3772"]],[11,12,["H5921"]],[12,13,[]]]},{"k":15247,"v":[[0,2,["H168"]],[2,4,["H123"]],[4,7,["H3459"]],[7,9,["H4124"]],[9,12,["H1905"]]]},{"k":15248,"v":[[0,1,["H1381"]],[1,3,["H5983"]],[3,5,["H6002"]],[5,7,["H6429"]],[7,8,["H5973"]],[8,10,["H3427"]],[10,12,["H6865"]]]},{"k":15249,"v":[[0,1,["H804"]],[1,2,["H1571"]],[2,4,["H3867"]],[4,5,["H5973"]],[5,8,["H1961"]],[8,9,["H2220"]],[9,11,["H1121"]],[11,13,["H3876"]],[13,14,["H5542"]]]},{"k":15250,"v":[[0,1,["H6213"]],[1,7,["H4080"]],[7,10,["H5516"]],[10,13,["H2985"]],[13,16,["H5158"]],[16,18,["H7028"]]]},{"k":15251,"v":[[0,2,["H8045"]],[2,4,["H5874"]],[4,6,["H1961"]],[6,8,["H1828"]],[8,11,["H127"]]]},{"k":15252,"v":[[0,1,["H7896"]],[1,3,["H5081"]],[3,5,["H6159"]],[5,8,["H2062"]],[8,10,["H3605"]],[10,12,["H5257"]],[12,14,["H2078"]],[14,17,["H6759"]]]},{"k":15253,"v":[[0,1,["H834"]],[1,2,["H559"]],[2,5,["H3423"]],[5,7,["(H853)"]],[7,9,["H4999"]],[9,11,["H430"]],[11,13,[]]]},{"k":15254,"v":[[0,3,["H430"]],[3,4,["H7896"]],[4,8,["H1534"]],[8,11,["H7179"]],[11,12,["H6440"]],[12,14,["H7307"]]]},{"k":15255,"v":[[0,3,["H784"]],[3,4,["H1197"]],[4,6,["H3293"]],[6,10,["H3852"]],[10,15,["H2022","H3857"]]]},{"k":15256,"v":[[0,1,["H3651"]],[1,2,["H7291"]],[2,6,["H5591"]],[6,10,["H926"]],[10,13,["H5492"]]]},{"k":15257,"v":[[0,1,["H4390"]],[1,3,["H6440"]],[3,5,["H7036"]],[5,9,["H1245"]],[9,11,["H8034"]],[11,13,["H3068"]]]},{"k":15258,"v":[[0,4,["H954"]],[4,6,["H926"]],[6,8,["H5704","H5703"]],[8,15,["H2659"]],[15,17,["H6"]]]},{"k":15259,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H859"]],[6,8,["H8034"]],[8,9,["H905"]],[9,11,["H3068"]],[11,15,["H5945"]],[15,16,["H5921"]],[16,17,["H3605"]],[17,19,["H776"]]]},{"k":15260,"v":[[0,1,["H4100"]],[1,2,["H3039"]],[2,5,["H4908"]],[5,7,["H3068"]],[7,9,["H6635"]]]},{"k":15261,"v":[[0,2,["H5315"]],[2,3,["H3700"]],[3,5,["H1571"]],[5,6,["H3615"]],[6,9,["H2691"]],[9,12,["H3068"]],[12,14,["H3820"]],[14,17,["H1320"]],[17,19,["H7442"]],[19,20,["H413"]],[20,22,["H2416"]],[22,23,["H410"]]]},{"k":15262,"v":[[0,1,["H1571"]],[1,3,["H6833"]],[3,5,["H4672"]],[5,7,["H1004"]],[7,10,["H1866"]],[10,12,["H7064"]],[12,15,["H834"]],[15,18,["H7896"]],[18,20,["H667"]],[20,21,["(H853)"]],[21,23,["H4196"]],[23,25,["H3068"]],[25,27,["H6635"]],[27,29,["H4428"]],[29,32,["H430"]]]},{"k":15263,"v":[[0,1,["H835"]],[1,5,["H3427"]],[5,8,["H1004"]],[8,12,["H5750"]],[12,13,["H1984"]],[13,15,["H5542"]]]},{"k":15264,"v":[[0,1,["H835"]],[1,4,["H120"]],[4,6,["H5797"]],[6,12,["H3824"]],[12,15,["H4546"]],[15,17,[]]]},{"k":15265,"v":[[0,2,["H5674"]],[2,5,["H6010"]],[5,7,["H1056"]],[7,8,["H7896"]],[8,11,["H4599"]],[11,13,["H4175"]],[13,14,["H1571"]],[14,15,["H5844"]],[15,17,["H1293"]]]},{"k":15266,"v":[[0,2,["H1980"]],[2,4,["H4480","H2428"]],[4,5,["H413"]],[5,6,["H2428"]],[6,12,["H6726"]],[12,13,["H7200"]],[13,14,["H413"]],[14,15,["H430"]]]},{"k":15267,"v":[[0,2,["H3068"]],[2,3,["H430"]],[3,5,["H6635"]],[5,6,["H8085"]],[6,8,["H8605"]],[8,10,["H238"]],[10,12,["H430"]],[12,14,["H3290"]],[14,15,["H5542"]]]},{"k":15268,"v":[[0,1,["H7200"]],[1,3,["H430"]],[3,5,["H4043"]],[5,8,["H5027"]],[8,10,["H6440"]],[10,13,["H4899"]]]},{"k":15269,"v":[[0,1,["H3588"]],[1,3,["H3117"]],[3,6,["H2691"]],[6,8,["H2896"]],[8,11,["H4480","H505"]],[11,14,["H977"]],[14,17,["H5605"]],[17,20,["H1004"]],[20,23,["H430"]],[23,26,["H4480","H1752"]],[26,29,["H168"]],[29,31,["H7562"]]]},{"k":15270,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,4,["H430"]],[4,7,["H8121"]],[7,9,["H4043"]],[9,11,["H3068"]],[11,13,["H5414"]],[13,14,["H2580"]],[14,16,["H3519"]],[16,17,["H3808"]],[17,18,["H2896"]],[18,22,["H4513"]],[22,26,["H1980"]],[26,27,["H8549"]]]},{"k":15271,"v":[[0,2,["H3068"]],[2,4,["H6635"]],[4,5,["H835"]],[5,8,["H120"]],[8,10,["H982"]],[10,12,[]]]},{"k":15272,"v":[[0,1,["H3068"]],[1,5,["H7521"]],[5,8,["H776"]],[8,12,["H7725"]],[12,14,["H7622"]],[14,16,["H3290"]]]},{"k":15273,"v":[[0,3,["H5375"]],[3,5,["H5771"]],[5,8,["H5971"]],[8,11,["H3680"]],[11,12,["H3605"]],[12,14,["H2403"]],[14,15,["H5542"]]]},{"k":15274,"v":[[0,4,["H622"]],[4,5,["H3605"]],[5,7,["H5678"]],[7,10,["H7725"]],[10,14,["H4480","H2740"]],[14,17,["H639"]]]},{"k":15275,"v":[[0,1,["H7725"]],[1,4,["H430"]],[4,7,["H3468"]],[7,11,["H3708"]],[11,12,["H5973"]],[12,15,["H6565"]]]},{"k":15276,"v":[[0,4,["H599"]],[4,8,["H5769"]],[8,12,["H4900"]],[12,14,["H639"]],[14,17,["H1755","H1755"]]]},{"k":15277,"v":[[0,2,["H859"]],[2,3,["H3808"]],[3,4,["H2421"]],[4,6,["H7725"]],[6,9,["H5971"]],[9,11,["H8055"]],[11,13,[]]]},{"k":15278,"v":[[0,1,["H7200"]],[1,4,["H2617"]],[4,6,["H3068"]],[6,8,["H5414"]],[8,11,["H3468"]]]},{"k":15279,"v":[[0,3,["H8085"]],[3,4,["H4100"]],[4,5,["H410"]],[5,7,["H3068"]],[7,9,["H1696"]],[9,10,["H3588"]],[10,13,["H1696"]],[13,14,["H7965"]],[14,15,["H413"]],[15,17,["H5971"]],[17,19,["H413"]],[19,21,["H2623"]],[21,25,["H408"]],[25,27,["H7725"]],[27,29,["H3690"]]]},{"k":15280,"v":[[0,1,["H389"]],[1,3,["H3468"]],[3,5,["H7138"]],[5,8,["H3373"]],[8,11,["H3519"]],[11,13,["H7931"]],[13,16,["H776"]]]},{"k":15281,"v":[[0,1,["H2617"]],[1,3,["H571"]],[3,6,["H6298"]],[6,7,["H6664"]],[7,9,["H7965"]],[9,11,["H5401"]],[11,13,[]]]},{"k":15282,"v":[[0,1,["H571"]],[1,3,["H6779"]],[3,7,["H4480","H776"]],[7,9,["H6664"]],[9,12,["H8259"]],[12,14,["H4480","H8064"]]]},{"k":15283,"v":[[0,1,["H1571"]],[1,3,["H3068"]],[3,5,["H5414"]],[5,9,["H2896"]],[9,12,["H776"]],[12,14,["H5414"]],[14,16,["H2981"]]]},{"k":15284,"v":[[0,1,["H6664"]],[1,3,["H1980"]],[3,4,["H6440"]],[4,8,["H7760"]],[8,12,["H1870"]],[12,15,["H6471"]]]},{"k":15285,"v":[[0,2,["H5186"]],[2,4,["H241"]],[4,6,["H3068"]],[6,7,["H6030"]],[7,9,["H3588"]],[9,10,["H589"]],[10,12,["H6041"]],[12,14,["H34"]]]},{"k":15286,"v":[[0,1,["H8104"]],[1,3,["H5315"]],[3,4,["H3588"]],[4,5,["H589"]],[5,7,["H2623"]],[7,9,["H859"]],[9,11,["H430"]],[11,12,["H3467"]],[12,14,["H5650"]],[14,16,["H982"]],[16,18,["H413"]]]},{"k":15287,"v":[[0,2,["H2603"]],[2,6,["H136"]],[6,7,["H3588"]],[7,9,["H7121"]],[9,10,["H413"]],[10,12,["H3605","H3117"]]]},{"k":15288,"v":[[0,1,["H8055"]],[1,3,["H5315"]],[3,6,["H5650"]],[6,7,["H3588"]],[7,8,["H413"]],[8,11,["H136"]],[11,15,["H5375"]],[15,17,["H5315"]]]},{"k":15289,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,3,["H136"]],[3,5,["H2896"]],[5,9,["H5546"]],[9,11,["H7227"]],[11,13,["H2617"]],[13,15,["H3605"]],[15,19,["H7121"]],[19,20,[]]]},{"k":15290,"v":[[0,2,["H238"]],[2,4,["H3068"]],[4,7,["H8605"]],[7,9,["H7181"]],[9,12,["H6963"]],[12,15,["H8469"]]]},{"k":15291,"v":[[0,3,["H3117"]],[3,6,["H6869"]],[6,10,["H7121"]],[10,12,["H3588"]],[12,15,["H6030"]],[15,16,[]]]},{"k":15292,"v":[[0,3,["H430"]],[3,6,["H369"]],[6,9,["H3644"]],[9,11,["H136"]],[11,12,["H369"]],[12,20,["H4639"]]]},{"k":15293,"v":[[0,1,["H3605"]],[1,2,["H1471"]],[2,3,["H834"]],[3,6,["H6213"]],[6,8,["H935"]],[8,10,["H7812"]],[10,11,["H6440"]],[11,14,["H136"]],[14,17,["H3513"]],[17,19,["H8034"]]]},{"k":15294,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H1419"]],[4,6,["H6213"]],[6,8,["H6381"]],[8,9,["H859"]],[9,11,["H430"]],[11,12,["H905"]]]},{"k":15295,"v":[[0,1,["H3384"]],[1,4,["H1870"]],[4,6,["H3068"]],[6,9,["H1980"]],[9,12,["H571"]],[12,13,["H3161"]],[13,15,["H3824"]],[15,17,["H3372"]],[17,19,["H8034"]]]},{"k":15296,"v":[[0,3,["H3034"]],[3,6,["H136"]],[6,8,["H430"]],[8,10,["H3605"]],[10,12,["H3824"]],[12,16,["H3513"]],[16,18,["H8034"]],[18,20,["H5769"]]]},{"k":15297,"v":[[0,1,["H3588"]],[1,2,["H1419"]],[2,5,["H2617"]],[5,6,["H5921"]],[6,11,["H5337"]],[11,13,["H5315"]],[13,16,["H8482"]],[16,17,["H4480","H7585"]]]},{"k":15298,"v":[[0,2,["H430"]],[2,4,["H2086"]],[4,6,["H6965"]],[6,7,["H5921"]],[7,11,["H5712"]],[11,13,["H6184"]],[13,17,["H1245"]],[17,19,["H5315"]],[19,22,["H3808"]],[22,23,["H7760"]],[23,25,["H5048"]],[25,26,[]]]},{"k":15299,"v":[[0,2,["H859"]],[2,4,["H136"]],[4,7,["H410"]],[7,10,["H7349"]],[10,12,["H2587"]],[12,13,["H750","H639"]],[13,15,["H7227"]],[15,17,["H2617"]],[17,19,["H571"]]]},{"k":15300,"v":[[0,2,["H6437"]],[2,3,["H413"]],[3,7,["H2603"]],[7,10,["H5414"]],[10,12,["H5797"]],[12,15,["H5650"]],[15,17,["H3467"]],[17,19,["H1121"]],[19,22,["H519"]]]},{"k":15301,"v":[[0,1,["H6213","H5973"]],[1,4,["H226"]],[4,6,["H2896"]],[6,10,["H8130"]],[10,13,["H7200"]],[13,17,["H954"]],[17,18,["H3588"]],[18,19,["H859"]],[19,20,["H3068"]],[20,22,["H5826"]],[22,25,["H5162"]],[25,26,[]]]},{"k":15302,"v":[[0,2,["H3248"]],[2,6,["H6944"]],[6,7,["H2042"]]]},{"k":15303,"v":[[0,2,["H3068"]],[2,3,["H157"]],[3,5,["H8179"]],[5,7,["H6726"]],[7,10,["H4480","H3605"]],[10,12,["H4908"]],[12,14,["H3290"]]]},{"k":15304,"v":[[0,2,["H3513"]],[2,4,["H1696"]],[4,8,["H5892"]],[8,10,["H430"]],[10,11,["H5542"]]]},{"k":15305,"v":[[0,4,["H2142"]],[4,6,["H7294"]],[6,8,["H894"]],[8,12,["H3045"]],[12,14,["H2009"]],[14,15,["H6429"]],[15,17,["H6865"]],[17,18,["H5973"]],[18,19,["H3568"]],[19,20,["H2088"]],[20,23,["H3205"]],[23,24,["H8033"]]]},{"k":15306,"v":[[0,3,["H6726"]],[3,7,["H559"]],[7,8,["H376"]],[8,11,["H376"]],[11,13,["H3205"]],[13,18,["H5945"]],[18,19,["H1931"]],[19,21,["H3559"]],[21,22,[]]]},{"k":15307,"v":[[0,2,["H3068"]],[2,4,["H5608"]],[4,8,["H3789"]],[8,10,["H5971"]],[10,12,["H2088"]],[12,15,["H3205"]],[15,16,["H8033"]],[16,17,["H5542"]]]},{"k":15308,"v":[[0,4,["H7891"]],[4,9,["H2490"]],[9,13,["H3605"]],[13,15,["H4599"]],[15,18,[]]]},{"k":15309,"v":[[0,2,["H3068"]],[2,3,["H430"]],[3,6,["H3444"]],[6,9,["H6817"]],[9,10,["H3117"]],[10,12,["H3915"]],[12,13,["H5048"]],[13,14,[]]]},{"k":15310,"v":[[0,3,["H8605"]],[3,4,["H935"]],[4,5,["H6440"]],[5,7,["H5186"]],[7,9,["H241"]],[9,12,["H7440"]]]},{"k":15311,"v":[[0,1,["H3588"]],[1,3,["H5315"]],[3,5,["H7646"]],[5,7,["H7451"]],[7,10,["H2416"]],[10,12,["H5060"]],[12,15,["H7585"]]]},{"k":15312,"v":[[0,3,["H2803"]],[3,4,["H5973"]],[4,8,["H3381"]],[8,11,["H953"]],[11,13,["H1961"]],[13,16,["H1397"]],[16,19,["H369"]],[19,20,["H353"]]]},{"k":15313,"v":[[0,1,["H2670"]],[1,4,["H4191"]],[4,5,["H3644"]],[5,7,["H2491"]],[7,9,["H7901"]],[9,12,["H6913"]],[12,13,["H834"]],[13,15,["H2142"]],[15,16,["H3808"]],[16,17,["H5750"]],[17,19,["H1992"]],[19,22,["H1504"]],[22,25,["H4480","H3027"]]]},{"k":15314,"v":[[0,3,["H7896"]],[3,7,["H8482"]],[7,8,["H953"]],[8,10,["H4285"]],[10,13,["H4688"]]]},{"k":15315,"v":[[0,2,["H2534"]],[2,4,["H5564"]],[4,5,["H5921"]],[5,10,["H6031"]],[10,13,["H3605"]],[13,15,["H4867"]],[15,16,["H5542"]]]},{"k":15316,"v":[[0,4,["H7368"]],[4,6,["H3045"]],[6,8,["H4480"]],[8,12,["H7896"]],[12,15,["H8441"]],[15,21,["H3607"]],[21,24,["H3808"]],[24,26,["H3318"]]]},{"k":15317,"v":[[0,2,["H5869"]],[2,3,["H1669"]],[3,6,["H4480"]],[6,7,["H6040"]],[7,8,["H3068"]],[8,11,["H7121"]],[11,12,["H3605","H3117"]],[12,18,["H7849"]],[18,20,["H3709"]],[20,22,["H413"]]]},{"k":15318,"v":[[0,3,["H6213"]],[3,4,["H6382"]],[4,7,["H4191"]],[7,10,["H7496"]],[10,11,["H6965"]],[11,13,["H3034"]],[13,15,["H5542"]]]},{"k":15319,"v":[[0,3,["H2617"]],[3,5,["H5608"]],[5,8,["H6913"]],[8,11,["H530"]],[11,13,["H11"]]]},{"k":15320,"v":[[0,3,["H6382"]],[3,5,["H3045"]],[5,8,["H2822"]],[8,11,["H6666"]],[11,14,["H776"]],[14,16,["H5388"]]]},{"k":15321,"v":[[0,2,["H413"]],[2,5,["H589"]],[5,6,["H7768"]],[6,8,["H3068"]],[8,12,["H1242"]],[12,15,["H8605"]],[15,16,["H6923"]],[16,17,[]]]},{"k":15322,"v":[[0,1,["H3068"]],[1,2,["H4100"]],[2,5,["H2186"]],[5,7,["H5315"]],[7,9,["H5641"]],[9,12,["H6440"]],[12,13,["H4480"]],[13,14,[]]]},{"k":15323,"v":[[0,1,["H589"]],[1,3,["H6041"]],[3,7,["H1478"]],[7,11,["H4480","H5290"]],[11,14,["H5375"]],[14,16,["H367"]],[16,19,["H6323"]]]},{"k":15324,"v":[[0,3,["H2740"]],[3,4,["H5674"]],[4,5,["H5921"]],[5,8,["H1161"]],[8,12,["H6789"]]]},{"k":15325,"v":[[0,4,["H5437"]],[4,6,["H3605","H3117"]],[6,8,["H4325"]],[8,12,["H5362","H5921"]],[12,13,["H3162"]]]},{"k":15326,"v":[[0,1,["H157"]],[1,3,["H7453"]],[3,7,["H7368"]],[7,8,["H4480"]],[8,12,["H3045"]],[12,14,["H4285"]]]},{"k":15327,"v":[[0,3,["H7891"]],[3,6,["H2617"]],[6,9,["H3068"]],[9,11,["H5769"]],[11,14,["H6310"]],[14,18,["H3045"]],[18,20,["H530"]],[20,23,["H1755","H1755"]]]},{"k":15328,"v":[[0,1,["H3588"]],[1,4,["H559"]],[4,5,["H2617"]],[5,9,["H1129"]],[9,11,["H5769"]],[11,13,["H530"]],[13,16,["H3559"]],[16,20,["H8064"]]]},{"k":15329,"v":[[0,3,["H3772"]],[3,5,["H1285"]],[5,8,["H972"]],[8,11,["H7650"]],[11,13,["H1732"]],[13,15,["H5650"]]]},{"k":15330,"v":[[0,2,["H2233"]],[2,5,["H3559"]],[5,7,["H5704","H5769"]],[7,10,["H1129"]],[10,12,["H3678"]],[12,15,["H1755","H1755"]],[15,16,["H5542"]]]},{"k":15331,"v":[[0,3,["H8064"]],[3,5,["H3034"]],[5,7,["H6382"]],[7,9,["H3068"]],[9,11,["H530"]],[11,12,["H637"]],[12,15,["H6951"]],[15,18,["H6918"]]]},{"k":15332,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,5,["H7834"]],[5,8,["H6186"]],[8,11,["H3068"]],[11,15,["H1121"]],[15,18,["H410"]],[18,21,["H1819"]],[21,24,["H3068"]]]},{"k":15333,"v":[[0,1,["H410"]],[1,3,["H7227"]],[3,6,["H6206"]],[6,9,["H5475"]],[9,12,["H6918"]],[12,18,["H3372"]],[18,19,["H5921"]],[19,20,["H3605"]],[20,24,["H5439"]],[24,25,[]]]},{"k":15334,"v":[[0,2,["H3068"]],[2,3,["H430"]],[3,5,["H6635"]],[5,6,["H4310"]],[6,9,["H2626"]],[9,10,["H3050"]],[10,13,["H3644"]],[13,17,["H530"]],[17,19,["H5439"]],[19,20,[]]]},{"k":15335,"v":[[0,1,["H859"]],[1,2,["H4910"]],[2,4,["H1348"]],[4,7,["H3220"]],[7,10,["H1530"]],[10,12,["H7721"]],[12,13,["H859"]],[13,14,["H7623"]],[14,15,[]]]},{"k":15336,"v":[[0,1,["H859"]],[1,3,["H1792"]],[3,4,["H7294"]],[4,11,["H2491"]],[11,14,["H6340"]],[14,16,["H341"]],[16,19,["H5797"]],[19,20,["H2220"]]]},{"k":15337,"v":[[0,2,["H8064"]],[2,6,["H776"]],[6,7,["H637"]],[7,13,["H8398"]],[13,16,["H4393"]],[16,18,["H859"]],[18,20,["H3245"]],[20,21,[]]]},{"k":15338,"v":[[0,2,["H6828"]],[2,5,["H3225"]],[5,6,["H859"]],[6,8,["H1254"]],[8,10,["H8396"]],[10,12,["H2768"]],[12,14,["H7442"]],[14,17,["H8034"]]]},{"k":15339,"v":[[0,4,["H1369"]],[4,5,["H2220"]],[5,6,["H5810"]],[6,9,["H3027"]],[9,11,["H7311"]],[11,15,["H3225"]]]},{"k":15340,"v":[[0,1,["H6664"]],[1,3,["H4941"]],[3,6,["H4349"]],[6,9,["H3678"]],[9,10,["H2617"]],[10,12,["H571"]],[12,14,["H6923"]],[14,17,["H6440"]]]},{"k":15341,"v":[[0,1,["H835"]],[1,4,["H5971"]],[4,6,["H3045"]],[6,9,["H8643"]],[9,12,["H1980"]],[12,14,["H3068"]],[14,17,["H216"]],[17,20,["H6440"]]]},{"k":15342,"v":[[0,3,["H8034"]],[3,6,["H1523"]],[6,7,["H3605"]],[7,9,["H3117"]],[9,13,["H6666"]],[13,17,["H7311"]]]},{"k":15343,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,5,["H8597"]],[5,8,["H5797"]],[8,12,["H7522"]],[12,14,["H7161"]],[14,17,["H7311"]]]},{"k":15344,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,6,["H4043"]],[6,10,["H6918"]],[10,12,["H3478"]],[12,15,["H4428"]]]},{"k":15345,"v":[[0,1,["H227"]],[1,3,["H1696"]],[3,5,["H2377"]],[5,9,["H2623"]],[9,11,["H559"]],[11,14,["H7737"]],[14,15,["H5828"]],[15,16,["H5921"]],[16,20,["H1368"]],[20,23,["H7311"]],[23,25,["H970"]],[25,29,["H4480","H5971"]]]},{"k":15346,"v":[[0,3,["H4672"]],[3,4,["H1732"]],[4,6,["H5650"]],[6,9,["H6944"]],[9,10,["H8081"]],[10,13,["H4886"]],[13,14,[]]]},{"k":15347,"v":[[0,1,["H5973"]],[1,2,["H834"]],[2,4,["H3027"]],[4,7,["H3559"]],[7,9,["H2220"]],[9,10,["H637"]],[10,12,["H553"]],[12,13,[]]]},{"k":15348,"v":[[0,2,["H341"]],[2,4,["H3808"]],[4,5,["H5378"]],[5,8,["H3808"]],[8,10,["H1121"]],[10,12,["H5766"]],[12,13,["H6031"]],[13,14,[]]]},{"k":15349,"v":[[0,5,["H3807"]],[5,7,["H6862"]],[7,10,["H4480","H6440"]],[10,12,["H5062"]],[12,15,["H8130"]],[15,16,[]]]},{"k":15350,"v":[[0,3,["H530"]],[3,6,["H2617"]],[6,9,["H5973"]],[9,14,["H8034"]],[14,17,["H7161"]],[17,19,["H7311"]]]},{"k":15351,"v":[[0,3,["H7760"]],[3,5,["H3027"]],[5,9,["H3220"]],[9,13,["H3225"]],[13,16,["H5104"]]]},{"k":15352,"v":[[0,1,["H1931"]],[1,3,["H7121"]],[3,6,["H859"]],[6,9,["H1"]],[9,11,["H410"]],[11,14,["H6697"]],[14,17,["H3444"]]]},{"k":15353,"v":[[0,1,["H637"]],[1,2,["H589"]],[2,4,["H5414"]],[4,7,["H1060"]],[7,8,["H5945"]],[8,11,["H4428"]],[11,14,["H776"]]]},{"k":15354,"v":[[0,2,["H2617"]],[2,5,["H8104"]],[5,9,["H5769"]],[9,12,["H1285"]],[12,15,["H539"]],[15,17,[]]]},{"k":15355,"v":[[0,2,["H2233"]],[2,6,["H7760"]],[6,10,["H5703"]],[10,13,["H3678"]],[13,16,["H3117"]],[16,18,["H8064"]]]},{"k":15356,"v":[[0,1,["H518"]],[1,3,["H1121"]],[3,4,["H5800"]],[4,6,["H8451"]],[6,8,["H1980"]],[8,9,["H3808"]],[9,12,["H4941"]]]},{"k":15357,"v":[[0,1,["H518"]],[1,3,["H2490"]],[3,5,["H2708"]],[5,7,["H8104"]],[7,8,["H3808"]],[8,10,["H4687"]]]},{"k":15358,"v":[[0,4,["H6485"]],[4,6,["H6588"]],[6,9,["H7626"]],[9,12,["H5771"]],[12,14,["H5061"]]]},{"k":15359,"v":[[0,3,["H2617"]],[3,6,["H3808"]],[6,8,["H6331"]],[8,9,["H4480","H5973"]],[9,11,["H3808"]],[11,16,["H8266","H530"]]]},{"k":15360,"v":[[0,2,["H1285"]],[2,5,["H3808"]],[5,6,["H2490"]],[6,7,["H3808"]],[7,8,["H8138"]],[8,14,["H4161"]],[14,17,["H8193"]]]},{"k":15361,"v":[[0,1,["H259"]],[1,4,["H7650"]],[4,7,["H6944"]],[7,11,["H518"]],[11,12,["H3576"]],[12,14,["H1732"]]]},{"k":15362,"v":[[0,2,["H2233"]],[2,4,["H1961"]],[4,6,["H5769"]],[6,9,["H3678"]],[9,12,["H8121"]],[12,13,["H5048"]],[13,14,[]]]},{"k":15363,"v":[[0,4,["H3559"]],[4,6,["H5769"]],[6,9,["H3394"]],[9,13,["H539"]],[13,14,["H5707"]],[14,16,["H7834"]],[16,17,["H5542"]]]},{"k":15364,"v":[[0,2,["H859"]],[2,5,["H2186"]],[5,7,["H3988"]],[7,11,["H5674"]],[11,12,["H5973"]],[12,14,["H4899"]]]},{"k":15365,"v":[[0,4,["H5010"]],[4,6,["H1285"]],[6,9,["H5650"]],[9,12,["H2490"]],[12,14,["H5145"]],[14,20,["H776"]]]},{"k":15366,"v":[[0,4,["H6555"]],[4,5,["H3605"]],[5,7,["H1448"]],[7,10,["H7760"]],[10,13,["H4013"]],[13,15,["H4288"]]]},{"k":15367,"v":[[0,1,["H3605"]],[1,4,["H5674"]],[4,6,["H1870"]],[6,7,["H8155"]],[7,10,["H1961"]],[10,12,["H2781"]],[12,15,["H7934"]]]},{"k":15368,"v":[[0,4,["H7311"]],[4,7,["H3225"]],[7,10,["H6862"]],[10,14,["H3605"]],[14,16,["H341"]],[16,18,["H8055"]]]},{"k":15369,"v":[[0,3,["H637"]],[3,4,["H7725"]],[4,6,["H6697"]],[6,9,["H2719"]],[9,12,["H3808"]],[12,16,["H6965"]],[16,19,["H4421"]]]},{"k":15370,"v":[[0,5,["H4480","H2892"]],[5,7,["H7673"]],[7,9,["H4048"]],[9,11,["H3678"]],[11,15,["H776"]]]},{"k":15371,"v":[[0,2,["H3117"]],[2,5,["H5934"]],[5,8,["H7114"]],[8,11,["H5844","H5921"]],[11,14,["H955"]],[14,15,["H5542"]]]},{"k":15372,"v":[[0,2,["H5704","H4100"]],[2,3,["H3068"]],[3,7,["H5641"]],[7,9,["H5331"]],[9,12,["H2534"]],[12,13,["H1197"]],[13,14,["H3644"]],[14,15,["H784"]]]},{"k":15373,"v":[[0,1,["H2142"]],[1,2,["H4100"]],[2,3,["H2465"]],[3,4,["H589"]],[4,7,["H5921","H4100"]],[7,10,["H1254"]],[10,11,["H3605"]],[11,12,["H1121","H120"]],[12,14,["H7723"]]]},{"k":15374,"v":[[0,1,["H4310"]],[1,2,["H1397"]],[2,6,["H2421"]],[6,9,["H3808"]],[9,10,["H7200"]],[10,11,["H4194"]],[11,14,["H4422"]],[14,16,["H5315"]],[16,19,["H4480","H3027"]],[19,22,["H7585"]],[22,23,["H5542"]]]},{"k":15375,"v":[[0,1,["H136"]],[1,2,["H346"]],[2,5,["H7223"]],[5,6,["H2617"]],[6,9,["H7650"]],[9,11,["H1732"]],[11,14,["H530"]]]},{"k":15376,"v":[[0,1,["H2142"]],[1,2,["H136"]],[2,4,["H2781"]],[4,7,["H5650"]],[7,11,["H5375"]],[11,14,["H2436"]],[14,18,["H3605"]],[18,20,["H7227"]],[20,21,["H5971"]]]},{"k":15377,"v":[[0,1,["H834"]],[1,3,["H341"]],[3,5,["H2778"]],[5,7,["H3068"]],[7,8,["H834"]],[8,11,["H2778"]],[11,13,["H6119"]],[13,16,["H4899"]]]},{"k":15378,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,6,["H5769"]],[6,7,["H543"]],[7,9,["H543"]]]},{"k":15379,"v":[[0,1,["H136"]],[1,2,["H859"]],[2,4,["H1961"]],[4,7,["H4583"]],[7,10,["H1755","H1755"]]]},{"k":15380,"v":[[0,1,["H2962"]],[1,3,["H2022"]],[3,6,["H3205"]],[6,11,["H2342"]],[11,13,["H776"]],[13,16,["H8398"]],[16,19,["H4480","H5769"]],[19,20,["H5704"]],[20,21,["H5769"]],[21,22,["H859"]],[22,24,["H410"]]]},{"k":15381,"v":[[0,2,["H7725"]],[2,3,["H582"]],[3,4,["H5704"]],[4,5,["H1793"]],[5,7,["H559"]],[7,8,["H7725"]],[8,10,["H1121"]],[10,12,["H120"]]]},{"k":15382,"v":[[0,1,["H3588"]],[1,3,["H505"]],[3,4,["H8141"]],[4,7,["H5869"]],[7,11,["H3117","H865"]],[11,12,["H3588"]],[12,15,["H5674"]],[15,19,["H821"]],[19,22,["H3915"]]]},{"k":15383,"v":[[0,8,["H2229"]],[8,10,["H1961"]],[10,13,["H8142"]],[13,16,["H1242"]],[16,20,["H2682"]],[20,23,["H2498"]]]},{"k":15384,"v":[[0,3,["H1242"]],[3,5,["H6692"]],[5,8,["H2498"]],[8,11,["H6153"]],[11,15,["H4135"]],[15,17,["H3001"]]]},{"k":15385,"v":[[0,1,["H3588"]],[1,4,["H3615"]],[4,7,["H639"]],[7,11,["H2534"]],[11,14,["H926"]]]},{"k":15386,"v":[[0,3,["H7896"]],[3,5,["H5771"]],[5,6,["H5048"]],[6,9,["H5956"]],[9,13,["H3974"]],[13,16,["H6440"]]]},{"k":15387,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H3117"]],[4,7,["H6437"]],[7,10,["H5678"]],[10,12,["H3615"]],[12,14,["H8141"]],[14,15,["H3644"]],[15,17,["H1899"]],[17,20,[]]]},{"k":15388,"v":[[0,2,["H3117"]],[2,5,["H8141"]],[5,10,["H7657","H8141"]],[10,12,["H518"]],[12,16,["H1369"]],[16,19,["H8084"]],[19,20,["H8141"]],[20,24,["H7296"]],[24,25,["H5999"]],[25,27,["H205"]],[27,28,["H3588"]],[28,31,["H2440"]],[31,33,["H1468"]],[33,37,["H5774"]]]},{"k":15389,"v":[[0,1,["H4310"]],[1,2,["H3045"]],[2,4,["H5797"]],[4,7,["H639"]],[7,12,["H3374"]],[12,16,["H5678"]]]},{"k":15390,"v":[[0,1,["H3651"]],[1,2,["H3045"]],[2,5,["H4487"]],[5,7,["H3117"]],[7,11,["H935"]],[11,13,["H3824"]],[13,15,["H2451"]]]},{"k":15391,"v":[[0,1,["H7725"]],[1,3,["H3068"]],[3,5,["H5704","H4970"]],[5,9,["H5162"]],[9,11,["H5921"]],[11,13,["H5650"]]]},{"k":15392,"v":[[0,2,["H7646"]],[2,4,["H1242"]],[4,7,["H2617"]],[7,11,["H7442"]],[11,14,["H8055"]],[14,15,["H3605"]],[15,17,["H3117"]]]},{"k":15393,"v":[[0,3,["H8055"]],[3,7,["H3117"]],[7,11,["H6031"]],[11,15,["H8141"]],[15,19,["H7200"]],[19,20,["H7451"]]]},{"k":15394,"v":[[0,3,["H6467"]],[3,4,["H7200"]],[4,5,["H413"]],[5,7,["H5650"]],[7,10,["H1926"]],[10,11,["H5921"]],[11,13,["H1121"]]]},{"k":15395,"v":[[0,4,["H5278"]],[4,7,["H136"]],[7,9,["H430"]],[9,10,["H1961"]],[10,11,["H5921"]],[11,14,["H3559"]],[14,17,["H4639"]],[17,20,["H3027"]],[20,21,["H5921"]],[21,25,["H4639"]],[25,28,["H3027"]],[28,29,["H3559"]],[29,31,[]]]},{"k":15396,"v":[[0,3,["H3427"]],[3,7,["H5643"]],[7,11,["H5945"]],[11,13,["H3885"]],[13,16,["H6738"]],[16,19,["H7706"]]]},{"k":15397,"v":[[0,3,["H559"]],[3,6,["H3068"]],[6,10,["H4268"]],[10,13,["H4686"]],[13,15,["H430"]],[15,20,["H982"]]]},{"k":15398,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,4,["H5337"]],[4,8,["H4480","H6341"]],[8,11,["H3353"]],[11,16,["H4480","H1698","H1942"]]]},{"k":15399,"v":[[0,3,["H5526"]],[3,7,["H84"]],[7,9,["H8478"]],[9,11,["H3671"]],[11,14,["H2620"]],[14,16,["H571"]],[16,20,["H6793"]],[20,22,["H5507"]]]},{"k":15400,"v":[[0,3,["H3808"]],[3,5,["H3372"]],[5,8,["H4480","H6343"]],[8,10,["H3915"]],[10,14,["H4480","H2671"]],[14,16,["H5774"]],[16,18,["H3119"]]]},{"k":15401,"v":[[0,4,["H4480","H1698"]],[4,6,["H1980"]],[6,8,["H652"]],[8,12,["H4480","H6986"]],[12,14,["H7736"]],[14,16,["H6672"]]]},{"k":15402,"v":[[0,2,["H505"]],[2,4,["H5307"]],[4,7,["H4480","H6654"]],[7,10,["H7233"]],[10,14,["H4480","H3225"]],[14,18,["H3808"]],[18,20,["H5066","H413"]],[20,21,[]]]},{"k":15403,"v":[[0,1,["H7535"]],[1,4,["H5869"]],[4,7,["H5027"]],[7,9,["H7200"]],[9,11,["H8011"]],[11,14,["H7563"]]]},{"k":15404,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H7760"]],[4,6,["H3068"]],[6,10,["H4268"]],[10,14,["H5945"]],[14,16,["H4583"]]]},{"k":15405,"v":[[0,3,["H3808"]],[3,4,["H7451"]],[4,5,["H579","H413"]],[5,7,["H3808"]],[7,10,["H5061"]],[10,12,["H7126"]],[12,14,["H168"]]]},{"k":15406,"v":[[0,1,["H3588"]],[1,6,["H4397"]],[6,7,["H6680"]],[7,11,["H8104"]],[11,14,["H3605"]],[14,16,["H1870"]]]},{"k":15407,"v":[[0,5,["H5375"]],[5,6,["H5921"]],[6,8,["H3709"]],[8,9,["H6435"]],[9,11,["H5062"]],[11,13,["H7272"]],[13,16,["H68"]]]},{"k":15408,"v":[[0,3,["H1869"]],[3,4,["H5921"]],[4,6,["H7826"]],[6,8,["H6620"]],[8,11,["H3715"]],[11,14,["H8577"]],[14,19,["H7429"]]]},{"k":15409,"v":[[0,1,["H3588"]],[1,6,["H2836"]],[6,12,["H6403"]],[12,19,["H7682"]],[19,20,["H3588"]],[20,23,["H3045"]],[23,25,["H8034"]]]},{"k":15410,"v":[[0,4,["H7121"]],[4,9,["H6030"]],[9,11,["H595"]],[11,14,["H5973"]],[14,17,["H6869"]],[17,20,["H2502"]],[20,23,["H3513"]],[23,24,[]]]},{"k":15411,"v":[[0,2,["H753"]],[2,3,["H3117"]],[3,6,["H7646"]],[6,9,["H7200"]],[9,12,["H3444"]]]},{"k":15412,"v":[[0,4,["H2896"]],[4,8,["H3034"]],[8,11,["H3068"]],[11,15,["H2167"]],[15,18,["H8034"]],[18,21,["H5945"]]]},{"k":15413,"v":[[0,3,["H5046"]],[3,5,["H2617"]],[5,8,["H1242"]],[8,11,["H530"]],[11,13,["H3915"]]]},{"k":15414,"v":[[0,1,["H5921"]],[1,6,["H6218"]],[6,8,["H5921"]],[8,10,["H5035"]],[10,13,["H3658"]],[13,14,["H5921"]],[14,17,["H1902"]]]},{"k":15415,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,7,["H8055"]],[7,10,["H6467"]],[10,13,["H7442"]],[13,16,["H4639"]],[16,19,["H3027"]]]},{"k":15416,"v":[[0,2,["H3068"]],[2,3,["H4100"]],[3,4,["H1431"]],[4,7,["H4639"]],[7,10,["H4284"]],[10,12,["H3966"]],[12,13,["H6009"]]]},{"k":15417,"v":[[0,2,["H1198"]],[2,3,["H376"]],[3,4,["H3045"]],[4,5,["H3808"]],[5,6,["H3808"]],[6,9,["H3684"]],[9,10,["H995","(H853)"]],[10,11,["H2063"]]]},{"k":15418,"v":[[0,3,["H7563"]],[3,4,["H6524"]],[4,5,["H3644"]],[5,7,["H6212"]],[7,10,["H3605"]],[10,12,["H6466"]],[12,14,["H205"]],[14,16,["H6692"]],[16,23,["H8045"]],[23,25,["H5703","H5704"]]]},{"k":15419,"v":[[0,2,["H859"]],[2,3,["H3068"]],[3,6,["H4791"]],[6,8,["H5769"]]]},{"k":15420,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H341"]],[4,6,["H3068"]],[6,7,["H3588"]],[7,8,["H2009"]],[8,10,["H341"]],[10,12,["H6"]],[12,13,["H3605"]],[13,15,["H6466"]],[15,17,["H205"]],[17,20,["H6504"]]]},{"k":15421,"v":[[0,3,["H7161"]],[3,6,["H7311"]],[6,12,["H7214"]],[12,16,["H1101"]],[16,18,["H7488"]],[18,19,["H8081"]]]},{"k":15422,"v":[[0,2,["H5869"]],[2,5,["H5027"]],[5,10,["H7790"]],[10,13,["H241"]],[13,15,["H8085"]],[15,20,["H7489"]],[20,23,["H6965"]],[23,24,["H5921"]],[24,25,[]]]},{"k":15423,"v":[[0,2,["H6662"]],[2,4,["H6524"]],[4,8,["H8558"]],[8,11,["H7685"]],[11,14,["H730"]],[14,16,["H3844"]]]},{"k":15424,"v":[[0,4,["H8362"]],[4,7,["H1004"]],[7,10,["H3068"]],[10,12,["H6524"]],[12,15,["H2691"]],[15,18,["H430"]]]},{"k":15425,"v":[[0,3,["H5750"]],[3,6,["H5107"]],[6,9,["H7872"]],[9,12,["H1961"]],[12,13,["H1879"]],[13,15,["H7488"]]]},{"k":15426,"v":[[0,2,["H5046"]],[2,3,["H3588"]],[3,5,["H3068"]],[5,7,["H3477"]],[7,11,["H6697"]],[11,15,["H3808"]],[15,16,["H5766"]],[16,18,[]]]},{"k":15427,"v":[[0,2,["H3068"]],[2,3,["H4427"]],[3,6,["H3847"]],[6,8,["H1348"]],[8,10,["H3068"]],[10,12,["H3847"]],[12,14,["H5797"]],[14,19,["H247"]],[19,21,["H8398"]],[21,22,["H637"]],[22,24,["H3559"]],[24,27,["H1077"]],[27,29,["H4131"]]]},{"k":15428,"v":[[0,2,["H3678"]],[2,4,["H3559"]],[4,6,["H4480","H227"]],[6,7,["H859"]],[7,10,["H4480","H5769"]]]},{"k":15429,"v":[[0,2,["H5104"]],[2,5,["H5375"]],[5,7,["H3068"]],[7,9,["H5104"]],[9,12,["H5375"]],[12,14,["H6963"]],[14,16,["H5104"]],[16,18,["H5375"]],[18,20,["H1796"]]]},{"k":15430,"v":[[0,2,["H3068"]],[2,4,["H4791"]],[4,6,["H117"]],[6,9,["H4480","H6963"]],[9,11,["H7227"]],[11,12,["H4325"]],[12,16,["H117"]],[16,17,["H4867"]],[17,20,["H3220"]]]},{"k":15431,"v":[[0,2,["H5713"]],[2,4,["H3966"]],[4,5,["H539"]],[5,6,["H6944"]],[6,7,["H4998"]],[7,9,["H1004"]],[9,11,["H3068"]],[11,13,["H753","H3117"]]]},{"k":15432,"v":[[0,2,["H3068"]],[2,3,["H410"]],[3,6,["H5360"]],[6,9,["H410"]],[9,12,["H5360"]],[12,15,["H3313"]]]},{"k":15433,"v":[[0,3,["H5375"]],[3,5,["H8199"]],[5,8,["H776"]],[8,9,["H7725"]],[9,11,["H1576"]],[11,12,["H5921"]],[12,14,["H1343"]]]},{"k":15434,"v":[[0,1,["H3068"]],[1,3,["H5704","H4970"]],[3,6,["H7563"]],[6,8,["H5704","H4970"]],[8,11,["H7563"]],[11,12,["H5937"]]]},{"k":15435,"v":[[0,5,["H5042"]],[5,7,["H1696"]],[7,9,["H6277"]],[9,11,["H3605"]],[11,13,["H6466"]],[13,15,["H205"]],[15,17,["H559"]]]},{"k":15436,"v":[[0,4,["H1792"]],[4,6,["H5971"]],[6,8,["H3068"]],[8,10,["H6031"]],[10,12,["H5159"]]]},{"k":15437,"v":[[0,2,["H2026"]],[2,4,["H490"]],[4,7,["H1616"]],[7,9,["H7523"]],[9,11,["H3490"]]]},{"k":15438,"v":[[0,3,["H559"]],[3,5,["H3050"]],[5,7,["H3808"]],[7,8,["H7200"]],[8,9,["H3808"]],[9,12,["H430"]],[12,14,["H3290"]],[14,15,["H995"]],[15,16,[]]]},{"k":15439,"v":[[0,1,["H995"]],[1,3,["H1197"]],[3,6,["H5971"]],[6,9,["H3684"]],[9,10,["H4970"]],[10,14,["H7919"]]]},{"k":15440,"v":[[0,3,["H5193"]],[3,5,["H241"]],[5,8,["H3808"]],[8,9,["H8085"]],[9,12,["H3335"]],[12,14,["H5869"]],[14,17,["H3808"]],[17,18,["H5027"]]]},{"k":15441,"v":[[0,3,["H3256"]],[3,5,["H1471"]],[5,7,["H3808"]],[7,9,["H3198"]],[9,12,["H3925"]],[12,13,["H120"]],[13,14,["H1847"]],[14,18,[]]]},{"k":15442,"v":[[0,2,["H3068"]],[2,3,["H3045"]],[3,5,["H4284"]],[5,7,["H120"]],[7,8,["H3588"]],[8,9,["H1992"]],[9,11,["H1892"]]]},{"k":15443,"v":[[0,1,["H835"]],[1,4,["H1397"]],[4,5,["H834"]],[5,7,["H3256"]],[7,9,["H3050"]],[9,11,["H3925"]],[11,16,["H4480","H8451"]]]},{"k":15444,"v":[[0,6,["H8252"]],[6,9,["H4480","H3117"]],[9,11,["H7451"]],[11,12,["H5704"]],[12,14,["H7845"]],[14,16,["H3738"]],[16,19,["H7563"]]]},{"k":15445,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H3808"]],[5,7,["H5203"]],[7,9,["H5971"]],[9,10,["H3808"]],[10,13,["H5800"]],[13,15,["H5159"]]]},{"k":15446,"v":[[0,1,["H3588"]],[1,2,["H4941"]],[2,4,["H7725"]],[4,5,["H5704"]],[5,6,["H6664"]],[6,8,["H3605"]],[8,10,["H3477"]],[10,12,["H3820"]],[12,14,["H310"]],[14,15,[]]]},{"k":15447,"v":[[0,1,["H4310"]],[1,4,["H6965"]],[4,7,["H5973"]],[7,9,["H7489"]],[9,11,["H4310"]],[11,14,["H3320"]],[14,17,["H5973"]],[17,19,["H6466"]],[19,21,["H205"]]]},{"k":15448,"v":[[0,1,["H3884"]],[1,3,["H3068"]],[3,7,["H5833"]],[7,9,["H5315"]],[9,11,["H4592"]],[11,12,["H7931"]],[12,14,["H1745"]]]},{"k":15449,"v":[[0,1,["H518"]],[1,3,["H559"]],[3,5,["H7272"]],[5,6,["H4131"]],[6,8,["H2617"]],[8,10,["H3068"]],[10,13,["H5582"]]]},{"k":15450,"v":[[0,3,["H7230"]],[3,6,["H8312"]],[6,7,["H7130"]],[7,10,["H8575"]],[10,11,["H8173"]],[11,13,["H5315"]]]},{"k":15451,"v":[[0,3,["H3678"]],[3,5,["H1942"]],[5,7,["H2266"]],[7,11,["H3335"]],[11,12,["H5999"]],[12,13,["H5921"]],[13,15,["H2706"]]]},{"k":15452,"v":[[0,4,["H1413"]],[4,5,["H5921"]],[5,7,["H5315"]],[7,10,["H6662"]],[10,12,["H7561"]],[12,14,["H5355"]],[14,15,["H1818"]]]},{"k":15453,"v":[[0,3,["H3068"]],[3,4,["H1961"]],[4,6,["H4869"]],[6,9,["H430"]],[9,12,["H6697"]],[12,15,["H4268"]]]},{"k":15454,"v":[[0,4,["H7725"]],[4,5,["H5921"]],[5,6,["(H853)"]],[6,9,["H205"]],[9,14,["H6789"]],[14,18,["H7451"]],[18,21,["H3068"]],[21,23,["H430"]],[23,27,["H6789"]]]},{"k":15455,"v":[[0,2,["H1980"]],[2,5,["H7442"]],[5,8,["H3068"]],[8,14,["H7321"]],[14,17,["H6697"]],[17,20,["H3468"]]]},{"k":15456,"v":[[0,4,["H6923"]],[4,6,["H6440"]],[6,8,["H8426"]],[8,13,["H7321"]],[13,17,["H2158"]]]},{"k":15457,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,6,["H1419"]],[6,7,["H410"]],[7,10,["H1419"]],[10,11,["H4428"]],[11,12,["H5921"]],[12,13,["H3605"]],[13,14,["H430"]]]},{"k":15458,"v":[[0,3,["H3027"]],[3,7,["H4278"]],[7,10,["H776"]],[10,12,["H8443"]],[12,15,["H2022"]],[15,18,[]]]},{"k":15459,"v":[[0,2,["H3220"]],[2,6,["H1931"]],[6,7,["H6213"]],[7,11,["H3027"]],[11,12,["H3335"]],[12,14,["H3006"]],[14,15,[]]]},{"k":15460,"v":[[0,2,["H935"]],[2,5,["H7812"]],[5,8,["H3766"]],[8,11,["H1288"]],[11,12,["H6440"]],[12,14,["H3068"]],[14,16,["H6213"]]]},{"k":15461,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,5,["H430"]],[5,7,["H587"]],[7,10,["H5971"]],[10,13,["H4830"]],[13,16,["H6629"]],[16,19,["H3027"]],[19,21,["H3117"]],[21,22,["H518"]],[22,25,["H8085"]],[25,27,["H6963"]]]},{"k":15462,"v":[[0,1,["H7185"]],[1,2,["H408"]],[2,4,["H3824"]],[4,8,["H4808"]],[8,13,["H3117"]],[13,15,["H4531"]],[15,18,["H4057"]]]},{"k":15463,"v":[[0,1,["H834"]],[1,3,["H1"]],[3,4,["H5254"]],[4,6,["H974"]],[6,8,["H1571"]],[8,9,["H7200"]],[9,11,["H6467"]]]},{"k":15464,"v":[[0,1,["H705"]],[1,2,["H8141"]],[2,6,["H6962"]],[6,9,["H1755"]],[9,11,["H559"]],[11,12,["H1992"]],[12,15,["H5971"]],[15,18,["H8582"]],[18,21,["H3824"]],[21,23,["H1992"]],[23,25,["H3808"]],[25,26,["H3045"]],[26,28,["H1870"]]]},{"k":15465,"v":[[0,2,["H834"]],[2,4,["H7650"]],[4,7,["H639"]],[7,8,["H518"]],[8,12,["H935"]],[12,13,["H413"]],[13,15,["H4496"]]]},{"k":15466,"v":[[0,2,["H7891"]],[2,5,["H3068"]],[5,7,["H2319"]],[7,8,["H7892"]],[8,9,["H7891"]],[9,12,["H3068"]],[12,13,["H3605"]],[13,15,["H776"]]]},{"k":15467,"v":[[0,1,["H7891"]],[1,4,["H3068"]],[4,5,["H1288"]],[5,7,["H8034"]],[7,9,["H1319"]],[9,11,["H3444"]],[11,13,["H4480","H3117"]],[13,15,["H3117"]]]},{"k":15468,"v":[[0,1,["H5608"]],[1,3,["H3519"]],[3,6,["H1471"]],[6,8,["H6381"]],[8,10,["H3605"]],[10,11,["H5971"]]]},{"k":15469,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H1419"]],[5,7,["H3966"]],[7,10,["H1984"]],[10,11,["H1931"]],[11,15,["H3372"]],[15,16,["H5921"]],[16,17,["H3605"]],[17,18,["H430"]]]},{"k":15470,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H430"]],[4,7,["H5971"]],[7,9,["H457"]],[9,12,["H3068"]],[12,13,["H6213"]],[13,15,["H8064"]]]},{"k":15471,"v":[[0,1,["H1935"]],[1,3,["H1926"]],[3,5,["H6440"]],[5,7,["H5797"]],[7,9,["H8597"]],[9,13,["H4720"]]]},{"k":15472,"v":[[0,1,["H3051"]],[1,4,["H3068"]],[4,7,["H4940"]],[7,10,["H5971"]],[10,11,["H3051"]],[11,14,["H3068"]],[14,15,["H3519"]],[15,17,["H5797"]]]},{"k":15473,"v":[[0,1,["H3051"]],[1,4,["H3068"]],[4,6,["H3519"]],[6,10,["H8034"]],[10,11,["H5375"]],[11,13,["H4503"]],[13,15,["H935"]],[15,18,["H2691"]]]},{"k":15474,"v":[[0,2,["H7812"]],[2,4,["H3068"]],[4,7,["H1927"]],[7,9,["H6944"]],[9,10,["H2342"]],[10,11,["H4480","H6440"]],[11,13,["H3605"]],[13,15,["H776"]]]},{"k":15475,"v":[[0,1,["H559"]],[1,4,["H1471"]],[4,7,["H3068"]],[7,8,["H4427"]],[8,10,["H8398"]],[10,11,["H637"]],[11,14,["H3559"]],[14,18,["H1077"]],[18,20,["H4131"]],[20,23,["H1777"]],[23,25,["H5971"]],[25,26,["H4339"]]]},{"k":15476,"v":[[0,3,["H8064"]],[3,4,["H8055"]],[4,8,["H776"]],[8,10,["H1523"]],[10,13,["H3220"]],[13,14,["H7481"]],[14,17,["H4393"]],[17,18,[]]]},{"k":15477,"v":[[0,3,["H7704"]],[3,5,["H5937"]],[5,7,["H3605"]],[7,8,["H834"]],[8,11,["H227"]],[11,13,["H3605"]],[13,15,["H6086"]],[15,18,["H3293"]],[18,19,["H7442"]]]},{"k":15478,"v":[[0,1,["H6440"]],[1,3,["H3068"]],[3,4,["H3588"]],[4,6,["H935"]],[6,7,["H3588"]],[7,9,["H935"]],[9,11,["H8199"]],[11,13,["H776"]],[13,16,["H8199"]],[16,18,["H8398"]],[18,20,["H6664"]],[20,23,["H5971"]],[23,26,["H530"]]]},{"k":15479,"v":[[0,2,["H3068"]],[2,3,["H4427"]],[3,6,["H776"]],[6,7,["H1523"]],[7,10,["H7227"]],[10,12,["H339"]],[12,14,["H8055"]],[14,15,[]]]},{"k":15480,"v":[[0,1,["H6051"]],[1,3,["H6205"]],[3,6,["H5439"]],[6,8,["H6664"]],[8,10,["H4941"]],[10,13,["H4349"]],[13,16,["H3678"]]]},{"k":15481,"v":[[0,2,["H784"]],[2,3,["H1980"]],[3,4,["H6440"]],[4,8,["H3857"]],[8,10,["H6862"]],[10,12,["H5439"]]]},{"k":15482,"v":[[0,2,["H1300"]],[2,3,["H215"]],[3,5,["H8398"]],[5,7,["H776"]],[7,8,["H7200"]],[8,10,["H2342"]]]},{"k":15483,"v":[[0,2,["H2022"]],[2,3,["H4549"]],[3,5,["H1749"]],[5,8,["H4480","H6440"]],[8,11,["H3068"]],[11,14,["H4480","H6440"]],[14,17,["H113"]],[17,20,["H3605"]],[20,21,["H776"]]]},{"k":15484,"v":[[0,2,["H8064"]],[2,3,["H5046"]],[3,5,["H6664"]],[5,7,["H3605"]],[7,9,["H5971"]],[9,10,["H7200"]],[10,12,["H3519"]]]},{"k":15485,"v":[[0,1,["H954"]],[1,3,["H3605"]],[3,6,["H5647"]],[6,8,["H6459"]],[8,11,["H1984"]],[11,13,["H457"]],[13,14,["H7812"]],[14,16,["H3605"]],[16,18,["H430"]]]},{"k":15486,"v":[[0,1,["H6726"]],[1,2,["H8085"]],[2,5,["H8055"]],[5,8,["H1323"]],[8,10,["H3063"]],[10,11,["H1523"]],[11,13,["H4616"]],[13,15,["H4941"]],[15,17,["H3068"]]]},{"k":15487,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,3,["H3068"]],[3,5,["H5945"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,9,["H776"]],[9,12,["H5927"]],[12,13,["H3966"]],[13,14,["H5921"]],[14,15,["H3605"]],[15,16,["H430"]]]},{"k":15488,"v":[[0,3,["H157"]],[3,5,["H3068"]],[5,6,["H8130"]],[6,7,["H7451"]],[7,9,["H8104"]],[9,11,["H5315"]],[11,14,["H2623"]],[14,16,["H5337"]],[16,21,["H4480","H3027"]],[21,24,["H7563"]]]},{"k":15489,"v":[[0,1,["H216"]],[1,3,["H2232"]],[3,6,["H6662"]],[6,8,["H8057"]],[8,11,["H3477"]],[11,13,["H3820"]]]},{"k":15490,"v":[[0,1,["H8055"]],[1,4,["H3068"]],[4,6,["H6662"]],[6,9,["H3034"]],[9,12,["H2143"]],[12,15,["H6944"]]]},{"k":15491,"v":[[0,2,["H7891"]],[2,5,["H3068"]],[5,7,["H2319"]],[7,8,["H7892"]],[8,9,["H3588"]],[9,12,["H6213"]],[12,14,["H6381"]],[14,17,["H3225"]],[17,20,["H6944"]],[20,21,["H2220"]],[21,26,["H3467"]]]},{"k":15492,"v":[[0,2,["H3068"]],[2,5,["H3045"]],[5,7,["H3444"]],[7,9,["H6666"]],[9,13,["H1540"]],[13,16,["H5869"]],[16,19,["H1471"]]]},{"k":15493,"v":[[0,3,["H2142"]],[3,5,["H2617"]],[5,8,["H530"]],[8,11,["H1004"]],[11,13,["H3478"]],[13,14,["H3605"]],[14,16,["H657"]],[16,19,["H776"]],[19,21,["H7200","(H853)"]],[21,23,["H3444"]],[23,26,["H430"]]]},{"k":15494,"v":[[0,4,["H7321"]],[4,7,["H3068"]],[7,8,["H3605"]],[8,10,["H776"]],[10,14,["H6476"]],[14,16,["H7442"]],[16,19,["H2167"]]]},{"k":15495,"v":[[0,1,["H2167"]],[1,4,["H3068"]],[4,7,["H3658"]],[7,10,["H3658"]],[10,13,["H6963"]],[13,16,["H2172"]]]},{"k":15496,"v":[[0,2,["H2689"]],[2,4,["H6963"]],[4,6,["H7782"]],[6,10,["H7321"]],[10,11,["H6440"]],[11,13,["H3068"]],[13,15,["H4428"]]]},{"k":15497,"v":[[0,3,["H3220"]],[3,4,["H7481"]],[4,7,["H4393"]],[7,10,["H8398"]],[10,14,["H3427"]],[14,15,[]]]},{"k":15498,"v":[[0,3,["H5104"]],[3,4,["H4222"]],[4,6,["H3709"]],[6,9,["H2022"]],[9,11,["H7442"]],[11,12,["H3162"]]]},{"k":15499,"v":[[0,1,["H6440"]],[1,3,["H3068"]],[3,4,["H3588"]],[4,6,["H935"]],[6,8,["H8199"]],[8,10,["H776"]],[10,12,["H6664"]],[12,15,["H8199"]],[15,17,["H8398"]],[17,20,["H5971"]],[20,22,["H4339"]]]},{"k":15500,"v":[[0,2,["H3068"]],[2,3,["H4427"]],[3,6,["H5971"]],[6,7,["H7264"]],[7,9,["H3427"]],[9,12,["H3742"]],[12,15,["H776"]],[15,17,["H5120"]]]},{"k":15501,"v":[[0,2,["H3068"]],[2,4,["H1419"]],[4,6,["H6726"]],[6,8,["H1931"]],[8,10,["H7311"]],[10,11,["H5921"]],[11,12,["H3605"]],[12,14,["H5971"]]]},{"k":15502,"v":[[0,3,["H3034"]],[3,5,["H1419"]],[5,7,["H3372"]],[7,8,["H8034"]],[8,10,["H1931"]],[10,12,["H6918"]]]},{"k":15503,"v":[[0,2,["H4428"]],[2,3,["H5797"]],[3,5,["H157"]],[5,6,["H4941"]],[6,7,["H859"]],[7,9,["H3559"]],[9,10,["H4339"]],[10,11,["H859"]],[11,12,["H6213"]],[12,13,["H4941"]],[13,15,["H6666"]],[15,17,["H3290"]]]},{"k":15504,"v":[[0,1,["H7311"]],[1,4,["H3068"]],[4,6,["H430"]],[6,8,["H7812"]],[8,11,["H1916","H7272"]],[11,13,["H1931"]],[13,15,["H6918"]]]},{"k":15505,"v":[[0,1,["H4872"]],[1,3,["H175"]],[3,6,["H3548"]],[6,8,["H8050"]],[8,13,["H7121"]],[13,15,["H8034"]],[15,17,["H7121"]],[17,18,["H413"]],[18,20,["H3068"]],[20,22,["H1931"]],[22,23,["H6030"]],[23,24,[]]]},{"k":15506,"v":[[0,2,["H1696"]],[2,3,["H413"]],[3,7,["H6051"]],[7,8,["H5982"]],[8,10,["H8104"]],[10,12,["H5713"]],[12,15,["H2706"]],[15,18,["H5414"]],[18,19,[]]]},{"k":15507,"v":[[0,2,["H6030"]],[2,5,["H3068"]],[5,7,["H430"]],[7,8,["H859"]],[8,9,["H1961"]],[9,11,["H410"]],[11,13,["H5375"]],[13,18,["H5358"]],[18,19,["H5921"]],[19,21,["H5949"]]]},{"k":15508,"v":[[0,1,["H7311"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H7812"]],[7,10,["H6944"]],[10,11,["H2022"]],[11,12,["H3588"]],[12,14,["H3068"]],[14,16,["H430"]],[16,18,["H6918"]]]},{"k":15509,"v":[[0,4,["H7321"]],[4,7,["H3068"]],[7,8,["H3605"]],[8,10,["H776"]]]},{"k":15510,"v":[[0,1,["H5647"]],[1,2,["(H853)"]],[2,3,["H3068"]],[3,5,["H8057"]],[5,6,["H935"]],[6,9,["H6440"]],[9,11,["H7445"]]]},{"k":15511,"v":[[0,1,["H3045"]],[1,3,["H3588"]],[3,5,["H3068"]],[5,6,["H1931"]],[6,8,["H430"]],[8,11,["H1931"]],[11,14,["H6213"]],[14,17,["H3808"]],[17,19,["H587"]],[19,23,["H5971"]],[23,26,["H6629"]],[26,29,["H4830"]]]},{"k":15512,"v":[[0,1,["H935"]],[1,4,["H8179"]],[4,6,["H8426"]],[6,10,["H2691"]],[10,12,["H8416"]],[12,14,["H3034"]],[14,18,["H1288"]],[18,20,["H8034"]]]},{"k":15513,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H2896"]],[5,7,["H2617"]],[7,9,["H5769"]],[9,12,["H530"]],[12,14,["H5704"]],[14,16,["H1755","H1755"]]]},{"k":15514,"v":[[0,3,["H7891"]],[3,5,["H2617"]],[5,7,["H4941"]],[7,11,["H3068"]],[11,14,["H2167"]]]},{"k":15515,"v":[[0,5,["H7919"]],[5,8,["H8549"]],[8,9,["H1870"]],[9,11,["H4970"]],[11,14,["H935"]],[14,15,["H413"]],[15,19,["H1980"]],[19,20,["H7130"]],[20,22,["H1004"]],[22,25,["H8537"]],[25,26,["H3824"]]]},{"k":15516,"v":[[0,3,["H7896"]],[3,4,["H3808"]],[4,5,["H1100"]],[5,6,["H1697"]],[6,7,["H5048"]],[7,9,["H5869"]],[9,11,["H8130"]],[11,13,["H6213"]],[13,18,["H7750"]],[18,21,["H3808"]],[21,22,["H1692"]],[22,24,[]]]},{"k":15517,"v":[[0,2,["H6141"]],[2,3,["H3824"]],[3,5,["H5493"]],[5,6,["H4480"]],[6,10,["H3808"]],[10,11,["H3045"]],[11,13,["H7451"]],[13,14,[]]]},{"k":15518,"v":[[0,2,["H5643"]],[2,3,["H3960"]],[3,5,["H7453"]],[5,10,["H6789"]],[10,15,["H1362"]],[15,16,["H5869"]],[16,19,["H7342"]],[19,20,["H3824"]],[20,22,["H3808"]],[22,24,["H3201"]]]},{"k":15519,"v":[[0,2,["H5869"]],[2,7,["H539"]],[7,10,["H776"]],[10,14,["H3427"]],[14,15,["H5978"]],[15,19,["H1980"]],[19,22,["H8549"]],[22,23,["H1870"]],[23,24,["H1931"]],[24,26,["H8334"]],[26,27,[]]]},{"k":15520,"v":[[0,3,["H6213"]],[3,4,["H7423"]],[4,6,["H3808"]],[6,7,["H3427"]],[7,8,["H7130"]],[8,10,["H1004"]],[10,13,["H1696"]],[13,14,["H8267"]],[14,16,["H3808"]],[16,17,["H3559"]],[17,18,["H5048"]],[18,20,["H5869"]]]},{"k":15521,"v":[[0,3,["H1242"]],[3,4,["H6789"]],[4,5,["H3605"]],[5,7,["H7563"]],[7,10,["H776"]],[10,15,["H3772"]],[15,16,["H3605"]],[16,17,["H205"]],[17,18,["H6466"]],[18,21,["H4480","H5892"]],[21,24,["H3068"]]]},{"k":15522,"v":[[0,1,["H8085"]],[1,3,["H8605"]],[3,5,["H3068"]],[5,9,["H7775"]],[9,10,["H935"]],[10,11,["H413"]],[11,12,[]]]},{"k":15523,"v":[[0,1,["H5641"]],[1,2,["H408"]],[2,4,["H6440"]],[4,5,["H4480"]],[5,9,["H3117"]],[9,14,["H6862"]],[14,15,["H5186"]],[15,17,["H241"]],[17,18,["H413"]],[18,22,["H3117"]],[22,25,["H7121"]],[25,26,["H6030"]],[26,28,["H4116"]]]},{"k":15524,"v":[[0,1,["H3588"]],[1,3,["H3117"]],[3,5,["H3615"]],[5,7,["H6227"]],[7,10,["H6106"]],[10,12,["H2787"]],[12,13,["H3644"]],[13,15,["H4168"]]]},{"k":15525,"v":[[0,2,["H3820"]],[2,4,["H5221"]],[4,6,["H3001"]],[6,8,["H6212"]],[8,9,["H3588"]],[9,12,["H7911"]],[12,14,["H4480","H398"]],[14,16,["H3899"]]]},{"k":15526,"v":[[0,5,["H4480","H6963"]],[5,8,["H585"]],[8,10,["H6106"]],[10,11,["H1692"]],[11,14,["H1320"]]]},{"k":15527,"v":[[0,3,["H1819"]],[3,5,["H6893"]],[5,8,["H4057"]],[8,10,["H1961"]],[10,13,["H3563"]],[13,16,["H2723"]]]},{"k":15528,"v":[[0,2,["H8245"]],[2,4,["H1961"]],[4,7,["H6833"]],[7,8,["H909"]],[8,9,["H5921"]],[9,12,["H1406"]]]},{"k":15529,"v":[[0,2,["H341"]],[2,3,["H2778"]],[3,5,["H3605"]],[5,7,["H3117"]],[7,12,["H1984"]],[12,16,["H7650"]],[16,18,[]]]},{"k":15530,"v":[[0,1,["H3588"]],[1,4,["H398"]],[4,5,["H665"]],[5,7,["H3899"]],[7,9,["H4537"]],[9,11,["H8249"]],[11,13,["H1065"]]]},{"k":15531,"v":[[0,1,["H4480","H6440"]],[1,4,["H2195"]],[4,7,["H7110"]],[7,8,["H3588"]],[8,13,["H5375"]],[13,17,["H7993"]]]},{"k":15532,"v":[[0,2,["H3117"]],[2,6,["H6738"]],[6,8,["H5186"]],[8,10,["H589"]],[10,12,["H3001"]],[12,14,["H6212"]]]},{"k":15533,"v":[[0,2,["H859"]],[2,4,["H3068"]],[4,6,["H3427"]],[6,8,["H5769"]],[8,11,["H2143"]],[11,14,["H1755","H1755"]]]},{"k":15534,"v":[[0,1,["H859"]],[1,3,["H6965"]],[3,7,["H7355"]],[7,8,["H6726"]],[8,9,["H3588"]],[9,11,["H6256"]],[11,13,["H2603"]],[13,15,["H3588"]],[15,18,["H4150"]],[18,20,["H935"]]]},{"k":15535,"v":[[0,1,["H3588"]],[1,3,["H5650"]],[3,6,["H7521","(H853)"]],[6,8,["H68"]],[8,10,["H2603"]],[10,12,["H6083"]],[12,13,[]]]},{"k":15536,"v":[[0,3,["H1471"]],[3,5,["H3372","(H853)"]],[5,7,["H8034"]],[7,10,["H3068"]],[10,12,["H3605"]],[12,14,["H4428"]],[14,17,["H776","(H853)"]],[17,19,["H3519"]]]},{"k":15537,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,6,["H1129"]],[6,7,["H6726"]],[7,10,["H7200"]],[10,13,["H3519"]]]},{"k":15538,"v":[[0,3,["H6437","H413"]],[3,5,["H8605"]],[5,8,["H6199"]],[8,10,["H3808"]],[10,11,["H959","(H853)"]],[11,13,["H8605"]]]},{"k":15539,"v":[[0,1,["H2063"]],[1,4,["H3789"]],[4,7,["H1755"]],[7,9,["H314"]],[9,12,["H5971"]],[12,16,["H1254"]],[16,18,["H1984"]],[18,20,["H3050"]]]},{"k":15540,"v":[[0,1,["H3588"]],[1,5,["H8259"]],[5,8,["H4480","H4791"]],[8,11,["H6944"]],[11,13,["H4480","H8064"]],[13,16,["H3068"]],[16,17,["H5027","H413"]],[17,19,["H776"]]]},{"k":15541,"v":[[0,2,["H8085"]],[2,4,["H603"]],[4,7,["H615"]],[7,9,["H6605"]],[9,13,["H1121"]],[13,15,["H8546"]]]},{"k":15542,"v":[[0,2,["H5608"]],[2,4,["H8034"]],[4,7,["H3068"]],[7,9,["H6726"]],[9,12,["H8416"]],[12,14,["H3389"]]]},{"k":15543,"v":[[0,3,["H5971"]],[3,5,["H6908"]],[5,6,["H3162"]],[6,9,["H4467"]],[9,11,["H5647","(H853)"]],[11,13,["H3068"]]]},{"k":15544,"v":[[0,2,["H6031"]],[2,4,["H3581"]],[4,7,["H1870"]],[7,9,["H7114"]],[9,11,["H3117"]]]},{"k":15545,"v":[[0,2,["H559"]],[2,5,["H410"]],[5,6,["H5927"]],[6,8,["H408"]],[8,12,["H2677"]],[12,15,["H3117"]],[15,17,["H8141"]],[17,21,["H1755","H1755"]]]},{"k":15546,"v":[[0,2,["H6440"]],[2,7,["H3245"]],[7,10,["H776"]],[10,13,["H8064"]],[13,16,["H4639"]],[16,19,["H3027"]]]},{"k":15547,"v":[[0,1,["H1992"]],[1,3,["H6"]],[3,5,["H859"]],[5,7,["H5975"]],[7,9,["H3605"]],[9,14,["H1086"]],[14,17,["H899"]],[17,20,["H3830"]],[20,23,["H2498"]],[23,29,["H2498"]]]},{"k":15548,"v":[[0,2,["H859"]],[2,5,["H1931"]],[5,8,["H8141"]],[8,11,["H3808"]],[11,12,["H8552"]]]},{"k":15549,"v":[[0,2,["H1121"]],[2,5,["H5650"]],[5,7,["H7931"]],[7,10,["H2233"]],[10,13,["H3559"]],[13,14,["H6440"]],[14,15,[]]]},{"k":15550,"v":[[0,1,["H1288","(H853)"]],[1,3,["H3068"]],[3,6,["H5315"]],[6,8,["H3605"]],[8,11,["H7130"]],[11,13,["(H853)"]],[13,15,["H6944"]],[15,16,["H8034"]]]},{"k":15551,"v":[[0,1,["H1288","(H853)"]],[1,3,["H3068"]],[3,6,["H5315"]],[6,8,["H7911"]],[8,9,["H408"]],[9,10,["H3605"]],[10,12,["H1576"]]]},{"k":15552,"v":[[0,2,["H5545"]],[2,3,["H3605"]],[3,5,["H5771"]],[5,7,["H7495"]],[7,8,["H3605"]],[8,10,["H8463"]]]},{"k":15553,"v":[[0,2,["H1350"]],[2,4,["H2416"]],[4,6,["H4480","H7845"]],[6,8,["H5849"]],[8,11,["H2617"]],[11,14,["H7356"]]]},{"k":15554,"v":[[0,2,["H7646"]],[2,4,["H5716"]],[4,6,["H2896"]],[6,11,["H5271"]],[11,13,["H2318"]],[13,16,["H5404"]]]},{"k":15555,"v":[[0,2,["H3068"]],[2,3,["H6213"]],[3,4,["H6666"]],[4,6,["H4941"]],[6,8,["H3605"]],[8,11,["H6231"]]]},{"k":15556,"v":[[0,3,["H3045"]],[3,5,["H1870"]],[5,7,["H4872"]],[7,9,["H5949"]],[9,12,["H1121"]],[12,14,["H3478"]]]},{"k":15557,"v":[[0,2,["H3068"]],[2,4,["H7349"]],[4,6,["H2587"]],[6,7,["H750"]],[7,9,["H639"]],[9,11,["H7227"]],[11,13,["H2617"]]]},{"k":15558,"v":[[0,3,["H3808"]],[3,4,["H5331"]],[4,5,["H7378"]],[5,6,["H3808"]],[6,9,["H5201"]],[9,13,["H5769"]]]},{"k":15559,"v":[[0,3,["H3808"]],[3,4,["H6213"]],[4,9,["H2399"]],[9,10,["H3808"]],[10,11,["H1580","H5921"]],[11,16,["H5771"]]]},{"k":15560,"v":[[0,1,["H3588"]],[1,4,["H8064"]],[4,6,["H1361"]],[6,7,["H5921"]],[7,9,["H776"]],[9,11,["H1396"]],[11,14,["H2617"]],[14,15,["H5921"]],[15,18,["H3373"]],[18,19,[]]]},{"k":15561,"v":[[0,2,["H7350"]],[2,5,["H4217"]],[5,9,["H4480","H4628"]],[9,14,["H7368","(H853)"]],[14,16,["H6588"]],[16,17,["H4480"]],[17,18,[]]]},{"k":15562,"v":[[0,4,["H1"]],[4,5,["H7355","H5921"]],[5,7,["H1121"]],[7,10,["H3068"]],[10,11,["H7355","H5921"]],[11,14,["H3373"]],[14,15,[]]]},{"k":15563,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,3,["H3045"]],[3,5,["H3336"]],[5,7,["H2142"]],[7,8,["H3588"]],[8,9,["H587"]],[9,11,["H6083"]]]},{"k":15564,"v":[[0,3,["H582"]],[3,5,["H3117"]],[5,8,["H2682"]],[8,11,["H6731"]],[11,14,["H7704"]],[14,15,["H3651"]],[15,17,["H6692"]]]},{"k":15565,"v":[[0,1,["H3588"]],[1,3,["H7307"]],[3,4,["H5674"]],[4,10,["H369"]],[10,13,["H4725"]],[13,16,["H5234"]],[16,18,["H3808"]],[18,19,["H5750"]]]},{"k":15566,"v":[[0,3,["H2617"]],[3,6,["H3068"]],[6,9,["H4480","H5769"]],[9,10,["H5704"]],[10,11,["H5769"]],[11,12,["H5921"]],[12,15,["H3373"]],[15,19,["H6666"]],[19,21,["H1121"]],[21,22,["H1121"]]]},{"k":15567,"v":[[0,4,["H8104"]],[4,6,["H1285"]],[6,11,["H2142"]],[11,13,["H6490"]],[13,15,["H6213"]],[15,16,[]]]},{"k":15568,"v":[[0,2,["H3068"]],[2,4,["H3559"]],[4,6,["H3678"]],[6,9,["H8064"]],[9,12,["H4438"]],[12,13,["H4910"]],[13,15,["H3605"]]]},{"k":15569,"v":[[0,1,["H1288"]],[1,3,["H3068"]],[3,6,["H4397"]],[6,8,["H1368"]],[8,10,["H3581"]],[10,12,["H6213"]],[12,14,["H1697"]],[14,15,["H8085"]],[15,18,["H6963"]],[18,21,["H1697"]]]},{"k":15570,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,5,["H3605"]],[5,8,["H6635"]],[8,10,["H8334"]],[10,14,["H6213"]],[14,16,["H7522"]]]},{"k":15571,"v":[[0,1,["H1288"]],[1,3,["H3068"]],[3,4,["H3605"]],[4,6,["H4639"]],[6,8,["H3605"]],[8,9,["H4725"]],[9,12,["H4475"]],[12,13,["H1288","(H853)"]],[13,15,["H3068"]],[15,18,["H5315"]]]},{"k":15572,"v":[[0,1,["H1288","(H853)"]],[1,3,["H3068"]],[3,6,["H5315"]],[6,8,["H3068"]],[8,10,["H430"]],[10,13,["H3966"]],[13,14,["H1431"]],[14,17,["H3847"]],[17,19,["H1935"]],[19,21,["H1926"]]]},{"k":15573,"v":[[0,2,["H5844"]],[2,5,["H216"]],[5,9,["H8008"]],[9,12,["H5186"]],[12,14,["H8064"]],[14,17,["H3407"]]]},{"k":15574,"v":[[0,4,["H7136"]],[4,7,["H5944"]],[7,10,["H4325"]],[10,12,["H7760"]],[12,14,["H5645"]],[14,16,["H7398"]],[16,18,["H1980"]],[18,19,["H5921"]],[19,21,["H3671"]],[21,24,["H7307"]]]},{"k":15575,"v":[[0,2,["H6213"]],[2,4,["H4397"]],[4,5,["H7307"]],[5,7,["H8334"]],[7,9,["H3857"]],[9,10,["H784"]]]},{"k":15576,"v":[[0,2,["H3245","H5921"]],[2,4,["H4349"]],[4,7,["H776"]],[7,11,["H1077"]],[11,13,["H4131"]],[13,15,["H5769","H5703"]]]},{"k":15577,"v":[[0,2,["H3680"]],[2,6,["H8415"]],[6,10,["H3830"]],[10,12,["H4325"]],[12,13,["H5975"]],[13,14,["H5921"]],[14,16,["H2022"]]]},{"k":15578,"v":[[0,1,["H4480"]],[1,3,["H1606"]],[3,5,["H5127"]],[5,6,["H4480"]],[6,8,["H6963"]],[8,11,["H7482"]],[11,14,["H2648"]]]},{"k":15579,"v":[[0,3,["H5927"]],[3,6,["H2022"]],[6,9,["H3381"]],[9,12,["H1237"]],[12,13,["H413"]],[13,15,["H4725"]],[15,16,["H2088"]],[16,19,["H3245"]],[19,21,[]]]},{"k":15580,"v":[[0,3,["H7760"]],[3,5,["H1366"]],[5,9,["H1077"]],[9,11,["H5674"]],[11,16,["H7725","H1077"]],[16,18,["H3680"]],[18,20,["H776"]]]},{"k":15581,"v":[[0,2,["H7971"]],[2,4,["H4599"]],[4,7,["H5158"]],[7,9,["H1980"]],[9,10,["H996"]],[10,12,["H2022"]]]},{"k":15582,"v":[[0,3,["H8248"]],[3,5,["H3605"]],[5,6,["H2416"]],[6,9,["H7704"]],[9,12,["H6501"]],[12,13,["H7665"]],[13,15,["H6772"]]]},{"k":15583,"v":[[0,1,["H5921"]],[1,5,["H5775"]],[5,8,["H8064"]],[8,11,["H7931"]],[11,13,["H5414","H6963"]],[13,14,["H4480","H996"]],[14,16,["H6073"]]]},{"k":15584,"v":[[0,2,["H8248"]],[2,4,["H2022"]],[4,7,["H4480","H5944"]],[7,9,["H776"]],[9,11,["H7646"]],[11,14,["H4480","H6529"]],[14,17,["H4639"]]]},{"k":15585,"v":[[0,4,["H2682"]],[4,6,["H6779"]],[6,9,["H929"]],[9,11,["H6212"]],[11,14,["H5656"]],[14,16,["H120"]],[16,21,["H3318"]],[21,22,["H3899"]],[22,24,["H4480"]],[24,26,["H776"]]]},{"k":15586,"v":[[0,2,["H3196"]],[2,5,["H8055"]],[5,7,["H3824"]],[7,9,["H582"]],[9,11,["H4480","H8081"]],[11,15,["H6440"]],[15,17,["H6670"]],[17,19,["H3899"]],[19,21,["H5582"]],[21,22,["H582"]],[22,23,["H3824"]]]},{"k":15587,"v":[[0,2,["H6086"]],[2,5,["H3068"]],[5,7,["H7646"]],[7,11,["H730"]],[11,13,["H3844"]],[13,14,["H834"]],[14,17,["H5193"]]]},{"k":15588,"v":[[0,1,["H834","H8033"]],[1,3,["H6833"]],[3,6,["H7077"]],[6,10,["H2624"]],[10,13,["H1265"]],[13,16,["H1004"]]]},{"k":15589,"v":[[0,2,["H1364"]],[2,3,["H2022"]],[3,6,["H4268"]],[6,10,["H3277"]],[10,13,["H5553"]],[13,16,["H8227"]]]},{"k":15590,"v":[[0,2,["H6213"]],[2,4,["H3394"]],[4,6,["H4150"]],[6,8,["H8121"]],[8,9,["H3045"]],[9,12,["H3996"]]]},{"k":15591,"v":[[0,2,["H7896"]],[2,3,["H2822"]],[3,6,["H1961"]],[6,7,["H3915"]],[7,9,["H3605"]],[9,11,["H2416"]],[11,14,["H3293"]],[14,16,["H7430"]],[16,17,[]]]},{"k":15592,"v":[[0,3,["H3715"]],[3,4,["H7580"]],[4,7,["H2964"]],[7,9,["H1245"]],[9,11,["H400"]],[11,13,["H4480","H410"]]]},{"k":15593,"v":[[0,2,["H8121"]],[2,3,["H2224"]],[3,7,["H622"]],[7,11,["H7257"]],[11,12,["H413"]],[12,14,["H4585"]]]},{"k":15594,"v":[[0,1,["H120"]],[1,3,["H3318"]],[3,6,["H6467"]],[6,10,["H5656"]],[10,11,["H5704"]],[11,13,["H6153"]]]},{"k":15595,"v":[[0,2,["H3068"]],[2,3,["H4100"]],[3,4,["H7231"]],[4,7,["H4639"]],[7,9,["H2451"]],[9,12,["H6213"]],[12,14,["H3605"]],[14,16,["H776"]],[16,18,["H4390"]],[18,21,["H7075"]]]},{"k":15596,"v":[[0,3,["H2088"]],[3,4,["H1419"]],[4,6,["H7342","H3027"]],[6,7,["H3220"]],[7,8,["H8033"]],[8,11,["H7431"]],[11,12,["H369","H4557"]],[12,14,["H6996"]],[14,15,["H5973"]],[15,16,["H1419"]],[16,17,["H2416"]]]},{"k":15597,"v":[[0,1,["H8033"]],[1,2,["H1980"]],[2,4,["H591"]],[4,8,["H3882"]],[8,10,["H2088"]],[10,12,["H3335"]],[12,14,["H7832"]],[14,15,[]]]},{"k":15598,"v":[[0,2,["H7663"]],[2,3,["H3605"]],[3,4,["H413"]],[4,9,["H5414"]],[9,12,["H400"]],[12,15,["H6256"]]]},{"k":15599,"v":[[0,3,["H5414"]],[3,6,["H3950"]],[6,8,["H6605"]],[8,10,["H3027"]],[10,13,["H7646"]],[13,15,["H2896"]]]},{"k":15600,"v":[[0,2,["H5641"]],[2,4,["H6440"]],[4,7,["H926"]],[7,10,["H622"]],[10,12,["H7307"]],[12,14,["H1478"]],[14,16,["H7725"]],[16,17,["H413"]],[17,19,["H6083"]]]},{"k":15601,"v":[[0,3,["H7971"]],[3,5,["H7307"]],[5,8,["H1254"]],[8,11,["H2318"]],[11,13,["H6440"]],[13,16,["H127"]]]},{"k":15602,"v":[[0,2,["H3519"]],[2,5,["H3068"]],[5,7,["H1961"]],[7,9,["H5769"]],[9,11,["H3068"]],[11,13,["H8055"]],[13,16,["H4639"]]]},{"k":15603,"v":[[0,2,["H5027"]],[2,5,["H776"]],[5,8,["H7460"]],[8,10,["H5060"]],[10,12,["H2022"]],[12,15,["H6225"]]]},{"k":15604,"v":[[0,3,["H7891"]],[3,6,["H3068"]],[6,11,["H2416"]],[11,15,["H2167"]],[15,18,["H430"]],[18,23,["H5750"]]]},{"k":15605,"v":[[0,2,["H7879"]],[2,3,["H5921"]],[3,7,["H6149"]],[7,8,["H595"]],[8,11,["H8055"]],[11,14,["H3068"]]]},{"k":15606,"v":[[0,3,["H2400"]],[3,5,["H8552"]],[5,7,["H4480"]],[7,9,["H776"]],[9,13,["H7563"]],[13,15,["H369"]],[15,16,["H5750"]],[16,17,["H1288"]],[17,18,["(H853)"]],[18,20,["H3068"]],[20,23,["H5315"]],[23,24,["H1984"]],[24,27,["H3050"]]]},{"k":15607,"v":[[0,3,["H3034"]],[3,6,["H3068"]],[6,7,["H7121"]],[7,10,["H8034"]],[10,12,["H3045"]],[12,14,["H5949"]],[14,17,["H5971"]]]},{"k":15608,"v":[[0,1,["H7891"]],[1,5,["H2167"]],[5,8,["H7878"]],[8,11,["H3605"]],[11,14,["H6381"]]]},{"k":15609,"v":[[0,1,["H1984"]],[1,5,["H6944"]],[5,6,["H8034"]],[6,9,["H3820"]],[9,12,["H8055"]],[12,14,["H1245"]],[14,16,["H3068"]]]},{"k":15610,"v":[[0,1,["H1875"]],[1,3,["H3068"]],[3,6,["H5797"]],[6,7,["H1245"]],[7,9,["H6440"]],[9,10,["H8548"]]]},{"k":15611,"v":[[0,1,["H2142"]],[1,4,["H6381"]],[4,5,["H834"]],[5,8,["H6213"]],[8,10,["H4159"]],[10,13,["H4941"]],[13,16,["H6310"]]]},{"k":15612,"v":[[0,3,["H2233"]],[3,5,["H85"]],[5,7,["H5650"]],[7,9,["H1121"]],[9,11,["H3290"]],[11,13,["H972"]]]},{"k":15613,"v":[[0,1,["H1931"]],[1,4,["H3068"]],[4,6,["H430"]],[6,8,["H4941"]],[8,11,["H3605"]],[11,13,["H776"]]]},{"k":15614,"v":[[0,3,["H2142"]],[3,5,["H1285"]],[5,7,["H5769"]],[7,9,["H1697"]],[9,12,["H6680"]],[12,15,["H505"]],[15,16,["H1755"]]]},{"k":15615,"v":[[0,1,["H834"]],[1,4,["H3772"]],[4,5,["H854"]],[5,6,["H85"]],[6,9,["H7621"]],[9,11,["H3446"]]]},{"k":15616,"v":[[0,2,["H5975"]],[2,6,["H3290"]],[6,9,["H2706"]],[9,12,["H3478"]],[12,15,["H5769"]],[15,16,["H1285"]]]},{"k":15617,"v":[[0,1,["H559"]],[1,6,["H5414","(H853)"]],[6,8,["H776"]],[8,10,["H3667"]],[10,12,["H2256"]],[12,15,["H5159"]]]},{"k":15618,"v":[[0,3,["H1961"]],[3,7,["H4962"]],[7,9,["H4557"]],[9,12,["H4592"]],[12,14,["H1481"]],[14,16,[]]]},{"k":15619,"v":[[0,3,["H1980"]],[3,6,["H4480","H1471"]],[6,7,["H413"]],[7,8,["H1471"]],[8,11,["H4480","H4467"]],[11,12,["H413"]],[12,13,["H312"]],[13,14,["H5971"]]]},{"k":15620,"v":[[0,2,["H5117"]],[2,3,["H3808"]],[3,4,["H120"]],[4,8,["H6231"]],[8,11,["H3198"]],[11,12,["H4428"]],[12,15,["H5921"]]]},{"k":15621,"v":[[0,2,["H5060"]],[2,3,["H408"]],[3,5,["H4899"]],[5,9,["H5030"]],[9,10,["H408"]],[10,11,["H7489"]]]},{"k":15622,"v":[[0,4,["H7121"]],[4,6,["H7458"]],[6,7,["H5921"]],[7,9,["H776"]],[9,11,["H7665"]],[11,13,["H3605"]],[13,14,["H4294"]],[14,16,["H3899"]]]},{"k":15623,"v":[[0,2,["H7971"]],[2,4,["H376"]],[4,5,["H6440"]],[5,8,["H3130"]],[8,11,["H4376"]],[11,14,["H5650"]]]},{"k":15624,"v":[[0,2,["H7272"]],[2,4,["H6031"]],[4,6,["H3525"]],[6,7,["H5315"]],[7,9,["H935"]],[9,11,["H1270"]]]},{"k":15625,"v":[[0,1,["H5704"]],[1,3,["H6256"]],[3,6,["H1697"]],[6,7,["H935"]],[7,9,["H565"]],[9,12,["H3068"]],[12,13,["H6884"]],[13,14,[]]]},{"k":15626,"v":[[0,2,["H4428"]],[2,3,["H7971"]],[3,5,["H5425"]],[5,9,["H4910"]],[9,12,["H5971"]],[12,17,["H6605"]]]},{"k":15627,"v":[[0,2,["H7760"]],[2,4,["H113"]],[4,7,["H1004"]],[7,9,["H4910"]],[9,11,["H3605"]],[11,13,["H7075"]]]},{"k":15628,"v":[[0,2,["H631"]],[2,4,["H8269"]],[4,7,["H5315"]],[7,11,["H2205"]],[11,12,["H2449"]]]},{"k":15629,"v":[[0,1,["H3478"]],[1,4,["H935"]],[4,5,["H4714"]],[5,7,["H3290"]],[7,8,["H1481"]],[8,11,["H776"]],[11,13,["H2526"]]]},{"k":15630,"v":[[0,3,["H6509","(H853)"]],[3,5,["H5971"]],[5,6,["H3966"]],[6,10,["H6105"]],[10,13,["H4480","H6862"]]]},{"k":15631,"v":[[0,2,["H2015"]],[2,4,["H3820"]],[4,6,["H8130"]],[6,8,["H5971"]],[8,11,["H5230"]],[11,14,["H5650"]]]},{"k":15632,"v":[[0,2,["H7971"]],[2,3,["H4872"]],[3,5,["H5650"]],[5,7,["H175"]],[7,8,["H834"]],[8,11,["H977"]]]},{"k":15633,"v":[[0,2,["H7760"]],[2,4,["H1697","H226"]],[4,8,["H4159"]],[8,11,["H776"]],[11,13,["H2526"]]]},{"k":15634,"v":[[0,2,["H7971"]],[2,3,["H2822"]],[3,7,["H2821"]],[7,10,["H4784"]],[10,11,["H3808"]],[11,12,["(H853)"]],[12,14,["H1697"]]]},{"k":15635,"v":[[0,2,["H2015","(H853)"]],[2,4,["H4325"]],[4,6,["H1818"]],[6,8,["H4191","(H853)"]],[8,10,["H1710"]]]},{"k":15636,"v":[[0,2,["H776"]],[2,7,["H8317","H6854"]],[7,10,["H2315"]],[10,13,["H4428"]]]},{"k":15637,"v":[[0,2,["H559"]],[2,5,["H935"]],[5,9,["H6157"]],[9,11,["H3654"]],[11,13,["H3605"]],[13,15,["H1366"]]]},{"k":15638,"v":[[0,2,["H5414"]],[2,4,["H1259"]],[4,6,["H1653"]],[6,8,["H3852"]],[8,9,["H784"]],[9,12,["H776"]]]},{"k":15639,"v":[[0,2,["H5221"]],[2,4,["H1612"]],[4,9,["H8384"]],[9,11,["H7665"]],[11,13,["H6086"]],[13,16,["H1366"]]]},{"k":15640,"v":[[0,2,["H559"]],[2,5,["H697"]],[5,6,["H935"]],[6,8,["H3218"]],[8,11,["H369"]],[11,12,["H4557"]]]},{"k":15641,"v":[[0,4,["H398"]],[4,5,["H3605"]],[5,7,["H6212"]],[7,10,["H776"]],[10,12,["H398"]],[12,14,["H6529"]],[14,17,["H127"]]]},{"k":15642,"v":[[0,2,["H5221"]],[2,4,["H3605"]],[4,6,["H1060"]],[6,9,["H776"]],[9,11,["H7225"]],[11,13,["H3605"]],[13,15,["H202"]]]},{"k":15643,"v":[[0,4,["H3318"]],[4,7,["H3701"]],[7,9,["H2091"]],[9,13,["H369"]],[13,15,["H3782"]],[15,19,["H7626"]]]},{"k":15644,"v":[[0,1,["H4714"]],[1,3,["H8055"]],[3,6,["H3318"]],[6,7,["H3588"]],[7,9,["H6343"]],[9,12,["H5307"]],[12,13,["H5921"]],[13,14,[]]]},{"k":15645,"v":[[0,2,["H6566"]],[2,4,["H6051"]],[4,7,["H4539"]],[7,9,["H784"]],[9,12,["H215"]],[12,15,["H3915"]]]},{"k":15646,"v":[[0,3,["H7592"]],[3,6,["H935"]],[6,7,["H7958"]],[7,9,["H7646"]],[9,13,["H3899"]],[13,15,["H8064"]]]},{"k":15647,"v":[[0,2,["H6605"]],[2,4,["H6697"]],[4,7,["H4325"]],[7,9,["H2100"]],[9,11,["H1980"]],[11,15,["H6723"]],[15,18,["H5104"]]]},{"k":15648,"v":[[0,1,["H3588"]],[1,3,["H2142","(H853)"]],[3,5,["H6944"]],[5,6,["H1697"]],[6,7,["(H853)"]],[7,8,["H85"]],[8,10,["H5650"]]]},{"k":15649,"v":[[0,4,["H3318"]],[4,6,["H5971"]],[6,8,["H8342"]],[8,9,["(H853)"]],[9,11,["H972"]],[11,13,["H7440"]]]},{"k":15650,"v":[[0,2,["H5414"]],[2,5,["H776"]],[5,8,["H1471"]],[8,11,["H3423"]],[11,13,["H5999"]],[13,16,["H3816"]]]},{"k":15651,"v":[[0,1,["H5668"]],[1,4,["H8104"]],[4,6,["H2706"]],[6,8,["H5341"]],[8,10,["H8451"]],[10,11,["H1984"]],[11,14,["H3050"]]]},{"k":15652,"v":[[0,1,["H1984"]],[1,4,["H3050"]],[4,7,["H3034"]],[7,10,["H3068"]],[10,11,["H3588"]],[11,14,["H2896"]],[14,15,["H3588"]],[15,17,["H2617"]],[17,20,["H5769"]]]},{"k":15653,"v":[[0,1,["H4310"]],[1,3,["H4448"]],[3,6,["H1369"]],[6,9,["H3068"]],[9,13,["H8085"]],[13,14,["H3605"]],[14,16,["H8416"]]]},{"k":15654,"v":[[0,1,["H835"]],[1,5,["H8104"]],[5,6,["H4941"]],[6,10,["H6213"]],[10,11,["H6666"]],[11,13,["H3605"]],[13,14,["H6256"]]]},{"k":15655,"v":[[0,1,["H2142"]],[1,4,["H3068"]],[4,7,["H7522"]],[7,13,["H5971"]],[13,15,["H6485"]],[15,19,["H3444"]]]},{"k":15656,"v":[[0,4,["H7200"]],[4,6,["H2896"]],[6,9,["H972"]],[9,13,["H8055"]],[13,16,["H8057"]],[16,19,["H1471"]],[19,23,["H1984"]],[23,24,["H5973"]],[24,26,["H5159"]]]},{"k":15657,"v":[[0,3,["H2398"]],[3,4,["H5973"]],[4,6,["H1"]],[6,10,["H5753"]],[10,14,["H7561"]]]},{"k":15658,"v":[[0,2,["H1"]],[2,3,["H7919"]],[3,4,["H3808"]],[4,6,["H6381"]],[6,8,["H4714"]],[8,10,["H2142"]],[10,11,["H3808","(H853)"]],[11,13,["H7230"]],[13,16,["H2617"]],[16,18,["H4784"]],[18,20,["H5921"]],[20,22,["H3220"]],[22,26,["H5488"]],[26,27,["H3220"]]]},{"k":15659,"v":[[0,3,["H3467"]],[3,8,["H4616","H8034"]],[8,12,["(H853)"]],[12,15,["H1369"]],[15,18,["H3045"]]]},{"k":15660,"v":[[0,2,["H1605"]],[2,4,["H5488"]],[4,5,["H3220"]],[5,11,["H2717"]],[11,14,["H1980"]],[14,18,["H8415"]],[18,22,["H4057"]]]},{"k":15661,"v":[[0,3,["H3467"]],[3,7,["H4480","H3027"]],[7,11,["H8130"]],[11,14,["H1350"]],[14,18,["H4480","H3027"]],[18,21,["H341"]]]},{"k":15662,"v":[[0,3,["H4325"]],[3,4,["H3680"]],[4,6,["H6862"]],[6,9,["H3808"]],[9,10,["H259"]],[10,11,["H4480"]],[11,13,["H3498"]]]},{"k":15663,"v":[[0,2,["H539"]],[2,5,["H1697"]],[5,7,["H7891"]],[7,9,["H8416"]]]},{"k":15664,"v":[[0,2,["H4116"]],[2,3,["H7911"]],[3,5,["H4639"]],[5,7,["H2442"]],[7,8,["H3808"]],[8,11,["H6098"]]]},{"k":15665,"v":[[0,3,["H183","H8378"]],[3,6,["H4057"]],[6,8,["H5254"]],[8,9,["H410"]],[9,12,["H3452"]]]},{"k":15666,"v":[[0,3,["H5414"]],[3,6,["H7596"]],[6,8,["H7971"]],[8,9,["H7332"]],[9,12,["H5315"]]]},{"k":15667,"v":[[0,2,["H7065"]],[2,3,["H4872"]],[3,7,["H4264"]],[7,9,["H175"]],[9,11,["H6918"]],[11,14,["H3068"]]]},{"k":15668,"v":[[0,2,["H776"]],[2,3,["H6605"]],[3,6,["H1104"]],[6,7,["H1885"]],[7,9,["H3680","H5921"]],[9,11,["H5712"]],[11,13,["H48"]]]},{"k":15669,"v":[[0,3,["H784"]],[3,5,["H1197"]],[5,8,["H5712"]],[8,10,["H3852"]],[10,12,["H3857"]],[12,14,["H7563"]]]},{"k":15670,"v":[[0,2,["H6213"]],[2,4,["H5695"]],[4,6,["H2722"]],[6,8,["H7812"]],[8,11,["H4541"]]]},{"k":15671,"v":[[0,3,["H4171","(H853)"]],[3,5,["H3519"]],[5,8,["H8403"]],[8,11,["H7794"]],[11,13,["H398"]],[13,14,["H6212"]]]},{"k":15672,"v":[[0,2,["H7911"]],[2,3,["H410"]],[3,5,["H3467"]],[5,8,["H6213"]],[8,10,["H1419"]],[10,12,["H4714"]]]},{"k":15673,"v":[[0,2,["H6381"]],[2,5,["H776"]],[5,7,["H2526"]],[7,10,["H3372"]],[10,11,["H5921"]],[11,13,["H5488"]],[13,14,["H3220"]]]},{"k":15674,"v":[[0,3,["H559"]],[3,7,["H8045"]],[7,10,["H3884"]],[10,11,["H4872"]],[11,13,["H972"]],[13,14,["H5975"]],[14,15,["H6440"]],[15,19,["H6556"]],[19,22,["H7725"]],[22,24,["H2534"]],[24,28,["H4480","H7843"]],[28,29,[]]]},{"k":15675,"v":[[0,3,["H3988"]],[3,5,["H2532"]],[5,6,["H776"]],[6,8,["H539"]],[8,9,["H3808"]],[9,11,["H1697"]]]},{"k":15676,"v":[[0,2,["H7279"]],[2,5,["H168"]],[5,7,["H8085"]],[7,8,["H3808"]],[8,11,["H6963"]],[11,14,["H3068"]]]},{"k":15677,"v":[[0,4,["H5375"]],[4,6,["H3027"]],[6,10,["H5307"]],[10,14,["H4057"]]]},{"k":15678,"v":[[0,2,["H5307"]],[2,4,["H2233"]],[4,8,["H1471"]],[8,11,["H2219"]],[11,15,["H776"]]]},{"k":15679,"v":[[0,3,["H6775"]],[3,6,["H1187"]],[6,8,["H398"]],[8,10,["H2077"]],[10,13,["H4191"]]]},{"k":15680,"v":[[0,6,["H3707"]],[6,9,["H4611"]],[9,12,["H4046"]],[12,14,["H6555"]],[14,16,[]]]},{"k":15681,"v":[[0,3,["H5975"]],[3,4,["H6372"]],[4,7,["H6419"]],[7,11,["H4046"]],[11,13,["H6113"]]]},{"k":15682,"v":[[0,4,["H2803"]],[4,8,["H6666"]],[8,11,["H1755","H1755"]],[11,13,["H5704","H5769"]]]},{"k":15683,"v":[[0,2,["H7107"]],[2,5,["H5921"]],[5,7,["H4325"]],[7,9,["H4808"]],[9,14,["H3415"]],[14,16,["H4872"]],[16,19,["H5668"]]]},{"k":15684,"v":[[0,1,["H3588"]],[1,3,["H4784","(H853)"]],[3,5,["H7307"]],[5,10,["H981"]],[10,13,["H8193"]]]},{"k":15685,"v":[[0,3,["H3808"]],[3,4,["H8045","(H853)"]],[4,6,["H5971"]],[6,8,["H834"]],[8,10,["H3068"]],[10,11,["H559"]],[11,12,[]]]},{"k":15686,"v":[[0,3,["H6148"]],[3,6,["H1471"]],[6,8,["H3925"]],[8,10,["H4639"]]]},{"k":15687,"v":[[0,3,["H5647","(H853)"]],[3,5,["H6091"]],[5,7,["H1961"]],[7,9,["H4170"]],[9,11,[]]]},{"k":15688,"v":[[0,3,["H2076","(H853)"]],[3,5,["H1121"]],[5,8,["H1323"]],[8,10,["H7700"]]]},{"k":15689,"v":[[0,2,["H8210"]],[2,3,["H5355"]],[3,4,["H1818"]],[4,7,["H1818"]],[7,10,["H1121"]],[10,14,["H1323"]],[14,15,["H834"]],[15,17,["H2076"]],[17,20,["H6091"]],[20,22,["H3667"]],[22,25,["H776"]],[25,27,["H2610"]],[27,29,["H1818"]]]},{"k":15690,"v":[[0,4,["H2930"]],[4,8,["H4639"]],[8,12,["H2181"]],[12,16,["H4611"]]]},{"k":15691,"v":[[0,4,["H639"]],[4,7,["H3068"]],[7,8,["H2734"]],[8,11,["H5971"]],[11,15,["H8581","(H853)"]],[15,18,["H5159"]]]},{"k":15692,"v":[[0,3,["H5414"]],[3,7,["H3027"]],[7,10,["H1471"]],[10,14,["H8130"]],[14,16,["H4910"]],[16,18,[]]]},{"k":15693,"v":[[0,2,["H341"]],[2,4,["H3905"]],[4,11,["H3665"]],[11,12,["H8478"]],[12,14,["H3027"]]]},{"k":15694,"v":[[0,1,["H7227"]],[1,2,["H6471"]],[2,5,["H5337"]],[5,8,["H1992"]],[8,9,["H4784"]],[9,13,["H6098"]],[13,17,["H4355"]],[17,20,["H5771"]]]},{"k":15695,"v":[[0,3,["H7200"]],[3,5,["H6862"]],[5,8,["H8085","(H853)"]],[8,10,["H7440"]]]},{"k":15696,"v":[[0,3,["H2142"]],[3,7,["H1285"]],[7,9,["H5162"]],[9,13,["H7230"]],[13,16,["H2617"]]]},{"k":15697,"v":[[0,2,["H5414"]],[2,7,["H7356"]],[7,8,["H6440"]],[8,9,["H3605"]],[9,14,["H7617"]]]},{"k":15698,"v":[[0,1,["H3467"]],[1,4,["H3068"]],[4,6,["H430"]],[6,8,["H6908"]],[8,11,["H4480"]],[11,13,["H1471"]],[13,16,["H3034"]],[16,19,["H6944"]],[19,20,["H8034"]],[20,23,["H7623"]],[23,26,["H8416"]]]},{"k":15699,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,8,["H4480"]],[8,9,["H5769"]],[9,10,["H5704"]],[10,11,["H5769"]],[11,14,["H3605"]],[14,16,["H5971"]],[16,17,["H559"]],[17,18,["H543"]],[18,19,["H1984"]],[19,22,["H3050"]]]},{"k":15700,"v":[[0,3,["H3034"]],[3,6,["H3068"]],[6,7,["H3588"]],[7,10,["H2896"]],[10,11,["H3588"]],[11,13,["H2617"]],[13,16,["H5769"]]]},{"k":15701,"v":[[0,3,["H1350"]],[3,6,["H3068"]],[6,7,["H559"]],[7,9,["H834"]],[9,12,["H1350"]],[12,15,["H4480","H3027"]],[15,18,["H6862"]]]},{"k":15702,"v":[[0,2,["H6908"]],[2,7,["H4480","H776"]],[7,10,["H4480","H4217"]],[10,14,["H4480","H4628"]],[14,17,["H4480","H6828"]],[17,21,["H4480","H3220"]]]},{"k":15703,"v":[[0,2,["H8582"]],[2,5,["H4057"]],[5,8,["H3452"]],[8,9,["H1870"]],[9,11,["H4672"]],[11,12,["H3808"]],[12,13,["H5892"]],[13,15,["H4186"]],[15,16,[]]]},{"k":15704,"v":[[0,1,["H7457"]],[1,2,["H1571"]],[2,3,["H6771"]],[3,5,["H5315"]],[5,6,["H5848"]],[6,8,[]]]},{"k":15705,"v":[[0,3,["H6817"]],[3,4,["H413"]],[4,6,["H3068"]],[6,9,["H6862"]],[9,12,["H5337"]],[12,17,["H4480","H4691"]]]},{"k":15706,"v":[[0,5,["H1869"]],[5,8,["H3477"]],[8,9,["H1870"]],[9,13,["H1980"]],[13,14,["H413"]],[14,16,["H5892"]],[16,18,["H4186"]]]},{"k":15707,"v":[[0,5,["H3034"]],[5,7,["H3068"]],[7,10,["H2617"]],[10,15,["H6381"]],[15,18,["H1121"]],[18,20,["H120"]]]},{"k":15708,"v":[[0,1,["H3588"]],[1,3,["H7646"]],[3,5,["H8264"]],[5,6,["H5315"]],[6,8,["H4390"]],[8,10,["H7457"]],[10,11,["H5315"]],[11,13,["H2896"]]]},{"k":15709,"v":[[0,3,["H3427"]],[3,5,["H2822"]],[5,11,["H6757"]],[11,13,["H615"]],[13,15,["H6040"]],[15,17,["H1270"]]]},{"k":15710,"v":[[0,1,["H3588"]],[1,4,["H4784"]],[4,6,["H561"]],[6,8,["H410"]],[8,10,["H5006"]],[10,12,["H6098"]],[12,16,["H5945"]]]},{"k":15711,"v":[[0,4,["H3665"]],[4,6,["H3820"]],[6,8,["H5999"]],[8,11,["H3782"]],[11,15,["H369"]],[15,17,["H5826"]]]},{"k":15712,"v":[[0,3,["H2199"]],[3,4,["H413"]],[4,6,["H3068"]],[6,9,["H6862"]],[9,12,["H3467"]],[12,17,["H4480","H4691"]]]},{"k":15713,"v":[[0,4,["H3318"]],[4,6,["H4480","H2822"]],[6,11,["H6757"]],[11,13,["H5423"]],[13,15,["H4147"]],[15,17,[]]]},{"k":15714,"v":[[0,5,["H3034"]],[5,7,["H3068"]],[7,10,["H2617"]],[10,15,["H6381"]],[15,18,["H1121"]],[18,20,["H120"]]]},{"k":15715,"v":[[0,1,["H3588"]],[1,4,["H7665"]],[4,6,["H1817"]],[6,8,["H5178"]],[8,10,["H1438"]],[10,12,["H1280"]],[12,14,["H1270"]],[14,16,[]]]},{"k":15716,"v":[[0,1,["H191"]],[1,2,["H4480","H1870"]],[2,5,["H6588"]],[5,10,["H4480","H5771"]],[10,12,["H6031"]]]},{"k":15717,"v":[[0,2,["H5315"]],[2,3,["H8581"]],[3,5,["H3605"]],[5,7,["H400"]],[7,11,["H5060"]],[11,12,["H5704"]],[12,14,["H8179"]],[14,16,["H4194"]]]},{"k":15718,"v":[[0,3,["H2199"]],[3,4,["H413"]],[4,6,["H3068"]],[6,9,["H6862"]],[9,12,["H3467"]],[12,17,["H4480","H4691"]]]},{"k":15719,"v":[[0,2,["H7971"]],[2,4,["H1697"]],[4,6,["H7495"]],[6,9,["H4422"]],[9,13,["H4480","H7825"]]]},{"k":15720,"v":[[0,5,["H3034"]],[5,7,["H3068"]],[7,10,["H2617"]],[10,15,["H6381"]],[15,18,["H1121"]],[18,20,["H120"]]]},{"k":15721,"v":[[0,4,["H2076"]],[4,6,["H2077"]],[6,8,["H8426"]],[8,10,["H5608"]],[10,12,["H4639"]],[12,14,["H7440"]]]},{"k":15722,"v":[[0,4,["H3381"]],[4,7,["H3220"]],[7,9,["H591"]],[9,11,["H6213"]],[11,12,["H4399"]],[12,14,["H7227"]],[14,15,["H4325"]]]},{"k":15723,"v":[[0,1,["H1992"]],[1,2,["H7200"]],[2,4,["H4639"]],[4,7,["H3068"]],[7,10,["H6381"]],[10,13,["H4688"]]]},{"k":15724,"v":[[0,3,["H559"]],[3,5,["H5975"]],[5,7,["H5591"]],[7,8,["H7307"]],[8,11,["H7311"]],[11,13,["H1530"]],[13,14,[]]]},{"k":15725,"v":[[0,3,["H5927"]],[3,6,["H8064"]],[6,9,["H3381"]],[9,13,["H8415"]],[13,15,["H5315"]],[15,17,["H4127"]],[17,20,["H7451"]]]},{"k":15726,"v":[[0,5,["H2287"]],[5,7,["H5128"]],[7,11,["H7910"]],[11,17,["H3605","H2451","H1104"]]]},{"k":15727,"v":[[0,3,["H6817"]],[3,4,["H413"]],[4,6,["H3068"]],[6,9,["H6862"]],[9,14,["H3318"]],[14,17,["H4480","H4691"]]]},{"k":15728,"v":[[0,2,["H6965"]],[2,4,["H5591"]],[4,6,["H1827"]],[6,10,["H1530"]],[10,13,["H2814"]]]},{"k":15729,"v":[[0,4,["H8055"]],[4,5,["H3588"]],[5,8,["H8367"]],[8,11,["H5148"]],[11,13,["H413"]],[13,15,["H2656"]],[15,16,["H4231"]]]},{"k":15730,"v":[[0,5,["H3034"]],[5,7,["H3068"]],[7,10,["H2617"]],[10,15,["H6381"]],[15,18,["H1121"]],[18,20,["H120"]]]},{"k":15731,"v":[[0,3,["H7311"]],[3,8,["H6951"]],[8,11,["H5971"]],[11,13,["H1984"]],[13,17,["H4186"]],[17,20,["H2205"]]]},{"k":15732,"v":[[0,2,["H7760"]],[2,3,["H5104"]],[3,6,["H4057"]],[6,9,["H4325","H4161"]],[9,12,["H6774"]]]},{"k":15733,"v":[[0,2,["H6529"]],[2,3,["H776"]],[3,5,["H4420"]],[5,8,["H4480","H7451"]],[8,12,["H3427"]],[12,13,[]]]},{"k":15734,"v":[[0,2,["H7760"]],[2,4,["H4057"]],[4,7,["H98"]],[7,8,["H4325"]],[8,10,["H6723"]],[10,11,["H776"]],[11,13,["H4161","H4325"]]]},{"k":15735,"v":[[0,2,["H8033"]],[2,8,["H3427","H7457"]],[8,12,["H3559"]],[12,14,["H5892"]],[14,16,["H4186"]]]},{"k":15736,"v":[[0,2,["H2232"]],[2,4,["H7704"]],[4,6,["H5193"]],[6,7,["H3754"]],[7,10,["H6213"]],[10,11,["H6529"]],[11,13,["H8393"]]]},{"k":15737,"v":[[0,2,["H1288"]],[2,9,["H7235"]],[9,10,["H3966"]],[10,13,["H3808"]],[13,15,["H929"]],[15,17,["H4591"]]]},{"k":15738,"v":[[0,4,["H4591"]],[4,7,["H7817"]],[7,9,["H4480","H6115"]],[9,10,["H7451"]],[10,12,["H3015"]]]},{"k":15739,"v":[[0,2,["H8210"]],[2,3,["H937"]],[3,4,["H5921"]],[4,5,["H5081"]],[5,10,["H8582"]],[10,13,["H8414"]],[13,17,["H3808"]],[17,18,["H1870"]]]},{"k":15740,"v":[[0,7,["H7682","H34"]],[7,9,["H4480","H6040"]],[9,11,["H7760"]],[11,13,["H4940"]],[13,16,["H6629"]]]},{"k":15741,"v":[[0,2,["H3477"]],[2,4,["H7200"]],[4,7,["H8055"]],[7,9,["H3605"]],[9,10,["H5766"]],[10,12,["H7092"]],[12,14,["H6310"]]]},{"k":15742,"v":[[0,1,["H4310"]],[1,3,["H2450"]],[3,6,["H8104"]],[6,7,["H428"]],[7,12,["H995"]],[12,14,["H2617"]],[14,17,["H3068"]]]},{"k":15743,"v":[[0,2,["H430"]],[2,4,["H3820"]],[4,6,["H3559"]],[6,9,["H7891"]],[9,12,["H2167"]],[12,13,["H637"]],[13,16,["H3519"]]]},{"k":15744,"v":[[0,1,["H5782"]],[1,2,["H5035"]],[2,4,["H3658"]],[4,8,["H5782"]],[8,9,["H7837"]]]},{"k":15745,"v":[[0,3,["H3034"]],[3,6,["H3068"]],[6,9,["H5971"]],[9,14,["H2167"]],[14,19,["H3816"]]]},{"k":15746,"v":[[0,1,["H3588"]],[1,3,["H2617"]],[3,5,["H1419"]],[5,6,["H4480","H5921"]],[6,8,["H8064"]],[8,11,["H571"]],[11,13,["H5704"]],[13,15,["H7834"]]]},{"k":15747,"v":[[0,3,["H7311"]],[3,5,["H430"]],[5,6,["H5921"]],[6,8,["H8064"]],[8,11,["H3519"]],[11,12,["H5921"]],[12,13,["H3605"]],[13,15,["H776"]]]},{"k":15748,"v":[[0,1,["H4616"]],[1,3,["H3039"]],[3,6,["H2502"]],[6,7,["H3467"]],[7,11,["H3225"]],[11,13,["H6030"]],[13,14,[]]]},{"k":15749,"v":[[0,1,["H430"]],[1,3,["H1696"]],[3,6,["H6944"]],[6,9,["H5937"]],[9,12,["H2505"]],[12,13,["H7927"]],[13,16,["H4058"]],[16,18,["H6010"]],[18,20,["H5523"]]]},{"k":15750,"v":[[0,1,["H1568"]],[1,4,["H4519"]],[4,7,["H669"]],[7,11,["H4581"]],[11,14,["H7218"]],[14,15,["H3063"]],[15,18,["H2710"]]]},{"k":15751,"v":[[0,1,["H4124"]],[1,4,["H5518","H7366"]],[4,5,["H5921"]],[5,6,["H123"]],[6,10,["H7993"]],[10,12,["H5275"]],[12,13,["H5921"]],[13,14,["H6429"]],[14,17,["H7321"]]]},{"k":15752,"v":[[0,1,["H4310"]],[1,3,["H2986"]],[3,7,["H4013"]],[7,8,["H5892"]],[8,9,["H4310"]],[9,11,["H5148"]],[11,13,["H5704"]],[13,14,["H123"]]]},{"k":15753,"v":[[0,2,["H3808"]],[2,5,["H430"]],[5,10,["H2186"]],[10,13,["H3808"]],[13,16,["H430"]],[16,18,["H3318"]],[18,21,["H6635"]]]},{"k":15754,"v":[[0,1,["H3051"]],[1,3,["H5833"]],[3,5,["H4480","H6862"]],[5,7,["H7723"]],[7,10,["H8668"]],[10,12,["H120"]]]},{"k":15755,"v":[[0,2,["H430"]],[2,5,["H6213"]],[5,6,["H2428"]],[6,8,["H1931"]],[8,14,["H947"]],[14,16,["H6862"]]]},{"k":15756,"v":[[0,1,["H2790"]],[1,2,["H408"]],[2,6,["H430"]],[6,9,["H8416"]]]},{"k":15757,"v":[[0,1,["H3588"]],[1,3,["H6310"]],[3,6,["H7563"]],[6,9,["H6310"]],[9,12,["H4820"]],[12,14,["H6605"]],[14,15,["H5921"]],[15,19,["H1696"]],[19,20,["H854"]],[20,24,["H8267"]],[24,25,["H3956"]]]},{"k":15758,"v":[[0,4,["H5437"]],[4,7,["H1697"]],[7,9,["H8135"]],[9,12,["H3898"]],[12,16,["H2600"]]]},{"k":15759,"v":[[0,1,["H8478"]],[1,3,["H160"]],[3,7,["H7853"]],[7,9,["H589"]],[9,13,["H8605"]]]},{"k":15760,"v":[[0,4,["H7760","H5921"]],[4,6,["H7451"]],[6,7,["H8478"]],[7,8,["H2896"]],[8,10,["H8135"]],[10,11,["H8478"]],[11,13,["H160"]]]},{"k":15761,"v":[[0,1,["H6485"]],[1,5,["H7563"]],[5,6,["H5921"]],[6,10,["H7854"]],[10,11,["H5975"]],[11,12,["H5921"]],[12,15,["H3225"]]]},{"k":15762,"v":[[0,5,["H8199"]],[5,9,["H3318","H7563"]],[9,11,["H3318"]],[11,13,["H8605"]],[13,14,["H1961"]],[14,15,["H2401"]]]},{"k":15763,"v":[[0,3,["H3117"]],[3,4,["H1961"]],[4,5,["H4592"]],[5,8,["H312"]],[8,9,["H3947"]],[9,11,["H6486"]]]},{"k":15764,"v":[[0,3,["H1121"]],[3,4,["H1961"]],[4,5,["H3490"]],[5,8,["H802"]],[8,10,["H490"]]]},{"k":15765,"v":[[0,3,["H1121"]],[3,6,["H5128","H5128"]],[6,8,["H7592"]],[8,11,["H1875"]],[11,19,["H4480","H2723"]]]},{"k":15766,"v":[[0,3,["H5383"]],[3,4,["H5367"]],[4,5,["H3605"]],[5,6,["H834"]],[6,12,["H2114"]],[12,13,["H962"]],[13,15,["H3018"]]]},{"k":15767,"v":[[0,3,["H1961"]],[3,4,["H408"]],[4,6,["H4900"]],[6,7,["H2617"]],[7,10,["H408"]],[10,13,["H1961"]],[13,16,["H2603"]],[16,19,["H3490"]]]},{"k":15768,"v":[[0,3,["H319"]],[3,4,["H1961"]],[4,6,["H3772"]],[6,10,["H1755"]],[10,11,["H312"]],[11,14,["H8034"]],[14,17,["H4229"]]]},{"k":15769,"v":[[0,3,["H5771"]],[3,6,["H1"]],[6,8,["H2142"]],[8,9,["H413"]],[9,11,["H3068"]],[11,14,["H408"]],[14,16,["H2403"]],[16,19,["H517"]],[19,22,["H4229"]]]},{"k":15770,"v":[[0,3,["H1961"]],[3,4,["H5048"]],[4,6,["H3068"]],[6,7,["H8548"]],[7,12,["H3772"]],[12,14,["H2143"]],[14,19,["H4480","H776"]]]},{"k":15771,"v":[[0,1,["H3282"]],[1,2,["H834"]],[2,4,["H2142"]],[4,5,["H3808"]],[5,7,["H6213"]],[7,8,["H2617"]],[8,10,["H7291"]],[10,12,["H6041"]],[12,14,["H34"]],[14,15,["H376"]],[15,20,["H4191"]],[20,22,["H3512"]],[22,24,["H3824"]]]},{"k":15772,"v":[[0,3,["H157"]],[3,4,["H7045"]],[4,8,["H935"]],[8,13,["H2654"]],[13,14,["H3808"]],[14,16,["H1293"]],[16,21,["H7368"]],[21,22,["H4480"]],[22,23,[]]]},{"k":15773,"v":[[0,3,["H3847"]],[3,6,["H7045"]],[6,11,["H4055"]],[11,15,["H935"]],[15,18,["H7130"]],[18,20,["H4325"]],[20,23,["H8081"]],[23,26,["H6106"]]]},{"k":15774,"v":[[0,3,["H1961"]],[3,8,["H899"]],[8,10,["H5844"]],[10,15,["H4206"]],[15,19,["H2296"]],[19,20,["H8548"]]]},{"k":15775,"v":[[0,2,["H2063"]],[2,5,["H6468"]],[5,8,["H7853"]],[8,9,["H4480","H854"]],[9,11,["H3068"]],[11,16,["H1696"]],[16,17,["H7451"]],[17,18,["H5921"]],[18,20,["H5315"]]]},{"k":15776,"v":[[0,2,["H6213"]],[2,3,["H859"]],[3,4,["H854"]],[4,7,["H3069"]],[7,9,["H136"]],[9,13,["H4616","H8034"]],[13,14,["H3588"]],[14,16,["H2617"]],[16,18,["H2896"]],[18,19,["H5337"]],[19,21,[]]]},{"k":15777,"v":[[0,1,["H3588"]],[1,2,["H595"]],[2,4,["H6041"]],[4,6,["H34"]],[6,9,["H3820"]],[9,11,["H2490"]],[11,12,["H7130"]],[12,13,[]]]},{"k":15778,"v":[[0,3,["H1980"]],[3,6,["H6738"]],[6,9,["H5186"]],[9,15,["H5287"]],[15,18,["H697"]]]},{"k":15779,"v":[[0,2,["H1290"]],[2,4,["H3782"]],[4,6,["H4480","H6685"]],[6,9,["H1320"]],[9,10,["H3584"]],[10,12,["H4480","H8081"]]]},{"k":15780,"v":[[0,1,["H589"]],[1,2,["H1961"]],[2,5,["H2781"]],[5,11,["H7200"]],[11,14,["H5128"]],[14,16,["H7218"]]]},{"k":15781,"v":[[0,1,["H5826"]],[1,4,["H3068"]],[4,6,["H430"]],[6,8,["H3467"]],[8,13,["H2617"]]]},{"k":15782,"v":[[0,1,["H3588"]],[1,4,["H3045"]],[4,6,["H2063"]],[6,9,["H3027"]],[9,11,["H859"]],[11,12,["H3068"]],[12,14,["H6213"]],[14,15,[]]]},{"k":15783,"v":[[0,2,["H1992"]],[2,3,["H7043"]],[3,5,["H1288"]],[5,6,["H859"]],[6,9,["H6965"]],[9,13,["H954"]],[13,17,["H5650"]],[17,18,["H8055"]]]},{"k":15784,"v":[[0,3,["H7853"]],[3,5,["H3847"]],[5,7,["H3639"]],[7,11,["H5844"]],[11,16,["H1322"]],[16,20,["H4598"]]]},{"k":15785,"v":[[0,3,["H3966"]],[3,4,["H3034"]],[4,6,["H3068"]],[6,9,["H6310"]],[9,13,["H1984"]],[13,15,["H8432"]],[15,17,["H7227"]]]},{"k":15786,"v":[[0,1,["H3588"]],[1,4,["H5975"]],[4,8,["H3225"]],[8,11,["H34"]],[11,13,["H3467"]],[13,18,["H4480","H8199"]],[18,20,["H5315"]]]},{"k":15787,"v":[[0,2,["H3068"]],[2,3,["H5002"]],[3,6,["H113"]],[6,7,["H3427"]],[7,12,["H3225"]],[12,13,["H5704"]],[13,15,["H7896"]],[15,17,["H341"]],[17,19,["H1916","H7272"]]]},{"k":15788,"v":[[0,2,["H3068"]],[2,4,["H7971"]],[4,6,["H4294"]],[6,9,["H5797"]],[9,12,["H4480","H6726"]],[12,13,["H7287"]],[13,17,["H7130"]],[17,20,["H341"]]]},{"k":15789,"v":[[0,2,["H5971"]],[2,5,["H5071"]],[5,8,["H3117"]],[8,11,["H2428"]],[11,14,["H1926"]],[14,16,["H6944"]],[16,19,["H4480","H7358"]],[19,22,["H4891"]],[22,26,["H2919"]],[26,29,["H3208"]]]},{"k":15790,"v":[[0,2,["H3068"]],[2,4,["H7650"]],[4,7,["H3808"]],[7,8,["H5162"]],[8,9,["H859"]],[9,12,["H3548"]],[12,14,["H5769"]],[14,15,["H5921"]],[15,17,["H1700"]],[17,19,["H4442"]]]},{"k":15791,"v":[[0,2,["H136"]],[2,3,["H5921"]],[3,6,["H3225"]],[6,9,["H4272"]],[9,10,["H4428"]],[10,13,["H3117"]],[13,16,["H639"]]]},{"k":15792,"v":[[0,3,["H1777"]],[3,6,["H1471"]],[6,9,["H4390"]],[9,15,["H1472"]],[15,18,["H4272"]],[18,20,["H7218"]],[20,21,["H5921"]],[21,22,["H7227"]],[22,23,["H776"]]]},{"k":15793,"v":[[0,3,["H8354"]],[3,6,["H4480","H5158"]],[6,9,["H1870"]],[9,10,["H5921","H3651"]],[10,14,["H7311"]],[14,16,["H7218"]]]},{"k":15794,"v":[[0,1,["H1984"]],[1,4,["H3050"]],[4,7,["H3034"]],[7,9,["H3068"]],[9,12,["H3605"]],[12,13,["H3824"]],[13,16,["H5475"]],[16,19,["H3477"]],[19,23,["H5712"]]]},{"k":15795,"v":[[0,2,["H4639"]],[2,5,["H3068"]],[5,7,["H1419"]],[7,9,["H1875"]],[9,11,["H3605"]],[11,15,["H2656"]],[15,16,[]]]},{"k":15796,"v":[[0,2,["H6467"]],[2,4,["H1935"]],[4,6,["H1926"]],[6,9,["H6666"]],[9,10,["H5975"]],[10,12,["H5703"]]]},{"k":15797,"v":[[0,3,["H6213"]],[3,6,["H6381"]],[6,9,["H2143"]],[9,11,["H3068"]],[11,13,["H2587"]],[13,17,["H7349"]]]},{"k":15798,"v":[[0,3,["H5414"]],[3,4,["H2964"]],[4,8,["H3373"]],[8,12,["H5769"]],[12,14,["H2142"]],[14,17,["H1285"]]]},{"k":15799,"v":[[0,3,["H5046"]],[3,5,["H5971"]],[5,7,["H3581"]],[7,10,["H4639"]],[10,14,["H5414"]],[14,17,["H5159"]],[17,20,["H1471"]]]},{"k":15800,"v":[[0,2,["H4639"]],[2,5,["H3027"]],[5,7,["H571"]],[7,9,["H4941"]],[9,10,["H3605"]],[10,12,["H6490"]],[12,14,["H539"]]]},{"k":15801,"v":[[0,3,["H5564"]],[3,5,["H5703"]],[5,7,["H5769"]],[7,10,["H6213"]],[10,12,["H571"]],[12,14,["H3477"]]]},{"k":15802,"v":[[0,2,["H7971"]],[2,3,["H6304"]],[3,6,["H5971"]],[6,9,["H6680"]],[9,11,["H1285"]],[11,13,["H5769"]],[13,14,["H6918"]],[14,16,["H3372"]],[16,19,["H8034"]]]},{"k":15803,"v":[[0,2,["H3374"]],[2,5,["H3068"]],[5,8,["H7225"]],[8,10,["H2451"]],[10,12,["H2896"]],[12,13,["H7922"]],[13,15,["H3605"]],[15,18,["H6213"]],[18,22,["H8416"]],[22,23,["H5975"]],[23,25,["H5703"]]]},{"k":15804,"v":[[0,1,["H1984"]],[1,4,["H3050"]],[4,5,["H835"]],[5,8,["H376"]],[8,10,["H3372","(H853)"]],[10,12,["H3068"]],[12,14,["H2654"]],[14,15,["H3966"]],[15,18,["H4687"]]]},{"k":15805,"v":[[0,2,["H2233"]],[2,4,["H1961"]],[4,5,["H1368"]],[5,7,["H776"]],[7,9,["H1755"]],[9,12,["H3477"]],[12,15,["H1288"]]]},{"k":15806,"v":[[0,1,["H1952"]],[1,3,["H6239"]],[3,8,["H1004"]],[8,11,["H6666"]],[11,12,["H5975"]],[12,14,["H5703"]]]},{"k":15807,"v":[[0,3,["H3477"]],[3,5,["H2224"]],[5,6,["H216"]],[6,9,["H2822"]],[9,12,["H2587"]],[12,16,["H7349"]],[16,18,["H6662"]]]},{"k":15808,"v":[[0,2,["H2896"]],[2,3,["H376"]],[3,5,["H2603"]],[5,7,["H3867"]],[7,10,["H3557"]],[10,12,["H1697"]],[12,14,["H4941"]]]},{"k":15809,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,6,["H4131"]],[6,8,["H5769"]],[8,10,["H6662"]],[10,12,["H1961"]],[12,14,["H5769"]],[14,15,["H2143"]]]},{"k":15810,"v":[[0,3,["H3808"]],[3,5,["H3372"]],[5,7,["H7451"]],[7,8,["H4480","H8052"]],[8,10,["H3820"]],[10,12,["H3559"]],[12,13,["H982"]],[13,16,["H3068"]]]},{"k":15811,"v":[[0,2,["H3820"]],[2,4,["H5564"]],[4,7,["H3808"]],[7,9,["H3372"]],[9,10,["H5704","H834"]],[10,12,["H7200"]],[12,17,["H6862"]]]},{"k":15812,"v":[[0,3,["H6340"]],[3,6,["H5414"]],[6,9,["H34"]],[9,11,["H6666"]],[11,12,["H5975"]],[12,14,["H5703"]],[14,16,["H7161"]],[16,19,["H7311"]],[19,21,["H3519"]]]},{"k":15813,"v":[[0,2,["H7563"]],[2,4,["H7200"]],[4,8,["H3707"]],[8,11,["H2786"]],[11,14,["H8127"]],[14,17,["H4549"]],[17,19,["H8378"]],[19,22,["H7563"]],[22,24,["H6"]]]},{"k":15814,"v":[[0,1,["H1984"]],[1,4,["H3050"]],[4,5,["H1984"]],[5,8,["H5650"]],[8,11,["H3068"]],[11,12,["H1984","(H853)"]],[12,14,["H8034"]],[14,17,["H3068"]]]},{"k":15815,"v":[[0,1,["H1288"]],[1,2,["H1961"]],[2,4,["H8034"]],[4,7,["H3068"]],[7,11,["H4480","H6258"]],[11,14,["H5704","H5769"]]]},{"k":15816,"v":[[0,3,["H4480","H4217"]],[3,6,["H8121"]],[6,7,["H5704"]],[7,10,["H3996"]],[10,15,["H3068"]],[15,16,["H8034"]],[16,20,["H1984"]]]},{"k":15817,"v":[[0,2,["H3068"]],[2,4,["H7311"]],[4,5,["H5921"]],[5,6,["H3605"]],[6,7,["H1471"]],[7,10,["H3519"]],[10,11,["H5921"]],[11,13,["H8064"]]]},{"k":15818,"v":[[0,1,["H4310"]],[1,6,["H3068"]],[6,8,["H430"]],[8,10,["H3427"]],[10,12,["H1361"]]]},{"k":15819,"v":[[0,2,["H8213"]],[2,5,["H7200"]],[5,11,["H8064"]],[11,15,["H776"]]]},{"k":15820,"v":[[0,3,["H6965"]],[3,5,["H1800"]],[5,9,["H4480","H6083"]],[9,11,["H7311"]],[11,13,["H34"]],[13,17,["H4480","H830"]]]},{"k":15821,"v":[[0,4,["H3427"]],[4,6,["H5973"]],[6,7,["H5081"]],[7,9,["H5973"]],[9,11,["H5081"]],[11,14,["H5971"]]]},{"k":15822,"v":[[0,4,["H6135"]],[4,7,["H3427"]],[7,8,["H1004"]],[8,13,["H8056"]],[13,14,["H517"]],[14,16,["H1121"]],[16,17,["H1984"]],[17,20,["H3050"]]]},{"k":15823,"v":[[0,2,["H3478"]],[2,4,["H3318"]],[4,6,["H4480","H4714"]],[6,8,["H1004"]],[8,10,["H3290"]],[10,13,["H4480","H5971"]],[13,16,["H3937"]]]},{"k":15824,"v":[[0,1,["H3063"]],[1,2,["H1961"]],[2,4,["H6944"]],[4,6,["H3478"]],[6,8,["H4475"]]]},{"k":15825,"v":[[0,2,["H3220"]],[2,3,["H7200"]],[3,6,["H5127"]],[6,7,["H3383"]],[7,9,["H5437"]],[9,10,["H268"]]]},{"k":15826,"v":[[0,2,["H2022"]],[2,3,["H7540"]],[3,5,["H352"]],[5,9,["H1389"]],[9,11,["H1121","H6629"]]]},{"k":15827,"v":[[0,1,["H4100"]],[1,6,["H3220"]],[6,7,["H3588"]],[7,9,["H5127"]],[9,11,["H3383"]],[11,15,["H5437"]],[15,16,["H268"]]]},{"k":15828,"v":[[0,2,["H2022"]],[2,5,["H7540"]],[5,7,["H352"]],[7,11,["H1389"]],[11,13,["H1121","H6629"]]]},{"k":15829,"v":[[0,1,["H2342"]],[1,3,["H776"]],[3,6,["H4480","H6440"]],[6,9,["H113"]],[9,12,["H4480","H6440"]],[12,15,["H433"]],[15,17,["H3290"]]]},{"k":15830,"v":[[0,2,["H2015"]],[2,4,["H6697"]],[4,7,["H98"]],[7,8,["H4325"]],[8,10,["H2496"]],[10,13,["H4599"]],[13,15,["H4325"]]]},{"k":15831,"v":[[0,1,["H3808"]],[1,5,["H3068"]],[5,6,["H3808"]],[6,9,["H3588"]],[9,12,["H8034"]],[12,13,["H5414"]],[13,14,["H3519"]],[14,15,["H5921"]],[15,17,["H2617"]],[17,19,["H5921"]],[19,21,["H571"]],[21,22,[]]]},{"k":15832,"v":[[0,1,["H4100"]],[1,4,["H1471"]],[4,5,["H559"]],[5,6,["H346"]],[6,8,["H4994"]],[8,10,["H430"]]]},{"k":15833,"v":[[0,3,["H430"]],[3,7,["H8064"]],[7,10,["H6213"]],[10,11,["H3605","H834"]],[11,14,["H2654"]]]},{"k":15834,"v":[[0,2,["H6091"]],[2,4,["H3701"]],[4,6,["H2091"]],[6,8,["H4639"]],[8,10,["H120"]],[10,11,["H3027"]]]},{"k":15835,"v":[[0,3,["H6310"]],[3,6,["H1696"]],[6,7,["H3808"]],[7,8,["H5869"]],[8,13,["H7200"]],[13,14,["H3808"]]]},{"k":15836,"v":[[0,3,["H241"]],[3,6,["H8085"]],[6,7,["H3808"]],[7,8,["H639"]],[8,13,["H7306"]],[13,14,["H3808"]]]},{"k":15837,"v":[[0,3,["H3027"]],[3,6,["H4184"]],[6,7,["H3808"]],[7,8,["H7272"]],[8,13,["H1980"]],[13,14,["H3808"]],[14,15,["H3808"]],[15,16,["H1897"]],[16,20,["H1627"]]]},{"k":15838,"v":[[0,3,["H6213"]],[3,5,["H1961"]],[5,8,["H3644"]],[8,12,["H3605"]],[12,13,["H834"]],[13,14,["H982"]],[14,16,[]]]},{"k":15839,"v":[[0,2,["H3478"]],[2,3,["H982"]],[3,7,["H3068"]],[7,8,["H1931"]],[8,11,["H5828"]],[11,14,["H4043"]]]},{"k":15840,"v":[[0,2,["H1004"]],[2,4,["H175"]],[4,5,["H982"]],[5,8,["H3068"]],[8,9,["H1931"]],[9,12,["H5828"]],[12,15,["H4043"]]]},{"k":15841,"v":[[0,3,["H3373"]],[3,5,["H3068"]],[5,6,["H982"]],[6,9,["H3068"]],[9,10,["H1931"]],[10,13,["H5828"]],[13,16,["H4043"]]]},{"k":15842,"v":[[0,2,["H3068"]],[2,5,["H2142"]],[5,10,["H1288"]],[10,14,["H1288","(H853)"]],[14,16,["H1004"]],[16,18,["H3478"]],[18,21,["H1288","(H853)"]],[21,23,["H1004"]],[23,25,["H175"]]]},{"k":15843,"v":[[0,3,["H1288"]],[3,6,["H3373"]],[6,8,["H3068"]],[8,10,["H6996"]],[10,11,["H5973"]],[11,12,["H1419"]]]},{"k":15844,"v":[[0,2,["H3068"]],[2,8,["H3254","H5921"]],[8,12,["H1121"]]]},{"k":15845,"v":[[0,1,["H859"]],[1,3,["H1288"]],[3,6,["H3068"]],[6,8,["H6213"]],[8,9,["H8064"]],[9,11,["H776"]]]},{"k":15846,"v":[[0,2,["H8064"]],[2,5,["H8064"]],[5,8,["H3068"]],[8,11,["H776"]],[11,14,["H5414"]],[14,17,["H1121"]],[17,19,["H120"]]]},{"k":15847,"v":[[0,2,["H4191"]],[2,3,["H1984"]],[3,4,["H3808"]],[4,6,["H3050"]],[6,7,["H3808"]],[7,8,["H3605"]],[8,11,["H3381"]],[11,13,["H1745"]]]},{"k":15848,"v":[[0,2,["H587"]],[2,4,["H1288"]],[4,6,["H3050"]],[6,10,["H4480","H6258"]],[10,13,["H5704","H5769"]],[13,14,["H1984"]],[14,16,["H3050"]]]},{"k":15849,"v":[[0,2,["H157"]],[2,4,["H3068"]],[4,5,["H3588"]],[5,8,["H8085","(H853)"]],[8,10,["H6963"]],[10,13,["H8469"]]]},{"k":15850,"v":[[0,1,["H3588"]],[1,4,["H5186"]],[4,6,["H241"]],[6,13,["H7121"]],[13,19,["H3117"]]]},{"k":15851,"v":[[0,2,["H2256"]],[2,4,["H4194"]],[4,5,["H661"]],[5,9,["H4712"]],[9,11,["H7585"]],[11,14,["H4672"]],[14,17,["H4672"]],[17,18,["H6869"]],[18,20,["H3015"]]]},{"k":15852,"v":[[0,2,["H7121"]],[2,6,["H8034"]],[6,9,["H3068"]],[9,11,["H3068"]],[11,13,["H577"]],[13,15,["H4422"]],[15,17,["H5315"]]]},{"k":15853,"v":[[0,1,["H2587"]],[1,4,["H3068"]],[4,6,["H6662"]],[6,9,["H430"]],[9,11,["H7355"]]]},{"k":15854,"v":[[0,2,["H3068"]],[2,3,["H8104"]],[3,5,["H6612"]],[5,9,["H1809"]],[9,12,["H3467"]],[12,13,[]]]},{"k":15855,"v":[[0,1,["H7725"]],[1,4,["H4494"]],[4,7,["H5315"]],[7,8,["H3588"]],[8,10,["H3068"]],[10,13,["H1580"]],[13,14,["H5921"]],[14,15,[]]]},{"k":15856,"v":[[0,1,["H3588"]],[1,4,["H2502"]],[4,6,["H5315"]],[6,8,["H4480","H4194","(H853)"]],[8,10,["H5869"]],[10,11,["H4480"]],[11,12,["H1832"]],[12,13,["(H853)"]],[13,15,["H7272"]],[15,17,["H4480","H1762"]]]},{"k":15857,"v":[[0,3,["H1980"]],[3,4,["H6440"]],[4,6,["H3068"]],[6,9,["H776"]],[9,12,["H2416"]]]},{"k":15858,"v":[[0,2,["H539"]],[2,3,["H3588"]],[3,5,["H589"]],[5,6,["H1696"]],[6,9,["H3966"]],[9,10,["H6031"]]]},{"k":15859,"v":[[0,1,["H589"]],[1,2,["H559"]],[2,5,["H2648"]],[5,6,["H3605"]],[6,7,["H120"]],[7,9,["H3576"]]]},{"k":15860,"v":[[0,1,["H4100"]],[1,4,["H7725"]],[4,7,["H3068"]],[7,9,["H3605"]],[9,11,["H8408"]],[11,12,["H5921"]],[12,13,[]]]},{"k":15861,"v":[[0,3,["H5375"]],[3,5,["H3563"]],[5,7,["H3444"]],[7,9,["H7121"]],[9,12,["H8034"]],[12,15,["H3068"]]]},{"k":15862,"v":[[0,3,["H7999"]],[3,5,["H5088"]],[5,8,["H3068"]],[8,9,["H4994"]],[9,12,["H5048"]],[12,14,["H3605"]],[14,16,["H5971"]]]},{"k":15863,"v":[[0,1,["H3368"]],[1,4,["H5869"]],[4,7,["H3068"]],[7,10,["H4194"]],[10,13,["H2623"]]]},{"k":15864,"v":[[0,2,["H3068"]],[2,3,["H577"]],[3,4,["H589"]],[4,7,["H5650"]],[7,8,["H589"]],[8,11,["H5650"]],[11,14,["H1121"]],[14,17,["H519"]],[17,20,["H6605"]],[20,22,["H4147"]]]},{"k":15865,"v":[[0,3,["H2076"]],[3,7,["H2077"]],[7,9,["H8426"]],[9,12,["H7121"]],[12,15,["H8034"]],[15,18,["H3068"]]]},{"k":15866,"v":[[0,3,["H7999"]],[3,5,["H5088"]],[5,8,["H3068"]],[8,9,["H4994"]],[9,12,["H5048"]],[12,14,["H3605"]],[14,16,["H5971"]]]},{"k":15867,"v":[[0,3,["H2691"]],[3,6,["H3068"]],[6,7,["H1004"]],[7,10,["H8432"]],[10,14,["H3389"]],[14,15,["H1984"]],[15,18,["H3050"]]]},{"k":15868,"v":[[0,2,["H1984","(H853)"]],[2,4,["H3068"]],[4,5,["H3605"]],[5,7,["H1471"]],[7,8,["H7623"]],[8,10,["H3605"]],[10,12,["H523"]]]},{"k":15869,"v":[[0,1,["H3588"]],[1,4,["H2617"]],[4,6,["H1396"]],[6,7,["H5921"]],[7,11,["H571"]],[11,14,["H3068"]],[14,17,["H5769"]],[17,18,["H1984"]],[18,21,["H3050"]]]},{"k":15870,"v":[[0,3,["H3034"]],[3,6,["H3068"]],[6,7,["H3588"]],[7,10,["H2896"]],[10,11,["H3588"]],[11,13,["H2617"]],[13,16,["H5769"]]]},{"k":15871,"v":[[0,2,["H3478"]],[2,3,["H4994"]],[3,4,["H559"]],[4,5,["H3588"]],[5,7,["H2617"]],[7,10,["H5769"]]]},{"k":15872,"v":[[0,3,["H1004"]],[3,5,["H175"]],[5,6,["H4994"]],[6,7,["H559"]],[7,8,["H3588"]],[8,10,["H2617"]],[10,13,["H5769"]]]},{"k":15873,"v":[[0,3,["H4994"]],[3,5,["H3373"]],[5,7,["H3068"]],[7,8,["H559"]],[8,9,["H3588"]],[9,11,["H2617"]],[11,14,["H5769"]]]},{"k":15874,"v":[[0,3,["H7121"]],[3,5,["H3050"]],[5,6,["H4480"]],[6,7,["H4712"]],[7,9,["H3050"]],[9,10,["H6030"]],[10,18,["H4800"]]]},{"k":15875,"v":[[0,2,["H3068"]],[2,9,["H3808"]],[9,10,["H3372"]],[10,11,["H4100"]],[11,13,["H120"]],[13,14,["H6213"]],[14,16,[]]]},{"k":15876,"v":[[0,2,["H3068"]],[2,9,["H5826"]],[9,13,["H589"]],[13,14,["H7200"]],[14,20,["H8130"]],[20,21,[]]]},{"k":15877,"v":[[0,3,["H2896"]],[3,5,["H2620"]],[5,8,["H3068"]],[8,12,["H4480","H982"]],[12,14,["H120"]]]},{"k":15878,"v":[[0,3,["H2896"]],[3,5,["H2620"]],[5,8,["H3068"]],[8,12,["H4480","H982"]],[12,14,["H5081"]]]},{"k":15879,"v":[[0,1,["H3605"]],[1,2,["H1471"]],[2,5,["H5437"]],[5,9,["H8034"]],[9,12,["H3068"]],[12,15,["H4135"]],[15,16,[]]]},{"k":15880,"v":[[0,4,["H5437"]],[4,5,["H1571"]],[5,9,["H5437"]],[9,13,["H8034"]],[13,16,["H3068"]],[16,19,["H4135"]],[19,20,[]]]},{"k":15881,"v":[[0,4,["H5437"]],[4,6,["H1682"]],[6,9,["H1846"]],[9,12,["H784"]],[12,14,["H6975"]],[14,18,["H8034"]],[18,21,["H3068"]],[21,24,["H4135"]],[24,25,[]]]},{"k":15882,"v":[[0,4,["H1760","H1760"]],[4,10,["H5307"]],[10,13,["H3068"]],[13,14,["H5826"]],[14,15,[]]]},{"k":15883,"v":[[0,2,["H3050"]],[2,5,["H5797"]],[5,7,["H2176"]],[7,10,["H1961"]],[10,12,["H3444"]]]},{"k":15884,"v":[[0,2,["H6963"]],[2,4,["H7440"]],[4,6,["H3444"]],[6,10,["H168"]],[10,13,["H6662"]],[13,16,["H3225"]],[16,19,["H3068"]],[19,20,["H6213"]],[20,21,["H2428"]]]},{"k":15885,"v":[[0,3,["H3225"]],[3,6,["H3068"]],[6,8,["H7311"]],[8,11,["H3225"]],[11,14,["H3068"]],[14,15,["H6213"]],[15,16,["H2428"]]]},{"k":15886,"v":[[0,3,["H3808"]],[3,4,["H4191"]],[4,5,["H3588"]],[5,6,["H2421"]],[6,8,["H5608"]],[8,10,["H4639"]],[10,13,["H3050"]]]},{"k":15887,"v":[[0,2,["H3050"]],[2,6,["H3256","H3256"]],[6,10,["H3808"]],[10,13,["H5414"]],[13,15,["H4194"]]]},{"k":15888,"v":[[0,1,["H6605"]],[1,5,["H8179"]],[5,7,["H6664"]],[7,10,["H935"]],[10,16,["H3034"]],[16,18,["H3050"]]]},{"k":15889,"v":[[0,1,["H2088"]],[1,2,["H8179"]],[2,5,["H3068"]],[5,9,["H6662"]],[9,11,["H935"]]]},{"k":15890,"v":[[0,3,["H3034"]],[3,5,["H3588"]],[5,8,["H6030"]],[8,12,["H1961"]],[12,14,["H3444"]]]},{"k":15891,"v":[[0,2,["H68"]],[2,5,["H1129"]],[5,6,["H3988"]],[6,8,["H1961"]],[8,10,["H7218"]],[10,14,["H6438"]]]},{"k":15892,"v":[[0,1,["H2063"]],[1,2,["H1961"]],[2,4,["H3068"]],[4,5,["H4480","H854"]],[5,6,["H1931"]],[6,8,["H6381"]],[8,11,["H5869"]]]},{"k":15893,"v":[[0,1,["H2088"]],[1,4,["H3117"]],[4,7,["H3068"]],[7,9,["H6213"]],[9,12,["H1523"]],[12,15,["H8055"]],[15,17,[]]]},{"k":15894,"v":[[0,1,["H3467"]],[1,2,["H4994"]],[2,4,["H577"]],[4,7,["H3068"]],[7,9,["H3068"]],[9,11,["H577"]],[11,14,["H4994"]],[14,15,["H6743"]]]},{"k":15895,"v":[[0,1,["H1288"]],[1,5,["H935"]],[5,8,["H8034"]],[8,11,["H3068"]],[11,14,["H1288"]],[14,19,["H4480","H1004"]],[19,22,["H3068"]]]},{"k":15896,"v":[[0,1,["H410"]],[1,4,["H3068"]],[4,9,["H215"]],[9,10,["H631"]],[10,12,["H2282"]],[12,14,["H5688"]],[14,16,["H5704"]],[16,18,["H7161"]],[18,21,["H4196"]]]},{"k":15897,"v":[[0,1,["H859"]],[1,4,["H410"]],[4,8,["H3034"]],[8,13,["H430"]],[13,16,["H7311"]],[16,17,[]]]},{"k":15898,"v":[[0,3,["H3034"]],[3,6,["H3068"]],[6,7,["H3588"]],[7,10,["H2896"]],[10,11,["H3588"]],[11,13,["H2617"]],[13,16,["H5769"]]]},{"k":15899,"v":[[0,1,["H835"]],[1,4,["H8549"]],[4,7,["H1870"]],[7,9,["H1980"]],[9,12,["H8451"]],[12,15,["H3068"]]]},{"k":15900,"v":[[0,1,["H835"]],[1,5,["H5341"]],[5,7,["H5713"]],[7,10,["H1875"]],[10,14,["H3605"]],[14,15,["H3820"]]]},{"k":15901,"v":[[0,2,["H637"]],[2,3,["H6466"]],[3,4,["H3808"]],[4,5,["H5766"]],[5,7,["H1980"]],[7,10,["H1870"]]]},{"k":15902,"v":[[0,1,["H859"]],[1,3,["H6680"]],[3,6,["H8104"]],[6,8,["H6490"]],[8,9,["H3966"]]]},{"k":15903,"v":[[0,2,["H305"]],[2,4,["H1870"]],[4,6,["H3559"]],[6,8,["H8104"]],[8,10,["H2706"]]]},{"k":15904,"v":[[0,1,["H227"]],[1,4,["H3808"]],[4,6,["H954"]],[6,10,["H5027"]],[10,11,["H413"]],[11,12,["H3605"]],[12,14,["H4687"]]]},{"k":15905,"v":[[0,3,["H3034"]],[3,6,["H3476"]],[6,8,["H3824"]],[8,13,["H3925"]],[13,15,["H6664"]],[15,16,["H4941"]]]},{"k":15906,"v":[[0,3,["H8104","(H853)"]],[3,5,["H2706"]],[5,7,["H5800"]],[7,9,["H408"]],[9,10,["H5704","H3966"]]]},{"k":15907,"v":[[0,1,["H4100"]],[1,5,["H5288"]],[5,6,["H2135","(H853)"]],[6,8,["H734"]],[8,11,["H8104"]],[11,16,["H1697"]]]},{"k":15908,"v":[[0,3,["H3605"]],[3,4,["H3820"]],[4,7,["H1875"]],[7,12,["H408"]],[12,13,["H7686"]],[13,16,["H4480","H4687"]]]},{"k":15909,"v":[[0,2,["H565"]],[2,5,["H6845"]],[5,8,["H3820"]],[8,9,["H4616"]],[9,12,["H3808"]],[12,13,["H2398"]],[13,15,[]]]},{"k":15910,"v":[[0,1,["H1288"]],[1,3,["H859"]],[3,5,["H3068"]],[5,6,["H3925"]],[6,9,["H2706"]]]},{"k":15911,"v":[[0,3,["H8193"]],[3,6,["H5608"]],[6,7,["H3605"]],[7,9,["H4941"]],[9,12,["H6310"]]]},{"k":15912,"v":[[0,3,["H7797"]],[3,6,["H1870"]],[6,9,["H5715"]],[9,10,["H5921"]],[10,14,["H3605"]],[14,15,["H1952"]]]},{"k":15913,"v":[[0,3,["H7878"]],[3,6,["H6490"]],[6,9,["H5027"]],[9,12,["H734"]]]},{"k":15914,"v":[[0,4,["H8173"]],[4,7,["H2708"]],[7,10,["H3808"]],[10,11,["H7911"]],[11,13,["H1697"]]]},{"k":15915,"v":[[0,2,["H1580"]],[2,3,["H5921"]],[3,5,["H5650"]],[5,9,["H2421"]],[9,11,["H8104"]],[11,13,["H1697"]]]},{"k":15916,"v":[[0,1,["H1540"]],[1,4,["H5869"]],[4,8,["H5027"]],[8,10,["H6381"]],[10,14,["H4480","H8451"]]]},{"k":15917,"v":[[0,1,["H595"]],[1,4,["H1616"]],[4,7,["H776"]],[7,8,["H5641"]],[8,9,["H408"]],[9,11,["H4687"]],[11,12,["H4480"]],[12,13,[]]]},{"k":15918,"v":[[0,2,["H5315"]],[2,3,["H1638"]],[3,6,["H8375"]],[6,10,["H413"]],[10,12,["H4941"]],[12,14,["H3605"]],[14,15,["H6256"]]]},{"k":15919,"v":[[0,3,["H1605"]],[3,5,["H2086"]],[5,8,["H779"]],[8,11,["H7686"]],[11,14,["H4480","H4687"]]]},{"k":15920,"v":[[0,1,["H1556"]],[1,2,["H4480","H5921"]],[2,4,["H2781"]],[4,6,["H937"]],[6,7,["H3588"]],[7,10,["H5341"]],[10,12,["H5713"]]]},{"k":15921,"v":[[0,1,["H8269"]],[1,2,["H1571"]],[2,4,["H3427"]],[4,6,["H1696"]],[6,11,["H5650"]],[11,13,["H7878"]],[13,16,["H2706"]]]},{"k":15922,"v":[[0,2,["H5713"]],[2,3,["H1571"]],[3,6,["H8191"]],[6,9,["H376","H6098"]]]},{"k":15923,"v":[[0,2,["H5315"]],[2,3,["H1692"]],[3,6,["H6083"]],[6,7,["H2421"]],[7,13,["H1697"]]]},{"k":15924,"v":[[0,3,["H5608"]],[3,5,["H1870"]],[5,8,["H6030"]],[8,10,["H3925"]],[10,13,["H2706"]]]},{"k":15925,"v":[[0,4,["H995"]],[4,6,["H1870"]],[6,9,["H6490"]],[9,13,["H7878"]],[13,17,["H6381"]]]},{"k":15926,"v":[[0,2,["H5315"]],[2,3,["H1811"]],[3,5,["H4480","H8424"]],[5,6,["H6965"]],[6,12,["H1697"]]]},{"k":15927,"v":[[0,1,["H5493"]],[1,2,["H4480"]],[2,5,["H1870"]],[5,7,["H8267"]],[7,12,["H8451"]],[12,13,["H2603"]]]},{"k":15928,"v":[[0,3,["H977"]],[3,5,["H1870"]],[5,7,["H530"]],[7,9,["H4941"]],[9,12,["H7737"]],[12,14,[]]]},{"k":15929,"v":[[0,3,["H1692"]],[3,6,["H5715"]],[6,8,["H3068"]],[8,11,["H408"]],[11,13,["H954"]]]},{"k":15930,"v":[[0,3,["H7323"]],[3,5,["H1870"]],[5,8,["H4687"]],[8,9,["H3588"]],[9,12,["H7337"]],[12,14,["H3820"]]]},{"k":15931,"v":[[0,1,["H3384"]],[1,4,["H3068"]],[4,6,["H1870"]],[6,9,["H2706"]],[9,13,["H5341"]],[13,17,["H6118"]]]},{"k":15932,"v":[[0,3,["H995"]],[3,7,["H5341"]],[7,9,["H8451"]],[9,13,["H8104"]],[13,17,["H3605"]],[17,18,["H3820"]]]},{"k":15933,"v":[[0,4,["H1869"]],[4,7,["H5410"]],[7,10,["H4687"]],[10,11,["H3588"]],[11,15,["H2654"]]]},{"k":15934,"v":[[0,1,["H5186"]],[1,3,["H3820"]],[3,4,["H413"]],[4,6,["H5715"]],[6,8,["H408"]],[8,9,["H413"]],[9,10,["H1215"]]]},{"k":15935,"v":[[0,2,["H5674"]],[2,4,["H5869"]],[4,6,["H4480","H7200"]],[6,7,["H7723"]],[7,9,["H2421"]],[9,14,["H1870"]]]},{"k":15936,"v":[[0,1,["H6965"]],[1,3,["H565"]],[3,6,["H5650"]],[6,7,["H834"]],[7,12,["H3374"]]]},{"k":15937,"v":[[0,2,["H5674"]],[2,4,["H2781"]],[4,5,["H834"]],[5,7,["H3025"]],[7,8,["H3588"]],[8,10,["H4941"]],[10,12,["H2896"]]]},{"k":15938,"v":[[0,1,["H2009"]],[1,4,["H8373"]],[4,7,["H6490"]],[7,8,["H2421"]],[8,12,["H6666"]]]},{"k":15939,"v":[[0,3,["H2617"]],[3,4,["H935"]],[4,9,["H3068"]],[9,12,["H8668"]],[12,16,["H565"]]]},{"k":15940,"v":[[0,5,["H1697"]],[5,7,["H6030"]],[7,10,["H2778"]],[10,12,["H3588"]],[12,14,["H982"]],[14,17,["H1697"]]]},{"k":15941,"v":[[0,2,["H5337"]],[2,3,["H408"]],[3,5,["H1697"]],[5,7,["H571"]],[7,8,["H5704","H3966"]],[8,12,["H4480","H6310"]],[12,13,["H3588"]],[13,16,["H3176"]],[16,19,["H4941"]]]},{"k":15942,"v":[[0,4,["H8104"]],[4,6,["H8451"]],[6,7,["H8548"]],[7,9,["H5769"]],[9,11,["H5703"]]]},{"k":15943,"v":[[0,4,["H1980"]],[4,6,["H7342"]],[6,7,["H3588"]],[7,9,["H1875"]],[9,11,["H6490"]]]},{"k":15944,"v":[[0,3,["H1696"]],[3,6,["H5713"]],[6,8,["H5048"]],[8,9,["H4428"]],[9,12,["H3808"]],[12,14,["H954"]]]},{"k":15945,"v":[[0,5,["H8173"]],[5,8,["H4687"]],[8,9,["H834"]],[9,12,["H157"]]]},{"k":15946,"v":[[0,2,["H3709"]],[2,7,["H5375"]],[7,8,["H413"]],[8,10,["H4687"]],[10,11,["H834"]],[11,14,["H157"]],[14,18,["H7878"]],[18,21,["H2706"]]]},{"k":15947,"v":[[0,1,["H2142"]],[1,3,["H1697"]],[3,6,["H5650"]],[6,7,["H5921"]],[7,8,["H834"]],[8,14,["H3176"]]]},{"k":15948,"v":[[0,1,["H2063"]],[1,4,["H5165"]],[4,7,["H6040"]],[7,8,["H3588"]],[8,10,["H565"]],[10,12,["H2421"]],[12,13,[]]]},{"k":15949,"v":[[0,2,["H2086"]],[2,6,["H5704","H3966"]],[6,8,["H3887"]],[8,12,["H3808"]],[12,13,["H5186"]],[13,16,["H4480","H8451"]]]},{"k":15950,"v":[[0,2,["H2142"]],[2,4,["H4941"]],[4,6,["H4480","H5769"]],[6,8,["H3068"]],[8,12,["H5162"]]]},{"k":15951,"v":[[0,1,["H2152"]],[1,5,["H270"]],[5,10,["H4480","H7563"]],[10,12,["H5800"]],[12,14,["H8451"]]]},{"k":15952,"v":[[0,2,["H2706"]],[2,4,["H1961"]],[4,6,["H2158"]],[6,9,["H1004"]],[9,12,["H4033"]]]},{"k":15953,"v":[[0,3,["H2142"]],[3,5,["H8034"]],[5,7,["H3068"]],[7,10,["H3915"]],[10,13,["H8104"]],[13,15,["H8451"]]]},{"k":15954,"v":[[0,1,["H2063"]],[1,3,["H1961"]],[3,4,["H3588"]],[4,6,["H5341"]],[6,8,["H6490"]]]},{"k":15955,"v":[[0,4,["H2506"]],[4,6,["H3068"]],[6,9,["H559"]],[9,13,["H8104"]],[13,15,["H1697"]]]},{"k":15956,"v":[[0,2,["H2470"]],[2,4,["H6440"]],[4,7,["H3605"]],[7,8,["H3820"]],[8,10,["H2603"]],[10,16,["H565"]]]},{"k":15957,"v":[[0,2,["H2803"]],[2,5,["H1870"]],[5,7,["H7725"]],[7,9,["H7272"]],[9,10,["H413"]],[10,12,["H5713"]]]},{"k":15958,"v":[[0,3,["H2363"]],[3,5,["H4102"]],[5,6,["H3808"]],[6,8,["H8104"]],[8,10,["H4687"]]]},{"k":15959,"v":[[0,2,["H2256"]],[2,5,["H7563"]],[5,7,["H5749"]],[7,12,["H3808"]],[12,13,["H7911"]],[13,15,["H8451"]]]},{"k":15960,"v":[[0,2,["H2676","H3915"]],[2,5,["H6965"]],[5,8,["H3034"]],[8,12,["H5921"]],[12,14,["H6664"]],[14,15,["H4941"]]]},{"k":15961,"v":[[0,1,["H589"]],[1,4,["H2270"]],[4,6,["H3605"]],[6,8,["H834"]],[8,9,["H3372"]],[9,15,["H8104"]],[15,17,["H6490"]]]},{"k":15962,"v":[[0,2,["H776"]],[2,4,["H3068"]],[4,6,["H4390"]],[6,9,["H2617"]],[9,10,["H3925"]],[10,13,["H2706"]]]},{"k":15963,"v":[[0,3,["H6213"]],[3,4,["H2896"]],[4,5,["H5973"]],[5,7,["H5650"]],[7,9,["H3068"]],[9,13,["H1697"]]]},{"k":15964,"v":[[0,1,["H3925"]],[1,3,["H2898"]],[3,4,["H2940"]],[4,6,["H1847"]],[6,7,["H3588"]],[7,10,["H539"]],[10,12,["H4687"]]]},{"k":15965,"v":[[0,1,["H2962"]],[1,2,["H589"]],[2,4,["H6031"]],[4,7,["H7683"]],[7,9,["H6258"]],[9,12,["H8104"]],[12,14,["H565"]]]},{"k":15966,"v":[[0,1,["H859"]],[1,3,["H2896"]],[3,6,["H2895"]],[6,7,["H3925"]],[7,10,["H2706"]]]},{"k":15967,"v":[[0,2,["H2086"]],[2,4,["H2950"]],[4,6,["H8267"]],[6,7,["H5921"]],[7,10,["H589"]],[10,12,["H5341"]],[12,14,["H6490"]],[14,17,["H3605"]],[17,18,["H3820"]]]},{"k":15968,"v":[[0,2,["H3820"]],[2,5,["H2954"]],[5,7,["H2459"]],[7,9,["H589"]],[9,10,["H8173"]],[10,13,["H8451"]]]},{"k":15969,"v":[[0,3,["H2896"]],[3,6,["H3588"]],[6,10,["H6031"]],[10,11,["H4616"]],[11,14,["H3925"]],[14,16,["H2706"]]]},{"k":15970,"v":[[0,2,["H8451"]],[2,5,["H6310"]],[5,7,["H2896"]],[7,11,["H4480","H505"]],[11,13,["H2091"]],[13,15,["H3701"]]]},{"k":15971,"v":[[0,2,["H3027"]],[2,4,["H6213"]],[4,7,["H3559"]],[7,11,["H995"]],[11,15,["H3925"]],[15,17,["H4687"]]]},{"k":15972,"v":[[0,3,["H3373"]],[3,7,["H8055"]],[7,10,["H7200"]],[10,12,["H3588"]],[12,15,["H3176"]],[15,18,["H1697"]]]},{"k":15973,"v":[[0,2,["H3045"]],[2,4,["H3068"]],[4,5,["H3588"]],[5,7,["H4941"]],[7,9,["H6664"]],[9,14,["H530"]],[14,16,["H6031"]],[16,17,[]]]},{"k":15974,"v":[[0,4,["H4994"]],[4,7,["H2617"]],[7,8,["H1961"]],[8,11,["H5162"]],[11,15,["H565"]],[15,18,["H5650"]]]},{"k":15975,"v":[[0,4,["H7356"]],[4,5,["H935"]],[5,11,["H2421"]],[11,12,["H3588"]],[12,14,["H8451"]],[14,17,["H8191"]]]},{"k":15976,"v":[[0,3,["H2086"]],[3,5,["H954"]],[5,6,["H3588"]],[6,9,["H5791"]],[9,14,["H8267"]],[14,16,["H589"]],[16,18,["H7878"]],[18,21,["H6490"]]]},{"k":15977,"v":[[0,4,["H3373"]],[4,6,["H7725"]],[6,13,["H3045"]],[13,15,["H5713"]]]},{"k":15978,"v":[[0,3,["H3820"]],[3,4,["H1961"]],[4,5,["H8549"]],[5,8,["H2706"]],[8,9,["H4616"]],[9,12,["H3808"]],[12,13,["H954"]]]},{"k":15979,"v":[[0,2,["H5315"]],[2,3,["H3615"]],[3,6,["H8668"]],[6,9,["H3176"]],[9,12,["H1697"]]]},{"k":15980,"v":[[0,2,["H5869"]],[2,3,["H3615"]],[3,6,["H565"]],[6,7,["H559"]],[7,8,["H4970"]],[8,11,["H5162"]],[11,12,[]]]},{"k":15981,"v":[[0,1,["H3588"]],[1,4,["H1961"]],[4,7,["H4997"]],[7,10,["H7008"]],[10,14,["H3808"]],[14,15,["H7911"]],[15,17,["H2706"]]]},{"k":15982,"v":[[0,2,["H4100"]],[2,5,["H3117"]],[5,8,["H5650"]],[8,9,["H4970"]],[9,12,["H6213"]],[12,13,["H4941"]],[13,17,["H7291"]],[17,18,[]]]},{"k":15983,"v":[[0,2,["H2086"]],[2,4,["H3738"]],[4,5,["H7882"]],[5,8,["H834"]],[8,10,["H3808"]],[10,13,["H8451"]]]},{"k":15984,"v":[[0,1,["H3605"]],[1,3,["H4687"]],[3,5,["H530"]],[5,7,["H7291"]],[7,9,["H8267"]],[9,10,["H5826"]],[10,12,[]]]},{"k":15985,"v":[[0,3,["H4592"]],[3,4,["H3615"]],[4,7,["H776"]],[7,9,["H589"]],[9,10,["H5800"]],[10,11,["H3808"]],[11,13,["H6490"]]]},{"k":15986,"v":[[0,1,["H2421"]],[1,5,["H2617"]],[5,9,["H8104"]],[9,11,["H5715"]],[11,14,["H6310"]]]},{"k":15987,"v":[[0,2,["H5769"]],[2,4,["H3068"]],[4,6,["H1697"]],[6,8,["H5324"]],[8,10,["H8064"]]]},{"k":15988,"v":[[0,2,["H530"]],[2,6,["H1755","H1755"]],[6,9,["H3559"]],[9,11,["H776"]],[11,14,["H5975"]]]},{"k":15989,"v":[[0,2,["H5975"]],[2,4,["H3117"]],[4,8,["H4941"]],[8,9,["H3588"]],[9,10,["H3605"]],[10,13,["H5650"]]]},{"k":15990,"v":[[0,1,["H3884"]],[1,3,["H8451"]],[3,7,["H8191"]],[7,10,["H227"]],[10,12,["H6"]],[12,15,["H6040"]]]},{"k":15991,"v":[[0,3,["H5769","H3808"]],[3,4,["H7911"]],[4,6,["H6490"]],[6,7,["H3588"]],[7,12,["H2421"]],[12,13,[]]]},{"k":15992,"v":[[0,1,["H589"]],[1,4,["H3467"]],[4,6,["H3588"]],[6,9,["H1875"]],[9,11,["H6490"]]]},{"k":15993,"v":[[0,2,["H7563"]],[2,4,["H6960"]],[4,8,["H6"]],[8,13,["H995"]],[13,15,["H5713"]]]},{"k":15994,"v":[[0,3,["H7200"]],[3,5,["H7093"]],[5,7,["H3605"]],[7,8,["H8502"]],[8,11,["H4687"]],[11,13,["H3966"]],[13,14,["H7342"]]]},{"k":15995,"v":[[0,2,["H4100"]],[2,3,["H157"]],[3,6,["H8451"]],[6,7,["H1931"]],[7,10,["H7881"]],[10,11,["H3605"]],[11,13,["H3117"]]]},{"k":15996,"v":[[0,4,["H4687"]],[4,8,["H2449"]],[8,11,["H4480","H341"]],[11,12,["H3588"]],[12,13,["H1931"]],[13,15,["H5769"]],[15,17,[]]]},{"k":15997,"v":[[0,4,["H7919"]],[4,6,["H4480","H3605"]],[6,8,["H3925"]],[8,9,["H3588"]],[9,11,["H5715"]],[11,14,["H7881"]]]},{"k":15998,"v":[[0,2,["H995"]],[2,6,["H4480","H2205"]],[6,7,["H3588"]],[7,9,["H5341"]],[9,11,["H6490"]]]},{"k":15999,"v":[[0,3,["H3607"]],[3,5,["H7272"]],[5,7,["H4480","H3605"]],[7,8,["H7451"]],[8,9,["H734"]],[9,10,["H4616"]],[10,13,["H8104"]],[13,15,["H1697"]]]},{"k":16000,"v":[[0,3,["H3808"]],[3,4,["H5493"]],[4,7,["H4480","H4941"]],[7,8,["H3588"]],[8,9,["H859"]],[9,11,["H3384"]],[11,12,[]]]},{"k":16001,"v":[[0,1,["H4100"]],[1,3,["H4452"]],[3,5,["H565"]],[5,8,["H2441"]],[8,12,["H4480","H1706"]],[12,15,["H6310"]]]},{"k":16002,"v":[[0,3,["H4480","H6490"]],[3,6,["H995"]],[6,7,["H5921","H3651"]],[7,9,["H8130"]],[9,10,["H3605"]],[10,11,["H8267"]],[11,12,["H734"]]]},{"k":16003,"v":[[0,2,["H1697"]],[2,5,["H5216"]],[5,8,["H7272"]],[8,11,["H216"]],[11,14,["H5410"]]]},{"k":16004,"v":[[0,3,["H7650"]],[3,7,["H6965"]],[7,12,["H8104"]],[12,14,["H6664"]],[14,15,["H4941"]]]},{"k":16005,"v":[[0,3,["H6031"]],[3,5,["H5704","H3966"]],[5,6,["H2421"]],[6,9,["H3068"]],[9,13,["H1697"]]]},{"k":16006,"v":[[0,1,["H7521"]],[1,4,["H4994"]],[4,7,["H5071"]],[7,10,["H6310"]],[10,12,["H3068"]],[12,14,["H3925"]],[14,17,["H4941"]]]},{"k":16007,"v":[[0,2,["H5315"]],[2,4,["H8548"]],[4,7,["H3709"]],[7,11,["H3808"]],[11,12,["H7911"]],[12,14,["H8451"]]]},{"k":16008,"v":[[0,2,["H7563"]],[2,4,["H5414"]],[4,6,["H6341"]],[6,11,["H8582"]],[11,12,["H3808"]],[12,15,["H4480","H6490"]]]},{"k":16009,"v":[[0,2,["H5715"]],[2,8,["H5157"]],[8,10,["H5769"]],[10,11,["H3588"]],[11,12,["H1992"]],[12,15,["H8342"]],[15,18,["H3820"]]]},{"k":16010,"v":[[0,3,["H5186"]],[3,5,["H3820"]],[5,7,["H6213"]],[7,9,["H2706"]],[9,10,["H5769"]],[10,14,["H6118"]]]},{"k":16011,"v":[[0,2,["H8130"]],[2,4,["H5588"]],[4,7,["H8451"]],[7,10,["H157"]]]},{"k":16012,"v":[[0,1,["H859"]],[1,5,["H5643"]],[5,8,["H4043"]],[8,10,["H3176"]],[10,13,["H1697"]]]},{"k":16013,"v":[[0,1,["H5493"]],[1,2,["H4480"]],[2,5,["H7489"]],[5,9,["H5341"]],[9,11,["H4687"]],[11,14,["H430"]]]},{"k":16014,"v":[[0,1,["H5564"]],[1,6,["H565"]],[6,10,["H2421"]],[10,14,["H408"]],[14,16,["H954"]],[16,19,["H4480","H7664"]]]},{"k":16015,"v":[[0,4,["H5582"]],[4,9,["H3467"]],[9,14,["H8159"]],[14,17,["H2706"]],[17,18,["H8548"]]]},{"k":16016,"v":[[0,4,["H5541"]],[4,5,["H3605"]],[5,8,["H7686"]],[8,11,["H4480","H2706"]],[11,12,["H3588"]],[12,14,["H8649"]],[14,16,["H8267"]]]},{"k":16017,"v":[[0,3,["H7673"]],[3,4,["H3605"]],[4,6,["H7563"]],[6,9,["H776"]],[9,11,["H5509"]],[11,12,["H3651"]],[12,14,["H157"]],[14,16,["H5713"]]]},{"k":16018,"v":[[0,2,["H1320"]],[2,3,["H5568"]],[3,5,["H4480","H6343"]],[5,11,["H3372"]],[11,14,["H4480","H4941"]]]},{"k":16019,"v":[[0,3,["H6213"]],[3,4,["H4941"]],[4,6,["H6664"]],[6,7,["H5117"]],[7,9,["H1077"]],[9,12,["H6231"]]]},{"k":16020,"v":[[0,2,["H6148"]],[2,5,["H5650"]],[5,7,["H2896"]],[7,9,["H408"]],[9,11,["H2086"]],[11,12,["H6231"]],[12,13,[]]]},{"k":16021,"v":[[0,2,["H5869"]],[2,3,["H3615"]],[3,6,["H3444"]],[6,10,["H565"]],[10,13,["H6664"]]]},{"k":16022,"v":[[0,1,["H6213"]],[1,2,["H5973"]],[2,4,["H5650"]],[4,8,["H2617"]],[8,10,["H3925"]],[10,13,["H2706"]]]},{"k":16023,"v":[[0,1,["H589"]],[1,4,["H5650"]],[4,7,["H995"]],[7,11,["H3045"]],[11,13,["H5713"]]]},{"k":16024,"v":[[0,3,["H6256"]],[3,6,["H3068"]],[6,8,["H6213"]],[8,13,["H6565"]],[13,15,["H8451"]]]},{"k":16025,"v":[[0,1,["H5921","H3651"]],[1,3,["H157"]],[3,5,["H4687"]],[5,7,["H4480","H2091"]],[7,11,["H4480","H6337"]]]},{"k":16026,"v":[[0,1,["H5921","H3651"]],[1,4,["H3605"]],[4,6,["H6490"]],[6,8,["H3605"]],[8,12,["H3474"]],[12,15,["H8130"]],[15,16,["H3605"]],[16,17,["H8267"]],[17,18,["H734"]]]},{"k":16027,"v":[[0,2,["H5715"]],[2,4,["H6382"]],[4,5,["H5921","H3651"]],[5,8,["H5315"]],[8,9,["H5341"]],[9,10,[]]]},{"k":16028,"v":[[0,2,["H6608"]],[2,5,["H1697"]],[5,7,["H215"]],[7,10,["H995"]],[10,13,["H6612"]]]},{"k":16029,"v":[[0,2,["H6473"]],[2,4,["H6310"]],[4,6,["H7602"]],[6,7,["H3588"]],[7,9,["H2968"]],[9,12,["H4687"]]]},{"k":16030,"v":[[0,1,["H6437"]],[1,3,["H413"]],[3,7,["H2603"]],[7,14,["H4941"]],[14,18,["H157"]],[18,20,["H8034"]]]},{"k":16031,"v":[[0,1,["H3559"]],[1,3,["H6471"]],[3,6,["H565"]],[6,9,["H408"]],[9,10,["H3605"]],[10,11,["H205"]],[11,13,["H7980"]],[13,15,[]]]},{"k":16032,"v":[[0,1,["H6299"]],[1,5,["H4480","H6233"]],[5,7,["H120"]],[7,11,["H8104"]],[11,13,["H6490"]]]},{"k":16033,"v":[[0,3,["H6440"]],[3,5,["H215"]],[5,8,["H5650"]],[8,10,["H3925"]],[10,11,["(H853)"]],[11,13,["H2706"]]]},{"k":16034,"v":[[0,1,["H6388"]],[1,3,["H4325"]],[3,5,["H3381"]],[5,7,["H5869"]],[7,8,["H5921"]],[8,10,["H8104"]],[10,11,["H3808"]],[11,13,["H8451"]]]},{"k":16035,"v":[[0,1,["H6662"]],[1,3,["H859"]],[3,5,["H3068"]],[5,7,["H3477"]],[7,10,["H4941"]]]},{"k":16036,"v":[[0,2,["H5713"]],[2,6,["H6680"]],[6,8,["H6664"]],[8,10,["H3966"]],[10,11,["H530"]]]},{"k":16037,"v":[[0,2,["H7068"]],[2,4,["H6789"]],[4,6,["H3588"]],[6,8,["H6862"]],[8,10,["H7911"]],[10,12,["H1697"]]]},{"k":16038,"v":[[0,2,["H565"]],[2,4,["H3966"]],[4,5,["H6884"]],[5,8,["H5650"]],[8,9,["H157"]],[9,10,[]]]},{"k":16039,"v":[[0,1,["H595"]],[1,3,["H6810"]],[3,5,["H959"]],[5,8,["H3808"]],[8,10,["H7911"]],[10,12,["H6490"]]]},{"k":16040,"v":[[0,2,["H6666"]],[2,5,["H5769"]],[5,6,["H6664"]],[6,9,["H8451"]],[9,12,["H571"]]]},{"k":16041,"v":[[0,1,["H6862"]],[1,3,["H4689"]],[3,7,["H4672"]],[7,11,["H4687"]],[11,14,["H8191"]]]},{"k":16042,"v":[[0,2,["H6664"]],[2,5,["H5715"]],[5,7,["H5769"]],[7,10,["H995"]],[10,14,["H2421"]]]},{"k":16043,"v":[[0,2,["H7121"]],[2,5,["H3605"]],[5,6,["H3820"]],[6,7,["H6030"]],[7,10,["H3068"]],[10,13,["H5341"]],[13,15,["H2706"]]]},{"k":16044,"v":[[0,2,["H7121"]],[2,5,["H3467"]],[5,10,["H8104"]],[10,12,["H5713"]]]},{"k":16045,"v":[[0,2,["H6923"]],[2,4,["H5399"]],[4,9,["H7768"]],[9,11,["H3176"]],[11,14,["H1697"]]]},{"k":16046,"v":[[0,2,["H5869"]],[2,3,["H6923"]],[3,6,["H821"]],[6,10,["H7878"]],[10,13,["H565"]]]},{"k":16047,"v":[[0,1,["H8085"]],[1,3,["H6963"]],[3,7,["H2617"]],[7,9,["H3068"]],[9,10,["H2421"]],[10,15,["H4941"]]]},{"k":16048,"v":[[0,3,["H7126"]],[3,6,["H7291"]],[6,7,["H2154"]],[7,10,["H7368"]],[10,13,["H4480","H8451"]]]},{"k":16049,"v":[[0,1,["H859"]],[1,3,["H7138"]],[3,5,["H3068"]],[5,7,["H3605"]],[7,9,["H4687"]],[9,11,["H571"]]]},{"k":16050,"v":[[0,3,["H4480","H5713"]],[3,6,["H3045"]],[6,8,["H6924"]],[8,9,["H3588"]],[9,12,["H3245"]],[12,15,["H5769"]]]},{"k":16051,"v":[[0,1,["H7200"]],[1,3,["H6040"]],[3,5,["H2502"]],[5,7,["H3588"]],[7,10,["H3808"]],[10,11,["H7911"]],[11,13,["H8451"]]]},{"k":16052,"v":[[0,1,["H7378"]],[1,3,["H7379"]],[3,5,["H1350"]],[5,7,["H2421"]],[7,12,["H565"]]]},{"k":16053,"v":[[0,1,["H3444"]],[1,3,["H7350"]],[3,6,["H4480","H7563"]],[6,7,["H3588"]],[7,9,["H1875"]],[9,10,["H3808"]],[10,12,["H2706"]]]},{"k":16054,"v":[[0,1,["H7227"]],[1,5,["H7356"]],[5,7,["H3068"]],[7,8,["H2421"]],[8,13,["H4941"]]]},{"k":16055,"v":[[0,1,["H7227"]],[1,4,["H7291"]],[4,7,["H6862"]],[7,11,["H3808"]],[11,12,["H5186"]],[12,15,["H4480","H5715"]]]},{"k":16056,"v":[[0,2,["H7200"]],[2,4,["H898"]],[4,7,["H6962"]],[7,8,["H834"]],[8,10,["H8104"]],[10,11,["H3808"]],[11,13,["H565"]]]},{"k":16057,"v":[[0,1,["H7200"]],[1,2,["H3588"]],[2,4,["H157"]],[4,6,["H6490"]],[6,7,["H2421"]],[7,10,["H3068"]],[10,14,["H2617"]]]},{"k":16058,"v":[[0,2,["H1697"]],[2,4,["H571"]],[4,7,["H7218"]],[7,10,["H3605"]],[10,13,["H6664"]],[13,14,["H4941"]],[14,17,["H5769"]]]},{"k":16059,"v":[[0,1,["H8269"]],[1,3,["H7291"]],[3,7,["H2600"]],[7,10,["H3820"]],[10,13,["H6342"]],[13,16,["H4480","H1697"]]]},{"k":16060,"v":[[0,1,["H595"]],[1,2,["H7797"]],[2,3,["H5921"]],[3,5,["H565"]],[5,9,["H4672"]],[9,10,["H7227"]],[10,11,["H7998"]]]},{"k":16061,"v":[[0,2,["H8130"]],[2,4,["H8581"]],[4,5,["H8267"]],[5,8,["H8451"]],[8,11,["H157"]]]},{"k":16062,"v":[[0,1,["H7651"]],[1,4,["H3117"]],[4,7,["H1984"]],[7,10,["H5921"]],[10,12,["H6664"]],[12,13,["H4941"]]]},{"k":16063,"v":[[0,1,["H7227"]],[1,2,["H7965"]],[2,6,["H157"]],[6,8,["H8451"]],[8,10,["H369"]],[10,12,["H4383"]],[12,13,[]]]},{"k":16064,"v":[[0,1,["H3068"]],[1,4,["H7663"]],[4,7,["H3444"]],[7,9,["H6213"]],[9,11,["H4687"]]]},{"k":16065,"v":[[0,2,["H5315"]],[2,4,["H8104"]],[4,6,["H5713"]],[6,9,["H157"]],[9,11,["H3966"]]]},{"k":16066,"v":[[0,3,["H8104"]],[3,5,["H6490"]],[5,8,["H5713"]],[8,9,["H3588"]],[9,10,["H3605"]],[10,12,["H1870"]],[12,14,["H5048"]],[14,15,[]]]},{"k":16067,"v":[[0,3,["H7440"]],[3,5,["H7126"]],[5,6,["H6440"]],[6,9,["H3068"]],[9,12,["H995"]],[12,16,["H1697"]]]},{"k":16068,"v":[[0,3,["H8467"]],[3,4,["H935"]],[4,5,["H6440"]],[5,7,["H5337"]],[7,12,["H565"]]]},{"k":16069,"v":[[0,2,["H8193"]],[2,4,["H5042"]],[4,5,["H8416"]],[5,6,["H3588"]],[6,9,["H3925"]],[9,12,["H2706"]]]},{"k":16070,"v":[[0,2,["H3956"]],[2,4,["H6030"]],[4,7,["H565"]],[7,8,["H3588"]],[8,9,["H3605"]],[9,11,["H4687"]],[11,13,["H6664"]]]},{"k":16071,"v":[[0,1,["H1961"]],[1,3,["H3027"]],[3,4,["H5826"]],[4,6,["H3588"]],[6,9,["H977"]],[9,11,["H6490"]]]},{"k":16072,"v":[[0,3,["H8373"]],[3,6,["H3444"]],[6,8,["H3068"]],[8,11,["H8451"]],[11,14,["H8191"]]]},{"k":16073,"v":[[0,3,["H5315"]],[3,4,["H2421"]],[4,8,["H1984"]],[8,13,["H4941"]],[13,14,["H5826"]],[14,15,[]]]},{"k":16074,"v":[[0,4,["H8582"]],[4,7,["H6"]],[7,8,["H7716"]],[8,9,["H1245"]],[9,11,["H5650"]],[11,12,["H3588"]],[12,15,["H3808"]],[15,16,["H7911"]],[16,18,["H4687"]]]},{"k":16075,"v":[[0,3,["H6869"]],[3,5,["H7121"]],[5,6,["H413"]],[6,8,["H3068"]],[8,11,["H6030"]],[11,12,[]]]},{"k":16076,"v":[[0,1,["H5337"]],[1,3,["H5315"]],[3,5,["H3068"]],[5,7,["H8267"]],[7,8,["H4480","H8193"]],[8,12,["H7423"]],[12,13,["H4480","H3956"]]]},{"k":16077,"v":[[0,1,["H4100"]],[1,4,["H5414"]],[4,8,["H4100"]],[8,11,["H3254"]],[11,15,["H7423"]],[15,16,["H3956"]]]},{"k":16078,"v":[[0,1,["H8150"]],[1,2,["H2671"]],[2,5,["H1368"]],[5,6,["H5973"]],[6,7,["H1513"]],[7,9,["H7574"]]]},{"k":16079,"v":[[0,1,["H190"]],[1,4,["H3588"]],[4,6,["H1481"]],[6,8,["H4902"]],[8,11,["H7931"]],[11,12,["H5973"]],[12,14,["H168"]],[14,16,["H6938"]]]},{"k":16080,"v":[[0,2,["H5315"]],[2,4,["H7227"]],[4,5,["H7931"]],[5,6,["H5973"]],[6,9,["H8130"]],[9,10,["H7965"]]]},{"k":16081,"v":[[0,1,["H589"]],[1,4,["H7965"]],[4,6,["H3588"]],[6,8,["H1696"]],[8,9,["H1992"]],[9,12,["H4421"]]]},{"k":16082,"v":[[0,4,["H5375"]],[4,6,["H5869"]],[6,7,["H413"]],[7,9,["H2022"]],[9,11,["H4480","H370"]],[11,12,["H935"]],[12,14,["H5828"]]]},{"k":16083,"v":[[0,2,["H5828"]],[2,4,["H4480","H5973"]],[4,6,["H3068"]],[6,8,["H6213"]],[8,9,["H8064"]],[9,11,["H776"]]]},{"k":16084,"v":[[0,3,["H408"]],[3,4,["H5414"]],[4,6,["H7272"]],[6,9,["H4132"]],[9,12,["H8104"]],[12,15,["H408"]],[15,16,["H5123"]]]},{"k":16085,"v":[[0,1,["H2009"]],[1,4,["H8104"]],[4,5,["H3478"]],[5,7,["H3808"]],[7,8,["H5123"]],[8,9,["H3808"]],[9,10,["H3462"]]]},{"k":16086,"v":[[0,2,["H3068"]],[2,5,["H8104"]],[5,7,["H3068"]],[7,10,["H6738"]],[10,11,["H5921"]],[11,13,["H3225"]],[13,14,["H3027"]]]},{"k":16087,"v":[[0,2,["H8121"]],[2,4,["H3808"]],[4,5,["H5221"]],[5,8,["H3119"]],[8,11,["H3394"]],[11,13,["H3915"]]]},{"k":16088,"v":[[0,2,["H3068"]],[2,4,["H8104"]],[4,7,["H4480","H3605"]],[7,8,["H7451"]],[8,11,["H8104","(H853)"]],[11,13,["H5315"]]]},{"k":16089,"v":[[0,2,["H3068"]],[2,4,["H8104"]],[4,7,["H3318"]],[7,11,["H935"]],[11,15,["H4480","H6258"]],[15,19,["H5704","H5769"]]]},{"k":16090,"v":[[0,3,["H8055"]],[3,6,["H559"]],[6,11,["H1980"]],[11,14,["H1004"]],[14,17,["H3068"]]]},{"k":16091,"v":[[0,2,["H7272"]],[2,3,["H1961"]],[3,4,["H5975"]],[4,7,["H8179"]],[7,9,["H3389"]]]},{"k":16092,"v":[[0,1,["H3389"]],[1,3,["H1129"]],[3,6,["H5892"]],[6,9,["H7945","H2266"]],[9,10,["H3162"]]]},{"k":16093,"v":[[0,1,["H7945","H8033"]],[1,3,["H7626"]],[3,5,["H5927"]],[5,7,["H7626"]],[7,10,["H3050"]],[10,13,["H5715"]],[13,15,["H3478"]],[15,18,["H3034"]],[18,21,["H8034"]],[21,24,["H3068"]]]},{"k":16094,"v":[[0,1,["H3588"]],[1,2,["H8033"]],[2,4,["H3427"]],[4,5,["H3678"]],[5,7,["H4941"]],[7,9,["H3678"]],[9,12,["H1004"]],[12,14,["H1732"]]]},{"k":16095,"v":[[0,1,["H7592"]],[1,4,["H7965"]],[4,6,["H3389"]],[6,9,["H7951"]],[9,11,["H157"]],[11,12,[]]]},{"k":16096,"v":[[0,1,["H7965"]],[1,2,["H1961"]],[2,5,["H2426"]],[5,7,["H7962"]],[7,10,["H759"]]]},{"k":16097,"v":[[0,1,["H4616"]],[1,3,["H251"]],[3,5,["H7453"]],[5,9,["H4994"]],[9,10,["H1696"]],[10,11,["H7965"]],[11,14,[]]]},{"k":16098,"v":[[0,2,["H4616"]],[2,4,["H1004"]],[4,7,["H3068"]],[7,9,["H430"]],[9,12,["H1245"]],[12,14,["H2896"]]]},{"k":16099,"v":[[0,1,["H413"]],[1,5,["H5375","(H853)"]],[5,7,["H5869"]],[7,11,["H3427"]],[11,14,["H8064"]]]},{"k":16100,"v":[[0,1,["H2009"]],[1,4,["H5869"]],[4,6,["H5650"]],[6,8,["H413"]],[8,10,["H3027"]],[10,13,["H113"]],[13,17,["H5869"]],[17,20,["H8198"]],[20,21,["H413"]],[21,23,["H3027"]],[23,26,["H1404"]],[26,27,["H3651"]],[27,29,["H5869"]],[29,31,["H413"]],[31,33,["H3068"]],[33,35,["H430"]],[35,36,["H5704"]],[36,41,["H7945","H2603"]],[41,42,[]]]},{"k":16101,"v":[[0,3,["H2603"]],[3,6,["H3068"]],[6,9,["H2603"]],[9,11,["H3588"]],[11,14,["H7227"]],[14,15,["H7646"]],[15,17,["H937"]]]},{"k":16102,"v":[[0,2,["H5315"]],[2,4,["H7227"]],[4,5,["H7646"]],[5,8,["H3933"]],[8,14,["H7600"]],[14,18,["H937"]],[18,21,["H1349"]]]},{"k":16103,"v":[[0,1,["H3884"]],[1,7,["H3068"]],[7,9,["H7945","H1961"]],[9,13,["H4994"]],[13,15,["H3478"]],[15,16,["H559"]]]},{"k":16104,"v":[[0,1,["H3884"]],[1,7,["H3068"]],[7,9,["H7945","H1961"]],[9,14,["H120"]],[14,16,["H6965"]],[16,17,["H5921"]],[17,18,[]]]},{"k":16105,"v":[[0,1,["H233"]],[1,6,["H1104"]],[6,7,["H2416"]],[7,10,["H639"]],[10,12,["H2734"]],[12,14,[]]]},{"k":16106,"v":[[0,1,["H233"]],[1,3,["H4325"]],[3,5,["H7857"]],[5,8,["H5158"]],[8,10,["H5674"]],[10,11,["H5921"]],[11,13,["H5315"]]]},{"k":16107,"v":[[0,1,["H233"]],[1,3,["H2121"]],[3,4,["H4325"]],[4,6,["H5674"]],[6,7,["H5921"]],[7,9,["H5315"]]]},{"k":16108,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,7,["H7945","H3808"]],[7,8,["H5414"]],[8,12,["H2964"]],[12,15,["H8127"]]]},{"k":16109,"v":[[0,2,["H5315"]],[2,4,["H4422"]],[4,7,["H6833"]],[7,11,["H4480","H6341"]],[11,14,["H3369"]],[14,16,["H6341"]],[16,18,["H7665"]],[18,20,["H587"]],[20,22,["H4422"]]]},{"k":16110,"v":[[0,2,["H5828"]],[2,6,["H8034"]],[6,9,["H3068"]],[9,11,["H6213"]],[11,12,["H8064"]],[12,14,["H776"]]]},{"k":16111,"v":[[0,3,["H982"]],[3,6,["H3068"]],[6,10,["H2022"]],[10,11,["H6726"]],[11,13,["H3808"]],[13,15,["H4131"]],[15,17,["H3427"]],[17,19,["H5769"]]]},{"k":16112,"v":[[0,3,["H2022"]],[3,6,["H5439"]],[6,7,["H3389"]],[7,10,["H3068"]],[10,13,["H5439"]],[13,15,["H5971"]],[15,17,["H4480","H6258"]],[17,20,["H5704","H5769"]]]},{"k":16113,"v":[[0,1,["H3588"]],[1,3,["H7626"]],[3,6,["H7562"]],[6,8,["H3808"]],[8,9,["H5117"]],[9,10,["H5921"]],[10,12,["H1486"]],[12,15,["H6662"]],[15,16,["H4616","H3808"]],[16,18,["H6662"]],[18,20,["H7971"]],[20,22,["H3027"]],[22,24,["H5766"]]]},{"k":16114,"v":[[0,2,["H3190"]],[2,4,["H3068"]],[4,9,["H2896"]],[9,15,["H3477"]],[15,18,["H3826"]]]},{"k":16115,"v":[[0,6,["H5186"]],[6,10,["H6128"]],[10,12,["H3068"]],[12,16,["H1980"]],[16,17,["H854"]],[17,19,["H6466"]],[19,21,["H205"]],[21,23,["H7965"]],[23,26,["H5921"]],[26,27,["H3478"]]]},{"k":16116,"v":[[0,3,["H3068"]],[3,5,["H7725","(H853)"]],[5,7,["H7870"]],[7,9,["H6726"]],[9,11,["H1961"]],[11,15,["H2492"]]]},{"k":16117,"v":[[0,1,["H227"]],[1,4,["H6310"]],[4,5,["H4390"]],[5,7,["H7814"]],[7,10,["H3956"]],[10,12,["H7440"]],[12,13,["H227"]],[13,14,["H559"]],[14,18,["H1471"]],[18,20,["H3068"]],[20,22,["H6213"]],[22,24,["H1431"]],[24,25,["H5973"]],[25,26,["H428"]]]},{"k":16118,"v":[[0,2,["H3068"]],[2,4,["H6213"]],[4,6,["H1431"]],[6,7,["H5973"]],[7,11,["H1961"]],[11,12,["H8056"]]]},{"k":16119,"v":[[0,2,["H7725","(H853)"]],[2,4,["H7622"]],[4,6,["H3068"]],[6,9,["H650"]],[9,12,["H5045"]]]},{"k":16120,"v":[[0,3,["H2232"]],[3,5,["H1832"]],[5,7,["H7114"]],[7,9,["H7440"]]]},{"k":16121,"v":[[0,4,["H1980","H1980"]],[4,6,["H1058"]],[6,7,["H5375"]],[7,8,["H4901"]],[8,9,["H2233"]],[9,13,["H935","H935"]],[13,15,["H7440"]],[15,16,["H5375"]],[16,18,["H485"]],[18,20,[]]]},{"k":16122,"v":[[0,1,["H518","H3808"]],[1,3,["H3068"]],[3,4,["H1129"]],[4,6,["H1004"]],[6,8,["H5998"]],[8,10,["H7723"]],[10,12,["H1129"]],[12,14,["H518","H3808"]],[14,16,["H3068"]],[16,17,["H8104"]],[17,19,["H5892"]],[19,21,["H8104"]],[21,22,["H8245"]],[22,25,["H7723"]]]},{"k":16123,"v":[[0,3,["H7723"]],[3,8,["H6965"]],[8,9,["H7925"]],[9,12,["H3427"]],[12,13,["H309"]],[13,15,["H398"]],[15,17,["H3899"]],[17,19,["H6089"]],[19,21,["H3651"]],[21,23,["H5414"]],[23,25,["H3039"]],[25,26,["H8142"]]]},{"k":16124,"v":[[0,1,["H2009"]],[1,2,["H1121"]],[2,5,["H5159"]],[5,8,["H3068"]],[8,11,["H6529"]],[11,14,["H990"]],[14,17,["H7939"]]]},{"k":16125,"v":[[0,2,["H2671"]],[2,6,["H3027"]],[6,9,["H1368"]],[9,11,["H3651"]],[11,13,["H1121"]],[13,16,["H5271"]]]},{"k":16126,"v":[[0,1,["H835"]],[1,4,["H1397"]],[4,5,["H834"]],[5,6,["(H853)"]],[6,8,["H827"]],[8,9,["H4390"]],[9,10,["H4480"]],[10,14,["H3808"]],[14,16,["H954"]],[16,17,["H3588"]],[17,20,["H1696"]],[20,21,["H854"]],[21,23,["H341"]],[23,26,["H8179"]]]},{"k":16127,"v":[[0,1,["H835"]],[1,4,["H3605"]],[4,6,["H3373"]],[6,8,["H3068"]],[8,10,["H1980"]],[10,13,["H1870"]]]},{"k":16128,"v":[[0,1,["H3588"]],[1,4,["H398"]],[4,6,["H3018"]],[6,9,["H3709"]],[9,10,["H835"]],[10,18,["H2896"]],[18,20,[]]]},{"k":16129,"v":[[0,2,["H802"]],[2,7,["H6509"]],[7,8,["H1612"]],[8,11,["H3411"]],[11,14,["H1004"]],[14,16,["H1121"]],[16,18,["H2132"]],[18,19,["H8363"]],[19,21,["H5439"]],[21,23,["H7979"]]]},{"k":16130,"v":[[0,1,["H2009"]],[1,2,["H3588"]],[2,3,["H3651"]],[3,6,["H1397"]],[6,8,["H1288"]],[8,10,["H3373"]],[10,12,["H3068"]]]},{"k":16131,"v":[[0,2,["H3068"]],[2,4,["H1288"]],[4,8,["H4480","H6726"]],[8,12,["H7200"]],[12,14,["H2898"]],[14,16,["H3389"]],[16,17,["H3605"]],[17,19,["H3117"]],[19,22,["H2416"]]]},{"k":16132,"v":[[0,4,["H7200"]],[4,6,["H1121"]],[6,7,["H1121"]],[7,9,["H7965"]],[9,10,["H5921"]],[10,11,["H3478"]]]},{"k":16133,"v":[[0,3,["H7227"]],[3,6,["H6887"]],[6,10,["H4480","H5271"]],[10,12,["H3478"]],[12,13,["H4994"]],[13,14,["H559"]]]},{"k":16134,"v":[[0,3,["H7227"]],[3,6,["H6887"]],[6,10,["H4480","H5271"]],[10,11,["H1571"]],[11,14,["H3808"]],[14,15,["H3201"]],[15,17,[]]]},{"k":16135,"v":[[0,2,["H2790"]],[2,3,["H2790"]],[3,4,["H5921"]],[4,6,["H1354"]],[6,9,["H748"]],[9,11,["H4618"]]]},{"k":16136,"v":[[0,2,["H3068"]],[2,4,["H6662"]],[4,8,["H7112"]],[8,10,["H5688"]],[10,13,["H7563"]]]},{"k":16137,"v":[[0,3,["H3605"]],[3,5,["H954"]],[5,7,["H5472"]],[7,8,["H268"]],[8,10,["H8130"]],[10,11,["H6726"]]]},{"k":16138,"v":[[0,3,["H1961"]],[3,6,["H2682"]],[6,9,["H1406"]],[9,11,["H3001"]],[11,12,["H7945","H6927"]],[12,15,["H8025"]]]},{"k":16139,"v":[[0,3,["H7114"]],[3,4,["H4390"]],[4,5,["H7945","H3808"]],[5,7,["H3709"]],[7,11,["H6014"]],[11,14,["H2683"]]]},{"k":16140,"v":[[0,1,["H3808"]],[1,6,["H5674"]],[6,7,["H559"]],[7,9,["H1293"]],[9,12,["H3068"]],[12,14,["H413"]],[14,17,["H1288"]],[17,21,["H8034"]],[21,24,["H3068"]]]},{"k":16141,"v":[[0,4,["H4480","H4615"]],[4,7,["H7121"]],[7,11,["H3068"]]]},{"k":16142,"v":[[0,1,["H136"]],[1,2,["H8085"]],[2,4,["H6963"]],[4,7,["H241"]],[7,8,["H1961"]],[8,9,["H7183"]],[9,12,["H6963"]],[12,15,["H8469"]]]},{"k":16143,"v":[[0,1,["H518"]],[1,3,["H3050"]],[3,5,["H8104"]],[5,6,["H5771"]],[6,8,["H136"]],[8,9,["H4310"]],[9,11,["H5975"]]]},{"k":16144,"v":[[0,1,["H3588"]],[1,4,["H5547"]],[4,5,["H5973"]],[5,7,["H4616"]],[7,11,["H3372"]]]},{"k":16145,"v":[[0,3,["H6960"]],[3,5,["H3068"]],[5,7,["H5315"]],[7,9,["H6960"]],[9,13,["H1697"]],[13,16,["H3176"]]]},{"k":16146,"v":[[0,2,["H5315"]],[2,6,["H136"]],[6,11,["H4480","H8104"]],[11,14,["H1242"]],[14,21,["H8104"]],[21,24,["H1242"]]]},{"k":16147,"v":[[0,2,["H3478"]],[2,3,["H3176"]],[3,4,["H413"]],[4,6,["H3068"]],[6,7,["H3588"]],[7,8,["H5973"]],[8,10,["H3068"]],[10,13,["H2617"]],[13,15,["H5973"]],[15,18,["H7235"]],[18,19,["H6304"]]]},{"k":16148,"v":[[0,2,["H1931"]],[2,4,["H6299","(H853)"]],[4,5,["H3478"]],[5,7,["H4480","H3605"]],[7,9,["H5771"]]]},{"k":16149,"v":[[0,1,["H3068"]],[1,3,["H3820"]],[3,5,["H3808"]],[5,6,["H1361"]],[6,7,["H3808"]],[7,9,["H5869"]],[9,10,["H7311"]],[10,11,["H3808"]],[11,14,["H1980"]],[14,18,["H1419"]],[18,23,["H6381"]],[23,24,["H4480"]],[24,25,[]]]},{"k":16150,"v":[[0,1,["H518","H3808"]],[1,4,["H7737"]],[4,6,["H1826"]],[6,7,["H5315"]],[7,13,["H1580"]],[13,14,["H5921"]],[14,16,["H517"]],[16,18,["H5315"]],[18,24,["H1580"]]]},{"k":16151,"v":[[0,2,["H3478"]],[2,3,["H3176"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H4480","H6258"]],[8,11,["H5704","H5769"]]]},{"k":16152,"v":[[0,1,["H3068"]],[1,2,["H2142"]],[2,3,["H1732"]],[3,4,["(H853)"]],[4,5,["H3605"]],[5,7,["H6031"]]]},{"k":16153,"v":[[0,1,["H834"]],[1,3,["H7650"]],[3,6,["H3068"]],[6,8,["H5087"]],[8,11,["H46"]],[11,14,["H3290"]]]},{"k":16154,"v":[[0,1,["H518"]],[1,5,["H935"]],[5,8,["H168"]],[8,11,["H1004"]],[11,12,["H518"]],[12,14,["H5927"]],[14,15,["H5921"]],[15,17,["H6210","H3326"]]]},{"k":16155,"v":[[0,3,["H518"]],[3,4,["H5414"]],[4,5,["H8153"]],[5,8,["H5869"]],[8,10,["H8572"]],[10,13,["H6079"]]]},{"k":16156,"v":[[0,1,["H5704"]],[1,4,["H4672"]],[4,6,["H4725"]],[6,9,["H3068"]],[9,11,["H4908"]],[11,14,["H46"]],[14,17,["H3290"]]]},{"k":16157,"v":[[0,1,["H2009"]],[1,3,["H8085"]],[3,7,["H672"]],[7,9,["H4672"]],[9,13,["H7704"]],[13,16,["H3293"]]]},{"k":16158,"v":[[0,3,["H935"]],[3,6,["H4908"]],[6,9,["H7812"]],[9,12,["H1916","H7272"]]]},{"k":16159,"v":[[0,1,["H6965"]],[1,3,["H3068"]],[3,6,["H4496"]],[6,7,["H859"]],[7,10,["H727"]],[10,13,["H5797"]]]},{"k":16160,"v":[[0,3,["H3548"]],[3,5,["H3847"]],[5,7,["H6664"]],[7,11,["H2623"]],[11,14,["H7442"]]]},{"k":16161,"v":[[0,3,["H5650"]],[3,4,["H1732"]],[4,5,["H5668"]],[5,8,["H7725","H408"]],[8,10,["H6440"]],[10,13,["H4899"]]]},{"k":16162,"v":[[0,2,["H3068"]],[2,4,["H7650"]],[4,6,["H571"]],[6,8,["H1732"]],[8,11,["H3808"]],[11,12,["H7725"]],[12,13,["H4480"]],[13,17,["H4480","H6529"]],[17,20,["H990"]],[20,23,["H7896"]],[23,26,["H3678"]]]},{"k":16163,"v":[[0,1,["H518"]],[1,3,["H1121"]],[3,5,["H8104"]],[5,7,["H1285"]],[7,10,["H5713"]],[10,11,["H2097"]],[11,14,["H3925"]],[14,17,["H1121"]],[17,19,["H1571"]],[19,20,["H3427"]],[20,23,["H3678"]],[23,25,["H5704","H5703"]]]},{"k":16164,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H977"]],[5,6,["H6726"]],[6,9,["H183"]],[9,13,["H4186"]]]},{"k":16165,"v":[[0,1,["H2063"]],[1,4,["H4496"]],[4,6,["H5704","H5703"]],[6,7,["H6311"]],[7,10,["H3427"]],[10,11,["H3588"]],[11,14,["H183"]],[14,15,[]]]},{"k":16166,"v":[[0,4,["H1288","H1288"]],[4,6,["H6718"]],[6,9,["H7646"]],[9,11,["H34"]],[11,13,["H3899"]]]},{"k":16167,"v":[[0,4,["H3847"]],[4,6,["H3548"]],[6,8,["H3468"]],[8,11,["H2623"]],[11,16,["H7442","H7442"]]]},{"k":16168,"v":[[0,1,["H8033"]],[1,6,["H7161"]],[6,8,["H1732"]],[8,10,["H6779"]],[10,13,["H6186"]],[13,15,["H5216"]],[15,18,["H4899"]]]},{"k":16169,"v":[[0,2,["H341"]],[2,5,["H3847"]],[5,7,["H1322"]],[7,9,["H5921"]],[9,13,["H5145"]],[13,14,["H6692"]]]},{"k":16170,"v":[[0,1,["H2009"]],[1,2,["H4100"]],[2,3,["H2896"]],[3,5,["H4100"]],[5,6,["H5273"]],[6,10,["H251"]],[10,12,["H3427"]],[12,15,["H1571","H3162"]]]},{"k":16171,"v":[[0,5,["H2896"]],[5,6,["H8081"]],[6,7,["H5921"]],[7,9,["H7218"]],[9,12,["H3381"]],[12,13,["H5921"]],[13,15,["H2206"]],[15,17,["H175"]],[17,18,["H2206"]],[18,21,["H7945","H3381"]],[21,22,["H5921"]],[22,24,["H6310"]],[24,27,["H4060"]]]},{"k":16172,"v":[[0,3,["H2919"]],[3,5,["H2768"]],[5,11,["H7945","H3381"]],[11,12,["H5921"]],[12,14,["H2042"]],[14,16,["H6726"]],[16,17,["H3588"]],[17,18,["H8033"]],[18,20,["H3068"]],[20,21,["H6680","(H853)"]],[21,23,["H1293"]],[23,25,["H2416"]],[25,27,["H5704","H5769"]]]},{"k":16173,"v":[[0,1,["H2009"]],[1,2,["H1288"]],[2,4,["(H853)"]],[4,5,["H3068"]],[5,6,["H3605"]],[6,8,["H5650"]],[8,11,["H3068"]],[11,14,["H3915"]],[14,15,["H5975"]],[15,18,["H1004"]],[18,21,["H3068"]]]},{"k":16174,"v":[[0,2,["H5375"]],[2,4,["H3027"]],[4,7,["H6944"]],[7,9,["H1288","(H853)"]],[9,11,["H3068"]]]},{"k":16175,"v":[[0,2,["H3068"]],[2,4,["H6213"]],[4,5,["H8064"]],[5,7,["H776"]],[7,8,["H1288"]],[8,12,["H4480","H6726"]]]},{"k":16176,"v":[[0,1,["H1984"]],[1,4,["H3050"]],[4,5,["H1984"]],[5,6,["(H853)"]],[6,8,["H8034"]],[8,11,["H3068"]],[11,12,["H1984"]],[12,16,["H5650"]],[16,19,["H3068"]]]},{"k":16177,"v":[[0,3,["H7945","H5975"]],[3,6,["H1004"]],[6,9,["H3068"]],[9,12,["H2691"]],[12,15,["H1004"]],[15,18,["H430"]]]},{"k":16178,"v":[[0,1,["H1984"]],[1,3,["H3050"]],[3,4,["H3588"]],[4,6,["H3068"]],[6,8,["H2896"]],[8,10,["H2167"]],[10,13,["H8034"]],[13,14,["H3588"]],[14,17,["H5273"]]]},{"k":16179,"v":[[0,1,["H3588"]],[1,3,["H3050"]],[3,5,["H977"]],[5,6,["H3290"]],[6,10,["H3478"]],[10,14,["H5459"]]]},{"k":16180,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,3,["H3045"]],[3,4,["H3588"]],[4,6,["H3068"]],[6,8,["H1419"]],[8,12,["H113"]],[12,15,["H4480","H3605"]],[15,16,["H430"]]]},{"k":16181,"v":[[0,1,["H3605","H834"]],[1,3,["H3068"]],[3,4,["H2654"]],[4,6,["H6213"]],[6,9,["H8064"]],[9,12,["H776"]],[12,15,["H3220"]],[15,17,["H3605"]],[17,19,["H8415"]]]},{"k":16182,"v":[[0,4,["H5387"]],[4,6,["H5927"]],[6,9,["H4480","H7097"]],[9,12,["H776"]],[12,14,["H6213"]],[14,15,["H1300"]],[15,18,["H4306"]],[18,20,["H3318"]],[20,22,["H7307"]],[22,26,["H4480","H214"]]]},{"k":16183,"v":[[0,2,["H7945","H5221"]],[2,4,["H1060"]],[4,6,["H4714"]],[6,9,["H4480","H120"]],[9,10,["H5704"]],[10,11,["H929"]]]},{"k":16184,"v":[[0,2,["H7971"]],[2,3,["H226"]],[3,5,["H4159"]],[5,8,["H8432"]],[8,12,["H4714"]],[12,14,["H6547"]],[14,17,["H3605"]],[17,19,["H5650"]]]},{"k":16185,"v":[[0,2,["H7945","H5221"]],[2,3,["H7227"]],[3,4,["H1471"]],[4,6,["H2026"]],[6,7,["H6099"]],[7,8,["H4428"]]]},{"k":16186,"v":[[0,1,["H5511"]],[1,2,["H4428"]],[2,5,["H567"]],[5,7,["H5747"]],[7,8,["H4428"]],[8,10,["H1316"]],[10,12,["H3605"]],[12,14,["H4467"]],[14,16,["H3667"]]]},{"k":16187,"v":[[0,2,["H5414"]],[2,4,["H776"]],[4,7,["H5159"]],[7,9,["H5159"]],[9,11,["H3478"]],[11,13,["H5971"]]]},{"k":16188,"v":[[0,2,["H8034"]],[2,4,["H3068"]],[4,7,["H5769"]],[7,10,["H2143"]],[10,12,["H3068"]],[12,15,["H1755","H1755"]]]},{"k":16189,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H1777"]],[5,7,["H5971"]],[7,12,["H5162"]],[12,13,["H5921"]],[13,15,["H5650"]]]},{"k":16190,"v":[[0,2,["H6091"]],[2,5,["H1471"]],[5,7,["H3701"]],[7,9,["H2091"]],[9,11,["H4639"]],[11,13,["H120"]],[13,14,["H3027"]]]},{"k":16191,"v":[[0,3,["H6310"]],[3,6,["H1696"]],[6,7,["H3808"]],[7,8,["H5869"]],[8,13,["H7200"]],[13,14,["H3808"]]]},{"k":16192,"v":[[0,3,["H241"]],[3,6,["H238"]],[6,7,["H3808"]],[7,8,["H637","H369"]],[8,10,["H3426"]],[10,12,["H7307"]],[12,15,["H6310"]]]},{"k":16193,"v":[[0,3,["H6213"]],[3,5,["H1961"]],[5,8,["H3644"]],[8,12,["H3605"]],[12,13,["H834"]],[13,14,["H982"]],[14,16,[]]]},{"k":16194,"v":[[0,1,["H1288","(H853)"]],[1,3,["H3068"]],[3,5,["H1004"]],[5,7,["H3478","(H853)"]],[7,8,["H1288"]],[8,10,["H3068"]],[10,12,["H1004"]],[12,14,["H175"]]]},{"k":16195,"v":[[0,1,["H1288","(H853)"]],[1,3,["H3068"]],[3,5,["H1004"]],[5,7,["H3878"]],[7,10,["H3373"]],[10,12,["H3068"]],[12,13,["H1288","(H853)"]],[13,15,["H3068"]]]},{"k":16196,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,7,["H4480","H6726"]],[7,9,["H7931"]],[9,11,["H3389"]],[11,12,["H1984"]],[12,15,["H3050"]]]},{"k":16197,"v":[[0,3,["H3034"]],[3,6,["H3068"]],[6,7,["H3588"]],[7,10,["H2896"]],[10,11,["H3588"]],[11,13,["H2617"]],[13,16,["H5769"]]]},{"k":16198,"v":[[0,3,["H3034"]],[3,6,["H430"]],[6,8,["H430"]],[8,9,["H3588"]],[9,11,["H2617"]],[11,14,["H5769"]]]},{"k":16199,"v":[[0,3,["H3034"]],[3,6,["H113"]],[6,8,["H113"]],[8,9,["H3588"]],[9,11,["H2617"]],[11,14,["H5769"]]]},{"k":16200,"v":[[0,4,["H905"]],[4,5,["H6213"]],[5,6,["H1419"]],[6,7,["H6381"]],[7,8,["H3588"]],[8,10,["H2617"]],[10,13,["H5769"]]]},{"k":16201,"v":[[0,5,["H8394"]],[5,6,["H6213"]],[6,8,["H8064"]],[8,9,["H3588"]],[9,11,["H2617"]],[11,14,["H5769"]]]},{"k":16202,"v":[[0,5,["H7554"]],[5,7,["H776"]],[7,8,["H5921"]],[8,10,["H4325"]],[10,11,["H3588"]],[11,13,["H2617"]],[13,16,["H5769"]]]},{"k":16203,"v":[[0,4,["H6213"]],[4,5,["H1419"]],[5,6,["H216"]],[6,7,["H3588"]],[7,9,["H2617"]],[9,12,["H5769"]]]},{"k":16204,"v":[[0,0,["(H853)"]],[0,2,["H8121"]],[2,4,["H4475"]],[4,6,["H3117"]],[6,7,["H3588"]],[7,9,["H2617"]],[9,12,["H5769"]]]},{"k":16205,"v":[[0,0,["(H853)"]],[0,2,["H3394"]],[2,4,["H3556"]],[4,6,["H4475"]],[6,8,["H3915"]],[8,9,["H3588"]],[9,11,["H2617"]],[11,14,["H5769"]]]},{"k":16206,"v":[[0,4,["H5221"]],[4,5,["H4714"]],[5,8,["H1060"]],[8,9,["H3588"]],[9,11,["H2617"]],[11,14,["H5769"]]]},{"k":16207,"v":[[0,3,["H3318"]],[3,4,["H3478"]],[4,6,["H4480","H8432"]],[6,8,["H3588"]],[8,10,["H2617"]],[10,13,["H5769"]]]},{"k":16208,"v":[[0,3,["H2389"]],[3,4,["H3027"]],[4,9,["H5186"]],[9,10,["H2220"]],[10,11,["H3588"]],[11,13,["H2617"]],[13,16,["H5769"]]]},{"k":16209,"v":[[0,4,["H1504"]],[4,6,["H5488"]],[6,7,["H3220"]],[7,9,["H1506"]],[9,10,["H3588"]],[10,12,["H2617"]],[12,15,["H5769"]]]},{"k":16210,"v":[[0,3,["H3478"]],[3,6,["H5674"]],[6,8,["H8432"]],[8,11,["H3588"]],[11,13,["H2617"]],[13,16,["H5769"]]]},{"k":16211,"v":[[0,2,["H5287"]],[2,3,["H6547"]],[3,6,["H2428"]],[6,9,["H5488"]],[9,10,["H3220"]],[10,11,["H3588"]],[11,13,["H2617"]],[13,16,["H5769"]]]},{"k":16212,"v":[[0,4,["H1980"]],[4,6,["H5971"]],[6,9,["H4057"]],[9,10,["H3588"]],[10,12,["H2617"]],[12,15,["H5769"]]]},{"k":16213,"v":[[0,4,["H5221"]],[4,5,["H1419"]],[5,6,["H4428"]],[6,7,["H3588"]],[7,9,["H2617"]],[9,12,["H5769"]]]},{"k":16214,"v":[[0,2,["H2026"]],[2,3,["H117"]],[3,4,["H4428"]],[4,5,["H3588"]],[5,7,["H2617"]],[7,10,["H5769"]]]},{"k":16215,"v":[[0,1,["H5511"]],[1,2,["H4428"]],[2,5,["H567"]],[5,6,["H3588"]],[6,8,["H2617"]],[8,11,["H5769"]]]},{"k":16216,"v":[[0,2,["H5747"]],[2,4,["H4428"]],[4,6,["H1316"]],[6,7,["H3588"]],[7,9,["H2617"]],[9,12,["H5769"]]]},{"k":16217,"v":[[0,2,["H5414"]],[2,4,["H776"]],[4,7,["H5159"]],[7,8,["H3588"]],[8,10,["H2617"]],[10,13,["H5769"]]]},{"k":16218,"v":[[0,3,["H5159"]],[3,5,["H3478"]],[5,7,["H5650"]],[7,8,["H3588"]],[8,10,["H2617"]],[10,13,["H5769"]]]},{"k":16219,"v":[[0,2,["H2142"]],[2,7,["H7945","H8216"]],[7,8,["H3588"]],[8,10,["H2617"]],[10,13,["H5769"]]]},{"k":16220,"v":[[0,3,["H6561"]],[3,7,["H4480","H6862"]],[7,8,["H3588"]],[8,10,["H2617"]],[10,13,["H5769"]]]},{"k":16221,"v":[[0,2,["H5414"]],[2,3,["H3899"]],[3,5,["H3605"]],[5,6,["H1320"]],[6,7,["H3588"]],[7,9,["H2617"]],[9,12,["H5769"]]]},{"k":16222,"v":[[0,3,["H3034"]],[3,6,["H410"]],[6,8,["H8064"]],[8,9,["H3588"]],[9,11,["H2617"]],[11,14,["H5769"]]]},{"k":16223,"v":[[0,1,["H5921"]],[1,3,["H5104"]],[3,5,["H894"]],[5,6,["H8033"]],[6,9,["H3427"]],[9,10,["H1571"]],[10,12,["H1058"]],[12,15,["H2142","(H853)"]],[15,16,["H6726"]]]},{"k":16224,"v":[[0,2,["H8518"]],[2,4,["H3658"]],[4,5,["H5921"]],[5,7,["H6155"]],[7,10,["H8432"]],[10,11,[]]]},{"k":16225,"v":[[0,1,["H3588"]],[1,2,["H8033"]],[2,8,["H7617"]],[8,9,["H7592"]],[9,13,["H1697","H7892"]],[13,17,["H8437"]],[17,22,["H8057"]],[22,24,["H7891"]],[24,29,["H4480","H7892"]],[29,31,["H6726"]]]},{"k":16226,"v":[[0,1,["H349"]],[1,4,["H7891","(H853)"]],[4,6,["H3068"]],[6,7,["H7892"]],[7,8,["H5921"]],[8,10,["H5236"]],[10,11,["H127"]]]},{"k":16227,"v":[[0,1,["H518"]],[1,3,["H7911"]],[3,6,["H3389"]],[6,10,["H3225"]],[10,11,["H7911"]],[11,13,[]]]},{"k":16228,"v":[[0,1,["H518"]],[1,4,["H3808"]],[4,5,["H2142"]],[5,9,["H3956"]],[9,10,["H1692"]],[10,16,["H2441"]],[16,17,["H518"]],[17,19,["H5927"]],[19,20,["H3808","(H853)"]],[20,21,["H3389"]],[21,22,["H5921"]],[22,24,["H7218"]],[24,25,["H8057"]]]},{"k":16229,"v":[[0,1,["H2142"]],[1,3,["H3068"]],[3,5,["H1121"]],[5,7,["H123","(H853)"]],[7,10,["H3117"]],[10,12,["H3389"]],[12,14,["H559"]],[14,15,["H6168"]],[15,17,["H6168"]],[17,20,["H5704"]],[20,22,["H3247"]],[22,23,[]]]},{"k":16230,"v":[[0,2,["H1323"]],[2,4,["H894"]],[4,9,["H7703"]],[9,10,["H835"]],[10,15,["H7945","H7999"]],[15,17,["H854","H1576"]],[17,20,["H7945","H1580"]],[20,21,[]]]},{"k":16231,"v":[[0,1,["H835"]],[1,6,["H7945","H270"]],[6,8,["H5310","(H853)"]],[8,11,["H5768"]],[11,12,["H413"]],[12,14,["H5553"]]]},{"k":16232,"v":[[0,3,["H3034"]],[3,7,["H3605"]],[7,8,["H3820"]],[8,9,["H5048"]],[9,11,["H430"]],[11,15,["H2167"]],[15,17,[]]]},{"k":16233,"v":[[0,3,["H7812"]],[3,4,["H413"]],[4,6,["H6944"]],[6,7,["H1964"]],[7,9,["H3034","(H853)"]],[9,11,["H8034"]],[11,12,["H3588"]],[12,14,["H2617"]],[14,16,["H5921"]],[16,18,["H571"]],[18,19,["H3588"]],[19,22,["H1431"]],[22,24,["H565"]],[24,25,["H5921"]],[25,26,["H3605"]],[26,28,["H8034"]]]},{"k":16234,"v":[[0,3,["H3117"]],[3,6,["H7121"]],[6,8,["H6030"]],[8,11,["H7292"]],[11,14,["H5797"]],[14,17,["H5315"]]]},{"k":16235,"v":[[0,1,["H3605"]],[1,3,["H4428"]],[3,6,["H776"]],[6,8,["H3034"]],[8,11,["H3068"]],[11,12,["H3588"]],[12,14,["H8085"]],[14,16,["H561"]],[16,19,["H6310"]]]},{"k":16236,"v":[[0,4,["H7891"]],[4,7,["H1870"]],[7,10,["H3068"]],[10,11,["H3588"]],[11,12,["H1419"]],[12,15,["H3519"]],[15,18,["H3068"]]]},{"k":16237,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H7311"]],[5,9,["H7200"]],[9,12,["H8217"]],[12,15,["H1364"]],[15,17,["H3045"]],[17,19,["H4480","H4801"]]]},{"k":16238,"v":[[0,1,["H518"]],[1,3,["H1980"]],[3,6,["H7130"]],[6,8,["H6869"]],[8,11,["H2421"]],[11,16,["H7971"]],[16,18,["H3027"]],[18,19,["H5921"]],[19,21,["H639"]],[21,24,["H341"]],[24,28,["H3225"]],[28,30,["H3467"]],[30,31,[]]]},{"k":16239,"v":[[0,2,["H3068"]],[2,4,["H1584"]],[4,7,["H1157"]],[7,10,["H2617"]],[10,12,["H3068"]],[12,15,["H5769"]],[15,16,["H7503"]],[16,17,["H408"]],[17,19,["H4639"]],[19,23,["H3027"]]]},{"k":16240,"v":[[0,2,["H3068"]],[2,5,["H2713"]],[5,8,["H3045"]],[8,9,[]]]},{"k":16241,"v":[[0,1,["H859"]],[1,2,["H3045"]],[2,4,["H3427"]],[4,7,["H6965"]],[7,9,["H995"]],[9,11,["H7454"]],[11,13,["H4480","H7350"]]]},{"k":16242,"v":[[0,2,["H2219"]],[2,4,["H734"]],[4,8,["H7252"]],[8,11,["H5532"]],[11,13,["H3605"]],[13,15,["H1870"]]]},{"k":16243,"v":[[0,1,["H3588"]],[1,4,["H369"]],[4,6,["H4405"]],[6,9,["H3956"]],[9,11,["H2005"]],[11,13,["H3068"]],[13,15,["H3045"]],[15,17,["H3605"]]]},{"k":16244,"v":[[0,3,["H6696"]],[3,5,["H268"]],[5,7,["H6924"]],[7,9,["H7896"]],[9,11,["H3709"]],[11,12,["H5921"]],[12,13,[]]]},{"k":16245,"v":[[0,2,["H1847"]],[2,5,["H6383"]],[5,6,["H4480"]],[6,10,["H7682"]],[10,12,["H3808","H3201"]],[12,15,[]]]},{"k":16246,"v":[[0,1,["H575"]],[1,4,["H1980"]],[4,7,["H4480","H7307"]],[7,9,["H575"]],[9,12,["H1272"]],[12,15,["H4480","H6440"]]]},{"k":16247,"v":[[0,1,["H518"]],[1,4,["H5266"]],[4,6,["H8064"]],[6,7,["H859"]],[7,9,["H8033"]],[9,14,["H3331"]],[14,16,["H7585"]],[16,17,["H2009"]],[17,20,[]]]},{"k":16248,"v":[[0,3,["H5375"]],[3,5,["H3671"]],[5,8,["H7837"]],[8,10,["H7931"]],[10,14,["H319"]],[14,17,["H3220"]]]},{"k":16249,"v":[[0,1,["H1571"]],[1,2,["H8033"]],[2,5,["H3027"]],[5,6,["H5148"]],[6,11,["H3225"]],[11,13,["H270"]],[13,14,[]]]},{"k":16250,"v":[[0,3,["H559"]],[3,4,["H389"]],[4,6,["H2822"]],[6,8,["H7779"]],[8,12,["H3915"]],[12,15,["H216"]],[15,16,["H1157"]],[16,17,[]]]},{"k":16251,"v":[[0,1,["H1571"]],[1,3,["H2822"]],[3,4,["H2821"]],[4,5,["H3808"]],[5,6,["H4480"]],[6,10,["H3915"]],[10,11,["H215"]],[11,14,["H3117"]],[14,16,["H2825"]],[16,19,["H219"]],[19,24,[]]]},{"k":16252,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H7069"]],[4,6,["H3629"]],[6,9,["H5526"]],[9,13,["H517"]],[13,14,["H990"]]]},{"k":16253,"v":[[0,3,["H3034"]],[3,5,["H5921","H3588"]],[5,8,["H3372"]],[8,10,["H6395"]],[10,12,["H6381"]],[12,15,["H4639"]],[15,19,["H5315"]],[19,20,["H3045"]],[20,22,["H3966"]]]},{"k":16254,"v":[[0,2,["H6108"]],[2,4,["H3808"]],[4,5,["H3582"]],[5,6,["H4480"]],[6,8,["H834"]],[8,11,["H6213"]],[11,13,["H5643"]],[13,16,["H7551"]],[16,20,["H8482"]],[20,23,["H776"]]]},{"k":16255,"v":[[0,2,["H5869"]],[2,4,["H7200"]],[4,9,["H1564"]],[9,11,["H5921"]],[11,13,["H5612"]],[13,14,["H3605"]],[14,18,["H3789"]],[18,21,["H3117"]],[21,23,["H3335"]],[23,29,["H3808","H259"]],[29,31,[]]]},{"k":16256,"v":[[0,1,["H4100"]],[1,2,["H3365"]],[2,6,["H7454"]],[6,10,["H410"]],[10,11,["H4100"]],[11,12,["H6105"]],[12,15,["H7218"]],[15,17,[]]]},{"k":16257,"v":[[0,4,["H5608"]],[4,10,["H7235"]],[10,13,["H4480","H2344"]],[13,16,["H6974"]],[16,19,["H5750"]],[19,21,["H5973"]]]},{"k":16258,"v":[[0,1,["H518"]],[1,4,["H6991"]],[4,6,["H7563"]],[6,8,["H433"]],[8,9,["H5493"]],[9,10,["H4480"]],[10,14,["H1818"]],[14,15,["H376"]]]},{"k":16259,"v":[[0,1,["H834"]],[1,3,["H559"]],[3,6,["H4209"]],[6,9,["H6145"]],[9,10,["H5375"]],[10,14,["H7723"]]]},{"k":16260,"v":[[0,2,["H3808"]],[2,4,["H8130"]],[4,7,["H3068"]],[7,9,["H8130"]],[9,15,["H6962"]],[15,21,["H8618"]],[21,22,[]]]},{"k":16261,"v":[[0,2,["H8130"]],[2,5,["H8503"]],[5,6,["H8135"]],[6,8,["H1961"]],[8,11,["H341"]]]},{"k":16262,"v":[[0,1,["H2713"]],[1,4,["H410"]],[4,6,["H3045"]],[6,8,["H3824"]],[8,9,["H974"]],[9,12,["H3045"]],[12,14,["H8312"]]]},{"k":16263,"v":[[0,2,["H7200"]],[2,3,["H518"]],[3,7,["H6090"]],[7,8,["H1870"]],[8,12,["H5148"]],[12,16,["H1870"]],[16,17,["H5769"]]]},{"k":16264,"v":[[0,1,["H2502"]],[1,4,["H3068"]],[4,7,["H7451"]],[7,8,["H4480","H120"]],[8,9,["H5341"]],[9,13,["H2555"]],[13,14,["H4480","H376"]]]},{"k":16265,"v":[[0,1,["H834"]],[1,2,["H2803"]],[2,3,["H7451"]],[3,6,["H3820"]],[6,7,["H3605","H3117"]],[7,11,["H1481"]],[11,13,["H4421"]]]},{"k":16266,"v":[[0,3,["H8150"]],[3,5,["H3956"]],[5,6,["H3644"]],[6,8,["H5175"]],[8,9,["H5919"]],[9,10,["H2534"]],[10,12,["H8478"]],[12,14,["H8193"]],[14,15,["H5542"]]]},{"k":16267,"v":[[0,1,["H8104"]],[1,4,["H3068"]],[4,7,["H4480","H3027"]],[7,10,["H7563"]],[10,11,["H5341"]],[11,16,["H4480","H376","H2555"]],[16,17,["H834"]],[17,19,["H2803"]],[19,21,["H1760"]],[21,23,["H6471"]]]},{"k":16268,"v":[[0,2,["H1343"]],[2,4,["H2934"]],[4,6,["H6341"]],[6,10,["H2256"]],[10,13,["H6566"]],[13,15,["H7568"]],[15,18,["H3027","H4570"]],[18,21,["H7896"]],[21,22,["H4170"]],[22,25,["H5542"]]]},{"k":16269,"v":[[0,2,["H559"]],[2,5,["H3068"]],[5,6,["H859"]],[6,9,["H410"]],[9,10,["H238"]],[10,12,["H6963"]],[12,15,["H8469"]],[15,17,["H3068"]]]},{"k":16270,"v":[[0,2,["H3069"]],[2,4,["H136"]],[4,6,["H5797"]],[6,9,["H3444"]],[9,12,["H5526"]],[12,14,["H7218"]],[14,17,["H3117"]],[17,19,["H5402"]]]},{"k":16271,"v":[[0,1,["H5414"]],[1,2,["H408"]],[2,4,["H3068"]],[4,6,["H3970"]],[6,9,["H7563"]],[9,10,["H6329"]],[10,11,["H408"]],[11,14,["H2162"]],[14,17,["H7311"]],[17,19,["H5542"]]]},{"k":16272,"v":[[0,4,["H7218"]],[4,10,["H4524"]],[10,13,["H5999"]],[13,17,["H8193"]],[17,18,["H3680"]],[18,19,[]]]},{"k":16273,"v":[[0,3,["H1513"]],[3,4,["H4131"]],[4,5,["H5921"]],[5,10,["H5307"]],[10,13,["H784"]],[13,16,["H4113"]],[16,19,["H6965"]],[19,20,["H1077"]],[20,22,[]]]},{"k":16274,"v":[[0,2,["H1077"]],[2,5,["H376","H3956"]],[5,7,["H3559"]],[7,10,["H776"]],[10,11,["H7451"]],[11,13,["H6679"]],[13,15,["H2555"]],[15,16,["H376"]],[16,18,["H4073"]],[18,19,[]]]},{"k":16275,"v":[[0,2,["H3045"]],[2,3,["H3588"]],[3,5,["H3068"]],[5,7,["H6213"]],[7,9,["H1779"]],[9,12,["H6041"]],[12,15,["H4941"]],[15,18,["H34"]]]},{"k":16276,"v":[[0,1,["H389"]],[1,3,["H6662"]],[3,6,["H3034"]],[6,9,["H8034"]],[9,11,["H3477"]],[11,13,["H3427","(H853)"]],[13,16,["H6440"]]]},{"k":16277,"v":[[0,1,["H3068"]],[1,3,["H7121"]],[3,7,["H2363"]],[7,11,["H238"]],[11,14,["H6963"]],[14,17,["H7121"]],[17,19,[]]]},{"k":16278,"v":[[0,3,["H8605"]],[3,6,["H3559"]],[6,7,["H6440"]],[7,10,["H7004"]],[10,14,["H4864"]],[14,17,["H3709"]],[17,20,["H6153"]],[20,21,["H4503"]]]},{"k":16279,"v":[[0,1,["H7896"]],[1,3,["H8108"]],[3,5,["H3068"]],[5,8,["H6310"]],[8,9,["H5341","H5921"]],[9,11,["H1817"]],[11,14,["H8193"]]]},{"k":16280,"v":[[0,1,["H5186"]],[1,2,["H408"]],[2,4,["H3820"]],[4,7,["H7451"]],[7,8,["H1697"]],[8,10,["H5953"]],[10,11,["H7562"]],[11,12,["H5949"]],[12,13,["H854"]],[13,14,["H376"]],[14,16,["H6466"]],[16,17,["H205"]],[17,21,["H1077"]],[21,22,["H3898"]],[22,25,["H4516"]]]},{"k":16281,"v":[[0,3,["H6662"]],[3,4,["H1986"]],[4,10,["H2617"]],[10,14,["H3198"]],[14,20,["H7218"]],[20,21,["H8081"]],[21,24,["H408"]],[24,25,["H5106"]],[25,27,["H7218"]],[27,28,["H3588"]],[28,29,["H5750"]],[29,31,["H8605"]],[31,37,["H7451"]]]},{"k":16282,"v":[[0,3,["H8199"]],[3,5,["H8058"]],[5,7,["H5553"]],[7,8,["H3027"]],[8,11,["H8085"]],[11,13,["H561"]],[13,14,["H3588"]],[14,17,["H5276"]]]},{"k":16283,"v":[[0,2,["H6106"]],[2,4,["H6340"]],[4,7,["H7585"]],[7,8,["H6310"]],[8,10,["H3644"]],[10,12,["H6398"]],[12,14,["H1234"]],[14,18,["H776"]]]},{"k":16284,"v":[[0,1,["H3588"]],[1,3,["H5869"]],[3,5,["H413"]],[5,8,["H3069"]],[8,10,["H136"]],[10,15,["H2620"]],[15,20,["H6168","H408","H5315"]]]},{"k":16285,"v":[[0,1,["H8104"]],[1,3,["H4480","H3027"]],[3,5,["H6341"]],[5,9,["H3369"]],[9,14,["H4170"]],[14,17,["H6466"]],[17,19,["H205"]]]},{"k":16286,"v":[[0,3,["H7563"]],[3,4,["H5307"]],[4,8,["H4364"]],[8,9,["H5704"]],[9,11,["H595"]],[11,12,["H3162"]],[12,13,["H5674"]]]},{"k":16287,"v":[[0,2,["H2199"]],[2,3,["H413"]],[3,5,["H3068"]],[5,8,["H6963"]],[8,11,["H6963"]],[11,12,["H413"]],[12,14,["H3068"]],[14,19,["H2603"]]]},{"k":16288,"v":[[0,3,["H8210"]],[3,5,["H7879"]],[5,6,["H6440"]],[6,9,["H5046"]],[9,10,["H6440"]],[10,13,["H6869"]]]},{"k":16289,"v":[[0,3,["H7307"]],[3,5,["H5848"]],[5,6,["H5921"]],[6,9,["H859"]],[9,10,["H3045"]],[10,12,["H5410"]],[12,15,["H734"]],[15,16,["H2098"]],[16,18,["H1980"]],[18,22,["H2934"]],[22,24,["H6341"]],[24,26,[]]]},{"k":16290,"v":[[0,2,["H5027"]],[2,6,["H3225"]],[6,8,["H7200"]],[8,13,["H369"]],[13,16,["H5234"]],[16,18,["H4498"]],[18,19,["H6","H4480"]],[19,22,["H369"]],[22,23,["H1875"]],[23,26,["H5315"]]]},{"k":16291,"v":[[0,2,["H2199"]],[2,3,["H413"]],[3,6,["H3068"]],[6,8,["H559"]],[8,9,["H859"]],[9,12,["H4268"]],[12,15,["H2506"]],[15,18,["H776"]],[18,21,["H2416"]]]},{"k":16292,"v":[[0,1,["H7181"]],[1,2,["H413"]],[2,4,["H7440"]],[4,5,["H3588"]],[5,10,["H1809","H3966"]],[10,11,["H5337"]],[11,15,["H4480","H7291"]],[15,16,["H3588"]],[16,19,["H553"]],[19,20,["H4480"]],[20,21,[]]]},{"k":16293,"v":[[0,4,["H3318","H5315"]],[4,6,["H4480","H4525"]],[6,10,["H3034","(H853)"]],[10,12,["H8034"]],[12,14,["H6662"]],[14,18,["H3803"]],[18,19,["H3588"]],[19,23,["H1580"]],[23,24,["H5921"]],[24,25,[]]]},{"k":16294,"v":[[0,1,["H8085"]],[1,3,["H8605"]],[3,5,["H3068"]],[5,7,["H238"]],[7,8,["H413"]],[8,10,["H8469"]],[10,13,["H530"]],[13,14,["H6030"]],[14,19,["H6666"]]]},{"k":16295,"v":[[0,2,["H935"]],[2,3,["H408"]],[3,5,["H4941"]],[5,6,["H854"]],[6,8,["H5650"]],[8,9,["H3588"]],[9,12,["H6440"]],[12,14,["H3808"]],[14,15,["H3605"]],[15,16,["H2416"]],[16,18,["H6663"]]]},{"k":16296,"v":[[0,1,["H3588"]],[1,3,["H341"]],[3,5,["H7291"]],[5,7,["H5315"]],[7,10,["H1792"]],[10,12,["H2416"]],[12,16,["H776"]],[16,22,["H3427"]],[22,24,["H4285"]],[24,30,["H5769"]],[30,31,["H4191"]]]},{"k":16297,"v":[[0,4,["H7307"]],[4,5,["H5848"]],[5,6,["H5921"]],[6,9,["H3820"]],[9,10,["H8432"]],[10,13,["H8074"]]]},{"k":16298,"v":[[0,2,["H2142"]],[2,4,["H3117"]],[4,6,["H4480","H6924"]],[6,8,["H1897"]],[8,10,["H3605"]],[10,12,["H6467"]],[12,14,["H7878"]],[14,17,["H4639"]],[17,20,["H3027"]]]},{"k":16299,"v":[[0,3,["H6566"]],[3,5,["H3027"]],[5,7,["H413"]],[7,9,["H5315"]],[9,15,["H5889"]],[15,16,["H776"]],[16,17,["H5542"]]]},{"k":16300,"v":[[0,1,["H6030"]],[1,3,["H4116"]],[3,5,["H3068"]],[5,7,["H7307"]],[7,8,["H3615"]],[8,9,["H5641"]],[9,10,["H408"]],[10,12,["H6440"]],[12,13,["H4480"]],[13,18,["H4911"]],[18,19,["H5973"]],[19,23,["H3381"]],[23,26,["H953"]]]},{"k":16301,"v":[[0,4,["H8085"]],[4,6,["H2617"]],[6,9,["H1242"]],[9,10,["H3588"]],[10,15,["H982"]],[15,19,["H3045"]],[19,21,["H1870"]],[21,22,["H2098"]],[22,25,["H1980"]],[25,26,["H3588"]],[26,29,["H5375"]],[29,31,["H5315"]],[31,32,["H413"]],[32,33,[]]]},{"k":16302,"v":[[0,1,["H5337"]],[1,4,["H3068"]],[4,7,["H4480","H341"]],[7,14,["H3680","H413"]]]},{"k":16303,"v":[[0,1,["H3925"]],[1,4,["H6213"]],[4,6,["H7522"]],[6,7,["H3588"]],[7,8,["H859"]],[8,11,["H430"]],[11,13,["H7307"]],[13,15,["H2896"]],[15,16,["H5148"]],[16,20,["H776"]],[20,22,["H4334"]]]},{"k":16304,"v":[[0,1,["H2421"]],[1,4,["H3068"]],[4,8,["H4616","H8034"]],[8,11,["H6666"]],[11,16,["H3318","H5315"]],[16,18,["H4480","H6869"]]]},{"k":16305,"v":[[0,4,["H2617"]],[4,6,["H6789"]],[6,8,["H341"]],[8,10,["H6"]],[10,11,["H3605"]],[11,14,["H6887"]],[14,16,["H5315"]],[16,17,["H3588"]],[17,18,["H589"]],[18,21,["H5650"]]]},{"k":16306,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,6,["H6697"]],[6,8,["H3925"]],[8,10,["H3027"]],[10,12,["H7128"]],[12,15,["H676"]],[15,17,["H4421"]]]},{"k":16307,"v":[[0,2,["H2617"]],[2,5,["H4686"]],[5,8,["H4869"]],[8,11,["H6403"]],[11,13,["H4043"]],[13,19,["H2620"]],[19,21,["H7286"]],[21,23,["H5971"]],[23,24,["H8478"]],[24,25,[]]]},{"k":16308,"v":[[0,1,["H3068"]],[1,2,["H4100"]],[2,4,["H120"]],[4,8,["H3045"]],[8,13,["H1121"]],[13,15,["H582"]],[15,19,["H2803"]],[19,21,[]]]},{"k":16309,"v":[[0,1,["H120"]],[1,3,["H1819"]],[3,5,["H1892"]],[5,7,["H3117"]],[7,11,["H6738"]],[11,14,["H5674"]]]},{"k":16310,"v":[[0,1,["H5186"]],[1,3,["H8064"]],[3,5,["H3068"]],[5,8,["H3381"]],[8,9,["H5060"]],[9,11,["H2022"]],[11,15,["H6225"]]]},{"k":16311,"v":[[0,2,["H1299"]],[2,3,["H1300"]],[3,5,["H6327"]],[5,8,["H7971"]],[8,10,["H2671"]],[10,12,["H2000"]],[12,13,[]]]},{"k":16312,"v":[[0,1,["H7971"]],[1,3,["H3027"]],[3,5,["H4480","H4791"]],[5,6,["H6475"]],[6,9,["H5337"]],[9,13,["H7227"]],[13,14,["H4480","H4325"]],[14,17,["H4480","H3027"]],[17,19,["H5236"]],[19,20,["H1121"]]]},{"k":16313,"v":[[0,1,["H834"]],[1,2,["H6310"]],[2,3,["H1696"]],[3,4,["H7723"]],[4,8,["H3225"]],[8,12,["H3225"]],[12,14,["H8267"]]]},{"k":16314,"v":[[0,3,["H7891"]],[3,5,["H2319"]],[5,6,["H7892"]],[6,10,["H430"]],[10,13,["H5035"]],[13,19,["H6218"]],[19,23,["H2167"]],[23,25,[]]]},{"k":16315,"v":[[0,5,["H5414"]],[5,6,["H8668"]],[6,8,["H4428"]],[8,10,["H6475","(H853)"]],[10,11,["H1732"]],[11,13,["H5650"]],[13,16,["H7451"]],[16,17,["H4480","H2719"]]]},{"k":16316,"v":[[0,1,["H6475"]],[1,4,["H5337"]],[4,8,["H4480","H3027"]],[8,10,["H5236"]],[10,11,["H1121"]],[11,12,["H834"]],[12,13,["H6310"]],[13,14,["H1696"]],[14,15,["H7723"]],[15,19,["H3225"]],[19,23,["H3225"]],[23,25,["H8267"]]]},{"k":16317,"v":[[0,1,["H834"]],[1,3,["H1121"]],[3,7,["H5195"]],[7,9,["H1431"]],[9,12,["H5271"]],[12,15,["H1323"]],[15,20,["H2106"]],[20,21,["H2404"]],[21,24,["H8403"]],[24,27,["H1964"]]]},{"k":16318,"v":[[0,3,["H4200"]],[3,6,["H4392"]],[6,7,["H6329"]],[7,11,["H4480","H2177","H413","H2177"]],[11,14,["H6629"]],[14,18,["H503"]],[18,21,["H7231"]],[21,24,["H2351"]]]},{"k":16319,"v":[[0,3,["H441"]],[3,8,["H5445"]],[8,12,["H369"]],[12,14,["H6556"]],[14,15,["H369"]],[15,17,["H3318"]],[17,21,["H369"]],[21,22,["H6682"]],[22,25,["H7339"]]]},{"k":16320,"v":[[0,1,["H835"]],[1,4,["H5971"]],[4,10,["H7945","H3602"]],[10,12,["H835"]],[12,15,["H5971"]],[15,17,["H430"]],[17,20,["H7945","H3068"]]]},{"k":16321,"v":[[0,3,["H7311"]],[3,6,["H430"]],[6,8,["H4428"]],[8,12,["H1288"]],[12,14,["H8034"]],[14,16,["H5769"]],[16,18,["H5703"]]]},{"k":16322,"v":[[0,1,["H3605"]],[1,2,["H3117"]],[2,5,["H1288"]],[5,10,["H1984"]],[10,12,["H8034"]],[12,14,["H5769"]],[14,16,["H5703"]]]},{"k":16323,"v":[[0,1,["H1419"]],[1,4,["H3068"]],[4,6,["H3966"]],[6,9,["H1984"]],[9,12,["H1420"]],[12,14,["H369","H2714"]]]},{"k":16324,"v":[[0,2,["H1755"]],[2,4,["H7623"]],[4,6,["H4639"]],[6,8,["H1755"]],[8,11,["H5046"]],[11,14,["H1369"]]]},{"k":16325,"v":[[0,3,["H7878"]],[3,6,["H3519"]],[6,7,["H1926"]],[7,10,["H1935"]],[10,14,["H6381"]],[14,15,["H1697"]]]},{"k":16326,"v":[[0,4,["H559"]],[4,7,["H5807"]],[7,11,["H3372"]],[11,15,["H5608"]],[15,17,["H1420"]]]},{"k":16327,"v":[[0,4,["H5042"]],[4,6,["H2143"]],[6,9,["H7227"]],[9,10,["H2898"]],[10,13,["H7442"]],[13,16,["H6666"]]]},{"k":16328,"v":[[0,2,["H3068"]],[2,4,["H2587"]],[4,8,["H7349"]],[8,9,["H750"]],[9,11,["H639"]],[11,14,["H1419"]],[14,15,["H2617"]]]},{"k":16329,"v":[[0,2,["H3068"]],[2,4,["H2896"]],[4,6,["H3605"]],[6,10,["H7356"]],[10,12,["H5921"]],[12,13,["H3605"]],[13,15,["H4639"]]]},{"k":16330,"v":[[0,1,["H3605"]],[1,3,["H4639"]],[3,5,["H3034"]],[5,8,["H3068"]],[8,11,["H2623"]],[11,13,["H1288"]],[13,14,[]]]},{"k":16331,"v":[[0,3,["H559"]],[3,6,["H3519"]],[6,9,["H4438"]],[9,11,["H1696"]],[11,14,["H1369"]]]},{"k":16332,"v":[[0,3,["H3045"]],[3,6,["H1121"]],[6,8,["H120"]],[8,11,["H1369"]],[11,14,["H3519"]],[14,15,["H1926"]],[15,18,["H4438"]]]},{"k":16333,"v":[[0,2,["H4438"]],[2,5,["H3605","H5769"]],[5,6,["H4438"]],[6,9,["H4475"]],[9,12,["H3605"]],[12,13,["H1755","H1755"]]]},{"k":16334,"v":[[0,2,["H3068"]],[2,3,["H5564"]],[3,4,["H3605"]],[4,6,["H5307"]],[6,9,["H2210"]],[9,10,["H3605"]],[10,15,["H3721"]]]},{"k":16335,"v":[[0,2,["H5869"]],[2,4,["H3605"]],[4,5,["H7663"]],[5,6,["H413"]],[6,9,["H859"]],[9,10,["H5414"]],[10,11,["(H853)"]],[11,13,["H400"]],[13,16,["H6256"]]]},{"k":16336,"v":[[0,2,["H6605","(H853)"]],[2,4,["H3027"]],[4,6,["H7646"]],[6,8,["H7522"]],[8,10,["H3605"]],[10,12,["H2416"]]]},{"k":16337,"v":[[0,2,["H3068"]],[2,4,["H6662"]],[4,6,["H3605"]],[6,8,["H1870"]],[8,10,["H2623"]],[10,12,["H3605"]],[12,14,["H4639"]]]},{"k":16338,"v":[[0,2,["H3068"]],[2,4,["H7138"]],[4,6,["H3605"]],[6,9,["H7121"]],[9,13,["H3605"]],[13,14,["H834"]],[14,15,["H7121"]],[15,19,["H571"]]]},{"k":16339,"v":[[0,3,["H6213"]],[3,5,["H7522"]],[5,9,["H3373"]],[9,14,["H8085"]],[14,16,["H7775"]],[16,19,["H3467"]],[19,20,[]]]},{"k":16340,"v":[[0,2,["H3068"]],[2,3,["H8104","(H853)"]],[3,4,["H3605"]],[4,7,["H157"]],[7,10,["H3605"]],[10,12,["H7563"]],[12,15,["H8045"]]]},{"k":16341,"v":[[0,2,["H6310"]],[2,4,["H1696"]],[4,6,["H8416"]],[6,9,["H3068"]],[9,12,["H3605"]],[12,13,["H1320"]],[13,14,["H1288"]],[14,16,["H6944"]],[16,17,["H8034"]],[17,19,["H5769"]],[19,21,["H5703"]]]},{"k":16342,"v":[[0,1,["H1984"]],[1,4,["H3050"]],[4,5,["H1984","(H853)"]],[5,7,["H3068"]],[7,10,["H5315"]]]},{"k":16343,"v":[[0,3,["H2416"]],[3,6,["H1984"]],[6,8,["H3068"]],[8,12,["H2167"]],[12,15,["H430"]],[15,20,["H5750"]]]},{"k":16344,"v":[[0,2,["H408"]],[2,4,["H982"]],[4,6,["H5081"]],[6,10,["H1121"]],[10,12,["H120"]],[12,17,["H7945","H369"]],[17,18,["H8668"]]]},{"k":16345,"v":[[0,2,["H7307"]],[2,4,["H3318"]],[4,6,["H7725"]],[6,9,["H127"]],[9,12,["H1931"]],[12,13,["H3117"]],[13,15,["H6250"]],[15,16,["H6"]]]},{"k":16346,"v":[[0,1,["H835"]],[1,7,["H7945","H410"]],[7,9,["H3290"]],[9,12,["H5828"]],[12,14,["H7664"]],[14,16,["H5921"]],[16,18,["H3068"]],[18,20,["H430"]]]},{"k":16347,"v":[[0,2,["H6213"]],[2,3,["H8064"]],[3,5,["H776","(H853)"]],[5,7,["H3220"]],[7,9,["H3605"]],[9,10,["H834"]],[10,14,["H8104"]],[14,15,["H571"]],[15,17,["H5769"]]]},{"k":16348,"v":[[0,2,["H6213"]],[2,3,["H4941"]],[3,6,["H6231"]],[6,8,["H5414"]],[8,9,["H3899"]],[9,12,["H7457"]],[12,14,["H3068"]],[14,15,["H5425"]],[15,17,["H631"]]]},{"k":16349,"v":[[0,2,["H3068"]],[2,3,["H6491"]],[3,8,["H5787"]],[8,10,["H3068"]],[10,11,["H2210"]],[11,16,["H3721"]],[16,18,["H3068"]],[18,19,["H157"]],[19,21,["H6662"]]]},{"k":16350,"v":[[0,2,["H3068"]],[2,3,["H8104","(H853)"]],[3,5,["H1616"]],[5,7,["H5749"]],[7,9,["H3490"]],[9,11,["H490"]],[11,14,["H1870"]],[14,17,["H7563"]],[17,21,["H5791"]]]},{"k":16351,"v":[[0,2,["H3068"]],[2,4,["H4427"]],[4,6,["H5769"]],[6,9,["H430"]],[9,11,["H6726"]],[11,14,["H1755","H1755"]],[14,15,["H1984"]],[15,18,["H3050"]]]},{"k":16352,"v":[[0,1,["H1984"]],[1,4,["H3050"]],[4,5,["H3588"]],[5,8,["H2896"]],[8,11,["H2167"]],[11,14,["H430"]],[14,15,["H3588"]],[15,18,["H5273"]],[18,20,["H8416"]],[20,22,["H5000"]]]},{"k":16353,"v":[[0,2,["H3068"]],[2,5,["H1129"]],[5,6,["H3389"]],[6,9,["H3664"]],[9,11,["H1760"]],[11,13,["H3478"]]]},{"k":16354,"v":[[0,2,["H7495"]],[2,4,["H7665"]],[4,6,["H3820"]],[6,9,["H2280"]],[9,11,["H6094"]]]},{"k":16355,"v":[[0,2,["H4487"]],[2,4,["H4557"]],[4,7,["H3556"]],[7,9,["H7121"]],[9,11,["H3605"]],[11,14,["H8034"]]]},{"k":16356,"v":[[0,1,["H1419"]],[1,4,["H113"]],[4,7,["H7227"]],[7,8,["H3581"]],[8,10,["H8394"]],[10,12,["H369","H4557"]]]},{"k":16357,"v":[[0,2,["H3068"]],[2,4,["H5749"]],[4,6,["H6035"]],[6,11,["H8213","H7563"]],[11,12,["H5704"]],[12,14,["H776"]]]},{"k":16358,"v":[[0,1,["H6030"]],[1,4,["H3068"]],[4,6,["H8426"]],[6,8,["H2167"]],[8,11,["H3658"]],[11,14,["H430"]]]},{"k":16359,"v":[[0,2,["H3680"]],[2,4,["H8064"]],[4,6,["H5645"]],[6,8,["H3559"]],[8,9,["H4306"]],[9,12,["H776"]],[12,15,["H2682"]],[15,17,["H6779"]],[17,20,["H2022"]]]},{"k":16360,"v":[[0,2,["H5414"]],[2,5,["H929"]],[5,7,["H3899"]],[7,11,["H1121"]],[11,12,["H6158"]],[12,13,["H834"]],[13,14,["H7121"]]]},{"k":16361,"v":[[0,2,["H2654"]],[2,3,["H3808"]],[3,6,["H1369"]],[6,9,["H5483"]],[9,13,["H3808","H7521"]],[13,16,["H7785"]],[16,19,["H376"]]]},{"k":16362,"v":[[0,2,["H3068"]],[2,5,["H7521","(H853)"]],[5,8,["H3373"]],[8,10,["(H853)"]],[10,13,["H3176"]],[13,16,["H2617"]]]},{"k":16363,"v":[[0,1,["H7623","(H853)"]],[1,3,["H3068"]],[3,5,["H3389"]],[5,6,["H1984"]],[6,8,["H430"]],[8,10,["H6726"]]]},{"k":16364,"v":[[0,1,["H3588"]],[1,4,["H2388"]],[4,6,["H1280"]],[6,9,["H8179"]],[9,12,["H1288"]],[12,14,["H1121"]],[14,15,["H7130"]],[15,16,[]]]},{"k":16365,"v":[[0,2,["H7760"]],[2,3,["H7965"]],[3,6,["H1366"]],[6,8,["H7646"]],[8,12,["H2459"]],[12,15,["H2406"]]]},{"k":16366,"v":[[0,3,["H7971"]],[3,5,["H565"]],[5,7,["H776"]],[7,9,["H1697"]],[9,10,["H7323"]],[10,11,["H5704"]],[11,12,["H4120"]]]},{"k":16367,"v":[[0,2,["H5414"]],[2,3,["H7950"]],[3,5,["H6785"]],[5,7,["H6340"]],[7,9,["H3713"]],[9,11,["H665"]]]},{"k":16368,"v":[[0,3,["H7993"]],[3,5,["H7140"]],[5,7,["H6595"]],[7,8,["H4310"]],[8,10,["H5975"]],[10,11,["H6440"]],[11,13,["H7135"]]]},{"k":16369,"v":[[0,3,["H7971"]],[3,5,["H1697"]],[5,7,["H4529"]],[7,12,["H7307"]],[12,14,["H5380"]],[14,17,["H4325"]],[17,18,["H5140"]]]},{"k":16370,"v":[[0,2,["H5046"]],[2,4,["H1697"]],[4,6,["H3290"]],[6,8,["H2706"]],[8,11,["H4941"]],[11,13,["H3478"]]]},{"k":16371,"v":[[0,3,["H3808"]],[3,4,["H6213"]],[4,5,["H3651"]],[5,7,["H3605"]],[7,8,["H1471"]],[8,13,["H4941"]],[13,16,["H1077"]],[16,17,["H3045"]],[17,19,["H1984"]],[19,22,["H3050"]]]},{"k":16372,"v":[[0,1,["H1984"]],[1,4,["H3050"]],[4,5,["H1984"]],[5,6,["(H853)"]],[6,8,["H3068"]],[8,9,["H4480"]],[9,11,["H8064"]],[11,12,["H1984"]],[12,16,["H4791"]]]},{"k":16373,"v":[[0,1,["H1984"]],[1,4,["H3605"]],[4,6,["H4397"]],[6,7,["H1984"]],[7,10,["H3605"]],[10,12,["H6635"]]]},{"k":16374,"v":[[0,1,["H1984"]],[1,4,["H8121"]],[4,6,["H3394"]],[6,7,["H1984"]],[7,9,["H3605"]],[9,11,["H3556"]],[11,13,["H216"]]]},{"k":16375,"v":[[0,1,["H1984"]],[1,4,["H8064"]],[4,6,["H8064"]],[6,9,["H4325"]],[9,10,["H834"]],[10,12,["H4480","H5921"]],[12,14,["H8064"]]]},{"k":16376,"v":[[0,3,["H1984","(H853)"]],[3,5,["H8034"]],[5,8,["H3068"]],[8,9,["H3588"]],[9,10,["H1931"]],[10,11,["H6680"]],[11,15,["H1254"]]]},{"k":16377,"v":[[0,4,["H5975"]],[4,7,["H5703"]],[7,9,["H5769"]],[9,12,["H5414"]],[12,14,["H2706"]],[14,17,["H3808"]],[17,18,["H5674"]]]},{"k":16378,"v":[[0,1,["H1984","(H853)"]],[1,3,["H3068"]],[3,4,["H4480"]],[4,6,["H776"]],[6,8,["H8577"]],[8,10,["H3605"]],[10,11,["H8415"]]]},{"k":16379,"v":[[0,1,["H784"]],[1,3,["H1259"]],[3,4,["H7950"]],[4,6,["H7008"]],[6,7,["H5591"]],[7,8,["H7307"]],[8,9,["H6213"]],[9,11,["H1697"]]]},{"k":16380,"v":[[0,1,["H2022"]],[1,3,["H3605"]],[3,4,["H1389"]],[4,5,["H6529"]],[5,6,["H6086"]],[6,8,["H3605"]],[8,9,["H730"]]]},{"k":16381,"v":[[0,1,["H2416"]],[1,3,["H3605"]],[3,4,["H929"]],[4,6,["H7431"]],[6,8,["H3671"]],[8,9,["H6833"]]]},{"k":16382,"v":[[0,1,["H4428"]],[1,4,["H776"]],[4,6,["H3605"]],[6,7,["H3816"]],[7,8,["H8269"]],[8,10,["H3605"]],[10,11,["H8199"]],[11,14,["H776"]]]},{"k":16383,"v":[[0,3,["H970"]],[3,4,["H1571"]],[4,5,["H1330"]],[5,7,["H2205"]],[7,8,["H5973"]],[8,9,["H5288"]]]},{"k":16384,"v":[[0,3,["H1984","(H853)"]],[3,5,["H8034"]],[5,8,["H3068"]],[8,9,["H3588"]],[9,11,["H8034"]],[11,12,["H905"]],[12,14,["H7682"]],[14,16,["H1935"]],[16,18,["H5921"]],[18,20,["H776"]],[20,22,["H8064"]]]},{"k":16385,"v":[[0,3,["H7311"]],[3,5,["H7161"]],[5,8,["H5971"]],[8,10,["H8416"]],[10,12,["H3605"]],[12,14,["H2623"]],[14,18,["H1121"]],[18,20,["H3478"]],[20,22,["H5971"]],[22,23,["H7138"]],[23,26,["H1984"]],[26,29,["H3050"]]]},{"k":16386,"v":[[0,1,["H1984"]],[1,4,["H3050"]],[4,5,["H7891"]],[5,8,["H3068"]],[8,10,["H2319"]],[10,11,["H7892"]],[11,14,["H8416"]],[14,17,["H6951"]],[17,19,["H2623"]]]},{"k":16387,"v":[[0,2,["H3478"]],[2,3,["H8055"]],[3,7,["H6213"]],[7,11,["H1121"]],[11,13,["H6726"]],[13,15,["H1523"]],[15,18,["H4428"]]]},{"k":16388,"v":[[0,3,["H1984"]],[3,5,["H8034"]],[5,8,["H4234"]],[8,12,["H2167"]],[12,17,["H8596"]],[17,19,["H3658"]]]},{"k":16389,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H7521"]],[5,8,["H5971"]],[8,11,["H6286"]],[11,13,["H6035"]],[13,15,["H3444"]]]},{"k":16390,"v":[[0,3,["H2623"]],[3,5,["H5937"]],[5,7,["H3519"]],[7,11,["H7442"]],[11,12,["H5921"]],[12,14,["H4904"]]]},{"k":16391,"v":[[0,3,["H7319"]],[3,6,["H410"]],[6,10,["H1627"]],[10,13,["H6374"]],[13,14,["H2719"]],[14,17,["H3027"]]]},{"k":16392,"v":[[0,2,["H6213"]],[2,3,["H5360"]],[3,6,["H1471"]],[6,8,["H8433"]],[8,11,["H3816"]]]},{"k":16393,"v":[[0,2,["H631"]],[2,4,["H4428"]],[4,6,["H2131"]],[6,9,["H3513"]],[9,11,["H3525"]],[11,13,["H1270"]]]},{"k":16394,"v":[[0,2,["H6213"]],[2,6,["H4941"]],[6,7,["H3789"]],[7,8,["H1931"]],[8,9,["H1926"]],[9,11,["H3605"]],[11,13,["H2623"]],[13,14,["H1984"]],[14,17,["H3050"]]]},{"k":16395,"v":[[0,1,["H1984"]],[1,4,["H3050"]],[4,5,["H1984"]],[5,6,["H410"]],[6,9,["H6944"]],[9,10,["H1984"]],[10,14,["H7549"]],[14,17,["H5797"]]]},{"k":16396,"v":[[0,1,["H1984"]],[1,6,["H1369"]],[6,7,["H1984"]],[7,12,["H7230"]],[12,13,["H1433"]]]},{"k":16397,"v":[[0,1,["H1984"]],[1,5,["H8629"]],[5,8,["H7782"]],[8,9,["H1984"]],[9,13,["H5035"]],[13,15,["H3658"]]]},{"k":16398,"v":[[0,1,["H1984"]],[1,5,["H8596"]],[5,7,["H4234"]],[7,8,["H1984"]],[8,12,["H4482"]],[12,14,["H5748"]]]},{"k":16399,"v":[[0,1,["H1984"]],[1,5,["H8088"]],[5,6,["H6767"]],[6,7,["H1984"]],[7,12,["H8643"]],[12,13,["H6767"]]]},{"k":16400,"v":[[0,2,["H3605"]],[2,6,["H5397"]],[6,7,["H1984"]],[7,9,["H3050"]],[9,10,["H1984"]],[10,13,["H3050"]]]},{"k":16401,"v":[[0,2,["H4912"]],[2,4,["H8010"]],[4,6,["H1121"]],[6,8,["H1732"]],[8,9,["H4428"]],[9,11,["H3478"]]]},{"k":16402,"v":[[0,2,["H3045"]],[2,3,["H2451"]],[3,5,["H4148"]],[5,7,["H995"]],[7,9,["H561"]],[9,11,["H998"]]]},{"k":16403,"v":[[0,2,["H3947"]],[2,4,["H4148"]],[4,6,["H7919"]],[6,7,["H6664"]],[7,9,["H4941"]],[9,11,["H4339"]]]},{"k":16404,"v":[[0,2,["H5414"]],[2,3,["H6195"]],[3,6,["H6612"]],[6,10,["H5288"]],[10,11,["H1847"]],[11,13,["H4209"]]]},{"k":16405,"v":[[0,2,["H2450"]],[2,5,["H8085"]],[5,8,["H3254"]],[8,9,["H3948"]],[9,14,["H995"]],[14,16,["H7069"]],[16,19,["H8458"]]]},{"k":16406,"v":[[0,2,["H995"]],[2,4,["H4912"]],[4,7,["H4426"]],[7,9,["H1697"]],[9,12,["H2450"]],[12,16,["H2420"]]]},{"k":16407,"v":[[0,2,["H3374"]],[2,5,["H3068"]],[5,8,["H7225"]],[8,10,["H1847"]],[10,12,["H191"]],[12,13,["H936"]],[13,14,["H2451"]],[14,16,["H4148"]]]},{"k":16408,"v":[[0,2,["H1121"]],[2,3,["H8085"]],[3,5,["H4148"]],[5,8,["H1"]],[8,10,["H5203"]],[10,11,["H408"]],[11,13,["H8451"]],[13,16,["H517"]]]},{"k":16409,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,6,["H3880"]],[6,8,["H2580"]],[8,11,["H7218"]],[11,13,["H6060"]],[13,16,["H1621"]]]},{"k":16410,"v":[[0,2,["H1121"]],[2,3,["H518"]],[3,4,["H2400"]],[4,5,["H6601"]],[5,7,["H14"]],[7,9,["H408"]]]},{"k":16411,"v":[[0,1,["H518"]],[1,3,["H559"]],[3,4,["H1980"]],[4,5,["H854"]],[5,10,["H693"]],[10,12,["H1818"]],[12,16,["H6845"]],[16,19,["H5355"]],[19,21,["H2600"]]]},{"k":16412,"v":[[0,5,["H1104"]],[5,6,["H2416"]],[6,9,["H7585"]],[9,11,["H8549"]],[11,16,["H3381"]],[16,19,["H953"]]]},{"k":16413,"v":[[0,3,["H4672"]],[3,4,["H3605"]],[4,5,["H3368"]],[5,6,["H1952"]],[6,9,["H4390"]],[9,11,["H1004"]],[11,13,["H7998"]]]},{"k":16414,"v":[[0,2,["H5307"]],[2,4,["H1486"]],[4,5,["H8432"]],[5,9,["H3605"]],[9,10,["H1961"]],[10,11,["H259"]],[11,12,["H3599"]]]},{"k":16415,"v":[[0,2,["H1121"]],[2,3,["H1980"]],[3,4,["H408"]],[4,8,["H1870"]],[8,9,["H854"]],[9,11,["H4513"]],[11,13,["H7272"]],[13,16,["H4480","H5410"]]]},{"k":16416,"v":[[0,1,["H3588"]],[1,3,["H7272"]],[3,4,["H7323"]],[4,6,["H7451"]],[6,9,["H4116"]],[9,11,["H8210"]],[11,12,["H1818"]]]},{"k":16417,"v":[[0,1,["H3588"]],[1,3,["H2600"]],[3,5,["H7568"]],[5,7,["H2219"]],[7,10,["H5869"]],[10,12,["H3605"]],[12,13,["H1167","H3671"]]]},{"k":16418,"v":[[0,2,["H1992"]],[2,4,["H693"]],[4,8,["H1818"]],[8,11,["H6845"]],[11,15,["H5315"]]]},{"k":16419,"v":[[0,1,["H3651"]],[1,4,["H734"]],[4,7,["H3605"]],[7,10,["H1214"]],[10,12,["H1215"]],[12,15,["H3947","(H853)"]],[15,17,["H5315"]],[17,20,["H1167"]],[20,21,[]]]},{"k":16420,"v":[[0,1,["H2454"]],[1,2,["H7442"]],[2,3,["H2351"]],[3,5,["H5414"]],[5,7,["H6963"]],[7,10,["H7339"]]]},{"k":16421,"v":[[0,2,["H7121"]],[2,5,["H7218"]],[5,8,["H1993"]],[8,11,["H6607"]],[11,14,["H8179"]],[14,17,["H5892"]],[17,19,["H559"]],[19,21,["H561"]],[21,22,[]]]},{"k":16422,"v":[[0,2,["H5704","H4970"]],[2,5,["H6612"]],[5,8,["H157"]],[8,9,["H6612"]],[9,12,["H3887"]],[12,13,["H2530"]],[13,16,["H3944"]],[16,18,["H3684"]],[18,19,["H8130"]],[19,20,["H1847"]]]},{"k":16423,"v":[[0,1,["H7725"]],[1,5,["H8433"]],[5,6,["H2009"]],[6,10,["H5042"]],[10,12,["H7307"]],[12,18,["H3045"]],[18,20,["H1697"]],[20,22,[]]]},{"k":16424,"v":[[0,1,["H3282"]],[1,4,["H7121"]],[4,7,["H3985"]],[7,11,["H5186"]],[11,13,["H3027"]],[13,16,["H369"]],[16,17,["H7181"]]]},{"k":16425,"v":[[0,6,["H6544"]],[6,7,["H3605"]],[7,9,["H6098"]],[9,11,["H14"]],[11,12,["H3808"]],[12,15,["H8433"]]]},{"k":16426,"v":[[0,1,["H589"]],[1,2,["H1571"]],[2,4,["H7832"]],[4,7,["H343"]],[7,10,["H3932"]],[10,13,["H6343"]],[13,14,["H935"]]]},{"k":16427,"v":[[0,3,["H6343"]],[3,4,["H935"]],[4,6,["H7584"]],[6,9,["H343"]],[9,10,["H857"]],[10,13,["H5492"]],[13,15,["H6869"]],[15,17,["H6695"]],[17,18,["H935"]],[18,19,["H5921"]],[19,20,[]]]},{"k":16428,"v":[[0,1,["H227"]],[1,5,["H7121"]],[5,10,["H3808"]],[10,11,["H6030"]],[11,16,["H7836"]],[16,20,["H3808"]],[20,21,["H4672"]],[21,22,[]]]},{"k":16429,"v":[[0,2,["H8478","H3588"]],[2,4,["H8130"]],[4,5,["H1847"]],[5,8,["H3808"]],[8,9,["H977"]],[9,11,["H3374"]],[11,14,["H3068"]]]},{"k":16430,"v":[[0,2,["H14"]],[2,3,["H3808"]],[3,6,["H6098"]],[6,8,["H5006"]],[8,9,["H3605"]],[9,11,["H8433"]]]},{"k":16431,"v":[[0,4,["H398"]],[4,7,["H4480","H6529"]],[7,11,["H1870"]],[11,14,["H7646"]],[14,18,["H4480","H4156"]]]},{"k":16432,"v":[[0,1,["H3588"]],[1,4,["H4878"]],[4,7,["H6612"]],[7,9,["H2026"]],[9,13,["H7962"]],[13,15,["H3684"]],[15,17,["H6"]],[17,18,[]]]},{"k":16433,"v":[[0,3,["H8085"]],[3,7,["H7931"]],[7,8,["H983"]],[8,12,["H7599"]],[12,14,["H4480","H6343"]],[14,16,["H7451"]]]},{"k":16434,"v":[[0,2,["H1121"]],[2,3,["H518"]],[3,6,["H3947"]],[6,8,["H561"]],[8,10,["H6845"]],[10,12,["H4687"]],[12,13,["H854"]],[13,14,[]]]},{"k":16435,"v":[[0,4,["H7181"]],[4,6,["H241"]],[6,8,["H2451"]],[8,10,["H5186"]],[10,12,["H3820"]],[12,14,["H8394"]]]},{"k":16436,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,4,["H7121"]],[4,6,["H998"]],[6,9,["H5414"]],[9,11,["H6963"]],[11,13,["H8394"]]]},{"k":16437,"v":[[0,1,["H518"]],[1,3,["H1245"]],[3,6,["H3701"]],[6,8,["H2664"]],[8,14,["H4301"]]]},{"k":16438,"v":[[0,1,["H227"]],[1,4,["H995"]],[4,6,["H3374"]],[6,9,["H3068"]],[9,11,["H4672"]],[11,13,["H1847"]],[13,15,["H430"]]]},{"k":16439,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,4,["H5414"]],[4,5,["H2451"]],[5,9,["H4480","H6310"]],[9,11,["H1847"]],[11,13,["H8394"]]]},{"k":16440,"v":[[0,3,["H6845"]],[3,5,["H8454"]],[5,8,["H3477"]],[8,12,["H4043"]],[12,16,["H1980"]],[16,17,["H8537"]]]},{"k":16441,"v":[[0,2,["H5341"]],[2,4,["H734"]],[4,6,["H4941"]],[6,8,["H8104"]],[8,10,["H1870"]],[10,13,["H2623"]]]},{"k":16442,"v":[[0,1,["H227"]],[1,4,["H995"]],[4,5,["H6664"]],[5,7,["H4941"]],[7,9,["H4339"]],[9,11,["H3605"]],[11,12,["H2896"]],[12,13,["H4570"]]]},{"k":16443,"v":[[0,1,["H3588"]],[1,2,["H2451"]],[2,3,["H935"]],[3,6,["H3820"]],[6,8,["H1847"]],[8,10,["H5276"]],[10,13,["H5315"]]]},{"k":16444,"v":[[0,1,["H4209"]],[1,3,["H8104","H5921"]],[3,5,["H8394"]],[5,7,["H5341"]],[7,8,[]]]},{"k":16445,"v":[[0,2,["H5337"]],[2,6,["H4480","H1870"]],[6,9,["H7451"]],[9,13,["H4480","H376"]],[13,15,["H1696"]],[15,17,["H8419"]]]},{"k":16446,"v":[[0,2,["H5800"]],[2,4,["H734"]],[4,6,["H3476"]],[6,8,["H1980"]],[8,11,["H1870"]],[11,13,["H2822"]]]},{"k":16447,"v":[[0,2,["H8056"]],[2,4,["H6213"]],[4,5,["H7451"]],[5,8,["H1523"]],[8,10,["H8419"]],[10,13,["H7451"]]]},{"k":16448,"v":[[0,1,["H834"]],[1,2,["H734"]],[2,4,["H6141"]],[4,7,["H3868"]],[7,10,["H4570"]]]},{"k":16449,"v":[[0,2,["H5337"]],[2,7,["H4480","H802","H2114"]],[7,11,["H4480","H5237"]],[11,13,["H2505"]],[13,16,["H561"]]]},{"k":16450,"v":[[0,2,["H5800"]],[2,4,["H441"]],[4,7,["H5271"]],[7,9,["H7911"]],[9,11,["H1285"]],[11,14,["H430"]]]},{"k":16451,"v":[[0,1,["H3588"]],[1,3,["H1004"]],[3,4,["H7743"]],[4,5,["H413"]],[5,6,["H4194"]],[6,9,["H4570"]],[9,10,["H413"]],[10,12,["H7496"]]]},{"k":16452,"v":[[0,1,["H3808","H3605"]],[1,4,["H935"]],[4,7,["H7725"]],[7,8,["H3808"]],[8,11,["H5381"]],[11,14,["H734"]],[14,16,["H2416"]]]},{"k":16453,"v":[[0,1,["H4616"]],[1,4,["H1980"]],[4,7,["H1870"]],[7,9,["H2896"]],[9,12,["H8104"]],[12,14,["H734"]],[14,17,["H6662"]]]},{"k":16454,"v":[[0,1,["H3588"]],[1,3,["H3477"]],[3,6,["H7931"]],[6,8,["H776"]],[8,11,["H8549"]],[11,13,["H3498"]],[13,15,[]]]},{"k":16455,"v":[[0,3,["H7563"]],[3,7,["H3772"]],[7,10,["H4480","H776"]],[10,13,["H898"]],[13,16,["H5255"]],[16,18,["H4480"]],[18,19,[]]]},{"k":16456,"v":[[0,2,["H1121"]],[2,3,["H7911"]],[3,4,["H408"]],[4,6,["H8451"]],[6,10,["H3820"]],[10,11,["H5341"]],[11,13,["H4687"]]]},{"k":16457,"v":[[0,1,["H3588"]],[1,2,["H753"]],[2,4,["H3117"]],[4,6,["H8141"]],[6,7,["H2416"]],[7,9,["H7965"]],[9,12,["H3254"]],[12,14,[]]]},{"k":16458,"v":[[0,2,["H408"]],[2,3,["H2617"]],[3,5,["H571"]],[5,6,["H5800"]],[6,8,["H7194"]],[8,10,["H5921"]],[10,12,["H1621"]],[12,13,["H3789"]],[13,15,["H5921"]],[15,17,["H3871"]],[17,20,["H3820"]]]},{"k":16459,"v":[[0,4,["H4672"]],[4,5,["H2580"]],[5,7,["H2896"]],[7,8,["H7922"]],[8,11,["H5869"]],[11,13,["H430"]],[13,15,["H120"]]]},{"k":16460,"v":[[0,1,["H982"]],[1,2,["H413"]],[2,4,["H3068"]],[4,6,["H3605"]],[6,8,["H3820"]],[8,10,["H8172"]],[10,11,["H408"]],[11,12,["H413"]],[12,15,["H998"]]]},{"k":16461,"v":[[0,2,["H3605"]],[2,4,["H1870"]],[4,5,["H3045"]],[5,8,["H1931"]],[8,10,["H3474"]],[10,12,["H734"]]]},{"k":16462,"v":[[0,1,["H1961"]],[1,2,["H408"]],[2,3,["H2450"]],[3,7,["H5869"]],[7,8,["H3372","(H853)"]],[8,10,["H3068"]],[10,12,["H5493"]],[12,14,["H4480","H7451"]]]},{"k":16463,"v":[[0,3,["H1961"]],[3,4,["H7500"]],[4,7,["H8270"]],[7,9,["H8250"]],[9,12,["H6106"]]]},{"k":16464,"v":[[0,1,["H3513","(H853)"]],[1,3,["H3068"]],[3,6,["H4480","H1952"]],[6,10,["H4480","H7225"]],[10,12,["H3605"]],[12,14,["H8393"]]]},{"k":16465,"v":[[0,4,["H618"]],[4,6,["H4390"]],[6,8,["H7647"]],[8,11,["H3342"]],[11,14,["H6555"]],[14,17,["H8492"]]]},{"k":16466,"v":[[0,2,["H1121"]],[2,3,["H3988"]],[3,4,["H408"]],[4,6,["H4148"]],[6,9,["H3068"]],[9,10,["H408"]],[10,12,["H6973"]],[12,15,["H8433"]]]},{"k":16467,"v":[[0,1,["H3588","(H853)"]],[1,2,["H834"]],[2,4,["H3068"]],[4,5,["H157"]],[5,7,["H3198"]],[7,11,["H1","(H853)"]],[11,13,["H1121"]],[13,17,["H7521"]]]},{"k":16468,"v":[[0,1,["H835"]],[1,4,["H120"]],[4,6,["H4672"]],[6,7,["H2451"]],[7,10,["H120"]],[10,12,["H6329"]],[12,13,["H8394"]]]},{"k":16469,"v":[[0,1,["H3588"]],[1,3,["H5504"]],[3,7,["H2896"]],[7,10,["H4480","H5505"]],[10,12,["H3701"]],[12,15,["H8393"]],[15,19,["H4480","H2742"]]]},{"k":16470,"v":[[0,1,["H1931"]],[1,4,["H3368"]],[4,6,["H4480","H6443"]],[6,8,["H3605"]],[8,13,["H2656"]],[13,15,["H3808"]],[15,18,["H7737"]],[18,20,[]]]},{"k":16471,"v":[[0,1,["H753"]],[1,3,["H3117"]],[3,8,["H3225"]],[8,13,["H8040"]],[13,14,["H6239"]],[14,16,["H3519"]]]},{"k":16472,"v":[[0,2,["H1870"]],[2,4,["H1870"]],[4,6,["H5278"]],[6,8,["H3605"]],[8,10,["H5410"]],[10,12,["H7965"]]]},{"k":16473,"v":[[0,1,["H1931"]],[1,4,["H6086"]],[4,6,["H2416"]],[6,11,["H2388"]],[11,15,["H833"]],[15,20,["H8551"]],[20,21,[]]]},{"k":16474,"v":[[0,2,["H3068"]],[2,4,["H2451"]],[4,6,["H3245"]],[6,8,["H776"]],[8,10,["H8394"]],[10,13,["H3559"]],[13,15,["H8064"]]]},{"k":16475,"v":[[0,3,["H1847"]],[3,5,["H8415"]],[5,8,["H1234"]],[8,11,["H7834"]],[11,13,["H7491"]],[13,15,["H2919"]]]},{"k":16476,"v":[[0,2,["H1121"]],[2,4,["H408"]],[4,6,["H3868"]],[6,9,["H4480","H5869"]],[9,10,["H5341"]],[10,12,["H8454"]],[12,14,["H4209"]]]},{"k":16477,"v":[[0,4,["H1961"]],[4,5,["H2416"]],[5,8,["H5315"]],[8,10,["H2580"]],[10,13,["H1621"]]]},{"k":16478,"v":[[0,1,["H227"]],[1,4,["H1980"]],[4,7,["H1870"]],[7,8,["H983"]],[8,11,["H7272"]],[11,13,["H3808"]],[13,14,["H5062"]]]},{"k":16479,"v":[[0,1,["H518"]],[1,4,["H7901"]],[4,7,["H3808"]],[7,9,["H6342"]],[9,14,["H7901"]],[14,17,["H8142"]],[17,20,["H6149"]]]},{"k":16480,"v":[[0,2,["H408"]],[2,3,["H3372"]],[3,5,["H6597"]],[5,6,["H4480","H6343"]],[6,10,["H4480","H7722"]],[10,13,["H7563"]],[13,14,["H3588"]],[14,16,["H935"]]]},{"k":16481,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H1961"]],[5,7,["H3689"]],[7,10,["H8104"]],[10,12,["H7272"]],[12,15,["H4480","H3921"]]]},{"k":16482,"v":[[0,1,["H4513"]],[1,2,["H408"]],[2,3,["H2896"]],[3,10,["H4480","H1167"]],[10,13,["H1961"]],[13,16,["H410"]],[16,19,["H3027"]],[19,21,["H6213"]],[21,22,[]]]},{"k":16483,"v":[[0,1,["H559"]],[1,2,["H408"]],[2,5,["H7453"]],[5,6,["H1980"]],[6,9,["H7725"]],[9,12,["H4279"]],[12,15,["H5414"]],[15,18,["H3426"]],[18,20,["H854"]],[20,21,[]]]},{"k":16484,"v":[[0,1,["H2790"]],[1,2,["H408"]],[2,3,["H7451"]],[3,4,["H5921"]],[4,6,["H7453"]],[6,8,["H1931"]],[8,9,["H3427"]],[9,10,["H983"]],[10,11,["H854"]],[11,12,[]]]},{"k":16485,"v":[[0,1,["H7378"]],[1,2,["H408"]],[2,3,["H5973"]],[3,5,["H120"]],[5,7,["H2600"]],[7,8,["H518"]],[8,11,["H1580"]],[11,13,["H3808"]],[13,14,["H7451"]]]},{"k":16486,"v":[[0,1,["H7065"]],[1,3,["H408"]],[3,5,["H376","H2555"]],[5,7,["H977"]],[7,8,["H408","H3605"]],[8,11,["H1870"]]]},{"k":16487,"v":[[0,1,["H3588"]],[1,3,["H3868"]],[3,5,["H8441"]],[5,8,["H3068"]],[8,11,["H5475"]],[11,13,["H854"]],[13,15,["H3477"]]]},{"k":16488,"v":[[0,2,["H3994"]],[2,5,["H3068"]],[5,9,["H1004"]],[9,12,["H7563"]],[12,15,["H1288"]],[15,17,["H5116"]],[17,20,["H6662"]]]},{"k":16489,"v":[[0,1,["H518"]],[1,2,["H1931"]],[2,3,["H3887"]],[3,5,["H3887"]],[5,8,["H5414"]],[8,9,["H2580"]],[9,12,["H6035"]]]},{"k":16490,"v":[[0,2,["H2450"]],[2,4,["H5157"]],[4,5,["H3519"]],[5,7,["H7036"]],[7,11,["H7311"]],[11,13,["H3684"]]]},{"k":16491,"v":[[0,1,["H8085"]],[1,3,["H1121"]],[3,5,["H4148"]],[5,8,["H1"]],[8,10,["H7181"]],[10,12,["H3045"]],[12,13,["H998"]]]},{"k":16492,"v":[[0,1,["H3588"]],[1,3,["H5414"]],[3,5,["H2896"]],[5,6,["H3948"]],[6,7,["H5800"]],[7,9,["H408"]],[9,11,["H8451"]]]},{"k":16493,"v":[[0,1,["H3588"]],[1,3,["H1961"]],[3,5,["H1"]],[5,6,["H1121"]],[6,7,["H7390"]],[7,9,["H3173"]],[9,13,["H6440"]],[13,16,["H517"]]]},{"k":16494,"v":[[0,2,["H3384"]],[2,6,["H559"]],[6,11,["H3820"]],[11,12,["H8551"]],[12,14,["H1697"]],[14,15,["H8104"]],[15,17,["H4687"]],[17,19,["H2421"]]]},{"k":16495,"v":[[0,1,["H7069"]],[1,2,["H2451"]],[2,3,["H7069"]],[3,4,["H998"]],[4,5,["H7911"]],[5,7,["H408"]],[7,8,["H408"]],[8,9,["H5186"]],[9,12,["H4480","H561"]],[12,15,["H6310"]]]},{"k":16496,"v":[[0,1,["H5800"]],[1,3,["H408"]],[3,7,["H8104"]],[7,9,["H157"]],[9,14,["H5341"]],[14,15,[]]]},{"k":16497,"v":[[0,1,["H2451"]],[1,5,["H7225"]],[5,7,["H7069"]],[7,8,["H2451"]],[8,11,["H3605"]],[11,13,["H7075"]],[13,14,["H7069"]],[14,15,["H998"]]]},{"k":16498,"v":[[0,1,["H5549"]],[1,6,["H7311"]],[6,13,["H3513"]],[13,14,["H3588"]],[14,17,["H2263"]],[17,18,[]]]},{"k":16499,"v":[[0,3,["H5414"]],[3,6,["H7218"]],[6,8,["H3880"]],[8,10,["H2580"]],[10,12,["H5850"]],[12,14,["H8597"]],[14,17,["H4042"]],[17,19,[]]]},{"k":16500,"v":[[0,1,["H8085"]],[1,4,["H1121"]],[4,6,["H3947"]],[6,8,["H561"]],[8,11,["H8141"]],[11,14,["H2416"]],[14,17,["H7235"]]]},{"k":16501,"v":[[0,3,["H3384"]],[3,7,["H1870"]],[7,9,["H2451"]],[9,12,["H1869"]],[12,15,["H3476"]],[15,16,["H4570"]]]},{"k":16502,"v":[[0,3,["H1980"]],[3,5,["H6806"]],[5,7,["H3808"]],[7,9,["H3334"]],[9,11,["H518"]],[11,13,["H7323"]],[13,16,["H3808"]],[16,17,["H3782"]]]},{"k":16503,"v":[[0,3,["H2388"]],[3,5,["H4148"]],[5,8,["H408"]],[8,9,["H7503"]],[9,10,["H5341"]],[10,12,["H3588"]],[12,13,["H1931"]],[13,16,["H2416"]]]},{"k":16504,"v":[[0,1,["H935"]],[1,2,["H408"]],[2,5,["H734"]],[5,8,["H7563"]],[8,10,["H833"]],[10,11,["H408"]],[11,14,["H1870"]],[14,16,["H7451"]],[16,17,[]]]},{"k":16505,"v":[[0,1,["H6544"]],[1,3,["H5674"]],[3,4,["H408"]],[4,7,["H7847"]],[7,8,["H4480","H5921"]],[8,12,["H5674"]]]},{"k":16506,"v":[[0,1,["H3588"]],[1,3,["H3462"]],[3,4,["H3808"]],[4,5,["H518","H3808"]],[5,9,["H7489"]],[9,12,["H8142"]],[12,15,["H1497"]],[15,16,["H518","H3808"]],[16,21,["H3782"]]]},{"k":16507,"v":[[0,1,["H3588"]],[1,3,["H3898"]],[3,5,["H3899"]],[5,7,["H7562"]],[7,9,["H8354"]],[9,11,["H3196"]],[11,13,["H2555"]]]},{"k":16508,"v":[[0,3,["H734"]],[3,6,["H6662"]],[6,10,["H5051"]],[10,11,["H216"]],[11,13,["H215"]],[13,16,["H1980"]],[16,17,["H5704"]],[17,19,["H3559"]],[19,20,["H3117"]]]},{"k":16509,"v":[[0,2,["H1870"]],[2,5,["H7563"]],[5,8,["H653"]],[8,10,["H3045"]],[10,11,["H3808"]],[11,13,["H4100"]],[13,15,["H3782"]]]},{"k":16510,"v":[[0,2,["H1121"]],[2,3,["H7181"]],[3,6,["H1697"]],[6,7,["H5186"]],[7,9,["H241"]],[9,12,["H561"]]]},{"k":16511,"v":[[0,3,["H408"]],[3,4,["H3868"]],[4,7,["H4480","H5869"]],[7,8,["H8104"]],[8,12,["H8432"]],[12,15,["H3824"]]]},{"k":16512,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,4,["H2416"]],[4,8,["H4672"]],[8,11,["H4832"]],[11,13,["H3605"]],[13,15,["H1320"]]]},{"k":16513,"v":[[0,1,["H5341"]],[1,3,["H3820"]],[3,5,["H4480","H3605"]],[5,6,["H4929"]],[6,7,["H3588"]],[7,9,["H4480"]],[9,13,["H8444"]],[13,15,["H2416"]]]},{"k":16514,"v":[[0,2,["H5493"]],[2,3,["H4480"]],[3,6,["H6143"]],[6,7,["H6310"]],[7,9,["H3891"]],[9,10,["H8193"]],[10,12,["H7368"]],[12,13,["H4480"]],[13,14,[]]]},{"k":16515,"v":[[0,3,["H5869"]],[3,4,["H5027"]],[4,6,["H5227"]],[6,10,["H6079"]],[10,12,["H3474"]],[12,13,["H5048"]],[13,14,[]]]},{"k":16516,"v":[[0,1,["H6424"]],[1,3,["H4570"]],[3,6,["H7272"]],[6,9,["H3605"]],[9,11,["H1870"]],[11,13,["H3559"]]]},{"k":16517,"v":[[0,1,["H5186"]],[1,2,["H408"]],[2,6,["H3225"]],[6,10,["H8040"]],[10,11,["H5493"]],[11,13,["H7272"]],[13,15,["H4480","H7451"]]]},{"k":16518,"v":[[0,2,["H1121"]],[2,3,["H7181"]],[3,6,["H2451"]],[6,8,["H5186"]],[8,10,["H241"]],[10,13,["H8394"]]]},{"k":16519,"v":[[0,4,["H8104"]],[4,5,["H4209"]],[5,9,["H8193"]],[9,11,["H5341"]],[11,12,["H1847"]]]},{"k":16520,"v":[[0,1,["H3588"]],[1,3,["H8193"]],[3,7,["H2114"]],[7,8,["H5197"]],[8,11,["H5317"]],[11,14,["H2441"]],[14,16,["H2509"]],[16,18,["H4480","H8081"]]]},{"k":16521,"v":[[0,3,["H319"]],[3,5,["H4751"]],[5,7,["H3939"]],[7,8,["H2299"]],[8,11,["H6310"]],[11,12,["H2719"]]]},{"k":16522,"v":[[0,2,["H7272"]],[2,4,["H3381"]],[4,6,["H4194"]],[6,8,["H6806"]],[8,10,["H8551"]],[10,12,["H7585"]]]},{"k":16523,"v":[[0,1,["H6435"]],[1,4,["H6424"]],[4,6,["H734"]],[6,8,["H2416"]],[8,10,["H4570"]],[10,12,["H5128"]],[12,16,["H3808"]],[16,17,["H3045"]],[17,18,[]]]},{"k":16524,"v":[[0,1,["H8085"]],[1,3,["H6258"]],[3,7,["H1121"]],[7,9,["H5493"]],[9,10,["H408"]],[10,13,["H4480","H561"]],[13,16,["H6310"]]]},{"k":16525,"v":[[0,4,["H7368","H1870"]],[4,5,["H4480","H5921"]],[5,10,["H7126","H408","H413"]],[10,12,["H6607"]],[12,15,["H1004"]]]},{"k":16526,"v":[[0,1,["H6435"]],[1,3,["H5414"]],[3,5,["H1935"]],[5,7,["H312"]],[7,10,["H8141"]],[10,13,["H394"]]]},{"k":16527,"v":[[0,1,["H6435"]],[1,2,["H2114"]],[2,4,["H7646"]],[4,7,["H3581"]],[7,10,["H6089"]],[10,14,["H1004"]],[14,17,["H5237"]]]},{"k":16528,"v":[[0,3,["H5098"]],[3,6,["H319"]],[6,9,["H1320"]],[9,12,["H7607"]],[12,14,["H3615"]]]},{"k":16529,"v":[[0,2,["H559"]],[2,3,["H349"]],[3,6,["H8130"]],[6,7,["H4148"]],[7,10,["H3820"]],[10,11,["H5006"]],[11,12,["H8433"]]]},{"k":16530,"v":[[0,3,["H3808"]],[3,4,["H8085"]],[4,6,["H6963"]],[6,9,["H3384"]],[9,10,["H3808"]],[10,11,["H5186"]],[11,13,["H241"]],[13,17,["H3925"]],[17,18,[]]]},{"k":16531,"v":[[0,2,["H1961"]],[2,3,["H4592"]],[3,5,["H3605"]],[5,6,["H7451"]],[6,9,["H8432"]],[9,12,["H6951"]],[12,14,["H5712"]]]},{"k":16532,"v":[[0,1,["H8354"]],[1,2,["H4325"]],[2,7,["H4480","H953"]],[7,10,["H5140"]],[10,12,["H4480","H8432"]],[12,15,["H875"]]]},{"k":16533,"v":[[0,3,["H4599"]],[3,5,["H6327"]],[5,6,["H2351"]],[6,8,["H6388"]],[8,10,["H4325"]],[10,13,["H7339"]]]},{"k":16534,"v":[[0,3,["H1961"]],[3,4,["H905"]],[4,8,["H369"]],[8,9,["H2114"]],[9,10,["H854"]],[10,11,[]]]},{"k":16535,"v":[[0,3,["H4726"]],[3,4,["H1961"]],[4,5,["H1288"]],[5,7,["H8055"]],[7,10,["H4480","H802"]],[10,13,["H5271"]]]},{"k":16536,"v":[[0,6,["H158"]],[6,7,["H365"]],[7,9,["H2580"]],[9,10,["H3280"]],[10,13,["H1717"]],[13,14,["H7301"]],[14,17,["H3605"]],[17,18,["H6256"]],[18,22,["H7686"]],[22,23,["H8548"]],[23,26,["H160"]]]},{"k":16537,"v":[[0,2,["H4100"]],[2,6,["H1121"]],[6,8,["H7686"]],[8,12,["H2114"]],[12,14,["H2263"]],[14,16,["H2436"]],[16,19,["H5237"]]]},{"k":16538,"v":[[0,1,["H3588"]],[1,3,["H1870"]],[3,5,["H376"]],[5,7,["H5227"]],[7,9,["H5869"]],[9,12,["H3068"]],[12,15,["H6424"]],[15,16,["H3605"]],[16,18,["H4570"]]]},{"k":16539,"v":[[0,3,["H5771"]],[3,5,["H3920","(H853)"]],[5,7,["H7563"]],[7,13,["H8551"]],[13,16,["H2256"]],[16,19,["H2403"]]]},{"k":16540,"v":[[0,1,["H1931"]],[1,3,["H4191"]],[3,4,["H369"]],[4,5,["H4148"]],[5,9,["H7230"]],[9,12,["H200"]],[12,16,["H7686"]]]},{"k":16541,"v":[[0,2,["H1121"]],[2,3,["H518"]],[3,6,["H6148"]],[6,9,["H7453"]],[9,13,["H8628"]],[13,15,["H3709"]],[15,18,["H2114"]]]},{"k":16542,"v":[[0,3,["H3369"]],[3,6,["H561"]],[6,9,["H6310"]],[9,12,["H3920"]],[12,15,["H561"]],[15,18,["H6310"]]]},{"k":16543,"v":[[0,1,["H6213"]],[1,2,["H2063"]],[2,3,["H645"]],[3,5,["H1121"]],[5,8,["H5337"]],[8,9,["H3588"]],[9,12,["H935"]],[12,15,["H3709"]],[15,18,["H7453"]],[18,19,["H1980"]],[19,21,["H7511"]],[21,24,["H7292"]],[24,26,["H7453"]]]},{"k":16544,"v":[[0,1,["H5414"]],[1,2,["H408"]],[2,3,["H8142"]],[3,6,["H5869"]],[6,8,["H8572"]],[8,11,["H6079"]]]},{"k":16545,"v":[[0,2,["H5337"]],[2,5,["H6643"]],[5,8,["H4480","H3027"]],[8,15,["H6833"]],[15,18,["H4480","H3027"]],[18,21,["H3353"]]]},{"k":16546,"v":[[0,1,["H1980"]],[1,2,["H413"]],[2,4,["H5244"]],[4,6,["H6102"]],[6,7,["H7200"]],[7,9,["H1870"]],[9,12,["H2449"]]]},{"k":16547,"v":[[0,1,["H834"]],[1,3,["H369"]],[3,4,["H7101"]],[4,5,["H7860"]],[5,7,["H4910"]]]},{"k":16548,"v":[[0,1,["H3559"]],[1,3,["H3899"]],[3,6,["H7019"]],[6,8,["H103"]],[8,10,["H3978"]],[10,13,["H7105"]]]},{"k":16549,"v":[[0,2,["H5704","H4970"]],[2,5,["H7901"]],[5,7,["H6102"]],[7,8,["H4970"]],[8,11,["H6965"]],[11,15,["H4480","H8142"]]]},{"k":16550,"v":[[0,3,["H4592"]],[3,4,["H8142"]],[4,6,["H4592"]],[6,7,["H8572"]],[7,9,["H4592"]],[9,10,["H2264"]],[10,13,["H3027"]],[13,15,["H7901"]]]},{"k":16551,"v":[[0,4,["H7389"]],[4,5,["H935"]],[5,9,["H1980"]],[9,12,["H4270"]],[12,15,["H4043"]],[15,16,["H376"]]]},{"k":16552,"v":[[0,2,["H1100"]],[2,3,["H120"]],[3,5,["H205"]],[5,6,["H376"]],[6,7,["H1980"]],[7,10,["H6143"]],[10,11,["H6310"]]]},{"k":16553,"v":[[0,2,["H7169"]],[2,5,["H5869"]],[5,7,["H4448"]],[7,10,["H7272"]],[10,12,["H3384"]],[12,15,["H676"]]]},{"k":16554,"v":[[0,1,["H8419"]],[1,5,["H3820"]],[5,7,["H2790"]],[7,8,["H7451"]],[8,9,["H3605","H6256"]],[9,11,["H7971"]],[11,12,["H4066"]]]},{"k":16555,"v":[[0,1,["H5921","H3651"]],[1,4,["H343"]],[4,5,["H935"]],[5,6,["H6597"]],[6,7,["H6621"]],[7,11,["H7665"]],[11,12,["H369"]],[12,13,["H4832"]]]},{"k":16556,"v":[[0,1,["H2007"]],[1,2,["H8337"]],[2,6,["H3068"]],[6,7,["H8130"]],[7,9,["H7651"]],[9,12,["H8441"]],[12,14,["H5315"]]]},{"k":16557,"v":[[0,2,["H7311"]],[2,3,["H5869"]],[3,5,["H8267"]],[5,6,["H3956"]],[6,8,["H3027"]],[8,10,["H8210"]],[10,11,["H5355"]],[11,12,["H1818"]]]},{"k":16558,"v":[[0,2,["H3820"]],[2,4,["H2790"]],[4,5,["H205"]],[5,6,["H4284"]],[6,7,["H7272"]],[7,10,["H4116"]],[10,12,["H7323"]],[12,14,["H7451"]]]},{"k":16559,"v":[[0,2,["H8267"]],[2,3,["H5707"]],[3,5,["H6315"]],[5,6,["H3577"]],[6,10,["H7971"]],[10,11,["H4090"]],[11,12,["H996"]],[12,13,["H251"]]]},{"k":16560,"v":[[0,2,["H1121"]],[2,3,["H5341"]],[3,5,["H1"]],[5,6,["H4687"]],[6,8,["H5203"]],[8,9,["H408"]],[9,11,["H8451"]],[11,14,["H517"]]]},{"k":16561,"v":[[0,1,["H7194"]],[1,3,["H8548"]],[3,4,["H5921"]],[4,6,["H3820"]],[6,8,["H6029"]],[8,10,["H5921"]],[10,12,["H1621"]]]},{"k":16562,"v":[[0,3,["H1980"]],[3,6,["H5148"]],[6,7,["(H853)"]],[7,10,["H7901"]],[10,13,["H8104","H5921"]],[13,18,["H6974"]],[18,19,["H1931"]],[19,21,["H7878"]],[21,23,[]]]},{"k":16563,"v":[[0,1,["H3588"]],[1,3,["H4687"]],[3,6,["H5216"]],[6,9,["H8451"]],[9,11,["H216"]],[11,13,["H8433"]],[13,15,["H4148"]],[15,18,["H1870"]],[18,20,["H2416"]]]},{"k":16564,"v":[[0,2,["H8104"]],[2,6,["H7451"]],[6,7,["H4480","H802"]],[7,10,["H4480","H2513"]],[10,13,["H3956"]],[13,17,["H5237"]]]},{"k":16565,"v":[[0,1,["H2530"]],[1,2,["H408"]],[2,5,["H3308"]],[5,8,["H3824"]],[8,9,["H408"]],[9,12,["H3947"]],[12,16,["H6079"]]]},{"k":16566,"v":[[0,1,["H3588"]],[1,3,["H1157"]],[3,6,["H2181"]],[6,7,["H802"]],[7,12,["H5704"]],[12,14,["H3603"]],[14,16,["H3899"]],[16,19,["H802","H376"]],[19,21,["H6679"]],[21,24,["H3368"]],[24,25,["H5315"]]]},{"k":16567,"v":[[0,3,["H376"]],[3,4,["H2846"]],[4,5,["H784"]],[5,8,["H2436"]],[8,11,["H899"]],[11,12,["H3808"]],[12,14,["H8313"]]]},{"k":16568,"v":[[0,1,["H518"]],[1,2,["H376"]],[2,3,["H1980"]],[3,4,["H5921"]],[4,6,["H1513"]],[6,9,["H7272"]],[9,10,["H3808"]],[10,12,["H3554"]]]},{"k":16569,"v":[[0,1,["H3651"]],[1,5,["H935"]],[5,6,["H413"]],[6,8,["H7453"]],[8,9,["H802"]],[9,10,["H3605"]],[10,11,["H5060"]],[11,14,["H3808"]],[14,16,["H5352"]]]},{"k":16570,"v":[[0,3,["H3808"]],[3,4,["H936"]],[4,6,["H1590"]],[6,7,["H3588"]],[7,9,["H1589"]],[9,11,["H4390"]],[11,13,["H5315"]],[13,14,["H3588"]],[14,17,["H7456"]]]},{"k":16571,"v":[[0,5,["H4672"]],[5,8,["H7999"]],[8,9,["H7659"]],[9,12,["H5414","(H853)"]],[12,13,["H3605"]],[13,15,["H1952"]],[15,18,["H1004"]]]},{"k":16572,"v":[[0,4,["H5003"]],[4,7,["H802"]],[7,8,["H2638"]],[8,9,["H3820"]],[9,10,["H1931"]],[10,12,["H6213"]],[12,14,["H7843"]],[14,17,["H5315"]]]},{"k":16573,"v":[[0,2,["H5061"]],[2,4,["H7036"]],[4,7,["H4672"]],[7,10,["H2781"]],[10,12,["H3808"]],[12,15,["H4229"]]]},{"k":16574,"v":[[0,1,["H3588"]],[1,2,["H7068"]],[2,5,["H2534"]],[5,8,["H1397"]],[8,12,["H3808"]],[12,13,["H2550"]],[13,16,["H3117"]],[16,18,["H5359"]]]},{"k":16575,"v":[[0,3,["H3808"]],[3,4,["H6440","H5375"]],[4,5,["H3605"]],[5,6,["H3724"]],[6,7,["H3808"]],[7,11,["H14"]],[11,12,["H3588"]],[12,15,["H7235"]],[15,16,["H7810"]]]},{"k":16576,"v":[[0,2,["H1121"]],[2,3,["H8104"]],[3,5,["H561"]],[5,8,["H6845"]],[8,10,["H4687"]],[10,11,["H854"]],[11,12,[]]]},{"k":16577,"v":[[0,1,["H8104"]],[1,3,["H4687"]],[3,5,["H2421"]],[5,8,["H8451"]],[8,11,["H380"]],[11,14,["H5869"]]]},{"k":16578,"v":[[0,1,["H7194"]],[1,3,["H5921"]],[3,5,["H676"]],[5,6,["H3789"]],[6,8,["H5921"]],[8,10,["H3871"]],[10,13,["H3820"]]]},{"k":16579,"v":[[0,1,["H559"]],[1,3,["H2451"]],[3,4,["H859"]],[4,7,["H269"]],[7,9,["H7121"]],[9,10,["H998"]],[10,12,["H4129"]]]},{"k":16580,"v":[[0,4,["H8104"]],[4,8,["H2114"]],[8,9,["H4480","H802"]],[9,12,["H4480","H5237"]],[12,14,["H2505"]],[14,17,["H561"]]]},{"k":16581,"v":[[0,1,["H3588"]],[1,4,["H2474"]],[4,7,["H1004"]],[7,9,["H8259"]],[9,10,["H1157"]],[10,12,["H822"]]]},{"k":16582,"v":[[0,2,["H7200"]],[2,6,["H6612"]],[6,8,["H995"]],[8,11,["H1121"]],[11,14,["H5288"]],[14,15,["H2638"]],[15,17,["H3820"]]]},{"k":16583,"v":[[0,1,["H5674"]],[1,4,["H7784"]],[4,5,["H681"]],[5,7,["H6438"]],[7,10,["H6805"]],[10,12,["H1870"]],[12,15,["H1004"]]]},{"k":16584,"v":[[0,3,["H5399"]],[3,6,["H6153","H3117"]],[6,9,["H380"]],[9,11,["H653"]],[11,12,["H3915"]]]},{"k":16585,"v":[[0,2,["H2009"]],[2,4,["H7125"]],[4,7,["H802"]],[7,10,["H7897"]],[10,13,["H2181"]],[13,15,["H5341"]],[15,17,["H3820"]]]},{"k":16586,"v":[[0,1,["H1931"]],[1,3,["H1993"]],[3,5,["H5637"]],[5,7,["H7272"]],[7,8,["H7931"]],[8,9,["H3808"]],[9,12,["H1004"]]]},{"k":16587,"v":[[0,1,["H6471"]],[1,4,["H2351"]],[4,5,["H6471"]],[5,8,["H7339"]],[8,12,["H693"]],[12,13,["H681"]],[13,14,["H3605"]],[14,15,["H6438"]]]},{"k":16588,"v":[[0,3,["H2388"]],[3,6,["H5401"]],[6,11,["H5810"]],[11,12,["H6440"]],[12,13,["H559"]],[13,15,[]]]},{"k":16589,"v":[[0,4,["H2077","H8002"]],[4,5,["H5921"]],[5,8,["H3117"]],[8,11,["H7999"]],[11,13,["H5088"]]]},{"k":16590,"v":[[0,1,["H5921","H3651"]],[1,4,["H3318"]],[4,6,["H7125"]],[6,10,["H7836"]],[10,12,["H6440"]],[12,16,["H4672"]],[16,17,[]]]},{"k":16591,"v":[[0,3,["H7234"]],[3,5,["H6210"]],[5,9,["H4765"]],[9,11,["H2405"]],[11,15,["H330"]],[15,17,["H4714"]]]},{"k":16592,"v":[[0,3,["H5130"]],[3,5,["H4904"]],[5,7,["H4753"]],[7,8,["H174"]],[8,10,["H7076"]]]},{"k":16593,"v":[[0,1,["H1980"]],[1,6,["H7301"]],[6,8,["H1730"]],[8,9,["H5704"]],[9,11,["H1242"]],[11,15,["H5965"]],[15,17,["H159"]]]},{"k":16594,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,5,["H369"]],[5,7,["H1004"]],[7,10,["H1980"]],[10,12,["H4480","H7350"]],[12,13,["H1870"]]]},{"k":16595,"v":[[0,3,["H3947"]],[3,5,["H6872"]],[5,7,["H3701"]],[7,8,["H3027"]],[8,12,["H935"]],[12,13,["H1004"]],[13,16,["H3117"]],[16,17,["H3677"]]]},{"k":16596,"v":[[0,3,["H7230"]],[3,5,["H3948"]],[5,10,["H5186"]],[10,13,["H2506"]],[13,16,["H8193"]],[16,18,["H5080"]],[18,19,[]]]},{"k":16597,"v":[[0,2,["H1980"]],[2,3,["H310"]],[3,5,["H6597"]],[5,8,["H7794"]],[8,9,["H935"]],[9,10,["H413"]],[10,12,["H2874"]],[12,16,["H191"]],[16,17,["H413"]],[17,19,["H4148"]],[19,22,["H5914"]]]},{"k":16598,"v":[[0,1,["H5704"]],[1,3,["H2671"]],[3,5,["H6398"]],[5,7,["H3516"]],[7,10,["H6833"]],[10,11,["H4116"]],[11,12,["H413"]],[12,14,["H6341"]],[14,16,["H3045"]],[16,17,["H3808"]],[17,18,["H3588"]],[18,19,["H1931"]],[19,23,["H5315"]]]},{"k":16599,"v":[[0,1,["H8085"]],[1,4,["H6258"]],[4,8,["H1121"]],[8,10,["H7181"]],[10,13,["H561"]],[13,16,["H6310"]]]},{"k":16600,"v":[[0,2,["H408"]],[2,4,["H3820"]],[4,5,["H7847"]],[5,6,["H413"]],[6,8,["H1870"]],[8,11,["H8582","H408"]],[11,14,["H5410"]]]},{"k":16601,"v":[[0,1,["H3588"]],[1,5,["H5307"]],[5,6,["H7227"]],[6,7,["H2491"]],[7,9,["H3605"]],[9,10,["H6099"]],[10,14,["H2026"]],[14,16,[]]]},{"k":16602,"v":[[0,2,["H1004"]],[2,5,["H1870"]],[5,7,["H7585"]],[7,9,["H3381"]],[9,10,["H413"]],[10,12,["H2315"]],[12,14,["H4194"]]]},{"k":16603,"v":[[0,2,["H3808"]],[2,3,["H2451"]],[3,4,["H7121"]],[4,6,["H8394"]],[6,8,["H5414"]],[8,10,["H6963"]]]},{"k":16604,"v":[[0,2,["H5324"]],[2,5,["H7218"]],[5,8,["H4791"]],[8,9,["H5921"]],[9,11,["H1870"]],[11,14,["H1004"]],[14,17,["H5410"]]]},{"k":16605,"v":[[0,2,["H7442"]],[2,3,["H3027"]],[3,5,["H8179"]],[5,8,["H6310"]],[8,11,["H7176"]],[11,14,["H3996"]],[14,18,["H6607"]]]},{"k":16606,"v":[[0,1,["H413"]],[1,4,["H376"]],[4,6,["H7121"]],[6,9,["H6963"]],[9,11,["H413"]],[11,13,["H1121"]],[13,15,["H120"]]]},{"k":16607,"v":[[0,3,["H6612"]],[3,4,["H995"]],[4,5,["H6195"]],[5,8,["H3684"]],[8,13,["H995"]],[13,14,["H3820"]]]},{"k":16608,"v":[[0,1,["H8085"]],[1,2,["H3588"]],[2,5,["H1696"]],[5,8,["H5057"]],[8,11,["H4669"]],[11,14,["H8193"]],[14,18,["H4339"]]]},{"k":16609,"v":[[0,1,["H3588"]],[1,3,["H2441"]],[3,5,["H1897"]],[5,6,["H571"]],[6,8,["H7562"]],[8,11,["H8441"]],[11,14,["H8193"]]]},{"k":16610,"v":[[0,1,["H3605"]],[1,3,["H561"]],[3,6,["H6310"]],[6,9,["H6664"]],[9,12,["H369"]],[12,13,["H6617"]],[13,15,["H6141"]],[15,17,[]]]},{"k":16611,"v":[[0,3,["H3605"]],[3,4,["H5228"]],[4,8,["H995"]],[8,10,["H3477"]],[10,14,["H4672"]],[14,15,["H1847"]]]},{"k":16612,"v":[[0,1,["H3947"]],[1,3,["H4148"]],[3,5,["H408"]],[5,6,["H3701"]],[6,8,["H1847"]],[8,12,["H4480","H977","H2742"]]]},{"k":16613,"v":[[0,1,["H3588"]],[1,2,["H2451"]],[2,4,["H2896"]],[4,6,["H4480","H6443"]],[6,8,["H3605"]],[8,14,["H2656"]],[14,16,["H3808"]],[16,19,["H7737"]],[19,21,[]]]},{"k":16614,"v":[[0,1,["H589"]],[1,2,["H2451"]],[2,3,["H7931"]],[3,5,["H6195"]],[5,8,["H4672"]],[8,9,["H1847"]],[9,12,["H4209"]]]},{"k":16615,"v":[[0,2,["H3374"]],[2,5,["H3068"]],[5,8,["H8130"]],[8,9,["H7451"]],[9,10,["H1344"]],[10,12,["H1347"]],[12,15,["H7451"]],[15,16,["H1870"]],[16,19,["H8419"]],[19,20,["H6310"]],[20,23,["H8130"]]]},{"k":16616,"v":[[0,1,["H6098"]],[1,6,["H8454"]],[6,7,["H589"]],[7,9,["H998"]],[9,12,["H1369"]]]},{"k":16617,"v":[[0,3,["H4428"]],[3,4,["H4427"]],[4,6,["H7336"]],[6,7,["H2710"]],[7,8,["H6664"]]]},{"k":16618,"v":[[0,3,["H8269"]],[3,4,["H8323"]],[4,6,["H5081"]],[6,8,["H3605"]],[8,10,["H8199"]],[10,13,["H776"]]]},{"k":16619,"v":[[0,1,["H589"]],[1,2,["H157"]],[2,5,["H157"]],[5,12,["H7836"]],[12,14,["H4672"]],[14,15,[]]]},{"k":16620,"v":[[0,1,["H6239"]],[1,3,["H3519"]],[3,5,["H854"]],[5,8,["H6276"]],[8,9,["H1952"]],[9,11,["H6666"]]]},{"k":16621,"v":[[0,2,["H6529"]],[2,4,["H2896"]],[4,6,["H4480","H2742"]],[6,10,["H4480","H6337"]],[10,13,["H8393"]],[13,15,["H977"]],[15,16,["H4480","H3701"]]]},{"k":16622,"v":[[0,2,["H1980"]],[2,5,["H734"]],[5,7,["H6666"]],[7,10,["H8432"]],[10,13,["H5410"]],[13,15,["H4941"]]]},{"k":16623,"v":[[0,7,["H157"]],[7,10,["H5157"]],[10,11,["H3426"]],[11,15,["H4390"]],[15,17,["H214"]]]},{"k":16624,"v":[[0,2,["H3068"]],[2,3,["H7069"]],[3,7,["H7225"]],[7,10,["H1870"]],[10,11,["H6924"]],[11,13,["H4659"]],[13,15,["H4480","H227"]]]},{"k":16625,"v":[[0,4,["H5258"]],[4,6,["H4480","H5769"]],[6,9,["H4480","H7218"]],[9,11,["H4480","H6924"]],[11,13,["H776"]],[13,14,[]]]},{"k":16626,"v":[[0,4,["H369"]],[4,5,["H8415"]],[5,9,["H2342"]],[9,13,["H369"]],[13,14,["H4599"]],[14,15,["H3513"]],[15,17,["H4325"]]]},{"k":16627,"v":[[0,1,["H2962"]],[1,3,["H2022"]],[3,5,["H2883"]],[5,6,["H6440"]],[6,8,["H1389"]],[8,12,["H2342"]]]},{"k":16628,"v":[[0,3,["H5704"]],[3,6,["H3808"]],[6,7,["H6213"]],[7,9,["H776"]],[9,12,["H2351"]],[12,16,["H7218"]],[16,19,["H6083"]],[19,22,["H8398"]]]},{"k":16629,"v":[[0,3,["H3559"]],[3,5,["H8064"]],[5,6,["H589"]],[6,8,["H8033"]],[8,11,["H2710"]],[11,13,["H2329"]],[13,14,["H5921"]],[14,16,["H6440"]],[16,19,["H8415"]]]},{"k":16630,"v":[[0,3,["H553"]],[3,5,["H7834"]],[5,6,["H4480","H4605"]],[6,9,["H5810"]],[9,11,["H5869"]],[11,14,["H8415"]]]},{"k":16631,"v":[[0,3,["H7760"]],[3,6,["H3220"]],[6,8,["H2706"]],[8,11,["H4325"]],[11,13,["H3808"]],[13,14,["H5674"]],[14,16,["H6310"]],[16,19,["H2710"]],[19,21,["H4146"]],[21,24,["H776"]]]},{"k":16632,"v":[[0,3,["H1961"]],[3,4,["H681"]],[4,9,["H525"]],[9,14,["H1961"]],[14,15,["H3117","H3117"]],[15,17,["H8191"]],[17,18,["H7832"]],[18,19,["H3605","H6256"]],[19,20,["H6440"]],[20,21,[]]]},{"k":16633,"v":[[0,1,["H7832"]],[1,5,["H8398"]],[5,8,["H776"]],[8,11,["H8191"]],[11,13,["H854"]],[13,15,["H1121"]],[15,17,["H120"]]]},{"k":16634,"v":[[0,1,["H6258"]],[1,3,["H8085"]],[3,8,["H1121"]],[8,10,["H835"]],[10,14,["H8104"]],[14,16,["H1870"]]]},{"k":16635,"v":[[0,1,["H8085"]],[1,2,["H4148"]],[2,5,["H2449"]],[5,7,["H6544"]],[7,9,["H408"]]]},{"k":16636,"v":[[0,1,["H835"]],[1,4,["H120"]],[4,6,["H8085"]],[6,8,["H8245"]],[8,9,["H3117","H3117"]],[9,10,["H5921"]],[10,12,["H1817"]],[12,13,["H8104"]],[13,16,["H4201"]],[16,19,["H6607"]]]},{"k":16637,"v":[[0,1,["H3588"]],[1,3,["H4672"]],[3,5,["H4672"]],[5,6,["H2416"]],[6,9,["H6329"]],[9,10,["H7522"]],[10,13,["H4480","H3068"]]]},{"k":16638,"v":[[0,5,["H2398"]],[5,7,["H2554"]],[7,10,["H5315"]],[10,11,["H3605"]],[11,14,["H8130"]],[14,16,["H157"]],[16,17,["H4194"]]]},{"k":16639,"v":[[0,1,["H2454"]],[1,3,["H1129"]],[3,5,["H1004"]],[5,9,["H2672"]],[9,11,["H7651"]],[11,12,["H5982"]]]},{"k":16640,"v":[[0,3,["H2873"]],[3,5,["H2874"]],[5,8,["H4537"]],[8,10,["H3196"]],[10,13,["H637"]],[13,14,["H6186"]],[14,16,["H7979"]]]},{"k":16641,"v":[[0,4,["H7971"]],[4,6,["H5291"]],[6,8,["H7121"]],[8,9,["H5921"]],[9,12,["H1610","H4791"]],[12,15,["H7176"]]]},{"k":16642,"v":[[0,1,["H4310"]],[1,3,["H6612"]],[3,6,["H5493"]],[6,8,["H2008"]],[8,13,["H2638"]],[13,14,["H3820"]],[14,16,["H559"]],[16,18,[]]]},{"k":16643,"v":[[0,1,["H1980"]],[1,2,["H3898"]],[2,5,["H3899"]],[5,7,["H8354"]],[7,10,["H3196"]],[10,14,["H4537"]]]},{"k":16644,"v":[[0,1,["H5800"]],[1,3,["H6612"]],[3,5,["H2421"]],[5,7,["H833"]],[7,10,["H1870"]],[10,12,["H998"]]]},{"k":16645,"v":[[0,3,["H3256"]],[3,5,["H3887"]],[5,6,["H3947"]],[6,9,["H7036"]],[9,13,["H3198"]],[13,15,["H7563"]],[15,20,["H3971"]]]},{"k":16646,"v":[[0,1,["H3198"]],[1,2,["H408"]],[2,4,["H3887"]],[4,5,["H6435"]],[5,7,["H8130"]],[7,9,["H3198"]],[9,12,["H2450"]],[12,16,["H157"]],[16,17,[]]]},{"k":16647,"v":[[0,1,["H5414"]],[1,5,["H2450"]],[5,11,["H5750"]],[11,12,["H2449"]],[12,13,["H3045"]],[13,15,["H6662"]],[15,20,["H3254"]],[20,22,["H3948"]]]},{"k":16648,"v":[[0,2,["H3374"]],[2,5,["H3068"]],[5,8,["H8462"]],[8,10,["H2451"]],[10,13,["H1847"]],[13,16,["H6918"]],[16,18,["H998"]]]},{"k":16649,"v":[[0,1,["H3588"]],[1,5,["H3117"]],[5,8,["H7235"]],[8,11,["H8141"]],[11,14,["H2416"]],[14,17,["H3254"]]]},{"k":16650,"v":[[0,1,["H518"]],[1,4,["H2449"]],[4,8,["H2449"]],[8,14,["H3887"]],[14,16,["H905"]],[16,18,["H5375"]],[18,19,[]]]},{"k":16651,"v":[[0,2,["H3687"]],[2,3,["H802"]],[3,5,["H1993"]],[5,8,["H6615"]],[8,10,["H3045"]],[10,11,["H1077","H4100"]]]},{"k":16652,"v":[[0,3,["H3427"]],[3,6,["H6607"]],[6,9,["H1004"]],[9,10,["H5921"]],[10,12,["H3678"]],[12,16,["H4791"]],[16,19,["H7176"]]]},{"k":16653,"v":[[0,2,["H7121"]],[2,3,["H5674","H1870"]],[3,6,["H3474"]],[6,9,["H734"]]]},{"k":16654,"v":[[0,1,["H4310"]],[1,3,["H6612"]],[3,6,["H5493"]],[6,8,["H2008"]],[8,14,["H2638"]],[14,15,["H3820"]],[15,17,["H559"]],[17,19,[]]]},{"k":16655,"v":[[0,1,["H1589"]],[1,2,["H4325"]],[2,4,["H4985"]],[4,6,["H3899"]],[6,9,["H5643"]],[9,11,["H5276"]]]},{"k":16656,"v":[[0,3,["H3045"]],[3,4,["H3808"]],[4,5,["H3588"]],[5,7,["H7496"]],[7,9,["H8033"]],[9,13,["H7121"]],[13,17,["H6011"]],[17,19,["H7585"]]]},{"k":16657,"v":[[0,2,["H4912"]],[2,4,["H8010"]],[4,6,["H2450"]],[6,7,["H1121"]],[7,10,["H8055"]],[10,11,["H1"]],[11,14,["H3684"]],[14,15,["H1121"]],[15,18,["H8424"]],[18,21,["H517"]]]},{"k":16658,"v":[[0,1,["H214"]],[1,3,["H7562"]],[3,4,["H3276"]],[4,5,["H3808"]],[5,7,["H6666"]],[7,8,["H5337"]],[8,10,["H4480","H4194"]]]},{"k":16659,"v":[[0,2,["H3068"]],[2,4,["H3808"]],[4,7,["H5315"]],[7,10,["H6662"]],[10,12,["H7456"]],[12,16,["H1920"]],[16,18,["H1942"]],[18,21,["H7563"]]]},{"k":16660,"v":[[0,3,["H7326"]],[3,5,["H6213"]],[5,8,["H7423"]],[8,9,["H3709"]],[9,12,["H3027"]],[12,15,["H2742"]],[15,17,["H6238"]]]},{"k":16661,"v":[[0,3,["H103"]],[3,5,["H7019"]],[5,8,["H7919"]],[8,9,["H1121"]],[9,13,["H7290"]],[13,15,["H7105"]],[15,18,["H1121"]],[18,21,["H954"]]]},{"k":16662,"v":[[0,1,["H1293"]],[1,5,["H7218"]],[5,8,["H6662"]],[8,10,["H2555"]],[10,11,["H3680"]],[11,13,["H6310"]],[13,16,["H7563"]]]},{"k":16663,"v":[[0,2,["H2143"]],[2,5,["H6662"]],[5,7,["H1293"]],[7,10,["H8034"]],[10,13,["H7563"]],[13,15,["H7537"]]]},{"k":16664,"v":[[0,2,["H2450"]],[2,4,["H3820"]],[4,6,["H3947"]],[6,7,["H4687"]],[7,10,["H8193"]],[10,11,["H191"]],[11,13,["H3832"]]]},{"k":16665,"v":[[0,3,["H1980"]],[3,4,["H8537"]],[4,5,["H1980"]],[5,6,["H983"]],[6,10,["H6140"]],[10,12,["H1870"]],[12,15,["H3045"]]]},{"k":16666,"v":[[0,3,["H7169"]],[3,6,["H5869"]],[6,7,["H5414"]],[7,8,["H6094"]],[8,11,["H8193"]],[11,12,["H191"]],[12,14,["H3832"]]]},{"k":16667,"v":[[0,2,["H6310"]],[2,5,["H6662"]],[5,9,["H4726"]],[9,11,["H2416"]],[11,13,["H2555"]],[13,14,["H3680"]],[14,16,["H6310"]],[16,19,["H7563"]]]},{"k":16668,"v":[[0,1,["H8135"]],[1,3,["H5782"]],[3,4,["H4090"]],[4,6,["H160"]],[6,7,["H3680","H5921"]],[7,8,["H3605"]],[8,9,["H6588"]]]},{"k":16669,"v":[[0,3,["H8193"]],[3,8,["H995"]],[8,9,["H2451"]],[9,11,["H4672"]],[11,14,["H7626"]],[14,18,["H1460"]],[18,23,["H2638"]],[23,25,["H3820"]]]},{"k":16670,"v":[[0,1,["H2450"]],[1,4,["H6845"]],[4,5,["H1847"]],[5,8,["H6310"]],[8,11,["H191"]],[11,13,["H7138"]],[13,14,["H4288"]]]},{"k":16671,"v":[[0,3,["H6223"]],[3,4,["H1952"]],[4,7,["H5797"]],[7,8,["H7151"]],[8,10,["H4288"]],[10,13,["H1800"]],[13,16,["H7389"]]]},{"k":16672,"v":[[0,2,["H6468"]],[2,5,["H6662"]],[5,8,["H2416"]],[8,10,["H8393"]],[10,13,["H7563"]],[13,15,["H2403"]]]},{"k":16673,"v":[[0,5,["H734"]],[5,7,["H2416"]],[7,9,["H8104"]],[9,10,["H4148"]],[10,14,["H5800"]],[14,15,["H8433"]],[15,16,["H8582"]]]},{"k":16674,"v":[[0,3,["H3680"]],[3,4,["H8135"]],[4,6,["H8267"]],[6,7,["H8193"]],[7,11,["H3318"]],[11,13,["H1681"]],[13,16,["H3684"]]]},{"k":16675,"v":[[0,3,["H7230"]],[3,5,["H1697"]],[5,7,["H2308"]],[7,8,["H3808"]],[8,9,["H6588"]],[9,13,["H2820"]],[13,15,["H8193"]],[15,17,["H7919"]]]},{"k":16676,"v":[[0,2,["H3956"]],[2,5,["H6662"]],[5,8,["H977"]],[8,9,["H3701"]],[9,11,["H3820"]],[11,14,["H7563"]],[14,17,["H4592"]]]},{"k":16677,"v":[[0,2,["H8193"]],[2,5,["H6662"]],[5,6,["H7462"]],[6,7,["H7227"]],[7,9,["H191"]],[9,10,["H4191"]],[10,12,["H2638"]],[12,14,["H3820"]]]},{"k":16678,"v":[[0,2,["H1293"]],[2,5,["H3068"]],[5,6,["H1931"]],[6,8,["H6238"]],[8,11,["H3254"]],[11,12,["H3808"]],[12,13,["H6089"]],[13,14,["H5973"]],[14,15,[]]]},{"k":16679,"v":[[0,4,["H7814"]],[4,7,["H3684"]],[7,9,["H6213"]],[9,10,["H2154"]],[10,13,["H376"]],[13,15,["H8394"]],[15,17,["H2451"]]]},{"k":16680,"v":[[0,2,["H4034"]],[2,5,["H7563"]],[5,6,["H1931"]],[6,9,["H935"]],[9,13,["H8378"]],[13,16,["H6662"]],[16,19,["H5414"]]]},{"k":16681,"v":[[0,3,["H5492"]],[3,4,["H5674"]],[4,8,["H7563"]],[8,9,["H369"]],[9,13,["H6662"]],[13,16,["H5769"]],[16,17,["H3247"]]]},{"k":16682,"v":[[0,2,["H2558"]],[2,5,["H8127"]],[5,8,["H6227"]],[8,11,["H5869"]],[11,12,["H3651"]],[12,15,["H6102"]],[15,19,["H7971"]],[19,20,[]]]},{"k":16683,"v":[[0,2,["H3374"]],[2,5,["H3068"]],[5,6,["H3254"]],[6,7,["H3117"]],[7,10,["H8141"]],[10,13,["H7563"]],[13,16,["H7114"]]]},{"k":16684,"v":[[0,2,["H8431"]],[2,5,["H6662"]],[5,8,["H8057"]],[8,11,["H8615"]],[11,14,["H7563"]],[14,16,["H6"]]]},{"k":16685,"v":[[0,2,["H1870"]],[2,5,["H3068"]],[5,7,["H4581"]],[7,10,["H8537"]],[10,12,["H4288"]],[12,17,["H6466"]],[17,19,["H205"]]]},{"k":16686,"v":[[0,2,["H6662"]],[2,4,["H5769","H1077"]],[4,6,["H4131"]],[6,9,["H7563"]],[9,11,["H3808"]],[11,12,["H7931"]],[12,14,["H776"]]]},{"k":16687,"v":[[0,2,["H6310"]],[2,5,["H6662"]],[5,7,["H5107"]],[7,8,["H2451"]],[8,11,["H8419"]],[11,12,["H3956"]],[12,16,["H3772"]]]},{"k":16688,"v":[[0,2,["H8193"]],[2,5,["H6662"]],[5,6,["H3045"]],[6,9,["H7522"]],[9,12,["H6310"]],[12,15,["H7563"]],[15,17,["H8419"]]]},{"k":16689,"v":[[0,2,["H4820"]],[2,3,["H3976"]],[3,5,["H8441"]],[5,8,["H3068"]],[8,11,["H8003"]],[11,12,["H68"]],[12,15,["H7522"]]]},{"k":16690,"v":[[0,2,["H2087"]],[2,3,["H935"]],[3,5,["H935"]],[5,6,["H7036"]],[6,8,["H854"]],[8,10,["H6800"]],[10,12,["H2451"]]]},{"k":16691,"v":[[0,2,["H8538"]],[2,5,["H3477"]],[5,7,["H5148"]],[7,11,["H5558"]],[11,13,["H898"]],[13,15,["H7703"]],[15,16,[]]]},{"k":16692,"v":[[0,1,["H1952"]],[1,2,["H3276"]],[2,3,["H3808"]],[3,6,["H3117"]],[6,8,["H5678"]],[8,10,["H6666"]],[10,11,["H5337"]],[11,13,["H4480","H4194"]]]},{"k":16693,"v":[[0,2,["H6666"]],[2,5,["H8549"]],[5,7,["H3474"]],[7,9,["H1870"]],[9,12,["H7563"]],[12,14,["H5307"]],[14,18,["H7564"]]]},{"k":16694,"v":[[0,2,["H6666"]],[2,5,["H3477"]],[5,7,["H5337"]],[7,10,["H898"]],[10,13,["H3920"]],[13,17,["H1942"]]]},{"k":16695,"v":[[0,3,["H7563"]],[3,4,["H120"]],[4,5,["H4194"]],[5,7,["H8615"]],[7,9,["H6"]],[9,12,["H8431"]],[12,14,["H205"]],[14,16,["H6"]]]},{"k":16696,"v":[[0,2,["H6662"]],[2,4,["H2502"]],[4,7,["H4480","H6869"]],[7,10,["H7563"]],[10,11,["H935"]],[11,14,["H8478"]]]},{"k":16697,"v":[[0,2,["H2611"]],[2,5,["H6310"]],[5,6,["H7843"]],[6,8,["H7453"]],[8,11,["H1847"]],[11,14,["H6662"]],[14,16,["H2502"]]]},{"k":16698,"v":[[0,4,["H2898"]],[4,7,["H6662"]],[7,9,["H7151"]],[9,10,["H5970"]],[10,14,["H7563"]],[14,15,["H6"]],[15,18,["H7440"]]]},{"k":16699,"v":[[0,3,["H1293"]],[3,6,["H3477"]],[6,8,["H7176"]],[8,10,["H7311"]],[10,14,["H2040"]],[14,17,["H6310"]],[17,20,["H7563"]]]},{"k":16700,"v":[[0,4,["H2638"]],[4,6,["H3820"]],[6,7,["H936"]],[7,9,["H7453"]],[9,12,["H376"]],[12,14,["H8394"]],[14,17,["H2790"]]]},{"k":16701,"v":[[0,2,["H1980","H7400"]],[2,3,["H1540"]],[3,4,["H5475"]],[4,11,["H539"]],[11,12,["H7307"]],[12,13,["H3680"]],[13,15,["H1697"]]]},{"k":16702,"v":[[0,2,["H369"]],[2,3,["H8458"]],[3,6,["H5971"]],[6,7,["H5307"]],[7,11,["H7230"]],[11,13,["H3289"]],[13,16,["H8668"]]]},{"k":16703,"v":[[0,4,["H6148"]],[4,7,["H2114"]],[7,9,["H7451","H7489"]],[9,15,["H8130"]],[15,16,["H8628"]],[16,18,["H982"]]]},{"k":16704,"v":[[0,2,["H2580"]],[2,3,["H802"]],[3,4,["H8551"]],[4,5,["H3519"]],[5,7,["H6184"]],[7,9,["H8551"]],[9,10,["H6239"]]]},{"k":16705,"v":[[0,2,["H2617"]],[2,3,["H376"]],[3,5,["H1580"]],[5,9,["H5315"]],[9,14,["H394"]],[14,15,["H5916"]],[15,18,["H7607"]]]},{"k":16706,"v":[[0,2,["H7563"]],[2,3,["H6213"]],[3,5,["H8267"]],[5,6,["H6468"]],[6,11,["H2232"]],[11,12,["H6666"]],[12,16,["H571"]],[16,17,["H7938"]]]},{"k":16707,"v":[[0,1,["H3651"]],[1,2,["H6666"]],[2,5,["H2416"]],[5,9,["H7291"]],[9,10,["H7451"]],[10,16,["H4194"]]]},{"k":16708,"v":[[0,6,["H6141"]],[6,7,["H3820"]],[7,9,["H8441"]],[9,12,["H3068"]],[12,17,["H8549"]],[17,20,["H1870"]],[20,23,["H7522"]]]},{"k":16709,"v":[[0,2,["H3027"]],[2,5,["H3027"]],[5,7,["H7451"]],[7,9,["H3808"]],[9,11,["H5352"]],[11,14,["H2233"]],[14,17,["H6662"]],[17,20,["H4422"]]]},{"k":16710,"v":[[0,3,["H5141"]],[3,5,["H2091"]],[5,8,["H2386"]],[8,9,["H639"]],[9,13,["H3303"]],[13,14,["H802"]],[14,17,["H5493"]],[17,18,["H2940"]]]},{"k":16711,"v":[[0,2,["H8378"]],[2,5,["H6662"]],[5,7,["H389"]],[7,8,["H2896"]],[8,11,["H8615"]],[11,14,["H7563"]],[14,16,["H5678"]]]},{"k":16712,"v":[[0,2,["H3426"]],[2,4,["H6340"]],[4,6,["H5750"]],[6,7,["H3254"]],[7,12,["H2820"]],[12,16,["H4480","H3476"]],[16,21,["H4270"]]]},{"k":16713,"v":[[0,2,["H1293"]],[2,3,["H5315"]],[3,7,["H1878"]],[7,11,["H7301"]],[11,14,["H3384"]],[14,15,["H1571"]],[15,16,["H1931"]]]},{"k":16714,"v":[[0,3,["H4513"]],[3,4,["H1250"]],[4,6,["H3816"]],[6,8,["H6895"]],[8,11,["H1293"]],[11,16,["H7218"]],[16,20,["H7666"]],[20,21,[]]]},{"k":16715,"v":[[0,4,["H7836"]],[4,5,["H2896"]],[5,6,["H1245"]],[6,7,["H7522"]],[7,11,["H1875"]],[11,12,["H7451"]],[12,15,["H935"]],[15,17,[]]]},{"k":16716,"v":[[0,1,["H1931"]],[1,3,["H982"]],[3,6,["H6239"]],[6,8,["H5307"]],[8,11,["H6662"]],[11,13,["H6524"]],[13,16,["H5929"]]]},{"k":16717,"v":[[0,3,["H5916"]],[3,6,["H1004"]],[6,8,["H5157"]],[8,10,["H7307"]],[10,13,["H191"]],[13,16,["H5650"]],[16,19,["H2450"]],[19,21,["H3820"]]]},{"k":16718,"v":[[0,2,["H6529"]],[2,5,["H6662"]],[5,8,["H6086"]],[8,10,["H2416"]],[10,14,["H3947"]],[14,15,["H5315"]],[15,17,["H2450"]]]},{"k":16719,"v":[[0,1,["H2005"]],[1,3,["H6662"]],[3,6,["H7999"]],[6,9,["H776"]],[9,11,["H637","H3588"]],[11,13,["H7563"]],[13,16,["H2398"]]]},{"k":16720,"v":[[0,2,["H157"]],[2,3,["H4148"]],[3,4,["H157"]],[4,5,["H1847"]],[5,9,["H8130"]],[9,10,["H8433"]],[10,12,["H1198"]]]},{"k":16721,"v":[[0,2,["H2896"]],[2,4,["H6329"]],[4,5,["H7522"]],[5,8,["H4480","H3068"]],[8,11,["H376"]],[11,14,["H4209"]],[14,17,["H7561"]]]},{"k":16722,"v":[[0,2,["H120"]],[2,4,["H3808"]],[4,6,["H3559"]],[6,8,["H7562"]],[8,11,["H8328"]],[11,14,["H6662"]],[14,16,["H1077"]],[16,18,["H4131"]]]},{"k":16723,"v":[[0,2,["H2428"]],[2,3,["H802"]],[3,6,["H5850"]],[6,9,["H1167"]],[9,14,["H954"]],[14,17,["H7538"]],[17,20,["H6106"]]]},{"k":16724,"v":[[0,2,["H4284"]],[2,5,["H6662"]],[5,7,["H4941"]],[7,10,["H8458"]],[10,13,["H7563"]],[13,15,["H4820"]]]},{"k":16725,"v":[[0,2,["H1697"]],[2,5,["H7563"]],[5,10,["H693"]],[10,12,["H1818"]],[12,15,["H6310"]],[15,18,["H3477"]],[18,20,["H5337"]],[20,21,[]]]},{"k":16726,"v":[[0,2,["H7563"]],[2,4,["H2015"]],[4,7,["H369"]],[7,10,["H1004"]],[10,13,["H6662"]],[13,15,["H5975"]]]},{"k":16727,"v":[[0,2,["H376"]],[2,5,["H1984"]],[5,6,["H6310"]],[6,9,["H7922"]],[9,16,["H5753"]],[16,17,["H3820"]],[17,19,["H1961"]],[19,20,["H937"]]]},{"k":16728,"v":[[0,4,["H7034"]],[4,8,["H5650"]],[8,10,["H2896"]],[10,15,["H4480","H3513"]],[15,17,["H2638"]],[17,18,["H3899"]]]},{"k":16729,"v":[[0,2,["H6662"]],[2,4,["H3045"]],[4,6,["H5315"]],[6,9,["H929"]],[9,13,["H7356"]],[13,16,["H7563"]],[16,18,["H394"]]]},{"k":16730,"v":[[0,3,["H5647"]],[3,5,["H127"]],[5,8,["H7646"]],[8,10,["H3899"]],[10,14,["H7291"]],[14,15,["H7386"]],[15,18,["H2638"]],[18,20,["H3820"]]]},{"k":16731,"v":[[0,2,["H7563"]],[2,3,["H2530"]],[3,5,["H4685"]],[5,7,["H7451"]],[7,11,["H8328"]],[11,14,["H6662"]],[14,15,["H5414"]],[15,16,[]]]},{"k":16732,"v":[[0,2,["H7451"]],[2,4,["H4170"]],[4,7,["H6588"]],[7,10,["H8193"]],[10,13,["H6662"]],[13,16,["H3318"]],[16,18,["H4480","H6869"]]]},{"k":16733,"v":[[0,2,["H376"]],[2,5,["H7646"]],[5,7,["H2896"]],[7,10,["H4480","H6529"]],[10,13,["H6310"]],[13,16,["H1576"]],[16,19,["H120"]],[19,20,["H3027"]],[20,23,["H7725"]],[23,25,[]]]},{"k":16734,"v":[[0,2,["H1870"]],[2,5,["H191"]],[5,7,["H3477"]],[7,11,["H5869"]],[11,15,["H8085"]],[15,17,["H6098"]],[17,19,["H2450"]]]},{"k":16735,"v":[[0,2,["H191"]],[2,3,["H3708"]],[3,5,["H3117"]],[5,6,["H3045"]],[6,9,["H6175"]],[9,11,["H3680"]],[11,12,["H7036"]]]},{"k":16736,"v":[[0,3,["H6315"]],[3,4,["H530"]],[4,6,["H5046"]],[6,7,["H6664"]],[7,10,["H8267"]],[10,11,["H5707"]],[11,12,["H4820"]]]},{"k":16737,"v":[[0,2,["H3426"]],[2,4,["H981"]],[4,7,["H4094"]],[7,10,["H2719"]],[10,13,["H3956"]],[13,16,["H2450"]],[16,18,["H4832"]]]},{"k":16738,"v":[[0,2,["H8193"]],[2,4,["H571"]],[4,7,["H3559"]],[7,9,["H5703"]],[9,10,["H5704"]],[10,12,["H8267"]],[12,13,["H3956"]],[13,18,["H7280"]]]},{"k":16739,"v":[[0,1,["H4820"]],[1,5,["H3820"]],[5,9,["H2790"]],[9,10,["H7451"]],[10,14,["H3289"]],[14,16,["H7965"]],[16,18,["H8057"]]]},{"k":16740,"v":[[0,3,["H3808","H3605"]],[3,4,["H205"]],[4,5,["H579"]],[5,8,["H6662"]],[8,11,["H7563"]],[11,14,["H4390"]],[14,16,["H7451"]]]},{"k":16741,"v":[[0,1,["H8267"]],[1,2,["H8193"]],[2,4,["H8441"]],[4,7,["H3068"]],[7,11,["H6213"]],[11,12,["H530"]],[12,15,["H7522"]]]},{"k":16742,"v":[[0,2,["H6175"]],[2,3,["H120"]],[3,4,["H3680"]],[4,5,["H1847"]],[5,8,["H3820"]],[8,10,["H3684"]],[10,11,["H7121"]],[11,12,["H200"]]]},{"k":16743,"v":[[0,2,["H3027"]],[2,5,["H2742"]],[5,8,["H4910"]],[8,11,["H7423"]],[11,13,["H1961"]],[13,15,["H4522"]]]},{"k":16744,"v":[[0,1,["H1674"]],[1,4,["H3820"]],[4,6,["H376"]],[6,9,["H7812"]],[9,12,["H2896"]],[12,13,["H1697"]],[13,16,["H8055"]]]},{"k":16745,"v":[[0,2,["H6662"]],[2,5,["H8446"]],[5,8,["H4480","H7453"]],[8,11,["H1870"]],[11,14,["H7563"]],[14,15,["H8582"]],[15,16,[]]]},{"k":16746,"v":[[0,2,["H7423"]],[2,4,["H2760"]],[4,5,["H3808"]],[5,11,["H6718"]],[11,14,["H1952"]],[14,17,["H2742"]],[17,18,["H120"]],[18,20,["H3368"]]]},{"k":16747,"v":[[0,3,["H734"]],[3,5,["H6666"]],[5,7,["H2416"]],[7,11,["H1870","H5410"]],[11,15,["H408"]],[15,16,["H4194"]]]},{"k":16748,"v":[[0,2,["H2450"]],[2,3,["H1121"]],[3,6,["H1"]],[6,7,["H4148"]],[7,10,["H3887"]],[10,11,["H8085"]],[11,12,["H3808"]],[12,13,["H1606"]]]},{"k":16749,"v":[[0,2,["H376"]],[2,4,["H398"]],[4,5,["H2896"]],[5,8,["H4480","H6529"]],[8,11,["H6310"]],[11,14,["H5315"]],[14,17,["H898"]],[17,20,["H2555"]]]},{"k":16750,"v":[[0,3,["H5341"]],[3,5,["H6310"]],[5,6,["H8104"]],[6,8,["H5315"]],[8,13,["H6589"]],[13,15,["H8193"]],[15,18,["H4288"]]]},{"k":16751,"v":[[0,2,["H5315"]],[2,5,["H6102"]],[5,6,["H183"]],[6,9,["H369"]],[9,12,["H5315"]],[12,15,["H2742"]],[15,19,["H1878"]]]},{"k":16752,"v":[[0,2,["H6662"]],[2,4,["H8130"]],[4,5,["H1697","H8267"]],[5,8,["H7563"]],[8,11,["H887"]],[11,15,["H2659"]]]},{"k":16753,"v":[[0,1,["H6666"]],[1,2,["H5341"]],[2,6,["H8537"]],[6,9,["H1870"]],[9,11,["H7564"]],[11,12,["H5557"]],[12,14,["H2403"]]]},{"k":16754,"v":[[0,2,["H3426"]],[2,6,["H6238"]],[6,9,["H369","H3605"]],[9,15,["H7326"]],[15,18,["H7227"]],[18,19,["H1952"]]]},{"k":16755,"v":[[0,2,["H3724"]],[2,5,["H376"]],[5,6,["H5315"]],[6,9,["H6239"]],[9,12,["H7326"]],[12,13,["H8085"]],[13,14,["H3808"]],[14,15,["H1606"]]]},{"k":16756,"v":[[0,2,["H216"]],[2,5,["H6662"]],[5,6,["H8055"]],[6,9,["H5216"]],[9,12,["H7563"]],[12,16,["H1846"]]]},{"k":16757,"v":[[0,1,["H7535"]],[1,3,["H2087"]],[3,4,["H5414"]],[4,5,["H4683"]],[5,7,["H854"]],[7,10,["H3289"]],[10,12,["H2451"]]]},{"k":16758,"v":[[0,1,["H1952"]],[1,4,["H4480","H1892"]],[4,7,["H4591"]],[7,11,["H6908"]],[11,12,["H5921"]],[12,13,["H3027"]],[13,15,["H7235"]]]},{"k":16759,"v":[[0,1,["H8431"]],[1,2,["H4900"]],[2,5,["H3820"]],[5,6,["H2470"]],[6,10,["H8378"]],[10,11,["H935"]],[11,15,["H6086"]],[15,17,["H2416"]]]},{"k":16760,"v":[[0,2,["H936"]],[2,4,["H1697"]],[4,7,["H2254"]],[7,9,["H1931"]],[9,11,["H3373"]],[11,13,["H4687"]],[13,16,["H7999"]]]},{"k":16761,"v":[[0,2,["H8451"]],[2,5,["H2450"]],[5,8,["H4726"]],[8,10,["H2416"]],[10,12,["H5493"]],[12,15,["H4480","H4170"]],[15,17,["H4194"]]]},{"k":16762,"v":[[0,1,["H2896"]],[1,2,["H7922"]],[2,3,["H5414"]],[3,4,["H2580"]],[4,7,["H1870"]],[7,9,["H898"]],[9,11,["H386"]]]},{"k":16763,"v":[[0,1,["H3605"]],[1,2,["H6175"]],[2,4,["H6213"]],[4,6,["H1847"]],[6,9,["H3684"]],[9,11,["H6566"]],[11,13,["H200"]]]},{"k":16764,"v":[[0,2,["H7563"]],[2,3,["H4397"]],[3,4,["H5307"]],[4,6,["H7451"]],[6,9,["H529"]],[9,10,["H6735"]],[10,12,["H4832"]]]},{"k":16765,"v":[[0,1,["H7389"]],[1,3,["H7036"]],[3,9,["H6544"]],[9,10,["H4148"]],[10,14,["H8104"]],[14,15,["H8433"]],[15,18,["H3513"]]]},{"k":16766,"v":[[0,2,["H8378"]],[2,3,["H1961"]],[3,5,["H6149"]],[5,8,["H5315"]],[8,12,["H8441"]],[12,14,["H3684"]],[14,16,["H5493"]],[16,18,["H4480","H7451"]]]},{"k":16767,"v":[[0,3,["H1980"]],[3,4,["H854"]],[4,5,["H2450"]],[5,9,["H2449"]],[9,12,["H7462"]],[12,14,["H3684"]],[14,17,["H7321"]]]},{"k":16768,"v":[[0,1,["H7451"]],[1,2,["H7291"]],[2,3,["H2400"]],[3,7,["H6662"]],[7,8,["H2896"]],[8,11,["H7999"]]]},{"k":16769,"v":[[0,2,["H2896"]],[2,6,["H5157"]],[6,9,["H1121"]],[9,10,["H1121"]],[10,13,["H2428"]],[13,16,["H2398"]],[16,19,["H6845"]],[19,22,["H6662"]]]},{"k":16770,"v":[[0,1,["H7230"]],[1,2,["H400"]],[2,6,["H5215"]],[6,9,["H7326"]],[9,12,["H3426"]],[12,15,["H5595"]],[15,17,["H3808"]],[17,19,["H4941"]]]},{"k":16771,"v":[[0,3,["H2820"]],[3,5,["H7626"]],[5,6,["H8130"]],[6,8,["H1121"]],[8,12,["H157"]],[12,14,["H4148"]],[14,16,["H7836"]]]},{"k":16772,"v":[[0,2,["H6662"]],[2,3,["H398"]],[3,6,["H7648"]],[6,9,["H5315"]],[9,12,["H990"]],[12,15,["H7563"]],[15,17,["H2637"]]]},{"k":16773,"v":[[0,2,["H2454"]],[2,3,["H802"]],[3,4,["H1129"]],[4,6,["H1004"]],[6,9,["H200"]],[9,12,["H2040"]],[12,15,["H3027"]]]},{"k":16774,"v":[[0,3,["H1980"]],[3,6,["H3476"]],[6,7,["H3372"]],[7,9,["H3068"]],[9,14,["H3868"]],[14,17,["H1870"]],[17,18,["H959"]],[18,19,[]]]},{"k":16775,"v":[[0,3,["H6310"]],[3,6,["H191"]],[6,9,["H2415"]],[9,11,["H1346"]],[11,14,["H8193"]],[14,17,["H2450"]],[17,19,["H8104"]],[19,20,[]]]},{"k":16776,"v":[[0,2,["H369"]],[2,3,["H504"]],[3,6,["H18"]],[6,8,["H1249"]],[8,10,["H7230"]],[10,11,["H8393"]],[11,15,["H3581"]],[15,18,["H7794"]]]},{"k":16777,"v":[[0,2,["H529"]],[2,3,["H5707"]],[3,5,["H3808"]],[5,6,["H3576"]],[6,9,["H8267"]],[9,10,["H5707"]],[10,12,["H6315"]],[12,13,["H3577"]]]},{"k":16778,"v":[[0,2,["H3887"]],[2,3,["H1245"]],[3,4,["H2451"]],[4,8,["H369"]],[8,10,["H1847"]],[10,12,["H7043"]],[12,16,["H995"]]]},{"k":16779,"v":[[0,1,["H1980"]],[1,4,["H4480","H5048"]],[4,7,["H3684"]],[7,8,["H376"]],[8,11,["H3045"]],[11,12,["H1077"]],[12,16,["H8193"]],[16,18,["H1847"]]]},{"k":16780,"v":[[0,2,["H2451"]],[2,5,["H6175"]],[5,8,["H995"]],[8,10,["H1870"]],[10,13,["H200"]],[13,15,["H3684"]],[15,17,["H4820"]]]},{"k":16781,"v":[[0,1,["H191"]],[1,4,["H3887"]],[4,6,["H817"]],[6,8,["H996"]],[8,10,["H3477"]],[10,13,["H7522"]]]},{"k":16782,"v":[[0,2,["H3820"]],[2,3,["H3045"]],[3,5,["H5315"]],[5,6,["H4787"]],[6,9,["H2114"]],[9,11,["H3808"]],[11,12,["H6148"]],[12,15,["H8057"]]]},{"k":16783,"v":[[0,2,["H1004"]],[2,5,["H7563"]],[5,8,["H8045"]],[8,11,["H168"]],[11,14,["H3477"]],[14,16,["H6524"]]]},{"k":16784,"v":[[0,2,["H3426"]],[2,4,["H1870"]],[4,7,["H3477"]],[7,8,["H6440"]],[8,10,["H376"]],[10,13,["H319"]],[13,17,["H1870"]],[17,19,["H4194"]]]},{"k":16785,"v":[[0,1,["H1571"]],[1,3,["H7814"]],[3,5,["H3820"]],[5,7,["H3510"]],[7,10,["H319"]],[10,13,["H8057"]],[13,15,["H8424"]]]},{"k":16786,"v":[[0,2,["H5472"]],[2,4,["H3820"]],[4,7,["H7646"]],[7,11,["H4480","H1870"]],[11,14,["H2896"]],[14,15,["H376"]],[15,19,["H4480","H5921"]],[19,20,[]]]},{"k":16787,"v":[[0,2,["H6612"]],[2,3,["H539"]],[3,4,["H3605"]],[4,5,["H1697"]],[5,8,["H6175"]],[8,11,["H995"]],[11,14,["H838"]]]},{"k":16788,"v":[[0,2,["H2450"]],[2,4,["H3373"]],[4,6,["H5493"]],[6,8,["H4480","H7451"]],[8,11,["H3684"]],[11,12,["H5674"]],[12,15,["H982"]]]},{"k":16789,"v":[[0,4,["H7116"]],[4,5,["H639"]],[5,6,["H6213"]],[6,7,["H200"]],[7,10,["H376"]],[10,13,["H4209"]],[13,15,["H8130"]]]},{"k":16790,"v":[[0,2,["H6612"]],[2,3,["H5157"]],[3,4,["H200"]],[4,7,["H6175"]],[7,9,["H3803"]],[9,11,["H1847"]]]},{"k":16791,"v":[[0,2,["H7451"]],[2,3,["H7817"]],[3,4,["H6440"]],[4,6,["H2896"]],[6,9,["H7563"]],[9,10,["H5921"]],[10,12,["H8179"]],[12,15,["H6662"]]]},{"k":16792,"v":[[0,2,["H7326"]],[2,4,["H8130"]],[4,5,["H1571"]],[5,9,["H7453"]],[9,12,["H6223"]],[12,14,["H7227"]],[14,15,["H157"]]]},{"k":16793,"v":[[0,3,["H936"]],[3,5,["H7453"]],[5,6,["H2398"]],[6,12,["H2603"]],[12,14,["H6035"]],[14,15,["H835"]],[15,17,[]]]},{"k":16794,"v":[[0,3,["H3808"]],[3,4,["H8582"]],[4,6,["H2790"]],[6,7,["H7451"]],[7,9,["H2617"]],[9,11,["H571"]],[11,17,["H2790"]],[17,18,["H2896"]]]},{"k":16795,"v":[[0,2,["H3605"]],[2,3,["H6089"]],[3,5,["H1961"]],[5,6,["H4195"]],[6,9,["H1697"]],[9,12,["H8193"]],[12,14,["H389"]],[14,16,["H4270"]]]},{"k":16796,"v":[[0,2,["H5850"]],[2,5,["H2450"]],[5,8,["H6239"]],[8,11,["H200"]],[11,13,["H3684"]],[13,15,["H200"]]]},{"k":16797,"v":[[0,2,["H571"]],[2,3,["H5707"]],[3,4,["H5337"]],[4,5,["H5315"]],[5,8,["H4820"]],[8,10,["H6315"]],[10,11,["H3577"]]]},{"k":16798,"v":[[0,3,["H3374"]],[3,6,["H3068"]],[6,8,["H5797"]],[8,9,["H4009"]],[9,12,["H1121"]],[12,14,["H1961"]],[14,18,["H4268"]]]},{"k":16799,"v":[[0,2,["H3374"]],[2,5,["H3068"]],[5,8,["H4726"]],[8,10,["H2416"]],[10,12,["H5493"]],[12,15,["H4480","H4170"]],[15,17,["H4194"]]]},{"k":16800,"v":[[0,3,["H7230"]],[3,5,["H5971"]],[5,8,["H4428"]],[8,9,["H1927"]],[9,13,["H657"]],[13,15,["H3816"]],[15,18,["H4288"]],[18,21,["H7333"]]]},{"k":16801,"v":[[0,4,["H750"]],[4,6,["H639"]],[6,9,["H7227"]],[9,10,["H8394"]],[10,15,["H7116"]],[15,17,["H7307"]],[17,18,["H7311"]],[18,19,["H200"]]]},{"k":16802,"v":[[0,2,["H4832"]],[2,3,["H3820"]],[3,6,["H2416"]],[6,9,["H1320"]],[9,11,["H7068"]],[11,13,["H7538"]],[13,16,["H6106"]]]},{"k":16803,"v":[[0,3,["H6231"]],[3,5,["H1800"]],[5,6,["H2778"]],[6,8,["H6213"]],[8,12,["H3513"]],[12,15,["H2603"]],[15,18,["H34"]]]},{"k":16804,"v":[[0,2,["H7563"]],[2,5,["H1760"]],[5,8,["H7451"]],[8,11,["H6662"]],[11,13,["H2620"]],[13,16,["H4194"]]]},{"k":16805,"v":[[0,1,["H2451"]],[1,2,["H5117"]],[2,5,["H3820"]],[5,10,["H995"]],[10,17,["H7130"]],[17,19,["H3684"]],[19,22,["H3045"]]]},{"k":16806,"v":[[0,1,["H6666"]],[1,2,["H7311"]],[2,4,["H1471"]],[4,6,["H2403"]],[6,9,["H2617"]],[9,12,["H3816"]]]},{"k":16807,"v":[[0,2,["H4428"]],[2,3,["H7522"]],[3,7,["H7919"]],[7,8,["H5650"]],[8,11,["H5678"]],[11,12,["H1961"]],[12,17,["H954"]]]},{"k":16808,"v":[[0,2,["H7390"]],[2,3,["H4617"]],[3,5,["H7725"]],[5,6,["H2534"]],[6,8,["H6089"]],[8,9,["H1697"]],[9,11,["H5927"]],[11,12,["H639"]]]},{"k":16809,"v":[[0,2,["H3956"]],[2,5,["H2450"]],[5,7,["H1847"]],[7,8,["H3190"]],[8,11,["H6310"]],[11,13,["H3684"]],[13,15,["H5042"]],[15,16,["H200"]]]},{"k":16810,"v":[[0,2,["H5869"]],[2,5,["H3068"]],[5,8,["H3605"]],[8,9,["H4725"]],[9,10,["H6822"]],[10,12,["H7451"]],[12,15,["H2896"]]]},{"k":16811,"v":[[0,2,["H4832"]],[2,3,["H3956"]],[3,6,["H6086"]],[6,8,["H2416"]],[8,10,["H5558"]],[10,14,["H7667"]],[14,17,["H7307"]]]},{"k":16812,"v":[[0,2,["H191"]],[2,3,["H5006"]],[3,5,["H1"]],[5,6,["H4148"]],[6,10,["H8104"]],[10,11,["H8433"]],[11,13,["H6191"]]]},{"k":16813,"v":[[0,3,["H1004"]],[3,6,["H6662"]],[6,8,["H7227"]],[8,9,["H2633"]],[9,13,["H8393"]],[13,16,["H7563"]],[16,18,["H5916"]]]},{"k":16814,"v":[[0,2,["H8193"]],[2,5,["H2450"]],[5,6,["H2219"]],[6,7,["H1847"]],[7,10,["H3820"]],[10,13,["H3684"]],[13,15,["H3808"]],[15,16,["H3651"]]]},{"k":16815,"v":[[0,2,["H2077"]],[2,5,["H7563"]],[5,8,["H8441"]],[8,11,["H3068"]],[11,14,["H8605"]],[14,17,["H3477"]],[17,20,["H7522"]]]},{"k":16816,"v":[[0,2,["H1870"]],[2,5,["H7563"]],[5,8,["H8441"]],[8,11,["H3068"]],[11,14,["H157"]],[14,18,["H7291"]],[18,19,["H6666"]]]},{"k":16817,"v":[[0,1,["H4148"]],[1,3,["H7451"]],[3,7,["H5800"]],[7,9,["H734"]],[9,13,["H8130"]],[13,14,["H8433"]],[14,16,["H4191"]]]},{"k":16818,"v":[[0,1,["H7585"]],[1,3,["H11"]],[3,5,["H5048"]],[5,7,["H3068"]],[7,11,["H637","H3588"]],[11,13,["H3826"]],[13,16,["H1121"]],[16,18,["H120"]]]},{"k":16819,"v":[[0,2,["H3887"]],[2,3,["H157"]],[3,4,["H3808"]],[4,7,["H3198"]],[7,9,["H3808"]],[9,12,["H1980"]],[12,13,["H413"]],[13,15,["H2450"]]]},{"k":16820,"v":[[0,2,["H8056"]],[2,3,["H3820"]],[3,6,["H3190"]],[6,7,["H6440"]],[7,10,["H6094"]],[10,13,["H3820"]],[13,15,["H7307"]],[15,17,["H5218"]]]},{"k":16821,"v":[[0,2,["H3820"]],[2,7,["H995"]],[7,8,["H1245"]],[8,9,["H1847"]],[9,12,["H6310"]],[12,14,["H3684"]],[14,16,["H7462"]],[16,17,["H200"]]]},{"k":16822,"v":[[0,1,["H3605"]],[1,3,["H3117"]],[3,6,["H6041"]],[6,8,["H7451"]],[8,15,["H2896"]],[15,16,["H3820"]],[16,19,["H8548"]],[19,20,["H4960"]]]},{"k":16823,"v":[[0,1,["H2896"]],[1,3,["H4592"]],[3,6,["H3374"]],[6,9,["H3068"]],[9,11,["H7227"]],[11,12,["H4480","H214"]],[12,14,["H4103"]],[14,15,[]]]},{"k":16824,"v":[[0,1,["H2896"]],[1,4,["H737"]],[4,6,["H3419"]],[6,7,["H8033"]],[7,8,["H160"]],[8,12,["H75"]],[12,13,["H4480","H7794"]],[13,15,["H8135"]],[15,16,[]]]},{"k":16825,"v":[[0,2,["H2534"]],[2,3,["H376"]],[3,5,["H1624"]],[5,6,["H4066"]],[6,11,["H750"]],[11,13,["H639"]],[13,14,["H8252"]],[14,15,["H7379"]]]},{"k":16826,"v":[[0,2,["H1870"]],[2,5,["H6102"]],[5,10,["H4881"]],[10,12,["H2312"]],[12,15,["H734"]],[15,18,["H3477"]],[18,21,["H5549"]]]},{"k":16827,"v":[[0,2,["H2450"]],[2,3,["H1121"]],[3,6,["H8055"]],[6,7,["H1"]],[7,10,["H3684"]],[10,11,["H120"]],[11,12,["H959"]],[12,14,["H517"]]]},{"k":16828,"v":[[0,1,["H200"]],[1,3,["H8057"]],[3,8,["H2638"]],[8,10,["H3820"]],[10,13,["H376"]],[13,15,["H8394"]],[15,16,["H1980"]],[16,17,["H3474"]]]},{"k":16829,"v":[[0,1,["H369"]],[1,2,["H5475"]],[2,3,["H4284"]],[3,5,["H6565"]],[5,9,["H7230"]],[9,11,["H3289"]],[11,14,["H6965"]]]},{"k":16830,"v":[[0,2,["H376"]],[2,4,["H8057"]],[4,7,["H4617"]],[7,10,["H6310"]],[10,13,["H1697"]],[13,17,["H6256"]],[17,18,["H4100"]],[18,19,["H2896"]],[19,21,[]]]},{"k":16831,"v":[[0,2,["H734"]],[2,4,["H2416"]],[4,6,["H4605"]],[6,9,["H7919"]],[9,10,["H4616"]],[10,13,["H5493"]],[13,15,["H4480","H7585"]],[15,16,["H4295"]]]},{"k":16832,"v":[[0,2,["H3068"]],[2,4,["H5255"]],[4,6,["H1004"]],[6,9,["H1343"]],[9,13,["H5324"]],[13,15,["H1366"]],[15,18,["H490"]]]},{"k":16833,"v":[[0,2,["H4284"]],[2,5,["H7451"]],[5,8,["H8441"]],[8,11,["H3068"]],[11,17,["H2889"]],[17,19,["H5278"]],[19,20,["H561"]]]},{"k":16834,"v":[[0,4,["H1214"]],[4,6,["H1215"]],[6,7,["H5916"]],[7,10,["H1004"]],[10,14,["H8130"]],[14,15,["H4979"]],[15,17,["H2421"]]]},{"k":16835,"v":[[0,2,["H3820"]],[2,5,["H6662"]],[5,6,["H1897"]],[6,8,["H6030"]],[8,11,["H6310"]],[11,14,["H7563"]],[14,16,["H5042"]],[16,18,["H7451"]]]},{"k":16836,"v":[[0,2,["H3068"]],[2,4,["H7350"]],[4,7,["H4480","H7563"]],[7,10,["H8085"]],[10,12,["H8605"]],[12,15,["H6662"]]]},{"k":16837,"v":[[0,2,["H3974"]],[2,5,["H5869"]],[5,6,["H8055"]],[6,8,["H3820"]],[8,11,["H2896"]],[11,12,["H8052"]],[12,15,["H6106"]],[15,16,["H1878"]]]},{"k":16838,"v":[[0,2,["H241"]],[2,4,["H8085"]],[4,6,["H8433"]],[6,8,["H2416"]],[8,9,["H3885"]],[9,10,["H7130"]],[10,12,["H2450"]]]},{"k":16839,"v":[[0,3,["H6544"]],[3,4,["H4148"]],[4,5,["H3988"]],[5,8,["H5315"]],[8,12,["H8085"]],[12,13,["H8433"]],[13,14,["H7069"]],[14,15,["H3820"]]]},{"k":16840,"v":[[0,2,["H3374"]],[2,5,["H3068"]],[5,8,["H4148"]],[8,10,["H2451"]],[10,12,["H6440"]],[12,13,["H3519"]],[13,15,["H6038"]]]},{"k":16841,"v":[[0,2,["H4633"]],[2,5,["H3820"]],[5,7,["H120"]],[7,10,["H4617"]],[10,13,["H3956"]],[13,17,["H4480","H3068"]]]},{"k":16842,"v":[[0,1,["H3605"]],[1,3,["H1870"]],[3,6,["H376"]],[6,8,["H2134"]],[8,12,["H5869"]],[12,15,["H3068"]],[15,16,["H8505"]],[16,18,["H7307"]]]},{"k":16843,"v":[[0,1,["H1556"]],[1,3,["H4639"]],[3,4,["H413"]],[4,6,["H3068"]],[6,9,["H4284"]],[9,12,["H3559"]]]},{"k":16844,"v":[[0,2,["H3068"]],[2,4,["H6466"]],[4,5,["H3605"]],[5,8,["H4617"]],[8,10,["H1571"]],[10,12,["H7563"]],[12,15,["H3117"]],[15,17,["H7451"]]]},{"k":16845,"v":[[0,2,["H3605"]],[2,5,["H1362"]],[5,7,["H3820"]],[7,10,["H8441"]],[10,13,["H3068"]],[13,15,["H3027"]],[15,18,["H3027"]],[18,21,["H3808"]],[21,23,["H5352"]]]},{"k":16846,"v":[[0,2,["H2617"]],[2,4,["H571"]],[4,5,["H5771"]],[5,7,["H3722"]],[7,11,["H3374"]],[11,14,["H3068"]],[14,16,["H5493"]],[16,18,["H4480","H7451"]]]},{"k":16847,"v":[[0,3,["H376"]],[3,4,["H1870"]],[4,5,["H7521"]],[5,7,["H3068"]],[7,10,["H1571"]],[10,12,["H341"]],[12,16,["H7999"]],[16,17,["H854"]],[17,18,[]]]},{"k":16848,"v":[[0,1,["H2896"]],[1,4,["H4592"]],[4,6,["H6666"]],[6,8,["H4480","H7230"]],[8,9,["H8393"]],[9,10,["H3808"]],[10,11,["H4941"]]]},{"k":16849,"v":[[0,2,["H120"]],[2,3,["H3820"]],[3,4,["H2803"]],[4,6,["H1870"]],[6,9,["H3068"]],[9,10,["H3559"]],[10,12,["H6806"]]]},{"k":16850,"v":[[0,3,["H7081"]],[3,5,["H5921"]],[5,7,["H8193"]],[7,10,["H4428"]],[10,12,["H6310"]],[12,13,["H4603"]],[13,14,["H3808"]],[14,16,["H4941"]]]},{"k":16851,"v":[[0,2,["H4941"]],[2,3,["H6425"]],[3,5,["H3976"]],[5,8,["H3068"]],[8,9,["H3605"]],[9,11,["H68"]],[11,14,["H3599"]],[14,17,["H4639"]]]},{"k":16852,"v":[[0,4,["H8441"]],[4,6,["H4428"]],[6,8,["H6213"]],[8,9,["H7562"]],[9,10,["H3588"]],[10,12,["H3678"]],[12,14,["H3559"]],[14,16,["H6666"]]]},{"k":16853,"v":[[0,1,["H6664"]],[1,2,["H8193"]],[2,5,["H7522"]],[5,7,["H4428"]],[7,10,["H157"]],[10,13,["H1696"]],[13,14,["H3477"]]]},{"k":16854,"v":[[0,2,["H2534"]],[2,5,["H4428"]],[5,8,["H4397"]],[8,10,["H4194"]],[10,13,["H2450"]],[13,14,["H376"]],[14,16,["H3722"]],[16,17,[]]]},{"k":16855,"v":[[0,3,["H216"]],[3,6,["H4428"]],[6,7,["H6440"]],[7,9,["H2416"]],[9,12,["H7522"]],[12,16,["H5645"]],[16,20,["H4456"]]]},{"k":16856,"v":[[0,2,["H4100"]],[2,3,["H2896"]],[3,7,["H7069"]],[7,8,["H2451"]],[8,10,["H4480","H2742"]],[10,13,["H7069"]],[13,14,["H998"]],[14,18,["H977"]],[18,20,["H4480","H3701"]]]},{"k":16857,"v":[[0,2,["H4546"]],[2,5,["H3477"]],[5,8,["H5493"]],[8,10,["H4480","H7451"]],[10,13,["H5341"]],[13,15,["H1870"]],[15,16,["H8104"]],[16,18,["H5315"]]]},{"k":16858,"v":[[0,1,["H1347"]],[1,3,["H6440"]],[3,4,["H7667"]],[4,7,["H1363"]],[7,8,["H7307"]],[8,9,["H6440"]],[9,11,["H3783"]]]},{"k":16859,"v":[[0,1,["H2896"]],[1,8,["H8217"]],[8,9,["H7307"]],[9,10,["H854"]],[10,12,["H6035"]],[12,15,["H4480","H2505"]],[15,17,["H7998"]],[17,18,["H854"]],[18,20,["H1343"]]]},{"k":16860,"v":[[0,6,["H7919","H5921","H1697"]],[6,8,["H4672"]],[8,9,["H2896"]],[9,12,["H982"]],[12,15,["H3068"]],[15,16,["H835"]],[16,18,[]]]},{"k":16861,"v":[[0,2,["H2450"]],[2,4,["H3820"]],[4,7,["H7121"]],[7,8,["H995"]],[8,11,["H4986"]],[11,14,["H8193"]],[14,15,["H3254"]],[15,16,["H3948"]]]},{"k":16862,"v":[[0,1,["H7922"]],[1,4,["H4726"]],[4,6,["H2416"]],[6,10,["H1167"]],[10,14,["H4148"]],[14,16,["H191"]],[16,18,["H200"]]]},{"k":16863,"v":[[0,2,["H3820"]],[2,5,["H2450"]],[5,6,["H7919"]],[6,8,["H6310"]],[8,10,["H3254"]],[10,11,["H3948"]],[11,12,["H5921"]],[12,14,["H8193"]]]},{"k":16864,"v":[[0,1,["H5278"]],[1,2,["H561"]],[2,6,["H6688","H1706"]],[6,7,["H4966"]],[7,10,["H5315"]],[10,12,["H4832"]],[12,15,["H6106"]]]},{"k":16865,"v":[[0,2,["H3426"]],[2,4,["H1870"]],[4,6,["H6440"]],[6,7,["H3477"]],[7,10,["H376"]],[10,13,["H319"]],[13,17,["H1870"]],[17,19,["H4194"]]]},{"k":16866,"v":[[0,1,["H5315"]],[1,3,["H6001"]],[3,4,["H5998"]],[4,7,["H3588"]],[7,9,["H6310"]],[9,10,["H404"]],[10,12,["H5921"]],[12,13,[]]]},{"k":16867,"v":[[0,2,["H1100"]],[2,3,["H376"]],[3,5,["H3738"]],[5,6,["H7451"]],[6,8,["H5921"]],[8,10,["H8193"]],[10,15,["H6867"]],[15,16,["H784"]]]},{"k":16868,"v":[[0,2,["H8419"]],[2,3,["H376"]],[3,4,["H7971"]],[4,5,["H4066"]],[5,8,["H5372"]],[8,9,["H6504"]],[9,11,["H441"]]]},{"k":16869,"v":[[0,2,["H2555"]],[2,3,["H376"]],[3,4,["H6601"]],[4,6,["H7453"]],[6,8,["H1980"]],[8,12,["H1870"]],[12,15,["H3808"]],[15,16,["H2896"]]]},{"k":16870,"v":[[0,2,["H6095"]],[2,4,["H5869"]],[4,6,["H2803"]],[6,8,["H8419"]],[8,9,["H7169"]],[9,11,["H8193"]],[11,16,["H3615","H7451"]]]},{"k":16871,"v":[[0,2,["H7872"]],[2,6,["H5850"]],[6,8,["H8597"]],[8,12,["H4672"]],[12,15,["H1870"]],[15,17,["H6666"]]]},{"k":16872,"v":[[0,4,["H750"]],[4,6,["H639"]],[6,8,["H2896"]],[8,11,["H4480","H1368"]],[11,15,["H4910"]],[15,17,["H7307"]],[17,21,["H4480","H3920"]],[21,23,["H5892"]]]},{"k":16873,"v":[[0,0,["(H853)"]],[0,2,["H1486"]],[2,4,["H2904"]],[4,7,["H2436"]],[7,10,["H3605"]],[10,11,["H4941"]],[11,16,["H4480","H3068"]]]},{"k":16874,"v":[[0,1,["H2896"]],[1,4,["H2720"]],[4,5,["H6595"]],[5,7,["H7962"]],[7,11,["H4480","H1004"]],[11,12,["H4392"]],[12,14,["H2077"]],[14,16,["H7379"]]]},{"k":16875,"v":[[0,2,["H7919"]],[2,3,["H5650"]],[3,6,["H4910"]],[6,9,["H1121"]],[9,12,["H954"]],[12,16,["H2505"]],[16,19,["H5159"]],[19,20,["H8432"]],[20,22,["H251"]]]},{"k":16876,"v":[[0,3,["H4715"]],[3,6,["H3701"]],[6,9,["H3564"]],[9,11,["H2091"]],[11,14,["H3068"]],[14,15,["H974"]],[15,17,["H3826"]]]},{"k":16877,"v":[[0,3,["H7489"]],[3,5,["H7181"]],[5,6,["H5921"]],[6,7,["H205"]],[7,8,["H8193"]],[8,11,["H8267"]],[11,13,["H238"]],[13,14,["H5921"]],[14,16,["H1942"]],[16,17,["H3956"]]]},{"k":16878,"v":[[0,2,["H3932"]],[2,4,["H7326"]],[4,5,["H2778"]],[5,7,["H6213"]],[7,12,["H8056"]],[12,14,["H343"]],[14,16,["H3808"]],[16,18,["H5352"]]]},{"k":16879,"v":[[0,1,["H1121"]],[1,2,["H1121"]],[2,5,["H5850"]],[5,8,["H2205"]],[8,11,["H8597"]],[11,13,["H1121"]],[13,16,["H1"]]]},{"k":16880,"v":[[0,1,["H3499"]],[1,2,["H8193"]],[2,3,["H5000"]],[3,4,["H3808"]],[4,6,["H5036"]],[6,8,["H637","H3588"]],[8,10,["H8267"]],[10,11,["H8193"]],[11,13,["H5081"]]]},{"k":16881,"v":[[0,2,["H7810"]],[2,6,["H2580"]],[6,7,["H68"]],[7,10,["H5869"]],[10,14,["H1167"]],[14,16,["H413","H3605","H834"]],[16,18,["H6437"]],[18,20,["H7919"]]]},{"k":16882,"v":[[0,3,["H3680"]],[3,5,["H6588"]],[5,6,["H1245"]],[6,7,["H160"]],[7,11,["H8138"]],[11,13,["H1697"]],[13,14,["H6504"]],[14,16,["H441"]]]},{"k":16883,"v":[[0,2,["H1606"]],[2,4,["H5181"]],[4,7,["H995"]],[7,11,["H3967"]],[11,12,["H4480","H5221"]],[12,15,["H3684"]]]},{"k":16884,"v":[[0,2,["H7451"]],[2,4,["H1245"]],[4,5,["H389"]],[5,6,["H4805"]],[6,9,["H394"]],[9,10,["H4397"]],[10,13,["H7971"]],[13,15,[]]]},{"k":16885,"v":[[0,3,["H1677"]],[3,4,["H7909"]],[4,8,["H6298"]],[8,10,["H376"]],[10,11,["H408"]],[11,14,["H3684"]],[14,17,["H200"]]]},{"k":16886,"v":[[0,2,["H7725"]],[2,3,["H7451"]],[3,4,["H8478"]],[4,5,["H2896"]],[5,6,["H7451"]],[6,8,["H3808"]],[8,9,["H4185"]],[9,12,["H4480","H1004"]]]},{"k":16887,"v":[[0,2,["H7225"]],[2,4,["H4066"]],[4,10,["H6362"]],[10,11,["H4325"]],[11,14,["H5203"]],[14,15,["H7379"]],[15,16,["H6440"]],[16,20,["H1566"]]]},{"k":16888,"v":[[0,3,["H6663"]],[3,5,["H7563"]],[5,9,["H7561"]],[9,11,["H6662"]],[11,12,["H1571"]],[12,14,["H8147"]],[14,16,["H8441"]],[16,19,["H3068"]]]},{"k":16889,"v":[[0,1,["H4100","H2088"]],[1,5,["H4242"]],[5,8,["H3027"]],[8,11,["H3684"]],[11,13,["H7069"]],[13,14,["H2451"]],[14,18,["H369"]],[18,19,["H3820"]],[19,21,[]]]},{"k":16890,"v":[[0,2,["H7453"]],[2,3,["H157"]],[3,5,["H3605"]],[5,6,["H6256"]],[6,9,["H251"]],[9,11,["H3205"]],[11,13,["H6869"]]]},{"k":16891,"v":[[0,2,["H120"]],[2,3,["H2638"]],[3,5,["H3820"]],[5,6,["H8628"]],[6,7,["H3709"]],[7,9,["H6148"]],[9,10,["H6161"]],[10,13,["H6440"]],[13,16,["H7453"]]]},{"k":16892,"v":[[0,2,["H157"]],[2,3,["H6588"]],[3,5,["H157"]],[5,6,["H4683"]],[6,10,["H1361"]],[10,12,["H6607"]],[12,13,["H1245"]],[13,14,["H7667"]]]},{"k":16893,"v":[[0,5,["H6141"]],[5,6,["H3820"]],[6,7,["H4672"]],[7,8,["H3808"]],[8,9,["H2896"]],[9,15,["H2015"]],[15,16,["H3956"]],[16,17,["H5307"]],[17,19,["H7451"]]]},{"k":16894,"v":[[0,3,["H3205"]],[3,5,["H3684"]],[5,10,["H8424"]],[10,13,["H1"]],[13,16,["H5036"]],[16,18,["H3808"]],[18,19,["H8055"]]]},{"k":16895,"v":[[0,2,["H8056"]],[2,3,["H3820"]],[3,5,["H3190"]],[5,8,["H1456"]],[8,11,["H5218"]],[11,12,["H7307"]],[12,13,["H3001"]],[13,15,["H1634"]]]},{"k":16896,"v":[[0,2,["H7563"]],[2,4,["H3947"]],[4,6,["H7810"]],[6,10,["H4480","H2436"]],[10,12,["H5186"]],[12,14,["H734"]],[14,16,["H4941"]]]},{"k":16897,"v":[[0,1,["H2451"]],[1,3,["H854","H6440"]],[3,7,["H995"]],[7,10,["H5869"]],[10,13,["H3684"]],[13,17,["H7097"]],[17,20,["H776"]]]},{"k":16898,"v":[[0,2,["H3684"]],[2,3,["H1121"]],[3,6,["H3708"]],[6,9,["H1"]],[9,11,["H4470"]],[11,15,["H3205"]],[15,16,[]]]},{"k":16899,"v":[[0,1,["H1571"]],[1,3,["H6064"]],[3,5,["H6662"]],[5,7,["H3808"]],[7,8,["H2896"]],[8,11,["H5221"]],[11,12,["H5081"]],[12,13,["H5921"]],[13,14,["H3476"]]]},{"k":16900,"v":[[0,4,["H3045","H1847"]],[4,5,["H2820"]],[5,7,["H561"]],[7,10,["H376"]],[10,12,["H8394"]],[12,16,["H3368"]],[16,17,["H7307"]]]},{"k":16901,"v":[[0,1,["H1571"]],[1,3,["H191"]],[3,8,["H2790"]],[8,10,["H2803"]],[10,11,["H2450"]],[11,15,["H331"]],[15,17,["H8193"]],[17,23,["H995"]]]},{"k":16902,"v":[[0,2,["H8378"]],[2,7,["H6504"]],[7,8,["H1245"]],[8,10,["H1566"]],[10,12,["H3605"]],[12,13,["H8454"]]]},{"k":16903,"v":[[0,2,["H3684"]],[2,4,["H3808"]],[4,5,["H2654"]],[5,7,["H8394"]],[7,8,["H3588","H518"]],[8,11,["H3820"]],[11,14,["H1540"]]]},{"k":16904,"v":[[0,3,["H7563"]],[3,4,["H935"]],[4,6,["H935"]],[6,7,["H1571"]],[7,8,["H937"]],[8,10,["H5973"]],[10,11,["H7036"]],[11,12,["H2781"]]]},{"k":16905,"v":[[0,2,["H1697"]],[2,5,["H376"]],[5,6,["H6310"]],[6,9,["H6013"]],[9,10,["H4325"]],[10,13,["H4726"]],[13,15,["H2451"]],[15,18,["H5042"]],[18,19,["H5158"]]]},{"k":16906,"v":[[0,3,["H3808"]],[3,4,["H2896"]],[4,6,["H5375"]],[6,8,["H6440"]],[8,11,["H7563"]],[11,13,["H5186"]],[13,15,["H6662"]],[15,17,["H4941"]]]},{"k":16907,"v":[[0,2,["H3684"]],[2,3,["H8193"]],[3,4,["H935"]],[4,6,["H7379"]],[6,9,["H6310"]],[9,10,["H7121"]],[10,12,["H4112"]]]},{"k":16908,"v":[[0,2,["H3684"]],[2,3,["H6310"]],[3,6,["H4288"]],[6,9,["H8193"]],[9,12,["H4170"]],[12,15,["H5315"]]]},{"k":16909,"v":[[0,2,["H1697"]],[2,5,["H5372"]],[5,8,["H3859"]],[8,10,["H1992"]],[10,12,["H3381"]],[12,16,["H2315"]],[16,19,["H990"]]]},{"k":16910,"v":[[0,1,["H1931"]],[1,2,["H1571"]],[2,5,["H7503"]],[5,8,["H4399"]],[8,10,["H251"]],[10,16,["H1167"]],[16,17,["H4889"]]]},{"k":16911,"v":[[0,2,["H8034"]],[2,5,["H3068"]],[5,8,["H5797"]],[8,9,["H4026"]],[9,11,["H6662"]],[11,12,["H7323"]],[12,17,["H7682"]]]},{"k":16912,"v":[[0,3,["H6223"]],[3,4,["H1952"]],[4,7,["H5797"]],[7,8,["H7151"]],[8,12,["H7682"]],[12,13,["H2346"]],[13,17,["H4906"]]]},{"k":16913,"v":[[0,1,["H6440"]],[1,2,["H7667"]],[2,4,["H3820"]],[4,6,["H376"]],[6,8,["H1361"]],[8,10,["H6440"]],[10,11,["H3519"]],[11,13,["H6038"]]]},{"k":16914,"v":[[0,3,["H7725"]],[3,5,["H1697"]],[5,6,["H2962"]],[6,8,["H8085"]],[8,10,["H1931"]],[10,12,["H200"]],[12,14,["H3639"]],[14,16,[]]]},{"k":16915,"v":[[0,2,["H7307"]],[2,5,["H376"]],[5,7,["H3557"]],[7,9,["H4245"]],[9,12,["H5218"]],[12,13,["H7307"]],[13,14,["H4310"]],[14,16,["H5375"]]]},{"k":16916,"v":[[0,2,["H3820"]],[2,5,["H995"]],[5,6,["H7069"]],[6,7,["H1847"]],[7,10,["H241"]],[10,13,["H2450"]],[13,14,["H1245"]],[14,15,["H1847"]]]},{"k":16917,"v":[[0,2,["H120"]],[2,3,["H4976"]],[3,5,["H7337"]],[5,9,["H5148"]],[9,11,["H6440"]],[11,12,["H1419"]],[12,13,[]]]},{"k":16918,"v":[[0,4,["H7223"]],[4,8,["H7379"]],[8,10,["H6662"]],[10,13,["H7453"]],[13,14,["H935"]],[14,16,["H2713"]],[16,17,[]]]},{"k":16919,"v":[[0,2,["H1486"]],[2,4,["H4079"]],[4,6,["H7673"]],[6,8,["H6504"]],[8,9,["H996"]],[9,11,["H6099"]]]},{"k":16920,"v":[[0,2,["H251"]],[2,3,["H6586"]],[3,11,["H5797"]],[11,12,["H4480","H7151"]],[12,15,["H4079"]],[15,19,["H1280"]],[19,22,["H759"]]]},{"k":16921,"v":[[0,2,["H376"]],[2,3,["H990"]],[3,6,["H7646"]],[6,9,["H4480","H6529"]],[9,12,["H6310"]],[12,16,["H8393"]],[16,19,["H8193"]],[19,23,["H7646"]]]},{"k":16922,"v":[[0,1,["H4194"]],[1,3,["H2416"]],[3,7,["H3027"]],[7,10,["H3956"]],[10,14,["H157"]],[14,17,["H398"]],[17,19,["H6529"]],[19,20,[]]]},{"k":16923,"v":[[0,2,["H4672"]],[2,4,["H802"]],[4,5,["H4672"]],[5,7,["H2896"]],[7,10,["H6329"]],[10,11,["H7522"]],[11,14,["H4480","H3068"]]]},{"k":16924,"v":[[0,2,["H7326"]],[2,3,["H1696"]],[3,4,["H8469"]],[4,7,["H6223"]],[7,8,["H6030"]],[8,9,["H5794"]]]},{"k":16925,"v":[[0,2,["H376"]],[2,5,["H7453"]],[5,9,["H7489"]],[9,12,["H3426"]],[12,14,["H157"]],[14,17,["H1695"]],[17,20,["H4480","H251"]]]},{"k":16926,"v":[[0,1,["H2896"]],[1,4,["H7326"]],[4,6,["H1980"]],[6,9,["H8537"]],[9,14,["H4480","H6141"]],[14,17,["H8193"]],[17,21,["H3684"]]]},{"k":16927,"v":[[0,1,["H1571"]],[1,4,["H5315"]],[4,6,["H3808"]],[6,7,["H1847"]],[7,10,["H3808"]],[10,11,["H2896"]],[11,15,["H213"]],[15,18,["H7272"]],[18,19,["H2398"]]]},{"k":16928,"v":[[0,2,["H200"]],[2,4,["H120"]],[4,5,["H5557"]],[5,7,["H1870"]],[7,10,["H3820"]],[10,11,["H2196"]],[11,12,["H5921"]],[12,14,["H3068"]]]},{"k":16929,"v":[[0,1,["H1952"]],[1,2,["H3254"]],[2,3,["H7227"]],[3,4,["H7453"]],[4,7,["H1800"]],[7,9,["H6504"]],[9,12,["H4480","H7453"]]]},{"k":16930,"v":[[0,2,["H8267"]],[2,3,["H5707"]],[3,5,["H3808"]],[5,7,["H5352"]],[7,11,["H6315"]],[11,12,["H3577"]],[12,14,["H3808"]],[14,15,["H4422"]]]},{"k":16931,"v":[[0,1,["H7227"]],[1,3,["H2470"]],[3,5,["H6440"]],[5,8,["H5081"]],[8,11,["H3605"]],[11,14,["H7453"]],[14,19,["H376","H4976"]]]},{"k":16932,"v":[[0,1,["H3605"]],[1,3,["H251"]],[3,6,["H7326"]],[6,8,["H8130"]],[8,12,["H637","H3588"]],[12,15,["H4828"]],[15,17,["H7368"]],[17,18,["H4480"]],[18,21,["H7291"]],[21,24,["H561"]],[24,26,["H1992"]],[26,28,["H3808"]],[28,30,[]]]},{"k":16933,"v":[[0,3,["H7069"]],[3,4,["H3820"]],[4,5,["H157"]],[5,8,["H5315"]],[8,11,["H8104"]],[11,12,["H8394"]],[12,14,["H4672"]],[14,15,["H2896"]]]},{"k":16934,"v":[[0,2,["H8267"]],[2,3,["H5707"]],[3,5,["H3808"]],[5,7,["H5352"]],[7,11,["H6315"]],[11,12,["H3577"]],[12,14,["H6"]]]},{"k":16935,"v":[[0,1,["H8588"]],[1,3,["H3808"]],[3,4,["H5000"]],[4,7,["H3684"]],[7,9,["H637"]],[9,10,["H3588"]],[10,12,["H5650"]],[12,15,["H4910"]],[15,17,["H8269"]]]},{"k":16936,"v":[[0,2,["H7922"]],[2,5,["H120"]],[5,6,["H748"]],[6,8,["H639"]],[8,13,["H8597"]],[13,15,["H5674"]],[15,16,["H5921"]],[16,18,["H6588"]]]},{"k":16937,"v":[[0,2,["H4428"]],[2,3,["H2197"]],[3,7,["H5099"]],[7,10,["H3715"]],[10,13,["H7522"]],[13,16,["H2919"]],[16,17,["H5921"]],[17,19,["H6212"]]]},{"k":16938,"v":[[0,2,["H3684"]],[2,3,["H1121"]],[3,6,["H1942"]],[6,9,["H1"]],[9,12,["H4079"]],[12,15,["H802"]],[15,18,["H2956"]],[18,19,["H1812"]]]},{"k":16939,"v":[[0,1,["H1004"]],[1,3,["H1952"]],[3,6,["H5159"]],[6,8,["H1"]],[8,11,["H7919"]],[11,12,["H802"]],[12,16,["H4480","H3068"]]]},{"k":16940,"v":[[0,1,["H6103"]],[1,2,["H5307"]],[2,6,["H8639"]],[6,9,["H7423"]],[9,10,["H5315"]],[10,13,["H7456"]]]},{"k":16941,"v":[[0,3,["H8104"]],[3,5,["H4687"]],[5,6,["H8104"]],[6,9,["H5315"]],[9,13,["H959"]],[13,15,["H1870"]],[15,17,["H4191"]]]},{"k":16942,"v":[[0,4,["H2603"]],[4,7,["H1800"]],[7,8,["H3867"]],[8,11,["H3068"]],[11,17,["H1576"]],[17,22,["H7999"]]]},{"k":16943,"v":[[0,1,["H3256"]],[1,3,["H1121"]],[3,4,["H3588"]],[4,6,["H3426"]],[6,7,["H8615"]],[7,10,["H408"]],[10,12,["H5315"]],[12,13,["H5375"]],[13,14,["H413"]],[14,16,["H4191"]]]},{"k":16944,"v":[[0,4,["H1419"]],[4,5,["H2534"]],[5,7,["H5375"]],[7,8,["H6066"]],[8,9,["H3588"]],[9,10,["H518"]],[10,12,["H5337"]],[12,14,["H5750"]],[14,19,["H3254"]]]},{"k":16945,"v":[[0,1,["H8085"]],[1,2,["H6098"]],[2,4,["H6901"]],[4,5,["H4148"]],[5,6,["H4616"]],[6,10,["H2449"]],[10,13,["H319"]],[13,14,[]]]},{"k":16946,"v":[[0,3,["H7227"]],[3,4,["H4284"]],[4,7,["H376"]],[7,8,["H3820"]],[8,11,["H6098"]],[11,14,["H3068"]],[14,15,["H1931"]],[15,17,["H6965"]]]},{"k":16947,"v":[[0,2,["H8378"]],[2,5,["H120"]],[5,8,["H2617"]],[8,11,["H7326"]],[11,12,["H4480","H376"]],[12,14,["H2896"]],[14,17,["H3577"]]]},{"k":16948,"v":[[0,2,["H3374"]],[2,5,["H3068"]],[5,8,["H2416"]],[8,15,["H3885"]],[15,16,["H7649"]],[16,19,["H1077"]],[19,21,["H6485"]],[21,23,["H7451"]]]},{"k":16949,"v":[[0,2,["H6102"]],[2,4,["H2934"]],[4,6,["H3027"]],[6,9,["H6747"]],[9,12,["H3808"]],[12,14,["H1571"]],[14,21,["H413","H6310","H7725"]]]},{"k":16950,"v":[[0,1,["H5221"]],[1,3,["H3887"]],[3,6,["H6612"]],[6,8,["H6191"]],[8,10,["H3198"]],[10,14,["H995"]],[14,18,["H995"]],[18,19,["H1847"]]]},{"k":16951,"v":[[0,3,["H7703"]],[3,5,["H1"]],[5,8,["H1272"]],[8,10,["H517"]],[10,13,["H1121"]],[13,16,["H954"]],[16,19,["H2659"]]]},{"k":16952,"v":[[0,1,["H2308"]],[1,3,["H1121"]],[3,5,["H8085"]],[5,7,["H4148"]],[7,11,["H7686"]],[11,14,["H4480","H561"]],[14,16,["H1847"]]]},{"k":16953,"v":[[0,2,["H1100"]],[2,3,["H5707"]],[3,4,["H3887"]],[4,5,["H4941"]],[5,8,["H6310"]],[8,11,["H7563"]],[11,12,["H1104"]],[12,13,["H205"]]]},{"k":16954,"v":[[0,1,["H8201"]],[1,3,["H3559"]],[3,5,["H3887"]],[5,7,["H4112"]],[7,10,["H1460"]],[10,12,["H3684"]]]},{"k":16955,"v":[[0,1,["H3196"]],[1,4,["H3887"]],[4,6,["H7941"]],[6,8,["H1993"]],[8,10,["H3605"]],[10,12,["H7686"]],[12,15,["H3808"]],[15,16,["H2449"]]]},{"k":16956,"v":[[0,2,["H367"]],[2,5,["H4428"]],[5,9,["H5099"]],[9,12,["H3715"]],[12,17,["H5674"]],[17,18,["H2398"]],[18,22,["H5315"]]]},{"k":16957,"v":[[0,4,["H3519"]],[4,7,["H376"]],[7,9,["H7674"]],[9,11,["H4480","H7379"]],[11,13,["H3605"]],[13,14,["H191"]],[14,17,["H1566"]]]},{"k":16958,"v":[[0,2,["H6102"]],[2,4,["H3808"]],[4,5,["H2790"]],[5,10,["H4480","H2779"]],[10,14,["H7592"]],[14,16,["H7105"]],[16,19,["H369"]]]},{"k":16959,"v":[[0,1,["H6098"]],[1,4,["H3820"]],[4,6,["H376"]],[6,9,["H6013"]],[9,10,["H4325"]],[10,13,["H376"]],[13,15,["H8394"]],[15,19,["H1802"]]]},{"k":16960,"v":[[0,1,["H7230"]],[1,2,["H120"]],[2,4,["H7121"]],[4,6,["H376"]],[6,9,["H2617"]],[9,12,["H529"]],[12,13,["H376"]],[13,14,["H4310"]],[14,16,["H4672"]]]},{"k":16961,"v":[[0,2,["H6662"]],[2,4,["H1980"]],[4,7,["H8537"]],[7,9,["H1121"]],[9,11,["H835"]],[11,12,["H310"]],[12,13,[]]]},{"k":16962,"v":[[0,2,["H4428"]],[2,4,["H3427"]],[4,5,["H5921"]],[5,7,["H3678"]],[7,9,["H1779"]],[9,11,["H2219"]],[11,12,["H3605"]],[12,13,["H7451"]],[13,16,["H5869"]]]},{"k":16963,"v":[[0,1,["H4310"]],[1,3,["H559"]],[3,8,["H3820"]],[8,9,["H2135"]],[9,12,["H2891"]],[12,15,["H4480","H2403"]]]},{"k":16964,"v":[[0,2,["H68","H68"]],[2,5,["H374","H374"]],[5,6,["H8147"]],[6,10,["H1571"]],[10,11,["H8441"]],[11,14,["H3068"]]]},{"k":16965,"v":[[0,1,["H1571"]],[1,3,["H5288"]],[3,5,["H5234"]],[5,8,["H4611"]],[8,9,["H518"]],[9,11,["H6467"]],[11,13,["H2134"]],[13,15,["H518"]],[15,18,["H3477"]]]},{"k":16966,"v":[[0,2,["H8085"]],[2,3,["H241"]],[3,6,["H7200"]],[6,7,["H5869"]],[7,9,["H3068"]],[9,11,["H6213"]],[11,12,["H1571"]],[12,13,["H8147"]],[13,15,[]]]},{"k":16967,"v":[[0,1,["H157"]],[1,2,["H408"]],[2,3,["H8142"]],[3,4,["H6435"]],[4,8,["H3423"]],[8,9,["H6491"]],[9,11,["H5869"]],[11,16,["H7646"]],[16,18,["H3899"]]]},{"k":16968,"v":[[0,3,["H7451"]],[3,6,["H7451"]],[6,7,["H559"]],[7,9,["H7069"]],[9,16,["H235"]],[16,17,["H227"]],[17,19,["H1984"]]]},{"k":16969,"v":[[0,2,["H3426"]],[2,3,["H2091"]],[3,6,["H7230"]],[6,8,["H6443"]],[8,11,["H8193"]],[11,13,["H1847"]],[13,16,["H3366"]],[16,17,["H3627"]]]},{"k":16970,"v":[[0,1,["H3947"]],[1,3,["H899"]],[3,4,["H3588"]],[4,6,["H6148"]],[6,9,["H2114"]],[9,13,["H2254"]],[13,16,["H1157"]],[16,19,["H5237"]]]},{"k":16971,"v":[[0,1,["H3899"]],[1,3,["H8267"]],[3,5,["H6156"]],[5,8,["H376"]],[8,10,["H310"]],[10,12,["H6310"]],[12,15,["H4390"]],[15,17,["H2687"]]]},{"k":16972,"v":[[0,2,["H4284"]],[2,4,["H3559"]],[4,6,["H6098"]],[6,10,["H8458"]],[10,11,["H6213"]],[11,12,["H4421"]]]},{"k":16973,"v":[[0,4,["H1980"]],[4,7,["H7400"]],[7,8,["H1540"]],[8,9,["H5475"]],[9,11,["H6148"]],[11,12,["H3808"]],[12,16,["H6601"]],[16,19,["H8193"]]]},{"k":16974,"v":[[0,2,["H7043"]],[2,4,["H1"]],[4,7,["H517"]],[7,9,["H5216"]],[9,13,["H1846"]],[13,15,["H380"]],[15,16,["H2822"]]]},{"k":16975,"v":[[0,2,["H5159"]],[2,6,["H926"]],[6,9,["H7223"]],[9,12,["H319"]],[12,15,["H3808"]],[15,17,["H1288"]]]},{"k":16976,"v":[[0,1,["H559"]],[1,2,["H408"]],[2,6,["H7999"]],[6,7,["H7451"]],[7,9,["H6960"]],[9,12,["H3068"]],[12,16,["H3467"]],[16,17,[]]]},{"k":16977,"v":[[0,2,["H68","H68"]],[2,5,["H8441"]],[5,8,["H3068"]],[8,11,["H4820"]],[11,12,["H3976"]],[12,14,["H3808"]],[14,15,["H2896"]]]},{"k":16978,"v":[[0,1,["H1397"]],[1,2,["H4703"]],[2,6,["H4480","H3068"]],[6,7,["H4100"]],[7,10,["H120"]],[10,12,["H995"]],[12,15,["H1870"]]]},{"k":16979,"v":[[0,4,["H4170"]],[4,7,["H120"]],[7,9,["H3216"]],[9,13,["H6944"]],[13,15,["H310"]],[15,16,["H5088"]],[16,19,["H1239"]]]},{"k":16980,"v":[[0,2,["H2450"]],[2,3,["H4428"]],[3,4,["H2219"]],[4,6,["H7563"]],[6,8,["H7725"]],[8,10,["H212"]],[10,11,["H5921"]],[11,12,[]]]},{"k":16981,"v":[[0,2,["H5397"]],[2,4,["H120"]],[4,7,["H5216"]],[7,10,["H3068"]],[10,11,["H2664"]],[11,12,["H3605"]],[12,15,["H2315"]],[15,18,["H990"]]]},{"k":16982,"v":[[0,1,["H2617"]],[1,3,["H571"]],[3,4,["H5341"]],[4,6,["H4428"]],[6,9,["H3678"]],[9,11,["H5582"]],[11,13,["H2617"]]]},{"k":16983,"v":[[0,2,["H8597"]],[2,5,["H970"]],[5,8,["H3581"]],[8,11,["H1926"]],[11,14,["H2205"]],[14,18,["H7872"]]]},{"k":16984,"v":[[0,2,["H2250"]],[2,5,["H6482"]],[5,7,["H8562"]],[7,8,["H7451"]],[8,11,["H4347"]],[11,14,["H2315"]],[14,17,["H990"]]]},{"k":16985,"v":[[0,2,["H4428"]],[2,3,["H3820"]],[3,7,["H3027"]],[7,10,["H3068"]],[10,13,["H6388"]],[13,15,["H4325"]],[15,17,["H5186"]],[17,19,["H5921","H3605","H834"]],[19,21,["H2654"]]]},{"k":16986,"v":[[0,1,["H3605"]],[1,2,["H1870"]],[2,5,["H376"]],[5,7,["H3477"]],[7,11,["H5869"]],[11,14,["H3068"]],[14,15,["H8505"]],[15,17,["H3826"]]]},{"k":16987,"v":[[0,2,["H6213"]],[2,3,["H6666"]],[3,5,["H4941"]],[5,8,["H977"]],[8,11,["H3068"]],[11,13,["H4480","H2077"]]]},{"k":16988,"v":[[0,2,["H7312"]],[2,3,["H5869"]],[3,6,["H7342"]],[6,7,["H3820"]],[7,10,["H5215"]],[10,13,["H7563"]],[13,15,["H2403"]]]},{"k":16989,"v":[[0,2,["H4284"]],[2,5,["H2742"]],[5,7,["H389"]],[7,9,["H4195"]],[9,13,["H3605"]],[13,16,["H213"]],[16,17,["H389"]],[17,19,["H4270"]]]},{"k":16990,"v":[[0,2,["H6467"]],[2,4,["H214"]],[4,7,["H8267"]],[7,8,["H3956"]],[8,11,["H1892"]],[11,15,["H5086"]],[15,19,["H1245"]],[19,20,["H4194"]]]},{"k":16991,"v":[[0,2,["H7701"]],[2,5,["H7563"]],[5,7,["H1641"]],[7,9,["H3588"]],[9,11,["H3985"]],[11,13,["H6213"]],[13,14,["H4941"]]]},{"k":16992,"v":[[0,2,["H1870"]],[2,4,["H376"]],[4,6,["H2019"]],[6,8,["H2054"]],[8,13,["H2134"]],[13,15,["H6467"]],[15,17,["H3477"]]]},{"k":16993,"v":[[0,3,["H2896"]],[3,5,["H3427"]],[5,6,["H5921"]],[6,8,["H6438"]],[8,11,["H1406"]],[11,15,["H4079"]],[15,16,["H4480","H802"]],[16,19,["H2267"]],[19,20,["H1004"]]]},{"k":16994,"v":[[0,2,["H5315"]],[2,5,["H7563"]],[5,6,["H183"]],[6,7,["H7451"]],[7,9,["H7453"]],[9,11,["H3808"]],[11,12,["H2603"]],[12,15,["H5869"]]]},{"k":16995,"v":[[0,3,["H3887"]],[3,5,["H6064"]],[5,7,["H6612"]],[7,10,["H2449"]],[10,14,["H2450"]],[14,16,["H7919"]],[16,18,["H3947"]],[18,19,["H1847"]]]},{"k":16996,"v":[[0,2,["H6662"]],[2,5,["H7919"]],[5,7,["H1004"]],[7,10,["H7563"]],[10,13,["H5557"]],[13,15,["H7563"]],[15,18,["H7451"]]]},{"k":16997,"v":[[0,2,["H331"]],[2,4,["H241"]],[4,7,["H4480","H2201"]],[7,10,["H1800"]],[10,12,["H1571"]],[12,14,["H7121"]],[14,15,["H1931"]],[15,18,["H3808"]],[18,20,["H6030"]]]},{"k":16998,"v":[[0,2,["H4976"]],[2,4,["H5643"]],[4,5,["H3711"]],[5,6,["H639"]],[6,9,["H7810"]],[9,12,["H2436"]],[12,13,["H5794"]],[13,14,["H2534"]]]},{"k":16999,"v":[[0,3,["H8057"]],[3,6,["H6662"]],[6,8,["H6213"]],[8,9,["H4941"]],[9,11,["H4288"]],[11,16,["H6466"]],[16,18,["H205"]]]},{"k":17000,"v":[[0,2,["H120"]],[2,4,["H8582"]],[4,8,["H4480","H1870"]],[8,10,["H7919"]],[10,12,["H5117"]],[12,15,["H6951"]],[15,18,["H7496"]]]},{"k":17001,"v":[[0,3,["H157"]],[3,4,["H8057"]],[4,8,["H4270"]],[8,9,["H376"]],[9,12,["H157"]],[12,13,["H3196"]],[13,15,["H8081"]],[15,17,["H3808"]],[17,19,["H6238"]]]},{"k":17002,"v":[[0,2,["H7563"]],[2,6,["H3724"]],[6,9,["H6662"]],[9,12,["H898"]],[12,13,["H8478"]],[13,15,["H3477"]]]},{"k":17003,"v":[[0,3,["H2896"]],[3,5,["H3427"]],[5,8,["H776","H4057"]],[8,12,["H4079"]],[12,15,["H3708"]],[15,16,["H4480","H802"]]]},{"k":17004,"v":[[0,3,["H214"]],[3,6,["H2530"]],[6,8,["H8081"]],[8,11,["H5116"]],[11,14,["H2450"]],[14,17,["H3684"]],[17,18,["H120"]],[18,21,["H1104"]]]},{"k":17005,"v":[[0,3,["H7291"]],[3,5,["H6666"]],[5,7,["H2617"]],[7,8,["H4672"]],[8,9,["H2416"]],[9,10,["H6666"]],[10,12,["H3519"]]]},{"k":17006,"v":[[0,2,["H2450"]],[2,4,["H5927"]],[4,6,["H5892"]],[6,9,["H1368"]],[9,12,["H3381"]],[12,14,["H5797"]],[14,17,["H4009"]],[17,18,[]]]},{"k":17007,"v":[[0,2,["H8104"]],[2,4,["H6310"]],[4,7,["H3956"]],[7,8,["H8104"]],[8,10,["H5315"]],[10,12,["H4480","H6869"]]]},{"k":17008,"v":[[0,1,["H2086"]],[1,3,["H3093"]],[3,4,["H3887"]],[4,7,["H8034"]],[7,9,["H6213"]],[9,11,["H2087"]],[11,12,["H5678"]]]},{"k":17009,"v":[[0,2,["H8378"]],[2,5,["H6102"]],[5,6,["H4191"]],[6,8,["H3588"]],[8,10,["H3027"]],[10,11,["H3985"]],[11,13,["H6213"]]]},{"k":17010,"v":[[0,2,["H183"]],[2,3,["H8378"]],[3,4,["H3605"]],[4,6,["H3117"]],[6,10,["H6662"]],[10,11,["H5414"]],[11,13,["H2820"]],[13,14,["H3808"]]]},{"k":17011,"v":[[0,2,["H2077"]],[2,5,["H7563"]],[5,7,["H8441"]],[7,10,["H637","H3588"]],[10,13,["H935"]],[13,18,["H2154"]]]},{"k":17012,"v":[[0,2,["H3577"]],[2,3,["H5707"]],[3,5,["H6"]],[5,8,["H376"]],[8,10,["H8085"]],[10,11,["H1696"]],[11,12,["H5331"]]]},{"k":17013,"v":[[0,2,["H7563"]],[2,3,["H376"]],[3,4,["H5810"]],[4,6,["H6440"]],[6,11,["H3477"]],[11,12,["H1931"]],[12,13,["H995"]],[13,15,["H1870"]]]},{"k":17014,"v":[[0,3,["H369"]],[3,4,["H2451"]],[4,5,["H369"]],[5,6,["H8394"]],[6,7,["H369"]],[7,8,["H6098"]],[8,9,["H5048"]],[9,11,["H3068"]]]},{"k":17015,"v":[[0,2,["H5483"]],[2,4,["H3559"]],[4,7,["H3117"]],[7,9,["H4421"]],[9,11,["H8668"]],[11,15,["H3068"]]]},{"k":17016,"v":[[0,3,["H8034"]],[3,8,["H977"]],[8,10,["H7227"]],[10,11,["H4480","H6239"]],[11,13,["H2896"]],[13,14,["H2580"]],[14,17,["H4480","H3701"]],[17,19,["H4480","H2091"]]]},{"k":17017,"v":[[0,2,["H6223"]],[2,4,["H7326"]],[4,6,["H6298"]],[6,8,["H3068"]],[8,11,["H6213"]],[11,14,["H3605"]]]},{"k":17018,"v":[[0,2,["H6175"]],[2,4,["H7200"]],[4,6,["H7451"]],[6,9,["H5641"]],[9,12,["H6612"]],[12,14,["H5674"]],[14,17,["H6064"]]]},{"k":17019,"v":[[0,1,["H6118"]],[1,2,["H6038"]],[2,5,["H3374"]],[5,8,["H3068"]],[8,10,["H6239"]],[10,12,["H3519"]],[12,14,["H2416"]]]},{"k":17020,"v":[[0,1,["H6791"]],[1,3,["H6341"]],[3,7,["H1870"]],[7,10,["H6141"]],[10,14,["H8104"]],[14,16,["H5315"]],[16,19,["H7368"]],[19,20,["H4480"]],[20,21,[]]]},{"k":17021,"v":[[0,2,["H2596"]],[2,4,["H5288"]],[4,5,["H5921"]],[5,7,["H1870"]],[7,10,["H6310"]],[10,11,["H1571"]],[11,12,["H3588"]],[12,15,["H2204"]],[15,18,["H3808"]],[18,19,["H5493"]],[19,20,["H4480"]],[20,21,[]]]},{"k":17022,"v":[[0,2,["H6223"]],[2,3,["H4910"]],[3,6,["H7326"]],[6,9,["H3867"]],[9,11,["H5650"]],[11,14,["H376","H3867"]]]},{"k":17023,"v":[[0,3,["H2232"]],[3,4,["H5766"]],[4,6,["H7114"]],[6,7,["H205"]],[7,10,["H7626"]],[10,13,["H5678"]],[13,15,["H3615"]]]},{"k":17024,"v":[[0,1,["H1931"]],[1,5,["H2896"]],[5,6,["H5869"]],[6,9,["H1288"]],[9,10,["H3588"]],[10,12,["H5414"]],[12,15,["H4480","H3899"]],[15,18,["H1800"]]]},{"k":17025,"v":[[0,2,["H1644"]],[2,4,["H3887"]],[4,6,["H4066"]],[6,9,["H3318"]],[9,11,["H1779"]],[11,13,["H7036"]],[13,15,["H7673"]]]},{"k":17026,"v":[[0,3,["H157"]],[3,4,["H2890"]],[4,6,["H3820"]],[6,9,["H2580"]],[9,12,["H8193"]],[12,14,["H4428"]],[14,18,["H7453"]]]},{"k":17027,"v":[[0,2,["H5869"]],[2,5,["H3068"]],[5,6,["H5341"]],[6,7,["H1847"]],[7,10,["H5557"]],[10,12,["H1697"]],[12,15,["H898"]]]},{"k":17028,"v":[[0,2,["H6102"]],[2,4,["H559"]],[4,8,["H738"]],[8,9,["H2351"]],[9,13,["H7523"]],[13,14,["H8432"]],[14,16,["H7339"]]]},{"k":17029,"v":[[0,2,["H6310"]],[2,5,["H2114"]],[5,8,["H6013"]],[8,9,["H7745"]],[9,13,["H2194"]],[13,16,["H3068"]],[16,18,["H5307"]],[18,19,["H8033"]]]},{"k":17030,"v":[[0,1,["H200"]],[1,3,["H7194"]],[3,6,["H3820"]],[6,9,["H5288"]],[9,12,["H7626"]],[12,14,["H4148"]],[14,18,["H7368"]],[18,19,["H4480"]],[19,20,[]]]},{"k":17031,"v":[[0,3,["H6231"]],[3,5,["H1800"]],[5,7,["H7235"]],[7,13,["H5414"]],[13,16,["H6223"]],[16,18,["H389"]],[18,21,["H4270"]]]},{"k":17032,"v":[[0,2,["H5186"]],[2,4,["H241"]],[4,6,["H8085"]],[6,8,["H1697"]],[8,11,["H2450"]],[11,13,["H7896"]],[13,15,["H3820"]],[15,18,["H1847"]]]},{"k":17033,"v":[[0,1,["H3588"]],[1,5,["H5273"]],[5,7,["H3588"]],[7,9,["H8104"]],[9,11,["H990"]],[11,15,["H3162"]],[15,17,["H3559"]],[17,18,["H5921"]],[18,20,["H8193"]]]},{"k":17034,"v":[[0,3,["H4009"]],[3,5,["H1961"]],[5,8,["H3068"]],[8,12,["H3045"]],[12,16,["H3117"]],[16,17,["H637"]],[17,19,["H859"]]]},{"k":17035,"v":[[0,2,["H3808"]],[2,4,["H3789"]],[4,8,["H7991"]],[8,10,["H4156"]],[10,12,["H1847"]]]},{"k":17036,"v":[[0,6,["H3045"]],[6,8,["H7189"]],[8,11,["H561"]],[11,13,["H571"]],[13,17,["H7725"]],[17,19,["H561"]],[19,21,["H571"]],[21,25,["H7971"]],[25,27,[]]]},{"k":17037,"v":[[0,1,["H1497"]],[1,2,["H408"]],[2,4,["H1800"]],[4,5,["H3588"]],[5,6,["H1931"]],[6,8,["H1800"]],[8,9,["H408"]],[9,10,["H1792"]],[10,12,["H6041"]],[12,15,["H8179"]]]},{"k":17038,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H7378"]],[5,7,["H7379"]],[7,9,["H6906"]],[9,11,["H5315"]],[11,12,["(H853)"]],[12,15,["H6906"]],[15,16,[]]]},{"k":17039,"v":[[0,2,["H408"]],[2,3,["H7462"]],[3,4,["H854"]],[4,6,["H639"]],[6,7,["H1167"]],[7,9,["H854"]],[9,11,["H2534"]],[11,12,["H376"]],[12,15,["H3808"]],[15,16,["H935"]]]},{"k":17040,"v":[[0,1,["H6435"]],[1,3,["H502"]],[3,5,["H734"]],[5,7,["H3947"]],[7,9,["H4170"]],[9,12,["H5315"]]]},{"k":17041,"v":[[0,1,["H1961"]],[1,2,["H408"]],[2,8,["H8628"]],[8,9,["H3709"]],[9,15,["H6148"]],[15,17,["H4859"]]]},{"k":17042,"v":[[0,1,["H518"]],[1,4,["H369"]],[4,6,["H7999"]],[6,7,["H4100"]],[7,11,["H3947"]],[11,13,["H4904"]],[13,15,["H4480","H8478"]],[15,16,[]]]},{"k":17043,"v":[[0,1,["H5253"]],[1,2,["H408"]],[2,4,["H5769"]],[4,5,["H1366"]],[5,6,["H834"]],[6,8,["H1"]],[8,10,["H6213"]]]},{"k":17044,"v":[[0,1,["H2372"]],[1,4,["H376"]],[4,5,["H4106"]],[5,8,["H4399"]],[8,11,["H3320"]],[11,12,["H6440"]],[12,13,["H4428"]],[13,16,["H1077"]],[16,17,["H3320"]],[17,18,["H6440"]],[18,19,["H2823"]],[19,20,[]]]},{"k":17045,"v":[[0,1,["H3588"]],[1,3,["H3427"]],[3,5,["H3898"]],[5,6,["H854"]],[6,8,["H4910"]],[8,10,["H995","H995","(H853)"]],[10,11,["H834"]],[11,13,["H6440"]],[13,14,[]]]},{"k":17046,"v":[[0,2,["H7760"]],[2,4,["H7915"]],[4,7,["H3930"]],[7,8,["H518"]],[8,9,["H859"]],[9,12,["H1167"]],[12,15,["H5315"]]]},{"k":17047,"v":[[0,2,["H408"]],[2,3,["H183"]],[3,6,["H4303"]],[6,8,["H1931"]],[8,10,["H3577"]],[10,11,["H3899"]]]},{"k":17048,"v":[[0,1,["H3021"]],[1,2,["H408"]],[2,5,["H6238"]],[5,6,["H2308"]],[6,7,["H4480"]],[7,10,["H998"]]]},{"k":17049,"v":[[0,3,["H5774"]],[3,5,["H5869"]],[5,10,["H369"]],[10,11,["H3588"]],[11,14,["H6213","H6213"]],[14,16,["H3671"]],[16,19,["H5774"]],[19,22,["H5404"]],[22,24,["H8064"]]]},{"k":17050,"v":[[0,1,["H3898"]],[1,3,["H408","(H853)"]],[3,5,["H3899"]],[5,11,["H7451"]],[11,12,["H5869"]],[12,13,["H408"]],[13,14,["H183"]],[14,18,["H4303"]]]},{"k":17051,"v":[[0,1,["H3588"]],[1,2,["H3644"]],[2,4,["H8176"]],[4,7,["H5315"]],[7,8,["H3651"]],[8,10,["H1931"]],[10,11,["H398"]],[11,13,["H8354"]],[13,14,["H559"]],[14,20,["H3820"]],[20,22,["H1077"]],[22,24,["H5973"]]]},{"k":17052,"v":[[0,2,["H6595"]],[2,6,["H398"]],[6,10,["H6958"]],[10,12,["H7843"]],[12,14,["H5273"]],[14,15,["H1697"]]]},{"k":17053,"v":[[0,1,["H1696"]],[1,2,["H408"]],[2,5,["H241"]],[5,8,["H3684"]],[8,9,["H3588"]],[9,12,["H936"]],[12,14,["H7922"]],[14,17,["H4405"]]]},{"k":17054,"v":[[0,1,["H5253"]],[1,2,["H408"]],[2,4,["H5769"]],[4,5,["H1366"]],[5,7,["H935"]],[7,8,["H408"]],[8,11,["H7704"]],[11,14,["H3490"]]]},{"k":17055,"v":[[0,1,["H3588"]],[1,3,["H1350"]],[3,5,["H2389"]],[5,6,["H1931"]],[6,8,["H7378","(H853)"]],[8,10,["H7379"]],[10,11,["H854"]],[11,12,[]]]},{"k":17056,"v":[[0,1,["H935"]],[1,3,["H3820"]],[3,5,["H4148"]],[5,8,["H241"]],[8,11,["H561"]],[11,13,["H1847"]]]},{"k":17057,"v":[[0,1,["H4513"]],[1,2,["H408"]],[2,3,["H4148"]],[3,6,["H4480","H5288"]],[6,7,["H3588"]],[7,10,["H5221"]],[10,14,["H7626"]],[14,17,["H3808"]],[17,18,["H4191"]]]},{"k":17058,"v":[[0,1,["H859"]],[1,3,["H5221"]],[3,7,["H7626"]],[7,10,["H5337"]],[10,12,["H5315"]],[12,14,["H4480","H7585"]]]},{"k":17059,"v":[[0,2,["H1121"]],[2,3,["H518"]],[3,5,["H3820"]],[5,7,["H2449"]],[7,9,["H3820"]],[9,11,["H8055"]],[11,12,["H1571"]],[12,13,["H589"]]]},{"k":17060,"v":[[0,3,["H3629"]],[3,5,["H5937"]],[5,8,["H8193"]],[8,9,["H1696"]],[9,11,["H4339"]]]},{"k":17061,"v":[[0,2,["H408"]],[2,4,["H3820"]],[4,5,["H7065"]],[5,6,["H2400"]],[6,7,["H3588"]],[7,12,["H3374"]],[12,15,["H3068"]],[15,16,["H3605"]],[16,18,["H3117"]],[18,19,[]]]},{"k":17062,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,4,["H3426"]],[4,6,["H319"]],[6,9,["H8615"]],[9,11,["H3808"]],[11,14,["H3772"]]]},{"k":17063,"v":[[0,1,["H8085"]],[1,2,["H859"]],[2,4,["H1121"]],[4,7,["H2449"]],[7,9,["H833"]],[9,11,["H3820"]],[11,14,["H1870"]]]},{"k":17064,"v":[[0,1,["H1961"]],[1,2,["H408"]],[2,4,["H5433","H3196"]],[4,7,["H2151"]],[7,9,["H1320"]]]},{"k":17065,"v":[[0,1,["H3588"]],[1,3,["H5433"]],[3,6,["H2151"]],[6,10,["H3423"]],[10,12,["H5124"]],[12,14,["H3847"]],[14,18,["H7168"]]]},{"k":17066,"v":[[0,1,["H8085"]],[1,4,["H1"]],[4,5,["H2088"]],[5,6,["H3205"]],[6,9,["H936"]],[9,10,["H408"]],[10,12,["H517"]],[12,13,["H3588"]],[13,16,["H2204"]]]},{"k":17067,"v":[[0,1,["H7069"]],[1,3,["H571"]],[3,5,["H4376"]],[5,7,["H408"]],[7,9,["H2451"]],[9,11,["H4148"]],[11,13,["H998"]]]},{"k":17068,"v":[[0,2,["H1"]],[2,5,["H6662"]],[5,8,["H1523","H1523"]],[8,12,["H3205"]],[12,14,["H2450"]],[14,18,["H8055"]],[18,20,[]]]},{"k":17069,"v":[[0,2,["H1"]],[2,5,["H517"]],[5,8,["H8055"]],[8,12,["H3205"]],[12,15,["H1523"]]]},{"k":17070,"v":[[0,2,["H1121"]],[2,3,["H5414"]],[3,6,["H3820"]],[6,10,["H5869"]],[10,11,["H5341"]],[11,13,["H1870"]]]},{"k":17071,"v":[[0,1,["H3588"]],[1,3,["H2181"]],[3,6,["H6013"]],[6,7,["H7745"]],[7,10,["H5237"]],[10,14,["H6862"]],[14,15,["H875"]]]},{"k":17072,"v":[[0,1,["H1931"]],[1,2,["H637"]],[2,5,["H693"]],[5,9,["H2863"]],[9,11,["H3254"]],[11,13,["H898"]],[13,15,["H120"]]]},{"k":17073,"v":[[0,1,["H4310"]],[1,3,["H188"]],[3,4,["H4310"]],[4,6,["H17"]],[6,7,["H4310"]],[7,9,["H4079"]],[9,10,["H4310"]],[10,12,["H7879"]],[12,13,["H4310"]],[13,15,["H6482"]],[15,17,["H2600"]],[17,18,["H4310"]],[18,20,["H2448"]],[20,22,["H5869"]]]},{"k":17074,"v":[[0,4,["H309"]],[4,5,["H5921"]],[5,7,["H3196"]],[7,10,["H935"]],[10,12,["H2713"]],[12,14,["H4469"]]]},{"k":17075,"v":[[0,1,["H7200"]],[1,2,["H408"]],[2,6,["H3196"]],[6,7,["H3588"]],[7,10,["H119"]],[10,11,["H3588"]],[11,13,["H5414"]],[13,15,["H5869"]],[15,18,["H3563"]],[18,22,["H1980"]],[22,23,["H4339"]]]},{"k":17076,"v":[[0,3,["H319"]],[3,5,["H5391"]],[5,8,["H5175"]],[8,10,["H6567"]],[10,13,["H6848"]]]},{"k":17077,"v":[[0,2,["H5869"]],[2,4,["H7200"]],[4,6,["H2114"]],[6,9,["H3820"]],[9,11,["H1696"]],[11,13,["H8419"]]]},{"k":17078,"v":[[0,4,["H1961"]],[4,9,["H7901"]],[9,12,["H3820"]],[12,15,["H3220"]],[15,20,["H7901"]],[20,23,["H7218"]],[23,26,["H2260"]]]},{"k":17079,"v":[[0,3,["H5221"]],[3,11,["H1077"]],[11,12,["H2470"]],[12,15,["H1986"]],[15,19,["H3045"]],[19,21,["H1077"]],[21,22,["H4970"]],[22,25,["H6974"]],[25,28,["H1245"]],[28,30,["H3254"]],[30,31,["H5750"]]]},{"k":17080,"v":[[0,2,["H408"]],[2,4,["H7065"]],[4,6,["H7451"]],[6,7,["H376"]],[7,8,["H408"]],[8,9,["H183"]],[9,11,["H1961"]],[11,12,["H854"]],[12,13,[]]]},{"k":17081,"v":[[0,1,["H3588"]],[1,3,["H3820"]],[3,4,["H1897"]],[4,5,["H7701"]],[5,8,["H8193"]],[8,9,["H1696"]],[9,11,["H5999"]]]},{"k":17082,"v":[[0,2,["H2451"]],[2,5,["H1004"]],[5,6,["H1129"]],[6,9,["H8394"]],[9,12,["H3559"]]]},{"k":17083,"v":[[0,3,["H1847"]],[3,6,["H2315"]],[6,8,["H4390"]],[8,10,["H3605"]],[10,11,["H3368"]],[11,13,["H5273"]],[13,14,["H1952"]]]},{"k":17084,"v":[[0,2,["H2450"]],[2,3,["H1397"]],[3,5,["H5797"]],[5,8,["H376"]],[8,10,["H1847"]],[10,11,["H553"]],[11,12,["H3581"]]]},{"k":17085,"v":[[0,1,["H3588"]],[1,4,["H8458"]],[4,7,["H6213"]],[7,9,["H4421"]],[9,12,["H7230"]],[12,14,["H3289"]],[14,17,["H8668"]]]},{"k":17086,"v":[[0,1,["H2454"]],[1,4,["H7311"]],[4,7,["H191"]],[7,9,["H6605"]],[9,10,["H3808"]],[10,12,["H6310"]],[12,15,["H8179"]]]},{"k":17087,"v":[[0,3,["H2803"]],[3,6,["H7489"]],[6,9,["H7121"]],[9,11,["H4209"]],[11,12,["H1167"]]]},{"k":17088,"v":[[0,2,["H2154"]],[2,4,["H200"]],[4,6,["H2403"]],[6,9,["H3887"]],[9,12,["H8441"]],[12,14,["H120"]]]},{"k":17089,"v":[[0,3,["H7503"]],[3,6,["H3117"]],[6,8,["H6869"]],[8,10,["H3581"]],[10,12,["H6862"]]]},{"k":17090,"v":[[0,1,["H518"]],[1,3,["H2820"]],[3,5,["H5337"]],[5,9,["H3947"]],[9,11,["H4194"]],[11,16,["H4131"]],[16,19,["H2027"]]]},{"k":17091,"v":[[0,1,["H3588"]],[1,3,["H559"]],[3,4,["H2005"]],[4,6,["H3045"]],[6,7,["H2088"]],[7,8,["H3808"]],[8,10,["H3808"]],[10,13,["H8505"]],[13,15,["H3820"]],[15,16,["H995"]],[16,21,["H5341"]],[21,23,["H5315"]],[23,26,["H1931"]],[26,27,["H3045"]],[27,33,["H7725"]],[33,36,["H120"]],[36,40,["H6467"]]]},{"k":17092,"v":[[0,2,["H1121"]],[2,3,["H398"]],[3,5,["H1706"]],[5,6,["H3588"]],[6,9,["H2896"]],[9,12,["H5317"]],[12,15,["H4966"]],[15,16,["H5921"]],[16,18,["H2441"]]]},{"k":17093,"v":[[0,1,["H3651"]],[1,4,["H3045"]],[4,6,["H2451"]],[6,10,["H5315"]],[10,11,["H518"]],[11,14,["H4672"]],[14,19,["H3426"]],[19,21,["H319"]],[21,24,["H8615"]],[24,26,["H3808"]],[26,29,["H3772"]]]},{"k":17094,"v":[[0,3,["H408","H693"]],[3,5,["H7563"]],[5,9,["H5116"]],[9,12,["H6662"]],[12,13,["H7703"]],[13,14,["H408"]],[14,17,["H7258"]]]},{"k":17095,"v":[[0,1,["H3588"]],[1,3,["H6662"]],[3,5,["H5307"]],[5,6,["H7651"]],[6,11,["H6965"]],[11,14,["H7563"]],[14,16,["H3782"]],[16,18,["H7451"]]]},{"k":17096,"v":[[0,1,["H8055"]],[1,2,["H408"]],[2,5,["H341"]],[5,6,["H5307"]],[6,9,["H408"]],[9,11,["H3820"]],[11,13,["H1523"]],[13,16,["H3782"]]]},{"k":17097,"v":[[0,1,["H6435"]],[1,3,["H3068"]],[3,4,["H7200"]],[4,8,["H7489","H5869"]],[8,13,["H7725"]],[13,15,["H639"]],[15,16,["H4480","H5921"]],[16,17,[]]]},{"k":17098,"v":[[0,3,["H408","H2734"]],[3,6,["H7489"]],[6,8,["H408"]],[8,11,["H7065"]],[11,14,["H7563"]]]},{"k":17099,"v":[[0,1,["H3588"]],[1,4,["H1961"]],[4,5,["H3808"]],[5,6,["H319"]],[6,9,["H7451"]],[9,12,["H5216"]],[12,15,["H7563"]],[15,19,["H1846"]]]},{"k":17100,"v":[[0,2,["H1121"]],[2,3,["H3372"]],[3,4,["(H853)"]],[4,6,["H3068"]],[6,9,["H4428"]],[9,11,["H6148"]],[11,12,["H408"]],[12,13,["H5973"]],[13,19,["H8138"]]]},{"k":17101,"v":[[0,1,["H3588"]],[1,3,["H343"]],[3,5,["H6965"]],[5,6,["H6597"]],[6,8,["H4310"]],[8,9,["H3045"]],[9,11,["H6365"]],[11,14,["H8147"]]]},{"k":17102,"v":[[0,1,["H428"]],[1,3,["H1571"]],[3,7,["H2450"]],[7,10,["H1077"]],[10,11,["H2896"]],[11,14,["H5234"]],[14,16,["H6440"]],[16,18,["H4941"]]]},{"k":17103,"v":[[0,3,["H559"]],[3,6,["H7563"]],[6,7,["H859"]],[7,9,["H6662"]],[9,13,["H5971"]],[13,14,["H5344"]],[14,15,["H3816"]],[15,17,["H2194"]],[17,18,[]]]},{"k":17104,"v":[[0,5,["H3198"]],[5,9,["H5276"]],[9,12,["H2896"]],[12,13,["H1293"]],[13,15,["H935"]],[15,16,["H5921"]],[16,17,[]]]},{"k":17105,"v":[[0,4,["H5401"]],[4,6,["H8193"]],[6,8,["H7725"]],[8,10,["H5228"]],[10,11,["H1697"]]]},{"k":17106,"v":[[0,1,["H3559"]],[1,3,["H4399"]],[3,4,["H2351"]],[4,8,["H6257"]],[8,13,["H7704"]],[13,15,["H310"]],[15,16,["H1129"]],[16,18,["H1004"]]]},{"k":17107,"v":[[0,1,["H1961"]],[1,2,["H408"]],[2,4,["H5707"]],[4,7,["H7453"]],[7,9,["H2600"]],[9,11,["H6601"]],[11,15,["H8193"]]]},{"k":17108,"v":[[0,1,["H559"]],[1,2,["H408"]],[2,5,["H6213"]],[5,6,["H3651"]],[6,9,["H834"]],[9,12,["H6213"]],[12,17,["H7725"]],[17,20,["H376"]],[20,24,["H6467"]]]},{"k":17109,"v":[[0,2,["H5674"]],[2,3,["H5921"]],[3,5,["H7704"]],[5,8,["H6102","H376"]],[8,10,["H5921"]],[10,12,["H3754"]],[12,15,["H120"]],[15,16,["H2638"]],[16,18,["H3820"]]]},{"k":17110,"v":[[0,2,["H2009"]],[2,5,["H3605"]],[5,7,["H5927"]],[7,9,["H7063"]],[9,11,["H2738"]],[11,13,["H3680"]],[13,15,["H6440"]],[15,19,["H68"]],[19,20,["H1444"]],[20,24,["H2040"]]]},{"k":17111,"v":[[0,2,["H595"]],[2,3,["H2372"]],[3,7,["H7896","H3820"]],[7,9,["H7200"]],[9,13,["H3947"]],[13,14,["H4148"]]]},{"k":17112,"v":[[0,3,["H4592"]],[3,4,["H8142"]],[4,6,["H4592"]],[6,7,["H8572"]],[7,9,["H4592"]],[9,10,["H2264"]],[10,13,["H3027"]],[13,15,["H7901"]]]},{"k":17113,"v":[[0,4,["H7389"]],[4,5,["H935"]],[5,9,["H1980"]],[9,12,["H4270"]],[12,15,["H4043"]],[15,16,["H376"]]]},{"k":17114,"v":[[0,1,["H428"]],[1,3,["H1571"]],[3,4,["H4912"]],[4,6,["H8010"]],[6,7,["H834"]],[7,9,["H376"]],[9,11,["H2396"]],[11,12,["H4428"]],[12,14,["H3063"]],[14,16,["H6275"]]]},{"k":17115,"v":[[0,4,["H3519"]],[4,6,["H430"]],[6,8,["H5641"]],[8,10,["H1697"]],[10,13,["H3519"]],[13,15,["H4428"]],[15,19,["H2713"]],[19,21,["H1697"]]]},{"k":17116,"v":[[0,2,["H8064"]],[2,4,["H7312"]],[4,7,["H776"]],[7,9,["H6011"]],[9,12,["H3820"]],[12,14,["H4428"]],[14,16,["H369","H2714"]]]},{"k":17117,"v":[[0,2,["H1898"]],[2,4,["H5509"]],[4,7,["H4480","H3701"]],[7,12,["H3318"]],[12,14,["H3627"]],[14,17,["H6884"]]]},{"k":17118,"v":[[0,2,["H1898"]],[2,4,["H7563"]],[4,6,["H6440"]],[6,8,["H4428"]],[8,11,["H3678"]],[11,14,["H3559"]],[14,16,["H6664"]]]},{"k":17119,"v":[[0,4,["H408","H1921"]],[4,7,["H6440"]],[7,10,["H4428"]],[10,12,["H5975"]],[12,13,["H408"]],[13,16,["H4725"]],[16,18,["H1419"]],[18,19,[]]]},{"k":17120,"v":[[0,1,["H3588"]],[1,2,["H2896"]],[2,8,["H559"]],[8,12,["H5927"]],[12,13,["H2008"]],[13,20,["H4480","H8213"]],[20,23,["H6440"]],[23,26,["H5081"]],[26,27,["H834"]],[27,29,["H5869"]],[29,31,["H7200"]]]},{"k":17121,"v":[[0,3,["H3318","H408"]],[3,4,["H4118"]],[4,6,["H7378"]],[6,7,["H6435"]],[7,11,["H4100"]],[11,13,["H6213"]],[13,16,["H319"]],[16,20,["H7453"]],[20,25,["H3637","(H853)"]]]},{"k":17122,"v":[[0,1,["H7378"]],[1,3,["H7379"]],[3,4,["H854"]],[4,6,["H7453"]],[6,9,["H1540"]],[9,10,["H408"]],[10,12,["H5475"]],[12,14,["H312"]]]},{"k":17123,"v":[[0,1,["H6435"]],[1,4,["H8085"]],[4,9,["H2616"]],[9,12,["H1681"]],[12,15,["H3808","H7725"]]]},{"k":17124,"v":[[0,2,["H1697"]],[2,3,["H5921","H655"]],[3,4,["H1696"]],[4,7,["H8598"]],[7,9,["H2091"]],[9,11,["H4906"]],[11,13,["H3701"]]]},{"k":17125,"v":[[0,3,["H5141"]],[3,5,["H2091"]],[5,8,["H2481"]],[8,11,["H3800"]],[11,15,["H2450"]],[15,16,["H3198"]],[16,17,["H5921"]],[17,19,["H8085"]],[19,20,["H241"]]]},{"k":17126,"v":[[0,3,["H6793"]],[3,5,["H7950"]],[5,8,["H3117"]],[8,10,["H7105"]],[10,14,["H539"]],[14,15,["H6735"]],[15,19,["H7971"]],[19,23,["H7725"]],[23,25,["H5315"]],[25,28,["H113"]]]},{"k":17127,"v":[[0,1,["H376"]],[1,3,["H1984"]],[3,6,["H8267"]],[6,7,["H4991"]],[7,10,["H5387"]],[10,12,["H7307"]],[12,13,["H369"]],[13,14,["H1653"]]]},{"k":17128,"v":[[0,2,["H753"]],[2,3,["H639"]],[3,6,["H7101"]],[6,7,["H6601"]],[7,10,["H7390"]],[10,11,["H3956"]],[11,12,["H7665"]],[12,14,["H1634"]]]},{"k":17129,"v":[[0,3,["H4672"]],[3,4,["H1706"]],[4,5,["H398"]],[5,10,["H1767"]],[10,13,["H6435"]],[13,16,["H7646"]],[16,19,["H6958"]],[19,20,[]]]},{"k":17130,"v":[[0,1,["H3365"]],[1,3,["H7272"]],[3,6,["H7453"]],[6,7,["H4480","H1004"]],[7,8,["H6435"]],[8,11,["H7646"]],[11,16,["H8130"]],[16,17,[]]]},{"k":17131,"v":[[0,2,["H376"]],[2,4,["H6030"]],[4,5,["H8267"]],[5,6,["H5707"]],[6,9,["H7453"]],[9,12,["H4650"]],[12,15,["H2719"]],[15,18,["H8150"]],[18,19,["H2671"]]]},{"k":17132,"v":[[0,1,["H4009"]],[1,5,["H898"]],[5,7,["H3117"]],[7,9,["H6869"]],[9,13,["H7465"]],[13,14,["H8127"]],[14,17,["H7272"]],[17,20,["H4154"]]]},{"k":17133,"v":[[0,5,["H5710"]],[5,7,["H899"]],[7,9,["H7135"]],[9,10,["H3117"]],[10,13,["H2558"]],[13,14,["H5921"]],[14,15,["H5427"]],[15,20,["H7891"]],[20,21,["H7892"]],[21,22,["H5921"]],[22,24,["H7451"]],[24,25,["H3820"]]]},{"k":17134,"v":[[0,1,["H518"]],[1,3,["H8130"]],[3,5,["H7457"]],[5,8,["H3899"]],[8,10,["H398"]],[10,12,["H518"]],[12,15,["H6771"]],[15,18,["H4325"]],[18,20,["H8248"]]]},{"k":17135,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H2846"]],[4,7,["H1513"]],[7,8,["H5921"]],[8,10,["H7218"]],[10,13,["H3068"]],[13,15,["H7999"]],[15,16,[]]]},{"k":17136,"v":[[0,2,["H6828"]],[2,3,["H7307"]],[3,5,["H2342"]],[5,6,["H1653"]],[6,10,["H2194"]],[10,11,["H6440"]],[11,13,["H5643"]],[13,14,["H3956"]]]},{"k":17137,"v":[[0,3,["H2896"]],[3,5,["H3427"]],[5,6,["H5921"]],[6,8,["H6438"]],[8,11,["H1406"]],[11,16,["H4480","H802","H4079"]],[16,20,["H2267"]],[20,21,["H1004"]]]},{"k":17138,"v":[[0,2,["H7119"]],[2,3,["H4325"]],[3,4,["H5921"]],[4,6,["H5889"]],[6,7,["H5315"]],[7,10,["H2896"]],[10,11,["H8052"]],[11,15,["H4480","H776","H4801"]]]},{"k":17139,"v":[[0,2,["H6662"]],[2,5,["H4131"]],[5,6,["H6440"]],[6,8,["H7563"]],[8,12,["H7515"]],[12,13,["H4599"]],[13,16,["H7843"]],[16,17,["H4726"]]]},{"k":17140,"v":[[0,3,["H3808"]],[3,4,["H2896"]],[4,6,["H398"]],[6,7,["H7235"]],[7,8,["H1706"]],[8,13,["H2714"]],[13,16,["H3519"]],[16,19,["H3519"]]]},{"k":17141,"v":[[0,1,["H376"]],[1,2,["H834"]],[2,4,["H369"]],[4,6,["H4623"]],[6,9,["H7307"]],[9,13,["H5892"]],[13,17,["H6555"]],[17,19,["H369"]],[19,20,["H2346"]]]},{"k":17142,"v":[[0,2,["H7950"]],[2,4,["H7019"]],[4,7,["H4306"]],[7,9,["H7105"]],[9,10,["H3651"]],[10,11,["H3519"]],[11,13,["H3808"]],[13,14,["H5000"]],[14,17,["H3684"]]]},{"k":17143,"v":[[0,3,["H6833"]],[3,5,["H5110"]],[5,8,["H1866"]],[8,10,["H5774"]],[10,11,["H3651"]],[11,13,["H7045"]],[13,14,["H2600"]],[14,16,["H3808"]],[16,17,["H935"]]]},{"k":17144,"v":[[0,2,["H7752"]],[2,5,["H5483"]],[5,7,["H4964"]],[7,10,["H2543"]],[10,13,["H7626"]],[13,16,["H3684"]],[16,17,["H1460"]]]},{"k":17145,"v":[[0,1,["H6030"]],[1,2,["H408"]],[2,4,["H3684"]],[4,8,["H200"]],[8,9,["H6435"]],[9,10,["H859"]],[10,11,["H1571"]],[11,13,["H7737"]],[13,15,[]]]},{"k":17146,"v":[[0,1,["H6030"]],[1,3,["H3684"]],[3,7,["H200"]],[7,8,["H6435"]],[8,10,["H1961"]],[10,11,["H2450"]],[11,15,["H5869"]]]},{"k":17147,"v":[[0,3,["H7971"]],[3,5,["H1697"]],[5,8,["H3027"]],[8,11,["H3684"]],[11,13,["H7096"]],[13,15,["H7272"]],[15,17,["H8354"]],[17,18,["H2555"]]]},{"k":17148,"v":[[0,2,["H7785"]],[2,5,["H4480","H6455"]],[5,8,["H1809"]],[8,12,["H4912"]],[12,15,["H6310"]],[15,17,["H3684"]]]},{"k":17149,"v":[[0,4,["H6887"]],[4,6,["H68"]],[6,9,["H4773"]],[9,10,["H3651"]],[10,14,["H5414"]],[14,15,["H3519"]],[15,18,["H3684"]]]},{"k":17150,"v":[[0,3,["H2336"]],[3,5,["H5927"]],[5,8,["H3027"]],[8,11,["H7910"]],[11,15,["H4912"]],[15,18,["H6310"]],[18,20,["H3684"]]]},{"k":17151,"v":[[0,2,["H7227"]],[2,5,["H2342"]],[5,6,["H3605"]],[6,9,["H7936"]],[9,11,["H3684"]],[11,13,["H7936"]],[13,14,["H5674"]]]},{"k":17152,"v":[[0,3,["H3611"]],[3,4,["H7725"]],[4,5,["H5921"]],[5,7,["H6892"]],[7,10,["H3684"]],[10,11,["H8138"]],[11,14,["H200"]]]},{"k":17153,"v":[[0,1,["H7200"]],[1,4,["H376"]],[4,5,["H2450"]],[5,9,["H5869"]],[9,13,["H8615"]],[13,16,["H3684"]],[16,18,["H4480"]],[18,19,[]]]},{"k":17154,"v":[[0,2,["H6102"]],[2,4,["H559"]],[4,8,["H7826"]],[8,11,["H1870"]],[11,13,["H738"]],[13,15,["H996"]],[15,17,["H7339"]]]},{"k":17155,"v":[[0,3,["H1817"]],[3,4,["H5437"]],[4,5,["H5921"]],[5,7,["H6735"]],[7,11,["H6102"]],[11,12,["H5921"]],[12,14,["H4296"]]]},{"k":17156,"v":[[0,2,["H6102"]],[2,3,["H2934"]],[3,5,["H3027"]],[5,8,["H6747"]],[8,10,["H3811"]],[10,15,["H7725"]],[15,16,["H413"]],[16,18,["H6310"]]]},{"k":17157,"v":[[0,2,["H6102"]],[2,4,["H2450"]],[4,8,["H5869"]],[8,10,["H4480","H7651"]],[10,14,["H7725"]],[14,16,["H2940"]]]},{"k":17158,"v":[[0,4,["H5674"]],[4,6,["H5674"]],[6,7,["H5921"]],[7,8,["H7379"]],[8,10,["H3808"]],[10,17,["H2388"]],[17,19,["H3611"]],[19,22,["H241"]]]},{"k":17159,"v":[[0,3,["H3856"]],[3,6,["H3384"]],[6,7,["H2131"]],[7,8,["H2671"]],[8,10,["H4194"]]]},{"k":17160,"v":[[0,1,["H3651"]],[1,4,["H376"]],[4,6,["H7411","(H853)"]],[6,8,["H7453"]],[8,10,["H559"]],[10,12,["H3808"]],[12,13,["H589"]],[13,15,["H7832"]]]},{"k":17161,"v":[[0,2,["H657"]],[2,3,["H6086"]],[3,7,["H784"]],[7,9,["H3518"]],[9,14,["H369"]],[14,15,["H5372"]],[15,17,["H4066"]],[17,18,["H8367"]]]},{"k":17162,"v":[[0,2,["H6352"]],[2,6,["H1513"]],[6,8,["H6086"]],[8,10,["H784"]],[10,14,["H4079"]],[14,15,["H376"]],[15,17,["H2787"]],[17,18,["H7379"]]]},{"k":17163,"v":[[0,2,["H1697"]],[2,5,["H5372"]],[5,8,["H3859"]],[8,10,["H1992"]],[10,12,["H3381"]],[12,16,["H2315"]],[16,19,["H990"]]]},{"k":17164,"v":[[0,1,["H1814"]],[1,2,["H8193"]],[2,5,["H7451"]],[5,6,["H3820"]],[6,10,["H2789"]],[10,11,["H6823"]],[11,13,["H3701"]],[13,14,["H5509"]]]},{"k":17165,"v":[[0,3,["H8130"]],[3,4,["H5234"]],[4,7,["H8193"]],[7,10,["H7896"]],[10,11,["H4820"]],[11,12,["H7130"]],[12,13,[]]]},{"k":17166,"v":[[0,1,["H3588"]],[1,3,["H6963"]],[3,4,["H2603"]],[4,5,["H539"]],[5,7,["H408"]],[7,8,["H3588"]],[8,11,["H7651"]],[11,12,["H8441"]],[12,15,["H3820"]]]},{"k":17167,"v":[[0,2,["H8135"]],[2,4,["H3680"]],[4,6,["H4860"]],[6,8,["H7451"]],[8,11,["H1540"]],[11,15,["H6951"]]]},{"k":17168,"v":[[0,2,["H3738"]],[2,4,["H7845"]],[4,6,["H5307"]],[6,11,["H1556"]],[11,13,["H68"]],[13,16,["H7725"]],[16,17,["H413"]],[17,18,[]]]},{"k":17169,"v":[[0,2,["H8267"]],[2,3,["H3956"]],[3,4,["H8130"]],[4,8,["H1790"]],[8,13,["H2509"]],[13,14,["H6310"]],[14,15,["H6213"]],[15,16,["H4072"]]]},{"k":17170,"v":[[0,3,["H408","H1984"]],[3,6,["H3117","H4279"]],[6,7,["H3588"]],[7,9,["H3045"]],[9,10,["H3808"]],[10,11,["H4100"]],[11,13,["H3117"]],[13,16,["H3205"]]]},{"k":17171,"v":[[0,3,["H2114"]],[3,4,["H1984"]],[4,7,["H3808"]],[7,10,["H6310"]],[10,12,["H5237"]],[12,14,["H408"]],[14,17,["H8193"]]]},{"k":17172,"v":[[0,2,["H68"]],[2,4,["H3514"]],[4,7,["H2344"]],[7,8,["H5192"]],[8,11,["H191"]],[11,12,["H3708"]],[12,14,["H3515"]],[14,17,["H4480","H8147"]]]},{"k":17173,"v":[[0,1,["H2534"]],[1,3,["H395"]],[3,5,["H639"]],[5,7,["H7858"]],[7,9,["H4310"]],[9,13,["H5975"]],[13,14,["H6440"]],[14,15,["H7068"]]]},{"k":17174,"v":[[0,1,["H1540"]],[1,2,["H8433"]],[2,4,["H2896"]],[4,6,["H5641"]],[6,7,["H4480","H160"]]]},{"k":17175,"v":[[0,1,["H539"]],[1,4,["H6482"]],[4,7,["H157"]],[7,10,["H5390"]],[10,13,["H8130"]],[13,15,["H6280"]]]},{"k":17176,"v":[[0,2,["H7649"]],[2,3,["H5315"]],[3,4,["H947"]],[4,6,["H5317"]],[6,10,["H7457"]],[10,11,["H5315"]],[11,12,["H3605"]],[12,14,["H4751"]],[14,16,["H4966"]]]},{"k":17177,"v":[[0,3,["H6833"]],[3,5,["H5074"]],[5,6,["H4480"]],[6,8,["H7064"]],[8,9,["H3651"]],[9,12,["H376"]],[12,14,["H5074"]],[14,17,["H4480","H4725"]]]},{"k":17178,"v":[[0,1,["H8081"]],[1,3,["H7004"]],[3,4,["H8055"]],[4,6,["H3820"]],[6,10,["H4986"]],[10,14,["H7453"]],[14,17,["H4480","H6098","H5315"]]]},{"k":17179,"v":[[0,3,["H7453"]],[3,6,["H1"]],[6,7,["H7453"]],[7,8,["H5800"]],[8,9,["H408"]],[9,10,["H408"]],[10,11,["H935"]],[11,14,["H251"]],[14,15,["H1004"]],[15,18,["H3117"]],[18,21,["H343"]],[21,23,["H2896"]],[23,26,["H7934"]],[26,29,["H7138"]],[29,32,["H4480","H251"]],[32,34,["H7350"]]]},{"k":17180,"v":[[0,2,["H1121"]],[2,4,["H2449"]],[4,8,["H3820"]],[8,9,["H8055"]],[9,13,["H7725","H1697"]],[13,16,["H2778"]],[16,17,[]]]},{"k":17181,"v":[[0,2,["H6175"]],[2,4,["H7200"]],[4,6,["H7451"]],[6,9,["H5641"]],[9,12,["H6612"]],[12,14,["H5674"]],[14,17,["H6064"]]]},{"k":17182,"v":[[0,1,["H3947"]],[1,3,["H899"]],[3,4,["H3588"]],[4,6,["H6148"]],[6,9,["H2114"]],[9,13,["H2254"]],[13,16,["H1157"]],[16,19,["H5237"]]]},{"k":17183,"v":[[0,3,["H1288"]],[3,5,["H7453"]],[5,8,["H1419"]],[8,9,["H6963"]],[9,11,["H7925"]],[11,14,["H1242"]],[14,18,["H2803"]],[18,20,["H7045"]],[20,22,[]]]},{"k":17184,"v":[[0,2,["H2956"]],[2,3,["H1812"]],[3,7,["H5464"]],[7,8,["H3117"]],[8,11,["H4079"]],[11,12,["H802"]],[12,14,["H7737"]]]},{"k":17185,"v":[[0,2,["H6845"]],[2,4,["H6845"]],[4,6,["H7307"]],[6,9,["H8081"]],[9,13,["H3225"]],[13,15,["H7121"]],[15,16,[]]]},{"k":17186,"v":[[0,1,["H1270"]],[1,2,["H2300"]],[2,3,["H1270"]],[3,6,["H376"]],[6,7,["H2300"]],[7,9,["H6440"]],[9,12,["H7453"]]]},{"k":17187,"v":[[0,2,["H5341"]],[2,5,["H8384"]],[5,7,["H398"]],[7,9,["H6529"]],[9,14,["H8104"]],[14,17,["H113"]],[17,20,["H3513"]]]},{"k":17188,"v":[[0,3,["H4325"]],[3,4,["H6440"]],[4,7,["H6440"]],[7,8,["H3651"]],[8,10,["H3820"]],[10,12,["H120"]],[12,14,["H120"]]]},{"k":17189,"v":[[0,1,["H7585"]],[1,3,["H10"]],[3,5,["H3808"]],[5,6,["H7646"]],[6,9,["H5869"]],[9,11,["H120"]],[11,13,["H3808"]],[13,14,["H7646"]]]},{"k":17190,"v":[[0,4,["H4715"]],[4,6,["H3701"]],[6,9,["H3564"]],[9,11,["H2091"]],[11,15,["H376"]],[15,16,["H6310"]],[16,18,["H4110"]]]},{"k":17191,"v":[[0,1,["H518"]],[1,4,["H3806","(H853)"]],[4,6,["H191"]],[6,9,["H4388"]],[9,10,["H8432"]],[10,11,["H7383"]],[11,14,["H5940"]],[14,17,["H3808"]],[17,19,["H200"]],[19,20,["H5493"]],[20,21,["H4480","H5921"]],[21,22,[]]]},{"k":17192,"v":[[0,5,["H3045","H3045"]],[5,7,["H6440"]],[7,10,["H6629"]],[10,12,["H7896","H3820"]],[12,16,["H5739"]]]},{"k":17193,"v":[[0,1,["H3588"]],[1,2,["H2633"]],[2,4,["H3808"]],[4,6,["H5769"]],[6,8,["H518"]],[8,10,["H5145"]],[10,14,["H1755","H1755"]]]},{"k":17194,"v":[[0,2,["H2682"]],[2,3,["H1540"]],[3,7,["H1877"]],[7,9,["H7200"]],[9,11,["H6212"]],[11,14,["H2022"]],[14,16,["H622"]]]},{"k":17195,"v":[[0,2,["H3532"]],[2,6,["H3830"]],[6,9,["H6260"]],[9,12,["H4242"]],[12,15,["H7704"]]]},{"k":17196,"v":[[0,5,["H5795"]],[5,6,["H2461"]],[6,7,["H1767"]],[7,10,["H3899"]],[10,13,["H3899"]],[13,16,["H1004"]],[16,20,["H2416"]],[20,23,["H5291"]]]},{"k":17197,"v":[[0,2,["H7563"]],[2,3,["H5127"]],[3,5,["H369"]],[5,7,["H7291"]],[7,10,["H6662"]],[10,12,["H982"]],[12,15,["H3715"]]]},{"k":17198,"v":[[0,3,["H6588"]],[3,6,["H776"]],[6,7,["H7227"]],[7,10,["H8269"]],[10,15,["H120"]],[15,17,["H995"]],[17,19,["H3045"]],[19,21,["H3651"]],[21,25,["H748"]]]},{"k":17199,"v":[[0,2,["H7326"]],[2,3,["H1397"]],[3,5,["H6231"]],[5,7,["H1800"]],[7,11,["H5502"]],[11,12,["H4306"]],[12,15,["H369"]],[15,16,["H3899"]]]},{"k":17200,"v":[[0,3,["H5800"]],[3,5,["H8451"]],[5,6,["H1984"]],[6,8,["H7563"]],[8,12,["H8104"]],[12,14,["H8451"]],[14,15,["H1624"]],[15,17,[]]]},{"k":17201,"v":[[0,1,["H7451"]],[1,2,["H376"]],[2,3,["H995"]],[3,4,["H3808"]],[4,5,["H4941"]],[5,9,["H1245"]],[9,11,["H3068"]],[11,12,["H995"]],[12,13,["H3605"]],[13,14,[]]]},{"k":17202,"v":[[0,1,["H2896"]],[1,4,["H7326"]],[4,6,["H1980"]],[6,9,["H8537"]],[9,14,["H4480","H6141"]],[14,17,["H1870"]],[17,19,["H1931"]],[19,21,["H6223"]]]},{"k":17203,"v":[[0,2,["H5341"]],[2,4,["H8451"]],[4,7,["H995"]],[7,8,["H1121"]],[8,14,["H7462"]],[14,16,["H2151"]],[16,18,["H3637"]],[18,20,["H1"]]]},{"k":17204,"v":[[0,4,["H5392"]],[4,7,["H8636"]],[7,8,["H7235"]],[8,10,["H1952"]],[10,13,["H6908"]],[13,19,["H2603"]],[19,21,["H1800"]]]},{"k":17205,"v":[[0,4,["H5493"]],[4,6,["H241"]],[6,8,["H4480","H8085"]],[8,10,["H8451"]],[10,11,["H1571"]],[11,13,["H8605"]],[13,16,["H8441"]]]},{"k":17206,"v":[[0,4,["H3477"]],[4,7,["H7686"]],[7,10,["H7451"]],[10,11,["H1870"]],[11,14,["H5307"]],[14,15,["H1931"]],[15,19,["H7816"]],[19,22,["H8549"]],[22,25,["H2896"]],[25,28,["H5157"]]]},{"k":17207,"v":[[0,2,["H6223"]],[2,3,["H376"]],[3,5,["H2450"]],[5,9,["H5869"]],[9,12,["H1800"]],[12,15,["H995"]],[15,18,["H2713"]]]},{"k":17208,"v":[[0,2,["H6662"]],[2,5,["H5970"]],[5,8,["H7227"]],[8,9,["H8597"]],[9,13,["H7563"]],[13,14,["H6965"]],[14,16,["H120"]],[16,18,["H2664"]]]},{"k":17209,"v":[[0,3,["H3680"]],[3,5,["H6588"]],[5,7,["H3808"]],[7,8,["H6743"]],[8,11,["H3034"]],[11,13,["H5800"]],[13,17,["H7355"]]]},{"k":17210,"v":[[0,1,["H835"]],[1,4,["H120"]],[4,6,["H6342"]],[6,7,["H8548"]],[7,11,["H7185"]],[11,13,["H3820"]],[13,15,["H5307"]],[15,17,["H7451"]]]},{"k":17211,"v":[[0,3,["H5098"]],[3,4,["H738"]],[4,7,["H8264"]],[7,8,["H1677"]],[8,12,["H7563"]],[12,13,["H4910"]],[13,14,["H5921"]],[14,16,["H1800"]],[16,17,["H5971"]]]},{"k":17212,"v":[[0,2,["H5057"]],[2,4,["H2638"]],[4,5,["H8394"]],[5,9,["H7227"]],[9,10,["H4642"]],[10,14,["H8130"]],[14,15,["H1215"]],[15,17,["H748"]],[17,19,["H3117"]]]},{"k":17213,"v":[[0,2,["H120"]],[2,5,["H6231"]],[5,8,["H1818"]],[8,11,["H5315"]],[11,13,["H5127"]],[13,14,["H5704"]],[14,16,["H953"]],[16,18,["H408"]],[18,20,["H8551"]],[20,21,[]]]},{"k":17214,"v":[[0,2,["H1980"]],[2,3,["H8549"]],[3,6,["H3467"]],[6,11,["H6140"]],[11,14,["H1870"]],[14,16,["H5307"]],[16,18,["H259"]]]},{"k":17215,"v":[[0,3,["H5647"]],[3,5,["H127"]],[5,8,["H7646"]],[8,10,["H3899"]],[10,14,["H7291"]],[14,16,["H7386"]],[16,20,["H7389"]],[20,21,["H7646"]]]},{"k":17216,"v":[[0,2,["H530"]],[2,3,["H376"]],[3,5,["H7227"]],[5,7,["H1293"]],[7,12,["H213"]],[12,15,["H6238"]],[15,17,["H3808"]],[17,19,["H5352"]]]},{"k":17217,"v":[[0,3,["H5234"]],[3,5,["H6440"]],[5,7,["H3808"]],[7,8,["H2896"]],[8,10,["H5921"]],[10,12,["H6595"]],[12,14,["H3899"]],[14,16,["H1397"]],[16,18,["H6586"]]]},{"k":17218,"v":[[0,1,["H376"]],[1,3,["H926"]],[3,6,["H1952"]],[6,9,["H7451"]],[9,10,["H5869"]],[10,12,["H3045"]],[12,13,["H3808"]],[13,14,["H3588"]],[14,15,["H2639"]],[15,18,["H935"]],[18,19,[]]]},{"k":17219,"v":[[0,3,["H3198"]],[3,5,["H120"]],[5,6,["H310"]],[6,8,["H4672"]],[8,10,["H2580"]],[10,14,["H4480","H2505"]],[14,17,["H3956"]]]},{"k":17220,"v":[[0,2,["H1497"]],[2,4,["H1"]],[4,7,["H517"]],[7,9,["H559"]],[9,12,["H369"]],[12,13,["H6588"]],[13,15,["H1931"]],[15,18,["H2270"]],[18,21,["H376","H7843"]]]},{"k":17221,"v":[[0,6,["H7342"]],[6,7,["H5315"]],[7,9,["H1624"]],[9,10,["H4066"]],[10,16,["H982"]],[16,17,["H5921"]],[17,19,["H3068"]],[19,23,["H1878"]]]},{"k":17222,"v":[[0,1,["H1931"]],[1,3,["H982"]],[3,7,["H3820"]],[7,10,["H3684"]],[10,13,["H1980"]],[13,14,["H2451"]],[14,15,["H1931"]],[15,18,["H4422"]]]},{"k":17223,"v":[[0,3,["H5414"]],[3,6,["H7326"]],[6,8,["H369"]],[8,9,["H4270"]],[9,13,["H5956"]],[13,15,["H5869"]],[15,18,["H7227"]],[18,20,["H3994"]]]},{"k":17224,"v":[[0,3,["H7563"]],[3,4,["H6965"]],[4,5,["H120"]],[5,7,["H5641"]],[7,11,["H6"]],[11,13,["H6662"]],[13,14,["H7235"]]]},{"k":17225,"v":[[0,1,["H376"]],[1,5,["H8433"]],[5,6,["H7185"]],[6,8,["H6203"]],[8,10,["H6621"]],[10,12,["H7665"]],[12,15,["H369"]],[15,16,["H4832"]]]},{"k":17226,"v":[[0,3,["H6662"]],[3,6,["H7235"]],[6,8,["H5971"]],[8,9,["H8055"]],[9,13,["H7563"]],[13,15,["H4910"]],[15,17,["H5971"]],[17,18,["H584"]]]},{"k":17227,"v":[[0,1,["H376"]],[1,2,["H157"]],[2,3,["H2451"]],[3,4,["H8055"]],[4,6,["H1"]],[6,11,["H7462"]],[11,13,["H2181"]],[13,14,["H6"]],[14,16,["H1952"]]]},{"k":17228,"v":[[0,2,["H4428"]],[2,4,["H4941"]],[4,5,["H5975"]],[5,7,["H776"]],[7,9,["H376"]],[9,12,["H8641"]],[12,13,["H2040"]],[13,14,[]]]},{"k":17229,"v":[[0,2,["H1397"]],[2,4,["H2505","H5921"]],[4,6,["H7453"]],[6,7,["H6566"]],[7,9,["H7568"]],[9,10,["H5921"]],[10,12,["H6471"]]]},{"k":17230,"v":[[0,3,["H6588"]],[3,6,["H7451"]],[6,7,["H376"]],[7,11,["H4170"]],[11,14,["H6662"]],[14,16,["H7442"]],[16,18,["H8055"]]]},{"k":17231,"v":[[0,2,["H6662"]],[2,3,["H3045"]],[3,5,["H1779"]],[5,8,["H1800"]],[8,11,["H7563"]],[11,12,["H995"]],[12,13,["H3808"]],[13,15,["H1847"]],[15,16,[]]]},{"k":17232,"v":[[0,1,["H3944"]],[1,2,["H376"]],[2,8,["H6315","H7151"]],[8,10,["H2450"]],[10,13,["H7725"]],[13,14,["H639"]]]},{"k":17233,"v":[[0,3,["H2450"]],[3,4,["H376"]],[4,5,["H8199"]],[5,6,["H854"]],[6,8,["H191"]],[8,9,["H376"]],[9,12,["H7264"]],[12,14,["H7832"]],[14,17,["H369"]],[17,18,["H5183"]]]},{"k":17234,"v":[[0,2,["H376","H1818"]],[2,3,["H8130"]],[3,5,["H8535"]],[5,8,["H3477"]],[8,9,["H1245"]],[9,11,["H5315"]]]},{"k":17235,"v":[[0,2,["H3684"]],[2,3,["H3318"]],[3,4,["H3605"]],[4,6,["H7307"]],[6,9,["H2450"]],[9,11,["H7623"]],[11,15,["H268"]]]},{"k":17236,"v":[[0,3,["H4910"]],[3,4,["H7181"]],[4,5,["H5921"]],[5,6,["H1697","H8267"]],[6,7,["H3605"]],[7,9,["H8334"]],[9,11,["H7563"]]]},{"k":17237,"v":[[0,2,["H7326"]],[2,5,["H8501"]],[5,6,["H376"]],[6,8,["H6298"]],[8,10,["H3068"]],[10,11,["H215"]],[11,12,["H8147"]],[12,14,["H5869"]]]},{"k":17238,"v":[[0,2,["H4428"]],[2,4,["H571"]],[4,5,["H8199"]],[5,7,["H1800"]],[7,9,["H3678"]],[9,12,["H3559"]],[12,14,["H5703"]]]},{"k":17239,"v":[[0,2,["H7626"]],[2,4,["H8433"]],[4,5,["H5414"]],[5,6,["H2451"]],[6,9,["H5288"]],[9,10,["H7971"]],[10,15,["H517"]],[15,17,["H954"]]]},{"k":17240,"v":[[0,3,["H7563"]],[3,5,["H7235"]],[5,6,["H6588"]],[6,7,["H7235"]],[7,10,["H6662"]],[10,12,["H7200"]],[12,14,["H4658"]]]},{"k":17241,"v":[[0,1,["H3256"]],[1,3,["H1121"]],[3,9,["H5117"]],[9,13,["H5414"]],[13,14,["H4574"]],[14,17,["H5315"]]]},{"k":17242,"v":[[0,4,["H369"]],[4,5,["H2377"]],[5,7,["H5971"]],[7,8,["H6544"]],[8,12,["H8104"]],[12,14,["H8451"]],[14,15,["H835"]],[15,17,[]]]},{"k":17243,"v":[[0,2,["H5650"]],[2,4,["H3808"]],[4,6,["H3256"]],[6,8,["H1697"]],[8,10,["H3588"]],[10,12,["H995"]],[12,15,["H369"]],[15,16,["H4617"]]]},{"k":17244,"v":[[0,1,["H2372"]],[1,4,["H376"]],[4,7,["H213"]],[7,10,["H1697"]],[10,14,["H8615"]],[14,17,["H3684"]],[17,19,["H4480"]],[19,20,[]]]},{"k":17245,"v":[[0,5,["H6445"]],[5,7,["H5650"]],[7,10,["H4480","H5290"]],[10,14,["H1961"]],[14,16,["H4497"]],[16,19,["H319"]]]},{"k":17246,"v":[[0,2,["H639"]],[2,3,["H376"]],[3,5,["H1624"]],[5,6,["H4066"]],[6,9,["H2534"]],[9,10,["H1167"]],[10,11,["H7227"]],[11,13,["H6588"]]]},{"k":17247,"v":[[0,2,["H120"]],[2,3,["H1346"]],[3,7,["H8213"]],[7,9,["H3519"]],[9,11,["H8551"]],[11,13,["H8217"]],[13,15,["H7307"]]]},{"k":17248,"v":[[0,3,["H2505"]],[3,4,["H5973"]],[4,6,["H1590"]],[6,7,["H8130"]],[7,10,["H5315"]],[10,12,["H8085"]],[12,13,["H423"]],[13,15,["H5046"]],[15,17,["H3808"]]]},{"k":17249,"v":[[0,2,["H2731"]],[2,4,["H120"]],[4,5,["H5414"]],[5,7,["H4170"]],[7,12,["H982"]],[12,15,["H3068"]],[15,18,["H7682"]]]},{"k":17250,"v":[[0,1,["H7227"]],[1,2,["H1245"]],[2,4,["H4910"]],[4,5,["H6440"]],[5,8,["H376"]],[8,9,["H4941"]],[9,13,["H4480","H3068"]]]},{"k":17251,"v":[[0,2,["H5766"]],[2,3,["H376"]],[3,6,["H8441"]],[6,9,["H6662"]],[9,14,["H3477"]],[14,17,["H1870"]],[17,19,["H8441"]],[19,22,["H7563"]]]},{"k":17252,"v":[[0,2,["H1697"]],[2,4,["H94"]],[4,6,["H1121"]],[6,8,["H3348"]],[8,11,["H4853"]],[11,13,["H1397"]],[13,14,["H5002"]],[14,16,["H384"]],[16,19,["H384"]],[19,21,["H401"]]]},{"k":17253,"v":[[0,1,["H3588"]],[1,2,["H595"]],[2,5,["H1198"]],[5,8,["H4480","H376"]],[8,11,["H3808"]],[11,13,["H998"]],[13,16,["H120"]]]},{"k":17254,"v":[[0,2,["H3808"]],[2,3,["H3925"]],[3,4,["H2451"]],[4,6,["H3045"]],[6,8,["H1847"]],[8,11,["H6918"]]]},{"k":17255,"v":[[0,1,["H4310"]],[1,4,["H5927"]],[4,6,["H8064"]],[6,8,["H3381"]],[8,9,["H4310"]],[9,11,["H622"]],[11,13,["H7307"]],[13,16,["H2651"]],[16,17,["H4310"]],[17,19,["H6887"]],[19,21,["H4325"]],[21,24,["H8071"]],[24,25,["H4310"]],[25,27,["H6965"]],[27,28,["H3605"]],[28,30,["H657"]],[30,33,["H776"]],[33,34,["H4100"]],[34,37,["H8034"]],[37,39,["H4100"]],[39,42,["H1121"]],[42,43,["H8034"]],[43,44,["H3588"]],[44,47,["H3045"]]]},{"k":17256,"v":[[0,1,["H3605"]],[1,2,["H565"]],[2,4,["H433"]],[4,6,["H6884"]],[6,7,["H1931"]],[7,10,["H4043"]],[10,16,["H2620"]],[16,18,[]]]},{"k":17257,"v":[[0,1,["H3254"]],[1,3,["H408"]],[3,4,["H5921"]],[4,6,["H1697"]],[6,7,["H6435"]],[7,9,["H3198"]],[9,16,["H3576"]]]},{"k":17258,"v":[[0,1,["H8147"]],[1,5,["H7592"]],[5,6,["H4480","H854"]],[6,8,["H4513","H4480"]],[8,11,["H408"]],[11,12,["H2962"]],[12,14,["H4191"]]]},{"k":17259,"v":[[0,2,["H7368"]],[2,3,["H4480"]],[3,5,["H7723"]],[5,7,["H1697","H3577"]],[7,8,["H5414"]],[8,10,["H408"]],[10,11,["H7389"]],[11,13,["H6239"]],[13,14,["H2963"]],[14,17,["H3899"]],[17,18,["H2706"]],[18,20,[]]]},{"k":17260,"v":[[0,1,["H6435"]],[1,4,["H7646"]],[4,6,["H3584"]],[6,9,["H559"]],[9,10,["H4310"]],[10,13,["H3068"]],[13,15,["H6435"]],[15,18,["H3423"]],[18,20,["H1589"]],[20,22,["H8610"]],[22,24,["H8034"]],[24,27,["H430"]],[27,29,[]]]},{"k":17261,"v":[[0,1,["H3960"]],[1,2,["H408"]],[2,4,["H5650"]],[4,5,["H413"]],[5,7,["H113"]],[7,8,["H6435"]],[8,10,["H7043"]],[10,16,["H816"]]]},{"k":17262,"v":[[0,4,["H1755"]],[4,6,["H7043"]],[6,8,["H1"]],[8,11,["H3808"]],[11,12,["H1288"]],[12,14,["H517"]]]},{"k":17263,"v":[[0,4,["H1755"]],[4,7,["H2889"]],[7,11,["H5869"]],[11,15,["H3808"]],[15,16,["H7364"]],[16,19,["H4480","H6675"]]]},{"k":17264,"v":[[0,4,["H1755"]],[4,6,["H4100"]],[6,7,["H7311"]],[7,10,["H5869"]],[10,13,["H6079"]],[13,16,["H5375"]]]},{"k":17265,"v":[[0,4,["H1755"]],[4,6,["H8127"]],[6,9,["H2719"]],[9,13,["H4973"]],[13,15,["H3979"]],[15,17,["H398"]],[17,19,["H6041"]],[19,23,["H4480","H776"]],[23,26,["H34"]],[26,29,["H4480","H120"]]]},{"k":17266,"v":[[0,2,["H5936"]],[2,4,["H8147"]],[4,5,["H1323"]],[5,7,["H3051"]],[7,8,["H3051"]],[8,11,["H7969","H2007"]],[11,15,["H3808"]],[15,16,["H7646"]],[16,18,["H702"]],[18,20,["H559"]],[20,21,["H3808"]],[21,24,["H1952"]]]},{"k":17267,"v":[[0,2,["H7585"]],[2,5,["H6115"]],[5,6,["H7356"]],[6,8,["H776"]],[8,11,["H3808"]],[11,12,["H7646"]],[12,14,["H4325"]],[14,17,["H784"]],[17,19,["H559"]],[19,20,["H3808"]],[20,23,["H1952"]]]},{"k":17268,"v":[[0,2,["H5869"]],[2,4,["H3932"]],[4,7,["H1"]],[7,9,["H936"]],[9,11,["H3349"]],[11,13,["H517"]],[13,15,["H6158"]],[15,18,["H5158"]],[18,22,["H5365"]],[22,25,["H1121"]],[25,26,["H5404"]],[26,28,["H398"]],[28,29,[]]]},{"k":17269,"v":[[0,3,["H7969"]],[3,8,["H6381"]],[8,9,["H4480"]],[9,12,["H702"]],[12,15,["H3045"]],[15,16,["H3808"]]]},{"k":17270,"v":[[0,2,["H1870"]],[2,5,["H5404"]],[5,8,["H8064"]],[8,10,["H1870"]],[10,13,["H5175"]],[13,14,["H5921"]],[14,16,["H6697"]],[16,18,["H1870"]],[18,21,["H591"]],[21,24,["H3820"]],[24,27,["H3220"]],[27,30,["H1870"]],[30,33,["H1397"]],[33,36,["H5959"]]]},{"k":17271,"v":[[0,1,["H3651"]],[1,4,["H1870"]],[4,7,["H5003"]],[7,8,["H802"]],[8,10,["H398"]],[10,12,["H4229"]],[12,14,["H6310"]],[14,16,["H559"]],[16,19,["H6466"]],[19,20,["H3808"]],[20,21,["H205"]]]},{"k":17272,"v":[[0,1,["H8478"]],[1,2,["H7969"]],[2,5,["H776"]],[5,7,["H7264"]],[7,9,["H8478"]],[9,10,["H702"]],[10,13,["H3808","H3201"]],[13,14,["H5375"]]]},{"k":17273,"v":[[0,1,["H8478"]],[1,3,["H5650"]],[3,4,["H3588"]],[4,6,["H4427"]],[6,9,["H5036"]],[9,10,["H3588"]],[10,13,["H7646"]],[13,15,["H3899"]]]},{"k":17274,"v":[[0,1,["H8478"]],[1,3,["H8130"]],[3,5,["H3588"]],[5,8,["H1166"]],[8,11,["H8198"]],[11,12,["H3588"]],[12,14,["H3423"]],[14,17,["H1404"]]]},{"k":17275,"v":[[0,3,["H702"]],[3,7,["H6996"]],[7,10,["H776"]],[10,12,["H1992"]],[12,15,["H2449","H2450"]]]},{"k":17276,"v":[[0,2,["H5244"]],[2,5,["H5971"]],[5,6,["H3808"]],[6,7,["H5794"]],[7,10,["H3559"]],[10,12,["H3899"]],[12,15,["H7019"]]]},{"k":17277,"v":[[0,2,["H8227"]],[2,6,["H3808","H6099"]],[6,7,["H5971"]],[7,9,["H7760"]],[9,12,["H1004"]],[12,15,["H5553"]]]},{"k":17278,"v":[[0,2,["H697"]],[2,4,["H369"]],[4,5,["H4428"]],[5,9,["H3318"]],[9,10,["H3605"]],[10,14,["H2686"]]]},{"k":17279,"v":[[0,2,["H8079"]],[2,4,["H8610"]],[4,7,["H3027"]],[7,11,["H4428"]],[11,12,["H1964"]]]},{"k":17280,"v":[[0,3,["H7969"]],[3,6,["H6806"]],[6,7,["H3190"]],[7,9,["H702"]],[9,11,["H3190"]],[11,13,["H1980"]]]},{"k":17281,"v":[[0,2,["H3918"]],[2,5,["H1368"]],[5,7,["H929"]],[7,11,["H3808","H7725"]],[11,12,["H4480","H6440"]],[12,13,["H3605"]]]},{"k":17282,"v":[[0,2,["H2223","H4975"]],[2,5,["H8495"]],[5,6,["H176"]],[6,9,["H4428"]],[9,10,["H5973"]],[10,16,["H510"]]]},{"k":17283,"v":[[0,1,["H518"]],[1,5,["H5034"]],[5,9,["H5375"]],[9,11,["H518"]],[11,15,["H2161"]],[15,18,["H3027"]],[18,21,["H6310"]]]},{"k":17284,"v":[[0,1,["H3588"]],[1,3,["H4330"]],[3,5,["H2461"]],[5,7,["H3318"]],[7,8,["H2529"]],[8,11,["H4330"]],[11,14,["H639"]],[14,16,["H3318"]],[16,17,["H1818"]],[17,20,["H4330"]],[20,22,["H639"]],[22,24,["H3318"]],[24,25,["H7379"]]]},{"k":17285,"v":[[0,2,["H1697"]],[2,4,["H4428"]],[4,5,["H3927"]],[5,7,["H4853"]],[7,8,["H834"]],[8,10,["H517"]],[10,11,["H3256"]],[11,12,[]]]},{"k":17286,"v":[[0,1,["H4100"]],[1,3,["H1248"]],[3,5,["H4100"]],[5,7,["H1248"]],[7,10,["H990"]],[10,12,["H4100"]],[12,14,["H1248"]],[14,17,["H5088"]]]},{"k":17287,"v":[[0,1,["H5414"]],[1,2,["H408"]],[2,4,["H2428"]],[4,6,["H802"]],[6,9,["H1870"]],[9,13,["H4229"]],[13,14,["H4428"]]]},{"k":17288,"v":[[0,3,["H408"]],[3,5,["H4428"]],[5,7,["H3927"]],[7,10,["H408"]],[10,12,["H4428"]],[12,14,["H8354"]],[14,15,["H3196"]],[15,16,["H176"]],[16,18,["H7336"]],[18,20,["H7941"]]]},{"k":17289,"v":[[0,1,["H6435"]],[1,3,["H8354"]],[3,5,["H7911"]],[5,7,["H2710"]],[7,9,["H8138"]],[9,11,["H1779"]],[11,13,["H3605"]],[13,16,["H1121","H6040"]]]},{"k":17290,"v":[[0,1,["H5414"]],[1,3,["H7941"]],[3,10,["H6"]],[10,12,["H3196"]],[12,18,["H4751"]],[18,19,["H5315"]]]},{"k":17291,"v":[[0,3,["H8354"]],[3,5,["H7911"]],[5,7,["H7389"]],[7,9,["H2142"]],[9,11,["H5999"]],[11,12,["H3808"]],[12,13,["H5750"]]]},{"k":17292,"v":[[0,1,["H6605"]],[1,3,["H6310"]],[3,6,["H483"]],[6,7,["H413"]],[7,9,["H1779"]],[9,11,["H3605"]],[11,15,["H1121"]],[15,17,["H2475"]]]},{"k":17293,"v":[[0,1,["H6605"]],[1,3,["H6310"]],[3,4,["H8199"]],[4,5,["H6664"]],[5,9,["H1777"]],[9,12,["H6041"]],[12,14,["H34"]]]},{"k":17294,"v":[[0,1,["H4310"]],[1,3,["H4672"]],[3,5,["H2428"]],[5,6,["H802"]],[6,9,["H4377"]],[9,11,["H7350"]],[11,13,["H4480","H6443"]]]},{"k":17295,"v":[[0,2,["H3820"]],[2,5,["H1167"]],[5,8,["H982"]],[8,16,["H3808"]],[16,17,["H2637"]],[17,19,["H7998"]]]},{"k":17296,"v":[[0,3,["H1580"]],[3,5,["H2896"]],[5,7,["H3808"]],[7,8,["H7451"]],[8,9,["H3605"]],[9,11,["H3117"]],[11,14,["H2416"]]]},{"k":17297,"v":[[0,2,["H1875"]],[2,3,["H6785"]],[3,5,["H6593"]],[5,7,["H6213"]],[7,8,["H2656"]],[8,11,["H3709"]]]},{"k":17298,"v":[[0,2,["H1961"]],[2,5,["H5503"]],[5,6,["H591"]],[6,8,["H935"]],[8,10,["H3899"]],[10,12,["H4480","H4801"]]]},{"k":17299,"v":[[0,2,["H6965"]],[2,7,["H5750"]],[7,8,["H3915"]],[8,10,["H5414"]],[10,11,["H2964"]],[11,14,["H1004"]],[14,17,["H2706"]],[17,20,["H5291"]]]},{"k":17300,"v":[[0,2,["H2161"]],[2,4,["H7704"]],[4,6,["H3947"]],[6,10,["H4480","H6529"]],[10,13,["H3709"]],[13,15,["H5193"]],[15,17,["H3754"]]]},{"k":17301,"v":[[0,2,["H2296"]],[2,4,["H4975"]],[4,6,["H5797"]],[6,8,["H553"]],[8,10,["H2220"]]]},{"k":17302,"v":[[0,2,["H2938"]],[2,3,["H3588"]],[3,5,["H5504"]],[5,7,["H2896"]],[7,9,["H5216"]],[9,12,["H3808","H3518"]],[12,14,["H3915"]]]},{"k":17303,"v":[[0,2,["H7971"]],[2,4,["H3027"]],[4,7,["H3601"]],[7,10,["H3709"]],[10,11,["H8551"]],[11,13,["H6418"]]]},{"k":17304,"v":[[0,3,["H6566"]],[3,5,["H3709"]],[5,8,["H6041"]],[8,12,["H7971"]],[12,14,["H3027"]],[14,17,["H34"]]]},{"k":17305,"v":[[0,3,["H3808"]],[3,4,["H3372"]],[4,7,["H4480","H7950"]],[7,10,["H1004"]],[10,11,["H3588"]],[11,12,["H3605"]],[12,14,["H1004"]],[14,16,["H3847"]],[16,18,["H8144"]]]},{"k":17306,"v":[[0,2,["H6213"]],[2,6,["H4765"]],[6,8,["H3830"]],[8,10,["H8336"]],[10,12,["H713"]]]},{"k":17307,"v":[[0,2,["H1167"]],[2,4,["H3045"]],[4,7,["H8179"]],[7,10,["H3427"]],[10,11,["H5973"]],[11,13,["H2205"]],[13,16,["H776"]]]},{"k":17308,"v":[[0,2,["H6213"]],[2,4,["H5466"]],[4,6,["H4376"]],[6,9,["H5414"]],[9,10,["H2289"]],[10,13,["H3669"]]]},{"k":17309,"v":[[0,1,["H5797"]],[1,3,["H1926"]],[3,6,["H3830"]],[6,10,["H7832"]],[10,12,["H3117"]],[12,14,["H314"]]]},{"k":17310,"v":[[0,2,["H6605"]],[2,4,["H6310"]],[4,6,["H2451"]],[6,8,["H5921"]],[8,10,["H3956"]],[10,13,["H8451"]],[13,15,["H2617"]]]},{"k":17311,"v":[[0,3,["H6822"]],[3,6,["H1979"]],[6,9,["H1004"]],[9,11,["H398"]],[11,12,["H3808"]],[12,14,["H3899"]],[14,16,["H6104"]]]},{"k":17312,"v":[[0,2,["H1121"]],[2,4,["H6965"]],[4,8,["H833"]],[8,10,["H1167"]],[10,14,["H1984"]],[14,15,[]]]},{"k":17313,"v":[[0,1,["H7227"]],[1,2,["H1323"]],[2,4,["H6213"]],[4,5,["H2428"]],[5,7,["H859"]],[7,8,["H5927","H5921"]],[8,10,["H3605"]]]},{"k":17314,"v":[[0,1,["H2580"]],[1,3,["H8267"]],[3,5,["H3308"]],[5,7,["H1892"]],[7,10,["H802"]],[10,12,["H3373"]],[12,14,["H3068"]],[14,15,["H1931"]],[15,18,["H1984"]]]},{"k":17315,"v":[[0,1,["H5414"]],[1,5,["H4480","H6529"]],[5,8,["H3027"]],[8,13,["H4639"]],[13,14,["H1984"]],[14,18,["H8179"]]]},{"k":17316,"v":[[0,2,["H1697"]],[2,5,["H6953"]],[5,7,["H1121"]],[7,9,["H1732"]],[9,10,["H4428"]],[10,12,["H3389"]]]},{"k":17317,"v":[[0,1,["H1892"]],[1,3,["H1892"]],[3,4,["H559"]],[4,6,["H6953"]],[6,7,["H1892"]],[7,9,["H1892"]],[9,10,["H3605"]],[10,12,["H1892"]]]},{"k":17318,"v":[[0,1,["H4100"]],[1,2,["H3504"]],[2,5,["H120"]],[5,7,["H3605"]],[7,9,["H5999"]],[9,12,["H7945","H5998"]],[12,13,["H8478"]],[13,15,["H8121"]]]},{"k":17319,"v":[[0,2,["H1755"]],[2,4,["H1980"]],[4,7,["H1755"]],[7,8,["H935"]],[8,11,["H776"]],[11,12,["H5975"]],[12,14,["H5769"]]]},{"k":17320,"v":[[0,2,["H8121"]],[2,4,["H2224"]],[4,7,["H8121"]],[7,9,["H935"]],[9,11,["H7602"]],[11,12,["H413"]],[12,14,["H4725"]],[14,15,["H8033"]],[15,16,["H1931"]],[16,17,["H2224"]]]},{"k":17321,"v":[[0,2,["H7307"]],[2,3,["H1980"]],[3,4,["H413"]],[4,6,["H1864"]],[6,9,["H5437"]],[9,10,["H413"]],[10,12,["H6828"]],[12,15,["H1980"]],[15,16,["H5437","H5437"]],[16,19,["H7307"]],[19,21,["H7725"]],[21,22,["H5921"]],[22,25,["H5439"]]]},{"k":17322,"v":[[0,1,["H3605"]],[1,3,["H5158"]],[3,4,["H1980"]],[4,5,["H413"]],[5,7,["H3220"]],[7,10,["H3220"]],[10,12,["H369"]],[12,13,["H4392"]],[13,14,["H413"]],[14,16,["H4725"]],[16,20,["H7945","H5158"]],[20,21,["H1980"]],[21,22,["H8033"]],[22,23,["H1992"]],[23,24,["H7725"]],[24,25,["H1980"]]]},{"k":17323,"v":[[0,1,["H3605"]],[1,2,["H1697"]],[2,6,["H3023"]],[6,7,["H376"]],[7,8,["H3201","H3808"]],[8,9,["H1696"]],[9,12,["H5869"]],[12,14,["H3808"]],[14,15,["H7646"]],[15,17,["H7200"]],[17,18,["H3808"]],[18,20,["H241"]],[20,21,["H4390"]],[21,23,["H4480","H8085"]]]},{"k":17324,"v":[[0,2,["H4100"]],[2,5,["H7945","H1961"]],[5,6,["H1931"]],[6,11,["H7945","H1961"]],[11,13,["H4100"]],[13,16,["H7945","H6213"]],[16,18,["H1931"]],[18,22,["H7945","H6213"]],[22,26,["H369","H3605"]],[26,27,["H2319"]],[27,29,["H8478"]],[29,31,["H8121"]]]},{"k":17325,"v":[[0,2,["H3426"]],[2,4,["H1697"]],[4,9,["H7945","H559"]],[9,10,["H7200"]],[10,11,["H2088"]],[11,13,["H2319"]],[13,14,["H1931"]],[14,16,["H1961"]],[16,17,["H3528"]],[17,20,["H5769"]],[20,21,["H834"]],[21,22,["H1961"]],[22,23,["H4480","H6440"]],[23,24,[]]]},{"k":17326,"v":[[0,3,["H369"]],[3,4,["H2146"]],[4,6,["H7223"]],[6,8,["H1571","H3808"]],[8,11,["H1961"]],[11,13,["H2146"]],[13,19,["H7945","H1961"]],[19,20,["H5973"]],[20,24,["H7945","H1961"]],[24,25,["H314"]]]},{"k":17327,"v":[[0,1,["H589"]],[1,3,["H6953"]],[3,4,["H1961"]],[4,5,["H4428"]],[5,6,["H5921"]],[6,7,["H3478"]],[7,9,["H3389"]]]},{"k":17328,"v":[[0,3,["H5414","(H853)"]],[3,5,["H3820"]],[5,7,["H1875"]],[7,10,["H8446"]],[10,12,["H2451"]],[12,13,["H5921"]],[13,14,["H3605"]],[14,16,["H834"]],[16,18,["H6213"]],[18,19,["H8478"]],[19,20,["H8064"]],[20,21,["H1931"]],[21,22,["H7451"]],[22,23,["H6045"]],[23,25,["H430"]],[25,26,["H5414"]],[26,29,["H1121"]],[29,31,["H120"]],[31,34,["H6031"]],[34,35,[]]]},{"k":17329,"v":[[0,3,["H7200","(H853)"]],[3,4,["H3605"]],[4,6,["H4639"]],[6,9,["H7945","H6213"]],[9,10,["H8478"]],[10,12,["H8121"]],[12,14,["H2009"]],[14,15,["H3605"]],[15,17,["H1892"]],[17,19,["H7469"]],[19,21,["H7307"]]]},{"k":17330,"v":[[0,4,["H5791"]],[4,5,["H3201","H3808"]],[5,8,["H8626"]],[8,13,["H2642"]],[13,14,["H3201","H3808"]],[14,16,["H4487"]]]},{"k":17331,"v":[[0,1,["H589"]],[1,2,["H1696"]],[2,3,["H5973"]],[3,6,["H3820"]],[6,7,["H559"]],[7,8,["H2009"]],[8,9,["H589"]],[9,14,["H1431"]],[14,18,["H3254"]],[18,19,["H2451"]],[19,20,["H5921"]],[20,21,["H3605"]],[21,23,["H834"]],[23,25,["H1961"]],[25,26,["H6440"]],[26,28,["H5921"]],[28,29,["H3389"]],[29,32,["H3820"]],[32,34,["H7235"]],[34,35,["H7200"]],[35,37,["H2451"]],[37,39,["H1847"]]]},{"k":17332,"v":[[0,3,["H5414"]],[3,5,["H3820"]],[5,7,["H3045"]],[7,8,["H2451"]],[8,11,["H3045"]],[11,12,["H1947"]],[12,14,["H5531"]],[14,16,["H3045"]],[16,18,["H2088"]],[18,19,["H7945","H1571"]],[19,21,["H7475"]],[21,23,["H7307"]]]},{"k":17333,"v":[[0,1,["H3588"]],[1,3,["H7230"]],[3,4,["H2451"]],[4,6,["H7230"]],[6,7,["H3708"]],[7,11,["H3254"]],[11,12,["H1847"]],[12,13,["H3254"]],[13,14,["H4341"]]]},{"k":17334,"v":[[0,1,["H589"]],[1,2,["H559"]],[2,5,["H3820"]],[5,7,["H1980"]],[7,8,["H4994"]],[8,11,["H5254"]],[11,14,["H8057"]],[14,16,["H7200"]],[16,17,["H2896"]],[17,19,["H2009"]],[19,20,["H1931"]],[20,21,["H1571"]],[21,23,["H1892"]]]},{"k":17335,"v":[[0,2,["H559"]],[2,4,["H7814"]],[4,7,["H1984"]],[7,10,["H8057"]],[10,11,["H4100"]],[11,12,["H6213"]],[12,13,["H2090"]]]},{"k":17336,"v":[[0,2,["H8446"]],[2,5,["H3820"]],[5,7,["H4900","(H853)"]],[7,8,["H1320"]],[8,10,["H3196"]],[10,12,["H5090"]],[12,14,["H3820"]],[14,16,["H2451"]],[16,20,["H270"]],[20,22,["H5531"]],[22,23,["H5704","H834"]],[23,26,["H7200"]],[26,27,["H335"]],[27,29,["H2088"]],[29,30,["H2896"]],[30,33,["H1121"]],[33,35,["H120"]],[35,36,["H834"]],[36,39,["H6213"]],[39,40,["H8478"]],[40,42,["H8064"]],[42,43,["H4557"]],[43,45,["H3117"]],[45,48,["H2416"]]]},{"k":17337,"v":[[0,4,["H1431"]],[4,5,["H4639"]],[5,7,["H1129"]],[7,9,["H1004"]],[9,11,["H5193"]],[11,13,["H3754"]]]},{"k":17338,"v":[[0,2,["H6213"]],[2,4,["H1593"]],[4,6,["H6508"]],[6,9,["H5193"]],[9,10,["H6086"]],[10,14,["H3605"]],[14,17,["H6529"]]]},{"k":17339,"v":[[0,2,["H6213"]],[2,4,["H1295"]],[4,6,["H4325"]],[6,8,["H8248"]],[8,9,["H4480"]],[9,11,["H3293"]],[11,14,["H6779"]],[14,15,["H6086"]]]},{"k":17340,"v":[[0,2,["H7069"]],[2,4,["H5650"]],[4,6,["H8198"]],[6,8,["H1961"]],[8,10,["H1121"]],[10,13,["H1004"]],[13,14,["H1571"]],[14,16,["H1961"]],[16,17,["H7235"]],[17,18,["H4735"]],[18,20,["H1241"]],[20,23,["H6629"]],[23,25,["H4480","H3605"]],[25,27,["H7945","H1961"]],[27,29,["H3389"]],[29,30,["H6440"]],[30,31,[]]]},{"k":17341,"v":[[0,2,["H3664"]],[2,4,["H1571"]],[4,5,["H3701"]],[5,7,["H2091"]],[7,11,["H5459"]],[11,13,["H4428"]],[13,17,["H4082"]],[17,19,["H6213"]],[19,22,["H7891"]],[22,25,["H7891"]],[25,28,["H8588"]],[28,31,["H1121"]],[31,33,["H120"]],[33,36,["H7705","H7705"]],[36,41,[]]]},{"k":17342,"v":[[0,4,["H1431"]],[4,7,["H3254"]],[7,9,["H4480","H3605"]],[9,11,["H7945","H1961"]],[11,12,["H6440"]],[12,15,["H3389"]],[15,16,["H637"]],[16,18,["H2451"]],[18,19,["H5975"]],[19,21,[]]]},{"k":17343,"v":[[0,2,["H3605","H834"]],[2,4,["H5869"]],[4,5,["H7592"]],[5,7,["H680"]],[7,8,["H3808"]],[8,9,["H4480"]],[9,12,["H4513"]],[12,13,["H3808","(H853)"]],[13,15,["H3820"]],[15,17,["H4480","H3605"]],[17,18,["H8057"]],[18,19,["H3588"]],[19,21,["H3820"]],[21,22,["H8056"]],[22,24,["H4480","H3605"]],[24,26,["H5999"]],[26,28,["H2088"]],[28,29,["H1961"]],[29,31,["H2506"]],[31,33,["H4480","H3605"]],[33,35,["H5999"]]]},{"k":17344,"v":[[0,2,["H589"]],[2,3,["H6437"]],[3,5,["H3605"]],[5,7,["H4639"]],[7,12,["H7945","H6213","H3027"]],[12,16,["H5999"]],[16,20,["H7945","H5998"]],[20,22,["H6213"]],[22,24,["H2009"]],[24,25,["H3605"]],[25,27,["H1892"]],[27,29,["H7469"]],[29,31,["H7307"]],[31,35,["H369"]],[35,36,["H3504"]],[36,37,["H8478"]],[37,39,["H8121"]]]},{"k":17345,"v":[[0,2,["H589"]],[2,3,["H6437"]],[3,6,["H7200"]],[6,7,["H2451"]],[7,9,["H1947"]],[9,11,["H5531"]],[11,12,["H3588"]],[12,13,["H4100"]],[13,16,["H120"]],[16,19,["H7945","H935"]],[19,20,["H310"]],[20,22,["H4428"]],[22,23,["(H853)"]],[23,25,["H834"]],[25,28,["H3528"]],[28,29,["H6213"]]]},{"k":17346,"v":[[0,2,["H589"]],[2,3,["H7200"]],[3,4,["H7945","H3426"]],[4,5,["H2451"]],[5,6,["H3504"]],[6,7,["H4480","H5531"]],[7,11,["H216"]],[11,12,["H3504"]],[12,13,["H4480","H2822"]]]},{"k":17347,"v":[[0,3,["H2450"]],[3,4,["H5869"]],[4,8,["H7218"]],[8,11,["H3684"]],[11,12,["H1980"]],[12,14,["H2822"]],[14,17,["H589"]],[17,18,["H3045"]],[18,19,["H1571"]],[19,22,["H7945","H4745","H259"]],[22,23,["H7136"]],[23,24,["H854"]],[24,26,["H3605"]]]},{"k":17348,"v":[[0,2,["H559"]],[2,3,["H589"]],[3,6,["H3820"]],[6,9,["H4745"]],[9,12,["H3684"]],[12,15,["H7136"]],[15,16,["H1571"]],[16,20,["H4100"]],[20,22,["H589"]],[22,23,["H227"]],[23,24,["H3148"]],[24,25,["H2449"]],[25,28,["H1696"]],[28,31,["H3820"]],[31,33,["H2088"]],[33,34,["H7945","H1571"]],[34,36,["H1892"]]]},{"k":17349,"v":[[0,1,["H3588"]],[1,4,["H369"]],[4,5,["H2146"]],[5,8,["H2450"]],[8,10,["H5973"]],[10,13,["H3684"]],[13,15,["H5769"]],[15,19,["H7945","H3528"]],[19,23,["H3117"]],[23,25,["H935"]],[25,27,["H3605"]],[27,29,["H7911"]],[29,31,["H349"]],[31,32,["H4191"]],[32,34,["H2450"]],[34,36,["H5973"]],[36,38,["H3684"]]]},{"k":17350,"v":[[0,3,["H8130","(H853)"]],[3,4,["H2416"]],[4,5,["H3588"]],[5,7,["H4639"]],[7,10,["H7945","H6213"]],[10,11,["H8478"]],[11,13,["H8121"]],[13,15,["H7451"]],[15,16,["H5921"]],[16,18,["H3588"]],[18,19,["H3605"]],[19,21,["H1892"]],[21,23,["H7469"]],[23,25,["H7307"]]]},{"k":17351,"v":[[0,2,["H589"]],[2,3,["H8130","(H853)"]],[3,4,["H3605"]],[4,6,["H5999"]],[6,8,["H7945","H589"]],[8,10,["H6001"]],[10,11,["H8478"]],[11,13,["H8121"]],[13,17,["H7945","H5117"]],[17,21,["H120"]],[21,24,["H7945","H1961"]],[24,25,["H310"]],[25,26,[]]]},{"k":17352,"v":[[0,2,["H4310"]],[2,3,["H3045"]],[3,7,["H1961"]],[7,9,["H2450"]],[9,11,["H176"]],[11,13,["H5530"]],[13,18,["H7980"]],[18,20,["H3605"]],[20,22,["H5999"]],[22,26,["H7945","H5998"]],[26,33,["H7945","H2449"]],[33,34,["H8478"]],[34,36,["H8121"]],[36,37,["H2088"]],[37,39,["H1571"]],[39,40,["H1892"]]]},{"k":17353,"v":[[0,2,["H589"]],[2,4,["H5437"]],[4,6,["(H853)"]],[6,8,["H3820"]],[8,10,["H2976"]],[10,11,["H5921"]],[11,12,["H3605"]],[12,14,["H5999"]],[14,17,["H7945","H5998"]],[17,18,["H8478"]],[18,20,["H8121"]]]},{"k":17354,"v":[[0,1,["H3588"]],[1,3,["H3426"]],[3,5,["H120"]],[5,7,["H7945","H5999"]],[7,10,["H2451"]],[10,13,["H1847"]],[13,16,["H3788"]],[16,20,["H120"]],[20,23,["H7945","H3808"]],[23,24,["H5998"]],[24,28,["H5414"]],[28,32,["H2506"]],[32,33,["H2088"]],[33,34,["H1571"]],[34,36,["H1892"]],[36,39,["H7227"]],[39,40,["H7451"]]]},{"k":17355,"v":[[0,1,["H3588"]],[1,2,["H4100"]],[2,3,["H1933"]],[3,4,["H120"]],[4,6,["H3605"]],[6,8,["H5999"]],[8,12,["H7475"]],[12,15,["H3820"]],[15,17,["H7945","H1931"]],[17,19,["H6001"]],[19,20,["H8478"]],[20,22,["H8121"]]]},{"k":17356,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H3117"]],[4,6,["H4341"]],[6,9,["H6045"]],[9,10,["H3708"]],[10,11,["H1571"]],[11,13,["H3820"]],[13,15,["H3808"]],[15,16,["H7901"]],[16,19,["H3915"]],[19,20,["H2088"]],[20,22,["H1571"]],[22,23,["H1892"]]]},{"k":17357,"v":[[0,3,["H369"]],[3,4,["H2896"]],[4,7,["H120"]],[7,12,["H7945","H398"]],[12,14,["H8354"]],[14,21,["(H853)","H5315"]],[21,22,["H7200"]],[22,23,["H2896"]],[23,26,["H5999"]],[26,27,["H2090"]],[27,28,["H1571"]],[28,29,["H589"]],[29,30,["H7200"]],[30,31,["H3588"]],[31,32,["H1931"]],[32,36,["H4480","H3027"]],[36,38,["H430"]]]},{"k":17358,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,4,["H398"]],[4,6,["H4310"]],[6,9,["H2363"]],[9,11,["H2351"]],[11,12,["H4480"]],[12,13,[]]]},{"k":17359,"v":[[0,1,["H3588"]],[1,3,["H5414"]],[3,6,["H120"]],[6,9,["H7945","H2896"]],[9,12,["H6440"]],[12,13,["H2451"]],[13,15,["H1847"]],[15,17,["H8057"]],[17,21,["H2398"]],[21,23,["H5414"]],[23,24,["H6045"]],[24,26,["H622"]],[26,30,["H3664"]],[30,34,["H5414"]],[34,39,["H2896"]],[39,40,["H6440"]],[40,41,["H430"]],[41,42,["H2088"]],[42,43,["H1571"]],[43,45,["H1892"]],[45,47,["H7469"]],[47,49,["H7307"]]]},{"k":17360,"v":[[0,2,["H3605"]],[2,7,["H2165"]],[7,10,["H6256"]],[10,12,["H3605"]],[12,13,["H2656"]],[13,14,["H8478"]],[14,16,["H8064"]]]},{"k":17361,"v":[[0,2,["H6256"]],[2,5,["H3205"]],[5,8,["H6256"]],[8,10,["H4191"]],[10,12,["H6256"]],[12,14,["H5193"]],[14,17,["H6256"]],[17,20,["H6131"]],[20,24,["H5193"]]]},{"k":17362,"v":[[0,2,["H6256"]],[2,4,["H2026"]],[4,7,["H6256"]],[7,9,["H7495"]],[9,11,["H6256"]],[11,14,["H6555"]],[14,17,["H6256"]],[17,20,["H1129"]]]},{"k":17363,"v":[[0,2,["H6256"]],[2,4,["H1058"]],[4,7,["H6256"]],[7,9,["H7832"]],[9,11,["H6256"]],[11,13,["H5594"]],[13,16,["H6256"]],[16,18,["H7540"]]]},{"k":17364,"v":[[0,2,["H6256"]],[2,5,["H7993"]],[5,6,["H68"]],[6,9,["H6256"]],[9,13,["H3664","H68"]],[13,15,["H6256"]],[15,17,["H2263"]],[17,20,["H6256"]],[20,22,["H7368"]],[22,24,["H4480","H2263"]]]},{"k":17365,"v":[[0,2,["H6256"]],[2,4,["H1245"]],[4,7,["H6256"]],[7,9,["H6"]],[9,11,["H6256"]],[11,13,["H8104"]],[13,16,["H6256"]],[16,19,["H7993"]]]},{"k":17366,"v":[[0,2,["H6256"]],[2,4,["H7167"]],[4,7,["H6256"]],[7,9,["H8609"]],[9,11,["H6256"]],[11,14,["H2814"]],[14,17,["H6256"]],[17,19,["H1696"]]]},{"k":17367,"v":[[0,2,["H6256"]],[2,4,["H157"]],[4,7,["H6256"]],[7,9,["H8130"]],[9,11,["H6256"]],[11,13,["H4421"]],[13,16,["H6256"]],[16,18,["H7965"]]]},{"k":17368,"v":[[0,1,["H4100"]],[1,2,["H3504"]],[2,6,["H6213"]],[6,9,["H834"]],[9,10,["H1931"]],[10,11,["H6001"]]]},{"k":17369,"v":[[0,3,["H7200","(H853)"]],[3,5,["H6045"]],[5,6,["H834"]],[6,7,["H430"]],[7,9,["H5414"]],[9,12,["H1121"]],[12,14,["H120"]],[14,17,["H6031"]],[17,19,[]]]},{"k":17370,"v":[[0,3,["H6213","(H853)"]],[3,4,["H3605"]],[4,6,["H3303"]],[6,9,["H6256"]],[9,10,["H1571"]],[10,13,["H5414","(H853)"]],[13,15,["H5769"]],[15,18,["H3820"]],[18,20,["H834"]],[20,21,["H4480","H1097"]],[21,22,["H120"]],[22,25,["H4672","(H853)"]],[25,27,["H4639"]],[27,28,["H834"]],[28,29,["H430"]],[29,30,["H6213"]],[30,33,["H4480","H7218"]],[33,34,["H5704"]],[34,36,["H5490"]]]},{"k":17371,"v":[[0,2,["H3045"]],[2,3,["H3588"]],[3,6,["H369"]],[6,7,["H2896"]],[7,10,["H518"]],[10,11,["H3588"]],[11,15,["H8055"]],[15,18,["H6213"]],[18,19,["H2896"]],[19,22,["H2416"]]]},{"k":17372,"v":[[0,2,["H1571"]],[2,7,["H7945","H398","H3605","H120"]],[7,9,["H8354"]],[9,11,["H7200"]],[11,13,["H2896"]],[13,15,["H3605"]],[15,17,["H5999"]],[17,18,["H1931"]],[18,21,["H4991"]],[21,23,["H430"]]]},{"k":17373,"v":[[0,2,["H3045"]],[2,3,["H3588"]],[3,4,["H3605","H834"]],[4,5,["H430"]],[5,6,["H6213"]],[6,7,["H1931"]],[7,9,["H1961"]],[9,11,["H5769"]],[11,12,["H369"]],[12,15,["H3254"]],[15,16,["H5921"]],[16,18,["H369"]],[18,21,["H1639"]],[21,22,["H4480"]],[22,25,["H430"]],[25,26,["H6213"]],[26,31,["H7945","H3372"]],[31,32,["H4480","H6440"]],[32,33,[]]]},{"k":17374,"v":[[0,4,["H4100","H7945","H1961"]],[4,6,["H3528"]],[6,8,["H1931"]],[8,9,["H834"]],[9,12,["H1961"]],[12,14,["H3528"]],[14,15,["H1961"]],[15,17,["H430"]],[17,18,["H1245","(H853)"]],[18,22,["H7291"]]]},{"k":17375,"v":[[0,2,["H5750"]],[2,4,["H7200"]],[4,5,["H8478"]],[5,7,["H8121"]],[7,9,["H4725"]],[9,11,["H4941"]],[11,13,["H7562"]],[13,15,["H8033"]],[15,18,["H4725"]],[18,20,["H6664"]],[20,22,["H7562"]],[22,24,["H8033"]]]},{"k":17376,"v":[[0,1,["H589"]],[1,2,["H559"]],[2,5,["H3820"]],[5,6,["H430"]],[6,8,["H8199","(H853)"]],[8,10,["H6662"]],[10,13,["H7563"]],[13,14,["H3588"]],[14,18,["H6256"]],[18,19,["H8033"]],[19,21,["H3605"]],[21,22,["H2656"]],[22,24,["H5921"]],[24,25,["H3605"]],[25,26,["H4639"]]]},{"k":17377,"v":[[0,1,["H589"]],[1,2,["H559"]],[2,5,["H3820"]],[5,6,["H5921"]],[6,8,["H1700"]],[8,11,["H1121"]],[11,13,["H120"]],[13,15,["H430"]],[15,17,["H1305"]],[17,21,["H1992"]],[21,23,["H7200"]],[23,25,["H7945"]],[25,28,["H929"]]]},{"k":17378,"v":[[0,1,["H3588"]],[1,4,["H4745"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H4745"]],[9,10,["H929"]],[10,13,["H259"]],[13,14,["H4745"]],[14,18,["H2088"]],[18,19,["H4194"]],[19,20,["H3651"]],[20,21,["H4194"]],[21,23,["H2088"]],[23,27,["H3605"]],[27,28,["H259"]],[28,29,["H7307"]],[29,33,["H120"]],[33,35,["H369"]],[35,36,["H4195"]],[36,37,["H4480"]],[37,39,["H929"]],[39,40,["H3588"]],[40,41,["H3605"]],[41,43,["H1892"]]]},{"k":17379,"v":[[0,1,["H3605"]],[1,2,["H1980"]],[2,3,["H413"]],[3,4,["H259"]],[4,5,["H4725"]],[5,6,["H3605"]],[6,7,["H1961"]],[7,8,["H4480"]],[8,10,["H6083"]],[10,12,["H3605"]],[12,16,["H7725","H413","H6083"]]]},{"k":17380,"v":[[0,1,["H4310"]],[1,2,["H3045"]],[2,4,["H7307"]],[4,6,["H120"]],[6,7,["H1931"]],[7,8,["H5927"]],[8,9,["H4605"]],[9,12,["H7307"]],[12,15,["H929"]],[15,16,["H1931"]],[16,17,["H3381"]],[17,18,["H4295"]],[18,21,["H776"]]]},{"k":17381,"v":[[0,3,["H7200"]],[3,4,["H3588"]],[4,7,["H369"]],[7,8,["H2896"]],[8,10,["H4480","H834"]],[10,12,["H120"]],[12,14,["H8055"]],[14,18,["H4639"]],[18,19,["H3588"]],[19,20,["H1931"]],[20,23,["H2506"]],[23,24,["H3588"]],[24,25,["H4310"]],[25,27,["H935"]],[27,30,["H7200"]],[30,33,["H4100","H7945","H1961"]],[33,34,["H310"]],[34,35,[]]]},{"k":17382,"v":[[0,2,["H589"]],[2,3,["H7725"]],[3,5,["H7200","(H853)"]],[5,6,["H3605"]],[6,8,["H6217"]],[8,9,["H834"]],[9,11,["H6213"]],[11,12,["H8478"]],[12,14,["H8121"]],[14,16,["H2009"]],[16,18,["H1832"]],[18,23,["H6217"]],[23,27,["H369"]],[27,28,["H5162"]],[28,32,["H4480","H3027"]],[32,35,["H6231"]],[35,38,["H3581"]],[38,42,["H369"]],[42,43,["H5162"]]]},{"k":17383,"v":[[0,2,["H589"]],[2,3,["H7623","(H853)"]],[3,5,["H4191"]],[5,8,["H7945","H3528"]],[8,9,["H4191"]],[9,11,["H4480"]],[11,13,["H2416"]],[13,14,["H834","H1992"]],[14,16,["H5728"]],[16,17,["H2416"]]]},{"k":17384,"v":[[0,2,["H2896"]],[2,6,["H4480","H8147"]],[6,7,["(H853)"]],[7,8,["H834"]],[8,10,["H3808"]],[10,11,["H5728"]],[11,12,["H1961"]],[12,13,["H834"]],[13,15,["H3808"]],[15,16,["H7200","(H853)"]],[16,18,["H7451"]],[18,19,["H4639"]],[19,20,["H834"]],[20,22,["H6213"]],[22,23,["H8478"]],[23,25,["H8121"]]]},{"k":17385,"v":[[0,2,["H589"]],[2,3,["H7200","(H853)"]],[3,4,["H3605"]],[4,5,["H5999"]],[5,7,["H3605"]],[7,8,["H3788"]],[8,9,["H4639"]],[9,10,["H3588"]],[10,12,["H1931"]],[12,14,["H376"]],[14,16,["H7068"]],[16,19,["H4480","H7453"]],[19,20,["H2088"]],[20,22,["H1571"]],[22,23,["H1892"]],[23,25,["H7469"]],[25,27,["H7307"]]]},{"k":17386,"v":[[0,2,["H3684"]],[2,6,["H2263","(H853)","H3027"]],[6,8,["H398","(H853)"]],[8,11,["H1320"]]]},{"k":17387,"v":[[0,1,["H2896"]],[1,4,["H4480","H4393","H3709"]],[4,6,["H5183"]],[6,10,["H2651"]],[10,11,["H4480","H4393"]],[11,13,["H5999"]],[13,15,["H7469"]],[15,17,["H7307"]]]},{"k":17388,"v":[[0,2,["H589"]],[2,3,["H7725"]],[3,6,["H7200"]],[6,7,["H1892"]],[7,8,["H8478"]],[8,10,["H8121"]]]},{"k":17389,"v":[[0,2,["H3426"]],[2,3,["H259"]],[3,8,["H369"]],[8,10,["H8145"]],[10,11,["H1571"]],[11,14,["H369"]],[14,15,["H1121"]],[15,17,["H251"]],[17,21,["H369"]],[21,22,["H7093"]],[22,24,["H3605"]],[24,26,["H5999"]],[26,27,["H3808"]],[27,30,["H5869"]],[30,31,["H7646"]],[31,33,["H6239"]],[33,38,["H4310"]],[38,40,["H589"]],[40,41,["H6001"]],[41,43,["H2637","(H853)"]],[43,45,["H5315"]],[45,47,["H4480","H2896"]],[47,48,["H2088"]],[48,50,["H1571"]],[50,51,["H1892"]],[51,53,["H1931"]],[53,56,["H7451"]],[56,57,["H6045"]]]},{"k":17390,"v":[[0,1,["H8147"]],[1,3,["H2896"]],[3,4,["H4480"]],[4,5,["H259"]],[5,6,["H834"]],[6,8,["H3426"]],[8,10,["H2896"]],[10,11,["H7939"]],[11,14,["H5999"]]]},{"k":17391,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,4,["H5307"]],[4,6,["H259"]],[6,9,["H6965","(H853)"]],[9,11,["H2270"]],[11,13,["H337"]],[13,18,["H259"]],[18,21,["H7945","H5307"]],[21,25,["H369"]],[25,26,["H8145"]],[26,30,["H6965"]]]},{"k":17392,"v":[[0,1,["H1571"]],[1,2,["H518"]],[2,3,["H8147"]],[3,5,["H7901"]],[5,9,["H2552"]],[9,11,["H349"]],[11,13,["H259"]],[13,15,["H3179"]],[15,16,[]]]},{"k":17393,"v":[[0,2,["H518"]],[2,3,["H259"]],[3,5,["H8630"]],[5,7,["H8147"]],[7,9,["H5975","H5048"]],[9,13,["H8027"]],[13,14,["H2339"]],[14,16,["H3808"]],[16,17,["H4120"]],[17,18,["H5423"]]]},{"k":17394,"v":[[0,1,["H2896"]],[1,4,["H4542"]],[4,7,["H2450"]],[7,8,["H3206"]],[8,11,["H2205"]],[11,13,["H3684"]],[13,14,["H4480","H4428"]],[14,15,["H834"]],[15,16,["H3045"]],[16,17,["H3808"]],[17,18,["H5750"]],[18,20,["H2094"]]]},{"k":17395,"v":[[0,1,["H3588"]],[1,4,["H4480","H1004","H631"]],[4,6,["H3318"]],[6,8,["H4427"]],[8,9,["H3588"]],[9,10,["H1571"]],[10,14,["H3205"]],[14,17,["H4438"]],[17,19,["H7326"]]]},{"k":17396,"v":[[0,2,["H7200","(H853)"]],[2,3,["H3605"]],[3,5,["H2416"]],[5,7,["H1980"]],[7,8,["H8478"]],[8,10,["H8121"]],[10,11,["H5973"]],[11,13,["H8145"]],[13,14,["H3206"]],[14,15,["H834"]],[15,18,["H5975"]],[18,21,["H8478"]]]},{"k":17397,"v":[[0,3,["H369"]],[3,4,["H7093"]],[4,6,["H3605"]],[6,8,["H5971"]],[8,11,["H3605"]],[11,12,["H834"]],[12,14,["H1961"]],[14,15,["H6440"]],[15,18,["H1571"]],[18,21,["H314"]],[21,23,["H3808"]],[23,24,["H8055"]],[24,27,["H3588"]],[27,28,["H2088"]],[28,29,["H1571"]],[29,31,["H1892"]],[31,33,["H7475"]],[33,35,["H7307"]]]},{"k":17398,"v":[[0,1,["H8104"]],[1,3,["H7272"]],[3,4,["H834"]],[4,6,["H1980"]],[6,7,["H413"]],[7,9,["H1004"]],[9,11,["H430"]],[11,15,["H7126"]],[15,17,["H8085"]],[17,20,["H4480","H5414"]],[20,22,["H2077"]],[22,24,["H3684"]],[24,27,["H3045"]],[27,28,["H369"]],[28,29,["H3588"]],[29,31,["H6213"]],[31,32,["H7451"]]]},{"k":17399,"v":[[0,2,["H408"]],[2,3,["H926"]],[3,4,["H5921"]],[4,6,["H6310"]],[6,9,["H408"]],[9,11,["H3820"]],[11,13,["H4116"]],[13,15,["H3318"]],[15,17,["H1697"]],[17,18,["H6440"]],[18,19,["H430"]],[19,20,["H3588"]],[20,21,["H430"]],[21,24,["H8064"]],[24,26,["H859"]],[26,27,["H5921"]],[27,28,["H776"]],[28,29,["H5921","H3651"]],[29,32,["H1697"]],[32,33,["H1961"]],[33,34,["H4592"]]]},{"k":17400,"v":[[0,1,["H3588"]],[1,3,["H2472"]],[3,4,["H935"]],[4,7,["H7230"]],[7,9,["H6045"]],[9,12,["H3684"]],[12,13,["H6963"]],[13,17,["H7230"]],[17,19,["H1697"]]]},{"k":17401,"v":[[0,1,["H834"]],[1,3,["H5087"]],[3,5,["H5088"]],[5,7,["H430"]],[7,8,["H309"]],[8,9,["H408"]],[9,11,["H7999"]],[11,13,["H3588"]],[13,16,["H369"]],[16,17,["H2656"]],[17,19,["H3684"]],[19,20,["H7999","(H853)"]],[20,22,["H834"]],[22,25,["H5087"]]]},{"k":17402,"v":[[0,1,["H2896"]],[1,4,["H834"]],[4,7,["H3808"]],[7,8,["H5087"]],[8,13,["H4480","H7945","H5087"]],[13,15,["H3808"]],[15,16,["H7999"]]]},{"k":17403,"v":[[0,1,["H5414"]],[1,2,["H408","(H853)"]],[2,4,["H6310"]],[4,6,["(H853)"]],[6,8,["H1320"]],[8,10,["H2398"]],[10,11,["H408"]],[11,12,["H559"]],[12,14,["H6440"]],[14,16,["H4397"]],[16,17,["H3588"]],[17,18,["H1931"]],[18,21,["H7684"]],[21,22,["H4100"]],[22,24,["H430"]],[24,26,["H7107"]],[26,27,["H5921"]],[27,29,["H6963"]],[29,31,["H2254","(H853)"]],[31,33,["H4639"]],[33,36,["H3027"]]]},{"k":17404,"v":[[0,1,["H3588"]],[1,4,["H7230"]],[4,6,["H2472"]],[6,8,["H7235"]],[8,9,["H1697"]],[9,14,["H1892"]],[14,15,["H3588"]],[15,16,["H3372"]],[16,17,["(H853)"]],[17,18,["H430"]]]},{"k":17405,"v":[[0,1,["H518"]],[1,3,["H7200"]],[3,5,["H6233"]],[5,8,["H7326"]],[8,11,["H1499"]],[11,13,["H4941"]],[13,15,["H6664"]],[15,18,["H4082"]],[18,19,["H8539"]],[19,20,["H408"]],[20,21,["H5921"]],[21,23,["H2656"]],[23,24,["H3588"]],[24,28,["H1364"]],[28,29,["H4480","H5921"]],[29,31,["H1364"]],[31,32,["H8104"]],[32,36,["H1364"]],[36,37,["H5921"]],[37,38,[]]]},{"k":17406,"v":[[0,3,["H3504"]],[3,6,["H776"]],[6,9,["H3605"]],[9,11,["H4428"]],[11,14,["H5647"]],[14,17,["H7704"]]]},{"k":17407,"v":[[0,3,["H157"]],[3,4,["H3701"]],[4,6,["H3808"]],[6,8,["H7646"]],[8,10,["H3701"]],[10,12,["H4310"]],[12,14,["H157"]],[14,15,["H1995"]],[15,17,["H8393"]],[17,18,["H2088"]],[18,20,["H1571"]],[20,21,["H1892"]]]},{"k":17408,"v":[[0,2,["H2896"]],[2,3,["H7235"]],[3,6,["H7231"]],[6,8,["H398"]],[8,11,["H4100"]],[11,12,["H3788"]],[12,17,["H1167"]],[17,19,["H3588","H518"]],[19,21,["H7200"]],[21,26,["H5869"]]]},{"k":17409,"v":[[0,2,["H8142"]],[2,6,["H5647"]],[6,8,["H4966"]],[8,9,["H518"]],[9,11,["H398"]],[11,12,["H4592"]],[12,13,["H518"]],[13,14,["H7235"]],[14,17,["H7647"]],[17,20,["H6223"]],[20,22,["H369"]],[22,23,["H5117"]],[23,26,["H3462"]]]},{"k":17410,"v":[[0,2,["H3426"]],[2,4,["H2470"]],[4,5,["H7451"]],[5,9,["H7200"]],[9,10,["H8478"]],[10,12,["H8121"]],[12,14,["H6239"]],[14,15,["H8104"]],[15,18,["H1167"]],[18,22,["H7451"]]]},{"k":17411,"v":[[0,2,["H1931"]],[2,3,["H6239"]],[3,4,["H6"]],[4,6,["H7451"]],[6,7,["H6045"]],[7,10,["H3205"]],[10,12,["H1121"]],[12,16,["H369","H3972"]],[16,19,["H3027"]]]},{"k":17412,"v":[[0,1,["H834"]],[1,4,["H3318"]],[4,7,["H517"]],[7,8,["H4480","H990"]],[8,9,["H6174"]],[9,12,["H7725"]],[12,14,["H1980"]],[14,17,["H7945","H935"]],[17,20,["H5375"]],[20,21,["H3808","H3972"]],[21,24,["H5999"]],[24,29,["H7945","H1980"]],[29,32,["H3027"]]]},{"k":17413,"v":[[0,2,["H2090"]],[2,3,["H1571"]],[3,6,["H2470"]],[6,7,["H7451"]],[7,10,["H3605"]],[10,11,["H5980"]],[11,14,["H7945","H935"]],[14,15,["H3651"]],[15,18,["H1980"]],[18,20,["H4100"]],[20,21,["H3504"]],[21,26,["H7945","H5998"]],[26,29,["H7307"]]]},{"k":17414,"v":[[0,1,["H3605"]],[1,3,["H3117"]],[3,4,["H1571"]],[4,6,["H398"]],[6,8,["H2822"]],[8,12,["H7235"]],[12,13,["H3707"]],[13,15,["H7110"]],[15,18,["H2483"]]]},{"k":17415,"v":[[0,1,["H2009"]],[1,3,["H834"]],[3,4,["H589"]],[4,6,["H7200"]],[6,9,["H2896"]],[9,11,["H3303"]],[11,15,["H398"]],[15,18,["H8354"]],[18,21,["H7200"]],[21,23,["H2896"]],[23,25,["H3605"]],[25,27,["H5999"]],[27,30,["H7945","H5998"]],[30,31,["H8478"]],[31,33,["H8121"]],[33,34,["H4557"]],[34,36,["H3117"]],[36,39,["H2416"]],[39,40,["H834"]],[40,41,["H430"]],[41,42,["H5414"]],[42,44,["H3588"]],[44,45,["H1931"]],[45,48,["H2506"]]]},{"k":17416,"v":[[0,1,["H3605"]],[1,2,["H120"]],[2,3,["H1571"]],[3,5,["H834"]],[5,6,["H430"]],[6,8,["H5414"]],[8,9,["H6239"]],[9,11,["H5233"]],[11,16,["H7980"]],[16,18,["H398"]],[18,19,["H4480"]],[19,22,["H5375","(H853)"]],[22,24,["H2506"]],[24,27,["H8055"]],[27,30,["H5999"]],[30,31,["H2090"]],[31,34,["H4991"]],[34,36,["H430"]]]},{"k":17417,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H7235"]],[5,6,["H2142","(H853)"]],[6,8,["H3117"]],[8,11,["H2416"]],[11,12,["H3588"]],[12,13,["H430"]],[13,14,["H6030"]],[14,18,["H8057"]],[18,21,["H3820"]]]},{"k":17418,"v":[[0,2,["H3426"]],[2,4,["H7451"]],[4,5,["H834"]],[5,8,["H7200"]],[8,9,["H8478"]],[9,11,["H8121"]],[11,13,["H1931"]],[13,15,["H7227"]],[15,16,["H5921"]],[16,17,["H120"]]]},{"k":17419,"v":[[0,2,["H376"]],[2,4,["H834"]],[4,5,["H430"]],[5,7,["H5414"]],[7,8,["H6239"]],[8,9,["H5233"]],[9,11,["H3519"]],[11,15,["H2638"]],[15,16,["H369"]],[16,19,["H5315"]],[19,21,["H4480","H3605"]],[21,22,["H834"]],[22,24,["H183"]],[24,26,["H430"]],[26,30,["H7980","H3808"]],[30,32,["H398"]],[32,33,["H4480"]],[33,34,["H3588"]],[34,36,["H376","H5237"]],[36,37,["H398"]],[37,39,["H2088"]],[39,41,["H1892"]],[41,43,["H1931"]],[43,46,["H7451"]],[46,47,["H2483"]]]},{"k":17420,"v":[[0,1,["H518"]],[1,3,["H376"]],[3,4,["H3205"]],[4,6,["H3967"]],[6,9,["H2421"]],[9,10,["H7227"]],[10,11,["H8141"]],[11,15,["H3117"]],[15,18,["H8141"]],[18,19,["H7945","H1961"]],[19,20,["H7227"]],[20,23,["H5315"]],[23,25,["H3808"]],[25,26,["H7646"]],[26,27,["H4480"]],[27,28,["H2896"]],[28,30,["H1571"]],[30,33,["H1961"]],[33,34,["H3808"]],[34,35,["H6900"]],[35,37,["H559"]],[37,41,["H5309"]],[41,43,["H2896"]],[43,44,["H4480"]],[44,45,[]]]},{"k":17421,"v":[[0,1,["H3588"]],[1,3,["H935"]],[3,6,["H1892"]],[6,8,["H1980"]],[8,10,["H2822"]],[10,13,["H8034"]],[13,16,["H3680"]],[16,18,["H2822"]]]},{"k":17422,"v":[[0,1,["H1571"]],[1,4,["H3808"]],[4,5,["H7200"]],[5,7,["H8121"]],[7,8,["H3808"]],[8,9,["H3045"]],[9,12,["H2088"]],[12,15,["H5183"]],[15,18,["H4480","H2088"]]]},{"k":17423,"v":[[0,1,["H432"]],[1,4,["H2421"]],[4,6,["H505"]],[6,7,["H8141"]],[7,8,["H6471"]],[8,13,["H7200"]],[13,14,["H3808"]],[14,15,["H2896"]],[15,17,["H3808"]],[17,18,["H3605"]],[18,19,["H1980"]],[19,20,["H413"]],[20,21,["H259"]],[21,22,["H4725"]]]},{"k":17424,"v":[[0,1,["H3605"]],[1,3,["H5999"]],[3,5,["H120"]],[5,9,["H6310"]],[9,11,["H1571"]],[11,13,["H5315"]],[13,15,["H3808"]],[15,16,["H4390"]]]},{"k":17425,"v":[[0,1,["H3588"]],[1,2,["H4100"]],[2,5,["H2450"]],[5,6,["H3148"]],[6,7,["H4480"]],[7,9,["H3684"]],[9,10,["H4100"]],[10,13,["H6041"]],[13,15,["H3045"]],[15,17,["H1980"]],[17,18,["H5048"]],[18,20,["H2416"]]]},{"k":17426,"v":[[0,1,["H2896"]],[1,4,["H4758"]],[4,7,["H5869"]],[7,10,["H4480","H1980"]],[10,13,["H5315"]],[13,14,["H2088"]],[14,16,["H1571"]],[16,17,["H1892"]],[17,19,["H7469"]],[19,21,["H7307"]]]},{"k":17427,"v":[[0,1,["H4100"]],[1,4,["H7945","H1961"]],[4,6,["H7121","H8034"]],[6,7,["H3528"]],[7,11,["H3045"]],[11,12,["H834"]],[12,13,["H1931"]],[13,15,["H120"]],[15,16,["H3808"]],[16,17,["H3201"]],[17,19,["H1777"]],[19,20,["H5973"]],[20,24,["H7945","H8623"]],[24,25,["H4480"]],[25,26,[]]]},{"k":17428,"v":[[0,1,["H3588"]],[1,3,["H3426"]],[3,4,["H7235"]],[4,5,["H1697"]],[5,7,["H7235"]],[7,8,["H1892"]],[8,9,["H4100"]],[9,11,["H120"]],[11,13,["H3148"]]]},{"k":17429,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,3,["H3045"]],[3,4,["H4100"]],[4,6,["H2896"]],[6,8,["H120"]],[8,11,["H2416"]],[11,12,["H4557"]],[12,14,["H3117"]],[14,17,["H1892"]],[17,18,["H2416"]],[18,21,["H6213"]],[21,24,["H6738"]],[24,25,["H834"]],[25,26,["H4310"]],[26,28,["H5046"]],[28,30,["H120"]],[30,31,["H4100"]],[31,33,["H1961"]],[33,34,["H310"]],[34,36,["H8478"]],[36,38,["H8121"]]]},{"k":17430,"v":[[0,3,["H8034"]],[3,5,["H2896"]],[5,7,["H2896"]],[7,8,["H4480","H8081"]],[8,11,["H3117"]],[11,13,["H4194"]],[13,16,["H4480","H3117"]],[16,19,["H3205"]]]},{"k":17431,"v":[[0,3,["H2896"]],[3,5,["H1980"]],[5,6,["H413"]],[6,8,["H1004"]],[8,10,["H60"]],[10,13,["H4480","H1980"]],[13,14,["H413"]],[14,16,["H1004"]],[16,18,["H4960"]],[18,19,["H834"]],[19,20,["H1931"]],[20,23,["H5490"]],[23,25,["H3605"]],[25,26,["H120"]],[26,29,["H2416"]],[29,31,["H5414"]],[31,33,["H413"]],[33,35,["H3820"]]]},{"k":17432,"v":[[0,1,["H3708"]],[1,3,["H2896"]],[3,5,["H4480","H7814"]],[5,6,["H3588"]],[6,9,["H7455"]],[9,12,["H6440"]],[12,14,["H3820"]],[14,17,["H3190"]]]},{"k":17433,"v":[[0,2,["H3820"]],[2,5,["H2450"]],[5,9,["H1004"]],[9,11,["H60"]],[11,14,["H3820"]],[14,16,["H3684"]],[16,20,["H1004"]],[20,22,["H8057"]]]},{"k":17434,"v":[[0,3,["H2896"]],[3,5,["H8085"]],[5,7,["H1606"]],[7,10,["H2450"]],[10,14,["H4480","H376"]],[14,16,["H8085"]],[16,18,["H7892"]],[18,20,["H3684"]]]},{"k":17435,"v":[[0,1,["H3588"]],[1,4,["H6963"]],[4,6,["H5518"]],[6,7,["H8478"]],[7,9,["H5518"]],[9,10,["H3651"]],[10,13,["H7814"]],[13,16,["H3684"]],[16,17,["H2088"]],[17,18,["H1571"]],[18,20,["H1892"]]]},{"k":17436,"v":[[0,1,["H3588"]],[1,2,["H6233"]],[2,6,["H2450"]],[6,7,["H1984"]],[7,10,["H4979"]],[10,11,["H6","(H853)"]],[11,13,["H3820"]]]},{"k":17437,"v":[[0,1,["H2896"]],[1,4,["H319"]],[4,7,["H1697"]],[7,10,["H4480","H7225"]],[10,14,["H750"]],[14,16,["H7307"]],[16,18,["H2896"]],[18,21,["H4480","H1362"]],[21,23,["H7307"]]]},{"k":17438,"v":[[0,2,["H408"]],[2,3,["H926"]],[3,6,["H7307"]],[6,9,["H3707"]],[9,10,["H3588"]],[10,11,["H3708"]],[11,12,["H5117"]],[12,15,["H2436"]],[15,17,["H3684"]]]},{"k":17439,"v":[[0,1,["H559"]],[1,2,["H408"]],[2,4,["H4100"]],[4,5,["H1961"]],[5,11,["H7945","H3117","H7223"]],[11,12,["H1961"]],[12,13,["H2896"]],[13,15,["H4480","H428"]],[15,16,["H3588"]],[16,19,["H3808"]],[19,20,["H7592"]],[20,21,["H4480","H2451"]],[21,22,["H5921"]],[22,23,["H2088"]]]},{"k":17440,"v":[[0,1,["H2451"]],[1,3,["H2896"]],[3,4,["H5973"]],[4,6,["H5159"]],[6,12,["H3148"]],[12,16,["H7200"]],[16,18,["H8121"]]]},{"k":17441,"v":[[0,1,["H3588"]],[1,2,["H2451"]],[2,5,["H6738"]],[5,7,["H3701"]],[7,10,["H6738"]],[10,13,["H3504"]],[13,15,["H1847"]],[15,18,["H2451"]],[18,20,["H2421"]],[20,24,["H1167"]],[24,25,[]]]},{"k":17442,"v":[[0,1,["H7200","(H853)"]],[1,3,["H4639"]],[3,5,["H430"]],[5,6,["H3588"]],[6,7,["H4310"]],[7,8,["H3201"]],[8,11,["H8626","(H853)"]],[11,12,["H834"]],[12,16,["H5791"]]]},{"k":17443,"v":[[0,3,["H3117"]],[3,5,["H2896"]],[5,6,["H1961"]],[6,7,["H2896"]],[7,11,["H3117"]],[11,13,["H7451"]],[13,14,["H7200"]],[14,15,["H430"]],[15,16,["H1571"]],[16,18,["H6213","(H853)"]],[18,20,["H2088"]],[20,22,["H5980"]],[22,24,["H2088"]],[24,25,["H5921"]],[25,27,["H1700"]],[27,29,["H120"]],[29,31,["H4672"]],[31,32,["H7945","H3808","H3972"]],[32,33,["H310"]],[33,34,[]]]},{"k":17444,"v":[[0,0,["(H853)"]],[0,1,["H3605"]],[1,5,["H7200"]],[5,8,["H3117"]],[8,11,["H1892"]],[11,13,["H3426"]],[13,15,["H6662"]],[15,18,["H6"]],[18,21,["H6664"]],[21,24,["H3426"]],[24,26,["H7563"]],[26,29,["H748"]],[29,34,["H7451"]]]},{"k":17445,"v":[[0,1,["H1961"]],[1,2,["H408"]],[2,3,["H6662"]],[3,5,["H7235"]],[5,6,["H408"]],[6,10,["H2449","H3148"]],[10,11,["H4100"]],[11,15,["H8074"]]]},{"k":17446,"v":[[0,2,["H408"]],[2,4,["H7235"]],[4,5,["H7561"]],[5,6,["H408"]],[6,7,["H1961"]],[7,9,["H5530"]],[9,10,["H4100"]],[10,13,["H4191"]],[13,14,["H3808"]],[14,16,["H6256"]]]},{"k":17447,"v":[[0,3,["H2896"]],[3,4,["H834"]],[4,8,["H270"]],[8,10,["H2088"]],[10,12,["H1571"]],[12,14,["H4480","H2088"]],[14,15,["H5117"]],[15,16,["H408","(H853)"]],[16,18,["H3027"]],[18,19,["H3588"]],[19,22,["H3373"]],[22,23,["H430"]],[23,26,["H3318","(H853)"]],[26,29,["H3605"]]]},{"k":17448,"v":[[0,1,["H2451"]],[1,2,["H5810"]],[2,4,["H2450"]],[4,7,["H4480","H6235"]],[7,8,["H7989"]],[8,10,["H834"]],[10,11,["H1961"]],[11,14,["H5892"]]]},{"k":17449,"v":[[0,1,["H3588"]],[1,4,["H369"]],[4,6,["H6662"]],[6,7,["H120"]],[7,9,["H776"]],[9,10,["H834"]],[10,11,["H6213"]],[11,12,["H2896"]],[12,14,["H2398"]],[14,15,["H3808"]]]},{"k":17450,"v":[[0,1,["H1571"]],[1,2,["H5414"]],[2,3,["H408"]],[3,4,["H3820"]],[4,6,["H3605"]],[6,7,["H1697"]],[7,8,["H834"]],[8,10,["H1696"]],[10,11,["H834","H3808"]],[11,13,["H8085","(H853)"]],[13,15,["H5650"]],[15,16,["H7043"]],[16,17,[]]]},{"k":17451,"v":[[0,1,["H3588"]],[1,2,["H7227","H6471"]],[2,3,["H1571"]],[3,6,["H3820"]],[6,7,["H3045"]],[7,8,["H834"]],[8,10,["H859"]],[10,11,["H1571"]],[11,13,["H7043"]],[13,14,["H312"]]]},{"k":17452,"v":[[0,1,["H3605"]],[1,2,["H2090"]],[2,5,["H5254"]],[5,7,["H2451"]],[7,9,["H559"]],[9,13,["H2449"]],[13,15,["H1931"]],[15,17,["H7350"]],[17,18,["H4480"]],[18,19,[]]]},{"k":17453,"v":[[0,3,["H4100","H7945","H1961"]],[3,5,["H7350"]],[5,8,["H6013","H6013"]],[8,9,["H4310"]],[9,13,["H4672"]]]},{"k":17454,"v":[[0,1,["H589"]],[1,2,["H5437"]],[2,4,["H3820"]],[4,6,["H3045"]],[6,9,["H8446"]],[9,13,["H1245"]],[13,14,["H2451"]],[14,17,["H2808"]],[17,22,["H3045"]],[22,24,["H7562"]],[24,26,["H3689"]],[26,29,["H5531"]],[29,31,["H1947"]]]},{"k":17455,"v":[[0,2,["H589"]],[2,3,["H4672"]],[3,5,["H4751"]],[5,7,["H4480","H4194","(H853)"]],[7,9,["H802"]],[9,10,["H834","H1931"]],[10,11,["H3820"]],[11,13,["H4685"]],[13,15,["H2764"]],[15,18,["H3027"]],[18,20,["H612"]],[20,22,["H2896","H6440"]],[22,23,["H430"]],[23,25,["H4422"]],[25,26,["H4480"]],[26,30,["H2398"]],[30,33,["H3920"]],[33,35,[]]]},{"k":17456,"v":[[0,1,["H7200"]],[1,2,["H2088"]],[2,5,["H4672"]],[5,6,["H559"]],[6,8,["H6953"]],[8,10,["H259"]],[10,12,["H259"]],[12,15,["H4672"]],[15,17,["H2808"]]]},{"k":17457,"v":[[0,1,["H834"]],[1,2,["H5750"]],[2,4,["H5315"]],[4,5,["H1245"]],[5,8,["H4672"]],[8,9,["H3808"]],[9,10,["H259"]],[10,11,["H120"]],[11,14,["H4480","H505"]],[14,17,["H4672"]],[17,20,["H802"]],[20,22,["H3605"]],[22,23,["H428"]],[23,26,["H3808"]],[26,27,["H4672"]]]},{"k":17458,"v":[[0,1,["H7200"]],[1,2,["H2088"]],[2,3,["H905"]],[3,6,["H4672"]],[6,7,["H834"]],[7,8,["H430"]],[8,10,["H6213","(H853)"]],[10,11,["H120"]],[11,12,["H3477"]],[12,14,["H1992"]],[14,17,["H1245"]],[17,18,["H7227"]],[18,19,["H2810"]]]},{"k":17459,"v":[[0,1,["H4310"]],[1,5,["H2450"]],[5,8,["H4310"]],[8,9,["H3045"]],[9,11,["H6592"]],[11,14,["H1697"]],[14,16,["H120"]],[16,17,["H2451"]],[17,20,["H6440"]],[20,22,["H215"]],[22,25,["H5797"]],[25,28,["H6440"]],[28,31,["H8132"]]]},{"k":17460,"v":[[0,1,["H589"]],[1,5,["H8104"]],[5,7,["H4428"]],[7,8,["H6310"]],[8,12,["H5921","H1700"]],[12,15,["H7621"]],[15,17,["H430"]]]},{"k":17461,"v":[[0,2,["H408"]],[2,3,["H926"]],[3,5,["H1980"]],[5,9,["H4480","H6440"]],[9,10,["H5975"]],[10,11,["H408"]],[11,14,["H7451"]],[14,15,["H1697"]],[15,16,["H3588"]],[16,18,["H6213"]],[18,19,["H3605","H834"]],[19,20,["H2654"]],[20,21,[]]]},{"k":17462,"v":[[0,1,["H834"]],[1,3,["H1697"]],[3,6,["H4428"]],[6,10,["H7983"]],[10,12,["H4310"]],[12,14,["H559"]],[14,17,["H4100"]],[17,18,["H6213"]],[18,19,[]]]},{"k":17463,"v":[[0,2,["H8104"]],[2,4,["H4687"]],[4,6,["H3045"]],[6,7,["H3808"]],[7,8,["H7451"]],[8,9,["H1697"]],[9,13,["H2450"]],[13,14,["H3820"]],[14,15,["H3045"]],[15,17,["H6256"]],[17,19,["H4941"]]]},{"k":17464,"v":[[0,1,["H3588"]],[1,3,["H3605"]],[3,4,["H2656"]],[4,6,["H3426"]],[6,7,["H6256"]],[7,9,["H4941"]],[9,10,["H3588"]],[10,12,["H7451"]],[12,14,["H120"]],[14,16,["H7227"]],[16,17,["H5921"]],[17,18,[]]]},{"k":17465,"v":[[0,1,["H3588"]],[1,3,["H3045"]],[3,4,["H369"]],[4,5,["H4100"]],[5,8,["H7945","H1961"]],[8,9,["H3588"]],[9,10,["H4310"]],[10,12,["H5046"]],[12,14,["H834"]],[14,17,["H1961"]]]},{"k":17466,"v":[[0,3,["H369"]],[3,4,["H120"]],[4,7,["H7989"]],[7,10,["H7307"]],[10,12,["H3607","(H853)"]],[12,14,["H7307"]],[14,15,["H369"]],[15,18,["H7983"]],[18,21,["H3117"]],[21,23,["H4194"]],[23,27,["H369"]],[27,28,["H4917"]],[28,31,["H4421"]],[31,32,["H3808"]],[32,34,["H7562"]],[34,35,["H4422","(H853)"]],[35,39,["H1167"]],[39,41,[]]]},{"k":17467,"v":[[0,1,["H3605"]],[1,2,["H2088"]],[2,5,["H7200"]],[5,7,["H5414","(H853)"]],[7,9,["H3820"]],[9,11,["H3605"]],[11,12,["H4639"]],[12,13,["H834"]],[13,15,["H6213"]],[15,16,["H8478"]],[16,18,["H8121"]],[18,22,["H6256"]],[22,23,["H834"]],[23,25,["H120"]],[25,27,["H7980"]],[27,28,["H120"]],[28,32,["H7451"]]]},{"k":17468,"v":[[0,2,["H3651"]],[2,4,["H7200"]],[4,6,["H7563"]],[6,7,["H6912"]],[7,10,["H935"]],[10,12,["H1980"]],[12,15,["H4480","H4725"]],[15,18,["H6918"]],[18,22,["H7911"]],[22,25,["H5892"]],[25,26,["H834"]],[26,29,["H3651"]],[29,30,["H6213"]],[30,31,["H2088"]],[31,33,["H1571"]],[33,34,["H1892"]]]},{"k":17469,"v":[[0,1,["H834"]],[1,3,["H6599"]],[3,5,["H7451"]],[5,6,["H4639"]],[6,8,["H369"]],[8,9,["H6213"]],[9,10,["H4120"]],[10,11,["H5921","H3651"]],[11,13,["H3820"]],[13,16,["H1121"]],[16,18,["H120"]],[18,21,["H4390"]],[21,25,["H6213"]],[25,26,["H7451"]]]},{"k":17470,"v":[[0,1,["H834"]],[1,3,["H2398"]],[3,4,["H6213"]],[4,5,["H7451"]],[5,8,["H3967"]],[8,13,["H748"]],[13,14,["H3588"]],[14,15,["H1571"]],[15,16,["H589"]],[16,17,["H3045"]],[17,18,["H834"]],[18,21,["H1961"]],[21,22,["H2896"]],[22,26,["H3373"]],[26,27,["H430"]],[27,28,["H834"]],[28,29,["H3372"]],[29,30,["H4480","H6440"]],[30,31,[]]]},{"k":17471,"v":[[0,4,["H3808"]],[4,5,["H1961"]],[5,6,["H2896"]],[6,9,["H7563"]],[9,10,["H3808"]],[10,13,["H748"]],[13,15,["H3117"]],[15,20,["H6738"]],[20,21,["H834"]],[21,23,["H3372"]],[23,24,["H369"]],[24,25,["H4480","H6440"]],[25,26,["H430"]]]},{"k":17472,"v":[[0,2,["H3426"]],[2,4,["H1892"]],[4,5,["H834"]],[5,7,["H6213"]],[7,8,["H5921"]],[8,10,["H776"]],[10,11,["H834"]],[11,13,["H3426"]],[13,14,["H6662"]],[14,17,["H834","H413"]],[17,19,["H5060"]],[19,23,["H4639"]],[23,26,["H7563"]],[26,29,["H3426"]],[29,30,["H7563"]],[30,32,["H413"]],[32,35,["H7945","H5060"]],[35,39,["H4639"]],[39,42,["H6662"]],[42,44,["H559"]],[44,47,["H2088","H7945","H1571"]],[47,49,["H1892"]]]},{"k":17473,"v":[[0,2,["H589"]],[2,3,["H7623","(H853)"]],[3,4,["H8057"]],[4,5,["H834"]],[5,7,["H120"]],[7,9,["H369"]],[9,10,["H2896"]],[10,12,["H8478"]],[12,14,["H8121"]],[14,15,["H3588","H518"]],[15,17,["H398"]],[17,20,["H8354"]],[20,24,["H8055"]],[24,26,["H1931"]],[26,28,["H3867"]],[28,33,["H5999"]],[33,35,["H3117"]],[35,38,["H2416"]],[38,39,["H834"]],[39,40,["H430"]],[40,41,["H5414"]],[41,43,["H8478"]],[43,45,["H8121"]]]},{"k":17474,"v":[[0,1,["H834"]],[1,3,["H5414","(H853)"]],[3,5,["H3820"]],[5,7,["H3045"]],[7,8,["H2451"]],[8,11,["H7200","(H853)"]],[11,13,["H6045"]],[13,14,["H834"]],[14,16,["H6213"]],[16,17,["H5921"]],[17,19,["H776"]],[19,20,["H3588"]],[20,21,["H1571"]],[21,25,["H369"]],[25,26,["H3117"]],[26,28,["H3915"]],[28,29,["H7200"]],[29,30,["H8142"]],[30,33,["H5869"]]]},{"k":17475,"v":[[0,3,["H7200","(H853)"]],[3,4,["H3605"]],[4,6,["H4639"]],[6,8,["H430"]],[8,9,["H3588"]],[9,11,["H120"]],[11,12,["H3808","H3201"]],[12,14,["H4672","(H853)"]],[14,16,["H4639"]],[16,17,["H834"]],[17,19,["H6213"]],[19,20,["H8478"]],[20,22,["H8121"]],[22,23,["H7945"]],[23,24,["H834"]],[24,26,["H120"]],[26,27,["H5998"]],[27,31,["H1245"]],[31,35,["H3808"]],[35,36,["H4672"]],[36,38,["H1571"]],[38,40,["H518"]],[40,42,["H2450"]],[42,44,["H559"]],[44,46,["H3045"]],[46,51,["H3808"]],[51,53,["H3201"]],[53,55,["H4672"]],[55,56,[]]]},{"k":17476,"v":[[0,1,["H3588","(H853)"]],[1,2,["H3605"]],[2,3,["H2088"]],[3,5,["H5414"]],[5,6,["H413"]],[6,8,["H3820"]],[8,11,["H952","(H853)"]],[11,12,["H3605"]],[12,13,["H2088"]],[13,14,["H834"]],[14,16,["H6662"]],[16,19,["H2450"]],[19,22,["H5652"]],[22,26,["H3027"]],[26,28,["H430"]],[28,29,["H369"]],[29,30,["H120"]],[30,31,["H3045"]],[31,32,["H1571"]],[32,33,["H160"]],[33,34,["H1571"]],[34,35,["H8135"]],[35,37,["H3605"]],[37,40,["H6440"]],[40,41,[]]]},{"k":17477,"v":[[0,1,["H3605"]],[1,4,["H834"]],[4,6,["H3605"]],[6,9,["H259"]],[9,10,["H4745"]],[10,13,["H6662"]],[13,17,["H7563"]],[17,20,["H2896"]],[20,24,["H2889"]],[24,28,["H2931"]],[28,32,["H2076"]],[32,37,["H834","H2076"]],[37,38,["H369"]],[38,42,["H2896"]],[42,46,["H2398"]],[46,50,["H7650"]],[50,51,["H834"]],[51,54,["H3372"]],[54,56,["H7621"]]]},{"k":17478,"v":[[0,1,["H2088"]],[1,4,["H7451"]],[4,6,["H3605"]],[6,8,["H834"]],[8,10,["H6213"]],[10,11,["H8478"]],[11,13,["H8121"]],[13,14,["H3588"]],[14,17,["H259"]],[17,18,["H4745"]],[18,20,["H3605"]],[20,22,["H1571"]],[22,24,["H3820"]],[24,27,["H1121"]],[27,29,["H120"]],[29,31,["H4390"]],[31,33,["H7451"]],[33,35,["H1947"]],[35,39,["H3824"]],[39,42,["H2416"]],[42,44,["H310"]],[44,48,["H413"]],[48,50,["H4191"]]]},{"k":17479,"v":[[0,1,["H3588"]],[1,3,["H4310"]],[3,4,["H834"]],[4,6,["H2266"]],[6,7,["H413"]],[7,8,["H3605"]],[8,10,["H2416"]],[10,12,["H3426"]],[12,13,["H986"]],[13,14,["H3588"]],[14,16,["H2416"]],[16,17,["H3611"]],[17,19,["H2896"]],[19,20,["H4480"]],[20,22,["H4191"]],[22,23,["H738"]]]},{"k":17480,"v":[[0,1,["H3588"]],[1,3,["H2416"]],[3,4,["H3045"]],[4,8,["H7945","H4191"]],[8,11,["H4191"]],[11,12,["H3045"]],[12,13,["H369"]],[13,15,["H3972"]],[15,16,["H369"]],[16,20,["H5750"]],[20,22,["H7939"]],[22,23,["H3588"]],[23,25,["H2143"]],[25,29,["H7911"]]]},{"k":17481,"v":[[0,1,["H1571"]],[1,3,["H160"]],[3,4,["H1571"]],[4,6,["H8135"]],[6,7,["H1571"]],[7,9,["H7068"]],[9,11,["H3528"]],[11,12,["H6"]],[12,13,["H369"]],[13,17,["H5750"]],[17,19,["H2506"]],[19,21,["H5769"]],[21,23,["H3605"]],[23,25,["H834"]],[25,27,["H6213"]],[27,28,["H8478"]],[28,30,["H8121"]]]},{"k":17482,"v":[[0,1,["H1980"]],[1,4,["H398"]],[4,6,["H3899"]],[6,8,["H8057"]],[8,10,["H8354"]],[10,12,["H3196"]],[12,15,["H2896"]],[15,16,["H3820"]],[16,17,["H3588"]],[17,18,["H430"]],[18,19,["H3528"]],[19,20,["H7521","(H853)"]],[20,22,["H4639"]]]},{"k":17483,"v":[[0,3,["H899"]],[3,4,["H1961"]],[4,5,["H3605","H6256"]],[5,6,["H3836"]],[6,10,["H7218"]],[10,11,["H2637"]],[11,12,["H408"]],[12,13,["H8081"]]]},{"k":17484,"v":[[0,2,["H2416","H7200"]],[2,3,["H5973"]],[3,5,["H802"]],[5,6,["H834"]],[6,8,["H157"]],[8,9,["H3605"]],[9,11,["H3117"]],[11,14,["H2416"]],[14,17,["H1892"]],[17,18,["H834"]],[18,21,["H5414"]],[21,23,["H8478"]],[23,25,["H8121"]],[25,26,["H3605"]],[26,28,["H3117"]],[28,31,["H1892"]],[31,32,["H3588"]],[32,33,["H1931"]],[33,36,["H2506"]],[36,39,["H2416"]],[39,43,["H5999"]],[43,44,["H834"]],[44,45,["H859"]],[45,46,["H6001"]],[46,47,["H8478"]],[47,49,["H8121"]]]},{"k":17485,"v":[[0,1,["H3605","H834"]],[1,3,["H3027"]],[3,4,["H4672"]],[4,6,["H6213"]],[6,7,["H6213"]],[7,11,["H3581"]],[11,12,["H3588"]],[12,15,["H369"]],[15,16,["H4639"]],[16,18,["H2808"]],[18,20,["H1847"]],[20,22,["H2451"]],[22,25,["H7585"]],[25,26,["H834","H8033"]],[26,27,["H859"]],[27,28,["H1980"]]]},{"k":17486,"v":[[0,2,["H7725"]],[2,4,["H7200"]],[4,5,["H8478"]],[5,7,["H8121"]],[7,8,["H3588"]],[8,10,["H4793"]],[10,12,["H3808"]],[12,15,["H7031"]],[15,16,["H3808"]],[16,18,["H4421"]],[18,21,["H1368"]],[21,22,["H3808"]],[22,23,["H1571"]],[23,24,["H3899"]],[24,27,["H2450"]],[27,28,["H3808"]],[28,29,["H1571"]],[29,30,["H6239"]],[30,34,["H995"]],[34,35,["H3808"]],[35,36,["H1571"]],[36,37,["H2580"]],[37,41,["H3045"]],[41,42,["H3588"]],[42,43,["H6256"]],[43,45,["H6294"]],[45,46,["H7136"]],[46,47,["(H853)"]],[47,49,["H3605"]]]},{"k":17487,"v":[[0,1,["H3588"]],[1,2,["H120"]],[2,3,["H1571"]],[3,4,["H3045"]],[4,5,["H3808","(H853)"]],[5,7,["H6256"]],[7,10,["H1709"]],[10,13,["H7945","H270"]],[13,16,["H7451"]],[16,17,["H4686"]],[17,21,["H6833"]],[21,24,["H270"]],[24,27,["H6341"]],[27,31,["H1121"]],[31,33,["H120"]],[33,34,["H3369"]],[34,37,["H7451"]],[37,38,["H6256"]],[38,41,["H7945","H5307"]],[41,42,["H6597"]],[42,43,["H5921"]],[43,44,[]]]},{"k":17488,"v":[[0,1,["H2090"]],[1,2,["H2451"]],[2,5,["H7200"]],[5,6,["H1571"]],[6,7,["H8478"]],[7,9,["H8121"]],[9,11,["H1931"]],[11,13,["H1419"]],[13,14,["H413"]],[14,15,[]]]},{"k":17489,"v":[[0,4,["H6996"]],[4,5,["H5892"]],[5,7,["H4592"]],[7,8,["H376"]],[8,13,["H935"]],[13,15,["H1419"]],[15,16,["H4428"]],[16,17,["H413"]],[17,20,["H5437"]],[20,23,["H1129"]],[23,24,["H1419"]],[24,25,["H4685"]],[25,26,["H5921"]],[26,27,[]]]},{"k":17490,"v":[[0,4,["H4672"]],[4,8,["H4542"]],[8,9,["H2450"]],[9,10,["H376"]],[10,12,["H1931"]],[12,15,["H2451"]],[15,16,["H4422","(H853)"]],[16,18,["H5892"]],[18,20,["H3808"]],[20,21,["H120"]],[21,22,["H2142","(H853)"]],[22,24,["H1931"]],[24,25,["H4542"]],[25,26,["H376"]]]},{"k":17491,"v":[[0,2,["H559"]],[2,3,["H589"]],[3,4,["H2451"]],[4,6,["H2896"]],[6,8,["H4480","H1369"]],[8,12,["H4542"]],[12,13,["H2451"]],[13,15,["H959"]],[15,18,["H1697"]],[18,20,["H369"]],[20,21,["H8085"]]]},{"k":17492,"v":[[0,2,["H1697"]],[2,4,["H2450"]],[4,7,["H8085"]],[7,9,["H5183"]],[9,13,["H4480","H2201"]],[13,17,["H4910"]],[17,19,["H3684"]]]},{"k":17493,"v":[[0,1,["H2451"]],[1,3,["H2896"]],[3,5,["H4480","H3627"]],[5,7,["H7128"]],[7,9,["H259"]],[9,10,["H2398"]],[10,11,["H6"]],[11,12,["H7235"]],[12,13,["H2896"]]]},{"k":17494,"v":[[0,1,["H4194"]],[1,2,["H2070"]],[2,5,["H8081"]],[5,8,["H7543"]],[8,11,["H5042"]],[11,14,["H887"]],[14,18,["H4592"]],[18,19,["H5531"]],[19,24,["H3368"]],[24,26,["H4480","H2451"]],[26,28,["H4480","H3519"]]]},{"k":17495,"v":[[0,3,["H2450"]],[3,4,["H3820"]],[4,9,["H3225"]],[9,12,["H3684"]],[12,13,["H3820"]],[13,16,["H8040"]]]},{"k":17496,"v":[[0,2,["H1571"]],[2,8,["H7945","H5530"]],[8,9,["H1980"]],[9,12,["H1870"]],[12,14,["H3820"]],[14,15,["H2638"]],[15,19,["H559"]],[19,22,["H3605"]],[22,24,["H1931"]],[24,27,["H5530"]]]},{"k":17497,"v":[[0,1,["H518"]],[1,3,["H7307"]],[3,6,["H4910"]],[6,8,["H5927"]],[8,9,["H5921"]],[9,11,["H5117"]],[11,12,["H408"]],[12,14,["H4725"]],[14,15,["H3588"]],[15,16,["H4832"]],[16,17,["H5117"]],[17,18,["H1419"]],[18,19,["H2399"]]]},{"k":17498,"v":[[0,2,["H3426"]],[2,4,["H7451"]],[4,8,["H7200"]],[8,9,["H8478"]],[9,11,["H8121"]],[11,14,["H7684"]],[14,16,["H7945","H3318"]],[16,17,["H4480","H6440"]],[17,19,["H7989"]]]},{"k":17499,"v":[[0,1,["H5529"]],[1,3,["H5414"]],[3,5,["H7227"]],[5,6,["H4791"]],[6,9,["H6223"]],[9,10,["H3427"]],[10,13,["H8216"]]]},{"k":17500,"v":[[0,3,["H7200"]],[3,4,["H5650"]],[4,5,["H5921"]],[5,6,["H5483"]],[6,8,["H8269"]],[8,9,["H1980"]],[9,11,["H5650"]],[11,12,["H5921"]],[12,14,["H776"]]]},{"k":17501,"v":[[0,3,["H2658"]],[3,5,["H1475"]],[5,7,["H5307"]],[7,12,["H6555"]],[12,14,["H1447"]],[14,16,["H5175"]],[16,18,["H5391"]],[18,19,[]]]},{"k":17502,"v":[[0,2,["H5265"]],[2,3,["H68"]],[3,6,["H6087"]],[6,11,["H1234"]],[11,12,["H6086"]],[12,15,["H5533"]],[15,16,[]]]},{"k":17503,"v":[[0,1,["H518"]],[1,3,["H1270"]],[3,5,["H6949"]],[5,7,["H1931"]],[7,9,["H3808"]],[9,10,["H7043"]],[10,12,["H6440"]],[12,17,["H1396"]],[17,19,["H2428"]],[19,21,["H2451"]],[21,23,["H3504"]],[23,25,["H3787"]]]},{"k":17504,"v":[[0,1,["H518"]],[1,3,["H5175"]],[3,5,["H5391"]],[5,6,["H3808"]],[6,7,["H3908"]],[7,10,["H1167","H3956"]],[10,12,["H369"]],[12,13,["H3504"]]]},{"k":17505,"v":[[0,2,["H1697"]],[2,6,["H2450"]],[6,7,["H6310"]],[7,9,["H2580"]],[9,12,["H8193"]],[12,15,["H3684"]],[15,18,["H1104"]],[18,19,[]]]},{"k":17506,"v":[[0,2,["H8462"]],[2,5,["H1697"]],[5,8,["H6310"]],[8,10,["H5531"]],[10,13,["H319"]],[13,16,["H6310"]],[16,18,["H7451"]],[18,19,["H1948"]]]},{"k":17507,"v":[[0,2,["H5530"]],[2,5,["H7235"]],[5,7,["H1697"]],[7,9,["H120"]],[9,10,["H3808"]],[10,11,["H3045"]],[11,14,["H4100","H7945","H1961"]],[14,16,["H834"]],[16,18,["H1961"]],[18,19,["H4480","H310"]],[19,21,["H4310"]],[21,23,["H5046"]],[23,24,[]]]},{"k":17508,"v":[[0,2,["H5999"]],[2,5,["H3684"]],[5,6,["H3021"]],[6,11,["H834"]],[11,13,["H3045"]],[13,14,["H3808"]],[14,17,["H1980"]],[17,18,["H413"]],[18,20,["H5892"]]]},{"k":17509,"v":[[0,1,["H337"]],[1,5,["H776"]],[5,8,["H7945","H4428"]],[8,11,["H5288"]],[11,14,["H8269"]],[14,15,["H398"]],[15,18,["H1242"]]]},{"k":17510,"v":[[0,1,["H835"]],[1,5,["H776"]],[5,8,["H7945","H4428"]],[8,11,["H1121"]],[11,13,["H2715"]],[13,16,["H8269"]],[16,17,["H398"]],[17,20,["H6256"]],[20,22,["H1369"]],[22,24,["H3808"]],[24,26,["H8358"]]]},{"k":17511,"v":[[0,3,["H6103"]],[3,5,["H4746"]],[5,6,["H4355"]],[6,9,["H8220"]],[9,12,["H3027"]],[12,14,["H1004"]],[14,16,["H1811"]]]},{"k":17512,"v":[[0,2,["H3899"]],[2,4,["H6213"]],[4,6,["H7814"]],[6,8,["H3196"]],[8,10,["H8055","H2416"]],[10,12,["H3701"]],[12,13,["H6030","(H853)"]],[13,14,["H3605"]],[14,15,[]]]},{"k":17513,"v":[[0,1,["H7043"]],[1,2,["H408"]],[2,4,["H4428"]],[4,5,["H1571"]],[5,9,["H4093"]],[9,11,["H7043"]],[11,12,["H408"]],[12,14,["H6223"]],[14,17,["H2315","H4904"]],[17,18,["H3588"]],[18,20,["H5775"]],[20,23,["H8064"]],[23,25,["H1980","(H853)"]],[25,27,["H6963"]],[27,31,["H1167"]],[31,32,["H3671"]],[32,34,["H5046"]],[34,36,["H1697"]]]},{"k":17514,"v":[[0,1,["H7971"]],[1,3,["H3899"]],[3,4,["H5921","H6440"]],[4,6,["H4325"]],[6,7,["H3588"]],[7,10,["H4672"]],[10,13,["H7230"]],[13,14,["H3117"]]]},{"k":17515,"v":[[0,1,["H5414"]],[1,3,["H2506"]],[3,5,["H7651"]],[5,7,["H1571"]],[7,9,["H8083"]],[9,10,["H3588"]],[10,12,["H3045"]],[12,13,["H3808"]],[13,14,["H4100"]],[14,15,["H7451"]],[15,17,["H1961"]],[17,18,["H5921"]],[18,20,["H776"]]]},{"k":17516,"v":[[0,1,["H518"]],[1,3,["H5645"]],[3,5,["H4390"]],[5,7,["H1653"]],[7,9,["H7324"]],[9,11,["H5921"]],[11,13,["H776"]],[13,15,["H518"]],[15,17,["H6086"]],[17,18,["H5307"]],[18,21,["H1864"]],[21,22,["H518"]],[22,25,["H6828"]],[25,28,["H4725"]],[28,31,["H6086"]],[31,32,["H7945","H5307"]],[32,33,["H8033"]],[33,34,["H1933"]],[34,36,[]]]},{"k":17517,"v":[[0,3,["H8104"]],[3,5,["H7307"]],[5,7,["H3808"]],[7,8,["H2232"]],[8,12,["H7200"]],[12,14,["H5645"]],[14,16,["H3808"]],[16,17,["H7114"]]]},{"k":17518,"v":[[0,1,["H834"]],[1,3,["H3045"]],[3,4,["H369"]],[4,5,["H4100"]],[5,8,["H1870"]],[8,11,["H7307"]],[11,15,["H6106"]],[15,20,["H990"]],[20,26,["H4392"]],[26,28,["H3602"]],[28,30,["H3045"]],[30,31,["H3808","(H853)"]],[31,33,["H4639"]],[33,35,["H430"]],[35,36,["H834"]],[36,37,["H6213","(H853)"]],[37,38,["H3605"]]]},{"k":17519,"v":[[0,3,["H1242"]],[3,4,["H2232","(H853)"]],[4,6,["H2233"]],[6,10,["H6153"]],[10,11,["H5117"]],[11,12,["H408"]],[12,14,["H3027"]],[14,15,["H3588"]],[15,17,["H3045"]],[17,18,["H369"]],[18,19,["H335","H2088"]],[19,21,["H3787"]],[21,23,["H2088"]],[23,24,["H176"]],[24,25,["H2088"]],[25,27,["H518"]],[27,29,["H8147"]],[29,32,["H259"]],[32,33,["H2896"]]]},{"k":17520,"v":[[0,3,["H216"]],[3,5,["H4966"]],[5,8,["H2896"]],[8,14,["H5869"]],[14,16,["H7200","(H853)"]],[16,18,["H8121"]]]},{"k":17521,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,4,["H120"]],[4,5,["H2421"]],[5,6,["H7235"]],[6,7,["H8141"]],[7,9,["H8055"]],[9,12,["H3605"]],[12,16,["H2142","(H853)"]],[16,18,["H3117"]],[18,20,["H2822"]],[20,21,["H3588"]],[21,24,["H1961"]],[24,25,["H7235"]],[25,26,["H3605"]],[26,28,["H7945","H935"]],[28,30,["H1892"]]]},{"k":17522,"v":[[0,1,["H8055"]],[1,4,["H970"]],[4,7,["H3208"]],[7,11,["H3820"]],[11,12,["H3190"]],[12,16,["H3117"]],[16,19,["H979"]],[19,21,["H1980"]],[21,24,["H1870"]],[24,27,["H3820"]],[27,31,["H4758"]],[31,34,["H5869"]],[34,36,["H3045"]],[36,38,["H3588"]],[38,39,["H5921"]],[39,40,["H3605"]],[40,41,["H428"]],[41,43,["H430"]],[43,45,["H935"]],[45,48,["H4941"]]]},{"k":17523,"v":[[0,2,["H5493"]],[2,3,["H3708"]],[3,6,["H4480","H3820"]],[6,9,["H5674"]],[9,10,["H7451"]],[10,13,["H4480","H1320"]],[13,14,["H3588"]],[14,15,["H3208"]],[15,17,["H7839"]],[17,19,["H1892"]]]},{"k":17524,"v":[[0,1,["H2142"]],[1,2,["(H853)"]],[2,4,["H1254"]],[4,7,["H3117"]],[7,10,["H979"]],[10,11,["H5704","H834"]],[11,13,["H7451"]],[13,14,["H3117"]],[14,15,["H935"]],[15,16,["H3808"]],[16,19,["H8141"]],[19,21,["H5060"]],[21,22,["H834"]],[22,25,["H559"]],[25,28,["H369"]],[28,29,["H2656"]],[29,31,[]]]},{"k":17525,"v":[[0,1,["H5704","H834"]],[1,3,["H8121"]],[3,6,["H216"]],[6,9,["H3394"]],[9,12,["H3556"]],[12,14,["H3808"]],[14,15,["H2821"]],[15,18,["H5645"]],[18,19,["H7725"]],[19,20,["H310"]],[20,22,["H1653"]]]},{"k":17526,"v":[[0,3,["H3117"]],[3,6,["H8104"]],[6,9,["H1004"]],[9,11,["H7945","H2111"]],[11,14,["H2428"]],[14,15,["H376"]],[15,18,["H5791"]],[18,21,["H2912"]],[21,22,["H988"]],[22,23,["H3588"]],[23,26,["H4591"]],[26,30,["H7200"]],[30,34,["H699"]],[34,36,["H2821"]]]},{"k":17527,"v":[[0,3,["H1817"]],[3,6,["H5462"]],[6,9,["H7784"]],[9,12,["H6963"]],[12,15,["H2913"]],[15,17,["H8213"]],[17,22,["H6965"]],[22,25,["H6963"]],[25,28,["H6833"]],[28,30,["H3605"]],[30,32,["H1323"]],[32,34,["H7892"]],[34,38,["H7817"]]]},{"k":17528,"v":[[0,1,["H1571"]],[1,6,["H3372"]],[6,11,["H4480","H1364"]],[11,13,["H2849"]],[13,18,["H1870"]],[18,22,["H8247"]],[22,24,["H5006"]],[24,27,["H2284"]],[27,31,["H5445"]],[31,33,["H35"]],[33,35,["H6565"]],[35,36,["H3588"]],[36,37,["H120"]],[37,38,["H1980"]],[38,39,["H413"]],[39,41,["H5769"]],[41,42,["H1004"]],[42,45,["H5594"]],[45,47,["H5437"]],[47,49,["H7784"]]]},{"k":17529,"v":[[0,1,["H5704"]],[1,2,["H834","H3808"]],[2,4,["H3701"]],[4,5,["H2256"]],[5,7,["H7368"]],[7,10,["H2091"]],[10,11,["H1543"]],[11,13,["H7533"]],[13,16,["H3537"]],[16,18,["H7665"]],[18,19,["H5921"]],[19,21,["H4002"]],[21,24,["H1534"]],[24,25,["H7533"]],[25,26,["H413"]],[26,28,["H953"]]]},{"k":17530,"v":[[0,4,["H6083"]],[4,5,["H7725"]],[5,6,["H5921"]],[6,8,["H776"]],[8,11,["H7945","H1961"]],[11,14,["H7307"]],[14,16,["H7725"]],[16,17,["H413"]],[17,18,["H430"]],[18,19,["H834"]],[19,20,["H5414"]],[20,21,[]]]},{"k":17531,"v":[[0,1,["H1892"]],[1,3,["H1892"]],[3,4,["H559"]],[4,6,["H6953"]],[6,7,["H3605"]],[7,9,["H1892"]]]},{"k":17532,"v":[[0,2,["H3148"]],[2,5,["H6953"]],[5,6,["H7945","H1961"]],[6,7,["H2450"]],[7,9,["H5750"]],[9,10,["H3925","(H853)"]],[10,12,["H5971"]],[12,13,["H1847"]],[13,18,["H238"]],[18,21,["H2713"]],[21,25,["H8626"]],[25,26,["H7235"]],[26,27,["H4912"]]]},{"k":17533,"v":[[0,2,["H6953"]],[2,3,["H1245"]],[3,6,["H4672"]],[6,7,["H2656"]],[7,8,["H1697"]],[8,13,["H3789"]],[13,15,["H3476"]],[15,17,["H1697"]],[17,19,["H571"]]]},{"k":17534,"v":[[0,2,["H1697"]],[2,5,["H2450"]],[5,8,["H1861"]],[8,11,["H4930"]],[11,12,["H5193"]],[12,15,["H1167"]],[15,17,["H627"]],[17,20,["H5414"]],[20,23,["H4480","H7462","H259"]]]},{"k":17535,"v":[[0,2,["H3148"]],[2,4,["H4480","H1992"]],[4,6,["H1121"]],[6,8,["H2094"]],[8,10,["H6213"]],[10,11,["H7235"]],[11,12,["H5612"]],[12,15,["H369"]],[15,16,["H7093"]],[16,18,["H7235"]],[18,19,["H3854"]],[19,22,["H3024"]],[22,25,["H1320"]]]},{"k":17536,"v":[[0,3,["H8085"]],[3,5,["H5490"]],[5,8,["H3605"]],[8,9,["H1697"]],[9,10,["H3372","(H853)"]],[10,11,["H430"]],[11,13,["H8104"]],[13,15,["H4687"]],[15,16,["H3588"]],[16,17,["H2088"]],[17,20,["H3605"]],[20,23,["H120"]]]},{"k":17537,"v":[[0,1,["H3588"]],[1,2,["H430"]],[2,4,["H935","(H853)"]],[4,5,["H3605"]],[5,6,["H4639"]],[6,8,["H4941"]],[8,9,["H5921"]],[9,10,["H3605"]],[10,12,["H5956"]],[12,13,["H518"]],[13,16,["H2896"]],[16,18,["H518"]],[18,21,["H7451"]]]},{"k":17538,"v":[[0,2,["H7892"]],[2,4,["H7892"]],[4,5,["H834"]],[5,7,["H8010"]]]},{"k":17539,"v":[[0,3,["H5401"]],[3,7,["H4480","H5390"]],[7,10,["H6310"]],[10,11,["H3588"]],[11,13,["H1730"]],[13,15,["H2896"]],[15,17,["H4480","H3196"]]]},{"k":17540,"v":[[0,4,["H7381"]],[4,7,["H2896"]],[7,8,["H8081"]],[8,10,["H8034"]],[10,13,["H8081"]],[13,15,["H7324"]],[15,16,["H5921","H3651"]],[16,19,["H5959"]],[19,20,["H157"]],[20,21,[]]]},{"k":17541,"v":[[0,1,["H4900"]],[1,5,["H7323"]],[5,6,["H310"]],[6,9,["H4428"]],[9,11,["H935"]],[11,15,["H2315"]],[15,19,["H1523"]],[19,21,["H8055"]],[21,26,["H2142"]],[26,28,["H1730"]],[28,31,["H4480","H3196"]],[31,33,["H4339"]],[33,34,["H157"]],[34,35,[]]]},{"k":17542,"v":[[0,1,["H589"]],[1,3,["H7838"]],[3,5,["H5000"]],[5,8,["H1323"]],[8,10,["H3389"]],[10,13,["H168"]],[13,15,["H6938"]],[15,18,["H3407"]],[18,20,["H8010"]]]},{"k":17543,"v":[[0,1,["H7200"]],[1,2,["H408"]],[2,6,["H7945","H589"]],[6,8,["H7840"]],[8,11,["H8121"]],[11,13,["H7945","H7805"]],[13,17,["H517"]],[17,18,["H1121"]],[18,20,["H2734"]],[20,24,["H7760"]],[24,27,["H5201"]],[27,28,["(H853)"]],[28,30,["H3754"]],[30,33,["H7945"]],[33,34,["H3754"]],[34,37,["H3808"]],[37,38,["H5201"]]]},{"k":17544,"v":[[0,1,["H5046"]],[1,7,["H5315"]],[7,8,["H7945","H157"]],[8,9,["H349"]],[9,11,["H7462"]],[11,12,["H349"]],[12,18,["H7257"]],[18,20,["H6672"]],[20,22,["H7945","H4100"]],[22,25,["H1961"]],[25,30,["H5844"]],[30,31,["H5921"]],[31,33,["H5739"]],[33,36,["H2270"]]]},{"k":17545,"v":[[0,1,["H518"]],[1,3,["H3045"]],[3,4,["H3808"]],[4,7,["H3303"]],[7,9,["H802"]],[9,13,["H3318"]],[13,16,["H6119"]],[16,19,["H6629"]],[19,21,["H7462","(H853)"]],[21,23,["H1429"]],[23,24,["H5921"]],[24,26,["H7462"]],[26,27,["H4908"]]]},{"k":17546,"v":[[0,3,["H1819"]],[3,7,["H7474"]],[7,12,["H5484"]],[12,14,["H6547"]],[14,15,["H7393"]]]},{"k":17547,"v":[[0,2,["H3895"]],[2,4,["H4998"]],[4,6,["H8447"]],[6,10,["H6677"]],[10,12,["H2737"]],[12,14,[]]]},{"k":17548,"v":[[0,3,["H6213"]],[3,5,["H8447"]],[5,7,["H2091"]],[7,8,["H5973"]],[8,9,["H5351"]],[9,11,["H3701"]]]},{"k":17549,"v":[[0,1,["H5704"]],[1,3,["H7945","H4428"]],[3,7,["H4524"]],[7,9,["H5373"]],[9,11,["H5414"]],[11,13,["H7381"]],[13,14,[]]]},{"k":17550,"v":[[0,2,["H6872"]],[2,4,["H4753"]],[4,7,["H1730"]],[7,14,["H3885"]],[14,15,["H996"]],[15,17,["H7699"]]]},{"k":17551,"v":[[0,2,["H1730"]],[2,8,["H811"]],[8,10,["H3724"]],[10,13,["H3754"]],[13,15,["H5872"]]]},{"k":17552,"v":[[0,1,["H2009"]],[1,4,["H3303"]],[4,6,["H7474"]],[6,7,["H2009"]],[7,10,["H3303"]],[10,13,["H3123"]],[13,14,["H5869"]]]},{"k":17553,"v":[[0,1,["H2009"]],[1,4,["H3303"]],[4,6,["H1730"]],[6,7,["H637"]],[7,8,["H5273"]],[8,9,["H637"]],[9,11,["H6210"]],[11,13,["H7488"]]]},{"k":17554,"v":[[0,2,["H6982"]],[2,5,["H1004"]],[5,7,["H730"]],[7,10,["H7351"]],[10,12,["H1266"]]]},{"k":17555,"v":[[0,1,["H589"]],[1,4,["H2261"]],[4,6,["H8289"]],[6,9,["H7799"]],[9,12,["H6010"]]]},{"k":17556,"v":[[0,3,["H7799"]],[3,4,["H996"]],[4,5,["H2336"]],[5,6,["H3651"]],[6,9,["H7474"]],[9,10,["H996"]],[10,12,["H1323"]]]},{"k":17557,"v":[[0,4,["H8598"]],[4,7,["H6086"]],[7,10,["H3293"]],[10,11,["H3651"]],[11,14,["H1730"]],[14,15,["H996"]],[15,17,["H1121"]],[17,20,["H3427"]],[20,23,["H6738"]],[23,26,["H2530"]],[26,29,["H6529"]],[29,31,["H4966"]],[31,34,["H2441"]]]},{"k":17558,"v":[[0,2,["H935"]],[2,4,["H413"]],[4,6,["H3196"]],[6,7,["H1004"]],[7,10,["H1714"]],[10,11,["H5921"]],[11,14,["H160"]]]},{"k":17559,"v":[[0,1,["H5564"]],[1,4,["H809"]],[4,5,["H7502"]],[5,8,["H8598"]],[8,9,["H3588"]],[9,10,["H589"]],[10,12,["H2470"]],[12,14,["H160"]]]},{"k":17560,"v":[[0,3,["H8040"]],[3,5,["H8478"]],[5,7,["H7218"]],[7,11,["H3225"]],[11,13,["H2263"]],[13,14,[]]]},{"k":17561,"v":[[0,2,["H7650"]],[2,6,["H1323"]],[6,8,["H3389"]],[8,11,["H6643"]],[11,12,["H176"]],[12,15,["H355"]],[15,18,["H7704"]],[18,23,["H518","H5782"]],[23,24,["H518"]],[24,25,["H5782","(H853)"]],[25,27,["H160"]],[27,30,["H7945","H2654"]]]},{"k":17562,"v":[[0,2,["H6963"]],[2,5,["H1730"]],[5,6,["H2009"]],[6,7,["H2088"]],[7,8,["H935"]],[8,9,["H1801"]],[9,10,["H5921"]],[10,12,["H2022"]],[12,13,["H7092"]],[13,14,["H5921"]],[14,16,["H1389"]]]},{"k":17563,"v":[[0,2,["H1730"]],[2,4,["H1819"]],[4,6,["H6643"]],[6,7,["H176"]],[7,9,["H6082"]],[9,10,["H354"]],[10,11,["H2009"]],[11,12,["H2088"]],[12,13,["H5975"]],[13,14,["H310"]],[14,16,["H3796"]],[16,19,["H7688"]],[19,20,["H4480"]],[20,22,["H2474"]],[22,24,["H6692"]],[24,25,["H4480"]],[25,27,["H2762"]]]},{"k":17564,"v":[[0,2,["H1730"]],[2,3,["H6030"]],[3,5,["H559"]],[5,9,["H6965"]],[9,11,["H7474"]],[11,14,["H3303"]],[14,17,["H1980"]]]},{"k":17565,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H5638"]],[4,6,["H5674"]],[6,8,["H1653"]],[8,10,["H2498"]],[10,12,["H1980"]]]},{"k":17566,"v":[[0,2,["H5339"]],[2,3,["H7200"]],[3,6,["H776"]],[6,8,["H6256"]],[8,11,["H2158"]],[11,15,["H5060"]],[15,18,["H6963"]],[18,21,["H8449"]],[21,23,["H8085"]],[23,26,["H776"]]]},{"k":17567,"v":[[0,3,["H8384"]],[3,5,["H2590"]],[5,8,["H6291"]],[8,11,["H1612"]],[11,15,["H5563"]],[15,16,["H5414"]],[16,19,["H7381"]],[19,20,["H6965"]],[20,22,["H7474"]],[22,25,["H3303"]],[25,28,["H1980"]]]},{"k":17568,"v":[[0,3,["H3123"]],[3,8,["H2288"]],[8,11,["H5553"]],[11,14,["H5643"]],[14,18,["H4095"]],[18,21,["H7200","(H853)"]],[21,23,["H4758"]],[23,26,["H8085","(H853)"]],[26,28,["H6963"]],[28,29,["H3588"]],[29,30,["H6156"]],[30,33,["H6963"]],[33,36,["H4758"]],[36,38,["H5000"]]]},{"k":17569,"v":[[0,1,["H270"]],[1,4,["H7776"]],[4,6,["H6996"]],[6,7,["H7776"]],[7,9,["H2254"]],[9,11,["H3754"]],[11,14,["H3754"]],[14,17,["H5563"]]]},{"k":17570,"v":[[0,2,["H1730"]],[2,6,["H589"]],[6,10,["H7462"]],[10,13,["H7799"]]]},{"k":17571,"v":[[0,1,["H5704"]],[1,3,["H7945","H3117"]],[3,4,["H6315"]],[4,7,["H6752"]],[7,9,["H5127"]],[9,10,["H5437"]],[10,12,["H1730"]],[12,16,["H1819"]],[16,18,["H6643"]],[18,19,["H176"]],[19,21,["H6082"]],[21,22,["H354"]],[22,23,["H5921"]],[23,25,["H2022"]],[25,27,["H1336"]]]},{"k":17572,"v":[[0,2,["H3915"]],[2,3,["H5921"]],[3,5,["H4904"]],[5,7,["H1245","(H853)"]],[7,11,["H5315"]],[11,12,["H7945","H157"]],[12,14,["H1245"]],[14,18,["H4672"]],[18,20,["H3808"]]]},{"k":17573,"v":[[0,3,["H6965"]],[3,4,["H4994"]],[4,7,["H5437"]],[7,9,["H5892"]],[9,12,["H7784"]],[12,17,["H7339"]],[17,20,["H1245"]],[20,24,["H5315"]],[24,25,["H7945","H157"]],[25,27,["H1245"]],[27,31,["H4672"]],[31,33,["H3808"]]]},{"k":17574,"v":[[0,2,["H8104"]],[2,5,["H5437"]],[5,7,["H5892"]],[7,8,["H4672"]],[8,14,["H7200"]],[14,15,["(H853)"]],[15,19,["H5315"]],[19,20,["H7945","H157"]]]},{"k":17575,"v":[[0,5,["H4592"]],[5,8,["H7945","H5674"]],[8,9,["H4480"]],[9,11,["H5704"]],[11,13,["H7945","H4672","(H853)"]],[13,17,["H5315"]],[17,18,["H7945","H157"]],[18,20,["H270"]],[20,24,["H3808"]],[24,27,["H7503"]],[27,28,["H5704"]],[28,31,["H7945","H935"]],[31,33,["H413"]],[33,35,["H517"]],[35,36,["H1004"]],[36,38,["H413"]],[38,40,["H2315"]],[40,44,["H2029"]],[44,45,[]]]},{"k":17576,"v":[[0,2,["H7650"]],[2,6,["H1323"]],[6,8,["H3389"]],[8,11,["H6643"]],[11,12,["H176"]],[12,15,["H355"]],[15,18,["H7704"]],[18,23,["H5782","H518"]],[23,24,["H518"]],[24,25,["H5782","(H853)"]],[25,27,["H160"]],[27,28,["H5704"]],[28,30,["H7945","H2654"]]]},{"k":17577,"v":[[0,1,["H4310"]],[1,3,["H2063"]],[3,5,["H5927"]],[5,7,["H4480"]],[7,9,["H4057"]],[9,11,["H8490"]],[11,13,["H6227"]],[13,14,["H6999"]],[14,16,["H4753"]],[16,18,["H3828"]],[18,20,["H4480","H3605"]],[20,21,["H81"]],[21,24,["H7402"]]]},{"k":17578,"v":[[0,1,["H2009"]],[1,3,["H4296"]],[3,6,["H7945","H8010"]],[6,7,["H8346"]],[7,9,["H1368"]],[9,11,["H5439"]],[11,15,["H4480","H1368"]],[15,17,["H3478"]]]},{"k":17579,"v":[[0,2,["H3605"]],[2,3,["H270"]],[3,4,["H2719"]],[4,6,["H3925"]],[6,8,["H4421"]],[8,10,["H376"]],[10,13,["H2719"]],[13,14,["H5921"]],[14,16,["H3409"]],[16,19,["H4480","H6343"]],[19,22,["H3915"]]]},{"k":17580,"v":[[0,1,["H4428"]],[1,2,["H8010"]],[2,3,["H6213"]],[3,6,["H668"]],[6,9,["H4480","H6086"]],[9,11,["H3844"]]]},{"k":17581,"v":[[0,2,["H6213"]],[2,4,["H5982"]],[4,7,["H3701"]],[7,9,["H7507"]],[9,12,["H2091"]],[12,14,["H4817"]],[14,18,["H713"]],[18,20,["H8432"]],[20,23,["H7528"]],[23,25,["H160"]],[25,28,["H1323"]],[28,30,["H3389"]]]},{"k":17582,"v":[[0,2,["H3318"]],[2,5,["H1323"]],[5,7,["H6726"]],[7,9,["H7200"]],[9,10,["H4428"]],[10,11,["H8010"]],[11,14,["H5850"]],[14,17,["H517"]],[17,18,["H7945","H5849"]],[18,22,["H3117"]],[22,25,["H2861"]],[25,29,["H3117"]],[29,32,["H8057"]],[32,35,["H3820"]]]},{"k":17583,"v":[[0,1,["H2009"]],[1,4,["H3303"]],[4,6,["H7474"]],[6,7,["H2009"]],[7,10,["H3303"]],[10,13,["H3123"]],[13,14,["H5869"]],[14,15,["H4480","H1157"]],[15,17,["H6777"]],[17,19,["H8181"]],[19,23,["H5739"]],[23,25,["H5795"]],[25,27,["H7945","H1570"]],[27,29,["H4480","H2022"]],[29,30,["H1568"]]]},{"k":17584,"v":[[0,2,["H8127"]],[2,6,["H5739"]],[6,12,["H7094"]],[12,15,["H7945","H5927"]],[15,16,["H4480"]],[16,18,["H7367"]],[18,21,["H7945","H3605"]],[21,23,["H8382"]],[23,25,["H369"]],[25,27,["H7909"]],[27,29,[]]]},{"k":17585,"v":[[0,2,["H8193"]],[2,6,["H2339"]],[6,8,["H8144"]],[8,11,["H4057"]],[11,13,["H5000"]],[13,15,["H7541"]],[15,19,["H6400"]],[19,22,["H7416"]],[22,23,["H4480","H1157"]],[23,25,["H6777"]]]},{"k":17586,"v":[[0,2,["H6677"]],[2,6,["H4026"]],[6,8,["H1732"]],[8,9,["H1129"]],[9,12,["H8530"]],[12,13,["H5921"]],[13,15,["H8518"]],[15,17,["H505"]],[17,18,["H4043"]],[18,19,["H3605"]],[19,20,["H7982"]],[20,23,["H1368"]]]},{"k":17587,"v":[[0,2,["H8147"]],[2,3,["H7699"]],[3,6,["H8147"]],[6,7,["H6082"]],[7,8,["H6646"]],[8,11,["H8380"]],[11,13,["H7462"]],[13,16,["H7799"]]]},{"k":17588,"v":[[0,1,["H5704"]],[1,3,["H3117"]],[3,4,["H7945","H6315"]],[4,7,["H6752"]],[7,9,["H5127"]],[9,12,["H1980"]],[12,14,["H413"]],[14,16,["H2022"]],[16,18,["H4753"]],[18,20,["H413"]],[20,22,["H1389"]],[22,24,["H3828"]]]},{"k":17589,"v":[[0,3,["H3605"]],[3,4,["H3303"]],[4,6,["H7474"]],[6,9,["H369"]],[9,10,["H3971"]],[10,12,[]]]},{"k":17590,"v":[[0,1,["H935"]],[1,2,["H854"]],[2,5,["H4480","H3844"]],[5,7,["H3618"]],[7,8,["H854"]],[8,11,["H4480","H3844"]],[11,12,["H7789"]],[12,15,["H4480","H7218"]],[15,17,["H549"]],[17,20,["H4480","H7218"]],[20,22,["H8149"]],[22,24,["H2768"]],[24,27,["H738"]],[27,28,["H4480","H4585"]],[28,31,["H4480","H2042"]],[31,34,["H5246"]]]},{"k":17591,"v":[[0,5,["H3823"]],[5,7,["H269"]],[7,9,["H3618"]],[9,14,["H3823"]],[14,16,["H259"]],[16,19,["H4480","H5869"]],[19,21,["H259"]],[21,22,["H6060"]],[22,25,["H4480","H6677"]]]},{"k":17592,"v":[[0,1,["H4100"]],[1,2,["H3302"]],[2,5,["H1730"]],[5,7,["H269"]],[7,9,["H3618"]],[9,10,["H4100"]],[10,12,["H2895"]],[12,15,["H1730"]],[15,17,["H4480","H3196"]],[17,20,["H7381"]],[20,23,["H8081"]],[23,25,["H4480","H3605"]],[25,26,["H1314"]]]},{"k":17593,"v":[[0,2,["H8193"]],[2,5,["H3618"]],[5,6,["H5197"]],[6,9,["H5317"]],[9,10,["H1706"]],[10,12,["H2461"]],[12,14,["H8478"]],[14,16,["H3956"]],[16,19,["H7381"]],[19,22,["H8008"]],[22,26,["H7381"]],[26,28,["H3844"]]]},{"k":17594,"v":[[0,2,["H1588"]],[2,3,["H5274"]],[3,6,["H269"]],[6,8,["H3618"]],[8,10,["H1530"]],[10,12,["H5274"]],[12,14,["H4599"]],[14,15,["H2856"]]]},{"k":17595,"v":[[0,2,["H7973"]],[2,5,["H6508"]],[5,7,["H7416"]],[7,8,["H5973"]],[8,9,["H4022"]],[9,10,["H6529"]],[10,11,["H3724"]],[11,12,["H5973"]],[12,13,["H5373"]]]},{"k":17596,"v":[[0,1,["H5373"]],[1,3,["H3750"]],[3,4,["H7070"]],[4,6,["H7076"]],[6,7,["H5973"]],[7,8,["H3605"]],[8,9,["H6086"]],[9,11,["H3828"]],[11,12,["H4753"]],[12,14,["H174"]],[14,15,["H5973"]],[15,16,["H3605"]],[16,18,["H7218"]],[18,19,["H1314"]]]},{"k":17597,"v":[[0,2,["H4599"]],[2,4,["H1588"]],[4,6,["H875"]],[6,8,["H2416"]],[8,9,["H4325"]],[9,11,["H5140"]],[11,12,["H4480"]],[12,13,["H3844"]]]},{"k":17598,"v":[[0,1,["H5782"]],[1,3,["H6828"]],[3,6,["H935"]],[6,8,["H8486"]],[8,10,["H6315"]],[10,12,["H1588"]],[12,15,["H1314"]],[15,19,["H5140"]],[19,22,["H1730"]],[22,23,["H935"]],[23,26,["H1588"]],[26,28,["H398"]],[28,30,["H4022"]],[30,31,["H6529"]]]},{"k":17599,"v":[[0,3,["H935"]],[3,6,["H1588"]],[6,8,["H269"]],[8,10,["H3618"]],[10,13,["H717"]],[13,15,["H4753"]],[15,16,["H5973"]],[16,18,["H1313"]],[18,21,["H398"]],[21,23,["H3293"]],[23,24,["H5973"]],[24,26,["H1706"]],[26,29,["H8354"]],[29,31,["H3196"]],[31,32,["H5973"]],[32,34,["H2461"]],[34,35,["H398"]],[35,37,["H7453"]],[37,38,["H8354"]],[38,41,["H7937"]],[41,43,["H1730"]]]},{"k":17600,"v":[[0,1,["H589"]],[1,2,["H3463"]],[2,5,["H3820"]],[5,6,["H5782"]],[6,10,["H6963"]],[10,13,["H1730"]],[13,15,["H1849"]],[15,17,["H6605"]],[17,21,["H269"]],[21,23,["H7474"]],[23,25,["H3123"]],[25,27,["H8535"]],[27,30,["H7945","H7218"]],[30,32,["H4390"]],[32,34,["H2919"]],[34,37,["H6977"]],[37,40,["H7447"]],[40,43,["H3915"]]]},{"k":17601,"v":[[0,4,["H6584","(H853)"]],[4,6,["H3801"]],[6,7,["H349"]],[7,12,["H3847"]],[12,15,["H7364","(H853)"]],[15,17,["H7272"]],[17,18,["H349"]],[18,21,["H2936"]],[21,22,[]]]},{"k":17602,"v":[[0,2,["H1730"]],[2,4,["H7971"]],[4,6,["H3027"]],[6,7,["H4480"]],[7,9,["H2356"]],[9,15,["H4578"]],[15,17,["H1993"]],[17,18,["H5921"]],[18,19,[]]]},{"k":17603,"v":[[0,1,["H589"]],[1,3,["H6965"]],[3,5,["H6605"]],[5,8,["H1730"]],[8,11,["H3027"]],[11,12,["H5197"]],[12,14,["H4753"]],[14,17,["H676"]],[17,20,["H5674"]],[20,21,["H4753"]],[21,22,["H5921"]],[22,24,["H3709"]],[24,27,["H4514"]]]},{"k":17604,"v":[[0,1,["H589"]],[1,2,["H6605"]],[2,5,["H1730"]],[5,8,["H1730"]],[8,10,["H2559"]],[10,14,["H5674"]],[14,16,["H5315"]],[16,17,["H3318"]],[17,20,["H1696"]],[20,22,["H1245"]],[22,27,["H3808"]],[27,28,["H4672"]],[28,31,["H7121"]],[31,38,["H3808","H6030"]]]},{"k":17605,"v":[[0,2,["H8104"]],[2,5,["H5437"]],[5,7,["H5892"]],[7,8,["H4672"]],[8,11,["H5221"]],[11,14,["H6481"]],[14,17,["H8104"]],[17,20,["H2346"]],[20,22,["H5375","(H853)"]],[22,24,["H7289"]],[24,25,["H4480","H5921"]],[25,26,[]]]},{"k":17606,"v":[[0,2,["H7650"]],[2,5,["H1323"]],[5,7,["H3389"]],[7,8,["H518"]],[8,10,["H4672","(H853)"]],[10,12,["H1730"]],[12,13,["H4100"]],[13,15,["H5046"]],[15,18,["H589"]],[18,20,["H7945","H2470"]],[20,22,["H160"]]]},{"k":17607,"v":[[0,1,["H4100"]],[1,4,["H1730"]],[4,8,["H4480","H1730"]],[8,11,["H3303"]],[11,13,["H802"]],[13,14,["H4100"]],[14,17,["H1730"]],[17,21,["H4480","H1730"]],[21,25,["H7945","H3602"]],[25,26,["H7650"]],[26,27,[]]]},{"k":17608,"v":[[0,2,["H1730"]],[2,4,["H6703"]],[4,6,["H122"]],[6,8,["H1713"]],[8,11,["H4480","H7233"]]]},{"k":17609,"v":[[0,2,["H7218"]],[2,6,["H3800"]],[6,8,["H6337"]],[8,10,["H6977"]],[10,12,["H8534"]],[12,14,["H7838"]],[14,17,["H6158"]]]},{"k":17610,"v":[[0,2,["H5869"]],[2,8,["H3123"]],[8,9,["H5921"]],[9,11,["H650"]],[11,13,["H4325"]],[13,14,["H7364"]],[14,16,["H2461"]],[16,19,["H4402","H3427"]]]},{"k":17611,"v":[[0,2,["H3895"]],[2,6,["H6170"]],[6,8,["H1314"]],[8,10,["H4840"]],[10,11,["H4026"]],[11,13,["H8193"]],[13,15,["H7799"]],[15,16,["H5197"]],[16,18,["H5674"]],[18,19,["H4753"]]]},{"k":17612,"v":[[0,2,["H3027"]],[2,5,["H2091"]],[5,6,["H1550"]],[6,7,["H4390"]],[7,10,["H8658"]],[10,12,["H4578"]],[12,15,["H6247"]],[15,16,["H8127"]],[16,17,["H5968"]],[17,19,["H5601"]]]},{"k":17613,"v":[[0,2,["H7785"]],[2,5,["H5982"]],[5,7,["H8336"]],[7,8,["H3245"]],[8,9,["H5921"]],[9,10,["H134"]],[10,13,["H6337"]],[13,15,["H4758"]],[15,18,["H3844"]],[18,19,["H977"]],[19,22,["H730"]]]},{"k":17614,"v":[[0,2,["H2441"]],[2,5,["H4477"]],[5,9,["H3605"]],[9,10,["H4261"]],[10,11,["H2088"]],[11,14,["H1730"]],[14,16,["H2088"]],[16,19,["H7453"]],[19,21,["H1323"]],[21,23,["H3389"]]]},{"k":17615,"v":[[0,1,["H575"]],[1,4,["H1730"]],[4,5,["H1980"]],[5,8,["H3303"]],[8,10,["H802"]],[10,11,["H575"]],[11,14,["H1730"]],[14,16,["H6437"]],[16,20,["H1245"]],[20,22,["H5973"]],[22,23,[]]]},{"k":17616,"v":[[0,2,["H1730"]],[2,5,["H3381"]],[5,8,["H1588"]],[8,11,["H6170"]],[11,13,["H1314"]],[13,15,["H7462"]],[15,18,["H1588"]],[18,21,["H3950"]],[21,22,["H7799"]]]},{"k":17617,"v":[[0,1,["H589"]],[1,4,["H1730"]],[4,7,["H1730"]],[7,11,["H7462"]],[11,14,["H7799"]]]},{"k":17618,"v":[[0,1,["H859"]],[1,3,["H3303"]],[3,6,["H7474"]],[6,8,["H8656"]],[8,9,["H5000"]],[9,11,["H3389"]],[11,12,["H366"]],[12,17,["H1714"]]]},{"k":17619,"v":[[0,2,["H5437"]],[2,4,["H5869"]],[4,5,["H4480","H5048"]],[5,8,["H7945","H1992"]],[8,10,["H7292"]],[10,13,["H8181"]],[13,17,["H5739"]],[17,19,["H5795"]],[19,21,["H7945","H1570"]],[21,22,["H4480"]],[22,23,["H1568"]]]},{"k":17620,"v":[[0,2,["H8127"]],[2,6,["H5739"]],[6,8,["H7353"]],[8,11,["H7945","H5927"]],[11,12,["H4480"]],[12,14,["H7367"]],[14,17,["H7945","H3605"]],[17,19,["H8382"]],[19,23,["H369"]],[23,25,["H7909"]],[25,27,[]]]},{"k":17621,"v":[[0,3,["H6400"]],[3,6,["H7416"]],[6,9,["H7541"]],[9,10,["H4480","H1157"]],[10,12,["H6777"]]]},{"k":17622,"v":[[0,1,["H1992"]],[1,3,["H8346"]],[3,4,["H4436"]],[4,6,["H8084"]],[6,7,["H6370"]],[7,9,["H5959"]],[9,10,["H369"]],[10,11,["H4557"]]]},{"k":17623,"v":[[0,2,["H3123"]],[2,4,["H8535"]],[4,7,["H259"]],[7,8,["H1931"]],[8,12,["H259"]],[12,15,["H517"]],[15,16,["H1931"]],[16,19,["H1249"]],[19,24,["H3205"]],[24,27,["H1323"]],[27,28,["H7200"]],[28,31,["H833"]],[31,35,["H4436"]],[35,38,["H6370"]],[38,41,["H1984"]],[41,42,[]]]},{"k":17624,"v":[[0,1,["H4310"]],[1,3,["H2063"]],[3,6,["H8259"]],[6,9,["H7837"]],[9,10,["H3303"]],[10,13,["H3842"]],[13,14,["H1249"]],[14,17,["H2535"]],[17,19,["H366"]],[19,24,["H1713"]]]},{"k":17625,"v":[[0,3,["H3381"]],[3,4,["H413"]],[4,6,["H1594"]],[6,8,["H93"]],[8,10,["H7200"]],[10,12,["H3"]],[12,15,["H5158"]],[15,18,["H7200"]],[18,21,["H1612"]],[21,22,["H6524"]],[22,25,["H7416"]],[25,26,["H5132"]]]},{"k":17626,"v":[[0,2,["H3808"]],[2,5,["H3045"]],[5,7,["H5315"]],[7,8,["H7760"]],[8,12,["H4818"]],[12,14,["H5971","H5081"]]]},{"k":17627,"v":[[0,1,["H7725"]],[1,2,["H7725"]],[2,4,["H7759"]],[4,5,["H7725"]],[5,6,["H7725"]],[6,10,["H2372"]],[10,13,["H4100"]],[13,16,["H2372"]],[16,19,["H7759"]],[19,24,["H4246"]],[24,27,["H4264"]]]},{"k":17628,"v":[[0,1,["H4100"]],[1,2,["H3302"]],[2,5,["H6471"]],[5,7,["H5275"]],[7,9,["H5081"]],[9,10,["H1323"]],[10,12,["H2542"]],[12,15,["H3409"]],[15,17,["H3644"]],[17,18,["H2481"]],[18,20,["H4639"]],[20,23,["H3027"]],[23,27,["H542"]]]},{"k":17629,"v":[[0,2,["H8326"]],[2,6,["H5469"]],[6,7,["H101"]],[7,9,["H2637"]],[9,10,["H408"]],[10,11,["H4197"]],[11,13,["H990"]],[13,17,["H6194"]],[17,19,["H2406"]],[19,21,["H5473"]],[21,23,["H7799"]]]},{"k":17630,"v":[[0,2,["H8147"]],[2,3,["H7699"]],[3,6,["H8147"]],[6,7,["H6082"]],[7,8,["H6646"]],[8,11,["H8380"]]]},{"k":17631,"v":[[0,2,["H6677"]],[2,6,["H4026"]],[6,8,["H8127"]],[8,10,["H5869"]],[10,13,["H1295"]],[13,15,["H2809"]],[15,16,["H5921"]],[16,18,["H8179"]],[18,20,["H1337"]],[20,22,["H639"]],[22,26,["H4026"]],[26,28,["H3844"]],[28,30,["H6822"]],[30,31,["H6440"]],[31,32,["H1834"]]]},{"k":17632,"v":[[0,2,["H7218"]],[2,3,["H5921"]],[3,7,["H3760"]],[7,10,["H1803"]],[10,13,["H7218"]],[13,15,["H713"]],[15,17,["H4428"]],[17,19,["H631"]],[19,22,["H7298"]]]},{"k":17633,"v":[[0,1,["H4100"]],[1,2,["H3302"]],[2,4,["H4100"]],[4,5,["H5276"]],[5,9,["H160"]],[9,11,["H8588"]]]},{"k":17634,"v":[[0,1,["H2063"]],[1,3,["H6967"]],[3,5,["H1819"]],[5,9,["H8558"]],[9,12,["H7699"]],[12,14,["H811"]],[14,16,[]]]},{"k":17635,"v":[[0,2,["H559"]],[2,6,["H5927"]],[6,10,["H8558"]],[10,14,["H270"]],[14,17,["H5577"]],[17,19,["H4994"]],[19,22,["H7699"]],[22,24,["H1961"]],[24,26,["H811"]],[26,29,["H1612"]],[29,32,["H7381"]],[32,35,["H639"]],[35,37,["H8598"]]]},{"k":17636,"v":[[0,6,["H2441"]],[6,9,["H2896"]],[9,10,["H3196"]],[10,13,["H1730"]],[13,15,["H1980"]],[15,17,["H4339"]],[17,20,["H8193"]],[20,25,["H3463"]],[25,27,["H1680"]]]},{"k":17637,"v":[[0,1,["H589"]],[1,4,["H1730"]],[4,7,["H8669"]],[7,9,["H5921"]],[9,10,[]]]},{"k":17638,"v":[[0,1,["H1980"]],[1,3,["H1730"]],[3,7,["H3318"]],[7,10,["H7704"]],[10,13,["H3885"]],[13,16,["H3723"]]]},{"k":17639,"v":[[0,5,["H7925"]],[5,8,["H3754"]],[8,11,["H7200"]],[11,12,["H518"]],[12,14,["H1612"]],[14,15,["H6524"]],[15,19,["H5563"]],[19,20,["H6524"]],[20,23,["H7416"]],[23,25,["H5132"]],[25,26,["H8033"]],[26,29,["H5414"]],[29,30,["(H853)"]],[30,32,["H1730"]]]},{"k":17640,"v":[[0,2,["H1736"]],[2,3,["H5414"]],[3,5,["H7381"]],[5,7,["H5921"]],[7,9,["H6607"]],[9,12,["H3605"]],[12,14,["H4022"]],[14,16,["H2319"]],[16,17,["H1571"]],[17,18,["H3465"]],[18,23,["H6845"]],[23,28,["H1730"]]]},{"k":17641,"v":[[0,2,["H4310","H5414"]],[2,7,["H251"]],[7,9,["H3243"]],[9,11,["H7699"]],[11,14,["H517"]],[14,18,["H4672"]],[18,20,["H2351"]],[20,23,["H5401"]],[23,25,["H1571"]],[25,28,["H3808"]],[28,30,["H936"]]]},{"k":17642,"v":[[0,3,["H5090"]],[3,6,["H935"]],[6,8,["H413"]],[8,10,["H517"]],[10,11,["H1004"]],[11,14,["H3925"]],[14,21,["H8248"]],[21,23,["H7544"]],[23,24,["H4480","H3196"]],[24,27,["H4480","H6071"]],[27,30,["H7416"]]]},{"k":17643,"v":[[0,3,["H8040"]],[3,6,["H8478"]],[6,8,["H7218"]],[8,12,["H3225"]],[12,14,["H2263"]],[14,15,[]]]},{"k":17644,"v":[[0,2,["H7650"]],[2,5,["H1323"]],[5,7,["H3389"]],[7,8,["H4100"]],[8,12,["H5782"]],[12,13,["H4100"]],[13,14,["H5782","(H853)"]],[14,16,["H160"]],[16,17,["H5704"]],[17,19,["H7945","H2654"]]]},{"k":17645,"v":[[0,1,["H4310"]],[1,3,["H2063"]],[3,6,["H5927"]],[6,7,["H4480"]],[7,9,["H4057"]],[9,10,["H7514"]],[10,11,["H5921"]],[11,13,["H1730"]],[13,17,["H5782"]],[17,18,["H8478"]],[18,21,["H8598"]],[21,22,["H8033"]],[22,24,["H517"]],[24,27,["H2254"]],[27,28,["H8033"]],[28,32,["H2254"]],[32,34,["H3205"]],[34,35,[]]]},{"k":17646,"v":[[0,1,["H7760"]],[1,5,["H2368"]],[5,6,["H5921"]],[6,8,["H3820"]],[8,11,["H2368"]],[11,12,["H5921"]],[12,14,["H2220"]],[14,15,["H3588"]],[15,16,["H160"]],[16,18,["H5794"]],[18,20,["H4194"]],[20,21,["H7068"]],[21,23,["H7186"]],[23,26,["H7585"]],[26,28,["H7565"]],[28,31,["H7565"]],[31,33,["H784"]],[33,39,["H7957"]]]},{"k":17647,"v":[[0,1,["H7227"]],[1,2,["H4325"]],[2,3,["H3808","H3201","(H853)"]],[3,4,["H3518"]],[4,5,["H160"]],[5,6,["H3808"]],[6,9,["H5104"]],[9,10,["H7857"]],[10,12,["H518"]],[12,14,["H376"]],[14,16,["H5414","(H853)"]],[16,17,["H3605"]],[17,19,["H1952"]],[19,22,["H1004"]],[22,24,["H160"]],[24,29,["H936","H936"]]]},{"k":17648,"v":[[0,4,["H6996"]],[4,5,["H269"]],[5,9,["H369"]],[9,10,["H7699"]],[10,11,["H4100"]],[11,14,["H6213"]],[14,17,["H269"]],[17,20,["H3117"]],[20,26,["H7945","H1696"]]]},{"k":17649,"v":[[0,1,["H518"]],[1,2,["H1931"]],[2,5,["H2346"]],[5,8,["H1129"]],[8,9,["H5921"]],[9,12,["H2918"]],[12,14,["H3701"]],[14,16,["H518"]],[16,17,["H1931"]],[17,20,["H1817"]],[20,23,["H6696","H5921"]],[23,26,["H3871"]],[26,28,["H730"]]]},{"k":17650,"v":[[0,1,["H589"]],[1,4,["H2346"]],[4,7,["H7699"]],[7,9,["H4026"]],[9,10,["H227"]],[10,11,["H1961"]],[11,15,["H5869"]],[15,19,["H4672"]],[19,20,["H7965"]]]},{"k":17651,"v":[[0,1,["H8010"]],[1,2,["H1961"]],[2,4,["H3754"]],[4,6,["H1174"]],[6,9,["H5414","(H853)"]],[9,11,["H3754"]],[11,13,["H5201"]],[13,15,["H376"]],[15,18,["H6529"]],[18,22,["H935"]],[22,24,["H505"]],[24,27,["H3701"]]]},{"k":17652,"v":[[0,2,["H3754"]],[2,5,["H7945"]],[5,7,["H6440"]],[7,11,["H8010"]],[11,15,["H505"]],[15,19,["H5201","(H853)"]],[19,21,["H6529"]],[21,24,["H3967"]]]},{"k":17653,"v":[[0,3,["H3427"]],[3,6,["H1588"]],[6,8,["H2270"]],[8,9,["H7181"]],[9,12,["H6963"]],[12,16,["H8085"]],[16,17,[]]]},{"k":17654,"v":[[0,2,["H1272"]],[2,4,["H1730"]],[4,8,["H1819"]],[8,11,["H6643"]],[11,12,["H176"]],[12,15,["H6082"]],[15,16,["H354"]],[16,17,["H5921"]],[17,19,["H2022"]],[19,21,["H1314"]]]},{"k":17655,"v":[[0,2,["H2377"]],[2,4,["H3470"]],[4,6,["H1121"]],[6,8,["H531"]],[8,9,["H834"]],[9,11,["H2372"]],[11,12,["H5921"]],[12,13,["H3063"]],[13,15,["H3389"]],[15,18,["H3117"]],[18,20,["H5818"]],[20,21,["H3147"]],[21,22,["H271"]],[22,24,["H3169"]],[24,25,["H4428"]],[25,27,["H3063"]]]},{"k":17656,"v":[[0,1,["H8085"]],[1,3,["H8064"]],[3,6,["H238"]],[6,8,["H776"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,13,["H1696"]],[13,16,["H1431"]],[16,19,["H7311"]],[19,20,["H1121"]],[20,22,["H1992"]],[22,24,["H6586"]],[24,26,[]]]},{"k":17657,"v":[[0,2,["H7794"]],[2,3,["H3045"]],[3,5,["H7069"]],[5,8,["H2543"]],[8,10,["H1167"]],[10,11,["H18"]],[11,13,["H3478"]],[13,15,["H3808"]],[15,16,["H3045"]],[16,18,["H5971"]],[18,20,["H3808"]],[20,21,["H995"]]]},{"k":17658,"v":[[0,1,["H1945"]],[1,2,["H2398"]],[2,3,["H1471"]],[3,5,["H5971"]],[5,6,["H3515"]],[6,8,["H5771"]],[8,10,["H2233"]],[10,12,["H7489"]],[12,13,["H1121"]],[13,16,["H7843"]],[16,19,["H5800","(H853)"]],[19,21,["H3068"]],[21,24,["H5006","(H853)"]],[24,27,["H6918"]],[27,29,["H3478"]],[29,35,["H2114"]],[35,36,["H268"]]]},{"k":17659,"v":[[0,1,["H5921","H4100"]],[1,5,["H5221"]],[5,7,["H5750"]],[7,10,["H5627"]],[10,13,["H3254"]],[13,15,["H3605"]],[15,16,["H7218"]],[16,18,["H2483"]],[18,21,["H3605"]],[21,22,["H3824"]],[22,23,["H1742"]]]},{"k":17660,"v":[[0,3,["H4480","H3709"]],[3,6,["H7272"]],[6,8,["H5704"]],[8,10,["H7218"]],[10,13,["H369"]],[13,14,["H4974"]],[14,18,["H6482"]],[18,20,["H2250"]],[20,22,["H2961"]],[22,23,["H4347"]],[23,26,["H3808"]],[26,28,["H2115"]],[28,29,["H3808"]],[29,31,["H2280"]],[31,32,["H3808"]],[32,33,["H7401"]],[33,35,["H8081"]]]},{"k":17661,"v":[[0,2,["H776"]],[2,4,["H8077"]],[4,6,["H5892"]],[6,8,["H8313"]],[8,10,["H784"]],[10,12,["H127"]],[12,13,["H2114"]],[13,14,["H398"]],[14,18,["H5048"]],[18,22,["H8077"]],[22,24,["H4114"]],[24,26,["H2114"]]]},{"k":17662,"v":[[0,3,["H1323"]],[3,5,["H6726"]],[5,7,["H3498"]],[7,10,["H5521"]],[10,13,["H3754"]],[13,16,["H4412"]],[16,21,["H4750"]],[21,24,["H5341"]],[24,25,["H5892"]]]},{"k":17663,"v":[[0,1,["H3884"]],[1,3,["H3068"]],[3,5,["H6635"]],[5,7,["H3498"]],[7,12,["H4592"]],[12,13,["H8300"]],[13,17,["H1961"]],[17,19,["H5467"]],[19,25,["H1819"]],[25,27,["H6017"]]]},{"k":17664,"v":[[0,1,["H8085"]],[1,3,["H1697"]],[3,6,["H3068"]],[6,8,["H7101"]],[8,10,["H5467"]],[10,12,["H238"]],[12,15,["H8451"]],[15,18,["H430"]],[18,20,["H5971"]],[20,22,["H6017"]]]},{"k":17665,"v":[[0,2,["H4100"]],[2,6,["H7230"]],[6,9,["H2077"]],[9,12,["H559"]],[12,14,["H3068"]],[14,17,["H7646"]],[17,21,["H5930"]],[21,23,["H352"]],[23,26,["H2459"]],[26,29,["H4806"]],[29,32,["H2654"]],[32,33,["H3808"]],[33,36,["H1818"]],[36,38,["H6499"]],[38,41,["H3532"]],[41,45,["H6260"]]]},{"k":17666,"v":[[0,1,["H3588"]],[1,3,["H935"]],[3,5,["H7200"]],[5,6,["H6440"]],[6,8,["H4310"]],[8,10,["H1245"]],[10,11,["H2063"]],[11,14,["H4480","H3027"]],[14,16,["H7429"]],[16,18,["H2691"]]]},{"k":17667,"v":[[0,1,["H935"]],[1,2,["H3808"]],[2,3,["H3254"]],[3,4,["H7723"]],[4,5,["H4503"]],[5,6,["H7004"]],[6,9,["H8441"]],[9,14,["H2320"]],[14,16,["H7676"]],[16,18,["H7121"]],[18,20,["H4744"]],[20,22,["H3808","H3201"]],[22,27,["H205"]],[27,31,["H6116"]]]},{"k":17668,"v":[[0,3,["H2320"]],[3,7,["H4150"]],[7,9,["H5315"]],[9,10,["H8130"]],[10,12,["H1961"]],[12,14,["H2960"]],[14,16,["H5921"]],[16,19,["H3811"]],[19,21,["H5375"]],[21,22,[]]]},{"k":17669,"v":[[0,5,["H6566"]],[5,7,["H3709"]],[7,10,["H5956"]],[10,12,["H5869"]],[12,13,["H4480"]],[13,15,["H1571"]],[15,16,["H3588"]],[16,19,["H7235"]],[19,20,["H8605"]],[20,23,["H369"]],[23,24,["H8085"]],[24,26,["H3027"]],[26,28,["H4390"]],[28,30,["H1818"]]]},{"k":17670,"v":[[0,1,["H7364"]],[1,5,["H2135"]],[5,7,["H5493"]],[7,9,["H7455"]],[9,12,["H4611"]],[12,14,["H4480","H5048"]],[14,16,["H5869"]],[16,17,["H2308"]],[17,20,["H7489"]]]},{"k":17671,"v":[[0,1,["H3925"]],[1,4,["H3190"]],[4,5,["H1875"]],[5,6,["H4941"]],[6,7,["H833"]],[7,9,["H2541"]],[9,10,["H8199"]],[10,12,["H3490"]],[12,13,["H7378"]],[13,16,["H490"]]]},{"k":17672,"v":[[0,1,["H1980"]],[1,2,["H4994"]],[2,7,["H3198"]],[7,8,["H559"]],[8,10,["H3068"]],[10,11,["H518"]],[11,13,["H2399"]],[13,14,["H1961"]],[14,16,["H8144"]],[16,21,["H3835"]],[21,23,["H7950"]],[23,24,["H518"]],[24,27,["H119"]],[27,29,["H8438"]],[29,32,["H1961"]],[32,34,["H6785"]]]},{"k":17673,"v":[[0,1,["H518"]],[1,4,["H14"]],[4,6,["H8085"]],[6,9,["H398"]],[9,11,["H2898"]],[11,14,["H776"]]]},{"k":17674,"v":[[0,2,["H518"]],[2,4,["H3985"]],[4,6,["H4784"]],[6,10,["H398"]],[10,13,["H2719"]],[13,14,["H3588"]],[14,16,["H6310"]],[16,19,["H3068"]],[19,21,["H1696"]],[21,22,[]]]},{"k":17675,"v":[[0,1,["H349"]],[1,4,["H539"]],[4,5,["H7151"]],[5,6,["H1961"]],[6,8,["H2181"]],[8,11,["H4392"]],[11,13,["H4941"]],[13,14,["H6664"]],[14,15,["H3885"]],[15,19,["H6258"]],[19,20,["H7523"]]]},{"k":17676,"v":[[0,2,["H3701"]],[2,4,["H1961"]],[4,5,["H5509"]],[5,7,["H5435"]],[7,8,["H4107"]],[8,10,["H4325"]]]},{"k":17677,"v":[[0,2,["H8269"]],[2,4,["H5637"]],[4,6,["H2270"]],[6,8,["H1590"]],[8,10,["H3605"]],[10,11,["H157"]],[11,12,["H7810"]],[12,15,["H7291"]],[15,16,["H8021"]],[16,18,["H8199"]],[18,19,["H3808"]],[19,21,["H3490"]],[21,22,["H3808"]],[22,25,["H7379"]],[25,28,["H490"]],[28,29,["H935"]],[29,30,["H413"]],[30,31,[]]]},{"k":17678,"v":[[0,1,["H3651"]],[1,2,["H5002"]],[2,4,["H113"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,11,["H46"]],[11,13,["H3478"]],[13,14,["H1945"]],[14,17,["H5162"]],[17,21,["H4480","H6862"]],[21,23,["H5358"]],[23,27,["H4480","H341"]]]},{"k":17679,"v":[[0,4,["H7725"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,10,["H1252"]],[10,12,["H6884"]],[12,14,["H5509"]],[14,17,["H5493"]],[17,18,["H3605"]],[18,20,["H913"]]]},{"k":17680,"v":[[0,4,["H7725"]],[4,6,["H8199"]],[6,10,["H7223"]],[10,13,["H3289"]],[13,17,["H8462"]],[17,18,["H310","H3651"]],[18,22,["H7121"]],[22,24,["H5892"]],[24,26,["H6664"]],[26,28,["H539"]],[28,29,["H7151"]]]},{"k":17681,"v":[[0,1,["H6726"]],[1,4,["H6299"]],[4,6,["H4941"]],[6,9,["H7725"]],[9,11,["H6666"]]]},{"k":17682,"v":[[0,3,["H7667"]],[3,6,["H6586"]],[6,10,["H2400"]],[10,13,["H3162"]],[13,17,["H5800"]],[17,19,["H3068"]],[19,22,["H3615"]]]},{"k":17683,"v":[[0,1,["H3588"]],[1,5,["H954"]],[5,8,["H4480","H352"]],[8,9,["H834"]],[9,12,["H2530"]],[12,17,["H2659"]],[17,20,["H4480","H1593"]],[20,21,["H834"]],[21,24,["H977"]]]},{"k":17684,"v":[[0,1,["H3588"]],[1,4,["H1961"]],[4,7,["H424"]],[7,9,["H5929"]],[9,10,["H5034"]],[10,14,["H1593"]],[14,15,["H834"]],[15,17,["H369"]],[17,18,["H4325"]]]},{"k":17685,"v":[[0,3,["H2634"]],[3,5,["H1961"]],[5,7,["H5296"]],[7,10,["H6467"]],[10,15,["H5213"]],[15,19,["H8147"]],[19,20,["H1197"]],[20,21,["H3162"]],[21,23,["H369"]],[23,25,["H3518"]],[25,26,[]]]},{"k":17686,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H3470"]],[4,6,["H1121"]],[6,8,["H531"]],[8,9,["H2372"]],[9,10,["H5921"]],[10,11,["H3063"]],[11,13,["H3389"]]]},{"k":17687,"v":[[0,6,["H1961"]],[6,9,["H319"]],[9,10,["H3117"]],[10,13,["H2022"]],[13,16,["H3068"]],[16,17,["H1004"]],[17,19,["H1961"]],[19,20,["H3559"]],[20,23,["H7218"]],[23,26,["H2022"]],[26,30,["H5375"]],[30,33,["H4480","H1389"]],[33,35,["H3605"]],[35,36,["H1471"]],[36,38,["H5102"]],[38,39,["H413"]],[39,40,[]]]},{"k":17688,"v":[[0,2,["H7227"]],[2,3,["H5971"]],[3,5,["H1980"]],[5,7,["H559"]],[7,8,["H1980"]],[8,14,["H5927"]],[14,15,["H413"]],[15,17,["H2022"]],[17,20,["H3068"]],[20,21,["H413"]],[21,23,["H1004"]],[23,26,["H430"]],[26,28,["H3290"]],[28,32,["H3384"]],[32,36,["H4480","H1870"]],[36,40,["H1980"]],[40,43,["H734"]],[43,44,["H3588"]],[44,47,["H4480","H6726"]],[47,50,["H3318"]],[50,52,["H8451"]],[52,55,["H1697"]],[55,58,["H3068"]],[58,60,["H4480","H3389"]]]},{"k":17689,"v":[[0,4,["H8199"]],[4,5,["H996"]],[5,7,["H1471"]],[7,10,["H3198"]],[10,11,["H7227"]],[11,12,["H5971"]],[12,16,["H3807"]],[16,18,["H2719"]],[18,20,["H855"]],[20,23,["H2595"]],[23,25,["H4211"]],[25,26,["H1471"]],[26,28,["H3808"]],[28,30,["H5375"]],[30,31,["H2719"]],[31,32,["H413"]],[32,33,["H1471"]],[33,34,["H3808"]],[34,37,["H3925"]],[37,38,["H4421"]],[38,40,["H5750"]]]},{"k":17690,"v":[[0,2,["H1004"]],[2,4,["H3290"]],[4,5,["H1980"]],[5,10,["H1980"]],[10,13,["H216"]],[13,16,["H3068"]]]},{"k":17691,"v":[[0,1,["H3588"]],[1,4,["H5203"]],[4,6,["H5971"]],[6,8,["H1004"]],[8,10,["H3290"]],[10,11,["H3588"]],[11,14,["H4390"]],[14,17,["H4480","H6924"]],[17,20,["H6049"]],[20,23,["H6430"]],[23,27,["H5606"]],[27,30,["H3206"]],[30,32,["H5237"]]]},{"k":17692,"v":[[0,2,["H776"]],[2,5,["H4390"]],[5,7,["H3701"]],[7,9,["H2091"]],[9,10,["H369"]],[10,14,["H7097"]],[14,17,["H214"]],[17,19,["H776"]],[19,22,["H4390"]],[22,24,["H5483"]],[24,25,["H369"]],[25,29,["H7097"]],[29,32,["H4818"]]]},{"k":17693,"v":[[0,2,["H776"]],[2,5,["H4390"]],[5,7,["H457"]],[7,9,["H7812"]],[9,11,["H4639"]],[11,15,["H3027"]],[15,17,["H834"]],[17,20,["H676"]],[20,22,["H6213"]]]},{"k":17694,"v":[[0,4,["H120"]],[4,6,["H7817"]],[6,10,["H376"]],[10,11,["H8213"]],[11,14,["H5375"]],[14,16,["H408"]]]},{"k":17695,"v":[[0,1,["H935"]],[1,4,["H6697"]],[4,6,["H2934"]],[6,10,["H6083"]],[10,11,["H4480","H6440"]],[11,12,["H6343"]],[12,15,["H3068"]],[15,19,["H4480","H1926"]],[19,22,["H1347"]]]},{"k":17696,"v":[[0,2,["H1365"]],[2,3,["H5869"]],[3,5,["H120"]],[5,8,["H8213"]],[8,11,["H7312"]],[11,13,["H376"]],[13,17,["H7817"]],[17,20,["H3068"]],[20,21,["H905"]],[21,24,["H7682"]],[24,26,["H1931"]],[26,27,["H3117"]]]},{"k":17697,"v":[[0,1,["H3588"]],[1,3,["H3117"]],[3,6,["H3068"]],[6,8,["H6635"]],[8,11,["H5921"]],[11,12,["H3605"]],[12,16,["H1343"]],[16,18,["H7311"]],[18,20,["H5921"]],[20,21,["H3605"]],[21,26,["H5375"]],[26,32,["H8213"]]]},{"k":17698,"v":[[0,2,["H5921"]],[2,3,["H3605"]],[3,5,["H730"]],[5,7,["H3844"]],[7,10,["H7311"]],[10,13,["H5375"]],[13,15,["H5921"]],[15,16,["H3605"]],[16,18,["H437"]],[18,20,["H1316"]]]},{"k":17699,"v":[[0,2,["H5921"]],[2,3,["H3605"]],[3,5,["H7311"]],[5,6,["H2022"]],[6,8,["H5921"]],[8,9,["H3605"]],[9,11,["H1389"]],[11,15,["H5375"]]]},{"k":17700,"v":[[0,2,["H5921"]],[2,3,["H3605"]],[3,4,["H1364"]],[4,5,["H4026"]],[5,7,["H5921"]],[7,8,["H3605"]],[8,9,["H1219"]],[9,10,["H2346"]]]},{"k":17701,"v":[[0,2,["H5921"]],[2,3,["H3605"]],[3,5,["H591"]],[5,7,["H8659"]],[7,9,["H5921"]],[9,10,["H3605"]],[10,11,["H2532"]],[11,12,["H7914"]]]},{"k":17702,"v":[[0,3,["H1365"]],[3,5,["H120"]],[5,9,["H7817"]],[9,12,["H7312"]],[12,14,["H376"]],[14,18,["H8213"]],[18,21,["H3068"]],[21,22,["H905"]],[22,25,["H7682"]],[25,27,["H1931"]],[27,28,["H3117"]]]},{"k":17703,"v":[[0,3,["H457"]],[3,6,["H3632"]],[6,7,["H2498"]]]},{"k":17704,"v":[[0,4,["H935"]],[4,7,["H4631"]],[7,10,["H6697"]],[10,14,["H4247"]],[14,17,["H6083"]],[17,18,["H4480","H6440"]],[18,19,["H6343"]],[19,22,["H3068"]],[22,26,["H4480","H1926"]],[26,29,["H1347"]],[29,32,["H6965"]],[32,35,["H6206"]],[35,37,["H776"]]]},{"k":17705,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H120"]],[5,7,["H7993","(H853)"]],[7,9,["H457"]],[9,11,["H3701"]],[11,14,["H457"]],[14,16,["H2091"]],[16,17,["H834"]],[17,19,["H6213"]],[19,25,["H7812"]],[25,28,["H2661","H6512"]],[28,32,["H5847"]]]},{"k":17706,"v":[[0,2,["H935"]],[2,5,["H5366"]],[5,8,["H6697"]],[8,12,["H5585"]],[12,16,["H5553"]],[16,17,["H4480","H6440"]],[17,18,["H6343"]],[18,21,["H3068"]],[21,25,["H4480","H1926"]],[25,28,["H1347"]],[28,31,["H6965"]],[31,34,["H6206"]],[34,36,["H776"]]]},{"k":17707,"v":[[0,1,["H2308"]],[1,3,["H4480"]],[3,4,["H120"]],[4,5,["H834"]],[5,6,["H5397"]],[6,10,["H639"]],[10,11,["H3588"]],[11,12,["H4100"]],[12,14,["H1931"]],[14,17,["H2803"]],[17,18,[]]]},{"k":17708,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H113"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,11,["H5493"]],[11,13,["H4480","H3389"]],[13,16,["H4480","H3063"]],[16,18,["H4937"]],[18,21,["H4938"]],[21,23,["H3605"]],[23,24,["H4937"]],[24,26,["H3899"]],[26,29,["H3605"]],[29,30,["H4937"]],[30,32,["H4325"]]]},{"k":17709,"v":[[0,2,["H1368"]],[2,6,["H376"]],[6,8,["H4421"]],[8,10,["H8199"]],[10,13,["H5030"]],[13,16,["H7080"]],[16,19,["H2205"]]]},{"k":17710,"v":[[0,2,["H8269"]],[2,4,["H2572"]],[4,8,["H5375","H6440"]],[8,11,["H3289"]],[11,14,["H2450"]],[14,15,["H2796"]],[15,18,["H995"]],[18,19,["H3908"]]]},{"k":17711,"v":[[0,4,["H5414"]],[4,5,["H5288"]],[5,9,["H8269"]],[9,11,["H8586"]],[11,13,["H4910"]],[13,15,[]]]},{"k":17712,"v":[[0,3,["H5971"]],[3,6,["H5065"]],[6,8,["H376"]],[8,10,["H376"]],[10,13,["H376"]],[13,16,["H7453"]],[16,18,["H5288"]],[18,22,["H7292"]],[22,25,["H2205"]],[25,28,["H7034"]],[28,31,["H3513"]]]},{"k":17713,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,6,["H8610"]],[6,9,["H251"]],[9,12,["H1004"]],[12,15,["H1"]],[15,19,["H8071"]],[19,20,["H1961"]],[20,23,["H7101"]],[23,26,["H2063"]],[26,27,["H4384"]],[27,29,["H8478"]],[29,31,["H3027"]]]},{"k":17714,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H5375"]],[6,7,["H559"]],[7,10,["H3808"]],[10,11,["H1961"]],[11,13,["H2280"]],[13,17,["H1004"]],[17,19,["H369"]],[19,20,["H3899"]],[20,21,["H369"]],[21,22,["H8071"]],[22,23,["H7760"]],[23,25,["H3808"]],[25,27,["H7101"]],[27,30,["H5971"]]]},{"k":17715,"v":[[0,1,["H3588"]],[1,2,["H3389"]],[2,4,["H3782"]],[4,6,["H3063"]],[6,8,["H5307"]],[8,9,["H3588"]],[9,11,["H3956"]],[11,14,["H4611"]],[14,16,["H413"]],[16,18,["H3068"]],[18,20,["H4784"]],[20,22,["H5869"]],[22,25,["H3519"]]]},{"k":17716,"v":[[0,2,["H1971"]],[2,5,["H6440"]],[5,7,["H6030"]],[7,12,["H5046"]],[12,14,["H2403"]],[14,16,["H5467"]],[16,18,["H3582"]],[18,20,["H3808"]],[20,21,["H188"]],[21,24,["H5315"]],[24,25,["H3588"]],[25,28,["H1580"]],[28,29,["H7451"]],[29,31,[]]]},{"k":17717,"v":[[0,1,["H559"]],[1,5,["H6662"]],[5,6,["H3588"]],[6,10,["H2895"]],[10,13,["H3588"]],[13,16,["H398"]],[16,18,["H6529"]],[18,21,["H4611"]]]},{"k":17718,"v":[[0,1,["H188"]],[1,4,["H7563"]],[4,8,["H7451"]],[8,11,["H3588"]],[11,13,["H1576"]],[13,16,["H3027"]],[16,19,["H6213"]],[19,20,[]]]},{"k":17719,"v":[[0,4,["H5971"]],[4,5,["H5768"]],[5,8,["H5065"]],[8,10,["H802"]],[10,11,["H4910"]],[11,16,["H5971"]],[16,19,["H833"]],[19,24,["H8582"]],[24,26,["H1104"]],[26,28,["H1870"]],[28,31,["H734"]]]},{"k":17720,"v":[[0,2,["H3068"]],[2,4,["H5324"]],[4,6,["H7378"]],[6,8,["H5975"]],[8,10,["H1777"]],[10,12,["H5971"]]]},{"k":17721,"v":[[0,2,["H3068"]],[2,4,["H935"]],[4,6,["H4941"]],[6,7,["H5973"]],[7,9,["H2205"]],[9,12,["H5971"]],[12,15,["H8269"]],[15,18,["H859"]],[18,21,["H1197"]],[21,23,["H3754"]],[23,25,["H1500"]],[25,28,["H6041"]],[28,32,["H1004"]]]},{"k":17722,"v":[[0,3,["H4100"]],[3,10,["H1792","H5971"]],[10,12,["H2912"]],[12,14,["H6440"]],[14,17,["H6041"]],[17,18,["H5002"]],[18,20,["H136"]],[20,21,["H3068"]],[21,23,["H6635"]]]},{"k":17723,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H3282","H3588"]],[5,7,["H1323"]],[7,9,["H6726"]],[9,11,["H1361"]],[11,13,["H1980"]],[13,16,["H5186"]],[16,17,["H1627"]],[17,19,["H8265"]],[19,20,["H5869"]],[20,21,["H1980"]],[21,23,["H2952"]],[23,26,["H1980"]],[26,30,["H5913"]],[30,33,["H7272"]]]},{"k":17724,"v":[[0,3,["H136"]],[3,8,["H5596"]],[8,13,["H6936"]],[13,16,["H1323"]],[16,18,["H6726"]],[18,21,["H3068"]],[21,23,["H6168"]],[23,26,["H6596"]]]},{"k":17725,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H136"]],[5,8,["H5493","(H853)"]],[8,10,["H8597"]],[10,14,["H5914"]],[14,20,["H7636"]],[20,24,["H7720"]],[24,27,[]]]},{"k":17726,"v":[[0,2,["H5188"]],[2,5,["H8285"]],[5,8,["H7479"]]]},{"k":17727,"v":[[0,2,["H6287"]],[2,8,["H6807"]],[8,11,["H7196"]],[11,14,["H1004","H5315"]],[14,17,["H3908"]]]},{"k":17728,"v":[[0,2,["H2885"]],[2,4,["H639"]],[4,5,["H5141"]]]},{"k":17729,"v":[[0,5,["H4254"]],[5,8,["H4595"]],[8,11,["H4304"]],[11,15,["H2754"]]]},{"k":17730,"v":[[0,2,["H1549"]],[2,6,["H5466"]],[6,9,["H6797"]],[9,12,["H7289"]]]},{"k":17731,"v":[[0,6,["H1961"]],[6,8,["H8478"]],[8,11,["H1314"]],[11,14,["H1961"]],[14,15,["H4716"]],[15,17,["H8478"]],[17,20,["H2290"]],[20,22,["H5364"]],[22,24,["H8478"]],[24,27,["H4639"]],[27,28,["H4748"]],[28,29,["H7144"]],[29,31,["H8478"]],[31,34,["H6614"]],[34,36,["H4228"]],[36,38,["H8242"]],[38,40,["H3587"]],[40,41,["H8478"]],[41,43,["H3308"]]]},{"k":17732,"v":[[0,2,["H4962"]],[2,4,["H5307"]],[4,7,["H2719"]],[7,10,["H1369"]],[10,13,["H4421"]]]},{"k":17733,"v":[[0,3,["H6607"]],[3,5,["H578"]],[5,7,["H56"]],[7,11,["H5352"]],[11,13,["H3427"]],[13,16,["H776"]]]},{"k":17734,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,5,["H7651"]],[5,6,["H802"]],[6,9,["H2388"]],[9,11,["H259"]],[11,12,["H376"]],[12,13,["H559"]],[13,16,["H398"]],[16,19,["H3899"]],[19,21,["H3847"]],[21,24,["H8071"]],[24,25,["H7535"]],[25,29,["H7121"]],[29,32,["H8034"]],[32,34,["H622"]],[34,37,["H2781"]]]},{"k":17735,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H6780"]],[6,9,["H3068"]],[9,10,["H1961"]],[10,11,["H6643"]],[11,13,["H3519"]],[13,16,["H6529"]],[16,19,["H776"]],[19,22,["H1347"]],[22,24,["H8597"]],[24,29,["H6413"]],[29,31,["H3478"]]]},{"k":17736,"v":[[0,6,["H1961"]],[6,11,["H7604"]],[11,13,["H6726"]],[13,17,["H3498"]],[17,19,["H3389"]],[19,22,["H559"]],[22,23,["H6918"]],[23,26,["H3605"]],[26,29,["H3789"]],[29,32,["H2416"]],[32,34,["H3389"]]]},{"k":17737,"v":[[0,1,["H518"]],[1,3,["H136"]],[3,7,["H7364","(H853)"]],[7,9,["H6675"]],[9,12,["H1323"]],[12,14,["H6726"]],[14,18,["H1740"]],[18,20,["H1818"]],[20,22,["H3389"]],[22,25,["H4480","H7130"]],[25,29,["H7307"]],[29,31,["H4941"]],[31,35,["H7307"]],[35,37,["H1197"]]]},{"k":17738,"v":[[0,3,["H3068"]],[3,5,["H1254"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,9,["H4349"]],[9,11,["H2022"]],[11,12,["H6726"]],[12,14,["H5921"]],[14,16,["H4744"]],[16,18,["H6051"]],[18,20,["H6227"]],[20,22,["H3119"]],[22,25,["H5051"]],[25,28,["H3852"]],[28,29,["H784"]],[29,31,["H3915"]],[31,32,["H3588"]],[32,33,["H5921"]],[33,34,["H3605"]],[34,36,["H3519"]],[36,40,["H2646"]]]},{"k":17739,"v":[[0,4,["H1961"]],[4,6,["H5521"]],[6,9,["H6738"]],[9,12,["H3119"]],[12,15,["H4480","H2721"]],[15,21,["H4268"]],[21,25,["H4563"]],[25,27,["H4480","H2230"]],[27,30,["H4480","H4306"]]]},{"k":17740,"v":[[0,1,["H4994"]],[1,4,["H7891"]],[4,7,["H3039"]],[7,9,["H7892"]],[9,12,["H1730"]],[12,15,["H3754"]],[15,17,["H3039"]],[17,18,["H1961"]],[18,20,["H3754"]],[20,25,["H1121","H8081","H7161"]]]},{"k":17741,"v":[[0,3,["H5823"]],[3,9,["H5619"]],[9,12,["H5193"]],[12,17,["H8321"]],[17,19,["H1129"]],[19,21,["H4026"]],[21,24,["H8432"]],[24,28,["H1571"]],[28,29,["H2672"]],[29,31,["H3342"]],[31,35,["H6960"]],[35,40,["H6213"]],[40,41,["H6025"]],[41,45,["H6213"]],[45,47,["H891"]]]},{"k":17742,"v":[[0,2,["H6258"]],[2,4,["H3427"]],[4,6,["H3389"]],[6,8,["H376"]],[8,10,["H3063"]],[10,11,["H8199"]],[11,14,["H4994"]],[14,15,["H996"]],[15,19,["H3754"]]]},{"k":17743,"v":[[0,1,["H4100"]],[1,5,["H6213"]],[5,6,["H5750"]],[6,9,["H3754"]],[9,13,["H3808"]],[13,14,["H6213"]],[14,17,["H4069"]],[17,20,["H6960"]],[20,25,["H6213"]],[25,26,["H6025"]],[26,29,["H6213"]],[29,31,["H891"]]]},{"k":17744,"v":[[0,2,["H6258"]],[2,7,["H3045","H4994"]],[7,8,["(H853)"]],[8,9,["H834"]],[9,10,["H589"]],[10,12,["H6213"]],[12,15,["H3754"]],[15,19,["H5493"]],[19,21,["H4881"]],[21,26,["H1961"]],[26,28,["H1197"]],[28,31,["H6555"]],[31,33,["H1447"]],[33,38,["H1961"]],[38,40,["H4823"]]]},{"k":17745,"v":[[0,4,["H7896"]],[4,6,["H1326"]],[6,9,["H3808"]],[9,11,["H2167"]],[11,12,["H3808"]],[12,13,["H5737"]],[13,18,["H5927"]],[18,19,["H8068"]],[19,21,["H7898"]],[21,25,["H6680","H5921"]],[25,27,["H5645"]],[27,32,["H4480","H4305","H4306"]],[32,33,["H5921"]],[33,34,[]]]},{"k":17746,"v":[[0,1,["H3588"]],[1,3,["H3754"]],[3,6,["H3068"]],[6,8,["H6635"]],[8,11,["H1004"]],[11,13,["H3478"]],[13,16,["H376"]],[16,18,["H3063"]],[18,20,["H8191"]],[20,21,["H5194"]],[21,24,["H6960"]],[24,26,["H4941"]],[26,28,["H2009"]],[28,29,["H4939"]],[29,31,["H6666"]],[31,33,["H2009"]],[33,35,["H6818"]]]},{"k":17747,"v":[[0,1,["H1945"]],[1,5,["H5060"]],[5,6,["H1004"]],[6,8,["H1004"]],[8,10,["H7126"]],[10,11,["H7704"]],[11,13,["H7704"]],[13,14,["H5704"]],[14,17,["H657"]],[17,18,["H4725"]],[18,23,["H3427"]],[23,24,["H905"]],[24,27,["H7130"]],[27,30,["H776"]]]},{"k":17748,"v":[[0,3,["H241"]],[3,6,["H3068"]],[6,8,["H6635"]],[8,11,["H518","H3808"]],[11,12,["H7227"]],[12,13,["H1004"]],[13,15,["H1961"]],[15,16,["H8047"]],[16,18,["H1419"]],[18,20,["H2896"]],[20,21,["H4480","H369"]],[21,22,["H3427"]]]},{"k":17749,"v":[[0,1,["H3588"]],[1,2,["H6235"]],[2,3,["H6776"]],[3,5,["H3754"]],[5,7,["H6213"]],[7,8,["H259"]],[8,9,["H1324"]],[9,12,["H2233"]],[12,15,["H2563"]],[15,17,["H6213"]],[17,19,["H374"]]]},{"k":17750,"v":[[0,1,["H1945"]],[1,7,["H7925"]],[7,10,["H1242"]],[10,14,["H7291"]],[14,16,["H7941"]],[16,18,["H309"]],[18,20,["H5399"]],[20,22,["H3196"]],[22,23,["H1814"]],[23,24,[]]]},{"k":17751,"v":[[0,3,["H3658"]],[3,6,["H5035"]],[6,8,["H8596"]],[8,10,["H2485"]],[10,12,["H3196"]],[12,13,["H1961"]],[13,16,["H4960"]],[16,19,["H5027"]],[19,20,["H3808"]],[20,22,["H6467"]],[22,25,["H3068"]],[25,26,["H3808"]],[26,27,["H7200"]],[27,29,["H4639"]],[29,32,["H3027"]]]},{"k":17752,"v":[[0,1,["H3651"]],[1,3,["H5971"]],[3,7,["H1540"]],[7,11,["H4480","H1097"]],[11,12,["H1847"]],[12,15,["H3519"]],[15,16,["H4962"]],[16,18,["H7458"]],[18,21,["H1995"]],[21,23,["H6704"]],[23,25,["H6772"]]]},{"k":17753,"v":[[0,1,["H3651"]],[1,2,["H7585"]],[2,4,["H7337"]],[4,5,["H5315"]],[5,7,["H6473"]],[7,9,["H6310"]],[9,10,["H1097"]],[10,11,["H2706"]],[11,14,["H1926"]],[14,17,["H1995"]],[17,20,["H7588"]],[20,24,["H5938"]],[24,26,["H3381"]],[26,28,[]]]},{"k":17754,"v":[[0,4,["H120"]],[4,8,["H7817"]],[8,12,["H376"]],[12,15,["H8213"]],[15,18,["H5869"]],[18,21,["H1364"]],[21,24,["H8213"]]]},{"k":17755,"v":[[0,3,["H3068"]],[3,5,["H6635"]],[5,8,["H1361"]],[8,10,["H4941"]],[10,12,["H410"]],[12,15,["H6918"]],[15,18,["H6942"]],[18,20,["H6666"]]]},{"k":17756,"v":[[0,4,["H3532"]],[4,5,["H7462"]],[5,8,["H1699"]],[8,12,["H2723"]],[12,16,["H4220"]],[16,18,["H1481"]],[18,19,["H398"]]]},{"k":17757,"v":[[0,1,["H1945"]],[1,5,["H4900"]],[5,6,["H5771"]],[6,8,["H2256"]],[8,10,["H7723"]],[10,12,["H2402"]],[12,18,["H5699"]],[18,19,["H5688"]]]},{"k":17758,"v":[[0,2,["H559"]],[2,6,["H4116"]],[6,8,["H2363"]],[8,10,["H4639"]],[10,11,["H4616"]],[11,14,["H7200"]],[14,19,["H6098"]],[19,23,["H6918"]],[23,25,["H3478"]],[25,27,["H7126"]],[27,29,["H935"]],[29,33,["H3045"]],[33,34,[]]]},{"k":17759,"v":[[0,1,["H1945"]],[1,5,["H559"]],[5,6,["H7451"]],[6,7,["H2896"]],[7,9,["H2896"]],[9,10,["H7451"]],[10,12,["H7760"]],[12,13,["H2822"]],[13,15,["H216"]],[15,17,["H216"]],[17,19,["H2822"]],[19,21,["H7760"]],[21,22,["H4751"]],[22,24,["H4966"]],[24,26,["H4966"]],[26,28,["H4751"]]]},{"k":17760,"v":[[0,1,["H1945"]],[1,6,["H2450"]],[6,10,["H5869"]],[10,12,["H995"]],[12,13,["H5048"]],[13,16,["H6440"]]]},{"k":17761,"v":[[0,1,["H1945"]],[1,6,["H1368"]],[6,8,["H8354"]],[8,9,["H3196"]],[9,11,["H376"]],[11,13,["H2428"]],[13,15,["H4537"]],[15,17,["H7941"]]]},{"k":17762,"v":[[0,2,["H6663"]],[2,4,["H7563"]],[4,5,["H6118"]],[5,6,["H7810"]],[6,9,["H5493"]],[9,11,["H6666"]],[11,14,["H6662"]],[14,15,["H4480"]],[15,16,[]]]},{"k":17763,"v":[[0,1,["H3651"]],[1,4,["H784"]],[4,5,["H398"]],[5,7,["H7179"]],[7,10,["H3852"]],[10,11,["H7503"]],[11,13,["H2842"]],[13,16,["H8328"]],[16,18,["H1961"]],[18,20,["H4716"]],[20,23,["H6525"]],[23,26,["H5927"]],[26,28,["H80"]],[28,29,["H3588"]],[29,33,["H3988","(H853)"]],[33,35,["H8451"]],[35,38,["H3068"]],[38,40,["H6635"]],[40,42,["H5006"]],[42,44,["H565"]],[44,48,["H6918"]],[48,50,["H3478"]]]},{"k":17764,"v":[[0,1,["H5921","H3651"]],[1,4,["H639"]],[4,7,["H3068"]],[7,8,["H2734"]],[8,11,["H5971"]],[11,16,["H5186"]],[16,18,["H3027"]],[18,19,["H5921"]],[19,23,["H5221"]],[23,27,["H2022"]],[27,29,["H7264"]],[29,32,["H5038"]],[32,34,["H1961","H5478"]],[34,37,["H7130"]],[37,40,["H2351"]],[40,42,["H3605"]],[42,43,["H2063"]],[43,45,["H639"]],[45,47,["H3808"]],[47,49,["H7725"]],[49,52,["H3027"]],[52,55,["H5186"]],[55,56,["H5750"]]]},{"k":17765,"v":[[0,5,["H5375"]],[5,7,["H5251"]],[7,10,["H1471"]],[10,12,["H4480","H7350"]],[12,15,["H8319"]],[15,20,["H4480","H7097"]],[20,23,["H776"]],[23,25,["H2009"]],[25,28,["H935"]],[28,30,["H4120"]],[30,31,["H7031"]]]},{"k":17766,"v":[[0,1,["H369"]],[1,4,["H5889"]],[4,5,["H369"]],[5,6,["H3782"]],[6,9,["H3808"]],[9,11,["H5123"]],[11,12,["H3808"]],[12,13,["H3462"]],[13,14,["H3808"]],[14,17,["H232"]],[17,20,["H2504"]],[20,22,["H6605"]],[22,23,["H3808"]],[23,25,["H8288"]],[25,28,["H5275"]],[28,30,["H5423"]]]},{"k":17767,"v":[[0,1,["H834"]],[1,2,["H2671"]],[2,4,["H8150"]],[4,6,["H3605"]],[6,8,["H7198"]],[8,9,["H1869"]],[9,11,["H5483"]],[11,12,["H6541"]],[12,15,["H2803"]],[15,17,["H6864"]],[17,20,["H1534"]],[20,23,["H5492"]]]},{"k":17768,"v":[[0,2,["H7581"]],[2,7,["H3833"]],[7,10,["H7580"]],[10,13,["H3715"]],[13,17,["H5098"]],[17,20,["H270"]],[20,23,["H2964"]],[23,29,["H6403"]],[29,31,["H369"]],[31,33,["H5337"]],[33,34,[]]]},{"k":17769,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,7,["H5098"]],[7,8,["H5921"]],[8,12,["H5100"]],[12,15,["H3220"]],[15,19,["H5027"]],[19,22,["H776"]],[22,23,["H2009"]],[23,24,["H2822"]],[24,26,["H6862"]],[26,29,["H216"]],[29,31,["H2821"]],[31,34,["H6183"]],[34,35,[]]]},{"k":17770,"v":[[0,3,["H8141"]],[3,5,["H4428"]],[5,6,["H5818"]],[6,7,["H4194"]],[7,9,["H7200"]],[9,10,["(H853)"]],[10,12,["H136"]],[12,13,["H3427"]],[13,14,["H5921"]],[14,16,["H3678"]],[16,17,["H7311"]],[17,20,["H5375"]],[20,23,["H7757"]],[23,24,["H4390","(H853)"]],[24,26,["H1964"]]]},{"k":17771,"v":[[0,1,["H4480","H4605"]],[1,3,["H5975"]],[3,5,["H8314"]],[5,7,["H259"]],[7,10,["H8337","H3671","H8337","H3671"]],[10,12,["H8147"]],[12,14,["H3680"]],[14,16,["H6440"]],[16,19,["H8147"]],[19,21,["H3680"]],[21,23,["H7272"]],[23,26,["H8147"]],[26,29,["H5774"]]]},{"k":17772,"v":[[0,3,["H7121"]],[3,4,["H413","(H2088)"]],[4,5,["H2088"]],[5,7,["H559"]],[7,8,["H6918"]],[8,9,["H6918"]],[9,10,["H6918"]],[10,13,["H3068"]],[13,15,["H6635"]],[15,17,["H3605"]],[17,18,["H776"]],[18,20,["H4393"]],[20,23,["H3519"]]]},{"k":17773,"v":[[0,3,["H520"]],[3,6,["H5592"]],[6,7,["H5128"]],[7,10,["H4480","H6963"]],[10,14,["H7121"]],[14,17,["H1004"]],[17,19,["H4390"]],[19,21,["H6227"]]]},{"k":17774,"v":[[0,2,["H559"]],[2,4,["H188"]],[4,7,["H3588"]],[7,10,["H1820"]],[10,11,["H3588"]],[11,12,["H589"]],[12,15,["H376"]],[15,17,["H2931"]],[17,18,["H8193"]],[18,20,["H589"]],[20,21,["H3427"]],[21,24,["H8432"]],[24,27,["H5971"]],[27,29,["H2931"]],[29,30,["H8193"]],[30,31,["H3588"]],[31,33,["H5869"]],[33,35,["H7200","(H853)"]],[35,37,["H4428"]],[37,39,["H3068"]],[39,41,["H6635"]]]},{"k":17775,"v":[[0,2,["H5774"]],[2,3,["H259"]],[3,4,["H4480"]],[4,6,["H8314"]],[6,7,["H413"]],[7,12,["H7531"]],[12,15,["H3027"]],[15,19,["H3947"]],[19,22,["H4457"]],[22,24,["H4480","H5921"]],[24,26,["H4196"]]]},{"k":17776,"v":[[0,3,["H5060"]],[3,5,["H5921"]],[5,7,["H6310"]],[7,9,["H559"]],[9,10,["H2009"]],[10,11,["H2088"]],[11,13,["H5060","H5921"]],[13,15,["H8193"]],[15,18,["H5771"]],[18,21,["H5493"]],[21,24,["H2403"]],[24,25,["H3722"]]]},{"k":17777,"v":[[0,3,["H8085","(H853)"]],[3,5,["H6963"]],[5,8,["H136"]],[8,9,["H559","(H853)"]],[9,10,["H4310"]],[10,13,["H7971"]],[13,15,["H4310"]],[15,17,["H1980"]],[17,21,["H559"]],[21,25,["H2009"]],[25,26,["H7971"]],[26,27,[]]]},{"k":17778,"v":[[0,3,["H559"]],[3,4,["H1980"]],[4,6,["H559"]],[6,7,["H2088"]],[7,8,["H5971"]],[8,11,["H8085","H8085"]],[11,13,["H995"]],[13,14,["H408"]],[14,18,["H7200","H7200"]],[18,20,["H3045"]],[20,21,["H3808"]]]},{"k":17779,"v":[[0,3,["H3820"]],[3,5,["H2088"]],[5,6,["H5971"]],[6,7,["H8082"]],[7,11,["H241"]],[11,12,["H3513"]],[12,14,["H8173"]],[14,16,["H5869"]],[16,17,["H6435"]],[17,19,["H7200"]],[19,22,["H5869"]],[22,24,["H8085"]],[24,27,["H241"]],[27,29,["H995"]],[29,32,["H3824"]],[32,34,["H7725"]],[34,37,["H7495"]]]},{"k":17780,"v":[[0,2,["H559"]],[2,4,["H136"]],[4,6,["H5704","H4970"]],[6,9,["H559"]],[9,10,["H5704","H834"]],[10,12,["H5892"]],[12,14,["H7582"]],[14,15,["H4480","H369"]],[15,16,["H3427"]],[16,19,["H1004"]],[19,20,["H4480","H369"]],[20,21,["H120"]],[21,24,["H127"]],[24,26,["H8077"]],[26,27,["H7582"]]]},{"k":17781,"v":[[0,3,["H3068"]],[3,8,["H7368","(H853)","H120"]],[8,13,["H7227"]],[13,14,["H5805"]],[14,17,["H7130"]],[17,20,["H776"]]]},{"k":17782,"v":[[0,2,["H5750"]],[2,8,["H6224"]],[8,12,["H7725"]],[12,15,["H1961"]],[15,16,["H1197"]],[16,20,["H424"]],[20,24,["H437"]],[24,25,["H834"]],[25,26,["H4678"]],[26,32,["H7995"]],[32,37,["H6944"]],[37,38,["H2233"]],[38,42,["H4678"]],[42,43,[]]]},{"k":17783,"v":[[0,5,["H1961"]],[5,8,["H3117"]],[8,10,["H271"]],[10,12,["H1121"]],[12,14,["H3147"]],[14,16,["H1121"]],[16,18,["H5818"]],[18,19,["H4428"]],[19,21,["H3063"]],[21,23,["H7526"]],[23,25,["H4428"]],[25,27,["H758"]],[27,29,["H6492"]],[29,31,["H1121"]],[31,33,["H7425"]],[33,34,["H4428"]],[34,36,["H3478"]],[36,38,["H5927"]],[38,40,["H3389"]],[40,42,["H4421"]],[42,43,["H5921"]],[43,46,["H3201"]],[46,47,["H3808"]],[47,48,["H3898"]],[48,49,["H5921"]],[49,50,[]]]},{"k":17784,"v":[[0,4,["H5046"]],[4,6,["H1004"]],[6,8,["H1732"]],[8,9,["H559"]],[9,10,["H758"]],[10,12,["H5117"]],[12,13,["H5921"]],[13,14,["H669"]],[14,17,["H3824"]],[17,19,["H5128"]],[19,22,["H3824"]],[22,25,["H5971"]],[25,28,["H6086"]],[28,31,["H3293"]],[31,33,["H5128"]],[33,34,["H4480","H6440"]],[34,36,["H7307"]]]},{"k":17785,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,6,["H3470"]],[6,8,["H3318"]],[8,9,["H4994"]],[9,11,["H7121"]],[11,12,["H271"]],[12,13,["H859"]],[13,15,["H7610"]],[15,17,["H1121"]],[17,18,["H413"]],[18,20,["H7097"]],[20,23,["H8585"]],[23,26,["H5945"]],[26,27,["H1295"]],[27,28,["H413"]],[28,30,["H4546"]],[30,33,["H3526"]],[33,34,["H7704"]]]},{"k":17786,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,6,["H8104"]],[6,9,["H8252"]],[9,10,["H3372"]],[10,11,["H408"]],[11,12,["H408"]],[12,14,["H7401","H3824"]],[14,17,["H4480","H8147"]],[17,18,["H2180"]],[18,20,["H428"]],[20,21,["H6226"]],[21,22,["H181"]],[22,25,["H2750"]],[25,26,["H639"]],[26,28,["H7526"]],[28,30,["H758"]],[30,34,["H1121"]],[34,36,["H7425"]]]},{"k":17787,"v":[[0,1,["H3282","H3588"]],[1,2,["H758"]],[2,3,["H669"]],[3,6,["H1121"]],[6,8,["H7425"]],[8,11,["H7451"]],[11,12,["H3289"]],[12,13,["H5921"]],[13,15,["H559"]]]},{"k":17788,"v":[[0,4,["H5927"]],[4,6,["H3063"]],[6,8,["H6972"]],[8,15,["H1234"]],[15,17,["H413"]],[17,22,["H4427","H4428"]],[22,25,["H8432"]],[25,28,["(H853)"]],[28,30,["H1121"]],[30,32,["H2870"]]]},{"k":17789,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,8,["H3808"]],[8,9,["H6965"]],[9,10,["H3808"]],[10,15,["H1961"]]]},{"k":17790,"v":[[0,1,["H3588"]],[1,3,["H7218"]],[3,5,["H758"]],[5,7,["H1834"]],[7,10,["H7218"]],[10,12,["H1834"]],[12,14,["H7526"]],[14,16,["H5750"]],[16,17,["H8346"]],[17,19,["H2568"]],[19,20,["H8141"]],[20,22,["H669"]],[22,24,["H2844"]],[24,30,["H4480","H5971"]]]},{"k":17791,"v":[[0,3,["H7218"]],[3,5,["H669"]],[5,7,["H8111"]],[7,10,["H7218"]],[10,12,["H8111"]],[12,14,["H7425"]],[14,15,["H1121"]],[15,16,["H518"]],[16,19,["H3808"]],[19,20,["H539"]],[20,21,["H3588"]],[21,24,["H3808"]],[24,26,["H539"]]]},{"k":17792,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H3254"]],[5,6,["H413"]],[6,7,["H271"]],[7,8,["H559"]]]},{"k":17793,"v":[[0,1,["H7592"]],[1,4,["H226"]],[4,5,["H4480","H5973"]],[5,7,["H3068"]],[7,9,["H430"]],[9,10,["H7592"]],[10,15,["H6009"]],[15,16,["H176"]],[16,19,["H1361"]],[19,20,["H4605"]]]},{"k":17794,"v":[[0,2,["H271"]],[2,3,["H559"]],[3,6,["H3808"]],[6,7,["H7592"]],[7,8,["H3808"]],[8,11,["H5254","(H853)"]],[11,13,["H3068"]]]},{"k":17795,"v":[[0,3,["H559"]],[3,4,["H8085"]],[4,6,["H4994"]],[6,8,["H1004"]],[8,10,["H1732"]],[10,15,["H4592"]],[15,16,["H4480"]],[16,19,["H3811"]],[19,20,["H376"]],[20,21,["H3588"]],[21,24,["H3811","(H853)"]],[24,26,["H430"]],[26,27,["H1571"]]]},{"k":17796,"v":[[0,1,["H3651"]],[1,3,["H136"]],[3,4,["H1931"]],[4,6,["H5414"]],[6,9,["H226"]],[9,10,["H2009"]],[10,12,["H5959"]],[12,14,["H2029"]],[14,16,["H3205"]],[16,18,["H1121"]],[18,21,["H7121"]],[21,23,["H8034"]],[23,24,["H6005"]]]},{"k":17797,"v":[[0,1,["H2529"]],[1,3,["H1706"]],[3,6,["H398"]],[6,10,["H3045"]],[10,12,["H3988"]],[12,14,["H7451"]],[14,16,["H977"]],[16,18,["H2896"]]]},{"k":17798,"v":[[0,1,["H3588"]],[1,2,["H2962"]],[2,4,["H5288"]],[4,6,["H3045"]],[6,8,["H3988"]],[8,10,["H7451"]],[10,12,["H977"]],[12,14,["H2896"]],[14,16,["H127"]],[16,17,["H834"]],[17,18,["H859"]],[18,19,["H6973"]],[19,22,["H5800"]],[22,24,["H8147"]],[24,26,["H4428"]]]},{"k":17799,"v":[[0,2,["H3068"]],[2,4,["H935"]],[4,5,["H5921"]],[5,8,["H5921"]],[8,10,["H5971"]],[10,12,["H5921"]],[12,14,["H1"]],[14,15,["H1004"]],[15,16,["H3117"]],[16,17,["H834"]],[17,19,["H3808"]],[19,20,["H935"]],[20,23,["H4480","H3117"]],[23,25,["H669"]],[25,26,["H5493"]],[26,27,["H4480","H5921"]],[27,28,["H3063"]],[28,29,["(H853)"]],[29,31,["H4428"]],[31,33,["H804"]]]},{"k":17800,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H3068"]],[12,14,["H8319"]],[14,17,["H2070"]],[17,18,["H834"]],[18,23,["H7097"]],[23,26,["H2975"]],[26,28,["H4714"]],[28,32,["H1682"]],[32,33,["H834"]],[33,37,["H776"]],[37,39,["H804"]]]},{"k":17801,"v":[[0,4,["H935"]],[4,7,["H5117"]],[7,8,["H3605"]],[8,13,["H1327"]],[13,14,["H5158"]],[14,18,["H5357"]],[18,21,["H5553"]],[21,24,["H3605"]],[24,25,["H5285"]],[25,28,["H3605"]],[28,29,["H5097"]]]},{"k":17802,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,7,["H136"]],[7,8,["H1548"]],[8,11,["H8593"]],[11,14,["H7917"]],[14,18,["H5676"]],[18,20,["H5104"]],[20,23,["H4428"]],[23,25,["H804","(H853)"]],[25,27,["H7218"]],[27,30,["H8181"]],[30,33,["H7272"]],[33,37,["H1571"]],[37,38,["H5595","(H853)"]],[38,40,["H2206"]]]},{"k":17803,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H376"]],[12,14,["H2421"]],[14,16,["H1241"]],[16,17,["H5697"]],[17,19,["H8147"]],[19,20,["H6629"]]]},{"k":17804,"v":[[0,6,["H1961"]],[6,9,["H4480","H7230"]],[9,11,["H2461"]],[11,15,["H6213"]],[15,18,["H398"]],[18,19,["H2529"]],[19,20,["H3588"]],[20,21,["H2529"]],[21,23,["H1706"]],[23,26,["H3605"]],[26,27,["H398"]],[27,30,["H3498"]],[30,33,["H776"]]]},{"k":17805,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,11,["H3605"]],[11,12,["H4725"]],[12,14,["H1961"]],[14,15,["H8033"]],[15,17,["H1961"]],[17,19,["H505"]],[19,20,["H1612"]],[20,23,["H505"]],[23,24,["H3701"]],[24,28,["H1961"]],[28,30,["H8068"]],[30,32,["H7898"]]]},{"k":17806,"v":[[0,2,["H2671"]],[2,5,["H7198"]],[5,8,["H935"]],[8,9,["H8033"]],[9,10,["H3588"]],[10,11,["H3605"]],[11,13,["H776"]],[13,15,["H1961"]],[15,16,["H8068"]],[16,18,["H7898"]]]},{"k":17807,"v":[[0,3,["H3605"]],[3,4,["H2022"]],[4,5,["H834"]],[5,8,["H5737"]],[8,11,["H4576"]],[11,14,["H3808"]],[14,15,["H935"]],[15,16,["H8033"]],[16,18,["H3374"]],[18,20,["H8068"]],[20,22,["H7898"]],[22,26,["H1961"]],[26,30,["H4916"]],[30,32,["H7794"]],[32,36,["H4823"]],[36,39,["H7716"]]]},{"k":17808,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H3947"]],[7,10,["H1419"]],[10,11,["H1549"]],[11,13,["H3789"]],[13,14,["H5921"]],[14,18,["H582"]],[18,19,["H2747"]],[19,21,["H4122"]]]},{"k":17809,"v":[[0,6,["H539"]],[6,7,["H5707"]],[7,9,["H5749","(H853)"]],[9,10,["H223"]],[10,12,["H3548"]],[12,14,["H2148"]],[14,16,["H1121"]],[16,18,["H3000"]]]},{"k":17810,"v":[[0,3,["H7126"]],[3,4,["H413"]],[4,6,["H5031"]],[6,9,["H2029"]],[9,11,["H3205"]],[11,13,["H1121"]],[13,15,["H559"]],[15,17,["H3068"]],[17,18,["H413"]],[18,20,["H7121"]],[20,22,["H8034"]],[22,23,["H4122"]]]},{"k":17811,"v":[[0,1,["H3588"]],[1,2,["H2962"]],[2,4,["H5288"]],[4,7,["H3045"]],[7,9,["H7121"]],[9,11,["H1"]],[11,14,["H517","(H853)"]],[14,16,["H2428"]],[16,18,["H1834"]],[18,21,["H7998"]],[21,23,["H8111"]],[23,27,["H5375"]],[27,28,["H6440"]],[28,30,["H4428"]],[30,32,["H804"]]]},{"k":17812,"v":[[0,2,["H3068"]],[2,3,["H1696"]],[3,5,["H413"]],[5,7,["H3254"]],[7,8,["H559"]]]},{"k":17813,"v":[[0,1,["H3282","H3588"]],[1,3,["H2088"]],[3,4,["H5971"]],[4,5,["H3988","(H853)"]],[5,7,["H4325"]],[7,9,["H7975"]],[9,11,["H1980"]],[11,12,["H328"]],[12,15,["H4885","(H853)"]],[15,16,["H7526"]],[16,18,["H7425"]],[18,19,["H1121"]]]},{"k":17814,"v":[[0,2,["H3651"]],[2,3,["H2009"]],[3,5,["H136"]],[5,7,["H5927"]],[7,8,["H5921"]],[8,9,["(H853)"]],[9,11,["H4325"]],[11,14,["H5104"]],[14,15,["H6099"]],[15,17,["H7227"]],[17,18,["(H853)"]],[18,20,["H4428"]],[20,22,["H804"]],[22,24,["H3605"]],[24,26,["H3519"]],[26,31,["H5927"]],[31,32,["H5921"]],[32,33,["H3605"]],[33,35,["H650"]],[35,37,["H1980"]],[37,38,["H5921"]],[38,39,["H3605"]],[39,41,["H1415"]]]},{"k":17815,"v":[[0,4,["H2498"]],[4,6,["H3063"]],[6,9,["H7857"]],[9,12,["H5674"]],[12,15,["H5060"]],[15,17,["H5704"]],[17,19,["H6677"]],[19,23,["H4298"]],[23,26,["H3671"]],[26,28,["H4393"]],[28,30,["H7341"]],[30,33,["H776"]],[33,35,["H6005"]]]},{"k":17816,"v":[[0,1,["H7489"]],[1,5,["H5971"]],[5,10,["H2844"]],[10,15,["H238"]],[15,16,["H3605"]],[16,19,["H4801"]],[19,20,["H776"]],[20,22,["H247"]],[22,27,["H2844"]],[27,31,["H247"]],[31,36,["H2844"]],[36,38,[]]]},{"k":17817,"v":[[0,3,["H5779","H6098"]],[3,9,["H6565"]],[9,10,["H1696"]],[10,12,["H1697"]],[12,16,["H3808"]],[16,17,["H6965"]],[17,18,["H3588"]],[18,19,["H410"]],[19,22,["H5973"]]]},{"k":17818,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,4,["H559"]],[4,5,["H3541"]],[5,6,["H413"]],[6,10,["H2393"]],[10,11,["H3027"]],[11,13,["H3256"]],[13,19,["H4480","H1980"]],[19,22,["H1870"]],[22,24,["H2088"]],[24,25,["H5971"]],[25,26,["H559"]]]},{"k":17819,"v":[[0,1,["H559"]],[1,3,["H3808"]],[3,5,["H7195"]],[5,7,["H3605"]],[7,10,["H834"]],[10,11,["H2088"]],[11,12,["H5971"]],[12,14,["H559"]],[14,16,["H7195"]],[16,17,["H3808"]],[17,18,["H3372"]],[18,21,["H4172"]],[21,22,["H3808"]],[22,24,["H6206"]]]},{"k":17820,"v":[[0,1,["H6942","(H853)"]],[1,3,["H3068"]],[3,5,["H6635"]],[5,9,["H1931"]],[9,12,["H4172"]],[12,15,["H1931"]],[15,18,["H6206"]]]},{"k":17821,"v":[[0,4,["H1961"]],[4,7,["H4720"]],[7,11,["H68"]],[11,13,["H5063"]],[13,17,["H6697"]],[17,19,["H4383"]],[19,21,["H8147"]],[21,23,["H1004"]],[23,25,["H3478"]],[25,28,["H6341"]],[28,32,["H4170"]],[32,35,["H3427"]],[35,37,["H3389"]]]},{"k":17822,"v":[[0,2,["H7227"]],[2,6,["H3782"]],[6,8,["H5307"]],[8,11,["H7665"]],[11,14,["H3369"]],[14,17,["H3920"]]]},{"k":17823,"v":[[0,2,["H6887"]],[2,4,["H8584"]],[4,5,["H2856"]],[5,7,["H8451"]],[7,10,["H3928"]]]},{"k":17824,"v":[[0,4,["H2442"]],[4,7,["H3068"]],[7,9,["H5641"]],[9,11,["H6440"]],[11,14,["H4480","H1004"]],[14,16,["H3290"]],[16,20,["H6960"]],[20,22,[]]]},{"k":17825,"v":[[0,1,["H2009"]],[1,2,["H595"]],[2,5,["H3206"]],[5,6,["H834"]],[6,8,["H3068"]],[8,10,["H5414"]],[10,14,["H226"]],[14,17,["H4159"]],[17,19,["H3478"]],[19,20,["H4480","H5973"]],[20,22,["H3068"]],[22,24,["H6635"]],[24,26,["H7931"]],[26,28,["H2022"]],[28,29,["H6726"]]]},{"k":17826,"v":[[0,2,["H3588"]],[2,5,["H559"]],[5,6,["H413"]],[6,8,["H1875"]],[8,9,["H413"]],[9,14,["H178"]],[14,16,["H413"]],[16,17,["H3049"]],[17,19,["H6850"]],[19,22,["H1897"]],[22,24,["H3808"]],[24,26,["H5971"]],[26,27,["H1875"]],[27,28,["H413"]],[28,30,["H430"]],[30,31,["H1157"]],[31,33,["H2416"]],[33,34,["H413"]],[34,36,["H4191"]]]},{"k":17827,"v":[[0,3,["H8451"]],[3,7,["H8584"]],[7,8,["H518"]],[8,10,["H559"]],[10,11,["H3808"]],[11,14,["H2088"]],[14,15,["H1697"]],[15,18,["H834"]],[18,21,["H369"]],[21,22,["H7837"]],[22,24,[]]]},{"k":17828,"v":[[0,4,["H5674"]],[4,8,["H7185"]],[8,10,["H745"]],[10,16,["H1961"]],[16,18,["H3588"]],[18,22,["H7456"]],[22,26,["H7107"]],[26,28,["H7043"]],[28,30,["H4428"]],[30,33,["H430"]],[33,35,["H6437"]],[35,36,["H4605"]]]},{"k":17829,"v":[[0,4,["H5027"]],[4,5,["H413"]],[5,7,["H776"]],[7,9,["H2009"]],[9,10,["H6869"]],[10,12,["H2825"]],[12,13,["H4588"]],[13,15,["H6695"]],[15,20,["H5080"]],[20,22,["H653"]]]},{"k":17830,"v":[[0,1,["H3588"]],[1,3,["H4155"]],[3,5,["H3808"]],[5,8,["H834"]],[8,12,["H4164"]],[12,13,["H6256"]],[13,16,["H7223"]],[16,19,["H7043"]],[19,21,["H776"]],[21,23,["H2074"]],[23,26,["H776"]],[26,28,["H5321"]],[28,30,["H314"]],[30,34,["H3513"]],[34,38,["H1870"]],[38,41,["H3220"]],[41,42,["H5676"]],[42,43,["H3383"]],[43,45,["H1551"]],[45,48,["H1471"]]]},{"k":17831,"v":[[0,2,["H5971"]],[2,4,["H1980"]],[4,6,["H2822"]],[6,8,["H7200"]],[8,10,["H1419"]],[10,11,["H216"]],[11,14,["H3427"]],[14,17,["H776"]],[17,22,["H6757"]],[22,23,["H5921"]],[23,27,["H216"]],[27,28,["H5050"]]]},{"k":17832,"v":[[0,3,["H7235"]],[3,5,["H1471"]],[5,7,["H3808"]],[7,8,["H1431"]],[8,10,["H8057"]],[10,12,["H8055"]],[12,13,["H6440"]],[13,18,["H8057"]],[18,20,["H7105"]],[20,22,["H834"]],[22,24,["H1523"]],[24,27,["H2505"]],[27,29,["H7998"]]]},{"k":17833,"v":[[0,1,["H3588"]],[1,4,["H2865","(H853)"]],[4,6,["H5923"]],[6,9,["H5448"]],[9,12,["H4294"]],[12,15,["H7926"]],[15,17,["H7626"]],[17,20,["H5065"]],[20,24,["H3117"]],[24,26,["H4080"]]]},{"k":17834,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,3,["H5430"]],[3,6,["H5431"]],[6,10,["H7494"]],[10,12,["H8071"]],[12,13,["H1556"]],[13,15,["H1818"]],[15,19,["H1961"]],[19,21,["H8316"]],[21,23,["H3980"]],[23,25,["H784"]]]},{"k":17835,"v":[[0,1,["H3588"]],[1,5,["H3206"]],[5,7,["H3205"]],[7,11,["H1121"]],[11,13,["H5414"]],[13,16,["H4951"]],[16,19,["H5921"]],[19,21,["H7926"]],[21,24,["H8034"]],[24,26,["H1961"]],[26,27,["H7121"]],[27,28,["H6382"]],[28,29,["H3289"]],[29,31,["H1368"]],[31,32,["H410"]],[32,34,["H5703"]],[34,35,["H1"]],[35,37,["H8269"]],[37,39,["H7965"]]]},{"k":17836,"v":[[0,3,["H4766"]],[3,6,["H4951"]],[6,8,["H7965"]],[8,12,["H369"]],[12,13,["H7093"]],[13,14,["H5921"]],[14,16,["H3678"]],[16,18,["H1732"]],[18,20,["H5921"]],[20,22,["H4467"]],[22,24,["H3559"]],[24,28,["H5582"]],[28,31,["H4941"]],[31,34,["H6666"]],[34,36,["H4480","H6258"]],[36,39,["H5704","H5769"]],[39,41,["H7068"]],[41,44,["H3068"]],[44,46,["H6635"]],[46,48,["H6213"]],[48,49,["H2063"]]]},{"k":17837,"v":[[0,2,["H136"]],[2,3,["H7971"]],[3,5,["H1697"]],[5,7,["H3290"]],[7,11,["H5307"]],[11,13,["H3478"]]]},{"k":17838,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H3045"]],[6,8,["H669"]],[8,11,["H3427"]],[11,13,["H8111"]],[13,15,["H559"]],[15,18,["H1346"]],[18,20,["H1433"]],[20,22,["H3824"]]]},{"k":17839,"v":[[0,2,["H3843"]],[2,5,["H5307"]],[5,9,["H1129"]],[9,12,["H1496"]],[12,14,["H8256"]],[14,17,["H1438"]],[17,21,["H2498"]],[21,24,["H730"]]]},{"k":17840,"v":[[0,3,["H3068"]],[3,6,["H7682","(H853)"]],[6,8,["H6862"]],[8,10,["H7526"]],[10,11,["H5921"]],[11,17,["H5526","(H853)","H341"]]]},{"k":17841,"v":[[0,2,["H758"]],[2,3,["H4480","H6924"]],[3,6,["H6430"]],[6,7,["H4480","H268"]],[7,11,["H398","(H853)"]],[11,12,["H3478"]],[12,14,["H3605"]],[14,15,["H6310"]],[15,17,["H3605"]],[17,18,["H2063"]],[18,20,["H639"]],[20,22,["H3808"]],[22,24,["H7725"]],[24,27,["H3027"]],[27,30,["H5186"]],[30,31,["H5750"]]]},{"k":17842,"v":[[0,3,["H5971"]],[3,4,["H7725"]],[4,5,["H3808"]],[5,6,["H5704"]],[6,9,["H5221"]],[9,11,["H3808"]],[11,14,["H1875"]],[14,16,["H3068"]],[16,18,["H6635"]]]},{"k":17843,"v":[[0,3,["H3068"]],[3,6,["H3772"]],[6,8,["H4480","H3478"]],[8,9,["H7218"]],[9,11,["H2180"]],[11,12,["H3712"]],[12,14,["H100"]],[14,16,["H259"]],[16,17,["H3117"]]]},{"k":17844,"v":[[0,2,["H2205"]],[2,4,["H5375","H6440"]],[4,5,["H1931"]],[5,8,["H7218"]],[8,11,["H5030"]],[11,13,["H3384"]],[13,14,["H8267"]],[14,15,["H1931"]],[15,18,["H2180"]]]},{"k":17845,"v":[[0,3,["H833"]],[3,5,["H2088"]],[5,6,["H5971"]],[6,10,["H8582"]],[10,15,["H833"]],[15,19,["H1104"]]]},{"k":17846,"v":[[0,1,["H5921","H3651"]],[1,3,["H136"]],[3,6,["H3808"]],[6,7,["H8055"]],[7,8,["H5921"]],[8,11,["H970"]],[11,12,["H3808"]],[12,15,["H7355"]],[15,18,["H3490"]],[18,20,["H490"]],[20,21,["H3588"]],[21,23,["H3605"]],[23,26,["H2611"]],[26,29,["H7489"]],[29,31,["H3605"]],[31,32,["H6310"]],[32,33,["H1696"]],[33,34,["H5039"]],[34,36,["H3605"]],[36,37,["H2063"]],[37,39,["H639"]],[39,41,["H3808"]],[41,43,["H7725"]],[43,46,["H3027"]],[46,49,["H5186"]],[49,50,["H5750"]]]},{"k":17847,"v":[[0,1,["H3588"]],[1,2,["H7564"]],[2,3,["H1197"]],[3,6,["H784"]],[6,9,["H398"]],[9,11,["H8068"]],[11,13,["H7898"]],[13,16,["H3341"]],[16,19,["H5442"]],[19,22,["H3293"]],[22,27,["H55"]],[27,31,["H1348"]],[31,33,["H6227"]]]},{"k":17848,"v":[[0,3,["H5678"]],[3,6,["H3068"]],[6,8,["H6635"]],[8,11,["H776"]],[11,12,["H6272"]],[12,15,["H5971"]],[15,17,["H1961"]],[17,20,["H3980"]],[20,23,["H784"]],[23,24,["H3808"]],[24,25,["H376"]],[25,27,["H2550","H413"]],[27,29,["H251"]]]},{"k":17849,"v":[[0,4,["H1504"]],[4,5,["H5921"]],[5,8,["H3225"]],[8,11,["H7456"]],[11,15,["H398"]],[15,16,["H5921"]],[16,19,["H8040"]],[19,23,["H3808"]],[23,25,["H7646"]],[25,28,["H398"]],[28,30,["H376"]],[30,32,["H1320"]],[32,36,["H2220"]]]},{"k":17850,"v":[[0,1,["H4519","(H853)"]],[1,2,["H669"]],[2,4,["H669","(H853)"]],[4,5,["H4519"]],[5,7,["H1992"]],[7,8,["H3162"]],[8,11,["H5921"]],[11,12,["H3063"]],[12,14,["H3605"]],[14,15,["H2063"]],[15,17,["H639"]],[17,19,["H3808"]],[19,21,["H7725"]],[21,24,["H3027"]],[24,27,["H5186"]],[27,28,["H5750"]]]},{"k":17851,"v":[[0,1,["H1945"]],[1,5,["H2710"]],[5,6,["H205"]],[6,7,["H2711"]],[7,10,["H3789"]],[10,11,["H5999"]],[11,15,["H3789"]]]},{"k":17852,"v":[[0,3,["H5186"]],[3,5,["H1800"]],[5,7,["H4480","H1779"]],[7,11,["H1497"]],[11,13,["H4941"]],[13,16,["H6041"]],[16,19,["H5971"]],[19,21,["H490"]],[21,23,["H1961"]],[23,25,["H7998"]],[25,30,["H962"]],[30,32,["H3490"]]]},{"k":17853,"v":[[0,2,["H4100"]],[2,5,["H6213"]],[5,8,["H3117"]],[8,10,["H6486"]],[10,14,["H7722"]],[14,17,["H935"]],[17,19,["H4480","H4801"]],[19,20,["H5921"]],[20,21,["H4310"]],[21,24,["H5127"]],[24,26,["H5833"]],[26,28,["H575"]],[28,31,["H5800"]],[31,33,["H3519"]]]},{"k":17854,"v":[[0,1,["H1115"]],[1,6,["H3766"]],[6,7,["H8478"]],[7,9,["H616"]],[9,13,["H5307"]],[13,14,["H8478"]],[14,16,["H2026"]],[16,18,["H3605"]],[18,19,["H2063"]],[19,21,["H639"]],[21,23,["H3808"]],[23,25,["H7725"]],[25,28,["H3027"]],[28,31,["H5186"]],[31,32,["H5750"]]]},{"k":17855,"v":[[0,2,["H804"]],[2,4,["H7626"]],[4,7,["H639"]],[7,10,["H4294"]],[10,13,["H3027"]],[13,16,["H2195"]]]},{"k":17856,"v":[[0,3,["H7971"]],[3,7,["H2611"]],[7,8,["H1471"]],[8,10,["H5921"]],[10,12,["H5971"]],[12,15,["H5678"]],[15,21,["H6680"]],[21,23,["H7997"]],[23,25,["H7998"]],[25,28,["H962"]],[28,30,["H957"]],[30,35,["H4823"]],[35,38,["H2563"]],[38,41,["H2351"]]]},{"k":17857,"v":[[0,2,["H1931"]],[2,3,["H1819"]],[3,4,["H3808"]],[4,5,["H3651"]],[5,6,["H3808"]],[6,9,["H3824"]],[9,10,["H2803"]],[10,11,["H3651"]],[11,12,["H3588"]],[12,17,["H3824"]],[17,19,["H8045"]],[19,22,["H3772"]],[22,23,["H1471"]],[23,24,["H3808"]],[24,26,["H4592"]]]},{"k":17858,"v":[[0,1,["H3588"]],[1,3,["H559"]],[3,5,["H3808"]],[5,7,["H8269"]],[7,8,["H3162"]],[8,9,["H4428"]]]},{"k":17859,"v":[[0,2,["H3808"]],[2,3,["H3641"]],[3,5,["H3751"]],[5,7,["H3808"]],[7,8,["H2574"]],[8,10,["H774"]],[10,12,["H3808"]],[12,13,["H8111"]],[13,15,["H1834"]]]},{"k":17860,"v":[[0,1,["H834"]],[1,3,["H3027"]],[3,5,["H4672"]],[5,7,["H4467"]],[7,10,["H457"]],[10,14,["H6456"]],[14,19,["H4480","H3389"]],[19,22,["H4480","H8111"]]]},{"k":17861,"v":[[0,3,["H3808"]],[3,4,["H834"]],[4,7,["H6213"]],[7,9,["H8111"]],[9,12,["H457"]],[12,13,["H3651"]],[13,14,["H6213"]],[14,16,["H3389"]],[16,19,["H6091"]]]},{"k":17862,"v":[[0,6,["H1961"]],[6,8,["H3588"]],[8,10,["H136"]],[10,12,["H1214"]],[12,13,["(H853)"]],[13,14,["H3605"]],[14,15,["H4639"]],[15,17,["H2022"]],[17,18,["H6726"]],[18,21,["H3389"]],[21,24,["H6485","H5921"]],[24,26,["H6529"]],[26,29,["H1433"]],[29,30,["H3824"]],[30,33,["H4428"]],[33,35,["H804"]],[35,36,["H5921"]],[36,38,["H8597"]],[38,41,["H7312"]],[41,42,["H5869"]]]},{"k":17863,"v":[[0,1,["H3588"]],[1,3,["H559"]],[3,6,["H3581"]],[6,9,["H3027"]],[9,12,["H6213"]],[12,17,["H2451"]],[17,18,["H3588"]],[18,21,["H995"]],[21,25,["H5493"]],[25,27,["H1367"]],[27,30,["H5971"]],[30,33,["H8154"]],[33,35,["H6259"]],[35,40,["H3381"]],[40,42,["H3427"]],[42,45,["H47"]],[45,46,[]]]},{"k":17864,"v":[[0,3,["H3027"]],[3,5,["H4672"]],[5,8,["H7064"]],[8,10,["H2428"]],[10,13,["H5971"]],[13,17,["H622"]],[17,18,["H1000"]],[18,21,["H5800"]],[21,23,["H589"]],[23,24,["H622"]],[24,25,["H3605"]],[25,27,["H776"]],[27,30,["H1961"]],[30,31,["H3808"]],[31,33,["H5074"]],[33,35,["H3671"]],[35,37,["H6475"]],[37,39,["H6310"]],[39,41,["H6850"]]]},{"k":17865,"v":[[0,3,["H1631"]],[3,5,["H6286"]],[5,6,["H5921"]],[6,9,["H2672"]],[9,14,["H4883"]],[14,16,["H1431"]],[16,17,["H5921"]],[17,20,["H5130"]],[20,25,["H7626"]],[25,29,["H5130","(H853)"]],[29,34,["H7311"]],[34,39,["H4294"]],[39,42,["H7311"]],[42,48,["H3808"]],[48,49,["H6086"]]]},{"k":17866,"v":[[0,1,["H3651"]],[1,4,["H113"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,9,["H7971"]],[9,13,["H4924"]],[13,14,["H7332"]],[14,16,["H8478"]],[16,18,["H3519"]],[18,21,["H3344"]],[21,23,["H3350"]],[23,26,["H3350"]],[26,29,["H784"]]]},{"k":17867,"v":[[0,3,["H216"]],[3,5,["H3478"]],[5,7,["H1961"]],[7,10,["H784"]],[10,14,["H6918"]],[14,17,["H3852"]],[17,21,["H1197"]],[21,23,["H398"]],[23,25,["H7898"]],[25,28,["H8068"]],[28,30,["H259"]],[30,31,["H3117"]]]},{"k":17868,"v":[[0,3,["H3615"]],[3,5,["H3519"]],[5,8,["H3293"]],[8,13,["H3759"]],[13,15,["H4480","H5315"]],[15,17,["H1320"]],[17,21,["H1961"]],[21,25,["H5263"]],[25,26,["H4549"]]]},{"k":17869,"v":[[0,3,["H7605"]],[3,6,["H6086"]],[6,9,["H3293"]],[9,11,["H1961"]],[11,12,["H4557"]],[12,15,["H5288"]],[15,17,["H3789"]],[17,18,[]]]},{"k":17870,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H7605"]],[12,14,["H3478"]],[14,19,["H6413"]],[19,22,["H1004"]],[22,24,["H3290"]],[24,26,["H3808"]],[26,27,["H5750"]],[27,28,["H3254"]],[28,29,["H8172"]],[29,30,["H5921"]],[30,33,["H5221"]],[33,37,["H8172"]],[37,38,["H5921"]],[38,40,["H3068"]],[40,43,["H6918"]],[43,45,["H3478"]],[45,47,["H571"]]]},{"k":17871,"v":[[0,2,["H7605"]],[2,4,["H7725"]],[4,7,["H7605"]],[7,9,["H3290"]],[9,10,["H413"]],[10,12,["H1368"]],[12,13,["H410"]]]},{"k":17872,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,4,["H5971"]],[4,5,["H3478"]],[5,6,["H1961"]],[6,9,["H2344"]],[9,12,["H3220"]],[12,15,["H7605"]],[15,19,["H7725"]],[19,21,["H3631"]],[21,22,["H2782"]],[22,24,["H7857"]],[24,26,["H6666"]]]},{"k":17873,"v":[[0,1,["H3588"]],[1,3,["H136"]],[3,4,["H3069"]],[4,6,["H6635"]],[6,8,["H6213"]],[8,10,["H3617"]],[10,12,["H2782"]],[12,15,["H7130"]],[15,17,["H3605"]],[17,19,["H776"]]]},{"k":17874,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,8,["H6635"]],[8,11,["H5971"]],[11,13,["H3427"]],[13,15,["H6726"]],[15,17,["H408"]],[17,18,["H3372"]],[18,21,["H4480","H804"]],[21,24,["H5221"]],[24,28,["H7626"]],[28,32,["H5375"]],[32,34,["H4294"]],[34,35,["H5921"]],[35,39,["H1870"]],[39,41,["H4714"]]]},{"k":17875,"v":[[0,1,["H3588"]],[1,2,["H5750"]],[2,4,["H4213"]],[4,5,["H4592"]],[5,9,["H2195"]],[9,11,["H3615"]],[11,14,["H639"]],[14,15,["H5921"]],[15,17,["H8399"]]]},{"k":17876,"v":[[0,3,["H3068"]],[3,5,["H6635"]],[5,8,["H5782"]],[8,10,["H7752"]],[10,11,["H5921"]],[11,16,["H4347"]],[16,18,["H4080"]],[18,21,["H6697"]],[21,23,["H6159"]],[23,27,["H4294"]],[27,29,["H5921"]],[29,31,["H3220"]],[31,37,["H5375"]],[37,40,["H1870"]],[40,42,["H4714"]]]},{"k":17877,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H5448"]],[12,16,["H5493"]],[16,18,["H4480","H5921"]],[18,20,["H7926"]],[20,23,["H5923"]],[23,25,["H4480","H5921"]],[25,27,["H6677"]],[27,30,["H5923"]],[30,33,["H2254"]],[33,34,["H4480","H6440"]],[34,37,["H8081"]]]},{"k":17878,"v":[[0,3,["H935"]],[3,4,["H5921"]],[4,5,["H5857"]],[5,8,["H5674"]],[8,10,["H4051"]],[10,12,["H4363"]],[12,16,["H6485"]],[16,18,["H3627"]]]},{"k":17879,"v":[[0,4,["H5674"]],[4,6,["H4569"]],[6,12,["H4411"]],[12,14,["H1387"]],[14,15,["H7414"]],[15,17,["H2729"]],[17,18,["H1390"]],[18,20,["H7586"]],[20,22,["H5127"]]]},{"k":17880,"v":[[0,2,["H6670"]],[2,4,["H6963"]],[4,6,["H1323"]],[6,8,["H1554"]],[8,13,["H7181"]],[13,15,["H3919"]],[15,17,["H6041"]],[17,18,["H6068"]]]},{"k":17881,"v":[[0,1,["H4088"]],[1,3,["H5074"]],[3,5,["H3427"]],[5,7,["H1374"]],[7,11,["H5756"]]]},{"k":17882,"v":[[0,2,["H5750"]],[2,5,["H5975"]],[5,7,["H5011"]],[7,9,["H3117"]],[9,12,["H5130"]],[12,14,["H3027"]],[14,17,["H2022"]],[17,20,["H1004"]],[20,22,["H6726"]],[22,24,["H1389"]],[24,26,["H3389"]]]},{"k":17883,"v":[[0,1,["H2009"]],[1,3,["H113"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H5586"]],[9,11,["H6288"]],[11,13,["H4637"]],[13,17,["H7312"]],[17,19,["H6967"]],[19,23,["H1438"]],[23,26,["H1364"]],[26,29,["H8213"]]]},{"k":17884,"v":[[0,5,["H5362"]],[5,7,["H5442"]],[7,10,["H3293"]],[10,12,["H1270"]],[12,14,["H3844"]],[14,16,["H5307"]],[16,20,["H117"]]]},{"k":17885,"v":[[0,5,["H3318"]],[5,7,["H2415"]],[7,11,["H4480","H1503"]],[11,13,["H3448"]],[13,16,["H5342"]],[16,18,["H6509"]],[18,22,["H4480","H8328"]]]},{"k":17886,"v":[[0,3,["H7307"]],[3,6,["H3068"]],[6,8,["H5117"]],[8,9,["H5921"]],[9,12,["H7307"]],[12,14,["H2451"]],[14,16,["H998"]],[16,18,["H7307"]],[18,20,["H6098"]],[20,22,["H1369"]],[22,24,["H7307"]],[24,26,["H1847"]],[26,30,["H3374"]],[30,33,["H3068"]]]},{"k":17887,"v":[[0,7,["H7306"]],[7,10,["H3374"]],[10,13,["H3068"]],[13,17,["H3808"]],[17,18,["H8199"]],[18,21,["H4758"]],[21,24,["H5869"]],[24,25,["H3808"]],[25,26,["H3198"]],[26,29,["H4926"]],[29,32,["H241"]]]},{"k":17888,"v":[[0,3,["H6664"]],[3,6,["H8199"]],[6,8,["H1800"]],[8,10,["H3198"]],[10,12,["H4334"]],[12,15,["H6035"]],[15,18,["H776"]],[18,22,["H5221"]],[22,24,["H776"]],[24,27,["H7626"]],[27,30,["H6310"]],[30,34,["H7307"]],[34,37,["H8193"]],[37,40,["H4191"]],[40,42,["H7563"]]]},{"k":17889,"v":[[0,2,["H6664"]],[2,4,["H1961"]],[4,6,["H232"]],[6,9,["H4975"]],[9,11,["H530"]],[11,13,["H232"]],[13,16,["H2504"]]]},{"k":17890,"v":[[0,2,["H2061"]],[2,5,["H1481"]],[5,6,["H5973"]],[6,8,["H3532"]],[8,11,["H5246"]],[11,14,["H7257"]],[14,15,["H5973"]],[15,17,["H1423"]],[17,20,["H5695"]],[20,24,["H3715"]],[24,27,["H4806"]],[27,28,["H3162"]],[28,31,["H6996"]],[31,32,["H5288"]],[32,34,["H5090"]],[34,35,[]]]},{"k":17891,"v":[[0,3,["H6510"]],[3,6,["H1677"]],[6,8,["H7462"]],[8,11,["H3206"]],[11,14,["H7257"]],[14,15,["H3162"]],[15,18,["H738"]],[18,20,["H398"]],[20,21,["H8401"]],[21,24,["H1241"]]]},{"k":17892,"v":[[0,3,["H3243"]],[3,6,["H8173"]],[6,7,["H5921"]],[7,9,["H2352"]],[9,12,["H6620"]],[12,16,["H1580"]],[16,18,["H1911"]],[18,20,["H3027"]],[20,21,["H5921"]],[21,23,["H6848"]],[23,24,["H3975"]]]},{"k":17893,"v":[[0,3,["H3808"]],[3,4,["H7489"]],[4,5,["H3808"]],[5,6,["H7843"]],[6,8,["H3605"]],[8,10,["H6944"]],[10,11,["H2022"]],[11,12,["H3588"]],[12,14,["H776"]],[14,17,["H4390"]],[17,20,["H1844"]],[20,21,["(H853)"]],[21,23,["H3068"]],[23,26,["H4325"]],[26,27,["H3680"]],[27,29,["H3220"]]]},{"k":17894,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,7,["H1961"]],[7,9,["H8328"]],[9,11,["H3448"]],[11,12,["H834"]],[12,14,["H5975"]],[14,17,["H5251"]],[17,20,["H5971"]],[20,21,["H413"]],[21,25,["H1471"]],[25,26,["H1875"]],[26,29,["H4496"]],[29,31,["H1961"]],[31,32,["H3519"]]]},{"k":17895,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H136"]],[12,16,["H3027"]],[16,17,["H3254"]],[17,20,["H8145"]],[20,22,["H7069","(H853)"]],[22,24,["H7605"]],[24,27,["H5971"]],[27,28,["H834"]],[28,31,["H7604"]],[31,33,["H4480","H804"]],[33,36,["H4480","H4714"]],[36,39,["H4480","H6624"]],[39,42,["H4480","H3568"]],[42,45,["H4480","H5867"]],[45,48,["H4480","H8152"]],[48,51,["H4480","H2574"]],[51,55,["H4480","H339"]],[55,58,["H3220"]]]},{"k":17896,"v":[[0,5,["H5375"]],[5,7,["H5251"]],[7,10,["H1471"]],[10,13,["H622"]],[13,15,["H5080"]],[15,17,["H3478"]],[17,20,["H6908"]],[20,22,["H5310"]],[22,24,["H3063"]],[24,27,["H4480","H702"]],[27,28,["H3671"]],[28,31,["H776"]]]},{"k":17897,"v":[[0,2,["H7068"]],[2,5,["H669"]],[5,7,["H5493"]],[7,10,["H6887"]],[10,12,["H3063"]],[12,16,["H3772"]],[16,17,["H669"]],[17,19,["H3808"]],[19,20,["H7065","(H853)"]],[20,21,["H3063"]],[21,23,["H3063"]],[23,25,["H3808"]],[25,26,["H6887","(H853)"]],[26,27,["H669"]]]},{"k":17898,"v":[[0,4,["H5774"]],[4,7,["H3802"]],[7,10,["H6430"]],[10,13,["H3220"]],[13,16,["H962","(H853)"]],[16,17,["H1121"]],[17,20,["H6924"]],[20,21,["H3162"]],[21,24,["H4916"]],[24,26,["H3027"]],[26,28,["H123"]],[28,30,["H4124"]],[30,33,["H1121"]],[33,35,["H5983"]],[35,37,["H4928"]],[37,38,[]]]},{"k":17899,"v":[[0,3,["H3068"]],[3,6,["H2763","(H853)"]],[6,8,["H3956"]],[8,11,["H4714"]],[11,12,["H3220"]],[12,16,["H5868"]],[16,17,["H7307"]],[17,20,["H5130"]],[20,22,["H3027"]],[22,23,["H5921"]],[23,25,["H5104"]],[25,28,["H5221"]],[28,32,["H7651"]],[32,33,["H5158"]],[33,38,["H1869"]],[38,39,["H5275"]]]},{"k":17900,"v":[[0,4,["H1961"]],[4,6,["H4546"]],[6,9,["H7605"]],[9,12,["H5971"]],[12,13,["H834"]],[13,16,["H7604"]],[16,18,["H4480","H804"]],[18,20,["H834"]],[20,22,["H1961"]],[22,24,["H3478"]],[24,27,["H3117"]],[27,31,["H5927"]],[31,35,["H4480","H776"]],[35,37,["H4714"]]]},{"k":17901,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,7,["H559"]],[7,9,["H3068"]],[9,12,["H3034"]],[12,14,["H3588"]],[14,17,["H599"]],[17,21,["H639"]],[21,24,["H7725"]],[24,27,["H5162"]],[27,28,[]]]},{"k":17902,"v":[[0,1,["H2009"]],[1,2,["H410"]],[2,5,["H3444"]],[5,8,["H982"]],[8,10,["H3808"]],[10,12,["H6342"]],[12,13,["H3588"]],[13,15,["H3050"]],[15,16,["H3068"]],[16,19,["H5797"]],[19,22,["H2176"]],[22,26,["H1961"]],[26,28,["H3444"]]]},{"k":17903,"v":[[0,3,["H8342"]],[3,6,["H7579"]],[6,7,["H4325"]],[7,11,["H4480","H4599"]],[11,13,["H3444"]]]},{"k":17904,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,7,["H559"]],[7,8,["H3034"]],[8,10,["H3068"]],[10,11,["H7121"]],[11,14,["H8034"]],[14,15,["H3045"]],[15,17,["H5949"]],[17,20,["H5971"]],[20,22,["H2142"]],[22,23,["H3588"]],[23,25,["H8034"]],[25,27,["H7682"]]]},{"k":17905,"v":[[0,1,["H2167"]],[1,4,["H3068"]],[4,5,["H3588"]],[5,8,["H6213"]],[8,10,["H1348"]],[10,11,["H2063"]],[11,13,["H3045"]],[13,15,["H3605"]],[15,17,["H776"]]]},{"k":17906,"v":[[0,2,["H6670"]],[2,4,["H7442"]],[4,6,["H3427"]],[6,8,["H6726"]],[8,9,["H3588"]],[9,10,["H1419"]],[10,14,["H6918"]],[14,16,["H3478"]],[16,19,["H7130"]],[19,21,[]]]},{"k":17907,"v":[[0,2,["H4853"]],[2,4,["H894"]],[4,5,["H834"]],[5,6,["H3470"]],[6,8,["H1121"]],[8,10,["H531"]],[10,12,["H2372"]]]},{"k":17908,"v":[[0,3,["H5375"]],[3,5,["H5251"]],[5,6,["H5921"]],[6,8,["H8192"]],[8,9,["H2022"]],[9,10,["H7311"]],[10,12,["H6963"]],[12,15,["H5130"]],[15,17,["H3027"]],[17,21,["H935"]],[21,24,["H6607"]],[24,27,["H5081"]]]},{"k":17909,"v":[[0,1,["H589"]],[1,3,["H6680"]],[3,6,["H6942"]],[6,9,["H1571"]],[9,10,["H7121"]],[10,13,["H1368"]],[13,16,["H639"]],[16,20,["H5947"]],[20,23,["H1346"]]]},{"k":17910,"v":[[0,2,["H6963"]],[2,5,["H1995"]],[5,8,["H2022"]],[8,9,["H1823"]],[9,13,["H7227"]],[13,14,["H5971"]],[14,16,["H7588"]],[16,17,["H6963"]],[17,20,["H4467"]],[20,22,["H1471"]],[22,24,["H622"]],[24,26,["H3068"]],[26,28,["H6635"]],[28,29,["H6485"]],[29,31,["H6635"]],[31,34,["H4421"]]]},{"k":17911,"v":[[0,2,["H935"]],[2,6,["H4480","H4801","H776"]],[6,9,["H4480","H7097"]],[9,11,["H8064"]],[11,14,["H3068"]],[14,17,["H3627"]],[17,20,["H2195"]],[20,22,["H2254"]],[22,24,["H3605"]],[24,25,["H776"]]]},{"k":17912,"v":[[0,1,["H3213"]],[1,3,["H3588"]],[3,5,["H3117"]],[5,8,["H3068"]],[8,11,["H7138"]],[11,14,["H935"]],[14,17,["H7701"]],[17,20,["H4480","H7706"]]]},{"k":17913,"v":[[0,1,["H5921","H3651"]],[1,3,["H3605"]],[3,4,["H3027"]],[4,6,["H7503"]],[6,8,["H3605"]],[8,9,["H582"]],[9,10,["H3824"]],[10,12,["H4549"]]]},{"k":17914,"v":[[0,5,["H926"]],[5,6,["H6735"]],[6,8,["H2256"]],[8,11,["H270"]],[11,18,["H2342"]],[18,23,["H3205"]],[23,27,["H8539"]],[27,28,["H376"]],[28,29,["H413"]],[29,30,["H7453"]],[30,32,["H6440"]],[32,36,["H6440","H3851"]]]},{"k":17915,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,6,["H3068"]],[6,7,["H935"]],[7,8,["H394"]],[8,11,["H5678"]],[11,13,["H2740"]],[13,14,["H639"]],[14,16,["H7760"]],[16,18,["H776"]],[18,19,["H8047"]],[19,23,["H8045"]],[23,25,["H2400"]],[25,28,["H4480"]],[28,29,[]]]},{"k":17916,"v":[[0,1,["H3588"]],[1,3,["H3556"]],[3,5,["H8064"]],[5,8,["H3685"]],[8,11,["H3808"]],[11,12,["H1984"]],[12,14,["H216"]],[14,16,["H8121"]],[16,19,["H2821"]],[19,23,["H3318"]],[23,26,["H3394"]],[26,28,["H3808"]],[28,31,["H216"]],[31,33,["H5050"]]]},{"k":17917,"v":[[0,4,["H6485"]],[4,6,["H8398"]],[6,7,["H5921"]],[7,9,["H7451"]],[9,12,["H7563"]],[12,13,["H5921"]],[13,15,["H5771"]],[15,21,["H1347"]],[21,24,["H2086"]],[24,26,["H7673"]],[26,30,["H8213"]],[30,32,["H1346"]],[32,35,["H6184"]]]},{"k":17918,"v":[[0,5,["H582"]],[5,7,["H3365"]],[7,10,["H4480","H6337"]],[10,13,["H120"]],[13,17,["H4480","H3800"]],[17,19,["H211"]]]},{"k":17919,"v":[[0,1,["H5921","H3651"]],[1,4,["H7264"]],[4,6,["H8064"]],[6,9,["H776"]],[9,11,["H7493"]],[11,15,["H4480","H4725"]],[15,18,["H5678"]],[18,21,["H3068"]],[21,23,["H6635"]],[23,27,["H3117"]],[27,30,["H2740"]],[30,31,["H639"]]]},{"k":17920,"v":[[0,4,["H1961"]],[4,7,["H5080"]],[7,8,["H6643"]],[8,12,["H6629"]],[12,14,["H369"]],[14,17,["H6908"]],[17,21,["H376"]],[21,22,["H6437"]],[22,23,["H413"]],[23,26,["H5971"]],[26,28,["H5127"]],[28,30,["H376"]],[30,31,["H413"]],[31,34,["H776"]]]},{"k":17921,"v":[[0,2,["H3605"]],[2,5,["H4672"]],[5,9,["H1856"]],[9,12,["H3605"]],[12,15,["H5595"]],[15,19,["H5307"]],[19,22,["H2719"]]]},{"k":17922,"v":[[0,2,["H5768"]],[2,6,["H7376"]],[6,11,["H5869"]],[11,13,["H1004"]],[13,16,["H8155"]],[16,19,["H802"]],[19,20,["H7693"]]]},{"k":17923,"v":[[0,1,["H2009"]],[1,5,["H5782","(H853)"]],[5,7,["H4074"]],[7,8,["H5921"]],[8,10,["H834"]],[10,12,["H3808"]],[12,13,["H2803"]],[13,14,["H3701"]],[14,18,["H2091"]],[18,21,["H3808"]],[21,22,["H2654"]],[22,24,[]]]},{"k":17924,"v":[[0,2,["H7198"]],[2,5,["H7376"]],[5,8,["H5288"]],[8,15,["H3808"]],[15,16,["H7355"]],[16,19,["H6529"]],[19,22,["H990"]],[22,24,["H5869"]],[24,26,["H3808"]],[26,27,["H2347","H5921"]],[27,28,["H1121"]]]},{"k":17925,"v":[[0,2,["H894"]],[2,4,["H6643"]],[4,6,["H4467"]],[6,8,["H8597"]],[8,11,["H3778"]],[11,12,["H1347"]],[12,14,["H1961"]],[14,17,["H430"]],[17,18,["H4114","(H853)"]],[18,19,["H5467"]],[19,21,["H6017"]]]},{"k":17926,"v":[[0,3,["H3808","H5331"]],[3,5,["H3427"]],[5,6,["H3808"]],[6,10,["H7931"]],[10,13,["H1755"]],[13,14,["H5704"]],[14,15,["H1755"]],[15,16,["H3808"]],[16,19,["H6163"]],[19,21,["H167"]],[21,22,["H8033"]],[22,23,["H3808"]],[23,26,["H7462"]],[26,29,["H7257"]],[29,30,["H8033"]]]},{"k":17927,"v":[[0,6,["H6728"]],[6,8,["H7257"]],[8,9,["H8033"]],[9,12,["H1004"]],[12,15,["H4390"]],[15,18,["H255"]],[18,20,["H1323","H3284"]],[20,22,["H7931"]],[22,23,["H8033"]],[23,25,["H8163"]],[25,27,["H7540"]],[27,28,["H8033"]]]},{"k":17928,"v":[[0,7,["H338"]],[7,9,["H6030"]],[9,13,["H490"]],[13,15,["H8577"]],[15,18,["H6027"]],[18,19,["H1964"]],[19,22,["H6256"]],[22,24,["H7138"]],[24,26,["H935"]],[26,29,["H3117"]],[29,31,["H3808"]],[31,33,["H4900"]]]},{"k":17929,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,6,["H7355"]],[6,7,["(H853)"]],[7,8,["H3290"]],[8,11,["H5750"]],[11,12,["H977"]],[12,13,["H3478"]],[13,15,["H5117"]],[15,17,["H5921"]],[17,20,["H127"]],[20,23,["H1616"]],[23,26,["H3867"]],[26,27,["H5921"]],[27,32,["H5596"]],[32,33,["H5921"]],[33,35,["H1004"]],[35,37,["H3290"]]]},{"k":17930,"v":[[0,3,["H5971"]],[3,5,["H3947"]],[5,8,["H935"]],[8,10,["H413"]],[10,12,["H4725"]],[12,15,["H1004"]],[15,17,["H3478"]],[17,19,["H5157"]],[19,21,["H5921"]],[21,23,["H127"]],[23,26,["H3068"]],[26,28,["H5650"]],[28,30,["H8198"]],[30,34,["H1961"]],[34,36,["H7617"]],[36,38,["H7617"]],[38,45,["H7287"]],[45,47,["H5065"]]]},{"k":17931,"v":[[0,6,["H1961"]],[6,9,["H3117"]],[9,12,["H3068"]],[12,16,["H5117"]],[16,19,["H4480","H6090"]],[19,23,["H4480","H7267"]],[23,25,["H4480"]],[25,27,["H7186"]],[27,28,["H5656"]],[28,29,["H834"]],[29,34,["H5647"]]]},{"k":17932,"v":[[0,5,["H5375"]],[5,6,["H2088"]],[6,7,["H4912"]],[7,8,["H5921"]],[8,10,["H4428"]],[10,12,["H894"]],[12,14,["H559"]],[14,15,["H349"]],[15,18,["H5065"]],[18,19,["H7673"]],[19,22,["H4062"]],[22,23,["H7673"]]]},{"k":17933,"v":[[0,2,["H3068"]],[2,4,["H7665"]],[4,6,["H4294"]],[6,9,["H7563"]],[9,12,["H7626"]],[12,15,["H4910"]]]},{"k":17934,"v":[[0,3,["H5221"]],[3,5,["H5971"]],[5,7,["H5678"]],[7,11,["H1115","H5627","H4347"]],[11,14,["H7287"]],[14,16,["H1471"]],[16,18,["H639"]],[18,20,["H4783"]],[20,22,["H1097"]],[22,23,["H2820"]]]},{"k":17935,"v":[[0,2,["H3605"]],[2,3,["H776"]],[3,6,["H5117"]],[6,9,["H8252"]],[9,12,["H6476"]],[12,14,["H7440"]]]},{"k":17936,"v":[[0,1,["H1571"]],[1,4,["H1265"]],[4,5,["H8055"]],[5,10,["H730"]],[10,12,["H3844"]],[12,14,["H4480","H227"]],[14,18,["H7901"]],[18,19,["H3808"]],[19,20,["H3772"]],[20,23,["H5927"]],[23,24,["H5921"]],[24,25,[]]]},{"k":17937,"v":[[0,1,["H7585"]],[1,3,["H4480","H8478"]],[3,5,["H7264"]],[5,9,["H7122"]],[9,13,["H935"]],[13,16,["H5782"]],[16,18,["H7496"]],[18,22,["H3605"]],[22,25,["H6260"]],[25,28,["H776"]],[28,32,["H6965"]],[32,35,["H4480","H3678"]],[35,36,["H3605"]],[36,38,["H4428"]],[38,41,["H1471"]]]},{"k":17938,"v":[[0,1,["H3605"]],[1,4,["H6030"]],[4,6,["H559"]],[6,10,["H859"]],[10,11,["H1571"]],[11,13,["H2470"]],[13,19,["H4911"]],[19,20,["H413"]],[20,21,[]]]},{"k":17939,"v":[[0,2,["H1347"]],[2,5,["H3381"]],[5,8,["H7585"]],[8,11,["H1998"]],[11,14,["H5035"]],[14,16,["H7415"]],[16,18,["H3331"]],[18,19,["H8478"]],[19,23,["H8438"]],[23,24,["H4374"]],[24,25,[]]]},{"k":17940,"v":[[0,1,["H349"]],[1,4,["H5307"]],[4,6,["H4480","H8064"]],[6,8,["H1966"]],[8,9,["H1121"]],[9,12,["H7837"]],[12,17,["H1438"]],[17,20,["H776"]],[20,23,["H2522","H5921"]],[23,25,["H1471"]]]},{"k":17941,"v":[[0,2,["H859"]],[2,4,["H559"]],[4,7,["H3824"]],[7,10,["H5927"]],[10,12,["H8064"]],[12,15,["H7311"]],[15,17,["H3678"]],[17,18,["H4480","H4605"]],[18,20,["H3556"]],[20,22,["H410"]],[22,25,["H3427"]],[25,29,["H2022"]],[29,32,["H4150"]],[32,35,["H3411"]],[35,38,["H6828"]]]},{"k":17942,"v":[[0,3,["H5927"]],[3,4,["H5921"]],[4,6,["H1116"]],[6,9,["H5645"]],[9,13,["H1819"]],[13,16,["H5945"]]]},{"k":17943,"v":[[0,1,["H389"]],[1,6,["H3381"]],[6,7,["H413"]],[7,8,["H7585"]],[8,9,["H413"]],[9,11,["H3411"]],[11,14,["H953"]]]},{"k":17944,"v":[[0,3,["H7200"]],[3,7,["H7688"]],[7,8,["H413"]],[8,11,["H995"]],[11,15,["H2088"]],[15,17,["H376"]],[17,21,["H776"]],[21,23,["H7264"]],[23,26,["H7493"]],[26,27,["H4467"]]]},{"k":17945,"v":[[0,2,["H7760"]],[2,4,["H8398"]],[4,7,["H4057"]],[7,9,["H2040"]],[9,11,["H5892"]],[11,14,["H6605"]],[14,15,["H3808"]],[15,17,["H1004"]],[17,20,["H615"]]]},{"k":17946,"v":[[0,1,["H3605"]],[1,3,["H4428"]],[3,6,["H1471"]],[6,8,["H3605"]],[8,11,["H7901"]],[11,13,["H3519"]],[13,15,["H376"]],[15,19,["H1004"]]]},{"k":17947,"v":[[0,2,["H859"]],[2,4,["H7993"]],[4,8,["H4480","H6913"]],[8,11,["H8581"]],[11,12,["H5342"]],[12,16,["H3830"]],[16,21,["H2026"]],[21,23,["H2944"]],[23,26,["H2719"]],[26,29,["H3381"]],[29,30,["H413"]],[30,32,["H68"]],[32,35,["H953"]],[35,38,["H6297"]],[38,41,["H947"]]]},{"k":17948,"v":[[0,3,["H3808"]],[3,5,["H3161"]],[5,6,["H854"]],[6,9,["H6900"]],[9,10,["H3588"]],[10,13,["H7843"]],[13,15,["H776"]],[15,17,["H2026"]],[17,19,["H5971"]],[19,21,["H2233"]],[21,23,["H7489"]],[23,25,["H3808","H5769"]],[25,27,["H7121"]]]},{"k":17949,"v":[[0,1,["H3559"]],[1,2,["H4293"]],[2,5,["H1121"]],[5,8,["H5771"]],[8,11,["H1"]],[11,15,["H1077"]],[15,16,["H6965"]],[16,18,["H3423"]],[18,20,["H776"]],[20,22,["H4390"]],[22,24,["H6440"]],[24,27,["H8398"]],[27,29,["H5892"]]]},{"k":17950,"v":[[0,5,["H6965"]],[5,6,["H5921"]],[6,8,["H5002"]],[8,10,["H3068"]],[10,12,["H6635"]],[12,15,["H3772"]],[15,17,["H894"]],[17,19,["H8034"]],[19,21,["H7605"]],[21,23,["H5209"]],[23,25,["H5220"]],[25,26,["H5002"]],[26,28,["H3068"]]]},{"k":17951,"v":[[0,4,["H7760"]],[4,7,["H4180"]],[7,10,["H7090"]],[10,12,["H98"]],[12,14,["H4325"]],[14,18,["H2894"]],[18,22,["H4292"]],[22,24,["H8045"]],[24,25,["H5002"]],[25,27,["H3068"]],[27,29,["H6635"]]]},{"k":17952,"v":[[0,2,["H3068"]],[2,4,["H6635"]],[4,6,["H7650"]],[6,7,["H559"]],[7,8,["H518","H3808"]],[8,9,["H834"]],[9,12,["H1819"]],[12,13,["H3651"]],[13,18,["H1961"]],[18,20,["H834"]],[20,23,["H3289"]],[23,26,["H1931"]],[26,27,["H6965"]]]},{"k":17953,"v":[[0,4,["H7665"]],[4,6,["H804"]],[6,9,["H776"]],[9,11,["H5921"]],[11,13,["H2022"]],[13,17,["H947"]],[17,21,["H5923"]],[21,22,["H5493"]],[22,24,["H4480","H5921"]],[24,28,["H5448"]],[28,29,["H5493"]],[29,31,["H4480","H5921"]],[31,33,["H7926"]]]},{"k":17954,"v":[[0,1,["H2063"]],[1,4,["H6098"]],[4,7,["H3289"]],[7,8,["H5921"]],[8,10,["H3605"]],[10,11,["H776"]],[11,13,["H2063"]],[13,16,["H3027"]],[16,20,["H5186"]],[20,21,["H5921"]],[21,22,["H3605"]],[22,24,["H1471"]]]},{"k":17955,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H6635"]],[5,7,["H3289"]],[7,9,["H4310"]],[9,11,["H6565"]],[11,15,["H3027"]],[15,18,["H5186"]],[18,20,["H4310"]],[20,24,["H7725"]]]},{"k":17956,"v":[[0,3,["H8141"]],[3,5,["H4428"]],[5,6,["H271"]],[6,7,["H4194"]],[7,8,["H1961"]],[8,9,["H2088"]],[9,10,["H4853"]]]},{"k":17957,"v":[[0,1,["H8055"]],[1,2,["H408"]],[2,4,["H3605"]],[4,5,["H6429"]],[5,6,["H3588"]],[6,8,["H7626"]],[8,11,["H3588"]],[11,12,["H5221"]],[12,15,["H7665"]],[15,21,["H4480","H8328","H5175"]],[21,24,["H3318"]],[24,26,["H6848"]],[26,29,["H6529"]],[29,35,["H8314","H5774"]]]},{"k":17958,"v":[[0,3,["H1060"]],[3,6,["H1800"]],[6,8,["H7462"]],[8,11,["H34"]],[11,14,["H7257"]],[14,16,["H983"]],[16,20,["H4191"]],[20,22,["H8328"]],[22,24,["H7458"]],[24,28,["H2026"]],[28,30,["H7611"]]]},{"k":17959,"v":[[0,1,["H3213"]],[1,3,["H8179"]],[3,4,["H2199"]],[4,6,["H5892"]],[6,8,["H3605"]],[8,9,["H6429"]],[9,11,["H4127"]],[11,12,["H3588"]],[12,15,["H935"]],[15,18,["H4480","H6828"]],[18,20,["H6227"]],[20,22,["H369"]],[22,25,["H909"]],[25,29,["H4151"]]]},{"k":17960,"v":[[0,1,["H4100"]],[1,5,["H6030"]],[5,7,["H4397"]],[7,10,["H1471"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,15,["H3245"]],[15,16,["H6726"]],[16,19,["H6041"]],[19,22,["H5971"]],[22,24,["H2620"]],[24,26,[]]]},{"k":17961,"v":[[0,2,["H4853"]],[2,4,["H4124"]],[4,5,["H3588"]],[5,8,["H3915"]],[8,9,["H6144"]],[9,11,["H4124"]],[11,14,["H7703"]],[14,18,["H1820"]],[18,19,["H3588"]],[19,22,["H3915"]],[22,23,["H7024"]],[23,25,["H4124"]],[25,28,["H7703"]],[28,32,["H1820"]]]},{"k":17962,"v":[[0,4,["H5927"]],[4,6,["H1006"]],[6,9,["H1769"]],[9,12,["H1116"]],[12,14,["H1065"]],[14,15,["H4124"]],[15,17,["H3213"]],[17,18,["H5921"]],[18,19,["H5015"]],[19,21,["H5921"]],[21,22,["H4311"]],[22,24,["H3605"]],[24,26,["H7218"]],[26,29,["H7144"]],[29,31,["H3605"]],[31,32,["H2206"]],[32,34,["H1639"]]]},{"k":17963,"v":[[0,3,["H2351"]],[3,6,["H2296"]],[6,9,["H8242"]],[9,10,["H5921"]],[10,15,["H1406"]],[15,19,["H7339"]],[19,21,["H3605"]],[21,23,["H3213"]],[23,24,["H1065"]],[24,25,["H3381"]]]},{"k":17964,"v":[[0,2,["H2809"]],[2,4,["H2199"]],[4,6,["H500"]],[6,8,["H6963"]],[8,11,["H8085"]],[11,13,["H5704"]],[13,14,["H3096"]],[14,15,["H5921","H3651"]],[15,18,["H2502"]],[18,20,["H4124"]],[20,23,["H7321"]],[23,25,["H5315"]],[25,28,["H3415"]],[28,30,[]]]},{"k":17965,"v":[[0,2,["H3820"]],[2,4,["H2199"]],[4,7,["H4124"]],[7,9,["H1280"]],[9,12,["H5704"]],[12,13,["H6820"]],[13,15,["H5697"]],[15,19,["H7992"]],[19,20,["H3588"]],[20,24,["H4608"]],[24,26,["H3872"]],[26,28,["H1065"]],[28,33,["H5927"]],[33,34,["H3588"]],[34,37,["H1870"]],[37,39,["H2773"]],[39,43,["H5782"]],[43,45,["H2201"]],[45,47,["H7667"]]]},{"k":17966,"v":[[0,1,["H3588"]],[1,3,["H4325"]],[3,5,["H5249"]],[5,7,["H1961"]],[7,8,["H4923"]],[8,9,["H3588"]],[9,11,["H2682"]],[11,14,["H3001"]],[14,16,["H1877"]],[16,17,["H3615"]],[17,19,["H1961"]],[19,20,["H3808"]],[20,22,["H3418"]]]},{"k":17967,"v":[[0,1,["H5921","H3651"]],[1,3,["H3502"]],[3,6,["H6213"]],[6,13,["H6486"]],[13,17,["H5375"]],[17,18,["H5921"]],[18,20,["H5158"]],[20,23,["H6155"]]]},{"k":17968,"v":[[0,1,["H3588"]],[1,3,["H2201"]],[3,6,["H5362"]],[6,7,["(H853)"]],[7,9,["H1366"]],[9,11,["H4124"]],[11,13,["H3213"]],[13,15,["H5704"]],[15,16,["H97"]],[16,19,["H3213"]],[19,22,["H879"]]]},{"k":17969,"v":[[0,1,["H3588"]],[1,3,["H4325"]],[3,5,["H1775"]],[5,8,["H4390"]],[8,10,["H1818"]],[10,11,["H3588"]],[11,14,["H7896"]],[14,15,["H3254"]],[15,16,["H5921"]],[16,17,["H1775"]],[17,18,["H738"]],[18,22,["H6413"]],[22,24,["H4124"]],[24,28,["H7611"]],[28,31,["H127"]]]},{"k":17970,"v":[[0,1,["H7971"]],[1,4,["H3733"]],[4,7,["H4910"]],[7,10,["H776"]],[10,12,["H4480","H5554"]],[12,15,["H4057"]],[15,16,["H413"]],[16,18,["H2022"]],[18,21,["H1323"]],[21,23,["H6726"]]]},{"k":17971,"v":[[0,4,["H1961"]],[4,8,["H5074"]],[8,9,["H5775"]],[9,11,["H7971"]],[11,14,["H7064"]],[14,17,["H1323"]],[17,19,["H4124"]],[19,21,["H1961"]],[21,24,["H4569"]],[24,26,["H769"]]]},{"k":17972,"v":[[0,1,["H935"]],[1,2,["H6098"]],[2,3,["H6213"]],[3,4,["H6415"]],[4,5,["H7896"]],[5,7,["H6738"]],[7,10,["H3915"]],[10,13,["H8432"]],[13,16,["H6672"]],[16,17,["H5641"]],[17,19,["H5080"]],[19,20,["H1540"]],[20,21,["H408"]],[21,24,["H5074"]]]},{"k":17973,"v":[[0,3,["H5080"]],[3,4,["H1481"]],[4,7,["H4124"]],[7,8,["H1933"]],[8,11,["H5643"]],[11,16,["H4480","H6440"]],[16,19,["H7703"]],[19,20,["H3588"]],[20,22,["H4160"]],[22,26,["H656"]],[26,28,["H7701"]],[28,29,["H3615"]],[29,31,["H7429"]],[31,33,["H8552"]],[33,35,["H4480"]],[35,37,["H776"]]]},{"k":17974,"v":[[0,3,["H2617"]],[3,6,["H3678"]],[6,8,["H3559"]],[8,12,["H3427"]],[12,13,["H5921"]],[13,16,["H571"]],[16,19,["H168"]],[19,21,["H1732"]],[21,22,["H8199"]],[22,24,["H1875"]],[24,25,["H4941"]],[25,27,["H4106"]],[27,28,["H6664"]]]},{"k":17975,"v":[[0,3,["H8085"]],[3,6,["H1347"]],[6,8,["H4124"]],[8,11,["H3966"]],[11,12,["H1341"]],[12,16,["H1346"]],[16,19,["H1347"]],[19,22,["H5678"]],[22,25,["H907"]],[25,27,["H3808"]],[27,29,["H3651"]]]},{"k":17976,"v":[[0,1,["H3651"]],[1,3,["H4124"]],[3,4,["H3213"]],[4,6,["H4124"]],[6,8,["H3605"]],[8,10,["H3213"]],[10,13,["H808"]],[13,15,["H7025"]],[15,18,["H1897"]],[18,19,["H389"]],[19,22,["H5218"]]]},{"k":17977,"v":[[0,1,["H3588"]],[1,3,["H7709"]],[3,5,["H2809"]],[5,6,["H535"]],[6,9,["H1612"]],[9,11,["H7643"]],[11,13,["H1167"]],[13,16,["H1471"]],[16,19,["H1986"]],[19,22,["H8291"]],[22,26,["H5060"]],[26,28,["H5704"]],[28,29,["H3270"]],[29,31,["H8582"]],[31,34,["H4057"]],[34,36,["H7976"]],[36,39,["H5203"]],[39,43,["H5674"]],[43,45,["H3220"]]]},{"k":17978,"v":[[0,1,["H5921","H3651"]],[1,4,["H1058"]],[4,7,["H1065"]],[7,9,["H3270"]],[9,11,["H1612"]],[11,13,["H7643"]],[13,16,["H7301"]],[16,20,["H1832"]],[20,22,["H2809"]],[22,24,["H500"]],[24,25,["H3588"]],[25,27,["H1959"]],[27,28,["H5921"]],[28,31,["H7019"]],[31,33,["H5921"]],[33,35,["H7105"]],[35,37,["H5307"]]]},{"k":17979,"v":[[0,2,["H8057"]],[2,5,["H622"]],[5,7,["H1524"]],[7,9,["H4480"]],[9,12,["H3759"]],[12,16,["H3754"]],[16,20,["H3808"]],[20,21,["H7442"]],[21,22,["H3808"]],[22,26,["H7321"]],[26,28,["H1869"]],[28,30,["H1869"]],[30,32,["H3808"]],[32,33,["H3196"]],[33,36,["H3342"]],[36,42,["H1959"]],[42,44,["H7673"]]]},{"k":17980,"v":[[0,1,["H921","H3651"]],[1,3,["H4578"]],[3,5,["H1993"]],[5,8,["H3658"]],[8,10,["H4124"]],[10,14,["H7130"]],[14,16,["H7025"]]]},{"k":17981,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,10,["H7200"]],[10,11,["H3588"]],[11,12,["H4124"]],[12,14,["H3811"]],[14,15,["H5921"]],[15,18,["H1116"]],[18,22,["H935"]],[22,23,["H413"]],[23,25,["H4720"]],[25,27,["H6419"]],[27,31,["H3808"]],[31,32,["H3201"]]]},{"k":17982,"v":[[0,1,["H2088"]],[1,4,["H1697"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H1696"]],[9,10,["H413"]],[10,11,["H4124"]],[11,14,["H4480","H227"]]]},{"k":17983,"v":[[0,2,["H6258"]],[2,4,["H3068"]],[4,6,["H1696"]],[6,7,["H559"]],[7,9,["H7969"]],[9,10,["H8141"]],[10,13,["H8141"]],[13,16,["H7916"]],[16,19,["H3519"]],[19,21,["H4124"]],[21,24,["H7034"]],[24,26,["H3605"]],[26,28,["H7227"]],[28,29,["H1995"]],[29,32,["H7605"]],[32,36,["H4592","H4213"]],[36,38,["H3808","H3524"]]]},{"k":17984,"v":[[0,2,["H4853"]],[2,4,["H1834"]],[4,5,["H2009"]],[5,6,["H1834"]],[6,9,["H5493"]],[9,13,["H4480","H5892"]],[13,17,["H1961"]],[17,19,["H4654"]],[19,20,["H4596"]]]},{"k":17985,"v":[[0,2,["H5892"]],[2,4,["H6177"]],[4,6,["H5800"]],[6,9,["H1961"]],[9,11,["H5739"]],[11,15,["H7257"]],[15,17,["H369"]],[17,21,["H2729"]]]},{"k":17986,"v":[[0,2,["H4013"]],[2,5,["H7673"]],[5,7,["H4480","H669"]],[7,10,["H4467"]],[10,12,["H4480","H1834"]],[12,15,["H7605"]],[15,17,["H758"]],[17,20,["H1961"]],[20,23,["H3519"]],[23,26,["H1121"]],[26,28,["H3478"]],[28,29,["H5002"]],[29,31,["H3068"]],[31,33,["H6635"]]]},{"k":17987,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,9,["H1961"]],[9,12,["H3519"]],[12,14,["H3290"]],[14,18,["H1809"]],[18,21,["H4924"]],[21,24,["H1320"]],[24,27,["H7329"]]]},{"k":17988,"v":[[0,4,["H1961"]],[4,8,["H7105"]],[8,9,["H622"]],[9,11,["H7054"]],[11,13,["H7114"]],[13,15,["H7641"]],[15,18,["H2220"]],[18,22,["H1961"]],[22,26,["H3950"]],[26,27,["H7641"]],[27,30,["H6010"]],[30,32,["H7497"]]]},{"k":17989,"v":[[0,3,["H5955"]],[3,6,["H7604"]],[6,11,["H5363"]],[11,15,["H2132"]],[15,16,["H8147"]],[16,18,["H7969"]],[18,19,["H1620"]],[19,22,["H7218"]],[22,26,["H534"]],[26,27,["H702"]],[27,29,["H2568"]],[29,33,["H6509"]],[33,34,["H5585"]],[34,36,["H5002"]],[36,38,["H3068"]],[38,39,["H430"]],[39,41,["H3478"]]]},{"k":17990,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H120"]],[6,7,["H8159"]],[7,8,["H5921"]],[8,10,["H6213"]],[10,13,["H5869"]],[13,16,["H7200"]],[16,17,["H413"]],[17,20,["H6918"]],[20,22,["H3478"]]]},{"k":17991,"v":[[0,4,["H3808"]],[4,5,["H8159"]],[5,6,["H413"]],[6,8,["H4196"]],[8,10,["H4639"]],[10,13,["H3027"]],[13,14,["H3808"]],[14,16,["H7200"]],[16,18,["H834"]],[18,20,["H676"]],[20,22,["H6213"]],[22,25,["H842"]],[25,28,["H2553"]]]},{"k":17992,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H4581"]],[6,7,["H5892"]],[7,8,["H1961"]],[8,11,["H5800"]],[11,12,["H2793"]],[12,16,["H534"]],[16,17,["H834"]],[17,19,["H5800"]],[19,20,["H4480","H6440"]],[20,23,["H1121"]],[23,25,["H3478"]],[25,29,["H1961"]],[29,30,["H8077"]]]},{"k":17993,"v":[[0,1,["H3588"]],[1,4,["H7911"]],[4,6,["H430"]],[6,9,["H3468"]],[9,12,["H3808"]],[12,14,["H2142"]],[14,17,["H6697"]],[17,20,["H4581"]],[20,21,["H5921","H3651"]],[21,24,["H5193"]],[24,25,["H5282"]],[25,26,["H5194"]],[26,29,["H2232"]],[29,32,["H2114"]],[32,33,["H2156"]]]},{"k":17994,"v":[[0,3,["H3117"]],[3,8,["H5194"]],[8,10,["H7735"]],[10,14,["H1242"]],[14,19,["H2233"]],[19,21,["H6524"]],[21,24,["H7105"]],[24,28,["H5067"]],[28,31,["H3117"]],[31,33,["H2470"]],[33,36,["H605"]],[36,37,["H3511"]]]},{"k":17995,"v":[[0,1,["H1945"]],[1,4,["H1995"]],[4,6,["H7227"]],[6,7,["H5971"]],[7,11,["H1993"]],[11,14,["H1993"]],[14,17,["H3220"]],[17,21,["H7588"]],[21,23,["H3816"]],[23,27,["H7582"]],[27,30,["H7588"]],[30,32,["H3524"]],[32,33,["H4325"]]]},{"k":17996,"v":[[0,2,["H3816"]],[2,4,["H7582"]],[4,7,["H7588"]],[7,9,["H7227"]],[9,10,["H4325"]],[10,14,["H1605"]],[14,19,["H5127"]],[19,21,["H4480","H4801"]],[21,25,["H7291"]],[25,28,["H4671"]],[28,31,["H2022"]],[31,32,["H6440"]],[32,34,["H7307"]],[34,39,["H1534"]],[39,40,["H6440"]],[40,42,["H5492"]]]},{"k":17997,"v":[[0,2,["H2009"]],[2,4,["H6256","H6153"]],[4,5,["H1091"]],[5,7,["H2962"]],[7,9,["H1242"]],[9,12,["H369"]],[12,13,["H2088"]],[13,16,["H2506"]],[16,20,["H8154"]],[20,24,["H1486"]],[24,28,["H962"]],[28,29,[]]]},{"k":17998,"v":[[0,1,["H1945"]],[1,4,["H776"]],[4,5,["H6767"]],[5,7,["H3671"]],[7,8,["H834"]],[8,10,["H4480","H5676"]],[10,12,["H5104"]],[12,14,["H3568"]]]},{"k":17999,"v":[[0,2,["H7971"]],[2,3,["H6735"]],[3,6,["H3220"]],[6,9,["H3627"]],[9,11,["H1573"]],[11,12,["H5921","H6440"]],[12,14,["H4325"]],[14,16,["H1980"]],[16,18,["H7031"]],[18,19,["H4397"]],[19,20,["H413"]],[20,22,["H1471"]],[22,23,["H4900"]],[23,25,["H4178"]],[25,26,["H413"]],[26,28,["H5971"]],[28,29,["H3372"]],[29,30,["H4480"]],[30,32,["H1931"]],[32,33,["H1973"]],[33,35,["H1471"]],[35,37,["H6978"]],[37,40,["H4001"]],[40,41,["H834"]],[41,42,["H776"]],[42,44,["H5104"]],[44,46,["H958"]]]},{"k":18000,"v":[[0,1,["H3605"]],[1,3,["H3427"]],[3,6,["H8398"]],[6,8,["H7931"]],[8,11,["H776"]],[11,12,["H7200"]],[12,17,["H5375"]],[17,19,["H5251"]],[19,22,["H2022"]],[22,26,["H8628"]],[26,28,["H7782"]],[28,29,["H8085"]],[29,30,[]]]},{"k":18001,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,4,["H3068"]],[4,5,["H559"]],[5,6,["H413"]],[6,12,["H8252"]],[12,16,["H5027"]],[16,20,["H4349"]],[20,23,["H6703"]],[23,24,["H2527"]],[24,25,["H5921"]],[25,26,["H216"]],[26,30,["H5645"]],[30,32,["H2919"]],[32,35,["H2527"]],[35,37,["H7105"]]]},{"k":18002,"v":[[0,1,["H3588"]],[1,2,["H6440"]],[2,4,["H7105"]],[4,7,["H6525"]],[7,9,["H8552"]],[9,13,["H1155"]],[13,14,["H1961"]],[14,15,["H1580"]],[15,18,["H5328"]],[18,23,["H3772"]],[23,25,["H2150"]],[25,28,["H4211"]],[28,31,["H5493"]],[31,34,["H8456"]],[34,36,["H5189"]]]},{"k":18003,"v":[[0,4,["H5800"]],[4,5,["H3162"]],[5,8,["H5861"]],[8,11,["H2022"]],[11,15,["H929"]],[15,18,["H776"]],[18,21,["H5861"]],[21,23,["H6972"]],[23,24,["H5921"]],[24,27,["H3605"]],[27,29,["H929"]],[29,32,["H776"]],[32,34,["H2778"]],[34,35,["H5921"]],[35,36,[]]]},{"k":18004,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,6,["H7862"]],[6,8,["H2986"]],[8,11,["H3068"]],[11,13,["H6635"]],[13,16,["H5971"]],[16,17,["H4900"]],[17,19,["H4178"]],[19,23,["H4480","H5971"]],[23,24,["H3372"]],[24,25,["H4480"]],[25,27,["H1931"]],[27,28,["H1973"]],[28,30,["H1471"]],[30,32,["H6978"]],[32,36,["H4001"]],[36,37,["H834"]],[37,38,["H776"]],[38,40,["H5104"]],[40,42,["H958"]],[42,43,["H413"]],[43,45,["H4725"]],[45,48,["H8034"]],[48,51,["H3068"]],[51,53,["H6635"]],[53,55,["H2022"]],[55,56,["H6726"]]]},{"k":18005,"v":[[0,2,["H4853"]],[2,4,["H4714"]],[4,5,["H2009"]],[5,7,["H3068"]],[7,8,["H7392"]],[8,9,["H5921"]],[9,11,["H7031"]],[11,12,["H5645"]],[12,15,["H935"]],[15,17,["H4714"]],[17,20,["H457"]],[20,22,["H4714"]],[22,25,["H5128"]],[25,28,["H4480","H6440"]],[28,31,["H3824"]],[31,33,["H4714"]],[33,35,["H4549"]],[35,38,["H7130"]],[38,40,[]]]},{"k":18006,"v":[[0,4,["H5526"]],[4,6,["H4714"]],[6,9,["H4714"]],[9,13,["H3898"]],[13,15,["H376"]],[15,18,["H251"]],[18,21,["H376"]],[21,24,["H7453"]],[24,25,["H5892"]],[25,27,["H5892"]],[27,29,["H4467"]],[29,31,["H4467"]]]},{"k":18007,"v":[[0,3,["H7307"]],[3,5,["H4714"]],[5,7,["H1238"]],[7,10,["H7130"]],[10,15,["H1104"]],[15,17,["H6098"]],[17,22,["H1875"]],[22,23,["H413"]],[23,25,["H457"]],[25,27,["H413"]],[27,29,["H328"]],[29,31,["H413"]],[31,36,["H178"]],[36,38,["H413"]],[38,40,["H3049"]]]},{"k":18008,"v":[[0,1,["(H853)"]],[1,3,["H4714"]],[3,7,["H5534"]],[7,10,["H3027"]],[10,13,["H7186"]],[13,14,["H113"]],[14,17,["H5794"]],[17,18,["H4428"]],[18,20,["H4910"]],[20,23,["H5002"]],[23,25,["H113"]],[25,27,["H3068"]],[27,29,["H6635"]]]},{"k":18009,"v":[[0,3,["H4325"]],[3,5,["H5405"]],[5,8,["H4480","H3220"]],[8,11,["H5104"]],[11,14,["H2717"]],[14,17,["H3001"]]]},{"k":18010,"v":[[0,8,["H2186","H5104"]],[8,11,["H2975"]],[11,13,["H4692"]],[13,16,["H1809"]],[16,19,["H2717"]],[19,21,["H7070"]],[21,23,["H5488"]],[23,25,["H7060"]]]},{"k":18011,"v":[[0,3,["H6169"]],[3,4,["H5921"]],[4,6,["H2975"]],[6,7,["H5921"]],[7,9,["H6310"]],[9,12,["H2975"]],[12,15,["H3605"]],[15,16,["H4218"]],[16,19,["H2975"]],[19,21,["H3001"]],[21,24,["H5086"]],[24,27,["H369"]],[27,28,[]]]},{"k":18012,"v":[[0,2,["H1771"]],[2,5,["H578"]],[5,7,["H3605"]],[7,10,["H7993"]],[10,11,["H2443"]],[11,14,["H2975"]],[14,16,["H56"]],[16,20,["H6566"]],[20,21,["H4365"]],[21,22,["H5921","H6440"]],[22,24,["H4325"]],[24,26,["H535"]]]},{"k":18013,"v":[[0,4,["H5647"]],[4,6,["H8305"]],[6,7,["H6593"]],[7,11,["H707"]],[11,12,["H2355"]],[12,15,["H954"]]]},{"k":18014,"v":[[0,4,["H1961"]],[4,5,["H1792"]],[5,8,["H8356"]],[8,10,["H3605"]],[10,12,["H6213"]],[12,13,["H7938"]],[13,15,["H99"]],[15,17,["H5315"]]]},{"k":18015,"v":[[0,1,["H389"]],[1,3,["H8269"]],[3,5,["H6814"]],[5,7,["H191"]],[7,9,["H6098"]],[9,12,["H2450"]],[12,13,["H3289"]],[13,15,["H6547"]],[15,18,["H1197"]],[18,19,["H349"]],[19,20,["H559"]],[20,22,["H413"]],[22,23,["H6547"]],[23,24,["H589"]],[24,27,["H1121"]],[27,30,["H2450"]],[30,32,["H1121"]],[32,34,["H6924"]],[34,35,["H4428"]]]},{"k":18016,"v":[[0,1,["H335"]],[1,4,["H645"]],[4,7,["H2450"]],[7,12,["H5046"]],[12,14,["H4994"]],[14,18,["H3045"]],[18,19,["H4100"]],[19,21,["H3068"]],[21,23,["H6635"]],[23,25,["H3289"]],[25,26,["H5921"]],[26,27,["H4714"]]]},{"k":18017,"v":[[0,2,["H8269"]],[2,4,["H6814"]],[4,7,["H2973"]],[7,9,["H8269"]],[9,11,["H5297"]],[11,13,["H5377"]],[13,17,["H8582","(H853)"]],[17,18,["H4714"]],[18,24,["H6438"]],[24,27,["H7626"]],[27,28,[]]]},{"k":18018,"v":[[0,2,["H3068"]],[2,4,["H4537"]],[4,6,["H5773"]],[6,7,["H7307"]],[7,10,["H7130"]],[10,15,["(H853)"]],[15,16,["H4714"]],[16,18,["H8582"]],[18,20,["H3605"]],[20,21,["H4639"]],[21,25,["H7910"]],[25,27,["H8582"]],[27,30,["H6892"]]]},{"k":18019,"v":[[0,1,["H3808"]],[1,4,["H1961"]],[4,6,["H4639"]],[6,8,["H4714"]],[8,9,["H834"]],[9,11,["H7218"]],[11,13,["H2180"]],[13,14,["H3712"]],[14,16,["H100"]],[16,18,["H6213"]]]},{"k":18020,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H4714"]],[5,6,["H1961"]],[6,9,["H802"]],[9,14,["H2729"]],[14,16,["H6342"]],[16,17,["H4480","H6440"]],[17,20,["H8573"]],[20,23,["H3027"]],[23,26,["H3068"]],[26,28,["H6635"]],[28,29,["H834"]],[29,30,["H1931"]],[30,31,["H5130"]],[31,32,["H5921"]],[32,33,[]]]},{"k":18021,"v":[[0,3,["H127"]],[3,5,["H3063"]],[5,7,["H1961"]],[7,9,["H2283"]],[9,11,["H4714"]],[11,13,["H3605"]],[13,14,["H834"]],[14,16,["H2142"]],[16,20,["H6342"]],[20,21,["H413"]],[21,23,["H4480","H6440"]],[23,26,["H6098"]],[26,29,["H3068"]],[29,31,["H6635"]],[31,32,["H834"]],[32,33,["H1931"]],[33,35,["H3289"]],[35,36,["H5921"]],[36,37,[]]]},{"k":18022,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,4,["H1961"]],[4,5,["H2568"]],[5,6,["H5892"]],[6,9,["H776"]],[9,11,["H4714"]],[11,12,["H1696"]],[12,14,["H8193"]],[14,16,["H3667"]],[16,18,["H7650"]],[18,21,["H3068"]],[21,23,["H6635"]],[23,24,["H259"]],[24,27,["H559"]],[27,29,["H5892"]],[29,31,["H2041"]]]},{"k":18023,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H1961"]],[6,8,["H4196"]],[8,11,["H3068"]],[11,14,["H8432"]],[14,17,["H776"]],[17,19,["H4714"]],[19,22,["H4676"]],[22,23,["H681"]],[23,25,["H1366"]],[25,29,["H3068"]]]},{"k":18024,"v":[[0,4,["H1961"]],[4,7,["H226"]],[7,11,["H5707"]],[11,14,["H3068"]],[14,16,["H6635"]],[16,19,["H776"]],[19,21,["H4714"]],[21,22,["H3588"]],[22,25,["H6817"]],[25,26,["H413"]],[26,28,["H3068"]],[28,29,["H4480","H6440"]],[29,32,["H3905"]],[32,36,["H7971"]],[36,39,["H3467"]],[39,43,["H7227"]],[43,47,["H5337"]],[47,48,[]]]},{"k":18025,"v":[[0,3,["H3068"]],[3,6,["H3045"]],[6,8,["H4714"]],[8,11,["H4714"]],[11,13,["H3045","(H853)"]],[13,15,["H3068"]],[15,17,["H1931"]],[17,18,["H3117"]],[18,21,["H5647"]],[21,22,["H2077"]],[22,24,["H4503"]],[24,28,["H5087"]],[28,30,["H5088"]],[30,33,["H3068"]],[33,35,["H7999"]],[35,36,[]]]},{"k":18026,"v":[[0,3,["H3068"]],[3,5,["H5062","(H853)"]],[5,6,["H4714"]],[6,9,["H5062"]],[9,11,["H7495"]],[11,16,["H7725"]],[16,18,["H5704"]],[18,20,["H3068"]],[20,25,["H6279"]],[25,30,["H7495"]],[30,31,[]]]},{"k":18027,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H1961"]],[6,8,["H4546"]],[8,11,["H4480","H4714"]],[11,13,["H804"]],[13,16,["H804"]],[16,18,["H935"]],[18,20,["H4714"]],[20,23,["H4714"]],[23,25,["H804"]],[25,28,["H4714"]],[28,30,["H5647"]],[30,31,["H854"]],[31,33,["H804"]]]},{"k":18028,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H3478"]],[5,6,["H1961"]],[6,8,["H7992"]],[8,10,["H4714"]],[10,13,["H804"]],[13,16,["H1293"]],[16,19,["H7130"]],[19,22,["H776"]]]},{"k":18029,"v":[[0,1,["H834"]],[1,3,["H3068"]],[3,5,["H6635"]],[5,7,["H1288"]],[7,8,["H559"]],[8,9,["H1288"]],[9,11,["H4714"]],[11,13,["H5971"]],[13,15,["H804"]],[15,17,["H4639"]],[17,20,["H3027"]],[20,22,["H3478"]],[22,24,["H5159"]]]},{"k":18030,"v":[[0,3,["H8141"]],[3,5,["H8661"]],[5,6,["H935"]],[6,8,["H795"]],[8,10,["H5623"]],[10,12,["H4428"]],[12,14,["H804"]],[14,15,["H7971"]],[15,18,["H3898"]],[18,20,["H795"]],[20,22,["H3920"]],[22,23,[]]]},{"k":18031,"v":[[0,3,["H1931"]],[3,4,["H6256"]],[4,5,["H1696"]],[5,7,["H3068"]],[7,8,["H3027"]],[8,9,["H3470"]],[9,11,["H1121"]],[11,13,["H531"]],[13,14,["H559"]],[14,15,["H1980"]],[15,17,["H6605"]],[17,19,["H8242"]],[19,21,["H4480","H5921"]],[21,23,["H4975"]],[23,26,["H2502"]],[26,28,["H5275"]],[28,29,["H4480","H5921"]],[29,31,["H7272"]],[31,34,["H6213"]],[34,35,["H3651"]],[35,36,["H1980"]],[36,37,["H6174"]],[37,39,["H3182"]]]},{"k":18032,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,6,["H834"]],[6,8,["H5650"]],[8,9,["H3470"]],[9,11,["H1980"]],[11,12,["H6174"]],[12,14,["H3182"]],[14,15,["H7969"]],[15,16,["H8141"]],[16,19,["H226"]],[19,21,["H4159"]],[21,22,["H5921"]],[22,23,["H4714"]],[23,25,["H5921"]],[25,26,["H3568"]]]},{"k":18033,"v":[[0,1,["H3651"]],[1,4,["H4428"]],[4,6,["H804"]],[6,8,["H5090","(H853)"]],[8,10,["H4714"]],[10,11,["H7628"]],[11,14,["H3568"]],[14,15,["H1546"]],[15,16,["H5288"]],[16,18,["H2205"]],[18,19,["H6174"]],[19,21,["H3182"]],[21,25,["H8357"]],[25,26,["H2834"]],[26,29,["H6172"]],[29,31,["H4714"]]]},{"k":18034,"v":[[0,5,["H2865"]],[5,7,["H954"]],[7,9,["H4480","H3568"]],[9,11,["H4007"]],[11,13,["H4480"]],[13,14,["H4714"]],[14,16,["H8597"]]]},{"k":18035,"v":[[0,3,["H3427"]],[3,5,["H2088"]],[5,6,["H339"]],[6,8,["H559"]],[8,10,["H1931"]],[10,11,["H3117"]],[11,12,["H2009"]],[12,13,["H3541"]],[13,16,["H4007"]],[16,17,["H834","H8033"]],[17,19,["H5127"]],[19,21,["H5833"]],[21,24,["H5337"]],[24,25,["H4480","H6440"]],[25,27,["H4428"]],[27,29,["H804"]],[29,31,["H349"]],[31,33,["H587"]],[33,34,["H4422"]]]},{"k":18036,"v":[[0,2,["H4853"]],[2,5,["H4057"]],[5,8,["H3220"]],[8,10,["H5492"]],[10,13,["H5045"]],[13,15,["H2498"]],[15,18,["H935"]],[18,21,["H4480","H4057"]],[21,24,["H3372"]],[24,25,["H4480","H776"]]]},{"k":18037,"v":[[0,2,["H7186"]],[2,3,["H2380"]],[3,5,["H5046"]],[5,10,["H898"]],[10,12,["H898"]],[12,15,["H7703"]],[15,16,["H7703"]],[16,18,["H5927"]],[18,20,["H5867"]],[20,21,["H6696"]],[21,23,["H4074"]],[23,24,["H3605"]],[24,26,["H585"]],[26,32,["H7673"]]]},{"k":18038,"v":[[0,1,["H5921","H3651"]],[1,4,["H4975"]],[4,5,["H4390"]],[5,7,["H2479"]],[7,8,["H6735"]],[8,11,["H270"]],[11,16,["H6735"]],[16,21,["H3205"]],[21,25,["H5753"]],[25,28,["H4480","H8085"]],[28,33,["H926"]],[33,36,["H4480","H7200"]],[36,38,[]]]},{"k":18039,"v":[[0,2,["H3824"]],[2,3,["H8582"]],[3,4,["H6427"]],[4,5,["H1204","(H853)"]],[5,8,["H5399"]],[8,11,["H2837"]],[11,14,["H7760"]],[14,16,["H2731"]],[16,18,[]]]},{"k":18040,"v":[[0,1,["H6186"]],[1,3,["H7979"]],[3,4,["H6822"]],[4,7,["H6844"]],[7,8,["H398"]],[8,9,["H8354"]],[9,10,["H6965"]],[10,12,["H8269"]],[12,14,["H4886"]],[14,16,["H4043"]]]},{"k":18041,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,5,["H136"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H1980"]],[9,10,["H5975"]],[10,12,["H6822"]],[12,15,["H5046"]],[15,16,["H834"]],[16,18,["H7200"]]]},{"k":18042,"v":[[0,3,["H7200"]],[3,5,["H7393"]],[5,8,["H6776"]],[8,10,["H6571"]],[10,12,["H7393"]],[12,14,["H2543"]],[14,17,["H7393"]],[17,19,["H1581"]],[19,22,["H7181"]],[22,23,["H7182"]],[23,25,["H7227"]],[25,26,["H7182"]]]},{"k":18043,"v":[[0,3,["H7121"]],[3,5,["H738"]],[5,7,["H113"]],[7,8,["H595"]],[8,9,["H5975"]],[9,10,["H8548"]],[10,11,["H5921"]],[11,13,["H4707"]],[13,16,["H3119"]],[16,18,["H595"]],[18,20,["H5324"]],[20,21,["H5921"]],[21,23,["H4931"]],[23,24,["H3605"]],[24,25,["H3915"]]]},{"k":18044,"v":[[0,2,["H2009"]],[2,3,["H2088"]],[3,4,["H935"]],[4,6,["H7393"]],[6,8,["H376"]],[8,11,["H6776"]],[11,13,["H6571"]],[13,16,["H6030"]],[16,18,["H559"]],[18,19,["H894"]],[19,21,["H5307"]],[21,23,["H5307"]],[23,25,["H3605"]],[25,28,["H6456"]],[28,31,["H430"]],[31,34,["H7665"]],[34,37,["H776"]]]},{"k":18045,"v":[[0,3,["H4098"]],[3,6,["H1121"]],[6,9,["H1637"]],[9,11,["H834"]],[11,14,["H8085"]],[14,15,["H4480","H854"]],[15,17,["H3068"]],[17,19,["H6635"]],[19,21,["H430"]],[21,23,["H3478"]],[23,26,["H5046"]],[26,28,[]]]},{"k":18046,"v":[[0,2,["H4853"]],[2,4,["H1746"]],[4,6,["H7121"]],[6,7,["H413"]],[7,11,["H4480","H8165"]],[11,12,["H8104"]],[12,13,["H4100"]],[13,16,["H4480","H3915"]],[16,17,["H8104"]],[17,18,["H4100"]],[18,21,["H4480","H3915"]]]},{"k":18047,"v":[[0,2,["H8104"]],[2,3,["H559"]],[3,5,["H1242"]],[5,6,["H857"]],[6,8,["H1571"]],[8,10,["H3915"]],[10,11,["H518"]],[11,14,["H1158"]],[14,15,["H1158"]],[15,17,["H7725"]],[17,18,["H857"]]]},{"k":18048,"v":[[0,2,["H4853"]],[2,4,["H6152"]],[4,7,["H3293"]],[7,9,["H6152"]],[9,12,["H3885"]],[12,16,["H736"]],[16,18,["H1720"]]]},{"k":18049,"v":[[0,2,["H3427"]],[2,5,["H776"]],[5,7,["H8485"]],[7,8,["H857"]],[8,9,["H4325"]],[9,14,["H6771"]],[14,16,["H6923"]],[16,19,["H3899"]],[19,22,["H5074"]]]},{"k":18050,"v":[[0,1,["H3588"]],[1,3,["H5074"]],[3,4,["H4480","H6440"]],[4,6,["H2719"]],[6,7,["H4480","H6440"]],[7,9,["H5203"]],[9,10,["H2719"]],[10,12,["H4480","H6440"]],[12,14,["H1869"]],[14,15,["H7198"]],[15,17,["H4480","H6440"]],[17,19,["H3514"]],[19,21,["H4421"]]]},{"k":18051,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,5,["H136"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H5750"]],[9,11,["H8141"]],[11,15,["H8141"]],[15,18,["H7916"]],[18,20,["H3605"]],[20,22,["H3519"]],[22,24,["H6938"]],[24,26,["H3615"]]]},{"k":18052,"v":[[0,3,["H7605"]],[3,6,["H4557"]],[6,8,["H7198"]],[8,11,["H1368"]],[11,14,["H1121"]],[14,16,["H6938"]],[16,19,["H4591"]],[19,20,["H3588"]],[20,22,["H3068"]],[22,23,["H430"]],[23,25,["H3478"]],[25,27,["H1696"]],[27,28,[]]]},{"k":18053,"v":[[0,2,["H4853"]],[2,5,["H1516"]],[5,7,["H2384"]],[7,8,["H4100"]],[8,11,["H645"]],[11,12,["H3588"]],[12,15,["H3605"]],[15,17,["H5927"]],[17,20,["H1406"]]]},{"k":18054,"v":[[0,4,["H4392"]],[4,6,["H8663"]],[6,8,["H1993"]],[8,9,["H5892"]],[9,11,["H5947"]],[11,12,["H7151"]],[12,14,["H2491"]],[14,17,["H3808"]],[17,18,["H2491"]],[18,21,["H2719"]],[21,22,["H3808"]],[22,23,["H4191"]],[23,25,["H4421"]]]},{"k":18055,"v":[[0,1,["H3605"]],[1,3,["H7101"]],[3,5,["H5074"]],[5,6,["H3162"]],[6,9,["H631"]],[9,12,["H4480","H7198"]],[12,13,["H3605"]],[13,16,["H4672"]],[16,20,["H631"]],[20,21,["H3162"]],[21,24,["H1272"]],[24,26,["H4480","H7350"]]]},{"k":18056,"v":[[0,1,["H5921","H3651"]],[1,2,["H559"]],[2,5,["H8159"]],[5,6,["H4480"]],[6,10,["H1065"]],[10,11,["H4843"]],[11,12,["H213"]],[12,13,["H408"]],[13,15,["H5162"]],[15,17,["H5921"]],[17,20,["H7701"]],[20,23,["H1323"]],[23,26,["H5971"]]]},{"k":18057,"v":[[0,1,["H3588"]],[1,5,["H3117"]],[5,7,["H4103"]],[7,11,["H4001"]],[11,14,["H3998"]],[14,17,["H136"]],[17,18,["H3069"]],[18,20,["H6635"]],[20,23,["H1516"]],[23,25,["H2384"]],[25,27,["H6979"]],[27,29,["H7023"]],[29,32,["H7771"]],[32,33,["H413"]],[33,35,["H2022"]]]},{"k":18058,"v":[[0,2,["H5867"]],[2,3,["H5375"]],[3,5,["H827"]],[5,7,["H7393"]],[7,9,["H120"]],[9,11,["H6571"]],[11,13,["H7024"]],[13,14,["H6168"]],[14,16,["H4043"]]]},{"k":18059,"v":[[0,6,["H1961"]],[6,9,["H4055"]],[9,10,["H6010"]],[10,13,["H4390"]],[13,15,["H7393"]],[15,18,["H6571"]],[18,23,["H7896","H7896"]],[23,26,["H8179"]]]},{"k":18060,"v":[[0,3,["H1540","(H853)"]],[3,5,["H4539"]],[5,7,["H3063"]],[7,11,["H5027"]],[11,13,["H1931"]],[13,14,["H3117"]],[14,15,["H413"]],[15,17,["H5402"]],[17,20,["H1004"]],[20,23,["H3293"]]]},{"k":18061,"v":[[0,3,["H7200"]],[3,6,["H1233"]],[6,9,["H5892"]],[9,11,["H1732"]],[11,12,["H3588"]],[12,15,["H7231"]],[15,19,["H6908","(H853)"]],[19,21,["H4325"]],[21,24,["H8481"]],[24,25,["H1295"]]]},{"k":18062,"v":[[0,4,["H5608"]],[4,6,["H1004"]],[6,8,["H3389"]],[8,11,["H1004"]],[11,15,["H5422"]],[15,17,["H1219"]],[17,19,["H2346"]]]},{"k":18063,"v":[[0,2,["H6213"]],[2,5,["H4724"]],[5,6,["H996"]],[6,9,["H2346"]],[9,12,["H4325"]],[12,15,["H3465"]],[15,16,["H1295"]],[16,20,["H3808"]],[20,21,["H5027"]],[21,22,["H413"]],[22,24,["H6213"]],[24,26,["H3808"]],[26,28,["H7200"]],[28,32,["H3335"]],[32,35,["H4480","H7350"]]]},{"k":18064,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,7,["H136"]],[7,8,["H3069"]],[8,10,["H6635"]],[10,11,["H7121"]],[11,13,["H1065"]],[13,16,["H4553"]],[16,19,["H7144"]],[19,22,["H2296"]],[22,24,["H8242"]]]},{"k":18065,"v":[[0,2,["H2009"]],[2,3,["H8342"]],[3,5,["H8057"]],[5,6,["H2026"]],[6,7,["H1241"]],[7,9,["H7819"]],[9,10,["H6629"]],[10,11,["H398"]],[11,12,["H1320"]],[12,14,["H8354"]],[14,15,["H3196"]],[15,18,["H398"]],[18,20,["H8354"]],[20,21,["H3588"]],[21,23,["H4279"]],[23,26,["H4191"]]]},{"k":18066,"v":[[0,4,["H1540"]],[4,7,["H241"]],[7,10,["H3068"]],[10,12,["H6635"]],[12,13,["H518"]],[13,14,["H2088"]],[14,15,["H5771"]],[15,19,["H3722"]],[19,22,["H5704"]],[22,24,["H4191"]],[24,25,["H559"]],[25,27,["H136"]],[27,28,["H3069"]],[28,30,["H6635"]]]},{"k":18067,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,7,["H6635"]],[7,8,["H1980"]],[8,9,["H935"]],[9,11,["H413"]],[11,12,["H2088"]],[12,13,["H5532"]],[13,15,["H5921"]],[15,16,["H7644"]],[16,17,["H834"]],[17,19,["H5921"]],[19,21,["H1004"]],[21,23,[]]]},{"k":18068,"v":[[0,1,["H4100"]],[1,4,["H6311"]],[4,6,["H4310"]],[6,9,["H6311"]],[9,10,["H3588"]],[10,15,["H2672"]],[15,17,["H6913"]],[17,18,["H6311"]],[18,24,["H2672"]],[24,26,["H6913"]],[26,28,["H4791"]],[28,31,["H2710"]],[31,33,["H4908"]],[33,38,["H5553"]]]},{"k":18069,"v":[[0,1,["H2009"]],[1,3,["H3068"]],[3,7,["H2904"]],[7,10,["H1397"]],[10,11,["H2925"]],[11,15,["H5844","H5844"]],[15,16,[]]]},{"k":18070,"v":[[0,5,["H6801","H6801"]],[5,7,["H6802"]],[7,11,["H1754"]],[11,12,["H413"]],[12,14,["H7342","H3027"]],[14,15,["H776"]],[15,16,["H8033"]],[16,19,["H4191"]],[19,21,["H8033"]],[21,23,["H4818"]],[23,26,["H3519"]],[26,30,["H7036"]],[30,33,["H113"]],[33,34,["H1004"]]]},{"k":18071,"v":[[0,4,["H1920"]],[4,8,["H4480","H4673"]],[8,12,["H4480","H4612"]],[12,17,["H2040"]]]},{"k":18072,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,13,["H7121"]],[13,15,["H5650"]],[15,16,["H471"]],[16,18,["H1121"]],[18,20,["H2518"]]]},{"k":18073,"v":[[0,4,["H3847"]],[4,8,["H3801"]],[8,10,["H2388"]],[10,14,["H73"]],[14,18,["H5414"]],[18,20,["H4475"]],[20,23,["H3027"]],[23,27,["H1961"]],[27,29,["H1"]],[29,32,["H3427"]],[32,34,["H3389"]],[34,38,["H1004"]],[38,40,["H3063"]]]},{"k":18074,"v":[[0,3,["H4668"]],[3,6,["H1004"]],[6,8,["H1732"]],[8,11,["H5414"]],[11,12,["H5921"]],[12,14,["H7926"]],[14,18,["H6605"]],[18,20,["H369"]],[20,22,["H5462"]],[22,26,["H5462"]],[26,28,["H369"]],[28,30,["H6605"]]]},{"k":18075,"v":[[0,4,["H8628"]],[4,8,["H3489"]],[8,11,["H539"]],[11,12,["H4725"]],[12,16,["H1961"]],[16,19,["H3519"]],[19,20,["H3678"]],[20,23,["H1"]],[23,24,["H1004"]]]},{"k":18076,"v":[[0,4,["H8518"]],[4,5,["H5921"]],[5,7,["H3605"]],[7,9,["H3519"]],[9,12,["H1"]],[12,13,["H1004"]],[13,15,["H6631"]],[15,18,["H6849"]],[18,19,["H3605"]],[19,20,["H3627"]],[20,23,["H6996"]],[23,26,["H4480","H3627"]],[26,28,["H101"]],[28,30,["H5704"]],[30,31,["H3605"]],[31,33,["H3627"]],[33,35,["H5035"]]]},{"k":18077,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,4,["H5002"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,11,["H3489"]],[11,14,["H8628"]],[14,17,["H539"]],[17,18,["H4725"]],[18,20,["H4185"]],[20,24,["H1438"]],[24,26,["H5307"]],[26,29,["H4853"]],[29,30,["H834"]],[30,32,["H5921"]],[32,37,["H3772"]],[37,38,["H3588"]],[38,40,["H3068"]],[40,42,["H1696"]],[42,43,[]]]},{"k":18078,"v":[[0,2,["H4853"]],[2,4,["H6865"]],[4,5,["H3213"]],[5,7,["H591"]],[7,9,["H8659"]],[9,10,["H3588"]],[10,14,["H7703"]],[14,20,["H4480","H1004"]],[20,23,["H4480","H935"]],[23,26,["H4480","H776"]],[26,28,["H3794"]],[28,31,["H1540"]],[31,33,[]]]},{"k":18079,"v":[[0,2,["H1826"]],[2,4,["H3427"]],[4,7,["H339"]],[7,11,["H5503"]],[11,13,["H6721"]],[13,16,["H5674"]],[16,18,["H3220"]],[18,20,["H4390"]]]},{"k":18080,"v":[[0,3,["H7227"]],[3,4,["H4325"]],[4,6,["H2233"]],[6,8,["H7883"]],[8,10,["H7105"]],[10,13,["H2975"]],[13,16,["H8393"]],[16,19,["H1961"]],[19,21,["H5505"]],[21,23,["H1471"]]]},{"k":18081,"v":[[0,3,["H954"]],[3,5,["H6721"]],[5,6,["H3588"]],[6,8,["H3220"]],[8,10,["H559"]],[10,13,["H4581"]],[13,16,["H3220"]],[16,17,["H559"]],[17,19,["H2342"]],[19,20,["H3808"]],[20,21,["H3808"]],[21,24,["H3205"]],[24,25,["H3808"]],[25,29,["H1431"]],[29,31,["H970"]],[31,34,["H7311"]],[34,35,["H1330"]]]},{"k":18082,"v":[[0,1,["H834"]],[1,4,["H8088"]],[4,6,["H4714"]],[6,12,["H2342"]],[12,15,["H8088"]],[15,17,["H6865"]]]},{"k":18083,"v":[[0,3,["H5674"]],[3,5,["H8659"]],[5,6,["H3213"]],[6,8,["H3427"]],[8,11,["H339"]]]},{"k":18084,"v":[[0,2,["H2063"]],[2,4,["H5947"]],[4,7,["H6927"]],[7,10,["H6924"]],[10,11,["H4480","H3117"]],[11,14,["H7272"]],[14,16,["H2986"]],[16,19,["H4480","H7350"]],[19,21,["H1481"]]]},{"k":18085,"v":[[0,1,["H4310"]],[1,5,["H3289","H2063"]],[5,6,["H5921"]],[6,7,["H6865"]],[7,9,["H5849"]],[9,11,["H834"]],[11,12,["H5503"]],[12,14,["H8269"]],[14,16,["H3669"]],[16,19,["H3513"]],[19,22,["H776"]]]},{"k":18086,"v":[[0,2,["H3068"]],[2,4,["H6635"]],[4,6,["H3289"]],[6,9,["H2490"]],[9,11,["H1347"]],[11,13,["H3605"]],[13,14,["H6643"]],[14,19,["H7043"]],[19,20,["H3605"]],[20,22,["H3513"]],[22,25,["H776"]]]},{"k":18087,"v":[[0,2,["H5674"]],[2,4,["H776"]],[4,7,["H2975"]],[7,9,["H1323"]],[9,11,["H8659"]],[11,14,["H369"]],[14,15,["H5750"]],[15,16,["H4206"]]]},{"k":18088,"v":[[0,3,["H5186"]],[3,5,["H3027"]],[5,6,["H5921"]],[6,8,["H3220"]],[8,10,["H7264"]],[10,12,["H4467"]],[12,14,["H3068"]],[14,18,["H6680"]],[18,19,["H413"]],[19,21,["H3667"]],[21,24,["H8045"]],[24,27,["H4581"]],[27,28,[]]]},{"k":18089,"v":[[0,3,["H559"]],[3,6,["H3808"]],[6,7,["H5750"]],[7,8,["H5937"]],[8,11,["H6231"]],[11,12,["H1330"]],[12,13,["H1323"]],[13,15,["H6721"]],[15,16,["H6965"]],[16,18,["H5674"]],[18,20,["H3794"]],[20,21,["H8033"]],[21,22,["H1571"]],[22,27,["H5117","H3808"]]]},{"k":18090,"v":[[0,1,["H2005"]],[1,3,["H776"]],[3,6,["H3778"]],[6,7,["H2088"]],[7,8,["H5971"]],[8,9,["H1961"]],[9,10,["H3808"]],[10,13,["H804"]],[13,14,["H3245"]],[14,22,["H6728"]],[22,25,["H6965"]],[25,27,["H971"]],[27,31,["H6209"]],[31,33,["H759"]],[33,37,["H7760"]],[37,40,["H4654"]]]},{"k":18091,"v":[[0,1,["H3213"]],[1,3,["H591"]],[3,5,["H8659"]],[5,6,["H3588"]],[6,8,["H4581"]],[8,11,["H7703"]]]},{"k":18092,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,11,["H6865"]],[11,14,["H7911"]],[14,15,["H7657"]],[15,16,["H8141"]],[16,20,["H3117"]],[20,22,["H259"]],[22,23,["H4428"]],[23,26,["H4480","H7093"]],[26,28,["H7657"]],[28,29,["H8141"]],[29,31,["H6865"]],[31,32,["H7892"]],[32,35,["H2181"]]]},{"k":18093,"v":[[0,1,["H3947"]],[1,3,["H3658"]],[3,5,["H5437"]],[5,7,["H5892"]],[7,9,["H2181"]],[9,13,["H7911"]],[13,15,["H3190"]],[15,16,["H5059"]],[16,18,["H7235"]],[18,19,["H7892"]],[19,20,["H4616"]],[20,24,["H2142"]]]},{"k":18094,"v":[[0,6,["H1961"]],[6,9,["H4480","H7093"]],[9,11,["H7657"]],[11,12,["H8141"]],[12,15,["H3068"]],[15,17,["H6485","(H853)"]],[17,18,["H6865"]],[18,22,["H7725"]],[22,25,["H868"]],[25,29,["H2181"]],[29,30,["H854"]],[30,31,["H3605"]],[31,33,["H4467"]],[33,36,["H776"]],[36,37,["H5921"]],[37,39,["H6440"]],[39,42,["H127"]]]},{"k":18095,"v":[[0,3,["H5504"]],[3,6,["H868"]],[6,8,["H1961"]],[8,9,["H6944"]],[9,12,["H3068"]],[12,15,["H3808"]],[15,17,["H686"]],[17,18,["H3808"]],[18,20,["H2630"]],[20,21,["H3588"]],[21,23,["H5504"]],[23,25,["H1961"]],[25,29,["H3427"]],[29,30,["H6440"]],[30,32,["H3068"]],[32,34,["H398"]],[34,35,["H7654"]],[35,38,["H6266"]],[38,39,["H4374"]]]},{"k":18096,"v":[[0,1,["H2009"]],[1,3,["H3068"]],[3,7,["H1238","H776"]],[7,11,["H1110"]],[11,16,["H5753","H6440"]],[16,19,["H6327"]],[19,21,["H3427"]],[21,22,[]]]},{"k":18097,"v":[[0,4,["H1961"]],[4,8,["H5971"]],[8,12,["H3548"]],[12,16,["H5650"]],[16,20,["H113"]],[20,24,["H8198"]],[24,28,["H1404"]],[28,32,["H7069"]],[32,36,["H4376"]],[36,40,["H3867"]],[40,44,["H3867"]],[44,50,["H5383"]],[50,51,["H834"]],[51,56,["H5378"]],[56,58,[]]]},{"k":18098,"v":[[0,2,["H776"]],[2,6,["H1238","H1238"]],[6,9,["H962","H962"]],[9,10,["H3588"]],[10,12,["H3068"]],[12,14,["H1696","(H853)"]],[14,15,["H2088"]],[15,16,["H1697"]]]},{"k":18099,"v":[[0,2,["H776"]],[2,3,["H56"]],[3,6,["H5034"]],[6,8,["H8398"]],[8,9,["H535"]],[9,12,["H5034"]],[12,14,["H4791"]],[14,15,["H5971"]],[15,18,["H776"]],[18,20,["H535"]]]},{"k":18100,"v":[[0,2,["H776"]],[2,5,["H2610"]],[5,6,["H8478"]],[6,8,["H3427"]],[8,10,["H3588"]],[10,13,["H5674"]],[13,15,["H8451"]],[15,16,["H2498"]],[16,18,["H2706"]],[18,19,["H6565"]],[19,21,["H5769"]],[21,22,["H1285"]]]},{"k":18101,"v":[[0,1,["H5921","H3651"]],[1,4,["H423"]],[4,5,["H398"]],[5,7,["H776"]],[7,11,["H3427"]],[11,14,["H816"]],[14,15,["H5921","H3651"]],[15,17,["H3427"]],[17,20,["H776"]],[20,22,["H2787"]],[22,24,["H4213"]],[24,25,["H582"]],[25,26,["H7604"]]]},{"k":18102,"v":[[0,3,["H8492"]],[3,4,["H56"]],[4,6,["H1612"]],[6,7,["H535"]],[7,8,["H3605"]],[8,10,["H8056","H3820"]],[10,12,["H584"]]]},{"k":18103,"v":[[0,2,["H4885"]],[2,4,["H8596"]],[4,5,["H7673"]],[5,7,["H7588"]],[7,11,["H5947"]],[11,12,["H2308"]],[12,14,["H4885"]],[14,17,["H3658"]],[17,18,["H7673"]]]},{"k":18104,"v":[[0,3,["H3808"]],[3,4,["H8354"]],[4,5,["H3196"]],[5,8,["H7892"]],[8,10,["H7941"]],[10,13,["H4843"]],[13,17,["H8354"]],[17,18,[]]]},{"k":18105,"v":[[0,2,["H7151"]],[2,4,["H8414"]],[4,7,["H7665"]],[7,8,["H3605"]],[8,9,["H1004"]],[9,12,["H5462"]],[12,18,["H4480","H935"]]]},{"k":18106,"v":[[0,4,["H6682"]],[4,5,["H5921"]],[5,6,["H3196"]],[6,9,["H2351"]],[9,10,["H3605"]],[10,11,["H8057"]],[11,13,["H6150"]],[13,15,["H4885"]],[15,18,["H776"]],[18,20,["H1540"]]]},{"k":18107,"v":[[0,3,["H5892"]],[3,5,["H7604"]],[5,6,["H8047"]],[6,9,["H8179"]],[9,11,["H3807"]],[11,13,["H7591"]]]},{"k":18108,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,5,["H1961"]],[5,8,["H7130"]],[8,11,["H776"]],[11,12,["H8432"]],[12,14,["H5971"]],[14,20,["H5363"]],[20,24,["H2132"]],[24,29,["H5955"]],[29,30,["H518"]],[30,32,["H1210"]],[32,34,["H3615"]]]},{"k":18109,"v":[[0,1,["H1992"]],[1,4,["H5375"]],[4,6,["H6963"]],[6,9,["H7442"]],[9,12,["H1347"]],[12,15,["H3068"]],[15,19,["H6670"]],[19,22,["H4480","H3220"]]]},{"k":18110,"v":[[0,1,["H5921","H3651"]],[1,2,["H3513"]],[2,5,["H3068"]],[5,8,["H217"]],[8,11,["H8034"]],[11,14,["H3068"]],[14,15,["H430"]],[15,17,["H3478"]],[17,20,["H339"]],[20,23,["H3220"]]]},{"k":18111,"v":[[0,4,["H4480","H3671"]],[4,7,["H776"]],[7,10,["H8085"]],[10,11,["H2158"]],[11,13,["H6643"]],[13,16,["H6662"]],[16,19,["H559"]],[19,21,["H7334"]],[21,23,["H7334"]],[23,24,["H188"]],[24,29,["H898"]],[29,32,["H898"]],[32,36,["H898"]],[36,40,["H898","H899"]]]},{"k":18112,"v":[[0,1,["H6343"]],[1,4,["H6354"]],[4,7,["H6341"]],[7,9,["H5921"]],[9,12,["H3427"]],[12,15,["H776"]]]},{"k":18113,"v":[[0,6,["H1961"]],[6,10,["H5127"]],[10,13,["H4480","H6963"]],[13,16,["H6343"]],[16,18,["H5307"]],[18,19,["H413"]],[19,21,["H6354"]],[21,26,["H5927"]],[26,30,["H4480","H8432"]],[30,33,["H6354"]],[33,36,["H3920"]],[36,39,["H6341"]],[39,40,["H3588"]],[40,42,["H699"]],[42,45,["H4480","H4791"]],[45,47,["H6605"]],[47,50,["H4146"]],[50,53,["H776"]],[53,55,["H7493"]]]},{"k":18114,"v":[[0,2,["H776"]],[2,6,["H7489","H7489"]],[6,8,["H776"]],[8,11,["H6565","H6565"]],[11,13,["H776"]],[13,16,["H4131","H4131"]]]},{"k":18115,"v":[[0,2,["H776"]],[2,7,["H5128","H5128"]],[7,10,["H7910"]],[10,14,["H5110"]],[14,17,["H4412"]],[17,20,["H6588"]],[20,24,["H3513"]],[24,25,["H5921"]],[25,30,["H5307"]],[30,32,["H3808"]],[32,33,["H6965"]],[33,34,["H3254"]]]},{"k":18116,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H3068"]],[12,14,["H6485","H5921"]],[14,16,["H6635"]],[16,20,["H4791"]],[20,24,["H4791"]],[24,27,["H4428"]],[27,30,["H127"]],[30,31,["H5921"]],[31,33,["H127"]]]},{"k":18117,"v":[[0,6,["H622"]],[6,8,["H616"]],[8,10,["H626"]],[10,11,["H5921"]],[11,13,["H953"]],[13,18,["H5462"]],[18,19,["H5921"]],[19,21,["H4525"]],[21,24,["H4480","H7230"]],[24,25,["H3117"]],[25,29,["H6485"]]]},{"k":18118,"v":[[0,3,["H3842"]],[3,6,["H2659"]],[6,9,["H2535"]],[9,10,["H954"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,15,["H6635"]],[15,17,["H4427"]],[17,19,["H2022"]],[19,20,["H6726"]],[20,23,["H3389"]],[23,25,["H5048"]],[25,27,["H2205"]],[27,28,["H3519"]]]},{"k":18119,"v":[[0,2,["H3068"]],[2,3,["H859"]],[3,6,["H430"]],[6,9,["H7311"]],[9,13,["H3034"]],[13,15,["H8034"]],[15,16,["H3588"]],[16,19,["H6213"]],[19,20,["H6382"]],[20,23,["H6098"]],[23,25,["H4480","H7350"]],[25,27,["H530"]],[27,29,["H544"]]]},{"k":18120,"v":[[0,1,["H3588"]],[1,4,["H7760"]],[4,7,["H4480","H5892"]],[7,9,["H1530"]],[9,12,["H1219"]],[12,13,["H7151"]],[13,15,["H4654"]],[15,17,["H759"]],[17,19,["H2114"]],[19,23,["H4480","H5892"]],[23,26,["H3808","H5769"]],[26,28,["H1129"]]]},{"k":18121,"v":[[0,1,["H5921","H3651"]],[1,4,["H5794"]],[4,5,["H5971"]],[5,6,["H3513"]],[6,9,["H7151"]],[9,12,["H6184"]],[12,13,["H1471"]],[13,15,["H3372"]],[15,16,[]]]},{"k":18122,"v":[[0,1,["H3588"]],[1,4,["H1961"]],[4,6,["H4581"]],[6,9,["H1800"]],[9,11,["H4581"]],[11,14,["H34"]],[14,17,["H6862"]],[17,19,["H4268"]],[19,22,["H4480","H2230"]],[22,24,["H6738"]],[24,27,["H4480","H2721"]],[27,28,["H3588"]],[28,30,["H7307"]],[30,34,["H6184"]],[34,38,["H2230"]],[38,41,["H7023"]]]},{"k":18123,"v":[[0,4,["H3665"]],[4,6,["H7588"]],[6,8,["H2114"]],[8,11,["H2721"]],[11,15,["H6724"]],[15,18,["H2721"]],[18,21,["H6738"]],[21,24,["H5645"]],[24,26,["H2159"]],[26,30,["H6184"]],[30,34,["H6030"]]]},{"k":18124,"v":[[0,3,["H2088"]],[3,4,["H2022"]],[4,7,["H3068"]],[7,9,["H6635"]],[9,10,["H6213"]],[10,12,["H3605"]],[12,13,["H5971"]],[13,15,["H4960"]],[15,18,["H8081"]],[18,20,["H4960"]],[20,25,["H8105"]],[25,28,["H8081"]],[28,31,["H4229"]],[31,36,["H8105"]],[36,38,["H2212"]]]},{"k":18125,"v":[[0,4,["H1104"]],[4,6,["H2088"]],[6,7,["H2022"]],[7,9,["H6440"]],[9,12,["H3875"]],[12,13,["H3874"]],[13,14,["H5921"]],[14,15,["H3605"]],[15,16,["H5971"]],[16,19,["H4541"]],[19,22,["H5259"]],[22,23,["H5921"]],[23,24,["H3605"]],[24,25,["H1471"]]]},{"k":18126,"v":[[0,4,["H1104"]],[4,5,["H4194"]],[5,7,["H5331"]],[7,10,["H136"]],[10,11,["H3069"]],[11,14,["H4229"]],[14,15,["H1832"]],[15,17,["H4480","H5921"]],[17,18,["H3605"]],[18,19,["H6440"]],[19,22,["H2781"]],[22,25,["H5971"]],[25,29,["H5493"]],[29,31,["H4480","H5921"]],[31,32,["H3605"]],[32,34,["H776"]],[34,35,["H3588"]],[35,37,["H3068"]],[37,39,["H1696"]],[39,40,[]]]},{"k":18127,"v":[[0,5,["H559"]],[5,7,["H1931"]],[7,8,["H3117"]],[8,9,["H2009"]],[9,10,["H2088"]],[10,13,["H430"]],[13,16,["H6960"]],[16,22,["H3467"]],[22,24,["H2088"]],[24,27,["H3068"]],[27,30,["H6960"]],[30,36,["H1523"]],[36,38,["H8055"]],[38,41,["H3444"]]]},{"k":18128,"v":[[0,1,["H3588"]],[1,3,["H2088"]],[3,4,["H2022"]],[4,7,["H3027"]],[7,10,["H3068"]],[10,11,["H5117"]],[11,13,["H4124"]],[13,17,["H1758"]],[17,18,["H8478"]],[18,22,["H4963"]],[22,25,["H1758"]],[25,28,["H4087"]]]},{"k":18129,"v":[[0,5,["H6566"]],[5,7,["H3027"]],[7,10,["H7130"]],[10,13,["H834"]],[13,16,["H7811"]],[16,18,["H6566"]],[18,22,["H7811"]],[22,27,["H8213"]],[27,29,["H1346"]],[29,31,["H5973"]],[31,33,["H698"]],[33,36,["H3027"]]]},{"k":18130,"v":[[0,3,["H4013"]],[3,7,["H4869"]],[7,10,["H2346"]],[10,14,["H7817"]],[14,16,["H8213"]],[16,18,["H5060"]],[18,21,["H776"]],[21,23,["H5704"]],[23,25,["H6083"]]]},{"k":18131,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H2088"]],[5,6,["H7892"]],[6,8,["H7891"]],[8,11,["H776"]],[11,13,["H3063"]],[13,17,["H5797"]],[17,18,["H5892"]],[18,19,["H3444"]],[19,22,["H7896"]],[22,24,["H2346"]],[24,26,["H2426"]]]},{"k":18132,"v":[[0,1,["H6605"]],[1,4,["H8179"]],[4,7,["H6662"]],[7,8,["H1471"]],[8,10,["H8104"]],[10,12,["H529"]],[12,15,["H935"]]]},{"k":18133,"v":[[0,3,["H5341"]],[3,7,["H7965","H7965"]],[7,9,["H3336"]],[9,11,["H5564"]],[11,14,["H3588"]],[14,16,["H982"]],[16,18,[]]]},{"k":18134,"v":[[0,1,["H982"]],[1,5,["H3068"]],[5,7,["H5704","H5703"]],[7,8,["H3588"]],[8,11,["H3050"]],[11,12,["H3068"]],[12,14,["H5769"]],[14,15,["H6697"]]]},{"k":18135,"v":[[0,1,["H3588"]],[1,4,["H7817"]],[4,7,["H3427"]],[7,9,["H4791"]],[9,11,["H7682"]],[11,12,["H7151"]],[12,16,["H8213"]],[16,20,["H8213"]],[20,22,["H5704"]],[22,24,["H776"]],[24,26,["H5060"]],[26,29,["H5704"]],[29,31,["H6083"]]]},{"k":18136,"v":[[0,2,["H7272"]],[2,6,["H7429"]],[6,9,["H7272"]],[9,12,["H6041"]],[12,15,["H6471"]],[15,18,["H1800"]]]},{"k":18137,"v":[[0,2,["H734"]],[2,5,["H6662"]],[5,7,["H4339"]],[7,10,["H3477"]],[10,12,["H6424"]],[12,14,["H4570"]],[14,17,["H6662"]]]},{"k":18138,"v":[[0,1,["H637"]],[1,4,["H734"]],[4,7,["H4941"]],[7,9,["H3068"]],[9,12,["H6960"]],[12,16,["H8378"]],[16,19,["H5315"]],[19,23,["H8034"]],[23,27,["H2143"]],[27,29,[]]]},{"k":18139,"v":[[0,3,["H5315"]],[3,6,["H183"]],[6,10,["H3915"]],[10,11,["H637"]],[11,14,["H7307"]],[14,15,["H7130"]],[15,21,["H7836"]],[21,22,["H3588"]],[22,23,["H834"]],[23,25,["H4941"]],[25,29,["H776"]],[29,31,["H3427"]],[31,34,["H8398"]],[34,36,["H3925"]],[36,37,["H6664"]]]},{"k":18140,"v":[[0,4,["H2603"]],[4,7,["H7563"]],[7,11,["H1077"]],[11,12,["H3925"]],[12,13,["H6664"]],[13,16,["H776"]],[16,18,["H5229"]],[18,22,["H5765"]],[22,25,["H1077"]],[25,26,["H7200"]],[26,28,["H1348"]],[28,31,["H3068"]]]},{"k":18141,"v":[[0,1,["H3068"]],[1,4,["H3027"]],[4,7,["H5375"]],[7,10,["H1077"]],[10,11,["H2372"]],[11,15,["H2372"]],[15,18,["H954"]],[18,21,["H7068"]],[21,24,["H5971"]],[24,25,["H637"]],[25,27,["H784"]],[27,30,["H6862"]],[30,32,["H398"]],[32,33,[]]]},{"k":18142,"v":[[0,1,["H3068"]],[1,4,["H8239"]],[4,5,["H7965"]],[5,8,["H3588"]],[8,10,["H1571"]],[10,12,["H6466"]],[12,13,["H3605"]],[13,15,["H4639"]],[15,17,[]]]},{"k":18143,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,6,["H113"]],[6,7,["H2108"]],[7,11,["H1166"]],[11,17,["H905"]],[17,21,["H2142"]],[21,24,["H8034"]]]},{"k":18144,"v":[[0,3,["H4191"]],[3,6,["H1077"]],[6,7,["H2421"]],[7,10,["H7496"]],[10,13,["H1077"]],[13,14,["H6965"]],[14,15,["H3651"]],[15,18,["H6485"]],[18,20,["H8045"]],[20,24,["H3605"]],[24,26,["H2143"]],[26,28,["H6"]]]},{"k":18145,"v":[[0,3,["H3254"]],[3,5,["H1471"]],[5,7,["H3068"]],[7,10,["H3254"]],[10,12,["H1471"]],[12,15,["H3513"]],[15,20,["H7368"]],[20,22,["H3605"]],[22,24,["H7099"]],[24,27,["H776"]]]},{"k":18146,"v":[[0,1,["H3068"]],[1,3,["H6862"]],[3,6,["H6485"]],[6,10,["H6694"]],[10,12,["H3908"]],[12,15,["H4148"]],[15,18,[]]]},{"k":18147,"v":[[0,2,["H3644"]],[2,6,["H2030"]],[6,9,["H7126"]],[9,14,["H3205"]],[14,17,["H2342"]],[17,20,["H2199"]],[20,23,["H2256"]],[23,24,["H3651"]],[24,27,["H1961"]],[27,30,["H4480","H6440"]],[30,32,["H3068"]]]},{"k":18148,"v":[[0,5,["H2029"]],[5,10,["H2342"]],[10,15,["H3644"]],[15,17,["H3205"]],[17,18,["H7307"]],[18,21,["H1077"]],[21,22,["H6213"]],[22,24,["H3444"]],[24,27,["H776"]],[27,28,["H1077"]],[28,31,["H3427"]],[31,34,["H8398"]],[34,35,["H5307"]]]},{"k":18149,"v":[[0,2,["H4191"]],[2,5,["H2421"]],[5,10,["H5038"]],[10,13,["H6965"]],[13,14,["H6974"]],[14,16,["H7442"]],[16,19,["H7931"]],[19,21,["H6083"]],[21,22,["H3588"]],[22,24,["H2919"]],[24,28,["H2919"]],[28,30,["H219"]],[30,33,["H776"]],[33,36,["H5307"]],[36,38,["H7496"]]]},{"k":18150,"v":[[0,1,["H1980"]],[1,3,["H5971"]],[3,4,["H935"]],[4,8,["H2315"]],[8,10,["H5462"]],[10,12,["H1817"]],[12,13,["H1157"]],[13,15,["H2247"]],[15,22,["H4592"]],[22,23,["H7281"]],[23,24,["H5704"]],[24,26,["H2195"]],[26,28,["H5674"]]]},{"k":18151,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H3068"]],[4,5,["H3318"]],[5,9,["H4480","H4725"]],[9,11,["H6485"]],[11,13,["H3427"]],[13,16,["H776"]],[16,19,["H5771"]],[19,21,["H776"]],[21,24,["H1540","(H853)"]],[24,26,["H1818"]],[26,29,["H3808"]],[29,30,["H5750"]],[30,31,["H3680","H5921"]],[31,33,["H2026"]]]},{"k":18152,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H3068"]],[5,8,["H7186"]],[8,10,["H1419"]],[10,12,["H2389"]],[12,13,["H2719"]],[13,15,["H6485","H5921"]],[15,16,["H3882"]],[16,18,["H1281"]],[18,19,["H5175"]],[19,21,["H3882"]],[21,23,["H6129"]],[23,24,["H5175"]],[24,28,["H2026","(H853)"]],[28,30,["H8577"]],[30,31,["H834"]],[31,35,["H3220"]]]},{"k":18153,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,4,["H6031"]],[4,9,["H3754"]],[9,12,["H2531"]]]},{"k":18154,"v":[[0,1,["H589"]],[1,3,["H3068"]],[3,5,["H5341"]],[5,9,["H8248"]],[9,12,["H7281"]],[12,13,["H6435"]],[13,15,["H6485","H5921"]],[15,19,["H5341"]],[19,21,["H3915"]],[21,23,["H3117"]]]},{"k":18155,"v":[[0,1,["H2534"]],[1,3,["H369"]],[3,6,["H4310"]],[6,8,["H5414"]],[8,10,["H8068"]],[10,12,["H7898"]],[12,16,["H4421"]],[16,19,["H6585"]],[19,24,["H6702"]],[24,26,["H3162"]]]},{"k":18156,"v":[[0,1,["H176"]],[1,5,["H2388"]],[5,8,["H4581"]],[8,12,["H6213"]],[12,13,["H7965"]],[13,19,["H6213"]],[19,20,["H7965"]],[20,22,[]]]},{"k":18157,"v":[[0,6,["H935"]],[6,8,["H3290"]],[8,11,["H8327"]],[11,12,["H3478"]],[12,14,["H6692"]],[14,16,["H6524"]],[16,18,["H4390"]],[18,20,["H6440"]],[20,23,["H8398"]],[23,25,["H8570"]]]},{"k":18158,"v":[[0,3,["H5221"]],[3,7,["H4347"]],[7,10,["H5221"]],[10,15,["H2026"]],[15,19,["H2027"]],[19,24,["H2026"]],[24,26,[]]]},{"k":18159,"v":[[0,2,["H5432"]],[2,6,["H7971"]],[6,9,["H7378"]],[9,13,["H1898"]],[13,15,["H7186"]],[15,16,["H7307"]],[16,19,["H3117"]],[19,23,["H6921"]]]},{"k":18160,"v":[[0,2,["H2063"]],[2,3,["H3651"]],[3,6,["H5771"]],[6,8,["H3290"]],[8,10,["H3722"]],[10,12,["H2088"]],[12,14,["H3605"]],[14,16,["H6529"]],[16,19,["H5493"]],[19,21,["H2403"]],[21,24,["H7760"]],[24,25,["H3605"]],[25,27,["H68"]],[27,30,["H4196"]],[30,32,["H68","H1615"]],[32,37,["H5310"]],[37,39,["H842"]],[39,41,["H2553"]],[41,43,["H3808"]],[43,45,["H6965"]]]},{"k":18161,"v":[[0,1,["H3588"]],[1,3,["H1219"]],[3,4,["H5892"]],[4,7,["H910"]],[7,10,["H5116"]],[10,11,["H7971"]],[11,13,["H5800"]],[13,16,["H4057"]],[16,17,["H8033"]],[17,20,["H5695"]],[20,21,["H7462"]],[21,23,["H8033"]],[23,27,["H7257"]],[27,29,["H3615"]],[29,31,["H5585"]],[31,32,[]]]},{"k":18162,"v":[[0,3,["H7105"]],[3,6,["H3001"]],[6,11,["H7665"]],[11,13,["H802"]],[13,14,["H935"]],[14,19,["H215","(H853)"]],[19,20,["H3588"]],[20,24,["H5971"]],[24,26,["H3808"]],[26,27,["H998"]],[27,28,["H5921","H3651"]],[28,29,["H1931"]],[29,31,["H6213"]],[31,34,["H3808"]],[34,36,["H7355"]],[36,42,["H3335"]],[42,48,["H2603","H3808"]]]},{"k":18163,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H3068"]],[12,15,["H2251"]],[15,18,["H4480","H7641"]],[18,21,["H5104"]],[21,22,["H5704"]],[22,24,["H5158"]],[24,26,["H4714"]],[26,28,["H859"]],[28,31,["H3950"]],[31,32,["H259"]],[32,34,["H259"]],[34,37,["H1121"]],[37,39,["H3478"]]]},{"k":18164,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H1419"]],[12,13,["H7782"]],[13,16,["H8628"]],[16,20,["H935"]],[20,25,["H6"]],[25,28,["H776"]],[28,30,["H804"]],[30,33,["H5080"]],[33,36,["H776"]],[36,38,["H4714"]],[38,41,["H7812"]],[41,43,["H3068"]],[43,46,["H6944"]],[46,47,["H2022"]],[47,49,["H3389"]]]},{"k":18165,"v":[[0,1,["H1945"]],[1,4,["H5850"]],[4,6,["H1348"]],[6,9,["H7910"]],[9,11,["H669"]],[11,13,["H6643"]],[13,14,["H8597"]],[14,17,["H5034"]],[17,18,["H6731"]],[18,19,["H834"]],[19,21,["H5921"]],[21,23,["H7218"]],[23,26,["H8081"]],[26,27,["H1516"]],[27,32,["H1986"]],[32,34,["H3196"]]]},{"k":18166,"v":[[0,1,["H2009"]],[1,3,["H136"]],[3,6,["H2389"]],[6,9,["H533"]],[9,13,["H2230"]],[13,15,["H1259"]],[15,18,["H6986"]],[18,19,["H8178"]],[19,22,["H2230"]],[22,24,["H3524"]],[24,25,["H4325"]],[25,26,["H7857"]],[26,29,["H5117"]],[29,32,["H776"]],[32,35,["H3027"]]]},{"k":18167,"v":[[0,2,["H5850"]],[2,4,["H1348"]],[4,6,["H7910"]],[6,8,["H669"]],[8,11,["H7429"]],[11,13,["H7272"]]]},{"k":18168,"v":[[0,3,["H6643"]],[3,4,["H8597"]],[4,5,["H834"]],[5,7,["H5921"]],[7,9,["H7218"]],[9,12,["H8081"]],[12,13,["H1516"]],[13,15,["H1961"]],[15,17,["H5034"]],[17,18,["H6733"]],[18,23,["H1061"]],[23,24,["H2962"]],[24,26,["H7019"]],[26,27,["H834"]],[27,31,["H7200"]],[31,34,["H7200"]],[34,38,["H5750"]],[38,41,["H3709"]],[41,45,["H1104"]]]},{"k":18169,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H3068"]],[6,8,["H6635"]],[8,9,["H1961"]],[9,12,["H5850"]],[12,14,["H6643"]],[14,18,["H6843"]],[18,20,["H8597"]],[20,23,["H7605"]],[23,26,["H5971"]]]},{"k":18170,"v":[[0,4,["H7307"]],[4,6,["H4941"]],[6,10,["H3427"]],[10,11,["H5921"]],[11,12,["H4941"]],[12,15,["H1369"]],[15,19,["H7725"]],[19,21,["H4421"]],[21,24,["H8179"]]]},{"k":18171,"v":[[0,2,["H428"]],[2,3,["H1571"]],[3,5,["H7686"]],[5,7,["H3196"]],[7,11,["H7941"]],[11,16,["H8582"]],[16,18,["H3548"]],[18,21,["H5030"]],[21,23,["H7686"]],[23,26,["H7941"]],[26,30,["H1104"]],[30,31,["H4480"]],[31,32,["H3196"]],[32,38,["H8582"]],[38,39,["H4480"]],[39,41,["H7941"]],[41,43,["H7686"]],[43,45,["H7203"]],[45,47,["H6328"]],[47,49,["H6417"]]]},{"k":18172,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,3,["H7979"]],[3,5,["H4390"]],[5,7,["H6892"]],[7,9,["H6675"]],[9,14,["H1097"]],[14,15,["H4725"]],[15,16,[]]]},{"k":18173,"v":[[0,0,["(H853)"]],[0,1,["H4310"]],[1,4,["H3384"]],[4,5,["H1844"]],[5,7,["H4310"]],[7,12,["H995"]],[12,13,["H8052"]],[13,17,["H1580"]],[17,20,["H4480","H2461"]],[20,22,["H6267"]],[22,25,["H4480","H7699"]]]},{"k":18174,"v":[[0,1,["H3588"]],[1,2,["H6673"]],[2,6,["H6673"]],[6,7,["H6673"]],[7,9,["H6673"]],[9,10,["H6957"]],[10,12,["H6957"]],[12,13,["H6957"]],[13,15,["H6957"]],[15,16,["H8033"]],[16,18,["H2191"]],[18,20,["H8033"]],[20,22,["H2191"]]]},{"k":18175,"v":[[0,1,["H3588"]],[1,3,["H3934"]],[3,4,["H8193"]],[4,6,["H312"]],[6,7,["H3956"]],[7,10,["H1696"]],[10,11,["H413"]],[11,12,["H2088"]],[12,13,["H5971"]]]},{"k":18176,"v":[[0,1,["H413"]],[1,2,["H834"]],[2,4,["H559"]],[4,5,["H2063"]],[5,8,["H4496"]],[8,14,["H5889"]],[14,16,["H5117"]],[16,18,["H2063"]],[18,21,["H4774"]],[21,24,["H14"]],[24,25,["H3808"]],[25,26,["H8085"]]]},{"k":18177,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,10,["H6673"]],[10,12,["H6673"]],[12,13,["H6673"]],[13,15,["H6673"]],[15,16,["H6957"]],[16,18,["H6957"]],[18,19,["H6957"]],[19,21,["H6957"]],[21,22,["H8033"]],[22,24,["H2191"]],[24,26,["H8033"]],[26,28,["H2191"]],[28,29,["H4616"]],[29,32,["H1980"]],[32,34,["H3782"]],[34,35,["H268"]],[35,38,["H7665"]],[38,40,["H3369"]],[40,42,["H3920"]]]},{"k":18178,"v":[[0,1,["H3651"]],[1,2,["H8085"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,9,["H3944"]],[9,10,["H376"]],[10,12,["H4910"]],[12,13,["H2088"]],[13,14,["H5971"]],[14,15,["H834"]],[15,18,["H3389"]]]},{"k":18179,"v":[[0,1,["H3588"]],[1,4,["H559"]],[4,7,["H3772"]],[7,9,["H1285"]],[9,10,["H854"]],[10,11,["H4194"]],[11,13,["H5973"]],[13,14,["H7585"]],[14,17,["H6213"]],[17,18,["H2374"]],[18,19,["H3588"]],[19,21,["H7857"]],[21,22,["H7752"]],[22,25,["H5674"]],[25,28,["H3808"]],[28,29,["H935"]],[29,32,["H3588"]],[32,35,["H7760"]],[35,36,["H3577"]],[36,38,["H4268"]],[38,41,["H8267"]],[41,45,["H5641"]]]},{"k":18180,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,9,["H3245"]],[9,11,["H6726"]],[11,14,["H3245"]],[14,16,["H68"]],[16,18,["H976"]],[18,19,["H68"]],[19,21,["H3368"]],[21,22,["H6438"]],[22,25,["H3245"]],[25,26,["H4143"]],[26,29,["H539"]],[29,31,["H3808"]],[31,33,["H2363"]]]},{"k":18181,"v":[[0,1,["H4941"]],[1,5,["H7760"]],[5,8,["H6957"]],[8,10,["H6666"]],[10,13,["H4949"]],[13,16,["H1259"]],[16,19,["H3261"]],[19,21,["H4268"]],[21,23,["H3577"]],[23,26,["H4325"]],[26,28,["H7857"]],[28,31,["H5643"]]]},{"k":18182,"v":[[0,3,["H1285"]],[3,4,["H854"]],[4,5,["H4194"]],[5,8,["H3722"]],[8,11,["H2380"]],[11,12,["H854"]],[12,13,["H7585"]],[13,15,["H3808"]],[15,16,["H6965"]],[16,17,["H3588"]],[17,19,["H7857"]],[19,20,["H7752"]],[20,23,["H5674"]],[23,27,["H1961"]],[27,29,["H4823"]],[29,31,[]]]},{"k":18183,"v":[[0,3,["H4480","H1767"]],[3,7,["H5674"]],[7,10,["H3947"]],[10,12,["H3588"]],[12,13,["H1242"]],[13,15,["H1242"]],[15,19,["H5674"]],[19,21,["H3117"]],[21,24,["H3915"]],[24,28,["H1961"]],[28,30,["H2113"]],[30,31,["H7535"]],[31,33,["H995"]],[33,35,["H8052"]]]},{"k":18184,"v":[[0,1,["H3588"]],[1,3,["H4702"]],[3,5,["H7114"]],[5,12,["H4480","H8311"]],[12,17,["H4541"]],[17,18,["H6887"]],[18,24,["H3664"]],[24,26,[]]]},{"k":18185,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,6,["H6965"]],[6,9,["H2022"]],[9,10,["H6559"]],[10,14,["H7264"]],[14,18,["H6010"]],[18,20,["H1391"]],[20,24,["H6213"]],[24,26,["H4639"]],[26,28,["H2114"]],[28,29,["H4639"]],[29,33,["H5647"]],[33,35,["H5656"]],[35,37,["H5237"]],[37,38,["H5656"]]]},{"k":18186,"v":[[0,1,["H6258"]],[1,6,["H3887","H408"]],[6,7,["H6435"]],[7,9,["H4147"]],[9,12,["H2388"]],[12,13,["H3588"]],[13,16,["H8085"]],[16,17,["H4480","H854"]],[17,19,["H136"]],[19,20,["H3069"]],[20,22,["H6635"]],[22,24,["H3617"]],[24,26,["H2782"]],[26,27,["H5921"]],[27,29,["H3605"]],[29,30,["H776"]]]},{"k":18187,"v":[[0,3,["H238"]],[3,5,["H8085"]],[5,7,["H6963"]],[7,8,["H7181"]],[8,10,["H8085"]],[10,12,["H565"]]]},{"k":18188,"v":[[0,3,["H2790"]],[3,4,["H2790"]],[4,5,["H3605"]],[5,6,["H3117"]],[6,8,["H2232"]],[8,11,["H6605"]],[11,15,["H7702"]],[15,18,["H127"]]]},{"k":18189,"v":[[0,1,["H518"]],[1,5,["H7737"]],[5,7,["H6440"]],[7,11,["H3808"]],[11,13,["H6327"]],[13,15,["H7100"]],[15,17,["H2236"]],[17,19,["H3646"]],[19,21,["H7760"]],[21,24,["H7795"]],[24,25,["H2406"]],[25,28,["H5567"]],[28,29,["H8184"]],[29,32,["H3698"]],[32,35,["H1367"]]]},{"k":18190,"v":[[0,3,["H430"]],[3,5,["H3256"]],[5,8,["H4941"]],[8,11,["H3384"]],[11,12,[]]]},{"k":18191,"v":[[0,1,["H3588"]],[1,3,["H7100"]],[3,5,["H3808"]],[5,6,["H1758"]],[6,10,["H2742"]],[10,14,["H5699"]],[14,15,["H212"]],[15,16,["H5437"]],[16,18,["H5921"]],[18,20,["H3646"]],[20,21,["H3588"]],[21,23,["H7100"]],[23,26,["H2251"]],[26,29,["H4294"]],[29,32,["H3646"]],[32,35,["H7626"]]]},{"k":18192,"v":[[0,1,["H3899"]],[1,4,["H1854"]],[4,5,["H3588"]],[5,8,["H3808"]],[8,9,["H5331"]],[9,11,["H1758"]],[11,14,["H2000"]],[14,18,["H1536"]],[18,21,["H5699"]],[21,22,["H3808"]],[22,23,["H1854"]],[23,27,["H6571"]]]},{"k":18193,"v":[[0,1,["H2063"]],[1,2,["H1571"]],[2,4,["H3318"]],[4,5,["H4480","H5973"]],[5,7,["H3068"]],[7,9,["H6635"]],[9,12,["H6381"]],[12,14,["H6098"]],[14,16,["H1431"]],[16,18,["H8454"]]]},{"k":18194,"v":[[0,1,["H1945"]],[1,3,["H740"]],[3,5,["H740"]],[5,7,["H7151"]],[7,9,["H1732"]],[9,10,["H2583"]],[10,11,["H5595"]],[11,13,["H8141"]],[13,14,["H5921"]],[14,15,["H8141"]],[15,18,["H5362"]],[18,19,["H2282"]]]},{"k":18195,"v":[[0,4,["H6693"]],[4,5,["H740"]],[5,9,["H1961"]],[9,10,["H8386"]],[10,12,["H592"]],[12,16,["H1961"]],[16,20,["H740"]]]},{"k":18196,"v":[[0,4,["H2583"]],[4,5,["H5921"]],[5,8,["H1754"]],[8,12,["H6696"]],[12,13,["H5921"]],[13,17,["H4674"]],[17,21,["H6965"]],[21,22,["H4694"]],[22,23,["H5921"]],[23,24,[]]]},{"k":18197,"v":[[0,6,["H8213"]],[6,9,["H1696"]],[9,13,["H4480","H776"]],[13,16,["H565"]],[16,19,["H7817"]],[19,23,["H4480","H6083"]],[23,26,["H6963"]],[26,28,["H1961"]],[28,36,["H178"]],[36,40,["H4480","H776"]],[40,43,["H565"]],[43,45,["H6850"]],[45,49,["H4480","H6083"]]]},{"k":18198,"v":[[0,3,["H1995"]],[3,6,["H2114"]],[6,8,["H1961"]],[8,10,["H1851"]],[10,11,["H80"]],[11,14,["H1995"]],[14,18,["H6184"]],[18,22,["H4671"]],[22,25,["H5674"]],[25,29,["H1961"]],[29,32,["H6621"]],[32,33,["H6597"]]]},{"k":18199,"v":[[0,4,["H6485"]],[4,5,["H4480","H5973"]],[5,7,["H3068"]],[7,9,["H6635"]],[9,11,["H7482"]],[11,14,["H7494"]],[14,16,["H1419"]],[16,17,["H6963"]],[17,19,["H5492"]],[19,21,["H5591"]],[21,24,["H3851"]],[24,26,["H398"]],[26,27,["H784"]]]},{"k":18200,"v":[[0,3,["H1995"]],[3,5,["H3605"]],[5,7,["H1471"]],[7,9,["H6633"]],[9,10,["H5921"]],[10,11,["H740"]],[11,13,["H3605"]],[13,15,["H6633"]],[15,20,["H4685"]],[20,23,["H6693"]],[23,26,["H1961"]],[26,29,["H2472"]],[29,32,["H3915"]],[32,33,["H2377"]]]},{"k":18201,"v":[[0,4,["H1961"]],[4,6,["H834"]],[6,8,["H7457"]],[8,10,["H2492"]],[10,12,["H2009"]],[12,14,["H398"]],[14,17,["H6974"]],[17,20,["H5315"]],[20,22,["H7386"]],[22,25,["H834"]],[25,28,["H6771"]],[28,29,["H2492"]],[29,31,["H2009"]],[31,33,["H8354"]],[33,36,["H6974"]],[36,38,["H2009"]],[38,41,["H5889"]],[41,44,["H5315"]],[44,46,["H8264"]],[46,47,["H3651"]],[47,50,["H1995"]],[50,52,["H3605"]],[52,54,["H1471"]],[54,55,["H1961"]],[55,57,["H6633"]],[57,58,["H5921"]],[58,59,["H2022"]],[59,60,["H6726"]]]},{"k":18202,"v":[[0,2,["H4102"]],[2,4,["H8539"]],[4,7,["H8173"]],[7,9,["H8173"]],[9,12,["H7937"]],[12,14,["H3808"]],[14,16,["H3196"]],[16,18,["H5128"]],[18,20,["H3808"]],[20,23,["H7941"]]]},{"k":18203,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,6,["H5258"]],[6,7,["H5921"]],[7,10,["H7307"]],[10,13,["H8639"]],[13,16,["H6105","(H853)"]],[16,18,["H5869","(H853)"]],[18,20,["H5030"]],[20,23,["H7218"]],[23,25,["H2374"]],[25,28,["H3680"]]]},{"k":18204,"v":[[0,3,["H2380"]],[3,5,["H3605"]],[5,7,["H1961"]],[7,12,["H1697"]],[12,15,["H5612"]],[15,18,["H2856"]],[18,19,["H834"]],[19,21,["H5414"]],[21,22,["H413"]],[22,26,["H3045","H5612"]],[26,27,["H559"]],[27,28,["H7121"]],[28,29,["H2088"]],[29,32,["H4994"]],[32,35,["H559"]],[35,37,["H3201","H3808"]],[37,38,["H3588"]],[38,39,["H1931"]],[39,41,["H2856"]]]},{"k":18205,"v":[[0,3,["H5612"]],[3,5,["H5414"]],[5,6,["H5921"]],[6,8,["H834"]],[8,11,["H3045","H3808","H5612"]],[11,12,["H559"]],[12,13,["H7121"]],[13,14,["H2088"]],[14,17,["H4994"]],[17,20,["H559"]],[20,24,["H3045","H3808","H5612"]]]},{"k":18206,"v":[[0,3,["H136"]],[3,4,["H559"]],[4,5,["H3282","H3588"]],[5,7,["H2088"]],[7,8,["H5971"]],[8,10,["H5066"]],[10,14,["H6310"]],[14,18,["H8193"]],[18,20,["H3513"]],[20,27,["H7368","H3820"]],[27,28,["H4480"]],[28,32,["H3374"]],[32,33,["H854"]],[33,35,["H1961"]],[35,36,["H3925"]],[36,39,["H4687"]],[39,41,["H376"]]]},{"k":18207,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,5,["H3254"]],[5,10,["H6381"]],[10,11,["H854"]],[11,12,["H2088"]],[12,13,["H5971"]],[13,17,["H6381"]],[17,20,["H6382"]],[20,23,["H2451"]],[23,26,["H2450"]],[26,29,["H6"]],[29,32,["H998"]],[32,35,["H995"]],[35,39,["H5641"]]]},{"k":18208,"v":[[0,1,["H1945"]],[1,6,["H6009"]],[6,8,["H5641"]],[8,10,["H6098"]],[10,13,["H4480","H3068"]],[13,16,["H4639"]],[16,17,["H1961"]],[17,20,["H4285"]],[20,23,["H559"]],[23,24,["H4310"]],[24,25,["H7200"]],[25,28,["H4310"]],[28,29,["H3045"]],[29,30,[]]]},{"k":18209,"v":[[0,1,["H518"]],[1,7,["H2017"]],[7,10,["H2803"]],[10,13,["H3335"]],[13,14,["H2563"]],[14,15,["H3588"]],[15,18,["H4639"]],[18,19,["H559"]],[19,23,["H6213"]],[23,26,["H6213"]],[26,28,["H3808"]],[28,33,["H3336"]],[33,34,["H559"]],[34,38,["H3335"]],[38,43,["H995","H3808"]]]},{"k":18210,"v":[[0,3,["H3808"]],[3,4,["H5750"]],[4,6,["H4213"]],[6,8,["H4592"]],[8,10,["H3844"]],[10,13,["H7725"]],[13,17,["H3759"]],[17,21,["H3759"]],[21,24,["H2803"]],[24,27,["H3293"]]]},{"k":18211,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,7,["H2795"]],[7,8,["H8085"]],[8,10,["H1697"]],[10,13,["H5612"]],[13,16,["H5869"]],[16,19,["H5787"]],[19,21,["H7200"]],[21,24,["H4480","H652"]],[24,28,["H4480","H2822"]]]},{"k":18212,"v":[[0,2,["H6035"]],[2,5,["H3254"]],[5,7,["H8057"]],[7,10,["H3068"]],[10,13,["H34"]],[13,15,["H120"]],[15,17,["H1523"]],[17,21,["H6918"]],[21,23,["H3478"]]]},{"k":18213,"v":[[0,1,["H3588"]],[1,4,["H6184"]],[4,8,["H656"]],[8,11,["H3887"]],[11,13,["H3615"]],[13,15,["H3605"]],[15,17,["H8245"]],[17,19,["H205"]],[19,22,["H3772"]]]},{"k":18214,"v":[[0,6,["H2398","H120"]],[6,9,["H1697"]],[9,13,["H6983"]],[13,17,["H3198"]],[17,20,["H8179"]],[20,23,["H5186"]],[23,25,["H6662"]],[25,30,["H8414"]]]},{"k":18215,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H834"]],[6,7,["H6299","(H853)"]],[7,8,["H85"]],[8,9,["H413"]],[9,11,["H1004"]],[11,13,["H3290"]],[13,14,["H3290"]],[14,16,["H3808"]],[16,17,["H6258"]],[17,19,["H954"]],[19,20,["H3808"]],[20,23,["H6440"]],[23,24,["H6258"]],[24,26,["H2357"]]]},{"k":18216,"v":[[0,2,["H3588"]],[2,4,["H7200"]],[4,6,["H3206"]],[6,8,["H4639"]],[8,11,["H3027"]],[11,14,["H7130"]],[14,19,["H6942"]],[19,21,["H8034"]],[21,23,["H6942","(H853)"]],[23,26,["H6918"]],[26,28,["H3290"]],[28,31,["H6206"]],[31,33,["H430"]],[33,35,["H3478"]]]},{"k":18217,"v":[[0,4,["H8582"]],[4,6,["H7307"]],[6,8,["H3045"]],[8,10,["H998"]],[10,14,["H7279"]],[14,16,["H3925"]],[16,17,["H3948"]]]},{"k":18218,"v":[[0,1,["H1945"]],[1,4,["H5637"]],[4,5,["H1121"]],[5,6,["H5002"]],[6,8,["H3068"]],[8,10,["H6213"]],[10,11,["H6098"]],[11,13,["H3808"]],[13,14,["H4480"]],[14,18,["H5258"]],[18,21,["H4541"]],[21,23,["H3808"]],[23,26,["H7307"]],[26,27,["H4616"]],[27,30,["H5595"]],[30,31,["H2403"]],[31,32,["H5921"]],[32,33,["H2403"]]]},{"k":18219,"v":[[0,2,["H1980"]],[2,5,["H3381"]],[5,7,["H4714"]],[7,10,["H3808"]],[10,11,["H7592"]],[11,14,["H6310"]],[14,16,["H5810"]],[16,20,["H4581"]],[20,22,["H6547"]],[22,25,["H2620"]],[25,28,["H6738"]],[28,30,["H4714"]]]},{"k":18220,"v":[[0,4,["H4581"]],[4,6,["H6547"]],[6,7,["H1961"]],[7,9,["H1322"]],[9,12,["H2622"]],[12,15,["H6738"]],[15,17,["H4714"]],[17,19,["H3639"]]]},{"k":18221,"v":[[0,1,["H3588"]],[1,3,["H8269"]],[3,4,["H1961"]],[4,6,["H6814"]],[6,9,["H4397"]],[9,10,["H5060"]],[10,12,["H2609"]]]},{"k":18222,"v":[[0,3,["H3605"]],[3,4,["H954"]],[4,5,["H5921"]],[5,7,["H5971"]],[7,10,["H3808"]],[10,11,["H3276"]],[11,13,["H3808"]],[13,16,["H5828"]],[16,17,["H3808"]],[17,18,["H3276"]],[18,19,["H3588"]],[19,21,["H1322"]],[21,23,["H1571"]],[23,25,["H2781"]]]},{"k":18223,"v":[[0,2,["H4853"]],[2,5,["H929"]],[5,8,["H5045"]],[8,11,["H776"]],[11,13,["H6869"]],[13,15,["H6695"]],[15,16,["H4480"]],[16,20,["H3833"]],[20,23,["H3918"]],[23,25,["H660"]],[25,29,["H8314","H5774"]],[29,32,["H5375"]],[32,34,["H2428"]],[34,35,["H5921"]],[35,37,["H3802"]],[37,40,["H5895"]],[40,43,["H214"]],[43,44,["H5921"]],[44,46,["H1707"]],[46,48,["H1581"]],[48,49,["H5921"]],[49,51,["H5971"]],[51,54,["H3808"]],[54,55,["H3276"]],[55,56,[]]]},{"k":18224,"v":[[0,3,["H4714"]],[3,5,["H5826"]],[5,7,["H1892"]],[7,11,["H7385"]],[11,12,["H3651"]],[12,15,["H7121"]],[15,17,["H2063"]],[17,19,["H7293"]],[19,23,["H7674"]]]},{"k":18225,"v":[[0,1,["H6258"]],[1,2,["H935"]],[2,3,["H3789"]],[3,5,["H854"]],[5,7,["H5921"]],[7,9,["H3871"]],[9,11,["H2710"]],[11,13,["H5921"]],[13,15,["H5612"]],[15,19,["H1961"]],[19,22,["H3117"]],[22,24,["H314"]],[24,26,["H5703"]],[26,28,["H5704","H5769"]]]},{"k":18226,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,5,["H4805"]],[5,6,["H5971"]],[6,7,["H3586"]],[7,8,["H1121"]],[8,9,["H1121"]],[9,11,["H14"]],[11,12,["H3808"]],[12,13,["H8085"]],[13,15,["H8451"]],[15,18,["H3068"]]]},{"k":18227,"v":[[0,1,["H834"]],[1,2,["H559"]],[2,5,["H7200"]],[5,6,["H7200"]],[6,7,["H3808"]],[7,11,["H2374"]],[11,12,["H2372"]],[12,13,["H3808"]],[13,17,["H5229"]],[17,18,["H1696"]],[18,22,["H2513"]],[22,23,["H2372"]],[23,24,["H4123"]]]},{"k":18228,"v":[[0,1,["H5493"]],[1,4,["H4480"]],[4,6,["H1870"]],[6,8,["H5186"]],[8,10,["H4480"]],[10,12,["H734"]],[12,13,["(H853)"]],[13,16,["H6918"]],[16,18,["H3478"]],[18,20,["H7673"]],[20,22,["H4480","H6440"]],[22,23,[]]]},{"k":18229,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,6,["H6918"]],[6,8,["H3478"]],[8,9,["H3282"]],[9,11,["H3988"]],[11,12,["H2088"]],[12,13,["H1697"]],[13,15,["H982"]],[15,17,["H6233"]],[17,19,["H3868"]],[19,21,["H8172"]],[21,22,["H5921"]]]},{"k":18230,"v":[[0,1,["H3651"]],[1,2,["H2088"]],[2,3,["H5771"]],[3,5,["H1961"]],[5,10,["H6556"]],[10,13,["H5307"]],[13,15,["H1158"]],[15,18,["H7682"]],[18,19,["H2346"]],[19,20,["H834"]],[20,21,["H7667"]],[21,22,["H935"]],[22,23,["H6597"]],[23,26,["H6621"]]]},{"k":18231,"v":[[0,4,["H7665"]],[4,8,["H7667"]],[8,11,["H3335"]],[11,12,["H5035"]],[12,17,["H3807"]],[17,20,["H3808"]],[20,21,["H2550"]],[21,26,["H3808"]],[26,28,["H4672"]],[28,31,["H4386"]],[31,35,["H2789"]],[35,37,["H2846"]],[37,38,["H784"]],[38,41,["H4480","H3344"]],[41,44,["H2834"]],[44,45,["H4325"]],[45,50,["H4480","H1360"]]]},{"k":18232,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,9,["H6918"]],[9,11,["H3478"]],[11,13,["H7729"]],[13,15,["H5183"]],[15,19,["H3467"]],[19,21,["H8252"]],[21,24,["H985"]],[24,26,["H1961"]],[26,28,["H1369"]],[28,31,["H14"]],[31,32,["H3808"]]]},{"k":18233,"v":[[0,3,["H559"]],[3,4,["H3808"]],[4,5,["H3588"]],[5,8,["H5127"]],[8,9,["H5921"]],[9,10,["H5483"]],[10,11,["H5921","H3651"]],[11,14,["H5127"]],[14,18,["H7392"]],[18,19,["H5921"]],[19,21,["H7031"]],[21,22,["H5921","H3651"]],[22,26,["H7291"]],[26,29,["H7043"]]]},{"k":18234,"v":[[0,1,["H259"]],[1,2,["H505"]],[2,5,["H4480","H6440"]],[5,7,["H1606"]],[7,9,["H259"]],[9,10,["H4480","H6440"]],[10,12,["H1606"]],[12,14,["H2568"]],[14,17,["H5127"]],[17,18,["H5704","H518"]],[18,21,["H3498"]],[21,24,["H8650"]],[24,25,["H5921"]],[25,27,["H7218"]],[27,30,["H2022"]],[30,34,["H5251"]],[34,35,["H5921"]],[35,37,["H1389"]]]},{"k":18235,"v":[[0,2,["H3651"]],[2,5,["H3068"]],[5,6,["H2442"]],[6,11,["H2603"]],[11,15,["H3651"]],[15,19,["H7311"]],[19,24,["H7355"]],[24,27,["H3588"]],[27,29,["H3068"]],[29,32,["H430"]],[32,34,["H4941"]],[34,35,["H835"]],[35,37,["H3605"]],[37,40,["H2442"]],[40,42,[]]]},{"k":18236,"v":[[0,1,["H3588"]],[1,3,["H5971"]],[3,5,["H3427"]],[5,7,["H6726"]],[7,9,["H3389"]],[9,14,["H1058","H1058","H3808"]],[14,19,["H2603","H2603"]],[19,24,["H6963"]],[24,27,["H2199"]],[27,31,["H8085"]],[31,35,["H6030"]],[35,36,[]]]},{"k":18237,"v":[[0,4,["H136"]],[4,5,["H5414"]],[5,8,["H3899"]],[8,10,["H6862"]],[10,13,["H4325"]],[13,15,["H3906"]],[15,18,["H3808"]],[18,20,["H3384"]],[20,25,["H3670"]],[25,27,["H5750"]],[27,30,["H5869"]],[30,31,["H1961"]],[31,32,["H7200","(H853)"]],[32,34,["H3384"]]]},{"k":18238,"v":[[0,3,["H241"]],[3,5,["H8085"]],[5,7,["H1697"]],[7,8,["H4480","H310"]],[8,10,["H559"]],[10,11,["H2088"]],[11,14,["H1870"]],[14,15,["H1980"]],[15,19,["H3588"]],[19,25,["H541"]],[25,27,["H3588"]],[27,32,["H8041"]]]},{"k":18239,"v":[[0,3,["H2930"]],[3,4,["(H853)"]],[4,6,["H6826"]],[6,10,["H6456"]],[10,12,["H3701"]],[12,15,["H642"]],[15,19,["H4541"]],[19,21,["H2091"]],[21,26,["H2219"]],[26,27,["H3644"]],[27,30,["H1739"]],[30,33,["H559"]],[33,38,["H3318"]]]},{"k":18240,"v":[[0,4,["H5414"]],[4,6,["H4306"]],[6,9,["H2233"]],[9,10,["H834"]],[10,13,["H2232","(H853)"]],[13,15,["H127"]],[15,18,["H3899"]],[18,21,["H8393"]],[21,24,["H127"]],[24,28,["H1961"]],[28,29,["H1879"]],[29,31,["H8082"]],[31,33,["H1931"]],[33,34,["H3117"]],[34,37,["H4735"]],[37,38,["H7462"]],[38,40,["H7337"]],[40,41,["H3733"]]]},{"k":18241,"v":[[0,2,["H504"]],[2,7,["H5895"]],[7,9,["H5647"]],[9,11,["H127"]],[11,13,["H398"]],[13,14,["H2548"]],[14,15,["H1098"]],[15,16,["H834"]],[16,19,["H2219"]],[19,22,["H7371"]],[22,26,["H4214"]]]},{"k":18242,"v":[[0,4,["H1961"]],[4,5,["H5921"]],[5,6,["H3605"]],[6,7,["H1364"]],[7,8,["H2022"]],[8,10,["H5921"]],[10,11,["H3605"]],[11,12,["H5375"]],[12,13,["H1389"]],[13,14,["H6388"]],[14,16,["H2988"]],[16,18,["H4325"]],[18,21,["H3117"]],[21,24,["H7227"]],[24,25,["H2027"]],[25,28,["H4026"]],[28,29,["H5307"]]]},{"k":18243,"v":[[0,3,["H216"]],[3,6,["H3842"]],[6,8,["H1961"]],[8,11,["H216"]],[11,14,["H2535"]],[14,17,["H216"]],[17,20,["H2535"]],[20,22,["H1961"]],[22,23,["H7659"]],[23,26,["H216"]],[26,28,["H7651"]],[28,29,["H3117"]],[29,32,["H3117"]],[32,35,["H3068"]],[35,37,["H2280","(H853)"]],[37,39,["H7667"]],[39,42,["H5971"]],[42,44,["H7495"]],[44,46,["H4273"]],[46,49,["H4347"]]]},{"k":18244,"v":[[0,1,["H2009"]],[1,3,["H8034"]],[3,6,["H3068"]],[6,7,["H935"]],[7,9,["H4480","H4801"]],[9,10,["H1197"]],[10,13,["H639"]],[13,16,["H4858"]],[16,19,["H3514"]],[19,21,["H8193"]],[21,23,["H4390"]],[23,25,["H2195"]],[25,28,["H3956"]],[28,31,["H398"]],[31,32,["H784"]]]},{"k":18245,"v":[[0,3,["H7307"]],[3,6,["H7857"]],[6,7,["H5158"]],[7,12,["H2673"]],[12,13,["H5704"]],[13,15,["H6677"]],[15,17,["H5130"]],[17,19,["H1471"]],[19,22,["H5299"]],[22,24,["H7723"]],[24,30,["H7448"]],[30,31,["H5921"]],[31,33,["H3895"]],[33,36,["H5971"]],[36,40,["H8582"]]]},{"k":18246,"v":[[0,3,["H1961"]],[3,5,["H7892"]],[5,9,["H3915"]],[9,15,["H6942","H2282"]],[15,17,["H8057"]],[17,19,["H3824"]],[19,23,["H1980"]],[23,26,["H2485"]],[26,28,["H935"]],[28,31,["H2022"]],[31,34,["H3068"]],[34,35,["H413"]],[35,38,["H6697"]],[38,40,["H3478"]]]},{"k":18247,"v":[[0,3,["H3068"]],[3,5,["(H853)"]],[5,7,["H1935"]],[7,8,["H6963"]],[8,11,["H8085"]],[11,14,["H7200"]],[14,17,["H5183"]],[17,20,["H2220"]],[20,23,["H2197"]],[23,26,["H639"]],[26,30,["H3851"]],[30,33,["H398"]],[33,34,["H784"]],[34,36,["H5311"]],[36,38,["H2230"]],[38,40,["H68","H1259"]]]},{"k":18248,"v":[[0,1,["H3588"]],[1,4,["H4480","H6963"]],[4,7,["H3068"]],[7,10,["H804"]],[10,13,["H2865"]],[13,15,["H5221"]],[15,18,["H7626"]]]},{"k":18249,"v":[[0,4,["H3605"]],[4,7,["H4145"]],[7,8,["H4294"]],[8,10,["H4569"]],[10,11,["H834"]],[11,13,["H3068"]],[13,15,["H5117"]],[15,16,["H5921"]],[16,20,["H1961"]],[20,22,["H8596"]],[22,24,["H3658"]],[24,27,["H4421"]],[27,29,["H8573"]],[29,32,["H3898"]],[32,34,[]]]},{"k":18250,"v":[[0,1,["H3588"]],[1,2,["H8613"]],[2,4,["H6186"]],[4,6,["H4480","H865"]],[6,7,["H1571"]],[7,10,["H4428"]],[10,11,["H1931"]],[11,13,["H3559"]],[13,18,["H6009"]],[18,20,["H7337"]],[20,22,["H4071"]],[22,25,["H784"]],[25,27,["H7235"]],[27,28,["H6086"]],[28,30,["H5397"]],[30,33,["H3068"]],[33,36,["H5158"]],[36,38,["H1614"]],[38,40,["H1197"]],[40,41,[]]]},{"k":18251,"v":[[0,1,["H1945"]],[1,6,["H3381"]],[6,8,["H4714"]],[8,10,["H5833"]],[10,12,["H8172"]],[12,13,["H5921"]],[13,14,["H5483"]],[14,16,["H982"]],[16,17,["H5921"]],[17,18,["H7393"]],[18,19,["H3588"]],[19,22,["H7227"]],[22,24,["H5921"]],[24,25,["H6571"]],[25,26,["H3588"]],[26,30,["H6105","H3966"]],[30,33,["H8159"]],[33,34,["H3808"]],[34,35,["H5921"]],[35,38,["H6918"]],[38,40,["H3478"]],[40,41,["H3808"]],[41,42,["H1875"]],[42,44,["H3068"]]]},{"k":18252,"v":[[0,2,["H1931"]],[2,3,["H1571"]],[3,5,["H2450"]],[5,8,["H935"]],[8,9,["H7451"]],[9,12,["H3808"]],[12,14,["H5493"]],[14,16,["H1697"]],[16,19,["H6965"]],[19,20,["H5921"]],[20,22,["H1004"]],[22,25,["H7489"]],[25,27,["H5921"]],[27,29,["H5833"]],[29,33,["H6466"]],[33,34,["H205"]]]},{"k":18253,"v":[[0,3,["H4714"]],[3,5,["H120"]],[5,7,["H3808"]],[7,8,["H410"]],[8,11,["H5483"]],[11,12,["H1320"]],[12,14,["H3808"]],[14,15,["H7307"]],[15,18,["H3068"]],[18,21,["H5186"]],[21,23,["H3027"]],[23,27,["H5826"]],[27,29,["H3782"]],[29,34,["H5826"]],[34,37,["H5307"]],[37,40,["H3605"]],[40,42,["H3615"]],[42,43,["H3162"]]]},{"k":18254,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,5,["H3068"]],[5,6,["H559"]],[6,7,["H413"]],[7,10,["H834"]],[10,12,["H738"]],[12,16,["H3715"]],[16,17,["H1897"]],[17,18,["H5921"]],[18,20,["H2964"]],[20,21,["H834"]],[21,23,["H4393"]],[23,25,["H7462"]],[25,28,["H7121"]],[28,29,["H5921"]],[29,33,["H3808"]],[33,35,["H2865"]],[35,38,["H4480","H6963"]],[38,39,["H3808"]],[39,40,["H6031"]],[40,44,["H4480","H1995"]],[44,47,["H3651"]],[47,50,["H3068"]],[50,52,["H6635"]],[52,54,["H3381"]],[54,56,["H6633"]],[56,57,["H5921"]],[57,58,["H2022"]],[58,59,["H6726"]],[59,61,["H5921"]],[61,63,["H1389"]],[63,64,[]]]},{"k":18255,"v":[[0,2,["H6833"]],[2,3,["H5774"]],[3,4,["H3651"]],[4,7,["H3068"]],[7,9,["H6635"]],[9,10,["H1598","H5921"]],[10,11,["H3389"]],[11,12,["H1598"]],[12,16,["H5337"]],[16,20,["H6452"]],[20,23,["H4422"]],[23,24,[]]]},{"k":18256,"v":[[0,1,["H7725"]],[1,6,["H834"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,12,["H6009"]],[12,13,["H5627"]]]},{"k":18257,"v":[[0,1,["H3588"]],[1,3,["H1931"]],[3,4,["H3117"]],[4,6,["H376"]],[6,9,["H3988"]],[9,11,["H457"]],[11,13,["H3701"]],[13,16,["H457"]],[16,18,["H2091"]],[18,19,["H834"]],[19,22,["H3027"]],[22,24,["H6213"]],[24,29,["H2399"]]]},{"k":18258,"v":[[0,4,["H804"]],[4,5,["H5307"]],[5,8,["H2719"]],[8,9,["H3808"]],[9,13,["H376"]],[13,16,["H2719"]],[16,17,["H3808"]],[17,21,["H120"]],[21,23,["H398"]],[23,28,["H5127"]],[28,29,["H4480","H6440"]],[29,31,["H2719"]],[31,35,["H970"]],[35,37,["H1961"]],[37,38,["H4522"]]]},{"k":18259,"v":[[0,5,["H5674"]],[5,9,["H5553"]],[9,11,["H4480","H4032"]],[11,14,["H8269"]],[14,17,["H2865"]],[17,20,["H4480","H5251"]],[20,21,["H5002"]],[21,23,["H3068"]],[23,24,["H834"]],[24,25,["H217"]],[25,28,["H6726"]],[28,31,["H8574"]],[31,33,["H3389"]]]},{"k":18260,"v":[[0,1,["H2005"]],[1,3,["H4428"]],[3,5,["H4427"]],[5,7,["H6664"]],[7,9,["H8269"]],[9,11,["H8323"]],[11,13,["H4941"]]]},{"k":18261,"v":[[0,3,["H376"]],[3,5,["H1961"]],[5,9,["H4224"]],[9,12,["H7307"]],[12,15,["H5643"]],[15,18,["H2230"]],[18,20,["H6388"]],[20,22,["H4325"]],[22,26,["H6724"]],[26,29,["H6738"]],[29,32,["H3515"]],[32,33,["H5553"]],[33,36,["H5889"]],[36,37,["H776"]]]},{"k":18262,"v":[[0,3,["H5869"]],[3,7,["H7200"]],[7,9,["H3808"]],[9,11,["H8159"]],[11,14,["H241"]],[14,18,["H8085"]],[18,20,["H7181"]]]},{"k":18263,"v":[[0,2,["H3824"]],[2,6,["H4116"]],[6,8,["H995"]],[8,9,["H3045"]],[9,12,["H3956"]],[12,15,["H5926"]],[15,18,["H4116"]],[18,20,["H1696"]],[20,21,["H6703"]]]},{"k":18264,"v":[[0,3,["H5036"]],[3,6,["H3808"]],[6,7,["H5750"]],[7,8,["H7121"]],[8,9,["H5081"]],[9,10,["H3808"]],[10,12,["H3596"]],[12,13,["H559"]],[13,16,["H7771"]]]},{"k":18265,"v":[[0,1,["H3588"]],[1,4,["H5036"]],[4,6,["H1696"]],[6,7,["H5039"]],[7,10,["H3820"]],[10,12,["H6213"]],[12,13,["H205"]],[13,15,["H6213"]],[15,16,["H2612"]],[16,19,["H1696"]],[19,20,["H8442"]],[20,21,["H413"]],[21,23,["H3068"]],[23,26,["H7324"]],[26,28,["H5315"]],[28,31,["H7457"]],[31,37,["H4945"]],[37,40,["H6771"]],[40,42,["H2637"]]]},{"k":18266,"v":[[0,2,["H3627"]],[2,6,["H3596"]],[6,8,["H7451"]],[8,9,["H1931"]],[9,10,["H3289"]],[10,12,["H2154"]],[12,14,["H2254"]],[14,16,["H6041"]],[16,18,["H8267"]],[18,19,["H561"]],[19,23,["H34"]],[23,24,["H1696"]],[24,25,["H4941"]]]},{"k":18267,"v":[[0,3,["H5081"]],[3,4,["H3289"]],[4,6,["H5081"]],[6,8,["H5921"]],[8,10,["H5081"]],[10,13,["H6965"]]]},{"k":18268,"v":[[0,2,["H6965"]],[2,4,["H802"]],[4,8,["H7600"]],[8,9,["H8085"]],[9,11,["H6963"]],[11,13,["H982"]],[13,14,["H1323"]],[14,16,["H238"]],[16,19,["H565"]]]},{"k":18269,"v":[[0,2,["H3117"]],[2,4,["H8141"]],[4,8,["H7264"]],[8,11,["H982"]],[11,12,["H3588"]],[12,14,["H1210"]],[14,16,["H3615"]],[16,18,["H625"]],[18,20,["H1097"]],[20,21,["H935"]]]},{"k":18270,"v":[[0,1,["H2729"]],[1,7,["H7600"]],[7,9,["H7264"]],[9,12,["H982"]],[12,13,["H6584"]],[13,18,["H6209"]],[18,20,["H2290"]],[20,22,["H5921"]],[22,24,["H2504"]]]},{"k":18271,"v":[[0,3,["H5594"]],[3,4,["H5921"]],[4,6,["H7699"]],[6,7,["H5921"]],[7,9,["H2531"]],[9,10,["H7704"]],[10,11,["H5921"]],[11,13,["H6509"]],[13,14,["H1612"]]]},{"k":18272,"v":[[0,1,["H5921"]],[1,3,["H127"]],[3,6,["H5971"]],[6,9,["H5927"]],[9,10,["H6975"]],[10,12,["H8068"]],[12,13,["H3588"]],[13,14,["H5921"]],[14,15,["H3605"]],[15,17,["H1004"]],[17,19,["H4885"]],[19,22,["H5947"]],[22,23,["H7151"]]]},{"k":18273,"v":[[0,1,["H3588"]],[1,3,["H759"]],[3,6,["H5203"]],[6,8,["H1995"]],[8,11,["H5892"]],[11,14,["H5800"]],[14,16,["H6076"]],[16,18,["H975"]],[18,20,["H1961"]],[20,21,["H1157"]],[21,22,["H4631"]],[22,24,["H5704","H5769"]],[24,26,["H4885"]],[26,29,["H6501"]],[29,31,["H4829"]],[31,33,["H5739"]]]},{"k":18274,"v":[[0,1,["H5704"]],[1,3,["H7307"]],[3,5,["H6168"]],[5,6,["H5921"]],[6,10,["H4480","H4791"]],[10,13,["H4057"]],[13,14,["H1961"]],[14,17,["H3759"]],[17,21,["H3759"]],[21,23,["H2803"]],[23,26,["H3293"]]]},{"k":18275,"v":[[0,2,["H4941"]],[2,4,["H7931"]],[4,7,["H4057"]],[7,9,["H6666"]],[9,10,["H3427"]],[10,14,["H3759"]]]},{"k":18276,"v":[[0,3,["H4639"]],[3,5,["H6666"]],[5,7,["H1961"]],[7,8,["H7965"]],[8,11,["H5656"]],[11,13,["H6666"]],[13,14,["H8252"]],[14,16,["H983"]],[16,18,["H5704","H5769"]]]},{"k":18277,"v":[[0,3,["H5971"]],[3,5,["H3427"]],[5,8,["H7965"]],[8,9,["H5116"]],[9,12,["H4009"]],[12,13,["H4908"]],[13,16,["H7600"]],[16,18,["H4496"]]]},{"k":18278,"v":[[0,4,["H1258"]],[4,6,["H3381"]],[6,9,["H3293"]],[9,12,["H5892"]],[12,15,["H8213"]],[15,19,["H8218"]]]},{"k":18279,"v":[[0,1,["H835"]],[1,5,["H2232"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,8,["H4325"]],[8,11,["H7971"]],[11,14,["H7272"]],[14,17,["H7794"]],[17,20,["H2543"]]]},{"k":18280,"v":[[0,1,["H1945"]],[1,5,["H7703"]],[5,7,["H859"]],[7,9,["H3808"]],[9,10,["H7703"]],[10,13,["H898"]],[13,18,["H898","H3808"]],[18,24,["H8552"]],[24,26,["H7703"]],[26,30,["H7703"]],[30,37,["H5239"]],[37,40,["H898"]],[40,44,["H898"]],[44,46,[]]]},{"k":18281,"v":[[0,2,["H3068"]],[2,4,["H2603"]],[4,9,["H6960"]],[9,12,["H1961"]],[12,15,["H2220"]],[15,17,["H1242"]],[17,19,["H3444"]],[19,20,["H637"]],[20,23,["H6256"]],[23,25,["H6869"]]]},{"k":18282,"v":[[0,3,["H4480","H6963"]],[3,6,["H1995"]],[6,8,["H5971"]],[8,9,["H5074"]],[9,13,["H4480","H7427"]],[13,17,["H1471"]],[17,19,["H5310"]]]},{"k":18283,"v":[[0,3,["H7998"]],[3,6,["H622"]],[6,9,["H625"]],[9,12,["H2625"]],[12,18,["H4944"]],[18,20,["H1357"]],[20,23,["H8264"]],[23,25,[]]]},{"k":18284,"v":[[0,2,["H3068"]],[2,4,["H7682"]],[4,5,["H3588"]],[5,7,["H7931"]],[7,9,["H4791"]],[9,12,["H4390"]],[12,13,["H6726"]],[13,15,["H4941"]],[15,17,["H6666"]]]},{"k":18285,"v":[[0,2,["H2451"]],[2,4,["H1847"]],[4,6,["H1961"]],[6,8,["H530"]],[8,11,["H6256"]],[11,13,["H2633"]],[13,15,["H3444"]],[15,17,["H3374"]],[17,20,["H3068"]],[20,23,["H214"]]]},{"k":18286,"v":[[0,1,["H2005"]],[1,4,["H691"]],[4,6,["H6817"]],[6,7,["H2351"]],[7,9,["H4397"]],[9,11,["H7965"]],[11,13,["H1058"]],[13,14,["H4751"]]]},{"k":18287,"v":[[0,2,["H4546"]],[2,4,["H8074"]],[4,7,["H5674","H734"]],[7,8,["H7673"]],[8,11,["H6565"]],[11,13,["H1285"]],[13,16,["H3988"]],[16,18,["H5892"]],[18,20,["H2803"]],[20,21,["H3808"]],[21,22,["H582"]]]},{"k":18288,"v":[[0,2,["H776"]],[2,3,["H56"]],[3,5,["H535"]],[5,6,["H3844"]],[6,8,["H2659"]],[8,11,["H7060"]],[11,12,["H8289"]],[12,13,["H1961"]],[13,16,["H6160"]],[16,18,["H1316"]],[18,20,["H3760"]],[20,22,["H5287"]],[22,24,[]]]},{"k":18289,"v":[[0,1,["H6258"]],[1,4,["H6965"]],[4,5,["H559"]],[5,7,["H3068"]],[7,8,["H6258"]],[8,12,["H7311"]],[12,13,["H6258"]],[13,18,["H5375"]]]},{"k":18290,"v":[[0,3,["H2029"]],[3,4,["H2842"]],[4,8,["H3205"]],[8,9,["H7179"]],[9,11,["H7307"]],[11,13,["H784"]],[13,15,["H398"]],[15,16,[]]]},{"k":18291,"v":[[0,3,["H5971"]],[3,5,["H1961"]],[5,8,["H4955"]],[8,10,["H7875"]],[10,12,["H6975"]],[12,14,["H3683"]],[14,18,["H3341"]],[18,21,["H784"]]]},{"k":18292,"v":[[0,1,["H8085"]],[1,6,["H7350"]],[6,7,["H834"]],[7,10,["H6213"]],[10,15,["H7138"]],[15,16,["H3045"]],[16,18,["H1369"]]]},{"k":18293,"v":[[0,2,["H2400"]],[2,4,["H6726"]],[4,6,["H6342"]],[6,7,["H7461"]],[7,9,["H270"]],[9,11,["H2611"]],[11,12,["H4310"]],[12,16,["H1481"]],[16,19,["H398"]],[19,20,["H784"]],[20,21,["H4310"]],[21,25,["H1481"]],[25,27,["H5769"]],[27,28,["H4168"]]]},{"k":18294,"v":[[0,3,["H1980"]],[3,4,["H6666"]],[4,6,["H1696"]],[6,7,["H4339"]],[7,10,["H3988"]],[10,12,["H1215"]],[12,14,["H4642"]],[14,16,["H5287"]],[16,18,["H3709"]],[18,20,["H4480","H8551"]],[20,22,["H7810"]],[22,24,["H331"]],[24,26,["H241"]],[26,28,["H4480","H8085"]],[28,30,["H1818"]],[30,32,["H6105"]],[32,34,["H5869"]],[34,36,["H4480","H7200"]],[36,37,["H7451"]]]},{"k":18295,"v":[[0,1,["H1931"]],[1,3,["H7931"]],[3,5,["H4791"]],[5,9,["H4869"]],[9,13,["H4679"]],[13,15,["H5553"]],[15,16,["H3899"]],[16,19,["H5414"]],[19,22,["H4325"]],[22,25,["H539"]]]},{"k":18296,"v":[[0,2,["H5869"]],[2,4,["H2372"]],[4,6,["H4428"]],[6,9,["H3308"]],[9,12,["H7200"]],[12,14,["H776"]],[14,19,["H4801"]]]},{"k":18297,"v":[[0,2,["H3820"]],[2,4,["H1897"]],[4,5,["H367"]],[5,6,["H346"]],[6,9,["H5608"]],[9,10,["H346"]],[10,13,["H8254"]],[13,14,["H346"]],[14,18,["H5608","(H853)"]],[18,20,["H4026"]]]},{"k":18298,"v":[[0,3,["H3808"]],[3,4,["H7200","(H853)"]],[4,6,["H3267"]],[6,7,["H5971"]],[7,9,["H5971"]],[9,12,["H6012"]],[12,13,["H8193"]],[13,17,["H4480","H8085"]],[17,20,["H3932"]],[20,21,["H3956"]],[21,25,["H369"]],[25,26,["H998"]]]},{"k":18299,"v":[[0,1,["H2372"]],[1,3,["H6726"]],[3,5,["H7151"]],[5,8,["H4150"]],[8,10,["H5869"]],[10,12,["H7200"]],[12,13,["H3389"]],[13,15,["H7600"]],[15,16,["H5116"]],[16,18,["H168"]],[18,21,["H1077"]],[21,24,["H6813"]],[24,25,["H1077"]],[25,29,["H3489"]],[29,32,["H5331"]],[32,34,["H5265"]],[34,35,["H1077"]],[35,37,["H3605"]],[37,40,["H2256"]],[40,43,["H5423"]]]},{"k":18300,"v":[[0,1,["H3588","H518"]],[1,2,["H8033"]],[2,4,["H117"]],[4,5,["H3068"]],[5,11,["H4725"]],[11,14,["H5104"]],[14,16,["H2975"]],[16,19,["H1980"]],[19,20,["H1077"]],[20,21,["H590"]],[21,23,["H7885"]],[23,24,["H3808"]],[24,26,["H117"]],[26,27,["H6716"]],[27,28,["H5674"]],[28,29,[]]]},{"k":18301,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,6,["H8199"]],[6,8,["H3068"]],[8,11,["H2710"]],[11,13,["H3068"]],[13,16,["H4428"]],[16,17,["H1931"]],[17,19,["H3467"]],[19,20,[]]]},{"k":18302,"v":[[0,2,["H2256"]],[2,4,["H5203"]],[4,7,["H1077"]],[7,8,["H3653"]],[8,9,["H2388"]],[9,11,["H8650"]],[11,14,["H1077"]],[14,15,["H6566"]],[15,17,["H5251"]],[17,18,["H227"]],[18,21,["H5706"]],[21,24,["H4766"]],[24,25,["H7998"]],[25,26,["H2505"]],[26,28,["H6455"]],[28,29,["H962"]],[29,31,["H957"]]]},{"k":18303,"v":[[0,3,["H7934"]],[3,5,["H1077"]],[5,6,["H559"]],[6,9,["H2470"]],[9,11,["H5971"]],[11,13,["H3427"]],[13,17,["H5375"]],[17,19,["H5771"]]]},{"k":18304,"v":[[0,2,["H7126"]],[2,4,["H1471"]],[4,6,["H8085"]],[6,8,["H7181"]],[8,10,["H3816"]],[10,13,["H776"]],[13,14,["H8085"]],[14,19,["H4393"]],[19,21,["H8398"]],[21,24,["H3605"]],[24,27,["H6631"]],[27,29,[]]]},{"k":18305,"v":[[0,1,["H3588"]],[1,3,["H7110"]],[3,6,["H3068"]],[6,8,["H5921"]],[8,9,["H3605"]],[9,10,["H1471"]],[10,13,["H2534"]],[13,14,["H5921"]],[14,15,["H3605"]],[15,17,["H6635"]],[17,21,["H2763"]],[21,25,["H5414"]],[25,29,["H2874"]]]},{"k":18306,"v":[[0,2,["H2491"]],[2,7,["H7993"]],[7,10,["H889"]],[10,13,["H5927"]],[13,17,["H6297"]],[17,20,["H2022"]],[20,23,["H4549"]],[23,26,["H4480","H1818"]]]},{"k":18307,"v":[[0,2,["H3605"]],[2,4,["H6635"]],[4,6,["H8064"]],[6,9,["H4743"]],[9,12,["H8064"]],[12,16,["H1556"]],[16,19,["H5612"]],[19,21,["H3605"]],[21,23,["H6635"]],[23,26,["H5034"]],[26,29,["H5929"]],[29,31,["H5034"]],[31,34,["H4480","H1612"]],[34,38,["H5034"]],[38,43,["H4480","H8384"]]]},{"k":18308,"v":[[0,1,["H3588"]],[1,3,["H2719"]],[3,6,["H7301"]],[6,8,["H8064"]],[8,9,["H2009"]],[9,13,["H3381"]],[13,14,["H5921"]],[14,15,["H123"]],[15,17,["H5921"]],[17,19,["H5971"]],[19,22,["H2764"]],[22,24,["H4941"]]]},{"k":18309,"v":[[0,2,["H2719"]],[2,5,["H3068"]],[5,7,["H4390"]],[7,9,["H1818"]],[9,13,["H1878"]],[13,15,["H4480","H2459"]],[15,19,["H4480","H1818"]],[19,21,["H3733"]],[21,23,["H6260"]],[23,26,["H4480","H2459"]],[26,29,["H3629"]],[29,31,["H352"]],[31,32,["H3588"]],[32,34,["H3068"]],[34,37,["H2077"]],[37,39,["H1224"]],[39,42,["H1419"]],[42,43,["H2874"]],[43,46,["H776"]],[46,48,["H123"]]]},{"k":18310,"v":[[0,3,["H7214"]],[3,6,["H3381"]],[6,7,["H5973"]],[7,11,["H6499"]],[11,12,["H5973"]],[12,14,["H47"]],[14,17,["H776"]],[17,20,["H7301"]],[20,22,["H4480","H1818"]],[22,25,["H6083"]],[25,27,["H1878"]],[27,29,["H4480","H2459"]]]},{"k":18311,"v":[[0,1,["H3588"]],[1,5,["H3117"]],[5,8,["H3068"]],[8,9,["H5359"]],[9,12,["H8141"]],[12,14,["H7966"]],[14,17,["H7379"]],[17,19,["H6726"]]]},{"k":18312,"v":[[0,3,["H5158"]],[3,7,["H2015"]],[7,9,["H2203"]],[9,12,["H6083"]],[12,15,["H1614"]],[15,18,["H776"]],[18,21,["H1961"]],[21,22,["H1197"]],[22,23,["H2203"]]]},{"k":18313,"v":[[0,3,["H3808"]],[3,5,["H3518"]],[5,6,["H3915"]],[6,8,["H3119"]],[8,10,["H6227"]],[10,14,["H5927"]],[14,16,["H5769"]],[16,18,["H4480","H1755"]],[18,20,["H1755"]],[20,24,["H2717"]],[24,25,["H369"]],[25,28,["H5674"]],[28,31,["H5331"]],[31,33,["H5331"]]]},{"k":18314,"v":[[0,3,["H6893"]],[3,6,["H7090"]],[6,8,["H3423"]],[8,11,["H3244"]],[11,15,["H6158"]],[15,17,["H7931"]],[17,24,["H5186"]],[24,25,["H5921"]],[25,28,["H6957"]],[28,30,["H8414"]],[30,33,["H68"]],[33,35,["H922"]]]},{"k":18315,"v":[[0,3,["H7121"]],[3,5,["H2715"]],[5,9,["H4410"]],[9,11,["H369"]],[11,14,["H8033"]],[14,16,["H3605"]],[16,18,["H8269"]],[18,20,["H1961"]],[20,21,["H657"]]]},{"k":18316,"v":[[0,2,["H5518"]],[2,5,["H5927"]],[5,8,["H759"]],[8,9,["H7057"]],[9,11,["H2336"]],[11,14,["H4013"]],[14,19,["H1961"]],[19,21,["H5116"]],[21,23,["H8565"]],[23,26,["H2681"]],[26,28,["H1323","H3284"]]]},{"k":18317,"v":[[0,6,["H6728"]],[6,9,["H6298"]],[9,10,["H854"]],[10,16,["H338"]],[16,19,["H8163"]],[19,21,["H7121"]],[21,22,["H5921"]],[22,24,["H7453"]],[24,27,["H3917"]],[27,28,["H389"]],[28,30,["H7280"]],[30,31,["H8033"]],[31,33,["H4672"]],[33,39,["H4494"]]]},{"k":18318,"v":[[0,1,["H8033"]],[1,5,["H7091"]],[5,8,["H7077"]],[8,10,["H4422"]],[10,12,["H1234"]],[12,14,["H1716"]],[14,17,["H6738"]],[17,18,["H8033"]],[18,21,["H1772"]],[21,22,["H389"]],[22,24,["H6908"]],[24,26,["H802"]],[26,29,["H7468"]]]},{"k":18319,"v":[[0,1,["H1875"]],[1,4,["H4480","H5921"]],[4,6,["H5612"]],[6,9,["H3068"]],[9,11,["H7121"]],[11,12,["H3808"]],[12,13,["H259"]],[13,15,["H4480","H2007"]],[15,17,["H5737"]],[17,18,["H3808","H802"]],[18,20,["H6485"]],[20,22,["H7468"]],[22,23,["H3588"]],[23,25,["H6310"]],[25,26,["H1931"]],[26,28,["H6680"]],[28,31,["H7307"]],[31,32,["H1931"]],[32,34,["H6908"]],[34,35,[]]]},{"k":18320,"v":[[0,2,["H1931"]],[2,4,["H5307"]],[4,6,["H1486"]],[6,11,["H3027"]],[11,13,["H2505"]],[13,18,["H6957"]],[18,21,["H3423"]],[21,24,["H5704","H5769"]],[24,26,["H1755"]],[26,28,["H1755"]],[28,31,["H7931"]],[31,32,[]]]},{"k":18321,"v":[[0,2,["H4057"]],[2,6,["H6723"]],[6,9,["H7797"]],[9,14,["H6160"]],[14,16,["H1523"]],[16,18,["H6524"]],[18,21,["H2261"]]]},{"k":18322,"v":[[0,4,["H6524","H6524"]],[4,6,["H1523"]],[6,7,["H637"]],[7,9,["H1525"]],[9,11,["H7442"]],[11,13,["H3519"]],[13,15,["H3844"]],[15,18,["H5414"]],[18,22,["H1926"]],[22,24,["H3760"]],[24,26,["H8289"]],[26,27,["H1992"]],[27,29,["H7200"]],[29,31,["H3519"]],[31,34,["H3068"]],[34,37,["H1926"]],[37,40,["H430"]]]},{"k":18323,"v":[[0,1,["H2388"]],[1,4,["H7504"]],[4,5,["H3027"]],[5,7,["H553"]],[7,9,["H3782"]],[9,10,["H1290"]]]},{"k":18324,"v":[[0,1,["H559"]],[1,8,["H4116"]],[8,9,["H3820"]],[9,11,["H2388"]],[11,12,["H3372"]],[12,13,["H408"]],[13,14,["H2009"]],[14,16,["H430"]],[16,18,["H935"]],[18,20,["H5359"]],[20,22,["H430"]],[22,25,["H1576"]],[25,26,["H1931"]],[26,28,["H935"]],[28,30,["H3467"]],[30,31,[]]]},{"k":18325,"v":[[0,1,["H227"]],[1,3,["H5869"]],[3,6,["H5787"]],[6,9,["H6491"]],[9,12,["H241"]],[12,15,["H2795"]],[15,18,["H6605"]]]},{"k":18326,"v":[[0,1,["H227"]],[1,4,["H6455"]],[4,6,["H1801"]],[6,9,["H354"]],[9,12,["H3956"]],[12,15,["H483"]],[15,16,["H7442"]],[16,17,["H3588"]],[17,20,["H4057"]],[20,22,["H4325"]],[22,24,["H1234"]],[24,26,["H5158"]],[26,29,["H6160"]]]},{"k":18327,"v":[[0,4,["H8273"]],[4,6,["H1961"]],[6,8,["H98"]],[8,12,["H6774"]],[12,13,["H4002"]],[13,15,["H4325"]],[15,18,["H5116"]],[18,20,["H8565"]],[20,23,["H7258"]],[23,26,["H2682"]],[26,28,["H7070"]],[28,30,["H1573"]]]},{"k":18328,"v":[[0,3,["H4547"]],[3,5,["H1961"]],[5,6,["H8033"]],[6,9,["H1870"]],[9,14,["H7121"]],[14,16,["H1870"]],[16,18,["H6944"]],[18,20,["H2931"]],[20,22,["H3808"]],[22,24,["H5674"]],[24,27,["H1931"]],[27,34,["H1980","H1870"]],[34,36,["H191"]],[36,38,["H3808"]],[38,39,["H8582"]],[39,40,[]]]},{"k":18329,"v":[[0,1,["H3808"]],[1,2,["H738"]],[2,4,["H1961"]],[4,5,["H8033"]],[5,6,["H1077"]],[6,8,["H6530"]],[8,9,["H2416"]],[9,12,["H5927"]],[12,16,["H3808"]],[16,18,["H4672"]],[18,19,["H8033"]],[19,22,["H1350"]],[22,24,["H1980"]],[24,25,[]]]},{"k":18330,"v":[[0,3,["H6299"]],[3,6,["H3068"]],[6,8,["H7725"]],[8,10,["H935"]],[10,12,["H6726"]],[12,14,["H7440"]],[14,16,["H5769"]],[16,17,["H8342"]],[17,18,["H5921"]],[18,20,["H7218"]],[20,23,["H5381"]],[23,24,["H8342"]],[24,26,["H8057"]],[26,28,["H3015"]],[28,30,["H585"]],[30,33,["H5127"]]]},{"k":18331,"v":[[0,5,["H1961"]],[5,8,["H702","H6240"]],[8,9,["H8141"]],[9,11,["H4428"]],[11,12,["H2396"]],[12,14,["H5576"]],[14,15,["H4428"]],[15,17,["H804"]],[17,19,["H5927"]],[19,20,["H5921"]],[20,21,["H3605"]],[21,23,["H1219"]],[23,24,["H5892"]],[24,26,["H3063"]],[26,28,["H8610"]],[28,29,[]]]},{"k":18332,"v":[[0,3,["H4428"]],[3,5,["H804"]],[5,6,["H7971","(H853)"]],[6,7,["H7262"]],[7,9,["H4480","H3923"]],[9,11,["H3389"]],[11,12,["H413"]],[12,13,["H4428"]],[13,14,["H2396"]],[14,17,["H3515"]],[17,18,["H2428"]],[18,21,["H5975"]],[21,24,["H8585"]],[24,27,["H5945"]],[27,28,["H1295"]],[28,31,["H4546"]],[31,34,["H3526"]],[34,35,["H7704"]]]},{"k":18333,"v":[[0,3,["H3318"]],[3,4,["H413"]],[4,6,["H471"]],[6,7,["H2518"]],[7,8,["H1121"]],[8,9,["H834"]],[9,11,["H5921"]],[11,13,["H1004"]],[13,15,["H7644"]],[15,17,["H5608"]],[17,19,["H3098"]],[19,20,["H623"]],[20,21,["H1121"]],[21,23,["H2142"]]]},{"k":18334,"v":[[0,2,["H7262"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H559"]],[6,8,["H4994"]],[8,9,["H413"]],[9,10,["H2396"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H1419"]],[14,15,["H4428"]],[15,17,["H4428"]],[17,19,["H804"]],[19,20,["H4100"]],[20,21,["H986"]],[21,23,["H2088"]],[23,24,["H834"]],[24,26,["H982"]]]},{"k":18335,"v":[[0,2,["H559"]],[2,5,["H389"]],[5,9,["H8193"]],[9,10,["H1697"]],[10,13,["H6098"]],[13,15,["H1369"]],[15,17,["H4421"]],[17,18,["H6258"]],[18,19,["H5921"]],[19,20,["H4310"]],[20,23,["H982"]],[23,24,["H3588"]],[24,26,["H4775"]],[26,28,[]]]},{"k":18336,"v":[[0,1,["H2009"]],[1,3,["H982"]],[3,4,["H5921"]],[4,6,["H4938"]],[6,8,["H2088"]],[8,9,["H7533"]],[9,10,["H7070"]],[10,11,["H5921"]],[11,12,["H4714"]],[12,13,["H834","H5921"]],[13,16,["H376"]],[16,17,["H5564"]],[17,20,["H935"]],[20,23,["H3709"]],[23,25,["H5344"]],[25,27,["H3651"]],[27,29,["H6547"]],[29,30,["H4428"]],[30,32,["H4714"]],[32,34,["H3605"]],[34,36,["H982"]],[36,37,["H5921"]],[37,38,[]]]},{"k":18337,"v":[[0,1,["H3588"]],[1,4,["H559"]],[4,5,["H413"]],[5,8,["H982"]],[8,9,["H413"]],[9,11,["H3068"]],[11,13,["H430"]],[13,16,["H3808"]],[16,17,["H1931","(H853)"]],[17,18,["H834"]],[18,20,["H1116"]],[20,23,["H4196"]],[23,24,["H2396"]],[24,27,["H5493"]],[27,29,["H559"]],[29,31,["H3063"]],[31,34,["H3389"]],[34,37,["H7812"]],[37,38,["H6440"]],[38,39,["H2088"]],[39,40,["H4196"]]]},{"k":18338,"v":[[0,1,["H6258"]],[1,4,["H6149"]],[4,7,["H4994"]],[7,8,["H854"]],[8,10,["H113"]],[10,12,["H4428"]],[12,14,["H804"]],[14,18,["H5414"]],[18,21,["H505"]],[21,22,["H5483"]],[22,23,["H518"]],[23,26,["H3201"]],[26,31,["H5414"]],[31,32,["H7392"]],[32,33,["H5921"]],[33,34,[]]]},{"k":18339,"v":[[0,1,["H349"]],[1,6,["H7725","(H853)"]],[6,8,["H6440"]],[8,10,["H259"]],[10,11,["H6346"]],[11,14,["H6996"]],[14,17,["H113"]],[17,18,["H5650"]],[18,22,["H982"]],[22,23,["H5921"]],[23,24,["H4714"]],[24,26,["H7393"]],[26,29,["H6571"]]]},{"k":18340,"v":[[0,4,["H6258"]],[4,6,["H5927"]],[6,7,["H4480","H1107"]],[7,9,["H3068"]],[9,10,["H5921"]],[10,11,["H2063"]],[11,12,["H776"]],[12,14,["H7843"]],[14,17,["H3068"]],[17,18,["H559"]],[18,19,["H413"]],[19,22,["H5927"]],[22,23,["H413"]],[23,24,["H2063"]],[24,25,["H776"]],[25,27,["H7843"]],[27,28,[]]]},{"k":18341,"v":[[0,2,["H559"]],[2,3,["H471"]],[3,5,["H7644"]],[5,7,["H3098"]],[7,8,["H413"]],[8,9,["H7262"]],[9,10,["H1696"]],[10,13,["H4994"]],[13,14,["H413"]],[14,16,["H5650"]],[16,20,["H762"]],[20,21,["H3588"]],[21,22,["H587"]],[22,23,["H8085"]],[23,26,["H1696"]],[26,27,["H408"]],[27,28,["H413"]],[28,33,["H3066"]],[33,36,["H241"]],[36,39,["H5971"]],[39,40,["H834"]],[40,42,["H5921"]],[42,44,["H2346"]]]},{"k":18342,"v":[[0,2,["H7262"]],[2,3,["H559"]],[3,6,["H113"]],[6,7,["H7971"]],[7,9,["H413"]],[9,11,["H113"]],[11,13,["H413"]],[13,16,["H1696","(H853)"]],[16,17,["H428"]],[17,18,["H1697"]],[18,21,["H3808"]],[21,24,["H5921"]],[24,26,["H376"]],[26,28,["H3427"]],[28,29,["H5921"]],[29,31,["H2346"]],[31,35,["H398","(H853)"]],[35,38,["H2716"]],[38,40,["H8354","(H853)"]],[40,43,["H7890"]],[43,44,["H5973"]],[44,45,[]]]},{"k":18343,"v":[[0,2,["H7262"]],[2,3,["H5975"]],[3,5,["H7121"]],[5,8,["H1419"]],[8,9,["H6963"]],[9,13,["H3066"]],[13,15,["H559"]],[15,16,["H8085"]],[16,17,["(H853)"]],[17,19,["H1697"]],[19,22,["H1419"]],[22,23,["H4428"]],[23,25,["H4428"]],[25,27,["H804"]]]},{"k":18344,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H4428"]],[4,6,["H408"]],[6,7,["H2396"]],[7,8,["H5377"]],[8,10,["H3588"]],[10,13,["H3808"]],[13,15,["H3201"]],[15,17,["H5337"]],[17,18,[]]]},{"k":18345,"v":[[0,1,["H408"]],[1,3,["H2396"]],[3,6,["H982","(H853)"]],[6,7,["H413"]],[7,9,["H3068"]],[9,10,["H559"]],[10,12,["H3068"]],[12,15,["H5337","H5337"]],[15,17,["H2063"]],[17,18,["H5892"]],[18,20,["H3808"]],[20,22,["H5414"]],[22,25,["H3027"]],[25,28,["H4428"]],[28,30,["H804"]]]},{"k":18346,"v":[[0,1,["H8085"]],[1,2,["H408"]],[2,3,["H413"]],[3,4,["H2396"]],[4,5,["H3588"]],[5,6,["H3541"]],[6,7,["H559"]],[7,9,["H4428"]],[9,11,["H804"]],[11,12,["H6213"]],[12,15,["H854"]],[15,19,["H1293"]],[19,22,["H3318"]],[22,23,["H413"]],[23,26,["H398"]],[26,29,["H376"]],[29,32,["H1612"]],[32,35,["H376"]],[35,39,["H8384"]],[39,41,["H8354"]],[41,44,["H376"]],[44,46,["H4325"]],[46,50,["H953"]]]},{"k":18347,"v":[[0,1,["H5704"]],[1,3,["H935"]],[3,7,["H3947","(H853)"]],[7,8,["H413"]],[8,10,["H776"]],[10,14,["H776"]],[14,16,["H776"]],[16,18,["H1715"]],[18,20,["H8492"]],[20,22,["H776"]],[22,24,["H3899"]],[24,26,["H3754"]]]},{"k":18348,"v":[[0,2,["H6435"]],[2,3,["H2396"]],[3,4,["H5496"]],[4,6,["H559"]],[6,8,["H3068"]],[8,10,["H5337"]],[10,13,["H376"]],[13,16,["H430"]],[16,19,["H1471"]],[19,20,["H5337","(H853)"]],[20,22,["H776"]],[22,26,["H4480","H3027"]],[26,29,["H4428"]],[29,31,["H804"]]]},{"k":18349,"v":[[0,1,["H346"]],[1,4,["H430"]],[4,6,["H2574"]],[6,8,["H774"]],[8,9,["H346"]],[9,12,["H430"]],[12,14,["H5617"]],[14,15,["H3588"]],[15,18,["H5337","(H853)"]],[18,19,["H8111"]],[19,23,["H4480","H3027"]]]},{"k":18350,"v":[[0,1,["H4310"]],[1,5,["H3605"]],[5,7,["H430"]],[7,9,["H428"]],[9,10,["H776"]],[10,11,["H834"]],[11,13,["H5337","(H853)"]],[13,15,["H776"]],[15,19,["H4480","H3027"]],[19,20,["H3588"]],[20,22,["H3068"]],[22,24,["H5337","(H853)"]],[24,25,["H3389"]],[25,29,["H4480","H3027"]]]},{"k":18351,"v":[[0,5,["H2790"]],[5,7,["H6030"]],[7,9,["H3808"]],[9,11,["H1697"]],[11,12,["H3588"]],[12,14,["H4428"]],[14,15,["H4687"]],[15,17,["H559"]],[17,18,["H6030"]],[18,20,["H3808"]]]},{"k":18352,"v":[[0,2,["H935"]],[2,3,["H471"]],[3,5,["H1121"]],[5,7,["H2518"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H1004"]],[12,14,["H7644"]],[14,16,["H5608"]],[16,18,["H3098"]],[18,20,["H1121"]],[20,22,["H623"]],[22,24,["H2142"]],[24,25,["H413"]],[25,26,["H2396"]],[26,29,["H899"]],[29,30,["H7167"]],[30,32,["H5046"]],[32,33,["(H853)"]],[33,35,["H1697"]],[35,37,["H7262"]]]},{"k":18353,"v":[[0,5,["H1961"]],[5,7,["H4428"]],[7,8,["H2396"]],[8,9,["H8085"]],[9,13,["H7167","(H853)"]],[13,15,["H899"]],[15,18,["H3680"]],[18,20,["H8242"]],[20,22,["H935"]],[22,25,["H1004"]],[25,28,["H3068"]]]},{"k":18354,"v":[[0,3,["H7971","(H853)"]],[3,4,["H471"]],[4,5,["H834"]],[5,7,["H5921"]],[7,9,["H1004"]],[9,11,["H7644"]],[11,13,["H5608"]],[13,16,["H2205"]],[16,19,["H3548"]],[19,20,["H3680"]],[20,22,["H8242"]],[22,23,["H413"]],[23,24,["H3470"]],[24,26,["H5030"]],[26,28,["H1121"]],[28,30,["H531"]]]},{"k":18355,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3541"]],[6,7,["H559"]],[7,8,["H2396"]],[8,9,["H2088"]],[9,10,["H3117"]],[10,13,["H3117"]],[13,15,["H6869"]],[15,18,["H8433"]],[18,21,["H5007"]],[21,22,["H3588"]],[22,24,["H1121"]],[24,26,["H935"]],[26,27,["H5704"]],[27,29,["H4866"]],[29,33,["H369"]],[33,34,["H3581"]],[34,37,["H3205"]]]},{"k":18356,"v":[[0,3,["H194"]],[3,5,["H3068"]],[5,7,["H430"]],[7,9,["H8085","(H853)"]],[9,11,["H1697"]],[11,13,["H7262"]],[13,14,["H834"]],[14,16,["H4428"]],[16,18,["H804"]],[18,20,["H113"]],[20,22,["H7971"]],[22,24,["H2778"]],[24,26,["H2416"]],[26,27,["H430"]],[27,30,["H3198"]],[30,32,["H1697"]],[32,33,["H834"]],[33,35,["H3068"]],[35,37,["H430"]],[37,39,["H8085"]],[39,42,["H5375"]],[42,44,["H8605"]],[44,45,["H1157"]],[45,47,["H7611"]],[47,50,["H4672"]]]},{"k":18357,"v":[[0,3,["H5650"]],[3,5,["H4428"]],[5,6,["H2396"]],[6,7,["H935"]],[7,8,["H413"]],[8,9,["H3470"]]]},{"k":18358,"v":[[0,2,["H3470"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3541"]],[6,9,["H559"]],[9,10,["H413"]],[10,12,["H113"]],[12,13,["H3541"]],[13,14,["H559"]],[14,16,["H3068"]],[16,19,["H3372","H408"]],[19,20,["H4480","H6440"]],[20,22,["H1697"]],[22,23,["H834"]],[23,26,["H8085"]],[26,27,["H834"]],[27,29,["H5288"]],[29,32,["H4428"]],[32,34,["H804"]],[34,36,["H1442"]],[36,37,[]]]},{"k":18359,"v":[[0,1,["H2009"]],[1,4,["H5414"]],[4,6,["H7307"]],[6,12,["H8085"]],[12,14,["H8052"]],[14,16,["H7725"]],[16,17,["H413"]],[17,20,["H776"]],[20,27,["H5307"]],[27,30,["H2719"]],[30,34,["H776"]]]},{"k":18360,"v":[[0,2,["H7262"]],[2,3,["H7725"]],[3,5,["H4672","(H853)"]],[5,7,["H4428"]],[7,9,["H804"]],[9,10,["H3898"]],[10,11,["H5921"]],[11,12,["H3841"]],[12,13,["H3588"]],[13,16,["H8085"]],[16,17,["H3588"]],[17,20,["H5265"]],[20,22,["H4480","H3923"]]]},{"k":18361,"v":[[0,3,["H8085"]],[3,4,["H559"]],[4,5,["H5921"]],[5,6,["H8640"]],[6,7,["H4428"]],[7,9,["H3568"]],[9,13,["H3318"]],[13,16,["H3898"]],[16,17,["H854"]],[17,22,["H8085"]],[22,25,["H7971"]],[25,26,["H4397"]],[26,27,["H413"]],[27,28,["H2396"]],[28,29,["H559"]]]},{"k":18362,"v":[[0,1,["H3541"]],[1,4,["H559"]],[4,5,["H413"]],[5,6,["H2396"]],[6,7,["H4428"]],[7,9,["H3063"]],[9,10,["H559"]],[10,12,["H408"]],[12,14,["H430"]],[14,16,["H834"]],[16,17,["H859"]],[17,18,["H982"]],[18,19,["H5377"]],[19,21,["H559"]],[21,22,["H3389"]],[22,24,["H3808"]],[24,26,["H5414"]],[26,29,["H3027"]],[29,32,["H4428"]],[32,34,["H804"]]]},{"k":18363,"v":[[0,1,["H2009"]],[1,2,["H859"]],[2,4,["H8085"]],[4,5,["H834"]],[5,7,["H4428"]],[7,9,["H804"]],[9,11,["H6213"]],[11,13,["H3605"]],[13,14,["H776"]],[14,18,["H2763"]],[18,21,["H859"]],[21,23,["H5337"]]]},{"k":18364,"v":[[0,3,["H430"]],[3,6,["H1471"]],[6,7,["H5337"]],[7,9,["H834"]],[9,11,["H1"]],[11,13,["H7843"]],[13,14,["(H853)"]],[14,15,["H1470"]],[15,17,["H2771"]],[17,19,["H7530"]],[19,22,["H1121"]],[22,24,["H5729"]],[24,25,["H834"]],[25,28,["H8515"]]]},{"k":18365,"v":[[0,1,["H346"]],[1,4,["H4428"]],[4,6,["H2574"]],[6,9,["H4428"]],[9,11,["H774"]],[11,14,["H4428"]],[14,17,["H5892"]],[17,19,["H5617"]],[19,20,["H2012"]],[20,22,["H5755"]]]},{"k":18366,"v":[[0,2,["H2396"]],[2,3,["H3947","(H853)"]],[3,5,["H5612"]],[5,8,["H4480","H3027"]],[8,11,["H4397"]],[11,13,["H7121"]],[13,16,["H2396"]],[16,18,["H5927"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,26,["H6566"]],[26,28,["H6440"]],[28,30,["H3068"]]]},{"k":18367,"v":[[0,2,["H2396"]],[2,3,["H6419"]],[3,4,["H413"]],[4,6,["H3068"]],[6,7,["H559"]]]},{"k":18368,"v":[[0,2,["H3068"]],[2,4,["H6635"]],[4,5,["H430"]],[5,7,["H3478"]],[7,9,["H3427"]],[9,12,["H3742"]],[12,13,["H859"]],[13,16,["H430"]],[16,19,["H905"]],[19,21,["H3605"]],[21,23,["H4467"]],[23,26,["H776"]],[26,27,["H859"]],[27,29,["H6213","(H853)"]],[29,30,["H8064"]],[30,32,["H776"]]]},{"k":18369,"v":[[0,1,["H5186"]],[1,3,["H241"]],[3,5,["H3068"]],[5,7,["H8085"]],[7,8,["H6491"]],[8,10,["H5869"]],[10,12,["H3068"]],[12,14,["H7200"]],[14,16,["H8085","(H853)"]],[16,17,["H3605"]],[17,19,["H1697"]],[19,21,["H5576"]],[21,22,["H834"]],[22,24,["H7971"]],[24,26,["H2778"]],[26,28,["H2416"]],[28,29,["H430"]]]},{"k":18370,"v":[[0,3,["H551"]],[3,4,["H3068"]],[4,6,["H4428"]],[6,8,["H804"]],[8,11,["H2717","(H853)"]],[11,12,["H3605"]],[12,14,["H776"]],[14,17,["H776"]]]},{"k":18371,"v":[[0,3,["H5414","(H853)"]],[3,5,["H430"]],[5,8,["H784"]],[8,9,["H3588"]],[9,10,["H1992"]],[10,12,["H3808"]],[12,13,["H430"]],[13,14,["H3588","H518"]],[14,16,["H4639"]],[16,18,["H120"]],[18,19,["H3027"]],[19,20,["H6086"]],[20,22,["H68"]],[22,26,["H6"]],[26,27,[]]]},{"k":18372,"v":[[0,1,["H6258"]],[1,4,["H3068"]],[4,6,["H430"]],[6,7,["H3467"]],[7,11,["H4480","H3027"]],[11,13,["H3605"]],[13,15,["H4467"]],[15,18,["H776"]],[18,20,["H3045"]],[20,21,["H3588"]],[21,22,["H859"]],[22,25,["H3068"]],[25,28,["H905"]]]},{"k":18373,"v":[[0,2,["H3470"]],[2,4,["H1121"]],[4,6,["H531"]],[6,7,["H7971"]],[7,8,["H413"]],[8,9,["H2396"]],[9,10,["H559"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H3068"]],[14,15,["H430"]],[15,17,["H3478"]],[17,18,["H834"]],[18,21,["H6419"]],[21,22,["H413"]],[22,24,["H413"]],[24,25,["H5576"]],[25,26,["H4428"]],[26,28,["H804"]]]},{"k":18374,"v":[[0,1,["H2088"]],[1,4,["H1697"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H1696"]],[9,10,["H5921"]],[10,13,["H1330"]],[13,15,["H1323"]],[15,17,["H6726"]],[17,19,["H936"]],[19,25,["H3932"]],[25,27,["H1323"]],[27,29,["H3389"]],[29,31,["H5128"]],[31,33,["H7218"]],[33,34,["H310"]],[34,35,[]]]},{"k":18375,"v":[[0,0,["(H853)"]],[0,1,["H4310"]],[1,4,["H2778"]],[4,6,["H1442"]],[6,8,["H5921"]],[8,9,["H4310"]],[9,12,["H7311"]],[12,14,["H6963"]],[14,17,["H5375"]],[17,19,["H5869"]],[19,21,["H4791"]],[21,23,["H413"]],[23,26,["H6918"]],[26,28,["H3478"]]]},{"k":18376,"v":[[0,1,["H3027"]],[1,3,["H5650"]],[3,6,["H2778"]],[6,8,["H136"]],[8,11,["H559"]],[11,14,["H7230"]],[14,17,["H7393"]],[17,19,["H589"]],[19,21,["H5927"]],[21,24,["H4791"]],[24,27,["H2022"]],[27,30,["H3411"]],[30,32,["H3844"]],[32,37,["H3772"]],[37,39,["H6967"]],[39,40,["H730"]],[40,44,["H4005"]],[44,46,["H1265"]],[46,51,["H935"]],[51,54,["H4791"]],[54,57,["H7093"]],[57,60,["H3293"]],[60,63,["H3759"]]]},{"k":18377,"v":[[0,1,["H589"]],[1,3,["H6979"]],[3,5,["H8354"]],[5,6,["H4325"]],[6,10,["H3709"]],[10,13,["H6471"]],[13,17,["H2717"]],[17,18,["H3605"]],[18,20,["H2975"]],[20,24,["H4693"]]]},{"k":18378,"v":[[0,3,["H3808"]],[3,4,["H8085"]],[4,6,["H4480","H7350"]],[6,10,["H6213"]],[10,14,["H6924"]],[14,15,["H4480","H3117"]],[15,19,["H3335"]],[19,21,["H6258"]],[21,27,["H935"]],[27,31,["H1961"]],[31,34,["H7582"]],[34,35,["H1219"]],[35,36,["H5892"]],[36,38,["H5327"]],[38,39,["H1530"]]]},{"k":18379,"v":[[0,3,["H3427"]],[3,6,["H7116"]],[6,7,["H3027"]],[7,10,["H2865"]],[10,12,["H954"]],[12,14,["H1961"]],[14,17,["H6212"]],[17,20,["H7704"]],[20,24,["H3419"]],[24,25,["H1877"]],[25,28,["H2682"]],[28,31,["H1406"]],[31,35,["H7711"]],[35,36,["H6440"]],[36,40,["H7054"]]]},{"k":18380,"v":[[0,3,["H3045"]],[3,5,["H3427"]],[5,9,["H3318"]],[9,13,["H935"]],[13,16,["H7264"]],[16,17,["H413"]],[17,18,[]]]},{"k":18381,"v":[[0,1,["H3282"]],[1,3,["H7264"]],[3,4,["H413"]],[4,8,["H7600"]],[8,11,["H5927"]],[11,14,["H241"]],[14,18,["H7760"]],[18,20,["H2397"]],[20,23,["H639"]],[23,26,["H4964"]],[26,29,["H8193"]],[29,35,["H7725"]],[35,38,["H1870"]],[38,40,["H834"]],[40,42,["H935"]]]},{"k":18382,"v":[[0,2,["H2088"]],[2,6,["H226"]],[6,11,["H398"]],[11,13,["H8141"]],[13,18,["H5599"]],[18,21,["H8145"]],[21,22,["H8141"]],[22,28,["H7823"]],[28,32,["H7992"]],[32,33,["H8141"]],[33,34,["H2232"]],[34,37,["H7114"]],[37,39,["H5193"]],[39,40,["H3754"]],[40,42,["H398"]],[42,44,["H6529"]],[44,45,[]]]},{"k":18383,"v":[[0,3,["H7604"]],[3,6,["H6413"]],[6,9,["H1004"]],[9,11,["H3063"]],[11,13,["H3254"]],[13,15,["H8328"]],[15,16,["H4295"]],[16,18,["H6213"]],[18,19,["H6529"]],[19,20,["H4605"]]]},{"k":18384,"v":[[0,1,["H3588"]],[1,4,["H4480","H3389"]],[4,7,["H3318"]],[7,9,["H7611"]],[9,13,["H6413"]],[13,16,["H4480","H2022"]],[16,17,["H6726"]],[17,19,["H7068"]],[19,22,["H3068"]],[22,24,["H6635"]],[24,26,["H6213"]],[26,27,["H2063"]]]},{"k":18385,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H413"]],[6,8,["H4428"]],[8,10,["H804"]],[10,13,["H3808"]],[13,14,["H935"]],[14,15,["H413"]],[15,16,["H2063"]],[16,17,["H5892"]],[17,18,["H3808"]],[18,19,["H3384"]],[19,21,["H2671"]],[21,22,["H8033"]],[22,23,["H3808"]],[23,25,["H6923"]],[25,28,["H4043"]],[28,29,["H3808"]],[29,30,["H8210"]],[30,32,["H5550"]],[32,33,["H5921"]],[33,34,[]]]},{"k":18386,"v":[[0,3,["H1870"]],[3,4,["H834"]],[4,6,["H935"]],[6,12,["H7725"]],[12,15,["H3808"]],[15,16,["H935"]],[16,17,["H413"]],[17,18,["H2063"]],[18,19,["H5892"]],[19,20,["H5002"]],[20,22,["H3068"]]]},{"k":18387,"v":[[0,4,["H1598","H5921"]],[4,5,["H2063"]],[5,6,["H5892"]],[6,8,["H3467"]],[8,13,["H4616"]],[13,17,["H5650"]],[17,18,["H1732"]],[18,19,["H4616"]]]},{"k":18388,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,8,["H3318"]],[8,10,["H5221"]],[10,13,["H4264"]],[13,16,["H804"]],[16,18,["H3967"]],[18,20,["H8084"]],[20,22,["H2568"]],[22,23,["H505"]],[23,28,["H7925"]],[28,31,["H1242"]],[31,32,["H2009"]],[32,35,["H3605"]],[35,36,["H4191"]],[36,37,["H6297"]]]},{"k":18389,"v":[[0,2,["H5576"]],[2,3,["H4428"]],[3,5,["H804"]],[5,6,["H5265"]],[6,8,["H1980"]],[8,10,["H7725"]],[10,12,["H3427"]],[12,14,["H5210"]]]},{"k":18390,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,9,["H7812"]],[9,12,["H1004"]],[12,14,["H5268"]],[14,16,["H430"]],[16,18,["H152"]],[18,20,["H8272"]],[20,22,["H1121"]],[22,23,["H5221"]],[23,27,["H2719"]],[27,29,["H1992"]],[29,30,["H4422"]],[30,33,["H776"]],[33,35,["H780"]],[35,37,["H634"]],[37,39,["H1121"]],[39,40,["H4427"]],[40,43,["H8478"]]]},{"k":18391,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,6,["H2470","H2396"]],[6,8,["H4191"]],[8,10,["H3470"]],[10,12,["H5030"]],[12,14,["H1121"]],[14,16,["H531"]],[16,17,["H935"]],[17,18,["H413"]],[18,21,["H559"]],[21,22,["H413"]],[22,24,["H3541"]],[24,25,["H559"]],[25,27,["H3068"]],[27,32,["H6680","H1004"]],[32,33,["H3588"]],[33,34,["H859"]],[34,36,["H4191"]],[36,38,["H3808"]],[38,39,["H2421"]]]},{"k":18392,"v":[[0,2,["H2396"]],[2,3,["H5437"]],[3,5,["H6440"]],[5,6,["H413"]],[6,8,["H7023"]],[8,10,["H6419"]],[10,11,["H413"]],[11,13,["H3068"]]]},{"k":18393,"v":[[0,2,["H559"]],[2,3,["H2142"]],[3,4,["H4994"]],[4,6,["H3068"]],[6,9,["H577","(H853)"]],[9,10,["H834"]],[10,13,["H1980"]],[13,14,["H6440"]],[14,17,["H571"]],[17,21,["H8003"]],[21,22,["H3820"]],[22,25,["H6213"]],[25,29,["H2896"]],[29,32,["H5869"]],[32,34,["H2396"]],[34,35,["H1058"]],[35,36,["H1419","H1065"]]]},{"k":18394,"v":[[0,2,["H1961"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H413"]],[8,9,["H3470"]],[9,10,["H559"]]]},{"k":18395,"v":[[0,1,["H1980"]],[1,3,["H559"]],[3,4,["H413"]],[4,5,["H2396"]],[5,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,11,["H430"]],[11,13,["H1732"]],[13,15,["H1"]],[15,18,["H8085","(H853)"]],[18,20,["H8605"]],[20,23,["H7200","(H853)"]],[23,25,["H1832"]],[25,26,["H2009"]],[26,29,["H3254"]],[29,30,["H5921"]],[30,32,["H3117"]],[32,33,["H2568","H6240"]],[33,34,["H8141"]]]},{"k":18396,"v":[[0,4,["H5337"]],[4,7,["H2063"]],[7,8,["H5892"]],[8,12,["H4480","H3709"]],[12,15,["H4428"]],[15,17,["H804"]],[17,21,["H1598","H5921"]],[21,22,["H2063"]],[22,23,["H5892"]]]},{"k":18397,"v":[[0,2,["H2088"]],[2,6,["H226"]],[6,9,["H4480","H854"]],[9,11,["H3068"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H6213","(H853)"]],[16,17,["H2088"]],[17,18,["H1697"]],[18,19,["H834"]],[19,22,["H1696"]]]},{"k":18398,"v":[[0,1,["H2009"]],[1,5,["H7725","(H853)"]],[5,7,["H6738"]],[7,10,["H4609"]],[10,11,["H834"]],[11,14,["H3381"]],[14,17,["H8121"]],[17,18,["H4609"]],[18,20,["H271"]],[20,21,["H6235"]],[21,22,["H4609"]],[22,23,["H322"]],[23,26,["H8121"]],[26,27,["H7725"]],[27,28,["H6235"]],[28,29,["H4609"]],[29,31,["H834"]],[31,32,["H4609"]],[32,36,["H3381"]]]},{"k":18399,"v":[[0,2,["H4385"]],[2,4,["H2396"]],[4,5,["H4428"]],[5,7,["H3063"]],[7,12,["H2470"]],[12,15,["H2421"]],[15,18,["H4480","H2483"]]]},{"k":18400,"v":[[0,1,["H589"]],[1,2,["H559"]],[2,6,["H1824"]],[6,9,["H3117"]],[9,12,["H1980"]],[12,15,["H8179"]],[15,18,["H7585"]],[18,21,["H6485"]],[21,24,["H3499"]],[24,27,["H8141"]]]},{"k":18401,"v":[[0,2,["H559"]],[2,5,["H3808"]],[5,6,["H7200"]],[6,8,["H3050"]],[8,11,["H3050"]],[11,14,["H776"]],[14,17,["H2416"]],[17,20,["H5027"]],[20,21,["H120"]],[21,22,["H3808"]],[22,23,["H5750"]],[23,24,["H5973"]],[24,26,["H3427"]],[26,29,["H2309"]]]},{"k":18402,"v":[[0,2,["H1755"]],[2,4,["H5265"]],[4,7,["H1540"]],[7,8,["H4480"]],[8,12,["H7473"]],[12,13,["H168"]],[13,17,["H7088"]],[17,20,["H707"]],[20,22,["H2416"]],[22,27,["H1214"]],[27,30,["H4480","H1803"]],[30,32,["H4480","H3117"]],[32,34,["H5704"]],[34,35,["H3915"]],[35,40,["H7999"]],[40,42,[]]]},{"k":18403,"v":[[0,2,["H7737"]],[2,3,["H5704"]],[3,4,["H1242"]],[4,8,["H738"]],[8,9,["H3651"]],[9,12,["H7665"]],[12,13,["H3605"]],[13,15,["H6106"]],[15,17,["H4480","H3117"]],[17,19,["H5704"]],[19,20,["H3915"]],[20,25,["H7999"]],[25,27,[]]]},{"k":18404,"v":[[0,3,["H5483"]],[3,6,["H5693"]],[6,7,["H3651"]],[7,10,["H6850"]],[10,13,["H1897"]],[13,16,["H3123"]],[16,18,["H5869"]],[18,19,["H1809"]],[19,22,["H4791"]],[22,24,["H136"]],[24,27,["H6234"]],[27,28,["H6149"]],[28,30,[]]]},{"k":18405,"v":[[0,1,["H4100"]],[1,4,["H1696"]],[4,8,["H559"]],[8,12,["H1931"]],[12,14,["H6213"]],[14,19,["H1718"]],[19,20,["H3605"]],[20,22,["H8141"]],[22,23,["H5921"]],[23,25,["H4751"]],[25,28,["H5315"]]]},{"k":18406,"v":[[0,2,["H136"]],[2,3,["H5921"]],[3,7,["H2421"]],[7,10,["H3605"]],[10,11,["H2004"]],[11,15,["H2416"]],[15,18,["H7307"]],[18,22,["H2492"]],[22,28,["H2421"]]]},{"k":18407,"v":[[0,1,["H2009"]],[1,3,["H7965"]],[3,7,["H4751","H4843"]],[7,9,["H859"]],[9,12,["H2836"]],[12,15,["H5315"]],[15,20,["H4480","H7845"]],[20,22,["H1097"]],[22,23,["H3588"]],[23,26,["H7993"]],[26,27,["H3605"]],[27,29,["H2399"]],[29,30,["H310"]],[30,32,["H1460"]]]},{"k":18408,"v":[[0,1,["H3588"]],[1,3,["H7585"]],[3,4,["H3808"]],[4,5,["H3034"]],[5,7,["H4194"]],[7,10,["H1984"]],[10,15,["H3381"]],[15,18,["H953"]],[18,19,["H3808"]],[19,20,["H7663"]],[20,21,["H413"]],[21,23,["H571"]]]},{"k":18409,"v":[[0,2,["H2416"]],[2,4,["H2416"]],[4,5,["H1931"]],[5,7,["H3034"]],[7,13,["H3117"]],[13,15,["H1"]],[15,18,["H1121"]],[18,21,["H3045","H413"]],[21,23,["H571"]]]},{"k":18410,"v":[[0,2,["H3068"]],[2,6,["H3467"]],[6,13,["H5059"]],[13,17,["H5058"]],[17,18,["H3605"]],[18,20,["H3117"]],[20,23,["H2416"]],[23,24,["H5921"]],[24,26,["H1004"]],[26,29,["H3068"]]]},{"k":18411,"v":[[0,2,["H3470"]],[2,4,["H559"]],[4,7,["H5375"]],[7,9,["H1690"]],[9,11,["H8384"]],[11,17,["H4799"]],[17,18,["H5921"]],[18,20,["H7822"]],[20,24,["H2421"]]]},{"k":18412,"v":[[0,1,["H2396"]],[1,4,["H559"]],[4,5,["H4100"]],[5,8,["H226"]],[8,9,["H3588"]],[9,13,["H5927"]],[13,16,["H1004"]],[16,19,["H3068"]]]},{"k":18413,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,4,["H4757"]],[4,6,["H1121"]],[6,8,["H1081"]],[8,9,["H4428"]],[9,11,["H894"]],[11,12,["H7971"]],[12,13,["H5612"]],[13,16,["H4503"]],[16,17,["H413"]],[17,18,["H2396"]],[18,22,["H8085"]],[22,23,["H3588"]],[23,27,["H2470"]],[27,30,["H2388"]]]},{"k":18414,"v":[[0,2,["H2396"]],[2,4,["H8055"]],[4,5,["H5921"]],[5,8,["H7200"]],[8,9,["(H853)"]],[9,11,["H1004"]],[11,15,["H5238","(H853)"]],[15,17,["H3701"]],[17,20,["H2091"]],[20,23,["H1314"]],[23,26,["H2896"]],[26,27,["H8081"]],[27,29,["H3605"]],[29,31,["H1004"]],[31,34,["H3627"]],[34,36,["H3605"]],[36,37,["H834"]],[37,39,["H4672"]],[39,42,["H214"]],[42,44,["H1961"]],[44,45,["H3808","H1697"]],[45,48,["H1004"]],[48,51,["H3605"]],[51,53,["H4475"]],[53,54,["H834"]],[54,55,["H2396"]],[55,56,["H7200"]],[56,58,["H3808"]]]},{"k":18415,"v":[[0,2,["H935"]],[2,3,["H3470"]],[3,5,["H5030"]],[5,6,["H413"]],[6,7,["H4428"]],[7,8,["H2396"]],[8,10,["H559"]],[10,11,["H413"]],[11,13,["H4100"]],[13,14,["H559"]],[14,15,["H428"]],[15,16,["H582"]],[16,19,["H4480","H370"]],[19,20,["H935"]],[20,22,["H413"]],[22,25,["H2396"]],[25,26,["H559"]],[26,29,["H935"]],[29,32,["H7350"]],[32,33,["H4480","H776"]],[33,34,["H413"]],[34,38,["H4480","H894"]]]},{"k":18416,"v":[[0,2,["H559"]],[2,4,["H4100"]],[4,7,["H7200"]],[7,10,["H1004"]],[10,12,["H2396"]],[12,13,["H559","(H853)"]],[13,14,["H3605"]],[14,15,["H834"]],[15,19,["H1004"]],[19,22,["H7200"]],[22,24,["H1961"]],[24,25,["H3808","H1697"]],[25,28,["H214"]],[28,29,["H834"]],[29,32,["H3808"]],[32,33,["H7200"]],[33,34,[]]]},{"k":18417,"v":[[0,2,["H559"]],[2,3,["H3470"]],[3,4,["H413"]],[4,5,["H2396"]],[5,6,["H8085"]],[6,8,["H1697"]],[8,11,["H3068"]],[11,13,["H6635"]]]},{"k":18418,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,6,["H3605"]],[6,7,["H834"]],[7,11,["H1004"]],[11,14,["H834"]],[14,16,["H1"]],[16,21,["H686"]],[21,22,["H5704"]],[22,23,["H2088"]],[23,24,["H3117"]],[24,27,["H5375"]],[27,29,["H894"]],[29,30,["H3808","H1697"]],[30,33,["H3498"]],[33,34,["H559"]],[34,36,["H3068"]]]},{"k":18419,"v":[[0,4,["H4480","H1121"]],[4,5,["H834"]],[5,7,["H3318"]],[7,8,["H4480"]],[8,10,["H834"]],[10,13,["H3205"]],[13,17,["H3947"]],[17,21,["H1961"]],[21,22,["H5631"]],[22,25,["H1964"]],[25,28,["H4428"]],[28,30,["H894"]]]},{"k":18420,"v":[[0,2,["H559"]],[2,3,["H2396"]],[3,4,["H413"]],[4,5,["H3470"]],[5,6,["H2896"]],[6,9,["H1697"]],[9,12,["H3068"]],[12,13,["H834"]],[13,16,["H1696"]],[16,18,["H559"]],[18,20,["H3588"]],[20,23,["H1961"]],[23,24,["H7965"]],[24,26,["H571"]],[26,29,["H3117"]]]},{"k":18421,"v":[[0,1,["H5162"]],[1,3,["H5162"]],[3,6,["H5971"]],[6,7,["H559"]],[7,9,["H430"]]]},{"k":18422,"v":[[0,1,["H1696"]],[1,3,["H5921","H3820"]],[3,5,["H3389"]],[5,7,["H7121"]],[7,8,["H413"]],[8,10,["H3588"]],[10,12,["H6635"]],[12,14,["H4390"]],[14,15,["H3588"]],[15,17,["H5771"]],[17,19,["H7521"]],[19,20,["H3588"]],[20,23,["H3947"]],[23,26,["H3068"]],[26,27,["H4480","H3027"]],[27,28,["H3718"]],[28,30,["H3605"]],[30,32,["H2403"]]]},{"k":18423,"v":[[0,2,["H6963"]],[2,6,["H7121"]],[6,9,["H4057"]],[9,10,["H6437"]],[10,13,["H1870"]],[13,16,["H3068"]],[16,18,["H3474"]],[18,21,["H6160"]],[21,23,["H4546"]],[23,26,["H430"]]]},{"k":18424,"v":[[0,1,["H3605"]],[1,2,["H1516"]],[2,5,["H5375"]],[5,7,["H3605"]],[7,8,["H2022"]],[8,10,["H1389"]],[10,14,["H8213"]],[14,17,["H6121"]],[17,20,["H1961"]],[20,21,["H4334"]],[21,25,["H7406"]],[25,26,["H1237"]]]},{"k":18425,"v":[[0,3,["H3519"]],[3,6,["H3068"]],[6,9,["H1540"]],[9,11,["H3605"]],[11,12,["H1320"]],[12,14,["H7200"]],[14,16,["H3162"]],[16,17,["H3588"]],[17,19,["H6310"]],[19,22,["H3068"]],[22,24,["H1696"]],[24,25,[]]]},{"k":18426,"v":[[0,2,["H6963"]],[2,3,["H559"]],[3,4,["H7121"]],[4,7,["H559"]],[7,8,["H4100"]],[8,11,["H7121"]],[11,12,["H3605"]],[12,13,["H1320"]],[13,15,["H2682"]],[15,17,["H3605"]],[17,19,["H2617"]],[19,24,["H6731"]],[24,27,["H7704"]]]},{"k":18427,"v":[[0,2,["H2682"]],[2,3,["H3001"]],[3,5,["H6731"]],[5,6,["H5034"]],[6,7,["H3588"]],[7,9,["H7307"]],[9,12,["H3068"]],[12,13,["H5380"]],[13,16,["H403"]],[16,18,["H5971"]],[18,20,["H2682"]]]},{"k":18428,"v":[[0,2,["H2682"]],[2,3,["H3001"]],[3,5,["H6731"]],[5,6,["H5034"]],[6,9,["H1697"]],[9,12,["H430"]],[12,14,["H6965"]],[14,16,["H5769"]]]},{"k":18429,"v":[[0,2,["H6726"]],[2,6,["H1319"]],[6,9,["H5927"]],[9,10,["H5921"]],[10,12,["H1364"]],[12,13,["H2022"]],[13,15,["H3389"]],[15,19,["H1319"]],[19,21,["H7311"]],[21,23,["H6963"]],[23,25,["H3581"]],[25,28,["H7311"]],[28,31,["H3372","H408"]],[31,32,["H559"]],[32,35,["H5892"]],[35,37,["H3063"]],[37,38,["H2009"]],[38,40,["H430"]]]},{"k":18430,"v":[[0,1,["H2009"]],[1,3,["H136"]],[3,4,["H3069"]],[4,6,["H935"]],[6,8,["H2389"]],[8,12,["H2220"]],[12,14,["H4910"]],[14,17,["H2009"]],[17,19,["H7939"]],[19,21,["H854"]],[21,25,["H6468"]],[25,26,["H6440"]],[26,27,[]]]},{"k":18431,"v":[[0,3,["H7462"]],[3,5,["H5739"]],[5,8,["H7462"]],[8,11,["H6908"]],[11,13,["H2922"]],[13,16,["H2220"]],[16,18,["H5375"]],[18,22,["H2436"]],[22,26,["H5095"]],[26,31,["H5763"]]]},{"k":18432,"v":[[0,1,["H4310"]],[1,3,["H4058"]],[3,5,["H4325"]],[5,11,["H8168"]],[11,14,["H8505"]],[14,15,["H8064"]],[15,18,["H2239"]],[18,20,["H3557"]],[20,22,["H6083"]],[22,25,["H776"]],[25,28,["H7991"]],[28,30,["H8254"]],[30,32,["H2022"]],[32,34,["H6425"]],[34,37,["H1389"]],[37,40,["H3976"]]]},{"k":18433,"v":[[0,1,["H4310"]],[1,3,["H8505","(H853)"]],[3,5,["H7307"]],[5,8,["H3068"]],[8,12,["H376","H6098"]],[12,14,["H3045"]],[14,15,[]]]},{"k":18434,"v":[[0,0,["(H853)"]],[0,2,["H4310"]],[2,5,["H3289"]],[5,8,["H995"]],[8,11,["H3925"]],[11,15,["H734"]],[15,17,["H4941"]],[17,19,["H3925"]],[19,21,["H1847"]],[21,23,["H3045"]],[23,27,["H1870"]],[27,29,["H8394"]]]},{"k":18435,"v":[[0,1,["H2005"]],[1,3,["H1471"]],[3,7,["H4752"]],[7,10,["H4480","H1805"]],[10,13,["H2803"]],[13,17,["H7834"]],[17,20,["H3976"]],[20,21,["H2005"]],[21,24,["H5190"]],[24,26,["H339"]],[26,31,["H1851"]]]},{"k":18436,"v":[[0,2,["H3844"]],[2,4,["H369"]],[4,5,["H1767"]],[5,7,["H1197"]],[7,8,["H369"]],[8,10,["H2416"]],[10,12,["H1767"]],[12,16,["H5930"]]]},{"k":18437,"v":[[0,1,["H3605"]],[1,2,["H1471"]],[2,3,["H5048"]],[3,7,["H369"]],[7,11,["H2803"]],[11,16,["H4480","H657"]],[16,18,["H8414"]]]},{"k":18438,"v":[[0,1,["H413"]],[1,2,["H4310"]],[2,6,["H1819"]],[6,7,["H410"]],[7,9,["H4100"]],[9,10,["H1823"]],[10,13,["H6186"]],[13,15,[]]]},{"k":18439,"v":[[0,2,["H2796"]],[2,3,["H5258"]],[3,6,["H6459"]],[6,9,["H6884"]],[9,12,["H7554"]],[12,14,["H2091"]],[14,16,["H6884"]],[16,17,["H3701"]],[17,18,["H7577"]]]},{"k":18440,"v":[[0,5,["H5533"]],[5,10,["H8641"]],[10,11,["H977"]],[11,13,["H6086"]],[13,16,["H3808"]],[16,17,["H7537"]],[17,19,["H1245"]],[19,23,["H2450"]],[23,24,["H2796"]],[24,26,["H3559"]],[26,29,["H6459"]],[29,32,["H3808"]],[32,34,["H4131"]]]},{"k":18441,"v":[[0,3,["H3808"]],[3,4,["H3045"]],[4,7,["H3808"]],[7,8,["H8085"]],[8,11,["H3808"]],[11,13,["H5046"]],[13,17,["H4480","H7218"]],[17,20,["H3808"]],[20,21,["H995"]],[21,24,["H4480","H4146"]],[24,27,["H776"]]]},{"k":18442,"v":[[0,5,["H3427"]],[5,6,["H5921"]],[6,8,["H2329"]],[8,11,["H776"]],[11,14,["H3427"]],[14,18,["H2284"]],[18,21,["H5186"]],[21,23,["H8064"]],[23,26,["H1852"]],[26,30,["H4969"]],[30,33,["H168"]],[33,36,["H3427"]]]},{"k":18443,"v":[[0,2,["H5414"]],[2,4,["H7336"]],[4,6,["H369"]],[6,8,["H6213"]],[8,10,["H8199"]],[10,13,["H776"]],[13,15,["H8414"]]]},{"k":18444,"v":[[0,1,["H637"]],[1,4,["H1077"]],[4,6,["H5193"]],[6,7,["H637"]],[7,10,["H1077"]],[10,12,["H2232"]],[12,13,["H637"]],[13,15,["H1503"]],[15,17,["H1077"]],[17,19,["H8327"]],[19,22,["H776"]],[22,26,["H1571"]],[26,27,["H5398"]],[27,33,["H3001"]],[33,36,["H5591"]],[36,40,["H5375"]],[40,42,["H7179"]]]},{"k":18445,"v":[[0,1,["H413"]],[1,2,["H4310"]],[2,6,["H1819"]],[6,12,["H7737"]],[12,13,["H559"]],[13,16,["H6918"]]]},{"k":18446,"v":[[0,2,["H5375"]],[2,4,["H5869"]],[4,6,["H4791"]],[6,8,["H7200"]],[8,9,["H4310"]],[9,11,["H1254"]],[11,12,["H428"]],[12,16,["H3318"]],[16,18,["H6635"]],[18,20,["H4557"]],[20,22,["H7121"]],[22,24,["H3605"]],[24,26,["H8034"]],[26,29,["H4480","H7230"]],[29,32,["H202"]],[32,37,["H533"]],[37,39,["H3581"]],[39,40,["H3808"]],[40,41,["H376"]],[41,42,["H5737"]]]},{"k":18447,"v":[[0,1,["H4100"]],[1,2,["H559"]],[2,5,["H3290"]],[5,7,["H1696"]],[7,9,["H3478"]],[9,11,["H1870"]],[11,13,["H5641"]],[13,16,["H4480","H3068"]],[16,19,["H4941"]],[19,22,["H5674"]],[22,25,["H4480","H430"]]]},{"k":18448,"v":[[0,3,["H3808"]],[3,4,["H3045"]],[4,7,["H3808"]],[7,8,["H8085"]],[8,11,["H5769"]],[11,12,["H430"]],[12,14,["H3068"]],[14,16,["H1254"]],[16,19,["H7098"]],[19,22,["H776"]],[22,23,["H3286"]],[23,24,["H3808"]],[24,25,["H3808"]],[25,27,["H3021"]],[27,30,["H369"]],[30,31,["H2714"]],[31,34,["H8394"]]]},{"k":18449,"v":[[0,2,["H5414"]],[2,3,["H3581"]],[3,6,["H3287"]],[6,12,["H369"]],[12,13,["H202"]],[13,15,["H7235"]],[15,16,["H6109"]]]},{"k":18450,"v":[[0,3,["H5288"]],[3,5,["H3286"]],[5,8,["H3021"]],[8,12,["H970"]],[12,15,["H3782","H3782"]]]},{"k":18451,"v":[[0,5,["H6960"]],[5,7,["H3068"]],[7,9,["H2498"]],[9,11,["H3581"]],[11,15,["H5927"]],[15,17,["H83"]],[17,19,["H5404"]],[19,22,["H7323"]],[22,24,["H3808"]],[24,26,["H3021"]],[26,30,["H1980"]],[30,32,["H3808"]],[32,33,["H3286"]]]},{"k":18452,"v":[[0,2,["H2790"]],[2,3,["H413"]],[3,6,["H339"]],[6,10,["H3816"]],[10,11,["H2498"]],[11,13,["H3581"]],[13,17,["H5066"]],[17,18,["H227"]],[18,21,["H1696"]],[21,25,["H7126"]],[25,26,["H3162"]],[26,28,["H4941"]]]},{"k":18453,"v":[[0,1,["H4310"]],[1,3,["H5782"]],[3,5,["H6664"]],[5,9,["H4480","H4217"]],[9,10,["H7121"]],[10,14,["H7272"]],[14,15,["H5414"]],[15,17,["H1471"]],[17,18,["H6440"]],[18,23,["H7287"]],[23,25,["H4428"]],[25,27,["H5414"]],[27,31,["H6083"]],[31,34,["H2719"]],[34,37,["H5086"]],[37,38,["H7179"]],[38,41,["H7198"]]]},{"k":18454,"v":[[0,2,["H7291"]],[2,5,["H5674"]],[5,6,["H7965"]],[6,10,["H734"]],[10,14,["H3808"]],[14,15,["H935"]],[15,18,["H7272"]]]},{"k":18455,"v":[[0,1,["H4310"]],[1,3,["H6466"]],[3,5,["H6213"]],[5,7,["H7121"]],[7,9,["H1755"]],[9,12,["H4480","H7218"]],[12,13,["H589"]],[13,15,["H3068"]],[15,17,["H7223"]],[17,19,["H854"]],[19,21,["H314"]],[21,22,["H589"]],[22,24,["H1931"]]]},{"k":18456,"v":[[0,2,["H339"]],[2,3,["H7200"]],[3,6,["H3372"]],[6,8,["H7098"]],[8,11,["H776"]],[11,13,["H2729"]],[13,15,["H7126"]],[15,17,["H857"]]]},{"k":18457,"v":[[0,2,["H5826"]],[2,4,["H376","(H853)"]],[4,6,["H7453"]],[6,10,["H559"]],[10,13,["H251"]],[13,17,["H2388"]]]},{"k":18458,"v":[[0,3,["H2796"]],[3,4,["H2388","(H853)"]],[4,6,["H6884"]],[6,10,["H2505"]],[10,13,["H6360","(H853)"]],[13,16,["H1986"]],[16,18,["H6471"]],[18,19,["H559"]],[19,20,["H1931"]],[20,22,["H2896"]],[22,25,["H1694"]],[25,28,["H2388"]],[28,31,["H4548"]],[31,35,["H3808"]],[35,37,["H4131"]]]},{"k":18459,"v":[[0,2,["H859"]],[2,3,["H3478"]],[3,6,["H5650"]],[6,7,["H3290"]],[7,8,["H834"]],[8,11,["H977"]],[11,13,["H2233"]],[13,15,["H85"]],[15,17,["H157"]]]},{"k":18460,"v":[[0,2,["H834"]],[2,5,["H2388"]],[5,8,["H4480","H7098"]],[8,11,["H776"]],[11,13,["H7121"]],[13,18,["H4480","H678"]],[18,21,["H559"]],[21,24,["H859"]],[24,27,["H5650"]],[27,30,["H977"]],[30,33,["H3808"]],[33,36,["H3988"]]]},{"k":18461,"v":[[0,1,["H3372"]],[1,3,["H408"]],[3,4,["H3588"]],[4,5,["H589"]],[5,7,["H5973"]],[7,10,["H408"]],[10,11,["H8159"]],[11,12,["H3588"]],[12,13,["H589"]],[13,16,["H430"]],[16,19,["H553"]],[19,21,["H637"]],[21,24,["H5826"]],[24,26,["H637"]],[26,29,["H8551"]],[29,34,["H3225"]],[34,37,["H6664"]]]},{"k":18462,"v":[[0,1,["H2005"]],[1,2,["H3605"]],[2,6,["H2734"]],[6,11,["H954"]],[11,13,["H3637"]],[13,16,["H1961"]],[16,18,["H369"]],[18,20,["H376"]],[20,22,["H7379"]],[22,26,["H6"]]]},{"k":18463,"v":[[0,3,["H1245"]],[3,7,["H3808"]],[7,8,["H4672"]],[8,9,["H376"]],[9,13,["H4695"]],[13,16,["H376"]],[16,18,["H4421"]],[18,22,["H1961"]],[22,24,["H369"]],[24,30,["H657"]]]},{"k":18464,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,4,["H3068"]],[4,6,["H430"]],[6,8,["H2388"]],[8,11,["H3225"]],[11,12,["H559"]],[12,15,["H3372"]],[15,16,["H408"]],[16,17,["H589"]],[17,19,["H5826"]],[19,20,[]]]},{"k":18465,"v":[[0,1,["H3372"]],[1,2,["H408"]],[2,4,["H8438"]],[4,5,["H3290"]],[5,8,["H4962"]],[8,10,["H3478"]],[10,11,["H589"]],[11,13,["H5826"]],[13,15,["H5002"]],[15,17,["H3068"]],[17,20,["H1350"]],[20,23,["H6918"]],[23,25,["H3478"]]]},{"k":18466,"v":[[0,1,["H2009"]],[1,4,["H7760"]],[4,7,["H2319"]],[7,8,["H2742"]],[8,10,["H4173"]],[10,11,["H1167"]],[11,12,["H6374"]],[12,15,["H1758"]],[15,17,["H2022"]],[17,21,["H1854"]],[21,24,["H7760"]],[24,26,["H1389"]],[26,28,["H4671"]]]},{"k":18467,"v":[[0,3,["H2219"]],[3,7,["H7307"]],[7,11,["H5375"]],[11,14,["H5591"]],[14,16,["H6327"]],[16,19,["H859"]],[19,21,["H1523"]],[21,24,["H3068"]],[24,27,["H1984"]],[27,31,["H6918"]],[31,33,["H3478"]]]},{"k":18468,"v":[[0,3,["H6041"]],[3,5,["H34"]],[5,6,["H1245"]],[6,7,["H4325"]],[7,11,["H369"]],[11,14,["H3956"]],[14,15,["H5405"]],[15,17,["H6772"]],[17,18,["H589"]],[18,20,["H3068"]],[20,22,["H6030"]],[22,26,["H430"]],[26,28,["H3478"]],[28,30,["H3808"]],[30,31,["H5800"]],[31,32,[]]]},{"k":18469,"v":[[0,3,["H6605"]],[3,4,["H5104"]],[4,5,["H5921"]],[5,7,["H8205"]],[7,9,["H4599"]],[9,12,["H8432"]],[12,15,["H1237"]],[15,18,["H7760"]],[18,20,["H4057"]],[20,22,["H98"]],[22,24,["H4325"]],[24,27,["H6723"]],[27,28,["H776"]],[28,29,["H4161"]],[29,31,["H4325"]]]},{"k":18470,"v":[[0,3,["H5414"]],[3,6,["H4057"]],[6,8,["H730"]],[8,11,["H7848"]],[11,14,["H1918"]],[14,17,["H8081"]],[17,18,["H6086"]],[18,21,["H7760"]],[21,24,["H6160"]],[24,27,["H1265"]],[27,30,["H8410"]],[30,34,["H8391"]],[34,35,["H3162"]]]},{"k":18471,"v":[[0,1,["H4616"]],[1,4,["H7200"]],[4,6,["H3045"]],[6,8,["H7760"]],[8,10,["H7919"]],[10,11,["H3162"]],[11,12,["H3588"]],[12,14,["H3027"]],[14,17,["H3068"]],[17,19,["H6213"]],[19,20,["H2063"]],[20,24,["H6918"]],[24,26,["H3478"]],[26,28,["H1254"]],[28,29,[]]]},{"k":18472,"v":[[0,1,["H7126"]],[1,3,["H7379"]],[3,4,["H559"]],[4,6,["H3068"]],[6,8,["H5066"]],[8,10,["H6110"]],[10,12,["H559"]],[12,14,["H4428"]],[14,16,["H3290"]]]},{"k":18473,"v":[[0,5,["H5066"]],[5,7,["H5046"]],[7,8,["(H853)"]],[8,9,["H834"]],[9,11,["H7136"]],[11,14,["H5046"]],[14,17,["H7223"]],[17,18,["H4100"]],[18,19,["H2007"]],[19,24,["H7760","H3820"]],[24,27,["H3045"]],[27,30,["H319"]],[30,33,["H176"]],[33,34,["H8085"]],[34,39,["H935"]]]},{"k":18474,"v":[[0,1,["H5046"]],[1,7,["H857"]],[7,8,["H268"]],[8,12,["H3045"]],[12,13,["H3588"]],[13,14,["H859"]],[14,16,["H430"]],[16,17,["H637"]],[17,19,["H3190"]],[19,22,["H7489"]],[22,27,["H8159"]],[27,29,["H7200"]],[29,31,["H3162"]]]},{"k":18475,"v":[[0,1,["H2005"]],[1,2,["H859"]],[2,5,["H4480","H369"]],[5,8,["H6467"]],[8,10,["H4480","H659"]],[10,12,["H8441"]],[12,16,["H977"]],[16,17,[]]]},{"k":18476,"v":[[0,4,["H5782"]],[4,8,["H4480","H6828"]],[8,12,["H857"]],[12,15,["H4480","H4217"]],[15,18,["H8121"]],[18,21,["H7121"]],[21,24,["H8034"]],[24,28,["H935"]],[28,30,["H5461"]],[30,31,["H3644"]],[31,33,["H2563"]],[33,35,["H3644"]],[35,37,["H3335"]],[37,38,["H7429"]],[38,39,["H2916"]]]},{"k":18477,"v":[[0,1,["H4310"]],[1,3,["H5046"]],[3,6,["H4480","H7218"]],[6,10,["H3045"]],[10,12,["H4480","H6440"]],[12,16,["H559"]],[16,19,["H6662"]],[19,20,["H637"]],[20,23,["H369"]],[23,25,["H5046"]],[25,26,["H637"]],[26,29,["H369"]],[29,31,["H8085"]],[31,32,["H637"]],[32,35,["H369"]],[35,37,["H8085"]],[37,39,["H561"]]]},{"k":18478,"v":[[0,2,["H7223"]],[2,6,["H6726"]],[6,7,["H2009"]],[7,8,["H2009"]],[8,13,["H5414"]],[13,15,["H3389"]],[15,20,["H1319"]]]},{"k":18479,"v":[[0,3,["H7200"]],[3,7,["H369"]],[7,8,["H376"]],[8,11,["H4480","H428"]],[11,15,["H369"]],[15,16,["H3289"]],[16,20,["H7592"]],[20,24,["H7725"]],[24,26,["H1697"]]]},{"k":18480,"v":[[0,1,["H2005"]],[1,4,["H3605"]],[4,5,["H205"]],[5,7,["H4639"]],[7,9,["H657"]],[9,12,["H5262"]],[12,14,["H7307"]],[14,16,["H8414"]]]},{"k":18481,"v":[[0,1,["H2005"]],[1,3,["H5650"]],[3,6,["H8551"]],[6,8,["H972"]],[8,12,["H5315"]],[12,13,["H7521"]],[13,16,["H5414"]],[16,18,["H7307"]],[18,19,["H5921"]],[19,24,["H3318"]],[24,25,["H4941"]],[25,28,["H1471"]]]},{"k":18482,"v":[[0,3,["H3808"]],[3,4,["H6817"]],[4,5,["H3808"]],[5,7,["H5375"]],[7,8,["H3808"]],[8,11,["H6963"]],[11,14,["H8085"]],[14,17,["H2351"]]]},{"k":18483,"v":[[0,2,["H7533"]],[2,3,["H7070"]],[3,6,["H3808"]],[6,7,["H7665"]],[7,10,["H3544"]],[10,11,["H6594"]],[11,14,["H3808"]],[14,15,["H3518"]],[15,19,["H3318"]],[19,20,["H4941"]],[20,22,["H571"]]]},{"k":18484,"v":[[0,3,["H3808"]],[3,4,["H3543"]],[4,5,["H3808"]],[5,7,["H7533"]],[7,8,["H5704"]],[8,11,["H7760"]],[11,12,["H4941"]],[12,15,["H776"]],[15,18,["H339"]],[18,20,["H3176"]],[20,23,["H8451"]]]},{"k":18485,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,3,["H410"]],[3,5,["H3068"]],[5,8,["H1254"]],[8,10,["H8064"]],[10,14,["H5186"]],[14,18,["H7554"]],[18,20,["H776"]],[20,25,["H6631"]],[25,30,["H5414"]],[30,31,["H5397"]],[31,34,["H5971"]],[34,35,["H5921"]],[35,38,["H7307"]],[38,42,["H1980"]],[42,43,[]]]},{"k":18486,"v":[[0,1,["H589"]],[1,3,["H3068"]],[3,5,["H7121"]],[5,8,["H6664"]],[8,11,["H2388"]],[11,13,["H3027"]],[13,16,["H5341"]],[16,19,["H5414"]],[19,23,["H1285"]],[23,26,["H5971"]],[26,29,["H216"]],[29,32,["H1471"]]]},{"k":18487,"v":[[0,2,["H6491"]],[2,4,["H5787"]],[4,5,["H5869"]],[5,8,["H3318"]],[8,10,["H616"]],[10,13,["H4480","H4525"]],[13,17,["H3427"]],[17,19,["H2822"]],[19,23,["H3608"]],[23,24,["H4480","H1004"]]]},{"k":18488,"v":[[0,1,["H589"]],[1,4,["H3068"]],[4,5,["H1931"]],[5,8,["H8034"]],[8,11,["H3519"]],[11,14,["H3808"]],[14,15,["H5414"]],[15,17,["H312"]],[17,20,["H8416"]],[20,23,["H6456"]]]},{"k":18489,"v":[[0,1,["H2009"]],[1,4,["H7223"]],[4,8,["H935"]],[8,11,["H2319"]],[11,13,["H589"]],[13,14,["H5046"]],[14,15,["H2962"]],[15,18,["H6779"]],[18,20,["H8085"]],[20,23,[]]]},{"k":18490,"v":[[0,1,["H7891"]],[1,4,["H3068"]],[4,6,["H2319"]],[6,7,["H7892"]],[7,10,["H8416"]],[10,13,["H4480","H7097"]],[13,16,["H776"]],[16,20,["H3381"]],[20,23,["H3220"]],[23,28,["H4393"]],[28,30,["H339"]],[30,33,["H3427"]],[33,34,[]]]},{"k":18491,"v":[[0,3,["H4057"]],[3,6,["H5892"]],[6,9,["H5375"]],[9,13,["H2691"]],[13,15,["H6938"]],[15,17,["H3427"]],[17,20,["H3427"]],[20,23,["H5553"]],[23,24,["H7442"]],[24,27,["H6681"]],[27,30,["H4480","H7218"]],[30,33,["H2022"]]]},{"k":18492,"v":[[0,3,["H7760"]],[3,4,["H3519"]],[4,7,["H3068"]],[7,9,["H5046"]],[9,11,["H8416"]],[11,14,["H339"]]]},{"k":18493,"v":[[0,2,["H3068"]],[2,5,["H3318"]],[5,9,["H1368"]],[9,13,["H5782"]],[13,14,["H7068"]],[14,17,["H376"]],[17,19,["H4421"]],[19,22,["H7321"]],[22,23,["H637"]],[23,24,["H6873"]],[24,27,["H1396"]],[27,28,["H5921"]],[28,30,["H341"]]]},{"k":18494,"v":[[0,4,["H4480","H5769"]],[4,7,["H2814"]],[7,11,["H2790"]],[11,14,["H662"]],[14,18,["H6463"]],[18,22,["H3205"]],[22,25,["H5395"]],[25,27,["H7602"]],[27,29,["H3162"]]]},{"k":18495,"v":[[0,4,["H2717"]],[4,5,["H2022"]],[5,7,["H1389"]],[7,10,["H3001"]],[10,11,["H3605"]],[11,13,["H6212"]],[13,17,["H7760"]],[17,19,["H5104"]],[19,20,["H339"]],[20,25,["H3001"]],[25,27,["H98"]]]},{"k":18496,"v":[[0,4,["H1980"]],[4,6,["H5787"]],[6,9,["H1870"]],[9,12,["H3045"]],[12,13,["H3808"]],[13,17,["H1869"]],[17,19,["H5410"]],[19,23,["H3808"]],[23,24,["H3045"]],[24,27,["H7760"]],[27,28,["H4285"]],[28,29,["H216"]],[29,30,["H6440"]],[30,34,["H4625"]],[34,35,["H4334"]],[35,36,["H428"]],[36,37,["H1697"]],[37,40,["H6213"]],[40,44,["H3808"]],[44,45,["H5800"]],[45,46,[]]]},{"k":18497,"v":[[0,4,["H5472"]],[4,5,["H268"]],[5,10,["H954","H1322"]],[10,12,["H982"]],[12,15,["H6459"]],[15,17,["H559"]],[17,21,["H4541"]],[21,22,["H859"]],[22,25,["H430"]]]},{"k":18498,"v":[[0,1,["H8085"]],[1,3,["H2795"]],[3,5,["H5027"]],[5,7,["H5787"]],[7,11,["H7200"]]]},{"k":18499,"v":[[0,1,["H4310"]],[1,3,["H5787"]],[3,4,["H3588","H518"]],[4,6,["H5650"]],[6,8,["H2795"]],[8,11,["H4397"]],[11,14,["H7971"]],[14,15,["H4310"]],[15,17,["H5787"]],[17,22,["H7999"]],[22,24,["H5787"]],[24,27,["H3068"]],[27,28,["H5650"]]]},{"k":18500,"v":[[0,1,["H7200"]],[1,3,["H7227"]],[3,6,["H8104"]],[6,7,["H3808"]],[7,8,["H6491"]],[8,10,["H241"]],[10,13,["H8085"]],[13,14,["H3808"]]]},{"k":18501,"v":[[0,2,["H3068"]],[2,5,["H2654"]],[5,9,["H4616","H6664"]],[9,12,["H1431"]],[12,14,["H8451"]],[14,18,["H142"]]]},{"k":18502,"v":[[0,2,["H1931"]],[2,5,["H5971"]],[5,6,["H962"]],[6,8,["H8154"]],[8,11,["H3605"]],[11,14,["H6351"]],[14,16,["H2352"]],[16,20,["H2244"]],[20,22,["H3608"]],[22,23,["H1004"]],[23,25,["H1961"]],[25,28,["H957"]],[28,30,["H369"]],[30,31,["H5337"]],[31,34,["H4933"]],[34,36,["H369"]],[36,37,["H559"]],[37,38,["H7725"]]]},{"k":18503,"v":[[0,1,["H4310"]],[1,6,["H238"]],[6,8,["H2063"]],[8,11,["H7181"]],[11,13,["H8085"]],[13,18,["H268"]]]},{"k":18504,"v":[[0,1,["H4310"]],[1,2,["H5414"]],[2,3,["H3290"]],[3,6,["H4882"]],[6,8,["H3478"]],[8,11,["H962"]],[11,13,["H3808"]],[13,15,["H3068"]],[15,18,["H2098"]],[18,21,["H2398"]],[21,24,["H14"]],[24,25,["H3808"]],[25,26,["H1980"]],[26,29,["H1870"]],[29,30,["H3808"]],[30,33,["H8085"]],[33,36,["H8451"]]]},{"k":18505,"v":[[0,4,["H8210"]],[4,5,["H5921"]],[5,8,["H2534"]],[8,11,["H639"]],[11,14,["H5807"]],[14,16,["H4421"]],[16,23,["H3857"]],[23,25,["H4480","H5439"]],[25,28,["H3045"]],[28,29,["H3808"]],[29,32,["H1197"]],[32,36,["H7760"]],[36,38,["H3808"]],[38,39,["H5921"]],[39,40,["H3820"]]]},{"k":18506,"v":[[0,2,["H6258"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H3068"]],[6,8,["H1254"]],[8,11,["H3290"]],[11,15,["H3335"]],[15,18,["H3478"]],[18,19,["H3372"]],[19,20,["H408"]],[20,21,["H3588"]],[21,24,["H1350"]],[24,28,["H7121"]],[28,32,["H8034"]],[32,33,["H859"]],[33,35,[]]]},{"k":18507,"v":[[0,1,["H3588"]],[1,4,["H5674"]],[4,6,["H4325"]],[6,7,["H589"]],[7,10,["H854"]],[10,15,["H5104"]],[15,18,["H3808"]],[18,19,["H7857"]],[19,21,["H3588"]],[21,23,["H1980"]],[23,24,["H1119"]],[24,26,["H784"]],[26,29,["H3808"]],[29,31,["H3554"]],[31,32,["H3808"]],[32,35,["H3852"]],[35,36,["H1197"]],[36,38,[]]]},{"k":18508,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,5,["H3068"]],[5,7,["H430"]],[7,10,["H6918"]],[10,12,["H3478"]],[12,14,["H3467"]],[14,16,["H5414"]],[16,17,["H4714"]],[17,20,["H3724"]],[20,21,["H3568"]],[21,23,["H5434"]],[23,24,["H8478"]],[24,25,[]]]},{"k":18509,"v":[[0,1,["H4480","H834"]],[1,4,["H3365"]],[4,7,["H5869"]],[7,11,["H3513"]],[11,13,["H589"]],[13,15,["H157"]],[15,20,["H5414"]],[20,21,["H120"]],[21,22,["H8478"]],[22,25,["H3816"]],[25,26,["H8478"]],[26,28,["H5315"]]]},{"k":18510,"v":[[0,1,["H3372"]],[1,2,["H408"]],[2,3,["H3588"]],[3,4,["H589"]],[4,6,["H854"]],[6,10,["H935"]],[10,12,["H2233"]],[12,15,["H4480","H4217"]],[15,17,["H6908"]],[17,21,["H4480","H4628"]]]},{"k":18511,"v":[[0,3,["H559"]],[3,6,["H6828"]],[6,8,["H5414"]],[8,12,["H8486"]],[12,15,["H3607","H408"]],[15,16,["H935"]],[16,18,["H1121"]],[18,20,["H4480","H7350"]],[20,23,["H1323"]],[23,26,["H4480","H7097"]],[26,29,["H776"]]]},{"k":18512,"v":[[0,3,["H3605"]],[3,6,["H7121"]],[6,9,["H8034"]],[9,13,["H1254"]],[13,17,["H3519"]],[17,20,["H3335"]],[20,22,["H637"]],[22,25,["H6213"]],[25,26,[]]]},{"k":18513,"v":[[0,2,["H3318"]],[2,4,["H5787"]],[4,5,["H5971"]],[5,7,["H3426"]],[7,8,["H5869"]],[8,11,["H2795"]],[11,14,["H241"]]]},{"k":18514,"v":[[0,2,["H3605"]],[2,4,["H1471"]],[4,6,["H6908"]],[6,7,["H3162"]],[7,11,["H3816"]],[11,13,["H622"]],[13,14,["H4310"]],[14,18,["H5046"]],[18,19,["H2063"]],[19,21,["H8085"]],[21,24,["H7223"]],[24,28,["H5414"]],[28,30,["H5707"]],[30,35,["H6663"]],[35,39,["H8085"]],[39,41,["H559"]],[41,44,["H571"]]]},{"k":18515,"v":[[0,1,["H859"]],[1,4,["H5707"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,10,["H5650"]],[10,11,["H834"]],[11,14,["H977"]],[14,15,["H4616"]],[15,18,["H3045"]],[18,20,["H539"]],[20,23,["H995"]],[23,24,["H3588"]],[24,25,["H589"]],[25,27,["H1931"]],[27,28,["H6440"]],[28,32,["H3808"]],[32,33,["H410"]],[33,34,["H3335"]],[34,35,["H3808"]],[35,38,["H1961"]],[38,39,["H310"]],[39,40,[]]]},{"k":18516,"v":[[0,1,["H595"]],[1,3,["H595"]],[3,6,["H3068"]],[6,8,["H4480","H1107"]],[8,12,["H369"]],[12,13,["H3467"]]]},{"k":18517,"v":[[0,1,["H595"]],[1,3,["H5046"]],[3,6,["H3467"]],[6,10,["H8085"]],[10,14,["H369"]],[14,15,["H2114"]],[15,20,["H859"]],[20,23,["H5707"]],[23,24,["H5002"]],[24,26,["H3068"]],[26,28,["H589"]],[28,30,["H410"]]]},{"k":18518,"v":[[0,1,["H1571"]],[1,4,["H4480","H3117"]],[4,6,["H589"]],[6,8,["H1931"]],[8,12,["H369"]],[12,15,["H5337"]],[15,19,["H4480","H3027"]],[19,22,["H6466"]],[22,24,["H4310"]],[24,26,["H7725"]],[26,27,[]]]},{"k":18519,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H1350"]],[6,9,["H6918"]],[9,11,["H3478"]],[11,14,["H4616"]],[14,17,["H7971"]],[17,19,["H894"]],[19,23,["H3381"]],[23,24,["H3605"]],[24,26,["H1281"]],[26,29,["H3778"]],[29,31,["H7440"]],[31,35,["H591"]]]},{"k":18520,"v":[[0,1,["H589"]],[1,4,["H3068"]],[4,7,["H6918"]],[7,9,["H1254"]],[9,11,["H3478"]],[11,13,["H4428"]]]},{"k":18521,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H5414"]],[6,8,["H1870"]],[8,11,["H3220"]],[11,14,["H5410"]],[14,17,["H5794"]],[17,18,["H4325"]]]},{"k":18522,"v":[[0,3,["H3318"]],[3,5,["H7393"]],[5,7,["H5483"]],[7,9,["H2428"]],[9,12,["H5808"]],[12,16,["H7901"]],[16,17,["H3162"]],[17,20,["H1077"]],[20,21,["H6965"]],[21,24,["H1846"]],[24,27,["H3518"]],[27,29,["H6594"]]]},{"k":18523,"v":[[0,1,["H2142"]],[1,3,["H408"]],[3,6,["H7223"]],[6,7,["H408"]],[7,8,["H995"]],[8,12,["H6931"]]]},{"k":18524,"v":[[0,1,["H2009"]],[1,4,["H6213"]],[4,7,["H2319"]],[7,8,["H6258"]],[8,12,["H6779"]],[12,15,["H3808"]],[15,16,["H3045"]],[16,20,["H637"]],[20,21,["H7760"]],[21,23,["H1870"]],[23,26,["H4057"]],[26,28,["H5104"]],[28,31,["H3452"]]]},{"k":18525,"v":[[0,2,["H2416"]],[2,5,["H7704"]],[5,7,["H3513"]],[7,10,["H8565"]],[10,13,["H1323","H3284"]],[13,14,["H3588"]],[14,16,["H5414"]],[16,17,["H4325"]],[17,20,["H4057"]],[20,22,["H5104"]],[22,25,["H3452"]],[25,28,["H8248"]],[28,31,["H5971"]],[31,33,["H972"]]]},{"k":18526,"v":[[0,1,["H2098"]],[1,2,["H5971"]],[2,5,["H3335"]],[5,11,["H5608"]],[11,13,["H8416"]]]},{"k":18527,"v":[[0,4,["H3808"]],[4,6,["H7121"]],[6,9,["H3290"]],[9,10,["H3588"]],[10,14,["H3021"]],[14,18,["H3478"]]]},{"k":18528,"v":[[0,3,["H3808"]],[3,4,["H935"]],[4,8,["H7716"]],[8,12,["H5930"]],[12,13,["H3808"]],[13,16,["H3513"]],[16,20,["H2077"]],[20,23,["H3808"]],[23,27,["H5647"]],[27,30,["H4503"]],[30,31,["H3808"]],[31,32,["H3021"]],[32,35,["H3828"]]]},{"k":18529,"v":[[0,3,["H7069"]],[3,5,["H3808"]],[5,7,["H7070"]],[7,9,["H3701"]],[9,10,["H3808"]],[10,13,["H7301"]],[13,17,["H2459"]],[17,20,["H2077"]],[20,21,["H389"]],[21,27,["H5647"]],[27,30,["H2403"]],[30,33,["H3021"]],[33,37,["H5771"]]]},{"k":18530,"v":[[0,1,["H595"]],[1,3,["H595"]],[3,5,["H1931"]],[5,8,["H4229"]],[8,10,["H6588"]],[10,14,["H4616"]],[14,17,["H3808"]],[17,18,["H2142"]],[18,20,["H2403"]]]},{"k":18531,"v":[[0,4,["H2142"]],[4,7,["H8199"]],[7,8,["H3162"]],[8,9,["H5608"]],[9,10,["H859"]],[10,11,["H4616"]],[11,15,["H6663"]]]},{"k":18532,"v":[[0,2,["H7223"]],[2,3,["H1"]],[3,5,["H2398"]],[5,8,["H3887"]],[8,10,["H6586"]],[10,12,[]]]},{"k":18533,"v":[[0,4,["H2490"]],[4,6,["H8269"]],[6,9,["H6944"]],[9,12,["H5414"]],[12,13,["H3290"]],[13,16,["H2764"]],[16,18,["H3478"]],[18,20,["H1421"]]]},{"k":18534,"v":[[0,2,["H6258"]],[2,3,["H8085"]],[3,5,["H3290"]],[5,7,["H5650"]],[7,9,["H3478"]],[9,13,["H977"]]]},{"k":18535,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6213"]],[6,9,["H3335"]],[9,13,["H4480","H990"]],[13,16,["H5826"]],[16,18,["H3372"]],[18,19,["H408"]],[19,21,["H3290"]],[21,23,["H5650"]],[23,26,["H3484"]],[26,30,["H977"]]]},{"k":18536,"v":[[0,1,["H3588"]],[1,4,["H3332"]],[4,5,["H4325"]],[5,6,["H5921"]],[6,10,["H6771"]],[10,12,["H5140"]],[12,13,["H5921"]],[13,16,["H3004"]],[16,19,["H3332"]],[19,21,["H7307"]],[21,22,["H5921"]],[22,24,["H2233"]],[24,27,["H1293"]],[27,28,["H5921"]],[28,30,["H6631"]]]},{"k":18537,"v":[[0,5,["H6779"]],[5,7,["H996"]],[7,9,["H2682"]],[9,11,["H6155"]],[11,12,["H5921"]],[12,14,["H4325"]],[14,15,["H2988"]]]},{"k":18538,"v":[[0,1,["H2088"]],[1,3,["H559"]],[3,4,["H589"]],[4,7,["H3068"]],[7,9,["H2088"]],[9,11,["H7121"]],[11,15,["H8034"]],[15,17,["H3290"]],[17,19,["H2088"]],[19,21,["H3789"]],[21,24,["H3027"]],[24,27,["H3068"]],[27,29,["H3655"]],[29,33,["H8034"]],[33,35,["H3478"]]]},{"k":18539,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H4428"]],[6,8,["H3478"]],[8,11,["H1350"]],[11,13,["H3068"]],[13,15,["H6635"]],[15,16,["H589"]],[16,19,["H7223"]],[19,21,["H589"]],[21,24,["H314"]],[24,26,["H4480","H1107"]],[26,30,["H369"]],[30,31,["H430"]]]},{"k":18540,"v":[[0,2,["H4310"]],[2,6,["H7121"]],[6,9,["H5046"]],[9,15,["H6186"]],[15,20,["H4480","H7760"]],[20,22,["H5769"]],[22,23,["H5971"]],[23,29,["H857"]],[29,32,["H935"]],[32,35,["H5046"]],[35,37,[]]]},{"k":18541,"v":[[0,1,["H6342"]],[1,3,["H408"]],[3,4,["H408"]],[4,6,["H7297"]],[6,8,["H3808"]],[8,10,["H8085"]],[10,14,["H4480","H227"]],[14,17,["H5046"]],[17,19,["H859"]],[19,23,["H5707"]],[23,25,["H3426"]],[25,27,["H433"]],[27,28,["H4480","H1107"]],[28,33,["H369"]],[33,34,["H6697"]],[34,36,["H3045"]],[36,37,["H1077"]],[37,38,[]]]},{"k":18542,"v":[[0,3,["H3335"]],[3,6,["H6459"]],[6,8,["H3605"]],[8,11,["H8414"]],[11,15,["H2530"]],[15,17,["H1077"]],[17,18,["H3276"]],[18,20,["H1992"]],[20,24,["H5707"]],[24,26,["H7200"]],[26,27,["H1077"]],[27,28,["H1077"]],[28,29,["H3045"]],[29,30,["H4616"]],[30,34,["H954"]]]},{"k":18543,"v":[[0,1,["H4310"]],[1,3,["H3335"]],[3,5,["H410"]],[5,7,["H5258"]],[7,10,["H6459"]],[10,13,["H3276"]],[13,15,["H1115"]]]},{"k":18544,"v":[[0,1,["H2005"]],[1,2,["H3605"]],[2,4,["H2270"]],[4,7,["H954"]],[7,10,["H2796"]],[10,11,["H1992"]],[11,14,["H4480","H120"]],[14,17,["H3605"]],[17,20,["H6908"]],[20,24,["H5975"]],[24,28,["H6342"]],[28,33,["H954"]],[33,34,["H3162"]]]},{"k":18545,"v":[[0,2,["H2796","H1270"]],[2,5,["H4621"]],[5,7,["H6466"]],[7,10,["H6352"]],[10,12,["H3335"]],[12,15,["H4717"]],[15,17,["H6466"]],[17,21,["H3581"]],[21,24,["H2220"]],[24,25,["H1571"]],[25,28,["H7456"]],[28,31,["H3581"]],[31,32,["H369"]],[32,34,["H8354"]],[34,35,["H3808"]],[35,36,["H4325"]],[36,39,["H3286"]]]},{"k":18546,"v":[[0,2,["H2796","H6086"]],[2,4,["H5186"]],[4,6,["H6957"]],[6,10,["H8388"]],[10,13,["H8279"]],[13,15,["H6213"]],[15,18,["H4741"]],[18,23,["H8388"]],[23,26,["H4230"]],[26,28,["H6213"]],[28,32,["H8403"]],[32,35,["H376"]],[35,39,["H8597"]],[39,42,["H120"]],[42,46,["H3427"]],[46,49,["H1004"]]]},{"k":18547,"v":[[0,4,["H3772"]],[4,5,["H730"]],[5,7,["H3947"]],[7,9,["H8645"]],[9,12,["H437"]],[12,15,["H553"]],[15,20,["H6086"]],[20,23,["H3293"]],[23,25,["H5193"]],[25,27,["H766"]],[27,30,["H1653"]],[30,32,["H1431"]],[32,33,[]]]},{"k":18548,"v":[[0,4,["H1961"]],[4,7,["H120"]],[7,9,["H1197"]],[9,13,["H3947"]],[13,14,["H4480"]],[14,16,["H2552"]],[16,18,["H637"]],[18,20,["H5400"]],[20,23,["H644"]],[23,24,["H3899"]],[24,25,["H637"]],[25,27,["H6466"]],[27,29,["H410"]],[29,31,["H7812"]],[31,34,["H6213"]],[34,38,["H6459"]],[38,41,["H5456"]],[41,42,[]]]},{"k":18549,"v":[[0,2,["H8313"]],[2,3,["H2677"]],[3,5,["H1119"]],[5,7,["H784"]],[7,8,["H5921"]],[8,9,["H2677"]],[9,12,["H398"]],[12,13,["H1320"]],[13,15,["H6740"]],[15,16,["H6748"]],[16,19,["H7646"]],[19,20,["H637"]],[20,22,["H2552"]],[22,25,["H559"]],[25,26,["H1889"]],[26,29,["H2552"]],[29,32,["H7200"]],[32,34,["H217"]]]},{"k":18550,"v":[[0,3,["H7611"]],[3,6,["H6213"]],[6,8,["H410"]],[8,12,["H6459"]],[12,15,["H5456"]],[15,19,["H7812"]],[19,22,["H6419"]],[22,23,["H413"]],[23,26,["H559"]],[26,27,["H5337"]],[27,29,["H3588"]],[29,30,["H859"]],[30,33,["H410"]]]},{"k":18551,"v":[[0,3,["H3808"]],[3,4,["H3045"]],[4,5,["H3808"]],[5,6,["H995"]],[6,7,["H3588"]],[7,10,["H2902"]],[10,12,["H5869"]],[12,16,["H4480","H7200"]],[16,19,["H3820"]],[19,23,["H4480","H7919"]]]},{"k":18552,"v":[[0,2,["H3808"]],[2,3,["H7725"]],[3,4,["H413"]],[4,6,["H3820"]],[6,7,["H3808"]],[7,10,["H1847"]],[10,11,["H3808"]],[11,12,["H8394"]],[12,14,["H559"]],[14,17,["H8313"]],[17,18,["H2677"]],[18,21,["H1119"]],[21,23,["H784"]],[23,24,["H637"]],[24,28,["H644"]],[28,29,["H3899"]],[29,30,["H5921"]],[30,32,["H1513"]],[32,36,["H6740"]],[36,37,["H1320"]],[37,39,["H398"]],[39,44,["H6213"]],[44,46,["H3499"]],[46,49,["H8441"]],[49,53,["H5456"]],[53,56,["H944"]],[56,59,["H6086"]]]},{"k":18553,"v":[[0,2,["H7462"]],[2,4,["H665"]],[4,6,["H2048"]],[6,7,["H3820"]],[7,11,["H5186"]],[11,14,["H3808"]],[14,15,["H5337","(H853)"]],[15,17,["H5315"]],[17,18,["H3808"]],[18,19,["H559"]],[19,22,["H3808"]],[22,24,["H8267"]],[24,28,["H3225"]]]},{"k":18554,"v":[[0,1,["H2142"]],[1,2,["H428"]],[2,4,["H3290"]],[4,6,["H3478"]],[6,7,["H3588"]],[7,8,["H859"]],[8,11,["H5650"]],[11,14,["H3335"]],[14,16,["H859"]],[16,19,["H5650"]],[19,21,["H3478"]],[21,24,["H3808"]],[24,26,["H5382"]],[26,28,[]]]},{"k":18555,"v":[[0,4,["H4229"]],[4,8,["H5645"]],[8,10,["H6588"]],[10,14,["H6051"]],[14,16,["H2403"]],[16,17,["H7725"]],[17,18,["H413"]],[18,20,["H3588"]],[20,23,["H1350"]],[23,24,[]]]},{"k":18556,"v":[[0,1,["H7442"]],[1,4,["H8064"]],[4,5,["H3588"]],[5,7,["H3068"]],[7,9,["H6213"]],[9,11,["H7321"]],[11,14,["H8482"]],[14,17,["H776"]],[17,19,["H6476"]],[19,21,["H7440"]],[21,23,["H2022"]],[23,25,["H3293"]],[25,27,["H3605"]],[27,28,["H6086"]],[28,30,["H3588"]],[30,32,["H3068"]],[32,34,["H1350"]],[34,35,["H3290"]],[35,38,["H6286"]],[38,40,["H3478"]]]},{"k":18557,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H1350"]],[6,10,["H3335"]],[10,14,["H4480","H990"]],[14,15,["H595"]],[15,18,["H3068"]],[18,20,["H6213"]],[20,21,["H3605"]],[21,25,["H5186"]],[25,27,["H8064"]],[27,28,["H905"]],[28,31,["H7554"]],[31,33,["H776"]],[33,34,["H854"]],[34,35,[]]]},{"k":18558,"v":[[0,2,["H6565"]],[2,4,["H226"]],[4,7,["H907"]],[7,11,["H1984","H7080"]],[11,13,["H7725"]],[13,14,["H2450"]],[14,16,["H268"]],[16,21,["H5528","H1847"]]]},{"k":18559,"v":[[0,2,["H6965"]],[2,4,["H1697"]],[4,7,["H5650"]],[7,9,["H7999"]],[9,11,["H6098"]],[11,14,["H4397"]],[14,16,["H559"]],[16,18,["H3389"]],[18,22,["H3427"]],[22,26,["H5892"]],[26,28,["H3063"]],[28,32,["H1129"]],[32,37,["H6965"]],[37,40,["H2723"]],[40,41,[]]]},{"k":18560,"v":[[0,2,["H559"]],[2,5,["H6683"]],[5,7,["H2717"]],[7,12,["H3001"]],[12,14,["H5104"]]]},{"k":18561,"v":[[0,2,["H559"]],[2,4,["H3566"]],[4,8,["H7462"]],[8,11,["H7999"]],[11,12,["H3605"]],[12,14,["H2656"]],[14,16,["H559"]],[16,18,["H3389"]],[18,22,["H1129"]],[22,26,["H1964"]],[26,31,["H3245"]]]},{"k":18562,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,7,["H4899"]],[7,9,["H3566"]],[9,10,["H834"]],[10,12,["H3225"]],[12,15,["H2388"]],[15,17,["H7286"]],[17,18,["H1471"]],[18,19,["H6440"]],[19,24,["H6605"]],[24,26,["H4975"]],[26,28,["H4428"]],[28,30,["H6605"]],[30,31,["H6440"]],[31,36,["H1817"]],[36,39,["H8179"]],[39,41,["H3808"]],[41,43,["H5462"]]]},{"k":18563,"v":[[0,1,["H589"]],[1,3,["H1980"]],[3,4,["H6440"]],[4,11,["H3474","H1921"]],[11,16,["H7665"]],[16,18,["H1817"]],[18,20,["H5154"]],[20,24,["H1438"]],[24,26,["H1280"]],[26,28,["H1270"]]]},{"k":18564,"v":[[0,4,["H5414"]],[4,7,["H214"]],[7,9,["H2822"]],[9,12,["H4301"]],[12,15,["H4565"]],[15,16,["H4616"]],[16,19,["H3045"]],[19,20,["H3588"]],[20,21,["H589"]],[21,23,["H3068"]],[23,25,["H7121"]],[25,29,["H8034"]],[29,32,["H430"]],[32,34,["H3478"]]]},{"k":18565,"v":[[0,2,["H3290"]],[2,5,["H4616","H5650"]],[5,7,["H3478"]],[7,9,["H972"]],[9,13,["H7121"]],[13,17,["H8034"]],[17,20,["H3655"]],[20,25,["H3808"]],[25,26,["H3045"]],[26,27,[]]]},{"k":18566,"v":[[0,1,["H589"]],[1,4,["H3068"]],[4,8,["H369"]],[8,9,["H5750"]],[9,12,["H369"]],[12,13,["H430"]],[13,14,["H2108"]],[14,17,["H247"]],[17,22,["H3808"]],[22,23,["H3045"]],[23,24,[]]]},{"k":18567,"v":[[0,1,["H4616"]],[1,4,["H3045"]],[4,7,["H4480","H4217"]],[7,10,["H8121"]],[10,14,["H4480","H4628"]],[14,15,["H3588"]],[15,18,["H657"]],[18,19,["H1107"]],[19,21,["H589"]],[21,24,["H3068"]],[24,28,["H369"]],[28,29,["H5750"]]]},{"k":18568,"v":[[0,2,["H3335"]],[2,4,["H216"]],[4,6,["H1254"]],[6,7,["H2822"]],[7,9,["H6213"]],[9,10,["H7965"]],[10,12,["H1254"]],[12,13,["H7451"]],[13,14,["H589"]],[14,16,["H3068"]],[16,17,["H6213"]],[17,18,["H3605"]],[18,19,["H428"]],[19,20,[]]]},{"k":18569,"v":[[0,2,["H7491"]],[2,4,["H8064"]],[4,6,["H4480","H4605"]],[6,10,["H7834"]],[10,12,["H5140"]],[12,13,["H6664"]],[13,16,["H776"]],[16,17,["H6605"]],[17,22,["H6509"]],[22,23,["H3468"]],[23,26,["H6666"]],[26,28,["H6779"]],[28,29,["H3162"]],[29,30,["H589"]],[30,32,["H3068"]],[32,34,["H1254"]],[34,35,[]]]},{"k":18570,"v":[[0,1,["H1945"]],[1,5,["H7378"]],[5,6,["H854"]],[6,8,["H3335"]],[8,11,["H2789"]],[11,13,["H854"]],[13,15,["H2789"]],[15,18,["H127"]],[18,21,["H2563"]],[21,22,["H559"]],[22,26,["H3335"]],[26,28,["H4100"]],[28,29,["H6213"]],[29,33,["H6467"]],[33,36,["H369"]],[36,37,["H3027"]]]},{"k":18571,"v":[[0,1,["H1945"]],[1,5,["H559"]],[5,8,["H1"]],[8,9,["H4100"]],[9,10,["H3205"]],[10,15,["H802"]],[15,16,["H4100"]],[16,20,["H2342"]]]},{"k":18572,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,7,["H6918"]],[7,9,["H3478"]],[9,12,["H3335"]],[12,13,["H7592"]],[13,18,["H857"]],[18,19,["H5921"]],[19,21,["H1121"]],[21,23,["H5921"]],[23,25,["H6467"]],[25,28,["H3027"]],[28,29,["H6680"]],[29,31,[]]]},{"k":18573,"v":[[0,1,["H595"]],[1,3,["H6213"]],[3,5,["H776"]],[5,7,["H1254"]],[7,8,["H120"]],[8,9,["H5921"]],[9,11,["H589"]],[11,14,["H3027"]],[14,17,["H5186"]],[17,19,["H8064"]],[19,21,["H3605"]],[21,23,["H6635"]],[23,26,["H6680"]]]},{"k":18574,"v":[[0,1,["H595"]],[1,5,["H5782"]],[5,7,["H6664"]],[7,11,["H3474"]],[11,12,["H3605"]],[12,14,["H1870"]],[14,15,["H1931"]],[15,17,["H1129"]],[17,19,["H5892"]],[19,24,["H7971"]],[24,26,["H1546"]],[26,27,["H3808"]],[27,29,["H4242"]],[29,30,["H3808"]],[30,31,["H7810"]],[31,32,["H559"]],[32,34,["H3068"]],[34,36,["H6635"]]]},{"k":18575,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H3018"]],[6,8,["H4714"]],[8,10,["H5505"]],[10,12,["H3568"]],[12,16,["H5436"]],[16,17,["H376"]],[17,19,["H4060"]],[19,22,["H5674"]],[22,23,["H5921"]],[23,28,["H1961"]],[28,32,["H1980"]],[32,33,["H310"]],[33,36,["H2131"]],[36,40,["H5674"]],[40,45,["H7812"]],[45,46,["H413"]],[46,51,["H6419"]],[51,52,["H413"]],[52,55,["H389"]],[55,56,["H410"]],[56,63,["H369"]],[63,64,["H5750"]],[64,67,["H657"]],[67,68,["H430"]]]},{"k":18576,"v":[[0,1,["H403"]],[1,2,["H859"]],[2,5,["H410"]],[5,8,["H5641"]],[8,10,["H430"]],[10,12,["H3478"]],[12,14,["H3467"]]]},{"k":18577,"v":[[0,4,["H954"]],[4,6,["H1571"]],[6,7,["H3637"]],[7,8,["H3605"]],[8,13,["H1980"]],[13,15,["H3639"]],[15,16,["H3162"]],[16,19,["H2796"]],[19,21,["H6736"]]]},{"k":18578,"v":[[0,2,["H3478"]],[2,5,["H3467"]],[5,8,["H3068"]],[8,11,["H5769"]],[11,12,["H8668"]],[12,15,["H3808"]],[15,17,["H954"]],[17,18,["H3808"]],[18,19,["H3637"]],[19,22,["H5704","H5769","H5703"]]]},{"k":18579,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H1254"]],[7,9,["H8064"]],[9,10,["H430"]],[10,11,["H1931"]],[11,13,["H3335"]],[13,15,["H776"]],[15,17,["H6213"]],[17,19,["H1931"]],[19,21,["H3559"]],[21,24,["H1254"]],[24,26,["H3808"]],[26,28,["H8414"]],[28,30,["H3335"]],[30,34,["H3427"]],[34,35,["H589"]],[35,38,["H3068"]],[38,42,["H369"]],[42,43,["H5750"]]]},{"k":18580,"v":[[0,3,["H3808"]],[3,4,["H1696"]],[4,6,["H5643"]],[6,9,["H2822"]],[9,10,["H4725"]],[10,13,["H776"]],[13,15,["H559"]],[15,16,["H3808"]],[16,19,["H2233"]],[19,21,["H3290"]],[21,22,["H1245"]],[22,26,["H8414"]],[26,27,["H589"]],[27,29,["H3068"]],[29,30,["H1696"]],[30,31,["H6664"]],[31,33,["H5046"]],[33,37,["H4339"]]]},{"k":18581,"v":[[0,2,["H6908"]],[2,4,["H935"]],[4,6,["H5066"]],[6,7,["H3162"]],[7,11,["H6412"]],[11,14,["H1471"]],[14,18,["H3045","H3808"]],[18,21,["H5375","(H853)"]],[21,23,["H6086"]],[23,27,["H6459"]],[27,29,["H6419"]],[29,30,["H413"]],[30,32,["H410"]],[32,34,["H3808"]],[34,35,["H3467"]]]},{"k":18582,"v":[[0,1,["H5046"]],[1,6,["H5066"]],[6,7,["H637"]],[7,11,["H3289"]],[11,12,["H3162"]],[12,13,["H4310"]],[13,15,["H8085"]],[15,16,["H2063"]],[16,19,["H4480","H6924"]],[19,22,["H5046"]],[22,26,["H4480","H227"]],[26,28,["H3808"]],[28,29,["H589"]],[29,31,["H3068"]],[31,35,["H369"]],[35,36,["H430"]],[36,37,["H5750"]],[37,38,["H4480","H1107"]],[38,41,["H6662"]],[41,42,["H410"]],[42,45,["H3467"]],[45,48,["H369"]],[48,49,["H2108"]],[49,50,[]]]},{"k":18583,"v":[[0,1,["H6437"]],[1,2,["H413"]],[2,7,["H3467"]],[7,8,["H3605"]],[8,10,["H657"]],[10,13,["H776"]],[13,14,["H3588"]],[14,15,["H589"]],[15,17,["H410"]],[17,21,["H369"]],[21,22,["H5750"]]]},{"k":18584,"v":[[0,3,["H7650"]],[3,7,["H1697"]],[7,10,["H3318"]],[10,13,["H4480","H6310"]],[13,15,["H6666"]],[15,18,["H3808"]],[18,19,["H7725"]],[19,20,["H3588"]],[20,23,["H3605"]],[23,24,["H1290"]],[24,26,["H3766"]],[26,27,["H3605"]],[27,28,["H3956"]],[28,30,["H7650"]]]},{"k":18585,"v":[[0,1,["H389"]],[1,4,["H559"]],[4,7,["H3068"]],[7,10,["H6666"]],[10,12,["H5797"]],[12,14,["H5704"]],[14,18,["H935"]],[18,20,["H3605"]],[20,23,["H2734"]],[23,28,["H954"]]]},{"k":18586,"v":[[0,3,["H3068"]],[3,5,["H3605"]],[5,7,["H2233"]],[7,9,["H3478"]],[9,11,["H6663"]],[11,14,["H1984"]]]},{"k":18587,"v":[[0,1,["H1078"]],[1,3,["H3766"]],[3,4,["H5015"]],[4,5,["H7164"]],[5,7,["H6091"]],[7,8,["H1961"]],[8,11,["H2416"]],[11,15,["H929"]],[15,17,["H5385"]],[17,20,["H6006"]],[20,24,["H4853"]],[24,27,["H5889"]],[27,28,[]]]},{"k":18588,"v":[[0,2,["H7164"]],[2,5,["H3766"]],[5,6,["H3162"]],[6,8,["H3201"]],[8,9,["H3808"]],[9,10,["H4422"]],[10,12,["H4853"]],[12,14,["H5315"]],[14,16,["H1980"]],[16,18,["H7628"]]]},{"k":18589,"v":[[0,1,["H8085"]],[1,2,["H413"]],[2,5,["H1004"]],[5,7,["H3290"]],[7,9,["H3605"]],[9,11,["H7611"]],[11,14,["H1004"]],[14,16,["H3478"]],[16,19,["H6006"]],[19,22,["H4480"]],[22,24,["H990"]],[24,27,["H5375"]],[27,28,["H4480"]],[28,30,["H7356"]]]},{"k":18590,"v":[[0,3,["H5704"]],[3,6,["H2209"]],[6,7,["H589"]],[7,9,["H1931"]],[9,12,["H5704"]],[12,14,["H7872"]],[14,16,["H589"]],[16,17,["H5445"]],[17,19,["H589"]],[19,21,["H6213"]],[21,23,["H589"]],[23,25,["H5375"]],[25,27,["H589"]],[27,29,["H5445"]],[29,32,["H4422"]],[32,33,[]]]},{"k":18591,"v":[[0,2,["H4310"]],[2,5,["H1819"]],[5,10,["H7737"]],[10,12,["H4911"]],[12,18,["H1819"]]]},{"k":18592,"v":[[0,2,["H2107"]],[2,3,["H2091"]],[3,7,["H4480","H3599"]],[7,9,["H8254"]],[9,10,["H3701"]],[10,13,["H7070"]],[13,15,["H7936"]],[15,17,["H6884"]],[17,20,["H6213"]],[20,23,["H410"]],[23,26,["H5456"]],[26,27,["H637"]],[27,29,["H7812"]]]},{"k":18593,"v":[[0,2,["H5375"]],[2,4,["H5921"]],[4,6,["H3802"]],[6,8,["H5445"]],[8,11,["H5117"]],[11,15,["H8478"]],[15,18,["H5975"]],[18,21,["H4480","H4725"]],[21,24,["H3808"]],[24,25,["H4185"]],[25,26,["H637"]],[26,29,["H6817"]],[29,30,["H413"]],[30,35,["H3808"]],[35,36,["H6030"]],[36,37,["H3808"]],[37,38,["H3467"]],[38,43,["H4480","H6869"]]]},{"k":18594,"v":[[0,1,["H2142"]],[1,2,["H2063"]],[2,6,["H377"]],[6,9,["H7725"]],[9,10,["H5921"]],[10,11,["H3820"]],[11,14,["H6586"]]]},{"k":18595,"v":[[0,1,["H2142"]],[1,4,["H7223"]],[4,6,["H4480","H5769"]],[6,7,["H3588"]],[7,8,["H595"]],[8,10,["H410"]],[10,14,["H369"]],[14,15,["H5750"]],[15,18,["H430"]],[18,22,["H657"]],[22,24,["H3644"]]]},{"k":18596,"v":[[0,1,["H5046"]],[1,3,["H319"]],[3,6,["H4480","H7225"]],[6,10,["H4480","H6924"]],[10,13,["H834"]],[13,15,["H3808"]],[15,17,["H6213"]],[17,18,["H559"]],[18,20,["H6098"]],[20,22,["H6965"]],[22,26,["H6213"]],[26,27,["H3605"]],[27,29,["H2656"]]]},{"k":18597,"v":[[0,1,["H7121"]],[1,4,["H5861"]],[4,7,["H4480","H4217"]],[7,9,["H376"]],[9,13,["H6098"]],[13,16,["H4801"]],[16,17,["H4480","H776"]],[17,18,["H637"]],[18,21,["H1696"]],[21,25,["H637"]],[25,29,["H935"]],[29,32,["H3335"]],[32,36,["H637"]],[36,37,["H6213"]],[37,38,[]]]},{"k":18598,"v":[[0,1,["H8085"]],[1,2,["H413"]],[2,5,["H47","H3820"]],[5,8,["H7350"]],[8,10,["H4480","H6666"]]]},{"k":18599,"v":[[0,3,["H7126"]],[3,5,["H6666"]],[5,8,["H3808"]],[8,11,["H7368"]],[11,14,["H8668"]],[14,16,["H3808"]],[16,17,["H309"]],[17,21,["H5414"]],[21,22,["H8668"]],[22,24,["H6726"]],[24,26,["H3478"]],[26,28,["H8597"]]]},{"k":18600,"v":[[0,2,["H3381"]],[2,4,["H3427"]],[4,5,["H5921"]],[5,7,["H6083"]],[7,9,["H1330"]],[9,10,["H1323"]],[10,12,["H894"]],[12,13,["H3427"]],[13,16,["H776"]],[16,19,["H369"]],[19,20,["H3678"]],[20,22,["H1323"]],[22,25,["H3778"]],[25,26,["H3588"]],[26,29,["H3808"]],[29,30,["H3254"]],[30,32,["H7121"]],[32,33,["H7390"]],[33,35,["H6028"]]]},{"k":18601,"v":[[0,1,["H3947"]],[1,3,["H7347"]],[3,5,["H2912"]],[5,6,["H7058"]],[6,7,["H1540"]],[7,9,["H6777"]],[9,11,["H2834"]],[11,13,["H7640"]],[13,14,["H1540"]],[14,16,["H7785"]],[16,18,["H5674"]],[18,20,["H5104"]]]},{"k":18602,"v":[[0,2,["H6172"]],[2,5,["H1540"]],[5,6,["H1571"]],[6,8,["H2781"]],[8,11,["H7200"]],[11,14,["H3947"]],[14,15,["H5359"]],[15,19,["H3808"]],[19,20,["H6293"]],[20,24,["H120"]]]},{"k":18603,"v":[[0,4,["H1350"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,11,["H8034"]],[11,14,["H6918"]],[14,16,["H3478"]]]},{"k":18604,"v":[[0,1,["H3427"]],[1,3,["H1748"]],[3,5,["H935"]],[5,8,["H2822"]],[8,10,["H1323"]],[10,13,["H3778"]],[13,14,["H3588"]],[14,17,["H3808"]],[17,18,["H3254"]],[18,20,["H7121"]],[20,22,["H1404"]],[22,24,["H4467"]]]},{"k":18605,"v":[[0,3,["H7107"]],[3,4,["H5921"]],[4,6,["H5971"]],[6,9,["H2490"]],[9,11,["H5159"]],[11,13,["H5414"]],[13,17,["H3027"]],[17,20,["H7760"]],[20,22,["H3808"]],[22,23,["H7356"]],[23,24,["H5921"]],[24,26,["H2205"]],[26,29,["H3966"]],[29,31,["H3513"]],[31,33,["H5923"]]]},{"k":18606,"v":[[0,3,["H559"]],[3,6,["H1961"]],[6,8,["H1404"]],[8,10,["H5769"]],[10,12,["H5704"]],[12,15,["H3808"]],[15,16,["H7760"]],[16,17,["H428"]],[17,19,["H5921"]],[19,21,["H3820"]],[21,22,["H3808"]],[22,24,["H2142"]],[24,27,["H319"]],[27,29,[]]]},{"k":18607,"v":[[0,2,["H8085"]],[2,3,["H6258"]],[3,4,["H2063"]],[4,10,["H5719"]],[10,12,["H3427"]],[12,13,["H983"]],[13,15,["H559"]],[15,18,["H3824"]],[18,19,["H589"]],[19,24,["H657","H5750"]],[24,28,["H3808"]],[28,29,["H3427"]],[29,32,["H490"]],[32,33,["H3808"]],[33,36,["H3045"]],[36,40,["H7908"]]]},{"k":18608,"v":[[0,2,["H428"]],[2,3,["H8147"]],[3,6,["H935"]],[6,11,["H7281"]],[11,13,["H259"]],[13,14,["H3117"]],[14,18,["H7908"]],[18,20,["H489"]],[20,23,["H935"]],[23,24,["H5921"]],[24,28,["H8537"]],[28,31,["H7230"]],[31,34,["H3785"]],[34,38,["H3966"]],[38,39,["H6109"]],[39,42,["H2267"]]]},{"k":18609,"v":[[0,4,["H982"]],[4,7,["H7451"]],[7,10,["H559"]],[10,11,["H369"]],[11,12,["H7200"]],[12,15,["H2451"]],[15,18,["H1847"]],[18,19,["H1931"]],[19,21,["H7725"]],[21,26,["H559"]],[26,29,["H3820"]],[29,30,["H589"]],[30,35,["H657","H5750"]],[35,36,[]]]},{"k":18610,"v":[[0,3,["H7451"]],[3,4,["H935"]],[4,5,["H5921"]],[5,9,["H3808"]],[9,10,["H3045"]],[10,14,["H7837"]],[14,16,["H1943"]],[16,18,["H5307"]],[18,19,["H5921"]],[19,23,["H3808"]],[23,25,["H3201"]],[25,29,["H3722"]],[29,31,["H7722"]],[31,33,["H935"]],[33,34,["H5921"]],[34,36,["H6597"]],[36,40,["H3808"]],[40,41,["H3045"]]]},{"k":18611,"v":[[0,1,["H5975"]],[1,2,["H4994"]],[2,5,["H2267"]],[5,9,["H7230"]],[9,12,["H3785"]],[12,13,["H834"]],[13,16,["H3021"]],[16,19,["H4480","H5271"]],[19,22,["H194"]],[22,26,["H3201"]],[26,28,["H3276"]],[28,31,["H194"]],[31,34,["H6206"]]]},{"k":18612,"v":[[0,3,["H3811"]],[3,6,["H7230"]],[6,9,["H6098"]],[9,11,["H4994"]],[11,13,["H1895","H8064"]],[13,15,["H2372","H3556"]],[15,17,["H2320"]],[17,18,["H3045"]],[18,20,["H5975"]],[20,22,["H3467"]],[22,27,["H4480","H834"]],[27,29,["H935"]],[29,30,["H5921"]],[30,31,[]]]},{"k":18613,"v":[[0,1,["H2009"]],[1,4,["H1961"]],[4,6,["H7179"]],[6,8,["H784"]],[8,10,["H8313"]],[10,14,["H3808"]],[14,15,["H5337","(H853)"]],[15,16,["H5315"]],[16,19,["H4480","H3027"]],[19,22,["H3852"]],[22,25,["H369"]],[25,28,["H1513"]],[28,30,["H2552"]],[30,33,["H217"]],[33,35,["H3427"]],[35,36,["H5048"]],[36,37,[]]]},{"k":18614,"v":[[0,1,["H3651"]],[1,4,["H1961"]],[4,8,["H834"]],[8,11,["H3021"]],[11,14,["H5503"]],[14,17,["H4480","H5271"]],[17,20,["H8582"]],[20,22,["H376"]],[22,25,["H5676"]],[25,26,["H369"]],[26,28,["H3467"]],[28,29,[]]]},{"k":18615,"v":[[0,1,["H8085"]],[1,3,["H2063"]],[3,5,["H1004"]],[5,7,["H3290"]],[7,10,["H7121"]],[10,13,["H8034"]],[13,15,["H3478"]],[15,19,["H3318"]],[19,23,["H4480","H4325"]],[23,25,["H3063"]],[25,27,["H7650"]],[27,30,["H8034"]],[30,33,["H3068"]],[33,36,["H2142"]],[36,39,["H430"]],[39,41,["H3478"]],[41,43,["H3808"]],[43,45,["H571"]],[45,46,["H3808"]],[46,48,["H6666"]]]},{"k":18616,"v":[[0,1,["H3588"]],[1,4,["H7121"]],[4,7,["H6944"]],[7,8,["H4480","H5892"]],[8,11,["H5564"]],[11,12,["H5921"]],[12,14,["H430"]],[14,16,["H3478"]],[16,18,["H3068"]],[18,20,["H6635"]],[20,23,["H8034"]]]},{"k":18617,"v":[[0,3,["H5046"]],[3,6,["H7223"]],[6,9,["H4480","H227"]],[9,13,["H3318"]],[13,17,["H4480","H6310"]],[17,20,["H8085"]],[20,23,["H6213"]],[23,25,["H6597"]],[25,30,["H935"]]]},{"k":18618,"v":[[0,3,["H4480","H3045"]],[3,4,["H3588"]],[4,5,["H859"]],[5,7,["H7186"]],[7,10,["H6203"]],[10,13,["H1270"]],[13,14,["H1517"]],[14,17,["H4696"]],[17,18,["H5154"]]]},{"k":18619,"v":[[0,6,["H4480","H227"]],[6,7,["H5046"]],[7,11,["H2962"]],[11,15,["H935"]],[15,17,["H8085"]],[17,20,["H6435"]],[20,23,["H559"]],[23,25,["H6090"]],[25,27,["H6213"]],[27,32,["H6459"]],[32,36,["H5262"]],[36,38,["H6680"]],[38,39,[]]]},{"k":18620,"v":[[0,3,["H8085"]],[3,4,["H2372"]],[4,5,["H3605"]],[5,9,["H3808"]],[9,10,["H859"]],[10,11,["H5046"]],[11,15,["H8085"]],[15,18,["H2319"]],[18,21,["H4480","H6258"]],[21,24,["H5341"]],[24,28,["H3808"]],[28,29,["H3045"]],[29,30,[]]]},{"k":18621,"v":[[0,3,["H1254"]],[3,4,["H6258"]],[4,6,["H3808"]],[6,9,["H4480","H227"]],[9,11,["H6440"]],[11,13,["H3117"]],[13,16,["H8085"]],[16,18,["H3808"]],[18,19,["H6435"]],[19,22,["H559"]],[22,23,["H2009"]],[23,25,["H3045"]],[25,26,[]]]},{"k":18622,"v":[[0,1,["H1571"]],[1,3,["H8085"]],[3,4,["H3808"]],[4,5,["H1571"]],[5,7,["H3045"]],[7,8,["H3808"]],[8,9,["H1571"]],[9,12,["H4480","H227"]],[12,15,["H241"]],[15,17,["H3808"]],[17,18,["H6605"]],[18,19,["H3588"]],[19,21,["H3045"]],[21,27,["H898","H898"]],[27,30,["H7121"]],[30,32,["H6586"]],[32,35,["H4480","H990"]]]},{"k":18623,"v":[[0,4,["H4616","H8034"]],[4,7,["H748"]],[7,9,["H639"]],[9,13,["H8416"]],[13,16,["H2413"]],[16,24,["H3772","H1115"]]]},{"k":18624,"v":[[0,1,["H2009"]],[1,4,["H6884"]],[4,7,["H3808"]],[7,9,["H3701"]],[9,12,["H977"]],[12,16,["H3564"]],[16,18,["H6040"]]]},{"k":18625,"v":[[0,4,["H4616"]],[4,9,["H4616"]],[9,12,["H6213"]],[12,14,["H3588"]],[14,15,["H349"]],[15,20,["H2490"]],[20,24,["H3808"]],[24,25,["H5414"]],[25,27,["H3519"]],[27,29,["H312"]]]},{"k":18626,"v":[[0,1,["H8085"]],[1,2,["H413"]],[2,5,["H3290"]],[5,7,["H3478"]],[7,9,["H7121"]],[9,10,["H589"]],[10,12,["H1931"]],[12,13,["H589"]],[13,16,["H7223"]],[16,17,["H589"]],[17,18,["H637"]],[18,21,["H314"]]]},{"k":18627,"v":[[0,2,["H3027"]],[2,3,["H637"]],[3,7,["H3245"]],[7,10,["H776"]],[10,14,["H3225"]],[14,16,["H2946"]],[16,18,["H8064"]],[18,20,["H589"]],[20,21,["H7121"]],[21,22,["H413"]],[22,26,["H5975"]],[26,27,["H3162"]]]},{"k":18628,"v":[[0,1,["H3605"]],[1,4,["H6908"]],[4,6,["H8085"]],[6,7,["H4310"]],[7,11,["H5046","(H853)"]],[11,12,["H428"]],[12,15,["H3068"]],[15,17,["H157"]],[17,21,["H6213"]],[21,23,["H2656"]],[23,25,["H894"]],[25,28,["H2220"]],[28,33,["H3778"]]]},{"k":18629,"v":[[0,1,["H589"]],[1,3,["H589"]],[3,5,["H1696"]],[5,6,["H637"]],[6,9,["H7121"]],[9,13,["H935"]],[13,20,["H1870"]],[20,21,["H6743"]]]},{"k":18630,"v":[[0,3,["H7126"]],[3,4,["H413"]],[4,6,["H8085"]],[6,8,["H2063"]],[8,11,["H3808"]],[11,12,["H1696"]],[12,14,["H5643"]],[14,17,["H4480","H7218"]],[17,20,["H4480","H6256"]],[20,23,["H1961"]],[23,24,["H8033"]],[24,26,["H589"]],[26,28,["H6258"]],[28,30,["H136"]],[30,31,["H3069"]],[31,34,["H7307"]],[34,36,["H7971"]],[36,37,[]]]},{"k":18631,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H1350"]],[6,9,["H6918"]],[9,11,["H3478"]],[11,12,["H589"]],[12,15,["H3068"]],[15,17,["H430"]],[17,19,["H3925"]],[19,22,["H3276"]],[22,24,["H1869"]],[24,28,["H1870"]],[28,32,["H1980"]]]},{"k":18632,"v":[[0,2,["H3863"]],[2,5,["H7181"]],[5,8,["H4687"]],[8,12,["H7965"]],[12,13,["H1961"]],[13,16,["H5104"]],[16,19,["H6666"]],[19,22,["H1530"]],[22,25,["H3220"]]]},{"k":18633,"v":[[0,2,["H2233"]],[2,5,["H1961"]],[5,8,["H2344"]],[8,11,["H6631"]],[11,14,["H4578"]],[14,17,["H4579"]],[17,20,["H8034"]],[20,22,["H3808"]],[22,26,["H3772"]],[26,27,["H3808"]],[27,28,["H8045"]],[28,30,["H4480","H6440"]],[30,31,[]]]},{"k":18634,"v":[[0,3,["H3318"]],[3,5,["H4480","H894"]],[5,6,["H1272"]],[6,10,["H4480","H3778"]],[10,13,["H6963"]],[13,15,["H7440"]],[15,16,["H5046"]],[16,18,["H8085"]],[18,19,["H2063"]],[19,20,["H3318"]],[20,23,["H5704"]],[23,25,["H7097"]],[25,28,["H776"]],[28,29,["H559"]],[29,32,["H3068"]],[32,34,["H1350"]],[34,36,["H5650"]],[36,37,["H3290"]]]},{"k":18635,"v":[[0,3,["H6770"]],[3,4,["H3808"]],[4,7,["H1980"]],[7,11,["H2723"]],[11,15,["H4325"]],[15,17,["H5140"]],[17,21,["H4480","H6697"]],[21,25,["H1234"]],[25,27,["H6697"]],[27,31,["H4325"]],[31,33,["H2100"]]]},{"k":18636,"v":[[0,3,["H369"]],[3,4,["H7965"]],[4,5,["H559"]],[5,7,["H3068"]],[7,10,["H7563"]]]},{"k":18637,"v":[[0,1,["H8085"]],[1,3,["H339"]],[3,4,["H413"]],[4,7,["H7181"]],[7,9,["H3816"]],[9,11,["H4480","H7350"]],[11,13,["H3068"]],[13,15,["H7121"]],[15,19,["H4480","H990"]],[19,22,["H4480","H4578"]],[22,25,["H517"]],[25,29,["H2142"]],[29,32,["H8034"]]]},{"k":18638,"v":[[0,4,["H7760"]],[4,6,["H6310"]],[6,9,["H2299"]],[9,10,["H2719"]],[10,13,["H6738"]],[13,16,["H3027"]],[16,19,["H2244"]],[19,22,["H7760"]],[22,25,["H1305"]],[25,26,["H2671"]],[26,29,["H827"]],[29,32,["H5641"]],[32,33,[]]]},{"k":18639,"v":[[0,2,["H559"]],[2,5,["H859"]],[5,8,["H5650"]],[8,10,["H3478"]],[10,12,["H834"]],[12,16,["H6286"]]]},{"k":18640,"v":[[0,2,["H589"]],[2,3,["H559"]],[3,6,["H3021"]],[6,8,["H7385"]],[8,11,["H3615"]],[11,13,["H3581"]],[13,15,["H8414"]],[15,18,["H1892"]],[18,20,["H403"]],[20,22,["H4941"]],[22,24,["H854"]],[24,26,["H3068"]],[26,29,["H6468"]],[29,30,["H854"]],[30,32,["H430"]]]},{"k":18641,"v":[[0,2,["H6258"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H3335"]],[7,11,["H4480","H990"]],[11,15,["H5650"]],[15,19,["H7725","H3290"]],[19,20,["H413"]],[20,23,["H3478"]],[23,26,["H622"]],[26,31,["H3513"]],[31,34,["H5869"]],[34,37,["H3068"]],[37,40,["H430"]],[40,42,["H1961"]],[42,44,["H5797"]]]},{"k":18642,"v":[[0,3,["H559"]],[3,8,["H7043"]],[8,12,["H4480","H1961"]],[12,14,["H5650"]],[14,17,["H6965","(H853)"]],[17,19,["H7626"]],[19,21,["H3290"]],[21,24,["H7725"]],[24,26,["H5336"]],[26,28,["H3478"]],[28,32,["H5414"]],[32,36,["H216"]],[36,39,["H1471"]],[39,43,["H1961"]],[43,45,["H3444"]],[45,46,["H5704"]],[46,48,["H7097"]],[48,51,["H776"]]]},{"k":18643,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H1350"]],[6,8,["H3478"]],[8,12,["H6918"]],[12,16,["H5315"]],[16,17,["H960"]],[17,22,["H1471"]],[22,23,["H8581"]],[23,26,["H5650"]],[26,28,["H4910"]],[28,29,["H4428"]],[29,31,["H7200"]],[31,33,["H6965"]],[33,34,["H8269"]],[34,37,["H7812"]],[37,39,["H4616"]],[39,41,["H3068"]],[41,42,["H834"]],[42,44,["H539"]],[44,48,["H6918"]],[48,50,["H3478"]],[50,54,["H977"]],[54,55,[]]]},{"k":18644,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,7,["H7522"]],[7,8,["H6256"]],[8,11,["H6030"]],[11,16,["H3117"]],[16,18,["H3444"]],[18,21,["H5826"]],[21,26,["H5341"]],[26,29,["H5414"]],[29,33,["H1285"]],[33,36,["H5971"]],[36,38,["H6965"]],[38,40,["H776"]],[40,44,["H5157"]],[44,46,["H8074"]],[46,47,["H5159"]]]},{"k":18645,"v":[[0,4,["H559"]],[4,7,["H631"]],[7,9,["H3318"]],[9,12,["H834"]],[12,15,["H2822"]],[15,17,["H1540"]],[17,20,["H7462"]],[20,21,["H5921"]],[21,23,["H1870"]],[23,26,["H4830"]],[26,30,["H3605"]],[30,32,["H8205"]]]},{"k":18646,"v":[[0,3,["H3808"]],[3,4,["H7456"]],[4,5,["H3808"]],[5,6,["H6770"]],[6,7,["H3808"]],[7,10,["H8273"]],[10,12,["H8121"]],[12,13,["H5221"]],[13,15,["H3588"]],[15,19,["H7355"]],[19,23,["H5090"]],[23,26,["H5921"]],[26,28,["H4002"]],[28,30,["H4325"]],[30,33,["H5095"]],[33,34,[]]]},{"k":18647,"v":[[0,4,["H7760"]],[4,5,["H3605"]],[5,7,["H2022"]],[7,9,["H1870"]],[9,12,["H4546"]],[12,15,["H7311"]]]},{"k":18648,"v":[[0,1,["H2009"]],[1,2,["H428"]],[2,4,["H935"]],[4,6,["H4480","H7350"]],[6,8,["H2009"]],[8,9,["H428"]],[9,12,["H4480","H6828"]],[12,16,["H4480","H3220"]],[16,18,["H428"]],[18,21,["H4480","H776"]],[21,23,["H5515"]]]},{"k":18649,"v":[[0,1,["H7442"]],[1,3,["H8064"]],[3,6,["H1523"]],[6,8,["H776"]],[8,11,["H6476"]],[11,13,["H7440"]],[13,15,["H2022"]],[15,16,["H3588"]],[16,18,["H3068"]],[18,20,["H5162"]],[20,22,["H5971"]],[22,26,["H7355"]],[26,29,["H6041"]]]},{"k":18650,"v":[[0,2,["H6726"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H5800"]],[7,11,["H136"]],[11,13,["H7911"]],[13,14,[]]]},{"k":18651,"v":[[0,3,["H802"]],[3,4,["H7911"]],[4,7,["H5764"]],[7,13,["H4480","H7355"]],[13,16,["H1121"]],[16,19,["H990"]],[19,20,["H1571"]],[20,21,["H428"]],[21,23,["H7911"]],[23,26,["H595"]],[26,27,["H3808"]],[27,28,["H7911"]],[28,29,[]]]},{"k":18652,"v":[[0,1,["H2005"]],[1,4,["H2710"]],[4,6,["H5921"]],[6,11,["H3709"]],[11,13,["H2346"]],[13,15,["H8548"]],[15,16,["H5048"]],[16,17,[]]]},{"k":18653,"v":[[0,2,["H1121"]],[2,5,["H4116"]],[5,7,["H2040"]],[7,13,["H2717"]],[13,16,["H3318"]],[16,17,["H4480"]],[17,18,[]]]},{"k":18654,"v":[[0,2,["H5375"]],[2,4,["H5869"]],[4,6,["H5439"]],[6,8,["H7200"]],[8,9,["H3605"]],[9,13,["H6908"]],[13,15,["H935"]],[15,19,["H589"]],[19,20,["H2416"]],[20,21,["H5002"]],[21,23,["H3068"]],[23,26,["H3588"]],[26,27,["H3847"]],[27,31,["H3605"]],[31,35,["H5716"]],[35,37,["H7194"]],[37,43,["H3618"]],[43,44,[]]]},{"k":18655,"v":[[0,1,["H3588"]],[1,3,["H2723"]],[3,7,["H8074"]],[7,10,["H776"]],[10,13,["H2035"]],[13,15,["H3588"]],[15,16,["H6258"]],[16,19,["H3334"]],[19,24,["H4480","H3427"]],[24,30,["H1104"]],[30,34,["H7368"]]]},{"k":18656,"v":[[0,2,["H1121"]],[2,12,["H7923"]],[12,14,["H559"]],[14,15,["H5750"]],[15,18,["H241"]],[18,20,["H4725"]],[20,23,["H6862"]],[23,27,["H5066"]],[27,33,["H3427"]]]},{"k":18657,"v":[[0,4,["H559"]],[4,7,["H3824"]],[7,8,["H4310"]],[8,10,["H3205"]],[10,11,["(H853)"]],[11,12,["H428"]],[12,14,["H589"]],[14,18,["H7909"]],[18,21,["H1565"]],[21,23,["H1540"]],[23,28,["H5493"]],[28,30,["H4310"]],[30,33,["H1431"]],[33,34,["H428"]],[34,35,["H2005"]],[35,36,["H589"]],[36,38,["H7604"]],[38,39,["H905"]],[39,40,["H428"]],[40,41,["H375"]],[41,43,["H1992"]],[43,44,[]]]},{"k":18658,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H2009"]],[6,10,["H5375"]],[10,12,["H3027"]],[12,13,["H413"]],[13,15,["H1471"]],[15,18,["H7311"]],[18,20,["H5251"]],[20,21,["H413"]],[21,23,["H5971"]],[23,27,["H935"]],[27,29,["H1121"]],[29,32,["H2684"]],[32,35,["H1323"]],[35,38,["H5375"]],[38,39,["H5921"]],[39,41,["H3802"]]]},{"k":18659,"v":[[0,2,["H4428"]],[2,4,["H1961"]],[4,7,["H539"]],[7,10,["H8282"]],[10,13,["H3243"]],[13,17,["H7812"]],[17,22,["H639"]],[22,25,["H776"]],[25,28,["H3897"]],[28,30,["H6083"]],[30,33,["H7272"]],[33,37,["H3045"]],[37,38,["H3588"]],[38,39,["H589"]],[39,42,["H3068"]],[42,44,["H834"]],[44,46,["H3808"]],[46,48,["H954"]],[48,50,["H6960"]],[50,52,[]]]},{"k":18660,"v":[[0,3,["H4455"]],[3,5,["H3947"]],[5,8,["H4480","H1368"]],[8,9,["H518"]],[9,11,["H6662"]],[11,12,["H7628"]],[12,13,["H4422"]]]},{"k":18661,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H1571"]],[6,8,["H7628"]],[8,11,["H1368"]],[11,15,["H3947"]],[15,18,["H4455"]],[18,21,["H6184"]],[21,24,["H4422"]],[24,26,["H595"]],[26,29,["H7378"]],[29,33,["H3401"]],[33,36,["H595"]],[36,38,["H3467"]],[38,40,["H1121"]]]},{"k":18662,"v":[[0,4,["H398","(H853)"]],[4,7,["H3238"]],[7,9,["(H853)"]],[9,12,["H1320"]],[12,17,["H7937"]],[17,21,["H1818"]],[21,25,["H6071"]],[25,27,["H3605"]],[27,28,["H1320"]],[28,30,["H3045"]],[30,31,["H3588"]],[31,32,["H589"]],[32,34,["H3068"]],[34,37,["H3467"]],[37,40,["H1350"]],[40,43,["H46"]],[43,45,["H3290"]]]},{"k":18663,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H335"]],[5,8,["H5612"]],[8,11,["H517"]],[11,12,["H3748"]],[12,13,["H834"]],[13,17,["H7971"]],[17,18,["H176"]],[18,19,["H4310"]],[19,22,["H4480","H5383"]],[22,26,["H834"]],[26,29,["H4376"]],[29,31,["H2005"]],[31,34,["H5771"]],[34,38,["H4376"]],[38,42,["H6588"]],[42,45,["H517"]],[45,47,["H7971"]]]},{"k":18664,"v":[[0,1,["H4069"]],[1,4,["H935"]],[4,7,["H369"]],[7,8,["H376"]],[8,11,["H7121"]],[11,14,["H369"]],[14,16,["H6030"]],[16,19,["H3027"]],[19,22,["H7114","H7114"]],[22,26,["H4480","H6304"]],[26,27,["H518"]],[27,30,["H369"]],[30,31,["H3581"]],[31,33,["H5337"]],[33,34,["H2005"]],[34,37,["H1606"]],[37,40,["H2717"]],[40,42,["H3220"]],[42,44,["H7760"]],[44,46,["H5104"]],[46,48,["H4057"]],[48,50,["H1710"]],[50,51,["H887"]],[51,55,["H4480","H369"]],[55,56,["H4325"]],[56,58,["H4191"]],[58,60,["H6772"]]]},{"k":18665,"v":[[0,2,["H3847"]],[2,4,["H8064"]],[4,6,["H6940"]],[6,9,["H7760"]],[9,10,["H8242"]],[10,12,["H3682"]]]},{"k":18666,"v":[[0,2,["H136"]],[2,3,["H3069"]],[3,5,["H5414"]],[5,8,["H3956"]],[8,11,["H3928"]],[11,15,["H3045"]],[15,22,["H5790","H1697"]],[22,23,["(H853)"]],[23,27,["H3287"]],[27,29,["H5782"]],[29,30,["H1242"]],[30,32,["H1242"]],[32,34,["H5782"]],[34,36,["H241"]],[36,38,["H8085"]],[38,41,["H3928"]]]},{"k":18667,"v":[[0,2,["H136"]],[2,3,["H3069"]],[3,5,["H6605"]],[5,7,["H241"]],[7,9,["H595"]],[9,11,["H3808"]],[11,12,["H4784"]],[12,13,["H3808"]],[13,15,["H5472"]],[15,16,["H268"]]]},{"k":18668,"v":[[0,2,["H5414"]],[2,4,["H1460"]],[4,7,["H5221"]],[7,10,["H3895"]],[10,17,["H4803"]],[17,19,["H5641"]],[19,20,["H3808"]],[20,22,["H6440"]],[22,24,["H4480","H3639"]],[24,26,["H7536"]]]},{"k":18669,"v":[[0,3,["H136"]],[3,4,["H3069"]],[4,6,["H5826"]],[6,8,["H5921","H3651"]],[8,11,["H3808"]],[11,13,["H3637"]],[13,14,["H5921","H3651"]],[14,17,["H7760"]],[17,19,["H6440"]],[19,22,["H2496"]],[22,25,["H3045"]],[25,26,["H3588"]],[26,29,["H3808"]],[29,31,["H954"]]]},{"k":18670,"v":[[0,3,["H7138"]],[3,5,["H6663"]],[5,7,["H4310"]],[7,9,["H7378"]],[9,10,["H854"]],[10,14,["H5975"]],[14,15,["H3162"]],[15,16,["H4310"]],[16,19,["H1167","H4941"]],[19,23,["H5066"]],[23,24,["H413"]],[24,25,[]]]},{"k":18671,"v":[[0,1,["H2005"]],[1,3,["H136"]],[3,4,["H3069"]],[4,6,["H5826"]],[6,8,["H4310"]],[8,10,["H1931"]],[10,13,["H7561"]],[13,15,["H2005"]],[15,17,["H3605"]],[17,20,["H1086"]],[20,23,["H899"]],[23,25,["H6211"]],[25,29,["H398"]]]},{"k":18672,"v":[[0,1,["H4310"]],[1,6,["H3373"]],[6,8,["H3068"]],[8,10,["H8085"]],[10,12,["H6963"]],[12,15,["H5650"]],[15,16,["H834"]],[16,17,["H1980"]],[17,19,["H2825"]],[19,22,["H369"]],[22,23,["H5051"]],[23,26,["H982"]],[26,29,["H8034"]],[29,32,["H3068"]],[32,34,["H8172"]],[34,37,["H430"]]]},{"k":18673,"v":[[0,1,["H2005"]],[1,2,["H3605"]],[2,5,["H6919"]],[5,7,["H784"]],[7,11,["H247"]],[11,13,["H2131"]],[13,14,["H1980"]],[14,17,["H217"]],[17,20,["H784"]],[20,24,["H2131"]],[24,28,["H1197"]],[28,29,["H2063"]],[29,32,["H1961"]],[32,35,["H4480","H3027"]],[35,39,["H7901"]],[39,41,["H4620"]]]},{"k":18674,"v":[[0,1,["H8085"]],[1,2,["H413"]],[2,7,["H7291"]],[7,8,["H6664"]],[8,11,["H1245"]],[11,13,["H3068"]],[13,14,["H5027"]],[14,15,["H413"]],[15,17,["H6697"]],[17,21,["H2672"]],[21,23,["H413"]],[23,25,["H4718"]],[25,28,["H953"]],[28,32,["H5365"]]]},{"k":18675,"v":[[0,1,["H5027"]],[1,2,["H413"]],[2,3,["H85"]],[3,5,["H1"]],[5,7,["H413"]],[7,8,["H8283"]],[8,10,["H2342"]],[10,12,["H3588"]],[12,14,["H7121"]],[14,16,["H259"]],[16,18,["H1288"]],[18,21,["H7235"]],[21,22,[]]]},{"k":18676,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H5162"]],[5,6,["H6726"]],[6,9,["H5162"]],[9,10,["H3605"]],[10,13,["H2723"]],[13,17,["H7760"]],[17,19,["H4057"]],[19,21,["H5731"]],[21,24,["H6160"]],[24,27,["H1588"]],[27,30,["H3068"]],[30,31,["H8342"]],[31,33,["H8057"]],[33,36,["H4672"]],[36,38,["H8426"]],[38,41,["H6963"]],[41,43,["H2172"]]]},{"k":18677,"v":[[0,1,["H7181"]],[1,2,["H413"]],[2,5,["H5971"]],[5,8,["H238"]],[8,9,["H413"]],[9,13,["H3816"]],[13,14,["H3588"]],[14,16,["H8451"]],[16,18,["H3318"]],[18,19,["H4480","H854"]],[19,26,["H4941"]],[26,28,["H7280"]],[28,31,["H216"]],[31,34,["H5971"]]]},{"k":18678,"v":[[0,2,["H6664"]],[2,4,["H7138"]],[4,6,["H3468"]],[6,9,["H3318"]],[9,12,["H2220"]],[12,14,["H8199"]],[14,16,["H5971"]],[16,18,["H339"]],[18,20,["H6960"]],[20,21,["H413"]],[21,24,["H413"]],[24,26,["H2220"]],[26,29,["H3176"]]]},{"k":18679,"v":[[0,2,["H5375"]],[2,4,["H5869"]],[4,7,["H8064"]],[7,9,["H5027"]],[9,10,["H413"]],[10,12,["H776"]],[12,13,["H4480","H8478"]],[13,14,["H3588"]],[14,16,["H8064"]],[16,19,["H4414"]],[19,21,["H6227"]],[21,24,["H776"]],[24,27,["H1086"]],[27,30,["H899"]],[30,34,["H3427"]],[34,37,["H4191"]],[37,40,["H3644","H3651"]],[40,43,["H3444"]],[43,45,["H1961"]],[45,47,["H5769"]],[47,50,["H6666"]],[50,52,["H3808"]],[52,54,["H2865"]]]},{"k":18680,"v":[[0,1,["H8085"]],[1,2,["H413"]],[2,6,["H3045"]],[6,7,["H6664"]],[7,9,["H5971"]],[9,12,["H3820"]],[12,15,["H8451"]],[15,16,["H3372"]],[16,18,["H408"]],[18,20,["H2781"]],[20,22,["H582"]],[22,23,["H408"]],[23,26,["H2865"]],[26,29,["H4480","H1421"]]]},{"k":18681,"v":[[0,1,["H3588"]],[1,3,["H6211"]],[3,7,["H398"]],[7,10,["H899"]],[10,13,["H5580"]],[13,15,["H398"]],[15,18,["H6785"]],[18,21,["H6666"]],[21,23,["H1961"]],[23,25,["H5769"]],[25,28,["H3444"]],[28,30,["H1755"]],[30,32,["H1755"]]]},{"k":18682,"v":[[0,1,["H5782"]],[1,2,["H5782"]],[2,4,["H3847"]],[4,5,["H5797"]],[5,7,["H2220"]],[7,10,["H3068"]],[10,11,["H5782"]],[11,15,["H6924"]],[15,16,["H3117"]],[16,19,["H1755"]],[19,21,["H5769"]],[21,23,["H859"]],[23,24,["H3808"]],[24,25,["H1931"]],[25,28,["H2672"]],[28,29,["H7293"]],[29,31,["H2490"]],[31,33,["H8577"]]]},{"k":18683,"v":[[0,2,["H859"]],[2,3,["H3808"]],[3,4,["H1931"]],[4,7,["H2717"]],[7,9,["H3220"]],[9,11,["H4325"]],[11,14,["H7227"]],[14,15,["H8415"]],[15,18,["H7760"]],[18,20,["H4615"]],[20,23,["H3220"]],[23,25,["H1870"]],[25,28,["H1350"]],[28,31,["H5674"]]]},{"k":18684,"v":[[0,3,["H6299"]],[3,6,["H3068"]],[6,8,["H7725"]],[8,10,["H935"]],[10,12,["H7440"]],[12,14,["H6726"]],[14,16,["H5769"]],[16,17,["H8057"]],[17,20,["H5921"]],[20,22,["H7218"]],[22,25,["H5381"]],[25,26,["H8342"]],[26,28,["H8057"]],[28,30,["H3015"]],[30,32,["H585"]],[32,35,["H5127"]]]},{"k":18685,"v":[[0,1,["H595"]],[1,3,["H595"]],[3,5,["H1931"]],[5,7,["H5162"]],[7,9,["H4310"]],[9,11,["H859"]],[11,16,["H3372"]],[16,19,["H4480","H582"]],[19,22,["H4191"]],[22,26,["H4480","H1121"]],[26,28,["H120"]],[28,32,["H5414"]],[32,34,["H2682"]]]},{"k":18686,"v":[[0,2,["H7911"]],[2,4,["H3068"]],[4,6,["H6213"]],[6,10,["H5186"]],[10,12,["H8064"]],[12,16,["H3245"]],[16,19,["H776"]],[19,22,["H6342"]],[22,23,["H8548"]],[23,24,["H3605"]],[24,25,["H3117"]],[25,26,["H4480","H6440"]],[26,29,["H2534"]],[29,32,["H6693"]],[32,33,["H834"]],[33,37,["H3559"]],[37,39,["H7843"]],[39,41,["H346"]],[41,44,["H2534"]],[44,47,["H6693"]]]},{"k":18687,"v":[[0,3,["H6808"]],[3,4,["H4116"]],[4,9,["H6605"]],[9,14,["H3808"]],[14,15,["H4191"]],[15,18,["H7845"]],[18,19,["H3808"]],[19,22,["H3899"]],[22,24,["H2637"]]]},{"k":18688,"v":[[0,2,["H595"]],[2,5,["H3068"]],[5,7,["H430"]],[7,9,["H7280"]],[9,11,["H3220"]],[11,13,["H1530"]],[13,14,["H1993"]],[14,16,["H3068"]],[16,18,["H6635"]],[18,21,["H8034"]]]},{"k":18689,"v":[[0,4,["H7760"]],[4,6,["H1697"]],[6,9,["H6310"]],[9,13,["H3680"]],[13,17,["H6738"]],[17,20,["H3027"]],[20,24,["H5193"]],[24,26,["H8064"]],[26,30,["H3245"]],[30,33,["H776"]],[33,35,["H559"]],[35,37,["H6726"]],[37,38,["H859"]],[38,41,["H5971"]]]},{"k":18690,"v":[[0,1,["H5782"]],[1,2,["H5782"]],[2,4,["H6965"]],[4,6,["H3389"]],[6,7,["H834"]],[7,9,["H8354"]],[9,12,["H4480","H3027"]],[12,15,["H3068","(H853)"]],[15,17,["H3563"]],[17,20,["H2534"]],[20,23,["H8354","(H853)"]],[23,25,["H6907"]],[25,28,["H3563"]],[28,30,["H8653"]],[30,34,["H4680"]]]},{"k":18691,"v":[[0,3,["H369"]],[3,5,["H5095"]],[5,8,["H4480","H3605"]],[8,10,["H1121"]],[10,15,["H3205"]],[15,16,["H369"]],[16,21,["H2388"]],[21,25,["H3027"]],[25,27,["H4480","H3605"]],[27,29,["H1121"]],[29,34,["H1431"]]]},{"k":18692,"v":[[0,1,["H2007"]],[1,2,["H8147"]],[2,5,["H7122"]],[5,8,["H4310"]],[8,11,["H5110"]],[11,14,["H7701"]],[14,16,["H7667"]],[16,19,["H7458"]],[19,22,["H2719"]],[22,24,["H4310"]],[24,27,["H5162"]],[27,28,[]]]},{"k":18693,"v":[[0,2,["H1121"]],[2,4,["H5968"]],[4,6,["H7901"]],[6,9,["H7218"]],[9,11,["H3605"]],[11,13,["H2351"]],[13,17,["H8377"]],[17,20,["H4364"]],[20,23,["H4392"]],[23,26,["H2534"]],[26,29,["H3068"]],[29,31,["H1606"]],[31,34,["H430"]]]},{"k":18694,"v":[[0,1,["H3651"]],[1,2,["H8085"]],[2,3,["H4994"]],[3,4,["H2063"]],[4,6,["H6041"]],[6,8,["H7937"]],[8,10,["H3808"]],[10,12,["H4480","H3196"]]]},{"k":18695,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H113"]],[4,6,["H3068"]],[6,9,["H430"]],[9,13,["H7378"]],[13,16,["H5971"]],[16,17,["H2009"]],[17,20,["H3947"]],[20,24,["H4480","H3027","(H853)"]],[24,26,["H3563"]],[26,28,["H8653"]],[28,29,["(H853)"]],[29,31,["H6907"]],[31,34,["H3563"]],[34,37,["H2534"]],[37,40,["H3808"]],[40,41,["H3254"]],[41,42,["H8354"]],[42,44,["H5750"]]]},{"k":18696,"v":[[0,4,["H7760"]],[4,8,["H3027"]],[8,12,["H3013"]],[12,14,["H834"]],[14,16,["H559"]],[16,19,["H5315"]],[19,21,["H7812"]],[21,26,["H5674"]],[26,30,["H7760"]],[30,32,["H1460"]],[32,35,["H776"]],[35,39,["H2351"]],[39,44,["H5674"]]]},{"k":18697,"v":[[0,1,["H5782"]],[1,2,["H5782"]],[2,4,["H3847"]],[4,6,["H5797"]],[6,8,["H6726"]],[8,10,["H3847"]],[10,12,["H8597"]],[12,13,["H899"]],[13,15,["H3389"]],[15,17,["H6944"]],[17,18,["H5892"]],[18,19,["H3588"]],[19,20,["H3254"]],[20,23,["H3808"]],[23,24,["H5750"]],[24,25,["H935"]],[25,29,["H6189"]],[29,32,["H2931"]]]},{"k":18698,"v":[[0,2,["H5287"]],[2,5,["H4480","H6083"]],[5,6,["H6965"]],[6,9,["H3427"]],[9,11,["H3389"]],[11,13,["H6605"]],[13,16,["H4147"]],[16,19,["H6677"]],[19,21,["H7628"]],[21,22,["H1323"]],[22,24,["H6726"]]]},{"k":18699,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,9,["H4376"]],[9,11,["H2600"]],[11,16,["H1350"]],[16,17,["H3808"]],[17,18,["H3701"]]]},{"k":18700,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,8,["H5971"]],[8,10,["H3381"]],[10,11,["H7223"]],[11,13,["H4714"]],[13,15,["H1481"]],[15,16,["H8033"]],[16,19,["H804"]],[19,20,["H6231"]],[20,23,["H657"]]]},{"k":18701,"v":[[0,1,["H6258"]],[1,3,["H4100"]],[3,6,["H6311"]],[6,7,["H5002"]],[7,9,["H3068"]],[9,10,["H3588"]],[10,12,["H5971"]],[12,15,["H3947"]],[15,17,["H2600"]],[17,21,["H4910"]],[21,26,["H3213"]],[26,27,["H5002"]],[27,29,["H3068"]],[29,32,["H8034"]],[32,33,["H8548"]],[33,34,["H3605"]],[34,35,["H3117"]],[35,37,["H5006"]]]},{"k":18702,"v":[[0,1,["H3651"]],[1,3,["H5971"]],[3,5,["H3045"]],[5,7,["H8034"]],[7,8,["H3651"]],[8,13,["H1931"]],[13,14,["H3117"]],[14,15,["H3588"]],[15,16,["H589"]],[16,18,["H1931"]],[18,21,["H1696"]],[21,22,["H2009"]],[22,25,[]]]},{"k":18703,"v":[[0,1,["H4100"]],[1,2,["H4998"]],[2,3,["H5921"]],[3,5,["H2022"]],[5,8,["H7272"]],[8,14,["H1319"]],[14,16,["H8085"]],[16,17,["H7965"]],[17,21,["H1319"]],[21,23,["H2896"]],[23,25,["H8085"]],[25,26,["H3444"]],[26,28,["H559"]],[28,30,["H6726"]],[30,32,["H430"]],[32,33,["H4427"]]]},{"k":18704,"v":[[0,2,["H6822"]],[2,5,["H5375"]],[5,7,["H6963"]],[7,10,["H6963"]],[10,11,["H3162"]],[11,14,["H7442"]],[14,15,["H3588"]],[15,18,["H7200"]],[18,19,["H5869"]],[19,21,["H5869"]],[21,24,["H3068"]],[24,27,["H7725"]],[27,28,["H6726"]]]},{"k":18705,"v":[[0,4,["H6476"]],[4,5,["H7442"]],[5,6,["H3162"]],[6,9,["H2723"]],[9,11,["H3389"]],[11,12,["H3588"]],[12,14,["H3068"]],[14,16,["H5162"]],[16,18,["H5971"]],[18,21,["H1350"]],[21,22,["H3389"]]]},{"k":18706,"v":[[0,2,["H3068"]],[2,5,["H2834","(H853)"]],[5,7,["H6944"]],[7,8,["H2220"]],[8,11,["H5869"]],[11,13,["H3605"]],[13,15,["H1471"]],[15,17,["H3605"]],[17,19,["H657"]],[19,22,["H776"]],[22,24,["H7200","(H853)"]],[24,26,["H3444"]],[26,29,["H430"]]]},{"k":18707,"v":[[0,1,["H5493"]],[1,3,["H5493"]],[3,7,["H3318"]],[7,9,["H4480","H8033"]],[9,10,["H5060"]],[10,11,["H408"]],[11,12,["H2931"]],[12,16,["H3318"]],[16,19,["H4480","H8432"]],[19,24,["H1305"]],[24,26,["H5375"]],[26,28,["H3627"]],[28,31,["H3068"]]]},{"k":18708,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,6,["H3318"]],[6,8,["H2649"]],[8,9,["H3808"]],[9,10,["H1980"]],[10,12,["H4499"]],[12,13,["H3588"]],[13,15,["H3068"]],[15,17,["H1980"]],[17,18,["H6440"]],[18,22,["H430"]],[22,24,["H3478"]],[24,28,["H622"]]]},{"k":18709,"v":[[0,1,["H2009"]],[1,3,["H5650"]],[3,6,["H7919"]],[6,10,["H7311"]],[10,12,["H5375"]],[12,16,["H1361","H3966"]]]},{"k":18710,"v":[[0,1,["H834"]],[1,2,["H7227"]],[2,4,["H8074"]],[4,5,["H5921"]],[5,8,["H4758"]],[8,10,["H3651"]],[10,11,["H4893"]],[11,15,["H4480","H376"]],[15,18,["H8389"]],[18,22,["H4480","H1121"]],[22,24,["H120"]]]},{"k":18711,"v":[[0,1,["H3651"]],[1,4,["H5137"]],[4,5,["H7227"]],[5,6,["H1471"]],[6,8,["H4428"]],[8,10,["H7092"]],[10,12,["H6310"]],[12,13,["H5921"]],[13,15,["H3588"]],[15,17,["H834"]],[17,19,["H3808"]],[19,21,["H5608"]],[21,25,["H7200"]],[25,28,["H834"]],[28,31,["H3808"]],[31,32,["H8085"]],[32,35,["H995"]]]},{"k":18712,"v":[[0,1,["H4310"]],[1,3,["H539"]],[3,5,["H8052"]],[5,7,["H5921"]],[7,8,["H4310"]],[8,11,["H2220"]],[11,14,["H3068"]],[14,15,["H1540"]]]},{"k":18713,"v":[[0,5,["H5927"]],[5,6,["H6440"]],[6,11,["H3126"]],[11,15,["H8328"]],[15,19,["H6723"]],[19,20,["H4480","H776"]],[20,23,["H3808"]],[23,24,["H8389"]],[24,25,["H3808"]],[25,26,["H1926"]],[26,31,["H7200"]],[31,35,["H3808"]],[35,36,["H4758"]],[36,40,["H2530"]],[40,41,[]]]},{"k":18714,"v":[[0,3,["H959"]],[3,5,["H2310"]],[5,7,["H376"]],[7,9,["H376"]],[9,11,["H4341"]],[11,13,["H3045"]],[13,15,["H2483"]],[15,18,["H4564"]],[18,23,["H6440"]],[23,24,["H4480"]],[24,28,["H959"]],[28,31,["H2803"]],[31,33,["H3808"]]]},{"k":18715,"v":[[0,1,["H403"]],[1,2,["H1931"]],[2,4,["H5375"]],[4,6,["H2483"]],[6,8,["H5445"]],[8,10,["H4341"]],[10,12,["H587"]],[12,14,["H2803"]],[14,16,["H5060"]],[16,17,["H5221"]],[17,19,["H430"]],[19,21,["H6031"]]]},{"k":18716,"v":[[0,2,["H1931"]],[2,4,["H2490"]],[4,7,["H4480","H6588"]],[7,10,["H1792"]],[10,13,["H4480","H5771"]],[13,15,["H4148"]],[15,18,["H7965"]],[18,20,["H5921"]],[20,25,["H2250"]],[25,28,["H7495"]]]},{"k":18717,"v":[[0,1,["H3605"]],[1,4,["H6629"]],[4,7,["H8582"]],[7,10,["H6437"]],[10,12,["H376"]],[12,16,["H1870"]],[16,19,["H3068"]],[19,21,["H6293"]],[21,23,["(H853)"]],[23,25,["H5771"]],[25,28,["H3605"]]]},{"k":18718,"v":[[0,3,["H5065"]],[3,5,["H1931"]],[5,7,["H6031"]],[7,10,["H6605"]],[10,11,["H3808"]],[11,13,["H6310"]],[13,16,["H2986"]],[16,19,["H7716"]],[19,22,["H2874"]],[22,26,["H7353"]],[26,27,["H6440"]],[27,29,["H1494"]],[29,31,["H481"]],[31,34,["H6605"]],[34,35,["H3808"]],[35,37,["H6310"]]]},{"k":18719,"v":[[0,3,["H3947"]],[3,5,["H4480","H6115"]],[5,8,["H4480","H4941"]],[8,10,["H4310"]],[10,12,["H7878"]],[12,14,["H1755"]],[14,15,["H3588"]],[15,19,["H1504"]],[19,23,["H4480","H776"]],[23,26,["H2416"]],[26,29,["H4480","H6588"]],[29,32,["H5971"]],[32,35,["H5061"]]]},{"k":18720,"v":[[0,3,["H5414"]],[3,5,["H6913"]],[5,6,["H854"]],[6,8,["H7563"]],[8,10,["H854"]],[10,12,["H6223"]],[12,15,["H4194"]],[15,16,["H5921"]],[16,19,["H6213"]],[19,20,["H3808"]],[20,21,["H2555"]],[21,22,["H3808"]],[22,25,["H4820"]],[25,28,["H6310"]]]},{"k":18721,"v":[[0,3,["H2654"]],[3,5,["H3068"]],[5,7,["H1792"]],[7,14,["H2470"]],[14,15,["H518"]],[15,18,["H7760"]],[18,20,["H5315"]],[20,24,["H817"]],[24,27,["H7200"]],[27,29,["H2233"]],[29,32,["H748"]],[32,34,["H3117"]],[34,37,["H2656"]],[37,40,["H3068"]],[40,42,["H6743"]],[42,45,["H3027"]]]},{"k":18722,"v":[[0,3,["H7200"]],[3,6,["H4480","H5999"]],[6,9,["H5315"]],[9,13,["H7646"]],[13,16,["H1847"]],[16,19,["H6662"]],[19,20,["H5650"]],[20,21,["H6663"]],[21,22,["H7227"]],[22,24,["H1931"]],[24,26,["H5445"]],[26,28,["H5771"]]]},{"k":18723,"v":[[0,1,["H3651"]],[1,4,["H2505"]],[4,10,["H7227"]],[10,14,["H2505"]],[14,16,["H7998"]],[16,17,["H854"]],[17,19,["H6099"]],[19,20,["H8478","H834"]],[20,24,["H6168"]],[24,26,["H5315"]],[26,28,["H4194"]],[28,30,["H1931"]],[30,32,["H4487"]],[32,33,["H854"]],[33,35,["H6586"]],[35,38,["H5375"]],[38,40,["H2399"]],[40,42,["H7227"]],[42,45,["H6293"]],[45,48,["H6586"]]]},{"k":18724,"v":[[0,1,["H7442"]],[1,3,["H6135"]],[3,7,["H3808"]],[7,8,["H3205"]],[8,10,["H6476"]],[10,12,["H7440"]],[12,15,["H6670"]],[15,19,["H3808"]],[19,22,["H2342"]],[22,23,["H3588"]],[23,24,["H7227"]],[24,27,["H1121"]],[27,30,["H8074"]],[30,33,["H4480","H1121"]],[33,37,["H1166"]],[37,38,["H559"]],[38,40,["H3068"]]]},{"k":18725,"v":[[0,1,["H7337"]],[1,3,["H4725"]],[3,6,["H168"]],[6,11,["H5186"]],[11,13,["H3407"]],[13,16,["H4908"]],[16,17,["H2820"]],[17,18,["H408"]],[18,19,["H748"]],[19,21,["H4340"]],[21,23,["H2388"]],[23,25,["H3489"]]]},{"k":18726,"v":[[0,1,["H3588"]],[1,5,["H6555"]],[5,9,["H3225"]],[9,13,["H8040"]],[13,16,["H2233"]],[16,18,["H3423"]],[18,20,["H1471"]],[20,24,["H8074"]],[24,25,["H5892"]],[25,28,["H3427"]]]},{"k":18727,"v":[[0,1,["H3372"]],[1,2,["H408"]],[2,3,["H3588"]],[3,6,["H3808"]],[6,8,["H954"]],[8,9,["H408"]],[9,12,["H3637"]],[12,13,["H3588"]],[13,16,["H3808"]],[16,20,["H2659"]],[20,21,["H3588"]],[21,24,["H7911"]],[24,26,["H1322"]],[26,29,["H5934"]],[29,32,["H3808"]],[32,33,["H2142"]],[33,35,["H2781"]],[35,38,["H491"]],[38,40,["H5750"]]]},{"k":18728,"v":[[0,1,["H3588"]],[1,3,["H6213"]],[3,6,["H1166"]],[6,8,["H3068"]],[8,10,["H6635"]],[10,13,["H8034"]],[13,16,["H1350"]],[16,19,["H6918"]],[19,21,["H3478"]],[21,23,["H430"]],[23,26,["H3605"]],[26,27,["H776"]],[27,31,["H7121"]]]},{"k":18729,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H7121"]],[5,9,["H802"]],[9,10,["H5800"]],[10,12,["H6087"]],[12,14,["H7307"]],[14,17,["H802"]],[17,19,["H5271"]],[19,20,["H3588"]],[20,23,["H3988"]],[23,24,["H559"]],[24,26,["H430"]]]},{"k":18730,"v":[[0,3,["H6996"]],[3,4,["H7281"]],[4,7,["H5800"]],[7,11,["H1419"]],[11,12,["H7356"]],[12,15,["H6908"]],[15,16,[]]]},{"k":18731,"v":[[0,3,["H8241"]],[3,4,["H7110"]],[4,6,["H5641"]],[6,8,["H6440"]],[8,9,["H4480"]],[9,13,["H7281"]],[13,16,["H5769"]],[16,17,["H2617"]],[17,21,["H7355"]],[21,24,["H559"]],[24,26,["H3068"]],[26,28,["H1350"]]]},{"k":18732,"v":[[0,1,["H3588"]],[1,2,["H2063"]],[2,6,["H4325"]],[6,8,["H5146"]],[8,11,["H834"]],[11,15,["H7650"]],[15,18,["H4325"]],[18,20,["H5146"]],[20,23,["H5750"]],[23,24,["H4480","H5674"]],[24,25,["H5921"]],[25,27,["H776"]],[27,28,["H3651"]],[28,31,["H7650"]],[31,37,["H4480","H7107"]],[37,38,["H5921"]],[38,41,["H4480","H1605"]],[41,42,[]]]},{"k":18733,"v":[[0,1,["H3588"]],[1,3,["H2022"]],[3,5,["H4185"]],[5,8,["H1389"]],[8,10,["H4131"]],[10,13,["H2617"]],[13,15,["H3808"]],[15,16,["H4185"]],[16,17,["H4480","H854"]],[17,19,["H3808"]],[19,22,["H1285"]],[22,25,["H7965"]],[25,27,["H4131"]],[27,28,["H559"]],[28,30,["H3068"]],[30,33,["H7355"]],[33,35,[]]]},{"k":18734,"v":[[0,3,["H6041"]],[3,6,["H5590"]],[6,8,["H3808"]],[8,9,["H5162"]],[9,10,["H2009"]],[10,11,["H595"]],[11,13,["H7257"]],[13,15,["H68"]],[15,18,["H6320"]],[18,22,["H3245"]],[22,24,["H5601"]]]},{"k":18735,"v":[[0,4,["H7760"]],[4,6,["H8121"]],[6,8,["H3539"]],[8,11,["H8179"]],[11,13,["H68","H688"]],[13,15,["H3605"]],[15,17,["H1366"]],[17,19,["H2656"]],[19,20,["H68"]]]},{"k":18736,"v":[[0,2,["H3605"]],[2,4,["H1121"]],[4,7,["H3928"]],[7,10,["H3068"]],[10,12,["H7227"]],[12,16,["H7965"]],[16,19,["H1121"]]]},{"k":18737,"v":[[0,2,["H6666"]],[2,6,["H3559"]],[6,10,["H7368"]],[10,12,["H4480","H6233"]],[12,13,["H3588"]],[13,16,["H3808"]],[16,17,["H3372"]],[17,20,["H4480","H4288"]],[20,21,["H3588"]],[21,24,["H3808"]],[24,26,["H7126","H413"]],[26,27,[]]]},{"k":18738,"v":[[0,1,["H2005"]],[1,6,["H1481","H1481"]],[6,8,["H657"]],[8,9,["H4480","H854"]],[9,11,["H4310"]],[11,14,["H1481"]],[14,15,["H854"]],[15,18,["H5307"]],[18,19,["H5921"]],[19,21,[]]]},{"k":18739,"v":[[0,1,["H2009"]],[1,2,["H595"]],[2,4,["H1254"]],[4,6,["H2796"]],[6,8,["H5301"]],[8,10,["H6352"]],[10,13,["H784"]],[13,17,["H3318"]],[17,19,["H3627"]],[19,22,["H4639"]],[22,24,["H595"]],[24,26,["H1254"]],[26,28,["H7843"]],[28,30,["H2254"]]]},{"k":18740,"v":[[0,1,["H3808","H3605"]],[1,2,["H3627"]],[2,5,["H3335"]],[5,6,["H5921"]],[6,9,["H6743"]],[9,11,["H3605"]],[11,12,["H3956"]],[12,15,["H6965"]],[15,16,["H854"]],[16,19,["H4941"]],[19,22,["H7561"]],[22,23,["H2063"]],[23,26,["H5159"]],[26,29,["H5650"]],[29,32,["H3068"]],[32,35,["H6666"]],[35,37,["H4480","H854"]],[37,39,["H5002"]],[39,41,["H3068"]]]},{"k":18741,"v":[[0,1,["H1945"]],[1,3,["H3605"]],[3,5,["H6771"]],[5,6,["H1980"]],[6,10,["H4325"]],[10,13,["H834"]],[13,15,["H369"]],[15,16,["H3701"]],[16,17,["H1980"]],[17,19,["H7666"]],[19,21,["H398"]],[21,23,["H1980"]],[23,24,["H7666"]],[24,25,["H3196"]],[25,27,["H2461"]],[27,28,["H3808"]],[28,29,["H3701"]],[29,31,["H3808"]],[31,32,["H4242"]]]},{"k":18742,"v":[[0,1,["H4100"]],[1,4,["H8254"]],[4,5,["H3701"]],[5,10,["H3808"]],[10,11,["H3899"]],[11,14,["H3018"]],[14,18,["H7654"]],[18,19,["H3808"]],[19,21,["H8085","H8085"]],[21,22,["H413"]],[22,25,["H398"]],[25,30,["H2896"]],[30,34,["H5315"]],[34,36,["H6026"]],[36,38,["H1880"]]]},{"k":18743,"v":[[0,1,["H5186"]],[1,3,["H241"]],[3,5,["H1980"]],[5,6,["H413"]],[6,8,["H8085"]],[8,11,["H5315"]],[11,13,["H2421"]],[13,17,["H3772"]],[17,19,["H5769"]],[19,20,["H1285"]],[20,25,["H539"]],[25,26,["H2617"]],[26,28,["H1732"]]]},{"k":18744,"v":[[0,1,["H2005"]],[1,4,["H5414"]],[4,8,["H5707"]],[8,11,["H3816"]],[11,13,["H5057"]],[13,15,["H6680"]],[15,18,["H3816"]]]},{"k":18745,"v":[[0,1,["H2005"]],[1,4,["H7121"]],[4,6,["H1471"]],[6,9,["H3045"]],[9,10,["H3808"]],[10,12,["H1471"]],[12,14,["H3045"]],[14,15,["H3808"]],[15,18,["H7323"]],[18,19,["H413"]],[19,21,["H4616"]],[21,24,["H3068"]],[24,26,["H430"]],[26,31,["H6918"]],[31,33,["H3478"]],[33,34,["H3588"]],[34,37,["H6286"]],[37,38,[]]]},{"k":18746,"v":[[0,1,["H1875"]],[1,4,["H3068"]],[4,9,["H4672"]],[9,10,["H7121"]],[10,16,["H1961"]],[16,17,["H7138"]]]},{"k":18747,"v":[[0,3,["H7563"]],[3,4,["H5800"]],[4,6,["H1870"]],[6,9,["H205"]],[9,10,["H376"]],[10,12,["H4284"]],[12,16,["H7725"]],[16,17,["H413"]],[17,19,["H3068"]],[19,24,["H7355"]],[24,28,["H413"]],[28,30,["H430"]],[30,31,["H3588"]],[31,34,["H7235"]],[34,35,["H5545"]]]},{"k":18748,"v":[[0,1,["H3588"]],[1,3,["H4284"]],[3,5,["H3808"]],[5,7,["H4284"]],[7,8,["H3808"]],[8,11,["H1870"]],[11,13,["H1870"]],[13,14,["H5002"]],[14,16,["H3068"]]]},{"k":18749,"v":[[0,1,["H3588"]],[1,4,["H8064"]],[4,6,["H1361"]],[6,9,["H4480","H776"]],[9,10,["H3651"]],[10,14,["H1361","H1870"]],[14,17,["H4480","H1870"]],[17,20,["H4284"]],[20,23,["H4480","H4284"]]]},{"k":18750,"v":[[0,1,["H3588"]],[1,2,["H834"]],[2,4,["H1653"]],[4,6,["H3381"]],[6,9,["H7950"]],[9,10,["H4480"]],[10,11,["H8064"]],[11,13,["H7725"]],[13,14,["H3808"]],[14,15,["H8033"]],[15,16,["H3588","H518"]],[16,17,["H7301","(H853)"]],[17,19,["H776"]],[19,24,["H3205"]],[24,26,["H6779"]],[26,30,["H5414"]],[30,31,["H2233"]],[31,34,["H2232"]],[34,36,["H3899"]],[36,39,["H398"]]]},{"k":18751,"v":[[0,1,["H3651"]],[1,4,["H1697"]],[4,5,["H1961"]],[5,6,["H834"]],[6,8,["H3318"]],[8,12,["H4480","H6310"]],[12,15,["H3808"]],[15,16,["H7725"]],[16,17,["H413"]],[17,19,["H7387"]],[19,20,["H3588","H518"]],[20,23,["H6213","(H853)"]],[23,25,["H834"]],[25,27,["H2654"]],[27,31,["H6743"]],[31,35,["H834"]],[35,37,["H7971"]],[37,38,[]]]},{"k":18752,"v":[[0,1,["H3588"]],[1,5,["H3318"]],[5,7,["H8057"]],[7,11,["H2986"]],[11,13,["H7965"]],[13,15,["H2022"]],[15,18,["H1389"]],[18,21,["H6476"]],[21,22,["H6440"]],[22,25,["H7440"]],[25,27,["H3605"]],[27,29,["H6086"]],[29,32,["H7704"]],[32,34,["H4222"]],[34,36,["H3709"]]]},{"k":18753,"v":[[0,1,["H8478"]],[1,4,["H5285"]],[4,7,["H5927"]],[7,10,["H1265"]],[10,12,["H8478"]],[12,15,["H5636"]],[15,18,["H5927"]],[18,21,["H1918"]],[21,25,["H1961"]],[25,28,["H3068"]],[28,31,["H8034"]],[31,34,["H5769"]],[34,35,["H226"]],[35,38,["H3808"]],[38,41,["H3772"]]]},{"k":18754,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H8104"]],[5,7,["H4941"]],[7,9,["H6213"]],[9,10,["H6666"]],[10,11,["H3588"]],[11,13,["H3444"]],[13,15,["H7138"]],[15,17,["H935"]],[17,20,["H6666"]],[20,23,["H1540"]]]},{"k":18755,"v":[[0,1,["H835"]],[1,4,["H582"]],[4,6,["H6213"]],[6,7,["H2063"]],[7,10,["H1121"]],[10,12,["H120"]],[12,15,["H2388"]],[15,19,["H8104"]],[19,21,["H7676"]],[21,23,["H4480","H2490"]],[23,26,["H8104"]],[26,28,["H3027"]],[28,30,["H4480","H6213"]],[30,31,["H3605"]],[31,32,["H7451"]]]},{"k":18756,"v":[[0,1,["H408"]],[1,4,["H1121"]],[4,7,["H5236"]],[7,11,["H3867"]],[11,12,["H413"]],[12,14,["H3068"]],[14,15,["H559"]],[15,16,["H559"]],[16,18,["H3068"]],[18,21,["H914","H914"]],[21,23,["H4480","H5921"]],[23,25,["H5971"]],[25,26,["H408"]],[26,29,["H5631"]],[29,30,["H559"]],[30,31,["H2005"]],[31,32,["H589"]],[32,35,["H3002"]],[35,36,["H6086"]]]},{"k":18757,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,8,["H5631"]],[8,9,["H834"]],[9,10,["H8104","(H853)"]],[10,12,["H7676"]],[12,14,["H977"]],[14,17,["H834"]],[17,18,["H2654"]],[18,22,["H2388"]],[22,25,["H1285"]]]},{"k":18758,"v":[[0,6,["H5414"]],[6,9,["H1004"]],[9,13,["H2346"]],[13,15,["H3027"]],[15,18,["H8034"]],[18,19,["H2896"]],[19,22,["H4480","H1121"]],[22,25,["H4480","H1323"]],[25,28,["H5414"]],[28,31,["H5769"]],[31,32,["H8034"]],[32,33,["H834"]],[33,35,["H3808"]],[35,38,["H3772"]]]},{"k":18759,"v":[[0,3,["H1121"]],[3,6,["H5236"]],[6,9,["H3867"]],[9,10,["H5921"]],[10,12,["H3068"]],[12,14,["H8334"]],[14,18,["H157","(H853)"]],[18,20,["H8034"]],[20,23,["H3068"]],[23,25,["H1961"]],[25,27,["H5650"]],[27,29,["H3605"]],[29,31,["H8104"]],[31,33,["H7676"]],[33,35,["H4480","H2490"]],[35,39,["H2388"]],[39,42,["H1285"]]]},{"k":18760,"v":[[0,5,["H935"]],[5,6,["H413"]],[6,8,["H6944"]],[8,9,["H2022"]],[9,13,["H8055"]],[13,16,["H1004"]],[16,18,["H8605"]],[18,21,["H5930"]],[21,24,["H2077"]],[24,27,["H7522"]],[27,28,["H5921"]],[28,30,["H4196"]],[30,31,["H3588"]],[31,33,["H1004"]],[33,36,["H7121"]],[36,38,["H1004"]],[38,40,["H8605"]],[40,42,["H3605"]],[42,43,["H5971"]]]},{"k":18761,"v":[[0,2,["H136"]],[2,3,["H3069"]],[3,5,["H6908"]],[5,7,["H1760"]],[7,9,["H3478"]],[9,10,["H5002"]],[10,11,["H5750"]],[11,14,["H6908"]],[14,16,["H5921"]],[16,22,["H6908"]],[22,24,[]]]},{"k":18762,"v":[[0,1,["H3605"]],[1,3,["H2416"]],[3,6,["H7704"]],[6,7,["H857"]],[7,9,["H398"]],[9,11,["H3605"]],[11,13,["H2416"]],[13,16,["H3293"]]]},{"k":18763,"v":[[0,2,["H6822"]],[2,4,["H5787"]],[4,7,["H3605"]],[7,8,["H3808","H3045"]],[8,11,["H3605"]],[11,12,["H483"]],[12,13,["H3611"]],[13,15,["H3201","H3808"]],[15,16,["H5024"]],[16,17,["H1957"]],[17,19,["H7901"]],[19,20,["H157"]],[20,22,["H5123"]]]},{"k":18764,"v":[[0,4,["H5794","H5315"]],[4,5,["H3611"]],[5,8,["H3808"]],[8,9,["H3045"]],[9,10,["H7654"]],[10,12,["H1992"]],[12,14,["H7462"]],[14,16,["H3045","H3808"]],[16,17,["H995"]],[17,19,["H3605"]],[19,20,["H6437"]],[20,24,["H1870"]],[24,26,["H376"]],[26,29,["H1215"]],[29,32,["H4480","H7097"]]]},{"k":18765,"v":[[0,1,["H857"]],[1,7,["H3947"]],[7,8,["H3196"]],[8,12,["H5433"]],[12,16,["H7941"]],[16,19,["H4279"]],[19,21,["H1961"]],[21,23,["H2088"]],[23,24,["H3117"]],[24,26,["H3966"]],[26,28,["H3499","H1419"]]]},{"k":18766,"v":[[0,2,["H6662"]],[2,3,["H6"]],[3,5,["H369"]],[5,6,["H376"]],[6,7,["H7760"]],[7,9,["H5921"]],[9,10,["H3820"]],[10,12,["H2617"]],[12,13,["H376"]],[13,16,["H622"]],[16,17,["H369"]],[17,18,["H995"]],[18,19,["H3588"]],[19,21,["H6662"]],[21,24,["H622"]],[24,25,["H4480","H6440"]],[25,27,["H7451"]],[27,29,[]]]},{"k":18767,"v":[[0,3,["H935"]],[3,5,["H7965"]],[5,8,["H5117"]],[8,9,["H5921"]],[9,11,["H4904"]],[11,14,["H1980"]],[14,17,["H5228"]]]},{"k":18768,"v":[[0,3,["H7126"]],[3,4,["H2008"]],[4,5,["H859"]],[5,6,["H1121"]],[6,9,["H6049"]],[9,11,["H2233"]],[11,14,["H5003"]],[14,17,["H2181"]]]},{"k":18769,"v":[[0,1,["H5921"]],[1,2,["H4310"]],[2,6,["H6026"]],[6,7,["H5921"]],[7,8,["H4310"]],[8,12,["H7337"]],[12,13,["H6310"]],[13,16,["H748"]],[16,18,["H3956"]],[18,20,["H859"]],[20,21,["H3808"]],[21,22,["H3206"]],[22,24,["H6588"]],[24,26,["H2233"]],[26,28,["H8267"]]]},{"k":18770,"v":[[0,2,["H2552"]],[2,4,["H410"]],[4,5,["H8478"]],[5,6,["H3605"]],[6,7,["H7488"]],[7,8,["H6086"]],[8,9,["H7819"]],[9,11,["H3206"]],[11,14,["H5158"]],[14,15,["H8478"]],[15,17,["H5585"]],[17,20,["H5553"]]]},{"k":18771,"v":[[0,3,["H2511"]],[3,7,["H5158"]],[7,10,["H2506"]],[10,11,["H1992"]],[11,12,["H1992"]],[12,15,["H1486"]],[15,16,["H1571"]],[16,21,["H8210"]],[21,24,["H5262"]],[24,27,["H5927"]],[27,30,["H4503"]],[30,34,["H5162"]],[34,35,["H5921"]],[35,36,["H428"]]]},{"k":18772,"v":[[0,1,["H5921"]],[1,3,["H1364"]],[3,5,["H5375"]],[5,6,["H2022"]],[6,9,["H7760"]],[9,11,["H4904"]],[11,12,["H1571"]],[12,13,["H8033"]],[13,16,["H5927"]],[16,18,["H2076"]],[18,19,["H2077"]]]},{"k":18773,"v":[[0,1,["H310"]],[1,3,["H1817"]],[3,7,["H4201"]],[7,11,["H7760"]],[11,13,["H2146"]],[13,14,["H3588"]],[14,17,["H1540"]],[17,21,["H4480","H854"]],[21,26,["H5927"]],[26,29,["H7337"]],[29,31,["H4904"]],[31,33,["H3772"]],[33,37,["H4480"]],[37,40,["H157"]],[40,42,["H4904"]],[42,43,["H3027"]],[43,45,["H2372"]],[45,46,[]]]},{"k":18774,"v":[[0,3,["H7788"]],[3,6,["H4428"]],[6,8,["H8081"]],[8,11,["H7235"]],[11,13,["H7547"]],[13,16,["H7971"]],[16,18,["H6735"]],[18,20,["H5704","H4480","H7350"]],[20,23,["H8213"]],[23,26,["H5704"]],[26,27,["H7585"]]]},{"k":18775,"v":[[0,3,["H3021"]],[3,6,["H7230"]],[6,9,["H1870"]],[9,11,["H559"]],[11,13,["H3808"]],[13,17,["H2976"]],[17,20,["H4672"]],[20,22,["H2416"]],[22,25,["H3027"]],[25,26,["H5921","H3651"]],[26,29,["H3808"]],[29,30,["H2470"]]]},{"k":18776,"v":[[0,3,["H4310"]],[3,7,["H1672"]],[7,9,["H3372"]],[9,10,["H3588"]],[10,13,["H3576"]],[13,16,["H3808"]],[16,17,["H2142"]],[17,19,["H3808"]],[19,20,["H7760"]],[20,22,["H5921"]],[22,24,["H3820"]],[24,26,["H3808"]],[26,27,["H589"]],[27,30,["H2814"]],[30,33,["H4480","H5769"]],[33,36,["H3372"]],[36,38,["H3808"]]]},{"k":18777,"v":[[0,1,["H589"]],[1,3,["H5046"]],[3,5,["H6666"]],[5,8,["H4639"]],[8,12,["H3808"]],[12,13,["H3276"]],[13,14,[]]]},{"k":18778,"v":[[0,3,["H2199"]],[3,6,["H6899"]],[6,7,["H5337"]],[7,11,["H7307"]],[11,16,["H5375","(H853)","H3605"]],[16,17,["H1892"]],[17,19,["H3947"]],[19,26,["H2620"]],[26,30,["H5157"]],[30,32,["H776"]],[32,35,["H3423"]],[35,37,["H6944"]],[37,38,["H2022"]]]},{"k":18779,"v":[[0,3,["H559"]],[3,6,["H5549"]],[6,9,["H5549"]],[9,10,["H6437"]],[10,12,["H1870"]],[12,14,["H7311"]],[14,16,["H4383"]],[16,20,["H4480","H1870"]],[20,23,["H5971"]]]},{"k":18780,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H7311"]],[5,8,["H5375"]],[8,10,["H7931"]],[10,11,["H5703"]],[11,13,["H8034"]],[13,15,["H6918"]],[15,17,["H7931"]],[17,20,["H4791"]],[20,22,["H6918"]],[22,24,["H854"]],[24,31,["H1793"]],[31,33,["H8217"]],[33,34,["H7307"]],[34,36,["H2421"]],[36,38,["H7307"]],[38,41,["H8217"]],[41,44,["H2421"]],[44,46,["H3820"]],[46,50,["H1792"]]]},{"k":18781,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H7378"]],[5,7,["H5769"]],[7,8,["H3808"]],[8,13,["H7107","H5331"]],[13,14,["H3588"]],[14,16,["H7307"]],[16,18,["H5848"]],[18,19,["H4480","H6440"]],[19,23,["H5397"]],[23,25,["H589"]],[25,27,["H6213"]]]},{"k":18782,"v":[[0,3,["H5771"]],[3,6,["H1215"]],[6,9,["H7107"]],[9,11,["H5221"]],[11,14,["H5641"]],[14,18,["H7107"]],[18,21,["H1980"]],[21,23,["H7726"]],[23,26,["H1870"]],[26,29,["H3820"]]]},{"k":18783,"v":[[0,3,["H7200"]],[3,5,["H1870"]],[5,8,["H7495"]],[8,12,["H5148"]],[12,16,["H7999"]],[16,17,["H5150"]],[17,23,["H57"]]]},{"k":18784,"v":[[0,2,["H1254"]],[2,4,["H5108"]],[4,7,["H8193"]],[7,8,["H7965"]],[8,9,["H7965"]],[9,15,["H7350"]],[15,21,["H7138"]],[21,22,["H559"]],[22,24,["H3068"]],[24,28,["H7495"]],[28,29,[]]]},{"k":18785,"v":[[0,3,["H7563"]],[3,7,["H1644"]],[7,8,["H3220"]],[8,9,["H3588"]],[9,11,["H3201","H3808"]],[11,12,["H8252"]],[12,14,["H4325"]],[14,16,["H1644"]],[16,17,["H7516"]],[17,19,["H2916"]]]},{"k":18786,"v":[[0,3,["H369"]],[3,4,["H7965"]],[4,5,["H559"]],[5,7,["H430"]],[7,10,["H7563"]]]},{"k":18787,"v":[[0,1,["H7121"]],[1,2,["H1627"]],[2,3,["H2820"]],[3,4,["H408"]],[4,6,["H7311"]],[6,8,["H6963"]],[8,11,["H7782"]],[11,13,["H5046"]],[13,15,["H5971"]],[15,17,["H6588"]],[17,20,["H1004"]],[20,22,["H3290"]],[22,24,["H2403"]]]},{"k":18788,"v":[[0,3,["H1875"]],[3,5,["H3117","H3117"]],[5,7,["H2654"]],[7,9,["H1847"]],[9,11,["H1870"]],[11,14,["H1471"]],[14,15,["H834"]],[15,16,["H6213"]],[16,17,["H6666"]],[17,19,["H5800"]],[19,20,["H3808"]],[20,22,["H4941"]],[22,25,["H430"]],[25,27,["H7592"]],[27,31,["H4941"]],[31,33,["H6664"]],[33,36,["H2654"]],[36,38,["H7132"]],[38,40,["H430"]]]},{"k":18789,"v":[[0,1,["H4100"]],[1,4,["H6684"]],[4,9,["H7200"]],[9,10,["H3808"]],[10,14,["H6031"]],[14,16,["H5315"]],[16,21,["H3045","H3808"]],[21,22,["H2005"]],[22,25,["H3117"]],[25,28,["H6685"]],[28,30,["H4672"]],[30,31,["H2656"]],[31,33,["H5065"]],[33,34,["H3605"]],[34,36,["H6092"]]]},{"k":18790,"v":[[0,1,["H2005"]],[1,3,["H6684"]],[3,5,["H7379"]],[5,7,["H4683"]],[7,10,["H5221"]],[10,13,["H106"]],[13,15,["H7562"]],[15,18,["H3808"]],[18,19,["H6684"]],[19,24,["H3117"]],[24,28,["H6963"]],[28,31,["H8085"]],[31,33,["H4791"]]]},{"k":18791,"v":[[0,1,["H1961"]],[1,3,["H2088"]],[3,5,["H6685"]],[5,9,["H977"]],[9,11,["H3117"]],[11,14,["H120"]],[14,16,["H6031"]],[16,18,["H5315"]],[18,23,["H3721"]],[23,25,["H7218"]],[25,28,["H100"]],[28,31,["H3331"]],[31,32,["H8242"]],[32,34,["H665"]],[34,39,["H7121"]],[39,40,["H2088"]],[40,42,["H6685"]],[42,45,["H7522"]],[45,46,["H3117"]],[46,49,["H3068"]]]},{"k":18792,"v":[[0,2,["H3808"]],[2,3,["H2088"]],[3,5,["H6685"]],[5,9,["H977"]],[9,11,["H6605"]],[11,13,["H2784"]],[13,15,["H7562"]],[15,17,["H5425"]],[17,19,["H4133"]],[19,20,["H92"]],[20,25,["H7533"]],[25,26,["H7971"]],[26,27,["H2670"]],[27,31,["H5423"]],[31,32,["H3605"]],[32,33,["H4133"]]]},{"k":18793,"v":[[0,3,["H3808"]],[3,5,["H6536"]],[5,7,["H3899"]],[7,10,["H7457"]],[10,14,["H935"]],[14,16,["H6041"]],[16,20,["H4788"]],[20,23,["H1004"]],[23,24,["H3588"]],[24,26,["H7200"]],[26,28,["H6174"]],[28,31,["H3680"]],[31,38,["H5956","H3808"]],[38,42,["H4480","H1320"]]]},{"k":18794,"v":[[0,1,["H227"]],[1,4,["H216"]],[4,6,["H1234"]],[6,9,["H7837"]],[9,12,["H724"]],[12,15,["H6779"]],[15,16,["H4120"]],[16,19,["H6664"]],[19,21,["H1980"]],[21,22,["H6440"]],[22,25,["H3519"]],[25,28,["H3068"]],[28,32,["H622"]]]},{"k":18795,"v":[[0,1,["H227"]],[1,4,["H7121"]],[4,7,["H3068"]],[7,9,["H6030"]],[9,12,["H7768"]],[12,16,["H559"]],[16,17,["H2009"]],[17,20,["H518"]],[20,23,["H5493"]],[23,26,["H4480","H8432"]],[26,30,["H4133"]],[30,33,["H7971"]],[33,36,["H676"]],[36,38,["H1696"]],[38,39,["H205"]]]},{"k":18796,"v":[[0,5,["H6329"]],[5,7,["H5315"]],[7,10,["H7457"]],[10,12,["H7646"]],[12,14,["H6031"]],[14,15,["H5315"]],[15,19,["H216"]],[19,20,["H2224"]],[20,22,["H2822"]],[22,25,["H653"]],[25,29,["H6672"]]]},{"k":18797,"v":[[0,3,["H3068"]],[3,5,["H5148"]],[5,7,["H8548"]],[7,9,["H7646"]],[9,11,["H5315"]],[11,13,["H6710"]],[13,16,["H2502"]],[16,18,["H6106"]],[18,22,["H1961"]],[22,25,["H7302"]],[25,26,["H1588"]],[26,30,["H4161"]],[30,32,["H4325"]],[32,33,["H834"]],[33,34,["H4325"]],[34,35,["H3576"]],[35,36,["H3808"]]]},{"k":18798,"v":[[0,6,["H4480"]],[6,9,["H1129"]],[9,11,["H5769"]],[11,13,["H2723"]],[13,17,["H6965"]],[17,19,["H4146"]],[19,22,["H1755","H1755"]],[22,27,["H7121"]],[27,29,["H1443"]],[29,32,["H6556"]],[32,34,["H7725"]],[34,36,["H5410"]],[36,38,["H3427"]],[38,39,[]]]},{"k":18799,"v":[[0,1,["H518"]],[1,4,["H7725"]],[4,6,["H7272"]],[6,9,["H4480","H7676"]],[9,11,["H6213"]],[11,13,["H2656"]],[13,16,["H6944"]],[16,17,["H3117"]],[17,19,["H7121"]],[19,21,["H7676"]],[21,23,["H6027"]],[23,25,["H6918"]],[25,28,["H3068"]],[28,29,["H3513"]],[29,32,["H3513"]],[32,35,["H4480","H6213"]],[35,38,["H1870"]],[38,40,["H4480","H4672"]],[40,43,["H2656"]],[43,45,["H1696"]],[45,48,["H1697"]]]},{"k":18800,"v":[[0,1,["H227"]],[1,5,["H6026"]],[5,6,["H5921"]],[6,8,["H3068"]],[8,15,["H7392"]],[15,16,["H5921"]],[16,19,["H1116"]],[19,22,["H776"]],[22,24,["H398"]],[24,28,["H5159"]],[28,30,["H3290"]],[30,32,["H1"]],[32,33,["H3588"]],[33,35,["H6310"]],[35,38,["H3068"]],[38,40,["H1696"]],[40,41,[]]]},{"k":18801,"v":[[0,1,["H2005"]],[1,3,["H3068"]],[3,4,["H3027"]],[4,6,["H3808"]],[6,7,["H7114"]],[7,11,["H4480","H3467"]],[11,12,["H3808"]],[12,14,["H241"]],[14,15,["H3513"]],[15,19,["H4480","H8085"]]]},{"k":18802,"v":[[0,1,["H3588","H518"]],[1,3,["H5771"]],[3,4,["H1961"]],[4,5,["H914"]],[5,6,["H996"]],[6,10,["H430"]],[10,13,["H2403"]],[13,15,["H5641"]],[15,17,["H6440"]],[17,18,["H4480"]],[18,24,["H4480","H8085"]]]},{"k":18803,"v":[[0,1,["H3588"]],[1,3,["H3709"]],[3,5,["H1351"]],[5,7,["H1818"]],[7,10,["H676"]],[10,12,["H5771"]],[12,14,["H8193"]],[14,16,["H1696"]],[16,17,["H8267"]],[17,19,["H3956"]],[19,21,["H1897"]],[21,22,["H5766"]]]},{"k":18804,"v":[[0,1,["H369"]],[1,2,["H7121"]],[2,4,["H6664"]],[4,5,["H369"]],[5,7,["H8199"]],[7,9,["H530"]],[9,11,["H982"]],[11,12,["H5921"]],[12,13,["H8414"]],[13,15,["H1696"]],[15,16,["H7723"]],[16,18,["H2029"]],[18,19,["H5999"]],[19,22,["H3205"]],[22,23,["H205"]]]},{"k":18805,"v":[[0,2,["H1234"]],[2,3,["H6848"]],[3,4,["H1000"]],[4,6,["H707"]],[6,8,["H5908"]],[8,9,["H6980"]],[9,12,["H398"]],[12,15,["H4480","H1000"]],[15,16,["H4191"]],[16,21,["H2116"]],[21,23,["H1234"]],[23,26,["H660"]]]},{"k":18806,"v":[[0,2,["H6980"]],[2,4,["H3808"]],[4,5,["H1961"]],[5,6,["H899"]],[6,7,["H3808"]],[7,11,["H3680"]],[11,14,["H4639"]],[14,16,["H4639"]],[16,18,["H4639"]],[18,20,["H205"]],[20,23,["H6467"]],[23,25,["H2555"]],[25,29,["H3709"]]]},{"k":18807,"v":[[0,2,["H7272"]],[2,3,["H7323"]],[3,5,["H7451"]],[5,9,["H4116"]],[9,11,["H8210"]],[11,12,["H5355"]],[12,13,["H1818"]],[13,15,["H4284"]],[15,17,["H4284"]],[17,19,["H205"]],[19,20,["H7701"]],[20,22,["H7667"]],[22,26,["H4546"]]]},{"k":18808,"v":[[0,2,["H1870"]],[2,4,["H7965"]],[4,6,["H3045"]],[6,7,["H3808"]],[7,11,["H369"]],[11,12,["H4941"]],[12,15,["H4570"]],[15,20,["H6140"]],[20,21,["H5410"]],[21,22,["H3605"]],[22,23,["H1869"]],[23,26,["H3808"]],[26,27,["H3045"]],[27,28,["H7965"]]]},{"k":18809,"v":[[0,1,["H5921","H3651"]],[1,4,["H7368","H4941"]],[4,5,["H4480"]],[5,7,["H3808"]],[7,9,["H6666"]],[9,10,["H5381"]],[10,13,["H6960"]],[13,15,["H216"]],[15,17,["H2009"]],[17,18,["H2822"]],[18,20,["H5054"]],[20,23,["H1980"]],[23,25,["H653"]]]},{"k":18810,"v":[[0,2,["H1659"]],[2,5,["H7023"]],[5,8,["H5787"]],[8,11,["H1659"]],[11,16,["H369"]],[16,17,["H5869"]],[17,19,["H3782"]],[19,21,["H6672"]],[21,25,["H5399"]],[25,30,["H820"]],[30,32,["H4191"]],[32,33,[]]]},{"k":18811,"v":[[0,2,["H1993"]],[2,3,["H3605"]],[3,5,["H1677"]],[5,7,["H1897","H1897"]],[7,10,["H3123"]],[10,12,["H6960"]],[12,14,["H4941"]],[14,18,["H369"]],[18,20,["H3444"]],[20,25,["H7368"]],[25,26,["H4480"]],[26,27,[]]]},{"k":18812,"v":[[0,1,["H3588"]],[1,3,["H6588"]],[3,5,["H7231"]],[5,6,["H5048"]],[6,10,["H2403"]],[10,11,["H6030"]],[11,14,["H3588"]],[14,16,["H6588"]],[16,18,["H854"]],[18,24,["H5771"]],[24,26,["H3045"]],[26,27,[]]]},{"k":18813,"v":[[0,2,["H6586"]],[2,4,["H3584"]],[4,7,["H3068"]],[7,10,["H5253"]],[10,11,["H4480","H310"]],[11,13,["H430"]],[13,14,["H1696"]],[14,15,["H6233"]],[15,17,["H5627"]],[17,18,["H2029"]],[18,20,["H1897"]],[20,23,["H4480","H3820"]],[23,24,["H1697"]],[24,26,["H8267"]]]},{"k":18814,"v":[[0,2,["H4941"]],[2,5,["H5253"]],[5,6,["H268"]],[6,8,["H6666"]],[8,9,["H5975"]],[9,11,["H4480","H7350"]],[11,12,["H3588"]],[12,13,["H571"]],[13,15,["H3782"]],[15,18,["H7339"]],[18,20,["H5229"]],[20,21,["H3201","H3808"]],[21,22,["H935"]]]},{"k":18815,"v":[[0,2,["H571"]],[2,3,["H1961","H5737"]],[3,7,["H5493"]],[7,9,["H4480","H7451"]],[9,13,["H7997"]],[13,16,["H3068"]],[16,17,["H7200"]],[17,21,["H7489","H5869"]],[21,23,["H3588"]],[23,26,["H369"]],[26,27,["H4941"]]]},{"k":18816,"v":[[0,3,["H7200"]],[3,4,["H3588"]],[4,7,["H369"]],[7,8,["H376"]],[8,10,["H8074"]],[10,11,["H3588"]],[11,14,["H369"]],[14,15,["H6293"]],[15,18,["H2220"]],[18,20,["H3467"]],[20,25,["H6666"]],[25,26,["H1931"]],[26,27,["H5564"]],[27,28,[]]]},{"k":18817,"v":[[0,4,["H3847"]],[4,5,["H6666"]],[5,8,["H8302"]],[8,11,["H3553"]],[11,13,["H3444"]],[13,16,["H7218"]],[16,20,["H3847"]],[20,22,["H899"]],[22,24,["H5359"]],[24,26,["H8516"]],[26,29,["H5844"]],[29,31,["H7068"]],[31,34,["H4598"]]]},{"k":18818,"v":[[0,1,["H5921"]],[1,4,["H1578"]],[4,5,["H5921"]],[5,8,["H7999"]],[8,9,["H2534"]],[9,12,["H6862"]],[12,13,["H1576"]],[13,16,["H341"]],[16,19,["H339"]],[19,22,["H7999"]],[22,23,["H1576"]]]},{"k":18819,"v":[[0,4,["H3372","(H853)"]],[4,6,["H8034"]],[6,9,["H3068"]],[9,12,["H4480","H4628"]],[12,13,["(H853)"]],[13,15,["H3519"]],[15,18,["H4480","H4217"]],[18,21,["H8121"]],[21,22,["H3588"]],[22,24,["H6862"]],[24,27,["H935"]],[27,30,["H5104"]],[30,32,["H7307"]],[32,35,["H3068"]],[35,40,["H5127"]],[40,42,[]]]},{"k":18820,"v":[[0,3,["H1350"]],[3,5,["H935"]],[5,7,["H6726"]],[7,13,["H7725"]],[13,14,["H6588"]],[14,16,["H3290"]],[16,17,["H5002"]],[17,19,["H3068"]]]},{"k":18821,"v":[[0,3,["H589"]],[3,4,["H2063"]],[4,7,["H1285"]],[7,8,["H854"]],[8,10,["H559"]],[10,12,["H3068"]],[12,14,["H7307"]],[14,15,["H834"]],[15,17,["H5921"]],[17,21,["H1697"]],[21,22,["H834"]],[22,25,["H7760"]],[25,28,["H6310"]],[28,30,["H3808"]],[30,31,["H4185"]],[31,35,["H4480","H6310"]],[35,40,["H4480","H6310"]],[40,43,["H2233"]],[43,48,["H4480","H6310"]],[48,51,["H2233"]],[51,52,["H2233"]],[52,53,["H559"]],[53,55,["H3068"]],[55,57,["H4480","H6258"]],[57,60,["H5704","H5769"]]]},{"k":18822,"v":[[0,1,["H6965"]],[1,2,["H215"]],[2,3,["H3588"]],[3,5,["H216"]],[5,7,["H935"]],[7,10,["H3519"]],[10,13,["H3068"]],[13,15,["H2224"]],[15,16,["H5921"]],[16,17,[]]]},{"k":18823,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H2822"]],[4,6,["H3680"]],[6,8,["H776"]],[8,11,["H6205"]],[11,13,["H3816"]],[13,16,["H3068"]],[16,18,["H2224"]],[18,19,["H5921"]],[19,23,["H3519"]],[23,26,["H7200"]],[26,27,["H5921"]],[27,28,[]]]},{"k":18824,"v":[[0,3,["H1471"]],[3,5,["H1980"]],[5,8,["H216"]],[8,10,["H4428"]],[10,13,["H5051"]],[13,16,["H2225"]]]},{"k":18825,"v":[[0,2,["H5375"]],[2,4,["H5869"]],[4,6,["H5439"]],[6,8,["H7200"]],[8,9,["H3605"]],[9,13,["H6908"]],[13,15,["H935"]],[15,19,["H1121"]],[19,21,["H935"]],[21,23,["H4480","H7350"]],[23,26,["H1323"]],[26,29,["H539"]],[29,30,["H5921"]],[30,32,["H6654"]]]},{"k":18826,"v":[[0,1,["H227"]],[1,4,["H7200"]],[4,7,["H5102"]],[7,10,["H3824"]],[10,12,["H6342"]],[12,15,["H7337"]],[15,16,["H3588"]],[16,18,["H1995"]],[18,21,["H3220"]],[21,24,["H2015"]],[24,25,["H5921"]],[25,28,["H2428"]],[28,31,["H1471"]],[31,33,["H935"]],[33,35,[]]]},{"k":18827,"v":[[0,2,["H8229"]],[2,4,["H1581"]],[4,6,["H3680"]],[6,9,["H1070"]],[9,11,["H4080"]],[11,13,["H5891"]],[13,14,["H3605"]],[14,17,["H4480","H7614"]],[17,19,["H935"]],[19,22,["H5375"]],[22,23,["H2091"]],[23,25,["H3828"]],[25,30,["H1319"]],[30,32,["H8416"]],[32,35,["H3068"]]]},{"k":18828,"v":[[0,1,["H3605"]],[1,3,["H6629"]],[3,5,["H6938"]],[5,9,["H6908"]],[9,13,["H352"]],[13,15,["H5032"]],[15,17,["H8334"]],[17,23,["H5927"]],[23,24,["H5921"]],[24,25,["H7522"]],[25,28,["H4196"]],[28,32,["H6286"]],[32,34,["H1004"]],[34,37,["H8597"]]]},{"k":18829,"v":[[0,1,["H4310"]],[1,3,["H428"]],[3,5,["H5774"]],[5,8,["H5645"]],[8,12,["H3123"]],[12,13,["H413"]],[13,15,["H699"]]]},{"k":18830,"v":[[0,1,["H3588"]],[1,3,["H339"]],[3,5,["H6960"]],[5,10,["H591"]],[10,12,["H8659"]],[12,13,["H7223"]],[13,15,["H935"]],[15,17,["H1121"]],[17,19,["H4480","H7350"]],[19,21,["H3701"]],[21,24,["H2091"]],[24,25,["H854"]],[25,29,["H8034"]],[29,32,["H3068"]],[32,34,["H430"]],[34,39,["H6918"]],[39,41,["H3478"]],[41,42,["H3588"]],[42,45,["H6286"]],[45,46,[]]]},{"k":18831,"v":[[0,3,["H1121"]],[3,5,["H5236"]],[5,8,["H1129"]],[8,10,["H2346"]],[10,13,["H4428"]],[13,15,["H8334"]],[15,18,["H3588"]],[18,21,["H7110"]],[21,23,["H5221"]],[23,28,["H7522"]],[28,32,["H7355"]],[32,34,[]]]},{"k":18832,"v":[[0,3,["H8179"]],[3,6,["H6605"]],[6,7,["H8548"]],[7,10,["H3808"]],[10,12,["H5462"]],[12,13,["H3119"]],[13,15,["H3915"]],[15,19,["H935"]],[19,20,["H413"]],[20,23,["H2428"]],[23,26,["H1471"]],[26,30,["H4428"]],[30,33,["H5090"]]]},{"k":18833,"v":[[0,1,["H3588"]],[1,3,["H1471"]],[3,5,["H4467"]],[5,6,["H834"]],[6,8,["H3808"]],[8,9,["H5647"]],[9,12,["H6"]],[12,15,["H1471"]],[15,19,["H2717","H2717"]]]},{"k":18834,"v":[[0,2,["H3519"]],[2,4,["H3844"]],[4,6,["H935"]],[6,7,["H413"]],[7,11,["H1265"]],[11,14,["H8410"]],[14,17,["H8391"]],[17,18,["H3162"]],[18,20,["H6286"]],[20,22,["H4725"]],[22,25,["H4720"]],[25,31,["H4725"]],[31,34,["H7272"]],[34,35,["H3513"]]]},{"k":18835,"v":[[0,2,["H1121"]],[2,7,["H6031"]],[7,10,["H1980"]],[10,11,["H7817"]],[11,12,["H413"]],[12,15,["H3605"]],[15,18,["H5006"]],[18,23,["H7812"]],[23,24,["H5921"]],[24,26,["H3709"]],[26,29,["H7272"]],[29,33,["H7121"]],[33,36,["H5892"]],[36,39,["H3068"]],[39,41,["H6726"]],[41,45,["H6918"]],[45,47,["H3478"]]]},{"k":18836,"v":[[0,1,["H8478"]],[1,4,["H1961"]],[4,5,["H5800"]],[5,7,["H8130"]],[7,11,["H369"]],[11,13,["H5674"]],[13,17,["H7760"]],[17,20,["H5769"]],[20,21,["H1347"]],[21,23,["H4885"]],[23,26,["H1755","H1755"]]]},{"k":18837,"v":[[0,4,["H3243"]],[4,6,["H2461"]],[6,9,["H1471"]],[9,12,["H3243"]],[12,14,["H7699"]],[14,16,["H4428"]],[16,20,["H3045"]],[20,21,["H3588"]],[21,22,["H589"]],[22,24,["H3068"]],[24,27,["H3467"]],[27,30,["H1350"]],[30,33,["H46"]],[33,35,["H3290"]]]},{"k":18838,"v":[[0,1,["H8478"]],[1,2,["H5178"]],[2,5,["H935"]],[5,6,["H2091"]],[6,8,["H8478"]],[8,9,["H1270"]],[9,12,["H935"]],[12,13,["H3701"]],[13,15,["H8478"]],[15,16,["H6086"]],[16,17,["H5178"]],[17,19,["H8478"]],[19,20,["H68"]],[20,21,["H1270"]],[21,25,["H7760"]],[25,27,["H6486"]],[27,28,["H7965"]],[28,31,["H5065"]],[31,32,["H6666"]]]},{"k":18839,"v":[[0,1,["H2555"]],[1,3,["H3808"]],[3,4,["H5750"]],[4,6,["H8085"]],[6,9,["H776"]],[9,10,["H7701"]],[10,12,["H7667"]],[12,15,["H1366"]],[15,19,["H7121"]],[19,21,["H2346"]],[21,22,["H3444"]],[22,25,["H8179"]],[25,26,["H8416"]]]},{"k":18840,"v":[[0,2,["H8121"]],[2,4,["H1961"]],[4,5,["H3808"]],[5,6,["H5750"]],[6,8,["H216"]],[8,10,["H3119"]],[10,11,["H3808"]],[11,13,["H5051"]],[13,16,["H3394"]],[16,18,["H215"]],[18,23,["H3068"]],[23,25,["H1961"]],[25,29,["H5769"]],[29,30,["H216"]],[30,33,["H430"]],[33,35,["H8597"]]]},{"k":18841,"v":[[0,2,["H8121"]],[2,4,["H3808"]],[4,5,["H5750"]],[5,7,["H935"]],[7,8,["H3808"]],[8,11,["H3391"]],[11,13,["H622"]],[13,14,["H3588"]],[14,16,["H3068"]],[16,18,["H1961"]],[18,20,["H5769"]],[20,21,["H216"]],[21,24,["H3117"]],[24,27,["H60"]],[27,30,["H7999"]]]},{"k":18842,"v":[[0,2,["H5971"]],[2,6,["H3605"]],[6,7,["H6662"]],[7,10,["H3423"]],[10,12,["H776"]],[12,14,["H5769"]],[14,16,["H5342"]],[16,19,["H4302"]],[19,21,["H4639"]],[21,24,["H3027"]],[24,29,["H6286"]]]},{"k":18843,"v":[[0,3,["H6996"]],[3,5,["H1961"]],[5,7,["H505"]],[7,11,["H6810"]],[11,13,["H6099"]],[13,14,["H1471"]],[14,15,["H589"]],[15,17,["H3068"]],[17,19,["H2363"]],[19,23,["H6256"]]]},{"k":18844,"v":[[0,2,["H7307"]],[2,5,["H136"]],[5,6,["H3069"]],[6,8,["H5921"]],[8,10,["H3282"]],[10,12,["H3068"]],[12,14,["H4886"]],[14,19,["H1319"]],[19,22,["H6035"]],[22,25,["H7971"]],[25,29,["H2280"]],[29,31,["H7665","H3820"]],[31,33,["H7121"]],[33,34,["H1865"]],[34,37,["H7617"]],[37,43,["H6495"]],[43,48,["H631"]]]},{"k":18845,"v":[[0,2,["H7121"]],[2,4,["H7522"]],[4,5,["H8141"]],[5,8,["H3068"]],[8,11,["H3117"]],[11,13,["H5359"]],[13,16,["H430"]],[16,18,["H5162"]],[18,19,["H3605"]],[19,21,["H57"]]]},{"k":18846,"v":[[0,2,["H7760"]],[2,6,["H57"]],[6,8,["H6726"]],[8,10,["H5414"]],[10,13,["H6287"]],[13,14,["H8478"]],[14,15,["H665"]],[15,17,["H8081"]],[17,19,["H8342"]],[19,20,["H8478"]],[20,21,["H60"]],[21,23,["H4594"]],[23,25,["H8416"]],[25,26,["H8478"]],[26,28,["H7307"]],[28,30,["H3544"]],[30,35,["H7121"]],[35,36,["H352"]],[36,38,["H6664"]],[38,40,["H4302"]],[40,43,["H3068"]],[43,48,["H6286"]]]},{"k":18847,"v":[[0,4,["H1129"]],[4,6,["H5769"]],[6,7,["H2723"]],[7,11,["H6965"]],[11,13,["H7223"]],[13,14,["H8074"]],[14,18,["H2318"]],[18,20,["H2721"]],[20,21,["H5892"]],[21,23,["H8074"]],[23,26,["H1755","H1755"]]]},{"k":18848,"v":[[0,2,["H2114"]],[2,4,["H5975"]],[4,6,["H7462"]],[6,8,["H6629"]],[8,11,["H1121"]],[11,14,["H5236"]],[14,18,["H406"]],[18,21,["H3755"]]]},{"k":18849,"v":[[0,2,["H859"]],[2,5,["H7121"]],[5,7,["H3548"]],[7,10,["H3068"]],[10,13,["H559"]],[13,16,["H8334"]],[16,19,["H430"]],[19,22,["H398"]],[22,24,["H2428"]],[24,27,["H1471"]],[27,31,["H3519"]],[31,35,["H3235"]]]},{"k":18850,"v":[[0,1,["H8478"]],[1,3,["H1322"]],[3,7,["H4932"]],[7,10,["H3639"]],[10,13,["H7442"]],[13,16,["H2506"]],[16,17,["H3651"]],[17,20,["H776"]],[20,23,["H3423"]],[23,25,["H4932"]],[25,26,["H5769"]],[26,27,["H8057"]],[27,29,["H1961"]],[29,31,[]]]},{"k":18851,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,4,["H3068"]],[4,5,["H157"]],[5,6,["H4941"]],[6,8,["H8130"]],[8,9,["H1498"]],[9,12,["H5930"]],[12,16,["H5414"]],[16,18,["H6468"]],[18,20,["H571"]],[20,24,["H3772"]],[24,26,["H5769"]],[26,27,["H1285"]],[27,29,[]]]},{"k":18852,"v":[[0,3,["H2233"]],[3,6,["H3045"]],[6,9,["H1471"]],[9,12,["H6631"]],[12,13,["H8432"]],[13,15,["H5971"]],[15,16,["H3605"]],[16,18,["H7200"]],[18,21,["H5234"]],[21,23,["H3588"]],[23,24,["H1992"]],[24,27,["H2233"]],[27,30,["H3068"]],[30,32,["H1288"]]]},{"k":18853,"v":[[0,4,["H7797","H7797"]],[4,7,["H3068"]],[7,9,["H5315"]],[9,12,["H1523"]],[12,15,["H430"]],[15,16,["H3588"]],[16,19,["H3847"]],[19,23,["H899"]],[23,25,["H3468"]],[25,28,["H3271"]],[28,32,["H4598"]],[32,34,["H6666"]],[34,37,["H2860"]],[37,38,["H3547"]],[38,41,["H6287"]],[41,45,["H3618"]],[45,46,["H5710"]],[46,50,["H3627"]]]},{"k":18854,"v":[[0,1,["H3588"]],[1,4,["H776"]],[4,6,["H3318"]],[6,8,["H6780"]],[8,12,["H1593"]],[12,18,["H2221"]],[18,23,["H6779"]],[23,24,["H3651"]],[24,26,["H136"]],[26,27,["H3069"]],[27,30,["H6666"]],[30,32,["H8416"]],[32,35,["H6779"]],[35,36,["H5048"]],[36,37,["H3605"]],[37,39,["H1471"]]]},{"k":18855,"v":[[0,3,["H4616","H6726"]],[3,6,["H3808"]],[6,9,["H2814"]],[9,13,["H4616","H3389"]],[13,16,["H3808"]],[16,17,["H8252"]],[17,18,["H5704"]],[18,20,["H6664"]],[20,23,["H3318"]],[23,25,["H5051"]],[25,28,["H3444"]],[28,32,["H3940"]],[32,34,["H1197"]]]},{"k":18856,"v":[[0,3,["H1471"]],[3,5,["H7200"]],[5,7,["H6664"]],[7,9,["H3605"]],[9,10,["H4428"]],[10,12,["H3519"]],[12,17,["H7121"]],[17,20,["H2319"]],[20,21,["H8034"]],[21,22,["H834"]],[22,24,["H6310"]],[24,27,["H3068"]],[27,29,["H5344"]]]},{"k":18857,"v":[[0,4,["H1961"]],[4,6,["H5850"]],[6,8,["H8597"]],[8,11,["H3027"]],[11,14,["H3068"]],[14,17,["H4410"]],[17,18,["H6797"]],[18,21,["H3709"]],[21,24,["H430"]]]},{"k":18858,"v":[[0,3,["H3808"]],[3,4,["H5750"]],[4,6,["H559"]],[6,7,["H5800"]],[7,8,["H3808"]],[8,11,["H776"]],[11,13,["H5750"]],[13,15,["H559"]],[15,16,["H8077"]],[16,17,["H3588"]],[17,21,["H7121"]],[21,22,["H2657"]],[22,25,["H776"]],[25,26,["H1166"]],[26,27,["H3588"]],[27,29,["H3068"]],[29,30,["H2654"]],[30,35,["H776"]],[35,38,["H1166"]]]},{"k":18859,"v":[[0,1,["H3588"]],[1,5,["H970"]],[5,6,["H1166"]],[6,8,["H1330"]],[8,12,["H1121"]],[12,13,["H1166"]],[13,18,["H2860"]],[18,19,["H4885"]],[19,20,["H5921"]],[20,22,["H3618"]],[22,26,["H430"]],[26,27,["H7797"]],[27,28,["H5921"]],[28,29,[]]]},{"k":18860,"v":[[0,3,["H6485"]],[3,4,["H8104"]],[4,5,["H5921"]],[5,7,["H2346"]],[7,9,["H3389"]],[9,12,["H3808","H8548"]],[12,15,["H2814"]],[15,16,["H3117"]],[16,18,["H3915"]],[18,22,["H2142"]],[22,23,["(H853)"]],[23,25,["H3068"]],[25,28,["H408","H1824"]]]},{"k":18861,"v":[[0,2,["H5414"]],[2,4,["H408"]],[4,5,["H1824"]],[5,6,["H5704"]],[6,8,["H3559"]],[8,10,["H5704"]],[10,12,["H7760","(H853)"]],[12,13,["H3389"]],[13,15,["H8416"]],[15,18,["H776"]]]},{"k":18862,"v":[[0,2,["H3068"]],[2,4,["H7650"]],[4,8,["H3225"]],[8,12,["H2220"]],[12,15,["H5797"]],[15,19,["H518"]],[19,20,["H5750"]],[20,21,["H5414","(H853)"]],[21,23,["H1715"]],[23,26,["H3978"]],[26,29,["H341"]],[29,32,["H1121"]],[32,35,["H5236"]],[35,37,["H518"]],[37,38,["H8354"]],[38,40,["H8492"]],[40,43,["H834"]],[43,46,["H3021"]]]},{"k":18863,"v":[[0,1,["H3588"]],[1,5,["H622"]],[5,8,["H398"]],[8,11,["H1984","(H853)"]],[11,13,["H3068"]],[13,20,["H6908"]],[20,22,["H8354"]],[22,26,["H2691"]],[26,29,["H6944"]]]},{"k":18864,"v":[[0,2,["H5674"]],[2,4,["H5674"]],[4,6,["H8179"]],[6,7,["H6437"]],[7,10,["H1870"]],[10,13,["H5971"]],[13,15,["H5549"]],[15,17,["H5549"]],[17,19,["H4546"]],[19,21,["H5619"]],[21,23,["H4480","H68"]],[23,25,["H7311"]],[25,27,["H5251"]],[27,28,["H5921"]],[28,30,["H5971"]]]},{"k":18865,"v":[[0,1,["H2009"]],[1,3,["H3068"]],[3,5,["H8085"]],[5,6,["H413"]],[6,8,["H7097"]],[8,11,["H776"]],[11,12,["H559"]],[12,16,["H1323"]],[16,18,["H6726"]],[18,19,["H2009"]],[19,21,["H3468"]],[21,22,["H935"]],[22,23,["H2009"]],[23,25,["H7939"]],[25,27,["H854"]],[27,31,["H6468"]],[31,32,["H6440"]],[32,33,[]]]},{"k":18866,"v":[[0,4,["H7121"]],[4,7,["H6944"]],[7,8,["H5971"]],[8,10,["H1350"]],[10,13,["H3068"]],[13,18,["H7121"]],[18,20,["H1875"]],[20,22,["H5892"]],[22,23,["H3808"]],[23,24,["H5800"]]]},{"k":18867,"v":[[0,1,["H4310"]],[1,3,["H2088"]],[3,5,["H935"]],[5,7,["H4480","H123"]],[7,9,["H2556"]],[9,10,["H899"]],[10,12,["H4480","H1224"]],[12,13,["H2088"]],[13,16,["H1921"]],[16,19,["H3830"]],[19,20,["H6808"]],[20,23,["H7230"]],[23,26,["H3581"]],[26,27,["H589"]],[27,29,["H1696"]],[29,31,["H6666"]],[31,32,["H7227"]],[32,34,["H3467"]]]},{"k":18868,"v":[[0,1,["H4069"]],[1,4,["H122"]],[4,7,["H3830"]],[7,10,["H899"]],[10,14,["H1869"]],[14,17,["H1660"]]]},{"k":18869,"v":[[0,3,["H1869"]],[3,5,["H6333"]],[5,6,["H905"]],[6,10,["H4480","H5971"]],[10,13,["H369","H376"]],[13,14,["H854"]],[14,19,["H1869"]],[19,23,["H639"]],[23,25,["H7429"]],[25,29,["H2534"]],[29,32,["H5332"]],[32,35,["H5137"]],[35,36,["H5921"]],[36,38,["H899"]],[38,42,["H1351"]],[42,43,["H3605"]],[43,45,["H4403"]]]},{"k":18870,"v":[[0,1,["H3588"]],[1,3,["H3117"]],[3,5,["H5359"]],[5,9,["H3820"]],[9,12,["H8141"]],[12,15,["H1350"]],[15,17,["H935"]]]},{"k":18871,"v":[[0,3,["H5027"]],[3,7,["H369"]],[7,9,["H5826"]],[9,12,["H8074"]],[12,16,["H369"]],[16,18,["H5564"]],[18,22,["H2220"]],[22,24,["H3467"]],[24,29,["H2534"]],[29,30,["H1931"]],[30,31,["H5564"]],[31,32,[]]]},{"k":18872,"v":[[0,5,["H947"]],[5,7,["H5971"]],[7,10,["H639"]],[10,14,["H7937"]],[14,17,["H2534"]],[17,22,["H3381"]],[22,24,["H5332"]],[24,27,["H776"]]]},{"k":18873,"v":[[0,3,["H2142"]],[3,5,["H2617"]],[5,8,["H3068"]],[8,11,["H8416"]],[11,14,["H3068"]],[14,15,["H5921"]],[15,17,["H3605"]],[17,18,["H834"]],[18,20,["H3068"]],[20,22,["H1580"]],[22,27,["H7227"]],[27,28,["H2898"]],[28,31,["H1004"]],[31,33,["H3478"]],[33,34,["H834"]],[34,37,["H1580"]],[37,43,["H7356"]],[43,48,["H7230"]],[48,51,["H2617"]]]},{"k":18874,"v":[[0,3,["H559"]],[3,4,["H389"]],[4,5,["H1992"]],[5,8,["H5971"]],[8,9,["H1121"]],[9,12,["H3808"]],[12,13,["H8266"]],[13,16,["H1961"]],[16,18,["H3467"]]]},{"k":18875,"v":[[0,2,["H3605"]],[2,4,["H6869"]],[4,7,["H6862"]],[7,10,["H4397"]],[10,13,["H6440"]],[13,14,["H3467"]],[14,18,["H160"]],[18,22,["H2551"]],[22,23,["H1931"]],[23,24,["H1350"]],[24,28,["H5190"]],[28,31,["H5375"]],[31,33,["H3605"]],[33,35,["H3117"]],[35,37,["H5769"]]]},{"k":18876,"v":[[0,2,["H1992"]],[2,3,["H4784"]],[3,5,["H6087","(H853)"]],[5,7,["H6944"]],[7,8,["H7307"]],[8,12,["H2015"]],[12,16,["H341"]],[16,18,["H1931"]],[18,19,["H3898"]],[19,21,[]]]},{"k":18877,"v":[[0,3,["H2142"]],[3,5,["H3117"]],[5,7,["H5769"]],[7,8,["H4872"]],[8,11,["H5971"]],[11,13,["H346"]],[13,19,["H5927"]],[19,23,["H4480","H3220"]],[23,24,["H854"]],[24,26,["H7462"]],[26,29,["H6629"]],[29,30,["H346"]],[30,34,["H7760","(H853)"]],[34,36,["H6944"]],[36,37,["H7307"]],[37,38,["H7130"]],[38,39,[]]]},{"k":18878,"v":[[0,2,["H1980"]],[2,7,["H3225"]],[7,9,["H4872"]],[9,12,["H8597"]],[12,13,["H2220"]],[13,14,["H1234"]],[14,16,["H4325"]],[16,17,["H4480","H6440"]],[17,20,["H6213"]],[20,23,["H5769"]],[23,24,["H8034"]]]},{"k":18879,"v":[[0,2,["H1980"]],[2,6,["H8415"]],[6,9,["H5483"]],[9,12,["H4057"]],[12,16,["H3808"]],[16,17,["H3782"]]]},{"k":18880,"v":[[0,3,["H929"]],[3,5,["H3381"]],[5,8,["H1237"]],[8,10,["H7307"]],[10,13,["H3068"]],[13,17,["H5117"]],[17,18,["H3651"]],[18,21,["H5090"]],[21,23,["H5971"]],[23,25,["H6213"]],[25,28,["H8597"]],[28,29,["H8034"]]]},{"k":18881,"v":[[0,2,["H5027"]],[2,4,["H4480","H8064"]],[4,6,["H7200"]],[6,9,["H4480","H2073"]],[9,12,["H6944"]],[12,16,["H8597"]],[16,17,["H346"]],[17,20,["H7068"]],[20,23,["H1369"]],[23,25,["H1995"]],[25,28,["H4578"]],[28,32,["H7356"]],[32,33,["H413"]],[33,37,["H662"]]]},{"k":18882,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,5,["H1"]],[5,6,["H3588"]],[6,7,["H85"]],[7,9,["H3808","H3045"]],[9,13,["H3478"]],[13,14,["H5234"]],[14,16,["H3808"]],[16,17,["H859"]],[17,19,["H3068"]],[19,22,["H1"]],[22,24,["H1350"]],[24,26,["H8034"]],[26,29,["H4480","H5769"]]]},{"k":18883,"v":[[0,2,["H3068"]],[2,3,["H4100"]],[3,9,["H8582"]],[9,12,["H4480","H1870"]],[12,14,["H7188"]],[14,16,["H3820"]],[16,19,["H4480","H3374"]],[19,20,["H7725"]],[20,24,["H4616","H5650"]],[24,26,["H7626"]],[26,29,["H5159"]]]},{"k":18884,"v":[[0,2,["H5971"]],[2,5,["H6944"]],[5,7,["H3423"]],[7,12,["H4705"]],[12,14,["H6862"]],[14,17,["H947"]],[17,19,["H4720"]]]},{"k":18885,"v":[[0,2,["H1961"]],[2,5,["H3808","H4480","H5769"]],[5,7,["H4910"]],[7,12,["H3808"]],[12,13,["H7121"]],[13,14,["H5921"]],[14,16,["H8034"]]]},{"k":18886,"v":[[0,2,["H3863"]],[2,5,["H7167"]],[5,7,["H8064"]],[7,12,["H3381"]],[12,15,["H2022"]],[15,18,["H2151"]],[18,21,["H4480","H6440"]]]},{"k":18887,"v":[[0,4,["H2003"]],[4,5,["H784"]],[5,6,["H6919"]],[6,8,["H784"]],[8,11,["H4325"]],[11,13,["H1158"]],[13,17,["H8034"]],[17,18,["H3045"]],[18,21,["H6862"]],[21,24,["H1471"]],[24,26,["H7264"]],[26,29,["H4480","H6440"]]]},{"k":18888,"v":[[0,3,["H6213"]],[3,5,["H3372"]],[5,10,["H6960","H3808"]],[10,13,["H3381"]],[13,15,["H2022"]],[15,17,["H2151"]],[17,20,["H4480","H6440"]]]},{"k":18889,"v":[[0,7,["H4480","H5769"]],[7,10,["H3808"]],[10,11,["H8085"]],[11,12,["H3808"]],[12,16,["H238"]],[16,17,["H3808"]],[17,20,["H5869"]],[20,21,["H7200"]],[21,23,["H430"]],[23,24,["H2108"]],[24,29,["H6213"]],[29,33,["H2442"]],[33,35,[]]]},{"k":18890,"v":[[0,2,["H6293","(H853)"]],[2,5,["H7797"]],[5,7,["H6213"]],[7,8,["H6664"]],[8,11,["H2142"]],[11,15,["H1870"]],[15,16,["H2005"]],[16,17,["H859"]],[17,19,["H7107"]],[19,23,["H2398"]],[23,27,["H5769"]],[27,32,["H3467"]]]},{"k":18891,"v":[[0,3,["H1961"]],[3,4,["H3605"]],[4,7,["H2931"]],[7,10,["H3605"]],[10,12,["H6666"]],[12,15,["H5708"]],[15,16,["H899"]],[16,19,["H3605"]],[19,21,["H5034"]],[21,24,["H5929"]],[24,27,["H5771"]],[27,30,["H7307"]],[30,34,["H5375"]]]},{"k":18892,"v":[[0,4,["H369"]],[4,6,["H7121"]],[6,9,["H8034"]],[9,13,["H5782"]],[13,16,["H2388"]],[16,19,["H3588"]],[19,22,["H5641"]],[22,24,["H6440"]],[24,25,["H4480"]],[25,29,["H4127"]],[29,31,["H3027"]],[31,34,["H5771"]]]},{"k":18893,"v":[[0,2,["H6258"]],[2,4,["H3068"]],[4,5,["H859"]],[5,8,["H1"]],[8,9,["H587"]],[9,12,["H2563"]],[12,14,["H859"]],[14,16,["H3335"]],[16,19,["H3605"]],[19,22,["H4639"]],[22,25,["H3027"]]]},{"k":18894,"v":[[0,3,["H7107","H408"]],[3,5,["H5704","H3966"]],[5,7,["H3068"]],[7,8,["H408"]],[8,9,["H2142"]],[9,10,["H5771"]],[10,12,["H5703"]],[12,13,["H2005"]],[13,14,["H5027"]],[14,17,["H4994"]],[17,20,["H3605"]],[20,22,["H5971"]]]},{"k":18895,"v":[[0,2,["H6944"]],[2,3,["H5892"]],[3,4,["H1961"]],[4,6,["H4057"]],[6,7,["H6726"]],[7,8,["H1961"]],[8,10,["H4057"]],[10,11,["H3389"]],[11,13,["H8077"]]]},{"k":18896,"v":[[0,2,["H6944"]],[2,5,["H8597"]],[5,6,["H1004"]],[6,7,["H834"]],[7,9,["H1"]],[9,10,["H1984"]],[10,12,["H1961"]],[12,14,["H8316"]],[14,16,["H784"]],[16,18,["H3605"]],[18,21,["H4261"]],[21,22,["H1961"]],[22,24,["H2723"]]]},{"k":18897,"v":[[0,4,["H662"]],[4,5,["H5921"]],[5,6,["H428"]],[6,9,["H3068"]],[9,14,["H2814"]],[14,16,["H6031"]],[16,19,["H5704","H3966"]]]},{"k":18898,"v":[[0,3,["H1875"]],[3,7,["H7592"]],[7,8,["H3808"]],[8,13,["H4672"]],[13,17,["H1245"]],[17,19,["H3808"]],[19,21,["H559"]],[21,22,["H2009"]],[22,24,["H2009"]],[24,26,["H413"]],[26,28,["H1471"]],[28,31,["H3808"]],[31,32,["H7121"]],[32,35,["H8034"]]]},{"k":18899,"v":[[0,4,["H6566"]],[4,6,["H3027"]],[6,7,["H3605"]],[7,9,["H3117"]],[9,10,["H413"]],[10,12,["H5637"]],[12,13,["H5971"]],[13,15,["H1980"]],[15,18,["H1870"]],[18,21,["H3808"]],[21,22,["H2896"]],[22,23,["H310"]],[23,26,["H4284"]]]},{"k":18900,"v":[[0,2,["H5971"]],[2,7,["H3707","(H853)"]],[7,8,["H8548"]],[8,9,["H5921"]],[9,11,["H6440"]],[11,13,["H2076"]],[13,15,["H1593"]],[15,18,["H6999"]],[18,19,["H5921"]],[19,22,["H3843"]]]},{"k":18901,"v":[[0,2,["H3427"]],[2,5,["H6913"]],[5,7,["H3885"]],[7,10,["H5341"]],[10,12,["H398"]],[12,13,["H2386"]],[13,14,["H1320"]],[14,16,["H6564"]],[16,18,["H6292"]],[18,23,["H3627"]]]},{"k":18902,"v":[[0,2,["H559"]],[2,3,["H7126"]],[3,4,["H413"]],[4,8,["H5066","H408"]],[8,11,["H3588"]],[11,14,["H6942"]],[14,17,["H428"]],[17,20,["H6227"]],[20,23,["H639"]],[23,25,["H784"]],[25,27,["H3344"]],[27,28,["H3605"]],[28,30,["H3117"]]]},{"k":18903,"v":[[0,1,["H2009"]],[1,4,["H3789"]],[4,5,["H6440"]],[5,9,["H3808"]],[9,11,["H2814"]],[11,12,["H3588","H518"]],[12,14,["H7999"]],[14,16,["H7999"]],[16,17,["H5921"]],[17,19,["H2436"]]]},{"k":18904,"v":[[0,2,["H5771"]],[2,5,["H5771"]],[5,8,["H1"]],[8,9,["H3162"]],[9,10,["H559"]],[10,12,["H3068"]],[12,13,["H834"]],[13,16,["H6999"]],[16,17,["H5921"]],[17,19,["H2022"]],[19,21,["H2778"]],[21,23,["H5921"]],[23,25,["H1389"]],[25,29,["H4058"]],[29,31,["H7223"]],[31,32,["H6468"]],[32,33,["H413"]],[33,35,["H2436"]]]},{"k":18905,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H834"]],[5,8,["H8492"]],[8,10,["H4672"]],[10,13,["H811"]],[13,16,["H559"]],[16,17,["H7843"]],[17,19,["H408"]],[19,20,["H3588"]],[20,22,["H1293"]],[22,26,["H3651"]],[26,29,["H6213"]],[29,33,["H4616","H5650"]],[33,37,["H1115"]],[37,38,["H7843"]],[38,40,["H3605"]]]},{"k":18906,"v":[[0,5,["H3318"]],[5,7,["H2233"]],[7,10,["H4480","H3290"]],[10,14,["H4480","H3063"]],[14,16,["H3423"]],[16,19,["H2022"]],[19,22,["H972"]],[22,24,["H3423"]],[24,28,["H5650"]],[28,30,["H7931"]],[30,31,["H8033"]]]},{"k":18907,"v":[[0,2,["H8289"]],[2,4,["H1961"]],[4,6,["H5116"]],[6,8,["H6629"]],[8,11,["H6010"]],[11,13,["H5911"]],[13,18,["H1241"]],[18,22,["H7258"]],[22,25,["H5971"]],[25,26,["H834"]],[26,28,["H1875"]],[28,29,[]]]},{"k":18908,"v":[[0,2,["H859"]],[2,6,["H5800"]],[6,8,["H3068"]],[8,10,["H7913","(H853)"]],[10,12,["H6944"]],[12,13,["H2022"]],[13,15,["H6186"]],[15,17,["H7979"]],[17,20,["H1409"]],[20,23,["H4390"]],[23,26,["H4469"]],[26,29,["H4507"]]]},{"k":18909,"v":[[0,4,["H4487"]],[4,8,["H2719"]],[8,12,["H3605"]],[12,14,["H3766"]],[14,17,["H2874"]],[17,18,["H3282"]],[18,21,["H7121"]],[21,24,["H3808"]],[24,25,["H6030"]],[25,28,["H1696"]],[28,31,["H3808"]],[31,32,["H8085"]],[32,34,["H6213"]],[34,35,["H7451"]],[35,38,["H5869"]],[38,41,["H977"]],[41,43,["H834"]],[43,45,["H2654"]],[45,46,["H3808"]]]},{"k":18910,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,9,["H5650"]],[9,11,["H398"]],[11,13,["H859"]],[13,16,["H7456"]],[16,17,["H2009"]],[17,19,["H5650"]],[19,21,["H8354"]],[21,23,["H859"]],[23,26,["H6770"]],[26,27,["H2009"]],[27,29,["H5650"]],[29,31,["H8055"]],[31,33,["H859"]],[33,36,["H954"]]]},{"k":18911,"v":[[0,1,["H2009"]],[1,3,["H5650"]],[3,5,["H7442"]],[5,7,["H4480","H2898"]],[7,9,["H3820"]],[9,11,["H859"]],[11,13,["H6817"]],[13,15,["H4480","H3511"]],[15,17,["H3820"]],[17,20,["H3213"]],[20,22,["H4480","H7667"]],[22,24,["H7307"]]]},{"k":18912,"v":[[0,4,["H5117"]],[4,6,["H8034"]],[6,9,["H7621"]],[9,12,["H972"]],[12,15,["H136"]],[15,16,["H3069"]],[16,18,["H4191"]],[18,21,["H7121"]],[21,23,["H5650"]],[23,25,["H312"]],[25,26,["H8034"]]]},{"k":18913,"v":[[0,3,["H834"]],[3,5,["H1288"]],[5,8,["H776"]],[8,11,["H1288"]],[11,14,["H430"]],[14,16,["H543"]],[16,20,["H7650"]],[20,23,["H776"]],[23,25,["H7650"]],[25,28,["H430"]],[28,30,["H543"]],[30,31,["H3588"]],[31,33,["H7223"]],[33,34,["H6869"]],[34,36,["H7911"]],[36,38,["H3588"]],[38,41,["H5641"]],[41,44,["H4480","H5869"]]]},{"k":18914,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H1254"]],[4,5,["H2319"]],[5,6,["H8064"]],[6,9,["H2319"]],[9,10,["H776"]],[10,13,["H7223"]],[13,15,["H3808"]],[15,17,["H2142"]],[17,18,["H3808"]],[18,19,["H5927"]],[19,20,["H5921"]],[20,21,["H3820"]]]},{"k":18915,"v":[[0,1,["H3588","H518"]],[1,4,["H7797"]],[4,6,["H1523"]],[6,8,["H5704","H5703"]],[8,11,["H834"]],[11,12,["H589"]],[12,13,["H1254"]],[13,14,["H3588"]],[14,15,["H2009"]],[15,17,["H1254","(H853)"]],[17,18,["H3389"]],[18,20,["H1525"]],[20,23,["H5971"]],[23,25,["H4885"]]]},{"k":18916,"v":[[0,4,["H1523"]],[4,6,["H3389"]],[6,8,["H7797"]],[8,11,["H5971"]],[11,14,["H6963"]],[14,16,["H1065"]],[16,19,["H3808"]],[19,20,["H5750"]],[20,21,["H8085"]],[21,26,["H6963"]],[26,28,["H2201"]]]},{"k":18917,"v":[[0,3,["H1961"]],[3,4,["H3808"]],[4,5,["H5750"]],[5,6,["H4480","H8033"]],[6,8,["H5764"]],[8,10,["H3117"]],[10,14,["H2205"]],[14,15,["H834"]],[15,17,["H3808"]],[17,18,["H4390","(H853)"]],[18,20,["H3117"]],[20,21,["H3588"]],[21,23,["H5288"]],[23,25,["H4191"]],[25,27,["H3967"]],[27,28,["H8141"]],[28,29,["H1121"]],[29,32,["H2398"]],[32,35,["H3967"]],[35,36,["H8141"]],[36,37,["H1121"]],[37,40,["H7043"]]]},{"k":18918,"v":[[0,4,["H1129"]],[4,5,["H1004"]],[5,7,["H3427"]],[7,12,["H5193"]],[12,13,["H3754"]],[13,15,["H398"]],[15,17,["H6529"]],[17,19,[]]]},{"k":18919,"v":[[0,3,["H3808"]],[3,4,["H1129"]],[4,6,["H312"]],[6,7,["H3427"]],[7,10,["H3808"]],[10,11,["H5193"]],[11,13,["H312"]],[13,14,["H398"]],[14,15,["H3588"]],[15,18,["H3117"]],[18,21,["H6086"]],[21,24,["H3117"]],[24,27,["H5971"]],[27,30,["H972"]],[30,33,["H1086"]],[33,35,["H4639"]],[35,38,["H3027"]]]},{"k":18920,"v":[[0,3,["H3808"]],[3,4,["H3021"]],[4,6,["H7385"]],[6,7,["H3808"]],[7,9,["H3205"]],[9,11,["H928"]],[11,12,["H3588"]],[12,13,["H1992"]],[13,16,["H2233"]],[16,19,["H1288"]],[19,22,["H3068"]],[22,25,["H6631"]],[25,26,["H854"]],[26,27,[]]]},{"k":18921,"v":[[0,6,["H1961"]],[6,8,["H2962"]],[8,10,["H7121"]],[10,11,["H589"]],[11,13,["H6030"]],[13,16,["H1992"]],[16,18,["H5750"]],[18,19,["H1696"]],[19,20,["H589"]],[20,22,["H8085"]]]},{"k":18922,"v":[[0,2,["H2061"]],[2,5,["H2924"]],[5,7,["H7462"]],[7,8,["H259"]],[8,11,["H738"]],[11,13,["H398"]],[13,14,["H8401"]],[14,17,["H1241"]],[17,19,["H6083"]],[19,23,["H5175"]],[23,24,["H3899"]],[24,27,["H3808"]],[27,28,["H7489"]],[28,29,["H3808"]],[29,30,["H7843"]],[30,32,["H3605"]],[32,34,["H6944"]],[34,35,["H2022"]],[35,36,["H559"]],[36,38,["H3068"]]]},{"k":18923,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H8064"]],[6,9,["H3678"]],[9,12,["H776"]],[12,15,["H1916","H7272"]],[15,16,["H335"]],[16,19,["H1004"]],[19,20,["H834"]],[20,22,["H1129"]],[22,26,["H335"]],[26,28,["H2088"]],[28,29,["H4725"]],[29,32,["H4496"]]]},{"k":18924,"v":[[0,2,["H3605"]],[2,3,["H428"]],[3,7,["H3027"]],[7,8,["H6213"]],[8,10,["H3605"]],[10,11,["H428"]],[11,14,["H1961"]],[14,15,["H5002"]],[15,17,["H3068"]],[17,19,["H413"]],[19,20,["H2088"]],[20,24,["H5027"]],[24,26,["H413"]],[26,30,["H6041"]],[30,34,["H5223"]],[34,35,["H7307"]],[35,37,["H2730"]],[37,38,["H5921"]],[38,40,["H1697"]]]},{"k":18925,"v":[[0,3,["H7819"]],[3,5,["H7794"]],[5,10,["H5221"]],[10,12,["H376"]],[12,15,["H2076"]],[15,17,["H7716"]],[17,25,["H6202","H3611"]],[25,28,["H5927"]],[28,30,["H4503"]],[30,35,["H2386"]],[35,36,["H1818"]],[36,39,["H2142"]],[39,40,["H3828"]],[40,44,["H1288"]],[44,46,["H205"]],[46,47,["H1571"]],[47,48,["H1992"]],[48,50,["H977"]],[50,53,["H1870"]],[53,56,["H5315"]],[56,57,["H2654"]],[57,60,["H8251"]]]},{"k":18926,"v":[[0,1,["H589"]],[1,2,["H1571"]],[2,4,["H977"]],[4,6,["H8586"]],[6,9,["H935"]],[9,11,["H4035"]],[11,14,["H3282"]],[14,17,["H7121"]],[17,18,["H369"]],[18,20,["H6030"]],[20,23,["H1696"]],[23,26,["H3808"]],[26,27,["H8085"]],[27,30,["H6213"]],[30,31,["H7451"]],[31,34,["H5869"]],[34,36,["H977"]],[36,39,["H834"]],[39,41,["H2654"]],[41,42,["H3808"]]]},{"k":18927,"v":[[0,1,["H8085"]],[1,3,["H1697"]],[3,6,["H3068"]],[6,9,["H2730"]],[9,10,["H413"]],[10,12,["H1697"]],[12,14,["H251"]],[14,16,["H8130"]],[16,21,["H5077"]],[21,25,["H4616","H8034"]],[25,26,["H559"]],[26,29,["H3068"]],[29,31,["H3513"]],[31,35,["H7200"]],[35,38,["H8057"]],[38,40,["H1992"]],[40,43,["H954"]]]},{"k":18928,"v":[[0,2,["H6963"]],[2,4,["H7588"]],[4,7,["H4480","H5892"]],[7,9,["H6963"]],[9,12,["H4480","H1964"]],[12,14,["H6963"]],[14,17,["H3068"]],[17,19,["H7999"]],[19,20,["H1576"]],[20,23,["H341"]]]},{"k":18929,"v":[[0,1,["H2962"]],[1,3,["H2342"]],[3,6,["H3205"]],[6,7,["H2962"]],[7,9,["H2256"]],[9,10,["H935"]],[10,13,["H4422"]],[13,17,["H2145"]]]},{"k":18930,"v":[[0,1,["H4310"]],[1,3,["H8085"]],[3,6,["H2063"]],[6,7,["H4310"]],[7,9,["H7200"]],[9,11,["H428"]],[11,14,["H776"]],[14,19,["H2342"]],[19,21,["H259"]],[21,22,["H3117"]],[22,26,["H1471"]],[26,28,["H3205"]],[28,30,["H259","H6471"]],[30,31,["H3588"]],[31,33,["H1571"]],[33,35,["H6726"]],[35,36,["H2342"]],[36,39,["H3205","(H853)"]],[39,41,["H1121"]]]},{"k":18931,"v":[[0,2,["H589"]],[2,6,["H7665"]],[6,8,["H3808"]],[8,12,["H3205"]],[12,13,["H559"]],[13,15,["H3068"]],[15,17,["H589"]],[17,21,["H3205"]],[21,23,["H6113"]],[23,26,["H559"]],[26,28,["H430"]]]},{"k":18932,"v":[[0,1,["H8055"]],[1,3,["H854"]],[3,4,["H3389"]],[4,7,["H1523"]],[7,10,["H3605"]],[10,13,["H157"]],[13,15,["H7797"]],[15,17,["H4885"]],[17,18,["H854"]],[18,20,["H3605"]],[20,23,["H56"]],[23,24,["H5921"]],[24,25,[]]]},{"k":18933,"v":[[0,1,["H4616"]],[1,4,["H3243"]],[4,7,["H7646"]],[7,10,["H4480","H7699"]],[10,13,["H8575"]],[13,14,["H4616"]],[14,18,["H4711"]],[18,21,["H6026"]],[21,24,["H4480","H2123"]],[24,27,["H3519"]]]},{"k":18934,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,9,["H5186"]],[9,10,["H7965"]],[10,11,["H413"]],[11,15,["H5104"]],[15,18,["H3519"]],[18,21,["H1471"]],[21,24,["H7857"]],[24,25,["H5158"]],[25,29,["H3243"]],[29,33,["H5375"]],[33,34,["H5921"]],[34,36,["H6654"]],[36,39,["H8173"]],[39,40,["H5921"]],[40,42,["H1290"]]]},{"k":18935,"v":[[0,2,["H376"]],[2,3,["H834"]],[3,5,["H517"]],[5,6,["H5162"]],[6,7,["H3651"]],[7,9,["H595"]],[9,10,["H5162"]],[10,16,["H5162"]],[16,18,["H3389"]]]},{"k":18936,"v":[[0,4,["H7200"]],[4,7,["H3820"]],[7,9,["H7797"]],[9,12,["H6106"]],[12,14,["H6524"]],[14,17,["H1877"]],[17,20,["H3027"]],[20,23,["H3068"]],[23,26,["H3045"]],[26,27,["H854"]],[27,29,["H5650"]],[29,32,["H2194"]],[32,33,["H854"]],[33,35,["H341"]]]},{"k":18937,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H3068"]],[4,6,["H935"]],[6,8,["H784"]],[8,12,["H4818"]],[12,15,["H5492"]],[15,17,["H7725"]],[17,19,["H639"]],[19,21,["H2534"]],[21,24,["H1606"]],[24,26,["H3851"]],[26,28,["H784"]]]},{"k":18938,"v":[[0,1,["H3588"]],[1,3,["H784"]],[3,7,["H2719"]],[7,10,["H3068"]],[10,11,["H8199"]],[11,12,["H854"]],[12,13,["H3605"]],[13,14,["H1320"]],[14,17,["H2491"]],[17,20,["H3068"]],[20,23,["H7231"]]]},{"k":18939,"v":[[0,4,["H6942"]],[4,7,["H2891"]],[7,8,["H413"]],[8,10,["H1593"]],[10,11,["H310"]],[11,12,["H259"]],[12,16,["H8432"]],[16,17,["H398"]],[17,18,["H2386"]],[18,19,["H1320"]],[19,22,["H8263"]],[22,25,["H5909"]],[25,28,["H5486"]],[28,29,["H3162"]],[29,30,["H5002"]],[30,32,["H3068"]]]},{"k":18940,"v":[[0,2,["H595"]],[2,5,["H4639"]],[5,8,["H4284"]],[8,11,["H935"]],[11,15,["H6908","(H853)"]],[15,16,["H3605"]],[16,17,["H1471"]],[17,19,["H3956"]],[19,23,["H935"]],[23,25,["H7200","(H853)"]],[25,27,["H3519"]]]},{"k":18941,"v":[[0,4,["H7760"]],[4,6,["H226"]],[6,12,["H7971"]],[12,15,["H6412"]],[15,17,["H4480"]],[17,18,["H413"]],[18,20,["H1471"]],[20,22,["H8659"]],[22,23,["H6322"]],[23,25,["H3865"]],[25,27,["H4900"]],[27,29,["H7198"]],[29,31,["H8422"]],[31,33,["H3120"]],[33,36,["H339"]],[36,38,["H7350"]],[38,39,["H834"]],[39,41,["H3808"]],[41,42,["H8085","(H853)"]],[42,44,["H8088"]],[44,45,["H3808"]],[45,47,["H7200","(H853)"]],[47,49,["H3519"]],[49,53,["H5046","(H853)"]],[53,55,["H3519"]],[55,58,["H1471"]]]},{"k":18942,"v":[[0,4,["H935","(H853)"]],[4,5,["H3605"]],[5,7,["H251"]],[7,10,["H4503"]],[10,13,["H3068"]],[13,16,["H4480","H3605"]],[16,17,["H1471"]],[17,19,["H5483"]],[19,22,["H7393"]],[22,25,["H6632"]],[25,28,["H6505"]],[28,32,["H3753"]],[32,33,["H5921"]],[33,35,["H6944"]],[35,36,["H2022"]],[36,37,["H3389"]],[37,38,["H559"]],[38,40,["H3068"]],[40,41,["H834"]],[41,43,["H1121"]],[43,45,["H3478"]],[45,46,["H935","(H853)"]],[46,48,["H4503"]],[48,51,["H2889"]],[51,52,["H3627"]],[52,55,["H1004"]],[55,58,["H3068"]]]},{"k":18943,"v":[[0,4,["H1571"]],[4,5,["H3947"]],[5,6,["H4480"]],[6,9,["H3548"]],[9,12,["H3881"]],[12,13,["H559"]],[13,15,["H3068"]]]},{"k":18944,"v":[[0,1,["H3588"]],[1,2,["H834"]],[2,4,["H2319"]],[4,5,["H8064"]],[5,8,["H2319"]],[8,9,["H776"]],[9,10,["H834"]],[10,11,["H589"]],[11,13,["H6213"]],[13,15,["H5975"]],[15,16,["H6440"]],[16,18,["H5002"]],[18,20,["H3068"]],[20,21,["H3651"]],[21,24,["H2233"]],[24,27,["H8034"]],[27,28,["H5975"]]]},{"k":18945,"v":[[0,6,["H1961"]],[6,8,["H4480","H1767"]],[8,11,["H2320"]],[11,13,["H2320"]],[13,15,["H4480","H1767"]],[15,17,["H7676"]],[17,19,["H7676"]],[19,21,["H3605"]],[21,22,["H1320"]],[22,23,["H935"]],[23,25,["H7812"]],[25,26,["H6440"]],[26,28,["H559"]],[28,30,["H3068"]]]},{"k":18946,"v":[[0,5,["H3318"]],[5,7,["H7200"]],[7,10,["H6297"]],[10,13,["H376"]],[13,16,["H6586"]],[16,19,["H3588"]],[19,21,["H8438"]],[21,23,["H3808"]],[23,24,["H4191"]],[24,25,["H3808"]],[25,28,["H784"]],[28,30,["H3518"]],[30,34,["H1961"]],[34,36,["H1860"]],[36,38,["H3605"]],[38,39,["H1320"]]]},{"k":18947,"v":[[0,2,["H1697"]],[2,4,["H3414"]],[4,6,["H1121"]],[6,8,["H2518"]],[8,9,["H4480"]],[9,11,["H3548"]],[11,12,["H834"]],[12,15,["H6068"]],[15,18,["H776"]],[18,20,["H1144"]]]},{"k":18948,"v":[[0,2,["H834"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H1961"]],[8,11,["H3117"]],[11,13,["H2977"]],[13,15,["H1121"]],[15,17,["H526"]],[17,18,["H4428"]],[18,20,["H3063"]],[20,23,["H7969","H6240"]],[23,24,["H8141"]],[24,27,["H4427"]]]},{"k":18949,"v":[[0,2,["H1961"]],[2,6,["H3117"]],[6,8,["H3079"]],[8,10,["H1121"]],[10,12,["H2977"]],[12,13,["H4428"]],[13,15,["H3063"]],[15,16,["H5704"]],[16,18,["H8552"]],[18,21,["H6249","H6240"]],[21,22,["H8141"]],[22,24,["H6667"]],[24,26,["H1121"]],[26,28,["H2977"]],[28,29,["H4428"]],[29,31,["H3063"]],[31,32,["H5704"]],[32,35,["H1540"]],[35,37,["H3389"]],[37,41,["H2549"]],[41,42,["H2320"]]]},{"k":18950,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":18951,"v":[[0,1,["H2962"]],[1,3,["H3335"]],[3,7,["H990"]],[7,9,["H3045"]],[9,12,["H2962"]],[12,15,["H3318"]],[15,19,["H4480","H7358"]],[19,21,["H6942"]],[21,25,["H5414"]],[25,28,["H5030"]],[28,31,["H1471"]]]},{"k":18952,"v":[[0,2,["H559"]],[2,4,["H162"]],[4,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,9,["H3808","H3045"]],[9,10,["H1696"]],[10,11,["H3588"]],[11,12,["H595"]],[12,15,["H5288"]]]},{"k":18953,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H559"]],[7,8,["H408"]],[8,9,["H595"]],[9,12,["H5288"]],[12,13,["H3588"]],[13,16,["H1980"]],[16,17,["H5921"]],[17,18,["H3605"]],[18,19,["H834"]],[19,22,["H7971"]],[22,25,["H3605","H834"]],[25,27,["H6680"]],[27,31,["H1696"]]]},{"k":18954,"v":[[0,2,["H408"]],[2,3,["H3372"]],[3,6,["H4480","H6440"]],[6,7,["H3588"]],[7,8,["H589"]],[8,10,["H854"]],[10,13,["H5337"]],[13,15,["H5002"]],[15,17,["H3068"]]]},{"k":18955,"v":[[0,3,["H3068"]],[3,5,["H7971","(H853)"]],[5,7,["H3027"]],[7,9,["H5060","H5921"]],[9,11,["H6310"]],[11,14,["H3068"]],[14,15,["H559"]],[15,16,["H413"]],[16,18,["H2009"]],[18,21,["H5414"]],[21,23,["H1697"]],[23,26,["H6310"]]]},{"k":18956,"v":[[0,1,["H7200"]],[1,4,["H2088"]],[4,5,["H3117"]],[5,6,["H6485"]],[6,8,["H5921"]],[8,10,["H1471"]],[10,12,["H5921"]],[12,14,["H4467"]],[14,17,["H5428"]],[17,21,["H5422"]],[21,24,["H6"]],[24,28,["H2040"]],[28,30,["H1129"]],[30,33,["H5193"]]]},{"k":18957,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]],[10,11,["H3414"]],[11,12,["H4100"]],[12,13,["H7200"]],[13,14,["H859"]],[14,17,["H559"]],[17,18,["H589"]],[18,19,["H7200"]],[19,21,["H4731"]],[21,25,["H8247"]]]},{"k":18958,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,9,["H3190"]],[9,10,["H7200"]],[10,11,["H3588"]],[11,12,["H589"]],[12,14,["H8245","H5921"]],[14,16,["H1697"]],[16,18,["H6213"]],[18,19,[]]]},{"k":18959,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,12,["H8145"]],[12,13,["H559"]],[13,14,["H4100"]],[14,15,["H7200"]],[15,16,["H859"]],[16,19,["H559"]],[19,20,["H589"]],[20,21,["H7200"]],[21,23,["H5301"]],[23,24,["H5518"]],[24,27,["H6440"]],[27,30,["H4480","H6440"]],[30,32,["H6828"]]]},{"k":18960,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,10,["H4480","H6828"]],[10,12,["H7451"]],[12,15,["H6605"]],[15,16,["H5921"]],[16,17,["H3605"]],[17,19,["H3427"]],[19,22,["H776"]]]},{"k":18961,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,5,["H7121"]],[5,6,["H3605"]],[6,8,["H4940"]],[8,11,["H4467"]],[11,14,["H6828"]],[14,15,["H5002"]],[15,17,["H3068"]],[17,21,["H935"]],[21,25,["H5414"]],[25,27,["H376"]],[27,29,["H3678"]],[29,32,["H6607"]],[32,35,["H8179"]],[35,37,["H3389"]],[37,39,["H5921"]],[39,40,["H3605"]],[40,42,["H2346"]],[42,45,["H5439"]],[45,47,["H5921"]],[47,48,["H3605"]],[48,50,["H5892"]],[50,52,["H3063"]]]},{"k":18962,"v":[[0,4,["H1696"]],[4,6,["H4941"]],[6,9,["H5921"]],[9,10,["H3605"]],[10,12,["H7451"]],[12,13,["H834"]],[13,15,["H5800"]],[15,20,["H6999"]],[20,22,["H312"]],[22,23,["H430"]],[23,25,["H7812"]],[25,27,["H4639"]],[27,31,["H3027"]]]},{"k":18963,"v":[[0,1,["H859"]],[1,4,["H247"]],[4,6,["H4975"]],[6,8,["H6965"]],[8,10,["H1696"]],[10,11,["H413"]],[11,12,["(H853)"]],[12,13,["H3605"]],[13,14,["H834"]],[14,15,["H595"]],[15,16,["H6680"]],[16,19,["H408"]],[19,20,["H2865"]],[20,23,["H4480","H6440"]],[23,24,["H6435"]],[24,26,["H2865"]],[26,28,["H6440"]],[28,29,[]]]},{"k":18964,"v":[[0,1,["H589"]],[1,2,["H2009"]],[2,5,["H5414"]],[5,8,["H3117"]],[8,10,["H4013"]],[10,11,["H5892"]],[11,14,["H1270"]],[14,15,["H5982"]],[15,17,["H5178"]],[17,18,["H2346"]],[18,19,["H5921"]],[19,21,["H3605"]],[21,22,["H776"]],[22,25,["H4428"]],[25,27,["H3063"]],[27,30,["H8269"]],[30,34,["H3548"]],[34,39,["H5971"]],[39,42,["H776"]]]},{"k":18965,"v":[[0,4,["H3898"]],[4,5,["H413"]],[5,10,["H3808"]],[10,11,["H3201"]],[11,14,["H3588"]],[14,15,["H589"]],[15,17,["H854"]],[17,19,["H5002"]],[19,21,["H3068"]],[21,23,["H5337"]],[23,24,[]]]},{"k":18966,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":18967,"v":[[0,1,["H1980"]],[1,3,["H7121"]],[3,6,["H241"]],[6,8,["H3389"]],[8,9,["H559"]],[9,10,["H3541"]],[10,11,["H559"]],[11,13,["H3068"]],[13,15,["H2142"]],[15,18,["H2617"]],[18,21,["H5271"]],[21,23,["H160"]],[23,26,["H3623"]],[26,29,["H1980"]],[29,30,["H310"]],[30,34,["H4057"]],[34,37,["H776"]],[37,40,["H3808"]],[40,41,["H2232"]]]},{"k":18968,"v":[[0,1,["H3478"]],[1,3,["H6944"]],[3,6,["H3068"]],[6,9,["H7225"]],[9,12,["H8393"]],[12,13,["H3605"]],[13,15,["H398"]],[15,18,["H816"]],[18,19,["H7451"]],[19,21,["H935"]],[21,22,["H413"]],[22,24,["H5002"]],[24,26,["H3068"]]]},{"k":18969,"v":[[0,1,["H8085"]],[1,4,["H1697"]],[4,7,["H3068"]],[7,9,["H1004"]],[9,11,["H3290"]],[11,13,["H3605"]],[13,15,["H4940"]],[15,18,["H1004"]],[18,20,["H3478"]]]},{"k":18970,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H4100"]],[5,6,["H5766"]],[6,9,["H1"]],[9,10,["H4672"]],[10,13,["H3588"]],[13,17,["H7368"]],[17,18,["H4480","H5921"]],[18,22,["H1980"]],[22,23,["H310"]],[23,24,["H1892"]],[24,28,["H1891"]]]},{"k":18971,"v":[[0,1,["H3808"]],[1,2,["H559"]],[2,4,["H346"]],[4,7,["H3068"]],[7,11,["H5927","(H853)"]],[11,15,["H4480","H776"]],[15,17,["H4714"]],[17,19,["H1980"]],[19,23,["H4057"]],[23,26,["H776"]],[26,28,["H6160"]],[28,31,["H7745"]],[31,34,["H776"]],[34,36,["H6723"]],[36,42,["H6757"]],[42,45,["H776"]],[45,47,["H3808"]],[47,48,["H376"]],[48,50,["H5674"]],[50,52,["H8033"]],[52,53,["H3808"]],[53,54,["H120"]],[54,55,["H3427"]]]},{"k":18972,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H3759"]],[7,8,["H776"]],[8,10,["H398"]],[10,12,["H6529"]],[12,16,["H2898"]],[16,21,["H935"]],[21,23,["H2930","(H853)"]],[23,25,["H776"]],[25,27,["H7760"]],[27,29,["H5159"]],[29,31,["H8441"]]]},{"k":18973,"v":[[0,2,["H3548"]],[2,3,["H559"]],[3,4,["H3808"]],[4,5,["H346"]],[5,8,["H3068"]],[8,12,["H8610"]],[12,14,["H8451"]],[14,15,["H3045"]],[15,17,["H3808"]],[17,19,["H7462"]],[19,21,["H6586"]],[21,26,["H5030"]],[26,27,["H5012"]],[27,29,["H1168"]],[29,31,["H1980"]],[31,32,["H310"]],[32,36,["H3808"]],[36,37,["H3276"]]]},{"k":18974,"v":[[0,1,["H3651"]],[1,4,["H5750"]],[4,5,["H7378"]],[5,6,["H854"]],[6,8,["H5002"]],[8,10,["H3068"]],[10,12,["H854"]],[12,14,["H1121"]],[14,15,["H1121"]],[15,18,["H7378"]]]},{"k":18975,"v":[[0,1,["H3588"]],[1,3,["H5674"]],[3,5,["H339"]],[5,7,["H3794"]],[7,9,["H7200"]],[9,11,["H7971"]],[11,13,["H6938"]],[13,15,["H995"]],[15,16,["H3966"]],[16,18,["H7200"]],[18,21,["H1961"]],[21,22,["H2063"]],[22,24,[]]]},{"k":18976,"v":[[0,3,["H1471"]],[3,4,["H4171"]],[4,6,["H430"]],[6,7,["H1992"]],[7,10,["H3808"]],[10,11,["H430"]],[11,14,["H5971"]],[14,16,["H4171"]],[16,18,["H3519"]],[18,23,["H3808"]],[23,24,["H3276"]]]},{"k":18977,"v":[[0,2,["H8074"]],[2,5,["H8064"]],[5,6,["H5921"]],[6,7,["H2063"]],[7,11,["H8175"]],[11,14,["H3966"]],[14,15,["H2717"]],[15,16,["H5002"]],[16,18,["H3068"]]]},{"k":18978,"v":[[0,1,["H3588"]],[1,3,["H5971"]],[3,5,["H6213"]],[5,6,["H8147"]],[6,7,["H7451"]],[7,10,["H5800"]],[10,13,["H4726"]],[13,15,["H2416"]],[15,16,["H4325"]],[16,20,["H2672"]],[20,21,["H877"]],[21,22,["H7665"]],[22,23,["H877"]],[23,24,["H834"]],[24,26,["H3557"]],[26,27,["H3808"]],[27,28,["H4325"]]]},{"k":18979,"v":[[0,2,["H3478"]],[2,4,["H5650"]],[4,6,["H1931"]],[6,8,["H1004","H3211"]],[8,10,["H4069"]],[10,11,["H1961"]],[11,13,["H957"]]]},{"k":18980,"v":[[0,3,["H3715"]],[3,4,["H7580"]],[4,5,["H5921"]],[5,8,["H5414","H6963"]],[8,11,["H7896"]],[11,13,["H776"]],[13,14,["H8047"]],[14,16,["H5892"]],[16,18,["H3341"]],[18,19,["H4480","H1097"]],[19,20,["H3427"]]]},{"k":18981,"v":[[0,1,["H1571"]],[1,3,["H1121"]],[3,5,["H5297"]],[5,7,["H8471"]],[7,9,["H7462"]],[9,14,["H6936"]]]},{"k":18982,"v":[[0,3,["H3808"]],[3,4,["H6213"]],[4,5,["H2063"]],[5,12,["H5800","(H853)"]],[12,14,["H3068"]],[14,16,["H430"]],[16,17,["H6256"]],[17,19,["H1980"]],[19,23,["H1870"]]]},{"k":18983,"v":[[0,2,["H6258"]],[2,3,["H4100"]],[3,10,["H1870"]],[10,12,["H4714"]],[12,14,["H8354"]],[14,16,["H4325"]],[16,18,["H7883"]],[18,20,["H4100"]],[20,27,["H1870"]],[27,29,["H804"]],[29,31,["H8354"]],[31,33,["H4325"]],[33,36,["H5104"]]]},{"k":18984,"v":[[0,3,["H7451"]],[3,5,["H3256"]],[5,9,["H4878"]],[9,11,["H3198"]],[11,13,["H3045"]],[13,16,["H7200"]],[16,17,["H3588"]],[17,21,["H7451"]],[21,24,["H4751"]],[24,28,["H5800","(H853)"]],[28,30,["H3068"]],[30,32,["H430"]],[32,36,["H6345"]],[36,38,["H3808"]],[38,39,["H413"]],[39,41,["H5002"]],[41,43,["H136"]],[43,44,["H3069"]],[44,46,["H6635"]]]},{"k":18985,"v":[[0,1,["H3588"]],[1,4,["H4480","H5769"]],[4,7,["H7665"]],[7,9,["H5923"]],[9,11,["H5423"]],[11,13,["H4147"]],[13,16,["H559"]],[16,19,["H3808"]],[19,20,["H5674"]],[20,21,["H3588"]],[21,22,["H5921"]],[22,23,["H3605"]],[23,24,["H1364"]],[24,25,["H1389"]],[25,27,["H8478"]],[27,28,["H3605"]],[28,29,["H7488"]],[29,30,["H6086"]],[30,31,["H859"]],[31,32,["H6808"]],[32,35,["H2181"]]]},{"k":18986,"v":[[0,2,["H595"]],[2,4,["H5193"]],[4,8,["H8321"]],[8,9,["H3605"]],[9,11,["H571"]],[11,12,["H2233"]],[12,13,["H349"]],[13,17,["H2015"]],[17,20,["H5494"]],[20,24,["H5237"]],[24,25,["H1612"]],[25,27,[]]]},{"k":18987,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,4,["H3526"]],[4,7,["H5427"]],[7,11,["H7235"]],[11,12,["H1287"]],[12,15,["H5771"]],[15,17,["H3799"]],[17,18,["H6440"]],[18,20,["H5002"]],[20,22,["H136"]],[22,23,["H3069"]]]},{"k":18988,"v":[[0,1,["H349"]],[1,4,["H559"]],[4,7,["H3808"]],[7,8,["H2930"]],[8,11,["H3808"]],[11,12,["H1980"]],[12,13,["H310"]],[13,14,["H1168"]],[14,15,["H7200"]],[15,17,["H1870"]],[17,20,["H1516"]],[20,21,["H3045"]],[21,22,["H4100"]],[22,25,["H6213"]],[25,29,["H7031"]],[29,30,["H1072"]],[30,31,["H8308"]],[31,33,["H1870"]]]},{"k":18989,"v":[[0,3,["H6501"]],[3,4,["H3928"]],[4,7,["H4057"]],[7,10,["H7602"]],[10,12,["H7307"]],[12,15,["H185","H5315"]],[15,18,["H8385"]],[18,19,["H4310"]],[19,23,["H7725"]],[23,24,["H3605"]],[24,27,["H1245"]],[27,30,["H3808"]],[30,31,["H3286"]],[31,35,["H2320"]],[35,38,["H4672"]],[38,39,[]]]},{"k":18990,"v":[[0,1,["H4513"]],[1,3,["H7272"]],[3,6,["H4480","H3182"]],[6,9,["H1627"]],[9,11,["H4480","H6773"]],[11,14,["H559"]],[14,18,["H2976"]],[18,19,["H3808"]],[19,20,["H3588"]],[20,23,["H157"]],[23,24,["H2114"]],[24,26,["H310"]],[26,30,["H1980"]]]},{"k":18991,"v":[[0,3,["H1590"]],[3,5,["H1322"]],[5,6,["H3588"]],[6,9,["H4672"]],[9,10,["H3651"]],[10,13,["H1004"]],[13,15,["H3478"]],[15,16,["H954"]],[16,17,["H1992"]],[17,19,["H4428"]],[19,21,["H8269"]],[21,24,["H3548"]],[24,27,["H5030"]]]},{"k":18992,"v":[[0,1,["H559"]],[1,4,["H6086"]],[4,5,["H859"]],[5,8,["H1"]],[8,12,["H68"]],[12,13,["H859"]],[13,17,["H3205"]],[17,18,["H3588"]],[18,21,["H6437"]],[21,23,["H6203"]],[23,24,["H413"]],[24,27,["H3808"]],[27,29,["H6440"]],[29,33,["H6256"]],[33,36,["H7451"]],[36,39,["H559"]],[39,40,["H6965"]],[40,42,["H3467"]],[42,43,[]]]},{"k":18993,"v":[[0,2,["H346"]],[2,5,["H430"]],[5,6,["H834"]],[6,9,["H6213"]],[9,13,["H6965"]],[13,14,["H518"]],[14,17,["H3467"]],[17,21,["H6256"]],[21,24,["H7451"]],[24,25,["H3588"]],[25,29,["H4557"]],[29,32,["H5892"]],[32,33,["H1961"]],[33,35,["H430"]],[35,37,["H3063"]]]},{"k":18994,"v":[[0,1,["H4100"]],[1,4,["H7378"]],[4,5,["H413"]],[5,8,["H3605"]],[8,10,["H6586"]],[10,13,["H5002"]],[13,15,["H3068"]]]},{"k":18995,"v":[[0,2,["H7723"]],[2,5,["H5221","(H853)"]],[5,7,["H1121"]],[7,9,["H3947"]],[9,10,["H3808"]],[10,11,["H4148"]],[11,14,["H2719"]],[14,16,["H398"]],[16,18,["H5030"]],[18,21,["H7843"]],[21,22,["H738"]]]},{"k":18996,"v":[[0,2,["H1755"]],[2,3,["H7200"]],[3,4,["H859"]],[4,6,["H1697"]],[6,9,["H3068"]],[9,12,["H1961"]],[12,14,["H4057"]],[14,16,["H3478"]],[16,18,["H776"]],[18,20,["H3991"]],[20,21,["H4069"]],[21,22,["H559"]],[22,24,["H5971"]],[24,27,["H7300"]],[27,30,["H935"]],[30,31,["H3808"]],[31,32,["H5750"]],[32,33,["H413"]],[33,34,[]]]},{"k":18997,"v":[[0,3,["H1330"]],[3,4,["H7911"]],[4,6,["H5716"]],[6,9,["H3618"]],[9,11,["H7196"]],[11,14,["H5971"]],[14,16,["H7911"]],[16,18,["H3117"]],[18,19,["H369"]],[19,20,["H4557"]]]},{"k":18998,"v":[[0,1,["H4100"]],[1,2,["H3190"]],[2,5,["H1870"]],[5,7,["H1245"]],[7,8,["H160"]],[8,9,["H3651"]],[9,12,["H1571"]],[12,13,["H3925","(H853)"]],[13,16,["H7451","(H853)"]],[16,18,["H1870"]]]},{"k":18999,"v":[[0,1,["H1571"]],[1,4,["H3671"]],[4,6,["H4672"]],[6,8,["H1818"]],[8,11,["H5315"]],[11,14,["H34"]],[14,15,["H5355"]],[15,18,["H3808"]],[18,19,["H4672"]],[19,23,["H4290"]],[23,24,["H3588"]],[24,25,["H5921"]],[25,26,["H3605"]],[26,27,["H428"]]]},{"k":19000,"v":[[0,3,["H559"]],[3,4,["H3588"]],[4,7,["H5352"]],[7,8,["H389"]],[8,10,["H639"]],[10,12,["H7725"]],[12,13,["H4480"]],[13,15,["H2009"]],[15,19,["H8199"]],[19,21,["H5921"]],[21,23,["H559"]],[23,26,["H3808"]],[26,27,["H2398"]]]},{"k":19001,"v":[[0,1,["H4100"]],[1,2,["H235"]],[2,6,["H3966"]],[6,8,["H8138","(H853)"]],[8,10,["H1870"]],[10,12,["H1571"]],[12,15,["H954"]],[15,17,["H4480","H4714"]],[17,18,["H834"]],[18,21,["H954"]],[21,23,["H4480","H804"]]]},{"k":19002,"v":[[0,1,["H1571"]],[1,5,["H3318"]],[5,6,["H4480","H854"]],[6,7,["H2088"]],[7,10,["H3027"]],[10,11,["H5921"]],[11,13,["H7218"]],[13,14,["H3588"]],[14,16,["H3068"]],[16,18,["H3988"]],[18,20,["H4009"]],[20,24,["H3808"]],[24,25,["H6743"]],[25,27,[]]]},{"k":19003,"v":[[0,2,["H559"]],[2,3,["H2005"]],[3,5,["H376"]],[5,7,["H7971","(H853)"]],[7,9,["H802"]],[9,12,["H1980"]],[12,13,["H4480","H854"]],[13,16,["H1961"]],[16,17,["H312"]],[17,18,["H376"]],[18,21,["H7725"]],[21,22,["H413"]],[22,24,["H5750"]],[24,26,["H3808"]],[26,27,["H1931"]],[27,28,["H776"]],[28,31,["H2610","H2610"]],[31,33,["H859"]],[33,37,["H2181"]],[37,39,["H7227"]],[39,40,["H7453"]],[40,42,["H7725"]],[42,44,["H413"]],[44,46,["H5002"]],[46,48,["H3068"]]]},{"k":19004,"v":[[0,2,["H5375"]],[2,4,["H5869"]],[4,5,["H5921"]],[5,8,["H8205"]],[8,10,["H7200"]],[10,11,["H375"]],[11,14,["H3808"]],[14,16,["H7901"]],[16,18,["H5921"]],[18,20,["H1870"]],[20,23,["H3427"]],[23,28,["H6163"]],[28,31,["H4057"]],[31,35,["H2610"]],[35,37,["H776"]],[37,40,["H2184"]],[40,44,["H7451"]]]},{"k":19005,"v":[[0,3,["H7241"]],[3,6,["H4513"]],[6,10,["H1961"]],[10,11,["H3808"]],[11,13,["H4456"]],[13,18,["H802","H2181"]],[18,19,["H4696"]],[19,21,["H3985"]],[21,24,["H3637"]]]},{"k":19006,"v":[[0,3,["H3808"]],[3,6,["H4480","H6258"]],[6,7,["H7121"]],[7,11,["H1"]],[11,12,["H859"]],[12,15,["H441"]],[15,18,["H5271"]]]},{"k":19007,"v":[[0,3,["H5201"]],[3,7,["H5769"]],[7,10,["H8104"]],[10,14,["H5331"]],[14,15,["H2009"]],[15,18,["H1696"]],[18,20,["H6213"]],[20,22,["H7451"]],[22,25,["H3201"]]]},{"k":19008,"v":[[0,2,["H3068"]],[2,3,["H559"]],[3,5,["H413"]],[5,9,["H3117"]],[9,11,["H2977"]],[11,13,["H4428"]],[13,16,["H7200"]],[16,18,["H834"]],[18,19,["H4878"]],[19,20,["H3478"]],[20,22,["H6213"]],[22,23,["H1931"]],[23,26,["H1980"]],[26,27,["H5921"]],[27,28,["H3605"]],[28,29,["H1364"]],[29,30,["H2022"]],[30,32,["H8478"]],[32,33,["H3605"]],[33,34,["H7488"]],[34,35,["H6086"]],[35,37,["H8033"]],[37,41,["H2181"]]]},{"k":19009,"v":[[0,3,["H559"]],[3,4,["H310"]],[4,7,["H6213","(H853)"]],[7,8,["H3605"]],[8,9,["H428"]],[9,11,["H7725"]],[11,13,["H413"]],[13,17,["H7725"]],[17,18,["H3808"]],[18,21,["H901"]],[21,22,["H269"]],[22,23,["H3063"]],[23,24,["H7200"]],[24,25,[]]]},{"k":19010,"v":[[0,3,["H7200"]],[3,4,["H3588"]],[4,5,["H5921"]],[5,6,["H3605"]],[6,8,["H182"]],[8,9,["H834"]],[9,10,["H4878"]],[10,11,["H3478"]],[11,13,["H5003"]],[13,18,["H7971"]],[18,20,["H5414","H413"]],[20,21,["(H853)"]],[21,23,["H5612"]],[23,25,["H3748"]],[25,28,["H898"]],[28,29,["H269"]],[29,30,["H3063"]],[30,31,["H3372"]],[31,32,["H3808"]],[32,34,["H1980"]],[34,38,["H2181"]],[38,39,["H1571"]]]},{"k":19011,"v":[[0,5,["H1961"]],[5,8,["H4480","H6963"]],[8,11,["H2184"]],[11,14,["H2610","(H853)"]],[14,16,["H776"]],[16,19,["H5003"]],[19,20,["H854"]],[20,21,["H68"]],[21,23,["H854"]],[23,24,["H6086"]]]},{"k":19012,"v":[[0,2,["H1571"]],[2,4,["H3605"]],[4,5,["H2063"]],[5,7,["H901"]],[7,8,["H269"]],[8,9,["H3063"]],[9,11,["H3808"]],[11,12,["H7725"]],[12,13,["H413"]],[13,17,["H3605"]],[17,18,["H3820"]],[18,19,["H3588","H518"]],[19,20,["H8267"]],[20,21,["H5002"]],[21,23,["H3068"]]]},{"k":19013,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,8,["H4878"]],[8,9,["H3478"]],[9,11,["H6663"]],[11,12,["H5315"]],[12,15,["H4480","H898"]],[15,16,["H3063"]]]},{"k":19014,"v":[[0,1,["H1980"]],[1,3,["H7121","(H853)"]],[3,4,["H428"]],[4,5,["H1697"]],[5,8,["H6828"]],[8,10,["H559"]],[10,11,["H7725"]],[11,13,["H4878"]],[13,14,["H3478"]],[14,15,["H5002"]],[15,17,["H3068"]],[17,21,["H3808"]],[21,24,["H6440"]],[24,26,["H5307"]],[26,29,["H3588"]],[29,30,["H589"]],[30,32,["H2623"]],[32,33,["H5002"]],[33,35,["H3068"]],[35,39,["H3808"]],[39,40,["H5201"]],[40,43,["H5769"]]]},{"k":19015,"v":[[0,1,["H389"]],[1,2,["H3045"]],[2,4,["H5771"]],[4,5,["H3588"]],[5,8,["H6586"]],[8,11,["H3068"]],[11,13,["H430"]],[13,16,["H6340","(H853)"]],[16,18,["H1870"]],[18,21,["H2114"]],[21,22,["H8478"]],[22,23,["H3605"]],[23,24,["H7488"]],[24,25,["H6086"]],[25,29,["H3808"]],[29,30,["H8085"]],[30,32,["H6963"]],[32,33,["H5002"]],[33,35,["H3068"]]]},{"k":19016,"v":[[0,1,["H7725"]],[1,3,["H7726"]],[3,4,["H1121"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,8,["H3588"]],[8,9,["H595"]],[9,11,["H1166"]],[11,17,["H3947"]],[17,19,["H259"]],[19,22,["H4480","H5892"]],[22,24,["H8147"]],[24,27,["H4480","H4940"]],[27,31,["H935"]],[31,34,["H6726"]]]},{"k":19017,"v":[[0,4,["H5414"]],[4,6,["H7462"]],[6,10,["H3820"]],[10,13,["H7462"]],[13,16,["H1844"]],[16,18,["H7919"]]]},{"k":19018,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,10,["H7235"]],[10,12,["H6509"]],[12,15,["H776"]],[15,17,["H1992"]],[17,18,["H3117"]],[18,19,["H5002"]],[19,21,["H3068"]],[21,24,["H559"]],[24,25,["H3808"]],[25,26,["H5750"]],[26,28,["H727"]],[28,31,["H1285"]],[31,34,["H3068"]],[34,35,["H3808"]],[35,38,["H5927"]],[38,39,["H5921"]],[39,40,["H3820"]],[40,41,["H3808"]],[41,44,["H2142"]],[44,46,["H3808"]],[46,49,["H6485"]],[49,51,["H3808"]],[51,55,["H6213"]],[55,57,["H5750"]]]},{"k":19019,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,6,["H7121"]],[6,7,["H3389"]],[7,9,["H3678"]],[9,12,["H3068"]],[12,14,["H3605"]],[14,16,["H1471"]],[16,19,["H6960"]],[19,20,["H413"]],[20,24,["H8034"]],[24,27,["H3068"]],[27,29,["H3389"]],[29,30,["H3808"]],[30,33,["H1980"]],[33,35,["H5750"]],[35,36,["H310"]],[36,38,["H8307"]],[38,41,["H7451"]],[41,42,["H3820"]]]},{"k":19020,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,5,["H1004"]],[5,7,["H3063"]],[7,9,["H1980"]],[9,10,["H5921"]],[10,12,["H1004"]],[12,14,["H3478"]],[14,18,["H935"]],[18,19,["H3162"]],[19,23,["H4480","H776"]],[23,26,["H6828"]],[26,27,["H5921"]],[27,29,["H776"]],[29,30,["H834"]],[30,36,["H5157"]],[36,37,["(H853)"]],[37,39,["H1"]]]},{"k":19021,"v":[[0,2,["H595"]],[2,3,["H559"]],[3,4,["H349"]],[4,7,["H7896"]],[7,11,["H1121"]],[11,13,["H5414"]],[13,16,["H2532"]],[16,17,["H776"]],[17,19,["H6643"]],[19,20,["H5159"]],[20,23,["H6635"]],[23,25,["H1471"]],[25,28,["H559"]],[28,31,["H7121"]],[31,34,["H1"]],[34,37,["H3808"]],[37,39,["H7725"]],[39,40,["H4480","H310"]],[40,41,[]]]},{"k":19022,"v":[[0,1,["H403"]],[1,4,["H802"]],[4,6,["H898"]],[6,9,["H4480","H1167"]],[9,10,["H3651"]],[10,14,["H898"]],[14,18,["H1004"]],[18,20,["H3478"]],[20,21,["H5002"]],[21,23,["H3068"]]]},{"k":19023,"v":[[0,2,["H6963"]],[2,4,["H8085"]],[4,5,["H5921"]],[5,8,["H8205"]],[8,9,["H1065"]],[9,11,["H8469"]],[11,14,["H1121"]],[14,16,["H3478"]],[16,17,["H3588"]],[17,20,["H5753","(H853)"]],[20,22,["H1870"]],[22,26,["H7911","(H853)"]],[26,28,["H3068"]],[28,30,["H430"]]]},{"k":19024,"v":[[0,1,["H7725"]],[1,3,["H7726"]],[3,4,["H1121"]],[4,8,["H7495"]],[8,10,["H4878"]],[10,11,["H2009"]],[11,13,["H857"]],[13,16,["H3588"]],[16,17,["H859"]],[17,20,["H3068"]],[20,22,["H430"]]]},{"k":19025,"v":[[0,1,["H403"]],[1,3,["H8267"]],[3,10,["H4480","H1389"]],[10,14,["H1995"]],[14,16,["H2022"]],[16,17,["H403"]],[17,20,["H3068"]],[20,22,["H430"]],[22,25,["H8668"]],[25,27,["H3478"]]]},{"k":19026,"v":[[0,2,["H1322"]],[2,4,["H398","(H853)"]],[4,6,["H3018"]],[6,9,["H1"]],[9,12,["H4480","H5271","(H853)"]],[12,14,["H6629"]],[14,17,["H1241","(H853)"]],[17,19,["H1121"]],[19,22,["H1323"]]]},{"k":19027,"v":[[0,3,["H7901"]],[3,6,["H1322"]],[6,9,["H3639"]],[9,10,["H3680"]],[10,12,["H3588"]],[12,15,["H2398"]],[15,18,["H3068"]],[18,20,["H430"]],[20,21,["H587"]],[21,24,["H1"]],[24,27,["H4480","H5271"]],[27,29,["H5704"]],[29,30,["H2088"]],[30,31,["H3117"]],[31,34,["H3808"]],[34,35,["H8085"]],[35,37,["H6963"]],[37,40,["H3068"]],[40,42,["H430"]]]},{"k":19028,"v":[[0,1,["H518"]],[1,4,["H7725"]],[4,6,["H3478"]],[6,7,["H5002"]],[7,9,["H3068"]],[9,10,["H7725"]],[10,11,["H413"]],[11,14,["H518"]],[14,18,["H5493"]],[18,20,["H8251"]],[20,24,["H4480","H6440"]],[24,28,["H3808"]],[28,29,["H5110"]]]},{"k":19029,"v":[[0,4,["H7650"]],[4,6,["H3068"]],[6,7,["H2416"]],[7,9,["H571"]],[9,11,["H4941"]],[11,14,["H6666"]],[14,17,["H1471"]],[17,20,["H1288"]],[20,28,["H1984"]]]},{"k":19030,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,8,["H376"]],[8,10,["H3063"]],[10,12,["H3389"]],[12,14,["H5214"]],[14,17,["H5215"]],[17,19,["H2232"]],[19,20,["H408"]],[20,21,["H413"]],[21,22,["H6975"]]]},{"k":19031,"v":[[0,2,["H4135"]],[2,5,["H3068"]],[5,8,["H5493"]],[8,10,["H6190"]],[10,13,["H3824"]],[13,15,["H376"]],[15,17,["H3063"]],[17,19,["H3427"]],[19,21,["H3389"]],[21,22,["H6435"]],[22,24,["H2534"]],[24,26,["H3318"]],[26,28,["H784"]],[28,30,["H1197"]],[30,32,["H369"]],[32,34,["H3518"]],[34,36,["H4480","H6440"]],[36,39,["H7455"]],[39,42,["H4611"]]]},{"k":19032,"v":[[0,1,["H5046"]],[1,4,["H3063"]],[4,6,["H8085"]],[6,8,["H3389"]],[8,10,["H559"]],[10,11,["H8628"]],[11,14,["H7782"]],[14,17,["H776"]],[17,18,["H7121"]],[18,20,["H4390"]],[20,22,["H559"]],[22,24,["H622"]],[24,28,["H935"]],[28,29,["H413"]],[29,31,["H4013"]],[31,32,["H5892"]]]},{"k":19033,"v":[[0,2,["H5375"]],[2,4,["H5251"]],[4,6,["H6726"]],[6,7,["H5756"]],[7,8,["H5975"]],[8,9,["H408"]],[9,10,["H3588"]],[10,11,["H595"]],[11,13,["H935"]],[13,14,["H7451"]],[14,17,["H4480","H6828"]],[17,20,["H1419"]],[20,21,["H7667"]]]},{"k":19034,"v":[[0,2,["H738"]],[2,5,["H5927"]],[5,8,["H4480","H5441"]],[8,11,["H7843"]],[11,14,["H1471"]],[14,18,["H5265"]],[18,22,["H3318"]],[22,25,["H4480","H4725"]],[25,27,["H7760"]],[27,29,["H776"]],[29,30,["H8047"]],[30,33,["H5892"]],[33,37,["H5327"]],[37,38,["H4480","H369"]],[38,40,["H3427"]]]},{"k":19035,"v":[[0,1,["H5921"]],[1,2,["H2063"]],[2,3,["H2296"]],[3,6,["H8242"]],[6,7,["H5594"]],[7,9,["H3213"]],[9,10,["H3588"]],[10,12,["H2740"]],[12,13,["H639"]],[13,16,["H3068"]],[16,18,["H3808"]],[18,20,["H7725"]],[20,21,["H4480"]],[21,22,[]]]},{"k":19036,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,10,["H5002"]],[10,12,["H3068"]],[12,15,["H3820"]],[15,18,["H4428"]],[18,20,["H6"]],[20,23,["H3820"]],[23,26,["H8269"]],[26,29,["H3548"]],[29,32,["H8074"]],[32,35,["H5030"]],[35,37,["H8539"]]]},{"k":19037,"v":[[0,2,["H559"]],[2,4,["H162"]],[4,5,["H136"]],[5,6,["H3069"]],[6,7,["H403"]],[7,11,["H5377","H5377"]],[11,12,["H2088"]],[12,13,["H5971"]],[13,15,["H3389"]],[15,16,["H559"]],[16,19,["H1961"]],[19,20,["H7965"]],[20,23,["H2719"]],[23,24,["H5060"]],[24,25,["H5704"]],[25,27,["H5315"]]]},{"k":19038,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,7,["H559"]],[7,9,["H2088"]],[9,10,["H5971"]],[10,13,["H3389"]],[13,15,["H6703"]],[15,16,["H7307"]],[16,20,["H8205"]],[20,23,["H4057"]],[23,26,["H1323"]],[26,29,["H5971"]],[29,30,["H3808"]],[30,32,["H2219"]],[32,33,["H3808"]],[33,35,["H1305"]]]},{"k":19039,"v":[[0,3,["H4392"]],[3,4,["H7307"]],[4,6,["H4480","H428"]],[6,9,["H935"]],[9,12,["H6258"]],[12,13,["H1571"]],[13,15,["H589"]],[15,16,["H1696"]],[16,17,["H4941"]],[17,19,[]]]},{"k":19040,"v":[[0,1,["H2009"]],[1,5,["H5927"]],[5,7,["H6051"]],[7,10,["H4818"]],[10,15,["H5492"]],[15,17,["H5483"]],[17,19,["H7043"]],[19,21,["H4480","H5404"]],[21,22,["H188"]],[22,25,["H3588"]],[25,28,["H7703"]]]},{"k":19041,"v":[[0,2,["H3389"]],[2,3,["H3526"]],[3,5,["H3820"]],[5,7,["H4480","H7451"]],[7,8,["H4616"]],[8,12,["H3467"]],[12,14,["H5704","H4970"]],[14,17,["H205"]],[17,18,["H4284"]],[18,19,["H3885"]],[19,20,["H7130"]],[20,21,[]]]},{"k":19042,"v":[[0,1,["H3588"]],[1,3,["H6963"]],[3,4,["H5046"]],[4,6,["H4480","H1835"]],[6,8,["H8085"]],[8,9,["H205"]],[9,11,["H4480","H2022"]],[11,12,["H669"]]]},{"k":19043,"v":[[0,3,["H2142"]],[3,6,["H1471"]],[6,7,["H2009"]],[7,8,["H8085"]],[8,9,["H5921"]],[9,10,["H3389"]],[10,12,["H5341"]],[12,13,["H935"]],[13,16,["H4801"]],[16,17,["H4480","H776"]],[17,20,["H5414"]],[20,22,["H6963"]],[22,23,["H5921"]],[23,25,["H5892"]],[25,27,["H3063"]]]},{"k":19044,"v":[[0,2,["H8104"]],[2,5,["H7704"]],[5,6,["H1961"]],[6,8,["H5921"]],[8,11,["H4480","H5439"]],[11,12,["H3588"]],[12,16,["H4784"]],[16,19,["H5002"]],[19,21,["H3068"]]]},{"k":19045,"v":[[0,2,["H1870"]],[2,5,["H4611"]],[5,7,["H6213"]],[7,8,["H428"]],[8,12,["H2063"]],[12,15,["H7451"]],[15,16,["H3588"]],[16,19,["H4751"]],[19,20,["H3588"]],[20,22,["H5060"]],[22,23,["H5704"]],[23,25,["H3820"]]]},{"k":19046,"v":[[0,2,["H4578"]],[2,4,["H4578"]],[4,7,["H3176"]],[7,10,["H7023"]],[10,11,["H3820"]],[11,13,["H3820"]],[13,16,["H1993"]],[16,20,["H3808"]],[20,23,["H2790"]],[23,24,["H3588"]],[24,27,["H8085"]],[27,30,["H5315"]],[30,32,["H6963"]],[32,35,["H7782"]],[35,37,["H8643"]],[37,39,["H4421"]]]},{"k":19047,"v":[[0,1,["H7667"]],[1,2,["H5921"]],[2,3,["H7667"]],[3,5,["H7121"]],[5,6,["H3588"]],[6,8,["H3605"]],[8,9,["H776"]],[9,11,["H7703"]],[11,12,["H6597"]],[12,15,["H168"]],[15,16,["H7703"]],[16,19,["H3407"]],[19,22,["H7281"]]]},{"k":19048,"v":[[0,2,["H5704","H4970"]],[2,5,["H7200"]],[5,7,["H5251"]],[7,9,["H8085"]],[9,11,["H6963"]],[11,14,["H7782"]]]},{"k":19049,"v":[[0,1,["H3588"]],[1,3,["H5971"]],[3,5,["H191"]],[5,8,["H3808"]],[8,9,["H3045"]],[9,11,["H1992"]],[11,13,["H5530"]],[13,14,["H1121"]],[14,16,["H1992"]],[16,18,["H3808"]],[18,19,["H995"]],[19,20,["H1992"]],[20,22,["H2450"]],[22,25,["H7489"]],[25,29,["H3190"]],[29,32,["H3808"]],[32,33,["H3045"]]]},{"k":19050,"v":[[0,2,["H7200","(H853)"]],[2,4,["H776"]],[4,6,["H2009"]],[6,10,["H8414"]],[10,12,["H922"]],[12,15,["H8064"]],[15,19,["H369"]],[19,20,["H216"]]]},{"k":19051,"v":[[0,2,["H7200"]],[2,4,["H2022"]],[4,6,["H2009"]],[6,8,["H7493"]],[8,10,["H3605"]],[10,12,["H1389"]],[12,14,["H7043"]]]},{"k":19052,"v":[[0,2,["H7200"]],[2,4,["H2009"]],[4,7,["H369"]],[7,8,["H120"]],[8,10,["H3605"]],[10,12,["H5775"]],[12,15,["H8064"]],[15,17,["H5074"]]]},{"k":19053,"v":[[0,2,["H7200"]],[2,4,["H2009"]],[4,7,["H3759"]],[7,10,["H4057"]],[10,12,["H3605"]],[12,14,["H5892"]],[14,18,["H5422"]],[18,21,["H4480","H6440"]],[21,24,["H3068"]],[24,26,["H4480","H6440"]],[26,28,["H2740"]],[28,29,["H639"]]]},{"k":19054,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,5,["H3068"]],[5,6,["H559"]],[6,8,["H3605"]],[8,9,["H776"]],[9,11,["H1961"]],[11,12,["H8077"]],[12,16,["H3808"]],[16,17,["H6213"]],[17,20,["H3617"]]]},{"k":19055,"v":[[0,1,["H5921"]],[1,2,["H2063"]],[2,5,["H776"]],[5,6,["H56"]],[6,9,["H8064"]],[9,10,["H4480","H4605"]],[10,12,["H6937"]],[12,13,["H5921","H3588"]],[13,16,["H1696"]],[16,20,["H2161"]],[20,24,["H3808"]],[24,25,["H5162"]],[25,26,["H3808"]],[26,30,["H7725"]],[30,31,["H4480"]],[31,32,[]]]},{"k":19056,"v":[[0,2,["H3605"]],[2,3,["H5892"]],[3,5,["H1272"]],[5,8,["H4480","H6963"]],[8,11,["H6571"]],[11,13,["H7411","H7198"]],[13,16,["H935"]],[16,18,["H5645"]],[18,21,["H5927"]],[21,24,["H3710"]],[24,25,["H3605"]],[25,26,["H5892"]],[26,29,["H5800"]],[29,31,["H369"]],[31,33,["H376"]],[33,34,["H3427"]],[34,35,["H2004"]]]},{"k":19057,"v":[[0,3,["H859"]],[3,5,["H7703"]],[5,6,["H4100"]],[6,9,["H6213"]],[9,10,["H3588"]],[10,12,["H3847"]],[12,15,["H8144"]],[15,16,["H3588"]],[16,18,["H5710"]],[18,21,["H5716"]],[21,23,["H2091"]],[23,24,["H3588"]],[24,26,["H7167"]],[26,28,["H5869"]],[28,30,["H6320"]],[30,32,["H7723"]],[32,37,["H3302"]],[37,39,["H5689"]],[39,41,["H3988"]],[41,45,["H1245"]],[45,47,["H5315"]]]},{"k":19058,"v":[[0,1,["H3588"]],[1,4,["H8085"]],[4,6,["H6963"]],[6,12,["H2470"]],[12,15,["H6869"]],[15,24,["H1069"]],[24,26,["H6963"]],[26,29,["H1323"]],[29,31,["H6726"]],[31,34,["H3306"]],[34,36,["H6566"]],[36,38,["H3709"]],[38,40,["H188"]],[40,43,["H4994"]],[43,44,["H3588"]],[44,46,["H5315"]],[46,48,["H5888"]],[48,51,["H2026"]]]},{"k":19059,"v":[[0,5,["H7751"]],[5,8,["H2351"]],[8,10,["H3389"]],[10,12,["H7200"]],[12,13,["H4994"]],[13,15,["H3045"]],[15,17,["H1245"]],[17,21,["H7339"]],[21,23,["H518"]],[23,26,["H4672"]],[26,28,["H376"]],[28,29,["H518"]],[29,31,["H3426"]],[31,34,["H6213"]],[34,35,["H4941"]],[35,37,["H1245"]],[37,39,["H530"]],[39,43,["H5545"]],[43,44,[]]]},{"k":19060,"v":[[0,2,["H518"]],[2,4,["H559"]],[4,6,["H3068"]],[6,7,["H2416"]],[7,8,["H3651"]],[8,10,["H7650"]],[10,11,["H8267"]]]},{"k":19061,"v":[[0,2,["H3068"]],[2,4,["H3808"]],[4,6,["H5869"]],[6,9,["H530"]],[9,12,["H5221"]],[12,17,["H3808"]],[17,18,["H2342"]],[18,21,["H3615"]],[21,26,["H3985"]],[26,28,["H3947"]],[28,29,["H4148"]],[29,34,["H6440"]],[34,35,["H2388"]],[35,38,["H4480","H5553"]],[38,41,["H3985"]],[41,43,["H7725"]]]},{"k":19062,"v":[[0,2,["H589"]],[2,3,["H559"]],[3,4,["H389"]],[4,5,["H1992"]],[5,7,["H1800"]],[7,10,["H2973"]],[10,11,["H3588"]],[11,13,["H3045"]],[13,14,["H3808"]],[14,16,["H1870"]],[16,19,["H3068"]],[19,22,["H4941"]],[22,25,["H430"]]]},{"k":19063,"v":[[0,3,["H1980"]],[3,5,["H413"]],[5,8,["H1419"]],[8,12,["H1696"]],[12,14,["H3588"]],[14,15,["H1992"]],[15,17,["H3045"]],[17,19,["H1870"]],[19,22,["H3068"]],[22,25,["H4941"]],[25,28,["H430"]],[28,29,["H389"]],[29,30,["H1992"]],[30,32,["H3162"]],[32,33,["H7665"]],[33,35,["H5923"]],[35,37,["H5423"]],[37,39,["H4147"]]]},{"k":19064,"v":[[0,1,["H5921","H3651"]],[1,3,["H738"]],[3,7,["H4480","H3293"]],[7,9,["H5221"]],[9,13,["H2061"]],[13,16,["H6160"]],[16,18,["H7703"]],[18,21,["H5246"]],[21,23,["H8245"]],[23,24,["H5921"]],[24,26,["H5892"]],[26,28,["H3605"]],[28,31,["H3318"]],[31,32,["H4480","H2007"]],[32,37,["H2963"]],[37,38,["H3588"]],[38,40,["H6588"]],[40,42,["H7231"]],[42,45,["H4878"]],[45,47,["H6105"]]]},{"k":19065,"v":[[0,1,["H335"]],[1,4,["H5545"]],[4,7,["H2063"]],[7,9,["H1121"]],[9,11,["H5800"]],[11,14,["H7650"]],[14,19,["H3808"]],[19,20,["H430"]],[20,28,["H7646","(H853)"]],[28,32,["H5003"]],[32,35,["H1413"]],[35,40,["H2181"]],[40,41,["H1004"]]]},{"k":19066,"v":[[0,2,["H1961"]],[2,4,["H2109"]],[4,5,["H5483"]],[5,8,["H7904"]],[8,10,["H376"]],[10,11,["H6670"]],[11,12,["H413"]],[12,14,["H7453"]],[14,15,["H802"]]]},{"k":19067,"v":[[0,3,["H3808"]],[3,4,["H6485"]],[4,5,["H5921"]],[5,6,["H428"]],[6,8,["H5002"]],[8,10,["H3068"]],[10,11,["H518"]],[11,13,["H3808"]],[13,15,["H5315"]],[15,17,["H5358"]],[17,19,["H834"]],[19,21,["H1471"]],[21,23,["H2088"]]]},{"k":19068,"v":[[0,3,["H5927"]],[3,6,["H8284"]],[6,8,["H7843"]],[8,10,["H6213"]],[10,11,["H408"]],[11,14,["H3617"]],[14,16,["H5493"]],[16,18,["H5189"]],[18,19,["H3588"]],[19,20,["H1992"]],[20,22,["H3808"]],[22,24,["H3068"]]]},{"k":19069,"v":[[0,1,["H3588"]],[1,3,["H1004"]],[3,5,["H3478"]],[5,8,["H1004"]],[8,10,["H3063"]],[10,14,["H898","H898"]],[14,17,["H5002"]],[17,19,["H3068"]]]},{"k":19070,"v":[[0,3,["H3584"]],[3,5,["H3068"]],[5,7,["H559"]],[7,10,["H3808"]],[10,11,["H1931"]],[11,12,["H3808"]],[12,14,["H7451"]],[14,15,["H935"]],[15,16,["H5921"]],[16,18,["H3808"]],[18,21,["H7200"]],[21,22,["H2719"]],[22,24,["H7458"]]]},{"k":19071,"v":[[0,3,["H5030"]],[3,5,["H1961"]],[5,6,["H7307"]],[6,9,["H1699"]],[9,11,["H369"]],[11,14,["H3541"]],[14,18,["H6213"]],[18,20,[]]]},{"k":19072,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H430"]],[6,8,["H6635"]],[8,9,["H3282"]],[9,11,["H1696","(H853)"]],[11,12,["H2088"]],[12,13,["H1697"]],[13,14,["H2009"]],[14,17,["H5414"]],[17,19,["H1697"]],[19,22,["H6310"]],[22,23,["H784"]],[23,25,["H2088"]],[25,26,["H5971"]],[26,27,["H6086"]],[27,31,["H398"]],[31,32,[]]]},{"k":19073,"v":[[0,1,["H2009"]],[1,4,["H935"]],[4,6,["H1471"]],[6,7,["H5921"]],[7,10,["H4480","H4801"]],[10,12,["H1004"]],[12,14,["H3478"]],[14,15,["H5002"]],[15,17,["H3068"]],[17,18,["H1931"]],[18,21,["H386"]],[21,22,["H1471"]],[22,23,["H1931"]],[23,26,["H4480","H5769"]],[26,27,["H1471"]],[27,29,["H1471"]],[29,31,["H3956"]],[31,33,["H3045"]],[33,34,["H3808"]],[34,35,["H3808"]],[35,36,["H8085"]],[36,37,["H4100"]],[37,39,["H1696"]]]},{"k":19074,"v":[[0,2,["H827"]],[2,6,["H6605"]],[6,7,["H6913"]],[7,10,["H3605"]],[10,12,["H1368"]]]},{"k":19075,"v":[[0,5,["H398"]],[5,7,["H7105"]],[7,10,["H3899"]],[10,13,["H1121"]],[13,16,["H1323"]],[16,18,["H398"]],[18,22,["H398"]],[22,24,["H6629"]],[24,27,["H1241"]],[27,31,["H398"]],[31,33,["H1612"]],[33,37,["H8384"]],[37,40,["H7567"]],[40,42,["H4013"]],[42,43,["H5892"]],[43,44,["H834"]],[44,45,["H859"]],[45,46,["H982"]],[46,49,["H2719"]]]},{"k":19076,"v":[[0,1,["H1571"]],[1,3,["H1992"]],[3,4,["H3117"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,10,["H3808"]],[10,11,["H6213"]],[11,14,["H3617"]],[14,15,["H854"]],[15,16,[]]]},{"k":19077,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,10,["H559"]],[10,11,["H8478","H4100"]],[11,12,["H6213"]],[12,14,["H3068"]],[14,16,["H430","(H853)"]],[16,17,["H3605"]],[17,18,["H428"]],[18,25,["H559","H413"]],[25,27,["H834"]],[27,31,["H5800"]],[31,34,["H5647"]],[34,35,["H5236"]],[35,36,["H430"]],[36,39,["H776"]],[39,40,["H3651"]],[40,43,["H5647"]],[43,44,["H2114"]],[44,47,["H776"]],[47,50,["H3808"]],[50,51,[]]]},{"k":19078,"v":[[0,1,["H5046"]],[1,2,["H2063"]],[2,5,["H1004"]],[5,7,["H3290"]],[7,9,["H8085"]],[9,12,["H3063"]],[12,13,["H559"]]]},{"k":19079,"v":[[0,1,["H8085"]],[1,2,["H4994"]],[2,3,["H2063"]],[3,5,["H5530"]],[5,6,["H5971"]],[6,8,["H369"]],[8,9,["H3820"]],[9,12,["H5869"]],[12,14,["H7200"]],[14,15,["H3808"]],[15,18,["H241"]],[18,20,["H8085"]],[20,21,["H3808"]]]},{"k":19080,"v":[[0,1,["H3372"]],[1,3,["H3808"]],[3,5,["H5002"]],[5,7,["H3068"]],[7,10,["H3808"]],[10,11,["H2342"]],[11,14,["H4480","H6440"]],[14,15,["H834"]],[15,17,["H7760"]],[17,19,["H2344"]],[19,22,["H1366"]],[22,25,["H3220"]],[25,28,["H5769"]],[28,29,["H2706"]],[29,32,["H3808"]],[32,33,["H5674"]],[33,38,["H1530"]],[38,41,["H1607"]],[41,45,["H3808"]],[45,46,["H3201"]],[46,49,["H1993"]],[49,53,["H3808"]],[53,55,["H5674"]],[55,56,[]]]},{"k":19081,"v":[[0,2,["H2088"]],[2,3,["H5971"]],[3,4,["H1961"]],[4,6,["H5637"]],[6,9,["H4784"]],[9,10,["H3820"]],[10,13,["H5493"]],[13,15,["H1980"]]]},{"k":19082,"v":[[0,1,["H3808"]],[1,2,["H559"]],[2,6,["H3824"]],[6,9,["H4994"]],[9,10,["H3372","(H853)"]],[10,12,["H3068"]],[12,14,["H430"]],[14,16,["H5414"]],[16,17,["H1653"]],[17,20,["H3138"]],[20,23,["H4456"]],[23,26,["H6256"]],[26,28,["H8104"]],[28,32,["H2708"]],[32,33,["H7620"]],[33,36,["H7105"]]]},{"k":19083,"v":[[0,2,["H5771"]],[2,5,["H5186"]],[5,6,["H428"]],[6,10,["H2403"]],[10,12,["H4513"]],[12,13,["H2896"]],[13,15,["H4480"]],[15,16,[]]]},{"k":19084,"v":[[0,1,["H3588"]],[1,4,["H5971"]],[4,6,["H4672"]],[6,7,["H7563"]],[7,11,["H7789"]],[11,15,["H7918"]],[15,16,["H3353"]],[16,18,["H5324"]],[18,20,["H4889"]],[20,22,["H3920"]],[22,23,["H376"]]]},{"k":19085,"v":[[0,3,["H3619"]],[3,5,["H4392"]],[5,7,["H5775"]],[7,8,["H3651"]],[8,11,["H1004"]],[11,12,["H4392"]],[12,14,["H4820"]],[14,15,["H5921","H3651"]],[15,19,["H1431"]],[19,22,["H6238"]]]},{"k":19086,"v":[[0,4,["H8080"]],[4,6,["H6245"]],[6,7,["H1571"]],[7,9,["H5674"]],[9,11,["H1697"]],[11,14,["H7451"]],[14,16,["H1777"]],[16,17,["H3808"]],[17,19,["H1779"]],[19,21,["H1779"]],[21,24,["H3490"]],[24,27,["H6743"]],[27,30,["H4941"]],[30,33,["H34"]],[33,36,["H3808"]],[36,37,["H8199"]]]},{"k":19087,"v":[[0,3,["H3808"]],[3,4,["H6485"]],[4,5,["H5921"]],[5,6,["H428"]],[6,8,["H5002"]],[8,10,["H3068"]],[10,12,["H3808"]],[12,14,["H5315"]],[14,16,["H5358"]],[16,18,["H834"]],[18,20,["H1471"]],[20,22,["H2088"]]]},{"k":19088,"v":[[0,2,["H8047"]],[2,5,["H8186"]],[5,7,["H1961"]],[7,10,["H776"]]]},{"k":19089,"v":[[0,2,["H5030"]],[2,3,["H5012"]],[3,4,["H8267"]],[4,7,["H3548"]],[7,9,["H7287"]],[9,10,["H5921"]],[10,12,["H3027"]],[12,15,["H5971"]],[15,16,["H157"]],[16,20,["H3651"]],[20,22,["H4100"]],[22,25,["H6213"]],[25,28,["H319"]],[28,29,[]]]},{"k":19090,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,9,["H5756"]],[9,13,["H4480","H7130"]],[13,15,["H3389"]],[15,17,["H8628"]],[17,19,["H7782"]],[19,21,["H8620"]],[21,24,["H5375"]],[24,28,["H4864"]],[28,29,["H5921"]],[29,30,["H1021"]],[30,31,["H3588"]],[31,32,["H7451"]],[32,33,["H8259"]],[33,37,["H4480","H6828"]],[37,39,["H1419"]],[39,40,["H7667"]]]},{"k":19091,"v":[[0,3,["H1819"]],[3,5,["H1323"]],[5,7,["H6726"]],[7,10,["H5000"]],[10,12,["H6026"]],[12,13,[]]]},{"k":19092,"v":[[0,2,["H7462"]],[2,5,["H5739"]],[5,7,["H935"]],[7,8,["H413"]],[8,12,["H8628"]],[12,14,["H168"]],[14,15,["H5921"]],[15,18,["H5439"]],[18,21,["H7462"]],[21,23,["H376"]],[23,24,["H854"]],[24,26,["H3027"]]]},{"k":19093,"v":[[0,1,["H6942"]],[1,3,["H4421"]],[3,4,["H5921"]],[4,6,["H6965"]],[6,11,["H5927"]],[11,13,["H6672"]],[13,14,["H188"]],[14,17,["H3588"]],[17,19,["H3117"]],[19,21,["H6437"]],[21,22,["H3588"]],[22,24,["H6752"]],[24,27,["H6153"]],[27,30,["H5186"]]]},{"k":19094,"v":[[0,1,["H6965"]],[1,5,["H5927"]],[5,7,["H3915"]],[7,11,["H7843"]],[11,13,["H759"]]]},{"k":19095,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,5,["H3068"]],[5,7,["H6635"]],[7,8,["H559"]],[8,11,["H3772"]],[11,12,["H6097"]],[12,14,["H8210"]],[14,16,["H5550"]],[16,17,["H5921"]],[17,18,["H3389"]],[18,19,["H1931"]],[19,22,["H5892"]],[22,25,["H6485"]],[25,28,["H3605"]],[28,29,["H6233"]],[29,32,["H7130"]],[32,34,[]]]},{"k":19096,"v":[[0,3,["H953"]],[3,5,["H6979"]],[5,7,["H4325"]],[7,8,["H3651"]],[8,10,["H6979"]],[10,13,["H7451"]],[13,14,["H2555"]],[14,16,["H7701"]],[16,18,["H8085"]],[18,21,["H5921","H6440"]],[21,23,["H8548"]],[23,25,["H2483"]],[25,27,["H4347"]]]},{"k":19097,"v":[[0,3,["H3256"]],[3,5,["H3389"]],[5,6,["H6435"]],[6,8,["H5315"]],[8,9,["H3363"]],[9,10,["H4480"]],[10,12,["H6435"]],[12,14,["H7760"]],[14,16,["H8077"]],[16,18,["H776"]],[18,19,["H3808"]],[19,20,["H3427"]]]},{"k":19098,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,10,["H5953","H5953"]],[10,12,["H7611"]],[12,14,["H3478"]],[14,17,["H1612"]],[17,19,["H7725"]],[19,21,["H3027"]],[21,24,["H1219"]],[24,25,["H5921"]],[25,27,["H5552"]]]},{"k":19099,"v":[[0,1,["H5921"]],[1,2,["H4310"]],[2,5,["H1696"]],[5,8,["H5749"]],[8,12,["H8085"]],[12,13,["H2009"]],[13,15,["H241"]],[15,17,["H6189"]],[17,20,["H3201","H3808"]],[20,21,["H7181"]],[21,22,["H2009"]],[22,24,["H1697"]],[24,27,["H3068"]],[27,28,["H1961"]],[28,32,["H2781"]],[32,35,["H3808"]],[35,36,["H2654"]],[36,38,[]]]},{"k":19100,"v":[[0,4,["H4392"]],[4,5,["H854"]],[5,7,["H2534"]],[7,10,["H3068"]],[10,13,["H3811"]],[13,15,["H3557"]],[15,21,["H8210"]],[21,22,["H5921"]],[22,24,["H5768"]],[24,25,["H2351"]],[25,27,["H5921"]],[27,29,["H5475"]],[29,32,["H970"]],[32,33,["H3162"]],[33,34,["H3588"]],[34,35,["H1571"]],[35,37,["H376"]],[37,38,["H5973"]],[38,40,["H802"]],[40,43,["H3920"]],[43,45,["H2205"]],[45,46,["H5973"]],[46,50,["H4390"]],[50,52,["H3117"]]]},{"k":19101,"v":[[0,3,["H1004"]],[3,6,["H5437"]],[6,8,["H312"]],[8,11,["H7704"]],[11,13,["H802"]],[13,14,["H3162"]],[14,15,["H3588"]],[15,19,["H5186","(H853)"]],[19,21,["H3027"]],[21,22,["H5921"]],[22,24,["H3427"]],[24,27,["H776"]],[27,28,["H5002"]],[28,30,["H3068"]]]},{"k":19102,"v":[[0,1,["H3588"]],[1,4,["H4480","H6996"]],[4,8,["H5704"]],[8,10,["H1419"]],[10,14,["H3605"]],[14,17,["H1214"]],[17,18,["H1215"]],[18,22,["H4480","H5030"]],[22,24,["H5704"]],[24,26,["H3548"]],[26,28,["H3605"]],[28,29,["H6213"]],[29,30,["H8267"]]]},{"k":19103,"v":[[0,3,["H7495"]],[3,4,["(H853)"]],[4,6,["H7667"]],[6,12,["H5971"]],[12,13,["H5921","H7043"]],[13,14,["H559"]],[14,15,["H7965"]],[15,16,["H7965"]],[16,20,["H369"]],[20,21,["H7965"]]]},{"k":19104,"v":[[0,3,["H954"]],[3,4,["H3588"]],[4,7,["H6213"]],[7,8,["H8441"]],[8,9,["H1571"]],[9,12,["H3808"]],[12,15,["H954","H954"]],[15,16,["H3808"]],[16,17,["H3045"]],[17,19,["H3637"]],[19,20,["H3651"]],[20,23,["H5307"]],[23,27,["H5307"]],[27,30,["H6256"]],[30,33,["H6485"]],[33,39,["H3782"]],[39,40,["H559"]],[40,42,["H3068"]]]},{"k":19105,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5975"]],[5,7,["H5921"]],[7,9,["H1870"]],[9,11,["H7200"]],[11,13,["H7592"]],[13,16,["H5769"]],[16,17,["H5410"]],[17,18,["H335","H2088"]],[18,21,["H2896"]],[21,22,["H1870"]],[22,24,["H1980"]],[24,29,["H4672"]],[29,30,["H4771"]],[30,33,["H5315"]],[33,36,["H559"]],[36,39,["H3808"]],[39,40,["H1980"]],[40,41,[]]]},{"k":19106,"v":[[0,3,["H6965"]],[3,4,["H6822"]],[4,5,["H5921"]],[5,8,["H7181"]],[8,11,["H6963"]],[11,14,["H7782"]],[14,17,["H559"]],[17,20,["H3808"]],[20,21,["H7181"]]]},{"k":19107,"v":[[0,1,["H3651"]],[1,2,["H8085"]],[2,4,["H1471"]],[4,6,["H3045"]],[6,8,["H5712","(H853)"]],[8,9,["H834"]],[9,12,[]]]},{"k":19108,"v":[[0,1,["H8085"]],[1,3,["H776"]],[3,4,["H2009"]],[4,5,["H595"]],[5,7,["H935"]],[7,8,["H7451"]],[8,9,["H413"]],[9,10,["H2088"]],[10,11,["H5971"]],[11,14,["H6529"]],[14,17,["H4284"]],[17,18,["H3588"]],[18,21,["H3808"]],[21,22,["H7181"]],[22,23,["H5921"]],[23,25,["H1697"]],[25,29,["H8451"]],[29,31,["H3988"]],[31,32,[]]]},{"k":19109,"v":[[0,2,["H4100"]],[2,3,["H2088"]],[3,4,["H935"]],[4,8,["H3828"]],[8,10,["H4480","H7614"]],[10,13,["H2896"]],[13,14,["H7070"]],[14,17,["H4801"]],[17,18,["H4480","H776"]],[18,21,["H5930"]],[21,23,["H3808"]],[23,24,["H7522"]],[24,25,["H3808"]],[25,27,["H2077"]],[27,28,["H6149"]],[28,30,[]]]},{"k":19110,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,9,["H5414"]],[9,10,["H4383"]],[10,11,["H413"]],[11,12,["H2088"]],[12,13,["H5971"]],[13,16,["H1"]],[16,19,["H1121"]],[19,20,["H3162"]],[20,22,["H3782"]],[22,26,["H7934"]],[26,29,["H7453"]],[29,31,["H6"]]]},{"k":19111,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H2009"]],[5,7,["H5971"]],[7,8,["H935"]],[8,11,["H6828"]],[11,12,["H4480","H776"]],[12,15,["H1419"]],[15,16,["H1471"]],[16,19,["H5782"]],[19,22,["H4480","H3411"]],[22,25,["H776"]]]},{"k":19112,"v":[[0,4,["H2388"]],[4,6,["H7198"]],[6,8,["H3591"]],[8,9,["H1931"]],[9,11,["H394"]],[11,14,["H3808"]],[14,15,["H7355"]],[15,17,["H6963"]],[17,18,["H1993"]],[18,21,["H3220"]],[21,24,["H7392"]],[24,25,["H5921"]],[25,26,["H5483"]],[26,29,["H6186"]],[29,31,["H376"]],[31,33,["H4421"]],[33,34,["H5921"]],[34,37,["H1323"]],[37,39,["H6726"]]]},{"k":19113,"v":[[0,3,["H8085","(H853)"]],[3,5,["H8089"]],[5,8,["H3027"]],[8,10,["H7503"]],[10,11,["H6869"]],[11,14,["H2388"]],[14,18,["H2427"]],[18,24,["H3205"]]]},{"k":19114,"v":[[0,3,["H408","H3318"]],[3,6,["H7704"]],[6,7,["H408"]],[7,8,["H1980"]],[8,11,["H1870"]],[11,12,["H3588"]],[12,14,["H2719"]],[14,17,["H341"]],[17,19,["H4032"]],[19,23,["H4480","H5439"]]]},{"k":19115,"v":[[0,2,["H1323"]],[2,5,["H5971"]],[5,6,["H2296"]],[6,9,["H8242"]],[9,12,["H6428"]],[12,14,["H665"]],[14,15,["H6213"]],[15,17,["H60"]],[17,22,["H3173"]],[22,24,["H8563"]],[24,25,["H4553"]],[25,26,["H3588"]],[26,28,["H7703"]],[28,30,["H6597"]],[30,31,["H935"]],[31,32,["H5921"]],[32,33,[]]]},{"k":19116,"v":[[0,3,["H5414"]],[3,7,["H969"]],[7,10,["H4013"]],[10,13,["H5971"]],[13,17,["H3045"]],[17,19,["H974","(H853)"]],[19,21,["H1870"]]]},{"k":19117,"v":[[0,3,["H3605"]],[3,4,["H5493"]],[4,5,["H5637"]],[5,6,["H1980"]],[6,8,["H7400"]],[8,11,["H5178"]],[11,13,["H1270"]],[13,14,["H1992"]],[14,16,["H3605"]],[16,17,["H7843"]]]},{"k":19118,"v":[[0,2,["H4647"]],[2,4,["H2787"]],[4,6,["H5777"]],[6,8,["H8552"]],[8,11,["H4480","H784"]],[11,13,["H6884"]],[13,14,["H6884"]],[14,16,["H7723"]],[16,19,["H7451"]],[19,21,["H3808"]],[21,23,["H5423"]]]},{"k":19119,"v":[[0,1,["H3988"]],[1,2,["H3701"]],[2,5,["H7121"]],[5,7,["H3588"]],[7,9,["H3068"]],[9,11,["H3988"]],[11,12,[]]]},{"k":19120,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H413"]],[5,6,["H3414"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,10,["H559"]]]},{"k":19121,"v":[[0,1,["H5975"]],[1,4,["H8179"]],[4,7,["H3068"]],[7,8,["H1004"]],[8,10,["H7121"]],[10,11,["H8033","(H853)"]],[11,12,["H2088"]],[12,13,["H1697"]],[13,15,["H559"]],[15,16,["H8085"]],[16,18,["H1697"]],[18,21,["H3068"]],[21,22,["H3605"]],[22,25,["H3063"]],[25,27,["H935"]],[27,30,["H428"]],[30,31,["H8179"]],[31,33,["H7812"]],[33,35,["H3068"]]]},{"k":19122,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,11,["H3190"]],[11,13,["H1870"]],[13,16,["H4611"]],[16,23,["H7931"]],[23,25,["H2088"]],[25,26,["H4725"]]]},{"k":19123,"v":[[0,1,["H982"]],[1,3,["H408"]],[3,4,["H413"]],[4,5,["H8267"]],[5,6,["H1697"]],[6,7,["H559"]],[7,9,["H1964"]],[9,12,["H3068"]],[12,14,["H1964"]],[14,17,["H3068"]],[17,19,["H1964"]],[19,22,["H3068"]],[22,24,["H1992"]]]},{"k":19124,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,5,["H3190","H3190","(H853)"]],[5,7,["H1870"]],[7,10,["H4611"]],[10,11,["H518"]],[11,14,["H6213","H6213"]],[14,15,["H4941"]],[15,16,["H996"]],[16,18,["H376"]],[18,21,["H7453"]]]},{"k":19125,"v":[[0,3,["H6231"]],[3,4,["H3808"]],[4,6,["H1616"]],[6,8,["H3490"]],[8,11,["H490"]],[11,13,["H8210"]],[13,14,["H408"]],[14,15,["H5355"]],[15,16,["H1818"]],[16,18,["H2088"]],[18,19,["H4725"]],[19,20,["H3808"]],[20,21,["H1980"]],[21,22,["H310"]],[22,23,["H312"]],[23,24,["H430"]],[24,27,["H7451"]]]},{"k":19126,"v":[[0,7,["H7931"]],[7,9,["H2088"]],[9,10,["H4725"]],[10,13,["H776"]],[13,14,["H834"]],[14,16,["H5414"]],[16,19,["H1"]],[19,21,["H4480","H5769"]],[21,23,["H5704","H5769"]]]},{"k":19127,"v":[[0,1,["H2009"]],[1,2,["H859"]],[2,3,["H982"]],[3,4,["H5921"]],[4,5,["H8267"]],[5,6,["H1697"]],[6,8,["H1115"]],[8,9,["H3276"]]]},{"k":19128,"v":[[0,3,["H1589"]],[3,4,["H7523"]],[4,7,["H5003"]],[7,9,["H7650"]],[9,10,["H8267"]],[10,13,["H6999"]],[13,15,["H1168"]],[15,17,["H1980"]],[17,18,["H310"]],[18,19,["H312"]],[19,20,["H430"]],[20,21,["H834"]],[21,23,["H3045"]],[23,24,["H3808"]]]},{"k":19129,"v":[[0,2,["H935"]],[2,4,["H5975"]],[4,5,["H6440"]],[5,8,["H2088"]],[8,9,["H1004"]],[9,10,["H834"]],[10,12,["H7121"]],[12,13,["H5921"]],[13,15,["H8034"]],[15,17,["H559"]],[17,22,["H5337","H4616","H6213","(H853)"]],[22,23,["H3605"]],[23,24,["H428"]],[24,25,["H8441"]]]},{"k":19130,"v":[[0,2,["H2088"]],[2,3,["H1004"]],[3,4,["H834"]],[4,6,["H7121"]],[6,7,["H5921"]],[7,9,["H8034"]],[9,10,["H1961"]],[10,12,["H4631"]],[12,14,["H6530"]],[14,17,["H5869"]],[17,18,["H2009"]],[18,19,["H1571"]],[19,20,["H595"]],[20,22,["H7200"]],[22,24,["H5002"]],[24,26,["H3068"]]]},{"k":19131,"v":[[0,1,["H3588"]],[1,2,["H1980"]],[2,4,["H4994"]],[4,5,["H413"]],[5,7,["H4725"]],[7,8,["H834"]],[8,11,["H7887"]],[11,12,["H834"]],[12,14,["H7931"]],[14,16,["H8034"]],[16,19,["H7223"]],[19,21,["H7200","(H853)"]],[21,22,["H834"]],[22,24,["H6213"]],[24,27,["H4480","H6440"]],[27,29,["H7451"]],[29,32,["H5971"]],[32,33,["H3478"]]]},{"k":19132,"v":[[0,2,["H6258"]],[2,3,["H3282"]],[3,6,["H6213","(H853)"]],[6,7,["H3605"]],[7,8,["H428"]],[8,9,["H4639"]],[9,10,["H5002"]],[10,12,["H3068"]],[12,15,["H1696"]],[15,16,["H413"]],[16,20,["H7925"]],[20,22,["H1696"]],[22,25,["H8085"]],[25,26,["H3808"]],[26,29,["H7121"]],[29,33,["H6030"]],[33,34,["H3808"]]]},{"k":19133,"v":[[0,4,["H6213"]],[4,7,["H1004"]],[7,8,["H834"]],[8,10,["H7121"]],[10,11,["H5921"]],[11,13,["H8034"]],[13,14,["H834"]],[14,15,["H859"]],[15,16,["H982"]],[16,20,["H4725"]],[20,21,["H834"]],[21,23,["H5414"]],[23,29,["H1"]],[29,30,["H834"]],[30,33,["H6213"]],[33,35,["H7887"]]]},{"k":19134,"v":[[0,4,["H7993"]],[4,7,["H4480","H5921"]],[7,9,["H6440"]],[9,10,["H834"]],[10,14,["H7993","(H853)"]],[14,15,["H3605"]],[15,17,["H251","(H853)"]],[17,20,["H3605"]],[20,21,["H2233"]],[21,23,["H669"]]]},{"k":19135,"v":[[0,2,["H6419"]],[2,3,["H408"]],[3,4,["H859"]],[4,5,["H1157"]],[5,6,["H2088"]],[6,7,["H5971"]],[7,8,["H408"]],[8,10,["H5375"]],[10,11,["H7440"]],[11,13,["H8605"]],[13,14,["H1157"]],[14,16,["H408"]],[16,18,["H6293"]],[18,21,["H3588"]],[21,24,["H369"]],[24,25,["H8085"]],[25,26,[]]]},{"k":19136,"v":[[0,1,["H7200"]],[1,3,["H369"]],[3,4,["H4100"]],[4,5,["H1992"]],[5,6,["H6213"]],[6,9,["H5892"]],[9,11,["H3063"]],[11,15,["H2351"]],[15,17,["H3389"]]]},{"k":19137,"v":[[0,2,["H1121"]],[2,3,["H3950"]],[3,4,["H6086"]],[4,7,["H1"]],[7,8,["H1197","(H853)"]],[8,10,["H784"]],[10,13,["H802"]],[13,14,["H3888"]],[14,16,["H1217"]],[16,18,["H6213"]],[18,19,["H3561"]],[19,22,["H4446"]],[22,24,["H8064"]],[24,28,["H5258"]],[28,30,["H5262"]],[30,32,["H312"]],[32,33,["H430"]],[33,34,["H4616"]],[34,40,["H3707"]]]},{"k":19138,"v":[[0,2,["H1992"]],[2,6,["H3707","(H853)"]],[6,7,["H5002"]],[7,9,["H3068"]],[9,12,["H3808"]],[12,15,["H4616"]],[15,17,["H1322"]],[17,21,["H6440"]]]},{"k":19139,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,9,["H639"]],[9,12,["H2534"]],[12,16,["H5413"]],[16,17,["H413"]],[17,18,["H2088"]],[18,19,["H4725"]],[19,20,["H5921"]],[20,21,["H120"]],[21,23,["H5921"]],[23,24,["H929"]],[24,26,["H5921"]],[26,28,["H6086"]],[28,31,["H7704"]],[31,33,["H5921"]],[33,35,["H6529"]],[35,38,["H127"]],[38,42,["H1197"]],[42,45,["H3808"]],[45,47,["H3518"]]]},{"k":19140,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,11,["H5595"]],[11,14,["H5930"]],[14,15,["H5921"]],[15,17,["H2077"]],[17,19,["H398"]],[19,20,["H1320"]]]},{"k":19141,"v":[[0,1,["H3588"]],[1,3,["H1696"]],[3,4,["H3808"]],[4,5,["(H853)"]],[5,7,["H1"]],[7,8,["H3808"]],[8,9,["H6680"]],[9,13,["H3117"]],[13,16,["H3318"]],[16,21,["H4480","H776"]],[21,23,["H4714"]],[23,24,["H5921","H1697"]],[24,26,["H5930"]],[26,28,["H2077"]]]},{"k":19142,"v":[[0,1,["H3588","H518","(H853)"]],[1,2,["H2088"]],[2,3,["H1697"]],[3,4,["H6680"]],[4,7,["H559"]],[7,8,["H8085"]],[8,10,["H6963"]],[10,14,["H1961"]],[14,16,["H430"]],[16,18,["H859"]],[18,20,["H1961"]],[20,22,["H5971"]],[22,24,["H1980"]],[24,27,["H3605"]],[27,29,["H1870"]],[29,30,["H834"]],[30,33,["H6680"]],[33,35,["H4616"]],[35,39,["H3190"]],[39,41,[]]]},{"k":19143,"v":[[0,3,["H8085"]],[3,4,["H3808"]],[4,5,["H3808"]],[5,6,["H5186","(H853)"]],[6,8,["H241"]],[8,10,["H1980"]],[10,13,["H4156"]],[13,17,["H8307"]],[17,20,["H7451"]],[20,21,["H3820"]],[21,23,["H1961"]],[23,24,["H268"]],[24,26,["H3808"]],[26,27,["H6440"]]]},{"k":19144,"v":[[0,1,["H4480"]],[1,3,["H3117"]],[3,4,["H834"]],[4,6,["H1"]],[6,8,["H3318"]],[8,12,["H4480","H776"]],[12,14,["H4714"]],[14,15,["H5704"]],[15,16,["H2088"]],[16,17,["H3117"]],[17,21,["H7971"]],[21,22,["H413"]],[22,23,["(H853)"]],[23,24,["H3605"]],[24,26,["H5650"]],[26,28,["H5030"]],[28,29,["H3117"]],[29,32,["H7925"]],[32,34,["H7971"]],[34,35,[]]]},{"k":19145,"v":[[0,3,["H8085"]],[3,4,["H3808"]],[4,5,["H413"]],[5,7,["H3808"]],[7,8,["H5186","(H853)"]],[8,10,["H241"]],[10,12,["H7185","(H853)"]],[12,14,["H6203"]],[14,17,["H7489"]],[17,20,["H4480","H1"]]]},{"k":19146,"v":[[0,4,["H1696","(H853)"]],[4,5,["H3605"]],[5,6,["H428"]],[6,7,["H1697"]],[7,8,["H413"]],[8,13,["H3808"]],[13,14,["H8085"]],[14,15,["H413"]],[15,20,["H7121"]],[20,21,["H413"]],[21,26,["H3808"]],[26,27,["H6030"]],[27,28,[]]]},{"k":19147,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H2088"]],[7,10,["H1471"]],[10,11,["H834"]],[11,12,["H8085"]],[12,13,["H3808"]],[13,15,["H6963"]],[15,18,["H3068"]],[18,20,["H430"]],[20,21,["H3808"]],[21,22,["H3947"]],[22,23,["H4148"]],[23,24,["H530"]],[24,26,["H6"]],[26,30,["H3772"]],[30,33,["H4480","H6310"]]]},{"k":19148,"v":[[0,2,["H1494"]],[2,4,["H5145"]],[4,10,["H7993"]],[10,13,["H5375"]],[13,15,["H7015"]],[15,16,["H5921"]],[16,18,["H8205"]],[18,19,["H3588"]],[19,21,["H3068"]],[21,23,["H3988"]],[23,25,["H5203","(H853)"]],[25,27,["H1755"]],[27,30,["H5678"]]]},{"k":19149,"v":[[0,1,["H3588"]],[1,3,["H1121"]],[3,5,["H3063"]],[5,7,["H6213"]],[7,8,["H7451"]],[8,11,["H5869"]],[11,12,["H5002"]],[12,14,["H3068"]],[14,17,["H7760"]],[17,19,["H8251"]],[19,22,["H1004"]],[22,23,["H834"]],[23,25,["H7121"]],[25,26,["H5921"]],[26,28,["H8034"]],[28,30,["H2930"]],[30,31,[]]]},{"k":19150,"v":[[0,4,["H1129"]],[4,7,["H1116"]],[7,9,["H8612"]],[9,10,["H834"]],[10,14,["H1516"]],[14,17,["H1121"]],[17,19,["H2011"]],[19,21,["H8313","(H853)"]],[21,23,["H1121"]],[23,26,["H1323"]],[26,29,["H784"]],[29,30,["H834"]],[30,32,["H6680"]],[32,34,["H3808"]],[34,35,["H3808"]],[35,36,["H5927"]],[36,38,["H5921"]],[38,40,["H3820"]]]},{"k":19151,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,4,["H3117"]],[4,5,["H935"]],[5,6,["H5002"]],[6,8,["H3068"]],[8,12,["H3808"]],[12,13,["H5750"]],[13,15,["H559"]],[15,16,["H8612"]],[16,19,["H1516"]],[19,22,["H1121"]],[22,24,["H2011"]],[24,25,["H3588","H518"]],[25,27,["H1516"]],[27,29,["H2028"]],[29,33,["H6912"]],[33,35,["H8612"]],[35,39,["H4480","H369"]],[39,40,["H4725"]]]},{"k":19152,"v":[[0,3,["H5038"]],[3,5,["H2088"]],[5,6,["H5971"]],[6,8,["H1961"]],[8,9,["H3978"]],[9,12,["H5775"]],[12,15,["H8064"]],[15,19,["H929"]],[19,22,["H776"]],[22,24,["H369"]],[24,28,["H2729"]]]},{"k":19153,"v":[[0,6,["H7673"]],[6,9,["H4480","H5892"]],[9,11,["H3063"]],[11,15,["H4480","H2351"]],[15,17,["H3389"]],[17,19,["H6963"]],[19,21,["H8342"]],[21,24,["H6963"]],[24,26,["H8057"]],[26,28,["H6963"]],[28,31,["H2860"]],[31,34,["H6963"]],[34,37,["H3618"]],[37,38,["H3588"]],[38,40,["H776"]],[40,42,["H1961"]],[42,43,["H2723"]]]},{"k":19154,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,4,["H5002"]],[4,6,["H3068"]],[6,10,["H3318","(H853)"]],[10,12,["H6106"]],[12,15,["H4428"]],[15,17,["H3063"]],[17,20,["H6106"]],[20,23,["H8269"]],[23,26,["H6106"]],[26,29,["H3548"]],[29,32,["H6106"]],[32,35,["H5030"]],[35,38,["H6106"]],[38,41,["H3427"]],[41,43,["H3389"]],[43,47,["H4480","H6913"]]]},{"k":19155,"v":[[0,4,["H7849"]],[4,8,["H8121"]],[8,11,["H3394"]],[11,13,["H3605"]],[13,15,["H6635"]],[15,17,["H8064"]],[17,18,["H834"]],[18,21,["H157"]],[21,23,["H834"]],[23,26,["H5647"]],[26,28,["H310"]],[28,29,["H834"]],[29,32,["H1980"]],[32,34,["H834"]],[34,37,["H1875"]],[37,39,["H834"]],[39,42,["H7812"]],[42,45,["H3808"]],[45,47,["H622"]],[47,48,["H3808"]],[48,50,["H6912"]],[50,53,["H1961"]],[53,55,["H1828"]],[55,56,["H5921"]],[56,58,["H6440"]],[58,61,["H127"]]]},{"k":19156,"v":[[0,2,["H4194"]],[2,5,["H977"]],[5,8,["H4480","H2416"]],[8,10,["H3605"]],[10,12,["H7611"]],[12,16,["H7604"]],[16,17,["H4480"]],[17,18,["H2063"]],[18,19,["H7451"]],[19,20,["H4940"]],[20,22,["H7604"]],[22,24,["H3605"]],[24,26,["H4725"]],[26,27,["H834","H8033"]],[27,30,["H5080"]],[30,32,["H5002"]],[32,34,["H3068"]],[34,36,["H6635"]]]},{"k":19157,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H3541"]],[7,8,["H559"]],[8,10,["H3068"]],[10,13,["H5307"]],[13,15,["H3808"]],[15,16,["H6965"]],[16,20,["H7725"]],[20,22,["H3808"]],[22,23,["H7725"]]]},{"k":19158,"v":[[0,1,["H4069"]],[1,4,["H2088"]],[4,5,["H5971"]],[5,7,["H3389"]],[7,9,["H7725"]],[9,12,["H5329"]],[12,13,["H4878"]],[13,16,["H2388"]],[16,17,["H8649"]],[17,19,["H3985"]],[19,21,["H7725"]]]},{"k":19159,"v":[[0,2,["H7181"]],[2,4,["H8085"]],[4,7,["H1696"]],[7,8,["H3808"]],[8,9,["H3651"]],[9,10,["H369"]],[10,11,["H376"]],[11,12,["H5162"]],[12,14,["H5921"]],[14,16,["H7451"]],[16,17,["H559"]],[17,18,["H4100"]],[18,21,["H6213"]],[21,23,["H3605"]],[23,24,["H7725"]],[24,27,["H4794"]],[27,30,["H5483"]],[30,31,["H7857"]],[31,34,["H4421"]]]},{"k":19160,"v":[[0,1,["H1571"]],[1,3,["H2624"]],[3,6,["H8064"]],[6,7,["H3045"]],[7,10,["H4150"]],[10,13,["H8449"]],[13,16,["H5483"]],[16,19,["H5693"]],[19,20,["H8104","(H853)"]],[20,22,["H6256"]],[22,25,["H935"]],[25,28,["H5971"]],[28,29,["H3045"]],[29,30,["H3808","(H853)"]],[30,32,["H4941"]],[32,35,["H3068"]]]},{"k":19161,"v":[[0,1,["H349"]],[1,4,["H559"]],[4,5,["H587"]],[5,7,["H2450"]],[7,10,["H8451"]],[10,13,["H3068"]],[13,15,["H854"]],[15,17,["H2009"]],[17,18,["H403"]],[18,20,["H8267"]],[20,21,["H6213"]],[21,25,["H5842"]],[25,28,["H5608"]],[28,31,["H8267"]]]},{"k":19162,"v":[[0,2,["H2450"]],[2,5,["H954"]],[5,8,["H2865"]],[8,10,["H3920"]],[10,11,["H2009"]],[11,14,["H3988"]],[14,16,["H1697"]],[16,19,["H3068"]],[19,21,["H4100"]],[21,22,["H2451"]],[22,25,[]]]},{"k":19163,"v":[[0,1,["H3651"]],[1,4,["H5414","(H853)"]],[4,6,["H802"]],[6,8,["H312"]],[8,11,["H7704"]],[11,16,["H3423"]],[16,18,["H3588"]],[18,20,["H3605"]],[20,23,["H4480","H6996"]],[23,25,["H5704"]],[25,27,["H1419"]],[27,31,["H1214","H1215"]],[31,34,["H4480","H5030"]],[34,36,["H5704"]],[36,38,["H3548"]],[38,40,["H3605"]],[40,41,["H6213"]],[41,42,["H8267"]]]},{"k":19164,"v":[[0,4,["H7495","(H853)"]],[4,6,["H7667"]],[6,9,["H1323"]],[9,12,["H5971"]],[12,13,["H7043"]],[13,14,["H559"]],[14,15,["H7965"]],[15,16,["H7965"]],[16,20,["H369"]],[20,21,["H7965"]]]},{"k":19165,"v":[[0,3,["H954"]],[3,4,["H3588"]],[4,7,["H6213"]],[7,8,["H8441"]],[8,9,["H1571"]],[9,12,["H3808"]],[12,15,["H954","H954"]],[15,16,["H3808"]],[16,17,["H3045"]],[17,19,["H3637"]],[19,20,["H3651"]],[20,23,["H5307"]],[23,27,["H5307"]],[27,30,["H6256"]],[30,33,["H6486"]],[33,38,["H3782"]],[38,39,["H559"]],[39,41,["H3068"]]]},{"k":19166,"v":[[0,4,["H5486","H5486"]],[4,6,["H5002"]],[6,8,["H3068"]],[8,12,["H369"]],[12,13,["H6025"]],[13,16,["H1612"]],[16,17,["H369"]],[17,18,["H8384"]],[18,22,["H8384"]],[22,25,["H5929"]],[25,27,["H5034"]],[27,34,["H5414"]],[34,38,["H5674"]],[38,40,[]]]},{"k":19167,"v":[[0,1,["H4100","H5921"]],[1,3,["H587"]],[3,4,["H3427"]],[4,7,["H622"]],[7,11,["H935"]],[11,12,["H413"]],[12,14,["H4013"]],[14,15,["H5892"]],[15,20,["H1826"]],[20,21,["H8033"]],[21,22,["H3588"]],[22,24,["H3068"]],[24,26,["H430"]],[26,31,["H1826"]],[31,35,["H4325"]],[35,37,["H7219"]],[37,39,["H8248"]],[39,40,["H3588"]],[40,43,["H2398"]],[43,46,["H3068"]]]},{"k":19168,"v":[[0,2,["H6960"]],[2,4,["H7965"]],[4,6,["H369"]],[6,7,["H2896"]],[7,12,["H6256"]],[12,14,["H4832"]],[14,16,["H2009"]],[16,17,["H1205"]]]},{"k":19169,"v":[[0,2,["H5170"]],[2,5,["H5483"]],[5,7,["H8085"]],[7,9,["H4480","H1835"]],[9,11,["H3605"]],[11,12,["H776"]],[12,13,["H7493"]],[13,16,["H4480","H6963"]],[16,19,["H4684"]],[19,23,["H47"]],[23,27,["H935"]],[27,30,["H398"]],[30,32,["H776"]],[32,34,["H4393"]],[34,40,["H5892"]],[40,44,["H3427"]],[44,45,[]]]},{"k":19170,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,5,["H7971"]],[5,6,["H5175"]],[6,7,["H6848"]],[7,10,["H834"]],[10,12,["H369"]],[12,14,["H3908"]],[14,18,["H5391"]],[18,20,["H5002"]],[20,22,["H3068"]]]},{"k":19171,"v":[[0,4,["H4010"]],[4,6,["H5921"]],[6,7,["H3015"]],[7,9,["H3820"]],[9,11,["H1742"]],[11,12,["H5921"]],[12,13,[]]]},{"k":19172,"v":[[0,1,["H2009"]],[1,3,["H6963"]],[3,6,["H7775"]],[6,9,["H1323"]],[9,12,["H5971"]],[12,20,["H4801"]],[20,21,["H4480","H776"]],[21,23,["H369"]],[23,25,["H3068"]],[25,27,["H6726"]],[27,29,["H369"]],[29,31,["H4428"]],[31,34,["H4069"]],[34,40,["H3707"]],[40,44,["H6456"]],[44,47,["H5236"]],[47,48,["H1892"]]]},{"k":19173,"v":[[0,2,["H7105"]],[2,4,["H5674"]],[4,6,["H7019"]],[6,8,["H3615"]],[8,10,["H587"]],[10,12,["H3808"]],[12,13,["H3467"]]]},{"k":19174,"v":[[0,1,["H5921"]],[1,3,["H7667"]],[3,6,["H1323"]],[6,9,["H5971"]],[9,12,["H7665"]],[12,15,["H6937"]],[15,16,["H8047"]],[16,19,["H2388"]],[19,21,[]]]},{"k":19175,"v":[[0,3,["H369"]],[3,4,["H6875"]],[4,6,["H1568"]],[6,9,["H369"]],[9,10,["H7495"]],[10,11,["H8033"]],[11,12,["H4069"]],[12,13,["H3588"]],[13,15,["H3808"]],[15,17,["H724"]],[17,20,["H1323"]],[20,23,["H5971"]],[23,24,["H5927"]]]},{"k":19176,"v":[[0,2,["H4310"]],[2,4,["H7218"]],[4,5,["H5414"]],[5,6,["H4325"]],[6,9,["H5869"]],[9,11,["H4726"]],[11,13,["H1832"]],[13,17,["H1058"]],[17,18,["H3119"]],[18,20,["H3915"]],[20,21,["H5921"]],[21,23,["H2491"]],[23,26,["H1323"]],[26,29,["H5971"]]]},{"k":19177,"v":[[0,4,["H4310","H5414"]],[4,7,["H4057"]],[7,10,["H4411"]],[10,13,["H732"]],[13,17,["H5800","(H853)"]],[17,19,["H5971"]],[19,21,["H1980"]],[21,22,["H4480","H854"]],[22,24,["H3588"]],[24,27,["H3605"]],[27,28,["H5003"]],[28,30,["H6116"]],[30,33,["H898"]]]},{"k":19178,"v":[[0,3,["H1869","(H853)"]],[3,5,["H3956"]],[5,8,["H7198"]],[8,10,["H8267"]],[10,14,["H3808"]],[14,15,["H1396"]],[15,18,["H530"]],[18,21,["H776"]],[21,22,["H3588"]],[22,24,["H3318"]],[24,26,["H4480","H7451"]],[26,27,["H413"]],[27,28,["H7451"]],[28,31,["H3045"]],[31,32,["H3808"]],[32,34,["H5002"]],[34,36,["H3068"]]]},{"k":19179,"v":[[0,3,["H8104"]],[3,5,["H376"]],[5,8,["H4480","H7453"]],[8,10,["H982"]],[10,12,["H408"]],[12,13,["H5921"]],[13,14,["H3605"]],[14,15,["H251"]],[15,16,["H3588"]],[16,17,["H3605"]],[17,18,["H251"]],[18,21,["H6117","H6117"]],[21,23,["H3605"]],[23,24,["H7453"]],[24,26,["H1980"]],[26,28,["H7400"]]]},{"k":19180,"v":[[0,4,["H2048"]],[4,6,["H376"]],[6,8,["H7453"]],[8,11,["H3808"]],[11,12,["H1696"]],[12,14,["H571"]],[14,17,["H3925"]],[17,19,["H3956"]],[19,21,["H1696"]],[21,22,["H8267"]],[22,25,["H3811"]],[25,28,["H5753"]]]},{"k":19181,"v":[[0,2,["H3427"]],[2,6,["H8432"]],[6,8,["H4820"]],[8,10,["H4820"]],[10,12,["H3985"]],[12,14,["H3045"]],[14,16,["H5002"]],[16,18,["H3068"]]]},{"k":19182,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,8,["H2009"]],[8,11,["H6884"]],[11,14,["H974"]],[14,16,["H3588"]],[16,17,["H349"]],[17,20,["H6213"]],[20,21,["H4480","H6440"]],[21,23,["H1323"]],[23,26,["H5971"]]]},{"k":19183,"v":[[0,2,["H3956"]],[2,6,["H2671"]],[6,8,["H7819"]],[8,10,["H1696"]],[10,11,["H4820"]],[11,13,["H1696"]],[13,14,["H7965"]],[14,15,["H854"]],[15,17,["H7453"]],[17,20,["H6310"]],[20,23,["H7130"]],[23,25,["H7760"]],[25,27,["H696"]]]},{"k":19184,"v":[[0,3,["H3808"]],[3,4,["H6485"]],[4,6,["H5921"]],[6,7,["H428"]],[7,9,["H5002"]],[9,11,["H3068"]],[11,13,["H3808"]],[13,15,["H5315"]],[15,17,["H5358"]],[17,19,["H834"]],[19,21,["H1471"]],[21,23,["H2088"]]]},{"k":19185,"v":[[0,1,["H5921"]],[1,3,["H2022"]],[3,7,["H5375"]],[7,9,["H1065"]],[9,11,["H5092"]],[11,13,["H5921"]],[13,15,["H4999"]],[15,18,["H4057"]],[18,20,["H7015"]],[20,21,["H3588"]],[21,25,["H3341"]],[25,28,["H4480","H1097","H376"]],[28,31,["H5674"]],[31,33,["H3808"]],[33,36,["H8085"]],[36,38,["H6963"]],[38,41,["H4735"]],[41,44,["H4480","H5775"]],[44,47,["H8064"]],[47,50,["H929"]],[50,52,["H5074"]],[52,55,["H1980"]]]},{"k":19186,"v":[[0,4,["H5414","(H853)"]],[4,5,["H3389"]],[5,6,["H1530"]],[6,9,["H4583"]],[9,11,["H8577"]],[11,15,["H5414"]],[15,17,["H5892"]],[17,19,["H3063"]],[19,20,["H8077"]],[20,21,["H4480","H1097"]],[21,23,["H3427"]]]},{"k":19187,"v":[[0,1,["H4310"]],[1,4,["H2450"]],[4,5,["H376"]],[5,8,["H995","(H853)"]],[8,9,["H2063"]],[9,14,["H413"]],[14,17,["H6310"]],[17,20,["H3068"]],[20,22,["H1696"]],[22,26,["H5046"]],[26,28,["H5921"]],[28,29,["H4100"]],[29,31,["H776"]],[31,32,["H6"]],[32,36,["H3341"]],[36,39,["H4057"]],[39,41,["H4480","H1097"]],[41,43,["H5674"]]]},{"k":19188,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H5921"]],[5,8,["H5800","(H853)"]],[8,10,["H8451"]],[10,11,["H834"]],[11,13,["H5414"]],[13,14,["H6440"]],[14,18,["H3808"]],[18,19,["H8085"]],[19,21,["H6963"]],[21,22,["H3808"]],[22,23,["H1980"]],[23,24,[]]]},{"k":19189,"v":[[0,3,["H1980"]],[3,4,["H310"]],[4,6,["H8307"]],[6,10,["H3820"]],[10,12,["H310"]],[12,13,["H1168"]],[13,14,["H834"]],[14,16,["H1"]],[16,17,["H3925"]],[17,18,[]]]},{"k":19190,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,12,["H2009"]],[12,15,["H398"]],[15,17,["(H853)"]],[17,18,["H2088"]],[18,19,["H5971"]],[19,21,["H3939"]],[21,25,["H4325"]],[25,27,["H7219"]],[27,29,["H8248"]]]},{"k":19191,"v":[[0,3,["H6327"]],[3,8,["H1471"]],[8,9,["H834"]],[9,10,["H3808"]],[10,11,["H1992"]],[11,14,["H1"]],[14,16,["H3045"]],[16,20,["H7971","(H853)"]],[20,22,["H2719"]],[22,23,["H310"]],[23,25,["H5704"]],[25,28,["H3615"]],[28,29,[]]]},{"k":19192,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H995"]],[7,10,["H7121"]],[10,14,["H6969"]],[14,18,["H935"]],[18,20,["H7971"]],[20,21,["H413"]],[21,22,["H2450"]],[22,27,["H935"]]]},{"k":19193,"v":[[0,5,["H4116"]],[5,8,["H5375"]],[8,10,["H5092"]],[10,11,["H5921"]],[11,15,["H5869"]],[15,18,["H3381"]],[18,20,["H1832"]],[20,23,["H6079"]],[23,25,["H5140"]],[25,27,["H4325"]]]},{"k":19194,"v":[[0,1,["H3588"]],[1,3,["H6963"]],[3,5,["H5092"]],[5,7,["H8085"]],[7,10,["H4480","H6726"]],[10,11,["H349"]],[11,14,["H7703"]],[14,17,["H3966"]],[17,18,["H954"]],[18,19,["H3588"]],[19,22,["H5800"]],[22,24,["H776"]],[24,25,["H3588"]],[25,27,["H4908"]],[27,31,["H7993"]]]},{"k":19195,"v":[[0,1,["H3588"]],[1,2,["H8085"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,10,["H802"]],[10,14,["H241"]],[14,15,["H3947"]],[15,17,["H1697"]],[17,20,["H6310"]],[20,22,["H3925"]],[22,24,["H1323"]],[24,25,["H5092"]],[25,28,["H802"]],[28,30,["H7468"]],[30,31,["H7015"]]]},{"k":19196,"v":[[0,1,["H3588"]],[1,2,["H4194"]],[2,5,["H5927"]],[5,8,["H2474"]],[8,11,["H935"]],[11,14,["H759"]],[14,17,["H3772"]],[17,19,["H5768"]],[19,21,["H4480","H2351"]],[21,25,["H970"]],[25,28,["H4480","H7339"]]]},{"k":19197,"v":[[0,1,["H1696"]],[1,2,["H3541"]],[2,3,["H5002"]],[3,5,["H3068"]],[5,8,["H5038"]],[8,10,["H120"]],[10,12,["H5307"]],[12,14,["H1828"]],[14,15,["H5921"]],[15,17,["H6440"]],[17,18,["H7704"]],[18,22,["H5995"]],[22,23,["H4480","H310"]],[23,25,["H7114"]],[25,27,["H369"]],[27,29,["H622"]],[29,30,[]]]},{"k":19198,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H408"]],[6,8,["H2450"]],[8,10,["H1984"]],[10,13,["H2451"]],[13,14,["H408"]],[14,17,["H1368"]],[17,19,["H1984"]],[19,22,["H1369"]],[22,24,["H408"]],[24,26,["H6223"]],[26,28,["H1984"]],[28,31,["H6239"]]]},{"k":19199,"v":[[0,1,["H3588","H518"]],[1,5,["H1984"]],[5,6,["H1984"]],[6,8,["H2063"]],[8,11,["H7919"]],[11,13,["H3045"]],[13,15,["H3588"]],[15,16,["H589"]],[16,19,["H3068"]],[19,21,["H6213"]],[21,22,["H2617"]],[22,23,["H4941"]],[23,25,["H6666"]],[25,28,["H776"]],[28,29,["H3588"]],[29,31,["H428"]],[31,34,["H2654"]],[34,35,["H5002"]],[35,37,["H3068"]]]},{"k":19200,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,11,["H6485","H5921"]],[11,12,["H3605"]],[12,16,["H4135"]],[16,19,["H6190"]]]},{"k":19201,"v":[[0,1,["H4714"]],[1,3,["H3063"]],[3,5,["H123"]],[5,8,["H1121"]],[8,10,["H5983"]],[10,12,["H4124"]],[12,14,["H3605"]],[14,19,["H7112"]],[19,20,["H6285"]],[20,22,["H3427"]],[22,25,["H4057"]],[25,26,["H3588"]],[26,27,["H3605"]],[27,29,["H1471"]],[29,31,["H6189"]],[31,33,["H3605"]],[33,35,["H1004"]],[35,37,["H3478"]],[37,39,["H6189"]],[39,42,["H3820"]]]},{"k":19202,"v":[[0,1,["H8085"]],[1,2,["(H853)"]],[2,4,["H1697"]],[4,5,["H834"]],[5,7,["H3068"]],[7,8,["H1696"]],[8,9,["H5921"]],[9,12,["H1004"]],[12,14,["H3478"]]]},{"k":19203,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H3925"]],[5,6,["H408"]],[6,8,["H1870"]],[8,11,["H1471"]],[11,14,["H408"]],[14,15,["H2865"]],[15,18,["H4480","H226"]],[18,20,["H8064"]],[20,21,["H3588"]],[21,23,["H1471"]],[23,25,["H2865"]],[25,27,["H4480","H1992"]]]},{"k":19204,"v":[[0,1,["H3588"]],[1,3,["H2708"]],[3,6,["H5971"]],[6,8,["H1892"]],[8,9,["H3588"]],[9,11,["H3772"]],[11,13,["H6086"]],[13,17,["H4480","H3293"]],[17,19,["H4639"]],[19,22,["H3027"]],[22,25,["H2796"]],[25,28,["H4621"]]]},{"k":19205,"v":[[0,2,["H3302"]],[2,5,["H3701"]],[5,8,["H2091"]],[8,10,["H2388"]],[10,13,["H4548"]],[13,16,["H4717"]],[16,19,["H6328"]],[19,20,["H3808"]]]},{"k":19206,"v":[[0,1,["H1992"]],[1,3,["H4749"]],[3,7,["H8560"]],[7,9,["H1696"]],[9,10,["H3808"]],[10,15,["H5375","H5375"]],[15,16,["H3588"]],[16,18,["H3808"]],[18,19,["H6805"]],[19,21,["H408"]],[21,22,["H3372"]],[22,23,["H4480"]],[23,25,["H3588"]],[25,27,["H3808"]],[27,29,["H7489"]],[29,30,["H369"]],[30,31,["H1571"]],[31,34,["H854"]],[34,38,["H3190"]]]},{"k":19207,"v":[[0,5,["H4480","H369"]],[5,8,["H3644"]],[8,10,["H3068"]],[10,11,["H859"]],[11,13,["H1419"]],[13,16,["H8034"]],[16,18,["H1419"]],[18,20,["H1369"]]]},{"k":19208,"v":[[0,1,["H4310"]],[1,3,["H3808"]],[3,4,["H3372"]],[4,7,["H4428"]],[7,9,["H1471"]],[9,10,["H3588"]],[10,15,["H2969"]],[15,16,["H3588"]],[16,19,["H3605"]],[19,21,["H2450"]],[21,25,["H1471"]],[25,28,["H3605"]],[28,30,["H4438"]],[30,33,["H4480","H369"]],[33,36,["H3644"]]]},{"k":19209,"v":[[0,4,["H259"]],[4,5,["H1197"]],[5,7,["H3688"]],[7,9,["H6086"]],[9,12,["H4148"]],[12,14,["H1892"]]]},{"k":19210,"v":[[0,1,["H3701"]],[1,4,["H7554"]],[4,6,["H935"]],[6,8,["H4480","H8659"]],[8,10,["H2091"]],[10,12,["H4480","H210"]],[12,14,["H4639"]],[14,17,["H2796"]],[17,21,["H3027"]],[21,24,["H6884"]],[24,25,["H8504"]],[25,27,["H713"]],[27,30,["H3830"]],[30,33,["H3605"]],[33,35,["H4639"]],[35,37,["H2450"]],[37,38,[]]]},{"k":19211,"v":[[0,3,["H3068"]],[3,6,["H571"]],[6,7,["H430"]],[7,8,["H1931"]],[8,11,["H2416"]],[11,12,["H430"]],[12,15,["H5769"]],[15,16,["H4428"]],[16,19,["H4480","H7110"]],[19,21,["H776"]],[21,23,["H7493"]],[23,26,["H1471"]],[26,28,["H3808"]],[28,32,["H3557"]],[32,34,["H2195"]]]},{"k":19212,"v":[[0,1,["H1836"]],[1,4,["H560"]],[4,8,["H426"]],[8,9,["H1768"]],[9,11,["H3809"]],[11,12,["H5648"]],[12,14,["H8065"]],[14,17,["H778"]],[17,21,["H7"]],[21,24,["H4481","H772"]],[24,26,["H4481"]],[26,27,["H8460"]],[27,28,["H429"]],[28,29,["H8065"]]]},{"k":19213,"v":[[0,3,["H6213"]],[3,5,["H776"]],[5,8,["H3581"]],[8,11,["H3559"]],[11,13,["H8398"]],[13,16,["H2451"]],[16,20,["H5186"]],[20,22,["H8064"]],[22,25,["H8394"]]]},{"k":19214,"v":[[0,3,["H5414"]],[3,5,["H6963"]],[5,9,["H1995"]],[9,11,["H4325"]],[11,14,["H8064"]],[14,19,["H5387"]],[19,21,["H5927"]],[21,24,["H4480","H7097"]],[24,27,["H776"]],[27,29,["H6213"]],[29,30,["H1300"]],[30,32,["H4306"]],[32,35,["H3318"]],[35,37,["H7307"]],[37,41,["H4480","H214"]]]},{"k":19215,"v":[[0,1,["H3605"]],[1,2,["H120"]],[2,4,["H1197"]],[4,7,["H4480","H1847"]],[7,8,["H3605"]],[8,9,["H6884"]],[9,11,["H3001"]],[11,15,["H4480","H6459"]],[15,16,["H3588"]],[16,19,["H5262"]],[19,21,["H8267"]],[21,25,["H3808"]],[25,26,["H7307"]],[26,28,[]]]},{"k":19216,"v":[[0,1,["H1992"]],[1,3,["H1892"]],[3,6,["H4639"]],[6,8,["H8595"]],[8,11,["H6256"]],[11,14,["H6486"]],[14,17,["H6"]]]},{"k":19217,"v":[[0,2,["H2506"]],[2,4,["H3290"]],[4,6,["H3808"]],[6,8,["H428"]],[8,9,["H3588"]],[9,10,["H1931"]],[10,13,["H3335"]],[13,15,["H3605"]],[15,18,["H3478"]],[18,21,["H7626"]],[21,24,["H5159"]],[24,26,["H3068"]],[26,28,["H6635"]],[28,31,["H8034"]]]},{"k":19218,"v":[[0,2,["H622"]],[2,4,["H3666"]],[4,8,["H4480","H776"]],[8,10,["H3427"]],[10,13,["H4693"]]]},{"k":19219,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,10,["H7049","(H853)"]],[10,12,["H3427"]],[12,15,["H776"]],[15,17,["H2063"]],[17,18,["H6471"]],[18,21,["H6887"]],[21,23,["H4616"]],[23,26,["H4672"]],[26,28,[]]]},{"k":19220,"v":[[0,1,["H188"]],[1,4,["H5921"]],[4,6,["H7667"]],[6,8,["H4347"]],[8,10,["H2470"]],[10,12,["H589"]],[12,13,["H559"]],[13,14,["H389"]],[14,15,["H2088"]],[15,18,["H2483"]],[18,22,["H5375"]],[22,23,[]]]},{"k":19221,"v":[[0,2,["H168"]],[2,4,["H7703"]],[4,6,["H3605"]],[6,8,["H4340"]],[8,10,["H5423"]],[10,12,["H1121"]],[12,15,["H3318"]],[15,21,["H369"]],[21,24,["H369"]],[24,27,["H5186"]],[27,29,["H168"]],[29,31,["H5750"]],[31,35,["H6965"]],[35,37,["H3407"]]]},{"k":19222,"v":[[0,1,["H3588"]],[1,3,["H7462"]],[3,6,["H1197"]],[6,9,["H3808"]],[9,10,["H1875"]],[10,12,["H3068"]],[12,13,["H5921","H3651"]],[13,16,["H3808"]],[16,17,["H7919"]],[17,19,["H3605"]],[19,21,["H4830"]],[21,24,["H6327"]]]},{"k":19223,"v":[[0,1,["H2009"]],[1,3,["H6963"]],[3,6,["H8052"]],[6,8,["H935"]],[8,11,["H1419"]],[11,12,["H7494"]],[12,17,["H4480","H776","H6828"]],[17,19,["H7760","(H853)"]],[19,21,["H5892"]],[21,23,["H3063"]],[23,24,["H8077"]],[24,27,["H4583"]],[27,29,["H8577"]]]},{"k":19224,"v":[[0,2,["H3068"]],[2,4,["H3045"]],[4,5,["H3588"]],[5,7,["H1870"]],[7,9,["H120"]],[9,11,["H3808"]],[11,16,["H3808"]],[16,18,["H376"]],[18,20,["H1980"]],[20,22,["H3559","(H853)"]],[22,24,["H6806"]]]},{"k":19225,"v":[[0,2,["H3068"]],[2,3,["H3256"]],[3,6,["H389"]],[6,7,["H4941"]],[7,8,["H408"]],[8,11,["H639"]],[11,12,["H6435"]],[12,17,["H4591"]]]},{"k":19226,"v":[[0,2,["H8210"]],[2,4,["H2534"]],[4,5,["H5921"]],[5,7,["H1471"]],[7,8,["H834"]],[8,9,["H3045"]],[9,11,["H3808"]],[11,13,["H5921"]],[13,15,["H4940"]],[15,16,["H834"]],[16,17,["H7121"]],[17,18,["H3808"]],[18,21,["H8034"]],[21,22,["H3588"]],[22,26,["H398","(H853)"]],[26,27,["H3290"]],[27,29,["H398"]],[29,32,["H3615"]],[32,38,["H5116"]],[38,39,["H8074"]]]},{"k":19227,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H413"]],[5,6,["H3414"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,10,["H559"]]]},{"k":19228,"v":[[0,1,["H8085"]],[1,2,["(H853)"]],[2,4,["H1697"]],[4,6,["H2063"]],[6,7,["H1285"]],[7,9,["H1696"]],[9,10,["H413"]],[10,12,["H376"]],[12,14,["H3063"]],[14,16,["H5921"]],[16,18,["H3427"]],[18,20,["H3389"]]]},{"k":19229,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,10,["H430"]],[10,12,["H3478"]],[12,13,["H779"]],[13,16,["H376"]],[16,17,["H834"]],[17,18,["H8085"]],[18,19,["H3808","(H853)"]],[19,21,["H1697"]],[21,23,["H2063"]],[23,24,["H1285"]]]},{"k":19230,"v":[[0,1,["H834"]],[1,3,["H6680","(H853)"]],[3,5,["H1"]],[5,8,["H3117"]],[8,13,["H3318","(H853)"]],[13,17,["H4480","H776"]],[17,19,["H4714"]],[19,22,["H1270"]],[22,23,["H4480","H3564"]],[23,24,["H559"]],[24,25,["H8085"]],[25,27,["H6963"]],[27,29,["H6213"]],[29,33,["H3605"]],[33,34,["H834"]],[34,36,["H6680"]],[36,41,["H1961"]],[41,43,["H5971"]],[43,45,["H595"]],[45,47,["H1961"]],[47,49,["H430"]]]},{"k":19231,"v":[[0,1,["H4616"]],[1,4,["H6965","(H853)"]],[4,6,["H7621"]],[6,7,["H834"]],[7,10,["H7650"]],[10,13,["H1"]],[13,15,["H5414"]],[15,18,["H776"]],[18,19,["H2100"]],[19,21,["H2461"]],[21,23,["H1706"]],[23,27,["H2088"]],[27,28,["H3117"]],[28,30,["H6030"]],[30,33,["H559"]],[33,36,["H543"]],[36,38,["H3068"]]]},{"k":19232,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H7121","(H853)"]],[7,8,["H3605"]],[8,9,["H428"]],[9,10,["H1697"]],[10,13,["H5892"]],[13,15,["H3063"]],[15,19,["H2351"]],[19,21,["H3389"]],[21,22,["H559"]],[22,23,["H8085"]],[23,24,["(H853)"]],[24,26,["H1697"]],[26,28,["H2063"]],[28,29,["H1285"]],[29,31,["H6213"]],[31,32,[]]]},{"k":19233,"v":[[0,1,["H3588"]],[1,4,["H5749","H5749"]],[4,7,["H1"]],[7,10,["H3117"]],[10,15,["H5927","(H853)"]],[15,19,["H4480","H776"]],[19,21,["H4714"]],[21,23,["H5704"]],[23,24,["H2088"]],[24,25,["H3117"]],[25,27,["H7925"]],[27,29,["H5749"]],[29,30,["H559"]],[30,31,["H8085"]],[31,33,["H6963"]]]},{"k":19234,"v":[[0,3,["H8085"]],[3,4,["H3808"]],[4,5,["H3808"]],[5,6,["H5186","(H853)"]],[6,8,["H241"]],[8,10,["H1980"]],[10,12,["H376"]],[12,15,["H8307"]],[15,18,["H7451"]],[18,19,["H3820"]],[19,23,["H935"]],[23,24,["H5921"]],[24,25,["(H853)"]],[25,26,["H3605"]],[26,28,["H1697"]],[28,30,["H2063"]],[30,31,["H1285"]],[31,32,["H834"]],[32,34,["H6680"]],[34,37,["H6213"]],[37,40,["H6213"]],[40,42,["H3808"]]]},{"k":19235,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,8,["H7195"]],[8,10,["H4672"]],[10,13,["H376"]],[13,15,["H3063"]],[15,19,["H3427"]],[19,21,["H3389"]]]},{"k":19236,"v":[[0,4,["H7725"]],[4,5,["H5921"]],[5,7,["H5771"]],[7,10,["H7223","H1"]],[10,11,["H834"]],[11,12,["H3985"]],[12,14,["H8085","(H853)"]],[14,16,["H1697"]],[16,18,["H1992"]],[18,19,["H1980"]],[19,20,["H310"]],[20,21,["H312"]],[21,22,["H430"]],[22,24,["H5647"]],[24,27,["H1004"]],[27,29,["H3478"]],[29,32,["H1004"]],[32,34,["H3063"]],[34,36,["H6565","(H853)"]],[36,38,["H1285"]],[38,39,["H834"]],[39,41,["H3772"]],[41,42,["H854"]],[42,44,["H1"]]]},{"k":19237,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,9,["H935"]],[9,10,["H7451"]],[10,11,["H413"]],[11,13,["H834"]],[13,16,["H3808"]],[16,18,["H3201"]],[18,20,["H3318","(H4480)"]],[20,25,["H2199"]],[25,26,["H413"]],[26,30,["H3808"]],[30,31,["H8085"]],[31,32,["H413"]],[32,33,[]]]},{"k":19238,"v":[[0,4,["H5892"]],[4,6,["H3063"]],[6,8,["H3427"]],[8,10,["H3389"]],[10,11,["H1980"]],[11,13,["H2199"]],[13,14,["H413"]],[14,16,["H430"]],[16,18,["H834"]],[18,19,["H1992"]],[19,21,["H6999"]],[21,25,["H3808"]],[25,29,["H3467","H3467"]],[29,32,["H6256"]],[32,35,["H7451"]]]},{"k":19239,"v":[[0,1,["H3588"]],[1,5,["H4557"]],[5,8,["H5892"]],[8,9,["H1961"]],[9,11,["H430"]],[11,13,["H3063"]],[13,18,["H4557"]],[18,21,["H2351"]],[21,23,["H3389"]],[23,27,["H7760"]],[27,28,["H4196"]],[28,32,["H1322"]],[32,34,["H4196"]],[34,37,["H6999"]],[37,39,["H1168"]]]},{"k":19240,"v":[[0,2,["H6419"]],[2,3,["H408"]],[3,4,["H859"]],[4,5,["H1157"]],[5,6,["H2088"]],[6,7,["H5971"]],[7,8,["H408"]],[8,10,["H5375"]],[10,12,["H7440"]],[12,14,["H8605"]],[14,15,["H1157"]],[15,17,["H3588"]],[17,18,["H589"]],[18,20,["H369"]],[20,21,["H8085"]],[21,25,["H6256"]],[25,28,["H7121"]],[28,29,["H413"]],[29,31,["H1157"]],[31,33,["H7451"]]]},{"k":19241,"v":[[0,1,["H4100"]],[1,4,["H3039"]],[4,9,["H1004"]],[9,13,["H6213"]],[13,14,["H4209"]],[14,16,["H7227"]],[16,19,["H6944"]],[19,20,["H1320"]],[20,22,["H5674"]],[22,23,["H4480","H5921"]],[23,25,["H3588"]],[25,28,["H7451"]],[28,29,["H227"]],[29,31,["H5937"]]]},{"k":19242,"v":[[0,2,["H3068"]],[2,3,["H7121"]],[3,5,["H8034"]],[5,7,["H7488"]],[7,9,["H2132"]],[9,10,["H3303"]],[10,13,["H8389"]],[13,14,["H6529"]],[14,17,["H6963"]],[17,20,["H1419"]],[20,21,["H1999"]],[21,24,["H3341"]],[24,25,["H784"]],[25,26,["H5921"]],[26,30,["H1808"]],[30,34,["H7489"]]]},{"k":19243,"v":[[0,3,["H3068"]],[3,5,["H6635"]],[5,7,["H5193"]],[7,10,["H1696"]],[10,11,["H7451"]],[11,12,["H5921"]],[12,14,["H1558"]],[14,16,["H7451"]],[16,19,["H1004"]],[19,21,["H3478"]],[21,25,["H1004"]],[25,27,["H3063"]],[27,28,["H834"]],[28,31,["H6213"]],[31,38,["H3707"]],[38,41,["H6999"]],[41,43,["H1168"]]]},{"k":19244,"v":[[0,3,["H3068"]],[3,7,["H3045"]],[7,12,["H3045"]],[12,14,["H227"]],[14,16,["H7200"]],[16,19,["H4611"]]]},{"k":19245,"v":[[0,2,["H589"]],[2,6,["H3532"]],[6,9,["H441"]],[9,12,["H2986"]],[12,15,["H2873"]],[15,18,["H3045"]],[18,19,["H3808"]],[19,20,["H3588"]],[20,23,["H2803"]],[23,24,["H4284"]],[24,25,["H5921"]],[25,30,["H7843"]],[30,32,["H6086"]],[32,35,["H3899"]],[35,42,["H3772"]],[42,45,["H4480","H776"]],[45,48,["H2416"]],[48,51,["H8034"]],[51,54,["H3808"]],[54,55,["H5750"]],[55,56,["H2142"]]]},{"k":19246,"v":[[0,3,["H3068"]],[3,5,["H6635"]],[5,7,["H8199"]],[7,8,["H6664"]],[8,10,["H974"]],[10,12,["H3629"]],[12,15,["H3820"]],[15,18,["H7200"]],[18,20,["H5360"]],[20,21,["H4480"]],[21,23,["H3588"]],[23,24,["H413"]],[24,28,["H1540","(H853)"]],[28,30,["H7379"]]]},{"k":19247,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H5921"]],[6,8,["H376"]],[8,10,["H6068"]],[10,12,["H1245","(H853)"]],[12,14,["H5315"]],[14,15,["H559"]],[15,16,["H5012"]],[16,17,["H3808"]],[17,20,["H8034"]],[20,23,["H3068"]],[23,26,["H4191"]],[26,27,["H3808"]],[27,30,["H3027"]]]},{"k":19248,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,8,["H2009"]],[8,11,["H6485","H5921"]],[11,15,["H970"]],[15,17,["H4191"]],[17,20,["H2719"]],[20,22,["H1121"]],[22,25,["H1323"]],[25,27,["H4191"]],[27,29,["H7458"]]]},{"k":19249,"v":[[0,4,["H1961"]],[4,5,["H3808"]],[5,6,["H7611"]],[6,9,["H3588"]],[9,12,["H935"]],[12,13,["H7451"]],[13,14,["H413"]],[14,16,["H376"]],[16,18,["H6068"]],[18,21,["H8141"]],[21,24,["H6486"]]]},{"k":19250,"v":[[0,1,["H6662"]],[1,3,["H859"]],[3,5,["H3068"]],[5,6,["H3588"]],[6,8,["H7378"]],[8,9,["H413"]],[9,11,["H389"]],[11,14,["H1696"]],[14,15,["H854"]],[15,19,["H4941"]],[19,20,["H4069"]],[20,23,["H1870"]],[23,26,["H7563"]],[26,27,["H6743"]],[27,30,["H3605"]],[30,32,["H7951"]],[32,36,["H898","H899"]]]},{"k":19251,"v":[[0,3,["H5193"]],[3,5,["H1571"]],[5,9,["H8327"]],[9,11,["H1980"]],[11,12,["H1571"]],[12,15,["H6213"]],[15,16,["H6529"]],[16,17,["H859"]],[17,19,["H7138"]],[19,22,["H6310"]],[22,24,["H7350"]],[24,27,["H4480","H3629"]]]},{"k":19252,"v":[[0,2,["H859"]],[2,4,["H3068"]],[4,5,["H3045"]],[5,9,["H7200"]],[9,12,["H974"]],[12,14,["H3820"]],[14,15,["H854"]],[15,19,["H5423"]],[19,21,["H6629"]],[21,24,["H2878"]],[24,26,["H6942"]],[26,30,["H3117"]],[30,32,["H2028"]]]},{"k":19253,"v":[[0,2,["H5704","H4970"]],[2,5,["H776"]],[5,6,["H56"]],[6,9,["H6212"]],[9,11,["H3605"]],[11,12,["H7704"]],[12,13,["H3001"]],[13,16,["H4480","H7451"]],[16,20,["H3427"]],[20,23,["H929"]],[23,25,["H5595"]],[25,28,["H5775"]],[28,29,["H3588"]],[29,31,["H559"]],[31,34,["H3808"]],[34,35,["H7200","(H853)"]],[35,38,["H319"]]]},{"k":19254,"v":[[0,1,["H3588"]],[1,4,["H7323"]],[4,5,["H854"]],[5,7,["H7273"]],[7,11,["H3811"]],[11,14,["H349"]],[14,17,["H8474"]],[17,18,["H854"]],[18,19,["H5483"]],[19,24,["H776"]],[24,26,["H7965"]],[26,28,["H859"]],[28,29,["H982"]],[29,34,["H349"]],[34,37,["H6213"]],[37,40,["H1347"]],[40,42,["H3383"]]]},{"k":19255,"v":[[0,1,["H3588"]],[1,2,["H1571"]],[2,4,["H251"]],[4,7,["H1004"]],[7,10,["H1"]],[10,11,["H1571"]],[11,12,["H1992"]],[12,15,["H898"]],[15,18,["H1571"]],[18,19,["H1992"]],[19,21,["H7121"]],[21,23,["H4392"]],[23,24,["H310"]],[24,26,["H539"]],[26,28,["H408"]],[28,29,["H3588"]],[29,31,["H1696"]],[31,33,["H2896"]],[33,34,["H413"]],[34,35,[]]]},{"k":19256,"v":[[0,3,["H5800","(H853)"]],[3,5,["H1004"]],[5,8,["H5203","(H853)"]],[8,10,["H5159"]],[10,13,["H5414","(H853)"]],[13,16,["H3033"]],[16,19,["H5315"]],[19,22,["H3709"]],[22,25,["H341"]]]},{"k":19257,"v":[[0,2,["H5159"]],[2,3,["H1961"]],[3,8,["H738"]],[8,11,["H3293"]],[11,14,["H5414","H6963"]],[14,15,["H5921"]],[15,17,["H5921","H3651"]],[17,20,["H8130"]],[20,21,[]]]},{"k":19258,"v":[[0,2,["H5159"]],[2,8,["H6641"]],[8,9,["H5861"]],[9,11,["H5861"]],[11,13,["H5439"]],[13,15,["H5921"]],[15,17,["H1980"]],[17,19,["H622"]],[19,20,["H3605"]],[20,22,["H2416"]],[22,25,["H7704"]],[25,26,["H857"]],[26,28,["H402"]]]},{"k":19259,"v":[[0,1,["H7227"]],[1,2,["H7462"]],[2,4,["H7843"]],[4,6,["H3754"]],[6,13,["H947","(H853)","H2513"]],[13,16,["H5414","(H853)"]],[16,18,["H2532"]],[18,19,["H2513"]],[19,21,["H8077"]],[21,22,["H4057"]]]},{"k":19260,"v":[[0,3,["H7760"]],[3,5,["H8077"]],[5,8,["H8076"]],[8,10,["H56"]],[10,11,["H5921"]],[11,14,["H3605"]],[14,15,["H776"]],[15,17,["H6213"]],[17,18,["H8074"]],[18,19,["H3588"]],[19,20,["H369"]],[20,21,["H376"]],[21,22,["H7760"]],[22,24,["H5921"]],[24,25,["H3820"]]]},{"k":19261,"v":[[0,2,["H7703"]],[2,4,["H935"]],[4,5,["H5921"]],[5,6,["H3605"]],[6,8,["H8205"]],[8,11,["H4057"]],[11,12,["H3588"]],[12,14,["H2719"]],[14,17,["H3068"]],[17,19,["H398"]],[19,23,["H4480","H7097"]],[23,26,["H776"]],[26,28,["H5704"]],[28,31,["H7097"]],[31,34,["H776"]],[34,35,["H369","H3605"]],[35,36,["H1320"]],[36,39,["H7965"]]]},{"k":19262,"v":[[0,3,["H2232"]],[3,4,["H2406"]],[4,7,["H7114"]],[7,8,["H6975"]],[8,14,["H2470"]],[14,17,["H3808"]],[17,18,["H3276"]],[18,23,["H954"]],[23,26,["H4480","H8393"]],[26,30,["H4480","H2740"]],[30,31,["H639"]],[31,34,["H3068"]]]},{"k":19263,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5921"]],[5,6,["H3605"]],[6,8,["H7451"]],[8,9,["H7934"]],[9,11,["H5060"]],[11,13,["H5159"]],[13,14,["H834"]],[14,17,["(H853)"]],[17,19,["H5971","(H853)"]],[19,20,["H3478"]],[20,22,["H5157"]],[22,23,["H2009"]],[23,28,["H5428"]],[28,29,["H4480","H5921"]],[29,31,["H127"]],[31,34,["H5428"]],[34,36,["H1004"]],[36,38,["H3063"]],[38,40,["H4480","H8432"]],[40,41,[]]]},{"k":19264,"v":[[0,6,["H1961"]],[6,8,["H310"]],[8,13,["H5428","(H853)"]],[13,16,["H7725"]],[16,19,["H7355"]],[19,26,["H7725"]],[26,28,["H376"]],[28,31,["H5159"]],[31,34,["H376"]],[34,37,["H776"]]]},{"k":19265,"v":[[0,6,["H1961"]],[6,7,["H518"]],[7,11,["H3925","H3925","(H853)"]],[11,13,["H1870"]],[13,16,["H5971"]],[16,18,["H7650"]],[18,21,["H8034"]],[21,23,["H3068"]],[23,24,["H2416"]],[24,25,["H834"]],[25,27,["H3925","(H853)"]],[27,29,["H5971"]],[29,31,["H7650"]],[31,33,["H1168"]],[33,38,["H1129"]],[38,41,["H8432"]],[41,44,["H5971"]]]},{"k":19266,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H8085"]],[6,11,["H5428","H5428"]],[11,13,["H6","(H853)"]],[13,14,["H1931"]],[14,15,["H1471"]],[15,16,["H5002"]],[16,18,["H3068"]]]},{"k":19267,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,7,["H1980"]],[7,9,["H7069"]],[9,12,["H6593"]],[12,13,["H232"]],[13,15,["H7760"]],[15,17,["H5921"]],[17,19,["H4975"]],[19,21,["H935"]],[21,23,["H3808"]],[23,25,["H4325"]]]},{"k":19268,"v":[[0,3,["H7069","(H853)"]],[3,5,["H232"]],[5,9,["H1697"]],[9,12,["H3068"]],[12,14,["H7760"]],[14,16,["H5921"]],[16,18,["H4975"]]]},{"k":19269,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,12,["H8145"]],[12,13,["H559"]]]},{"k":19270,"v":[[0,1,["H3947","(H853)"]],[1,3,["H232"]],[3,4,["H834"]],[4,7,["H7069"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H4975"]],[12,14,["H6965"]],[14,15,["H1980"]],[15,17,["H6578"]],[17,19,["H2934"]],[19,21,["H8033"]],[21,24,["H5357"]],[24,27,["H5553"]]]},{"k":19271,"v":[[0,3,["H1980"]],[3,5,["H2934"]],[5,8,["H6578"]],[8,9,["H834"]],[9,11,["H3068"]],[11,12,["H6680"]],[12,13,[]]]},{"k":19272,"v":[[0,5,["H1961"]],[5,6,["H4480","H7093"]],[6,7,["H7227"]],[7,8,["H3117"]],[8,11,["H3068"]],[11,12,["H559"]],[12,13,["H413"]],[13,15,["H6965"]],[15,16,["H1980"]],[16,18,["H6578"]],[18,20,["H3947","(H853)"]],[20,22,["H232"]],[22,24,["H4480","H8033"]],[24,25,["H834"]],[25,27,["H6680"]],[27,30,["H2934"]],[30,31,["H8033"]]]},{"k":19273,"v":[[0,3,["H1980"]],[3,5,["H6578"]],[5,7,["H2658"]],[7,9,["H3947","(H853)"]],[9,11,["H232"]],[11,12,["H4480"]],[12,14,["H4725"]],[14,15,["H834","H8033"]],[15,18,["H2934"]],[18,21,["H2009"]],[21,23,["H232"]],[23,25,["H7843"]],[25,28,["H6743"]],[28,30,["H3808","H3605"]]]},{"k":19274,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":19275,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,7,["H3602"]],[7,10,["H7843"]],[10,12,["H1347"]],[12,14,["H3063"]],[14,17,["H7227"]],[17,18,["H1347"]],[18,20,["H3389"]]]},{"k":19276,"v":[[0,1,["H2088"]],[1,2,["H7451"]],[2,3,["H5971"]],[3,5,["H3987"]],[5,7,["H8085","(H853)"]],[7,9,["H1697"]],[9,11,["H1980"]],[11,14,["H8307"]],[14,17,["H3820"]],[17,19,["H1980"]],[19,20,["H310"]],[20,21,["H312"]],[21,22,["H430"]],[22,24,["H5647"]],[24,28,["H7812"]],[28,32,["H1961"]],[32,34,["H2088"]],[34,35,["H232"]],[35,36,["H834"]],[36,38,["H6743"]],[38,40,["H3808","H3605"]]]},{"k":19277,"v":[[0,1,["H3588"]],[1,2,["H834"]],[2,4,["H232"]],[4,5,["H1692"]],[5,6,["H413"]],[6,8,["H4975"]],[8,11,["H376"]],[11,12,["H3651"]],[12,17,["H1692"]],[17,18,["H413"]],[18,19,["(H853)"]],[19,21,["H3605"]],[21,22,["H1004"]],[22,24,["H3478"]],[24,27,["H3605"]],[27,28,["H1004"]],[28,30,["H3063"]],[30,31,["H5002"]],[31,33,["H3068"]],[33,37,["H1961"]],[37,42,["H5971"]],[42,46,["H8034"]],[46,50,["H8416"]],[50,54,["H8597"]],[54,58,["H3808"]],[58,59,["H8085"]]]},{"k":19278,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,6,["(H853)"]],[6,7,["H2088"]],[7,8,["H1697"]],[8,9,["H3541"]],[9,10,["H559"]],[10,12,["H3068"]],[12,13,["H430"]],[13,15,["H3478"]],[15,16,["H3605"]],[16,17,["H5035"]],[17,20,["H4390"]],[20,22,["H3196"]],[22,26,["H559"]],[26,27,["H413"]],[27,31,["H3808"]],[31,33,["H3045","H3045"]],[33,34,["H3588"]],[34,35,["H3605"]],[35,36,["H5035"]],[36,39,["H4390"]],[39,41,["H3196"]]]},{"k":19279,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H3541"]],[7,8,["H559"]],[8,10,["H3068"]],[10,11,["H2009"]],[11,14,["H4390","(H853)"]],[14,15,["H3605"]],[15,17,["H3427"]],[17,19,["H2063"]],[19,20,["H776"]],[20,23,["H4428"]],[23,25,["H3427"]],[25,26,["H5921"]],[26,27,["H1732"]],[27,28,["H3678"]],[28,31,["H3548"]],[31,34,["H5030"]],[34,36,["H3605"]],[36,38,["H3427"]],[38,40,["H3389"]],[40,42,["H7943"]]]},{"k":19280,"v":[[0,4,["H5310"]],[4,6,["H376"]],[6,7,["H413"]],[7,8,["H251"]],[8,11,["H1"]],[11,14,["H1121"]],[14,15,["H3162"]],[15,16,["H5002"]],[16,18,["H3068"]],[18,21,["H3808"]],[21,22,["H2550"]],[22,23,["H3808"]],[23,24,["H2347"]],[24,25,["H3808"]],[25,27,["H7355"]],[27,29,["H4480","H7843"]],[29,30,[]]]},{"k":19281,"v":[[0,1,["H8085"]],[1,5,["H238"]],[5,7,["H408"]],[7,8,["H1361"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,13,["H1696"]]]},{"k":19282,"v":[[0,1,["H5414"]],[1,2,["H3519"]],[2,5,["H3068"]],[5,7,["H430"]],[7,8,["H2962"]],[8,11,["H2821"]],[11,13,["H2962"]],[13,15,["H7272"]],[15,16,["H5062"]],[16,17,["H5921"]],[17,19,["H5399"]],[19,20,["H2022"]],[20,24,["H6960"]],[24,26,["H216"]],[26,28,["H7760"]],[28,34,["H6757"]],[34,36,["H7896"]],[36,39,["H6205"]]]},{"k":19283,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H8085"]],[6,9,["H5315"]],[9,11,["H1058"]],[11,14,["H4565"]],[14,15,["H4480","H6440"]],[15,17,["H1466"]],[17,20,["H5869"]],[20,23,["H1830","H1830"]],[23,26,["H3381"]],[26,28,["H1832"]],[28,29,["H3588"]],[29,31,["H3068"]],[31,32,["H5739"]],[32,36,["H7617"]]]},{"k":19284,"v":[[0,1,["H559"]],[1,4,["H4428"]],[4,8,["H1377"]],[8,10,["H8213"]],[10,12,["H3427"]],[12,13,["H3588"]],[13,15,["H4761"]],[15,18,["H3381"]],[18,21,["H5850"]],[21,24,["H8597"]]]},{"k":19285,"v":[[0,2,["H5892"]],[2,5,["H5045"]],[5,9,["H5462"]],[9,11,["H369"]],[11,13,["H6605"]],[13,15,["H3063"]],[15,20,["H1540"]],[20,21,["H3605"]],[21,27,["H7965"]],[27,30,["H1540"]]]},{"k":19286,"v":[[0,2,["H5375"]],[2,4,["H5869"]],[4,6,["H7200"]],[6,9,["H935"]],[9,12,["H4480","H6828"]],[12,13,["H346"]],[13,16,["H5739"]],[16,19,["H5414"]],[19,22,["H8597"]],[22,23,["H6629"]]]},{"k":19287,"v":[[0,1,["H4100"]],[1,4,["H559"]],[4,5,["H3588"]],[5,8,["H6485","H5921"]],[8,11,["H859"]],[11,13,["H3925"]],[13,17,["H441"]],[17,20,["H7218"]],[20,21,["H5921"]],[21,24,["H3808"]],[24,25,["H2256"]],[25,26,["H270"]],[26,28,["H3644"]],[28,30,["H802"]],[30,32,["H3205"]]]},{"k":19288,"v":[[0,2,["H3588"]],[2,4,["H559"]],[4,7,["H3824"]],[7,8,["H4069"]],[8,9,["H7122"]],[9,11,["H428"]],[11,16,["H7230"]],[16,19,["H5771"]],[19,22,["H7757"]],[22,23,["H1540"]],[23,26,["H6119"]],[26,28,["H2554"]]]},{"k":19289,"v":[[0,3,["H3569"]],[3,4,["H2015"]],[4,6,["H5785"]],[6,9,["H5246"]],[9,11,["H2272"]],[11,13,["H3201"]],[13,14,["H859"]],[14,15,["H1571"]],[15,17,["H3190"]],[17,20,["H3928"]],[20,23,["H7489"]]]},{"k":19290,"v":[[0,4,["H6327"]],[4,8,["H7179"]],[8,11,["H5674"]],[11,14,["H7307"]],[14,17,["H4057"]]]},{"k":19291,"v":[[0,1,["H2088"]],[1,4,["H1486"]],[4,6,["H4490"]],[6,9,["H4055"]],[9,10,["H4480","H854"]],[10,12,["H5002"]],[12,14,["H3068"]],[14,15,["H834"]],[15,18,["H7911"]],[18,21,["H982"]],[21,23,["H8267"]]]},{"k":19292,"v":[[0,1,["H1571"]],[1,3,["H589"]],[3,4,["H2834"]],[4,6,["H7757"]],[6,7,["H5921"]],[7,9,["H6440"]],[9,12,["H7036"]],[12,14,["H7200"]]]},{"k":19293,"v":[[0,3,["H7200"]],[3,5,["H5004"]],[5,8,["H4684"]],[8,10,["H2154"]],[10,13,["H2184"]],[13,16,["H8251"]],[16,17,["H5921"]],[17,19,["H1389"]],[19,22,["H7704"]],[22,23,["H188"]],[23,27,["H3389"]],[27,30,["H3808"]],[30,33,["H2891"]],[33,34,["H310"]],[34,37,["H5750"]],[37,38,[]]]},{"k":19294,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H834"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,10,["H5921","H1697"]],[10,12,["H1226"]]]},{"k":19295,"v":[[0,1,["H3063"]],[1,2,["H56"]],[2,5,["H8179"]],[5,7,["H535"]],[7,10,["H6937"]],[10,13,["H776"]],[13,16,["H6682"]],[16,18,["H3389"]],[18,21,["H5927"]]]},{"k":19296,"v":[[0,3,["H117"]],[3,5,["H7971"]],[5,8,["H6810"]],[8,11,["H4325"]],[11,13,["H935"]],[13,14,["H5921"]],[14,16,["H1356"]],[16,18,["H4672"]],[18,19,["H3808"]],[19,20,["H4325"]],[20,22,["H7725"]],[22,25,["H3627"]],[25,26,["H7387"]],[26,29,["H954"]],[29,31,["H3637"]],[31,33,["H2645"]],[33,35,["H7218"]]]},{"k":19297,"v":[[0,1,["H5668"]],[1,3,["H127"]],[3,5,["H2865"]],[5,6,["H3588"]],[6,8,["H1961"]],[8,9,["H3808"]],[9,10,["H1653"]],[10,13,["H776"]],[13,15,["H406"]],[15,17,["H954"]],[17,19,["H2645"]],[19,21,["H7218"]]]},{"k":19298,"v":[[0,1,["H1571"]],[1,3,["H365"]],[3,5,["H3205"]],[5,8,["H7704"]],[8,10,["H5800"]],[10,12,["H3588"]],[12,14,["H1961"]],[14,15,["H3808"]],[15,16,["H1877"]]]},{"k":19299,"v":[[0,4,["H6501"]],[4,6,["H5975"]],[6,7,["H5921"]],[7,10,["H8205"]],[10,13,["H7602"]],[13,15,["H7307"]],[15,17,["H8577"]],[17,19,["H5869"]],[19,21,["H3615"]],[21,22,["H3588"]],[22,25,["H369"]],[25,26,["H6212"]]]},{"k":19300,"v":[[0,2,["H3068"]],[2,3,["H518"]],[3,5,["H5771"]],[5,6,["H6030"]],[6,9,["H6213"]],[9,15,["H4616","H8034"]],[15,16,["H3588"]],[16,18,["H4878"]],[18,20,["H7231"]],[20,23,["H2398"]],[23,25,[]]]},{"k":19301,"v":[[0,3,["H4723"]],[3,5,["H3478"]],[5,7,["H3467"]],[7,10,["H6256"]],[10,12,["H6869"]],[12,13,["H4100"]],[13,16,["H1961"]],[16,19,["H1616"]],[19,22,["H776"]],[22,27,["H732"]],[27,30,["H5186"]],[30,32,["H3885"]],[32,35,[]]]},{"k":19302,"v":[[0,1,["H4100"]],[1,4,["H1961"]],[4,7,["H376"]],[7,8,["H1724"]],[8,12,["H1368"]],[12,14,["H3201","H3808"]],[14,15,["H3467"]],[15,17,["H859"]],[17,19,["H3068"]],[19,23,["H7130"]],[23,29,["H7121"]],[29,32,["H8034"]],[32,33,["H5117"]],[33,35,["H408"]]]},{"k":19303,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H2088"]],[6,7,["H5971"]],[7,8,["H3651"]],[8,11,["H157"]],[11,13,["H5128"]],[13,16,["H3808"]],[16,17,["H2820"]],[17,19,["H7272"]],[19,22,["H3068"]],[22,24,["H3808"]],[24,25,["H7521"]],[25,29,["H6258"]],[29,30,["H2142"]],[30,32,["H5771"]],[32,34,["H6485"]],[34,36,["H2403"]]]},{"k":19304,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,7,["H6419"]],[7,8,["H408"]],[8,9,["H1157"]],[9,10,["H2088"]],[10,11,["H5971"]],[11,14,["H2896"]]]},{"k":19305,"v":[[0,1,["H3588"]],[1,3,["H6684"]],[3,6,["H369"]],[6,7,["H8085","H413"]],[7,9,["H7440"]],[9,11,["H3588"]],[11,13,["H5927"]],[13,15,["H5930"]],[15,18,["H4503"]],[18,21,["H369"]],[21,22,["H7521"]],[22,24,["H3588"]],[24,25,["H595"]],[25,27,["H3615"]],[27,31,["H2719"]],[31,35,["H7458"]],[35,39,["H1698"]]]},{"k":19306,"v":[[0,2,["H559"]],[2,4,["H162"]],[4,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,9,["H5030"]],[9,10,["H559"]],[10,15,["H3808"]],[15,16,["H7200"]],[16,18,["H2719"]],[18,19,["H3808"]],[19,22,["H1961"]],[22,23,["H7458"]],[23,24,["H3588"]],[24,27,["H5414"]],[27,29,["H571"]],[29,30,["H7965"]],[30,32,["H2088"]],[32,33,["H4725"]]]},{"k":19307,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,8,["H5030"]],[8,9,["H5012"]],[9,10,["H8267"]],[10,13,["H8034"]],[13,15,["H7971"]],[15,17,["H3808"]],[17,18,["H3808"]],[18,21,["H6680"]],[21,23,["H3808"]],[23,24,["H1696"]],[24,25,["H413"]],[25,27,["H1992"]],[27,28,["H5012"]],[28,32,["H8267"]],[32,33,["H2377"]],[33,35,["H7081"]],[35,40,["H434"]],[40,43,["H8649"]],[43,46,["H3820"]]]},{"k":19308,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H5921"]],[6,8,["H5030"]],[8,10,["H5012"]],[10,13,["H8034"]],[13,15,["H589"]],[15,16,["H7971"]],[16,18,["H3808"]],[18,20,["H1992"]],[20,21,["H559"]],[21,22,["H2719"]],[22,24,["H7458"]],[24,26,["H3808"]],[26,27,["H1961"]],[27,29,["H2063"]],[29,30,["H776"]],[30,32,["H2719"]],[32,34,["H7458"]],[34,36,["H1992"]],[36,37,["H5030"]],[37,39,["H8552"]]]},{"k":19309,"v":[[0,3,["H5971"]],[3,5,["H834"]],[5,6,["H1992"]],[6,7,["H5012"]],[7,9,["H1961"]],[9,11,["H7993"]],[11,14,["H2351"]],[14,16,["H3389"]],[16,17,["H4480","H6440"]],[17,20,["H7458"]],[20,23,["H2719"]],[23,28,["H369"]],[28,30,["H6912"]],[30,31,["H1992"]],[31,32,["H1992"]],[32,34,["H802"]],[34,37,["H1121"]],[37,40,["H1323"]],[40,44,["H8210","(H853)"]],[44,46,["H7451"]],[46,47,["H5921"]],[47,48,[]]]},{"k":19310,"v":[[0,4,["H559","(H853)"]],[4,5,["H2088"]],[5,6,["H1697"]],[6,7,["H413"]],[7,11,["H5869"]],[11,13,["H3381"]],[13,15,["H1832"]],[15,16,["H3915"]],[16,18,["H3119"]],[18,22,["H408"]],[22,23,["H1820"]],[23,24,["H3588"]],[24,26,["H1330"]],[26,27,["H1323"]],[27,30,["H5971"]],[30,32,["H7665"]],[32,35,["H1419"]],[35,36,["H7667"]],[36,39,["H3966"]],[39,40,["H2470"]],[40,41,["H4347"]]]},{"k":19311,"v":[[0,1,["H518"]],[1,4,["H3318"]],[4,7,["H7704"]],[7,9,["H2009"]],[9,11,["H2491"]],[11,14,["H2719"]],[14,16,["H518"]],[16,18,["H935"]],[18,21,["H5892"]],[21,23,["H2009"]],[23,27,["H8463"]],[27,29,["H7458"]],[29,30,["H3588"]],[30,31,["H1571"]],[31,33,["H5030"]],[33,34,["H1571"]],[34,36,["H3548"]],[36,38,["H5503"]],[38,39,["H413"]],[39,41,["H776"]],[41,44,["H3045"]],[44,45,["H3808"]]]},{"k":19312,"v":[[0,4,["H3988","H3988","(H853)"]],[4,5,["H3063"]],[5,8,["H5315"]],[8,9,["H1602"]],[9,10,["H6726"]],[10,11,["H4069"]],[11,14,["H5221"]],[14,19,["H369"]],[19,20,["H4832"]],[20,24,["H6960"]],[24,26,["H7965"]],[26,30,["H369"]],[30,31,["H2896"]],[31,35,["H6256"]],[35,37,["H4832"]],[37,39,["H2009"]],[39,40,["H1205"]]]},{"k":19313,"v":[[0,2,["H3045"]],[2,4,["H3068"]],[4,6,["H7562"]],[6,9,["H5771"]],[9,12,["H1"]],[12,13,["H3588"]],[13,16,["H2398"]],[16,18,[]]]},{"k":19314,"v":[[0,2,["H408"]],[2,3,["H5006"]],[3,8,["H4616","H8034"]],[8,10,["H408"]],[10,11,["H5034"]],[11,13,["H3678"]],[13,16,["H3519"]],[16,17,["H2142"]],[17,18,["H6565"]],[18,19,["H408"]],[19,21,["H1285"]],[21,22,["H854"]],[22,23,[]]]},{"k":19315,"v":[[0,2,["H3426"]],[2,6,["H1892"]],[6,9,["H1471"]],[9,13,["H1652"]],[13,14,["H518"]],[14,17,["H8064"]],[17,18,["H5414"]],[18,19,["H7241"]],[19,21,["H3808"]],[21,22,["H859"]],[22,23,["H1931"]],[23,25,["H3068"]],[25,27,["H430"]],[27,31,["H6960"]],[31,34,["H3588"]],[34,35,["H859"]],[35,37,["H6213","(H853)"]],[37,38,["H3605"]],[38,39,["H428"]],[39,40,[]]]},{"k":19316,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,7,["H518"]],[7,8,["H4872"]],[8,10,["H8050"]],[10,11,["H5975"]],[11,12,["H6440"]],[12,16,["H5315"]],[16,18,["H369"]],[18,20,["H413"]],[20,21,["H2088"]],[21,22,["H5971"]],[22,23,["H7971"]],[23,26,["H4480","H5921"]],[26,28,["H6440"]],[28,33,["H3318"]]]},{"k":19317,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,9,["H559"]],[9,10,["H413"]],[10,12,["H575"]],[12,16,["H3318"]],[16,20,["H559","H413"]],[20,22,["H3541"]],[22,23,["H559"]],[23,25,["H3068"]],[25,27,["H834"]],[27,30,["H4194"]],[30,32,["H4194"]],[32,35,["H834"]],[35,39,["H2719"]],[39,42,["H2719"]],[42,45,["H834"]],[45,49,["H7458"]],[49,52,["H7458"]],[52,55,["H834"]],[55,59,["H7628"]],[59,62,["H7628"]]]},{"k":19318,"v":[[0,4,["H6485"]],[4,5,["H5921"]],[5,7,["H702"]],[7,8,["H4940"]],[8,9,["H5002"]],[9,11,["H3068","(H853)"]],[11,13,["H2719"]],[13,15,["H2026"]],[15,18,["H3611"]],[18,20,["H5498"]],[20,23,["H5775"]],[23,26,["H8064"]],[26,29,["H929"]],[29,32,["H776"]],[32,34,["H398"]],[34,36,["H7843"]]]},{"k":19319,"v":[[0,4,["H5414"]],[4,8,["H2189"]],[8,10,["H3605"]],[10,11,["H4467"]],[11,14,["H776"]],[14,16,["H1558"]],[16,17,["H4519"]],[17,19,["H1121"]],[19,21,["H3169"]],[21,22,["H4428"]],[22,24,["H3063"]],[24,25,["H5921"]],[25,27,["H834"]],[27,29,["H6213"]],[29,31,["H3389"]]]},{"k":19320,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,5,["H2550"]],[5,6,["H5921"]],[6,9,["H3389"]],[9,11,["H4310"]],[11,13,["H5110"]],[13,16,["H4310"]],[16,19,["H5493"]],[19,21,["H7592"]],[21,24,["H7965"]]]},{"k":19321,"v":[[0,1,["H859"]],[1,3,["H5203"]],[3,5,["H5002"]],[5,7,["H3068"]],[7,10,["H1980"]],[10,11,["H268"]],[11,16,["H5186","(H853)"]],[16,18,["H3027"]],[18,19,["H5921"]],[19,22,["H7843"]],[22,26,["H3811"]],[26,28,["H5162"]]]},{"k":19322,"v":[[0,4,["H2219"]],[4,8,["H4214"]],[8,11,["H8179"]],[11,14,["H776"]],[14,17,["H7921"]],[17,23,["H6","(H853)"]],[23,25,["H5971"]],[25,28,["H7725"]],[28,29,["H3808"]],[29,32,["H4480","H1870"]]]},{"k":19323,"v":[[0,2,["H490"]],[2,4,["H6105"]],[4,9,["H4480","H2344"]],[9,12,["H3220"]],[12,15,["H935"]],[15,18,["H5921"]],[18,20,["H517"]],[20,24,["H970"]],[24,26,["H7703"]],[26,28,["H6672"]],[28,34,["H5307"]],[34,35,["H5921"]],[35,37,["H6597"]],[37,39,["H928"]],[39,42,["H5892"]]]},{"k":19324,"v":[[0,4,["H3205"]],[4,5,["H7651"]],[5,6,["H535"]],[6,10,["H5301"]],[10,12,["H5315"]],[12,14,["H8121"]],[14,17,["H935"]],[17,18,["H5750"]],[18,22,["H3119"]],[22,26,["H954"]],[26,28,["H2659"]],[28,31,["H7611"]],[31,36,["H5414"]],[36,39,["H2719"]],[39,40,["H6440"]],[40,42,["H341"]],[42,43,["H5002"]],[43,45,["H3068"]]]},{"k":19325,"v":[[0,1,["H188"]],[1,5,["H517"]],[5,6,["H3588"]],[6,9,["H3205"]],[9,12,["H376"]],[12,14,["H7379"]],[14,17,["H376"]],[17,19,["H4066"]],[19,22,["H3605"]],[22,23,["H776"]],[23,26,["H3808"]],[26,29,["H5383"]],[29,30,["H3808"]],[30,37,["H5383"]],[37,40,["H3605"]],[40,44,["H7043"]],[44,45,[]]]},{"k":19326,"v":[[0,2,["H3068"]],[2,3,["H559"]],[3,4,["H518","H3808"]],[4,8,["H2896"]],[8,11,["H8293"]],[11,12,["H518","H3808"]],[12,15,["(H853)"]],[15,17,["H341"]],[17,19,["H6293"]],[19,24,["H6256"]],[24,26,["H7451"]],[26,30,["H6256"]],[30,32,["H6869"]]]},{"k":19327,"v":[[0,2,["H1270"]],[2,3,["H7489"]],[3,5,["H4480","H6828"]],[5,6,["H1270"]],[6,9,["H5178"]]]},{"k":19328,"v":[[0,2,["H2428"]],[2,5,["H214"]],[5,8,["H5414"]],[8,11,["H957"]],[11,12,["H3808"]],[12,13,["H4242"]],[13,17,["H3605"]],[17,19,["H2403"]],[19,22,["H3605"]],[22,24,["H1366"]]]},{"k":19329,"v":[[0,7,["H5674"]],[7,8,["H854"]],[8,10,["H341"]],[10,13,["H776"]],[13,16,["H3045"]],[16,17,["H3808"]],[17,18,["H3588"]],[18,20,["H784"]],[20,22,["H6919"]],[22,25,["H639"]],[25,28,["H3344"]],[28,29,["H5921"]],[29,30,[]]]},{"k":19330,"v":[[0,2,["H3068"]],[2,3,["H859"]],[3,4,["H3045"]],[4,5,["H2142"]],[5,8,["H6485"]],[8,11,["H5358"]],[11,15,["H4480","H7291"]],[15,16,["H3947"]],[16,18,["H408"]],[18,22,["H750","H639"]],[22,23,["H3045"]],[23,25,["H5921"]],[25,30,["H5375"]],[30,31,["H2781"]]]},{"k":19331,"v":[[0,2,["H1697"]],[2,4,["H4672"]],[4,8,["H398"]],[8,12,["H1697"]],[12,13,["H1961"]],[13,17,["H8342"]],[17,19,["H8057"]],[19,22,["H3824"]],[22,23,["H3588"]],[23,26,["H7121"]],[26,27,["H5921"]],[27,29,["H8034"]],[29,31,["H3068"]],[31,32,["H430"]],[32,34,["H6635"]]]},{"k":19332,"v":[[0,2,["H3427"]],[2,3,["H3808"]],[3,6,["H5475"]],[6,9,["H7832"]],[9,11,["H5937"]],[11,13,["H3427"]],[13,14,["H910"]],[14,15,["H4480","H6440"]],[15,18,["H3027"]],[18,19,["H3588"]],[19,22,["H4390"]],[22,25,["H2195"]]]},{"k":19333,"v":[[0,1,["H4100"]],[1,2,["H1961"]],[2,4,["H3511"]],[4,5,["H5331"]],[5,8,["H4347"]],[8,9,["H605"]],[9,11,["H3985"]],[11,14,["H7495"]],[14,18,["H1961","H1961"]],[18,21,["H3644"]],[21,23,["H391"]],[23,26,["H4325"]],[26,28,["H3808","H539"]]]},{"k":19334,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H518"]],[6,8,["H7725"]],[8,14,["H7725"]],[14,18,["H5975"]],[18,19,["H6440"]],[19,22,["H518"]],[22,25,["H3318"]],[25,27,["H3368"]],[27,30,["H4480","H2151"]],[30,33,["H1961"]],[33,36,["H6310"]],[36,39,["H7725"]],[39,40,["H413"]],[40,43,["H7725"]],[43,44,["H3808"]],[44,45,["H859"]],[45,46,["H413"]],[46,47,[]]]},{"k":19335,"v":[[0,4,["H5414"]],[4,7,["H2088"]],[7,8,["H5971"]],[8,10,["H1219"]],[10,11,["H5178"]],[11,12,["H2346"]],[12,16,["H3898"]],[16,17,["H413"]],[17,22,["H3808"]],[22,23,["H3201"]],[23,26,["H3588"]],[26,27,["H589"]],[27,29,["H854"]],[29,32,["H3467"]],[32,36,["H5337"]],[36,38,["H5002"]],[38,40,["H3068"]]]},{"k":19336,"v":[[0,4,["H5337"]],[4,9,["H4480","H3027"]],[9,12,["H7451"]],[12,16,["H6299"]],[16,21,["H4480","H3709"]],[21,24,["H6184"]]]},{"k":19337,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,8,["H413"]],[8,10,["H559"]]]},{"k":19338,"v":[[0,3,["H3808"]],[3,4,["H3947"]],[4,7,["H802"]],[7,8,["H3808"]],[8,11,["H1961"]],[11,12,["H1121"]],[12,14,["H1323"]],[14,16,["H2088"]],[16,17,["H4725"]]]},{"k":19339,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H5921"]],[6,8,["H1121"]],[8,10,["H5921"]],[10,12,["H1323"]],[12,15,["H3209"]],[15,17,["H2088"]],[17,18,["H4725"]],[18,20,["H5921"]],[20,22,["H517"]],[22,24,["H3205"]],[24,27,["H5921"]],[27,29,["H1"]],[29,31,["H3205"]],[31,34,["H2088"]],[34,35,["H776"]]]},{"k":19340,"v":[[0,3,["H4191"]],[3,5,["H8463"]],[5,6,["H4463"]],[6,9,["H3808"]],[9,11,["H5594"]],[11,12,["H3808"]],[12,16,["H6912"]],[16,22,["H1828"]],[22,23,["H5921"]],[23,25,["H6440"]],[25,28,["H127"]],[28,32,["H1961"]],[32,33,["H3615"]],[33,36,["H2719"]],[36,39,["H7458"]],[39,42,["H5038"]],[42,45,["H3978"]],[45,48,["H5775"]],[48,50,["H8064"]],[50,54,["H929"]],[54,57,["H776"]]]},{"k":19341,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H935"]],[6,7,["H408"]],[7,10,["H1004"]],[10,12,["H4798"]],[12,13,["H408"]],[13,14,["H1980"]],[14,16,["H5594"]],[16,17,["H408"]],[17,18,["H5110"]],[18,20,["H3588"]],[20,24,["H622","(H853)"]],[24,26,["H7965"]],[26,27,["H4480","H854"]],[27,28,["H2088"]],[28,29,["H5971"]],[29,30,["H5002"]],[30,32,["H3068"]],[32,33,["(H853)"]],[33,34,["H2617"]],[34,36,["H7356"]]]},{"k":19342,"v":[[0,3,["H1419"]],[3,6,["H6996"]],[6,8,["H4191"]],[8,10,["H2063"]],[10,11,["H776"]],[11,14,["H3808"]],[14,16,["H6912"]],[16,17,["H3808"]],[17,20,["H5594"]],[20,23,["H3808"]],[23,25,["H1413"]],[25,26,["H3808"]],[26,29,["H7139"]],[29,31,[]]]},{"k":19343,"v":[[0,1,["H3808"]],[1,4,["H6536"]],[4,8,["H5921"]],[8,9,["H60"]],[9,11,["H5162"]],[11,13,["H5921"]],[13,15,["H4191"]],[15,16,["H3808"]],[16,22,["H3563"]],[22,24,["H8575"]],[24,26,["H8248"]],[26,27,["H5921"]],[27,29,["H1"]],[29,31,["H5921"]],[31,33,["H517"]]]},{"k":19344,"v":[[0,3,["H3808"]],[3,5,["H935"]],[5,8,["H1004"]],[8,10,["H4960"]],[10,12,["H3427"]],[12,13,["H854"]],[13,16,["H398"]],[16,19,["H8354"]]]},{"k":19345,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,12,["H2009"]],[12,17,["H7673"]],[17,19,["H4480"]],[19,20,["H2088"]],[20,21,["H4725"]],[21,24,["H5869"]],[24,28,["H3117"]],[28,30,["H6963"]],[30,32,["H8342"]],[32,35,["H6963"]],[35,37,["H8057"]],[37,39,["H6963"]],[39,42,["H2860"]],[42,45,["H6963"]],[45,48,["H3618"]]]},{"k":19346,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,10,["H5046"]],[10,11,["H2088"]],[11,12,["H5971","(H853)"]],[12,13,["H3605"]],[13,14,["H428"]],[14,15,["H1697"]],[15,19,["H559"]],[19,20,["H413"]],[20,22,["H5921","H4100"]],[22,25,["H3068"]],[25,26,["H1696","(H853)"]],[26,27,["H3605"]],[27,28,["H2063"]],[28,29,["H1419"]],[29,30,["H7451"]],[30,31,["H5921"]],[31,34,["H4100"]],[34,37,["H5771"]],[37,39,["H4100"]],[39,42,["H2403"]],[42,43,["H834"]],[43,46,["H2398"]],[46,49,["H3068"]],[49,51,["H430"]]]},{"k":19347,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H5921","H834"]],[7,9,["H1"]],[9,11,["H5800"]],[11,13,["H5002"]],[13,15,["H3068"]],[15,18,["H1980"]],[18,19,["H310"]],[19,20,["H312"]],[20,21,["H430"]],[21,24,["H5647"]],[24,28,["H7812"]],[28,32,["H5800"]],[32,36,["H3808"]],[36,37,["H8104"]],[37,39,["H8451"]]]},{"k":19348,"v":[[0,2,["H859"]],[2,4,["H6213"]],[4,5,["H7489"]],[5,8,["H4480","H1"]],[8,10,["H2009"]],[10,12,["H1980"]],[12,14,["H376"]],[14,15,["H310"]],[15,17,["H8307"]],[17,20,["H7451"]],[20,21,["H3820"]],[21,25,["H1115"]],[25,26,["H8085"]],[26,27,["H413"]],[27,28,[]]]},{"k":19349,"v":[[0,4,["H2904"]],[4,7,["H4480","H5921"]],[7,8,["H2063"]],[8,9,["H776"]],[9,10,["H5921"]],[10,12,["H776"]],[12,13,["H834"]],[13,15,["H3045"]],[15,16,["H3808"]],[16,18,["H859"]],[18,21,["H1"]],[21,23,["H8033"]],[23,26,["H5647","(H853)"]],[26,27,["H312"]],[27,28,["H430"]],[28,29,["H3119"]],[29,31,["H3915"]],[31,32,["H834"]],[32,35,["H3808"]],[35,36,["H5414"]],[36,38,["H2594"]]]},{"k":19350,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,4,["H3117"]],[4,5,["H935"]],[5,6,["H5002"]],[6,8,["H3068"]],[8,12,["H3808"]],[12,13,["H5750"]],[13,15,["H559"]],[15,17,["H3068"]],[17,18,["H2416"]],[18,19,["H834"]],[19,21,["H5927","(H853)"]],[21,23,["H1121"]],[23,25,["H3478"]],[25,29,["H4480","H776"]],[29,31,["H4714"]]]},{"k":19351,"v":[[0,1,["H3588","H518"]],[1,3,["H3068"]],[3,4,["H2416"]],[4,5,["H834"]],[5,7,["H5927","(H853)"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,14,["H4480","H776"]],[14,17,["H6828"]],[17,20,["H4480","H3605"]],[20,22,["H776"]],[22,23,["H834","H8033"]],[23,26,["H5080"]],[26,33,["H7725"]],[33,34,["H5921"]],[34,36,["H127"]],[36,37,["H834"]],[37,39,["H5414"]],[39,42,["H1"]]]},{"k":19352,"v":[[0,1,["H2009"]],[1,4,["H7971"]],[4,6,["H7227"]],[6,7,["H1771"]],[7,8,["H5002"]],[8,10,["H3068"]],[10,14,["H1770"]],[14,17,["H310","H3651"]],[17,20,["H7971"]],[20,22,["H7227"]],[22,23,["H6719"]],[23,27,["H6679"]],[27,29,["H4480","H5921"]],[29,30,["H3605"]],[30,31,["H2022"]],[31,33,["H4480","H5921"]],[33,34,["H3605"]],[34,35,["H1389"]],[35,40,["H4480","H5357"]],[40,43,["H5553"]]]},{"k":19353,"v":[[0,1,["H3588"]],[1,3,["H5869"]],[3,5,["H5921"]],[5,6,["H3605"]],[6,8,["H1870"]],[8,11,["H3808"]],[11,12,["H5641"]],[12,15,["H4480","H6440"]],[15,16,["H3808"]],[16,19,["H5771"]],[19,20,["H6845"]],[20,21,["H4480","H5048"]],[21,23,["H5869"]]]},{"k":19354,"v":[[0,2,["H7223"]],[2,5,["H7999"]],[5,7,["H5771"]],[7,10,["H2403"]],[10,11,["H4932"]],[11,12,["H5921"]],[12,15,["H2490","(H853)"]],[15,17,["H776"]],[17,20,["H4390","(H853)"]],[20,22,["H5159"]],[22,25,["H5038"]],[25,28,["H8251"]],[28,31,["H8441"]]]},{"k":19355,"v":[[0,2,["H3068"]],[2,4,["H5797"]],[4,7,["H4581"]],[7,10,["H4498"]],[10,13,["H3117"]],[13,15,["H6869"]],[15,17,["H1471"]],[17,19,["H935"]],[19,20,["H413"]],[20,24,["H4480","H657"]],[24,27,["H776"]],[27,30,["H559"]],[30,31,["H389"]],[31,33,["H1"]],[33,35,["H5157"]],[35,36,["H8267"]],[36,37,["H1892"]],[37,43,["H369"]],[43,44,["H3276"]]]},{"k":19356,"v":[[0,3,["H120"]],[3,4,["H6213"]],[4,5,["H430"]],[5,9,["H1992"]],[9,11,["H3808"]],[11,12,["H430"]]]},{"k":19357,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,5,["H2063"]],[5,6,["H6471"]],[6,10,["H3045"]],[10,16,["H3045","(H853)"]],[16,18,["H3027"]],[18,21,["H1369"]],[21,25,["H3045"]],[25,26,["H3588"]],[26,28,["H8034"]],[28,31,["H3068"]]]},{"k":19358,"v":[[0,2,["H2403"]],[2,4,["H3063"]],[4,6,["H3789"]],[6,9,["H5842"]],[9,11,["H1270"]],[11,15,["H6856"]],[15,18,["H8068"]],[18,21,["H2790"]],[21,22,["H5921"]],[22,24,["H3871"]],[24,27,["H3820"]],[27,31,["H7161"]],[31,34,["H4196"]]]},{"k":19359,"v":[[0,3,["H1121"]],[3,4,["H2142"]],[4,6,["H4196"]],[6,9,["H842"]],[9,10,["H5921"]],[10,12,["H7488"]],[12,13,["H6086"]],[13,14,["H5921"]],[14,16,["H1364"]],[16,17,["H1389"]]]},{"k":19360,"v":[[0,3,["H2042"]],[3,6,["H7704"]],[6,9,["H5414"]],[9,11,["H2428"]],[11,13,["H3605"]],[13,15,["H214"]],[15,18,["H957"]],[18,22,["H1116"]],[22,24,["H2403"]],[24,26,["H3605"]],[26,28,["H1366"]]]},{"k":19361,"v":[[0,6,["H8058"]],[6,9,["H4480","H5159"]],[9,10,["H834"]],[10,12,["H5414"]],[12,20,["H5647","(H853)"]],[20,22,["H341"]],[22,25,["H776"]],[25,26,["H834"]],[26,28,["H3045"]],[28,29,["H3808"]],[29,30,["H3588"]],[30,33,["H6919"]],[33,35,["H784"]],[35,38,["H639"]],[38,41,["H3344"]],[41,43,["H5704","H5769"]]]},{"k":19362,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H779"]],[5,8,["H1397"]],[8,9,["H834"]],[9,10,["H982"]],[10,12,["H120"]],[12,14,["H7760"]],[14,15,["H1320"]],[15,17,["H2220"]],[17,20,["H3820"]],[20,21,["H5493"]],[21,22,["H4480"]],[22,24,["H3068"]]]},{"k":19363,"v":[[0,4,["H1961"]],[4,7,["H6176"]],[7,10,["H6160"]],[10,13,["H3808"]],[13,14,["H7200"]],[14,15,["H3588"]],[15,16,["H2896"]],[16,17,["H935"]],[17,20,["H7931"]],[20,23,["H2788"]],[23,26,["H4057"]],[26,29,["H4420"]],[29,30,["H776"]],[30,32,["H3808"]],[32,33,["H3427"]]]},{"k":19364,"v":[[0,1,["H1288"]],[1,4,["H1397"]],[4,5,["H834"]],[5,6,["H982"]],[6,9,["H3068"]],[9,12,["H4009"]],[12,14,["H3068"]],[14,15,["H1961"]]]},{"k":19365,"v":[[0,4,["H1961"]],[4,7,["H6086"]],[7,8,["H8362"]],[8,9,["H5921"]],[9,11,["H4325"]],[11,15,["H7971"]],[15,17,["H8328"]],[17,18,["H5921"]],[18,20,["H3105"]],[20,23,["H3808"]],[23,24,["H7200"]],[24,25,["H3588"]],[25,26,["H2527"]],[26,27,["H935"]],[27,30,["H5929"]],[30,32,["H1961"]],[32,33,["H7488"]],[33,36,["H3808"]],[36,38,["H1672"]],[38,41,["H8141"]],[41,43,["H1226"]],[43,44,["H3808"]],[44,46,["H4185"]],[46,48,["H4480","H6213"]],[48,49,["H6529"]]]},{"k":19366,"v":[[0,2,["H3820"]],[2,4,["H6121"]],[4,6,["H4480","H3605"]],[6,10,["H605"]],[10,11,["H4310"]],[11,13,["H3045"]],[13,14,[]]]},{"k":19367,"v":[[0,1,["H589"]],[1,3,["H3068"]],[3,4,["H2713"]],[4,6,["H3820"]],[6,8,["H974"]],[8,10,["H3629"]],[10,13,["H5414"]],[13,15,["H376"]],[15,19,["H1870"]],[19,24,["H6529"]],[24,27,["H4611"]]]},{"k":19368,"v":[[0,3,["H7124"]],[3,4,["H1716"]],[4,8,["H3205"]],[8,10,["H3808"]],[10,14,["H6213"]],[14,15,["H6239"]],[15,17,["H3808"]],[17,19,["H4941"]],[19,21,["H5800"]],[21,25,["H2677"]],[25,28,["H3117"]],[28,32,["H319"]],[32,34,["H1961"]],[34,36,["H5036"]]]},{"k":19369,"v":[[0,2,["H3519"]],[2,3,["H4791"]],[3,4,["H3678"]],[4,7,["H4480","H7223"]],[7,10,["H4725"]],[10,13,["H4720"]]]},{"k":19370,"v":[[0,2,["H3068"]],[2,4,["H4723"]],[4,6,["H3478"]],[6,7,["H3605"]],[7,9,["H5800"]],[9,13,["H954"]],[13,18,["H3249"]],[18,22,["H3789"]],[22,25,["H776"]],[25,26,["H3588"]],[26,29,["H5800","(H853)"]],[29,31,["H3068"]],[31,33,["H4726"]],[33,35,["H2416"]],[35,36,["H4325"]]]},{"k":19371,"v":[[0,1,["H7495"]],[1,4,["H3068"]],[4,9,["H7495"]],[9,10,["H3467"]],[10,16,["H3467"]],[16,17,["H3588"]],[17,18,["H859"]],[18,21,["H8416"]]]},{"k":19372,"v":[[0,1,["H2009"]],[1,2,["H1992"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H346"]],[6,9,["H1697"]],[9,12,["H3068"]],[12,15,["H935"]],[15,16,["H4994"]]]},{"k":19373,"v":[[0,4,["H589"]],[4,6,["H3808"]],[6,7,["H213"]],[7,11,["H4480","H7462"]],[11,13,["H310"]],[13,15,["H3808"]],[15,18,["H183"]],[18,20,["H605"]],[20,21,["H3117"]],[21,22,["H859"]],[22,23,["H3045"]],[23,26,["H4161"]],[26,28,["H6440"]],[28,30,["H8193"]],[30,31,["H1961"]],[31,33,["H5227","H6440"]],[33,34,[]]]},{"k":19374,"v":[[0,1,["H1961"]],[1,2,["H408"]],[2,4,["H4288"]],[4,7,["H859"]],[7,10,["H4268"]],[10,13,["H3117"]],[13,15,["H7451"]]]},{"k":19375,"v":[[0,4,["H954"]],[4,6,["H7291"]],[6,10,["H408"]],[10,11,["H589"]],[11,13,["H954"]],[13,15,["H1992"]],[15,17,["H2865"]],[17,20,["H408"]],[20,21,["H589"]],[21,23,["H2865"]],[23,24,["H935"]],[24,25,["H5921"]],[25,28,["H3117"]],[28,30,["H7451"]],[30,32,["H7665"]],[32,35,["H4932"]],[35,36,["H7670"]]]},{"k":19376,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,7,["H1980"]],[7,9,["H5975"]],[9,12,["H8179"]],[12,15,["H1121"]],[15,18,["H5971"]],[18,19,["H834"]],[19,21,["H4428"]],[21,23,["H3063"]],[23,25,["H935"]],[25,29,["H834"]],[29,32,["H3318"]],[32,35,["H3605"]],[35,37,["H8179"]],[37,39,["H3389"]]]},{"k":19377,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H8085"]],[5,8,["H1697"]],[8,11,["H3068"]],[11,13,["H4428"]],[13,15,["H3063"]],[15,17,["H3605"]],[17,18,["H3063"]],[18,20,["H3605"]],[20,22,["H3427"]],[22,24,["H3389"]],[24,27,["H935"]],[27,29,["H428"]],[29,30,["H8179"]]]},{"k":19378,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H8104"]],[6,8,["H5315"]],[8,10,["H5375"]],[10,11,["H408"]],[11,12,["H4853"]],[12,15,["H7676"]],[15,16,["H3117"]],[16,20,["H935"]],[20,23,["H8179"]],[23,25,["H3389"]]]},{"k":19379,"v":[[0,1,["H3808"]],[1,3,["H3318"]],[3,5,["H4853"]],[5,9,["H4480","H1004"]],[9,12,["H7676"]],[12,13,["H3117"]],[13,14,["H3808"]],[14,15,["H6213"]],[15,17,["H3605"]],[17,18,["H4399"]],[18,20,["H6942"]],[20,21,["(H853)"]],[21,23,["H7676"]],[23,24,["H3117"]],[24,25,["H834"]],[25,27,["H6680"]],[27,29,["H1"]]]},{"k":19380,"v":[[0,3,["H8085"]],[3,4,["H3808"]],[4,5,["H3808"]],[5,6,["H5186","(H853)"]],[6,8,["H241"]],[8,10,["(H853)"]],[10,12,["H6203"]],[12,13,["H7185"]],[13,17,["H1115"]],[17,18,["H8085"]],[18,19,["H1115"]],[19,20,["H3947"]],[20,21,["H4148"]]]},{"k":19381,"v":[[0,6,["H1961"]],[6,7,["H518"]],[7,10,["H8085","H8085"]],[10,11,["H413"]],[11,13,["H5002"]],[13,15,["H3068"]],[15,18,["H935"]],[18,19,["H1115"]],[19,20,["H4853"]],[20,23,["H8179"]],[23,25,["H2063"]],[25,26,["H5892"]],[26,29,["H7676"]],[29,30,["H3117"]],[30,32,["H6942","(H853)"]],[32,34,["H7676"]],[34,35,["H3117"]],[35,37,["H6213"]],[37,38,["H1115","H3605"]],[38,39,["H4399"]],[39,40,[]]]},{"k":19382,"v":[[0,4,["H935"]],[4,7,["H8179"]],[7,9,["H2063"]],[9,10,["H5892"]],[10,11,["H4428"]],[11,13,["H8269"]],[13,14,["H3427"]],[14,15,["H5921"]],[15,17,["H3678"]],[17,19,["H1732"]],[19,20,["H7392"]],[20,22,["H7393"]],[22,25,["H5483"]],[25,26,["H1992"]],[26,29,["H8269"]],[29,31,["H376"]],[31,33,["H3063"]],[33,36,["H3427"]],[36,38,["H3389"]],[38,40,["H2063"]],[40,41,["H5892"]],[41,43,["H3427"]],[43,45,["H5769"]]]},{"k":19383,"v":[[0,4,["H935"]],[4,7,["H4480","H5892"]],[7,9,["H3063"]],[9,14,["H4480","H5439"]],[14,15,["H3389"]],[15,19,["H4480","H776"]],[19,21,["H1144"]],[21,23,["H4480"]],[23,25,["H8219"]],[25,27,["H4480"]],[27,29,["H2022"]],[29,31,["H4480"]],[31,33,["H5045"]],[33,34,["H935"]],[34,36,["H5930"]],[36,38,["H2077"]],[38,41,["H4503"]],[41,43,["H3828"]],[43,45,["H935"]],[45,48,["H8426"]],[48,51,["H1004"]],[51,54,["H3068"]]]},{"k":19384,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H8085"]],[6,7,["H413"]],[7,10,["H6942","(H853)"]],[10,12,["H7676"]],[12,13,["H3117"]],[13,15,["H1115"]],[15,17,["H5375"]],[17,19,["H4853"]],[19,21,["H935"]],[21,25,["H8179"]],[25,27,["H3389"]],[27,30,["H7676"]],[30,31,["H3117"]],[31,35,["H3341"]],[35,37,["H784"]],[37,40,["H8179"]],[40,45,["H398"]],[45,47,["H759"]],[47,49,["H3389"]],[49,53,["H3808"]],[53,55,["H3518"]]]},{"k":19385,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H413"]],[5,6,["H3414"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,10,["H559"]]]},{"k":19386,"v":[[0,1,["H6965"]],[1,4,["H3381"]],[4,7,["H3335"]],[7,8,["H1004"]],[8,10,["H8033"]],[10,16,["H8085","(H853)"]],[16,18,["H1697"]]]},{"k":19387,"v":[[0,4,["H3381"]],[4,7,["H3335"]],[7,8,["H1004"]],[8,10,["H2009"]],[10,12,["H6213"]],[12,14,["H4399"]],[14,15,["H5921"]],[15,17,["H70"]]]},{"k":19388,"v":[[0,3,["H3627"]],[3,4,["H834"]],[4,5,["H1931"]],[5,6,["H6213"]],[6,8,["H2563"]],[8,10,["H7843"]],[10,13,["H3027"]],[13,16,["H3335"]],[16,19,["H6213"]],[19,21,["H7725"]],[21,22,["H312"]],[22,23,["H3627"]],[23,24,["H834"]],[24,25,["H5869"]],[25,26,["H3474"]],[26,29,["H3335"]],[29,31,["H6213"]],[31,32,[]]]},{"k":19389,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":19390,"v":[[0,2,["H1004"]],[2,4,["H3478"]],[4,5,["H3808","H3201"]],[5,7,["H6213"]],[7,11,["H2088"]],[11,12,["H3335"]],[12,13,["H5002"]],[13,15,["H3068"]],[15,16,["H2009"]],[16,19,["H2563"]],[19,23,["H3335"]],[23,24,["H3027"]],[24,25,["H3651"]],[25,27,["H859"]],[27,30,["H3027"]],[30,32,["H1004"]],[32,34,["H3478"]]]},{"k":19391,"v":[[0,3,["H7281"]],[3,6,["H1696"]],[6,7,["H5921"]],[7,9,["H1471"]],[9,11,["H5921"]],[11,13,["H4467"]],[13,16,["H5428"]],[16,20,["H5422"]],[20,23,["H6"]],[23,24,[]]]},{"k":19392,"v":[[0,2,["H1931"]],[2,3,["H1471"]],[3,4,["H5921"]],[4,5,["H834"]],[5,8,["H1696"]],[8,9,["H7725"]],[9,12,["H4480","H7451"]],[12,15,["H5162"]],[15,16,["H5921"]],[16,18,["H7451"]],[18,19,["H834"]],[19,21,["H2803"]],[21,23,["H6213"]],[23,25,[]]]},{"k":19393,"v":[[0,4,["H7281"]],[4,7,["H1696"]],[7,8,["H5921"]],[8,10,["H1471"]],[10,12,["H5921"]],[12,14,["H4467"]],[14,16,["H1129"]],[16,19,["H5193"]],[19,20,[]]]},{"k":19394,"v":[[0,3,["H6213"]],[3,4,["H7451"]],[4,7,["H5869"]],[7,10,["H8085"]],[10,11,["H1115"]],[11,13,["H6963"]],[13,17,["H5162"]],[17,18,["H5921"]],[18,20,["H2896"]],[20,21,["H834"]],[21,23,["H559"]],[23,26,["H3190"]],[26,27,[]]]},{"k":19395,"v":[[0,1,["H6258"]],[1,3,["H4994"]],[3,5,["H559"]],[5,6,["H413"]],[6,8,["H376"]],[8,10,["H3063"]],[10,12,["H5921"]],[12,14,["H3427"]],[14,16,["H3389"]],[16,17,["H559"]],[17,18,["H3541"]],[18,19,["H559"]],[19,21,["H3068"]],[21,22,["H2009"]],[22,23,["H595"]],[23,24,["H3335"]],[24,25,["H7451"]],[25,26,["H5921"]],[26,29,["H2803"]],[29,31,["H4284"]],[31,32,["H5921"]],[32,34,["H7725"]],[34,36,["H4994"]],[36,38,["H376"]],[38,41,["H7451"]],[41,42,["H4480","H1870"]],[42,46,["H1870"]],[46,49,["H4611"]],[49,50,["H3190"]]]},{"k":19396,"v":[[0,3,["H559"]],[3,7,["H2976"]],[7,8,["H3588"]],[8,11,["H1980"]],[11,12,["H310"]],[12,15,["H4284"]],[15,20,["H376"]],[20,21,["H6213"]],[21,23,["H8307"]],[23,26,["H7451"]],[26,27,["H3820"]]]},{"k":19397,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H7592"]],[6,8,["H4994"]],[8,11,["H1471"]],[11,12,["H4310"]],[12,14,["H8085"]],[14,15,["H428"]],[15,18,["H1330"]],[18,20,["H3478"]],[20,22,["H6213"]],[22,24,["H3966"]],[24,26,["H8186"]]]},{"k":19398,"v":[[0,4,["H5800"]],[4,6,["H7950"]],[6,8,["H3844"]],[8,13,["H4480","H6697"]],[13,16,["H7704"]],[16,20,["H7119"]],[20,21,["H5140"]],[21,22,["H4325"]],[22,27,["H2114"]],[27,29,["H5428"]]]},{"k":19399,"v":[[0,1,["H3588"]],[1,3,["H5971"]],[3,5,["H7911"]],[5,10,["H6999"]],[10,12,["H7723"]],[12,19,["H3782"]],[19,22,["H1870"]],[22,25,["H5769"]],[25,26,["H7635"]],[26,28,["H1980"]],[28,30,["H5410"]],[30,33,["H1870"]],[33,34,["H3808"]],[34,36,["H5549"]]]},{"k":19400,"v":[[0,2,["H7760"]],[2,4,["H776"]],[4,5,["H8047"]],[5,8,["H5769"]],[8,9,["H8292"]],[9,11,["H3605"]],[11,13,["H5674"]],[13,14,["H5921"]],[14,17,["H8074"]],[17,19,["H5110"]],[19,21,["H7218"]]]},{"k":19401,"v":[[0,3,["H6327"]],[3,8,["H6921"]],[8,9,["H7307"]],[9,10,["H6440"]],[10,12,["H341"]],[12,15,["H7200"]],[15,18,["H6203"]],[18,20,["H3808"]],[20,22,["H6440"]],[22,25,["H3117"]],[25,28,["H343"]]]},{"k":19402,"v":[[0,2,["H559"]],[2,4,["H1980"]],[4,8,["H2803"]],[8,9,["H4284"]],[9,10,["H5921"]],[10,11,["H3414"]],[11,12,["H3588"]],[12,14,["H8451"]],[14,16,["H3808"]],[16,17,["H6"]],[17,20,["H4480","H3548"]],[20,22,["H6098"]],[22,25,["H4480","H2450"]],[25,28,["H1697"]],[28,31,["H4480","H5030"]],[31,32,["H1980"]],[32,36,["H5221"]],[36,40,["H3956"]],[40,44,["H408"]],[44,46,["H7181"]],[46,47,["H413"]],[47,48,["H3605"]],[48,51,["H1697"]]]},{"k":19403,"v":[[0,2,["H7181"]],[2,3,["H413"]],[3,6,["H3068"]],[6,8,["H8085"]],[8,11,["H6963"]],[11,15,["H3401"]],[15,17,[]]]},{"k":19404,"v":[[0,2,["H7451"]],[2,4,["H7999"]],[4,5,["H8478"]],[5,6,["H2896"]],[6,7,["H3588"]],[7,10,["H3738"]],[10,12,["H7745"]],[12,15,["H5315"]],[15,16,["H2142"]],[16,19,["H5975"]],[19,20,["H6440"]],[20,23,["H1696"]],[23,24,["H2896"]],[24,25,["H5921"]],[25,30,["H7725","(H853)"]],[30,32,["H2534"]],[32,33,["H4480"]],[33,34,[]]]},{"k":19405,"v":[[0,1,["H3651"]],[1,3,["H5414","(H853)"]],[3,5,["H1121"]],[5,8,["H7458"]],[8,11,["H5064"]],[11,14,["H5921"]],[14,16,["H3027"]],[16,19,["H2719"]],[19,23,["H802"]],[23,24,["H1961"]],[24,28,["H7909"]],[28,31,["H490"]],[31,35,["H376"]],[35,36,["H1961"]],[36,37,["H2026"]],[37,39,["H4194"]],[39,43,["H970"]],[43,45,["H5221"]],[45,48,["H2719"]],[48,50,["H4421"]]]},{"k":19406,"v":[[0,3,["H2201"]],[3,5,["H8085"]],[5,8,["H4480","H1004"]],[8,9,["H3588"]],[9,12,["H935"]],[12,14,["H1416"]],[14,15,["H6597"]],[15,16,["H5921"]],[16,18,["H3588"]],[18,21,["H3738"]],[21,23,["H7745"]],[23,25,["H3920"]],[25,28,["H2934"]],[28,29,["H6341"]],[29,32,["H7272"]]]},{"k":19407,"v":[[0,2,["H3068"]],[2,3,["H859"]],[3,4,["H3045","(H853)"]],[4,5,["H3605"]],[5,7,["H6098"]],[7,8,["H5921"]],[8,11,["H4194"]],[11,13,["H3722"]],[13,14,["H408"]],[14,16,["H5771"]],[16,17,["H408"]],[17,19,["H4229"]],[19,21,["H2403"]],[21,24,["H4480","H6440"]],[24,28,["H1961"]],[28,29,["H3782"]],[29,30,["H6440"]],[30,32,["H6213"]],[32,38,["H6256"]],[38,41,["H639"]]]},{"k":19408,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H1980"]],[5,7,["H7069"]],[7,9,["H3335"]],[9,10,["H2789"]],[10,11,["H1228"]],[11,16,["H4480","H2205"]],[16,19,["H5971"]],[19,23,["H4480","H2205"]],[23,26,["H3548"]]]},{"k":19409,"v":[[0,3,["H3318"]],[3,4,["H413"]],[4,6,["H1516"]],[6,9,["H1121"]],[9,11,["H2011"]],[11,12,["H834"]],[12,16,["H6607"]],[16,19,["H2777"]],[19,20,["H8179"]],[20,22,["H7121"]],[22,23,["H8033","(H853)"]],[23,25,["H1697"]],[25,26,["H834"]],[26,29,["H1696","H413"]],[29,30,[]]]},{"k":19410,"v":[[0,2,["H559"]],[2,3,["H8085"]],[3,6,["H1697"]],[6,9,["H3068"]],[9,11,["H4428"]],[11,13,["H3063"]],[13,15,["H3427"]],[15,17,["H3389"]],[17,18,["H3541"]],[18,19,["H559"]],[19,21,["H3068"]],[21,23,["H6635"]],[23,25,["H430"]],[25,27,["H3478"]],[27,28,["H2009"]],[28,31,["H935"]],[31,32,["H7451"]],[32,33,["H5921"]],[33,34,["H2088"]],[34,35,["H4725"]],[35,37,["H834"]],[37,38,["H3605"]],[38,39,["H8085"]],[39,41,["H241"]],[41,43,["H6750"]]]},{"k":19411,"v":[[0,1,["H3282","H834"]],[1,4,["H5800"]],[4,8,["H5234","(H853)"]],[8,9,["H2088"]],[9,10,["H4725"]],[10,14,["H6999"]],[14,18,["H312"]],[18,19,["H430"]],[19,20,["H834"]],[20,21,["H3808"]],[21,22,["H1992"]],[22,25,["H1"]],[25,27,["H3045"]],[27,30,["H4428"]],[30,32,["H3063"]],[32,35,["H4390","(H853)"]],[35,36,["H2088"]],[36,37,["H4725"]],[37,40,["H1818"]],[40,42,["H5355"]]]},{"k":19412,"v":[[0,3,["H1129"]],[3,4,["(H853)"]],[4,7,["H1116"]],[7,9,["H1168"]],[9,11,["H8313","(H853)"]],[11,13,["H1121"]],[13,15,["H784"]],[15,18,["H5930"]],[18,20,["H1168"]],[20,21,["H834"]],[21,23,["H6680"]],[23,24,["H3808"]],[24,25,["H3808"]],[25,26,["H1696"]],[26,28,["H3808"]],[28,29,["H5927"]],[29,31,["H5921"]],[31,33,["H3820"]]]},{"k":19413,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,4,["H3117"]],[4,5,["H935"]],[5,6,["H5002"]],[6,8,["H3068"]],[8,10,["H2088"]],[10,11,["H4725"]],[11,13,["H3808"]],[13,14,["H5750"]],[14,16,["H7121"]],[16,17,["H8612"]],[17,20,["H1516"]],[20,23,["H1121"]],[23,25,["H2011"]],[25,26,["H3588","H518"]],[26,28,["H1516"]],[28,30,["H2028"]]]},{"k":19414,"v":[[0,5,["H1238","(H853)"]],[5,7,["H6098"]],[7,9,["H3063"]],[9,11,["H3389"]],[11,13,["H2088"]],[13,14,["H4725"]],[14,21,["H5307"]],[21,24,["H2719"]],[24,25,["H6440"]],[25,27,["H341"]],[27,31,["H3027"]],[31,35,["H1245"]],[35,37,["H5315"]],[37,38,["(H853)"]],[38,40,["H5038"]],[40,43,["H5414"]],[43,46,["H3978"]],[46,49,["H5775"]],[49,52,["H8064"]],[52,56,["H929"]],[56,59,["H776"]]]},{"k":19415,"v":[[0,4,["H7760","(H853)"]],[4,5,["H2063"]],[5,6,["H5892"]],[6,7,["H8047"]],[7,10,["H8322"]],[10,12,["H3605"]],[12,14,["H5674"]],[14,15,["H5921"]],[15,18,["H8074"]],[18,20,["H8319"]],[20,21,["H5921"]],[21,23,["H3605"]],[23,25,["H4347"]],[25,26,[]]]},{"k":19416,"v":[[0,7,["H398","(H853)"]],[7,9,["H1320"]],[9,12,["H1121"]],[12,15,["H1320"]],[15,18,["H1323"]],[18,22,["H398"]],[22,24,["H376"]],[24,26,["H1320"]],[26,29,["H7453"]],[29,32,["H4692"]],[32,34,["H4689"]],[34,35,["H834"]],[35,37,["H341"]],[37,41,["H1245"]],[41,43,["H5315"]],[43,45,["H6693"]],[45,46,[]]]},{"k":19417,"v":[[0,4,["H7665"]],[4,6,["H1228"]],[6,9,["H5869"]],[9,12,["H376"]],[12,14,["H1980"]],[14,15,["H854"]],[15,16,[]]]},{"k":19418,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,11,["H6635"]],[11,13,["H3602"]],[13,16,["H7665","(H853)"]],[16,17,["H2088"]],[17,18,["H5971"]],[18,20,["H2063"]],[20,21,["H5892"]],[21,22,["H834"]],[22,24,["H7665","(H853)"]],[24,26,["H3335"]],[26,27,["H3627"]],[27,28,["H834"]],[28,29,["H3201","H3808"]],[29,32,["H7495"]],[32,33,["H5750"]],[33,37,["H6912"]],[37,40,["H8612"]],[40,44,["H4480","H369"]],[44,45,["H4725"]],[45,47,["H6912"]]]},{"k":19419,"v":[[0,1,["H3651"]],[1,4,["H6213"]],[4,6,["H2088"]],[6,7,["H4725"]],[7,8,["H5002"]],[8,10,["H3068"]],[10,14,["H3427"]],[14,18,["H5414","(H853)"]],[18,19,["H2063"]],[19,20,["H5892"]],[20,22,["H8612"]]]},{"k":19420,"v":[[0,3,["H1004"]],[3,5,["H3389"]],[5,8,["H1004"]],[8,11,["H4428"]],[11,13,["H3063"]],[13,15,["H1961"]],[15,16,["H2931"]],[16,19,["H4725"]],[19,21,["H8612"]],[21,24,["H3605"]],[24,26,["H1004"]],[26,27,["H5921"]],[27,28,["H834"]],[28,29,["H1406"]],[29,33,["H6999"]],[33,35,["H3605"]],[35,37,["H6635"]],[37,39,["H8064"]],[39,43,["H5258"]],[43,45,["H5262"]],[45,47,["H312"]],[47,48,["H430"]]]},{"k":19421,"v":[[0,2,["H935"]],[2,3,["H3414"]],[3,5,["H4480","H8612"]],[5,6,["H834","H8033"]],[6,8,["H3068"]],[8,10,["H7971"]],[10,13,["H5012"]],[13,16,["H5975"]],[16,19,["H2691"]],[19,22,["H3068"]],[22,23,["H1004"]],[23,25,["H559"]],[25,26,["H413"]],[26,27,["H3605"]],[27,29,["H5971"]]]},{"k":19422,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,11,["H2009"]],[11,14,["H935"]],[14,15,["H413"]],[15,16,["H2063"]],[16,17,["H5892"]],[17,19,["H5921"]],[19,20,["H3605"]],[20,22,["H5892","(H853)"]],[22,23,["H3605"]],[23,25,["H7451"]],[25,26,["H834"]],[26,29,["H1696"]],[29,30,["H5921"]],[30,32,["H3588"]],[32,35,["H7185","(H853)"]],[35,37,["H6203"]],[37,41,["H1115"]],[41,42,["H8085","(H853)"]],[42,44,["H1697"]]]},{"k":19423,"v":[[0,2,["H6583"]],[2,4,["H1121"]],[4,6,["H564"]],[6,8,["H3548"]],[8,9,["H1931"]],[9,12,["H5057"]],[12,13,["H6496"]],[13,16,["H1004"]],[16,19,["H3068"]],[19,20,["H8085"]],[20,21,["(H853)"]],[21,22,["H3414"]],[22,23,["H5012","(H853)"]],[23,24,["H428"]],[24,25,["H1697"]]]},{"k":19424,"v":[[0,2,["H6583"]],[2,3,["H5221","(H853)"]],[3,4,["H3414"]],[4,6,["H5030"]],[6,8,["H5414"]],[8,10,["H5921"]],[10,12,["H4115"]],[12,13,["H834"]],[13,17,["H5945"]],[17,18,["H8179"]],[18,20,["H1144"]],[20,21,["H834"]],[21,25,["H1004"]],[25,28,["H3068"]]]},{"k":19425,"v":[[0,5,["H1961"]],[5,8,["H4480","H4283"]],[8,10,["H6583"]],[10,12,["H3318","(H853)"]],[12,13,["H3414"]],[13,15,["H4480"]],[15,17,["H4115"]],[17,19,["H559"]],[19,20,["H3414"]],[20,21,["H413"]],[21,24,["H3068"]],[24,26,["H3808"]],[26,27,["H7121"]],[27,29,["H8034"]],[29,30,["H6583"]],[30,31,["H3588","H518"]],[31,32,["H4036"]]]},{"k":19426,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,9,["H5414"]],[9,12,["H4032"]],[12,17,["H3605"]],[17,19,["H157"]],[19,23,["H5307"]],[23,26,["H2719"]],[26,29,["H341"]],[29,32,["H5869"]],[32,34,["H7200"]],[34,39,["H5414"]],[39,40,["H3605"]],[40,41,["H3063"]],[41,44,["H3027"]],[44,47,["H4428"]],[47,49,["H894"]],[49,55,["H1540"]],[55,57,["H894"]],[57,60,["H5221"]],[60,64,["H2719"]]]},{"k":19427,"v":[[0,4,["H5414","(H853)"]],[4,5,["H3605"]],[5,7,["H2633"]],[7,9,["H2063"]],[9,10,["H5892"]],[10,12,["H3605"]],[12,14,["H3018"]],[14,17,["H3605"]],[17,20,["H3366"]],[20,23,["H3605"]],[23,25,["H214"]],[25,28,["H4428"]],[28,30,["H3063"]],[30,33,["H5414"]],[33,36,["H3027"]],[36,39,["H341"]],[39,42,["H962"]],[42,45,["H3947"]],[45,48,["H935"]],[48,51,["H894"]]]},{"k":19428,"v":[[0,2,["H859"]],[2,3,["H6583"]],[3,5,["H3605"]],[5,7,["H3427"]],[7,10,["H1004"]],[10,12,["H1980"]],[12,14,["H7628"]],[14,18,["H935"]],[18,20,["H894"]],[20,22,["H8033"]],[22,25,["H4191"]],[25,29,["H6912"]],[29,30,["H8033"]],[30,31,["H859"]],[31,33,["H3605"]],[33,35,["H157"]],[35,37,["H834"]],[37,40,["H5012"]],[40,41,["H8267"]]]},{"k":19429,"v":[[0,2,["H3068"]],[2,5,["H6601"]],[5,10,["H6601"]],[10,13,["H2388"]],[13,18,["H3201"]],[18,20,["H1961"]],[20,22,["H7814"]],[22,23,["H3605","H3117"]],[23,25,["H3605"]],[25,26,["H3932"]],[26,27,[]]]},{"k":19430,"v":[[0,1,["H3588"]],[1,2,["H4480","H1767"]],[2,4,["H1696"]],[4,7,["H2199"]],[7,9,["H7121"]],[9,10,["H2555"]],[10,12,["H7701"]],[12,13,["H3588"]],[13,15,["H1697"]],[15,18,["H3068"]],[18,20,["H1961"]],[20,22,["H2781"]],[22,27,["H7047"]],[27,28,["H3605","H3117"]]]},{"k":19431,"v":[[0,3,["H559"]],[3,6,["H3808"]],[6,8,["H2142"]],[8,11,["H3808"]],[11,12,["H1696"]],[12,14,["H5750"]],[14,17,["H8034"]],[17,21,["H1961"]],[21,24,["H3820"]],[24,27,["H1197"]],[27,28,["H784"]],[28,30,["H6113"]],[30,33,["H6106"]],[33,37,["H3811"]],[37,39,["H3557"]],[39,42,["H3201"]],[42,43,["H3808"]],[43,44,[]]]},{"k":19432,"v":[[0,1,["H3588"]],[1,3,["H8085"]],[3,5,["H1681"]],[5,7,["H7227"]],[7,8,["H4032"]],[8,11,["H4480","H5439"]],[11,12,["H5046"]],[12,18,["H5046"]],[18,20,["H3605"]],[20,22,["H582","H7965"]],[22,23,["H8104"]],[23,26,["H6761"]],[26,28,["H194"]],[28,32,["H6601"]],[32,36,["H3201"]],[36,42,["H3947"]],[42,44,["H5360"]],[44,45,["H4480"]],[45,46,[]]]},{"k":19433,"v":[[0,3,["H3068"]],[3,5,["H854"]],[5,9,["H1368"]],[9,11,["H6184"]],[11,12,["H5921","H3651"]],[12,14,["H7291"]],[14,16,["H3782"]],[16,20,["H3808"]],[20,21,["H3201"]],[21,25,["H3966"]],[25,26,["H954"]],[26,27,["H3588"]],[27,30,["H3808"]],[30,31,["H7919"]],[31,33,["H5769"]],[33,34,["H3639"]],[34,36,["H3808"]],[36,38,["H7911"]]]},{"k":19434,"v":[[0,3,["H3068"]],[3,5,["H6635"]],[5,7,["H974"]],[7,9,["H6662"]],[9,11,["H7200"]],[11,13,["H3629"]],[13,16,["H3820"]],[16,19,["H7200"]],[19,21,["H5360"]],[21,22,["H4480"]],[22,24,["H3588"]],[24,25,["H413"]],[25,29,["H1540","(H853)"]],[29,31,["H7379"]]]},{"k":19435,"v":[[0,1,["H7891"]],[1,4,["H3068"]],[4,5,["H1984"]],[5,6,["(H853)"]],[6,8,["H3068"]],[8,9,["H3588"]],[9,12,["H5337","(H853)"]],[12,14,["H5315"]],[14,17,["H34"]],[17,20,["H4480","H3027"]],[20,22,["H7489"]]]},{"k":19436,"v":[[0,1,["H779"]],[1,4,["H3117"]],[4,5,["H834"]],[5,8,["H3205"]],[8,10,["H408"]],[10,12,["H3117"]],[12,13,["H834"]],[13,15,["H517"]],[15,16,["H3205"]],[16,18,["H1961"]],[18,19,["H1288"]]]},{"k":19437,"v":[[0,1,["H779"]],[1,4,["H376"]],[4,5,["H834"]],[5,7,["H1319"]],[7,8,["(H853)"]],[8,10,["H1"]],[10,11,["H559"]],[11,13,["H2145"]],[13,14,["H1121"]],[14,16,["H3205"]],[16,22,["H8055","H8055"]]]},{"k":19438,"v":[[0,3,["H1931"]],[3,4,["H376"]],[4,5,["H1961"]],[5,8,["H5892"]],[8,9,["H834"]],[9,11,["H3068"]],[11,12,["H2015"]],[12,14,["H5162"]],[14,15,["H3808"]],[15,19,["H8085"]],[19,21,["H2201"]],[21,24,["H1242"]],[24,27,["H8643"]],[27,29,["H6256","H6672"]]]},{"k":19439,"v":[[0,1,["H834"]],[1,3,["H4191"]],[3,5,["H3808"]],[5,8,["H4480","H7358"]],[8,12,["H517"]],[12,15,["H1961"]],[15,17,["H6913"]],[17,20,["H7358"]],[20,23,["H5769"]],[23,24,["H2030"]],[24,26,[]]]},{"k":19440,"v":[[0,1,["H4100"]],[1,4,["H3318"]],[4,8,["H4480","H7358"]],[8,10,["H7200"]],[10,11,["H5999"]],[11,13,["H3015"]],[13,16,["H3117"]],[16,19,["H3615"]],[19,21,["H1322"]]]},{"k":19441,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H413"]],[5,6,["H3414"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,11,["H4428"]],[11,12,["H6667"]],[12,13,["H7971"]],[13,14,["H413"]],[14,15,["(H853)"]],[15,16,["H6583"]],[16,18,["H1121"]],[18,20,["H4441"]],[20,22,["H6846"]],[22,24,["H1121"]],[24,26,["H4641"]],[26,28,["H3548"]],[28,29,["H559"]]]},{"k":19442,"v":[[0,1,["H1875"]],[1,4,["H4994"]],[4,5,["(H853)"]],[5,7,["H3068"]],[7,8,["H1157"]],[8,10,["H3588"]],[10,11,["H5019"]],[11,12,["H4428"]],[12,14,["H894"]],[14,16,["H3898"]],[16,17,["H5921"]],[17,21,["H194"]],[21,24,["H3068"]],[24,26,["H6213"]],[26,27,["H854"]],[27,31,["H3605"]],[31,34,["H6381"]],[34,39,["H5927"]],[39,40,["H4480","H5921"]],[40,41,[]]]},{"k":19443,"v":[[0,2,["H559"]],[2,3,["H3414"]],[3,4,["H413"]],[4,6,["H3541"]],[6,9,["H559"]],[9,10,["H413"]],[10,11,["H6667"]]]},{"k":19444,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,8,["H2009"]],[8,12,["H5437","(H853)"]],[12,14,["H3627"]],[14,16,["H4421"]],[16,17,["H834"]],[17,21,["H3027"]],[21,22,["H834"]],[22,23,["H859"]],[23,24,["H3898"]],[24,25,["(H853)"]],[25,27,["H4428"]],[27,29,["H894"]],[29,33,["H3778"]],[33,35,["H6696","H5921"]],[35,37,["H4480","H2351"]],[37,39,["H2346"]],[39,43,["H622"]],[43,45,["H413"]],[45,47,["H8432"]],[47,49,["H2063"]],[49,50,["H5892"]]]},{"k":19445,"v":[[0,3,["H589"]],[3,5,["H3898"]],[5,6,["H854"]],[6,10,["H5186"]],[10,11,["H3027"]],[11,15,["H2389"]],[15,16,["H2220"]],[16,19,["H639"]],[19,22,["H2534"]],[22,25,["H1419"]],[25,26,["H7110"]]]},{"k":19446,"v":[[0,4,["H5221","(H853)"]],[4,6,["H3427"]],[6,8,["H2063"]],[8,9,["H5892"]],[9,11,["H120"]],[11,13,["H929"]],[13,16,["H4191"]],[16,19,["H1419"]],[19,20,["H1698"]]]},{"k":19447,"v":[[0,2,["H310","H3651"]],[2,3,["H5002"]],[3,5,["H3068"]],[5,8,["H5414","(H853)"]],[8,9,["H6667"]],[9,10,["H4428"]],[10,12,["H3063"]],[12,15,["H5650"]],[15,18,["H5971"]],[18,23,["H7604"]],[23,25,["H2063"]],[25,26,["H5892"]],[26,27,["H4480"]],[27,29,["H1698"]],[29,30,["H4480"]],[30,32,["H2719"]],[32,34,["H4480"]],[34,36,["H7458"]],[36,39,["H3027"]],[39,41,["H5019"]],[41,42,["H4428"]],[42,44,["H894"]],[44,48,["H3027"]],[48,51,["H341"]],[51,55,["H3027"]],[55,59,["H1245"]],[59,61,["H5315"]],[61,65,["H5221"]],[65,69,["H6310"]],[69,72,["H2719"]],[72,75,["H3808"]],[75,76,["H2347","H5921"]],[76,78,["H3808"]],[78,80,["H2550"]],[80,81,["H3808"]],[81,83,["H7355"]]]},{"k":19448,"v":[[0,2,["H413"]],[2,3,["H2088"]],[3,4,["H5971"]],[4,7,["H559"]],[7,8,["H3541"]],[8,9,["H559"]],[9,11,["H3068"]],[11,12,["H2009"]],[12,14,["H5414"]],[14,15,["H6440"]],[15,16,["(H853)"]],[16,18,["H1870"]],[18,20,["H2416"]],[20,23,["H1870"]],[23,25,["H4194"]]]},{"k":19449,"v":[[0,3,["H3427"]],[3,5,["H2063"]],[5,6,["H5892"]],[6,8,["H4191"]],[8,11,["H2719"]],[11,15,["H7458"]],[15,19,["H1698"]],[19,24,["H3318"]],[24,26,["H5307"]],[26,27,["H5921"]],[27,29,["H3778"]],[29,31,["H6696","H5921"]],[31,35,["H2421"]],[35,38,["H5315"]],[38,40,["H1961"]],[40,45,["H7998"]]]},{"k":19450,"v":[[0,1,["H3588"]],[1,4,["H7760"]],[4,6,["H6440"]],[6,8,["H2063"]],[8,9,["H5892"]],[9,11,["H7451"]],[11,13,["H3808"]],[13,15,["H2896"]],[15,16,["H5002"]],[16,18,["H3068"]],[18,22,["H5414"]],[22,25,["H3027"]],[25,28,["H4428"]],[28,30,["H894"]],[30,34,["H8313"]],[34,37,["H784"]]]},{"k":19451,"v":[[0,4,["H1004"]],[4,7,["H4428"]],[7,9,["H3063"]],[9,11,["H8085"]],[11,14,["H1697"]],[14,17,["H3068"]]]},{"k":19452,"v":[[0,2,["H1004"]],[2,4,["H1732"]],[4,5,["H3541"]],[5,6,["H559"]],[6,8,["H3068"]],[8,9,["H1777"]],[9,10,["H4941"]],[10,13,["H1242"]],[13,15,["H5337"]],[15,19,["H1497"]],[19,23,["H4480","H3027"]],[23,26,["H6231"]],[26,27,["H6435"]],[27,29,["H2534"]],[29,31,["H3318"]],[31,33,["H784"]],[33,35,["H1197"]],[35,37,["H369"]],[37,39,["H3518"]],[39,41,["H4480","H6440"]],[41,44,["H7455"]],[44,47,["H4611"]]]},{"k":19453,"v":[[0,1,["H2009"]],[1,4,["H413"]],[4,7,["H3427"]],[7,10,["H6010"]],[10,12,["H6697"]],[12,15,["H4334"]],[15,16,["H5002"]],[16,18,["H3068"]],[18,20,["H559"]],[20,21,["H4310"]],[21,24,["H5181"]],[24,25,["H5921"]],[25,28,["H4310"]],[28,30,["H935"]],[30,33,["H4585"]]]},{"k":19454,"v":[[0,4,["H6485","H5921"]],[4,9,["H6529"]],[9,12,["H4611"]],[12,13,["H5002"]],[13,15,["H3068"]],[15,19,["H3341"]],[19,21,["H784"]],[21,24,["H3293"]],[24,29,["H398"]],[29,31,["H3605"]],[31,33,["H5439"]],[33,34,[]]]},{"k":19455,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H3381"]],[6,9,["H1004"]],[9,12,["H4428"]],[12,14,["H3063"]],[14,16,["H1696"]],[16,17,["H8033","(H853)"]],[17,18,["H2088"]],[18,19,["H1697"]]]},{"k":19456,"v":[[0,2,["H559"]],[2,3,["H8085"]],[3,5,["H1697"]],[5,8,["H3068"]],[8,10,["H4428"]],[10,12,["H3063"]],[12,14,["H3427"]],[14,15,["H5921"]],[15,17,["H3678"]],[17,19,["H1732"]],[19,20,["H859"]],[20,23,["H5650"]],[23,26,["H5971"]],[26,28,["H935"]],[28,31,["H428"]],[31,32,["H8179"]]]},{"k":19457,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H6213"]],[5,7,["H4941"]],[7,9,["H6666"]],[9,11,["H5337"]],[11,13,["H1497"]],[13,17,["H4480","H3027"]],[17,20,["H6216"]],[20,23,["H408"]],[23,24,["H3238"]],[24,26,["H408"]],[26,27,["H2554"]],[27,30,["H1616"]],[30,32,["H3490"]],[32,35,["H490"]],[35,36,["H408"]],[36,37,["H8210"]],[37,38,["H5355"]],[38,39,["H1818"]],[39,41,["H2088"]],[41,42,["H4725"]]]},{"k":19458,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,4,["H6213","(H853)"]],[4,5,["H2088"]],[5,6,["H1697"]],[6,7,["H6213"]],[7,12,["H935"]],[12,15,["H8179"]],[15,17,["H2088"]],[17,18,["H1004"]],[18,19,["H4428"]],[19,20,["H3427"]],[20,21,["H5921"]],[21,23,["H3678"]],[23,25,["H1732"]],[25,26,["H7392"]],[26,28,["H7393"]],[28,31,["H5483"]],[31,32,["H1931"]],[32,35,["H5650"]],[35,38,["H5971"]]]},{"k":19459,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H8085","(H853)"]],[6,7,["H428"]],[7,8,["H1697"]],[8,10,["H7650"]],[10,13,["H5002"]],[13,15,["H3068"]],[15,16,["H3588"]],[16,17,["H2088"]],[17,18,["H1004"]],[18,20,["H1961"]],[20,22,["H2723"]]]},{"k":19460,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H5921"]],[6,8,["H4428"]],[8,9,["H1004"]],[9,11,["H3063"]],[11,12,["H859"]],[12,14,["H1568"]],[14,19,["H7218"]],[19,21,["H3844"]],[21,23,["H518","H3808"]],[23,26,["H7896"]],[26,29,["H4057"]],[29,31,["H5892"]],[31,34,["H3808"]],[34,35,["H3427"]]]},{"k":19461,"v":[[0,4,["H6942"]],[4,5,["H7843"]],[5,6,["H5921"]],[6,9,["H376"]],[9,12,["H3627"]],[12,17,["H3772"]],[17,19,["H4005"]],[19,20,["H730"]],[20,22,["H5307"]],[22,24,["H5921"]],[24,26,["H784"]]]},{"k":19462,"v":[[0,2,["H7227"]],[2,3,["H1471"]],[3,5,["H5674"]],[5,6,["H5921"]],[6,7,["H2063"]],[7,8,["H5892"]],[8,12,["H559"]],[12,14,["H376"]],[14,15,["H413"]],[15,17,["H7453"]],[17,18,["H5921","H4100"]],[18,21,["H3068"]],[21,22,["H6213"]],[22,23,["H3602"]],[23,25,["H2063"]],[25,26,["H1419"]],[26,27,["H5892"]]]},{"k":19463,"v":[[0,4,["H559"]],[4,5,["H5921","H834"]],[5,8,["H5800","(H853)"]],[8,10,["H1285"]],[10,13,["H3068"]],[13,15,["H430"]],[15,17,["H7812"]],[17,18,["H312"]],[18,19,["H430"]],[19,21,["H5647"]],[21,22,[]]]},{"k":19464,"v":[[0,1,["H1058"]],[1,3,["H408"]],[3,6,["H4191"]],[6,7,["H408"]],[7,8,["H5110"]],[8,12,["H1058","H1058"]],[12,17,["H1980"]],[17,18,["H3588"]],[18,21,["H7725"]],[21,22,["H3808"]],[22,23,["H5750"]],[23,25,["H7200","(H853)"]],[25,27,["H4138"]],[27,28,["H776"]]]},{"k":19465,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H413"]],[6,7,["H7967"]],[7,9,["H1121"]],[9,11,["H2977"]],[11,12,["H4428"]],[12,14,["H3063"]],[14,16,["H4427"]],[16,17,["H8478"]],[17,19,["H2977"]],[19,21,["H1"]],[21,22,["H834"]],[22,24,["H3318"]],[24,26,["H4480"]],[26,27,["H2088"]],[27,28,["H4725"]],[28,31,["H3808"]],[31,32,["H7725"]],[32,33,["H8033"]],[33,35,["H5750"]]]},{"k":19466,"v":[[0,1,["H3588"]],[1,4,["H4191"]],[4,7,["H4725"]],[7,8,["H834","H8033"]],[8,13,["H1540","(H853)"]],[13,16,["H7200"]],[16,17,["H2063"]],[17,18,["H776"]],[18,19,["H3808"]],[19,20,["H5750"]]]},{"k":19467,"v":[[0,1,["H1945"]],[1,5,["H1129"]],[5,7,["H1004"]],[7,9,["H3808","H6664"]],[9,12,["H5944"]],[12,14,["H3808","H4941"]],[14,18,["H7453"]],[18,19,["H5647"]],[19,21,["H2600"]],[21,23,["H5414"]],[23,25,["H3808"]],[25,28,["H6467"]]]},{"k":19468,"v":[[0,2,["H559"]],[2,5,["H1129"]],[5,8,["H4060"]],[8,9,["H1004"]],[9,11,["H7304"]],[11,12,["H5944"]],[12,16,["H7167"]],[16,17,["H2474"]],[17,21,["H5603"]],[21,23,["H730"]],[23,25,["H4886"]],[25,27,["H8350"]]]},{"k":19469,"v":[[0,3,["H4427"]],[3,4,["H3588"]],[4,5,["H859"]],[5,6,["H8474"]],[6,9,["H730"]],[9,11,["H3808"]],[11,13,["H1"]],[13,14,["H398"]],[14,16,["H8354"]],[16,18,["H6213"]],[18,19,["H4941"]],[19,21,["H6666"]],[21,23,["H227"]],[23,26,["H2896"]],[26,28,[]]]},{"k":19470,"v":[[0,2,["H1777"]],[2,4,["H1779"]],[4,7,["H6041"]],[7,9,["H34"]],[9,10,["H227"]],[10,13,["H2896"]],[13,17,["H3808"]],[17,18,["H1931"]],[18,20,["H1847"]],[20,22,["H5002"]],[22,24,["H3068"]]]},{"k":19471,"v":[[0,1,["H3588"]],[1,3,["H5869"]],[3,6,["H3820"]],[6,8,["H369"]],[8,10,["H3588","H518","H5921"]],[10,12,["H1215"]],[12,14,["H5921"]],[14,16,["H8210"]],[16,17,["H5355"]],[17,18,["H1818"]],[18,20,["H5921"]],[20,21,["H6233"]],[21,23,["H5921"]],[23,24,["H4835"]],[24,26,["H6213"]],[26,27,[]]]},{"k":19472,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H413"]],[6,7,["H3079"]],[7,9,["H1121"]],[9,11,["H2977"]],[11,12,["H4428"]],[12,14,["H3063"]],[14,17,["H3808"]],[17,18,["H5594"]],[18,22,["H1945"]],[22,24,["H251"]],[24,26,["H1945"]],[26,27,["H269"]],[27,30,["H3808"]],[30,31,["H5594"]],[31,35,["H1945"]],[35,36,["H113"]],[36,38,["H1945"]],[38,40,["H1935"]]]},{"k":19473,"v":[[0,4,["H6912"]],[4,7,["H6900"]],[7,10,["H2543"]],[10,11,["H5498"]],[11,14,["H7993"]],[14,15,["H4480","H1973"]],[15,17,["H8179"]],[17,19,["H3389"]]]},{"k":19474,"v":[[0,2,["H5927"]],[2,4,["H3844"]],[4,6,["H6817"]],[6,9,["H5414"]],[9,11,["H6963"]],[11,13,["H1316"]],[13,15,["H6817"]],[15,18,["H4480","H5676"]],[18,19,["H3588"]],[19,20,["H3605"]],[20,22,["H157"]],[22,24,["H7665"]]]},{"k":19475,"v":[[0,2,["H1696"]],[2,3,["H413"]],[3,7,["H7962"]],[7,10,["H559"]],[10,13,["H3808"]],[13,14,["H8085"]],[14,15,["H2088"]],[15,19,["H1870"]],[19,22,["H4480","H5271"]],[22,23,["H3588"]],[23,25,["H8085"]],[25,26,["H3808"]],[26,28,["H6963"]]]},{"k":19476,"v":[[0,2,["H7307"]],[2,5,["H7462"]],[5,6,["H3605"]],[6,8,["H7462"]],[8,11,["H157"]],[11,13,["H1980"]],[13,15,["H7628"]],[15,16,["H3588"]],[16,17,["H227"]],[17,21,["H954"]],[21,23,["H3637"]],[23,25,["H4480","H3605"]],[25,27,["H7451"]]]},{"k":19477,"v":[[0,2,["H3427"]],[2,4,["H3844"]],[4,8,["H7077"]],[8,11,["H730"]],[11,12,["H4100"]],[12,13,["H2603"]],[13,18,["H2256"]],[18,19,["H935"]],[19,23,["H2427"]],[23,29,["H3205"]]]},{"k":19478,"v":[[0,2,["H589"]],[2,3,["H2416"]],[3,4,["H5002"]],[4,6,["H3068"]],[6,7,["H3588","H518"]],[7,8,["H3659"]],[8,10,["H1121"]],[10,12,["H3079"]],[12,13,["H4428"]],[13,15,["H3063"]],[15,16,["H1961"]],[16,18,["H2368"]],[18,19,["H5921"]],[19,21,["H3225"]],[21,22,["H3027"]],[22,23,["H3588"]],[23,26,["H5423"]],[26,28,["H4480","H8033"]]]},{"k":19479,"v":[[0,4,["H5414"]],[4,8,["H3027"]],[8,12,["H1245"]],[12,14,["H5315"]],[14,18,["H3027"]],[18,21,["H834"]],[21,22,["H4480","H6440"]],[22,23,["H859"]],[23,24,["H3016"]],[24,28,["H3027"]],[28,30,["H5019"]],[30,31,["H4428"]],[31,33,["H894"]],[33,37,["H3027"]],[37,40,["H3778"]]]},{"k":19480,"v":[[0,6,["H2904","(H853)"]],[6,9,["H517"]],[9,10,["H834"]],[10,11,["H3205"]],[11,13,["H5921"]],[13,14,["H312"]],[14,15,["H776"]],[15,16,["H834","H8033"]],[16,19,["H3808"]],[19,20,["H3205"]],[20,22,["H8033"]],[22,25,["H4191"]]]},{"k":19481,"v":[[0,2,["H5921"]],[2,4,["H776"]],[4,5,["H834","H8033"]],[5,6,["H1992"]],[6,7,["H5375","(H853)","H5315"]],[7,9,["H7725"]],[9,10,["H8033"]],[10,13,["H3808"]],[13,14,["H7725"]]]},{"k":19482,"v":[[0,2,["H2088"]],[2,3,["H376"]],[3,4,["H3659"]],[4,6,["H959"]],[6,7,["H5310"]],[7,8,["H6089"]],[8,12,["H3627"]],[12,15,["H369"]],[15,16,["H2656"]],[16,17,["H4069"]],[17,21,["H2904"]],[21,22,["H1931"]],[22,25,["H2233"]],[25,28,["H7993"]],[28,29,["H5921"]],[29,31,["H776"]],[31,32,["H834"]],[32,34,["H3045"]],[34,35,["H3808"]]]},{"k":19483,"v":[[0,2,["H776"]],[2,3,["H776"]],[3,4,["H776"]],[4,5,["H8085"]],[5,7,["H1697"]],[7,10,["H3068"]]]},{"k":19484,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H3789"]],[5,6,["(H853)"]],[6,7,["H2088"]],[7,8,["H376"]],[8,9,["H6185"]],[9,11,["H1397"]],[11,14,["H3808"]],[14,15,["H6743"]],[15,18,["H3117"]],[18,19,["H3588"]],[19,20,["H3808"]],[20,21,["H376"]],[21,24,["H4480","H2233"]],[24,26,["H6743"]],[26,27,["H3427"]],[27,28,["H5921"]],[28,30,["H3678"]],[30,32,["H1732"]],[32,34,["H4910"]],[34,36,["H5750"]],[36,38,["H3063"]]]},{"k":19485,"v":[[0,1,["H1945"]],[1,5,["H7462"]],[5,7,["H6"]],[7,9,["H6327","(H853)"]],[9,11,["H6629"]],[11,14,["H4830"]],[14,15,["H5002"]],[15,17,["H3068"]]]},{"k":19486,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H430"]],[6,8,["H3478"]],[8,9,["H5921"]],[9,11,["H7462"]],[11,13,["H7462","(H853)"]],[13,15,["H5971"]],[15,16,["H859"]],[16,18,["H6327","(H853)"]],[18,20,["H6629"]],[20,24,["H5080"]],[24,27,["H3808"]],[27,28,["H6485"]],[28,30,["H2009"]],[30,33,["H6485"]],[33,34,["H5921"]],[34,35,["(H853)"]],[35,37,["H7455"]],[37,40,["H4611"]],[40,41,["H5002"]],[41,43,["H3068"]]]},{"k":19487,"v":[[0,2,["H589"]],[2,4,["H6908","(H853)"]],[4,6,["H7611"]],[6,9,["H6629"]],[9,12,["H4480","H3605"]],[12,13,["H776"]],[13,14,["H834","H8033"]],[14,17,["H5080"]],[17,23,["H7725","(H853)"]],[23,24,["H5921"]],[24,26,["H5116"]],[26,31,["H6509"]],[31,33,["H7235"]]]},{"k":19488,"v":[[0,5,["H6965"]],[5,6,["H7462"]],[6,7,["H5921"]],[7,11,["H7462"]],[11,16,["H3372"]],[16,17,["H3808"]],[17,18,["H5750"]],[18,19,["H3808"]],[19,21,["H2865"]],[21,22,["H3808"]],[22,26,["H6485"]],[26,27,["H5002"]],[27,29,["H3068"]]]},{"k":19489,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,11,["H6965"]],[11,13,["H1732"]],[13,15,["H6662"]],[15,16,["H6780"]],[16,19,["H4428"]],[19,21,["H4427"]],[21,23,["H7919"]],[23,26,["H6213"]],[26,27,["H4941"]],[27,29,["H6666"]],[29,32,["H776"]]]},{"k":19490,"v":[[0,3,["H3117"]],[3,4,["H3063"]],[4,7,["H3467"]],[7,9,["H3478"]],[9,11,["H7931"]],[11,12,["H983"]],[12,14,["H2088"]],[14,17,["H8034"]],[17,18,["H834"]],[18,22,["H7121"]],[22,24,["H3068"]],[24,26,["H6664"]]]},{"k":19491,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,4,["H3117"]],[4,5,["H935"]],[5,6,["H5002"]],[6,8,["H3068"]],[8,12,["H3808"]],[12,13,["H5750"]],[13,14,["H559"]],[14,16,["H3068"]],[16,17,["H2416"]],[17,18,["H834"]],[18,20,["H5927","(H853)"]],[20,22,["H1121"]],[22,24,["H3478"]],[24,28,["H4480","H776"]],[28,30,["H4714"]]]},{"k":19492,"v":[[0,1,["H3588","H518"]],[1,3,["H3068"]],[3,4,["H2416"]],[4,5,["H834"]],[5,7,["H5927"]],[7,9,["H834"]],[9,10,["H935","(H853)"]],[10,12,["H2233"]],[12,15,["H1004"]],[15,17,["H3478"]],[17,21,["H6828"]],[21,22,["H4480","H776"]],[22,25,["H4480","H3605"]],[25,26,["H776"]],[26,27,["H834","H8033"]],[27,30,["H5080"]],[30,35,["H3427"]],[35,36,["H5921"]],[36,39,["H127"]]]},{"k":19493,"v":[[0,2,["H3820"]],[2,3,["H7130"]],[3,6,["H7665"]],[6,10,["H5030"]],[10,11,["H3605"]],[11,13,["H6106"]],[13,14,["H7363"]],[14,16,["H1961"]],[16,19,["H7910"]],[19,20,["H376"]],[20,24,["H1397"]],[24,26,["H3196"]],[26,28,["H5674"]],[28,29,["H4480","H6440"]],[29,32,["H3068"]],[32,34,["H4480","H6440"]],[34,37,["H1697"]],[37,40,["H6944"]]]},{"k":19494,"v":[[0,1,["H3588"]],[1,3,["H776"]],[3,5,["H4390"]],[5,7,["H5003"]],[7,8,["H3588"]],[8,9,["H4480","H6440"]],[9,11,["H423"]],[11,13,["H776"]],[13,14,["H56"]],[14,17,["H4999"]],[17,20,["H4057"]],[20,23,["H3001"]],[23,26,["H4794"]],[26,27,["H1961"]],[27,28,["H7451"]],[28,31,["H1369"]],[31,33,["H3808"]],[33,34,["H3651"]]]},{"k":19495,"v":[[0,1,["H3588"]],[1,2,["H1571"]],[2,3,["H5030"]],[3,4,["H1571"]],[4,5,["H3548"]],[5,7,["H2610"]],[7,8,["H1571"]],[8,11,["H1004"]],[11,14,["H4672"]],[14,16,["H7451"]],[16,17,["H5002"]],[17,19,["H3068"]]]},{"k":19496,"v":[[0,1,["H3651"]],[1,3,["H1870"]],[3,5,["H1961"]],[5,9,["H2519"]],[9,13,["H653"]],[13,18,["H1760"]],[18,20,["H5307"]],[20,22,["H3588"]],[22,25,["H935"]],[25,26,["H7451"]],[26,27,["H5921"]],[27,31,["H8141"]],[31,34,["H6486"]],[34,35,["H5002"]],[35,37,["H3068"]]]},{"k":19497,"v":[[0,4,["H7200"]],[4,5,["H8604"]],[5,8,["H5030"]],[8,10,["H8111"]],[10,12,["H5012"]],[12,14,["H1168"]],[14,16,["(H853)"]],[16,18,["H5971","(H853)"]],[18,19,["H3478"]],[19,21,["H8582"]]]},{"k":19498,"v":[[0,3,["H7200"]],[3,7,["H5030"]],[7,9,["H3389"]],[9,12,["H8186"]],[12,15,["H5003"]],[15,17,["H1980"]],[17,19,["H8267"]],[19,21,["H2388"]],[21,24,["H3027"]],[24,26,["H7489"]],[26,28,["H1115","H376"]],[28,30,["H7725"]],[30,33,["H4480","H7451"]],[33,35,["H1961"]],[35,36,["H3605"]],[36,42,["H5467"]],[42,45,["H3427"]],[45,48,["H6017"]]]},{"k":19499,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,8,["H5921"]],[8,10,["H5030"]],[10,11,["H2009"]],[11,14,["H398"]],[14,17,["H3939"]],[17,21,["H8248"]],[21,23,["H4325"]],[23,25,["H7219"]],[25,26,["H3588"]],[26,27,["H4480","H854"]],[27,29,["H5030"]],[29,31,["H3389"]],[31,33,["H2613"]],[33,35,["H3318"]],[35,37,["H3605"]],[37,39,["H776"]]]},{"k":19500,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H8085"]],[7,8,["H408"]],[8,9,["H5921"]],[9,11,["H1697"]],[11,14,["H5030"]],[14,16,["H5012"]],[16,22,["H1891","(H853)"]],[22,23,["H1992"]],[23,24,["H1696"]],[24,26,["H2377"]],[26,30,["H3820"]],[30,32,["H3808"]],[32,36,["H4480","H6310"]],[36,39,["H3068"]]]},{"k":19501,"v":[[0,3,["H559","H559"]],[3,7,["H5006"]],[7,10,["H3068"]],[10,12,["H1696"]],[12,15,["H1961"]],[15,16,["H7965"]],[16,19,["H559"]],[19,22,["H3605"]],[22,24,["H1980"]],[24,27,["H8307"]],[27,31,["H3820"]],[31,32,["H3808"]],[32,33,["H7451"]],[33,35,["H935"]],[35,36,["H5921"]],[36,37,[]]]},{"k":19502,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,4,["H5975"]],[4,7,["H5475"]],[7,10,["H3068"]],[10,13,["H7200"]],[13,15,["H8085","(H853)"]],[15,17,["H1697"]],[17,18,["H4310"]],[18,20,["H7181"]],[20,22,["H1697"]],[22,24,["H8085"]],[24,25,[]]]},{"k":19503,"v":[[0,1,["H2009"]],[1,3,["H5591"]],[3,6,["H3068"]],[6,9,["H3318"]],[9,11,["H2534"]],[11,14,["H2342"]],[14,15,["H5591"]],[15,19,["H2342"]],[19,20,["H5921"]],[20,22,["H7218"]],[22,25,["H7563"]]]},{"k":19504,"v":[[0,2,["H639"]],[2,5,["H3068"]],[5,7,["H3808"]],[7,8,["H7725"]],[8,9,["H5704"]],[9,12,["H6213"]],[12,14,["H5704"]],[14,17,["H6965"]],[17,19,["H4209"]],[19,22,["H3820"]],[22,25,["H319"]],[25,26,["H3117"]],[26,29,["H995"]],[29,31,["H998"]]]},{"k":19505,"v":[[0,3,["H3808"]],[3,4,["H7971","(H853)"]],[4,6,["H5030"]],[6,8,["H1992"]],[8,9,["H7323"]],[9,12,["H3808"]],[12,13,["H1696"]],[13,14,["H413"]],[14,17,["H1992"]],[17,18,["H5012"]]]},{"k":19506,"v":[[0,2,["H518"]],[2,5,["H5975"]],[5,8,["H5475"]],[8,11,["(H853)"]],[11,13,["H5971"]],[13,15,["H8085"]],[15,17,["H1697"]],[17,22,["H7725"]],[22,26,["H7451"]],[26,27,["H4480","H1870"]],[27,31,["H4480","H7455"]],[31,34,["H4611"]]]},{"k":19507,"v":[[0,2,["H589"]],[2,4,["H430"]],[4,6,["H4480","H7138"]],[6,7,["H5002"]],[7,9,["H3068"]],[9,11,["H3808"]],[11,13,["H430"]],[13,15,["H4480","H7350"]]]},{"k":19508,"v":[[0,1,["H518"]],[1,2,["H376"]],[2,4,["H5641"]],[4,7,["H4565"]],[7,9,["H589"]],[9,11,["H3808"]],[11,12,["H7200"]],[12,14,["H5002"]],[14,16,["H3068"]],[16,18,["H3808"]],[18,19,["H589"]],[19,20,["H4390","(H853)"]],[20,21,["H8064"]],[21,23,["H776"]],[23,24,["H5002"]],[24,26,["H3068"]]]},{"k":19509,"v":[[0,3,["H8085","(H853)"]],[3,4,["H834"]],[4,6,["H5030"]],[6,7,["H559"]],[7,9,["H5012"]],[9,10,["H8267"]],[10,13,["H8034"]],[13,14,["H559"]],[14,17,["H2492"]],[17,20,["H2492"]]]},{"k":19510,"v":[[0,2,["H5704","H4970"]],[2,5,["H3426"]],[5,8,["H3820"]],[8,11,["H5030"]],[11,13,["H5012"]],[13,14,["H8267"]],[14,18,["H5030"]],[18,21,["H8649"]],[21,25,["H3820"]]]},{"k":19511,"v":[[0,2,["H2803"]],[2,4,["(H853)"]],[4,6,["H5971"]],[6,8,["H7911"]],[8,10,["H8034"]],[10,13,["H2472"]],[13,14,["H834"]],[14,16,["H5608"]],[16,18,["H376"]],[18,21,["H7453"]],[21,22,["H834"]],[22,24,["H1"]],[24,26,["H7911","(H853)"]],[26,28,["H8034"]],[28,30,["H1168"]]]},{"k":19512,"v":[[0,2,["H5030"]],[2,3,["H834","H854"]],[3,6,["H2472"]],[6,9,["H5608"]],[9,11,["H2472"]],[11,14,["H834","H854"]],[14,17,["H1697"]],[17,20,["H1696"]],[20,22,["H1697"]],[22,23,["H571"]],[23,24,["H4100"]],[24,27,["H8401"]],[27,28,["H854"]],[28,30,["H1250"]],[30,31,["H5002"]],[31,33,["H3068"]]]},{"k":19513,"v":[[0,2,["H3808"]],[2,4,["H1697"]],[4,5,["H3541"]],[5,8,["H784"]],[8,9,["H5002"]],[9,11,["H3068"]],[11,15,["H6360"]],[15,17,["H6327"]],[17,19,["H5553"]],[19,21,[]]]},{"k":19514,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,5,["H5921"]],[5,7,["H5030"]],[7,8,["H5002"]],[8,10,["H3068"]],[10,12,["H1589"]],[12,14,["H1697"]],[14,16,["H376"]],[16,17,["H4480","H854"]],[17,19,["H7453"]]]},{"k":19515,"v":[[0,1,["H2009"]],[1,4,["H5921"]],[4,6,["H5030"]],[6,7,["H5002"]],[7,9,["H3068"]],[9,11,["H3947"]],[11,13,["H3956"]],[13,15,["H5001"]],[15,17,["H5002"]]]},{"k":19516,"v":[[0,1,["H2009"]],[1,4,["H5921"]],[4,7,["H5012"]],[7,8,["H8267"]],[8,9,["H2472"]],[9,10,["H5002"]],[10,12,["H3068"]],[12,15,["H5608"]],[15,18,["(H853)"]],[18,20,["H5971"]],[20,22,["H8582"]],[22,25,["H8267"]],[25,29,["H6350"]],[29,31,["H595"]],[31,32,["H7971"]],[32,34,["H3808"]],[34,35,["H3808"]],[35,36,["H6680"]],[36,41,["H3808"]],[41,46,["H3276","H3276","H5971","H2088"]],[46,47,["H5002"]],[47,49,["H3068"]]]},{"k":19517,"v":[[0,2,["H3588"]],[2,3,["H2088"]],[3,4,["H5971"]],[4,5,["H176"]],[5,7,["H5030"]],[7,8,["H176"]],[8,10,["H3548"]],[10,12,["H7592"]],[12,14,["H559"]],[14,15,["H4100"]],[15,18,["H4853"]],[18,21,["H3068"]],[21,25,["H559"]],[25,26,["H413"]],[26,27,["(H853)"]],[27,28,["H4100"]],[28,29,["H4853"]],[29,33,["H5203"]],[33,35,["H5002"]],[35,37,["H3068"]]]},{"k":19518,"v":[[0,5,["H5030"]],[5,8,["H3548"]],[8,11,["H5971"]],[11,12,["H834"]],[12,14,["H559"]],[14,16,["H4853"]],[16,19,["H3068"]],[19,23,["H6485","H5921"]],[23,24,["H1931"]],[24,25,["H376"]],[25,28,["H1004"]]]},{"k":19519,"v":[[0,1,["H3541"]],[1,4,["H559"]],[4,6,["H376"]],[6,7,["H5921"]],[7,9,["H7453"]],[9,12,["H376"]],[12,13,["H413"]],[13,15,["H251"]],[15,16,["H4100"]],[16,19,["H3068"]],[19,20,["H6030"]],[20,22,["H4100"]],[22,25,["H3068"]],[25,26,["H1696"]]]},{"k":19520,"v":[[0,3,["H4853"]],[3,6,["H3068"]],[6,9,["H2142"]],[9,10,["H3808"]],[10,11,["H5750"]],[11,12,["H3588"]],[12,14,["H376"]],[14,15,["H1697"]],[15,17,["H1961"]],[17,19,["H4853"]],[19,23,["H2015","(H853)"]],[23,25,["H1697"]],[25,28,["H2416"]],[28,29,["H430"]],[29,32,["H3068"]],[32,34,["H6635"]],[34,36,["H430"]]]},{"k":19521,"v":[[0,1,["H3541"]],[1,4,["H559"]],[4,5,["H413"]],[5,7,["H5030"]],[7,8,["H4100"]],[8,11,["H3068"]],[11,12,["H6030"]],[12,15,["H4100"]],[15,18,["H3068"]],[18,19,["H1696"]]]},{"k":19522,"v":[[0,2,["H518"]],[2,4,["H559"]],[4,6,["H4853"]],[6,9,["H3068"]],[9,10,["H3651"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H3068"]],[14,15,["H3282"]],[15,17,["H559","(H853)"]],[17,18,["H2088"]],[18,19,["H1697"]],[19,21,["H4853"]],[21,24,["H3068"]],[24,28,["H7971"]],[28,29,["H413"]],[29,31,["H559"]],[31,34,["H3808"]],[34,35,["H559"]],[35,37,["H4853"]],[37,40,["H3068"]]]},{"k":19523,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,8,["H5382","H5382"]],[8,13,["H5203"]],[13,17,["H5892"]],[17,18,["H834"]],[18,20,["H5414"]],[20,24,["H1"]],[24,29,["H4480","H5921"]],[29,31,["H6440"]]]},{"k":19524,"v":[[0,4,["H5414"]],[4,6,["H5769"]],[6,7,["H2781"]],[7,8,["H5921"]],[8,12,["H5769"]],[12,13,["H3640"]],[13,14,["H834"]],[14,16,["H3808"]],[16,18,["H7911"]]]},{"k":19525,"v":[[0,2,["H3068"]],[2,3,["H7200"]],[3,6,["H2009"]],[6,7,["H8147"]],[7,8,["H1736"]],[8,10,["H8384"]],[10,12,["H3259"]],[12,13,["H6440"]],[13,15,["H1964"]],[15,18,["H3068"]],[18,20,["H310"]],[20,21,["H5019"]],[21,22,["H4428"]],[22,24,["H894"]],[24,28,["H1540","(H853)"]],[28,29,["H3204"]],[29,31,["H1121"]],[31,33,["H3079"]],[33,34,["H4428"]],[34,36,["H3063"]],[36,39,["H8269"]],[39,41,["H3063"]],[41,42,["H854"]],[42,44,["H2796"]],[44,46,["H4525"]],[46,48,["H4480","H3389"]],[48,51,["H935"]],[51,54,["H894"]]]},{"k":19526,"v":[[0,1,["H259"]],[1,2,["H1731"]],[2,4,["H3966"]],[4,5,["H2896"]],[5,6,["H8384"]],[6,10,["H8384"]],[10,14,["H1073"]],[14,17,["H259"]],[17,18,["H1731"]],[18,20,["H3966"]],[20,21,["H7451"]],[21,22,["H8384"]],[22,23,["H834"]],[23,25,["H3808"]],[25,27,["H398"]],[27,31,["H4480","H7455"]]]},{"k":19527,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,7,["H4100"]],[7,8,["H7200"]],[8,9,["H859"]],[9,10,["H3414"]],[10,13,["H559"]],[13,14,["H8384"]],[14,16,["H2896"]],[16,17,["H8384"]],[17,18,["H3966"]],[18,19,["H2896"]],[19,22,["H7451"]],[22,23,["H3966"]],[23,24,["H7451"]],[24,25,["H834"]],[25,26,["H3808"]],[26,28,["H398"]],[28,32,["H4480","H7455"]]]},{"k":19528,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":19529,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H430"]],[6,8,["H3478"]],[8,10,["H428"]],[10,11,["H2896"]],[11,12,["H8384"]],[12,13,["H3651"]],[13,16,["H5234","(H853)"]],[16,22,["H1546"]],[22,24,["H3063"]],[24,25,["H834"]],[25,28,["H7971"]],[28,30,["H4480"]],[30,31,["H2088"]],[31,32,["H4725"]],[32,35,["H776"]],[35,38,["H3778"]],[38,41,["H2896"]]]},{"k":19530,"v":[[0,4,["H7760"]],[4,6,["H5869"]],[6,7,["H5921"]],[7,10,["H2896"]],[10,16,["H7725"]],[16,17,["H5921"]],[17,18,["H2063"]],[18,19,["H776"]],[19,23,["H1129"]],[23,26,["H3808"]],[26,29,["H2040"]],[29,33,["H5193"]],[33,36,["H3808"]],[36,39,["H5428"]]]},{"k":19531,"v":[[0,4,["H5414"]],[4,7,["H3820"]],[7,9,["H3045"]],[9,11,["H3588"]],[11,12,["H589"]],[12,15,["H3068"]],[15,19,["H1961"]],[19,21,["H5971"]],[21,23,["H595"]],[23,25,["H1961"]],[25,27,["H430"]],[27,28,["H3588"]],[28,31,["H7725"]],[31,32,["H413"]],[32,36,["H3605"]],[36,37,["H3820"]]]},{"k":19532,"v":[[0,4,["H7451"]],[4,5,["H8384"]],[5,6,["H834"]],[6,7,["H3808"]],[7,9,["H398"]],[9,13,["H4480","H7455"]],[13,14,["H3588"]],[14,15,["H3541"]],[15,16,["H559"]],[16,18,["H3068"]],[18,19,["H3651"]],[19,22,["H5414","(H853)"]],[22,23,["H6667"]],[23,25,["H4428"]],[25,27,["H3063"]],[27,30,["H8269"]],[30,33,["H7611"]],[33,35,["H3389"]],[35,37,["H7604"]],[37,39,["H2063"]],[39,40,["H776"]],[40,44,["H3427"]],[44,47,["H776"]],[47,49,["H4714"]]]},{"k":19533,"v":[[0,4,["H5414"]],[4,8,["H2189"]],[8,10,["H3605"]],[10,12,["H4467"]],[12,15,["H776"]],[15,18,["H7451"]],[18,22,["H2781"]],[22,25,["H4912"]],[25,27,["H8148"]],[27,30,["H7045"]],[30,32,["H3605"]],[32,33,["H4725"]],[33,34,["H834","H8033"]],[34,37,["H5080"]],[37,38,[]]]},{"k":19534,"v":[[0,4,["H7971","(H853)"]],[4,6,["H2719","(H853)"]],[6,8,["H7458"]],[8,11,["H1698"]],[11,14,["H5704"]],[14,17,["H8552"]],[17,19,["H4480","H5921"]],[19,21,["H127"]],[21,22,["H834"]],[22,24,["H5414"]],[24,30,["H1"]]]},{"k":19535,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H5921"]],[5,6,["H3414"]],[6,7,["H5921"]],[7,8,["H3605"]],[8,10,["H5971"]],[10,12,["H3063"]],[12,15,["H7243"]],[15,16,["H8141"]],[16,18,["H3079"]],[18,20,["H1121"]],[20,22,["H2977"]],[22,23,["H4428"]],[23,25,["H3063"]],[25,26,["H1931"]],[26,29,["H7224"]],[29,30,["H8141"]],[30,32,["H5019"]],[32,33,["H4428"]],[33,35,["H894"]]]},{"k":19536,"v":[[0,2,["H834"]],[2,3,["H3414"]],[3,5,["H5030"]],[5,6,["H1696"]],[6,7,["H5921"]],[7,8,["H3605"]],[8,10,["H5971"]],[10,12,["H3063"]],[12,14,["H413"]],[14,15,["H3605"]],[15,17,["H3427"]],[17,19,["H3389"]],[19,20,["H559"]]]},{"k":19537,"v":[[0,1,["H4480"]],[1,3,["H7969","H6240"]],[3,4,["H8141"]],[4,6,["H2977"]],[6,8,["H1121"]],[8,10,["H526"]],[10,11,["H4428"]],[11,13,["H3063"]],[13,15,["H5704"]],[15,16,["H2088"]],[16,17,["H3117"]],[17,18,["H2088"]],[18,21,["H7969"]],[21,23,["H6242"]],[23,24,["H8141"]],[24,26,["H1697"]],[26,29,["H3068"]],[29,31,["H1961"]],[31,32,["H413"]],[32,37,["H1696"]],[37,38,["H413"]],[38,41,["H7925"]],[41,43,["H1696"]],[43,47,["H3808"]],[47,48,["H8085"]]]},{"k":19538,"v":[[0,3,["H3068"]],[3,5,["H7971"]],[5,6,["H413"]],[6,7,["(H853)"]],[7,8,["H3605"]],[8,10,["H5650"]],[10,12,["H5030"]],[12,14,["H7925"]],[14,16,["H7971"]],[16,21,["H3808"]],[21,22,["H8085"]],[22,23,["H3808"]],[23,24,["H5186","(H853)"]],[24,26,["H241"]],[26,28,["H8085"]]]},{"k":19539,"v":[[0,2,["H559"]],[2,5,["H7725"]],[5,6,["H4994"]],[6,8,["H376"]],[8,11,["H7451"]],[11,12,["H4480","H1870"]],[12,16,["H4480","H7455"]],[16,19,["H4611"]],[19,21,["H3427"]],[21,22,["H5921"]],[22,24,["H127"]],[24,25,["H834"]],[25,27,["H3068"]],[27,29,["H5414"]],[29,35,["H1"]],[35,37,["H5769"]],[37,39,["H5704","H5769"]]]},{"k":19540,"v":[[0,2,["H1980"]],[2,3,["H408"]],[3,4,["H310"]],[4,5,["H312"]],[5,6,["H430"]],[6,8,["H5647"]],[8,12,["H7812"]],[12,19,["H3808","H3707","(H853)"]],[19,22,["H4639"]],[22,25,["H3027"]],[25,32,["H3808","H7489"]]]},{"k":19541,"v":[[0,4,["H3808"]],[4,5,["H8085"]],[5,6,["H413"]],[6,8,["H5002"]],[8,10,["H3068"]],[10,11,["H4616"]],[11,17,["H3707"]],[17,20,["H4639"]],[20,23,["H3027"]],[23,27,["H7451"]]]},{"k":19542,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,8,["H3282","H834"]],[8,11,["H3808"]],[11,12,["H8085","(H853)"]],[12,14,["H1697"]]]},{"k":19543,"v":[[0,1,["H2009"]],[1,4,["H7971"]],[4,6,["H3947","(H853)"]],[6,7,["H3605"]],[7,9,["H4940"]],[9,12,["H6828"]],[12,13,["H5002"]],[13,15,["H3068"]],[15,17,["H5019"]],[17,19,["H4428"]],[19,21,["H894"]],[21,23,["H5650"]],[23,26,["H935"]],[26,28,["H5921"]],[28,29,["H2063"]],[29,30,["H776"]],[30,32,["H5921"]],[32,34,["H3427"]],[34,37,["H5921"]],[37,38,["H3605"]],[38,39,["H428"]],[39,40,["H1471"]],[40,42,["H5439"]],[42,46,["H2763"]],[46,49,["H7760"]],[49,52,["H8047"]],[52,55,["H8322"]],[55,57,["H5769"]],[57,58,["H2723"]]]},{"k":19544,"v":[[0,4,["H6"]],[4,5,["H4480"]],[5,8,["H6963"]],[8,10,["H8342"]],[10,13,["H6963"]],[13,15,["H8057"]],[15,17,["H6963"]],[17,20,["H2860"]],[20,23,["H6963"]],[23,26,["H3618"]],[26,28,["H6963"]],[28,31,["H7347"]],[31,34,["H216"]],[34,37,["H5216"]]]},{"k":19545,"v":[[0,2,["H2063"]],[2,3,["H3605"]],[3,4,["H776"]],[4,6,["H1961"]],[6,8,["H2723"]],[8,11,["H8047"]],[11,13,["H428"]],[13,14,["H1471"]],[14,16,["H5647","(H853)"]],[16,18,["H4428"]],[18,20,["H894"]],[20,21,["H7657"]],[21,22,["H8141"]]]},{"k":19546,"v":[[0,6,["H1961"]],[6,8,["H7657"]],[8,9,["H8141"]],[9,11,["H4390"]],[11,15,["H6485","H5921"]],[15,17,["H4428"]],[17,19,["H894"]],[19,21,["H1931"]],[21,22,["H1471"]],[22,23,["H5002"]],[23,25,["H3068"]],[25,26,["H854"]],[26,28,["H5771"]],[28,31,["H776"]],[31,34,["H3778"]],[34,37,["H7760"]],[37,39,["H5769"]],[39,40,["H8077"]]]},{"k":19547,"v":[[0,4,["H935"]],[4,5,["H5921"]],[5,6,["H1931"]],[6,7,["H776","(H853)"]],[7,8,["H3605"]],[8,10,["H1697"]],[10,11,["H834"]],[11,14,["H1696"]],[14,15,["H5921"]],[15,17,["(H853)"]],[17,18,["H3605"]],[18,21,["H3789"]],[21,23,["H2088"]],[23,24,["H5612"]],[24,25,["H834"]],[25,26,["H3414"]],[26,28,["H5012"]],[28,29,["H5921"]],[29,30,["H3605"]],[30,32,["H1471"]]]},{"k":19548,"v":[[0,1,["H3588"]],[1,2,["H7227"]],[2,3,["H1471"]],[3,5,["H1419"]],[5,6,["H4428"]],[6,8,["H5647"]],[8,9,["H1992"]],[9,12,["H1571"]],[12,16,["H7999"]],[16,21,["H6467"]],[21,26,["H4639"]],[26,30,["H3027"]]]},{"k":19549,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H430"]],[6,8,["H3478"]],[8,9,["H413"]],[9,11,["H3947","(H853)"]],[11,13,["H3196"]],[13,14,["H3563"]],[14,16,["H2063"]],[16,17,["H2534"]],[17,20,["H4480","H3027"]],[20,22,["(H853)"]],[22,23,["H3605"]],[23,25,["H1471"]],[25,27,["H834","H413"]],[27,28,["H595"]],[28,29,["H7971"]],[29,32,["H8248"]],[32,33,[]]]},{"k":19550,"v":[[0,4,["H8354"]],[4,7,["H1607"]],[7,10,["H1984"]],[10,11,["H4480","H6440"]],[11,14,["H2719"]],[14,15,["H834"]],[15,18,["H7971"]],[18,19,["H996"]],[19,20,[]]]},{"k":19551,"v":[[0,2,["H3947"]],[2,3,["(H853)"]],[3,5,["H3563"]],[5,8,["H3068"]],[8,9,["H4480","H3027"]],[9,11,["(H853)"]],[11,12,["H3605"]],[12,14,["H1471"]],[14,16,["H8248"]],[16,17,["H413"]],[17,18,["H834"]],[18,20,["H3068"]],[20,22,["H7971"]],[22,23,[]]]},{"k":19552,"v":[[0,2,["(H853)"]],[2,3,["H3389"]],[3,6,["H5892"]],[6,8,["H3063"]],[8,11,["H4428"]],[11,13,["(H853)"]],[13,15,["H8269"]],[15,18,["H5414"]],[18,21,["H2723"]],[21,23,["H8047"]],[23,25,["H8322"]],[25,28,["H7045"]],[28,32,["H2088"]],[32,33,["H3117"]]]},{"k":19553,"v":[[0,0,["(H853)"]],[0,1,["H6547"]],[1,2,["H4428"]],[2,4,["H4714"]],[4,7,["H5650"]],[7,10,["H8269"]],[10,12,["H3605"]],[12,14,["H5971"]]]},{"k":19554,"v":[[0,2,["H3605"]],[2,5,["H6154"]],[5,6,["(H853)"]],[6,7,["H3605"]],[7,9,["H4428"]],[9,12,["H776"]],[12,14,["H5780"]],[14,16,["H3605"]],[16,18,["H4428"]],[18,21,["H776"]],[21,24,["H6430"]],[24,26,["H831"]],[26,28,["H5804"]],[28,30,["H6138"]],[30,33,["H7611"]],[33,35,["H795"]]]},{"k":19555,"v":[[0,0,["(H853)"]],[0,1,["H123"]],[1,3,["H4124"]],[3,6,["H1121"]],[6,8,["H5983"]]]},{"k":19556,"v":[[0,2,["H3605"]],[2,4,["H4428"]],[4,6,["H6865"]],[6,8,["H3605"]],[8,10,["H4428"]],[10,12,["H6721"]],[12,15,["H4428"]],[15,18,["H339"]],[18,19,["H834"]],[19,21,["H5676"]],[21,23,["H3220"]]]},{"k":19557,"v":[[0,1,["H1719"]],[1,3,["H8485"]],[3,5,["H938"]],[5,7,["H3605"]],[7,12,["H7112"]],[12,13,["H6285"]]]},{"k":19558,"v":[[0,2,["H3605"]],[2,4,["H4428"]],[4,6,["H6152"]],[6,8,["H3605"]],[8,10,["H4428"]],[10,14,["H6154"]],[14,16,["H7931"]],[16,19,["H4057"]]]},{"k":19559,"v":[[0,2,["H3605"]],[2,4,["H4428"]],[4,6,["H2174"]],[6,8,["H3605"]],[8,10,["H4428"]],[10,12,["H5867"]],[12,14,["H3605"]],[14,16,["H4428"]],[16,19,["H4074"]]]},{"k":19560,"v":[[0,2,["H3605"]],[2,4,["H4428"]],[4,7,["H6828"]],[7,8,["H7350"]],[8,10,["H7138"]],[10,11,["H376"]],[11,12,["H413"]],[12,13,["H251"]],[13,15,["H3605"]],[15,17,["H4467"]],[17,20,["H776"]],[20,21,["H834"]],[21,23,["H5921"]],[23,25,["H6440"]],[25,28,["H127"]],[28,31,["H4428"]],[31,33,["H8347"]],[33,35,["H8354"]],[35,36,["H310"]],[36,37,[]]]},{"k":19561,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H3541"]],[7,8,["H559"]],[8,10,["H3068"]],[10,12,["H6635"]],[12,14,["H430"]],[14,16,["H3478"]],[16,17,["H8354"]],[17,21,["H7937"]],[21,23,["H7006"]],[23,25,["H5307"]],[25,27,["H6965"]],[27,28,["H3808"]],[28,30,["H4480","H6440"]],[30,33,["H2719"]],[33,34,["H834"]],[34,35,["H595"]],[35,37,["H7971"]],[37,38,["H996"]],[38,39,[]]]},{"k":19562,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,7,["H3985"]],[7,9,["H3947"]],[9,11,["H3563"]],[11,14,["H4480","H3027"]],[14,16,["H8354"]],[16,20,["H559"]],[20,21,["H413"]],[21,23,["H3541"]],[23,24,["H559"]],[24,26,["H3068"]],[26,28,["H6635"]],[28,32,["H8354","H8354"]]]},{"k":19563,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,3,["H595"]],[3,4,["H2490"]],[4,7,["H7489"]],[7,10,["H5892"]],[10,11,["H834"]],[11,13,["H7121"]],[13,14,["H5921"]],[14,16,["H8034"]],[16,19,["H859"]],[19,22,["H5352","H5352"]],[22,25,["H3808"]],[25,27,["H5352"]],[27,28,["H3588"]],[28,29,["H589"]],[29,32,["H7121"]],[32,34,["H2719"]],[34,35,["H5921"]],[35,36,["H3605"]],[36,38,["H3427"]],[38,41,["H776"]],[41,42,["H5002"]],[42,44,["H3068"]],[44,46,["H6635"]]]},{"k":19564,"v":[[0,2,["H5012"]],[2,3,["H859"]],[3,4,["H413"]],[4,5,["(H853)"]],[5,6,["H3605"]],[6,7,["H428"]],[7,8,["H1697"]],[8,10,["H559"]],[10,11,["H413"]],[11,14,["H3068"]],[14,16,["H7580"]],[16,19,["H4480","H4791"]],[19,21,["H5414"]],[21,23,["H6963"]],[23,26,["H6944"]],[26,27,["H4480","H4583"]],[27,31,["H7580","H7580"]],[31,32,["H5921"]],[32,34,["H5116"]],[34,37,["H6030"]],[37,39,["H1959"]],[39,43,["H1869"]],[43,46,["H413"]],[46,47,["H3605"]],[47,49,["H3427"]],[49,52,["H776"]]]},{"k":19565,"v":[[0,2,["H7588"]],[2,4,["H935"]],[4,6,["H5704"]],[6,8,["H7097"]],[8,11,["H776"]],[11,12,["H3588"]],[12,14,["H3068"]],[14,17,["H7379"]],[17,20,["H1471"]],[20,21,["H1931"]],[21,23,["H8199"]],[23,25,["H3605"]],[25,26,["H1320"]],[26,29,["H5414"]],[29,33,["H7563"]],[33,36,["H2719"]],[36,37,["H5002"]],[37,39,["H3068"]]]},{"k":19566,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H2009"]],[7,8,["H7451"]],[8,11,["H3318"]],[11,13,["H4480","H1471"]],[13,14,["H413"]],[14,15,["H1471"]],[15,18,["H1419"]],[18,19,["H5591"]],[19,23,["H5782"]],[23,26,["H4480","H3411"]],[26,29,["H776"]]]},{"k":19567,"v":[[0,3,["H2491"]],[3,6,["H3068"]],[6,8,["H1961"]],[8,10,["H1931"]],[10,11,["H3117"]],[11,14,["H4480","H7097"]],[14,17,["H776"]],[17,19,["H5704"]],[19,22,["H7097"]],[22,25,["H776"]],[25,28,["H3808"]],[28,30,["H5594"]],[30,31,["H3808"]],[31,32,["H622"]],[32,33,["H3808"]],[33,34,["H6912"]],[34,37,["H1961"]],[37,38,["H1828"]],[38,39,["H5921","H6440"]],[39,41,["H127"]]]},{"k":19568,"v":[[0,1,["H3213"]],[1,3,["H7462"]],[3,5,["H2199"]],[5,8,["H6428"]],[8,13,["H117"]],[13,16,["H6629"]],[16,17,["H3588"]],[17,19,["H3117"]],[19,22,["H2873"]],[22,26,["H8600"]],[26,28,["H4390"]],[28,32,["H5307"]],[32,35,["H2532"]],[35,36,["H3627"]]]},{"k":19569,"v":[[0,3,["H7462"]],[3,9,["H4480","H6","H4498"]],[9,12,["H4480","H117"]],[12,15,["H6629"]],[15,17,["H6413"]]]},{"k":19570,"v":[[0,2,["H6963"]],[2,5,["H6818"]],[5,8,["H7462"]],[8,11,["H3215"]],[11,14,["H117"]],[14,17,["H6629"]],[17,21,["H3588"]],[21,23,["H3068"]],[23,25,["H7703","(H853)"]],[25,27,["H4830"]]]},{"k":19571,"v":[[0,3,["H7965"]],[3,4,["H4999"]],[4,7,["H1826"]],[7,8,["H4480","H6440"]],[8,11,["H2740"]],[11,12,["H639"]],[12,15,["H3068"]]]},{"k":19572,"v":[[0,3,["H5800"]],[3,5,["H5520"]],[5,8,["H3715"]],[8,9,["H3588"]],[9,11,["H776"]],[11,12,["H1961"]],[12,13,["H8047"]],[13,14,["H4480","H6440"]],[14,17,["H2740"]],[17,20,["H3238"]],[20,22,["H4480","H6440"]],[22,25,["H2740"]],[25,26,["H639"]]]},{"k":19573,"v":[[0,3,["H7225"]],[3,6,["H4468"]],[6,8,["H3079"]],[8,10,["H1121"]],[10,12,["H2977"]],[12,13,["H4428"]],[13,15,["H3063"]],[15,16,["H1961"]],[16,17,["H2088"]],[17,18,["H1697"]],[18,19,["H4480","H854"]],[19,21,["H3068"]],[21,22,["H559"]]]},{"k":19574,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5975"]],[5,8,["H2691"]],[8,11,["H3068"]],[11,12,["H1004"]],[12,14,["H1696"]],[14,15,["H5921"]],[15,16,["H3605"]],[16,18,["H5892"]],[18,20,["H3063"]],[20,22,["H935"]],[22,24,["H7812"]],[24,27,["H3068"]],[27,28,["H1004"]],[28,29,["H3605"]],[29,31,["H1697"]],[31,32,["H834"]],[32,34,["H6680"]],[34,37,["H1696"]],[37,38,["H413"]],[38,40,["H1639"]],[40,41,["H408"]],[41,43,["H1697"]]]},{"k":19575,"v":[[0,3,["H194"]],[3,6,["H8085"]],[6,8,["H7725"]],[8,10,["H376"]],[10,13,["H7451"]],[13,14,["H4480","H1870"]],[14,18,["H5162"]],[18,20,["H413"]],[20,22,["H7451"]],[22,23,["H834"]],[23,24,["H595"]],[24,25,["H2803"]],[25,27,["H6213"]],[27,30,["H4480","H6440"]],[30,33,["H7455"]],[33,36,["H4611"]]]},{"k":19576,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H3541"]],[7,8,["H559"]],[8,10,["H3068"]],[10,11,["H518"]],[11,14,["H3808"]],[14,15,["H8085"]],[15,16,["H413"]],[16,19,["H1980"]],[19,22,["H8451"]],[22,23,["H834"]],[23,26,["H5414"]],[26,27,["H6440"]],[27,28,[]]]},{"k":19577,"v":[[0,2,["H8085"]],[2,3,["H5921"]],[3,5,["H1697"]],[5,8,["H5650"]],[8,10,["H5030"]],[10,11,["H834"]],[11,12,["H595"]],[12,13,["H7971"]],[13,14,["H413"]],[14,19,["H7925"]],[19,21,["H7971"]],[21,26,["H3808"]],[26,27,["H8085"]]]},{"k":19578,"v":[[0,4,["H5414","(H853)"]],[4,5,["H2088"]],[5,6,["H1004"]],[6,8,["H7887"]],[8,11,["H5414"]],[11,12,["H2063"]],[12,13,["H5892"]],[13,15,["H7045"]],[15,17,["H3605"]],[17,19,["H1471"]],[19,22,["H776"]]]},{"k":19579,"v":[[0,3,["H3548"]],[3,6,["H5030"]],[6,8,["H3605"]],[8,10,["H5971"]],[10,11,["H8085","(H853)"]],[11,12,["H3414"]],[12,13,["H1696","(H853)"]],[13,14,["H428"]],[14,15,["H1697"]],[15,18,["H1004"]],[18,21,["H3068"]]]},{"k":19580,"v":[[0,5,["H1961"]],[5,7,["H3414"]],[7,11,["H3615"]],[11,13,["H1696","(H853)"]],[13,14,["H3605"]],[14,15,["H834"]],[15,17,["H3068"]],[17,19,["H6680"]],[19,22,["H1696"]],[22,23,["H413"]],[23,24,["H3605"]],[24,26,["H5971"]],[26,29,["H3548"]],[29,32,["H5030"]],[32,34,["H3605"]],[34,36,["H5971"]],[36,37,["H8610"]],[37,39,["H559"]],[39,43,["H4191","H4191"]]]},{"k":19581,"v":[[0,1,["H4069"]],[1,4,["H5012"]],[4,7,["H8034"]],[7,10,["H3068"]],[10,11,["H559"]],[11,12,["H2088"]],[12,13,["H1004"]],[13,15,["H1961"]],[15,17,["H7887"]],[17,19,["H2063"]],[19,20,["H5892"]],[20,23,["H2717"]],[23,24,["H4480","H369"]],[24,26,["H3427"]],[26,28,["H3605"]],[28,30,["H5971"]],[30,32,["H6950"]],[32,33,["H413"]],[33,34,["H3414"]],[34,37,["H1004"]],[37,40,["H3068"]]]},{"k":19582,"v":[[0,3,["H8269"]],[3,5,["H3063"]],[5,6,["H8085","(H853)"]],[6,7,["H428"]],[7,8,["H1697"]],[8,12,["H5927"]],[12,15,["H4428"]],[15,16,["H4480","H1004"]],[16,19,["H1004"]],[19,22,["H3068"]],[22,25,["H3427"]],[25,28,["H6607"]],[28,31,["H2319"]],[31,32,["H8179"]],[32,35,["H3068"]],[35,36,[]]]},{"k":19583,"v":[[0,2,["H559"]],[2,4,["H3548"]],[4,7,["H5030"]],[7,8,["H413"]],[8,10,["H8269"]],[10,12,["H413"]],[12,13,["H3605"]],[13,15,["H5971"]],[15,16,["H559"]],[16,17,["H2088"]],[17,18,["H376"]],[18,20,["H4941"]],[20,22,["H4194"]],[22,23,["H3588"]],[23,26,["H5012"]],[26,27,["H413"]],[27,28,["H2063"]],[28,29,["H5892"]],[29,30,["H834"]],[30,33,["H8085"]],[33,36,["H241"]]]},{"k":19584,"v":[[0,2,["H559"]],[2,3,["H3414"]],[3,4,["H413"]],[4,5,["H3605"]],[5,7,["H8269"]],[7,9,["H413"]],[9,10,["H3605"]],[10,12,["H5971"]],[12,13,["H559"]],[13,15,["H3068"]],[15,16,["H7971"]],[16,19,["H5012"]],[19,20,["H413"]],[20,21,["H2088"]],[21,22,["H1004"]],[22,24,["H413"]],[24,25,["H2063"]],[25,26,["H5892"]],[26,27,["H3605"]],[27,29,["H1697"]],[29,30,["H834"]],[30,33,["H8085"]]]},{"k":19585,"v":[[0,2,["H6258"]],[2,3,["H3190"]],[3,5,["H1870"]],[5,8,["H4611"]],[8,10,["H8085"]],[10,12,["H6963"]],[12,15,["H3068"]],[15,17,["H430"]],[17,20,["H3068"]],[20,22,["H5162"]],[22,24,["H413"]],[24,26,["H7451"]],[26,27,["H834"]],[27,30,["H1696"]],[30,31,["H5921"]],[31,32,[]]]},{"k":19586,"v":[[0,3,["H589"]],[3,4,["H2009"]],[4,9,["H3027"]],[9,10,["H6213"]],[10,14,["H5869"]],[14,15,["H2896"]],[15,17,["H3477"]],[17,19,[]]]},{"k":19587,"v":[[0,1,["H389"]],[1,5,["H3045","H3045"]],[5,6,["H3588"]],[6,7,["H518"]],[7,8,["H859"]],[8,12,["H4191","(H853)"]],[12,13,["H859"]],[13,15,["H3588"]],[15,16,["H5414"]],[16,17,["H5355"]],[17,18,["H1818"]],[18,19,["H5921"]],[19,22,["H413"]],[22,23,["H2063"]],[23,24,["H5892"]],[24,26,["H413"]],[26,28,["H3427"]],[28,30,["H3588"]],[30,33,["H571"]],[33,35,["H3068"]],[35,37,["H7971"]],[37,39,["H5921"]],[39,42,["H1696","(H853)"]],[42,43,["H3605"]],[43,44,["H428"]],[44,45,["H1697"]],[45,48,["H241"]]]},{"k":19588,"v":[[0,2,["H559"]],[2,4,["H8269"]],[4,6,["H3605"]],[6,8,["H5971"]],[8,9,["H413"]],[9,11,["H3548"]],[11,13,["H413"]],[13,15,["H5030"]],[15,16,["H2088"]],[16,17,["H376"]],[17,19,["H369"]],[19,20,["H4941"]],[20,22,["H4194"]],[22,23,["H3588"]],[23,26,["H1696"]],[26,27,["H413"]],[27,31,["H8034"]],[31,34,["H3068"]],[34,36,["H430"]]]},{"k":19589,"v":[[0,3,["H6965"]],[3,4,["H376"]],[4,7,["H4480","H2205"]],[7,10,["H776"]],[10,12,["H559"]],[12,13,["H413"]],[13,14,["H3605"]],[14,16,["H6951"]],[16,19,["H5971"]],[19,20,["H559"]]]},{"k":19590,"v":[[0,1,["H4320"]],[1,3,["H4183"]],[3,4,["H1961","H5012"]],[4,7,["H3117"]],[7,9,["H2396"]],[9,10,["H4428"]],[10,12,["H3063"]],[12,14,["H559"]],[14,15,["H413"]],[15,16,["H3605"]],[16,18,["H5971"]],[18,20,["H3063"]],[20,21,["H559"]],[21,22,["H3541"]],[22,23,["H559"]],[23,25,["H3068"]],[25,27,["H6635"]],[27,28,["H6726"]],[28,31,["H2790"]],[31,34,["H7704"]],[34,36,["H3389"]],[36,38,["H1961"]],[38,39,["H5856"]],[39,42,["H2022"]],[42,45,["H1004"]],[45,49,["H1116"]],[49,52,["H3293"]]]},{"k":19591,"v":[[0,2,["H2396"]],[2,3,["H4428"]],[3,5,["H3063"]],[5,7,["H3605"]],[7,8,["H3063"]],[8,14,["H4191","H4191"]],[14,17,["H3808"]],[17,18,["H3372","(H853)"]],[18,20,["H3068"]],[20,22,["H2470","(H853)","H6440"]],[22,24,["H3068"]],[24,27,["H3068"]],[27,28,["H5162"]],[28,30,["H413"]],[30,32,["H7451"]],[32,33,["H834"]],[33,36,["H1696"]],[36,37,["H5921"]],[37,41,["H587"]],[41,42,["H6213"]],[42,43,["H1419"]],[43,44,["H7451"]],[44,45,["H5921"]],[45,47,["H5315"]]]},{"k":19592,"v":[[0,3,["H1961"]],[3,4,["H1571"]],[4,6,["H376"]],[6,8,["H5012"]],[8,11,["H8034"]],[11,14,["H3068"]],[14,15,["H223"]],[15,17,["H1121"]],[17,19,["H8098"]],[19,21,["H4480","H7157"]],[21,23,["H5012"]],[23,24,["H5921"]],[24,25,["H2063"]],[25,26,["H5892"]],[26,28,["H5921"]],[28,29,["H2063"]],[29,30,["H776"]],[30,33,["H3605"]],[33,35,["H1697"]],[35,37,["H3414"]]]},{"k":19593,"v":[[0,3,["H3079"]],[3,5,["H4428"]],[5,7,["H3605"]],[7,10,["H1368"]],[10,12,["H3605"]],[12,14,["H8269"]],[14,15,["H8085","(H853)"]],[15,17,["H1697"]],[17,19,["H4428"]],[19,20,["H1245"]],[20,25,["H4191"]],[25,28,["H223"]],[28,29,["H8085"]],[29,33,["H3372"]],[33,35,["H1272"]],[35,38,["H935"]],[38,39,["H4714"]]]},{"k":19594,"v":[[0,2,["H3079"]],[2,4,["H4428"]],[4,5,["H7971"]],[5,6,["H376"]],[6,8,["H4714"]],[8,9,["(H853)"]],[9,10,["H494"]],[10,12,["H1121"]],[12,14,["H5907"]],[14,17,["H376"]],[17,18,["H854"]],[18,20,["H413"]],[20,21,["H4714"]]]},{"k":19595,"v":[[0,4,["H3318","(H853)"]],[4,5,["H223"]],[5,8,["H4480","H4714"]],[8,10,["H935"]],[10,12,["H413"]],[12,13,["H3079"]],[13,15,["H4428"]],[15,17,["H5221"]],[17,21,["H2719"]],[21,23,["H7993","(H853)"]],[23,26,["H5038"]],[26,27,["H413"]],[27,29,["H6913"]],[29,32,["H1121"]],[32,33,["H5971"]]]},{"k":19596,"v":[[0,1,["H389"]],[1,3,["H3027"]],[3,5,["H296"]],[5,7,["H1121"]],[7,9,["H8227"]],[9,10,["H1961"]],[10,11,["H854"]],[11,12,["H3414"]],[12,16,["H1115"]],[16,17,["H5414"]],[17,21,["H3027"]],[21,24,["H5971"]],[24,29,["H4191"]]]},{"k":19597,"v":[[0,3,["H7225"]],[3,6,["H4467"]],[6,8,["H3079"]],[8,10,["H1121"]],[10,12,["H2977"]],[12,13,["H4428"]],[13,15,["H3063"]],[15,16,["H1961"]],[16,17,["H2088"]],[17,18,["H1697"]],[18,19,["H413"]],[19,20,["H3414"]],[20,21,["H4480","H854"]],[21,23,["H3068"]],[23,24,["H559"]]]},{"k":19598,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,7,["H6213"]],[7,9,["H4147"]],[9,11,["H4133"]],[11,13,["H5414"]],[13,15,["H5921"]],[15,17,["H6677"]]]},{"k":19599,"v":[[0,2,["H7971"]],[2,4,["H413"]],[4,6,["H4428"]],[6,8,["H123"]],[8,10,["H413"]],[10,12,["H4428"]],[12,14,["H4124"]],[14,16,["H413"]],[16,18,["H4428"]],[18,21,["H1121","H5983"]],[21,23,["H413"]],[23,25,["H4428"]],[25,27,["H6865"]],[27,31,["H4428"]],[31,33,["H6721"]],[33,36,["H3027"]],[36,39,["H4397"]],[39,41,["H935"]],[41,43,["H3389"]],[43,44,["H413"]],[44,45,["H6667"]],[45,46,["H4428"]],[46,48,["H3063"]]]},{"k":19600,"v":[[0,2,["H6680"]],[2,5,["H559"]],[5,6,["H413"]],[6,8,["H113"]],[8,9,["H3541"]],[9,10,["H559"]],[10,12,["H3068"]],[12,14,["H6635"]],[14,16,["H430"]],[16,18,["H3478"]],[18,19,["H3541"]],[19,22,["H559"]],[22,23,["H413"]],[23,25,["H113"]]]},{"k":19601,"v":[[0,1,["H595"]],[1,3,["H6213","(H853)"]],[3,5,["H776","(H853)"]],[5,7,["H120"]],[7,10,["H929"]],[10,11,["H834"]],[11,13,["H5921","H6440"]],[13,15,["H776"]],[15,18,["H1419"]],[18,19,["H3581"]],[19,23,["H5186"]],[23,24,["H2220"]],[24,27,["H5414"]],[27,30,["H834"]],[30,32,["H5869"]],[32,33,["H3474"]],[33,35,[]]]},{"k":19602,"v":[[0,2,["H6258"]],[2,4,["H595"]],[4,5,["H5414","(H853)"]],[5,6,["H3605"]],[6,7,["H428"]],[7,8,["H776"]],[8,11,["H3027"]],[11,13,["H5019"]],[13,15,["H4428"]],[15,17,["H894"]],[17,19,["H5650"]],[19,20,["(H853)"]],[20,22,["H2416"]],[22,25,["H7704"]],[25,28,["H5414"]],[28,30,["H1571"]],[30,32,["H5647"]],[32,33,[]]]},{"k":19603,"v":[[0,2,["H3605"]],[2,3,["H1471"]],[3,5,["H5647"]],[5,9,["H1121"]],[9,12,["H1121"]],[12,13,["H1121"]],[13,14,["H5704"]],[14,17,["H6256"]],[17,20,["H776"]],[20,21,["H935"]],[21,23,["H1571"]],[23,24,["H7227"]],[24,25,["H1471"]],[25,27,["H1419"]],[27,28,["H4428"]],[28,30,["H5647"]],[30,33,["H1931"]]]},{"k":19604,"v":[[0,6,["H1961"]],[6,9,["H1471"]],[9,11,["H4467"]],[11,12,["H834"]],[12,14,["H3808"]],[14,15,["H5647"]],[15,17,["(H853)"]],[17,18,["H5019"]],[18,20,["H4428"]],[20,22,["H894"]],[22,24,["H834"]],[24,26,["H3808"]],[26,27,["H5414","(H853)"]],[27,29,["H6677"]],[29,32,["H5923"]],[32,35,["H4428"]],[35,37,["H894"]],[37,38,["H1931"]],[38,39,["H1471"]],[39,42,["H6485"]],[42,43,["H5002"]],[43,45,["H3068"]],[45,48,["H2719"]],[48,52,["H7458"]],[52,56,["H1698"]],[56,57,["H5704"]],[57,60,["H8552"]],[60,64,["H3027"]]]},{"k":19605,"v":[[0,2,["H8085"]],[2,3,["H408"]],[3,4,["H859"]],[4,5,["H413"]],[5,7,["H5030"]],[7,9,["H413"]],[9,11,["H7080"]],[11,13,["H413"]],[13,15,["H2472"]],[15,17,["H413"]],[17,19,["H6049"]],[19,21,["H413"]],[21,23,["H3786"]],[23,24,["H834","H1992"]],[24,25,["H559"]],[25,26,["H413"]],[26,28,["H559"]],[28,31,["H3808"]],[31,32,["H5647","(H853)"]],[32,34,["H4428"]],[34,36,["H894"]]]},{"k":19606,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,3,["H5012"]],[3,5,["H8267"]],[5,8,["H4616"]],[8,11,["H7368","(H853)"]],[11,12,["H4480","H5921"]],[12,14,["H127"]],[14,21,["H5080","(H853)"]],[21,25,["H6"]]]},{"k":19607,"v":[[0,3,["H1471"]],[3,4,["H834"]],[4,5,["H935","(H853)"]],[5,7,["H6677"]],[7,10,["H5923"]],[10,13,["H4428"]],[13,15,["H894"]],[15,17,["H5647"]],[17,23,["H5117"]],[23,25,["H5921"]],[25,28,["H127"]],[28,29,["H5002"]],[29,31,["H3068"]],[31,35,["H5647"]],[35,38,["H3427"]],[38,39,[]]]},{"k":19608,"v":[[0,2,["H1696"]],[2,4,["H413"]],[4,5,["H6667"]],[5,6,["H4428"]],[6,8,["H3063"]],[8,11,["H3605"]],[11,12,["H428"]],[12,13,["H1697"]],[13,14,["H559"]],[14,15,["H935","(H853)"]],[15,17,["H6677"]],[17,20,["H5923"]],[20,23,["H4428"]],[23,25,["H894"]],[25,27,["H5647"]],[27,31,["H5971"]],[31,33,["H2421"]]]},{"k":19609,"v":[[0,1,["H4100"]],[1,4,["H4191"]],[4,5,["H859"]],[5,8,["H5971"]],[8,11,["H2719"]],[11,14,["H7458"]],[14,18,["H1698"]],[18,19,["H834"]],[19,21,["H3068"]],[21,23,["H1696"]],[23,24,["H413"]],[24,26,["H1471"]],[26,27,["H834"]],[27,29,["H3808"]],[29,30,["H5647","(H853)"]],[30,32,["H4428"]],[32,34,["H894"]]]},{"k":19610,"v":[[0,2,["H8085"]],[2,3,["H408"]],[3,4,["H413"]],[4,6,["H1697"]],[6,9,["H5030"]],[9,11,["H559"]],[11,12,["H413"]],[12,14,["H559"]],[14,17,["H3808"]],[17,18,["H5647","(H853)"]],[18,20,["H4428"]],[20,22,["H894"]],[22,23,["H3588"]],[23,24,["H1992"]],[24,25,["H5012"]],[25,27,["H8267"]],[27,29,[]]]},{"k":19611,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H7971"]],[5,7,["H5002"]],[7,9,["H3068"]],[9,11,["H1992"]],[11,12,["H5012"]],[12,14,["H8267"]],[14,17,["H8034"]],[17,18,["H4616"]],[18,23,["H5080","(H853)"]],[23,28,["H6"]],[28,29,["H859"]],[29,32,["H5030"]],[32,34,["H5012"]],[34,36,[]]]},{"k":19612,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H3548"]],[6,8,["H413"]],[8,9,["H3605"]],[9,10,["H2088"]],[10,11,["H5971"]],[11,12,["H559"]],[12,13,["H3541"]],[13,14,["H559"]],[14,16,["H3068"]],[16,17,["H8085"]],[17,18,["H408"]],[18,19,["H413"]],[19,21,["H1697"]],[21,24,["H5030"]],[24,26,["H5012"]],[26,29,["H559"]],[29,30,["H2009"]],[30,32,["H3627"]],[32,35,["H3068"]],[35,36,["H1004"]],[36,38,["H6258"]],[38,39,["H4120"]],[39,42,["H7725"]],[42,44,["H4480","H894"]],[44,45,["H3588"]],[45,46,["H1992"]],[46,47,["H5012"]],[47,49,["H8267"]],[49,51,[]]]},{"k":19613,"v":[[0,1,["H8085"]],[1,2,["H408"]],[2,3,["H413"]],[3,5,["H5647","(H853)"]],[5,7,["H4428"]],[7,9,["H894"]],[9,11,["H2421"]],[11,12,["H4100"]],[12,14,["H2063"]],[14,15,["H5892"]],[15,16,["H1961"]],[16,18,["H2723"]]]},{"k":19614,"v":[[0,2,["H518"]],[2,3,["H1992"]],[3,5,["H5030"]],[5,7,["H518"]],[7,9,["H1697"]],[9,12,["H3068"]],[12,13,["H3426"]],[13,14,["H854"]],[14,18,["H4994"]],[18,20,["H6293"]],[20,23,["H3068"]],[23,25,["H6635"]],[25,28,["H3627"]],[28,31,["H3498"]],[31,34,["H1004"]],[34,37,["H3068"]],[37,41,["H1004"]],[41,44,["H4428"]],[44,46,["H3063"]],[46,49,["H3389"]],[49,50,["H935"]],[50,51,["H1115"]],[51,53,["H894"]]]},{"k":19615,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,8,["H413"]],[8,10,["H5982"]],[10,12,["H5921"]],[12,14,["H3220"]],[14,16,["H5921"]],[16,18,["H4350"]],[18,20,["H5921"]],[20,22,["H3499"]],[22,25,["H3627"]],[25,27,["H3498"]],[27,29,["H2063"]],[29,30,["H5892"]]]},{"k":19616,"v":[[0,1,["H834"]],[1,2,["H5019"]],[2,3,["H4428"]],[3,5,["H894"]],[5,6,["H3947"]],[6,7,["H3808"]],[7,12,["H1540","(H853)"]],[12,13,["H3204"]],[13,15,["H1121"]],[15,17,["H3079"]],[17,18,["H4428"]],[18,20,["H3063"]],[20,22,["H4480","H3389"]],[22,24,["H894"]],[24,26,["H3605"]],[26,28,["H2715"]],[28,30,["H3063"]],[30,32,["H3389"]]]},{"k":19617,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,12,["H5921"]],[12,14,["H3627"]],[14,16,["H3498"]],[16,19,["H1004"]],[19,22,["H3068"]],[22,26,["H1004"]],[26,29,["H4428"]],[29,31,["H3063"]],[31,34,["H3389"]]]},{"k":19618,"v":[[0,4,["H935"]],[4,6,["H894"]],[6,8,["H8033"]],[8,11,["H1961"]],[11,12,["H5704"]],[12,14,["H3117"]],[14,17,["H6485"]],[17,19,["H5002"]],[19,21,["H3068"]],[21,27,["H5927"]],[27,29,["H7725"]],[29,31,["H413"]],[31,32,["H2008"]],[32,33,["H4725"]]]},{"k":19619,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,8,["H8141"]],[8,11,["H7225"]],[11,14,["H4467"]],[14,16,["H6667"]],[16,17,["H4428"]],[17,19,["H3063"]],[19,22,["H7243"]],[22,23,["H8141"]],[23,27,["H2549"]],[27,28,["H2320"]],[28,30,["H2608"]],[30,32,["H1121"]],[32,34,["H5809"]],[34,36,["H5030"]],[36,37,["H834"]],[37,40,["H4480","H1391"]],[40,41,["H559"]],[41,42,["H413"]],[42,46,["H1004"]],[46,49,["H3068"]],[49,52,["H5869"]],[52,55,["H3548"]],[55,58,["H3605"]],[58,60,["H5971"]],[60,61,["H559"]]]},{"k":19620,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,11,["H559"]],[11,14,["H7665","(H853)"]],[14,16,["H5923"]],[16,19,["H4428"]],[19,21,["H894"]]]},{"k":19621,"v":[[0,1,["H5750"]],[1,4,["H8141","H3117"]],[4,6,["H589"]],[6,8,["H7725"]],[8,9,["H413"]],[9,10,["H2008"]],[10,11,["H4725","(H853)"]],[11,12,["H3605"]],[12,14,["H3627"]],[14,17,["H3068"]],[17,18,["H1004"]],[18,19,["H834"]],[19,20,["H5019"]],[20,21,["H4428"]],[21,23,["H894"]],[23,25,["H3947"]],[25,26,["H4480"]],[26,27,["H2008"]],[27,28,["H4725"]],[28,30,["H935"]],[30,33,["H894"]]]},{"k":19622,"v":[[0,2,["H589"]],[2,5,["H7725"]],[5,6,["H413"]],[6,7,["H2008"]],[7,8,["H4725"]],[8,9,["H3204"]],[9,11,["H1121"]],[11,13,["H3079"]],[13,14,["H4428"]],[14,16,["H3063"]],[16,18,["H3605"]],[18,20,["H1546"]],[20,22,["H3063"]],[22,24,["H935"]],[24,26,["H894"]],[26,27,["H5002"]],[27,29,["H3068"]],[29,30,["H3588"]],[30,33,["H7665","(H853)"]],[33,35,["H5923"]],[35,38,["H4428"]],[38,40,["H894"]]]},{"k":19623,"v":[[0,3,["H5030"]],[3,4,["H3414"]],[4,5,["H559"]],[5,6,["H413"]],[6,8,["H5030"]],[8,9,["H2608"]],[9,12,["H5869"]],[12,15,["H3548"]],[15,19,["H5869"]],[19,21,["H3605"]],[21,23,["H5971"]],[23,25,["H5975"]],[25,28,["H1004"]],[28,31,["H3068"]]]},{"k":19624,"v":[[0,3,["H5030"]],[3,4,["H3414"]],[4,5,["H559"]],[5,6,["H543"]],[6,8,["H3068"]],[8,9,["H6213"]],[9,10,["H3651"]],[10,12,["H3068"]],[12,13,["H6965","(H853)"]],[13,15,["H1697"]],[15,16,["H834"]],[16,19,["H5012"]],[19,22,["H7725"]],[22,24,["H3627"]],[24,27,["H3068"]],[27,28,["H1004"]],[28,30,["H3605"]],[30,35,["H1473"]],[35,37,["H4480","H894"]],[37,38,["H413"]],[38,39,["H2008"]],[39,40,["H4725"]]]},{"k":19625,"v":[[0,1,["H389"]],[1,2,["H8085"]],[2,4,["H4994"]],[4,5,["H2008"]],[5,6,["H1697"]],[6,7,["H834"]],[7,8,["H595"]],[8,9,["H1696"]],[9,12,["H241"]],[12,16,["H241"]],[16,18,["H3605"]],[18,20,["H5971"]]]},{"k":19626,"v":[[0,2,["H5030"]],[2,3,["H834"]],[3,5,["H1961"]],[5,6,["H6440"]],[6,9,["H6440"]],[9,11,["H4480"]],[11,12,["H5769"]],[12,13,["H5012"]],[13,15,["H413"]],[15,16,["H7227"]],[16,17,["H776"]],[17,19,["H5921"]],[19,20,["H1419"]],[20,21,["H4467"]],[21,23,["H4421"]],[23,26,["H7451"]],[26,29,["H1698"]]]},{"k":19627,"v":[[0,2,["H5030"]],[2,3,["H834"]],[3,4,["H5012"]],[4,6,["H7965"]],[6,9,["H1697"]],[9,12,["H5030"]],[12,16,["H935"]],[16,20,["H5030"]],[20,22,["H3045"]],[22,23,["H834"]],[23,25,["H3068"]],[25,27,["H571"]],[27,28,["H7971"]],[28,29,[]]]},{"k":19628,"v":[[0,2,["H2608"]],[2,4,["H5030"]],[4,5,["H3947","(H853)"]],[5,7,["H4133"]],[7,9,["H4480","H5921"]],[9,11,["H5030"]],[11,12,["H3414"]],[12,13,["H6677"]],[13,15,["H7665"]],[15,16,[]]]},{"k":19629,"v":[[0,2,["H2608"]],[2,3,["H559"]],[3,6,["H5869"]],[6,8,["H3605"]],[8,10,["H5971"]],[10,11,["H559"]],[11,12,["H3541"]],[12,13,["H559"]],[13,15,["H3068"]],[15,17,["H3602"]],[17,20,["H7665","(H853)"]],[20,22,["H5923"]],[22,24,["H5019"]],[24,25,["H4428"]],[25,27,["H894"]],[27,28,["H4480","H5921"]],[28,30,["H6677"]],[30,32,["H3605"]],[32,33,["H1471"]],[33,37,["H5750"]],[37,40,["H8141","H3117"]],[40,43,["H5030"]],[43,44,["H3414"]],[44,45,["H1980"]],[45,47,["H1870"]]]},{"k":19630,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,13,["H310"]],[13,14,["H2608"]],[14,16,["H5030"]],[16,18,["H7665","(H853)"]],[18,20,["H4133"]],[20,22,["H4480","H5921"]],[22,24,["H6677"]],[24,27,["H5030"]],[27,28,["H3414"]],[28,29,["H559"]]]},{"k":19631,"v":[[0,1,["H1980"]],[1,3,["H559","H413"]],[3,4,["H2608"]],[4,5,["H559"]],[5,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,12,["H7665"]],[12,14,["H4133"]],[14,16,["H6086"]],[16,20,["H6213"]],[20,21,["H8478"]],[21,23,["H4133"]],[23,25,["H1270"]]]},{"k":19632,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,14,["H5414"]],[14,16,["H5923"]],[16,18,["H1270"]],[18,19,["H5921"]],[19,21,["H6677"]],[21,23,["H3605"]],[23,24,["H428"]],[24,25,["H1471"]],[25,29,["H5647","(H853)"]],[29,30,["H5019"]],[30,31,["H4428"]],[31,33,["H894"]],[33,37,["H5647"]],[37,42,["H5414"]],[42,43,["(H853)"]],[43,45,["H2416"]],[45,48,["H7704"]],[48,49,["H1571"]]]},{"k":19633,"v":[[0,2,["H559"]],[2,4,["H5030"]],[4,5,["H3414"]],[5,6,["H413"]],[6,7,["H2608"]],[7,9,["H5030"]],[9,10,["H8085"]],[10,11,["H4994"]],[11,12,["H2608"]],[12,14,["H3068"]],[14,16,["H3808"]],[16,17,["H7971"]],[17,20,["H859"]],[20,21,["(H853)"]],[21,22,["H2008"]],[22,23,["H5971"]],[23,25,["H982"]],[25,26,["H5921"]],[26,28,["H8267"]]]},{"k":19634,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,9,["H7971"]],[9,12,["H4480","H5921"]],[12,14,["H6440"]],[14,17,["H127"]],[17,19,["H8141"]],[19,20,["H859"]],[20,22,["H4191"]],[22,23,["H3588"]],[23,26,["H1696"]],[26,27,["H5627"]],[27,28,["H413"]],[28,30,["H3068"]]]},{"k":19635,"v":[[0,2,["H2608"]],[2,4,["H5030"]],[4,5,["H4191"]],[5,7,["H1931"]],[7,8,["H8141"]],[8,11,["H7637"]],[11,12,["H2320"]]]},{"k":19636,"v":[[0,2,["H428"]],[2,5,["H1697"]],[5,8,["H5612"]],[8,9,["H834"]],[9,10,["H3414"]],[10,12,["H5030"]],[12,13,["H7971"]],[13,15,["H4480","H3389"]],[15,16,["H413"]],[16,18,["H3499"]],[18,21,["H2205"]],[21,26,["H1473"]],[26,28,["H413"]],[28,30,["H3548"]],[30,32,["H413"]],[32,34,["H5030"]],[34,36,["H413"]],[36,37,["H3605"]],[37,39,["H5971"]],[39,40,["H834"]],[40,41,["H5019"]],[41,45,["H1540"]],[45,47,["H4480","H3389"]],[47,49,["H894"]]]},{"k":19637,"v":[[0,2,["H310"]],[2,3,["H3204"]],[3,5,["H4428"]],[5,8,["H1377"]],[8,11,["H5631"]],[11,13,["H8269"]],[13,15,["H3063"]],[15,17,["H3389"]],[17,20,["H2796"]],[20,23,["H4525"]],[23,25,["H3318"]],[25,27,["H4480","H3389"]]]},{"k":19638,"v":[[0,3,["H3027"]],[3,5,["H501"]],[5,7,["H1121"]],[7,9,["H8227"]],[9,11,["H1587"]],[11,13,["H1121"]],[13,15,["H2518"]],[15,16,["H834"]],[16,17,["H6667"]],[17,18,["H4428"]],[18,20,["H3063"]],[20,21,["H7971"]],[21,23,["H894"]],[23,24,["H413"]],[24,25,["H5019"]],[25,26,["H4428"]],[26,28,["H894"]],[28,29,["H559"]]]},{"k":19639,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,12,["H3605"]],[12,17,["H1473"]],[17,18,["H834"]],[18,25,["H1540"]],[25,27,["H4480","H3389"]],[27,29,["H894"]]]},{"k":19640,"v":[[0,1,["H1129"]],[1,3,["H1004"]],[3,5,["H3427"]],[5,9,["H5193"]],[9,10,["H1593"]],[10,12,["H398","(H853)"]],[12,14,["H6529"]],[14,16,[]]]},{"k":19641,"v":[[0,1,["H3947"]],[1,3,["H802"]],[3,5,["H3205"]],[5,6,["H1121"]],[6,8,["H1323"]],[8,10,["H3947"]],[10,11,["H802"]],[11,14,["H1121"]],[14,16,["H5414"]],[16,18,["H1323"]],[18,20,["H376"]],[20,24,["H3205"]],[24,25,["H1121"]],[25,27,["H1323"]],[27,32,["H7235"]],[32,33,["H8033"]],[33,35,["H408"]],[35,36,["H4591"]]]},{"k":19642,"v":[[0,2,["H1875","(H853)"]],[2,4,["H7965"]],[4,7,["H5892"]],[7,8,["H834","H8033"]],[8,17,["H1540"]],[17,19,["H6419"]],[19,20,["H413"]],[20,22,["H3068"]],[22,23,["H1157"]],[23,25,["H3588"]],[25,28,["H7965"]],[28,32,["H1961"]],[32,33,["H7965"]]]},{"k":19643,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,13,["H408"]],[13,15,["H5030"]],[15,18,["H7080"]],[18,19,["H834"]],[19,23,["H7130"]],[23,26,["H5377"]],[26,28,["H408"]],[28,29,["H8085"]],[29,30,["H413"]],[30,32,["H2472"]],[32,33,["H834"]],[33,34,["H859"]],[34,38,["H2492"]]]},{"k":19644,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,3,["H5012"]],[3,4,["H8267"]],[4,9,["H8034"]],[9,12,["H3808"]],[12,13,["H7971"]],[13,15,["H5002"]],[15,17,["H3068"]]]},{"k":19645,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H3588"]],[6,7,["H6310"]],[7,8,["H7657"]],[8,9,["H8141"]],[9,11,["H4390"]],[11,13,["H894"]],[13,16,["H6485"]],[16,19,["H6965","(H853)"]],[19,21,["H2896"]],[21,22,["H1697"]],[22,23,["H5921"]],[23,29,["H7725","(H853)"]],[29,30,["H413"]],[30,31,["H2088"]],[31,32,["H4725"]]]},{"k":19646,"v":[[0,1,["H3588"]],[1,2,["H595"]],[2,3,["H3045","(H853)"]],[3,5,["H4284"]],[5,6,["H834"]],[6,7,["H595"]],[7,8,["H2803"]],[8,9,["H5921"]],[9,11,["H5002"]],[11,13,["H3068"]],[13,14,["H4284"]],[14,16,["H7965"]],[16,18,["H3808"]],[18,20,["H7451"]],[20,22,["H5414"]],[22,25,["H8615"]],[25,26,["H319"]]]},{"k":19647,"v":[[0,5,["H7121"]],[5,10,["H1980"]],[10,12,["H6419"]],[12,13,["H413"]],[13,18,["H8085"]],[18,19,["H413"]],[19,20,[]]]},{"k":19648,"v":[[0,4,["H1245"]],[4,7,["H4672"]],[7,9,["H3588"]],[9,13,["H1875"]],[13,16,["H3605"]],[16,18,["H3824"]]]},{"k":19649,"v":[[0,5,["H4672"]],[5,8,["H5002"]],[8,10,["H3068"]],[10,15,["H7725","(H853)"]],[15,17,["H7622"]],[17,21,["H6908"]],[21,24,["H4480","H3605"]],[24,26,["H1471"]],[26,29,["H4480","H3605"]],[29,31,["H4725"]],[31,32,["H834","H8033"]],[32,35,["H5080"]],[35,37,["H5002"]],[37,39,["H3068"]],[39,45,["H7725","(H853)"]],[45,46,["H413"]],[46,48,["H4725"]],[48,49,["H834","H4480","H8033"]],[49,57,["H1540"]]]},{"k":19650,"v":[[0,1,["H3588"]],[1,4,["H559"]],[4,6,["H3068"]],[6,10,["H6965"]],[10,11,["H5030"]],[11,13,["H894"]]]},{"k":19651,"v":[[0,2,["H3588"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H3068"]],[6,7,["H413"]],[7,9,["H4428"]],[9,11,["H3427"]],[11,12,["H413"]],[12,14,["H3678"]],[14,16,["H1732"]],[16,18,["H413"]],[18,19,["H3605"]],[19,21,["H5971"]],[21,23,["H3427"]],[23,25,["H2063"]],[25,26,["H5892"]],[26,30,["H251"]],[30,31,["H834"]],[31,33,["H3808"]],[33,35,["H3318"]],[35,36,["H854"]],[36,39,["H1473"]]]},{"k":19652,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H2009"]],[7,10,["H7971"]],[10,12,["(H853)"]],[12,14,["H2719","(H853)"]],[14,16,["H7458"]],[16,19,["H1698"]],[19,22,["H5414"]],[22,25,["H8182"]],[25,26,["H8384"]],[26,27,["H834"]],[27,28,["H3808"]],[28,30,["H398"]],[30,34,["H4480","H7455"]]]},{"k":19653,"v":[[0,4,["H7291","H310"]],[4,8,["H2719"]],[8,11,["H7458"]],[11,15,["H1698"]],[15,18,["H5414"]],[18,22,["H2189"]],[22,24,["H3605"]],[24,26,["H4467"]],[26,29,["H776"]],[29,33,["H423"]],[33,36,["H8047"]],[36,39,["H8322"]],[39,42,["H2781"]],[42,44,["H3605"]],[44,46,["H1471"]],[46,47,["H834","H8033"]],[47,50,["H5080"]],[50,51,[]]]},{"k":19654,"v":[[0,1,["H8478","H834"]],[1,4,["H3808"]],[4,5,["H8085"]],[5,6,["H413"]],[6,8,["H1697"]],[8,9,["H5002"]],[9,11,["H3068"]],[11,12,["H834"]],[12,14,["H7971"]],[14,15,["H413"]],[15,17,["(H853)"]],[17,19,["H5650"]],[19,21,["H5030"]],[21,24,["H7925"]],[24,26,["H7971"]],[26,31,["H3808"]],[31,32,["H8085"]],[32,33,["H5002"]],[33,35,["H3068"]]]},{"k":19655,"v":[[0,1,["H8085"]],[1,2,["H859"]],[2,5,["H1697"]],[5,8,["H3068"]],[8,9,["H3605"]],[9,13,["H1473"]],[13,14,["H834"]],[14,17,["H7971"]],[17,19,["H4480","H3389"]],[19,21,["H894"]]]},{"k":19656,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,11,["H413"]],[11,12,["H256"]],[12,14,["H1121"]],[14,16,["H6964"]],[16,18,["H413"]],[18,19,["H6667"]],[19,21,["H1121"]],[21,23,["H4641"]],[23,25,["H5012"]],[25,27,["H8267"]],[27,32,["H8034"]],[32,33,["H2009"]],[33,36,["H5414"]],[36,40,["H3027"]],[40,42,["H5019"]],[42,43,["H4428"]],[43,45,["H894"]],[45,49,["H5221"]],[49,53,["H5869"]]]},{"k":19657,"v":[[0,2,["H4480"]],[2,7,["H3947"]],[7,9,["H7045"]],[9,11,["H3605"]],[11,13,["H1546"]],[13,15,["H3063"]],[15,16,["H834"]],[16,19,["H894"]],[19,20,["H559"]],[20,22,["H3068"]],[22,23,["H7760"]],[23,26,["H6667"]],[26,29,["H256"]],[29,30,["H834"]],[30,32,["H4428"]],[32,34,["H894"]],[34,35,["H7033"]],[35,38,["H784"]]]},{"k":19658,"v":[[0,1,["H3282","H834"]],[1,4,["H6213"]],[4,5,["H5039"]],[5,7,["H3478"]],[7,11,["H5003"]],[11,12,["H854"]],[12,14,["H7453"]],[14,15,["H802"]],[15,18,["H1696"]],[18,19,["H8267"]],[19,20,["H1697"]],[20,23,["H8034"]],[23,24,["H834"]],[24,27,["H3808"]],[27,28,["H6680"]],[28,31,["H595"]],[31,32,["H3045"]],[32,36,["H5707"]],[36,37,["H5002"]],[37,39,["H3068"]]]},{"k":19659,"v":[[0,5,["H559"]],[5,6,["H413"]],[6,7,["H8098"]],[7,9,["H5161"]],[9,10,["H559"]]]},{"k":19660,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,11,["H559"]],[11,12,["H3282","H834"]],[12,13,["H859"]],[13,15,["H7971"]],[15,16,["H5612"]],[16,19,["H8034"]],[19,20,["H413"]],[20,21,["H3605"]],[21,23,["H5971"]],[23,24,["H834"]],[24,27,["H3389"]],[27,29,["H413"]],[29,30,["H6846"]],[30,32,["H1121"]],[32,34,["H4641"]],[34,36,["H3548"]],[36,38,["H413"]],[38,39,["H3605"]],[39,41,["H3548"]],[41,42,["H559"]]]},{"k":19661,"v":[[0,2,["H3068"]],[2,4,["H5414"]],[4,6,["H3548"]],[6,10,["H8478"]],[10,11,["H3077"]],[11,13,["H3548"]],[13,17,["H1961"]],[17,18,["H6496"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,26,["H3605"]],[26,27,["H376"]],[27,30,["H7696"]],[30,35,["H5012"]],[35,39,["H5414"]],[39,41,["H413"]],[41,42,["H4115"]],[42,44,["H413"]],[44,46,["H6729"]]]},{"k":19662,"v":[[0,1,["H6258"]],[1,3,["H4100"]],[3,6,["H3808"]],[6,7,["H1605"]],[7,8,["H3414"]],[8,10,["H6069"]],[10,15,["H5012"]],[15,17,[]]]},{"k":19663,"v":[[0,1,["H3588"]],[1,2,["H5921","H3651"]],[2,4,["H7971"]],[4,5,["H413"]],[5,8,["H894"]],[8,9,["H559"]],[9,10,["H1931"]],[10,13,["H752"]],[13,14,["H1129"]],[14,16,["H1004"]],[16,18,["H3427"]],[18,22,["H5193"]],[22,23,["H1593"]],[23,25,["H398","(H853)"]],[25,27,["H6529"]],[27,29,[]]]},{"k":19664,"v":[[0,2,["H6846"]],[2,4,["H3548"]],[4,5,["H7121","(H853)"]],[5,6,["H2088"]],[6,7,["H5612"]],[7,10,["H241"]],[10,12,["H3414"]],[12,14,["H5030"]]]},{"k":19665,"v":[[0,2,["H1961"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H413"]],[8,9,["H3414"]],[9,10,["H559"]]]},{"k":19666,"v":[[0,1,["H7971"]],[1,2,["H5921"]],[2,3,["H3605"]],[3,7,["H1473"]],[7,8,["H559"]],[8,9,["H3541"]],[9,10,["H559"]],[10,12,["H3068"]],[12,13,["H413"]],[13,14,["H8098"]],[14,16,["H5161"]],[16,17,["H3283","H834"]],[17,19,["H8098"]],[19,21,["H5012"]],[21,25,["H589"]],[25,26,["H7971"]],[26,28,["H3808"]],[28,34,["H982","(H853)"]],[34,35,["H5921"]],[35,37,["H8267"]]]},{"k":19667,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,9,["H6485","H5921"]],[9,10,["H8098"]],[10,12,["H5161"]],[12,15,["H2233"]],[15,18,["H3808"]],[18,19,["H1961"]],[19,21,["H376"]],[21,23,["H3427"]],[23,24,["H8432"]],[24,25,["H2088"]],[25,26,["H5971"]],[26,27,["H3808"]],[27,30,["H7200"]],[30,32,["H2896"]],[32,33,["H834"]],[33,34,["H589"]],[34,36,["H6213"]],[36,39,["H5971"]],[39,40,["H5002"]],[40,42,["H3068"]],[42,43,["H3588"]],[43,46,["H1696"]],[46,47,["H5627"]],[47,48,["H5921"]],[48,50,["H3068"]]]},{"k":19668,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H413"]],[5,6,["H3414"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,10,["H559"]]]},{"k":19669,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,8,["H559"]],[8,9,["H3789"]],[9,10,["(H853)"]],[10,11,["H3605"]],[11,13,["H1697"]],[13,14,["H834"]],[14,17,["H1696"]],[17,18,["H413"]],[18,20,["H413"]],[20,22,["H5612"]]]},{"k":19670,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H3117"]],[4,5,["H935"]],[5,6,["H5002"]],[6,8,["H3068"]],[8,13,["H7725","(H853)"]],[13,15,["H7622"]],[15,18,["H5971"]],[18,19,["H3478"]],[19,21,["H3063"]],[21,22,["H559"]],[22,24,["H3068"]],[24,31,["H7725"]],[31,32,["H413"]],[32,34,["H776"]],[34,35,["H834"]],[35,37,["H5414"]],[37,40,["H1"]],[40,44,["H3423"]],[44,45,[]]]},{"k":19671,"v":[[0,2,["H428"]],[2,5,["H1697"]],[5,6,["H834"]],[6,8,["H3068"]],[8,9,["H1696"]],[9,10,["H413"]],[10,11,["H3478"]],[11,13,["H413"]],[13,14,["H3063"]]]},{"k":19672,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,8,["H8085"]],[8,10,["H6963"]],[10,12,["H2731"]],[12,14,["H6343"]],[14,16,["H369"]],[16,18,["H7965"]]]},{"k":19673,"v":[[0,1,["H7592"]],[1,3,["H4994"]],[3,5,["H7200"]],[5,6,["H518"]],[6,8,["H2145"]],[8,12,["H3205"]],[12,13,["H4069"]],[13,16,["H7200"]],[16,17,["H3605"]],[17,18,["H1397"]],[18,21,["H3027"]],[21,22,["H5921"]],[22,24,["H2504"]],[24,29,["H3205"]],[29,31,["H3605"]],[31,32,["H6440"]],[32,34,["H2015"]],[34,36,["H3420"]]]},{"k":19674,"v":[[0,1,["H1945"]],[1,2,["H3588"]],[2,3,["H1931"]],[3,4,["H3117"]],[4,6,["H1419"]],[6,9,["H4480","H369"]],[9,12,["H3644"]],[12,13,["H1931"]],[13,17,["H6256"]],[17,19,["H3290"]],[19,20,["H6869"]],[20,25,["H3467"]],[25,27,["H4480"]],[27,28,[]]]},{"k":19675,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,10,["H5002"]],[10,12,["H3068"]],[12,14,["H6635"]],[14,18,["H7665"]],[18,20,["H5923"]],[20,22,["H4480","H5921"]],[22,24,["H6677"]],[24,27,["H5423"]],[27,29,["H4147"]],[29,31,["H2114"]],[31,33,["H3808"]],[33,34,["H5750"]],[34,35,["H5647"]],[35,38,[]]]},{"k":19676,"v":[[0,4,["H5647","(H853)"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H1732"]],[10,12,["H4428"]],[12,13,["H834"]],[13,17,["H6965"]],[17,19,[]]]},{"k":19677,"v":[[0,2,["H3372"]],[2,3,["H859"]],[3,4,["H408"]],[4,7,["H5650"]],[7,8,["H3290"]],[8,9,["H5002"]],[9,11,["H3068"]],[11,12,["H408"]],[12,14,["H2865"]],[14,16,["H3478"]],[16,17,["H3588"]],[17,18,["H2009"]],[18,21,["H3467"]],[21,24,["H4480","H7350"]],[24,27,["H2233"]],[27,30,["H4480","H776"]],[30,33,["H7628"]],[33,35,["H3290"]],[35,37,["H7725"]],[37,42,["H8252"]],[42,45,["H7599"]],[45,47,["H369"]],[47,51,["H2729"]]]},{"k":19678,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,4,["H854"]],[4,6,["H5002"]],[6,8,["H3068"]],[8,10,["H3467"]],[10,12,["H3588"]],[12,14,["H6213"]],[14,17,["H3617"]],[17,19,["H3605"]],[19,20,["H1471"]],[20,21,["H834","H8033"]],[21,24,["H6327"]],[24,26,["H389"]],[26,29,["H3808"]],[29,30,["H6213"]],[30,33,["H3617"]],[33,39,["H3256"]],[39,42,["H4941"]],[42,45,["H3808"]],[45,49,["H5352","H5352"]]]},{"k":19679,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H7667"]],[7,9,["H605"]],[9,12,["H4347"]],[12,14,["H2470"]]]},{"k":19680,"v":[[0,3,["H369"]],[3,5,["H1777"]],[5,7,["H1779"]],[7,13,["H4205"]],[13,16,["H369"]],[16,17,["H8585"]],[17,18,["H7499"]]]},{"k":19681,"v":[[0,1,["H3605"]],[1,3,["H157"]],[3,5,["H7911"]],[5,8,["H1875"]],[8,10,["H3808"]],[10,11,["H3588"]],[11,14,["H5221"]],[14,18,["H4347"]],[18,21,["H341"]],[21,24,["H4148"]],[24,27,["H394"]],[27,29,["H5921"]],[29,31,["H7230"]],[31,34,["H5771"]],[34,37,["H2403"]],[37,39,["H6105"]]]},{"k":19682,"v":[[0,1,["H4100"]],[1,2,["H2199"]],[2,4,["H5921"]],[4,6,["H7667"]],[6,8,["H4341"]],[8,10,["H605"]],[10,11,["H5921"]],[11,13,["H7230"]],[13,16,["H5771"]],[16,19,["H2403"]],[19,21,["H6105"]],[21,24,["H6213"]],[24,25,["H428"]],[25,28,[]]]},{"k":19683,"v":[[0,1,["H3651"]],[1,2,["H3605"]],[2,5,["H398"]],[5,9,["H398"]],[9,11,["H3605"]],[11,13,["H6862"]],[13,15,["H3605"]],[15,19,["H1980"]],[19,21,["H7628"]],[21,25,["H7601"]],[25,28,["H1961"]],[28,30,["H4933"]],[30,32,["H3605"]],[32,34,["H962"]],[34,39,["H5414"]],[39,42,["H957"]]]},{"k":19684,"v":[[0,1,["H3588"]],[1,4,["H5927"]],[4,5,["H724"]],[5,11,["H7495"]],[11,15,["H4480","H4347"]],[15,16,["H5002"]],[16,18,["H3068"]],[18,19,["H3588"]],[19,21,["H7121"]],[21,24,["H5080"]],[24,26,["H1931"]],[26,28,["H6726"]],[28,30,["H369"]],[30,32,["H1875"]],[32,33,[]]]},{"k":19685,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H2009"]],[5,9,["H7725"]],[9,11,["H7622"]],[11,13,["H3290"]],[13,14,["H168"]],[14,17,["H7355"]],[17,20,["H4908"]],[20,23,["H5892"]],[23,26,["H1129"]],[26,27,["H5921"]],[27,30,["H8510"]],[30,33,["H759"]],[33,35,["H3427"]],[35,36,["H5921"]],[36,38,["H4941"]],[38,39,[]]]},{"k":19686,"v":[[0,3,["H4480"]],[3,6,["H3318"]],[6,7,["H8426"]],[7,10,["H6963"]],[10,15,["H7832"]],[15,19,["H7235"]],[19,24,["H3808"]],[24,26,["H4591"]],[26,30,["H3513"]],[30,35,["H3808"]],[35,37,["H6819"]]]},{"k":19687,"v":[[0,2,["H1121"]],[2,5,["H1961"]],[5,7,["H6924"]],[7,10,["H5712"]],[10,13,["H3559"]],[13,14,["H6440"]],[14,19,["H6485","H5921"]],[19,20,["H3605"]],[20,22,["H3905"]],[22,23,[]]]},{"k":19688,"v":[[0,3,["H117"]],[3,5,["H1961"]],[5,6,["H4480"]],[6,10,["H4910"]],[10,12,["H3318"]],[12,15,["H4480","H7130"]],[15,25,["H7126"]],[25,29,["H5066"]],[29,30,["H413"]],[30,32,["H3588"]],[32,33,["H4310"]],[33,35,["H2088"]],[35,36,["H1931"]],[36,37,["H6148","(H853)"]],[37,39,["H3820"]],[39,41,["H5066"]],[41,42,["H413"]],[42,44,["H5002"]],[44,46,["H3068"]]]},{"k":19689,"v":[[0,4,["H1961"]],[4,6,["H5971"]],[6,8,["H595"]],[8,10,["H1961"]],[10,12,["H430"]]]},{"k":19690,"v":[[0,1,["H2009"]],[1,3,["H5591"]],[3,6,["H3068"]],[6,8,["H3318"]],[8,10,["H2534"]],[10,12,["H1641"]],[12,13,["H5591"]],[13,18,["H2342"]],[18,19,["H5921"]],[19,21,["H7218"]],[21,24,["H7563"]]]},{"k":19691,"v":[[0,2,["H2740"]],[2,3,["H639"]],[3,6,["H3068"]],[6,8,["H3808"]],[8,9,["H7725"]],[9,10,["H5704"]],[10,13,["H6213"]],[13,16,["H5704"]],[16,19,["H6965"]],[19,21,["H4209"]],[21,24,["H3820"]],[24,27,["H319"]],[27,28,["H3117"]],[28,31,["H995"]],[31,32,[]]]},{"k":19692,"v":[[0,3,["H1931"]],[3,4,["H6256"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,10,["H1961"]],[10,12,["H430"]],[12,14,["H3605"]],[14,16,["H4940"]],[16,18,["H3478"]],[18,20,["H1992"]],[20,22,["H1961"]],[22,24,["H5971"]]]},{"k":19693,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H5971"]],[6,9,["H8300"]],[9,12,["H2719"]],[12,13,["H4672"]],[13,14,["H2580"]],[14,17,["H4057"]],[17,19,["H3478"]],[19,22,["H1980"]],[22,27,["H7280"]]]},{"k":19694,"v":[[0,2,["H3068"]],[2,4,["H7200"]],[4,6,["H4480","H7350"]],[6,13,["H157"]],[13,17,["H5769"]],[17,18,["H160"]],[18,19,["H5921","H3651"]],[19,21,["H2617"]],[21,24,["H4900"]],[24,25,[]]]},{"k":19695,"v":[[0,1,["H5750"]],[1,4,["H1129"]],[4,10,["H1129"]],[10,12,["H1330"]],[12,14,["H3478"]],[14,17,["H5750"]],[17,19,["H5710"]],[19,22,["H8596"]],[22,26,["H3318"]],[26,29,["H4234"]],[29,34,["H7832"]]]},{"k":19696,"v":[[0,3,["H5750"]],[3,4,["H5193"]],[4,5,["H3754"]],[5,8,["H2022"]],[8,10,["H8111"]],[10,12,["H5193"]],[12,14,["H5193"]],[14,21,["H2490"]]]},{"k":19697,"v":[[0,1,["H3588"]],[1,4,["H3426"]],[4,6,["H3117"]],[6,9,["H5341"]],[9,12,["H2022"]],[12,13,["H669"]],[13,15,["H7121"]],[15,16,["H6965"]],[16,22,["H5927"]],[22,24,["H6726"]],[24,25,["H413"]],[25,27,["H3068"]],[27,29,["H430"]]]},{"k":19698,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H7442"]],[6,8,["H8057"]],[8,10,["H3290"]],[10,12,["H6670"]],[12,15,["H7218"]],[15,18,["H1471"]],[18,19,["H8085"]],[19,21,["H1984"]],[21,24,["H559"]],[24,26,["H3068"]],[26,27,["H3467","(H853)"]],[27,29,["H5971","(H853)"]],[29,31,["H7611"]],[31,33,["H3478"]]]},{"k":19699,"v":[[0,1,["H2009"]],[1,4,["H935"]],[4,8,["H6828"]],[8,9,["H4480","H776"]],[9,11,["H6908"]],[11,15,["H4480","H3411"]],[15,18,["H776"]],[18,23,["H5787"]],[23,26,["H6455"]],[26,30,["H2029"]],[30,36,["H3205"]],[36,37,["H3162"]],[37,39,["H1419"]],[39,40,["H6951"]],[40,42,["H7725"]],[42,43,["H2008"]]]},{"k":19700,"v":[[0,3,["H935"]],[3,5,["H1065"]],[5,8,["H8469"]],[8,11,["H2986"]],[11,18,["H1980"]],[18,19,["H413"]],[19,21,["H5158"]],[21,23,["H4325"]],[23,26,["H3477"]],[26,27,["H1870"]],[27,31,["H3808"]],[31,32,["H3782"]],[32,33,["H3588"]],[33,35,["H1961"]],[35,37,["H1"]],[37,39,["H3478"]],[39,41,["H669"]],[41,44,["H1060"]]]},{"k":19701,"v":[[0,1,["H8085"]],[1,3,["H1697"]],[3,6,["H3068"]],[6,9,["H1471"]],[9,11,["H5046"]],[11,15,["H339"]],[15,17,["H4480","H4801"]],[17,19,["H559"]],[19,22,["H2219"]],[22,23,["H3478"]],[23,25,["H6908"]],[25,28,["H8104"]],[28,32,["H7462"]],[32,35,["H5739"]]]},{"k":19702,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H6299","(H853)"]],[5,6,["H3290"]],[6,8,["H1350"]],[8,12,["H4480","H3027"]],[12,17,["H2389"]],[17,18,["H4480"]],[18,19,[]]]},{"k":19703,"v":[[0,4,["H935"]],[4,6,["H7442"]],[6,9,["H4791"]],[9,11,["H6726"]],[11,15,["H5102"]],[15,16,["H413"]],[16,18,["H2898"]],[18,21,["H3068"]],[21,22,["H5921"]],[22,23,["H1715"]],[23,25,["H5921"]],[25,26,["H8492"]],[26,28,["H5921"]],[28,29,["H3323"]],[29,31,["H5921"]],[31,33,["H1121"]],[33,36,["H6629"]],[36,40,["H1241"]],[40,43,["H5315"]],[43,45,["H1961"]],[45,48,["H7302"]],[48,49,["H1588"]],[49,53,["H3808"]],[53,54,["H1669"]],[54,56,["H3254"]],[56,58,[]]]},{"k":19704,"v":[[0,1,["H227"]],[1,4,["H1330"]],[4,5,["H8055"]],[5,8,["H4234"]],[8,11,["H970"]],[11,13,["H2205"]],[13,14,["H3162"]],[14,18,["H2015"]],[18,20,["H60"]],[20,22,["H8342"]],[22,25,["H5162"]],[25,30,["H8055"]],[30,33,["H4480","H3015"]]]},{"k":19705,"v":[[0,4,["H7301"]],[4,6,["H5315"]],[6,9,["H3548"]],[9,11,["H1880"]],[11,14,["H5971"]],[14,18,["H7646","(H853)"]],[18,20,["H2898"]],[20,21,["H5002"]],[21,23,["H3068"]]]},{"k":19706,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6963"]],[6,8,["H8085"]],[8,10,["H7414"]],[10,11,["H5092"]],[11,13,["H8563"]],[13,14,["H1065"]],[14,15,["H7354"]],[15,16,["H1058"]],[16,17,["H5921"]],[17,19,["H1121"]],[19,20,["H3985"]],[20,23,["H5162"]],[23,24,["H5921"]],[24,26,["H1121"]],[26,27,["H3588"]],[27,30,["H369"]]]},{"k":19707,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H4513"]],[5,7,["H6963"]],[7,9,["H4480","H1065"]],[9,12,["H5869"]],[12,14,["H4480","H1832"]],[14,15,["H3588"]],[15,17,["H6468"]],[17,19,["H3426"]],[19,20,["H7939"]],[20,21,["H5002"]],[21,23,["H3068"]],[23,28,["H7725"]],[28,31,["H4480","H776"]],[31,34,["H341"]]]},{"k":19708,"v":[[0,3,["H3426"]],[3,4,["H8615"]],[4,7,["H319"]],[7,8,["H5002"]],[8,10,["H3068"]],[10,13,["H1121"]],[13,16,["H7725"]],[16,20,["H1366"]]]},{"k":19709,"v":[[0,4,["H8085","H8085"]],[4,5,["H669"]],[5,7,["H5110"]],[7,11,["H3256"]],[11,16,["H3256"]],[16,19,["H5695"]],[19,20,["H3808","H3925"]],[20,24,["H7725"]],[24,31,["H7725"]],[31,32,["H3588"]],[32,33,["H859"]],[33,36,["H3068"]],[36,38,["H430"]]]},{"k":19710,"v":[[0,1,["H3588"]],[1,3,["H310"]],[3,6,["H7725"]],[6,8,["H5162"]],[8,11,["H310"]],[11,14,["H3045"]],[14,16,["H5606"]],[16,17,["H5921"]],[17,19,["H3409"]],[19,22,["H954"]],[22,24,["H1571"]],[24,25,["H3637"]],[25,26,["H3588"]],[26,29,["H5375"]],[29,31,["H2781"]],[31,34,["H5271"]]]},{"k":19711,"v":[[0,2,["H669"]],[2,4,["H3357"]],[4,5,["H1121"]],[5,9,["H8191"]],[9,10,["H3206"]],[10,11,["H3588"]],[11,12,["H4480","H1767"]],[12,14,["H1696"]],[14,20,["H2142","H2142"]],[20,22,["H5750"]],[22,23,["H5921","H3651"]],[23,25,["H4578"]],[25,27,["H1993"]],[27,34,["H7355","H7355"]],[34,37,["H5002"]],[37,39,["H3068"]]]},{"k":19712,"v":[[0,3,["H5324"]],[3,4,["H6725"]],[4,5,["H7760"]],[5,8,["H8564"]],[8,9,["H7896"]],[9,11,["H3820"]],[11,14,["H4546"]],[14,17,["H1870"]],[17,20,["H1980"]],[20,22,["H7725"]],[22,24,["H1330"]],[24,26,["H3478"]],[26,28,["H7725"]],[28,29,["H413"]],[29,30,["H428"]],[30,32,["H5892"]]]},{"k":19713,"v":[[0,2,["H5704","H4970"]],[2,6,["H2559"]],[6,9,["H7728"]],[9,10,["H1323"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,15,["H1254"]],[15,18,["H2319"]],[18,21,["H776"]],[21,23,["H5347"]],[23,25,["H5437"]],[25,27,["H1397"]]]},{"k":19714,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,12,["H5750"]],[12,15,["H559","(H853)"]],[15,16,["H2088"]],[16,17,["H1697"]],[17,20,["H776"]],[20,22,["H3063"]],[22,26,["H5892"]],[26,32,["H7725","(H853)"]],[32,34,["H7622"]],[34,36,["H3068"]],[36,37,["H1288"]],[37,40,["H5116"]],[40,42,["H6664"]],[42,44,["H2022"]],[44,46,["H6944"]]]},{"k":19715,"v":[[0,4,["H3427"]],[4,6,["H3063"]],[6,10,["H3605"]],[10,12,["H5892"]],[12,14,["H3162"]],[14,15,["H406"]],[15,20,["H5265"]],[20,22,["H5739"]]]},{"k":19716,"v":[[0,1,["H3588"]],[1,4,["H7301"]],[4,6,["H5889"]],[6,7,["H5315"]],[7,11,["H4390"]],[11,12,["H3605"]],[12,13,["H1669"]],[13,14,["H5315"]]]},{"k":19717,"v":[[0,1,["H5921"]],[1,2,["H2063"]],[2,4,["H6974"]],[4,6,["H7200"]],[6,9,["H8142"]],[9,11,["H6149"]],[11,13,[]]]},{"k":19718,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,11,["H2232","(H853)"]],[11,13,["H1004"]],[13,15,["H3478"]],[15,18,["H1004"]],[18,20,["H3063"]],[20,23,["H2233"]],[23,25,["H120"]],[25,29,["H2233"]],[29,31,["H929"]]]},{"k":19719,"v":[[0,6,["H1961"]],[6,9,["H834"]],[9,12,["H8245"]],[12,13,["H5921"]],[13,17,["H5428"]],[17,21,["H5422"]],[21,25,["H2040"]],[25,28,["H6"]],[28,31,["H7489"]],[31,32,["H3651"]],[32,35,["H8245"]],[35,36,["H5921"]],[36,39,["H1129"]],[39,42,["H5193"]],[42,43,["H5002"]],[43,45,["H3068"]]]},{"k":19720,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,6,["H559"]],[6,7,["H3808"]],[7,8,["H5750"]],[8,10,["H1"]],[10,12,["H398"]],[12,15,["H1155"]],[15,18,["H1121"]],[18,19,["H8127"]],[19,23,["H6949"]]]},{"k":19721,"v":[[0,1,["H3588","H518"]],[1,3,["H376"]],[3,5,["H4191"]],[5,9,["H5771"]],[9,10,["H3605"]],[10,11,["H120"]],[11,13,["H398"]],[13,16,["H1155"]],[16,18,["H8127"]],[18,23,["H6949"]]]},{"k":19722,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,11,["H3772"]],[11,13,["H2319"]],[13,14,["H1285"]],[14,15,["H854"]],[15,17,["H1004"]],[17,19,["H3478"]],[19,21,["H854"]],[21,23,["H1004"]],[23,25,["H3063"]]]},{"k":19723,"v":[[0,1,["H3808"]],[1,5,["H1285"]],[5,6,["H834"]],[6,8,["H3772"]],[8,9,["H854"]],[9,11,["H1"]],[11,14,["H3117"]],[14,17,["H2388"]],[17,21,["H3027"]],[21,23,["H3318"]],[23,28,["H4480","H776"]],[28,30,["H4714"]],[30,31,["H834","(H853)"]],[31,33,["H1285"]],[33,34,["H1992"]],[34,35,["H6565"]],[35,37,["H595"]],[37,40,["H1166"]],[40,43,["H5002"]],[43,45,["H3068"]]]},{"k":19724,"v":[[0,1,["H3588"]],[1,2,["H2063"]],[2,6,["H1285"]],[6,7,["H834"]],[7,10,["H3772"]],[10,11,["H854"]],[11,13,["H1004"]],[13,15,["H3478"]],[15,16,["H310"]],[16,17,["H1992"]],[17,18,["H3117"]],[18,19,["H5002"]],[19,21,["H3068"]],[21,24,["H5414","(H853)"]],[24,26,["H8451"]],[26,30,["H7130"]],[30,32,["H3789"]],[32,34,["H5921"]],[34,36,["H3820"]],[36,39,["H1961"]],[39,41,["H430"]],[41,43,["H1992"]],[43,45,["H1961"]],[45,47,["H5971"]]]},{"k":19725,"v":[[0,4,["H3925"]],[4,5,["H3808"]],[5,6,["H5750"]],[6,8,["H376","(H853)"]],[8,10,["H7453"]],[10,13,["H376","(H853)"]],[13,15,["H251"]],[15,16,["H559"]],[16,17,["H3045","(H853)"]],[17,19,["H3068"]],[19,20,["H3588"]],[20,23,["H3605"]],[23,24,["H3045"]],[24,28,["H4480","H6996"]],[28,31,["H5704"]],[31,33,["H1419"]],[33,36,["H5002"]],[36,38,["H3068"]],[38,39,["H3588"]],[39,42,["H5545"]],[42,44,["H5771"]],[44,48,["H2142"]],[48,50,["H2403"]],[50,51,["H3808"]],[51,52,["H5750"]]]},{"k":19726,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H5414"]],[6,8,["H8121"]],[8,11,["H216"]],[11,13,["H3119"]],[13,16,["H2708"]],[16,19,["H3394"]],[19,23,["H3556"]],[23,26,["H216"]],[26,28,["H3915"]],[28,30,["H7280"]],[30,32,["H3220"]],[32,35,["H1530"]],[35,37,["H1993"]],[37,39,["H3068"]],[39,41,["H6635"]],[41,44,["H8034"]]]},{"k":19727,"v":[[0,1,["H518"]],[1,2,["H428"]],[2,3,["H2706"]],[3,4,["H4185"]],[4,6,["H4480","H6440"]],[6,8,["H5002"]],[8,10,["H3068"]],[10,13,["H2233"]],[13,15,["H3478"]],[15,16,["H1571"]],[16,18,["H7673"]],[18,20,["H4480","H1961"]],[20,22,["H1471"]],[22,23,["H6440"]],[23,26,["H3605","H3117"]]]},{"k":19728,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H518"]],[5,6,["H8064"]],[6,7,["H4480","H4605"]],[7,10,["H4058"]],[10,13,["H4146"]],[13,16,["H776"]],[16,18,["H2713"]],[18,19,["H4295"]],[19,20,["H589"]],[20,22,["H1571"]],[22,24,["H3988"]],[24,25,["H3605"]],[25,27,["H2233"]],[27,29,["H3478"]],[29,30,["H5921"]],[30,31,["H3605"]],[31,32,["H834"]],[32,35,["H6213"]],[35,36,["H5002"]],[36,38,["H3068"]]]},{"k":19729,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,10,["H5892"]],[10,13,["H1129"]],[13,16,["H3068"]],[16,19,["H4480","H4026"]],[19,21,["H2606"]],[21,24,["H8179"]],[24,27,["H6438"]]]},{"k":19730,"v":[[0,3,["H4060"]],[3,4,["H6957"]],[4,6,["H5750"]],[6,8,["H3318"]],[8,10,["H5048"]],[10,12,["H5921"]],[12,14,["H1389"]],[14,15,["H1619"]],[15,19,["H5437"]],[19,21,["H1601"]]]},{"k":19731,"v":[[0,3,["H3605"]],[3,4,["H6010"]],[4,8,["H6297"]],[8,12,["H1880"]],[12,14,["H3605"]],[14,16,["H8309"]],[16,17,["H5704"]],[17,19,["H5158"]],[19,21,["H6939"]],[21,22,["H5704"]],[22,24,["H6438"]],[24,27,["H5483"]],[27,28,["H8179"]],[28,31,["H4217"]],[31,34,["H6944"]],[34,37,["H3068"]],[37,40,["H3808"]],[40,43,["H5428"]],[43,44,["H3808"]],[44,46,["H2040"]],[46,48,["H5750"]],[48,50,["H5769"]]]},{"k":19732,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H413"]],[5,6,["H3414"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,12,["H6224"]],[12,13,["H8141"]],[13,15,["H6667"]],[15,16,["H4428"]],[16,18,["H3063"]],[18,19,["H1931"]],[19,22,["H8083","H6240"]],[22,23,["H8141"]],[23,25,["H5019"]]]},{"k":19733,"v":[[0,2,["H227"]],[2,4,["H4428"]],[4,6,["H894"]],[6,7,["H2428"]],[7,8,["H6696","H5921"]],[8,9,["H3389"]],[9,11,["H3414"]],[11,13,["H5030"]],[13,14,["H1961"]],[14,16,["H3607"]],[16,19,["H2691"]],[19,22,["H4307"]],[22,23,["H834"]],[23,27,["H4428"]],[27,29,["H3063"]],[29,30,["H1004"]]]},{"k":19734,"v":[[0,1,["H834"]],[1,2,["H6667"]],[2,3,["H4428"]],[3,5,["H3063"]],[5,9,["H3607"]],[9,10,["H559"]],[10,11,["H4069"]],[11,13,["H859"]],[13,14,["H5012"]],[14,16,["H559"]],[16,17,["H3541"]],[17,18,["H559"]],[18,20,["H3068"]],[20,21,["H2009"]],[21,24,["H5414","(H853)"]],[24,25,["H2063"]],[25,26,["H5892"]],[26,29,["H3027"]],[29,32,["H4428"]],[32,34,["H894"]],[34,38,["H3920"]],[38,39,[]]]},{"k":19735,"v":[[0,2,["H6667"]],[2,3,["H4428"]],[3,5,["H3063"]],[5,7,["H3808"]],[7,8,["H4422"]],[8,12,["H4480","H3027"]],[12,15,["H3778"]],[15,16,["H3588"]],[16,20,["H5414","H5414"]],[20,23,["H3027"]],[23,26,["H4428"]],[26,28,["H894"]],[28,31,["H1696"]],[31,32,["H5973"]],[32,34,["H6310"]],[34,36,["H6310"]],[36,39,["H5869"]],[39,41,["H7200","(H853)"]],[41,43,["H5869"]]]},{"k":19736,"v":[[0,4,["H1980","(H853)"]],[4,5,["H6667"]],[5,7,["H894"]],[7,9,["H8033"]],[9,12,["H1961"]],[12,13,["H5704"]],[13,15,["H6485"]],[15,17,["H5002"]],[17,19,["H3068"]],[19,20,["H3588"]],[20,22,["H3898"]],[22,23,["H854"]],[23,25,["H3778"]],[25,28,["H3808"]],[28,29,["H6743"]]]},{"k":19737,"v":[[0,2,["H3414"]],[2,3,["H559"]],[3,5,["H1697"]],[5,8,["H3068"]],[8,9,["H1961"]],[9,10,["H413"]],[10,12,["H559"]]]},{"k":19738,"v":[[0,1,["H2009"]],[1,2,["H2601"]],[2,4,["H1121"]],[4,6,["H7967"]],[6,8,["H1730"]],[8,10,["H935"]],[10,11,["H413"]],[11,13,["H559"]],[13,14,["H7069"]],[14,15,["(H853)"]],[15,17,["H7704"]],[17,18,["H834"]],[18,21,["H6068"]],[21,22,["H3588"]],[22,24,["H4941"]],[24,26,["H1353"]],[26,30,["H7069"]],[30,31,[]]]},{"k":19739,"v":[[0,2,["H2601"]],[2,4,["H1730"]],[4,5,["H1121"]],[5,6,["H935"]],[6,7,["H413"]],[7,9,["H413"]],[9,11,["H2691"]],[11,14,["H4307"]],[14,18,["H1697"]],[18,21,["H3068"]],[21,23,["H559"]],[23,24,["H413"]],[24,26,["H7069","(H853)"]],[26,28,["H7704"]],[28,31,["H4994"]],[31,32,["H834"]],[32,35,["H6068"]],[35,36,["H834"]],[36,40,["H776"]],[40,42,["H1144"]],[42,43,["H3588"]],[43,45,["H4941"]],[45,47,["H3425"]],[47,52,["H1353"]],[52,55,["H7069"]],[55,61,["H3045"]],[61,62,["H3588"]],[62,63,["H1931"]],[63,66,["H1697"]],[66,69,["H3068"]]]},{"k":19740,"v":[[0,3,["H7069","(H853)"]],[3,5,["H7704"]],[5,6,["H4480","H854"]],[6,7,["H2601"]],[7,9,["H1730"]],[9,10,["H1121"]],[10,11,["H834"]],[11,14,["H6068"]],[14,16,["H8254"]],[16,17,["(H853)"]],[17,19,["H3701"]],[19,21,["H7651","H6240"]],[21,22,["H8255"]],[22,24,["H3701"]]]},{"k":19741,"v":[[0,3,["H3789"]],[3,5,["H5612"]],[5,7,["H2856"]],[7,10,["H5749"]],[10,11,["H5707"]],[11,13,["H8254"]],[13,16,["H3701"]],[16,19,["H3976"]]]},{"k":19742,"v":[[0,3,["H3947","(H853)"]],[3,5,["H5612"]],[5,8,["H4736"]],[8,9,["(H853)"]],[9,13,["H2856"]],[13,17,["H4687"]],[17,19,["H2706"]],[19,24,["H1540"]]]},{"k":19743,"v":[[0,3,["H5414","(H853)"]],[3,5,["H5612"]],[5,8,["H4736"]],[8,9,["H413"]],[9,10,["H1263"]],[10,12,["H1121"]],[12,14,["H5374"]],[14,16,["H1121"]],[16,18,["H4271"]],[18,21,["H5869"]],[21,23,["H2601"]],[23,25,["H1730"]],[25,30,["H5869"]],[30,33,["H5707"]],[33,35,["H3789"]],[35,37,["H5612"]],[37,40,["H4736"]],[40,41,["H5869"]],[41,42,["H3605"]],[42,44,["H3064"]],[44,46,["H3427"]],[46,49,["H2691"]],[49,52,["H4307"]]]},{"k":19744,"v":[[0,3,["H6680","(H853)"]],[3,4,["H1263"]],[4,5,["H5869"]],[5,7,["H559"]]]},{"k":19745,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,11,["H3947","(H853)"]],[11,12,["H428"]],[12,13,["H5612","(H853)"]],[13,14,["H2088"]],[14,15,["H5612"]],[15,18,["H4736"]],[18,22,["H2856"]],[22,24,["H2088"]],[24,25,["H5612"]],[25,28,["H1540"]],[28,30,["H5414"]],[30,34,["H2789"]],[34,35,["H3627"]],[35,36,["H4616"]],[36,39,["H5975"]],[39,40,["H7227"]],[40,41,["H3117"]]]},{"k":19746,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,12,["H1004"]],[12,14,["H7704"]],[14,16,["H3754"]],[16,19,["H7069"]],[19,20,["H5750"]],[20,22,["H2063"]],[22,23,["H776"]]]},{"k":19747,"v":[[0,2,["H310"]],[2,5,["H5414","(H853)"]],[5,7,["H5612"]],[7,10,["H4736"]],[10,11,["H413"]],[11,12,["H1263"]],[12,14,["H1121"]],[14,16,["H5374"]],[16,18,["H6419"]],[18,19,["H413"]],[19,21,["H3068"]],[21,22,["H559"]]]},{"k":19748,"v":[[0,1,["H162"]],[1,2,["H136"]],[2,3,["H3069"]],[3,4,["H2009"]],[4,5,["H859"]],[5,7,["H6213","(H853)"]],[7,9,["H8064"]],[9,12,["H776"]],[12,15,["H1419"]],[15,16,["H3581"]],[16,19,["H5186"]],[19,20,["H2220"]],[20,24,["H3808","H3605","H1697"]],[24,26,["H6381"]],[26,27,["H4480"]],[27,28,[]]]},{"k":19749,"v":[[0,2,["H6213"]],[2,3,["H2617"]],[3,5,["H505"]],[5,7,["H7999"]],[7,9,["H5771"]],[9,12,["H1"]],[12,13,["H413"]],[13,15,["H2436"]],[15,18,["H1121"]],[18,19,["H310"]],[19,22,["H1419"]],[22,24,["H1368"]],[24,25,["H410"]],[25,27,["H3068"]],[27,29,["H6635"]],[29,32,["H8034"]]]},{"k":19750,"v":[[0,1,["H1419"]],[1,3,["H6098"]],[3,5,["H7227"]],[5,7,["H5950"]],[7,8,["H834"]],[8,10,["H5869"]],[10,12,["H6491"]],[12,13,["H5921"]],[13,14,["H3605"]],[14,16,["H1870"]],[16,19,["H1121"]],[19,21,["H120"]],[21,23,["H5414"]],[23,25,["H376"]],[25,29,["H1870"]],[29,34,["H6529"]],[34,37,["H4611"]]]},{"k":19751,"v":[[0,1,["H834"]],[1,3,["H7760"]],[3,4,["H226"]],[4,6,["H4159"]],[6,9,["H776"]],[9,11,["H4714"]],[11,13,["H5704"]],[13,14,["H2088"]],[14,15,["H3117"]],[15,18,["H3478"]],[18,22,["H120"]],[22,25,["H6213"]],[25,28,["H8034"]],[28,31,["H2088"]],[31,32,["H3117"]]]},{"k":19752,"v":[[0,4,["H3318","(H853)"]],[4,6,["H5971","(H853)"]],[6,7,["H3478"]],[7,11,["H4480","H776"]],[11,13,["H4714"]],[13,15,["H226"]],[15,18,["H4159"]],[18,22,["H2389"]],[22,23,["H3027"]],[23,28,["H5186"]],[28,29,["H248"]],[29,32,["H1419"]],[32,33,["H4172"]]]},{"k":19753,"v":[[0,3,["H5414"]],[3,4,["(H853)"]],[4,5,["H2063"]],[5,6,["H776"]],[6,7,["H834"]],[7,10,["H7650"]],[10,13,["H1"]],[13,15,["H5414"]],[15,18,["H776"]],[18,19,["H2100"]],[19,21,["H2461"]],[21,23,["H1706"]]]},{"k":19754,"v":[[0,3,["H935"]],[3,6,["H3423"]],[6,10,["H8085"]],[10,11,["H3808"]],[11,13,["H6963"]],[13,14,["H3808"]],[14,15,["H1980"]],[15,18,["H8451"]],[18,21,["H6213","(H853)"]],[21,22,["H3808"]],[22,24,["H3605"]],[24,25,["H834"]],[25,27,["H6680"]],[27,30,["H6213"]],[30,34,["(H853)"]],[34,35,["H3605"]],[35,36,["H2063"]],[36,37,["H7451"]],[37,40,["H7122"]],[40,41,[]]]},{"k":19755,"v":[[0,1,["H2009"]],[1,3,["H5550"]],[3,6,["H935"]],[6,9,["H5892"]],[9,11,["H3920"]],[11,15,["H5892"]],[15,17,["H5414"]],[17,20,["H3027"]],[20,23,["H3778"]],[23,25,["H3898"]],[25,26,["H5921"]],[26,28,["H4480","H6440"]],[28,31,["H2719"]],[31,35,["H7458"]],[35,39,["H1698"]],[39,41,["H834"]],[41,44,["H1696"]],[44,48,["H1961"]],[48,50,["H2009"]],[50,52,["H7200"]],[52,53,[]]]},{"k":19756,"v":[[0,2,["H859"]],[2,4,["H559"]],[4,5,["H413"]],[5,8,["H136"]],[8,9,["H3069"]],[9,10,["H7069"]],[10,13,["H7704"]],[13,15,["H3701"]],[15,17,["H5749"]],[17,18,["H5707"]],[18,21,["H5892"]],[21,23,["H5414"]],[23,26,["H3027"]],[26,29,["H3778"]]]},{"k":19757,"v":[[0,2,["H1961"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H413"]],[8,9,["H3414"]],[9,10,["H559"]]]},{"k":19758,"v":[[0,1,["H2009"]],[1,2,["H589"]],[2,5,["H3068"]],[5,7,["H430"]],[7,9,["H3605"]],[9,10,["H1320"]],[10,13,["H3605"]],[13,14,["H1697"]],[14,16,["H6381"]],[16,17,["H4480"]],[17,18,[]]]},{"k":19759,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,9,["H5414","(H853)"]],[9,10,["H2063"]],[10,11,["H5892"]],[11,14,["H3027"]],[14,17,["H3778"]],[17,21,["H3027"]],[21,23,["H5019"]],[23,24,["H4428"]],[24,26,["H894"]],[26,30,["H3920"]],[30,31,[]]]},{"k":19760,"v":[[0,3,["H3778"]],[3,5,["H3898"]],[5,6,["H5921"]],[6,7,["H2063"]],[7,8,["H5892"]],[8,10,["H935"]],[10,12,["H3341"]],[12,13,["H784"]],[13,14,["(H853)"]],[14,15,["H2063"]],[15,16,["H5892"]],[16,18,["H8313"]],[18,22,["H1004"]],[22,23,["H5921"]],[23,24,["H834"]],[24,25,["H1406"]],[25,29,["H6999"]],[29,31,["H1168"]],[31,34,["H5258"]],[34,36,["H5262"]],[36,38,["H312"]],[38,39,["H430"]],[39,40,["H4616"]],[40,44,["H3707"]]]},{"k":19761,"v":[[0,1,["H3588"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,8,["H1121"]],[8,10,["H3063"]],[10,11,["H1961"]],[11,12,["H389"]],[12,13,["H6213"]],[13,14,["H7451"]],[14,15,["H5869"]],[15,19,["H4480","H5271"]],[19,20,["H3588"]],[20,22,["H1121"]],[22,24,["H3478"]],[24,26,["H389"]],[26,30,["H3707","(H853)"]],[30,33,["H4639"]],[33,36,["H3027"]],[36,37,["H5002"]],[37,39,["H3068"]]]},{"k":19762,"v":[[0,1,["H3588","H5921"]],[1,2,["H2063"]],[2,3,["H5892"]],[3,5,["H1961"]],[5,10,["H5921"]],[10,13,["H639"]],[13,15,["H5921"]],[15,17,["H2534"]],[17,18,["H4480"]],[18,20,["H3117"]],[20,21,["H834"]],[21,23,["H1129"]],[23,26,["H5704"]],[26,27,["H2088"]],[27,28,["H3117"]],[28,32,["H5493"]],[32,35,["H4480","H5921"]],[35,37,["H6440"]]]},{"k":19763,"v":[[0,1,["H5921"]],[1,3,["H3605"]],[3,5,["H7451"]],[5,8,["H1121"]],[8,10,["H3478"]],[10,14,["H1121"]],[14,16,["H3063"]],[16,17,["H834"]],[17,20,["H6213"]],[20,25,["H3707"]],[25,26,["H1992"]],[26,28,["H4428"]],[28,30,["H8269"]],[30,32,["H3548"]],[32,35,["H5030"]],[35,38,["H376"]],[38,40,["H3063"]],[40,43,["H3427"]],[43,45,["H3389"]]]},{"k":19764,"v":[[0,4,["H6437"]],[4,5,["H413"]],[5,8,["H6203"]],[8,10,["H3808"]],[10,12,["H6440"]],[12,15,["H3925"]],[15,19,["H7925"]],[19,21,["H3925"]],[21,26,["H369"]],[26,27,["H8085"]],[27,29,["H3947"]],[29,30,["H4148"]]]},{"k":19765,"v":[[0,3,["H7760"]],[3,5,["H8251"]],[5,8,["H1004"]],[8,9,["H834"]],[9,11,["H7121"]],[11,12,["H5921"]],[12,14,["H8034"]],[14,16,["H2930"]],[16,17,[]]]},{"k":19766,"v":[[0,3,["H1129","(H853)"]],[3,6,["H1116"]],[6,8,["H1168"]],[8,9,["H834"]],[9,13,["H1516"]],[13,16,["H1121"]],[16,18,["H2011"]],[18,20,["(H853)"]],[20,22,["H1121"]],[22,25,["H1323"]],[25,28,["H5674"]],[28,32,["H4432"]],[32,33,["H834"]],[33,35,["H6680"]],[35,37,["H3808"]],[37,38,["H3808"]],[38,39,["H5927"]],[39,41,["H5921"]],[41,43,["H3820"]],[43,47,["H6213"]],[47,48,["H2063"]],[48,49,["H8441"]],[49,50,["H4616"]],[50,51,["(H853)"]],[51,52,["H3063"]],[52,54,["H2398"]]]},{"k":19767,"v":[[0,2,["H6258"]],[2,3,["H3651"]],[3,4,["H3541"]],[4,5,["H559"]],[5,7,["H3068"]],[7,9,["H430"]],[9,11,["H3478"]],[11,12,["H413"]],[12,13,["H2063"]],[13,14,["H5892"]],[14,15,["H834"]],[15,16,["H859"]],[16,17,["H559"]],[17,21,["H5414"]],[21,24,["H3027"]],[24,27,["H4428"]],[27,29,["H894"]],[29,32,["H2719"]],[32,36,["H7458"]],[36,40,["H1698"]]]},{"k":19768,"v":[[0,1,["H2009"]],[1,4,["H6908"]],[4,8,["H4480","H3605"]],[8,9,["H776"]],[9,10,["H834","H8033"]],[10,13,["H5080"]],[13,17,["H639"]],[17,21,["H2534"]],[21,24,["H1419"]],[24,25,["H7110"]],[25,31,["H7725"]],[31,32,["H413"]],[32,33,["H2088"]],[33,34,["H4725"]],[34,41,["H3427"]],[41,42,["H983"]]]},{"k":19769,"v":[[0,4,["H1961"]],[4,6,["H5971"]],[6,8,["H589"]],[8,10,["H1961"]],[10,12,["H430"]]]},{"k":19770,"v":[[0,4,["H5414"]],[4,6,["H259"]],[6,7,["H3820"]],[7,9,["H259"]],[9,10,["H1870"]],[10,14,["H3372"]],[14,17,["H3605","H3117"]],[17,20,["H2896"]],[20,26,["H1121"]],[26,27,["H310"]],[27,28,[]]]},{"k":19771,"v":[[0,4,["H3772"]],[4,6,["H5769"]],[6,7,["H1285"]],[7,10,["H834"]],[10,13,["H3808"]],[13,15,["H7725"]],[15,16,["H4480","H310"]],[16,21,["H3190","(H853)"]],[21,25,["H5414"]],[25,27,["H3374"]],[27,30,["H3824"]],[30,34,["H1115"]],[34,35,["H5493"]],[35,36,["H4480","H5921"]],[36,37,[]]]},{"k":19772,"v":[[0,4,["H7797"]],[4,5,["H5921"]],[5,10,["H2895","(H853)"]],[10,14,["H5193"]],[14,17,["H2063"]],[17,18,["H776"]],[18,19,["H571"]],[19,22,["H3605"]],[22,23,["H3820"]],[23,27,["H3605"]],[27,28,["H5315"]]]},{"k":19773,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H834"]],[7,10,["H935","(H853)"]],[10,11,["H3605"]],[11,12,["H2063"]],[12,13,["H1419"]],[13,14,["H7451"]],[14,15,["H413"]],[15,16,["H2088"]],[16,17,["H5971"]],[17,18,["H3651"]],[18,20,["H595"]],[20,21,["H935"]],[21,22,["H5921"]],[22,23,["(H853)"]],[23,24,["H3605"]],[24,26,["H2896"]],[26,27,["H834"]],[27,28,["H595"]],[28,30,["H1696","H5921"]],[30,31,[]]]},{"k":19774,"v":[[0,2,["H7704"]],[2,5,["H7069"]],[5,7,["H2063"]],[7,8,["H776"]],[8,9,["H834"]],[9,10,["H859"]],[10,11,["H559"]],[11,12,["H1931"]],[12,14,["H8077"]],[14,15,["H4480","H369"]],[15,16,["H120"]],[16,18,["H929"]],[18,21,["H5414"]],[21,24,["H3027"]],[24,27,["H3778"]]]},{"k":19775,"v":[[0,3,["H7069"]],[3,4,["H7704"]],[4,6,["H3701"]],[6,8,["H3789"]],[8,9,["H5612"]],[9,11,["H2856"]],[11,14,["H5749"]],[14,15,["H5707"]],[15,18,["H776"]],[18,20,["H1144"]],[20,25,["H5439"]],[25,26,["H3389"]],[26,30,["H5892"]],[30,32,["H3063"]],[32,36,["H5892"]],[36,39,["H2022"]],[39,43,["H5892"]],[43,46,["H8219"]],[46,50,["H5892"]],[50,53,["H5045"]],[53,54,["H3588"]],[54,57,["(H853)"]],[57,59,["H7622"]],[59,61,["H7725"]],[61,62,["H5002"]],[62,64,["H3068"]]]},{"k":19776,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,11,["H8145"]],[11,14,["H1931"]],[14,16,["H5750"]],[16,18,["H6113"]],[18,21,["H2691"]],[21,24,["H4307"]],[24,25,["H559"]]]},{"k":19777,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6213"]],[6,9,["H3068"]],[9,11,["H3335"]],[11,14,["H3559"]],[14,17,["H3068"]],[17,20,["H8034"]]]},{"k":19778,"v":[[0,1,["H7121"]],[1,2,["H413"]],[2,7,["H6030"]],[7,10,["H5046"]],[10,12,["H1419"]],[12,14,["H1219"]],[14,18,["H3045"]],[18,19,["H3808"]]]},{"k":19779,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H430"]],[7,9,["H3478"]],[9,10,["H5921"]],[10,12,["H1004"]],[12,14,["H2063"]],[14,15,["H5892"]],[15,17,["H5921"]],[17,19,["H1004"]],[19,22,["H4428"]],[22,24,["H3063"]],[24,28,["H5422"]],[28,29,["H413"]],[29,31,["H5550"]],[31,33,["H413"]],[33,35,["H2719"]]]},{"k":19780,"v":[[0,2,["H935"]],[2,4,["H3898"]],[4,5,["H854"]],[5,7,["H3778"]],[7,12,["H4390"]],[12,14,["H854"]],[14,17,["H6297"]],[17,19,["H120"]],[19,20,["H834"]],[20,23,["H5221"]],[23,26,["H639"]],[26,30,["H2534"]],[30,32,["H5921"]],[32,33,["H3605"]],[33,34,["H834"]],[34,35,["H7451"]],[35,38,["H5641"]],[38,40,["H6440"]],[40,42,["H2063"]],[42,43,["H4480","H5892"]]]},{"k":19781,"v":[[0,1,["H2009"]],[1,4,["H4608"]],[4,6,["H724"]],[6,8,["H4832"]],[8,12,["H7495"]],[12,16,["H1540"]],[16,20,["H6283"]],[20,22,["H7965"]],[22,24,["H571"]]]},{"k":19782,"v":[[0,4,["(H853)"]],[4,6,["H7622"]],[6,8,["H3063"]],[8,11,["H7622"]],[11,13,["H3478"]],[13,15,["H7725"]],[15,18,["H1129"]],[18,23,["H7223"]]]},{"k":19783,"v":[[0,4,["H2891"]],[4,7,["H4480","H3605"]],[7,9,["H5771"]],[9,10,["H834"]],[10,13,["H2398"]],[13,19,["H5545"]],[19,20,["H3605"]],[20,22,["H5771"]],[22,23,["H834"]],[23,26,["H2398"]],[26,28,["H834"]],[28,31,["H6586"]],[31,33,[]]]},{"k":19784,"v":[[0,4,["H1961"]],[4,8,["H8034"]],[8,10,["H8342"]],[10,12,["H8416"]],[12,15,["H8597"]],[15,17,["H3605"]],[17,19,["H1471"]],[19,22,["H776"]],[22,23,["H834"]],[23,25,["H8085","(H853)"]],[25,26,["H3605"]],[26,28,["H2896"]],[28,29,["H834"]],[29,30,["H595"]],[30,32,["H6213"]],[32,37,["H6342"]],[37,39,["H7264"]],[39,40,["H5921"]],[40,41,["H3605"]],[41,43,["H2896"]],[43,45,["H5921"]],[45,46,["H3605"]],[46,48,["H7965"]],[48,49,["H834"]],[49,50,["H595"]],[50,51,["H6213"]],[51,53,[]]]},{"k":19785,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5750"]],[5,9,["H8085"]],[9,11,["H2088"]],[11,12,["H4725"]],[12,13,["H834"]],[13,14,["H859"]],[14,15,["H559"]],[15,18,["H2720"]],[18,19,["H4480","H369"]],[19,20,["H120"]],[20,22,["H4480","H369"]],[22,23,["H929"]],[23,27,["H5892"]],[27,29,["H3063"]],[29,33,["H2351"]],[33,35,["H3389"]],[35,38,["H8074"]],[38,39,["H4480","H369"]],[39,40,["H120"]],[40,42,["H4480","H369"]],[42,43,["H3427"]],[43,45,["H4480","H369"]],[45,46,["H929"]]]},{"k":19786,"v":[[0,2,["H6963"]],[2,4,["H8342"]],[4,7,["H6963"]],[7,9,["H8057"]],[9,11,["H6963"]],[11,14,["H2860"]],[14,17,["H6963"]],[17,20,["H3618"]],[20,22,["H6963"]],[22,27,["H559"]],[27,28,["H3034","(H853)"]],[28,30,["H3068"]],[30,32,["H6635"]],[32,33,["H3588"]],[33,35,["H3068"]],[35,37,["H2896"]],[37,38,["H3588"]],[38,40,["H2617"]],[40,43,["H5769"]],[43,49,["H935"]],[49,53,["H8426"]],[53,56,["H1004"]],[56,59,["H3068"]],[59,60,["H3588"]],[60,65,["H7725","(H853)"]],[65,67,["H7622"]],[67,70,["H776"]],[70,74,["H7223"]],[74,75,["H559"]],[75,77,["H3068"]]]},{"k":19787,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H5750"]],[7,9,["H2088"]],[9,10,["H4725"]],[10,13,["H2720"]],[13,14,["H4480","H369"]],[14,15,["H120"]],[15,17,["H5704"]],[17,18,["H929"]],[18,21,["H3605"]],[21,23,["H5892"]],[23,26,["H1961"]],[26,28,["H5116"]],[28,30,["H7462"]],[30,33,["H6629"]],[33,36,["H7257"]]]},{"k":19788,"v":[[0,3,["H5892"]],[3,6,["H2022"]],[6,9,["H5892"]],[9,12,["H8219"]],[12,16,["H5892"]],[16,19,["H5045"]],[19,23,["H776"]],[23,25,["H1144"]],[25,30,["H5439"]],[30,31,["H3389"]],[31,35,["H5892"]],[35,37,["H3063"]],[37,40,["H6629"]],[40,41,["H5674"]],[41,42,["H5750"]],[42,43,["H5921"]],[43,45,["H3027"]],[45,49,["H4487"]],[49,51,["H559"]],[51,53,["H3068"]]]},{"k":19789,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,11,["H6965","(H853)"]],[11,13,["H2896"]],[13,14,["H1697"]],[14,15,["H834"]],[15,18,["H1696"]],[18,19,["H413"]],[19,21,["H1004"]],[21,23,["H3478"]],[23,25,["H5704"]],[25,27,["H1004"]],[27,29,["H3063"]]]},{"k":19790,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,6,["H1931"]],[6,7,["H6256"]],[7,12,["H6780"]],[12,14,["H6666"]],[14,17,["H6779"]],[17,19,["H1732"]],[19,23,["H6213"]],[23,24,["H4941"]],[24,26,["H6666"]],[26,29,["H776"]]]},{"k":19791,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,5,["H3063"]],[5,7,["H3467"]],[7,9,["H3389"]],[9,11,["H7931"]],[11,12,["H983"]],[12,14,["H2088"]],[14,18,["H834"]],[18,22,["H7121"]],[22,24,["H3068"]],[24,26,["H6664"]]]},{"k":19792,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H1732"]],[6,8,["H3808"]],[8,9,["H3772"]],[9,11,["H376"]],[11,13,["H3427"]],[13,14,["H5921"]],[14,16,["H3678"]],[16,19,["H1004"]],[19,21,["H3478"]]]},{"k":19793,"v":[[0,1,["H3808"]],[1,4,["H3548"]],[4,6,["H3881"]],[6,7,["H3772"]],[7,9,["H376"]],[9,10,["H4480","H6440"]],[10,13,["H5927"]],[13,15,["H5930"]],[15,18,["H6999"]],[18,20,["H4503"]],[20,23,["H6213"]],[23,24,["H2077"]],[24,25,["H3605","H3117"]]]},{"k":19794,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,10,["H559"]]]},{"k":19795,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H518"]],[5,8,["H6565","(H853)"]],[8,10,["H1285"]],[10,13,["H3117"]],[13,16,["H1285"]],[16,19,["H3915"]],[19,24,["H1115"]],[24,25,["H1961"]],[25,26,["H3119"]],[26,28,["H3915"]],[28,31,["H6256"]]]},{"k":19796,"v":[[0,3,["H1571"]],[3,5,["H1285"]],[5,7,["H6565"]],[7,8,["H854"]],[8,9,["H1732"]],[9,11,["H5650"]],[11,16,["H4480","H1961"]],[16,18,["H1121"]],[18,20,["H4427"]],[20,21,["H5921"]],[21,23,["H3678"]],[23,25,["H854"]],[25,27,["H3881"]],[27,29,["H3548"]],[29,31,["H8334"]]]},{"k":19797,"v":[[0,1,["H834"]],[1,3,["H6635"]],[3,5,["H8064"]],[5,6,["H3808"]],[6,8,["H5608"]],[8,9,["H3808"]],[9,11,["H2344"]],[11,14,["H3220"]],[14,15,["H4058"]],[15,16,["H3651"]],[16,19,["H7235","(H853)"]],[19,21,["H2233"]],[21,23,["H1732"]],[23,25,["H5650"]],[25,28,["H3881"]],[28,31,["H8334"]],[31,32,[]]]},{"k":19798,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,10,["H559"]]]},{"k":19799,"v":[[0,1,["H7200"]],[1,3,["H3808"]],[3,4,["H4100"]],[4,5,["H2088"]],[5,6,["H5971"]],[6,8,["H1696"]],[8,9,["H559"]],[9,11,["H8147"]],[11,12,["H4940"]],[12,13,["H834"]],[13,15,["H3068"]],[15,17,["H977"]],[17,23,["H3988"]],[23,27,["H5006"]],[27,29,["H5971"]],[29,34,["H4480","H1961"]],[34,35,["H5750"]],[35,37,["H1471"]],[37,38,["H6440"]],[38,39,[]]]},{"k":19800,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H518"]],[5,7,["H1285"]],[7,9,["H3808"]],[9,11,["H3119"]],[11,13,["H3915"]],[13,18,["H3808"]],[18,19,["H7760"]],[19,21,["H2708"]],[21,23,["H8064"]],[23,25,["H776"]]]},{"k":19801,"v":[[0,1,["H1571"]],[1,5,["H3988"]],[5,7,["H2233"]],[7,9,["H3290"]],[9,11,["H1732"]],[11,13,["H5650"]],[13,19,["H4480","H3947"]],[19,23,["H4480","H2233"]],[23,26,["H4910"]],[26,27,["H413"]],[27,29,["H2233"]],[29,31,["H85"]],[31,32,["H3446"]],[32,34,["H3290"]],[34,35,["H3588"]],[35,38,["(H853)"]],[38,40,["H7622"]],[40,42,["H7725"]],[42,45,["H7355"]],[45,47,[]]]},{"k":19802,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H413"]],[5,6,["H3414"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,11,["H5019"]],[11,12,["H4428"]],[12,14,["H894"]],[14,16,["H3605"]],[16,18,["H2428"]],[18,20,["H3605"]],[20,22,["H4467"]],[22,25,["H776"]],[25,28,["H4480","H4475","H3027"]],[28,30,["H3605"]],[30,32,["H5971"]],[32,33,["H3898"]],[33,34,["H5921"]],[34,35,["H3389"]],[35,37,["H5921"]],[37,38,["H3605"]],[38,40,["H5892"]],[40,42,["H559"]]]},{"k":19803,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H430"]],[6,8,["H3478"]],[8,9,["H1980"]],[9,11,["H559"]],[11,12,["H413"]],[12,13,["H6667"]],[13,14,["H4428"]],[14,16,["H3063"]],[16,18,["H559","H413"]],[18,20,["H3541"]],[20,21,["H559"]],[21,23,["H3068"]],[23,24,["H2009"]],[24,27,["H5414","(H853)"]],[27,28,["H2063"]],[28,29,["H5892"]],[29,32,["H3027"]],[32,35,["H4428"]],[35,37,["H894"]],[37,41,["H8313"]],[41,44,["H784"]]]},{"k":19804,"v":[[0,2,["H859"]],[2,4,["H3808"]],[4,5,["H4422"]],[5,9,["H4480","H3027"]],[9,10,["H3588"]],[10,14,["H8610","H8610"]],[14,16,["H5414"]],[16,19,["H3027"]],[19,22,["H5869"]],[22,24,["H7200","(H853)"]],[24,26,["H5869"]],[26,29,["H4428"]],[29,31,["H894"]],[31,35,["H1696"]],[35,36,["H854"]],[36,38,["H6310"]],[38,40,["H6310"]],[40,44,["H935"]],[44,46,["H894"]]]},{"k":19805,"v":[[0,1,["H389"]],[1,2,["H8085"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,9,["H6667"]],[9,10,["H4428"]],[10,12,["H3063"]],[12,13,["H3541"]],[13,14,["H559"]],[14,16,["H3068"]],[16,17,["H5921"]],[17,21,["H3808"]],[21,22,["H4191"]],[22,25,["H2719"]]]},{"k":19806,"v":[[0,4,["H4191"]],[4,6,["H7965"]],[6,10,["H4955"]],[10,13,["H1"]],[13,15,["H7223"]],[15,16,["H4428"]],[16,17,["H834"]],[17,18,["H1961"]],[18,19,["H6440"]],[19,21,["H3651"]],[21,24,["H8313"]],[24,31,["H5594"]],[31,34,["H1945"]],[34,35,["H113"]],[35,36,["H3588"]],[36,37,["H589"]],[37,39,["H1696"]],[39,41,["H1697"]],[41,42,["H5002"]],[42,44,["H3068"]]]},{"k":19807,"v":[[0,2,["H3414"]],[2,4,["H5030"]],[4,5,["H1696","(H853)"]],[5,6,["H3605"]],[6,7,["H428"]],[7,8,["H1697"]],[8,9,["H413"]],[9,10,["H6667"]],[10,11,["H4428"]],[11,13,["H3063"]],[13,15,["H3389"]]]},{"k":19808,"v":[[0,3,["H4428"]],[3,5,["H894"]],[5,6,["H2428"]],[6,7,["H3898"]],[7,8,["H5921"]],[8,9,["H3389"]],[9,11,["H5921"]],[11,12,["H3605"]],[12,14,["H5892"]],[14,16,["H3063"]],[16,19,["H3498"]],[19,20,["H413"]],[20,21,["H3923"]],[21,23,["H413"]],[23,24,["H5825"]],[24,25,["H3588"]],[25,26,["H2007"]],[26,27,["H4013"]],[27,28,["H5892"]],[28,29,["H7604"]],[29,32,["H5892"]],[32,34,["H3063"]]]},{"k":19809,"v":[[0,4,["H1697"]],[4,5,["H834"]],[5,6,["H1961"]],[6,7,["H413"]],[7,8,["H3414"]],[8,9,["H4480","H854"]],[9,11,["H3068"]],[11,13,["H310"]],[13,15,["H4428"]],[15,16,["H6667"]],[16,18,["H3772"]],[18,20,["H1285"]],[20,21,["H854"]],[21,22,["H3605"]],[22,24,["H5971"]],[24,25,["H834"]],[25,28,["H3389"]],[28,30,["H7121"]],[30,31,["H1865"]],[31,33,[]]]},{"k":19810,"v":[[0,3,["H376"]],[3,5,["(H853)"]],[5,7,["H5650"]],[7,10,["H376","(H853)"]],[10,12,["H8198"]],[12,15,["H5680"]],[15,18,["H5680"]],[18,19,["H7971"]],[19,20,["H2670"]],[20,22,["H1115","H376"]],[22,24,["H5647"]],[24,32,["H3064"]],[32,34,["H251"]]]},{"k":19811,"v":[[0,3,["H3605"]],[3,5,["H8269"]],[5,7,["H3605"]],[7,9,["H5971"]],[9,10,["H834"]],[10,12,["H935"]],[12,15,["H1285"]],[15,16,["H8085"]],[16,19,["H376"]],[19,21,["(H853)"]],[21,23,["H5650"]],[23,26,["H376","(H853)"]],[26,28,["H8198"]],[28,29,["H7971"]],[29,30,["H2670"]],[30,32,["H1115"]],[32,34,["H5647"]],[34,39,["H5750"]],[39,42,["H8085"]],[42,46,["H7971"]]]},{"k":19812,"v":[[0,2,["H310","H3651"]],[2,4,["H7725"]],[4,6,["(H853)"]],[6,8,["H5650"]],[8,11,["H8198"]],[11,12,["H834"]],[12,16,["H7971"]],[16,17,["H2670"]],[17,19,["H7725"]],[19,24,["H3533"]],[24,26,["H5650"]],[26,29,["H8198"]]]},{"k":19813,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,10,["H4480","H854"]],[10,12,["H3068"]],[12,13,["H559"]]]},{"k":19814,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H430"]],[6,8,["H3478"]],[8,9,["H595"]],[9,10,["H3772"]],[10,12,["H1285"]],[12,13,["H854"]],[13,15,["H1"]],[15,18,["H3117"]],[18,23,["H3318","(H853)"]],[23,27,["H4480","H776"]],[27,29,["H4714"]],[29,33,["H4480","H1004"]],[33,35,["H5650"]],[35,36,["H559"]]]},{"k":19815,"v":[[0,3,["H4480","H7093"]],[3,5,["H7651"]],[5,6,["H8141"]],[6,9,["H7971"]],[9,11,["H376","(H853)"]],[11,13,["H251"]],[13,15,["H5680"]],[15,16,["H834"]],[16,19,["H4376"]],[19,26,["H5647"]],[26,28,["H8337"]],[28,29,["H8141"]],[29,34,["H7971"]],[34,35,["H2670"]],[35,36,["H4480","H5973"]],[36,40,["H1"]],[40,41,["H8085"]],[41,42,["H3808"]],[42,43,["H413"]],[43,45,["H3808"]],[45,46,["H5186","(H853)"]],[46,48,["H241"]]]},{"k":19816,"v":[[0,2,["H859"]],[2,4,["H3117"]],[4,5,["H7725"]],[5,8,["H6213","(H853)"]],[8,9,["H3477"]],[9,12,["H5869"]],[12,14,["H7121"]],[14,15,["H1865"]],[15,17,["H376"]],[17,20,["H7453"]],[20,24,["H3772"]],[24,26,["H1285"]],[26,27,["H6440"]],[27,31,["H1004"]],[31,32,["H834"]],[32,34,["H7121"]],[34,35,["H5921"]],[35,37,["H8034"]]]},{"k":19817,"v":[[0,3,["H7725"]],[3,5,["H2490","(H853)"]],[5,7,["H8034"]],[7,11,["H376","(H853)"]],[11,13,["H5650"]],[13,16,["H376","(H853)"]],[16,18,["H8198"]],[18,19,["H834"]],[19,22,["H7971"]],[22,24,["H2670"]],[24,27,["H5315"]],[27,29,["H7725"]],[29,34,["H3533","(H853)"]],[34,36,["H1961"]],[36,40,["H5650"]],[40,43,["H8198"]]]},{"k":19818,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H859"]],[6,8,["H3808"]],[8,9,["H8085"]],[9,10,["H413"]],[10,13,["H7121"]],[13,14,["H1865"]],[14,16,["H376"]],[16,19,["H251"]],[19,22,["H376"]],[22,25,["H7453"]],[25,26,["H2009"]],[26,28,["H7121"]],[28,30,["H1865"]],[30,33,["H5002"]],[33,35,["H3068"]],[35,36,["H413"]],[36,38,["H2719"]],[38,39,["H413"]],[39,41,["H1698"]],[41,43,["H413"]],[43,45,["H7458"]],[45,49,["H5414"]],[49,53,["H2189"]],[53,55,["H3605"]],[55,57,["H4467"]],[57,60,["H776"]]]},{"k":19819,"v":[[0,4,["H5414","(H853)"]],[4,6,["H376"]],[6,9,["H5674","(H853)"]],[9,11,["H1285"]],[11,12,["H834"]],[12,14,["H3808"]],[14,15,["H6965","(H853)"]],[15,17,["H1697"]],[17,20,["H1285"]],[20,21,["H834"]],[21,24,["H3772"]],[24,25,["H6440"]],[25,27,["H834"]],[27,29,["H3772"]],[29,31,["H5695"]],[31,33,["H8147"]],[33,35,["H5674"]],[35,36,["H996"]],[36,38,["H1335"]],[38,39,[]]]},{"k":19820,"v":[[0,2,["H8269"]],[2,4,["H3063"]],[4,7,["H8269"]],[7,9,["H3389"]],[9,11,["H5631"]],[11,14,["H3548"]],[14,16,["H3605"]],[16,18,["H5971"]],[18,21,["H776"]],[21,23,["H5674"]],[23,24,["H996"]],[24,26,["H1335"]],[26,29,["H5695"]]]},{"k":19821,"v":[[0,4,["H5414"]],[4,8,["H3027"]],[8,11,["H341"]],[11,15,["H3027"]],[15,19,["H1245"]],[19,21,["H5315"]],[21,25,["H5038"]],[25,27,["H1961"]],[27,29,["H3978"]],[29,32,["H5775"]],[32,35,["H8064"]],[35,39,["H929"]],[39,42,["H776"]]]},{"k":19822,"v":[[0,2,["H6667"]],[2,3,["H4428"]],[3,5,["H3063"]],[5,8,["H8269"]],[8,11,["H5414"]],[11,14,["H3027"]],[14,17,["H341"]],[17,21,["H3027"]],[21,25,["H1245"]],[25,27,["H5315"]],[27,31,["H3027"]],[31,34,["H4428"]],[34,36,["H894"]],[36,37,["H2428"]],[37,41,["H5927"]],[41,42,["H4480","H5921"]],[42,43,[]]]},{"k":19823,"v":[[0,1,["H2009"]],[1,4,["H6680"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,12,["H7725"]],[12,13,["H413"]],[13,14,["H2063"]],[14,15,["H5892"]],[15,19,["H3898"]],[19,20,["H5921"]],[20,23,["H3920"]],[23,26,["H8313"]],[26,29,["H784"]],[29,33,["H5414"]],[33,35,["H5892"]],[35,37,["H3063"]],[37,39,["H8077"]],[39,40,["H4480","H369"]],[40,42,["H3427"]]]},{"k":19824,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H413"]],[5,6,["H3414"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,12,["H3117"]],[12,14,["H3079"]],[14,16,["H1121"]],[16,18,["H2977"]],[18,19,["H4428"]],[19,21,["H3063"]],[21,22,["H559"]]]},{"k":19825,"v":[[0,1,["H1980"]],[1,2,["H413"]],[2,4,["H1004"]],[4,7,["H7397"]],[7,10,["H1696"]],[10,13,["H935"]],[13,17,["H1004"]],[17,20,["H3068"]],[20,21,["H413"]],[21,22,["H259"]],[22,25,["H3957"]],[25,29,["H3196"]],[29,31,["H8248"]]]},{"k":19826,"v":[[0,3,["H3947","(H853)"]],[3,4,["H2970"]],[4,6,["H1121"]],[6,8,["H3414"]],[8,10,["H1121"]],[10,12,["H2262"]],[12,15,["H251"]],[15,17,["H3605"]],[17,19,["H1121"]],[19,22,["H3605"]],[22,23,["H1004"]],[23,26,["H7397"]]]},{"k":19827,"v":[[0,3,["H935"]],[3,7,["H1004"]],[7,10,["H3068"]],[10,11,["H413"]],[11,13,["H3957"]],[13,16,["H1121"]],[16,18,["H2605"]],[18,20,["H1121"]],[20,22,["H3012"]],[22,24,["H376"]],[24,26,["H430"]],[26,27,["H834"]],[27,29,["H681"]],[29,31,["H3957"]],[31,34,["H8269"]],[34,35,["H834"]],[35,37,["H4480","H4605"]],[37,39,["H3957"]],[39,41,["H4641"]],[41,43,["H1121"]],[43,45,["H7967"]],[45,47,["H8104"]],[47,50,["H5592"]]]},{"k":19828,"v":[[0,3,["H5414"]],[3,4,["H6440"]],[4,6,["H1121"]],[6,9,["H1004"]],[9,12,["H7397"]],[12,13,["H1375"]],[13,14,["H4392"]],[14,16,["H3196"]],[16,18,["H3563"]],[18,21,["H559"]],[21,22,["H413"]],[22,24,["H8354"]],[24,26,["H3196"]]]},{"k":19829,"v":[[0,3,["H559"]],[3,6,["H8354"]],[6,7,["H3808"]],[7,8,["H3196"]],[8,9,["H3588"]],[9,10,["H3122"]],[10,12,["H1121"]],[12,14,["H7394"]],[14,16,["H1"]],[16,17,["H6680","H5921"]],[17,19,["H559"]],[19,22,["H8354"]],[22,23,["H3808"]],[23,24,["H3196"]],[24,26,["H859"]],[26,29,["H1121"]],[29,31,["H5704","H5769"]]]},{"k":19830,"v":[[0,1,["H3808"]],[1,4,["H1129"]],[4,5,["H1004"]],[5,6,["H3808"]],[6,7,["H2232"]],[7,8,["H2233"]],[8,9,["H3808"]],[9,10,["H5193"]],[10,11,["H3754"]],[11,12,["H3808"]],[12,13,["H1961"]],[13,15,["H3588"]],[15,16,["H3605"]],[16,18,["H3117"]],[18,21,["H3427"]],[21,23,["H168"]],[23,24,["H4616"]],[24,27,["H2421"]],[27,28,["H7227"]],[28,29,["H3117"]],[29,30,["H5921","H6440"]],[30,32,["H127"]],[32,33,["H834","H8033"]],[33,34,["H859"]],[34,36,["H1481"]]]},{"k":19831,"v":[[0,4,["H8085"]],[4,6,["H6963"]],[6,8,["H3082"]],[8,10,["H1121"]],[10,12,["H7394"]],[12,14,["H1"]],[14,16,["H3605"]],[16,17,["H834"]],[17,20,["H6680"]],[20,23,["H8354"]],[23,24,["H1115"]],[24,25,["H3196"]],[25,26,["H3605"]],[26,28,["H3117"]],[28,29,["H587"]],[29,31,["H802"]],[31,33,["H1121"]],[33,36,["H1323"]]]},{"k":19832,"v":[[0,1,["H1115"]],[1,3,["H1129"]],[3,4,["H1004"]],[4,8,["H3427"]],[8,10,["H3808"]],[10,11,["H1961"]],[11,13,["H3754"]],[13,15,["H7704"]],[15,17,["H2233"]]]},{"k":19833,"v":[[0,4,["H3427"]],[4,6,["H168"]],[6,9,["H8085"]],[9,11,["H6213"]],[11,14,["H3605"]],[14,15,["H834"]],[15,16,["H3122"]],[16,18,["H1"]],[18,19,["H6680"]],[19,20,[]]]},{"k":19834,"v":[[0,5,["H1961"]],[5,7,["H5019"]],[7,8,["H4428"]],[8,10,["H894"]],[10,12,["H5927"]],[12,13,["H413"]],[13,15,["H776"]],[15,18,["H559"]],[18,19,["H935"]],[19,23,["H935"]],[23,25,["H3389"]],[25,27,["H4480","H6440"]],[27,30,["H2428"]],[30,33,["H3778"]],[33,36,["H4480","H6440"]],[36,39,["H2428"]],[39,42,["H758"]],[42,45,["H3427"]],[45,47,["H3389"]]]},{"k":19835,"v":[[0,2,["H1961"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H413"]],[8,9,["H3414"]],[9,10,["H559"]]]},{"k":19836,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,11,["H1980"]],[11,13,["H559"]],[13,15,["H376"]],[15,17,["H3063"]],[17,20,["H3427"]],[20,22,["H3389"]],[22,25,["H3808"]],[25,26,["H3947"]],[26,27,["H4148"]],[27,29,["H8085"]],[29,30,["H413"]],[30,32,["H1697"]],[32,33,["H5002"]],[33,35,["H3068"]]]},{"k":19837,"v":[[0,0,["(H853)"]],[0,2,["H1697"]],[2,4,["H3082"]],[4,6,["H1121"]],[6,8,["H7394"]],[8,9,["H834"]],[9,11,["H6680","(H853)"]],[11,13,["H1121"]],[13,14,["H1115"]],[14,16,["H8354"]],[16,17,["H3196"]],[17,19,["H6965"]],[19,21,["H5704"]],[21,22,["H2088"]],[22,23,["H3117"]],[23,25,["H8354"]],[25,26,["H3808"]],[26,27,["H3588"]],[27,28,["H8085","(H853)"]],[28,30,["H1"]],[30,31,["H4687"]],[31,33,["H595"]],[33,35,["H1696"]],[35,36,["H413"]],[36,39,["H7925"]],[39,41,["H1696"]],[41,44,["H8085"]],[44,45,["H3808"]],[45,46,["H413"]],[46,47,[]]]},{"k":19838,"v":[[0,3,["H7971"]],[3,5,["H413"]],[5,6,["(H853)"]],[6,7,["H3605"]],[7,9,["H5650"]],[9,11,["H5030"]],[11,14,["H7925"]],[14,16,["H7971"]],[16,18,["H559"]],[18,19,["H7725"]],[19,21,["H4994"]],[21,23,["H376"]],[23,26,["H7451"]],[26,27,["H4480","H1870"]],[27,29,["H3190"]],[29,31,["H4611"]],[31,33,["H1980"]],[33,34,["H408"]],[34,35,["H310"]],[35,36,["H312"]],[36,37,["H430"]],[37,39,["H5647"]],[39,44,["H3427"]],[44,45,["H413"]],[45,47,["H127"]],[47,48,["H834"]],[48,51,["H5414"]],[51,57,["H1"]],[57,61,["H3808"]],[61,62,["H5186","(H853)"]],[62,64,["H241"]],[64,65,["H3808"]],[65,66,["H8085"]],[66,67,["H413"]],[67,68,[]]]},{"k":19839,"v":[[0,1,["H3588"]],[1,3,["H1121"]],[3,5,["H3082"]],[5,7,["H1121"]],[7,9,["H7394"]],[9,11,["H6965","(H853)"]],[11,13,["H4687"]],[13,16,["H1"]],[16,17,["H834"]],[17,19,["H6680"]],[19,22,["H2088"]],[22,23,["H5971"]],[23,25,["H3808"]],[25,26,["H8085"]],[26,27,["H413"]],[27,28,[]]]},{"k":19840,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H430"]],[6,8,["H6635"]],[8,10,["H430"]],[10,12,["H3478"]],[12,13,["H2009"]],[13,16,["H935"]],[16,17,["H413"]],[17,18,["H3063"]],[18,20,["H413"]],[20,21,["H3605"]],[21,23,["H3427"]],[23,25,["H3389","(H853)"]],[25,26,["H3605"]],[26,28,["H7451"]],[28,29,["H834"]],[29,32,["H1696"]],[32,33,["H5921"]],[33,35,["H3282"]],[35,38,["H1696"]],[38,39,["H413"]],[39,44,["H3808"]],[44,45,["H8085"]],[45,49,["H7121"]],[49,55,["H3808"]],[55,56,["H6030"]]]},{"k":19841,"v":[[0,2,["H3414"]],[2,3,["H559"]],[3,6,["H1004"]],[6,9,["H7397"]],[9,10,["H3541"]],[10,11,["H559"]],[11,13,["H3068"]],[13,15,["H6635"]],[15,17,["H430"]],[17,19,["H3478"]],[19,20,["H3283","H834"]],[20,23,["H8085","H5921"]],[23,25,["H4687"]],[25,27,["H3082"]],[27,29,["H1"]],[29,31,["H8104","(H853)"]],[31,32,["H3605"]],[32,34,["H4687"]],[34,36,["H6213"]],[36,39,["H3605"]],[39,40,["H834"]],[40,43,["H6680"]],[43,44,[]]]},{"k":19842,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,12,["H3122"]],[12,14,["H1121"]],[14,16,["H7394"]],[16,18,["H3808"]],[18,19,["H3772"]],[19,21,["H376"]],[21,23,["H5975"]],[23,24,["H6440"]],[24,27,["H3605","H3117"]]]},{"k":19843,"v":[[0,5,["H1961"]],[5,8,["H7243"]],[8,9,["H8141"]],[9,11,["H3079"]],[11,13,["H1121"]],[13,15,["H2977"]],[15,16,["H4428"]],[16,18,["H3063"]],[18,20,["H2088"]],[20,21,["H1697"]],[21,22,["H1961"]],[22,23,["H413"]],[23,24,["H3414"]],[24,25,["H4480","H854"]],[25,27,["H3068"]],[27,28,["H559"]]]},{"k":19844,"v":[[0,1,["H3947"]],[1,4,["H4039"]],[4,7,["H5612"]],[7,9,["H3789"]],[9,10,["H413","(H853)"]],[10,11,["H3605"]],[11,13,["H1697"]],[13,14,["H834"]],[14,17,["H1696"]],[17,18,["H413"]],[18,20,["H5921"]],[20,21,["H3478"]],[21,23,["H5921"]],[23,24,["H3063"]],[24,26,["H5921"]],[26,27,["H3605"]],[27,29,["H1471"]],[29,32,["H4480","H3117"]],[32,34,["H1696"]],[34,35,["H413"]],[35,39,["H4480","H3117"]],[39,41,["H2977"]],[41,43,["H5704"]],[43,44,["H2088"]],[44,45,["H3117"]]]},{"k":19845,"v":[[0,4,["H194"]],[4,6,["H1004"]],[6,8,["H3063"]],[8,10,["H8085","(H853)"]],[10,11,["H3605"]],[11,13,["H7451"]],[13,14,["H834"]],[14,15,["H595"]],[15,16,["H2803"]],[16,18,["H6213"]],[18,21,["H4616"]],[21,24,["H7725"]],[24,26,["H376"]],[26,29,["H7451"]],[29,30,["H4480","H1870"]],[30,34,["H5545"]],[34,36,["H5771"]],[36,39,["H2403"]]]},{"k":19846,"v":[[0,2,["H3414"]],[2,3,["H7121","(H853)"]],[3,4,["H1263"]],[4,6,["H1121"]],[6,8,["H5374"]],[8,10,["H1263"]],[10,11,["H3789"]],[11,14,["H4480","H6310"]],[14,16,["H3414","(H853)"]],[16,17,["H3605"]],[17,19,["H1697"]],[19,22,["H3068"]],[22,23,["H834"]],[23,26,["H1696"]],[26,27,["H413"]],[27,29,["H5921"]],[29,31,["H4039"]],[31,34,["H5612"]]]},{"k":19847,"v":[[0,2,["H3414"]],[2,3,["H6680","(H853)"]],[3,4,["H1263"]],[4,5,["H559"]],[5,6,["H589"]],[6,9,["H6113"]],[9,11,["H3201","H3808"]],[11,12,["H935"]],[12,15,["H1004"]],[15,18,["H3068"]]]},{"k":19848,"v":[[0,2,["H935"]],[2,3,["H859"]],[3,5,["H7121"]],[5,8,["H4039"]],[8,9,["H834"]],[9,12,["H3789"]],[12,15,["H4480","H6310","(H853)"]],[15,17,["H1697"]],[17,20,["H3068"]],[20,23,["H241"]],[23,26,["H5971"]],[26,29,["H3068"]],[29,30,["H1004"]],[30,33,["H6685"]],[33,34,["H3117"]],[34,36,["H1571"]],[36,39,["H7121"]],[39,43,["H241"]],[43,45,["H3605"]],[45,46,["H3063"]],[46,48,["H935"]],[48,52,["H4480","H5892"]]]},{"k":19849,"v":[[0,3,["H194"]],[3,6,["H5307"]],[6,8,["H8467"]],[8,9,["H6440"]],[9,11,["H3068"]],[11,14,["H7725"]],[14,16,["H376"]],[16,19,["H7451"]],[19,20,["H4480","H1870"]],[20,21,["H3588"]],[21,22,["H1419"]],[22,25,["H639"]],[25,28,["H2534"]],[28,29,["H834"]],[29,31,["H3068"]],[31,33,["H1696"]],[33,34,["H413"]],[34,35,["H2088"]],[35,36,["H5971"]]]},{"k":19850,"v":[[0,2,["H1263"]],[2,4,["H1121"]],[4,6,["H5374"]],[6,7,["H6213"]],[7,10,["H3605"]],[10,11,["H834"]],[11,12,["H3414"]],[12,14,["H5030"]],[14,15,["H6680"]],[15,17,["H7121"]],[17,20,["H5612"]],[20,22,["H1697"]],[22,25,["H3068"]],[25,28,["H3068"]],[28,29,["H1004"]]]},{"k":19851,"v":[[0,5,["H1961"]],[5,8,["H2549"]],[8,9,["H8141"]],[9,11,["H3079"]],[11,13,["H1121"]],[13,15,["H2977"]],[15,16,["H4428"]],[16,18,["H3063"]],[18,21,["H8671"]],[21,22,["H2320"]],[22,25,["H7121"]],[25,27,["H6685"]],[27,28,["H6440"]],[28,30,["H3068"]],[30,32,["H3605"]],[32,34,["H5971"]],[34,36,["H3389"]],[36,39,["H3605"]],[39,41,["H5971"]],[41,43,["H935"]],[43,46,["H4480","H5892"]],[46,48,["H3063"]],[48,50,["H3389"]]]},{"k":19852,"v":[[0,2,["H7121"]],[2,3,["H1263"]],[3,6,["H5612","(H853)"]],[6,8,["H1697"]],[8,10,["H3414"]],[10,13,["H1004"]],[13,16,["H3068"]],[16,19,["H3957"]],[19,21,["H1587"]],[21,23,["H1121"]],[23,25,["H8227"]],[25,27,["H5608"]],[27,30,["H5945"]],[30,31,["H2691"]],[31,34,["H6607"]],[34,37,["H2319"]],[37,38,["H8179"]],[38,41,["H3068"]],[41,42,["H1004"]],[42,45,["H241"]],[45,47,["H3605"]],[47,49,["H5971"]]]},{"k":19853,"v":[[0,2,["H4321"]],[2,4,["H1121"]],[4,6,["H1587"]],[6,8,["H1121"]],[8,10,["H8227"]],[10,12,["H8085"]],[12,14,["H4480","H5921"]],[14,16,["H5612","(H853)"]],[16,17,["H3605"]],[17,19,["H1697"]],[19,22,["H3068"]]]},{"k":19854,"v":[[0,4,["H3381"]],[4,5,["H5921"]],[5,7,["H4428"]],[7,8,["H1004"]],[8,9,["H5921"]],[9,11,["H5608"]],[11,12,["H3957"]],[12,14,["H2009"]],[14,15,["H3605"]],[15,17,["H8269"]],[17,18,["H3427"]],[18,19,["H8033"]],[19,21,["H476"]],[21,23,["H5608"]],[23,25,["H1806"]],[25,27,["H1121"]],[27,29,["H8098"]],[29,31,["H494"]],[31,33,["H1121"]],[33,35,["H5907"]],[35,37,["H1587"]],[37,39,["H1121"]],[39,41,["H8227"]],[41,43,["H6667"]],[43,45,["H1121"]],[45,47,["H2608"]],[47,49,["H3605"]],[49,51,["H8269"]]]},{"k":19855,"v":[[0,2,["H4321"]],[2,3,["H5046"]],[3,5,["(H853)"]],[5,6,["H3605"]],[6,8,["H1697"]],[8,9,["H834"]],[9,12,["H8085"]],[12,14,["H1263"]],[14,15,["H7121"]],[15,17,["H5612"]],[17,20,["H241"]],[20,23,["H5971"]]]},{"k":19856,"v":[[0,2,["H3605"]],[2,4,["H8269"]],[4,5,["H7971","(H853)"]],[5,6,["H3065"]],[6,8,["H1121"]],[8,10,["H5418"]],[10,12,["H1121"]],[12,14,["H8018"]],[14,16,["H1121"]],[16,18,["H3570"]],[18,19,["H413"]],[19,20,["H1263"]],[20,21,["H559"]],[21,22,["H3947"]],[22,25,["H3027"]],[25,27,["H4039"]],[27,28,["H834"]],[28,31,["H7121"]],[31,34,["H241"]],[34,37,["H5971"]],[37,39,["H1980"]],[39,41,["H1263"]],[41,43,["H1121"]],[43,45,["H5374"]],[45,46,["H3947","(H853)"]],[46,48,["H4039"]],[48,51,["H3027"]],[51,53,["H935"]],[53,54,["H413"]],[54,55,[]]]},{"k":19857,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H3427"]],[7,8,["H4994"]],[8,10,["H7121"]],[10,14,["H241"]],[14,16,["H1263"]],[16,17,["H7121"]],[17,21,["H241"]]]},{"k":19858,"v":[[0,5,["H1961"]],[5,9,["H8085","(H853)"]],[9,10,["H3605"]],[10,12,["H1697"]],[12,15,["H6342"]],[15,16,["H413"]],[16,17,["H376"]],[17,19,["H7453"]],[19,21,["H559"]],[21,22,["H413"]],[22,23,["H1263"]],[23,27,["H5046","H5046"]],[27,29,["H4428"]],[29,30,["(H853)"]],[30,31,["H3605"]],[31,32,["H428"]],[32,33,["H1697"]]]},{"k":19859,"v":[[0,3,["H7592"]],[3,4,["H1263"]],[4,5,["H559"]],[5,6,["H5046"]],[6,8,["H4994"]],[8,9,["H349"]],[9,12,["H3789","(H853)"]],[12,13,["H3605"]],[13,14,["H428"]],[14,15,["H1697"]],[15,18,["H4480","H6310"]]]},{"k":19860,"v":[[0,2,["H1263"]],[2,3,["H559"]],[3,6,["H7121","(H853)"]],[6,7,["H3605"]],[7,8,["H428"]],[8,9,["H1697"]],[9,10,["H413"]],[10,14,["H4480","H6310"]],[14,16,["H589"]],[16,17,["H3789"]],[17,20,["H1773"]],[20,21,["H5921"]],[21,23,["H5612"]]]},{"k":19861,"v":[[0,2,["H559"]],[2,4,["H8269"]],[4,5,["H413"]],[5,6,["H1263"]],[6,7,["H1980"]],[7,8,["H5641"]],[8,10,["H859"]],[10,12,["H3414"]],[12,15,["H408"]],[15,16,["H376"]],[16,17,["H3045"]],[17,18,["H375"]],[18,20,[]]]},{"k":19862,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H4428"]],[7,10,["H2691"]],[10,14,["H6485"]],[14,16,["H4039"]],[16,19,["H3957"]],[19,21,["H476"]],[21,23,["H5608"]],[23,25,["H5046","(H853)"]],[25,26,["H3605"]],[26,28,["H1697"]],[28,31,["H241"]],[31,34,["H4428"]]]},{"k":19863,"v":[[0,3,["H4428"]],[3,4,["H7971","(H853)"]],[4,5,["H3065"]],[5,7,["H3947","(H853)"]],[7,9,["H4039"]],[9,12,["H3947"]],[12,16,["H476"]],[16,18,["H5608"]],[18,19,["H4480","H3957"]],[19,21,["H3065"]],[21,22,["H7121"]],[22,26,["H241"]],[26,29,["H4428"]],[29,33,["H241"]],[33,35,["H3605"]],[35,37,["H8269"]],[37,39,["H5975"]],[39,40,["H4480","H5921"]],[40,42,["H4428"]]]},{"k":19864,"v":[[0,3,["H4428"]],[3,4,["H3427"]],[4,7,["H1004","H2779"]],[7,10,["H8671"]],[10,11,["H2320"]],[11,19,["H254"]],[19,20,["H1197"]],[20,21,["H6440"]],[21,22,[]]]},{"k":19865,"v":[[0,5,["H1961"]],[5,8,["H3065"]],[8,10,["H7121"]],[10,11,["H7969"]],[11,13,["H702"]],[13,14,["H1817"]],[14,16,["H7167"]],[16,20,["H8593","H5608"]],[20,22,["H7993"]],[22,24,["H413"]],[24,26,["H784"]],[26,27,["H834"]],[27,29,["H413"]],[29,31,["H254"]],[31,32,["H5704"]],[32,33,["H3605"]],[33,35,["H4039"]],[35,37,["H8552"]],[37,38,["H5921"]],[38,40,["H784"]],[40,41,["H834"]],[41,43,["H5921"]],[43,45,["H254"]]]},{"k":19866,"v":[[0,4,["H3808"]],[4,5,["H6342"]],[5,6,["H3808"]],[6,7,["H7167","(H853)"]],[7,9,["H899"]],[9,12,["H4428"]],[12,14,["H3605"]],[14,17,["H5650"]],[17,19,["H8085","(H853)"]],[19,20,["H3605"]],[20,21,["H428"]],[21,22,["H1697"]]]},{"k":19867,"v":[[0,1,["H1571"]],[1,2,["H494"]],[2,4,["H1806"]],[4,6,["H1587"]],[6,9,["H6293"]],[9,12,["H4428"]],[12,16,["H1115"]],[16,17,["H8313","(H853)"]],[17,19,["H4039"]],[19,23,["H3808"]],[23,24,["H8085","H413"]],[24,25,[]]]},{"k":19868,"v":[[0,3,["H4428"]],[3,4,["H6680","(H853)"]],[4,5,["H3396"]],[5,7,["H1121"]],[7,9,["H4429"]],[9,11,["H8304"]],[11,13,["H1121"]],[13,15,["H5837"]],[15,17,["H8018"]],[17,19,["H1121"]],[19,21,["H5655"]],[21,23,["H3947","(H853)"]],[23,24,["H1263"]],[24,26,["H5608"]],[26,28,["H3414"]],[28,30,["H5030"]],[30,33,["H3068"]],[33,34,["H5641"]],[34,35,[]]]},{"k":19869,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,11,["H310"]],[11,13,["H4428"]],[13,15,["H8313","(H853)"]],[15,17,["H4039"]],[17,20,["H1697"]],[20,21,["H834"]],[21,22,["H1263"]],[22,23,["H3789"]],[23,26,["H4480","H6310"]],[26,28,["H3414"]],[28,29,["H559"]]]},{"k":19870,"v":[[0,1,["H3947"]],[1,3,["H7725"]],[3,4,["H312"]],[4,5,["H4039"]],[5,7,["H3789"]],[7,8,["H5921"]],[8,9,["(H853)"]],[9,10,["H3605"]],[10,12,["H7223"]],[12,13,["H1697"]],[13,14,["H834"]],[14,15,["H1961"]],[15,16,["H5921"]],[16,18,["H7223"]],[18,19,["H4039"]],[19,20,["H834"]],[20,21,["H3079"]],[21,23,["H4428"]],[23,25,["H3063"]],[25,27,["H8313"]]]},{"k":19871,"v":[[0,4,["H559"]],[4,5,["H5921"]],[5,6,["H3079"]],[6,7,["H4428"]],[7,9,["H3063"]],[9,10,["H3541"]],[10,11,["H559"]],[11,13,["H3068"]],[13,14,["H859"]],[14,16,["H8313","(H853)"]],[16,17,["H2063"]],[17,18,["H4039"]],[18,19,["H559"]],[19,20,["H4069"]],[20,23,["H3789"]],[23,24,["H5921"]],[24,25,["H559"]],[25,27,["H4428"]],[27,29,["H894"]],[29,32,["H935","H935"]],[32,34,["H7843","(H853)"]],[34,35,["H2063"]],[35,36,["H776"]],[36,41,["H7673"]],[41,42,["H4480"]],[42,44,["H120"]],[44,46,["H929"]]]},{"k":19872,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H5921"]],[6,7,["H3079"]],[7,8,["H4428"]],[8,10,["H3063"]],[10,13,["H1961"]],[13,14,["H3808"]],[14,16,["H3427"]],[16,17,["H5921"]],[17,19,["H3678"]],[19,21,["H1732"]],[21,25,["H5038"]],[25,27,["H1961"]],[27,29,["H7993"]],[29,32,["H3117"]],[32,35,["H2721"]],[35,39,["H3915"]],[39,42,["H7140"]]]},{"k":19873,"v":[[0,4,["H6485","H5921"]],[4,8,["H2233"]],[8,11,["H5650"]],[11,12,["(H853)"]],[12,14,["H5771"]],[14,18,["H935"]],[18,19,["H5921"]],[19,22,["H5921"]],[22,24,["H3427"]],[24,26,["H3389"]],[26,28,["H413"]],[28,30,["H376"]],[30,32,["H3063","(H853)"]],[32,33,["H3605"]],[33,35,["H7451"]],[35,36,["H834"]],[36,39,["H1696"]],[39,40,["H413"]],[40,44,["H8085"]],[44,45,["H3808"]]]},{"k":19874,"v":[[0,2,["H3947"]],[2,3,["H3414"]],[3,4,["H312"]],[4,5,["H4039"]],[5,7,["H5414"]],[7,9,["H413"]],[9,10,["H1263"]],[10,12,["H5608"]],[12,14,["H1121"]],[14,16,["H5374"]],[16,18,["H3789"]],[18,19,["H5921"]],[19,22,["H4480","H6310"]],[22,24,["H3414","(H853)"]],[24,25,["H3605"]],[25,27,["H1697"]],[27,30,["H5612"]],[30,31,["H834"]],[31,32,["H3079"]],[32,33,["H4428"]],[33,35,["H3063"]],[35,37,["H8313"]],[37,40,["H784"]],[40,44,["H3254"]],[44,45,["H5750"]],[45,46,["H5921"]],[46,48,["H7227"]],[48,49,["H1992"]],[49,50,["H1697"]]]},{"k":19875,"v":[[0,2,["H4428"]],[2,3,["H6667"]],[3,5,["H1121"]],[5,7,["H2977"]],[7,8,["H4427"]],[8,9,["H8478"]],[9,11,["H3659"]],[11,13,["H1121"]],[13,15,["H3079"]],[15,16,["H834"]],[16,17,["H5019"]],[17,18,["H4428"]],[18,20,["H894"]],[20,22,["H4427"]],[22,25,["H776"]],[25,27,["H3063"]]]},{"k":19876,"v":[[0,2,["H3808"]],[2,3,["H1931"]],[3,6,["H5650"]],[6,9,["H5971"]],[9,12,["H776"]],[12,14,["H8085"]],[14,15,["H413"]],[15,17,["H1697"]],[17,20,["H3068"]],[20,21,["H834"]],[21,23,["H1696"]],[23,24,["H3027"]],[24,26,["H5030"]],[26,27,["H3414"]]]},{"k":19877,"v":[[0,2,["H6667"]],[2,4,["H4428"]],[4,5,["H7971","(H853)"]],[5,6,["H3081"]],[6,8,["H1121"]],[8,10,["H8018"]],[10,12,["H6846"]],[12,14,["H1121"]],[14,16,["H4641"]],[16,18,["H3548"]],[18,19,["H413"]],[19,21,["H5030"]],[21,22,["H3414"]],[22,23,["H559"]],[23,24,["H6419"]],[24,25,["H4994"]],[25,26,["H413"]],[26,28,["H3068"]],[28,30,["H430"]],[30,31,["H1157"]],[31,32,[]]]},{"k":19878,"v":[[0,2,["H3414"]],[2,4,["H935"]],[4,7,["H3318"]],[7,8,["H8432"]],[8,10,["H5971"]],[10,14,["H3808"]],[14,15,["H5414"]],[15,18,["H1004","H3628"]]]},{"k":19879,"v":[[0,2,["H6547"]],[2,3,["H2428"]],[3,6,["H3318"]],[6,9,["H4480","H4714"]],[9,13,["H3778"]],[13,15,["H6696","H5921"]],[15,16,["H3389"]],[16,17,["H8085","(H853)"]],[17,18,["H8088"]],[18,22,["H5927"]],[22,23,["H4480","H5921"]],[23,24,["H3389"]]]},{"k":19880,"v":[[0,2,["H1961"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H413"]],[8,10,["H5030"]],[10,11,["H3414"]],[11,12,["H559"]]]},{"k":19881,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H430"]],[6,8,["H3478"]],[8,9,["H3541"]],[9,12,["H559"]],[12,13,["H413"]],[13,15,["H4428"]],[15,17,["H3063"]],[17,19,["H7971"]],[19,21,["H413"]],[21,24,["H1875"]],[24,27,["H2009"]],[27,28,["H6547"]],[28,29,["H2428"]],[29,33,["H3318"]],[33,35,["H5833"]],[35,38,["H7725"]],[38,40,["H4714"]],[40,44,["H776"]]]},{"k":19882,"v":[[0,3,["H3778"]],[3,6,["H7725"]],[6,8,["H3898"]],[8,9,["H5921"]],[9,10,["H2063"]],[10,11,["H5892"]],[11,13,["H3920"]],[13,16,["H8313"]],[16,19,["H784"]]]},{"k":19883,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5377"]],[5,6,["H408"]],[6,7,["H5315"]],[7,8,["H559"]],[8,10,["H3778"]],[10,13,["H1980","H1980"]],[13,14,["H4480","H5921"]],[14,16,["H3588"]],[16,19,["H3808"]],[19,20,["H1980"]]]},{"k":19884,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,5,["H5221"]],[5,7,["H3605"]],[7,8,["H2428"]],[8,11,["H3778"]],[11,13,["H3898"]],[13,14,["H854"]],[14,18,["H7604"]],[18,20,["H1856"]],[20,21,["H376"]],[21,28,["H6965"]],[28,30,["H376"]],[30,33,["H168"]],[33,35,["H8313","(H853)"]],[35,36,["H2063"]],[36,37,["H5892"]],[37,39,["H784"]]]},{"k":19885,"v":[[0,5,["H1961"]],[5,9,["H2428"]],[9,12,["H3778"]],[12,15,["H5927"]],[15,16,["H4480","H5921"]],[16,17,["H3389"]],[17,19,["H4480","H6440"]],[19,21,["H6547"]],[21,22,["H2428"]]]},{"k":19886,"v":[[0,2,["H3414"]],[2,4,["H3318"]],[4,7,["H4480","H3389"]],[7,9,["H1980"]],[9,12,["H776"]],[12,14,["H1144"]],[14,17,["H2505"]],[17,18,["H4480","H8033"]],[18,21,["H8432"]],[21,24,["H5971"]]]},{"k":19887,"v":[[0,3,["H1931"]],[3,4,["H1961"]],[4,7,["H8179"]],[7,9,["H1144"]],[9,11,["H1167"]],[11,14,["H6488"]],[14,16,["H8033"]],[16,18,["H8034"]],[18,20,["H3376"]],[20,22,["H1121"]],[22,24,["H8018"]],[24,26,["H1121"]],[26,28,["H2608"]],[28,31,["H8610","(H853)"]],[31,32,["H3414"]],[32,34,["H5030"]],[34,35,["H559"]],[35,36,["H859"]],[36,38,["H5307"]],[38,39,["H413"]],[39,41,["H3778"]]]},{"k":19888,"v":[[0,2,["H559"]],[2,3,["H3414"]],[3,6,["H8267"]],[6,8,["H5307"]],[8,9,["H369"]],[9,11,["H5921"]],[11,13,["H3778"]],[13,16,["H8085"]],[16,17,["H3808"]],[17,18,["H413"]],[18,21,["H3376"]],[21,22,["H8610"]],[22,23,["H3414"]],[23,25,["H935"]],[25,27,["H413"]],[27,29,["H8269"]]]},{"k":19889,"v":[[0,3,["H8269"]],[3,5,["H7107"]],[5,6,["H5921"]],[6,7,["H3414"]],[7,9,["H5221"]],[9,12,["H5414"]],[12,15,["H1004","H612"]],[15,18,["H1004"]],[18,20,["H3083"]],[20,22,["H5608"]],[22,23,["H3588"]],[23,26,["H6213"]],[26,29,["H1004","H3608"]]]},{"k":19890,"v":[[0,1,["H3588"]],[1,2,["H3414"]],[2,4,["H935"]],[4,5,["H413"]],[5,7,["H1004","H953"]],[7,9,["H413"]],[9,11,["H2588"]],[11,13,["H3414"]],[13,15,["H3427"]],[15,16,["H8033"]],[16,17,["H7227"]],[17,18,["H3117"]]]},{"k":19891,"v":[[0,2,["H6667"]],[2,4,["H4428"]],[4,5,["H7971"]],[5,7,["H3947"]],[7,12,["H4428"]],[12,13,["H7592"]],[13,15,["H5643"]],[15,18,["H1004"]],[18,20,["H559"]],[20,22,["H3426"]],[22,24,["H1697"]],[24,25,["H4480","H854"]],[25,27,["H3068"]],[27,29,["H3414"]],[29,30,["H559"]],[30,32,["H3426"]],[32,34,["H559"]],[34,39,["H5414"]],[39,42,["H3027"]],[42,45,["H4428"]],[45,47,["H894"]]]},{"k":19892,"v":[[0,2,["H3414"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H4428"]],[5,6,["H6667"]],[6,7,["H4100"]],[7,10,["H2398"]],[10,16,["H5650"]],[16,19,["H2088"]],[19,20,["H5971"]],[20,21,["H3588"]],[21,24,["H5414"]],[24,26,["H413"]],[26,27,["H1004","H3608"]]]},{"k":19893,"v":[[0,1,["H346"]],[1,5,["H5030"]],[5,6,["H834"]],[6,7,["H5012"]],[7,10,["H559"]],[10,12,["H4428"]],[12,14,["H894"]],[14,16,["H3808"]],[16,17,["H935"]],[17,18,["H5921"]],[18,21,["H5921"]],[21,22,["H2063"]],[22,23,["H776"]]]},{"k":19894,"v":[[0,2,["H8085"]],[2,3,["H6258"]],[3,6,["H4994"]],[6,9,["H113"]],[9,11,["H4428"]],[11,14,["H8467"]],[14,17,["H4994"]],[17,19,["H5307"]],[19,20,["H6440"]],[20,26,["H408"]],[26,28,["H7725"]],[28,31,["H1004"]],[31,33,["H3083"]],[33,35,["H5608"]],[35,36,["H3808"]],[36,38,["H4191"]],[38,39,["H8033"]]]},{"k":19895,"v":[[0,2,["H6667"]],[2,4,["H4428"]],[4,5,["H6680"]],[5,9,["H6485","(H853)"]],[9,10,["H3414"]],[10,13,["H2691"]],[13,16,["H4307"]],[16,21,["H5414"]],[21,23,["H3117"]],[23,25,["H3603"]],[25,27,["H3899"]],[27,31,["H644"]],[31,32,["H4480","H2351"]],[32,33,["H5704"]],[33,34,["H3605"]],[34,36,["H3899"]],[36,37,["H4480"]],[37,39,["H5892"]],[39,41,["H8552"]],[41,43,["H3414"]],[43,44,["H3427"]],[44,47,["H2691"]],[47,50,["H4307"]]]},{"k":19896,"v":[[0,2,["H8203"]],[2,4,["H1121"]],[4,6,["H4977"]],[6,8,["H1436"]],[8,10,["H1121"]],[10,12,["H6583"]],[12,14,["H3116"]],[14,16,["H1121"]],[16,18,["H8018"]],[18,20,["H6583"]],[20,22,["H1121"]],[22,24,["H4441"]],[24,25,["H8085","(H853)"]],[25,27,["H1697"]],[27,28,["H834"]],[28,29,["H3414"]],[29,31,["H1696"]],[31,32,["H413"]],[32,33,["H3605"]],[33,35,["H5971"]],[35,36,["H559"]]]},{"k":19897,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,7,["H3427"]],[7,9,["H2063"]],[9,10,["H5892"]],[10,12,["H4191"]],[12,15,["H2719"]],[15,18,["H7458"]],[18,22,["H1698"]],[22,27,["H3318"]],[27,28,["H413"]],[28,30,["H3778"]],[30,32,["H2421"]],[32,36,["H1961"]],[36,38,["H5315"]],[38,41,["H7998"]],[41,44,["H2425"]]]},{"k":19898,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H2063"]],[5,6,["H5892"]],[6,10,["H5414","H5414"]],[10,13,["H3027"]],[13,16,["H4428"]],[16,18,["H894"]],[18,19,["H2428"]],[19,22,["H3920"]],[22,23,[]]]},{"k":19899,"v":[[0,3,["H8269"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H4428"]],[7,10,["H4994"]],[10,11,["(H853)"]],[11,12,["H2088"]],[12,13,["H376"]],[13,17,["H4191"]],[17,18,["H3588"]],[18,19,["H5921","H3651"]],[19,20,["H1931"]],[20,21,["H7503","(H853)"]],[21,23,["H3027"]],[23,26,["H376"]],[26,28,["H4421"]],[28,30,["H7604"]],[30,32,["H2063"]],[32,33,["H5892"]],[33,36,["H3027"]],[36,38,["H3605"]],[38,40,["H5971"]],[40,42,["H1696"]],[42,43,["H428"]],[43,44,["H1697"]],[44,45,["H413"]],[45,47,["H3588"]],[47,48,["H2088"]],[48,49,["H376"]],[49,50,["H1875"]],[50,51,["H369"]],[51,53,["H7965"]],[53,55,["H2088"]],[55,56,["H5971"]],[56,57,["H3588","H518"]],[57,59,["H7451"]]]},{"k":19900,"v":[[0,2,["H6667"]],[2,4,["H4428"]],[4,5,["H559"]],[5,6,["H2009"]],[6,7,["H1931"]],[7,11,["H3027"]],[11,12,["H3588"]],[12,14,["H4428"]],[14,16,["H369"]],[16,20,["H3201"]],[20,22,["H1697"]],[22,24,[]]]},{"k":19901,"v":[[0,2,["H3947"]],[2,3,["(H853)"]],[3,4,["H3414"]],[4,6,["H7993"]],[6,8,["H413"]],[8,10,["H953"]],[10,12,["H4441"]],[12,14,["H1121"]],[14,16,["H4429"]],[16,17,["H834"]],[17,21,["H2691"]],[21,24,["H4307"]],[24,28,["H7971","(H853)"]],[28,29,["H3414"]],[29,31,["H2256"]],[31,35,["H953"]],[35,38,["H369"]],[38,39,["H4325"]],[39,40,["H3588","H518"]],[40,41,["H2916"]],[41,43,["H3414"]],[43,44,["H2883"]],[44,47,["H2916"]]]},{"k":19902,"v":[[0,3,["H5663"]],[3,5,["H3569"]],[5,6,["H376"]],[6,9,["H5631"]],[9,10,["H1931"]],[10,14,["H4428"]],[14,15,["H1004"]],[15,16,["H8085"]],[16,17,["H3588"]],[17,20,["H5414","(H853)"]],[20,21,["H3414"]],[21,22,["H413"]],[22,24,["H953"]],[24,26,["H4428"]],[26,28,["H3427"]],[28,31,["H8179"]],[31,33,["H1144"]]]},{"k":19903,"v":[[0,1,["H5663"]],[1,3,["H3318"]],[3,7,["H4428"]],[7,8,["H4480","H1004"]],[8,10,["H1696"]],[10,11,["H413"]],[11,13,["H4428"]],[13,14,["H559"]]]},{"k":19904,"v":[[0,2,["H113"]],[2,4,["H4428"]],[4,5,["H428"]],[5,6,["H376"]],[6,9,["H7489"]],[9,10,["(H853)"]],[10,11,["H3605"]],[11,12,["H834"]],[12,15,["H6213"]],[15,17,["H3414"]],[17,19,["H5030","(H853)"]],[19,20,["H834"]],[20,23,["H7993"]],[23,24,["H413"]],[24,26,["H953"]],[26,32,["H4191"]],[32,33,["H4480","H6440"]],[33,34,["H7458"]],[34,38,["H8478"]],[38,41,["H3588"]],[41,44,["H369"]],[44,45,["H5750"]],[45,46,["H3899"]],[46,49,["H5892"]]]},{"k":19905,"v":[[0,3,["H4428"]],[3,4,["H6680","(H853)"]],[4,5,["H5663"]],[5,7,["H3569"]],[7,8,["H559"]],[8,9,["H3947"]],[9,11,["H4480","H2088"]],[11,12,["H7970"]],[12,13,["H376"]],[13,14,["H3027"]],[14,18,["H5927","(H853)"]],[18,19,["H3414"]],[19,21,["H5030"]],[21,23,["H4480"]],[23,25,["H953"]],[25,26,["H2962"]],[26,28,["H4191"]]]},{"k":19906,"v":[[0,2,["H5663"]],[2,3,["H3947","(H853)"]],[3,5,["H376"]],[5,6,["H3027"]],[6,10,["H935"]],[10,12,["H1004"]],[12,15,["H4428"]],[15,16,["H413","H8478"]],[16,18,["H214"]],[18,20,["H3947"]],[20,21,["H4480","H8033"]],[21,22,["H1094"]],[22,24,["H5499"]],[24,26,["H1094"]],[26,28,["H4418"]],[28,32,["H7971"]],[32,34,["H2256"]],[34,35,["H413"]],[35,37,["H953"]],[37,38,["H413"]],[38,39,["H3414"]]]},{"k":19907,"v":[[0,2,["H5663"]],[2,4,["H3569"]],[4,5,["H559"]],[5,6,["H413"]],[6,7,["H3414"]],[7,8,["H7760"]],[8,9,["H4994"]],[9,11,["H1094"]],[11,13,["H5499"]],[13,16,["H4418"]],[16,17,["H8478"]],[17,19,["H679","H3027"]],[19,20,["H4480","H8478"]],[20,22,["H2256"]],[22,24,["H3414"]],[24,25,["H6213"]],[25,26,["H3651"]]]},{"k":19908,"v":[[0,4,["H4900","(H853)"]],[4,5,["H3414"]],[5,7,["H2256"]],[7,11,["H5927","(H853)"]],[11,13,["H4480"]],[13,15,["H953"]],[15,17,["H3414"]],[17,18,["H3427"]],[18,21,["H2691"]],[21,24,["H4307"]]]},{"k":19909,"v":[[0,2,["H6667"]],[2,4,["H4428"]],[4,5,["H7971"]],[5,7,["H3947","(H853)"]],[7,8,["H3414"]],[8,10,["H5030"]],[10,11,["H413"]],[11,13,["H413"]],[13,15,["H7992"]],[15,16,["H3996"]],[16,17,["H834"]],[17,21,["H1004"]],[21,24,["H3068"]],[24,27,["H4428"]],[27,28,["H559"]],[28,29,["H413"]],[29,30,["H3414"]],[30,31,["H589"]],[31,33,["H7592"]],[33,36,["H1697"]],[36,37,["H3582"]],[37,38,["H408","H1697"]],[38,39,["H4480"]],[39,40,[]]]},{"k":19910,"v":[[0,2,["H3414"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H6667"]],[5,6,["H3588"]],[6,8,["H5046"]],[8,14,["H3808"]],[14,19,["H4191","H4191"]],[19,21,["H3588"]],[21,25,["H3289"]],[25,28,["H3808"]],[28,29,["H8085"]],[29,30,["H413"]],[30,31,[]]]},{"k":19911,"v":[[0,2,["H6667"]],[2,4,["H4428"]],[4,5,["H7650"]],[5,6,["H5643"]],[6,7,["H413"]],[7,8,["H3414"]],[8,9,["H559"]],[9,12,["H3068"]],[12,13,["H2416","(H853)"]],[13,14,["H834"]],[14,15,["H6213"]],[15,16,["(H853)"]],[16,17,["H2063"]],[17,18,["H5315"]],[18,21,["H518"]],[21,25,["H4191"]],[25,26,["H518"]],[26,29,["H5414"]],[29,33,["H3027"]],[33,35,["H428"]],[35,36,["H376"]],[36,37,["H834"]],[37,38,["H1245","(H853)"]],[38,40,["H5315"]]]},{"k":19912,"v":[[0,2,["H559"]],[2,3,["H3414"]],[3,4,["H413"]],[4,5,["H6667"]],[5,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,11,["H430"]],[11,13,["H6635"]],[13,15,["H430"]],[15,17,["H3478"]],[17,18,["H518"]],[18,23,["H3318","H3318"]],[23,24,["H413"]],[24,26,["H4428"]],[26,28,["H894"]],[28,29,["H8269"]],[29,32,["H5315"]],[32,34,["H2421"]],[34,36,["H2063"]],[36,37,["H5892"]],[37,39,["H3808"]],[39,41,["H8313"]],[41,43,["H784"]],[43,45,["H859"]],[45,47,["H2421"]],[47,50,["H1004"]]]},{"k":19913,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,7,["H3318"]],[7,8,["H413"]],[8,10,["H4428"]],[10,12,["H894"]],[12,13,["H8269"]],[13,16,["H2063"]],[16,17,["H5892"]],[17,19,["H5414"]],[19,22,["H3027"]],[22,25,["H3778"]],[25,29,["H8313"]],[29,32,["H784"]],[32,34,["H859"]],[34,36,["H3808"]],[36,37,["H4422"]],[37,41,["H4480","H3027"]]]},{"k":19914,"v":[[0,2,["H6667"]],[2,4,["H4428"]],[4,5,["H559"]],[5,6,["H413"]],[6,7,["H3414"]],[7,8,["H589"]],[8,11,["H1672","(H853)"]],[11,13,["H3064"]],[13,14,["H834"]],[14,16,["H5307"]],[16,17,["H413"]],[17,19,["H3778"]],[19,20,["H6435"]],[20,22,["H5414"]],[22,26,["H3027"]],[26,29,["H5953"]],[29,30,[]]]},{"k":19915,"v":[[0,2,["H3414"]],[2,3,["H559"]],[3,6,["H3808"]],[6,7,["H5414"]],[7,9,["H8085"]],[9,12,["H4994"]],[12,14,["H6963"]],[14,17,["H3068"]],[17,18,["H834"]],[18,19,["H589"]],[19,20,["H1696"]],[20,21,["H413"]],[21,27,["H3190"]],[27,32,["H5315"]],[32,34,["H2421"]]]},{"k":19916,"v":[[0,2,["H518"]],[2,3,["H859"]],[3,4,["H3986"]],[4,7,["H3318"]],[7,8,["H2088"]],[8,11,["H1697"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H7200"]],[16,17,[]]]},{"k":19917,"v":[[0,2,["H2009"]],[2,3,["H3605"]],[3,5,["H802"]],[5,6,["H834"]],[6,8,["H7604"]],[8,11,["H4428"]],[11,13,["H3063"]],[13,14,["H1004"]],[14,18,["H3318"]],[18,19,["H413"]],[19,21,["H4428"]],[21,23,["H894"]],[23,24,["H8269"]],[24,26,["H2007"]],[26,29,["H559"]],[29,31,["H376","H7965"]],[31,33,["H5496"]],[33,38,["H3201"]],[38,42,["H7272"]],[42,44,["H2883"]],[44,47,["H1206"]],[47,52,["H5472"]],[52,53,["H268"]]]},{"k":19918,"v":[[0,5,["H3318"]],[5,6,["H3605"]],[6,8,["H802"]],[8,11,["H1121"]],[11,12,["H413"]],[12,14,["H3778"]],[14,16,["H859"]],[16,18,["H3808"]],[18,19,["H4422"]],[19,23,["H4480","H3027"]],[23,24,["H3588"]],[24,27,["H8610"]],[27,30,["H3027"]],[30,33,["H4428"]],[33,35,["H894"]],[35,40,["H2063"]],[40,41,["H5892"]],[41,44,["H8313"]],[44,46,["H784"]]]},{"k":19919,"v":[[0,2,["H559"]],[2,3,["H6667"]],[3,4,["H413"]],[4,5,["H3414"]],[5,7,["H408"]],[7,8,["H376"]],[8,9,["H3045"]],[9,11,["H428"]],[11,12,["H1697"]],[12,16,["H3808"]],[16,17,["H4191"]]]},{"k":19920,"v":[[0,2,["H3588"]],[2,4,["H8269"]],[4,5,["H8085"]],[5,6,["H3588"]],[6,9,["H1696"]],[9,10,["H854"]],[10,14,["H935"]],[14,15,["H413"]],[15,18,["H559"]],[18,19,["H413"]],[19,21,["H5046"]],[21,24,["H4994"]],[24,25,["H4100"]],[25,28,["H1696"]],[28,29,["H413"]],[29,31,["H4428"]],[31,32,["H3582"]],[32,34,["H408"]],[34,35,["H4480"]],[35,40,["H3808"]],[40,44,["H4191"]],[44,46,["H4100"]],[46,48,["H4428"]],[48,49,["H1696"]],[49,50,["H413"]],[50,51,[]]]},{"k":19921,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H589"]],[7,8,["H5307"]],[8,10,["H8467"]],[10,11,["H6440"]],[11,13,["H4428"]],[13,17,["H1115"]],[17,21,["H7725"]],[21,23,["H3129"]],[23,24,["H1004"]],[24,26,["H4191"]],[26,27,["H8033"]]]},{"k":19922,"v":[[0,2,["H935"]],[2,3,["H3605"]],[3,5,["H8269"]],[5,6,["H413"]],[6,7,["H3414"]],[7,9,["H7592"]],[9,13,["H5046"]],[13,17,["H3605"]],[17,18,["H428"]],[18,19,["H1697"]],[19,20,["H834"]],[20,22,["H4428"]],[22,24,["H6680"]],[24,29,["H2790"]],[29,30,["H4480"]],[30,32,["H3588"]],[32,34,["H1697"]],[34,36,["H3808"]],[36,37,["H8085"]]]},{"k":19923,"v":[[0,2,["H3414"]],[2,3,["H3427"]],[3,6,["H2691"]],[6,9,["H4307"]],[9,10,["H5704"]],[10,12,["H3117"]],[12,13,["H834"]],[13,14,["H3389"]],[14,16,["H3920"]],[16,19,["H1961"]],[19,21,["H834"]],[21,22,["H3389"]],[22,24,["H3920"]]]},{"k":19924,"v":[[0,3,["H8671"]],[3,4,["H8141"]],[4,6,["H6667"]],[6,7,["H4428"]],[7,9,["H3063"]],[9,12,["H6224"]],[12,13,["H2320"]],[13,14,["H935"]],[14,15,["H5019"]],[15,16,["H4428"]],[16,18,["H894"]],[18,20,["H3605"]],[20,22,["H2428"]],[22,23,["H413"]],[23,24,["H3389"]],[24,27,["H6696"]],[27,28,[]]]},{"k":19925,"v":[[0,4,["H6249","H6240"]],[4,5,["H8141"]],[5,7,["H6667"]],[7,10,["H7243"]],[10,11,["H2320"]],[11,13,["H8672"]],[13,17,["H2320"]],[17,19,["H5892"]],[19,22,["H1234"]]]},{"k":19926,"v":[[0,2,["H3605"]],[2,4,["H8269"]],[4,7,["H4428"]],[7,9,["H894"]],[9,11,["H935"]],[11,13,["H3427"]],[13,16,["H8432"]],[16,17,["H8179"]],[17,19,["H5371"]],[19,20,["H5562"]],[20,21,["H8310"]],[21,22,["H7249"]],[22,23,["H5371"]],[23,24,["H7248"]],[24,26,["H3605"]],[26,28,["H7611"]],[28,31,["H8269"]],[31,34,["H4428"]],[34,36,["H894"]]]},{"k":19927,"v":[[0,5,["H1961"]],[5,7,["H834"]],[7,8,["H6667"]],[8,10,["H4428"]],[10,12,["H3063"]],[12,13,["H7200"]],[13,16,["H3605"]],[16,18,["H376"]],[18,20,["H4421"]],[20,23,["H1272"]],[23,26,["H3318"]],[26,28,["H4480"]],[28,30,["H5892"]],[30,32,["H3915"]],[32,35,["H1870"]],[35,38,["H4428"]],[38,39,["H1588"]],[39,42,["H8179"]],[42,43,["H996"]],[43,46,["H2346"]],[46,50,["H3318"]],[50,52,["H1870"]],[52,55,["H6160"]]]},{"k":19928,"v":[[0,3,["H3778"]],[3,4,["H2428"]],[4,5,["H7291"]],[5,6,["H310"]],[6,9,["H5381","(H853)"]],[9,10,["H6667"]],[10,13,["H6160"]],[13,15,["H3405"]],[15,20,["H3947"]],[20,25,["H5927"]],[25,26,["H413"]],[26,27,["H5019"]],[27,28,["H4428"]],[28,30,["H894"]],[30,32,["H7247"]],[32,35,["H776"]],[35,37,["H2574"]],[37,40,["H1696"]],[40,41,["H4941"]],[41,42,["H854"]],[42,43,[]]]},{"k":19929,"v":[[0,3,["H4428"]],[3,5,["H894"]],[5,6,["H7819","(H853)"]],[6,8,["H1121"]],[8,10,["H6667"]],[10,12,["H7247"]],[12,15,["H5869"]],[15,18,["H4428"]],[18,20,["H894"]],[20,21,["H7819"]],[21,22,["H3605"]],[22,24,["H2715"]],[24,26,["H3063"]]]},{"k":19930,"v":[[0,4,["H5786"]],[4,5,["H6677"]],[5,6,["H5869"]],[6,8,["H631"]],[8,11,["H5178"]],[11,13,["H935"]],[13,16,["H894"]]]},{"k":19931,"v":[[0,3,["H3778"]],[3,4,["H8313"]],[4,6,["H4428"]],[6,7,["H1004"]],[7,10,["H1004"]],[10,13,["H5971"]],[13,15,["H784"]],[15,18,["H5422"]],[18,20,["H2346"]],[20,22,["H3389"]]]},{"k":19932,"v":[[0,1,["H227"]],[1,2,["H5018"]],[2,4,["H7227"]],[4,7,["H2876"]],[7,10,["H1540"]],[10,12,["H894"]],[12,14,["H3499"]],[14,17,["H5971"]],[17,19,["H7604"]],[19,22,["H5892"]],[22,27,["H5307"]],[27,28,["H834"]],[28,29,["H5307"]],[29,30,["H5921"]],[30,32,["(H853)"]],[32,34,["H3499"]],[34,37,["H5971"]],[37,39,["H7604"]]]},{"k":19933,"v":[[0,2,["H5018"]],[2,4,["H7227"]],[4,7,["H2876"]],[7,8,["H7604"]],[8,11,["H1800"]],[11,12,["H4480"]],[12,14,["H5971"]],[14,15,["H834"]],[15,17,["H369","H3972"]],[17,20,["H776"]],[20,22,["H3063"]],[22,24,["H5414"]],[24,26,["H3754"]],[26,28,["H3010"]],[28,31,["H1931"]],[31,32,["H3117"]]]},{"k":19934,"v":[[0,2,["H5019"]],[2,3,["H4428"]],[3,5,["H894"]],[5,7,["H6680"]],[7,8,["H5921"]],[8,9,["H3414"]],[9,10,["H3027"]],[10,11,["H5018"]],[11,13,["H7227"]],[13,16,["H2876"]],[16,17,["H559"]]]},{"k":19935,"v":[[0,1,["H3947"]],[1,5,["H5869","H7760"]],[5,6,["H5921"]],[6,9,["H6213"]],[9,11,["H408","H3972"]],[11,12,["H7451"]],[12,13,["H3588","H518"]],[13,14,["H6213"]],[14,15,["H5973"]],[15,17,["H3651"]],[17,18,["H834"]],[18,21,["H1696"]],[21,22,["H413"]],[22,23,[]]]},{"k":19936,"v":[[0,2,["H5018"]],[2,4,["H7227"]],[4,7,["H2876"]],[7,8,["H7971"]],[8,10,["H5021"]],[10,11,["H7249"]],[11,13,["H5371"]],[13,14,["H7248"]],[14,16,["H3605"]],[16,18,["H4428"]],[18,20,["H894"]],[20,21,["H7227"]]]},{"k":19937,"v":[[0,3,["H7971"]],[3,5,["H3947","(H853)"]],[5,6,["H3414"]],[6,10,["H4480","H2691"]],[10,13,["H4307"]],[13,15,["H5414"]],[15,17,["H413"]],[17,18,["H1436"]],[18,20,["H1121"]],[20,22,["H296"]],[22,24,["H1121"]],[24,26,["H8227"]],[26,30,["H3318"]],[30,32,["H1004"]],[32,35,["H3427"]],[35,36,["H8432"]],[36,38,["H5971"]]]},{"k":19938,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,12,["H1961"]],[12,14,["H6113"]],[14,17,["H2691"]],[17,20,["H4307"]],[20,21,["H559"]]]},{"k":19939,"v":[[0,1,["H1980"]],[1,3,["H559"]],[3,5,["H5663"]],[5,7,["H3569"]],[7,8,["H559"]],[8,9,["H3541"]],[9,10,["H559"]],[10,12,["H3068"]],[12,14,["H6635"]],[14,16,["H430"]],[16,18,["H3478"]],[18,19,["H2009"]],[19,22,["H935","(H853)"]],[22,24,["H1697"]],[24,25,["H413"]],[25,26,["H2063"]],[26,27,["H5892"]],[27,29,["H7451"]],[29,31,["H3808"]],[31,33,["H2896"]],[33,37,["H1961"]],[37,40,["H1931"]],[40,41,["H3117"]],[41,42,["H6440"]],[42,43,[]]]},{"k":19940,"v":[[0,4,["H5337"]],[4,7,["H1931"]],[7,8,["H3117"]],[8,9,["H5002"]],[9,11,["H3068"]],[11,15,["H3808"]],[15,17,["H5414"]],[17,20,["H3027"]],[20,23,["H376"]],[23,25,["H834"]],[25,26,["H859"]],[26,28,["H3016","H4480","H6440"]]]},{"k":19941,"v":[[0,1,["H3588"]],[1,5,["H4422","H4422"]],[5,10,["H3808"]],[10,11,["H5307"]],[11,14,["H2719"]],[14,17,["H5315"]],[17,19,["H1961"]],[19,22,["H7998"]],[22,25,["H3588"]],[25,30,["H982"]],[30,33,["H5002"]],[33,35,["H3068"]]]},{"k":19942,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H413"]],[5,6,["H3414"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,11,["H310"]],[11,12,["H5018"]],[12,14,["H7227"]],[14,17,["H2876"]],[17,21,["H7971"]],[21,22,["H4480"]],[22,23,["H7414"]],[23,27,["H3947"]],[27,30,["H631"]],[30,32,["H246"]],[32,33,["H8432"]],[33,34,["H3605"]],[34,39,["H1546"]],[39,41,["H3389"]],[41,43,["H3063"]],[43,48,["H1540"]],[48,50,["H894"]]]},{"k":19943,"v":[[0,3,["H7227"]],[3,6,["H2876"]],[6,7,["H3947"]],[7,8,["H3414"]],[8,10,["H559"]],[10,11,["H413"]],[11,14,["H3068"]],[14,16,["H430"]],[16,18,["H1696","(H853)"]],[18,19,["H2063"]],[19,20,["H7451"]],[20,21,["H413"]],[21,22,["H2088"]],[22,23,["H4725"]]]},{"k":19944,"v":[[0,3,["H3068"]],[3,5,["H935"]],[5,8,["H6213"]],[8,10,["H834"]],[10,13,["H1696"]],[13,14,["H3588"]],[14,17,["H2398"]],[17,20,["H3068"]],[20,23,["H3808"]],[23,24,["H8085"]],[24,26,["H6963"]],[26,28,["H2088"]],[28,29,["H1697"]],[29,31,["H1961"]],[31,33,[]]]},{"k":19945,"v":[[0,2,["H6258"]],[2,3,["H2009"]],[3,5,["H6605"]],[5,8,["H3117"]],[8,9,["H4480"]],[9,11,["H246"]],[11,12,["H834"]],[12,14,["H5921"]],[14,16,["H3027"]],[16,17,["H518"]],[17,22,["H2896","H5869"]],[22,24,["H935"]],[24,25,["H854"]],[25,28,["H894"]],[28,29,["H935"]],[29,34,["H7760","(H853)","H5869"]],[34,35,["H5921"]],[35,38,["H518"]],[38,43,["H7489","H5869"]],[43,45,["H935"]],[45,46,["H854"]],[46,49,["H894"]],[49,50,["H2308"]],[50,51,["H7200"]],[51,52,["H3605"]],[52,54,["H776"]],[54,56,["H6440"]],[56,58,["H413"]],[58,60,["H5869"]],[60,61,["H2896"]],[61,63,["H3477"]],[63,67,["H1980"]],[67,68,["H8033"]],[68,69,["H1980"]]]},{"k":19946,"v":[[0,5,["H3808"]],[5,6,["H5750"]],[6,8,["H7725"]],[8,12,["H7725"]],[12,14,["H413"]],[14,15,["H1436"]],[15,17,["H1121"]],[17,19,["H296"]],[19,21,["H1121"]],[21,23,["H8227"]],[23,24,["H834"]],[24,26,["H4428"]],[26,28,["H894"]],[28,31,["H6485"]],[31,34,["H5892"]],[34,36,["H3063"]],[36,38,["H3427"]],[38,39,["H854"]],[39,41,["H8432"]],[41,43,["H5971"]],[43,44,["H176"]],[44,45,["H1980"]],[45,46,["H413","H3605"]],[46,48,["H5869"]],[48,49,["H3477"]],[49,53,["H1980"]],[53,56,["H7227"]],[56,59,["H2876"]],[59,60,["H5414"]],[60,62,["H737"]],[62,65,["H4864"]],[65,69,["H7971"]]]},{"k":19947,"v":[[0,2,["H935"]],[2,3,["H3414"]],[3,4,["H413"]],[4,5,["H1436"]],[5,7,["H1121"]],[7,9,["H296"]],[9,11,["H4708"]],[11,13,["H3427"]],[13,14,["H854"]],[14,16,["H8432"]],[16,18,["H5971"]],[18,21,["H7604"]],[21,24,["H776"]]]},{"k":19948,"v":[[0,3,["H3605"]],[3,5,["H8269"]],[5,8,["H2428"]],[8,9,["H834"]],[9,13,["H7704"]],[13,15,["H1992"]],[15,18,["H376"]],[18,19,["H8085"]],[19,20,["H3588"]],[20,22,["H4428"]],[22,24,["H894"]],[24,26,["(H853)"]],[26,27,["H1436"]],[27,29,["H1121"]],[29,31,["H296"]],[31,32,["H6485"]],[32,35,["H776"]],[35,36,["H3588"]],[36,38,["H6485"]],[38,39,["H854"]],[39,41,["H376"]],[41,43,["H802"]],[43,45,["H2945"]],[45,49,["H4480","H1803"]],[49,52,["H776"]],[52,55,["H4480","H834"]],[55,57,["H3808"]],[57,60,["H1540"]],[60,62,["H894"]]]},{"k":19949,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,5,["H1436"]],[5,7,["H4708"]],[7,9,["H3458"]],[9,11,["H1121"]],[11,13,["H5418"]],[13,15,["H3110"]],[15,17,["H3129"]],[17,19,["H1121"]],[19,21,["H7143"]],[21,23,["H8304"]],[23,25,["H1121"]],[25,27,["H8576"]],[27,30,["H1121"]],[30,32,["H5778"]],[32,34,["H5200"]],[34,36,["H3153"]],[36,38,["H1121"]],[38,41,["H4602"]],[41,42,["H1992"]],[42,45,["H376"]]]},{"k":19950,"v":[[0,2,["H1436"]],[2,4,["H1121"]],[4,6,["H296"]],[6,8,["H1121"]],[8,10,["H8227"]],[10,11,["H7650"]],[11,17,["H376"]],[17,18,["H559"]],[18,19,["H3372"]],[19,20,["H408"]],[20,22,["H4480","H5647"]],[22,24,["H3778"]],[24,25,["H3427"]],[25,28,["H776"]],[28,30,["H5647","(H853)"]],[30,32,["H4428"]],[32,34,["H894"]],[34,39,["H3190"]],[39,41,[]]]},{"k":19951,"v":[[0,3,["H589"]],[3,4,["H2009"]],[4,7,["H3427"]],[7,9,["H4709"]],[9,11,["H5975","H6440"]],[11,13,["H3778"]],[13,14,["H834"]],[14,16,["H935"]],[16,17,["H413"]],[17,20,["H859"]],[20,21,["H622"]],[21,23,["H3196"]],[23,26,["H7019"]],[26,28,["H8081"]],[28,30,["H7760"]],[30,34,["H3627"]],[34,36,["H3427"]],[36,39,["H5892"]],[39,40,["H834"]],[40,43,["H8610"]]]},{"k":19952,"v":[[0,1,["H1571"]],[1,3,["H3605"]],[3,5,["H3064"]],[5,6,["H834"]],[6,9,["H4124"]],[9,13,["H1121","H5983"]],[13,16,["H123"]],[16,18,["H834"]],[18,21,["H3605"]],[21,23,["H776"]],[23,24,["H8085"]],[24,25,["H3588"]],[25,27,["H4428"]],[27,29,["H894"]],[29,31,["H5414"]],[31,33,["H7611"]],[33,35,["H3063"]],[35,37,["H3588"]],[37,40,["H6485"]],[40,41,["H5921"]],[41,42,["(H853)"]],[42,43,["H1436"]],[43,45,["H1121"]],[45,47,["H296"]],[47,49,["H1121"]],[49,51,["H8227"]]]},{"k":19953,"v":[[0,2,["H3605"]],[2,4,["H3064"]],[4,5,["H7725"]],[5,8,["H4480","H3605"]],[8,9,["H4725"]],[9,10,["H834","H8033"]],[10,13,["H5080"]],[13,15,["H935"]],[15,18,["H776"]],[18,20,["H3063"]],[20,21,["H413"]],[21,22,["H1436"]],[22,24,["H4708"]],[24,26,["H622"]],[26,27,["H3196"]],[27,30,["H7019"]],[30,31,["H3966"]],[31,32,["H7335"]]]},{"k":19954,"v":[[0,2,["H3110"]],[2,4,["H1121"]],[4,6,["H7143"]],[6,8,["H3605"]],[8,10,["H8269"]],[10,13,["H2428"]],[13,14,["H834"]],[14,18,["H7704"]],[18,19,["H935"]],[19,20,["H413"]],[20,21,["H1436"]],[21,23,["H4708"]]]},{"k":19955,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,8,["H3045","H3045"]],[8,9,["H3588"]],[9,10,["H1185"]],[10,12,["H4428"]],[12,15,["H1121","H5983"]],[15,17,["H7971","(H853)"]],[17,18,["H3458"]],[18,20,["H1121"]],[20,22,["H5418"]],[22,24,["H5221","H5315"]],[24,27,["H1436"]],[27,29,["H1121"]],[29,31,["H296"]],[31,32,["H539"]],[32,34,["H3808"]]]},{"k":19956,"v":[[0,2,["H3110"]],[2,4,["H1121"]],[4,6,["H7143"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H1436"]],[9,11,["H4709"]],[11,12,["H5643"]],[12,13,["H559"]],[13,16,["H1980"]],[16,19,["H4994"]],[19,23,["H5221","(H853)"]],[23,24,["H3458"]],[24,26,["H1121"]],[26,28,["H5418"]],[28,30,["H3808"]],[30,31,["H376"]],[31,33,["H3045"]],[33,35,["H4100"]],[35,38,["H5221","H5315"]],[38,41,["H3605"]],[41,43,["H3063"]],[43,46,["H6908"]],[46,47,["H413"]],[47,51,["H6327"]],[51,54,["H7611"]],[54,56,["H3063"]],[56,57,["H6"]]]},{"k":19957,"v":[[0,2,["H1436"]],[2,4,["H1121"]],[4,6,["H296"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H3110"]],[9,11,["H1121"]],[11,13,["H7143"]],[13,16,["H408"]],[16,17,["H6213","(H853)"]],[17,18,["H2088"]],[18,19,["H1697"]],[19,20,["H3588"]],[20,21,["H859"]],[21,22,["H1696"]],[22,23,["H8267"]],[23,24,["H413"]],[24,25,["H3458"]]]},{"k":19958,"v":[[0,5,["H1961"]],[5,8,["H7637"]],[8,9,["H2320"]],[9,11,["H3458"]],[11,13,["H1121"]],[13,15,["H5418"]],[15,17,["H1121"]],[17,19,["H476"]],[19,22,["H4480","H2233"]],[22,23,["H4410"]],[23,26,["H7227"]],[26,29,["H4428"]],[29,31,["H6235"]],[31,32,["H376"]],[32,33,["H854"]],[33,35,["H935"]],[35,36,["H413"]],[36,37,["H1436"]],[37,39,["H1121"]],[39,41,["H296"]],[41,43,["H4708"]],[43,45,["H8033"]],[45,48,["H398"]],[48,49,["H3899"]],[49,50,["H3162"]],[50,52,["H4709"]]]},{"k":19959,"v":[[0,2,["H6965"]],[2,3,["H3458"]],[3,5,["H1121"]],[5,7,["H5418"]],[7,10,["H6235"]],[10,11,["H376"]],[11,12,["H834"]],[12,13,["H1961"]],[13,14,["H854"]],[14,17,["H5221","(H853)"]],[17,18,["H1436"]],[18,20,["H1121"]],[20,22,["H296"]],[22,24,["H1121"]],[24,26,["H8227"]],[26,29,["H2719"]],[29,31,["H4191"]],[31,33,["H834"]],[33,35,["H4428"]],[35,37,["H894"]],[37,40,["H6485"]],[40,43,["H776"]]]},{"k":19960,"v":[[0,1,["H3458"]],[1,3,["H5221"]],[3,4,["H3605"]],[4,6,["H3064"]],[6,7,["H834"]],[7,8,["H1961"]],[8,9,["H854"]],[9,12,["H854"]],[12,13,["H1436"]],[13,15,["H4709"]],[15,18,["H3778"]],[18,19,["H834"]],[19,21,["H4672"]],[21,22,["H8033"]],[22,25,["H376"]],[25,27,["H4421"]]]},{"k":19961,"v":[[0,5,["H1961"]],[5,7,["H8145"]],[7,8,["H3117"]],[8,12,["H4191","(H853)"]],[12,13,["H1436"]],[13,15,["H3808"]],[15,16,["H376"]],[16,17,["H3045"]],[17,18,[]]]},{"k":19962,"v":[[0,3,["H935"]],[3,4,["H376"]],[4,6,["H4480","H7927"]],[6,8,["H4480","H7887"]],[8,11,["H4480","H8111"]],[11,13,["H8084"]],[13,14,["H376"]],[14,17,["H2206"]],[17,18,["H1548"]],[18,21,["H899"]],[21,22,["H7167"]],[22,26,["H1413"]],[26,28,["H4503"]],[28,30,["H3828"]],[30,33,["H3027"]],[33,35,["H935"]],[35,39,["H1004"]],[39,42,["H3068"]]]},{"k":19963,"v":[[0,2,["H3458"]],[2,4,["H1121"]],[4,6,["H5418"]],[6,8,["H3318"]],[8,9,["H4480"]],[9,10,["H4709"]],[10,12,["H7125"]],[12,14,["H1058"]],[14,19,["H1980","H1980"]],[19,24,["H1961"]],[24,27,["H6298"]],[27,30,["H559"]],[30,31,["H413"]],[31,33,["H935"]],[33,34,["H413"]],[34,35,["H1436"]],[35,37,["H1121"]],[37,39,["H296"]]]},{"k":19964,"v":[[0,3,["H1961"]],[3,7,["H935"]],[7,8,["H413"]],[8,10,["H8432"]],[10,13,["H5892"]],[13,15,["H3458"]],[15,17,["H1121"]],[17,19,["H5418"]],[19,20,["H7819"]],[20,25,["H413"]],[25,27,["H8432"]],[27,30,["H953"]],[30,31,["H1931"]],[31,34,["H376"]],[34,35,["H834"]],[35,37,["H854"]],[37,38,[]]]},{"k":19965,"v":[[0,2,["H6235"]],[2,3,["H376"]],[3,5,["H4672"]],[5,9,["H559"]],[9,10,["H413"]],[10,11,["H3458"]],[11,12,["H4191"]],[12,14,["H408"]],[14,15,["H3588"]],[15,17,["H3426"]],[17,18,["H4301"]],[18,21,["H7704"]],[21,23,["H2406"]],[23,26,["H8184"]],[26,29,["H8081"]],[29,32,["H1706"]],[32,35,["H2308"]],[35,37,["H4191"]],[37,39,["H3808"]],[39,40,["H8432"]],[40,42,["H251"]]]},{"k":19966,"v":[[0,3,["H953"]],[3,4,["H834","H8033"]],[4,5,["H3458"]],[5,7,["H7993","(H853)"]],[7,8,["H3605"]],[8,11,["H6297"]],[11,14,["H376"]],[14,15,["H834"]],[15,18,["H5221"]],[18,19,["H3027"]],[19,21,["H1436"]],[21,23,["H1931"]],[23,24,["H834"]],[24,25,["H609"]],[25,27,["H4428"]],[27,29,["H6213"]],[29,31,["H4480","H6440"]],[31,33,["H1201"]],[33,34,["H4428"]],[34,36,["H3478"]],[36,38,["H3458"]],[38,40,["H1121"]],[40,42,["H5418"]],[42,43,["H4390"]],[43,49,["H2491"]]]},{"k":19967,"v":[[0,2,["H3458"]],[2,5,["H7617","(H853)"]],[5,6,["H3605"]],[6,8,["H7611"]],[8,11,["H5971"]],[11,12,["H834"]],[12,15,["H4709"]],[15,16,["(H853)"]],[16,18,["H4428"]],[18,19,["H1323"]],[19,21,["H3605"]],[21,23,["H5971"]],[23,25,["H7604"]],[25,27,["H4709"]],[27,28,["H834"]],[28,29,["H5018"]],[29,31,["H7227"]],[31,34,["H2876"]],[34,36,["H6485"]],[36,37,["(H853)"]],[37,38,["H1436"]],[38,40,["H1121"]],[40,42,["H296"]],[42,44,["H3458"]],[44,46,["H1121"]],[46,48,["H5418"]],[48,52,["H7617"]],[52,54,["H1980"]],[54,57,["H5674"]],[57,58,["H413"]],[58,60,["H1121","H5983"]]]},{"k":19968,"v":[[0,3,["H3110"]],[3,5,["H1121"]],[5,7,["H7143"]],[7,9,["H3605"]],[9,11,["H8269"]],[11,14,["H2428"]],[14,15,["H834"]],[15,17,["H854"]],[17,19,["H8085"]],[19,20,["(H853)"]],[20,21,["H3605"]],[21,23,["H7451"]],[23,24,["H834"]],[24,25,["H3458"]],[25,27,["H1121"]],[27,29,["H5418"]],[29,31,["H6213"]]]},{"k":19969,"v":[[0,3,["H3947","(H853)"]],[3,4,["H3605"]],[4,6,["H376"]],[6,8,["H1980"]],[8,10,["H3898"]],[10,11,["H5973"]],[11,12,["H3458"]],[12,14,["H1121"]],[14,16,["H5418"]],[16,18,["H4672"]],[18,20,["H413"]],[20,22,["H7227"]],[22,23,["H4325"]],[23,24,["H834"]],[24,27,["H1391"]]]},{"k":19970,"v":[[0,5,["H1961"]],[5,8,["H3605"]],[8,10,["H5971"]],[10,11,["H834"]],[11,13,["H854"]],[13,14,["H3458"]],[14,15,["H7200","(H853)"]],[15,16,["H3110"]],[16,18,["H1121"]],[18,20,["H7143"]],[20,22,["H3605"]],[22,24,["H8269"]],[24,27,["H2428"]],[27,28,["H834"]],[28,30,["H854"]],[30,35,["H8055"]]]},{"k":19971,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H834"]],[5,6,["H3458"]],[6,10,["H7617"]],[10,11,["H4480"]],[11,12,["H4709"]],[12,14,["H5437"]],[14,16,["H7725"]],[16,18,["H1980"]],[18,19,["H413"]],[19,20,["H3110"]],[20,22,["H1121"]],[22,24,["H7143"]]]},{"k":19972,"v":[[0,2,["H3458"]],[2,4,["H1121"]],[4,6,["H5418"]],[6,7,["H4422"]],[7,8,["H4480","H6440"]],[8,9,["H3110"]],[9,11,["H8083"]],[11,12,["H376"]],[12,14,["H1980"]],[14,15,["H413"]],[15,17,["H1121","H5983"]]]},{"k":19973,"v":[[0,2,["H3947"]],[2,3,["H3110"]],[3,5,["H1121"]],[5,7,["H7143"]],[7,9,["H3605"]],[9,11,["H8269"]],[11,14,["H2428"]],[14,15,["H834"]],[15,17,["H854"]],[17,18,["(H853)"]],[18,19,["H3605"]],[19,21,["H7611"]],[21,24,["H5971"]],[24,25,["H834"]],[25,28,["H7725"]],[28,29,["H4480","H854"]],[29,30,["H3458"]],[30,32,["H1121"]],[32,34,["H5418"]],[34,35,["H4480"]],[35,36,["H4709"]],[36,37,["H310"]],[37,41,["H5221","(H853)"]],[41,42,["H1436"]],[42,44,["H1121"]],[44,46,["H296"]],[46,48,["H1397"]],[48,49,["H376"]],[49,51,["H4421"]],[51,54,["H802"]],[54,57,["H2945"]],[57,60,["H5631"]],[60,61,["H834"]],[61,65,["H7725"]],[65,67,["H4480","H1391"]]]},{"k":19974,"v":[[0,3,["H1980"]],[3,5,["H3427"]],[5,8,["H1628"]],[8,10,["H3643"]],[10,11,["H834"]],[11,13,["H681"]],[13,14,["H1035"]],[14,16,["H1980"]],[16,19,["H935"]],[19,20,["H4714"]]]},{"k":19975,"v":[[0,1,["H4480","H6440"]],[1,4,["H3778"]],[4,5,["H3588"]],[5,8,["H3372"]],[8,9,["H4480","H6440"]],[9,11,["H3588"]],[11,12,["H3458"]],[12,14,["H1121"]],[14,16,["H5418"]],[16,18,["H5221","(H853)"]],[18,19,["H1436"]],[19,21,["H1121"]],[21,23,["H296"]],[23,24,["H834"]],[24,26,["H4428"]],[26,28,["H894"]],[28,30,["H6485"]],[30,33,["H776"]]]},{"k":19976,"v":[[0,2,["H3605"]],[2,4,["H8269"]],[4,7,["H2428"]],[7,9,["H3110"]],[9,11,["H1121"]],[11,13,["H7143"]],[13,15,["H3153"]],[15,17,["H1121"]],[17,19,["H1955"]],[19,21,["H3605"]],[21,23,["H5971"]],[23,26,["H4480","H6996"]],[26,28,["H5704"]],[28,30,["H1419"]],[30,32,["H5066"]]]},{"k":19977,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,4,["H3414"]],[4,6,["H5030"]],[6,10,["H4994"]],[10,12,["H8467"]],[12,14,["H5307"]],[14,15,["H6440"]],[15,18,["H6419"]],[18,19,["H1157"]],[19,21,["H413"]],[21,23,["H3068"]],[23,25,["H430"]],[25,27,["H1157"]],[27,28,["H3605"]],[28,29,["H2063"]],[29,30,["H7611"]],[30,31,["H3588"]],[31,34,["H7604"]],[34,37,["H4592"]],[37,39,["H4480","H7235"]],[39,40,["H834"]],[40,42,["H5869"]],[42,44,["H7200"]],[44,45,[]]]},{"k":19978,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,7,["H5046"]],[7,8,["(H853)"]],[8,10,["H1870"]],[10,11,["H834"]],[11,14,["H1980"]],[14,17,["H1697"]],[17,18,["H834"]],[18,21,["H6213"]]]},{"k":19979,"v":[[0,2,["H3414"]],[2,4,["H5030"]],[4,5,["H559"]],[5,6,["H413"]],[6,10,["H8085"]],[10,12,["H2009"]],[12,15,["H6419"]],[15,16,["H413"]],[16,18,["H3068"]],[18,20,["H430"]],[20,24,["H1697"]],[24,30,["H1961"]],[30,32,["H3605","H834"]],[32,33,["H1697"]],[33,35,["H3068"]],[35,37,["H6030"]],[37,41,["H5046"]],[41,49,["H4513","H3808","H1697"]],[49,50,["H4480"]],[50,51,[]]]},{"k":19980,"v":[[0,2,["H1992"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3414"]],[5,7,["H3068"]],[7,8,["H1961"]],[8,10,["H571"]],[10,12,["H539"]],[12,13,["H5707"]],[13,16,["H518"]],[16,18,["H6213"]],[18,19,["H3808"]],[19,20,["H3651"]],[20,23,["H3605"]],[23,24,["H1697"]],[24,27,["H834"]],[27,29,["H3068"]],[29,31,["H430"]],[31,33,["H7971"]],[33,35,["H413"]],[35,36,[]]]},{"k":19981,"v":[[0,1,["H518"]],[1,4,["H2896"]],[4,6,["H518"]],[6,9,["H7451"]],[9,12,["H8085"]],[12,14,["H6963"]],[14,17,["H3068"]],[17,19,["H430"]],[19,21,["H834"]],[21,22,["H580"]],[22,23,["H7971"]],[23,25,["H4616","H834"]],[25,29,["H3190"]],[29,32,["H3588"]],[32,34,["H8085"]],[34,36,["H6963"]],[36,39,["H3068"]],[39,41,["H430"]]]},{"k":19982,"v":[[0,5,["H1961"]],[5,6,["H4480","H7093"]],[6,7,["H6235"]],[7,8,["H3117"]],[8,11,["H1697"]],[11,14,["H3068"]],[14,15,["H1961"]],[15,16,["H413"]],[16,17,["H3414"]]]},{"k":19983,"v":[[0,2,["H7121","H413"]],[2,4,["H3110"]],[4,6,["H1121"]],[6,8,["H7143"]],[8,10,["H3605"]],[10,12,["H8269"]],[12,15,["H2428"]],[15,16,["H834"]],[16,18,["H854"]],[18,21,["H3605"]],[21,23,["H5971"]],[23,26,["H4480","H6996"]],[26,28,["H5704"]],[28,30,["H1419"]]]},{"k":19984,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H3541"]],[5,6,["H559"]],[6,8,["H3068"]],[8,10,["H430"]],[10,12,["H3478"]],[12,13,["H413"]],[13,14,["H834"]],[14,16,["H7971"]],[16,19,["H5307"]],[19,21,["H8467"]],[21,22,["H6440"]],[22,23,[]]]},{"k":19985,"v":[[0,1,["H518"]],[1,5,["H7725","H3427"]],[5,7,["H2063"]],[7,8,["H776"]],[8,12,["H1129"]],[12,15,["H3808"]],[15,18,["H2040"]],[18,22,["H5193"]],[22,25,["H3808"]],[25,28,["H5428"]],[28,29,["H3588"]],[29,31,["H5162"]],[31,33,["H413"]],[33,35,["H7451"]],[35,36,["H834"]],[36,39,["H6213"]],[39,41,[]]]},{"k":19986,"v":[[0,2,["H408"]],[2,3,["H3372"]],[3,4,["H4480","H6440"]],[4,6,["H4428"]],[6,8,["H894"]],[8,10,["H834"]],[10,11,["H859"]],[11,13,["H3372","H4480","H6440"]],[13,15,["H408"]],[15,16,["H3372"]],[16,17,["H4480"]],[17,19,["H5002"]],[19,21,["H3068"]],[21,22,["H3588"]],[22,23,["H589"]],[23,25,["H854"]],[25,28,["H3467"]],[28,32,["H5337"]],[32,36,["H4480","H3027"]]]},{"k":19987,"v":[[0,4,["H5414"]],[4,5,["H7356"]],[5,13,["H7355"]],[13,19,["H7725","(H853)"]],[19,20,["H413"]],[20,23,["H127"]]]},{"k":19988,"v":[[0,2,["H518"]],[2,3,["H859"]],[3,4,["H559"]],[4,7,["H3808"]],[7,8,["H3427"]],[8,10,["H2063"]],[10,11,["H776"]],[11,12,["H1115"]],[12,13,["H8085"]],[13,15,["H6963"]],[15,18,["H3068"]],[18,20,["H430"]]]},{"k":19989,"v":[[0,1,["H559"]],[1,2,["H3808"]],[2,3,["H3588"]],[3,6,["H935"]],[6,9,["H776"]],[9,11,["H4714"]],[11,12,["H834"]],[12,15,["H7200"]],[15,16,["H3808"]],[16,17,["H4421"]],[17,18,["H3808"]],[18,19,["H8085"]],[19,21,["H6963"]],[21,24,["H7782"]],[24,25,["H3808"]],[25,27,["H7456"]],[27,29,["H3899"]],[29,31,["H8033"]],[31,34,["H3427"]]]},{"k":19990,"v":[[0,2,["H6258"]],[2,3,["H3651"]],[3,4,["H8085"]],[4,6,["H1697"]],[6,9,["H3068"]],[9,11,["H7611"]],[11,13,["H3063"]],[13,14,["H3541"]],[14,15,["H559"]],[15,17,["H3068"]],[17,19,["H6635"]],[19,21,["H430"]],[21,23,["H3478"]],[23,24,["H518"]],[24,25,["H859"]],[25,27,["H7760","H7760"]],[27,29,["H6440"]],[29,32,["H935"]],[32,33,["H4714"]],[33,35,["H935"]],[35,37,["H1481"]],[37,38,["H8033"]]]},{"k":19991,"v":[[0,6,["H1961"]],[6,9,["H2719"]],[9,10,["H834"]],[10,11,["H859"]],[11,12,["H3373","H4480"]],[12,14,["H5381"]],[14,16,["H8033"]],[16,19,["H776"]],[19,21,["H4714"]],[21,24,["H7458"]],[24,25,["H834"]],[25,26,["H859"]],[26,28,["H1672","H4480"]],[28,31,["H1692"]],[31,32,["H310"]],[32,34,["H8033"]],[34,36,["H4714"]],[36,38,["H8033"]],[38,41,["H4191"]]]},{"k":19992,"v":[[0,4,["H1961"]],[4,6,["H3605"]],[6,8,["H376"]],[8,9,["H834"]],[9,10,["H7760","(H853)"]],[10,12,["H6440"]],[12,15,["H935"]],[15,16,["H4714"]],[16,18,["H1481"]],[18,19,["H8033"]],[19,22,["H4191"]],[22,25,["H2719"]],[25,28,["H7458"]],[28,32,["H1698"]],[32,34,["H3808"]],[34,37,["H1961"]],[37,38,["H8300"]],[38,40,["H6412"]],[40,41,["H4480","H6440"]],[41,43,["H7451"]],[43,44,["H834"]],[44,45,["H589"]],[45,47,["H935"]],[47,48,["H5921"]],[48,49,[]]]},{"k":19993,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,12,["H834"]],[12,14,["H639"]],[14,17,["H2534"]],[17,21,["H5413"]],[21,22,["H5921"]],[22,24,["H3427"]],[24,26,["H3389"]],[26,27,["H3651"]],[27,30,["H2534"]],[30,33,["H5413"]],[33,34,["H5921"]],[34,38,["H1961"]],[38,40,["H935"]],[40,41,["H4714"]],[41,47,["H423"]],[47,50,["H8047"]],[50,53,["H7045"]],[53,56,["H2781"]],[56,60,["H7200","(H853)"]],[60,61,["H2088"]],[61,62,["H4725"]],[62,63,["H3808"]],[63,64,["H5750"]]]},{"k":19994,"v":[[0,2,["H3068"]],[2,4,["H1696"]],[4,5,["H5921"]],[5,9,["H7611"]],[9,11,["H3063"]],[11,12,["H935"]],[12,14,["H408"]],[14,16,["H4714"]],[16,18,["H3045","H3045"]],[18,19,["H3588"]],[19,22,["H5749"]],[22,25,["H3117"]]]},{"k":19995,"v":[[0,1,["H3588"]],[1,3,["H8582"]],[3,6,["H5315"]],[6,7,["H3588"]],[7,8,["H859"]],[8,9,["H7971"]],[9,11,["H413"]],[11,13,["H3068"]],[13,15,["H430"]],[15,16,["H559"]],[16,17,["H6419"]],[17,18,["H1157"]],[18,20,["H413"]],[20,22,["H3068"]],[22,24,["H430"]],[24,28,["H3605"]],[28,29,["H834"]],[29,31,["H3068"]],[31,33,["H430"]],[33,35,["H559"]],[35,36,["H3651"]],[36,37,["H5046"]],[37,43,["H6213"]],[43,44,[]]]},{"k":19996,"v":[[0,6,["H3117"]],[6,7,["H5046"]],[7,14,["H3808"]],[14,15,["H8085"]],[15,17,["H6963"]],[17,20,["H3068"]],[20,22,["H430"]],[22,24,["H3605"]],[24,28,["H834"]],[28,31,["H7971"]],[31,33,["H413"]],[33,34,[]]]},{"k":19997,"v":[[0,1,["H6258"]],[1,4,["H3045","H3045"]],[4,5,["H3588"]],[5,8,["H4191"]],[8,11,["H2719"]],[11,14,["H7458"]],[14,18,["H1698"]],[18,21,["H4725"]],[21,22,["H834","H8033"]],[22,24,["H2654"]],[24,26,["H935"]],[26,29,["H1481"]]]},{"k":19998,"v":[[0,5,["H1961"]],[5,8,["H3414"]],[8,12,["H3615"]],[12,14,["H1696"]],[14,15,["H413"]],[15,16,["H3605"]],[16,18,["H5971","(H853)"]],[18,19,["H3605"]],[19,21,["H1697"]],[21,24,["H3068"]],[24,26,["H430"]],[26,28,["H834"]],[28,30,["H3068"]],[30,32,["H430"]],[32,34,["H7971"]],[34,36,["H413"]],[36,38,["(H853)"]],[38,39,["H3605"]],[39,40,["H428"]],[40,41,["H1697"]]]},{"k":19999,"v":[[0,2,["H559"]],[2,3,["H5838"]],[3,5,["H1121"]],[5,7,["H1955"]],[7,9,["H3110"]],[9,11,["H1121"]],[11,13,["H7143"]],[13,15,["H3605"]],[15,17,["H2086"]],[17,18,["H376"]],[18,19,["H559"]],[19,20,["H413"]],[20,21,["H3414"]],[21,22,["H859"]],[22,23,["H1696"]],[23,24,["H8267"]],[24,26,["H3068"]],[26,28,["H430"]],[28,30,["H3808"]],[30,31,["H7971"]],[31,34,["H559"]],[34,35,["H935"]],[35,36,["H3808"]],[36,38,["H4714"]],[38,40,["H1481"]],[40,41,["H8033"]]]},{"k":20000,"v":[[0,1,["H3588"]],[1,2,["H1263"]],[2,4,["H1121"]],[4,6,["H5374"]],[6,9,["H5496","(H853)"]],[9,12,["H4616"]],[12,14,["H5414"]],[14,18,["H3027"]],[18,21,["H3778"]],[21,28,["H4191","(H853)"]],[28,33,["H1540","(H853)"]],[33,35,["H894"]]]},{"k":20001,"v":[[0,2,["H3110"]],[2,4,["H1121"]],[4,6,["H7143"]],[6,8,["H3605"]],[8,10,["H8269"]],[10,13,["H2428"]],[13,15,["H3605"]],[15,17,["H5971"]],[17,18,["H8085"]],[18,19,["H3808"]],[19,21,["H6963"]],[21,24,["H3068"]],[24,26,["H3427"]],[26,29,["H776"]],[29,31,["H3063"]]]},{"k":20002,"v":[[0,2,["H3110"]],[2,4,["H1121"]],[4,6,["H7143"]],[6,8,["H3605"]],[8,10,["H8269"]],[10,13,["H2428"]],[13,14,["H3947","(H853)"]],[14,15,["H3605"]],[15,17,["H7611"]],[17,19,["H3063"]],[19,20,["H834"]],[20,22,["H7725"]],[22,24,["H4480","H3605"]],[24,25,["H1471"]],[25,26,["H834","H8033"]],[26,30,["H5080"]],[30,32,["H1481"]],[32,35,["H776"]],[35,37,["H3063"]]]},{"k":20003,"v":[[0,1,["(H853)"]],[1,2,["H1397"]],[2,4,["H802"]],[4,6,["H2945"]],[6,9,["H4428"]],[9,10,["H1323"]],[10,12,["H3605"]],[12,13,["H5315"]],[13,14,["H834"]],[14,15,["H5018"]],[15,17,["H7227"]],[17,20,["H2876"]],[20,22,["H5117"]],[22,23,["H854"]],[23,24,["H1436"]],[24,26,["H1121"]],[26,28,["H296"]],[28,30,["H1121"]],[30,32,["H8227"]],[32,34,["H3414"]],[34,36,["H5030"]],[36,38,["H1263"]],[38,40,["H1121"]],[40,42,["H5374"]]]},{"k":20004,"v":[[0,4,["H935"]],[4,6,["H776"]],[6,8,["H4714"]],[8,9,["H3588"]],[9,11,["H8085"]],[11,12,["H3808"]],[12,14,["H6963"]],[14,17,["H3068"]],[17,19,["H935"]],[19,22,["H5704"]],[22,23,["H8471"]]]},{"k":20005,"v":[[0,2,["H1961"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H413"]],[8,9,["H3414"]],[9,11,["H8471"]],[11,12,["H559"]]]},{"k":20006,"v":[[0,1,["H3947"]],[1,2,["H1419"]],[2,3,["H68"]],[3,6,["H3027"]],[6,8,["H2934"]],[8,12,["H4423"]],[12,15,["H4404"]],[15,16,["H834"]],[16,20,["H6607"]],[20,22,["H6547"]],[22,23,["H1004"]],[23,25,["H8471"]],[25,28,["H5869"]],[28,31,["H376"]],[31,33,["H3064"]]]},{"k":20007,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H3541"]],[5,6,["H559"]],[6,8,["H3068"]],[8,10,["H6635"]],[10,12,["H430"]],[12,14,["H3478"]],[14,15,["H2009"]],[15,18,["H7971"]],[18,20,["H3947","(H853)"]],[20,21,["H5019"]],[21,23,["H4428"]],[23,25,["H894"]],[25,27,["H5650"]],[27,30,["H7760"]],[30,32,["H3678"]],[32,33,["H4480","H4605"]],[33,34,["H428"]],[34,35,["H68"]],[35,36,["H834"]],[36,39,["H2934"]],[39,43,["H5186","(H853)"]],[43,46,["H8237"]],[46,47,["H5921"]],[47,48,[]]]},{"k":20008,"v":[[0,4,["H935"]],[4,7,["H5221","(H853)"]],[7,9,["H776"]],[9,11,["H4714"]],[11,14,["H834"]],[14,18,["H4194"]],[18,20,["H4194"]],[20,22,["H834"]],[22,26,["H7628"]],[26,28,["H7628"]],[28,30,["H834"]],[30,35,["H2719"]],[35,38,["H2719"]]]},{"k":20009,"v":[[0,4,["H3341"]],[4,6,["H784"]],[6,9,["H1004"]],[9,12,["H430"]],[12,14,["H4714"]],[14,18,["H8313"]],[18,24,["H7617"]],[24,29,["H5844"]],[29,30,["H854"]],[30,32,["H776"]],[32,34,["H4714"]],[34,35,["H834"]],[35,37,["H7462"]],[37,39,["H5844","(H853)"]],[39,41,["H899"]],[41,46,["H3318"]],[46,48,["H4480","H8033"]],[48,50,["H7965"]]]},{"k":20010,"v":[[0,3,["H7665"]],[3,4,["(H853)"]],[4,6,["H4676"]],[6,8,["H1053"]],[8,9,["H834"]],[9,13,["H776"]],[13,15,["H4714"]],[15,18,["H1004"]],[18,21,["H430"]],[21,24,["H4714"]],[24,27,["H8313"]],[27,29,["H784"]]]},{"k":20011,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H413"]],[5,6,["H3414"]],[6,7,["H413"]],[7,8,["H3605"]],[8,10,["H3064"]],[10,12,["H3427"]],[12,15,["H776"]],[15,17,["H4714"]],[17,19,["H3427"]],[19,21,["H4024"]],[21,24,["H8471"]],[24,27,["H5297"]],[27,31,["H776"]],[31,33,["H6624"]],[33,34,["H559"]]]},{"k":20012,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,11,["H859"]],[11,13,["H7200","(H853)"]],[13,14,["H3605"]],[14,16,["H7451"]],[16,17,["H834"]],[17,20,["H935"]],[20,21,["H5921"]],[21,22,["H3389"]],[22,24,["H5921"]],[24,25,["H3605"]],[25,27,["H5892"]],[27,29,["H3063"]],[29,31,["H2009"]],[31,32,["H2088"]],[32,33,["H3117"]],[33,37,["H2723"]],[37,39,["H369"]],[39,41,["H3427"]],[41,42,[]]]},{"k":20013,"v":[[0,1,["H4480","H6440"]],[1,4,["H7451"]],[4,5,["H834"]],[5,8,["H6213"]],[8,13,["H3707"]],[13,17,["H1980"]],[17,20,["H6999"]],[20,23,["H5647"]],[23,24,["H312"]],[24,25,["H430"]],[25,26,["H834"]],[26,28,["H3045"]],[28,29,["H3808"]],[29,31,["H1992"]],[31,32,["H859"]],[32,35,["H1"]]]},{"k":20014,"v":[[0,3,["H7971"]],[3,4,["H413"]],[4,5,["(H853)"]],[5,6,["H3605"]],[6,8,["H5650"]],[8,10,["H5030"]],[10,12,["H7925"]],[12,14,["H7971"]],[14,16,["H559"]],[16,17,["H4994"]],[17,18,["H6213"]],[18,19,["H408","(H853)"]],[19,20,["H2063"]],[20,21,["H8441"]],[21,22,["H1697"]],[22,23,["H834"]],[23,25,["H8130"]]]},{"k":20015,"v":[[0,3,["H8085"]],[3,4,["H3808"]],[4,5,["H3808"]],[5,6,["H5186","(H853)"]],[6,8,["H241"]],[8,10,["H7725"]],[10,13,["H4480","H7451"]],[13,15,["H6999"]],[15,16,["H1115"]],[16,19,["H312"]],[19,20,["H430"]]]},{"k":20016,"v":[[0,3,["H2534"]],[3,6,["H639"]],[6,9,["H5413"]],[9,12,["H1197"]],[12,15,["H5892"]],[15,17,["H3063"]],[17,21,["H2351"]],[21,23,["H3389"]],[23,26,["H1961"]],[26,27,["H2723"]],[27,29,["H8077"]],[29,32,["H2088"]],[32,33,["H3117"]]]},{"k":20017,"v":[[0,2,["H6258"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H6635"]],[10,12,["H430"]],[12,14,["H3478"]],[14,15,["H4100"]],[15,16,["H6213"]],[16,17,["H859"]],[17,19,["H1419"]],[19,20,["H7451"]],[20,21,["H413"]],[21,23,["H5315"]],[23,26,["H3772"]],[26,29,["H376"]],[29,31,["H802"]],[31,32,["H5768"]],[32,34,["H3243"]],[34,36,["H4480","H8432"]],[36,37,["H3063"]],[37,39,["H3498"]],[39,41,["H1115"]],[41,43,["H7611"]]]},{"k":20018,"v":[[0,7,["H3707"]],[7,10,["H4639"]],[10,13,["H3027"]],[13,15,["H6999"]],[15,17,["H312"]],[17,18,["H430"]],[18,21,["H776"]],[21,23,["H4714"]],[23,24,["H834","H8033"]],[24,25,["H859"]],[25,27,["H935"]],[27,29,["H1481"]],[29,30,["H4616"]],[30,35,["H3772"]],[35,37,["H4616"]],[37,40,["H1961"]],[40,42,["H7045"]],[42,45,["H2781"]],[45,47,["H3605"]],[47,49,["H1471"]],[49,52,["H776"]]]},{"k":20019,"v":[[0,3,["H7911","(H853)"]],[3,5,["H7451"]],[5,8,["H1"]],[8,11,["H7451"]],[11,14,["H4428"]],[14,16,["H3063"]],[16,19,["H7451"]],[19,22,["H802"]],[22,26,["H7451"]],[26,29,["H7451"]],[29,32,["H802"]],[32,33,["H834"]],[33,36,["H6213"]],[36,39,["H776"]],[39,41,["H3063"]],[41,45,["H2351"]],[45,47,["H3389"]]]},{"k":20020,"v":[[0,3,["H3808"]],[3,4,["H1792"]],[4,6,["H5704"]],[6,7,["H2088"]],[7,8,["H3117"]],[8,9,["H3808"]],[9,12,["H3372"]],[12,13,["H3808"]],[13,14,["H1980"]],[14,17,["H8451"]],[17,21,["H2708"]],[21,22,["H834"]],[22,24,["H5414"]],[24,25,["H6440"]],[25,28,["H6440"]],[28,30,["H1"]]]},{"k":20021,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,12,["H2009"]],[12,15,["H7760"]],[15,17,["H6440"]],[17,21,["H7451"]],[21,25,["H3772","(H853)"]],[25,26,["H3605"]],[26,27,["H3063"]]]},{"k":20022,"v":[[0,4,["H3947","(H853)"]],[4,6,["H7611"]],[6,8,["H3063"]],[8,9,["H834"]],[9,11,["H7760"]],[11,13,["H6440"]],[13,16,["H935"]],[16,18,["H776"]],[18,20,["H4714"]],[20,22,["H1481"]],[22,23,["H8033"]],[23,27,["H3605"]],[27,29,["H8552"]],[29,31,["H5307"]],[31,34,["H776"]],[34,36,["H4714"]],[36,41,["H8552"]],[41,44,["H2719"]],[44,48,["H7458"]],[48,51,["H4191"]],[51,54,["H4480","H6996"]],[54,56,["H5704"]],[56,58,["H1419"]],[58,61,["H2719"]],[61,65,["H7458"]],[65,69,["H1961"]],[69,71,["H423"]],[71,74,["H8047"]],[74,77,["H7045"]],[77,80,["H2781"]]]},{"k":20023,"v":[[0,4,["H6485","H5921"]],[4,7,["H3427"]],[7,10,["H776"]],[10,12,["H4714"]],[12,13,["H834"]],[13,16,["H6485","H5921"]],[16,17,["H3389"]],[17,20,["H2719"]],[20,23,["H7458"]],[23,27,["H1698"]]]},{"k":20024,"v":[[0,3,["H3808"]],[3,6,["H7611"]],[6,8,["H3063"]],[8,11,["H935"]],[11,14,["H776"]],[14,16,["H4714"]],[16,18,["H1481"]],[18,19,["H8033"]],[19,20,["H1961"]],[20,21,["H6412"]],[21,23,["H8300"]],[23,27,["H7725"]],[27,30,["H776"]],[30,32,["H3063"]],[32,35,["H834"]],[35,36,["H1992"]],[36,39,["H5375","(H853)","H5315"]],[39,41,["H7725"]],[41,43,["H3427"]],[43,44,["H8033"]],[44,45,["H3588"]],[45,46,["H3808"]],[46,48,["H7725"]],[48,49,["H3588","H518"]],[49,53,["H6412"]]]},{"k":20025,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,6,["H3045"]],[6,7,["H3588"]],[7,9,["H802"]],[9,12,["H6999"]],[12,14,["H312"]],[14,15,["H430"]],[15,17,["H3605"]],[17,19,["H802"]],[19,22,["H5975"]],[22,24,["H1419"]],[24,25,["H6951"]],[25,27,["H3605"]],[27,29,["H5971"]],[29,31,["H3427"]],[31,34,["H776"]],[34,36,["H4714"]],[36,38,["H6624"]],[38,39,["H6030","(H853)"]],[39,40,["H3414"]],[40,41,["H559"]]]},{"k":20026,"v":[[0,4,["H1697"]],[4,5,["H834"]],[5,8,["H1696"]],[8,9,["H413"]],[9,13,["H8034"]],[13,16,["H3068"]],[16,19,["H369"]],[19,20,["H8085"]],[20,21,["H413"]],[21,22,[]]]},{"k":20027,"v":[[0,1,["H3588"]],[1,5,["H6213","H6213","(H853)"]],[5,6,["H3605","H834"]],[6,7,["H1697"]],[7,9,["H3318"]],[9,14,["H4480","H6310"]],[14,17,["H6999"]],[17,20,["H4446"]],[20,22,["H8064"]],[22,26,["H5258"]],[26,28,["H5262"]],[28,31,["H834"]],[31,34,["H6213"]],[34,35,["H587"]],[35,38,["H1"]],[38,40,["H4428"]],[40,43,["H8269"]],[43,46,["H5892"]],[46,48,["H3063"]],[48,52,["H2351"]],[52,54,["H3389"]],[54,59,["H7646"]],[59,61,["H3899"]],[61,63,["H1961"]],[63,64,["H2896"]],[64,66,["H7200"]],[66,67,["H3808"]],[67,68,["H7451"]]]},{"k":20028,"v":[[0,2,["H4480","H227"]],[2,5,["H2308"]],[5,8,["H6999"]],[8,11,["H4446"]],[11,13,["H8064"]],[13,17,["H5258"]],[17,19,["H5262"]],[19,24,["H2637"]],[24,25,["H3605"]],[25,30,["H8552"]],[30,33,["H2719"]],[33,37,["H7458"]]]},{"k":20029,"v":[[0,2,["H3588"]],[2,3,["H587"]],[3,5,["H6999"]],[5,8,["H4446"]],[8,10,["H8064"]],[10,13,["H5258"]],[13,15,["H5262"]],[15,20,["H6213"]],[20,22,["H3561"]],[22,24,["H6087"]],[24,28,["H5258"]],[28,30,["H5262"]],[30,33,["H4480","H1107"]],[33,35,["H376"]]]},{"k":20030,"v":[[0,2,["H3414"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3605"]],[5,7,["H5971"]],[7,8,["H5921"]],[8,10,["H1397"]],[10,12,["H5921"]],[12,14,["H802"]],[14,16,["H5921"]],[16,17,["H3605"]],[17,19,["H5971"]],[19,25,["H6030","(H853)","H1697"]],[25,26,["H559"]]]},{"k":20031,"v":[[0,0,["(H853)"]],[0,2,["H7002"]],[2,3,["H834"]],[3,5,["H6999"]],[5,8,["H5892"]],[8,10,["H3063"]],[10,14,["H2351"]],[14,16,["H3389"]],[16,17,["H859"]],[17,20,["H1"]],[20,22,["H4428"]],[22,25,["H8269"]],[25,28,["H5971"]],[28,31,["H776"]],[31,33,["H3808"]],[33,35,["H3068"]],[35,36,["H2142"]],[36,39,["H5927"]],[39,42,["H5921"]],[42,44,["H3820"]]]},{"k":20032,"v":[[0,4,["H3068"]],[4,5,["H3201"]],[5,6,["H3808"]],[6,7,["H5750"]],[7,8,["H5375"]],[8,9,["H4480","H6440"]],[9,12,["H7455"]],[12,15,["H4611"]],[15,17,["H4480","H6440"]],[17,20,["H8441"]],[20,21,["H834"]],[21,24,["H6213"]],[24,26,["H1961"]],[26,28,["H776"]],[28,30,["H2723"]],[30,33,["H8047"]],[33,36,["H7045"]],[36,37,["H4480","H369"]],[37,39,["H3427"]],[39,42,["H2088"]],[42,43,["H3117"]]]},{"k":20033,"v":[[0,1,["H4480","H6440","H834"]],[1,5,["H6999"]],[5,7,["H834"]],[7,10,["H2398"]],[10,13,["H3068"]],[13,16,["H3808"]],[16,17,["H8085"]],[17,19,["H6963"]],[19,22,["H3068"]],[22,23,["H3808"]],[23,24,["H1980"]],[24,27,["H8451"]],[27,31,["H2708"]],[31,35,["H5715"]],[35,36,["H5921","H3651"]],[36,37,["H2063"]],[37,38,["H7451"]],[38,41,["H7122"]],[41,45,["H2088"]],[45,46,["H3117"]]]},{"k":20034,"v":[[0,2,["H3414"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3605"]],[5,7,["H5971"]],[7,9,["H413"]],[9,10,["H3605"]],[10,12,["H802"]],[12,13,["H8085"]],[13,15,["H1697"]],[15,18,["H3068"]],[18,19,["H3605"]],[19,20,["H3063"]],[20,21,["H834"]],[21,25,["H776"]],[25,27,["H4714"]]]},{"k":20035,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,11,["H559"]],[11,12,["H859"]],[12,15,["H802"]],[15,18,["H1696"]],[18,21,["H6310"]],[21,23,["H4390"]],[23,26,["H3027"]],[26,27,["H559"]],[27,31,["H6213","H6213","(H853)"]],[31,33,["H5088"]],[33,34,["H834"]],[34,37,["H5087"]],[37,40,["H6999"]],[40,43,["H4446"]],[43,45,["H8064"]],[45,49,["H5258"]],[49,51,["H5262"]],[51,57,["H6965","H6965","(H853)"]],[57,59,["H5088"]],[59,62,["H6213","H6213","(H853)"]],[62,64,["H5088"]]]},{"k":20036,"v":[[0,1,["H3651"]],[1,2,["H8085"]],[2,5,["H1697"]],[5,8,["H3068"]],[8,9,["H3605"]],[9,10,["H3063"]],[10,12,["H3427"]],[12,15,["H776"]],[15,17,["H4714"]],[17,18,["H2009"]],[18,21,["H7650"]],[21,24,["H1419"]],[24,25,["H8034"]],[25,26,["H559"]],[26,28,["H3068"]],[28,31,["H8034"]],[31,33,["H518"]],[33,34,["H5750"]],[34,35,["H1961"]],[35,36,["H7121"]],[36,39,["H6310"]],[39,41,["H3605"]],[41,42,["H376"]],[42,44,["H3063"]],[44,46,["H3605"]],[46,48,["H776"]],[48,50,["H4714"]],[50,51,["H559"]],[51,53,["H136"]],[53,54,["H3069"]],[54,55,["H2416"]]]},{"k":20037,"v":[[0,1,["H2009"]],[1,4,["H8245"]],[4,5,["H5921"]],[5,8,["H7451"]],[8,10,["H3808"]],[10,12,["H2896"]],[12,14,["H3605"]],[14,16,["H376"]],[16,18,["H3063"]],[18,19,["H834"]],[19,23,["H776"]],[23,25,["H4714"]],[25,28,["H8552"]],[28,31,["H2719"]],[31,35,["H7458"]],[35,36,["H5704"]],[36,40,["H3615"]],[40,42,[]]]},{"k":20038,"v":[[0,3,["H4962"]],[3,4,["H4557"]],[4,6,["H6412"]],[6,8,["H2719"]],[8,10,["H7725"]],[10,12,["H4480"]],[12,14,["H776"]],[14,16,["H4714"]],[16,19,["H776"]],[19,21,["H3063"]],[21,23,["H3605"]],[23,25,["H7611"]],[25,27,["H3063"]],[27,30,["H935"]],[30,33,["H776"]],[33,35,["H4714"]],[35,37,["H1481"]],[37,38,["H8033"]],[38,40,["H3045"]],[40,41,["H4310"]],[41,42,["H1697"]],[42,44,["H6965"]],[44,45,["H4480"]],[45,47,["H4480"]]]},{"k":20039,"v":[[0,2,["H2063"]],[2,6,["H226"]],[6,9,["H5002"]],[9,11,["H3068"]],[11,12,["H3588"]],[12,13,["H589"]],[13,15,["H6485","H5921"]],[15,18,["H2088"]],[18,19,["H4725"]],[19,20,["H4616"]],[20,23,["H3045"]],[23,24,["H3588"]],[24,26,["H1697"]],[26,29,["H6965","H6965"]],[29,30,["H5921"]],[30,33,["H7451"]]]},{"k":20040,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H2009"]],[5,8,["H5414","(H853)"]],[8,9,["H6548"]],[9,10,["H4428"]],[10,12,["H4714"]],[12,15,["H3027"]],[15,18,["H341"]],[18,22,["H3027"]],[22,26,["H1245"]],[26,28,["H5315"]],[28,29,["H834"]],[29,31,["H5414","(H853)"]],[31,32,["H6667"]],[32,33,["H4428"]],[33,35,["H3063"]],[35,38,["H3027"]],[38,40,["H5019"]],[40,41,["H4428"]],[41,43,["H894"]],[43,45,["H341"]],[45,48,["H1245"]],[48,50,["H5315"]]]},{"k":20041,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H3414"]],[4,6,["H5030"]],[6,7,["H1696"]],[7,8,["H413"]],[8,9,["H1263"]],[9,11,["H1121"]],[11,13,["H5374"]],[13,17,["H3789","(H853)"]],[17,18,["H428"]],[18,19,["H1697"]],[19,20,["H5921"]],[20,22,["H5612"]],[22,25,["H4480","H6310"]],[25,27,["H3414"]],[27,30,["H7243"]],[30,31,["H8141"]],[31,33,["H3079"]],[33,35,["H1121"]],[35,37,["H2977"]],[37,38,["H4428"]],[38,40,["H3063"]],[40,41,["H559"]]]},{"k":20042,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H430"]],[6,8,["H3478"]],[8,9,["H5921"]],[9,12,["H1263"]]]},{"k":20043,"v":[[0,3,["H559"]],[3,4,["H188"]],[4,7,["H4994"]],[7,8,["H3588"]],[8,10,["H3068"]],[10,12,["H3254"]],[12,13,["H3015"]],[13,14,["H5921"]],[14,16,["H4341"]],[16,18,["H3021"]],[18,21,["H585"]],[21,24,["H4672"]],[24,25,["H3808"]],[25,26,["H4496"]]]},{"k":20044,"v":[[0,1,["H3541"]],[1,4,["H559"]],[4,5,["H413"]],[5,8,["H3068"]],[8,9,["H559"]],[9,10,["H3541"]],[10,11,["H2009"]],[11,13,["H834"]],[13,16,["H1129"]],[16,18,["H589"]],[18,20,["H2040"]],[20,23,["H834"]],[23,26,["H5193"]],[26,27,["H589"]],[27,30,["H5428"]],[30,32,["H1931"]],[32,33,["H3605"]],[33,34,["H776"]]]},{"k":20045,"v":[[0,2,["H1245"]],[2,3,["H859"]],[3,5,["H1419"]],[5,8,["H1245"]],[8,10,["H408"]],[10,11,["H3588"]],[11,12,["H2009"]],[12,15,["H935"]],[15,16,["H7451"]],[16,17,["H5921"]],[17,18,["H3605"]],[18,19,["H1320"]],[19,20,["H5002"]],[20,22,["H3068"]],[22,23,["(H853)"]],[23,25,["H5315"]],[25,28,["H5414"]],[28,33,["H7998"]],[33,34,["H5921"]],[34,35,["H3605"]],[35,36,["H4725"]],[36,37,["H834","H8033"]],[37,39,["H1980"]]]},{"k":20046,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H834"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,11,["H5030"]],[11,12,["H5921"]],[12,14,["H1471"]]]},{"k":20047,"v":[[0,2,["H4714"]],[2,3,["H5921"]],[3,5,["H2428"]],[5,7,["H6549"]],[7,8,["H4428"]],[8,10,["H4714"]],[10,11,["H834"]],[11,12,["H1961"]],[12,13,["H5921"]],[13,15,["H5104"]],[15,16,["H6578"]],[16,18,["H3751"]],[18,19,["H834"]],[19,20,["H5019"]],[20,21,["H4428"]],[21,23,["H894"]],[23,24,["H5221"]],[24,27,["H7243"]],[27,28,["H8141"]],[28,30,["H3079"]],[30,32,["H1121"]],[32,34,["H2977"]],[34,35,["H4428"]],[35,37,["H3063"]]]},{"k":20048,"v":[[0,1,["H6186"]],[1,4,["H4043"]],[4,6,["H6793"]],[6,9,["H5066"]],[9,11,["H4421"]]]},{"k":20049,"v":[[0,1,["H631"]],[1,3,["H5483"]],[3,6,["H5927"]],[6,8,["H6571"]],[8,11,["H3320"]],[11,14,["H3553"]],[14,15,["H4838"]],[15,17,["H7420"]],[17,20,["H3847"]],[20,22,["H5630"]]]},{"k":20050,"v":[[0,1,["H4069"]],[1,4,["H7200"]],[4,5,["H1992"]],[5,6,["H2844"]],[6,9,["H5472"]],[9,10,["H268"]],[10,14,["H1368"]],[14,17,["H3807"]],[17,21,["H4498","H5127"]],[21,25,["H6437","H3808"]],[25,27,["H4032"]],[27,30,["H4480","H5439"]],[30,31,["H5002"]],[31,33,["H3068"]]]},{"k":20051,"v":[[0,2,["H408"]],[2,4,["H7031"]],[4,6,["H5127"]],[6,7,["H408"]],[7,10,["H1368"]],[10,11,["H4422"]],[11,14,["H3782"]],[14,16,["H5307"]],[16,19,["H6828"]],[19,20,["H5921","H3027"]],[20,22,["H5104"]],[22,23,["H6578"]]]},{"k":20052,"v":[[0,1,["H4310"]],[1,3,["H2088"]],[3,6,["H5927"]],[6,9,["H2975"]],[9,11,["H4325"]],[11,13,["H1607"]],[13,16,["H5104"]]]},{"k":20053,"v":[[0,1,["H4714"]],[1,3,["H5927"]],[3,6,["H2975"]],[6,9,["H4325"]],[9,11,["H1607"]],[11,14,["H5104"]],[14,17,["H559"]],[17,21,["H5927"]],[21,24,["H3680"]],[24,26,["H776"]],[26,29,["H6"]],[29,31,["H5892"]],[31,34,["H3427"]],[34,35,[]]]},{"k":20054,"v":[[0,2,["H5927"]],[2,4,["H5483"]],[4,6,["H1984"]],[6,8,["H7393"]],[8,13,["H1368"]],[13,15,["H3318"]],[15,17,["H3568"]],[17,20,["H6316"]],[20,22,["H8610"]],[22,24,["H4043"]],[24,27,["H3866"]],[27,29,["H8610"]],[29,31,["H1869"]],[31,33,["H7198"]]]},{"k":20055,"v":[[0,2,["H1931"]],[2,5,["H3117"]],[5,8,["H136"]],[8,9,["H3069"]],[9,11,["H6635"]],[11,13,["H3117"]],[13,15,["H5360"]],[15,19,["H5358"]],[19,23,["H4480","H6862"]],[23,26,["H2719"]],[26,28,["H398"]],[28,33,["H7646"]],[33,36,["H7301"]],[36,39,["H4480","H1818"]],[39,40,["H3588"]],[40,42,["H136"]],[42,43,["H3069"]],[43,45,["H6635"]],[45,48,["H2077"]],[48,51,["H6828"]],[51,52,["H776"]],[52,53,["H413"]],[53,55,["H5104"]],[55,56,["H6578"]]]},{"k":20056,"v":[[0,2,["H5927"]],[2,4,["H1568"]],[4,6,["H3947"]],[6,7,["H6875"]],[7,9,["H1330"]],[9,11,["H1323"]],[11,13,["H4714"]],[13,15,["H7723"]],[15,19,["H7235"]],[19,20,["H7499"]],[20,24,["H369"]],[24,26,["H8585"]]]},{"k":20057,"v":[[0,2,["H1471"]],[2,4,["H8085"]],[4,7,["H7036"]],[7,10,["H6682"]],[10,12,["H4390"]],[12,14,["H776"]],[14,15,["H3588"]],[15,18,["H1368"]],[18,20,["H3782"]],[20,23,["H1368"]],[23,27,["H5307"]],[27,28,["H8147"]],[28,29,["H3162"]]]},{"k":20058,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,5,["H3068"]],[5,6,["H1696"]],[6,7,["H413"]],[7,8,["H3414"]],[8,10,["H5030"]],[10,12,["H5019"]],[12,13,["H4428"]],[13,15,["H894"]],[15,17,["H935"]],[17,19,["H5221","(H853)"]],[19,21,["H776"]],[21,23,["H4714"]]]},{"k":20059,"v":[[0,1,["H5046"]],[1,4,["H4714"]],[4,6,["H8085"]],[6,8,["H4024"]],[8,10,["H8085"]],[10,12,["H5297"]],[12,15,["H8471"]],[15,16,["H559"]],[16,19,["H3320"]],[19,21,["H3559"]],[21,23,["H3588"]],[23,25,["H2719"]],[25,27,["H398"]],[27,29,["H5439"]],[29,30,[]]]},{"k":20060,"v":[[0,1,["H4069"]],[1,4,["H47"]],[4,7,["H5502"]],[7,9,["H5975"]],[9,10,["H3808"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,15,["H1920"]],[15,16,[]]]},{"k":20061,"v":[[0,3,["H7235"]],[3,5,["H3782"]],[5,6,["H1571"]],[6,7,["H376"]],[7,8,["H5307"]],[8,9,["H413"]],[9,10,["H7453"]],[10,13,["H559"]],[13,14,["H6965"]],[14,19,["H7725"]],[19,20,["H413"]],[20,23,["H5971"]],[23,25,["H413"]],[25,27,["H776"]],[27,30,["H4138"]],[30,31,["H4480","H6440"]],[31,33,["H3238"]],[33,34,["H2719"]]]},{"k":20062,"v":[[0,3,["H7121"]],[3,4,["H8033"]],[4,5,["H6547"]],[5,6,["H4428"]],[6,8,["H4714"]],[8,12,["H7588"]],[12,15,["H5674"]],[15,18,["H4150"]]]},{"k":20063,"v":[[0,2,["H589"]],[2,3,["H2416"]],[3,4,["H5002"]],[4,6,["H4428"]],[6,8,["H8034"]],[8,11,["H3068"]],[11,13,["H6635"]],[13,14,["H3588"]],[14,16,["H8396"]],[16,20,["H2022"]],[20,23,["H3760"]],[23,26,["H3220"]],[26,30,["H935"]]]},{"k":20064,"v":[[0,3,["H1323"]],[3,4,["H3427"]],[4,6,["H4714"]],[6,7,["H3627","H6213"]],[7,12,["H1473"]],[12,13,["H3588"]],[13,14,["H5297"]],[14,16,["H1961"]],[16,17,["H8047"]],[17,19,["H3341"]],[19,20,["H4480","H369"]],[20,22,["H3427"]]]},{"k":20065,"v":[[0,1,["H4714"]],[1,6,["H3304"]],[6,7,["H5697"]],[7,9,["H7171"]],[9,10,["H935"]],[10,12,["H935"]],[12,16,["H4480","H6828"]]]},{"k":20066,"v":[[0,1,["H1571"]],[1,4,["H7916"]],[4,8,["H7130"]],[8,12,["H4770"]],[12,13,["H5695"]],[13,14,["H3588"]],[14,15,["H1992"]],[15,16,["H1571"]],[16,19,["H6437"]],[19,23,["H5127"]],[23,24,["H3162"]],[24,27,["H3808"]],[27,28,["H5975"]],[28,29,["H3588"]],[29,31,["H3117"]],[31,34,["H343"]],[34,36,["H935"]],[36,37,["H5921"]],[37,41,["H6256"]],[41,44,["H6486"]]]},{"k":20067,"v":[[0,2,["H6963"]],[2,5,["H1980"]],[5,8,["H5175"]],[8,9,["H3588"]],[9,12,["H1980"]],[12,15,["H2428"]],[15,17,["H935"]],[17,21,["H7134"]],[21,23,["H2404"]],[23,25,["H6086"]]]},{"k":20068,"v":[[0,4,["H3772"]],[4,6,["H3293"]],[6,7,["H5002"]],[7,9,["H3068"]],[9,10,["H3588"]],[10,12,["H3808"]],[12,14,["H2713"]],[14,15,["H3588"]],[15,18,["H7231"]],[18,21,["H4480","H697"]],[21,24,["H369","H4557"]]]},{"k":20069,"v":[[0,2,["H1323"]],[2,4,["H4714"]],[4,7,["H3001"]],[7,11,["H5414"]],[11,14,["H3027"]],[14,17,["H5971"]],[17,20,["H6828"]]]},{"k":20070,"v":[[0,2,["H3068"]],[2,4,["H6635"]],[4,6,["H430"]],[6,8,["H3478"]],[8,9,["H559"]],[9,10,["H2009"]],[10,13,["H6485","H413"]],[13,15,["H528"]],[15,17,["H4480","H4996"]],[17,19,["H6547"]],[19,21,["H4714"]],[21,22,["H5921"]],[22,24,["H430"]],[24,27,["H4428"]],[27,29,["H6547"]],[29,34,["H982"]],[34,36,[]]]},{"k":20071,"v":[[0,4,["H5414"]],[4,8,["H3027"]],[8,12,["H1245"]],[12,14,["H5315"]],[14,18,["H3027"]],[18,20,["H5019"]],[20,21,["H4428"]],[21,23,["H894"]],[23,27,["H3027"]],[27,30,["H5650"]],[30,32,["H310","H3651"]],[32,36,["H7931"]],[36,40,["H3117"]],[40,42,["H6924"]],[42,43,["H5002"]],[43,45,["H3068"]]]},{"k":20072,"v":[[0,2,["H3372"]],[2,3,["H408"]],[3,4,["H859"]],[4,7,["H5650"]],[7,8,["H3290"]],[8,11,["H408"]],[11,12,["H2865"]],[12,14,["H3478"]],[14,15,["H3588"]],[15,16,["H2009"]],[16,19,["H3467"]],[19,23,["H4480","H7350"]],[23,26,["H2233"]],[26,29,["H4480","H776"]],[29,32,["H7628"]],[32,34,["H3290"]],[34,36,["H7725"]],[36,40,["H8252"]],[40,43,["H7599"]],[43,45,["H369"]],[45,49,["H2729"]]]},{"k":20073,"v":[[0,1,["H3372"]],[1,2,["H859"]],[2,3,["H408"]],[3,5,["H3290"]],[5,7,["H5650"]],[7,8,["H5002"]],[8,10,["H3068"]],[10,11,["H3588"]],[11,12,["H589"]],[12,14,["H854"]],[14,16,["H3588"]],[16,19,["H6213"]],[19,22,["H3617"]],[22,24,["H3605"]],[24,26,["H1471"]],[26,27,["H834","H8033"]],[27,30,["H5080"]],[30,35,["H3808"]],[35,36,["H6213"]],[36,39,["H3617"]],[39,43,["H3256"]],[43,46,["H4941"]],[46,50,["H3808"]],[50,53,["H5352"]],[53,54,["H5352"]]]},{"k":20074,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H834"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,11,["H5030"]],[11,12,["H413"]],[12,14,["H6430"]],[14,15,["H2962"]],[15,17,["H6547"]],[17,18,["H5221","(H853)"]],[18,19,["H5804"]]]},{"k":20075,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H2009"]],[5,6,["H4325"]],[6,8,["H5927"]],[8,12,["H4480","H6828"]],[12,15,["H1961"]],[15,17,["H7857"]],[17,18,["H5158"]],[18,21,["H7857"]],[21,23,["H776"]],[23,25,["H4393"]],[25,30,["H5892"]],[30,34,["H3427"]],[34,38,["H120"]],[38,40,["H2199"]],[40,42,["H3605"]],[42,44,["H3427"]],[44,47,["H776"]],[47,49,["H3213"]]]},{"k":20076,"v":[[0,3,["H4480","H6963"]],[3,6,["H8161"]],[6,9,["H6541"]],[9,12,["H47"]],[12,16,["H4480","H7494"]],[16,19,["H7393"]],[19,23,["H1995"]],[23,26,["H1534"]],[26,28,["H1"]],[28,30,["H3808"]],[30,32,["H6437"]],[32,33,["H413"]],[33,35,["H1121"]],[35,37,["H4480","H7510"]],[37,39,["H3027"]]]},{"k":20077,"v":[[0,2,["H5921"]],[2,4,["H3117"]],[4,6,["H935"]],[6,8,["H7703","(H853)"]],[8,9,["H3605"]],[9,11,["H6430"]],[11,15,["H3772"]],[15,17,["H6865"]],[17,19,["H6721"]],[19,20,["H3605"]],[20,21,["H5826"]],[21,23,["H8300"]],[23,24,["H3588"]],[24,26,["H3068"]],[26,28,["H7703","(H853)"]],[28,30,["H6430"]],[30,32,["H7611"]],[32,35,["H339"]],[35,37,["H3731"]]]},{"k":20078,"v":[[0,1,["H7144"]],[1,3,["H935"]],[3,4,["H413"]],[4,5,["H5804"]],[5,6,["H831"]],[6,9,["H1820"]],[9,12,["H7611"]],[12,15,["H6010"]],[15,17,["H5704","H4970"]],[17,21,["H1413"]]]},{"k":20079,"v":[[0,1,["H1945"]],[1,3,["H2719"]],[3,6,["H3068"]],[6,8,["H5704","H575"]],[8,12,["H3808"]],[12,15,["H8252"]],[15,18,["H622"]],[18,19,["H413"]],[19,21,["H8593"]],[21,22,["H7280"]],[22,25,["H1826"]]]},{"k":20080,"v":[[0,1,["H349"]],[1,5,["H8252"]],[5,8,["H3068"]],[8,13,["H6680"]],[13,14,["H413"]],[14,15,["H831"]],[15,17,["H413"]],[17,19,["H3220"]],[19,20,["H2348"]],[20,21,["H8033"]],[21,24,["H3259"]],[24,25,[]]]},{"k":20081,"v":[[0,2,["H4124"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,10,["H430"]],[10,12,["H3478"]],[12,13,["H1945"]],[13,14,["H413"]],[14,15,["H5015"]],[15,16,["H3588"]],[16,19,["H7703"]],[19,20,["H7156"]],[20,22,["H3001"]],[22,24,["H3920"]],[24,25,["H4869"]],[25,27,["H3001"]],[27,29,["H2865"]]]},{"k":20082,"v":[[0,4,["H369"]],[4,5,["H5750"]],[5,6,["H8416"]],[6,8,["H4124"]],[8,10,["H2809"]],[10,13,["H2803"]],[13,14,["H7451"]],[14,15,["H5921"]],[15,17,["H1980"]],[17,23,["H3772"]],[23,27,["H4480","H1471"]],[27,28,["H1571"]],[28,33,["H1826"]],[33,35,["H4086"]],[35,37,["H2719"]],[37,39,["H1980","H310"]],[39,40,[]]]},{"k":20083,"v":[[0,2,["H6963"]],[2,4,["H6818"]],[4,8,["H4480","H2773"]],[8,9,["H7701"]],[9,11,["H1419"]],[11,12,["H7667"]]]},{"k":20084,"v":[[0,1,["H4124"]],[1,3,["H7665"]],[3,6,["H6810"]],[6,10,["H2201"]],[10,13,["H8085"]]]},{"k":20085,"v":[[0,1,["H3588"]],[1,5,["H4608"]],[5,7,["H3872"]],[7,9,["H1065","H1065"]],[9,12,["H5927"]],[12,13,["H3588"]],[13,17,["H4174"]],[17,19,["H2773"]],[19,21,["H6862"]],[21,23,["H8085"]],[23,25,["H6818"]],[25,27,["H7667"]]]},{"k":20086,"v":[[0,1,["H5127"]],[1,2,["H4422"]],[2,4,["H5315"]],[4,6,["H1961"]],[6,9,["H6176"]],[9,12,["H4057"]]]},{"k":20087,"v":[[0,1,["H3588"]],[1,2,["H3282"]],[2,5,["H982"]],[5,8,["H4639"]],[8,12,["H214"]],[12,13,["H859"]],[13,15,["H1571"]],[15,17,["H3920"]],[17,19,["H3645"]],[19,22,["H3318"]],[22,24,["H1473"]],[24,27,["H3548"]],[27,30,["H8269"]],[30,31,["H3162"]]]},{"k":20088,"v":[[0,3,["H7703"]],[3,5,["H935"]],[5,6,["H413"]],[6,7,["H3605"]],[7,8,["H5892"]],[8,10,["H3808"]],[10,11,["H5892"]],[11,13,["H4422"]],[13,15,["H6010"]],[15,18,["H6"]],[18,21,["H4334"]],[21,24,["H8045"]],[24,25,["H834"]],[25,27,["H3068"]],[27,29,["H559"]]]},{"k":20089,"v":[[0,1,["H5414"]],[1,2,["H6731"]],[2,4,["H4124"]],[4,5,["H3588"]],[5,8,["H5323"]],[8,11,["H3318"]],[11,14,["H5892"]],[14,17,["H1961"]],[17,18,["H8047"]],[18,20,["H4480","H369"]],[20,22,["H3427"]],[22,23,["H2004"]]]},{"k":20090,"v":[[0,1,["H779"]],[1,5,["H6213"]],[5,7,["H4399"]],[7,10,["H3068"]],[10,11,["H7423"]],[11,13,["H779"]],[13,18,["H4513"]],[18,20,["H2719"]],[20,22,["H4480","H1818"]]]},{"k":20091,"v":[[0,1,["H4124"]],[1,5,["H7599"]],[5,8,["H4480","H5271"]],[8,10,["H1931"]],[10,12,["H8252"]],[12,13,["H413"]],[13,15,["H8105"]],[15,18,["H3808"]],[18,20,["H7324"]],[20,22,["H4480","H3627"]],[22,23,["H413"]],[23,24,["H3627"]],[24,25,["H3808"]],[25,28,["H1980"]],[28,30,["H1473"]],[30,31,["H5921","H3651"]],[31,33,["H2940"]],[33,34,["H5975"]],[34,39,["H7381"]],[39,41,["H3808"]],[41,42,["H4171"]]]},{"k":20092,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,4,["H3117"]],[4,5,["H935"]],[5,6,["H5002"]],[6,8,["H3068"]],[8,12,["H7971"]],[12,15,["H6808"]],[15,21,["H6808"]],[21,24,["H7324"]],[24,26,["H3627"]],[26,28,["H5310"]],[28,30,["H5035"]]]},{"k":20093,"v":[[0,2,["H4124"]],[2,5,["H954"]],[5,7,["H4480","H3645"]],[7,8,["H834"]],[8,10,["H1004"]],[10,12,["H3478"]],[12,14,["H954"]],[14,16,["H4480","H1008"]],[16,18,["H4009"]]]},{"k":20094,"v":[[0,1,["H349"]],[1,2,["H559"]],[2,4,["H587"]],[4,6,["H1368"]],[6,8,["H2428"]],[8,9,["H376"]],[9,12,["H4421"]]]},{"k":20095,"v":[[0,1,["H4124"]],[1,3,["H7703"]],[3,6,["H5927"]],[6,10,["H5892"]],[10,13,["H4005"]],[13,15,["H970"]],[15,18,["H3381"]],[18,21,["H2874"]],[21,22,["H5002"]],[22,24,["H4428"]],[24,26,["H8034"]],[26,29,["H3068"]],[29,31,["H6635"]]]},{"k":20096,"v":[[0,2,["H343"]],[2,4,["H4124"]],[4,6,["H7138"]],[6,8,["H935"]],[8,11,["H7451"]],[11,12,["H4116"]],[12,13,["H3966"]]]},{"k":20097,"v":[[0,1,["H3605"]],[1,5,["H5439"]],[5,7,["H5110"]],[7,10,["H3605"]],[10,13,["H3045"]],[13,15,["H8034"]],[15,16,["H559"]],[16,17,["H349"]],[17,20,["H5797"]],[20,21,["H4294"]],[21,22,["H7665"]],[22,25,["H8597"]],[25,26,["H4731"]]]},{"k":20098,"v":[[0,2,["H1323"]],[2,5,["H3427"]],[5,6,["H1769"]],[6,8,["H3381"]],[8,11,["H4480","H3519"]],[11,13,["H3427"]],[13,15,["H6772"]],[15,16,["H3588"]],[16,18,["H7703"]],[18,20,["H4124"]],[20,22,["H5927"]],[22,28,["H7843"]],[28,31,["H4013"]]]},{"k":20099,"v":[[0,2,["H3427"]],[2,4,["H6177"]],[4,5,["H5975"]],[5,6,["H413"]],[6,8,["H1870"]],[8,10,["H6822"]],[10,11,["H7592"]],[11,14,["H5127"]],[14,18,["H4422"]],[18,20,["H559"]],[20,21,["H4100"]],[21,22,["H1961"]],[22,23,[]]]},{"k":20100,"v":[[0,1,["H4124"]],[1,3,["H3001"]],[3,4,["H3588"]],[4,8,["H2865"]],[8,9,["H3213"]],[9,11,["H2199"]],[11,12,["H5046"]],[12,16,["H769"]],[16,17,["H3588"]],[17,18,["H4124"]],[18,20,["H7703"]]]},{"k":20101,"v":[[0,2,["H4941"]],[2,4,["H935"]],[4,5,["H413"]],[5,7,["H4334"]],[7,8,["H776"]],[8,9,["H413"]],[9,10,["H2473"]],[10,12,["H413"]],[12,13,["H3096"]],[13,15,["H5921"]],[15,16,["H4158"]]]},{"k":20102,"v":[[0,2,["H5921"]],[2,3,["H1769"]],[3,5,["H5921"]],[5,6,["H5015"]],[6,8,["H5921"]],[8,9,["H1015"]]]},{"k":20103,"v":[[0,2,["H5921"]],[2,3,["H7156"]],[3,5,["H5921"]],[5,6,["H1014"]],[6,8,["H5921"]],[8,9,["H1010"]]]},{"k":20104,"v":[[0,2,["H5921"]],[2,3,["H7152"]],[3,5,["H5921"]],[5,6,["H1224"]],[6,8,["H5921"]],[8,9,["H3605"]],[9,11,["H5892"]],[11,14,["H776"]],[14,16,["H4124"]],[16,17,["H7350"]],[17,19,["H7138"]]]},{"k":20105,"v":[[0,2,["H7161"]],[2,4,["H4124"]],[4,7,["H1438"]],[7,10,["H2220"]],[10,12,["H7665"]],[12,13,["H5002"]],[13,15,["H3068"]]]},{"k":20106,"v":[[0,4,["H7937"]],[4,5,["H3588"]],[5,7,["H1431"]],[7,9,["H5921"]],[9,11,["H3068"]],[11,12,["H4124"]],[12,15,["H5606"]],[15,18,["H6892"]],[18,20,["H1931"]],[20,21,["H1571"]],[21,23,["H1961"]],[23,25,["H7814"]]]},{"k":20107,"v":[[0,1,["H518"]],[1,2,["H1961"]],[2,3,["H3808"]],[3,4,["H3478"]],[4,6,["H7814"]],[6,11,["H4672"]],[11,13,["H1590"]],[13,14,["H3588"]],[14,15,["H4480","H1767"]],[15,17,["H1697"]],[17,23,["H5110"]]]},{"k":20108,"v":[[0,4,["H3427"]],[4,6,["H4124"]],[6,7,["H5800"]],[7,9,["H5892"]],[9,11,["H7931"]],[11,14,["H5553"]],[14,16,["H1961"]],[16,19,["H3123"]],[19,23,["H7077"]],[23,26,["H5676"]],[26,29,["H6354"]],[29,30,["H6310"]]]},{"k":20109,"v":[[0,3,["H8085"]],[3,5,["H1347"]],[5,7,["H4124"]],[7,10,["H3966"]],[10,11,["H1343"]],[11,13,["H1363"]],[13,16,["H1347"]],[16,19,["H1346"]],[19,22,["H7312"]],[22,25,["H3820"]]]},{"k":20110,"v":[[0,1,["H589"]],[1,2,["H3045"]],[2,4,["H5678"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,11,["H3808"]],[11,13,["H3651"]],[13,15,["H907"]],[15,17,["H3808"]],[17,18,["H3651"]],[18,19,["H6213"]],[19,20,[]]]},{"k":20111,"v":[[0,1,["H5921","H3651"]],[1,4,["H3213"]],[4,5,["H5921"]],[5,6,["H4124"]],[6,11,["H2199"]],[11,13,["H3605"]],[13,14,["H4124"]],[14,18,["H1897"]],[18,19,["H413"]],[19,21,["H376"]],[21,23,["H7025"]]]},{"k":20112,"v":[[0,2,["H1612"]],[2,4,["H7643"]],[4,7,["H1058"]],[7,12,["H4480","H1065"]],[12,14,["H3270"]],[14,16,["H5189"]],[16,19,["H5674"]],[19,21,["H3220"]],[21,23,["H5060"]],[23,25,["H5704"]],[25,27,["H3220"]],[27,29,["H3270"]],[29,31,["H7703"]],[31,33,["H5307"]],[33,34,["H5921"]],[34,37,["H7019"]],[37,39,["H5921"]],[39,41,["H1210"]]]},{"k":20113,"v":[[0,2,["H8057"]],[2,4,["H1524"]],[4,6,["H622"]],[6,10,["H4480","H3759"]],[10,14,["H4480","H776"]],[14,16,["H4124"]],[16,21,["H3196"]],[21,23,["H7673"]],[23,26,["H4480","H3342"]],[26,27,["H3808"]],[27,29,["H1869"]],[29,31,["H1959"]],[31,33,["H1959"]],[33,36,["H3808"]],[36,37,["H1959"]]]},{"k":20114,"v":[[0,3,["H4480","H2201"]],[3,5,["H2809"]],[5,7,["H5704"]],[7,8,["H500"]],[8,11,["H5704"]],[11,12,["H3096"]],[12,15,["H5414"]],[15,17,["H6963"]],[17,19,["H4480","H6820"]],[19,21,["H5704"]],[21,22,["H2773"]],[22,25,["H5697"]],[25,29,["H7992"]],[29,30,["H3588"]],[30,32,["H4325"]],[32,33,["H1571"]],[33,35,["H5249"]],[35,37,["H1961"]],[37,38,["H4923"]]]},{"k":20115,"v":[[0,6,["H7673"]],[6,8,["H4124"]],[8,9,["H5002"]],[9,11,["H3068"]],[11,14,["H5927"]],[14,18,["H1116"]],[18,23,["H6999"]],[23,26,["H430"]]]},{"k":20116,"v":[[0,1,["H5921","H3651"]],[1,3,["H3820"]],[3,5,["H1993"]],[5,7,["H4124"]],[7,9,["H2485"]],[9,12,["H3820"]],[12,14,["H1993"]],[14,16,["H2485"]],[16,17,["H413"]],[17,19,["H376"]],[19,21,["H7025"]],[21,22,["H5921","H3651"]],[22,24,["H3502"]],[24,28,["H6213"]],[28,30,["H6"]]]},{"k":20117,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,3,["H7218"]],[3,6,["H7144"]],[6,8,["H3605"]],[8,9,["H2206"]],[9,10,["H1639"]],[10,11,["H5921"]],[11,12,["H3605"]],[12,14,["H3027"]],[14,17,["H1418"]],[17,19,["H5921"]],[19,21,["H4975"]],[21,22,["H8242"]]]},{"k":20118,"v":[[0,4,["H4553"]],[4,5,["H3605"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,9,["H1406"]],[9,11,["H4124"]],[11,15,["H7339"]],[15,17,["H3588"]],[17,20,["H7665","(H853)"]],[20,21,["H4124"]],[21,24,["H3627"]],[24,27,["H369"]],[27,28,["H2656"]],[28,29,["H5002"]],[29,31,["H3068"]]]},{"k":20119,"v":[[0,3,["H3213"]],[3,5,["H349"]],[5,9,["H2865"]],[9,10,["H349"]],[10,12,["H4124"]],[12,13,["H6437"]],[13,15,["H6203"]],[15,17,["H954"]],[17,20,["H4124"]],[20,21,["H1961"]],[21,23,["H7814"]],[23,26,["H4288"]],[26,28,["H3605"]],[28,30,["H5439"]],[30,31,[]]]},{"k":20120,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,9,["H1675"]],[9,12,["H5404"]],[12,15,["H6566"]],[15,17,["H3671"]],[17,18,["H413"]],[18,19,["H4124"]]]},{"k":20121,"v":[[0,1,["H7152"]],[1,3,["H3920"]],[3,7,["H4679"]],[7,9,["H8610"]],[9,13,["H1368"]],[13,14,["H3820"]],[14,16,["H4124"]],[16,18,["H1931"]],[18,19,["H3117"]],[19,21,["H1961"]],[21,24,["H3820"]],[24,27,["H802"]],[27,30,["H6887"]]]},{"k":20122,"v":[[0,2,["H4124"]],[2,5,["H8045"]],[5,9,["H4480","H5971"]],[9,10,["H3588"]],[10,13,["H1431"]],[13,15,["H5921"]],[15,17,["H3068"]]]},{"k":20123,"v":[[0,1,["H6343"]],[1,4,["H6354"]],[4,7,["H6341"]],[7,10,["H5921"]],[10,13,["H3427"]],[13,15,["H4124"]],[15,16,["H5002"]],[16,18,["H3068"]]]},{"k":20124,"v":[[0,3,["H5211"]],[3,4,["H4480","H6440"]],[4,6,["H6343"]],[6,8,["H5307"]],[8,9,["H413"]],[9,11,["H6354"]],[11,16,["H5927"]],[16,18,["H4480"]],[18,20,["H6354"]],[20,23,["H3920"]],[23,26,["H6341"]],[26,27,["H3588"]],[27,30,["H935"]],[30,31,["H413"]],[31,34,["H413"]],[34,35,["H4124"]],[35,37,["H8141"]],[37,40,["H6486"]],[40,41,["H5002"]],[41,43,["H3068"]]]},{"k":20125,"v":[[0,3,["H5127"]],[3,4,["H5975"]],[4,7,["H6738"]],[7,9,["H2809"]],[9,13,["H4480","H3581"]],[13,14,["H3588"]],[14,16,["H784"]],[16,19,["H3318"]],[19,22,["H4480","H2809"]],[22,25,["H3852"]],[25,28,["H4480","H996"]],[28,30,["H5511"]],[30,33,["H398"]],[33,35,["H6285"]],[35,37,["H4124"]],[37,43,["H6936"]],[43,46,["H7588"]],[46,47,["H1121"]]]},{"k":20126,"v":[[0,1,["H188"]],[1,6,["H4124"]],[6,8,["H5971"]],[8,10,["H3645"]],[10,11,["H6"]],[11,12,["H3588"]],[12,14,["H1121"]],[14,16,["H3947"]],[16,17,["H7628"]],[17,20,["H1323"]],[20,21,["H7633"]]]},{"k":20127,"v":[[0,5,["H7725"]],[5,7,["H7622"]],[7,9,["H4124"]],[9,12,["H319"]],[12,13,["H3117"]],[13,14,["H5002"]],[14,16,["H3068"]],[16,17,["H2008"]],[17,18,["H5704"]],[18,21,["H4941"]],[21,23,["H4124"]]]},{"k":20128,"v":[[0,3,["H1121","H5984"]],[3,4,["H3541"]],[4,5,["H559"]],[5,7,["H3068"]],[7,9,["H3478"]],[9,10,["H369"]],[10,11,["H1121"]],[11,14,["H369"]],[14,15,["H3423"]],[15,16,["H4069"]],[16,20,["H4428"]],[20,21,["H3423","(H853)"]],[21,22,["H1410"]],[22,25,["H5971"]],[25,26,["H3427"]],[26,29,["H5892"]]]},{"k":20129,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,4,["H3117"]],[4,5,["H935"]],[5,6,["H559"]],[6,8,["H3068"]],[8,14,["H8643"]],[14,16,["H4421"]],[16,19,["H8085"]],[19,20,["H413"]],[20,21,["H7237"]],[21,24,["H1121","H5983"]],[24,28,["H1961"]],[28,30,["H8077"]],[30,31,["H8510"]],[31,34,["H1323"]],[34,37,["H3341"]],[37,39,["H784"]],[39,42,["H3478"]],[42,44,["H3423"]],[44,48,["(H853)"]],[48,50,["H3423"]],[50,51,["H5002"]],[51,53,["H3068"]]]},{"k":20130,"v":[[0,1,["H3213"]],[1,3,["H2809"]],[3,4,["H3588"]],[4,5,["H5857"]],[5,7,["H7703"]],[7,8,["H6817"]],[8,10,["H1323"]],[10,12,["H7237"]],[12,13,["H2296"]],[13,16,["H8242"]],[16,17,["H5594"]],[17,22,["H7751"]],[22,25,["H1448"]],[25,26,["H3588"]],[26,28,["H4428"]],[28,30,["H1980"]],[30,32,["H1473"]],[32,35,["H3548"]],[35,38,["H8269"]],[38,39,["H3162"]]]},{"k":20131,"v":[[0,1,["H4100"]],[1,2,["H1984"]],[2,6,["H6010"]],[6,8,["H2100"]],[8,9,["H6010"]],[9,11,["H7728"]],[11,12,["H1323"]],[12,14,["H982"]],[14,17,["H214"]],[17,19,["H4310"]],[19,21,["H935"]],[21,22,["H413"]],[22,23,[]]]},{"k":20132,"v":[[0,1,["H2009"]],[1,4,["H935"]],[4,6,["H6343"]],[6,7,["H5921"]],[7,9,["H5002"]],[9,11,["H136"]],[11,12,["H3069"]],[12,14,["H6635"]],[14,16,["H4480","H3605"]],[16,20,["H5439"]],[20,27,["H5080"]],[27,29,["H376"]],[29,31,["H6440"]],[31,33,["H369"]],[33,36,["H6908"]],[36,39,["H5074"]]]},{"k":20133,"v":[[0,2,["H310","H3651"]],[2,6,["H7725","(H853)"]],[6,8,["H7622"]],[8,11,["H1121"]],[11,13,["H5983"]],[13,14,["H5002"]],[14,16,["H3068"]]]},{"k":20134,"v":[[0,2,["H123"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,10,["H2451"]],[10,11,["H369"]],[11,12,["H5750"]],[12,14,["H8487"]],[14,16,["H6098"]],[16,17,["H6"]],[17,20,["H4480","H995"]],[20,23,["H2451"]],[23,24,["H5628"]]]},{"k":20135,"v":[[0,1,["H5127"]],[1,4,["H6437"]],[4,5,["H3427"]],[5,6,["H6009"]],[6,8,["H3427"]],[8,10,["H1719"]],[10,11,["H3588"]],[11,14,["H935"]],[14,16,["H343"]],[16,18,["H6215"]],[18,19,["H5921"]],[19,22,["H6256"]],[22,26,["H6485"]],[26,27,[]]]},{"k":20136,"v":[[0,1,["H518"]],[1,2,["H1219"]],[2,3,["H935"]],[3,8,["H3808"]],[8,9,["H7604"]],[9,12,["H5955"]],[12,13,["H518"]],[13,14,["H1590"]],[14,16,["H3915"]],[16,19,["H7843"]],[19,23,["H1767"]]]},{"k":20137,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,4,["(H853)"]],[4,5,["H6215"]],[5,6,["H2834"]],[6,9,["H1540","(H853)"]],[9,12,["H4565"]],[12,16,["H3808"]],[16,18,["H3201"]],[18,21,["H2247"]],[21,23,["H2233"]],[23,25,["H7703"]],[25,28,["H251"]],[28,31,["H7934"]],[31,35,["H369"]]]},{"k":20138,"v":[[0,1,["H5800"]],[1,4,["H3490"]],[4,5,["H589"]],[5,9,["H2421"]],[9,13,["H490"]],[13,14,["H982"]],[14,15,["H5921"]],[15,16,[]]]},{"k":20139,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,8,["H834"]],[8,9,["H4941"]],[9,11,["H369"]],[11,13,["H8354"]],[13,16,["H3563"]],[16,19,["H8354","H8354"]],[19,22,["H859"]],[22,23,["H1931"]],[23,28,["H5352","H5352"]],[28,31,["H3808"]],[31,33,["H5352"]],[33,34,["H3588"]],[34,38,["H8354","H8354"]],[38,40,[]]]},{"k":20140,"v":[[0,1,["H3588"]],[1,4,["H7650"]],[4,7,["H5002"]],[7,9,["H3068"]],[9,10,["H3588"]],[10,11,["H1224"]],[11,13,["H1961"]],[13,15,["H8047"]],[15,17,["H2781"]],[17,19,["H2721"]],[19,22,["H7045"]],[22,24,["H3605"]],[24,26,["H5892"]],[26,29,["H1961"]],[29,30,["H5769"]],[30,31,["H2723"]]]},{"k":20141,"v":[[0,3,["H8085"]],[3,5,["H8052"]],[5,6,["H4480","H854"]],[6,8,["H3068"]],[8,11,["H6735"]],[11,13,["H7971"]],[13,16,["H1471"]],[16,20,["H6908"]],[20,22,["H935"]],[22,23,["H5921"]],[23,27,["H6965"]],[27,30,["H4421"]]]},{"k":20142,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,5,["H5414"]],[5,7,["H6996"]],[7,10,["H1471"]],[10,12,["H959"]],[12,14,["H120"]]]},{"k":20143,"v":[[0,2,["H8606"]],[2,4,["H5377"]],[4,8,["H2087"]],[8,11,["H3820"]],[11,15,["H7931"]],[15,18,["H2288"]],[18,21,["H5553"]],[21,23,["H8610"]],[23,25,["H4791"]],[25,28,["H1389"]],[28,29,["H3588"]],[29,34,["H7064"]],[34,36,["H1361"]],[36,39,["H5404"]],[39,44,["H3381"]],[44,46,["H4480","H8033"]],[46,47,["H5002"]],[47,49,["H3068"]]]},{"k":20144,"v":[[0,2,["H123"]],[2,4,["H1961"]],[4,6,["H8047"]],[6,8,["H3605"]],[8,10,["H5674"]],[10,11,["H5921"]],[11,15,["H8074"]],[15,18,["H8319"]],[18,19,["H5921"]],[19,20,["H3605"]],[20,22,["H4347"]],[22,23,[]]]},{"k":20145,"v":[[0,4,["H4114"]],[4,6,["H5467"]],[6,8,["H6017"]],[8,11,["H7934"]],[11,14,["H559"]],[14,16,["H3068"]],[16,17,["H3808"]],[17,18,["H376"]],[18,20,["H3427"]],[20,21,["H8033"]],[21,22,["H3808"]],[22,25,["H1121"]],[25,27,["H120"]],[27,28,["H1481"]],[28,30,[]]]},{"k":20146,"v":[[0,1,["H2009"]],[1,5,["H5927"]],[5,8,["H738"]],[8,11,["H4480","H1347"]],[11,13,["H3383"]],[13,14,["H413"]],[14,16,["H5116"]],[16,19,["H386"]],[19,20,["H3588"]],[20,23,["H7280"]],[23,27,["H7323"]],[27,28,["H4480","H5921"]],[28,31,["H4310"]],[31,34,["H977"]],[34,39,["H6485"]],[39,40,["H413"]],[40,42,["H3588"]],[42,43,["H4310"]],[43,46,["H3644"]],[46,48,["H4310"]],[48,50,["H3259"]],[50,55,["H4310"]],[55,57,["H2088"]],[57,58,["H7462"]],[58,59,["H834"]],[59,61,["H5975"]],[61,62,["H6440"]],[62,63,[]]]},{"k":20147,"v":[[0,1,["H3651"]],[1,2,["H8085"]],[2,4,["H6098"]],[4,7,["H3068"]],[7,8,["H834"]],[8,11,["H3289"]],[11,12,["H413"]],[12,13,["H123"]],[13,16,["H4284"]],[16,17,["H834"]],[17,20,["H2803"]],[20,21,["H413"]],[21,23,["H3427"]],[23,25,["H8487"]],[25,26,["H518","H3808"]],[26,28,["H6810"]],[28,31,["H6629"]],[31,35,["H5498"]],[35,36,["H518","H3808"]],[36,41,["H5116"]],[41,42,["H8074"]],[42,43,["H5921"]],[43,44,[]]]},{"k":20148,"v":[[0,2,["H776"]],[2,4,["H7493"]],[4,7,["H4480","H6963"]],[7,10,["H5307"]],[10,13,["H6818"]],[13,15,["H6963"]],[15,18,["H8085"]],[18,21,["H5488"]],[21,22,["H3220"]]]},{"k":20149,"v":[[0,1,["H2009"]],[1,5,["H5927"]],[5,7,["H1675"]],[7,10,["H5404"]],[10,12,["H6566"]],[12,14,["H3671"]],[14,15,["H5921"]],[15,16,["H1224"]],[16,19,["H1931"]],[19,20,["H3117"]],[20,23,["H3820"]],[23,27,["H1368"]],[27,29,["H123"]],[29,30,["H1961"]],[30,33,["H3820"]],[33,36,["H802"]],[36,39,["H6887"]]]},{"k":20150,"v":[[0,2,["H1834"]],[2,3,["H2574"]],[3,5,["H954"]],[5,7,["H774"]],[7,8,["H3588"]],[8,11,["H8085"]],[11,12,["H7451"]],[12,13,["H8052"]],[13,16,["H4127"]],[16,19,["H1674"]],[19,22,["H3220"]],[22,24,["H3808","H3201"]],[24,26,["H8252"]]]},{"k":20151,"v":[[0,1,["H1834"]],[1,4,["H7503"]],[4,7,["H6437"]],[7,9,["H5127"]],[9,11,["H7374"]],[11,13,["H2388"]],[13,16,["H6869"]],[16,18,["H2256"]],[18,20,["H270"]],[20,26,["H3205"]]]},{"k":20152,"v":[[0,1,["H349"]],[1,4,["H5892"]],[4,6,["H8416"]],[6,7,["H3808"]],[7,8,["H5800"]],[8,10,["H7151"]],[10,13,["H4885"]]]},{"k":20153,"v":[[0,1,["H3651"]],[1,4,["H970"]],[4,6,["H5307"]],[6,9,["H7339"]],[9,11,["H3605"]],[11,13,["H376"]],[13,15,["H4421"]],[15,19,["H1826"]],[19,21,["H1931"]],[21,22,["H3117"]],[22,23,["H5002"]],[23,25,["H3068"]],[25,27,["H6635"]]]},{"k":20154,"v":[[0,4,["H3341"]],[4,6,["H784"]],[6,9,["H2346"]],[9,11,["H1834"]],[11,15,["H398"]],[15,17,["H759"]],[17,19,["H1130"]]]},{"k":20155,"v":[[0,2,["H6938"]],[2,6,["H4467"]],[6,8,["H2674"]],[8,9,["H834"]],[9,10,["H5019"]],[10,11,["H4428"]],[11,13,["H894"]],[13,15,["H5221"]],[15,16,["H3541"]],[16,17,["H559"]],[17,19,["H3068"]],[19,20,["H6965"]],[20,23,["H5927"]],[23,24,["H413"]],[24,25,["H6938"]],[25,27,["H7703","(H853)"]],[27,29,["H1121"]],[29,32,["H6924"]]]},{"k":20156,"v":[[0,2,["H168"]],[2,5,["H6629"]],[5,9,["H3947"]],[9,12,["H5375"]],[12,16,["H3407"]],[16,18,["H3605"]],[18,20,["H3627"]],[20,23,["H1581"]],[23,27,["H7121"]],[27,28,["H5921"]],[28,30,["H4032"]],[30,34,["H4480","H5439"]]]},{"k":20157,"v":[[0,1,["H5127"]],[1,2,["H5110"]],[2,5,["H3966"]],[5,6,["H3427"]],[6,7,["H6009"]],[7,10,["H3427"]],[10,12,["H2674"]],[12,13,["H5002"]],[13,15,["H3068"]],[15,16,["H3588"]],[16,17,["H5019"]],[17,18,["H4428"]],[18,20,["H894"]],[20,22,["H3289"]],[22,23,["H6098"]],[23,24,["H5921"]],[24,28,["H2803"]],[28,30,["H4284"]],[30,31,["H5921"]],[31,32,[]]]},{"k":20158,"v":[[0,1,["H6965"]],[1,4,["H5927"]],[4,5,["H413"]],[5,7,["H7961"]],[7,8,["H1471"]],[8,10,["H3427"]],[10,12,["H983"]],[12,13,["H5002"]],[13,15,["H3068"]],[15,18,["H3808"]],[18,19,["H1817"]],[19,20,["H3808"]],[20,21,["H1280"]],[21,23,["H7931"]],[23,24,["H910"]]]},{"k":20159,"v":[[0,3,["H1581"]],[3,5,["H1961"]],[5,7,["H957"]],[7,10,["H1995"]],[10,13,["H4735"]],[13,15,["H7998"]],[15,19,["H2219"]],[19,21,["H3605"]],[21,22,["H7307"]],[22,28,["H7112"]],[28,29,["H6285"]],[29,33,["H935","(H853)"]],[33,35,["H343"]],[35,37,["H4480","H3605"]],[37,38,["H5676"]],[38,40,["H5002"]],[40,42,["H3068"]]]},{"k":20160,"v":[[0,2,["H2674"]],[2,4,["H1961"]],[4,6,["H4583"]],[6,8,["H8577"]],[8,11,["H8077"]],[11,13,["H5704","H5769"]],[13,16,["H3808"]],[16,17,["H376"]],[17,18,["H3427"]],[18,19,["H8033"]],[19,20,["H3808"]],[20,22,["H1121"]],[22,24,["H120"]],[24,25,["H1481"]],[25,27,[]]]},{"k":20161,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H834"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,11,["H5030"]],[11,12,["H413"]],[12,13,["H5867"]],[13,16,["H7225"]],[16,19,["H4438"]],[19,21,["H6667"]],[21,22,["H4428"]],[22,24,["H3063"]],[24,25,["H559"]]]},{"k":20162,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H2009"]],[7,10,["H7665","(H853)"]],[10,12,["H7198"]],[12,14,["H5867"]],[14,16,["H7225"]],[16,19,["H1369"]]]},{"k":20163,"v":[[0,2,["H413"]],[2,3,["H5867"]],[3,6,["H935"]],[6,8,["H702"]],[8,9,["H7307"]],[9,12,["H4480","H702"]],[12,13,["H7098"]],[13,15,["H8064"]],[15,18,["H2219"]],[18,21,["H3605"]],[21,22,["H428"]],[22,23,["H7307"]],[23,27,["H1961"]],[27,28,["H3808"]],[28,29,["H1471"]],[29,30,["H834","H8033"]],[30,32,["H5080"]],[32,34,["H5867"]],[34,36,["H3808"]],[36,37,["H935"]]]},{"k":20164,"v":[[0,4,["(H853)"]],[4,5,["H5867"]],[5,8,["H2865"]],[8,9,["H6440"]],[9,11,["H341"]],[11,13,["H6440"]],[13,16,["H1245"]],[16,18,["H5315"]],[18,22,["H935"]],[22,23,["H7451"]],[23,24,["H5921"]],[24,26,["(H853)"]],[26,28,["H2740"]],[28,29,["H639"]],[29,30,["H5002"]],[30,32,["H3068"]],[32,36,["H7971","(H853)"]],[36,38,["H2719"]],[38,39,["H310"]],[39,41,["H5704"]],[41,44,["H3615"]],[44,45,[]]]},{"k":20165,"v":[[0,4,["H7760"]],[4,6,["H3678"]],[6,8,["H5867"]],[8,11,["H6"]],[11,13,["H4480","H8033"]],[13,15,["H4428"]],[15,18,["H8269"]],[18,19,["H5002"]],[19,21,["H3068"]]]},{"k":20166,"v":[[0,6,["H1961"]],[6,9,["H319"]],[9,10,["H3117"]],[10,15,["H7725","(H853)"]],[15,17,["H7622"]],[17,19,["H5867"]],[19,20,["H5002"]],[20,22,["H3068"]]]},{"k":20167,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,5,["H3068"]],[5,6,["H1696"]],[6,7,["H413"]],[7,8,["H894"]],[8,10,["H413"]],[10,12,["H776"]],[12,15,["H3778"]],[15,16,["H3027"]],[16,17,["H3414"]],[17,19,["H5030"]]]},{"k":20168,"v":[[0,1,["H5046"]],[1,5,["H1471"]],[5,7,["H8085"]],[7,10,["H5375"]],[10,12,["H5251"]],[12,13,["H8085"]],[13,15,["H3582"]],[15,16,["H408"]],[16,17,["H559"]],[17,18,["H894"]],[18,20,["H3920"]],[20,21,["H1078"]],[21,23,["H3001"]],[23,24,["H4781"]],[24,28,["H2844"]],[28,30,["H6091"]],[30,32,["H3001"]],[32,34,["H1544"]],[34,38,["H2865"]]]},{"k":20169,"v":[[0,1,["H3588"]],[1,5,["H4480","H6828"]],[5,8,["H5927"]],[8,10,["H1471"]],[10,11,["H5921"]],[11,13,["H1931"]],[13,15,["H7896","(H853)"]],[15,17,["H776"]],[17,18,["H8047"]],[18,20,["H3808"]],[20,21,["H1961"]],[21,22,["H3427"]],[22,26,["H5110"]],[26,29,["H1980"]],[29,31,["H4480","H120"]],[31,33,["H929"]]]},{"k":20170,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,6,["H1931"]],[6,7,["H6256"]],[7,8,["H5002"]],[8,10,["H3068"]],[10,12,["H1121"]],[12,14,["H3478"]],[14,16,["H935"]],[16,17,["H1992"]],[17,20,["H1121"]],[20,22,["H3063"]],[22,23,["H3162"]],[23,24,["H1980"]],[24,26,["H1058"]],[26,29,["H1980"]],[29,31,["H1245"]],[31,33,["H3068"]],[33,35,["H430"]]]},{"k":20171,"v":[[0,3,["H7592"]],[3,5,["H1870"]],[5,7,["H6726"]],[7,10,["H6440"]],[10,11,["H2008"]],[11,13,["H935"]],[13,18,["H3867"]],[18,19,["H413"]],[19,21,["H3068"]],[21,24,["H5769"]],[24,25,["H1285"]],[25,28,["H3808"]],[28,30,["H7911"]]]},{"k":20172,"v":[[0,2,["H5971"]],[2,4,["H1961"]],[4,5,["H6"]],[5,6,["H6629"]],[6,8,["H7462"]],[8,14,["H8582"]],[14,19,["H7725"]],[19,22,["H2022"]],[22,25,["H1980"]],[25,27,["H4480","H2022"]],[27,28,["H413"]],[28,29,["H1389"]],[29,32,["H7911"]],[32,34,["H7258"]]]},{"k":20173,"v":[[0,1,["H3605"]],[1,3,["H4672"]],[3,6,["H398"]],[6,10,["H6862"]],[10,11,["H559"]],[11,13,["H816"]],[13,14,["H3808"]],[14,15,["H8478","H834"]],[15,18,["H2398"]],[18,21,["H3068"]],[21,23,["H5116"]],[23,25,["H6664"]],[25,28,["H3068"]],[28,30,["H4723"]],[30,33,["H1"]]]},{"k":20174,"v":[[0,1,["H5110"]],[1,5,["H4480","H8432"]],[5,7,["H894"]],[7,10,["H3318"]],[10,14,["H4480","H776"]],[14,17,["H3778"]],[17,19,["H1961"]],[19,23,["H6260"]],[23,24,["H6440"]],[24,26,["H6629"]]]},{"k":20175,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,3,["H595"]],[3,5,["H5782"]],[5,10,["H5927"]],[10,11,["H5921"]],[11,12,["H894"]],[12,14,["H6951"]],[14,16,["H1419"]],[16,17,["H1471"]],[17,20,["H6828"]],[20,21,["H4480","H776"]],[21,28,["H6186"]],[28,32,["H4480","H8033"]],[32,36,["H3920"]],[36,38,["H2671"]],[38,44,["H1368"]],[44,45,["H7919"]],[45,47,["H3808"]],[47,49,["H7725"]],[49,51,["H7387"]]]},{"k":20176,"v":[[0,2,["H3778"]],[2,4,["H1961"]],[4,6,["H7997"]],[6,7,["H3605"]],[7,9,["H7998"]],[9,13,["H7646"]],[13,14,["H5002"]],[14,16,["H3068"]]]},{"k":20177,"v":[[0,1,["H3588"]],[1,4,["H8055"]],[4,5,["H3588"]],[5,7,["H5937"]],[7,10,["H8154"]],[10,13,["H5159"]],[13,14,["H3588"]],[14,18,["H6335"]],[18,21,["H5697"]],[21,23,["H1877"]],[23,25,["H6670"]],[25,27,["H47"]]]},{"k":20178,"v":[[0,2,["H517"]],[2,5,["H3966"]],[5,6,["H954"]],[6,9,["H3205"]],[9,13,["H2659"]],[13,14,["H2009"]],[14,16,["H319"]],[16,19,["H1471"]],[19,23,["H4057"]],[23,26,["H6723"]],[26,29,["H6160"]]]},{"k":20179,"v":[[0,4,["H4480","H7110"]],[4,7,["H3068"]],[7,10,["H3808"]],[10,12,["H3427"]],[12,16,["H1961"]],[16,17,["H3605"]],[17,18,["H8077"]],[18,20,["H3605"]],[20,22,["H5674"]],[22,23,["H5921"]],[23,24,["H894"]],[24,27,["H8074"]],[27,29,["H8319"]],[29,30,["H5921"]],[30,31,["H3605"]],[31,33,["H4347"]]]},{"k":20180,"v":[[0,4,["H6186"]],[4,5,["H5921"]],[5,6,["H894"]],[6,8,["H5439"]],[8,9,["H3605"]],[9,12,["H1869"]],[12,14,["H7198"]],[14,15,["H3034"]],[15,16,["H413"]],[16,18,["H2550"]],[18,19,["H408"]],[19,20,["H2671"]],[20,21,["H3588"]],[21,24,["H2398"]],[24,27,["H3068"]]]},{"k":20181,"v":[[0,1,["H7321"]],[1,2,["H5921"]],[2,5,["H5439"]],[5,8,["H5414"]],[8,10,["H3027"]],[10,12,["H803"]],[12,14,["H5307"]],[14,16,["H2346"]],[16,19,["H2040"]],[19,20,["H3588"]],[20,21,["H1931"]],[21,24,["H5360"]],[24,27,["H3068"]],[27,29,["H5358"]],[29,32,["H834"]],[32,35,["H6213"]],[35,36,["H6213"]],[36,38,[]]]},{"k":20182,"v":[[0,2,["H3772"]],[2,4,["H2232"]],[4,6,["H4480","H894"]],[6,10,["H8610"]],[10,12,["H4038"]],[12,15,["H6256"]],[15,17,["H7105"]],[17,19,["H4480","H6440"]],[19,22,["H3238"]],[22,23,["H2719"]],[23,26,["H6437"]],[26,28,["H376"]],[28,29,["H413"]],[29,31,["H5971"]],[31,35,["H5127"]],[35,37,["H376"]],[37,41,["H776"]]]},{"k":20183,"v":[[0,1,["H3478"]],[1,4,["H6340"]],[4,5,["H7716"]],[5,7,["H738"]],[7,11,["H5080"]],[11,12,["H7223"]],[12,14,["H4428"]],[14,16,["H804"]],[16,18,["H398"]],[18,21,["H314"]],[21,22,["H2088"]],[22,23,["H5019"]],[23,24,["H4428"]],[24,26,["H894"]],[26,30,["H6105"]]]},{"k":20184,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,12,["H2009"]],[12,15,["H6485","H413"]],[15,17,["H4428"]],[17,19,["H894"]],[19,22,["H776"]],[22,23,["H834"]],[23,26,["H6485","H413"]],[26,28,["H4428"]],[28,30,["H804"]]]},{"k":20185,"v":[[0,4,["H7725","(H853)"]],[4,5,["H3478"]],[5,7,["H413"]],[7,9,["H5116"]],[9,13,["H7462"]],[13,15,["H3760"]],[15,17,["H1316"]],[17,20,["H5315"]],[20,23,["H7646"]],[23,25,["H2022"]],[25,26,["H669"]],[26,28,["H1568"]]]},{"k":20186,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,6,["H1931"]],[6,7,["H6256"]],[7,8,["H5002"]],[8,10,["H3068","(H853)"]],[10,12,["H5771"]],[12,14,["H3478"]],[14,18,["H1245"]],[18,23,["H369"]],[23,26,["H2403"]],[26,28,["H3063"]],[28,32,["H3808"]],[32,34,["H4672"]],[34,35,["H3588"]],[35,38,["H5545"]],[38,40,["H834"]],[40,42,["H7604"]]]},{"k":20187,"v":[[0,2,["H5927"]],[2,3,["H5921"]],[3,5,["H776"]],[5,7,["H4850"]],[7,9,["H5921"]],[9,12,["H413"]],[12,14,["H3427"]],[14,16,["H6489"]],[16,17,["H2717"]],[17,20,["H2763"]],[20,21,["H310"]],[21,23,["H5002"]],[23,25,["H3068"]],[25,27,["H6213"]],[27,30,["H3605"]],[30,31,["H834"]],[31,34,["H6680"]],[34,35,[]]]},{"k":20188,"v":[[0,2,["H6963"]],[2,4,["H4421"]],[4,8,["H776"]],[8,11,["H1419"]],[11,12,["H7667"]]]},{"k":20189,"v":[[0,1,["H349"]],[1,4,["H6360"]],[4,7,["H3605"]],[7,8,["H776"]],[8,10,["H1438"]],[10,12,["H7665"]],[12,13,["H349"]],[13,15,["H894"]],[15,16,["H1961"]],[16,18,["H8047"]],[18,21,["H1471"]]]},{"k":20190,"v":[[0,5,["H3369"]],[5,11,["H1571"]],[11,12,["H3920"]],[12,14,["H894"]],[14,16,["H859"]],[16,18,["H3808"]],[18,19,["H3045"]],[19,22,["H4672"]],[22,24,["H1571"]],[24,25,["H8610"]],[25,26,["H3588"]],[26,29,["H1624"]],[29,32,["H3068"]]]},{"k":20191,"v":[[0,2,["H3068"]],[2,4,["H6605","(H853)"]],[4,6,["H214"]],[6,10,["H3318","(H853)"]],[10,12,["H3627"]],[12,15,["H2195"]],[15,16,["H3588"]],[16,17,["H1931"]],[17,20,["H4399"]],[20,23,["H136"]],[23,24,["H3069"]],[24,26,["H6635"]],[26,29,["H776"]],[29,32,["H3778"]]]},{"k":20192,"v":[[0,1,["H935"]],[1,7,["H4480","H7093"]],[7,8,["H6605"]],[8,10,["H3965"]],[10,13,["H5549"]],[13,15,["H6194"]],[15,17,["H2763"]],[17,21,["H408"]],[21,24,["H1961"]],[24,25,["H7611"]]]},{"k":20193,"v":[[0,1,["H2717"]],[1,2,["H3605"]],[2,4,["H6499"]],[4,8,["H3381"]],[8,11,["H2874"]],[11,12,["H1945"]],[12,13,["H5921"]],[13,15,["H3588"]],[15,17,["H3117"]],[17,19,["H935"]],[19,21,["H6256"]],[21,24,["H6486"]]]},{"k":20194,"v":[[0,2,["H6963"]],[2,6,["H5127"]],[6,8,["H6412"]],[8,12,["H4480","H776"]],[12,14,["H894"]],[14,16,["H5046"]],[16,18,["H6726","(H853)"]],[18,20,["H5360"]],[20,23,["H3068"]],[23,25,["H430"]],[25,27,["H5360"]],[27,30,["H1964"]]]},{"k":20195,"v":[[0,2,["H8085"]],[2,4,["H7228"]],[4,5,["H413"]],[5,6,["H894"]],[6,7,["H3605"]],[7,10,["H1869"]],[10,12,["H7198"]],[12,13,["H2583"]],[13,14,["H5921"]],[14,17,["H5439"]],[17,18,["H1961"]],[18,19,["H408"]],[19,21,["H6413"]],[21,22,["H7999"]],[22,27,["H6467"]],[27,30,["H3605"]],[30,31,["H834"]],[31,34,["H6213"]],[34,35,["H6213"]],[35,38,["H3588"]],[38,42,["H2102"]],[42,43,["H413"]],[43,45,["H3068"]],[45,46,["H413"]],[46,49,["H6918"]],[49,51,["H3478"]]]},{"k":20196,"v":[[0,1,["H3651"]],[1,5,["H970"]],[5,6,["H5307"]],[6,9,["H7339"]],[9,11,["H3605"]],[11,13,["H376"]],[13,15,["H4421"]],[15,19,["H1826"]],[19,21,["H1931"]],[21,22,["H3117"]],[22,23,["H5002"]],[23,25,["H3068"]]]},{"k":20197,"v":[[0,1,["H2009"]],[1,4,["H413"]],[4,9,["H2087"]],[9,10,["H5002"]],[10,12,["H136"]],[12,13,["H3069"]],[13,15,["H6635"]],[15,16,["H3588"]],[16,18,["H3117"]],[18,20,["H935"]],[20,22,["H6256"]],[22,26,["H6485"]],[26,27,[]]]},{"k":20198,"v":[[0,4,["H2087"]],[4,6,["H3782"]],[6,8,["H5307"]],[8,10,["H369"]],[10,14,["H6965"]],[14,18,["H3341"]],[18,20,["H784"]],[20,23,["H5892"]],[23,27,["H398"]],[27,28,["H3605"]],[28,30,["H5439"]],[30,31,[]]]},{"k":20199,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,13,["H1121"]],[13,15,["H3063"]],[15,17,["H6231"]],[17,18,["H3162"]],[18,20,["H3605"]],[20,24,["H7617"]],[24,27,["H2388"]],[27,29,["H3985"]],[29,33,["H7971"]]]},{"k":20200,"v":[[0,2,["H1350"]],[2,4,["H2389"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,11,["H8034"]],[11,15,["H7378","H7378","(H853)"]],[15,17,["H7379"]],[17,18,["H4616"]],[18,22,["H7280","(H853)"]],[22,25,["H776"]],[25,27,["H7264"]],[27,29,["H3427"]],[29,31,["H894"]]]},{"k":20201,"v":[[0,2,["H2719"]],[2,4,["H5921"]],[4,6,["H3778"]],[6,7,["H5002"]],[7,9,["H3068"]],[9,11,["H413"]],[11,13,["H3427"]],[13,15,["H894"]],[15,17,["H413"]],[17,19,["H8269"]],[19,21,["H413"]],[21,23,["H2450"]],[23,24,[]]]},{"k":20202,"v":[[0,2,["H2719"]],[2,4,["H413"]],[4,6,["H907"]],[6,10,["H2973"]],[10,12,["H2719"]],[12,14,["H413"]],[14,17,["H1368"]],[17,22,["H2865"]]]},{"k":20203,"v":[[0,2,["H2719"]],[2,4,["H413"]],[4,6,["H5483"]],[6,8,["H413"]],[8,10,["H7393"]],[10,12,["H413"]],[12,13,["H3605"]],[13,16,["H6154"]],[16,17,["H834"]],[17,21,["H8432"]],[21,27,["H1961"]],[27,29,["H802"]],[29,31,["H2719"]],[31,33,["H413"]],[33,35,["H214"]],[35,40,["H962"]]]},{"k":20204,"v":[[0,2,["H2721"]],[2,4,["H413"]],[4,6,["H4325"]],[6,12,["H3001"]],[12,13,["H3588"]],[13,17,["H776"]],[17,20,["H6456"]],[20,22,["H1931"]],[22,24,["H1984"]],[24,27,["H367"]]]},{"k":20205,"v":[[0,1,["H3651"]],[1,7,["H6728"]],[7,8,["H854"]],[8,14,["H338"]],[14,16,["H3427"]],[16,20,["H1323","H3284"]],[20,22,["H3427"]],[22,28,["H3808"]],[28,29,["H5750"]],[29,30,["H3427"]],[30,32,["H5331"]],[32,33,["H3808"]],[33,38,["H7931"]],[38,39,["H5704"]],[39,40,["H1755"]],[40,42,["H1755"]]]},{"k":20206,"v":[[0,2,["H430"]],[2,3,["H4114","(H853)"]],[3,4,["H5467"]],[4,6,["H6017"]],[6,9,["H7934"]],[9,12,["H5002"]],[12,14,["H3068"]],[14,17,["H3808"]],[17,18,["H376"]],[18,19,["H3427"]],[19,20,["H8033"]],[20,21,["H3808"]],[21,24,["H1121"]],[24,26,["H120"]],[26,27,["H1481"]],[27,28,[]]]},{"k":20207,"v":[[0,1,["H2009"]],[1,3,["H5971"]],[3,5,["H935"]],[5,8,["H4480","H6828"]],[8,11,["H1419"]],[11,12,["H1471"]],[12,14,["H7227"]],[14,15,["H4428"]],[15,19,["H5782"]],[19,22,["H4480","H3411"]],[22,25,["H776"]]]},{"k":20208,"v":[[0,3,["H2388"]],[3,5,["H7198"]],[5,8,["H3591"]],[8,9,["H1992"]],[9,11,["H394"]],[11,14,["H3808"]],[14,16,["H7355"]],[16,18,["H6963"]],[18,20,["H1993"]],[20,23,["H3220"]],[23,27,["H7392"]],[27,28,["H5921"]],[28,29,["H5483"]],[29,34,["H6186"]],[34,37,["H376"]],[37,40,["H4421"]],[40,41,["H5921"]],[41,44,["H1323"]],[44,46,["H894"]]]},{"k":20209,"v":[[0,2,["H4428"]],[2,4,["H894"]],[4,6,["H8085","(H853)"]],[6,8,["H8088"]],[8,13,["H3027"]],[13,15,["H7503"]],[15,16,["H6869"]],[16,18,["H2388"]],[18,22,["H2427"]],[22,28,["H3205"]]]},{"k":20210,"v":[[0,1,["H2009"]],[1,5,["H5927"]],[5,8,["H738"]],[8,11,["H4480","H1347"]],[11,13,["H3383"]],[13,14,["H413"]],[14,16,["H5116"]],[16,19,["H386"]],[19,20,["H3588"]],[20,25,["H7280"]],[25,27,["H7323"]],[27,28,["H4480","H5921"]],[28,31,["H4310"]],[31,34,["H977"]],[34,39,["H6485"]],[39,40,["H413"]],[40,42,["H3588"]],[42,43,["H4310"]],[43,46,["H3644"]],[46,48,["H4310"]],[48,53,["H3259"]],[53,55,["H4310"]],[55,57,["H2088"]],[57,58,["H7462"]],[58,59,["H834"]],[59,61,["H5975"]],[61,62,["H6440"]],[62,63,[]]]},{"k":20211,"v":[[0,1,["H3651"]],[1,2,["H8085"]],[2,5,["H6098"]],[5,8,["H3068"]],[8,9,["H834"]],[9,12,["H3289"]],[12,13,["H413"]],[13,14,["H894"]],[14,17,["H4284"]],[17,18,["H834"]],[18,21,["H2803"]],[21,22,["H413"]],[22,24,["H776"]],[24,27,["H3778"]],[27,28,["H518","H3808"]],[28,30,["H6810"]],[30,33,["H6629"]],[33,37,["H5498"]],[37,38,["H518","H3808"]],[38,43,["H5116"]],[43,44,["H8074"]],[44,45,["H5921"]],[45,46,[]]]},{"k":20212,"v":[[0,3,["H4480","H6963"]],[3,6,["H8610"]],[6,8,["H894"]],[8,10,["H776"]],[10,12,["H7493"]],[12,15,["H2201"]],[15,17,["H8085"]],[17,20,["H1471"]]]},{"k":20213,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H2009"]],[5,9,["H5782"]],[9,10,["H5921"]],[10,11,["H894"]],[11,13,["H413"]],[13,16,["H3427"]],[16,19,["H3820"]],[19,24,["H6965"]],[24,28,["H7843"]],[28,29,["H7307"]]]},{"k":20214,"v":[[0,3,["H7971"]],[3,5,["H894"]],[5,6,["H2114"]],[6,9,["H2219"]],[9,13,["H1238","(H853)"]],[13,15,["H776"]],[15,16,["H3588"]],[16,19,["H3117"]],[19,21,["H7451"]],[21,24,["H1961"]],[24,25,["H5921"]],[25,28,["H4480","H5439"]]]},{"k":20215,"v":[[0,1,["H413"]],[1,4,["H1869"]],[4,7,["H1869"]],[7,8,["H1869"]],[8,10,["H7198"]],[10,12,["H413"]],[12,17,["H5927"]],[17,20,["H5630"]],[20,22,["H2550"]],[22,24,["H408"]],[24,27,["H970"]],[27,30,["H2763"]],[30,31,["H3605"]],[31,33,["H6635"]]]},{"k":20216,"v":[[0,3,["H2491"]],[3,5,["H5307"]],[5,8,["H776"]],[8,11,["H3778"]],[11,17,["H1856"]],[17,20,["H2351"]]]},{"k":20217,"v":[[0,1,["H3588"]],[1,2,["H3478"]],[2,4,["H3808"]],[4,6,["H488"]],[6,8,["H3063"]],[8,11,["H4480","H430"]],[11,14,["H4480","H3068"]],[14,16,["H6635"]],[16,17,["H3588"]],[17,19,["H776"]],[19,21,["H4390"]],[21,23,["H817"]],[23,27,["H4480","H6918"]],[27,29,["H3478"]]]},{"k":20218,"v":[[0,1,["H5127"]],[1,5,["H4480","H8432"]],[5,7,["H894"]],[7,9,["H4422"]],[9,11,["H376"]],[11,13,["H5315"]],[13,15,["H408"]],[15,17,["H1826"]],[17,20,["H5771"]],[20,21,["H3588"]],[21,22,["H1931"]],[22,25,["H6256"]],[25,28,["H3068"]],[28,29,["H5360"]],[29,32,["H7999"]],[32,36,["H1576"]]]},{"k":20219,"v":[[0,1,["H894"]],[1,5,["H2091"]],[5,6,["H3563"]],[6,9,["H3068"]],[9,10,["H3027"]],[10,13,["H3605"]],[13,15,["H776"]],[15,16,["H7937"]],[16,18,["H1471"]],[18,20,["H8354"]],[20,23,["H4480","H3196"]],[23,24,["H5921","H3651"]],[24,26,["H1471"]],[26,28,["H1984"]]]},{"k":20220,"v":[[0,1,["H894"]],[1,3,["H6597"]],[3,4,["H5307"]],[4,6,["H7665"]],[6,7,["H3213"]],[7,8,["H5921"]],[8,10,["H3947"]],[10,11,["H6875"]],[11,14,["H4341"]],[14,17,["H194"]],[17,21,["H7495"]]]},{"k":20221,"v":[[0,4,["H7495","(H853)"]],[4,5,["H894"]],[5,9,["H3808"]],[9,10,["H7495"]],[10,11,["H5800"]],[11,16,["H1980"]],[16,18,["H376"]],[18,22,["H776"]],[22,23,["H3588"]],[23,25,["H4941"]],[25,26,["H5060"]],[26,27,["H413"]],[27,28,["H8064"]],[28,32,["H5375"]],[32,34,["H5704"]],[34,36,["H7834"]]]},{"k":20222,"v":[[0,2,["H3068"]],[2,5,["H3318","(H853)"]],[5,7,["H6666"]],[7,8,["H935"]],[8,12,["H5608"]],[12,14,["H6726","(H853)"]],[14,16,["H4639"]],[16,19,["H3068"]],[19,21,["H430"]]]},{"k":20223,"v":[[0,2,["H1305"]],[2,4,["H2671"]],[4,5,["H4390"]],[5,7,["H7982"]],[7,9,["H3068"]],[9,12,["H5782","(H853)"]],[12,14,["H7307"]],[14,17,["H4428"]],[17,20,["H4074"]],[20,21,["H3588"]],[21,23,["H4209"]],[23,25,["H5921"]],[25,26,["H894"]],[26,28,["H7843"]],[28,30,["H3588"]],[30,31,["H1931"]],[31,34,["H5360"]],[34,37,["H3068"]],[37,39,["H5360"]],[39,42,["H1964"]]]},{"k":20224,"v":[[0,2,["H5375"]],[2,4,["H5251"]],[4,5,["H413"]],[5,7,["H2346"]],[7,9,["H894"]],[9,12,["H4929"]],[12,13,["H2388"]],[13,15,["H6965"]],[15,17,["H8104"]],[17,18,["H3559"]],[18,20,["H693"]],[20,21,["H3588"]],[21,23,["H3068"]],[23,25,["H1571"]],[25,26,["H2161"]],[26,27,["H1571"]],[27,28,["H6213","(H853)"]],[28,30,["H834"]],[30,32,["H1696"]],[32,33,["H413"]],[33,35,["H3427"]],[35,37,["H894"]]]},{"k":20225,"v":[[0,4,["H7931"]],[4,5,["H5921"]],[5,6,["H7227"]],[6,7,["H4325"]],[7,8,["H7227"]],[8,10,["H214"]],[10,12,["H7093"]],[12,14,["H935"]],[14,17,["H520"]],[17,20,["H1215"]]]},{"k":20226,"v":[[0,2,["H3068"]],[2,4,["H6635"]],[4,6,["H7650"]],[6,8,["H5315"]],[8,10,["H3588","H518"]],[10,13,["H4390"]],[13,16,["H120"]],[16,19,["H3218"]],[19,24,["H6030"]],[24,26,["H1959"]],[26,27,["H5921"]],[27,28,[]]]},{"k":20227,"v":[[0,3,["H6213"]],[3,5,["H776"]],[5,8,["H3581"]],[8,11,["H3559"]],[11,13,["H8398"]],[13,16,["H2451"]],[16,20,["H5186"]],[20,22,["H8064"]],[22,25,["H8394"]]]},{"k":20228,"v":[[0,3,["H5414"]],[3,5,["H6963"]],[5,9,["H1995"]],[9,11,["H4325"]],[11,14,["H8064"]],[14,19,["H5387"]],[19,21,["H5927"]],[21,24,["H4480","H7097"]],[24,27,["H776"]],[27,29,["H6213"]],[29,30,["H1300"]],[30,32,["H4306"]],[32,35,["H3318"]],[35,37,["H7307"]],[37,41,["H4480","H214"]]]},{"k":20229,"v":[[0,1,["H3605"]],[1,2,["H120"]],[2,4,["H1197"]],[4,7,["H4480","H1847"]],[7,8,["H3605"]],[8,9,["H6884"]],[9,11,["H3001"]],[11,15,["H4480","H6459"]],[15,16,["H3588"]],[16,19,["H5262"]],[19,21,["H8267"]],[21,25,["H3808"]],[25,26,["H7307"]],[26,28,[]]]},{"k":20230,"v":[[0,1,["H1992"]],[1,3,["H1892"]],[3,5,["H4639"]],[5,7,["H8595"]],[7,10,["H6256"]],[10,13,["H6486"]],[13,16,["H6"]]]},{"k":20231,"v":[[0,2,["H2506"]],[2,4,["H3290"]],[4,6,["H3808"]],[6,8,["H428"]],[8,9,["H3588"]],[9,10,["H1931"]],[10,13,["H3335"]],[13,16,["H3605"]],[16,21,["H7626"]],[21,24,["H5159"]],[24,26,["H3068"]],[26,28,["H6635"]],[28,31,["H8034"]]]},{"k":20232,"v":[[0,1,["H859"]],[1,5,["H4661"]],[5,7,["H3627"]],[7,9,["H4421"]],[9,17,["H5310"]],[17,19,["H1471"]],[19,25,["H7843"]],[25,26,["H4467"]]]},{"k":20233,"v":[[0,8,["H5310"]],[8,10,["H5483"]],[10,13,["H7392"]],[13,21,["H5310"]],[21,23,["H7393"]],[23,26,["H7392"]]]},{"k":20234,"v":[[0,8,["H5310"]],[8,9,["H376"]],[9,11,["H802"]],[11,19,["H5310"]],[19,20,["H2205"]],[20,22,["H5288"]],[22,30,["H5310"]],[30,33,["H970"]],[33,36,["H1330"]]]},{"k":20235,"v":[[0,6,["H5310"]],[6,10,["H7462"]],[10,13,["H5739"]],[13,21,["H5310"]],[21,23,["H406"]],[23,28,["H6776"]],[28,36,["H5310"]],[36,37,["H6346"]],[37,39,["H5461"]]]},{"k":20236,"v":[[0,4,["H7999"]],[4,6,["H894"]],[6,9,["H3605"]],[9,11,["H3427"]],[11,13,["H3778","(H853)"]],[13,14,["H3605"]],[14,16,["H7451"]],[16,17,["H834"]],[17,20,["H6213"]],[20,22,["H6726"]],[22,25,["H5869"]],[25,26,["H5002"]],[26,28,["H3068"]]]},{"k":20237,"v":[[0,1,["H2009"]],[1,4,["H413"]],[4,7,["H4889"]],[7,8,["H2022"]],[8,9,["H5002"]],[9,11,["H3068"]],[11,13,["H7843","(H853)"]],[13,14,["H3605"]],[14,16,["H776"]],[16,21,["H5186","(H853)"]],[21,23,["H3027"]],[23,24,["H5921"]],[24,29,["H1556"]],[29,30,["H4480"]],[30,32,["H5553"]],[32,35,["H5414"]],[35,38,["H8316"]],[38,39,["H2022"]]]},{"k":20238,"v":[[0,4,["H3808"]],[4,5,["H3947"]],[5,6,["H4480"]],[6,9,["H68"]],[9,12,["H6438"]],[12,15,["H68"]],[15,17,["H4146"]],[17,18,["H3588"]],[18,21,["H1961"]],[21,22,["H8077"]],[22,24,["H5769"]],[24,25,["H5002"]],[25,27,["H3068"]]]},{"k":20239,"v":[[0,3,["H5375"]],[3,5,["H5251"]],[5,8,["H776"]],[8,9,["H8628"]],[9,11,["H7782"]],[11,14,["H1471"]],[14,15,["H6942"]],[15,17,["H1471"]],[17,18,["H5921"]],[18,21,["H8085"]],[21,22,["H5921"]],[22,25,["H4467"]],[25,27,["H780"]],[27,28,["H4508"]],[28,30,["H813"]],[30,31,["H6485"]],[31,33,["H2951"]],[33,34,["H5921"]],[34,38,["H5483"]],[38,41,["H5927"]],[41,44,["H5569"]],[44,45,["H3218"]]]},{"k":20240,"v":[[0,1,["H6942"]],[1,2,["H5921"]],[2,5,["H1471"]],[5,6,["(H853)"]],[6,8,["H4428"]],[8,11,["H4074","(H853)"]],[11,13,["H6346"]],[13,16,["H3605"]],[16,18,["H5461"]],[18,21,["H3605"]],[21,23,["H776"]],[23,26,["H4475"]]]},{"k":20241,"v":[[0,3,["H776"]],[3,5,["H7493"]],[5,7,["H2342"]],[7,8,["H3588"]],[8,10,["H4284"]],[10,13,["H3068"]],[13,16,["H6965"]],[16,17,["H5921"]],[17,18,["H894"]],[18,20,["H7760","(H853)"]],[20,22,["H776"]],[22,24,["H894"]],[24,26,["H8047"]],[26,27,["H4480","H369"]],[27,29,["H3427"]]]},{"k":20242,"v":[[0,3,["H1368"]],[3,5,["H894"]],[5,7,["H2308"]],[7,9,["H3898"]],[9,12,["H3427"]],[12,15,["H4679"]],[15,17,["H1369"]],[17,19,["H5405"]],[19,21,["H1961"]],[21,23,["H802"]],[23,26,["H3341"]],[26,28,["H4908"]],[28,30,["H1280"]],[30,32,["H7665"]]]},{"k":20243,"v":[[0,2,["H7323"]],[2,4,["H7323"]],[4,6,["H7125"]],[6,7,["H7323"]],[7,10,["H5046"]],[10,12,["H7125"]],[12,13,["H5046"]],[13,15,["H5046"]],[15,17,["H4428"]],[17,19,["H894"]],[19,20,["H3588"]],[20,22,["H5892"]],[22,24,["H3920"]],[24,27,["H4480","H7097"]]]},{"k":20244,"v":[[0,4,["H4569"]],[4,6,["H8610"]],[6,9,["H98"]],[9,12,["H8313"]],[12,14,["H784"]],[14,17,["H376"]],[17,19,["H4421"]],[19,21,["H926"]]]},{"k":20245,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,13,["H1323"]],[13,15,["H894"]],[15,19,["H1637"]],[19,22,["H6256"]],[22,24,["H1869"]],[24,26,["H5750"]],[26,29,["H4592"]],[29,32,["H6256"]],[32,35,["H7105"]],[35,37,["H935"]]]},{"k":20246,"v":[[0,1,["H5019"]],[1,3,["H4428"]],[3,5,["H894"]],[5,7,["H398"]],[7,11,["H2000"]],[11,15,["H3322"]],[15,18,["H7385"]],[18,19,["H3627"]],[19,24,["H1104"]],[24,27,["H8577"]],[27,30,["H4390"]],[30,32,["H3770"]],[32,35,["H4480","H5730"]],[35,40,["H1740"]]]},{"k":20247,"v":[[0,2,["H2555"]],[2,9,["H7607"]],[9,11,["H5921"]],[11,12,["H894"]],[12,15,["H3427"]],[15,17,["H6726"]],[17,18,["H559"]],[18,21,["H1818"]],[21,22,["H413"]],[22,24,["H3427"]],[24,26,["H3778"]],[26,28,["H3389"]],[28,29,["H559"]]]},{"k":20248,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,9,["H7378","(H853)"]],[9,11,["H7379"]],[11,16,["H5358","(H853)","H5360"]],[16,21,["H2717","(H853)"]],[21,23,["H3220"]],[23,25,["(H853)"]],[25,27,["H4726"]],[27,28,["H3001"]]]},{"k":20249,"v":[[0,2,["H894"]],[2,4,["H1961"]],[4,5,["H1530"]],[5,7,["H4583"]],[7,9,["H8577"]],[9,11,["H8047"]],[11,14,["H8322"]],[14,15,["H4480","H369"]],[15,17,["H3427"]]]},{"k":20250,"v":[[0,3,["H7580"]],[3,4,["H3162"]],[4,6,["H3715"]],[6,9,["H5286"]],[9,11,["H738"]],[11,12,["H1484"]]]},{"k":20251,"v":[[0,3,["H2527"]],[3,6,["H7896","(H853)"]],[6,8,["H4960"]],[8,14,["H7937"]],[14,15,["H4616"]],[15,18,["H5937"]],[18,20,["H3462"]],[20,22,["H5769"]],[22,23,["H8142"]],[23,25,["H3808"]],[25,26,["H6974"]],[26,27,["H5002"]],[27,29,["H3068"]]]},{"k":20252,"v":[[0,5,["H3381"]],[5,7,["H3733"]],[7,10,["H2873"]],[10,12,["H352"]],[12,13,["H5973"]],[13,15,["H6260"]]]},{"k":20253,"v":[[0,1,["H349"]],[1,3,["H8347"]],[3,4,["H3920"]],[4,9,["H8416"]],[9,12,["H3605"]],[12,13,["H776"]],[13,14,["H8610"]],[14,15,["H349"]],[15,17,["H894"]],[17,18,["H1961"]],[18,20,["H8047"]],[20,23,["H1471"]]]},{"k":20254,"v":[[0,2,["H3220"]],[2,5,["H5927"]],[5,6,["H5921"]],[6,7,["H894"]],[7,10,["H3680"]],[10,13,["H1995"]],[13,16,["H1530"]],[16,17,[]]]},{"k":20255,"v":[[0,2,["H5892"]],[2,3,["H1961"]],[3,5,["H8047"]],[5,7,["H6723"]],[7,8,["H776"]],[8,11,["H6160"]],[11,13,["H776"]],[13,14,["H2004"]],[14,15,["H3605","H3808"]],[15,16,["H376"]],[16,17,["H3427"]],[17,18,["H3808"]],[18,21,["H1121"]],[21,23,["H120"]],[23,24,["H5674"]],[24,25,["H2004"]]]},{"k":20256,"v":[[0,4,["H6485","H5921"]],[4,5,["H1078"]],[5,7,["H894"]],[7,12,["H3318"]],[12,16,["H4480","H6310","(H853)"]],[16,22,["H1105"]],[22,25,["H1471"]],[25,27,["H3808"]],[27,29,["H5102"]],[29,31,["H5750"]],[31,32,["H413"]],[32,34,["H1571"]],[34,36,["H2346"]],[36,38,["H894"]],[38,40,["H5307"]]]},{"k":20257,"v":[[0,2,["H5971"]],[2,3,["H3318"]],[3,8,["H4480","H8432"]],[8,12,["H4422"]],[12,15,["H376","(H853)"]],[15,17,["H5315"]],[17,20,["H4480","H2740"]],[20,21,["H639"]],[21,24,["H3068"]]]},{"k":20258,"v":[[0,2,["H6435"]],[2,4,["H3824"]],[4,5,["H7401"]],[5,8,["H3372"]],[8,11,["H8052"]],[11,15,["H8085"]],[15,18,["H776"]],[18,20,["H8052"]],[20,23,["H935"]],[23,25,["H8141"]],[25,27,["H310"]],[27,31,["H8141"]],[31,35,["H8052"]],[35,37,["H2555"]],[37,40,["H776"]],[40,41,["H4910"]],[41,42,["H5921"]],[42,43,["H4910"]]]},{"k":20259,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,4,["H3117"]],[4,5,["H935"]],[5,10,["H6485"]],[10,11,["H5921"]],[11,14,["H6456"]],[14,16,["H894"]],[16,19,["H3605"]],[19,20,["H776"]],[20,23,["H954"]],[23,25,["H3605"]],[25,27,["H2491"]],[27,29,["H5307"]],[29,32,["H8432"]],[32,34,[]]]},{"k":20260,"v":[[0,3,["H8064"]],[3,6,["H776"]],[6,8,["H3605"]],[8,9,["H834"]],[9,13,["H7442"]],[13,14,["H5921"]],[14,15,["H894"]],[15,16,["H3588"]],[16,18,["H7703"]],[18,20,["H935"]],[20,25,["H4480","H6828"]],[25,26,["H5002"]],[26,28,["H3068"]]]},{"k":20261,"v":[[0,1,["H1571"]],[1,2,["H894"]],[2,6,["H2491"]],[6,8,["H3478"]],[8,10,["H5307"]],[10,11,["H1571"]],[11,13,["H894"]],[13,15,["H5307"]],[15,17,["H2491"]],[17,19,["H3605"]],[19,21,["H776"]]]},{"k":20262,"v":[[0,4,["H6412"]],[4,6,["H4480","H2719"]],[6,8,["H1980"]],[8,11,["H408","H5975"]],[11,12,["H2142","(H853)"]],[12,14,["H3068"]],[14,16,["H7350"]],[16,19,["H3389"]],[19,20,["H5927"]],[20,21,["H5921"]],[21,23,["H3824"]]]},{"k":20263,"v":[[0,3,["H954"]],[3,4,["H3588"]],[4,7,["H8085"]],[7,8,["H2781"]],[8,9,["H3639"]],[9,11,["H3680"]],[11,13,["H6440"]],[13,14,["H3588"]],[14,15,["H2114"]],[15,17,["H935"]],[17,18,["H5921"]],[18,20,["H4720"]],[20,23,["H3068"]],[23,24,["H1004"]]]},{"k":20264,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,4,["H3117"]],[4,5,["H935"]],[5,6,["H5002"]],[6,8,["H3068"]],[8,13,["H6485"]],[13,14,["H5921"]],[14,17,["H6456"]],[17,20,["H3605"]],[20,22,["H776"]],[22,24,["H2491"]],[24,26,["H602"]]]},{"k":20265,"v":[[0,1,["H3588"]],[1,2,["H894"]],[2,5,["H5927"]],[5,7,["H8064"]],[7,9,["H3588"]],[9,12,["H1219"]],[12,14,["H4791"]],[14,17,["H5797"]],[17,19,["H4480","H854"]],[19,22,["H7703"]],[22,23,["H935"]],[23,26,["H5002"]],[26,28,["H3068"]]]},{"k":20266,"v":[[0,2,["H6963"]],[2,5,["H2201"]],[5,8,["H4480","H894"]],[8,10,["H1419"]],[10,11,["H7667"]],[11,14,["H4480","H776"]],[14,17,["H3778"]]]},{"k":20267,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H7703","(H853)"]],[5,6,["H894"]],[6,8,["H6"]],[8,10,["H4480"]],[10,13,["H1419"]],[13,14,["H6963"]],[14,17,["H1530"]],[17,19,["H1993"]],[19,21,["H7227"]],[21,22,["H4325"]],[22,24,["H7588"]],[24,27,["H6963"]],[27,29,["H5414"]]]},{"k":20268,"v":[[0,1,["H3588"]],[1,3,["H7703"]],[3,5,["H935"]],[5,6,["H5921"]],[6,9,["H5921"]],[9,10,["H894"]],[10,14,["H1368"]],[14,16,["H3920"]],[16,21,["H7198"]],[21,23,["H2865"]],[23,24,["H3588"]],[24,26,["H3068"]],[26,27,["H410"]],[27,29,["H1578"]],[29,32,["H7999","H7999"]]]},{"k":20269,"v":[[0,5,["H7937"]],[5,7,["H8269"]],[7,10,["H2450"]],[10,13,["H6346"]],[13,16,["H5461"]],[16,20,["H1368"]],[20,24,["H3462"]],[24,26,["H5769"]],[26,27,["H8142"]],[27,29,["H3808"]],[29,30,["H6974"]],[30,31,["H5002"]],[31,33,["H4428"]],[33,35,["H8034"]],[35,38,["H3068"]],[38,40,["H6635"]]]},{"k":20270,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H7342"]],[8,9,["H2346"]],[9,11,["H894"]],[11,15,["H6209","H6209"]],[15,18,["H1364"]],[18,19,["H8179"]],[19,22,["H3341"]],[22,24,["H784"]],[24,27,["H5971"]],[27,29,["H3021"]],[29,31,["H7385"]],[31,34,["H3816"]],[34,37,["H784"]],[37,42,["H3286"]]]},{"k":20271,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H3414"]],[4,6,["H5030"]],[6,7,["H6680","(H853)"]],[7,8,["H8304"]],[8,10,["H1121"]],[10,12,["H5374"]],[12,14,["H1121"]],[14,16,["H4271"]],[16,19,["H1980"]],[19,20,["H854"]],[20,21,["H6667"]],[21,23,["H4428"]],[23,25,["H3063"]],[25,27,["H894"]],[27,30,["H7243"]],[30,31,["H8141"]],[31,34,["H4427"]],[34,37,["H8304"]],[37,40,["H4496"]],[40,41,["H8269"]]]},{"k":20272,"v":[[0,2,["H3414"]],[2,3,["H3789"]],[3,4,["H413"]],[4,5,["H259"]],[5,6,["H5612","(H853)"]],[6,7,["H3605"]],[7,9,["H7451"]],[9,10,["H834"]],[10,12,["H935"]],[12,13,["H413"]],[13,14,["H894"]],[14,15,["(H853)"]],[15,16,["H3605"]],[16,17,["H428"]],[17,18,["H1697"]],[18,21,["H3789"]],[21,22,["H413"]],[22,23,["H894"]]]},{"k":20273,"v":[[0,2,["H3414"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H8304"]],[5,8,["H935"]],[8,10,["H894"]],[10,13,["H7200"]],[13,16,["H7121","(H853)"]],[16,17,["H3605"]],[17,18,["H428"]],[18,19,["H1697"]]]},{"k":20274,"v":[[0,4,["H559"]],[4,6,["H3068"]],[6,7,["H859"]],[7,9,["H1696"]],[9,10,["H413"]],[10,11,["H2088"]],[11,12,["H4725"]],[12,16,["H3772"]],[16,18,["H1115"]],[18,19,["H1961"]],[19,20,["H3427"]],[20,24,["H4480","H120"]],[24,25,["H5704"]],[25,26,["H929"]],[26,27,["H3588"]],[27,31,["H1961"]],[31,32,["H8077"]],[32,34,["H5769"]]]},{"k":20275,"v":[[0,4,["H1961"]],[4,10,["H3615"]],[10,12,["H7121","(H853)"]],[12,13,["H2088"]],[13,14,["H5612"]],[14,18,["H7194"]],[18,20,["H68"]],[20,21,["H5921"]],[21,24,["H7993"]],[24,26,["H413"]],[26,28,["H8432"]],[28,30,["H6578"]]]},{"k":20276,"v":[[0,4,["H559"]],[4,5,["H3602"]],[5,7,["H894"]],[7,8,["H8257"]],[8,11,["H3808"]],[11,12,["H6965"]],[12,13,["H4480","H6440"]],[13,15,["H7451"]],[15,16,["H834"]],[16,17,["H595"]],[17,19,["H935"]],[19,20,["H5921"]],[20,26,["H3286"]],[26,27,["H5704"]],[27,28,["H2008"]],[28,31,["H1697"]],[31,33,["H3414"]]]},{"k":20277,"v":[[0,1,["H6667"]],[1,3,["H259"]],[3,5,["H6242"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H6259","H6240"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,22,["H517"]],[22,23,["H8034"]],[23,25,["H2537"]],[25,27,["H1323"]],[27,29,["H3414"]],[29,31,["H4480","H3841"]]]},{"k":20278,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3605"]],[16,17,["H834"]],[17,18,["H3079"]],[18,20,["H6213"]]]},{"k":20279,"v":[[0,1,["H3588"]],[1,2,["H5921"]],[2,4,["H639"]],[4,7,["H3068"]],[7,11,["H1961"]],[11,13,["H3389"]],[13,15,["H3063"]],[15,16,["H5704"]],[16,21,["H7993","(H853)"]],[21,22,["H4480","H5921"]],[22,24,["H6440"]],[24,26,["H6667"]],[26,27,["H4775"]],[27,30,["H4428"]],[30,32,["H894"]]]},{"k":20280,"v":[[0,5,["H1961"]],[5,8,["H8671"]],[8,9,["H8141"]],[9,12,["H4427"]],[12,15,["H6224"]],[15,16,["H2320"]],[16,19,["H6218"]],[19,23,["H2320"]],[23,25,["H5019"]],[25,26,["H4428"]],[26,28,["H894"]],[28,29,["H935"]],[29,30,["H1931"]],[30,32,["H3605"]],[32,34,["H2428"]],[34,35,["H5921"]],[35,36,["H3389"]],[36,38,["H2583"]],[38,39,["H5921"]],[39,42,["H1129"]],[42,43,["H1785"]],[43,44,["H5921"]],[44,47,["H5439"]]]},{"k":20281,"v":[[0,3,["H5892"]],[3,5,["H935","H4692"]],[5,6,["H5704"]],[6,8,["H6249","H6240"]],[8,9,["H8141"]],[9,11,["H4428"]],[11,12,["H6667"]]]},{"k":20282,"v":[[0,4,["H7243"]],[4,5,["H2320"]],[5,8,["H8672"]],[8,12,["H2320"]],[12,14,["H7458"]],[14,16,["H2388"]],[16,19,["H5892"]],[19,23,["H1961"]],[23,24,["H3808"]],[24,25,["H3899"]],[25,28,["H5971"]],[28,31,["H776"]]]},{"k":20283,"v":[[0,3,["H5892"]],[3,6,["H1234"]],[6,8,["H3605"]],[8,10,["H376"]],[10,12,["H4421"]],[12,13,["H1272"]],[13,16,["H3318"]],[16,20,["H4480","H5892"]],[20,22,["H3915"]],[22,25,["H1870"]],[25,28,["H8179"]],[28,29,["H996"]],[29,32,["H2346"]],[32,33,["H834"]],[33,35,["H5921"]],[35,37,["H4428"]],[37,38,["H1588"]],[38,41,["H3778"]],[41,43,["H5921"]],[43,45,["H5892"]],[45,47,["H5439"]],[47,50,["H1980"]],[50,53,["H1870"]],[53,56,["H6160"]]]},{"k":20284,"v":[[0,3,["H2428"]],[3,6,["H3778"]],[6,7,["H7291"]],[7,8,["H310"]],[8,10,["H4428"]],[10,12,["H5381","(H853)"]],[12,13,["H6667"]],[13,16,["H6160"]],[16,18,["H3405"]],[18,20,["H3605"]],[20,22,["H2428"]],[22,24,["H6327"]],[24,25,["H4480","H5921"]],[25,26,[]]]},{"k":20285,"v":[[0,3,["H8610","(H853)"]],[3,5,["H4428"]],[5,9,["H5927"]],[9,10,["H413"]],[10,12,["H4428"]],[12,14,["H894"]],[14,16,["H7247"]],[16,19,["H776"]],[19,21,["H2574"]],[21,24,["H1696"]],[24,25,["H4941"]],[25,26,["H854"]],[26,27,[]]]},{"k":20286,"v":[[0,3,["H4428"]],[3,5,["H894"]],[5,6,["H7819","(H853)"]],[6,8,["H1121"]],[8,10,["H6667"]],[10,13,["H5869"]],[13,15,["H7819"]],[15,16,["H1571","(H853)"]],[16,17,["H3605"]],[17,19,["H8269"]],[19,21,["H3063"]],[21,23,["H7247"]]]},{"k":20287,"v":[[0,4,["H5786"]],[4,6,["H5869"]],[6,8,["H6667"]],[8,11,["H4428"]],[11,13,["H894"]],[13,14,["H631"]],[14,17,["H5178"]],[17,19,["H935"]],[19,22,["H894"]],[22,24,["H5414"]],[24,27,["H1004","H6486"]],[27,28,["H5704"]],[28,30,["H3117"]],[30,33,["H4194"]]]},{"k":20288,"v":[[0,4,["H2549"]],[4,5,["H2320"]],[5,8,["H6218"]],[8,12,["H2320"]],[12,13,["H1931"]],[13,16,["H8672","H6240"]],[16,17,["H8141"]],[17,19,["H5019"]],[19,20,["H4428"]],[20,22,["H894"]],[22,23,["H935"]],[23,24,["H5018"]],[24,25,["H7227"]],[25,28,["H2876"]],[28,30,["H5975","H6440"]],[30,32,["H4428"]],[32,34,["H894"]],[34,36,["H3389"]]]},{"k":20289,"v":[[0,2,["H8313","(H853)"]],[2,4,["H1004"]],[4,7,["H3068"]],[7,10,["H4428"]],[10,11,["H1004"]],[11,13,["H3605"]],[13,15,["H1004"]],[15,17,["H3389"]],[17,19,["H3605"]],[19,21,["H1004"]],[21,24,["H1419"]],[24,26,["H8313"]],[26,29,["H784"]]]},{"k":20290,"v":[[0,2,["H3605"]],[2,4,["H2428"]],[4,7,["H3778"]],[7,8,["H834"]],[8,10,["H854"]],[10,12,["H7227"]],[12,15,["H2876"]],[15,17,["H5422"]],[17,18,["H3605"]],[18,20,["H2346"]],[20,22,["H3389"]],[22,24,["H5439"]]]},{"k":20291,"v":[[0,2,["H5018"]],[2,4,["H7227"]],[4,7,["H2876"]],[7,10,["H1540"]],[10,14,["H4480","H1803"]],[14,17,["H5971"]],[17,20,["H3499"]],[20,23,["H5971"]],[23,25,["H7604"]],[25,28,["H5892"]],[28,33,["H5307"]],[33,34,["H834"]],[34,35,["H5307"]],[35,36,["H413"]],[36,38,["H4428"]],[38,40,["H894"]],[40,43,["H3499"]],[43,46,["H527"]]]},{"k":20292,"v":[[0,2,["H5018"]],[2,4,["H7227"]],[4,7,["H2876"]],[7,8,["H7604"]],[8,12,["H4480","H1803"]],[12,15,["H776"]],[15,17,["H3755"]],[17,20,["H3009"]]]},{"k":20293,"v":[[0,3,["H5982"]],[3,5,["H5178"]],[5,6,["H834"]],[6,10,["H1004"]],[10,13,["H3068"]],[13,16,["H4350"]],[16,19,["H5178"]],[19,20,["H3220"]],[20,21,["H834"]],[21,25,["H1004"]],[25,28,["H3068"]],[28,30,["H3778"]],[30,31,["H7665"]],[31,33,["H5375","(H853)"]],[33,34,["H3605"]],[34,36,["H5178"]],[36,40,["H894"]]]},{"k":20294,"v":[[0,2,["H5518"]],[2,6,["H3257"]],[6,9,["H4212"]],[9,12,["H4219"]],[12,15,["H3709"]],[15,17,["H3605"]],[17,19,["H3627"]],[19,21,["H5178"]],[21,22,["H834"]],[22,24,["H8334"]],[24,27,["H3947"]]]},{"k":20295,"v":[[0,3,["H5592"]],[3,6,["H4289"]],[6,9,["H4219"]],[9,12,["H5518"]],[12,15,["H4501"]],[15,18,["H3709"]],[18,21,["H4518"]],[21,23,["H834"]],[23,26,["H2091"]],[26,28,["H2091"]],[28,31,["H834"]],[31,34,["H3701"]],[34,36,["H3701"]],[36,37,["H3947"]],[37,39,["H7227"]],[39,42,["H2876"]],[42,43,[]]]},{"k":20296,"v":[[0,2,["H8147"]],[2,3,["H5982"]],[3,4,["H259"]],[4,5,["H3220"]],[5,7,["H8147","H6240"]],[7,8,["H5178"]],[8,9,["H1241"]],[9,10,["H834"]],[10,12,["H8478"]],[12,14,["H4350"]],[14,15,["H834"]],[15,16,["H4428"]],[16,17,["H8010"]],[17,19,["H6213"]],[19,22,["H1004"]],[22,25,["H3068"]],[25,27,["H5178"]],[27,29,["H3605"]],[29,30,["H428"]],[30,31,["H3627"]],[31,32,["H1961"]],[32,33,["H3808"]],[33,34,["H4948"]]]},{"k":20297,"v":[[0,4,["H5982"]],[4,6,["H6967"]],[6,8,["H259"]],[8,9,["H5982"]],[9,11,["H8083","H6240"]],[11,12,["H520"]],[12,15,["H2339"]],[15,17,["H8147","H6240"]],[17,18,["H520"]],[18,20,["H5437"]],[20,24,["H5672"]],[24,27,["H702"]],[27,28,["H676"]],[28,31,["H5014"]]]},{"k":20298,"v":[[0,3,["H3805"]],[3,5,["H5178"]],[5,7,["H5921"]],[7,11,["H6967"]],[11,13,["H259"]],[13,14,["H3805"]],[14,16,["H2568"]],[16,17,["H520"]],[17,19,["H7639"]],[19,21,["H7416"]],[21,22,["H5921"]],[22,24,["H3805"]],[24,26,["H5439"]],[26,27,["H3605"]],[27,29,["H5178"]],[29,31,["H8145"]],[31,32,["H5982"]],[32,36,["H7416"]],[36,40,["H428"]]]},{"k":20299,"v":[[0,3,["H1961"]],[3,4,["H8673"]],[4,6,["H8337"]],[6,7,["H7416"]],[7,10,["H7307"]],[10,12,["H3605"]],[12,14,["H7416"]],[14,15,["H5921"]],[15,17,["H7639"]],[17,20,["H3967"]],[20,22,["H5439"]]]},{"k":20300,"v":[[0,3,["H7227"]],[3,6,["H2876"]],[6,7,["H3947","(H853)"]],[7,8,["H8304"]],[8,10,["H7218"]],[10,11,["H3548"]],[11,13,["H6846"]],[13,15,["H4932"]],[15,16,["H3548"]],[16,19,["H7969"]],[19,20,["H8104"]],[20,23,["H5592"]]]},{"k":20301,"v":[[0,2,["H3947"]],[2,5,["H4480"]],[5,7,["H5892"]],[7,8,["H259"]],[8,9,["H5631"]],[9,10,["H834"]],[10,11,["H1961"]],[11,13,["H6496"]],[13,14,["H5921"]],[14,16,["H376"]],[16,18,["H4421"]],[18,20,["H7651"]],[20,21,["H376"]],[21,26,["H4480","H7200"]],[26,28,["H4428"]],[28,29,["H6440"]],[29,30,["H834"]],[30,32,["H4672"]],[32,35,["H5892"]],[35,38,["H8269"]],[38,39,["H5608"]],[39,42,["H6635"]],[42,44,["H6633","(H853)"]],[44,46,["H5971"]],[46,49,["H776"]],[49,51,["H8346"]],[51,52,["H376"]],[52,55,["H4480","H5971"]],[55,58,["H776"]],[58,61,["H4672"]],[61,64,["H8432"]],[64,67,["H5892"]]]},{"k":20302,"v":[[0,2,["H5018"]],[2,4,["H7227"]],[4,7,["H2876"]],[7,8,["H3947"]],[8,11,["H1980"]],[11,13,["H413"]],[13,15,["H4428"]],[15,17,["H894"]],[17,19,["H7247"]]]},{"k":20303,"v":[[0,3,["H4428"]],[3,5,["H894"]],[5,6,["H5221"]],[6,12,["H4191"]],[12,14,["H7247"]],[14,17,["H776"]],[17,19,["H2574"]],[19,21,["H3063"]],[21,25,["H1540"]],[25,27,["H4480","H5921"]],[27,30,["H127"]]]},{"k":20304,"v":[[0,1,["H2088"]],[1,4,["H5971"]],[4,5,["H834"]],[5,6,["H5019"]],[6,9,["H1540"]],[9,12,["H7651"]],[12,13,["H8141"]],[13,14,["H7969"]],[14,15,["H505"]],[15,16,["H3064"]],[16,18,["H7969"]],[18,20,["H6242"]]]},{"k":20305,"v":[[0,3,["H8083","H6240"]],[3,4,["H8141"]],[4,6,["H5019"]],[6,10,["H1540"]],[10,12,["H4480","H3389"]],[12,13,["H8083"]],[13,14,["H3967"]],[14,15,["H7970"]],[15,17,["H8147"]],[17,18,["H5315"]]]},{"k":20306,"v":[[0,3,["H7969"]],[3,5,["H6242"]],[5,6,["H8141"]],[6,8,["H5019"]],[8,9,["H5018"]],[9,11,["H7227"]],[11,14,["H2876"]],[14,17,["H1540"]],[17,20,["H3064"]],[20,21,["H7651"]],[21,22,["H3967"]],[22,23,["H705"]],[23,25,["H2568"]],[25,26,["H5315"]],[26,27,["H3605"]],[27,29,["H5315"]],[29,31,["H702"]],[31,32,["H505"]],[32,34,["H8337"]],[34,35,["H3967"]]]},{"k":20307,"v":[[0,5,["H1961"]],[5,8,["H7651"]],[8,10,["H7970"]],[10,11,["H8141"]],[11,14,["H1546"]],[14,16,["H3078"]],[16,17,["H4428"]],[17,19,["H3063"]],[19,22,["H8147","H6240"]],[22,23,["H2320"]],[23,26,["H2568"]],[26,28,["H6242"]],[28,32,["H2320"]],[32,34,["H192"]],[34,35,["H4428"]],[35,37,["H894"]],[37,41,["H8141"]],[41,44,["H4438"]],[44,46,["H5375","(H853)"]],[46,48,["H7218"]],[48,50,["H3078"]],[50,51,["H4428"]],[51,53,["H3063"]],[53,57,["H3318","(H853)"]],[57,60,["H4480","H1004","H3628"]]]},{"k":20308,"v":[[0,2,["H1696"]],[2,3,["H2896"]],[3,4,["H854"]],[4,7,["H5414","(H853)"]],[7,9,["H3678"]],[9,10,["H4480","H4605"]],[10,12,["H3678"]],[12,15,["H4428"]],[15,16,["H834"]],[16,18,["H854"]],[18,21,["H894"]]]},{"k":20309,"v":[[0,2,["H8138","(H853)"]],[2,4,["H3608"]],[4,5,["H899"]],[5,9,["H8548"]],[9,10,["H398"]],[10,11,["H3899"]],[11,12,["H6440"]],[12,14,["H3605"]],[14,16,["H3117"]],[16,19,["H2416"]]]},{"k":20310,"v":[[0,4,["H737"]],[4,8,["H8548"]],[8,9,["H737"]],[9,10,["H5414"]],[10,12,["H4480","H854"]],[12,14,["H4428"]],[14,16,["H894"]],[16,18,["H3117","H3117"]],[18,20,["H1697"]],[20,21,["H5704"]],[21,23,["H3117"]],[23,26,["H4194"]],[26,27,["H3605"]],[27,29,["H3117"]],[29,32,["H2416"]]]},{"k":20311,"v":[[0,1,["H349"]],[1,4,["H5892"]],[4,5,["H3427"]],[5,6,["H910"]],[6,9,["H7227"]],[9,11,["H5971"]],[11,15,["H1961"]],[15,18,["H490"]],[18,22,["H7227"]],[22,25,["H1471"]],[25,27,["H8282"]],[27,30,["H4082"]],[30,34,["H1961"]],[34,35,["H4522"]]]},{"k":20312,"v":[[0,3,["H1058","H1058"]],[3,6,["H3915"]],[6,9,["H1832"]],[9,11,["H5921"]],[11,13,["H3895"]],[13,15,["H4480","H3605"]],[15,17,["H157"]],[17,20,["H369"]],[20,22,["H5162"]],[22,24,["H3605"]],[24,26,["H7453"]],[26,29,["H898"]],[29,34,["H1961"]],[34,36,["H341"]]]},{"k":20313,"v":[[0,1,["H3063"]],[1,5,["H1540"]],[5,8,["H4480","H6040"]],[8,12,["H4480","H7230"]],[12,13,["H5656"]],[13,14,["H1931"]],[14,15,["H3427"]],[15,18,["H1471"]],[18,20,["H4672"]],[20,21,["H3808"]],[21,22,["H4494"]],[22,23,["H3605"]],[23,25,["H7291"]],[25,26,["H5381"]],[26,28,["H996"]],[28,30,["H4712"]]]},{"k":20314,"v":[[0,2,["H1870"]],[2,4,["H6726"]],[4,6,["H57"]],[6,8,["H4480","H1097"]],[8,9,["H935"]],[9,13,["H4150"]],[13,14,["H3605"]],[14,16,["H8179"]],[16,18,["H8074"]],[18,20,["H3548"]],[20,21,["H584"]],[21,23,["H1330"]],[23,25,["H3013"]],[25,27,["H1931"]],[27,30,["H4843"]]]},{"k":20315,"v":[[0,2,["H6862"]],[2,3,["H1961"]],[3,5,["H7218"]],[5,7,["H341"]],[7,8,["H7951"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,13,["H3013"]],[13,15,["H5921"]],[15,17,["H7230"]],[17,20,["H6588"]],[20,22,["H5768"]],[22,24,["H1980"]],[24,26,["H7628"]],[26,27,["H6440"]],[27,29,["H6862"]]]},{"k":20316,"v":[[0,2,["H4480"]],[2,4,["H1323"]],[4,6,["H6726"]],[6,7,["H3605"]],[7,9,["H1926"]],[9,11,["H3318"]],[11,13,["H8269"]],[13,15,["H1961"]],[15,17,["H354"]],[17,19,["H4672"]],[19,20,["H3808"]],[20,21,["H4829"]],[21,25,["H1980"]],[25,26,["H3808"]],[26,27,["H3581"]],[27,28,["H6440"]],[28,30,["H7291"]]]},{"k":20317,"v":[[0,1,["H3389"]],[1,2,["H2142"]],[2,5,["H3117"]],[5,8,["H6040"]],[8,12,["H4788"]],[12,13,["H3605"]],[13,16,["H4262"]],[16,17,["H834"]],[17,19,["H1961"]],[19,22,["H4480","H3117"]],[22,24,["H6924"]],[24,27,["H5971"]],[27,28,["H5307"]],[28,31,["H3027"]],[31,34,["H6862"]],[34,36,["H369"]],[36,38,["H5826"]],[38,41,["H6862"]],[41,42,["H7200"]],[42,46,["H7832"]],[46,47,["H5921"]],[47,49,["H4868"]]]},{"k":20318,"v":[[0,1,["H3389"]],[1,4,["H2398","H2399"]],[4,5,["H5921","H3651"]],[5,7,["H1961"]],[7,8,["H5206"]],[8,9,["H3605"]],[9,11,["H3513"]],[11,13,["H2151"]],[13,15,["H3588"]],[15,18,["H7200"]],[18,20,["H6172"]],[20,21,["H1571"]],[21,22,["H1931"]],[22,23,["H584"]],[23,25,["H7725"]],[25,26,["H268"]]]},{"k":20319,"v":[[0,2,["H2932"]],[2,6,["H7757"]],[6,8,["H2142"]],[8,9,["H3808"]],[9,12,["H319"]],[12,16,["H3381"]],[16,17,["H6382"]],[17,20,["H369"]],[20,21,["H5162"]],[21,23,["H3068"]],[23,24,["H7200","(H853)"]],[24,26,["H6040"]],[26,27,["H3588"]],[27,29,["H341"]],[29,31,["H1431"]],[31,32,[]]]},{"k":20320,"v":[[0,2,["H6862"]],[2,5,["H6566"]],[5,7,["H3027"]],[7,8,["H5921"]],[8,9,["H3605"]],[9,12,["H4261"]],[12,13,["H3588"]],[13,16,["H7200"]],[16,19,["H1471"]],[19,20,["H935"]],[20,23,["H4720"]],[23,24,["H834"]],[24,27,["H6680"]],[27,31,["H3808"]],[31,32,["H935"]],[32,35,["H6951"]]]},{"k":20321,"v":[[0,1,["H3605"]],[1,3,["H5971"]],[3,4,["H584"]],[4,6,["H1245"]],[6,7,["H3899"]],[7,10,["H5414"]],[10,13,["H4262"]],[13,15,["H400"]],[15,17,["H7725"]],[17,19,["H5315"]],[19,20,["H7200"]],[20,22,["H3068"]],[22,24,["H5027"]],[24,25,["H3588"]],[25,28,["H1961"]],[28,29,["H2151"]]]},{"k":20322,"v":[[0,3,["H3808"]],[3,4,["H413"]],[4,6,["H3605"]],[6,10,["H5674","H1870"]],[10,11,["H5027"]],[11,13,["H7200"]],[13,14,["H518"]],[14,16,["H3426"]],[16,18,["H4341"]],[18,22,["H4341"]],[22,23,["H834"]],[23,25,["H5953"]],[25,28,["H834"]],[28,30,["H3068"]],[30,32,["H3013"]],[32,36,["H3117"]],[36,39,["H2740"]],[39,40,["H639"]]]},{"k":20323,"v":[[0,2,["H4480","H4791"]],[2,5,["H7971"]],[5,6,["H784"]],[6,9,["H6106"]],[9,13,["H7287"]],[13,17,["H6566"]],[17,19,["H7568"]],[19,22,["H7272"]],[22,25,["H7725"]],[25,27,["H268"]],[27,30,["H5414"]],[30,32,["H8074"]],[32,34,["H1739"]],[34,35,["H3605"]],[35,37,["H3117"]]]},{"k":20324,"v":[[0,2,["H5923"]],[2,5,["H6588"]],[5,7,["H8244"]],[7,10,["H3027"]],[10,13,["H8276"]],[13,16,["H5927"]],[16,17,["H5921"]],[17,19,["H6677"]],[19,24,["H3581"]],[24,26,["H3782"]],[26,28,["H136"]],[28,30,["H5414"]],[30,34,["H3027"]],[34,40,["H3201","H3808"]],[40,43,["H6965"]]]},{"k":20325,"v":[[0,2,["H136"]],[2,6,["H5541"]],[6,7,["H3605"]],[7,9,["H47"]],[9,13,["H7130"]],[13,18,["H7121"]],[18,20,["H4150"]],[20,21,["H5921"]],[21,24,["H7665"]],[24,27,["H970"]],[27,29,["H136"]],[29,31,["H1869"]],[31,33,["H1330"]],[33,35,["H1323"]],[35,37,["H3063"]],[37,41,["H1660"]]]},{"k":20326,"v":[[0,1,["H5921"]],[1,2,["H428"]],[2,4,["H589"]],[4,5,["H1058"]],[5,7,["H5869"]],[7,9,["H5869"]],[9,11,["H3381"]],[11,13,["H4325"]],[13,14,["H3588"]],[14,16,["H5162"]],[16,19,["H7725"]],[19,21,["H5315"]],[21,23,["H7368"]],[23,24,["H4480"]],[24,27,["H1121"]],[27,28,["H1961"]],[28,29,["H8074"]],[29,30,["H3588"]],[30,32,["H341"]],[32,33,["H1396"]]]},{"k":20327,"v":[[0,1,["H6726"]],[1,3,["H6566"]],[3,5,["H3027"]],[5,9,["H369"]],[9,11,["H5162"]],[11,14,["H3068"]],[14,16,["H6680"]],[16,18,["H3290"]],[18,21,["H6862"]],[21,25,["H5439"]],[25,27,["H3389"]],[27,28,["H1961"]],[28,32,["H5079"]],[32,33,["H996"]],[33,34,[]]]},{"k":20328,"v":[[0,2,["H3068"]],[2,4,["H6662"]],[4,5,["H3588"]],[5,8,["H4784"]],[8,11,["H6310"]],[11,12,["H8085"]],[12,15,["H4994"]],[15,16,["H3605"]],[16,17,["H5971"]],[17,19,["H7200"]],[19,21,["H4341"]],[21,23,["H1330"]],[23,27,["H970"]],[27,29,["H1980"]],[29,31,["H7628"]]]},{"k":20329,"v":[[0,2,["H7121"]],[2,5,["H157"]],[5,7,["H1992"]],[7,8,["H7411"]],[8,11,["H3548"]],[11,14,["H2205"]],[14,18,["H1478"]],[18,21,["H5892"]],[21,22,["H3588"]],[22,24,["H1245"]],[24,26,["H400"]],[26,28,["H7725","(H853)"]],[28,30,["H5315"]]]},{"k":20330,"v":[[0,1,["H7200"]],[1,3,["H3068"]],[3,4,["H3588"]],[4,8,["H6862"]],[8,10,["H4578"]],[10,12,["H2560"]],[12,14,["H3820"]],[14,16,["H2015"]],[16,17,["H7130"]],[17,19,["H3588"]],[19,23,["H4784","H4784"]],[23,24,["H4480","H2351"]],[24,26,["H2719"]],[26,27,["H7921"]],[27,29,["H1004"]],[29,33,["H4194"]]]},{"k":20331,"v":[[0,3,["H8085"]],[3,4,["H3588"]],[4,5,["H589"]],[5,6,["H584"]],[6,9,["H369"]],[9,11,["H5162"]],[11,13,["H3605"]],[13,15,["H341"]],[15,17,["H8085"]],[17,20,["H7451"]],[20,23,["H7797"]],[23,24,["H3588"]],[24,25,["H859"]],[25,27,["H6213"]],[27,31,["H935"]],[31,33,["H3117"]],[33,37,["H7121"]],[37,41,["H1961"]],[41,44,["H3644"]]]},{"k":20332,"v":[[0,2,["H3605"]],[2,4,["H7451"]],[4,5,["H935"]],[5,6,["H6440"]],[6,9,["H5953"]],[9,12,["H834"]],[12,15,["H5953"]],[15,18,["H5921"]],[18,19,["H3605"]],[19,21,["H6588"]],[21,22,["H3588"]],[22,24,["H585"]],[24,26,["H7227"]],[26,29,["H3820"]],[29,31,["H1742"]]]},{"k":20333,"v":[[0,1,["H349"]],[1,4,["H136"]],[4,5,["H5743","(H853)"]],[5,7,["H1323"]],[7,9,["H6726"]],[9,15,["H639"]],[15,18,["H7993"]],[18,20,["H4480","H8064"]],[20,23,["H776"]],[23,25,["H8597"]],[25,27,["H3478"]],[27,29,["H2142"]],[29,30,["H3808"]],[30,32,["H1916","H7272"]],[32,35,["H3117"]],[35,38,["H639"]]]},{"k":20334,"v":[[0,2,["H136"]],[2,5,["H1104","(H853)"]],[5,6,["H3605"]],[6,8,["H4999"]],[8,10,["H3290"]],[10,13,["H3808"]],[13,14,["H2550"]],[14,18,["H2040"]],[18,21,["H5678"]],[21,24,["H4013"]],[24,27,["H1323"]],[27,29,["H3063"]],[29,34,["H5060"]],[34,37,["H776"]],[37,40,["H2490"]],[40,42,["H4467"]],[42,45,["H8269"]],[45,46,[]]]},{"k":20335,"v":[[0,4,["H1438"]],[4,7,["H2750"]],[7,8,["H639"]],[8,9,["H3605"]],[9,11,["H7161"]],[11,13,["H3478"]],[13,16,["H7725"]],[16,17,["H268"]],[17,20,["H3225"]],[20,22,["H4480","H6440"]],[22,24,["H341"]],[24,27,["H1197"]],[27,29,["H3290"]],[29,32,["H3852"]],[32,33,["H784"]],[33,35,["H398"]],[35,37,["H5439"]]]},{"k":20336,"v":[[0,3,["H1869"]],[3,5,["H7198"]],[5,8,["H341"]],[8,10,["H5324"]],[10,14,["H3225"]],[14,17,["H6862"]],[17,19,["H2026"]],[19,20,["H3605"]],[20,23,["H4261"]],[23,26,["H5869"]],[26,29,["H168"]],[29,32,["H1323"]],[32,34,["H6726"]],[34,37,["H8210"]],[37,39,["H2534"]],[39,41,["H784"]]]},{"k":20337,"v":[[0,2,["H136"]],[2,3,["H1961"]],[3,6,["H341"]],[6,10,["H1104"]],[10,11,["H3478"]],[11,15,["H1104"]],[15,16,["H3605"]],[16,18,["H759"]],[18,21,["H7843"]],[21,24,["H4013"]],[24,27,["H7235"]],[27,30,["H1323"]],[30,32,["H3063"]],[32,33,["H8386"]],[33,35,["H592"]]]},{"k":20338,"v":[[0,6,["H2554"]],[6,8,["H7900"]],[8,15,["H1588"]],[15,18,["H7843"]],[18,23,["H4150"]],[23,25,["H3068"]],[25,30,["H4150"]],[30,32,["H7676"]],[32,35,["H7911"]],[35,37,["H6726"]],[37,40,["H5006"]],[40,43,["H2195"]],[43,46,["H639"]],[46,48,["H4428"]],[48,51,["H3548"]]]},{"k":20339,"v":[[0,2,["H136"]],[2,5,["H2186"]],[5,7,["H4196"]],[7,10,["H5010"]],[10,12,["H4720"]],[12,16,["H5462"]],[16,19,["H3027"]],[19,22,["H341"]],[22,24,["H2346"]],[24,27,["H759"]],[27,30,["H5414"]],[30,32,["H6963"]],[32,35,["H1004"]],[35,38,["H3068"]],[38,42,["H3117"]],[42,46,["H4150"]]]},{"k":20340,"v":[[0,2,["H3068"]],[2,4,["H2803"]],[4,6,["H7843"]],[6,8,["H2346"]],[8,11,["H1323"]],[11,13,["H6726"]],[13,17,["H5186"]],[17,19,["H6957"]],[19,22,["H3808"]],[22,23,["H7725"]],[23,25,["H3027"]],[25,27,["H4480","H1104"]],[27,32,["H2426"]],[32,35,["H2346"]],[35,37,["H56"]],[37,39,["H535"]],[39,40,["H3162"]]]},{"k":20341,"v":[[0,2,["H8179"]],[2,4,["H2883"]],[4,7,["H776"]],[7,10,["H6"]],[10,12,["H7665"]],[12,14,["H1280"]],[14,16,["H4428"]],[16,19,["H8269"]],[19,23,["H1471"]],[23,25,["H8451"]],[25,27,["H369"]],[27,30,["H5030"]],[30,31,["H1571"]],[31,32,["H4672"]],[32,33,["H3808"]],[33,34,["H2377"]],[34,37,["H4480","H3068"]]]},{"k":20342,"v":[[0,2,["H2205"]],[2,5,["H1323"]],[5,7,["H6726"]],[7,8,["H3427"]],[8,11,["H776"]],[11,14,["H1826"]],[14,18,["H5927"]],[18,19,["H6083"]],[19,20,["H5921"]],[20,22,["H7218"]],[22,25,["H2296"]],[25,28,["H8242"]],[28,30,["H1330"]],[30,32,["H3389"]],[32,34,["H3381"]],[34,36,["H7218"]],[36,39,["H776"]]]},{"k":20343,"v":[[0,2,["H5869"]],[2,4,["H3615"]],[4,6,["H1832"]],[6,8,["H4578"]],[8,10,["H2560"]],[10,12,["H3516"]],[12,14,["H8210"]],[14,17,["H776"]],[17,18,["H5921"]],[18,20,["H7667"]],[20,23,["H1323"]],[23,26,["H5971"]],[26,29,["H5768"]],[29,32,["H3243"]],[32,33,["H5848"]],[33,36,["H7339"]],[36,39,["H7151"]]]},{"k":20344,"v":[[0,2,["H559"]],[2,5,["H517"]],[5,6,["H346"]],[6,8,["H1715"]],[8,10,["H3196"]],[10,13,["H5848"]],[13,16,["H2491"]],[16,19,["H7339"]],[19,22,["H5892"]],[22,25,["H5315"]],[25,28,["H8210"]],[28,29,["H413"]],[29,31,["H517"]],[31,32,["H2436"]]]},{"k":20345,"v":[[0,2,["H4100"]],[2,7,["H5749"]],[7,11,["H4100"]],[11,14,["H1819"]],[14,18,["H1323"]],[18,20,["H3389"]],[20,21,["H4100"]],[21,24,["H7737"]],[24,30,["H5162"]],[30,33,["H1330"]],[33,34,["H1323"]],[34,36,["H6726"]],[36,37,["H3588"]],[37,39,["H7667"]],[39,41,["H1419"]],[41,44,["H3220"]],[44,45,["H4310"]],[45,47,["H7495"]],[47,48,[]]]},{"k":20346,"v":[[0,2,["H5030"]],[2,4,["H2372"]],[4,5,["H7723"]],[5,8,["H8602"]],[8,14,["H3808"]],[14,15,["H1540","H5921"]],[15,17,["H5771"]],[17,20,["H7725"]],[20,22,["H7622"]],[22,25,["H2372"]],[25,28,["H7723"]],[28,29,["H4864"]],[29,33,["H4065"]]]},{"k":20347,"v":[[0,1,["H3605"]],[1,4,["H5674","H1870"]],[4,5,["H5606"]],[5,7,["H3709"]],[7,8,["H5921"]],[8,11,["H8319"]],[11,13,["H5128"]],[13,15,["H7218"]],[15,16,["H5921"]],[16,18,["H1323"]],[18,20,["H3389"]],[20,23,["H2063"]],[23,25,["H5892"]],[25,28,["H7945","H559"]],[28,30,["H3632"]],[30,32,["H3308"]],[32,34,["H4885"]],[34,37,["H3605"]],[37,38,["H776"]]]},{"k":20348,"v":[[0,1,["H3605"]],[1,3,["H341"]],[3,5,["H6475"]],[5,7,["H6310"]],[7,8,["H5921"]],[8,11,["H8319"]],[11,13,["H2786"]],[13,15,["H8127"]],[15,17,["H559"]],[17,22,["H1104"]],[22,23,["H389"]],[23,24,["H2088"]],[24,27,["H3117"]],[27,31,["H7945","H6960"]],[31,34,["H4672"]],[34,37,["H7200"]],[37,38,[]]]},{"k":20349,"v":[[0,2,["H3068"]],[2,4,["H6213"]],[4,6,["H834"]],[6,9,["H2161"]],[9,12,["H1214"]],[12,14,["H565"]],[14,15,["H834"]],[15,18,["H6680"]],[18,21,["H4480","H3117"]],[21,23,["H6924"]],[23,27,["H2040"]],[27,30,["H3808"]],[30,31,["H2550"]],[31,37,["H341"]],[37,39,["H8055"]],[39,40,["H5921"]],[40,45,["H7311"]],[45,47,["H7161"]],[47,50,["H6862"]]]},{"k":20350,"v":[[0,2,["H3820"]],[2,3,["H6817"]],[3,4,["H413"]],[4,6,["H136"]],[6,8,["H2346"]],[8,11,["H1323"]],[11,13,["H6726"]],[13,15,["H1832"]],[15,17,["H3381"]],[17,20,["H5158"]],[20,21,["H3119"]],[21,23,["H3915"]],[23,24,["H5414"]],[24,26,["H408"]],[26,27,["H6314"]],[27,29,["H408"]],[29,31,["H1323"]],[31,34,["H5869"]],[34,35,["H1826"]]]},{"k":20351,"v":[[0,1,["H6965"]],[1,3,["H7442"]],[3,6,["H3915"]],[6,9,["H7218"]],[9,12,["H821"]],[12,14,["H8210"]],[14,16,["H3820"]],[16,18,["H4325"]],[18,19,["H5227"]],[19,21,["H6440"]],[21,24,["H136"]],[24,26,["H5375"]],[26,28,["H3709"]],[28,29,["H413"]],[29,31,["H5921"]],[31,33,["H5315"]],[33,37,["H5768"]],[37,39,["H5848"]],[39,41,["H7458"]],[41,44,["H7218"]],[44,46,["H3605"]],[46,47,["H2351"]]]},{"k":20352,"v":[[0,1,["H7200"]],[1,3,["H3068"]],[3,5,["H5027"]],[5,7,["H4310"]],[7,10,["H5953"]],[10,11,["H3541"]],[11,14,["H802"]],[14,15,["H398"]],[15,17,["H6529"]],[17,19,["H5768"]],[19,23,["H2949"]],[23,26,["H3548"]],[26,29,["H5030"]],[29,31,["H2026"]],[31,34,["H4720"]],[34,37,["H136"]]]},{"k":20353,"v":[[0,2,["H5288"]],[2,5,["H2205"]],[5,6,["H7901"]],[6,9,["H776"]],[9,12,["H2351"]],[12,14,["H1330"]],[14,18,["H970"]],[18,20,["H5307"]],[20,23,["H2719"]],[23,26,["H2026"]],[26,30,["H3117"]],[30,33,["H639"]],[33,36,["H2873"]],[36,38,["H3808"]],[38,39,["H2550"]]]},{"k":20354,"v":[[0,3,["H7121"]],[3,7,["H4150"]],[7,8,["H3117"]],[8,10,["H4032"]],[10,12,["H4480","H5439"]],[12,17,["H3117"]],[17,20,["H3068"]],[20,21,["H639"]],[21,22,["H3808"]],[22,23,["H1961","H6412"]],[23,25,["H8300"]],[25,27,["H834"]],[27,30,["H2946"]],[30,33,["H7235"]],[33,36,["H341"]],[36,37,["H3615"]]]},{"k":20355,"v":[[0,1,["H589"]],[1,4,["H1397"]],[4,7,["H7200"]],[7,8,["H6040"]],[8,11,["H7626"]],[11,14,["H5678"]]]},{"k":20356,"v":[[0,3,["H5090"]],[3,6,["H1980"]],[6,9,["H2822"]],[9,11,["H3808"]],[11,13,["H216"]]]},{"k":20357,"v":[[0,1,["H389"]],[1,6,["H7725"]],[6,8,["H2015"]],[8,10,["H3027"]],[10,13,["H3605"]],[13,15,["H3117"]]]},{"k":20358,"v":[[0,2,["H1320"]],[2,5,["H5785"]],[5,9,["H1086"]],[9,12,["H7665"]],[12,14,["H6106"]]]},{"k":20359,"v":[[0,3,["H1129"]],[3,4,["H5921"]],[4,7,["H5362"]],[7,10,["H7219"]],[10,12,["H8513"]]]},{"k":20360,"v":[[0,3,["H3427"]],[3,7,["H4285"]],[7,12,["H4191"]],[12,14,["H5769"]]]},{"k":20361,"v":[[0,3,["H1443"]],[3,5,["H1157"]],[5,8,["H3808"]],[8,10,["H3318"]],[10,16,["H3513","H5178"]]]},{"k":20362,"v":[[0,1,["H1571"]],[1,2,["H3588"]],[2,4,["H2199"]],[4,6,["H7768"]],[6,9,["H5640"]],[9,11,["H8605"]]]},{"k":20363,"v":[[0,3,["H1443"]],[3,5,["H1870"]],[5,8,["H1496"]],[8,14,["H5753","H5410"]]]},{"k":20364,"v":[[0,1,["H1931"]],[1,7,["H1677"]],[7,10,["H693"]],[10,14,["H738"]],[14,17,["H4565"]]]},{"k":20365,"v":[[0,4,["H5493"]],[4,6,["H1870"]],[6,11,["H6582"]],[11,14,["H7760"]],[14,16,["H8074"]]]},{"k":20366,"v":[[0,3,["H1869"]],[3,5,["H7198"]],[5,7,["H5324"]],[7,11,["H4307"]],[11,14,["H2671"]]]},{"k":20367,"v":[[0,5,["H1121"]],[5,8,["H827"]],[8,10,["H935"]],[10,13,["H3629"]]]},{"k":20368,"v":[[0,2,["H1961"]],[2,4,["H7814"]],[4,6,["H3605"]],[6,8,["H5971"]],[8,11,["H5058"]],[11,12,["H3605"]],[12,14,["H3117"]]]},{"k":20369,"v":[[0,3,["H7646"]],[3,6,["H4844"]],[6,11,["H7301"]],[11,13,["H3939"]]]},{"k":20370,"v":[[0,4,["H1638"]],[4,6,["H8127"]],[6,9,["H2687"]],[9,12,["H3728"]],[12,15,["H665"]]]},{"k":20371,"v":[[0,8,["H2186","H5315"]],[8,10,["H4480","H7965"]],[10,12,["H5382"]],[12,13,["H2896"]]]},{"k":20372,"v":[[0,3,["H559"]],[3,5,["H5331"]],[5,8,["H8431"]],[8,10,["H6"]],[10,13,["H4480","H3068"]]]},{"k":20373,"v":[[0,1,["H2142"]],[1,3,["H6040"]],[3,6,["H4788"]],[6,8,["H3939"]],[8,11,["H7219"]]]},{"k":20374,"v":[[0,2,["H5315"]],[2,7,["H2142","H2142"]],[7,10,["H7743"]],[10,11,["H5921"]],[11,12,[]]]},{"k":20375,"v":[[0,1,["H2063"]],[1,3,["H7725"]],[3,4,["H413"]],[4,6,["H3820"]],[6,7,["H5921","H3651"]],[7,10,["H3176"]]]},{"k":20376,"v":[[0,5,["H3068"]],[5,6,["H2617"]],[6,7,["H3588"]],[7,10,["H3808"]],[10,11,["H8552"]],[11,12,["H3588"]],[12,14,["H7356"]],[14,15,["H3615"]],[15,16,["H3808"]]]},{"k":20377,"v":[[0,3,["H2319"]],[3,5,["H1242"]],[5,6,["H7227"]],[6,9,["H530"]]]},{"k":20378,"v":[[0,2,["H3068"]],[2,5,["H2506"]],[5,6,["H559"]],[6,8,["H5315"]],[8,9,["H5921","H3651"]],[9,12,["H3176"]],[12,14,[]]]},{"k":20379,"v":[[0,2,["H3068"]],[2,4,["H2896"]],[4,9,["H6960"]],[9,13,["H5315"]],[13,15,["H1875"]],[15,16,[]]]},{"k":20380,"v":[[0,3,["H2896"]],[3,9,["H3175"]],[9,12,["H1748"]],[12,15,["H8668"]],[15,18,["H3068"]]]},{"k":20381,"v":[[0,3,["H2896"]],[3,6,["H1397"]],[6,7,["H3588"]],[7,9,["H5375"]],[9,11,["H5923"]],[11,14,["H5271"]]]},{"k":20382,"v":[[0,2,["H3427"]],[2,3,["H910"]],[3,6,["H1826"]],[6,7,["H3588"]],[7,10,["H5190"]],[10,12,["H5921"]],[12,13,[]]]},{"k":20383,"v":[[0,2,["H5414"]],[2,4,["H6310"]],[4,7,["H6083"]],[7,10,["H194"]],[10,13,["H3426"]],[13,14,["H8615"]]]},{"k":20384,"v":[[0,2,["H5414"]],[2,4,["H3895"]],[4,8,["H5221"]],[8,13,["H7646"]],[13,15,["H2781"]]]},{"k":20385,"v":[[0,1,["H3588"]],[1,3,["H136"]],[3,5,["H3808"]],[5,7,["H2186"]],[7,9,["H5769"]]]},{"k":20386,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,5,["H3013"]],[5,10,["H7355"]],[10,14,["H7230"]],[14,17,["H2617"]]]},{"k":20387,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H6031"]],[5,6,["H4480","H3820"]],[6,8,["H3013"]],[8,10,["H1121"]],[10,12,["H376"]]]},{"k":20388,"v":[[0,2,["H1792"]],[2,3,["H8478"]],[3,5,["H7272"]],[5,6,["H3605"]],[6,8,["H615"]],[8,11,["H776"]]]},{"k":20389,"v":[[0,3,["H5186"]],[3,5,["H4941"]],[5,8,["H1397"]],[8,9,["H5048"]],[9,11,["H6440"]],[11,15,["H5945"]]]},{"k":20390,"v":[[0,2,["H5791"]],[2,4,["H120"]],[4,7,["H7379"]],[7,9,["H136"]],[9,10,["H7200"]],[10,11,["H3808"]]]},{"k":20391,"v":[[0,1,["H4310"]],[1,3,["H2088"]],[3,5,["H559"]],[5,10,["H1961"]],[10,13,["H136"]],[13,14,["H6680"]],[14,16,["H3808"]]]},{"k":20392,"v":[[0,4,["H4480","H6310"]],[4,8,["H5945"]],[8,9,["H3318"]],[9,10,["H3808"]],[10,11,["H7451"]],[11,13,["H2896"]]]},{"k":20393,"v":[[0,1,["H4100"]],[1,4,["H2416"]],[4,5,["H120"]],[5,6,["H596"]],[6,8,["H1397"]],[8,9,["H5921"]],[9,14,["H2399"]]]},{"k":20394,"v":[[0,3,["H2664"]],[3,5,["H2713"]],[5,7,["H1870"]],[7,10,["H7725"]],[10,11,["H5704"]],[11,13,["H3068"]]]},{"k":20395,"v":[[0,4,["H5375"]],[4,6,["H3824"]],[6,7,["H413"]],[7,9,["H3709"]],[9,10,["H413"]],[10,11,["H410"]],[11,14,["H8064"]]]},{"k":20396,"v":[[0,1,["H5168"]],[1,3,["H6586"]],[3,6,["H4784"]],[6,7,["H859"]],[7,9,["H3808"]],[9,10,["H5545"]]]},{"k":20397,"v":[[0,3,["H5526"]],[3,5,["H639"]],[5,7,["H7291"]],[7,11,["H2026"]],[11,14,["H3808"]],[14,15,["H2550"]]]},{"k":20398,"v":[[0,3,["H5526"]],[3,7,["H6051"]],[7,10,["H8605"]],[10,14,["H4480","H5674"]]]},{"k":20399,"v":[[0,3,["H7760"]],[3,7,["H5501"]],[7,9,["H3973"]],[9,12,["H7130"]],[12,15,["H5971"]]]},{"k":20400,"v":[[0,1,["H3605"]],[1,3,["H341"]],[3,5,["H6475"]],[5,7,["H6310"]],[7,8,["H5921"]],[8,9,[]]]},{"k":20401,"v":[[0,1,["H6343"]],[1,4,["H6354"]],[4,6,["H1961"]],[6,9,["H7612"]],[9,11,["H7667"]]]},{"k":20402,"v":[[0,2,["H5869"]],[2,4,["H3381"]],[4,6,["H6388"]],[6,8,["H4325"]],[8,9,["H5921"]],[9,11,["H7667"]],[11,14,["H1323"]],[14,17,["H5971"]]]},{"k":20403,"v":[[0,2,["H5869"]],[2,4,["H5064"]],[4,6,["H1820"]],[6,7,["H3808"]],[7,9,["H4480","H369"]],[9,10,["H2014"]]]},{"k":20404,"v":[[0,1,["H5704"]],[1,3,["H3068"]],[3,5,["H8259"]],[5,7,["H7200"]],[7,9,["H4480","H8064"]]]},{"k":20405,"v":[[0,2,["H5869"]],[2,3,["H5953"]],[3,5,["H5315"]],[5,8,["H4480","H3605"]],[8,10,["H1323"]],[10,13,["H5892"]]]},{"k":20406,"v":[[0,2,["H341"]],[2,5,["H6679","H6679"]],[5,8,["H6833"]],[8,10,["H2600"]]]},{"k":20407,"v":[[0,4,["H6789"]],[4,6,["H2416"]],[6,9,["H953"]],[9,11,["H3034"]],[11,13,["H68"]],[13,15,[]]]},{"k":20408,"v":[[0,1,["H4325"]],[1,2,["H6687"]],[2,3,["H5921"]],[3,5,["H7218"]],[5,8,["H559"]],[8,12,["H1504"]]]},{"k":20409,"v":[[0,3,["H7121"]],[3,5,["H8034"]],[5,7,["H3068"]],[7,12,["H4480","H953","H8482"]]]},{"k":20410,"v":[[0,3,["H8085"]],[3,5,["H6963"]],[5,6,["H5956"]],[6,7,["H408"]],[7,9,["H241"]],[9,12,["H7309"]],[12,15,["H7775"]]]},{"k":20411,"v":[[0,3,["H7126"]],[3,6,["H3117"]],[6,10,["H7121"]],[10,13,["H559"]],[13,14,["H3372"]],[14,15,["H408"]]]},{"k":20412,"v":[[0,2,["H136"]],[2,5,["H7378"]],[5,7,["H7379"]],[7,10,["H5315"]],[10,13,["H1350"]],[13,15,["H2416"]]]},{"k":20413,"v":[[0,2,["H3068"]],[2,5,["H7200"]],[5,7,["H5792"]],[7,8,["H8199"]],[8,11,["H4941"]]]},{"k":20414,"v":[[0,3,["H7200"]],[3,4,["H3605"]],[4,6,["H5360"]],[6,8,["H3605"]],[8,10,["H4284"]],[10,12,[]]]},{"k":20415,"v":[[0,3,["H8085"]],[3,5,["H2781"]],[5,7,["H3068"]],[7,9,["H3605"]],[9,11,["H4284"]],[11,12,["H5921"]],[12,13,[]]]},{"k":20416,"v":[[0,2,["H8193"]],[2,8,["H6965"]],[8,12,["H1902"]],[12,13,["H5921"]],[13,15,["H3605"]],[15,17,["H3117"]]]},{"k":20417,"v":[[0,1,["H5027"]],[1,4,["H3427"]],[4,8,["H7012"]],[8,9,["H589"]],[9,12,["H4485"]]]},{"k":20418,"v":[[0,1,["H7725"]],[1,5,["H1576"]],[5,7,["H3068"]],[7,11,["H4639"]],[11,14,["H3027"]]]},{"k":20419,"v":[[0,1,["H5414"]],[1,3,["H4044"]],[3,5,["H3820"]],[5,7,["H8381"]],[7,9,[]]]},{"k":20420,"v":[[0,1,["H7291"]],[1,3,["H8045"]],[3,6,["H639"]],[6,8,["H4480","H8478"]],[8,10,["H8064"]],[10,13,["H3068"]]]},{"k":20421,"v":[[0,1,["H349"]],[1,4,["H2091"]],[4,6,["H6004"]],[6,10,["H2896"]],[10,12,["H3800"]],[12,13,["H8132"]],[13,15,["H68"]],[15,18,["H6944"]],[18,21,["H8210"]],[21,24,["H7218"]],[24,26,["H3605"]],[26,27,["H2351"]]]},{"k":20422,"v":[[0,2,["H3368"]],[2,3,["H1121"]],[3,5,["H6726"]],[5,6,["H5537"]],[6,9,["H6337"]],[9,10,["H349"]],[10,13,["H2803"]],[13,15,["H2789"]],[15,16,["H5035"]],[16,18,["H4639"]],[18,21,["H3027"]],[21,24,["H3335"]]]},{"k":20423,"v":[[0,1,["H1571"]],[1,4,["H8565"]],[4,6,["H2502"]],[6,8,["H7699"]],[8,11,["H3243"]],[11,15,["H1482"]],[15,17,["H1323"]],[17,20,["H5971"]],[20,23,["H393"]],[23,26,["H3283"]],[26,29,["H4057"]]]},{"k":20424,"v":[[0,2,["H3956"]],[2,6,["H3243"]],[6,7,["H1692"]],[7,8,["H413"]],[8,13,["H2441"]],[13,15,["H6772"]],[15,18,["H5768"]],[18,19,["H7592"]],[19,20,["H3899"]],[20,23,["H369"]],[23,24,["H6566"]],[24,27,[]]]},{"k":20425,"v":[[0,4,["H398"]],[4,5,["H4574"]],[5,7,["H8074"]],[7,10,["H2351"]],[10,15,["H539"]],[15,16,["H5921"]],[16,17,["H8438"]],[17,18,["H2263"]],[18,19,["H830"]]]},{"k":20426,"v":[[0,6,["H5771"]],[6,9,["H1323"]],[9,12,["H5971"]],[12,14,["H1431"]],[14,20,["H4480","H2403"]],[20,22,["H5467"]],[22,25,["H2015"]],[25,27,["H3644"]],[27,29,["H7281"]],[29,31,["H3808"]],[31,32,["H3027"]],[32,33,["H2342"]],[33,35,[]]]},{"k":20427,"v":[[0,2,["H5139"]],[2,4,["H2141"]],[4,6,["H4480","H7950"]],[6,9,["H6705"]],[9,11,["H4480","H2461"]],[11,15,["H119"]],[15,17,["H6106"]],[17,19,["H4480","H6443"]],[19,21,["H1508"]],[21,24,["H5601"]]]},{"k":20428,"v":[[0,2,["H8389"]],[2,4,["H2821"]],[4,7,["H4480","H7815"]],[7,10,["H3808"]],[10,11,["H5234"]],[11,14,["H2351"]],[14,16,["H5785"]],[16,17,["H6821"]],[17,18,["H5921"]],[18,20,["H6106"]],[20,23,["H3001"]],[23,26,["H1961"]],[26,29,["H6086"]]]},{"k":20429,"v":[[0,4,["H2491"]],[4,7,["H2719"]],[7,8,["H1961"]],[8,9,["H2896"]],[9,14,["H4480","H2491"]],[14,16,["H7458"]],[16,18,["H7945","H1992"]],[18,20,["H2100"]],[20,22,["H1856"]],[22,27,["H4480","H8570"]],[27,30,["H7704"]]]},{"k":20430,"v":[[0,2,["H3027"]],[2,5,["H7362"]],[5,6,["H802"]],[6,8,["H1310"]],[8,11,["H3206"]],[11,13,["H1961"]],[13,15,["H1262"]],[15,18,["H7667"]],[18,21,["H1323"]],[21,24,["H5971"]]]},{"k":20431,"v":[[0,2,["H3068"]],[2,4,["H3615","(H853)"]],[4,6,["H2534"]],[6,10,["H8210"]],[10,12,["H2740"]],[12,13,["H639"]],[13,16,["H3341"]],[16,18,["H784"]],[18,20,["H6726"]],[20,24,["H398"]],[24,26,["H3247"]],[26,27,[]]]},{"k":20432,"v":[[0,2,["H4428"]],[2,5,["H776"]],[5,7,["H3605"]],[7,9,["H3427"]],[9,12,["H8398"]],[12,14,["H3808"]],[14,16,["H539"]],[16,17,["H3588"]],[17,19,["H6862"]],[19,22,["H341"]],[22,25,["H935"]],[25,28,["H8179"]],[28,30,["H3389"]]]},{"k":20433,"v":[[0,3,["H4480","H2403"]],[3,6,["H5030"]],[6,9,["H5771"]],[9,12,["H3548"]],[12,15,["H8210"]],[15,17,["H1818"]],[17,20,["H6662"]],[20,23,["H7130"]],[23,25,[]]]},{"k":20434,"v":[[0,3,["H5128"]],[3,5,["H5787"]],[5,9,["H2351"]],[9,12,["H1351"]],[12,15,["H1818"]],[15,19,["H3201"]],[19,20,["H3808"]],[20,21,["H5060"]],[21,23,["H3830"]]]},{"k":20435,"v":[[0,2,["H7121"]],[2,5,["H5493"]],[5,9,["H2931"]],[9,10,["H5493"]],[10,11,["H5493"]],[11,12,["H5060"]],[12,13,["H408"]],[13,14,["H3588"]],[14,17,["H5132"]],[17,18,["H1571"]],[18,19,["H5128"]],[19,21,["H559"]],[21,24,["H1471"]],[24,27,["H3808"]],[27,28,["H3254"]],[28,29,["H1481"]],[29,30,[]]]},{"k":20436,"v":[[0,2,["H6440"]],[2,5,["H3068"]],[5,7,["H2505"]],[7,11,["H3808"]],[11,12,["H3254"]],[12,13,["H5027"]],[13,16,["H5375"]],[16,17,["H3808"]],[17,19,["H6440"]],[19,22,["H3548"]],[22,24,["H2603"]],[24,25,["H3808"]],[25,27,["H2205"]]]},{"k":20437,"v":[[0,5,["H5869"]],[5,7,["H5750"]],[7,8,["H3615"]],[8,9,["H413"]],[9,11,["H1892"]],[11,12,["H5833"]],[12,15,["H6836"]],[15,18,["H6822"]],[18,19,["H413"]],[19,21,["H1471"]],[21,24,["H3808"]],[24,25,["H3467"]],[25,26,[]]]},{"k":20438,"v":[[0,2,["H6679"]],[2,4,["H6806"]],[4,8,["H4480","H1980"]],[8,11,["H7339"]],[11,13,["H7093"]],[13,15,["H7126"]],[15,17,["H3117"]],[17,19,["H4390"]],[19,20,["H3588"]],[20,22,["H7093"]],[22,24,["H935"]]]},{"k":20439,"v":[[0,2,["H7291"]],[2,3,["H1961"]],[3,4,["H7031"]],[4,7,["H4480","H5404"]],[7,10,["H8064"]],[10,12,["H1814"]],[12,14,["H5921"]],[14,16,["H2022"]],[16,19,["H693"]],[19,24,["H4057"]]]},{"k":20440,"v":[[0,2,["H7307"]],[2,5,["H639"]],[5,7,["H4899"]],[7,10,["H3068"]],[10,12,["H3920"]],[12,15,["H7825"]],[15,17,["H834"]],[17,19,["H559"]],[19,22,["H6738"]],[22,25,["H2421"]],[25,28,["H1471"]]]},{"k":20441,"v":[[0,1,["H7797"]],[1,4,["H8055"]],[4,6,["H1323"]],[6,8,["H123"]],[8,10,["H3427"]],[10,13,["H776"]],[13,15,["H5780"]],[15,17,["H3563"]],[17,18,["H1571"]],[18,21,["H5674"]],[21,22,["H5921"]],[22,27,["H7937"]],[27,32,["H6168"]]]},{"k":20442,"v":[[0,5,["H5771"]],[5,7,["H8552"]],[7,9,["H1323"]],[9,11,["H6726"]],[11,14,["H3808"]],[14,15,["H3254"]],[15,20,["H1540"]],[20,23,["H6485"]],[23,25,["H5771"]],[25,27,["H1323"]],[27,29,["H123"]],[29,32,["H1540","H5921"]],[32,34,["H2403"]]]},{"k":20443,"v":[[0,1,["H2142"]],[1,3,["H3068"]],[3,4,["H4100"]],[4,6,["H1961"]],[6,9,["H5027"]],[9,11,["H7200","(H853)"]],[11,13,["H2781"]]]},{"k":20444,"v":[[0,2,["H5159"]],[2,4,["H2015"]],[4,6,["H2114"]],[6,8,["H1004"]],[8,10,["H5237"]]]},{"k":20445,"v":[[0,2,["H1961"]],[2,3,["H3490"]],[3,5,["H369","H1"]],[5,7,["H517"]],[7,10,["H490"]]]},{"k":20446,"v":[[0,3,["H8354"]],[3,5,["H4325"]],[5,7,["H3701"]],[7,9,["H6086"]],[9,11,["H935","H4242"]],[11,13,[]]]},{"k":20447,"v":[[0,2,["H6677"]],[2,4,["H5921"]],[4,5,["H7291"]],[5,7,["H3021"]],[7,11,["H3808","H5117"]]]},{"k":20448,"v":[[0,3,["H5414"]],[3,5,["H3027"]],[5,8,["H4714"]],[8,12,["H804"]],[12,15,["H7646"]],[15,17,["H3899"]]]},{"k":20449,"v":[[0,2,["H1"]],[2,4,["H2398"]],[4,7,["H369"]],[7,9,["H587"]],[9,11,["H5445"]],[11,13,["H5771"]]]},{"k":20450,"v":[[0,1,["H5650"]],[1,4,["H4910"]],[4,8,["H369"]],[8,11,["H6561"]],[11,16,["H4480","H3027"]]]},{"k":20451,"v":[[0,2,["H935"]],[2,4,["H3899"]],[4,10,["H5315"]],[10,12,["H4480","H6440"]],[12,14,["H2719"]],[14,17,["H4057"]]]},{"k":20452,"v":[[0,2,["H5785"]],[2,4,["H3648"]],[4,7,["H8574"]],[7,9,["H4480","H6440"]],[9,11,["H2152"]],[11,12,["H7458"]]]},{"k":20453,"v":[[0,2,["H6031"]],[2,4,["H802"]],[4,6,["H6726"]],[6,9,["H1330"]],[9,12,["H5892"]],[12,14,["H3063"]]]},{"k":20454,"v":[[0,1,["H8269"]],[1,4,["H8518"]],[4,7,["H3027"]],[7,9,["H6440"]],[9,11,["H2205"]],[11,13,["H3808"]],[13,14,["H1921"]]]},{"k":20455,"v":[[0,2,["H5375"]],[2,5,["H970"]],[5,7,["H2911"]],[7,10,["H5288"]],[10,11,["H3782"]],[11,14,["H6086"]]]},{"k":20456,"v":[[0,2,["H2205"]],[2,4,["H7673"]],[4,7,["H4480","H8179"]],[7,10,["H970"]],[10,13,["H4480","H5058"]]]},{"k":20457,"v":[[0,2,["H4885"]],[2,5,["H3820"]],[5,7,["H7673"]],[7,9,["H4234"]],[9,11,["H2015"]],[11,13,["H60"]]]},{"k":20458,"v":[[0,2,["H5850"]],[2,4,["H5307"]],[4,7,["H7218"]],[7,8,["H188"]],[8,11,["H3588"]],[11,14,["H2398"]]]},{"k":20459,"v":[[0,1,["H5921"]],[1,2,["H2088"]],[2,4,["H3820"]],[4,5,["H1961"]],[5,6,["H1739"]],[6,7,["H5921"]],[7,8,["H428"]],[8,11,["H5869"]],[11,13,["H2821"]]]},{"k":20460,"v":[[0,2,["H5921"]],[2,4,["H2022"]],[4,6,["H6726"]],[6,7,["H7945"]],[7,9,["H8074"]],[9,11,["H7776"]],[11,12,["H1980"]],[12,14,[]]]},{"k":20461,"v":[[0,1,["H859"]],[1,3,["H3068"]],[3,4,["H3427"]],[4,6,["H5769"]],[6,8,["H3678"]],[8,10,["H1755"]],[10,12,["H1755"]]]},{"k":20462,"v":[[0,1,["H4100"]],[1,4,["H7911"]],[4,7,["H5331"]],[7,9,["H5800"]],[9,12,["H753"]],[12,13,["H3117"]]]},{"k":20463,"v":[[0,1,["H7725"]],[1,4,["H413"]],[4,7,["H3068"]],[7,12,["H7725"]],[12,13,["H2318"]],[13,15,["H3117"]],[15,18,["H6924"]]]},{"k":20464,"v":[[0,1,["H3588","H518"]],[1,5,["H3988","H3988"]],[5,10,["H7107","H5704","H3966"]],[10,11,["H5921"]],[11,12,[]]]},{"k":20465,"v":[[0,5,["H1961"]],[5,8,["H7970"]],[8,9,["H8141"]],[9,12,["H7243"]],[12,16,["H2568"]],[16,20,["H2320"]],[20,22,["H589"]],[22,24,["H8432"]],[24,26,["H1473"]],[26,27,["H5921"]],[27,29,["H5104"]],[29,31,["H3529"]],[31,34,["H8064"]],[34,36,["H6605"]],[36,39,["H7200"]],[39,40,["H4759"]],[40,42,["H430"]]]},{"k":20466,"v":[[0,3,["H2568"]],[3,7,["H2320"]],[7,8,["H1931"]],[8,11,["H2549"]],[11,12,["H8141"]],[12,14,["H4428"]],[14,15,["H3112"]],[15,16,["H1546"]]]},{"k":20467,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,7,["H1961","H1961"]],[7,8,["H413"]],[8,9,["H3168"]],[9,11,["H3548"]],[11,13,["H1121"]],[13,15,["H941"]],[15,18,["H776"]],[18,21,["H3778"]],[21,22,["H5921"]],[22,24,["H5104"]],[24,25,["H3529"]],[25,28,["H3027"]],[28,31,["H3068"]],[31,32,["H1961"]],[32,33,["H8033"]],[33,34,["H5921"]],[34,35,[]]]},{"k":20468,"v":[[0,3,["H7200"]],[3,5,["H2009"]],[5,7,["H7307","H5591"]],[7,8,["H935"]],[8,10,["H4480"]],[10,12,["H6828"]],[12,14,["H1419"]],[14,15,["H6051"]],[15,18,["H784"]],[18,20,["H3947"]],[20,23,["H5051"]],[23,25,["H5439"]],[25,31,["H4480","H8432"]],[31,35,["H5869"]],[35,37,["H2830"]],[37,41,["H4480","H8432"]],[41,44,["H784"]]]},{"k":20469,"v":[[0,5,["H4480","H8432"]],[5,9,["H1823"]],[9,11,["H702"]],[11,13,["H2416"]],[13,15,["H2088"]],[15,18,["H4758"]],[18,19,["H2007"]],[19,22,["H1823"]],[22,25,["H120"]]]},{"k":20470,"v":[[0,3,["H259"]],[3,5,["H702"]],[5,6,["H6440"]],[6,9,["H259"]],[9,11,["H702"]],[11,12,["H3671"]]]},{"k":20471,"v":[[0,3,["H7272"]],[3,5,["H3477"]],[5,6,["H7272"]],[6,9,["H3709"]],[9,12,["H7272"]],[12,16,["H3709"]],[16,19,["H5695"]],[19,20,["H7272"]],[20,23,["H5340"]],[23,26,["H5869"]],[26,28,["H7044"]],[28,29,["H5178"]]]},{"k":20472,"v":[[0,5,["H3027"]],[5,8,["H120"]],[8,9,["H4480","H8478"]],[9,11,["H3671"]],[11,12,["H5921"]],[12,14,["H702"]],[14,15,["H7253"]],[15,18,["H702"]],[18,21,["H6440"]],[21,24,["H3671"]]]},{"k":20473,"v":[[0,2,["H3671"]],[2,4,["H2266"]],[4,5,["H802"]],[5,6,["H413"]],[6,7,["H269"]],[7,9,["H5437"]],[9,10,["H3808"]],[10,13,["H1980"]],[13,15,["H1980"]],[15,17,["H376"]],[17,18,["H5676"]],[18,19,["H6440"]]]},{"k":20474,"v":[[0,4,["H1823"]],[4,7,["H6440"]],[7,9,["H702"]],[9,12,["H6440"]],[12,15,["H120"]],[15,18,["H6440"]],[18,21,["H738"]],[21,22,["H413"]],[22,25,["H3225"]],[25,28,["H702"]],[28,31,["H6440"]],[31,34,["H7794"]],[34,38,["H4480","H8040"]],[38,40,["H702"]],[40,44,["H6440"]],[44,47,["H5404"]]]},{"k":20475,"v":[[0,4,["H6440"]],[4,7,["H3671"]],[7,9,["H6504"]],[9,10,["H4480","H4605"]],[10,11,["H8147"]],[11,15,["H376"]],[15,17,["H2266"]],[17,20,["H376"]],[20,22,["H8147"]],[22,23,["H3680","(H853)"]],[23,25,["H1472"]]]},{"k":20476,"v":[[0,3,["H1980"]],[3,5,["H376"]],[5,6,["H5676"]],[6,7,["H6440"]],[7,8,["H834","H8033"]],[8,10,["H7307"]],[10,11,["H1961"]],[11,13,["H1980"]],[13,15,["H1980"]],[15,18,["H5437"]],[18,19,["H3808"]],[19,22,["H1980"]]]},{"k":20477,"v":[[0,4,["H1823"]],[4,8,["H2416"]],[8,10,["H4758"]],[10,13,["H1197"]],[13,14,["H1513"]],[14,16,["H784"]],[16,20,["H4758"]],[20,22,["H3940"]],[22,23,["H1931"]],[23,27,["H1980"]],[27,28,["H996"]],[28,31,["H2416"]],[31,34,["H784"]],[34,36,["H5051"]],[36,39,["H4480"]],[39,41,["H784"]],[41,43,["H3318"]],[43,44,["H1300"]]]},{"k":20478,"v":[[0,4,["H2416"]],[4,5,["H7519"]],[5,7,["H7725"]],[7,10,["H4758"]],[10,15,["H965"]]]},{"k":20479,"v":[[0,4,["H7200"]],[4,7,["H2416"]],[7,8,["H2009"]],[8,9,["H259"]],[9,10,["H212"]],[10,13,["H776"]],[13,14,["H681"]],[14,17,["H2416"]],[17,20,["H702"]],[20,21,["H6440"]]]},{"k":20480,"v":[[0,2,["H4758"]],[2,5,["H212"]],[5,8,["H4639"]],[8,13,["H5869"]],[13,16,["H8658"]],[16,19,["H702"]],[19,21,["H259"]],[21,22,["H1823"]],[22,25,["H4758"]],[25,28,["H4639"]],[28,30,["H834"]],[30,32,["H1961"]],[32,34,["H212"]],[34,37,["H8432"]],[37,40,["H212"]]]},{"k":20481,"v":[[0,3,["H1980"]],[3,5,["H1980"]],[5,6,["H5921"]],[6,8,["H702"]],[8,9,["H7253"]],[9,12,["H5437"]],[12,13,["H3808"]],[13,16,["H1980"]]]},{"k":20482,"v":[[0,4,["H1354"]],[4,8,["H1363"]],[8,12,["H3374"]],[12,15,["H1354"]],[15,17,["H4392"]],[17,19,["H5869"]],[19,21,["H5439"]],[21,23,["H702"]]]},{"k":20483,"v":[[0,5,["H2416"]],[5,6,["H1980"]],[6,8,["H212"]],[8,9,["H1980"]],[9,10,["H681"]],[10,16,["H2416"]],[16,19,["H5375"]],[19,20,["H4480","H5921"]],[20,22,["H776"]],[22,24,["H212"]],[24,27,["H5375"]]]},{"k":20484,"v":[[0,1,["H5921","H834","H8033"]],[1,3,["H7307"]],[3,4,["H1961"]],[4,6,["H1980"]],[6,8,["H1980"]],[8,9,["H8033"]],[9,12,["H7307"]],[12,14,["H1980"]],[14,17,["H212"]],[17,20,["H5375"]],[20,22,["H5980"]],[22,24,["H3588"]],[24,26,["H7307"]],[26,30,["H2416"]],[30,34,["H212"]]]},{"k":20485,"v":[[0,3,["H1980"]],[3,5,["H1980"]],[5,9,["H5975"]],[9,11,["H5975"]],[11,17,["H5375"]],[17,18,["H4480","H5921"]],[18,20,["H776"]],[20,22,["H212"]],[22,25,["H5375"]],[25,27,["H5980"]],[27,29,["H3588"]],[29,31,["H7307"]],[31,35,["H2416"]],[35,39,["H212"]]]},{"k":20486,"v":[[0,3,["H1823"]],[3,6,["H7549"]],[6,7,["H5921"]],[7,9,["H7218"]],[9,13,["H2416"]],[13,17,["H5869"]],[17,20,["H3372"]],[20,21,["H7140"]],[21,23,["H5186"]],[23,24,["H5921"]],[24,26,["H7218"]],[26,27,["H4480","H4605"]]]},{"k":20487,"v":[[0,2,["H8478"]],[2,4,["H7549"]],[4,7,["H3671"]],[7,8,["H3477"]],[8,10,["H802"]],[10,11,["H413"]],[11,13,["H269"]],[13,15,["H376"]],[15,17,["H8147"]],[17,19,["H3680"]],[19,22,["H2007"]],[22,25,["H376"]],[25,27,["H8147"]],[27,29,["H3680"]],[29,32,["H2007","(H853)"]],[32,34,["H1472"]]]},{"k":20488,"v":[[0,4,["H1980"]],[4,6,["H8085","(H853)"]],[6,8,["H6963"]],[8,11,["H3671"]],[11,14,["H6963"]],[14,16,["H7227"]],[16,17,["H4325"]],[17,20,["H6963"]],[20,23,["H7706"]],[23,25,["H6963"]],[25,27,["H1999"]],[27,30,["H6963"]],[30,33,["H4264"]],[33,36,["H5975"]],[36,39,["H7503"]],[39,41,["H3671"]]]},{"k":20489,"v":[[0,3,["H1961"]],[3,5,["H6963"]],[5,6,["H4480","H5921"]],[6,8,["H7549"]],[8,9,["H834"]],[9,11,["H5921"]],[11,13,["H7218"]],[13,16,["H5975"]],[16,20,["H7503"]],[20,22,["H3671"]]]},{"k":20490,"v":[[0,2,["H4480","H4605"]],[2,4,["H7549"]],[4,5,["H834"]],[5,7,["H5921"]],[7,9,["H7218"]],[9,12,["H1823"]],[12,15,["H3678"]],[15,18,["H4758"]],[18,21,["H5601"]],[21,22,["H68"]],[22,24,["H5921"]],[24,26,["H1823"]],[26,29,["H3678"]],[29,32,["H1823"]],[32,35,["H4758"]],[35,38,["H120"]],[38,39,["H4480","H4605"]],[39,40,["H5921"]],[40,41,[]]]},{"k":20491,"v":[[0,3,["H7200"]],[3,6,["H5869"]],[6,8,["H2830"]],[8,11,["H4758"]],[11,13,["H784"]],[13,15,["H5439"]],[15,16,["H1004"]],[16,20,["H4480","H4758"]],[20,23,["H4975"]],[23,25,["H4605"]],[25,29,["H4480","H4758"]],[29,32,["H4975"]],[32,34,["H4295"]],[34,36,["H7200"]],[36,41,["H4758"]],[41,43,["H784"]],[43,47,["H5051"]],[47,49,["H5439"]]]},{"k":20492,"v":[[0,3,["H4758"]],[3,6,["H7198"]],[6,7,["H834"]],[7,8,["H1961"]],[8,11,["H6051"]],[11,14,["H3117"]],[14,16,["H1653"]],[16,17,["H3651"]],[17,20,["H4758"]],[20,23,["H5051"]],[23,25,["H5439"]],[25,26,["H1931"]],[26,29,["H4758"]],[29,32,["H1823"]],[32,35,["H3519"]],[35,38,["H3068"]],[38,42,["H7200"]],[42,45,["H5307"]],[45,46,["H5921"]],[46,48,["H6440"]],[48,51,["H8085"]],[51,53,["H6963"]],[53,57,["H1696"]]]},{"k":20493,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H5975"]],[9,10,["H5921"]],[10,12,["H7272"]],[12,16,["H1696"]],[16,18,[]]]},{"k":20494,"v":[[0,3,["H7307"]],[3,4,["H935"]],[4,7,["H834"]],[7,9,["H1696"]],[9,10,["H413"]],[10,13,["H5975"]],[13,15,["H5921"]],[15,17,["H7272"]],[17,20,["H8085","(H853)"]],[20,23,["H1696"]],[23,24,["H413"]],[24,25,[]]]},{"k":20495,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H589"]],[9,10,["H7971"]],[10,11,["(H853)"]],[11,12,["H413"]],[12,14,["H1121"]],[14,16,["H3478"]],[16,17,["H413"]],[17,19,["H4775"]],[19,20,["H1471"]],[20,21,["H834"]],[21,23,["H4775"]],[23,26,["H1992"]],[26,29,["H1"]],[29,31,["H6586"]],[31,35,["H5704"]],[35,36,["H2088"]],[36,37,["H6106"]],[37,38,["H3117"]]]},{"k":20496,"v":[[0,4,["H7186","H6440"]],[4,5,["H1121"]],[5,7,["H2389","H3820"]],[7,8,["H589"]],[8,10,["H7971"]],[10,12,["H413"]],[12,17,["H559"]],[17,18,["H413"]],[18,20,["H3541"]],[20,21,["H559"]],[21,23,["H136"]],[23,24,["H3069"]]]},{"k":20497,"v":[[0,2,["H1992"]],[2,3,["H518"]],[3,6,["H8085"]],[6,8,["H518"]],[8,11,["H2308"]],[11,12,["H3588"]],[12,13,["H1992"]],[13,16,["H4805"]],[16,17,["H1004"]],[17,20,["H3045"]],[20,21,["H3588"]],[21,24,["H1961"]],[24,26,["H5030"]],[26,27,["H8432"]],[27,28,[]]]},{"k":20498,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,8,["H3372","H408"]],[8,9,["H4480"]],[9,11,["H408"]],[11,13,["H3372"]],[13,16,["H4480","H1697"]],[16,17,["H3588"]],[17,18,["H5621"]],[18,20,["H5544"]],[20,22,["H854"]],[22,25,["H859"]],[25,27,["H3427"]],[27,28,["H413"]],[28,29,["H6137"]],[29,32,["H3372","H408"]],[32,35,["H4480","H1697"]],[35,36,["H408"]],[36,38,["H2865"]],[38,41,["H4480","H6440"]],[41,42,["H3588"]],[42,43,["H1992"]],[43,46,["H4805"]],[46,47,["H1004"]]]},{"k":20499,"v":[[0,4,["H1696","(H853)"]],[4,6,["H1697"]],[6,7,["H413"]],[7,9,["H518"]],[9,12,["H8085"]],[12,14,["H518"]],[14,17,["H2308"]],[17,18,["H3588"]],[18,19,["H1992"]],[19,22,["H4805"]]]},{"k":20500,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H8085","(H853)"]],[6,7,["H834"]],[7,8,["H589"]],[8,9,["H1696"]],[9,10,["H413"]],[10,12,["H1961"]],[12,13,["H408"]],[13,15,["H4805"]],[15,18,["H4805"]],[18,19,["H1004"]],[19,20,["H6475"]],[20,22,["H6310"]],[22,24,["H398","(H853)"]],[24,25,["H834"]],[25,26,["H589"]],[26,27,["H5414","H413"]],[27,28,[]]]},{"k":20501,"v":[[0,4,["H7200"]],[4,5,["H2009"]],[5,7,["H3027"]],[7,9,["H7971"]],[9,10,["H413"]],[10,13,["H2009"]],[13,15,["H4039"]],[15,18,["H5612"]],[18,20,[]]]},{"k":20502,"v":[[0,3,["H6566"]],[3,5,["H6440"]],[5,8,["H1931"]],[8,10,["H3789"]],[10,11,["H6440"]],[11,13,["H268"]],[13,17,["H3789"]],[17,18,["H413"]],[18,19,["H7015"]],[19,21,["H1899"]],[21,23,["H1958"]]]},{"k":20503,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H398","(H853)"]],[9,10,["H834"]],[10,12,["H4672"]],[12,13,["H398"]],[13,14,["H2063","(H853)"]],[14,15,["H4039"]],[15,17,["H1980"]],[17,18,["H1696"]],[18,19,["H413"]],[19,21,["H1004"]],[21,23,["H3478"]]]},{"k":20504,"v":[[0,3,["H6605","(H853)"]],[3,5,["H6310"]],[5,11,["H398","(H853)"]],[11,12,["H2063"]],[12,13,["H4039"]]]},{"k":20505,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,11,["H990"]],[11,13,["H398"]],[13,15,["H4390"]],[15,17,["H4578"]],[17,18,["H854"]],[18,19,["H2063"]],[19,20,["H4039"]],[20,21,["H834"]],[21,22,["H589"]],[22,23,["H5414","H413"]],[23,28,["H398"]],[28,32,["H1961"]],[32,35,["H6310"]],[35,37,["H1706"]],[37,39,["H4966"]]]},{"k":20506,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H1980"]],[9,10,["H935"]],[10,12,["H413"]],[12,14,["H1004"]],[14,16,["H3478"]],[16,18,["H1696"]],[18,21,["H1697"]],[21,22,["H413"]],[22,23,[]]]},{"k":20507,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H3808"]],[4,5,["H7971"]],[5,6,["H413"]],[6,8,["H5971"]],[8,11,["H6012"]],[11,12,["H8193"]],[12,16,["H3515"]],[16,17,["H3956"]],[17,19,["H413"]],[19,21,["H1004"]],[21,23,["H3478"]]]},{"k":20508,"v":[[0,1,["H3808"]],[1,2,["H413"]],[2,3,["H7227"]],[3,4,["H5971"]],[4,7,["H6012"]],[7,8,["H8193"]],[8,12,["H3515"]],[12,13,["H3956"]],[13,14,["H834"]],[14,15,["H1697"]],[15,18,["H3808"]],[18,19,["H8085"]],[19,20,["H518","H3808"]],[20,23,["H7971"]],[23,25,["H413"]],[25,27,["H1992"]],[27,30,["H8085"]],[30,31,["H413"]],[31,32,[]]]},{"k":20509,"v":[[0,3,["H1004"]],[3,5,["H3478"]],[5,6,["H14"]],[6,7,["H3808"]],[7,8,["H8085"]],[8,9,["H413"]],[9,11,["H3588"]],[11,13,["H14"]],[13,14,["H369"]],[14,15,["H8085"]],[15,16,["H413"]],[16,18,["H3588"]],[18,19,["H3605"]],[19,21,["H1004"]],[21,23,["H3478"]],[23,25,["H2389","H4696"]],[25,27,["H7186","H3820"]]]},{"k":20510,"v":[[0,1,["H2009"]],[1,4,["H5414","(H853)"]],[4,6,["H6440"]],[6,7,["H2389"]],[7,8,["H5980"]],[8,10,["H6440"]],[10,11,["(H853)"]],[11,13,["H4696"]],[13,14,["H2389"]],[14,15,["H5980"]],[15,17,["H4696"]]]},{"k":20511,"v":[[0,3,["H8068"]],[3,4,["H2389"]],[4,6,["H4480","H6864"]],[6,9,["H5414"]],[9,11,["H4696"]],[11,12,["H3372"]],[12,14,["H3808"]],[14,15,["H3808"]],[15,17,["H2865"]],[17,20,["H4480","H6440"]],[20,21,["H3588"]],[21,22,["H1992"]],[22,25,["H4805"]],[25,26,["H1004"]]]},{"k":20512,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120","(H853)"]],[8,9,["H3605"]],[9,11,["H1697"]],[11,12,["H834"]],[12,15,["H1696"]],[15,16,["H413"]],[16,18,["H3947"]],[18,21,["H3824"]],[21,23,["H8085"]],[23,26,["H241"]]]},{"k":20513,"v":[[0,2,["H1980"]],[2,3,["H935"]],[3,5,["H413"]],[5,9,["H1473"]],[9,10,["H413"]],[10,12,["H1121"]],[12,15,["H5971"]],[15,17,["H1696"]],[17,18,["H413"]],[18,21,["H559","H413"]],[21,23,["H3541"]],[23,24,["H559"]],[24,26,["H136"]],[26,27,["H3069"]],[27,28,["H518"]],[28,31,["H8085"]],[31,33,["H518"]],[33,36,["H2308"]]]},{"k":20514,"v":[[0,3,["H7307"]],[3,6,["H5375"]],[6,9,["H8085"]],[9,10,["H310"]],[10,13,["H6963"]],[13,16,["H1419"]],[16,17,["H7494"]],[17,19,["H1288"]],[19,22,["H3519"]],[22,25,["H3068"]],[25,28,["H4480","H4725"]]]},{"k":20515,"v":[[0,5,["H6963"]],[5,8,["H3671"]],[8,12,["H2416"]],[12,14,["H5401"]],[14,15,["H802"]],[15,16,["H269"]],[16,19,["H6963"]],[19,22,["H212"]],[22,24,["H5980"]],[24,28,["H6963"]],[28,31,["H1419"]],[31,32,["H7494"]]]},{"k":20516,"v":[[0,3,["H7307"]],[3,6,["H5375"]],[6,10,["H3947"]],[10,13,["H1980"]],[13,15,["H4751"]],[15,18,["H2534"]],[18,21,["H7307"]],[21,24,["H3027"]],[24,27,["H3068"]],[27,29,["H2389"]],[29,30,["H5921"]],[30,31,[]]]},{"k":20517,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,8,["H1473"]],[8,10,["H8512"]],[10,12,["H3427"]],[12,13,["H413"]],[13,15,["H5104"]],[15,17,["H3529"]],[17,20,["H3427"]],[20,21,["H8033"]],[21,22,["H1992"]],[22,23,["H3427"]],[23,25,["H3427"]],[25,26,["H8033"]],[26,27,["H8074"]],[27,28,["H8432"]],[28,30,["H7651"]],[30,31,["H3117"]]]},{"k":20518,"v":[[0,5,["H1961"]],[5,8,["H4480","H7097"]],[8,10,["H7651"]],[10,11,["H3117"]],[11,14,["H1697"]],[14,17,["H3068"]],[17,18,["H1961"]],[18,19,["H413"]],[19,21,["H559"]]]},{"k":20519,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,6,["H5414"]],[6,9,["H6822"]],[9,12,["H1004"]],[12,14,["H3478"]],[14,16,["H8085"]],[16,18,["H1697"]],[18,21,["H4480","H6310"]],[21,25,["H2094","(H853)"]],[25,26,["H4480"]],[26,27,[]]]},{"k":20520,"v":[[0,3,["H559"]],[3,6,["H7563"]],[6,10,["H4191","H4191"]],[10,16,["H2094","H3808"]],[16,17,["H3808"]],[17,18,["H1696"]],[18,20,["H2094"]],[20,22,["H7563"]],[22,25,["H7563"]],[25,26,["H4480","H1870"]],[26,30,["H2421"]],[30,32,["H1931"]],[32,33,["H7563"]],[33,36,["H4191"]],[36,39,["H5771"]],[39,42,["H1818"]],[42,45,["H1245"]],[45,48,["H4480","H3027"]]]},{"k":20521,"v":[[0,2,["H3588"]],[2,3,["H859"]],[3,4,["H2094"]],[4,6,["H7563"]],[6,9,["H7725"]],[9,10,["H3808"]],[10,13,["H4480","H7562"]],[13,17,["H7563"]],[17,18,["H4480","H1870"]],[18,19,["H1931"]],[19,21,["H4191"]],[21,24,["H5771"]],[24,26,["H859"]],[26,28,["H5337","(H853)"]],[28,30,["H5315"]]]},{"k":20522,"v":[[0,4,["H6662"]],[4,7,["H7725"]],[7,10,["H4480","H6664"]],[10,12,["H6213"]],[12,13,["H5766"]],[13,16,["H5414"]],[16,18,["H4383"]],[18,19,["H6440"]],[19,21,["H1931"]],[21,23,["H4191"]],[23,24,["H3588"]],[24,27,["H3808"]],[27,30,["H2094"]],[30,33,["H4191"]],[33,36,["H2403"]],[36,39,["H6666"]],[39,40,["H834"]],[40,43,["H6213"]],[43,45,["H3808"]],[45,47,["H2142"]],[47,50,["H1818"]],[50,53,["H1245"]],[53,56,["H4480","H3027"]]]},{"k":20523,"v":[[0,2,["H3588"]],[2,3,["H859"]],[3,4,["H2094"]],[4,6,["H6662"]],[6,10,["H6662"]],[10,11,["H2398"]],[11,12,["H1115"]],[12,14,["H1931"]],[14,16,["H3808"]],[16,17,["H2398"]],[17,21,["H2421","H2421"]],[21,22,["H3588"]],[22,25,["H2094"]],[25,27,["H859"]],[27,29,["H5337","(H853)"]],[29,31,["H5315"]]]},{"k":20524,"v":[[0,3,["H3027"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H8033"]],[8,9,["H5921"]],[9,13,["H559"]],[13,14,["H413"]],[14,16,["H6965"]],[16,18,["H3318"]],[18,19,["H413"]],[19,21,["H1237"]],[21,25,["H8033"]],[25,26,["H1696"]],[26,27,["H854"]],[27,28,[]]]},{"k":20525,"v":[[0,3,["H6965"]],[3,6,["H3318"]],[6,7,["H413"]],[7,9,["H1237"]],[9,11,["H2009"]],[11,13,["H3519"]],[13,16,["H3068"]],[16,17,["H5975"]],[17,18,["H8033"]],[18,21,["H3519"]],[21,22,["H834"]],[22,24,["H7200"]],[24,25,["H5921"]],[25,27,["H5104"]],[27,29,["H3529"]],[29,32,["H5307"]],[32,33,["H5921"]],[33,35,["H6440"]]]},{"k":20526,"v":[[0,3,["H7307"]],[3,4,["H935"]],[4,8,["H5975"]],[8,10,["H5921"]],[10,12,["H7272"]],[12,14,["H1696"]],[14,15,["H854"]],[15,18,["H559"]],[18,19,["H413"]],[19,21,["H935"]],[21,23,["H5462"]],[23,24,["H8432"]],[24,26,["H1004"]]]},{"k":20527,"v":[[0,2,["H859"]],[2,4,["H1121"]],[4,6,["H120"]],[6,7,["H2009"]],[7,10,["H5414"]],[10,11,["H5688"]],[11,12,["H5921"]],[12,16,["H631"]],[16,23,["H3808"]],[23,25,["H3318"]],[25,26,["H8432"]],[26,27,[]]]},{"k":20528,"v":[[0,6,["H3956"]],[6,7,["H1692"]],[7,8,["H413"]],[8,13,["H2441"]],[13,18,["H481"]],[18,21,["H3808"]],[21,22,["H1961"]],[22,26,["H376","H3198"]],[26,27,["H3588"]],[27,28,["H1992"]],[28,31,["H4805"]],[31,32,["H1004"]]]},{"k":20529,"v":[[0,4,["H1696"]],[4,5,["H854"]],[5,9,["H6605","(H853)"]],[9,11,["H6310"]],[11,15,["H559"]],[15,16,["H413"]],[16,18,["H3541"]],[18,19,["H559"]],[19,21,["H136"]],[21,22,["H3069"]],[22,25,["H8085"]],[25,28,["H8085"]],[28,32,["H2310"]],[32,35,["H2308"]],[35,36,["H3588"]],[36,37,["H1992"]],[37,40,["H4805"]],[40,41,["H1004"]]]},{"k":20530,"v":[[0,1,["H859"]],[1,3,["H1121"]],[3,5,["H120"]],[5,6,["H3947"]],[6,9,["H3843"]],[9,11,["H5414"]],[11,13,["H6440"]],[13,16,["H2710"]],[16,17,["H5921"]],[17,20,["H5892"]],[20,21,["(H853)"]],[21,22,["H3389"]]]},{"k":20531,"v":[[0,2,["H5414"]],[2,3,["H4692"]],[3,4,["H5921"]],[4,7,["H1129"]],[7,9,["H1785"]],[9,10,["H5921"]],[10,13,["H8210"]],[13,15,["H5550"]],[15,16,["H5921"]],[16,18,["H5414"]],[18,20,["H4264"]],[20,22,["H5921"]],[22,25,["H7760"]],[25,27,["H3733"]],[27,28,["H5921"]],[28,31,["H5439"]]]},{"k":20532,"v":[[0,2,["H3947"]],[2,3,["H859"]],[3,7,["H1270"]],[7,8,["H4227"]],[8,10,["H5414"]],[10,14,["H7023"]],[14,16,["H1270"]],[16,17,["H996"]],[17,21,["H5892"]],[21,23,["H3559","(H853)"]],[23,25,["H6440"]],[25,26,["H413"]],[26,31,["H1961"]],[31,32,["H4692"]],[32,37,["H6696"]],[37,38,["H5921"]],[38,40,["H1931"]],[40,44,["H226"]],[44,47,["H1004"]],[47,49,["H3478"]]]},{"k":20533,"v":[[0,1,["H7901"]],[1,2,["H859"]],[2,4,["H5921"]],[4,6,["H8042"]],[6,7,["H6654"]],[7,9,["H7760","(H853)"]],[9,11,["H5771"]],[11,14,["H1004"]],[14,16,["H3478"]],[16,17,["H5921"]],[17,22,["H4557"]],[22,25,["H3117"]],[25,26,["H834"]],[26,29,["H7901"]],[29,30,["H5921"]],[30,34,["H5375","(H853)"]],[34,36,["H5771"]]]},{"k":20534,"v":[[0,2,["H589"]],[2,4,["H5414"]],[4,6,["(H853)"]],[6,8,["H8141"]],[8,11,["H5771"]],[11,15,["H4557"]],[15,18,["H3117"]],[18,19,["H7969"]],[19,20,["H3967"]],[20,22,["H8673"]],[22,23,["H3117"]],[23,27,["H5375"]],[27,29,["H5771"]],[29,32,["H1004"]],[32,34,["H3478"]]]},{"k":20535,"v":[[0,5,["H3615","(H853)"]],[5,6,["H428"]],[6,7,["H7901"]],[7,8,["H8145"]],[8,9,["H5921"]],[9,11,["H3233"]],[11,12,["H6654"]],[12,16,["H5375","(H853)"]],[16,18,["H5771"]],[18,21,["H1004"]],[21,23,["H3063"]],[23,24,["H705"]],[24,25,["H3117"]],[25,28,["H5414"]],[28,34,["H3117","H8141","H3117","H8141"]]]},{"k":20536,"v":[[0,4,["H3559"]],[4,6,["H6440"]],[6,7,["H413"]],[7,9,["H4692"]],[9,11,["H3389"]],[11,14,["H2220"]],[14,17,["H2834"]],[17,21,["H5012"]],[21,22,["H5921"]],[22,23,[]]]},{"k":20537,"v":[[0,2,["H2009"]],[2,5,["H5414"]],[5,6,["H5688"]],[6,7,["H5921"]],[7,12,["H3808"]],[12,13,["H2015"]],[13,17,["H4480","H6654"]],[17,18,["H413"]],[18,19,["H6654"]],[19,20,["H5704"]],[20,23,["H3615"]],[23,25,["H3117"]],[25,28,["H4692"]]]},{"k":20538,"v":[[0,1,["H3947"]],[1,2,["H859"]],[2,6,["H2406"]],[6,8,["H8184"]],[8,10,["H6321"]],[10,12,["H5742"]],[12,14,["H1764"]],[14,16,["H3698"]],[16,18,["H5414"]],[18,21,["H259"]],[21,22,["H3627"]],[22,24,["H6213"]],[24,26,["H3899"]],[26,31,["H4557"]],[31,34,["H3117"]],[34,35,["H834"]],[35,36,["H859"]],[36,38,["H7901"]],[38,39,["H5921"]],[39,41,["H6654"]],[41,42,["H7969"]],[42,43,["H3967"]],[43,45,["H8673"]],[45,46,["H3117"]],[46,49,["H398"]],[49,50,[]]]},{"k":20539,"v":[[0,3,["H3978"]],[3,4,["H834"]],[4,7,["H398"]],[7,11,["H4946"]],[11,12,["H6242"]],[12,13,["H8255"]],[13,15,["H3117"]],[15,17,["H4480","H6256"]],[17,18,["H5704"]],[18,19,["H6256"]],[19,22,["H398"]],[22,23,[]]]},{"k":20540,"v":[[0,3,["H8354"]],[3,5,["H4325"]],[5,7,["H4884"]],[7,10,["H8345"]],[10,13,["H1969"]],[13,15,["H4480","H6256"]],[15,16,["H5704"]],[16,17,["H6256"]],[17,20,["H8354"]]]},{"k":20541,"v":[[0,4,["H398"]],[4,7,["H8184"]],[7,8,["H5692"]],[8,12,["H5746"]],[12,13,["H1931"]],[13,15,["H1561"]],[15,18,["H6627"]],[18,20,["H120"]],[20,23,["H5869"]]]},{"k":20542,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,6,["H3602"]],[6,9,["H1121"]],[9,11,["H3478"]],[11,12,["H398"]],[12,14,["H2931","(H853)"]],[14,15,["H3899"]],[15,18,["H1471"]],[18,19,["H834","H8033"]],[19,22,["H5080"]],[22,23,[]]]},{"k":20543,"v":[[0,2,["H559"]],[2,4,["H162"]],[4,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,9,["H5315"]],[9,11,["H3808"]],[11,13,["H2930"]],[13,17,["H4480","H5271"]],[17,20,["H5704"]],[20,21,["H6258"]],[21,24,["H3808"]],[24,25,["H398"]],[25,31,["H5038"]],[31,36,["H2966"]],[36,37,["H3808"]],[37,38,["H935"]],[38,40,["H6292"]],[40,41,["H1320"]],[41,44,["H6310"]]]},{"k":20544,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H7200"]],[6,9,["H5414"]],[9,10,["(H853)"]],[10,11,["H1241"]],[11,12,["H6832"]],[12,13,["H8478"]],[13,14,["H120"]],[14,15,["H1561"]],[15,19,["H6213","(H853)"]],[19,21,["H3899"]],[21,22,["H5921"]]]},{"k":20545,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H2009"]],[9,12,["H7665"]],[12,14,["H4294"]],[14,16,["H3899"]],[16,18,["H3389"]],[18,22,["H398"]],[22,23,["H3899"]],[23,25,["H4948"]],[25,28,["H1674"]],[28,32,["H8354"]],[32,33,["H4325"]],[33,35,["H4884"]],[35,38,["H8078"]]]},{"k":20546,"v":[[0,1,["H4616"]],[1,4,["H2637"]],[4,5,["H3899"]],[5,7,["H4325"]],[7,10,["H8074"]],[10,11,["H376"]],[11,13,["H251"]],[13,16,["H4743"]],[16,19,["H5771"]]]},{"k":20547,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H3947"]],[6,9,["H2299"]],[9,10,["H2719"]],[10,11,["H3947"]],[11,14,["H1532"]],[14,15,["H8593"]],[15,20,["H5674"]],[20,21,["H5921"]],[21,23,["H7218"]],[23,25,["H5921"]],[25,27,["H2206"]],[27,29,["H3947"]],[29,31,["H3976"]],[31,33,["H4948"]],[33,35,["H2505"]],[35,37,[]]]},{"k":20548,"v":[[0,3,["H1197"]],[3,5,["H217"]],[5,8,["H7992"]],[8,11,["H8432"]],[11,14,["H5892"]],[14,17,["H3117"]],[17,20,["H4692"]],[20,22,["H4390"]],[22,26,["H3947","(H853)"]],[26,29,["H7992"]],[29,31,["H5221"]],[31,32,["H5439"]],[32,36,["H2719"]],[36,40,["H7992"]],[40,43,["H2219"]],[43,46,["H7307"]],[46,51,["H7324"]],[51,53,["H2719"]],[53,54,["H310"]],[54,55,[]]]},{"k":20549,"v":[[0,4,["H3947"]],[4,5,["H4480","H8033"]],[5,7,["H4592"]],[7,9,["H4557"]],[9,11,["H6696"]],[11,15,["H3671"]]]},{"k":20550,"v":[[0,2,["H3947"]],[2,3,["H4480"]],[3,5,["H5750"]],[5,7,["H7993"]],[7,9,["H413"]],[9,11,["H8432"]],[11,14,["H784"]],[14,16,["H8313"]],[16,20,["H784"]],[20,22,["H4480"]],[22,25,["H784"]],[25,27,["H3318"]],[27,28,["H413"]],[28,29,["H3605"]],[29,31,["H1004"]],[31,33,["H3478"]]]},{"k":20551,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H2063"]],[6,8,["H3389"]],[8,11,["H7760"]],[11,15,["H8432"]],[15,18,["H1471"]],[18,20,["H776"]],[20,24,["H5439"]],[24,25,[]]]},{"k":20552,"v":[[0,4,["H4784","(H853)"]],[4,6,["H4941"]],[6,8,["H7564"]],[8,10,["H4480"]],[10,12,["H1471"]],[12,15,["H2708"]],[15,17,["H4480"]],[17,19,["H776"]],[19,20,["H834"]],[20,23,["H5439"]],[23,25,["H3588"]],[25,28,["H3988"]],[28,30,["H4941"]],[30,33,["H2708"]],[33,36,["H3808"]],[36,37,["H1980"]],[37,39,[]]]},{"k":20553,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H3282"]],[7,9,["H1995"]],[9,11,["H4480"]],[11,13,["H1471"]],[13,14,["H834"]],[14,17,["H5439"]],[17,21,["H3808"]],[21,22,["H1980"]],[22,25,["H2708"]],[25,26,["H3808"]],[26,28,["H6213"]],[28,30,["H4941"]],[30,31,["H3808"]],[31,33,["H6213"]],[33,37,["H4941"]],[37,40,["H1471"]],[40,41,["H834"]],[41,44,["H5439"]],[44,45,[]]]},{"k":20554,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,9,["H1571"]],[9,10,["H589"]],[10,12,["H5921"]],[12,16,["H6213"]],[16,17,["H4941"]],[17,20,["H8432"]],[20,25,["H5869"]],[25,28,["H1471"]]]},{"k":20555,"v":[[0,4,["H6213"]],[4,6,["(H853)"]],[6,8,["H834"]],[8,11,["H3808"]],[11,12,["H6213"]],[12,14,["H834"]],[14,17,["H3808"]],[17,18,["H6213"]],[18,20,["H5750"]],[20,22,["H3644"]],[22,24,["H3282"]],[24,25,["H3605"]],[25,27,["H8441"]]]},{"k":20556,"v":[[0,1,["H3651"]],[1,3,["H1"]],[3,5,["H398"]],[5,7,["H1121"]],[7,10,["H8432"]],[10,15,["H1121"]],[15,17,["H398"]],[17,19,["H1"]],[19,23,["H6213"]],[23,24,["H8201"]],[24,27,["(H853)"]],[27,29,["H3605"]],[29,30,["H7611"]],[30,35,["H2219"]],[35,37,["H3605"]],[37,39,["H7307"]]]},{"k":20557,"v":[[0,1,["H3651"]],[1,3,["H589"]],[3,4,["H2416"]],[4,5,["H5002"]],[5,7,["H136"]],[7,8,["H3069"]],[8,9,["H518","H3808"]],[9,10,["H3282"]],[10,13,["H2930","(H853)"]],[13,15,["H4720"]],[15,17,["H3605"]],[17,20,["H8251"]],[20,23,["H3605"]],[23,25,["H8441"]],[25,26,["H1571"]],[26,28,["H589"]],[28,30,["H1639"]],[30,32,["H3808"]],[32,35,["H5869"]],[35,36,["H2347"]],[36,37,["H3808"]],[37,39,["H589"]],[39,42,["H2550"]]]},{"k":20558,"v":[[0,3,["H7992"]],[3,7,["H4191"]],[7,10,["H1698"]],[10,13,["H7458"]],[13,17,["H3615"]],[17,20,["H8432"]],[20,26,["H7992"]],[26,28,["H5307"]],[28,31,["H2719"]],[31,33,["H5439"]],[33,38,["H2219"]],[38,41,["H7992"]],[41,43,["H3605"]],[43,45,["H7307"]],[45,50,["H7324"]],[50,52,["H2719"]],[52,53,["H310"]],[53,54,[]]]},{"k":20559,"v":[[0,4,["H639"]],[4,6,["H3615"]],[6,12,["H2534"]],[12,14,["H5117"]],[14,21,["H5162"]],[21,25,["H3045"]],[25,26,["H3588"]],[26,27,["H589"]],[27,29,["H3068"]],[29,31,["H1696"]],[31,35,["H7068"]],[35,39,["H3615"]],[39,41,["H2534"]],[41,43,[]]]},{"k":20560,"v":[[0,4,["H5414"]],[4,6,["H2723"]],[6,9,["H2781"]],[9,12,["H1471"]],[12,13,["H834"]],[13,16,["H5439"]],[16,20,["H5869"]],[20,22,["H3605"]],[22,25,["H5674"]]]},{"k":20561,"v":[[0,4,["H1961"]],[4,6,["H2781"]],[6,9,["H1422"]],[9,11,["H4148"]],[11,14,["H4923"]],[14,17,["H1471"]],[17,18,["H834"]],[18,21,["H5439"]],[21,26,["H6213"]],[26,27,["H8201"]],[27,31,["H639"]],[31,34,["H2534"]],[34,37,["H2534"]],[37,38,["H8433"]],[38,39,["H589"]],[39,41,["H3068"]],[41,43,["H1696"]],[43,44,[]]]},{"k":20562,"v":[[0,4,["H7971"]],[4,7,["(H853)"]],[7,8,["H7451"]],[8,9,["H2671"]],[9,11,["H7458"]],[11,12,["H834"]],[12,14,["H1961"]],[14,17,["H4889"]],[17,19,["H834"]],[19,22,["H7971","(H853)"]],[22,24,["H7843"]],[24,29,["H3254"]],[29,31,["H7458"]],[31,32,["H5921"]],[32,36,["H7665"]],[36,38,["H4294"]],[38,40,["H3899"]]]},{"k":20563,"v":[[0,4,["H7971"]],[4,5,["H5921"]],[5,7,["H7458"]],[7,9,["H7451"]],[9,10,["H2416"]],[10,14,["H7921"]],[14,17,["H1698"]],[17,19,["H1818"]],[19,21,["H5674"]],[21,27,["H935"]],[27,29,["H2719"]],[29,30,["H5921"]],[30,32,["H589"]],[32,34,["H3068"]],[34,36,["H1696"]],[36,37,[]]]},{"k":20564,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20565,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H7760"]],[4,6,["H6440"]],[6,7,["H413"]],[7,9,["H2022"]],[9,11,["H3478"]],[11,13,["H5012"]],[13,14,["H413"]],[14,15,[]]]},{"k":20566,"v":[[0,2,["H559"]],[2,4,["H2022"]],[4,6,["H3478"]],[6,7,["H8085"]],[7,9,["H1697"]],[9,12,["H136"]],[12,13,["H3069"]],[13,14,["H3541"]],[14,15,["H559"]],[15,17,["H136"]],[17,18,["H3069"]],[18,21,["H2022"]],[21,25,["H1389"]],[25,28,["H650"]],[28,32,["H1516"]],[32,33,["H2009"]],[33,36,["H589"]],[36,38,["H935"]],[38,40,["H2719"]],[40,41,["H5921"]],[41,46,["H6"]],[46,49,["H1116"]]]},{"k":20567,"v":[[0,3,["H4196"]],[3,6,["H8074"]],[6,9,["H2553"]],[9,12,["H7665"]],[12,17,["H5307"]],[17,19,["H2491"]],[19,21,["H6440"]],[21,23,["H1544"]]]},{"k":20568,"v":[[0,4,["H5414","(H853)"]],[4,7,["H6297"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,13,["H6440"]],[13,15,["H1544"]],[15,19,["H2219","(H853)"]],[19,21,["H6106"]],[21,23,["H5439"]],[23,25,["H4196"]]]},{"k":20569,"v":[[0,2,["H3605"]],[2,4,["H4186"]],[4,6,["H5892"]],[6,10,["H2717"]],[10,14,["H1116"]],[14,17,["H3456"]],[17,18,["H4616"]],[18,20,["H4196"]],[20,24,["H2717"]],[24,27,["H816"]],[27,30,["H1544"]],[30,33,["H7665"]],[33,35,["H7673"]],[35,38,["H2553"]],[38,42,["H1438"]],[42,45,["H4639"]],[45,48,["H4229"]]]},{"k":20570,"v":[[0,3,["H2491"]],[3,5,["H5307"]],[5,8,["H8432"]],[8,14,["H3045"]],[14,15,["H3588"]],[15,16,["H589"]],[16,19,["H3068"]]]},{"k":20571,"v":[[0,6,["H3498"]],[6,10,["H1961"]],[10,14,["H6412"]],[14,16,["H2719"]],[16,19,["H1471"]],[19,24,["H2219"]],[24,27,["H776"]]]},{"k":20572,"v":[[0,4,["H6412"]],[4,8,["H2142"]],[8,12,["H1471"]],[12,13,["H834","H8033"]],[13,18,["H7617"]],[18,19,["H834"]],[19,22,["H7665"]],[22,23,["H854"]],[23,25,["H2181"]],[25,26,["H3820"]],[26,27,["H834"]],[27,29,["H5493"]],[29,30,["H4480","H5921"]],[30,33,["H854"]],[33,35,["H5869"]],[35,39,["H2181"]],[39,40,["H310"]],[40,42,["H1544"]],[42,46,["H6962"]],[46,47,["H6440"]],[47,48,["H413"]],[48,50,["H7451"]],[50,51,["H834"]],[51,54,["H6213"]],[54,56,["H3605"]],[56,58,["H8441"]]]},{"k":20573,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,14,["H3808"]],[14,15,["H1696"]],[15,17,["H413","H2600"]],[17,21,["H6213"]],[21,22,["H2063"]],[22,23,["H7451"]],[23,25,[]]]},{"k":20574,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H5221"]],[6,9,["H3709"]],[9,11,["H7554"]],[11,14,["H7272"]],[14,16,["H559"]],[16,17,["H253"]],[17,18,["H413"]],[18,19,["H3605"]],[19,21,["H7451"]],[21,22,["H8441"]],[22,25,["H1004"]],[25,27,["H3478"]],[27,28,["H834"]],[28,31,["H5307"]],[31,34,["H2719"]],[34,37,["H7458"]],[37,41,["H1698"]]]},{"k":20575,"v":[[0,5,["H7350"]],[5,7,["H4191"]],[7,10,["H1698"]],[10,15,["H7138"]],[15,17,["H5307"]],[17,20,["H2719"]],[20,24,["H7604"]],[24,27,["H5341"]],[27,29,["H4191"]],[29,32,["H7458"]],[32,36,["H3615"]],[36,38,["H2534"]],[38,40,[]]]},{"k":20576,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,12,["H2491"]],[12,15,["H1961"]],[15,16,["H8432"]],[16,18,["H1544"]],[18,20,["H5439"]],[20,22,["H4196"]],[22,23,["H413"]],[23,24,["H3605"]],[24,25,["H7311"]],[25,26,["H1389"]],[26,28,["H3605"]],[28,30,["H7218"]],[30,33,["H2022"]],[33,35,["H8478"]],[35,36,["H3605"]],[36,37,["H7488"]],[37,38,["H6086"]],[38,40,["H8478"]],[40,41,["H3605"]],[41,42,["H5687"]],[42,43,["H424"]],[43,45,["H4725"]],[45,46,["H834","H8033"]],[46,49,["H5414"]],[49,50,["H5207"]],[50,51,["H7381"]],[51,53,["H3605"]],[53,55,["H1544"]]]},{"k":20577,"v":[[0,5,["H5186","(H853)"]],[5,7,["H3027"]],[7,8,["H5921"]],[8,11,["H5414","(H853)"]],[11,13,["H776"]],[13,14,["H8077"]],[14,17,["H4923"]],[17,20,["H4480","H4057"]],[20,22,["H1689"]],[22,24,["H3605"]],[24,26,["H4186"]],[26,30,["H3045"]],[30,31,["H3588"]],[31,32,["H589"]],[32,35,["H3068"]]]},{"k":20578,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20579,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H3541"]],[6,7,["H559"]],[7,9,["H136"]],[9,10,["H3069"]],[10,13,["H127"]],[13,15,["H3478"]],[15,17,["H7093"]],[17,19,["H7093"]],[19,21,["H935"]],[21,22,["H5921"]],[22,24,["H702"]],[24,25,["H3671"]],[25,28,["H776"]]]},{"k":20580,"v":[[0,1,["H6258"]],[1,4,["H7093"]],[4,6,["H5921"]],[6,11,["H7971"]],[11,13,["H639"]],[13,18,["H8199"]],[18,23,["H1870"]],[23,26,["H5414"]],[26,27,["H5921"]],[27,28,["(H853)"]],[28,29,["H3605"]],[29,31,["H8441"]]]},{"k":20581,"v":[[0,3,["H5869"]],[3,5,["H3808"]],[5,6,["H2347","H5921"]],[6,8,["H3808"]],[8,12,["H2550"]],[12,13,["H3588"]],[13,16,["H5414"]],[16,18,["H1870"]],[18,19,["H5921"]],[19,23,["H8441"]],[23,25,["H1961"]],[25,28,["H8432"]],[28,34,["H3045"]],[34,35,["H3588"]],[35,36,["H589"]],[36,39,["H3068"]]]},{"k":20582,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,7,["H7451"]],[7,9,["H259"]],[9,10,["H7451"]],[10,11,["H2009"]],[11,13,["H935"]]]},{"k":20583,"v":[[0,2,["H7093"]],[2,4,["H935"]],[4,6,["H7093"]],[6,8,["H935"]],[8,10,["H6974"]],[10,11,["H413"]],[11,13,["H2009"]],[13,16,["H935"]]]},{"k":20584,"v":[[0,2,["H6843"]],[2,4,["H935"]],[4,5,["H413"]],[5,10,["H3427"]],[10,13,["H776"]],[13,15,["H6256"]],[15,17,["H935"]],[17,19,["H3117"]],[19,21,["H4103"]],[21,23,["H7138"]],[23,25,["H3808"]],[25,28,["H1906"]],[28,31,["H2022"]]]},{"k":20585,"v":[[0,1,["H6258"]],[1,4,["H4480","H7138"]],[4,6,["H8210"]],[6,8,["H2534"]],[8,9,["H5921"]],[9,12,["H3615"]],[12,14,["H639"]],[14,20,["H8199"]],[20,25,["H1870"]],[25,28,["H5414","H5921"]],[28,30,["(H853)"]],[30,31,["H3605"]],[31,33,["H8441"]]]},{"k":20586,"v":[[0,3,["H5869"]],[3,5,["H3808"]],[5,6,["H2347"]],[6,7,["H3808"]],[7,11,["H2550"]],[11,14,["H5414","H5921"]],[14,19,["H1870"]],[19,22,["H8441"]],[22,24,["H1961"]],[24,27,["H8432"]],[27,33,["H3045"]],[33,34,["H3588"]],[34,35,["H589"]],[35,38,["H3068"]],[38,40,["H5221"]]]},{"k":20587,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H2009"]],[4,7,["H935"]],[7,9,["H6843"]],[9,12,["H3318"]],[12,14,["H4294"]],[14,16,["H6692"]],[16,17,["H2087"]],[17,19,["H6524"]]]},{"k":20588,"v":[[0,1,["H2555"]],[1,4,["H6965"]],[4,7,["H4294"]],[7,9,["H7562"]],[9,10,["H3808"]],[10,11,["H4480"]],[11,15,["H3808"]],[15,18,["H4480","H1995"]],[18,19,["H3808"]],[19,23,["H4480","H1991"]],[23,24,["H3808"]],[24,28,["H5089"]],[28,30,[]]]},{"k":20589,"v":[[0,2,["H6256"]],[2,4,["H935"]],[4,6,["H3117"]],[6,8,["H5060"]],[8,10,["H408"]],[10,12,["H7069"]],[12,13,["H8055"]],[13,14,["H408"]],[14,16,["H4376"]],[16,17,["H56"]],[17,18,["H3588"]],[18,19,["H2740"]],[19,21,["H413"]],[21,22,["H3605"]],[22,24,["H1995"]],[24,25,[]]]},{"k":20590,"v":[[0,1,["H3588"]],[1,3,["H4376"]],[3,5,["H3808"]],[5,6,["H7725"]],[6,7,["H413"]],[7,11,["H4465"]],[11,15,["H5750"]],[15,16,["H2416","H2416"]],[16,17,["H3588"]],[17,19,["H2377"]],[19,21,["H413"]],[21,23,["H3605"]],[23,24,["H1995"]],[24,28,["H3808"]],[28,29,["H7725"]],[29,30,["H3808"]],[30,32,["H376"]],[32,34,["H2388"]],[34,37,["H5771"]],[37,40,["H2416"]]]},{"k":20591,"v":[[0,3,["H8628"]],[3,5,["H8619"]],[5,10,["H3559","H3605"]],[10,12,["H369"]],[12,13,["H1980"]],[13,16,["H4421"]],[16,17,["H3588"]],[17,19,["H2740"]],[19,21,["H413"]],[21,22,["H3605"]],[22,24,["H1995"]],[24,25,[]]]},{"k":20592,"v":[[0,2,["H2719"]],[2,4,["H2351"]],[4,7,["H1698"]],[7,10,["H7458"]],[10,11,["H4480","H1004"]],[11,13,["H834"]],[13,17,["H7704"]],[17,19,["H4191"]],[19,22,["H2719"]],[22,25,["H834"]],[25,29,["H5892"]],[29,30,["H7458"]],[30,32,["H1698"]],[32,34,["H398"]],[34,35,[]]]},{"k":20593,"v":[[0,4,["H6403"]],[4,8,["H6412"]],[8,11,["H1961"]],[11,12,["H413"]],[12,14,["H2022"]],[14,16,["H3123"]],[16,19,["H1516"]],[19,20,["H3605"]],[20,23,["H1993"]],[23,25,["H376"]],[25,28,["H5771"]]]},{"k":20594,"v":[[0,1,["H3605"]],[1,2,["H3027"]],[2,5,["H7503"]],[5,7,["H3605"]],[7,8,["H1290"]],[8,11,["H1980"]],[11,13,["H4325"]]]},{"k":20595,"v":[[0,4,["H2296"]],[4,7,["H8242"]],[7,9,["H6427"]],[9,11,["H3680"]],[11,14,["H955"]],[14,17,["H413"]],[17,18,["H3605"]],[18,19,["H6440"]],[19,21,["H7144"]],[21,23,["H3605"]],[23,25,["H7218"]]]},{"k":20596,"v":[[0,3,["H7993"]],[3,5,["H3701"]],[5,8,["H2351"]],[8,11,["H2091"]],[11,13,["H1961"]],[13,14,["H5079"]],[14,16,["H3701"]],[16,19,["H2091"]],[19,21,["H3808"]],[21,23,["H3201"]],[23,25,["H5337"]],[25,29,["H3117"]],[29,32,["H5678"]],[32,35,["H3068"]],[35,38,["H3808"]],[38,39,["H7646"]],[39,41,["H5315"]],[41,42,["H3808"]],[42,43,["H4390"]],[43,45,["H4578"]],[45,46,["H3588"]],[46,48,["H1961"]],[48,50,["H4383"]],[50,53,["H5771"]]]},{"k":20597,"v":[[0,4,["H6643"]],[4,7,["H5716"]],[7,9,["H7760"]],[9,12,["H1347"]],[12,15,["H6213"]],[15,17,["H6754"]],[17,20,["H8441"]],[20,25,["H8251"]],[25,27,["H5921","H3651"]],[27,30,["H5414"]],[30,32,["H5079"]],[32,34,[]]]},{"k":20598,"v":[[0,4,["H5414"]],[4,8,["H3027"]],[8,11,["H2114"]],[11,14,["H957"]],[14,18,["H7563"]],[18,21,["H776"]],[21,24,["H7998"]],[24,28,["H2490"]],[28,29,[]]]},{"k":20599,"v":[[0,2,["H6440"]],[2,5,["H5437"]],[5,7,["H4480"]],[7,12,["H2490","(H853)"]],[12,14,["H6845"]],[14,18,["H6530"]],[18,20,["H935"]],[20,24,["H2490"]],[24,25,[]]]},{"k":20600,"v":[[0,1,["H6213"]],[1,3,["H7569"]],[3,4,["H3588"]],[4,6,["H776"]],[6,8,["H4390"]],[8,10,["H1818"]],[10,11,["H4941"]],[11,14,["H5892"]],[14,16,["H4390"]],[16,18,["H2555"]]]},{"k":20601,"v":[[0,4,["H935"]],[4,6,["H7451"]],[6,9,["H1471"]],[9,13,["H3423","(H853)"]],[13,15,["H1004"]],[15,21,["H1347"]],[21,24,["H5794"]],[24,26,["H7673"]],[26,30,["H4720"]],[30,33,["H2490"]]]},{"k":20602,"v":[[0,1,["H7089"]],[1,2,["H935"]],[2,6,["H1245"]],[6,7,["H7965"]],[7,12,["H369"]]]},{"k":20603,"v":[[0,1,["H1943"]],[1,3,["H935"]],[3,4,["H5921"]],[4,5,["H1943"]],[5,7,["H8052"]],[7,9,["H1961"]],[9,10,["H413"]],[10,11,["H8052"]],[11,15,["H1245"]],[15,17,["H2377"]],[17,20,["H4480","H5030"]],[20,23,["H8451"]],[23,25,["H6"]],[25,28,["H4480","H3548"]],[28,30,["H6098"]],[30,33,["H4480","H2205"]]]},{"k":20604,"v":[[0,2,["H4428"]],[2,4,["H56"]],[4,7,["H5387"]],[7,10,["H3847"]],[10,12,["H8077"]],[12,15,["H3027"]],[15,18,["H5971"]],[18,21,["H776"]],[21,24,["H926"]],[24,27,["H6213"]],[27,32,["H4480","H1870"]],[32,37,["H4941"]],[37,40,["H8199"]],[40,45,["H3045"]],[45,46,["H3588"]],[46,47,["H589"]],[47,50,["H3068"]]]},{"k":20605,"v":[[0,5,["H1961"]],[5,8,["H8345"]],[8,9,["H8141"]],[9,12,["H8345"]],[12,16,["H2568"]],[16,20,["H2320"]],[20,22,["H589"]],[22,23,["H3427"]],[23,26,["H1004"]],[26,29,["H2205"]],[29,31,["H3063"]],[31,32,["H3427"]],[32,33,["H6440"]],[33,37,["H3027"]],[37,40,["H136"]],[40,41,["H3069"]],[41,42,["H5307"]],[42,43,["H8033"]],[43,44,["H5921"]],[44,45,[]]]},{"k":20606,"v":[[0,3,["H7200"]],[3,5,["H2009"]],[5,7,["H1823"]],[7,10,["H4758"]],[10,12,["H784"]],[12,15,["H4480","H4758"]],[15,18,["H4975"]],[18,20,["H4295"]],[20,21,["H784"]],[21,25,["H4480","H4975"]],[25,27,["H4605"]],[27,30,["H4758"]],[30,32,["H2096"]],[32,35,["H5869"]],[35,37,["H2830"]]]},{"k":20607,"v":[[0,4,["H7971"]],[4,6,["H8403"]],[6,9,["H3027"]],[9,11,["H3947"]],[11,15,["H6734"]],[15,18,["H7218"]],[18,21,["H7307"]],[21,24,["H5375","(H853)"]],[24,25,["H996"]],[25,27,["H776"]],[27,30,["H8064"]],[30,32,["H935"]],[32,36,["H4759"]],[36,38,["H430"]],[38,40,["H3389"]],[40,41,["H413"]],[41,43,["H6607"]],[43,46,["H6442"]],[46,47,["H8179"]],[47,49,["H6437"]],[49,52,["H6828"]],[52,53,["H834","H8033"]],[53,56,["H4186"]],[56,59,["H5566"]],[59,61,["H7068"]],[61,65,["H7065"]]]},{"k":20608,"v":[[0,2,["H2009"]],[2,4,["H3519"]],[4,7,["H430"]],[7,9,["H3478"]],[9,11,["H8033"]],[11,15,["H4758"]],[15,16,["H834"]],[16,18,["H7200"]],[18,21,["H1237"]]]},{"k":20609,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,10,["H5375"]],[10,12,["H5869"]],[12,13,["H4994"]],[13,15,["H1870"]],[15,18,["H6828"]],[18,22,["H5375"]],[22,24,["H5869"]],[24,26,["H1870"]],[26,29,["H6828"]],[29,31,["H2009"]],[31,32,["H4480","H6828"]],[32,35,["H8179"]],[35,38,["H4196"]],[38,39,["H2088"]],[39,40,["H5566"]],[40,42,["H7068"]],[42,45,["H872"]]]},{"k":20610,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H7200"]],[9,10,["H859"]],[10,11,["H4100"]],[11,12,["H1992"]],[12,13,["H6213"]],[13,16,["H1419"]],[16,17,["H8441"]],[17,18,["H834"]],[18,20,["H1004"]],[20,22,["H3478"]],[22,23,["H6213"]],[23,24,["H6311"]],[24,30,["H7368"]],[30,31,["H4480","H5921"]],[31,33,["H4720"]],[33,38,["H7725","H5750"]],[38,42,["H7200"]],[42,43,["H1419"]],[43,44,["H8441"]]]},{"k":20611,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H6607"]],[7,10,["H2691"]],[10,14,["H7200"]],[14,15,["H2009"]],[15,16,["H259"]],[16,17,["H2356"]],[17,20,["H7023"]]]},{"k":20612,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H2864"]],[9,10,["H4994"]],[10,13,["H7023"]],[13,18,["H2864"]],[18,21,["H7023"]],[21,22,["H2009"]],[22,23,["H259"]],[23,24,["H6607"]]]},{"k":20613,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H935"]],[7,9,["H7200","(H853)"]],[9,11,["H7451"]],[11,12,["H8441"]],[12,13,["H834"]],[13,14,["H1992"]],[14,15,["H6213"]],[15,16,["H6311"]]]},{"k":20614,"v":[[0,4,["H935"]],[4,6,["H7200"]],[6,8,["H2009"]],[8,9,["H3605"]],[9,10,["H8403"]],[10,13,["H7431"]],[13,15,["H8263"]],[15,16,["H929"]],[16,18,["H3605"]],[18,20,["H1544"]],[20,23,["H1004"]],[23,25,["H3478"]],[25,26,["H2707"]],[26,27,["H5921"]],[27,29,["H7023"]],[29,31,["H5439"]]]},{"k":20615,"v":[[0,3,["H5975"]],[3,4,["H6440"]],[4,6,["H7657"]],[6,7,["H376"]],[7,10,["H4480","H2205"]],[10,13,["H1004"]],[13,15,["H3478"]],[15,19,["H8432"]],[19,22,["H5975"]],[22,23,["H2970"]],[23,25,["H1121"]],[25,27,["H8227"]],[27,30,["H376"]],[30,32,["H4730"]],[32,35,["H3027"]],[35,38,["H6282"]],[38,39,["H6051"]],[39,41,["H7004"]],[41,43,["H5927"]]]},{"k":20616,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,11,["H7200"]],[11,12,["H834"]],[12,14,["H2205"]],[14,17,["H1004"]],[17,19,["H3478"]],[19,20,["H6213"]],[20,23,["H2822"]],[23,25,["H376"]],[25,28,["H2315"]],[28,31,["H4906"]],[31,32,["H3588"]],[32,34,["H559"]],[34,36,["H3068"]],[36,37,["H7200"]],[37,39,["H369"]],[39,41,["H3068"]],[41,43,["H5800","(H853)"]],[43,45,["H776"]]]},{"k":20617,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,9,["H7725","H5750"]],[9,13,["H7200"]],[13,14,["H1419"]],[14,15,["H8441"]],[15,16,["H834"]],[16,17,["H1992"]],[17,18,["H6213"]]]},{"k":20618,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H6607"]],[7,10,["H8179"]],[10,13,["H3068"]],[13,14,["H1004"]],[14,15,["H834"]],[15,17,["H413"]],[17,19,["H6828"]],[19,21,["H2009"]],[21,22,["H8033"]],[22,23,["H3427"]],[23,24,["H802"]],[24,25,["H1058"]],[25,26,["H854"]],[26,27,["H8542"]]]},{"k":20619,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,8,["H7200"]],[8,11,["H1121"]],[11,13,["H120"]],[13,17,["H7725","H5750"]],[17,21,["H7200"]],[21,22,["H1419"]],[22,23,["H8441"]],[23,25,["H4480","H428"]]]},{"k":20620,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H6442"]],[7,8,["H2691"]],[8,11,["H3068"]],[11,12,["H1004"]],[12,14,["H2009"]],[14,17,["H6607"]],[17,20,["H1964"]],[20,23,["H3068"]],[23,24,["H996"]],[24,26,["H197"]],[26,29,["H4196"]],[29,32,["H2568"]],[32,34,["H6242"]],[34,35,["H376"]],[35,38,["H268"]],[38,39,["H413"]],[39,41,["H1964"]],[41,44,["H3068"]],[44,47,["H6440"]],[47,50,["H6924"]],[50,52,["H1992"]],[52,53,["H7812"]],[53,55,["H8121"]],[55,58,["H6924"]]]},{"k":20621,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,8,["H7200"]],[8,11,["H1121"]],[11,13,["H120"]],[13,18,["H7043"]],[18,21,["H1004"]],[21,23,["H3063"]],[23,26,["H4480","H6213","(H853)"]],[26,28,["H8441"]],[28,29,["H834"]],[29,31,["H6213"]],[31,32,["H6311"]],[32,33,["H3588"]],[33,36,["H4390","(H853)"]],[36,38,["H776"]],[38,40,["H2555"]],[40,43,["H7725"]],[43,48,["H3707"]],[48,50,["H2009"]],[50,52,["H7971","(H853)"]],[52,54,["H2156"]],[54,55,["H413"]],[55,57,["H639"]]]},{"k":20622,"v":[[0,3,["H589"]],[3,4,["H1571"]],[4,5,["H6213"]],[5,7,["H2534"]],[7,9,["H5869"]],[9,11,["H3808"]],[11,12,["H2347"]],[12,13,["H3808"]],[13,17,["H2550"]],[17,21,["H7121"]],[21,24,["H241"]],[24,27,["H1419"]],[27,28,["H6963"]],[28,32,["H3808"]],[32,33,["H8085"]],[33,34,[]]]},{"k":20623,"v":[[0,2,["H7121"]],[2,6,["H241"]],[6,9,["H1419"]],[9,10,["H6963"]],[10,11,["H559"]],[11,16,["H6486"]],[16,19,["H5892"]],[19,22,["H7126"]],[22,25,["H376"]],[25,28,["H4892"]],[28,29,["H3627"]],[29,32,["H3027"]]]},{"k":20624,"v":[[0,2,["H2009"]],[2,3,["H8337"]],[3,4,["H376"]],[4,5,["H935"]],[5,8,["H4480","H1870"]],[8,11,["H5945"]],[11,12,["H8179"]],[12,13,["H834"]],[13,14,["H6437"]],[14,17,["H6828"]],[17,20,["H376"]],[20,22,["H4660"]],[22,23,["H3627"]],[23,26,["H3027"]],[26,28,["H259"]],[28,29,["H376"]],[29,30,["H8432"]],[30,33,["H3847"]],[33,35,["H906"]],[35,38,["H5608"]],[38,39,["H7083"]],[39,42,["H4975"]],[42,46,["H935"]],[46,48,["H5975"]],[48,49,["H681"]],[49,51,["H5178"]],[51,52,["H4196"]]]},{"k":20625,"v":[[0,3,["H3519"]],[3,6,["H430"]],[6,8,["H3478"]],[8,11,["H5927"]],[11,12,["H4480","H5921"]],[12,14,["H3742"]],[14,15,["H834","H5921"]],[15,17,["H1961"]],[17,18,["H413"]],[18,20,["H4670"]],[20,23,["H1004"]],[23,26,["H7121"]],[26,27,["H413"]],[27,29,["H376"]],[29,30,["H3847"]],[30,32,["H906"]],[32,33,["H834"]],[33,36,["H5608"]],[36,37,["H7083"]],[37,40,["H4975"]]]},{"k":20626,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,8,["H5674"]],[8,10,["H8432"]],[10,13,["H5892"]],[13,16,["H8432"]],[16,18,["H3389"]],[18,20,["H8427"]],[20,22,["H8420"]],[22,23,["H5921"]],[23,25,["H4696"]],[25,28,["H376"]],[28,30,["H584"]],[30,33,["H602"]],[33,34,["H5921"]],[34,35,["H3605"]],[35,37,["H8441"]],[37,40,["H6213"]],[40,43,["H8432"]],[43,44,[]]]},{"k":20627,"v":[[0,4,["H428"]],[4,6,["H559"]],[6,9,["H241"]],[9,10,["H5674"]],[10,12,["H310"]],[12,16,["H5892"]],[16,18,["H5221"]],[18,20,["H408"]],[20,22,["H5869"]],[22,23,["H2347"]],[23,24,["H408"]],[24,27,["H2550"]]]},{"k":20628,"v":[[0,1,["H2026"]],[1,2,["H4889"]],[2,3,["H2205"]],[3,5,["H970"]],[5,7,["H1330"]],[7,10,["H2945"]],[10,12,["H802"]],[12,16,["H5066","H408","H5921"]],[16,17,["H3605"]],[17,18,["H376"]],[18,19,["H5921"]],[19,20,["H834"]],[20,23,["H8420"]],[23,25,["H2490"]],[25,28,["H4480","H4720"]],[28,31,["H2490"]],[31,34,["H2205"]],[34,35,["H376"]],[35,36,["H834"]],[36,38,["H6440"]],[38,40,["H1004"]]]},{"k":20629,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H2930","(H853)"]],[6,8,["H1004"]],[8,10,["H4390","(H853)"]],[10,12,["H2691"]],[12,15,["H2491"]],[15,18,["H3318"]],[18,22,["H3318"]],[22,24,["H5221"]],[24,27,["H5892"]]]},{"k":20630,"v":[[0,5,["H1961"]],[5,9,["H5221"]],[9,12,["H589"]],[12,14,["H7604"]],[14,17,["H5307"]],[17,18,["H5921"]],[18,20,["H6440"]],[20,22,["H2199"]],[22,24,["H559"]],[24,25,["H162"]],[25,26,["H136"]],[26,27,["H3069"]],[27,29,["H859"]],[29,30,["H7843","(H853)"]],[30,31,["H3605"]],[31,33,["H7611"]],[33,35,["H3478"]],[35,39,["H8210","(H853)"]],[39,42,["H2534"]],[42,43,["H5921"]],[43,44,["H3389"]]]},{"k":20631,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,7,["H5771"]],[7,10,["H1004"]],[10,12,["H3478"]],[12,14,["H3063"]],[14,16,["H3966","H3966"]],[16,17,["H1419"]],[17,20,["H776"]],[20,22,["H4390"]],[22,24,["H1818"]],[24,27,["H5892"]],[27,28,["H4390"]],[28,30,["H4297"]],[30,31,["H3588"]],[31,33,["H559"]],[33,35,["H3068"]],[35,37,["H5800","(H853)"]],[37,39,["H776"]],[39,42,["H3068"]],[42,43,["H7200"]],[43,44,["H369"]]]},{"k":20632,"v":[[0,4,["H589"]],[4,5,["H1571"]],[5,7,["H5869"]],[7,9,["H3808"]],[9,10,["H2347"]],[10,11,["H3808"]],[11,15,["H2550"]],[15,19,["H5414"]],[19,21,["H1870"]],[21,24,["H7218"]]]},{"k":20633,"v":[[0,2,["H2009"]],[2,4,["H376"]],[4,5,["H3847"]],[5,7,["H906"]],[7,8,["H834"]],[8,11,["H7083"]],[11,14,["H4975"]],[14,15,["H7725"]],[15,17,["H1697"]],[17,18,["H559"]],[18,21,["H6213"]],[21,22,["H3605","H834"]],[22,25,["H6680"]],[25,26,[]]]},{"k":20634,"v":[[0,3,["H7200"]],[3,5,["H2009"]],[5,6,["H413"]],[6,8,["H7549"]],[8,9,["H834"]],[9,11,["H5921"]],[11,13,["H7218"]],[13,16,["H3742"]],[16,18,["H7200"]],[18,19,["H5921"]],[19,25,["H5601"]],[25,26,["H68"]],[26,29,["H4758"]],[29,32,["H1823"]],[32,35,["H3678"]]]},{"k":20635,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H376"]],[6,7,["H3847"]],[7,9,["H906"]],[9,11,["H559"]],[11,13,["H935","H413"]],[13,14,["H996"]],[14,16,["H1534"]],[16,18,["H8478"]],[18,20,["H3742"]],[20,22,["H4390"]],[22,24,["H2651"]],[24,26,["H1513"]],[26,28,["H784"]],[28,30,["H4480","H996"]],[30,32,["H3742"]],[32,34,["H2236"]],[34,36,["H5921"]],[36,38,["H5892"]],[38,41,["H935"]],[41,45,["H5869"]]]},{"k":20636,"v":[[0,3,["H3742"]],[3,4,["H5975"]],[4,8,["H4480","H3225"]],[8,11,["H1004"]],[11,14,["H376"]],[14,16,["H935"]],[16,19,["H6051"]],[19,20,["H4390"]],[20,22,["H6442","(H853)"]],[22,23,["H2691"]]]},{"k":20637,"v":[[0,3,["H3519"]],[3,6,["H3068"]],[6,8,["H7311"]],[8,9,["H4480","H5921"]],[9,11,["H3742"]],[11,14,["H5921"]],[14,16,["H4670"]],[16,19,["H1004"]],[19,22,["H1004"]],[22,24,["H4390"]],[24,25,["H854"]],[25,27,["H6051"]],[27,30,["H2691"]],[30,32,["H4390"]],[32,33,["H854"]],[33,35,["H5051"]],[35,38,["H3068"]],[38,39,["H3519"]]]},{"k":20638,"v":[[0,3,["H6963"]],[3,6,["H3742"]],[6,7,["H3671"]],[7,9,["H8085"]],[9,11,["H5704"]],[11,13,["H2435"]],[13,14,["H2691"]],[14,17,["H6963"]],[17,20,["H7706"]],[20,21,["H410"]],[21,24,["H1696"]]]},{"k":20639,"v":[[0,5,["H1961"]],[5,10,["H6680","(H853)"]],[10,12,["H376"]],[12,13,["H3847"]],[13,15,["H906"]],[15,16,["H559"]],[16,17,["H3947"]],[17,18,["H784"]],[18,20,["H4480","H996"]],[20,22,["H1534"]],[22,24,["H4480","H996"]],[24,26,["H3742"]],[26,30,["H935"]],[30,32,["H5975"]],[32,33,["H681"]],[33,35,["H212"]]]},{"k":20640,"v":[[0,3,["H3742"]],[3,5,["H7971","(H853)"]],[5,7,["H3027"]],[7,9,["H4480","H996"]],[9,11,["H3742"]],[11,12,["H413"]],[12,14,["H784"]],[14,15,["H834"]],[15,17,["H996"]],[17,19,["H3742"]],[19,21,["H5375"]],[21,24,["H5414"]],[24,26,["H413"]],[26,28,["H2651"]],[28,33,["H3847"]],[33,35,["H906"]],[35,37,["H3947"]],[37,41,["H3318"]]]},{"k":20641,"v":[[0,3,["H7200"]],[3,6,["H3742"]],[6,8,["H8403"]],[8,11,["H120"]],[11,12,["H3027"]],[12,13,["H8478"]],[13,15,["H3671"]]]},{"k":20642,"v":[[0,4,["H7200"]],[4,5,["H2009"]],[5,7,["H702"]],[7,8,["H212"]],[8,9,["H681"]],[9,11,["H3742"]],[11,12,["H259"]],[12,13,["H212"]],[13,14,["H681"]],[14,15,["H259"]],[15,16,["H3742"]],[16,18,["H259"]],[18,19,["H212"]],[19,20,["H681"]],[20,21,["H259"]],[21,22,["H3742"]],[22,25,["H4758"]],[25,28,["H212"]],[28,32,["H5869"]],[32,35,["H8658"]],[35,36,["H68"]]]},{"k":20643,"v":[[0,5,["H4758"]],[5,7,["H702"]],[7,9,["H259"]],[9,10,["H1823"]],[10,12,["H834"]],[12,14,["H212"]],[14,16,["H1961"]],[16,19,["H8432"]],[19,22,["H212"]]]},{"k":20644,"v":[[0,3,["H1980"]],[3,5,["H1980"]],[5,6,["H413"]],[6,8,["H702"]],[8,9,["H7253"]],[9,11,["H5437"]],[11,12,["H3808"]],[12,15,["H1980"]],[15,16,["H3588"]],[16,19,["H4725"]],[19,20,["H834"]],[20,22,["H7218"]],[22,23,["H6437"]],[23,25,["H1980","H310"]],[25,28,["H5437"]],[28,29,["H3808"]],[29,32,["H1980"]]]},{"k":20645,"v":[[0,3,["H3605"]],[3,4,["H1320"]],[4,7,["H1354"]],[7,10,["H3027"]],[10,13,["H3671"]],[13,16,["H212"]],[16,18,["H4392"]],[18,20,["H5869"]],[20,22,["H5439"]],[22,25,["H212"]],[25,28,["H702"]],[28,29,[]]]},{"k":20646,"v":[[0,4,["H212"]],[4,7,["H7121"]],[7,12,["H241"]],[12,14,["H1534"]]]},{"k":20647,"v":[[0,3,["H259"]],[3,5,["H702"]],[5,6,["H6440"]],[6,8,["H259"]],[8,9,["H6440"]],[9,12,["H6440"]],[12,15,["H3742"]],[15,18,["H8145"]],[18,19,["H6440"]],[19,22,["H6440"]],[22,25,["H120"]],[25,28,["H7992"]],[28,30,["H6440"]],[30,33,["H738"]],[33,36,["H7243"]],[36,38,["H6440"]],[38,41,["H5404"]]]},{"k":20648,"v":[[0,3,["H3742"]],[3,6,["H7426"]],[6,7,["H1931"]],[7,11,["H2416"]],[11,12,["H834"]],[12,14,["H7200"]],[14,17,["H5104"]],[17,19,["H3529"]]]},{"k":20649,"v":[[0,4,["H3742"]],[4,5,["H1980"]],[5,7,["H212"]],[7,8,["H1980"]],[8,9,["H681"]],[9,14,["H3742"]],[14,16,["H5375","(H853)"]],[16,18,["H3671"]],[18,21,["H7311"]],[21,22,["H4480","H5921"]],[22,24,["H776"]],[24,26,["H1992"]],[26,27,["H212"]],[27,28,["H1571"]],[28,29,["H5437"]],[29,30,["H3808"]],[30,32,["H4480","H681"]],[32,33,[]]]},{"k":20650,"v":[[0,3,["H5975"]],[3,5,["H5975"]],[5,11,["H7311"]],[11,14,["H7426"]],[14,17,["H3588"]],[17,19,["H7307"]],[19,23,["H2416"]],[23,26,[]]]},{"k":20651,"v":[[0,3,["H3519"]],[3,6,["H3068"]],[6,7,["H3318"]],[7,9,["H4480","H5921"]],[9,11,["H4670"]],[11,14,["H1004"]],[14,16,["H5975"]],[16,17,["H5921"]],[17,19,["H3742"]]]},{"k":20652,"v":[[0,3,["H3742"]],[3,5,["H5375","(H853)"]],[5,7,["H3671"]],[7,10,["H7426"]],[10,11,["H4480"]],[11,13,["H776"]],[13,16,["H5869"]],[16,20,["H3318"]],[20,22,["H212"]],[22,25,["H5980"]],[25,30,["H5975"]],[30,33,["H6607"]],[33,36,["H6931"]],[36,37,["H8179"]],[37,40,["H3068"]],[40,41,["H1004"]],[41,44,["H3519"]],[44,47,["H430"]],[47,49,["H3478"]],[49,51,["H5921"]],[51,53,["H4480","H4605"]]]},{"k":20653,"v":[[0,1,["H1931"]],[1,5,["H2416"]],[5,6,["H834"]],[6,8,["H7200"]],[8,9,["H8478"]],[9,11,["H430"]],[11,13,["H3478"]],[13,16,["H5104"]],[16,18,["H3529"]],[18,21,["H3045"]],[21,22,["H3588"]],[22,23,["H1992"]],[23,26,["H3742"]]]},{"k":20654,"v":[[0,2,["H259"]],[2,6,["H702","H702","H6440"]],[6,9,["H259"]],[9,10,["H702"]],[10,11,["H3671"]],[11,14,["H1823"]],[14,17,["H3027"]],[17,20,["H120"]],[20,22,["H8478"]],[22,24,["H3671"]]]},{"k":20655,"v":[[0,3,["H1823"]],[3,6,["H6440"]],[6,9,["H1992"]],[9,10,["H6440"]],[10,11,["H834"]],[11,13,["H7200"]],[13,14,["H5921"]],[14,16,["H5104"]],[16,18,["H3529"]],[18,20,["H4758"]],[20,24,["H1980"]],[24,26,["H376"]],[26,28,["H413","H5676","H6440"]]]},{"k":20656,"v":[[0,3,["H7307"]],[3,6,["H5375","(H853)"]],[6,8,["H935"]],[8,10,["H413"]],[10,12,["H6931"]],[12,13,["H8179"]],[13,16,["H3068"]],[16,17,["H1004"]],[17,19,["H6437"]],[19,20,["H6921"]],[20,22,["H2009"]],[22,25,["H6607"]],[25,28,["H8179"]],[28,29,["H2568"]],[29,31,["H6242"]],[31,32,["H376"]],[32,33,["H8432"]],[33,36,["H7200","(H853)"]],[36,37,["H2970"]],[37,39,["H1121"]],[39,41,["H5809"]],[41,43,["H6410"]],[43,45,["H1121"]],[45,47,["H1141"]],[47,48,["H8269"]],[48,51,["H5971"]]]},{"k":20657,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H428"]],[9,12,["H376"]],[12,14,["H2803"]],[14,15,["H205"]],[15,17,["H3289"]],[17,18,["H7451"]],[18,19,["H6098"]],[19,21,["H2063"]],[21,22,["H5892"]]]},{"k":20658,"v":[[0,2,["H559"]],[2,5,["H3808"]],[5,6,["H7138"]],[6,9,["H1129"]],[9,10,["H1004"]],[10,11,["H1931"]],[11,15,["H5518"]],[15,17,["H587"]],[17,20,["H1320"]]]},{"k":20659,"v":[[0,1,["H3651"]],[1,2,["H5012"]],[2,3,["H5921"]],[3,5,["H5012"]],[5,7,["H1121"]],[7,9,["H120"]]]},{"k":20660,"v":[[0,3,["H7307"]],[3,6,["H3068"]],[6,7,["H5307"]],[7,8,["H5921"]],[8,11,["H559"]],[11,12,["H413"]],[12,14,["H559"]],[14,15,["H3541"]],[15,16,["H559"]],[16,18,["H3068"]],[18,19,["H3651"]],[19,22,["H559"]],[22,24,["H1004"]],[24,26,["H3478"]],[26,28,["H589"]],[28,29,["H3045"]],[29,33,["H4609"]],[33,36,["H7307"]],[36,40,[]]]},{"k":20661,"v":[[0,3,["H7235"]],[3,5,["H2491"]],[5,7,["H2063"]],[7,8,["H5892"]],[8,12,["H4390"]],[12,14,["H2351"]],[14,18,["H2491"]]]},{"k":20662,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,8,["H2491"]],[8,9,["H834"]],[9,12,["H7760"]],[12,15,["H8432"]],[15,18,["H1992"]],[18,21,["H1320"]],[21,23,["H1931"]],[23,27,["H5518"]],[27,33,["H3318","(H853)"]],[33,37,["H4480","H8432"]],[37,39,[]]]},{"k":20663,"v":[[0,3,["H3372"]],[3,5,["H2719"]],[5,9,["H935"]],[9,11,["H2719"]],[11,12,["H5921"]],[12,14,["H5002"]],[14,16,["H136"]],[16,17,["H3069"]]]},{"k":20664,"v":[[0,4,["H3318"]],[4,9,["H4480","H8432"]],[9,12,["H5414"]],[12,16,["H3027"]],[16,18,["H2114"]],[18,21,["H6213"]],[21,22,["H8201"]],[22,24,[]]]},{"k":20665,"v":[[0,3,["H5307"]],[3,6,["H2719"]],[6,9,["H8199"]],[9,11,["H5921"]],[11,13,["H1366"]],[13,15,["H3478"]],[15,19,["H3045"]],[19,20,["H3588"]],[20,21,["H589"]],[21,24,["H3068"]]]},{"k":20666,"v":[[0,1,["H1931"]],[1,4,["H3808"]],[4,5,["H1961"]],[5,7,["H5518"]],[7,10,["H859"]],[10,11,["H1961"]],[11,13,["H1320"]],[13,16,["H8432"]],[16,21,["H8199"]],[21,23,["H413"]],[23,25,["H1366"]],[25,27,["H3478"]]]},{"k":20667,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,10,["H834"]],[10,13,["H3808"]],[13,14,["H1980"]],[14,17,["H2706"]],[17,18,["H3808"]],[18,19,["H6213"]],[19,21,["H4941"]],[21,24,["H6213"]],[24,27,["H4941"]],[27,30,["H1471"]],[30,31,["H834"]],[31,34,["H5439"]],[34,35,[]]]},{"k":20668,"v":[[0,5,["H1961"]],[5,8,["H5012"]],[8,10,["H6410"]],[10,12,["H1121"]],[12,14,["H1141"]],[14,15,["H4191"]],[15,19,["H5307"]],[19,20,["H5921"]],[20,22,["H6440"]],[22,24,["H2199"]],[24,27,["H1419"]],[27,28,["H6963"]],[28,30,["H559"]],[30,31,["H162"]],[31,32,["H136"]],[32,33,["H3069"]],[33,35,["H859"]],[35,36,["H6213"]],[36,39,["H3617","(H853)"]],[39,42,["H7611"]],[42,44,["H3478"]]]},{"k":20669,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20670,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,5,["H251"]],[5,8,["H251"]],[8,10,["H376"]],[10,13,["H1353"]],[13,15,["H3605"]],[15,17,["H1004"]],[17,19,["H3478"]],[19,20,["H3605"]],[20,24,["H834"]],[24,26,["H3427"]],[26,28,["H3389"]],[28,30,["H559"]],[30,33,["H7368"]],[33,34,["H4480","H5921"]],[34,36,["H3068"]],[36,40,["H1931"]],[40,41,["H776"]],[41,42,["H5414"]],[42,44,["H4181"]]]},{"k":20671,"v":[[0,1,["H3651"]],[1,2,["H559"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H136"]],[6,7,["H3069"]],[7,8,["H3588"]],[8,14,["H7368"]],[14,17,["H1471"]],[17,19,["H3588"]],[19,22,["H6327"]],[22,26,["H776"]],[26,30,["H1961"]],[30,35,["H4592"]],[35,36,["H4720"]],[36,39,["H776"]],[39,40,["H834","H8033"]],[40,43,["H935"]]]},{"k":20672,"v":[[0,1,["H3651"]],[1,2,["H559"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H136"]],[6,7,["H3069"]],[7,11,["H6908"]],[11,13,["H4480"]],[13,15,["H5971"]],[15,17,["H622"]],[17,20,["H4480"]],[20,22,["H776"]],[22,23,["H834"]],[23,27,["H6327"]],[27,31,["H5414"]],[31,32,["(H853)"]],[32,34,["H127"]],[34,36,["H3478"]]]},{"k":20673,"v":[[0,4,["H935"]],[4,5,["H8033"]],[5,10,["H5493","(H853)"]],[10,11,["H3605"]],[11,14,["H8251"]],[14,17,["H3605"]],[17,19,["H8441"]],[19,21,["H4480"]],[21,22,[]]]},{"k":20674,"v":[[0,4,["H5414"]],[4,6,["H259"]],[6,7,["H3820"]],[7,11,["H5414"]],[11,13,["H2319"]],[13,14,["H7307"]],[14,15,["H7130"]],[15,20,["H5493"]],[20,22,["H68"]],[22,23,["H3820"]],[23,27,["H4480","H1320"]],[27,30,["H5414"]],[30,33,["H3820"]],[33,35,["H1320"]]]},{"k":20675,"v":[[0,1,["H4616"]],[1,4,["H1980"]],[4,7,["H2708"]],[7,9,["H8104"]],[9,11,["H4941"]],[11,13,["H6213"]],[13,14,["(H853)"]],[14,18,["H1961"]],[18,20,["H5971"]],[20,22,["H589"]],[22,24,["H1961"]],[24,26,["H430"]]]},{"k":20676,"v":[[0,6,["H3820"]],[6,7,["H1980"]],[7,8,["H413"]],[8,10,["H3820"]],[10,14,["H8251"]],[14,17,["H8441"]],[17,20,["H5414"]],[20,22,["H1870"]],[22,26,["H7218"]],[26,27,["H5002"]],[27,29,["H136"]],[29,30,["H3069"]]]},{"k":20677,"v":[[0,4,["H3742"]],[4,6,["H5375","(H853)"]],[6,8,["H3671"]],[8,11,["H212"]],[11,12,["H5980"]],[12,16,["H3519"]],[16,19,["H430"]],[19,21,["H3478"]],[21,23,["H5921"]],[23,25,["H4480","H4605"]]]},{"k":20678,"v":[[0,3,["H3519"]],[3,6,["H3068"]],[6,8,["H5927"]],[8,9,["H4480","H5921"]],[9,11,["H8432"]],[11,14,["H5892"]],[14,16,["H5975"]],[16,17,["H5921"]],[17,19,["H2022"]],[19,20,["H834"]],[20,25,["H4480","H6924"]],[25,28,["H5892"]]]},{"k":20679,"v":[[0,3,["H7307"]],[3,6,["H5375"]],[6,8,["H935"]],[8,12,["H4758"]],[12,15,["H7307"]],[15,17,["H430"]],[17,19,["H3778"]],[19,20,["H413"]],[20,24,["H1473"]],[24,27,["H4758"]],[27,28,["H834"]],[28,31,["H7200"]],[31,33,["H5927"]],[33,34,["H4480","H5921"]],[34,35,[]]]},{"k":20680,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,8,["H1473","(H853)"]],[8,9,["H3605"]],[9,11,["H1697"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H7200"]],[16,17,[]]]},{"k":20681,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20682,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H859"]],[4,5,["H3427"]],[5,8,["H8432"]],[8,11,["H4805"]],[11,12,["H1004"]],[12,13,["H834"]],[13,15,["H5869"]],[15,17,["H7200"]],[17,19,["H7200"]],[19,20,["H3808"]],[20,23,["H241"]],[23,25,["H8085"]],[25,27,["H8085"]],[27,28,["H3808"]],[28,29,["H3588"]],[29,30,["H1992"]],[30,33,["H4805"]],[33,34,["H1004"]]]},{"k":20683,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H6213"]],[6,8,["H3627"]],[8,10,["H1473"]],[10,12,["H1540"]],[12,14,["H3119"]],[14,17,["H5869"]],[17,21,["H1540"]],[21,24,["H4480","H4725"]],[24,25,["H413"]],[25,26,["H312"]],[26,27,["H4725"]],[27,30,["H5869"]],[30,33,["H194"]],[33,36,["H7200"]],[36,37,["H3588"]],[37,38,["H1992"]],[38,41,["H4805"]],[41,42,["H1004"]]]},{"k":20684,"v":[[0,5,["H3318"]],[5,7,["H3627"]],[7,9,["H3119"]],[9,12,["H5869"]],[12,14,["H3627"]],[14,16,["H1473"]],[16,18,["H859"]],[18,21,["H3318"]],[21,23,["H6153"]],[23,26,["H5869"]],[26,31,["H4161"]],[31,33,["H1473"]]]},{"k":20685,"v":[[0,1,["H2864"]],[1,5,["H7023"]],[5,8,["H5869"]],[8,11,["H3318"]],[11,12,[]]]},{"k":20686,"v":[[0,3,["H5869"]],[3,6,["H5375"]],[6,8,["H5921"]],[8,10,["H3802"]],[10,14,["H3318"]],[14,17,["H5939"]],[17,20,["H3680"]],[20,22,["H6440"]],[22,25,["H7200"]],[25,26,["H3808","(H853)"]],[26,28,["H776"]],[28,29,["H3588"]],[29,32,["H5414"]],[32,36,["H4159"]],[36,39,["H1004"]],[39,41,["H3478"]]]},{"k":20687,"v":[[0,3,["H6213"]],[3,4,["H3651"]],[4,5,["H834"]],[5,8,["H6680"]],[8,11,["H3318"]],[11,13,["H3627"]],[13,15,["H3119"]],[15,17,["H3627"]],[17,19,["H1473"]],[19,23,["H6153"]],[23,25,["H2864"]],[25,28,["H7023"]],[28,31,["H3027"]],[31,35,["H3318"]],[35,38,["H5939"]],[38,41,["H5375"]],[41,43,["H5921"]],[43,45,["H3802"]],[45,48,["H5869"]]]},{"k":20688,"v":[[0,4,["H1242"]],[4,5,["H1961"]],[5,7,["H1697"]],[7,10,["H3068"]],[10,11,["H413"]],[11,13,["H559"]]]},{"k":20689,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,5,["H3808"]],[5,7,["H1004"]],[7,9,["H3478"]],[9,11,["H4805"]],[11,12,["H1004"]],[12,13,["H559"]],[13,14,["H413"]],[14,16,["H4100"]],[16,17,["H6213"]],[17,18,["H859"]]]},{"k":20690,"v":[[0,1,["H559"]],[1,3,["H413"]],[3,5,["H3541"]],[5,6,["H559"]],[6,8,["H136"]],[8,9,["H3069"]],[9,10,["H2088"]],[10,11,["H4853"]],[11,14,["H5387"]],[14,16,["H3389"]],[16,18,["H3605"]],[18,20,["H1004"]],[20,22,["H3478"]],[22,23,["H834"]],[23,25,["H8432"]],[25,26,[]]]},{"k":20691,"v":[[0,1,["H559"]],[1,2,["H589"]],[2,5,["H4159"]],[5,7,["H834"]],[7,10,["H6213"]],[10,11,["H3651"]],[11,15,["H6213"]],[15,20,["H1473"]],[20,22,["H1980"]],[22,24,["H7628"]]]},{"k":20692,"v":[[0,3,["H5387"]],[3,4,["H834"]],[4,6,["H8432"]],[6,9,["H5375"]],[9,10,["H413"]],[10,12,["H3802"]],[12,15,["H5939"]],[15,19,["H3318"]],[19,22,["H2864"]],[22,25,["H7023"]],[25,28,["H3318"]],[28,32,["H3680"]],[32,34,["H6440"]],[34,35,["H3282","H834"]],[35,36,["H1931"]],[36,37,["H7200"]],[37,38,["H3808","(H853)"]],[38,40,["H776"]],[40,43,["H5869"]]]},{"k":20693,"v":[[0,0,["(H853)"]],[0,2,["H7568"]],[2,6,["H6566"]],[6,7,["H5921"]],[7,13,["H8610"]],[13,16,["H4686"]],[16,20,["H935"]],[20,23,["H894"]],[23,26,["H776"]],[26,29,["H3778"]],[29,33,["H3808"]],[33,34,["H7200"]],[34,39,["H4191"]],[39,40,["H8033"]]]},{"k":20694,"v":[[0,4,["H2219"]],[4,6,["H3605"]],[6,7,["H7307"]],[7,8,["H3605"]],[8,9,["H834"]],[9,11,["H5439"]],[11,14,["H5828"]],[14,17,["H3605"]],[17,19,["H102"]],[19,24,["H7324"]],[24,26,["H2719"]],[26,27,["H310"]],[27,28,[]]]},{"k":20695,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,13,["H6327"]],[13,17,["H1471"]],[17,19,["H2219"]],[19,23,["H776"]]]},{"k":20696,"v":[[0,4,["H3498"]],[4,6,["H4557"]],[6,7,["H376"]],[7,8,["H4480"]],[8,12,["H4480","H2719"]],[12,15,["H4480","H7458"]],[15,19,["H4480","H1698"]],[19,20,["H4616"]],[20,23,["H5608","(H853)"]],[23,24,["H3605"]],[24,26,["H8441"]],[26,29,["H1471"]],[29,30,["H834","H8033"]],[30,32,["H935"]],[32,36,["H3045"]],[36,37,["H3588"]],[37,38,["H589"]],[38,41,["H3068"]]]},{"k":20697,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20698,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H398"]],[4,6,["H3899"]],[6,8,["H7494"]],[8,10,["H8354"]],[10,12,["H4325"]],[12,14,["H7269"]],[14,17,["H1674"]]]},{"k":20699,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H5971"]],[5,8,["H776"]],[8,9,["H3541"]],[9,10,["H559"]],[10,12,["H136"]],[12,13,["H3069"]],[13,16,["H3427"]],[16,18,["H3389"]],[18,20,["H413"]],[20,22,["H127"]],[22,24,["H3478"]],[24,27,["H398"]],[27,29,["H3899"]],[29,31,["H1674"]],[31,33,["H8354"]],[33,35,["H4325"]],[35,37,["H8078"]],[37,38,["H4616"]],[38,40,["H776"]],[40,43,["H3456"]],[43,48,["H4480","H4393"]],[48,52,["H4480","H2555"]],[52,54,["H3605"]],[54,57,["H3427"]],[57,58,[]]]},{"k":20700,"v":[[0,3,["H5892"]],[3,6,["H3427"]],[6,10,["H2717"]],[10,13,["H776"]],[13,15,["H1961"]],[15,16,["H8077"]],[16,20,["H3045"]],[20,21,["H3588"]],[21,22,["H589"]],[22,25,["H3068"]]]},{"k":20701,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20702,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H4100"]],[4,6,["H2088"]],[6,7,["H4912"]],[7,11,["H5921"]],[11,13,["H127"]],[13,15,["H3478"]],[15,16,["H559"]],[16,18,["H3117"]],[18,20,["H748"]],[20,22,["H3605"]],[22,23,["H2377"]],[23,24,["H6"]]]},{"k":20703,"v":[[0,1,["H559","H413"]],[1,3,["H3651"]],[3,4,["H3541"]],[4,5,["H559"]],[5,7,["H136"]],[7,8,["H3069"]],[8,12,["H2088"]],[12,13,["H4912","(H853)"]],[13,15,["H7673"]],[15,19,["H3808"]],[19,20,["H5750"]],[20,25,["H4911","(H853)"]],[25,27,["H3478"]],[27,28,["H3588","H518"]],[28,29,["H1696"]],[29,30,["H413"]],[30,33,["H3117"]],[33,36,["H7126"]],[36,39,["H1697"]],[39,41,["H3605"]],[41,42,["H2377"]]]},{"k":20704,"v":[[0,1,["H3588"]],[1,4,["H1961"]],[4,5,["H3808"]],[5,6,["H5750"]],[6,7,["H3605"]],[7,8,["H7723"]],[8,9,["H2377"]],[9,11,["H2509"]],[11,12,["H4738"]],[12,13,["H8432"]],[13,15,["H1004"]],[15,17,["H3478"]]]},{"k":20705,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,5,["H3068"]],[5,8,["H1696"]],[8,11,["H1697","(H853)"]],[11,12,["H834"]],[12,15,["H1696"]],[15,19,["H6213"]],[19,23,["H3808"]],[23,24,["H5750"]],[24,25,["H4900"]],[25,26,["H3588"]],[26,29,["H3117"]],[29,31,["H4805"]],[31,32,["H1004"]],[32,35,["H1696"]],[35,37,["H1697"]],[37,40,["H6213"]],[40,42,["H5002"]],[42,44,["H136"]],[44,45,["H3069"]]]},{"k":20706,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20707,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H2009"]],[4,8,["H1004"]],[8,10,["H3478"]],[10,11,["H559"]],[11,13,["H2377"]],[13,14,["H834"]],[14,15,["H1931"]],[15,16,["H2372"]],[16,19,["H7227"]],[19,20,["H3117"]],[20,24,["H1931"]],[24,25,["H5012"]],[25,28,["H6256"]],[28,32,["H7350"]]]},{"k":20708,"v":[[0,1,["H3651"]],[1,2,["H559"]],[2,3,["H413"]],[3,5,["H3541"]],[5,6,["H559"]],[6,8,["H136"]],[8,9,["H3069"]],[9,12,["H3808","H3605"]],[12,15,["H1697"]],[15,17,["H4900"]],[17,19,["H5750"]],[19,22,["H1697"]],[22,23,["H834"]],[23,26,["H1696"]],[26,29,["H6213"]],[29,30,["H5002"]],[30,32,["H136"]],[32,33,["H3069"]]]},{"k":20709,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20710,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H5012"]],[4,5,["H413"]],[5,7,["H5030"]],[7,9,["H3478"]],[9,11,["H5012"]],[11,13,["H559"]],[13,18,["H5030"]],[18,23,["H4480","H3820"]],[23,24,["H8085"]],[24,27,["H1697"]],[27,30,["H3068"]]]},{"k":20711,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H1945"]],[6,7,["H5921"]],[7,9,["H5036"]],[9,10,["H5030"]],[10,11,["H834"]],[11,12,["H1980","H310"]],[12,15,["H7307"]],[15,18,["H7200"]],[18,19,["H1115"]]]},{"k":20712,"v":[[0,2,["H3478"]],[2,4,["H5030"]],[4,5,["H1961"]],[5,8,["H7776"]],[8,11,["H2723"]]]},{"k":20713,"v":[[0,3,["H3808"]],[3,5,["H5927"]],[5,8,["H6556"]],[8,11,["H1443"]],[11,13,["H1447"]],[13,14,["H5921"]],[14,16,["H1004"]],[16,18,["H3478"]],[18,20,["H5975"]],[20,23,["H4421"]],[23,26,["H3117"]],[26,29,["H3068"]]]},{"k":20714,"v":[[0,3,["H2372"]],[3,4,["H7723"]],[4,6,["H3577"]],[6,7,["H7081"]],[7,8,["H559"]],[8,10,["H3068"]],[10,11,["H5002"]],[11,14,["H3068"]],[14,16,["H3808"]],[16,17,["H7971"]],[17,25,["H3176"]],[25,29,["H6965"]],[29,31,["H1697"]]]},{"k":20715,"v":[[0,3,["H3808"]],[3,4,["H2372"]],[4,6,["H7723"]],[6,7,["H4236"]],[7,12,["H559"]],[12,14,["H3577"]],[14,15,["H4738"]],[15,18,["H559"]],[18,20,["H3068"]],[20,21,["H5002"]],[21,24,["H589"]],[24,26,["H3808"]],[26,27,["H1696"]]]},{"k":20716,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H3282"]],[7,10,["H1696"]],[10,11,["H7723"]],[11,13,["H2372"]],[13,14,["H3577"]],[14,15,["H3651"]],[15,16,["H2009"]],[16,19,["H413"]],[19,21,["H5002"]],[21,23,["H136"]],[23,24,["H3069"]]]},{"k":20717,"v":[[0,3,["H3027"]],[3,5,["H1961"]],[5,6,["H413"]],[6,8,["H5030"]],[8,10,["H2372"]],[10,11,["H7723"]],[11,14,["H7080"]],[14,15,["H3577"]],[15,18,["H3808"]],[18,19,["H1961"]],[19,22,["H5475"]],[22,25,["H5971"]],[25,26,["H3808"]],[26,30,["H3789"]],[30,33,["H3791"]],[33,36,["H1004"]],[36,38,["H3478"]],[38,39,["H3808"]],[39,42,["H935"]],[42,43,["H413"]],[43,45,["H127"]],[45,47,["H3478"]],[47,51,["H3045"]],[51,52,["H3588"]],[52,53,["H589"]],[53,56,["H136"]],[56,57,["H3069"]]]},{"k":20718,"v":[[0,1,["H3282"]],[1,3,["H3282"]],[3,6,["H2937","(H853)"]],[6,8,["H5971"]],[8,9,["H559"]],[9,10,["H7965"]],[10,14,["H369"]],[14,15,["H7965"]],[15,17,["H1931"]],[17,19,["H1129"]],[19,21,["H2434"]],[21,23,["H2009"]],[23,25,["H2902"]],[25,28,["H8602"]],[28,29,[]]]},{"k":20719,"v":[[0,1,["H559"]],[1,2,["H413"]],[2,5,["H2902"]],[5,8,["H8602"]],[8,13,["H5307"]],[13,16,["H1961"]],[16,18,["H7857"]],[18,19,["H1653"]],[19,21,["H859"]],[21,24,["H68","H417"]],[24,26,["H5307"]],[26,29,["H5591"]],[29,30,["H7307"]],[30,32,["H1234"]],[32,33,[]]]},{"k":20720,"v":[[0,1,["H2009"]],[1,4,["H7023"]],[4,6,["H5307"]],[6,9,["H3808"]],[9,11,["H559"]],[11,12,["H413"]],[12,14,["H346"]],[14,17,["H2915"]],[17,18,["H834"]],[18,21,["H2902"]],[21,22,[]]]},{"k":20721,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,10,["H1234"]],[10,14,["H5591"]],[14,15,["H7307"]],[15,18,["H2534"]],[18,22,["H1961"]],[22,24,["H7857"]],[24,25,["H1653"]],[25,28,["H639"]],[28,31,["H68","H417"]],[31,34,["H2534"]],[34,36,["H3617"]],[36,37,[]]]},{"k":20722,"v":[[0,5,["H2040","(H853)"]],[5,7,["H7023"]],[7,8,["H834"]],[8,11,["H2902"]],[11,13,["H8602"]],[13,18,["H5060"]],[18,19,["H413"]],[19,21,["H776"]],[21,25,["H3247"]],[25,29,["H1540"]],[29,33,["H5307"]],[33,38,["H3615"]],[38,41,["H8432"]],[41,46,["H3045"]],[46,47,["H3588"]],[47,48,["H589"]],[48,51,["H3068"]]]},{"k":20723,"v":[[0,4,["H3615","(H853)"]],[4,6,["H2534"]],[6,9,["H7023"]],[9,15,["H2902"]],[15,18,["H8602"]],[18,22,["H559"]],[22,26,["H7023"]],[26,28,["H369"]],[28,30,["H369"]],[30,33,["H2902"]],[33,34,[]]]},{"k":20724,"v":[[0,4,["H5030"]],[4,6,["H3478"]],[6,8,["H5012"]],[8,9,["H413"]],[9,10,["H3389"]],[10,13,["H2372"]],[13,14,["H2377"]],[14,16,["H7965"]],[16,22,["H369"]],[22,23,["H7965"]],[23,24,["H5002"]],[24,26,["H136"]],[26,27,["H3069"]]]},{"k":20725,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H7760"]],[6,8,["H6440"]],[8,9,["H413"]],[9,11,["H1323"]],[11,14,["H5971"]],[14,16,["H5012"]],[16,18,["H4480"]],[18,21,["H3820"]],[21,23,["H5012"]],[23,25,["H5921"]],[25,26,[]]]},{"k":20726,"v":[[0,2,["H559"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H136"]],[6,7,["H3069"]],[7,8,["H1945"]],[8,13,["H8609"]],[13,14,["H3704"]],[14,15,["H5921"]],[15,16,["H3605"]],[16,17,["H679","H3027"]],[17,19,["H6213"]],[19,20,["H4555"]],[20,21,["H5921"]],[21,23,["H7218"]],[23,25,["H3605"]],[25,26,["H6967"]],[26,28,["H6679"]],[28,29,["H5315"]],[29,32,["H6679"]],[32,34,["H5315"]],[34,37,["H5971"]],[37,44,["H2421","H5315"]],[44,48,[]]]},{"k":20727,"v":[[0,4,["H2490"]],[4,6,["H413"]],[6,8,["H5971"]],[8,10,["H8168"]],[10,12,["H8184"]],[12,15,["H6595"]],[15,17,["H3899"]],[17,19,["H4191"]],[19,21,["H5315"]],[21,22,["H834"]],[22,24,["H3808"]],[24,25,["H4191"]],[25,31,["H2421","H5315"]],[31,32,["H834"]],[32,34,["H3808"]],[34,35,["H2421"]],[35,38,["H3576"]],[38,41,["H5971"]],[41,43,["H8085"]],[43,45,["H3577"]]]},{"k":20728,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,10,["H413"]],[10,12,["H3704"]],[12,13,["H834"]],[13,14,["H859"]],[14,15,["H8033"]],[15,16,["H6679","(H853)"]],[16,18,["H5315"]],[18,22,["H6524"]],[22,26,["H7167"]],[26,28,["H4480","H5921"]],[28,30,["H2220"]],[30,36,["H7971","(H853)","H5315"]],[36,37,["(H853)"]],[37,39,["H5315"]],[39,40,["H834"]],[40,41,["H859"]],[41,42,["H6679"]],[42,46,["H6524"]]]},{"k":20729,"v":[[0,0,["(H853)"]],[0,2,["H4555"]],[2,6,["H7167"]],[6,8,["H5337","(H853)"]],[8,10,["H5971"]],[10,14,["H4480","H3027"]],[14,18,["H1961"]],[18,19,["H3808"]],[19,20,["H5750"]],[20,23,["H3027"]],[23,26,["H4686"]],[26,30,["H3045"]],[30,31,["H3588"]],[31,32,["H589"]],[32,35,["H3068"]]]},{"k":20730,"v":[[0,1,["H3282"]],[1,3,["H8267"]],[3,8,["H3820"]],[8,11,["H6662"]],[11,12,["H3512"]],[12,14,["H589"]],[14,16,["H3808"]],[16,18,["H3510"]],[18,20,["H2388"]],[20,22,["H3027"]],[22,25,["H7563"]],[25,29,["H1115"]],[29,30,["H7725"]],[30,34,["H4480","H1870","H7451"]],[34,38,["H2421"]]]},{"k":20731,"v":[[0,1,["H3651"]],[1,4,["H2372"]],[4,5,["H3808"]],[5,6,["H5750"]],[6,7,["H7723"]],[7,8,["H3808"]],[8,9,["H7080"]],[9,10,["H7081"]],[10,14,["H5337","(H853)"]],[14,16,["H5971"]],[16,20,["H4480","H3027"]],[20,24,["H3045"]],[24,25,["H3588"]],[25,26,["H589"]],[26,29,["H3068"]]]},{"k":20732,"v":[[0,2,["H935"]],[2,3,["H376"]],[3,6,["H4480","H2205"]],[6,8,["H3478"]],[8,9,["H413"]],[9,12,["H3427"]],[12,13,["H6440"]],[13,14,[]]]},{"k":20733,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20734,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H428"]],[4,5,["H376"]],[5,8,["H5927"]],[8,10,["H1544"]],[10,11,["H5921"]],[11,13,["H3820"]],[13,15,["H5414"]],[15,17,["H4383"]],[17,20,["H5771"]],[20,21,["H5227"]],[21,23,["H6440"]],[23,30,["H1875","H1875"]],[30,32,[]]]},{"k":20735,"v":[[0,1,["H3651"]],[1,2,["H1696"]],[2,6,["H559"]],[6,7,["H413"]],[7,9,["H3541"]],[9,10,["H559"]],[10,12,["H136"]],[12,13,["H3069"]],[13,15,["H376","H376"]],[15,18,["H4480","H1004"]],[18,20,["H3478"]],[20,21,["H834"]],[21,23,["H5927","(H853)"]],[23,25,["H1544"]],[25,26,["H413"]],[26,28,["H3820"]],[28,30,["H7760"]],[30,32,["H4383"]],[32,35,["H5771"]],[35,36,["H5227"]],[36,38,["H6440"]],[38,40,["H935"]],[40,41,["H413"]],[41,43,["H5030"]],[43,44,["H589"]],[44,46,["H3068"]],[46,48,["H6030"]],[48,51,["H935"]],[51,55,["H7230"]],[55,58,["H1544"]]]},{"k":20736,"v":[[0,1,["H4616"]],[1,4,["H8610","(H853)"]],[4,6,["H1004"]],[6,8,["H3478"]],[8,12,["H3820"]],[12,13,["H834"]],[13,16,["H3605"]],[16,17,["H2114"]],[17,18,["H4480","H5921"]],[18,22,["H1544"]]]},{"k":20737,"v":[[0,1,["H3651"]],[1,2,["H559"]],[2,3,["H413"]],[3,5,["H1004"]],[5,7,["H3478"]],[7,8,["H3541"]],[8,9,["H559"]],[9,11,["H136"]],[11,12,["H3069"]],[12,13,["H7725"]],[13,15,["H7725"]],[15,17,["H4480","H5921"]],[17,19,["H1544"]],[19,22,["H7725"]],[22,24,["H6440"]],[24,25,["H4480","H5921"]],[25,26,["H3605"]],[26,28,["H8441"]]]},{"k":20738,"v":[[0,1,["H3588"]],[1,3,["H376","H376"]],[3,6,["H4480","H1004"]],[6,8,["H3478"]],[8,12,["H4480","H1616"]],[12,13,["H834"]],[13,14,["H1481"]],[14,16,["H3478"]],[16,19,["H5144"]],[19,20,["H4480","H310"]],[20,24,["H5927"]],[24,26,["H1544"]],[26,27,["H413"]],[27,29,["H3820"]],[29,31,["H7760"]],[31,33,["H4383"]],[33,36,["H5771"]],[36,37,["H5227"]],[37,39,["H6440"]],[39,41,["H935"]],[41,42,["H413"]],[42,44,["H5030"]],[44,46,["H1875"]],[46,51,["H589"]],[51,53,["H3068"]],[53,55,["H6030"]],[55,58,[]]]},{"k":20739,"v":[[0,4,["H5414"]],[4,6,["H6440"]],[6,8,["H1931"]],[8,9,["H376"]],[9,12,["H7760"]],[12,15,["H226"]],[15,18,["H4912"]],[18,24,["H3772"]],[24,27,["H4480","H8432"]],[27,30,["H5971"]],[30,34,["H3045"]],[34,35,["H3588"]],[35,36,["H589"]],[36,39,["H3068"]]]},{"k":20740,"v":[[0,2,["H3588"]],[2,4,["H5030"]],[4,6,["H6601"]],[6,10,["H1696"]],[10,12,["H1697"]],[12,13,["H589"]],[13,15,["H3068"]],[15,17,["H6601","(H853)"]],[17,18,["H1931"]],[18,19,["H5030"]],[19,24,["H5186","(H853)"]],[24,26,["H3027"]],[26,27,["H5921"]],[27,31,["H8045"]],[31,35,["H4480","H8432"]],[35,38,["H5971"]],[38,39,["H3478"]]]},{"k":20741,"v":[[0,4,["H5375"]],[4,9,["H5771"]],[9,11,["H5771"]],[11,14,["H5030"]],[14,16,["H1961"]],[16,20,["H5771"]],[20,24,["H1875"]],[24,26,[]]]},{"k":20742,"v":[[0,1,["H4616"]],[1,3,["H1004"]],[3,5,["H3478"]],[5,8,["H3808"]],[8,9,["H5750"]],[9,10,["H8582"]],[10,11,["H4480","H310"]],[11,13,["H3808"]],[13,15,["H2930"]],[15,17,["H5750"]],[17,19,["H3605"]],[19,21,["H6588"]],[21,26,["H1961"]],[26,28,["H5971"]],[28,30,["H589"]],[30,32,["H1961"]],[32,34,["H430"]],[34,35,["H5002"]],[35,37,["H136"]],[37,38,["H3069"]]]},{"k":20743,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,8,["H413"]],[8,10,["H559"]]]},{"k":20744,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H3588"]],[4,6,["H776"]],[6,7,["H2398"]],[7,11,["H4603"]],[11,12,["H4604"]],[12,17,["H5186"]],[17,19,["H3027"]],[19,20,["H5921"]],[20,24,["H7665"]],[24,26,["H4294"]],[26,29,["H3899"]],[29,33,["H7971"]],[33,34,["H7458"]],[34,40,["H3772"]],[40,41,["H120"]],[41,43,["H929"]],[43,44,["H4480"]],[44,45,[]]]},{"k":20745,"v":[[0,2,["H428"]],[2,3,["H7969"]],[3,4,["H376"]],[4,5,["H5146"]],[5,6,["H1840"]],[6,8,["H347"]],[8,9,["H1961"]],[9,10,["H8432"]],[10,12,["H1992"]],[12,14,["H5337"]],[14,18,["H5315"]],[18,21,["H6666"]],[21,22,["H5002"]],[22,24,["H136"]],[24,25,["H3069"]]]},{"k":20746,"v":[[0,1,["H3863"]],[1,4,["H7451"]],[4,5,["H2416"]],[5,7,["H5674"]],[7,10,["H776"]],[10,13,["H7921"]],[13,18,["H1961"]],[18,19,["H8077"]],[19,22,["H4480","H1097"]],[22,25,["H5674"]],[25,26,["H4480","H6440"]],[26,29,["H2416"]]]},{"k":20747,"v":[[0,2,["H428"]],[2,3,["H7969"]],[3,4,["H376"]],[4,6,["H8432"]],[6,9,["H589"]],[9,10,["H2416"]],[10,11,["H5002"]],[11,13,["H136"]],[13,14,["H3069"]],[14,15,["H1992"]],[15,17,["H5337"]],[17,18,["H518"]],[18,19,["H1121"]],[19,20,["H518"]],[20,21,["H1323"]],[21,23,["H905"]],[23,26,["H5337"]],[26,29,["H776"]],[29,31,["H1961"]],[31,32,["H8077"]]]},{"k":20748,"v":[[0,1,["H176"]],[1,4,["H935"]],[4,6,["H2719"]],[6,7,["H5921"]],[7,8,["H1931"]],[8,9,["H776"]],[9,11,["H559"]],[11,12,["H2719"]],[12,13,["H5674"]],[13,16,["H776"]],[16,21,["H3772"]],[21,22,["H120"]],[22,24,["H929"]],[24,25,["H4480"]],[25,26,[]]]},{"k":20749,"v":[[0,2,["H428"]],[2,3,["H7969"]],[3,4,["H376"]],[4,6,["H8432"]],[6,9,["H589"]],[9,10,["H2416"]],[10,11,["H5002"]],[11,13,["H136"]],[13,14,["H3069"]],[14,17,["H5337"]],[17,18,["H3808"]],[18,19,["H1121"]],[19,21,["H1323"]],[21,22,["H3588"]],[22,23,["H1992"]],[23,24,["H905"]],[24,28,["H5337"]]]},{"k":20750,"v":[[0,1,["H176"]],[1,4,["H7971"]],[4,6,["H1698"]],[6,7,["H413"]],[7,8,["H1931"]],[8,9,["H776"]],[9,12,["H8210"]],[12,14,["H2534"]],[14,15,["H5921"]],[15,18,["H1818"]],[18,21,["H3772"]],[21,22,["H4480"]],[22,24,["H120"]],[24,26,["H929"]]]},{"k":20751,"v":[[0,2,["H5146"]],[2,3,["H1840"]],[3,5,["H347"]],[5,7,["H8432"]],[7,10,["H589"]],[10,11,["H2416"]],[11,12,["H5002"]],[12,14,["H136"]],[14,15,["H3069"]],[15,16,["H1992"]],[16,18,["H5337"]],[18,19,["H518"]],[19,20,["H1121"]],[20,21,["H518"]],[21,22,["H1323"]],[22,26,["H5337"]],[26,29,["H5315"]],[29,32,["H6666"]]]},{"k":20752,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,9,["H637"]],[9,10,["H3588"]],[10,12,["H7971"]],[12,14,["H702"]],[14,15,["H7451"]],[15,16,["H8201"]],[16,17,["H413"]],[17,18,["H3389"]],[18,20,["H2719"]],[20,23,["H7458"]],[23,26,["H7451"]],[26,27,["H2416"]],[27,30,["H1698"]],[30,33,["H3772"]],[33,34,["H4480"]],[34,36,["H120"]],[36,38,["H929"]]]},{"k":20753,"v":[[0,2,["H2009"]],[2,6,["H3498"]],[6,8,["H6413"]],[8,13,["H3318"]],[13,15,["H1121"]],[15,17,["H1323"]],[17,18,["H2009"]],[18,22,["H3318"]],[22,23,["H413"]],[23,28,["H7200","(H853)"]],[28,30,["H1870"]],[30,33,["H5949"]],[33,38,["H5162"]],[38,39,["H5921"]],[39,41,["H7451"]],[41,42,["H834"]],[42,45,["H935"]],[45,46,["H5921"]],[46,47,["H3389"]],[47,49,["H854"]],[49,50,["H3605"]],[50,51,["H834"]],[51,54,["H935"]],[54,55,["H5921"]],[55,56,[]]]},{"k":20754,"v":[[0,4,["H5162"]],[4,6,["H3588"]],[6,8,["H7200","(H853)"]],[8,10,["H1870"]],[10,13,["H5949"]],[13,17,["H3045"]],[17,18,["H3588"]],[18,21,["H3808"]],[21,22,["H6213"]],[22,24,["H2600","(H853)"]],[24,25,["H3605"]],[25,26,["H834"]],[26,29,["H6213"]],[29,32,["H5002"]],[32,34,["H136"]],[34,35,["H3069"]]]},{"k":20755,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20756,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H4100"]],[4,5,["H1961"]],[5,7,["H1612"]],[7,8,["H6086"]],[8,11,["H4480","H3605"]],[11,12,["H6086"]],[12,16,["H2156"]],[16,17,["H834"]],[17,18,["H1961"]],[18,21,["H6086"]],[21,24,["H3293"]]]},{"k":20757,"v":[[0,2,["H6086"]],[2,4,["H3947"]],[4,5,["H4480"]],[5,7,["H6213"]],[7,9,["H4399"]],[9,10,["H518"]],[10,13,["H3947"]],[13,15,["H3489"]],[15,16,["H4480"]],[16,19,["H8518"]],[19,20,["H3605"]],[20,21,["H3627"]],[21,22,["H5921"]]]},{"k":20758,"v":[[0,1,["H2009"]],[1,4,["H5414"]],[4,7,["H784"]],[7,9,["H402"]],[9,11,["H784"]],[11,12,["H398","(H853)"]],[12,13,["H8147"]],[13,15,["H7098"]],[15,20,["H8432"]],[20,24,["H2787"]],[24,27,["H6743"]],[27,30,["H4399"]]]},{"k":20759,"v":[[0,1,["H2009"]],[1,4,["H1961"]],[4,5,["H8549"]],[5,8,["H6213"]],[8,10,["H3808"]],[10,11,["H4399"]],[11,14,["H637"]],[14,18,["H6213"]],[18,19,["H5750"]],[19,22,["H4399"]],[22,23,["H3588"]],[23,25,["H784"]],[25,27,["H398"]],[27,32,["H2787"]]]},{"k":20760,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H834"]],[7,9,["H1612"]],[9,10,["H6086"]],[10,13,["H6086"]],[13,16,["H3293"]],[16,17,["H834"]],[17,20,["H5414"]],[20,23,["H784"]],[23,25,["H402"]],[25,26,["H3651"]],[26,29,["H5414","(H853)"]],[29,31,["H3427"]],[31,33,["H3389"]]]},{"k":20761,"v":[[0,4,["H5414","(H853)"]],[4,6,["H6440"]],[6,12,["H3318"]],[12,15,["H784"]],[15,18,["H784"]],[18,20,["H398"]],[20,25,["H3045"]],[25,26,["H3588"]],[26,27,["H589"]],[27,30,["H3068"]],[30,33,["H7760","(H853)"]],[33,35,["H6440"]],[35,37,[]]]},{"k":20762,"v":[[0,4,["H5414","(H853)"]],[4,6,["H776"]],[6,7,["H8077"]],[7,8,["H3282"]],[8,11,["H4603"]],[11,13,["H4604"]],[13,14,["H5002"]],[14,16,["H136"]],[16,17,["H3069"]]]},{"k":20763,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20764,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["(H853)"]],[4,5,["H3389"]],[5,7,["H3045","(H853)"]],[7,9,["H8441"]]]},{"k":20765,"v":[[0,2,["H559"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H136"]],[6,7,["H3069"]],[7,9,["H3389"]],[9,11,["H4351"]],[11,14,["H4138"]],[14,18,["H4480","H776"]],[18,20,["H3669"]],[20,22,["H1"]],[22,25,["H567"]],[25,28,["H517"]],[28,30,["H2851"]]]},{"k":20766,"v":[[0,5,["H4138"]],[5,8,["H3117"]],[8,11,["H3205"]],[11,13,["H8270"]],[13,15,["H3808"]],[15,16,["H3772"]],[16,17,["H3808"]],[17,20,["H7364"]],[20,22,["H4325"]],[22,24,["H4935"]],[24,28,["H3808"]],[28,31,["H4414","H4414"]],[31,32,["H3808"]],[32,35,["H2853","H2853"]]]},{"k":20767,"v":[[0,1,["H3808"]],[1,2,["H5869"]],[2,3,["H2347","H5921"]],[3,6,["H6213"]],[6,7,["H259"]],[7,9,["H4480","H428"]],[9,14,["H2550"]],[14,15,["H5921"]],[15,21,["H7993"]],[21,22,["H413"]],[22,24,["H6440"]],[24,25,["H7704"]],[25,28,["H1604"]],[28,31,["H5315"]],[31,34,["H3117"]],[34,38,["H3205"]]]},{"k":20768,"v":[[0,4,["H5674"]],[4,5,["H5921"]],[5,8,["H7200"]],[8,10,["H947"]],[10,14,["H1818"]],[14,16,["H559"]],[16,24,["H1818"]],[24,25,["H2421"]],[25,28,["H559"]],[28,36,["H1818"]],[36,37,["H2421"]]]},{"k":20769,"v":[[0,3,["H5414"]],[3,6,["H7233"]],[6,9,["H6780"]],[9,12,["H7704"]],[12,16,["H7235"]],[16,19,["H1431"]],[19,23,["H935"]],[23,25,["H5716"]],[25,26,["H5716"]],[26,28,["H7699"]],[28,30,["H3559"]],[30,33,["H8181"]],[33,35,["H6779"]],[35,37,["H859"]],[37,39,["H5903"]],[39,41,["H6181"]]]},{"k":20770,"v":[[0,4,["H5674"]],[4,5,["H5921"]],[5,9,["H7200"]],[9,11,["H2009"]],[11,13,["H6256"]],[13,16,["H6256"]],[16,18,["H1730"]],[18,21,["H6566"]],[21,23,["H3671"]],[23,24,["H5921"]],[24,27,["H3680"]],[27,29,["H6172"]],[29,32,["H7650"]],[32,36,["H935"]],[36,39,["H1285"]],[39,40,["H854"]],[40,42,["H5002"]],[42,44,["H136"]],[44,45,["H3069"]],[45,48,["H1961"]],[48,49,[]]]},{"k":20771,"v":[[0,2,["H7364"]],[2,6,["H4325"]],[6,11,["H7857"]],[11,13,["H1818"]],[13,14,["H4480","H5921"]],[14,18,["H5480"]],[18,21,["H8081"]]]},{"k":20772,"v":[[0,2,["H3847"]],[2,7,["H7553"]],[7,9,["H5274"]],[9,13,["H8476"]],[13,18,["H2280"]],[18,21,["H8336"]],[21,24,["H3680"]],[24,27,["H4897"]]]},{"k":20773,"v":[[0,2,["H5710"]],[2,6,["H5716"]],[6,9,["H5414"]],[9,10,["H6781"]],[10,11,["H5921"]],[11,13,["H3027"]],[13,16,["H7242"]],[16,17,["H5921"]],[17,19,["H1627"]]]},{"k":20774,"v":[[0,3,["H5414"]],[3,5,["H5141"]],[5,6,["H5921"]],[6,8,["H639"]],[8,10,["H5694"]],[10,11,["H5921"]],[11,13,["H241"]],[13,16,["H8597"]],[16,17,["H5850"]],[17,20,["H7218"]]]},{"k":20775,"v":[[0,4,["H5710"]],[4,6,["H2091"]],[6,8,["H3701"]],[8,11,["H4403"]],[11,15,["H8336"]],[15,17,["H4897"]],[17,20,["H7553"]],[20,23,["H398"]],[23,25,["H5560"]],[25,27,["H1706"]],[27,29,["H8081"]],[29,34,["H3302","H3966","H3966"]],[34,38,["H6743"]],[38,41,["H4410"]]]},{"k":20776,"v":[[0,3,["H8034"]],[3,5,["H3318"]],[5,8,["H1471"]],[8,11,["H3308"]],[11,12,["H3588"]],[12,13,["H1931"]],[13,15,["H3632"]],[15,18,["H1926"]],[18,19,["H834"]],[19,22,["H7760"]],[22,23,["H5921"]],[23,25,["H5002"]],[25,27,["H136"]],[27,28,["H3069"]]]},{"k":20777,"v":[[0,4,["H982"]],[4,8,["H3308"]],[8,12,["H2181"]],[12,13,["H5921"]],[13,16,["H8034"]],[16,19,["H8210","(H853)"]],[19,21,["H8457"]],[21,22,["H5921"]],[22,24,["H3605"]],[24,27,["H5674"]],[27,30,["H1961"]]]},{"k":20778,"v":[[0,4,["H4480","H899"]],[4,7,["H3947"]],[7,9,["H6213"]],[9,12,["H1116"]],[12,15,["H2921"]],[15,19,["H2181"]],[19,20,["H5921"]],[20,25,["H3808"]],[25,26,["H935"]],[26,27,["H3808"]],[27,30,["H1961"]],[30,31,[]]]},{"k":20779,"v":[[0,4,["H3947"]],[4,6,["H8597"]],[6,7,["H3627"]],[7,10,["H4480","H2091"]],[10,14,["H4480","H3701"]],[14,15,["H834"]],[15,18,["H5414"]],[18,21,["H6213"]],[21,24,["H6754"]],[24,26,["H2145"]],[26,30,["H2181"]],[30,32,[]]]},{"k":20780,"v":[[0,2,["H3947"]],[2,4,["H7553","(H853)"]],[4,5,["H899"]],[5,7,["H3680"]],[7,12,["H5414"]],[12,14,["H8081"]],[14,17,["H7004"]],[17,18,["H6440"]],[18,19,[]]]},{"k":20781,"v":[[0,2,["H3899"]],[2,4,["H834"]],[4,6,["H5414"]],[6,9,["H5560"]],[9,11,["H8081"]],[11,13,["H1706"]],[13,16,["H398"]],[16,21,["H5414"]],[21,23,["H6440"]],[23,27,["H5207"]],[27,28,["H7381"]],[28,32,["H1961"]],[32,33,["H5002"]],[33,35,["H136"]],[35,36,["H3069"]]]},{"k":20782,"v":[[0,4,["H3947","(H853)"]],[4,6,["H1121"]],[6,9,["H1323"]],[9,10,["H834"]],[10,13,["H3205"]],[13,20,["H2076"]],[20,25,["H398"]],[25,28,["H4480"]],[28,30,["H8457"]],[30,33,["H4592"]]]},{"k":20783,"v":[[0,4,["H7819","(H853)"]],[4,6,["H1121"]],[6,8,["H5414"]],[8,15,["H5674"]],[15,19,[]]]},{"k":20784,"v":[[0,3,["H3605"]],[3,5,["H8441"]],[5,8,["H8457"]],[8,11,["H3808"]],[11,12,["H2142","(H853)"]],[12,14,["H3117"]],[14,17,["H5271"]],[17,20,["H1961"]],[20,21,["H5903"]],[21,23,["H6181"]],[23,25,["H1961"]],[25,26,["H947"]],[26,29,["H1818"]]]},{"k":20785,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H3605"]],[7,9,["H7451"]],[9,10,["H188"]],[10,11,["H188"]],[11,14,["H5002"]],[14,16,["H136"]],[16,17,["H3069"]]]},{"k":20786,"v":[[0,5,["H1129"]],[5,10,["H1354"]],[10,13,["H6213"]],[13,17,["H7413"]],[17,19,["H3605"]],[19,20,["H7339"]]]},{"k":20787,"v":[[0,3,["H1129"]],[3,6,["H7413"]],[6,7,["H413"]],[7,8,["H3605"]],[8,9,["H7218"]],[9,12,["H1870"]],[12,15,["(H853)"]],[15,17,["H3308"]],[17,20,["H8581"]],[20,23,["H6589","(H853)"]],[23,25,["H7272"]],[25,28,["H3605"]],[28,31,["H5674"]],[31,33,["H7235","(H853)"]],[33,35,["H8457"]]]},{"k":20788,"v":[[0,5,["H2181"]],[5,6,["H413"]],[6,8,["H1121","H4714"]],[8,10,["H7934"]],[10,11,["H1432"]],[11,13,["H1320"]],[13,16,["H7235","(H853)"]],[16,18,["H8457"]],[18,23,["H3707"]]]},{"k":20789,"v":[[0,1,["H2009"]],[1,6,["H5186"]],[6,8,["H3027"]],[8,9,["H5921"]],[9,13,["H1639"]],[13,15,["H2706"]],[15,18,["H5414"]],[18,22,["H5315"]],[22,26,["H8130"]],[26,29,["H1323"]],[29,32,["H6430"]],[32,35,["H3637"]],[35,38,["H2154"]],[38,39,["H4480","H1870"]]]},{"k":20790,"v":[[0,5,["H2181"]],[5,7,["H413"]],[7,9,["H1121","H804"]],[9,13,["H4480","H1115","H7654"]],[13,19,["H2181"]],[19,23,["H1571"]],[23,25,["H3808"]],[25,27,["H7646"]]]},{"k":20791,"v":[[0,4,["H7235","(H853)"]],[4,6,["H8457"]],[6,7,["H413"]],[7,9,["H776"]],[9,11,["H3667"]],[11,13,["H3778"]],[13,15,["H1571"]],[15,18,["H3808"]],[18,19,["H7646"]],[19,20,["H2063"]]]},{"k":20792,"v":[[0,1,["H4100"]],[1,2,["H535"]],[2,5,["H3826"]],[5,6,["H5002"]],[6,8,["H136"]],[8,9,["H3069"]],[9,12,["H6213","(H853)"]],[12,13,["H3605"]],[13,14,["H428"]],[14,17,["H4639"]],[17,20,["H7986"]],[20,21,["H2181"]],[21,22,["H802"]]]},{"k":20793,"v":[[0,4,["H1129"]],[4,7,["H1354"]],[7,10,["H7218"]],[10,12,["H3605"]],[12,13,["H1870"]],[13,15,["H6213"]],[15,18,["H7413"]],[18,20,["H3605"]],[20,21,["H7339"]],[21,24,["H3808"]],[24,25,["H1961"]],[25,28,["H2181"]],[28,32,["H7046"]],[32,33,["H868"]]]},{"k":20794,"v":[[0,4,["H802"]],[4,7,["H5003"]],[7,9,["H3947","(H853)"]],[9,10,["H2114"]],[10,11,["H8478"]],[11,14,["H376"]]]},{"k":20795,"v":[[0,2,["H5414"]],[2,3,["H5078"]],[3,5,["H3605"]],[5,6,["H2181"]],[6,8,["H859"]],[8,9,["H5414","(H853)"]],[9,11,["H5083"]],[11,13,["H3605"]],[13,15,["H157"]],[15,17,["H7809"]],[17,22,["H935"]],[22,23,["H413"]],[23,27,["H4480","H5439"]],[27,30,["H8457"]]]},{"k":20796,"v":[[0,3,["H2016"]],[3,4,["H1961"]],[4,7,["H4480"]],[7,9,["H802"]],[9,12,["H8457"]],[12,14,["H3808"]],[14,15,["H310"]],[15,19,["H2181"]],[19,24,["H5414"]],[24,26,["H868"]],[26,28,["H3808"]],[28,29,["H868"]],[29,31,["H5414"]],[31,36,["H1961"]],[36,37,["H2016"]]]},{"k":20797,"v":[[0,1,["H3651"]],[1,3,["H2181"]],[3,4,["H8085"]],[4,6,["H1697"]],[6,9,["H3068"]]]},{"k":20798,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H3282"]],[6,8,["H5178"]],[8,11,["H8210"]],[11,14,["H6172"]],[14,15,["H1540"]],[15,18,["H8457"]],[18,19,["H5921"]],[19,21,["H157"]],[21,23,["H5921"]],[23,24,["H3605"]],[24,26,["H1544"]],[26,29,["H8441"]],[29,33,["H1818"]],[33,36,["H1121"]],[36,37,["H834"]],[37,40,["H5414"]],[40,42,[]]]},{"k":20799,"v":[[0,1,["H2009"]],[1,2,["H3651"]],[2,5,["H6908","(H853)"]],[5,6,["H3605"]],[6,8,["H157"]],[8,9,["H5921"]],[9,10,["H834"]],[10,14,["H6149"]],[14,16,["H3605"]],[16,18,["H834"]],[18,21,["H157"]],[21,22,["H5921"]],[22,23,["H3605"]],[23,25,["H834"]],[25,28,["H8130"]],[28,32,["H6908"]],[32,35,["H4480","H5439"]],[35,36,["H5921"]],[36,40,["H1540"]],[40,42,["H6172"]],[42,43,["H413"]],[43,48,["H7200","(H853)"]],[48,49,["H3605"]],[49,51,["H6172"]]]},{"k":20800,"v":[[0,4,["H8199"]],[4,10,["H5003"]],[10,12,["H8210"]],[12,13,["H1818"]],[13,15,["H4941"]],[15,19,["H5414"]],[19,21,["H1818"]],[21,23,["H2534"]],[23,25,["H7068"]]]},{"k":20801,"v":[[0,5,["H5414"]],[5,9,["H3027"]],[9,14,["H2040"]],[14,17,["H1354"]],[17,21,["H5422"]],[21,24,["H7413"]],[24,27,["H6584"]],[27,32,["H899"]],[32,35,["H3947"]],[35,37,["H8597"]],[37,38,["H3627"]],[38,40,["H5117"]],[40,42,["H5903"]],[42,44,["H6181"]]]},{"k":20802,"v":[[0,5,["H5927"]],[5,7,["H6951"]],[7,8,["H5921"]],[8,13,["H7275"]],[13,16,["H68"]],[16,20,["H1333"]],[20,23,["H2719"]]]},{"k":20803,"v":[[0,4,["H8313"]],[4,6,["H1004"]],[6,8,["H784"]],[8,10,["H6213"]],[10,11,["H8201"]],[11,16,["H5869"]],[16,18,["H7227"]],[18,19,["H802"]],[19,26,["H7673"]],[26,30,["H4480","H2181"]],[30,33,["H1571"]],[33,35,["H5414"]],[35,36,["H3808"]],[36,37,["H868"]],[37,39,["H5750"]]]},{"k":20804,"v":[[0,6,["H2534"]],[6,10,["H5117"]],[10,13,["H7068"]],[13,15,["H5493"]],[15,16,["H4480"]],[16,22,["H8252"]],[22,26,["H3808"]],[26,27,["H5750"]],[27,28,["H3707"]]]},{"k":20805,"v":[[0,1,["H3282","H834"]],[1,4,["H3808"]],[4,5,["H2142","(H853)"]],[5,7,["H3117"]],[7,10,["H5271"]],[10,13,["H7264"]],[13,16,["H3605"]],[16,17,["H428"]],[17,19,["H1887"]],[19,21,["H589"]],[21,22,["H1571"]],[22,24,["H5414"]],[24,26,["H1870"]],[26,29,["H7218"]],[29,30,["H5002"]],[30,32,["H136"]],[32,33,["H3069"]],[33,37,["H3808"]],[37,38,["H6213","(H853)"]],[38,40,["H2154"]],[40,41,["H5921"]],[41,42,["H3605"]],[42,44,["H8441"]]]},{"k":20806,"v":[[0,1,["H2009"]],[1,3,["H3605"]],[3,6,["H4911"]],[6,10,["H4911"]],[10,11,["H5921"]],[11,13,["H559"]],[13,17,["H517"]],[17,21,["H1323"]]]},{"k":20807,"v":[[0,1,["H859"]],[1,4,["H517"]],[4,5,["H1323"]],[5,7,["H1602"]],[7,9,["H376"]],[9,12,["H1121"]],[12,14,["H859"]],[14,17,["H269"]],[17,20,["H269"]],[20,21,["H834"]],[21,22,["H1602"]],[22,24,["H376"]],[24,27,["H1121"]],[27,29,["H517"]],[29,32,["H2851"]],[32,35,["H1"]],[35,37,["H567"]]]},{"k":20808,"v":[[0,3,["H1419"]],[3,4,["H269"]],[4,6,["H8111"]],[6,7,["H1931"]],[7,10,["H1323"]],[10,12,["H3427"]],[12,13,["H5921"]],[13,16,["H8040"]],[16,19,["H6996"]],[19,20,["H269"]],[20,22,["H3427"]],[22,26,["H4480","H3225"]],[26,28,["H5467"]],[28,31,["H1323"]]]},{"k":20809,"v":[[0,4,["H3808"]],[4,5,["H1980"]],[5,8,["H1870"]],[8,10,["H6213"]],[10,13,["H8441"]],[13,20,["H6985"]],[20,21,["H4592"]],[21,25,["H7843"]],[25,27,["H4480"]],[27,30,["H3605"]],[30,32,["H1870"]]]},{"k":20810,"v":[[0,2,["H589"]],[2,3,["H2416"]],[3,4,["H5002"]],[4,6,["H136"]],[6,7,["H3069"]],[7,8,["H5467"]],[8,10,["H269"]],[10,12,["H518"]],[12,13,["H6213"]],[13,14,["H1931"]],[14,17,["H1323"]],[17,18,["H834"]],[18,21,["H6213"]],[21,22,["H859"]],[22,25,["H1323"]]]},{"k":20811,"v":[[0,1,["H2009"]],[1,2,["H2088"]],[2,3,["H1961"]],[3,5,["H5771"]],[5,8,["H269"]],[8,9,["H5467"]],[9,10,["H1347"]],[10,11,["H7653"]],[11,13,["H3899"]],[13,15,["H7962"]],[15,17,["H8252"]],[17,18,["H1961"]],[18,24,["H1323"]],[24,25,["H3808"]],[25,28,["H2388"]],[28,30,["H3027"]],[30,33,["H6041"]],[33,35,["H34"]]]},{"k":20812,"v":[[0,4,["H1361"]],[4,6,["H6213"]],[6,7,["H8441"]],[7,8,["H6440"]],[8,14,["H5493","(H853)"]],[14,15,["H834"]],[15,17,["H7200"]],[17,18,[]]]},{"k":20813,"v":[[0,1,["H3808"]],[1,3,["H8111"]],[3,4,["H2398"]],[4,5,["H2677"]],[5,8,["H2403"]],[8,12,["H7235","(H853)"]],[12,14,["H8441"]],[14,16,["H4480"]],[16,20,["H6663","(H853)"]],[20,22,["H269"]],[22,24,["H3605"]],[24,26,["H8441"]],[26,27,["H834"]],[27,30,["H6213"]]]},{"k":20814,"v":[[0,1,["H859"]],[1,2,["H1571"]],[2,3,["H834"]],[3,5,["H6419"]],[5,7,["H269"]],[7,8,["H5375"]],[8,11,["H3639"]],[11,14,["H2403"]],[14,15,["H834"]],[15,20,["H8581"]],[20,21,["H4480"]],[21,26,["H6663"]],[26,27,["H4480"]],[27,32,["H954","H859"]],[32,33,["H1571"]],[33,35,["H5375"]],[35,37,["H3639"]],[37,42,["H6663"]],[42,44,["H269"]]]},{"k":20815,"v":[[0,5,["H7725","(H853)"]],[5,7,["H7622","(H853)"]],[7,9,["H7622"]],[9,11,["H5467"]],[11,14,["H1323"]],[14,17,["H7622"]],[17,19,["H8111"]],[19,22,["H1323"]],[22,29,["H7622"]],[29,32,["H7622"]],[32,35,["H8432"]],[35,37,[]]]},{"k":20816,"v":[[0,1,["H4616"]],[1,4,["H5375"]],[4,7,["H3639"]],[7,11,["H3637"]],[11,13,["H4480","H3605"]],[13,14,["H834"]],[14,17,["H6213"]],[17,23,["H5162"]],[23,25,[]]]},{"k":20817,"v":[[0,3,["H269"]],[3,4,["H5467"]],[4,7,["H1323"]],[7,9,["H7725"]],[9,13,["H6927"]],[13,15,["H8111"]],[15,18,["H1323"]],[18,20,["H7725"]],[20,24,["H6927"]],[24,26,["H859"]],[26,29,["H1323"]],[29,31,["H7725"]],[31,35,["H6927"]]]},{"k":20818,"v":[[0,3,["H269"]],[3,4,["H5467"]],[4,5,["H1961"]],[5,6,["H3808"]],[6,7,["H8052"]],[7,10,["H6310"]],[10,13,["H3117"]],[13,16,["H1347"]]]},{"k":20819,"v":[[0,1,["H2962"]],[1,3,["H7451"]],[3,5,["H1540"]],[5,7,["H3644"]],[7,9,["H6256"]],[9,12,["H2781"]],[12,15,["H1323"]],[15,17,["H758"]],[17,19,["H3605"]],[19,23,["H5439"]],[23,26,["H1323"]],[26,29,["H6430"]],[29,31,["H7590"]],[31,34,["H4480","H5439"]]]},{"k":20820,"v":[[0,1,["H859"]],[1,3,["H5375","(H853)"]],[3,5,["H2154"]],[5,8,["H8441"]],[8,9,["H5002"]],[9,11,["H3068"]]]},{"k":20821,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,10,["H6213"]],[10,11,["H854"]],[11,13,["H834"]],[13,16,["H6213"]],[16,17,["H834"]],[17,19,["H959"]],[19,21,["H423"]],[21,23,["H6565"]],[23,25,["H1285"]]]},{"k":20822,"v":[[0,2,["H589"]],[2,4,["H2142","(H853)"]],[4,6,["H1285"]],[6,7,["H854"]],[7,11,["H3117"]],[11,14,["H5271"]],[14,18,["H6965"]],[18,22,["H5769"]],[22,23,["H1285"]]]},{"k":20823,"v":[[0,4,["H2142","(H853)"]],[4,6,["H1870"]],[6,9,["H3637"]],[9,13,["H3947","(H853)"]],[13,15,["H269"]],[15,17,["H1419"]],[17,20,["H6996"]],[20,24,["H5414"]],[24,29,["H1323"]],[29,31,["H3808"]],[31,34,["H4480","H1285"]]]},{"k":20824,"v":[[0,2,["H589"]],[2,4,["H6965","(H853)"]],[4,6,["H1285"]],[6,7,["H854"]],[7,12,["H3045"]],[12,13,["H3588"]],[13,14,["H589"]],[14,17,["H3068"]]]},{"k":20825,"v":[[0,1,["H4616"]],[1,4,["H2142"]],[4,7,["H954"]],[7,9,["H3808"]],[9,10,["H6610"]],[10,12,["H6310"]],[12,14,["H5750"]],[14,15,["H4480","H6440"]],[15,18,["H3639"]],[18,22,["H3722"]],[22,26,["H3605"]],[26,27,["H834"]],[27,30,["H6213"]],[30,31,["H5002"]],[31,33,["H136"]],[33,34,["H3069"]]]},{"k":20826,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20827,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,5,["H2330"]],[5,7,["H2420"]],[7,9,["H4911"]],[9,11,["H4912"]],[11,12,["H413"]],[12,14,["H1004"]],[14,16,["H3478"]]]},{"k":20828,"v":[[0,2,["H559"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H136"]],[6,7,["H3069"]],[7,9,["H1419"]],[9,10,["H5404"]],[10,12,["H1419"]],[12,13,["H3671"]],[13,14,["H750","H83"]],[14,15,["H4392"]],[15,17,["H5133"]],[17,18,["H834"]],[18,21,["H7553"]],[21,22,["H935"]],[22,23,["H413"]],[23,24,["H3844"]],[24,26,["H3947","(H853)"]],[26,29,["H6788"]],[29,32,["H730"]]]},{"k":20829,"v":[[0,3,["H6998","(H853)"]],[3,5,["H7218"]],[5,9,["H3242"]],[9,11,["H935"]],[11,13,["H413"]],[13,15,["H776"]],[15,17,["H3667"]],[17,19,["H7760"]],[19,23,["H5892"]],[23,25,["H7402"]]]},{"k":20830,"v":[[0,2,["H3947"]],[2,6,["H4480","H2233"]],[6,9,["H776"]],[9,11,["H5414"]],[11,15,["H2233"]],[15,16,["H7704"]],[16,18,["H3947"]],[18,20,["H5921"]],[20,21,["H7227"]],[21,22,["H4325"]],[22,24,["H7760"]],[24,29,["H6851"]]]},{"k":20831,"v":[[0,3,["H6779"]],[3,5,["H1961"]],[5,7,["H5628"]],[7,8,["H1612"]],[8,10,["H8217"]],[10,11,["H6967"]],[11,13,["H1808"]],[13,14,["H6437"]],[14,15,["H413"]],[15,19,["H8328"]],[19,21,["H1961"]],[21,22,["H8478"]],[22,26,["H1961"]],[26,28,["H1612"]],[28,31,["H6213"]],[31,32,["H905"]],[32,35,["H7971"]],[35,36,["H6288"]]]},{"k":20832,"v":[[0,2,["H1961"]],[2,4,["H259"]],[4,5,["H1419"]],[5,6,["H5404"]],[6,8,["H1419"]],[8,9,["H3671"]],[9,11,["H7227"]],[11,12,["H5133"]],[12,14,["H2009"]],[14,15,["H2063"]],[15,16,["H1612"]],[16,18,["H3719"]],[18,20,["H8328"]],[20,25,["H7971"]],[25,27,["H1808"]],[27,28,["H5921"]],[28,33,["H8248"]],[33,37,["H4480","H6170"]],[37,40,["H4302"]]]},{"k":20833,"v":[[0,1,["H1931"]],[1,3,["H8362"]],[3,4,["H413"]],[4,6,["H2896"]],[6,7,["H7704"]],[7,8,["H413"]],[8,9,["H7227"]],[9,10,["H4325"]],[10,15,["H6213"]],[15,16,["H6057"]],[16,21,["H5375"]],[21,22,["H6529"]],[22,26,["H1961"]],[26,28,["H155"]],[28,29,["H1612"]]]},{"k":20834,"v":[[0,1,["H559"]],[1,3,["H3541"]],[3,4,["H559"]],[4,6,["H136"]],[6,7,["H3069"]],[7,10,["H6743"]],[10,13,["H3808"]],[13,15,["H5423","(H853)"]],[15,17,["H8328"]],[17,21,["H7082"]],[21,23,["H6529"]],[23,27,["H3001"]],[27,30,["H3001"]],[30,32,["H3605"]],[32,34,["H2965"]],[34,37,["H6780"]],[37,39,["H3808"]],[39,40,["H1419"]],[40,41,["H2220"]],[41,43,["H7227"]],[43,44,["H5971"]],[44,48,["H5375","(H853)"]],[48,51,["H4480","H8328"]],[51,52,[]]]},{"k":20835,"v":[[0,2,["H2009"]],[2,4,["H8362"]],[4,7,["H6743"]],[7,10,["H3808"]],[10,12,["H3001","H3001"]],[12,15,["H6921"]],[15,16,["H7307"]],[16,17,["H5060"]],[17,21,["H3001"]],[21,22,["H5921"]],[22,24,["H6170"]],[24,27,["H6780"]]]},{"k":20836,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20837,"v":[[0,1,["H559"]],[1,2,["H4994"]],[2,5,["H4805"]],[5,6,["H1004"]],[6,7,["H3045"]],[7,9,["H3808"]],[9,10,["H4100"]],[10,11,["H428"]],[11,14,["H559"]],[14,16,["H2009"]],[16,18,["H4428"]],[18,20,["H894"]],[20,22,["H935"]],[22,24,["H3389"]],[24,27,["H3947","(H853)"]],[27,29,["H4428"]],[29,33,["H8269"]],[33,36,["H935"]],[36,38,["H413"]],[38,41,["H894"]]]},{"k":20838,"v":[[0,3,["H3947"]],[3,6,["H4410"]],[6,7,["H4480","H2233"]],[7,9,["H3772"]],[9,11,["H1285"]],[11,12,["H854"]],[12,16,["H935"]],[16,18,["H423"]],[18,24,["H3947"]],[24,26,["H352"]],[26,29,["H776"]]]},{"k":20839,"v":[[0,3,["H4467"]],[3,5,["H1961"]],[5,6,["H8217"]],[6,10,["H1115"]],[10,13,["H5375"]],[13,17,["H8104","(H853)"]],[17,20,["H1285"]],[20,23,["H5975"]]]},{"k":20840,"v":[[0,3,["H4775"]],[3,7,["H7971"]],[7,9,["H4397"]],[9,11,["H4714"]],[11,15,["H5414"]],[15,17,["H5483"]],[17,19,["H7227"]],[19,20,["H5971"]],[20,23,["H6743"]],[23,26,["H4422"]],[26,28,["H6213"]],[28,29,["H428"]],[29,34,["H6565"]],[34,36,["H1285"]],[36,39,["H4422"]]]},{"k":20841,"v":[[0,2,["H589"]],[2,3,["H2416"]],[3,4,["H5002"]],[4,6,["H136"]],[6,7,["H3069"]],[7,8,["H518","H3808"]],[8,11,["H4725"]],[11,14,["H4428"]],[14,19,["H4427","(H853)"]],[19,20,["H834","(H853)"]],[20,21,["H423"]],[21,23,["H959"]],[23,25,["H834","(H853)"]],[25,26,["H1285"]],[26,28,["H6565"]],[28,30,["H854"]],[30,34,["H8432"]],[34,36,["H894"]],[36,39,["H4191"]]]},{"k":20842,"v":[[0,1,["H3808"]],[1,3,["H6547"]],[3,6,["H1419"]],[6,7,["H2428"]],[7,9,["H7227"]],[9,10,["H6951"]],[10,11,["H6213"]],[11,16,["H4421"]],[16,19,["H8210"]],[19,20,["H5550"]],[20,22,["H1129"]],[22,23,["H1785"]],[23,26,["H3772"]],[26,27,["H7227"]],[27,28,["H5315"]]]},{"k":20843,"v":[[0,3,["H959"]],[3,5,["H423"]],[5,7,["H6565"]],[7,9,["H1285"]],[9,11,["H2009"]],[11,14,["H5414"]],[14,16,["H3027"]],[16,19,["H6213"]],[19,20,["H3605"]],[20,21,["H428"]],[21,25,["H3808"]],[25,26,["H4422"]]]},{"k":20844,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,8,["H589"]],[8,9,["H2416"]],[9,10,["H518","H3808"]],[10,12,["H423"]],[12,13,["H834"]],[13,16,["H959"]],[16,19,["H1285"]],[19,20,["H834"]],[20,23,["H6565"]],[23,28,["H5414"]],[28,32,["H7218"]]]},{"k":20845,"v":[[0,4,["H6566"]],[4,6,["H7568"]],[6,7,["H5921"]],[7,13,["H8610"]],[13,16,["H4686"]],[16,20,["H935"]],[20,23,["H894"]],[23,26,["H8199"]],[26,27,["H854"]],[27,29,["H8033"]],[29,32,["H4603"]],[32,33,["H834"]],[33,36,["H4603"]],[36,38,[]]]},{"k":20846,"v":[[0,2,["H3605"]],[2,4,["H4015"]],[4,6,["H3605"]],[6,8,["H102"]],[8,10,["H5307"]],[10,13,["H2719"]],[13,17,["H7604"]],[17,20,["H6566"]],[20,22,["H3605"]],[22,23,["H7307"]],[23,27,["H3045"]],[27,28,["H3588"]],[28,29,["H589"]],[29,31,["H3068"]],[31,33,["H1696"]],[33,34,[]]]},{"k":20847,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H589"]],[6,9,["H3947"]],[9,13,["H4480","H6788"]],[13,16,["H7311"]],[16,17,["H730"]],[17,20,["H5414"]],[20,25,["H6998"]],[25,28,["H4480","H7218"]],[28,32,["H3127"]],[32,35,["H7390"]],[35,38,["H8362"]],[38,40,["H5921"]],[40,42,["H1364"]],[42,43,["H2022"]],[43,45,["H8524"]]]},{"k":20848,"v":[[0,3,["H2022"]],[3,6,["H4791"]],[6,8,["H3478"]],[8,11,["H8362"]],[11,17,["H5375"]],[17,18,["H6057"]],[18,20,["H6213"]],[20,21,["H6529"]],[21,23,["H1961"]],[23,25,["H117"]],[25,26,["H730"]],[26,28,["H8478"]],[28,31,["H7931"]],[31,32,["H3605"]],[32,33,["H6833"]],[33,35,["H3605"]],[35,36,["H3671"]],[36,39,["H6738"]],[39,42,["H1808"]],[42,46,["H7931"]]]},{"k":20849,"v":[[0,2,["H3605"]],[2,4,["H6086"]],[4,7,["H7704"]],[7,9,["H3045"]],[9,10,["H3588"]],[10,11,["H589"]],[11,13,["H3068"]],[13,16,["H8213"]],[16,18,["H1364"]],[18,19,["H6086"]],[19,21,["H1361"]],[21,23,["H8217"]],[23,24,["H6086"]],[24,27,["H3001"]],[27,29,["H3892"]],[29,30,["H6086"]],[30,35,["H3002"]],[35,36,["H6086"]],[36,38,["H6524"]],[38,39,["H589"]],[39,41,["H3068"]],[41,43,["H1696"]],[43,46,["H6213"]],[46,47,[]]]},{"k":20850,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,7,["H413"]],[7,10,["H559"]]]},{"k":20851,"v":[[0,1,["H4100"]],[1,5,["H859"]],[5,6,["H4911"]],[6,7,["H2088","(H853)"]],[7,8,["H4912"]],[8,9,["H5921"]],[9,11,["H127"]],[11,13,["H3478"]],[13,14,["H559"]],[14,16,["H1"]],[16,18,["H398"]],[18,20,["H1155"]],[20,23,["H1121"]],[23,24,["H8127"]],[24,28,["H6949"]]]},{"k":20852,"v":[[0,2,["H589"]],[2,3,["H2416"]],[3,4,["H5002"]],[4,6,["H136"]],[6,7,["H3069"]],[7,10,["H518"]],[10,11,["H1961"]],[11,14,["H5750"]],[14,16,["H4911"]],[16,17,["H2088"]],[17,18,["H4912"]],[18,20,["H3478"]]]},{"k":20853,"v":[[0,1,["H2005"]],[1,2,["H3605"]],[2,3,["H5315"]],[3,8,["H5315"]],[8,11,["H1"]],[11,15,["H5315"]],[15,18,["H1121"]],[18,22,["H5315"]],[22,24,["H2398"]],[24,25,["H1931"]],[25,27,["H4191"]]]},{"k":20854,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H1961"]],[5,6,["H6662"]],[6,8,["H6213"]],[8,12,["H4941"]],[12,14,["H6666"]]]},{"k":20855,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,5,["H413"]],[5,7,["H2022"]],[7,8,["H3808"]],[8,11,["H5375"]],[11,13,["H5869"]],[13,14,["H413"]],[14,16,["H1544"]],[16,19,["H1004"]],[19,21,["H3478"]],[21,22,["H3808"]],[22,24,["H2930"]],[24,26,["H7453"]],[26,27,["H802"]],[27,28,["H3808"]],[28,31,["H7126"]],[31,32,["H413"]],[32,34,["H5079"]],[34,35,["H802"]]]},{"k":20856,"v":[[0,3,["H3808"]],[3,4,["H3238"]],[4,5,["H376"]],[5,8,["H7725"]],[8,11,["H2326"]],[11,13,["H2258"]],[13,15,["H1497"]],[15,16,["H3808"]],[16,18,["H1500"]],[18,20,["H5414"]],[20,22,["H3899"]],[22,25,["H7457"]],[25,28,["H3680"]],[28,30,["H5903"]],[30,33,["H899"]]]},{"k":20857,"v":[[0,4,["H3808"]],[4,6,["H5414"]],[6,8,["H5392"]],[8,9,["H3808"]],[9,11,["H3947"]],[11,13,["H8636"]],[13,16,["H7725"]],[16,18,["H3027"]],[18,20,["H4480","H5766"]],[20,22,["H6213"]],[22,23,["H571"]],[23,24,["H4941"]],[24,25,["H996"]],[25,26,["H376"]],[26,28,["H376"]]]},{"k":20858,"v":[[0,2,["H1980"]],[2,5,["H2708"]],[5,8,["H8104"]],[8,10,["H4941"]],[10,12,["H6213"]],[12,13,["H571"]],[13,14,["H1931"]],[14,16,["H6662"]],[16,20,["H2421","H2421"]],[20,21,["H5002"]],[21,23,["H136"]],[23,24,["H3069"]]]},{"k":20859,"v":[[0,3,["H3205"]],[3,5,["H1121"]],[5,9,["H6530"]],[9,11,["H8210"]],[11,13,["H1818"]],[13,16,["H6213"]],[16,18,["H251"]],[18,21,["H4480","H259"]],[21,23,["H4480","H428"]],[23,24,[]]]},{"k":20860,"v":[[0,2,["H1931"]],[2,3,["H6213"]],[3,4,["H3808","(H853)"]],[4,5,["H3605"]],[5,7,["H428"]],[7,9,["H3588"]],[9,10,["H1571"]],[10,12,["H398"]],[12,13,["H413"]],[13,15,["H2022"]],[15,17,["H2930"]],[17,19,["H7453"]],[19,20,["H802"]]]},{"k":20861,"v":[[0,2,["H3238"]],[2,4,["H6041"]],[4,6,["H34"]],[6,8,["H1497"]],[8,10,["H1500"]],[10,12,["H3808"]],[12,13,["H7725"]],[13,15,["H2258"]],[15,19,["H5375"]],[19,21,["H5869"]],[21,22,["H413"]],[22,24,["H1544"]],[24,26,["H6213"]],[26,27,["H8441"]]]},{"k":20862,"v":[[0,3,["H5414"]],[3,5,["H5392"]],[5,8,["H3947"]],[8,9,["H8636"]],[9,13,["H2421"]],[13,16,["H3808"]],[16,17,["H2421"]],[17,20,["H6213","(H853)"]],[20,21,["H3605"]],[21,22,["H428"]],[22,23,["H8441"]],[23,27,["H4191","H4191"]],[27,29,["H1818"]],[29,31,["H1961"]],[31,33,[]]]},{"k":20863,"v":[[0,2,["H2009"]],[2,5,["H3205"]],[5,7,["H1121"]],[7,9,["H7200","(H853)"]],[9,10,["H3605"]],[10,12,["H1"]],[12,13,["H2403"]],[13,14,["H834"]],[14,17,["H6213"]],[17,19,["H7200"]],[19,21,["H6213"]],[21,22,["H3808"]],[22,24,[]]]},{"k":20864,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,5,["H5921"]],[5,7,["H2022"]],[7,8,["H3808"]],[8,11,["H5375"]],[11,13,["H5869"]],[13,14,["H413"]],[14,16,["H1544"]],[16,19,["H1004"]],[19,21,["H3478"]],[21,23,["H3808"]],[23,24,["H2930"]],[24,26,["H7453","(H853)"]],[26,27,["H802"]]]},{"k":20865,"v":[[0,1,["H3808"]],[1,3,["H3238"]],[3,4,["H376"]],[4,6,["H3808"]],[6,7,["H2254"]],[7,9,["H2258"]],[9,10,["H3808"]],[10,12,["H1497"]],[12,14,["H1500"]],[14,17,["H5414"]],[17,19,["H3899"]],[19,22,["H7457"]],[22,25,["H3680"]],[25,27,["H5903"]],[27,30,["H899"]]]},{"k":20866,"v":[[0,4,["H7725"]],[4,6,["H3027"]],[6,9,["H4480","H6041"]],[9,12,["H3808"]],[12,13,["H3947"]],[13,14,["H5392"]],[14,16,["H8636"]],[16,18,["H6213"]],[18,20,["H4941"]],[20,22,["H1980"]],[22,25,["H2708"]],[25,26,["H1931"]],[26,28,["H3808"]],[28,29,["H4191"]],[29,32,["H5771"]],[32,35,["H1"]],[35,39,["H2421","H2421"]]]},{"k":20867,"v":[[0,4,["H1"]],[4,5,["H3588"]],[5,8,["H6231","H6233"]],[8,9,["H1497"]],[9,11,["H251"]],[11,13,["H1499"]],[13,15,["H6213"]],[15,17,["H834"]],[17,19,["H3808"]],[19,20,["H2896"]],[20,21,["H8432"]],[21,23,["H5971"]],[23,24,["H2009"]],[24,28,["H4191"]],[28,31,["H5771"]]]},{"k":20868,"v":[[0,2,["H559"]],[2,4,["H4069"]],[4,6,["H3808"]],[6,8,["H1121"]],[8,9,["H5375"]],[9,11,["H5771"]],[11,14,["H1"]],[14,17,["H1121"]],[17,19,["H6213"]],[19,23,["H4941"]],[23,25,["H6666"]],[25,28,["H8104","(H853)"]],[28,29,["H3605"]],[29,31,["H2708"]],[31,34,["H6213"]],[34,39,["H2421","H2421"]]]},{"k":20869,"v":[[0,2,["H5315"]],[2,4,["H2398"]],[4,5,["H1931"]],[5,7,["H4191"]],[7,9,["H1121"]],[9,11,["H3808"]],[11,12,["H5375"]],[12,14,["H5771"]],[14,17,["H1"]],[17,18,["H3808"]],[18,21,["H1"]],[21,22,["H5375"]],[22,24,["H5771"]],[24,27,["H1121"]],[27,29,["H6666"]],[29,32,["H6662"]],[32,34,["H1961"]],[34,35,["H5921"]],[35,39,["H7564"]],[39,42,["H7563"]],[42,44,["H1961"]],[44,45,["H5921"]],[45,46,[]]]},{"k":20870,"v":[[0,2,["H3588"]],[2,4,["H7563"]],[4,6,["H7725"]],[6,8,["H4480","H3605"]],[8,10,["H2403"]],[10,11,["H834"]],[11,14,["H6213"]],[14,16,["H8104","(H853)"]],[16,17,["H3605"]],[17,19,["H2708"]],[19,21,["H6213"]],[21,25,["H4941"]],[25,27,["H6666"]],[27,31,["H2421","H2421"]],[31,34,["H3808"]],[34,35,["H4191"]]]},{"k":20871,"v":[[0,1,["H3605"]],[1,3,["H6588"]],[3,4,["H834"]],[4,7,["H6213"]],[7,10,["H3808"]],[10,12,["H2142"]],[12,17,["H6666"]],[17,18,["H834"]],[18,21,["H6213"]],[21,24,["H2421"]]]},{"k":20872,"v":[[0,6,["H2654","H2654"]],[6,9,["H7563"]],[9,11,["H4194"]],[11,12,["H5002"]],[12,14,["H136"]],[14,15,["H3069"]],[15,17,["H3808"]],[17,21,["H7725"]],[21,24,["H4480","H1870"]],[24,26,["H2421"]]]},{"k":20873,"v":[[0,4,["H6662"]],[4,6,["H7725"]],[6,9,["H4480","H6666"]],[9,11,["H6213"]],[11,12,["H5766"]],[12,14,["H6213"]],[14,17,["H3605"]],[17,19,["H8441"]],[19,20,["H834"]],[20,22,["H7563"]],[22,24,["H6213"]],[24,27,["H2421"]],[27,28,["H3605"]],[28,30,["H6666"]],[30,31,["H834"]],[31,34,["H6213"]],[34,36,["H3808"]],[36,38,["H2142"]],[38,41,["H4604"]],[41,42,["H834"]],[42,45,["H4603"]],[45,49,["H2403"]],[49,50,["H834"]],[50,53,["H2398"]],[53,58,["H4191"]]]},{"k":20874,"v":[[0,3,["H559"]],[3,5,["H1870"]],[5,8,["H136"]],[8,11,["H8505","H3808"]],[11,12,["H8085"]],[12,13,["H4994"]],[13,15,["H1004"]],[15,17,["H3478"]],[17,19,["H3808"]],[19,21,["H1870"]],[21,22,["H8505"]],[22,24,["H3808"]],[24,26,["H1870"]],[26,27,["H3808","H8505"]]]},{"k":20875,"v":[[0,3,["H6662"]],[3,6,["H7725"]],[6,9,["H4480","H6666"]],[9,11,["H6213"]],[11,12,["H5766"]],[12,14,["H4191"]],[14,15,["H5921"]],[15,19,["H5766"]],[19,20,["H834"]],[20,23,["H6213"]],[23,26,["H4191"]]]},{"k":20876,"v":[[0,4,["H7563"]],[4,7,["H7725"]],[7,10,["H4480","H7564"]],[10,11,["H834"]],[11,14,["H6213"]],[14,16,["H6213"]],[16,20,["H4941"]],[20,22,["H6666"]],[22,23,["H1931"]],[23,28,["H2421","(H853)","H5315"]]]},{"k":20877,"v":[[0,3,["H7200"]],[3,6,["H7725"]],[6,8,["H4480","H3605"]],[8,10,["H6588"]],[10,11,["H834"]],[11,14,["H6213"]],[14,18,["H2421","H2421"]],[18,21,["H3808"]],[21,22,["H4191"]]]},{"k":20878,"v":[[0,2,["H559"]],[2,4,["H1004"]],[4,6,["H3478"]],[6,8,["H1870"]],[8,11,["H136"]],[11,14,["H8505","H3808"]],[14,16,["H1004"]],[16,18,["H3478"]],[18,20,["H3808"]],[20,22,["H1870"]],[22,23,["H8505"]],[23,25,["H3808"]],[25,27,["H1870"]],[27,28,["H3808","H8505"]]]},{"k":20879,"v":[[0,1,["H3651"]],[1,4,["H8199"]],[4,7,["H1004"]],[7,9,["H3478"]],[9,11,["H376"]],[11,15,["H1870"]],[15,16,["H5002"]],[16,18,["H136"]],[18,19,["H3069"]],[19,20,["H7725"]],[20,22,["H7725"]],[22,25,["H4480","H3605"]],[25,27,["H6588"]],[27,29,["H5771"]],[29,31,["H3808"]],[31,32,["H1961"]],[32,34,["H4383"]]]},{"k":20880,"v":[[0,2,["H7993"]],[2,3,["H4480","H5921"]],[3,4,["(H853)"]],[4,5,["H3605"]],[5,7,["H6588"]],[7,8,["H834"]],[8,11,["H6586"]],[11,13,["H6213"]],[13,16,["H2319"]],[16,17,["H3820"]],[17,20,["H2319"]],[20,21,["H7307"]],[21,23,["H4100"]],[23,26,["H4191"]],[26,28,["H1004"]],[28,30,["H3478"]]]},{"k":20881,"v":[[0,1,["H3588"]],[1,5,["H2654","H3808"]],[5,8,["H4194"]],[8,12,["H4191"]],[12,13,["H5002"]],[13,15,["H136"]],[15,16,["H3069"]],[16,18,["H7725"]],[18,21,["H2421"]],[21,22,[]]]},{"k":20882,"v":[[0,4,["H859","H5375"]],[4,6,["H7015"]],[6,7,["H413"]],[7,9,["H5387"]],[9,11,["H3478"]]]},{"k":20883,"v":[[0,2,["H559"]],[2,3,["H4100"]],[3,6,["H517"]],[6,8,["H3833"]],[8,11,["H7257"]],[11,12,["H996"]],[12,13,["H738"]],[13,15,["H7235"]],[15,17,["H1482"]],[17,18,["H8432"]],[18,20,["H3715"]]]},{"k":20884,"v":[[0,4,["H5927"]],[4,5,["H259"]],[5,8,["H4480","H1482"]],[8,10,["H1961"]],[10,13,["H3715"]],[13,16,["H3925"]],[16,18,["H2963"]],[18,20,["H2964"]],[20,22,["H398"]],[22,23,["H120"]]]},{"k":20885,"v":[[0,2,["H1471"]],[2,4,["H8085"]],[4,5,["H413"]],[5,9,["H8610"]],[9,12,["H7845"]],[12,15,["H935"]],[15,18,["H2397"]],[18,19,["H413"]],[19,21,["H776"]],[21,23,["H4714"]]]},{"k":20886,"v":[[0,4,["H7200"]],[4,5,["H3588"]],[5,8,["H3176"]],[8,11,["H8615"]],[11,13,["H6"]],[13,16,["H3947"]],[16,17,["H259"]],[17,20,["H4480","H1482"]],[20,22,["H7760"]],[22,26,["H3715"]]]},{"k":20887,"v":[[0,6,["H1980"]],[6,7,["H8432"]],[7,9,["H738"]],[9,11,["H1961"]],[11,14,["H3715"]],[14,16,["H3925"]],[16,18,["H2963"]],[18,20,["H2964"]],[20,22,["H398"]],[22,23,["H120"]]]},{"k":20888,"v":[[0,3,["H3045"]],[3,6,["H759"]],[6,10,["H2717"]],[10,12,["H5892"]],[12,15,["H776"]],[15,17,["H3456"]],[17,20,["H4393"]],[20,24,["H4480","H6963"]],[24,27,["H7581"]]]},{"k":20889,"v":[[0,3,["H1471"]],[3,4,["H5414"]],[4,5,["H5921"]],[5,9,["H5439"]],[9,12,["H4480","H4082"]],[12,14,["H6566"]],[14,16,["H7568"]],[16,17,["H5921"]],[17,21,["H8610"]],[21,24,["H7845"]]]},{"k":20890,"v":[[0,3,["H5414"]],[3,6,["H5474"]],[6,8,["H2397"]],[8,10,["H935"]],[10,12,["H413"]],[12,14,["H4428"]],[14,16,["H894"]],[16,18,["H935"]],[18,21,["H4679"]],[21,22,["H4616"]],[22,24,["H6963"]],[24,26,["H3808"]],[26,27,["H5750"]],[27,29,["H8085"]],[29,30,["H413"]],[30,32,["H2022"]],[32,34,["H3478"]]]},{"k":20891,"v":[[0,2,["H517"]],[2,6,["H1612"]],[6,9,["H1818"]],[9,10,["H8362"]],[10,11,["H5921"]],[11,13,["H4325"]],[13,15,["H1961"]],[15,16,["H6509"]],[16,20,["H6058"]],[20,24,["H7227"]],[24,25,["H4480","H4325"]]]},{"k":20892,"v":[[0,3,["H1961"]],[3,4,["H5797"]],[4,5,["H4294"]],[5,6,["H413"]],[6,8,["H7626"]],[8,13,["H4910"]],[13,16,["H6967"]],[16,18,["H1361"]],[18,19,["H5921","H996"]],[19,22,["H5688"]],[22,25,["H7200"]],[25,28,["H1363"]],[28,31,["H7230"]],[31,34,["H1808"]]]},{"k":20893,"v":[[0,5,["H5428"]],[5,7,["H2534"]],[7,11,["H7993"]],[11,14,["H776"]],[14,17,["H6921"]],[17,18,["H7307"]],[18,20,["H3001"]],[20,22,["H6529"]],[22,24,["H5797"]],[24,25,["H4294"]],[25,27,["H6561"]],[27,29,["H3001"]],[29,31,["H784"]],[31,32,["H398"]],[32,33,[]]]},{"k":20894,"v":[[0,2,["H6258"]],[2,5,["H8362"]],[5,8,["H4057"]],[8,11,["H6723"]],[11,13,["H6772"]],[13,14,["H776"]]]},{"k":20895,"v":[[0,2,["H784"]],[2,5,["H3318"]],[5,8,["H4480","H4294"]],[8,11,["H905"]],[11,14,["H398"]],[14,16,["H6529"]],[16,20,["H1961"]],[20,21,["H3808"]],[21,22,["H5797"]],[22,23,["H4294"]],[23,27,["H7626"]],[27,29,["H4910"]],[29,30,["H1931"]],[30,33,["H7015"]],[33,36,["H1961"]],[36,39,["H7015"]]]},{"k":20896,"v":[[0,5,["H1961"]],[5,8,["H7637"]],[8,9,["H8141"]],[9,12,["H2549"]],[12,15,["H6218"]],[15,19,["H2320"]],[19,21,["H376"]],[21,24,["H4480","H2205"]],[24,26,["H3478"]],[26,27,["H935"]],[27,29,["H1875","(H853)"]],[29,32,["H3068"]],[32,34,["H3427"]],[34,35,["H6440"]],[35,36,[]]]},{"k":20897,"v":[[0,2,["H1961"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20898,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H1696","(H853)"]],[4,7,["H2205"]],[7,9,["H3478"]],[9,11,["H559"]],[11,12,["H413"]],[12,14,["H3541"]],[14,15,["H559"]],[15,17,["H136"]],[17,18,["H3069"]],[18,20,["H859"]],[20,21,["H935"]],[21,23,["H1875"]],[23,27,["H589"]],[27,28,["H2416"]],[28,29,["H5002"]],[29,31,["H136"]],[31,32,["H3069"]],[32,35,["H518"]],[35,37,["H1875"]],[37,40,[]]]},{"k":20899,"v":[[0,3,["H8199"]],[3,5,["H1121"]],[5,7,["H120"]],[7,10,["H8199"]],[10,15,["H3045","(H853)"]],[15,17,["H8441"]],[17,20,["H1"]]]},{"k":20900,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H3541"]],[5,6,["H559"]],[6,8,["H136"]],[8,9,["H3069"]],[9,12,["H3117"]],[12,15,["H977"]],[15,16,["H3478"]],[16,19,["H5375"]],[19,21,["H3027"]],[21,24,["H2233"]],[24,27,["H1004"]],[27,29,["H3290"]],[29,33,["H3045"]],[33,38,["H776"]],[38,40,["H4714"]],[40,44,["H5375"]],[44,46,["H3027"]],[46,49,["H559"]],[49,50,["H589"]],[50,53,["H3068"]],[53,55,["H430"]]]},{"k":20901,"v":[[0,3,["H3117"]],[3,7,["H5375"]],[7,9,["H3027"]],[9,15,["H3318"]],[15,18,["H4480","H776"]],[18,20,["H4714"]],[20,21,["H413"]],[21,23,["H776"]],[23,24,["H834"]],[24,27,["H8446"]],[27,30,["H2100"]],[30,32,["H2461"]],[32,34,["H1706"]],[34,35,["H1931"]],[35,38,["H6643"]],[38,40,["H3605"]],[40,41,["H776"]]]},{"k":20902,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,8,["H7993"]],[8,10,["H376"]],[10,12,["H8251"]],[12,15,["H5869"]],[15,19,["H2930","H408"]],[19,22,["H1544"]],[22,24,["H4714"]],[24,25,["H589"]],[25,28,["H3068"]],[28,30,["H430"]]]},{"k":20903,"v":[[0,3,["H4784"]],[3,7,["H14"]],[7,8,["H3808"]],[8,9,["H8085"]],[9,10,["H413"]],[10,14,["H3808"]],[14,16,["H376"]],[16,18,["H7993","(H853)"]],[18,20,["H8251"]],[20,23,["H5869"]],[23,24,["H3808"]],[24,27,["H5800"]],[27,29,["H1544"]],[29,31,["H4714"]],[31,34,["H559"]],[34,38,["H8210"]],[38,40,["H2534"]],[40,41,["H5921"]],[41,44,["H3615"]],[44,46,["H639"]],[46,51,["H8432"]],[51,54,["H776"]],[54,56,["H4714"]]]},{"k":20904,"v":[[0,3,["H6213"]],[3,7,["H4616","H8034"]],[7,11,["H1115"]],[11,13,["H2490"]],[13,14,["H5869"]],[14,16,["H1471"]],[16,17,["H8432"]],[17,18,["H834"]],[18,19,["H1992"]],[19,22,["H834"]],[22,23,["H5869"]],[23,27,["H3045"]],[27,28,["H413"]],[28,33,["H3318"]],[33,37,["H4480","H776"]],[37,39,["H4714"]]]},{"k":20905,"v":[[0,7,["H3318"]],[7,11,["H4480","H776"]],[11,13,["H4714"]],[13,15,["H935"]],[15,17,["H413"]],[17,19,["H4057"]]]},{"k":20906,"v":[[0,3,["H5414"]],[3,4,["(H853)"]],[4,6,["H2708"]],[6,8,["H3045"]],[8,11,["H4941"]],[11,12,["H834"]],[12,15,["H120"]],[15,16,["H6213","(H853)"]],[16,20,["H2421"]],[20,22,[]]]},{"k":20907,"v":[[0,2,["H1571"]],[2,4,["H5414"]],[4,5,["(H853)"]],[5,7,["H7676"]],[7,9,["H1961"]],[9,11,["H226"]],[11,12,["H996"]],[12,19,["H3045"]],[19,20,["H3588"]],[20,21,["H589"]],[21,24,["H3068"]],[24,26,["H6942"]],[26,27,[]]]},{"k":20908,"v":[[0,3,["H1004"]],[3,5,["H3478"]],[5,6,["H4784"]],[6,11,["H4057"]],[11,13,["H1980"]],[13,14,["H3808"]],[14,17,["H2708"]],[17,20,["H3988"]],[20,22,["H4941"]],[22,23,["H834"]],[23,26,["H120"]],[26,27,["H6213","(H853)"]],[27,31,["H2421"]],[31,36,["H7676"]],[36,38,["H3966"]],[38,39,["H2490"]],[39,42,["H559"]],[42,46,["H8210"]],[46,48,["H2534"]],[48,49,["H5921"]],[49,53,["H4057"]],[53,55,["H3615"]],[55,56,[]]]},{"k":20909,"v":[[0,3,["H6213"]],[3,7,["H4616","H8034"]],[7,11,["H1115"]],[11,13,["H2490"]],[13,14,["H5869"]],[14,16,["H1471"]],[16,18,["H834"]],[18,19,["H5869"]],[19,23,["H3318"]]]},{"k":20910,"v":[[0,2,["H1571"]],[2,3,["H589"]],[3,5,["H5375"]],[5,7,["H3027"]],[7,12,["H4057"]],[12,16,["H1115"]],[16,17,["H935"]],[17,19,["H413"]],[19,21,["H776"]],[21,22,["H834"]],[22,25,["H5414"]],[25,27,["H2100"]],[27,29,["H2461"]],[29,31,["H1706"]],[31,32,["H1931"]],[32,35,["H6643"]],[35,37,["H3605"]],[37,38,["H776"]]]},{"k":20911,"v":[[0,1,["H3282"]],[1,3,["H3988"]],[3,5,["H4941"]],[5,7,["H1980"]],[7,8,["H3808"]],[8,11,["H2708"]],[11,13,["H2490"]],[13,15,["H7676"]],[15,16,["H3588"]],[16,18,["H3820"]],[18,19,["H1980"]],[19,20,["H310"]],[20,22,["H1544"]]]},{"k":20912,"v":[[0,3,["H5869"]],[3,4,["H2347","H5921"]],[4,7,["H4480","H7843"]],[7,9,["H3808"]],[9,12,["H6213"]],[12,14,["H3617"]],[14,19,["H4057"]]]},{"k":20913,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,9,["H4057"]],[9,10,["H1980"]],[10,12,["H408"]],[12,15,["H2706"]],[15,18,["H1"]],[18,19,["H408"]],[19,20,["H8104"]],[20,22,["H4941"]],[22,23,["H408"]],[23,25,["H2930"]],[25,28,["H1544"]]]},{"k":20914,"v":[[0,1,["H589"]],[1,4,["H3068"]],[4,6,["H430"]],[6,7,["H1980"]],[7,10,["H2708"]],[10,12,["H8104"]],[12,14,["H4941"]],[14,16,["H6213"]],[16,17,[]]]},{"k":20915,"v":[[0,2,["H6942"]],[2,4,["H7676"]],[4,8,["H1961"]],[8,10,["H226"]],[10,11,["H996"]],[11,18,["H3045"]],[18,19,["H3588"]],[19,20,["H589"]],[20,23,["H3068"]],[23,25,["H430"]]]},{"k":20916,"v":[[0,3,["H1121"]],[3,4,["H4784"]],[4,8,["H1980"]],[8,9,["H3808"]],[9,12,["H2708"]],[12,13,["H3808"]],[13,14,["H8104"]],[14,16,["H4941"]],[16,18,["H6213"]],[18,20,["H834"]],[20,23,["H120"]],[23,24,["H6213","(H853)"]],[24,28,["H2421"]],[28,32,["H2490","(H853)"]],[32,34,["H7676"]],[34,37,["H559"]],[37,41,["H8210"]],[41,43,["H2534"]],[43,44,["H5921"]],[44,47,["H3615"]],[47,49,["H639"]],[49,54,["H4057"]]]},{"k":20917,"v":[[0,3,["H7725","(H853)"]],[3,5,["H3027"]],[5,7,["H6213"]],[7,11,["H4616","H8034"]],[11,15,["H1115"]],[15,17,["H2490"]],[17,20,["H5869"]],[20,23,["H1471"]],[23,25,["H834"]],[25,26,["H5869"]],[26,30,["H3318","(H853)"]]]},{"k":20918,"v":[[0,1,["H589"]],[1,3,["H5375","(H853)"]],[3,5,["H3027"]],[5,8,["H1571"]],[8,11,["H4057"]],[11,15,["H6327"]],[15,19,["H1471"]],[19,21,["H2219"]],[21,25,["H776"]]]},{"k":20919,"v":[[0,1,["H3282"]],[1,4,["H3808"]],[4,5,["H6213"]],[5,7,["H4941"]],[7,10,["H3988"]],[10,12,["H2708"]],[12,15,["H2490"]],[15,17,["H7676"]],[17,20,["H5869"]],[20,21,["H1961"]],[21,22,["H310"]],[22,24,["H1"]],[24,25,["H1544"]]]},{"k":20920,"v":[[0,2,["H589"]],[2,3,["H5414"]],[3,5,["H1571"]],[5,6,["H2706"]],[6,9,["H3808"]],[9,10,["H2896"]],[10,12,["H4941"]],[12,16,["H3808"]],[16,17,["H2421"]]]},{"k":20921,"v":[[0,3,["H2930"]],[3,8,["H4979"]],[8,15,["H5674"]],[15,18,["H3605"]],[18,20,["H6363"]],[20,22,["H7356"]],[22,23,["H4616"]],[23,28,["H8074"]],[28,31,["H4616"]],[31,32,["H834"]],[32,35,["H3045"]],[35,36,["H834"]],[36,37,["H589"]],[37,40,["H3068"]]]},{"k":20922,"v":[[0,1,["H3651"]],[1,2,["H1121"]],[2,4,["H120"]],[4,5,["H1696"]],[5,6,["H413"]],[6,8,["H1004"]],[8,10,["H3478"]],[10,12,["H559"]],[12,13,["H413"]],[13,15,["H3541"]],[15,16,["H559"]],[16,18,["H136"]],[18,19,["H3069"]],[19,20,["H5750"]],[20,22,["H2063"]],[22,24,["H1"]],[24,26,["H1442"]],[26,32,["H4603"]],[32,34,["H4604"]],[34,36,[]]]},{"k":20923,"v":[[0,5,["H935"]],[5,7,["H413"]],[7,9,["H776"]],[9,12,["H834"]],[12,15,["H5375","(H853)"]],[15,17,["H3027"]],[17,19,["H5414"]],[19,25,["H7200"]],[25,26,["H3605"]],[26,27,["H7311"]],[27,28,["H1389"]],[28,30,["H3605"]],[30,32,["H5687"]],[32,33,["H6086"]],[33,36,["H2076"]],[36,37,["H8033","(H853)"]],[37,39,["H2077"]],[39,41,["H8033"]],[41,43,["H5414"]],[43,45,["H3708"]],[45,48,["H7133"]],[48,49,["H8033"]],[49,52,["H7760"]],[52,54,["H5207"]],[54,55,["H7381"]],[55,58,["H5258"]],[58,59,["H8033","(H853)"]],[59,62,["H5262"]]]},{"k":20924,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H4100"]],[6,10,["H1116"]],[10,11,["H834","H8033"]],[11,12,["H859"]],[12,13,["H935"]],[13,16,["H8034"]],[16,19,["H7121"]],[19,20,["H1117"]],[20,21,["H5704"]],[21,22,["H2088"]],[22,23,["H3117"]]]},{"k":20925,"v":[[0,1,["H3651"]],[1,2,["H559"]],[2,3,["H413"]],[3,5,["H1004"]],[5,7,["H3478"]],[7,8,["H3541"]],[8,9,["H559"]],[9,11,["H136"]],[11,12,["H3069"]],[12,14,["H859"]],[14,15,["H2930"]],[15,18,["H1870"]],[18,21,["H1"]],[21,25,["H2181","H859"]],[25,26,["H310"]],[26,28,["H8251"]]]},{"k":20926,"v":[[0,4,["H5375"]],[4,6,["H4979"]],[6,11,["H1121"]],[11,13,["H5674"]],[13,16,["H784"]],[16,17,["H859"]],[17,19,["H2930"]],[19,21,["H3605"]],[21,23,["H1544"]],[23,25,["H5704"]],[25,27,["H3117"]],[27,30,["H589"]],[30,33,["H1875"]],[33,37,["H1004"]],[37,39,["H3478"]],[39,41,["H589"]],[41,42,["H2416"]],[42,43,["H5002"]],[43,45,["H136"]],[45,46,["H3069"]],[46,49,["H518"]],[49,52,["H1875"]],[52,54,[]]]},{"k":20927,"v":[[0,4,["H5927"]],[4,5,["H5921"]],[5,7,["H7307"]],[7,9,["H3808"]],[9,12,["H1961","H1961"]],[12,13,["H834"]],[13,14,["H859"]],[14,15,["H559"]],[15,18,["H1961"]],[18,21,["H1471"]],[21,24,["H4940"]],[24,27,["H776"]],[27,29,["H8334"]],[29,30,["H6086"]],[30,32,["H68"]]]},{"k":20928,"v":[[0,2,["H589"]],[2,3,["H2416"]],[3,4,["H5002"]],[4,6,["H136"]],[6,7,["H3069"]],[7,8,["H518","H3808"]],[8,11,["H2389"]],[11,12,["H3027"]],[12,17,["H5186"]],[17,18,["H2220"]],[18,21,["H2534"]],[21,23,["H8210"]],[23,26,["H4427"]],[26,27,["H5921"]],[27,28,[]]]},{"k":20929,"v":[[0,6,["H3318","(H853)"]],[6,7,["H4480"]],[7,9,["H5971"]],[9,12,["H6908"]],[12,15,["H4480"]],[15,17,["H776"]],[17,18,["H834"]],[18,21,["H6327"]],[21,24,["H2389"]],[24,25,["H3027"]],[25,30,["H5186"]],[30,31,["H2220"]],[31,34,["H2534"]],[34,36,["H8210"]]]},{"k":20930,"v":[[0,4,["H935"]],[4,6,["H413"]],[6,8,["H4057"]],[8,11,["H5971"]],[11,13,["H8033"]],[13,16,["H8199"]],[16,17,["H854"]],[17,19,["H6440"]],[19,20,["H413"]],[20,21,["H6440"]]]},{"k":20931,"v":[[0,2,["H834"]],[2,4,["H8199"]],[4,5,["H854"]],[5,7,["H1"]],[7,10,["H4057"]],[10,13,["H776"]],[13,15,["H4714"]],[15,16,["H3651"]],[16,19,["H8199"]],[19,20,["H854"]],[20,22,["H5002"]],[22,24,["H136"]],[24,25,["H3069"]]]},{"k":20932,"v":[[0,7,["H5674"]],[7,8,["H8478"]],[8,10,["H7626"]],[10,14,["H935"]],[14,18,["H4562"]],[18,21,["H1285"]]]},{"k":20933,"v":[[0,5,["H1305"]],[5,6,["H4480"]],[6,10,["H4775"]],[10,14,["H6586"]],[14,21,["H3318","(H853)"]],[21,25,["H4480","H776"]],[25,28,["H4033"]],[28,32,["H3808"]],[32,33,["H935"]],[33,34,["H413"]],[34,36,["H127"]],[36,38,["H3478"]],[38,42,["H3045"]],[42,43,["H3588"]],[43,44,["H589"]],[44,47,["H3068"]]]},{"k":20934,"v":[[0,3,["H859"]],[3,5,["H1004"]],[5,7,["H3478"]],[7,8,["H3541"]],[8,9,["H559"]],[9,11,["H136"]],[11,12,["H3069"]],[12,13,["H1980"]],[13,15,["H5647"]],[15,18,["H376"]],[18,20,["H1544"]],[20,22,["H310"]],[22,24,["H518"]],[24,27,["H369"]],[27,28,["H8085"]],[28,29,["H413"]],[29,32,["H2490"]],[32,35,["H6944"]],[35,36,["H8034"]],[36,37,["H3808"]],[37,38,["H5750"]],[38,41,["H4979"]],[41,45,["H1544"]]]},{"k":20935,"v":[[0,1,["H3588"]],[1,4,["H6944"]],[4,5,["H2022"]],[5,8,["H2022"]],[8,11,["H4791"]],[11,13,["H3478"]],[13,14,["H5002"]],[14,16,["H136"]],[16,17,["H3069"]],[17,18,["H8033"]],[18,20,["H3605"]],[20,22,["H1004"]],[22,24,["H3478"]],[24,25,["H3605"]],[25,30,["H776"]],[30,31,["H5647"]],[31,33,["H8033"]],[33,36,["H7521"]],[36,39,["H8033"]],[39,42,["H1875","(H853)"]],[42,44,["H8641"]],[44,47,["H7225"]],[47,50,["H4864"]],[50,52,["H3605"]],[52,55,["H6944"]]]},{"k":20936,"v":[[0,3,["H7521"]],[3,7,["H5207"]],[7,8,["H7381"]],[8,13,["H3318","(H853)"]],[13,14,["H4480"]],[14,16,["H5971"]],[16,18,["H6908"]],[18,21,["H4480"]],[21,23,["H776"]],[23,24,["H834"]],[24,28,["H6327"]],[28,33,["H6942"]],[33,36,["H5869"]],[36,38,["H1471"]]]},{"k":20937,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,13,["H935"]],[13,15,["H413"]],[15,17,["H127"]],[17,19,["H3478"]],[19,20,["H413"]],[20,22,["H776"]],[22,25,["H834"]],[25,28,["H5375","(H853)"]],[28,30,["H3027"]],[30,32,["H5414"]],[32,36,["H1"]]]},{"k":20938,"v":[[0,2,["H8033"]],[2,5,["H2142","(H853)"]],[5,7,["H1870"]],[7,9,["H3605"]],[9,11,["H5949"]],[11,12,["H834"]],[12,16,["H2930"]],[16,21,["H6962"]],[21,25,["H6440"]],[25,27,["H3605"]],[27,29,["H7451"]],[29,30,["H834"]],[30,33,["H6213"]]]},{"k":20939,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,13,["H6213"]],[13,14,["H854"]],[14,19,["H4616","H8034"]],[19,20,["H3808"]],[20,24,["H7451"]],[24,25,["H1870"]],[25,30,["H7843"]],[30,31,["H5949"]],[31,34,["H1004"]],[34,36,["H3478"]],[36,37,["H5002"]],[37,39,["H136"]],[39,40,["H3069"]]]},{"k":20940,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20941,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H7760"]],[4,6,["H6440"]],[6,7,["H1870"]],[7,9,["H8486"]],[9,11,["H5197"]],[11,14,["H413"]],[14,16,["H1864"]],[16,18,["H5012"]],[18,19,["H413"]],[19,21,["H3293"]],[21,24,["H5045"]],[24,25,["H7704"]]]},{"k":20942,"v":[[0,2,["H559"]],[2,5,["H3293"]],[5,8,["H5045"]],[8,9,["H8085"]],[9,11,["H1697"]],[11,14,["H3068"]],[14,15,["H3541"]],[15,16,["H559"]],[16,18,["H136"]],[18,19,["H3069"]],[19,20,["H2009"]],[20,23,["H3341"]],[23,25,["H784"]],[25,31,["H398"]],[31,32,["H3605"]],[32,33,["H3892"]],[33,34,["H6086"]],[34,38,["H3605"]],[38,39,["H3002"]],[39,40,["H6086"]],[40,42,["H3852"]],[42,43,["H7957"]],[43,45,["H3808"]],[45,47,["H3518"]],[47,49,["H3605"]],[49,50,["H6440"]],[50,53,["H4480","H5045"]],[53,56,["H6828"]],[56,59,["H6866"]],[59,60,[]]]},{"k":20943,"v":[[0,2,["H3605"]],[2,3,["H1320"]],[3,5,["H7200"]],[5,6,["H3588"]],[6,7,["H589"]],[7,9,["H3068"]],[9,11,["H1197"]],[11,15,["H3808"]],[15,17,["H3518"]]]},{"k":20944,"v":[[0,2,["H559"]],[2,4,["H162"]],[4,5,["H136"]],[5,6,["H3069"]],[6,7,["H1992"]],[7,8,["H559"]],[8,12,["H1931"]],[12,13,["H3808"]],[13,14,["H4911"]],[14,15,["H4912"]]]},{"k":20945,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20946,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H7760"]],[4,6,["H6440"]],[6,7,["H413"]],[7,8,["H3389"]],[8,10,["H5197"]],[10,13,["H413"]],[13,16,["H4720"]],[16,18,["H5012"]],[18,19,["H413"]],[19,21,["H127"]],[21,23,["H3478"]]]},{"k":20947,"v":[[0,2,["H559"]],[2,5,["H127"]],[5,7,["H3478"]],[7,8,["H3541"]],[8,9,["H559"]],[9,11,["H3068"]],[11,12,["H2009"]],[12,15,["H413"]],[15,20,["H3318"]],[20,22,["H2719"]],[22,26,["H4480","H8593"]],[26,30,["H3772"]],[30,31,["H4480"]],[31,34,["H6662"]],[34,37,["H7563"]]]},{"k":20948,"v":[[0,2,["H3282"]],[2,3,["H834"]],[3,7,["H3772"]],[7,8,["H4480"]],[8,11,["H6662"]],[11,14,["H7563"]],[14,15,["H3651"]],[15,18,["H2719"]],[18,20,["H3318"]],[20,24,["H4480","H8593"]],[24,25,["H413"]],[25,26,["H3605"]],[26,27,["H1320"]],[27,30,["H4480","H5045"]],[30,33,["H6828"]]]},{"k":20949,"v":[[0,2,["H3605"]],[2,3,["H1320"]],[3,5,["H3045"]],[5,6,["H3588"]],[6,7,["H589"]],[7,9,["H3068"]],[9,12,["H3318"]],[12,14,["H2719"]],[14,18,["H4480","H8593"]],[18,21,["H3808"]],[21,22,["H7725"]],[22,24,["H5750"]]]},{"k":20950,"v":[[0,1,["H584"]],[1,3,["H859"]],[3,4,["H1121"]],[4,6,["H120"]],[6,9,["H7670"]],[9,12,["H4975"]],[12,15,["H4814"]],[15,16,["H584"]],[16,19,["H5869"]]]},{"k":20951,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,7,["H559"]],[7,8,["H413"]],[8,10,["H5921","H4100"]],[10,11,["H584"]],[11,12,["H859"]],[12,16,["H559"]],[16,17,["H413"]],[17,19,["H8052"]],[19,20,["H3588"]],[20,22,["H935"]],[22,24,["H3605"]],[24,25,["H3820"]],[25,27,["H4549"]],[27,29,["H3605"]],[29,30,["H3027"]],[30,33,["H7503"]],[33,35,["H3605"]],[35,36,["H7307"]],[36,38,["H3543"]],[38,40,["H3605"]],[40,41,["H1290"]],[41,44,["H1980"]],[44,46,["H4325"]],[46,47,["H2009"]],[47,49,["H935"]],[49,55,["H1961"]],[55,56,["H5002"]],[56,58,["H136"]],[58,59,["H3069"]]]},{"k":20952,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20953,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H5012"]],[4,6,["H559"]],[6,7,["H3541"]],[7,8,["H559"]],[8,10,["H136"]],[10,11,["H559"]],[11,13,["H2719"]],[13,15,["H2719"]],[15,17,["H2300"]],[17,19,["H1571"]],[19,20,["H4803"]]]},{"k":20954,"v":[[0,3,["H2300"]],[3,4,["H4616"]],[4,8,["H2873","H2874"]],[8,11,["H4803"]],[11,12,["H4616"]],[12,15,["H1961","H1300"]],[15,18,["H176"]],[18,20,["H7797"]],[20,22,["H3988"]],[22,24,["H7626"]],[24,27,["H1121"]],[27,29,["H3605"]],[29,30,["H6086"]]]},{"k":20955,"v":[[0,4,["H5414"]],[4,8,["H4803"]],[8,13,["H8610","H3709"]],[13,14,["H1931"]],[14,15,["H2719"]],[15,17,["H2300"]],[17,19,["H1931"]],[19,21,["H4803"]],[21,23,["H5414"]],[23,27,["H3027"]],[27,30,["H2026"]]]},{"k":20956,"v":[[0,1,["H2199"]],[1,3,["H3213"]],[3,4,["H1121"]],[4,6,["H120"]],[6,7,["H3588"]],[7,8,["H1931"]],[8,10,["H1961"]],[10,13,["H5971"]],[13,14,["H1931"]],[14,18,["H3605"]],[18,20,["H5387"]],[20,22,["H3478"]],[22,23,["H4048"]],[23,26,["H413"]],[26,28,["H2719"]],[28,30,["H1961"]],[30,31,["H854"]],[31,33,["H5971"]],[33,34,["H5606"]],[34,35,["H3651"]],[35,36,["H413"]],[36,38,["H3409"]]]},{"k":20957,"v":[[0,1,["H3588"]],[1,5,["H974"]],[5,7,["H4100"]],[7,8,["H518"]],[8,11,["H3988"]],[11,12,["H1571"]],[12,14,["H7626"]],[14,17,["H1961"]],[17,18,["H3808"]],[18,20,["H5002"]],[20,22,["H136"]],[22,23,["H3069"]]]},{"k":20958,"v":[[0,1,["H859"]],[1,3,["H1121"]],[3,5,["H120"]],[5,6,["H5012"]],[6,11,["H5221","H3709","H413","H3709"]],[11,15,["H2719"]],[15,17,["H3717"]],[17,20,["H7992"]],[20,22,["H2719"]],[22,25,["H2491"]],[25,26,["H1931"]],[26,29,["H2719"]],[29,32,["H1419"]],[32,36,["H2491"]],[36,42,["H2314"]]]},{"k":20959,"v":[[0,3,["H5414"]],[3,5,["H19"]],[5,8,["H2719"]],[8,9,["H5921"]],[9,10,["H3605"]],[10,12,["H8179"]],[12,13,["H4616"]],[13,15,["H3820"]],[15,17,["H4127"]],[17,20,["H4383"]],[20,22,["H7235"]],[22,23,["H253"]],[23,27,["H6213","H1300"]],[27,31,["H4593"]],[31,34,["H2874"]]]},{"k":20960,"v":[[0,6,["H258"]],[6,11,["H3231"]],[11,15,["H8041"]],[15,16,["H575"]],[16,18,["H6440"]],[18,20,["H3259"]]]},{"k":20961,"v":[[0,1,["H589"]],[1,3,["H1571"]],[3,4,["H5221"]],[4,7,["H3709","H413","H3709"]],[7,13,["H2534"]],[13,15,["H5117"]],[15,16,["H589"]],[16,18,["H3068"]],[18,20,["H1696"]],[20,21,[]]]},{"k":20962,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,7,["H413"]],[7,10,["H559"]]]},{"k":20963,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H7760"]],[6,8,["H8147"]],[8,9,["H1870"]],[9,12,["H2719"]],[12,15,["H4428"]],[15,17,["H894"]],[17,19,["H935"]],[19,21,["H8147"]],[21,24,["H3318"]],[24,28,["H4480","H776","H259"]],[28,30,["H1254"]],[30,33,["H3027"]],[33,34,["H1254"]],[34,38,["H7218"]],[38,41,["H1870"]],[41,44,["H5892"]]]},{"k":20964,"v":[[0,1,["H7760"]],[1,3,["H1870"]],[3,6,["H2719"]],[6,8,["H935"]],[8,9,["H854"]],[9,10,["H7237"]],[10,13,["H1121","H5983"]],[13,15,["H854"]],[15,16,["H3063"]],[16,18,["H3389"]],[18,20,["H1219"]]]},{"k":20965,"v":[[0,1,["H3588"]],[1,3,["H4428"]],[3,5,["H894"]],[5,6,["H5975"]],[6,7,["H413"]],[7,9,["H517"]],[9,12,["H1870"]],[12,15,["H7218"]],[15,18,["H8147"]],[18,19,["H1870"]],[19,21,["H7080"]],[21,22,["H7081"]],[22,27,["H7043","H2671"]],[27,29,["H7592"]],[29,31,["H8655"]],[31,33,["H7200"]],[33,36,["H3516"]]]},{"k":20966,"v":[[0,4,["H3225"]],[4,5,["H1961"]],[5,7,["H7081"]],[7,9,["H3389"]],[9,11,["H7760"]],[11,12,["H3733"]],[12,14,["H6605"]],[14,16,["H6310"]],[16,19,["H7524"]],[19,22,["H7311"]],[22,24,["H6963"]],[24,26,["H8643"]],[26,28,["H7760"]],[28,30,["H3733"]],[30,31,["H5921"]],[31,33,["H8179"]],[33,35,["H8210"]],[35,37,["H5550"]],[37,40,["H1129"]],[40,42,["H1785"]]]},{"k":20967,"v":[[0,4,["H1961"]],[4,9,["H7723"]],[9,10,["H7080"]],[10,13,["H5869"]],[13,18,["H7650"]],[18,19,["H7621"]],[19,21,["H1931"]],[21,25,["H2142"]],[25,27,["H5771"]],[27,32,["H8610"]]]},{"k":20968,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H3282"]],[7,12,["H5771"]],[12,15,["H2142"]],[15,19,["H6588"]],[19,21,["H1540"]],[21,25,["H3605"]],[25,27,["H5949"]],[27,29,["H2403"]],[29,31,["H7200"]],[31,32,["H3282"]],[32,40,["H2142"]],[40,44,["H8610"]],[44,47,["H3709"]]]},{"k":20969,"v":[[0,2,["H859"]],[2,3,["H2491"]],[3,4,["H7563"]],[4,5,["H5387"]],[5,7,["H3478"]],[7,8,["H834"]],[8,9,["H3117"]],[9,11,["H935"]],[11,12,["H6256"]],[12,13,["H5771"]],[13,17,["H7093"]]]},{"k":20970,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H5493"]],[6,8,["H4701"]],[8,11,["H7311"]],[11,13,["H5850"]],[13,14,["H2063"]],[14,16,["H3808"]],[16,19,["H2063"]],[19,20,["H1361"]],[20,24,["H8217"]],[24,26,["H8213"]],[26,30,["H1364"]]]},{"k":20971,"v":[[0,2,["H7760"]],[2,3,["H5754"]],[3,4,["H5754"]],[4,5,["H5754"]],[5,7,["H1571"]],[7,8,["H2063"]],[8,10,["H1961"]],[10,11,["H3808"]],[11,13,["H5704"]],[13,15,["H935"]],[15,16,["H834"]],[16,17,["H4941"]],[17,23,["H5414"]],[23,25,[]]]},{"k":20972,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H5012"]],[6,8,["H559"]],[8,9,["H3541"]],[9,10,["H559"]],[10,12,["H136"]],[12,13,["H3069"]],[13,14,["H413"]],[14,16,["H1121","H5983"]],[16,18,["H413"]],[18,20,["H2781"]],[20,22,["H559"]],[22,25,["H2719"]],[25,27,["H2719"]],[27,29,["H6605"]],[29,32,["H2874"]],[32,35,["H4803"]],[35,37,["H3557"]],[37,39,["H4616"]],[39,41,["H1300"]]]},{"k":20973,"v":[[0,3,["H2372"]],[3,4,["H7723"]],[4,9,["H7080"]],[9,11,["H3577"]],[11,15,["H5414"]],[15,17,["H413"]],[17,19,["H6677"]],[19,24,["H2491"]],[24,27,["H7563"]],[27,28,["H834"]],[28,29,["H3119"]],[29,31,["H935"]],[31,32,["H6256"]],[32,34,["H5771"]],[34,38,["H7093"]]]},{"k":20974,"v":[[0,6,["H7725"]],[6,7,["H413"]],[7,9,["H8593"]],[9,12,["H8199"]],[12,16,["H4725"]],[16,17,["H834"]],[17,20,["H1254"]],[20,23,["H776"]],[23,26,["H4351"]]]},{"k":20975,"v":[[0,5,["H8210"]],[5,7,["H2195"]],[7,8,["H5921"]],[8,12,["H6315"]],[12,13,["H5921"]],[13,17,["H784"]],[17,20,["H5678"]],[20,22,["H5414"]],[22,26,["H3027"]],[26,28,["H1197"]],[28,29,["H376"]],[29,31,["H2796"]],[31,33,["H4889"]]]},{"k":20976,"v":[[0,3,["H1961"]],[3,5,["H402"]],[5,8,["H784"]],[8,10,["H1818"]],[10,12,["H1961"]],[12,15,["H8432"]],[15,18,["H776"]],[18,22,["H3808"]],[22,24,["H2142"]],[24,25,["H3588"]],[25,26,["H589"]],[26,28,["H3068"]],[28,30,["H1696"]],[30,31,[]]]},{"k":20977,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20978,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,8,["H8199"]],[8,11,["H8199","(H853)"]],[11,13,["H1818"]],[13,14,["H5892"]],[14,18,["H3045"]],[18,19,["(H853)"]],[19,20,["H3605"]],[20,22,["H8441"]]]},{"k":20979,"v":[[0,2,["H559"]],[2,4,["H3541"]],[4,5,["H559"]],[5,7,["H136"]],[7,8,["H3069"]],[8,10,["H5892"]],[10,11,["H8210"]],[11,12,["H1818"]],[12,15,["H8432"]],[15,20,["H6256"]],[20,22,["H935"]],[22,24,["H6213"]],[24,25,["H1544"]],[25,26,["H5921"]],[26,29,["H2930"]],[29,30,[]]]},{"k":20980,"v":[[0,4,["H816"]],[4,7,["H1818"]],[7,8,["H834"]],[8,11,["H8210"]],[11,14,["H2930"]],[14,18,["H1544"]],[18,19,["H834"]],[19,22,["H6213"]],[22,28,["H3117"]],[28,31,["H7126"]],[31,34,["H935"]],[34,36,["H5704"]],[36,38,["H8141"]],[38,39,["H5921","H3651"]],[39,42,["H5414"]],[42,45,["H2781"]],[45,48,["H1471"]],[48,51,["H7048"]],[51,53,["H3605"]],[53,54,["H776"]]]},{"k":20981,"v":[[0,4,["H7138"]],[4,9,["H7350"]],[9,10,["H4480"]],[10,13,["H7046"]],[13,17,["H2931","H8034"]],[17,19,["H7227"]],[19,20,["H4103"]]]},{"k":20982,"v":[[0,1,["H2009"]],[1,3,["H5387"]],[3,5,["H3478"]],[5,7,["H376"]],[7,8,["H1961"]],[8,13,["H2220"]],[13,14,["H4616"]],[14,15,["H8210"]],[15,16,["H1818"]]]},{"k":20983,"v":[[0,6,["H7043"]],[6,8,["H1"]],[8,10,["H517"]],[10,13,["H8432"]],[13,18,["H6213"]],[18,20,["H6233"]],[20,23,["H1616"]],[23,28,["H3238"]],[28,30,["H3490"]],[30,33,["H490"]]]},{"k":20984,"v":[[0,3,["H959"]],[3,6,["H6944"]],[6,9,["H2490"]],[9,11,["H7676"]]]},{"k":20985,"v":[[0,3,["H1961"]],[3,4,["H376"]],[4,7,["H7400"]],[7,8,["H4616"]],[8,9,["H8210"]],[9,10,["H1818"]],[10,15,["H398"]],[15,16,["H413"]],[16,18,["H2022"]],[18,21,["H8432"]],[21,25,["H6213"]],[25,26,["H2154"]]]},{"k":20986,"v":[[0,5,["H1540"]],[5,7,["H1"]],[7,8,["H6172"]],[8,13,["H6031"]],[13,18,["H5079"]],[18,20,["H2931"]]]},{"k":20987,"v":[[0,2,["H376"]],[2,4,["H6213"]],[4,5,["H8441"]],[5,6,["H854"]],[6,8,["H7453"]],[8,9,["H802"]],[9,11,["H376"]],[11,13,["H2154"]],[13,14,["H2930","(H853)"]],[14,18,["H3618"]],[18,20,["H376"]],[20,24,["H6031","(H853)"]],[24,26,["H269"]],[26,28,["H1"]],[28,29,["H1323"]]]},{"k":20988,"v":[[0,5,["H3947"]],[5,6,["H7810"]],[6,7,["H4616"]],[7,8,["H8210"]],[8,9,["H1818"]],[9,12,["H3947"]],[12,13,["H5392"]],[13,15,["H8636"]],[15,20,["H1214"]],[20,23,["H7453"]],[23,25,["H6233"]],[25,28,["H7911"]],[28,30,["H5002"]],[30,32,["H136"]],[32,33,["H3069"]]]},{"k":20989,"v":[[0,1,["H2009"]],[1,5,["H5221"]],[5,7,["H3709"]],[7,8,["H413"]],[8,11,["H1215"]],[11,12,["H834"]],[12,15,["H6213"]],[15,17,["H5921"]],[17,19,["H1818"]],[19,20,["H834"]],[20,22,["H1961"]],[22,25,["H8432"]],[25,27,[]]]},{"k":20990,"v":[[0,3,["H3820"]],[3,4,["H5975"]],[4,5,["H518"]],[5,8,["H3027"]],[8,10,["H2388"]],[10,13,["H3117"]],[13,14,["H834"]],[14,15,["H589"]],[15,17,["H6213"]],[17,20,["H589"]],[20,22,["H3068"]],[22,24,["H1696"]],[24,28,["H6213"]],[28,29,[]]]},{"k":20991,"v":[[0,4,["H6327"]],[4,8,["H1471"]],[8,10,["H2219"]],[10,14,["H776"]],[14,17,["H8552"]],[17,19,["H2932"]],[19,21,["H4480"]],[21,22,[]]]},{"k":20992,"v":[[0,6,["H2490"]],[6,11,["H5869"]],[11,14,["H1471"]],[14,18,["H3045"]],[18,19,["H3588"]],[19,20,["H589"]],[20,23,["H3068"]]]},{"k":20993,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20994,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,5,["H1004"]],[5,7,["H3478"]],[7,11,["H1961"]],[11,12,["H5509"]],[12,13,["H3605"]],[13,16,["H5178"]],[16,18,["H913"]],[18,20,["H1270"]],[20,22,["H5777"]],[22,25,["H8432"]],[25,28,["H3564"]],[28,30,["H1961"]],[30,33,["H5509"]],[33,35,["H3701"]]]},{"k":20995,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H3282"]],[7,10,["H3605"]],[10,11,["H1961"]],[11,12,["H5509"]],[12,13,["H2009"]],[13,14,["H3651"]],[14,17,["H6908"]],[17,19,["H413"]],[19,21,["H8432"]],[21,23,["H3389"]]]},{"k":20996,"v":[[0,3,["H6910"]],[3,4,["H3701"]],[4,6,["H5178"]],[6,8,["H1270"]],[8,10,["H5777"]],[10,12,["H913"]],[12,13,["H413"]],[13,15,["H8432"]],[15,18,["H3564"]],[18,20,["H5301"]],[20,22,["H784"]],[22,23,["H5921"]],[23,26,["H5413"]],[26,28,["H3651"]],[28,31,["H6908"]],[31,35,["H639"]],[35,39,["H2534"]],[39,43,["H5117"]],[43,47,["H5413"]],[47,48,[]]]},{"k":20997,"v":[[0,4,["H3664"]],[4,7,["H5301"]],[7,8,["H5921"]],[8,12,["H784"]],[12,15,["H5678"]],[15,20,["H5413"]],[20,23,["H8432"]],[23,24,[]]]},{"k":20998,"v":[[0,2,["H3701"]],[2,4,["H2046"]],[4,7,["H8432"]],[7,10,["H3564"]],[10,11,["H3651"]],[11,15,["H5413"]],[15,18,["H8432"]],[18,23,["H3045"]],[23,24,["H3588"]],[24,25,["H589"]],[25,27,["H3068"]],[27,30,["H8210"]],[30,32,["H2534"]],[32,33,["H5921"]],[33,34,[]]]},{"k":20999,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":21000,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H559"]],[4,7,["H859"]],[7,10,["H776"]],[10,11,["H1931"]],[11,13,["H3808"]],[13,14,["H2891"]],[14,15,["H3808"]],[15,17,["H1656"]],[17,20,["H3117"]],[20,22,["H2195"]]]},{"k":21001,"v":[[0,4,["H7195"]],[4,7,["H5030"]],[7,10,["H8432"]],[10,14,["H7580"]],[14,15,["H738"]],[15,16,["H2963"]],[16,18,["H2964"]],[18,21,["H398"]],[21,22,["H5315"]],[22,25,["H3947"]],[25,27,["H2633"]],[27,30,["H3366"]],[30,35,["H7235"]],[35,36,["H490"]],[36,39,["H8432"]],[39,40,[]]]},{"k":21002,"v":[[0,2,["H3548"]],[2,4,["H2554"]],[4,6,["H8451"]],[6,9,["H2490"]],[9,12,["H6944"]],[12,17,["H914","H3808"]],[17,18,["H996"]],[18,20,["H6944"]],[20,22,["H2455"]],[22,23,["H3808"]],[23,26,["H3045"]],[26,28,["H996"]],[28,30,["H2931"]],[30,33,["H2889"]],[33,36,["H5956"]],[36,38,["H5869"]],[38,41,["H4480","H7676"]],[41,45,["H2490"]],[45,46,["H8432"]],[46,47,[]]]},{"k":21003,"v":[[0,2,["H8269"]],[2,5,["H7130"]],[5,9,["H2061"]],[9,10,["H2963"]],[10,12,["H2964"]],[12,14,["H8210"]],[14,15,["H1818"]],[15,18,["H6"]],[18,19,["H5315"]],[19,20,["H4616"]],[20,21,["H1214"]],[21,23,["H1215"]]]},{"k":21004,"v":[[0,3,["H5030"]],[3,5,["H2902"]],[5,8,["H8602"]],[8,10,["H2374"]],[10,11,["H7723"]],[11,13,["H7080"]],[13,14,["H3577"]],[14,17,["H559"]],[17,18,["H3541"]],[18,19,["H559"]],[19,21,["H136"]],[21,22,["H3069"]],[22,25,["H3068"]],[25,27,["H3808"]],[27,28,["H1696"]]]},{"k":21005,"v":[[0,2,["H5971"]],[2,5,["H776"]],[5,7,["H6231"]],[7,8,["H6233"]],[8,10,["H1497"]],[10,11,["H1498"]],[11,14,["H3238"]],[14,16,["H6041"]],[16,18,["H34"]],[18,22,["H6231"]],[22,24,["H1616"]],[24,25,["H3808","H4941"]]]},{"k":21006,"v":[[0,3,["H1245"]],[3,6,["H376"]],[6,7,["H4480"]],[7,12,["H1443"]],[12,14,["H1447"]],[14,16,["H5975"]],[16,19,["H6556"]],[19,20,["H6440"]],[20,22,["H1157"]],[22,24,["H776"]],[24,28,["H1115"]],[28,29,["H7843"]],[29,33,["H4672"]],[33,34,["H3808"]]]},{"k":21007,"v":[[0,5,["H8210"]],[5,7,["H2195"]],[7,8,["H5921"]],[8,12,["H3615"]],[12,16,["H784"]],[16,19,["H5678"]],[19,22,["H1870"]],[22,25,["H5414"]],[25,28,["H7218"]],[28,29,["H5002"]],[29,31,["H136"]],[31,32,["H3069"]]]},{"k":21008,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,8,["H413"]],[8,10,["H559"]]]},{"k":21009,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,5,["H1961"]],[5,6,["H8147"]],[6,7,["H802"]],[7,9,["H1323"]],[9,11,["H259"]],[11,12,["H517"]]]},{"k":21010,"v":[[0,4,["H2181"]],[4,6,["H4714"]],[6,9,["H2181"]],[9,12,["H5271"]],[12,13,["H8033"]],[13,16,["H7699"]],[16,17,["H4600"]],[17,19,["H8033"]],[19,21,["H6213"]],[21,23,["H1717"]],[23,26,["H1331"]]]},{"k":21011,"v":[[0,3,["H8034"]],[3,7,["H170"]],[7,9,["H1419"]],[9,11,["H172"]],[11,13,["H269"]],[13,16,["H1961"]],[16,20,["H3205"]],[20,21,["H1121"]],[21,23,["H1323"]],[23,27,["H8034"]],[27,28,["H8111"]],[28,30,["H170"]],[30,32,["H3389"]],[32,33,["H172"]]]},{"k":21012,"v":[[0,2,["H170"]],[2,5,["H2181"]],[5,8,["H8478"]],[8,12,["H5689"]],[12,13,["H5921"]],[13,15,["H157"]],[15,16,["H413"]],[16,18,["H804"]],[18,20,["H7138"]]]},{"k":21013,"v":[[0,3,["H3847"]],[3,5,["H8504"]],[5,6,["H6346"]],[6,8,["H5461"]],[8,9,["H3605"]],[9,12,["H2531"]],[12,14,["H970"]],[14,15,["H6571"]],[15,17,["H7392"]],[17,18,["H5483"]]]},{"k":21014,"v":[[0,3,["H5414"]],[3,5,["H8457"]],[5,6,["H5921"]],[6,9,["H3605"]],[9,14,["H4005"]],[14,15,["H1121"]],[15,17,["H804"]],[17,20,["H3605"]],[20,22,["H834"]],[22,24,["H5689"]],[24,26,["H3605"]],[26,28,["H1544"]],[28,31,["H2930"]]]},{"k":21015,"v":[[0,1,["H3808"]],[1,2,["H5800"]],[2,5,["H8457"]],[5,8,["H4480","H4714"]],[8,9,["H3588"]],[9,12,["H5271"]],[12,14,["H7901"]],[14,15,["H854"]],[15,18,["H1992"]],[18,19,["H6213"]],[19,21,["H1717"]],[21,24,["H1331"]],[24,26,["H8210"]],[26,28,["H8457"]],[28,29,["H5921"]],[29,30,[]]]},{"k":21016,"v":[[0,1,["H3651"]],[1,4,["H5414"]],[4,8,["H3027"]],[8,11,["H157"]],[11,14,["H3027"]],[14,17,["H1121","H804"]],[17,18,["H5921"]],[18,19,["H834"]],[19,21,["H5689"]]]},{"k":21017,"v":[[0,1,["H1992"]],[1,2,["H1540"]],[2,4,["H6172"]],[4,6,["H3947"]],[6,8,["H1121"]],[8,11,["H1323"]],[11,13,["H2026"]],[13,17,["H2719"]],[17,20,["H1961"]],[20,21,["H8034"]],[21,23,["H802"]],[23,27,["H6213"]],[27,28,["H8196"]],[28,30,[]]]},{"k":21018,"v":[[0,4,["H269"]],[4,5,["H172"]],[5,6,["H7200"]],[6,11,["H7843"]],[11,15,["H5691"]],[15,16,["H4480"]],[16,21,["H8457"]],[21,25,["H269"]],[25,28,["H4480","H2183"]]]},{"k":21019,"v":[[0,2,["H5689"]],[2,3,["H413"]],[3,5,["H1121","H804"]],[5,7,["H7138"]],[7,8,["H6346"]],[8,10,["H5461"]],[10,11,["H3847"]],[11,13,["H4358"]],[13,14,["H6571"]],[14,16,["H7392"]],[16,17,["H5483"]],[17,18,["H3605"]],[18,21,["H2531"]],[21,23,["H970"]]]},{"k":21020,"v":[[0,3,["H7200"]],[3,4,["H3588"]],[4,7,["H2930"]],[7,11,["H8147"]],[11,12,["H259"]],[12,13,["H1870"]]]},{"k":21021,"v":[[0,4,["H3254","H413"]],[4,6,["H8457"]],[6,10,["H7200"]],[10,11,["H376"]],[11,12,["H2707"]],[12,13,["H5921"]],[13,15,["H7023"]],[15,17,["H6754"]],[17,20,["H3778"]],[20,21,["H2710"]],[21,23,["H8350"]]]},{"k":21022,"v":[[0,1,["H2289"]],[1,3,["H232"]],[3,6,["H4975"]],[6,7,["H5628"]],[7,10,["H2871"]],[10,13,["H7218"]],[13,14,["H3605"]],[14,17,["H7991"]],[17,20,["H4758"]],[20,23,["H1823"]],[23,26,["H1121","H894"]],[26,28,["H3778"]],[28,30,["H776"]],[30,33,["H4138"]]]},{"k":21023,"v":[[0,6,["H4758"]],[6,10,["H5869"]],[10,12,["H5689"]],[12,13,["H5921"]],[13,16,["H7971"]],[16,17,["H4397"]],[17,18,["H413"]],[18,21,["H3778"]]]},{"k":21024,"v":[[0,3,["H1121","H894"]],[3,4,["H935"]],[4,5,["H413"]],[5,9,["H4904"]],[9,11,["H1730"]],[11,14,["H2930"]],[14,18,["H8457"]],[18,22,["H2930"]],[22,27,["H5315"]],[27,29,["H3363"]],[29,30,["H4480"]],[30,31,[]]]},{"k":21025,"v":[[0,3,["H1540"]],[3,5,["H8457"]],[5,7,["H1540","(H853)"]],[7,9,["H6172"]],[9,12,["H5315"]],[12,14,["H3363"]],[14,15,["H4480","H5921"]],[15,18,["H834"]],[18,20,["H5315"]],[20,22,["H5361"]],[22,23,["H4480","H5921"]],[23,25,["H269"]]]},{"k":21026,"v":[[0,3,["H7235","(H853)"]],[3,5,["H8457"]],[5,9,["H2142","(H853)"]],[9,11,["H3117"]],[11,14,["H5271"]],[14,15,["H834"]],[15,20,["H2181"]],[20,23,["H776"]],[23,25,["H4714"]]]},{"k":21027,"v":[[0,3,["H5689"]],[3,4,["H5921"]],[4,6,["H6370"]],[6,7,["H834"]],[7,8,["H1320"]],[8,12,["H1320"]],[12,14,["H2543"]],[14,17,["H2231"]],[17,21,["H2231"]],[21,23,["H5483"]]]},{"k":21028,"v":[[0,5,["H6485","(H853)"]],[5,7,["H2154"]],[7,10,["H5271"]],[10,12,["H6213"]],[12,14,["H1717"]],[14,17,["H4480","H4714"]],[17,18,["H4616"]],[18,20,["H7699"]],[20,23,["H5271"]]]},{"k":21029,"v":[[0,1,["H3651"]],[1,3,["H172"]],[3,4,["H3541"]],[4,5,["H559"]],[5,7,["H136"]],[7,8,["H3069"]],[8,9,["H2009"]],[9,13,["H5782","(H853)"]],[13,15,["H157"]],[15,16,["H5921"]],[16,19,["H4480","(H853)","H834"]],[19,21,["H5315"]],[21,23,["H5361"]],[23,27,["H935"]],[27,29,["H5921"]],[29,33,["H4480","H5439"]]]},{"k":21030,"v":[[0,2,["H1121","H894"]],[2,4,["H3605"]],[4,6,["H3778"]],[6,7,["H6489"]],[7,9,["H7772"]],[9,11,["H6970"]],[11,13,["H3605"]],[13,15,["H1121","H804"]],[15,16,["H854"]],[16,18,["H3605"]],[18,21,["H2531"]],[21,23,["H970"]],[23,24,["H6346"]],[24,26,["H5461"]],[26,28,["H7991"]],[28,30,["H7121"]],[30,31,["H3605"]],[31,35,["H7392"]],[35,36,["H5483"]]]},{"k":21031,"v":[[0,4,["H935"]],[4,5,["H5921"]],[5,8,["H2021"]],[8,9,["H7393"]],[9,11,["H1534"]],[11,15,["H6951"]],[15,17,["H5971"]],[17,20,["H7760"]],[20,21,["H5921"]],[21,23,["H6793"]],[23,25,["H4043"]],[25,27,["H6959"]],[27,29,["H5439"]],[29,33,["H5414"]],[33,34,["H4941"]],[34,35,["H6440"]],[35,40,["H8199"]],[40,45,["H4941"]]]},{"k":21032,"v":[[0,4,["H5414"]],[4,6,["H7068"]],[6,12,["H6213"]],[12,13,["H2534"]],[13,14,["H854"]],[14,19,["H5493"]],[19,21,["H639"]],[21,24,["H241"]],[24,27,["H319"]],[27,29,["H5307"]],[29,32,["H2719"]],[32,33,["H1992"]],[33,35,["H3947"]],[35,37,["H1121"]],[37,40,["H1323"]],[40,43,["H319"]],[43,46,["H398"]],[46,49,["H784"]]]},{"k":21033,"v":[[0,4,["H6584"]],[4,7,["H854"]],[7,9,["H899"]],[9,12,["H3947"]],[12,14,["H8597"]],[14,15,["H3627"]]]},{"k":21034,"v":[[0,6,["H2154"]],[6,8,["H7673"]],[8,9,["H4480"]],[9,13,["H2184"]],[13,17,["H4480","H776"]],[17,19,["H4714"]],[19,24,["H3808"]],[24,26,["H5375"]],[26,28,["H5869"]],[28,29,["H413"]],[29,31,["H3808"]],[31,32,["H2142"]],[32,33,["H4714"]],[33,35,["H5750"]]]},{"k":21035,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,10,["H5414"]],[10,14,["H3027"]],[14,17,["H834"]],[17,19,["H8130"]],[19,22,["H3027"]],[22,26,["H834"]],[26,28,["H5315"]],[28,30,["H5361","H4480"]]]},{"k":21036,"v":[[0,4,["H6213"]],[4,5,["H854"]],[5,7,["H8135"]],[7,11,["H3947"]],[11,12,["H3605"]],[12,14,["H3018"]],[14,17,["H5800"]],[17,19,["H5903"]],[19,21,["H6181"]],[21,24,["H6172"]],[24,27,["H2183"]],[27,30,["H1540"]],[30,33,["H2154"]],[33,36,["H8457"]]]},{"k":21037,"v":[[0,3,["H6213"]],[3,4,["H428"]],[4,13,["H2181"]],[13,14,["H310"]],[14,16,["H1471"]],[16,18,["H5921","H834"]],[18,21,["H2930"]],[21,24,["H1544"]]]},{"k":21038,"v":[[0,3,["H1980"]],[3,6,["H1870"]],[6,9,["H269"]],[9,13,["H5414"]],[13,15,["H3563"]],[15,18,["H3027"]]]},{"k":21039,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,8,["H8354"]],[8,11,["H269"]],[11,12,["H3563"]],[12,13,["H6013"]],[13,15,["H7342"]],[15,18,["H1961"]],[18,21,["H6712"]],[21,25,["H3933"]],[25,27,["H3557"]],[27,28,["H4767"]]]},{"k":21040,"v":[[0,4,["H4390"]],[4,6,["H7943"]],[6,8,["H3015"]],[8,11,["H3563"]],[11,13,["H8047"]],[13,15,["H8077"]],[15,18,["H3563"]],[18,21,["H269"]],[21,22,["H8111"]]]},{"k":21041,"v":[[0,4,["H8354"]],[4,9,["H4680"]],[9,13,["H1633"]],[13,15,["H2789"]],[15,19,["H5423"]],[19,22,["H7699"]],[22,23,["H3588"]],[23,24,["H589"]],[24,26,["H1696"]],[26,28,["H5002"]],[28,30,["H136"]],[30,31,["H3069"]]]},{"k":21042,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H3282"]],[7,10,["H7911"]],[10,13,["H7993"]],[13,15,["H310"]],[15,17,["H1458"]],[17,19,["H5375"]],[19,20,["H859"]],[20,21,["H1571"]],[21,23,["H2154"]],[23,26,["H8457"]]]},{"k":21043,"v":[[0,2,["H3068"]],[2,3,["H559"]],[3,5,["H413"]],[5,7,["H1121"]],[7,9,["H120"]],[9,12,["H8199","(H853)"]],[12,13,["H170"]],[13,15,["H172"]],[15,17,["H5046"]],[17,19,["(H853)"]],[19,21,["H8441"]]]},{"k":21044,"v":[[0,1,["H3588"]],[1,5,["H5003"]],[5,7,["H1818"]],[7,11,["H3027"]],[11,13,["H854"]],[13,15,["H1544"]],[15,19,["H5003"]],[19,22,["H1571"]],[22,23,["(H853)"]],[23,25,["H1121"]],[25,26,["H834"]],[26,28,["H3205"]],[28,35,["H5674"]],[35,39,["H402"]],[39,40,[]]]},{"k":21045,"v":[[0,1,["H5750"]],[1,2,["H2063"]],[2,5,["H6213"]],[5,10,["H2930","(H853)"]],[10,12,["H4720"]],[12,15,["H1931"]],[15,16,["H3117"]],[16,19,["H2490"]],[19,21,["H7676"]]]},{"k":21046,"v":[[0,5,["H7819","(H853)"]],[5,7,["H1121"]],[7,10,["H1544"]],[10,13,["H935"]],[13,15,["H1931"]],[15,16,["H3117"]],[16,17,["H413"]],[17,19,["H4720"]],[19,21,["H2490"]],[21,24,["H2009"]],[24,25,["H3541"]],[25,28,["H6213"]],[28,31,["H8432"]],[31,34,["H1004"]]]},{"k":21047,"v":[[0,2,["H637"]],[2,3,["H3588"]],[3,6,["H7971"]],[6,8,["H376"]],[8,10,["H935"]],[10,12,["H4480","H4801"]],[12,13,["H413"]],[13,14,["H834"]],[14,16,["H4397"]],[16,18,["H7971"]],[18,20,["H2009"]],[20,22,["H935"]],[22,24,["H834"]],[24,27,["H7364"]],[27,29,["H3583"]],[29,31,["H5869"]],[31,33,["H5710"]],[33,36,["H5716"]]]},{"k":21048,"v":[[0,2,["H3427"]],[2,3,["H5921"]],[3,5,["H3520"]],[5,6,["H4296"]],[6,9,["H7979"]],[9,10,["H6186"]],[10,11,["H6440"]],[11,13,["H5921"]],[13,16,["H7760"]],[16,18,["H7004"]],[18,21,["H8081"]]]},{"k":21049,"v":[[0,3,["H6963"]],[3,6,["H1995"]],[6,9,["H7961"]],[9,14,["H413"]],[14,16,["H376"]],[16,20,["H4480","H7230","H120"]],[20,22,["H935"]],[22,23,["H5436"]],[23,26,["H4480","H4057"]],[26,28,["H5414"]],[28,29,["H6781"]],[29,30,["H5921"]],[30,32,["H3027"]],[32,34,["H8597"]],[34,35,["H5850"]],[35,36,["H413"]],[36,38,["H7218"]]]},{"k":21050,"v":[[0,2,["H559"]],[2,8,["H1087"]],[8,10,["H5004"]],[10,13,["H6258"]],[13,14,["H2181"]],[14,15,["H8457"]],[15,19,["H1931"]],[19,21,[]]]},{"k":21051,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,10,["H935"]],[10,11,["H413"]],[11,13,["H802"]],[13,17,["H2181"]],[17,18,["H3651"]],[18,21,["H935"]],[21,22,["H413"]],[22,23,["H170"]],[23,25,["H413"]],[25,26,["H172"]],[26,28,["H2154"]],[28,29,["H802"]]]},{"k":21052,"v":[[0,3,["H6662"]],[3,4,["H376"]],[4,5,["H1992"]],[5,7,["H8199"]],[7,11,["H4941"]],[11,13,["H5003"]],[13,19,["H4941"]],[19,21,["H8210"]],[21,22,["H1818"]],[22,23,["H3588"]],[23,24,["H2007"]],[24,26,["H5003"]],[26,28,["H1818"]],[28,32,["H3027"]]]},{"k":21053,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,10,["H5927"]],[10,12,["H6951"]],[12,13,["H5921"]],[13,17,["H5414"]],[17,21,["H2189"]],[21,23,["H957"]]]},{"k":21054,"v":[[0,3,["H6951"]],[3,5,["H7275","H5921"]],[5,8,["H68"]],[8,10,["H1254"]],[10,14,["H2719"]],[14,17,["H2026"]],[17,19,["H1121"]],[19,22,["H1323"]],[22,25,["H8313"]],[25,27,["H1004"]],[27,29,["H784"]]]},{"k":21055,"v":[[0,5,["H2154"]],[5,7,["H7673"]],[7,9,["H4480"]],[9,11,["H776"]],[11,13,["H3605"]],[13,14,["H802"]],[14,17,["H3256"]],[17,18,["H3808"]],[18,20,["H6213"]],[20,23,["H2154"]]]},{"k":21056,"v":[[0,4,["H5414"]],[4,6,["H2154"]],[6,7,["H5921"]],[7,12,["H5375"]],[12,14,["H2399"]],[14,17,["H1544"]],[17,21,["H3045"]],[21,22,["H3588"]],[22,23,["H589"]],[23,26,["H136"]],[26,27,["H3069"]]]},{"k":21057,"v":[[0,4,["H8671"]],[4,5,["H8141"]],[5,8,["H6224"]],[8,9,["H2320"]],[9,12,["H6218"]],[12,16,["H2320"]],[16,18,["H1697"]],[18,21,["H3068"]],[21,22,["H1961"]],[22,23,["H413"]],[23,25,["H559"]]]},{"k":21058,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H3789"]],[4,5,["(H853)"]],[5,7,["H8034"]],[7,10,["H3117","(H853)"]],[10,13,["H2088"]],[13,14,["H6106"]],[14,15,["H3117"]],[15,17,["H4428"]],[17,19,["H894"]],[19,20,["H5564"]],[20,22,["H413"]],[22,23,["H3389"]],[23,24,["H2088"]],[24,25,["H6106"]],[25,26,["H3117"]]]},{"k":21059,"v":[[0,2,["H4911"]],[2,4,["H4912"]],[4,5,["H413"]],[5,7,["H4805"]],[7,8,["H1004"]],[8,10,["H559"]],[10,11,["H413"]],[11,13,["H3541"]],[13,14,["H559"]],[14,16,["H136"]],[16,17,["H3069"]],[17,19,["H8239"]],[19,21,["H5518"]],[21,24,["H8239"]],[24,26,["H1571"]],[26,27,["H3332"]],[27,28,["H4325"]],[28,30,[]]]},{"k":21060,"v":[[0,1,["H622"]],[1,3,["H5409"]],[3,5,["H413"]],[5,8,["H3605"]],[8,9,["H2896"]],[9,10,["H5409"]],[10,12,["H3409"]],[12,15,["H3802"]],[15,16,["H4390"]],[16,20,["H4005"]],[20,21,["H6106"]]]},{"k":21061,"v":[[0,1,["H3947"]],[1,3,["H4005"]],[3,6,["H6629"]],[6,8,["H1752"]],[8,9,["H1571"]],[9,11,["H6106"]],[11,12,["H8478"]],[12,17,["H7570"]],[17,18,["H7571"]],[18,19,["H1571"]],[19,22,["H1310"]],[22,24,["H6106"]],[24,27,["H8432"]]]},{"k":21062,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H188"]],[7,10,["H1818"]],[10,11,["H5892"]],[11,14,["H5518"]],[14,15,["H834"]],[15,16,["H2457"]],[16,21,["H2457"]],[21,23,["H3808"]],[23,25,["H3318"]],[25,26,["H4480"]],[26,30,["H3318"]],[30,31,["H5409"]],[31,33,["H5409"]],[33,35,["H3808"]],[35,36,["H1486"]],[36,37,["H5307"]],[37,38,["H5921"]],[38,39,[]]]},{"k":21063,"v":[[0,1,["H3588"]],[1,3,["H1818"]],[3,4,["H1961"]],[4,7,["H8432"]],[7,11,["H7760"]],[11,13,["H5921"]],[13,15,["H6706"]],[15,18,["H5553"]],[18,20,["H8210"]],[20,22,["H3808"]],[22,23,["H5921"]],[23,25,["H776"]],[25,27,["H3680","H5921"]],[27,30,["H6083"]]]},{"k":21064,"v":[[0,5,["H2534"]],[5,8,["H5927"]],[8,10,["H5358"]],[10,11,["H5359"]],[11,14,["H5414","(H853)"]],[14,16,["H1818"]],[16,17,["H5921"]],[17,19,["H6706"]],[19,22,["H5553"]],[22,26,["H1115"]],[26,28,["H3680"]]]},{"k":21065,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H188"]],[7,10,["H1818"]],[10,11,["H5892"]],[11,12,["H589"]],[12,14,["H1571"]],[14,19,["H4071"]],[19,20,["H1431"]]]},{"k":21066,"v":[[0,2,["H7235"]],[2,3,["H6086"]],[3,4,["H1814"]],[4,6,["H784"]],[6,7,["H8552"]],[7,9,["H1320"]],[9,13,["H7543","H4841"]],[13,17,["H6106"]],[17,19,["H2787"]]]},{"k":21067,"v":[[0,2,["H5975"]],[2,4,["H7386"]],[4,5,["H5921"]],[5,7,["H1513"]],[7,9,["H4616"]],[9,11,["H5178"]],[11,16,["H2552"]],[16,19,["H2787"]],[19,23,["H2932"]],[23,28,["H5413"]],[28,29,["H8432"]],[29,33,["H2457"]],[33,38,["H8552"]]]},{"k":21068,"v":[[0,3,["H3811"]],[3,6,["H8383"]],[6,9,["H7227"]],[9,10,["H2457"]],[10,13,["H3318","H3808"]],[13,15,["H4480"]],[15,18,["H2457"]],[18,23,["H784"]]]},{"k":21069,"v":[[0,3,["H2932"]],[3,5,["H2154"]],[5,6,["H3282"]],[6,9,["H2891"]],[9,14,["H3808"]],[14,15,["H2891"]],[15,18,["H3808"]],[18,20,["H2891"]],[20,23,["H4480","H2932"]],[23,25,["H5750"]],[25,26,["H5704"]],[26,29,["(H853)"]],[29,31,["H2534"]],[31,33,["H5117"]],[33,35,[]]]},{"k":21070,"v":[[0,1,["H589"]],[1,3,["H3068"]],[3,5,["H1696"]],[5,11,["H935"]],[11,15,["H6213"]],[15,19,["H3808"]],[19,21,["H6544"]],[21,22,["H3808"]],[22,25,["H2347"]],[25,26,["H3808"]],[26,29,["H5162"]],[29,33,["H1870"]],[33,38,["H5949"]],[38,41,["H8199"]],[41,43,["H5002"]],[43,45,["H136"]],[45,46,["H3069"]]]},{"k":21071,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":21072,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H2009"]],[4,7,["H3947"]],[7,8,["H4480"]],[8,9,["(H853)"]],[9,11,["H4261"]],[11,14,["H5869"]],[14,17,["H4046"]],[17,19,["H3808"]],[19,22,["H5594"]],[22,23,["H3808"]],[23,24,["H1058"]],[24,25,["H3808"]],[25,28,["H1832"]],[28,30,["H935"]]]},{"k":21073,"v":[[0,1,["H1826"]],[1,3,["H602"]],[3,4,["H6213"]],[4,5,["H3808"]],[5,6,["H60"]],[6,9,["H4191"]],[9,10,["H2280"]],[10,15,["H6287"]],[15,16,["H5921"]],[16,20,["H7760"]],[20,22,["H5275"]],[22,25,["H7272"]],[25,27,["H5844"]],[27,28,["H3808"]],[28,30,["H8222"]],[30,32,["H398"]],[32,33,["H3808"]],[33,35,["H3899"]],[35,37,["H376"]]]},{"k":21074,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H5971"]],[6,9,["H1242"]],[9,12,["H6153"]],[12,14,["H802"]],[14,15,["H4191"]],[15,18,["H6213"]],[18,21,["H1242"]],[21,22,["H834"]],[22,25,["H6680"]]]},{"k":21075,"v":[[0,3,["H5971"]],[3,4,["H559"]],[4,5,["H413"]],[5,9,["H3808"]],[9,10,["H5046"]],[10,12,["H4100"]],[12,13,["H428"]],[13,18,["H3588"]],[18,19,["H859"]],[19,20,["H6213"]],[20,21,[]]]},{"k":21076,"v":[[0,3,["H559","H413"]],[3,6,["H1697"]],[6,9,["H3068"]],[9,10,["H1961"]],[10,11,["H413"]],[11,13,["H559"]]]},{"k":21077,"v":[[0,1,["H559"]],[1,4,["H1004"]],[4,6,["H3478"]],[6,7,["H3541"]],[7,8,["H559"]],[8,10,["H136"]],[10,11,["H3069"]],[11,12,["H2009"]],[12,15,["H2490","(H853)"]],[15,17,["H4720"]],[17,19,["H1347"]],[19,22,["H5797"]],[22,24,["H4261"]],[24,27,["H5869"]],[27,32,["H5315"]],[32,33,["H4263"]],[33,36,["H1121"]],[36,39,["H1323"]],[39,40,["H834"]],[40,43,["H5800"]],[43,45,["H5307"]],[45,48,["H2719"]]]},{"k":21078,"v":[[0,4,["H6213"]],[4,5,["H834"]],[5,8,["H6213"]],[8,11,["H3808"]],[11,12,["H5844","H5921"]],[12,14,["H8222"]],[14,15,["H3808"]],[15,16,["H398"]],[16,18,["H3899"]],[18,20,["H376"]]]},{"k":21079,"v":[[0,3,["H6287"]],[3,6,["H5921"]],[6,8,["H7218"]],[8,11,["H5275"]],[11,14,["H7272"]],[14,17,["H3808"]],[17,18,["H5594"]],[18,19,["H3808"]],[19,20,["H1058"]],[20,25,["H4743"]],[25,28,["H5771"]],[28,30,["H5098"]],[30,31,["H376"]],[31,32,["H413"]],[32,33,["H251"]]]},{"k":21080,"v":[[0,2,["H3168"]],[2,3,["H1961"]],[3,7,["H4159"]],[7,10,["H3605"]],[10,11,["H834"]],[11,14,["H6213"]],[14,17,["H6213"]],[17,21,["H935"]],[21,24,["H3045"]],[24,25,["H3588"]],[25,26,["H589"]],[26,29,["H136"]],[29,30,["H3069"]]]},{"k":21081,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,8,["H3808"]],[8,12,["H3117"]],[12,15,["H3947"]],[15,16,["H4480"]],[16,17,["(H853)"]],[17,19,["H4581"]],[19,21,["H4885"]],[21,24,["H8597","(H853)"]],[24,26,["H4261"]],[26,29,["H5869"]],[29,34,["H4853"]],[34,36,["H5315"]],[36,38,["H1121"]],[38,41,["H1323"]]]},{"k":21082,"v":[[0,4,["H6412"]],[4,6,["H1931"]],[6,7,["H3117"]],[7,9,["H935"]],[9,10,["H413"]],[10,16,["H2045"]],[16,20,["H241"]]]},{"k":21083,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H6310"]],[6,8,["H6605","(H853)"]],[8,13,["H6412"]],[13,17,["H1696"]],[17,22,["H481","H3808","H5750"]],[22,26,["H1961"]],[26,28,["H4159"]],[28,34,["H3045"]],[34,35,["H3588"]],[35,36,["H589"]],[36,39,["H3068"]]]},{"k":21084,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,8,["H413"]],[8,10,["H559"]]]},{"k":21085,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H7760"]],[4,6,["H6440"]],[6,7,["H413"]],[7,9,["H1121","H5983"]],[9,11,["H5012"]],[11,12,["H5921"]],[12,13,[]]]},{"k":21086,"v":[[0,2,["H559"]],[2,5,["H1121","H5983"]],[5,6,["H8085"]],[6,8,["H1697"]],[8,11,["H136"]],[11,12,["H3069"]],[12,13,["H3541"]],[13,14,["H559"]],[14,16,["H136"]],[16,17,["H3069"]],[17,18,["H3282"]],[18,20,["H559"]],[20,21,["H1889"]],[21,22,["H413"]],[22,24,["H4720"]],[24,25,["H3588"]],[25,28,["H2490"]],[28,30,["H413"]],[30,32,["H127"]],[32,34,["H3478"]],[34,35,["H3588"]],[35,38,["H8074"]],[38,40,["H413"]],[40,42,["H1004"]],[42,44,["H3063"]],[44,45,["H3588"]],[45,47,["H1980"]],[47,49,["H1473"]]]},{"k":21087,"v":[[0,1,["H2009"]],[1,2,["H3651"]],[2,5,["H5414"]],[5,9,["H1121"]],[9,12,["H6924"]],[12,15,["H4181"]],[15,19,["H3427"]],[19,21,["H2918"]],[21,25,["H5414"]],[25,27,["H4908"]],[27,30,["H1992"]],[30,32,["H398"]],[32,34,["H6529"]],[34,36,["H1992"]],[36,38,["H8354"]],[38,40,["H2461"]]]},{"k":21088,"v":[[0,4,["H5414","(H853)"]],[4,5,["H7237"]],[5,7,["H5116"]],[7,9,["H1581"]],[9,12,["H1121","H5983"]],[12,14,["H4769"]],[14,16,["H6629"]],[16,20,["H3045"]],[20,21,["H3588"]],[21,22,["H589"]],[22,25,["H3068"]]]},{"k":21089,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H3282"]],[7,10,["H4222"]],[10,12,["H3027"]],[12,14,["H7554"]],[14,17,["H7272"]],[17,19,["H8055"]],[19,21,["H5315"]],[21,23,["H3605"]],[23,25,["H7589"]],[25,26,["H413"]],[26,28,["H127"]],[28,30,["H3478"]]]},{"k":21090,"v":[[0,1,["H2009"]],[1,2,["H3651"]],[2,6,["H5186","(H853)"]],[6,8,["H3027"]],[8,9,["H5921"]],[9,13,["H5414"]],[13,17,["H957"]],[17,20,["H1471"]],[20,26,["H3772"]],[26,27,["H4480"]],[27,29,["H5971"]],[29,36,["H6"]],[36,38,["H4480"]],[38,40,["H776"]],[40,43,["H8045"]],[43,48,["H3045"]],[48,49,["H3588"]],[49,50,["H589"]],[50,53,["H3068"]]]},{"k":21091,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,7,["H3282"]],[7,8,["H4124"]],[8,10,["H8165"]],[10,12,["H559"]],[12,13,["H2009"]],[13,15,["H1004"]],[15,17,["H3063"]],[17,21,["H3605"]],[21,23,["H1471"]]]},{"k":21092,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,5,["H6605","(H853)"]],[5,7,["H3802"]],[7,9,["H4124"]],[9,12,["H4480","H5892"]],[12,15,["H4480","H5892"]],[15,20,["H4480","H7097"]],[20,22,["H6643"]],[22,25,["H776"]],[25,26,["H1020"]],[26,27,["H1186"]],[27,29,["H7156"]]]},{"k":21093,"v":[[0,3,["H1121"]],[3,6,["H6924"]],[6,7,["H5921"]],[7,9,["H1121","H5983"]],[9,12,["H5414"]],[12,15,["H4181"]],[15,16,["H4616"]],[16,18,["H1121","H5983"]],[18,20,["H3808"]],[20,22,["H2142"]],[22,25,["H1471"]]]},{"k":21094,"v":[[0,4,["H6213"]],[4,5,["H8201"]],[5,7,["H4124"]],[7,11,["H3045"]],[11,12,["H3588"]],[12,13,["H589"]],[13,16,["H3068"]]]},{"k":21095,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,7,["H3282"]],[7,8,["H123"]],[8,10,["H6213"]],[10,13,["H1004"]],[13,15,["H3063"]],[15,17,["H5358"]],[17,18,["H5359"]],[18,22,["H816","H816"]],[22,25,["H5358"]],[25,27,[]]]},{"k":21096,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,11,["H5186"]],[11,13,["H3027"]],[13,14,["H5921"]],[14,15,["H123"]],[15,19,["H3772"]],[19,20,["H120"]],[20,22,["H929"]],[22,23,["H4480"]],[23,28,["H5414"]],[28,30,["H2723"]],[30,32,["H4480","H8487"]],[32,36,["H1719"]],[36,38,["H5307"]],[38,41,["H2719"]]]},{"k":21097,"v":[[0,4,["H5414","(H853)"]],[4,6,["H5360"]],[6,8,["H123"]],[8,11,["H3027"]],[11,14,["H5971"]],[14,15,["H3478"]],[15,19,["H6213"]],[19,21,["H123"]],[21,25,["H639"]],[25,30,["H2534"]],[30,34,["H3045","(H853)"]],[34,36,["H5360"]],[36,37,["H5002"]],[37,39,["H136"]],[39,40,["H3069"]]]},{"k":21098,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H3282"]],[6,8,["H6430"]],[8,10,["H6213"]],[10,12,["H5360"]],[12,15,["H5358"]],[15,16,["H5359"]],[16,19,["H7589"]],[19,20,["H5315"]],[20,22,["H4889"]],[22,26,["H5769"]],[26,27,["H342"]]]},{"k":21099,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,11,["H5186"]],[11,13,["H3027"]],[13,14,["H5921"]],[14,16,["H6430"]],[16,21,["H3772","(H853)"]],[21,23,["H3774"]],[23,25,["H6","(H853)"]],[25,27,["H7611"]],[27,30,["H3220"]],[30,31,["H2348"]]]},{"k":21100,"v":[[0,4,["H6213"]],[4,5,["H1419"]],[5,6,["H5360"]],[6,10,["H2534"]],[10,11,["H8433"]],[11,15,["H3045"]],[15,16,["H3588"]],[16,17,["H589"]],[17,20,["H3068"]],[20,24,["H5414","(H853)"]],[24,26,["H5360"]],[26,28,[]]]},{"k":21101,"v":[[0,5,["H1961"]],[5,8,["H6249","H6240"]],[8,9,["H8141"]],[9,12,["H259"]],[12,16,["H2320"]],[16,19,["H1697"]],[19,22,["H3068"]],[22,23,["H1961"]],[23,24,["H413"]],[24,26,["H559"]]]},{"k":21102,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,5,["H3282","H834"]],[5,6,["H6865"]],[6,8,["H559"]],[8,9,["H5921"]],[9,10,["H3389"]],[10,11,["H1889"]],[11,14,["H7665"]],[14,18,["H1817"]],[18,21,["H5971"]],[21,24,["H5437"]],[24,25,["H413"]],[25,30,["H4390"]],[30,35,["H2717"]]]},{"k":21103,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,10,["H5921"]],[10,13,["H6865"]],[13,17,["H7227"]],[17,18,["H1471"]],[18,21,["H5927"]],[21,22,["H5921"]],[22,26,["H3220"]],[26,29,["H1530"]],[29,32,["H5927"]]]},{"k":21104,"v":[[0,4,["H7843"]],[4,6,["H2346"]],[6,8,["H6865"]],[8,11,["H2040"]],[11,13,["H4026"]],[13,17,["H5500"]],[17,19,["H6083"]],[19,20,["H4480"]],[20,23,["H5414"]],[23,27,["H6706"]],[27,30,["H5553"]]]},{"k":21105,"v":[[0,3,["H1961"]],[3,8,["H4894"]],[8,10,["H2764"]],[10,13,["H8432"]],[13,16,["H3220"]],[16,17,["H3588"]],[17,18,["H589"]],[18,20,["H1696"]],[20,22,["H5002"]],[22,24,["H136"]],[24,25,["H3069"]],[25,29,["H1961"]],[29,31,["H957"]],[31,34,["H1471"]]]},{"k":21106,"v":[[0,3,["H1323"]],[3,4,["H834"]],[4,8,["H7704"]],[8,11,["H2026"]],[11,14,["H2719"]],[14,18,["H3045"]],[18,19,["H3588"]],[19,20,["H589"]],[20,23,["H3068"]]]},{"k":21107,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,10,["H935"]],[10,11,["H413"]],[11,12,["H6865"]],[12,13,["H5019"]],[13,14,["H4428"]],[14,16,["H894"]],[16,18,["H4428"]],[18,20,["H4428"]],[20,23,["H4480","H6828"]],[23,25,["H5483"]],[25,28,["H7393"]],[28,31,["H6571"]],[31,33,["H6951"]],[33,35,["H7227"]],[35,36,["H5971"]]]},{"k":21108,"v":[[0,3,["H2026"]],[3,6,["H2719"]],[6,8,["H1323"]],[8,11,["H7704"]],[11,15,["H5414"]],[15,17,["H1785"]],[17,18,["H5921"]],[18,21,["H8210"]],[21,23,["H5550"]],[23,24,["H5921"]],[24,28,["H6965"]],[28,30,["H6793"]],[30,31,["H5921"]],[31,32,[]]]},{"k":21109,"v":[[0,4,["H5414"]],[4,5,["H4239"]],[5,7,["H6904"]],[7,10,["H2346"]],[10,14,["H2719"]],[14,18,["H5422"]],[18,20,["H4026"]]]},{"k":21110,"v":[[0,5,["H4480","H8229"]],[5,8,["H5483"]],[8,10,["H80"]],[10,12,["H3680"]],[12,15,["H2346"]],[15,17,["H7493"]],[17,20,["H4480","H6963"]],[20,23,["H6571"]],[23,27,["H1534"]],[27,31,["H7393"]],[31,35,["H935"]],[35,38,["H8179"]],[38,42,["H3996"]],[42,44,["H5892"]],[44,49,["H1234"]]]},{"k":21111,"v":[[0,3,["H6541"]],[3,6,["H5483"]],[6,10,["H7429","(H853)"]],[10,11,["H3605"]],[11,13,["H2351"]],[13,16,["H2026"]],[16,18,["H5971"]],[18,21,["H2719"]],[21,24,["H5797"]],[24,25,["H4676"]],[25,28,["H3381"]],[28,31,["H776"]]]},{"k":21112,"v":[[0,6,["H7997"]],[6,9,["H2428"]],[9,13,["H962"]],[13,16,["H7404"]],[16,21,["H2040"]],[21,23,["H2346"]],[23,25,["H5422"]],[25,27,["H2532"]],[27,28,["H1004"]],[28,32,["H7760"]],[32,34,["H68"]],[34,37,["H6086"]],[37,40,["H6083"]],[40,43,["H8432"]],[43,46,["H4325"]]]},{"k":21113,"v":[[0,6,["H1995"]],[6,9,["H7892"]],[9,11,["H7673"]],[11,14,["H6963"]],[14,17,["H3658"]],[17,20,["H3808"]],[20,21,["H5750"]],[21,22,["H8085"]]]},{"k":21114,"v":[[0,4,["H5414"]],[4,8,["H6706"]],[8,11,["H5553"]],[11,14,["H1961"]],[14,20,["H4894","H2764"]],[20,24,["H1129"]],[24,25,["H3808"]],[25,26,["H5750"]],[26,27,["H3588"]],[27,28,["H589"]],[28,30,["H3068"]],[30,32,["H1696"]],[32,34,["H5002"]],[34,36,["H136"]],[36,37,["H3069"]]]},{"k":21115,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,7,["H6865"]],[7,9,["H3808"]],[9,11,["H339"]],[11,12,["H7493"]],[12,15,["H4480","H6963"]],[15,18,["H4658"]],[18,21,["H2491"]],[21,22,["H602"]],[22,25,["H2027"]],[25,27,["H2026"]],[27,30,["H8432"]],[30,32,[]]]},{"k":21116,"v":[[0,2,["H3605"]],[2,4,["H5387"]],[4,7,["H3220"]],[7,10,["H3381"]],[10,11,["H4480","H5921"]],[11,13,["H3678"]],[13,16,["H5493","(H853)"]],[16,18,["H4598"]],[18,21,["H6584"]],[21,23,["H7553"]],[23,24,["H899"]],[24,27,["H3847"]],[27,30,["H2731"]],[30,33,["H3427"]],[33,34,["H5921"]],[34,36,["H776"]],[36,39,["H2729"]],[39,42,["H7281"]],[42,45,["H8074"]],[45,46,["H5921"]],[46,47,[]]]},{"k":21117,"v":[[0,5,["H5375"]],[5,7,["H7015"]],[7,8,["H5921"]],[8,11,["H559"]],[11,14,["H349"]],[14,17,["H6"]],[17,20,["H3427"]],[20,23,["H4480","H3220"]],[23,25,["H1984"]],[25,26,["H5892"]],[26,27,["H834"]],[27,28,["H1961"]],[28,29,["H2389"]],[29,32,["H3220"]],[32,33,["H1931"]],[33,36,["H3427"]],[36,37,["H834"]],[37,38,["H5414"]],[38,40,["H2851"]],[40,44,["H3605"]],[44,46,["H3427"]],[46,47,[]]]},{"k":21118,"v":[[0,1,["H6258"]],[1,4,["H339"]],[4,5,["H2729"]],[5,8,["H3117"]],[8,11,["H4658"]],[11,14,["H339"]],[14,15,["H834"]],[15,19,["H3220"]],[19,22,["H926"]],[22,25,["H4480","H3318"]]]},{"k":21119,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,10,["H5414"]],[10,13,["H2717"]],[13,14,["H5892"]],[14,17,["H5892"]],[17,18,["H834"]],[18,20,["H3808"]],[20,21,["H3427"]],[21,26,["H5927","(H853)"]],[26,28,["H8415"]],[28,29,["H5921"]],[29,32,["H7227"]],[32,33,["H4325"]],[33,35,["H3680"]],[35,36,[]]]},{"k":21120,"v":[[0,6,["H3381"]],[6,7,["H854"]],[7,10,["H3381"]],[10,13,["H953"]],[13,14,["H413"]],[14,16,["H5971"]],[16,19,["H5769"]],[19,22,["H3427"]],[22,27,["H8482"]],[27,30,["H776"]],[30,33,["H2723"]],[33,35,["H4480","H5769"]],[35,36,["H854"]],[36,40,["H3381"]],[40,43,["H953"]],[43,44,["H4616"]],[44,47,["H3808"]],[47,48,["H3427"]],[48,52,["H5414"]],[52,53,["H6643"]],[53,56,["H776"]],[56,59,["H2416"]]]},{"k":21121,"v":[[0,3,["H5414"]],[3,6,["H1091"]],[6,11,["H369"]],[11,17,["H1245"]],[17,21,["H3808","H5769"]],[21,23,["H4672"]],[23,24,["H5750"]],[24,25,["H5002"]],[25,27,["H136"]],[27,28,["H3069"]]]},{"k":21122,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,8,["H413"]],[8,10,["H559"]]]},{"k":21123,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,7,["H5375"]],[7,9,["H7015"]],[9,10,["H5921"]],[10,11,["H6865"]]]},{"k":21124,"v":[[0,2,["H559"]],[2,4,["H6865"]],[4,9,["H3427"]],[9,10,["H5921"]],[10,12,["H3997"]],[12,15,["H3220"]],[15,19,["H7402"]],[19,22,["H5971"]],[22,23,["H413"]],[23,24,["H7227"]],[24,25,["H339"]],[25,26,["H3541"]],[26,27,["H559"]],[27,29,["H136"]],[29,30,["H3069"]],[30,32,["H6865"]],[32,33,["H859"]],[33,35,["H559"]],[35,36,["H589"]],[36,39,["H3632"]],[39,40,["H3308"]]]},{"k":21125,"v":[[0,2,["H1366"]],[2,6,["H3820"]],[6,9,["H3220"]],[9,11,["H1129"]],[11,13,["H3634"]],[13,15,["H3308"]]]},{"k":21126,"v":[[0,3,["H1129","(H853)"]],[3,4,["H3605"]],[4,7,["H3871"]],[7,10,["H1265"]],[10,12,["H4480","H8149"]],[12,15,["H3947"]],[15,16,["H730"]],[16,18,["H4480","H3844"]],[18,20,["H6213"]],[20,21,["H8650"]],[21,22,["H5921"]],[22,23,[]]]},{"k":21127,"v":[[0,3,["H437"]],[3,5,["H4480","H1316"]],[5,8,["H6213"]],[8,10,["H4880"]],[10,12,["H1323"]],[12,15,["H839"]],[15,17,["H6213"]],[17,19,["H7175"]],[19,21,["H8127"]],[21,26,["H4480","H339"]],[26,28,["H3794"]]]},{"k":21128,"v":[[0,2,["H8336"]],[2,5,["H7553"]],[5,7,["H4480","H4714"]],[7,8,["H1961"]],[8,13,["H4666"]],[13,15,["H1961"]],[15,17,["H5251"]],[17,18,["H8504"]],[18,20,["H713"]],[20,23,["H4480","H339"]],[23,25,["H473"]],[25,26,["H1961"]],[26,29,["H4374"]],[29,30,[]]]},{"k":21129,"v":[[0,2,["H3427"]],[2,4,["H6721"]],[4,6,["H719"]],[6,7,["H1961"]],[7,9,["H7751"]],[9,11,["H2450"]],[11,14,["H6865"]],[14,16,["H1961"]],[16,21,["H2259"]]]},{"k":21130,"v":[[0,2,["H2205"]],[2,4,["H1380"]],[4,7,["H2450"]],[7,10,["H1961"]],[10,14,["H2388","H919"]],[14,15,["H3605"]],[15,17,["H591"]],[17,20,["H3220"]],[20,23,["H4419"]],[23,24,["H1961"]],[24,28,["H6149"]],[28,30,["H4627"]]]},{"k":21131,"v":[[0,3,["H6539"]],[3,6,["H3865"]],[6,9,["H6316"]],[9,10,["H1961"]],[10,13,["H2428"]],[13,15,["H376"]],[15,17,["H4421"]],[17,19,["H8518"]],[19,21,["H4043"]],[21,23,["H3553"]],[23,26,["H1992"]],[26,28,["H5414"]],[28,30,["H1926"]]]},{"k":21132,"v":[[0,2,["H1121"]],[2,4,["H719"]],[4,7,["H2428"]],[7,9,["H5921"]],[9,11,["H2346"]],[11,13,["H5439"]],[13,16,["H1575"]],[16,17,["H1961"]],[17,20,["H4026"]],[20,22,["H8518"]],[22,24,["H7982"]],[24,25,["H5921"]],[25,27,["H2346"]],[27,29,["H5439"]],[29,30,["H1992"]],[30,35,["H3634","H3308"]]]},{"k":21133,"v":[[0,1,["H8659"]],[1,4,["H5503"]],[4,9,["H4480","H7230"]],[9,11,["H3605"]],[11,14,["H1952"]],[14,16,["H3701"]],[16,17,["H1270"]],[17,18,["H913"]],[18,20,["H5777"]],[20,22,["H5414"]],[22,25,["H5801"]]]},{"k":21134,"v":[[0,1,["H3120"]],[1,2,["H8422"]],[2,4,["H4902"]],[4,5,["H1992"]],[5,8,["H7402"]],[8,10,["H5414"]],[10,12,["H5315"]],[12,14,["H120"]],[14,16,["H3627"]],[16,18,["H5178"]],[18,21,["H4627"]]]},{"k":21135,"v":[[0,4,["H4480","H1004"]],[4,6,["H8425"]],[6,7,["H5414"]],[7,10,["H5801"]],[10,12,["H5483"]],[12,14,["H6571"]],[14,16,["H6505"]]]},{"k":21136,"v":[[0,2,["H1121"]],[2,4,["H1719"]],[4,7,["H7402"]],[7,8,["H7227"]],[8,9,["H339"]],[9,12,["H5506"]],[12,15,["H3027"]],[15,17,["H7725"]],[17,21,["H814"]],[21,22,["H7161"]],[22,24,["H8127"]],[24,26,["H1894"]]]},{"k":21137,"v":[[0,1,["H758"]],[1,4,["H5503"]],[4,9,["H4480","H7230"]],[9,15,["H4639"]],[15,17,["H5414"]],[17,20,["H5801"]],[20,22,["H5306"]],[22,23,["H713"]],[23,26,["H7553"]],[26,29,["H948"]],[29,31,["H7215"]],[31,33,["H3539"]]]},{"k":21138,"v":[[0,1,["H3063"]],[1,4,["H776"]],[4,6,["H3478"]],[6,7,["H1992"]],[7,10,["H7402"]],[10,12,["H5414"]],[12,15,["H4627"]],[15,16,["H2406"]],[16,18,["H4511"]],[18,20,["H6436"]],[20,22,["H1706"]],[22,24,["H8081"]],[24,26,["H6875"]]]},{"k":21139,"v":[[0,1,["H1834"]],[1,4,["H5503"]],[4,7,["H7230"]],[7,13,["H4639"]],[13,16,["H4480","H7230"]],[16,18,["H3605"]],[18,19,["H1952"]],[19,22,["H3196"]],[22,24,["H2463"]],[24,26,["H6713"]],[26,27,["H6785"]]]},{"k":21140,"v":[[0,1,["H2051"]],[1,4,["H3120"]],[4,8,["H235"]],[8,9,["H5414"]],[9,12,["H5801"]],[12,13,["H6219"]],[13,14,["H1270"]],[14,15,["H6916"]],[15,17,["H7070"]],[17,18,["H1961"]],[18,21,["H4627"]]]},{"k":21141,"v":[[0,1,["H1719"]],[1,4,["H7402"]],[4,6,["H2667"]],[6,7,["H899"]],[7,9,["H7396"]]]},{"k":21142,"v":[[0,1,["H6152"]],[1,3,["H3605"]],[3,5,["H5387"]],[5,7,["H6938"]],[7,8,["H1992"]],[8,10,["H5503","H3027"]],[10,13,["H3733"]],[13,15,["H352"]],[15,17,["H6260"]],[17,23,["H5503"]]]},{"k":21143,"v":[[0,2,["H7402"]],[2,4,["H7614"]],[4,6,["H7484"]],[6,7,["H1992"]],[7,10,["H7402"]],[10,12,["H5414"]],[12,15,["H5801"]],[15,17,["H7218"]],[17,19,["H3605"]],[19,20,["H1314"]],[20,23,["H3605"]],[23,24,["H3368"]],[24,25,["H68"]],[25,27,["H2091"]]]},{"k":21144,"v":[[0,1,["H2771"]],[1,3,["H3656"]],[3,5,["H5729"]],[5,7,["H7402"]],[7,9,["H7614"]],[9,10,["H804"]],[10,12,["H3638"]],[12,15,["H7402"]]]},{"k":21145,"v":[[0,1,["H1992"]],[1,4,["H7402"]],[4,7,["H4360"]],[7,11,["H8504"]],[11,12,["H1545"]],[12,15,["H7553"]],[15,18,["H1595"]],[18,21,["H1264"]],[21,22,["H2280"]],[22,24,["H2256"]],[24,28,["H729"]],[28,31,["H4819"]]]},{"k":21146,"v":[[0,2,["H591"]],[2,4,["H8659"]],[4,6,["H7788"]],[6,11,["H4627"]],[11,15,["H4390"]],[15,19,["H3513","H3966"]],[19,22,["H3820"]],[22,25,["H3220"]]]},{"k":21147,"v":[[0,2,["H7751"]],[2,4,["H935"]],[4,7,["H7227"]],[7,8,["H4325"]],[8,10,["H6921"]],[10,11,["H7307"]],[11,13,["H7665"]],[13,17,["H3820"]],[17,20,["H3220"]]]},{"k":21148,"v":[[0,2,["H1952"]],[2,5,["H5801"]],[5,7,["H4627"]],[7,9,["H4419"]],[9,12,["H2259"]],[12,14,["H2388","H919"]],[14,17,["H6148"]],[17,20,["H4627"]],[20,22,["H3605"]],[22,24,["H376"]],[24,26,["H4421"]],[26,27,["H834"]],[27,33,["H3605"]],[33,35,["H6951"]],[35,36,["H834"]],[36,40,["H8432"]],[40,44,["H5307"]],[44,47,["H3820"]],[47,50,["H3220"]],[50,53,["H3117"]],[53,56,["H4658"]]]},{"k":21149,"v":[[0,2,["H4054"]],[2,4,["H7493"]],[4,7,["H6963"]],[7,10,["H2201"]],[10,13,["H2259"]]]},{"k":21150,"v":[[0,2,["H3605"]],[2,4,["H8610"]],[4,6,["H4880"]],[6,8,["H4419"]],[8,10,["H3605"]],[10,12,["H2259"]],[12,15,["H3220"]],[15,18,["H3381"]],[18,21,["H4480","H591"]],[21,24,["H5975"]],[24,25,["H413"]],[25,27,["H776"]]]},{"k":21151,"v":[[0,5,["H6963"]],[5,8,["H8085"]],[8,9,["H5921"]],[9,13,["H2199"]],[13,14,["H4751"]],[14,18,["H5927"]],[18,19,["H6083"]],[19,20,["H5921"]],[20,22,["H7218"]],[22,26,["H6428"]],[26,29,["H665"]]]},{"k":21152,"v":[[0,7,["H7139","H7144"]],[7,8,["H413"]],[8,11,["H2296"]],[11,14,["H8242"]],[14,18,["H1058"]],[18,19,["H413"]],[19,22,["H4751"]],[22,24,["H5315"]],[24,26,["H4751"]],[26,27,["H4553"]]]},{"k":21153,"v":[[0,4,["H5204"]],[4,8,["H5375"]],[8,10,["H7015"]],[10,11,["H413"]],[11,14,["H6969"]],[14,15,["H5921"]],[15,18,["H4310"]],[18,22,["H6865"]],[22,25,["H1822"]],[25,28,["H8432"]],[28,31,["H3220"]]]},{"k":21154,"v":[[0,3,["H5801"]],[3,5,["H3318"]],[5,9,["H4480","H3220"]],[9,11,["H7646"]],[11,12,["H7227"]],[12,13,["H5971"]],[13,16,["H6238"]],[16,18,["H4428"]],[18,21,["H776"]],[21,24,["H7230"]],[24,27,["H1952"]],[27,31,["H4627"]]]},{"k":21155,"v":[[0,3,["H6256"]],[3,8,["H7665"]],[8,11,["H4480","H3220"]],[11,14,["H4615"]],[14,17,["H4325"]],[17,19,["H4627"]],[19,21,["H3605"]],[21,23,["H6951"]],[23,26,["H8432"]],[26,30,["H5307"]]]},{"k":21156,"v":[[0,1,["H3605"]],[1,3,["H3427"]],[3,6,["H339"]],[6,9,["H8074"]],[9,10,["H5921"]],[10,14,["H4428"]],[14,18,["H8175","H8178"]],[18,22,["H7481"]],[22,25,["H6440"]]]},{"k":21157,"v":[[0,2,["H5503"]],[2,5,["H5971"]],[5,7,["H8319"]],[7,8,["H5921"]],[8,12,["H1961"]],[12,14,["H1091"]],[14,16,["H369"]],[16,20,["H5704","H5769"]]]},{"k":21158,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,8,["H413"]],[8,10,["H559"]]]},{"k":21159,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H559"]],[4,7,["H5057"]],[7,9,["H6865"]],[9,10,["H3541"]],[10,11,["H559"]],[11,13,["H136"]],[13,14,["H3069"]],[14,15,["H3282"]],[15,17,["H3820"]],[17,20,["H1361"]],[20,24,["H559"]],[24,25,["H589"]],[25,28,["H410"]],[28,30,["H3427"]],[30,33,["H4186"]],[33,35,["H430"]],[35,38,["H3820"]],[38,41,["H3220"]],[41,43,["H859"]],[43,46,["H120"]],[46,48,["H3808"]],[48,49,["H410"]],[49,52,["H5414"]],[52,54,["H3820"]],[54,57,["H3820"]],[57,59,["H430"]]]},{"k":21160,"v":[[0,1,["H2009"]],[1,2,["H859"]],[2,4,["H2450"]],[4,6,["H4480","H1840"]],[6,9,["H3808"]],[9,10,["H5640"]],[10,14,["H6004"]],[14,16,[]]]},{"k":21161,"v":[[0,3,["H2451"]],[3,7,["H8394"]],[7,10,["H6213"]],[10,12,["H2428"]],[12,15,["H6213"]],[15,16,["H2091"]],[16,18,["H3701"]],[18,21,["H214"]]]},{"k":21162,"v":[[0,3,["H7230"]],[3,4,["H2451"]],[4,8,["H7404"]],[8,11,["H7235"]],[11,13,["H2428"]],[13,16,["H3824"]],[16,19,["H1361"]],[19,23,["H2428"]]]},{"k":21163,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H3282"]],[7,10,["H5414","(H853)"]],[10,12,["H3820"]],[12,15,["H3820"]],[15,17,["H430"]]]},{"k":21164,"v":[[0,1,["H2009"]],[1,2,["H3651"]],[2,5,["H935"]],[5,6,["H2114"]],[6,7,["H5921"]],[7,10,["H6184"]],[10,13,["H1471"]],[13,17,["H7324"]],[17,19,["H2719"]],[19,20,["H5921"]],[20,22,["H3308"]],[22,25,["H2451"]],[25,29,["H2490"]],[29,31,["H3314"]]]},{"k":21165,"v":[[0,5,["H3381"]],[5,8,["H7845"]],[8,12,["H4191"]],[12,14,["H4463"]],[14,19,["H2491"]],[19,22,["H3820"]],[22,25,["H3220"]]]},{"k":21166,"v":[[0,4,["H559","H559"]],[4,5,["H6440"]],[5,8,["H2026"]],[8,10,["H589"]],[10,12,["H430"]],[12,14,["H859"]],[14,18,["H120"]],[18,20,["H3808"]],[20,21,["H410"]],[21,24,["H3027"]],[24,28,["H2490"]],[28,29,[]]]},{"k":21167,"v":[[0,3,["H4191"]],[3,5,["H4194"]],[5,8,["H6189"]],[8,11,["H3027"]],[11,13,["H2114"]],[13,14,["H3588"]],[14,15,["H589"]],[15,17,["H1696"]],[17,19,["H5002"]],[19,21,["H136"]],[21,22,["H3069"]]]},{"k":21168,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":21169,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,5,["H5375"]],[5,7,["H7015"]],[7,8,["H5921"]],[8,10,["H4428"]],[10,12,["H6865"]],[12,14,["H559"]],[14,17,["H3541"]],[17,18,["H559"]],[18,20,["H136"]],[20,21,["H3069"]],[21,22,["H859"]],[22,24,["H2856"]],[24,26,["H8508"]],[26,27,["H4392"]],[27,29,["H2451"]],[29,31,["H3632"]],[31,33,["H3308"]]]},{"k":21170,"v":[[0,3,["H1961"]],[3,5,["H5731"]],[5,7,["H1588"]],[7,9,["H430"]],[9,10,["H3605"]],[10,11,["H3368"]],[11,12,["H68"]],[12,15,["H4540"]],[15,17,["H124"]],[17,18,["H6357"]],[18,21,["H3095"]],[21,23,["H8658"]],[23,25,["H7718"]],[25,28,["H3471"]],[28,30,["H5601"]],[30,32,["H5306"]],[32,35,["H1304"]],[35,37,["H2091"]],[37,39,["H4399"]],[39,42,["H8596"]],[42,46,["H5345"]],[46,48,["H3559"]],[48,53,["H3117"]],[53,57,["H1254"]]]},{"k":21171,"v":[[0,1,["H859"]],[1,4,["H4473"]],[4,5,["H3742"]],[5,7,["H5526"]],[7,11,["H5414"]],[11,15,["H1961"]],[15,18,["H6944"]],[18,19,["H2022"]],[19,21,["H430"]],[21,27,["H1980"]],[27,30,["H8432"]],[30,33,["H68"]],[33,35,["H784"]]]},{"k":21172,"v":[[0,1,["H859"]],[1,3,["H8549"]],[3,6,["H1870"]],[6,9,["H4480","H3117"]],[9,13,["H1254"]],[13,14,["H5704"]],[14,15,["H5766"]],[15,17,["H4672"]],[17,19,[]]]},{"k":21173,"v":[[0,3,["H7230"]],[3,6,["H7404"]],[6,9,["H4390"]],[9,11,["H8432"]],[11,15,["H2555"]],[15,19,["H2398"]],[19,26,["H2490"]],[26,30,["H4480","H2022"]],[30,32,["H430"]],[32,36,["H6"]],[36,39,["H5526"]],[39,40,["H3742"]],[40,43,["H4480","H8432"]],[43,46,["H68"]],[46,48,["H784"]]]},{"k":21174,"v":[[0,2,["H3820"]],[2,5,["H1361"]],[5,9,["H3308"]],[9,12,["H7843"]],[12,14,["H2451"]],[14,17,["H5921"]],[17,19,["H3314"]],[19,22,["H7993"]],[22,24,["H5921"]],[24,26,["H776"]],[26,29,["H5414"]],[29,31,["H6440"]],[31,32,["H4428"]],[32,36,["H7200"]],[36,37,[]]]},{"k":21175,"v":[[0,3,["H2490"]],[3,5,["H4720"]],[5,8,["H4480","H7230"]],[8,11,["H5771"]],[11,14,["H5766"]],[14,17,["H7404"]],[17,22,["H3318"]],[22,24,["H784"]],[24,27,["H4480","H8432"]],[27,30,["H1931"]],[30,32,["H398"]],[32,37,["H5414"]],[37,40,["H665"]],[40,41,["H5921"]],[41,43,["H776"]],[43,46,["H5869"]],[46,48,["H3605"]],[48,51,["H7200"]],[51,52,[]]]},{"k":21176,"v":[[0,1,["H3605"]],[1,4,["H3045"]],[4,8,["H5971"]],[8,11,["H8074"]],[11,12,["H5921"]],[12,16,["H1961"]],[16,18,["H1091"]],[18,20,["H369"]],[20,25,["H5704","H5769"]]]},{"k":21177,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":21178,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H7760"]],[4,6,["H6440"]],[6,7,["H413"]],[7,8,["H6721"]],[8,10,["H5012"]],[10,11,["H5921"]],[11,12,[]]]},{"k":21179,"v":[[0,2,["H559"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H136"]],[6,7,["H3069"]],[7,8,["H2009"]],[8,11,["H5921"]],[11,14,["H6721"]],[14,19,["H3513"]],[19,22,["H8432"]],[22,28,["H3045"]],[28,29,["H3588"]],[29,30,["H589"]],[30,33,["H3068"]],[33,38,["H6213"]],[38,39,["H8201"]],[39,45,["H6942"]],[45,47,[]]]},{"k":21180,"v":[[0,4,["H7971"]],[4,7,["H1698"]],[7,9,["H1818"]],[9,12,["H2351"]],[12,15,["H2491"]],[15,18,["H5307"]],[18,21,["H8432"]],[21,26,["H2719"]],[26,27,["H5921"]],[27,31,["H4480","H5439"]],[31,35,["H3045"]],[35,36,["H3588"]],[36,37,["H589"]],[37,40,["H3068"]]]},{"k":21181,"v":[[0,4,["H1961"]],[4,5,["H3808"]],[5,6,["H5750"]],[6,8,["H3992"]],[8,9,["H5544"]],[9,12,["H1004"]],[12,14,["H3478"]],[14,17,["H3510"]],[17,18,["H6975"]],[18,20,["H4480","H3605"]],[20,24,["H5439"]],[24,27,["H7590"]],[27,32,["H3045"]],[32,33,["H3588"]],[33,34,["H589"]],[34,37,["H136"]],[37,38,["H3069"]]]},{"k":21182,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,10,["H6908","(H853)"]],[10,12,["H1004"]],[12,14,["H3478"]],[14,15,["H4480"]],[15,17,["H5971"]],[17,19,["H834"]],[19,22,["H6327"]],[22,26,["H6942"]],[26,31,["H5869"]],[31,34,["H1471"]],[34,38,["H3427"]],[38,39,["H5921"]],[39,41,["H127"]],[41,42,["H834"]],[42,45,["H5414"]],[45,48,["H5650"]],[48,49,["H3290"]]]},{"k":21183,"v":[[0,4,["H3427"]],[4,5,["H983"]],[5,6,["H5921"]],[6,9,["H1129"]],[9,10,["H1004"]],[10,12,["H5193"]],[12,13,["H3754"]],[13,17,["H3427"]],[17,19,["H983"]],[19,23,["H6213"]],[23,24,["H8201"]],[24,26,["H3605"]],[26,29,["H7590"]],[29,32,["H4480","H5439"]],[32,37,["H3045"]],[37,38,["H3588"]],[38,39,["H589"]],[39,42,["H3068"]],[42,44,["H430"]]]},{"k":21184,"v":[[0,3,["H6224"]],[3,4,["H8141"]],[4,7,["H6224"]],[7,11,["H8147","H6240"]],[11,15,["H2320"]],[15,17,["H1697"]],[17,20,["H3068"]],[20,21,["H1961"]],[21,22,["H413"]],[22,24,["H559"]]]},{"k":21185,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H7760"]],[4,6,["H6440"]],[6,7,["H5921"]],[7,8,["H6547"]],[8,9,["H4428"]],[9,11,["H4714"]],[11,13,["H5012"]],[13,14,["H5921"]],[14,17,["H5921"]],[17,18,["H3605"]],[18,19,["H4714"]]]},{"k":21186,"v":[[0,1,["H1696"]],[1,3,["H559"]],[3,4,["H3541"]],[4,5,["H559"]],[5,7,["H136"]],[7,8,["H3069"]],[8,9,["H2009"]],[9,12,["H5921"]],[12,14,["H6547"]],[14,15,["H4428"]],[15,17,["H4714"]],[17,19,["H1419"]],[19,20,["H8577"]],[20,22,["H7257"]],[22,25,["H8432"]],[25,28,["H2975"]],[28,29,["H834"]],[29,31,["H559"]],[31,33,["H2975"]],[33,38,["H589"]],[38,40,["H6213"]],[40,43,[]]]},{"k":21187,"v":[[0,4,["H5414"]],[4,5,["H2397"]],[5,8,["H3895"]],[8,14,["H1710"]],[14,17,["H2975"]],[17,19,["H1692"]],[19,22,["H7193"]],[22,28,["H5927"]],[28,32,["H4480","H8432"]],[32,35,["H2975"]],[35,37,["H3605"]],[37,39,["H1710"]],[39,42,["H2975"]],[42,44,["H1692"]],[44,47,["H7193"]]]},{"k":21188,"v":[[0,4,["H5203"]],[4,9,["H4057"]],[9,12,["H3605"]],[12,14,["H1710"]],[14,17,["H2975"]],[17,20,["H5307"]],[20,21,["H5921"]],[21,23,["H6440"]],[23,24,["H7704"]],[24,27,["H3808"]],[27,30,["H622"]],[30,31,["H3808"]],[31,32,["H6908"]],[32,35,["H5414"]],[35,38,["H402"]],[38,41,["H2416"]],[41,44,["H776"]],[44,48,["H5775"]],[48,51,["H8064"]]]},{"k":21189,"v":[[0,2,["H3605"]],[2,4,["H3427"]],[4,6,["H4714"]],[6,8,["H3045"]],[8,9,["H3588"]],[9,10,["H589"]],[10,13,["H3068"]],[13,14,["H3282"]],[14,17,["H1961"]],[17,19,["H4938"]],[19,21,["H7070"]],[21,24,["H1004"]],[24,26,["H3478"]]]},{"k":21190,"v":[[0,4,["H8610"]],[4,9,["H3709"]],[9,12,["H7533"]],[12,14,["H1234"]],[14,15,["H3605"]],[15,17,["H3802"]],[17,21,["H8172"]],[21,22,["H5921"]],[22,25,["H7665"]],[25,28,["H3605"]],[28,30,["H4975"]],[30,35,["H5976"]]]},{"k":21191,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,10,["H935"]],[10,12,["H2719"]],[12,13,["H5921"]],[13,17,["H3772"]],[17,18,["H120"]],[18,20,["H929"]],[20,22,["H4480"]],[22,23,[]]]},{"k":21192,"v":[[0,3,["H776"]],[3,5,["H4714"]],[5,7,["H1961"]],[7,8,["H8077"]],[8,10,["H2723"]],[10,14,["H3045"]],[14,15,["H3588"]],[15,16,["H589"]],[16,19,["H3068"]],[19,20,["H3282"]],[20,23,["H559"]],[23,25,["H2975"]],[25,29,["H589"]],[29,31,["H6213"]],[31,32,[]]]},{"k":21193,"v":[[0,1,["H2009"]],[1,2,["H3651"]],[2,5,["H413"]],[5,8,["H413"]],[8,10,["H2975"]],[10,14,["H5414","(H853)"]],[14,16,["H776"]],[16,18,["H4714"]],[18,20,["H2723","H2721"]],[20,22,["H8077"]],[22,25,["H4480","H4024"]],[25,27,["H5482"]],[27,29,["H5704"]],[29,31,["H1366"]],[31,33,["H3568"]]]},{"k":21194,"v":[[0,1,["H3808"]],[1,2,["H7272"]],[2,4,["H120"]],[4,6,["H5674"]],[6,9,["H3808"]],[9,10,["H7272"]],[10,12,["H929"]],[12,14,["H5674"]],[14,17,["H3808"]],[17,21,["H3427"]],[21,22,["H705"]],[22,23,["H8141"]]]},{"k":21195,"v":[[0,4,["H5414","(H853)"]],[4,6,["H776"]],[6,8,["H4714"]],[8,9,["H8077"]],[9,12,["H8432"]],[12,15,["H776"]],[15,18,["H8074"]],[18,21,["H5892"]],[21,22,["H8432"]],[22,24,["H5892"]],[24,28,["H2717"]],[28,30,["H1961"]],[30,31,["H8077"]],[31,32,["H705"]],[32,33,["H8141"]],[33,37,["H6327","(H853)"]],[37,39,["H4714"]],[39,42,["H1471"]],[42,45,["H2219"]],[45,49,["H776"]]]},{"k":21196,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,9,["H4480","H7093"]],[9,11,["H705"]],[11,12,["H8141"]],[12,15,["H6908","(H853)"]],[15,17,["H4714"]],[17,18,["H4480"]],[18,20,["H5971"]],[20,21,["H834","H8033"]],[21,24,["H6327"]]]},{"k":21197,"v":[[0,5,["H7725","(H853)"]],[5,7,["H7622"]],[7,9,["H4714"]],[9,15,["H7725"]],[15,18,["H776"]],[18,20,["H6624"]],[20,21,["H5921"]],[21,23,["H776"]],[23,26,["H4351"]],[26,30,["H1961"]],[30,31,["H8033"]],[31,33,["H8217"]],[33,34,["H4467"]]]},{"k":21198,"v":[[0,3,["H1961"]],[3,5,["H8217"]],[5,6,["H4480"]],[6,8,["H4467"]],[8,9,["H3808"]],[9,13,["H5375"]],[13,15,["H5750"]],[15,16,["H5921"]],[16,18,["H1471"]],[18,22,["H4591"]],[22,28,["H1115"]],[28,29,["H7287"]],[29,32,["H1471"]]]},{"k":21199,"v":[[0,4,["H1961"]],[4,5,["H3808"]],[5,6,["H5750"]],[6,8,["H4009"]],[8,11,["H1004"]],[11,13,["H3478"]],[13,19,["H2142","H5771"]],[19,23,["H6437"]],[23,24,["H310"]],[24,29,["H3045"]],[29,30,["H3588"]],[30,31,["H589"]],[31,34,["H136"]],[34,35,["H3069"]]]},{"k":21200,"v":[[0,5,["H1961"]],[5,8,["H7651"]],[8,10,["H6242"]],[10,11,["H8141"]],[11,14,["H7223"]],[14,18,["H259"]],[18,22,["H2320"]],[22,24,["H1697"]],[24,27,["H3068"]],[27,28,["H1961"]],[28,29,["H413"]],[29,31,["H559"]]]},{"k":21201,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H5019"]],[4,5,["H4428"]],[5,7,["H894"]],[7,8,["(H853)"]],[8,10,["H2428"]],[10,12,["H5647"]],[12,14,["H1419"]],[14,15,["H5656"]],[15,16,["H413"]],[16,17,["H6865"]],[17,18,["H3605"]],[18,19,["H7218"]],[19,22,["H7139"]],[22,24,["H3605"]],[24,25,["H3802"]],[25,27,["H4803"]],[27,29,["H1961"]],[29,31,["H3808"]],[31,32,["H7939"]],[32,35,["H2428"]],[35,37,["H4480","H6865"]],[37,38,["H5921"]],[38,40,["H5656"]],[40,41,["H834"]],[41,44,["H5647"]],[44,45,["H5921"]],[45,46,[]]]},{"k":21202,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,10,["H5414","(H853)"]],[10,12,["H776"]],[12,14,["H4714"]],[14,16,["H5019"]],[16,17,["H4428"]],[17,19,["H894"]],[19,23,["H5375"]],[23,25,["H1995"]],[25,27,["H7997"]],[27,29,["H7998"]],[29,31,["H962"]],[31,33,["H957"]],[33,37,["H1961"]],[37,39,["H7939"]],[39,42,["H2428"]]]},{"k":21203,"v":[[0,3,["H5414"]],[3,4,["(H853)"]],[4,6,["H776"]],[6,8,["H4714"]],[8,11,["H6468"]],[11,12,["H834"]],[12,14,["H5647"]],[14,17,["H834"]],[17,19,["H6213"]],[19,22,["H5002"]],[22,24,["H136"]],[24,25,["H3069"]]]},{"k":21204,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,8,["H7161"]],[8,11,["H1004"]],[11,13,["H3478"]],[13,16,["H6779"]],[16,20,["H5414"]],[20,23,["H6610"]],[23,26,["H6310"]],[26,29,["H8432"]],[29,35,["H3045"]],[35,36,["H3588"]],[36,37,["H589"]],[37,40,["H3068"]]]},{"k":21205,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,8,["H413"]],[8,10,["H559"]]]},{"k":21206,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H5012"]],[4,6,["H559"]],[6,7,["H3541"]],[7,8,["H559"]],[8,10,["H136"]],[10,11,["H3069"]],[11,12,["H3213"]],[12,14,["H1929"]],[14,17,["H3117"]]]},{"k":21207,"v":[[0,1,["H3588"]],[1,3,["H3117"]],[3,5,["H7138"]],[5,8,["H3117"]],[8,11,["H3068"]],[11,13,["H7138"]],[13,15,["H6051"]],[15,16,["H3117"]],[16,19,["H1961"]],[19,21,["H6256"]],[21,24,["H1471"]]]},{"k":21208,"v":[[0,3,["H2719"]],[3,5,["H935"]],[5,7,["H4714"]],[7,10,["H2479"]],[10,12,["H1961"]],[12,14,["H3568"]],[14,17,["H2491"]],[17,19,["H5307"]],[19,21,["H4714"]],[21,26,["H3947"]],[26,28,["H1995"]],[28,31,["H3247"]],[31,35,["H2040"]]]},{"k":21209,"v":[[0,1,["H3568"]],[1,3,["H6316"]],[3,5,["H3865"]],[5,7,["H3605"]],[7,10,["H6154"]],[10,12,["H3552"]],[12,15,["H1121"]],[15,18,["H776"]],[18,22,["H1285"]],[22,24,["H5307"]],[24,25,["H854"]],[25,29,["H2719"]]]},{"k":21210,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,8,["H5564"]],[8,9,["H4714"]],[9,11,["H5307"]],[11,14,["H1347"]],[14,17,["H5797"]],[17,20,["H3381"]],[20,23,["H4480","H4024"]],[23,25,["H5482"]],[25,28,["H5307"]],[28,33,["H2719"]],[33,34,["H5002"]],[34,36,["H136"]],[36,37,["H3069"]]]},{"k":21211,"v":[[0,5,["H8074"]],[5,8,["H8432"]],[8,11,["H776"]],[11,14,["H8074"]],[14,17,["H5892"]],[17,19,["H1961"]],[19,22,["H8432"]],[22,25,["H5892"]],[25,28,["H2717"]]]},{"k":21212,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,13,["H5414"]],[13,15,["H784"]],[15,17,["H4714"]],[17,20,["H3605"]],[20,22,["H5826"]],[22,25,["H7665"]]]},{"k":21213,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H4397"]],[5,7,["H3318"]],[7,8,["H4480","H6440"]],[8,11,["H6716"]],[11,13,["(H853)"]],[13,15,["H983"]],[15,16,["H3568"]],[16,17,["H2729"]],[17,20,["H2479"]],[20,22,["H1961"]],[22,28,["H3117"]],[28,30,["H4714"]],[30,31,["H3588"]],[31,32,["H2009"]],[32,34,["H935"]]]},{"k":21214,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,9,["(H853)"]],[9,11,["H1995"]],[11,13,["H4714"]],[13,15,["H7673"]],[15,18,["H3027"]],[18,20,["H5019"]],[20,21,["H4428"]],[21,23,["H894"]]]},{"k":21215,"v":[[0,1,["H1931"]],[1,4,["H5971"]],[4,5,["H854"]],[5,8,["H6184"]],[8,11,["H1471"]],[11,14,["H935"]],[14,16,["H7843"]],[16,18,["H776"]],[18,22,["H7324"]],[22,24,["H2719"]],[24,25,["H5921"]],[25,26,["H4714"]],[26,28,["H4390","(H853)"]],[28,30,["H776"]],[30,33,["H2491"]]]},{"k":21216,"v":[[0,4,["H5414"]],[4,6,["H2975"]],[6,7,["H2724"]],[7,9,["H4376","(H853)"]],[9,11,["H776"]],[11,14,["H3027"]],[14,17,["H7451"]],[17,24,["H8074","H776"]],[24,29,["H4393"]],[29,32,["H3027"]],[32,34,["H2114"]],[34,35,["H589"]],[35,37,["H3068"]],[37,39,["H1696"]],[39,40,[]]]},{"k":21217,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,9,["H6"]],[9,11,["H1544"]],[11,17,["H457"]],[17,19,["H7673"]],[19,22,["H4480","H5297"]],[22,26,["H1961"]],[26,27,["H3808"]],[27,28,["H5750"]],[28,30,["H5387"]],[30,33,["H4480","H776"]],[33,35,["H4714"]],[35,39,["H5414"]],[39,41,["H3374"]],[41,44,["H776"]],[44,46,["H4714"]]]},{"k":21218,"v":[[0,6,["H8074","(H853)","H6624"]],[6,9,["H5414"]],[9,10,["H784"]],[10,12,["H6814"]],[12,15,["H6213"]],[15,16,["H8201"]],[16,18,["H4996"]]]},{"k":21219,"v":[[0,4,["H8210"]],[4,6,["H2534"]],[6,7,["H5921"]],[7,8,["H5512"]],[8,10,["H4581"]],[10,12,["H4714"]],[12,17,["H3772","(H853)"]],[17,19,["H1995"]],[19,21,["H4996"]]]},{"k":21220,"v":[[0,4,["H5414"]],[4,5,["H784"]],[5,7,["H4714"]],[7,8,["H5512"]],[8,12,["H2342","H2342"]],[12,14,["H4996"]],[14,16,["H1961"]],[16,18,["H1234"]],[18,20,["H5297"]],[20,23,["H6862"]],[23,24,["H3119"]]]},{"k":21221,"v":[[0,3,["H970"]],[3,5,["H205"]],[5,8,["H6364"]],[8,10,["H5307"]],[10,13,["H2719"]],[13,15,["H2007"]],[15,18,["H1980"]],[18,20,["H7628"]]]},{"k":21222,"v":[[0,2,["H8471"]],[2,5,["H3117"]],[5,8,["H2820"]],[8,12,["H7665"]],[12,13,["H8033","(H853)"]],[13,15,["H4133"]],[15,17,["H4714"]],[17,20,["H1347"]],[20,23,["H5797"]],[23,25,["H7673"]],[25,30,["H1931"]],[30,32,["H6051"]],[32,34,["H3680"]],[34,38,["H1323"]],[38,40,["H1980"]],[40,42,["H7628"]]]},{"k":21223,"v":[[0,4,["H6213"]],[4,5,["H8201"]],[5,7,["H4714"]],[7,11,["H3045"]],[11,12,["H3588"]],[12,13,["H589"]],[13,16,["H3068"]]]},{"k":21224,"v":[[0,5,["H1961"]],[5,8,["H259","H6240"]],[8,9,["H8141"]],[9,12,["H7223"]],[12,16,["H7651"]],[16,20,["H2320"]],[20,23,["H1697"]],[23,26,["H3068"]],[26,27,["H1961"]],[27,28,["H413"]],[28,30,["H559"]]]},{"k":21225,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,6,["H7665","(H853)"]],[6,8,["H2220"]],[8,10,["H6547"]],[10,11,["H4428"]],[11,13,["H4714"]],[13,15,["H2009"]],[15,18,["H3808"]],[18,21,["H2280"]],[21,24,["H5414","H7499"]],[24,26,["H7760"]],[26,28,["H2848"]],[28,30,["H2280"]],[30,35,["H2388"]],[35,37,["H8610"]],[37,39,["H2719"]]]},{"k":21226,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,10,["H413"]],[10,11,["H6547"]],[11,12,["H4428"]],[12,14,["H4714"]],[14,17,["H7665","(H853)"]],[17,19,["H2220","(H853)"]],[19,21,["H2389"]],[21,26,["H7665"]],[26,30,["(H853)"]],[30,32,["H2719"]],[32,34,["H5307"]],[34,38,["H4480","H3027"]]]},{"k":21227,"v":[[0,4,["H6327","(H853)"]],[4,6,["H4714"]],[6,9,["H1471"]],[9,12,["H2219"]],[12,16,["H776"]]]},{"k":21228,"v":[[0,4,["H2388","(H853)"]],[4,6,["H2220"]],[6,9,["H4428"]],[9,11,["H894"]],[11,13,["H5414","(H853)"]],[13,15,["H2719"]],[15,18,["H3027"]],[18,22,["H7665","(H853)"]],[22,23,["H6547"]],[23,24,["H2220"]],[24,28,["H5008"]],[28,29,["H6440"]],[29,33,["H5009"]],[33,37,["H2491"]],[37,38,[]]]},{"k":21229,"v":[[0,4,["H2388","(H853)"]],[4,6,["H2220"]],[6,9,["H4428"]],[9,11,["H894"]],[11,14,["H2220"]],[14,16,["H6547"]],[16,19,["H5307"]],[19,23,["H3045"]],[23,24,["H3588"]],[24,25,["H589"]],[25,28,["H3068"]],[28,32,["H5414"]],[32,34,["H2719"]],[34,37,["H3027"]],[37,40,["H4428"]],[40,42,["H894"]],[42,48,["H5186","(H853)"]],[48,49,["H413"]],[49,51,["H776"]],[51,53,["H4714"]]]},{"k":21230,"v":[[0,4,["H6327","(H853)"]],[4,6,["H4714"]],[6,9,["H1471"]],[9,11,["H2219"]],[11,15,["H776"]],[15,19,["H3045"]],[19,20,["H3588"]],[20,21,["H589"]],[21,24,["H3068"]]]},{"k":21231,"v":[[0,5,["H1961"]],[5,8,["H259","H6240"]],[8,9,["H8141"]],[9,12,["H7992"]],[12,16,["H259"]],[16,20,["H2320"]],[20,23,["H1697"]],[23,26,["H3068"]],[26,27,["H1961"]],[27,28,["H413"]],[28,30,["H559"]]]},{"k":21232,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H6547"]],[6,7,["H4428"]],[7,9,["H4714"]],[9,11,["H413"]],[11,13,["H1995"]],[13,14,["H413","H4310"]],[14,17,["H1819"]],[17,20,["H1433"]]]},{"k":21233,"v":[[0,1,["H2009"]],[1,3,["H804"]],[3,6,["H730"]],[6,8,["H3844"]],[8,10,["H3303"]],[10,11,["H6057"]],[11,15,["H6751"]],[15,16,["H2793"]],[16,20,["H1362"]],[20,21,["H6967"]],[21,24,["H6788"]],[24,25,["H1961"]],[25,26,["H996"]],[26,29,["H5688"]]]},{"k":21234,"v":[[0,2,["H4325"]],[2,5,["H1431"]],[5,7,["H8415"]],[7,12,["H7311"]],[12,13,["H854"]],[13,15,["H5104"]],[15,16,["H1980"]],[16,18,["H5439"]],[18,20,["H4302"]],[20,23,["H7971"]],[23,26,["H8585"]],[26,27,["H413"]],[27,28,["H3605"]],[28,30,["H6086"]],[30,33,["H7704"]]]},{"k":21235,"v":[[0,1,["H5921","H3651"]],[1,3,["H6967"]],[3,5,["H1361"]],[5,7,["H4480","H3605"]],[7,9,["H6086"]],[9,12,["H7704"]],[12,15,["H5634"]],[15,17,["H7235"]],[17,20,["H6288"]],[20,22,["H748"]],[22,26,["H7227"]],[26,28,["H4480","H4325"]],[28,32,["H7971"]]]},{"k":21236,"v":[[0,1,["H3605"]],[1,3,["H5775"]],[3,5,["H8064"]],[5,8,["H7077"]],[8,11,["H5589"]],[11,13,["H8478"]],[13,15,["H6288"]],[15,17,["H3605"]],[17,19,["H2416"]],[19,22,["H7704"]],[22,26,["H3205"]],[26,30,["H6738"]],[30,31,["H3427"]],[31,32,["H3605"]],[32,33,["H7227"]],[33,34,["H1471"]]]},{"k":21237,"v":[[0,4,["H3302"]],[4,7,["H1433"]],[7,10,["H753"]],[10,13,["H1808"]],[13,14,["H3588"]],[14,16,["H8328"]],[16,17,["H1961"]],[17,18,["H413"]],[18,19,["H7227"]],[19,20,["H4325"]]]},{"k":21238,"v":[[0,2,["H730"]],[2,5,["H1588"]],[5,7,["H430"]],[7,9,["H3808"]],[9,10,["H6004"]],[10,14,["H1265"]],[14,17,["H1819","H3808","H413"]],[17,19,["H5589"]],[19,23,["H6196"]],[23,24,["H1961"]],[24,25,["H3808"]],[25,28,["H6288"]],[28,29,["H3808"]],[29,30,["H3605"]],[30,31,["H6086"]],[31,34,["H1588"]],[34,36,["H430"]],[36,38,["H1819"]],[38,39,["H413"]],[39,43,["H3308"]]]},{"k":21239,"v":[[0,3,["H6213"]],[3,5,["H3303"]],[5,8,["H7230"]],[8,11,["H1808"]],[11,14,["H3605"]],[14,16,["H6086"]],[16,18,["H5731"]],[18,19,["H834"]],[19,23,["H1588"]],[23,25,["H430"]],[25,26,["H7065"]],[26,27,[]]]},{"k":21240,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H3282","H834"]],[7,11,["H1361"]],[11,14,["H6967"]],[14,19,["H5414"]],[19,21,["H6788"]],[21,22,["H413","H996"]],[22,25,["H5688"]],[25,28,["H3824"]],[28,31,["H7311"]],[31,34,["H1363"]]]},{"k":21241,"v":[[0,4,["H5414"]],[4,8,["H3027"]],[8,12,["H352"]],[12,15,["H1471"]],[15,19,["H6213","H6213"]],[19,26,["H1644"]],[26,29,["H7562"]]]},{"k":21242,"v":[[0,2,["H2114"]],[2,4,["H6184"]],[4,7,["H1471"]],[7,11,["H3772"]],[11,14,["H5203"]],[14,16,["H413"]],[16,18,["H2022"]],[18,21,["H3605"]],[21,23,["H1516"]],[23,25,["H1808"]],[25,27,["H5307"]],[27,30,["H6288"]],[30,32,["H7665"]],[32,34,["H3605"]],[34,36,["H650"]],[36,39,["H776"]],[39,41,["H3605"]],[41,43,["H5971"]],[43,46,["H776"]],[46,49,["H3381"]],[49,52,["H4480","H6738"]],[52,55,["H5203"]],[55,56,[]]]},{"k":21243,"v":[[0,1,["H5921"]],[1,3,["H4658"]],[3,5,["H3605"]],[5,7,["H5775"]],[7,10,["H8064"]],[10,11,["H7931"]],[11,13,["H3605"]],[13,15,["H2416"]],[15,18,["H7704"]],[18,20,["H1961"]],[20,21,["H413"]],[21,23,["H6288"]]]},{"k":21244,"v":[[0,3,["H4616"]],[3,4,["H834"]],[4,5,["H3808"]],[5,7,["H3605"]],[7,9,["H6086"]],[9,12,["H4325"]],[12,14,["H1361"]],[14,17,["H6967"]],[17,18,["H3808"]],[18,20,["H5414","(H853)"]],[20,22,["H6788"]],[22,23,["H413","H996"]],[23,26,["H5688"]],[26,27,["H3808"]],[27,29,["H352"]],[29,31,["H5975"]],[31,34,["H1363"]],[34,35,["H3605"]],[35,37,["H8354"]],[37,38,["H4325"]],[38,39,["H3588"]],[39,42,["H3605"]],[42,43,["H5414"]],[43,45,["H4194"]],[45,46,["H413"]],[46,49,["H8482"]],[49,52,["H776"]],[52,55,["H8432"]],[55,58,["H1121"]],[58,60,["H120"]],[60,61,["H413"]],[61,65,["H3381"]],[65,68,["H953"]]]},{"k":21245,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,8,["H3117"]],[8,12,["H3381"]],[12,15,["H7585"]],[15,19,["H56"]],[19,21,["H3680","(H853)"]],[21,23,["H8415"]],[23,24,["H5921"]],[24,28,["H4513"]],[28,30,["H5104"]],[30,34,["H7227"]],[34,35,["H4325"]],[35,37,["H3607"]],[37,41,["H3844"]],[41,43,["H6937"]],[43,44,["H5921"]],[44,47,["H3605"]],[47,49,["H6086"]],[49,52,["H7704"]],[52,53,["H5969"]],[53,54,["H5921"]],[54,55,[]]]},{"k":21246,"v":[[0,4,["H1471"]],[4,6,["H7493"]],[6,9,["H4480","H6963"]],[9,12,["H4658"]],[12,17,["H3381","(H853)"]],[17,19,["H7585"]],[19,20,["H854"]],[20,23,["H3381"]],[23,26,["H953"]],[26,28,["H3605"]],[28,30,["H6086"]],[30,32,["H5731"]],[32,34,["H4005"]],[34,36,["H2896"]],[36,38,["H3844"]],[38,39,["H3605"]],[39,41,["H8354"]],[41,42,["H4325"]],[42,45,["H5162"]],[45,49,["H8482"]],[49,52,["H776"]]]},{"k":21247,"v":[[0,1,["H1992"]],[1,2,["H1571"]],[2,4,["H3381"]],[4,6,["H7585"]],[6,7,["H854"]],[7,9,["H413"]],[9,13,["H2491"]],[13,16,["H2719"]],[16,22,["H2220"]],[22,24,["H3427"]],[24,27,["H6738"]],[27,30,["H8432"]],[30,33,["H1471"]]]},{"k":21248,"v":[[0,1,["H413"]],[1,2,["H4310"]],[2,6,["H1819","H3602"]],[6,8,["H3519"]],[8,11,["H1433"]],[11,14,["H6086"]],[14,16,["H5731"]],[16,22,["H3381"]],[22,23,["H854"]],[23,25,["H6086"]],[25,27,["H5731"]],[27,28,["H413"]],[28,31,["H8482"]],[31,34,["H776"]],[34,37,["H7901"]],[37,40,["H8432"]],[40,43,["H6189"]],[43,44,["H854"]],[44,48,["H2491"]],[48,51,["H2719"]],[51,52,["H1931"]],[52,54,["H6547"]],[54,56,["H3605"]],[56,58,["H1995"]],[58,59,["H5002"]],[59,61,["H136"]],[61,62,["H3069"]]]},{"k":21249,"v":[[0,5,["H1961"]],[5,8,["H8147","H6240"]],[8,9,["H8141"]],[9,12,["H8147","H6240"]],[12,13,["H2320"]],[13,16,["H259"]],[16,20,["H2320"]],[20,23,["H1697"]],[23,26,["H3068"]],[26,27,["H1961"]],[27,28,["H413"]],[28,30,["H559"]]]},{"k":21250,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,5,["H5375"]],[5,7,["H7015"]],[7,8,["H5921"]],[8,9,["H6547"]],[9,10,["H4428"]],[10,12,["H4714"]],[12,14,["H559"]],[14,15,["H413"]],[15,19,["H1819"]],[19,22,["H3715"]],[22,25,["H1471"]],[25,27,["H859"]],[27,31,["H8577"]],[31,34,["H3220"]],[34,38,["H1518"]],[38,41,["H5104"]],[41,43,["H1804"]],[43,45,["H4325"]],[45,48,["H7272"]],[48,50,["H7511"]],[50,52,["H5104"]]]},{"k":21251,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,10,["H6566","(H853)"]],[10,12,["H7568"]],[12,13,["H5921"]],[13,17,["H6951"]],[17,19,["H7227"]],[19,20,["H5971"]],[20,26,["H5927"]],[26,29,["H2764"]]]},{"k":21252,"v":[[0,4,["H5203"]],[4,8,["H776"]],[8,13,["H2904"]],[13,14,["H5921"]],[14,16,["H6440"]],[16,17,["H7704"]],[17,21,["H3605"]],[21,23,["H5775"]],[23,26,["H8064"]],[26,28,["H7931"]],[28,29,["H5921"]],[29,34,["H7646"]],[34,36,["H2416"]],[36,39,["H3605"]],[39,40,["H776"]],[40,41,["H4480"]],[41,42,[]]]},{"k":21253,"v":[[0,4,["H5414","(H853)"]],[4,6,["H1320"]],[6,7,["H5921"]],[7,9,["H2022"]],[9,11,["H4390"]],[11,13,["H1516"]],[13,16,["H7419"]]]},{"k":21254,"v":[[0,4,["H8248"]],[4,7,["H4480","H1818"]],[7,9,["H776"]],[9,12,["H6824"]],[12,14,["H413"]],[14,16,["H2022"]],[16,19,["H650"]],[19,22,["H4390"]],[22,23,["H4480"]],[23,24,[]]]},{"k":21255,"v":[[0,7,["H3518"]],[7,10,["H3680"]],[10,12,["H8064"]],[12,18,["H6937","(H853)","H3556"]],[18,21,["H3680"]],[21,23,["H8121"]],[23,26,["H6051"]],[26,29,["H3394"]],[29,31,["H3808"]],[31,32,["H215"]],[32,34,["H216"]]]},{"k":21256,"v":[[0,1,["H3605"]],[1,3,["H216"]],[3,4,["H3974"]],[4,6,["H8064"]],[6,10,["H6937"]],[10,11,["H5921"]],[11,14,["H5414"]],[14,15,["H2822"]],[15,16,["H5921"]],[16,18,["H776"]],[18,19,["H5002"]],[19,21,["H136"]],[21,22,["H3069"]]]},{"k":21257,"v":[[0,4,["H3707"]],[4,6,["H3820"]],[6,8,["H7227"]],[8,9,["H5971"]],[9,13,["H935"]],[13,15,["H7667"]],[15,18,["H1471"]],[18,19,["H5921"]],[19,21,["H776"]],[21,22,["H834"]],[22,25,["H3808"]],[25,26,["H3045"]]]},{"k":21258,"v":[[0,7,["H8074","H5971","H7227"]],[7,8,["H5921"]],[8,12,["H4428"]],[12,16,["H8175","H8178"]],[16,17,["H5921"]],[17,22,["H5774"]],[22,24,["H2719"]],[24,25,["H5921","H6440"]],[25,30,["H2729"]],[30,33,["H7281"]],[33,35,["H376"]],[35,39,["H5315"]],[39,42,["H3117"]],[42,45,["H4658"]]]},{"k":21259,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,8,["H2719"]],[8,11,["H4428"]],[11,13,["H894"]],[13,16,["H935"]],[16,17,[]]]},{"k":21260,"v":[[0,3,["H2719"]],[3,6,["H1368"]],[6,11,["H1995"]],[11,13,["H5307"]],[13,15,["H6184"]],[15,18,["H1471"]],[18,19,["H3605"]],[19,25,["H7703","(H853)"]],[25,27,["H1347"]],[27,29,["H4714"]],[29,31,["H3605"]],[31,33,["H1995"]],[33,37,["H8045"]]]},{"k":21261,"v":[[0,3,["H6"]],[3,4,["(H853)"]],[4,5,["H3605"]],[5,7,["H929"]],[7,10,["H4480","H5921"]],[10,12,["H7227"]],[12,13,["H4325"]],[13,14,["H3808"]],[14,17,["H7272"]],[17,19,["H120"]],[19,20,["H1804"]],[20,23,["H5750"]],[23,24,["H3808"]],[24,26,["H6541"]],[26,28,["H929"]],[28,29,["H1804"]],[29,30,[]]]},{"k":21262,"v":[[0,1,["H227"]],[1,7,["H8257","H4325"]],[7,11,["H5104"]],[11,13,["H1980"]],[13,15,["H8081"]],[15,16,["H5002"]],[16,18,["H136"]],[18,19,["H3069"]]]},{"k":21263,"v":[[0,4,["H5414","(H853)"]],[4,6,["H776"]],[6,8,["H4714"]],[8,9,["H8077"]],[9,12,["H776"]],[12,15,["H8074"]],[15,21,["H4480","H4393"]],[21,25,["H5221","(H853)"]],[25,26,["H3605"]],[26,29,["H3427"]],[29,34,["H3045"]],[34,35,["H3588"]],[35,36,["H589"]],[36,39,["H3068"]]]},{"k":21264,"v":[[0,1,["H1931"]],[1,4,["H7015"]],[4,8,["H6969"]],[8,11,["H1323"]],[11,14,["H1471"]],[14,16,["H6969"]],[16,20,["H6969"]],[20,24,["H5921"]],[24,25,["H4714"]],[25,27,["H5921"]],[27,28,["H3605"]],[28,30,["H1995"]],[30,31,["H5002"]],[31,33,["H136"]],[33,34,["H3069"]]]},{"k":21265,"v":[[0,4,["H1961"]],[4,8,["H8147","H6240"]],[8,9,["H8141"]],[9,12,["H2568","H6240"]],[12,16,["H2320"]],[16,19,["H1697"]],[19,22,["H3068"]],[22,23,["H1961"]],[23,24,["H413"]],[24,26,["H559"]]]},{"k":21266,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H5091"]],[4,5,["H5921"]],[5,7,["H1995"]],[7,9,["H4714"]],[9,13,["H3381"]],[13,18,["H1323"]],[18,21,["H117"]],[21,22,["H1471"]],[22,23,["H413"]],[23,26,["H8482"]],[26,29,["H776"]],[29,30,["H854"]],[30,34,["H3381"]],[34,37,["H953"]]]},{"k":21267,"v":[[0,1,["H4480","H4310"]],[1,6,["H5276"]],[6,8,["H3381"]],[8,12,["H7901"]],[12,13,["H854"]],[13,15,["H6189"]]]},{"k":21268,"v":[[0,3,["H5307"]],[3,6,["H8432"]],[6,11,["H2491"]],[11,14,["H2719"]],[14,17,["H5414"]],[17,20,["H2719"]],[20,21,["H4900"]],[21,24,["H3605"]],[24,26,["H1995"]]]},{"k":21269,"v":[[0,2,["H410"]],[2,5,["H1368"]],[5,7,["H1696"]],[7,13,["H4480","H8432"]],[13,15,["H7585"]],[15,16,["H854"]],[16,19,["H5826"]],[19,24,["H3381"]],[24,26,["H7901"]],[26,27,["H6189"]],[27,28,["H2491"]],[28,31,["H2719"]]]},{"k":21270,"v":[[0,1,["H804"]],[1,3,["H8033"]],[3,5,["H3605"]],[5,7,["H6951"]],[7,9,["H6913"]],[9,11,["H5439"]],[11,13,["H3605"]],[13,16,["H2491"]],[16,17,["H5307"]],[17,20,["H2719"]]]},{"k":21271,"v":[[0,1,["H834"]],[1,2,["H6913"]],[2,4,["H5414"]],[4,7,["H3411"]],[7,10,["H953"]],[10,13,["H6951"]],[13,14,["H1961"]],[14,16,["H5439"]],[16,18,["H6900"]],[18,19,["H3605"]],[19,22,["H2491"]],[22,23,["H5307"]],[23,26,["H2719"]],[26,27,["H834"]],[27,28,["H5414"]],[28,29,["H2851"]],[29,32,["H776"]],[32,35,["H2416"]]]},{"k":21272,"v":[[0,1,["H8033"]],[1,3,["H5867"]],[3,5,["H3605"]],[5,7,["H1995"]],[7,9,["H5439"]],[9,11,["H6900"]],[11,12,["H3605"]],[12,15,["H2491"]],[15,16,["H5307"]],[16,19,["H2719"]],[19,20,["H834"]],[20,23,["H3381"]],[23,24,["H6189"]],[24,25,["H413"]],[25,28,["H8482"]],[28,31,["H776"]],[31,32,["H834"]],[32,33,["H5414"]],[33,35,["H2851"]],[35,38,["H776"]],[38,41,["H2416"]],[41,45,["H5375"]],[45,47,["H3639"]],[47,48,["H854"]],[48,52,["H3381"]],[52,55,["H953"]]]},{"k":21273,"v":[[0,3,["H5414"]],[3,6,["H4904"]],[6,9,["H8432"]],[9,12,["H2491"]],[12,14,["H3605"]],[14,16,["H1995"]],[16,18,["H6913"]],[18,21,["H5439"]],[21,23,["H3605"]],[23,26,["H6189"]],[26,27,["H2491"]],[27,30,["H2719"]],[30,31,["H3588"]],[31,33,["H2851"]],[33,35,["H5414"]],[35,38,["H776"]],[38,41,["H2416"]],[41,45,["H5375"]],[45,47,["H3639"]],[47,48,["H854"]],[48,52,["H3381"]],[52,55,["H953"]],[55,58,["H5414"]],[58,61,["H8432"]],[61,66,["H2491"]]]},{"k":21274,"v":[[0,1,["H8033"]],[1,3,["H4902"]],[3,4,["H8422"]],[4,6,["H3605"]],[6,8,["H1995"]],[8,10,["H6913"]],[10,13,["H5439"]],[13,15,["H3605"]],[15,18,["H6189"]],[18,19,["H2490"]],[19,22,["H2719"]],[22,23,["H3588"]],[23,25,["H5414"]],[25,27,["H2851"]],[27,30,["H776"]],[30,33,["H2416"]]]},{"k":21275,"v":[[0,4,["H3808"]],[4,5,["H7901"]],[5,6,["H854"]],[6,8,["H1368"]],[8,11,["H5307"]],[11,14,["H4480","H6189"]],[14,15,["H834"]],[15,18,["H3381"]],[18,20,["H7585"]],[20,23,["H3627"]],[23,25,["H4421"]],[25,29,["H5414","(H853)"]],[29,31,["H2719"]],[31,32,["H8478"]],[32,34,["H7218"]],[34,37,["H5771"]],[37,39,["H1961"]],[39,40,["H5921"]],[40,42,["H6106"]],[42,43,["H3588"]],[43,47,["H2851"]],[47,50,["H1368"]],[50,53,["H776"]],[53,56,["H2416"]]]},{"k":21276,"v":[[0,2,["H859"]],[2,5,["H7665"]],[5,8,["H8432"]],[8,11,["H6189"]],[11,14,["H7901"]],[14,15,["H854"]],[15,19,["H2491"]],[19,22,["H2719"]]]},{"k":21277,"v":[[0,1,["H8033"]],[1,3,["H123"]],[3,5,["H4428"]],[5,7,["H3605"]],[7,9,["H5387"]],[9,10,["H834"]],[10,13,["H1369"]],[13,15,["H5414"]],[15,16,["H854"]],[16,20,["H2491"]],[20,23,["H2719"]],[23,24,["H1992"]],[24,26,["H7901"]],[26,27,["H854"]],[27,29,["H6189"]],[29,31,["H854"]],[31,35,["H3381"]],[35,38,["H953"]]]},{"k":21278,"v":[[0,1,["H8033"]],[1,4,["H5257"]],[4,7,["H6828"]],[7,8,["H3605"]],[8,12,["H3605"]],[12,14,["H6722"]],[14,15,["H834"]],[15,18,["H3381"]],[18,19,["H854"]],[19,21,["H2491"]],[21,24,["H2851"]],[24,27,["H954"]],[27,30,["H4480","H1369"]],[30,33,["H7901"]],[33,34,["H6189"]],[34,35,["H854"]],[35,39,["H2491"]],[39,42,["H2719"]],[42,44,["H5375"]],[44,46,["H3639"]],[46,47,["H854"]],[47,51,["H3381"]],[51,54,["H953"]]]},{"k":21279,"v":[[0,1,["H6547"]],[1,3,["H7200"]],[3,8,["H5162"]],[8,9,["H5921"]],[9,10,["H3605"]],[10,12,["H1995"]],[12,14,["H6547"]],[14,16,["H3605"]],[16,18,["H2428"]],[18,19,["H2491"]],[19,22,["H2719"]],[22,23,["H5002"]],[23,25,["H136"]],[25,26,["H3069"]]]},{"k":21280,"v":[[0,1,["H3588"]],[1,4,["H5414","(H853)"]],[4,6,["H2851"]],[6,9,["H776"]],[9,12,["H2416"]],[12,17,["H7901"]],[17,20,["H8432"]],[20,23,["H6189"]],[23,24,["H854"]],[24,28,["H2491"]],[28,31,["H2719"]],[31,33,["H6547"]],[33,35,["H3605"]],[35,37,["H1995"]],[37,38,["H5002"]],[38,40,["H136"]],[40,41,["H3069"]]]},{"k":21281,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":21282,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H1696"]],[4,5,["H413"]],[5,7,["H1121"]],[7,10,["H5971"]],[10,12,["H559"]],[12,13,["H413"]],[13,15,["H3588"]],[15,17,["H935"]],[17,19,["H2719"]],[19,20,["H5921"]],[20,22,["H776"]],[22,25,["H5971"]],[25,28,["H776"]],[28,29,["H3947"]],[29,30,["H259"]],[30,31,["H376"]],[31,34,["H4480","H7097"]],[34,36,["H5414"]],[36,40,["H6822"]]]},{"k":21283,"v":[[0,4,["H7200","(H853)"]],[4,6,["H2719"]],[6,7,["H935"]],[7,8,["H5921"]],[8,10,["H776"]],[10,12,["H8628"]],[12,14,["H7782"]],[14,16,["H2094","(H853)"]],[16,18,["H5971"]]]},{"k":21284,"v":[[0,3,["H8085","H8085","(H853)"]],[3,5,["H6963"]],[5,8,["H7782"]],[8,12,["H2094","H3808"]],[12,15,["H2719"]],[15,16,["H935"]],[16,20,["H3947"]],[20,22,["H1818"]],[22,24,["H1961"]],[24,28,["H7218"]]]},{"k":21285,"v":[[0,2,["H8085","(H853)"]],[2,4,["H6963"]],[4,7,["H7782"]],[7,11,["H2094","H3808"]],[11,13,["H1818"]],[13,15,["H1961"]],[15,19,["H1931"]],[19,22,["H2094"]],[22,24,["H4422"]],[24,26,["H5315"]]]},{"k":21286,"v":[[0,2,["H3588"]],[2,4,["H6822"]],[4,5,["H7200","(H853)"]],[5,7,["H2719"]],[7,8,["H935"]],[8,10,["H8628"]],[10,11,["H3808"]],[11,13,["H7782"]],[13,16,["H5971"]],[16,18,["H3808"]],[18,19,["H2094"]],[19,22,["H2719"]],[22,23,["H935"]],[23,25,["H3947"]],[25,27,["H5315"]],[27,29,["H4480"]],[29,31,["H1931"]],[31,34,["H3947"]],[34,37,["H5771"]],[37,40,["H1818"]],[40,43,["H1875"]],[43,46,["H6822"]],[46,47,["H4480","H3027"]]]},{"k":21287,"v":[[0,2,["H859"]],[2,4,["H1121"]],[4,6,["H120"]],[6,9,["H5414"]],[9,12,["H6822"]],[12,15,["H1004"]],[15,17,["H3478"]],[17,21,["H8085"]],[21,23,["H1697"]],[23,26,["H4480","H6310"]],[26,28,["H2094"]],[28,30,["H4480"]],[30,31,[]]]},{"k":21288,"v":[[0,3,["H559"]],[3,6,["H7563"]],[6,8,["H7563"]],[8,13,["H4191","H4191"]],[13,17,["H3808"]],[17,18,["H1696"]],[18,20,["H2094"]],[20,22,["H7563"]],[22,25,["H4480","H1870"]],[25,26,["H1931"]],[26,27,["H7563"]],[27,30,["H4191"]],[30,33,["H5771"]],[33,36,["H1818"]],[36,39,["H1245"]],[39,42,["H4480","H3027"]]]},{"k":21289,"v":[[0,2,["H3588"]],[2,3,["H859"]],[3,4,["H2094"]],[4,6,["H7563"]],[6,9,["H4480","H1870"]],[9,11,["H7725"]],[11,12,["H4480"]],[12,17,["H3808"]],[17,18,["H7725"]],[18,21,["H4480","H1870"]],[21,22,["H1931"]],[22,24,["H4191"]],[24,27,["H5771"]],[27,29,["H859"]],[29,31,["H5337"]],[31,33,["H5315"]]]},{"k":21290,"v":[[0,3,["H859"]],[3,4,["H1121"]],[4,6,["H120"]],[6,7,["H559"]],[7,8,["H413"]],[8,10,["H1004"]],[10,12,["H3478"]],[12,13,["H3651"]],[13,15,["H559"]],[15,16,["H559"]],[16,17,["H3588"]],[17,19,["H6588"]],[19,22,["H2403"]],[22,24,["H5921"]],[24,27,["H587"]],[27,29,["H4743"]],[29,32,["H349"]],[32,36,["H2421"]]]},{"k":21291,"v":[[0,1,["H559"]],[1,2,["H413"]],[2,5,["H589"]],[5,6,["H2416"]],[6,7,["H5002"]],[7,9,["H136"]],[9,10,["H3069"]],[10,14,["H518","H2654"]],[14,17,["H4194"]],[17,20,["H7563"]],[20,21,["H3588","H518"]],[21,24,["H7563"]],[24,25,["H7725"]],[25,28,["H4480","H1870"]],[28,30,["H2421"]],[30,31,["H7725"]],[31,33,["H7725"]],[33,37,["H7451"]],[37,38,["H4480","H1870"]],[38,40,["H4100"]],[40,43,["H4191"]],[43,45,["H1004"]],[45,47,["H3478"]]]},{"k":21292,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H1121"]],[9,12,["H5971"]],[12,14,["H6666"]],[14,17,["H6662"]],[17,19,["H3808"]],[19,20,["H5337"]],[20,24,["H3117"]],[24,27,["H6588"]],[27,31,["H7564"]],[31,34,["H7563"]],[34,37,["H3808"]],[37,38,["H3782"]],[38,42,["H3117"]],[42,45,["H7725"]],[45,48,["H4480","H7562"]],[48,49,["H3808"]],[49,52,["H6662"]],[52,54,["H3201"]],[54,56,["H2421"]],[56,62,["H3117"]],[62,65,["H2398"]]]},{"k":21293,"v":[[0,4,["H559"]],[4,7,["H6662"]],[7,12,["H2421","H2421"]],[12,14,["H1931"]],[14,15,["H982"]],[15,16,["H5921"]],[16,19,["H6666"]],[19,21,["H6213"]],[21,22,["H5766"]],[22,23,["H3605"]],[23,25,["H6666"]],[25,27,["H3808"]],[27,29,["H2142"]],[29,33,["H5766"]],[33,34,["H834"]],[34,37,["H6213"]],[37,40,["H4191"]],[40,42,[]]]},{"k":21294,"v":[[0,4,["H559"]],[4,7,["H7563"]],[7,11,["H4191","H4191"]],[11,14,["H7725"]],[14,17,["H4480","H2403"]],[17,19,["H6213"]],[19,23,["H4941"]],[23,25,["H6666"]]]},{"k":21295,"v":[[0,3,["H7563"]],[3,4,["H7725"]],[4,6,["H2258"]],[6,8,["H7999"]],[8,12,["H1500"]],[12,13,["H1980"]],[13,16,["H2708"]],[16,18,["H2416"]],[18,19,["H1115"]],[19,20,["H6213"]],[20,21,["H5766"]],[21,25,["H2421","H2421"]],[25,28,["H3808"]],[28,29,["H4191"]]]},{"k":21296,"v":[[0,1,["H3808","H3605"]],[1,4,["H2403"]],[4,5,["H834"]],[5,8,["H2398"]],[8,11,["H2142"]],[11,16,["H6213"]],[16,20,["H4941"]],[20,22,["H6666"]],[22,26,["H2421","H2421"]]]},{"k":21297,"v":[[0,3,["H1121"]],[3,6,["H5971"]],[6,7,["H559"]],[7,9,["H1870"]],[9,12,["H136"]],[12,15,["H8505","H3808"]],[15,19,["H1992"]],[19,21,["H1870"]],[21,24,["H8505","H3808"]]]},{"k":21298,"v":[[0,3,["H6662"]],[3,4,["H7725"]],[4,7,["H4480","H6666"]],[7,9,["H6213"]],[9,10,["H5766"]],[10,14,["H4191"]],[14,15,[]]]},{"k":21299,"v":[[0,4,["H7563"]],[4,5,["H7725"]],[5,8,["H4480","H7564"]],[8,10,["H6213"]],[10,14,["H4941"]],[14,16,["H6666"]],[16,17,["H1931"]],[17,19,["H2421"]],[19,20,["H5921"]]]},{"k":21300,"v":[[0,3,["H559"]],[3,5,["H1870"]],[5,8,["H136"]],[8,11,["H8505","H3808"]],[11,14,["H1004"]],[14,16,["H3478"]],[16,19,["H8199"]],[19,22,["H376"]],[22,25,["H1870"]]]},{"k":21301,"v":[[0,5,["H1961"]],[5,8,["H8147","H6240"]],[8,9,["H8141"]],[9,12,["H1546"]],[12,15,["H6224"]],[15,19,["H2568"]],[19,23,["H2320"]],[23,28,["H6412"]],[28,31,["H4480","H3389"]],[31,32,["H935"]],[32,33,["H413"]],[33,35,["H559"]],[35,37,["H5892"]],[37,39,["H5221"]]]},{"k":21302,"v":[[0,3,["H3027"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,12,["H6153"]],[12,13,["H6440"]],[13,17,["H6412"]],[17,18,["H935"]],[18,21,["H6605","(H853)"]],[21,23,["H6310"]],[23,24,["H5704"]],[24,26,["H935"]],[26,27,["H413"]],[27,31,["H1242"]],[31,34,["H6310"]],[34,36,["H6605"]],[36,42,["H481","H3808","H5750"]]]},{"k":21303,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":21304,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,6,["H3427"]],[6,7,["H428"]],[7,8,["H2723"]],[8,9,["H5921"]],[9,11,["H127"]],[11,13,["H3478"]],[13,14,["H559"]],[14,15,["H559"]],[15,16,["H85"]],[16,17,["H1961"]],[17,18,["H259"]],[18,21,["H3423","(H853)"]],[21,23,["H776"]],[23,25,["H587"]],[25,27,["H7227"]],[27,29,["H776"]],[29,31,["H5414"]],[31,34,["H4181"]]]},{"k":21305,"v":[[0,1,["H3651"]],[1,2,["H559"]],[2,3,["H413"]],[3,5,["H3541"]],[5,6,["H559"]],[6,8,["H136"]],[8,9,["H3069"]],[9,11,["H398"]],[11,12,["H5921"]],[12,14,["H1818"]],[14,17,["H5375"]],[17,19,["H5869"]],[19,20,["H413"]],[20,22,["H1544"]],[22,24,["H8210"]],[24,25,["H1818"]],[25,29,["H3423"]],[29,31,["H776"]]]},{"k":21306,"v":[[0,2,["H5975"]],[2,3,["H5921"]],[3,5,["H2719"]],[5,7,["H6213"]],[7,8,["H8441"]],[8,11,["H2930"]],[11,13,["H376","(H853)"]],[13,15,["H7453"]],[15,16,["H802"]],[16,20,["H3423"]],[20,22,["H776"]]]},{"k":21307,"v":[[0,1,["H559"]],[1,3,["H3541"]],[3,4,["H413"]],[4,6,["H3541"]],[6,7,["H559"]],[7,9,["H136"]],[9,10,["H3069"]],[10,12,["H589"]],[12,13,["H2416"]],[13,14,["H518","H3808"]],[14,16,["H834"]],[16,20,["H2723"]],[20,22,["H5307"]],[22,25,["H2719"]],[25,28,["H834"]],[28,30,["H5921"]],[30,32,["H6440"]],[32,33,["H7704"]],[33,36,["H5414"]],[36,39,["H2416"]],[39,42,["H398"]],[42,45,["H834"]],[45,49,["H4679"]],[49,53,["H4631"]],[53,55,["H4191"]],[55,58,["H1698"]]]},{"k":21308,"v":[[0,4,["H5414","(H853)"]],[4,6,["H776"]],[6,8,["H8077","H4923"]],[8,11,["H1347"]],[11,14,["H5797"]],[14,16,["H7673"]],[16,19,["H2022"]],[19,21,["H3478"]],[21,24,["H8074"]],[24,26,["H4480","H369"]],[26,29,["H5674"]]]},{"k":21309,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,13,["H5414","(H853)"]],[13,15,["H776"]],[15,17,["H8077","H4923"]],[17,19,["H5921"]],[19,20,["H3605"]],[20,22,["H8441"]],[22,23,["H834"]],[23,26,["H6213"]]]},{"k":21310,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,7,["H1121"]],[7,10,["H5971"]],[10,13,["H1696"]],[13,16,["H681"]],[16,18,["H7023"]],[18,22,["H6607"]],[22,25,["H1004"]],[25,27,["H1696"]],[27,28,["H2297"]],[28,29,["H854"]],[29,30,["H259"]],[30,32,["H376"]],[32,33,["H854"]],[33,35,["H251"]],[35,36,["H559"]],[36,37,["H935"]],[37,40,["H4994"]],[40,42,["H8085"]],[42,43,["H4100"]],[43,46,["H1697"]],[46,49,["H3318"]],[49,50,["H4480","H854"]],[50,52,["H3068"]]]},{"k":21311,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,8,["H5971"]],[8,9,["H3996"]],[9,12,["H3427"]],[12,13,["H6440"]],[13,17,["H5971"]],[17,20,["H8085","(H853)"]],[20,22,["H1697"]],[22,26,["H3808"]],[26,27,["H6213"]],[27,29,["H3588"]],[29,32,["H6310"]],[32,33,["H1992"]],[33,34,["H6213"]],[34,36,["H5690"]],[36,39,["H3820"]],[39,40,["H1980"]],[40,41,["H310"]],[41,43,["H1215"]]]},{"k":21312,"v":[[0,2,["H2009"]],[2,10,["H5690"]],[10,11,["H7892"]],[11,17,["H3303"]],[17,18,["H6963"]],[18,25,["H5059","H3190"]],[25,28,["H8085","(H853)"]],[28,30,["H1697"]],[30,33,["H6213"]],[33,35,["H369"]]]},{"k":21313,"v":[[0,6,["H935"]],[6,7,["H2009"]],[7,10,["H935"]],[10,14,["H3045"]],[14,15,["H3588"]],[15,17,["H5030"]],[17,19,["H1961"]],[19,20,["H8432"]],[20,21,[]]]},{"k":21314,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":21315,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H5012"]],[4,5,["H5921"]],[5,7,["H7462"]],[7,9,["H3478"]],[9,10,["H5012"]],[10,12,["H559"]],[12,13,["H413"]],[13,15,["H3541"]],[15,16,["H559"]],[16,18,["H136"]],[18,19,["H3069"]],[19,22,["H7462"]],[22,23,["H1945"]],[23,27,["H7462"]],[27,29,["H3478"]],[29,30,["H834"]],[30,32,["H1961","H7462"]],[32,35,["H3808"]],[35,37,["H7462"]],[37,38,["H7462"]],[38,40,["H6629"]]]},{"k":21316,"v":[[0,2,["H398","(H853)"]],[2,4,["H2459"]],[4,7,["H3847"]],[7,9,["H854"]],[9,11,["H6785"]],[11,13,["H2076"]],[13,17,["H1277"]],[17,20,["H7462"]],[20,21,["H3808"]],[21,23,["H6629"]]]},{"k":21317,"v":[[0,0,["(H853)"]],[0,2,["H2470"]],[2,5,["H3808"]],[5,6,["H2388"]],[6,7,["H3808"]],[7,10,["H7495"]],[10,14,["H2470"]],[14,15,["H3808"]],[15,19,["H2280"]],[19,23,["H7665"]],[23,24,["H3808"]],[24,28,["H7725"]],[28,33,["H5080"]],[33,34,["H3808"]],[34,37,["H1245"]],[37,41,["H6"]],[41,44,["H2394"]],[44,47,["H6531"]],[47,50,["H7287"]],[50,51,[]]]},{"k":21318,"v":[[0,4,["H6327"]],[4,8,["H4480","H1097"]],[8,9,["H7462"]],[9,12,["H1961"]],[12,13,["H402"]],[13,15,["H3605"]],[15,17,["H2416"]],[17,20,["H7704"]],[20,24,["H6327"]]]},{"k":21319,"v":[[0,2,["H6629"]],[2,3,["H7686"]],[3,5,["H3605"]],[5,7,["H2022"]],[7,9,["H5921"]],[9,10,["H3605"]],[10,11,["H7311"]],[11,12,["H1389"]],[12,15,["H6629"]],[15,17,["H6327"]],[17,18,["H5921"]],[18,19,["H3605"]],[19,21,["H6440"]],[21,24,["H776"]],[24,26,["H369"]],[26,28,["H1875"]],[28,30,["H1245"]],[30,32,[]]]},{"k":21320,"v":[[0,1,["H3651"]],[1,3,["H7462"]],[3,4,["H8085","(H853)"]],[4,6,["H1697"]],[6,9,["H3068"]]]},{"k":21321,"v":[[0,2,["H589"]],[2,3,["H2416"]],[3,4,["H5002"]],[4,6,["H136"]],[6,7,["H3069"]],[7,8,["H518","H3808"]],[8,9,["H3282"]],[9,11,["H6629"]],[11,12,["H1961"]],[12,14,["H957"]],[14,17,["H6629"]],[17,18,["H1961"]],[18,19,["H402"]],[19,21,["H3605"]],[21,22,["H2416"]],[22,25,["H7704"]],[25,29,["H4480","H369"]],[29,30,["H7462"]],[30,31,["H3808"]],[31,34,["H7462"]],[34,35,["H1875","(H853)"]],[35,38,["H6629"]],[38,41,["H7462"]],[41,42,["H7462"]],[42,45,["H7462"]],[45,46,["H3808"]],[46,48,["H6629"]]]},{"k":21322,"v":[[0,1,["H3651"]],[1,4,["H7462"]],[4,5,["H8085"]],[5,7,["H1697"]],[7,10,["H3068"]]]},{"k":21323,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H2009"]],[6,9,["H413"]],[9,11,["H7462"]],[11,15,["H1875","(H853)"]],[15,17,["H6629"]],[17,20,["H4480","H3027"]],[20,25,["H7673"]],[25,27,["H4480","H7462"]],[27,29,["H6629"]],[29,30,["H3808"]],[30,33,["H7462"]],[33,34,["H7462"]],[34,37,["H5750"]],[37,41,["H5337"]],[41,43,["H6629"]],[43,46,["H4480","H6310"]],[46,50,["H3808"]],[50,51,["H1961"]],[51,52,["H402"]],[52,54,[]]]},{"k":21324,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,10,["H589"]],[10,13,["H1875","(H853)"]],[13,15,["H6629"]],[15,19,["H1239"]]]},{"k":21325,"v":[[0,3,["H7462"]],[3,5,["H1243"]],[5,7,["H5739"]],[7,10,["H3117"]],[10,13,["H1961"]],[13,14,["H8432"]],[14,16,["H6629"]],[16,19,["H6566"]],[19,20,["H3651"]],[20,24,["H1239","(H853)"]],[24,26,["H6629"]],[26,29,["H5337"]],[29,33,["H4480","H3605"]],[33,34,["H4725"]],[34,35,["H834","H8033"]],[35,39,["H6327"]],[39,42,["H6051"]],[42,44,["H6205"]],[44,45,["H3117"]]]},{"k":21326,"v":[[0,6,["H3318"]],[6,7,["H4480"]],[7,9,["H5971"]],[9,11,["H6908"]],[11,13,["H4480"]],[13,15,["H776"]],[15,18,["H935"]],[18,20,["H413"]],[20,23,["H127"]],[23,25,["H7462"]],[25,27,["H413"]],[27,29,["H2022"]],[29,31,["H3478"]],[31,34,["H650"]],[34,37,["H3605"]],[37,40,["H4186"]],[40,43,["H776"]]]},{"k":21327,"v":[[0,3,["H7462"]],[3,7,["H2896"]],[7,8,["H4829"]],[8,12,["H4791"]],[12,13,["H2022"]],[13,15,["H3478"]],[15,18,["H5116"]],[18,19,["H1961"]],[19,20,["H8033"]],[20,23,["H7257"]],[23,26,["H2896"]],[26,27,["H5116"]],[27,31,["H8082"]],[31,32,["H4829"]],[32,35,["H7462"]],[35,36,["H413"]],[36,38,["H2022"]],[38,40,["H3478"]]]},{"k":21328,"v":[[0,1,["H589"]],[1,3,["H7462"]],[3,5,["H6629"]],[5,7,["H589"]],[7,13,["H7257"]],[13,14,["H5002"]],[14,16,["H136"]],[16,17,["H3069"]]]},{"k":21329,"v":[[0,3,["H1245","(H853)"]],[3,7,["H6"]],[7,10,["H7725"]],[10,15,["H5080"]],[15,19,["H2280"]],[19,23,["H7665"]],[23,26,["H2388"]],[26,30,["H2470"]],[30,34,["H8045"]],[34,36,["H8082"]],[36,39,["H2389"]],[39,42,["H7462"]],[42,45,["H4941"]]]},{"k":21330,"v":[[0,4,["H859"]],[4,7,["H6629"]],[7,8,["H3541"]],[8,9,["H559"]],[9,11,["H136"]],[11,12,["H3069"]],[12,13,["H2009"]],[13,15,["H8199"]],[15,16,["H996"]],[16,17,["H7716"]],[17,19,["H7716"]],[19,22,["H352"]],[22,26,["H6260"]]]},{"k":21331,"v":[[0,5,["H4592"]],[5,6,["H4480"]],[6,11,["H7462"]],[11,13,["H2896"]],[13,14,["H4829"]],[14,19,["H7429"]],[19,22,["H7272"]],[22,24,["H3499"]],[24,27,["H4829"]],[27,31,["H8354"]],[31,34,["H4950"]],[34,35,["H4325"]],[35,39,["H7515"]],[39,41,["H3498"]],[41,44,["H7272"]]]},{"k":21332,"v":[[0,5,["H6629"]],[5,7,["H7462"]],[7,12,["H4823"]],[12,15,["H7272"]],[15,18,["H8354"]],[18,23,["H4833"]],[23,26,["H7272"]]]},{"k":21333,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H413"]],[7,9,["H2009"]],[9,10,["H589"]],[10,14,["H8199"]],[14,15,["H996"]],[15,17,["H1277"]],[17,18,["H7716"]],[18,20,["H996"]],[20,22,["H7330"]],[22,23,["H7716"]]]},{"k":21334,"v":[[0,1,["H3282"]],[1,4,["H1920"]],[4,6,["H6654"]],[6,9,["H3802"]],[9,11,["H5055"]],[11,12,["H3605"]],[12,14,["H2470"]],[14,17,["H7161"]],[17,18,["H5704","H834"]],[18,21,["H6327"]],[21,23,["H413","H2351"]]]},{"k":21335,"v":[[0,4,["H3467"]],[4,6,["H6629"]],[6,10,["H3808"]],[10,11,["H5750"]],[11,12,["H1961"]],[12,14,["H957"]],[14,18,["H8199"]],[18,19,["H996"]],[19,20,["H7716"]],[20,22,["H7716"]]]},{"k":21336,"v":[[0,5,["H6965"]],[5,6,["H259"]],[6,7,["H7462"]],[7,8,["H5921"]],[8,13,["H7462"]],[13,15,["(H853)"]],[15,17,["H5650"]],[17,18,["H1732"]],[18,21,["H7462"]],[21,24,["H1931"]],[24,26,["H1961"]],[26,28,["H7462"]]]},{"k":21337,"v":[[0,2,["H589"]],[2,4,["H3068"]],[4,6,["H1961"]],[6,8,["H430"]],[8,11,["H5650"]],[11,12,["H1732"]],[12,14,["H5387"]],[14,15,["H8432"]],[15,17,["H589"]],[17,19,["H3068"]],[19,21,["H1696"]],[21,22,[]]]},{"k":21338,"v":[[0,4,["H3772"]],[4,8,["H1285"]],[8,10,["H7965"]],[10,15,["H7451"]],[15,16,["H2416"]],[16,18,["H7673"]],[18,20,["H4480"]],[20,22,["H776"]],[22,26,["H3427"]],[26,27,["H983"]],[27,30,["H4057"]],[30,32,["H3462"]],[32,35,["H3293"]]]},{"k":21339,"v":[[0,4,["H5414"]],[4,10,["H5439"]],[10,12,["H1389"]],[12,14,["H1293"]],[14,20,["H1653"]],[20,23,["H3381"]],[23,26,["H6256"]],[26,29,["H1961"]],[29,30,["H1653"]],[30,32,["H1293"]]]},{"k":21340,"v":[[0,3,["H6086"]],[3,6,["H7704"]],[6,8,["H5414","(H853)"]],[8,10,["H6529"]],[10,13,["H776"]],[13,15,["H5414"]],[15,17,["H2981"]],[17,21,["H1961"]],[21,22,["H983"]],[22,23,["H5921"]],[23,25,["H127"]],[25,28,["H3045"]],[28,29,["H3588"]],[29,30,["H589"]],[30,33,["H3068"]],[33,37,["H7665","(H853)"]],[37,39,["H4133"]],[39,42,["H5923"]],[42,44,["H5337"]],[44,49,["H4480","H3027"]],[49,53,["H5647"]],[53,56,[]]]},{"k":21341,"v":[[0,4,["H3808"]],[4,5,["H5750"]],[5,6,["H1961"]],[6,8,["H957"]],[8,11,["H1471"]],[11,12,["H3808"]],[12,15,["H2416"]],[15,18,["H776"]],[18,19,["H398"]],[19,24,["H3427"]],[24,25,["H983"]],[25,27,["H369"]],[27,31,["H2729"]]]},{"k":21342,"v":[[0,5,["H6965"]],[5,9,["H4302"]],[9,11,["H8034"]],[11,15,["H1961"]],[15,16,["H3808"]],[16,17,["H5750"]],[17,18,["H622"]],[18,20,["H7458"]],[20,23,["H776"]],[23,24,["H3808"]],[24,25,["H5375"]],[25,27,["H3639"]],[27,30,["H1471"]],[30,32,["H5750"]]]},{"k":21343,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,8,["H3068"]],[8,10,["H430"]],[10,12,["H854"]],[12,16,["H1992"]],[16,19,["H1004"]],[19,21,["H3478"]],[21,24,["H5971"]],[24,25,["H5002"]],[25,27,["H136"]],[27,28,["H3069"]]]},{"k":21344,"v":[[0,2,["H859"]],[2,4,["H6629"]],[4,6,["H6629"]],[6,9,["H4830"]],[9,11,["H120"]],[11,13,["H589"]],[13,16,["H430"]],[16,17,["H5002"]],[17,19,["H136"]],[19,20,["H3069"]]]},{"k":21345,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":21346,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H7760"]],[4,6,["H6440"]],[6,7,["H5921"]],[7,8,["H2022"]],[8,9,["H8165"]],[9,11,["H5012"]],[11,12,["H5921"]],[12,13,[]]]},{"k":21347,"v":[[0,2,["H559"]],[2,5,["H3541"]],[5,6,["H559"]],[6,8,["H136"]],[8,9,["H3069"]],[9,10,["H2009"]],[10,12,["H2022"]],[12,13,["H8165"]],[13,16,["H413"]],[16,22,["H5186"]],[22,24,["H3027"]],[24,25,["H5921"]],[25,30,["H5414"]],[30,33,["H8077","H4923"]]]},{"k":21348,"v":[[0,3,["H7760"]],[3,5,["H5892"]],[5,6,["H2723"]],[6,8,["H859"]],[8,10,["H1961"]],[10,11,["H8077"]],[11,15,["H3045"]],[15,16,["H3588"]],[16,17,["H589"]],[17,20,["H3068"]]]},{"k":21349,"v":[[0,1,["H3282"]],[1,4,["H1961"]],[4,6,["H5769"]],[6,7,["H342"]],[7,10,["H5064"]],[10,13,["(H853)"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,18,["H5921"]],[18,20,["H3027"]],[20,23,["H2719"]],[23,26,["H6256"]],[26,29,["H343"]],[29,32,["H6256"]],[32,35,["H5771"]],[35,38,["H7093"]]]},{"k":21350,"v":[[0,1,["H3651"]],[1,3,["H589"]],[3,4,["H2416"]],[4,5,["H5002"]],[5,7,["H136"]],[7,8,["H3069"]],[8,11,["H6213"]],[11,14,["H1818"]],[14,16,["H1818"]],[16,18,["H7291"]],[18,20,["H518"]],[20,23,["H3808"]],[23,24,["H8130"]],[24,25,["H1818"]],[25,27,["H1818"]],[27,29,["H7291"]],[29,30,[]]]},{"k":21351,"v":[[0,4,["H5414","(H853)"]],[4,5,["H2022"]],[5,6,["H8165"]],[6,8,["H8077","H8077"]],[8,11,["H3772"]],[11,12,["H4480"]],[12,17,["H5674"]],[17,21,["H7725"]]]},{"k":21352,"v":[[0,4,["H4390","(H853)"]],[4,6,["H2022"]],[6,9,["H2491"]],[9,13,["H1389"]],[13,17,["H1516"]],[17,20,["H3605"]],[20,22,["H650"]],[22,25,["H5307"]],[25,28,["H2491"]],[28,31,["H2719"]]]},{"k":21353,"v":[[0,3,["H5414"]],[3,5,["H5769"]],[5,6,["H8077"]],[6,9,["H5892"]],[9,11,["H3808"]],[11,12,["H3427"]],[12,16,["H3045"]],[16,17,["H3588"]],[17,18,["H589"]],[18,21,["H3068"]]]},{"k":21354,"v":[[0,1,["H3282"]],[1,4,["H559","(H853)"]],[4,6,["H8147"]],[6,7,["H1471"]],[7,10,["H8147"]],[10,11,["H776"]],[11,13,["H1961"]],[13,18,["H3423"]],[18,22,["H3068"]],[22,23,["H1961"]],[23,24,["H8033"]]]},{"k":21355,"v":[[0,1,["H3651"]],[1,3,["H589"]],[3,4,["H2416"]],[4,5,["H5002"]],[5,7,["H136"]],[7,8,["H3069"]],[8,12,["H6213"]],[12,16,["H639"]],[16,21,["H7068"]],[21,22,["H834"]],[22,25,["H6213"]],[25,29,["H4480","H8135"]],[29,37,["H3045"]],[37,40,["H834"]],[40,43,["H8199"]],[43,44,[]]]},{"k":21356,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,14,["H8085","(H853)"]],[14,15,["H3605"]],[15,17,["H5007"]],[17,18,["H834"]],[18,21,["H559"]],[21,22,["H5921"]],[22,24,["H2022"]],[24,26,["H3478"]],[26,27,["H559"]],[27,31,["H8074"]],[31,34,["H5414"]],[34,37,["H402"]]]},{"k":21357,"v":[[0,4,["H6310"]],[4,7,["H1431"]],[7,8,["H5921"]],[8,12,["H6280"]],[12,14,["H1697"]],[14,15,["H5921"]],[15,17,["H589"]],[17,19,["H8085"]],[19,20,[]]]},{"k":21358,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,8,["H3605"]],[8,9,["H776"]],[9,10,["H8055"]],[10,13,["H6213"]],[13,15,["H8077"]]]},{"k":21359,"v":[[0,4,["H8057"]],[4,7,["H5159"]],[7,10,["H1004"]],[10,12,["H3478"]],[12,13,["H5921","H834"]],[13,16,["H8074"]],[16,17,["H3651"]],[17,20,["H6213"]],[20,25,["H1961"]],[25,26,["H8077"]],[26,28,["H2022"]],[28,29,["H8165"]],[29,31,["H3605"]],[31,32,["H123"]],[32,34,["H3605"]],[34,40,["H3045"]],[40,41,["H3588"]],[41,42,["H589"]],[42,45,["H3068"]]]},{"k":21360,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H5012"]],[6,7,["H413"]],[7,9,["H2022"]],[9,11,["H3478"]],[11,13,["H559"]],[13,15,["H2022"]],[15,17,["H3478"]],[17,18,["H8085"]],[18,20,["H1697"]],[20,23,["H3068"]]]},{"k":21361,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H3282"]],[6,8,["H341"]],[8,10,["H559"]],[10,11,["H5921"]],[11,13,["H1889"]],[13,16,["H5769"]],[16,18,["H1116"]],[18,19,["H1961"]],[19,22,["H4181"]]]},{"k":21362,"v":[[0,1,["H3651"]],[1,2,["H5012"]],[2,4,["H559"]],[4,5,["H3541"]],[5,6,["H559"]],[6,8,["H136"]],[8,9,["H3069"]],[9,10,["H3282","H3282"]],[10,15,["H8074"]],[15,19,["H7602","(H853)"]],[19,22,["H4480","H5439"]],[22,26,["H1961"]],[26,28,["H4181"]],[28,31,["H7611"]],[31,34,["H1471"]],[34,39,["H5927"]],[39,40,["H5921"]],[40,42,["H8193"]],[42,44,["H3956"]],[44,48,["H1681"]],[48,51,["H5971"]]]},{"k":21363,"v":[[0,1,["H3651"]],[1,3,["H2022"]],[3,5,["H3478"]],[5,6,["H8085"]],[6,8,["H1697"]],[8,11,["H136"]],[11,12,["H3069"]],[12,13,["H3541"]],[13,14,["H559"]],[14,16,["H136"]],[16,17,["H3069"]],[17,20,["H2022"]],[20,24,["H1389"]],[24,27,["H650"]],[27,31,["H1516"]],[31,34,["H8074"]],[34,35,["H2723"]],[35,39,["H5892"]],[39,42,["H5800"]],[42,43,["H834"]],[43,44,["H1961"]],[44,46,["H957"]],[46,48,["H3933"]],[48,51,["H7611"]],[51,54,["H1471"]],[54,55,["H834"]],[55,58,["H4480","H5439"]]]},{"k":21364,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H518","H3808"]],[7,10,["H784"]],[10,13,["H7068"]],[13,16,["H1696"]],[16,17,["H5921"]],[17,19,["H7611"]],[19,22,["H1471"]],[22,24,["H5921"]],[24,25,["H3605"]],[25,26,["H123"]],[26,27,["H834"]],[27,29,["H5414","(H853)"]],[29,31,["H776"]],[31,34,["H4181"]],[34,37,["H8057"]],[37,39,["H3605"]],[39,41,["H3824"]],[41,43,["H7589"]],[43,44,["H5315"]],[44,45,["H4616"]],[45,48,["H1644"]],[48,51,["H957"]]]},{"k":21365,"v":[[0,1,["H5012"]],[1,2,["H3651"]],[2,3,["H5921"]],[3,5,["H127"]],[5,7,["H3478"]],[7,9,["H559"]],[9,12,["H2022"]],[12,16,["H1389"]],[16,19,["H650"]],[19,23,["H1516"]],[23,24,["H3541"]],[24,25,["H559"]],[25,27,["H136"]],[27,28,["H3069"]],[28,29,["H2009"]],[29,32,["H1696"]],[32,35,["H7068"]],[35,39,["H2534"]],[39,40,["H3282"]],[40,43,["H5375"]],[43,45,["H3639"]],[45,48,["H1471"]]]},{"k":21366,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H589"]],[7,10,["H5375","(H853)"]],[10,12,["H3027"]],[12,13,["H518","H3808"]],[13,15,["H1471"]],[15,16,["H834"]],[16,18,["H4480","H5439"]],[18,20,["H1992"]],[20,22,["H5375"]],[22,24,["H3639"]]]},{"k":21367,"v":[[0,2,["H859"]],[2,4,["H2022"]],[4,6,["H3478"]],[6,10,["H5414"]],[10,12,["H6057"]],[12,14,["H5375"]],[14,16,["H6529"]],[16,19,["H5971"]],[19,21,["H3478"]],[21,22,["H3588"]],[22,26,["H7126"]],[26,28,["H935"]]]},{"k":21368,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,5,["H413"]],[5,10,["H6437"]],[10,11,["H413"]],[11,17,["H5647"]],[17,19,["H2232"]]]},{"k":21369,"v":[[0,4,["H7235"]],[4,5,["H120"]],[5,6,["H5921"]],[6,8,["H3605"]],[8,10,["H1004"]],[10,12,["H3478"]],[12,14,["H3605"]],[14,19,["H5892"]],[19,22,["H3427"]],[22,25,["H2723"]],[25,28,["H1129"]]]},{"k":21370,"v":[[0,4,["H7235"]],[4,5,["H5921"]],[5,7,["H120"]],[7,9,["H929"]],[9,13,["H7235"]],[13,16,["H6509"]],[16,20,["H3427"]],[20,25,["H6927"]],[25,29,["H3190"]],[29,35,["H4480","H7221"]],[35,39,["H3045"]],[39,40,["H3588"]],[40,41,["H589"]],[41,44,["H3068"]]]},{"k":21371,"v":[[0,5,["H120"]],[5,7,["H1980"]],[7,8,["H5921"]],[8,10,["(H853)"]],[10,12,["H5971"]],[12,13,["H3478"]],[13,17,["H3423"]],[17,22,["H1961"]],[22,24,["H5159"]],[24,28,["H3808"]],[28,29,["H3254"]],[29,30,["H5750"]],[30,31,["H7921"]],[31,34,[]]]},{"k":21372,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H3282"]],[6,8,["H559"]],[8,11,["H859"]],[11,14,["H398"]],[14,15,["H120"]],[15,18,["H1961","H7921"]],[18,20,["H1471"]]]},{"k":21373,"v":[[0,1,["H3651"]],[1,4,["H398"]],[4,5,["H120"]],[5,6,["H3808"]],[6,7,["H5750"]],[7,8,["H3808"]],[8,9,["H7921"]],[9,11,["H1471"]],[11,13,["H5750"]],[13,14,["H5002"]],[14,16,["H136"]],[16,17,["H3069"]]]},{"k":21374,"v":[[0,1,["H3808"]],[1,7,["H8085"]],[7,8,["H413"]],[8,11,["H3639"]],[11,14,["H1471"]],[14,16,["H5750"]],[16,17,["H3808"]],[17,20,["H5375"]],[20,22,["H2781"]],[22,25,["H5971"]],[25,27,["H5750"]],[27,28,["H3808"]],[28,33,["H1471"]],[33,35,["H3782"]],[35,37,["H5750"]],[37,38,["H5002"]],[38,40,["H136"]],[40,41,["H3069"]]]},{"k":21375,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":21376,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,6,["H1004"]],[6,8,["H3478"]],[8,9,["H3427"]],[9,10,["H5921"]],[10,13,["H127"]],[13,15,["H2930"]],[15,20,["H1870"]],[20,24,["H5949"]],[24,26,["H1870"]],[26,27,["H1961"]],[27,28,["H6440"]],[28,32,["H2932"]],[32,36,["H5079"]]]},{"k":21377,"v":[[0,3,["H8210"]],[3,5,["H2534"]],[5,6,["H5921"]],[6,8,["H5921"]],[8,10,["H1818"]],[10,11,["H834"]],[11,14,["H8210"]],[14,15,["H5921"]],[15,17,["H776"]],[17,21,["H1544"]],[21,25,["H2930"]],[25,26,[]]]},{"k":21378,"v":[[0,3,["H6327"]],[3,7,["H1471"]],[7,11,["H2219"]],[11,14,["H776"]],[14,18,["H1870"]],[18,23,["H5949"]],[23,25,["H8199"]],[25,26,[]]]},{"k":21379,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H1471"]],[7,8,["H834","H8033"]],[8,10,["H935"]],[10,12,["H2490","(H853)"]],[12,14,["H6944"]],[14,15,["H8034"]],[15,18,["H559"]],[18,21,["H428"]],[21,24,["H5971"]],[24,27,["H3068"]],[27,31,["H3318"]],[31,35,["H4480","H776"]]]},{"k":21380,"v":[[0,4,["H2550"]],[4,5,["H5921"]],[5,7,["H6944"]],[7,8,["H8034"]],[8,9,["H834"]],[9,11,["H1004"]],[11,13,["H3478"]],[13,15,["H2490"]],[15,18,["H1471"]],[18,19,["H834","H8033"]],[19,21,["H935"]]]},{"k":21381,"v":[[0,1,["H3651"]],[1,2,["H559"]],[2,5,["H1004"]],[5,7,["H3478"]],[7,8,["H3541"]],[8,9,["H559"]],[9,11,["H136"]],[11,12,["H3069"]],[12,13,["H589"]],[13,14,["H6213"]],[14,15,["H3808"]],[15,19,["H4616"]],[19,21,["H1004"]],[21,23,["H3478"]],[23,24,["H3588","H518"]],[24,27,["H6944"]],[27,28,["H8034"]],[28,30,["H834"]],[30,33,["H2490"]],[33,36,["H1471"]],[36,37,["H834","H8033"]],[37,39,["H935"]]]},{"k":21382,"v":[[0,4,["H6942","(H853)"]],[4,6,["H1419"]],[6,7,["H8034"]],[7,10,["H2490"]],[10,13,["H1471"]],[13,14,["H834"]],[14,17,["H2490"]],[17,20,["H8432"]],[20,25,["H1471"]],[25,27,["H3045"]],[27,28,["H3588"]],[28,29,["H589"]],[29,32,["H3068"]],[32,33,["H5002"]],[33,35,["H136"]],[35,36,["H3069"]],[36,41,["H6942"]],[41,46,["H5869"]]]},{"k":21383,"v":[[0,4,["H3947"]],[4,7,["H4480"]],[7,9,["H1471"]],[9,11,["H6908"]],[11,15,["H4480","H3605"]],[15,16,["H776"]],[16,19,["H935"]],[19,21,["H413"]],[21,24,["H127"]]]},{"k":21384,"v":[[0,4,["H2236"]],[4,5,["H2889"]],[5,6,["H4325"]],[6,7,["H5921"]],[7,13,["H2891"]],[13,15,["H4480","H3605"]],[15,17,["H2932"]],[17,20,["H4480","H3605"]],[20,22,["H1544"]],[22,25,["H2891"]],[25,26,[]]]},{"k":21385,"v":[[0,2,["H2319"]],[2,3,["H3820"]],[3,7,["H5414"]],[7,11,["H2319"]],[11,12,["H7307"]],[12,15,["H5414"]],[15,16,["H7130"]],[16,22,["H5493","(H853)"]],[22,24,["H68"]],[24,25,["H3820"]],[25,29,["H4480","H1320"]],[29,33,["H5414"]],[33,36,["H3820"]],[36,38,["H1320"]]]},{"k":21386,"v":[[0,4,["H5414"]],[4,6,["H7307"]],[6,7,["H7130"]],[7,10,["H6213"]],[10,13,["H1980"]],[13,14,["H854"]],[14,16,["H2706"]],[16,20,["H8104"]],[20,22,["H4941"]],[22,24,["H6213"]],[24,25,[]]]},{"k":21387,"v":[[0,4,["H3427"]],[4,7,["H776"]],[7,8,["H834"]],[8,10,["H5414"]],[10,13,["H1"]],[13,17,["H1961"]],[17,19,["H5971"]],[19,21,["H595"]],[21,23,["H1961"]],[23,25,["H430"]]]},{"k":21388,"v":[[0,4,["H3467"]],[4,7,["H4480","H3605"]],[7,9,["H2932"]],[9,13,["H7121"]],[13,14,["H413"]],[14,16,["H1715"]],[16,19,["H7235"]],[19,22,["H5414"]],[22,23,["H3808"]],[23,24,["H7458"]],[24,25,["H5921"]],[25,26,[]]]},{"k":21389,"v":[[0,4,["H7235","(H853)"]],[4,6,["H6529"]],[6,9,["H6086"]],[9,12,["H8570"]],[12,15,["H7704"]],[15,16,["H4616","H834"]],[16,19,["H3947"]],[19,20,["H3808"]],[20,21,["H5750"]],[21,22,["H2781"]],[22,24,["H7458"]],[24,27,["H1471"]]]},{"k":21390,"v":[[0,4,["H2142","(H853)"]],[4,7,["H7451"]],[7,8,["H1870"]],[8,11,["H4611"]],[11,12,["H834"]],[12,14,["H3808"]],[14,15,["H2896"]],[15,19,["H6962"]],[19,23,["H6440"]],[23,24,["H5921"]],[24,26,["H5771"]],[26,28,["H5921"]],[28,30,["H8441"]]]},{"k":21391,"v":[[0,1,["H3808"]],[1,4,["H4616"]],[4,5,["H6213"]],[5,6,["H589"]],[6,8,["H5002"]],[8,10,["H136"]],[10,11,["H3069"]],[11,14,["H3045"]],[14,18,["H954"]],[18,20,["H3637"]],[20,24,["H4480","H1870"]],[24,26,["H1004"]],[26,28,["H3478"]]]},{"k":21392,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,8,["H3117"]],[8,13,["H2891"]],[13,16,["H4480","H3605"]],[16,18,["H5771"]],[18,25,["H3427","(H853)"]],[25,28,["H5892"]],[28,31,["H2723"]],[31,34,["H1129"]]]},{"k":21393,"v":[[0,3,["H8074"]],[3,4,["H776"]],[4,7,["H5647"]],[7,8,["H8478","H834"]],[8,10,["H1961"]],[10,11,["H8077"]],[11,14,["H5869"]],[14,16,["H3605"]],[16,19,["H5674"]]]},{"k":21394,"v":[[0,4,["H559"]],[4,5,["H1977"]],[5,6,["H776"]],[6,9,["H8074"]],[9,11,["H1961"]],[11,14,["H1588"]],[14,16,["H5731"]],[16,19,["H2720"]],[19,21,["H8074"]],[21,23,["H2040"]],[23,24,["H5892"]],[24,27,["H1219"]],[27,30,["H3427"]]]},{"k":21395,"v":[[0,3,["H1471"]],[3,4,["H834"]],[4,6,["H7604"]],[6,8,["H5439"]],[8,11,["H3045"]],[11,12,["H3588"]],[12,13,["H589"]],[13,15,["H3068"]],[15,16,["H1129"]],[16,18,["H2040"]],[18,21,["H5193"]],[21,25,["H8074"]],[25,26,["H589"]],[26,28,["H3068"]],[28,30,["H1696"]],[30,35,["H6213"]],[35,36,[]]]},{"k":21396,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,8,["H5750"]],[8,10,["H2063"]],[10,13,["H1875"]],[13,16,["H1004"]],[16,18,["H3478"]],[18,20,["H6213"]],[20,26,["H7235"]],[26,29,["H120"]],[29,32,["H6629"]]]},{"k":21397,"v":[[0,3,["H6944"]],[3,4,["H6629"]],[4,7,["H6629"]],[7,9,["H3389"]],[9,13,["H4150"]],[13,14,["H3651"]],[14,17,["H2720"]],[17,18,["H5892"]],[18,19,["H1961"]],[19,20,["H4392"]],[20,22,["H6629"]],[22,24,["H120"]],[24,28,["H3045"]],[28,29,["H3588"]],[29,30,["H589"]],[30,33,["H3068"]]]},{"k":21398,"v":[[0,2,["H3027"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,7,["H5921"]],[7,12,["H3318"]],[12,15,["H7307"]],[15,18,["H3068"]],[18,22,["H5117"]],[22,25,["H8432"]],[25,28,["H1237"]],[28,29,["H1931"]],[29,31,["H4392"]],[31,33,["H6106"]]]},{"k":21399,"v":[[0,5,["H5674"]],[5,6,["H5921"]],[6,9,["H5439","H5439"]],[9,11,["H2009"]],[11,14,["H3966"]],[14,15,["H7227"]],[15,16,["H5921"]],[16,18,["H6440"]],[18,19,["H1237"]],[19,21,["H2009"]],[21,24,["H3966"]],[24,25,["H3002"]]]},{"k":21400,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,10,["H428"]],[10,11,["H6106"]],[11,12,["H2421"]],[12,15,["H559"]],[15,17,["H136"]],[17,18,["H3069"]],[18,19,["H859"]],[19,20,["H3045"]]]},{"k":21401,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H5012"]],[6,7,["H5921"]],[7,8,["H428"]],[8,9,["H6106"]],[9,11,["H559"]],[11,12,["H413"]],[12,16,["H3002"]],[16,17,["H6106"]],[17,18,["H8085"]],[18,20,["H1697"]],[20,23,["H3068"]]]},{"k":21402,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,7,["H428"]],[7,8,["H6106"]],[8,9,["H2009"]],[9,10,["H589"]],[10,13,["H7307"]],[13,15,["H935"]],[15,21,["H2421"]]]},{"k":21403,"v":[[0,4,["H5414"]],[4,5,["H1517"]],[5,6,["H5921"]],[6,11,["H5927"]],[11,12,["H1320"]],[12,13,["H5921"]],[13,16,["H7159","H5921"]],[16,19,["H5785"]],[19,21,["H5414"]],[21,22,["H7307"]],[22,28,["H2421"]],[28,32,["H3045"]],[32,33,["H3588"]],[33,34,["H589"]],[34,37,["H3068"]]]},{"k":21404,"v":[[0,3,["H5012"]],[3,4,["H834"]],[4,7,["H6680"]],[7,11,["H5012"]],[11,13,["H1961"]],[13,15,["H6963"]],[15,17,["H2009"]],[17,19,["H7494"]],[19,22,["H6106"]],[22,24,["H7126"]],[24,25,["H6106"]],[25,26,["H413"]],[26,28,["H6106"]]]},{"k":21405,"v":[[0,4,["H7200"]],[4,5,["H2009"]],[5,7,["H1517"]],[7,10,["H1320"]],[10,12,["H5927"]],[12,13,["H5921"]],[13,17,["H5785"]],[17,18,["H7159","H5921"]],[18,20,["H4605"]],[20,24,["H369"]],[24,25,["H7307"]],[25,27,[]]]},{"k":21406,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H5012"]],[6,7,["H413"]],[7,9,["H7307"]],[9,10,["H5012"]],[10,11,["H1121"]],[11,13,["H120"]],[13,15,["H559"]],[15,16,["H413"]],[16,18,["H7307"]],[18,19,["H3541"]],[19,20,["H559"]],[20,22,["H136"]],[22,23,["H3069"]],[23,24,["H935"]],[24,27,["H4480","H702"]],[27,28,["H7307"]],[28,30,["H7307"]],[30,32,["H5301"]],[32,34,["H428"]],[34,35,["H2026"]],[35,39,["H2421"]]]},{"k":21407,"v":[[0,3,["H5012"]],[3,4,["H834"]],[4,6,["H6680"]],[6,10,["H7307"]],[10,11,["H935"]],[11,16,["H2421"]],[16,19,["H5975"]],[19,20,["H5921"]],[20,22,["H7272"]],[22,24,["H3966","H3966"]],[24,25,["H1419"]],[25,26,["H2428"]]]},{"k":21408,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H428"]],[9,10,["H6106"]],[10,13,["H3605"]],[13,14,["H1004"]],[14,16,["H3478"]],[16,17,["H2009"]],[17,19,["H559"]],[19,21,["H6106"]],[21,23,["H3001"]],[23,26,["H8615"]],[26,28,["H6"]],[28,32,["H1504"]],[32,35,[]]]},{"k":21409,"v":[[0,1,["H3651"]],[1,2,["H5012"]],[2,4,["H559"]],[4,5,["H413"]],[5,7,["H3541"]],[7,8,["H559"]],[8,10,["H136"]],[10,11,["H3069"]],[11,12,["H2009"]],[12,15,["H5971"]],[15,16,["H589"]],[16,18,["H6605","(H853)"]],[18,20,["H6913"]],[20,26,["H5927"]],[26,30,["H4480","H6913"]],[30,32,["H935"]],[32,34,["H413"]],[34,36,["H127"]],[36,38,["H3478"]]]},{"k":21410,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,13,["H6605","(H853)"]],[13,15,["H6913"]],[15,18,["H5971"]],[18,22,["H5927","(H853)"]],[22,26,["H4480","H6913"]]]},{"k":21411,"v":[[0,3,["H5414"]],[3,5,["H7307"]],[5,11,["H2421"]],[11,15,["H5117"]],[15,17,["H5921"]],[17,20,["H127"]],[20,24,["H3045"]],[24,25,["H3588"]],[25,26,["H589"]],[26,28,["H3068"]],[28,30,["H1696"]],[30,33,["H6213"]],[33,35,["H5002"]],[35,37,["H3068"]]]},{"k":21412,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,8,["H413"]],[8,10,["H559"]]]},{"k":21413,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H3947"]],[6,8,["H259"]],[8,9,["H6086"]],[9,11,["H3789"]],[11,12,["H5921"]],[12,15,["H3063"]],[15,19,["H1121"]],[19,21,["H3478"]],[21,23,["H2270"]],[23,25,["H3947"]],[25,26,["H259"]],[26,27,["H6086"]],[27,29,["H3789"]],[29,30,["H5921"]],[30,33,["H3130"]],[33,35,["H6086"]],[35,37,["H669"]],[37,40,["H3605"]],[40,42,["H1004"]],[42,44,["H3478"]],[44,46,["H2270"]]]},{"k":21414,"v":[[0,2,["H7126"]],[2,4,["H259"]],[4,5,["H413"]],[5,6,["H259"]],[6,8,["H259"]],[8,9,["H6086"]],[9,13,["H1961"]],[13,14,["H259"]],[14,17,["H3027"]]]},{"k":21415,"v":[[0,2,["H834"]],[2,4,["H1121"]],[4,7,["H5971"]],[7,9,["H559"]],[9,10,["H413"]],[10,12,["H559"]],[12,15,["H3808"]],[15,16,["H5046"]],[16,18,["H4100"]],[18,22,["H428"]]]},{"k":21416,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H3541"]],[4,5,["H559"]],[5,7,["H136"]],[7,8,["H3069"]],[8,9,["H2009"]],[9,10,["H589"]],[10,12,["H3947","(H853)"]],[12,14,["H6086"]],[14,16,["H3130"]],[16,17,["H834"]],[17,21,["H3027"]],[21,23,["H669"]],[23,26,["H7626"]],[26,28,["H3478"]],[28,30,["H2270"]],[30,33,["H5414"]],[33,35,["H5921"]],[35,38,["H854"]],[38,40,["H6086"]],[40,42,["H3063"]],[42,44,["H6213"]],[44,46,["H259"]],[46,47,["H6086"]],[47,51,["H1961"]],[51,52,["H259"]],[52,55,["H3027"]]]},{"k":21417,"v":[[0,3,["H6086"]],[3,4,["H834","H5921"]],[4,6,["H3789"]],[6,8,["H1961"]],[8,11,["H3027"]],[11,14,["H5869"]]]},{"k":21418,"v":[[0,2,["H1696"]],[2,3,["H413"]],[3,5,["H3541"]],[5,6,["H559"]],[6,8,["H136"]],[8,9,["H3069"]],[9,10,["H2009"]],[10,11,["H589"]],[11,13,["H3947","(H853)"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,19,["H4480","H996"]],[19,21,["H1471"]],[21,22,["H834","H8033"]],[22,25,["H1980"]],[25,28,["H6908"]],[28,32,["H4480","H5439"]],[32,34,["H935"]],[34,36,["H413"]],[36,39,["H127"]]]},{"k":21419,"v":[[0,4,["H6213"]],[4,6,["H259"]],[6,7,["H1471"]],[7,10,["H776"]],[10,13,["H2022"]],[13,15,["H3478"]],[15,17,["H259"]],[17,18,["H4428"]],[18,20,["H1961"]],[20,21,["H4428"]],[21,24,["H3605"]],[24,28,["H1961"]],[28,29,["H3808"]],[29,30,["H5750"]],[30,31,["H8147"]],[31,32,["H1471"]],[32,33,["H3808"]],[33,37,["H2673"]],[37,39,["H8147"]],[39,40,["H4467"]],[40,44,["H5750","H5750"]]]},{"k":21420,"v":[[0,1,["H3808"]],[1,4,["H2930"]],[4,7,["H5750"]],[7,10,["H1544"]],[10,15,["H8251"]],[15,18,["H3605"]],[18,21,["H6588"]],[21,25,["H3467"]],[25,29,["H4480","H3605"]],[29,31,["H4186"]],[31,32,["H834"]],[32,35,["H2398"]],[35,38,["H2891"]],[38,43,["H1961"]],[43,45,["H5971"]],[45,47,["H589"]],[47,49,["H1961"]],[49,51,["H430"]]]},{"k":21421,"v":[[0,2,["H1732"]],[2,4,["H5650"]],[4,7,["H4428"]],[7,8,["H5921"]],[8,12,["H3605"]],[12,14,["H1961"]],[14,15,["H259"]],[15,16,["H7462"]],[16,20,["H1980"]],[20,23,["H4941"]],[23,25,["H8104"]],[25,27,["H2708"]],[27,29,["H6213"]],[29,30,[]]]},{"k":21422,"v":[[0,4,["H3427"]],[4,5,["H5921"]],[5,7,["H776"]],[7,8,["H834"]],[8,11,["H5414"]],[11,13,["H3290"]],[13,15,["H5650"]],[15,16,["H834"]],[16,18,["H1"]],[18,20,["H3427"]],[20,24,["H3427"]],[24,25,["H5921"]],[25,27,["H1992"]],[27,30,["H1121"]],[30,33,["H1121"]],[33,34,["H1121"]],[34,36,["H5769"]],[36,39,["H5650"]],[39,40,["H1732"]],[40,44,["H5387"]],[44,46,["H5769"]]]},{"k":21423,"v":[[0,4,["H3772"]],[4,6,["H1285"]],[6,8,["H7965"]],[8,13,["H1961"]],[13,15,["H5769"]],[15,16,["H1285"]],[16,17,["H854"]],[17,22,["H5414"]],[22,25,["H7235"]],[25,29,["H5414"]],[29,31,["H4720"]],[31,34,["H8432"]],[34,38,["H5769"]]]},{"k":21424,"v":[[0,2,["H4908"]],[2,5,["H1961"]],[5,6,["H5921"]],[6,11,["H1961"]],[11,13,["H430"]],[13,15,["H1992"]],[15,17,["H1961"]],[17,19,["H5971"]]]},{"k":21425,"v":[[0,3,["H1471"]],[3,5,["H3045"]],[5,6,["H3588"]],[6,7,["H589"]],[7,9,["H3068"]],[9,11,["H6942","(H853)"]],[11,12,["H3478"]],[12,15,["H4720"]],[15,17,["H1961"]],[17,20,["H8432"]],[20,24,["H5769"]]]},{"k":21426,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,9,["H413"]],[9,10,["H559"]]]},{"k":21427,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H7760"]],[4,6,["H6440"]],[6,7,["H413"]],[7,8,["H1463"]],[8,10,["H776"]],[10,12,["H4031"]],[12,14,["H7218"]],[14,15,["H5387"]],[15,17,["H4902"]],[17,19,["H8422"]],[19,21,["H5012"]],[21,22,["H5921"]],[22,23,[]]]},{"k":21428,"v":[[0,2,["H559"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H136"]],[6,7,["H3069"]],[7,8,["H2009"]],[8,11,["H413"]],[11,14,["H1463"]],[14,16,["H7218"]],[16,17,["H5387"]],[17,19,["H4902"]],[19,21,["H8422"]]]},{"k":21429,"v":[[0,6,["H7725"]],[6,8,["H5414"]],[8,9,["H2397"]],[9,12,["H3895"]],[12,18,["H3318","(H853)"]],[18,20,["H3605"]],[20,22,["H2428"]],[22,23,["H5483"]],[23,25,["H6571"]],[25,26,["H3605"]],[26,29,["H3847"]],[29,32,["H4358"]],[32,37,["H7227"]],[37,38,["H6951"]],[38,40,["H6793"]],[40,42,["H4043"]],[42,43,["H3605"]],[43,46,["H8610"]],[46,47,["H2719"]]]},{"k":21430,"v":[[0,1,["H6539"]],[1,2,["H3568"]],[2,4,["H6316"]],[4,5,["H854"]],[5,7,["H3605"]],[7,11,["H4043"]],[11,13,["H3553"]]]},{"k":21431,"v":[[0,1,["H1586"]],[1,3,["H3605"]],[3,5,["H102"]],[5,7,["H1004"]],[7,9,["H8425"]],[9,12,["H6828"]],[12,13,["H3411"]],[13,15,["H3605"]],[15,17,["H102"]],[17,19,["H7227"]],[19,20,["H5971"]],[20,21,["H854"]],[21,22,[]]]},{"k":21432,"v":[[0,3,["H3559"]],[3,5,["H3559"]],[5,8,["H859"]],[8,10,["H3605"]],[10,12,["H6951"]],[12,15,["H6950"]],[15,16,["H5921"]],[16,19,["H1961"]],[19,22,["H4929"]],[22,24,[]]]},{"k":21433,"v":[[0,2,["H7227"]],[2,3,["H4480","H3117"]],[3,7,["H6485"]],[7,10,["H319"]],[10,11,["H8141"]],[11,14,["H935"]],[14,15,["H413"]],[15,17,["H776"]],[17,21,["H7725"]],[21,24,["H4480","H2719"]],[24,27,["H6908"]],[27,30,["H7227"]],[30,31,["H4480","H5971"]],[31,32,["H5921"]],[32,34,["H2022"]],[34,36,["H3478"]],[36,37,["H834"]],[37,39,["H1961"]],[39,40,["H8548"]],[40,41,["H2723"]],[41,43,["H1931"]],[43,46,["H3318"]],[46,50,["H4480","H5971"]],[50,54,["H3427"]],[54,55,["H983"]],[55,56,["H3605"]],[56,58,[]]]},{"k":21434,"v":[[0,3,["H5927"]],[3,5,["H935"]],[5,8,["H7722"]],[8,11,["H1961"]],[11,14,["H6051"]],[14,16,["H3680"]],[16,18,["H776"]],[18,19,["H859"]],[19,21,["H3605"]],[21,23,["H102"]],[23,25,["H7227"]],[25,26,["H5971"]],[26,27,["H854"]],[27,28,[]]]},{"k":21435,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,11,["H1961"]],[11,15,["H1931"]],[15,16,["H3117"]],[16,18,["H1697"]],[18,19,["H5927"]],[19,20,["H5921"]],[20,22,["H3824"]],[22,26,["H2803"]],[26,28,["H7451"]],[28,29,["H4284"]]]},{"k":21436,"v":[[0,4,["H559"]],[4,8,["H5927"]],[8,9,["H5921"]],[9,11,["H776"]],[11,14,["H6519"]],[14,17,["H935"]],[17,23,["H8252"]],[23,25,["H3427"]],[25,26,["H983"]],[26,27,["H3605"]],[27,30,["H3427"]],[30,31,["H369"]],[31,32,["H2346"]],[32,35,["H369"]],[35,36,["H1280"]],[36,38,["H1817"]]]},{"k":21437,"v":[[0,2,["H7997"]],[2,4,["H7998"]],[4,7,["H962"]],[7,9,["H957"]],[9,11,["H7725"]],[11,13,["H3027"]],[13,14,["H5921"]],[14,17,["H2723"]],[17,21,["H3427"]],[21,23,["H413"]],[23,25,["H5971"]],[25,28,["H622"]],[28,32,["H4480","H1471"]],[32,35,["H6213"]],[35,36,["H4735"]],[36,38,["H7075"]],[38,40,["H3427"]],[40,41,["H5921"]],[41,43,["H2872"]],[43,46,["H776"]]]},{"k":21438,"v":[[0,1,["H7614"]],[1,3,["H1719"]],[3,6,["H5503"]],[6,8,["H8659"]],[8,10,["H3605"]],[10,13,["H3715"]],[13,16,["H559"]],[16,20,["H859"]],[20,21,["H935"]],[21,23,["H7997"]],[23,25,["H7998"]],[25,28,["H6950"]],[28,30,["H6951"]],[30,32,["H962"]],[32,34,["H957"]],[34,37,["H5375"]],[37,38,["H3701"]],[38,40,["H2091"]],[40,43,["H3947"]],[43,44,["H4735"]],[44,46,["H7075"]],[46,48,["H7997"]],[48,50,["H1419"]],[50,51,["H7998"]]]},{"k":21439,"v":[[0,1,["H3651"]],[1,2,["H1121"]],[2,4,["H120"]],[4,5,["H5012"]],[5,7,["H559"]],[7,9,["H1463"]],[9,10,["H3541"]],[10,11,["H559"]],[11,13,["H136"]],[13,14,["H3069"]],[14,16,["H1931"]],[16,17,["H3117"]],[17,20,["H5971"]],[20,22,["H3478"]],[22,23,["H3427"]],[23,24,["H983"]],[24,27,["H3808"]],[27,28,["H3045"]],[28,29,[]]]},{"k":21440,"v":[[0,4,["H935"]],[4,7,["H4480","H4725"]],[7,11,["H6828"]],[11,12,["H4480","H3411"]],[12,13,["H859"]],[13,15,["H7227"]],[15,16,["H5971"]],[16,17,["H854"]],[17,19,["H3605"]],[19,22,["H7392"]],[22,24,["H5483"]],[24,26,["H1419"]],[26,27,["H6951"]],[27,30,["H7227"]],[30,31,["H2428"]]]},{"k":21441,"v":[[0,5,["H5927"]],[5,6,["H5921"]],[6,8,["H5971"]],[8,10,["H3478"]],[10,13,["H6051"]],[13,15,["H3680"]],[15,17,["H776"]],[17,20,["H1961"]],[20,23,["H319"]],[23,24,["H3117"]],[24,28,["H935"]],[28,30,["H5921"]],[30,32,["H776"]],[32,33,["H4616"]],[33,35,["H1471"]],[35,37,["H3045"]],[37,43,["H6942"]],[43,47,["H1463"]],[47,50,["H5869"]]]},{"k":21442,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,7,["H859"]],[7,8,["H1931"]],[8,10,["H834"]],[10,13,["H1696"]],[13,15,["H6931"]],[15,16,["H3117"]],[16,17,["H3027"]],[17,19,["H5650"]],[19,21,["H5030"]],[21,23,["H3478"]],[23,25,["H5012"]],[25,27,["H1992"]],[27,28,["H3117"]],[28,30,["H8141"]],[30,34,["H935"]],[34,36,["H5921"]],[36,37,[]]]},{"k":21443,"v":[[0,6,["H1961"]],[6,9,["H1931"]],[9,10,["H3117"]],[10,11,["H3117"]],[11,12,["H1463"]],[12,14,["H935"]],[14,15,["H5921"]],[15,17,["H127"]],[17,19,["H3478"]],[19,20,["H5002"]],[20,22,["H136"]],[22,23,["H3069"]],[23,26,["H2534"]],[26,29,["H5927"]],[29,32,["H639"]]]},{"k":21444,"v":[[0,4,["H7068"]],[4,8,["H784"]],[8,11,["H5678"]],[11,14,["H1696"]],[14,15,["H518","H3808"]],[15,17,["H1931"]],[17,18,["H3117"]],[18,21,["H1961"]],[21,23,["H1419"]],[23,24,["H7494"]],[24,25,["H5921"]],[25,27,["H127"]],[27,29,["H3478"]]]},{"k":21445,"v":[[0,4,["H1709"]],[4,7,["H3220"]],[7,10,["H5775"]],[10,13,["H8064"]],[13,16,["H2416"]],[16,19,["H7704"]],[19,21,["H3605"]],[21,23,["H7431"]],[23,25,["H7430"]],[25,26,["H5921"]],[26,28,["H127"]],[28,30,["H3605"]],[30,32,["H120"]],[32,33,["H834"]],[33,35,["H5921"]],[35,37,["H6440"]],[37,40,["H127"]],[40,42,["H7493"]],[42,45,["H4480","H6440"]],[45,48,["H2022"]],[48,52,["H2040"]],[52,56,["H4095"]],[56,58,["H5307"]],[58,60,["H3605"]],[60,61,["H2346"]],[61,63,["H5307"]],[63,66,["H776"]]]},{"k":21446,"v":[[0,5,["H7121"]],[5,7,["H2719"]],[7,8,["H5921"]],[8,11,["H3605"]],[11,13,["H2022"]],[13,14,["H5002"]],[14,16,["H136"]],[16,17,["H3069"]],[17,19,["H376"]],[19,20,["H2719"]],[20,22,["H1961"]],[22,25,["H251"]]]},{"k":21447,"v":[[0,4,["H8199"]],[4,5,["H854"]],[5,8,["H1698"]],[8,11,["H1818"]],[11,15,["H4305"]],[15,16,["H5921"]],[16,19,["H5921"]],[19,21,["H102"]],[21,23,["H5921"]],[23,25,["H7227"]],[25,26,["H5971"]],[26,27,["H834"]],[27,29,["H854"]],[29,32,["H7857"]],[32,33,["H1653"]],[33,36,["H68","H417"]],[36,37,["H784"]],[37,39,["H1614"]]]},{"k":21448,"v":[[0,5,["H1431"]],[5,8,["H6942"]],[8,13,["H3045"]],[13,16,["H5869"]],[16,18,["H7227"]],[18,19,["H1471"]],[19,23,["H3045"]],[23,24,["H3588"]],[24,25,["H589"]],[25,28,["H3068"]]]},{"k":21449,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H5012"]],[6,7,["H5921"]],[7,8,["H1463"]],[8,10,["H559"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H136"]],[14,15,["H3069"]],[15,16,["H2009"]],[16,19,["H413"]],[19,22,["H1463"]],[22,24,["H7218"]],[24,25,["H5387"]],[25,27,["H4902"]],[27,29,["H8422"]]]},{"k":21450,"v":[[0,6,["H7725"]],[6,12,["H8338"]],[12,21,["H5927"]],[21,24,["H6828"]],[24,25,["H4480","H3411"]],[25,28,["H935"]],[28,30,["H5921"]],[30,32,["H2022"]],[32,34,["H3478"]]]},{"k":21451,"v":[[0,4,["H5221"]],[4,6,["H7198"]],[6,10,["H8040"]],[10,11,["H4480","H3027"]],[11,16,["H2671"]],[16,18,["H5307"]],[18,22,["H3225"]],[22,23,["H4480","H3027"]]]},{"k":21452,"v":[[0,3,["H5307"]],[3,4,["H5921"]],[4,6,["H2022"]],[6,8,["H3478"]],[8,9,["H859"]],[9,11,["H3605"]],[11,13,["H102"]],[13,16,["H5971"]],[16,17,["H834"]],[17,19,["H854"]],[19,23,["H5414"]],[23,27,["H5861"]],[27,28,["H6833"]],[28,30,["H3605"]],[30,31,["H3671"]],[31,35,["H2416"]],[35,38,["H7704"]],[38,41,["H402"]]]},{"k":21453,"v":[[0,3,["H5307"]],[3,4,["H5921"]],[4,6,["H6440"]],[6,7,["H7704"]],[7,8,["H3588"]],[8,9,["H589"]],[9,11,["H1696"]],[11,13,["H5002"]],[13,15,["H136"]],[15,16,["H3069"]]]},{"k":21454,"v":[[0,4,["H7971"]],[4,6,["H784"]],[6,8,["H4031"]],[8,13,["H3427"]],[13,14,["H983"]],[14,17,["H339"]],[17,21,["H3045"]],[21,22,["H3588"]],[22,23,["H589"]],[23,26,["H3068"]]]},{"k":21455,"v":[[0,4,["H3045"]],[4,6,["H6944"]],[6,7,["H8034"]],[7,8,["H3045"]],[8,11,["H8432"]],[11,14,["H5971"]],[14,15,["H3478"]],[15,19,["H3808"]],[19,22,["H2490","(H853)"]],[22,24,["H6944"]],[24,25,["H8034"]],[25,27,["H5750"]],[27,30,["H1471"]],[30,32,["H3045"]],[32,33,["H3588"]],[33,34,["H589"]],[34,37,["H3068"]],[37,40,["H6918"]],[40,42,["H3478"]]]},{"k":21456,"v":[[0,1,["H2009"]],[1,4,["H935"]],[4,8,["H1961"]],[8,9,["H5002"]],[9,11,["H136"]],[11,12,["H3069"]],[12,13,["H1931"]],[13,16,["H3117"]],[16,17,["H834"]],[17,20,["H1696"]]]},{"k":21457,"v":[[0,4,["H3427"]],[4,7,["H5892"]],[7,9,["H3478"]],[9,12,["H3318"]],[12,17,["H1197"]],[17,19,["H5400"]],[19,21,["H5402"]],[21,24,["H4043"]],[24,27,["H6793"]],[27,29,["H7198"]],[29,32,["H2671"]],[32,35,["H4731","H3027"]],[35,38,["H7420"]],[38,42,["H1197"]],[42,45,["H784"]],[45,46,["H7651"]],[46,47,["H8141"]]]},{"k":21458,"v":[[0,5,["H5375"]],[5,6,["H3808"]],[6,7,["H6086"]],[7,9,["H4480"]],[9,11,["H7704"]],[11,12,["H3808"]],[12,14,["H2404"]],[14,17,["H4480"]],[17,19,["H3293"]],[19,20,["H3588"]],[20,23,["H1197"]],[23,25,["H5402"]],[25,27,["H784"]],[27,31,["H7997","(H853)"]],[31,34,["H7997"]],[34,37,["H962","(H853)"]],[37,40,["H962"]],[40,42,["H5002"]],[42,44,["H136"]],[44,45,["H3069"]]]},{"k":21459,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,13,["H5414"]],[13,15,["H1463"]],[15,17,["H4725"]],[17,18,["H8033"]],[18,20,["H6913"]],[20,22,["H3478"]],[22,24,["H1516"]],[24,27,["H5674"]],[27,30,["H6926"]],[30,33,["H3220"]],[33,35,["H1931"]],[35,37,["H2629","(H853)"]],[37,42,["H5674"]],[42,44,["H8033"]],[44,47,["H6912","(H853)"]],[47,48,["H1463"]],[48,50,["H3605"]],[50,52,["H1995"]],[52,56,["H7121"]],[56,59,["H1516"]],[59,61,["H1996"]]]},{"k":21460,"v":[[0,2,["H7651"]],[2,3,["H2320"]],[3,6,["H1004"]],[6,8,["H3478"]],[8,10,["H6912"]],[10,13,["H4616"]],[13,16,["H2891","(H853)"]],[16,18,["H776"]]]},{"k":21461,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,7,["H776"]],[7,9,["H6912"]],[9,14,["H1961"]],[14,18,["H8034"]],[18,20,["H3117"]],[20,25,["H3513"]],[25,26,["H5002"]],[26,28,["H136"]],[28,29,["H3069"]]]},{"k":21462,"v":[[0,5,["H914"]],[5,6,["H376"]],[6,9,["H8548"]],[9,10,["H5674"]],[10,13,["H776"]],[13,15,["H6912","(H853)"]],[15,18,["H5674","(H853)"]],[18,21,["H3498"]],[21,22,["H5921"]],[22,24,["H6440"]],[24,27,["H776"]],[27,29,["H2891"]],[29,33,["H4480","H7097"]],[33,35,["H7651"]],[35,36,["H2320"]],[36,39,["H2713"]]]},{"k":21463,"v":[[0,3,["H5674"]],[3,6,["H5674"]],[6,8,["H776"]],[8,11,["H7200"]],[11,13,["H120"]],[13,14,["H6106"]],[14,19,["H1129"]],[19,21,["H6725"]],[21,22,["H681"]],[22,24,["H5704"]],[24,26,["H6912"]],[26,28,["H6912"]],[28,30,["H413"]],[30,32,["H1516"]],[32,34,["H1996"]]]},{"k":21464,"v":[[0,2,["H1571"]],[2,4,["H8034"]],[4,7,["H5892"]],[7,10,["H1997"]],[10,14,["H2891"]],[14,16,["H776"]]]},{"k":21465,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H3541"]],[6,7,["H559"]],[7,9,["H136"]],[9,10,["H3069"]],[10,11,["H559"]],[11,13,["H3605"]],[13,14,["H3671"]],[14,15,["H6833"]],[15,18,["H3605"]],[18,19,["H2416"]],[19,22,["H7704"]],[22,24,["H6908"]],[24,26,["H935"]],[26,28,["H622"]],[28,31,["H4480","H5439"]],[31,32,["H5921"]],[32,34,["H2077"]],[34,35,["H834"]],[35,36,["H589"]],[36,38,["H2076"]],[38,43,["H1419"]],[43,44,["H2077"]],[44,45,["H5921"]],[45,47,["H2022"]],[47,49,["H3478"]],[49,53,["H398"]],[53,54,["H1320"]],[54,56,["H8354"]],[56,57,["H1818"]]]},{"k":21466,"v":[[0,3,["H398"]],[3,5,["H1320"]],[5,8,["H1368"]],[8,10,["H8354"]],[10,12,["H1818"]],[12,15,["H5387"]],[15,18,["H776"]],[18,20,["H352"]],[20,22,["H3733"]],[22,25,["H6260"]],[25,27,["H6499"]],[27,28,["H3605"]],[28,31,["H4806"]],[31,33,["H1316"]]]},{"k":21467,"v":[[0,4,["H398"]],[4,5,["H2459"]],[5,9,["H7654"]],[9,11,["H8354"]],[11,12,["H1818"]],[12,16,["H7943"]],[16,19,["H4480","H2077"]],[19,20,["H834"]],[20,23,["H2076"]],[23,25,[]]]},{"k":21468,"v":[[0,5,["H7646"]],[5,6,["H5921"]],[6,8,["H7979"]],[8,10,["H5483"]],[10,12,["H7393"]],[12,15,["H1368"]],[15,18,["H3605"]],[18,19,["H376"]],[19,21,["H4421"]],[21,22,["H5002"]],[22,24,["H136"]],[24,25,["H3069"]]]},{"k":21469,"v":[[0,4,["H5414","(H853)"]],[4,6,["H3519"]],[6,9,["H1471"]],[9,11,["H3605"]],[11,13,["H1471"]],[13,15,["H7200","(H853)"]],[15,17,["H4941"]],[17,18,["H834"]],[18,21,["H6213"]],[21,24,["H3027"]],[24,25,["H834"]],[25,28,["H7760"]],[28,30,[]]]},{"k":21470,"v":[[0,3,["H1004"]],[3,5,["H3478"]],[5,7,["H3045"]],[7,8,["H3588"]],[8,9,["H589"]],[9,12,["H3068"]],[12,14,["H430"]],[14,15,["H4480"]],[15,16,["H1931"]],[16,17,["H3117"]],[17,19,["H1973"]]]},{"k":21471,"v":[[0,3,["H1471"]],[3,5,["H3045"]],[5,6,["H3588"]],[6,8,["H1004"]],[8,10,["H3478"]],[10,13,["H1540"]],[13,16,["H5771"]],[16,17,["H5921","H834"]],[17,19,["H4603"]],[19,23,["H5641"]],[23,26,["H6440"]],[26,27,["H4480"]],[27,30,["H5414"]],[30,34,["H3027"]],[34,37,["H6862"]],[37,39,["H5307"]],[39,41,["H3605"]],[41,44,["H2719"]]]},{"k":21472,"v":[[0,4,["H2932"]],[4,9,["H6588"]],[9,12,["H6213"]],[12,16,["H5641"]],[16,18,["H6440"]],[18,19,["H4480"]],[19,20,[]]]},{"k":21473,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H6258"]],[7,11,["H7725","(H853)"]],[11,13,["H7622"]],[13,15,["H3290"]],[15,18,["H7355"]],[18,21,["H3605"]],[21,22,["H1004"]],[22,24,["H3478"]],[24,28,["H7065"]],[28,31,["H6944"]],[31,32,["H8034"]]]},{"k":21474,"v":[[0,5,["H5375","(H853)"]],[5,7,["H3639"]],[7,9,["H3605"]],[9,11,["H4604"]],[11,12,["H834"]],[12,15,["H4603"]],[15,20,["H3427"]],[20,21,["H983"]],[21,22,["H5921"]],[22,24,["H127"]],[24,26,["H369"]],[26,29,["H2729"]]]},{"k":21475,"v":[[0,6,["H7725","(H853)"]],[6,7,["H4480"]],[7,9,["H5971"]],[9,11,["H6908"]],[11,16,["H341"]],[16,17,["H4480","H776"]],[17,20,["H6942"]],[20,25,["H5869"]],[25,27,["H7227"]],[27,28,["H1471"]]]},{"k":21476,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,11,["H430"]],[11,19,["H1540"]],[19,20,["H413"]],[20,22,["H1471"]],[22,26,["H3664"]],[26,28,["H5921"]],[28,31,["H127"]],[31,34,["H3498"]],[34,35,["H3808"]],[35,36,["H4480"]],[36,39,["H5750"]],[39,40,["H8033"]]]},{"k":21477,"v":[[0,1,["H3808"]],[1,4,["H5641"]],[4,6,["H6440"]],[6,8,["H5750"]],[8,9,["H4480"]],[9,11,["H834"]],[11,15,["H8210","(H853)"]],[15,17,["H7307"]],[17,18,["H5921"]],[18,20,["H1004"]],[20,22,["H3478"]],[22,23,["H5002"]],[23,25,["H136"]],[25,26,["H3069"]]]},{"k":21478,"v":[[0,3,["H2568"]],[3,5,["H6242"]],[5,6,["H8141"]],[6,9,["H1546"]],[9,12,["H7218"]],[12,15,["H8141"]],[15,18,["H6218"]],[18,22,["H2320"]],[22,25,["H702","H6240"]],[25,26,["H8141"]],[26,27,["H310"]],[27,28,["H834"]],[28,30,["H5892"]],[30,32,["H5221"]],[32,35,["H2088","H6106"]],[35,36,["H3117"]],[36,38,["H3027"]],[38,41,["H3068"]],[41,42,["H1961"]],[42,43,["H5921"]],[43,46,["H935"]],[46,48,["H8033"]]]},{"k":21479,"v":[[0,3,["H4759"]],[3,5,["H430"]],[5,6,["H935"]],[6,9,["H413"]],[9,11,["H776"]],[11,13,["H3478"]],[13,15,["H5117"]],[15,17,["H413"]],[17,19,["H3966"]],[19,20,["H1364"]],[20,21,["H2022"]],[21,22,["H5921"]],[22,27,["H4011"]],[27,30,["H5892"]],[30,33,["H4480","H5045"]]]},{"k":21480,"v":[[0,3,["H935"]],[3,5,["H8033"]],[5,7,["H2009"]],[7,11,["H376"]],[11,13,["H4758"]],[13,17,["H4758"]],[17,19,["H5178"]],[19,22,["H6616"]],[22,24,["H6593"]],[24,27,["H3027"]],[27,30,["H4060"]],[30,31,["H7070"]],[31,33,["H1931"]],[33,34,["H5975"]],[34,37,["H8179"]]]},{"k":21481,"v":[[0,3,["H376"]],[3,4,["H1696"]],[4,5,["H413"]],[5,7,["H1121"]],[7,9,["H120"]],[9,10,["H7200"]],[10,13,["H5869"]],[13,15,["H8085"]],[15,18,["H241"]],[18,20,["H7760"]],[20,22,["H3820"]],[22,24,["H3605"]],[24,25,["H834"]],[25,26,["H589"]],[26,28,["H7200"]],[28,30,["H3588"]],[30,34,["H4616"]],[34,37,["H7200"]],[37,43,["H935"]],[43,44,["H2008"]],[44,45,["H5046","(H853)"]],[45,46,["H3605"]],[46,47,["H834"]],[47,48,["H859"]],[48,49,["H7200"]],[49,52,["H1004"]],[52,54,["H3478"]]]},{"k":21482,"v":[[0,2,["H2009"]],[2,4,["H2346"]],[4,7,["H4480","H2351"]],[7,10,["H1004"]],[10,12,["H5439","H5439"]],[12,16,["H376"]],[16,17,["H3027"]],[17,19,["H4060"]],[19,20,["H7070"]],[20,22,["H8337"]],[22,23,["H520"]],[23,27,["H520"]],[27,31,["H2948"]],[31,34,["H4058","(H853)"]],[34,36,["H7341"]],[36,39,["H1146"]],[39,40,["H259"]],[40,41,["H7070"]],[41,44,["H6967"]],[44,45,["H259"]],[45,46,["H7070"]]]},{"k":21483,"v":[[0,2,["H935"]],[2,4,["H413"]],[4,6,["H8179"]],[6,7,["H834"]],[7,8,["H6440"]],[8,9,["H1870"]],[9,11,["H6921"]],[11,14,["H5927"]],[14,16,["H4609"]],[16,19,["H4058","(H853)"]],[19,21,["H5592"]],[21,24,["H8179"]],[24,27,["H259"]],[27,28,["H7070"]],[28,29,["H7341"]],[29,32,["H259"]],[32,33,["H5592"]],[33,39,["H259"]],[39,40,["H7070"]],[40,41,["H7341"]]]},{"k":21484,"v":[[0,4,["H8372"]],[4,6,["H259"]],[6,7,["H7070"]],[7,8,["H753"]],[8,10,["H259"]],[10,11,["H7070"]],[11,12,["H7341"]],[12,14,["H996"]],[14,17,["H8372"]],[17,19,["H2568"]],[19,20,["H520"]],[20,23,["H5592"]],[23,26,["H8179"]],[26,27,["H4480","H681"]],[27,29,["H197"]],[29,32,["H8179"]],[32,33,["H1004"]],[33,35,["H259"]],[35,36,["H7070"]]]},{"k":21485,"v":[[0,2,["H4058"]],[2,3,["(H853)"]],[3,5,["H197"]],[5,8,["H8179"]],[8,9,["H1004"]],[9,10,["H259"]],[10,11,["H7070"]]]},{"k":21486,"v":[[0,2,["H4058"]],[2,3,["(H853)"]],[3,5,["H197"]],[5,8,["H8179"]],[8,9,["H8083"]],[9,10,["H520"]],[10,13,["H352"]],[13,15,["H8147"]],[15,16,["H520"]],[16,19,["H197"]],[19,22,["H8179"]],[22,24,["H1004"]]]},{"k":21487,"v":[[0,4,["H8372"]],[4,7,["H8179"]],[7,8,["H1870","H6921"]],[8,10,["H7969"]],[10,13,["H4480","H6311"]],[13,15,["H7969"]],[15,18,["H4480","H6311"]],[18,20,["H7969"]],[20,23,["H259"]],[23,24,["H4060"]],[24,27,["H352"]],[27,29,["H259"]],[29,30,["H4060"]],[30,33,["H4480","H6311"]],[33,37,["H4480","H6311"]]]},{"k":21488,"v":[[0,3,["H4058","(H853)"]],[3,5,["H7341"]],[5,8,["H6607"]],[8,11,["H8179"]],[11,12,["H6235"]],[12,13,["H520"]],[13,16,["H753"]],[16,19,["H8179"]],[19,20,["H7969","H6240"]],[20,21,["H520"]]]},{"k":21489,"v":[[0,2,["H1366"]],[2,4,["H6440"]],[4,7,["H8372"]],[7,9,["H259"]],[9,10,["H520"]],[10,16,["H1366"]],[16,18,["H259"]],[18,19,["H520"]],[19,22,["H4480","H6311"]],[22,26,["H8372"]],[26,28,["H8337"]],[28,29,["H520"]],[29,32,["H4480","H6311"]],[32,34,["H8337"]],[34,35,["H520"]],[35,38,["H4480","H6311"]]]},{"k":21490,"v":[[0,2,["H4058"]],[2,3,["(H853)"]],[3,5,["H8179"]],[5,8,["H4480","H1406"]],[8,12,["H8372"]],[12,15,["H1406"]],[15,19,["H7341"]],[19,21,["H2568"]],[21,23,["H6242"]],[23,24,["H520"]],[24,25,["H6607"]],[25,26,["H5048"]],[26,27,["H6607"]]]},{"k":21491,"v":[[0,2,["H6213"]],[2,3,["(H853)"]],[3,4,["H352"]],[4,6,["H8346"]],[6,7,["H520"]],[7,9,["H413"]],[9,11,["H352"]],[11,14,["H2691"]],[14,16,["H5439","H5439"]],[16,18,["H8179"]]]},{"k":21492,"v":[[0,2,["H5921"]],[2,4,["H6440"]],[4,7,["H8179"]],[7,10,["H2978"]],[10,11,["H5921"]],[11,13,["H6440"]],[13,16,["H197"]],[16,19,["H6442"]],[19,20,["H8179"]],[20,22,["H2572"]],[22,23,["H520"]]]},{"k":21493,"v":[[0,4,["H331"]],[4,5,["H2474"]],[5,6,["H413"]],[6,9,["H8372"]],[9,11,["H413"]],[11,13,["H352"]],[13,14,["H6441"]],[14,16,["H8179"]],[16,18,["H5439","H5439"]],[18,20,["H3651"]],[20,23,["H361"]],[23,25,["H2474"]],[25,28,["H5439","H5439"]],[28,29,["H6441"]],[29,31,["H413"]],[31,33,["H352"]],[33,36,["H8561"]]]},{"k":21494,"v":[[0,2,["H935"]],[2,5,["H413"]],[5,7,["H2435"]],[7,8,["H2691"]],[8,10,["H2009"]],[10,13,["H3957"]],[13,16,["H7531"]],[16,17,["H6213"]],[17,20,["H2691"]],[20,22,["H5439","H5439"]],[22,23,["H7970"]],[23,24,["H3957"]],[24,26,["H413"]],[26,28,["H7531"]]]},{"k":21495,"v":[[0,3,["H7531"]],[3,4,["H413"]],[4,6,["H3802"]],[6,9,["H8179"]],[9,11,["H5980"]],[11,13,["H753"]],[13,16,["H8179"]],[16,19,["H8481"]],[19,20,["H7531"]]]},{"k":21496,"v":[[0,3,["H4058"]],[3,5,["H7341"]],[5,8,["H4480","H6440"]],[8,11,["H8481"]],[11,12,["H8179"]],[12,15,["H6440"]],[15,18,["H6442"]],[18,19,["H2691"]],[19,20,["H4480","H2351"]],[20,22,["H3967"]],[22,23,["H520"]],[23,24,["H6921"]],[24,26,["H6828"]]]},{"k":21497,"v":[[0,3,["H8179"]],[3,6,["H2435"]],[6,7,["H2691"]],[7,8,["H834"]],[8,9,["H6440"]],[9,10,["H1870"]],[10,12,["H6828"]],[12,14,["H4058"]],[14,16,["H753"]],[16,20,["H7341"]],[20,21,[]]]},{"k":21498,"v":[[0,4,["H8372"]],[4,7,["H7969"]],[7,10,["H4480","H6311"]],[10,12,["H7969"]],[12,15,["H4480","H6311"]],[15,18,["H352"]],[18,22,["H361"]],[22,24,["H1961"]],[24,27,["H4060"]],[27,30,["H7223"]],[30,31,["H8179"]],[31,33,["H753"]],[33,36,["H2572"]],[36,37,["H520"]],[37,40,["H7341"]],[40,41,["H2568"]],[41,43,["H6242"]],[43,44,["H520"]]]},{"k":21499,"v":[[0,3,["H2474"]],[3,6,["H361"]],[6,10,["H8561"]],[10,14,["H4060"]],[14,17,["H8179"]],[17,18,["H834"]],[18,19,["H6440"]],[19,20,["H1870"]],[20,22,["H6921"]],[22,26,["H5927"]],[26,30,["H7651"]],[30,31,["H4609"]],[31,34,["H361"]],[34,37,["H6440"]],[37,38,[]]]},{"k":21500,"v":[[0,3,["H8179"]],[3,6,["H6442"]],[6,7,["H2691"]],[7,10,["H5048"]],[10,12,["H8179"]],[12,15,["H6828"]],[15,19,["H6921"]],[19,22,["H4058"]],[22,24,["H4480","H8179"]],[24,25,["H413"]],[25,26,["H8179"]],[26,28,["H3967"]],[28,29,["H520"]]]},{"k":21501,"v":[[0,4,["H1980"]],[4,6,["H1870"]],[6,8,["H1864"]],[8,10,["H2009"]],[10,12,["H8179"]],[12,13,["H1870"]],[13,15,["H1864"]],[15,18,["H4058"]],[18,20,["H352"]],[20,24,["H361"]],[24,28,["H428"]],[28,29,["H4060"]]]},{"k":21502,"v":[[0,4,["H2474"]],[4,10,["H361"]],[10,13,["H5439","H5439"]],[13,15,["H428"]],[15,16,["H2474"]],[16,18,["H753"]],[18,20,["H2572"]],[20,21,["H520"]],[21,24,["H7341"]],[24,25,["H2568"]],[25,27,["H6242"]],[27,28,["H520"]]]},{"k":21503,"v":[[0,4,["H7651"]],[4,5,["H4609"]],[5,8,["H5930"]],[8,13,["H361"]],[13,16,["H6440"]],[16,22,["H8561"]],[22,23,["H259"]],[23,26,["H4480","H6311"]],[26,28,["H259"]],[28,31,["H4480","H6311"]],[31,32,["H413"]],[32,34,["H352"]],[34,35,[]]]},{"k":21504,"v":[[0,5,["H8179"]],[5,8,["H6442"]],[8,9,["H2691"]],[9,10,["H1870"]],[10,12,["H1864"]],[12,15,["H4058"]],[15,17,["H4480","H8179"]],[17,18,["H413"]],[18,19,["H8179"]],[19,20,["H1870"]],[20,22,["H1864"]],[22,24,["H3967"]],[24,25,["H520"]]]},{"k":21505,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H6442"]],[7,8,["H2691"]],[8,11,["H1864"]],[11,12,["H8179"]],[12,15,["H4058","(H853)"]],[15,17,["H1864"]],[17,18,["H8179"]],[18,21,["H428"]],[21,22,["H4060"]]]},{"k":21506,"v":[[0,4,["H8372"]],[4,8,["H352"]],[8,12,["H361"]],[12,16,["H428"]],[16,17,["H4060"]],[17,21,["H2474"]],[21,27,["H361"]],[27,30,["H5439","H5439"]],[30,33,["H2572"]],[33,34,["H520"]],[34,35,["H753"]],[35,37,["H2568"]],[37,39,["H6242"]],[39,40,["H520"]],[40,41,["H7341"]]]},{"k":21507,"v":[[0,3,["H361"]],[3,5,["H5439","H5439"]],[5,7,["H2568"]],[7,9,["H6242"]],[9,10,["H520"]],[10,11,["H753"]],[11,13,["H2568"]],[13,14,["H520"]],[14,15,["H7341"]]]},{"k":21508,"v":[[0,3,["H361"]],[3,6,["H413"]],[6,8,["H2435"]],[8,9,["H2691"]],[9,12,["H8561"]],[12,14,["H413"]],[14,16,["H352"]],[16,21,["H4608"]],[21,25,["H8083"]],[25,26,["H4609"]]]},{"k":21509,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H6442"]],[7,8,["H2691"]],[8,9,["H1870"]],[9,11,["H6921"]],[11,14,["H4058","(H853)"]],[14,16,["H8179"]],[16,19,["H428"]],[19,20,["H4060"]]]},{"k":21510,"v":[[0,4,["H8372"]],[4,8,["H352"]],[8,12,["H361"]],[12,17,["H428"]],[17,18,["H4060"]],[18,22,["H2474"]],[22,27,["H361"]],[27,30,["H5439","H5439"]],[30,33,["H2572"]],[33,34,["H520"]],[34,35,["H753"]],[35,37,["H2568"]],[37,39,["H6242"]],[39,40,["H520"]],[40,41,["H7341"]]]},{"k":21511,"v":[[0,3,["H361"]],[3,8,["H2435"]],[8,9,["H2691"]],[9,12,["H8561"]],[12,14,["H413"]],[14,16,["H352"]],[16,20,["H4480","H6311"]],[20,24,["H4480","H6311"]],[24,28,["H4608"]],[28,32,["H8083"]],[32,33,["H4609"]]]},{"k":21512,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H6828"]],[7,8,["H8179"]],[8,10,["H4058"]],[10,14,["H428"]],[14,15,["H4060"]]]},{"k":21513,"v":[[0,3,["H8372"]],[3,6,["H352"]],[6,10,["H361"]],[10,14,["H2474"]],[14,18,["H5439","H5439"]],[18,20,["H753"]],[20,22,["H2572"]],[22,23,["H520"]],[23,26,["H7341"]],[26,27,["H2568"]],[27,29,["H6242"]],[29,30,["H520"]]]},{"k":21514,"v":[[0,3,["H352"]],[3,8,["H2435"]],[8,9,["H2691"]],[9,12,["H8561"]],[12,14,["H413"]],[14,16,["H352"]],[16,20,["H4480","H6311"]],[20,24,["H4480","H6311"]],[24,28,["H4608"]],[28,32,["H8083"]],[32,33,["H4609"]]]},{"k":21515,"v":[[0,3,["H3957"]],[3,6,["H6607"]],[6,11,["H352"]],[11,14,["H8179"]],[14,15,["H8033"]],[15,17,["H1740","(H853)"]],[17,20,["H5930"]]]},{"k":21516,"v":[[0,4,["H197"]],[4,7,["H8179"]],[7,9,["H8147"]],[9,10,["H7979"]],[10,13,["H4480","H6311"]],[13,15,["H8147"]],[15,16,["H7979"]],[16,19,["H4480","H6311"]],[19,21,["H7819"]],[21,22,["H413"]],[22,25,["H5930"]],[25,29,["H2403"]],[29,33,["H817"]]]},{"k":21517,"v":[[0,2,["H413"]],[2,4,["H3802"]],[4,5,["H4480","H2351"]],[5,9,["H5927"]],[9,12,["H6607"]],[12,15,["H6828"]],[15,16,["H8179"]],[16,18,["H8147"]],[18,19,["H7979"]],[19,21,["H413"]],[21,23,["H312"]],[23,24,["H3802"]],[24,25,["H834"]],[25,29,["H197"]],[29,32,["H8179"]],[32,34,["H8147"]],[34,35,["H7979"]]]},{"k":21518,"v":[[0,1,["H702"]],[1,2,["H7979"]],[2,6,["H4480","H6311"]],[6,8,["H702"]],[8,9,["H7979"]],[9,12,["H4480","H6311"]],[12,15,["H3802"]],[15,18,["H8179"]],[18,19,["H8083"]],[19,20,["H7979"]],[20,21,["H413"]],[21,23,["H7819"]],[23,25,[]]]},{"k":21519,"v":[[0,3,["H702"]],[3,4,["H7979"]],[4,7,["H1496"]],[7,8,["H68"]],[8,12,["H5930"]],[12,14,["H259"]],[14,15,["H520"]],[15,17,["H259"]],[17,18,["H2677"]],[18,19,["H753"]],[19,22,["H520"]],[22,25,["H2677"]],[25,26,["H7341"]],[26,28,["H259"]],[28,29,["H520"]],[29,30,["H1363"]],[30,31,["H413"]],[31,34,["H5117","(H853)"]],[34,36,["H3627"]],[36,37,["H834"]],[37,39,["H7819","(H853)"]],[39,42,["H5930"]],[42,45,["H2077"]]]},{"k":21520,"v":[[0,2,["H1004"]],[2,4,["H8240"]],[4,5,["H259"]],[5,7,["H2948"]],[7,8,["H3559"]],[8,10,["H5439","H5439"]],[10,12,["H413"]],[12,14,["H7979"]],[14,17,["H1320"]],[17,20,["H7133"]]]},{"k":21521,"v":[[0,2,["H4480","H2351"]],[2,4,["H6442"]],[4,5,["H8179"]],[5,8,["H3957"]],[8,11,["H7891"]],[11,14,["H6442"]],[14,15,["H2691"]],[15,16,["H834"]],[16,18,["H413"]],[18,20,["H3802"]],[20,23,["H6828"]],[23,24,["H8179"]],[24,27,["H6440"]],[27,29,["H1870"]],[29,31,["H1864"]],[31,32,["H259"]],[32,33,["H413"]],[33,35,["H3802"]],[35,38,["H6921"]],[38,39,["H8179"]],[39,42,["H6440"]],[42,43,["H1870"]],[43,45,["H6828"]]]},{"k":21522,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H2090"]],[6,7,["H3957"]],[7,8,["H834"]],[8,9,["H6440"]],[9,11,["H1870"]],[11,13,["H1864"]],[13,17,["H3548"]],[17,19,["H8104"]],[19,22,["H4931"]],[22,25,["H1004"]]]},{"k":21523,"v":[[0,3,["H3957"]],[3,4,["H834"]],[4,5,["H6440"]],[5,7,["H1870"]],[7,9,["H6828"]],[9,13,["H3548"]],[13,15,["H8104"]],[15,18,["H4931"]],[18,21,["H4196"]],[21,22,["H1992"]],[22,25,["H1121"]],[25,27,["H6659"]],[27,30,["H4480","H1121"]],[30,32,["H3878"]],[32,35,["H7131"]],[35,36,["H413"]],[36,38,["H3068"]],[38,40,["H8334"]],[40,42,[]]]},{"k":21524,"v":[[0,3,["H4058","(H853)"]],[3,5,["H2691"]],[5,7,["H3967"]],[7,8,["H520"]],[8,9,["H753"]],[9,12,["H3967"]],[12,13,["H520"]],[13,14,["H7341"]],[14,15,["H7251"]],[15,18,["H4196"]],[18,21,["H6440"]],[21,23,["H1004"]]]},{"k":21525,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H197"]],[7,10,["H1004"]],[10,12,["H4058"]],[12,14,["H352"]],[14,17,["H197"]],[17,18,["H2568"]],[18,19,["H520"]],[19,22,["H4480","H6311"]],[22,24,["H2568"]],[24,25,["H520"]],[25,28,["H4480","H6311"]],[28,31,["H7341"]],[31,34,["H8179"]],[34,36,["H7969"]],[36,37,["H520"]],[37,40,["H4480","H6311"]],[40,42,["H7969"]],[42,43,["H520"]],[43,46,["H4480","H6311"]]]},{"k":21526,"v":[[0,2,["H753"]],[2,5,["H197"]],[5,7,["H6242"]],[7,8,["H520"]],[8,11,["H7341"]],[11,12,["H6249","H6240"]],[12,13,["H520"]],[13,20,["H4609"]],[20,21,["H834"]],[21,24,["H5927"]],[24,25,["H413"]],[25,30,["H5982"]],[30,31,["H413"]],[31,33,["H352"]],[33,34,["H259"]],[34,37,["H4480","H6311"]],[37,39,["H259"]],[39,42,["H4480","H6311"]]]},{"k":21527,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H1964"]],[7,9,["H4058","(H853)"]],[9,11,["H352"]],[11,12,["H8337"]],[12,13,["H520"]],[13,14,["H7341"]],[14,18,["H4480","H6311"]],[18,20,["H8337"]],[20,21,["H520"]],[21,22,["H7341"]],[22,26,["H4480","H6311"]],[26,30,["H7341"]],[30,33,["H168"]]]},{"k":21528,"v":[[0,3,["H7341"]],[3,6,["H6607"]],[6,8,["H6235"]],[8,9,["H520"]],[9,12,["H3802"]],[12,15,["H6607"]],[15,17,["H2568"]],[17,18,["H520"]],[18,22,["H4480","H6311"]],[22,24,["H2568"]],[24,25,["H520"]],[25,29,["H4480","H6311"]],[29,32,["H4058"]],[32,34,["H753"]],[34,36,["H705"]],[36,37,["H520"]],[37,40,["H7341"]],[40,41,["H6242"]],[41,42,["H520"]]]},{"k":21529,"v":[[0,2,["H935"]],[2,4,["H6441"]],[4,6,["H4058"]],[6,8,["H352"]],[8,11,["H6607"]],[11,12,["H8147"]],[12,13,["H520"]],[13,16,["H6607"]],[16,17,["H8337"]],[17,18,["H520"]],[18,21,["H7341"]],[21,24,["H6607"]],[24,25,["H7651"]],[25,26,["H520"]]]},{"k":21530,"v":[[0,3,["H4058","(H853)"]],[3,5,["H753"]],[5,7,["H6242"]],[7,8,["H520"]],[8,11,["H7341"]],[11,12,["H6242"]],[12,13,["H520"]],[13,14,["H413","H6440"]],[14,16,["H1964"]],[16,19,["H559"]],[19,20,["H413"]],[20,22,["H2088"]],[22,26,["H6944","H6944"]],[26,27,[]]]},{"k":21531,"v":[[0,3,["H4058"]],[3,5,["H7023"]],[5,8,["H1004"]],[8,9,["H8337"]],[9,10,["H520"]],[10,13,["H7341"]],[13,17,["H6763"]],[17,18,["H702"]],[18,19,["H520"]],[19,21,["H5439","H5439"]],[21,23,["H1004"]],[23,26,["H5439"]]]},{"k":21532,"v":[[0,4,["H6763"]],[4,6,["H7969"]],[6,7,["H6763"]],[7,8,["H413"]],[8,9,["H6763"]],[9,11,["H7970"]],[11,13,["H6471"]],[13,16,["H935"]],[16,19,["H7023"]],[19,20,["H834"]],[20,24,["H1004"]],[24,28,["H6763"]],[28,30,["H5439","H5439"]],[30,34,["H1961"]],[34,35,["H270"]],[35,38,["H1961"]],[38,39,["H3808"]],[39,40,["H270"]],[40,43,["H7023"]],[43,46,["H1004"]]]},{"k":21533,"v":[[0,5,["H7337"]],[5,9,["H5437"]],[9,11,["H4605","H4605"]],[11,15,["H6763"]],[15,16,["H3588"]],[16,19,["H4141"]],[19,22,["H1004"]],[22,25,["H4605","H4605"]],[25,27,["H5439","H5439"]],[27,29,["H1004"]],[29,30,["H5921","H3651"]],[30,32,["H7341"]],[32,35,["H1004"]],[35,38,["H4605"]],[38,40,["H3651"]],[40,41,["H5927"]],[41,44,["H8481"]],[44,46,["H5921"]],[46,48,["H5945"]],[48,51,["H8484"]]]},{"k":21534,"v":[[0,2,["H7200"]],[2,5,["H1363"]],[5,8,["H1004"]],[8,10,["H5439","H5439"]],[10,12,["H4328"]],[12,16,["H6763"]],[16,19,["H4393"]],[19,20,["H7070"]],[20,22,["H8337"]],[22,23,["H679"]],[23,24,["H520"]]]},{"k":21535,"v":[[0,2,["H7341"]],[2,5,["H7023"]],[5,6,["H834"]],[6,11,["H6763"]],[11,12,["H2351"]],[12,14,["H2568"]],[14,15,["H520"]],[15,18,["H834"]],[18,20,["H5117"]],[20,23,["H1004"]],[23,27,["H6763"]],[27,28,["H834"]],[28,30,["H1004"]]]},{"k":21536,"v":[[0,2,["H996"]],[2,4,["H3957"]],[4,7,["H7341"]],[7,9,["H6242"]],[9,10,["H520"]],[10,12,["H5439"]],[12,14,["H1004"]],[14,17,["H5439","H5439"]]]},{"k":21537,"v":[[0,3,["H6607"]],[3,7,["H6763"]],[7,14,["H5117"]],[14,15,["H259"]],[15,16,["H6607"]],[16,17,["H1870"]],[17,19,["H6828"]],[19,21,["H259"]],[21,22,["H6607"]],[22,25,["H1864"]],[25,28,["H7341"]],[28,31,["H4725"]],[31,34,["H5117"]],[34,36,["H2568"]],[36,37,["H520"]],[37,39,["H5439","H5439"]]]},{"k":21538,"v":[[0,3,["H1146"]],[3,4,["H834"]],[4,6,["H413","H6440"]],[6,9,["H1508"]],[9,12,["H6285"]],[12,13,["H1870"]],[13,15,["H3220"]],[15,17,["H7657"]],[17,18,["H520"]],[18,19,["H7341"]],[19,22,["H7023"]],[22,25,["H1146"]],[25,27,["H2568"]],[27,28,["H520"]],[28,29,["H7341"]],[29,31,["H5439","H5439"]],[31,34,["H753"]],[34,36,["H8673"]],[36,37,["H520"]]]},{"k":21539,"v":[[0,3,["H4058","(H853)"]],[3,5,["H1004"]],[5,7,["H3967"]],[7,8,["H520"]],[8,9,["H753"]],[9,13,["H1508"]],[13,16,["H1140"]],[16,19,["H7023"]],[19,22,["H3967"]],[22,23,["H520"]],[23,24,["H753"]]]},{"k":21540,"v":[[0,3,["H7341"]],[3,6,["H6440"]],[6,9,["H1004"]],[9,14,["H1508"]],[14,17,["H6921"]],[17,19,["H3967"]],[19,20,["H520"]]]},{"k":21541,"v":[[0,3,["H4058"]],[3,5,["H753"]],[5,8,["H1146"]],[8,10,["H413","H6440"]],[10,13,["H1508"]],[13,14,["H834"]],[14,16,["H5921","H310"]],[16,20,["H862"]],[20,25,["H4480","H6311"]],[25,30,["H4480","H6311"]],[30,32,["H3967"]],[32,33,["H520"]],[33,36,["H6442"]],[36,37,["H1964"]],[37,40,["H197"]],[40,43,["H2691"]]]},{"k":21542,"v":[[0,3,["H5592"]],[3,6,["H331"]],[6,7,["H2474"]],[7,10,["H862"]],[10,12,["H5439"]],[12,16,["H7969"]],[16,18,["H5048"]],[18,20,["H5592"]],[20,21,["H7824"]],[21,23,["H6086"]],[23,25,["H5439","H5439"]],[25,29,["H776"]],[29,31,["H5704"]],[31,33,["H2474"]],[33,36,["H2474"]],[36,38,["H3680"]]]},{"k":21543,"v":[[0,1,["H5921"]],[1,3,["H4480","H5921"]],[3,5,["H6607"]],[5,7,["H5704"]],[7,9,["H6442"]],[9,10,["H1004"]],[10,12,["H2351"]],[12,14,["H413"]],[14,15,["H3605"]],[15,17,["H7023"]],[17,19,["H5439","H5439"]],[19,20,["H6442"]],[20,22,["H2435"]],[22,24,["H4060"]]]},{"k":21544,"v":[[0,4,["H6213"]],[4,6,["H3742"]],[6,9,["H8561"]],[9,14,["H8561"]],[14,16,["H996"]],[16,18,["H3742"]],[18,21,["H3742"]],[21,24,["H3742"]],[24,26,["H8147"]],[26,27,["H6440"]]]},{"k":21545,"v":[[0,4,["H6440"]],[4,7,["H120"]],[7,9,["H413"]],[9,12,["H8561"]],[12,16,["H4480","H6311"]],[16,19,["H6440"]],[19,23,["H3715"]],[23,24,["H413"]],[24,27,["H8561"]],[27,31,["H4480","H6311"]],[31,34,["H6213"]],[34,35,["H413"]],[35,36,["H3605"]],[36,38,["H1004"]],[38,40,["H5439","H5439"]]]},{"k":21546,"v":[[0,3,["H776"]],[3,4,["H5704"]],[4,5,["H4480","H5921"]],[5,7,["H6607"]],[7,9,["H3742"]],[9,12,["H8561"]],[12,13,["H6213"]],[13,17,["H7023"]],[17,20,["H1964"]]]},{"k":21547,"v":[[0,2,["H4201"]],[2,5,["H1964"]],[5,7,["H7251"]],[7,10,["H6440"]],[10,13,["H6944"]],[13,15,["H4758"]],[15,21,["H4758"]],[21,24,[]]]},{"k":21548,"v":[[0,2,["H4196"]],[2,4,["H6086"]],[4,6,["H7969"]],[6,7,["H520"]],[7,8,["H1364"]],[8,11,["H753"]],[11,13,["H8147"]],[13,14,["H520"]],[14,17,["H4740"]],[17,21,["H753"]],[21,25,["H7023"]],[25,29,["H6086"]],[29,32,["H1696"]],[32,33,["H413"]],[33,35,["H2088"]],[35,38,["H7979"]],[38,39,["H834"]],[39,41,["H6440"]],[41,43,["H3068"]]]},{"k":21549,"v":[[0,3,["H1964"]],[3,6,["H6944"]],[6,8,["H8147"]],[8,9,["H1817"]]]},{"k":21550,"v":[[0,3,["H1817"]],[3,5,["H8147"]],[5,6,["H1817"]],[6,8,["H8147"]],[8,9,["H4142"]],[9,10,["H1817"]],[10,11,["H8147"]],[11,15,["H259"]],[15,16,["H1817"]],[16,18,["H8147"]],[18,19,["H1817"]],[19,22,["H312"]],[22,23,[]]]},{"k":21551,"v":[[0,4,["H6213"]],[4,5,["H413"]],[5,7,["H413"]],[7,9,["H1817"]],[9,12,["H1964"]],[12,13,["H3742"]],[13,16,["H8561"]],[16,18,["H834"]],[18,20,["H6213"]],[20,23,["H7023"]],[23,27,["H5645"]],[27,28,["H6086"]],[28,29,["H413"]],[29,31,["H6440"]],[31,34,["H197"]],[34,35,["H2351"]]]},{"k":21552,"v":[[0,4,["H331"]],[4,5,["H2474"]],[5,8,["H8561"]],[8,12,["H4480","H6311"]],[12,17,["H4480","H6311"]],[17,18,["H413"]],[18,20,["H3802"]],[20,23,["H197"]],[23,28,["H6763"]],[28,31,["H1004"]],[31,34,["H5646"]]]},{"k":21553,"v":[[0,5,["H3318"]],[5,6,["H413"]],[6,8,["H2435"]],[8,9,["H2691"]],[9,11,["H1870"]],[11,12,["H1870"]],[12,14,["H6828"]],[14,17,["H935"]],[17,19,["H413"]],[19,21,["H3957"]],[21,22,["H834"]],[22,25,["H5048"]],[25,28,["H1508"]],[28,30,["H834"]],[30,32,["H5048"]],[32,34,["H1146"]],[34,35,["H413"]],[35,37,["H6828"]]]},{"k":21554,"v":[[0,1,["H413","H6440"]],[1,3,["H753"]],[3,6,["H3967"]],[6,7,["H520"]],[7,10,["H6828"]],[10,11,["H6607"]],[11,14,["H7341"]],[14,16,["H2572"]],[16,17,["H520"]]]},{"k":21555,"v":[[0,2,["H5048"]],[2,4,["H6242"]],[4,6,["H834"]],[6,10,["H6442"]],[10,11,["H2691"]],[11,14,["H5048"]],[14,16,["H7531"]],[16,17,["H834"]],[17,21,["H2435"]],[21,22,["H2691"]],[22,24,["H862"]],[24,25,["H413","H6440"]],[25,26,["H862"]],[26,28,["H7992"]],[28,29,[]]]},{"k":21556,"v":[[0,2,["H6440"]],[2,4,["H3957"]],[4,7,["H4109"]],[7,9,["H6235"]],[9,10,["H520"]],[10,11,["H7341"]],[11,12,["H6442"]],[12,14,["H1870"]],[14,16,["H259"]],[16,17,["H520"]],[17,20,["H6607"]],[20,23,["H6828"]]]},{"k":21557,"v":[[0,3,["H5945"]],[3,4,["H3957"]],[4,6,["H7114"]],[6,7,["H3588"]],[7,9,["H862"]],[9,11,["H3201"]],[11,13,["H4480","H2007"]],[13,16,["H4480","H8481"]],[16,20,["H4480","H8484"]],[20,23,["H1146"]]]},{"k":21558,"v":[[0,1,["H3588"]],[1,2,["H2007"]],[2,5,["H8027"]],[5,9,["H369"]],[9,10,["H5982"]],[10,13,["H5982"]],[13,16,["H2691"]],[16,17,["H5921","H3651"]],[17,21,["H680"]],[21,25,["H4480","H8481"]],[25,28,["H8484"]],[28,31,["H4480","H776"]]]},{"k":21559,"v":[[0,3,["H1447"]],[3,4,["H834"]],[4,6,["H2351"]],[6,8,["H5980"]],[8,10,["H3957"]],[10,11,["H1870"]],[11,13,["H2435"]],[13,14,["H2691"]],[14,15,["H413"]],[15,17,["H6440"]],[17,20,["H3957"]],[20,22,["H753"]],[22,25,["H2572"]],[25,26,["H520"]]]},{"k":21560,"v":[[0,1,["H3588"]],[1,3,["H753"]],[3,6,["H3957"]],[6,7,["H834"]],[7,11,["H2435"]],[11,12,["H2691"]],[12,14,["H2572"]],[14,15,["H520"]],[15,17,["H2009"]],[17,18,["H5921","H6440"]],[18,20,["H1964"]],[20,23,["H3967"]],[23,24,["H520"]]]},{"k":21561,"v":[[0,3,["H4480","H8478"]],[3,4,["H428"]],[4,5,["H3957"]],[5,8,["H3996"]],[8,12,["H4480","H6921"]],[12,15,["H935"]],[15,17,["H2007"]],[17,21,["H2691","H2435"]]]},{"k":21562,"v":[[0,2,["H3957"]],[2,6,["H7341"]],[6,9,["H1444"]],[9,12,["H2691"]],[12,13,["H1870"]],[13,15,["H6921"]],[15,17,["H413","H6440"]],[17,20,["H1508"]],[20,23,["H413","H6440"]],[23,25,["H1146"]]]},{"k":21563,"v":[[0,3,["H1870"]],[3,4,["H6440"]],[4,9,["H4758"]],[9,12,["H3957"]],[12,13,["H834"]],[13,15,["H1870"]],[15,17,["H6828"]],[17,19,["H753"]],[19,23,["H3651"]],[23,24,["H7341"]],[24,28,["H3605"]],[28,31,["H4161"]],[31,37,["H4941"]],[37,42,["H6607"]]]},{"k":21564,"v":[[0,5,["H6607"]],[5,8,["H3957"]],[8,9,["H834"]],[9,11,["H1870"]],[11,13,["H1864"]],[13,16,["H6607"]],[16,19,["H7218"]],[19,22,["H1870"]],[22,25,["H1870"]],[25,26,["H1903"]],[26,27,["H6440"]],[27,29,["H1448"]],[29,30,["H1870"]],[30,32,["H6921"]],[32,35,["H935"]],[35,37,[]]]},{"k":21565,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,7,["H6828"]],[7,8,["H3957"]],[8,11,["H1864"]],[11,12,["H3957"]],[12,13,["H834"]],[13,15,["H413","H6440"]],[15,18,["H1508"]],[18,19,["H2007"]],[19,21,["H6944"]],[21,22,["H3957"]],[22,23,["H834","H8033"]],[23,25,["H3548"]],[25,26,["H834"]],[26,27,["H7138"]],[27,30,["H3068"]],[30,32,["H398"]],[32,36,["H6944","H6944"]],[36,37,["H8033"]],[37,40,["H5117"]],[40,44,["H6944","H6944"]],[44,48,["H4503"]],[48,52,["H2403"]],[52,56,["H817"]],[56,57,["H3588"]],[57,59,["H4725"]],[59,61,["H6918"]]]},{"k":21566,"v":[[0,3,["H3548"]],[3,4,["H935"]],[4,9,["H3808"]],[9,11,["H3318"]],[11,14,["H4480","H6944"]],[14,16,["H413"]],[16,18,["H2435"]],[18,19,["H2691"]],[19,21,["H8033"]],[21,24,["H5117"]],[24,26,["H899"]],[26,27,["H834"]],[27,29,["H8334"]],[29,30,["H3588"]],[30,31,["H2007"]],[31,33,["H6944"]],[33,37,["H3847"]],[37,38,["H312"]],[38,39,["H899"]],[39,42,["H7126"]],[42,43,["H413"]],[43,46,["H834"]],[46,50,["H5971"]]]},{"k":21567,"v":[[0,7,["H3615"]],[7,8,["(H853)"]],[8,9,["H4060"]],[9,11,["H6442"]],[11,12,["H1004"]],[12,16,["H3318"]],[16,17,["H1870"]],[17,19,["H8179"]],[19,20,["H834"]],[20,21,["H6440"]],[21,23,["H1870"]],[23,25,["H6921"]],[25,27,["H4058"]],[27,30,["H5439","H5439"]]]},{"k":21568,"v":[[0,2,["H4058"]],[2,4,["H6921"]],[4,5,["H7307"]],[5,8,["H4060"]],[8,9,["H7070"]],[9,10,["H2568"]],[10,11,["H3967"]],[11,12,["H7070"]],[12,15,["H4060"]],[15,16,["H7070"]],[16,18,["H5439"]]]},{"k":21569,"v":[[0,2,["H4058"]],[2,4,["H6828"]],[4,5,["H7307"]],[5,6,["H2568"]],[6,7,["H3967"]],[7,8,["H7070"]],[8,11,["H4060"]],[11,12,["H7070"]],[12,14,["H5439"]]]},{"k":21570,"v":[[0,2,["H4058","(H853)"]],[2,4,["H1864"]],[4,5,["H7307"]],[5,6,["H2568"]],[6,7,["H3967"]],[7,8,["H7070"]],[8,11,["H4060"]],[11,12,["H7070"]]]},{"k":21571,"v":[[0,3,["H5437"]],[3,4,["H413"]],[4,6,["H3220"]],[6,7,["H7307"]],[7,9,["H4058"]],[9,10,["H2568"]],[10,11,["H3967"]],[11,12,["H7070"]],[12,15,["H4060"]],[15,16,["H7070"]]]},{"k":21572,"v":[[0,2,["H4058"]],[2,6,["H702"]],[6,7,["H7307"]],[7,11,["H2346"]],[11,13,["H5439","H5439"]],[13,14,["H2568"]],[14,15,["H3967"]],[15,17,["H753"]],[17,19,["H2568"]],[19,20,["H3967"]],[20,21,["H7341"]],[21,25,["H914"]],[25,26,["H996"]],[26,28,["H6944"]],[28,32,["H2455"]]]},{"k":21573,"v":[[0,3,["H1980"]],[3,5,["H413"]],[5,7,["H8179"]],[7,10,["H8179"]],[10,11,["H834"]],[11,12,["H6437"]],[12,13,["H1870"]],[13,15,["H6921"]]]},{"k":21574,"v":[[0,2,["H2009"]],[2,4,["H3519"]],[4,7,["H430"]],[7,9,["H3478"]],[9,10,["H935"]],[10,13,["H4480","H1870"]],[13,16,["H6921"]],[16,19,["H6963"]],[19,23,["H6963"]],[23,25,["H7227"]],[25,26,["H4325"]],[26,29,["H776"]],[29,30,["H215"]],[30,33,["H4480","H3519"]]]},{"k":21575,"v":[[0,7,["H4758"]],[7,10,["H4758"]],[10,11,["H834"]],[11,13,["H7200"]],[13,18,["H4758"]],[18,19,["H834"]],[19,21,["H7200"]],[21,24,["H935"]],[24,26,["H7843","(H853)"]],[26,28,["H5892"]],[28,31,["H4759"]],[31,35,["H4758"]],[35,36,["H834"]],[36,38,["H7200"]],[38,39,["H413"]],[39,41,["H5104"]],[41,42,["H3529"]],[42,45,["H5307"]],[45,46,["H413"]],[46,48,["H6440"]]]},{"k":21576,"v":[[0,3,["H3519"]],[3,6,["H3068"]],[6,7,["H935"]],[7,8,["H413"]],[8,10,["H1004"]],[10,13,["H1870"]],[13,16,["H8179"]],[16,17,["H834"]],[17,18,["H6440"]],[18,20,["H1870"]],[20,22,["H6921"]]]},{"k":21577,"v":[[0,3,["H7307"]],[3,6,["H5375"]],[6,8,["H935"]],[8,10,["H413"]],[10,12,["H6442"]],[12,13,["H2691"]],[13,15,["H2009"]],[15,17,["H3519"]],[17,20,["H3068"]],[20,21,["H4390"]],[21,23,["H1004"]]]},{"k":21578,"v":[[0,3,["H8085"]],[3,5,["H1696"]],[5,6,["H413"]],[6,11,["H4480","H1004"]],[11,14,["H376"]],[14,15,["H1961","H5975"]],[15,16,["H681"]],[16,17,[]]]},{"k":21579,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120","(H853)"]],[8,10,["H4725"]],[10,13,["H3678"]],[13,16,["H4725"]],[16,19,["H3709"]],[19,22,["H7272"]],[22,23,["H834","H8033"]],[23,26,["H7931"]],[26,29,["H8432"]],[29,32,["H1121"]],[32,34,["H3478"]],[34,36,["H5769"]],[36,39,["H6944"]],[39,40,["H8034"]],[40,43,["H1004"]],[43,45,["H3478"]],[45,46,["H3808"]],[46,47,["H5750"]],[47,48,["H2930"]],[48,50,["H1992"]],[50,53,["H4428"]],[53,56,["H2184"]],[56,60,["H6297"]],[60,63,["H4428"]],[63,67,["H1116"]]]},{"k":21580,"v":[[0,3,["H5414"]],[3,6,["H5592"]],[6,7,["H854"]],[7,9,["H5592"]],[9,12,["H4201"]],[12,13,["H681"]],[13,15,["H4201"]],[15,18,["H7023"]],[18,19,["H996"]],[19,26,["H2930","(H853)"]],[26,28,["H6944"]],[28,29,["H8034"]],[29,32,["H8441"]],[32,33,["H834"]],[33,36,["H6213"]],[36,40,["H398"]],[40,44,["H639"]]]},{"k":21581,"v":[[0,1,["H6258"]],[1,5,["H7368","(H853)"]],[5,7,["H2184"]],[7,10,["H6297"]],[10,13,["H4428"]],[13,15,["H4480"]],[15,20,["H7931"]],[20,23,["H8432"]],[23,27,["H5769"]]]},{"k":21582,"v":[[0,1,["H859"]],[1,2,["H1121"]],[2,4,["H120"]],[4,5,["H5046","(H853)"]],[5,7,["H1004","(H853)"]],[7,10,["H1004"]],[10,12,["H3478"]],[12,17,["H3637"]],[17,20,["H4480","H5771"]],[20,24,["H4058","(H853)"]],[24,26,["H8508"]]]},{"k":21583,"v":[[0,2,["H518"]],[2,5,["H3637"]],[5,7,["H4480","H3605"]],[7,8,["H834"]],[8,11,["H6213"]],[11,12,["H3045"]],[12,15,["H6699"]],[15,18,["H1004"]],[18,21,["H8498"]],[21,26,["H4161"]],[26,31,["H4126"]],[31,34,["H3605"]],[34,36,["H6699"]],[36,39,["H3605"]],[39,41,["H2708"]],[41,44,["H3605"]],[44,46,["H6699"]],[46,49,["H3605"]],[49,51,["H8451"]],[51,54,["H3789"]],[54,58,["H5869"]],[58,62,["H8104","(H853)"]],[62,64,["H3605"]],[64,65,["H6699"]],[65,68,["H3605"]],[68,70,["H2708"]],[70,73,["H6213"]],[73,74,[]]]},{"k":21584,"v":[[0,1,["H2063"]],[1,4,["H8451"]],[4,7,["H1004"]],[7,8,["H5921"]],[8,10,["H7218"]],[10,13,["H2022"]],[13,15,["H3605"]],[15,16,["H1366"]],[16,19,["H5439","H5439"]],[19,23,["H6944","H6944"]],[23,24,["H2009"]],[24,25,["H2063"]],[25,28,["H8451"]],[28,31,["H1004"]]]},{"k":21585,"v":[[0,2,["H428"]],[2,5,["H4060"]],[5,8,["H4196"]],[8,11,["H520"]],[11,13,["H520"]],[13,16,["H520"]],[16,20,["H2948"]],[20,23,["H2436"]],[23,27,["H520"]],[27,30,["H7341"]],[30,32,["H520"]],[32,35,["H1366"]],[35,37,["H413"]],[37,39,["H8193"]],[39,42,["H5439"]],[42,45,["H259"]],[45,46,["H2239"]],[46,48,["H2088"]],[48,53,["H1354"]],[53,56,["H4196"]]]},{"k":21586,"v":[[0,4,["H4480","H2436"]],[4,7,["H776"]],[7,9,["H5704"]],[9,11,["H8481"]],[11,12,["H5835"]],[12,15,["H8147"]],[15,16,["H520"]],[16,19,["H7341"]],[19,20,["H259"]],[20,21,["H520"]],[21,26,["H4480","H5835","H6996"]],[26,28,["H5704"]],[28,30,["H1419"]],[30,31,["H5835"]],[31,34,["H702"]],[34,35,["H520"]],[35,38,["H7341"]],[38,40,["H520"]]]},{"k":21587,"v":[[0,3,["H2025"]],[3,6,["H702"]],[6,7,["H520"]],[7,11,["H4480","H741"]],[11,13,["H4605"]],[13,16,["H702"]],[16,17,["H7161"]]]},{"k":21588,"v":[[0,3,["H741"]],[3,6,["H8147","H6240"]],[6,8,["H753"]],[8,9,["H8147","H6240"]],[9,10,["H7341"]],[10,11,["H7251"]],[11,12,["H413"]],[12,14,["H702"]],[14,15,["H7253"]],[15,16,[]]]},{"k":21589,"v":[[0,3,["H5835"]],[3,6,["H702","H6240"]],[6,8,["H753"]],[8,10,["H702","H6240"]],[10,11,["H7341"]],[11,12,["H413"]],[12,14,["H702"]],[14,15,["H7253"]],[15,19,["H1366"]],[19,20,["H5439"]],[20,24,["H2677"]],[24,26,["H520"]],[26,29,["H2436"]],[29,34,["H520"]],[34,35,["H5439"]],[35,38,["H4609"]],[38,40,["H6437"]],[40,43,["H6921"]]]},{"k":21590,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H3541"]],[9,10,["H559"]],[10,12,["H136"]],[12,13,["H3069"]],[13,14,["H428"]],[14,17,["H2708"]],[17,20,["H4196"]],[20,23,["H3117"]],[23,27,["H6213"]],[27,30,["H5927"]],[30,32,["H5930"]],[32,33,["H5921"]],[33,36,["H2236"]],[36,37,["H1818"]],[37,38,["H5921"]]]},{"k":21591,"v":[[0,4,["H5414"]],[4,5,["H413"]],[5,7,["H3548"]],[7,9,["H3881"]],[9,10,["H834"]],[10,14,["H4480","H2233"]],[14,16,["H6659"]],[16,18,["H7138"]],[18,19,["H413"]],[19,22,["H8334"]],[22,25,["H5002"]],[25,27,["H136"]],[27,28,["H3069"]],[28,30,["H1121","H1241"]],[30,31,["H6499"]],[31,35,["H2403"]]]},{"k":21592,"v":[[0,4,["H3947"]],[4,7,["H4480","H1818"]],[7,10,["H5414"]],[10,12,["H5921"]],[12,14,["H702"]],[14,15,["H7161"]],[15,19,["H413"]],[19,21,["H702"]],[21,22,["H6438"]],[22,25,["H5835"]],[25,27,["H413"]],[27,29,["H1366"]],[29,31,["H5439"]],[31,35,["H2398"]],[35,37,["H3722"]],[37,38,[]]]},{"k":21593,"v":[[0,3,["H3947","(H853)"]],[3,5,["H6499"]],[5,10,["H2403"]],[10,14,["H8313"]],[14,19,["H4662"]],[19,22,["H1004"]],[22,23,["H4480","H2351"]],[23,25,["H4720"]]]},{"k":21594,"v":[[0,4,["H8145"]],[4,5,["H3117"]],[5,8,["H7126"]],[8,10,["H8163"]],[10,13,["H5795"]],[13,15,["H8549"]],[15,19,["H2403"]],[19,23,["H2398","(H853)"]],[23,25,["H4196"]],[25,26,["H834"]],[26,29,["H2398"]],[29,33,["H6499"]]]},{"k":21595,"v":[[0,6,["H3615"]],[6,8,["H4480","H2398"]],[8,12,["H7126"]],[12,14,["H1121","H1241"]],[14,15,["H6499"]],[15,17,["H8549"]],[17,20,["H352"]],[20,22,["H4480"]],[22,24,["H6629"]],[24,26,["H8549"]]]},{"k":21596,"v":[[0,4,["H7126"]],[4,6,["H6440"]],[6,8,["H3068"]],[8,11,["H3548"]],[11,13,["H7993"]],[13,14,["H4417"]],[14,15,["H5921"]],[15,22,["H5927","(H853)"]],[22,26,["H5930"]],[26,29,["H3068"]]]},{"k":21597,"v":[[0,1,["H7651"]],[1,2,["H3117"]],[2,5,["H6213"]],[5,7,["H3117"]],[7,9,["H8163"]],[9,13,["H2403"]],[13,17,["H6213"]],[17,19,["H1121","H1241"]],[19,20,["H6499"]],[20,23,["H352"]],[23,25,["H4480"]],[25,27,["H6629"]],[27,29,["H8549"]]]},{"k":21598,"v":[[0,1,["H7651"]],[1,2,["H3117"]],[2,5,["H3722","(H853)"]],[5,7,["H4196"]],[7,9,["H2891"]],[9,14,["H4390","H3027"]],[14,15,[]]]},{"k":21599,"v":[[0,2,["(H853)"]],[2,4,["H3117"]],[4,6,["H3615"]],[6,9,["H1961"]],[9,13,["H8066"]],[13,14,["H3117"]],[14,17,["H1973"]],[17,19,["H3548"]],[19,21,["H6213","(H853)"]],[21,24,["H5930"]],[24,25,["H5921"]],[25,27,["H4196"]],[27,31,["H8002"]],[31,35,["H7521"]],[35,37,["H5002"]],[37,39,["H136"]],[39,40,["H3069"]]]},{"k":21600,"v":[[0,5,["H7725","(H853)"]],[5,7,["H1870"]],[7,10,["H8179"]],[10,13,["H2435"]],[13,14,["H4720"]],[14,16,["H6437"]],[16,19,["H6921"]],[19,21,["H1931"]],[21,23,["H5462"]]]},{"k":21601,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,7,["H2088"]],[7,8,["H8179"]],[8,10,["H1961"]],[10,11,["H5462"]],[11,14,["H3808"]],[14,16,["H6605"]],[16,18,["H3808"]],[18,19,["H376"]],[19,22,["H935"]],[22,25,["H3588"]],[25,27,["H3068"]],[27,29,["H430"]],[29,31,["H3478"]],[31,34,["H935"]],[34,40,["H1961"]],[40,41,["H5462"]]]},{"k":21602,"v":[[0,2,["(H853)"]],[2,5,["H5387"]],[5,7,["H5387"]],[7,8,["H1931"]],[8,10,["H3427"]],[10,14,["H398"]],[14,15,["H3899"]],[15,16,["H6440"]],[16,18,["H3068"]],[18,21,["H935"]],[21,24,["H4480","H1870"]],[24,27,["H197"]],[27,30,["H8179"]],[30,34,["H3318"]],[34,37,["H4480","H1870"]],[37,40,[]]]},{"k":21603,"v":[[0,2,["H935"]],[2,6,["H1870"]],[6,9,["H6828"]],[9,10,["H8179"]],[10,11,["H413","H6440"]],[11,13,["H1004"]],[13,16,["H7200"]],[16,18,["H2009"]],[18,20,["H3519"]],[20,23,["H3068"]],[23,24,["H4390","(H853)"]],[24,26,["H1004"]],[26,29,["H3068"]],[29,32,["H5307"]],[32,33,["H413"]],[33,35,["H6440"]]]},{"k":21604,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H1121"]],[7,9,["H120"]],[9,11,["H7760","H3820"]],[11,13,["H7200"]],[13,16,["H5869"]],[16,18,["H8085"]],[18,21,["H241","(H853)"]],[21,22,["H3605"]],[22,23,["H834"]],[23,24,["H589"]],[24,25,["H1696"]],[25,29,["H3605"]],[29,31,["H2708"]],[31,34,["H1004"]],[34,37,["H3068"]],[37,39,["H3605"]],[39,41,["H8451"]],[41,45,["H7760","H3820"]],[45,48,["H3996"]],[48,51,["H1004"]],[51,53,["H3605"]],[53,55,["H4161"]],[55,58,["H4720"]]]},{"k":21605,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H4805"]],[7,9,["H413"]],[9,11,["H1004"]],[11,13,["H3478"]],[13,14,["H3541"]],[14,15,["H559"]],[15,17,["H136"]],[17,18,["H3069"]],[18,21,["H1004"]],[21,23,["H3478"]],[23,26,["H7227"]],[26,28,["H4480"]],[28,29,["H3605"]],[29,31,["H8441"]]]},{"k":21606,"v":[[0,5,["H935"]],[5,9,["H1121","H5236"]],[9,10,["H6189"]],[10,12,["H3820"]],[12,14,["H6189"]],[14,16,["H1320"]],[16,18,["H1961"]],[18,21,["H4720"]],[21,23,["H2490"]],[23,25,["(H853)"]],[25,27,["H1004"]],[27,30,["H7126","(H853)"]],[30,32,["H3899"]],[32,34,["H2459"]],[34,37,["H1818"]],[37,41,["H6565","(H853)"]],[41,43,["H1285"]],[43,45,["H413"]],[45,46,["H3605"]],[46,48,["H8441"]]]},{"k":21607,"v":[[0,4,["H3808"]],[4,5,["H8104"]],[5,7,["H4931"]],[7,11,["H6944"]],[11,15,["H7760"]],[15,16,["H8104"]],[16,19,["H4931"]],[19,22,["H4720"]],[22,24,[]]]},{"k":21608,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H3808","H3605"]],[6,7,["H1121","H5236"]],[7,8,["H6189"]],[8,10,["H3820"]],[10,12,["H6189"]],[12,14,["H1320"]],[14,16,["H935"]],[16,17,["H413"]],[17,19,["H4720"]],[19,21,["H3605"]],[21,22,["H1121","H5236"]],[22,23,["H834"]],[23,25,["H8432"]],[25,27,["H1121"]],[27,29,["H3478"]]]},{"k":21609,"v":[[0,1,["H3588","H518"]],[1,3,["H3881"]],[3,4,["H834"]],[4,8,["H7368"]],[8,9,["H4480","H5921"]],[9,12,["H3478"]],[12,14,["H8582"]],[14,15,["H834"]],[15,17,["H8582"]],[17,19,["H4480","H5921"]],[19,21,["H310"]],[21,23,["H1544"]],[23,27,["H5375"]],[27,29,["H5771"]]]},{"k":21610,"v":[[0,4,["H1961"]],[4,5,["H8334"]],[5,8,["H4720"]],[8,10,["H6486"]],[10,11,["H413"]],[11,13,["H8179"]],[13,16,["H1004"]],[16,18,["H8334","(H853)"]],[18,21,["H1004"]],[21,22,["H1992"]],[22,24,["H7819","(H853)"]],[24,27,["H5930"]],[27,30,["H2077"]],[30,33,["H5971"]],[33,35,["H1992"]],[35,37,["H5975"]],[37,38,["H6440"]],[38,41,["H8334"]],[41,43,[]]]},{"k":21611,"v":[[0,1,["H3282","H834"]],[1,4,["H8334","(H853)"]],[4,6,["H6440"]],[6,8,["H1544"]],[8,10,["H1961"]],[10,12,["H1004"]],[12,14,["H3478"]],[14,16,["H4383"]],[16,18,["H5771"]],[18,19,["H5921","H3651"]],[19,23,["H5375"]],[23,25,["H3027"]],[25,26,["H5921"]],[26,28,["H5002"]],[28,30,["H136"]],[30,31,["H3069"]],[31,35,["H5375"]],[35,37,["H5771"]]]},{"k":21612,"v":[[0,4,["H3808"]],[4,6,["H5066"]],[6,7,["H413"]],[7,15,["H3547"]],[15,21,["H5066"]],[21,22,["H5921"]],[22,23,["H3605"]],[23,27,["H6944"]],[27,28,["H413"]],[28,31,["H6944","H6944"]],[31,36,["H5375"]],[36,38,["H3639"]],[38,41,["H8441"]],[41,42,["H834"]],[42,45,["H6213"]]]},{"k":21613,"v":[[0,4,["H5414"]],[4,6,["H8104"]],[6,9,["H4931"]],[9,12,["H1004"]],[12,14,["H3605"]],[14,16,["H5656"]],[16,20,["H3605"]],[20,21,["H834"]],[21,24,["H6213"]],[24,25,[]]]},{"k":21614,"v":[[0,3,["H3548"]],[3,5,["H3881"]],[5,7,["H1121"]],[7,9,["H6659"]],[9,10,["H834"]],[10,11,["H8104","(H853)"]],[11,13,["H4931"]],[13,16,["H4720"]],[16,19,["H1121"]],[19,21,["H3478"]],[21,23,["H8582"]],[23,24,["H4480","H5921"]],[24,26,["H1992"]],[26,29,["H7126"]],[29,30,["H413"]],[30,33,["H8334"]],[33,39,["H5975"]],[39,40,["H6440"]],[40,43,["H7126"]],[43,47,["H2459"]],[47,50,["H1818"]],[50,51,["H5002"]],[51,53,["H136"]],[53,54,["H3069"]]]},{"k":21615,"v":[[0,1,["H1992"]],[1,3,["H935"]],[3,4,["H413"]],[4,6,["H4720"]],[6,8,["H1992"]],[8,11,["H7126"]],[11,12,["H413"]],[12,14,["H7979"]],[14,16,["H8334"]],[16,22,["H8104","(H853)"]],[22,24,["H4931"]]]},{"k":21616,"v":[[0,6,["H1961"]],[6,11,["H935"]],[11,12,["H413"]],[12,14,["H8179"]],[14,17,["H6442"]],[17,18,["H2691"]],[18,23,["H3847"]],[23,24,["H6593"]],[24,25,["H899"]],[25,27,["H3808"]],[27,28,["H6785"]],[28,30,["H5927"]],[30,31,["H5921"]],[31,35,["H8334"]],[35,38,["H8179"]],[38,41,["H6442"]],[41,42,["H2691"]],[42,44,["H1004"]]]},{"k":21617,"v":[[0,3,["H1961"]],[3,4,["H6593"]],[4,5,["H6287"]],[5,6,["H5921"]],[6,8,["H7218"]],[8,11,["H1961"]],[11,12,["H6593"]],[12,13,["H4370"]],[13,14,["H5921"]],[14,16,["H4975"]],[16,19,["H3808"]],[19,20,["H2296"]],[20,27,["H3154"]]]},{"k":21618,"v":[[0,5,["H3318"]],[5,6,["H413"]],[6,8,["H2435"]],[8,9,["H2691"]],[9,11,["H413"]],[11,13,["H2435"]],[13,14,["H2691"]],[14,15,["H413"]],[15,17,["H5971"]],[17,21,["H6584","(H853)"]],[21,23,["H899"]],[23,24,["H834"]],[24,25,["H1992"]],[25,26,["H8334"]],[26,28,["H5117"]],[28,32,["H6944"]],[32,33,["H3957"]],[33,38,["H3847"]],[38,39,["H312"]],[39,40,["H899"]],[40,44,["H3808"]],[44,45,["H6942","(H853)"]],[45,47,["H5971"]],[47,50,["H899"]]]},{"k":21619,"v":[[0,1,["H3808"]],[1,4,["H1548"]],[4,6,["H7218"]],[6,7,["H3808"]],[7,10,["H6545"]],[10,13,["H7971"]],[13,17,["H3697","H3697","(H853)"]],[17,19,["H7218"]]]},{"k":21620,"v":[[0,1,["H3808"]],[1,3,["H3605"]],[3,4,["H3548"]],[4,5,["H8354"]],[5,6,["H3196"]],[6,9,["H935"]],[9,10,["H413"]],[10,12,["H6442"]],[12,13,["H2691"]]]},{"k":21621,"v":[[0,1,["H3808"]],[1,4,["H3947"]],[4,7,["H802"]],[7,9,["H490"]],[9,15,["H1644"]],[15,16,["H3588","H518"]],[16,19,["H3947"]],[19,20,["H1330"]],[20,23,["H4480","H2233"]],[23,26,["H1004"]],[26,28,["H3478"]],[28,31,["H490"]],[31,32,["H834"]],[32,33,["H1961"]],[33,35,["H4480","H3548"]],[35,36,[]]]},{"k":21622,"v":[[0,4,["H3384"]],[4,6,["H5971"]],[6,9,["H996"]],[9,11,["H6944"]],[11,13,["H2455"]],[13,18,["H3045"]],[18,19,["H996"]],[19,21,["H2931"]],[21,24,["H2889"]]]},{"k":21623,"v":[[0,2,["H5921"]],[2,3,["H7379"]],[3,4,["H1992"]],[4,6,["H5975"]],[6,8,["H8199"]],[8,12,["H8199"]],[12,17,["H4941"]],[17,21,["H8104"]],[21,23,["H8451"]],[23,26,["H2708"]],[26,28,["H3605"]],[28,30,["H4150"]],[30,34,["H6942"]],[34,36,["H7676"]]]},{"k":21624,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,6,["H3808"]],[6,7,["H4191"]],[7,8,["H120"]],[8,10,["H2930"]],[10,12,["H3588","H518"]],[12,14,["H1"]],[14,17,["H517"]],[17,20,["H1121"]],[20,23,["H1323"]],[23,25,["H251"]],[25,28,["H269"]],[28,29,["H834"]],[29,31,["H1961"]],[31,32,["H3808"]],[32,33,["H376"]],[33,37,["H2930"]]]},{"k":21625,"v":[[0,2,["H310"]],[2,5,["H2893"]],[5,8,["H5608"]],[8,11,["H7651"]],[11,12,["H3117"]]]},{"k":21626,"v":[[0,4,["H3117"]],[4,7,["H935"]],[7,8,["H413"]],[8,10,["H6944"]],[10,11,["H413"]],[11,13,["H6442"]],[13,14,["H2691"]],[14,16,["H8334"]],[16,19,["H6944"]],[19,22,["H7126"]],[22,25,["H2403"]],[25,26,["H5002"]],[26,28,["H136"]],[28,29,["H3069"]]]},{"k":21627,"v":[[0,4,["H1961"]],[4,9,["H5159"]],[9,10,["H589"]],[10,13,["H5159"]],[13,17,["H5414"]],[17,19,["H3808"]],[19,20,["H272"]],[20,22,["H3478"]],[22,23,["H589"]],[23,26,["H272"]]]},{"k":21628,"v":[[0,1,["H1992"]],[1,3,["H398"]],[3,6,["H4503"]],[6,10,["H2403"]],[10,14,["H817"]],[14,16,["H3605"]],[16,18,["H2764"]],[18,20,["H3478"]],[20,22,["H1961"]],[22,23,[]]]},{"k":21629,"v":[[0,3,["H7225"]],[3,5,["H3605"]],[5,7,["H1061"]],[7,9,["H3605"]],[9,12,["H3605"]],[12,13,["H8641"]],[13,15,["H3605"]],[15,17,["H4480","H3605"]],[17,21,["H8641"]],[21,23,["H1961"]],[23,25,["H3548"]],[25,29,["H5414"]],[29,32,["H3548"]],[32,34,["H7225"]],[34,37,["H6182"]],[37,43,["H1293"]],[43,45,["H5117"]],[45,46,["H413"]],[46,48,["H1004"]]]},{"k":21630,"v":[[0,2,["H3548"]],[2,4,["H3808"]],[4,5,["H398"]],[5,8,["H3605"]],[8,13,["H5038"]],[13,15,["H2966"]],[15,16,["H4480"]],[16,19,["H5775"]],[19,20,["H4480"]],[20,21,["H929"]]]},{"k":21631,"v":[[0,7,["H5307","(H853)"]],[7,9,["H776"]],[9,11,["H5159"]],[11,14,["H7311"]],[14,16,["H8641"]],[16,19,["H3068"]],[19,22,["H6944"]],[22,23,["H4480"]],[23,25,["H776"]],[25,27,["H753"]],[27,31,["H753"]],[31,33,["H2568"]],[33,35,["H6242"]],[35,36,["H505"]],[36,40,["H7341"]],[40,43,["H6235"]],[43,44,["H505"]],[44,45,["H1931"]],[45,48,["H6944"]],[48,50,["H3605"]],[50,52,["H1366"]],[52,55,["H5439"]]]},{"k":21632,"v":[[0,2,["H4480","H2088"]],[2,5,["H1961"]],[5,6,["H413"]],[6,8,["H6944"]],[8,9,["H2568"]],[9,10,["H3967"]],[10,14,["H2568"]],[14,15,["H3967"]],[15,18,["H7251"]],[18,20,["H5439"]],[20,22,["H2572"]],[22,23,["H520"]],[23,25,["H5439"]],[25,28,["H4054"]],[28,29,[]]]},{"k":21633,"v":[[0,2,["H4480"]],[2,3,["H2063"]],[3,4,["H4060"]],[4,7,["H4058"]],[7,9,["H753"]],[9,11,["H2568"]],[11,13,["H6242"]],[13,14,["H505"]],[14,17,["H7341"]],[17,19,["H6235"]],[19,20,["H505"]],[20,25,["H1961"]],[25,27,["H4720"]],[27,31,["H6944","H6944"]],[31,32,[]]]},{"k":21634,"v":[[0,2,["H6944"]],[2,4,["H4480"]],[4,6,["H776"]],[6,8,["H1961"]],[8,11,["H3548"]],[11,13,["H8334"]],[13,16,["H4720"]],[16,20,["H7131"]],[20,23,["H8334","(H853)"]],[23,25,["H3068"]],[25,29,["H1961"]],[29,31,["H4725"]],[31,34,["H1004"]],[34,38,["H4720"]],[38,41,["H4720"]]]},{"k":21635,"v":[[0,3,["H2568"]],[3,5,["H6242"]],[5,6,["H505"]],[6,8,["H753"]],[8,11,["H6235"]],[11,12,["H505"]],[12,14,["H7341"]],[14,18,["H3881"]],[18,20,["H8334"]],[20,23,["H1004"]],[23,24,["H1961"]],[24,29,["H272"]],[29,31,["H6242"]],[31,32,["H3957"]]]},{"k":21636,"v":[[0,4,["H5414"]],[4,6,["H272"]],[6,9,["H5892"]],[9,10,["H2568"]],[10,11,["H505"]],[11,12,["H7341"]],[12,14,["H2568"]],[14,16,["H6242"]],[16,17,["H505"]],[17,18,["H753"]],[18,20,["H5980"]],[20,22,["H8641"]],[22,25,["H6944"]],[25,29,["H1961"]],[29,32,["H3605"]],[32,33,["H1004"]],[33,35,["H3478"]]]},{"k":21637,"v":[[0,8,["H5387"]],[8,12,["H4480","H2088"]],[12,17,["H4480","H2088"]],[17,20,["H8641"]],[20,23,["H6944"]],[23,28,["H272"]],[28,31,["H5892"]],[31,32,["H413","H6440"]],[32,34,["H8641"]],[34,37,["H6944"]],[37,40,["H413","H6440"]],[40,42,["H272"]],[42,45,["H5892"]],[45,48,["H3220"]],[48,49,["H4480","H6285"]],[49,50,["H3220"]],[50,54,["H6924"]],[54,55,["H4480","H6285"]],[55,56,["H6921"]],[56,59,["H753"]],[59,63,["H5980"]],[63,64,["H259"]],[64,67,["H2506"]],[67,70,["H3220"]],[70,71,["H4480","H1366"]],[71,72,["H413"]],[72,74,["H6921"]],[74,75,["H1366"]]]},{"k":21638,"v":[[0,3,["H776"]],[3,5,["H1961"]],[5,7,["H272"]],[7,9,["H3478"]],[9,12,["H5387"]],[12,14,["H3808"]],[14,15,["H5750"]],[15,16,["H3238","(H853)"]],[16,18,["H5971"]],[18,24,["H776"]],[24,27,["H5414"]],[27,30,["H1004"]],[30,32,["H3478"]],[32,36,["H7626"]]]},{"k":21639,"v":[[0,1,["H3541"]],[1,2,["H5002"]],[2,4,["H136"]],[4,5,["H3069"]],[5,8,["H7227"]],[8,11,["H5387"]],[11,13,["H3478"]],[13,14,["H5493"]],[14,15,["H2555"]],[15,17,["H7701"]],[17,19,["H6213"]],[19,20,["H4941"]],[20,22,["H6666"]],[22,24,["H7311"]],[24,26,["H1646"]],[26,27,["H4480","H5921"]],[27,29,["H5971"]],[29,30,["H559"]],[30,32,["H136"]],[32,33,["H3069"]]]},{"k":21640,"v":[[0,3,["H1961"]],[3,4,["H6664"]],[4,5,["H3976"]],[5,8,["H6664"]],[8,9,["H374"]],[9,12,["H6664"]],[12,13,["H1324"]]]},{"k":21641,"v":[[0,2,["H374"]],[2,5,["H1324"]],[5,7,["H1961"]],[7,9,["H259"]],[9,10,["H8506"]],[10,13,["H1324"]],[13,15,["H5375"]],[15,18,["H4643"]],[18,21,["H2563"]],[21,24,["H374"]],[24,27,["H6224"]],[27,30,["H2563"]],[30,32,["H4971"]],[32,35,["H1961"]],[35,36,["H413"]],[36,38,["H2563"]]]},{"k":21642,"v":[[0,3,["H8255"]],[3,6,["H6242"]],[6,7,["H1626"]],[7,8,["H6242"]],[8,9,["H8255"]],[9,10,["H2568"]],[10,12,["H6242"]],[12,13,["H8255"]],[13,14,["H2568","H6240"]],[14,15,["H8255"]],[15,17,["H1961"]],[17,19,["H4488"]]]},{"k":21643,"v":[[0,1,["H2063"]],[1,4,["H8641"]],[4,5,["H834"]],[5,8,["H7311"]],[8,11,["H8345"]],[11,14,["H374"]],[14,17,["H4480","H2563"]],[17,19,["H2406"]],[19,26,["H8341"]],[26,29,["H374"]],[29,32,["H4480","H2563"]],[32,34,["H8184"]]]},{"k":21644,"v":[[0,3,["H2706"]],[3,5,["H8081"]],[5,7,["H1324"]],[7,9,["H8081"]],[9,15,["H4643"]],[15,18,["H1324"]],[18,20,["H4480"]],[20,22,["H3734"]],[22,26,["H2563"]],[26,28,["H6235"]],[28,29,["H1324"]],[29,30,["H3588"]],[30,31,["H6235"]],[31,32,["H1324"]],[32,35,["H2563"]]]},{"k":21645,"v":[[0,2,["H259"]],[2,3,["H7716"]],[3,5,["H4480"]],[5,7,["H6629"]],[7,9,["H4480"]],[9,11,["H3967"]],[11,16,["H4480","H4945"]],[16,18,["H3478"]],[18,22,["H4503"]],[22,27,["H5930"]],[27,31,["H8002"]],[31,34,["H3722"]],[34,35,["H5921"]],[35,37,["H5002"]],[37,39,["H136"]],[39,40,["H3069"]]]},{"k":21646,"v":[[0,1,["H3605"]],[1,3,["H5971"]],[3,6,["H776"]],[6,8,["H1961","H413"]],[8,9,["H2063"]],[9,10,["H8641"]],[10,13,["H5387"]],[13,15,["H3478"]]]},{"k":21647,"v":[[0,4,["H1961"]],[4,7,["H5921","H5387"]],[7,11,["H5930"]],[11,14,["H4503"]],[14,17,["H5262"]],[17,20,["H2282"]],[20,25,["H2320"]],[25,29,["H7676"]],[29,31,["H3605"]],[31,32,["H4150"]],[32,35,["H1004"]],[35,37,["H3478"]],[37,38,["H1931"]],[38,40,["H6213","(H853)"]],[40,43,["H2403"]],[43,47,["H4503"]],[47,51,["H5930"]],[51,55,["H8002"]],[55,58,["H3722"]],[58,59,["H1157"]],[59,61,["H1004"]],[61,63,["H3478"]]]},{"k":21648,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,8,["H7223"]],[8,12,["H259"]],[12,16,["H2320"]],[16,19,["H3947"]],[19,21,["H1121","H1241"]],[21,22,["H6499"]],[22,24,["H8549"]],[24,26,["H2398","(H853)"]],[26,28,["H4720"]]]},{"k":21649,"v":[[0,3,["H3548"]],[3,5,["H3947"]],[5,8,["H4480","H1818"]],[8,12,["H2403"]],[12,14,["H5414"]],[14,16,["H413"]],[16,18,["H4201"]],[18,21,["H1004"]],[21,23,["H413"]],[23,25,["H702"]],[25,26,["H6438"]],[26,29,["H5835"]],[29,32,["H4196"]],[32,34,["H5921"]],[34,36,["H4201"]],[36,39,["H8179"]],[39,42,["H6442"]],[42,43,["H2691"]]]},{"k":21650,"v":[[0,2,["H3651"]],[2,5,["H6213"]],[5,7,["H7651"]],[7,11,["H2320"]],[11,14,["H4480","H376"]],[14,16,["H7686"]],[16,22,["H4480","H6612"]],[22,26,["H3722","(H853)"]],[26,28,["H1004"]]]},{"k":21651,"v":[[0,3,["H7223"]],[3,7,["H702","H6240"]],[7,8,["H3117"]],[8,11,["H2320"]],[11,14,["H1961"]],[14,16,["H6453"]],[16,18,["H2282"]],[18,20,["H7651"]],[20,21,["H3117"]],[21,23,["H4682"]],[23,26,["H398"]]]},{"k":21652,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,7,["H5387"]],[7,8,["H6213"]],[8,9,["H1157"]],[9,12,["H1157"]],[12,13,["H3605"]],[13,15,["H5971"]],[15,18,["H776"]],[18,20,["H6499"]],[20,24,["H2403"]]]},{"k":21653,"v":[[0,2,["H7651"]],[2,3,["H3117"]],[3,6,["H2282"]],[6,9,["H6213"]],[9,12,["H5930"]],[12,15,["H3068"]],[15,16,["H7651"]],[16,17,["H6499"]],[17,19,["H7651"]],[19,20,["H352"]],[20,22,["H8549"]],[22,23,["H3117"]],[23,25,["H7651"]],[25,26,["H3117"]],[26,29,["H8163"]],[29,32,["H5795"]],[32,33,["H3117"]],[33,37,["H2403"]]]},{"k":21654,"v":[[0,4,["H6213"]],[4,7,["H4503"]],[7,10,["H374"]],[10,13,["H6499"]],[13,16,["H374"]],[16,19,["H352"]],[19,22,["H1969"]],[22,24,["H8081"]],[24,27,["H374"]]]},{"k":21655,"v":[[0,3,["H7637"]],[3,7,["H2568","H6240"]],[7,8,["H3117"]],[8,11,["H2320"]],[11,14,["H6213"]],[14,16,["H428"]],[16,19,["H2282"]],[19,22,["H7651"]],[22,23,["H3117"]],[23,28,["H2403"]],[28,33,["H5930"]],[33,39,["H4503"]],[39,44,["H8081"]]]},{"k":21656,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,7,["H8179"]],[7,10,["H6442"]],[10,11,["H2691"]],[11,13,["H6437"]],[13,16,["H6921"]],[16,18,["H1961"]],[18,19,["H5462"]],[19,21,["H8337"]],[21,22,["H4639"]],[22,23,["H3117"]],[23,27,["H3117","H7676"]],[27,31,["H6605"]],[31,35,["H3117"]],[35,39,["H2320"]],[39,43,["H6605"]]]},{"k":21657,"v":[[0,3,["H5387"]],[3,5,["H935"]],[5,8,["H1870"]],[8,11,["H197"]],[11,14,["H8179"]],[14,15,["H4480","H2351"]],[15,18,["H5975"]],[18,19,["H5921"]],[19,21,["H4201"]],[21,24,["H8179"]],[24,27,["H3548"]],[27,29,["H6213","(H853)"]],[29,32,["H5930"]],[32,36,["H8002"]],[36,40,["H7812"]],[40,41,["H5921"]],[41,43,["H4670"]],[43,46,["H8179"]],[46,51,["H3318"]],[51,54,["H8179"]],[54,56,["H3808"]],[56,58,["H5462"]],[58,59,["H5704"]],[59,61,["H6153"]]]},{"k":21658,"v":[[0,3,["H5971"]],[3,6,["H776"]],[6,8,["H7812"]],[8,11,["H6607"]],[11,13,["H1931"]],[13,14,["H8179"]],[14,15,["H6440"]],[15,17,["H3068"]],[17,20,["H7676"]],[20,25,["H2320"]]]},{"k":21659,"v":[[0,4,["H5930"]],[4,5,["H834"]],[5,7,["H5387"]],[7,9,["H7126"]],[9,12,["H3068"]],[12,15,["H7676"]],[15,16,["H3117"]],[16,19,["H8337"]],[19,20,["H3532"]],[20,22,["H8549"]],[22,25,["H352"]],[25,27,["H8549"]]]},{"k":21660,"v":[[0,4,["H4503"]],[4,8,["H374"]],[8,11,["H352"]],[11,15,["H4503"]],[15,18,["H3532"]],[18,25,["H4991","H3027"]],[25,28,["H1969"]],[28,30,["H8081"]],[30,33,["H374"]]]},{"k":21661,"v":[[0,4,["H3117"]],[4,8,["H2320"]],[8,13,["H1121","H1241"]],[13,14,["H6499"]],[14,16,["H8549"]],[16,18,["H8337"]],[18,19,["H3532"]],[19,22,["H352"]],[22,25,["H1961"]],[25,27,["H8549"]]]},{"k":21662,"v":[[0,4,["H6213"]],[4,7,["H4503"]],[7,9,["H374"]],[9,12,["H6499"]],[12,15,["H374"]],[15,18,["H352"]],[18,22,["H3532"]],[22,24,["H834"]],[24,26,["H3027"]],[26,28,["H5381"]],[28,32,["H1969"]],[32,34,["H8081"]],[34,37,["H374"]]]},{"k":21663,"v":[[0,4,["H5387"]],[4,6,["H935"]],[6,10,["H935"]],[10,13,["H1870"]],[13,16,["H197"]],[16,19,["H8179"]],[19,24,["H3318"]],[24,27,["H1870"]],[27,28,[]]]},{"k":21664,"v":[[0,4,["H5971"]],[4,7,["H776"]],[7,9,["H935"]],[9,10,["H6440"]],[10,12,["H3068"]],[12,16,["H4150"]],[16,20,["H935"]],[20,23,["H1870"]],[23,26,["H6828"]],[26,27,["H8179"]],[27,29,["H7812"]],[29,32,["H3318"]],[32,35,["H1870"]],[35,38,["H5045"]],[38,39,["H8179"]],[39,43,["H935"]],[43,46,["H1870"]],[46,49,["H5045"]],[49,50,["H8179"]],[50,53,["H3318"]],[53,56,["H1870"]],[56,59,["H6828"]],[59,60,["H8179"]],[60,63,["H3808"]],[63,64,["H7725"]],[64,67,["H1870"]],[67,70,["H8179"]],[70,71,["H834"]],[71,74,["H935"]],[74,75,["H3588"]],[75,78,["H3318"]],[78,80,["H5227"]],[80,81,[]]]},{"k":21665,"v":[[0,3,["H5387"]],[3,6,["H8432"]],[6,12,["H935"]],[12,15,["H935"]],[15,20,["H3318"]],[20,23,["H3318"]]]},{"k":21666,"v":[[0,4,["H2282"]],[4,8,["H4150"]],[8,11,["H4503"]],[11,13,["H1961"]],[13,15,["H374"]],[15,18,["H6499"]],[18,21,["H374"]],[21,24,["H352"]],[24,28,["H3532"]],[28,34,["H4991","H3027"]],[34,37,["H1969"]],[37,39,["H8081"]],[39,42,["H374"]]]},{"k":21667,"v":[[0,2,["H3588"]],[2,4,["H5387"]],[4,6,["H6213"]],[6,8,["H5071"]],[8,10,["H5930"]],[10,11,["H176"]],[11,13,["H8002"]],[13,14,["H5071"]],[14,17,["H3068"]],[17,21,["H6605"]],[21,22,["(H853)"]],[22,24,["H8179"]],[24,26,["H6437"]],[26,29,["H6921"]],[29,33,["H6213","(H853)"]],[33,36,["H5930"]],[36,40,["H8002"]],[40,41,["H834"]],[41,43,["H6213"]],[43,46,["H7676"]],[46,47,["H3117"]],[47,52,["H3318"]],[52,54,["H310"]],[54,57,["H3318"]],[57,60,["H5462","(H853)"]],[60,62,["H8179"]]]},{"k":21668,"v":[[0,3,["H3117"]],[3,4,["H6213"]],[4,7,["H5930"]],[7,10,["H3068"]],[10,13,["H3532"]],[13,16,["H1121"]],[16,17,["H8141"]],[17,19,["H8549"]],[19,22,["H6213"]],[22,25,["H1242","H1242"]]]},{"k":21669,"v":[[0,4,["H6213"]],[4,7,["H4503"]],[7,8,["H5921"]],[8,11,["H1242","H1242"]],[11,14,["H8345"]],[14,17,["H374"]],[17,21,["H7992"]],[21,24,["H1969"]],[24,26,["H8081"]],[26,28,["H7450","(H853)"]],[28,32,["H5560"]],[32,35,["H4503"]],[35,36,["H8548"]],[36,39,["H5769"]],[39,40,["H2708"]],[40,43,["H3068"]]]},{"k":21670,"v":[[0,4,["H6213","(H853)"]],[4,6,["H3532"]],[6,10,["H4503"]],[10,13,["H8081"]],[13,15,["H1242","H1242"]],[15,18,["H8548"]],[18,20,["H5930"]]]},{"k":21671,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H3588"]],[6,8,["H5387"]],[8,9,["H5414"]],[9,11,["H4979"]],[11,13,["H376"]],[13,16,["H4480","H1121"]],[16,18,["H5159"]],[18,21,["H1961"]],[21,23,["H1121"]],[23,24,["H1931"]],[24,28,["H272"]],[28,30,["H5159"]]]},{"k":21672,"v":[[0,2,["H3588"]],[2,4,["H5414"]],[4,6,["H4979"]],[6,9,["H4480","H5159"]],[9,11,["H259"]],[11,14,["H4480","H5650"]],[14,18,["H1961"]],[18,20,["H5704"]],[20,22,["H8141"]],[22,24,["H1865"]],[24,28,["H7725"]],[28,31,["H5387"]],[31,32,["H389"]],[32,34,["H5159"]],[34,36,["H1961"]],[36,38,["H1121"]],[38,40,[]]]},{"k":21673,"v":[[0,3,["H5387"]],[3,5,["H3808"]],[5,12,["H3947","H5971","H4480","H5159"]],[12,16,["H3238"]],[16,19,["H4480","H272"]],[19,23,["(H853)"]],[23,25,["H1121"]],[25,26,["H5157"]],[26,31,["H4480","H272"]],[31,32,["H4616","H834"]],[32,34,["H5971"]],[34,36,["H3808"]],[36,37,["H6327"]],[37,39,["H376"]],[39,42,["H4480","H272"]]]},{"k":21674,"v":[[0,3,["H935"]],[3,7,["H3996"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H3802"]],[12,15,["H8179"]],[15,16,["H413"]],[16,18,["H6944"]],[18,19,["H3957"]],[19,20,["H413"]],[20,22,["H3548"]],[22,24,["H6437"]],[24,27,["H6828"]],[27,29,["H2009"]],[29,30,["H8033"]],[30,33,["H4725"]],[33,37,["H3411"]],[37,38,["H3220"]]]},{"k":21675,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H2088"]],[6,9,["H4725"]],[9,10,["H834","H8033"]],[10,12,["H3548"]],[12,14,["H1310","(H853)"]],[14,17,["H817"]],[17,21,["H2403"]],[21,22,["H834"]],[22,25,["H644"]],[25,28,["H4503"]],[28,34,["H3318","H1115"]],[34,35,["H413"]],[35,37,["H2435"]],[37,38,["H2691"]],[38,40,["H6942","(H853)"]],[40,42,["H5971"]]]},{"k":21676,"v":[[0,5,["H3318"]],[5,6,["H413"]],[6,8,["H2435"]],[8,9,["H2691"]],[9,14,["H5674"]],[14,15,["H413"]],[15,17,["H702"]],[17,18,["H4740"]],[18,21,["H2691"]],[21,23,["H2009"]],[23,29,["H4740","H2691","H2691","H4740","H2691"]],[29,33,["H2691"]]]},{"k":21677,"v":[[0,3,["H702"]],[3,4,["H4740"]],[4,7,["H2691"]],[7,10,["H2691"]],[10,11,["H7000"]],[11,13,["H705"]],[13,15,["H753"]],[15,17,["H7970"]],[17,18,["H7341"]],[18,20,["H702"]],[20,21,["H7106"]],[21,24,["H259"]],[24,25,["H4060"]]]},{"k":21678,"v":[[0,5,["H2905"]],[5,9,["H5439"]],[9,13,["H5439"]],[13,15,["H702"]],[15,19,["H6213"]],[19,22,["H4018"]],[22,23,["H4480","H8478"]],[23,25,["H2918"]],[25,27,["H5439"]]]},{"k":21679,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H428"]],[6,9,["H1004"]],[9,13,["H1310"]],[13,14,["H834","H8033"]],[14,16,["H8334"]],[16,19,["H1004"]],[19,21,["H1310","(H853)"]],[21,23,["H2077"]],[23,26,["H5971"]]]},{"k":21680,"v":[[0,5,["H7725"]],[5,6,["H413"]],[6,8,["H6607"]],[8,11,["H1004"]],[11,13,["H2009"]],[13,14,["H4325"]],[14,16,["H3318"]],[16,18,["H4480","H8478"]],[18,20,["H4670"]],[20,23,["H1004"]],[23,24,["H6921"]],[24,25,["H3588"]],[25,27,["H6440"]],[27,30,["H1004"]],[30,34,["H6921"]],[34,37,["H4325"]],[37,39,["H3381"]],[39,41,["H4480","H8478"]],[41,45,["H4480","H3802","H3233"]],[45,48,["H1004"]],[48,51,["H4480","H5045"]],[51,55,["H4196"]]]},{"k":21681,"v":[[0,5,["H3318"]],[5,8,["H1870"]],[8,11,["H8179"]],[11,12,["H6828"]],[12,16,["H5437"]],[16,18,["H1870"]],[18,19,["H2351"]],[19,20,["H413"]],[20,22,["H2351"]],[22,23,["H8179"]],[23,26,["H1870"]],[26,28,["H6437"]],[28,29,["H6921"]],[29,31,["H2009"]],[31,34,["H6379"]],[34,35,["H4325"]],[35,36,["H4480"]],[36,38,["H3233"]],[38,39,["H3802"]]]},{"k":21682,"v":[[0,4,["H376"]],[4,8,["H6957"]],[8,11,["H3027"]],[11,13,["H3318"]],[13,14,["H6921"]],[14,16,["H4058"]],[16,18,["H505"]],[18,19,["H520"]],[19,22,["H5674"]],[22,26,["H4325"]],[26,28,["H4325"]],[28,32,["H657"]]]},{"k":21683,"v":[[0,3,["H4058"]],[3,5,["H505"]],[5,7,["H5674"]],[7,11,["H4325"]],[11,13,["H4325"]],[13,17,["H1290"]],[17,20,["H4058"]],[20,22,["H505"]],[22,28,["H4325"]],[28,32,["H4975"]]]},{"k":21684,"v":[[0,3,["H4058"]],[3,5,["H505"]],[5,10,["H5158"]],[10,11,["H834"]],[11,13,["H3201"]],[13,14,["H3808"]],[14,16,["H5674"]],[16,17,["H3588"]],[17,19,["H4325"]],[19,21,["H1342"]],[21,22,["H4325"]],[22,25,["H7813"]],[25,27,["H5158"]],[27,28,["H834"]],[28,30,["H3808"]],[30,33,["H5674"]]]},{"k":21685,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,11,["H7200"]],[11,15,["H1980"]],[15,21,["H7725"]],[21,24,["H8193"]],[24,27,["H5158"]]]},{"k":21686,"v":[[0,5,["H7725"]],[5,6,["H2009"]],[6,7,["H413"]],[7,9,["H8193"]],[9,12,["H5158"]],[12,14,["H3966"]],[14,15,["H7227"]],[15,16,["H6086"]],[16,20,["H4480","H2088"]],[20,24,["H4480","H2088"]]]},{"k":21687,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H428"]],[6,7,["H4325"]],[7,9,["H3318"]],[9,10,["H413"]],[10,12,["H6930"]],[12,13,["H1552"]],[13,16,["H3381"]],[16,17,["H5921"]],[17,19,["H6160"]],[19,22,["H935"]],[22,24,["H3220"]],[24,28,["H3318"]],[28,29,["H413"]],[29,31,["H3220"]],[31,33,["H4325"]],[33,36,["H7495"]]]},{"k":21688,"v":[[0,6,["H1961"]],[6,8,["H3605"]],[8,9,["H5315"]],[9,11,["H2416"]],[11,12,["H834"]],[12,13,["H8317"]],[13,14,["H413","H3605","H834","H8033"]],[14,16,["H5158"]],[16,18,["H935"]],[18,20,["H2421"]],[20,24,["H1961"]],[24,26,["H3966"]],[26,27,["H7227"]],[27,30,["H1710"]],[30,31,["H3588"]],[31,32,["H428"]],[32,33,["H4325"]],[33,35,["H935"]],[35,36,["H8033"]],[36,41,["H7495"]],[41,44,["H3605"]],[44,46,["H2416"]],[46,47,["H834","H8033"]],[47,49,["H5158"]],[49,50,["H935"]]]},{"k":21689,"v":[[0,6,["H1961"]],[6,9,["H1728"]],[9,11,["H5975"]],[11,12,["H5921"]],[12,15,["H4480","H5872"]],[15,17,["H5704"]],[17,18,["H5882"]],[18,21,["H1961"]],[21,26,["H4894"]],[26,27,["H2764"]],[27,29,["H1710"]],[29,31,["H1961"]],[31,35,["H4327"]],[35,38,["H1710"]],[38,41,["H1419"]],[41,42,["H3220"]],[42,43,["H3966"]],[43,44,["H7227"]]]},{"k":21690,"v":[[0,4,["H1207"]],[4,8,["H1360"]],[8,11,["H3808"]],[11,13,["H7495"]],[13,17,["H5414"]],[17,19,["H4417"]]]},{"k":21691,"v":[[0,2,["H5921"]],[2,4,["H5158"]],[4,5,["H5921"]],[5,7,["H8193"]],[7,11,["H4480","H2088"]],[11,15,["H4480","H2088"]],[15,17,["H5927"]],[17,18,["H3605"]],[18,19,["H6086"]],[19,21,["H3978"]],[21,23,["H5929"]],[23,25,["H3808"]],[25,26,["H5034"]],[26,27,["H3808"]],[27,30,["H6529"]],[30,33,["H8552"]],[33,39,["H1069"]],[39,43,["H2320"]],[43,44,["H3588"]],[44,46,["H4325"]],[46,47,["H1992"]],[47,49,["H3318"]],[49,50,["H4480"]],[50,52,["H4720"]],[52,55,["H6529"]],[55,58,["H1961"]],[58,60,["H3978"]],[60,63,["H5929"]],[63,66,["H8644"]]]},{"k":21692,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H1454"]],[6,10,["H1366"]],[10,11,["H834"]],[11,14,["H5157","(H853)"]],[14,16,["H776"]],[16,20,["H8147","H6240"]],[20,21,["H7626"]],[21,23,["H3478"]],[23,24,["H3130"]],[24,28,["H2256"]]]},{"k":21693,"v":[[0,4,["H5157"]],[4,6,["H376"]],[6,10,["H251"]],[10,13,["H834"]],[13,16,["H5375","(H853)"]],[16,18,["H3027"]],[18,20,["H5414"]],[20,24,["H1"]],[24,26,["H2063"]],[26,27,["H776"]],[27,29,["H5307"]],[29,33,["H5159"]]]},{"k":21694,"v":[[0,2,["H2088"]],[2,6,["H1366"]],[6,9,["H776"]],[9,12,["H6828"]],[12,13,["H6285"]],[13,14,["H4480"]],[14,16,["H1419"]],[16,17,["H3220"]],[17,19,["H1870"]],[19,21,["H2855"]],[21,24,["H935"]],[24,26,["H6657"]]]},{"k":21695,"v":[[0,1,["H2574"]],[1,2,["H1268"]],[2,3,["H5453"]],[3,4,["H834"]],[4,6,["H996"]],[6,8,["H1366"]],[8,10,["H1834"]],[10,13,["H1366"]],[13,15,["H2574"]],[15,16,["H2694"]],[16,17,["H834"]],[17,19,["H413"]],[19,21,["H1366"]],[21,23,["H2362"]]]},{"k":21696,"v":[[0,3,["H1366"]],[3,4,["H4480"]],[4,6,["H3220"]],[6,8,["H1961"]],[8,9,["H2703"]],[9,11,["H1366"]],[11,13,["H1834"]],[13,16,["H6828"]],[16,17,["H6828"]],[17,20,["H1366"]],[20,22,["H2574"]],[22,27,["H6828"]],[27,28,["H6285"]]]},{"k":21697,"v":[[0,3,["H6921"]],[3,4,["H6285"]],[4,7,["H4058"]],[7,8,["H4480","H996"]],[8,9,["H2362"]],[9,11,["H4480","H996"]],[11,12,["H1834"]],[12,14,["H4480","H996"]],[14,15,["H1568"]],[15,17,["H4480","H996"]],[17,19,["H776"]],[19,21,["H3478"]],[21,23,["H3383"]],[23,26,["H4480","H1366"]],[26,27,["H5921"]],[27,29,["H6931"]],[29,30,["H3220"]],[30,35,["H6921"]],[35,36,["H6285"]]]},{"k":21698,"v":[[0,3,["H5045"]],[3,4,["H6285"]],[4,5,["H8486"]],[5,7,["H4480","H8559"]],[7,9,["H5704"]],[9,11,["H4325"]],[11,13,["H4809"]],[13,15,["H6946"]],[15,17,["H5158"]],[17,18,["H413"]],[18,20,["H1419"]],[20,21,["H3220"]],[21,26,["H8486"]],[26,27,["H6285"]],[27,28,["H5045"]]]},{"k":21699,"v":[[0,2,["H3220"]],[2,3,["H6285"]],[3,8,["H1419"]],[8,9,["H3220"]],[9,12,["H4480","H1366"]],[12,13,["H5704"]],[13,16,["H935"]],[16,18,["H5227"]],[18,19,["H2574"]],[19,20,["H2063"]],[20,23,["H3220"]],[23,24,["H6285"]]]},{"k":21700,"v":[[0,4,["H2505","(H853)"]],[4,5,["H2063"]],[5,6,["H776"]],[6,12,["H7626"]],[12,14,["H3478"]]]},{"k":21701,"v":[[0,6,["H1961"]],[6,13,["H5307","(H853)"]],[13,16,["H5159"]],[16,22,["H1616"]],[22,24,["H1481"]],[24,25,["H8432"]],[25,27,["H834"]],[27,29,["H3205"]],[29,30,["H1121"]],[30,31,["H8432"]],[31,36,["H1961"]],[36,43,["H249"]],[43,46,["H1121"]],[46,48,["H3478"]],[48,51,["H5307"]],[51,52,["H5159"]],[52,53,["H854"]],[53,55,["H8432"]],[55,57,["H7626"]],[57,59,["H3478"]]]},{"k":21702,"v":[[0,6,["H1961"]],[6,9,["H834"]],[9,10,["H7626"]],[10,12,["H1616"]],[12,13,["H1481"]],[13,14,["H854","H8033"]],[14,17,["H5414"]],[17,20,["H5159"]],[20,21,["H5002"]],[21,23,["H136"]],[23,24,["H3069"]]]},{"k":21703,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H7626"]],[8,11,["H6828"]],[11,12,["H4480","H7097"]],[12,13,["H413"]],[13,15,["H3027"]],[15,18,["H1870"]],[18,20,["H2855"]],[20,23,["H935"]],[23,25,["H2574"]],[25,26,["H2704"]],[26,28,["H1366"]],[28,30,["H1834"]],[30,31,["H6828"]],[31,32,["H413"]],[32,34,["H3027"]],[34,36,["H2574"]],[36,39,["H1961"]],[39,41,["H6285"]],[41,42,["H6921"]],[42,44,["H3220"]],[44,45,["H259"]],[45,48,["H1835"]]]},{"k":21704,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H1835"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,11,["H5704"]],[11,13,["H3220"]],[13,14,["H6285"]],[14,15,["H259"]],[15,18,["H836"]]]},{"k":21705,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H836"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,12,["H5704"]],[12,14,["H3220"]],[14,15,["H6285"]],[15,16,["H259"]],[16,19,["H5321"]]]},{"k":21706,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H5321"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,11,["H5704"]],[11,13,["H3220"]],[13,14,["H6285"]],[14,15,["H259"]],[15,18,["H4519"]]]},{"k":21707,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H4519"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,11,["H5704"]],[11,13,["H3220"]],[13,14,["H6285"]],[14,15,["H259"]],[15,18,["H669"]]]},{"k":21708,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H669"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,12,["H5704"]],[12,14,["H3220"]],[14,15,["H6285"]],[15,16,["H259"]],[16,19,["H7205"]]]},{"k":21709,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H7205"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,11,["H5704"]],[11,13,["H3220"]],[13,14,["H6285"]],[14,15,["H259"]],[15,18,["H3063"]]]},{"k":21710,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H3063"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,11,["H5704"]],[11,13,["H3220"]],[13,14,["H6285"]],[14,16,["H1961"]],[16,18,["H8641"]],[18,19,["H834"]],[19,22,["H7311"]],[22,24,["H2568"]],[24,26,["H6242"]],[26,27,["H505"]],[27,30,["H7341"]],[30,33,["H753"]],[33,35,["H259"]],[35,39,["H2506"]],[39,42,["H6921"]],[42,43,["H4480","H6285"]],[43,44,["H5704"]],[44,46,["H3220"]],[46,47,["H6285"]],[47,50,["H4720"]],[50,52,["H1961"]],[52,55,["H8432"]],[55,57,[]]]},{"k":21711,"v":[[0,2,["H8641"]],[2,3,["H834"]],[3,6,["H7311"]],[6,9,["H3068"]],[9,13,["H2568"]],[13,15,["H6242"]],[15,16,["H505"]],[16,18,["H753"]],[18,21,["H6235"]],[21,22,["H505"]],[22,24,["H7341"]]]},{"k":21712,"v":[[0,3,["H428"]],[3,7,["H3548"]],[7,9,["H1961"]],[9,11,["H6944"]],[11,12,["H8641"]],[12,15,["H6828"]],[15,16,["H2568"]],[16,18,["H6242"]],[18,19,["H505"]],[19,25,["H3220"]],[25,26,["H6235"]],[26,27,["H505"]],[27,29,["H7341"]],[29,33,["H6921"]],[33,34,["H6235"]],[34,35,["H505"]],[35,37,["H7341"]],[37,41,["H5045"]],[41,42,["H2568"]],[42,44,["H6242"]],[44,45,["H505"]],[45,47,["H753"]],[47,50,["H4720"]],[50,53,["H3068"]],[53,55,["H1961"]],[55,58,["H8432"]],[58,59,[]]]},{"k":21713,"v":[[0,6,["H3548"]],[6,9,["H6942"]],[9,12,["H4480","H1121"]],[12,14,["H6659"]],[14,15,["H834"]],[15,17,["H8104"]],[17,19,["H4931"]],[19,20,["H834"]],[20,23,["H8582","H3808"]],[23,26,["H1121"]],[26,28,["H3478"]],[28,30,["H8582"]],[30,31,["H834"]],[31,33,["H3881"]],[33,35,["H8582"]]]},{"k":21714,"v":[[0,3,["H8642"]],[3,6,["H776"]],[6,9,["H4480","H8641"]],[9,11,["H1961"]],[11,17,["H6944","H6944"]],[17,18,["H413"]],[18,20,["H1366"]],[20,23,["H3881"]]]},{"k":21715,"v":[[0,3,["H5980"]],[3,5,["H1366"]],[5,8,["H3548"]],[8,10,["H3881"]],[10,13,["H2568"]],[13,15,["H6242"]],[15,16,["H505"]],[16,18,["H753"]],[18,20,["H6235"]],[20,21,["H505"]],[21,23,["H7341"]],[23,24,["H3605"]],[24,26,["H753"]],[26,29,["H2568"]],[29,31,["H6242"]],[31,32,["H505"]],[32,35,["H7341"]],[35,36,["H6235"]],[36,37,["H505"]]]},{"k":21716,"v":[[0,4,["H3808"]],[4,5,["H4376"]],[5,6,["H4480"]],[6,8,["H3808"]],[8,9,["H4171"]],[9,10,["H3808"]],[10,11,["H5674"]],[11,13,["H7225"]],[13,16,["H776"]],[16,17,["H3588"]],[17,20,["H6944"]],[20,23,["H3068"]]]},{"k":21717,"v":[[0,3,["H2568"]],[3,4,["H505"]],[4,7,["H3498"]],[7,10,["H7341"]],[10,12,["H5921","H6440"]],[12,14,["H2568"]],[14,16,["H6242"]],[16,17,["H505"]],[17,21,["H2455"]],[21,25,["H5892"]],[25,27,["H4186"]],[27,30,["H4054"]],[30,33,["H5892"]],[33,35,["H1961"]],[35,38,["H8432"]],[38,39,[]]]},{"k":21718,"v":[[0,2,["H428"]],[2,6,["H4060"]],[6,9,["H6828"]],[9,10,["H6285"]],[10,11,["H702"]],[11,12,["H505"]],[12,14,["H2568"]],[14,15,["H3967"]],[15,18,["H5045"]],[18,19,["H6285"]],[19,20,["H702"]],[20,21,["H505"]],[21,23,["H2568"]],[23,24,["H3967"]],[24,28,["H6921"]],[28,29,["H4480","H6285"]],[29,30,["H702"]],[30,31,["H505"]],[31,33,["H2568"]],[33,34,["H3967"]],[34,37,["H3220"]],[37,38,["H6285"]],[38,39,["H702"]],[39,40,["H505"]],[40,42,["H2568"]],[42,43,["H3967"]]]},{"k":21719,"v":[[0,3,["H4054"]],[3,6,["H5892"]],[6,8,["H1961"]],[8,11,["H6828"]],[11,13,["H3967"]],[13,15,["H2572"]],[15,19,["H5045"]],[19,21,["H3967"]],[21,23,["H2572"]],[23,27,["H6921"]],[27,29,["H3967"]],[29,31,["H2572"]],[31,35,["H3220"]],[35,37,["H3967"]],[37,39,["H2572"]]]},{"k":21720,"v":[[0,3,["H3498"]],[3,5,["H753"]],[5,7,["H5980"]],[7,9,["H8641"]],[9,12,["H6944"]],[12,16,["H6235"]],[16,17,["H505"]],[17,18,["H6921"]],[18,20,["H6235"]],[20,21,["H505"]],[21,22,["H3220"]],[22,26,["H1961"]],[26,28,["H5980"]],[28,30,["H8641"]],[30,33,["H6944"]],[33,37,["H8393"]],[37,40,["H1961"]],[40,42,["H3899"]],[42,46,["H5647"]],[46,48,["H5892"]]]},{"k":21721,"v":[[0,4,["H5647"]],[4,6,["H5892"]],[6,8,["H5647"]],[8,12,["H4480","H3605"]],[12,14,["H7626"]],[14,16,["H3478"]]]},{"k":21722,"v":[[0,1,["H3605"]],[1,3,["H8641"]],[3,6,["H2568"]],[6,8,["H6242"]],[8,9,["H505"]],[9,11,["H2568"]],[11,13,["H6242"]],[13,14,["H505"]],[14,17,["H7311","(H853)"]],[17,19,["H6944"]],[19,20,["H8641"]],[20,21,["H7243"]],[21,22,["H413"]],[22,24,["H272"]],[24,27,["H5892"]]]},{"k":21723,"v":[[0,3,["H3498"]],[3,8,["H5387"]],[8,12,["H4480","H2088"]],[12,16,["H4480","H2088"]],[16,19,["H6944"]],[19,20,["H8641"]],[20,24,["H272"]],[24,27,["H5892"]],[27,29,["H413","H6440"]],[29,31,["H2568"]],[31,33,["H6242"]],[33,34,["H505"]],[34,37,["H8641"]],[37,38,["H5704"]],[38,40,["H6921"]],[40,41,["H1366"]],[41,43,["H3220"]],[43,45,["H5921","H6440"]],[45,47,["H2568"]],[47,49,["H6242"]],[49,50,["H505"]],[50,51,["H5921"]],[51,53,["H3220"]],[53,54,["H1366"]],[54,56,["H5980"]],[56,58,["H2506"]],[58,61,["H5387"]],[61,65,["H1961"]],[65,67,["H6944"]],[67,68,["H8641"]],[68,71,["H4720"]],[71,74,["H1004"]],[74,79,["H8432"]],[79,80,[]]]},{"k":21724,"v":[[0,4,["H4480","H272"]],[4,7,["H3881"]],[7,11,["H4480","H272"]],[11,14,["H5892"]],[14,18,["H8432"]],[18,21,["H834"]],[21,22,["H1961"]],[22,24,["H5387"]],[24,25,["H996"]],[25,27,["H1366"]],[27,29,["H3063"]],[29,32,["H1366"]],[32,34,["H1144"]],[34,36,["H1961"]],[36,39,["H5387"]]]},{"k":21725,"v":[[0,4,["H3499"]],[4,7,["H7626"]],[7,10,["H6921"]],[10,11,["H4480","H6285"]],[11,12,["H5704"]],[12,14,["H3220"]],[14,15,["H6285"]],[15,16,["H1144"]],[16,19,["H259"]],[19,20,[]]]},{"k":21726,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H1144"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,11,["H5704"]],[11,13,["H3220"]],[13,14,["H6285"]],[14,15,["H8095"]],[15,18,["H259"]],[18,19,[]]]},{"k":21727,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H8095"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,11,["H5704"]],[11,13,["H3220"]],[13,14,["H6285"]],[14,15,["H3485"]],[15,16,["H259"]],[16,17,[]]]},{"k":21728,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H3485"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,11,["H5704"]],[11,13,["H3220"]],[13,14,["H6285"]],[14,15,["H2074"]],[15,16,["H259"]],[16,17,[]]]},{"k":21729,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H2074"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,11,["H5704"]],[11,13,["H3220"]],[13,14,["H6285"]],[14,15,["H1410"]],[15,16,["H259"]],[16,17,[]]]},{"k":21730,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H1410"]],[6,7,["H413"]],[7,9,["H5045"]],[9,10,["H6285"]],[10,11,["H8486"]],[11,13,["H1366"]],[13,15,["H1961"]],[15,18,["H4480","H8559"]],[18,21,["H4325"]],[21,23,["H4808"]],[23,25,["H6946"]],[25,29,["H5158"]],[29,30,["H5921"]],[30,32,["H1419"]],[32,33,["H3220"]]]},{"k":21731,"v":[[0,1,["H2063"]],[1,4,["H776"]],[4,5,["H834"]],[5,10,["H5307"]],[10,13,["H7626"]],[13,15,["H3478"]],[15,17,["H4480","H5159"]],[17,19,["H428"]],[19,22,["H4256"]],[22,23,["H5002"]],[23,25,["H136"]],[25,26,["H3069"]]]},{"k":21732,"v":[[0,2,["H428"]],[2,6,["H8444"]],[6,9,["H5892"]],[9,12,["H6828"]],[12,13,["H4480","H6285"]],[13,14,["H702"]],[14,15,["H505"]],[15,17,["H2568"]],[17,18,["H3967"]],[18,19,["H4060"]]]},{"k":21733,"v":[[0,3,["H8179"]],[3,6,["H5892"]],[6,9,["H5921"]],[9,11,["H8034"]],[11,14,["H7626"]],[14,16,["H3478"]],[16,17,["H7969"]],[17,18,["H8179"]],[18,19,["H6828"]],[19,20,["H259"]],[20,21,["H8179"]],[21,23,["H7205"]],[23,24,["H259"]],[24,25,["H8179"]],[25,27,["H3063"]],[27,28,["H259"]],[28,29,["H8179"]],[29,31,["H3878"]]]},{"k":21734,"v":[[0,2,["H413"]],[2,4,["H6921"]],[4,5,["H6285"]],[5,6,["H702"]],[6,7,["H505"]],[7,9,["H2568"]],[9,10,["H3967"]],[10,12,["H7969"]],[12,13,["H8179"]],[13,15,["H259"]],[15,16,["H8179"]],[16,18,["H3130"]],[18,19,["H259"]],[19,20,["H8179"]],[20,22,["H1144"]],[22,23,["H259"]],[23,24,["H8179"]],[24,26,["H1835"]]]},{"k":21735,"v":[[0,4,["H5045"]],[4,5,["H6285"]],[5,6,["H702"]],[6,7,["H505"]],[7,9,["H2568"]],[9,10,["H3967"]],[10,11,["H4060"]],[11,13,["H7969"]],[13,14,["H8179"]],[14,15,["H259"]],[15,16,["H8179"]],[16,18,["H8095"]],[18,19,["H259"]],[19,20,["H8179"]],[20,22,["H3485"]],[22,23,["H259"]],[23,24,["H8179"]],[24,26,["H2074"]]]},{"k":21736,"v":[[0,3,["H3220"]],[3,4,["H6285"]],[4,5,["H702"]],[5,6,["H505"]],[6,8,["H2568"]],[8,9,["H3967"]],[9,12,["H7969"]],[12,13,["H8179"]],[13,14,["H259"]],[14,15,["H8179"]],[15,17,["H1410"]],[17,18,["H259"]],[18,19,["H8179"]],[19,21,["H836"]],[21,22,["H259"]],[22,23,["H8179"]],[23,25,["H5321"]]]},{"k":21737,"v":[[0,4,["H5439"]],[4,5,["H8083","H6240"]],[5,6,["H505"]],[6,10,["H8034"]],[10,13,["H5892"]],[13,16,["H4480","H3117"]],[16,20,["H3068"]],[20,22,["H8033"]]]},{"k":21738,"v":[[0,3,["H7969"]],[3,4,["H8141"]],[4,7,["H4438"]],[7,9,["H3079"]],[9,10,["H4428"]],[10,12,["H3063"]],[12,13,["H935"]],[13,14,["H5019"]],[14,15,["H4428"]],[15,17,["H894"]],[17,19,["H3389"]],[19,21,["H6696","H5921"]],[21,22,[]]]},{"k":21739,"v":[[0,3,["H136"]],[3,4,["H5414","(H853)"]],[4,5,["H3079"]],[5,6,["H4428"]],[6,8,["H3063"]],[8,11,["H3027"]],[11,13,["H4480","H7117"]],[13,16,["H3627"]],[16,19,["H1004"]],[19,21,["H430"]],[21,25,["H935"]],[25,27,["H776"]],[27,29,["H8152"]],[29,32,["H1004"]],[32,35,["H430"]],[35,38,["H935"]],[38,40,["H3627"]],[40,43,["H214"]],[43,44,["H1004"]],[44,47,["H430"]]]},{"k":21740,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H828"]],[6,8,["H7227"]],[8,11,["H5631"]],[11,15,["H935"]],[15,19,["H4480","H1121"]],[19,21,["H3478"]],[21,26,["H4480","H2233","H4410"]],[26,28,["H4480"]],[28,30,["H6579"]]]},{"k":21741,"v":[[0,1,["H3206"]],[1,3,["H834"]],[3,5,["H369","H3605"]],[5,6,["H3971"]],[6,9,["H2896","H4758"]],[9,11,["H7919"]],[11,13,["H3605"]],[13,14,["H2451"]],[14,16,["H3045"]],[16,18,["H1847"]],[18,20,["H995"]],[20,21,["H4093"]],[21,23,["H834"]],[23,26,["H3581"]],[26,30,["H5975"]],[30,33,["H4428"]],[33,34,["H1964"]],[34,39,["H3925"]],[39,41,["H5612"]],[41,44,["H3956"]],[44,47,["H3778"]]]},{"k":21742,"v":[[0,3,["H4428"]],[3,4,["H4487"]],[4,7,["H3117","H3117"]],[7,8,["H1697"]],[8,12,["H4480","H6598","H4428"]],[12,16,["H4480","H3196"]],[16,19,["H4960"]],[19,21,["H1431"]],[21,23,["H7969"]],[23,24,["H8141"]],[24,28,["H4480","H7117"]],[28,32,["H5975"]],[32,33,["H6440"]],[33,35,["H4428"]]]},{"k":21743,"v":[[0,4,["H1961"]],[4,7,["H4480","H1121"]],[7,9,["H3063"]],[9,10,["H1840"]],[10,11,["H2608"]],[11,12,["H4332"]],[12,14,["H5838"]]]},{"k":21744,"v":[[0,4,["H8269"]],[4,7,["H5631"]],[7,8,["H7760"]],[8,9,["H8034"]],[9,12,["H7760"]],[12,14,["H1840"]],[14,18,["H1095"]],[18,21,["H2608"]],[21,23,["H7714"]],[23,26,["H4332"]],[26,28,["H4335"]],[28,31,["H5838"]],[31,33,["H5664"]]]},{"k":21745,"v":[[0,2,["H1840"]],[2,3,["H7760"]],[3,4,["H5921"]],[4,6,["H3820"]],[6,7,["H834"]],[7,10,["H3808"]],[10,12,["H1351"]],[12,19,["H6598","H4428"]],[19,23,["H3196"]],[23,26,["H4960"]],[26,29,["H1245"]],[29,32,["H4480","H8269"]],[32,35,["H5631"]],[35,36,["H834"]],[36,39,["H3808"]],[39,41,["H1351"]]]},{"k":21746,"v":[[0,2,["H430"]],[2,4,["H5414","(H853)"]],[4,5,["H1840"]],[5,7,["H2617"]],[7,10,["H7356"]],[10,11,["H6440"]],[11,13,["H8269"]],[13,16,["H5631"]]]},{"k":21747,"v":[[0,3,["H8269"]],[3,6,["H5631"]],[6,7,["H559"]],[7,9,["H1840"]],[9,10,["H589"]],[10,11,["H3372","(H853)"]],[11,13,["H113"]],[13,15,["H4428"]],[15,16,["H834"]],[16,18,["H4487","(H853)"]],[18,20,["H3978"]],[20,23,["H4960"]],[23,24,["H834"]],[24,25,["H4100"]],[25,28,["H7200","(H853)"]],[28,30,["H6440"]],[30,32,["H2196"]],[32,33,["H4480"]],[33,35,["H3206"]],[35,36,["H834"]],[36,40,["H1524"]],[40,46,["H2325","(H853)"]],[46,48,["H7218"]],[48,51,["H4428"]]]},{"k":21748,"v":[[0,2,["H559"]],[2,3,["H1840"]],[3,4,["H413"]],[4,5,["H4453"]],[5,6,["H834"]],[6,8,["H8269"]],[8,11,["H5631"]],[11,13,["H4487"]],[13,14,["H5921"]],[14,15,["H1840"]],[15,16,["H2608"]],[16,17,["H4332"]],[17,19,["H5838"]]]},{"k":21749,"v":[[0,1,["H5254","(H853)"]],[1,3,["H5650"]],[3,6,["H4994"]],[6,7,["H6235"]],[7,8,["H3117"]],[8,12,["H5414"]],[12,14,["H2235"]],[14,16,["H398"]],[16,18,["H4325"]],[18,20,["H8354"]]]},{"k":21750,"v":[[0,4,["H4758"]],[4,7,["H7200"]],[7,8,["H6440"]],[8,12,["H4758"]],[12,15,["H3206"]],[15,17,["H398","(H853)"]],[17,24,["H6598","H4428"]],[24,26,["H834"]],[26,28,["H7200"]],[28,29,["H6213"]],[29,30,["H5973"]],[30,32,["H5650"]]]},{"k":21751,"v":[[0,3,["H8085"]],[3,7,["H2088"]],[7,8,["H1697"]],[8,10,["H5254"]],[10,12,["H6235"]],[12,13,["H3117"]]]},{"k":21752,"v":[[0,4,["H4480","H7117"]],[4,6,["H6235"]],[6,7,["H3117"]],[7,9,["H4758"]],[9,10,["H7200"]],[10,11,["H2896"]],[11,13,["H1277"]],[13,15,["H1320"]],[15,16,["H4480"]],[16,17,["H3605"]],[17,19,["H3206"]],[19,22,["H398","(H853)"]],[22,28,["H6598","H4428"]]]},{"k":21753,"v":[[0,2,["H4453"]],[2,4,["H5375","(H853)"]],[4,9,["H6598"]],[9,12,["H3196"]],[12,16,["H4960"]],[16,18,["H5414"]],[18,20,["H2235"]]]},{"k":21754,"v":[[0,3,["H428"]],[3,4,["H702"]],[4,5,["H3206"]],[5,6,["H430"]],[6,7,["H5414"]],[7,9,["H4093"]],[9,11,["H7919"]],[11,13,["H3605"]],[13,14,["H5612"]],[14,16,["H2451"]],[16,18,["H1840"]],[18,20,["H995"]],[20,22,["H3605"]],[22,23,["H2377"]],[23,25,["H2472"]]]},{"k":21755,"v":[[0,4,["H4480","H7117"]],[4,7,["H3117"]],[7,8,["H834"]],[8,10,["H4428"]],[10,12,["H559"]],[12,17,["H935"]],[17,20,["H8269"]],[20,23,["H5631"]],[23,26,["H935"]],[26,27,["H6440"]],[27,28,["H5019"]]]},{"k":21756,"v":[[0,3,["H4428"]],[3,4,["H1696"]],[4,5,["H854"]],[5,10,["H4480","H3605"]],[10,12,["H4672"]],[12,13,["H3808"]],[13,15,["H1840"]],[15,16,["H2608"]],[16,17,["H4332"]],[17,19,["H5838"]],[19,21,["H5975"]],[21,23,["H6440"]],[23,25,["H4428"]]]},{"k":21757,"v":[[0,3,["H3605"]],[3,4,["H1697"]],[4,6,["H2451"]],[6,8,["H998"]],[8,9,["H834"]],[9,11,["H4428"]],[11,12,["H1245"]],[12,13,["H4480"]],[13,16,["H4672"]],[16,18,["H6235"]],[18,19,["H3027"]],[19,21,["H5921"]],[21,22,["H3605"]],[22,24,["H2748"]],[24,26,["H825"]],[26,27,["H834"]],[27,30,["H3605"]],[30,32,["H4438"]]]},{"k":21758,"v":[[0,2,["H1840"]],[2,3,["H1961"]],[3,5,["H5704"]],[5,7,["H259"]],[7,8,["H8141"]],[8,10,["H4428"]],[10,11,["H3566"]]]},{"k":21759,"v":[[0,4,["H8147"]],[4,5,["H8141"]],[5,8,["H4438"]],[8,10,["H5019"]],[10,11,["H5019"]],[11,12,["H2492"]],[12,13,["H2472"]],[13,16,["H7307"]],[16,18,["H6470"]],[18,21,["H8142"]],[21,22,["H1961"]],[22,23,["H5921"]],[23,24,[]]]},{"k":21760,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H7121"]],[6,8,["H2748"]],[8,11,["H825"]],[11,14,["H3784"]],[14,17,["H3778"]],[17,20,["H5046"]],[20,22,["H4428"]],[22,24,["H2472"]],[24,27,["H935"]],[27,29,["H5975"]],[29,30,["H6440"]],[30,32,["H4428"]]]},{"k":21761,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,9,["H2492"]],[9,11,["H2472"]],[11,14,["H7307"]],[14,16,["H6470"]],[16,18,["H3045","(H853)"]],[18,20,["H2472"]]]},{"k":21762,"v":[[0,2,["H1696"]],[2,4,["H3778"]],[4,7,["H4428"]],[7,9,["H762"]],[9,11,["H4430"]],[11,12,["H2418"]],[12,14,["H5957"]],[14,15,["H560"]],[15,17,["H5649"]],[17,19,["H2493"]],[19,23,["H2324"]],[23,25,["H6591"]]]},{"k":21763,"v":[[0,2,["H4430"]],[2,3,["H6032"]],[3,5,["H560"]],[5,8,["H3779"]],[8,10,["H4406"]],[10,12,["H230"]],[12,13,["H4481"]],[13,15,["H2006"]],[15,18,["H3809"]],[18,20,["H3046"]],[20,24,["H2493"]],[24,27,["H6591"]],[27,32,["H5648"]],[32,34,["H1917"]],[34,37,["H1005"]],[37,40,["H7761"]],[40,42,["H5122"]]]},{"k":21764,"v":[[0,2,["H2006"]],[2,4,["H2324"]],[4,6,["H2493"]],[6,9,["H6591"]],[9,13,["H6902"]],[13,14,["H4481","H6925"]],[14,16,["H4978"]],[16,18,["H5023"]],[18,20,["H7690"]],[20,21,["H3367"]],[21,22,["H3861"]],[22,23,["H2324"]],[23,26,["H2493"]],[26,29,["H6591"]],[29,30,[]]]},{"k":21765,"v":[[0,2,["H6032"]],[2,3,["H8579"]],[3,5,["H560"]],[5,8,["H4430"]],[8,9,["H560"]],[9,11,["H5649"]],[11,13,["H2493"]],[13,17,["H2324"]],[17,19,["H6591"]],[19,21,[]]]},{"k":21766,"v":[[0,2,["H4430"]],[2,3,["H6032"]],[3,5,["H560"]],[5,6,["H576"]],[6,7,["H3046"]],[7,8,["H4481"]],[8,9,["H3330"]],[9,10,["H1768"]],[10,11,["H608"]],[11,13,["H2084"]],[13,15,["H5732"]],[15,16,["H3606","H6903","H1768"]],[16,18,["H2370","H1768"]],[18,20,["H4406"]],[20,22,["H230"]],[22,23,["H4481"]],[23,24,[]]]},{"k":21767,"v":[[0,1,["H1768"]],[1,2,["H2006"]],[2,5,["H3809"]],[5,7,["H3046"]],[7,11,["H2493"]],[11,15,["H2298"]],[15,16,["H1882"]],[16,22,["H2164"]],[22,23,["H3538"]],[23,25,["H7844"]],[25,26,["H4406"]],[26,28,["H560"]],[28,29,["H6925"]],[29,31,["H5705","H1768"]],[31,33,["H5732"]],[33,35,["H8133"]],[35,36,["H3861"]],[36,37,["H560"]],[37,40,["H2493"]],[40,44,["H3046"]],[44,45,["H1768"]],[45,48,["H2324"]],[48,51,["H6591"]],[51,52,[]]]},{"k":21768,"v":[[0,2,["H3779"]],[2,3,["H6032"]],[3,4,["H6925"]],[4,6,["H4430"]],[6,8,["H560"]],[8,10,["H383"]],[10,11,["H3809"]],[11,13,["H606"]],[13,14,["H5922"]],[14,16,["H3007"]],[16,17,["H1768"]],[17,18,["H3202"]],[18,19,["H2324"]],[19,21,["H4430"]],[21,22,["H4406"]],[22,23,["H3606","H6903","H1768"]],[23,26,["H3809","H3606"]],[26,27,["H4430"]],[27,28,["H7229"]],[28,30,["H7990"]],[30,32,["H7593"]],[32,34,["H1836"]],[34,36,["H3606"]],[36,37,["H2749"]],[37,39,["H826"]],[39,41,["H3779"]]]},{"k":21769,"v":[[0,5,["H3358"]],[5,6,["H4406"]],[6,7,["H1768"]],[7,9,["H4430"]],[9,10,["H7593"]],[10,13,["H383"]],[13,14,["H3809"]],[14,15,["H321"]],[15,16,["H1768"]],[16,18,["H2324"]],[18,20,["H6925"]],[20,22,["H4430"]],[22,23,["H3861"]],[23,25,["H426"]],[25,26,["H1768"]],[26,27,["H4070"]],[27,28,["H383"]],[28,29,["H3809"]],[29,30,["H5974"]],[30,31,["H1321"]]]},{"k":21770,"v":[[0,3,["H3606","H6903","H1836"]],[3,5,["H4430"]],[5,7,["H1149"]],[7,9,["H7690"]],[9,10,["H7108"]],[10,12,["H560"]],[12,14,["H7"]],[14,15,["H3606"]],[15,17,["H2445"]],[17,20,["H895"]]]},{"k":21771,"v":[[0,3,["H1882"]],[3,5,["H5312"]],[5,8,["H2445"]],[8,12,["H6992"]],[12,15,["H1156"]],[15,16,["H1841"]],[16,19,["H2269"]],[19,22,["H6992"]]]},{"k":21772,"v":[[0,1,["H116"]],[1,2,["H1841"]],[2,3,["H8421"]],[3,5,["H5843"]],[5,7,["H2942"]],[7,9,["H746"]],[9,11,["H7229"]],[11,12,["H1768"]],[12,14,["H4430"]],[14,15,["H2877"]],[15,16,["H1768"]],[16,19,["H5312"]],[19,21,["H6992"]],[21,23,["H2445"]],[23,26,["H895"]]]},{"k":21773,"v":[[0,2,["H6032"]],[2,4,["H560"]],[4,6,["H746"]],[6,8,["H1768","H4430"]],[8,9,["H7990"]],[9,10,["H5922","H4101"]],[10,13,["H1882"]],[13,15,["H2685"]],[15,16,["H4481","H6925"]],[16,18,["H4430"]],[18,19,["H116"]],[19,20,["H746"]],[20,24,["H3046","H4406"]],[24,26,["H1841"]]]},{"k":21774,"v":[[0,2,["H1841"]],[2,4,["H5954"]],[4,6,["H1156"]],[6,7,["H4481"]],[7,9,["H4430"]],[9,10,["H1768"]],[10,13,["H5415"]],[13,15,["H2166"]],[15,20,["H2324"]],[20,22,["H4430"]],[22,24,["H6591"]]]},{"k":21775,"v":[[0,1,["H116"]],[1,2,["H1841"]],[2,3,["H236"]],[3,6,["H1005"]],[6,11,["H3046","H4406"]],[11,13,["H2608"]],[13,14,["H4333"]],[14,16,["H5839"]],[16,18,["H2269"]]]},{"k":21776,"v":[[0,4,["H1156"]],[4,5,["H7359"]],[5,6,["H4481","H6925"]],[6,8,["H426"]],[8,10,["H8065"]],[10,11,["H5922"]],[11,12,["H1836"]],[12,13,["H7328"]],[13,14,["H1768"]],[14,15,["H1841"]],[15,18,["H2269"]],[18,20,["H3809"]],[20,21,["H7"]],[21,22,["H5974"]],[22,24,["H7606"]],[24,27,["H2445"]],[27,30,["H895"]]]},{"k":21777,"v":[[0,1,["H116"]],[1,4,["H7328"]],[4,5,["H1541"]],[5,7,["H1841"]],[7,10,["H1768","H3916"]],[10,11,["H2376"]],[11,12,["H116"]],[12,13,["H1841"]],[13,14,["H1289"]],[14,16,["H426"]],[16,18,["H8065"]]]},{"k":21778,"v":[[0,1,["H1841"]],[1,2,["H6032"]],[2,4,["H560"]],[4,5,["H1289"]],[5,6,["H1934"]],[6,8,["H8036"]],[8,9,["H1768"]],[9,10,["H426"]],[10,14,["H4481","H5957","H5705","H5957"]],[14,15,["H1768"]],[15,16,["H2452"]],[16,18,["H1370"]],[18,20,[]]]},{"k":21779,"v":[[0,2,["H1932"]],[2,3,["H8133"]],[3,5,["H5732"]],[5,8,["H2166"]],[8,10,["H5709"]],[10,11,["H4430"]],[11,14,["H6966"]],[14,15,["H4430"]],[15,17,["H3052"]],[17,18,["H2452"]],[18,21,["H2445"]],[21,23,["H4486"]],[23,27,["H3046"]],[27,28,["H999"]]]},{"k":21780,"v":[[0,1,["H1932"]],[1,2,["H1541"]],[2,4,["H5994"]],[4,7,["H5642"]],[7,9,["H3046"]],[9,10,["H4101"]],[10,14,["H2816"]],[14,17,["H5094"]],[17,18,["H8271"]],[18,19,["H5974"]],[19,20,[]]]},{"k":21781,"v":[[0,1,["H576"]],[1,2,["H3029"]],[2,5,["H7624"]],[5,9,["H426"]],[9,12,["H2"]],[12,13,["H1768"]],[13,15,["H3052"]],[15,17,["H2452"]],[17,19,["H1370"]],[19,23,["H3046"]],[23,26,["H3705"]],[26,27,["H1768"]],[27,29,["H1156"]],[29,30,["H4481"]],[30,32,["H1768"]],[32,37,["H3046"]],[37,41,["H4430"]],[41,42,["H4406"]]]},{"k":21782,"v":[[0,1,["H3606","H6903","H1836"]],[1,2,["H1841"]],[2,4,["H5954"]],[4,5,["H5922"]],[5,6,["H746"]],[6,7,["H1768"]],[7,9,["H4430"]],[9,11,["H4483"]],[11,13,["H7"]],[13,15,["H2445"]],[15,18,["H895"]],[18,20,["H236"]],[20,22,["H560"]],[22,23,["H3652"]],[23,26,["H7"]],[26,27,["H409"]],[27,29,["H2445"]],[29,32,["H895"]],[32,35,["H5924"]],[35,36,["H6925"]],[36,38,["H4430"]],[38,42,["H2324"]],[42,45,["H4430"]],[45,47,["H6591"]]]},{"k":21783,"v":[[0,1,["H116"]],[1,2,["H746"]],[2,4,["H5954"]],[4,5,["H1841"]],[5,6,["H6925"]],[6,8,["H4430"]],[8,10,["H927"]],[10,12,["H560"]],[12,13,["H3652"]],[13,18,["H7912"]],[18,20,["H1400"]],[20,21,["H4481"]],[21,23,["H1123","H1547"]],[23,24,["H1768"]],[24,25,["H3061"]],[25,26,["H1768"]],[26,29,["H3046"]],[29,32,["H4430"]],[32,34,["H6591"]]]},{"k":21784,"v":[[0,2,["H4430"]],[2,3,["H6032"]],[3,5,["H560"]],[5,7,["H1841"]],[7,8,["H1768"]],[8,9,["H8036"]],[9,11,["H1096"]],[11,12,["H383"]],[12,14,["H3546"]],[14,17,["H3046"]],[17,21,["H2493"]],[21,22,["H1768"]],[22,25,["H2370"]],[25,28,["H6591"]],[28,29,[]]]},{"k":21785,"v":[[0,1,["H1841"]],[1,2,["H6032"]],[2,6,["H6925"]],[6,8,["H4430"]],[8,10,["H560"]],[10,12,["H7328"]],[12,13,["H1768"]],[13,15,["H4430"]],[15,17,["H7593"]],[17,18,["H3202","H3809"]],[18,20,["H2445"]],[20,23,["H826"]],[23,25,["H2749"]],[25,27,["H1505"]],[27,28,["H2324"]],[28,31,["H4430"]]]},{"k":21786,"v":[[0,1,["H1297"]],[1,3,["H383"]],[3,5,["H426"]],[5,7,["H8065"]],[7,9,["H1541"]],[9,10,["H7328"]],[10,13,["H3046"]],[13,16,["H4430"]],[16,17,["H5020"]],[17,18,["H4101","H1768"]],[18,20,["H1934"]],[20,23,["H320"]],[23,24,["H3118"]],[24,26,["H2493"]],[26,29,["H2376"]],[29,32,["H7217"]],[32,33,["H5922"]],[33,35,["H4903"]],[35,37,["H1836"]]]},{"k":21787,"v":[[0,3,["H607"]],[3,5,["H4430"]],[5,7,["H7476"]],[7,8,["H5559"]],[8,12,["H5922"]],[12,14,["H4903"]],[14,15,["H4101","H1768"]],[15,19,["H1934"]],[19,20,["H311","H1836"]],[20,24,["H1541"]],[24,25,["H7328"]],[25,27,["H3046"]],[27,30,["H4101","H1768"]],[30,34,["H1934"]]]},{"k":21788,"v":[[0,4,["H576"]],[4,5,["H1836"]],[5,6,["H7328"]],[6,8,["H3809"]],[8,9,["H1541"]],[9,14,["H2452"]],[14,15,["H1768"]],[15,17,["H383"]],[17,19,["H4481"]],[19,20,["H3606"]],[20,21,["H2417"]],[21,22,["H3861"]],[22,25,["H5922","H1701"]],[25,26,["H1768"]],[26,29,["H3046"]],[29,31,["H6591"]],[31,34,["H4430"]],[34,39,["H3046"]],[39,41,["H7476"]],[41,44,["H3825"]]]},{"k":21789,"v":[[0,1,["H607"]],[1,3,["H4430"]],[3,4,["H2370","H1934"]],[4,6,["H431"]],[6,7,["H2298"]],[7,8,["H7690"]],[8,9,["H6755"]],[9,10,["H1797"]],[10,11,["H7229"]],[11,12,["H6755"]],[12,14,["H2122"]],[14,16,["H3493"]],[16,17,["H6966"]],[17,18,["H6903"]],[18,22,["H7299"]],[22,25,["H1763"]]]},{"k":21790,"v":[[0,1,["H1932"]],[1,2,["H6755"]],[2,3,["H7217"]],[3,5,["H1768"]],[5,6,["H2869"]],[6,7,["H1722"]],[7,9,["H2306"]],[9,12,["H1872"]],[12,13,["H1768"]],[13,14,["H3702"]],[14,16,["H4577"]],[16,19,["H3410"]],[19,20,["H1768"]],[20,21,["H5174"]]]},{"k":21791,"v":[[0,2,["H8243"]],[2,3,["H1768"]],[3,4,["H6523"]],[4,6,["H7271"]],[6,7,["H4481"]],[7,8,["H1768"]],[8,9,["H6523"]],[9,11,["H4481"]],[11,12,["H1768"]],[12,13,["H2635"]]]},{"k":21792,"v":[[0,2,["H2370","H1934"]],[2,3,["H5705"]],[3,4,["H1768"]],[4,6,["H69"]],[6,9,["H1505"]],[9,10,["H1768","H3809"]],[10,11,["H3028"]],[11,13,["H4223"]],[13,15,["H6755"]],[15,16,["H5922"]],[16,18,["H7271"]],[18,21,["H1768"]],[21,22,["H6523"]],[22,24,["H2635"]],[24,29,["H1855","H1994"]]]},{"k":21793,"v":[[0,1,["H116"]],[1,4,["H6523"]],[4,6,["H2635"]],[6,8,["H5174"]],[8,10,["H3702"]],[10,13,["H1722"]],[13,16,["H1751"]],[16,17,["H2298"]],[17,19,["H1934"]],[19,22,["H5784"]],[22,23,["H4481"]],[23,25,["H7007"]],[25,26,["H147"]],[26,29,["H7308"]],[29,32,["H5376","H1994"]],[32,34,["H3809","H3606"]],[34,35,["H870"]],[35,37,["H7912"]],[37,42,["H69"]],[42,43,["H1768"]],[43,44,["H4223"]],[44,46,["H6755"]],[46,47,["H1934"]],[47,49,["H7229"]],[49,50,["H2906"]],[50,52,["H4391"]],[52,54,["H3606"]],[54,55,["H772"]]]},{"k":21794,"v":[[0,1,["H1836"]],[1,4,["H2493"]],[4,8,["H560"]],[8,10,["H6591"]],[10,12,["H6925"]],[12,14,["H4430"]]]},{"k":21795,"v":[[0,1,["H607"]],[1,3,["H4430"]],[3,6,["H4430"]],[6,8,["H4430"]],[8,9,["H1768"]],[9,11,["H426"]],[11,13,["H8065"]],[13,15,["H3052"]],[15,18,["H4437"]],[18,19,["H2632"]],[19,21,["H8632"]],[21,23,["H3367"]]]},{"k":21796,"v":[[0,2,["H3606","H1768"]],[2,4,["H1123"]],[4,6,["H606"]],[6,7,["H1753"]],[7,9,["H2423"]],[9,12,["H1251"]],[12,15,["H5776"]],[15,18,["H8065"]],[18,21,["H3052"]],[21,24,["H3028"]],[24,29,["H7981"]],[29,32,["H3606"]],[32,33,["H607"]],[33,35,["H1932"]],[35,36,["H7217"]],[36,37,["H1768"]],[37,38,["H1722"]]]},{"k":21797,"v":[[0,2,["H870"]],[2,5,["H6966"]],[5,6,["H317"]],[6,7,["H4437"]],[7,8,["H772"]],[8,9,["H4481"]],[9,12,["H317"]],[12,13,["H8523"]],[13,14,["H4437"]],[14,15,["H1768"]],[15,16,["H5174"]],[16,17,["H1768"]],[17,20,["H7981"]],[20,22,["H3606"]],[22,24,["H772"]]]},{"k":21798,"v":[[0,3,["H7244"]],[3,4,["H4437"]],[4,6,["H1934"]],[6,7,["H8624"]],[7,9,["H6523"]],[9,11,["H3606","H6903","H1768"]],[11,12,["H6523"]],[12,15,["H1855"]],[15,17,["H2827"]],[17,18,["H3606"]],[18,22,["H6523"]],[22,23,["H1768"]],[23,24,["H7490"]],[24,25,["H3606"]],[25,26,["H459"]],[26,31,["H1855"]],[31,33,["H7490"]]]},{"k":21799,"v":[[0,2,["H1768"]],[2,4,["H2370"]],[4,6,["H7271"]],[6,8,["H677"]],[8,9,["H4481"]],[9,10,["H1768"]],[10,11,["H6353"]],[11,12,["H2635"]],[12,14,["H4481"]],[14,16,["H6523"]],[16,18,["H4437"]],[18,20,["H1934"]],[20,21,["H6386"]],[21,25,["H1934"]],[25,28,["H4481"]],[28,30,["H5326"]],[30,31,["H1768"]],[31,33,["H6523"]],[33,35,["H3606","H6903","H1768"]],[35,37,["H2370"]],[37,39,["H6523"]],[39,40,["H6151"]],[40,42,["H2917"]],[42,43,["H2635"]]]},{"k":21800,"v":[[0,4,["H677"]],[4,7,["H7271"]],[7,9,["H4481"]],[9,11,["H6523"]],[11,13,["H4481"]],[13,15,["H2635"]],[15,18,["H4437"]],[18,20,["H1934"]],[20,21,["H4481","H7118"]],[21,22,["H8624"]],[22,24,["H4481"]],[24,25,["H8406"]]]},{"k":21801,"v":[[0,2,["H1768"]],[2,4,["H2370"]],[4,5,["H6523"]],[5,6,["H6151"]],[6,8,["H2917"]],[8,9,["H2635"]],[9,11,["H1934"]],[11,13,["H6151"]],[13,16,["H2234"]],[16,18,["H606"]],[18,21,["H1934"]],[21,22,["H3809"]],[22,23,["H1693"]],[23,24,["H1836"]],[24,25,["H5974"]],[25,26,["H1836"]],[26,28,["H1888","H1768"]],[28,29,["H6523"]],[29,31,["H3809"]],[31,32,["H6151"]],[32,33,["H5974"]],[33,34,["H2635"]]]},{"k":21802,"v":[[0,4,["H3118"]],[4,5,["H1768"]],[5,6,["H581"]],[6,7,["H4430"]],[7,10,["H426"]],[10,12,["H8065"]],[12,14,["H6966"]],[14,16,["H4437"]],[16,17,["H1768"]],[17,19,["H3809","H5957"]],[19,21,["H2255"]],[21,24,["H4437"]],[24,26,["H3809"]],[26,28,["H7662"]],[28,30,["H321"]],[30,31,["H5972"]],[31,37,["H1855"]],[37,39,["H5487"]],[39,40,["H3606"]],[40,41,["H459"]],[41,42,["H4437"]],[42,44,["H1932"]],[44,46,["H6966"]],[46,48,["H5957"]]]},{"k":21803,"v":[[0,2,["H3606","H6903","H1768"]],[2,4,["H2370"]],[4,5,["H1768"]],[5,7,["H69"]],[7,10,["H1505"]],[10,13,["H4481","H2906"]],[13,14,["H1768","H3809"]],[14,15,["H3028"]],[15,21,["H1855"]],[21,23,["H6523"]],[23,25,["H5174"]],[25,27,["H2635"]],[27,29,["H3702"]],[29,32,["H1722"]],[32,34,["H7229"]],[34,35,["H426"]],[35,38,["H3046"]],[38,41,["H4430"]],[41,42,["H4101","H1768"]],[42,46,["H1934"]],[46,47,["H311","H1836"]],[47,50,["H2493"]],[50,52,["H3330"]],[52,55,["H6591"]],[55,57,["H540"]]]},{"k":21804,"v":[[0,1,["H116"]],[1,3,["H4430"]],[3,4,["H5020"]],[4,5,["H5308"]],[5,6,["H5922"]],[6,8,["H600"]],[8,10,["H5457"]],[10,11,["H1841"]],[11,13,["H560"]],[13,17,["H5260"]],[17,19,["H4061"]],[19,22,["H5208"]],[22,24,[]]]},{"k":21805,"v":[[0,2,["H4430"]],[2,3,["H6032"]],[3,5,["H1841"]],[5,7,["H560"]],[7,8,["H4481"]],[8,10,["H7187"]],[10,13,["H1768"]],[13,15,["H426"]],[15,18,["H426"]],[18,20,["H426"]],[20,23,["H4756"]],[23,25,["H4430"]],[25,28,["H1541"]],[28,30,["H7328"]],[30,31,["H1768"]],[31,33,["H3202"]],[33,34,["H1541"]],[34,35,["H1836"]],[35,36,["H7328"]]]},{"k":21806,"v":[[0,1,["H116"]],[1,3,["H4430"]],[3,8,["H7236","H1841"]],[8,10,["H3052"]],[10,12,["H7690"]],[12,13,["H7260"]],[13,14,["H4978"]],[14,18,["H7981"]],[18,19,["H5922"]],[19,21,["H3606"]],[21,22,["H4083"]],[22,24,["H895"]],[24,26,["H7229"]],[26,29,["H5460"]],[29,30,["H5922"]],[30,31,["H3606"]],[31,33,["H2445"]],[33,36,["H895"]]]},{"k":21807,"v":[[0,2,["H1841"]],[2,3,["H1156"]],[3,4,["H4481"]],[4,6,["H4430"]],[6,9,["H4483"]],[9,10,["H7715"]],[10,11,["H4336"]],[11,13,["H5665"]],[13,14,["H5922"]],[14,16,["H5673"]],[16,17,["H1768"]],[17,19,["H4083"]],[19,21,["H895"]],[21,23,["H1841"]],[23,27,["H8651"]],[27,30,["H4430"]]]},{"k":21808,"v":[[0,1,["H5020"]],[1,3,["H4430"]],[3,4,["H5648"]],[4,6,["H6755"]],[6,7,["H1768"]],[7,8,["H1722"]],[8,10,["H7314"]],[10,12,["H8361"]],[12,13,["H521"]],[13,16,["H6613"]],[16,18,["H8353"]],[18,19,["H521"]],[19,23,["H6966"]],[23,26,["H1236"]],[26,28,["H1757"]],[28,31,["H4083"]],[31,33,["H895"]]]},{"k":21809,"v":[[0,2,["H5020"]],[2,4,["H4430"]],[4,5,["H7972"]],[5,8,["H3673"]],[8,10,["H324"]],[10,12,["H5460"]],[12,15,["H6347"]],[15,17,["H148"]],[17,19,["H1411"]],[19,21,["H1884"]],[21,23,["H8614"]],[23,25,["H3606"]],[25,27,["H7984"]],[27,30,["H4083"]],[30,32,["H858"]],[32,35,["H2597"]],[35,38,["H6755"]],[38,39,["H1768"]],[39,40,["H5020"]],[40,42,["H4430"]],[42,45,["H6966"]]]},{"k":21810,"v":[[0,1,["H116"]],[1,3,["H324"]],[3,5,["H5460"]],[5,7,["H6347"]],[7,9,["H148"]],[9,11,["H1411"]],[11,13,["H1884"]],[13,15,["H8614"]],[15,17,["H3606"]],[17,19,["H7984"]],[19,22,["H4083"]],[22,25,["H3673"]],[25,28,["H2597"]],[28,31,["H6755"]],[31,32,["H1768"]],[32,33,["H5020"]],[33,35,["H4430"]],[35,38,["H6966"]],[38,41,["H6966"]],[41,42,["H6903"]],[42,44,["H6755"]],[44,45,["H1768"]],[45,46,["H5020"]],[46,49,["H6966"]]]},{"k":21811,"v":[[0,3,["H3744"]],[3,4,["H7123"]],[4,5,["H2429"]],[5,10,["H560"]],[10,12,["H5972"]],[12,13,["H524"]],[13,15,["H3961"]]]},{"k":21812,"v":[[0,3,["H1768"]],[3,4,["H5732"]],[4,6,["H8086"]],[6,8,["H7032"]],[8,11,["H7162"]],[11,12,["H4953"]],[12,13,["H7030"]],[13,14,["H5443"]],[14,15,["H6460"]],[15,16,["H5481"]],[16,18,["H3606"]],[18,19,["H2178"]],[19,21,["H2170"]],[21,24,["H5308"]],[24,26,["H5457"]],[26,28,["H1722"]],[28,29,["H6755"]],[29,30,["H1768"]],[30,31,["H5020"]],[31,33,["H4430"]],[33,36,["H6966"]]]},{"k":21813,"v":[[0,2,["H4479","H1768"]],[2,5,["H5308","H3809"]],[5,7,["H5457"]],[7,11,["H8160"]],[11,13,["H7412"]],[13,16,["H1459"]],[16,19,["H3345"]],[19,20,["H5135"]],[20,21,["H861"]]]},{"k":21814,"v":[[0,1,["H3606","H6903","H1836"]],[1,4,["H2166"]],[4,5,["H1768"]],[5,6,["H3606"]],[6,8,["H5972"]],[8,9,["H8086"]],[9,11,["H7032"]],[11,14,["H7162"]],[14,15,["H4953"]],[15,16,["H7030"]],[16,17,["H5443"]],[17,18,["H6460"]],[18,20,["H3606"]],[20,21,["H2178"]],[21,23,["H2170"]],[23,24,["H3606"]],[24,26,["H5972"]],[26,28,["H524"]],[28,31,["H3961"]],[31,33,["H5308"]],[33,35,["H5457"]],[35,37,["H1722"]],[37,38,["H6755"]],[38,39,["H1768"]],[39,40,["H5020"]],[40,42,["H4430"]],[42,45,["H6966"]]]},{"k":21815,"v":[[0,1,["H3606","H6903","H1836"]],[1,4,["H2166"]],[4,5,["H1400"]],[5,6,["H3779"]],[6,8,["H7127"]],[8,10,["H399","H7170"]],[10,12,["H1768","H3062"]]]},{"k":21816,"v":[[0,2,["H6032"]],[2,4,["H560"]],[4,7,["H4430"]],[7,8,["H5020"]],[8,10,["H4430"]],[10,11,["H2418"]],[11,13,["H5957"]]]},{"k":21817,"v":[[0,1,["H607"]],[1,3,["H4430"]],[3,5,["H7761"]],[5,7,["H2942"]],[7,8,["H1768"]],[8,9,["H3606"]],[9,10,["H606"]],[10,11,["H1768"]],[11,13,["H8086"]],[13,15,["H7032"]],[15,18,["H7162"]],[18,19,["H4953"]],[19,20,["H7030"]],[20,21,["H5443"]],[21,22,["H6460"]],[22,24,["H5481"]],[24,26,["H3606"]],[26,27,["H2178"]],[27,29,["H2170"]],[29,32,["H5308"]],[32,34,["H5457"]],[34,36,["H1722"]],[36,37,["H6755"]]]},{"k":21818,"v":[[0,2,["H4479","H1768"]],[2,5,["H5308","H3809"]],[5,7,["H5457"]],[7,12,["H7412"]],[12,15,["H1459"]],[15,18,["H3345"]],[18,19,["H5135"]],[19,20,["H861"]]]},{"k":21819,"v":[[0,2,["H383"]],[2,3,["H1400"]],[3,4,["H3062"]],[4,5,["H1768"]],[5,8,["H4483"]],[8,9,["H5922"]],[9,11,["H5673"]],[11,14,["H4083"]],[14,16,["H895"]],[16,17,["H7715"]],[17,18,["H4336"]],[18,20,["H5665"]],[20,21,["H479"]],[21,22,["H1400"]],[22,24,["H4430"]],[24,26,["H3809"]],[26,27,["H7761","H2942","H5922"]],[27,30,["H6399"]],[30,31,["H3809"]],[31,33,["H426"]],[33,34,["H3809"]],[34,35,["H5457"]],[35,37,["H1722"]],[37,38,["H6755"]],[38,39,["H1768"]],[39,43,["H6966"]]]},{"k":21820,"v":[[0,1,["H116"]],[1,2,["H5020"]],[2,5,["H7266"]],[5,7,["H2528"]],[7,8,["H560"]],[8,10,["H858"]],[10,11,["H7715"]],[11,12,["H4336"]],[12,14,["H5665"]],[14,15,["H116"]],[15,17,["H858"]],[17,18,["H479"]],[18,19,["H1400"]],[19,20,["H6925"]],[20,22,["H4430"]]]},{"k":21821,"v":[[0,1,["H5020"]],[1,2,["H6032"]],[2,4,["H560"]],[4,9,["H6656"]],[9,11,["H7715"]],[11,12,["H4336"]],[12,14,["H5665"]],[14,15,["H383"]],[15,16,["H3809"]],[16,18,["H6399"]],[18,20,["H426"]],[20,21,["H3809"]],[21,22,["H5457"]],[22,24,["H1722"]],[24,25,["H6755"]],[25,26,["H1768"]],[26,30,["H6966"]]]},{"k":21822,"v":[[0,1,["H3705"]],[1,2,["H2006"]],[2,4,["H383"]],[4,5,["H6263"]],[5,6,["H1768"]],[6,8,["H1768"]],[8,9,["H5732"]],[9,11,["H8086"]],[11,13,["H7032"]],[13,16,["H7162"]],[16,17,["H4953"]],[17,18,["H7030"]],[18,19,["H5443"]],[19,20,["H6460"]],[20,22,["H5481"]],[22,24,["H3606"]],[24,25,["H2178"]],[25,27,["H2170"]],[27,30,["H5308"]],[30,32,["H5457"]],[32,34,["H6755"]],[34,35,["H1768"]],[35,38,["H5648"]],[38,41,["H2006"]],[41,43,["H5457"]],[43,44,["H3809"]],[44,48,["H7412"]],[48,51,["H8160"]],[51,54,["H1459"]],[54,57,["H3345"]],[57,58,["H5135"]],[58,59,["H861"]],[59,61,["H4479"]],[61,63,["H1932"]],[63,64,["H426"]],[64,65,["H1768"]],[65,67,["H7804"]],[67,70,["H4481"]],[70,72,["H3028"]]]},{"k":21823,"v":[[0,1,["H7715"]],[1,2,["H4336"]],[2,4,["H5665"]],[4,5,["H6032"]],[5,7,["H560"]],[7,10,["H4430"]],[10,12,["H5020"]],[12,13,["H586"]],[13,15,["H3809"]],[15,16,["H2818"]],[16,18,["H8421"]],[18,20,["H5922"]],[20,21,["H1836"]],[21,22,["H6600"]]]},{"k":21824,"v":[[0,1,["H2006"]],[1,3,["H383"]],[3,6,["H426"]],[6,7,["H1768"]],[7,8,["H586"]],[8,9,["H6399"]],[9,11,["H3202"]],[11,13,["H7804"]],[13,15,["H4481"]],[15,17,["H3345"]],[17,18,["H5135"]],[18,19,["H861"]],[19,23,["H7804"]],[23,26,["H4481"]],[26,28,["H3028"]],[28,30,["H4430"]]]},{"k":21825,"v":[[0,2,["H2006"]],[2,3,["H3809"]],[3,4,["H1934"]],[4,6,["H3046"]],[6,10,["H4430"]],[10,11,["H1768"]],[11,13,["H383"]],[13,14,["H3809"]],[14,15,["H6399"]],[15,17,["H426"]],[17,18,["H3809"]],[18,19,["H5457"]],[19,21,["H1722"]],[21,22,["H6755"]],[22,23,["H1768"]],[23,27,["H6966"]]]},{"k":21826,"v":[[0,1,["H116"]],[1,3,["H5020"]],[3,4,["H4391"]],[4,6,["H2528"]],[6,9,["H6755"]],[9,12,["H600"]],[12,14,["H8133"]],[14,15,["H5922"]],[15,16,["H7715"]],[16,17,["H4336"]],[17,19,["H5665"]],[19,22,["H6032"]],[22,24,["H560"]],[24,28,["H228"]],[28,30,["H861"]],[30,31,["H2298"]],[31,33,["H7655"]],[33,34,["H5922"]],[34,35,["H1768"]],[35,38,["H2370"]],[38,41,["H228"]]]},{"k":21827,"v":[[0,3,["H560"]],[3,6,["H1401","H2429"]],[6,7,["H1400"]],[7,8,["H1768"]],[8,12,["H2429"]],[12,14,["H3729"]],[14,15,["H7715"]],[15,16,["H4336"]],[16,18,["H5665"]],[18,21,["H7412"]],[21,25,["H3345"]],[25,26,["H5135"]],[26,27,["H861"]]]},{"k":21828,"v":[[0,1,["H116"]],[1,2,["H479"]],[2,3,["H1400"]],[3,5,["H3729"]],[5,8,["H5622"]],[8,10,["H6361"]],[10,13,["H3737"]],[13,17,["H3831"]],[17,20,["H7412"]],[20,23,["H1459"]],[23,26,["H3345"]],[26,27,["H5135"]],[27,28,["H861"]]]},{"k":21829,"v":[[0,1,["H3606","H6903","H1836"]],[1,2,["H4481","H1768"]],[2,4,["H4430"]],[4,5,["H4406"]],[5,7,["H2685"]],[7,10,["H861"]],[10,11,["H3493"]],[11,12,["H228"]],[12,14,["H7631"]],[14,15,["H1768"]],[15,17,["H5135"]],[17,18,["H6992"]],[18,19,["H479"]],[19,20,["H1400"]],[20,21,["H1768"]],[21,23,["H5267"]],[23,24,["H7715"]],[24,25,["H4336"]],[25,27,["H5665"]]]},{"k":21830,"v":[[0,2,["H479"]],[2,3,["H8532"]],[3,4,["H1400"]],[4,5,["H7715"]],[5,6,["H4336"]],[6,8,["H5665"]],[8,10,["H5308"]],[10,11,["H3729"]],[11,14,["H1459"]],[14,17,["H3345"]],[17,18,["H5135"]],[18,19,["H861"]]]},{"k":21831,"v":[[0,1,["H116"]],[1,2,["H5020"]],[2,4,["H4430"]],[4,6,["H8429"]],[6,9,["H6966"]],[9,11,["H927"]],[11,13,["H6032"]],[13,15,["H560"]],[15,18,["H1907"]],[18,20,["H3809"]],[20,22,["H7412"]],[22,23,["H8532"]],[23,24,["H1400"]],[24,25,["H3729"]],[25,28,["H1459"]],[28,31,["H5135"]],[31,33,["H6032"]],[33,35,["H560"]],[35,38,["H4430"]],[38,39,["H3330"]],[39,41,["H4430"]]]},{"k":21832,"v":[[0,2,["H6032"]],[2,4,["H560"]],[4,5,["H1888"]],[5,6,["H576"]],[6,7,["H2370"]],[7,8,["H703"]],[8,9,["H1400"]],[9,10,["H8271"]],[10,11,["H1981"]],[11,14,["H1459"]],[14,17,["H5135"]],[17,20,["H383"]],[20,21,["H3809"]],[21,22,["H2257"]],[22,25,["H7299"]],[25,26,["H1768"]],[26,28,["H7244"]],[28,30,["H1821"]],[30,32,["H1247"]],[32,34,["H426"]]]},{"k":21833,"v":[[0,1,["H116"]],[1,2,["H5020"]],[2,4,["H7127"]],[4,7,["H8651"]],[7,10,["H3345"]],[10,11,["H5135"]],[11,12,["H861"]],[12,14,["H6032"]],[14,16,["H560"]],[16,17,["H7715"]],[17,18,["H4336"]],[18,20,["H5665"]],[20,22,["H5649"]],[22,23,["H1768"]],[23,26,["H5943"]],[26,27,["H426"]],[27,29,["H5312"]],[29,31,["H858"]],[31,33,["H116"]],[33,34,["H7715"]],[34,35,["H4336"]],[35,37,["H5665"]],[37,39,["H5312"]],[39,40,["H4481"]],[40,42,["H1459"]],[42,45,["H5135"]]]},{"k":21834,"v":[[0,3,["H324"]],[3,4,["H5460"]],[4,6,["H6347"]],[6,9,["H4430"]],[9,10,["H1907"]],[10,13,["H3673"]],[13,14,["H2370"]],[14,15,["H479"]],[15,16,["H1400"]],[16,18,["H1768"]],[18,19,["H1655"]],[19,21,["H5135"]],[21,24,["H7981","H3809"]],[24,25,["H3809"]],[25,28,["H8177"]],[28,31,["H7217"]],[31,32,["H2761"]],[32,33,["H3809"]],[33,36,["H5622"]],[36,37,["H8133"]],[37,38,["H3809"]],[38,40,["H7382"]],[40,42,["H5135"]],[42,44,["H5709"]],[44,46,[]]]},{"k":21835,"v":[[0,2,["H5020"]],[2,3,["H6032"]],[3,5,["H560"]],[5,6,["H1289"]],[6,9,["H426"]],[9,10,["H1768"]],[10,11,["H7715"]],[11,12,["H4336"]],[12,14,["H5665"]],[14,15,["H1768"]],[15,17,["H7972"]],[17,19,["H4398"]],[19,21,["H7804"]],[21,23,["H5649"]],[23,24,["H1768"]],[24,25,["H7365"]],[25,26,["H5922"]],[26,30,["H8133"]],[30,32,["H4430"]],[32,33,["H4406"]],[33,35,["H3052"]],[35,37,["H1655"]],[37,38,["H1768"]],[38,41,["H3809"]],[41,42,["H6399"]],[42,43,["H3809"]],[43,44,["H5457"]],[44,45,["H3606"]],[45,46,["H426"]],[46,47,["H3861"]],[47,50,["H426"]]]},{"k":21836,"v":[[0,3,["H4481","H7761"]],[3,5,["H2942"]],[5,6,["H1768"]],[6,7,["H3606"]],[7,8,["H5972"]],[8,9,["H524"]],[9,11,["H3961"]],[11,12,["H1768"]],[12,13,["H560"]],[13,16,["H7955"]],[16,17,["H5922"]],[17,19,["H426"]],[19,20,["H1768"]],[20,21,["H7715"]],[21,22,["H4336"]],[22,24,["H5665"]],[24,27,["H5648"]],[27,29,["H1917"]],[29,32,["H1005"]],[32,35,["H7739"]],[35,37,["H5122"]],[37,38,["H3606","H6903","H1768"]],[38,40,["H383"]],[40,41,["H3809"]],[41,42,["H321"]],[42,43,["H426"]],[43,44,["H1768"]],[44,45,["H3202"]],[45,46,["H5338"]],[46,49,["H1836"]]]},{"k":21837,"v":[[0,1,["H116"]],[1,3,["H4430"]],[3,4,["H6744"]],[4,5,["H7715"]],[5,6,["H4336"]],[6,8,["H5665"]],[8,11,["H4083"]],[11,13,["H895"]]]},{"k":21838,"v":[[0,1,["H5020"]],[1,3,["H4430"]],[3,5,["H3606"]],[5,6,["H5972"]],[6,7,["H524"]],[7,9,["H3961"]],[9,10,["H1768"]],[10,11,["H1753"]],[11,13,["H3606"]],[13,15,["H772"]],[15,16,["H8001"]],[16,18,["H7680"]],[18,20,[]]]},{"k":21839,"v":[[0,4,["H8232","H6925"]],[4,6,["H2324"]],[6,8,["H852"]],[8,10,["H8540"]],[10,11,["H1768"]],[11,13,["H5943"]],[13,14,["H426"]],[14,16,["H5648"]],[16,17,["H5974"]],[17,18,[]]]},{"k":21840,"v":[[0,1,["H4101"]],[1,2,["H7260"]],[2,5,["H852"]],[5,7,["H4101"]],[7,8,["H8624"]],[8,11,["H8540"]],[11,13,["H4437"]],[13,16,["H5957"]],[16,17,["H4437"]],[17,20,["H7985"]],[20,22,["H5974"]],[22,23,["H1859"]],[23,25,["H1859"]]]},{"k":21841,"v":[[0,1,["H576"]],[1,2,["H5020"]],[2,3,["H1934"]],[3,5,["H7954"]],[5,8,["H1005"]],[8,10,["H7487"]],[10,13,["H1965"]]]},{"k":21842,"v":[[0,2,["H2370"]],[2,4,["H2493"]],[4,8,["H1763"]],[8,11,["H2031"]],[11,12,["H5922"]],[12,14,["H4903"]],[14,17,["H2376"]],[17,20,["H7217"]],[20,21,["H927"]],[21,22,[]]]},{"k":21843,"v":[[0,2,["H4481","H7761"]],[2,5,["H2942"]],[5,8,["H5924"]],[8,9,["H3606"]],[9,11,["H2445"]],[11,14,["H895"]],[14,15,["H6925"]],[15,17,["H1768"]],[17,21,["H3046"]],[21,25,["H6591"]],[25,28,["H2493"]]]},{"k":21844,"v":[[0,1,["H116"]],[1,3,["H5954"]],[3,5,["H2749"]],[5,7,["H826"]],[7,9,["H3779"]],[9,12,["H1505"]],[12,14,["H576"]],[14,15,["H560"]],[15,17,["H2493"]],[17,18,["H6925"]],[18,23,["H3809"]],[23,25,["H3046"]],[25,29,["H6591"]],[29,30,[]]]},{"k":21845,"v":[[0,2,["H5705"]],[2,4,["H318"]],[4,5,["H1841"]],[5,7,["H5954"]],[7,8,["H6925"]],[8,10,["H1768"]],[10,11,["H8036"]],[11,13,["H1096"]],[13,17,["H8036"]],[17,20,["H426"]],[20,23,["H1768"]],[23,26,["H7308"]],[26,29,["H6922"]],[29,30,["H426"]],[30,32,["H6925"]],[32,35,["H560"]],[35,37,["H2493"]],[37,38,[]]]},{"k":21846,"v":[[0,2,["H1096"]],[2,3,["H7229"]],[3,6,["H2749"]],[6,7,["H1768"]],[7,8,["H576"]],[8,9,["H3046"]],[9,10,["H1768"]],[10,12,["H7308"]],[12,15,["H6922"]],[15,16,["H426"]],[16,21,["H3809","H3606"]],[21,22,["H7328"]],[22,23,["H598"]],[23,25,["H560"]],[25,28,["H2376"]],[28,31,["H2493"]],[31,32,["H1768"]],[32,35,["H2370"]],[35,38,["H6591"]],[38,39,[]]]},{"k":21847,"v":[[0,4,["H2376"]],[4,7,["H7217"]],[7,8,["H5922"]],[8,10,["H4903"]],[10,12,["H1934","H2370"]],[12,14,["H431"]],[14,16,["H363"]],[16,19,["H1459"]],[19,22,["H772"]],[22,25,["H7314"]],[25,28,["H7690"]]]},{"k":21848,"v":[[0,2,["H363"]],[2,3,["H7236"]],[3,6,["H8631"]],[6,9,["H7314"]],[9,11,["H4291"]],[11,13,["H8065"]],[13,16,["H2379"]],[16,20,["H5491"]],[20,22,["H3606"]],[22,24,["H772"]]]},{"k":21849,"v":[[0,2,["H6074"]],[2,5,["H8209"]],[5,8,["H4"]],[8,10,["H7690"]],[10,15,["H4203"]],[15,17,["H3606"]],[17,19,["H2423"]],[19,22,["H1251"]],[22,24,["H2927"]],[24,25,["H8460"]],[25,29,["H6853"]],[29,32,["H8065"]],[32,33,["H1753"]],[33,36,["H6056"]],[36,39,["H3606"]],[39,40,["H1321"]],[40,42,["H2110"]],[42,43,["H4481"]],[43,44,[]]]},{"k":21850,"v":[[0,2,["H1934","H2370"]],[2,5,["H2376"]],[5,8,["H7217"]],[8,9,["H5922"]],[9,11,["H4903"]],[11,13,["H431"]],[13,15,["H5894"]],[15,19,["H6922"]],[19,21,["H5182"]],[21,22,["H4481"]],[22,23,["H8065"]]]},{"k":21851,"v":[[0,2,["H7123"]],[2,3,["H2429"]],[3,5,["H560"]],[5,6,["H3652"]],[6,8,["H1414"]],[8,10,["H363"]],[10,13,["H7113"]],[13,15,["H6056"]],[15,17,["H5426"]],[17,19,["H6074"]],[19,21,["H921"]],[21,23,["H4"]],[23,26,["H2423"]],[26,28,["H5111"]],[28,29,["H4481"]],[29,30,["H8479"]],[30,34,["H6853"]],[34,35,["H4481"]],[35,37,["H6056"]]]},{"k":21852,"v":[[0,1,["H1297"]],[1,2,["H7662"]],[2,4,["H6136"]],[4,7,["H8330"]],[7,10,["H772"]],[10,14,["H613"]],[14,15,["H1768"]],[15,16,["H6523"]],[16,18,["H5174"]],[18,22,["H1883"]],[22,23,["H1768"]],[23,25,["H1251"]],[25,30,["H6647"]],[30,33,["H2920"]],[33,35,["H8065"]],[35,39,["H2508"]],[39,41,["H5974"]],[41,43,["H2423"]],[43,46,["H6211"]],[46,49,["H772"]]]},{"k":21853,"v":[[0,3,["H3825"]],[3,5,["H8133"]],[5,6,["H4481"]],[6,7,["H606"]],[7,11,["H2423"]],[11,12,["H3825"]],[12,14,["H3052"]],[14,19,["H7655"]],[19,20,["H5732"]],[20,21,["H2499"]],[21,22,["H5922"]],[22,23,[]]]},{"k":21854,"v":[[0,2,["H6600"]],[2,6,["H1510"]],[6,9,["H5894"]],[9,12,["H7595"]],[12,15,["H3983"]],[15,19,["H6922"]],[19,20,["H5705"]],[20,22,["H1701"]],[22,23,["H1768"]],[23,25,["H2417"]],[25,27,["H3046"]],[27,28,["H1768"]],[28,31,["H5943"]],[31,32,["H7990"]],[32,35,["H4437"]],[35,37,["H606"]],[37,39,["H5415"]],[39,42,["H4479","H1768"]],[42,44,["H6634"]],[44,47,["H6966"]],[47,48,["H5922"]],[48,51,["H8215"]],[51,53,["H606"]]]},{"k":21855,"v":[[0,1,["H1836"]],[1,2,["H2493"]],[2,3,["H576"]],[3,4,["H4430"]],[4,5,["H5020"]],[5,7,["H2370"]],[7,9,["H607"]],[9,11,["H1096"]],[11,12,["H560"]],[12,14,["H6591"]],[14,17,["H3606","H6903","H1768"]],[17,18,["H3606"]],[18,20,["H2445"]],[20,24,["H4437"]],[24,27,["H3202","H3809"]],[27,30,["H3046"]],[30,34,["H6591"]],[34,36,["H607"]],[36,38,["H3546"]],[38,39,["H1768"]],[39,41,["H7308"]],[41,44,["H6922"]],[44,45,["H426"]],[45,48,[]]]},{"k":21856,"v":[[0,1,["H116"]],[1,2,["H1841"]],[2,3,["H1768"]],[3,4,["H8036"]],[4,6,["H1096"]],[6,8,["H8075"]],[8,10,["H2298"]],[10,11,["H8160"]],[11,14,["H7476"]],[14,15,["H927"]],[15,18,["H4430"]],[18,19,["H6032"]],[19,21,["H560"]],[21,22,["H1096"]],[22,24,["H409"]],[24,26,["H2493"]],[26,29,["H6591"]],[29,31,["H927"]],[31,33,["H1096"]],[33,34,["H6032"]],[34,36,["H560"]],[36,38,["H4756"]],[38,40,["H2493"]],[40,45,["H8131"]],[45,49,["H6591"]],[49,53,["H6146"]]]},{"k":21857,"v":[[0,2,["H363"]],[2,3,["H1768"]],[3,5,["H2370"]],[5,6,["H1768"]],[6,7,["H7236"]],[7,10,["H8631"]],[10,12,["H7314"]],[12,13,["H4291"]],[13,16,["H8065"]],[16,19,["H2379"]],[19,22,["H3606"]],[22,24,["H772"]]]},{"k":21858,"v":[[0,2,["H6074"]],[2,4,["H8209"]],[4,7,["H4"]],[7,9,["H7690"]],[9,14,["H4203"]],[14,16,["H3606"]],[16,17,["H8460"]],[17,20,["H2423"]],[20,23,["H1251"]],[23,24,["H1753"]],[24,28,["H6056"]],[28,30,["H6853"]],[30,33,["H8065"]],[33,36,["H7932"]]]},{"k":21859,"v":[[0,1,["H1932"]],[1,3,["H607"]],[3,5,["H4430"]],[5,6,["H1768"]],[6,8,["H7236"]],[8,11,["H8631"]],[11,14,["H7238"]],[14,16,["H7236"]],[16,18,["H4291"]],[18,20,["H8065"]],[20,23,["H7985"]],[23,26,["H5491"]],[26,29,["H772"]]]},{"k":21860,"v":[[0,2,["H1768"]],[2,4,["H4430"]],[4,5,["H2370"]],[5,7,["H5894"]],[7,11,["H6922"]],[11,13,["H5182"]],[13,14,["H4481"]],[14,15,["H8065"]],[15,17,["H560"]],[17,21,["H1414","H363"]],[21,23,["H2255"]],[23,25,["H1297"]],[25,26,["H7662"]],[26,28,["H6136"]],[28,31,["H8330"]],[31,35,["H772"]],[35,39,["H613"]],[39,40,["H1768"]],[40,41,["H6523"]],[41,43,["H5174"]],[43,47,["H1883"]],[47,48,["H1768"]],[48,50,["H1251"]],[50,55,["H6647"]],[55,58,["H2920"]],[58,60,["H8065"]],[60,64,["H2508"]],[64,66,["H5974"]],[66,68,["H2423"]],[68,71,["H1251"]],[71,72,["H5705","H1768"]],[72,73,["H7655"]],[73,74,["H5732"]],[74,75,["H2499"]],[75,76,["H5922"]],[76,77,[]]]},{"k":21861,"v":[[0,1,["H1836"]],[1,4,["H6591"]],[4,6,["H4430"]],[6,8,["H1932"]],[8,11,["H1510"]],[11,15,["H5943"]],[15,16,["H1768"]],[16,18,["H4291"]],[18,19,["H5922"]],[19,21,["H4756"]],[21,23,["H4430"]]]},{"k":21862,"v":[[0,4,["H2957"]],[4,6,["H4481"]],[6,7,["H606"]],[7,10,["H4070"]],[10,12,["H1934"]],[12,13,["H5974"]],[13,15,["H2423"]],[15,18,["H1251"]],[18,25,["H2939"]],[25,26,["H6211"]],[26,28,["H8450"]],[28,32,["H6647"]],[32,36,["H4481","H2920"]],[36,38,["H8065"]],[38,40,["H7655"]],[40,41,["H5732"]],[41,43,["H2499"]],[43,44,["H5922"]],[44,46,["H5705","H1768"]],[46,48,["H3046"]],[48,49,["H1768"]],[49,52,["H5943"]],[52,53,["H7990"]],[53,56,["H4437"]],[56,58,["H606"]],[58,60,["H5415"]],[60,63,["H4479","H1768"]],[63,65,["H6634"]]]},{"k":21863,"v":[[0,2,["H1768"]],[2,4,["H560"]],[4,6,["H7662"]],[6,8,["H6136"]],[8,9,["H1768"]],[9,11,["H363"]],[11,12,["H8330"]],[12,14,["H4437"]],[14,17,["H7011"]],[17,21,["H4481","H1768"]],[21,25,["H3046"]],[25,26,["H1768"]],[26,28,["H8065"]],[28,30,["H7990"]]]},{"k":21864,"v":[[0,1,["H3861"]],[1,3,["H4430"]],[3,6,["H4431"]],[6,8,["H8232"]],[8,9,["H5922"]],[9,12,["H6562"]],[12,15,["H2408"]],[15,17,["H6665"]],[17,20,["H5758"]],[20,23,["H2604"]],[23,26,["H6033"]],[26,27,["H2006"]],[27,30,["H1934"]],[30,32,["H754"]],[32,35,["H7963"]]]},{"k":21865,"v":[[0,2,["H3606"]],[2,3,["H4291"]],[3,4,["H5922"]],[4,6,["H4430"]],[6,7,["H5020"]]]},{"k":21866,"v":[[0,3,["H7118"]],[3,5,["H8648","H6236"]],[5,6,["H3393"]],[6,8,["H1934","H1981"]],[8,9,["H5922"]],[9,11,["H1965"]],[11,14,["H4437"]],[14,15,["H1768"]],[15,16,["H895"]]]},{"k":21867,"v":[[0,2,["H4430"]],[2,3,["H6032"]],[3,5,["H560"]],[5,7,["H3809"]],[7,8,["H1668"]],[8,9,["H7229"]],[9,10,["H895"]],[10,11,["H1768"]],[11,12,["H576"]],[12,14,["H1124"]],[14,17,["H1005"]],[17,20,["H4437"]],[20,23,["H8632"]],[23,26,["H2632"]],[26,30,["H3367"]],[30,33,["H1923"]]]},{"k":21868,"v":[[0,1,["H5751"]],[1,3,["H4406"]],[3,7,["H4430"]],[7,8,["H6433"]],[8,10,["H5308"]],[10,12,["H7032"]],[12,13,["H4481"]],[13,14,["H8065"]],[14,17,["H4430"]],[17,18,["H5020"]],[18,23,["H560"]],[23,25,["H4437"]],[25,27,["H5709"]],[27,28,["H4481"]],[28,29,[]]]},{"k":21869,"v":[[0,4,["H2957"]],[4,6,["H4481"]],[6,7,["H606"]],[7,10,["H4070"]],[10,13,["H5974"]],[13,15,["H2423"]],[15,18,["H1251"]],[18,24,["H2939"]],[24,25,["H6211"]],[25,27,["H8450"]],[27,29,["H7655"]],[29,30,["H5732"]],[30,32,["H2499"]],[32,33,["H5922"]],[33,35,["H5705","H1768"]],[35,37,["H3046"]],[37,38,["H1768"]],[38,41,["H5943"]],[41,42,["H7990"]],[42,45,["H4437"]],[45,47,["H606"]],[47,49,["H5415"]],[49,52,["H4479","H1768"]],[52,54,["H6634"]]]},{"k":21870,"v":[[0,3,["H8160"]],[3,6,["H4406"]],[6,7,["H5487"]],[7,8,["H5922"]],[8,9,["H5020"]],[9,13,["H2957"]],[13,14,["H4481"]],[14,15,["H606"]],[15,18,["H399"]],[18,19,["H6211"]],[19,21,["H8450"]],[21,24,["H1655"]],[24,26,["H6647"]],[26,29,["H4481","H2920"]],[29,31,["H8065"]],[31,32,["H5705","H1768"]],[32,34,["H8177"]],[34,36,["H7236"]],[36,38,["H5403"]],[38,42,["H2953"]],[42,44,["H6853"]],[44,45,[]]]},{"k":21871,"v":[[0,4,["H7118"]],[4,7,["H3118"]],[7,8,["H576"]],[8,9,["H5020"]],[9,11,["H5191"]],[11,13,["H5870"]],[13,15,["H8065"]],[15,18,["H4486"]],[18,19,["H8421"]],[19,20,["H5922"]],[20,24,["H1289"]],[24,27,["H5943"]],[27,30,["H7624"]],[30,32,["H1922"]],[32,35,["H2417"]],[35,37,["H5957"]],[37,38,["H1768"]],[38,39,["H7985"]],[39,42,["H5957"]],[42,43,["H7985"]],[43,46,["H4437"]],[46,48,["H5974"]],[48,49,["H1859"]],[49,51,["H1859"]]]},{"k":21872,"v":[[0,2,["H3606"]],[2,4,["H1753"]],[4,7,["H772"]],[7,9,["H2804"]],[9,11,["H3809"]],[11,14,["H5648"]],[14,18,["H6634"]],[18,21,["H2429"]],[21,23,["H8065"]],[23,27,["H1753"]],[27,30,["H772"]],[30,32,["H3809"]],[32,33,["H383"]],[33,34,["H4223"]],[34,36,["H3028"]],[36,38,["H560"]],[38,41,["H4101"]],[41,42,["H5648"]],[42,43,[]]]},{"k":21873,"v":[[0,4,["H2166"]],[4,6,["H4486"]],[6,7,["H8421"]],[7,8,["H5922"]],[8,13,["H3367"]],[13,16,["H4437"]],[16,18,["H1923"]],[18,20,["H2122"]],[20,21,["H8421"]],[21,22,["H5922"]],[22,26,["H1907"]],[26,29,["H7261"]],[29,30,["H1156"]],[30,36,["H8627"]],[36,37,["H5922"]],[37,39,["H4437"]],[39,41,["H3493"]],[41,42,["H7238"]],[42,44,["H3255"]],[44,46,[]]]},{"k":21874,"v":[[0,1,["H3705"]],[1,2,["H576"]],[2,3,["H5020"]],[3,4,["H7624"]],[4,6,["H7313"]],[6,8,["H1922"]],[8,10,["H4430"]],[10,12,["H8065"]],[12,13,["H3606"]],[13,14,["H1768"]],[14,15,["H4567"]],[15,17,["H7187"]],[17,20,["H735"]],[20,21,["H1780"]],[21,23,["H1768"]],[23,25,["H1981"]],[25,27,["H1467"]],[27,30,["H3202"]],[30,32,["H8214"]]]},{"k":21875,"v":[[0,1,["H1113"]],[1,3,["H4430"]],[3,4,["H5648"]],[4,6,["H7229"]],[6,7,["H3900"]],[7,10,["H506"]],[10,13,["H7261"]],[13,15,["H8355"]],[15,16,["H2562"]],[16,17,["H6903"]],[17,19,["H506"]]]},{"k":21876,"v":[[0,1,["H1113"]],[1,4,["H2942"]],[4,6,["H2562"]],[6,7,["H560"]],[7,9,["H858"]],[9,11,["H1722"]],[11,13,["H3702"]],[13,14,["H3984"]],[14,15,["H1768"]],[15,17,["H2"]],[17,18,["H5020"]],[18,21,["H5312"]],[21,22,["H4481"]],[22,24,["H1965"]],[24,25,["H1768"]],[25,28,["H3390"]],[28,31,["H4430"]],[31,34,["H7261"]],[34,36,["H7695"]],[36,39,["H3904"]],[39,41,["H8355"]],[41,42,[]]]},{"k":21877,"v":[[0,1,["H116"]],[1,3,["H858"]],[3,5,["H1722"]],[5,6,["H3984"]],[6,7,["H1768"]],[7,10,["H5312"]],[10,11,["H4481"]],[11,13,["H1965"]],[13,14,["H1768"]],[14,16,["H1005"]],[16,18,["H426"]],[18,19,["H1768"]],[19,22,["H3390"]],[22,25,["H4430"]],[25,28,["H7261"]],[28,30,["H7695"]],[30,33,["H3904"]],[33,34,["H8355"]],[34,36,[]]]},{"k":21878,"v":[[0,2,["H8355"]],[2,3,["H2562"]],[3,5,["H7624"]],[5,7,["H426"]],[7,9,["H1722"]],[9,12,["H3702"]],[12,14,["H5174"]],[14,16,["H6523"]],[16,18,["H636"]],[18,21,["H69"]]]},{"k":21879,"v":[[0,4,["H8160"]],[4,6,["H5312"]],[6,7,["H677"]],[7,8,["H1768"]],[8,10,["H606"]],[10,11,["H3028"]],[11,13,["H3790"]],[13,15,["H6903"]],[15,17,["H5043"]],[17,18,["H5922"]],[18,20,["H1528"]],[20,21,["H1768"]],[21,23,["H3797"]],[23,24,["H1768"]],[24,26,["H4430"]],[26,27,["H1965"]],[27,30,["H4430"]],[30,31,["H2370"]],[31,33,["H6447"]],[33,36,["H3028"]],[36,37,["H1768"]],[37,38,["H3790"]]]},{"k":21880,"v":[[0,1,["H116"]],[1,3,["H4430"]],[3,4,["H2122"]],[4,6,["H8133"]],[6,9,["H7476"]],[9,10,["H927"]],[10,15,["H7001"]],[15,18,["H2783"]],[18,20,["H8271"]],[20,23,["H755"]],[23,24,["H5368"]],[24,25,["H1668"]],[25,27,["H1668"]]]},{"k":21881,"v":[[0,2,["H4430"]],[2,3,["H7123"]],[3,4,["H2429"]],[4,7,["H5924"]],[7,9,["H826"]],[9,11,["H3779"]],[11,14,["H1505"]],[14,17,["H4430"]],[17,18,["H6032"]],[18,20,["H560"]],[20,23,["H2445"]],[23,26,["H895"]],[26,27,["H3606","H606","H1768"]],[27,29,["H7123"]],[29,30,["H1836"]],[30,31,["H3792"]],[31,33,["H2324"]],[33,36,["H6591"]],[36,40,["H3848"]],[40,42,["H711"]],[42,46,["H2002"]],[46,47,["H1768"]],[47,48,["H1722"]],[48,49,["H5922"]],[49,51,["H6676"]],[51,57,["H7981","H8523"]],[57,60,["H4437"]]]},{"k":21882,"v":[[0,1,["H116"]],[1,3,["H5954"]],[3,4,["H3606"]],[4,6,["H4430"]],[6,7,["H2445"]],[7,11,["H3546"]],[11,12,["H3809"]],[12,13,["H7123"]],[13,15,["H3792"]],[15,18,["H3046"]],[18,21,["H4430"]],[21,23,["H6591"]],[23,24,[]]]},{"k":21883,"v":[[0,1,["H116"]],[1,3,["H4430"]],[3,4,["H1113"]],[4,5,["H7690"]],[5,6,["H927"]],[6,9,["H2122"]],[9,11,["H8133"]],[11,12,["H5922"]],[12,16,["H7261"]],[16,18,["H7672"]]]},{"k":21884,"v":[[0,3,["H4433"]],[3,6,["H6903"]],[6,8,["H4406"]],[8,11,["H4430"]],[11,14,["H7261"]],[14,15,["H5954"]],[15,18,["H4961"]],[18,19,["H1005"]],[19,22,["H4433"]],[22,23,["H6032"]],[23,25,["H560"]],[25,27,["H4430"]],[27,28,["H2418"]],[28,30,["H5957"]],[30,32,["H409"]],[32,34,["H7476"]],[34,35,["H927"]],[35,37,["H409"]],[37,40,["H2122"]],[40,42,["H8133"]]]},{"k":21885,"v":[[0,2,["H383"]],[2,4,["H1400"]],[4,7,["H4437"]],[7,9,["H1768"]],[9,12,["H7308"]],[12,15,["H6922"]],[15,16,["H426"]],[16,20,["H3118"]],[20,23,["H2"]],[23,24,["H5094"]],[24,26,["H7924"]],[26,28,["H2452"]],[28,31,["H2452"]],[31,34,["H426"]],[34,36,["H7912"]],[36,41,["H4430"]],[41,42,["H5020"]],[42,44,["H2"]],[44,46,["H4430"]],[46,50,["H2"]],[50,51,["H6966"]],[51,52,["H7229"]],[52,55,["H2749"]],[55,56,["H826"]],[56,57,["H3779"]],[57,59,["H1505"]]]},{"k":21886,"v":[[0,2,["H3606","H6903","H1768"]],[2,4,["H3493"]],[4,5,["H7308"]],[5,7,["H4486"]],[7,9,["H7924"]],[9,10,["H6591"]],[10,12,["H2493"]],[12,14,["H263"]],[14,17,["H280"]],[17,19,["H8271"]],[19,21,["H7001"]],[21,23,["H7912"]],[23,27,["H1841"]],[27,28,["H1768"]],[28,30,["H4430"]],[30,31,["H7761","H8036"]],[31,32,["H1096"]],[32,33,["H3705"]],[33,35,["H1841"]],[35,37,["H7123"]],[37,41,["H2324"]],[41,43,["H6591"]]]},{"k":21887,"v":[[0,1,["H116"]],[1,3,["H1841"]],[3,5,["H5954"]],[5,6,["H6925"]],[6,8,["H4430"]],[8,11,["H4430"]],[11,12,["H6032"]],[12,14,["H560"]],[14,16,["H1841"]],[16,18,["H607"]],[18,19,["H1932"]],[19,20,["H1841"]],[20,21,["H1768"]],[21,23,["H4481"]],[23,25,["H1123"]],[25,28,["H1547"]],[28,29,["H1768"]],[29,30,["H3061"]],[30,31,["H1768"]],[31,33,["H4430"]],[33,35,["H2"]],[35,37,["H858"]],[37,38,["H4481"]],[38,39,["H3061"]]]},{"k":21888,"v":[[0,4,["H8086"]],[4,5,["H5922"]],[5,7,["H1768"]],[7,9,["H7308"]],[9,12,["H426"]],[12,18,["H5094"]],[18,20,["H7924"]],[20,22,["H3493"]],[22,23,["H2452"]],[23,25,["H7912"]],[25,27,[]]]},{"k":21889,"v":[[0,2,["H3705"]],[2,4,["H2445"]],[4,7,["H826"]],[7,11,["H5954"]],[11,12,["H6925"]],[12,14,["H1768"]],[14,17,["H7123"]],[17,18,["H1836"]],[18,19,["H3792"]],[19,22,["H3046"]],[22,26,["H6591"]],[26,30,["H3546"]],[30,31,["H3809"]],[31,32,["H2324"]],[32,34,["H6591"]],[34,37,["H4406"]]]},{"k":21890,"v":[[0,2,["H576"]],[2,4,["H8086"]],[4,5,["H5922"]],[5,7,["H1768"]],[7,9,["H3202"]],[9,10,["H6590"]],[10,11,["H6591"]],[11,13,["H8271"]],[13,14,["H7001"]],[14,15,["H3705"]],[15,16,["H2006"]],[16,18,["H3202"]],[18,19,["H7123"]],[19,21,["H3792"]],[21,24,["H3046"]],[24,28,["H6591"]],[28,33,["H3848"]],[33,35,["H711"]],[35,39,["H2002"]],[39,40,["H1768"]],[40,41,["H1722"]],[41,42,["H5922"]],[42,44,["H6676"]],[44,50,["H7981","H8531"]],[50,53,["H4437"]]]},{"k":21891,"v":[[0,1,["H116"]],[1,2,["H1841"]],[2,3,["H6032"]],[3,5,["H560"]],[5,6,["H6925"]],[6,8,["H4430"]],[8,11,["H4978"]],[11,12,["H1934"]],[12,16,["H3052"]],[16,18,["H5023"]],[18,20,["H321"]],[20,21,["H1297"]],[21,24,["H7123"]],[24,26,["H3792"]],[26,29,["H4430"]],[29,32,["H3046"]],[32,36,["H6591"]]]},{"k":21892,"v":[[0,2,["H607"]],[2,3,["H4430"]],[3,6,["H5943"]],[6,7,["H426"]],[7,8,["H3052"]],[8,9,["H5020"]],[9,11,["H2"]],[11,13,["H4437"]],[13,15,["H7238"]],[15,17,["H3367"]],[17,19,["H1923"]]]},{"k":21893,"v":[[0,2,["H4481"]],[2,4,["H7238"]],[4,5,["H1768"]],[5,7,["H3052"]],[7,9,["H3606"]],[9,10,["H5972"]],[10,11,["H524"]],[11,13,["H3961"]],[13,14,["H1934","H2112"]],[14,16,["H1763"]],[16,17,["H4481","H6925"]],[17,19,["H1768"]],[19,21,["H1934","H6634"]],[21,23,["H1934","H6992"]],[23,25,["H1768"]],[25,27,["H1934","H6634"]],[27,30,["H1934","H2418"]],[30,32,["H1768"]],[32,34,["H1934","H6634"]],[34,37,["H1934","H7313"]],[37,39,["H1768"]],[39,41,["H1934","H6634"]],[41,44,["H1934","H8214"]]]},{"k":21894,"v":[[0,2,["H1768"]],[2,4,["H3825"]],[4,7,["H7313"]],[7,10,["H7308"]],[10,11,["H8631"]],[11,13,["H2103"]],[13,16,["H5182"]],[16,17,["H4481"]],[17,19,["H4437"]],[19,20,["H3764"]],[20,23,["H5709"]],[23,25,["H3367"]],[25,26,["H4481"]],[26,27,[]]]},{"k":21895,"v":[[0,4,["H2957"]],[4,5,["H4481"]],[5,7,["H1123"]],[7,9,["H606"]],[9,12,["H3825"]],[12,14,["H7739"]],[14,15,["H5974"]],[15,17,["H2423"]],[17,20,["H4070"]],[20,22,["H5974"]],[22,25,["H6167"]],[25,27,["H2939"]],[27,30,["H6211"]],[30,32,["H8450"]],[32,35,["H1655"]],[35,37,["H6647"]],[37,40,["H4481","H2920"]],[40,42,["H8065"]],[42,43,["H5705","H1768"]],[43,45,["H3046"]],[45,46,["H1768"]],[46,49,["H5943"]],[49,50,["H426"]],[50,51,["H7990"]],[51,54,["H4437"]],[54,56,["H606"]],[56,60,["H6966"]],[60,61,["H5922"]],[61,63,["H4479","H1768"]],[63,65,["H6634"]]]},{"k":21896,"v":[[0,2,["H607"]],[2,4,["H1247"]],[4,6,["H1113"]],[6,8,["H3809"]],[8,9,["H8214"]],[9,11,["H3825"]],[11,12,["H3606","H6903","H1768"]],[12,14,["H3046"]],[14,15,["H3606"]],[15,16,["H1836"]]]},{"k":21897,"v":[[0,5,["H7313"]],[5,6,["H5922"]],[6,8,["H4756"]],[8,10,["H8065"]],[10,14,["H858"]],[14,16,["H3984"]],[16,17,["H1768"]],[17,19,["H1005"]],[19,20,["H6925"]],[20,23,["H607"]],[23,26,["H7261"]],[26,28,["H7695"]],[28,31,["H3904"]],[31,33,["H8355"]],[33,34,["H2562"]],[34,40,["H7624"]],[40,42,["H426"]],[42,44,["H3702"]],[44,46,["H1722"]],[46,48,["H5174"]],[48,49,["H6523"]],[49,50,["H636"]],[50,52,["H69"]],[52,53,["H1768"]],[53,54,["H2370"]],[54,55,["H3809"]],[55,56,["H3809"]],[56,57,["H8086"]],[57,58,["H3809"]],[58,59,["H3046"]],[59,62,["H426"]],[62,64,["H1768"]],[64,65,["H3028"]],[65,67,["H5396"]],[67,72,["H3606"]],[72,74,["H735"]],[74,77,["H3809"]],[77,78,["H1922"]]]},{"k":21898,"v":[[0,1,["H116"]],[1,4,["H6447"]],[4,5,["H1768"]],[5,7,["H3028"]],[7,8,["H7972"]],[8,9,["H4481","H6925"]],[9,12,["H1836"]],[12,13,["H3792"]],[13,15,["H7560"]]]},{"k":21899,"v":[[0,2,["H1836"]],[2,5,["H3792"]],[5,6,["H1768"]],[6,8,["H7560"]],[8,9,["H4484"]],[9,10,["H4484"]],[10,11,["H8625"]],[11,12,["H6537"]]]},{"k":21900,"v":[[0,1,["H1836"]],[1,4,["H6591"]],[4,7,["H4406"]],[7,8,["H4484"]],[8,9,["H426"]],[9,11,["H4483"]],[11,13,["H4437"]],[13,15,["H8000"]],[15,16,[]]]},{"k":21901,"v":[[0,1,["H8625"]],[1,4,["H8625"]],[4,7,["H3977"]],[7,10,["H7912"]],[10,11,["H2627"]]]},{"k":21902,"v":[[0,1,["H6537"]],[1,3,["H4437"]],[3,5,["H6537"]],[5,7,["H3052"]],[7,10,["H4076"]],[10,12,["H6540"]]]},{"k":21903,"v":[[0,1,["H116"]],[1,2,["H560"]],[2,3,["H1113"]],[3,6,["H3848"]],[6,7,["H1841"]],[7,9,["H711"]],[9,13,["H2002"]],[13,14,["H1768"]],[14,15,["H1722"]],[15,16,["H5922"]],[16,18,["H6676"]],[18,22,["H3745"]],[22,23,["H5922"]],[23,25,["H1768"]],[25,28,["H1934"]],[28,30,["H8531"]],[30,31,["H7990"]],[31,34,["H4437"]]]},{"k":21904,"v":[[0,3,["H3916"]],[3,5,["H1113"]],[5,7,["H4430"]],[7,10,["H3779"]],[10,11,["H6992"]]]},{"k":21905,"v":[[0,2,["H1868"]],[2,4,["H4077"]],[4,5,["H6902"]],[5,7,["H4437"]],[7,10,["H8361"]],[10,12,["H8648"]],[12,13,["H8140"]],[13,14,["H1247"]]]},{"k":21906,"v":[[0,2,["H8232","H6925"]],[2,3,["H1868"]],[3,5,["H6966"]],[5,6,["H5922"]],[6,8,["H4437"]],[8,10,["H3969"]],[10,12,["H6243"]],[12,13,["H324"]],[13,14,["H1768"]],[14,16,["H1934"]],[16,19,["H3606"]],[19,20,["H4437"]]]},{"k":21907,"v":[[0,2,["H5924","H4481"]],[2,4,["H8532"]],[4,5,["H5632"]],[5,7,["H4481","H1768"]],[7,8,["H1841"]],[8,10,["H2298"]],[10,11,["H1768"]],[11,12,["H459"]],[12,13,["H324"]],[13,14,["H1934"]],[14,15,["H3052"]],[15,16,["H2941"]],[16,21,["H4430"]],[21,23,["H1934"]],[23,24,["H3809"]],[24,25,["H5142"]]]},{"k":21908,"v":[[0,1,["H116"]],[1,2,["H1836"]],[2,3,["H1841"]],[3,4,["H1934"]],[4,5,["H5330"]],[5,6,["H5922"]],[6,8,["H5632"]],[8,10,["H324"]],[10,11,["H3606","H6903","H1768"]],[11,13,["H3493"]],[13,14,["H7308"]],[14,20,["H4430"]],[20,21,["H6246"]],[21,23,["H6966"]],[23,25,["H5922"]],[25,27,["H3606"]],[27,28,["H4437"]]]},{"k":21909,"v":[[0,1,["H116"]],[1,3,["H5632"]],[3,5,["H324"]],[5,6,["H1934","H1156"]],[6,8,["H7912"]],[8,9,["H5931"]],[9,11,["H1841"]],[11,12,["H4481","H6655"]],[12,14,["H4437"]],[14,17,["H3202"]],[17,18,["H7912"]],[18,19,["H3809","H3606"]],[19,20,["H5931"]],[20,22,["H7844"]],[22,24,["H3606","H6903","H1768"]],[24,25,["H1932"]],[25,27,["H540"]],[27,28,["H3809"]],[28,31,["H3606"]],[31,32,["H7960"]],[32,34,["H7844"]],[34,35,["H7912"]],[35,36,["H5922"]],[36,37,[]]]},{"k":21910,"v":[[0,1,["H116"]],[1,2,["H560"]],[2,3,["H479"]],[3,4,["H1400"]],[4,7,["H3809"]],[7,8,["H7912"]],[8,9,["H3606"]],[9,10,["H5931"]],[10,12,["H1836"]],[12,13,["H1841"]],[13,14,["H3861"]],[14,16,["H7912"]],[16,18,["H5922"]],[18,22,["H1882"]],[22,25,["H426"]]]},{"k":21911,"v":[[0,1,["H116"]],[1,2,["H459"]],[2,3,["H5632"]],[3,5,["H324"]],[5,7,["H7284"]],[7,8,["H5922"]],[8,10,["H4430"]],[10,12,["H560"]],[12,13,["H3652"]],[13,16,["H4430"]],[16,17,["H1868"]],[17,18,["H2418"]],[18,20,["H5957"]]]},{"k":21912,"v":[[0,1,["H3606"]],[1,3,["H5632"]],[3,6,["H4437"]],[6,8,["H5460"]],[8,11,["H324"]],[11,13,["H1907"]],[13,16,["H6347"]],[16,19,["H3272"]],[19,21,["H6966"]],[21,23,["H4430"]],[23,24,["H7010"]],[24,29,["H8631"]],[29,30,["H633"]],[30,31,["H1768"]],[31,32,["H3606","H1768"]],[32,34,["H1156"]],[34,36,["H1159"]],[36,37,["H4481"]],[37,38,["H3606"]],[38,39,["H426"]],[39,41,["H606"]],[41,42,["H5705"]],[42,43,["H8533"]],[43,44,["H3118"]],[44,45,["H3861"]],[45,46,["H4481"]],[46,49,["H4430"]],[49,53,["H7412"]],[53,56,["H1358"]],[56,58,["H744"]]]},{"k":21913,"v":[[0,1,["H3705"]],[1,3,["H4430"]],[3,4,["H6966"]],[4,6,["H633"]],[6,8,["H7560"]],[8,10,["H3792"]],[10,11,["H1768"]],[11,14,["H3809"]],[14,15,["H8133"]],[15,19,["H1882"]],[19,22,["H4076"]],[22,24,["H6540"]],[24,25,["H1768"]],[25,26,["H5709"]],[26,27,["H3809"]]]},{"k":21914,"v":[[0,1,["H3606","H6903","H1836"]],[1,2,["H4430"]],[2,3,["H1868"]],[3,4,["H7560"]],[4,6,["H3792"]],[6,9,["H633"]]]},{"k":21915,"v":[[0,2,["H1768"]],[2,3,["H1841"]],[3,4,["H3046"]],[4,5,["H1768"]],[5,7,["H3792"]],[7,9,["H7560"]],[9,11,["H5954"]],[11,14,["H1005"]],[14,17,["H3551"]],[17,19,["H6606"]],[19,22,["H5952"]],[22,23,["H5049"]],[23,24,["H3390"]],[24,25,["H1932"]],[25,26,["H1289"]],[26,27,["H5922"]],[27,29,["H1291"]],[29,30,["H8532"]],[30,31,["H2166"]],[31,33,["H3118"]],[33,35,["H6739"]],[35,38,["H3029"]],[38,39,["H6925"]],[39,41,["H426"]],[41,42,["H3606","H6903","H1768"]],[42,44,["H1934","H5648"]],[44,45,["H4481","H6928","H1836"]]]},{"k":21916,"v":[[0,1,["H116"]],[1,2,["H479"]],[2,3,["H1400"]],[3,4,["H7284"]],[4,6,["H7912"]],[6,7,["H1841"]],[7,8,["H1156"]],[8,11,["H2604"]],[11,12,["H6925"]],[12,14,["H426"]]]},{"k":21917,"v":[[0,1,["H116"]],[1,4,["H7127"]],[4,6,["H560"]],[6,7,["H6925"]],[7,9,["H4430"]],[9,10,["H5922"]],[10,12,["H4430"]],[12,13,["H633"]],[13,16,["H3809"]],[16,17,["H7560"]],[17,19,["H633"]],[19,20,["H1768"]],[20,21,["H3606"]],[21,22,["H606"]],[22,23,["H1768"]],[23,25,["H1156"]],[25,28,["H4481"]],[28,29,["H3606"]],[29,30,["H426"]],[30,32,["H606"]],[32,33,["H5705"]],[33,34,["H8533"]],[34,35,["H3118"]],[35,36,["H3861"]],[36,37,["H4481"]],[37,40,["H4430"]],[40,43,["H7412"]],[43,46,["H1358"]],[46,48,["H744"]],[48,50,["H4430"]],[50,51,["H6032"]],[51,53,["H560"]],[53,55,["H4406"]],[55,57,["H3330"]],[57,61,["H1882"]],[61,64,["H4076"]],[64,66,["H6540"]],[66,67,["H1768"]],[67,68,["H5709"]],[68,69,["H3809"]]]},{"k":21918,"v":[[0,1,["H116"]],[1,2,["H6032"]],[2,5,["H560"]],[5,6,["H6925"]],[6,8,["H4430"]],[8,9,["H1768"]],[9,10,["H1841"]],[10,11,["H1768"]],[11,13,["H4481"]],[13,15,["H1123"]],[15,18,["H1547"]],[18,19,["H1768"]],[19,20,["H3061"]],[20,21,["H7761","H2942","H5922"]],[21,22,["H3809"]],[22,25,["H4430"]],[25,28,["H633"]],[28,29,["H1768"]],[29,32,["H7560"]],[32,34,["H1156"]],[34,36,["H1159"]],[36,37,["H8532"]],[37,38,["H2166"]],[38,40,["H3118"]]]},{"k":21919,"v":[[0,1,["H116"]],[1,3,["H4430"]],[3,4,["H1768"]],[4,6,["H8086"]],[6,8,["H4406"]],[8,10,["H7690"]],[10,11,["H888"]],[11,12,["H5922"]],[12,15,["H7761"]],[15,17,["H1079"]],[17,18,["H5922"]],[18,19,["H1841"]],[19,21,["H7804"]],[21,25,["H1934","H7712"]],[25,26,["H5705"]],[26,29,["H4606"]],[29,32,["H8122"]],[32,34,["H5338"]],[34,35,[]]]},{"k":21920,"v":[[0,1,["H116"]],[1,2,["H479"]],[2,3,["H1400"]],[3,4,["H7284"]],[4,5,["H5922"]],[5,7,["H4430"]],[7,9,["H560"]],[9,12,["H4430"]],[12,13,["H3046"]],[13,15,["H4430"]],[15,16,["H1768"]],[16,18,["H1882"]],[18,21,["H4076"]],[21,23,["H6540"]],[23,25,["H1768"]],[25,26,["H3809","H3606"]],[26,27,["H633"]],[27,29,["H7010"]],[29,30,["H1768"]],[30,32,["H4430"]],[32,33,["H6966"]],[33,36,["H8133"]]]},{"k":21921,"v":[[0,1,["H116"]],[1,3,["H4430"]],[3,4,["H560"]],[4,7,["H858"]],[7,8,["H1841"]],[8,10,["H7412"]],[10,14,["H1358"]],[14,15,["H1768"]],[15,16,["H744"]],[16,19,["H4430"]],[19,20,["H6032"]],[20,22,["H560"]],[22,24,["H1841"]],[24,26,["H426"]],[26,27,["H1768"]],[27,28,["H607"]],[28,29,["H6399"]],[29,30,["H8411"]],[30,31,["H1932"]],[31,33,["H7804"]],[33,34,[]]]},{"k":21922,"v":[[0,2,["H2298"]],[2,3,["H69"]],[3,5,["H858"]],[5,7,["H7761"]],[7,8,["H5922"]],[8,10,["H6433"]],[10,13,["H1358"]],[13,16,["H4430"]],[16,17,["H2857"]],[17,22,["H5824"]],[22,26,["H5824"]],[26,29,["H7261"]],[29,30,["H1768"]],[30,32,["H6640"]],[32,34,["H3809"]],[34,36,["H8133"]],[36,38,["H1841"]]]},{"k":21923,"v":[[0,1,["H116"]],[1,3,["H4430"]],[3,4,["H236"]],[4,7,["H1965"]],[7,11,["H956"]],[11,12,["H2908"]],[12,13,["H3809"]],[13,17,["H1761"]],[17,18,["H5954"]],[18,19,["H6925"]],[19,23,["H8139"]],[23,24,["H5075"]],[24,25,["H5922"]],[25,26,[]]]},{"k":21924,"v":[[0,1,["H116"]],[1,3,["H4430"]],[3,4,["H6966"]],[4,9,["H8238","H5053"]],[9,11,["H236"]],[11,13,["H927"]],[13,16,["H1358"]],[16,17,["H1768"]],[17,18,["H744"]]]},{"k":21925,"v":[[0,4,["H7127"]],[4,7,["H1358"]],[7,9,["H2200"]],[9,12,["H6088"]],[12,13,["H7032"]],[13,15,["H1841"]],[15,18,["H4430"]],[18,19,["H6032"]],[19,21,["H560"]],[21,23,["H1841"]],[23,25,["H1841"]],[25,26,["H5649"]],[26,29,["H2417"]],[29,30,["H426"]],[30,33,["H426"]],[33,34,["H1768"]],[34,35,["H607"]],[35,36,["H6399"]],[36,37,["H8411"]],[37,38,["H3202"]],[38,40,["H7804"]],[40,42,["H4481"]],[42,44,["H744"]]]},{"k":21926,"v":[[0,1,["H116"]],[1,2,["H4449"]],[2,3,["H1841"]],[3,4,["H5974"]],[4,6,["H4430"]],[6,8,["H4430"]],[8,9,["H2418"]],[9,11,["H5957"]]]},{"k":21927,"v":[[0,2,["H426"]],[2,4,["H7972"]],[4,6,["H4398"]],[6,9,["H5463"]],[9,11,["H744"]],[11,12,["H6433"]],[12,16,["H3809"]],[16,17,["H2255"]],[17,20,["H3606","H6903","H1768"]],[20,21,["H6925"]],[21,23,["H2136"]],[23,25,["H7912"]],[25,29,["H638"]],[29,30,["H6925"]],[30,33,["H4430"]],[33,36,["H5648"]],[36,37,["H3809"]],[37,38,["H2248"]]]},{"k":21928,"v":[[0,1,["H116"]],[1,6,["H4430","H7690","H2868"]],[6,7,["H5922"]],[7,10,["H560"]],[10,16,["H5267","H1841"]],[16,18,["H4481"]],[18,20,["H1358"]],[20,22,["H1841"]],[22,25,["H5267"]],[25,27,["H4481"]],[27,29,["H1358"]],[29,32,["H3809","H3606"]],[32,34,["H2257"]],[34,36,["H7912"]],[36,39,["H1768"]],[39,41,["H540"]],[41,44,["H426"]]]},{"k":21929,"v":[[0,3,["H4430"]],[3,4,["H560"]],[4,7,["H858"]],[7,8,["H479"]],[8,9,["H1400"]],[9,10,["H1768"]],[10,12,["H399","H7170"]],[12,13,["H1768","H1841"]],[13,16,["H7412"]],[16,20,["H1358"]],[20,22,["H744"]],[22,23,["H581"]],[23,25,["H1123"]],[25,28,["H5389"]],[28,31,["H744"]],[31,34,["H7981"]],[34,43,["H1855","H3606","H1635"]],[43,47,["H5705","H1768","H3809","H4291"]],[47,50,["H773"]],[50,53,["H1358"]]]},{"k":21930,"v":[[0,1,["H116"]],[1,2,["H4430"]],[2,3,["H1868"]],[3,4,["H3790"]],[4,6,["H3606"]],[6,7,["H5972"]],[7,8,["H524"]],[8,10,["H3961"]],[10,11,["H1768"]],[11,12,["H1753"]],[12,14,["H3606"]],[14,16,["H772"]],[16,17,["H8001"]],[17,19,["H7680"]],[19,21,[]]]},{"k":21931,"v":[[0,2,["H4481","H6925","H7761"]],[2,4,["H2942"]],[4,5,["H1768"]],[5,7,["H3606"]],[7,8,["H7985"]],[8,11,["H4437"]],[11,13,["H1934","H2112"]],[13,15,["H1763"]],[15,16,["H4481","H6925"]],[16,18,["H426"]],[18,19,["H1768"]],[19,20,["H1841"]],[20,21,["H1768"]],[21,22,["H1932"]],[22,25,["H2417"]],[25,26,["H426"]],[26,28,["H7011"]],[28,30,["H5957"]],[30,33,["H4437"]],[33,35,["H1768"]],[35,37,["H3809"]],[37,39,["H2255"]],[39,42,["H7985"]],[42,46,["H5705"]],[46,48,["H5491"]]]},{"k":21932,"v":[[0,2,["H7804"]],[2,4,["H5338"]],[4,7,["H5648"]],[7,8,["H852"]],[8,10,["H8540"]],[10,12,["H8065"]],[12,15,["H772"]],[15,16,["H1768"]],[16,18,["H7804"]],[18,19,["H1841"]],[19,20,["H4481"]],[20,22,["H3028"]],[22,25,["H744"]]]},{"k":21933,"v":[[0,2,["H1836"]],[2,3,["H1841"]],[3,4,["H6744"]],[4,7,["H4437"]],[7,9,["H1868"]],[9,13,["H4437"]],[13,15,["H3567"]],[15,17,["H6543"]]]},{"k":21934,"v":[[0,3,["H2298"]],[3,4,["H8140"]],[4,6,["H1113"]],[6,7,["H4430"]],[7,9,["H895"]],[9,10,["H1841"]],[10,11,["H2370"]],[11,13,["H2493"]],[13,15,["H2376"]],[15,18,["H7217"]],[18,19,["H5922"]],[19,21,["H4903"]],[21,22,["H116"]],[22,24,["H3790"]],[24,26,["H2493"]],[26,28,["H560"]],[28,30,["H7217"]],[30,33,["H4406"]]]},{"k":21935,"v":[[0,1,["H1841"]],[1,2,["H6032"]],[2,4,["H560"]],[4,6,["H1934","H2370"]],[6,9,["H2376"]],[9,10,["H5974"]],[10,11,["H3916"]],[11,13,["H718"]],[13,15,["H703"]],[15,16,["H7308"]],[16,19,["H8065"]],[19,20,["H1519"]],[20,23,["H7229"]],[23,24,["H3221"]]]},{"k":21936,"v":[[0,2,["H703"]],[2,3,["H7260"]],[3,4,["H2423"]],[4,6,["H5559"]],[6,7,["H4481"]],[7,9,["H3221"]],[9,10,["H8133"]],[10,11,["H1668"]],[11,13,["H4481","H1668"]]]},{"k":21937,"v":[[0,2,["H6933"]],[2,6,["H744"]],[6,9,["H1768","H5403"]],[9,10,["H1611"]],[10,12,["H1934","H2370"]],[12,13,["H5705","H1768"]],[13,15,["H1611"]],[15,18,["H4804"]],[18,23,["H5191"]],[23,24,["H4481"]],[24,26,["H772"]],[26,29,["H6966"]],[29,30,["H5922"]],[30,32,["H7271"]],[32,35,["H606"]],[35,38,["H606"]],[38,39,["H3825"]],[39,41,["H3052"]],[41,43,[]]]},{"k":21938,"v":[[0,2,["H718"]],[2,3,["H317"]],[3,4,["H2423"]],[4,6,["H8578"]],[6,7,["H1821"]],[7,10,["H1678"]],[10,14,["H6966"]],[14,17,["H2298"]],[17,18,["H7859"]],[18,22,["H8532"]],[22,23,["H5967"]],[23,26,["H6433"]],[26,29,["H997"]],[29,31,["H8128"]],[31,36,["H560"]],[36,37,["H3652"]],[37,40,["H6966"]],[40,41,["H399"]],[41,42,["H7690"]],[42,43,["H1321"]]]},{"k":21939,"v":[[0,1,["H870"]],[1,2,["H1836"]],[2,4,["H1934","H2370"]],[4,6,["H718"]],[6,7,["H317"]],[7,10,["H5245"]],[10,13,["H5922"]],[13,15,["H1355"]],[15,18,["H703"]],[18,19,["H1611"]],[19,20,["H1768"]],[20,22,["H5776"]],[22,24,["H2423"]],[24,27,["H703"]],[27,28,["H7217"]],[28,30,["H7985"]],[30,32,["H3052"]],[32,34,[]]]},{"k":21940,"v":[[0,1,["H870"]],[1,2,["H1836"]],[2,4,["H1934","H2370"]],[4,7,["H3916"]],[7,8,["H2376"]],[8,10,["H718"]],[10,12,["H7244"]],[12,13,["H2423"]],[13,14,["H1763"]],[14,16,["H574"]],[16,18,["H8624"]],[18,19,["H3493"]],[19,23,["H7260"]],[23,24,["H1768","H6523"]],[24,25,["H8128"]],[25,27,["H399"]],[27,31,["H1855"]],[31,33,["H7512"]],[33,35,["H7606"]],[35,38,["H7271"]],[38,42,["H1932"]],[42,44,["H8133"]],[44,45,["H4481"]],[45,46,["H3606"]],[46,48,["H2423"]],[48,49,["H1768"]],[49,51,["H6925"]],[51,56,["H6236"]],[56,57,["H7162"]]]},{"k":21941,"v":[[0,2,["H1934","H7920"]],[2,4,["H7162"]],[4,6,["H431"]],[6,9,["H5559"]],[9,10,["H997"]],[10,12,["H317"]],[12,13,["H2192"]],[13,14,["H7162"]],[14,15,["H4481","H6925"]],[15,19,["H8532"]],[19,20,["H4481"]],[20,22,["H6933"]],[22,23,["H7162"]],[23,28,["H6132"]],[28,30,["H431"]],[30,32,["H1668"]],[32,33,["H7162"]],[33,35,["H5870"]],[35,38,["H5870"]],[38,40,["H606"]],[40,43,["H6433"]],[43,44,["H4449"]],[44,46,["H7260"]]]},{"k":21942,"v":[[0,2,["H1934","H2370"]],[2,3,["H5705","H1768"]],[3,5,["H3764"]],[5,8,["H7412"]],[8,11,["H6268"]],[11,13,["H3118"]],[13,15,["H3488"]],[15,17,["H3831"]],[17,19,["H2358"]],[19,21,["H8517"]],[21,24,["H8177"]],[24,27,["H7217"]],[27,30,["H5343"]],[30,31,["H6015"]],[31,33,["H3764"]],[33,37,["H1768","H5135"]],[37,38,["H7631"]],[38,41,["H1535"]],[41,43,["H1815"]],[43,44,["H5135"]]]},{"k":21943,"v":[[0,2,["H1768","H5135"]],[2,3,["H5103"]],[3,4,["H5047"]],[4,7,["H5312"]],[7,8,["H4481"]],[8,9,["H6925"]],[9,11,["H506"]],[11,12,["H506"]],[12,13,["H8120"]],[13,21,["H7240","H7240"]],[21,22,["H6966"]],[22,23,["H6925"]],[23,26,["H1780"]],[26,28,["H3488"]],[28,31,["H5609"]],[31,33,["H6606"]]]},{"k":21944,"v":[[0,2,["H1934","H2370"]],[2,3,["H116"]],[3,5,["H4481"]],[5,7,["H7032"]],[7,10,["H7260"]],[10,11,["H4406"]],[11,12,["H1768"]],[12,14,["H7162"]],[14,15,["H4449"]],[15,17,["H1934","H2370"]],[17,19,["H5705","H1768"]],[19,21,["H2423"]],[21,23,["H6992"]],[23,26,["H1655"]],[26,27,["H7"]],[27,29,["H3052"]],[29,32,["H3346"]],[32,33,["H785"]]]},{"k":21945,"v":[[0,4,["H7606"]],[4,7,["H2423"]],[7,11,["H7985"]],[11,13,["H5709"]],[13,16,["H2417"]],[16,18,["H754","H3052"]],[18,19,["H5705"]],[19,21,["H2166"]],[21,23,["H5732"]]]},{"k":21946,"v":[[0,2,["H1934","H2370"]],[2,5,["H3916"]],[5,6,["H2376"]],[6,8,["H718"]],[8,12,["H1247"]],[12,14,["H606"]],[14,15,["H1934","H858"]],[15,16,["H5974"]],[16,18,["H6050"]],[18,20,["H8065"]],[20,22,["H4291"]],[22,23,["H5705"]],[23,25,["H6268"]],[25,27,["H3118"]],[27,32,["H7127"]],[32,33,["H6925"]],[33,34,[]]]},{"k":21947,"v":[[0,4,["H3052"]],[4,6,["H7985"]],[6,8,["H3367"]],[8,11,["H4437"]],[11,13,["H3606"]],[13,14,["H5972"]],[14,15,["H524"]],[15,17,["H3961"]],[17,19,["H6399"]],[19,22,["H7985"]],[22,25,["H5957"]],[25,26,["H7985"]],[26,27,["H1768"]],[27,29,["H3809"]],[29,31,["H5709"]],[31,34,["H4437"]],[34,36,["H1768"]],[36,38,["H3809"]],[38,40,["H2255"]]]},{"k":21948,"v":[[0,1,["H576"]],[1,2,["H1841"]],[2,4,["H3735"]],[4,7,["H7308"]],[7,10,["H1459"]],[10,13,["H5085"]],[13,16,["H2376"]],[16,19,["H7217"]],[19,20,["H927"]],[20,21,[]]]},{"k":21949,"v":[[0,3,["H7127"]],[3,4,["H5922"]],[4,5,["H2298"]],[5,6,["H4481"]],[6,10,["H6966"]],[10,12,["H1156","H4481"]],[12,15,["H3330"]],[15,16,["H5922"]],[16,17,["H3606"]],[17,18,["H1836"]],[18,21,["H560"]],[21,26,["H3046"]],[26,28,["H6591"]],[28,31,["H4406"]]]},{"k":21950,"v":[[0,1,["H459"]],[1,2,["H7260"]],[2,3,["H2423"]],[3,4,["H1768"]],[4,6,["H703"]],[6,8,["H703"]],[8,9,["H4430"]],[9,12,["H6966"]],[12,14,["H4481"]],[14,16,["H772"]]]},{"k":21951,"v":[[0,3,["H6922"]],[3,7,["H5946"]],[7,9,["H6902"]],[9,11,["H4437"]],[11,13,["H2631"]],[13,15,["H4437"]],[15,17,["H5705","H5957"]],[17,20,["H5705","H5957"]],[20,22,["H5957"]]]},{"k":21952,"v":[[0,1,["H116"]],[1,3,["H6634"]],[3,4,["H3046"]],[4,6,["H3321"]],[6,7,["H5922"]],[7,9,["H7244"]],[9,10,["H2423"]],[10,11,["H1768"]],[11,12,["H1934"]],[12,13,["H8133"]],[13,14,["H4481"]],[14,15,["H3606"]],[15,18,["H3493"]],[18,19,["H1763"]],[19,20,["H1768"]],[20,21,["H8128"]],[21,24,["H6523"]],[24,27,["H2953"]],[27,28,["H2953"]],[28,29,["H5174"]],[29,31,["H399"]],[31,34,["H1855"]],[34,36,["H7512"]],[36,38,["H7606"]],[38,41,["H7271"]]]},{"k":21953,"v":[[0,2,["H5922"]],[2,4,["H6236"]],[4,5,["H7162"]],[5,6,["H1768"]],[6,10,["H7217"]],[10,14,["H317"]],[14,15,["H1768"]],[15,17,["H5559"]],[17,19,["H4481","H6925"]],[19,21,["H8532"]],[21,22,["H5308"]],[22,25,["H1797"]],[25,26,["H7162"]],[26,29,["H5870"]],[29,32,["H6433"]],[32,34,["H4449"]],[34,37,["H7260"]],[37,39,["H2376"]],[39,42,["H7229"]],[42,43,["H4481"]],[43,45,["H2273"]]]},{"k":21954,"v":[[0,2,["H1934","H2370"]],[2,5,["H1797"]],[5,6,["H7162"]],[6,7,["H5648"]],[7,8,["H7129"]],[8,9,["H5974"]],[9,11,["H6922"]],[11,13,["H3202"]],[13,15,[]]]},{"k":21955,"v":[[0,1,["H5705","H1768"]],[1,3,["H6268"]],[3,5,["H3118"]],[5,6,["H858"]],[6,8,["H1780"]],[8,10,["H3052"]],[10,13,["H6922"]],[13,17,["H5946"]],[17,20,["H2166"]],[20,21,["H4291"]],[21,24,["H6922"]],[24,25,["H2631"]],[25,27,["H4437"]]]},{"k":21956,"v":[[0,1,["H3652"]],[1,3,["H560"]],[3,5,["H7244"]],[5,6,["H2423"]],[6,8,["H1934"]],[8,10,["H7244"]],[10,11,["H4437"]],[11,13,["H772"]],[13,14,["H1768"]],[14,17,["H8133"]],[17,18,["H4481"]],[18,19,["H3606"]],[19,20,["H4437"]],[20,23,["H399"]],[23,25,["H3606"]],[25,26,["H772"]],[26,31,["H1759"]],[31,36,["H1855"]]]},{"k":21957,"v":[[0,3,["H6236"]],[3,4,["H7162"]],[4,6,["H4481"]],[6,8,["H4437"]],[8,10,["H6236"]],[10,11,["H4430"]],[11,14,["H6966"]],[14,16,["H321"]],[16,18,["H6966"]],[18,19,["H311"]],[19,22,["H1932"]],[22,25,["H8133"]],[25,26,["H4481"]],[26,28,["H6933"]],[28,32,["H8214"]],[32,33,["H8532"]],[33,34,["H4430"]]]},{"k":21958,"v":[[0,4,["H4449"]],[4,6,["H4406"]],[6,7,["H6655"]],[7,10,["H5943"]],[10,14,["H1080"]],[14,16,["H6922"]],[16,20,["H5946"]],[20,22,["H5452"]],[22,24,["H8133"]],[24,25,["H2166"]],[25,27,["H1882"]],[27,32,["H3052"]],[32,35,["H3028"]],[35,36,["H5705"]],[36,38,["H5732"]],[38,40,["H5732"]],[40,43,["H6387"]],[43,45,["H5732"]]]},{"k":21959,"v":[[0,3,["H1780"]],[3,5,["H3488"]],[5,10,["H5709"]],[10,12,["H7985"]],[12,14,["H8046"]],[14,17,["H7"]],[17,19,["H5705"]],[19,21,["H5491"]]]},{"k":21960,"v":[[0,3,["H4437"]],[3,5,["H7985"]],[5,8,["H7238"]],[8,9,["H1768"]],[9,11,["H4437"]],[11,12,["H8460"]],[12,14,["H3606"]],[14,15,["H8065"]],[15,18,["H3052"]],[18,21,["H5972"]],[21,24,["H6922"]],[24,28,["H5946"]],[28,30,["H4437"]],[30,33,["H5957"]],[33,34,["H4437"]],[34,36,["H3606"]],[36,37,["H7985"]],[37,39,["H6399"]],[39,41,["H8086"]],[41,42,[]]]},{"k":21961,"v":[[0,1,["H5705","H3542"]],[1,4,["H5491"]],[4,5,["H1768"]],[5,7,["H4406"]],[7,10,["H576"]],[10,11,["H1841"]],[11,13,["H7476"]],[13,14,["H7690"]],[14,15,["H927"]],[15,19,["H2122"]],[19,20,["H8133"]],[20,21,["H5922"]],[21,25,["H5202"]],[25,27,["H4406"]],[27,30,["H3821"]]]},{"k":21962,"v":[[0,3,["H7969"]],[3,4,["H8141"]],[4,7,["H4438"]],[7,9,["H4428"]],[9,10,["H1112"]],[10,12,["H2377"]],[12,13,["H7200"]],[13,14,["H413"]],[14,18,["H589"]],[18,19,["H1840"]],[19,21,["H310"]],[21,23,["H7200"]],[23,24,["H413"]],[24,28,["H8462"]]]},{"k":21963,"v":[[0,3,["H7200"]],[3,6,["H2377"]],[6,11,["H1961"]],[11,14,["H7200"]],[14,16,["H589"]],[16,19,["H7800"]],[19,22,["H1002"]],[22,23,["H834"]],[23,27,["H4082"]],[27,29,["H5867"]],[29,32,["H7200"]],[32,35,["H2377"]],[35,37,["H589"]],[37,38,["H1961"]],[38,39,["H5921"]],[39,41,["H180"]],[41,43,["H195"]]]},{"k":21964,"v":[[0,4,["H5375"]],[4,6,["H5869"]],[6,8,["H7200"]],[8,10,["H2009"]],[10,12,["H5975"]],[12,13,["H6440"]],[13,15,["H180"]],[15,16,["H259"]],[16,17,["H352"]],[17,21,["H7161"]],[21,25,["H7161"]],[25,27,["H1364"]],[27,29,["H259"]],[29,31,["H1364"]],[31,32,["H4480"]],[32,34,["H8145"]],[34,37,["H1364"]],[37,39,["H5927"]],[39,40,["H314"]]]},{"k":21965,"v":[[0,2,["H7200","(H853)"]],[2,4,["H352"]],[4,5,["H5055"]],[5,6,["H3220"]],[6,8,["H6828"]],[8,10,["H5045"]],[10,13,["H3808","H3605"]],[13,14,["H2416"]],[14,16,["H5975"]],[16,17,["H6440"]],[17,19,["H369"]],[19,25,["H5337"]],[25,29,["H4480","H3027"]],[29,32,["H6213"]],[32,36,["H7522"]],[36,39,["H1431"]]]},{"k":21966,"v":[[0,3,["H589"]],[3,4,["H1961"]],[4,5,["H995"]],[5,6,["H2009"]],[6,9,["H6842","H5795"]],[9,10,["H935"]],[10,11,["H4480"]],[11,13,["H4628"]],[13,14,["H5921"]],[14,16,["H6440"]],[16,19,["H3605"]],[19,20,["H776"]],[20,22,["H5060"]],[22,23,["H369"]],[23,25,["H776"]],[25,28,["H6842"]],[28,31,["H2380"]],[31,32,["H7161"]],[32,33,["H996"]],[33,35,["H5869"]]]},{"k":21967,"v":[[0,3,["H935"]],[3,4,["H5704"]],[4,6,["H352"]],[6,8,["H1167"]],[8,10,["H7161"]],[10,11,["H834"]],[11,14,["H7200"]],[14,15,["H5975"]],[15,16,["H6440"]],[16,18,["H180"]],[18,20,["H7323"]],[20,21,["H413"]],[21,25,["H2534"]],[25,28,["H3581"]]]},{"k":21968,"v":[[0,3,["H7200"]],[3,6,["H5060"]],[6,7,["H681"]],[7,9,["H352"]],[9,15,["H4843"]],[15,16,["H413"]],[16,19,["H5221","(H853)"]],[19,21,["H352"]],[21,23,["H7665","(H853)"]],[23,25,["H8147"]],[25,26,["H7161"]],[26,29,["H1961"]],[29,30,["H3808"]],[30,31,["H3581"]],[31,34,["H352"]],[34,36,["H5975"]],[36,37,["H6440"]],[37,43,["H7993"]],[43,46,["H776"]],[46,49,["H7429"]],[49,53,["H1961"]],[53,54,["H3808"]],[54,57,["H5337"]],[57,59,["H352"]],[59,63,["H4480","H3027"]]]},{"k":21969,"v":[[0,4,["H6842","H5795"]],[4,7,["H1431","H5704","H3966"]],[7,12,["H6105"]],[12,14,["H1419"]],[14,15,["H7161"]],[15,17,["H7665"]],[17,19,["H8478"]],[19,22,["H5927"]],[22,23,["H702"]],[23,25,["H2380"]],[25,28,["H702"]],[28,29,["H7307"]],[29,31,["H8064"]]]},{"k":21970,"v":[[0,3,["H4480"]],[3,4,["H259"]],[4,5,["H4480"]],[5,8,["H3318"]],[8,9,["H259"]],[9,10,["H4480","H4704"]],[10,11,["H7161"]],[11,15,["H1431","H3499"]],[15,16,["H413"]],[16,18,["H5045"]],[18,20,["H413"]],[20,22,["H4217"]],[22,24,["H413"]],[24,26,["H6643"]],[26,27,[]]]},{"k":21971,"v":[[0,4,["H1431"]],[4,6,["H5704"]],[6,8,["H6635"]],[8,10,["H8064"]],[10,14,["H5307"]],[14,16,["H4480"]],[16,18,["H6635"]],[18,20,["H4480"]],[20,22,["H3556"]],[22,25,["H776"]],[25,28,["H7429"]],[28,29,[]]]},{"k":21972,"v":[[0,3,["H1431"]],[3,6,["H5704"]],[6,8,["H8269"]],[8,11,["H6635"]],[11,13,["H4480"]],[13,16,["H8548"]],[16,20,["H7311"]],[20,23,["H4349"]],[23,26,["H4720"]],[26,29,["H7993"]]]},{"k":21973,"v":[[0,3,["H6635"]],[3,5,["H5414"]],[5,7,["H5921"]],[7,9,["H8548"]],[9,14,["H6588"]],[14,18,["H7993"]],[18,20,["H571"]],[20,23,["H776"]],[23,26,["H6213"]],[26,28,["H6743"]]]},{"k":21974,"v":[[0,3,["H8085"]],[3,4,["H259"]],[4,5,["H6918"]],[5,6,["H1696"]],[6,8,["H259"]],[8,9,["H6918"]],[9,10,["H559"]],[10,13,["H6422"]],[13,16,["H1696"]],[16,18,["H5704","H4970"]],[18,22,["H2377"]],[22,25,["H8548"]],[25,29,["H6588"]],[29,31,["H8074"]],[31,33,["H5414"]],[33,36,["H6944"]],[36,39,["H6635"]],[39,44,["H4823"]]]},{"k":21975,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H5704"]],[6,8,["H505"]],[8,10,["H7969"]],[10,11,["H3967"]],[11,12,["H6153","H1242"]],[12,16,["H6944"]],[16,18,["H6663"]]]},{"k":21976,"v":[[0,5,["H1961"]],[5,9,["H589"]],[9,10,["H1840"]],[10,12,["H7200","(H853)"]],[12,14,["H2377"]],[14,16,["H1245"]],[16,19,["H998"]],[19,21,["H2009"]],[21,23,["H5975"]],[23,24,["H5048"]],[24,28,["H4758"]],[28,31,["H1397"]]]},{"k":21977,"v":[[0,3,["H8085"]],[3,5,["H120"]],[5,6,["H6963"]],[6,7,["H996"]],[7,11,["H195"]],[11,13,["H7121"]],[13,15,["H559"]],[15,16,["H1403"]],[16,18,["H1975"]],[18,21,["H995","(H853)"]],[21,23,["H4758"]]]},{"k":21978,"v":[[0,3,["H935"]],[3,4,["H681"]],[4,7,["H5977"]],[7,11,["H935"]],[11,14,["H1204"]],[14,16,["H5307"]],[16,17,["H5921"]],[17,19,["H6440"]],[19,22,["H559"]],[22,23,["H413"]],[23,25,["H995"]],[25,27,["H1121"]],[27,29,["H120"]],[29,30,["H3588"]],[30,33,["H6256"]],[33,36,["H7093"]],[36,40,["H2377"]]]},{"k":21979,"v":[[0,5,["H1696"]],[5,6,["H5973"]],[6,13,["H7290"]],[13,14,["H5921"]],[14,16,["H6440"]],[16,19,["H776"]],[19,22,["H5060"]],[22,25,["H5975"]],[25,27,["H5921","H5977"]]]},{"k":21980,"v":[[0,3,["H559"]],[3,4,["H2009"]],[4,9,["H3045","(H853)"]],[9,10,["H834"]],[10,12,["H1961"]],[12,16,["H319"]],[16,19,["H2195"]],[19,20,["H3588"]],[20,24,["H4150"]],[24,26,["H7093"]],[26,28,[]]]},{"k":21981,"v":[[0,2,["H352"]],[2,3,["H834"]],[3,5,["H7200"]],[5,6,["H1167"]],[6,8,["H7161"]],[8,11,["H4428"]],[11,13,["H4074"]],[13,15,["H6539"]]]},{"k":21982,"v":[[0,3,["H8163"]],[3,4,["H6842"]],[4,7,["H4428"]],[7,9,["H3120"]],[9,12,["H1419"]],[12,13,["H7161"]],[13,14,["H834"]],[14,16,["H996"]],[16,18,["H5869"]],[18,21,["H7223"]],[21,22,["H4428"]]]},{"k":21983,"v":[[0,4,["H7665"]],[4,6,["H702"]],[6,8,["H5975"]],[8,9,["H8478"]],[9,11,["H702"]],[11,12,["H4438"]],[12,15,["H5975"]],[15,19,["H4480","H1471"]],[19,21,["H3808"]],[21,24,["H3581"]]]},{"k":21984,"v":[[0,5,["H319"]],[5,8,["H4438"]],[8,11,["H6586"]],[11,16,["H8552"]],[16,18,["H4428"]],[18,20,["H5794"]],[20,21,["H6440"]],[21,23,["H995"]],[23,25,["H2420"]],[25,28,["H5975"]]]},{"k":21985,"v":[[0,3,["H3581"]],[3,6,["H6105"]],[6,8,["H3808"]],[8,12,["H3581"]],[12,16,["H7843"]],[16,17,["H6381"]],[17,20,["H6743"]],[20,22,["H6213"]],[22,25,["H7843"]],[25,27,["H6099"]],[27,30,["H6918"]],[30,31,["H5971"]]]},{"k":21986,"v":[[0,2,["H5921"]],[2,4,["H7922"]],[4,9,["H4820"]],[9,11,["H6743"]],[11,14,["H3027"]],[14,18,["H1431"]],[18,22,["H3824"]],[22,25,["H7962"]],[25,27,["H7843"]],[27,28,["H7227"]],[28,33,["H5975"]],[33,34,["H5921"]],[34,36,["H8269"]],[36,38,["H8269"]],[38,43,["H7665"]],[43,44,["H657"]],[44,45,["H3027"]]]},{"k":21987,"v":[[0,3,["H4758"]],[3,6,["H6153"]],[6,9,["H1242"]],[9,10,["H834"]],[10,12,["H559"]],[12,14,["H571"]],[14,18,["H859","H5640"]],[18,20,["H2377"]],[20,21,["H3588"]],[21,26,["H7227"]],[26,27,["H3117"]]]},{"k":21988,"v":[[0,2,["H589"]],[2,3,["H1840"]],[3,4,["H1961"]],[4,7,["H2470"]],[7,9,["H3117"]],[9,13,["H6965"]],[13,15,["H6213","(H853)"]],[15,17,["H4428"]],[17,18,["H4399"]],[18,22,["H8074"]],[22,23,["H5921"]],[23,25,["H4758"]],[25,27,["H369"]],[27,28,["H995"]],[28,29,[]]]},{"k":21989,"v":[[0,3,["H259"]],[3,4,["H8141"]],[4,6,["H1867"]],[6,8,["H1121"]],[8,10,["H325"]],[10,13,["H4480","H2233"]],[13,16,["H4074"]],[16,17,["H834"]],[17,20,["H4427"]],[20,21,["H5921"]],[21,23,["H4438"]],[23,26,["H3778"]]]},{"k":21990,"v":[[0,3,["H259"]],[3,4,["H8141"]],[4,7,["H4427"]],[7,8,["H589"]],[8,9,["H1840"]],[9,10,["H995"]],[10,12,["H5612"]],[12,14,["H4557"]],[14,17,["H8141"]],[17,18,["H834"]],[18,20,["H1697"]],[20,23,["H3068"]],[23,24,["H1961"]],[24,25,["H413"]],[25,26,["H3414"]],[26,28,["H5030"]],[28,32,["H4390"]],[32,33,["H7657"]],[33,34,["H8141"]],[34,37,["H2723"]],[37,39,["H3389"]]]},{"k":21991,"v":[[0,3,["H5414","(H853)"]],[3,5,["H6440"]],[5,6,["H413"]],[6,8,["H136"]],[8,9,["H430"]],[9,11,["H1245"]],[11,13,["H8605"]],[13,15,["H8469"]],[15,17,["H6685"]],[17,19,["H8242"]],[19,21,["H665"]]]},{"k":21992,"v":[[0,3,["H6419"]],[3,6,["H3068"]],[6,8,["H430"]],[8,12,["H3034"]],[12,14,["H559"]],[14,15,["H577"]],[15,16,["H136"]],[16,18,["H1419"]],[18,20,["H3372"]],[20,21,["H410"]],[21,22,["H8104"]],[22,24,["H1285"]],[24,26,["H2617"]],[26,30,["H157"]],[30,36,["H8104"]],[36,38,["H4687"]]]},{"k":21993,"v":[[0,3,["H2398"]],[3,7,["H5753"]],[7,11,["H7561"]],[11,14,["H4775"]],[14,17,["H5493"]],[17,20,["H4480","H4687"]],[20,24,["H4480","H4941"]]]},{"k":21994,"v":[[0,1,["H3808"]],[1,4,["H8085"]],[4,5,["H413"]],[5,7,["H5650"]],[7,9,["H5030"]],[9,10,["H834"]],[10,11,["H1696"]],[11,14,["H8034"]],[14,15,["H413"]],[15,17,["H4428"]],[17,19,["H8269"]],[19,22,["H1"]],[22,24,["H413"]],[24,25,["H3605"]],[25,27,["H5971"]],[27,30,["H776"]]]},{"k":21995,"v":[[0,2,["H136"]],[2,3,["H6666"]],[3,10,["H1322"]],[10,12,["H6440"]],[12,15,["H2088"]],[15,16,["H3117"]],[16,19,["H376"]],[19,21,["H3063"]],[21,25,["H3427"]],[25,27,["H3389"]],[27,30,["H3605"]],[30,31,["H3478"]],[31,34,["H7138"]],[34,39,["H7350"]],[39,41,["H3605"]],[41,43,["H776"]],[43,44,["H834","H8033"]],[44,47,["H5080"]],[47,52,["H4604"]],[52,53,["H834"]],[53,56,["H4603"]],[56,58,[]]]},{"k":21996,"v":[[0,2,["H3068"]],[2,6,["H1322"]],[6,8,["H6440"]],[8,11,["H4428"]],[11,14,["H8269"]],[14,18,["H1"]],[18,19,["H834"]],[19,22,["H2398"]],[22,24,[]]]},{"k":21997,"v":[[0,3,["H136"]],[3,5,["H430"]],[5,7,["H7356"]],[7,9,["H5547"]],[9,10,["H3588"]],[10,13,["H4775"]],[13,15,[]]]},{"k":21998,"v":[[0,1,["H3808"]],[1,4,["H8085"]],[4,6,["H6963"]],[6,9,["H3068"]],[9,11,["H430"]],[11,13,["H1980"]],[13,16,["H8451"]],[16,17,["H834"]],[17,19,["H5414"]],[19,20,["H6440"]],[20,22,["H3027"]],[22,24,["H5650"]],[24,26,["H5030"]]]},{"k":21999,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,5,["H5674","(H853)"]],[5,7,["H8451"]],[7,10,["H5493"]],[10,14,["H1115"]],[14,15,["H8085"]],[15,17,["H6963"]],[17,20,["H423"]],[20,22,["H5413"]],[22,23,["H5921"]],[23,27,["H7621"]],[27,28,["H834"]],[28,30,["H3789"]],[30,33,["H8451"]],[33,35,["H4872"]],[35,37,["H5650"]],[37,39,["H430"]],[39,40,["H3588"]],[40,43,["H2398"]],[43,45,[]]]},{"k":22000,"v":[[0,4,["H6965","(H853)"]],[4,6,["H1697"]],[6,7,["H834"]],[7,9,["H1696"]],[9,10,["H5921"]],[10,13,["H5921"]],[13,15,["H8199"]],[15,16,["H834"]],[16,17,["H8199"]],[17,20,["H935"]],[20,21,["H5921"]],[21,24,["H1419"]],[24,25,["H7451"]],[25,26,["H834"]],[26,27,["H8478"]],[27,29,["H3605"]],[29,30,["H8064"]],[30,32,["H3808"]],[32,34,["H6213"]],[34,35,["H834"]],[35,38,["H6213"]],[38,40,["H3389"]]]},{"k":22001,"v":[[0,1,["H834"]],[1,4,["H3789"]],[4,7,["H8451"]],[7,9,["H4872","(H853)"]],[9,10,["H3605"]],[10,11,["H2063"]],[11,12,["H7451"]],[12,14,["H935"]],[14,15,["H5921"]],[15,22,["H2470","H3808","(H853)"]],[22,23,["H6440"]],[23,25,["H3068"]],[25,27,["H430"]],[27,31,["H7725"]],[31,34,["H4480","H5771"]],[34,36,["H7919"]],[36,38,["H571"]]]},{"k":22002,"v":[[0,4,["H3068"]],[4,5,["H8245"]],[5,6,["H5921"]],[6,8,["H7451"]],[8,10,["H935"]],[10,12,["H5921"]],[12,14,["H3588"]],[14,16,["H3068"]],[16,18,["H430"]],[18,20,["H6662"]],[20,21,["H5921"]],[21,22,["H3605"]],[22,24,["H4639"]],[24,25,["H834"]],[25,27,["H6213"]],[27,30,["H8085"]],[30,31,["H3808"]],[31,33,["H6963"]]]},{"k":22003,"v":[[0,2,["H6258"]],[2,4,["H136"]],[4,6,["H430"]],[6,7,["H834"]],[7,12,["H3318","(H853)","H5971"]],[12,16,["H4480","H776"]],[16,18,["H4714"]],[18,21,["H2389"]],[21,22,["H3027"]],[22,25,["H6213"]],[25,27,["H8034"]],[27,30,["H2088"]],[30,31,["H3117"]],[31,34,["H2398"]],[34,38,["H7561"]]]},{"k":22004,"v":[[0,2,["H136"]],[2,5,["H3605"]],[5,7,["H6666"]],[7,10,["H4994"]],[10,13,["H639"]],[13,16,["H2534"]],[16,19,["H7725"]],[19,22,["H4480","H5892"]],[22,23,["H3389"]],[23,25,["H6944"]],[25,26,["H2022"]],[26,27,["H3588"]],[27,30,["H2399"]],[30,34,["H5771"]],[34,37,["H1"]],[37,38,["H3389"]],[38,41,["H5971"]],[41,45,["H2781"]],[45,47,["H3605"]],[47,50,["H5439"]],[50,51,[]]]},{"k":22005,"v":[[0,1,["H6258"]],[1,5,["H430"]],[5,6,["H8085","H413"]],[6,8,["H8605"]],[8,11,["H5650"]],[11,14,["H8469"]],[14,18,["H6440"]],[18,20,["H215"]],[20,21,["H5921"]],[21,23,["H4720"]],[23,26,["H8076"]],[26,30,["H4616","H136"]]]},{"k":22006,"v":[[0,3,["H430"]],[3,4,["H5186"]],[4,6,["H241"]],[6,8,["H8085"]],[8,9,["H6491"]],[9,11,["H5869"]],[11,13,["H7200"]],[13,15,["H8074"]],[15,18,["H5892"]],[18,19,["H834"]],[19,21,["H7121"]],[21,22,["H5921"]],[22,24,["H8034"]],[24,25,["H3588"]],[25,26,["H587"]],[26,28,["H3808"]],[28,29,["H5307"]],[29,31,["H8469"]],[31,32,["H6440"]],[32,34,["H5921"]],[34,36,["H6666"]],[36,37,["H3588"]],[37,38,["H5921"]],[38,40,["H7227"]],[40,41,["H7356"]]]},{"k":22007,"v":[[0,2,["H136"]],[2,3,["H8085"]],[3,5,["H136"]],[5,6,["H5545"]],[6,8,["H136"]],[8,9,["H7181"]],[9,11,["H6213"]],[11,12,["H309"]],[12,13,["H408"]],[13,17,["H4616"]],[17,20,["H430"]],[20,21,["H3588"]],[21,23,["H5892"]],[23,26,["H5971"]],[26,28,["H7121"]],[28,31,["H8034"]]]},{"k":22008,"v":[[0,2,["H5750"]],[2,3,["H589"]],[3,5,["H1696"]],[5,7,["H6419"]],[7,9,["H3034"]],[9,11,["H2403"]],[11,14,["H2403"]],[14,17,["H5971"]],[17,18,["H3478"]],[18,20,["H5307"]],[20,22,["H8467"]],[22,23,["H6440"]],[23,25,["H3068"]],[25,27,["H430"]],[27,28,["H5921"]],[28,30,["H6944"]],[30,31,["H2022"]],[31,34,["H430"]]]},{"k":22009,"v":[[0,2,["H5750"]],[2,3,["H589"]],[3,5,["H1696"]],[5,7,["H8605"]],[7,10,["H376"]],[10,11,["H1403"]],[11,12,["H834"]],[12,15,["H7200"]],[15,18,["H2377"]],[18,21,["H8462"]],[21,25,["H3286"]],[25,26,["H3288"]],[26,27,["H5060","H413"]],[27,31,["H6256"]],[31,34,["H6153"]],[34,35,["H4503"]]]},{"k":22010,"v":[[0,3,["H995"]],[3,6,["H1696"]],[6,7,["H5973"]],[7,10,["H559"]],[10,12,["H1840"]],[12,15,["H6258"]],[15,17,["H3318"]],[17,21,["H7919"]],[21,23,["H998"]]]},{"k":22011,"v":[[0,3,["H8462"]],[3,6,["H8469"]],[6,8,["H1697"]],[8,10,["H3318"]],[10,12,["H589"]],[12,14,["H935"]],[14,16,["H5046"]],[16,18,["H3588"]],[18,19,["H859"]],[19,22,["H2530"]],[22,24,["H995"]],[24,26,["H1697"]],[26,28,["H995"]],[28,30,["H4758"]]]},{"k":22012,"v":[[0,1,["H7657"]],[1,2,["H7620"]],[2,4,["H2852"]],[4,5,["H5921"]],[5,7,["H5971"]],[7,9,["H5921"]],[9,11,["H6944"]],[11,12,["H5892"]],[12,14,["H3607"]],[14,16,["H6588"]],[16,21,["H2856"]],[21,23,["H2403"]],[23,27,["H3722"]],[27,29,["H5771"]],[29,33,["H935"]],[33,34,["H5769"]],[34,35,["H6664"]],[35,39,["H2856"]],[39,41,["H2377"]],[41,43,["H5030"]],[43,46,["H4886"]],[46,49,["H6944","H6944"]]]},{"k":22013,"v":[[0,1,["H3045"]],[1,4,["H7919"]],[4,6,["H4480"]],[6,9,["H4161"]],[9,12,["H1697"]],[12,14,["H7725"]],[14,17,["H1129"]],[17,18,["H3389"]],[18,19,["H5704"]],[19,21,["H4899"]],[21,23,["H5057"]],[23,26,["H7651"]],[26,27,["H7620"]],[27,29,["H8346"]],[29,31,["H8147"]],[31,32,["H7620"]],[32,34,["H7339"]],[34,37,["H1129"]],[37,38,["H7725"]],[38,41,["H2742"]],[41,44,["H6695"]],[44,45,["H6256"]]]},{"k":22014,"v":[[0,2,["H310"]],[2,3,["H8346"]],[3,5,["H8147"]],[5,6,["H7620"]],[6,8,["H4899"]],[8,11,["H3772"]],[11,13,["H369"]],[13,18,["H5971"]],[18,21,["H5057"]],[21,24,["H935"]],[24,26,["H7843"]],[26,28,["H5892"]],[28,31,["H6944"]],[31,34,["H7093"]],[34,40,["H7858"]],[40,42,["H5704"]],[42,44,["H7093"]],[44,47,["H4421"]],[47,48,["H8074"]],[48,50,["H2782"]]]},{"k":22015,"v":[[0,4,["H1396"]],[4,6,["H1285"]],[6,8,["H7227"]],[8,10,["H259"]],[10,11,["H7620"]],[11,15,["H2677"]],[15,18,["H7620"]],[18,23,["H2077"]],[23,26,["H4503"]],[26,28,["H7673"]],[28,30,["H5921"]],[30,32,["H3671"]],[32,34,["H8251"]],[34,39,["H8074"]],[39,41,["H5704"]],[41,43,["H3617"]],[43,46,["H2782"]],[46,49,["H5413"]],[49,50,["H5921"]],[50,52,["H8076"]]]},{"k":22016,"v":[[0,3,["H7969"]],[3,4,["H8141"]],[4,6,["H3566"]],[6,7,["H4428"]],[7,9,["H6539"]],[9,11,["H1697"]],[11,13,["H1540"]],[13,15,["H1840"]],[15,16,["H834"]],[16,17,["H8034"]],[17,19,["H7121"]],[19,20,["H1095"]],[20,23,["H1697"]],[23,25,["H571"]],[25,29,["H6635"]],[29,31,["H1419"]],[31,34,["H995","(H853)"]],[34,36,["H1697"]],[36,39,["H998"]],[39,42,["H4758"]]]},{"k":22017,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,4,["H589"]],[4,5,["H1840"]],[5,6,["H1961"]],[6,7,["H56"]],[7,8,["H7969"]],[8,9,["H3117"]],[9,10,["H7620"]]]},{"k":22018,"v":[[0,2,["H398"]],[2,3,["H3808"]],[3,4,["H2530"]],[4,5,["H3899"]],[5,6,["H3808"]],[6,7,["H935"]],[7,8,["H1320"]],[8,10,["H3196"]],[10,11,["H413"]],[11,13,["H6310"]],[13,14,["H3808"]],[14,20,["H5480","H5480"]],[20,21,["H5704"]],[21,22,["H7969"]],[22,23,["H3117"]],[23,24,["H7620"]],[24,26,["H4390"]]]},{"k":22019,"v":[[0,4,["H702"]],[4,6,["H6242"]],[6,7,["H3117"]],[7,10,["H7223"]],[10,11,["H2320"]],[11,13,["H589"]],[13,14,["H1961"]],[14,15,["H5921"]],[15,17,["H3027"]],[17,20,["H1419"]],[20,21,["H5104"]],[21,22,["H1931"]],[22,24,["H2313"]]]},{"k":22020,"v":[[0,4,["H5375","(H853)"]],[4,6,["H5869"]],[6,8,["H7200"]],[8,10,["H2009"]],[10,12,["H259"]],[12,13,["H376"]],[13,14,["H3847"]],[14,16,["H906"]],[16,18,["H4975"]],[18,20,["H2296"]],[20,23,["H3800"]],[23,25,["H210"]]]},{"k":22021,"v":[[0,2,["H1472"]],[2,7,["H8658"]],[7,10,["H6440"]],[10,13,["H4758"]],[13,15,["H1300"]],[15,18,["H5869"]],[18,20,["H3940"]],[20,22,["H784"]],[22,25,["H2220"]],[25,28,["H4772"]],[28,31,["H5869"]],[31,33,["H7044"]],[33,34,["H5178"]],[34,37,["H6963"]],[37,40,["H1697"]],[40,43,["H6963"]],[43,46,["H1995"]]]},{"k":22022,"v":[[0,2,["H589"]],[2,3,["H1840"]],[3,4,["H905"]],[4,5,["H7200","(H853)"]],[5,7,["H4759"]],[7,10,["H376"]],[10,11,["H834"]],[11,12,["H1961"]],[12,13,["H5973"]],[13,15,["H7200"]],[15,16,["H3808","(H853)"]],[16,18,["H4759"]],[18,19,["H61"]],[19,21,["H1419"]],[21,22,["H2731"]],[22,23,["H5307"]],[23,24,["H5921"]],[24,29,["H1272"]],[29,32,["H2244"]]]},{"k":22023,"v":[[0,2,["H589"]],[2,4,["H7604"]],[4,5,["H905"]],[5,7,["H7200","(H853)"]],[7,8,["H2063"]],[8,9,["H1419"]],[9,10,["H4759"]],[10,13,["H7604"]],[13,14,["H3808"]],[14,15,["H3581"]],[15,20,["H1935"]],[20,22,["H2015"]],[22,23,["H5921"]],[23,26,["H4889"]],[26,29,["H6113"]],[29,30,["H3808"]],[30,31,["H3581"]]]},{"k":22024,"v":[[0,2,["H8085"]],[2,3,["(H853)"]],[3,5,["H6963"]],[5,8,["H1697"]],[8,12,["H8085","(H853)"]],[12,14,["H6963"]],[14,17,["H1697"]],[17,19,["H1961"]],[19,20,["H589"]],[20,24,["H7290"]],[24,25,["H5921"]],[25,27,["H6440"]],[27,30,["H6440"]],[30,33,["H776"]]]},{"k":22025,"v":[[0,2,["H2009"]],[2,4,["H3027"]],[4,5,["H5060"]],[5,8,["H5128"]],[8,10,["H5921"]],[10,12,["H1290"]],[12,16,["H3709"]],[16,19,["H3027"]]]},{"k":22026,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H1840"]],[7,9,["H376"]],[9,11,["H2530"]],[11,12,["H995"]],[12,14,["H1697"]],[14,15,["H834"]],[15,16,["H595"]],[16,17,["H1696"]],[17,18,["H413"]],[18,21,["H5975"]],[21,22,["H5921","H5977"]],[22,23,["H3588"]],[23,24,["H413"]],[24,28,["H6258"]],[28,29,["H7971"]],[29,34,["H1696","(H853)"]],[34,35,["H2088"]],[35,36,["H1697"]],[36,37,["H5973"]],[37,40,["H5975"]],[40,41,["H7460"]]]},{"k":22027,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H3372"]],[6,7,["H408"]],[7,8,["H1840"]],[8,9,["H3588"]],[9,10,["H4480"]],[10,12,["H7223"]],[12,13,["H3117"]],[13,14,["H834"]],[14,17,["H5414","(H853)"]],[17,19,["H3820"]],[19,21,["H995"]],[21,25,["H6031"]],[25,26,["H6440"]],[26,28,["H430"]],[28,30,["H1697"]],[30,32,["H8085"]],[32,34,["H589"]],[34,36,["H935"]],[36,39,["H1697"]]]},{"k":22028,"v":[[0,3,["H8269"]],[3,6,["H4438"]],[6,8,["H6539"]],[8,9,["H5975","H5048"]],[9,11,["H259"]],[11,13,["H6242"]],[13,14,["H3117"]],[14,16,["H2009"]],[16,17,["H4317"]],[17,18,["H259"]],[18,21,["H7223"]],[21,22,["H8269"]],[22,23,["H935"]],[23,25,["H5826"]],[25,28,["H589"]],[28,29,["H3498"]],[29,30,["H8033"]],[30,31,["H681"]],[31,33,["H4428"]],[33,35,["H6539"]]]},{"k":22029,"v":[[0,4,["H935"]],[4,8,["H995","(H853)"]],[8,9,["H834"]],[9,11,["H7136"]],[11,13,["H5971"]],[13,16,["H319"]],[16,17,["H3117"]],[17,18,["H3588"]],[18,19,["H5750"]],[19,21,["H2377"]],[21,25,["H3117"]]]},{"k":22030,"v":[[0,5,["H1696"]],[5,6,["H428"]],[6,7,["H1697"]],[7,8,["H5973"]],[8,11,["H5414"]],[11,13,["H6440"]],[13,16,["H776"]],[16,20,["H481"]]]},{"k":22031,"v":[[0,2,["H2009"]],[2,6,["H1823"]],[6,9,["H1121"]],[9,11,["H120"]],[11,12,["H5060","H5921"]],[12,14,["H8193"]],[14,17,["H6605"]],[17,19,["H6310"]],[19,21,["H1696"]],[21,23,["H559"]],[23,24,["H413"]],[24,27,["H5975"]],[27,28,["H5048"]],[28,32,["H113"]],[32,35,["H4758"]],[35,37,["H6735"]],[37,39,["H2015"]],[39,40,["H5921"]],[40,45,["H6113"]],[45,46,["H3808"]],[46,47,["H3581"]]]},{"k":22032,"v":[[0,2,["H1963"]],[2,3,["H3201"]],[3,5,["H5650"]],[5,7,["H2088"]],[7,9,["H113"]],[9,10,["H1696"]],[10,11,["H5973"]],[11,12,["H2088"]],[12,14,["H113"]],[14,18,["H589"]],[18,19,["H4480","H6258"]],[19,21,["H5975"]],[21,22,["H3808"]],[22,23,["H3581"]],[23,26,["H3808"]],[26,29,["H5397"]],[29,30,["H7604"]],[30,32,[]]]},{"k":22033,"v":[[0,4,["H3254"]],[4,6,["H5060"]],[6,11,["H4758"]],[11,14,["H120"]],[14,17,["H2388"]],[17,18,[]]]},{"k":22034,"v":[[0,2,["H559"]],[2,4,["H376"]],[4,6,["H2530"]],[6,7,["H3372"]],[7,8,["H408"]],[8,9,["H7965"]],[9,14,["H2388"]],[14,17,["H2388"]],[17,22,["H1696"]],[22,23,["H5973"]],[23,27,["H2388"]],[27,29,["H559"]],[29,32,["H113"]],[32,33,["H1696"]],[33,34,["H3588"]],[34,37,["H2388"]],[37,38,[]]]},{"k":22035,"v":[[0,2,["H559"]],[2,4,["H3045"]],[4,6,["H4100"]],[6,8,["H935"]],[8,9,["H413"]],[9,12,["H6258"]],[12,15,["H7725"]],[15,17,["H3898"]],[17,18,["H5973"]],[18,20,["H8269"]],[20,22,["H6539"]],[22,25,["H589"]],[25,28,["H3318"]],[28,29,["H2009"]],[29,31,["H8269"]],[31,33,["H3120"]],[33,35,["H935"]]]},{"k":22036,"v":[[0,1,["H61"]],[1,4,["H5046"]],[4,5,["(H853)"]],[5,9,["H7559"]],[9,12,["H3791"]],[12,14,["H571"]],[14,18,["H369","H259"]],[18,20,["H2388"]],[20,21,["H5973"]],[21,23,["H5921"]],[23,25,["H428"]],[25,26,["H3588","H518"]],[26,27,["H4317"]],[27,29,["H8269"]]]},{"k":22037,"v":[[0,2,["H589"]],[2,5,["H259"]],[5,6,["H8141"]],[6,8,["H1867"]],[8,10,["H4075"]],[10,13,["H5975"]],[13,15,["H2388"]],[15,18,["H4581"]],[18,19,[]]]},{"k":22038,"v":[[0,2,["H6258"]],[2,5,["H5046"]],[5,8,["H571"]],[8,9,["H2009"]],[9,13,["H5975"]],[13,14,["H5750"]],[14,15,["H7969"]],[15,16,["H4428"]],[16,18,["H6539"]],[18,21,["H7243"]],[21,25,["H6238","H1419","H6239"]],[25,28,["H4480","H3605"]],[28,32,["H2393"]],[32,35,["H6239"]],[35,39,["H5782"]],[39,40,["H3605"]],[40,41,["H854"]],[41,43,["H4438"]],[43,45,["H3120"]]]},{"k":22039,"v":[[0,3,["H1368"]],[3,4,["H4428"]],[4,7,["H5975"]],[7,10,["H4910"]],[10,12,["H7227"]],[12,13,["H4474"]],[13,15,["H6213"]],[15,19,["H7522"]]]},{"k":22040,"v":[[0,6,["H5975"]],[6,8,["H4438"]],[8,11,["H7665"]],[11,15,["H2673"]],[15,18,["H702"]],[18,19,["H7307"]],[19,21,["H8064"]],[21,23,["H3808"]],[23,26,["H319"]],[26,27,["H3808"]],[27,31,["H4915"]],[31,32,["H834"]],[32,34,["H4910"]],[34,35,["H3588"]],[35,37,["H4438"]],[37,41,["H5428"]],[41,44,["H312"]],[44,45,["H4480","H905"]],[45,46,["H428"]]]},{"k":22041,"v":[[0,3,["H4428"]],[3,6,["H5045"]],[6,9,["H2388"]],[9,12,["H4480"]],[12,14,["H8269"]],[14,19,["H2388"]],[19,20,["H5921"]],[20,24,["H4910"]],[24,26,["H4474"]],[26,30,["H7227"]],[30,31,["H4474"]]]},{"k":22042,"v":[[0,4,["H7093"]],[4,6,["H8141"]],[6,11,["H2266"]],[11,14,["H4428"]],[14,15,["H1323"]],[15,18,["H5045"]],[18,20,["H935"]],[20,21,["H413"]],[21,23,["H4428"]],[23,26,["H6828"]],[26,28,["H6213"]],[28,30,["H4339"]],[30,34,["H3808"]],[34,35,["H6113"]],[35,37,["H3581"]],[37,40,["H2220"]],[40,41,["H3808"]],[41,44,["H5975"]],[44,47,["H2220"]],[47,49,["H1931"]],[49,53,["H5414"]],[53,57,["H935"]],[57,62,["H3205"]],[62,67,["H2388"]],[67,71,["H6256"]]]},{"k":22043,"v":[[0,5,["H4480","H5342"]],[5,8,["H8328"]],[8,12,["H5975"]],[12,15,["H3653"]],[15,18,["H935"]],[18,19,["H413"]],[19,21,["H2428"]],[21,24,["H935"]],[24,27,["H4581"]],[27,30,["H4428"]],[30,33,["H6828"]],[33,36,["H6213"]],[36,41,["H2388"]]]},{"k":22044,"v":[[0,3,["H1571"]],[3,4,["H935"]],[4,5,["H7628"]],[5,7,["H4714"]],[7,9,["H430"]],[9,10,["H5973"]],[10,12,["H5257"]],[12,14,["H5973"]],[14,16,["H2532"]],[16,17,["H3627"]],[17,19,["H3701"]],[19,22,["H2091"]],[22,24,["H1931"]],[24,26,["H5975"]],[26,28,["H8141"]],[28,31,["H4480","H4428"]],[31,34,["H6828"]]]},{"k":22045,"v":[[0,3,["H4428"]],[3,6,["H5045"]],[6,8,["H935"]],[8,11,["H4438"]],[11,14,["H7725"]],[14,15,["H413"]],[15,18,["H127"]]]},{"k":22046,"v":[[0,3,["H1121"]],[3,7,["H1624"]],[7,10,["H622"]],[10,12,["H1995"]],[12,14,["H7227"]],[14,15,["H2428"]],[15,20,["H935","H935"]],[20,22,["H7857"]],[22,25,["H5674"]],[25,29,["H7725"]],[29,33,["H1624"]],[33,35,["H5704"]],[35,37,["H4581"]]]},{"k":22047,"v":[[0,3,["H4428"]],[3,6,["H5045"]],[6,11,["H4843"]],[11,15,["H3318"]],[15,17,["H3898"]],[17,18,["H5973"]],[18,21,["H5973"]],[21,23,["H4428"]],[23,26,["H6828"]],[26,31,["H5975"]],[31,33,["H7227"]],[33,34,["H1995"]],[34,37,["H1995"]],[37,40,["H5414"]],[40,43,["H3027"]]]},{"k":22048,"v":[[0,6,["H5375"]],[6,8,["H1995"]],[8,10,["H3824"]],[10,14,["H7311"]],[14,19,["H5307"]],[19,22,["H7239"]],[22,26,["H3808"]],[26,28,["H5810"]],[28,30,[]]]},{"k":22049,"v":[[0,3,["H4428"]],[3,6,["H6828"]],[6,8,["H7725"]],[8,12,["H5975"]],[12,14,["H1995"]],[14,15,["H7227"]],[15,16,["H4480"]],[16,18,["H7223"]],[18,22,["H935","H935"]],[22,23,["H7093"]],[23,24,["H6256"]],[24,25,["H8141"]],[25,28,["H1419"]],[28,29,["H2428"]],[29,32,["H7227"]],[32,33,["H7399"]]]},{"k":22050,"v":[[0,3,["H1992"]],[3,4,["H6256"]],[4,7,["H7227"]],[7,9,["H5975"]],[9,10,["H5921"]],[10,12,["H4428"]],[12,15,["H5045"]],[15,18,["H1121","H6530"]],[18,21,["H5971"]],[21,24,["H5375"]],[24,26,["H5975"]],[26,28,["H2377"]],[28,32,["H3782"]]]},{"k":22051,"v":[[0,3,["H4428"]],[3,6,["H6828"]],[6,8,["H935"]],[8,11,["H8210"]],[11,13,["H5550"]],[13,15,["H3920"]],[15,18,["H4013"]],[18,19,["H5892"]],[19,22,["H2220"]],[22,25,["H5045"]],[25,27,["H3808"]],[27,28,["H5975"]],[28,31,["H4005"]],[31,32,["H5971"]],[32,33,["H369"]],[33,38,["H3581"]],[38,40,["H5975"]]]},{"k":22052,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,8,["H6213"]],[8,13,["H7522"]],[13,15,["H369"]],[15,17,["H5975"]],[17,18,["H6440"]],[18,23,["H5975"]],[23,26,["H6643"]],[26,27,["H776"]],[27,31,["H3027"]],[31,34,["H3615"]]]},{"k":22053,"v":[[0,4,["H7760"]],[4,6,["H6440"]],[6,8,["H935"]],[8,11,["H8633"]],[11,14,["H3605"]],[14,15,["H4438"]],[15,18,["H3477"]],[18,19,["H5973"]],[19,24,["H6213"]],[24,28,["H5414"]],[28,31,["H1323"]],[31,33,["H802"]],[33,34,["H7843"]],[34,39,["H3808"]],[39,40,["H5975"]],[40,44,["H3808"]],[44,45,["H1961"]],[45,47,[]]]},{"k":22054,"v":[[0,5,["H7725"]],[5,7,["H6440"]],[7,10,["H339"]],[10,13,["H3920"]],[13,14,["H7227"]],[14,17,["H7101"]],[17,25,["H2781"]],[25,30,["H7673"]],[30,31,["H1115"]],[31,34,["H2781"]],[34,40,["H7725"]],[40,42,[]]]},{"k":22055,"v":[[0,4,["H7725"]],[4,6,["H6440"]],[6,9,["H4581"]],[9,13,["H776"]],[13,17,["H3782"]],[17,19,["H5307"]],[19,21,["H3808"]],[21,23,["H4672"]]]},{"k":22056,"v":[[0,4,["H5975"]],[4,5,["H5921"]],[5,7,["H3653"]],[7,9,["H5674"]],[9,11,["H5065"]],[11,14,["H1925"]],[14,17,["H4438"]],[17,20,["H259"]],[20,21,["H3117"]],[21,25,["H7665"]],[25,26,["H3808"]],[26,28,["H639"]],[28,29,["H3808"]],[29,31,["H4421"]]]},{"k":22057,"v":[[0,2,["H5921"]],[2,4,["H3653"]],[4,7,["H5975"]],[7,10,["H959"]],[10,11,["H5921"]],[11,15,["H3808"]],[15,16,["H5414"]],[16,18,["H1935"]],[18,21,["H4438"]],[21,26,["H935"]],[26,27,["H7962"]],[27,29,["H2388"]],[29,31,["H4438"]],[31,33,["H2519"]]]},{"k":22058,"v":[[0,4,["H2220"]],[4,7,["H7858"]],[7,11,["H7857"]],[11,13,["H4480","H6440"]],[13,18,["H7665"]],[18,20,["H1571"]],[20,22,["H5057"]],[22,25,["H1285"]]]},{"k":22059,"v":[[0,2,["H4480"]],[2,4,["H2266"]],[4,6,["H413"]],[6,10,["H6213"]],[10,11,["H4820"]],[11,16,["H5927"]],[16,20,["H6105"]],[20,23,["H4592"]],[23,24,["H1471"]]]},{"k":22060,"v":[[0,3,["H935"]],[3,4,["H7962"]],[4,9,["H4924"]],[9,12,["H4082"]],[12,16,["H6213"]],[16,18,["H834"]],[18,20,["H1"]],[20,22,["H3808"]],[22,23,["H6213"]],[23,26,["H1"]],[26,27,["H1"]],[27,30,["H967"]],[30,34,["H961"]],[34,36,["H7998"]],[36,38,["H7399"]],[38,43,["H2803"]],[43,45,["H4284"]],[45,46,["H5921"]],[46,49,["H4013"]],[49,51,["H5704"]],[51,53,["H6256"]]]},{"k":22061,"v":[[0,5,["H5782"]],[5,7,["H3581"]],[7,10,["H3824"]],[10,11,["H5921"]],[11,13,["H4428"]],[13,16,["H5045"]],[16,19,["H1419"]],[19,20,["H2428"]],[20,23,["H4428"]],[23,26,["H5045"]],[26,30,["H1624"]],[30,32,["H4421"]],[32,35,["H5704","H3966"]],[35,36,["H1419"]],[36,38,["H6099"]],[38,39,["H2428"]],[39,43,["H3808"]],[43,44,["H5975"]],[44,45,["H3588"]],[45,48,["H2803"]],[48,49,["H4284"]],[49,50,["H5921"]],[50,51,[]]]},{"k":22062,"v":[[0,4,["H398"]],[4,10,["H6598"]],[10,12,["H7665"]],[12,16,["H2428"]],[16,18,["H7857"]],[18,20,["H7227"]],[20,23,["H5307"]],[23,24,["H2491"]]]},{"k":22063,"v":[[0,2,["H8147"]],[2,4,["H4428"]],[4,5,["H3824"]],[5,10,["H4827"]],[10,14,["H1696"]],[14,15,["H3577"]],[15,16,["H5921"]],[16,17,["H259"]],[17,18,["H7979"]],[18,22,["H3808"]],[22,23,["H6743"]],[23,24,["H3588"]],[24,25,["H5750"]],[25,27,["H7093"]],[27,33,["H4150"]]]},{"k":22064,"v":[[0,4,["H7725"]],[4,7,["H776"]],[7,9,["H1419"]],[9,10,["H7399"]],[10,13,["H3824"]],[13,16,["H5921"]],[16,18,["H6944"]],[18,19,["H1285"]],[19,23,["H6213"]],[23,26,["H7725"]],[26,30,["H776"]]]},{"k":22065,"v":[[0,4,["H4150"]],[4,7,["H7725"]],[7,9,["H935"]],[9,12,["H5045"]],[12,16,["H3808"]],[16,17,["H1961"]],[17,20,["H7223"]],[20,24,["H314"]]]},{"k":22066,"v":[[0,3,["H6716"]],[3,5,["H3794"]],[5,7,["H935"]],[7,14,["H3512"]],[14,16,["H7725"]],[16,19,["H2194"]],[19,20,["H5921"]],[20,22,["H6944"]],[22,23,["H1285"]],[23,27,["H6213"]],[27,31,["H7725"]],[31,34,["H995"]],[34,35,["H5921"]],[35,38,["H5800"]],[38,40,["H6944"]],[40,41,["H1285"]]]},{"k":22067,"v":[[0,2,["H2220"]],[2,4,["H5975"]],[4,7,["H4480"]],[7,11,["H2490"]],[11,13,["H4720"]],[13,15,["H4581"]],[15,19,["H5493"]],[19,21,["H8548"]],[21,26,["H5414"]],[26,28,["H8251"]],[28,31,["H8074"]]]},{"k":22068,"v":[[0,6,["H7561"]],[6,8,["H1285"]],[8,11,["H2610"]],[11,13,["H2514"]],[13,16,["H5971"]],[16,19,["H3045"]],[19,21,["H430"]],[21,24,["H2388"]],[24,26,["H6213"]],[26,27,[]]]},{"k":22069,"v":[[0,4,["H7919"]],[4,7,["H5971"]],[7,9,["H995"]],[9,10,["H7227"]],[10,14,["H3782"]],[14,17,["H2719"]],[17,20,["H3852"]],[20,22,["H7628"]],[22,25,["H961"]],[25,27,["H3117"]]]},{"k":22070,"v":[[0,5,["H3782"]],[5,9,["H5826"]],[9,12,["H4592"]],[12,13,["H5828"]],[13,15,["H7227"]],[15,17,["H3867"]],[17,18,["H5921"]],[18,21,["H2519"]]]},{"k":22071,"v":[[0,3,["H4480"]],[3,6,["H7919"]],[6,8,["H3782"]],[8,10,["H6884"]],[10,14,["H1305"]],[14,19,["H3835"]],[19,21,["H5704"]],[21,23,["H6256"]],[23,26,["H7093"]],[26,27,["H3588"]],[27,30,["H5750"]],[30,34,["H4150"]]]},{"k":22072,"v":[[0,3,["H4428"]],[3,5,["H6213"]],[5,9,["H7522"]],[9,14,["H7311"]],[14,17,["H1431"]],[17,18,["H5921"]],[18,19,["H3605"]],[19,20,["H410"]],[20,23,["H1696"]],[23,25,["H6381"]],[25,26,["H5921"]],[26,28,["H410"]],[28,30,["H410"]],[30,33,["H6743"]],[33,34,["H5704"]],[34,36,["H2195"]],[36,38,["H3615"]],[38,39,["H3588"]],[39,43,["H2782"]],[43,46,["H6213"]]]},{"k":22073,"v":[[0,4,["H5921","H3808","H995"]],[4,6,["H430"]],[6,9,["H1"]],[9,12,["H2532"]],[12,14,["H802"]],[14,17,["H3605","H3808","H995"]],[17,18,["H433"]],[18,19,["H3588"]],[19,23,["H1431"]],[23,24,["H5921"]],[24,25,["H3605"]]]},{"k":22074,"v":[[0,2,["H5921"]],[2,4,["H3653"]],[4,7,["H3513"]],[7,9,["H433"]],[9,11,["H4581"]],[11,14,["H433"]],[14,15,["H834"]],[15,17,["H1"]],[17,18,["H3045"]],[18,19,["H3808"]],[19,22,["H3513"]],[22,24,["H2091"]],[24,26,["H3701"]],[26,29,["H3368"]],[29,30,["H68"]],[30,33,["H2530"]]]},{"k":22075,"v":[[0,4,["H6213"]],[4,9,["H4013","H4581"]],[9,10,["H5973"]],[10,12,["H5236"]],[12,13,["H433"]],[13,14,["H834"]],[14,17,["H5234"]],[17,19,["H7235"]],[19,21,["H3519"]],[21,28,["H4910"]],[28,30,["H7227"]],[30,33,["H2505"]],[33,35,["H127"]],[35,37,["H4242"]]]},{"k":22076,"v":[[0,4,["H6256"]],[4,7,["H7093"]],[7,10,["H4428"]],[10,13,["H5045"]],[13,14,["H5055"]],[14,15,["H5973"]],[15,19,["H4428"]],[19,22,["H6828"]],[22,29,["H8175","H5921"]],[29,31,["H7393"]],[31,34,["H6571"]],[34,37,["H7227"]],[37,38,["H591"]],[38,42,["H935"]],[42,45,["H776"]],[45,48,["H7857"]],[48,51,["H5674"]]]},{"k":22077,"v":[[0,3,["H935"]],[3,7,["H6643"]],[7,8,["H776"]],[8,10,["H7227"]],[10,14,["H3782"]],[14,16,["H428"]],[16,18,["H4422"]],[18,22,["H4480","H3027"]],[22,24,["H123"]],[24,26,["H4124"]],[26,29,["H7225"]],[29,32,["H1121"]],[32,34,["H5983"]]]},{"k":22078,"v":[[0,4,["H7971"]],[4,6,["H3027"]],[6,10,["H776"]],[10,13,["H776"]],[13,15,["H4714"]],[15,17,["H3808"]],[17,18,["H1961","H6413"]]]},{"k":22079,"v":[[0,5,["H4910"]],[5,8,["H4362"]],[8,10,["H2091"]],[10,13,["H3701"]],[13,16,["H3605"]],[16,19,["H2530"]],[19,21,["H4714"]],[21,24,["H3864"]],[24,27,["H3569"]],[27,32,["H4703"]]]},{"k":22080,"v":[[0,2,["H8052"]],[2,6,["H4480","H4217"]],[6,11,["H4480","H6828"]],[11,13,["H926"]],[13,19,["H3318"]],[19,21,["H1419"]],[21,22,["H2534"]],[22,24,["H8045"]],[24,29,["H2763"]],[29,30,["H7227"]]]},{"k":22081,"v":[[0,4,["H5193"]],[4,6,["H168"]],[6,9,["H643"]],[9,10,["H996"]],[10,12,["H3220"]],[12,15,["H6643"]],[15,16,["H6944"]],[16,17,["H2022"]],[17,21,["H935"]],[21,22,["H5704"]],[22,24,["H7093"]],[24,26,["H369"]],[26,28,["H5826"]],[28,29,[]]]},{"k":22082,"v":[[0,3,["H1931"]],[3,4,["H6256"]],[4,6,["H4317"]],[6,8,["H5975"]],[8,10,["H1419"]],[10,11,["H8269"]],[11,13,["H5975"]],[13,14,["H5921"]],[14,16,["H1121"]],[16,19,["H5971"]],[19,23,["H1961"]],[23,25,["H6256"]],[25,27,["H6869"]],[27,29,["H834"]],[29,30,["H3808"]],[30,31,["H1961"]],[31,34,["H4480","H1961"]],[34,36,["H1471"]],[36,38,["H5704"]],[38,40,["H1931"]],[40,41,["H6256"]],[41,44,["H1931"]],[44,45,["H6256"]],[45,47,["H5971"]],[47,50,["H4422"]],[50,52,["H3605"]],[52,56,["H4672"]],[56,57,["H3789"]],[57,60,["H5612"]]]},{"k":22083,"v":[[0,2,["H7227"]],[2,6,["H4480","H3463"]],[6,9,["H6083"]],[9,12,["H127"]],[12,14,["H6974"]],[14,15,["H428"]],[15,17,["H5769"]],[17,18,["H2416"]],[18,20,["H428"]],[20,22,["H2781"]],[22,24,["H5769"]],[24,25,["H1860"]]]},{"k":22084,"v":[[0,5,["H7919"]],[5,7,["H2094"]],[7,10,["H2096"]],[10,13,["H7549"]],[13,20,["H6663","H7227"]],[20,23,["H3556"]],[23,25,["H5769"]],[25,27,["H5703"]]]},{"k":22085,"v":[[0,2,["H859"]],[2,4,["H1840"]],[4,6,["H5640"]],[6,8,["H1697"]],[8,10,["H2856"]],[10,12,["H5612"]],[12,14,["H5704"]],[14,16,["H6256"]],[16,19,["H7093"]],[19,20,["H7227"]],[20,25,["H7751"]],[25,27,["H1847"]],[27,30,["H7235"]]]},{"k":22086,"v":[[0,2,["H589"]],[2,3,["H1840"]],[3,4,["H7200"]],[4,6,["H2009"]],[6,8,["H5975"]],[8,9,["H312"]],[9,10,["H8147"]],[10,12,["H259"]],[12,15,["H2008"]],[15,18,["H8193"]],[18,21,["H2975"]],[21,24,["H259"]],[24,27,["H2008"]],[27,30,["H8193"]],[30,33,["H2975"]]]},{"k":22087,"v":[[0,3,["H559"]],[3,6,["H376"]],[6,7,["H3847"]],[7,9,["H906"]],[9,10,["H834"]],[10,12,["H4480","H4605"]],[12,14,["H4325"]],[14,17,["H2975"]],[17,19,["H5704","H4970"]],[19,25,["H7093"]],[25,28,["H6382"]]]},{"k":22088,"v":[[0,3,["H8085","(H853)"]],[3,5,["H376"]],[5,6,["H3847"]],[6,8,["H906"]],[8,9,["H834"]],[9,11,["H4480","H4605"]],[11,13,["H4325"]],[13,16,["H2975"]],[16,20,["H7311"]],[20,23,["H3225"]],[23,27,["H8040"]],[27,28,["H413"]],[28,29,["H8064"]],[29,31,["H7650"]],[31,35,["H2416"]],[35,37,["H5769"]],[37,38,["H3588"]],[38,44,["H4150"]],[44,45,["H4150"]],[45,48,["H2677"]],[48,54,["H3615"]],[54,56,["H5310"]],[56,58,["H3027"]],[58,61,["H6944"]],[61,62,["H5971"]],[62,63,["H3605"]],[63,64,["H428"]],[64,68,["H3615"]]]},{"k":22089,"v":[[0,2,["H589"]],[2,3,["H8085"]],[3,6,["H995"]],[6,7,["H3808"]],[7,9,["H559"]],[9,13,["H113"]],[13,14,["H4100"]],[14,18,["H319"]],[18,20,["H428"]],[20,21,[]]]},{"k":22090,"v":[[0,3,["H559"]],[3,6,["H1980"]],[6,7,["H1840"]],[7,8,["H3588"]],[8,10,["H1697"]],[10,13,["H5640"]],[13,15,["H2856"]],[15,16,["H5704"]],[16,18,["H6256"]],[18,21,["H7093"]]]},{"k":22091,"v":[[0,1,["H7227"]],[1,4,["H1305"]],[4,7,["H3835"]],[7,9,["H6884"]],[9,12,["H7563"]],[12,15,["H7561"]],[15,17,["H3808","H3605"]],[17,20,["H7563"]],[20,22,["H995"]],[22,25,["H7919"]],[25,27,["H995"]]]},{"k":22092,"v":[[0,4,["H4480","H6256"]],[4,7,["H8548"]],[7,12,["H5493"]],[12,15,["H8251"]],[15,18,["H8074"]],[18,20,["H5414"]],[20,25,["H505"]],[25,27,["H3967"]],[27,29,["H8673"]],[29,30,["H3117"]]]},{"k":22093,"v":[[0,1,["H835"]],[1,5,["H2442"]],[5,7,["H5060"]],[7,10,["H505"]],[10,11,["H7969"]],[11,12,["H3967"]],[12,14,["H2568"]],[14,16,["H7970"]],[16,17,["H3117"]]]},{"k":22094,"v":[[0,5,["H859","H1980"]],[5,8,["H7093"]],[8,13,["H5117"]],[13,15,["H5975"]],[15,18,["H1486"]],[18,21,["H7093"]],[21,24,["H3117"]]]},{"k":22095,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H834"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H1954"]],[9,11,["H1121"]],[11,13,["H882"]],[13,16,["H3117"]],[16,18,["H5818"]],[18,19,["H3147"]],[19,20,["H271"]],[20,22,["H3169"]],[22,23,["H4428"]],[23,25,["H3063"]],[25,29,["H3117"]],[29,31,["H3379"]],[31,33,["H1121"]],[33,35,["H3101"]],[35,36,["H4428"]],[36,38,["H3478"]]]},{"k":22096,"v":[[0,2,["H8462"]],[2,5,["H1696"]],[5,8,["H3068"]],[8,10,["H1954"]],[10,13,["H3068"]],[13,14,["H559"]],[14,15,["H413"]],[15,16,["H1954"]],[16,17,["H1980"]],[17,18,["H3947"]],[18,22,["H802"]],[22,24,["H2183"]],[24,26,["H3206"]],[26,28,["H2183"]],[28,29,["H3588"]],[29,31,["H776"]],[31,35,["H2181","H2181"]],[35,37,["H4480","H310"]],[37,39,["H3068"]]]},{"k":22097,"v":[[0,3,["H1980"]],[3,5,["H3947","(H853)"]],[5,6,["H1586"]],[6,8,["H1323"]],[8,10,["H1691"]],[10,12,["H2029"]],[12,14,["H3205"]],[14,17,["H1121"]]]},{"k":22098,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H7121"]],[7,9,["H8034"]],[9,10,["H3157"]],[10,11,["H3588"]],[11,12,["H5750"]],[12,14,["H4592"]],[14,19,["H6485","(H853)"]],[19,21,["H1818"]],[21,23,["H3157"]],[23,24,["H5921"]],[24,26,["H1004"]],[26,28,["H3058"]],[28,33,["H7673"]],[33,35,["H4468"]],[35,38,["H1004"]],[38,40,["H3478"]]]},{"k":22099,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,13,["H7665","(H853)"]],[13,15,["H7198"]],[15,17,["H3478"]],[17,20,["H6010"]],[20,22,["H3157"]]]},{"k":22100,"v":[[0,3,["H2029"]],[3,4,["H5750"]],[4,6,["H3205"]],[6,8,["H1323"]],[8,11,["H559"]],[11,14,["H7121"]],[14,16,["H8034"]],[16,17,["H3819"]],[17,18,["H3588"]],[18,21,["H3808"]],[21,22,["H5750","H3254"]],[22,25,["H7355","(H853)"]],[25,27,["H1004"]],[27,29,["H3478"]],[29,30,["H3588"]],[30,36,["H5375","H5375"]]]},{"k":22101,"v":[[0,6,["H7355"]],[6,8,["H1004"]],[8,10,["H3063"]],[10,13,["H3467"]],[13,17,["H3068"]],[17,19,["H430"]],[19,22,["H3808"]],[22,23,["H3467"]],[23,26,["H7198"]],[26,29,["H2719"]],[29,32,["H4421"]],[32,34,["H5483"]],[34,37,["H6571"]]]},{"k":22102,"v":[[0,5,["H1580","(H853)"]],[5,6,["H3819"]],[6,8,["H2029"]],[8,10,["H3205"]],[10,12,["H1121"]]]},{"k":22103,"v":[[0,2,["H559"]],[2,4,["H7121"]],[4,6,["H8034"]],[6,7,["H3818"]],[7,8,["H3588"]],[8,9,["H859"]],[9,11,["H3808"]],[11,13,["H5971"]],[13,15,["H595"]],[15,17,["H3808"]],[17,18,["H1961"]],[18,20,[]]]},{"k":22104,"v":[[0,3,["H4557"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,10,["H1961"]],[10,13,["H2344"]],[13,16,["H3220"]],[16,17,["H834"]],[17,18,["H3808"]],[18,20,["H4058"]],[20,21,["H3808"]],[21,22,["H5608"]],[22,28,["H1961"]],[28,32,["H4725"]],[32,33,["H834"]],[33,36,["H559"]],[36,39,["H859"]],[39,41,["H3808"]],[41,43,["H5971"]],[43,48,["H559"]],[48,54,["H1121"]],[54,57,["H2416"]],[57,58,["H410"]]]},{"k":22105,"v":[[0,4,["H1121"]],[4,6,["H3063"]],[6,9,["H1121"]],[9,11,["H3478"]],[11,14,["H6908","H3162"]],[14,16,["H7760"]],[16,18,["H259"]],[18,19,["H7218"]],[19,24,["H5927"]],[24,26,["H4480"]],[26,28,["H776"]],[28,29,["H3588"]],[29,30,["H1419"]],[30,34,["H3117"]],[34,36,["H3157"]]]},{"k":22106,"v":[[0,1,["H559"]],[1,5,["H251"]],[5,6,["H5971"]],[6,10,["H269"]],[10,11,["H7355"]]]},{"k":22107,"v":[[0,1,["H7378"]],[1,4,["H517"]],[4,5,["H7378"]],[5,6,["H3588"]],[6,7,["H1931"]],[7,9,["H3808"]],[9,11,["H802"]],[11,12,["H3808"]],[12,14,["H595"]],[14,16,["H376"]],[16,21,["H5493"]],[21,23,["H2183"]],[23,27,["H4480","H6440"]],[27,30,["H5005"]],[30,32,["H4480","H996"]],[32,34,["H7699"]]]},{"k":22108,"v":[[0,1,["H6435"]],[1,3,["H6584"]],[3,5,["H6174"]],[5,7,["H3322"]],[7,12,["H3117"]],[12,16,["H3205"]],[16,18,["H7760"]],[18,22,["H4057"]],[22,24,["H7896"]],[24,28,["H6723"]],[28,29,["H776"]],[29,31,["H4191"]],[31,34,["H6772"]]]},{"k":22109,"v":[[0,4,["H3808"]],[4,7,["H7355"]],[7,9,["H1121"]],[9,10,["H3588"]],[10,11,["H1992"]],[11,14,["H1121"]],[14,16,["H2183"]]]},{"k":22110,"v":[[0,1,["H3588"]],[1,3,["H517"]],[3,7,["H2181"]],[7,10,["H2029"]],[10,14,["H954"]],[14,15,["H3588"]],[15,17,["H559"]],[17,20,["H1980"]],[20,21,["H310"]],[21,23,["H157"]],[23,25,["H5414"]],[25,28,["H3899"]],[28,31,["H4325"]],[31,33,["H6785"]],[33,36,["H6593"]],[36,38,["H8081"]],[38,41,["H8250"]]]},{"k":22111,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,6,["H7753","(H853)"]],[6,8,["H1870"]],[8,10,["H5518"]],[10,12,["H1443","(H853)"]],[12,14,["H1447"]],[14,18,["H3808"]],[18,19,["H4672"]],[19,21,["H5410"]]]},{"k":22112,"v":[[0,5,["H7291","(H853)"]],[5,7,["H157"]],[7,11,["H3808"]],[11,12,["H5381"]],[12,17,["H1245"]],[17,21,["H3808"]],[21,22,["H4672"]],[22,27,["H559"]],[27,30,["H1980"]],[30,32,["H7725"]],[32,33,["H413"]],[33,35,["H7223"]],[35,36,["H376"]],[36,37,["H3588"]],[37,38,["H227"]],[38,41,["H2896"]],[41,45,["H4480","H6258"]]]},{"k":22113,"v":[[0,2,["H1931"]],[2,4,["H3808"]],[4,5,["H3045"]],[5,6,["H3588"]],[6,7,["H595"]],[7,8,["H5414"]],[8,10,["H1715"]],[10,12,["H8492"]],[12,14,["H3323"]],[14,16,["H7235"]],[16,18,["H3701"]],[18,20,["H2091"]],[20,23,["H6213"]],[23,25,["H1168"]]]},{"k":22114,"v":[[0,1,["H3651"]],[1,4,["H7725"]],[4,7,["H3947"]],[7,9,["H1715"]],[9,12,["H6256"]],[12,16,["H8492"]],[16,19,["H4150"]],[19,23,["H5337"]],[23,25,["H6785"]],[25,28,["H6593"]],[28,31,["H3680","(H853)"]],[31,33,["H6172"]]]},{"k":22115,"v":[[0,2,["H6258"]],[2,5,["H1540","(H853)"]],[5,7,["H5040"]],[7,10,["H5869"]],[10,13,["H157"]],[13,15,["H3808","H376"]],[15,17,["H5337"]],[17,22,["H4480","H3027"]]]},{"k":22116,"v":[[0,5,["H3605"]],[5,7,["H4885"]],[7,9,["H7673"]],[9,12,["H2282"]],[12,15,["H2320"]],[15,18,["H7676"]],[18,20,["H3605"]],[20,23,["H4150"]]]},{"k":22117,"v":[[0,4,["H8074"]],[4,6,["H1612"]],[6,10,["H8384"]],[10,11,["H834"]],[11,14,["H559"]],[14,15,["H1992"]],[15,18,["H866"]],[18,19,["H834"]],[19,21,["H157"]],[21,23,["H5414"]],[23,28,["H7760"]],[28,31,["H3293"]],[31,34,["H2416"]],[34,37,["H7704"]],[37,39,["H398"]],[39,40,[]]]},{"k":22118,"v":[[0,4,["H6485"]],[4,5,["H5921"]],[5,6,["(H853)"]],[6,8,["H3117"]],[8,10,["H1168"]],[10,11,["H834"]],[11,14,["H6999"]],[14,19,["H5710"]],[19,23,["H5141"]],[23,26,["H2484"]],[26,29,["H1980"]],[29,30,["H310"]],[30,32,["H157"]],[32,34,["H7911"]],[34,36,["H5002"]],[36,38,["H3068"]]]},{"k":22119,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,3,["H595"]],[3,5,["H6601"]],[5,8,["H1980"]],[8,12,["H4057"]],[12,14,["H1696"]],[14,15,["H5921","H3820"]],[15,17,[]]]},{"k":22120,"v":[[0,4,["H5414"]],[4,5,["(H853)"]],[5,7,["H3754"]],[7,9,["H4480","H8033"]],[9,12,["H6010"]],[12,14,["H5911"]],[14,17,["H6607"]],[17,19,["H8615"]],[19,23,["H6030"]],[23,24,["H8033"]],[24,28,["H3117"]],[28,31,["H5271"]],[31,36,["H3117"]],[36,40,["H5927"]],[40,44,["H4480","H776"]],[44,46,["H4714"]]]},{"k":22121,"v":[[0,4,["H1961"]],[4,6,["H1931"]],[6,7,["H3117"]],[7,8,["H5002"]],[8,10,["H3068"]],[10,14,["H7121"]],[14,16,["H376"]],[16,19,["H7121"]],[19,21,["H3808"]],[21,22,["H5750"]],[22,23,["H1180"]]]},{"k":22122,"v":[[0,5,["H5493","(H853)"]],[5,7,["H8034"]],[7,9,["H1168"]],[9,13,["H4480","H6310"]],[13,17,["H3808"]],[17,18,["H5750"]],[18,20,["H2142"]],[20,23,["H8034"]]]},{"k":22123,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,7,["H3772"]],[7,9,["H1285"]],[9,12,["H5973"]],[12,14,["H2416"]],[14,17,["H7704"]],[17,19,["H5973"]],[19,21,["H5775"]],[21,23,["H8064"]],[23,28,["H7431"]],[28,31,["H127"]],[31,35,["H7665"]],[35,37,["H7198"]],[37,40,["H2719"]],[40,43,["H4421"]],[43,45,["H4480"]],[45,47,["H776"]],[47,54,["H7901"]],[54,55,["H983"]]]},{"k":22124,"v":[[0,4,["H781"]],[4,9,["H5769"]],[9,13,["H781"]],[13,18,["H6664"]],[18,21,["H4941"]],[21,24,["H2617"]],[24,27,["H7356"]]]},{"k":22125,"v":[[0,4,["H781"]],[4,9,["H530"]],[9,13,["H3045","(H853)"]],[13,15,["H3068"]]]},{"k":22126,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H6030"]],[12,13,["H5002"]],[13,15,["H3068"]],[15,18,["H6030","(H853)"]],[18,20,["H8064"]],[20,22,["H1992"]],[22,24,["H6030","(H853)"]],[24,26,["H776"]]]},{"k":22127,"v":[[0,3,["H776"]],[3,5,["H6030","(H853)"]],[5,7,["H1715"]],[7,10,["H8492"]],[10,13,["H3323"]],[13,15,["H1992"]],[15,17,["H6030","(H853)"]],[17,18,["H3157"]]]},{"k":22128,"v":[[0,4,["H2232"]],[4,10,["H776"]],[10,16,["H7355","(H853)"]],[16,20,["H3808"]],[20,22,["H7355"]],[22,26,["H559"]],[26,31,["H3808"]],[31,33,["H5971"]],[33,34,["H859"]],[34,37,["H5971"]],[37,39,["H1931"]],[39,41,["H559"]],[41,45,["H430"]]]},{"k":22129,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,7,["H1980"]],[7,8,["H5750"]],[8,9,["H157"]],[9,11,["H802"]],[11,12,["H157"]],[12,15,["H7453"]],[15,18,["H5003"]],[18,22,["H160"]],[22,25,["H3068"]],[25,26,["(H853)"]],[26,28,["H1121"]],[28,30,["H3478"]],[30,31,["H1992"]],[31,32,["H6437"]],[32,33,["H413"]],[33,34,["H312"]],[34,35,["H430"]],[35,37,["H157"]],[37,38,["H809"]],[38,40,["H6025"]]]},{"k":22130,"v":[[0,3,["H3739"]],[3,8,["H2568","H6240"]],[8,11,["H3701"]],[11,15,["H2563"]],[15,17,["H8184"]],[17,21,["H3963"]],[21,23,["H8184"]]]},{"k":22131,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,8,["H3427"]],[8,11,["H7227"]],[11,12,["H3117"]],[12,15,["H3808"]],[15,18,["H2181"]],[18,22,["H3808"]],[22,23,["H1961"]],[23,26,["H376"]],[26,29,["H589"]],[29,30,["H1571"]],[30,32,["H413"]],[32,33,[]]]},{"k":22132,"v":[[0,1,["H3588"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,7,["H3427"]],[7,8,["H7227"]],[8,9,["H3117"]],[9,10,["H369"]],[10,12,["H4428"]],[12,14,["H369"]],[14,16,["H8269"]],[16,18,["H369"]],[18,20,["H2077"]],[20,22,["H369"]],[22,24,["H4676"]],[24,26,["H369"]],[26,28,["H646"]],[28,31,["H8655"]]]},{"k":22133,"v":[[0,1,["H310"]],[1,4,["H1121"]],[4,6,["H3478"]],[6,7,["H7725"]],[7,9,["H1245","(H853)"]],[9,11,["H3068"]],[11,13,["H430"]],[13,15,["H1732"]],[15,17,["H4428"]],[17,20,["H6342","H413"]],[20,22,["H3068"]],[22,25,["H2898"]],[25,28,["H319"]],[28,29,["H3117"]]]},{"k":22134,"v":[[0,1,["H8085"]],[1,3,["H1697"]],[3,6,["H3068"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,16,["H7379"]],[16,17,["H5973"]],[17,19,["H3427"]],[19,22,["H776"]],[22,23,["H3588"]],[23,26,["H369"]],[26,27,["H571"]],[27,28,["H369"]],[28,29,["H2617"]],[29,30,["H369"]],[30,31,["H1847"]],[31,33,["H430"]],[33,36,["H776"]]]},{"k":22135,"v":[[0,2,["H422"]],[2,4,["H3584"]],[4,6,["H7523"]],[6,8,["H1589"]],[8,11,["H5003"]],[11,14,["H6555"]],[14,16,["H1818"]],[16,17,["H5060"]],[17,18,["H1818"]]]},{"k":22136,"v":[[0,1,["H5921","H3651"]],[1,4,["H776"]],[4,5,["H56"]],[5,8,["H3605"]],[8,10,["H3427"]],[10,13,["H535"]],[13,16,["H2416"]],[16,19,["H7704"]],[19,23,["H5775"]],[23,25,["H8064"]],[25,28,["H1709"]],[28,31,["H3220"]],[31,32,["H1571"]],[32,36,["H622"]]]},{"k":22137,"v":[[0,1,["H389"]],[1,3,["H408"]],[3,4,["H376"]],[4,5,["H7378"]],[5,6,["H408"]],[6,7,["H3198"]],[7,8,["H376"]],[8,11,["H5971"]],[11,16,["H7378"]],[16,19,["H3548"]]]},{"k":22138,"v":[[0,4,["H3782"]],[4,7,["H3117"]],[7,10,["H5030"]],[10,11,["H1571"]],[11,13,["H3782"]],[13,14,["H5973"]],[14,18,["H3915"]],[18,22,["H1820"]],[22,24,["H517"]]]},{"k":22139,"v":[[0,2,["H5971"]],[2,4,["H1820"]],[4,6,["H4480","H1097"]],[6,8,["H1847"]],[8,9,["H3588"]],[9,10,["H859"]],[10,12,["H3988"]],[12,13,["H1847"]],[13,17,["H3988"]],[17,24,["H4480","H3547"]],[24,30,["H7911"]],[30,32,["H8451"]],[32,35,["H430"]],[35,36,["H589"]],[36,38,["H1571"]],[38,39,["H7911"]],[39,41,["H1121"]]]},{"k":22140,"v":[[0,4,["H7231"]],[4,5,["H3651"]],[5,7,["H2398"]],[7,13,["H4171"]],[13,15,["H3519"]],[15,17,["H7036"]]]},{"k":22141,"v":[[0,3,["H398"]],[3,5,["H2403"]],[5,8,["H5971"]],[8,11,["H5375"]],[11,13,["H5315"]],[13,14,["H413"]],[14,16,["H5771"]]]},{"k":22142,"v":[[0,4,["H1961"]],[4,6,["H5971"]],[6,8,["H3548"]],[8,12,["H6485","H5921"]],[12,16,["H1870"]],[16,18,["H7725"]],[18,21,["H4611"]]]},{"k":22143,"v":[[0,4,["H398"]],[4,6,["H3808"]],[6,8,["H7646"]],[8,12,["H2181"]],[12,15,["H3808"]],[15,16,["H6555"]],[16,17,["H3588"]],[17,21,["H5800"]],[21,24,["H8104","(H853)"]],[24,27,["H3068"]]]},{"k":22144,"v":[[0,1,["H2184"]],[1,3,["H3196"]],[3,6,["H8492"]],[6,8,["H3947"]],[8,10,["H3820"]]]},{"k":22145,"v":[[0,2,["H5971"]],[2,4,["H7592"]],[4,7,["H6086"]],[7,10,["H4731"]],[10,11,["H5046"]],[11,14,["H3588"]],[14,16,["H7307"]],[16,18,["H2183"]],[18,23,["H8582"]],[23,29,["H2181"]],[29,31,["H4480","H8478"]],[31,33,["H430"]]]},{"k":22146,"v":[[0,2,["H2076"]],[2,3,["H5921"]],[3,5,["H7218"]],[5,8,["H2022"]],[8,11,["H6999"]],[11,12,["H5921"]],[12,14,["H1389"]],[14,15,["H8478"]],[15,16,["H437"]],[16,18,["H3839"]],[18,20,["H424"]],[20,21,["H3588"]],[21,23,["H6738"]],[23,26,["H2896"]],[26,27,["H5921","H3651"]],[27,29,["H1323"]],[29,32,["H2181"]],[32,35,["H3618"]],[35,38,["H5003"]]]},{"k":22147,"v":[[0,3,["H3808"]],[3,4,["H6485","H5921"]],[4,6,["H1323"]],[6,7,["H3588"]],[7,10,["H2181"]],[10,13,["H3618"]],[13,14,["H3588"]],[14,17,["H5003"]],[17,18,["H3588"]],[18,19,["H1992"]],[19,21,["H6504"]],[21,22,["H5973"]],[22,23,["H2181"]],[23,26,["H2076"]],[26,27,["H5973"]],[27,28,["H6948"]],[28,31,["H5971"]],[31,34,["H3808"]],[34,35,["H995"]],[35,37,["H3832"]]]},{"k":22148,"v":[[0,1,["H518"]],[1,2,["H859"]],[2,3,["H3478"]],[3,6,["H2181"]],[6,9,["H408"]],[9,10,["H3063"]],[10,11,["H816"]],[11,13,["H935"]],[13,14,["H408"]],[14,17,["H1537"]],[17,18,["H408"]],[18,21,["H5927"]],[21,23,["H1007"]],[23,24,["H408"]],[24,25,["H7650"]],[25,27,["H3068"]],[27,28,["H2416"]]]},{"k":22149,"v":[[0,1,["H3588"]],[1,2,["H3478"]],[2,4,["H5637"]],[4,7,["H5637"]],[7,8,["H6510"]],[8,9,["H6258"]],[9,11,["H3068"]],[11,13,["H7462"]],[13,17,["H3532"]],[17,21,["H4800"]]]},{"k":22150,"v":[[0,1,["H669"]],[1,3,["H2266"]],[3,5,["H6091"]],[5,8,["H5117"]]]},{"k":22151,"v":[[0,2,["H5435"]],[2,4,["H5493"]],[4,9,["H2181","H2181"]],[9,11,["H4043"]],[11,13,["H7036"]],[13,15,["H157"]],[15,16,["H3051"]],[16,17,[]]]},{"k":22152,"v":[[0,2,["H7307"]],[2,6,["H6887","(H853)"]],[6,9,["H3671"]],[9,14,["H954"]],[14,18,["H4480","H2077"]]]},{"k":22153,"v":[[0,1,["H8085"]],[1,3,["H2063"]],[3,5,["H3548"]],[5,7,["H7181"]],[7,9,["H1004"]],[9,11,["H3478"]],[11,15,["H238"]],[15,17,["H1004"]],[17,20,["H4428"]],[20,21,["H3588"]],[21,22,["H4941"]],[22,26,["H3588"]],[26,29,["H1961"]],[29,31,["H6341"]],[31,33,["H4709"]],[33,36,["H7568"]],[36,37,["H6566"]],[37,38,["H5921"]],[38,39,["H8396"]]]},{"k":22154,"v":[[0,3,["H7846"]],[3,5,["H6009"]],[5,8,["H7819"]],[8,10,["H589"]],[10,14,["H4148"]],[14,17,["H3605"]]]},{"k":22155,"v":[[0,1,["H589"]],[1,2,["H3045"]],[2,3,["H669"]],[3,5,["H3478"]],[5,7,["H3808"]],[7,8,["H3582"]],[8,9,["H4480"]],[9,11,["H3588"]],[11,12,["H6258"]],[12,14,["H669"]],[14,17,["H2181"]],[17,19,["H3478"]],[19,21,["H2930"]]]},{"k":22156,"v":[[0,3,["H3808"]],[3,4,["H5414"]],[4,6,["H4611"]],[6,8,["H7725"]],[8,9,["H413"]],[9,11,["H430"]],[11,12,["H3588"]],[12,14,["H7307"]],[14,16,["H2183"]],[16,20,["H7130"]],[20,26,["H3808"]],[26,27,["H3045"]],[27,29,["H3068"]]]},{"k":22157,"v":[[0,3,["H1347"]],[3,5,["H3478"]],[5,7,["H6030"]],[7,10,["H6440"]],[10,13,["H3478"]],[13,15,["H669"]],[15,16,["H3782"]],[16,19,["H5771"]],[19,20,["H3063"]],[20,21,["H1571"]],[21,23,["H3782"]],[23,24,["H5973"]],[24,25,[]]]},{"k":22158,"v":[[0,3,["H1980"]],[3,6,["H6629"]],[6,10,["H1241"]],[10,12,["H1245","(H853)"]],[12,14,["H3068"]],[14,18,["H3808"]],[18,19,["H4672"]],[19,23,["H2502"]],[23,25,["H4480"]],[25,26,[]]]},{"k":22159,"v":[[0,4,["H898"]],[4,7,["H3068"]],[7,8,["H3588"]],[8,11,["H3205"]],[11,12,["H2114"]],[12,13,["H1121"]],[13,14,["H6258"]],[14,17,["H2320"]],[17,18,["H398"]],[18,20,["H854"]],[20,22,["H2506"]]]},{"k":22160,"v":[[0,1,["H8628"]],[1,4,["H7782"]],[4,6,["H1390"]],[6,9,["H2689"]],[9,11,["H7414"]],[11,13,["H7321"]],[13,15,["H1007"]],[15,16,["H310"]],[16,19,["H1144"]]]},{"k":22161,"v":[[0,1,["H669"]],[1,3,["H1961"]],[3,4,["H8047"]],[4,7,["H3117"]],[7,9,["H8433"]],[9,12,["H7626"]],[12,14,["H3478"]],[14,18,["H3045"]],[18,23,["H539"]]]},{"k":22162,"v":[[0,2,["H8269"]],[2,4,["H3063"]],[4,5,["H1961"]],[5,9,["H5253"]],[9,11,["H1366"]],[11,16,["H8210"]],[16,18,["H5678"]],[18,19,["H5921"]],[19,22,["H4325"]]]},{"k":22163,"v":[[0,1,["H669"]],[1,3,["H6231"]],[3,5,["H7533"]],[5,7,["H4941"]],[7,8,["H3588"]],[8,10,["H2974"]],[10,11,["H1980"]],[11,12,["H310"]],[12,14,["H6673"]]]},{"k":22164,"v":[[0,3,["H589"]],[3,6,["H669"]],[6,9,["H6211"]],[9,13,["H1004"]],[13,15,["H3063"]],[15,17,["H7538"]]]},{"k":22165,"v":[[0,2,["H669"]],[2,3,["H7200","(H853)"]],[3,5,["H2483"]],[5,7,["H3063"]],[7,8,["(H853)"]],[8,10,["H4205"]],[10,12,["H1980"]],[12,13,["H669"]],[13,14,["H413"]],[14,16,["H804"]],[16,18,["H7971"]],[18,19,["H413"]],[19,20,["H4428"]],[20,21,["H3377"]],[21,23,["H3201"]],[23,24,["H1931"]],[24,25,["H3808"]],[25,26,["H7495"]],[26,28,["H3808"]],[28,29,["H1455","H4480"]],[29,33,["H4205"]]]},{"k":22166,"v":[[0,1,["H3588"]],[1,2,["H595"]],[2,6,["H669"]],[6,9,["H7826"]],[9,14,["H3715"]],[14,17,["H1004"]],[17,19,["H3063"]],[19,20,["H589"]],[20,22,["H589"]],[22,24,["H2963"]],[24,27,["H1980"]],[27,31,["H5375"]],[31,33,["H369"]],[33,35,["H5337"]],[35,36,[]]]},{"k":22167,"v":[[0,3,["H1980"]],[3,5,["H7725"]],[5,6,["H413"]],[6,8,["H4725"]],[8,9,["H5704","H834"]],[9,13,["H816"]],[13,15,["H1245"]],[15,17,["H6440"]],[17,20,["H6862"]],[20,25,["H7836"]]]},{"k":22168,"v":[[0,1,["H1980"]],[1,5,["H7725"]],[5,6,["H413"]],[6,8,["H3068"]],[8,9,["H3588"]],[9,10,["H1931"]],[10,12,["H2963"]],[12,16,["H7495"]],[16,20,["H5221"]],[20,26,["H2280"]]]},{"k":22169,"v":[[0,3,["H4480","H3117"]],[3,6,["H2421"]],[6,10,["H7992"]],[10,11,["H3117"]],[11,16,["H6965"]],[16,20,["H2421"]],[20,23,["H6440"]]]},{"k":22170,"v":[[0,4,["H3045"]],[4,8,["H7291"]],[8,10,["H3045","(H853)"]],[10,12,["H3068"]],[12,15,["H4161"]],[15,17,["H3559"]],[17,20,["H7837"]],[20,24,["H935"]],[24,29,["H1653"]],[29,32,["H4456"]],[32,35,["H3138"]],[35,38,["H776"]]]},{"k":22171,"v":[[0,2,["H669"]],[2,3,["H4100"]],[3,6,["H6213"]],[6,10,["H3063"]],[10,11,["H4100"]],[11,14,["H6213"]],[14,19,["H2617"]],[19,23,["H1242"]],[23,24,["H6051"]],[24,28,["H7925"]],[28,29,["H2919"]],[29,32,["H1980"]]]},{"k":22172,"v":[[0,1,["H5921","H3651"]],[1,4,["H2672"]],[4,8,["H5030"]],[8,11,["H2026"]],[11,15,["H561"]],[15,18,["H6310"]],[18,21,["H4941"]],[21,25,["H216"]],[25,28,["H3318"]]]},{"k":22173,"v":[[0,1,["H3588"]],[1,3,["H2654"]],[3,4,["H2617"]],[4,6,["H3808"]],[6,7,["H2077"]],[7,10,["H1847"]],[10,12,["H430"]],[12,16,["H4480","H5930"]]]},{"k":22174,"v":[[0,2,["H1992"]],[2,4,["H120"]],[4,6,["H5674"]],[6,8,["H1285"]],[8,9,["H8033"]],[9,13,["H898"]],[13,15,[]]]},{"k":22175,"v":[[0,1,["H1568"]],[1,4,["H7151"]],[4,8,["H6466"]],[8,9,["H205"]],[9,12,["H6121"]],[12,14,["H4480","H1818"]]]},{"k":22176,"v":[[0,5,["H1416"]],[5,6,["H2442"]],[6,9,["H376"]],[9,12,["H2267"]],[12,14,["H3548"]],[14,15,["H7523"]],[15,18,["H1870"]],[18,20,["H7926"]],[20,21,["H3588"]],[21,23,["H6213"]],[23,24,["H2154"]]]},{"k":22177,"v":[[0,3,["H7200"]],[3,6,["H8186"]],[6,9,["H1004"]],[9,11,["H3478"]],[11,12,["H8033"]],[12,15,["H2184"]],[15,17,["H669"]],[17,18,["H3478"]],[18,20,["H2930"]]]},{"k":22178,"v":[[0,1,["H1571"]],[1,3,["H3063"]],[3,6,["H7896"]],[6,8,["H7105"]],[8,13,["H7725"]],[13,15,["H7622"]],[15,18,["H5971"]]]},{"k":22179,"v":[[0,5,["H7495"]],[5,6,["H3478"]],[6,9,["H5771"]],[9,11,["H669"]],[11,13,["H1540"]],[13,16,["H7451"]],[16,18,["H8111"]],[18,19,["H3588"]],[19,21,["H6466"]],[21,22,["H8267"]],[22,25,["H1590"]],[25,27,["H935"]],[27,32,["H1416"]],[32,33,["H6584"]],[33,34,["H2351"]]]},{"k":22180,"v":[[0,3,["H559"]],[3,4,["H1077"]],[4,7,["H3824"]],[7,10,["H2142"]],[10,11,["H3605"]],[11,13,["H7451"]],[13,14,["H6258"]],[14,17,["H4611"]],[17,21,["H5437"]],[21,23,["H1961"]],[23,24,["H5048"]],[24,26,["H6440"]]]},{"k":22181,"v":[[0,5,["H8055","H4428"]],[5,8,["H7451"]],[8,11,["H8269"]],[11,14,["H3585"]]]},{"k":22182,"v":[[0,3,["H3605"]],[3,4,["H5003"]],[4,5,["H3644"]],[5,7,["H8574"]],[7,8,["H1197"]],[8,9,["H4480"]],[9,11,["H644"]],[11,13,["H7673"]],[13,15,["H4480","H5782"]],[15,19,["H4480","H3888"]],[19,21,["H1217"]],[21,22,["H5704"]],[22,25,["H2556"]]]},{"k":22183,"v":[[0,3,["H3117"]],[3,6,["H4428"]],[6,8,["H8269"]],[8,12,["H2470"]],[12,14,["H2534"]],[14,16,["H4480","H3196"]],[16,19,["H4900"]],[19,21,["H3027"]],[21,22,["H854"]],[22,23,["H3945"]]]},{"k":22184,"v":[[0,1,["H3588"]],[1,5,["H7126"]],[5,7,["H3820"]],[7,10,["H8574"]],[10,15,["H693"]],[15,17,["H644"]],[17,18,["H3463"]],[18,19,["H3605"]],[19,21,["H3915"]],[21,24,["H1242"]],[24,25,["H1931"]],[25,26,["H1197"]],[26,29,["H3852"]],[29,30,["H784"]]]},{"k":22185,"v":[[0,4,["H2552","H3605"]],[4,7,["H8574"]],[7,10,["H398","(H853)"]],[10,12,["H8199"]],[12,13,["H3605"]],[13,15,["H4428"]],[15,17,["H5307"]],[17,20,["H369"]],[20,24,["H7121"]],[24,25,["H413"]],[25,26,[]]]},{"k":22186,"v":[[0,1,["H669"]],[1,2,["H1931"]],[2,5,["H1101"]],[5,8,["H5971"]],[8,9,["H669"]],[9,10,["H1961"]],[10,12,["H5692"]],[12,13,["H1097"]],[13,14,["H2015"]]]},{"k":22187,"v":[[0,1,["H2114"]],[1,3,["H398"]],[3,5,["H3581"]],[5,7,["H1931"]],[7,8,["H3045"]],[8,10,["H3808"]],[10,11,["H1571"]],[11,13,["H7872"]],[13,17,["H2236"]],[17,21,["H1931"]],[21,22,["H3045"]],[22,23,["H3808"]]]},{"k":22188,"v":[[0,3,["H1347"]],[3,5,["H3478"]],[5,6,["H6030"]],[6,9,["H6440"]],[9,13,["H3808"]],[13,14,["H7725"]],[14,15,["H413"]],[15,17,["H3068"]],[17,19,["H430"]],[19,20,["H3808"]],[20,21,["H1245"]],[21,24,["H3605"]],[24,25,["H2063"]]]},{"k":22189,"v":[[0,1,["H669"]],[1,3,["H1961"]],[3,6,["H6601"]],[6,7,["H3123"]],[7,8,["H369"]],[8,9,["H3820"]],[9,11,["H7121"]],[11,13,["H4714"]],[13,15,["H1980"]],[15,17,["H804"]]]},{"k":22190,"v":[[0,1,["H834"]],[1,4,["H1980"]],[4,7,["H6566"]],[7,9,["H7568"]],[9,10,["H5921"]],[10,16,["H3381"]],[16,19,["H5775"]],[19,22,["H8064"]],[22,25,["H3256"]],[25,29,["H5712"]],[29,31,["H8088"]]]},{"k":22191,"v":[[0,1,["H188"]],[1,4,["H3588"]],[4,7,["H5074"]],[7,8,["H4480"]],[8,10,["H7701"]],[10,13,["H3588"]],[13,16,["H6586"]],[16,20,["H595"]],[20,22,["H6299"]],[22,25,["H1992"]],[25,27,["H1696"]],[27,28,["H3577"]],[28,29,["H5921"]],[29,30,[]]]},{"k":22192,"v":[[0,4,["H3808"]],[4,5,["H2199"]],[5,6,["H413"]],[6,10,["H3820"]],[10,11,["H3588"]],[11,13,["H3213"]],[13,14,["H5921"]],[14,16,["H4904"]],[16,19,["H1481"]],[19,20,["H5921"]],[20,21,["H1715"]],[21,23,["H8492"]],[23,26,["H5493"]],[26,28,[]]]},{"k":22193,"v":[[0,2,["H589"]],[2,4,["H3256"]],[4,6,["H2388"]],[6,8,["H2220"]],[8,12,["H2803"]],[12,13,["H7451"]],[13,14,["H413"]],[14,15,[]]]},{"k":22194,"v":[[0,2,["H7725"]],[2,4,["H3808"]],[4,8,["H5920"]],[8,10,["H1961"]],[10,13,["H7423"]],[13,14,["H7198"]],[14,16,["H8269"]],[16,18,["H5307"]],[18,21,["H2719"]],[21,24,["H4480","H2195"]],[24,27,["H3956"]],[27,28,["H2097"]],[28,32,["H3933"]],[32,35,["H776"]],[35,37,["H4714"]]]},{"k":22195,"v":[[0,3,["H7782"]],[3,4,["H413"]],[4,6,["H2441"]],[6,12,["H5404"]],[12,13,["H5921"]],[13,15,["H1004"]],[15,18,["H3068"]],[18,19,["H3282"]],[19,22,["H5674"]],[22,24,["H1285"]],[24,26,["H6586"]],[26,27,["H5921"]],[27,29,["H8451"]]]},{"k":22196,"v":[[0,1,["H3478"]],[1,3,["H2199"]],[3,7,["H430"]],[7,9,["H3045"]],[9,10,[]]]},{"k":22197,"v":[[0,1,["H3478"]],[1,4,["H2186"]],[4,9,["H2896"]],[9,11,["H341"]],[11,13,["H7291"]],[13,14,[]]]},{"k":22198,"v":[[0,1,["H1992"]],[1,5,["H4427"]],[5,7,["H3808"]],[7,8,["H4480"]],[8,13,["H8323"]],[13,16,["H3045"]],[16,18,["H3808"]],[18,21,["H3701"]],[21,24,["H2091"]],[24,27,["H6213"]],[27,29,["H6091"]],[29,30,["H4616"]],[30,35,["H3772"]]]},{"k":22199,"v":[[0,2,["H5695"]],[2,4,["H8111"]],[4,8,["H2186"]],[8,10,["H639"]],[10,12,["H2734"]],[12,16,["H5704","H4970"]],[16,20,["H3808"]],[20,22,["H3201"]],[22,24,["H5356"]]]},{"k":22200,"v":[[0,1,["H3588"]],[1,3,["H4480","H3478"]],[3,5,["H1931"]],[5,8,["H2796"]],[8,9,["H6213"]],[9,10,["H1931"]],[10,14,["H3808"]],[14,15,["H430"]],[15,16,["H3588"]],[16,18,["H5695"]],[18,20,["H8111"]],[20,22,["H1961"]],[22,25,["H7616"]]]},{"k":22201,"v":[[0,1,["H3588"]],[1,4,["H2232"]],[4,6,["H7307"]],[6,10,["H7114"]],[10,12,["H5492"]],[12,15,["H369"]],[15,16,["H7054"]],[16,18,["H6780"]],[18,20,["H6213"]],[20,21,["H1097"]],[21,22,["H7058"]],[22,25,["H194"]],[25,27,["H6213"]],[27,29,["H2114"]],[29,33,["H1104"]]]},{"k":22202,"v":[[0,1,["H3478"]],[1,4,["H1104"]],[4,5,["H6258"]],[5,8,["H1961"]],[8,11,["H1471"]],[11,14,["H3627"]],[14,17,["H369"]],[17,18,["H2656"]]]},{"k":22203,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,5,["H5927"]],[5,7,["H804"]],[7,10,["H6501"]],[10,11,["H909"]],[11,14,["H669"]],[14,16,["H8566"]],[16,17,["H158"]]]},{"k":22204,"v":[[0,1,["H1571"]],[1,2,["H3588"]],[2,5,["H8566"]],[5,8,["H1471"]],[8,9,["H6258"]],[9,12,["H6908"]],[12,17,["H2490"]],[17,19,["H4592"]],[19,22,["H4480","H4853"]],[22,25,["H4428"]],[25,27,["H8269"]]]},{"k":22205,"v":[[0,1,["H3588"]],[1,2,["H669"]],[2,5,["H7235"]],[5,6,["H4196"]],[6,8,["H2398"]],[8,9,["H4196"]],[9,11,["H1961"]],[11,15,["H2398"]]]},{"k":22206,"v":[[0,3,["H3789"]],[3,8,["H7230"]],[8,11,["H8451"]],[11,15,["H2803"]],[15,16,["H3644"]],[16,19,["H2114"]]]},{"k":22207,"v":[[0,2,["H2076"]],[2,3,["H1320"]],[3,6,["H2077"]],[6,9,["H1890"]],[9,11,["H398"]],[11,15,["H3068"]],[15,16,["H7521"]],[16,18,["H3808"]],[18,19,["H6258"]],[19,22,["H2142"]],[22,24,["H5771"]],[24,26,["H6485"]],[26,28,["H2403"]],[28,29,["H1992"]],[29,31,["H7725"]],[31,33,["H4714"]]]},{"k":22208,"v":[[0,2,["H3478"]],[2,4,["H7911","(H853)"]],[4,6,["H6213"]],[6,8,["H1129"]],[8,9,["H1964"]],[9,11,["H3063"]],[11,13,["H7235"]],[13,14,["H1219"]],[14,15,["H5892"]],[15,19,["H7971"]],[19,21,["H784"]],[21,24,["H5892"]],[24,28,["H398"]],[28,30,["H759"]],[30,31,[]]]},{"k":22209,"v":[[0,1,["H8055"]],[1,2,["H408"]],[2,4,["H3478"]],[4,5,["H413"]],[5,6,["H1524"]],[6,9,["H5971"]],[9,10,["H3588"]],[10,15,["H2181"]],[15,16,["H4480","H5921"]],[16,18,["H430"]],[18,21,["H157"]],[21,23,["H868"]],[23,24,["H5921"]],[24,25,["H3605"]],[25,26,["H1715","H1637"]]]},{"k":22210,"v":[[0,2,["H1637"]],[2,5,["H3342"]],[5,7,["H3808"]],[7,8,["H7462"]],[8,13,["H8492"]],[13,15,["H3584"]],[15,17,[]]]},{"k":22211,"v":[[0,3,["H3808"]],[3,4,["H3427"]],[4,7,["H3068"]],[7,8,["H776"]],[8,10,["H669"]],[10,12,["H7725"]],[12,14,["H4714"]],[14,18,["H398"]],[18,19,["H2931"]],[19,22,["H804"]]]},{"k":22212,"v":[[0,3,["H3808"]],[3,4,["H5258"]],[4,5,["H3196"]],[5,9,["H3068"]],[9,10,["H3808"]],[10,14,["H6149"]],[14,18,["H2077"]],[18,25,["H3899"]],[25,27,["H205"]],[27,28,["H3605"]],[28,30,["H398"]],[30,34,["H2930"]],[34,35,["H3588"]],[35,37,["H3899"]],[37,40,["H5315"]],[40,42,["H3808"]],[42,44,["H935"]],[44,46,["H1004"]],[46,49,["H3068"]]]},{"k":22213,"v":[[0,1,["H4100"]],[1,4,["H6213"]],[4,7,["H4150"]],[7,8,["H3117"]],[8,12,["H3117"]],[12,15,["H2282"]],[15,18,["H3068"]]]},{"k":22214,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,5,["H1980"]],[5,8,["H4480","H7701"]],[8,9,["H4714"]],[9,13,["H6908"]],[13,14,["H4644"]],[14,16,["H6912"]],[16,19,["H4261"]],[19,23,["H3701"]],[23,24,["H7057"]],[24,26,["H3423"]],[26,28,["H2336"]],[28,33,["H168"]]]},{"k":22215,"v":[[0,2,["H3117"]],[2,4,["H6486"]],[4,6,["H935"]],[6,8,["H3117"]],[8,10,["H7966"]],[10,12,["H935"]],[12,13,["H3478"]],[13,15,["H3045"]],[15,18,["H5030"]],[18,21,["H191"]],[21,23,["H7307"]],[23,24,["H376"]],[24,26,["H7696"]],[26,27,["H5921"]],[27,29,["H7230"]],[29,32,["H5771"]],[32,35,["H7227"]],[35,36,["H4895"]]]},{"k":22216,"v":[[0,2,["H6822"]],[2,4,["H669"]],[4,6,["H5973"]],[6,8,["H430"]],[8,11,["H5030"]],[11,14,["H6341"]],[14,17,["H3352"]],[17,18,["H5921"]],[18,19,["H3605"]],[19,21,["H1870"]],[21,23,["H4895"]],[23,26,["H1004"]],[26,29,["H430"]]]},{"k":22217,"v":[[0,3,["H6009"]],[3,4,["H7843"]],[4,9,["H3117"]],[9,11,["H1390"]],[11,15,["H2142"]],[15,17,["H5771"]],[17,20,["H6485"]],[20,22,["H2403"]]]},{"k":22218,"v":[[0,2,["H4672"]],[2,3,["H3478"]],[3,5,["H6025"]],[5,8,["H4057"]],[8,10,["H7200"]],[10,12,["H1"]],[12,15,["H1063"]],[15,19,["H8384"]],[19,23,["H7225"]],[23,25,["H1992"]],[25,26,["H935"]],[26,28,["H1187"]],[28,31,["H5144"]],[31,34,["H1322"]],[34,37,["H8251"]],[37,38,["H1961"]],[38,42,["H157"]]]},{"k":22219,"v":[[0,3,["H669"]],[3,5,["H3519"]],[5,8,["H5774"]],[8,11,["H5775"]],[11,14,["H4480","H3205"]],[14,18,["H4480","H990"]],[18,22,["H4480","H2032"]]]},{"k":22220,"v":[[0,1,["H3588","H518"]],[1,4,["H1431","(H853)"]],[4,6,["H1121"]],[6,10,["H7921"]],[10,18,["H4480","H120"]],[18,20,["H3588"]],[20,21,["H188"]],[21,22,["H1571"]],[22,27,["H5493"]],[27,28,["H4480"]],[28,29,[]]]},{"k":22221,"v":[[0,1,["H669"]],[1,2,["H834"]],[2,4,["H7200"]],[4,5,["H6865"]],[5,7,["H8362"]],[7,11,["H5116"]],[11,13,["H669"]],[13,16,["H3318"]],[16,18,["H1121"]],[18,19,["H413"]],[19,21,["H2026"]]]},{"k":22222,"v":[[0,1,["H5414"]],[1,4,["H3068"]],[4,5,["H4100"]],[5,8,["H5414"]],[8,9,["H5414"]],[9,12,["H7921"]],[12,13,["H7358"]],[13,15,["H6784"]],[15,16,["H7699"]]]},{"k":22223,"v":[[0,1,["H3605"]],[1,3,["H7451"]],[3,6,["H1537"]],[6,7,["H3588"]],[7,8,["H8033"]],[8,10,["H8130"]],[10,12,["H5921"]],[12,14,["H7455"]],[14,17,["H4611"]],[17,22,["H1644"]],[22,25,["H4480","H1004"]],[25,28,["H157"]],[28,30,["H3808"]],[30,31,["H3254"]],[31,32,["H3605"]],[32,34,["H8269"]],[34,36,["H5637"]]]},{"k":22224,"v":[[0,1,["H669"]],[1,3,["H5221"]],[3,5,["H8328"]],[5,8,["H3001"]],[8,11,["H6213"]],[11,12,["H1077"]],[12,13,["H6529"]],[13,14,["H1571"]],[14,15,["H3588"]],[15,18,["H3205"]],[18,22,["H4191"]],[22,25,["H4261"]],[25,29,["H990"]]]},{"k":22225,"v":[[0,2,["H430"]],[2,6,["H3988"]],[6,7,["H3588"]],[7,10,["H3808"]],[10,11,["H8085"]],[11,17,["H1961"]],[17,18,["H5074"]],[18,21,["H1471"]]]},{"k":22226,"v":[[0,1,["H3478"]],[1,4,["H1238"]],[4,5,["H1612"]],[5,8,["H7737"]],[8,9,["H6529"]],[9,15,["H7230"]],[15,18,["H6529"]],[18,21,["H7235"]],[21,23,["H4196"]],[23,27,["H2896"]],[27,30,["H776"]],[30,34,["H3190"]],[34,35,["H4676"]]]},{"k":22227,"v":[[0,2,["H3820"]],[2,4,["H2505"]],[4,5,["H6258"]],[5,10,["H816"]],[10,11,["H1931"]],[11,14,["H6202"]],[14,16,["H4196"]],[16,19,["H7703"]],[19,21,["H4676"]]]},{"k":22228,"v":[[0,1,["H3588"]],[1,2,["H6258"]],[2,5,["H559"]],[5,8,["H369"]],[8,9,["H4428"]],[9,10,["H3588"]],[10,12,["H3372"]],[12,13,["H3808","(H853)"]],[13,15,["H3068"]],[15,16,["H4100"]],[16,20,["H4428"]],[20,21,["H6213"]],[21,23,[]]]},{"k":22229,"v":[[0,3,["H1696"]],[3,4,["H1697"]],[4,5,["H422"]],[5,6,["H7723"]],[6,8,["H3772"]],[8,10,["H1285"]],[10,12,["H4941"]],[12,14,["H6524"]],[14,16,["H7219"]],[16,17,["H5921"]],[17,19,["H8525"]],[19,22,["H7704"]]]},{"k":22230,"v":[[0,2,["H7934"]],[2,4,["H8111"]],[4,6,["H1481"]],[6,10,["H5697"]],[10,12,["H1007"]],[12,13,["H3588"]],[13,15,["H5971"]],[15,18,["H56"]],[18,19,["H5921"]],[19,23,["H3649"]],[23,26,["H1523"]],[26,27,["H5921"]],[27,29,["H5921"]],[29,31,["H3519"]],[31,33,["H3588"]],[33,36,["H1540"]],[36,37,["H4480"]],[37,38,[]]]},{"k":22231,"v":[[0,4,["H1571"]],[4,5,["H2986"]],[5,7,["H804"]],[7,10,["H4503"]],[10,12,["H4428"]],[12,13,["H3377"]],[13,14,["H669"]],[14,16,["H3947"]],[16,17,["H1317"]],[17,19,["H3478"]],[19,22,["H954"]],[22,26,["H4480","H6098"]]]},{"k":22232,"v":[[0,3,["H8111"]],[3,5,["H4428"]],[5,8,["H1820"]],[8,11,["H7110"]],[11,12,["H5921","H6440"]],[12,14,["H4325"]]]},{"k":22233,"v":[[0,3,["H1116"]],[3,6,["H206"]],[6,8,["H2403"]],[8,10,["H3478"]],[10,13,["H8045"]],[13,15,["H6975"]],[15,18,["H1863"]],[18,21,["H5927"]],[21,22,["H5921"]],[22,24,["H4196"]],[24,28,["H559"]],[28,31,["H2022"]],[31,32,["H3680"]],[32,37,["H1389"]],[37,38,["H5307"]],[38,39,["H5921"]],[39,40,[]]]},{"k":22234,"v":[[0,2,["H3478"]],[2,5,["H2398"]],[5,8,["H4480","H3117"]],[8,10,["H1390"]],[10,11,["H8033"]],[11,13,["H5975"]],[13,15,["H4421"]],[15,17,["H1390"]],[17,18,["H5921"]],[18,20,["H1121"]],[20,22,["H5932"]],[22,24,["H3808"]],[24,25,["H5381"]],[25,26,[]]]},{"k":22235,"v":[[0,5,["H185"]],[5,9,["H3256"]],[9,13,["H5971"]],[13,16,["H622"]],[16,17,["H5921"]],[17,22,["H631"]],[22,26,["H8147"]],[26,27,["H5869"]]]},{"k":22236,"v":[[0,2,["H669"]],[2,6,["H5697"]],[6,9,["H3925"]],[9,11,["H157"]],[11,14,["H1758"]],[14,18,["H589"]],[18,20,["H5674"]],[20,21,["H5921"]],[21,23,["H2898"]],[23,24,["H6677"]],[24,28,["H669"]],[28,30,["H7392"]],[30,31,["H3063"]],[31,33,["H2790"]],[33,35,["H3290"]],[35,39,["H7702"]]]},{"k":22237,"v":[[0,1,["H2232"]],[1,5,["H6666"]],[5,6,["H7114"]],[6,7,["H6310"]],[7,8,["H2617"]],[8,10,["H5214"]],[10,13,["H5215"]],[13,17,["H6256"]],[17,19,["H1875","(H853)"]],[19,21,["H3068"]],[21,22,["H5704"]],[22,24,["H935"]],[24,26,["H3384"]],[26,27,["H6664"]],[27,29,[]]]},{"k":22238,"v":[[0,3,["H2790"]],[3,4,["H7562"]],[4,7,["H7114"]],[7,8,["H5766"]],[8,11,["H398"]],[11,13,["H6529"]],[13,15,["H3585"]],[15,16,["H3588"]],[16,19,["H982"]],[19,22,["H1870"]],[22,25,["H7230"]],[25,29,["H1368"]]]},{"k":22239,"v":[[0,4,["H7588"]],[4,5,["H6965"]],[5,8,["H5971"]],[8,10,["H3605"]],[10,12,["H4013"]],[12,15,["H7703"]],[15,17,["H8020"]],[17,18,["H7701"]],[18,19,["H1009"]],[19,22,["H3117"]],[22,24,["H4421"]],[24,26,["H517"]],[26,30,["H7376"]],[30,31,["H5921"]],[31,33,["H1121"]]]},{"k":22240,"v":[[0,1,["H3602"]],[1,3,["H1008"]],[3,4,["H6213"]],[4,7,["H4480","H6440"]],[7,11,["H7451","H7451"]],[11,14,["H7837"]],[14,17,["H4428"]],[17,19,["H3478"]],[19,23,["H1820","H1820"]]]},{"k":22241,"v":[[0,1,["H3588"]],[1,2,["H3478"]],[2,5,["H5288"]],[5,8,["H157"]],[8,11,["H7121"]],[11,13,["H1121"]],[13,16,["H4480","H4714"]]]},{"k":22242,"v":[[0,3,["H7121"]],[3,5,["H3651"]],[5,7,["H1980"]],[7,8,["H4480","H6440"]],[8,11,["H2076"]],[11,13,["H1168"]],[13,16,["H6999"]],[16,19,["H6456"]]]},{"k":22243,"v":[[0,1,["H595"]],[1,6,["H8637","H669"]],[6,7,["H3947"]],[7,9,["H5921"]],[9,11,["H2220"]],[11,14,["H3045"]],[14,15,["H3808"]],[15,16,["H3588"]],[16,18,["H7495"]],[18,19,[]]]},{"k":22244,"v":[[0,2,["H4900"]],[2,5,["H2256"]],[5,8,["H120"]],[8,10,["H5688"]],[10,12,["H160"]],[12,15,["H1961"]],[15,22,["H7311"]],[22,24,["H5923"]],[24,25,["H5921"]],[25,27,["H3895"]],[27,30,["H5186"]],[30,31,["H398"]],[31,32,["H413"]],[32,33,[]]]},{"k":22245,"v":[[0,3,["H3808"]],[3,4,["H7725"]],[4,5,["H413"]],[5,7,["H776"]],[7,9,["H4714"]],[9,12,["H804"]],[12,16,["H4428"]],[16,17,["H3588"]],[17,19,["H3985"]],[19,21,["H7725"]]]},{"k":22246,"v":[[0,3,["H2719"]],[3,5,["H2342"]],[5,8,["H5892"]],[8,11,["H3615"]],[11,13,["H905"]],[13,15,["H398"]],[15,21,["H4480","H4156"]]]},{"k":22247,"v":[[0,3,["H5971"]],[3,5,["H8511"]],[5,7,["H4878"]],[7,12,["H7121"]],[12,14,["H413"]],[14,17,["H5920"]],[17,20,["H3808","H3162"]],[20,22,["H7311"]],[22,23,[]]]},{"k":22248,"v":[[0,1,["H349"]],[1,6,["H5414"]],[6,7,["H669"]],[7,11,["H4042"]],[11,13,["H3478"]],[13,14,["H349"]],[14,17,["H5414"]],[17,20,["H126"]],[20,24,["H7760"]],[24,27,["H6636"]],[27,29,["H3820"]],[29,31,["H2015"]],[31,32,["H5921"]],[32,35,["H5150"]],[35,37,["H3648"]],[37,38,["H3162"]]]},{"k":22249,"v":[[0,3,["H3808"]],[3,4,["H6213"]],[4,6,["H2740"]],[6,9,["H639"]],[9,12,["H3808"]],[12,13,["H7725"]],[13,15,["H7843"]],[15,16,["H669"]],[16,17,["H3588"]],[17,18,["H595"]],[18,20,["H410"]],[20,22,["H3808"]],[22,23,["H376"]],[23,26,["H6918"]],[26,29,["H7130"]],[29,35,["H3808"]],[35,36,["H935"]],[36,39,["H5892"]]]},{"k":22250,"v":[[0,3,["H1980"]],[3,4,["H310"]],[4,6,["H3068"]],[6,9,["H7580"]],[9,12,["H738"]],[12,13,["H3588"]],[13,14,["H1931"]],[14,16,["H7580"]],[16,19,["H1121"]],[19,21,["H2729"]],[21,24,["H4480","H3220"]]]},{"k":22251,"v":[[0,3,["H2729"]],[3,6,["H6833"]],[6,9,["H4480","H4714"]],[9,13,["H3123"]],[13,17,["H4480","H776"]],[17,19,["H804"]],[19,23,["H3427"]],[23,25,["H5921"]],[25,27,["H1004"]],[27,28,["H5002"]],[28,30,["H3068"]]]},{"k":22252,"v":[[0,1,["H669"]],[1,4,["H5437"]],[4,6,["H3585"]],[6,9,["H1004"]],[9,11,["H3478"]],[11,13,["H4820"]],[13,15,["H3063"]],[15,16,["H5750"]],[16,17,["H7300"]],[17,18,["H5973"]],[18,19,["H410"]],[19,22,["H539"]],[22,23,["H5973"]],[23,25,["H6918"]]]},{"k":22253,"v":[[0,1,["H669"]],[1,2,["H7462"]],[2,4,["H7307"]],[4,7,["H7291"]],[7,10,["H6921"]],[10,12,["H3605","H3117"]],[12,13,["H7235"]],[13,14,["H3577"]],[14,16,["H7701"]],[16,20,["H3772"]],[20,22,["H1285"]],[22,23,["H5973"]],[23,25,["H804"]],[25,27,["H8081"]],[27,29,["H2986"]],[29,31,["H4714"]]]},{"k":22254,"v":[[0,2,["H3068"]],[2,6,["H7379"]],[6,7,["H5973"]],[7,8,["H3063"]],[8,11,["H6485","H5921"]],[11,12,["H3290"]],[12,16,["H1870"]],[16,20,["H4611"]],[20,23,["H7725"]],[23,24,[]]]},{"k":22255,"v":[[0,7,["H6117","(H853)","H251"]],[7,10,["H990"]],[10,14,["H202"]],[14,17,["H8280"]],[17,18,["H854"]],[18,19,["H430"]]]},{"k":22256,"v":[[0,4,["H8280"]],[4,5,["H413"]],[5,7,["H4397"]],[7,9,["H3201"]],[9,11,["H1058"]],[11,14,["H2603"]],[14,18,["H4672"]],[18,21,["H1008"]],[21,23,["H8033"]],[23,25,["H1696"]],[25,26,["H5973"]],[26,27,[]]]},{"k":22257,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,6,["H6635"]],[6,8,["H3068"]],[8,11,["H2143"]]]},{"k":22258,"v":[[0,2,["H7725"]],[2,3,["H859"]],[3,6,["H430"]],[6,7,["H8104"]],[7,8,["H2617"]],[8,10,["H4941"]],[10,12,["H6960"]],[12,13,["H413"]],[13,15,["H430"]],[15,16,["H8548"]]]},{"k":22259,"v":[[0,4,["H3667"]],[4,6,["H3976"]],[6,8,["H4820"]],[8,12,["H3027"]],[12,14,["H157"]],[14,16,["H6231"]]]},{"k":22260,"v":[[0,2,["H669"]],[2,3,["H559"]],[3,4,["H389"]],[4,8,["H6238"]],[8,13,["H4672"]],[13,14,["H202"]],[14,16,["H3605"]],[16,18,["H3018"]],[18,21,["H4672"]],[21,22,["H3808"]],[22,23,["H5771"]],[23,26,["H834"]],[26,28,["H2399"]]]},{"k":22261,"v":[[0,2,["H595"]],[2,6,["H3068"]],[6,8,["H430"]],[8,11,["H4480","H776"]],[11,13,["H4714"]],[13,15,["H5750"]],[15,19,["H3427"]],[19,21,["H168"]],[21,25,["H3117"]],[25,29,["H4150"]]]},{"k":22262,"v":[[0,4,["H1696"]],[4,5,["H5921"]],[5,7,["H5030"]],[7,9,["H595"]],[9,11,["H7235"]],[11,12,["H2377"]],[12,15,["H1819"]],[15,18,["H3027"]],[18,21,["H5030"]]]},{"k":22263,"v":[[0,3,["H205"]],[3,5,["H1568"]],[5,6,["H389"]],[6,8,["H1961"]],[8,9,["H7723"]],[9,11,["H2076"]],[11,12,["H7794"]],[12,14,["H1537"]],[14,15,["H1571"]],[15,17,["H4196"]],[17,20,["H1530"]],[20,21,["H5921"]],[21,23,["H8525"]],[23,26,["H7704"]]]},{"k":22264,"v":[[0,2,["H3290"]],[2,3,["H1272"]],[3,6,["H7704"]],[6,8,["H758"]],[8,10,["H3478"]],[10,11,["H5647"]],[11,14,["H802"]],[14,18,["H802"]],[18,20,["H8104"]],[20,21,[]]]},{"k":22265,"v":[[0,4,["H5030"]],[4,6,["H3068"]],[6,7,["H5927","(H853)"]],[7,8,["H3478"]],[8,11,["H4480","H4714"]],[11,15,["H5030"]],[15,18,["H8104"]]]},{"k":22266,"v":[[0,1,["H669"]],[1,5,["H3707"]],[5,7,["H8563"]],[7,11,["H5203"]],[11,13,["H1818"]],[13,14,["H5921"]],[14,18,["H2781"]],[18,21,["H113"]],[21,22,["H7725"]],[22,24,[]]]},{"k":22267,"v":[[0,2,["H669"]],[2,3,["H1696"]],[3,4,["H7578"]],[4,5,["H1931"]],[5,6,["H5375"]],[6,9,["H3478"]],[9,13,["H816"]],[13,15,["H1168"]],[15,17,["H4191"]]]},{"k":22268,"v":[[0,2,["H6258"]],[2,4,["H2398"]],[4,7,["H3254"]],[7,10,["H6213"]],[10,13,["H4541"]],[13,16,["H4480","H3701"]],[16,18,["H6091"]],[18,23,["H8394"]],[23,24,["H3605"]],[24,28,["H4639"]],[28,31,["H2796"]],[31,32,["H1992"]],[32,33,["H559"]],[33,38,["H120"]],[38,40,["H2076"]],[40,41,["H5401"]],[41,43,["H5695"]]]},{"k":22269,"v":[[0,1,["H3651"]],[1,4,["H1961"]],[4,7,["H1242"]],[7,8,["H6051"]],[8,12,["H7925"]],[12,13,["H2919"]],[13,16,["H1980"]],[16,19,["H4671"]],[19,25,["H5590"]],[25,29,["H4480","H1637"]],[29,33,["H6227"]],[33,37,["H4480","H699"]]]},{"k":22270,"v":[[0,2,["H595"]],[2,5,["H3068"]],[5,7,["H430"]],[7,10,["H4480","H776"]],[10,12,["H4714"]],[12,16,["H3045"]],[16,17,["H3808"]],[17,18,["H430"]],[18,19,["H2108"]],[19,24,["H369"]],[24,25,["H3467"]],[25,26,["H1115"]],[26,27,[]]]},{"k":22271,"v":[[0,1,["H589"]],[1,3,["H3045"]],[3,7,["H4057"]],[7,10,["H776"]],[10,13,["H8514"]]]},{"k":22272,"v":[[0,4,["H4830"]],[4,8,["H7646"]],[8,11,["H7646"]],[11,14,["H3820"]],[14,16,["H7311"]],[16,17,["H5921","H3651"]],[17,20,["H7911"]],[20,21,[]]]},{"k":22273,"v":[[0,4,["H1961"]],[4,7,["H3644"]],[7,9,["H7826"]],[9,12,["H5246"]],[12,13,["H5921"]],[13,15,["H1870"]],[15,18,["H7789"]],[18,19,[]]]},{"k":22274,"v":[[0,3,["H6298"]],[3,7,["H1677"]],[7,10,["H7909"]],[10,16,["H7167"]],[16,18,["H5458"]],[18,21,["H3820"]],[21,23,["H8033"]],[23,26,["H398"]],[26,30,["H3833"]],[30,32,["H7704"]],[32,33,["H2416"]],[33,35,["H1234"]],[35,36,[]]]},{"k":22275,"v":[[0,2,["H3478"]],[2,5,["H7843"]],[5,7,["H3588"]],[7,12,["H5828"]]]},{"k":22276,"v":[[0,3,["H165"]],[3,5,["H4428"]],[5,6,["H645"]],[6,12,["H3467"]],[12,15,["H3605"]],[15,17,["H5892"]],[17,20,["H8199"]],[20,22,["H834"]],[22,24,["H559"]],[24,25,["H5414"]],[25,28,["H4428"]],[28,30,["H8269"]]]},{"k":22277,"v":[[0,2,["H5414"]],[2,5,["H4428"]],[5,8,["H639"]],[8,12,["H3947"]],[12,15,["H5678"]]]},{"k":22278,"v":[[0,2,["H5771"]],[2,4,["H669"]],[4,7,["H6887"]],[7,9,["H2403"]],[9,11,["H6845"]]]},{"k":22279,"v":[[0,2,["H2256"]],[2,6,["H3205"]],[6,8,["H935"]],[8,11,["H1931"]],[11,14,["H3808","H2450"]],[14,15,["H1121"]],[15,16,["H3588"]],[16,19,["H3808"]],[19,20,["H5975"]],[20,21,["H6256"]],[21,28,["H4866"]],[28,30,["H1121"]]]},{"k":22280,"v":[[0,3,["H6299"]],[3,7,["H4480","H3027"]],[7,10,["H7585"]],[10,13,["H1350"]],[13,16,["H4480","H4194"]],[16,18,["H4194"]],[18,21,["H165"]],[21,23,["H1698"]],[23,25,["H7585"]],[25,28,["H165"]],[28,30,["H6987"]],[30,31,["H5164"]],[31,34,["H5641"]],[34,37,["H4480","H5869"]]]},{"k":22281,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,4,["H6500"]],[4,5,["H996"]],[5,7,["H251"]],[7,10,["H6921"]],[10,12,["H935"]],[12,14,["H7307"]],[14,17,["H3068"]],[17,20,["H5927"]],[20,23,["H4480","H4057"]],[23,26,["H4726"]],[26,29,["H954"]],[29,32,["H4599"]],[32,36,["H2717"]],[36,37,["H1931"]],[37,39,["H8154"]],[39,41,["H214"]],[41,43,["H3605"]],[43,44,["H2532"]],[44,45,["H3627"]]]},{"k":22282,"v":[[0,1,["H8111"]],[1,4,["H816"]],[4,5,["H3588"]],[5,8,["H4784"]],[8,11,["H430"]],[11,14,["H5307"]],[14,17,["H2719"]],[17,19,["H5768"]],[19,24,["H7376"]],[24,29,["H2030"]],[29,33,["H1234"]]]},{"k":22283,"v":[[0,2,["H3478"]],[2,3,["H7725"]],[3,4,["H5704"]],[4,6,["H3068"]],[6,8,["H430"]],[8,9,["H3588"]],[9,12,["H3782"]],[12,15,["H5771"]]]},{"k":22284,"v":[[0,1,["H3947"]],[1,2,["H5973"]],[2,4,["H1697"]],[4,6,["H7725"]],[6,7,["H413"]],[7,9,["H3068"]],[9,10,["H559"]],[10,11,["H413"]],[11,14,["H5375"]],[14,15,["H3605"]],[15,16,["H5771"]],[16,18,["H3947"]],[18,20,["H2895"]],[20,24,["H7999"]],[24,26,["H6499"]],[26,29,["H8193"]]]},{"k":22285,"v":[[0,1,["H804"]],[1,3,["H3808"]],[3,4,["H3467"]],[4,8,["H3808"]],[8,9,["H7392"]],[9,10,["H5921"]],[10,11,["H5483"]],[11,12,["H3808"]],[12,15,["H559"]],[15,17,["H5750"]],[17,20,["H4639"]],[20,23,["H3027"]],[23,27,["H430"]],[27,28,["H834"]],[28,32,["H3490"]],[32,34,["H7355"]]]},{"k":22286,"v":[[0,3,["H7495"]],[3,5,["H4878"]],[5,8,["H157"]],[8,10,["H5071"]],[10,11,["H3588"]],[11,13,["H639"]],[13,16,["H7725"]],[16,17,["H4480"]],[17,18,[]]]},{"k":22287,"v":[[0,3,["H1961"]],[3,6,["H2919"]],[6,8,["H3478"]],[8,11,["H6524"]],[11,14,["H7799"]],[14,17,["H5221"]],[17,19,["H8328"]],[19,21,["H3844"]]]},{"k":22288,"v":[[0,2,["H3127"]],[2,4,["H1980"]],[4,7,["H1935"]],[7,9,["H1961"]],[9,13,["H2132"]],[13,16,["H7381"]],[16,18,["H3844"]]]},{"k":22289,"v":[[0,3,["H3427"]],[3,6,["H6738"]],[6,8,["H7725"]],[8,11,["H2421"]],[11,14,["H1715"]],[14,16,["H6524"]],[16,19,["H1612"]],[19,21,["H2143"]],[21,27,["H3196"]],[27,29,["H3844"]]]},{"k":22290,"v":[[0,1,["H669"]],[1,4,["H4100"]],[4,10,["H5750"]],[10,12,["H6091"]],[12,13,["H589"]],[13,15,["H6030"]],[15,18,["H7789"]],[18,20,["H589"]],[20,24,["H7488"]],[24,26,["H1265"]],[26,27,["H4480"]],[27,31,["H6529"]],[31,32,["H4672"]]]},{"k":22291,"v":[[0,1,["H4310"]],[1,3,["H2450"]],[3,7,["H995"]],[7,8,["H428"]],[8,10,["H995"]],[10,14,["H3045"]],[14,16,["H3588"]],[16,18,["H1870"]],[18,21,["H3068"]],[21,23,["H3477"]],[23,26,["H6662"]],[26,28,["H1980"]],[28,33,["H6586"]],[33,35,["H3782"]],[35,36,[]]]},{"k":22292,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H834"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3100"]],[9,11,["H1121"]],[11,13,["H6602"]]]},{"k":22293,"v":[[0,1,["H8085"]],[1,2,["H2063"]],[2,5,["H2205"]],[5,8,["H238"]],[8,9,["H3605"]],[9,11,["H3427"]],[11,14,["H776"]],[14,16,["H2063"]],[16,17,["H1961"]],[17,20,["H3117"]],[20,22,["H518"]],[22,25,["H3117"]],[25,28,["H1"]]]},{"k":22294,"v":[[0,1,["H5608"]],[1,4,["H1121"]],[4,5,["H5921"]],[5,10,["H1121"]],[10,13,["H1121"]],[13,16,["H1121"]],[16,17,["H312"]],[17,18,["H1755"]]]},{"k":22295,"v":[[0,4,["H1501"]],[4,6,["H3499"]],[6,9,["H697"]],[9,10,["H398"]],[10,15,["H697"]],[15,17,["H3499"]],[17,20,["H3218"]],[20,21,["H398"]],[21,26,["H3218"]],[26,28,["H3499"]],[28,31,["H2625"]],[31,32,["H398"]]]},{"k":22296,"v":[[0,1,["H6974"]],[1,3,["H7910"]],[3,5,["H1058"]],[5,7,["H3213"]],[7,8,["H3605"]],[8,10,["H8354"]],[10,12,["H3196"]],[12,14,["H5921"]],[14,17,["H6071"]],[17,18,["H3588"]],[18,22,["H3772"]],[22,25,["H4480","H6310"]]]},{"k":22297,"v":[[0,1,["H3588"]],[1,3,["H1471"]],[3,6,["H5927"]],[6,7,["H5921"]],[7,9,["H776"]],[9,10,["H6099"]],[10,12,["H369"]],[12,13,["H4557"]],[13,15,["H8127"]],[15,18,["H8127"]],[18,21,["H738"]],[21,27,["H4973"]],[27,31,["H3833"]]]},{"k":22298,"v":[[0,3,["H7760"]],[3,5,["H1612"]],[5,6,["H8047"]],[6,8,["H7111"]],[8,11,["H8384"]],[11,17,["H2834","H2834"]],[17,21,["H7993"]],[21,23,["H8299"]],[23,27,["H3835"]]]},{"k":22299,"v":[[0,1,["H421"]],[1,4,["H1330"]],[4,5,["H2296"]],[5,7,["H8242"]],[7,8,["H5921"]],[8,10,["H1167"]],[10,13,["H5271"]]]},{"k":22300,"v":[[0,3,["H4503"]],[3,7,["H5262"]],[7,10,["H3772"]],[10,13,["H4480","H1004"]],[13,16,["H3068"]],[16,18,["H3548"]],[18,20,["H3068"]],[20,21,["H8334"]],[21,22,["H56"]]]},{"k":22301,"v":[[0,2,["H7704"]],[2,4,["H7703"]],[4,6,["H127"]],[6,7,["H56"]],[7,8,["H3588"]],[8,10,["H1715"]],[10,12,["H7703"]],[12,15,["H8492"]],[15,18,["H3001"]],[18,20,["H3323"]],[20,21,["H535"]]]},{"k":22302,"v":[[0,3,["H954"]],[3,6,["H406"]],[6,7,["H3213"]],[7,10,["H3755"]],[10,11,["H5921"]],[11,13,["H2406"]],[13,15,["H5921"]],[15,17,["H8184"]],[17,18,["H3588"]],[18,20,["H7105"]],[20,23,["H7704"]],[23,25,["H6"]]]},{"k":22303,"v":[[0,2,["H1612"]],[2,5,["H3001"]],[5,9,["H8384"]],[9,10,["H535"]],[10,13,["H7416"]],[13,16,["H8558"]],[16,17,["H1571"]],[17,21,["H8598"]],[21,23,["H3605"]],[23,25,["H6086"]],[25,28,["H7704"]],[28,30,["H3001"]],[30,31,["H3588"]],[31,32,["H8342"]],[32,35,["H3001"]],[35,36,["H4480"]],[36,38,["H1121"]],[38,40,["H120"]]]},{"k":22304,"v":[[0,1,["H2296"]],[1,4,["H5594"]],[4,6,["H3548"]],[6,7,["H3213"]],[7,9,["H8334"]],[9,12,["H4196"]],[12,13,["H935"]],[13,16,["H3885"]],[16,18,["H8242"]],[18,20,["H8334"]],[20,23,["H430"]],[23,24,["H3588"]],[24,27,["H4503"]],[27,31,["H5262"]],[31,33,["H4513"]],[33,36,["H4480","H1004"]],[36,39,["H430"]]]},{"k":22305,"v":[[0,1,["H6942"]],[1,4,["H6685"]],[4,5,["H7121"]],[5,8,["H6116"]],[8,9,["H622"]],[9,11,["H2205"]],[11,13,["H3605"]],[13,15,["H3427"]],[15,18,["H776"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,26,["H430"]],[26,28,["H2199"]],[28,29,["H413"]],[29,31,["H3068"]]]},{"k":22306,"v":[[0,1,["H162"]],[1,4,["H3117"]],[4,5,["H3588"]],[5,7,["H3117"]],[7,10,["H3068"]],[10,13,["H7138"]],[13,17,["H7701"]],[17,20,["H4480","H7706"]],[20,23,["H935"]]]},{"k":22307,"v":[[0,2,["H3808"]],[2,4,["H400"]],[4,6,["H3772"]],[6,7,["H5048"]],[7,9,["H5869"]],[9,11,["H8057"]],[11,13,["H1524"]],[13,16,["H4480","H1004"]],[16,19,["H430"]]]},{"k":22308,"v":[[0,2,["H6507"]],[2,4,["H5685"]],[4,5,["H8478"]],[5,7,["H4053"]],[7,9,["H214"]],[9,12,["H8074"]],[12,14,["H4460"]],[14,17,["H2040"]],[17,18,["H3588"]],[18,20,["H1715"]],[20,22,["H3001"]]]},{"k":22309,"v":[[0,1,["H4100"]],[1,4,["H929"]],[4,5,["H584"]],[5,7,["H5739"]],[7,9,["H1241"]],[9,11,["H943"]],[11,12,["H3588"]],[12,15,["H369"]],[15,16,["H4829"]],[16,17,["H1571"]],[17,19,["H5739"]],[19,21,["H6629"]],[21,24,["H816"]]]},{"k":22310,"v":[[0,2,["H3068"]],[2,3,["H413"]],[3,7,["H7121"]],[7,8,["H3588"]],[8,10,["H784"]],[10,12,["H398"]],[12,14,["H4999"]],[14,17,["H4057"]],[17,20,["H3852"]],[20,22,["H3857"]],[22,23,["H3605"]],[23,25,["H6086"]],[25,28,["H7704"]]]},{"k":22311,"v":[[0,2,["H929"]],[2,5,["H7704"]],[5,6,["H6165"]],[6,7,["H1571"]],[7,8,["H413"]],[8,10,["H3588"]],[10,12,["H650"]],[12,14,["H4325"]],[14,17,["H3001"]],[17,20,["H784"]],[20,22,["H398"]],[22,24,["H4999"]],[24,27,["H4057"]]]},{"k":22312,"v":[[0,1,["H8628"]],[1,4,["H7782"]],[4,6,["H6726"]],[6,10,["H7321"]],[10,13,["H6944"]],[13,14,["H2022"]],[14,16,["H3605"]],[16,18,["H3427"]],[18,21,["H776"]],[21,22,["H7264"]],[22,23,["H3588"]],[23,25,["H3117"]],[25,28,["H3068"]],[28,29,["H935"]],[29,30,["H3588"]],[30,35,["H7138"]]]},{"k":22313,"v":[[0,2,["H3117"]],[2,4,["H2822"]],[4,7,["H653"]],[7,9,["H3117"]],[9,11,["H6051"]],[11,15,["H6205"]],[15,18,["H7837"]],[18,19,["H6566"]],[19,20,["H5921"]],[20,22,["H2022"]],[22,24,["H7227"]],[24,25,["H5971"]],[25,28,["H6099"]],[28,31,["H3808"]],[31,32,["H1961"]],[32,33,["H4480","H5769"]],[33,35,["H3644"]],[35,36,["H3808"]],[36,40,["H3254"]],[40,41,["H310"]],[41,44,["H5704"]],[44,46,["H8141"]],[46,49,["H1755","H1755"]]]},{"k":22314,"v":[[0,2,["H784"]],[2,3,["H398"]],[3,4,["H6440"]],[4,7,["H310"]],[7,10,["H3852"]],[10,11,["H3857"]],[11,13,["H776"]],[13,17,["H1588"]],[17,19,["H5731"]],[19,20,["H6440"]],[20,23,["H310"]],[23,26,["H8077"]],[26,27,["H4057"]],[27,28,["H1571"]],[28,30,["H3808"]],[30,32,["H1961","H6413"]],[32,33,[]]]},{"k":22315,"v":[[0,2,["H4758"]],[2,8,["H4758"]],[8,10,["H5483"]],[10,13,["H6571"]],[13,14,["H3651"]],[14,17,["H7323"]]]},{"k":22316,"v":[[0,3,["H6963"]],[3,5,["H4818"]],[5,6,["H5921"]],[6,8,["H7218"]],[8,10,["H2022"]],[10,13,["H7540"]],[13,16,["H6963"]],[16,19,["H3851"]],[19,21,["H784"]],[21,23,["H398"]],[23,25,["H7179"]],[25,28,["H6099"]],[28,29,["H5971"]],[29,33,["H6186","H4421"]]]},{"k":22317,"v":[[0,3,["H4480","H6440"]],[3,5,["H5971"]],[5,9,["H2342"]],[9,10,["H3605"]],[10,11,["H6440"]],[11,13,["H6908"]],[13,14,["H6289"]]]},{"k":22318,"v":[[0,3,["H7323"]],[3,6,["H1368"]],[6,9,["H5927"]],[9,11,["H2346"]],[11,13,["H376"]],[13,15,["H4421"]],[15,19,["H1980"]],[19,21,["H376"]],[21,24,["H1870"]],[24,28,["H3808"]],[28,29,["H5670"]],[29,31,["H734"]]]},{"k":22319,"v":[[0,1,["H3808"]],[1,3,["H376"]],[3,4,["H1766"]],[4,5,["H251"]],[5,8,["H1980"]],[8,10,["H1397"]],[10,13,["H4546"]],[13,17,["H5307"]],[17,18,["H1157"]],[18,20,["H7973"]],[20,23,["H3808"]],[23,25,["H1214"]]]},{"k":22320,"v":[[0,6,["H8264"]],[6,9,["H5892"]],[9,12,["H7323"]],[12,15,["H2346"]],[15,19,["H5927"]],[19,22,["H1004"]],[22,26,["H935"]],[26,27,["H1157"]],[27,29,["H2474"]],[29,32,["H1590"]]]},{"k":22321,"v":[[0,2,["H776"]],[2,4,["H7264"]],[4,5,["H6440"]],[5,8,["H8064"]],[8,10,["H7493"]],[10,12,["H8121"]],[12,15,["H3394"]],[15,18,["H6937"]],[18,21,["H3556"]],[21,23,["H622"]],[23,25,["H5051"]]]},{"k":22322,"v":[[0,3,["H3068"]],[3,5,["H5414"]],[5,7,["H6963"]],[7,8,["H6440"]],[8,10,["H2428"]],[10,11,["H3588"]],[11,13,["H4264"]],[13,15,["H3966"]],[15,16,["H7227"]],[16,17,["H3588"]],[17,20,["H6099"]],[20,22,["H6213"]],[22,24,["H1697"]],[24,25,["H3588"]],[25,27,["H3117"]],[27,30,["H3068"]],[30,32,["H1419"]],[32,34,["H3966"]],[34,35,["H3372"]],[35,37,["H4310"]],[37,39,["H3557"]],[39,40,[]]]},{"k":22323,"v":[[0,2,["H1571"]],[2,3,["H6258"]],[3,4,["H5002"]],[4,6,["H3068"]],[6,7,["H7725"]],[7,10,["H5704"]],[10,13,["H3605"]],[13,15,["H3824"]],[15,18,["H6685"]],[18,21,["H1065"]],[21,24,["H4553"]]]},{"k":22324,"v":[[0,2,["H7167"]],[2,4,["H3824"]],[4,6,["H408"]],[6,8,["H899"]],[8,10,["H7725"]],[10,11,["H413"]],[11,13,["H3068"]],[13,15,["H430"]],[15,16,["H3588"]],[16,17,["H1931"]],[17,19,["H2587"]],[19,21,["H7349"]],[21,22,["H750"]],[22,24,["H639"]],[24,27,["H7227"]],[27,28,["H2617"]],[28,30,["H5162"]],[30,32,["H5921"]],[32,34,["H7451"]]]},{"k":22325,"v":[[0,1,["H4310"]],[1,2,["H3045"]],[2,6,["H7725"]],[6,8,["H5162"]],[8,10,["H7604"]],[10,12,["H1293"]],[12,13,["H310"]],[13,18,["H4503"]],[18,22,["H5262"]],[22,25,["H3068"]],[25,27,["H430"]]]},{"k":22326,"v":[[0,1,["H8628"]],[1,3,["H7782"]],[3,5,["H6726"]],[5,6,["H6942"]],[6,8,["H6685"]],[8,9,["H7121"]],[9,12,["H6116"]]]},{"k":22327,"v":[[0,1,["H622"]],[1,3,["H5971"]],[3,4,["H6942"]],[4,6,["H6951"]],[6,7,["H6908"]],[7,9,["H2205"]],[9,10,["H622"]],[10,12,["H5768"]],[12,16,["H3243"]],[16,18,["H7699"]],[18,21,["H2860"]],[21,23,["H3318"]],[23,26,["H4480","H2315"]],[26,29,["H3618"]],[29,33,["H4480","H2646"]]]},{"k":22328,"v":[[0,3,["H3548"]],[3,5,["H8334"]],[5,8,["H3068"]],[8,9,["H1058"]],[9,10,["H996"]],[10,12,["H197"]],[12,15,["H4196"]],[15,19,["H559"]],[19,20,["H2347","H5921"]],[20,22,["H5971"]],[22,24,["H3068"]],[24,26,["H5414"]],[26,27,["H408"]],[27,29,["H5159"]],[29,31,["H2781"]],[31,34,["H1471"]],[34,36,["H4910"]],[36,39,["H4100"]],[39,42,["H559"]],[42,45,["H5971"]],[45,46,["H346"]],[46,49,["H430"]]]},{"k":22329,"v":[[0,4,["H3068"]],[4,6,["H7065"]],[6,9,["H776"]],[9,11,["H2550","H5921"]],[11,13,["H5971"]]]},{"k":22330,"v":[[0,3,["H3068"]],[3,5,["H6030"]],[5,7,["H559"]],[7,10,["H5971"]],[10,11,["H2009"]],[11,14,["H7971"]],[14,15,["(H853)"]],[15,16,["H1715"]],[16,18,["H8492"]],[18,20,["H3323"]],[20,25,["H7646"]],[25,26,["H854"]],[26,30,["H3808"]],[30,31,["H5750"]],[31,32,["H5414"]],[32,35,["H2781"]],[35,38,["H1471"]]]},{"k":22331,"v":[[0,6,["H7368"]],[6,7,["H4480","H5921"]],[7,10,["H6830"]],[10,14,["H5080"]],[14,16,["H413"]],[16,18,["H776"]],[18,19,["H6723"]],[19,21,["H8077"]],[21,22,["H854"]],[22,24,["H6440"]],[24,25,["H413"]],[25,27,["H6931"]],[27,28,["H3220"]],[28,32,["H5490"]],[32,33,["H413"]],[33,35,["H314"]],[35,36,["H3220"]],[36,39,["H889"]],[39,42,["H5927"]],[42,46,["H6709"]],[46,49,["H5927"]],[49,50,["H3588"]],[50,53,["H6213"]],[53,55,["H1431"]]]},{"k":22332,"v":[[0,1,["H3372"]],[1,2,["H408"]],[2,4,["H127"]],[4,6,["H1523"]],[6,8,["H8055"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,13,["H6213"]],[13,15,["H1431"]]]},{"k":22333,"v":[[0,3,["H3372","H408"]],[3,5,["H929"]],[5,8,["H7704"]],[8,9,["H3588"]],[9,11,["H4999"]],[11,14,["H4057"]],[14,16,["H1876"]],[16,17,["H3588"]],[17,19,["H6086"]],[19,20,["H5375"]],[20,22,["H6529"]],[22,25,["H8384"]],[25,28,["H1612"]],[28,30,["H5414"]],[30,32,["H2428"]]]},{"k":22334,"v":[[0,2,["H1523"]],[2,5,["H1121"]],[5,7,["H6726"]],[7,9,["H8055"]],[9,12,["H3068"]],[12,14,["H430"]],[14,15,["H3588"]],[15,18,["H5414"]],[18,19,["(H853)"]],[19,22,["H4175"]],[22,23,["H6666"]],[23,30,["H3381"]],[30,34,["H1653"]],[34,37,["H4175"]],[37,41,["H4456"]],[41,44,["H7223"]],[44,45,[]]]},{"k":22335,"v":[[0,3,["H1637"]],[3,6,["H4390"]],[6,8,["H1250"]],[8,11,["H3342"]],[11,13,["H7783"]],[13,15,["H8492"]],[15,17,["H3323"]]]},{"k":22336,"v":[[0,4,["H7999"]],[4,6,["(H853)"]],[6,8,["H8141"]],[8,9,["H834"]],[9,11,["H697"]],[11,13,["H398"]],[13,15,["H3218"]],[15,18,["H2625"]],[18,21,["H1501"]],[21,23,["H1419"]],[23,24,["H2428"]],[24,25,["H834"]],[25,27,["H7971"]],[27,29,[]]]},{"k":22337,"v":[[0,6,["H398","H398"]],[6,9,["H7646"]],[9,11,["H1984","(H853)"]],[11,13,["H8034"]],[13,16,["H3068"]],[16,18,["H430"]],[18,19,["H834"]],[19,21,["H6213"]],[21,22,["H6381"]],[22,23,["H5973"]],[23,27,["H5971"]],[27,29,["H3808","H5769"]],[29,31,["H954"]]]},{"k":22338,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,10,["H7130"]],[10,12,["H3478"]],[12,15,["H589"]],[15,18,["H3068"]],[18,20,["H430"]],[20,22,["H369"]],[22,23,["H5750"]],[23,26,["H5971"]],[26,28,["H3808","H5769"]],[28,30,["H954"]]]},{"k":22339,"v":[[0,6,["H1961"]],[6,7,["H310","H3651"]],[7,12,["H8210","(H853)"]],[12,14,["H7307"]],[14,15,["H5921"]],[15,16,["H3605"]],[16,17,["H1320"]],[17,20,["H1121"]],[20,23,["H1323"]],[23,25,["H5012"]],[25,28,["H2205"]],[28,30,["H2492"]],[30,31,["H2472"]],[31,34,["H970"]],[34,36,["H7200"]],[36,37,["H2384"]]]},{"k":22340,"v":[[0,2,["H1571"]],[2,3,["H5921"]],[3,5,["H5650"]],[5,7,["H5921"]],[7,9,["H8198"]],[9,11,["H1992"]],[11,12,["H3117"]],[12,16,["H8210","(H853)"]],[16,18,["H7307"]]]},{"k":22341,"v":[[0,4,["H5414"]],[4,5,["H4159"]],[5,8,["H8064"]],[8,12,["H776"]],[12,13,["H1818"]],[13,15,["H784"]],[15,17,["H8490"]],[17,19,["H6227"]]]},{"k":22342,"v":[[0,2,["H8121"]],[2,5,["H2015"]],[5,7,["H2822"]],[7,10,["H3394"]],[10,12,["H1818"]],[12,13,["H6440"]],[13,15,["H1419"]],[15,18,["H3372"]],[18,19,["H3117"]],[19,22,["H3068"]],[22,23,["H935"]]]},{"k":22343,"v":[[0,6,["H1961"]],[6,8,["H3605","H834"]],[8,10,["H7121"]],[10,13,["H8034"]],[13,16,["H3068"]],[16,19,["H4422"]],[19,20,["H3588"]],[20,22,["H2022"]],[22,23,["H6726"]],[23,26,["H3389"]],[26,28,["H1961"]],[28,29,["H6413"]],[29,30,["H834"]],[30,32,["H3068"]],[32,34,["H559"]],[34,38,["H8300"]],[38,39,["H834"]],[39,41,["H3068"]],[41,43,["H7121"]]]},{"k":22344,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H1992"]],[4,5,["H3117"]],[5,8,["H1931"]],[8,9,["H6256"]],[9,10,["H834"]],[10,14,["H7725","(H853)"]],[14,16,["H7622"]],[16,18,["H3063"]],[18,20,["H3389"]]]},{"k":22345,"v":[[0,4,["H6908","(H853)"]],[4,5,["H3605"]],[5,6,["H1471"]],[6,11,["H3381"]],[11,12,["H413"]],[12,14,["H6010"]],[14,16,["H3092"]],[16,19,["H8199"]],[19,20,["H5973"]],[20,22,["H8033"]],[22,23,["H5921"]],[23,25,["H5971"]],[25,29,["H5159"]],[29,30,["H3478"]],[30,31,["H834"]],[31,34,["H6340"]],[34,37,["H1471"]],[37,39,["H2505"]],[39,41,["H776"]]]},{"k":22346,"v":[[0,4,["H3032"]],[4,5,["H1486"]],[5,6,["H413"]],[6,8,["H5971"]],[8,11,["H5414"]],[11,13,["H3206"]],[13,16,["H2181"]],[16,18,["H4376"]],[18,20,["H3207"]],[20,22,["H3196"]],[22,26,["H8354"]]]},{"k":22347,"v":[[0,1,["H1571"]],[1,3,["H4100"]],[3,5,["H859"]],[5,11,["H6865"]],[11,13,["H6721"]],[13,15,["H3605"]],[15,17,["H1552"]],[17,19,["H6429"]],[19,21,["H859"]],[21,22,["H7999","H5921"]],[22,25,["H1576"]],[25,27,["H518"]],[27,28,["H859"]],[28,29,["H1580","H5921"]],[29,31,["H7031"]],[31,33,["H4120"]],[33,36,["H7725"]],[36,38,["H1576"]],[38,42,["H7218"]]]},{"k":22348,"v":[[0,1,["H834"]],[1,4,["H3947"]],[4,6,["H3701"]],[6,9,["H2091"]],[9,12,["H935"]],[12,15,["H1964"]],[15,17,["H2896"]],[17,19,["H4261"]]]},{"k":22349,"v":[[0,2,["H1121"]],[2,5,["H3063"]],[5,8,["H1121"]],[8,10,["H3389"]],[10,13,["H4376"]],[13,16,["H1121","H3125"]],[16,17,["H4616"]],[17,22,["H7368"]],[22,23,["H4480","H5921"]],[23,25,["H1366"]]]},{"k":22350,"v":[[0,1,["H2009"]],[1,4,["H5782"]],[4,7,["H4480"]],[7,9,["H4725"]],[9,10,["H834","H8033"]],[10,13,["H4376"]],[13,17,["H7725"]],[17,19,["H1576"]],[19,23,["H7218"]]]},{"k":22351,"v":[[0,4,["H4376","(H853)"]],[4,6,["H1121"]],[6,9,["H1323"]],[9,12,["H3027"]],[12,15,["H1121"]],[15,17,["H3063"]],[17,21,["H4376"]],[21,25,["H7615"]],[25,26,["H413"]],[26,28,["H1471"]],[28,30,["H7350"]],[30,31,["H3588"]],[31,33,["H3068"]],[33,35,["H1696"]],[35,36,[]]]},{"k":22352,"v":[[0,1,["H7121"]],[1,3,["H2063"]],[3,6,["H1471"]],[6,7,["H6942"]],[7,8,["H4421"]],[8,10,["H5782"]],[10,13,["H1368"]],[13,15,["H3605"]],[15,17,["H376"]],[17,19,["H4421"]],[19,21,["H5066"]],[21,25,["H5927"]]]},{"k":22353,"v":[[0,1,["H3807"]],[1,3,["H855"]],[3,5,["H2719"]],[5,8,["H4211"]],[8,10,["H7420"]],[10,13,["H2523"]],[13,14,["H559"]],[14,15,["H589"]],[15,17,["H1368"]]]},{"k":22354,"v":[[0,1,["H5789"]],[1,4,["H935"]],[4,5,["H3605"]],[5,7,["H1471"]],[7,11,["H6908"]],[11,13,["H4480","H5439"]],[13,14,["H8033"]],[14,18,["H1368"]],[18,21,["H5181"]],[21,23,["H3068"]]]},{"k":22355,"v":[[0,3,["H1471"]],[3,5,["H5782"]],[5,8,["H5927"]],[8,9,["H413"]],[9,11,["H6010"]],[11,13,["H3092"]],[13,14,["H3588"]],[14,15,["H8033"]],[15,18,["H3427"]],[18,20,["H8199","(H853)"]],[20,21,["H3605"]],[21,23,["H1471"]],[23,25,["H4480","H5439"]]]},{"k":22356,"v":[[0,1,["H7971"]],[1,5,["H4038"]],[5,6,["H3588"]],[6,8,["H7105"]],[8,10,["H1310"]],[10,11,["H935"]],[11,14,["H3381"]],[14,15,["H3588"]],[15,17,["H1660"]],[17,19,["H4390"]],[19,21,["H3342"]],[21,22,["H7783"]],[22,23,["H3588"]],[23,25,["H7451"]],[25,27,["H7227"]]]},{"k":22357,"v":[[0,1,["H1995"]],[1,2,["H1995"]],[2,5,["H6010"]],[5,7,["H2742"]],[7,8,["H3588"]],[8,10,["H3117"]],[10,13,["H3068"]],[13,15,["H7138"]],[15,18,["H6010"]],[18,20,["H2742"]]]},{"k":22358,"v":[[0,2,["H8121"]],[2,5,["H3394"]],[5,8,["H6937"]],[8,11,["H3556"]],[11,13,["H622"]],[13,15,["H5051"]]]},{"k":22359,"v":[[0,2,["H3068"]],[2,5,["H7580"]],[5,8,["H4480","H6726"]],[8,10,["H5414"]],[10,12,["H6963"]],[12,14,["H4480","H3389"]],[14,17,["H8064"]],[17,20,["H776"]],[20,22,["H7493"]],[22,25,["H3068"]],[25,29,["H4268"]],[29,32,["H5971"]],[32,35,["H4581"]],[35,38,["H1121"]],[38,40,["H3478"]]]},{"k":22360,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,11,["H430"]],[11,12,["H7931"]],[12,14,["H6726"]],[14,16,["H6944"]],[16,17,["H2022"]],[17,20,["H3389"]],[20,21,["H1961"]],[21,22,["H6944"]],[22,26,["H3808"]],[26,27,["H2114"]],[27,29,["H5674"]],[29,32,["H5750"]]]},{"k":22361,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H2022"]],[12,15,["H5197"]],[15,17,["H6071"]],[17,20,["H1389"]],[20,22,["H1980"]],[22,24,["H2461"]],[24,26,["H3605"]],[26,28,["H650"]],[28,30,["H3063"]],[30,32,["H1980"]],[32,34,["H4325"]],[34,37,["H4599"]],[37,40,["H3318"]],[40,43,["H4480","H1004"]],[43,46,["H3068"]],[46,49,["H8248","(H853)"]],[49,51,["H5158"]],[51,53,["H7851"]]]},{"k":22362,"v":[[0,1,["H4714"]],[1,3,["H1961"]],[3,5,["H8077"]],[5,7,["H123"]],[7,9,["H1961"]],[9,11,["H8077"]],[11,12,["H4057"]],[12,13,["H4480"]],[13,15,["H2555"]],[15,18,["H1121"]],[18,20,["H3063"]],[20,21,["H834"]],[21,24,["H8210"]],[24,25,["H5355"]],[25,26,["H1818"]],[26,29,["H776"]]]},{"k":22363,"v":[[0,2,["H3063"]],[2,4,["H3427"]],[4,6,["H5769"]],[6,8,["H3389"]],[8,10,["H1755"]],[10,12,["H1755"]]]},{"k":22364,"v":[[0,4,["H5352"]],[4,6,["H1818"]],[6,10,["H3808"]],[10,11,["H5352"]],[11,14,["H3068"]],[14,15,["H7931"]],[15,17,["H6726"]]]},{"k":22365,"v":[[0,2,["H1697"]],[2,4,["H5986"]],[4,5,["H834"]],[5,6,["H1961"]],[6,9,["H5349"]],[9,11,["H4480","H8620"]],[11,12,["H834"]],[12,14,["H2372"]],[14,15,["H5921"]],[15,16,["H3478"]],[16,19,["H3117"]],[19,21,["H5818"]],[21,22,["H4428"]],[22,24,["H3063"]],[24,28,["H3117"]],[28,30,["H3379"]],[30,32,["H1121"]],[32,34,["H3101"]],[34,35,["H4428"]],[35,37,["H3478"]],[37,39,["H8141"]],[39,40,["H6440"]],[40,42,["H7494"]]]},{"k":22366,"v":[[0,3,["H559"]],[3,5,["H3068"]],[5,7,["H7580"]],[7,9,["H4480","H6726"]],[9,11,["H5414"]],[11,13,["H6963"]],[13,15,["H4480","H3389"]],[15,18,["H4999"]],[18,21,["H7462"]],[21,23,["H56"]],[23,26,["H7218"]],[26,28,["H3760"]],[28,30,["H3001"]]]},{"k":22367,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5921"]],[5,6,["H7969"]],[6,7,["H6588"]],[7,9,["H1834"]],[9,11,["H5921"]],[11,12,["H702"]],[12,15,["H3808"]],[15,17,["H7725"]],[17,21,["H5921"]],[21,24,["H1758","(H853)"]],[24,25,["H1568"]],[25,28,["H2742"]],[28,30,["H1270"]]]},{"k":22368,"v":[[0,4,["H7971"]],[4,6,["H784"]],[6,9,["H1004"]],[9,11,["H2371"]],[11,14,["H398"]],[14,16,["H759"]],[16,18,["H1130"]]]},{"k":22369,"v":[[0,3,["H7665"]],[3,6,["H1280"]],[6,8,["H1834"]],[8,11,["H3772"]],[11,13,["H3427"]],[13,16,["H4480","H1237"]],[16,18,["H206"]],[18,22,["H8551"]],[22,24,["H7626"]],[24,29,["H4480","H1040"]],[29,32,["H5971"]],[32,34,["H758"]],[34,38,["H1540"]],[38,40,["H7024"]],[40,41,["H559"]],[41,43,["H3068"]]]},{"k":22370,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5921"]],[5,6,["H7969"]],[6,7,["H6588"]],[7,9,["H5804"]],[9,11,["H5921"]],[11,12,["H702"]],[12,15,["H3808"]],[15,17,["H7725"]],[17,21,["H5921"]],[21,25,["H1540"]],[25,27,["H8003"]],[27,28,["H1546"]],[28,32,["H5462"]],[32,34,["H123"]]]},{"k":22371,"v":[[0,4,["H7971"]],[4,6,["H784"]],[6,9,["H2346"]],[9,11,["H5804"]],[11,14,["H398"]],[14,16,["H759"]],[16,17,[]]]},{"k":22372,"v":[[0,5,["H3772"]],[5,7,["H3427"]],[7,9,["H4480","H795"]],[9,13,["H8551"]],[13,15,["H7626"]],[15,17,["H4480","H831"]],[17,21,["H7725"]],[21,23,["H3027"]],[23,24,["H5921"]],[24,25,["H6138"]],[25,28,["H7611"]],[28,31,["H6430"]],[31,33,["H6"]],[33,34,["H559"]],[34,36,["H136"]],[36,37,["H3069"]]]},{"k":22373,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5921"]],[5,6,["H7969"]],[6,7,["H6588"]],[7,9,["H6865"]],[9,11,["H5921"]],[11,12,["H702"]],[12,15,["H3808"]],[15,17,["H7725"]],[17,21,["H5921"]],[21,24,["H5462"]],[24,26,["H8003"]],[26,27,["H1546"]],[27,29,["H123"]],[29,31,["H2142"]],[31,32,["H3808"]],[32,34,["H251"]],[34,35,["H1285"]]]},{"k":22374,"v":[[0,4,["H7971"]],[4,6,["H784"]],[6,9,["H2346"]],[9,11,["H6865"]],[11,14,["H398"]],[14,16,["H759"]],[16,17,[]]]},{"k":22375,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5921"]],[5,6,["H7969"]],[6,7,["H6588"]],[7,9,["H123"]],[9,11,["H5921"]],[11,12,["H702"]],[12,15,["H3808"]],[15,17,["H7725"]],[17,21,["H5921"]],[21,24,["H7291"]],[24,26,["H251"]],[26,29,["H2719"]],[29,33,["H7843"]],[33,35,["H7356"]],[35,38,["H639"]],[38,40,["H2963"]],[40,41,["H5703"]],[41,44,["H8104"]],[44,46,["H5678"]],[46,48,["H5331"]]]},{"k":22376,"v":[[0,4,["H7971"]],[4,6,["H784"]],[6,8,["H8487"]],[8,11,["H398"]],[11,13,["H759"]],[13,15,["H1224"]]]},{"k":22377,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5921"]],[5,6,["H7969"]],[6,7,["H6588"]],[7,10,["H1121"]],[10,12,["H5983"]],[12,14,["H5921"]],[14,15,["H702"]],[15,18,["H3808"]],[18,20,["H7725"]],[20,24,["H5921"]],[24,28,["H1234"]],[28,32,["H2030"]],[32,34,["H1568"]],[34,35,["H4616"]],[35,38,["H7337","(H853)"]],[38,40,["H1366"]]]},{"k":22378,"v":[[0,4,["H3341"]],[4,6,["H784"]],[6,9,["H2346"]],[9,11,["H7237"]],[11,15,["H398"]],[15,17,["H759"]],[17,20,["H8643"]],[20,23,["H3117"]],[23,25,["H4421"]],[25,28,["H5591"]],[28,31,["H3117"]],[31,34,["H5492"]]]},{"k":22379,"v":[[0,3,["H4428"]],[3,5,["H1980"]],[5,7,["H1473"]],[7,8,["H1931"]],[8,11,["H8269"]],[11,12,["H3162"]],[12,13,["H559"]],[13,15,["H3068"]]]},{"k":22380,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5921"]],[5,6,["H7969"]],[6,7,["H6588"]],[7,9,["H4124"]],[9,11,["H5921"]],[11,12,["H702"]],[12,15,["H3808"]],[15,17,["H7725"]],[17,21,["H5921"]],[21,23,["H8313"]],[23,25,["H6106"]],[25,28,["H4428"]],[28,30,["H123"]],[30,32,["H7875"]]]},{"k":22381,"v":[[0,4,["H7971"]],[4,6,["H784"]],[6,8,["H4124"]],[8,12,["H398"]],[12,14,["H759"]],[14,16,["H7152"]],[16,18,["H4124"]],[18,20,["H4191"]],[20,22,["H7588"]],[22,24,["H8643"]],[24,28,["H6963"]],[28,31,["H7782"]]]},{"k":22382,"v":[[0,5,["H3772"]],[5,7,["H8199"]],[7,10,["H4480","H7130"]],[10,14,["H2026"]],[14,15,["H3605"]],[15,17,["H8269"]],[17,19,["H5973"]],[19,21,["H559"]],[21,23,["H3068"]]]},{"k":22383,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5921"]],[5,6,["H7969"]],[6,7,["H6588"]],[7,9,["H3063"]],[9,11,["H5921"]],[11,12,["H702"]],[12,15,["H3808"]],[15,17,["H7725"]],[17,21,["H5921"]],[21,24,["H3988","(H853)"]],[24,26,["H8451"]],[26,29,["H3068"]],[29,32,["H3808"]],[32,33,["H8104"]],[33,35,["H2706"]],[35,38,["H3577"]],[38,42,["H8582"]],[42,43,["H310"]],[43,45,["H834"]],[45,47,["H1"]],[47,49,["H1980"]]]},{"k":22384,"v":[[0,4,["H7971"]],[4,6,["H784"]],[6,8,["H3063"]],[8,12,["H398"]],[12,14,["H759"]],[14,16,["H3389"]]]},{"k":22385,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5921"]],[5,6,["H7969"]],[6,7,["H6588"]],[7,9,["H3478"]],[9,11,["H5921"]],[11,12,["H702"]],[12,15,["H3808"]],[15,17,["H7725"]],[17,21,["H5921"]],[21,23,["H4376"]],[23,25,["H6662"]],[25,27,["H3701"]],[27,30,["H34"]],[30,31,["H5668"]],[31,35,["H5275"]]]},{"k":22386,"v":[[0,2,["H7602"]],[2,3,["H5921"]],[3,5,["H6083"]],[5,8,["H776"]],[8,11,["H7218"]],[11,14,["H1800"]],[14,17,["H5186"]],[17,19,["H1870"]],[19,22,["H6035"]],[22,25,["H376"]],[25,28,["H1"]],[28,31,["H1980"]],[31,32,["H413"]],[32,35,["H5291"]],[35,36,["H4616"]],[36,37,["H2490","(H853)"]],[37,39,["H6944"]],[39,40,["H8034"]]]},{"k":22387,"v":[[0,5,["H5186"]],[5,6,["H5921"]],[6,7,["H899"]],[7,10,["H2254"]],[10,11,["H681"]],[11,12,["H3605"]],[12,13,["H4196"]],[13,16,["H8354"]],[16,18,["H3196"]],[18,21,["H6064"]],[21,24,["H1004"]],[24,27,["H430"]]]},{"k":22388,"v":[[0,2,["H8045"]],[2,3,["H595","(H853)"]],[3,5,["H567"]],[5,6,["H4480","H6440"]],[6,8,["H834"]],[8,9,["H1363"]],[9,13,["H1363"]],[13,16,["H730"]],[16,18,["H1931"]],[18,20,["H2634"]],[20,23,["H437"]],[23,26,["H8045"]],[26,28,["H6529"]],[28,30,["H4480","H4605"]],[30,33,["H8328"]],[33,35,["H4480","H8478"]]]},{"k":22389,"v":[[0,2,["H595"]],[2,5,["H5927","(H853)"]],[5,8,["H4480","H776"]],[8,10,["H4714"]],[10,12,["H1980"]],[12,14,["H705"]],[14,15,["H8141"]],[15,18,["H4057"]],[18,20,["H3423","(H853)"]],[20,22,["H776"]],[22,25,["H567"]]]},{"k":22390,"v":[[0,4,["H6965"]],[4,7,["H4480","H1121"]],[7,9,["H5030"]],[9,14,["H4480","H970"]],[14,16,["H5139"]],[16,19,["H369"]],[19,20,["H637"]],[20,21,["H2063"]],[21,24,["H1121"]],[24,26,["H3478"]],[26,27,["H5002"]],[27,29,["H3068"]]]},{"k":22391,"v":[[0,3,["(H853)"]],[3,5,["H5139"]],[5,6,["H3196"]],[6,8,["H8248"]],[8,10,["H6680"]],[10,12,["H5030"]],[12,13,["H559"]],[13,14,["H5012"]],[14,15,["H3808"]]]},{"k":22392,"v":[[0,1,["H2009"]],[1,2,["H595"]],[2,4,["H5781"]],[4,5,["H8478"]],[5,7,["H834"]],[7,9,["H5699"]],[9,11,["H5781"]],[11,15,["H4392"]],[15,16,["H5995"]]]},{"k":22393,"v":[[0,3,["H4498"]],[3,5,["H6"]],[5,8,["H4480","H7031"]],[8,11,["H2389"]],[11,13,["H3808"]],[13,14,["H553"]],[14,16,["H3581"]],[16,17,["H3808"]],[17,20,["H1368"]],[20,21,["H4422"]],[21,22,["H5315"]]]},{"k":22394,"v":[[0,1,["H3808"]],[1,4,["H5975"]],[4,6,["H8610"]],[6,8,["H7198"]],[8,13,["H7031"]],[13,15,["H7272"]],[15,17,["H3808"]],[17,18,["H4422"]],[18,20,["H3808"]],[20,24,["H7392"]],[24,26,["H5483"]],[26,27,["H4422"]],[27,28,["H5315"]]]},{"k":22395,"v":[[0,5,["H533","H3820"]],[5,8,["H1368"]],[8,11,["H5127"]],[11,12,["H6174"]],[12,14,["H1931"]],[14,15,["H3117"]],[15,16,["H5002"]],[16,18,["H3068"]]]},{"k":22396,"v":[[0,1,["H8085","(H853)"]],[1,2,["H2088"]],[2,3,["H1697"]],[3,4,["H834"]],[4,6,["H3068"]],[6,8,["H1696"]],[8,9,["H5921"]],[9,12,["H1121"]],[12,14,["H3478"]],[14,15,["H5921"]],[15,17,["H3605"]],[17,18,["H4940"]],[18,19,["H834"]],[19,22,["H5927"]],[22,25,["H4480","H776"]],[25,27,["H4714"]],[27,28,["H559"]]]},{"k":22397,"v":[[0,2,["H7535"]],[2,5,["H3045"]],[5,7,["H4480","H3605"]],[7,9,["H4940"]],[9,12,["H127"]],[12,13,["H5921","H3651"]],[13,16,["H6485","H5921"]],[16,17,["(H853)"]],[17,19,["H3605"]],[19,21,["H5771"]]]},{"k":22398,"v":[[0,2,["H8147"]],[2,3,["H1980"]],[3,4,["H3162"]],[4,5,["H1115","H518"]],[5,8,["H3259"]]]},{"k":22399,"v":[[0,3,["H738"]],[3,4,["H7580"]],[4,7,["H3293"]],[7,11,["H369"]],[11,12,["H2964"]],[12,16,["H3715"]],[16,17,["H5414","H6963"]],[17,21,["H4480","H4585"]],[21,22,["H518"]],[22,25,["H3920"]],[25,26,["H1115"]]]},{"k":22400,"v":[[0,3,["H6833"]],[3,4,["H5307"]],[4,5,["H5921"]],[5,7,["H6341"]],[7,10,["H776"]],[10,12,["H369"]],[12,13,["H4170"]],[13,20,["H5927"]],[20,22,["H6341"]],[22,23,["H4480"]],[23,25,["H127"]],[25,31,["H3920","H3808","H3920"]]]},{"k":22401,"v":[[0,3,["H7782"]],[3,5,["H8628"]],[5,8,["H5892"]],[8,11,["H5971"]],[11,12,["H3808"]],[12,14,["H2729"]],[14,17,["H1961"]],[17,18,["H7451"]],[18,21,["H5892"]],[21,24,["H3068"]],[24,26,["H3808"]],[26,27,["H6213"]],[27,28,[]]]},{"k":22402,"v":[[0,1,["H3588"]],[1,3,["H136"]],[3,4,["H3069"]],[4,6,["H6213"]],[6,7,["H3808","H1697"]],[7,8,["H3588","H518"]],[8,10,["H1540"]],[10,12,["H5475"]],[12,13,["H413"]],[13,15,["H5650"]],[15,17,["H5030"]]]},{"k":22403,"v":[[0,2,["H738"]],[2,4,["H7580"]],[4,5,["H4310"]],[5,7,["H3808"]],[7,8,["H3372"]],[8,10,["H136"]],[10,11,["H3069"]],[11,13,["H1696"]],[13,14,["H4310"]],[14,16,["H3808"]],[16,17,["H5012"]]]},{"k":22404,"v":[[0,1,["H8085"]],[1,2,["H5921"]],[2,4,["H759"]],[4,6,["H795"]],[6,8,["H5921"]],[8,10,["H759"]],[10,13,["H776"]],[13,15,["H4714"]],[15,17,["H559"]],[17,19,["H622"]],[19,20,["H5921"]],[20,22,["H2022"]],[22,24,["H8111"]],[24,26,["H7200"]],[26,28,["H7227"]],[28,29,["H4103"]],[29,32,["H8432"]],[32,36,["H6217"]],[36,39,["H7130"]],[39,40,[]]]},{"k":22405,"v":[[0,3,["H3045"]],[3,4,["H3808"]],[4,6,["H6213"]],[6,7,["H5229"]],[7,8,["H5002"]],[8,10,["H3068"]],[10,13,["H686"]],[13,14,["H2555"]],[14,16,["H7701"]],[16,19,["H759"]]]},{"k":22406,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,8,["H6862"]],[8,14,["H5439"]],[14,16,["H776"]],[16,21,["H3381"]],[21,23,["H5797"]],[23,24,["H4480"]],[24,28,["H759"]],[28,31,["H962"]]]},{"k":22407,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H834"]],[5,7,["H7462"]],[7,8,["H5337"]],[8,12,["H4480","H6310"]],[12,15,["H738"]],[15,16,["H8147"]],[16,17,["H3767"]],[17,18,["H176"]],[18,20,["H915"]],[20,23,["H241"]],[23,24,["H3651"]],[24,27,["H1121"]],[27,29,["H3478"]],[29,32,["H5337"]],[32,34,["H3427"]],[34,36,["H8111"]],[36,39,["H6285"]],[39,42,["H4296"]],[42,45,["H1833"]],[45,48,["H6210"]]]},{"k":22408,"v":[[0,1,["H8085"]],[1,4,["H5749"]],[4,7,["H1004"]],[7,9,["H3290"]],[9,10,["H5002"]],[10,12,["H136"]],[12,13,["H3069"]],[13,15,["H430"]],[15,17,["H6635"]]]},{"k":22409,"v":[[0,1,["H3588"]],[1,4,["H3117"]],[4,8,["H6485"]],[8,10,["H6588"]],[10,12,["H3478"]],[12,13,["H5921"]],[13,18,["H6485","H5921"]],[18,20,["H4196"]],[20,22,["H1008"]],[22,25,["H7161"]],[25,28,["H4196"]],[28,32,["H1438"]],[32,34,["H5307"]],[34,37,["H776"]]]},{"k":22410,"v":[[0,4,["H5221"]],[4,6,["H2779"]],[6,7,["H1004"]],[7,8,["H5921"]],[8,10,["H7019"]],[10,11,["H1004"]],[11,14,["H1004"]],[14,16,["H8127"]],[16,18,["H6"]],[18,21,["H7227"]],[21,22,["H1004"]],[22,26,["H5486"]],[26,27,["H5002"]],[27,29,["H3068"]]]},{"k":22411,"v":[[0,1,["H8085"]],[1,2,["H2088"]],[2,3,["H1697"]],[3,5,["H6510"]],[5,7,["H1316"]],[7,8,["H834"]],[8,12,["H2022"]],[12,14,["H8111"]],[14,16,["H6231"]],[16,18,["H1800"]],[18,20,["H7533"]],[20,22,["H34"]],[22,24,["H559"]],[24,27,["H113"]],[27,28,["H935"]],[28,32,["H8354"]]]},{"k":22412,"v":[[0,2,["H136"]],[2,3,["H3069"]],[3,5,["H7650"]],[5,8,["H6944"]],[8,9,["H3588"]],[9,10,["H2009"]],[10,12,["H3117"]],[12,14,["H935"]],[14,15,["H5921"]],[15,22,["H5375","(H853)"]],[22,24,["H6793"]],[24,27,["H319"]],[27,29,["H5518","H1729"]]]},{"k":22413,"v":[[0,5,["H3318"]],[5,8,["H6556"]],[8,9,["H802"]],[9,15,["H5048"]],[15,20,["H7993"]],[20,24,["H2038"]],[24,25,["H5002"]],[25,27,["H3068"]]]},{"k":22414,"v":[[0,1,["H935"]],[1,3,["H1008"]],[3,5,["H6586"]],[5,7,["H1537"]],[7,8,["H7235"]],[8,9,["H6586"]],[9,11,["H935"]],[11,13,["H2077"]],[13,15,["H1242"]],[15,18,["H4643"]],[18,20,["H7969"]],[20,21,["H3117"]]]},{"k":22415,"v":[[0,4,["H6999"]],[4,6,["H8426"]],[6,7,["H4480"]],[7,8,["H2557"]],[8,10,["H7121"]],[10,12,["H8085"]],[12,15,["H5071"]],[15,16,["H3588"]],[16,17,["H3651"]],[17,18,["H157"]],[18,22,["H1121"]],[22,24,["H3478"]],[24,25,["H5002"]],[25,27,["H136"]],[27,28,["H3069"]]]},{"k":22416,"v":[[0,2,["H589"]],[2,3,["H1571"]],[3,5,["H5414"]],[5,7,["H5356"]],[7,9,["H8127"]],[9,11,["H3605"]],[11,13,["H5892"]],[13,15,["H2640"]],[15,17,["H3899"]],[17,19,["H3605"]],[19,21,["H4725"]],[21,25,["H3808"]],[25,26,["H7725"]],[26,27,["H5704"]],[27,29,["H5002"]],[29,31,["H3068"]]]},{"k":22417,"v":[[0,2,["H1571"]],[2,3,["H595"]],[3,5,["H4513","(H853)"]],[5,7,["H1653"]],[7,8,["H4480"]],[8,13,["H5750"]],[13,14,["H7969"]],[14,15,["H2320"]],[15,18,["H7105"]],[18,24,["H4305"]],[24,25,["H5921"]],[25,26,["H259"]],[26,27,["H5892"]],[27,33,["H4305","H3808"]],[33,34,["H5921"]],[34,35,["H259"]],[35,36,["H5892"]],[36,37,["H259"]],[37,38,["H2513"]],[38,41,["H4305"]],[41,44,["H2513"]],[44,45,["H834","H5921"]],[45,47,["H4305"]],[47,48,["H3808"]],[48,49,["H3001"]]]},{"k":22418,"v":[[0,2,["H8147"]],[2,4,["H7969"]],[4,5,["H5892"]],[5,6,["H5128"]],[6,7,["H413"]],[7,8,["H259"]],[8,9,["H5892"]],[9,11,["H8354"]],[11,12,["H4325"]],[12,16,["H3808"]],[16,17,["H7646"]],[17,21,["H3808"]],[21,22,["H7725"]],[22,23,["H5704"]],[23,25,["H5002"]],[25,27,["H3068"]]]},{"k":22419,"v":[[0,3,["H5221"]],[3,6,["H7711"]],[6,8,["H3420"]],[8,11,["H1593"]],[11,14,["H3754"]],[14,18,["H8384"]],[18,22,["H2132"]],[22,23,["H7235"]],[23,25,["H1501"]],[25,26,["H398"]],[26,31,["H3808"]],[31,32,["H7725"]],[32,33,["H5704"]],[33,35,["H5002"]],[35,37,["H3068"]]]},{"k":22420,"v":[[0,3,["H7971"]],[3,7,["H1698"]],[7,10,["H1870"]],[10,12,["H4714"]],[12,15,["H970"]],[15,18,["H2026"]],[18,21,["H2719"]],[21,25,["H5973","H7628"]],[25,27,["H5483"]],[27,33,["H889"]],[33,36,["H4264"]],[36,39,["H5927"]],[39,42,["H639"]],[42,46,["H3808"]],[46,47,["H7725"]],[47,48,["H5704"]],[48,50,["H5002"]],[50,52,["H3068"]]]},{"k":22421,"v":[[0,3,["H2015"]],[3,8,["H430"]],[8,9,["H4114","(H853)"]],[9,10,["H5467"]],[10,12,["H6017"]],[12,15,["H1961"]],[15,18,["H181"]],[18,19,["H5337"]],[19,23,["H4480","H8316"]],[23,27,["H3808"]],[27,28,["H7725"]],[28,29,["H5704"]],[29,31,["H5002"]],[31,33,["H3068"]]]},{"k":22422,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,5,["H6213"]],[5,9,["H3478"]],[9,11,["H6118","H3588"]],[11,14,["H6213"]],[14,15,["H2063"]],[15,18,["H3559"]],[18,20,["H7125"]],[20,22,["H430"]],[22,24,["H3478"]]]},{"k":22423,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,5,["H3335"]],[5,7,["H2022"]],[7,9,["H1254"]],[9,11,["H7307"]],[11,13,["H5046"]],[13,15,["H120"]],[15,16,["H4100"]],[16,19,["H7808"]],[19,21,["H6213"]],[21,23,["H7837"]],[23,24,["H5890"]],[24,26,["H1869"]],[26,27,["H5921"]],[27,30,["H1116"]],[30,33,["H776"]],[33,35,["H3068"]],[35,37,["H430"]],[37,39,["H6635"]],[39,42,["H8034"]]]},{"k":22424,"v":[[0,1,["H8085"]],[1,2,["(H853)"]],[2,3,["H2088"]],[3,4,["H1697"]],[4,5,["H834"]],[5,6,["H595"]],[6,8,["H5375"]],[8,9,["H5921"]],[9,13,["H7015"]],[13,15,["H1004"]],[15,17,["H3478"]]]},{"k":22425,"v":[[0,2,["H1330"]],[2,4,["H3478"]],[4,6,["H5307"]],[6,9,["H3808"]],[9,10,["H3254"]],[10,11,["H6965"]],[11,14,["H5203"]],[14,15,["H5921"]],[15,17,["H127"]],[17,20,["H369"]],[20,24,["H6965"]]]},{"k":22426,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,8,["H5892"]],[8,11,["H3318"]],[11,14,["H505"]],[14,16,["H7604"]],[16,18,["H3967"]],[18,23,["H3318"]],[23,26,["H3967"]],[26,28,["H7604"]],[28,29,["H6235"]],[29,32,["H1004"]],[32,34,["H3478"]]]},{"k":22427,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,8,["H1004"]],[8,10,["H3478"]],[10,11,["H1875"]],[11,17,["H2421"]]]},{"k":22428,"v":[[0,2,["H1875"]],[2,3,["H408"]],[3,4,["H1008"]],[4,5,["H3808"]],[5,6,["H935"]],[6,8,["H1537"]],[8,10,["H5674"]],[10,11,["H3808"]],[11,13,["H884"]],[13,14,["H3588"]],[14,15,["H1537"]],[15,20,["H1540","H1540"]],[20,22,["H1008"]],[22,24,["H1961"]],[24,26,["H205"]]]},{"k":22429,"v":[[0,1,["H1875","(H853)"]],[1,3,["H3068"]],[3,7,["H2421"]],[7,8,["H6435"]],[8,11,["H6743"]],[11,13,["H784"]],[13,16,["H1004"]],[16,18,["H3130"]],[18,20,["H398"]],[20,25,["H369"]],[25,27,["H3518"]],[27,30,["H1008"]]]},{"k":22430,"v":[[0,3,["H2015"]],[3,4,["H4941"]],[4,6,["H3939"]],[6,9,["H5117"]],[9,10,["H6666"]],[10,13,["H776"]]]},{"k":22431,"v":[[0,4,["H6213"]],[4,7,["H3598"]],[7,9,["H3685"]],[9,11,["H2015"]],[11,15,["H6757"]],[15,18,["H1242"]],[18,23,["H2821","H3117"]],[23,25,["H3915"]],[25,27,["H7121"]],[27,30,["H4325"]],[30,33,["H3220"]],[33,37,["H8210"]],[37,38,["H5921"]],[38,40,["H6440"]],[40,43,["H776"]],[43,45,["H3068"]],[45,48,["H8034"]]]},{"k":22432,"v":[[0,2,["H1082"]],[2,4,["H7701"]],[4,5,["H5921"]],[5,7,["H5794"]],[7,11,["H7701"]],[11,13,["H935"]],[13,14,["H5921"]],[14,16,["H4013"]]]},{"k":22433,"v":[[0,2,["H8130"]],[2,5,["H3198"]],[5,8,["H8179"]],[8,11,["H8581"]],[11,14,["H1696"]],[14,15,["H8549"]]]},{"k":22434,"v":[[0,1,["H3282"]],[1,2,["H3651"]],[2,5,["H1318"]],[5,7,["H5921"]],[7,9,["H1800"]],[9,12,["H3947"]],[12,13,["H4480"]],[13,15,["H4864"]],[15,17,["H1250"]],[17,20,["H1129"]],[20,21,["H1004"]],[21,24,["H1496"]],[24,28,["H3808"]],[28,29,["H3427"]],[29,34,["H5193"]],[34,35,["H2531"]],[35,36,["H3754"]],[36,40,["H3808"]],[40,41,["H8354","(H853)"]],[41,42,["H3196"]],[42,44,[]]]},{"k":22435,"v":[[0,1,["H3588"]],[1,3,["H3045"]],[3,5,["H7227"]],[5,6,["H6588"]],[6,9,["H6099"]],[9,10,["H2403"]],[10,12,["H6887"]],[12,14,["H6662"]],[14,16,["H3947"]],[16,18,["H3724"]],[18,22,["H5186"]],[22,24,["H34"]],[24,27,["H8179"]],[27,30,[]]]},{"k":22436,"v":[[0,1,["H3651"]],[1,3,["H7919"]],[3,6,["H1826"]],[6,8,["H1931"]],[8,9,["H6256"]],[9,10,["H3588"]],[10,11,["H1931"]],[11,14,["H7451"]],[14,15,["H6256"]]]},{"k":22437,"v":[[0,1,["H1875"]],[1,2,["H2896"]],[2,4,["H408"]],[4,5,["H7451"]],[5,6,["H4616"]],[6,9,["H2421"]],[9,11,["H3651"]],[11,13,["H3068"]],[13,15,["H430"]],[15,17,["H6635"]],[17,19,["H1961"]],[19,20,["H854"]],[20,22,["H834"]],[22,25,["H559"]]]},{"k":22438,"v":[[0,1,["H8130"]],[1,3,["H7451"]],[3,5,["H157"]],[5,7,["H2896"]],[7,9,["H3322"]],[9,10,["H4941"]],[10,13,["H8179"]],[13,16,["H194"]],[16,19,["H3068"]],[19,20,["H430"]],[20,22,["H6635"]],[22,25,["H2603"]],[25,28,["H7611"]],[28,30,["H3130"]]]},{"k":22439,"v":[[0,1,["H3651"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H6635"]],[7,9,["H136"]],[9,10,["H559"]],[10,11,["H3541"]],[11,12,["H4553"]],[12,16,["H3605"]],[16,17,["H7339"]],[17,21,["H559"]],[21,23,["H3605"]],[23,25,["H2351"]],[25,26,["H1930"]],[26,27,["H1930"]],[27,31,["H7121"]],[31,33,["H406"]],[33,34,["H413"]],[34,35,["H60"]],[35,40,["H3045"]],[40,42,["H5092"]],[42,43,["H413"]],[43,44,["H4553"]]]},{"k":22440,"v":[[0,3,["H3605"]],[3,4,["H3754"]],[4,7,["H4553"]],[7,8,["H3588"]],[8,11,["H5674"]],[11,12,["H7130"]],[12,14,["H559"]],[14,16,["H3068"]]]},{"k":22441,"v":[[0,1,["H1945"]],[1,5,["H183","(H853)"]],[5,7,["H3117"]],[7,10,["H3068"]],[10,13,["H4100"]],[13,15,["H2088"]],[15,19,["H3117"]],[19,22,["H3068"]],[22,24,["H2822"]],[24,26,["H3808"]],[26,27,["H216"]]]},{"k":22442,"v":[[0,2,["H834"]],[2,4,["H376"]],[4,6,["H5127"]],[6,7,["H4480","H6440"]],[7,9,["H738"]],[9,12,["H1677"]],[12,13,["H6293"]],[13,16,["H935"]],[16,19,["H1004"]],[19,21,["H5564"]],[21,23,["H3027"]],[23,24,["H5921"]],[24,26,["H7023"]],[26,29,["H5175"]],[29,30,["H5391"]],[30,31,[]]]},{"k":22443,"v":[[0,2,["H3808"]],[2,4,["H3117"]],[4,7,["H3068"]],[7,9,["H2822"]],[9,11,["H3808"]],[11,12,["H216"]],[12,15,["H651"]],[15,17,["H3808"]],[17,18,["H5051"]],[18,20,[]]]},{"k":22444,"v":[[0,2,["H8130"]],[2,4,["H3988"]],[4,7,["H2282"]],[7,11,["H3808"]],[11,12,["H7306"]],[12,16,["H6116"]]]},{"k":22445,"v":[[0,1,["H3588","H518"]],[1,3,["H5927"]],[3,6,["H5930"]],[6,10,["H4503"]],[10,13,["H3808"]],[13,14,["H7521"]],[14,16,["H3808"]],[16,19,["H5027"]],[19,22,["H8002"]],[22,26,["H4806"]]]},{"k":22446,"v":[[0,3,["H5493"]],[3,4,["H4480","H5921"]],[4,7,["H1995"]],[7,10,["H7892"]],[10,14,["H3808"]],[14,15,["H8085"]],[15,17,["H2172"]],[17,20,["H5035"]]]},{"k":22447,"v":[[0,3,["H4941"]],[3,5,["H1556"]],[5,7,["H4325"]],[7,9,["H6666"]],[9,12,["H386"]],[12,13,["H5158"]]]},{"k":22448,"v":[[0,3,["H5066"]],[3,6,["H2077"]],[6,8,["H4503"]],[8,11,["H4057"]],[11,12,["H705"]],[12,13,["H8141"]],[13,15,["H1004"]],[15,17,["H3478"]]]},{"k":22449,"v":[[0,4,["H5375","(H853)"]],[4,6,["H5522"]],[6,9,["H4432"]],[9,11,["H3594"]],[11,13,["H6754"]],[13,15,["H3556"]],[15,18,["H430"]],[18,19,["H834"]],[19,21,["H6213"]],[21,23,[]]]},{"k":22450,"v":[[0,9,["H1540"]],[9,10,["H4480","H1973"]],[10,11,["H1834"]],[11,12,["H559"]],[12,14,["H3068"]],[14,16,["H8034"]],[16,19,["H430"]],[19,21,["H6635"]]]},{"k":22451,"v":[[0,1,["H1945"]],[1,7,["H7600"]],[7,9,["H6726"]],[9,11,["H982"]],[11,14,["H2022"]],[14,16,["H8111"]],[16,19,["H5344"]],[19,20,["H7225"]],[20,23,["H1471"]],[23,27,["H1004"]],[27,29,["H3478"]],[29,30,["H935"]]]},{"k":22452,"v":[[0,1,["H5674"]],[1,4,["H3641"]],[4,6,["H7200"]],[6,9,["H4480","H8033"]],[9,10,["H1980"]],[10,13,["H2574"]],[13,15,["H7227"]],[15,18,["H3381"]],[18,20,["H1661"]],[20,23,["H6430"]],[23,26,["H2896"]],[26,27,["H4480"]],[27,28,["H428"]],[28,29,["H4467"]],[29,30,["H518"]],[30,32,["H1366"]],[32,33,["H7227"]],[33,36,["H4480","H1366"]]]},{"k":22453,"v":[[0,5,["H5077"]],[5,7,["H7451"]],[7,8,["H3117"]],[8,12,["H7675"]],[12,14,["H2555"]],[14,17,["H5066"]]]},{"k":22454,"v":[[0,2,["H7901"]],[2,3,["H5921"]],[3,4,["H4296"]],[4,6,["H8127"]],[6,8,["H5628"]],[8,10,["H5921"]],[10,12,["H6210"]],[12,14,["H398"]],[14,16,["H3733"]],[16,20,["H4480","H6629"]],[20,23,["H5695"]],[23,27,["H4480","H8432"]],[27,30,["H4770"]]]},{"k":22455,"v":[[0,2,["H6527"]],[2,3,["H5921"]],[3,5,["H6310"]],[5,8,["H5035"]],[8,10,["H2803"]],[10,13,["H3627"]],[13,15,["H7892"]],[15,17,["H1732"]]]},{"k":22456,"v":[[0,2,["H8354"]],[2,3,["H3196"]],[3,5,["H4219"]],[5,7,["H4886"]],[7,11,["H7225"]],[11,12,["H8081"]],[12,16,["H3808"]],[16,17,["H2470"]],[17,18,["H5921"]],[18,20,["H7667"]],[20,22,["H3130"]]]},{"k":22457,"v":[[0,1,["H3651"]],[1,2,["H6258"]],[2,6,["H1540"]],[6,9,["H7218"]],[9,12,["H1540"]],[12,15,["H4797"]],[15,19,["H5628"]],[19,23,["H5493"]]]},{"k":22458,"v":[[0,2,["H136"]],[2,3,["H3069"]],[3,5,["H7650"]],[5,7,["H5315"]],[7,8,["H5002"]],[8,10,["H3068"]],[10,12,["H430"]],[12,14,["H6635"]],[14,15,["H595"]],[15,16,["H8374","(H853)"]],[16,18,["H1347"]],[18,20,["H3290"]],[20,22,["H8130"]],[22,24,["H759"]],[24,29,["H5462"]],[29,31,["H5892"]],[31,36,["H4393"]]]},{"k":22459,"v":[[0,6,["H1961"]],[6,7,["H518"]],[7,9,["H3498"]],[9,10,["H6235"]],[10,11,["H376"]],[11,13,["H259"]],[13,14,["H1004"]],[14,18,["H4191"]]]},{"k":22460,"v":[[0,4,["H1730"]],[4,8,["H5375"]],[8,12,["H5635"]],[12,16,["H3318"]],[16,18,["H6106"]],[18,20,["H4480"]],[20,22,["H1004"]],[22,25,["H559"]],[25,28,["H834"]],[28,32,["H3411"]],[32,35,["H1004"]],[35,38,["H5750"]],[38,40,["H5973"]],[40,45,["H559"]],[45,46,["H657"]],[46,50,["H559"]],[50,53,["H2013"]],[53,54,["H3588"]],[54,57,["H3808"]],[57,59,["H2142"]],[59,62,["H8034"]],[62,65,["H3068"]]]},{"k":22461,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H3068"]],[4,5,["H6680"]],[5,9,["H5221"]],[9,11,["H1419"]],[11,12,["H1004"]],[12,14,["H7447"]],[14,17,["H6996"]],[17,18,["H1004"]],[18,20,["H1233"]]]},{"k":22462,"v":[[0,2,["H5483"]],[2,3,["H7323"]],[3,6,["H5553"]],[6,9,["H2790"]],[9,12,["H1241"]],[12,13,["H3588"]],[13,16,["H2015"]],[16,17,["H4941"]],[17,19,["H7219"]],[19,22,["H6529"]],[22,24,["H6666"]],[24,26,["H3939"]]]},{"k":22463,"v":[[0,3,["H8055"]],[3,8,["H1697","H3808"]],[8,10,["H559"]],[10,13,["H3808"]],[13,14,["H3947"]],[14,17,["H7161"]],[17,21,["H2392"]]]},{"k":22464,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,6,["H6965"]],[6,7,["H5921"]],[7,10,["H1471"]],[10,12,["H1004"]],[12,14,["H3478"]],[14,15,["H5002"]],[15,17,["H3068"]],[17,19,["H430"]],[19,21,["H6635"]],[21,25,["H3905"]],[25,30,["H4480","H935"]],[30,32,["H2574"]],[32,33,["H5704"]],[33,35,["H5158"]],[35,38,["H6160"]]]},{"k":22465,"v":[[0,1,["H3541"]],[1,4,["H136"]],[4,5,["H3069"]],[5,6,["H7200"]],[6,10,["H2009"]],[10,12,["H3335"]],[12,13,["H1462"]],[13,16,["H8462"]],[16,20,["H5927"]],[20,24,["H3954"]],[24,26,["H2009"]],[26,31,["H3954"]],[31,32,["H310"]],[32,34,["H4428"]],[34,35,["H1488"]]]},{"k":22466,"v":[[0,5,["H1961"]],[5,7,["H518"]],[7,12,["H3615"]],[12,14,["H398","(H853)"]],[14,16,["H6212"]],[16,19,["H776"]],[19,22,["H559"]],[22,24,["H136"]],[24,25,["H3069"]],[25,26,["H5545"]],[26,29,["H4994"]],[29,31,["H4310"]],[31,33,["H3290"]],[33,34,["H6965"]],[34,35,["H3588"]],[35,36,["H1931"]],[36,38,["H6996"]]]},{"k":22467,"v":[[0,2,["H3068"]],[2,3,["H5162"]],[3,4,["H5921"]],[4,5,["H2063"]],[5,8,["H3808"]],[8,9,["H1961"]],[9,10,["H559"]],[10,12,["H3068"]]]},{"k":22468,"v":[[0,1,["H3541"]],[1,4,["H136"]],[4,5,["H3069"]],[5,6,["H7200"]],[6,10,["H2009"]],[10,12,["H136"]],[12,13,["H3069"]],[13,14,["H7121"]],[14,16,["H7378"]],[16,18,["H784"]],[18,21,["H398","(H853)"]],[21,23,["H7227"]],[23,24,["H8415"]],[24,28,["H398","(H853)"]],[28,30,["H2506"]]]},{"k":22469,"v":[[0,2,["H559"]],[2,5,["H136"]],[5,6,["H3069"]],[6,7,["H2308"]],[7,10,["H4994"]],[10,12,["H4310"]],[12,14,["H3290"]],[14,15,["H6965"]],[15,16,["H3588"]],[16,17,["H1931"]],[17,19,["H6996"]]]},{"k":22470,"v":[[0,2,["H3068"]],[2,3,["H5162"]],[3,4,["H5921"]],[4,5,["H2063"]],[5,6,["H1931"]],[6,7,["H1571"]],[7,9,["H3808"]],[9,10,["H1961"]],[10,11,["H559"]],[11,13,["H136"]],[13,14,["H3069"]]]},{"k":22471,"v":[[0,1,["H3541"]],[1,3,["H7200"]],[3,6,["H2009"]],[6,8,["H136"]],[8,9,["H5324"]],[9,10,["H5921"]],[10,12,["H2346"]],[12,16,["H594"]],[16,19,["H594"]],[19,22,["H3027"]]]},{"k":22472,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H5986"]],[7,8,["H4100"]],[8,9,["H7200"]],[9,10,["H859"]],[10,13,["H559"]],[13,15,["H594"]],[15,17,["H559"]],[17,19,["H136"]],[19,20,["H2009"]],[20,23,["H7760"]],[23,25,["H594"]],[25,28,["H7130"]],[28,31,["H5971"]],[31,32,["H3478"]],[32,35,["H3808"]],[35,36,["H3254"]],[36,37,["H5674"]],[37,41,["H5750"]]]},{"k":22473,"v":[[0,4,["H1116"]],[4,6,["H3446"]],[6,9,["H8074"]],[9,12,["H4720"]],[12,14,["H3478"]],[14,18,["H2717"]],[18,22,["H6965"]],[22,23,["H5921"]],[23,25,["H1004"]],[25,27,["H3379"]],[27,30,["H2719"]]]},{"k":22474,"v":[[0,2,["H558"]],[2,4,["H3548"]],[4,6,["H1008"]],[6,7,["H7971"]],[7,8,["H413"]],[8,9,["H3379"]],[9,10,["H4428"]],[10,12,["H3478"]],[12,13,["H559"]],[13,14,["H5986"]],[14,16,["H7194"]],[16,17,["H5921"]],[17,21,["H7130"]],[21,24,["H1004"]],[24,26,["H3478"]],[26,28,["H776"]],[28,31,["H3201","H3808"]],[31,33,["H3557","(H853)"]],[33,34,["H3605"]],[34,36,["H1697"]]]},{"k":22475,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H5986"]],[3,4,["H559"]],[4,5,["H3379"]],[5,7,["H4191"]],[7,10,["H2719"]],[10,12,["H3478"]],[12,18,["H1540","H1540"]],[18,20,["H4480","H5921"]],[20,23,["H127"]]]},{"k":22476,"v":[[0,2,["H558"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H5986"]],[5,8,["H2374"]],[8,9,["H1980"]],[9,12,["H1272"]],[12,13,["H413"]],[13,15,["H776"]],[15,17,["H3063"]],[17,19,["H8033"]],[19,20,["H398"]],[20,21,["H3899"]],[21,23,["H5012"]],[23,24,["H8033"]]]},{"k":22477,"v":[[0,2,["H5012"]],[2,3,["H3808"]],[3,4,["H3254"]],[4,6,["H5750"]],[6,8,["H1008"]],[8,9,["H3588"]],[9,10,["H1931"]],[10,13,["H4428"]],[13,14,["H4720"]],[14,16,["H1931"]],[16,19,["H4467"]],[19,20,["H1004"]]]},{"k":22478,"v":[[0,2,["H6030"]],[2,3,["H5986"]],[3,5,["H559"]],[5,6,["H413"]],[6,7,["H558"]],[7,8,["H595"]],[8,10,["H3808"]],[10,11,["H5030"]],[11,12,["H3808"]],[12,14,["H595"]],[14,16,["H5030"]],[16,17,["H1121"]],[17,18,["H3588"]],[18,19,["H595"]],[19,22,["H951"]],[22,25,["H1103"]],[25,28,["H8256"]]]},{"k":22479,"v":[[0,3,["H3068"]],[3,4,["H3947"]],[4,8,["H4480","H310"]],[8,10,["H6629"]],[10,13,["H3068"]],[13,14,["H559"]],[14,15,["H413"]],[15,17,["H1980"]],[17,18,["H5012"]],[18,19,["H413"]],[19,21,["H5971"]],[21,22,["H3478"]]]},{"k":22480,"v":[[0,1,["H6258"]],[1,3,["H8085"]],[3,6,["H1697"]],[6,9,["H3068"]],[9,10,["H859"]],[10,11,["H559"]],[11,12,["H5012"]],[12,13,["H3808"]],[13,14,["H5921"]],[14,15,["H3478"]],[15,17,["H5197"]],[17,18,["H3808"]],[18,21,["H5921"]],[21,23,["H1004"]],[23,25,["H3446"]]]},{"k":22481,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H802"]],[7,11,["H2181"]],[11,14,["H5892"]],[14,17,["H1121"]],[17,20,["H1323"]],[20,22,["H5307"]],[22,25,["H2719"]],[25,28,["H127"]],[28,31,["H2505"]],[31,33,["H2256"]],[33,35,["H859"]],[35,37,["H4191"]],[37,38,["H5921"]],[38,40,["H2931"]],[40,41,["H127"]],[41,43,["H3478"]],[43,48,["H1540","H1540"]],[48,50,["H4480","H5921"]],[50,52,["H127"]]]},{"k":22482,"v":[[0,1,["H3541"]],[1,4,["H136"]],[4,5,["H3069"]],[5,6,["H7200"]],[6,10,["H2009"]],[10,12,["H3619"]],[12,15,["H7019"]]]},{"k":22483,"v":[[0,3,["H559"]],[3,4,["H5986"]],[4,5,["H4100"]],[5,6,["H7200"]],[6,7,["H859"]],[7,10,["H559"]],[10,12,["H3619"]],[12,15,["H7019"]],[15,17,["H559"]],[17,19,["H3068"]],[19,20,["H413"]],[20,23,["H7093"]],[23,25,["H935"]],[25,26,["H413"]],[26,28,["H5971"]],[28,30,["H3478"]],[30,33,["H3808"]],[33,34,["H3254"]],[34,36,["H5674"]],[36,39,["H5750"]]]},{"k":22484,"v":[[0,3,["H7892"]],[3,6,["H1964"]],[6,9,["H3213"]],[9,11,["H1931"]],[11,12,["H3117"]],[12,13,["H5002"]],[13,15,["H136"]],[15,16,["H3069"]],[16,20,["H7227"]],[20,22,["H6297"]],[22,24,["H3605"]],[24,25,["H4725"]],[25,30,["H7993"]],[30,32,["H2013"]]]},{"k":22485,"v":[[0,1,["H8085"]],[1,2,["H2063"]],[2,7,["H7602"]],[7,9,["H34"]],[9,14,["H6041"]],[14,17,["H776"]],[17,19,["H7673"]]]},{"k":22486,"v":[[0,1,["H559"]],[1,2,["H4970"]],[2,6,["H2320"]],[6,8,["H5674"]],[8,12,["H7666"]],[12,13,["H7668"]],[13,16,["H7676"]],[16,21,["H6605"]],[21,22,["H1250"]],[22,26,["H6994","H374"]],[26,29,["H8255"]],[29,30,["H1431"]],[30,32,["H5791"]],[32,34,["H3976"]],[34,36,["H4820"]]]},{"k":22487,"v":[[0,4,["H7069"]],[4,6,["H1800"]],[6,8,["H3701"]],[8,11,["H34"]],[11,12,["H5668"]],[12,16,["H5275"]],[16,19,["H7666"]],[19,21,["H4651"]],[21,24,["H1250"]]]},{"k":22488,"v":[[0,2,["H3068"]],[2,4,["H7650"]],[4,7,["H1347"]],[7,9,["H3290"]],[9,10,["H518"]],[10,13,["H5331"]],[13,14,["H7911"]],[14,15,["H3605"]],[15,18,["H4639"]]]},{"k":22489,"v":[[0,2,["H3808"]],[2,4,["H776"]],[4,5,["H7264"]],[5,6,["H5921"]],[6,7,["H2063"]],[7,10,["H3605"]],[10,11,["H56"]],[11,13,["H3427"]],[13,19,["H5927"]],[19,20,["H3605"]],[20,23,["H2975"]],[23,29,["H1644"]],[29,31,["H8257"]],[31,35,["H2975"]],[35,37,["H4714"]]]},{"k":22490,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,10,["H5002"]],[10,12,["H136"]],[12,13,["H3069"]],[13,19,["H8121"]],[19,22,["H935"]],[22,24,["H6672"]],[24,28,["H2821"]],[28,30,["H776"]],[30,33,["H216"]],[33,34,["H3117"]]]},{"k":22491,"v":[[0,4,["H2015"]],[4,6,["H2282"]],[6,8,["H60"]],[8,10,["H3605"]],[10,12,["H7892"]],[12,14,["H7015"]],[14,19,["H5927"]],[19,20,["H8242"]],[20,21,["H5921"]],[21,22,["H3605"]],[22,23,["H4975"]],[23,25,["H7144"]],[25,26,["H5921"]],[26,27,["H3605"]],[27,28,["H7218"]],[28,32,["H7760"]],[32,36,["H60"]],[36,39,["H3173"]],[39,43,["H319"]],[43,47,["H4751"]],[47,48,["H3117"]]]},{"k":22492,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,5,["H5002"]],[5,7,["H136"]],[7,8,["H3069"]],[8,12,["H7971"]],[12,14,["H7458"]],[14,17,["H776"]],[17,18,["H3808"]],[18,20,["H7458"]],[20,22,["H3899"]],[22,23,["H3808"]],[23,25,["H6772"]],[25,27,["H4325"]],[27,28,["H3588","H518"]],[28,30,["H8085","(H853)"]],[30,32,["H1697"]],[32,35,["H3068"]]]},{"k":22493,"v":[[0,4,["H5128"]],[4,6,["H4480","H3220"]],[6,7,["H5704"]],[7,8,["H3220"]],[8,12,["H4480","H6828"]],[12,14,["H5704"]],[14,16,["H4217"]],[16,22,["H7751"]],[22,24,["H1245","(H853)"]],[24,26,["H1697"]],[26,29,["H3068"]],[29,32,["H3808"]],[32,33,["H4672"]],[33,34,[]]]},{"k":22494,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H3303"]],[6,7,["H1330"]],[7,10,["H970"]],[10,11,["H5968"]],[11,13,["H6772"]]]},{"k":22495,"v":[[0,3,["H7650"]],[3,6,["H819"]],[6,8,["H8111"]],[8,10,["H559"]],[10,12,["H430"]],[12,14,["H1835"]],[14,15,["H2416"]],[15,18,["H1870"]],[18,20,["H884"]],[20,21,["H2416"]],[21,25,["H5307"]],[25,27,["H3808"]],[27,29,["H6965"]],[29,30,["H5750"]]]},{"k":22496,"v":[[0,2,["H7200","(H853)"]],[2,4,["H136"]],[4,5,["H5324"]],[5,6,["H5921"]],[6,8,["H4196"]],[8,11,["H559"]],[11,12,["H5221"]],[12,14,["H3730"]],[14,20,["H5592"]],[20,22,["H7493"]],[22,24,["H1214"]],[24,28,["H7218"]],[28,29,["H3605"]],[29,35,["H2026"]],[35,37,["H319"]],[37,42,["H2719"]],[42,45,["H5127"]],[45,49,["H3808"]],[49,51,["H5127"]],[51,55,["H6412"]],[55,59,["H3808"]],[59,61,["H4422"]]]},{"k":22497,"v":[[0,1,["H518"]],[1,3,["H2864"]],[3,5,["H7585"]],[5,6,["H4480","H8033"]],[6,9,["H3027"]],[9,10,["H3947"]],[10,12,["H518"]],[12,15,["H5927"]],[15,17,["H8064"]],[17,18,["H4480","H8033"]],[18,23,["H3381"]]]},{"k":22498,"v":[[0,2,["H518"]],[2,5,["H2244"]],[5,8,["H7218"]],[8,10,["H3760"]],[10,13,["H2664"]],[13,15,["H3947"]],[15,18,["H4480","H8033"]],[18,20,["H518"]],[20,23,["H5641"]],[23,24,["H4480","H5048"]],[24,26,["H5869"]],[26,29,["H7172"]],[29,32,["H3220"]],[32,33,["H4480","H8033"]],[33,36,["H6680","(H853)"]],[36,38,["H5175"]],[38,42,["H5391"]],[42,43,[]]]},{"k":22499,"v":[[0,2,["H518"]],[2,4,["H1980"]],[4,6,["H7628"]],[6,7,["H6440"]],[7,9,["H341"]],[9,10,["H4480","H8033"]],[10,13,["H6680","(H853)"]],[13,15,["H2719"]],[15,19,["H2026"]],[19,24,["H7760"]],[24,26,["H5869"]],[26,27,["H5921"]],[27,30,["H7451"]],[30,32,["H3808"]],[32,34,["H2896"]]]},{"k":22500,"v":[[0,3,["H136"]],[3,4,["H3069"]],[4,6,["H6635"]],[6,10,["H5060"]],[10,12,["H776"]],[12,16,["H4127"]],[16,18,["H3605"]],[18,20,["H3427"]],[20,23,["H56"]],[23,28,["H5927"]],[28,29,["H3605"]],[29,32,["H2975"]],[32,36,["H8257"]],[36,40,["H2975"]],[40,42,["H4714"]]]},{"k":22501,"v":[[0,5,["H1129"]],[5,7,["H4609"]],[7,10,["H8064"]],[10,13,["H3245"]],[13,15,["H92"]],[15,16,["H5921"]],[16,18,["H776"]],[18,21,["H7121"]],[21,24,["H4325"]],[24,27,["H3220"]],[27,31,["H8210"]],[31,32,["H5921"]],[32,34,["H6440"]],[34,37,["H776"]],[37,39,["H3068"]],[39,42,["H8034"]]]},{"k":22502,"v":[[0,2,["H859"]],[2,3,["H3808"]],[3,5,["H1121"]],[5,8,["H3569"]],[8,12,["H1121"]],[12,14,["H3478"]],[14,15,["H5002"]],[15,17,["H3068"]],[17,19,["H3808"]],[19,22,["H5927","(H853)"]],[22,23,["H3478"]],[23,27,["H4480","H776"]],[27,29,["H4714"]],[29,32,["H6430"]],[32,34,["H4480","H3731"]],[34,37,["H758"]],[37,39,["H4480","H7024"]]]},{"k":22503,"v":[[0,1,["H2009"]],[1,3,["H5869"]],[3,6,["H136"]],[6,7,["H3069"]],[7,11,["H2400"]],[11,12,["H4467"]],[12,16,["H8045"]],[16,19,["H4480","H5921"]],[19,21,["H6440"]],[21,24,["H127"]],[24,25,["H657"]],[25,26,["H3588"]],[26,29,["H3808"]],[29,31,["H8045","H8045","(H853)"]],[31,33,["H1004"]],[33,35,["H3290"]],[35,36,["H5002"]],[36,38,["H3068"]]]},{"k":22504,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,3,["H595"]],[3,5,["H6680"]],[5,9,["H5128","(H853)"]],[9,11,["H1004"]],[11,13,["H3478"]],[13,15,["H3605"]],[15,16,["H1471"]],[16,18,["H834"]],[18,21,["H5128"]],[21,24,["H3531"]],[24,27,["H3808"]],[27,30,["H6872"]],[30,31,["H5307"]],[31,34,["H776"]]]},{"k":22505,"v":[[0,1,["H3605"]],[1,3,["H2400"]],[3,6,["H5971"]],[6,8,["H4191"]],[8,11,["H2719"]],[11,13,["H559"]],[13,15,["H7451"]],[15,17,["H3808"]],[17,18,["H5066"]],[18,20,["H6923","H1157"]],[20,21,[]]]},{"k":22506,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,7,["H6965","(H853)"]],[7,9,["H5521"]],[9,11,["H1732"]],[11,14,["H5307"]],[14,17,["H1443","(H853)"]],[17,19,["H6556"]],[19,25,["H6965"]],[25,27,["H2034"]],[27,31,["H1129"]],[31,36,["H3117"]],[36,38,["H5769"]]]},{"k":22507,"v":[[0,1,["H4616"]],[1,4,["H3423","(H853)"]],[4,6,["H7611"]],[6,8,["H123"]],[8,11,["H3605"]],[11,13,["H1471"]],[13,14,["H834"]],[14,17,["H7121","H5921"]],[17,19,["H8034"]],[19,20,["H5002"]],[20,22,["H3068"]],[22,24,["H6213"]],[24,25,["H2063"]]]},{"k":22508,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,10,["H2790"]],[10,12,["H5066"]],[12,14,["H7114"]],[14,17,["H1869"]],[17,19,["H6025"]],[19,22,["H4900"]],[22,23,["H2233"]],[23,26,["H2022"]],[26,28,["H5197"]],[28,30,["H6071"]],[30,32,["H3605"]],[32,34,["H1389"]],[34,36,["H4127"]]]},{"k":22509,"v":[[0,5,["H7725","(H853)"]],[5,7,["H7622"]],[7,10,["H5971"]],[10,12,["H3478"]],[12,16,["H1129"]],[16,18,["H8074"]],[18,19,["H5892"]],[19,21,["H3427"]],[21,26,["H5193"]],[26,27,["H3754"]],[27,29,["H8354","(H853)"]],[29,31,["H3196"]],[31,36,["H6213"]],[36,37,["H1593"]],[37,39,["H398","(H853)"]],[39,41,["H6529"]],[41,43,[]]]},{"k":22510,"v":[[0,4,["H5193"]],[4,6,["H5921"]],[6,8,["H127"]],[8,12,["H3808"]],[12,13,["H5750"]],[13,16,["H5428"]],[16,18,["H4480","H5921"]],[18,20,["H127"]],[20,21,["H834"]],[21,24,["H5414"]],[24,26,["H559"]],[26,28,["H3068"]],[28,30,["H430"]]]},{"k":22511,"v":[[0,2,["H2377"]],[2,4,["H5662"]],[4,5,["H3541"]],[5,6,["H559"]],[6,8,["H136"]],[8,9,["H3069"]],[9,11,["H123"]],[11,14,["H8085"]],[14,16,["H8052"]],[16,17,["H4480","H854"]],[17,19,["H3068"]],[19,22,["H6735"]],[22,24,["H7971"]],[24,27,["H1471"]],[27,28,["H6965"]],[28,34,["H6965"]],[34,35,["H5921"]],[35,38,["H4421"]]]},{"k":22512,"v":[[0,1,["H2009"]],[1,4,["H5414"]],[4,6,["H6996"]],[6,9,["H1471"]],[9,10,["H859"]],[10,12,["H3966"]],[12,13,["H959"]]]},{"k":22513,"v":[[0,2,["H2087"]],[2,5,["H3820"]],[5,7,["H5377"]],[7,11,["H7931"]],[11,14,["H2288"]],[14,17,["H5553"]],[17,19,["H7675"]],[19,21,["H4791"]],[21,23,["H559"]],[23,26,["H3820"]],[26,27,["H4310"]],[27,31,["H3381"]],[31,34,["H776"]]]},{"k":22514,"v":[[0,1,["H518"]],[1,3,["H1361"]],[3,7,["H5404"]],[7,9,["H518"]],[9,11,["H7760"]],[11,13,["H7064"]],[13,14,["H996"]],[14,16,["H3556"]],[16,17,["H4480","H8033"]],[17,22,["H3381"]],[22,23,["H5002"]],[23,25,["H3068"]]]},{"k":22515,"v":[[0,1,["H518"]],[1,2,["H1590"]],[2,3,["H935"]],[3,6,["H518"]],[6,7,["H7703"]],[7,9,["H3915"]],[9,10,["H349"]],[10,14,["H1820"]],[14,17,["H3808"]],[17,19,["H1589"]],[19,23,["H1767"]],[23,24,["H518"]],[24,26,["H1219"]],[26,27,["H935"]],[27,32,["H3808"]],[32,33,["H7604"]],[33,35,["H5955"]]]},{"k":22516,"v":[[0,1,["H349"]],[1,6,["H6215"]],[6,8,["H2664"]],[8,13,["H4710"]],[13,15,["H1158"]]]},{"k":22517,"v":[[0,1,["H3605"]],[1,3,["H376"]],[3,6,["H1285"]],[6,8,["H7971"]],[8,11,["H5704"]],[11,13,["H1366"]],[13,15,["H376"]],[15,19,["H7965"]],[19,23,["H5377"]],[23,26,["H3201"]],[26,33,["H3899"]],[33,35,["H7760"]],[35,37,["H4204"]],[37,38,["H8478"]],[38,42,["H369"]],[42,43,["H8394"]],[43,45,[]]]},{"k":22518,"v":[[0,3,["H3808"]],[3,5,["H1931"]],[5,6,["H3117"]],[6,7,["H5002"]],[7,9,["H3068"]],[9,11,["H6"]],[11,13,["H2450"]],[13,17,["H4480","H123"]],[17,19,["H8394"]],[19,23,["H4480","H2022"]],[23,25,["H6215"]]]},{"k":22519,"v":[[0,3,["H1368"]],[3,6,["H8487"]],[6,9,["H2865"]],[9,13,["H4616"]],[13,15,["H376"]],[15,18,["H4480","H2022"]],[18,20,["H6215"]],[20,24,["H3772"]],[24,26,["H4480","H6993"]]]},{"k":22520,"v":[[0,3,["H4480","H2555"]],[3,6,["H251"]],[6,7,["H3290"]],[7,8,["H955"]],[8,10,["H3680"]],[10,17,["H3772"]],[17,19,["H5769"]]]},{"k":22521,"v":[[0,3,["H3117"]],[3,6,["H5975"]],[6,10,["H4480","H5048"]],[10,13,["H3117"]],[13,16,["H2114"]],[16,19,["H7617"]],[19,21,["H2428"]],[21,23,["H5237"]],[23,25,["H935"]],[25,27,["H8179"]],[27,29,["H3032"]],[29,30,["H1486"]],[30,31,["H5921"]],[31,32,["H3389"]],[32,33,["H1571"]],[33,34,["H859"]],[34,37,["H259"]],[37,38,["H4480"]],[38,39,[]]]},{"k":22522,"v":[[0,4,["H408"]],[4,6,["H7200"]],[6,9,["H3117"]],[9,12,["H251"]],[12,15,["H3117"]],[15,20,["H5237"]],[20,21,["H408"]],[21,25,["H8055"]],[25,28,["H1121"]],[28,30,["H3063"]],[30,33,["H3117"]],[33,36,["H6"]],[36,37,["H408"]],[37,42,["H1431","H6310"]],[42,45,["H3117"]],[45,47,["H6869"]]]},{"k":22523,"v":[[0,3,["H408"]],[3,5,["H935"]],[5,8,["H8179"]],[8,11,["H5971"]],[11,14,["H3117"]],[14,17,["H343"]],[17,18,["H1571"]],[18,19,["H859"]],[19,21,["H408"]],[21,23,["H7200"]],[23,26,["H7451"]],[26,29,["H3117"]],[29,32,["H343"]],[32,33,["H408"]],[33,35,["H7971"]],[35,39,["H2428"]],[39,42,["H3117"]],[42,45,["H343"]]]},{"k":22524,"v":[[0,1,["H408"]],[1,5,["H5975"]],[5,6,["H5921"]],[6,8,["H6563"]],[8,11,["H3772","(H853)"]],[11,17,["H6412"]],[17,18,["H408"]],[18,23,["H5462"]],[23,29,["H8300"]],[29,32,["H3117"]],[32,34,["H6869"]]]},{"k":22525,"v":[[0,1,["H3588"]],[1,3,["H3117"]],[3,6,["H3068"]],[6,8,["H7138"]],[8,9,["H5921"]],[9,10,["H3605"]],[10,12,["H1471"]],[12,13,["H834"]],[13,16,["H6213"]],[16,20,["H6213"]],[20,24,["H1576"]],[24,26,["H7725"]],[26,30,["H7218"]]]},{"k":22526,"v":[[0,1,["H3588"]],[1,2,["H834"]],[2,5,["H8354"]],[5,6,["H5921"]],[6,8,["H6944"]],[8,9,["H2022"]],[9,12,["H3605"]],[12,14,["H1471"]],[14,15,["H8354"]],[15,16,["H8548"]],[16,20,["H8354"]],[20,25,["H3886"]],[25,29,["H1961"]],[29,34,["H3808"]],[34,35,["H1961"]]]},{"k":22527,"v":[[0,3,["H2022"]],[3,4,["H6726"]],[4,6,["H1961"]],[6,7,["H6413"]],[7,11,["H1961"]],[11,12,["H6944"]],[12,15,["H1004"]],[15,17,["H3290"]],[17,19,["H3423","(H853)"]],[19,21,["H4180"]]]},{"k":22528,"v":[[0,3,["H1004"]],[3,5,["H3290"]],[5,7,["H1961"]],[7,9,["H784"]],[9,12,["H1004"]],[12,14,["H3130"]],[14,16,["H3852"]],[16,19,["H1004"]],[19,21,["H6215"]],[21,23,["H7179"]],[23,27,["H1814"]],[27,31,["H398"]],[31,36,["H3808"]],[36,37,["H1961"]],[37,39,["H8300"]],[39,42,["H1004"]],[42,44,["H6215"]],[44,45,["H3588"]],[45,47,["H3068"]],[47,49,["H1696"]],[49,50,[]]]},{"k":22529,"v":[[0,5,["H5045"]],[5,7,["H3423","(H853)"]],[7,9,["H2022"]],[9,11,["H6215"]],[11,16,["H8219","(H853)"]],[16,18,["H6430"]],[18,22,["H3423","(H853)"]],[22,24,["H7704"]],[24,26,["H669"]],[26,29,["H7704"]],[29,31,["H8111"]],[31,33,["H1144"]],[33,35,["(H853)"]],[35,36,["H1568"]]]},{"k":22530,"v":[[0,3,["H1546"]],[3,5,["H2088"]],[5,6,["H2426"]],[6,9,["H1121"]],[9,11,["H3478"]],[11,14,["H834"]],[14,17,["H3669"]],[17,19,["H5704"]],[19,20,["H6886"]],[20,23,["H1546"]],[23,25,["H3389"]],[25,26,["H834"]],[26,29,["H5614"]],[29,31,["H3423","(H853)"]],[31,33,["H5892"]],[33,36,["H5045"]]]},{"k":22531,"v":[[0,2,["H3467"]],[2,5,["H5927"]],[5,7,["H2022"]],[7,8,["H6726"]],[8,10,["H8199"]],[10,11,["(H853)"]],[11,12,["H2022"]],[12,14,["H6215"]],[14,17,["H4410"]],[17,19,["H1961"]],[19,21,["H3068"]]]},{"k":22532,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3124"]],[9,11,["H1121"]],[11,13,["H573"]],[13,14,["H559"]]]},{"k":22533,"v":[[0,1,["H6965"]],[1,2,["H1980"]],[2,3,["H413"]],[3,4,["H5210"]],[4,6,["H1419"]],[6,7,["H5892"]],[7,9,["H7121"]],[9,10,["H5921"]],[10,12,["H3588"]],[12,14,["H7451"]],[14,17,["H5927"]],[17,18,["H6440"]],[18,19,[]]]},{"k":22534,"v":[[0,2,["H3124"]],[2,4,["H6965"]],[4,6,["H1272"]],[6,8,["H8659"]],[8,11,["H4480","H6440"]],[11,14,["H3068"]],[14,17,["H3381"]],[17,19,["H3305"]],[19,22,["H4672"]],[22,24,["H591"]],[24,25,["H935"]],[25,27,["H8659"]],[27,30,["H5414"]],[30,32,["H7939"]],[32,36,["H3381"]],[36,40,["H935"]],[40,41,["H5973"]],[41,44,["H8659"]],[44,47,["H4480","H6440"]],[47,50,["H3068"]]]},{"k":22535,"v":[[0,3,["H3068"]],[3,5,["H2904"]],[5,7,["H1419"]],[7,8,["H7307"]],[8,9,["H413"]],[9,11,["H3220"]],[11,14,["H1961"]],[14,16,["H1419"]],[16,17,["H5591"]],[17,20,["H3220"]],[20,24,["H591"]],[24,26,["H2803"]],[26,29,["H7665"]]]},{"k":22536,"v":[[0,3,["H4419"]],[3,5,["H3372"]],[5,7,["H2199"]],[7,9,["H376"]],[9,10,["H413"]],[10,12,["H430"]],[12,15,["H2904","(H853)"]],[15,17,["H3627"]],[17,18,["H834"]],[18,22,["H591"]],[22,23,["H413"]],[23,25,["H3220"]],[25,27,["H7043"]],[27,29,["H4480","H5921"]],[29,32,["H3124"]],[32,35,["H3381"]],[35,36,["H413"]],[36,38,["H3411"]],[38,41,["H5600"]],[41,44,["H7901"]],[44,48,["H7290"]]]},{"k":22537,"v":[[0,3,["H7227","H2259"]],[3,4,["H7126"]],[4,5,["H413"]],[5,8,["H559"]],[8,11,["H4100"]],[11,15,["H7290"]],[15,16,["H6965"]],[16,17,["H7121"]],[17,18,["H413"]],[18,20,["H430"]],[20,23,["H194"]],[23,25,["H430"]],[25,27,["H6245"]],[27,32,["H6"]],[32,33,["H3808"]]]},{"k":22538,"v":[[0,3,["H559"]],[3,5,["H376"]],[5,6,["H413"]],[6,8,["H7453"]],[8,9,["H1980"]],[9,13,["H5307"]],[13,14,["H1486"]],[14,18,["H3045"]],[18,21,["H7945","H4310"]],[21,22,["H2063"]],[22,23,["H7451"]],[23,29,["H5307"]],[29,30,["H1486"]],[30,33,["H1486"]],[33,34,["H5307"]],[34,35,["H5921"]],[35,36,["H3124"]]]},{"k":22539,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H5046"]],[6,10,["H4994"]],[10,13,["H834","H4310"]],[13,14,["H2063"]],[14,15,["H7451"]],[15,19,["H4100"]],[19,22,["H4399"]],[22,24,["H4480","H370"]],[24,25,["H935"]],[25,27,["H4100"]],[27,30,["H776"]],[30,33,["H335","H4480","H2088"]],[33,34,["H5971"]],[34,36,["H859"]]]},{"k":22540,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H595"]],[6,9,["H5680"]],[9,11,["H589"]],[11,12,["H3372"]],[12,14,["H3068"]],[14,16,["H430"]],[16,18,["H8064"]],[18,19,["H834"]],[19,21,["H6213","(H853)"]],[21,23,["H3220"]],[23,26,["H3004"]],[26,27,[]]]},{"k":22541,"v":[[0,4,["H376"]],[4,5,["H1419"]],[5,6,["H3372","H3374"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H4100"]],[11,14,["H6213"]],[14,15,["H2063"]],[15,16,["H3588"]],[16,18,["H376"]],[18,19,["H3045"]],[19,20,["H3588"]],[20,21,["H1931"]],[21,22,["H1272"]],[22,25,["H4480","H6440"]],[25,28,["H3068"]],[28,29,["H3588"]],[29,32,["H5046"]],[32,33,[]]]},{"k":22542,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H4100"]],[6,9,["H6213"]],[9,14,["H3220"]],[14,17,["H8367"]],[17,18,["H4480","H5921"]],[18,20,["H3588"]],[20,22,["H3220"]],[22,23,["H1980"]],[23,26,["H5590"]]]},{"k":22543,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,8,["H5375"]],[8,12,["H2904"]],[12,13,["H413"]],[13,15,["H3220"]],[15,19,["H3220"]],[19,21,["H8367"]],[21,22,["H4480","H5921"]],[22,24,["H3588"]],[24,25,["H589"]],[25,26,["H3045"]],[26,27,["H3588"]],[27,30,["H7945"]],[30,31,["H2088"]],[31,32,["H1419"]],[32,33,["H5591"]],[33,35,["H5921"]],[35,36,[]]]},{"k":22544,"v":[[0,3,["H376"]],[3,4,["H2864"]],[4,7,["H7725"]],[7,9,["H413"]],[9,11,["H3004"]],[11,14,["H3201"]],[14,15,["H3808"]],[15,16,["H3588"]],[16,18,["H3220"]],[18,19,["H1980"]],[19,22,["H5590"]],[22,23,["H5921"]],[23,24,[]]]},{"k":22545,"v":[[0,3,["H7121"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H559"]],[8,11,["H4994"]],[11,13,["H3068"]],[13,16,["H577"]],[16,19,["H408"]],[19,20,["H6"]],[20,22,["H2088"]],[22,23,["H376"]],[23,24,["H5315"]],[24,26,["H5414"]],[26,27,["H408"]],[27,28,["H5921"]],[28,30,["H5355"]],[30,31,["H1818"]],[31,32,["H3588"]],[32,33,["H859"]],[33,35,["H3068"]],[35,37,["H6213"]],[37,38,["H834"]],[38,40,["H2654"]],[40,41,[]]]},{"k":22546,"v":[[0,4,["H5375","(H853)"]],[4,5,["H3124"]],[5,9,["H2904"]],[9,10,["H413"]],[10,12,["H3220"]],[12,15,["H3220"]],[15,16,["H5975"]],[16,19,["H4480","H2197"]]]},{"k":22547,"v":[[0,3,["H376"]],[3,4,["H3372","H3374","(H853)"]],[4,6,["H3068"]],[6,7,["H1419"]],[7,9,["H2076"]],[9,11,["H2077"]],[11,14,["H3068"]],[14,16,["H5087"]],[16,17,["H5088"]]]},{"k":22548,"v":[[0,3,["H3068"]],[3,5,["H4487"]],[5,7,["H1419"]],[7,8,["H1709"]],[8,11,["H1104","(H853)"]],[11,12,["H3124"]],[12,14,["H3124"]],[14,15,["H1961"]],[15,18,["H4578"]],[18,21,["H1709"]],[21,22,["H7969"]],[22,23,["H3117"]],[23,25,["H7969"]],[25,26,["H3915"]]]},{"k":22549,"v":[[0,2,["H3124"]],[2,3,["H6419"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H430"]],[8,12,["H1710"]],[12,13,["H4480","H4578"]]]},{"k":22550,"v":[[0,2,["H559"]],[2,4,["H7121"]],[4,9,["H4480","H6869"]],[9,10,["H413"]],[10,12,["H3068"]],[12,15,["H6030"]],[15,20,["H4480","H990"]],[20,22,["H7585"]],[22,23,["H7768"]],[23,27,["H8085"]],[27,29,["H6963"]]]},{"k":22551,"v":[[0,4,["H7993"]],[4,8,["H4688"]],[8,11,["H3824"]],[11,14,["H3220"]],[14,17,["H5104"]],[17,20,["H5437"]],[20,21,["H3605"]],[21,23,["H4867"]],[23,26,["H1530"]],[26,27,["H5674"]],[27,28,["H5921"]],[28,29,[]]]},{"k":22552,"v":[[0,2,["H589"]],[2,3,["H559"]],[3,7,["H1644"]],[7,8,["H4480","H5048"]],[8,10,["H5869"]],[10,11,["H389"]],[11,14,["H5027"]],[14,15,["H3254"]],[15,16,["H413"]],[16,18,["H6944"]],[18,19,["H1964"]]]},{"k":22553,"v":[[0,2,["H4325"]],[2,5,["H661"]],[5,7,["H5704"]],[7,9,["H5315"]],[9,11,["H8415"]],[11,15,["H5437"]],[15,17,["H5488"]],[17,19,["H2280"]],[19,22,["H7218"]]]},{"k":22554,"v":[[0,3,["H3381"]],[3,6,["H7095"]],[6,9,["H2022"]],[9,11,["H776"]],[11,14,["H1280"]],[14,16,["H1157"]],[16,19,["H5769"]],[19,24,["H5927"]],[24,26,["H2416"]],[26,28,["H4480","H7845"]],[28,30,["H3068"]],[30,32,["H430"]]]},{"k":22555,"v":[[0,3,["H5315"]],[3,4,["H5848"]],[4,5,["H5921"]],[5,8,["H2142","(H853)"]],[8,10,["H3068"]],[10,13,["H8605"]],[13,15,["H935"]],[15,16,["H413"]],[16,18,["H413"]],[18,20,["H6944"]],[20,21,["H1964"]]]},{"k":22556,"v":[[0,3,["H8104"]],[3,4,["H7723"]],[4,5,["H1892"]],[5,6,["H5800"]],[6,9,["H2617"]]]},{"k":22557,"v":[[0,2,["H589"]],[2,4,["H2076"]],[4,9,["H6963"]],[9,11,["H8426"]],[11,14,["H7999"]],[14,16,["H834"]],[16,19,["H5087"]],[19,20,["H3444"]],[20,24,["H3068"]]]},{"k":22558,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,7,["H1709"]],[7,11,["H6958","(H853)"]],[11,12,["H3124"]],[12,13,["H413"]],[13,15,["H3004"]],[15,16,[]]]},{"k":22559,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3124"]],[9,12,["H8145"]],[12,13,["H559"]]]},{"k":22560,"v":[[0,1,["H6965"]],[1,2,["H1980"]],[2,3,["H413"]],[3,4,["H5210"]],[4,6,["H1419"]],[6,7,["H5892"]],[7,9,["H7121"]],[9,10,["H413"]],[10,11,["(H853)"]],[11,13,["H7150"]],[13,14,["H834"]],[14,15,["H595"]],[15,16,["H1696","H413"]],[16,17,[]]]},{"k":22561,"v":[[0,2,["H3124"]],[2,3,["H6965"]],[3,5,["H1980"]],[5,6,["H413"]],[6,7,["H5210"]],[7,11,["H1697"]],[11,14,["H3068"]],[14,16,["H5210"]],[16,17,["H1961"]],[17,19,["H430"]],[19,20,["H1419"]],[20,21,["H5892"]],[21,23,["H7969"]],[23,24,["H3117"]],[24,25,["H4109"]]]},{"k":22562,"v":[[0,2,["H3124"]],[2,3,["H2490"]],[3,5,["H935"]],[5,8,["H5892"]],[8,9,["H259"]],[9,10,["H3117"]],[10,11,["H4109"]],[11,14,["H7121"]],[14,16,["H559"]],[16,17,["H5750"]],[17,18,["H705"]],[18,19,["H3117"]],[19,21,["H5210"]],[21,24,["H2015"]]]},{"k":22563,"v":[[0,3,["H376"]],[3,5,["H5210"]],[5,6,["H539"]],[6,7,["H430"]],[7,9,["H7121"]],[9,11,["H6685"]],[11,14,["H3847"]],[14,15,["H8242"]],[15,18,["H4480","H1419"]],[18,22,["H5704"]],[22,24,["H6996"]],[24,26,[]]]},{"k":22564,"v":[[0,2,["H1697"]],[2,3,["H5060"]],[3,4,["H413"]],[4,6,["H4428"]],[6,8,["H5210"]],[8,11,["H6965"]],[11,14,["H4480","H3678"]],[14,17,["H5674"]],[17,19,["H155"]],[19,20,["H4480","H5921"]],[20,23,["H3680"]],[23,26,["H8242"]],[26,28,["H3427"]],[28,29,["H5921"]],[29,30,["H665"]]]},{"k":22565,"v":[[0,7,["H2199"]],[7,9,["H559"]],[9,11,["H5210"]],[11,14,["H4480","H2940"]],[14,17,["H4428"]],[17,20,["H1419"]],[20,21,["H559"]],[21,23,["H408"]],[23,24,["H120"]],[24,26,["H929"]],[26,27,["H1241"]],[27,29,["H6629"]],[29,30,["H2938"]],[30,32,["H3972"]],[32,35,["H408"]],[35,36,["H7462"]],[36,37,["H408"]],[37,38,["H8354"]],[38,39,["H4325"]]]},{"k":22566,"v":[[0,3,["H120"]],[3,5,["H929"]],[5,7,["H3680"]],[7,9,["H8242"]],[9,11,["H7121"]],[11,12,["H2394"]],[12,13,["H413"]],[13,14,["H430"]],[14,18,["H7725"]],[18,20,["H376"]],[20,23,["H7451"]],[23,24,["H4480","H1870"]],[24,26,["H4480"]],[26,28,["H2555"]],[28,29,["H834"]],[29,33,["H3709"]]]},{"k":22567,"v":[[0,1,["H4310"]],[1,3,["H3045"]],[3,5,["H430"]],[5,7,["H7725"]],[7,9,["H5162"]],[9,12,["H7725"]],[12,15,["H4480","H2740"]],[15,16,["H639"]],[16,19,["H6"]],[19,20,["H3808"]]]},{"k":22568,"v":[[0,2,["H430"]],[2,3,["H7200","(H853)"]],[3,5,["H4639"]],[5,6,["H3588"]],[6,8,["H7725"]],[8,11,["H7451"]],[11,12,["H4480","H1870"]],[12,14,["H430"]],[14,15,["H5162"]],[15,16,["H5921"]],[16,18,["H7451"]],[18,19,["H834"]],[19,22,["H1696"]],[22,26,["H6213"]],[26,31,["H6213"]],[31,33,["H3808"]]]},{"k":22569,"v":[[0,3,["H7489","H413"]],[3,4,["H3124"]],[4,5,["H7451","H1419"]],[5,10,["H2734"]]]},{"k":22570,"v":[[0,3,["H6419"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H559"]],[8,11,["H577"]],[11,13,["H3068"]],[13,15,["H3808"]],[15,16,["H2088"]],[16,18,["H1697"]],[18,21,["H1961"]],[21,22,["H5704"]],[22,23,["H5921"]],[23,25,["H127"]],[25,26,["H5921","H3651"]],[26,28,["H1272"]],[28,29,["H6923"]],[29,31,["H8659"]],[31,32,["H3588"]],[32,34,["H3045"]],[34,35,["H3588"]],[35,36,["H859"]],[36,39,["H2587"]],[39,40,["H410"]],[40,42,["H7349"]],[42,43,["H750"]],[43,45,["H639"]],[45,48,["H7227"]],[48,49,["H2617"]],[49,51,["H5162"]],[51,53,["H5921"]],[53,55,["H7451"]]]},{"k":22571,"v":[[0,2,["H6258"]],[2,4,["H3068"]],[4,5,["H3947"]],[5,8,["H4994","(H853)"]],[8,10,["H5315"]],[10,11,["H4480"]],[11,13,["H3588"]],[13,16,["H2896"]],[16,20,["H4194"]],[20,23,["H4480","H2416"]]]},{"k":22572,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,7,["H3190"]],[7,10,["H2734"]]]},{"k":22573,"v":[[0,2,["H3124"]],[2,4,["H3318"]],[4,5,["H4480"]],[5,7,["H5892"]],[7,9,["H3427"]],[9,13,["H4480","H6924"]],[13,16,["H5892"]],[16,18,["H8033"]],[18,19,["H6213"]],[19,22,["H5521"]],[22,24,["H3427"]],[24,25,["H8478"]],[25,29,["H6738"]],[29,30,["H5704"]],[30,33,["H7200"]],[33,34,["H4100"]],[34,36,["H1961"]],[36,39,["H5892"]]]},{"k":22574,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,5,["H4487"]],[5,7,["H7021"]],[7,13,["H5927"]],[13,14,["H4480","H5921"]],[14,15,["H3124"]],[15,19,["H1961"]],[19,21,["H6738"]],[21,22,["H5921"]],[22,24,["H7218"]],[24,26,["H5337"]],[26,30,["H4480","H7451"]],[30,32,["H3124"]],[32,33,["H8055"]],[33,35,["H1419","H8057"]],[35,36,["H5921"]],[36,38,["H7021"]]]},{"k":22575,"v":[[0,2,["H430"]],[2,3,["H4487"]],[3,5,["H8438"]],[5,8,["H7837"]],[8,9,["H5927"]],[9,12,["H4283"]],[12,15,["H5221","(H853)"]],[15,17,["H7021"]],[17,20,["H3001"]]]},{"k":22576,"v":[[0,5,["H1961"]],[5,8,["H8121"]],[8,10,["H2224"]],[10,12,["H430"]],[12,13,["H4487"]],[13,15,["H2759"]],[15,16,["H6921"]],[16,17,["H7307"]],[17,20,["H8121"]],[20,21,["H5221"]],[21,22,["H5921"]],[22,24,["H7218"]],[24,26,["H3124"]],[26,29,["H5968"]],[29,31,["H7592"]],[31,32,["H854"]],[32,33,["H5315"]],[33,35,["H4191"]],[35,37,["H559"]],[37,40,["H2896"]],[40,44,["H4194"]],[44,47,["H4480","H2416"]]]},{"k":22577,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3124"]],[5,8,["H3190"]],[8,11,["H2734"]],[11,12,["H5921"]],[12,14,["H7021"]],[14,17,["H559"]],[17,20,["H3190"]],[20,23,["H2734"]],[23,25,["H5704"]],[25,26,["H4194"]]]},{"k":22578,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H859"]],[5,8,["H2347"]],[8,9,["H5921"]],[9,11,["H7021"]],[11,14,["H834"]],[14,17,["H3808"]],[17,18,["H5998"]],[18,19,["H3808"]],[19,22,["H1431"]],[22,25,["H1961"]],[25,26,["H7945","H1121"]],[26,28,["H3915"]],[28,30,["H6"]],[30,31,["H1121"]],[31,33,["H3915"]]]},{"k":22579,"v":[[0,3,["H3808"]],[3,4,["H589"]],[4,5,["H2347","H5921"]],[5,6,["H5210"]],[6,8,["H1419"]],[8,9,["H5892"]],[9,10,["H834"]],[10,11,["H3426"]],[11,12,["H7235"]],[12,15,["H4480","H8147","H6240","H7239"]],[15,16,["H120"]],[16,17,["H834"]],[17,18,["H3808"]],[18,19,["H3045"]],[19,20,["H996"]],[20,23,["H3225"]],[23,27,["H8040"]],[27,30,["H7227"]],[30,31,["H929"]]]},{"k":22580,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H834"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H4318"]],[9,11,["H4183"]],[11,14,["H3117"]],[14,16,["H3147"]],[16,17,["H271"]],[17,19,["H3169"]],[19,20,["H4428"]],[20,22,["H3063"]],[22,23,["H834"]],[23,25,["H2372"]],[25,26,["H5921"]],[26,27,["H8111"]],[27,29,["H3389"]]]},{"k":22581,"v":[[0,1,["H8085"]],[1,2,["H3605"]],[2,4,["H5971"]],[4,5,["H7181"]],[5,7,["H776"]],[7,12,["H4393"]],[12,16,["H136"]],[16,17,["H3069"]],[17,18,["H1961"]],[18,19,["H5707"]],[19,23,["H136"]],[23,26,["H6944"]],[26,27,["H4480","H1964"]]]},{"k":22582,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H3068"]],[4,6,["H3318"]],[6,10,["H4480","H4725"]],[10,14,["H3381"]],[14,16,["H1869"]],[16,17,["H5921"]],[17,20,["H1116"]],[20,23,["H776"]]]},{"k":22583,"v":[[0,3,["H2022"]],[3,6,["H4549"]],[6,7,["H8478"]],[7,11,["H6010"]],[11,14,["H1234"]],[14,16,["H1749"]],[16,17,["H4480","H6440"]],[17,19,["H784"]],[19,23,["H4325"]],[23,27,["H5064"]],[27,30,["H4174"]]]},{"k":22584,"v":[[0,3,["H6588"]],[3,5,["H3290"]],[5,7,["H3605"]],[7,8,["H2063"]],[8,12,["H2403"]],[12,15,["H1004"]],[15,17,["H3478"]],[17,18,["H4310"]],[18,21,["H6588"]],[21,23,["H3290"]],[23,26,["H3808"]],[26,27,["H8111"]],[27,29,["H4310"]],[29,33,["H1116"]],[33,35,["H3063"]],[35,38,["H3808"]],[38,39,["H3389"]]]},{"k":22585,"v":[[0,4,["H7760"]],[4,5,["H8111"]],[5,8,["H5856"]],[8,11,["H7704"]],[11,14,["H4302"]],[14,17,["H3754"]],[17,22,["H5064"]],[22,24,["H68"]],[24,28,["H1516"]],[28,32,["H1540"]],[32,34,["H3247"]],[34,35,[]]]},{"k":22586,"v":[[0,2,["H3605"]],[2,5,["H6456"]],[5,11,["H3807"]],[11,13,["H3605"]],[13,15,["H868"]],[15,19,["H8313"]],[19,22,["H784"]],[22,24,["H3605"]],[24,26,["H6091"]],[26,30,["H7760"]],[30,31,["H8077"]],[31,32,["H3588"]],[32,34,["H6908"]],[34,38,["H4480","H868"]],[38,41,["H2181"]],[41,45,["H7725"]],[45,46,["H5704"]],[46,48,["H868"]],[48,51,["H2181"]]]},{"k":22587,"v":[[0,1,["H5921","H2063"]],[1,4,["H5594"]],[4,6,["H3213"]],[6,9,["H1980"]],[9,10,["H7758"]],[10,12,["H6174"]],[12,15,["H6213"]],[15,17,["H4553"]],[17,20,["H8568"]],[20,22,["H60"]],[22,25,["H1323","H3284"]]]},{"k":22588,"v":[[0,1,["H3588"]],[1,3,["H4347"]],[3,5,["H605"]],[5,6,["H3588"]],[6,9,["H935"]],[9,10,["H5704"]],[10,11,["H3063"]],[11,14,["H5060"]],[14,15,["H5704"]],[15,17,["H8179"]],[17,20,["H5971"]],[20,22,["H5704"]],[22,23,["H3389"]]]},{"k":22589,"v":[[0,1,["H5046"]],[1,4,["H408"]],[4,6,["H1661"]],[6,11,["H1058","H408","H1058"]],[11,14,["H1004"]],[14,16,["H1036"]],[16,18,["H6428"]],[18,21,["H6083"]]]},{"k":22590,"v":[[0,3,["H5674"]],[3,5,["H3427"]],[5,7,["H8208"]],[7,10,["H1322"]],[10,11,["H6181"]],[11,13,["H3427"]],[13,15,["H6630"]],[15,18,["H3318","H3808"]],[18,21,["H4553"]],[21,23,["H1018"]],[23,26,["H3947"]],[26,27,["H4480"]],[27,30,["H5979"]]]},{"k":22591,"v":[[0,1,["H3588"]],[1,3,["H3427"]],[3,5,["H4796"]],[5,7,["H2470"]],[7,9,["H2896"]],[9,10,["H3588"]],[10,11,["H7451"]],[11,13,["H3381"]],[13,14,["H4480","H854"]],[14,16,["H3068"]],[16,19,["H8179"]],[19,21,["H3389"]]]},{"k":22592,"v":[[0,3,["H3427"]],[3,5,["H3923"]],[5,6,["H7573"]],[6,8,["H4818"]],[8,12,["H7409"]],[12,13,["H1931"]],[13,16,["H7225"]],[16,19,["H2403"]],[19,22,["H1323"]],[22,24,["H6726"]],[24,25,["H3588"]],[25,27,["H6588"]],[27,29,["H3478"]],[29,31,["H4672"]],[31,33,[]]]},{"k":22593,"v":[[0,1,["H3651"]],[1,4,["H5414"]],[4,5,["H7964"]],[5,6,["H5921"]],[6,7,["H4182"]],[7,9,["H1004"]],[9,11,["H392"]],[11,15,["H391"]],[15,18,["H4428"]],[18,20,["H3478"]]]},{"k":22594,"v":[[0,1,["H5750"]],[1,4,["H935"]],[4,6,["H3423"]],[6,10,["H3427"]],[10,12,["H4762"]],[12,15,["H935"]],[15,16,["H5704"]],[16,17,["H5725"]],[17,19,["H3519"]],[19,21,["H3478"]]]},{"k":22595,"v":[[0,3,["H7139"]],[3,5,["H1494"]],[5,7,["H5921"]],[7,9,["H8588"]],[9,10,["H1121"]],[10,11,["H7337"]],[11,13,["H7144"]],[13,16,["H5404"]],[16,17,["H3588"]],[17,22,["H1540"]],[22,23,["H4480"]],[23,24,[]]]},{"k":22596,"v":[[0,1,["H1945"]],[1,5,["H2803"]],[5,6,["H205"]],[6,8,["H6466"]],[8,9,["H7451"]],[9,10,["H5921"]],[10,12,["H4904"]],[12,15,["H1242"]],[15,17,["H216"]],[17,19,["H6213"]],[19,21,["H3588"]],[21,23,["H3426"]],[23,26,["H410"]],[26,29,["H3027"]]]},{"k":22597,"v":[[0,3,["H2530"]],[3,4,["H7704"]],[4,9,["H1497"]],[9,11,["H1004"]],[11,15,["H5375"]],[15,18,["H6231"]],[18,20,["H1397"]],[20,23,["H1004"]],[23,26,["H376"]],[26,29,["H5159"]]]},{"k":22598,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,7,["H5921"]],[7,8,["H2063"]],[8,9,["H4940"]],[9,12,["H2803"]],[12,14,["H7451"]],[14,15,["H4480","H8033"]],[15,16,["H834"]],[16,19,["H3808"]],[19,20,["H4185"]],[20,22,["H6677"]],[22,23,["H3808"]],[23,26,["H1980"]],[26,27,["H7317"]],[27,28,["H3588"]],[28,29,["H1931"]],[29,30,["H6256"]],[30,32,["H7451"]]]},{"k":22599,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,7,["H5375"]],[7,9,["H4912"]],[9,10,["H5921"]],[10,13,["H5091"]],[13,16,["H5093"]],[16,17,["H5092"]],[17,19,["H559"]],[19,21,["H1961"]],[21,23,["H7703","H7703"]],[23,26,["H4171"]],[26,28,["H2506"]],[28,31,["H5971"]],[31,32,["H349"]],[32,35,["H4185"]],[35,40,["H7728"]],[40,43,["H2505"]],[43,45,["H7704"]]]},{"k":22600,"v":[[0,1,["H3651"]],[1,4,["H1961"]],[4,5,["H3808"]],[5,8,["H7993"]],[8,10,["H2256"]],[10,12,["H1486"]],[12,15,["H6951"]],[15,18,["H3068"]]]},{"k":22601,"v":[[0,1,["H5197"]],[1,3,["H408"]],[3,9,["H5197"]],[9,12,["H3808"]],[12,13,["H5197"]],[13,15,["H428"]],[15,19,["H3808"]],[19,20,["H5253"]],[20,21,["H3639"]]]},{"k":22602,"v":[[0,5,["H559"]],[5,7,["H1004"]],[7,9,["H3290"]],[9,12,["H7307"]],[12,15,["H3068"]],[15,16,["H7114"]],[16,18,["H428"]],[18,20,["H4611"]],[20,22,["H3808"]],[22,24,["H1697"]],[24,26,["H3190"]],[26,27,["H5973"]],[27,30,["H1980"]],[30,31,["H3477"]]]},{"k":22603,"v":[[0,3,["H865"]],[3,5,["H5971"]],[5,8,["H6965"]],[8,11,["H341"]],[11,14,["H6584"]],[14,16,["H145"]],[16,17,["H4480","H4136"]],[17,19,["H8008"]],[19,24,["H4480","H5674"]],[24,25,["H983"]],[25,28,["H7725"]],[28,30,["H4421"]]]},{"k":22604,"v":[[0,2,["H802"]],[2,5,["H5971"]],[5,9,["H1644"]],[9,12,["H8588"]],[12,13,["H4480","H1004"]],[13,14,["H4480","H5921"]],[14,16,["H5768"]],[16,20,["H3947"]],[20,22,["H1926"]],[22,24,["H5769"]]]},{"k":22605,"v":[[0,1,["H6965"]],[1,4,["H1980"]],[4,5,["H3588"]],[5,6,["H2063"]],[6,8,["H3808"]],[8,10,["H4496"]],[10,11,["H5668"]],[11,14,["H2930"]],[14,17,["H2254"]],[17,22,["H4834"]],[22,23,["H2256"]]]},{"k":22606,"v":[[0,1,["H3863"]],[1,3,["H376"]],[3,4,["H1980"]],[4,7,["H7307"]],[7,9,["H8267"]],[9,11,["H3576"]],[11,15,["H5197"]],[15,19,["H3196"]],[19,23,["H7941"]],[23,27,["H1961"]],[27,29,["H5197"]],[29,31,["H2088"]],[31,32,["H5971"]]]},{"k":22607,"v":[[0,4,["H622","H622"]],[4,6,["H3290"]],[6,7,["H3605"]],[7,13,["H6908","H6908"]],[13,15,["H7611"]],[15,17,["H3478"]],[17,20,["H7760"]],[20,22,["H3162"]],[22,25,["H6629"]],[25,27,["H1223"]],[27,30,["H5739"]],[30,33,["H8432"]],[33,36,["H1699"]],[36,41,["H1949"]],[41,48,["H4480","H120"]]]},{"k":22608,"v":[[0,2,["H6555"]],[2,5,["H5927"]],[5,6,["H6440"]],[6,11,["H6555"]],[11,15,["H5674"]],[15,17,["H8179"]],[17,21,["H3318"]],[21,26,["H4428"]],[26,28,["H5674"]],[28,29,["H6440"]],[29,33,["H3068"]],[33,36,["H7218"]],[36,38,[]]]},{"k":22609,"v":[[0,3,["H559"]],[3,4,["H8085"]],[4,7,["H4994"]],[7,9,["H7218"]],[9,11,["H3290"]],[11,14,["H7101"]],[14,17,["H1004"]],[17,19,["H3478"]],[19,22,["H3808"]],[22,26,["H3045","(H853)"]],[26,27,["H4941"]]]},{"k":22610,"v":[[0,2,["H8130"]],[2,4,["H2896"]],[4,6,["H157"]],[6,8,["H7451"]],[8,11,["H1497"]],[11,13,["H5785"]],[13,15,["H4480","H5921"]],[15,19,["H7607"]],[19,21,["H4480","H5921"]],[21,23,["H6106"]]]},{"k":22611,"v":[[0,1,["H834"]],[1,3,["H398"]],[3,5,["H7607"]],[5,8,["H5971"]],[8,10,["H6584"]],[10,12,["H5785"]],[12,14,["H4480","H5921"]],[14,18,["H6476"]],[18,20,["H6106"]],[20,25,["H6566"]],[25,26,["H834"]],[26,29,["H5518"]],[29,32,["H1320"]],[32,33,["H8432"]],[33,35,["H7037"]]]},{"k":22612,"v":[[0,1,["H227"]],[1,4,["H2199"]],[4,5,["H413"]],[5,7,["H3068"]],[7,11,["H3808"]],[11,12,["H6030"]],[12,17,["H5641"]],[17,19,["H6440"]],[19,20,["H4480"]],[20,23,["H1931"]],[23,24,["H6256"]],[24,25,["H834"]],[25,30,["H7489"]],[30,33,["H4611"]]]},{"k":22613,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5921"]],[5,7,["H5030"]],[7,9,["(H853)"]],[9,11,["H5971"]],[11,12,["H8582"]],[12,14,["H5391"]],[14,17,["H8127"]],[17,19,["H7121"]],[19,20,["H7965"]],[20,23,["H834"]],[23,24,["H5414"]],[24,25,["H3808"]],[25,26,["H5921"]],[26,28,["H6310"]],[28,31,["H6942"]],[31,32,["H4421"]],[32,33,["H5921"]],[33,34,[]]]},{"k":22614,"v":[[0,1,["H3651"]],[1,2,["H3915"]],[2,13,["H4480","H2377"]],[13,18,["H2821"]],[18,25,["H4480","H7080"]],[25,28,["H8121"]],[28,31,["H935"]],[31,32,["H5921"]],[32,34,["H5030"]],[34,37,["H3117"]],[37,40,["H6937"]],[40,41,["H5921"]],[41,42,[]]]},{"k":22615,"v":[[0,4,["H2374"]],[4,6,["H954"]],[6,9,["H7080"]],[9,10,["H2659"]],[10,14,["H3605"]],[14,15,["H5844","H5921"]],[15,17,["H8222"]],[17,18,["H3588"]],[18,21,["H369"]],[21,22,["H4617"]],[22,24,["H430"]]]},{"k":22616,"v":[[0,2,["H199"]],[2,3,["H595"]],[3,5,["H4390"]],[5,7,["H3581"]],[7,8,["H854"]],[8,10,["H7307"]],[10,13,["H3068"]],[13,16,["H4941"]],[16,19,["H1369"]],[19,21,["H5046"]],[21,23,["H3290"]],[23,25,["H6588"]],[25,28,["H3478"]],[28,30,["H2403"]]]},{"k":22617,"v":[[0,1,["H8085"]],[1,2,["H2063"]],[2,5,["H4994"]],[5,7,["H7218"]],[7,10,["H1004"]],[10,12,["H3290"]],[12,14,["H7101"]],[14,17,["H1004"]],[17,19,["H3478"]],[19,21,["H8581"]],[21,22,["H4941"]],[22,24,["H6140"]],[24,25,["H3605"]],[25,26,["H3477"]]]},{"k":22618,"v":[[0,3,["H1129"]],[3,4,["H6726"]],[4,6,["H1818"]],[6,8,["H3389"]],[8,10,["H5766"]]]},{"k":22619,"v":[[0,2,["H7218"]],[2,4,["H8199"]],[4,6,["H7810"]],[6,9,["H3548"]],[9,11,["H3384"]],[11,13,["H4242"]],[13,16,["H5030"]],[16,18,["H7080"]],[18,20,["H3701"]],[20,24,["H8172"]],[24,25,["H5921"]],[25,27,["H3068"]],[27,29,["H559"]],[29,31,["H3808"]],[31,33,["H3068"]],[33,34,["H7130"]],[34,36,["H3808"]],[36,37,["H7451"]],[37,39,["H935"]],[39,40,["H5921"]],[40,41,[]]]},{"k":22620,"v":[[0,1,["H3651"]],[1,3,["H6726"]],[3,6,["H1558"]],[6,8,["H2790"]],[8,11,["H7704"]],[11,13,["H3389"]],[13,15,["H1961"]],[15,16,["H5856"]],[16,19,["H2022"]],[19,22,["H1004"]],[22,26,["H1116"]],[26,29,["H3293"]]]},{"k":22621,"v":[[0,4,["H319"]],[4,5,["H3117"]],[5,10,["H1961"]],[10,13,["H2022"]],[13,16,["H1004"]],[16,19,["H3068"]],[19,21,["H1961"]],[21,22,["H3559"]],[22,25,["H7218"]],[25,28,["H2022"]],[28,30,["H1931"]],[30,33,["H5375"]],[33,36,["H4480","H1389"]],[36,38,["H5971"]],[38,40,["H5102"]],[40,41,["H5921"]],[41,42,[]]]},{"k":22622,"v":[[0,2,["H7227"]],[2,3,["H1471"]],[3,5,["H1980"]],[5,7,["H559"]],[7,8,["H1980"]],[8,13,["H5927"]],[13,14,["H413"]],[14,16,["H2022"]],[16,19,["H3068"]],[19,21,["H413"]],[21,23,["H1004"]],[23,26,["H430"]],[26,28,["H3290"]],[28,32,["H3384"]],[32,36,["H4480","H1870"]],[36,40,["H1980"]],[40,43,["H734"]],[43,44,["H3588"]],[44,46,["H8451"]],[46,49,["H3318"]],[49,51,["H4480","H6726"]],[51,54,["H1697"]],[54,57,["H3068"]],[57,59,["H4480","H3389"]]]},{"k":22623,"v":[[0,4,["H8199"]],[4,5,["H996"]],[5,6,["H7227"]],[6,7,["H5971"]],[7,9,["H3198"]],[9,10,["H6099"]],[10,11,["H1471"]],[11,13,["H5704","H7350"]],[13,17,["H3807"]],[17,19,["H2719"]],[19,21,["H855"]],[21,24,["H2595"]],[24,26,["H4211"]],[26,27,["H1471"]],[27,29,["H3808"]],[29,31,["H5375"]],[31,33,["H2719"]],[33,34,["H413"]],[34,35,["H1471"]],[35,36,["H3808"]],[36,39,["H3925"]],[39,40,["H4421"]],[40,42,["H5750"]]]},{"k":22624,"v":[[0,4,["H3427"]],[4,6,["H376"]],[6,7,["H8478"]],[7,9,["H1612"]],[9,11,["H8478"]],[11,14,["H8384"]],[14,16,["H369"]],[16,20,["H2729"]],[20,21,["H3588"]],[21,23,["H6310"]],[23,26,["H3068"]],[26,28,["H6635"]],[28,30,["H1696"]],[30,31,[]]]},{"k":22625,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,3,["H5971"]],[3,5,["H1980"]],[5,7,["H376"]],[7,10,["H8034"]],[10,13,["H430"]],[13,15,["H587"]],[15,17,["H1980"]],[17,20,["H8034"]],[20,23,["H3068"]],[23,25,["H430"]],[25,27,["H5769"]],[27,29,["H5703"]]]},{"k":22626,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,4,["H5002"]],[4,6,["H3068"]],[6,9,["H622"]],[9,12,["H6760"]],[12,16,["H6908"]],[16,21,["H5080"]],[21,24,["H834"]],[24,27,["H7489"]]]},{"k":22627,"v":[[0,4,["H7760","(H853)"]],[4,7,["H6760"]],[7,9,["H7611"]],[9,16,["H1972"]],[16,18,["H6099"]],[18,19,["H1471"]],[19,22,["H3068"]],[22,24,["H4427"]],[24,25,["H5921"]],[25,28,["H2022"]],[28,29,["H6726"]],[29,31,["H4480","H6258"]],[31,34,["H5704","H5769"]]]},{"k":22628,"v":[[0,2,["H859"]],[2,4,["H4026"]],[4,7,["H5739"]],[7,10,["H6076"]],[10,13,["H1323"]],[13,15,["H6726"]],[15,16,["H5704"]],[16,20,["H857"]],[20,23,["H7223"]],[23,24,["H4475"]],[24,26,["H4467"]],[26,28,["H935"]],[28,31,["H1323"]],[31,33,["H3389"]]]},{"k":22629,"v":[[0,1,["H6258"]],[1,2,["H4100"]],[2,6,["H7321"]],[6,7,["H7452"]],[7,10,["H369"]],[10,11,["H4428"]],[11,16,["H3289"]],[16,17,["H6"]],[17,18,["H3588"]],[18,19,["H2427"]],[19,21,["H2388"]],[21,27,["H3205"]]]},{"k":22630,"v":[[0,3,["H2342"]],[3,8,["H1518"]],[8,10,["H1323"]],[10,12,["H6726"]],[12,17,["H3205"]],[17,18,["H3588"]],[18,19,["H6258"]],[19,23,["H3318"]],[23,27,["H4480","H7151"]],[27,31,["H7931"]],[31,34,["H7704"]],[34,38,["H935"]],[38,40,["H5704"]],[40,41,["H894"]],[41,42,["H8033"]],[42,46,["H5337"]],[46,47,["H8033"]],[47,49,["H3068"]],[49,51,["H1350"]],[51,55,["H4480","H3709"]],[55,58,["H341"]]]},{"k":22631,"v":[[0,1,["H6258"]],[1,3,["H7227"]],[3,4,["H1471"]],[4,6,["H622"]],[6,7,["H5921"]],[7,10,["H559"]],[10,14,["H2610"]],[14,18,["H5869"]],[18,19,["H2372"]],[19,21,["H6726"]]]},{"k":22632,"v":[[0,2,["H1992"]],[2,3,["H3045"]],[3,4,["H3808"]],[4,6,["H4284"]],[6,9,["H3068"]],[9,10,["H3808"]],[10,11,["H995"]],[11,14,["H6098"]],[14,15,["H3588"]],[15,18,["H6908"]],[18,22,["H5995"]],[22,25,["H1637"]]]},{"k":22633,"v":[[0,1,["H6965"]],[1,3,["H1758"]],[3,5,["H1323"]],[5,7,["H6726"]],[7,8,["H3588"]],[8,11,["H7760"]],[11,13,["H7161"]],[13,14,["H1270"]],[14,18,["H7760"]],[18,20,["H6541"]],[20,21,["H5154"]],[21,27,["H1854"]],[27,28,["H7227"]],[28,29,["H5971"]],[29,33,["H2763"]],[33,35,["H1215"]],[35,38,["H3068"]],[38,41,["H2428"]],[41,44,["H113"]],[44,47,["H3605"]],[47,48,["H776"]]]},{"k":22634,"v":[[0,1,["H6258"]],[1,5,["H1413"]],[5,7,["H1323"]],[7,9,["H1416"]],[9,12,["H7760"]],[12,13,["H4692"]],[13,14,["H5921"]],[14,18,["H5221","(H853)"]],[18,20,["H8199"]],[20,22,["H3478"]],[22,25,["H7626"]],[25,26,["H5921"]],[26,28,["H3895"]]]},{"k":22635,"v":[[0,2,["H859"]],[2,3,["H1035"]],[3,4,["H672"]],[4,7,["H1961"]],[7,8,["H6810"]],[8,11,["H505"]],[11,13,["H3063"]],[13,16,["H4480"]],[16,21,["H3318"]],[21,27,["H1961"]],[27,28,["H4910"]],[28,30,["H3478"]],[30,33,["H4163"]],[33,38,["H4480","H6924"]],[38,40,["H4480","H3117","H5769"]]]},{"k":22636,"v":[[0,1,["H3651"]],[1,6,["H5414"]],[6,7,["H5704"]],[7,9,["H6256"]],[9,13,["H3205"]],[13,16,["H3205"]],[16,19,["H3499"]],[19,22,["H251"]],[22,24,["H7725"]],[24,25,["H5921"]],[25,27,["H1121"]],[27,29,["H3478"]]]},{"k":22637,"v":[[0,4,["H5975"]],[4,6,["H7462"]],[6,9,["H5797"]],[9,12,["H3068"]],[12,15,["H1347"]],[15,18,["H8034"]],[18,21,["H3068"]],[21,23,["H430"]],[23,27,["H3427"]],[27,28,["H3588"]],[28,29,["H6258"]],[29,33,["H1431"]],[33,34,["H5704"]],[34,36,["H657"]],[36,39,["H776"]]]},{"k":22638,"v":[[0,2,["H2088"]],[2,5,["H1961"]],[5,7,["H7965"]],[7,8,["H3588"]],[8,10,["H804"]],[10,12,["H935"]],[12,15,["H776"]],[15,17,["H3588"]],[17,20,["H1869"]],[20,23,["H759"]],[23,27,["H6965"]],[27,28,["H5921"]],[28,30,["H7651"]],[30,31,["H7462"]],[31,33,["H8083"]],[33,34,["H5257"]],[34,35,["H120"]]]},{"k":22639,"v":[[0,4,["H7489","(H853)"]],[4,6,["H776"]],[6,8,["H804"]],[8,11,["H2719"]],[11,14,["H776"]],[14,16,["H5248"]],[16,19,["H6607"]],[19,24,["H5337"]],[24,26,["H4480"]],[26,28,["H804"]],[28,29,["H3588"]],[29,31,["H935"]],[31,34,["H776"]],[34,36,["H3588"]],[36,38,["H1869"]],[38,41,["H1366"]]]},{"k":22640,"v":[[0,3,["H7611"]],[3,5,["H3290"]],[5,7,["H1961"]],[7,10,["H7130"]],[10,12,["H7227"]],[12,13,["H5971"]],[13,16,["H2919"]],[16,17,["H4480","H854"]],[17,19,["H3068"]],[19,22,["H7241"]],[22,23,["H5921"]],[23,25,["H6212"]],[25,26,["H834"]],[26,27,["H6960"]],[27,28,["H3808"]],[28,30,["H376"]],[30,31,["H3808"]],[31,32,["H3176"]],[32,35,["H1121"]],[35,37,["H120"]]]},{"k":22641,"v":[[0,3,["H7611"]],[3,5,["H3290"]],[5,7,["H1961"]],[7,10,["H1471"]],[10,13,["H7130"]],[13,15,["H7227"]],[15,16,["H5971"]],[16,19,["H738"]],[19,22,["H929"]],[22,25,["H3293"]],[25,29,["H3715"]],[29,32,["H5739"]],[32,34,["H6629"]],[34,35,["H834"]],[35,36,["H518"]],[36,39,["H5674"]],[39,42,["H7429"]],[42,46,["H2963"]],[46,48,["H369"]],[48,50,["H5337"]]]},{"k":22642,"v":[[0,2,["H3027"]],[2,6,["H7311"]],[6,7,["H5921"]],[7,9,["H6862"]],[9,11,["H3605"]],[11,13,["H341"]],[13,17,["H3772"]]]},{"k":22643,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,10,["H5002"]],[10,12,["H3068"]],[12,17,["H3772"]],[17,19,["H5483"]],[19,23,["H4480","H7130"]],[23,29,["H6"]],[29,31,["H4818"]]]},{"k":22644,"v":[[0,5,["H3772"]],[5,7,["H5892"]],[7,10,["H776"]],[10,13,["H2040"]],[13,14,["H3605"]],[14,17,["H4013"]]]},{"k":22645,"v":[[0,5,["H3772"]],[5,6,["H3785"]],[6,10,["H4480","H3027"]],[10,14,["H1961"]],[14,15,["H3808"]],[15,17,["H6049"]]]},{"k":22646,"v":[[0,3,["H6456"]],[3,8,["H3772"]],[8,12,["H4676"]],[12,16,["H4480","H7130"]],[16,22,["H3808"]],[22,23,["H5750"]],[23,24,["H7812"]],[24,26,["H4639"]],[26,29,["H3027"]]]},{"k":22647,"v":[[0,5,["H5428"]],[5,7,["H842"]],[7,11,["H4480","H7130"]],[11,17,["H8045"]],[17,19,["H5892"]]]},{"k":22648,"v":[[0,4,["H6213"]],[4,5,["H5359"]],[5,7,["H639"]],[7,9,["H2534"]],[9,10,["(H853)"]],[10,12,["H1471"]],[12,14,["H834"]],[14,17,["H3808"]],[17,18,["H8085"]]]},{"k":22649,"v":[[0,1,["H8085"]],[1,3,["H4994","(H853)"]],[3,4,["H834"]],[4,6,["H3068"]],[6,7,["H559"]],[7,8,["H6965"]],[8,9,["H7378"]],[9,11,["H854"]],[11,13,["H2022"]],[13,17,["H1389"]],[17,18,["H8085"]],[18,20,["H6963"]]]},{"k":22650,"v":[[0,1,["H8085"]],[1,4,["H2022","(H853)"]],[4,6,["H3068"]],[6,7,["H7379"]],[7,10,["H386"]],[10,11,["H4146"]],[11,14,["H776"]],[14,15,["H3588"]],[15,17,["H3068"]],[17,20,["H7379"]],[20,21,["H5973"]],[21,23,["H5971"]],[23,27,["H3198"]],[27,28,["H5973"]],[28,29,["H3478"]]]},{"k":22651,"v":[[0,3,["H5971"]],[3,4,["H4100"]],[4,7,["H6213"]],[7,11,["H4100"]],[11,14,["H3811"]],[14,16,["H6030"]],[16,18,[]]]},{"k":22652,"v":[[0,1,["H3588"]],[1,5,["H5927"]],[5,9,["H4480","H776"]],[9,11,["H4714"]],[11,13,["H6299"]],[13,18,["H4480","H1004"]],[18,20,["H5650"]],[20,23,["H7971"]],[23,24,["H6440"]],[24,25,["(H853)"]],[25,26,["H4872"]],[26,27,["H175"]],[27,29,["H4813"]]]},{"k":22653,"v":[[0,3,["H5971"]],[3,4,["H2142"]],[4,5,["H4994"]],[5,6,["H4100"]],[6,7,["H1111"]],[7,8,["H4428"]],[8,10,["H4124"]],[10,11,["H3289"]],[11,13,["H4100"]],[13,14,["H1109"]],[14,16,["H1121"]],[16,18,["H1160"]],[18,19,["H6030"]],[19,21,["H4480"]],[21,22,["H7851"]],[22,23,["H5704"]],[23,24,["H1537"]],[24,25,["H4616"]],[25,28,["H3045"]],[28,30,["H6666"]],[30,33,["H3068"]]]},{"k":22654,"v":[[0,1,["H4100"]],[1,5,["H6923"]],[5,7,["H3068"]],[7,10,["H3721"]],[10,13,["H4791"]],[13,14,["H430"]],[14,18,["H6923"]],[18,22,["H5930"]],[22,24,["H5695"]],[24,27,["H8141"]],[27,28,["H1121"]]]},{"k":22655,"v":[[0,3,["H3068"]],[3,5,["H7521"]],[5,7,["H505"]],[7,9,["H352"]],[9,13,["H7233"]],[13,15,["H5158"]],[15,17,["H8081"]],[17,20,["H5414"]],[20,22,["H1060"]],[22,25,["H6588"]],[25,27,["H6529"]],[27,30,["H990"]],[30,33,["H2403"]],[33,36,["H5315"]]]},{"k":22656,"v":[[0,3,["H5046"]],[3,6,["H120"]],[6,7,["H4100"]],[7,9,["H2896"]],[9,11,["H4100"]],[11,14,["H3068"]],[14,15,["H1875"]],[15,16,["H4480"]],[16,18,["H3588","H518"]],[18,20,["H6213"]],[20,21,["H4941"]],[21,24,["H157"]],[24,25,["H2617"]],[25,28,["H1980"]],[28,29,["H6800"]],[29,30,["H5973"]],[30,32,["H430"]]]},{"k":22657,"v":[[0,2,["H3068"]],[2,3,["H6963"]],[3,4,["H7121"]],[4,7,["H5892"]],[7,12,["H8454"]],[12,14,["H7200"]],[14,16,["H8034"]],[16,17,["H8085"]],[17,20,["H4294"]],[20,22,["H4310"]],[22,24,["H3259"]],[24,25,[]]]},{"k":22658,"v":[[0,2,["H786"]],[2,3,["H5750"]],[3,5,["H214"]],[5,7,["H7562"]],[7,10,["H1004"]],[10,13,["H7563"]],[13,16,["H7332"]],[16,17,["H374"]],[17,20,["H2194"]]]},{"k":22659,"v":[[0,5,["H2135"]],[5,8,["H7562"]],[8,9,["H3976"]],[9,13,["H3599"]],[13,15,["H4820"]],[15,16,["H68"]]]},{"k":22660,"v":[[0,1,["H834"]],[1,4,["H6223"]],[4,7,["H4390"]],[7,9,["H2555"]],[9,12,["H3427"]],[12,15,["H1696"]],[15,16,["H8267"]],[16,19,["H3956"]],[19,21,["H7423"]],[21,24,["H6310"]]]},{"k":22661,"v":[[0,2,["H1571"]],[2,4,["H589"]],[4,7,["H2470"]],[7,9,["H5221"]],[9,14,["H8074"]],[14,16,["H5921"]],[16,18,["H2403"]]]},{"k":22662,"v":[[0,1,["H859"]],[1,3,["H398"]],[3,5,["H3808"]],[5,7,["H7646"]],[7,11,["H3445"]],[11,16,["H7130"]],[16,23,["H5253"]],[23,26,["H3808"]],[26,27,["H6403"]],[27,30,["H834"]],[30,32,["H6403"]],[32,36,["H5414"]],[36,39,["H2719"]]]},{"k":22663,"v":[[0,1,["H859"]],[1,3,["H2232"]],[3,7,["H3808"]],[7,8,["H7114"]],[8,9,["H859"]],[9,11,["H1869"]],[11,13,["H2132"]],[13,17,["H3808"]],[17,18,["H5480"]],[18,21,["H8081"]],[21,24,["H8492"]],[24,27,["H3808"]],[27,28,["H8354"]],[28,29,["H3196"]]]},{"k":22664,"v":[[0,3,["H2708"]],[3,5,["H6018"]],[5,7,["H8104"]],[7,9,["H3605"]],[9,11,["H4639"]],[11,14,["H1004"]],[14,16,["H256"]],[16,19,["H1980"]],[19,22,["H4156"]],[22,23,["H4616"]],[23,26,["H5414"]],[26,29,["H8047"]],[29,32,["H3427"]],[32,35,["H8322"]],[35,39,["H5375"]],[39,41,["H2781"]],[41,44,["H5971"]]]},{"k":22665,"v":[[0,1,["H480"]],[1,4,["H3588"]],[4,6,["H1961"]],[6,11,["H625"]],[11,14,["H7019"]],[14,17,["H5955"]],[17,20,["H1210"]],[20,23,["H369"]],[23,24,["H811"]],[24,26,["H398"]],[26,28,["H5315"]],[28,29,["H183"]],[29,32,["H1063"]]]},{"k":22666,"v":[[0,2,["H2623"]],[2,5,["H6"]],[5,7,["H4480"]],[7,9,["H776"]],[9,13,["H369"]],[13,14,["H3477"]],[14,16,["H120"]],[16,18,["H3605"]],[18,21,["H693"]],[21,23,["H1818"]],[23,25,["H6679"]],[25,27,["H376","(H853)"]],[27,29,["H251"]],[29,32,["H2764"]]]},{"k":22667,"v":[[0,5,["H5921","H7451"]],[5,8,["H3709"]],[8,9,["H3190"]],[9,11,["H8269"]],[11,12,["H7592"]],[12,15,["H8199"]],[15,19,["H7966"]],[19,22,["H1419"]],[22,24,["H1931"]],[24,25,["H1696"]],[25,27,["H1942"]],[27,28,["H5315"]],[28,33,["H5686"]]]},{"k":22668,"v":[[0,2,["H2896"]],[2,8,["H2312"]],[8,11,["H3477"]],[11,17,["H4480","H4534"]],[17,19,["H3117"]],[19,22,["H6822"]],[22,25,["H6486"]],[25,26,["H935"]],[26,27,["H6258"]],[27,29,["H1961"]],[29,31,["H3998"]]]},{"k":22669,"v":[[0,1,["H539"]],[1,3,["H408"]],[3,6,["H7453"]],[6,10,["H982","H408"]],[10,13,["H441"]],[13,14,["H8104"]],[14,16,["H6607"]],[16,19,["H6310"]],[19,23,["H4480","H7901"]],[23,26,["H2436"]]]},{"k":22670,"v":[[0,1,["H3588"]],[1,3,["H1121"]],[3,4,["H5034"]],[4,6,["H1"]],[6,8,["H1323"]],[8,10,["H6965"]],[10,13,["H517"]],[13,17,["H3618"]],[17,22,["H2545"]],[22,24,["H376"]],[24,25,["H341"]],[25,28,["H376"]],[28,32,["H1004"]]]},{"k":22671,"v":[[0,2,["H589"]],[2,4,["H6822"]],[4,7,["H3068"]],[7,10,["H3176"]],[10,13,["H430"]],[13,16,["H3468"]],[16,18,["H430"]],[18,20,["H8085"]],[20,21,[]]]},{"k":22672,"v":[[0,1,["H8055"]],[1,2,["H408"]],[2,7,["H341"]],[7,8,["H3588"]],[8,10,["H5307"]],[10,13,["H6965"]],[13,14,["H3588"]],[14,16,["H3427"]],[16,18,["H2822"]],[18,20,["H3068"]],[20,24,["H216"]],[24,26,[]]]},{"k":22673,"v":[[0,3,["H5375"]],[3,5,["H2197"]],[5,8,["H3068"]],[8,9,["H3588"]],[9,12,["H2398"]],[12,15,["H5704"]],[15,17,["H7378"]],[17,19,["H7379"]],[19,21,["H6213"]],[21,22,["H4941"]],[22,29,["H3318"]],[29,32,["H216"]],[32,36,["H7200"]],[36,38,["H6666"]]]},{"k":22674,"v":[[0,6,["H341"]],[6,8,["H7200"]],[8,11,["H955"]],[11,13,["H3680"]],[13,16,["H559"]],[16,17,["H413"]],[17,19,["H346"]],[19,22,["H3068"]],[22,24,["H430"]],[24,26,["H5869"]],[26,28,["H7200"]],[28,30,["H6258"]],[30,33,["H1961"]],[33,35,["H4823"]],[35,38,["H2916"]],[38,41,["H2351"]]]},{"k":22675,"v":[[0,3,["H3117"]],[3,6,["H1447"]],[6,10,["H1129"]],[10,12,["H1931"]],[12,13,["H3117"]],[13,16,["H2706"]],[16,19,["H7368"]]]},{"k":22676,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,7,["H935"]],[7,9,["H5704"]],[9,11,["H4480"]],[11,12,["H804"]],[12,16,["H4693"]],[16,17,["H5892"]],[17,19,["H4480"]],[19,21,["H4693"]],[21,23,["H5704"]],[23,25,["H5104"]],[25,28,["H3220"]],[28,30,["H4480","H3220"]],[30,33,["H2022"]],[33,35,["H2022"]]]},{"k":22677,"v":[[0,3,["H776"]],[3,5,["H1961"]],[5,6,["H8077"]],[6,8,["H5921"]],[8,11,["H3427"]],[11,15,["H4480","H6529"]],[15,18,["H4611"]]]},{"k":22678,"v":[[0,1,["H7462"]],[1,3,["H5971"]],[3,6,["H7626"]],[6,8,["H6629"]],[8,11,["H5159"]],[11,13,["H7931"]],[13,14,["H910"]],[14,17,["H3293"]],[17,20,["H8432"]],[20,22,["H3760"]],[22,25,["H7462"]],[25,27,["H1316"]],[27,29,["H1568"]],[29,33,["H3117"]],[33,35,["H5769"]]]},{"k":22679,"v":[[0,4,["H3117"]],[4,8,["H3318"]],[8,11,["H4480","H776"]],[11,13,["H4714"]],[13,16,["H7200"]],[16,19,["H6381"]],[19,20,[]]]},{"k":22680,"v":[[0,2,["H1471"]],[2,4,["H7200"]],[4,7,["H954"]],[7,9,["H4480","H3605"]],[9,11,["H1369"]],[11,14,["H7760"]],[14,16,["H3027"]],[16,17,["H5921"]],[17,19,["H6310"]],[19,21,["H241"]],[21,24,["H2790"]]]},{"k":22681,"v":[[0,3,["H3897"]],[3,5,["H6083"]],[5,8,["H5175"]],[8,11,["H7264"]],[11,15,["H4480","H4526"]],[15,17,["H2119"]],[17,20,["H776"]],[20,24,["H6342"]],[24,25,["H413"]],[25,27,["H3068"]],[27,29,["H430"]],[29,32,["H3372"]],[32,34,["H4480"]],[34,35,[]]]},{"k":22682,"v":[[0,1,["H4310"]],[1,4,["H410"]],[4,7,["H3644"]],[7,9,["H5375"]],[9,10,["H5771"]],[10,13,["H5674","H5921"]],[13,15,["H6588"]],[15,18,["H7611"]],[18,21,["H5159"]],[21,23,["H2388"]],[23,24,["H3808"]],[24,26,["H639"]],[26,28,["H5703"]],[28,29,["H3588"]],[29,30,["H1931"]],[30,31,["H2654"]],[31,33,["H2617"]]]},{"k":22683,"v":[[0,4,["H7725"]],[4,8,["H7355"]],[8,13,["H3533"]],[13,15,["H5771"]],[15,19,["H7993"]],[19,20,["H3605"]],[20,22,["H2403"]],[22,25,["H4688"]],[25,28,["H3220"]]]},{"k":22684,"v":[[0,3,["H5414"]],[3,5,["H571"]],[5,7,["H3290"]],[7,10,["H2617"]],[10,12,["H85"]],[12,13,["H834"]],[13,16,["H7650"]],[16,19,["H1"]],[19,22,["H4480","H3117"]],[22,24,["H6924"]]]},{"k":22685,"v":[[0,2,["H4853"]],[2,4,["H5210"]],[4,6,["H5612"]],[6,9,["H2377"]],[9,11,["H5151"]],[11,13,["H512"]]]},{"k":22686,"v":[[0,1,["H410"]],[1,3,["H7072"]],[3,6,["H3068"]],[6,7,["H5358"]],[7,9,["H3068"]],[9,10,["H5358"]],[10,13,["H1167","H2534"]],[13,15,["H3068"]],[15,18,["H5358"]],[18,21,["H6862"]],[21,23,["H1931"]],[23,24,["H5201"]],[24,28,["H341"]]]},{"k":22687,"v":[[0,2,["H3068"]],[2,4,["H750"]],[4,6,["H639"]],[6,8,["H1419"]],[8,10,["H3581"]],[10,16,["H5352","H3808","H5352"]],[16,20,["H3068"]],[20,23,["H1870"]],[23,26,["H5492"]],[26,30,["H8183"]],[30,33,["H6051"]],[33,36,["H80"]],[36,39,["H7272"]]]},{"k":22688,"v":[[0,2,["H1605"]],[2,4,["H3220"]],[4,8,["H3001"]],[8,11,["H2717"]],[11,12,["H3605"]],[12,14,["H5104"]],[14,15,["H1316"]],[15,16,["H535"]],[16,18,["H3760"]],[18,21,["H6525"]],[21,23,["H3844"]],[23,24,["H535"]]]},{"k":22689,"v":[[0,2,["H2022"]],[2,3,["H7493"]],[3,4,["H4480"]],[4,8,["H1389"]],[8,9,["H4127"]],[9,12,["H776"]],[12,14,["H5375"]],[14,17,["H4480","H6440"]],[17,20,["H8398"]],[20,22,["H3605"]],[22,24,["H3427"]],[24,25,[]]]},{"k":22690,"v":[[0,1,["H4310"]],[1,3,["H5975"]],[3,4,["H6440"]],[4,6,["H2195"]],[6,8,["H4310"]],[8,10,["H6965"]],[10,13,["H2740"]],[13,16,["H639"]],[16,18,["H2534"]],[18,21,["H5413"]],[21,23,["H784"]],[23,26,["H6697"]],[26,29,["H5422"]],[29,30,["H4480"]],[30,31,[]]]},{"k":22691,"v":[[0,2,["H3068"]],[2,4,["H2896"]],[4,7,["H4581"]],[7,10,["H3117"]],[10,12,["H6869"]],[12,15,["H3045"]],[15,18,["H2620"]],[18,20,[]]]},{"k":22692,"v":[[0,4,["H5674"]],[4,5,["H7858"]],[5,8,["H6213"]],[8,11,["H3617"]],[11,14,["H4725"]],[14,17,["H2822"]],[17,19,["H7291"]],[19,21,["H341"]]]},{"k":22693,"v":[[0,1,["H4100"]],[1,4,["H2803"]],[4,5,["H413"]],[5,7,["H3068"]],[7,8,["H1931"]],[8,10,["H6213"]],[10,13,["H3617"]],[13,14,["H6869"]],[14,16,["H3808"]],[16,18,["H6965"]],[18,21,["H6471"]]]},{"k":22694,"v":[[0,1,["H3588"]],[1,2,["H5704"]],[2,6,["H5440"]],[6,8,["H5518"]],[8,13,["H5435"]],[13,15,["H5433"]],[15,19,["H398"]],[19,21,["H7179"]],[21,22,["H4390"]],[22,23,["H3002"]]]},{"k":22695,"v":[[0,5,["H3318"]],[5,6,["H4480"]],[6,9,["H2803"]],[9,10,["H7451"]],[10,11,["H5921"]],[11,13,["H3068"]],[13,15,["H1100"]],[15,16,["H3289"]]]},{"k":22696,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H518"]],[5,8,["H8003"]],[8,10,["H3651"]],[10,11,["H7227"]],[11,13,["H3651"]],[13,18,["H1494"]],[18,23,["H5674"]],[23,27,["H6031"]],[27,31,["H6031"]],[31,33,["H3808"]],[33,34,["H5750"]]]},{"k":22697,"v":[[0,2,["H6258"]],[2,5,["H7665"]],[5,7,["H4132"]],[7,9,["H4480","H5921"]],[9,17,["H5423","H4147"]]]},{"k":22698,"v":[[0,3,["H3068"]],[3,7,["H6680"]],[7,8,["H5921"]],[8,11,["H3808"]],[11,12,["H5750"]],[12,15,["H4480","H8034"]],[15,17,["H2232"]],[17,21,["H4480","H1004"]],[21,24,["H430"]],[24,28,["H3772"]],[28,31,["H6459"]],[31,35,["H4541"]],[35,38,["H7760"]],[38,40,["H6913"]],[40,41,["H3588"]],[41,44,["H7043"]]]},{"k":22699,"v":[[0,1,["H2009"]],[1,2,["H5921"]],[2,4,["H2022"]],[4,6,["H7272"]],[6,12,["H1319"]],[12,14,["H8085"]],[14,15,["H7965"]],[15,17,["H3063"]],[17,18,["H2287"]],[18,21,["H2282"]],[21,22,["H7999"]],[22,24,["H5088"]],[24,25,["H3588"]],[25,27,["H1100"]],[27,29,["H3808"]],[29,30,["H3254","H5750"]],[30,32,["H5674"]],[32,36,["H3605"]],[36,38,["H3772"]]]},{"k":22700,"v":[[0,5,["H6327"]],[5,8,["H5927"]],[8,9,["H5921"]],[9,11,["H6440"]],[11,12,["H5341"]],[12,14,["H4694"]],[14,15,["H6822"]],[15,17,["H1870"]],[17,21,["H2388","H4975"]],[21,22,["H553"]],[22,24,["H3581"]],[24,25,["H3966"]]]},{"k":22701,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,6,["H7725","(H853)"]],[6,8,["H1347"]],[8,10,["H3290"]],[10,13,["H1347"]],[13,15,["H3478"]],[15,16,["H3588"]],[16,18,["H1238"]],[18,20,["H1238"]],[20,24,["H7843"]],[24,27,["H2156"]]]},{"k":22702,"v":[[0,2,["H4043"]],[2,6,["H1368"]],[6,9,["H119"]],[9,11,["H2428"]],[11,12,["H376"]],[12,15,["H8529"]],[15,17,["H7393"]],[17,21,["H784"]],[21,22,["H6393"]],[22,25,["H3117"]],[25,28,["H3559"]],[28,32,["H1265"]],[32,36,["H7477"]]]},{"k":22703,"v":[[0,2,["H7393"]],[2,4,["H1984"]],[4,7,["H2351"]],[7,13,["H8264"]],[13,17,["H7339"]],[17,20,["H4758"]],[20,22,["H3940"]],[22,25,["H7323"]],[25,28,["H1300"]]]},{"k":22704,"v":[[0,3,["H2142"]],[3,5,["H117"]],[5,8,["H3782"]],[8,11,["H1979"]],[11,15,["H4116"]],[15,18,["H2346"]],[18,22,["H5526"]],[22,25,["H3559"]]]},{"k":22705,"v":[[0,2,["H8179"]],[2,5,["H5104"]],[5,8,["H6605"]],[8,11,["H1964"]],[11,14,["H4127"]]]},{"k":22706,"v":[[0,2,["H5324"]],[2,7,["H1540"]],[7,12,["H5927"]],[12,15,["H519"]],[15,17,["H5090"]],[17,22,["H6963"]],[22,24,["H3123"]],[24,25,["H8608"]],[25,26,["H5921"]],[26,28,["H3824"]]]},{"k":22707,"v":[[0,2,["H5210"]],[2,5,["H4480","H3117"]],[5,8,["H1295"]],[8,10,["H4325"]],[10,12,["H1992"]],[12,15,["H5127"]],[15,16,["H5975"]],[16,17,["H5975"]],[17,22,["H369"]],[22,25,["H6437"]]]},{"k":22708,"v":[[0,4,["H962"]],[4,6,["H3701"]],[6,9,["H962"]],[9,11,["H2091"]],[11,15,["H369"]],[15,16,["H7097"]],[16,19,["H8498"]],[19,21,["H3519"]],[21,24,["H4480","H3605"]],[24,26,["H2532"]],[26,27,["H3627"]]]},{"k":22709,"v":[[0,3,["H950"]],[3,5,["H4003"]],[5,7,["H1110"]],[7,10,["H3820"]],[10,11,["H4549"]],[11,14,["H1290"]],[14,16,["H6375"]],[16,19,["H2479"]],[19,22,["H3605"]],[22,23,["H4975"]],[23,26,["H6440"]],[26,29,["H3605"]],[29,30,["H6908"]],[30,31,["H6289"]]]},{"k":22710,"v":[[0,1,["H346"]],[1,4,["H4583"]],[4,7,["H738"]],[7,10,["H4829"]],[10,14,["H3715"]],[14,15,["H834","H8033"]],[15,17,["H738"]],[17,21,["H3833"]],[21,22,["H1980"]],[22,25,["H738"]],[25,26,["H1482"]],[26,28,["H369"]],[28,31,["H2729"]]]},{"k":22711,"v":[[0,2,["H738"]],[2,6,["H2963"]],[6,7,["H1767"]],[7,10,["H1484"]],[10,12,["H2614"]],[12,15,["H3833"]],[15,17,["H4390"]],[17,19,["H2356"]],[19,21,["H2964"]],[21,24,["H4585"]],[24,26,["H2966"]]]},{"k":22712,"v":[[0,1,["H2009"]],[1,4,["H413"]],[4,6,["H5002"]],[6,8,["H3068"]],[8,10,["H6635"]],[10,14,["H1197"]],[14,16,["H7393"]],[16,19,["H6227"]],[19,22,["H2719"]],[22,24,["H398"]],[24,27,["H3715"]],[27,32,["H3772"]],[32,34,["H2964"]],[34,37,["H4480","H776"]],[37,40,["H6963"]],[40,43,["H4397"]],[43,45,["H3808"]],[45,46,["H5750"]],[46,48,["H8085"]]]},{"k":22713,"v":[[0,1,["H1945"]],[1,4,["H1818"]],[4,5,["H5892"]],[5,8,["H3605"]],[8,9,["H4392"]],[9,11,["H3585"]],[11,13,["H6563"]],[13,15,["H2964"]],[15,16,["H4185"]],[16,17,["H3808"]]]},{"k":22714,"v":[[0,2,["H6963"]],[2,5,["H7752"]],[5,8,["H6963"]],[8,11,["H7494"]],[11,14,["H212"]],[14,18,["H1725"]],[18,19,["H5483"]],[19,23,["H7540"]],[23,24,["H4818"]]]},{"k":22715,"v":[[0,2,["H6571"]],[2,4,["H5927"]],[4,7,["H3851"]],[7,8,["H2719"]],[8,11,["H1300"]],[11,12,["H2595"]],[12,17,["H7230"]],[17,19,["H2491"]],[19,23,["H3514"]],[23,25,["H6297"]],[25,29,["H369"]],[29,30,["H7097"]],[30,33,["H1472"]],[33,35,["H3782"]],[35,38,["H1472"]]]},{"k":22716,"v":[[0,4,["H4480","H7230"]],[4,7,["H2183"]],[7,10,["H2896","H2580"]],[10,11,["H2181"]],[11,13,["H1172"]],[13,15,["H3785"]],[15,17,["H4376"]],[17,18,["H1471"]],[18,21,["H2183"]],[21,23,["H4940"]],[23,26,["H3785"]]]},{"k":22717,"v":[[0,1,["H2009"]],[1,4,["H413"]],[4,6,["H5002"]],[6,8,["H3068"]],[8,10,["H6635"]],[10,14,["H1540"]],[14,16,["H7757"]],[16,17,["H5921"]],[17,19,["H6440"]],[19,23,["H7200"]],[23,25,["H1471"]],[25,27,["H4626"]],[27,30,["H4467"]],[30,32,["H7036"]]]},{"k":22718,"v":[[0,4,["H7993"]],[4,6,["H8251"]],[6,7,["H5921"]],[7,12,["H5034"]],[12,15,["H7760"]],[15,19,["H7210"]]]},{"k":22719,"v":[[0,6,["H1961"]],[6,8,["H3605"]],[8,12,["H7200"]],[12,15,["H5074"]],[15,16,["H4480"]],[16,19,["H559"]],[19,20,["H5210"]],[20,23,["H7703"]],[23,24,["H4310"]],[24,26,["H5110"]],[26,28,["H4480","H370"]],[28,31,["H1245"]],[31,32,["H5162"]],[32,34,[]]]},{"k":22720,"v":[[0,3,["H3190"]],[3,5,["H528"]],[5,6,["H4480","H4996"]],[6,9,["H3427"]],[9,12,["H2975"]],[12,16,["H4325"]],[16,18,["H5439"]],[18,20,["H834"]],[20,21,["H2426"]],[21,24,["H3220"]],[24,27,["H2346"]],[27,31,["H4480","H3220"]]]},{"k":22721,"v":[[0,1,["H3568"]],[1,3,["H4714"]],[3,6,["H6109"]],[6,10,["H369","H7097"]],[10,11,["H6316"]],[11,13,["H3864"]],[13,14,["H1961"]],[14,16,["H5833"]]]},{"k":22722,"v":[[0,1,["H1571"]],[1,3,["H1931"]],[3,5,["H1473"]],[5,7,["H1980"]],[7,9,["H7628"]],[9,12,["H5768"]],[12,13,["H1571"]],[13,17,["H7376"]],[17,20,["H7218"]],[20,22,["H3605"]],[22,24,["H2351"]],[24,27,["H3032"]],[27,28,["H1486"]],[28,29,["H5921"]],[29,32,["H3513"]],[32,34,["H3605"]],[34,37,["H1419"]],[37,39,["H7576"]],[39,41,["H2131"]]]},{"k":22723,"v":[[0,1,["H859"]],[1,2,["H1571"]],[2,5,["H7937"]],[5,8,["H1961"]],[8,9,["H5956"]],[9,10,["H859"]],[10,11,["H1571"]],[11,13,["H1245"]],[13,14,["H4581"]],[14,18,["H4480","H341"]]]},{"k":22724,"v":[[0,1,["H3605"]],[1,4,["H4013"]],[4,9,["H8384"]],[9,10,["H5973"]],[10,13,["H1061"]],[13,14,["H518"]],[14,17,["H5128"]],[17,21,["H5307"]],[21,22,["H5921"]],[22,24,["H6310"]],[24,27,["H398"]]]},{"k":22725,"v":[[0,1,["H2009"]],[1,3,["H5971"]],[3,6,["H7130"]],[6,10,["H802"]],[10,12,["H8179"]],[12,15,["H776"]],[15,20,["H6605","H6605"]],[20,23,["H341"]],[23,25,["H784"]],[25,27,["H398"]],[27,29,["H1280"]]]},{"k":22726,"v":[[0,1,["H7579"]],[1,3,["H4325"]],[3,6,["H4692"]],[6,7,["H2388"]],[7,10,["H4013"]],[10,11,["H935"]],[11,13,["H2916"]],[13,15,["H7429"]],[15,17,["H2563"]],[17,19,["H2388"]],[19,21,["H4404"]]]},{"k":22727,"v":[[0,1,["H8033"]],[1,4,["H784"]],[4,5,["H398"]],[5,8,["H2719"]],[8,12,["H3772"]],[12,17,["H398"]],[17,20,["H3218"]],[20,23,["H3513"]],[23,26,["H3218"]],[26,29,["H3513"]],[29,32,["H697"]]]},{"k":22728,"v":[[0,3,["H7235"]],[3,5,["H7402"]],[5,8,["H4480","H3556"]],[8,10,["H8064"]],[10,12,["H3218"]],[12,13,["H6584"]],[13,16,["H5774"]]]},{"k":22729,"v":[[0,2,["H4502"]],[2,6,["H697"]],[6,9,["H2951"]],[9,13,["H1462","H1462"]],[13,15,["H2583"]],[15,18,["H1448"]],[18,21,["H7135"]],[21,22,["H3117"]],[22,26,["H8121"]],[26,27,["H2224"]],[27,30,["H5074"]],[30,33,["H4725"]],[33,36,["H3045","H3808"]],[36,37,["H335"]],[37,39,[]]]},{"k":22730,"v":[[0,2,["H7462"]],[2,3,["H5123"]],[3,5,["H4428"]],[5,7,["H804"]],[7,9,["H117"]],[9,11,["H7931"]],[11,16,["H5971"]],[16,18,["H6335"]],[18,19,["H5921"]],[19,21,["H2022"]],[21,24,["H369"]],[24,25,["H6908"]],[25,26,[]]]},{"k":22731,"v":[[0,3,["H369"]],[3,4,["H3545"]],[4,7,["H7667"]],[7,9,["H4347"]],[9,11,["H2470"]],[11,12,["H3605"]],[12,14,["H8085"]],[14,16,["H8088"]],[16,20,["H8628"]],[20,22,["H3709"]],[22,23,["H5921"]],[23,25,["H3588"]],[25,26,["H5921"]],[26,27,["H4310"]],[27,29,["H3808"]],[29,31,["H7451"]],[31,32,["H5674"]],[32,33,["H8548"]]]},{"k":22732,"v":[[0,2,["H4853"]],[2,3,["H834"]],[3,4,["H2265"]],[4,6,["H5030"]],[6,8,["H2372"]]]},{"k":22733,"v":[[0,2,["H3068"]],[2,4,["H5704","H575"]],[4,7,["H7768"]],[7,11,["H3808"]],[11,12,["H8085"]],[12,15,["H2199"]],[15,16,["H413"]],[16,19,["H2555"]],[19,23,["H3808"]],[23,24,["H3467"]]]},{"k":22734,"v":[[0,1,["H4100"]],[1,4,["H7200"]],[4,6,["H205"]],[6,11,["H5027"]],[11,12,["H5999"]],[12,14,["H7701"]],[14,16,["H2555"]],[16,18,["H5048"]],[18,22,["H1961"]],[22,25,["H5375"]],[25,26,["H7379"]],[26,28,["H4066"]]]},{"k":22735,"v":[[0,1,["H5921","H3651"]],[1,3,["H8451"]],[3,5,["H6313"]],[5,7,["H4941"]],[7,9,["H3808","H5331"]],[9,11,["H3318"]],[11,12,["H3588"]],[12,14,["H7563"]],[14,17,["H3803","(H853)"]],[17,19,["H6662"]],[19,20,["H5921","H3651"]],[20,21,["H6127"]],[21,22,["H4941"]],[22,23,["H3318"]]]},{"k":22736,"v":[[0,1,["H7200"]],[1,5,["H1471"]],[5,7,["H5027"]],[7,10,["H8539","H8539"]],[10,11,["H3588"]],[11,14,["H6466"]],[14,16,["H6467"]],[16,19,["H3117"]],[19,23,["H3808"]],[23,24,["H539"]],[24,25,["H3588"]],[25,28,["H5608"]],[28,29,[]]]},{"k":22737,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,5,["H6965","(H853)"]],[5,7,["H3778"]],[7,9,["H4751"]],[9,11,["H4116"]],[11,12,["H1471"]],[12,15,["H1980"]],[15,18,["H4800"]],[18,21,["H776"]],[21,23,["H3423"]],[23,25,["H4908"]],[25,28,["H3808"]],[28,29,[]]]},{"k":22738,"v":[[0,1,["H1931"]],[1,3,["H366"]],[3,5,["H3372"]],[5,7,["H4941"]],[7,10,["H7613"]],[10,12,["H3318"]],[12,13,["H4480"]],[13,14,[]]]},{"k":22739,"v":[[0,2,["H5483"]],[2,5,["H7043"]],[5,8,["H4480","H5246"]],[8,12,["H2300"]],[12,15,["H6153"]],[15,16,["H4480","H2061"]],[16,19,["H6571"]],[19,21,["H6335"]],[21,25,["H6571"]],[25,27,["H935"]],[27,29,["H4480","H7350"]],[29,32,["H5774"]],[32,35,["H5404"]],[35,37,["H2363"]],[37,39,["H398"]]]},{"k":22740,"v":[[0,3,["H935"]],[3,4,["H3605"]],[4,6,["H2555"]],[6,8,["H6440"]],[8,11,["H4041"]],[11,15,["H6921"]],[15,19,["H622"]],[19,21,["H7628"]],[21,24,["H2344"]]]},{"k":22741,"v":[[0,2,["H1931"]],[2,4,["H7046"]],[4,7,["H4428"]],[7,10,["H7336"]],[10,14,["H4890"]],[14,17,["H1931"]],[17,19,["H7832"]],[19,20,["H3605"]],[20,22,["H4013"]],[22,26,["H6651"]],[26,27,["H6083"]],[27,29,["H3920"]],[29,30,[]]]},{"k":22742,"v":[[0,1,["H227"]],[1,4,["H7307"]],[4,5,["H2498"]],[5,10,["H5674"]],[10,12,["H816"]],[12,14,["H2098"]],[14,16,["H3581"]],[16,19,["H433"]]]},{"k":22743,"v":[[0,2,["H859"]],[2,3,["H3808"]],[3,5,["H4480","H6924"]],[5,7,["H3068"]],[7,9,["H430"]],[9,12,["H6918"]],[12,15,["H3808"]],[15,16,["H4191"]],[16,18,["H3068"]],[18,21,["H7760"]],[21,24,["H4941"]],[24,28,["H6697"]],[28,31,["H3245"]],[31,34,["H3198"]]]},{"k":22744,"v":[[0,4,["H2889"]],[4,5,["H5869"]],[5,8,["H4480","H7200"]],[8,9,["H7451"]],[9,11,["H3201"]],[11,12,["H3808"]],[12,13,["H5027"]],[13,14,["H413"]],[14,15,["H5999"]],[15,16,["H4100"]],[16,17,["H5027"]],[17,23,["H898"]],[23,27,["H2790"]],[27,30,["H7563"]],[30,31,["H1104"]],[31,37,["H6662"]],[37,38,["H4480"]],[38,39,[]]]},{"k":22745,"v":[[0,2,["H6213"]],[2,3,["H120"]],[3,6,["H1709"]],[6,9,["H3220"]],[9,13,["H7431"]],[13,16,["H3808"]],[16,17,["H4910"]],[17,19,[]]]},{"k":22746,"v":[[0,3,["H5927"]],[3,4,["H3605"]],[4,9,["H2443"]],[9,11,["H1641"]],[11,15,["H2764"]],[15,17,["H622"]],[17,21,["H4365"]],[21,22,["H5921","H3651"]],[22,24,["H8055"]],[24,27,["H1523"]]]},{"k":22747,"v":[[0,1,["H5921","H3651"]],[1,3,["H2076"]],[3,6,["H2764"]],[6,9,["H6999"]],[9,12,["H4365"]],[12,13,["H3588"]],[13,15,["H1992"]],[15,17,["H2506"]],[17,19,["H8082"]],[19,22,["H3978"]],[22,23,["H1277"]]]},{"k":22748,"v":[[0,3,["H5921","H3651"]],[3,4,["H7324"]],[4,6,["H2764"]],[6,8,["H3808"]],[8,9,["H2550"]],[9,10,["H8548"]],[10,12,["H2026"]],[12,14,["H1471"]]]},{"k":22749,"v":[[0,3,["H5975"]],[3,4,["H5921"]],[4,6,["H4931"]],[6,8,["H3320"]],[8,10,["H5921"]],[10,12,["H4692"]],[12,15,["H6822"]],[15,17,["H7200"]],[17,18,["H4100"]],[18,21,["H1696"]],[21,25,["H4100"]],[25,28,["H7725"]],[28,29,["H5921"]],[29,32,["H8433"]]]},{"k":22750,"v":[[0,3,["H3068"]],[3,4,["H6030"]],[4,7,["H559"]],[7,8,["H3789"]],[8,10,["H2377"]],[10,14,["H874"]],[14,15,["H5921"]],[15,16,["H3871"]],[16,17,["H4616"]],[17,20,["H7323"]],[20,22,["H7121"]],[22,23,[]]]},{"k":22751,"v":[[0,1,["H3588"]],[1,3,["H2377"]],[3,5,["H5750"]],[5,9,["H4150"]],[9,13,["H7093"]],[13,16,["H6315"]],[16,18,["H3808"]],[18,19,["H3576"]],[19,20,["H518"]],[20,22,["H4102"]],[22,23,["H2442"]],[23,26,["H3588"]],[26,30,["H935","H935"]],[30,33,["H3808"]],[33,34,["H309"]]]},{"k":22752,"v":[[0,1,["H2009"]],[1,3,["H5315"]],[3,7,["H6075"]],[7,10,["H3474","H3808"]],[10,15,["H6662"]],[15,17,["H2421"]],[17,20,["H530"]]]},{"k":22753,"v":[[0,1,["H637"]],[1,3,["H3588"]],[3,5,["H898"]],[5,7,["H3196"]],[7,11,["H3093"]],[11,12,["H1397"]],[12,13,["H3808"]],[13,16,["H5115"]],[16,17,["H834"]],[17,18,["H7337"]],[18,20,["H5315"]],[20,22,["H7585"]],[22,26,["H4194"]],[26,28,["H3808"]],[28,30,["H7646"]],[30,32,["H622"]],[32,33,["H413"]],[33,35,["H3605"]],[35,36,["H1471"]],[36,38,["H6908"]],[38,39,["H413"]],[39,41,["H3605"]],[41,42,["H5971"]]]},{"k":22754,"v":[[0,2,["H3808"]],[2,3,["H3605"]],[3,4,["H428"]],[4,6,["H5375"]],[6,8,["H4912"]],[8,9,["H5921"]],[9,13,["H4426"]],[13,14,["H2420"]],[14,18,["H559"]],[18,19,["H1945"]],[19,23,["H7235"]],[23,27,["H3808"]],[27,30,["H5704","H4970"]],[30,35,["H3513","H5921"]],[35,39,["H5671"]]]},{"k":22755,"v":[[0,3,["H3808"]],[3,5,["H6965"]],[5,6,["H6621"]],[6,9,["H5391"]],[9,12,["H3364"]],[12,15,["H2111"]],[15,20,["H1961"]],[20,22,["H4933"]],[22,24,[]]]},{"k":22756,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H7997"]],[4,5,["H7227"]],[5,6,["H1471"]],[6,7,["H3605"]],[7,9,["H3499"]],[9,12,["H5971"]],[12,14,["H7997"]],[14,18,["H120"]],[18,19,["H4480","H1818"]],[19,23,["H2555"]],[23,26,["H776"]],[26,29,["H7151"]],[29,32,["H3605"]],[32,34,["H3427"]],[34,35,[]]]},{"k":22757,"v":[[0,1,["H1945"]],[1,5,["H1214"]],[5,7,["H7451"]],[7,8,["H1215"]],[8,11,["H1004"]],[11,15,["H7760"]],[15,17,["H7064"]],[17,19,["H4791"]],[19,24,["H5337"]],[24,27,["H4480","H3709"]],[27,29,["H7451"]]]},{"k":22758,"v":[[0,3,["H3289"]],[3,4,["H1322"]],[4,7,["H1004"]],[7,10,["H7096"]],[10,11,["H7227"]],[11,12,["H5971"]],[12,15,["H2398"]],[15,18,["H5315"]]]},{"k":22759,"v":[[0,1,["H3588"]],[1,3,["H68"]],[3,6,["H2199"]],[6,9,["H4480","H7023"]],[9,12,["H3714"]],[12,16,["H4480","H6086"]],[16,18,["H6030"]],[18,19,[]]]},{"k":22760,"v":[[0,1,["H1945"]],[1,5,["H1129"]],[5,7,["H5892"]],[7,9,["H1818"]],[9,11,["H3559"]],[11,13,["H7151"]],[13,15,["H5766"]]]},{"k":22761,"v":[[0,1,["H2009"]],[1,4,["H3808"]],[4,5,["H4480","H854"]],[5,7,["H3068"]],[7,9,["H6635"]],[9,12,["H5971"]],[12,14,["H3021"]],[14,17,["H1767"]],[17,18,["H784"]],[18,21,["H3816"]],[21,23,["H3286"]],[23,26,["H1767"]],[26,27,["H7385"]]]},{"k":22762,"v":[[0,1,["H3588"]],[1,3,["H776"]],[3,6,["H4390","(H853)"]],[6,9,["H1847"]],[9,12,["H3519"]],[12,15,["H3068"]],[15,18,["H4325"]],[18,19,["H3680","H5921"]],[19,21,["H3220"]]]},{"k":22763,"v":[[0,1,["H1945"]],[1,8,["H8248","H7453"]],[8,10,["H5596"]],[10,12,["H2573"]],[12,18,["H7937"]],[18,19,["H637"]],[19,20,["H4616"]],[20,23,["H5027"]],[23,24,["H5921"]],[24,26,["H4589"]]]},{"k":22764,"v":[[0,3,["H7646"]],[3,5,["H7036"]],[5,7,["H4480","H3519"]],[7,8,["H8354"]],[8,9,["H859"]],[9,10,["H1571"]],[10,16,["H6188"]],[16,18,["H3563"]],[18,21,["H3068"]],[21,23,["H3225"]],[23,26,["H5437"]],[26,27,["H5921"]],[27,31,["H7022"]],[31,34,["H5921"]],[34,36,["H3519"]]]},{"k":22765,"v":[[0,1,["H3588"]],[1,3,["H2555"]],[3,5,["H3844"]],[5,7,["H3680"]],[7,11,["H7701"]],[11,13,["H929"]],[13,17,["H2865"]],[17,20,["H120"]],[20,21,["H4480","H1818"]],[21,25,["H2555"]],[25,28,["H776"]],[28,31,["H7151"]],[31,34,["H3605"]],[34,36,["H3427"]],[36,37,[]]]},{"k":22766,"v":[[0,1,["H4100"]],[1,2,["H3276"]],[2,5,["H6459"]],[5,6,["H3588"]],[6,8,["H3335"]],[8,11,["H6458"]],[11,15,["H4541"]],[15,18,["H3384"]],[18,20,["H8267"]],[20,21,["H3588"]],[21,23,["H3335"]],[23,26,["H3336"]],[26,27,["H982"]],[27,28,["H5921"]],[28,30,["H6213"]],[30,31,["H483"]],[31,32,["H457"]]]},{"k":22767,"v":[[0,1,["H1945"]],[1,5,["H559"]],[5,8,["H6086"]],[8,9,["H6974"]],[9,12,["H1748"]],[12,13,["H68"]],[13,14,["H5782"]],[14,15,["H1931"]],[15,17,["H3384"]],[17,18,["H2009"]],[18,19,["H1931"]],[19,22,["H8610"]],[22,24,["H2091"]],[24,26,["H3701"]],[26,30,["H369"]],[30,31,["H7307"]],[31,33,["H3605"]],[33,36,["H7130"]],[36,38,[]]]},{"k":22768,"v":[[0,3,["H3068"]],[3,7,["H6944"]],[7,8,["H1964"]],[8,10,["H3605"]],[10,12,["H776"]],[12,14,["H2013"]],[14,15,["H4480","H6440"]],[15,16,[]]]},{"k":22769,"v":[[0,2,["H8605"]],[2,4,["H2265"]],[4,6,["H5030"]],[6,7,["H5921"]],[7,8,["H7692"]]]},{"k":22770,"v":[[0,2,["H3068"]],[2,5,["H8085"]],[5,7,["H8088"]],[7,10,["H3372"]],[10,12,["H3068"]],[12,13,["H2421"]],[13,15,["H6467"]],[15,18,["H7130"]],[18,21,["H8141"]],[21,24,["H7130"]],[24,27,["H8141"]],[27,29,["H3045"]],[29,31,["H7267"]],[31,32,["H2142"]],[32,33,["H7355"]]]},{"k":22771,"v":[[0,1,["H433"]],[1,2,["H935"]],[2,4,["H4480","H8487"]],[4,8,["H6918"]],[8,10,["H4480","H2022"]],[10,11,["H6290"]],[11,12,["H5542"]],[12,14,["H1935"]],[14,15,["H3680"]],[15,17,["H8064"]],[17,20,["H776"]],[20,22,["H4390"]],[22,25,["H8416"]]]},{"k":22772,"v":[[0,3,["H5051"]],[3,4,["H1961"]],[4,7,["H216"]],[7,10,["H7161"]],[10,15,["H4480","H3027"]],[15,17,["H8033"]],[17,20,["H2253"]],[20,23,["H5797"]]]},{"k":22773,"v":[[0,1,["H6440"]],[1,3,["H1980"]],[3,5,["H1698"]],[5,8,["H7565"]],[8,10,["H3318"]],[10,13,["H7272"]]]},{"k":22774,"v":[[0,2,["H5975"]],[2,4,["H4128"]],[4,6,["H776"]],[6,8,["H7200"]],[8,11,["H5425"]],[11,13,["H1471"]],[13,16,["H5703"]],[16,17,["H2042"]],[17,19,["H6327"]],[19,21,["H5769"]],[21,22,["H1389"]],[22,24,["H7817"]],[24,26,["H1979"]],[26,28,["H5769"]]]},{"k":22775,"v":[[0,2,["H7200"]],[2,4,["H168"]],[4,6,["H3572"]],[6,7,["H8478"]],[7,8,["H205"]],[8,11,["H3407"]],[11,14,["H776"]],[14,16,["H4080"]],[16,18,["H7264"]]]},{"k":22776,"v":[[0,3,["H3068"]],[3,4,["H2734"]],[4,7,["H5104"]],[7,10,["H639"]],[10,13,["H5104"]],[13,16,["H5678"]],[16,19,["H3220"]],[19,20,["H3588"]],[20,23,["H7392"]],[23,24,["H5921"]],[24,26,["H5483"]],[26,29,["H4818"]],[29,31,["H3444"]]]},{"k":22777,"v":[[0,2,["H7198"]],[2,6,["H5783","H6181"]],[6,10,["H7621"]],[10,13,["H4294"]],[13,16,["H562"]],[16,17,["H5542"]],[17,20,["H1234"]],[20,22,["H776"]],[22,24,["H5104"]]]},{"k":22778,"v":[[0,2,["H2022"]],[2,3,["H7200"]],[3,7,["H2342"]],[7,9,["H2230"]],[9,12,["H4325"]],[12,14,["H5674"]],[14,16,["H8415"]],[16,17,["H5414"]],[17,19,["H6963"]],[19,22,["H5375"]],[22,24,["H3027"]],[24,26,["H7315"]]]},{"k":22779,"v":[[0,2,["H8121"]],[2,4,["H3394"]],[4,6,["H5975"]],[6,9,["H2073"]],[9,12,["H216"]],[12,15,["H2671"]],[15,17,["H1980"]],[17,21,["H5051"]],[21,24,["H1300"]],[24,25,["H2595"]]]},{"k":22780,"v":[[0,4,["H6805"]],[4,6,["H776"]],[6,8,["H2195"]],[8,11,["H1758"]],[11,13,["H1471"]],[13,15,["H639"]]]},{"k":22781,"v":[[0,3,["H3318"]],[3,6,["H3468"]],[6,9,["H5971"]],[9,12,["H3468"]],[12,13,["H854"]],[13,15,["H4899"]],[15,17,["H4272"]],[17,19,["H7218"]],[19,23,["H4480","H1004"]],[23,26,["H7563"]],[26,28,["H6168"]],[28,30,["H3247"]],[30,31,["H5704"]],[31,33,["H6677"]],[33,34,["H5542"]]]},{"k":22782,"v":[[0,4,["H5344"]],[4,7,["H4294"]],[7,9,["H7218"]],[9,12,["H6518"]],[12,18,["H5590"]],[18,20,["H6327"]],[20,23,["H5951"]],[23,25,["H3644"]],[25,27,["H398"]],[27,29,["H6041"]],[29,30,["H4565"]]]},{"k":22783,"v":[[0,3,["H1869"]],[3,6,["H3220"]],[6,9,["H5483"]],[9,12,["H2563"]],[12,14,["H7227"]],[14,15,["H4325"]]]},{"k":22784,"v":[[0,3,["H8085"]],[3,5,["H990"]],[5,6,["H7264"]],[6,8,["H8193"]],[8,9,["H6750"]],[9,12,["H6963"]],[12,13,["H7538"]],[13,14,["H935"]],[14,17,["H6106"]],[17,20,["H7264"]],[20,21,["H8478"]],[21,23,["H834"]],[23,26,["H5117"]],[26,29,["H3117"]],[29,31,["H6869"]],[31,35,["H5927"]],[35,38,["H5971"]],[38,41,["H1464"]],[41,45,[]]]},{"k":22785,"v":[[0,1,["H3588"]],[1,4,["H8384"]],[4,6,["H3808"]],[6,7,["H6524"]],[7,8,["H369"]],[8,10,["H2981"]],[10,14,["H1612"]],[14,16,["H4639"]],[16,19,["H2132"]],[19,21,["H3584"]],[21,24,["H7709"]],[24,26,["H6213"]],[26,27,["H3808"]],[27,28,["H400"]],[28,30,["H6629"]],[30,34,["H1504"]],[34,37,["H4480","H4356"]],[37,42,["H369"]],[42,43,["H1241"]],[43,46,["H7517"]]]},{"k":22786,"v":[[0,2,["H589"]],[2,4,["H5937"]],[4,7,["H3068"]],[7,10,["H1523"]],[10,13,["H430"]],[13,16,["H3468"]]]},{"k":22787,"v":[[0,2,["H3068"]],[2,3,["H136"]],[3,6,["H2428"]],[6,10,["H7760"]],[10,12,["H7272"]],[12,14,["H355"]],[14,22,["H1869"]],[22,23,["H5921"]],[23,26,["H1116"]],[26,30,["H5329"]],[30,34,["H5058"]]]},{"k":22788,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H834"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H6846"]],[9,11,["H1121"]],[11,13,["H3570"]],[13,15,["H1121"]],[15,17,["H1436"]],[17,19,["H1121"]],[19,21,["H568"]],[21,23,["H1121"]],[23,25,["H2396"]],[25,28,["H3117"]],[28,30,["H2977"]],[30,32,["H1121"]],[32,34,["H526"]],[34,35,["H4428"]],[35,37,["H3063"]]]},{"k":22789,"v":[[0,4,["H622","H5486"]],[4,5,["H3605"]],[5,8,["H4480","H5921","H6440"]],[8,10,["H127"]],[10,11,["H5002"]],[11,13,["H3068"]]]},{"k":22790,"v":[[0,3,["H5486"]],[3,4,["H120"]],[4,6,["H929"]],[6,9,["H5486"]],[9,11,["H5775"]],[11,14,["H8064"]],[14,17,["H1709"]],[17,20,["H3220"]],[20,23,["H4384"]],[23,24,["H854"]],[24,26,["H7563"]],[26,31,["H3772","(H853)"]],[31,32,["H120"]],[32,34,["H4480","H5921","H6440"]],[34,36,["H127"]],[36,37,["H5002"]],[37,39,["H3068"]]]},{"k":22791,"v":[[0,5,["H5186"]],[5,7,["H3027"]],[7,8,["H5921"]],[8,9,["H3063"]],[9,11,["H5921"]],[11,12,["H3605"]],[12,14,["H3427"]],[14,16,["H3389"]],[16,21,["H3772","(H853)"]],[21,23,["H7605"]],[23,25,["H1168"]],[25,26,["H4480"]],[26,27,["H2088"]],[27,28,["H4725"]],[28,29,["(H853)"]],[29,31,["H8034"]],[31,34,["H3649"]],[34,35,["H5973"]],[35,37,["H3548"]]]},{"k":22792,"v":[[0,4,["H7812"]],[4,6,["H6635"]],[6,8,["H8064"]],[8,9,["H5921"]],[9,11,["H1406"]],[11,15,["H7812"]],[15,18,["H7650"]],[18,21,["H3068"]],[21,24,["H7650"]],[24,26,["H4445"]]]},{"k":22793,"v":[[0,6,["H5472"]],[6,7,["H4480","H310"]],[7,9,["H3068"]],[9,12,["H834"]],[12,14,["H3808"]],[14,15,["H1245","(H853)"]],[15,17,["H3068"]],[17,18,["H3808"]],[18,19,["H1875"]],[19,21,[]]]},{"k":22794,"v":[[0,3,["H2013"]],[3,6,["H4480","H6440"]],[6,9,["H136"]],[9,10,["H3069"]],[10,11,["H3588"]],[11,13,["H3117"]],[13,16,["H3068"]],[16,19,["H7138"]],[19,20,["H3588"]],[20,22,["H3068"]],[22,24,["H3559"]],[24,26,["H2077"]],[26,29,["H6942"]],[29,31,["H7121"]]]},{"k":22795,"v":[[0,6,["H1961"]],[6,9,["H3117"]],[9,12,["H3068"]],[12,13,["H2077"]],[13,17,["H6485","H5921"]],[17,19,["H8269"]],[19,22,["H4428"]],[22,23,["H1121"]],[23,25,["H3605"]],[25,29,["H3847"]],[29,31,["H5237"]],[31,32,["H4403"]]]},{"k":22796,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,8,["H6485","H5921"]],[8,9,["H3605"]],[9,12,["H1801"]],[12,13,["H5921"]],[13,15,["H4670"]],[15,17,["H4390"]],[17,19,["H113"]],[19,20,["H1004"]],[20,22,["H2555"]],[22,24,["H4820"]]]},{"k":22797,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,10,["H5002"]],[10,12,["H3068"]],[12,18,["H6963"]],[18,21,["H6818"]],[21,24,["H1709"]],[24,25,["H4480","H8179"]],[25,28,["H3215"]],[28,29,["H4480"]],[29,31,["H4932"]],[31,34,["H1419"]],[34,35,["H7667"]],[35,38,["H4480","H1389"]]]},{"k":22798,"v":[[0,1,["H3213"]],[1,3,["H3427"]],[3,5,["H4389"]],[5,6,["H3588"]],[6,7,["H3605"]],[7,9,["H3667"]],[9,10,["H5971"]],[10,13,["H1820"]],[13,14,["H3605"]],[14,17,["H5187"]],[17,18,["H3701"]],[18,21,["H3772"]]]},{"k":22799,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H6256"]],[9,13,["H2664","(H853)"]],[13,14,["H3389"]],[14,16,["H5216"]],[16,18,["H6485","H5921"]],[18,20,["H376"]],[20,23,["H7087"]],[23,24,["H5921"]],[24,26,["H8105"]],[26,28,["H559"]],[28,31,["H3824"]],[31,33,["H3068"]],[33,35,["H3808"]],[35,37,["H3190"]],[37,38,["H3808"]],[38,42,["H7489"]]]},{"k":22800,"v":[[0,3,["H2428"]],[3,5,["H1961"]],[5,7,["H4933"]],[7,10,["H1004"]],[10,12,["H8077"]],[12,16,["H1129"]],[16,17,["H1004"]],[17,19,["H3808"]],[19,20,["H3427"]],[20,25,["H5193"]],[25,26,["H3754"]],[26,28,["H3808"]],[28,29,["H8354","(H853)"]],[29,31,["H3196"]],[31,32,[]]]},{"k":22801,"v":[[0,2,["H1419"]],[2,3,["H3117"]],[3,6,["H3068"]],[6,8,["H7138"]],[8,11,["H7138"]],[11,13,["H4118"]],[13,14,["H3966"]],[14,17,["H6963"]],[17,20,["H3117"]],[20,23,["H3068"]],[23,26,["H1368"]],[26,28,["H6873"]],[28,29,["H8033"]],[29,30,["H4751"]]]},{"k":22802,"v":[[0,1,["H1931"]],[1,2,["H3117"]],[2,5,["H3117"]],[5,7,["H5678"]],[7,9,["H3117"]],[9,11,["H6869"]],[11,13,["H4691"]],[13,15,["H3117"]],[15,17,["H7722"]],[17,19,["H4875"]],[19,21,["H3117"]],[21,23,["H2822"]],[23,25,["H653"]],[25,27,["H3117"]],[27,29,["H6051"]],[29,32,["H6205"]]]},{"k":22803,"v":[[0,2,["H3117"]],[2,5,["H7782"]],[5,7,["H8643"]],[7,8,["H5921"]],[8,10,["H1219"]],[10,11,["H5892"]],[11,13,["H5921"]],[13,15,["H1364"]],[15,16,["H6438"]]]},{"k":22804,"v":[[0,5,["H6887"]],[5,7,["H120"]],[7,11,["H1980"]],[11,14,["H5787"]],[14,15,["H3588"]],[15,18,["H2398"]],[18,21,["H3068"]],[21,24,["H1818"]],[24,28,["H8210"]],[28,30,["H6083"]],[30,33,["H3894"]],[33,36,["H1561"]]]},{"k":22805,"v":[[0,1,["H3808","H1571"]],[1,3,["H3701"]],[3,4,["H1571"]],[4,6,["H2091"]],[6,9,["H3201"]],[9,11,["H5337"]],[11,15,["H3117"]],[15,18,["H3068"]],[18,19,["H5678"]],[19,22,["H3605"]],[22,23,["H776"]],[23,26,["H398"]],[26,29,["H784"]],[29,32,["H7068"]],[32,33,["H3588"]],[33,36,["H6213"]],[36,37,["H389"]],[37,39,["H926"]],[39,40,["H3617"]],[40,41,["H854"]],[41,42,["H3605"]],[42,45,["H3427"]],[45,48,["H776"]]]},{"k":22806,"v":[[0,3,["H7197"]],[3,6,["H7197"]],[6,8,["H1471"]],[8,9,["H3808"]],[9,10,["H3700"]]]},{"k":22807,"v":[[0,1,["H2962"]],[1,3,["H2706"]],[3,5,["H3205"]],[5,8,["H3117"]],[8,9,["H5674"]],[9,12,["H4671"]],[12,13,["H2962"]],[13,15,["H2740"]],[15,16,["H639"]],[16,19,["H3068"]],[19,20,["H935"]],[20,21,["H5921"]],[21,23,["H2962"]],[23,25,["H3117"]],[25,28,["H3068"]],[28,29,["H639"]],[29,30,["H935"]],[30,31,["H5921"]],[31,32,[]]]},{"k":22808,"v":[[0,1,["H1245"]],[1,2,["(H853)"]],[2,4,["H3068"]],[4,5,["H3605"]],[5,7,["H6035"]],[7,10,["H776"]],[10,11,["H834"]],[11,13,["H6466"]],[13,15,["H4941"]],[15,16,["H1245"]],[16,17,["H6664"]],[17,18,["H1245"]],[18,19,["H6038"]],[19,22,["H194"]],[22,26,["H5641"]],[26,29,["H3117"]],[29,32,["H3068"]],[32,33,["H639"]]]},{"k":22809,"v":[[0,1,["H3588"]],[1,2,["H5804"]],[2,4,["H1961"]],[4,5,["H5800"]],[5,7,["H831"]],[7,9,["H8077"]],[9,13,["H1644"]],[13,14,["H795"]],[14,18,["H6672"]],[18,20,["H6138"]],[20,24,["H6131"]]]},{"k":22810,"v":[[0,1,["H1945"]],[1,4,["H3427"]],[4,7,["H3220"]],[7,8,["H2256"]],[8,10,["H1471"]],[10,13,["H3774"]],[13,15,["H1697"]],[15,18,["H3068"]],[18,20,["H5921"]],[20,23,["H3667"]],[23,25,["H776"]],[25,28,["H6430"]],[28,32,["H6"]],[32,38,["H4480","H369"]],[38,39,["H3427"]]]},{"k":22811,"v":[[0,3,["H3220"]],[3,4,["H2256"]],[4,6,["H1961"]],[6,7,["H5116"]],[7,9,["H3741"]],[9,11,["H7462"]],[11,13,["H1448"]],[13,15,["H6629"]]]},{"k":22812,"v":[[0,3,["H2256"]],[3,5,["H1961"]],[5,8,["H7611"]],[8,11,["H1004"]],[11,13,["H3063"]],[13,16,["H7462"]],[16,17,["H5921"]],[17,20,["H1004"]],[20,22,["H831"]],[22,26,["H7257"]],[26,29,["H6153"]],[29,30,["H3588"]],[30,32,["H3068"]],[32,34,["H430"]],[34,36,["H6485"]],[36,40,["H7725"]],[40,42,["H7622"]]]},{"k":22813,"v":[[0,3,["H8085"]],[3,5,["H2781"]],[5,7,["H4124"]],[7,10,["H1421"]],[10,13,["H1121"]],[13,15,["H5983"]],[15,16,["H834"]],[16,19,["H2778","(H853)"]],[19,21,["H5971"]],[21,23,["H1431"]],[23,25,["H5921"]],[25,27,["H1366"]]]},{"k":22814,"v":[[0,1,["H3651"]],[1,3,["H589"]],[3,4,["H2416"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,9,["H6635"]],[9,11,["H430"]],[11,13,["H3478"]],[13,14,["H3588"]],[14,15,["H4124"]],[15,17,["H1961"]],[17,19,["H5467"]],[19,22,["H1121"]],[22,24,["H5983"]],[24,26,["H6017"]],[26,29,["H4476"]],[29,31,["H2738"]],[31,33,["H4417","H4379"]],[33,36,["H5704","H5769"]],[36,37,["H8077"]],[37,39,["H7611"]],[39,42,["H5971"]],[42,44,["H962"]],[44,48,["H3499"]],[48,51,["H1471"]],[51,53,["H5157"]],[53,54,[]]]},{"k":22815,"v":[[0,1,["H2063"]],[1,5,["H8478"]],[5,7,["H1347"]],[7,8,["H3588"]],[8,11,["H2778"]],[11,13,["H1431"]],[13,15,["H5921"]],[15,17,["H5971"]],[17,20,["H3068"]],[20,22,["H6635"]]]},{"k":22816,"v":[[0,2,["H3068"]],[2,5,["H3372"]],[5,6,["H5921"]],[6,8,["H3588"]],[8,11,["H7329","(H853)"]],[11,12,["H3605"]],[12,14,["H430"]],[14,17,["H776"]],[17,21,["H7812"]],[21,24,["H376"]],[24,27,["H4480","H4725"]],[27,29,["H3605"]],[29,31,["H339"]],[31,34,["H1471"]]]},{"k":22817,"v":[[0,1,["H859"]],[1,2,["H3569"]],[2,3,["H1571"]],[3,4,["H1992"]],[4,7,["H2491"]],[7,10,["H2719"]]]},{"k":22818,"v":[[0,5,["H5186"]],[5,7,["H3027"]],[7,8,["H5921"]],[8,10,["H6828"]],[10,12,["H6","(H853)"]],[12,13,["H804"]],[13,16,["H7760","(H853)"]],[16,17,["H5210"]],[17,19,["H8077"]],[19,21,["H6723"]],[21,24,["H4057"]]]},{"k":22819,"v":[[0,2,["H5739"]],[2,5,["H7257"]],[5,8,["H8432"]],[8,11,["H3605"]],[11,13,["H2416"]],[13,16,["H1471"]],[16,17,["H1571"]],[17,19,["H6893"]],[19,20,["H1571"]],[20,22,["H7090"]],[22,24,["H3885"]],[24,28,["H3730"]],[28,32,["H6963"]],[32,34,["H7891"]],[34,37,["H2474"]],[37,38,["H2721"]],[38,43,["H5592"]],[43,44,["H3588"]],[44,47,["H6168"]],[47,50,["H731"]]]},{"k":22820,"v":[[0,1,["H2063"]],[1,4,["H5947"]],[4,5,["H5892"]],[5,7,["H3427"]],[7,8,["H983"]],[8,10,["H559"]],[10,13,["H3824"]],[13,14,["H589"]],[14,19,["H657"]],[19,20,["H5750"]],[20,22,["H349"]],[22,25,["H1961"]],[25,27,["H8047"]],[27,31,["H2416"]],[31,34,["H4769"]],[34,37,["H3605"]],[37,39,["H5674"]],[39,40,["H5921"]],[40,43,["H8319"]],[43,45,["H5128"]],[45,47,["H3027"]]]},{"k":22821,"v":[[0,1,["H1945"]],[1,6,["H4784"]],[6,8,["H1351"]],[8,11,["H3238"]],[11,12,["H5892"]]]},{"k":22822,"v":[[0,2,["H8085"]],[2,3,["H3808"]],[3,5,["H6963"]],[5,7,["H3947"]],[7,8,["H3808"]],[8,9,["H4148"]],[9,11,["H982"]],[11,12,["H3808"]],[12,15,["H3068"]],[15,19,["H7126","H3808"]],[19,20,["H413"]],[20,22,["H430"]]]},{"k":22823,"v":[[0,2,["H8269"]],[2,3,["H7130"]],[3,6,["H7580"]],[6,7,["H738"]],[7,9,["H8199"]],[9,11,["H6153"]],[11,12,["H2061"]],[12,17,["H1633","H3808"]],[17,20,["H1242"]]]},{"k":22824,"v":[[0,2,["H5030"]],[2,4,["H6348"]],[4,6,["H900"]],[6,7,["H376"]],[7,9,["H3548"]],[9,11,["H2490"]],[11,13,["H6944"]],[13,17,["H2554"]],[17,20,["H8451"]]]},{"k":22825,"v":[[0,2,["H6662"]],[2,3,["H3068"]],[3,7,["H7130"]],[7,11,["H3808"]],[11,12,["H6213"]],[12,13,["H5766"]],[13,15,["H1242","H1242"]],[15,18,["H5414"]],[18,20,["H4941"]],[20,22,["H216"]],[22,24,["H5737"]],[24,25,["H3808"]],[25,28,["H5767"]],[28,29,["H3045"]],[29,30,["H3808"]],[30,31,["H1322"]]]},{"k":22826,"v":[[0,4,["H3772"]],[4,6,["H1471"]],[6,8,["H6438"]],[8,10,["H8074"]],[10,15,["H2717","H2351"]],[15,17,["H4480","H1097"]],[17,19,["H5674"]],[19,21,["H5892"]],[21,23,["H6658"]],[23,28,["H4480","H1097"]],[28,29,["H376"]],[29,33,["H4480","H369"]],[33,34,["H3427"]]]},{"k":22827,"v":[[0,2,["H559"]],[2,3,["H389"]],[3,6,["H3372"]],[6,10,["H3947"]],[10,11,["H4148"]],[11,14,["H4583"]],[14,16,["H3808"]],[16,19,["H3772"]],[19,20,["H3605","H834"]],[20,22,["H6485","H5921"]],[22,24,["H403"]],[24,27,["H7925"]],[27,29,["H7843"]],[29,30,["H3605"]],[30,32,["H5949"]]]},{"k":22828,"v":[[0,1,["H3651"]],[1,2,["H2442"]],[2,6,["H5002"]],[6,8,["H3068"]],[8,11,["H3117"]],[11,15,["H6965"]],[15,18,["H5706"]],[18,19,["H3588"]],[19,21,["H4941"]],[21,24,["H622"]],[24,26,["H1471"]],[26,30,["H6908"]],[30,32,["H4467"]],[32,34,["H8210"]],[34,35,["H5921"]],[35,38,["H2195"]],[38,40,["H3605"]],[40,42,["H2740"]],[42,43,["H639"]],[43,44,["H3588"]],[44,45,["H3605"]],[45,47,["H776"]],[47,50,["H398"]],[50,53,["H784"]],[53,56,["H7068"]]]},{"k":22829,"v":[[0,1,["H3588"]],[1,2,["H227"]],[2,5,["H2015"]],[5,6,["H413"]],[6,8,["H5971"]],[8,10,["H1305"]],[10,11,["H8193"]],[11,15,["H3605"]],[15,16,["H7121"]],[16,19,["H8034"]],[19,22,["H3068"]],[22,24,["H5647"]],[24,27,["H259"]],[27,28,["H7926"]]]},{"k":22830,"v":[[0,2,["H4480","H5676"]],[2,4,["H5104"]],[4,6,["H3568"]],[6,8,["H6282"]],[8,11,["H1323"]],[11,14,["H6327"]],[14,16,["H2986"]],[16,18,["H4503"]]]},{"k":22831,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H3808"]],[6,8,["H954"]],[8,10,["H4480","H3605"]],[10,12,["H5949"]],[12,13,["H834"]],[13,16,["H6586"]],[16,19,["H3588"]],[19,20,["H227"]],[20,24,["H5493"]],[24,28,["H4480","H7130"]],[28,33,["H5947"]],[33,36,["H1346"]],[36,40,["H3808"]],[40,41,["H3254","H5750"]],[41,43,["H1361"]],[43,47,["H6944"]],[47,48,["H2022"]]]},{"k":22832,"v":[[0,4,["H7604"]],[4,7,["H7130"]],[7,11,["H6041"]],[11,13,["H1800"]],[13,14,["H5971"]],[14,18,["H2620"]],[18,21,["H8034"]],[21,24,["H3068"]]]},{"k":22833,"v":[[0,2,["H7611"]],[2,4,["H3478"]],[4,6,["H3808"]],[6,7,["H6213"]],[7,8,["H5766"]],[8,9,["H3808"]],[9,10,["H1696"]],[10,11,["H3577"]],[11,12,["H3808"]],[12,15,["H8649"]],[15,16,["H3956"]],[16,18,["H4672"]],[18,21,["H6310"]],[21,22,["H3588"]],[22,23,["H1992"]],[23,25,["H7462"]],[25,28,["H7257"]],[28,30,["H369"]],[30,34,["H2729"]]]},{"k":22834,"v":[[0,1,["H7442"]],[1,3,["H1323"]],[3,5,["H6726"]],[5,6,["H7321"]],[6,8,["H3478"]],[8,10,["H8055"]],[10,12,["H5937"]],[12,14,["H3605"]],[14,16,["H3820"]],[16,18,["H1323"]],[18,20,["H3389"]]]},{"k":22835,"v":[[0,2,["H3068"]],[2,5,["H5493"]],[5,7,["H4941"]],[7,11,["H6437"]],[11,13,["H341"]],[13,15,["H4428"]],[15,17,["H3478"]],[17,20,["H3068"]],[20,24,["H7130"]],[24,29,["H3808"]],[29,30,["H7200"]],[30,31,["H7451"]],[31,33,["H5750"]]]},{"k":22836,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,7,["H559"]],[7,9,["H3389"]],[9,10,["H3372"]],[10,12,["H408"]],[12,15,["H6726"]],[15,17,["H408"]],[17,19,["H3027"]],[19,21,["H7503"]]]},{"k":22837,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,7,["H7130"]],[7,11,["H1368"]],[11,14,["H3467"]],[14,17,["H7797"]],[17,18,["H5921"]],[18,21,["H8057"]],[21,24,["H2790"]],[24,27,["H160"]],[27,30,["H1523"]],[30,31,["H5921"]],[31,34,["H7440"]]]},{"k":22838,"v":[[0,3,["H622"]],[3,7,["H3013"]],[7,11,["H4480","H4150"]],[11,13,["H1961"]],[13,14,["H4480"]],[14,19,["H2781"]],[19,20,["H5921"]],[20,24,["H4864"]]]},{"k":22839,"v":[[0,1,["H2009"]],[1,3,["H1931"]],[3,4,["H6256"]],[4,7,["H6213","(H853)"]],[7,8,["H3605"]],[8,10,["H6031"]],[10,15,["H3467","(H853)"]],[15,18,["H6760"]],[18,20,["H6908"]],[20,25,["H5080"]],[25,29,["H7760"]],[29,31,["H8416"]],[31,33,["H8034"]],[33,35,["H3605"]],[35,36,["H776"]],[36,43,["H1322"]]]},{"k":22840,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,6,["H935"]],[6,12,["H6256"]],[12,15,["H6908"]],[15,17,["H3588"]],[17,20,["H5414"]],[20,23,["H8034"]],[23,26,["H8416"]],[26,28,["H3605"]],[28,29,["H5971"]],[29,32,["H776"]],[32,36,["H7725","(H853)"]],[36,38,["H7622"]],[38,41,["H5869"]],[41,42,["H559"]],[42,44,["H3068"]]]},{"k":22841,"v":[[0,3,["H8147"]],[3,4,["H8141"]],[4,6,["H1867"]],[6,8,["H4428"]],[8,11,["H8345"]],[11,12,["H2320"]],[12,15,["H259"]],[15,16,["H3117"]],[16,19,["H2320"]],[19,20,["H1961"]],[20,22,["H1697"]],[22,25,["H3068"]],[25,26,["H3027"]],[26,27,["H2292"]],[27,29,["H5030"]],[29,30,["H413"]],[30,31,["H2216"]],[31,33,["H1121"]],[33,35,["H7597"]],[35,36,["H6346"]],[36,38,["H3063"]],[38,40,["H413"]],[40,41,["H3091"]],[41,43,["H1121"]],[43,45,["H3087"]],[45,47,["H1419"]],[47,48,["H3548"]],[48,49,["H559"]]]},{"k":22842,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H559"]],[7,8,["H2088"]],[8,9,["H5971"]],[9,10,["H559"]],[10,12,["H6256"]],[12,14,["H3808"]],[14,15,["H935"]],[15,17,["H6256"]],[17,20,["H3068"]],[20,21,["H1004"]],[21,24,["H1129"]]]},{"k":22843,"v":[[0,2,["H1961"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H3027"]],[8,9,["H2292"]],[9,11,["H5030"]],[11,12,["H559"]]]},{"k":22844,"v":[[0,3,["H6256"]],[3,7,["H859"]],[7,9,["H3427"]],[9,12,["H5603"]],[12,13,["H1004"]],[13,15,["H2088"]],[15,16,["H1004"]],[16,18,["H2720"]]]},{"k":22845,"v":[[0,1,["H6258"]],[1,3,["H3541"]],[3,4,["H559"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,9,["H7760","H3824","H5921"]],[9,11,["H1870"]]]},{"k":22846,"v":[[0,3,["H2232"]],[3,4,["H7235"]],[4,7,["H935"]],[7,8,["H4592"]],[8,10,["H398"]],[10,15,["H369","H7646"]],[15,17,["H8354"]],[17,24,["H369","H7937"]],[24,26,["H3847"]],[26,32,["H369","H2552"]],[32,37,["H7936"]],[37,39,["H7936"]],[39,43,["H413"]],[43,45,["H6872"]],[45,47,["H5344"]]]},{"k":22847,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H7760","H3824","H5921"]],[7,9,["H1870"]]]},{"k":22848,"v":[[0,2,["H5927"]],[2,5,["H2022"]],[5,7,["H935"]],[7,8,["H6086"]],[8,10,["H1129"]],[10,12,["H1004"]],[12,17,["H7521"]],[17,24,["H3513"]],[24,25,["H559"]],[25,27,["H3068"]]]},{"k":22849,"v":[[0,2,["H6437"]],[2,3,["H413"]],[3,4,["H7235"]],[4,6,["H2009"]],[6,10,["H4592"]],[10,14,["H935"]],[14,16,["H1004"]],[16,19,["H5301"]],[19,22,["H3282","H4100"]],[22,23,["H5002"]],[23,25,["H3068"]],[25,27,["H6635"]],[27,28,["H3282"]],[28,31,["H1004"]],[31,32,["H834"]],[32,34,["H2720"]],[34,36,["H859"]],[36,37,["H7323"]],[37,39,["H376"]],[39,43,["H1004"]]]},{"k":22850,"v":[[0,1,["H5921","H3651"]],[1,3,["H8064"]],[3,4,["H5921"]],[4,7,["H3607"]],[7,9,["H4480","H2919"]],[9,12,["H776"]],[12,14,["H3607"]],[14,17,["H2981"]]]},{"k":22851,"v":[[0,3,["H7121"]],[3,6,["H2721"]],[6,7,["H5921"]],[7,9,["H776"]],[9,11,["H5921"]],[11,13,["H2022"]],[13,15,["H5921"]],[15,17,["H1715"]],[17,19,["H5921"]],[19,22,["H8492"]],[22,24,["H5921"]],[24,26,["H3323"]],[26,28,["H5921"]],[28,30,["H834"]],[30,32,["H127"]],[32,34,["H3318"]],[34,36,["H5921"]],[36,37,["H120"]],[37,39,["H5921"]],[39,40,["H929"]],[40,42,["H5921"]],[42,43,["H3605"]],[43,45,["H3018"]],[45,48,["H3709"]]]},{"k":22852,"v":[[0,2,["H2216"]],[2,4,["H1121"]],[4,6,["H7597"]],[6,8,["H3091"]],[8,10,["H1121"]],[10,12,["H3087"]],[12,14,["H1419"]],[14,15,["H3548"]],[15,17,["H3605"]],[17,19,["H7611"]],[19,22,["H5971"]],[22,23,["H8085"]],[23,25,["H6963"]],[25,28,["H3068"]],[28,30,["H430"]],[30,33,["H1697"]],[33,35,["H2292"]],[35,37,["H5030"]],[37,38,["H834"]],[38,40,["H3068"]],[40,42,["H430"]],[42,44,["H7971"]],[44,48,["H5971"]],[48,50,["H3372"]],[50,51,["H4480","H6440"]],[51,53,["H3068"]]]},{"k":22853,"v":[[0,2,["H559"]],[2,3,["H2292"]],[3,5,["H3068"]],[5,6,["H4397"]],[6,9,["H3068"]],[9,10,["H4400"]],[10,13,["H5971"]],[13,14,["H559"]],[14,15,["H589"]],[15,17,["H854"]],[17,19,["H5002"]],[19,21,["H3068"]]]},{"k":22854,"v":[[0,3,["H3068"]],[3,5,["H5782","(H853)"]],[5,7,["H7307"]],[7,9,["H2216"]],[9,11,["H1121"]],[11,13,["H7597"]],[13,14,["H6346"]],[14,16,["H3063"]],[16,19,["H7307"]],[19,21,["H3091"]],[21,23,["H1121"]],[23,25,["H3087"]],[25,27,["H1419"]],[27,28,["H3548"]],[28,31,["H7307"]],[31,33,["H3605"]],[33,35,["H7611"]],[35,38,["H5971"]],[38,41,["H935"]],[41,43,["H6213"]],[43,44,["H4399"]],[44,47,["H1004"]],[47,50,["H3068"]],[50,52,["H6635"]],[52,54,["H430"]]]},{"k":22855,"v":[[0,3,["H702"]],[3,5,["H6242"]],[5,6,["H3117"]],[6,9,["H8345"]],[9,10,["H2320"]],[10,13,["H8147"]],[13,14,["H8141"]],[14,16,["H1867"]],[16,18,["H4428"]]]},{"k":22856,"v":[[0,3,["H7637"]],[3,7,["H259"]],[7,9,["H6242"]],[9,13,["H2320"]],[13,14,["H1961"]],[14,16,["H1697"]],[16,19,["H3068"]],[19,20,["H3027"]],[20,22,["H5030"]],[22,23,["H2292"]],[23,24,["H559"]]]},{"k":22857,"v":[[0,1,["H559"]],[1,2,["H4994"]],[2,3,["H413"]],[3,4,["H2216"]],[4,6,["H1121"]],[6,8,["H7597"]],[8,9,["H6346"]],[9,11,["H3063"]],[11,13,["H413"]],[13,14,["H3091"]],[14,16,["H1121"]],[16,18,["H3087"]],[18,20,["H1419"]],[20,21,["H3548"]],[21,23,["H413"]],[23,25,["H7611"]],[25,28,["H5971"]],[28,29,["H559"]]]},{"k":22858,"v":[[0,1,["H4310"]],[1,3,["H7604"]],[3,6,["H834"]],[6,7,["H7200","(H853)"]],[7,8,["H2088"]],[8,9,["H1004"]],[9,12,["H7223"]],[12,13,["H3519"]],[13,15,["H4100"]],[15,17,["H859"]],[17,18,["H7200"]],[18,20,["H6258"]],[20,23,["H3808"]],[23,26,["H5869"]],[26,30,["H3644"]],[30,32,["H369"]]]},{"k":22859,"v":[[0,2,["H6258"]],[2,4,["H2388"]],[4,6,["H2216"]],[6,7,["H5002"]],[7,9,["H3068"]],[9,12,["H2388"]],[12,14,["H3091"]],[14,15,["H1121"]],[15,17,["H3087"]],[17,19,["H1419"]],[19,20,["H3548"]],[20,23,["H2388"]],[23,24,["H3605"]],[24,26,["H5971"]],[26,29,["H776"]],[29,30,["H5002"]],[30,32,["H3068"]],[32,34,["H6213"]],[34,35,["H3588"]],[35,36,["H589"]],[36,38,["H854"]],[38,40,["H5002"]],[40,42,["H3068"]],[42,44,["H6635"]]]},{"k":22860,"v":[[0,2,["(H853)"]],[2,4,["H1697"]],[4,5,["H834"]],[5,7,["H3772"]],[7,8,["H854"]],[8,13,["H3318"]],[13,15,["H4480","H4714"]],[15,18,["H7307"]],[18,19,["H5975"]],[19,20,["H8432"]],[20,22,["H3372"]],[22,24,["H408"]]]},{"k":22861,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,8,["H5750"]],[8,9,["H259"]],[9,10,["H1931"]],[10,14,["H4592"]],[14,16,["H589"]],[16,18,["H7493","(H853)"]],[18,20,["H8064"]],[20,23,["H776"]],[23,26,["H3220"]],[26,29,["H2724"]],[29,30,[]]]},{"k":22862,"v":[[0,4,["H7493","(H853)"]],[4,5,["H3605"]],[5,6,["H1471"]],[6,9,["H2532"]],[9,11,["H3605"]],[11,12,["H1471"]],[12,14,["H935"]],[14,18,["H4390","(H853)"]],[18,19,["H2088"]],[19,20,["H1004"]],[20,22,["H3519"]],[22,23,["H559"]],[23,25,["H3068"]],[25,27,["H6635"]]]},{"k":22863,"v":[[0,2,["H3701"]],[2,7,["H2091"]],[7,10,["H5002"]],[10,12,["H3068"]],[12,14,["H6635"]]]},{"k":22864,"v":[[0,2,["H3519"]],[2,4,["H2088"]],[4,5,["H314"]],[5,6,["H1004"]],[6,8,["H1961"]],[8,9,["H1419"]],[9,10,["H4480"]],[10,13,["H7223"]],[13,14,["H559"]],[14,16,["H3068"]],[16,18,["H6635"]],[18,21,["H2088"]],[21,22,["H4725"]],[22,25,["H5414"]],[25,26,["H7965"]],[26,27,["H5002"]],[27,29,["H3068"]],[29,31,["H6635"]]]},{"k":22865,"v":[[0,3,["H702"]],[3,5,["H6242"]],[5,9,["H8671"]],[9,13,["H8147"]],[13,14,["H8141"]],[14,16,["H1867"]],[16,17,["H1961"]],[17,19,["H1697"]],[19,22,["H3068"]],[22,23,["H413"]],[23,24,["H2292"]],[24,26,["H5030"]],[26,27,["H559"]]]},{"k":22866,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H7592"]],[7,8,["H4994","(H853)"]],[8,10,["H3548"]],[10,13,["H8451"]],[13,14,["H559"]]]},{"k":22867,"v":[[0,1,["H2005"]],[1,2,["H376"]],[2,3,["H5375"]],[3,4,["H6944"]],[4,5,["H1320"]],[5,8,["H3671"]],[8,11,["H899"]],[11,15,["H3671"]],[15,17,["H5060","H413"]],[17,18,["H3899"]],[18,20,["H5138"]],[20,22,["H3196"]],[22,24,["H8081"]],[24,26,["H3605"]],[26,27,["H3978"]],[27,31,["H6942"]],[31,34,["H3548"]],[34,35,["H6030"]],[35,37,["H559"]],[37,38,["H3808"]]]},{"k":22868,"v":[[0,2,["H559"]],[2,3,["H2292"]],[3,4,["H518"]],[4,8,["H2931"]],[8,12,["H5315"]],[12,13,["H5060"]],[13,14,["H3605"]],[14,16,["H428"]],[16,20,["H2930"]],[20,23,["H3548"]],[23,24,["H6030"]],[24,26,["H559"]],[26,30,["H2930"]]]},{"k":22869,"v":[[0,2,["H6030"]],[2,3,["H2292"]],[3,5,["H559"]],[5,6,["H3651"]],[6,8,["H2088"]],[8,9,["H5971"]],[9,11,["H3651"]],[11,13,["H2088"]],[13,14,["H1471"]],[14,15,["H6440"]],[15,17,["H5002"]],[17,19,["H3068"]],[19,21,["H3651"]],[21,23,["H3605"]],[23,24,["H4639"]],[24,27,["H3027"]],[27,30,["H834"]],[30,32,["H7126"]],[32,33,["H8033"]],[33,35,["H2931"]]]},{"k":22870,"v":[[0,2,["H6258"]],[2,5,["H4994"]],[5,6,["H7760","H3824"]],[6,7,["H4480"]],[7,8,["H2088"]],[8,9,["H3117"]],[9,11,["H4605"]],[11,13,["H4480","H2962"]],[13,15,["H68"]],[15,17,["H7760"]],[17,18,["H413"]],[18,20,["H68"]],[20,23,["H1964"]],[23,26,["H3068"]]]},{"k":22871,"v":[[0,4,["H4480","H1961"]],[4,7,["H935"]],[7,8,["H413"]],[8,10,["H6194"]],[10,12,["H6242"]],[12,15,["H1961"]],[15,17,["H6235"]],[17,20,["H935"]],[20,21,["H413"]],[21,23,["H3342"]],[23,27,["H2834"]],[27,28,["H2572"]],[28,33,["H6333"]],[33,35,["H1961"]],[35,37,["H6242"]]]},{"k":22872,"v":[[0,2,["H5221"]],[2,5,["H7711"]],[5,8,["H3420"]],[8,11,["H1259"]],[11,12,["H854"]],[12,13,["H3605"]],[13,15,["H4639"]],[15,18,["H3027"]],[18,22,["H369"]],[22,23,["H413"]],[23,25,["H5002"]],[25,27,["H3068"]]]},{"k":22873,"v":[[0,1,["H7760","H3824"]],[1,2,["H4994"]],[2,3,["H4480"]],[3,4,["H2088"]],[4,5,["H3117"]],[5,7,["H4605"]],[7,10,["H702"]],[10,12,["H6242"]],[12,13,["H4480","H3117"]],[13,16,["H8671"]],[16,19,["H4480"]],[19,21,["H3117"]],[21,22,["H834"]],[22,30,["H3245","H1964","H3068"]],[30,31,["H7760","H3824"]],[31,32,[]]]},{"k":22874,"v":[[0,3,["H2233"]],[3,4,["H5750"]],[4,7,["H4035"]],[7,10,["H5704"]],[10,12,["H1612"]],[12,16,["H8384"]],[16,19,["H7416"]],[19,22,["H2132"]],[22,23,["H6086"]],[23,25,["H3808"]],[25,27,["H5375"]],[27,28,["H4480"]],[28,29,["H2088"]],[29,30,["H3117"]],[30,33,["H1288"]],[33,34,[]]]},{"k":22875,"v":[[0,2,["H8145"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H1961"]],[8,9,["H413"]],[9,10,["H2292"]],[10,13,["H702"]],[13,15,["H6242"]],[15,19,["H2320"]],[19,20,["H559"]]]},{"k":22876,"v":[[0,1,["H559"]],[1,2,["H413"]],[2,3,["H2216"]],[3,4,["H6346"]],[4,6,["H3063"]],[6,7,["H559"]],[7,8,["H589"]],[8,10,["H7493","(H853)"]],[10,12,["H8064"]],[12,15,["H776"]]]},{"k":22877,"v":[[0,4,["H2015"]],[4,6,["H3678"]],[6,8,["H4467"]],[8,12,["H8045"]],[12,14,["H2392"]],[14,17,["H4467"]],[17,20,["H1471"]],[20,24,["H2015"]],[24,26,["H4818"]],[26,30,["H7392"]],[30,35,["H5483"]],[35,38,["H7392"]],[38,41,["H3381"]],[41,43,["H376"]],[43,46,["H2719"]],[46,49,["H251"]]]},{"k":22878,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,4,["H5002"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,11,["H3947"]],[11,14,["H2216"]],[14,16,["H5650"]],[16,18,["H1121"]],[18,20,["H7597"]],[20,21,["H5002"]],[21,23,["H3068"]],[23,26,["H7760"]],[26,30,["H2368"]],[30,31,["H3588"]],[31,34,["H977"]],[34,36,["H5002"]],[36,38,["H3068"]],[38,40,["H6635"]]]},{"k":22879,"v":[[0,3,["H8066"]],[3,4,["H2320"]],[4,7,["H8147"]],[7,8,["H8141"]],[8,10,["H1867"]],[10,11,["H1961"]],[11,13,["H1697"]],[13,16,["H3068"]],[16,17,["H413"]],[17,18,["H2148"]],[18,20,["H1121"]],[20,22,["H1296"]],[22,24,["H1121"]],[24,26,["H5714"]],[26,28,["H5030"]],[28,29,["H559"]]]},{"k":22880,"v":[[0,2,["H3068"]],[2,6,["H7107","H7110"]],[6,7,["H5921"]],[7,9,["H1"]]]},{"k":22881,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,11,["H6635"]],[11,12,["H7725"]],[12,14,["H413"]],[14,16,["H5002"]],[16,18,["H3068"]],[18,20,["H6635"]],[20,24,["H7725"]],[24,25,["H413"]],[25,27,["H559"]],[27,29,["H3068"]],[29,31,["H6635"]]]},{"k":22882,"v":[[0,1,["H1961"]],[1,3,["H408"]],[3,6,["H1"]],[6,7,["H413"]],[7,8,["H834"]],[8,10,["H7223"]],[10,11,["H5030"]],[11,13,["H7121"]],[13,14,["H559"]],[14,15,["H3541"]],[15,16,["H559"]],[16,18,["H3068"]],[18,20,["H6635"]],[20,21,["H7725"]],[21,23,["H4994"]],[23,26,["H7451"]],[26,27,["H4480","H1870"]],[27,31,["H7451"]],[31,32,["H4611"]],[32,36,["H3808"]],[36,37,["H8085"]],[37,38,["H3808"]],[38,39,["H7181"]],[39,40,["H413"]],[40,42,["H5002"]],[42,44,["H3068"]]]},{"k":22883,"v":[[0,2,["H1"]],[2,3,["H346"]],[3,5,["H1992"]],[5,8,["H5030"]],[8,11,["H2421"]],[11,13,["H5769"]]]},{"k":22884,"v":[[0,1,["H389"]],[1,3,["H1697"]],[3,6,["H2706"]],[6,7,["H834"]],[7,9,["H6680","(H853)"]],[9,11,["H5650"]],[11,13,["H5030"]],[13,16,["H3808"]],[16,18,["H5381"]],[18,21,["H1"]],[21,24,["H7725"]],[24,26,["H559"]],[26,28,["H834"]],[28,30,["H3068"]],[30,32,["H6635"]],[32,33,["H2161"]],[33,35,["H6213"]],[35,41,["H1870"]],[41,46,["H4611"]],[46,47,["H3651"]],[47,50,["H6213"]],[50,51,["H854"]],[51,52,[]]]},{"k":22885,"v":[[0,3,["H702"]],[3,5,["H6242"]],[5,6,["H3117"]],[6,9,["H6249","H6240"]],[9,10,["H2320"]],[10,11,["H1931"]],[11,14,["H2320"]],[14,15,["H7627"]],[15,18,["H8147"]],[18,19,["H8141"]],[19,21,["H1867"]],[21,22,["H1961"]],[22,24,["H1697"]],[24,27,["H3068"]],[27,28,["H413"]],[28,29,["H2148"]],[29,31,["H1121"]],[31,33,["H1296"]],[33,35,["H1121"]],[35,37,["H5714"]],[37,39,["H5030"]],[39,40,["H559"]]]},{"k":22886,"v":[[0,2,["H7200"]],[2,4,["H3915"]],[4,6,["H2009"]],[6,8,["H376"]],[8,9,["H7392"]],[9,10,["H5921"]],[10,12,["H122"]],[12,13,["H5483"]],[13,15,["H1931"]],[15,16,["H5975"]],[16,17,["H996"]],[17,20,["H1918"]],[20,21,["H834"]],[21,25,["H4699"]],[25,27,["H310"]],[27,31,["H122"]],[31,32,["H5483"]],[32,33,["H8320"]],[33,35,["H3836"]]]},{"k":22887,"v":[[0,2,["H559"]],[2,6,["H113"]],[6,7,["H4100"]],[7,9,["H428"]],[9,12,["H4397"]],[12,14,["H1696"]],[14,17,["H559"]],[17,18,["H413"]],[18,20,["H589"]],[20,22,["H7200"]],[22,24,["H4100"]],[24,25,["H428"]],[25,26,[]]]},{"k":22888,"v":[[0,3,["H376"]],[3,5,["H5975"]],[5,6,["H996"]],[6,9,["H1918"]],[9,10,["H6030"]],[10,12,["H559"]],[12,13,["H428"]],[13,16,["H834"]],[16,18,["H3068"]],[18,20,["H7971"]],[20,25,["H1980"]],[25,28,["H776"]]]},{"k":22889,"v":[[0,3,["H6030","(H853)"]],[3,5,["H4397"]],[5,8,["H3068"]],[8,10,["H5975"]],[10,11,["H996"]],[11,14,["H1918"]],[14,16,["H559"]],[16,22,["H1980"]],[22,25,["H776"]],[25,27,["H2009"]],[27,28,["H3605"]],[28,30,["H776"]],[30,32,["H3427"]],[32,36,["H8252"]]]},{"k":22890,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H6030"]],[7,9,["H559"]],[9,11,["H3068"]],[11,13,["H6635"]],[13,15,["H5704","H4970"]],[15,17,["H859"]],[17,18,["H3808"]],[18,21,["H7355","(H853)"]],[21,22,["H3389"]],[22,26,["H5892"]],[26,28,["H3063"]],[28,30,["H834"]],[30,34,["H2194"]],[34,35,["H2088"]],[35,38,["H7657"]],[38,39,["H8141"]]]},{"k":22891,"v":[[0,3,["H3068"]],[3,4,["H6030","(H853)"]],[4,6,["H4397"]],[6,8,["H1696"]],[8,12,["H2896"]],[12,13,["H1697"]],[13,15,["H5150"]],[15,16,["H1697"]]]},{"k":22892,"v":[[0,3,["H4397"]],[3,5,["H1696"]],[5,8,["H559"]],[8,9,["H413"]],[9,11,["H7121"]],[11,13,["H559"]],[13,14,["H3541"]],[14,15,["H559"]],[15,17,["H3068"]],[17,19,["H6635"]],[19,22,["H7065"]],[22,24,["H3389"]],[24,27,["H6726"]],[27,30,["H1419"]],[30,31,["H7068"]]]},{"k":22893,"v":[[0,2,["H589"]],[2,4,["H1419"]],[4,6,["H7107","H7110"]],[6,7,["H5921"]],[7,9,["H1471"]],[9,13,["H7600"]],[13,14,["H834"]],[14,15,["H589"]],[15,19,["H4592"]],[19,20,["H7107"]],[20,22,["H1992"]],[22,23,["H5826"]],[23,26,["H7451"]]]},{"k":22894,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,8,["H7725"]],[8,10,["H3389"]],[10,12,["H7356"]],[12,14,["H1004"]],[14,17,["H1129"]],[17,20,["H5002"]],[20,22,["H3068"]],[22,24,["H6635"]],[24,27,["H6957"]],[27,31,["H5186"]],[31,32,["H5921"]],[32,33,["H3389"]]]},{"k":22895,"v":[[0,1,["H7121"]],[1,2,["H5750"]],[2,3,["H559"]],[3,4,["H3541"]],[4,5,["H559"]],[5,7,["H3068"]],[7,9,["H6635"]],[9,11,["H5892"]],[11,13,["H4480","H2896"]],[13,15,["H5750"]],[15,18,["H6327"]],[18,21,["H3068"]],[21,23,["H5750"]],[23,24,["H5162","(H853)"]],[24,25,["H6726"]],[25,28,["H5750"]],[28,29,["H977"]],[29,30,["H3389"]]]},{"k":22896,"v":[[0,4,["H5375","(H853)"]],[4,6,["H5869"]],[6,8,["H7200"]],[8,10,["H2009"]],[10,11,["H702"]],[11,12,["H7161"]]]},{"k":22897,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H4397"]],[6,8,["H1696"]],[8,11,["H4100"]],[11,13,["H428"]],[13,16,["H559","H413"]],[16,18,["H428"]],[18,21,["H7161"]],[21,22,["H834"]],[22,24,["H2219","(H853)"]],[24,25,["H3063","(H853)"]],[25,26,["H3478"]],[26,28,["H3389"]]]},{"k":22898,"v":[[0,3,["H3068"]],[3,4,["H7200"]],[4,6,["H702"]],[6,7,["H2796"]]]},{"k":22899,"v":[[0,2,["H559"]],[2,4,["H4100"]],[4,5,["H935"]],[5,6,["H428"]],[6,8,["H6213"]],[8,11,["H559"]],[11,12,["H559"]],[12,13,["H428"]],[13,16,["H7161"]],[16,17,["H834"]],[17,19,["H2219","(H853)"]],[19,20,["H3063"]],[20,23,["H3808"]],[23,24,["H376"]],[24,27,["H5375"]],[27,29,["H7218"]],[29,31,["H428"]],[31,33,["H935"]],[33,35,["H2729"]],[35,39,["H3034","(H853)"]],[39,41,["H7161"]],[41,44,["H1471"]],[44,47,["H5375"]],[47,49,["H7161"]],[49,50,["H413"]],[50,52,["H776"]],[52,54,["H3063"]],[54,56,["H2219"]],[56,57,[]]]},{"k":22900,"v":[[0,3,["H5375"]],[3,5,["H5869"]],[5,8,["H7200"]],[8,10,["H2009"]],[10,12,["H376"]],[12,15,["H4060"]],[15,16,["H2256"]],[16,19,["H3027"]]]},{"k":22901,"v":[[0,2,["H559"]],[2,4,["H575"]],[4,5,["H1980"]],[5,6,["H859"]],[6,9,["H559"]],[9,10,["H413"]],[10,13,["H4058","(H853)"]],[13,14,["H3389"]],[14,16,["H7200"]],[16,17,["H4100"]],[17,20,["H7341"]],[20,23,["H4100"]],[23,26,["H753"]],[26,27,[]]]},{"k":22902,"v":[[0,2,["H2009"]],[2,4,["H4397"]],[4,6,["H1696"]],[6,10,["H3318"]],[10,12,["H312"]],[12,13,["H4397"]],[13,15,["H3318"]],[15,17,["H7125"]],[17,18,[]]]},{"k":22903,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H7323"]],[5,6,["H1696"]],[6,7,["H413"]],[7,8,["H1975"]],[8,10,["H5288"]],[10,11,["H559"]],[11,12,["H3389"]],[12,15,["H3427"]],[15,19,["H6519"]],[19,22,["H4480","H7230"]],[22,24,["H120"]],[24,26,["H929"]],[26,27,["H8432"]]]},{"k":22904,"v":[[0,2,["H589"]],[2,3,["H5002"]],[3,5,["H3068"]],[5,7,["H1961"]],[7,11,["H2346"]],[11,13,["H784"]],[13,15,["H5439"]],[15,18,["H1961"]],[18,20,["H3519"]],[20,23,["H8432"]],[23,25,[]]]},{"k":22905,"v":[[0,1,["H1945"]],[1,2,["H1945"]],[2,6,["H5127"]],[6,9,["H4480","H776"]],[9,12,["H6828"]],[12,13,["H5002"]],[13,15,["H3068"]],[15,16,["H3588"]],[16,21,["H6566","(H853)"]],[21,24,["H702"]],[24,25,["H7307"]],[25,28,["H8064"]],[28,29,["H5002"]],[29,31,["H3068"]]]},{"k":22906,"v":[[0,2,["H4422"]],[2,3,["H1945"]],[3,4,["H6726"]],[4,6,["H3427"]],[6,9,["H1323"]],[9,11,["H894"]]]},{"k":22907,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,8,["H310"]],[8,10,["H3519"]],[10,13,["H7971"]],[13,15,["H413"]],[15,17,["H1471"]],[17,19,["H7997"]],[19,21,["H3588"]],[21,24,["H5060"]],[24,26,["H5060"]],[26,28,["H892"]],[28,31,["H5869"]]]},{"k":22908,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,5,["H5130","(H853)"]],[5,7,["H3027"]],[7,8,["H5921"]],[8,13,["H1961"]],[13,15,["H7998"]],[15,18,["H5650"]],[18,22,["H3045"]],[22,23,["H3588"]],[23,25,["H3068"]],[25,27,["H6635"]],[27,29,["H7971"]],[29,30,[]]]},{"k":22909,"v":[[0,1,["H7442"]],[1,3,["H8055"]],[3,5,["H1323"]],[5,7,["H6726"]],[7,8,["H3588"]],[8,9,["H2009"]],[9,11,["H935"]],[11,15,["H7931"]],[15,18,["H8432"]],[18,21,["H5002"]],[21,23,["H3068"]]]},{"k":22910,"v":[[0,2,["H7227"]],[2,3,["H1471"]],[3,6,["H3867"]],[6,7,["H413"]],[7,9,["H3068"]],[9,11,["H1931"]],[11,12,["H3117"]],[12,15,["H1961"]],[15,17,["H5971"]],[17,21,["H7931"]],[21,24,["H8432"]],[24,30,["H3045"]],[30,31,["H3588"]],[31,33,["H3068"]],[33,35,["H6635"]],[35,37,["H7971"]],[37,39,["H413"]],[39,40,[]]]},{"k":22911,"v":[[0,3,["H3068"]],[3,5,["H5157","(H853)"]],[5,6,["H3063"]],[6,8,["H2506"]],[8,9,["H5921"]],[9,11,["H6944"]],[11,12,["H127"]],[12,15,["H977"]],[15,16,["H3389"]],[16,17,["H5750"]]]},{"k":22912,"v":[[0,2,["H2013"]],[2,4,["H3605"]],[4,5,["H1320"]],[5,6,["H4480","H6440"]],[6,8,["H3068"]],[8,9,["H3588"]],[9,13,["H5782"]],[13,17,["H6944"]],[17,18,["H4480","H4583"]]]},{"k":22913,"v":[[0,3,["H7200"]],[3,4,["(H853)"]],[4,5,["H3091"]],[5,7,["H1419"]],[7,8,["H3548"]],[8,9,["H5975"]],[9,10,["H6440"]],[10,12,["H4397"]],[12,15,["H3068"]],[15,17,["H7854"]],[17,18,["H5975"]],[18,19,["H5921"]],[19,22,["H3225"]],[22,24,["H7853"]],[24,25,[]]]},{"k":22914,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H7854"]],[6,8,["H3068"]],[8,9,["H1605"]],[9,12,["H7854"]],[12,15,["H3068"]],[15,18,["H977"]],[18,19,["H3389"]],[19,20,["H1605"]],[20,23,["H3808"]],[23,24,["H2088"]],[24,26,["H181"]],[26,27,["H5337"]],[27,31,["H4480","H784"]]]},{"k":22915,"v":[[0,2,["H3091"]],[2,3,["H1961"]],[3,4,["H3847"]],[4,6,["H6674"]],[6,7,["H899"]],[7,9,["H5975"]],[9,10,["H6440"]],[10,12,["H4397"]]]},{"k":22916,"v":[[0,3,["H6030"]],[3,5,["H559"]],[5,6,["H413"]],[6,9,["H5975"]],[9,10,["H6440"]],[10,12,["H559"]],[12,14,["H5493"]],[14,16,["H6674"]],[16,17,["H899"]],[17,18,["H4480","H5921"]],[18,21,["H413"]],[21,24,["H559"]],[24,25,["H7200"]],[25,30,["H5771"]],[30,32,["H5674"]],[32,33,["H4480","H5921"]],[33,38,["H3847"]],[38,43,["H4254"]]]},{"k":22917,"v":[[0,3,["H559"]],[3,6,["H7760"]],[6,8,["H2889"]],[8,9,["H6797"]],[9,10,["H5921"]],[10,12,["H7218"]],[12,15,["H7760"]],[15,17,["H2889"]],[17,18,["H6797"]],[18,19,["H5921"]],[19,21,["H7218"]],[21,23,["H3847"]],[23,26,["H899"]],[26,29,["H4397"]],[29,32,["H3068"]],[32,34,["H5975"]]]},{"k":22918,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H5749"]],[7,9,["H3091"]],[9,10,["H559"]]]},{"k":22919,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H518"]],[7,10,["H1980"]],[10,13,["H1870"]],[13,15,["H518"]],[15,18,["H8104","(H853)"]],[18,20,["H4931"]],[20,22,["H859"]],[22,24,["H1571"]],[24,25,["H1777","(H853)"]],[25,27,["H1004"]],[27,30,["H1571"]],[30,31,["H8104"]],[31,32,["(H853)"]],[32,33,["H2691"]],[33,37,["H5414"]],[37,41,["H4108"]],[41,42,["H996"]],[42,43,["H428"]],[43,45,["H5975"]],[45,46,[]]]},{"k":22920,"v":[[0,1,["H8085"]],[1,2,["H4994"]],[2,4,["H3091"]],[4,6,["H1419"]],[6,7,["H3548"]],[7,8,["H859"]],[8,11,["H7453"]],[11,13,["H3427"]],[13,14,["H6440"]],[14,16,["H3588"]],[16,17,["H1992"]],[17,19,["H376"]],[19,20,["H4159"]],[20,22,["H3588"]],[22,23,["H2009"]],[23,27,["H935","(H853)"]],[27,29,["H5650"]],[29,31,["H6780"]]]},{"k":22921,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H68"]],[4,5,["H834"]],[5,8,["H5414"]],[8,9,["H6440"]],[9,10,["H3091"]],[10,11,["H5921"]],[11,12,["H259"]],[12,13,["H68"]],[13,16,["H7651"]],[16,17,["H5869"]],[17,18,["H2009"]],[18,21,["H6605"]],[21,23,["H6603"]],[23,25,["H5002"]],[25,27,["H3068"]],[27,29,["H6635"]],[29,33,["H4185","(H853)"]],[33,35,["H5771"]],[35,37,["H1931"]],[37,38,["H776"]],[38,40,["H259"]],[40,41,["H3117"]]]},{"k":22922,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,4,["H5002"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,11,["H7121"]],[11,13,["H376"]],[13,15,["H7453"]],[15,16,["H413","H8478"]],[16,18,["H1612"]],[18,20,["H413","H8478"]],[20,23,["H8384"]]]},{"k":22923,"v":[[0,3,["H4397"]],[3,5,["H1696"]],[5,9,["H7725"]],[9,11,["H5782"]],[11,15,["H376"]],[15,16,["H834"]],[16,18,["H5782"]],[18,22,["H4480","H8142"]]]},{"k":22924,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H4100"]],[5,6,["H7200"]],[6,7,["H859"]],[7,10,["H559"]],[10,13,["H7200"]],[13,15,["H2009"]],[15,17,["H4501"]],[17,18,["H3605"]],[18,20,["H2091"]],[20,23,["H1543"]],[23,24,["H5921"]],[24,26,["H7218"]],[26,31,["H7651"]],[31,32,["H5216"]],[32,33,["H5921"]],[33,35,["H7651"]],[35,36,["H4166"]],[36,39,["H7651"]],[39,40,["H5216"]],[40,41,["H834"]],[41,43,["H5921"]],[43,45,["H7218"]],[45,46,[]]]},{"k":22925,"v":[[0,2,["H8147"]],[2,4,["H2132"]],[4,5,["H5921"]],[5,7,["H259"]],[7,10,["H4480","H3225"]],[10,14,["H1543"]],[14,17,["H259"]],[17,18,["H5921"]],[18,20,["H8040"]],[20,22,[]]]},{"k":22926,"v":[[0,3,["H6030"]],[3,5,["H559"]],[5,6,["H413"]],[6,8,["H4397"]],[8,10,["H1696"]],[10,13,["H559"]],[13,14,["H4100"]],[14,16,["H428"]],[16,18,["H113"]]]},{"k":22927,"v":[[0,3,["H4397"]],[3,5,["H1696"]],[5,8,["H6030"]],[8,10,["H559"]],[10,11,["H413"]],[11,13,["H3045"]],[13,15,["H3808"]],[15,16,["H4100"]],[16,17,["H428"]],[17,21,["H559"]],[21,22,["H3808"]],[22,24,["H113"]]]},{"k":22928,"v":[[0,3,["H6030"]],[3,5,["H559"]],[5,6,["H413"]],[6,8,["H559"]],[8,9,["H2088"]],[9,12,["H1697"]],[12,15,["H3068"]],[15,16,["H413"]],[16,17,["H2216"]],[17,18,["H559"]],[18,19,["H3808"]],[19,21,["H2428"]],[21,22,["H3808"]],[22,24,["H3581"]],[24,25,["H3588","H518"]],[25,28,["H7307"]],[28,29,["H559"]],[29,31,["H3068"]],[31,33,["H6635"]]]},{"k":22929,"v":[[0,1,["H4310"]],[1,3,["H859"]],[3,5,["H1419"]],[5,6,["H2022"]],[6,7,["H6440"]],[7,8,["H2216"]],[8,13,["H4334"]],[13,18,["H3318","(H853)"]],[18,20,["H68","H7222"]],[20,23,["H8663"]],[23,25,["H2580"]],[25,26,["H2580"]],[26,28,[]]]},{"k":22930,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":22931,"v":[[0,2,["H3027"]],[2,4,["H2216"]],[4,8,["H3245"]],[8,10,["H2088"]],[10,11,["H1004"]],[11,13,["H3027"]],[13,16,["H1214"]],[16,21,["H3045"]],[21,22,["H3588"]],[22,24,["H3068"]],[24,26,["H6635"]],[26,28,["H7971"]],[28,30,["H413"]],[30,31,[]]]},{"k":22932,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,4,["H936"]],[4,6,["H3117"]],[6,9,["H6996"]],[9,13,["H8055"]],[13,16,["H7200","(H853)"]],[16,18,["H68","H913"]],[18,21,["H3027"]],[21,23,["H2216"]],[23,25,["H428"]],[25,26,["H7651"]],[26,27,["H1992"]],[27,30,["H5869"]],[30,33,["H3068"]],[33,38,["H7751"]],[38,41,["H3605"]],[41,42,["H776"]]]},{"k":22933,"v":[[0,2,["H6030"]],[2,5,["H559"]],[5,6,["H413"]],[6,8,["H4100"]],[8,10,["H428"]],[10,11,["H8147"]],[11,13,["H2132"]],[13,14,["H5921"]],[14,16,["H3225"]],[16,20,["H4501"]],[20,22,["H5921"]],[22,24,["H8040"]],[24,26,[]]]},{"k":22934,"v":[[0,3,["H6030"]],[3,4,["H8145"]],[4,6,["H559"]],[6,7,["H413"]],[7,9,["H4100"]],[9,12,["H8147"]],[12,13,["H2132"]],[13,14,["H7641"]],[14,15,["H834"]],[15,16,["H3027"]],[16,18,["H8147"]],[18,19,["H2091"]],[19,20,["H6804"]],[20,21,["H7324"]],[21,23,["H2091"]],[23,26,["H4480","H5921"]],[26,27,[]]]},{"k":22935,"v":[[0,3,["H559","H413"]],[3,6,["H559"]],[6,7,["H3045"]],[7,9,["H3808"]],[9,10,["H4100"]],[10,11,["H428"]],[11,15,["H559"]],[15,16,["H3808"]],[16,18,["H113"]]]},{"k":22936,"v":[[0,2,["H559"]],[2,4,["H428"]],[4,7,["H8147"]],[7,9,["H1121","H3323"]],[9,11,["H5975"]],[11,12,["H5921"]],[12,14,["H113"]],[14,17,["H3605"]],[17,18,["H776"]]]},{"k":22937,"v":[[0,3,["H7725"]],[3,6,["H5375"]],[6,8,["H5869"]],[8,10,["H7200"]],[10,12,["H2009"]],[12,14,["H5774"]],[14,15,["H4039"]]]},{"k":22938,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H4100"]],[6,7,["H7200"]],[7,8,["H859"]],[8,11,["H559"]],[11,12,["H589"]],[12,13,["H7200"]],[13,15,["H5774"]],[15,16,["H4039"]],[16,18,["H753"]],[18,21,["H6242"]],[21,22,["H520"]],[22,25,["H7341"]],[25,27,["H6235"]],[27,28,["H520"]]]},{"k":22939,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H2063"]],[6,9,["H423"]],[9,12,["H3318"]],[12,13,["H5921"]],[13,15,["H6440"]],[15,18,["H3605"]],[18,19,["H776"]],[19,20,["H3588"]],[20,22,["H3605"]],[22,24,["H1589"]],[24,28,["H5352"]],[28,32,["H4480","H2088"]],[32,35,["H3644"]],[35,37,["H3605"]],[37,40,["H7650"]],[40,44,["H5352"]],[44,48,["H4480","H2088"]],[48,51,["H3644"]]]},{"k":22940,"v":[[0,5,["H3318"]],[5,6,["H5002"]],[6,8,["H3068"]],[8,10,["H6635"]],[10,14,["H935"]],[14,15,["H413"]],[15,17,["H1004"]],[17,20,["H1590"]],[20,22,["H413"]],[22,24,["H1004"]],[24,28,["H7650"]],[28,29,["H8267"]],[29,32,["H8034"]],[32,36,["H3885"]],[36,39,["H8432"]],[39,42,["H1004"]],[42,45,["H3615"]],[45,49,["H6086"]],[49,53,["H68"]],[53,54,[]]]},{"k":22941,"v":[[0,3,["H4397"]],[3,5,["H1696"]],[5,9,["H3318"]],[9,11,["H559"]],[11,12,["H413"]],[12,15,["H5375"]],[15,16,["H4994"]],[16,18,["H5869"]],[18,20,["H7200"]],[20,21,["H4100"]],[21,23,["H2063"]],[23,26,["H3318"]]]},{"k":22942,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,6,["H1931"]],[6,9,["H559"]],[9,10,["H2063"]],[10,13,["H374"]],[13,16,["H3318"]],[16,18,["H559"]],[18,20,["H2063"]],[20,23,["H5869"]],[23,25,["H3605"]],[25,27,["H776"]]]},{"k":22943,"v":[[0,2,["H2009"]],[2,6,["H5375"]],[6,8,["H3603"]],[8,10,["H5777"]],[10,12,["H2063"]],[12,14,["H259"]],[14,15,["H802"]],[15,17,["H3427"]],[17,20,["H8432"]],[20,23,["H374"]]]},{"k":22944,"v":[[0,3,["H559"]],[3,4,["H2063"]],[4,6,["H7564"]],[6,9,["H7993"]],[9,11,["H413"]],[11,13,["H8432"]],[13,16,["H374"]],[16,19,["H7993","(H853)"]],[19,21,["H68"]],[21,23,["H5777"]],[23,24,["H413"]],[24,26,["H6310"]],[26,27,[]]]},{"k":22945,"v":[[0,4,["H5375"]],[4,6,["H5869"]],[6,8,["H7200"]],[8,10,["H2009"]],[10,13,["H3318"]],[13,14,["H8147"]],[14,15,["H802"]],[15,18,["H7307"]],[18,22,["H3671"]],[22,24,["H2007"]],[24,26,["H3671"]],[26,29,["H3671"]],[29,32,["H2624"]],[32,36,["H5375","(H853)"]],[36,38,["H374"]],[38,39,["H996"]],[39,41,["H776"]],[41,44,["H8064"]]]},{"k":22946,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H4397"]],[6,8,["H1696"]],[8,11,["H575"]],[11,13,["H1992"]],[13,14,["H1980","(H853)"]],[14,16,["H374"]]]},{"k":22947,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H1129"]],[7,10,["H1004"]],[10,13,["H776"]],[13,15,["H8152"]],[15,20,["H3559"]],[20,22,["H5117"]],[22,23,["H8033"]],[23,24,["H5921"]],[24,27,["H4369"]]]},{"k":22948,"v":[[0,3,["H7725"]],[3,6,["H5375"]],[6,8,["H5869"]],[8,10,["H7200"]],[10,12,["H2009"]],[12,17,["H3318","H702","H4818"]],[17,19,["H4480","H996"]],[19,20,["H8147"]],[20,21,["H2022"]],[21,24,["H2022"]],[24,26,["H2022"]],[26,28,["H5178"]]]},{"k":22949,"v":[[0,3,["H7223"]],[3,4,["H4818"]],[4,6,["H122"]],[6,7,["H5483"]],[7,11,["H8145"]],[11,12,["H4818"]],[12,13,["H7838"]],[13,14,["H5483"]]]},{"k":22950,"v":[[0,4,["H7992"]],[4,5,["H4818"]],[5,6,["H3836"]],[6,7,["H5483"]],[7,11,["H7243"]],[11,12,["H4818"]],[12,13,["H1261"]],[13,15,["H554"]],[15,16,["H5483"]]]},{"k":22951,"v":[[0,3,["H6030"]],[3,5,["H559"]],[5,6,["H413"]],[6,8,["H4397"]],[8,10,["H1696"]],[10,13,["H4100"]],[13,15,["H428"]],[15,17,["H113"]]]},{"k":22952,"v":[[0,3,["H4397"]],[3,4,["H6030"]],[4,6,["H559"]],[6,7,["H413"]],[7,9,["H428"]],[9,12,["H702"]],[12,13,["H7307"]],[13,16,["H8064"]],[16,19,["H3318"]],[19,21,["H4480","H3320"]],[21,22,["H5921"]],[22,24,["H113"]],[24,26,["H3605"]],[26,28,["H776"]]]},{"k":22953,"v":[[0,2,["H7838"]],[2,3,["H5483"]],[3,4,["H834"]],[4,8,["H3318"]],[8,9,["H413"]],[9,11,["H6828"]],[11,12,["H776"]],[12,15,["H3836"]],[15,17,["H3318"]],[17,18,["H413","H310"]],[18,22,["H1261"]],[22,24,["H3318"]],[24,25,["H413"]],[25,27,["H8486"]],[27,28,["H776"]]]},{"k":22954,"v":[[0,3,["H554"]],[3,5,["H3318"]],[5,7,["H1245"]],[7,9,["H1980"]],[9,16,["H1980"]],[16,19,["H776"]],[19,22,["H559"]],[22,25,["H1980"]],[25,29,["H1980"]],[29,32,["H776"]],[32,38,["H1980"]],[38,41,["H776"]]]},{"k":22955,"v":[[0,2,["H2199"]],[2,7,["H1696"]],[7,8,["H413"]],[8,10,["H559"]],[10,11,["H7200"]],[11,14,["H3318"]],[14,15,["H413"]],[15,17,["H6828"]],[17,18,["H776"]],[18,20,["H5117","(H853)"]],[20,22,["H7307"]],[22,25,["H6828"]],[25,26,["H776"]]]},{"k":22956,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":22957,"v":[[0,1,["H3947"]],[1,2,["H4480","H854"]],[2,6,["H1473"]],[6,9,["H4480","H2469"]],[9,10,["H4480","H854"]],[10,11,["H2900"]],[11,13,["H4480","H854"]],[13,14,["H3048"]],[14,15,["H834"]],[15,17,["H935"]],[17,19,["H4480","H894"]],[19,21,["H935"]],[21,22,["H859"]],[22,24,["H1931"]],[24,25,["H3117"]],[25,27,["H935"]],[27,30,["H1004"]],[30,32,["H2977"]],[32,34,["H1121"]],[34,36,["H6846"]]]},{"k":22958,"v":[[0,2,["H3947"]],[2,3,["H3701"]],[3,5,["H2091"]],[5,7,["H6213"]],[7,8,["H5850"]],[8,10,["H7760"]],[10,14,["H7218"]],[14,16,["H3091"]],[16,18,["H1121"]],[18,20,["H3087"]],[20,22,["H1419"]],[22,23,["H3548"]]]},{"k":22959,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H559"]],[5,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,11,["H6635"]],[11,12,["H559"]],[12,13,["H2009"]],[13,15,["H376"]],[15,17,["H8034"]],[17,20,["H6780"]],[20,25,["H6779"]],[25,29,["H4480","H8478"]],[29,33,["H1129","(H853)"]],[33,35,["H1964"]],[35,38,["H3068"]]]},{"k":22960,"v":[[0,2,["H1931"]],[2,4,["H1129","(H853)"]],[4,6,["H1964"]],[6,9,["H3068"]],[9,11,["H1931"]],[11,13,["H5375"]],[13,15,["H1935"]],[15,18,["H3427"]],[18,20,["H4910"]],[20,21,["H5921"]],[21,23,["H3678"]],[23,27,["H1961"]],[27,29,["H3548"]],[29,30,["H5921"]],[30,32,["H3678"]],[32,35,["H6098"]],[35,37,["H7965"]],[37,39,["H1961"]],[39,40,["H996"]],[40,42,["H8147"]]]},{"k":22961,"v":[[0,3,["H5850"]],[3,5,["H1961"]],[5,7,["H2494"]],[7,10,["H2900"]],[10,13,["H3048"]],[13,16,["H2581"]],[16,18,["H1121"]],[18,20,["H6846"]],[20,23,["H2146"]],[23,26,["H1964"]],[26,29,["H3068"]]]},{"k":22962,"v":[[0,6,["H7350"]],[6,8,["H935"]],[8,10,["H1129"]],[10,13,["H1964"]],[13,16,["H3068"]],[16,20,["H3045"]],[20,21,["H3588"]],[21,23,["H3068"]],[23,25,["H6635"]],[25,27,["H7971"]],[27,29,["H413"]],[29,36,["H1961"]],[36,37,["H518"]],[37,41,["H8085","H8085"]],[41,43,["H6963"]],[43,46,["H3068"]],[46,48,["H430"]]]},{"k":22963,"v":[[0,5,["H1961"]],[5,8,["H702"]],[8,9,["H8141"]],[9,11,["H4428"]],[11,12,["H1867"]],[12,15,["H1697"]],[15,18,["H3068"]],[18,19,["H1961"]],[19,20,["H413"]],[20,21,["H2148"]],[21,24,["H702"]],[24,28,["H8671"]],[28,29,["H2320"]],[29,32,["H3691"]]]},{"k":22964,"v":[[0,4,["H7971"]],[4,9,["H1008"]],[9,10,["H8272"]],[10,12,["H7278"]],[12,15,["H376"]],[15,17,["H2470","(H853)"]],[17,18,["H6440"]],[18,20,["H3068"]]]},{"k":22965,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3548"]],[6,7,["H834"]],[7,11,["H1004"]],[11,14,["H3068"]],[14,16,["H6635"]],[16,18,["H413"]],[18,20,["H5030"]],[20,21,["H559"]],[21,24,["H1058"]],[24,27,["H2549"]],[27,28,["H2320"]],[28,30,["H5144"]],[30,31,["H834"]],[31,34,["H6213"]],[34,35,["H2088"]],[35,37,["H4100"]],[37,38,["H8141"]]]},{"k":22966,"v":[[0,2,["H1961"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,9,["H6635"]],[9,10,["H413"]],[10,12,["H559"]]]},{"k":22967,"v":[[0,1,["H559"]],[1,2,["H413"]],[2,3,["H3605"]],[3,5,["H5971"]],[5,8,["H776"]],[8,10,["H413"]],[10,12,["H3548"]],[12,13,["H559"]],[13,14,["H3588"]],[14,16,["H6684"]],[16,18,["H5594"]],[18,21,["H2549"]],[21,23,["H7637"]],[23,26,["H2088"]],[26,27,["H7657"]],[27,28,["H8141"]],[28,33,["H6684","H6684"]],[33,38,["H589"]]]},{"k":22968,"v":[[0,2,["H3588"]],[2,5,["H398"]],[5,7,["H3588"]],[7,10,["H8354"]],[10,12,["H3808"]],[12,13,["H859"]],[13,14,["H398"]],[14,18,["H8354"]],[18,20,[]]]},{"k":22969,"v":[[0,3,["H3808"]],[3,4,["(H853)"]],[4,6,["H1697"]],[6,7,["H834"]],[7,9,["H3068"]],[9,11,["H7121"]],[11,12,["H3027"]],[12,14,["H7223"]],[14,15,["H5030"]],[15,17,["H3389"]],[17,18,["H1961"]],[18,19,["H3427"]],[19,22,["H7961"]],[22,25,["H5892"]],[25,28,["H5439"]],[28,32,["H3427"]],[32,34,["H5045"]],[34,37,["H8219"]]]},{"k":22970,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H2148"]],[9,10,["H559"]]]},{"k":22971,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H559"]],[7,8,["H8199"]],[8,9,["H571"]],[9,10,["H4941"]],[10,12,["H6213"]],[12,13,["H2617"]],[13,15,["H7356"]],[15,17,["H376"]],[17,18,["H854"]],[18,20,["H251"]]]},{"k":22972,"v":[[0,2,["H6231"]],[2,3,["H408"]],[3,5,["H490"]],[5,8,["H3490"]],[8,10,["H1616"]],[10,13,["H6041"]],[13,16,["H408"]],[16,19,["H2803"]],[19,20,["H7451","H376"]],[20,23,["H251"]],[23,26,["H3824"]]]},{"k":22973,"v":[[0,3,["H3985"]],[3,5,["H7181"]],[5,7,["H5414"]],[7,8,["H5637"]],[8,10,["H3802"]],[10,12,["H3513"]],[12,14,["H241"]],[14,19,["H4480","H8085"]]]},{"k":22974,"v":[[0,3,["H7760"]],[3,5,["H3820"]],[5,9,["H8068"]],[9,13,["H4480","H8085"]],[13,14,["(H853)"]],[14,15,["H8451"]],[15,18,["H1697"]],[18,19,["H834"]],[19,21,["H3068"]],[21,23,["H6635"]],[23,25,["H7971"]],[25,28,["H7307"]],[28,29,["H3027"]],[29,31,["H7223"]],[31,32,["H5030"]],[32,34,["H1961"]],[34,36,["H1419"]],[36,37,["H7110"]],[37,38,["H4480","H854"]],[38,40,["H3068"]],[40,42,["H6635"]]]},{"k":22975,"v":[[0,6,["H1961"]],[6,8,["H834"]],[8,10,["H7121"]],[10,14,["H3808"]],[14,15,["H8085"]],[15,16,["H3651"]],[16,18,["H7121"]],[18,22,["H3808"]],[22,23,["H8085"]],[23,24,["H559"]],[24,26,["H3068"]],[26,28,["H6635"]]]},{"k":22976,"v":[[0,7,["H5590"]],[7,8,["H5921"]],[8,9,["H3605"]],[9,11,["H1471"]],[11,12,["H834"]],[12,14,["H3045"]],[14,15,["H3808"]],[15,18,["H776"]],[18,20,["H8074"]],[20,21,["H310"]],[21,27,["H4480","H5674"]],[27,29,["H4480","H7725"]],[29,32,["H7760"]],[32,34,["H2532"]],[34,35,["H776"]],[35,36,["H8047"]]]},{"k":22977,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,8,["H6635"]],[8,9,["H1961"]],[9,12,["H559"]]]},{"k":22978,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,9,["H7065"]],[9,11,["H6726"]],[11,13,["H1419"]],[13,14,["H7068"]],[14,18,["H7065"]],[18,22,["H1419"]],[22,23,["H2534"]]]},{"k":22979,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,7,["H7725"]],[7,8,["H413"]],[8,9,["H6726"]],[9,12,["H7931"]],[12,15,["H8432"]],[15,17,["H3389"]],[17,19,["H3389"]],[19,22,["H7121"]],[22,24,["H5892"]],[24,26,["H571"]],[26,29,["H2022"]],[29,32,["H3068"]],[32,34,["H6635"]],[34,36,["H6944"]],[36,37,["H2022"]]]},{"k":22980,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,9,["H5750"]],[9,11,["H2205"]],[11,14,["H2205"]],[14,15,["H3427"]],[15,18,["H7339"]],[18,20,["H3389"]],[20,23,["H376"]],[23,26,["H4938"]],[26,29,["H3027"]],[29,31,["H4480","H7230"]],[31,32,["H3117"]]]},{"k":22981,"v":[[0,3,["H7339"]],[3,6,["H5892"]],[6,9,["H4390"]],[9,11,["H3206"]],[11,13,["H3207"]],[13,14,["H7832"]],[14,17,["H7339"]],[17,18,[]]]},{"k":22982,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H3588"]],[7,10,["H6381"]],[10,13,["H5869"]],[13,16,["H7611"]],[16,18,["H2088"]],[18,19,["H5971"]],[19,21,["H1992"]],[21,22,["H3117"]],[22,25,["H1571"]],[25,27,["H6381"]],[27,30,["H5869"]],[30,31,["H5002"]],[31,33,["H3068"]],[33,35,["H6635"]]]},{"k":22983,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H2009"]],[7,10,["H3467","(H853)"]],[10,12,["H5971"]],[12,15,["H4217"]],[15,16,["H4480","H776"]],[16,20,["H3996","H8121"]],[20,21,["H4480","H776"]]]},{"k":22984,"v":[[0,4,["H935"]],[4,9,["H7931"]],[9,12,["H8432"]],[12,14,["H3389"]],[14,18,["H1961"]],[18,20,["H5971"]],[20,22,["H589"]],[22,24,["H1961"]],[24,26,["H430"]],[26,28,["H571"]],[28,31,["H6666"]]]},{"k":22985,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,9,["H3027"]],[9,11,["H2388"]],[11,14,["H8085"]],[14,16,["H428"]],[16,17,["H3117","(H853)"]],[17,18,["H428"]],[18,19,["H1697"]],[19,22,["H4480","H6310"]],[22,25,["H5030"]],[25,26,["H834"]],[26,30,["H3117"]],[30,36,["H1004"]],[36,39,["H3068"]],[39,41,["H6635"]],[41,43,["H3245"]],[43,46,["H1964"]],[46,49,["H1129"]]]},{"k":22986,"v":[[0,1,["H3588"]],[1,2,["H6440"]],[2,3,["H1992"]],[3,4,["H3117"]],[4,6,["H1961"]],[6,7,["H3808"]],[7,8,["H7939"]],[8,10,["H120"]],[10,11,["H369"]],[11,13,["H7939"]],[13,15,["H929"]],[15,16,["H369"]],[16,20,["H7965"]],[20,25,["H3318"]],[25,28,["H935"]],[28,30,["H4480"]],[30,32,["H6862"]],[32,35,["H7971","(H853)"]],[35,36,["H3605"]],[36,37,["H120"]],[37,39,["H376"]],[39,42,["H7453"]]]},{"k":22987,"v":[[0,2,["H6258"]],[2,3,["H589"]],[3,5,["H3808"]],[5,9,["H7611"]],[9,11,["H2088"]],[11,12,["H5971"]],[12,16,["H7223"]],[16,17,["H3117"]],[17,18,["H5002"]],[18,20,["H3068"]],[20,22,["H6635"]]]},{"k":22988,"v":[[0,1,["H3588"]],[1,3,["H2233"]],[3,6,["H7965"]],[6,8,["H1612"]],[8,10,["H5414"]],[10,12,["H6529"]],[12,15,["H776"]],[15,17,["H5414","(H853)"]],[17,19,["H2981"]],[19,22,["H8064"]],[22,24,["H5414"]],[24,26,["H2919"]],[26,30,["(H853)"]],[30,32,["H7611"]],[32,34,["H2088"]],[34,35,["H5971"]],[35,37,["H5157","(H853)"]],[37,38,["H3605"]],[38,39,["H428"]],[39,40,[]]]},{"k":22989,"v":[[0,6,["H1961"]],[6,8,["H834"]],[8,10,["H1961"]],[10,12,["H7045"]],[12,15,["H1471"]],[15,17,["H1004"]],[17,19,["H3063"]],[19,21,["H1004"]],[21,23,["H3478"]],[23,24,["H3651"]],[24,27,["H3467"]],[27,32,["H1961"]],[32,34,["H1293"]],[34,35,["H3372"]],[35,36,["H408"]],[36,40,["H3027"]],[40,42,["H2388"]]]},{"k":22990,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,8,["H834"]],[8,10,["H2161"]],[10,12,["H7489"]],[12,16,["H1"]],[16,20,["H7107","(H853)"]],[20,21,["H559"]],[21,23,["H3068"]],[23,25,["H6635"]],[25,28,["H5162"]],[28,29,["H3808"]]]},{"k":22991,"v":[[0,1,["H3651"]],[1,2,["H7725"]],[2,5,["H2161"]],[5,7,["H428"]],[7,8,["H3117"]],[8,11,["H3190"]],[11,12,["(H853)"]],[12,13,["H3389"]],[13,17,["H1004"]],[17,19,["H3063"]],[19,20,["H3372"]],[20,22,["H408"]]]},{"k":22992,"v":[[0,1,["H428"]],[1,4,["H1697"]],[4,5,["H834"]],[5,8,["H6213"]],[8,9,["H1696"]],[9,12,["H376"]],[12,14,["H571"]],[14,15,["H854"]],[15,17,["H7453"]],[17,18,["H8199"]],[18,20,["H4941"]],[20,22,["H571"]],[22,24,["H7965"]],[24,27,["H8179"]]]},{"k":22993,"v":[[0,3,["H408","H376"]],[3,6,["H2803","(H853)"]],[6,7,["H7451"]],[7,10,["H3824"]],[10,13,["H7453"]],[13,15,["H157"]],[15,16,["H408"]],[16,17,["H8267"]],[17,18,["H7621"]],[18,19,["H3588","(H853)"]],[19,20,["H3605"]],[20,21,["H428"]],[21,24,["H834"]],[24,26,["H8130"]],[26,27,["H5002"]],[27,29,["H3068"]]]},{"k":22994,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,8,["H6635"]],[8,9,["H1961"]],[9,10,["H413"]],[10,12,["H559"]]]},{"k":22995,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H6685"]],[8,11,["H7243"]],[11,15,["H6685"]],[15,18,["H2549"]],[18,21,["H6685"]],[21,24,["H7637"]],[24,27,["H6685"]],[27,30,["H6224"]],[30,32,["H1961"]],[32,35,["H1004"]],[35,37,["H3063"]],[37,38,["H8342"]],[38,40,["H8057"]],[40,42,["H2896"]],[42,43,["H4150"]],[43,45,["H157"]],[45,47,["H571"]],[47,49,["H7965"]]]},{"k":22996,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,9,["H5750"]],[9,13,["H834"]],[13,16,["H935"]],[16,17,["H5971"]],[17,20,["H3427"]],[20,22,["H7227"]],[22,23,["H5892"]]]},{"k":22997,"v":[[0,3,["H3427"]],[3,5,["H259"]],[5,8,["H1980"]],[8,9,["H413"]],[9,10,["H259"]],[10,11,["H559"]],[11,15,["H1980","H1980"]],[15,17,["H2470","(H853)"]],[17,18,["H6440"]],[18,20,["H3068"]],[20,23,["H1245","(H853)"]],[23,25,["H3068"]],[25,27,["H6635"]],[27,28,["H589"]],[28,30,["H1980"]],[30,31,["H1571"]]]},{"k":22998,"v":[[0,2,["H7227"]],[2,3,["H5971"]],[3,5,["H6099"]],[5,6,["H1471"]],[6,8,["H935"]],[8,10,["H1245","(H853)"]],[10,12,["H3068"]],[12,14,["H6635"]],[14,16,["H3389"]],[16,19,["H2470","(H853)"]],[19,20,["H6440"]],[20,22,["H3068"]]]},{"k":22999,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H1992"]],[8,9,["H3117"]],[9,15,["H834"]],[15,16,["H6235"]],[16,17,["H376"]],[17,20,["H2388"]],[20,23,["H4480","H3605"]],[23,24,["H3956"]],[24,27,["H1471"]],[27,31,["H2388"]],[31,34,["H3671"]],[34,36,["H376"]],[36,40,["H3064"]],[40,41,["H559"]],[41,44,["H1980"]],[44,45,["H5973"]],[45,47,["H3588"]],[47,50,["H8085"]],[50,52,["H430"]],[52,54,["H5973"]],[54,55,[]]]},{"k":23000,"v":[[0,2,["H4853"]],[2,5,["H1697"]],[5,8,["H3068"]],[8,11,["H776"]],[11,13,["H2317"]],[13,15,["H1834"]],[15,19,["H4496"]],[19,21,["H3588"]],[21,23,["H5869"]],[23,25,["H120"]],[25,28,["H3605"]],[28,30,["H7626"]],[30,32,["H3478"]],[32,37,["H3068"]]]},{"k":23001,"v":[[0,2,["H2574"]],[2,3,["H1571"]],[3,5,["H1379"]],[5,7,["H6865"]],[7,9,["H6721"]],[9,10,["H3588"]],[10,13,["H3966"]],[13,14,["H2449"]]]},{"k":23002,"v":[[0,2,["H6865"]],[2,4,["H1129"]],[4,8,["H4692"]],[8,11,["H6651"]],[11,12,["H3701"]],[12,15,["H6083"]],[15,18,["H2742"]],[18,21,["H2916"]],[21,24,["H2351"]]]},{"k":23003,"v":[[0,1,["H2009"]],[1,3,["H136"]],[3,7,["H3423"]],[7,11,["H5221"]],[11,13,["H2428"]],[13,16,["H3220"]],[16,18,["H1931"]],[18,21,["H398"]],[21,23,["H784"]]]},{"k":23004,"v":[[0,1,["H831"]],[1,3,["H7200"]],[3,6,["H3372"]],[6,7,["H5804"]],[7,15,["H3966","H2342"]],[15,17,["H6138"]],[17,18,["H3588"]],[18,20,["H4007"]],[20,23,["H954"]],[23,26,["H4428"]],[26,28,["H6"]],[28,30,["H4480","H5804"]],[30,32,["H831"]],[32,34,["H3808"]],[34,36,["H3427"]]]},{"k":23005,"v":[[0,3,["H4464"]],[3,5,["H3427"]],[5,7,["H795"]],[7,12,["H3772"]],[12,14,["H1347"]],[14,17,["H6430"]]]},{"k":23006,"v":[[0,5,["H5493"]],[5,7,["H1818"]],[7,11,["H4480","H6310"]],[11,14,["H8251"]],[14,16,["H4480","H996"]],[16,18,["H8127"]],[18,22,["H7604"]],[22,23,["H1571"]],[23,24,["H1931"]],[24,29,["H430"]],[29,33,["H1961"]],[33,36,["H441"]],[36,38,["H3063"]],[38,40,["H6138"]],[40,43,["H2983"]]]},{"k":23007,"v":[[0,4,["H2583"]],[4,7,["H1004"]],[7,11,["H4675"]],[11,17,["H4480","H5674"]],[17,23,["H4480","H7725"]],[23,25,["H3808"]],[25,26,["H5065"]],[26,28,["H5674"]],[28,29,["H5921"]],[29,32,["H5750"]],[32,33,["H3588"]],[33,34,["H6258"]],[34,37,["H7200"]],[37,40,["H5869"]]]},{"k":23008,"v":[[0,1,["H1523"]],[1,2,["H3966"]],[2,4,["H1323"]],[4,6,["H6726"]],[6,7,["H7321"]],[7,9,["H1323"]],[9,11,["H3389"]],[11,12,["H2009"]],[12,14,["H4428"]],[14,15,["H935"]],[15,18,["H1931"]],[18,20,["H6662"]],[20,23,["H3467"]],[23,24,["H6041"]],[24,26,["H7392"]],[26,27,["H5921"]],[27,29,["H2543"]],[29,31,["H5921"]],[31,33,["H5895"]],[33,35,["H1121"]],[35,38,["H860"]]]},{"k":23009,"v":[[0,5,["H3772"]],[5,7,["H7393"]],[7,9,["H4480","H669"]],[9,12,["H5483"]],[12,14,["H4480","H3389"]],[14,17,["H4421"]],[17,18,["H7198"]],[18,22,["H3772"]],[22,26,["H1696"]],[26,27,["H7965"]],[27,30,["H1471"]],[30,33,["H4915"]],[33,37,["H4480","H3220"]],[37,39,["H5704"]],[39,40,["H3220"]],[40,44,["H4480","H5104"]],[44,46,["H5704"]],[46,48,["H657"]],[48,51,["H776"]]]},{"k":23010,"v":[[0,3,["H859"]],[3,4,["H1571"]],[4,7,["H1818"]],[7,10,["H1285"]],[10,14,["H7971"]],[14,16,["H615"]],[16,20,["H4480","H953"]],[20,23,["H369"]],[23,24,["H4325"]]]},{"k":23011,"v":[[0,1,["H7725"]],[1,6,["H1225"]],[6,8,["H615"]],[8,10,["H8615"]],[10,11,["H1571"]],[11,13,["H3117"]],[13,16,["H5046"]],[16,20,["H7725"]],[20,21,["H4932"]],[21,23,[]]]},{"k":23012,"v":[[0,1,["H3588"]],[1,4,["H1869"]],[4,5,["H3063"]],[5,8,["H4390"]],[8,10,["H7198"]],[10,12,["H669"]],[12,14,["H5782"]],[14,17,["H1121"]],[17,19,["H6726"]],[19,20,["H5921"]],[20,22,["H1121"]],[22,24,["H3120"]],[24,26,["H7760"]],[26,30,["H2719"]],[30,34,["H1368"]]]},{"k":23013,"v":[[0,3,["H3068"]],[3,6,["H7200"]],[6,7,["H5921"]],[7,11,["H2671"]],[11,14,["H3318"]],[14,17,["H1300"]],[17,20,["H136"]],[20,21,["H3069"]],[21,23,["H8628"]],[23,25,["H7782"]],[25,28,["H1980"]],[28,30,["H5591"]],[30,33,["H8486"]]]},{"k":23014,"v":[[0,2,["H3068"]],[2,4,["H6635"]],[4,6,["H1598","H5921"]],[6,11,["H398"]],[11,13,["H3533"]],[13,16,["H7050","H68"]],[16,20,["H8354"]],[20,24,["H1993"]],[24,26,["H3644"]],[26,27,["H3196"]],[27,32,["H4390"]],[32,34,["H4219"]],[34,38,["H2106"]],[38,41,["H4196"]]]},{"k":23015,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,7,["H3467"]],[7,10,["H1931"]],[10,11,["H3117"]],[11,14,["H6629"]],[14,17,["H5971"]],[17,18,["H3588"]],[18,24,["H68"]],[24,27,["H5145"]],[27,32,["H5264"]],[32,33,["H5921"]],[33,35,["H127"]]]},{"k":23016,"v":[[0,1,["H3588"]],[1,2,["H4100"]],[2,6,["H2898"]],[6,8,["H4100"]],[8,12,["H3308"]],[12,13,["H1715"]],[13,18,["H970"]],[18,19,["H5107"]],[19,22,["H8492"]],[22,24,["H1330"]]]},{"k":23017,"v":[[0,1,["H7592"]],[1,5,["H4480","H3068"]],[5,6,["H4306"]],[6,9,["H6256"]],[9,13,["H4456"]],[13,16,["H3068"]],[16,18,["H6213"]],[18,20,["H2385"]],[20,22,["H5414"]],[22,24,["H1653"]],[24,26,["H4306"]],[26,29,["H376"]],[29,30,["H6212"]],[30,33,["H7704"]]]},{"k":23018,"v":[[0,1,["H3588"]],[1,3,["H8655"]],[3,5,["H1696"]],[5,6,["H205"]],[6,9,["H7080"]],[9,11,["H2372"]],[11,13,["H8267"]],[13,16,["H1696"]],[16,17,["H7723"]],[17,18,["H2472"]],[18,20,["H5162"]],[20,22,["H1892"]],[22,23,["H5921","H3651"]],[23,27,["H5265"]],[27,28,["H3644"]],[28,30,["H6629"]],[30,33,["H6031"]],[33,34,["H3588"]],[34,37,["H369"]],[37,38,["H7462"]]]},{"k":23019,"v":[[0,2,["H639"]],[2,4,["H2734"]],[4,5,["H5921"]],[5,7,["H7462"]],[7,10,["H6485","H5921"]],[10,12,["H6260"]],[12,13,["H3588"]],[13,15,["H3068"]],[15,17,["H6635"]],[17,19,["H6485","(H853)"]],[19,21,["H5739","(H853)"]],[21,23,["H1004"]],[23,25,["H3063"]],[25,28,["H7760"]],[28,32,["H1935"]],[32,33,["H5483"]],[33,36,["H4421"]]]},{"k":23020,"v":[[0,2,["H4480"]],[2,5,["H3318"]],[5,7,["H6438"]],[7,9,["H4480"]],[9,12,["H3489"]],[12,14,["H4480"]],[14,17,["H4421"]],[17,18,["H7198"]],[18,20,["H4480"]],[20,22,["H3605"]],[22,23,["H5065"]],[23,24,["H3162"]]]},{"k":23021,"v":[[0,4,["H1961"]],[4,6,["H1368"]],[6,10,["H947"]],[10,15,["H2916"]],[15,18,["H2351"]],[18,21,["H4421"]],[21,25,["H3898"]],[25,26,["H3588"]],[26,28,["H3068"]],[28,30,["H5973"]],[30,34,["H7392"]],[34,36,["H5483"]],[36,39,["H954"]]]},{"k":23022,"v":[[0,4,["H1396","(H853)"]],[4,6,["H1004"]],[6,8,["H3063"]],[8,12,["H3467"]],[12,14,["H1004"]],[14,16,["H3130"]],[16,22,["H7725"]],[22,26,["H3588"]],[26,30,["H7355"]],[30,35,["H1961"]],[35,37,["H834"]],[37,40,["H3808"]],[40,43,["H2186"]],[43,44,["H3588"]],[44,45,["H589"]],[45,48,["H3068"]],[48,50,["H430"]],[50,53,["H6030"]],[53,54,[]]]},{"k":23023,"v":[[0,4,["H669"]],[4,6,["H1961"]],[6,9,["H1368"]],[9,13,["H3820"]],[13,15,["H8055"]],[15,17,["H3644"]],[17,18,["H3196"]],[18,21,["H1121"]],[21,23,["H7200"]],[23,27,["H8055"]],[27,29,["H3820"]],[29,31,["H1523"]],[31,34,["H3068"]]]},{"k":23024,"v":[[0,3,["H8319"]],[3,7,["H6908"]],[7,9,["H3588"]],[9,12,["H6299"]],[12,17,["H7235"]],[17,18,["H3644"]],[18,21,["H7235"]]]},{"k":23025,"v":[[0,4,["H2232"]],[4,8,["H5971"]],[8,12,["H2142"]],[12,16,["H4801"]],[16,20,["H2421"]],[20,21,["H854"]],[21,23,["H1121"]],[23,26,["H7725"]]]},{"k":23026,"v":[[0,5,["H7725"]],[5,10,["H4480","H776"]],[10,12,["H4714"]],[12,14,["H6908"]],[14,18,["H4480","H804"]],[18,22,["H935"]],[22,24,["H413"]],[24,26,["H776"]],[26,28,["H1568"]],[28,30,["H3844"]],[30,34,["H3808"]],[34,36,["H4672"]],[36,38,[]]]},{"k":23027,"v":[[0,4,["H5674"]],[4,7,["H3220"]],[7,9,["H6869"]],[9,12,["H5221"]],[12,14,["H1530"]],[14,17,["H3220"]],[17,19,["H3605"]],[19,21,["H4688"]],[21,24,["H2975"]],[24,27,["H3001"]],[27,30,["H1347"]],[30,32,["H804"]],[32,36,["H3381"]],[36,39,["H7626"]],[39,41,["H4714"]],[41,44,["H5493"]]]},{"k":23028,"v":[[0,4,["H1396"]],[4,8,["H3068"]],[8,15,["H1980"]],[15,18,["H8034"]],[18,19,["H5002"]],[19,21,["H3068"]]]},{"k":23029,"v":[[0,1,["H6605"]],[1,3,["H1817"]],[3,5,["H3844"]],[5,8,["H784"]],[8,10,["H398"]],[10,12,["H730"]]]},{"k":23030,"v":[[0,1,["H3213"]],[1,3,["H1265"]],[3,4,["H3588"]],[4,6,["H730"]],[6,8,["H5307"]],[8,9,["H834"]],[9,11,["H117"]],[11,13,["H7703"]],[13,14,["H3213"]],[14,17,["H437"]],[17,19,["H1316"]],[19,20,["H3588"]],[20,22,["H3293"]],[22,25,["H1208"]],[25,28,["H3381"]]]},{"k":23031,"v":[[0,4,["H6963"]],[4,7,["H3215"]],[7,10,["H7462"]],[10,11,["H3588"]],[11,13,["H155"]],[13,15,["H7703"]],[15,17,["H6963"]],[17,20,["H7581"]],[20,23,["H3715"]],[23,24,["H3588"]],[24,26,["H1347"]],[26,28,["H3383"]],[28,30,["H7703"]]]},{"k":23032,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H430"]],[6,7,["H7462","(H853)"]],[7,9,["H6629"]],[9,12,["H2028"]]]},{"k":23033,"v":[[0,1,["H834"]],[1,2,["H7069"]],[2,3,["H2026"]],[3,9,["H816","H3808"]],[9,13,["H4376"]],[13,15,["H559"]],[15,16,["H1288"]],[16,19,["H3068"]],[19,23,["H6238"]],[23,27,["H7462"]],[27,28,["H2550","H5921"]],[28,30,["H3808"]]]},{"k":23034,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H5750"]],[5,6,["H2550","H5921"]],[6,8,["H3427"]],[8,11,["H776"]],[11,12,["H5002"]],[12,14,["H3068"]],[14,16,["H2009"]],[16,17,["H595"]],[17,19,["H4672","(H853)"]],[19,21,["H120"]],[21,23,["H376"]],[23,26,["H7453"]],[26,27,["H3027"]],[27,31,["H3027"]],[31,34,["H4428"]],[34,38,["H3807","(H853)"]],[38,40,["H776"]],[40,45,["H4480","H3027"]],[45,48,["H3808"]],[48,49,["H5337"]],[49,50,[]]]},{"k":23035,"v":[[0,4,["H7462","(H853)"]],[4,6,["H6629"]],[6,8,["H2028"]],[8,12,["H6041"]],[12,15,["H6629"]],[15,18,["H3947"]],[18,21,["H8147"]],[21,22,["H4731"]],[22,24,["H259"]],[24,26,["H7121"]],[26,27,["H5278"]],[27,30,["H259"]],[30,32,["H7121"]],[32,33,["H2256"]],[33,36,["H7462","(H853)"]],[36,38,["H6629"]]]},{"k":23036,"v":[[0,0,["(H853)"]],[0,1,["H7969"]],[1,2,["H7462"]],[2,6,["H3582"]],[6,8,["H259"]],[8,9,["H3391"]],[9,12,["H5315"]],[12,13,["H7114"]],[13,17,["H5315"]],[17,18,["H1571"]],[18,19,["H973"]],[19,20,[]]]},{"k":23037,"v":[[0,2,["H559"]],[2,6,["H3808"]],[6,7,["H7462"]],[7,11,["H4191"]],[11,14,["H4191"]],[14,22,["H3582"]],[22,27,["H3582"]],[27,31,["H7604"]],[31,32,["H398"]],[32,34,["H802","(H853)"]],[34,36,["H1320"]],[36,38,["H7468"]]]},{"k":23038,"v":[[0,3,["H3947","(H853)"]],[3,5,["H4731"]],[5,6,["(H853)"]],[6,7,["H5278"]],[7,11,["H1438","(H853)"]],[11,15,["H6565","(H853)"]],[15,17,["H1285"]],[17,18,["H834"]],[18,21,["H3772"]],[21,22,["H854"]],[22,23,["H3605"]],[23,25,["H5971"]]]},{"k":23039,"v":[[0,4,["H6565"]],[4,6,["H1931"]],[6,7,["H3117"]],[7,9,["H3651"]],[9,11,["H6041"]],[11,14,["H6629"]],[14,17,["H8104"]],[17,19,["H3045"]],[19,20,["H3588"]],[20,21,["H1931"]],[21,24,["H1697"]],[24,27,["H3068"]]]},{"k":23040,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H518"]],[6,9,["H2895","H5869"]],[9,10,["H3051"]],[10,13,["H7939"]],[13,15,["H518"]],[15,16,["H3808"]],[16,17,["H2308"]],[17,21,["H8254","(H853)"]],[21,23,["H7939"]],[23,24,["H7970"]],[24,27,["H3701"]]]},{"k":23041,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H7993"]],[7,9,["H413"]],[9,11,["H3335"]],[11,13,["H145"]],[13,14,["H3366"]],[14,15,["H834"]],[15,19,["H3365"]],[19,20,["H4480","H5921"]],[20,24,["H3947"]],[24,26,["H7970"]],[26,29,["H3701"]],[29,31,["H7993"]],[31,33,["H413"]],[33,35,["H3335"]],[35,38,["H1004"]],[38,41,["H3068"]]]},{"k":23042,"v":[[0,4,["H1438","(H853)"]],[4,6,["H8145"]],[6,7,["H4731","(H853)"]],[7,9,["H2256"]],[9,13,["H6565","(H853)"]],[13,15,["H264"]],[15,16,["H996"]],[16,17,["H3063"]],[17,19,["H3478"]]]},{"k":23043,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H3947"]],[7,10,["H5750"]],[10,12,["H3627"]],[12,15,["H196"]],[15,16,["H7462"]]]},{"k":23044,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,3,["H595"]],[3,5,["H6965"]],[5,8,["H7462"]],[8,11,["H776"]],[11,14,["H3808"]],[14,15,["H6485"]],[15,20,["H3582"]],[20,21,["H3808"]],[21,23,["H1245"]],[23,26,["H5289"]],[26,27,["H3808"]],[27,28,["H7495"]],[28,32,["H7665"]],[32,33,["H3808"]],[33,34,["H3557"]],[34,38,["H5324"]],[38,42,["H398"]],[42,44,["H1320"]],[44,47,["H1277"]],[47,53,["H6561","H6541"]]]},{"k":23045,"v":[[0,1,["H1945"]],[1,4,["H457"]],[4,5,["H7473"]],[5,7,["H5800"]],[7,9,["H6629"]],[9,11,["H2719"]],[11,14,["H5921"]],[14,16,["H2220"]],[16,18,["H5921"]],[18,20,["H3225"]],[20,21,["H5869"]],[21,23,["H2220"]],[23,28,["H3001","H3001"]],[28,31,["H3225"]],[31,32,["H5869"]],[32,36,["H3543","H3543"]]]},{"k":23046,"v":[[0,2,["H4853"]],[2,5,["H1697"]],[5,8,["H3068"]],[8,9,["H5921"]],[9,10,["H3478"]],[10,11,["H5002"]],[11,13,["H3068"]],[13,16,["H5186"]],[16,18,["H8064"]],[18,22,["H3245"]],[22,25,["H776"]],[25,27,["H3335"]],[27,29,["H7307"]],[29,31,["H120"]],[31,32,["H7130"]],[32,33,[]]]},{"k":23047,"v":[[0,1,["H2009"]],[1,2,["H595"]],[2,4,["H7760","(H853)"]],[4,5,["H3389"]],[5,7,["H5592"]],[7,9,["H7478"]],[9,11,["H3605"]],[11,13,["H5971"]],[13,15,["H5439"]],[15,19,["H1961"]],[19,22,["H4692"]],[22,23,["H1571"]],[23,24,["H5921"]],[24,25,["H3063"]],[25,27,["H5921"]],[27,28,["H3389"]]]},{"k":23048,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,7,["H7760","(H853)"]],[7,8,["H3389"]],[8,10,["H4614"]],[10,11,["H68"]],[11,13,["H3605"]],[13,14,["H5971"]],[14,15,["H3605"]],[15,17,["H6006"]],[17,25,["H8295","H8295"]],[25,27,["H3605"]],[27,29,["H1471"]],[29,32,["H776"]],[32,35,["H622"]],[35,36,["H5921"]],[36,37,[]]]},{"k":23049,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,4,["H5002"]],[4,6,["H3068"]],[6,9,["H5221"]],[9,10,["H3605"]],[10,11,["H5483"]],[11,13,["H8541"]],[13,16,["H7392"]],[16,18,["H7697"]],[18,22,["H6491","(H853)"]],[22,24,["H5869"]],[24,25,["H5921"]],[25,27,["H1004"]],[27,29,["H3063"]],[29,32,["H5221"]],[32,33,["H3605"]],[33,34,["H5483"]],[34,37,["H5971"]],[37,39,["H5788"]]]},{"k":23050,"v":[[0,3,["H441"]],[3,5,["H3063"]],[5,7,["H559"]],[7,10,["H3820"]],[10,12,["H3427"]],[12,14,["H3389"]],[14,18,["H556"]],[18,21,["H3068"]],[21,23,["H6635"]],[23,25,["H430"]]]},{"k":23051,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H7760","(H853)"]],[6,8,["H441"]],[8,10,["H3063"]],[10,13,["H3595"]],[13,15,["H784"]],[15,18,["H6086"]],[18,22,["H3940"]],[22,24,["H784"]],[24,27,["H5995"]],[27,31,["H398","(H853)"]],[31,32,["H3605"]],[32,34,["H5971"]],[34,36,["H5439"]],[36,37,["H5921"]],[37,40,["H3225"]],[40,42,["H5921"]],[42,44,["H8040"]],[44,46,["H3389"]],[46,49,["H3427"]],[49,50,["H5750"]],[50,54,["H8478"]],[54,57,["H3389"]]]},{"k":23052,"v":[[0,2,["H3068"]],[2,5,["H3467","(H853)"]],[5,7,["H168"]],[7,9,["H3063"]],[9,10,["H7223"]],[10,11,["H4616"]],[11,13,["H8597"]],[13,16,["H1004"]],[16,18,["H1732"]],[18,21,["H8597"]],[21,24,["H3427"]],[24,26,["H3389"]],[26,28,["H3808"]],[28,29,["H1431"]],[29,31,["H5921"]],[31,32,["H3063"]]]},{"k":23053,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H3068"]],[6,7,["H1598","H1157"]],[7,9,["H3427"]],[9,11,["H3389"]],[11,16,["H3782"]],[16,20,["H1931"]],[20,21,["H3117"]],[21,23,["H1961"]],[23,25,["H1732"]],[25,28,["H1004"]],[28,30,["H1732"]],[30,34,["H430"]],[34,37,["H4397"]],[37,40,["H3068"]],[40,41,["H6440"]],[41,42,[]]]},{"k":23054,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,13,["H1245"]],[13,15,["H8045","(H853)"]],[15,16,["H3605"]],[16,18,["H1471"]],[18,20,["H935"]],[20,21,["H5921"]],[21,22,["H3389"]]]},{"k":23055,"v":[[0,4,["H8210"]],[4,5,["H5921"]],[5,7,["H1004"]],[7,9,["H1732"]],[9,11,["H5921"]],[11,13,["H3427"]],[13,15,["H3389"]],[15,17,["H7307"]],[17,19,["H2580"]],[19,22,["H8469"]],[22,26,["H5027"]],[26,27,["H413"]],[27,28,["(H853)"]],[28,29,["H834"]],[29,32,["H1856"]],[32,36,["H5594"]],[36,37,["H5921"]],[37,41,["H4553"]],[41,42,["H5921"]],[42,44,["H3173"]],[44,50,["H4843"]],[50,51,["H5921"]],[51,58,["H4843"]],[58,59,["H5921"]],[59,61,["H1060"]]]},{"k":23056,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,8,["H1431"]],[8,9,["H4553"]],[9,11,["H3389"]],[11,14,["H4553"]],[14,16,["H1910"]],[16,19,["H1237"]],[19,21,["H4023"]]]},{"k":23057,"v":[[0,3,["H776"]],[3,5,["H5594"]],[5,7,["H4940","H4940"]],[7,8,["H905"]],[8,10,["H4940"]],[10,13,["H1004"]],[13,15,["H1732"]],[15,16,["H905"]],[16,19,["H802"]],[19,20,["H905"]],[20,22,["H4940"]],[22,25,["H1004"]],[25,27,["H5416"]],[27,28,["H905"]],[28,31,["H802"]],[31,32,["H905"]]]},{"k":23058,"v":[[0,2,["H4940"]],[2,5,["H1004"]],[5,7,["H3878"]],[7,8,["H905"]],[8,11,["H802"]],[11,12,["H905"]],[12,14,["H4940"]],[14,16,["H8097"]],[16,17,["H905"]],[17,20,["H802"]],[20,21,["H905"]]]},{"k":23059,"v":[[0,1,["H3605"]],[1,3,["H4940"]],[3,5,["H7604"]],[5,7,["H4940","H4940"]],[7,8,["H905"]],[8,11,["H802"]],[11,12,["H905"]]]},{"k":23060,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H1961"]],[6,8,["H4726"]],[8,9,["H6605"]],[9,12,["H1004"]],[12,14,["H1732"]],[14,18,["H3427"]],[18,20,["H3389"]],[20,22,["H2403"]],[22,25,["H5079"]]]},{"k":23061,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,10,["H5002"]],[10,12,["H3068"]],[12,14,["H6635"]],[14,19,["H3772","(H853)"]],[19,21,["H8034"]],[21,24,["H6091"]],[24,26,["H4480"]],[26,28,["H776"]],[28,32,["H3808"]],[32,33,["H5750"]],[33,35,["H2142"]],[35,37,["H1571"]],[37,40,["(H853)"]],[40,42,["H5030"]],[42,45,["H2932"]],[45,46,["H7307"]],[46,48,["H5674"]],[48,50,["H4480"]],[50,52,["H776"]]]},{"k":23062,"v":[[0,6,["H1961"]],[6,8,["H3588"]],[8,9,["H376"]],[9,11,["H5750"]],[11,12,["H5012"]],[12,15,["H1"]],[15,18,["H517"]],[18,20,["H3205"]],[20,23,["H559"]],[23,24,["H413"]],[24,28,["H3808"]],[28,29,["H2421"]],[29,30,["H3588"]],[30,32,["H1696"]],[32,33,["H8267"]],[33,36,["H8034"]],[36,39,["H3068"]],[39,42,["H1"]],[42,45,["H517"]],[45,47,["H3205"]],[47,52,["H1856"]],[52,55,["H5012"]]]},{"k":23063,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H5030"]],[12,15,["H954"]],[15,17,["H376"]],[17,20,["H4480","H2384"]],[20,24,["H5012"]],[24,25,["H3808"]],[25,28,["H3847"]],[28,30,["H8181"]],[30,31,["H155"]],[31,32,["H4616"]],[32,33,["H3584"]]]},{"k":23064,"v":[[0,4,["H559"]],[4,5,["H595"]],[5,7,["H3808"]],[7,8,["H5030"]],[8,9,["H595"]],[9,12,["H376","H5647","H127"]],[12,13,["H3588"]],[13,14,["H120"]],[14,19,["H7069"]],[19,22,["H4480","H5271"]]]},{"k":23065,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H4100"]],[7,9,["H428"]],[9,10,["H4347"]],[10,11,["H996"]],[11,13,["H3027"]],[13,17,["H559"]],[17,20,["H834"]],[20,23,["H5221"]],[23,26,["H1004"]],[26,29,["H157"]]]},{"k":23066,"v":[[0,1,["H5782"]],[1,3,["H2719"]],[3,4,["H5921"]],[4,6,["H7462"]],[6,8,["H5921"]],[8,10,["H1397"]],[10,14,["H5997"]],[14,15,["H5002"]],[15,17,["H3068"]],[17,19,["H6635"]],[19,20,["H5221","(H853)"]],[20,22,["H7462"]],[22,25,["H6629"]],[25,28,["H6327"]],[28,32,["H7725"]],[32,34,["H3027"]],[34,35,["H5921"]],[35,38,["H6819"]]]},{"k":23067,"v":[[0,6,["H1961"]],[6,9,["H3605"]],[9,11,["H776"]],[11,12,["H5002"]],[12,14,["H3068"]],[14,15,["H8147"]],[15,16,["H6310"]],[16,21,["H3772"]],[21,23,["H1478"]],[23,26,["H7992"]],[26,29,["H3498"]],[29,30,[]]]},{"k":23068,"v":[[0,4,["H935","(H853)"]],[4,7,["H7992"]],[7,10,["H784"]],[10,13,["H6884"]],[13,15,["(H853)"]],[15,16,["H3701"]],[16,18,["H6884"]],[18,21,["H974"]],[21,23,["(H853)"]],[23,24,["H2091"]],[24,26,["H974"]],[26,27,["H1931"]],[27,29,["H7121"]],[29,32,["H8034"]],[32,34,["H589"]],[34,36,["H6030"]],[36,40,["H559"]],[40,41,["H1931"]],[41,44,["H5971"]],[44,46,["H1931"]],[46,48,["H559"]],[48,50,["H3068"]],[50,53,["H430"]]]},{"k":23069,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,6,["H3068"]],[6,7,["H935"]],[7,10,["H7998"]],[10,13,["H2505"]],[13,16,["H7130"]],[16,18,[]]]},{"k":23070,"v":[[0,4,["H622","(H853)"]],[4,5,["H3605"]],[5,6,["H1471"]],[6,7,["H413"]],[7,8,["H3389"]],[8,10,["H4421"]],[10,13,["H5892"]],[13,16,["H3920"]],[16,19,["H1004"]],[19,20,["H8155"]],[20,23,["H802"]],[23,24,["H7693"]],[24,26,["H2677"]],[26,29,["H5892"]],[29,32,["H3318"]],[32,34,["H1473"]],[34,37,["H3499"]],[37,40,["H5971"]],[40,42,["H3808"]],[42,45,["H3772"]],[45,46,["H4480"]],[46,48,["H5892"]]]},{"k":23071,"v":[[0,4,["H3068"]],[4,6,["H3318"]],[6,9,["H3898"]],[9,10,["H1992"]],[10,11,["H1471"]],[11,13,["H3117"]],[13,15,["H3898"]],[15,18,["H3117"]],[18,20,["H7128"]]]},{"k":23072,"v":[[0,3,["H7272"]],[3,5,["H5975"]],[5,7,["H1931"]],[7,8,["H3117"]],[8,9,["H5921"]],[9,11,["H2022"]],[11,13,["H2132"]],[13,14,["H834"]],[14,16,["H5921","H6440"]],[16,17,["H3389"]],[17,20,["H4480","H6924"]],[20,23,["H2022"]],[23,25,["H2132"]],[25,27,["H1234"]],[27,30,["H4480","H2677"]],[30,34,["H4217"]],[34,38,["H3220"]],[38,44,["H3966"]],[44,45,["H1419"]],[45,46,["H1516"]],[46,48,["H2677"]],[48,51,["H2022"]],[51,53,["H4185"]],[53,56,["H6828"]],[56,58,["H2677"]],[58,63,["H5045"]]]},{"k":23073,"v":[[0,4,["H5127"]],[4,7,["H1516"]],[7,10,["H2022"]],[10,11,["H3588"]],[11,13,["H1516"]],[13,16,["H2022"]],[16,18,["H5060"]],[18,19,["H413"]],[19,20,["H682"]],[20,24,["H5127"]],[24,26,["H834"]],[26,28,["H5127"]],[28,30,["H4480","H6440"]],[30,32,["H7494"]],[32,35,["H3117"]],[35,37,["H5818"]],[37,38,["H4428"]],[38,40,["H3063"]],[40,43,["H3068"]],[43,45,["H430"]],[45,47,["H935"]],[47,49,["H3605"]],[49,51,["H6918"]],[51,52,["H5973"]],[52,53,[]]]},{"k":23074,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H216"]],[12,14,["H3808"]],[14,15,["H1961"]],[15,16,["H3368"]],[16,18,["H7087"]]]},{"k":23075,"v":[[0,4,["H1961"]],[4,5,["H259"]],[5,6,["H3117"]],[6,7,["H1931"]],[7,10,["H3045"]],[10,13,["H3068"]],[13,14,["H3808"]],[14,15,["H3117"]],[15,16,["H3808"]],[16,17,["H3915"]],[17,23,["H1961"]],[23,26,["H6153"]],[26,27,["H6256"]],[27,30,["H1961"]],[30,31,["H216"]]]},{"k":23076,"v":[[0,4,["H1961"]],[4,6,["H1931"]],[6,7,["H3117"]],[7,9,["H2416"]],[9,10,["H4325"]],[10,13,["H3318"]],[13,15,["H4480","H3389"]],[15,16,["H2677"]],[16,19,["H413"]],[19,21,["H6931"]],[21,22,["H3220"]],[22,24,["H2677"]],[24,27,["H413"]],[27,29,["H314"]],[29,30,["H3220"]],[30,32,["H7019"]],[32,35,["H2779"]],[35,38,["H1961"]]]},{"k":23077,"v":[[0,3,["H3068"]],[3,5,["H1961"]],[5,6,["H4428"]],[6,7,["H5921"]],[7,8,["H3605"]],[8,10,["H776"]],[10,12,["H1931"]],[12,13,["H3117"]],[13,16,["H1961"]],[16,17,["H259"]],[17,18,["H3068"]],[18,21,["H8034"]],[21,22,["H259"]]]},{"k":23078,"v":[[0,1,["H3605"]],[1,3,["H776"]],[3,6,["H5437"]],[6,9,["H6160"]],[9,11,["H4480","H1387"]],[11,13,["H7417"]],[13,14,["H5045"]],[14,16,["H3389"]],[16,22,["H7213"]],[22,24,["H3427"]],[24,27,["H8478"]],[27,29,["H1144"]],[29,30,["H4480","H8179"]],[30,31,["H5704"]],[31,33,["H4725"]],[33,36,["H7223"]],[36,37,["H8179"]],[37,38,["H5704"]],[38,40,["H6434"]],[40,41,["H8179"]],[41,45,["H4026"]],[45,47,["H2606"]],[47,48,["H5704"]],[48,50,["H4428"]],[50,51,["H3342"]]]},{"k":23079,"v":[[0,4,["H3427"]],[4,10,["H1961"]],[10,11,["H3808"]],[11,12,["H5750"]],[12,14,["H2764"]],[14,16,["H3389"]],[16,19,["H983"]],[19,20,["H3427"]]]},{"k":23080,"v":[[0,2,["H2063"]],[2,4,["H1961"]],[4,6,["H4046"]],[6,7,["H834"]],[7,9,["H3068"]],[9,11,["H5062","(H853)"]],[11,12,["H3605"]],[12,14,["H5971"]],[14,15,["H834"]],[15,17,["H6633"]],[17,18,["H5921"]],[18,19,["H3389"]],[19,21,["H1320"]],[21,24,["H4743"]],[24,26,["H1931"]],[26,27,["H5975"]],[27,30,["H5921","H7272"]],[30,33,["H5869"]],[33,36,["H4743"]],[36,39,["H2356"]],[39,42,["H3956"]],[42,45,["H4743"]],[45,48,["H6310"]]]},{"k":23081,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H7227"]],[12,13,["H4103"]],[13,16,["H3068"]],[16,18,["H1961"]],[18,25,["H2388"]],[25,27,["H376"]],[27,30,["H3027"]],[30,33,["H7453"]],[33,36,["H3027"]],[36,39,["H5927"]],[39,40,["H5921"]],[40,42,["H3027"]],[42,45,["H7453"]]]},{"k":23082,"v":[[0,2,["H3063"]],[2,3,["H1571"]],[3,5,["H3898"]],[5,7,["H3389"]],[7,10,["H2428"]],[10,12,["H3605"]],[12,14,["H1471"]],[14,16,["H5439"]],[16,20,["H622"]],[20,21,["H2091"]],[21,23,["H3701"]],[23,25,["H899"]],[25,27,["H3966"]],[27,28,["H7230"]]]},{"k":23083,"v":[[0,2,["H3651"]],[2,4,["H1961"]],[4,6,["H4046"]],[6,9,["H5483"]],[9,12,["H6505"]],[12,15,["H1581"]],[15,19,["H2543"]],[19,22,["H3605"]],[22,24,["H929"]],[24,25,["H834"]],[25,27,["H1961"]],[27,29,["H1992"]],[29,30,["H4264"]],[30,32,["H2063"]],[32,33,["H4046"]]]},{"k":23084,"v":[[0,6,["H1961"]],[6,9,["H3605"]],[9,12,["H3498"]],[12,14,["H4480","H3605"]],[14,16,["H1471"]],[16,18,["H935"]],[18,19,["H5921"]],[19,20,["H3389"]],[20,24,["H5927"]],[24,25,["H4480","H1767"]],[25,26,["H8141"]],[26,28,["H8141"]],[28,30,["H7812"]],[30,32,["H4428"]],[32,34,["H3068"]],[34,36,["H6635"]],[36,39,["H2287","(H853)"]],[39,41,["H2282"]],[41,43,["H5521"]]]},{"k":23085,"v":[[0,4,["H1961"]],[4,6,["H834"]],[6,8,["H3808"]],[8,10,["H5927"]],[10,11,["H4480","H854"]],[11,14,["H4940"]],[14,17,["H776"]],[17,18,["H413"]],[18,19,["H3389"]],[19,21,["H7812"]],[21,23,["H4428"]],[23,25,["H3068"]],[25,27,["H6635"]],[27,29,["H5921"]],[29,32,["H1961"]],[32,33,["H3808"]],[33,34,["H1653"]]]},{"k":23086,"v":[[0,2,["H518"]],[2,4,["H4940"]],[4,6,["H4714"]],[6,9,["H5927","H3808"]],[9,11,["H935"]],[11,12,["H3808"]],[12,15,["H3808"]],[15,19,["H1961"]],[19,21,["H4046"]],[21,22,["H834"]],[22,24,["H3068"]],[24,26,["H5062","(H853)"]],[26,28,["H1471"]],[28,29,["H834"]],[29,32,["H5927","H3808"]],[32,34,["H2287","(H853)"]],[34,36,["H2282"]],[36,38,["H5521"]]]},{"k":23087,"v":[[0,1,["H2063"]],[1,3,["H1961"]],[3,5,["H2403"]],[5,7,["H4714"]],[7,10,["H2403"]],[10,12,["H3605"]],[12,13,["H1471"]],[13,14,["H834"]],[14,17,["H5927","H3808"]],[17,19,["H2287","(H853)"]],[19,21,["H2282"]],[21,23,["H5521"]]]},{"k":23088,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H1961"]],[6,7,["H5921"]],[7,9,["H4698"]],[9,12,["H5483"]],[12,13,["H6944"]],[13,16,["H3068"]],[16,19,["H5518"]],[19,22,["H3068"]],[22,23,["H1004"]],[23,25,["H1961"]],[25,28,["H4219"]],[28,29,["H6440"]],[29,31,["H4196"]]]},{"k":23089,"v":[[0,2,["H3605"]],[2,3,["H5518"]],[3,5,["H3389"]],[5,8,["H3063"]],[8,10,["H1961"]],[10,11,["H6944"]],[11,14,["H3068"]],[14,16,["H6635"]],[16,18,["H3605"]],[18,21,["H2076"]],[21,23,["H935"]],[23,25,["H3947"]],[25,26,["H4480"]],[26,29,["H1310"]],[29,33,["H1931"]],[33,34,["H3117"]],[34,37,["H1961"]],[37,38,["H3808"]],[38,39,["H5750"]],[39,41,["H3669"]],[41,44,["H1004"]],[44,47,["H3068"]],[47,49,["H6635"]]]},{"k":23090,"v":[[0,2,["H4853"]],[2,5,["H1697"]],[5,8,["H3068"]],[8,9,["H413"]],[9,10,["H3478"]],[10,11,["H3027"]],[11,12,["H4401"]]]},{"k":23091,"v":[[0,3,["H157"]],[3,5,["H559"]],[5,7,["H3068"]],[7,10,["H559"]],[10,11,["H4100"]],[11,14,["H157"]],[14,17,["H3808"]],[17,18,["H6215"]],[18,19,["H3290"]],[19,20,["H251"]],[20,21,["H5002"]],[21,23,["H3068"]],[23,26,["H157","(H853)"]],[26,27,["H3290"]]]},{"k":23092,"v":[[0,3,["H8130"]],[3,4,["H6215"]],[4,6,["H7760","(H853)"]],[6,8,["H2022"]],[8,11,["H5159"]],[11,12,["H8077"]],[12,15,["H8568"]],[15,18,["H4057"]]]},{"k":23093,"v":[[0,1,["H3588"]],[1,2,["H123"]],[2,3,["H559"]],[3,6,["H7567"]],[6,10,["H7725"]],[10,12,["H1129"]],[12,15,["H2723"]],[15,16,["H3541"]],[16,17,["H559"]],[17,19,["H3068"]],[19,21,["H6635"]],[21,22,["H1992"]],[22,24,["H1129"]],[24,26,["H589"]],[26,29,["H2040"]],[29,33,["H7121"]],[33,36,["H1366"]],[36,38,["H7564"]],[38,41,["H5971"]],[41,43,["H834"]],[43,45,["H3068"]],[45,47,["H2194"]],[47,49,["H5704","H5769"]]]},{"k":23094,"v":[[0,3,["H5869"]],[3,5,["H7200"]],[5,7,["H859"]],[7,9,["H559"]],[9,11,["H3068"]],[11,14,["H1431"]],[14,15,["H4480","H5921"]],[15,17,["H1366"]],[17,19,["H3478"]]]},{"k":23095,"v":[[0,2,["H1121"]],[2,3,["H3513"]],[3,5,["H1"]],[5,8,["H5650"]],[8,10,["H113"]],[10,11,["H518"]],[11,13,["H589"]],[13,16,["H1"]],[16,17,["H346"]],[17,20,["H3519"]],[20,22,["H518"]],[22,23,["H589"]],[23,26,["H113"]],[26,27,["H346"]],[27,30,["H4172"]],[30,31,["H559"]],[31,33,["H3068"]],[33,35,["H6635"]],[35,39,["H3548"]],[39,41,["H959"]],[41,43,["H8034"]],[43,46,["H559"]],[46,47,["H4100"]],[47,50,["H959","(H853)"]],[50,52,["H8034"]]]},{"k":23096,"v":[[0,2,["H5066"]],[2,3,["H1351"]],[3,4,["H3899"]],[4,5,["H5921"]],[5,7,["H4196"]],[7,10,["H559"]],[10,11,["H4100"]],[11,14,["H1351"]],[14,19,["H559"]],[19,21,["H7979"]],[21,24,["H3068"]],[24,26,["H959"]]]},{"k":23097,"v":[[0,2,["H3588"]],[2,4,["H5066"]],[4,6,["H5787"]],[6,8,["H2076"]],[8,11,["H369"]],[11,12,["H7451"]],[12,14,["H3588"]],[14,16,["H5066"]],[16,18,["H6455"]],[18,20,["H2470"]],[20,23,["H369"]],[23,24,["H7451"]],[24,25,["H7126"]],[25,27,["H4994"]],[27,30,["H6346"]],[30,34,["H7521"]],[34,37,["H176"]],[37,38,["H5375"]],[38,40,["H6440"]],[40,41,["H559"]],[41,43,["H3068"]],[43,45,["H6635"]]]},{"k":23098,"v":[[0,2,["H6258"]],[2,5,["H4994"]],[5,6,["H2470"]],[6,7,["H410"]],[7,12,["H2603"]],[12,15,["H2063"]],[15,17,["H1961"]],[17,20,["H4480","H3027"]],[20,23,["H5375"]],[23,24,["H4480"]],[24,25,["H6440"]],[25,26,["H559"]],[26,28,["H3068"]],[28,30,["H6635"]]]},{"k":23099,"v":[[0,1,["H4310"]],[1,4,["H1571"]],[4,9,["H5462"]],[9,11,["H1817"]],[11,14,["H3808"]],[14,17,["H215"]],[17,21,["H4196"]],[21,23,["H2600"]],[23,26,["H369"]],[26,27,["H2656"]],[27,30,["H559"]],[30,32,["H3068"]],[32,34,["H6635"]],[34,35,["H3808"]],[35,38,["H7521"]],[38,40,["H4503"]],[40,43,["H4480","H3027"]]]},{"k":23100,"v":[[0,1,["H3588"]],[1,4,["H4480","H4217"]],[4,7,["H8121"]],[7,9,["H5704"]],[9,12,["H3996"]],[12,17,["H8034"]],[17,20,["H1419"]],[20,23,["H1471"]],[23,26,["H3605"]],[26,27,["H4725"]],[27,28,["H6999"]],[28,31,["H5066"]],[31,34,["H8034"]],[34,37,["H2889"]],[37,38,["H4503"]],[38,39,["H3588"]],[39,41,["H8034"]],[41,44,["H1419"]],[44,47,["H1471"]],[47,48,["H559"]],[48,50,["H3068"]],[50,52,["H6635"]]]},{"k":23101,"v":[[0,2,["H859"]],[2,4,["H2490"]],[4,9,["H559"]],[9,11,["H7979"]],[11,14,["H136"]],[14,16,["H1351"]],[16,19,["H5108"]],[19,23,["H400"]],[23,25,["H959"]]]},{"k":23102,"v":[[0,2,["H559"]],[2,4,["H2009"]],[4,7,["H4972","H8513"]],[7,14,["H5301"]],[14,16,["H559"]],[16,18,["H3068"]],[18,20,["H6635"]],[20,23,["H935"]],[23,27,["H1497"]],[27,30,["H6455"]],[30,33,["H2470"]],[33,36,["H935","(H853)"]],[36,38,["H4503"]],[38,41,["H7521"]],[41,45,["H4480","H3027"]],[45,46,["H559"]],[46,48,["H3068"]]]},{"k":23103,"v":[[0,2,["H779"]],[2,5,["H5230"]],[5,7,["H3426"]],[7,10,["H5739"]],[10,12,["H2145"]],[12,14,["H5087"]],[14,16,["H2076"]],[16,19,["H136"]],[19,22,["H7843"]],[22,23,["H3588"]],[23,24,["H589"]],[24,27,["H1419"]],[27,28,["H4428"]],[28,29,["H559"]],[29,31,["H3068"]],[31,33,["H6635"]],[33,36,["H8034"]],[36,38,["H3372"]],[38,41,["H1471"]]]},{"k":23104,"v":[[0,2,["H6258"]],[2,5,["H3548"]],[5,6,["H2063"]],[6,7,["H4687"]],[7,9,["H413"]],[9,10,[]]]},{"k":23105,"v":[[0,1,["H518"]],[1,4,["H3808"]],[4,5,["H8085"]],[5,7,["H518"]],[7,10,["H3808"]],[10,11,["H7760"]],[11,13,["H5921"]],[13,14,["H3820"]],[14,16,["H5414"]],[16,17,["H3519"]],[17,20,["H8034"]],[20,21,["H559"]],[21,23,["H3068"]],[23,25,["H6635"]],[25,29,["H7971","(H853)"]],[29,31,["H3994"]],[31,37,["H779","(H853)"]],[37,39,["H1293"]],[39,40,["H1571"]],[40,43,["H779"]],[43,46,["H3588"]],[46,49,["H369"]],[49,50,["H7760"]],[50,52,["H5921"]],[52,53,["H3820"]]]},{"k":23106,"v":[[0,1,["H2009"]],[1,4,["H1605","(H853)"]],[4,6,["H2233"]],[6,8,["H2219"]],[8,9,["H6569"]],[9,10,["H5921"]],[10,12,["H6440"]],[12,15,["H6569"]],[15,19,["H2282"]],[19,25,["H5375","(H853)"]],[25,26,["H413"]],[26,27,[]]]},{"k":23107,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,8,["H7971"]],[8,9,["H2063","(H853)"]],[9,10,["H4687"]],[10,11,["H413"]],[11,15,["H1285"]],[15,17,["H1961"]],[17,18,["H854"]],[18,19,["H3878"]],[19,20,["H559"]],[20,22,["H3068"]],[22,24,["H6635"]]]},{"k":23108,"v":[[0,2,["H1285"]],[2,3,["H1961"]],[3,4,["H854"]],[4,7,["H2416"]],[7,9,["H7965"]],[9,12,["H5414"]],[12,18,["H4172"]],[18,21,["H3372"]],[21,25,["H2865"]],[25,26,["H4480","H6440"]],[26,28,["H8034"]]]},{"k":23109,"v":[[0,2,["H8451"]],[2,4,["H571"]],[4,5,["H1961"]],[5,8,["H6310"]],[8,10,["H5766"]],[10,12,["H3808"]],[12,13,["H4672"]],[13,16,["H8193"]],[16,18,["H1980"]],[18,19,["H854"]],[19,22,["H7965"]],[22,24,["H4334"]],[24,29,["H7725","H7227"]],[29,31,["H4480","H5771"]]]},{"k":23110,"v":[[0,1,["H3588"]],[1,3,["H3548"]],[3,4,["H8193"]],[4,6,["H8104"]],[6,7,["H1847"]],[7,11,["H1245"]],[11,13,["H8451"]],[13,16,["H4480","H6310"]],[16,17,["H3588"]],[17,18,["H1931"]],[18,21,["H4397"]],[21,24,["H3068"]],[24,26,["H6635"]]]},{"k":23111,"v":[[0,2,["H859"]],[2,4,["H5493"]],[4,6,["H4480"]],[6,8,["H1870"]],[8,14,["H3782","H7227"]],[14,17,["H8451"]],[17,20,["H7843"]],[20,22,["H1285"]],[22,24,["H3878"]],[24,25,["H559"]],[25,27,["H3068"]],[27,29,["H6635"]]]},{"k":23112,"v":[[0,3,["H589"]],[3,4,["H1571"]],[4,5,["H5414"]],[5,7,["H959"]],[7,9,["H8217"]],[9,11,["H3605"]],[11,13,["H5971"]],[13,15,["H6310","H834"]],[15,18,["H369"]],[18,19,["H8104","(H853)"]],[19,21,["H1870"]],[21,25,["H5375","H6440"]],[25,28,["H8451"]]]},{"k":23113,"v":[[0,3,["H3808"]],[3,4,["H3605"]],[4,5,["H259"]],[5,6,["H1"]],[6,8,["H3808"]],[8,9,["H259"]],[9,10,["H410"]],[10,11,["H1254"]],[11,13,["H4069"]],[13,17,["H898"]],[17,19,["H376"]],[19,22,["H251"]],[22,24,["H2490"]],[24,26,["H1285"]],[26,29,["H1"]]]},{"k":23114,"v":[[0,1,["H3063"]],[1,4,["H898"]],[4,7,["H8441"]],[7,9,["H6213"]],[9,11,["H3478"]],[11,14,["H3389"]],[14,15,["H3588"]],[15,16,["H3063"]],[16,18,["H2490"]],[18,20,["H6944"]],[20,23,["H3068"]],[23,24,["H834"]],[24,26,["H157"]],[26,29,["H1166"]],[29,31,["H1323"]],[31,34,["H5236"]],[34,35,["H410"]]]},{"k":23115,"v":[[0,2,["H3068"]],[2,5,["H3772"]],[5,7,["H376"]],[7,8,["H834"]],[8,9,["H6213"]],[9,12,["H5782"]],[12,15,["H6030"]],[15,19,["H4480","H168"]],[19,21,["H3290"]],[21,25,["H5066"]],[25,27,["H4503"]],[27,30,["H3068"]],[30,32,["H6635"]]]},{"k":23116,"v":[[0,2,["H2063"]],[2,5,["H6213"]],[5,6,["H8145"]],[6,7,["H3680","(H853)"]],[7,9,["H4196"]],[9,12,["H3068"]],[12,14,["H1832"]],[14,16,["H1065"]],[16,20,["H603"]],[20,24,["H6437","H413"]],[24,25,["H4480","H369"]],[25,27,["H4503"]],[27,29,["H5750"]],[29,31,["H3947"]],[31,35,["H7522"]],[35,38,["H4480","H3027"]]]},{"k":23117,"v":[[0,3,["H559"]],[3,4,["H5921","H4100"]],[4,5,["H5921","H3588"]],[5,7,["H3068"]],[7,10,["H5749"]],[10,11,["H996"]],[11,15,["H802"]],[15,18,["H5271"]],[18,20,["H834"]],[20,21,["H859"]],[21,24,["H898"]],[24,27,["H1931"]],[27,29,["H2278"]],[29,32,["H802"]],[32,35,["H1285"]]]},{"k":23118,"v":[[0,3,["H3808"]],[3,5,["H6213"]],[5,6,["H259"]],[6,11,["H7605"]],[11,14,["H7307"]],[14,16,["H4100"]],[16,17,["H259"]],[17,21,["H1245"]],[21,23,["H430"]],[23,24,["H2233"]],[24,27,["H8104"]],[27,30,["H7307"]],[30,33,["H408"]],[33,35,["H898"]],[35,38,["H802"]],[38,41,["H5271"]]]},{"k":23119,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H3478"]],[7,8,["H559"]],[8,11,["H8130"]],[11,13,["H7971"]],[13,16,["H3680"]],[16,17,["H2555"]],[17,18,["H5921"]],[18,20,["H3830"]],[20,21,["H559"]],[21,23,["H3068"]],[23,25,["H6635"]],[25,28,["H8104"]],[28,31,["H7307"]],[31,36,["H898","H3808"]]]},{"k":23120,"v":[[0,3,["H3021"]],[3,5,["H3068"]],[5,8,["H1697"]],[8,11,["H559"]],[11,12,["H4100"]],[12,15,["H3021"]],[15,19,["H559"]],[19,21,["H3605"]],[21,23,["H6213"]],[23,24,["H7451"]],[24,26,["H2896"]],[26,29,["H5869"]],[29,32,["H3068"]],[32,34,["H1931"]],[34,35,["H2654"]],[35,38,["H176"]],[38,39,["H346"]],[39,42,["H430"]],[42,44,["H4941"]]]},{"k":23121,"v":[[0,1,["H2009"]],[1,4,["H7971"]],[4,6,["H4397"]],[6,10,["H6437"]],[10,12,["H1870"]],[12,13,["H6440"]],[13,17,["H113"]],[17,18,["H834"]],[18,19,["H859"]],[19,20,["H1245"]],[20,22,["H6597"]],[22,23,["H935"]],[23,24,["H413"]],[24,26,["H1964"]],[26,29,["H4397"]],[29,32,["H1285"]],[32,33,["H834"]],[33,34,["H859"]],[34,35,["H2655"]],[35,37,["H2009"]],[37,40,["H935"]],[40,41,["H559"]],[41,43,["H3068"]],[43,45,["H6635"]]]},{"k":23122,"v":[[0,2,["H4310"]],[2,4,["H3557","(H853)"]],[4,6,["H3117"]],[6,9,["H935"]],[9,11,["H4310"]],[11,13,["H5975"]],[13,16,["H7200"]],[16,17,["H3588"]],[17,18,["H1931"]],[18,22,["H6884"]],[22,23,["H784"]],[23,26,["H3526"]],[26,27,["H1287"]]]},{"k":23123,"v":[[0,4,["H3427"]],[4,7,["H6884"]],[7,9,["H2891"]],[9,11,["H3701"]],[11,15,["H2891","(H853)"]],[15,17,["H1121"]],[17,19,["H3878"]],[19,21,["H2212"]],[21,24,["H2091"]],[24,26,["H3701"]],[26,30,["H1961","H5066"]],[30,33,["H3068"]],[33,35,["H4503"]],[35,37,["H6666"]]]},{"k":23124,"v":[[0,4,["H4503"]],[4,6,["H3063"]],[6,8,["H3389"]],[8,10,["H6149"]],[10,13,["H3068"]],[13,17,["H3117"]],[17,19,["H5769"]],[19,23,["H6931"]],[23,24,["H8141"]]]},{"k":23125,"v":[[0,5,["H7126"]],[5,6,["H413"]],[6,9,["H4941"]],[9,13,["H1961"]],[13,15,["H4116"]],[15,16,["H5707"]],[16,19,["H3784"]],[19,23,["H5003"]],[23,26,["H8267"]],[26,27,["H7650"]],[27,32,["H6231"]],[32,34,["H7916"]],[34,37,["H7939"]],[37,39,["H490"]],[39,42,["H3490"]],[42,46,["H5186"]],[46,48,["H1616"]],[48,53,["H3372"]],[53,54,["H3808"]],[54,56,["H559"]],[56,58,["H3068"]],[58,60,["H6635"]]]},{"k":23126,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,5,["H3068"]],[5,7,["H8138"]],[7,8,["H3808"]],[8,10,["H859"]],[10,11,["H1121"]],[11,13,["H3290"]],[13,15,["H3808"]],[15,16,["H3615"]]]},{"k":23127,"v":[[0,4,["H4480","H3117"]],[4,7,["H1"]],[7,11,["H5493"]],[11,14,["H4480","H2706"]],[14,17,["H3808"]],[17,18,["H8104"]],[18,20,["H7725"]],[20,21,["H413"]],[21,26,["H7725"]],[26,27,["H413"]],[27,29,["H559"]],[29,31,["H3068"]],[31,33,["H6635"]],[33,36,["H559"]],[36,37,["H4100"]],[37,40,["H7725"]]]},{"k":23128,"v":[[0,3,["H120"]],[3,4,["H6906"]],[4,5,["H430"]],[5,6,["H3588"]],[6,7,["H859"]],[7,9,["H6906"]],[9,13,["H559"]],[13,14,["H4100"]],[14,17,["H6906"]],[17,20,["H4643"]],[20,22,["H8641"]]]},{"k":23129,"v":[[0,1,["H859"]],[1,3,["H779"]],[3,6,["H3994"]],[6,8,["H859"]],[8,10,["H6906"]],[10,14,["H3605"]],[14,15,["H1471"]]]},{"k":23130,"v":[[0,1,["H935"]],[1,2,["(H853)"]],[2,3,["H3605"]],[3,5,["H4643"]],[5,6,["H413"]],[6,8,["H1004","H214"]],[8,12,["H1961"]],[12,13,["H2964"]],[13,16,["H1004"]],[16,18,["H974"]],[18,20,["H4994"]],[20,21,["H2063"]],[21,22,["H559"]],[22,24,["H3068"]],[24,26,["H6635"]],[26,27,["H518"]],[27,30,["H3808"]],[30,31,["H6605"]],[31,32,["(H853)"]],[32,34,["H699"]],[34,36,["H8064"]],[36,40,["H7324"]],[40,42,["H1293"]],[42,43,["H5704"]],[43,46,["H1097"]],[46,49,["H1767"]],[49,52,[]]]},{"k":23131,"v":[[0,4,["H1605"]],[4,6,["H398"]],[6,13,["H3808"]],[13,14,["H7843","(H853)"]],[14,16,["H6529"]],[16,19,["H127"]],[19,20,["H3808"]],[20,23,["H1612"]],[23,29,["H7921"]],[29,32,["H7704"]],[32,33,["H559"]],[33,35,["H3068"]],[35,37,["H6635"]]]},{"k":23132,"v":[[0,2,["H3605"]],[2,3,["H1471"]],[3,7,["H833","(H853)"]],[7,8,["H3588"]],[8,9,["H859"]],[9,11,["H1961"]],[11,13,["H2656"]],[13,14,["H776"]],[14,15,["H559"]],[15,17,["H3068"]],[17,19,["H6635"]]]},{"k":23133,"v":[[0,2,["H1697"]],[2,5,["H2388"]],[5,6,["H5921"]],[6,8,["H559"]],[8,10,["H3068"]],[10,13,["H559"]],[13,14,["H4100"]],[14,17,["H1696"]],[17,20,["H5921"]],[20,21,[]]]},{"k":23134,"v":[[0,3,["H559"]],[3,6,["H7723"]],[6,8,["H5647"]],[8,9,["H430"]],[9,11,["H4100"]],[11,12,["H1215"]],[12,15,["H3588"]],[15,18,["H8104"]],[18,20,["H4931"]],[20,22,["H3588"]],[22,25,["H1980"]],[25,26,["H6941"]],[26,27,["H4480","H6440"]],[27,29,["H3068"]],[29,31,["H6635"]]]},{"k":23135,"v":[[0,2,["H6258"]],[2,3,["H587"]],[3,7,["H833","H2086"]],[7,8,["H1571"]],[8,11,["H6213"]],[11,12,["H7564"]],[12,15,["H1129"]],[15,16,["H1571"]],[16,19,["H974"]],[19,20,["H430"]],[20,23,["H4422"]]]},{"k":23136,"v":[[0,1,["H227"]],[1,4,["H3373"]],[4,6,["H3068"]],[6,7,["H1696"]],[7,9,["H376"]],[9,10,["H854"]],[10,11,["H7453"]],[11,14,["H3068"]],[14,15,["H7181"]],[15,17,["H8085"]],[17,21,["H5612"]],[21,23,["H2146"]],[23,25,["H3789"]],[25,26,["H6440"]],[26,31,["H3372"]],[31,33,["H3068"]],[33,36,["H2803"]],[36,39,["H8034"]]]},{"k":23137,"v":[[0,4,["H1961"]],[4,6,["H559"]],[6,8,["H3068"]],[8,10,["H6635"]],[10,13,["H3117"]],[13,14,["H834"]],[14,15,["H589"]],[15,17,["H6213"]],[17,19,["H5459"]],[19,23,["H2550","H5921"]],[23,25,["H834"]],[25,27,["H376"]],[27,28,["H2550","H5921"]],[28,31,["H1121"]],[31,33,["H5647"]],[33,34,[]]]},{"k":23138,"v":[[0,4,["H7725"]],[4,6,["H7200"]],[6,7,["H996"]],[7,9,["H6662"]],[9,12,["H7563"]],[12,13,["H996"]],[13,16,["H5647"]],[16,17,["H430"]],[17,19,["H834"]],[19,21,["H5647"]],[21,23,["H3808"]]]},{"k":23139,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H3117"]],[4,5,["H935"]],[5,8,["H1197"]],[8,11,["H8574"]],[11,13,["H3605"]],[13,15,["H2086"]],[15,18,["H3605"]],[18,20,["H6213"]],[20,21,["H7564"]],[21,23,["H1961"]],[23,24,["H7179"]],[24,27,["H3117"]],[27,29,["H935"]],[29,33,["H3857","(H853)"]],[33,34,["H559"]],[34,36,["H3068"]],[36,38,["H6635"]],[38,39,["H834"]],[39,42,["H5800"]],[42,44,["H3808"]],[44,45,["H8328"]],[45,47,["H6057"]]]},{"k":23140,"v":[[0,5,["H3373"]],[5,7,["H8034"]],[7,10,["H8121"]],[10,12,["H6666"]],[12,13,["H2224"]],[13,15,["H4832"]],[15,18,["H3671"]],[18,23,["H3318"]],[23,26,["H6335"]],[26,28,["H5695"]],[28,31,["H4770"]]]},{"k":23141,"v":[[0,5,["H6072"]],[5,7,["H7563"]],[7,8,["H3588"]],[8,11,["H1961"]],[11,12,["H665"]],[12,13,["H8478"]],[13,15,["H3709"]],[15,18,["H7272"]],[18,21,["H3117"]],[21,22,["H834"]],[22,23,["H589"]],[23,25,["H6213"]],[25,27,["H559"]],[27,29,["H3068"]],[29,31,["H6635"]]]},{"k":23142,"v":[[0,1,["H2142"]],[1,4,["H8451"]],[4,6,["H4872"]],[6,8,["H5650"]],[8,9,["H834"]],[9,12,["H6680"]],[12,15,["H2722"]],[15,16,["H5921"]],[16,17,["H3605"]],[17,18,["H3478"]],[18,21,["H2706"]],[21,23,["H4941"]]]},{"k":23143,"v":[[0,1,["H2009"]],[1,2,["H595"]],[2,4,["H7971"]],[4,5,["(H853)"]],[5,6,["H452"]],[6,8,["H5030"]],[8,9,["H6440"]],[9,11,["H935"]],[11,14,["H1419"]],[14,16,["H3372"]],[16,17,["H3117"]],[17,20,["H3068"]]]},{"k":23144,"v":[[0,4,["H7725"]],[4,6,["H3820"]],[6,9,["H1"]],[9,10,["H5921"]],[10,12,["H1121"]],[12,15,["H3820"]],[15,18,["H1121"]],[18,19,["H5921"]],[19,21,["H1"]],[21,22,["H6435"]],[22,24,["H935"]],[24,26,["H5221","(H853)"]],[26,28,["H776"]],[28,31,["H2764"]]]},{"k":23145,"v":[[0,2,["G976"]],[2,5,["G1078"]],[5,7,["G2424"]],[7,8,["G5547"]],[8,10,["G5207"]],[10,12,["G1138"]],[12,14,["G5207"]],[14,16,["G11"]]]},{"k":23146,"v":[[0,1,["G11"]],[1,2,["G1080"]],[2,3,["G2464"]],[3,4,["G1161"]],[4,5,["G2464"]],[5,6,["G1080"]],[6,7,["G2384"]],[7,8,["G1161"]],[8,9,["G2384"]],[9,10,["G1080"]],[10,11,["G2455"]],[11,12,["G2532"]],[12,13,["G846"]],[13,14,["G80"]]]},{"k":23147,"v":[[0,1,["G1161"]],[1,2,["G2455"]],[2,3,["G1080"]],[3,4,["G5329"]],[4,5,["G2532"]],[5,6,["G2196"]],[6,7,["G1537"]],[7,8,["G2283"]],[8,9,["G1161"]],[9,10,["G5329"]],[10,11,["G1080"]],[11,12,["G2074"]],[12,13,["G1161"]],[13,14,["G2074"]],[14,15,["G1080"]],[15,16,["G689"]]]},{"k":23148,"v":[[0,1,["G1161"]],[1,2,["G689"]],[2,3,["G1080"]],[3,4,["G284"]],[4,5,["G1161"]],[5,6,["G284"]],[6,7,["G1080"]],[7,8,["G3476"]],[8,9,["G1161"]],[9,10,["G3476"]],[10,11,["G1080"]],[11,12,["G4533"]]]},{"k":23149,"v":[[0,1,["G1161"]],[1,2,["G4533"]],[2,3,["G1080"]],[3,4,["G1003"]],[4,5,["G1537"]],[5,6,["G4477"]],[6,7,["G1161"]],[7,8,["G1003"]],[8,9,["G1080"]],[9,10,["G5601"]],[10,11,["G1537"]],[11,12,["G4503"]],[12,13,["G1161"]],[13,14,["G5601"]],[14,15,["G1080"]],[15,16,["G2421"]]]},{"k":23150,"v":[[0,1,["G1161"]],[1,2,["G2421"]],[2,3,["G1080"]],[3,4,["G1138"]],[4,5,["G3588"]],[5,6,["G935"]],[6,7,["G1161"]],[7,8,["G1138"]],[8,9,["G3588"]],[9,10,["G935"]],[10,11,["G1080"]],[11,12,["G4672"]],[12,13,["G1537"]],[13,14,["G3588"]],[14,21,["G3774"]]]},{"k":23151,"v":[[0,1,["G1161"]],[1,2,["G4672"]],[2,3,["G1080"]],[3,4,["G4497"]],[4,5,["G1161"]],[5,6,["G4497"]],[6,7,["G1080"]],[7,8,["G7"]],[8,9,["G1161"]],[9,10,["G7"]],[10,11,["G1080"]],[11,12,["G760"]]]},{"k":23152,"v":[[0,1,["G1161"]],[1,2,["G760"]],[2,3,["G1080"]],[3,4,["G2498"]],[4,5,["G1161"]],[5,6,["G2498"]],[6,7,["G1080"]],[7,8,["G2496"]],[8,9,["G1161"]],[9,10,["G2496"]],[10,11,["G1080"]],[11,12,["G3604"]]]},{"k":23153,"v":[[0,1,["G1161"]],[1,2,["G3604"]],[2,3,["G1080"]],[3,4,["G2488"]],[4,5,["G1161"]],[5,6,["G2488"]],[6,7,["G1080"]],[7,8,["G881"]],[8,9,["G1161"]],[9,10,["G881"]],[10,11,["G1080"]],[11,12,["G1478"]]]},{"k":23154,"v":[[0,1,["G1161"]],[1,2,["G1478"]],[2,3,["G1080"]],[3,4,["G3128"]],[4,5,["G1161"]],[5,6,["G3128"]],[6,7,["G1080"]],[7,8,["G300"]],[8,9,["G1161"]],[9,10,["G300"]],[10,11,["G1080"]],[11,12,["G2502"]]]},{"k":23155,"v":[[0,1,["G1161"]],[1,2,["G2502"]],[2,3,["G1080"]],[3,4,["G2423"]],[4,5,["G2532"]],[5,6,["G846"]],[6,7,["G80"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,14,["G3350"]],[14,16,["G897"]]]},{"k":23156,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,3,["G3588"]],[3,5,["G3350"]],[5,7,["G897"]],[7,8,["G2423"]],[8,9,["G1080"]],[9,10,["G4528"]],[10,11,["G1161"]],[11,12,["G4528"]],[12,13,["G1080"]],[13,14,["G2216"]]]},{"k":23157,"v":[[0,1,["G1161"]],[1,2,["G2216"]],[2,3,["G1080"]],[3,4,["G10"]],[4,5,["G1161"]],[5,6,["G10"]],[6,7,["G1080"]],[7,8,["G1662"]],[8,9,["G1161"]],[9,10,["G1662"]],[10,11,["G1080"]],[11,12,["G107"]]]},{"k":23158,"v":[[0,1,["G1161"]],[1,2,["G107"]],[2,3,["G1080"]],[3,4,["G4524"]],[4,5,["G1161"]],[5,6,["G4524"]],[6,7,["G1080"]],[7,8,["G885"]],[8,9,["G1161"]],[9,10,["G885"]],[10,11,["G1080"]],[11,12,["G1664"]]]},{"k":23159,"v":[[0,1,["G1161"]],[1,2,["G1664"]],[2,3,["G1080"]],[3,4,["G1648"]],[4,5,["G1161"]],[5,6,["G1648"]],[6,7,["G1080"]],[7,8,["G3157"]],[8,9,["G1161"]],[9,10,["G3157"]],[10,11,["G1080"]],[11,12,["G2384"]]]},{"k":23160,"v":[[0,1,["G1161"]],[1,2,["G2384"]],[2,3,["G1080"]],[3,4,["G2501"]],[4,5,["G3588"]],[5,6,["G435"]],[6,8,["G3137"]],[8,9,["G1537"]],[9,10,["G3739"]],[10,12,["G1080"]],[12,13,["G2424"]],[13,14,["G3588"]],[14,16,["G3004"]],[16,17,["G5547"]]]},{"k":23161,"v":[[0,1,["G3767"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G1074"]],[4,5,["G575"]],[5,6,["G11"]],[6,7,["G2193"]],[7,8,["G1138"]],[8,10,["G1180"]],[10,11,["G1074"]],[11,12,["G2532"]],[12,13,["G575"]],[13,14,["G1138"]],[14,15,["G2193"]],[15,16,["G3588"]],[16,18,["G3350"]],[18,20,["G897"]],[20,22,["G1180"]],[22,23,["G1074"]],[23,24,["G2532"]],[24,25,["G575"]],[25,26,["G3588"]],[26,28,["G3350"]],[28,30,["G897"]],[30,31,["G2193"]],[31,32,["G5547"]],[32,34,["G1180"]],[34,35,["G1074"]]]},{"k":23162,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1083"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,7,["G2258"]],[7,10,["G3779"]],[10,12,["G1063"]],[12,13,["G846"]],[13,14,["G3384"]],[14,15,["G3137"]],[15,17,["G3423"]],[17,19,["G2501"]],[19,20,["G4250"]],[20,21,["G846"]],[21,23,["G4905"]],[23,28,["G2147","G2192","G1722","G1064"]],[28,29,["G1537"]],[29,31,["G40"]],[31,32,["G4151"]]]},{"k":23163,"v":[[0,1,["G1161"]],[1,2,["G2501"]],[2,3,["G846"]],[3,4,["G435"]],[4,5,["G5607"]],[5,7,["G1342"]],[7,9,["G2532"]],[9,10,["G3361"]],[10,11,["G2309"]],[11,17,["G3856","G846"]],[17,19,["G1014"]],[19,23,["G630","G846"]],[23,24,["G2977"]]]},{"k":23164,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G1760"]],[4,7,["G5023"]],[7,8,["G2400"]],[8,10,["G32"]],[10,13,["G2962"]],[13,14,["G5316"]],[14,16,["G846"]],[16,17,["G2596"]],[17,19,["G3677"]],[19,20,["G3004"]],[20,21,["G2501"]],[21,23,["G5207"]],[23,25,["G1138"]],[25,26,["G5399"]],[26,27,["G3361"]],[27,29,["G3880"]],[29,32,["G3137"]],[32,33,["G4675"]],[33,34,["G1135"]],[34,35,["G1063"]],[35,39,["G1080"]],[39,40,["G1722"]],[40,41,["G846"]],[41,42,["G2076"]],[42,43,["G1537"]],[43,45,["G40"]],[45,46,["G4151"]]]},{"k":23165,"v":[[0,1,["G1161"]],[1,5,["G5088"]],[5,7,["G5207"]],[7,8,["G2532"]],[8,11,["G2564"]],[11,12,["G846"]],[12,13,["G3686"]],[13,14,["G2424"]],[14,15,["G1063"]],[15,16,["G846"]],[16,18,["G4982"]],[18,19,["G848"]],[19,20,["G2992"]],[20,21,["G575"]],[21,22,["G846"]],[22,23,["G266"]]]},{"k":23166,"v":[[0,1,["G1161"]],[1,2,["G3650"]],[2,3,["G5124"]],[3,5,["G1096"]],[5,6,["G2443"]],[6,10,["G4137"]],[10,11,["G3588"]],[11,13,["G4483"]],[13,14,["G5259"]],[14,15,["G3588"]],[15,16,["G2962"]],[16,17,["G1223"]],[17,18,["G3588"]],[18,19,["G4396"]],[19,20,["G3004"]]]},{"k":23167,"v":[[0,1,["G2400"]],[1,3,["G3933"]],[3,7,["G2192","G1722","G1064"]],[7,8,["G2532"]],[8,11,["G5088"]],[11,13,["G5207"]],[13,14,["G2532"]],[14,17,["G2564"]],[17,18,["G846"]],[18,19,["G3686"]],[19,20,["G1694"]],[20,21,["G3739"]],[21,23,["G3177"]],[23,24,["G2076"]],[24,25,["G2316"]],[25,26,["G3326"]],[26,27,["G2257"]]]},{"k":23168,"v":[[0,1,["G1161"]],[1,2,["G2501"]],[2,4,["G1326"]],[4,5,["G575"]],[5,6,["G5258"]],[6,7,["G4160"]],[7,8,["G5613"]],[8,9,["G3588"]],[9,10,["G32"]],[10,13,["G2962"]],[13,15,["G4367"]],[15,16,["G846"]],[16,17,["G2532"]],[17,18,["G3880"]],[18,21,["G848"]],[21,22,["G1135"]]]},{"k":23169,"v":[[0,1,["G2532"]],[1,2,["G1097"]],[2,3,["G846"]],[3,4,["G3756"]],[4,5,["G2193"]],[5,9,["G5088"]],[9,10,["G848"]],[10,11,["G4416"]],[11,12,["G5207"]],[12,13,["G2532"]],[13,15,["G2564"]],[15,16,["G846"]],[16,17,["G3686"]],[17,18,["G2424"]]]},{"k":23170,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,5,["G1080"]],[5,6,["G1722"]],[6,7,["G965"]],[7,9,["G2449"]],[9,10,["G1722"]],[10,12,["G2250"]],[12,14,["G2264"]],[14,15,["G3588"]],[15,16,["G935"]],[16,17,["G2400"]],[17,19,["G3854"]],[19,21,["G3097"]],[21,22,["G575"]],[22,24,["G395"]],[24,25,["G1519"]],[25,26,["G2414"]]]},{"k":23171,"v":[[0,1,["G3004"]],[1,2,["G4226"]],[2,3,["G2076"]],[3,7,["G5088"]],[7,8,["G935"]],[8,10,["G3588"]],[10,11,["G2453"]],[11,12,["G1063"]],[12,15,["G1492"]],[15,16,["G846"]],[16,17,["G792"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,20,["G395"]],[20,21,["G2532"]],[21,23,["G2064"]],[23,25,["G4352"]],[25,26,["G846"]]]},{"k":23172,"v":[[0,1,["G1161"]],[1,2,["G2264"]],[2,3,["G3588"]],[3,4,["G935"]],[4,6,["G191"]],[6,11,["G5015"]],[11,12,["G2532"]],[12,13,["G3956"]],[13,14,["G2414"]],[14,15,["G3326"]],[15,16,["G846"]]]},{"k":23173,"v":[[0,1,["G2532"]],[1,5,["G4863"]],[5,6,["G3956"]],[6,7,["G3588"]],[7,9,["G749"]],[9,10,["G2532"]],[10,11,["G1122"]],[11,13,["G3588"]],[13,14,["G2992"]],[14,17,["G4441"]],[17,18,["G3844"]],[18,19,["G846"]],[19,20,["G4226"]],[20,21,["G5547"]],[21,24,["G1080"]]]},{"k":23174,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G1722"]],[6,7,["G965"]],[7,9,["G2449"]],[9,10,["G1063"]],[10,11,["G3779"]],[11,14,["G1125"]],[14,15,["G1223"]],[15,16,["G3588"]],[16,17,["G4396"]]]},{"k":23175,"v":[[0,1,["G2532"]],[1,2,["G4771"]],[2,3,["G965"]],[3,6,["G1093"]],[6,8,["G2448"]],[8,9,["G1488"]],[9,10,["G3760"]],[10,12,["G1646"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G2232"]],[15,17,["G2448"]],[17,18,["G1063"]],[18,19,["G1537"]],[19,21,["G4675"]],[21,23,["G1831"]],[23,25,["G2233"]],[25,26,["G3748"]],[26,28,["G4165"]],[28,29,["G3450"]],[29,30,["G2992"]],[30,31,["G2474"]]]},{"k":23176,"v":[[0,1,["G5119"]],[1,2,["G2264"]],[2,6,["G2977"]],[6,7,["G2564"]],[7,8,["G3588"]],[8,10,["G3097"]],[10,14,["G198","G3844","G846"]],[14,16,["G5550"]],[16,17,["G3588"]],[17,18,["G792"]],[18,19,["G5316"]]]},{"k":23177,"v":[[0,1,["G2532"]],[1,3,["G3992"]],[3,4,["G846"]],[4,5,["G1519"]],[5,6,["G965"]],[6,8,["G2036"]],[8,9,["G4198"]],[9,11,["G1833"]],[11,12,["G199"]],[12,13,["G4012"]],[13,14,["G3588"]],[14,16,["G3813"]],[16,17,["G1161"]],[17,18,["G1875"]],[18,21,["G2147"]],[21,26,["G518","G3427"]],[26,27,["G3704"]],[27,28,["G2504"]],[28,30,["G2064"]],[30,32,["G4352"]],[32,33,["G846"]],[33,34,[]]]},{"k":23178,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G191"]],[4,5,["G3588"]],[5,6,["G935"]],[6,8,["G4198"]],[8,9,["G2532"]],[9,10,["G2400"]],[10,11,["G3588"]],[11,12,["G792"]],[12,13,["G3739"]],[13,15,["G1492"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G395"]],[18,20,["G4254"]],[20,21,["G846"]],[21,22,["G2193"]],[22,24,["G2064"]],[24,26,["G2476"]],[26,27,["G1883"]],[27,28,["G3757"]],[28,29,["G3588"]],[29,31,["G3813"]],[31,32,["G2258"]]]},{"k":23179,"v":[[0,1,["G1161"]],[1,3,["G1492"]],[3,4,["G3588"]],[4,5,["G792"]],[5,7,["G5463"]],[7,9,["G4970"]],[9,10,["G3173"]],[10,11,["G5479"]]]},{"k":23180,"v":[[0,1,["G2532"]],[1,5,["G2064"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G3614"]],[8,10,["G1492"]],[10,11,["G3588"]],[11,13,["G3813"]],[13,14,["G3326"]],[14,15,["G3137"]],[15,16,["G846"]],[16,17,["G3384"]],[17,18,["G2532"]],[18,20,["G4098"]],[20,22,["G4352"]],[22,23,["G846"]],[23,24,["G2532"]],[24,28,["G455"]],[28,29,["G848"]],[29,30,["G2344"]],[30,32,["G4374"]],[32,34,["G846"]],[34,35,["G1435"]],[35,36,["G5557"]],[36,37,["G2532"]],[37,38,["G3030"]],[38,39,["G2532"]],[39,40,["G4666"]]]},{"k":23181,"v":[[0,1,["G2532"]],[1,5,["G5537"]],[5,6,["G2596"]],[6,8,["G3677"]],[8,12,["G3361"]],[12,13,["G344"]],[13,14,["G4314"]],[14,15,["G2264"]],[15,17,["G402"]],[17,18,["G1519"]],[18,20,["G848"]],[20,22,["G5561","(G243)"]],[22,23,["G3598"]]]},{"k":23182,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G402"]],[5,6,["G2400"]],[6,8,["G32"]],[8,11,["G2962"]],[11,12,["G5316"]],[12,14,["G2501"]],[14,15,["G2596"]],[15,17,["G3677"]],[17,18,["G3004"]],[18,19,["G1453"]],[19,21,["G3880"]],[21,22,["G3588"]],[22,24,["G3813"]],[24,25,["G2532"]],[25,26,["G846"]],[26,27,["G3384"]],[27,28,["G2532"]],[28,29,["G5343"]],[29,30,["G1519"]],[30,31,["G125"]],[31,32,["G2532"]],[32,33,["G2468"]],[33,35,["G1563"]],[35,36,["G2193","(G302)"]],[36,40,["G2036","G4671"]],[40,41,["G1063"]],[41,42,["G2264"]],[42,43,["G3195"]],[43,44,["G2212"]],[44,45,["G3588"]],[45,47,["G3813"]],[47,49,["G622"]],[49,50,["G846"]]]},{"k":23183,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1453"]],[3,5,["G3880"]],[5,6,["G3588"]],[6,8,["G3813"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G3384"]],[11,13,["G3571"]],[13,14,["G2532"]],[14,15,["G402"]],[15,16,["G1519"]],[16,17,["G125"]]]},{"k":23184,"v":[[0,1,["G2532"]],[1,2,["G2258"]],[2,3,["G1563"]],[3,4,["G2193"]],[4,5,["G3588"]],[5,6,["G5054"]],[6,8,["G2264"]],[8,9,["G2443"]],[9,13,["G4137"]],[13,14,["G3588"]],[14,16,["G4483"]],[16,17,["G5259"]],[17,18,["G3588"]],[18,19,["G2962"]],[19,20,["G1223"]],[20,21,["G3588"]],[21,22,["G4396"]],[22,23,["G3004"]],[23,24,["G1537"]],[24,26,["G125"]],[26,29,["G2564"]],[29,30,["G3450"]],[30,31,["G5207"]]]},{"k":23185,"v":[[0,1,["G5119"]],[1,2,["G2264"]],[2,5,["G1492"]],[5,6,["G3754"]],[6,9,["G1702"]],[9,10,["G5259"]],[10,11,["G3588"]],[11,13,["G3097"]],[13,16,["G2373","G3029"]],[16,17,["G2532"]],[17,19,["G649"]],[19,20,["G2532"]],[20,21,["G337"]],[21,22,["G3956"]],[22,23,["G3588"]],[23,24,["G3816"]],[24,25,["G3588"]],[25,27,["G1722"]],[27,28,["G965"]],[28,29,["G2532"]],[29,30,["G1722"]],[30,31,["G3956"]],[31,32,["G3588"]],[32,33,["G3725"]],[33,34,["G846"]],[34,35,["G575"]],[35,38,["G1332"]],[38,39,["G2532"]],[39,40,["G2736"]],[40,41,["G2596"]],[41,43,["G3588"]],[43,44,["G5550"]],[44,45,["G3739"]],[45,49,["G198"]],[49,50,["G3844"]],[50,51,["G3588"]],[51,53,["G3097"]]]},{"k":23186,"v":[[0,1,["G5119"]],[1,3,["G4137"]],[3,7,["G4483"]],[7,8,["G5259"]],[8,9,["G2408"]],[9,10,["G3588"]],[10,11,["G4396"]],[11,12,["G3004"]]]},{"k":23187,"v":[[0,1,["G1722"]],[1,2,["G4471"]],[2,6,["G5456"]],[6,7,["G191"]],[7,8,["G2355"]],[8,9,["G2532"]],[9,10,["G2805"]],[10,11,["G2532"]],[11,12,["G4183"]],[12,13,["G3602"]],[13,14,["G4478"]],[14,15,["G2799"]],[15,17,["G848"]],[17,18,["G5043"]],[18,19,["G2532"]],[19,20,["G2309"]],[20,21,["G3756"]],[21,23,["G3870"]],[23,24,["G3754"]],[24,26,["G1526"]],[26,27,["G3756"]]]},{"k":23188,"v":[[0,1,["G1161"]],[1,3,["G2264"]],[3,5,["G5053"]],[5,6,["G2400"]],[6,8,["G32"]],[8,11,["G2962"]],[11,12,["G5316"]],[12,13,["G2596"]],[13,15,["G3677"]],[15,17,["G2501"]],[17,18,["G1722"]],[18,19,["G125"]]]},{"k":23189,"v":[[0,1,["G3004"]],[1,2,["G1453"]],[2,4,["G3880"]],[4,5,["G3588"]],[5,7,["G3813"]],[7,8,["G2532"]],[8,9,["G846"]],[9,10,["G3384"]],[10,11,["G2532"]],[11,12,["G4198"]],[12,13,["G1519"]],[13,15,["G1093"]],[15,17,["G2474"]],[17,18,["G1063"]],[18,21,["G2348"]],[21,23,["G2212"]],[23,24,["G3588"]],[24,26,["G3813"]],[26,27,["G5590"]]]},{"k":23190,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1453"]],[3,5,["G3880"]],[5,6,["G3588"]],[6,8,["G3813"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G3384"]],[11,12,["G2532"]],[12,13,["G2064"]],[13,14,["G1519"]],[14,16,["G1093"]],[16,18,["G2474"]]]},{"k":23191,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,5,["G3754"]],[5,6,["G745"]],[6,8,["G936"]],[8,9,["G1909"]],[9,10,["G2449"]],[10,13,["G473"]],[13,15,["G846"]],[15,16,["G3962"]],[16,17,["G2264"]],[17,20,["G5399"]],[20,22,["G565"]],[22,23,["G1563"]],[23,24,["G1161"]],[24,28,["G5537"]],[28,29,["G2596"]],[29,31,["G3677"]],[31,34,["G402"]],[34,35,["G1519"]],[35,36,["G3588"]],[36,37,["G3313"]],[37,39,["G1056"]]]},{"k":23192,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,5,["G2730"]],[5,6,["G1519"]],[6,8,["G4172"]],[8,9,["G3004"]],[9,10,["G3478"]],[10,11,["G3704"]],[11,15,["G4137"]],[15,18,["G4483"]],[18,19,["G1223"]],[19,20,["G3588"]],[20,21,["G4396"]],[21,25,["G2564"]],[25,27,["G3480"]]]},{"k":23193,"v":[[0,1,["G1722"]],[1,2,["G1565"]],[2,3,["G2250"]],[3,4,["G3854"]],[4,5,["G2491"]],[5,6,["G3588"]],[6,7,["G910"]],[7,8,["G2784"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2048"]],[11,13,["G2449"]]]},{"k":23194,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,3,["G3340"]],[3,5,["G1063"]],[5,6,["G3588"]],[6,7,["G932"]],[7,9,["G3772"]],[9,12,["G1448"]]]},{"k":23195,"v":[[0,1,["G1063"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,8,["G4483"]],[8,9,["G5259"]],[9,10,["G3588"]],[10,11,["G4396"]],[11,12,["G2268"]],[12,13,["G3004"]],[13,15,["G5456"]],[15,18,["G994"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G2048"]],[21,22,["G2090"]],[22,24,["G3588"]],[24,25,["G3598"]],[25,28,["G2962"]],[28,29,["G4160"]],[29,30,["G846"]],[30,31,["G5147"]],[31,32,["G2117"]]]},{"k":23196,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G2491"]],[4,5,["G2192"]],[5,6,["G848"]],[6,7,["G1742"]],[7,8,["G575"]],[8,9,["G2574"]],[9,10,["G2359"]],[10,11,["G2532"]],[11,13,["G1193"]],[13,14,["G2223"]],[14,15,["G4012"]],[15,16,["G846"]],[16,17,["G3751"]],[17,18,["G1161"]],[18,19,["G848"]],[19,20,["G5160"]],[20,21,["G2258"]],[21,22,["G200"]],[22,23,["G2532"]],[23,24,["G66"]],[24,25,["G3192"]]]},{"k":23197,"v":[[0,1,["G5119"]],[1,3,["G1607"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G2414"]],[6,7,["G2532"]],[7,8,["G3956"]],[8,9,["G2449"]],[9,10,["G2532"]],[10,11,["G3956"]],[11,12,["G3588"]],[12,15,["G4066"]],[15,16,["G2446"]]]},{"k":23198,"v":[[0,1,["G2532"]],[1,3,["G907"]],[3,4,["G5259"]],[4,5,["G846"]],[5,6,["G1722"]],[6,7,["G2446"]],[7,8,["G1843"]],[8,9,["G848"]],[9,10,["G266"]]]},{"k":23199,"v":[[0,1,["G1161"]],[1,4,["G1492"]],[4,5,["G4183"]],[5,7,["G3588"]],[7,8,["G5330"]],[8,9,["G2532"]],[9,10,["G4523"]],[10,11,["G2064"]],[11,12,["G1909"]],[12,13,["G846"]],[13,14,["G908"]],[14,16,["G2036"]],[16,18,["G846"]],[18,20,["G1081"]],[20,22,["G2191"]],[22,23,["G5101"]],[23,25,["G5263"]],[25,26,["G5213"]],[26,28,["G5343"]],[28,29,["G575"]],[29,30,["G3588"]],[30,31,["G3709"]],[31,33,["G3195"]]]},{"k":23200,"v":[[0,2,["G4160"]],[2,3,["G3767"]],[3,4,["G2590"]],[4,5,["G514"]],[5,7,["G3341"]]]},{"k":23201,"v":[[0,1,["G2532"]],[1,2,["G1380"]],[2,3,["G3361"]],[3,5,["G3004"]],[5,6,["G1722"]],[6,7,["G1438"]],[7,9,["G2192"]],[9,10,["G11"]],[10,13,["G3962"]],[13,14,["G1063"]],[14,16,["G3004"]],[16,18,["G5213"]],[18,19,["G3754"]],[19,20,["G2316"]],[20,22,["G1410"]],[22,23,["G1537"]],[23,24,["G5130"]],[24,25,["G3037"]],[25,28,["G1453"]],[28,29,["G5043"]],[29,31,["G11"]]]},{"k":23202,"v":[[0,1,["G1161"]],[1,2,["G2235"]],[2,3,["G2532"]],[3,4,["G3588"]],[4,5,["G513"]],[5,7,["G2749"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,10,["G4491"]],[10,12,["G3588"]],[12,13,["G1186"]],[13,14,["G3767"]],[14,15,["G3956"]],[15,16,["G1186"]],[16,20,["G4160","G3361"]],[20,21,["G2570"]],[21,22,["G2590"]],[22,25,["G1581"]],[25,26,["G2532"]],[26,27,["G906"]],[27,28,["G1519"]],[28,30,["G4442"]]]},{"k":23203,"v":[[0,1,["G1473"]],[1,2,["G3303"]],[2,3,["G907"]],[3,4,["G5209"]],[4,5,["G1722"]],[5,6,["G5204"]],[6,7,["G1519"]],[7,8,["G3341"]],[8,9,["G1161"]],[9,12,["G2064"]],[12,13,["G3694"]],[13,14,["G3450"]],[14,15,["G2076"]],[15,16,["G2478"]],[16,18,["G3450"]],[18,19,["G3739"]],[19,20,["G5266"]],[20,22,["G1510"]],[22,23,["G3756"]],[23,24,["G2425"]],[24,26,["G941"]],[26,27,["G846"]],[27,29,["G907"]],[29,30,["G5209"]],[30,31,["G1722"]],[31,33,["G40"]],[33,34,["G4151"]],[34,35,["G2532"]],[35,37,["G4442"]]]},{"k":23204,"v":[[0,1,["G3739"]],[1,2,["G4425"]],[2,4,["G1722"]],[4,5,["G846"]],[5,6,["G5495"]],[6,7,["G2532"]],[7,11,["G1245"]],[11,12,["G848"]],[12,13,["G257"]],[13,14,["G2532"]],[14,15,["G4863"]],[15,16,["G848"]],[16,17,["G4621"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G596"]],[20,21,["G1161"]],[21,25,["G2618"]],[25,26,["G3588"]],[26,27,["G892"]],[27,29,["G762"]],[29,30,["G4442"]]]},{"k":23205,"v":[[0,1,["G5119"]],[1,2,["G3854"]],[2,3,["G2424"]],[3,4,["G575"]],[4,5,["G1056"]],[5,6,["G1909"]],[6,7,["G2446"]],[7,8,["G4314"]],[8,9,["G2491"]],[9,12,["G907"]],[12,13,["G5259"]],[13,14,["G846"]]]},{"k":23206,"v":[[0,1,["G1161"]],[1,2,["G2491"]],[2,3,["G1254"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G1473"]],[6,7,["G2192"]],[7,8,["G5532"]],[8,11,["G907"]],[11,12,["G5259"]],[12,13,["G4675"]],[13,14,["G2532"]],[14,15,["G2064"]],[15,16,["G4771"]],[16,17,["G4314"]],[17,18,["G3165"]]]},{"k":23207,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G863"]],[7,12,["G737"]],[12,13,["G1063"]],[13,14,["G3779"]],[14,15,["(G2076)"]],[15,16,["G4241"]],[16,17,["G2254"]],[17,19,["G4137"]],[19,20,["G3956"]],[20,21,["G1343"]],[21,22,["G5119"]],[22,24,["G863"]],[24,25,["G846"]]]},{"k":23208,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,6,["G907"]],[6,8,["G305"]],[8,9,["G2117"]],[9,11,["G575"]],[11,12,["G3588"]],[12,13,["G5204"]],[13,14,["G2532"]],[14,15,["G2400"]],[15,16,["G3588"]],[16,17,["G3772"]],[17,19,["G455"]],[19,21,["G846"]],[21,22,["G2532"]],[22,24,["G1492"]],[24,25,["G3588"]],[25,26,["G4151"]],[26,28,["G2316"]],[28,29,["G2597"]],[29,30,["G5616"]],[30,32,["G4058"]],[32,33,["G2532"]],[33,34,["G2064"]],[34,35,["G1909"]],[35,36,["G846"]]]},{"k":23209,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G5456"]],[4,5,["G1537"]],[5,6,["G3772"]],[6,7,["G3004"]],[7,8,["G3778"]],[8,9,["G2076"]],[9,10,["G3450"]],[10,11,["G27"]],[11,12,["G5207"]],[12,13,["G1722"]],[13,14,["G3739"]],[14,18,["G2106"]]]},{"k":23210,"v":[[0,1,["G5119"]],[1,3,["G2424"]],[3,5,["G321"]],[5,6,["G5259"]],[6,7,["G3588"]],[7,8,["G4151"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G2048"]],[11,14,["G3985"]],[14,15,["G5259"]],[15,16,["G3588"]],[16,17,["G1228"]]]},{"k":23211,"v":[[0,1,["G2532"]],[1,5,["G3522"]],[5,6,["G5062"]],[6,7,["G2250"]],[7,8,["G2532"]],[8,9,["G5062"]],[9,10,["G3571"]],[10,15,["G3983","G5305"]]]},{"k":23212,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G3985"]],[4,5,["G4334"]],[5,7,["G846"]],[7,9,["G2036"]],[9,10,["G1487"]],[10,12,["G1488"]],[12,15,["G5207"]],[15,16,["G2316"]],[16,17,["G2036"]],[17,18,["G2443"]],[18,19,["G3778"]],[19,20,["G3037"]],[20,22,["G1096"]],[22,23,["G740"]]]},{"k":23213,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,8,["G1125"]],[8,9,["G444"]],[9,11,["G3756"]],[11,12,["G2198"]],[12,13,["G1909"]],[13,14,["G740"]],[14,15,["G3441"]],[15,16,["G235"]],[16,17,["G1909"]],[17,18,["G3956"]],[18,19,["G4487"]],[19,21,["G1607"]],[21,23,["G1223"]],[23,25,["G4750"]],[25,27,["G2316"]]]},{"k":23214,"v":[[0,1,["G5119"]],[1,2,["G3588"]],[2,3,["G1228"]],[3,6,["G3880","G846"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G40"]],[9,10,["G4172"]],[10,11,["G2532"]],[11,12,["G2476"]],[12,13,["G846"]],[13,14,["G1909"]],[14,16,["G4419"]],[16,18,["G3588"]],[18,19,["G2411"]]]},{"k":23215,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1487"]],[5,7,["G1488"]],[7,9,["G5207"]],[9,11,["G2316"]],[11,12,["G906"]],[12,13,["G4572"]],[13,14,["G2736"]],[14,15,["G1063"]],[15,18,["G1125"]],[18,24,["G1781","G848","G32"]],[24,25,["G4012"]],[25,26,["G4675"]],[26,27,["G2532"]],[27,28,["G1909"]],[28,30,["G5495"]],[30,35,["G142","G4571"]],[35,39,["G3379"]],[39,41,["G4350"]],[41,42,["G4675"]],[42,43,["G4228"]],[43,44,["G4314"]],[44,46,["G3037"]]]},{"k":23216,"v":[[0,1,["G2424"]],[1,2,["G5346"]],[2,4,["G846"]],[4,7,["G1125"]],[7,8,["G3825"]],[8,11,["G3756"]],[11,12,["G1598"]],[12,14,["G2962"]],[14,15,["G4675"]],[15,16,["G2316"]]]},{"k":23217,"v":[[0,1,["G3825"]],[1,2,["G3588"]],[2,3,["G1228"]],[3,6,["G3880","G846"]],[6,7,["G1519"]],[7,9,["G3029"]],[9,10,["G5308"]],[10,11,["G3735"]],[11,12,["G2532"]],[12,13,["G1166"]],[13,14,["G846"]],[14,15,["G3956"]],[15,16,["G3588"]],[16,17,["G932"]],[17,19,["G3588"]],[19,20,["G2889"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G1391"]],[23,25,["G846"]]]},{"k":23218,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G3956"]],[5,7,["G5023"]],[7,10,["G1325"]],[10,11,["G4671"]],[11,12,["G1437"]],[12,16,["G4098"]],[16,18,["G4352"]],[18,19,["G3427"]]]},{"k":23219,"v":[[0,1,["G5119"]],[1,2,["G3004"]],[2,3,["G2424"]],[3,5,["G846"]],[5,8,["G5217"]],[8,9,["G4567"]],[9,10,["G1063"]],[10,13,["G1125"]],[13,16,["G4352"]],[16,18,["G2962"]],[18,19,["G4675"]],[19,20,["G2316"]],[20,21,["G2532"]],[21,22,["G846"]],[22,23,["G3441"]],[23,26,["G3000"]]]},{"k":23220,"v":[[0,1,["G5119"]],[1,2,["G3588"]],[2,3,["G1228"]],[3,4,["G863"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G2400"]],[7,8,["G32"]],[8,9,["G4334"]],[9,10,["G2532"]],[10,11,["G1247"]],[11,13,["G846"]]]},{"k":23221,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,5,["G191"]],[5,6,["G3754"]],[6,7,["G2491"]],[7,11,["G3860"]],[11,13,["G402"]],[13,14,["G1519"]],[14,15,["G1056"]]]},{"k":23222,"v":[[0,1,["G2532"]],[1,2,["G2641"]],[2,3,["G3478"]],[3,5,["G2064"]],[5,7,["G2730"]],[7,8,["G1519"]],[8,9,["G2584"]],[9,15,["G3864"]],[15,16,["G1722"]],[16,18,["G3725"]],[18,20,["G2194"]],[20,21,["G2532"]],[21,22,["G3508"]]]},{"k":23223,"v":[[0,1,["G2443"]],[1,5,["G4137"]],[5,6,["G3588"]],[6,8,["G4483"]],[8,9,["G1223"]],[9,10,["G2268"]],[10,11,["G3588"]],[11,12,["G4396"]],[12,13,["G3004"]]]},{"k":23224,"v":[[0,2,["G1093"]],[2,4,["G2194"]],[4,5,["G2532"]],[5,7,["G1093"]],[7,9,["G3508"]],[9,12,["G3598"]],[12,15,["G2281"]],[15,16,["G4008"]],[16,17,["G2446"]],[17,18,["G1056"]],[18,20,["G3588"]],[20,21,["G1484"]]]},{"k":23225,"v":[[0,1,["G3588"]],[1,2,["G2992"]],[2,3,["G3588"]],[3,4,["G2521"]],[4,5,["G1722"]],[5,6,["G4655"]],[6,7,["G1492"]],[7,8,["G3173"]],[8,9,["G5457"]],[9,10,["G2532"]],[10,14,["G2521"]],[14,15,["G1722"]],[15,17,["G5561"]],[17,18,["G2532"]],[18,19,["G4639"]],[19,21,["G2288"]],[21,22,["G5457"]],[22,25,["G393"]]]},{"k":23226,"v":[[0,1,["G575"]],[1,3,["G5119"]],[3,4,["G2424"]],[4,5,["G756"]],[5,7,["G2784"]],[7,8,["G2532"]],[8,10,["G3004"]],[10,11,["G3340"]],[11,12,["G1063"]],[12,13,["G3588"]],[13,14,["G932"]],[14,16,["G3772"]],[16,19,["G1448"]]]},{"k":23227,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G4043"]],[3,4,["G3844"]],[4,5,["G3588"]],[5,6,["G2281"]],[6,8,["G1056"]],[8,9,["G1492"]],[9,10,["G1417"]],[10,11,["G80"]],[11,12,["G4613"]],[12,13,["G3004"]],[13,14,["G4074"]],[14,15,["G2532"]],[15,16,["G406"]],[16,17,["G846"]],[17,18,["G80"]],[18,19,["G906"]],[19,21,["G293"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G2281"]],[24,25,["G1063"]],[25,27,["G2258"]],[27,28,["G231"]]]},{"k":23228,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G1205","G3694"]],[6,7,["G3450"]],[7,8,["G2532"]],[8,11,["G4160"]],[11,12,["G5209"]],[12,13,["G231"]],[13,15,["G444"]]]},{"k":23229,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2112"]],[3,4,["G863"]],[4,6,["G1350"]],[6,8,["G190"]],[8,9,["G846"]]]},{"k":23230,"v":[[0,1,["G2532"]],[1,3,["G4260"]],[3,5,["G1564"]],[5,7,["G1492"]],[7,8,["G243"]],[8,9,["G1417"]],[9,10,["G80"]],[10,11,["G2385"]],[11,12,["G3588"]],[12,15,["G2199"]],[15,16,["G2532"]],[16,17,["G2491"]],[17,18,["G846"]],[18,19,["G80"]],[19,20,["G1722"]],[20,22,["G4143"]],[22,23,["G3326"]],[23,24,["G2199"]],[24,25,["G846"]],[25,26,["G3962"]],[26,27,["G2675"]],[27,28,["G848"]],[28,29,["G1350"]],[29,30,["G2532"]],[30,32,["G2564"]],[32,33,["G846"]]]},{"k":23231,"v":[[0,1,["G1161"]],[1,4,["G863","G2112"]],[4,5,["G3588"]],[5,6,["G4143"]],[6,7,["G2532"]],[7,8,["G848"]],[8,9,["G3962"]],[9,10,["G2532"]],[10,11,["G190"]],[11,12,["G846"]]]},{"k":23232,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,4,["G4013"]],[4,5,["G3650"]],[5,6,["G1056"]],[6,7,["G1321"]],[7,8,["G1722"]],[8,9,["G846"]],[9,10,["G4864"]],[10,11,["G2532"]],[11,12,["G2784"]],[12,13,["G3588"]],[13,14,["G2098"]],[14,16,["G3588"]],[16,17,["G932"]],[17,18,["G2532"]],[18,19,["G2323"]],[19,21,["G3956"]],[21,23,["G3554"]],[23,24,["G2532"]],[24,26,["G3956"]],[26,28,["G3119"]],[28,29,["G1722"]],[29,30,["G3588"]],[30,31,["G2992"]]]},{"k":23233,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G189"]],[3,4,["G565"]],[4,5,["G1519"]],[5,6,["G3650"]],[6,7,["G4947"]],[7,8,["G2532"]],[8,10,["G4374"]],[10,12,["G846"]],[12,13,["G3956"]],[13,15,["G2192","G2560"]],[15,18,["G4912"]],[18,20,["G4164"]],[20,21,["G3554"]],[21,22,["G2532"]],[22,23,["G931"]],[23,24,["G2532"]],[24,30,["G1139"]],[30,31,["G2532"]],[31,35,["G4583"]],[35,36,["G2532"]],[36,41,["G3885"]],[41,42,["G2532"]],[42,44,["G2323"]],[44,45,["G846"]]]},{"k":23234,"v":[[0,1,["G2532"]],[1,3,["G190"]],[3,4,["G846"]],[4,5,["G4183"]],[5,8,["G3793"]],[8,9,["G575"]],[9,10,["G1056"]],[10,11,["G2532"]],[11,13,["G1179"]],[13,14,["G2532"]],[14,16,["G2414"]],[16,17,["G2532"]],[17,19,["G2449"]],[19,20,["G2532"]],[20,22,["G4008"]],[22,23,["G2446"]]]},{"k":23235,"v":[[0,1,["G1161"]],[1,2,["G1492"]],[2,3,["G3793"]],[3,4,["G3793"]],[4,7,["G305"]],[7,8,["G1519"]],[8,10,["G3735"]],[10,11,["G2532"]],[11,13,["G846"]],[13,15,["G2523"]],[15,16,["G846"]],[16,17,["G3101"]],[17,18,["G4334"]],[18,20,["G846"]]]},{"k":23236,"v":[[0,1,["G2532"]],[1,3,["G455"]],[3,4,["G848"]],[4,5,["G4750"]],[5,7,["G1321"]],[7,8,["G846"]],[8,9,["G3004"]]]},{"k":23237,"v":[[0,1,["G3107"]],[1,3,["G3588"]],[3,4,["G4434"]],[4,6,["G4151"]],[6,7,["G3754"]],[7,8,["G846"]],[8,9,["G2076"]],[9,10,["G3588"]],[10,11,["G932"]],[11,13,["G3772"]]]},{"k":23238,"v":[[0,1,["G3107"]],[1,5,["G3996"]],[5,6,["G3754"]],[6,7,["G846"]],[7,10,["G3870"]]]},{"k":23239,"v":[[0,1,["G3107"]],[1,4,["G4239"]],[4,5,["G3754"]],[5,6,["G846"]],[6,8,["G2816"]],[8,9,["G3588"]],[9,10,["G1093"]]]},{"k":23240,"v":[[0,1,["G3107"]],[1,6,["G3983"]],[6,7,["G2532"]],[7,8,["G1372"]],[8,10,["G1343"]],[10,11,["G3754"]],[11,12,["G846"]],[12,15,["G5526"]]]},{"k":23241,"v":[[0,1,["G3107"]],[1,3,["G3588"]],[3,4,["G1655"]],[4,5,["G3754"]],[5,6,["G846"]],[6,9,["G1653"]]]},{"k":23242,"v":[[0,1,["G3107"]],[1,3,["G3588"]],[3,4,["G2513"]],[4,6,["G2588"]],[6,7,["G3754"]],[7,8,["G846"]],[8,10,["G3700"]],[10,11,["G2316"]]]},{"k":23243,"v":[[0,1,["G3107"]],[1,3,["G3588"]],[3,4,["G1518"]],[4,5,["G3754"]],[5,6,["G846"]],[6,9,["G2564"]],[9,11,["G5207"]],[11,13,["G2316"]]]},{"k":23244,"v":[[0,1,["G3107"]],[1,6,["G1377"]],[6,9,["G1752","G1343"]],[9,10,["G3754"]],[10,11,["G846"]],[11,12,["G2076"]],[12,13,["G3588"]],[13,14,["G932"]],[14,16,["G3772"]]]},{"k":23245,"v":[[0,1,["G3107"]],[1,2,["G2075"]],[2,4,["G3752"]],[4,7,["G3679"]],[7,8,["G5209"]],[8,9,["G2532"]],[9,10,["G1377"]],[10,12,["G2532"]],[12,14,["G2036"]],[14,18,["G3956","G4190","G4487"]],[18,19,["G2596"]],[19,20,["G5216"]],[20,21,["G5574"]],[21,24,["G1752","G1700"]]]},{"k":23246,"v":[[0,1,["G5463"]],[1,2,["G2532"]],[2,5,["G21"]],[5,6,["G3754"]],[6,7,["G4183"]],[7,9,["G5216"]],[9,10,["G3408"]],[10,11,["G1722"]],[11,12,["G3772"]],[12,13,["G1063"]],[13,14,["G3779"]],[14,15,["G1377"]],[15,17,["G3588"]],[17,18,["G4396"]],[18,19,["G3588"]],[19,21,["G4253"]],[21,22,["G5216"]]]},{"k":23247,"v":[[0,1,["G5210"]],[1,2,["G2075"]],[2,3,["G3588"]],[3,4,["G217"]],[4,6,["G3588"]],[6,7,["G1093"]],[7,8,["G1161"]],[8,9,["G1437"]],[9,10,["G3588"]],[10,11,["G217"]],[11,15,["G3471"]],[15,16,["G1722","G5101"]],[16,20,["G233"]],[20,23,["G2089"]],[23,24,["G2480"]],[24,25,["G1519"]],[25,26,["G3762"]],[26,27,["G1508"]],[27,30,["G906"]],[30,31,["G1854"]],[31,32,["G2532"]],[32,37,["G2662"]],[37,38,["G5259"]],[38,39,["G444"]]]},{"k":23248,"v":[[0,1,["G5210"]],[1,2,["G2075"]],[2,3,["G3588"]],[3,4,["G5457"]],[4,6,["G3588"]],[6,7,["G2889"]],[7,9,["G4172"]],[9,12,["G2749"]],[12,13,["G1883"]],[13,15,["G3735"]],[15,16,["G1410","G3756"]],[16,18,["G2928"]]]},{"k":23249,"v":[[0,1,["G3761"]],[1,4,["G2545"]],[4,6,["G3088"]],[6,7,["G2532"]],[7,8,["G5087"]],[8,9,["G846"]],[9,10,["G5259"]],[10,12,["G3426"]],[12,13,["G235"]],[13,14,["G1909"]],[14,16,["G3087"]],[16,17,["G2532"]],[17,20,["G2989"]],[20,22,["G3956"]],[22,23,["G3588"]],[23,25,["G1722"]],[25,26,["G3588"]],[26,27,["G3614"]]]},{"k":23250,"v":[[0,2,["G5216"]],[2,3,["G5457"]],[3,4,["G3779"]],[4,5,["G2989"]],[5,6,["G1715"]],[6,7,["G444"]],[7,8,["G3704"]],[8,11,["G1492"]],[11,12,["G5216"]],[12,13,["G2570"]],[13,14,["G2041"]],[14,15,["G2532"]],[15,16,["G1392"]],[16,17,["G5216"]],[17,18,["G3962"]],[18,19,["G3588"]],[19,21,["G1722"]],[21,22,["G3772"]]]},{"k":23251,"v":[[0,1,["G3543"]],[1,2,["G3361"]],[2,3,["G3754"]],[3,6,["G2064"]],[6,8,["G2647"]],[8,9,["G3588"]],[9,10,["G3551"]],[10,11,["G2228"]],[11,12,["G3588"]],[12,13,["G4396"]],[13,16,["G3756"]],[16,17,["G2064"]],[17,19,["G2647"]],[19,20,["G235"]],[20,22,["G4137"]]]},{"k":23252,"v":[[0,1,["G1063"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,7,["G2193"]],[7,8,["G3772"]],[8,9,["G2532"]],[9,10,["G1093"]],[10,11,["G3928"]],[11,12,["G1520"]],[12,13,["G2503"]],[13,14,["G2228"]],[14,15,["G3391"]],[15,16,["G2762"]],[16,20,["G3364"]],[20,21,["G3928"]],[21,22,["G575"]],[22,23,["G3588"]],[23,24,["G3551"]],[24,25,["G2193"]],[25,26,["G3956"]],[26,28,["G1096"]]]},{"k":23253,"v":[[0,1,["G3739","G1437"]],[1,2,["G3767"]],[2,4,["G3089"]],[4,5,["G3391"]],[5,7,["G5130"]],[7,8,["G1646"]],[8,9,["G1785"]],[9,10,["G2532"]],[10,12,["G1321"]],[12,13,["G444"]],[13,14,["G3779"]],[14,18,["G2564"]],[18,20,["G1646"]],[20,21,["G1722"]],[21,22,["G3588"]],[22,23,["G932"]],[23,25,["G3772"]],[25,26,["G1161"]],[26,27,["G3739","G302"]],[27,29,["G4160"]],[29,30,["G2532"]],[30,31,["G1321"]],[31,34,["G3778"]],[34,37,["G2564"]],[37,38,["G3173"]],[38,39,["G1722"]],[39,40,["G3588"]],[40,41,["G932"]],[41,43,["G3772"]]]},{"k":23254,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G3362"]],[7,8,["G5216"]],[8,9,["G1343"]],[9,11,["G4052","G4119"]],[11,15,["G3588"]],[15,16,["G1122"]],[16,17,["G2532"]],[17,18,["G5330"]],[18,23,["G3364"]],[23,24,["G1525"]],[24,25,["G1519"]],[25,26,["G3588"]],[26,27,["G932"]],[27,29,["G3772"]]]},{"k":23255,"v":[[0,3,["G191"]],[3,4,["G3754"]],[4,7,["G4483"]],[7,12,["G744"]],[12,15,["G3756"]],[15,16,["G5407"]],[16,17,["G1161"]],[17,18,["G3739","G302"]],[18,20,["G5407"]],[20,22,["G2071"]],[22,24,["G1777"]],[24,26,["G3588"]],[26,27,["G2920"]]]},{"k":23256,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G3956"]],[7,9,["G3710"]],[9,11,["G848"]],[11,12,["G80"]],[12,15,["G1500"]],[15,17,["G2071"]],[17,19,["G1777"]],[19,21,["G3588"]],[21,22,["G2920"]],[22,23,["G1161"]],[23,24,["G3739","G302"]],[24,26,["G2036"]],[26,28,["G848"]],[28,29,["G80"]],[29,30,["G4469"]],[30,32,["G2071"]],[32,34,["G1777"]],[34,36,["G3588"]],[36,37,["G4892"]],[37,38,["G1161"]],[38,39,["G3739","G302"]],[39,41,["G2036"]],[41,43,["G3474"]],[43,45,["G2071"]],[45,47,["G1777"]],[47,48,["G1519"]],[48,49,["G1067"]],[49,50,["G4442"]]]},{"k":23257,"v":[[0,1,["G3767"]],[1,2,["G1437"]],[2,4,["G4374"]],[4,5,["G4675"]],[5,6,["G1435"]],[6,7,["G1909"]],[7,8,["G3588"]],[8,9,["G2379"]],[9,11,["G2546"]],[11,12,["G3415"]],[12,13,["G3754"]],[13,14,["G4675"]],[14,15,["G80"]],[15,16,["G2192"]],[16,17,["G5100"]],[17,18,["G2596"]],[18,19,["G4675"]]]},{"k":23258,"v":[[0,1,["G863"]],[1,2,["G1563"]],[2,3,["G4675"]],[3,4,["G1435"]],[4,5,["G1715"]],[5,6,["G3588"]],[6,7,["G2379"]],[7,8,["G2532"]],[8,11,["G5217"]],[11,12,["G4412"]],[12,14,["G1259"]],[14,16,["G4675"]],[16,17,["G80"]],[17,18,["G2532"]],[18,19,["G5119"]],[19,20,["G2064"]],[20,22,["G4374"]],[22,23,["G4675"]],[23,24,["G1435"]]]},{"k":23259,"v":[[0,1,["G2468","G2132"]],[1,3,["G4675"]],[3,4,["G476"]],[4,5,["G5035"]],[5,6,["G2193","G3755"]],[6,8,["G1488"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G3598"]],[11,12,["G3326"]],[12,13,["G846"]],[13,17,["G3379"]],[17,18,["G3588"]],[18,19,["G476"]],[19,20,["G3860"]],[20,21,["G4571"]],[21,23,["G3588"]],[23,24,["G2923"]],[24,25,["G2532"]],[25,26,["G3588"]],[26,27,["G2923"]],[27,28,["G3860"]],[28,29,["G4571"]],[29,31,["G3588"]],[31,32,["G5257"]],[32,33,["G2532"]],[33,36,["G906"]],[36,37,["G1519"]],[37,38,["G5438"]]]},{"k":23260,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G4671"]],[5,10,["G3364"]],[10,12,["G1831"]],[12,13,["G1564"]],[13,14,["G2193","G302"]],[14,17,["G591"]],[17,18,["G3588"]],[18,19,["G2078"]],[19,20,["G2835"]]]},{"k":23261,"v":[[0,3,["G191"]],[3,4,["G3754"]],[4,7,["G4483"]],[7,12,["G744"]],[12,15,["G3756"]],[15,17,["G3431"]]]},{"k":23262,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G3956"]],[7,8,["G991"]],[8,11,["G1135"]],[11,13,["G1937"]],[13,15,["G846"]],[15,18,["G3431"]],[18,20,["G846"]],[20,21,["G2235"]],[21,22,["G1722"]],[22,23,["G848"]],[23,24,["G2588"]]]},{"k":23263,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G4675"]],[3,4,["G1188"]],[4,5,["G3788"]],[5,6,["G4624"]],[6,7,["G4571"]],[7,10,["G1807","G846"]],[10,11,["G2532"]],[11,12,["G906"]],[12,14,["G575"]],[14,15,["G4675"]],[15,16,["G1063"]],[16,19,["G4851"]],[19,21,["G4671"]],[21,22,["G2443"]],[22,23,["G1520"]],[23,25,["G4675"]],[25,26,["G3196"]],[26,28,["G622"]],[28,29,["G2532"]],[29,30,["G3361"]],[30,32,["G4675"]],[32,33,["G3650"]],[33,34,["G4983"]],[34,37,["G906"]],[37,38,["G1519"]],[38,39,["G1067"]]]},{"k":23264,"v":[[0,1,["G2532"]],[1,2,["G1487"]],[2,3,["G4675"]],[3,4,["G1188"]],[4,5,["G5495"]],[5,6,["G4624"]],[6,7,["G4571"]],[7,10,["G1581","G846"]],[10,11,["G2532"]],[11,12,["G906"]],[12,14,["G575"]],[14,15,["G4675"]],[15,16,["G1063"]],[16,19,["G4851"]],[19,21,["G4671"]],[21,22,["G2443"]],[22,23,["G1520"]],[23,25,["G4675"]],[25,26,["G3196"]],[26,28,["G622"]],[28,29,["G2532"]],[29,30,["G3361"]],[30,32,["G4675"]],[32,33,["G3650"]],[33,34,["G4983"]],[34,37,["G906"]],[37,38,["G1519"]],[38,39,["G1067"]]]},{"k":23265,"v":[[0,1,["(G1161)"]],[1,4,["G4483"]],[4,5,["G3739","G302"]],[5,8,["G630"]],[8,9,["G848"]],[9,10,["G1135"]],[10,13,["G1325"]],[13,14,["G846"]],[14,18,["G647"]]]},{"k":23266,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G3739","G302"]],[7,10,["G630"]],[10,11,["G848"]],[11,12,["G1135"]],[12,14,["G3924"]],[14,16,["G3056"]],[16,18,["G4202"]],[18,19,["G4160"]],[19,20,["G846"]],[20,23,["G3429"]],[23,24,["G2532"]],[24,25,["G3739","G1437"]],[25,27,["G1060"]],[27,31,["G630"]],[31,33,["G3429"]]]},{"k":23267,"v":[[0,1,["G3825"]],[1,4,["G191"]],[4,5,["G3754"]],[5,9,["G4483"]],[9,14,["G744"]],[14,17,["G3756"]],[17,18,["G1964"]],[18,20,["G1161"]],[20,22,["G591"]],[22,24,["G3588"]],[24,25,["G2962"]],[25,26,["G4675"]],[26,27,["G3727"]]]},{"k":23268,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3660"]],[6,7,["G3361"]],[7,9,["G3654"]],[9,10,["G3383"]],[10,11,["G1722"]],[11,12,["G3772"]],[12,13,["G3754"]],[13,15,["G2076"]],[15,16,["G2316"]],[16,17,["G2362"]]]},{"k":23269,"v":[[0,1,["G3383"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G1093"]],[4,5,["G3754"]],[5,7,["G2076"]],[7,8,["G846"]],[8,9,["G5286","G4228"]],[9,10,["G3383"]],[10,11,["G1519"]],[11,12,["G2414"]],[12,13,["G3754"]],[13,15,["G2076"]],[15,17,["G4172"]],[17,19,["G3588"]],[19,20,["G3173"]],[20,21,["G935"]]]},{"k":23270,"v":[[0,1,["G3383"]],[1,4,["G3660"]],[4,5,["G1722"]],[5,6,["G4675"]],[6,7,["G2776"]],[7,8,["G3754"]],[8,10,["G1410"]],[10,11,["G3756"]],[11,12,["G4160"]],[12,13,["G3391"]],[13,14,["G2359"]],[14,15,["G3022"]],[15,16,["G2228"]],[16,17,["G3189"]]]},{"k":23271,"v":[[0,1,["G1161"]],[1,3,["G5216"]],[3,4,["G3056"]],[4,5,["G2077"]],[5,6,["G3483"]],[6,7,["G3483"]],[7,8,["G3756"]],[8,9,["G3756"]],[9,10,["G1161"]],[10,13,["G4053"]],[13,15,["G5130"]],[15,16,["G2076"]],[16,17,["G1537"]],[17,18,["G4190"]]]},{"k":23272,"v":[[0,3,["G191"]],[3,4,["G3754"]],[4,8,["G4483"]],[8,10,["G3788"]],[10,11,["G473"]],[11,13,["G3788"]],[13,14,["G2532"]],[14,16,["G3599"]],[16,17,["G473"]],[17,19,["G3599"]]]},{"k":23273,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G3004"]],[3,5,["G5213"]],[5,8,["G436"]],[8,9,["G3361"]],[9,10,["G4190"]],[10,11,["G235"]],[11,12,["G3748"]],[12,14,["G4474"]],[14,15,["G4571"]],[15,16,["G1909"]],[16,17,["G4675"]],[17,18,["G1188"]],[18,19,["G4600"]],[19,20,["G4762"]],[20,22,["G846"]],[22,23,["G3588"]],[23,24,["G243"]],[24,25,["G2532"]]]},{"k":23274,"v":[[0,1,["G2532"]],[1,5,["G2309"]],[5,10,["G2919","G4671"]],[10,11,["G2532"]],[11,13,["G2983"]],[13,14,["G4675"]],[14,15,["G5509"]],[15,17,["G846"]],[17,18,["G863"]],[18,20,["G2440"]],[20,21,["G2532"]]]},{"k":23275,"v":[[0,1,["G2532"]],[1,2,["G3748"]],[2,7,["G29","G4571"]],[7,8,["G1520"]],[8,9,["G3400"]],[9,10,["G5217"]],[10,11,["G3326"]],[11,12,["G846"]],[12,13,["G1417"]]]},{"k":23276,"v":[[0,1,["G1325"]],[1,5,["G154"]],[5,6,["G4571"]],[6,7,["G2532"]],[7,11,["G2309"]],[11,12,["G1155"]],[12,13,["G575"]],[13,14,["G4675"]],[14,18,["G654","G3361"]]]},{"k":23277,"v":[[0,3,["G191"]],[3,4,["G3754"]],[4,8,["G4483"]],[8,11,["G25"]],[11,12,["G4675"]],[12,13,["G4139"]],[13,14,["G2532"]],[14,15,["G3404"]],[15,16,["G4675"]],[16,17,["G2190"]]]},{"k":23278,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G3004"]],[3,5,["G5213"]],[5,6,["G25"]],[6,7,["G5216"]],[7,8,["G2190"]],[8,9,["G2127"]],[9,12,["G2672"]],[12,13,["G5209"]],[13,14,["G4160"]],[14,15,["G2573"]],[15,19,["G3404"]],[19,20,["G5209"]],[20,21,["G2532"]],[21,22,["G4336"]],[22,23,["G5228"]],[23,27,["G1908"]],[27,28,["G5209"]],[28,29,["G2532"]],[29,30,["G1377"]],[30,31,["G5209"]]]},{"k":23279,"v":[[0,1,["G3704"]],[1,4,["G1096"]],[4,6,["G5207"]],[6,8,["G5216"]],[8,9,["G3962"]],[9,10,["G3588"]],[10,12,["G1722"]],[12,13,["G3772"]],[13,14,["G3754"]],[14,17,["G848"]],[17,18,["G2246"]],[18,20,["G393"]],[20,21,["G1909"]],[21,23,["G4190"]],[23,24,["G2532"]],[24,27,["G18"]],[27,28,["G2532"]],[28,30,["G1026"]],[30,31,["G1909"]],[31,33,["G1342"]],[33,34,["G2532"]],[34,37,["G94"]]]},{"k":23280,"v":[[0,1,["G1063"]],[1,2,["G1437"]],[2,4,["G25"]],[4,7,["G25"]],[7,8,["G5209"]],[8,9,["G5101"]],[9,10,["G3408"]],[10,11,["G2192"]],[11,13,["G4160"]],[13,14,["G3780"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G5057"]],[17,18,["G3588"]],[18,19,["G846"]]]},{"k":23281,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G782"]],[4,5,["G5216"]],[5,6,["G80"]],[6,7,["G3440"]],[7,8,["G5101"]],[8,9,["G4160"]],[9,11,["G4053"]],[11,14,["G4160"]],[14,15,["G3780"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G5057"]],[18,19,["G3779"]]]},{"k":23282,"v":[[0,1,["G2071"]],[1,2,["G5210"]],[2,3,["G3767"]],[3,4,["G5046"]],[4,6,["G5618"]],[6,7,["G5216"]],[7,8,["G3962"]],[8,9,["G3588"]],[9,11,["G1722"]],[11,12,["G3772"]],[12,13,["G2076"]],[13,14,["G5046"]]]},{"k":23283,"v":[[0,2,["G4337"]],[2,5,["G4160"]],[5,6,["G3361"]],[6,7,["G5216"]],[7,8,["G1654"]],[8,9,["G1715"]],[9,10,["G444"]],[10,13,["G2300"]],[13,15,["G846"]],[15,16,["G1490"]],[16,18,["G2192"]],[18,19,["G3756"]],[19,20,["G3408"]],[20,21,["G3844"]],[21,22,["G5216"]],[22,23,["G3962"]],[23,24,["G3588"]],[24,26,["G1722"]],[26,27,["G3772"]]]},{"k":23284,"v":[[0,1,["G3767"]],[1,2,["G3752"]],[2,4,["G4160"]],[4,6,["G1654"]],[6,8,["G3361"]],[8,11,["G4537"]],[11,12,["G1715"]],[12,13,["G4675"]],[13,14,["G5618"]],[14,15,["G3588"]],[15,16,["G5273"]],[16,17,["G4160"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,20,["G4864"]],[20,21,["G2532"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G4505"]],[24,25,["G3704"]],[25,29,["G1392"]],[29,30,["G5259"]],[30,31,["G444"]],[31,32,["G281"]],[32,34,["G3004"]],[34,36,["G5213"]],[36,38,["G568"]],[38,39,["G848"]],[39,40,["G3408"]]]},{"k":23285,"v":[[0,1,["G1161"]],[1,3,["G4675"]],[3,4,["G4160"]],[4,5,["G1654"]],[5,7,["G3361"]],[7,8,["G4675"]],[8,10,["G710"]],[10,11,["G1097"]],[11,12,["G5101"]],[12,13,["G4675"]],[13,15,["G1188"]],[15,16,["G4160"]]]},{"k":23286,"v":[[0,1,["G3704"]],[1,2,["G4675"]],[2,3,["G1654"]],[3,5,["G5600"]],[5,6,["G1722"]],[6,7,["G2927"]],[7,8,["G2532"]],[8,9,["G4675"]],[9,10,["G3962"]],[10,12,["G991"]],[12,13,["G1722"]],[13,14,["G2927"]],[14,15,["G848"]],[15,17,["G591"]],[17,18,["G4671"]],[18,19,["G1722","G5318"]]]},{"k":23287,"v":[[0,1,["G2532"]],[1,2,["G3752"]],[2,4,["G4336"]],[4,7,["G3756"]],[7,8,["G2071"]],[8,9,["G5618"]],[9,10,["G3588"]],[10,11,["G5273"]],[11,13,["G3754"]],[13,15,["G5368"]],[15,17,["G4336"]],[17,18,["G2476"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G4864"]],[21,22,["G2532"]],[22,23,["G1722"]],[23,24,["G3588"]],[24,25,["G1137"]],[25,27,["G3588"]],[27,28,["G4113"]],[28,29,["G3704"]],[29,33,["G5316","G302"]],[33,35,["G444"]],[35,36,["G281"]],[36,38,["G3004"]],[38,40,["G5213"]],[40,42,["G568"]],[42,43,["G848"]],[43,44,["G3408"]]]},{"k":23288,"v":[[0,1,["G1161"]],[1,2,["G4771"]],[2,3,["G3752"]],[3,5,["G4336"]],[5,6,["G1525"]],[6,7,["G1519"]],[7,8,["G4675"]],[8,9,["G5009"]],[9,10,["G2532"]],[10,14,["G2808"]],[14,15,["G4675"]],[15,16,["G2374"]],[16,17,["G4336"]],[17,19,["G4675"]],[19,20,["G3962"]],[20,21,["G3588"]],[21,23,["G1722"]],[23,24,["G2927"]],[24,25,["G2532"]],[25,26,["G4675"]],[26,27,["G3962"]],[27,29,["G991"]],[29,30,["G1722"]],[30,31,["G2927"]],[31,33,["G591"]],[33,34,["G4671"]],[34,35,["G1722","G5318"]]]},{"k":23289,"v":[[0,1,["G1161"]],[1,4,["G4336"]],[4,8,["G945","G3361"]],[8,9,["G5618"]],[9,10,["G3588"]],[10,11,["G1482"]],[11,13,["G1063"]],[13,15,["G1380"]],[15,16,["G3754"]],[16,20,["G1522"]],[20,21,["G1722"]],[21,22,["G848"]],[22,24,["G4180"]]]},{"k":23290,"v":[[0,2,["G3361"]],[2,4,["G3767"]],[4,6,["G3666"]],[6,7,["G846"]],[7,8,["G1063"]],[8,9,["G5216"]],[9,10,["G3962"]],[10,11,["G1492"]],[11,13,["G3739"]],[13,15,["G2192"]],[15,16,["G5532"]],[16,18,["G4253"]],[18,19,["G5209"]],[19,20,["G154"]],[20,21,["G846"]]]},{"k":23291,"v":[[0,3,["G3779"]],[3,4,["G3767"]],[4,5,["G4336"]],[5,6,["G5210"]],[6,7,["G2257"]],[7,8,["G3962"]],[8,9,["G3588"]],[9,11,["G1722"]],[11,12,["G3772"]],[12,13,["G37"]],[13,15,["G4675"]],[15,16,["G3686"]]]},{"k":23292,"v":[[0,1,["G4675"]],[1,2,["G932"]],[2,3,["G2064"]],[3,4,["G4675"]],[4,5,["G2307"]],[5,7,["G1096"]],[7,8,["G1909"]],[8,9,["G1093"]],[9,10,["G5613"]],[10,13,["G1722"]],[13,14,["G3772"]]]},{"k":23293,"v":[[0,1,["G1325"]],[1,2,["G2254"]],[2,4,["G4594"]],[4,5,["G2257"]],[5,6,["G1967"]],[6,7,["G740"]]]},{"k":23294,"v":[[0,1,["G2532"]],[1,2,["G863"]],[2,3,["G2254"]],[3,4,["G2257"]],[4,5,["G3783"]],[5,6,["G5613"]],[6,7,["G2249"]],[7,8,["G863"]],[8,9,["G2257"]],[9,10,["G3781"]]]},{"k":23295,"v":[[0,1,["G2532"]],[1,2,["G1533"]],[2,3,["G2248"]],[3,4,["G3361"]],[4,5,["G1519"]],[5,6,["G3986"]],[6,7,["G235"]],[7,8,["G4506"]],[8,9,["G2248"]],[9,10,["G575"]],[10,11,["G4190"]],[11,12,["G3754"]],[12,13,["G4675"]],[13,14,["G2076"]],[14,15,["G3588"]],[15,16,["G932"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G1411"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G1391"]],[22,24,["G1519","G165"]],[24,25,["G281"]]]},{"k":23296,"v":[[0,1,["G1063"]],[1,2,["G1437"]],[2,4,["G863"]],[4,5,["G444"]],[5,6,["G846"]],[6,7,["G3900"]],[7,8,["G5216"]],[8,9,["G3770"]],[9,10,["G3962"]],[10,12,["G2532"]],[12,13,["G863"]],[13,14,["G5213"]]]},{"k":23297,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,4,["G863"]],[4,5,["G3361"]],[5,6,["G444"]],[6,7,["G846"]],[7,8,["G3900"]],[8,9,["G3761"]],[9,11,["G5216"]],[11,12,["G3962"]],[12,13,["G863"]],[13,14,["G5216"]],[14,15,["G3900"]]]},{"k":23298,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,4,["G3522"]],[4,5,["G1096"]],[5,6,["G3361"]],[6,7,["G5618"]],[7,8,["G3588"]],[8,9,["G5273"]],[9,13,["G4659"]],[13,14,["G1063"]],[14,16,["G853"]],[16,17,["G848"]],[17,18,["G4383"]],[18,19,["G3704"]],[19,22,["G5316"]],[22,24,["G444"]],[24,26,["G3522"]],[26,27,["G281"]],[27,29,["G3004"]],[29,31,["G5213"]],[31,33,["G568"]],[33,34,["G848"]],[34,35,["G3408"]]]},{"k":23299,"v":[[0,1,["G1161"]],[1,2,["G4771"]],[2,5,["G3522"]],[5,6,["G218"]],[6,7,["G4675"]],[7,8,["G2776"]],[8,9,["G2532"]],[9,10,["G3538"]],[10,11,["G4675"]],[11,12,["G4383"]]]},{"k":23300,"v":[[0,1,["G3704"]],[1,3,["G5316"]],[3,4,["G3361"]],[4,6,["G444"]],[6,8,["G3522"]],[8,9,["G235"]],[9,11,["G4675"]],[11,12,["G3962"]],[12,13,["G3588"]],[13,15,["G1722"]],[15,16,["G2927"]],[16,17,["G2532"]],[17,18,["G4675"]],[18,19,["G3962"]],[19,21,["G991"]],[21,22,["G1722"]],[22,23,["G2927"]],[23,25,["G591"]],[25,26,["G4671"]],[26,27,["G1722","G5318"]]]},{"k":23301,"v":[[0,3,["G2343","G3361"]],[3,5,["G5213"]],[5,6,["G2344"]],[6,7,["G1909"]],[7,8,["G1093"]],[8,9,["G3699"]],[9,10,["G4597"]],[10,11,["G2532"]],[11,12,["G1035"]],[12,14,["G853"]],[14,15,["G2532"]],[15,16,["G3699"]],[16,17,["G2812"]],[17,19,["G1358"]],[19,20,["G2532"]],[20,21,["G2813"]]]},{"k":23302,"v":[[0,1,["G1161"]],[1,3,["G2343"]],[3,5,["G5213"]],[5,6,["G2344"]],[6,7,["G1722"]],[7,8,["G3772"]],[8,9,["G3699"]],[9,10,["G3777"]],[10,11,["G4597"]],[11,12,["G3777"]],[12,13,["G1035"]],[13,15,["G853"]],[15,16,["G2532"]],[16,17,["G3699"]],[17,18,["G2812"]],[18,20,["G3756"]],[20,22,["G1358"]],[22,23,["G3761"]],[23,24,["G2813"]]]},{"k":23303,"v":[[0,1,["G1063"]],[1,2,["G3699"]],[2,3,["G5216"]],[3,4,["G2344"]],[4,5,["G2076"]],[5,6,["G1563"]],[6,8,["G5216"]],[8,9,["G2588"]],[9,10,["G2071"]],[10,11,["G2532"]]]},{"k":23304,"v":[[0,1,["G3588"]],[1,2,["G3088"]],[2,4,["G3588"]],[4,5,["G4983"]],[5,6,["G2076"]],[6,7,["G3588"]],[7,8,["G3788"]],[8,9,["G1437"]],[9,10,["G3767"]],[10,11,["G4675"]],[11,12,["G3788"]],[12,13,["G5600"]],[13,14,["G573"]],[14,15,["G4675"]],[15,16,["G3650"]],[16,17,["G4983"]],[17,19,["G2071"]],[19,22,["G5460"]]]},{"k":23305,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,3,["G4675"]],[3,4,["G3788"]],[4,5,["G5600"]],[5,6,["G4190"]],[6,7,["G4675"]],[7,8,["G3650"]],[8,9,["G4983"]],[9,11,["G2071"]],[11,14,["G4652"]],[14,15,["G1487"]],[15,16,["G3767"]],[16,17,["G3588"]],[17,18,["G5457"]],[18,19,["G3588"]],[19,21,["G1722"]],[21,22,["G4671"]],[22,23,["G2076"]],[23,24,["G4655"]],[24,26,["G4214"]],[26,29,["G4655"]]]},{"k":23306,"v":[[0,2,["G3762"]],[2,3,["G1410"]],[3,4,["G1398"]],[4,5,["G1417"]],[5,6,["G2962"]],[6,7,["G1063"]],[7,8,["G2228"]],[8,11,["G3404"]],[11,12,["G3588"]],[12,13,["G1520"]],[13,14,["G2532"]],[14,15,["G25"]],[15,16,["G3588"]],[16,17,["G2087"]],[17,18,["G2228"]],[18,22,["G472"]],[22,25,["G1520"]],[25,26,["G2532"]],[26,27,["G2706"]],[27,28,["G3588"]],[28,29,["G2087"]],[29,31,["G1410","G3756"]],[31,32,["G1398"]],[32,33,["G2316"]],[33,34,["G2532"]],[34,35,["G3126"]]]},{"k":23307,"v":[[0,1,["G1223","G5124"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,8,["G3309","G3361"]],[8,10,["G5216"]],[10,11,["G5590"]],[11,12,["G5101"]],[12,15,["G5315"]],[15,16,["G2532"]],[16,17,["G5101"]],[17,20,["G4095"]],[20,22,["G3366"]],[22,24,["G5216"]],[24,25,["G4983"]],[25,26,["G5101"]],[26,30,["G1746"]],[30,31,["G2076"]],[31,32,["G3780"]],[32,33,["G3588"]],[33,34,["G5590"]],[34,35,["G4119"]],[35,37,["G5160"]],[37,38,["G2532"]],[38,39,["G3588"]],[39,40,["G4983"]],[40,42,["G1742"]]]},{"k":23308,"v":[[0,1,["G1689","G1519"]],[1,2,["G3588"]],[2,3,["G4071"]],[3,5,["G3588"]],[5,6,["G3772"]],[6,7,["G3754"]],[7,9,["G4687"]],[9,10,["G3756"]],[10,11,["G3761"]],[11,14,["G2325"]],[14,15,["G3761"]],[15,16,["G4863"]],[16,17,["G1519"]],[17,18,["G596"]],[18,19,["G2532"]],[19,20,["G5216"]],[20,21,["G3770"]],[21,22,["G3962"]],[22,23,["G5142"]],[23,24,["G846"]],[24,29,["G1308","G5210","G3756","G3123"]],[29,31,["G846"]]]},{"k":23309,"v":[[0,0,["(G1161)"]],[0,1,["G5101"]],[1,2,["G1537"]],[2,3,["G5216"]],[3,6,["G3309"]],[6,7,["G1410"]],[7,8,["G4369"]],[8,9,["G1520"]],[9,10,["G4083"]],[10,11,["G1909"]],[11,12,["G848"]],[12,13,["G2244"]]]},{"k":23310,"v":[[0,1,["G2532"]],[1,2,["G5101"]],[2,5,["G3309"]],[5,6,["G4012"]],[6,7,["G1742"]],[7,8,["G2648"]],[8,9,["G3588"]],[9,10,["G2918"]],[10,12,["G3588"]],[12,13,["G68"]],[13,14,["G4459"]],[14,16,["G837"]],[16,18,["G2872"]],[18,19,["G3756"]],[19,20,["G3761"]],[20,23,["G3514"]]]},{"k":23311,"v":[[0,1,["G1161"]],[1,4,["G3004"]],[4,6,["G5213"]],[6,7,["G3754"]],[7,8,["G3761"]],[8,9,["G4672"]],[9,10,["G1722"]],[10,11,["G3956"]],[11,12,["G848"]],[12,13,["G1391"]],[13,16,["G4016"]],[16,17,["G5613"]],[17,18,["G1520"]],[18,20,["G5130"]]]},{"k":23312,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G2316"]],[3,4,["G3779"]],[4,5,["G294"]],[5,6,["G3588"]],[6,7,["G5528"]],[7,9,["G3588"]],[9,10,["G68"]],[10,13,["G4594"]],[13,14,["G5607"]],[14,15,["G2532"]],[15,17,["G839"]],[17,19,["G906"]],[19,20,["G1519"]],[20,22,["G2823"]],[22,25,["G3756"]],[25,26,["G4183"]],[26,27,["G3123"]],[27,29,["G5209"]],[29,34,["G3640"]]]},{"k":23313,"v":[[0,1,["G3767"]],[1,4,["G3309","G3361"]],[4,5,["G3004"]],[5,6,["G5101"]],[6,9,["G5315"]],[9,10,["G2228"]],[10,11,["G5101"]],[11,14,["G4095"]],[14,15,["G2228"]],[15,16,["G5101"]],[16,20,["G4016"]]]},{"k":23314,"v":[[0,1,["G1063"]],[1,3,["G3956"]],[3,5,["G5023"]],[5,7,["G3588"]],[7,8,["G1484"]],[8,9,["G1934"]],[9,10,["G1063"]],[10,11,["G5216"]],[11,12,["G3770"]],[12,13,["G3962"]],[13,14,["G1492"]],[14,15,["G3754"]],[15,18,["G5535"]],[18,20,["G537"]],[20,22,["G5130"]]]},{"k":23315,"v":[[0,1,["G1161"]],[1,2,["G2212"]],[2,4,["G4412"]],[4,5,["G3588"]],[5,6,["G932"]],[6,8,["G2316"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G1343"]],[11,12,["G2532"]],[12,13,["G3956"]],[13,15,["G5023"]],[15,18,["G4369"]],[18,20,["G5213"]]]},{"k":23316,"v":[[0,4,["G3361","G3767","G3309"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G839"]],[7,8,["G1063"]],[8,9,["G3588"]],[9,10,["G839"]],[10,13,["G3309"]],[13,16,["G3588"]],[16,18,["G1438"]],[18,19,["G713"]],[19,21,["G3588"]],[21,22,["G2250"]],[22,24,["G3588"]],[24,25,["G2549"]],[25,26,["G846"]]]},{"k":23317,"v":[[0,1,["G2919"]],[1,2,["G3361"]],[2,3,["G2443"]],[3,6,["G3361"]],[6,7,["G2919"]]]},{"k":23318,"v":[[0,1,["G1063"]],[1,2,["G1722"]],[2,3,["G3739"]],[3,4,["G2917"]],[4,6,["G2919"]],[6,10,["G2919"]],[10,11,["G2532"]],[11,12,["G1722"]],[12,13,["G3739"]],[13,14,["G3358"]],[14,16,["G3354"]],[16,23,["G488","G5213"]]]},{"k":23319,"v":[[0,1,["G1161"]],[1,2,["G5101"]],[2,3,["G991"]],[3,5,["G3588"]],[5,6,["G2595"]],[6,7,["G3588"]],[7,9,["G1722"]],[9,10,["G4675"]],[10,11,["G80"]],[11,12,["G3788"]],[12,13,["G1161"]],[13,14,["G2657"]],[14,15,["G3756"]],[15,16,["G3588"]],[16,17,["G1385"]],[17,20,["G1722"]],[20,22,["G4674"]],[22,23,["G3788"]]]},{"k":23320,"v":[[0,1,["G2228"]],[1,2,["G4459"]],[2,5,["G2046"]],[5,7,["G4675"]],[7,8,["G80"]],[8,9,["G863"]],[9,12,["G1544"]],[12,13,["G3588"]],[13,14,["G2595"]],[14,16,["G575"]],[16,17,["G4675"]],[17,18,["G3788"]],[18,19,["G2532"]],[19,20,["G2400"]],[20,22,["G1385"]],[22,23,["G1722"]],[23,25,["G4675"]],[25,27,["G3788"]]]},{"k":23321,"v":[[0,2,["G5273"]],[2,3,["G4412"]],[3,5,["G1544"]],[5,6,["G3588"]],[6,7,["G1385"]],[7,8,["G1537"]],[8,11,["G4675"]],[11,12,["G3788"]],[12,13,["G2532"]],[13,14,["G5119"]],[14,18,["G1227"]],[18,21,["G1544"]],[21,22,["G3588"]],[22,23,["G2595"]],[23,25,["G1537"]],[25,26,["G4675"]],[26,27,["G80"]],[27,28,["G3788"]]]},{"k":23322,"v":[[0,1,["G1325"]],[1,2,["G3361"]],[2,6,["G40"]],[6,8,["G3588"]],[8,9,["G2965"]],[9,10,["G3366"]],[10,11,["G906"]],[11,13,["G5216"]],[13,14,["G3135"]],[14,15,["G1715"]],[15,16,["G5519"]],[16,17,["G3379"]],[17,19,["G2662"]],[19,20,["G846"]],[20,21,["G1722"]],[21,22,["G848"]],[22,23,["G4228"]],[23,24,["G2532"]],[24,26,["G4762"]],[26,28,["G4486"]],[28,29,["G5209"]]]},{"k":23323,"v":[[0,1,["G154"]],[1,2,["G2532"]],[2,6,["G1325"]],[6,7,["G5213"]],[7,8,["G2212"]],[8,9,["G2532"]],[9,12,["G2147"]],[12,13,["G2925"]],[13,14,["G2532"]],[14,18,["G455"]],[18,20,["G5213"]]]},{"k":23324,"v":[[0,1,["G1063"]],[1,3,["G3956"]],[3,5,["G154"]],[5,6,["G2983"]],[6,7,["G2532"]],[7,10,["G2212"]],[10,11,["G2147"]],[11,12,["G2532"]],[12,16,["G2925"]],[16,20,["G455"]]]},{"k":23325,"v":[[0,1,["G2228"]],[1,2,["G5101"]],[2,3,["G444"]],[3,4,["G2076"]],[4,6,["G1537"]],[6,7,["G5216"]],[7,8,["G3739"]],[8,9,["G1437"]],[9,10,["G846"]],[10,11,["G5207"]],[11,12,["G154"]],[12,13,["G740"]],[13,16,["G1929"]],[16,17,["G846"]],[17,18,["(G3361)"]],[18,19,["G3037"]]]},{"k":23326,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G154"]],[4,6,["G2486"]],[6,9,["G1929"]],[9,10,["G846"]],[10,12,["G3789"]]]},{"k":23327,"v":[[0,1,["G1487"]],[1,2,["G5210"]],[2,3,["G3767"]],[3,4,["G5607"]],[4,5,["G4190"]],[5,6,["G1492"]],[6,9,["G1325"]],[9,10,["G18"]],[10,11,["G1390"]],[11,13,["G5216"]],[13,14,["G5043"]],[14,16,["G4214"]],[16,17,["G3123"]],[17,19,["G5216"]],[19,20,["G3962"]],[20,21,["G3588"]],[21,23,["G1722"]],[23,24,["G3772"]],[24,25,["G1325"]],[25,27,["G18"]],[27,31,["G154"]],[31,32,["G846"]]]},{"k":23328,"v":[[0,1,["G3767"]],[1,3,["G3956"]],[3,4,["G3745","G302"]],[4,6,["G2309"]],[6,7,["G2443"]],[7,8,["G444"]],[8,10,["G4160"]],[10,12,["G5213"]],[12,13,["G4160"]],[13,14,["G5210"]],[14,15,["G2532"]],[15,16,["G3779"]],[16,18,["G846"]],[18,19,["G1063"]],[19,20,["G3778"]],[20,21,["G2076"]],[21,22,["G3588"]],[22,23,["G3551"]],[23,24,["G2532"]],[24,25,["G3588"]],[25,26,["G4396"]]]},{"k":23329,"v":[[0,1,["G1525"]],[1,3,["G1223"]],[3,5,["G3588"]],[5,6,["G4728"]],[6,7,["G4439"]],[7,8,["G3754"]],[8,9,["G4116"]],[9,11,["G3588"]],[11,12,["G4439"]],[12,13,["G2532"]],[13,14,["G2149"]],[14,16,["G3588"]],[16,17,["G3598"]],[17,19,["G520"]],[19,20,["G1519"]],[20,21,["G684"]],[21,22,["G2532"]],[22,23,["G4183"]],[23,25,["G1526"]],[25,28,["G1525"]],[28,29,["G1223","G846"]]]},{"k":23330,"v":[[0,1,["G3754"]],[1,2,["G4728"]],[2,4,["G3588"]],[4,5,["G4439"]],[5,6,["G2532"]],[6,7,["G2346"]],[7,9,["G3588"]],[9,10,["G3598"]],[10,11,["G3588"]],[11,12,["G520"]],[12,13,["G1519"]],[13,14,["G2222"]],[14,15,["G2532"]],[15,16,["G3641"]],[16,18,["G1526"]],[18,20,["G2147"]],[20,21,["G846"]]]},{"k":23331,"v":[[0,1,["G4337"]],[1,2,["G575"]],[2,4,["G5578"]],[4,5,["G3748"]],[5,6,["G2064"]],[6,7,["G4314"]],[7,8,["G5209"]],[8,9,["G1722"]],[9,10,["G4263"]],[10,11,["G1742"]],[11,12,["G1161"]],[12,13,["G2081"]],[13,15,["G1526"]],[15,16,["G727"]],[16,17,["G3074"]]]},{"k":23332,"v":[[0,3,["G1921"]],[3,4,["G846"]],[4,5,["G575"]],[5,6,["G846"]],[6,7,["G2590"]],[7,9,["(G3385)"]],[9,10,["G4816"]],[10,11,["G4718"]],[11,12,["G575"]],[12,13,["G173"]],[13,14,["G2228"]],[14,15,["G4810"]],[15,16,["G575"]],[16,17,["G5146"]]]},{"k":23333,"v":[[0,2,["G3779"]],[2,3,["G3956"]],[3,4,["G18"]],[4,5,["G1186"]],[5,7,["G4160"]],[7,8,["G2570"]],[8,9,["G2590"]],[9,10,["G1161"]],[10,12,["G4550"]],[12,13,["G1186"]],[13,15,["G4160"]],[15,16,["G4190"]],[16,17,["G2590"]]]},{"k":23334,"v":[[0,2,["G18"]],[2,3,["G1186"]],[3,4,["G1410","G3756"]],[4,6,["G4160"]],[6,7,["G4190"]],[7,8,["G2590"]],[8,9,["G3761"]],[9,12,["G4550"]],[12,13,["G1186"]],[13,15,["G4160"]],[15,16,["G2570"]],[16,17,["G2590"]]]},{"k":23335,"v":[[0,1,["G3956"]],[1,2,["G1186"]],[2,6,["G4160","G3361"]],[6,7,["G2570"]],[7,8,["G2590"]],[8,11,["G1581"]],[11,12,["G2532"]],[12,13,["G906"]],[13,14,["G1519"]],[14,16,["G4442"]]]},{"k":23336,"v":[[0,1,["G686"]],[1,2,["G575"]],[2,3,["G846"]],[3,4,["G2590"]],[4,7,["G1921"]],[7,8,["G846"]]]},{"k":23337,"v":[[0,1,["G3756"]],[1,3,["G3956"]],[3,5,["G3004"]],[5,7,["G3427"]],[7,8,["G2962"]],[8,9,["G2962"]],[9,11,["G1525"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G932"]],[14,16,["G3772"]],[16,17,["G235"]],[17,20,["G4160"]],[20,21,["G3588"]],[21,22,["G2307"]],[22,24,["G3450"]],[24,25,["G3962"]],[25,26,["G3588"]],[26,28,["G1722"]],[28,29,["G3772"]]]},{"k":23338,"v":[[0,1,["G4183"]],[1,3,["G2046"]],[3,5,["G3427"]],[5,6,["G1722"]],[6,7,["G1565"]],[7,8,["G2250"]],[8,9,["G2962"]],[9,10,["G2962"]],[10,13,["G3756"]],[13,14,["G4395"]],[14,16,["G4674"]],[16,17,["G3686"]],[17,18,["G2532"]],[18,20,["G4674"]],[20,21,["G3686"]],[21,24,["G1544"]],[24,25,["G1140"]],[25,26,["G2532"]],[26,28,["G4674"]],[28,29,["G3686"]],[29,30,["G4160"]],[30,31,["G4183"]],[31,33,["G1411"]]]},{"k":23339,"v":[[0,1,["G2532"]],[1,2,["G5119"]],[2,5,["G3670"]],[5,7,["G846"]],[7,9,["G3763"]],[9,10,["G1097"]],[10,11,["G5209"]],[11,12,["G672"]],[12,13,["G575"]],[13,14,["G1700"]],[14,17,["G2038"]],[17,18,["G458"]]]},{"k":23340,"v":[[0,1,["G3767"]],[1,2,["G3956","G3748"]],[2,3,["G191"]],[3,4,["G5128"]],[4,5,["G3056"]],[5,7,["G3450"]],[7,8,["G2532"]],[8,9,["G4160"]],[9,10,["G846"]],[10,13,["G3666"]],[13,14,["G846"]],[14,17,["G5429"]],[17,18,["G435"]],[18,19,["G3748"]],[19,20,["G3618"]],[20,21,["G848"]],[21,22,["G3614"]],[22,23,["G1909"]],[23,25,["G4073"]]]},{"k":23341,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1028"]],[3,4,["G2597"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G4215"]],[7,8,["G2064"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G417"]],[11,12,["G4154"]],[12,13,["G2532"]],[13,15,["G4363"]],[15,16,["G1565"]],[16,17,["G3614"]],[17,18,["G2532"]],[18,20,["G4098"]],[20,21,["G3756"]],[21,22,["G1063"]],[22,25,["G2311"]],[25,26,["G1909"]],[26,28,["G4073"]]]},{"k":23342,"v":[[0,1,["G2532"]],[1,3,["G3956"]],[3,5,["G191"]],[5,6,["G5128"]],[6,7,["G3056"]],[7,9,["G3450"]],[9,10,["G2532"]],[10,11,["G4160"]],[11,12,["G846"]],[12,13,["G3361"]],[13,16,["G3666"]],[16,19,["G3474"]],[19,20,["G435"]],[20,21,["G3748"]],[21,22,["G3618"]],[22,23,["G848"]],[23,24,["G3614"]],[24,25,["G1909"]],[25,26,["G3588"]],[26,27,["G285"]]]},{"k":23343,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1028"]],[3,4,["G2597"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G4215"]],[7,8,["G2064"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G417"]],[11,12,["G4154"]],[12,13,["G2532"]],[13,15,["G4350"]],[15,16,["G1565"]],[16,17,["G3614"]],[17,18,["G2532"]],[18,20,["G4098"]],[20,21,["G2532"]],[21,22,["G3173"]],[22,23,["G2258"]],[23,24,["G3588"]],[24,25,["G4431"]],[25,27,["G846"]]]},{"k":23344,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,6,["G3753"]],[6,7,["G2424"]],[7,9,["G4931"]],[9,10,["G5128"]],[10,11,["G3056"]],[11,12,["G3588"]],[12,13,["G3793"]],[13,15,["G1605"]],[15,16,["G1909"]],[16,17,["G846"]],[17,18,["G1322"]]]},{"k":23345,"v":[[0,1,["G1063"]],[1,3,["G2258","G1321"]],[3,4,["G846"]],[4,5,["G5613"]],[5,7,["G2192"]],[7,8,["G1849"]],[8,9,["G2532"]],[9,10,["G3756"]],[10,11,["G5613"]],[11,12,["G3588"]],[12,13,["G1122"]]]},{"k":23346,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,5,["G2597"]],[5,6,["G575"]],[6,7,["G3588"]],[7,8,["G3735"]],[8,9,["G4183"]],[9,10,["G3793"]],[10,11,["G190"]],[11,12,["G846"]]]},{"k":23347,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G2064"]],[4,6,["G3015"]],[6,8,["G4352"]],[8,9,["G846"]],[9,10,["G3004"]],[10,11,["G2962"]],[11,12,["G1437"]],[12,14,["G2309"]],[14,16,["G1410"]],[16,19,["G2511","G3165"]]]},{"k":23348,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,4,["G1614"]],[4,6,["G5495"]],[6,8,["G680"]],[8,9,["G846"]],[9,10,["G3004"]],[10,12,["G2309"]],[12,15,["G2511"]],[15,16,["G2532"]],[16,17,["G2112"]],[17,18,["G846"]],[18,19,["G3014"]],[19,21,["G2511"]]]},{"k":23349,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G3708"]],[6,8,["G2036"]],[8,10,["G3367"]],[10,11,["G235"]],[11,14,["G5217"]],[14,15,["G1166"]],[15,16,["G4572"]],[16,18,["G3588"]],[18,19,["G2409"]],[19,20,["G2532"]],[20,21,["G4374"]],[21,22,["G3588"]],[22,23,["G1435"]],[23,24,["G3739"]],[24,25,["G3475"]],[25,26,["G4367"]],[26,27,["G1519"]],[27,29,["G3142"]],[29,31,["G846"]]]},{"k":23350,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,5,["G1525"]],[5,6,["G1519"]],[6,7,["G2584"]],[7,9,["G4334"]],[9,11,["G846"]],[11,13,["G1543"]],[13,14,["G3870"]],[14,15,["G846"]]]},{"k":23351,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,3,["G2962"]],[3,4,["G3450"]],[4,5,["G3816"]],[5,6,["G906"]],[6,7,["G1722"]],[7,8,["G3614"]],[8,12,["G3885"]],[12,13,["G1171"]],[13,14,["G928"]]]},{"k":23352,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G1473"]],[6,8,["G2064"]],[8,10,["G2323"]],[10,11,["G846"]]]},{"k":23353,"v":[[0,0,["(G2532)"]],[0,1,["G3588"]],[1,2,["G1543"]],[2,3,["G611"]],[3,5,["G5346"]],[5,6,["G2962"]],[6,8,["G1510"]],[8,9,["G3756"]],[9,10,["G2425"]],[10,11,["G2443"]],[11,14,["G1525"]],[14,15,["G5259"]],[15,16,["G3450"]],[16,17,["G4721"]],[17,18,["G235"]],[18,19,["G2036"]],[19,21,["G3056"]],[21,22,["G3440"]],[22,23,["G2532"]],[23,24,["G3450"]],[24,25,["G3816"]],[25,28,["G2390"]]]},{"k":23354,"v":[[0,0,["(G2532)"]],[0,1,["G1063"]],[1,2,["G1473"]],[2,4,["G1510"]],[4,5,["G444"]],[5,6,["G5259"]],[6,7,["G1849"]],[7,8,["G2192"]],[8,9,["G4757"]],[9,10,["G5259"]],[10,11,["G1683"]],[11,12,["G2532"]],[12,14,["G3004"]],[14,16,["G5129"]],[16,18,["G4198"]],[18,19,["G2532"]],[19,21,["G4198"]],[21,22,["G2532"]],[22,24,["G243"]],[24,25,["G2064"]],[25,26,["G2532"]],[26,28,["G2064"]],[28,29,["G2532"]],[29,31,["G3450"]],[31,32,["G1401"]],[32,33,["G4160"]],[33,34,["G5124"]],[34,35,["G2532"]],[35,37,["G4160"]],[37,38,[]]]},{"k":23355,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G191"]],[3,6,["G2296"]],[6,7,["G2532"]],[7,8,["G2036"]],[8,12,["G190"]],[12,13,["G281"]],[13,15,["G3004"]],[15,17,["G5213"]],[17,21,["G2147"]],[21,23,["G5118"]],[23,24,["G4102"]],[24,26,["G3761"]],[26,27,["G1722"]],[27,28,["G2474"]]]},{"k":23356,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G4183"]],[7,9,["G2240"]],[9,10,["G575"]],[10,12,["G395"]],[12,13,["G2532"]],[13,14,["G1424"]],[14,15,["G2532"]],[15,18,["G347"]],[18,19,["G3326"]],[19,20,["G11"]],[20,21,["G2532"]],[21,22,["G2464"]],[22,23,["G2532"]],[23,24,["G2384"]],[24,25,["G1722"]],[25,26,["G3588"]],[26,27,["G932"]],[27,29,["G3772"]]]},{"k":23357,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G3588"]],[5,6,["G932"]],[6,10,["G1544"]],[10,11,["G1519"]],[11,12,["G1857"]],[12,13,["G4655"]],[13,14,["G1563"]],[14,16,["G2071"]],[16,17,["G2805"]],[17,18,["G2532"]],[18,19,["G1030"]],[19,21,["G3599"]]]},{"k":23358,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G3588"]],[5,6,["G1543"]],[6,9,["G5217"]],[9,10,["G2532"]],[10,11,["G5613"]],[11,14,["G4100"]],[14,18,["G1096"]],[18,20,["G4671"]],[20,21,["G2532"]],[21,22,["G846"]],[22,23,["G3816"]],[23,25,["G2390"]],[25,26,["G1722"]],[26,28,["G1565"]],[28,29,["G5610"]]]},{"k":23359,"v":[[0,1,["G2532"]],[1,3,["G2424"]],[3,5,["G2064"]],[5,6,["G1519"]],[6,7,["G4074"]],[7,8,["G3614"]],[8,10,["G1492"]],[10,11,["G846"]],[11,13,["G3994"]],[13,14,["G906"]],[14,15,["G2532"]],[15,19,["G4445"]]]},{"k":23360,"v":[[0,1,["G2532"]],[1,3,["G680"]],[3,4,["G846"]],[4,5,["G5495"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G4446"]],[8,9,["G863"]],[9,10,["G846"]],[10,11,["G2532"]],[11,13,["G1453"]],[13,14,["G2532"]],[14,15,["G1247"]],[15,17,["G846"]]]},{"k":23361,"v":[[0,1,["G1161"]],[1,3,["G3798"]],[3,5,["G1096"]],[5,7,["G4374"]],[7,9,["G846"]],[9,10,["G4183"]],[10,15,["G1139"]],[15,16,["G2532"]],[16,19,["G1544"]],[19,20,["G3588"]],[20,21,["G4151"]],[21,24,["G3056"]],[24,25,["G2532"]],[25,26,["G2323"]],[26,27,["G3956"]],[27,30,["G2192","G2560"]]]},{"k":23362,"v":[[0,1,["G3704"]],[1,5,["G4137"]],[5,8,["G4483"]],[8,9,["G1223"]],[9,10,["G2268"]],[10,11,["G3588"]],[11,12,["G4396"]],[12,13,["G3004"]],[13,14,["G846"]],[14,15,["G2983"]],[15,16,["G2257"]],[16,17,["G769"]],[17,18,["G2532"]],[18,19,["G941"]],[19,21,["G3554"]]]},{"k":23363,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,4,["G1492"]],[4,5,["G4183"]],[5,6,["G3793"]],[6,7,["G4012"]],[7,8,["G846"]],[8,11,["G2753"]],[11,13,["G565"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,17,["G4008"]]]},{"k":23364,"v":[[0,1,["G2532"]],[1,3,["G1520"]],[3,4,["G1122"]],[4,5,["G4334"]],[5,7,["G2036"]],[7,9,["G846"]],[9,10,["G1320"]],[10,13,["G190"]],[13,14,["G4671"]],[14,15,["G3699","G1437"]],[15,17,["G565"]]]},{"k":23365,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G3588"]],[6,7,["G258"]],[7,8,["G2192"]],[8,9,["G5454"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G4071"]],[12,14,["G3588"]],[14,15,["G3772"]],[15,17,["G2682"]],[17,18,["G1161"]],[18,19,["G3588"]],[19,20,["G5207"]],[20,22,["G444"]],[22,23,["G2192"]],[23,24,["G3756"]],[24,25,["G4226"]],[25,27,["G2827"]],[27,29,["G2776"]]]},{"k":23366,"v":[[0,1,["G1161"]],[1,2,["G2087"]],[2,4,["G846"]],[4,5,["G3101"]],[5,6,["G2036"]],[6,8,["G846"]],[8,9,["G2962"]],[9,10,["G2010"]],[10,11,["G3427"]],[11,12,["G4412"]],[12,14,["G565"]],[14,15,["G2532"]],[15,16,["G2290"]],[16,17,["G3450"]],[17,18,["G3962"]]]},{"k":23367,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G190"]],[6,7,["G3427"]],[7,8,["G2532"]],[8,9,["G863"]],[9,10,["G3588"]],[10,11,["G3498"]],[11,12,["G2290"]],[12,13,["G1438"]],[13,14,["G3498"]]]},{"k":23368,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G1684"]],[5,6,["G1519"]],[6,8,["G4143"]],[8,9,["G846"]],[9,10,["G3101"]],[10,11,["G190"]],[11,12,["G846"]]]},{"k":23369,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G1096"]],[4,6,["G3173"]],[6,7,["G4578"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G2281"]],[10,12,["G5620"]],[12,13,["G3588"]],[13,14,["G4143"]],[14,16,["G2572"]],[16,17,["G5259"]],[17,18,["G3588"]],[18,19,["G2949"]],[19,20,["G1161"]],[20,21,["G846"]],[21,23,["G2518"]]]},{"k":23370,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3101"]],[3,4,["G4334"]],[4,8,["G1453"]],[8,9,["G846"]],[9,10,["G3004"]],[10,11,["G2962"]],[11,12,["G4982"]],[12,13,["G2248"]],[13,15,["G622"]]]},{"k":23371,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G5101"]],[6,7,["G2075"]],[7,9,["G1169"]],[9,14,["G3640"]],[14,15,["G5119"]],[15,17,["G1453"]],[17,19,["G2008"]],[19,20,["G3588"]],[20,21,["G417"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G2281"]],[24,25,["G2532"]],[25,27,["G1096"]],[27,29,["G3173"]],[29,30,["G1055"]]]},{"k":23372,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G444"]],[3,4,["G2296"]],[4,5,["G3004"]],[5,9,["G4217"]],[9,10,["G2076"]],[10,11,["G3778"]],[11,12,["G3754"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G417"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G2281"]],[18,19,["G5219"]],[19,20,["G846"]]]},{"k":23373,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G2064"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,9,["G4008"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G5561"]],[12,14,["G3588"]],[14,15,["G1086"]],[15,17,["G5221"]],[17,18,["G846"]],[18,19,["G1417"]],[19,22,["G1139"]],[22,23,["G1831"]],[23,24,["G1537"]],[24,26,["G3588"]],[26,27,["G3419"]],[27,28,["G3029"]],[28,29,["G5467"]],[29,31,["G5620"]],[31,32,["G3361"]],[32,33,["G5100"]],[33,34,["G2480"]],[34,35,["G3928"]],[35,36,["G1223"]],[36,37,["G1565"]],[37,38,["G3598"]]]},{"k":23374,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,5,["G2896"]],[5,6,["G3004"]],[6,13,["G5101","G2254","G4671"]],[13,14,["G2424"]],[14,16,["G5207"]],[16,18,["G2316"]],[18,21,["G2064"]],[21,22,["G5602"]],[22,24,["G928"]],[24,25,["G2248"]],[25,26,["G4253"]],[26,28,["G2540"]]]},{"k":23375,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,7,["G3112"]],[7,8,["G575"]],[8,9,["G846"]],[9,11,["G34"]],[11,13,["G4183"]],[13,14,["G5519"]],[14,15,["G1006"]]]},{"k":23376,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1142"]],[3,4,["G3870"]],[4,5,["G846"]],[5,6,["G3004"]],[6,7,["G1487"]],[7,11,["G1544","G2248"]],[11,12,["G2010"]],[12,13,["G2254"]],[13,16,["G565"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,19,["G34"]],[19,21,["G5519"]]]},{"k":23377,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G5217"]],[6,7,["G1161"]],[7,12,["G1831"]],[12,14,["G565"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G34"]],[17,19,["G5519"]],[19,20,["G2532"]],[20,21,["G2400"]],[21,22,["G3588"]],[22,23,["G3956"]],[23,24,["G34"]],[24,26,["G5519"]],[26,28,["G3729"]],[28,29,["G2596"]],[29,32,["G2911"]],[32,33,["G1519"]],[33,34,["G3588"]],[34,35,["G2281"]],[35,36,["G2532"]],[36,37,["G599"]],[37,38,["G1722"]],[38,39,["G3588"]],[39,40,["G5204"]]]},{"k":23378,"v":[[0,1,["G1161"]],[1,4,["G1006"]],[4,6,["G5343"]],[6,7,["G2532"]],[7,10,["G565"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G4172"]],[13,14,["G2532"]],[14,15,["G518"]],[15,17,["G3956"]],[17,18,["G2532"]],[18,21,["G3588"]],[21,23,["G3588"]],[23,27,["G1139"]]]},{"k":23379,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G3588"]],[3,4,["G3956"]],[4,5,["G4172"]],[5,7,["G1831"]],[7,9,["G1519","G4877"]],[9,10,["G2424"]],[10,11,["G2532"]],[11,14,["G1492"]],[14,15,["G846"]],[15,17,["G3870"]],[17,19,["G3704"]],[19,22,["G3327"]],[22,24,["G575"]],[24,25,["G846"]],[25,26,["G3725"]]]},{"k":23380,"v":[[0,1,["G2532"]],[1,3,["G1684"]],[3,4,["G1519"]],[4,6,["G4143"]],[6,9,["G1276"]],[9,10,["G2532"]],[10,11,["G2064"]],[11,12,["G1519"]],[12,14,["G2398"]],[14,15,["G4172"]]]},{"k":23381,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G4374"]],[4,6,["G846"]],[6,12,["G3885"]],[12,13,["G906"]],[13,14,["G1909"]],[14,16,["G2825"]],[16,17,["G2532"]],[17,18,["G2424"]],[18,19,["G1492"]],[19,20,["G846"]],[20,21,["G4102"]],[21,22,["G2036"]],[22,24,["G3588"]],[24,28,["G3885"]],[28,29,["G5043"]],[29,33,["G2293"]],[33,34,["G4675"]],[34,35,["G266"]],[35,37,["G863"]],[37,38,["G4671"]]]},{"k":23382,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G5100"]],[3,5,["G3588"]],[5,6,["G1122"]],[6,7,["G2036"]],[7,8,["G1722"]],[8,9,["G1438"]],[9,10,["G3778"]],[10,12,["G987"]]]},{"k":23383,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G1492"]],[3,4,["G846"]],[4,5,["G1761"]],[5,6,["G2036"]],[6,7,["G2444"]],[7,8,["G1760"]],[8,9,["G5210"]],[9,10,["G4190"]],[10,11,["G1722"]],[11,12,["G5216"]],[12,13,["G2588"]]]},{"k":23384,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,3,["G2076"]],[3,4,["G2123"]],[4,6,["G2036"]],[6,8,["G266"]],[8,10,["G863"]],[10,11,["G4671"]],[11,12,["G2228"]],[12,14,["G2036"]],[14,15,["G1453"]],[15,16,["G2532"]],[16,17,["G4043"]]]},{"k":23385,"v":[[0,1,["G1161"]],[1,2,["G2443"]],[2,5,["G1492"]],[5,6,["G3754"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G444"]],[10,11,["G2192"]],[11,12,["G1849"]],[12,13,["G1909"]],[13,14,["G1093"]],[14,16,["G863"]],[16,17,["G266"]],[17,18,["G5119"]],[18,19,["G3004"]],[19,22,["G3588"]],[22,26,["G3885"]],[26,27,["G1453"]],[27,29,["G142"]],[29,30,["G4675"]],[30,31,["G2825"]],[31,32,["G2532"]],[32,33,["G5217"]],[33,34,["G1519"]],[34,35,["G4675"]],[35,36,["G3624"]]]},{"k":23386,"v":[[0,1,["G2532"]],[1,3,["G1453"]],[3,5,["G565"]],[5,6,["G1519"]],[6,7,["G848"]],[7,8,["G3624"]]]},{"k":23387,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G3793"]],[4,5,["G1492"]],[5,8,["G2296"]],[8,9,["G2532"]],[9,10,["G1392"]],[10,11,["G2316"]],[11,14,["G1325"]],[14,15,["G5108"]],[15,16,["G1849"]],[16,18,["G444"]]]},{"k":23388,"v":[[0,1,["G2532"]],[1,3,["G2424"]],[3,5,["G3855"]],[5,7,["G1564"]],[7,9,["G1492"]],[9,11,["G444"]],[11,12,["G3004"]],[12,13,["G3156"]],[13,14,["G2521"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,19,["G5058"]],[19,20,["G2532"]],[20,22,["G3004"]],[22,24,["G846"]],[24,25,["G190"]],[25,27,["G2532"]],[27,28,["G3427"]],[28,29,["G450"]],[29,31,["G190"]],[31,32,["G846"]]]},{"k":23389,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G2424"]],[7,10,["G345"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G3614"]],[13,14,["(G2400)"]],[14,15,["G4183"]],[15,16,["G5057"]],[16,17,["G2532"]],[17,18,["G268"]],[18,19,["G2064"]],[19,22,["G4873"]],[22,24,["G846"]],[24,25,["G2532"]],[25,26,["G846"]],[26,27,["G3101"]]]},{"k":23390,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G5330"]],[4,5,["G1492"]],[5,8,["G2036"]],[8,10,["G846"]],[10,11,["G3101"]],[11,12,["G1302"]],[12,13,["G2068"]],[13,14,["G5216"]],[14,15,["G1320"]],[15,16,["G3326"]],[16,17,["G5057"]],[17,18,["G2532"]],[18,19,["G268"]]]},{"k":23391,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,4,["G191"]],[4,7,["G2036"]],[7,9,["G846"]],[9,13,["G2480"]],[13,14,["G2192","G5532"]],[14,15,["G3756"]],[15,17,["G2395"]],[17,18,["G235"]],[18,22,["G2192","G2560"]]]},{"k":23392,"v":[[0,1,["G1161"]],[1,2,["G4198"]],[2,5,["G3129"]],[5,6,["G5101"]],[6,8,["G2076"]],[8,10,["G2309"]],[10,12,["G1656"]],[12,13,["G2532"]],[13,14,["G3756"]],[14,15,["G2378"]],[15,16,["G1063"]],[16,19,["G3756"]],[19,20,["G2064"]],[20,22,["G2564"]],[22,24,["G1342"]],[24,25,["G235"]],[25,26,["G268"]],[26,27,["G1519"]],[27,28,["G3341"]]]},{"k":23393,"v":[[0,1,["G5119"]],[1,2,["G4334"]],[2,4,["G846"]],[4,5,["G3588"]],[5,6,["G3101"]],[6,8,["G2491"]],[8,9,["G3004"]],[9,10,["G1302"]],[10,12,["G2249"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G5330"]],[15,16,["G3522"]],[16,17,["G4183"]],[17,18,["G1161"]],[18,19,["G4675"]],[19,20,["G3101"]],[20,21,["G3522"]],[21,22,["G3756"]]]},{"k":23394,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G1410","(G3361)"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G3588"]],[10,11,["G3567"]],[11,12,["G3996"]],[12,15,["G1909","G3745"]],[15,16,["G3588"]],[16,17,["G3566"]],[17,18,["G2076"]],[18,19,["G3326"]],[19,20,["G846"]],[20,21,["G1161"]],[21,23,["G2250"]],[23,25,["G2064"]],[25,26,["G3752"]],[26,27,["G3588"]],[27,28,["G3566"]],[28,31,["G522"]],[31,32,["G575"]],[32,33,["G846"]],[33,34,["G2532"]],[34,35,["G5119"]],[35,38,["G3522"]]]},{"k":23395,"v":[[0,0,["(G1161)"]],[0,2,["G3762"]],[2,3,["G1911"]],[3,5,["G1915"]],[5,7,["G46"]],[7,8,["G4470"]],[8,9,["G1909"]],[9,11,["G3820"]],[11,12,["G2440"]],[12,13,["G1063"]],[13,22,["G4138","G846"]],[22,23,["G142"]],[23,24,["G575"]],[24,25,["G3588"]],[25,26,["G2440"]],[26,27,["G2532"]],[27,29,["G4978"]],[29,30,["G1096"]],[30,32,["G5501"]]]},{"k":23396,"v":[[0,1,["G3761"]],[1,4,["G906"]],[4,5,["G3501"]],[5,6,["G3631"]],[6,7,["G1519"]],[7,8,["G3820"]],[8,9,["G779"]],[9,10,["G1490"]],[10,11,["G3588"]],[11,12,["G779"]],[12,13,["G4486"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G3631"]],[16,18,["G1632"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G779"]],[21,22,["G622"]],[22,23,["G235"]],[23,25,["G906"]],[25,26,["G3501"]],[26,27,["G3631"]],[27,28,["G1519"]],[28,29,["G2537"]],[29,30,["G779"]],[30,31,["G2532"]],[31,32,["G297"]],[32,34,["G4933"]]]},{"k":23397,"v":[[0,2,["G846"]],[2,3,["G2980"]],[3,5,["G5023"]],[5,7,["G846"]],[7,8,["G2400"]],[8,10,["G2064"]],[10,12,["G1520"]],[12,13,["G758"]],[13,14,["G2532"]],[14,15,["G4352"]],[15,16,["G846"]],[16,17,["G3004"]],[17,18,["G3450"]],[18,19,["G2364"]],[19,23,["G5053","G737"]],[23,24,["G235"]],[24,25,["G2064"]],[25,26,["G2532"]],[26,27,["G2007"]],[27,28,["G4675"]],[28,29,["G5495"]],[29,30,["G1909"]],[30,31,["G846"]],[31,32,["G2532"]],[32,35,["G2198"]]]},{"k":23398,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G1453"]],[3,5,["G190"]],[5,6,["G846"]],[6,7,["G2532"]],[7,10,["G846"]],[10,11,["G3101"]]]},{"k":23399,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G1135"]],[4,12,["G131"]],[12,13,["G1427"]],[13,14,["G2094"]],[14,15,["G4334"]],[15,16,["G3693"]],[16,19,["G680"]],[19,20,["G3588"]],[20,21,["G2899"]],[21,23,["G846"]],[23,24,["G2440"]]]},{"k":23400,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,4,["G1722"]],[4,5,["G1438"]],[5,6,["G1437"]],[6,9,["G3440"]],[9,10,["G680"]],[10,11,["G846"]],[11,12,["G2440"]],[12,16,["G4982"]]]},{"k":23401,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,5,["G1994"]],[5,6,["G2532"]],[6,9,["G1492"]],[9,10,["G846"]],[10,12,["G2036"]],[12,13,["G2364"]],[13,17,["G2293"]],[17,18,["G4675"]],[18,19,["G4102"]],[19,23,["G4982","G4571"]],[23,24,["G2532"]],[24,25,["G3588"]],[25,26,["G1135"]],[26,29,["G4982"]],[29,30,["G575"]],[30,31,["G1565"]],[31,32,["G5610"]]]},{"k":23402,"v":[[0,1,["G2532"]],[1,3,["G2424"]],[3,4,["G2064"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G758"]],[7,8,["G3614"]],[8,9,["G2532"]],[9,10,["G1492"]],[10,11,["G3588"]],[11,12,["G834"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G3793"]],[15,18,["G2350"]]]},{"k":23403,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,6,["G402"]],[6,7,["G1063"]],[7,8,["G3588"]],[8,9,["G2877"]],[9,12,["G599","G3756"]],[12,13,["G235"]],[13,14,["G2518"]],[14,15,["G2532"]],[15,20,["G2606","G846"]]]},{"k":23404,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,3,["G3588"]],[3,4,["G3793"]],[4,7,["G1544"]],[7,10,["G1525"]],[10,12,["G2902"]],[12,13,["G846"]],[13,15,["G3588"]],[15,16,["G5495"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G2877"]],[19,20,["G1453"]]]},{"k":23405,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5345"]],[3,4,["G3778"]],[4,6,["G1831"]],[6,7,["G1519"]],[7,8,["G3650"]],[8,9,["G1565"]],[9,10,["G1093"]]]},{"k":23406,"v":[[0,1,["G2532"]],[1,3,["G2424"]],[3,4,["G3855"]],[4,5,["G1564"]],[5,6,["G1417"]],[6,8,["G5185"]],[8,9,["G190"]],[9,10,["G846"]],[10,11,["G2896"]],[11,12,["G2532"]],[12,13,["G3004"]],[13,15,["G5207"]],[15,17,["G1138"]],[17,19,["G1653"]],[19,21,["G2248"]]]},{"k":23407,"v":[[0,1,["G1161"]],[1,5,["G2064"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G3614"]],[8,9,["G3588"]],[9,11,["G5185"]],[11,12,["G4334"]],[12,14,["G846"]],[14,15,["G2532"]],[15,16,["G2424"]],[16,17,["G3004"]],[17,19,["G846"]],[19,20,["G4100"]],[20,22,["G3754"]],[22,25,["G1410"]],[25,27,["G4160"]],[27,29,["G5124"]],[29,30,["G3004"]],[30,32,["G846"]],[32,33,["G3483"]],[33,34,["G2962"]]]},{"k":23408,"v":[[0,1,["G5119"]],[1,2,["G680"]],[2,4,["G846"]],[4,5,["G3788"]],[5,6,["G3004"]],[6,7,["G2596"]],[7,9,["G5216"]],[9,10,["G4102"]],[10,12,["G1096"]],[12,14,["G5213"]]]},{"k":23409,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3788"]],[3,5,["G455"]],[5,6,["G2532"]],[6,7,["G2424"]],[7,9,["G1690"]],[9,10,["G846"]],[10,11,["G3004"]],[11,12,["G3708"]],[12,15,["G3367"]],[15,16,["G1097"]],[16,17,[]]]},{"k":23410,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,6,["G1831"]],[6,10,["G1310","G846"]],[10,11,["G1722"]],[11,12,["G3650"]],[12,13,["G1565"]],[13,14,["G1093"]]]},{"k":23411,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,4,["G1831"]],[4,5,["G2400"]],[5,7,["G4374"]],[7,9,["G846"]],[9,11,["G2974"]],[11,12,["G444"]],[12,16,["G1139"]]]},{"k":23412,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G1140"]],[4,7,["G1544"]],[7,8,["G3588"]],[8,9,["G2974"]],[9,10,["G2980"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G3793"]],[13,14,["G2296"]],[14,15,["G3004"]],[15,18,["G3763"]],[18,19,["G3779"]],[19,20,["G5316"]],[20,21,["G1722"]],[21,22,["G2474"]]]},{"k":23413,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,4,["G3004"]],[4,7,["G1544"]],[7,8,["G1140"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G758"]],[11,13,["G3588"]],[13,14,["G1140"]]]},{"k":23414,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,4,["G4013"]],[4,5,["G3956"]],[5,6,["G3588"]],[6,7,["G4172"]],[7,8,["G2532"]],[8,9,["G2968"]],[9,10,["G1321"]],[10,11,["G1722"]],[11,12,["G846"]],[12,13,["G4864"]],[13,14,["G2532"]],[14,15,["G2784"]],[15,16,["G3588"]],[16,17,["G2098"]],[17,19,["G3588"]],[19,20,["G932"]],[20,21,["G2532"]],[21,22,["G2323"]],[22,23,["G3956"]],[23,24,["G3554"]],[24,25,["G2532"]],[25,26,["G3956"]],[26,27,["G3119"]],[27,28,["G1722"]],[28,29,["G3588"]],[29,30,["G2992"]]]},{"k":23415,"v":[[0,1,["G1161"]],[1,4,["G1492"]],[4,5,["G3588"]],[5,6,["G3793"]],[6,11,["G4697"]],[11,12,["G4012"]],[12,13,["G846"]],[13,14,["G3754"]],[14,16,["G2258","G1590"]],[16,17,["G2532"]],[17,20,["G4496"]],[20,21,["G5616"]],[21,22,["G4263"]],[22,23,["G2192"]],[23,24,["G3361"]],[24,25,["G4166"]]]},{"k":23416,"v":[[0,1,["G5119"]],[1,2,["G3004"]],[2,5,["G848"]],[5,6,["G3101"]],[6,7,["G3588"]],[7,8,["G2326"]],[8,9,["G3303"]],[9,11,["G4183"]],[11,12,["G1161"]],[12,13,["G3588"]],[13,14,["G2040"]],[14,16,["G3641"]]]},{"k":23417,"v":[[0,1,["G1189"]],[1,3,["G3767"]],[3,4,["G3588"]],[4,5,["G2962"]],[5,7,["G3588"]],[7,8,["G2326"]],[8,9,["G3704"]],[9,13,["G1544"]],[13,14,["G2040"]],[14,15,["G1519"]],[15,16,["G848"]],[16,17,["G2326"]]]},{"k":23418,"v":[[0,1,["G2532"]],[1,6,["G4341"]],[6,8,["G848"]],[8,9,["G1427"]],[9,10,["G3101"]],[10,12,["G1325"]],[12,13,["G846"]],[13,14,["G1849"]],[14,16,["G169"]],[16,17,["G4151"]],[17,18,["G5620"]],[18,21,["G1544","G846"]],[21,22,["G2532"]],[22,24,["G2323"]],[24,26,["G3956"]],[26,28,["G3554"]],[28,29,["G2532"]],[29,31,["G3956"]],[31,33,["G3119"]]]},{"k":23419,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3686"]],[3,5,["G3588"]],[5,6,["G1427"]],[6,7,["G652"]],[7,8,["G2076"]],[8,9,["G5023"]],[9,11,["G4413"]],[11,12,["G4613"]],[12,15,["G3004"]],[15,16,["G4074"]],[16,17,["G2532"]],[17,18,["G406"]],[18,19,["G846"]],[19,20,["G80"]],[20,21,["G2385"]],[21,22,["G3588"]],[22,25,["G2199"]],[25,26,["G2532"]],[26,27,["G2491"]],[27,28,["G846"]],[28,29,["G80"]]]},{"k":23420,"v":[[0,1,["G5376"]],[1,2,["G2532"]],[2,3,["G918"]],[3,4,["G2381"]],[4,5,["G2532"]],[5,6,["G3156"]],[6,7,["G3588"]],[7,8,["G5057"]],[8,9,["G2385"]],[9,10,["G2385"]],[10,13,["G256"]],[13,14,["G2532"]],[14,15,["G3002"]],[15,18,["G1941"]],[18,19,["G2280"]]]},{"k":23421,"v":[[0,1,["G4613"]],[1,2,["G3588"]],[2,3,["G2581"]],[3,4,["G2532"]],[4,5,["G2455"]],[5,6,["G2469"]],[6,9,["G3860","G2532"]],[9,10,["G846"]]]},{"k":23422,"v":[[0,1,["G5128"]],[1,2,["G1427"]],[2,3,["G2424"]],[3,5,["G649"]],[5,7,["G3853"]],[7,8,["G846"]],[8,9,["G3004"]],[9,10,["G565"]],[10,11,["G3361"]],[11,12,["G1519"]],[12,14,["G3598"]],[14,17,["G1484"]],[17,18,["G2532"]],[18,19,["G1519"]],[19,21,["G4172"]],[21,24,["G4541"]],[24,25,["G1525"]],[25,27,["G3361"]]]},{"k":23423,"v":[[0,1,["G1161"]],[1,2,["G4198"]],[2,3,["G3123"]],[3,4,["G4314"]],[4,6,["G622"]],[6,7,["G4263"]],[7,10,["G3624"]],[10,12,["G2474"]]]},{"k":23424,"v":[[0,1,["G1161"]],[1,4,["G4198"]],[4,5,["G2784"]],[5,6,["G3004"]],[6,7,["G3588"]],[7,8,["G932"]],[8,10,["G3772"]],[10,13,["G1448"]]]},{"k":23425,"v":[[0,1,["G2323"]],[1,3,["G770"]],[3,4,["G2511"]],[4,6,["G3015"]],[6,7,["G1453"]],[7,9,["G3498"]],[9,11,["G1544"]],[11,12,["G1140"]],[12,13,["G1432"]],[13,16,["G2983"]],[16,17,["G1432"]],[17,18,["G1325"]]]},{"k":23426,"v":[[0,1,["G2932"]],[1,2,["G3361"]],[2,3,["G5557"]],[3,4,["G3366"]],[4,5,["G696"]],[5,6,["G3366"]],[6,7,["G5475"]],[7,8,["G1519"]],[8,9,["G5216"]],[9,10,["G2223"]]]},{"k":23427,"v":[[0,1,["G3361"]],[1,2,["G4082"]],[2,3,["G1519"]],[3,5,["G3598"]],[5,6,["G3366"]],[6,7,["G1417"]],[7,8,["G5509"]],[8,9,["G3366"]],[9,10,["G5266"]],[10,11,["G3366"]],[11,13,["G4464"]],[13,14,["G1063"]],[14,15,["G3588"]],[15,16,["G2040"]],[16,17,["G2076"]],[17,18,["G514"]],[18,20,["G848"]],[20,21,["G5160"]]]},{"k":23428,"v":[[0,1,["G1161"]],[1,2,["G1519"]],[2,3,["G3739","G302"]],[3,4,["G4172"]],[4,5,["G2228"]],[5,6,["G2968"]],[6,9,["G1525"]],[9,10,["G1833"]],[10,11,["G5101"]],[11,12,["G1722"]],[12,13,["G846"]],[13,14,["G2076"]],[14,15,["G514"]],[15,17,["G2546"]],[17,18,["G3306"]],[18,20,["G2193","G302"]],[20,21,["G1831"]],[21,22,[]]]},{"k":23429,"v":[[0,1,["G1161"]],[1,4,["G1525"]],[4,5,["G1519"]],[5,7,["G3614"]],[7,8,["G782"]],[8,9,["G846"]]]},{"k":23430,"v":[[0,1,["G2532"]],[1,2,["G1437","(G3303)"]],[2,3,["G3588"]],[3,4,["G3614"]],[4,5,["G5600"]],[5,6,["G514"]],[6,8,["G5216"]],[8,9,["G1515"]],[9,10,["G2064"]],[10,11,["G1909"]],[11,12,["G846"]],[12,13,["G1161"]],[13,17,["G3362","G5600"]],[17,18,["G514"]],[18,20,["G5216"]],[20,21,["G1515"]],[21,22,["G1994"]],[22,23,["G4314"]],[23,24,["G5209"]]]},{"k":23431,"v":[[0,1,["G2532"]],[1,2,["G3739","G1437"]],[2,4,["G3361"]],[4,5,["G1209"]],[5,6,["G5209"]],[6,7,["G3366"]],[7,8,["G191"]],[8,9,["G5216"]],[9,10,["G3056"]],[10,13,["G1831"]],[13,16,["G1565"]],[16,17,["G3614"]],[17,18,["G2228"]],[18,19,["G4172"]],[19,21,["G1621"]],[21,22,["G3588"]],[22,23,["G2868"]],[23,25,["G5216"]],[25,26,["G4228"]]]},{"k":23432,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,8,["G2071"]],[8,10,["G414"]],[10,13,["G1093"]],[13,15,["G4670"]],[15,16,["G2532"]],[16,17,["G1116"]],[17,18,["G1722"]],[18,20,["G2250"]],[20,22,["G2920"]],[22,23,["G2228"]],[23,25,["G1565"]],[25,26,["G4172"]]]},{"k":23433,"v":[[0,1,["G2400"]],[1,2,["G1473"]],[2,5,["G649","G5209"]],[5,6,["G5613"]],[6,7,["G4263"]],[7,8,["G1722"]],[8,10,["G3319"]],[10,12,["G3074"]],[12,13,["G1096"]],[13,15,["G3767"]],[15,16,["G5429"]],[16,17,["G5613"]],[17,18,["G3789"]],[18,19,["G2532"]],[19,20,["G185"]],[20,21,["G5613"]],[21,22,["G4058"]]]},{"k":23434,"v":[[0,1,["G1161"]],[1,2,["G4337"]],[2,3,["G575"]],[3,4,["G444"]],[4,5,["G1063"]],[5,10,["G3860","G5209"]],[10,11,["G1519"]],[11,13,["G4892"]],[13,14,["G2532"]],[14,17,["G3146"]],[17,18,["G5209"]],[18,19,["G1722"]],[19,20,["G848"]],[20,21,["G4864"]]]},{"k":23435,"v":[[0,1,["G2532"]],[1,4,["(G1161)"]],[4,5,["G71"]],[5,6,["G1909"]],[6,7,["G2232"]],[7,8,["G2532"]],[8,9,["G935"]],[9,12,["G1752","G1700"]],[12,13,["G1519"]],[13,15,["G3142"]],[15,17,["G846"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G1484"]]]},{"k":23436,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,6,["G3860","G5209"]],[6,9,["G3309","G3361"]],[9,10,["G4459"]],[10,11,["G2228"]],[11,12,["G5101"]],[12,15,["G2980"]],[15,16,["G1063"]],[16,20,["G1325"]],[20,21,["G5213"]],[21,22,["G1722"]],[22,24,["G1565"]],[24,25,["G5610"]],[25,26,["G5101"]],[26,29,["G2980"]]]},{"k":23437,"v":[[0,1,["G1063"]],[1,3,["G2075"]],[3,4,["G3756"]],[4,5,["G5210"]],[5,7,["G2980"]],[7,8,["G235"]],[8,9,["G3588"]],[9,10,["G4151"]],[10,12,["G5216"]],[12,13,["G3962"]],[13,15,["G2980"]],[15,16,["G1722"]],[16,17,["G5213"]]]},{"k":23438,"v":[[0,1,["G1161"]],[1,3,["G80"]],[3,6,["G3860"]],[6,8,["G80"]],[8,9,["G1519"]],[9,10,["G2288"]],[10,11,["G2532"]],[11,13,["G3962"]],[13,15,["G5043"]],[15,16,["G2532"]],[16,18,["G5043"]],[18,21,["G1881"]],[21,22,["G1909"]],[22,24,["G1118"]],[24,25,["G2532"]],[25,32,["G2289","G846"]]]},{"k":23439,"v":[[0,1,["G2532"]],[1,4,["G2071"]],[4,5,["G3404"]],[5,6,["G5259"]],[6,7,["G3956"]],[7,12,["G1223","G3450","G3686"]],[12,13,["G1161"]],[13,16,["G5278"]],[16,17,["G1519"]],[17,19,["G5056"]],[19,21,["(G3778)"]],[21,22,["G4982"]]]},{"k":23440,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,4,["G1377"]],[4,5,["G5209"]],[5,6,["G1722"]],[6,7,["G5026"]],[7,8,["G4172"]],[8,9,["G5343"]],[9,11,["G1519"]],[11,12,["G243"]],[12,13,["G1063"]],[13,14,["G281"]],[14,16,["G3004"]],[16,18,["G5213"]],[18,21,["G3364"]],[21,24,["G5055"]],[24,25,["G3588"]],[25,26,["G4172"]],[26,28,["G2474"]],[28,29,["G2193","G302"]],[29,30,["G3588"]],[30,31,["G5207"]],[31,33,["G444"]],[33,35,["G2064"]]]},{"k":23441,"v":[[0,2,["G3101"]],[2,3,["G2076"]],[3,4,["G3756"]],[4,5,["G5228"]],[5,7,["G1320"]],[7,8,["G3761"]],[8,10,["G1401"]],[10,11,["G5228"]],[11,12,["G848"]],[12,13,["G2962"]]]},{"k":23442,"v":[[0,3,["G713"]],[3,5,["G3588"]],[5,6,["G3101"]],[6,7,["G2443"]],[7,9,["G1096"]],[9,10,["G5613"]],[10,11,["G846"]],[11,12,["G1320"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G1401"]],[15,16,["G5613"]],[16,17,["G846"]],[17,18,["G2962"]],[18,19,["G1487"]],[19,22,["G2564"]],[22,23,["G3588"]],[23,27,["G3617"]],[27,28,["G954"]],[28,30,["G4214"]],[30,31,["G3123"]],[31,38,["G3615","G846"]]]},{"k":23443,"v":[[0,1,["G5399"]],[1,2,["G846"]],[2,3,["G3361"]],[3,4,["G3767"]],[4,5,["G1063"]],[5,7,["G2076"]],[7,8,["G3762"]],[8,9,["G2572"]],[9,10,["G3739"]],[10,12,["G3756"]],[12,14,["G601"]],[14,15,["G2532"]],[15,16,["G2927"]],[16,17,["G3739"]],[17,19,["G3756"]],[19,21,["G1097"]]]},{"k":23444,"v":[[0,1,["G3739"]],[1,3,["G3004"]],[3,4,["G5213"]],[4,5,["G1722"]],[5,6,["G4653"]],[6,8,["G2036"]],[8,10,["G1722"]],[10,11,["G5457"]],[11,12,["G2532"]],[12,13,["G3739"]],[13,15,["G191"]],[15,16,["G1519"]],[16,17,["G3588"]],[17,18,["G3775"]],[18,20,["G2784"]],[20,22,["G1909"]],[22,23,["G3588"]],[23,24,["G1430"]]]},{"k":23445,"v":[[0,1,["G2532"]],[1,2,["G5399"]],[2,3,["G3361","(G575)"]],[3,6,["G615"]],[6,7,["G3588"]],[7,8,["G4983"]],[8,9,["G1161"]],[9,11,["G3361"]],[11,12,["G1410"]],[12,14,["G615"]],[14,15,["G3588"]],[15,16,["G5590"]],[16,17,["G1161"]],[17,18,["G3123"]],[18,19,["G5399"]],[19,23,["G1410"]],[23,25,["G622"]],[25,26,["G2532"]],[26,27,["G5590"]],[27,28,["G2532"]],[28,29,["G4983"]],[29,30,["G1722"]],[30,31,["G1067"]]]},{"k":23446,"v":[[0,2,["G3780"]],[2,3,["G1417"]],[3,4,["G4765"]],[4,5,["G4453"]],[5,8,["G787"]],[8,9,["G2532"]],[9,10,["G1520"]],[10,11,["G1537"]],[11,12,["G846"]],[12,14,["G3756"]],[14,15,["G4098"]],[15,16,["G1909"]],[16,17,["G3588"]],[17,18,["G1093"]],[18,19,["G427"]],[19,20,["G5216"]],[20,21,["G3962"]]]},{"k":23447,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2532"]],[3,4,["G2359"]],[4,6,["G5216"]],[6,7,["G2776"]],[7,8,["G1526"]],[8,9,["G3956"]],[9,10,["G705"]]]},{"k":23448,"v":[[0,1,["G5399"]],[1,3,["G3361"]],[3,4,["G3767"]],[4,5,["G5210"]],[5,9,["G1308"]],[9,11,["G4183"]],[11,12,["G4765"]]]},{"k":23449,"v":[[0,1,["G3956","G3748"]],[1,2,["G3767"]],[2,4,["G3670","(G1722)"]],[4,5,["G1698"]],[5,6,["G1715"]],[6,7,["G444","(G1722)"]],[7,8,["G846"]],[8,12,["G2504","G3670"]],[12,13,["G1715"]],[13,14,["G3450"]],[14,15,["G3962"]],[15,16,["G3588"]],[16,18,["G1722"]],[18,19,["G3772"]]]},{"k":23450,"v":[[0,1,["G1161"]],[1,2,["G3748","G302"]],[2,4,["G720"]],[4,5,["G3165"]],[5,6,["G1715"]],[6,7,["G444"]],[7,8,["G846"]],[8,11,["G2504"]],[11,12,["G720"]],[12,13,["G1715"]],[13,14,["G3450"]],[14,15,["G3962"]],[15,16,["G3588"]],[16,18,["G1722"]],[18,19,["G3772"]]]},{"k":23451,"v":[[0,1,["G3543"]],[1,2,["G3361"]],[2,3,["G3754"]],[3,6,["G2064"]],[6,8,["G906"]],[8,9,["G1515"]],[9,10,["G1909"]],[10,11,["G1093"]],[11,13,["G2064"]],[13,14,["G3756"]],[14,16,["G906"]],[16,17,["G1515"]],[17,18,["G235"]],[18,20,["G3162"]]]},{"k":23452,"v":[[0,1,["G1063"]],[1,4,["G2064"]],[4,10,["G1369","G444"]],[10,11,["G2596"]],[11,12,["G848"]],[12,13,["G3962"]],[13,14,["G2532"]],[14,16,["G2364"]],[16,17,["G2596"]],[17,18,["G848"]],[18,19,["G3384"]],[19,20,["G2532"]],[20,24,["G3565"]],[24,25,["G2596"]],[25,26,["G848"]],[26,29,["G3994"]]]},{"k":23453,"v":[[0,1,["G2532"]],[1,3,["G444"]],[3,4,["G2190"]],[4,11,["G3615","G846"]]]},{"k":23454,"v":[[0,3,["G5368"]],[3,4,["G3962"]],[4,5,["G2228"]],[5,6,["G3384"]],[6,7,["G5228"]],[7,9,["G1691"]],[9,10,["G2076"]],[10,11,["G3756"]],[11,12,["G514"]],[12,14,["G3450"]],[14,15,["G2532"]],[15,18,["G5368"]],[18,19,["G5207"]],[19,20,["G2228"]],[20,21,["G2364"]],[21,22,["G5228"]],[22,24,["G1691"]],[24,25,["G2076"]],[25,26,["G3756"]],[26,27,["G514"]],[27,29,["G3450"]]]},{"k":23455,"v":[[0,1,["G2532"]],[1,2,["G3739"]],[2,4,["G2983"]],[4,5,["G3756"]],[5,6,["G848"]],[6,7,["G4716"]],[7,8,["G2532"]],[8,9,["G190"]],[9,10,["G3694"]],[10,11,["G3450"]],[11,12,["G2076"]],[12,13,["G3756"]],[13,14,["G514"]],[14,16,["G3450"]]]},{"k":23456,"v":[[0,3,["G2147"]],[3,4,["G848"]],[4,5,["G5590"]],[5,7,["G622"]],[7,8,["G846"]],[8,9,["G2532"]],[9,12,["G622"]],[12,13,["G848"]],[13,14,["G5590"]],[14,17,["G1752","G1700"]],[17,19,["G2147"]],[19,20,["G846"]]]},{"k":23457,"v":[[0,3,["G1209"]],[3,4,["G5209"]],[4,5,["G1209"]],[5,6,["G1691"]],[6,7,["G2532"]],[7,10,["G1209"]],[10,11,["G1691"]],[11,12,["G1209"]],[12,15,["G649"]],[15,16,["G3165"]]]},{"k":23458,"v":[[0,3,["G1209"]],[3,5,["G4396"]],[5,6,["G1519"]],[6,8,["G3686"]],[8,11,["G4396"]],[11,13,["G2983"]],[13,15,["G4396"]],[15,16,["G3408"]],[16,17,["G2532"]],[17,20,["G1209"]],[20,23,["G1342"]],[23,24,["G1519"]],[24,26,["G3686"]],[26,30,["G1342"]],[30,32,["G2983"]],[32,35,["G1342"]],[35,36,["G3408"]]]},{"k":23459,"v":[[0,1,["G2532"]],[1,2,["G3739","G1437"]],[2,6,["G4222"]],[6,8,["G1520"]],[8,10,["G5130"]],[10,12,["G3398"]],[12,14,["G4221"]],[14,16,["G5593"]],[16,18,["G3440"]],[18,19,["G1519"]],[19,21,["G3686"]],[21,24,["G3101"]],[24,25,["G281"]],[25,27,["G3004"]],[27,29,["G5213"]],[29,34,["G3364"]],[34,35,["G622"]],[35,36,["G848"]],[36,37,["G3408"]]]},{"k":23460,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,6,["G3753"]],[6,7,["G2424"]],[7,11,["G5055"]],[11,13,["G1299"]],[13,14,["G848"]],[14,15,["G1427"]],[15,16,["G3101"]],[16,18,["G3327"]],[18,19,["G1564"]],[19,21,["G1321"]],[21,22,["G2532"]],[22,24,["G2784"]],[24,25,["G1722"]],[25,26,["G846"]],[26,27,["G4172"]]]},{"k":23461,"v":[[0,1,["G1161"]],[1,3,["G2491"]],[3,5,["G191"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G1201"]],[8,9,["G3588"]],[9,10,["G2041"]],[10,12,["G5547"]],[12,14,["G3992"]],[14,15,["G1417"]],[15,17,["G848"]],[17,18,["G3101"]]]},{"k":23462,"v":[[0,2,["G2036"]],[2,4,["G846"]],[4,5,["G1488"]],[5,6,["G4771"]],[6,10,["G2064"]],[10,11,["G2228"]],[11,14,["G4328"]],[14,16,["G2087"]]]},{"k":23463,"v":[[0,0,["(G2532)"]],[0,1,["G2424"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G846"]],[6,7,["G4198"]],[7,11,["G518","G2491"]],[11,13,["G3739"]],[13,17,["G191"]],[17,18,["G2532"]],[18,19,["G991"]]]},{"k":23464,"v":[[0,2,["G5185"]],[2,5,["G308"]],[5,6,["G2532"]],[6,8,["G5560"]],[8,9,["G4043"]],[9,11,["G3015"]],[11,13,["G2511"]],[13,14,["G2532"]],[14,16,["G2974"]],[16,17,["G191"]],[17,19,["G3498"]],[19,22,["G1453"]],[22,23,["G2532"]],[23,25,["G4434"]],[25,31,["G2097"]]]},{"k":23465,"v":[[0,1,["G2532"]],[1,2,["G3107"]],[2,3,["G2076"]],[3,5,["G3739","G1437"]],[5,7,["G3361"]],[7,9,["G4624"]],[9,10,["G1722"]],[10,11,["G1698"]]]},{"k":23466,"v":[[0,1,["G1161"]],[1,3,["G5130"]],[3,4,["G4198"]],[4,5,["G2424"]],[5,6,["G756"]],[6,8,["G3004"]],[8,10,["G3588"]],[10,11,["G3793"]],[11,12,["G4012"]],[12,13,["G2491"]],[13,14,["G5101"]],[14,17,["G1831"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G2048"]],[20,22,["G2300"]],[22,24,["G2563"]],[24,25,["G4531"]],[25,26,["G5259"]],[26,28,["G417"]]]},{"k":23467,"v":[[0,1,["G235"]],[1,2,["G5101"]],[2,5,["G1831"]],[5,8,["G1492"]],[8,10,["G444"]],[10,11,["G294"]],[11,12,["G1722"]],[12,13,["G3120"]],[13,14,["G2440"]],[14,15,["G2400"]],[15,18,["G5409"]],[18,19,["G3120"]],[19,21,["G1526"]],[21,22,["G1722"]],[22,23,["G935"]],[23,24,["G3624"]]]},{"k":23468,"v":[[0,1,["G235"]],[1,2,["G5101"]],[2,5,["G1831"]],[5,8,["G1492"]],[8,10,["G4396"]],[10,11,["G3483"]],[11,13,["G3004"]],[13,15,["G5213"]],[15,16,["G2532"]],[16,17,["G4055"]],[17,20,["G4396"]]]},{"k":23469,"v":[[0,1,["G1063"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,5,["G4012"]],[5,6,["G3739"]],[6,9,["G1125"]],[9,10,["G2400"]],[10,11,["G1473"]],[11,12,["G649"]],[12,13,["G3450"]],[13,14,["G32"]],[14,15,["G4253"]],[15,16,["G4675"]],[16,17,["G4383"]],[17,18,["G3739"]],[18,20,["G2680"]],[20,21,["G4675"]],[21,22,["G3598"]],[22,23,["G1715"]],[23,24,["G4675"]]]},{"k":23470,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G1722"]],[6,10,["G1084"]],[10,12,["G1135"]],[12,15,["G3756"]],[15,16,["G1453"]],[16,18,["G3187"]],[18,20,["G2491"]],[20,21,["G3588"]],[21,22,["G910"]],[22,23,["G1161"]],[23,27,["G3398"]],[27,28,["G1722"]],[28,29,["G3588"]],[29,30,["G932"]],[30,32,["G3772"]],[32,33,["G2076"]],[33,34,["G3187"]],[34,36,["G846"]]]},{"k":23471,"v":[[0,1,["G1161"]],[1,2,["G575"]],[2,3,["G3588"]],[3,4,["G2250"]],[4,6,["G2491"]],[6,7,["G3588"]],[7,8,["G910"]],[8,9,["G2193"]],[9,10,["G737"]],[10,11,["G3588"]],[11,12,["G932"]],[12,14,["G3772"]],[14,16,["G971"]],[16,17,["G2532"]],[17,19,["G973"]],[19,23,["G726","G846"]]]},{"k":23472,"v":[[0,1,["G1063"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G4396"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G3551"]],[7,8,["G4395"]],[8,9,["G2193"]],[9,10,["G2491"]]]},{"k":23473,"v":[[0,1,["G2532"]],[1,2,["G1487"]],[2,4,["G2309"]],[4,5,["G1209"]],[5,7,["G846"]],[7,8,["G2076"]],[8,9,["G2243"]],[9,11,["G3195"]],[11,14,["G2064"]]]},{"k":23474,"v":[[0,3,["G2192"]],[3,4,["G3775"]],[4,6,["G191"]],[6,9,["G191"]]]},{"k":23475,"v":[[0,1,["G1161"]],[1,2,["G5101"]],[2,5,["G3666"]],[5,6,["G5026"]],[6,7,["G1074"]],[7,9,["G2076"]],[9,11,["G3664"]],[11,12,["G3808"]],[12,13,["G2521"]],[13,14,["G1722"]],[14,16,["G58"]],[16,17,["G2532"]],[17,18,["G4377"]],[18,20,["G848"]],[20,21,["G2083"]]]},{"k":23476,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,5,["G832"]],[5,7,["G5213"]],[7,8,["G2532"]],[8,11,["G3756"]],[11,12,["G3738"]],[12,15,["G2354"]],[15,17,["G5213"]],[17,18,["G2532"]],[18,21,["G3756"]],[21,22,["G2875"]]]},{"k":23477,"v":[[0,1,["G1063"]],[1,2,["G2491"]],[2,3,["G2064"]],[3,4,["G3383"]],[4,5,["G2068"]],[5,6,["G3383"]],[6,7,["G4095"]],[7,8,["G2532"]],[8,10,["G3004"]],[10,12,["G2192"]],[12,14,["G1140"]]]},{"k":23478,"v":[[0,1,["G3588"]],[1,2,["G5207"]],[2,4,["G444"]],[4,5,["G2064"]],[5,6,["G2068"]],[6,7,["G2532"]],[7,8,["G4095"]],[8,9,["G2532"]],[9,11,["G3004"]],[11,12,["G2400"]],[12,14,["G444"]],[14,15,["G5314"]],[15,16,["G2532"]],[16,18,["G3630"]],[18,20,["G5384"]],[20,22,["G5057"]],[22,23,["G2532"]],[23,24,["G268"]],[24,25,["G2532"]],[25,26,["G4678"]],[26,28,["G1344"]],[28,29,["G575"]],[29,30,["G848"]],[30,31,["G5043"]]]},{"k":23479,"v":[[0,1,["G5119"]],[1,2,["G756"]],[2,5,["G3679"]],[5,6,["G3588"]],[6,7,["G4172"]],[7,8,["G1722","G3739"]],[8,9,["G4118"]],[9,11,["G846"]],[11,13,["G1411"]],[13,15,["G1096"]],[15,16,["G3754"]],[16,18,["G3340"]],[18,19,["G3756"]]]},{"k":23480,"v":[[0,1,["G3759"]],[1,3,["G4671"]],[3,4,["G5523"]],[4,5,["G3759"]],[5,7,["G4671"]],[7,8,["G966"]],[8,9,["G3754"]],[9,10,["G1487"]],[10,11,["G3588"]],[11,13,["G1411"]],[13,16,["G1096"]],[16,17,["G1722"]],[17,18,["G5213"]],[18,21,["G1096"]],[21,22,["G1722"]],[22,23,["G5184"]],[23,24,["G2532"]],[24,25,["G4605"]],[25,29,["G3340"]],[29,31,["G3819"]],[31,32,["G1722"]],[32,33,["G4526"]],[33,34,["G2532"]],[34,35,["G4700"]]]},{"k":23481,"v":[[0,1,["G4133"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,8,["G2071"]],[8,10,["G414"]],[10,12,["G5184"]],[12,13,["G2532"]],[13,14,["G4605"]],[14,15,["G1722"]],[15,17,["G2250"]],[17,19,["G2920"]],[19,20,["G2228"]],[20,22,["G5213"]]]},{"k":23482,"v":[[0,1,["G2532"]],[1,2,["G4771"]],[2,3,["G2584"]],[3,6,["G5312"]],[6,7,["G2193"]],[7,8,["G3772"]],[8,12,["G2601"]],[12,13,["G2193"]],[13,14,["G86"]],[14,15,["G3754"]],[15,16,["G1487"]],[16,17,["G3588"]],[17,19,["G1411"]],[19,23,["G1096"]],[23,24,["G1722"]],[24,25,["G4671"]],[25,28,["G1096"]],[28,29,["G1722"]],[29,30,["G4670"]],[30,34,["G3306"]],[34,35,["G3360"]],[35,37,["G4594"]]]},{"k":23483,"v":[[0,1,["G4133"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,9,["G2071"]],[9,11,["G414"]],[11,14,["G1093"]],[14,16,["G4670"]],[16,17,["G1722"]],[17,19,["G2250"]],[19,21,["G2920"]],[21,22,["G2228"]],[22,24,["G4671"]]]},{"k":23484,"v":[[0,1,["G1722"]],[1,2,["G1565"]],[2,3,["G2540"]],[3,4,["G2424"]],[4,5,["G611"]],[5,7,["G2036"]],[7,9,["G1843"]],[9,10,["G4671"]],[10,12,["G3962"]],[12,13,["G2962"]],[13,15,["G3772"]],[15,16,["G2532"]],[16,17,["G1093"]],[17,18,["G3754"]],[18,21,["G613"]],[21,23,["G5023"]],[23,24,["G575"]],[24,26,["G4680"]],[26,27,["G2532"]],[27,28,["G4908"]],[28,29,["G2532"]],[29,31,["G601"]],[31,32,["G846"]],[32,34,["G3516"]]]},{"k":23485,"v":[[0,2,["G3483"]],[2,3,["G3962"]],[3,4,["G3754"]],[4,5,["G3779"]],[5,7,["G1096"]],[7,8,["G2107"]],[8,11,["G1715","G4675"]]]},{"k":23486,"v":[[0,2,["G3956"]],[2,4,["G3860"]],[4,6,["G3427"]],[6,7,["G5259"]],[7,8,["G3450"]],[8,9,["G3962"]],[9,10,["G2532"]],[10,12,["G3762"]],[12,13,["G1921"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,16,["G1508"]],[16,17,["G3588"]],[17,18,["G3962"]],[18,19,["G3761"]],[19,20,["G1921"]],[20,22,["G5100"]],[22,23,["G3588"]],[23,24,["G3962"]],[24,25,["G1508"]],[25,26,["G3588"]],[26,27,["G5207"]],[27,28,["G2532"]],[28,31,["G3739","G1437"]],[31,32,["G3588"]],[32,33,["G5207"]],[33,34,["G1014"]],[34,35,["G601"]],[35,36,[]]]},{"k":23487,"v":[[0,1,["G1205"]],[1,2,["G4314"]],[2,3,["G3165"]],[3,4,["G3956"]],[4,7,["G2872"]],[7,8,["G2532"]],[8,11,["G5412"]],[11,13,["G2504"]],[13,17,["G373","G5209"]]]},{"k":23488,"v":[[0,1,["G142"]],[1,2,["G3450"]],[2,3,["G2218"]],[3,4,["G1909"]],[4,5,["G5209"]],[5,6,["G2532"]],[6,7,["G3129"]],[7,8,["G575"]],[8,9,["G1700"]],[9,10,["G3754"]],[10,12,["G1510"]],[12,13,["G4235"]],[13,14,["G2532"]],[14,15,["G5011"]],[15,17,["G2588"]],[17,18,["G2532"]],[18,21,["G2147"]],[21,22,["G372"]],[22,24,["G5216"]],[24,25,["G5590"]]]},{"k":23489,"v":[[0,1,["G1063"]],[1,2,["G3450"]],[2,3,["G2218"]],[3,5,["G5543"]],[5,6,["G2532"]],[6,7,["G3450"]],[7,8,["G5413"]],[8,9,["G2076"]],[9,10,["G1645"]]]},{"k":23490,"v":[[0,1,["G1722"]],[1,2,["G1565"]],[2,3,["G2540"]],[3,4,["G2424"]],[4,5,["G4198"]],[5,7,["G3588"]],[7,9,["G4521"]],[9,10,["G1223"]],[10,11,["G3588"]],[11,12,["G4702"]],[12,13,["G2532"]],[13,14,["G846"]],[14,15,["G3101"]],[15,18,["G3983"]],[18,19,["G2532"]],[19,20,["G756"]],[20,22,["G5089"]],[22,26,["G4719"]],[26,27,["G2532"]],[27,29,["G2068"]]]},{"k":23491,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G5330"]],[4,5,["G1492"]],[5,8,["G2036"]],[8,10,["G846"]],[10,11,["G2400"]],[11,12,["G4675"]],[12,13,["G3101"]],[13,14,["G4160"]],[14,16,["G3739"]],[16,19,["G1832","G3756"]],[19,21,["G4160"]],[21,22,["G1722"]],[22,25,["G4521"]]]},{"k":23492,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,8,["G3756"]],[8,9,["G314"]],[9,10,["G5101"]],[10,11,["G1138"]],[11,12,["G4160"]],[12,13,["G3753"]],[13,14,["G846"]],[14,17,["G3983"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,22,["G3326"]],[22,23,["G846"]]]},{"k":23493,"v":[[0,1,["G4459"]],[1,3,["G1525"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G3624"]],[6,8,["G2316"]],[8,9,["G2532"]],[9,11,["G5315"]],[11,12,["G3588"]],[12,13,["G740","G4286"]],[13,14,["G3739"]],[14,15,["G2258"]],[15,16,["G3756"]],[16,17,["G1832"]],[17,19,["G846"]],[19,21,["G5315"]],[21,22,["G3761"]],[22,24,["G3588"]],[24,27,["G3326"]],[27,28,["G846"]],[28,29,["G1508"]],[29,30,["G3441"]],[30,32,["G3588"]],[32,33,["G2409"]]]},{"k":23494,"v":[[0,1,["G2228"]],[1,4,["G3756"]],[4,5,["G314"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G3551"]],[8,9,["G3754"]],[9,12,["G3588"]],[12,14,["G4521"]],[14,15,["G3588"]],[15,16,["G2409"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G2411"]],[19,20,["G953"]],[20,21,["G3588"]],[21,22,["G4521"]],[22,23,["G2532"]],[23,24,["G1526"]],[24,25,["G338"]]]},{"k":23495,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,9,["G5602"]],[9,10,["G2076"]],[10,12,["G3187"]],[12,14,["G3588"]],[14,15,["G2411"]]]},{"k":23496,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,5,["G1097"]],[5,6,["G5101"]],[6,8,["G2076"]],[8,10,["G2309"]],[10,12,["G1656"]],[12,13,["G2532"]],[13,14,["G3756"]],[14,15,["G2378"]],[15,18,["G3756"]],[18,20,["G2613"]],[20,21,["G3588"]],[21,22,["G338"]]]},{"k":23497,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G444"]],[5,6,["G2076"]],[6,7,["G2962"]],[7,8,["G2532"]],[8,10,["G3588"]],[10,12,["G4521"]]]},{"k":23498,"v":[[0,1,["G2532"]],[1,5,["G3327"]],[5,6,["G1564"]],[6,8,["G2064"]],[8,9,["G1519"]],[9,10,["G846"]],[10,11,["G4864"]]]},{"k":23499,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G2258"]],[4,6,["G444"]],[6,8,["G2192"]],[8,10,["G5495"]],[10,11,["G3584"]],[11,12,["G2532"]],[12,14,["G1905"]],[14,15,["G846"]],[15,16,["G3004","(G1487)"]],[16,19,["G1832"]],[19,21,["G2323"]],[21,23,["G3588"]],[23,25,["G4521"]],[25,26,["G2443"]],[26,29,["G2723"]],[29,30,["G846"]]]},{"k":23500,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G5101"]],[6,7,["G444"]],[7,10,["G2071"]],[10,11,["G1537"]],[11,12,["G5216"]],[12,13,["G3739"]],[13,15,["G2192"]],[15,16,["G1520"]],[16,17,["G4263"]],[17,18,["G2532"]],[18,19,["G1437"]],[19,20,["G5124"]],[20,21,["G1706"]],[21,22,["G1519"]],[22,24,["G999"]],[24,26,["G3588"]],[26,28,["G4521"]],[28,31,["G3780"]],[31,33,["G2902"]],[33,35,["G846"]],[35,36,["G2532"]],[36,39,["G1453"]]]},{"k":23501,"v":[[0,2,["G4214"]],[2,3,["G3767"]],[3,7,["G1308","G444"]],[7,10,["G4263"]],[10,11,["G5620"]],[11,14,["G1832"]],[14,16,["G4160"]],[16,17,["G2573"]],[17,19,["G3588"]],[19,21,["G4521"]]]},{"k":23502,"v":[[0,1,["G5119"]],[1,2,["G3004"]],[2,5,["G3588"]],[5,6,["G444"]],[6,8,["G1614"]],[8,9,["G4675"]],[9,10,["G5495"]],[10,11,["G2532"]],[11,15,["G1614"]],[15,16,["G2532"]],[16,19,["G600"]],[19,20,["G5199"]],[20,22,["G5613"]],[22,23,["G3588"]],[23,24,["G243"]]]},{"k":23503,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,5,["G1831"]],[5,7,["G2983"]],[7,9,["G4824"]],[9,10,["G2596"]],[10,11,["G846"]],[11,12,["G3704"]],[12,15,["G622"]],[15,16,["G846"]]]},{"k":23504,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,4,["G1097"]],[4,7,["G402"]],[7,10,["G1564"]],[10,11,["G2532"]],[11,12,["G4183"]],[12,13,["G3793"]],[13,14,["G190"]],[14,15,["G846"]],[15,16,["G2532"]],[16,18,["G2323"]],[18,19,["G846"]],[19,20,["G3956"]]]},{"k":23505,"v":[[0,1,["G2532"]],[1,2,["G2008"]],[2,3,["G846"]],[3,4,["G2443"]],[4,7,["G3361"]],[7,8,["G4160"]],[8,9,["G846"]],[9,10,["G5318"]]]},{"k":23506,"v":[[0,1,["G3704"]],[1,5,["G4137"]],[5,8,["G4483"]],[8,9,["G1223"]],[9,10,["G2268"]],[10,11,["G3588"]],[11,12,["G4396"]],[12,13,["G3004"]]]},{"k":23507,"v":[[0,1,["G2400"]],[1,2,["G3450"]],[2,3,["G3816"]],[3,4,["G3739"]],[4,7,["G140"]],[7,8,["G3450"]],[8,9,["G27"]],[9,10,["G1519"]],[10,11,["G3739"]],[11,12,["G1519"]],[12,13,["G5590"]],[13,16,["G2106"]],[16,19,["G5087"]],[19,20,["G3450"]],[20,21,["G4151"]],[21,22,["G1909"]],[22,23,["G846"]],[23,24,["G2532"]],[24,27,["G518"]],[27,28,["G2920"]],[28,30,["G3588"]],[30,31,["G1484"]]]},{"k":23508,"v":[[0,3,["G3756"]],[3,4,["G2051"]],[4,5,["G3761"]],[5,6,["G2905"]],[6,7,["G3761"]],[7,10,["G5100"]],[10,11,["G191"]],[11,12,["G846"]],[12,13,["G5456"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G4113"]]]},{"k":23509,"v":[[0,2,["G4937"]],[2,3,["G2563"]],[3,6,["G3756"]],[6,7,["G2608"]],[7,8,["G2532"]],[8,9,["G5188"]],[9,10,["G3043"]],[10,13,["G3756"]],[13,14,["G4570"]],[14,15,["G2193","G302"]],[15,18,["G1544"]],[18,19,["G2920"]],[19,20,["G1519"]],[20,21,["G3534"]]]},{"k":23510,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G846"]],[3,4,["G3686"]],[4,7,["G1484"]],[7,8,["G1679"]]]},{"k":23511,"v":[[0,1,["G5119"]],[1,3,["G4374"]],[3,5,["G846"]],[5,10,["G1139"]],[10,11,["G5185"]],[11,12,["G2532"]],[12,13,["G2974"]],[13,14,["G2532"]],[14,16,["G2323"]],[16,17,["G846"]],[17,19,["G5620"]],[19,20,["G3588"]],[20,21,["G5185"]],[21,22,["G2532"]],[22,23,["G2974"]],[23,24,["G2532"]],[24,25,["G2980"]],[25,26,["G2532"]],[26,27,["G991"]]]},{"k":23512,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G3793"]],[4,6,["G1839"]],[6,7,["G2532"]],[7,8,["G3004"]],[8,9,["G2076"]],[9,10,["G3385"]],[10,11,["G3778"]],[11,12,["G3588"]],[12,13,["G5207"]],[13,15,["G1138"]]]},{"k":23513,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G5330"]],[4,5,["G191"]],[5,8,["G2036"]],[8,9,["G3778"]],[9,12,["G3756"]],[12,14,["G1544"]],[14,15,["G1140"]],[15,16,["G1508"]],[16,17,["G1722"]],[17,18,["G954"]],[18,20,["G758"]],[20,22,["G3588"]],[22,23,["G1140"]]]},{"k":23514,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G1492"]],[3,4,["G846"]],[4,5,["G1761"]],[5,7,["G2036"]],[7,9,["G846"]],[9,10,["G3956"]],[10,11,["G932"]],[11,12,["G3307"]],[12,13,["G2596"]],[13,14,["G1438"]],[14,18,["G2049"]],[18,19,["G2532"]],[19,20,["G3956"]],[20,21,["G4172"]],[21,22,["G2228"]],[22,23,["G3614"]],[23,24,["G3307"]],[24,25,["G2596"]],[25,26,["G1438"]],[26,28,["G3756"]],[28,29,["G2476"]]]},{"k":23515,"v":[[0,1,["G2532"]],[1,2,["G1487"]],[2,3,["G4567"]],[3,5,["G1544"]],[5,6,["G4567"]],[6,9,["G3307"]],[9,10,["G1909"]],[10,11,["G1438"]],[11,12,["G4459"]],[12,14,["G3767"]],[14,15,["G846"]],[15,16,["G932"]],[16,17,["G2476"]]]},{"k":23516,"v":[[0,1,["G2532"]],[1,2,["G1487"]],[2,3,["G1473"]],[3,4,["G1722"]],[4,5,["G954"]],[5,7,["G1544"]],[7,8,["G1140"]],[8,9,["G1722"]],[9,10,["G5101"]],[10,12,["G5216"]],[12,13,["G5207"]],[13,16,["G1544"]],[16,17,["G1223","G5124"]],[17,18,["G846"]],[18,20,["G2071"]],[20,21,["G5216"]],[21,22,["G2923"]]]},{"k":23517,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G1473"]],[3,5,["G1544"]],[5,6,["G1140"]],[6,7,["G1722"]],[7,9,["G4151"]],[9,11,["G2316"]],[11,12,["G686"]],[12,13,["G3588"]],[13,14,["G932"]],[14,16,["G2316"]],[16,18,["G5348"]],[18,19,["G1909"]],[19,20,["G5209"]]]},{"k":23518,"v":[[0,2,["G2228"]],[2,3,["G4459"]],[3,4,["G1410"]],[4,5,["G5100"]],[5,6,["G1525"]],[6,7,["G1519"]],[7,10,["G2478"]],[10,11,["G3614"]],[11,12,["G2532"]],[12,13,["G1283"]],[13,14,["G846"]],[14,15,["G4632"]],[15,16,["G3362"]],[16,18,["G4412"]],[18,19,["G1210"]],[19,20,["G3588"]],[20,22,["G2478"]],[22,23,["G2532"]],[23,24,["G5119"]],[24,27,["G1283"]],[27,28,["G846"]],[28,29,["G3614"]]]},{"k":23519,"v":[[0,3,["G5607"]],[3,4,["G3361"]],[4,5,["G3326"]],[5,6,["G1700"]],[6,7,["G2076"]],[7,8,["G2596"]],[8,9,["G1700"]],[9,10,["G2532"]],[10,13,["G4863"]],[13,14,["G3361"]],[14,15,["G3326"]],[15,16,["G1700"]],[16,18,["G4650"]]]},{"k":23520,"v":[[0,1,["G1223","G5124"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,7,["G3956"]],[7,9,["G266"]],[9,10,["G2532"]],[10,11,["G988"]],[11,14,["G863"]],[14,16,["G444"]],[16,17,["G1161"]],[17,18,["G3588"]],[18,19,["G988"]],[19,21,["G3588"]],[21,23,["G4151"]],[23,25,["G3756"]],[25,27,["G863"]],[27,29,["G444"]]]},{"k":23521,"v":[[0,1,["G2532"]],[1,2,["G3739","G302"]],[2,3,["G2036"]],[3,5,["G3056"]],[5,6,["G2596"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G444"]],[10,14,["G863"]],[14,15,["G846"]],[15,16,["G1161"]],[16,17,["G3739","G302"]],[17,18,["G2036"]],[18,19,["G2596"]],[19,20,["G3588"]],[20,21,["G40"]],[21,22,["G4151"]],[22,25,["G3756"]],[25,27,["G863"]],[27,28,["G846"]],[28,29,["G3777"]],[29,30,["G1722"]],[30,31,["G5129"]],[31,32,["G165"]],[32,33,["G3777"]],[33,34,["G1722"]],[34,35,["G3588"]],[35,38,["G3195"]]]},{"k":23522,"v":[[0,1,["G2228"]],[1,2,["G4160"]],[2,3,["G3588"]],[3,4,["G1186"]],[4,5,["G2570"]],[5,6,["G2532"]],[6,7,["G846"]],[7,8,["G2590"]],[8,9,["G2570"]],[9,11,["G2228"]],[11,12,["G4160"]],[12,13,["G3588"]],[13,14,["G1186"]],[14,15,["G4550"]],[15,16,["G2532"]],[16,17,["G846"]],[17,18,["G2590"]],[18,19,["G4550"]],[19,20,["G1063"]],[20,21,["G3588"]],[21,22,["G1186"]],[22,24,["G1097"]],[24,25,["G1537"]],[25,27,["G2590"]]]},{"k":23523,"v":[[0,2,["G1081"]],[2,4,["G2191"]],[4,5,["G4459"]],[5,6,["G1410"]],[6,8,["G5607"]],[8,9,["G4190"]],[9,10,["G2980"]],[10,12,["G18"]],[12,13,["G1063"]],[13,14,["G1537"]],[14,16,["G3588"]],[16,17,["G4051"]],[17,19,["G3588"]],[19,20,["G2588"]],[20,21,["G3588"]],[21,22,["G4750"]],[22,23,["G2980"]]]},{"k":23524,"v":[[0,2,["G18"]],[2,3,["G444"]],[3,4,["G1537"]],[4,6,["G3588"]],[6,7,["G18"]],[7,8,["G2344"]],[8,10,["G3588"]],[10,11,["G2588"]],[11,13,["G1544"]],[13,15,["G18"]],[15,16,["G2532"]],[16,18,["G4190"]],[18,19,["G444"]],[19,21,["G1537"]],[21,22,["G3588"]],[22,23,["G4190"]],[23,24,["G2344"]],[24,26,["G1544"]],[26,28,["G4190"]]]},{"k":23525,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G3956"]],[7,8,["G692"]],[8,9,["G4487"]],[9,10,["G3739","G1437"]],[10,11,["G444"]],[11,13,["G2980"]],[13,16,["G591"]],[16,17,["G3056"]],[17,18,["G4012","G846"]],[18,19,["G1722"]],[19,21,["G2250"]],[21,23,["G2920"]]]},{"k":23526,"v":[[0,1,["G1063"]],[1,2,["G1537"]],[2,3,["G4675"]],[3,4,["G3056"]],[4,8,["G1344"]],[8,9,["G2532"]],[9,10,["G1537"]],[10,11,["G4675"]],[11,12,["G3056"]],[12,16,["G2613"]]]},{"k":23527,"v":[[0,1,["G5119"]],[1,2,["G5100"]],[2,4,["G3588"]],[4,5,["G1122"]],[5,6,["G2532"]],[6,9,["G5330"]],[9,10,["G611"]],[10,11,["G3004"]],[11,12,["G1320"]],[12,14,["G2309"]],[14,15,["G1492"]],[15,17,["G4592"]],[17,18,["G575"]],[18,19,["G4675"]]]},{"k":23528,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,9,["G4190"]],[9,10,["G2532"]],[10,11,["G3428"]],[11,12,["G1074"]],[12,14,["G1934"]],[14,16,["G4592"]],[16,17,["G2532"]],[17,20,["G3756"]],[20,21,["G4592"]],[21,23,["G1325"]],[23,25,["G846"]],[25,26,["G1508"]],[26,27,["G3588"]],[27,28,["G4592"]],[28,30,["G3588"]],[30,31,["G4396"]],[31,32,["G2495"]]]},{"k":23529,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G2495"]],[3,4,["G2258"]],[4,5,["G5140"]],[5,6,["G2250"]],[6,7,["G2532"]],[7,8,["G5140"]],[8,9,["G3571"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G2785"]],[12,13,["G2836"]],[13,14,["G3779"]],[14,16,["G3588"]],[16,17,["G5207"]],[17,19,["G444"]],[19,20,["G2071"]],[20,21,["G5140"]],[21,22,["G2250"]],[22,23,["G2532"]],[23,24,["G5140"]],[24,25,["G3571"]],[25,26,["G1722"]],[26,27,["G3588"]],[27,28,["G2588"]],[28,30,["G3588"]],[30,31,["G1093"]]]},{"k":23530,"v":[[0,2,["G435"]],[2,4,["G3536"]],[4,6,["G450"]],[6,7,["G1722"]],[7,8,["G2920"]],[8,9,["G3326"]],[9,10,["G5026"]],[10,11,["G1074"]],[11,12,["G2532"]],[12,14,["G2632"]],[14,15,["G846"]],[15,16,["G3754"]],[16,18,["G3340"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G2782"]],[21,23,["G2495"]],[23,24,["G2532"]],[24,25,["G2400"]],[25,27,["G4119"]],[27,29,["G2495"]],[29,31,["G5602"]]]},{"k":23531,"v":[[0,2,["G938"]],[2,5,["G3558"]],[5,8,["G1453"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2920"]],[11,12,["G3326"]],[12,13,["G5026"]],[13,14,["G1074"]],[14,15,["G2532"]],[15,17,["G2632"]],[17,18,["G846"]],[18,19,["G3754"]],[19,21,["G2064"]],[21,22,["G1537"]],[22,23,["G3588"]],[23,25,["G4009"]],[25,27,["G3588"]],[27,28,["G1093"]],[28,30,["G191"]],[30,31,["G3588"]],[31,32,["G4678"]],[32,34,["G4672"]],[34,35,["G2532"]],[35,36,["G2400"]],[36,38,["G4119"]],[38,40,["G4672"]],[40,42,["G5602"]]]},{"k":23532,"v":[[0,1,["G3752"]],[1,2,["G3588"]],[2,3,["G169"]],[3,4,["G4151"]],[4,6,["G1831"]],[6,8,["G575"]],[8,10,["G444"]],[10,12,["G1330"]],[12,13,["G1223"]],[13,14,["G504"]],[14,15,["G5117"]],[15,16,["G2212"]],[16,17,["G372"]],[17,18,["G2532"]],[18,19,["G2147"]],[19,20,["G3756"]]]},{"k":23533,"v":[[0,1,["G5119"]],[1,3,["G3004"]],[3,6,["G1994"]],[6,7,["G1519"]],[7,8,["G3450"]],[8,9,["G3624"]],[9,11,["G3606"]],[11,14,["G1831"]],[14,15,["G2532"]],[15,19,["G2064"]],[19,21,["G2147"]],[21,23,["G4980"]],[23,24,["G4563"]],[24,25,["G2532"]],[25,26,["G2885"]]]},{"k":23534,"v":[[0,1,["G5119"]],[1,2,["G4198"]],[2,4,["G2532"]],[4,5,["G3880"]],[5,6,["G3326"]],[6,7,["G1438"]],[7,8,["G2033"]],[8,9,["G2087"]],[9,10,["G4151"]],[10,12,["G4191"]],[12,14,["G1438"]],[14,15,["G2532"]],[15,18,["G1525"]],[18,20,["G2730"]],[20,21,["G1563"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G2078"]],[24,27,["G1565"]],[27,28,["G444"]],[28,29,["G1096"]],[29,30,["G5501"]],[30,32,["G3588"]],[32,33,["G4413"]],[33,35,["G3779"]],[35,38,["G2071"]],[38,39,["G2532"]],[39,41,["G5026"]],[41,42,["G4190"]],[42,43,["G1074"]]]},{"k":23535,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G2089"]],[3,4,["G2980"]],[4,6,["G3588"]],[6,7,["G3793"]],[7,8,["G2400"]],[8,10,["G3384"]],[10,11,["G2532"]],[11,12,["G846"]],[12,13,["G80"]],[13,14,["G2476"]],[14,15,["G1854"]],[15,16,["G2212"]],[16,18,["G2980"]],[18,20,["G846"]]]},{"k":23536,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G2400"]],[6,7,["G4675"]],[7,8,["G3384"]],[8,9,["G2532"]],[9,10,["G4675"]],[10,11,["G80"]],[11,12,["G2476"]],[12,13,["G1854"]],[13,14,["G2212"]],[14,16,["G2980"]],[16,18,["G4671"]]]},{"k":23537,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,9,["G2036"]],[9,10,["G846"]],[10,11,["G5101"]],[11,12,["G2076"]],[12,13,["G3450"]],[13,14,["G3384"]],[14,15,["G2532"]],[15,16,["G5101"]],[16,17,["G1526"]],[17,18,["G3450"]],[18,19,["G80"]]]},{"k":23538,"v":[[0,1,["G2532"]],[1,4,["G1614"]],[4,5,["G848"]],[5,6,["G5495"]],[6,7,["G1909"]],[7,8,["G848"]],[8,9,["G3101"]],[9,11,["G2036"]],[11,12,["G2400"]],[12,13,["G3450"]],[13,14,["G3384"]],[14,15,["G2532"]],[15,16,["G3450"]],[16,17,["G80"]]]},{"k":23539,"v":[[0,1,["G1063"]],[1,2,["G3748"]],[2,4,["G4160"]],[4,5,["G3588"]],[5,6,["G2307"]],[6,8,["G3450"]],[8,9,["G3962"]],[9,10,["G3588"]],[10,12,["G1722"]],[12,13,["G3772"]],[13,15,["G846"]],[15,16,["G2076"]],[16,17,["G3450"]],[17,18,["G80"]],[18,19,["G2532"]],[19,20,["G79"]],[20,21,["G2532"]],[21,22,["G3384"]]]},{"k":23540,"v":[[0,2,["G1565"]],[2,3,["G2250"]],[3,4,["G1831"]],[4,5,["G2424"]],[5,7,["G575"]],[7,8,["G3588"]],[8,9,["G3614"]],[9,10,["G2532"]],[10,11,["G2521"]],[11,12,["G3844"]],[12,13,["G3588"]],[13,15,["G2281"]]]},{"k":23541,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,3,["G3793"]],[3,6,["G4863"]],[6,7,["G4314"]],[7,8,["G846"]],[8,10,["G5620"]],[10,11,["G846"]],[11,12,["G1684"]],[12,13,["G1519"]],[13,15,["G4143"]],[15,17,["G2521"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G3956"]],[20,21,["G3793"]],[21,22,["G2476"]],[22,23,["G1909"]],[23,24,["G3588"]],[24,25,["G123"]]]},{"k":23542,"v":[[0,1,["G2532"]],[1,3,["G2980"]],[3,5,["G4183"]],[5,7,["G846"]],[7,8,["G1722"]],[8,9,["G3850"]],[9,10,["G3004"]],[10,11,["G2400"]],[11,13,["G4687"]],[13,15,["G1831"]],[15,17,["G4687"]]]},{"k":23543,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,4,["G4687"]],[4,5,["G3739","G3303"]],[5,7,["G4098"]],[7,8,["G3844"]],[8,9,["G3588"]],[9,11,["G3598"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G4071"]],[14,15,["G2064"]],[15,16,["G2532"]],[16,19,["G2719","G846"]]]},{"k":23544,"v":[[0,0,["(G1161)"]],[0,1,["G243"]],[1,2,["G4098"]],[2,3,["G1909"]],[3,5,["G4075"]],[5,6,["G3699"]],[6,8,["G2192"]],[8,9,["G3756"]],[9,10,["G4183"]],[10,11,["G1093"]],[11,12,["G2532"]],[12,13,["G2112"]],[13,16,["G1816"]],[16,19,["G2192"]],[19,20,["G3361"]],[20,21,["G899"]],[21,23,["G1093"]]]},{"k":23545,"v":[[0,1,["G1161"]],[1,4,["G2246"]],[4,6,["G393"]],[6,9,["G2739"]],[9,10,["G2532"]],[10,13,["G2192"]],[13,14,["G3361"]],[14,15,["G4491"]],[15,18,["G3583"]]]},{"k":23546,"v":[[0,1,["G1161"]],[1,2,["G243"]],[2,3,["G4098"]],[3,4,["G1909"]],[4,5,["G173"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G173"]],[8,10,["G305"]],[10,11,["G2532"]],[11,12,["G638"]],[12,13,["G846"]]]},{"k":23547,"v":[[0,1,["G1161"]],[1,2,["G243"]],[2,3,["G4098"]],[3,4,["G1909"]],[4,5,["G2570"]],[5,6,["G1093"]],[6,7,["G2532"]],[7,9,["G1325"]],[9,10,["G2590"]],[10,11,["G3739","G3303"]],[11,13,["G1540","(G1161)"]],[13,14,["G3739"]],[14,15,["G1835","(G1161)"]],[15,16,["G3739"]],[16,17,["G5144"]]]},{"k":23548,"v":[[0,2,["G2192"]],[2,3,["G3775"]],[3,5,["G191"]],[5,8,["G191"]]]},{"k":23549,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,4,["G4334"]],[4,6,["G2036"]],[6,8,["G846"]],[8,9,["G1302"]],[9,10,["G2980"]],[10,13,["G846"]],[13,14,["G1722"]],[14,15,["G3850"]]]},{"k":23550,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G846"]],[6,7,["G3754"]],[7,10,["G1325"]],[10,12,["G5213"]],[12,14,["G1097"]],[14,15,["G3588"]],[15,16,["G3466"]],[16,18,["G3588"]],[18,19,["G932"]],[19,21,["G3772"]],[21,22,["G1161"]],[22,24,["G1565"]],[24,27,["G3756"]],[27,28,["G1325"]]]},{"k":23551,"v":[[0,1,["G1063"]],[1,2,["G3748"]],[2,3,["G2192"]],[3,5,["G846"]],[5,8,["G1325"]],[8,9,["G2532"]],[9,14,["G4052"]],[14,15,["G1161"]],[15,16,["G3748"]],[16,17,["G2192"]],[17,18,["G3756"]],[18,19,["G575"]],[19,20,["G846"]],[20,24,["G142"]],[24,25,["G2532"]],[25,26,["G3739"]],[26,28,["G2192"]]]},{"k":23552,"v":[[0,1,["G1223","G5124"]],[1,2,["G2980"]],[2,5,["G846"]],[5,6,["G1722"]],[6,7,["G3850"]],[7,8,["G3754"]],[8,10,["G991"]],[10,11,["G991"]],[11,12,["G3756"]],[12,13,["G2532"]],[13,14,["G191"]],[14,16,["G191"]],[16,17,["G3756"]],[17,18,["G3761"]],[18,21,["G4920"]]]},{"k":23553,"v":[[0,1,["G2532"]],[1,2,["G1909"]],[2,3,["G846"]],[3,5,["G378"]],[5,6,["G3588"]],[6,7,["G4394"]],[7,9,["G2268"]],[9,11,["G3004"]],[11,13,["G189"]],[13,16,["G191"]],[16,17,["G2532"]],[17,19,["G3364"]],[19,20,["G4920"]],[20,21,["G2532"]],[21,22,["G991"]],[22,25,["G991"]],[25,26,["G2532"]],[26,28,["G3364"]],[28,29,["G1492"]]]},{"k":23554,"v":[[0,1,["G1063"]],[1,2,["G5127"]],[2,3,["G2992"]],[3,4,["G2588"]],[4,7,["G3975"]],[7,8,["G2532"]],[8,10,["G3775"]],[10,14,["G191","G917"]],[14,15,["G2532"]],[15,16,["G848"]],[16,17,["G3788"]],[17,20,["G2576"]],[20,24,["G3379"]],[24,27,["G1492"]],[27,30,["G3788"]],[30,31,["G2532"]],[31,32,["G191"]],[32,35,["G3775"]],[35,36,["G2532"]],[36,38,["G4920"]],[38,41,["G2588"]],[41,42,["G2532"]],[42,45,["G1994"]],[45,46,["G2532"]],[46,49,["G2390"]],[49,50,["G846"]]]},{"k":23555,"v":[[0,1,["G1161"]],[1,2,["G3107"]],[2,4,["G5216"]],[4,5,["G3788"]],[5,6,["G3754"]],[6,8,["G991"]],[8,9,["G2532"]],[9,10,["G5216"]],[10,11,["G3775"]],[11,12,["G3754"]],[12,14,["G191"]]]},{"k":23556,"v":[[0,1,["G1063"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,7,["G3754"]],[7,8,["G4183"]],[8,9,["G4396"]],[9,10,["G2532"]],[10,11,["G1342"]],[11,14,["G1937"]],[14,16,["G1492"]],[16,19,["G3739"]],[19,21,["G991"]],[21,22,["G2532"]],[22,24,["G3756"]],[24,25,["G1492"]],[25,27,["G2532"]],[27,29,["G191"]],[29,32,["G3739"]],[32,34,["G191"]],[34,35,["G2532"]],[35,37,["G3756"]],[37,38,["G191"]],[38,39,[]]]},{"k":23557,"v":[[0,1,["G191"]],[1,2,["G5210"]],[2,3,["G3767"]],[3,4,["G3588"]],[4,5,["G3850"]],[5,7,["G3588"]],[7,8,["G4687"]]]},{"k":23558,"v":[[0,3,["G3956"]],[3,4,["G191"]],[4,5,["G3588"]],[5,6,["G3056"]],[6,8,["G3588"]],[8,9,["G932"]],[9,10,["G2532"]],[10,11,["G4920"]],[11,13,["G3361"]],[13,15,["G2064"]],[15,16,["G3588"]],[16,17,["G4190"]],[17,19,["G2532"]],[19,21,["G726"]],[21,25,["G4687"]],[25,26,["G1722"]],[26,27,["G846"]],[27,28,["G2588"]],[28,29,["G3778"]],[29,30,["G2076"]],[30,34,["G4687"]],[34,35,["G3844"]],[35,36,["G3588"]],[36,38,["G3598"]]]},{"k":23559,"v":[[0,1,["G1161"]],[1,6,["G4687"]],[6,7,["G1909"]],[7,9,["G4075"]],[9,11,["G3778"]],[11,12,["G2076"]],[12,15,["G191"]],[15,16,["G3588"]],[16,17,["G3056"]],[17,18,["G2532"]],[18,19,["G2117"]],[19,20,["G3326"]],[20,21,["G5479"]],[21,22,["G2983"]],[22,23,["G846"]]]},{"k":23560,"v":[[0,1,["G1161"]],[1,2,["G2192"]],[2,4,["G3756"]],[4,5,["G4491"]],[5,6,["G1722"]],[6,7,["G1438"]],[7,8,["G235"]],[8,12,["G2076","G4340"]],[12,13,["G1161"]],[13,15,["G2347"]],[15,16,["G2228"]],[16,17,["G1375"]],[17,18,["G1096"]],[18,19,["G1223"]],[19,21,["G3588"]],[21,22,["G3056"]],[22,25,["G2117"]],[25,28,["G4624"]]]},{"k":23561,"v":[[0,5,["G4687","G1161"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G173","(G3778)"]],[8,9,["G2076"]],[9,12,["G191"]],[12,13,["G3588"]],[13,14,["G3056"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G3308"]],[17,19,["G5127"]],[19,20,["G165"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G539"]],[23,25,["G4149"]],[25,26,["G4846"]],[26,27,["G3588"]],[27,28,["G3056"]],[28,29,["G2532"]],[29,31,["G1096"]],[31,32,["G175"]]]},{"k":23562,"v":[[0,1,["G1161"]],[1,5,["G4687"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G2570"]],[8,9,["G1093"]],[9,10,["G2076"]],[10,13,["G191"]],[13,14,["G3588"]],[14,15,["G3056"]],[15,16,["G2532"]],[16,17,["G4920"]],[17,19,["G3739"]],[19,20,["G1211"]],[20,22,["G2592"]],[22,23,["G2532"]],[23,25,["G4160"]],[25,26,["G3588","(G3303)"]],[26,28,["G1540","(G1161)"]],[28,29,["G3588"]],[29,30,["G1835","(G1161)"]],[30,31,["G3588"]],[31,32,["G5144"]]]},{"k":23563,"v":[[0,1,["G243"]],[1,2,["G3850"]],[2,5,["G3908"]],[5,7,["G846"]],[7,8,["G3004"]],[8,9,["G3588"]],[9,10,["G932"]],[10,12,["G3772"]],[12,15,["G3666"]],[15,17,["G444"]],[17,19,["G4687"]],[19,20,["G2570"]],[20,21,["G4690"]],[21,22,["G1722"]],[22,23,["G848"]],[23,24,["G68"]]]},{"k":23564,"v":[[0,1,["G1161"]],[1,3,["G444"]],[3,4,["G2518"]],[4,5,["G846"]],[5,6,["G2190"]],[6,7,["G2064"]],[7,8,["G2532"]],[8,9,["G4687"]],[9,10,["G2215"]],[10,11,["G303","G3319"]],[11,12,["G3588"]],[12,13,["G4621"]],[13,14,["G2532"]],[14,17,["G565"]]]},{"k":23565,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,3,["G3588"]],[3,4,["G5528"]],[4,7,["G985"]],[7,8,["G2532"]],[8,10,["G4160"]],[10,11,["G2590"]],[11,12,["G5119"]],[12,13,["G5316"]],[13,14,["G3588"]],[14,15,["G2215"]],[15,16,["G2532"]]]},{"k":23566,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1401"]],[3,5,["G3588"]],[5,6,["G3617"]],[6,7,["G4334"]],[7,9,["G2036"]],[9,11,["G846"]],[11,12,["G2962"]],[12,14,["G3780"]],[14,16,["G4687"]],[16,17,["G2570"]],[17,18,["G4690"]],[18,19,["G1722"]],[19,20,["G4674"]],[20,21,["G68"]],[21,23,["G4159"]],[23,24,["G3767"]],[24,25,["G2192"]],[25,27,["G2215"]]]},{"k":23567,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G5346"]],[2,4,["G846"]],[4,5,["(G444)"]],[5,6,["G2190"]],[6,8,["G4160"]],[8,9,["G5124"]],[9,10,["G3588"]],[10,11,["G1401"]],[11,12,["G2036"]],[12,14,["G846"]],[14,15,["G2309"]],[15,17,["G3767"]],[17,20,["G565"]],[20,21,["G2532"]],[21,24,["G4816","G846"]]]},{"k":23568,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5346"]],[3,4,["G3756"]],[4,5,["G3379"]],[5,9,["G4816"]],[9,10,["G3588"]],[10,11,["G2215"]],[11,14,["G1610"]],[14,16,["G3588"]],[16,17,["G4621"]],[17,18,["G260"]],[18,19,["G846"]]]},{"k":23569,"v":[[0,1,["G863"]],[1,2,["G297"]],[2,4,["G4885"]],[4,5,["G3360"]],[5,6,["G3588"]],[6,7,["G2326"]],[7,8,["G2532"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2540"]],[11,13,["G2326"]],[13,16,["G2046"]],[16,18,["G3588"]],[18,19,["G2327"]],[19,22,["G4816"]],[22,23,["G4412"]],[23,24,["G3588"]],[24,25,["G2215"]],[25,26,["G2532"]],[26,27,["G1210"]],[27,28,["G846"]],[28,29,["G1519"]],[29,30,["G1197"]],[30,32,["G2618"]],[32,33,["G846"]],[33,34,["G1161"]],[34,35,["G4863"]],[35,36,["G3588"]],[36,37,["G4621"]],[37,38,["G1519"]],[38,39,["G3450"]],[39,40,["G596"]]]},{"k":23570,"v":[[0,1,["G243"]],[1,2,["G3850"]],[2,5,["G3908"]],[5,7,["G846"]],[7,8,["G3004"]],[8,9,["G3588"]],[9,10,["G932"]],[10,12,["G3772"]],[12,13,["G2076"]],[13,15,["G3664"]],[15,17,["G2848"]],[17,20,["G4615"]],[20,21,["G3739"]],[21,23,["G444"]],[23,24,["G2983"]],[24,25,["G2532"]],[25,26,["G4687"]],[26,27,["G1722"]],[27,28,["G846"]],[28,29,["G68"]]]},{"k":23571,"v":[[0,1,["G3739"]],[1,2,["G3303"]],[2,3,["G2076"]],[3,5,["G3398"]],[5,7,["G3956"]],[7,8,["G4690"]],[8,9,["G1161"]],[9,10,["G3752"]],[10,13,["G837"]],[13,15,["G2076"]],[15,17,["G3187"]],[17,19,["G3001"]],[19,20,["G2532"]],[20,21,["G1096"]],[21,23,["G1186"]],[23,25,["G5620"]],[25,26,["G3588"]],[26,27,["G4071"]],[27,29,["G3588"]],[29,30,["G3772"]],[30,31,["G2064"]],[31,32,["G2532"]],[32,33,["G2681"]],[33,34,["G1722"]],[34,35,["G3588"]],[35,36,["G2798"]],[36,37,["G846"]]]},{"k":23572,"v":[[0,1,["G243"]],[1,2,["G3850"]],[2,3,["G2980"]],[3,6,["G846"]],[6,7,["G3588"]],[7,8,["G932"]],[8,10,["G3772"]],[10,11,["G2076"]],[11,13,["G3664"]],[13,14,["G2219"]],[14,15,["G3739"]],[15,17,["G1135"]],[17,18,["G2983"]],[18,19,["G2532"]],[19,20,["G1470"]],[20,21,["G1519"]],[21,22,["G5140"]],[22,23,["G4568"]],[23,25,["G224"]],[25,26,["G2193"]],[26,27,["(G3739)"]],[27,28,["G3650"]],[28,30,["G2220"]]]},{"k":23573,"v":[[0,1,["G3956"]],[1,3,["G5023"]],[3,4,["G2980"]],[4,5,["G2424"]],[5,7,["G3588"]],[7,8,["G3793"]],[8,9,["G1722"]],[9,10,["G3850"]],[10,11,["G2532"]],[11,12,["G5565"]],[12,14,["G3850"]],[14,15,["G2980"]],[15,17,["G3756"]],[17,19,["G846"]]]},{"k":23574,"v":[[0,1,["G3704"]],[1,5,["G4137"]],[5,8,["G4483"]],[8,9,["G1223"]],[9,10,["G3588"]],[10,11,["G4396"]],[11,12,["G3004"]],[12,15,["G455"]],[15,16,["G3450"]],[16,17,["G4750"]],[17,18,["G1722"]],[18,19,["G3850"]],[19,22,["G2044"]],[22,28,["G2928"]],[28,29,["G575"]],[29,31,["G2602"]],[31,34,["G2889"]]]},{"k":23575,"v":[[0,1,["G5119"]],[1,2,["G2424"]],[2,6,["G863","G3588","G3793"]],[6,8,["G2064"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G3614"]],[11,12,["G2532"]],[12,13,["G846"]],[13,14,["G3101"]],[14,15,["G4334"]],[15,17,["G846"]],[17,18,["G3004"]],[18,19,["G5419"]],[19,21,["G2254"]],[21,22,["G3588"]],[22,23,["G3850"]],[23,25,["G3588"]],[25,26,["G2215"]],[26,28,["G3588"]],[28,29,["G68"]]]},{"k":23576,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G846"]],[6,9,["G4687"]],[9,10,["G3588"]],[10,11,["G2570"]],[11,12,["G4690"]],[12,13,["G2076"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,17,["G444"]]]},{"k":23577,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G68"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G2889"]],[5,6,["G3588"]],[6,7,["G2570"]],[7,8,["G4690"]],[8,9,["(G3778)","G1526"]],[9,10,["G3588"]],[10,11,["G5207"]],[11,13,["G3588"]],[13,14,["G932"]],[14,15,["G1161"]],[15,16,["G3588"]],[16,17,["G2215"]],[17,18,["G1526"]],[18,19,["G3588"]],[19,20,["G5207"]],[20,22,["G3588"]],[22,23,["G4190"]],[23,24,[]]]},{"k":23578,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G2190"]],[2,4,["G4687"]],[4,5,["G846"]],[5,6,["G2076"]],[6,7,["G3588"]],[7,8,["G1228"]],[8,9,["G3588"]],[9,10,["G2326"]],[10,11,["G2076"]],[11,13,["G4930"]],[13,15,["G3588"]],[15,16,["G165"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G2327"]],[19,20,["G1526"]],[20,22,["G32"]]]},{"k":23579,"v":[[0,1,["G5618"]],[1,2,["G3767"]],[2,3,["G3588"]],[3,4,["G2215"]],[4,6,["G4816"]],[6,7,["G2532"]],[7,8,["G2618"]],[8,11,["G4442"]],[11,12,["G3779"]],[12,15,["G2071"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G4930"]],[18,20,["G5127"]],[20,21,["G165"]]]},{"k":23580,"v":[[0,1,["G3588"]],[1,2,["G5207"]],[2,4,["G444"]],[4,7,["G649"]],[7,8,["G846"]],[8,9,["G32"]],[9,10,["G2532"]],[10,13,["G4816"]],[13,15,["G1537"]],[15,16,["G848"]],[16,17,["G932"]],[17,19,["G3956"]],[19,21,["G4625"]],[21,22,["G2532"]],[22,25,["G4160"]],[25,26,["G458"]]]},{"k":23581,"v":[[0,1,["G2532"]],[1,3,["G906"]],[3,4,["G846"]],[4,5,["G1519"]],[5,7,["G2575"]],[7,9,["G4442"]],[9,10,["G1563"]],[10,12,["G2071"]],[12,13,["G2805"]],[13,14,["G2532"]],[14,15,["G1030"]],[15,17,["G3599"]]]},{"k":23582,"v":[[0,1,["G5119"]],[1,3,["G3588"]],[3,4,["G1342"]],[4,6,["G1584"]],[6,7,["G5613"]],[7,8,["G3588"]],[8,9,["G2246"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G932"]],[12,14,["G848"]],[14,15,["G3962"]],[15,17,["G2192"]],[17,18,["G3775"]],[18,20,["G191"]],[20,23,["G191"]]]},{"k":23583,"v":[[0,1,["G3825"]],[1,2,["G3588"]],[2,3,["G932"]],[3,5,["G3772"]],[5,6,["G2076"]],[6,8,["G3664"]],[8,9,["G2344"]],[9,10,["G2928"]],[10,11,["G1722"]],[11,13,["G68"]],[13,15,["G3739"]],[15,18,["G444"]],[18,20,["G2147"]],[20,22,["G2928"]],[22,23,["G2532"]],[23,24,["G575"]],[24,25,["G5479"]],[25,26,["G846"]],[26,27,["G5217"]],[27,28,["G2532"]],[28,29,["G4453"]],[29,30,["G3956"]],[30,31,["G3745"]],[31,33,["G2192"]],[33,34,["G2532"]],[34,35,["G59"]],[35,36,["G1565"]],[36,37,["G68"]]]},{"k":23584,"v":[[0,1,["G3825"]],[1,2,["G3588"]],[2,3,["G932"]],[3,5,["G3772"]],[5,6,["G2076"]],[6,8,["G3664"]],[8,10,["G1713"]],[10,11,["G444"]],[11,12,["G2212"]],[12,13,["G2570"]],[13,14,["G3135"]]]},{"k":23585,"v":[[0,1,["G3739"]],[1,5,["G2147"]],[5,6,["G1520"]],[6,7,["G3135"]],[7,10,["G4186"]],[10,11,["G565"]],[11,13,["G4097"]],[13,14,["G3956"]],[14,15,["G3745"]],[15,17,["G2192"]],[17,18,["G2532"]],[18,19,["G59"]],[19,20,["G846"]]]},{"k":23586,"v":[[0,1,["G3825"]],[1,2,["G3588"]],[2,3,["G932"]],[3,5,["G3772"]],[5,6,["G2076"]],[6,8,["G3664"]],[8,10,["G4522"]],[10,13,["G906"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G2281"]],[16,17,["G2532"]],[17,18,["G4863"]],[18,19,["G1537"]],[19,20,["G3956"]],[20,21,["G1085"]]]},{"k":23587,"v":[[0,1,["G3739"]],[1,2,["G3753"]],[2,5,["G4137"]],[5,7,["G307"]],[7,8,["G1909"]],[8,9,["G123"]],[9,10,["G2532"]],[10,12,["G2523"]],[12,14,["G4816"]],[14,15,["G3588"]],[15,16,["G2570"]],[16,17,["G1519"]],[17,18,["G30"]],[18,19,["G1161"]],[19,20,["G906"]],[20,21,["G3588"]],[21,22,["G4550"]],[22,23,["G1854"]]]},{"k":23588,"v":[[0,1,["G3779"]],[1,4,["G2071"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G4930"]],[7,9,["G3588"]],[9,10,["G165"]],[10,11,["G3588"]],[11,12,["G32"]],[12,15,["G1831"]],[15,16,["G2532"]],[16,17,["G873"]],[17,18,["G3588"]],[18,19,["G4190"]],[19,20,["G1537"]],[20,21,["G3319"]],[21,22,["G3588"]],[22,23,["G1342"]]]},{"k":23589,"v":[[0,1,["G2532"]],[1,3,["G906"]],[3,4,["G846"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G2575"]],[7,9,["G4442"]],[9,10,["G1563"]],[10,12,["G2071"]],[12,13,["G2805"]],[13,14,["G2532"]],[14,15,["G1030"]],[15,17,["G3599"]]]},{"k":23590,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,7,["G4920"]],[7,8,["G3956"]],[8,11,["G5023"]],[11,12,["G3004"]],[12,14,["G846"]],[14,15,["G3483"]],[15,16,["G2962"]]]},{"k":23591,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,5,["G846"]],[5,6,["G1223","G5124"]],[6,7,["G3956"]],[7,8,["G1122"]],[8,11,["G3100"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G932"]],[14,16,["G3772"]],[16,17,["G2076"]],[17,19,["G3664"]],[19,21,["G444"]],[21,25,["G3617"]],[25,26,["G3748"]],[26,28,["G1544"]],[28,29,["G1537"]],[29,31,["G848"]],[31,32,["G2344"]],[32,34,["G2537"]],[34,35,["G2532"]],[35,36,["G3820"]]]},{"k":23592,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G3753"]],[7,8,["G2424"]],[8,10,["G5055"]],[10,11,["G5025"]],[11,12,["G3850"]],[12,14,["G3332"]],[14,15,["G1564"]]]},{"k":23593,"v":[[0,1,["G2532"]],[1,5,["G2064"]],[5,6,["G1519"]],[6,8,["G848"]],[8,9,["G3968"]],[9,11,["G1321"]],[11,12,["G846"]],[12,13,["G1722"]],[13,14,["G846"]],[14,15,["G4864"]],[15,17,["G5620"]],[17,18,["G846"]],[18,20,["G1605"]],[20,21,["G2532"]],[21,22,["G3004"]],[22,23,["G4159"]],[23,25,["G5129"]],[25,27,["G3778"]],[27,28,["G4678"]],[28,29,["G2532"]],[29,32,["G1411"]]]},{"k":23594,"v":[[0,1,["G2076"]],[1,2,["G3756"]],[2,3,["G3778"]],[3,4,["G3588"]],[4,5,["G5045"]],[5,6,["G5207"]],[6,8,["G3780"]],[8,9,["G846"]],[9,10,["G3384"]],[10,11,["G3004"]],[11,12,["G3137"]],[12,13,["G2532"]],[13,14,["G846"]],[14,15,["G80"]],[15,16,["G2385"]],[16,17,["G2532"]],[17,18,["G2500"]],[18,19,["G2532"]],[19,20,["G4613"]],[20,21,["G2532"]],[21,22,["G2455"]]]},{"k":23595,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G79"]],[3,4,["G1526"]],[4,6,["G3780"]],[6,7,["G3956"]],[7,8,["G4314"]],[8,9,["G2248"]],[9,10,["G4159"]],[10,11,["G3767"]],[11,13,["G5129"]],[13,15,["G3956"]],[15,17,["G5023"]]]},{"k":23596,"v":[[0,1,["G2532"]],[1,4,["G4624"]],[4,5,["G1722"]],[5,6,["G846"]],[6,7,["G1161"]],[7,8,["G2424"]],[8,9,["G2036"]],[9,11,["G846"]],[11,13,["G4396"]],[13,14,["G2076"]],[14,15,["G3756"]],[15,17,["G820"]],[17,18,["G1508"]],[18,19,["G1722"]],[19,21,["G848"]],[21,22,["G3968"]],[22,23,["G2532"]],[23,24,["G1722"]],[24,26,["G848"]],[26,27,["G3614"]]]},{"k":23597,"v":[[0,1,["G2532"]],[1,3,["G4160"]],[3,4,["G3756"]],[4,5,["G4183"]],[5,7,["G1411"]],[7,8,["G1563"]],[8,9,["G1223"]],[9,11,["G846"]],[11,12,["G570"]]]},{"k":23598,"v":[[0,1,["G1722"]],[1,2,["G1565"]],[2,3,["G2540"]],[3,4,["G2264"]],[4,5,["G3588"]],[5,6,["G5076"]],[6,7,["G191"]],[7,9,["G3588"]],[9,10,["G189"]],[10,12,["G2424"]]]},{"k":23599,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,4,["G848"]],[4,5,["G3816"]],[5,6,["G3778"]],[6,7,["G2076"]],[7,8,["G2491"]],[8,9,["G3588"]],[9,10,["G910"]],[10,11,["G846"]],[11,13,["G1453"]],[13,14,["G575"]],[14,15,["G3588"]],[15,16,["G3498"]],[16,17,["G2532"]],[17,18,["G1223","G5124"]],[18,20,["G1411"]],[20,23,["G1754"]],[23,25,["G1722"]],[25,26,["G846"]]]},{"k":23600,"v":[[0,1,["G1063"]],[1,2,["G2264"]],[2,6,["G2902"]],[6,7,["G2491"]],[7,9,["G1210"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G5087"]],[12,14,["G1722"]],[14,15,["G5438"]],[15,18,["G1223","G2266"]],[18,19,["G846"]],[19,20,["G80"]],[20,21,["G5376"]],[21,22,["G1135"]]]},{"k":23601,"v":[[0,1,["G1063"]],[1,2,["G2491"]],[2,3,["G3004"]],[3,5,["G846"]],[5,9,["G1832","G3756"]],[9,11,["G4671"]],[11,13,["G2192"]],[13,14,["G846"]]]},{"k":23602,"v":[[0,1,["G2532"]],[1,4,["G2309"]],[4,9,["G615","G846"]],[9,11,["G5399"]],[11,12,["G3588"]],[12,13,["G3793"]],[13,14,["G3754"]],[14,16,["G2192"]],[16,17,["G846"]],[17,18,["G5613"]],[18,20,["G4396"]]]},{"k":23603,"v":[[0,1,["G1161"]],[1,3,["G2264"]],[3,4,["G1077"]],[4,6,["G71"]],[6,7,["G3588"]],[7,8,["G2364"]],[8,10,["G2266"]],[10,11,["G3738"]],[11,13,["G1722","G3319"]],[13,14,["G2532"]],[14,15,["G700"]],[15,16,["G2264"]]]},{"k":23604,"v":[[0,1,["G3606"]],[1,3,["G3670"]],[3,4,["G3326"]],[4,6,["G3727"]],[6,8,["G1325"]],[8,9,["G846"]],[9,10,["G3739","G1437"]],[10,13,["G154"]]]},{"k":23605,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,5,["G4264"]],[5,6,["G5259"]],[6,7,["G848"]],[7,8,["G3384"]],[8,9,["G5346"]],[9,10,["G1325"]],[10,11,["G3427"]],[11,12,["G5602"]],[12,13,["G2491"]],[13,14,["G910"]],[14,15,["G2776"]],[15,16,["G1909"]],[16,18,["G4094"]]]},{"k":23606,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G935"]],[3,5,["G3076"]],[5,6,["G1161"]],[6,10,["G1223","G3588","G3727"]],[10,11,["G2532"]],[11,18,["G4873"]],[18,20,["G2753"]],[20,24,["G1325"]],[24,25,[]]]},{"k":23607,"v":[[0,1,["G2532"]],[1,3,["G3992"]],[3,5,["G607"]],[5,6,["G2491"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G5438"]]]},{"k":23608,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G2776"]],[3,5,["G5342"]],[5,6,["G1909"]],[6,8,["G4094"]],[8,9,["G2532"]],[9,10,["G1325"]],[10,12,["G3588"]],[12,13,["G2877"]],[13,14,["G2532"]],[14,16,["G5342"]],[16,19,["G846"]],[19,20,["G3384"]]]},{"k":23609,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3101"]],[3,4,["G4334"]],[4,7,["G142"]],[7,8,["G3588"]],[8,9,["G4983"]],[9,10,["G2532"]],[10,11,["G2290"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G2064"]],[14,16,["G518"]],[16,17,["G2424"]]]},{"k":23610,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G191"]],[3,7,["G402"]],[7,8,["G1564"]],[8,9,["G1722"]],[9,10,["G4143"]],[10,11,["G1519"]],[11,13,["G2048"]],[13,14,["G5117"]],[14,15,["G2596","G2398"]],[15,16,["G2532"]],[16,18,["G3588"]],[18,19,["G3793"]],[19,21,["G191"]],[21,24,["G190"]],[24,25,["G846"]],[25,27,["G3979"]],[27,29,["G575"]],[29,30,["G3588"]],[30,31,["G4172"]]]},{"k":23611,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,4,["G1831"]],[4,6,["G1492"]],[6,8,["G4183"]],[8,9,["G3793"]],[9,10,["G2532"]],[10,14,["G4697"]],[14,15,["G1909"]],[15,16,["G846"]],[16,17,["G2532"]],[17,19,["G2323"]],[19,20,["G846"]],[20,21,["G732"]]]},{"k":23612,"v":[[0,1,["G1161"]],[1,4,["G1096"]],[4,5,["G3798"]],[5,6,["G846"]],[6,7,["G3101"]],[7,8,["G4334"]],[8,10,["G846"]],[10,11,["G3004"]],[11,13,["G2076"]],[13,15,["G2048"]],[15,16,["G5117"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G5610"]],[19,21,["G2235"]],[21,22,["G3928"]],[22,26,["G630","G3588","G3793"]],[26,27,["G2443"]],[27,30,["G565"]],[30,31,["G1519"]],[31,32,["G3588"]],[32,33,["G2968"]],[33,34,["G2532"]],[34,35,["G59"]],[35,36,["G1438"]],[36,37,["G1033"]]]},{"k":23613,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,7,["G2192","G5532"]],[7,8,["G3756"]],[8,9,["G565"]],[9,10,["G1325"]],[10,11,["G5210"]],[11,12,["G846"]],[12,14,["G5315"]]]},{"k":23614,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3004"]],[3,5,["G846"]],[5,7,["G2192","(G3756)"]],[7,8,["G5602"]],[8,9,["G1508"]],[9,10,["G4002"]],[10,11,["G740"]],[11,12,["G2532"]],[12,13,["G1417"]],[13,14,["G2486"]]]},{"k":23615,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G2036"]],[2,3,["G5342"]],[3,4,["G846"]],[4,5,["G5602"]],[5,7,["G3427"]]]},{"k":23616,"v":[[0,1,["G2532"]],[1,3,["G2753"]],[3,4,["G3588"]],[4,5,["G3793"]],[5,8,["G347"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G5528"]],[11,12,["G2532"]],[12,13,["G2983"]],[13,14,["G3588"]],[14,15,["G4002"]],[15,16,["G740"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G1417"]],[19,20,["G2486"]],[20,23,["G308"]],[23,24,["G1519"]],[24,25,["G3772"]],[25,27,["G2127"]],[27,28,["G2532"]],[28,29,["G2806"]],[29,30,["G2532"]],[30,31,["G1325"]],[31,32,["G3588"]],[32,33,["G740"]],[33,36,["G3101"]],[36,37,["G1161"]],[37,38,["G3588"]],[38,39,["G3101"]],[39,41,["G3588"]],[41,42,["G3793"]]]},{"k":23617,"v":[[0,1,["G2532"]],[1,4,["G3956"]],[4,5,["G5315"]],[5,6,["G2532"]],[6,8,["G5526"]],[8,9,["G2532"]],[9,12,["G142"]],[12,14,["G3588"]],[14,15,["G2801"]],[15,17,["G4052"]],[17,18,["G1427"]],[18,19,["G2894"]],[19,20,["G4134"]]]},{"k":23618,"v":[[0,1,["G1161"]],[1,5,["G2068"]],[5,6,["G2258"]],[6,7,["G5616"]],[7,9,["G4000"]],[9,10,["G435"]],[10,11,["G5565"]],[11,12,["G1135"]],[12,13,["G2532"]],[13,14,["G3813"]]]},{"k":23619,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G2424"]],[3,4,["G315"]],[4,5,["G848"]],[5,6,["G3101"]],[6,8,["G1684"]],[8,9,["G1519"]],[9,11,["G4143"]],[11,12,["G2532"]],[12,15,["G4254"]],[15,16,["G846"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,20,["G4008"]],[20,21,["G2193","G3739"]],[21,26,["G630","G3588","G3793"]]]},{"k":23620,"v":[[0,1,["G2532"]],[1,8,["G630","G3588","G3793"]],[8,11,["G305"]],[11,12,["G1519"]],[12,14,["G3735"]],[14,15,["G2596","G2398"]],[15,17,["G4336"]],[17,18,["G1161"]],[18,21,["G3798"]],[21,23,["G1096"]],[23,25,["G2258"]],[25,26,["G1563"]],[26,27,["G3441"]]]},{"k":23621,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4143"]],[3,4,["G2258"]],[4,5,["G2235"]],[5,8,["G3319"]],[8,10,["G3588"]],[10,11,["G2281"]],[11,12,["G928"]],[12,13,["G5259"]],[13,14,["G2949"]],[14,15,["G1063"]],[15,16,["G3588"]],[16,17,["G417"]],[17,18,["G2258"]],[18,19,["G1727"]]]},{"k":23622,"v":[[0,1,["G1161"]],[1,4,["G5067"]],[4,5,["G5438"]],[5,7,["G3588"]],[7,8,["G3571"]],[8,9,["G2424"]],[9,10,["G565"]],[10,11,["G4314"]],[11,12,["G846"]],[12,13,["G4043"]],[13,14,["G1909"]],[14,15,["G3588"]],[15,16,["G2281"]]]},{"k":23623,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G3101"]],[4,5,["G1492"]],[5,6,["G846"]],[6,7,["G4043"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,10,["G2281"]],[10,13,["G5015"]],[13,14,["G3004"]],[14,16,["G2076"]],[16,18,["G5326"]],[18,19,["G2532"]],[19,22,["G2896"]],[22,23,["G575"]],[23,24,["G5401"]]]},{"k":23624,"v":[[0,1,["G1161"]],[1,2,["G2112"]],[2,3,["G2424"]],[3,4,["G2980"]],[4,6,["G846"]],[6,7,["G3004"]],[7,11,["G2293"]],[11,13,["G1510"]],[13,14,["G1473"]],[14,17,["G5399","G3361"]]]},{"k":23625,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G611"]],[3,4,["G846"]],[4,6,["G2036"]],[6,7,["G2962"]],[7,8,["G1487"]],[8,10,["G1488"]],[10,11,["G4771"]],[11,12,["G2753"]],[12,13,["G3165"]],[13,14,["G2064"]],[14,15,["G4314"]],[15,16,["G4571"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G5204"]]]},{"k":23626,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G2064"]],[4,5,["G2532"]],[5,7,["G4074"]],[7,10,["G2597"]],[10,12,["G575"]],[12,13,["G3588"]],[13,14,["G4143"]],[14,16,["G4043"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G5204"]],[19,21,["G2064"]],[21,22,["G4314"]],[22,23,["G2424"]]]},{"k":23627,"v":[[0,1,["G1161"]],[1,4,["G991"]],[4,5,["G3588"]],[5,6,["G417"]],[6,7,["G2478"]],[7,10,["G5399"]],[10,11,["G2532"]],[11,12,["G756"]],[12,14,["G2670"]],[14,16,["G2896"]],[16,17,["G3004"]],[17,18,["G2962"]],[18,19,["G4982"]],[19,20,["G3165"]]]},{"k":23628,"v":[[0,1,["G1161"]],[1,2,["G2112"]],[2,3,["G2424"]],[3,5,["G1614"]],[5,7,["G5495"]],[7,9,["G1949"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G3004"]],[12,14,["G846"]],[14,19,["G3640"]],[19,20,["G1519","G5101"]],[20,23,["G1365"]]]},{"k":23629,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G1684"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G4143"]],[8,9,["G3588"]],[9,10,["G417"]],[10,11,["G2869"]]]},{"k":23630,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,5,["G1722"]],[5,6,["G3588"]],[6,7,["G4143"]],[7,8,["G2064"]],[8,10,["G4352"]],[10,11,["G846"]],[11,12,["G3004"]],[12,15,["G230"]],[15,17,["G1488"]],[17,19,["G5207"]],[19,21,["G2316"]]]},{"k":23631,"v":[[0,1,["G2532"]],[1,6,["G1276"]],[6,8,["G2064"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G1093"]],[11,13,["G1082"]]]},{"k":23632,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G435"]],[4,6,["G1565"]],[6,7,["G5117"]],[7,9,["G1921"]],[9,11,["G846"]],[11,14,["G649"]],[14,15,["G1519"]],[15,16,["G3650"]],[16,17,["G1565"]],[17,20,["G4066"]],[20,21,["G2532"]],[21,22,["G4374"]],[22,24,["G846"]],[24,25,["G3956"]],[25,28,["G2192","G2560"]]]},{"k":23633,"v":[[0,1,["G2532"]],[1,2,["G3870"]],[2,3,["G846"]],[3,4,["G2443"]],[4,7,["G3440"]],[7,8,["G680"]],[8,9,["G3588"]],[9,10,["G2899"]],[10,12,["G846"]],[12,13,["G2440"]],[13,14,["G2532"]],[14,17,["G3745"]],[17,18,["G680"]],[18,22,["G1295"]]]},{"k":23634,"v":[[0,1,["G5119"]],[1,2,["G4334"]],[2,4,["G2424"]],[4,5,["G1122"]],[5,6,["G2532"]],[6,7,["G5330"]],[7,8,["G3588"]],[8,10,["G575"]],[10,11,["G2414"]],[11,12,["G3004"]]]},{"k":23635,"v":[[0,1,["G1302"]],[1,3,["G4675"]],[3,4,["G3101"]],[4,5,["G3845"]],[5,6,["G3588"]],[6,7,["G3862"]],[7,9,["G3588"]],[9,10,["G4245"]],[10,11,["G1063"]],[11,13,["G3538"]],[13,14,["G3756"]],[14,15,["G848"]],[15,16,["G5495"]],[16,17,["G3752"]],[17,19,["G2068"]],[19,20,["G740"]]]},{"k":23636,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G1302"]],[8,10,["G5210"]],[10,11,["G2532"]],[11,12,["G3845"]],[12,13,["G3588"]],[13,14,["G1785"]],[14,16,["G2316"]],[16,17,["G1223"]],[17,18,["G5216"]],[18,19,["G3862"]]]},{"k":23637,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,3,["G1781"]],[3,4,["G3004"]],[4,5,["G5091"]],[5,6,["G4675"]],[6,7,["G3962"]],[7,8,["G2532"]],[8,9,["G3384"]],[9,10,["G2532"]],[10,13,["G2551"]],[13,14,["G3962"]],[14,15,["G2228"]],[15,16,["G3384"]],[16,19,["G5053"]],[19,21,["G2288"]]]},{"k":23638,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G3004"]],[3,4,["G3739","G302"]],[4,6,["G2036"]],[6,9,["G3962"]],[9,10,["G2228"]],[10,12,["G3384"]],[12,16,["G1435"]],[16,18,["G3739","G1437"]],[18,22,["G5623"]],[22,23,["G1537"]],[23,24,["G1700"]]]},{"k":23639,"v":[[0,1,["G2532"]],[1,2,["G5091"]],[2,3,["G3364"]],[3,4,["G848"]],[4,5,["G3962"]],[5,6,["G2228"]],[6,7,["G848"]],[7,8,["G3384"]],[8,13,["G2532"]],[13,23,["G208","G3588","G1785","G2316"]],[23,24,["G1223"]],[24,25,["G5216"]],[25,26,["G3862"]]]},{"k":23640,"v":[[0,2,["G5273"]],[2,3,["G2573"]],[3,5,["G2268"]],[5,6,["G4395"]],[6,7,["G4012"]],[7,8,["G5216"]],[8,9,["G3004"]]]},{"k":23641,"v":[[0,1,["G3778"]],[1,2,["G2992"]],[2,4,["G1448"]],[4,6,["G3427"]],[6,8,["G848"]],[8,9,["G4750"]],[9,10,["G2532"]],[10,11,["G5091"]],[11,12,["G3165"]],[12,15,["G5491"]],[15,16,["G1161"]],[16,17,["G846"]],[17,18,["G2588"]],[18,19,["G568"]],[19,20,["G4206"]],[20,21,["G575"]],[21,22,["G1700"]]]},{"k":23642,"v":[[0,1,["G1161"]],[1,3,["G3155"]],[3,6,["G4576"]],[6,7,["G3165"]],[7,8,["G1321"]],[8,10,["G1319"]],[10,12,["G1778"]],[12,14,["G444"]]]},{"k":23643,"v":[[0,1,["G2532"]],[1,3,["G4341"]],[3,4,["G3588"]],[4,5,["G3793"]],[5,7,["G2036"]],[7,9,["G846"]],[9,10,["G191"]],[10,11,["G2532"]],[11,12,["G4920"]]]},{"k":23644,"v":[[0,1,["G3756"]],[1,4,["G1525"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G4750"]],[7,8,["G2840"]],[8,10,["G444"]],[10,11,["G235"]],[11,14,["G1607"]],[14,15,["G1537"]],[15,17,["G3588"]],[17,18,["G4750"]],[18,19,["G5124"]],[19,20,["G2840"]],[20,22,["G444"]]]},{"k":23645,"v":[[0,1,["G5119"]],[1,2,["G4334"]],[2,3,["G846"]],[3,4,["G3101"]],[4,6,["G2036"]],[6,8,["G846"]],[8,9,["G1492"]],[9,11,["G3754"]],[11,12,["G3588"]],[12,13,["G5330"]],[13,15,["G4624"]],[15,18,["G191"]],[18,20,["G3056"]]]},{"k":23646,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,6,["G3956"]],[6,7,["G5451"]],[7,8,["G3739"]],[8,9,["G3450"]],[9,10,["G3770"]],[10,11,["G3962"]],[11,13,["G3756"]],[13,14,["G5452"]],[14,18,["G1610"]]]},{"k":23647,"v":[[0,3,["G863","G846"]],[3,5,["G1526"]],[5,6,["G5185"]],[6,7,["G3595"]],[7,10,["G5185"]],[10,11,["G1161"]],[11,12,["G1437"]],[12,14,["G5185"]],[14,15,["G3594"]],[15,17,["G5185"]],[17,18,["G297"]],[18,20,["G4098"]],[20,21,["G1519"]],[21,23,["G999"]]]},{"k":23648,"v":[[0,1,["G1161"]],[1,2,["G611"]],[2,3,["G4074"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G5419"]],[8,10,["G2254"]],[10,11,["G5026"]],[11,12,["G3850"]]]},{"k":23649,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G2075"]],[4,5,["G5210"]],[5,6,["G2532"]],[6,7,["G188"]],[7,9,["G801"]]]},{"k":23650,"v":[[0,4,["G3768"]],[4,5,["G3539"]],[5,6,["G3754"]],[6,7,["G3956"]],[7,8,["G1531"]],[8,9,["G1519"]],[9,11,["G3588"]],[11,12,["G4750"]],[12,13,["G5562"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G2836"]],[16,17,["G2532"]],[17,20,["G1544"]],[20,21,["G1519"]],[21,23,["G856"]]]},{"k":23651,"v":[[0,1,["G1161"]],[1,5,["G1607"]],[5,7,["G1537"]],[7,8,["G3588"]],[8,9,["G4750"]],[9,11,["G1831"]],[11,12,["G1537"]],[12,13,["G3588"]],[13,14,["G2588"]],[14,16,["G2548"]],[16,17,["G2840"]],[17,18,["G3588"]],[18,19,["G444"]]]},{"k":23652,"v":[[0,1,["G1063"]],[1,2,["G1537"]],[2,4,["G3588"]],[4,5,["G2588"]],[5,6,["G1831"]],[6,7,["G4190"]],[7,8,["G1261"]],[8,9,["G5408"]],[9,10,["G3430"]],[10,11,["G4202"]],[11,12,["G2829"]],[12,14,["G5577"]],[14,15,["G988"]]]},{"k":23653,"v":[[0,1,["G5023"]],[1,2,["G2076"]],[2,6,["G2840"]],[6,8,["G444"]],[8,9,["G1161"]],[9,11,["G5315"]],[11,13,["G449"]],[13,14,["G5495"]],[14,15,["G2840"]],[15,16,["G3756"]],[16,18,["G444"]]]},{"k":23654,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G1831"]],[3,4,["G1564"]],[4,6,["G402"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G3313"]],[9,11,["G5184"]],[11,12,["G2532"]],[12,13,["G4605"]]]},{"k":23655,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G1135"]],[4,6,["G5478"]],[6,7,["G1831"]],[7,9,["G575"]],[9,10,["G3588"]],[10,11,["G1565"]],[11,12,["G3725"]],[12,14,["G2905"]],[14,16,["G846"]],[16,17,["G3004"]],[17,19,["G1653"]],[19,21,["G3165"]],[21,23,["G2962"]],[23,25,["G5207"]],[25,27,["G1138"]],[27,28,["G3450"]],[28,29,["G2364"]],[29,31,["G2560"]],[31,35,["G1139"]]]},{"k":23656,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,4,["G846"]],[4,5,["G3756"]],[5,7,["G3056"]],[7,8,["G2532"]],[8,9,["G846"]],[9,10,["G3101"]],[10,11,["G4334"]],[11,13,["G2065"]],[13,14,["G846"]],[14,15,["G3004"]],[15,18,["G630","G846"]],[18,19,["G3754"]],[19,21,["G2896"]],[21,22,["G3693"]],[22,23,["G2257"]]]},{"k":23657,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,8,["G3756"]],[8,9,["G649"]],[9,10,["G1508"]],[10,11,["G1519"]],[11,13,["G622"]],[13,14,["G4263"]],[14,17,["G3624"]],[17,19,["G2474"]]]},{"k":23658,"v":[[0,1,["G1161"]],[1,2,["G2064"]],[2,3,["G3588"]],[3,5,["G4352"]],[5,6,["G846"]],[6,7,["G3004"]],[7,8,["G2962"]],[8,9,["G997"]],[9,10,["G3427"]]]},{"k":23659,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G2076"]],[7,8,["G3756"]],[8,9,["G2570"]],[9,11,["G2983"]],[11,12,["G3588"]],[12,13,["G5043"]],[13,14,["G740"]],[14,15,["G2532"]],[15,17,["G906"]],[17,20,["G2952"]]]},{"k":23660,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G3483"]],[4,5,["G2962"]],[5,6,["G1063"]],[6,7,["G3588"]],[7,8,["G2952"]],[8,9,["G2068"]],[9,10,["G575"]],[10,11,["G3588"]],[11,12,["G5589"]],[12,14,["G4098"]],[14,15,["G575"]],[15,16,["G848"]],[16,17,["G2962"]],[17,18,["G5132"]]]},{"k":23661,"v":[[0,1,["G5119"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G5599"]],[8,9,["G1135"]],[9,10,["G3173"]],[10,12,["G4675"]],[12,13,["G4102"]],[13,14,["G1096"]],[14,17,["G4671"]],[17,19,["G5613"]],[19,21,["G2309"]],[21,22,["G2532"]],[22,23,["G846"]],[23,24,["G2364"]],[24,27,["G2390"]],[27,28,["G575"]],[28,30,["G1565"]],[30,31,["G5610"]]]},{"k":23662,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G3327"]],[3,5,["G1564"]],[5,7,["G2064"]],[7,9,["G3844"]],[9,10,["G3588"]],[10,11,["G2281"]],[11,13,["G1056"]],[13,14,["G2532"]],[14,16,["G305"]],[16,17,["G1519"]],[17,19,["G3735"]],[19,22,["G2521"]],[22,23,["G1563"]]]},{"k":23663,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,3,["G3793"]],[3,4,["G4334"]],[4,6,["G846"]],[6,7,["G2192"]],[7,8,["G3326"]],[8,9,["G1438"]],[9,13,["G5560"]],[13,14,["G5185"]],[14,15,["G2974"]],[15,16,["G2948"]],[16,17,["G2532"]],[17,18,["G4183"]],[18,19,["G2087"]],[19,20,["G2532"]],[20,23,["G4496","G846"]],[23,24,["G3844"]],[24,25,["G2424"]],[25,26,["G4228"]],[26,27,["G2532"]],[27,29,["G2323"]],[29,30,["G846"]]]},{"k":23664,"v":[[0,2,["G5620"]],[2,3,["G3588"]],[3,4,["G3793"]],[4,5,["G2296"]],[5,8,["G991"]],[8,10,["G2974"]],[10,12,["G2980"]],[12,14,["G2948"]],[14,17,["G5199"]],[17,19,["G5560"]],[19,21,["G4043"]],[21,22,["G2532"]],[22,24,["G5185"]],[24,26,["G991"]],[26,27,["G2532"]],[27,29,["G1392"]],[29,30,["G3588"]],[30,31,["G2316"]],[31,33,["G2474"]]]},{"k":23665,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G4341"]],[3,4,["G848"]],[4,5,["G3101"]],[5,9,["G2036"]],[9,12,["G4697"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G3793"]],[15,16,["G3754"]],[16,19,["G4357"]],[19,20,["G3427"]],[20,21,["G2235"]],[21,22,["G5140"]],[22,23,["G2250"]],[23,24,["G2532"]],[24,25,["G2192"]],[25,26,["G5101","G3756"]],[26,28,["G5315"]],[28,29,["G2532"]],[29,31,["G2309"]],[31,32,["G3756"]],[32,35,["G630","G846"]],[35,36,["G3523"]],[36,37,["G3379"]],[37,39,["G1590"]],[39,40,["G1722"]],[40,41,["G3588"]],[41,42,["G3598"]]]},{"k":23666,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3101"]],[3,4,["G3004"]],[4,6,["G846"]],[6,7,["G4159"]],[7,9,["G2254"]],[9,12,["G5118"]],[12,13,["G740"]],[13,14,["G1722"]],[14,16,["G2047"]],[16,17,["G5620"]],[17,19,["G5526"]],[19,21,["G5118"]],[21,23,["G3793"]]]},{"k":23667,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G3004"]],[3,5,["G846"]],[5,7,["G4214"]],[7,8,["G740"]],[8,9,["G2192"]],[9,11,["G1161"]],[11,12,["G3588"]],[12,13,["G2036"]],[13,14,["G2033"]],[14,15,["G2532"]],[15,17,["G3641"]],[17,19,["G2485"]]]},{"k":23668,"v":[[0,1,["G2532"]],[1,3,["G2753"]],[3,4,["G3588"]],[4,5,["G3793"]],[5,8,["G377"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G1093"]]]},{"k":23669,"v":[[0,1,["G2532"]],[1,3,["G2983"]],[3,4,["G3588"]],[4,5,["G2033"]],[5,6,["G740"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G2486"]],[9,10,["G2532"]],[10,12,["G2168"]],[12,14,["G2806"]],[14,16,["G2532"]],[16,17,["G1325"]],[17,19,["G848"]],[19,20,["G3101"]],[20,21,["G1161"]],[21,22,["G3588"]],[22,23,["G3101"]],[23,25,["G3588"]],[25,26,["G3793"]]]},{"k":23670,"v":[[0,1,["G2532"]],[1,4,["G3956"]],[4,5,["G5315"]],[5,6,["G2532"]],[6,8,["G5526"]],[8,9,["G2532"]],[9,12,["G142"]],[12,14,["G3588"]],[14,15,["G2801"]],[15,19,["G4052"]],[19,20,["G2033"]],[20,21,["G4711"]],[21,22,["G4134"]]]},{"k":23671,"v":[[0,1,["G1161"]],[1,5,["G2068"]],[5,6,["G2258"]],[6,8,["G5070"]],[8,9,["G435"]],[9,10,["G5565"]],[10,11,["G1135"]],[11,12,["G2532"]],[12,13,["G3813"]]]},{"k":23672,"v":[[0,1,["G2532"]],[1,4,["G630"]],[4,5,["G3588"]],[5,6,["G3793"]],[6,9,["G1684","G1519","G4143"]],[9,10,["G2532"]],[10,11,["G2064"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G3725"]],[14,16,["G3093"]]]},{"k":23673,"v":[[0,0,["(G2532)"]],[0,1,["G3588"]],[1,2,["G5330"]],[2,3,["G2532"]],[3,6,["G4523"]],[6,7,["G4334"]],[7,9,["G3985"]],[9,10,["G1905"]],[10,11,["G846"]],[11,15,["G1925"]],[15,16,["G846"]],[16,18,["G4592"]],[18,19,["G1537"]],[19,20,["G3772"]]]},{"k":23674,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G846"]],[6,9,["G1096"]],[9,10,["G3798"]],[10,12,["G3004"]],[12,17,["G2105"]],[17,18,["G1063"]],[18,19,["G3588"]],[19,20,["G3772"]],[20,22,["G4449"]]]},{"k":23675,"v":[[0,1,["G2532"]],[1,4,["G4404"]],[4,9,["G5494"]],[9,11,["G4594"]],[11,12,["G1063"]],[12,13,["G3588"]],[13,14,["G3772"]],[14,16,["G4449"]],[16,17,["G2532"]],[17,18,["G4768"]],[18,21,["G5273"]],[21,23,["G1097"]],[23,24,["G1252"]],[24,25,["G3588","(G3303)"]],[25,26,["G4383"]],[26,28,["G3588"]],[28,29,["G3772"]],[29,30,["G1161"]],[30,31,["G1410"]],[31,33,["G3756"]],[33,35,["G3588"]],[35,36,["G4592"]],[36,38,["G3588"]],[38,39,["G2540"]]]},{"k":23676,"v":[[0,2,["G4190"]],[2,3,["G2532"]],[3,4,["G3428"]],[4,5,["G1074"]],[5,7,["G1934"]],[7,9,["G4592"]],[9,10,["G2532"]],[10,13,["G3756"]],[13,14,["G4592"]],[14,16,["G1325"]],[16,18,["G846"]],[18,19,["G1508"]],[19,20,["G3588"]],[20,21,["G4592"]],[21,23,["G3588"]],[23,24,["G4396"]],[24,25,["G2495"]],[25,26,["G2532"]],[26,28,["G2641"]],[28,29,["G846"]],[29,31,["G565"]]]},{"k":23677,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,4,["G3101"]],[4,6,["G2064"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,10,["G4008"]],[10,13,["G1950"]],[13,15,["G2983"]],[15,16,["G740"]]]},{"k":23678,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,7,["G3708"]],[7,8,["G2532"]],[8,9,["G4337"]],[9,10,["G575"]],[10,11,["G3588"]],[11,12,["G2219"]],[12,14,["G3588"]],[14,15,["G5330"]],[15,16,["G2532"]],[16,19,["G4523"]]]},{"k":23679,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1260"]],[3,4,["G1722"]],[4,5,["G1438"]],[5,6,["G3004"]],[6,9,["G3754"]],[9,12,["G2983"]],[12,13,["G3756"]],[13,14,["G740"]]]},{"k":23680,"v":[[0,2,["G1161"]],[2,3,["G2424"]],[3,4,["G1097"]],[4,6,["G2036"]],[6,8,["G846"]],[8,13,["G3640"]],[13,14,["G5101"]],[14,15,["G1260"]],[15,17,["G1722"]],[17,18,["G1438"]],[18,19,["G3754"]],[19,22,["G2983"]],[22,23,["G3756"]],[23,24,["G740"]]]},{"k":23681,"v":[[0,4,["G3768"]],[4,5,["G3539"]],[5,6,["G3761"]],[6,7,["G3421"]],[7,8,["G3588"]],[8,9,["G4002"]],[9,10,["G740"]],[10,12,["G3588"]],[12,14,["G4000"]],[14,15,["G2532"]],[15,17,["G4214"]],[17,18,["G2894"]],[18,21,["G2983"]]]},{"k":23682,"v":[[0,1,["G3761"]],[1,2,["G3588"]],[2,3,["G2033"]],[3,4,["G740"]],[4,6,["G3588"]],[6,8,["G5070"]],[8,9,["G2532"]],[9,11,["G4214"]],[11,12,["G4711"]],[12,15,["G2983"]]]},{"k":23683,"v":[[0,1,["G4459"]],[1,7,["G3756"]],[7,8,["G3539"]],[8,9,["G3754"]],[9,11,["G2036"]],[11,13,["G3756"]],[13,15,["G5213"]],[15,16,["G4012"]],[16,17,["G740"]],[17,21,["G4337"]],[21,22,["G575"]],[22,23,["G3588"]],[23,24,["G2219"]],[24,26,["G3588"]],[26,27,["G5330"]],[27,28,["G2532"]],[28,31,["G4523"]]]},{"k":23684,"v":[[0,1,["G5119"]],[1,2,["G4920"]],[2,4,["G3754"]],[4,7,["G2036"]],[7,9,["G3756"]],[9,10,["G4337"]],[10,11,["G575"]],[11,12,["G3588"]],[12,13,["G2219"]],[13,15,["G740"]],[15,16,["G235"]],[16,17,["G575"]],[17,18,["G3588"]],[18,19,["G1322"]],[19,21,["G3588"]],[21,22,["G5330"]],[22,23,["G2532"]],[23,26,["G4523"]]]},{"k":23685,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2064"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G3313"]],[6,8,["G2542"]],[8,9,["G5376"]],[9,11,["G2065"]],[11,12,["G848"]],[12,13,["G3101"]],[13,14,["G3004"]],[14,15,["G5101"]],[15,17,["G444"]],[17,18,["G3004"]],[18,20,["G3165"]],[20,21,["G3588"]],[21,22,["G5207"]],[22,24,["G444"]],[24,25,["G1511"]]]},{"k":23686,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G3588"]],[4,5,["(G3303)"]],[5,9,["G2491"]],[9,10,["G3588"]],[10,11,["G910","(G1161)"]],[11,12,["G243"]],[12,13,["G2243"]],[13,14,["G1161"]],[14,15,["G2087"]],[15,16,["G2408"]],[16,17,["G2228"]],[17,18,["G1520"]],[18,20,["G3588"]],[20,21,["G4396"]]]},{"k":23687,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G1161"]],[5,6,["G5101"]],[6,7,["G3004"]],[7,8,["G5210"]],[8,10,["G3165"]],[10,11,["G1511"]]]},{"k":23688,"v":[[0,1,["G1161"]],[1,2,["G4613"]],[2,3,["G4074"]],[3,4,["G611"]],[4,6,["G2036"]],[6,7,["G4771"]],[7,8,["G1488"]],[8,9,["G3588"]],[9,10,["G5547"]],[10,11,["G3588"]],[11,12,["G5207"]],[12,15,["G2198"]],[15,16,["G2316"]]]},{"k":23689,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G3107"]],[8,9,["G1488"]],[9,11,["G4613"]],[11,12,["G920"]],[12,13,["G3754"]],[13,14,["G4561"]],[14,15,["G2532"]],[15,16,["G129"]],[16,18,["G3756"]],[18,19,["G601"]],[19,22,["G4671"]],[22,23,["G235"]],[23,24,["G3450"]],[24,25,["G3962"]],[25,26,["G3588"]],[26,28,["G1722"]],[28,29,["G3772"]]]},{"k":23690,"v":[[0,1,["G1161"]],[1,4,["G2504","G3004"]],[4,6,["G4671"]],[6,7,["G3754"]],[7,8,["G4771"]],[8,9,["G1488"]],[9,10,["G4074"]],[10,11,["G2532"]],[11,12,["G1909"]],[12,13,["G5026"]],[13,14,["G4073"]],[14,17,["G3618"]],[17,18,["G3450"]],[18,19,["G1577"]],[19,20,["G2532"]],[20,22,["G4439"]],[22,24,["G86"]],[24,26,["G3756"]],[26,28,["G2729"]],[28,29,["G846"]]]},{"k":23691,"v":[[0,1,["G2532"]],[1,4,["G1325"]],[4,6,["G4671"]],[6,7,["G3588"]],[7,8,["G2807"]],[8,10,["G3588"]],[10,11,["G932"]],[11,13,["G3772"]],[13,14,["G2532"]],[14,15,["G3739","G1437"]],[15,18,["G1210"]],[18,19,["G1909"]],[19,20,["G1093"]],[20,21,["G2071"]],[21,23,["G1210"]],[23,24,["G1722"]],[24,25,["G3772"]],[25,26,["G2532"]],[26,27,["G3739","G1437"]],[27,30,["G3089"]],[30,31,["G1909"]],[31,32,["G1093"]],[32,34,["G2071"]],[34,35,["G3089"]],[35,36,["G1722"]],[36,37,["G3772"]]]},{"k":23692,"v":[[0,1,["G5119"]],[1,2,["G1291"]],[2,4,["G848"]],[4,5,["G3101"]],[5,6,["G2443"]],[6,9,["G2036"]],[9,11,["G3367"]],[11,12,["G3752"]],[12,13,["G846"]],[13,14,["G2076"]],[14,15,["G2424"]],[15,16,["G3588"]],[16,17,["G5547"]]]},{"k":23693,"v":[[0,1,["G575"]],[1,4,["G5119"]],[4,5,["G756"]],[5,6,["G2424"]],[6,8,["G1166"]],[8,10,["G848"]],[10,11,["G3101"]],[11,13,["G3754"]],[13,14,["G846"]],[14,15,["G1163"]],[15,16,["G565"]],[16,17,["G1519"]],[17,18,["G2414"]],[18,19,["G2532"]],[19,20,["G3958"]],[20,22,["G4183"]],[22,23,["G575"]],[23,24,["G3588"]],[24,25,["G4245"]],[25,26,["G2532"]],[26,28,["G749"]],[28,29,["G2532"]],[29,30,["G1122"]],[30,31,["G2532"]],[31,33,["G615"]],[33,34,["G2532"]],[34,37,["G1453"]],[37,38,["G3588"]],[38,39,["G5154"]],[39,40,["G2250"]]]},{"k":23694,"v":[[0,1,["G2532"]],[1,2,["G4074"]],[2,3,["G4355"]],[3,4,["G846"]],[4,6,["G756"]],[6,8,["G2008"]],[8,9,["G846"]],[9,10,["G3004"]],[10,13,["G2436"]],[13,15,["G4671"]],[15,16,["G2962"]],[16,17,["G5124"]],[17,19,["G3364"]],[19,20,["G2071"]],[20,22,["G4671"]]]},{"k":23695,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4762"]],[3,5,["G2036"]],[5,7,["G4074"]],[7,8,["G5217"]],[8,10,["G3694"]],[10,11,["G3450"]],[11,12,["G4567"]],[12,14,["G1488"]],[14,16,["G4625"]],[16,18,["G3450"]],[18,19,["G3754"]],[19,21,["G5426"]],[21,22,["G3756"]],[22,24,["G3588"]],[24,28,["G2316"]],[28,29,["G235"]],[29,30,["G3588"]],[30,34,["G444"]]]},{"k":23696,"v":[[0,1,["G5119"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,5,["G848"]],[5,6,["G3101"]],[6,8,["G1536"]],[8,10,["G2309"]],[10,11,["G2064"]],[11,12,["G3694"]],[12,13,["G3450"]],[13,16,["G533"]],[16,17,["G1438"]],[17,18,["G2532"]],[18,20,["G142"]],[20,21,["G848"]],[21,22,["G4716"]],[22,23,["G2532"]],[23,24,["G190"]],[24,25,["G3427"]]]},{"k":23697,"v":[[0,1,["G1063"]],[1,2,["G3739","G302"]],[2,3,["G2309"]],[3,4,["G4982"]],[4,5,["G848"]],[5,6,["G5590"]],[6,8,["G622"]],[8,9,["G846"]],[9,10,["G1161"]],[10,11,["G3739","G302"]],[11,13,["G622"]],[13,14,["G848"]],[14,15,["G5590"]],[15,18,["G1752","G1700"]],[18,20,["G2147"]],[20,21,["G846"]]]},{"k":23698,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,5,["G444"]],[5,6,["G5623"]],[6,7,["G1437"]],[7,10,["G2770"]],[10,11,["G3588"]],[11,12,["G3650"]],[12,13,["G2889"]],[13,14,["G2532"]],[14,15,["G2210"]],[15,17,["G848"]],[17,18,["G5590"]],[18,19,["G2228"]],[19,20,["G5101"]],[20,23,["G444"]],[23,24,["G1325"]],[24,26,["G465"]],[26,28,["G848"]],[28,29,["G5590"]]]},{"k":23699,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G444"]],[5,6,["G3195"]],[6,7,["G2064"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G1391"]],[10,12,["G848"]],[12,13,["G3962"]],[13,14,["G3326"]],[14,15,["G848"]],[15,16,["G32"]],[16,17,["G2532"]],[17,18,["G5119"]],[18,21,["G591"]],[21,23,["G1538"]],[23,24,["G2596"]],[24,26,["G848"]],[26,27,["G4234"]]]},{"k":23700,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,7,["G1526"]],[7,8,["G5100"]],[8,9,["G2476"]],[9,10,["G5602"]],[10,11,["G3748"]],[11,13,["G3361"]],[13,14,["G1089"]],[14,16,["G2288"]],[16,17,["G2193","G302"]],[17,19,["G1492"]],[19,20,["G3588"]],[20,21,["G5207"]],[21,23,["G444"]],[23,24,["G2064"]],[24,25,["G1722"]],[25,26,["G848"]],[26,27,["G932"]]]},{"k":23701,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,3,["G1803"]],[3,4,["G2250"]],[4,5,["G2424"]],[5,6,["G3880"]],[6,7,["G4074","(G2532)"]],[7,8,["G2385"]],[8,9,["G2532"]],[9,10,["G2491"]],[10,11,["G846"]],[11,12,["G80"]],[12,13,["G2532"]],[13,16,["G399","G846"]],[16,17,["G1519"]],[17,19,["G5308"]],[19,20,["G3735"]],[20,21,["G2596","G2398"]]]},{"k":23702,"v":[[0,1,["G2532"]],[1,3,["G3339"]],[3,4,["G1715"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G846"]],[7,8,["G4383"]],[8,10,["G2989"]],[10,11,["G5613"]],[11,12,["G3588"]],[12,13,["G2246"]],[13,14,["G1161"]],[14,15,["G846"]],[15,16,["G2440"]],[16,17,["G1096"]],[17,18,["G3022"]],[18,19,["G5613"]],[19,20,["G3588"]],[20,21,["G5457"]]]},{"k":23703,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G3700"]],[4,6,["G846"]],[6,7,["G3475"]],[7,8,["G2532"]],[8,9,["G2243"]],[9,10,["G4814"]],[10,11,["G3326"]],[11,12,["G846"]]]},{"k":23704,"v":[[0,1,["G1161"]],[1,2,["G611"]],[2,3,["G4074"]],[3,5,["G2036"]],[5,7,["G2424"]],[7,8,["G2962"]],[8,10,["G2076"]],[10,11,["G2570"]],[11,13,["G2248"]],[13,15,["G1511"]],[15,16,["G5602"]],[16,17,["G1487"]],[17,19,["G2309"]],[19,22,["G4160"]],[22,23,["G5602"]],[23,24,["G5140"]],[24,25,["G4633"]],[25,26,["G3391"]],[26,28,["G4671"]],[28,29,["G2532"]],[29,30,["G3391"]],[30,32,["G3475"]],[32,33,["G2532"]],[33,34,["G3391"]],[34,36,["G2243"]]]},{"k":23705,"v":[[0,2,["G846"]],[2,3,["G2089"]],[3,4,["G2980"]],[4,5,["G2400"]],[5,7,["G5460"]],[7,8,["G3507"]],[8,9,["G1982"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G2400"]],[12,14,["G5456"]],[14,15,["G1537"]],[15,17,["G3588"]],[17,18,["G3507"]],[18,20,["G3004"]],[20,21,["G3778"]],[21,22,["G2076"]],[22,23,["G3450"]],[23,24,["G27"]],[24,25,["G5207"]],[25,26,["G1722"]],[26,27,["G3739"]],[27,31,["G2106"]],[31,32,["G191"]],[32,34,["G846"]]]},{"k":23706,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G3101"]],[4,5,["G191"]],[5,8,["G4098"]],[8,9,["G1909"]],[9,10,["G848"]],[10,11,["G4383"]],[11,12,["G2532"]],[12,15,["G5399","G4970"]]]},{"k":23707,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G4334"]],[3,5,["G680"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G2036"]],[8,9,["G1453"]],[9,10,["G2532"]],[10,13,["G5399","G3361"]]]},{"k":23708,"v":[[0,1,["G1161"]],[1,6,["G1869"]],[6,7,["G848"]],[7,8,["G3788"]],[8,10,["G1492"]],[10,12,["G3762"]],[12,13,["G1508"]],[13,14,["G2424"]],[14,15,["G3441"]]]},{"k":23709,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G2597"]],[5,6,["G575"]],[6,7,["G3588"]],[7,8,["G3735"]],[8,9,["G2424"]],[9,10,["G1781"]],[10,11,["G846"]],[11,12,["G3004"]],[12,13,["G2036"]],[13,14,["G3588"]],[14,15,["G3705"]],[15,18,["G3367"]],[18,19,["G2193","G302"]],[19,20,["G3588"]],[20,21,["G5207"]],[21,23,["G444"]],[23,26,["G450"]],[26,27,["G1537"]],[27,29,["G3498"]]]},{"k":23710,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3101"]],[3,4,["G1905"]],[4,5,["G846"]],[5,6,["G3004"]],[6,7,["G5101"]],[7,8,["G3767"]],[8,9,["G3004"]],[9,10,["G3588"]],[10,11,["G1122"]],[11,12,["G3754"]],[12,13,["G2243"]],[13,14,["G1163"]],[14,15,["G4412"]],[15,16,["G2064"]]]},{"k":23711,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G2243"]],[8,9,["G3303"]],[9,11,["G4412"]],[11,12,["G2064"]],[12,13,["G2532"]],[13,14,["G600"]],[14,16,["G3956"]]]},{"k":23712,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G2243"]],[7,9,["G2064"]],[9,10,["G2235"]],[10,11,["G2532"]],[11,13,["G1921"]],[13,14,["G846"]],[14,15,["G3756"]],[15,16,["G235"]],[16,18,["G4160"]],[18,19,["G1722"]],[19,20,["G846"]],[20,21,["G3745"]],[21,23,["G2309"]],[23,24,["G3779"]],[24,25,["G3195"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G5207"]],[28,30,["G444"]],[30,31,["G3958"]],[31,32,["G5259"]],[32,33,["G846"]]]},{"k":23713,"v":[[0,1,["G5119"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,4,["G4920"]],[4,5,["G3754"]],[5,7,["G2036"]],[7,9,["G846"]],[9,10,["G4012"]],[10,11,["G2491"]],[11,12,["G3588"]],[12,13,["G910"]]]},{"k":23714,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G2064"]],[5,6,["G4314"]],[6,7,["G3588"]],[7,8,["G3793"]],[8,10,["G4334"]],[10,12,["G846"]],[12,15,["G444"]],[15,17,["G1120"]],[17,19,["G846"]],[19,20,["G2532"]],[20,21,["G3004"]]]},{"k":23715,"v":[[0,1,["G2962"]],[1,3,["G1653"]],[3,5,["G3450"]],[5,6,["G5207"]],[6,7,["G1063"]],[7,10,["G4583"]],[10,11,["G2532"]],[11,12,["G2560"]],[12,13,["G3958"]],[13,14,["G3754"]],[14,15,["G4178"]],[15,17,["G4098"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G4442"]],[20,21,["G2532"]],[21,22,["G4178"]],[22,23,["G1519"]],[23,24,["G3588"]],[24,25,["G5204"]]]},{"k":23716,"v":[[0,1,["G2532"]],[1,3,["G4374"]],[3,4,["G846"]],[4,6,["G4675"]],[6,7,["G3101"]],[7,8,["G2532"]],[8,10,["G1410"]],[10,11,["G3756"]],[11,12,["G2323"]],[12,13,["G846"]]]},{"k":23717,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,6,["G5599"]],[6,7,["G571"]],[7,8,["G2532"]],[8,9,["G1294"]],[9,10,["G1074"]],[10,12,["G2193","G4219"]],[12,15,["G2071"]],[15,16,["G3326"]],[16,17,["G5216"]],[17,19,["G2193","G4219"]],[19,22,["G430"]],[22,23,["G5216"]],[23,24,["G5342"]],[24,25,["G846"]],[25,26,["G5602"]],[26,28,["G3427"]]]},{"k":23718,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2008"]],[3,5,["G1140"]],[5,6,["G2532"]],[6,7,["G846"]],[7,8,["G1831"]],[8,10,["G575"]],[10,11,["G846"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G3816"]],[14,16,["G2323"]],[16,17,["G575"]],[17,19,["G1565"]],[19,20,["G5610"]]]},{"k":23719,"v":[[0,1,["G5119"]],[1,2,["G4334"]],[2,3,["G3588"]],[3,4,["G3101"]],[4,6,["G2424"]],[6,7,["G2596","G2398"]],[7,9,["G2036"]],[9,10,["G1302"]],[10,11,["G1410"]],[11,12,["G3756"]],[12,13,["G2249"]],[13,16,["G1544","G846"]]]},{"k":23720,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G1223"]],[6,8,["G5216"]],[8,9,["G570"]],[9,10,["G1063"]],[10,11,["G281"]],[11,13,["G3004"]],[13,15,["G5213"]],[15,16,["G1437"]],[16,18,["G2192"]],[18,19,["G4102"]],[19,20,["G5613"]],[20,22,["G2848"]],[22,25,["G4615"]],[25,28,["G2046"]],[28,30,["G5129"]],[30,31,["G3735"]],[31,32,["G3327"]],[32,33,["G1782"]],[33,36,["G1563"]],[36,37,["G2532"]],[37,40,["G3327"]],[40,41,["G2532"]],[41,42,["G3762"]],[42,45,["G101"]],[45,47,["G5213"]]]},{"k":23721,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,3,["G1085"]],[3,6,["G1607","G3756"]],[6,7,["G1508"]],[7,8,["G1722"]],[8,9,["G4335"]],[9,10,["G2532"]],[10,11,["G3521"]]]},{"k":23722,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G390"]],[4,5,["G1722"]],[5,6,["G1056"]],[6,7,["G2424"]],[7,8,["G2036"]],[8,10,["G846"]],[10,11,["G3588"]],[11,12,["G5207"]],[12,14,["G444"]],[14,15,["G3195"]],[15,17,["G3860"]],[17,18,["G1519"]],[18,20,["G5495"]],[20,22,["G444"]]]},{"k":23723,"v":[[0,1,["G2532"]],[1,4,["G615"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G5154"]],[8,9,["G2250"]],[9,14,["G1453"]],[14,15,["G2532"]],[15,19,["G3076","G4970"]]]},{"k":23724,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G2064"]],[5,6,["G1519"]],[6,7,["G2584"]],[7,10,["G2983"]],[10,11,["G1323"]],[11,13,["G4334"]],[13,15,["G4074"]],[15,16,["G2532"]],[16,17,["G2036"]],[17,19,["G3756"]],[19,20,["G5216"]],[20,21,["G1320"]],[21,22,["G5055"]],[22,23,["G1323"]]]},{"k":23725,"v":[[0,2,["G3004"]],[2,3,["G3483"]],[3,4,["G2532"]],[4,5,["G3753"]],[5,8,["G1525"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G3614"]],[11,12,["G2424"]],[12,13,["G4399"]],[13,14,["G846"]],[14,15,["G3004"]],[15,16,["G5101"]],[16,17,["G1380"]],[17,18,["G4671"]],[18,19,["G4613"]],[19,20,["G575"]],[20,21,["G5101"]],[21,23,["G3588"]],[23,24,["G935"]],[24,26,["G3588"]],[26,27,["G1093"]],[27,28,["G2983"]],[28,29,["G5056"]],[29,30,["G2228"]],[30,31,["G2778"]],[31,32,["G575"]],[32,34,["G848"]],[34,35,["G5207"]],[35,36,["G2228"]],[36,37,["G575"]],[37,38,["G245"]]]},{"k":23726,"v":[[0,1,["G4074"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G575"]],[5,6,["G245"]],[6,7,["G2424"]],[7,8,["G5346"]],[8,10,["G846"]],[10,11,["G686"]],[11,12,["G1526"]],[12,13,["G3588"]],[13,14,["G5207"]],[14,15,["G1658"]]]},{"k":23727,"v":[[0,1,["G1161"]],[1,2,["G3363"]],[2,5,["G4624"]],[5,6,["G846"]],[6,7,["G4198"]],[7,9,["G1519"]],[9,10,["G3588"]],[10,11,["G2281"]],[11,13,["G906"]],[13,15,["G44"]],[15,16,["G2532"]],[16,18,["G142"]],[18,20,["G2486"]],[20,22,["G4413"]],[22,24,["G305"]],[24,25,["G2532"]],[25,29,["G455"]],[29,30,["G846"]],[30,31,["G4750"]],[31,34,["G2147"]],[34,38,["G4715"]],[38,39,["G1565"]],[39,40,["G2983"]],[40,41,["G2532"]],[41,42,["G1325"]],[42,44,["G846"]],[44,45,["G473"]],[45,46,["G1700"]],[46,47,["G2532"]],[47,48,["G4675"]]]},{"k":23728,"v":[[0,1,["G1722"]],[1,3,["G1565"]],[3,4,["G5610"]],[4,5,["G4334"]],[5,6,["G3588"]],[6,7,["G3101"]],[7,9,["G2424"]],[9,10,["G3004"]],[10,11,["G5101","(G686)"]],[11,12,["G2076"]],[12,14,["G3187"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G932"]],[17,19,["G3772"]]]},{"k":23729,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G4341"]],[3,6,["G3813"]],[6,9,["G2532"]],[9,10,["G2476"]],[10,11,["G846"]],[11,12,["G1722"]],[12,14,["G3319"]],[14,16,["G846"]]]},{"k":23730,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,3,["G281"]],[3,5,["G3004"]],[5,7,["G5213"]],[7,8,["G3362"]],[8,11,["G4762"]],[11,12,["G2532"]],[12,13,["G1096"]],[13,14,["G5613"]],[14,16,["G3813"]],[16,19,["G3364"]],[19,20,["G1525"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G932"]],[23,25,["G3772"]]]},{"k":23731,"v":[[0,1,["G3748"]],[1,2,["G3767"]],[2,4,["G5013"]],[4,5,["G1438"]],[5,6,["G5613"]],[6,7,["G5124"]],[7,9,["G3813"]],[9,11,["G3778"]],[11,12,["G2076"]],[12,13,["G3187"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G932"]],[16,18,["G3772"]]]},{"k":23732,"v":[[0,1,["G2532"]],[1,2,["G3739","G1437"]],[2,4,["G1209"]],[4,5,["G1520"]],[5,6,["G5108"]],[6,8,["G3813"]],[8,9,["G1909"]],[9,10,["G3450"]],[10,11,["G3686"]],[11,12,["G1209"]],[12,13,["G1691"]]]},{"k":23733,"v":[[0,1,["G1161"]],[1,2,["G3739","G302"]],[2,4,["G4624"]],[4,5,["G1520"]],[5,7,["G5130"]],[7,9,["G3398"]],[9,11,["G4100"]],[11,12,["G1519"]],[12,13,["G1691"]],[13,16,["G4851"]],[16,18,["G846"]],[18,19,["G2443"]],[19,21,["G3458","G3684"]],[21,23,["G2910"]],[23,24,["G1909"]],[24,25,["G846"]],[25,26,["G5137"]],[26,27,["G2532"]],[27,31,["G2670"]],[31,32,["G1722"]],[32,33,["G3588"]],[33,34,["G3989"]],[34,36,["G3588"]],[36,37,["G2281"]]]},{"k":23734,"v":[[0,1,["G3759"]],[1,3,["G3588"]],[3,4,["G2889"]],[4,7,["G4625"]],[7,8,["G1063"]],[8,12,["G2076","G318"]],[12,14,["G4625"]],[14,15,["G2064"]],[15,16,["G4133"]],[16,17,["G3759"]],[17,19,["G1565"]],[19,20,["G444"]],[20,21,["G1223"]],[21,22,["G3739"]],[22,23,["G3588"]],[23,24,["G4625"]],[24,25,["G2064"]]]},{"k":23735,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G4675"]],[3,4,["G5495"]],[4,5,["G2228"]],[5,6,["G4675"]],[6,7,["G4228"]],[7,8,["G4624"]],[8,9,["G4571"]],[9,12,["G1581","G846"]],[12,13,["G2532"]],[13,14,["G906"]],[14,16,["G575"]],[16,17,["G4675"]],[17,19,["G2076"]],[19,20,["G2570"]],[20,22,["G4671"]],[22,24,["G1525"]],[24,25,["G1519"]],[25,26,["G2222"]],[26,27,["G5560"]],[27,28,["G2228"]],[28,29,["G2948"]],[29,31,["G2228"]],[31,32,["G2192"]],[32,33,["G1417"]],[33,34,["G5495"]],[34,35,["G2228"]],[35,36,["G1417"]],[36,37,["G4228"]],[37,40,["G906"]],[40,41,["G1519"]],[41,42,["G166"]],[42,43,["G4442"]]]},{"k":23736,"v":[[0,1,["G2532"]],[1,2,["G1487"]],[2,3,["G4675"]],[3,4,["G3788"]],[4,5,["G4624"]],[5,6,["G4571"]],[6,9,["G1807","G846"]],[9,10,["G2532"]],[10,11,["G906"]],[11,13,["G575"]],[13,14,["G4675"]],[14,16,["G2076"]],[16,17,["G2570"]],[17,19,["G4671"]],[19,21,["G1525"]],[21,22,["G1519"]],[22,23,["G2222"]],[23,26,["G3442"]],[26,27,["G2228"]],[27,29,["G2192"]],[29,30,["G1417"]],[30,31,["G3788"]],[31,34,["G906"]],[34,35,["G1519"]],[35,36,["G1067"]],[36,37,["G4442"]]]},{"k":23737,"v":[[0,2,["G3708"]],[2,5,["G2706"]],[5,6,["G3361"]],[6,7,["G1520"]],[7,9,["G5130"]],[9,11,["G3398"]],[11,12,["G1063"]],[12,14,["G3004"]],[14,16,["G5213"]],[16,17,["G3754"]],[17,18,["G1722"]],[18,19,["G3772"]],[19,20,["G846"]],[20,21,["G32"]],[21,23,["G1223","G3956"]],[23,24,["G991"]],[24,25,["G3588"]],[25,26,["G4383"]],[26,28,["G3450"]],[28,29,["G3962"]],[29,30,["G3588"]],[30,32,["G1722"]],[32,33,["G3772"]]]},{"k":23738,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G444"]],[5,7,["G2064"]],[7,9,["G4982"]],[9,13,["G622"]]]},{"k":23739,"v":[[0,1,["G5101"]],[1,2,["G1380"]],[2,3,["G5213"]],[3,4,["G1437"]],[4,5,["G5100"]],[5,6,["G444"]],[6,7,["G1096"]],[7,9,["G1540"]],[9,10,["G4263"]],[10,11,["G2532"]],[11,12,["G1520"]],[12,13,["G1537"]],[13,14,["G846"]],[14,17,["G4105"]],[17,20,["G3780"]],[20,21,["G863"]],[21,22,["G3588"]],[22,25,["G1768"]],[25,27,["G4198"]],[27,28,["G1909"]],[28,29,["G3588"]],[29,30,["G3735"]],[30,31,["G2532"]],[31,32,["G2212"]],[32,37,["G4105"]]]},{"k":23740,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G1096"]],[4,7,["G2147"]],[7,8,["G846"]],[8,9,["G281"]],[9,11,["G3004"]],[11,13,["G5213"]],[13,14,["(G3754)"]],[14,15,["G5463"]],[15,16,["G3123"]],[16,17,["G1909"]],[17,18,["G846"]],[18,20,["G2228"]],[20,21,["G1909"]],[21,22,["G3588"]],[22,25,["G1768"]],[25,29,["G4105","G3361"]]]},{"k":23741,"v":[[0,2,["G3779"]],[2,4,["G2076"]],[4,5,["G3756"]],[5,7,["G2307"]],[7,8,["G1715"]],[8,9,["G5216"]],[9,10,["G3962"]],[10,11,["G3588"]],[11,13,["G1722"]],[13,14,["G3772"]],[14,15,["G2443"]],[15,16,["G1520"]],[16,18,["G5130"]],[18,20,["G3398"]],[20,22,["G622"]]]},{"k":23742,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,3,["G4675"]],[3,4,["G80"]],[4,6,["G264"]],[6,7,["G1519"]],[7,8,["G4571"]],[8,9,["G5217"]],[9,10,["G2532"]],[10,14,["G1651","G846"]],[14,15,["G3342"]],[15,16,["G4675"]],[16,17,["G2532"]],[17,18,["G846"]],[18,19,["G3441"]],[19,20,["G1437"]],[20,23,["G191"]],[23,24,["G4675"]],[24,27,["G2770"]],[27,28,["G4675"]],[28,29,["G80"]]]},{"k":23743,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,5,["G3361"]],[5,6,["G191"]],[6,9,["G3880"]],[9,10,["G3326"]],[10,11,["G4675"]],[11,12,["G1520"]],[12,13,["G2228"]],[13,14,["G1417"]],[14,15,["G2089"]],[15,16,["G2443"]],[16,17,["G1909"]],[17,19,["G4750"]],[19,21,["G1417"]],[21,22,["G2228"]],[22,23,["G5140"]],[23,24,["G3144"]],[24,25,["G3956"]],[25,26,["G4487"]],[26,29,["G2476"]]]},{"k":23744,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,7,["G3878"]],[7,8,["G846"]],[8,9,["G2036"]],[9,12,["G3588"]],[12,13,["G1577"]],[13,14,["G1161"]],[14,15,["G1437"]],[15,19,["G3878"]],[19,20,["G3588"]],[20,21,["G1577"]],[21,24,["G2077"]],[24,26,["G4671"]],[26,27,["G5618"]],[27,30,["G1482"]],[30,31,["G2532"]],[31,33,["G5057"]]]},{"k":23745,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3745","G1437"]],[6,9,["G1210"]],[9,10,["G1909"]],[10,11,["G1093"]],[11,13,["G2071"]],[13,14,["G1210"]],[14,15,["G1722"]],[15,16,["G3772"]],[16,17,["G2532"]],[17,18,["G3745","G1437"]],[18,21,["G3089"]],[21,22,["G1909"]],[22,23,["G1093"]],[23,25,["G2071"]],[25,26,["G3089"]],[26,27,["G1722"]],[27,28,["G3772"]]]},{"k":23746,"v":[[0,1,["G3825"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G1437"]],[7,8,["G1417"]],[8,10,["G5216"]],[10,12,["G4856"]],[12,13,["G1909"]],[13,14,["G1093"]],[14,16,["G4012"]],[16,17,["G3956"]],[17,18,["G4229"]],[18,19,["G3739","G1437"]],[19,22,["G154"]],[22,26,["G1096"]],[26,28,["G846"]],[28,29,["G3844"]],[29,30,["G3450"]],[30,31,["G3962"]],[31,32,["G3588"]],[32,34,["G1722"]],[34,35,["G3772"]]]},{"k":23747,"v":[[0,1,["G1063"]],[1,2,["G3757"]],[2,3,["G1417"]],[3,4,["G2228"]],[4,5,["G5140"]],[5,6,["G1526"]],[6,8,["G4863"]],[8,9,["G1519"]],[9,10,["G1699"]],[10,11,["G3686"]],[11,12,["G1563"]],[12,13,["G1510"]],[13,15,["G1722"]],[15,17,["G3319"]],[17,19,["G846"]]]},{"k":23748,"v":[[0,1,["G5119"]],[1,2,["G4334"]],[2,3,["G4074"]],[3,5,["G846"]],[5,7,["G2036"]],[7,8,["G2962"]],[8,10,["G4212"]],[10,12,["G3450"]],[12,13,["G80"]],[13,14,["G264"]],[14,15,["G1519"]],[15,16,["G1691"]],[16,17,["G2532"]],[17,19,["G863"]],[19,20,["G846"]],[20,21,["G2193"]],[21,23,["G2034"]]]},{"k":23749,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,6,["G3004"]],[6,7,["G3756"]],[7,9,["G4671"]],[9,10,["G2193"]],[10,12,["G2034"]],[12,14,["G2193"]],[14,16,["G1441"]],[16,17,["G2033"]]]},{"k":23750,"v":[[0,1,["G1223","G5124"]],[1,3,["G3588"]],[3,4,["G932"]],[4,6,["G3772"]],[6,8,["G3666"]],[8,11,["G444","G935"]],[11,12,["G3739"]],[12,13,["G2309"]],[13,14,["G4868"]],[14,15,["G3056"]],[15,16,["G3326"]],[16,17,["G848"]],[17,18,["G1401"]]]},{"k":23751,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G756"]],[5,7,["G4868"]],[7,8,["G1520"]],[8,10,["G4374"]],[10,12,["G846"]],[12,14,["G3781"]],[14,17,["G3463"]],[17,18,["G5007"]]]},{"k":23752,"v":[[0,1,["G1161"]],[1,4,["G846"]],[4,5,["G2192"]],[5,6,["G3361"]],[6,8,["G591"]],[8,9,["G846"]],[9,10,["G2962"]],[10,11,["G2753"]],[11,12,["G846"]],[12,15,["G4097"]],[15,16,["G2532"]],[16,17,["G846"]],[17,18,["G1135"]],[18,19,["G2532"]],[19,20,["G5043"]],[20,21,["G2532"]],[21,22,["G3956"]],[22,24,["(G3745)"]],[24,25,["G2192"]],[25,26,["G2532"]],[26,30,["G591"]]]},{"k":23753,"v":[[0,1,["G3588"]],[1,2,["G1401"]],[2,3,["G3767"]],[3,5,["G4098"]],[5,7,["G4352"]],[7,8,["G846"]],[8,9,["G3004"]],[9,10,["G2962"]],[10,12,["G3114"]],[12,13,["G1909"]],[13,14,["G1698"]],[14,15,["G2532"]],[15,18,["G591"]],[18,19,["G4671"]],[19,20,["G3956"]]]},{"k":23754,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,5,["G1565"]],[5,6,["G1401"]],[6,10,["G4697"]],[10,12,["G630"]],[12,13,["G846"]],[13,14,["G2532"]],[14,15,["G863"]],[15,16,["G846"]],[16,17,["G3588"]],[17,18,["G1156"]]]},{"k":23755,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1565"]],[3,4,["G1401"]],[4,6,["G1831"]],[6,8,["G2147"]],[8,9,["G1520"]],[9,11,["G846"]],[11,12,["G4889"]],[12,13,["G3739"]],[13,14,["G3784"]],[14,15,["G846"]],[15,17,["G1540"]],[17,18,["G1220"]],[18,19,["G2532"]],[19,22,["G2902"]],[22,24,["G846"]],[24,30,["G4155"]],[30,31,["G3004"]],[31,32,["G591"]],[32,33,["G3427"]],[33,34,["G3748"]],[34,36,["G3784"]]]},{"k":23756,"v":[[0,1,["G3767"]],[1,2,["G846"]],[2,3,["G4889"]],[3,5,["G4098"]],[5,6,["G1519"]],[6,7,["G846"]],[7,8,["G4228"]],[8,10,["G3870"]],[10,11,["G846"]],[11,12,["G3004"]],[12,14,["G3114"]],[14,15,["G1909"]],[15,16,["G1698"]],[16,17,["G2532"]],[17,20,["G591"]],[20,21,["G4671"]],[21,22,["G3956"]]]},{"k":23757,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2309"]],[3,4,["G3756"]],[4,5,["G235"]],[5,6,["G565"]],[6,8,["G906"]],[8,9,["G846"]],[9,10,["G1519"]],[10,11,["G5438"]],[11,12,["G2193"]],[12,15,["G591"]],[15,16,["G3588"]],[16,17,["G3784"]]]},{"k":23758,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G4889"]],[4,5,["G1492"]],[5,8,["G1096"]],[8,12,["G3076","G4970"]],[12,13,["G2532"]],[13,14,["G2064"]],[14,16,["G1285"]],[16,18,["G848"]],[18,19,["G2962"]],[19,20,["G3956"]],[20,23,["G1096"]]]},{"k":23759,"v":[[0,1,["G5119"]],[1,2,["G846"]],[2,3,["G2962"]],[3,8,["G4341"]],[8,9,["G846"]],[9,10,["G3004"]],[10,12,["G846"]],[12,15,["G4190"]],[15,16,["G1401"]],[16,18,["G863"]],[18,19,["G4671"]],[19,20,["G3956"]],[20,21,["G1565"]],[21,22,["G3782"]],[22,23,["G1893"]],[23,25,["G3870"]],[25,26,["G3165"]]]},{"k":23760,"v":[[0,1,["G1163"]],[1,2,["G3756"]],[2,3,["G4571"]],[3,4,["G2532"]],[4,7,["G1653"]],[7,9,["G4675"]],[9,10,["G4889"]],[10,11,["G2532"]],[11,12,["G5613"]],[12,13,["G1473"]],[13,15,["G1653"]],[15,17,["G4571"]]]},{"k":23761,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G2962"]],[3,5,["G3710"]],[5,7,["G3860"]],[7,8,["G846"]],[8,10,["G3588"]],[10,11,["G930"]],[11,12,["G2193"]],[12,13,["(G3739)"]],[13,15,["G591"]],[15,16,["G3956"]],[16,19,["G3784"]],[19,21,["G846"]]]},{"k":23762,"v":[[0,2,["G3779"]],[2,4,["G3450"]],[4,5,["G2032"]],[5,6,["G3962"]],[6,7,["G4160"]],[7,8,["G2532"]],[8,10,["G5213"]],[10,11,["G3362"]],[11,13,["G575"]],[13,14,["G5216"]],[14,15,["G2588"]],[15,16,["G863"]],[16,17,["G3362"]],[17,19,["G1538"]],[19,20,["G848"]],[20,21,["G80"]],[21,22,["G846"]],[22,23,["G3900"]]]},{"k":23763,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G3753"]],[7,8,["G2424"]],[8,10,["G5055"]],[10,11,["G5128"]],[11,12,["G3056"]],[12,14,["G3332"]],[14,15,["G575"]],[15,16,["G1056"]],[16,17,["G2532"]],[17,18,["G2064"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G3725"]],[21,23,["G2449"]],[23,24,["G4008"]],[24,25,["G2446"]]]},{"k":23764,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,3,["G3793"]],[3,4,["G190"]],[4,5,["G846"]],[5,6,["G2532"]],[6,8,["G2323"]],[8,9,["G846"]],[9,10,["G1563"]]]},{"k":23765,"v":[[0,1,["G3588"]],[1,2,["G5330"]],[2,3,["G2532"]],[3,4,["G4334"]],[4,6,["G846"]],[6,7,["G3985"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G3004"]],[10,12,["G846","(G1487)"]],[12,15,["G1832"]],[15,18,["G444"]],[18,21,["G630"]],[21,22,["G848"]],[22,23,["G1135"]],[23,24,["G2596"]],[24,25,["G3956"]],[25,26,["G156"]]]},{"k":23766,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,10,["G3756"]],[10,11,["G314"]],[11,12,["G3754"]],[12,15,["G4160"]],[15,17,["G575"]],[17,19,["G746"]],[19,20,["G4160"]],[20,21,["G846"]],[21,22,["G730"]],[22,23,["G2532"]],[23,24,["G2338"]]]},{"k":23767,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,5,["G1752","G5127"]],[5,8,["G444"]],[8,9,["G2641"]],[9,10,["G3962"]],[10,11,["G2532"]],[11,12,["G3384"]],[12,13,["G2532"]],[13,15,["G4347"]],[15,17,["G848"]],[17,18,["G1135"]],[18,19,["G2532"]],[19,21,["G1417"]],[21,23,["G2071"]],[23,24,["G3391","(G1519)"]],[24,25,["G4561"]]]},{"k":23768,"v":[[0,1,["G5620"]],[1,3,["G1526"]],[3,5,["G3765"]],[5,6,["G1417"]],[6,7,["G235"]],[7,8,["G3391"]],[8,9,["G4561"]],[9,10,["G3739"]],[10,11,["G3767"]],[11,12,["G2316"]],[12,15,["G4801"]],[15,17,["G3361"]],[17,18,["G444"]],[18,20,["G5563"]]]},{"k":23769,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G5101"]],[5,7,["G3475"]],[7,8,["G3767"]],[8,9,["G1781"]],[9,11,["G1325"]],[11,13,["G975"]],[13,15,["G647"]],[15,16,["G2532"]],[16,20,["G630","G846"]]]},{"k":23770,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G3475"]],[5,6,["G4314"]],[6,8,["G3588"]],[8,12,["G4641","G5216"]],[12,13,["G2010"]],[13,14,["G5213"]],[14,17,["G630"]],[17,18,["G5216"]],[18,19,["G1135"]],[19,20,["G1161"]],[20,21,["G575"]],[21,23,["G746"]],[23,25,["G1096"]],[25,26,["G3756"]],[26,27,["G3779"]]]},{"k":23771,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3739","G302"]],[6,9,["G630"]],[9,10,["G848"]],[10,11,["G1135"]],[11,12,["G1508"]],[12,15,["G1909"]],[15,16,["G4202"]],[16,17,["G2532"]],[17,19,["G1060"]],[19,20,["G243"]],[20,22,["G3429"]],[22,23,["G2532"]],[23,25,["G1060"]],[25,30,["G630"]],[30,33,["G3429"]]]},{"k":23772,"v":[[0,1,["G846"]],[1,2,["G3101"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G1487"]],[6,7,["G3588"]],[7,8,["G156"]],[8,10,["G3588"]],[10,11,["G444"]],[11,12,["G2076"]],[12,13,["G3779"]],[13,14,["G3326"]],[14,16,["G1135"]],[16,20,["G4851","G3756"]],[20,22,["G1060"]]]},{"k":23773,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G3956"]],[6,9,["G5562","G3756"]],[9,10,["G5126"]],[10,11,["G3056"]],[11,12,["G235"]],[12,15,["G3739"]],[15,18,["G1325"]]]},{"k":23774,"v":[[0,1,["G1063"]],[1,3,["G1526"]],[3,5,["G2135"]],[5,6,["G3748"]],[6,8,["G3779"]],[8,9,["G1080"]],[9,10,["G1537"]],[10,12,["G3384"]],[12,13,["G2836"]],[13,14,["G2532"]],[14,16,["G1526"]],[16,18,["G2135"]],[18,19,["G3748"]],[19,22,["G2134"]],[22,23,["G5259"]],[23,24,["G444"]],[24,25,["G2532"]],[25,27,["G1526"]],[27,28,["G2135"]],[28,29,["G3748"]],[29,33,["G2134","G1438"]],[33,39,["G1223","G3588","G932","G3772"]],[39,43,["G1410"]],[43,45,["G5562"]],[45,49,["G5562"]],[49,50,[]]]},{"k":23775,"v":[[0,1,["G5119"]],[1,4,["G4374"]],[4,6,["G846"]],[6,8,["G3813"]],[8,9,["G2443"]],[9,12,["G2007"]],[12,14,["G5495"]],[14,16,["G846"]],[16,17,["G2532"]],[17,18,["G4336"]],[18,19,["G1161"]],[19,20,["G3588"]],[20,21,["G3101"]],[21,22,["G2008"]],[22,23,["G846"]]]},{"k":23776,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G863"]],[4,6,["G3813"]],[6,7,["G2532"]],[7,8,["G2967"]],[8,9,["G846"]],[9,10,["G3361"]],[10,12,["G2064"]],[12,13,["G4314"]],[13,14,["G3165"]],[14,15,["G1063"]],[15,17,["G5108"]],[17,18,["G2076"]],[18,19,["G3588"]],[19,20,["G932"]],[20,22,["G3772"]]]},{"k":23777,"v":[[0,1,["G2532"]],[1,3,["G2007"]],[3,5,["G5495"]],[5,7,["G846"]],[7,9,["G4198"]],[9,10,["G1564"]]]},{"k":23778,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G1520"]],[3,4,["G4334"]],[4,6,["G2036"]],[6,8,["G846"]],[8,9,["G18"]],[9,10,["G1320"]],[10,11,["G5101"]],[11,13,["G18"]],[13,16,["G4160"]],[16,17,["G2443"]],[17,20,["G2192"]],[20,21,["G166"]],[21,22,["G2222"]]]},{"k":23779,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G5101"]],[6,7,["G3004"]],[7,9,["G3165"]],[9,10,["G18"]],[10,13,["G3762"]],[13,14,["G18"]],[14,15,["G1508"]],[15,16,["G1520"]],[16,19,["G2316"]],[19,20,["G1161"]],[20,21,["G1487"]],[21,23,["G2309"]],[23,24,["G1525"]],[24,25,["G1519"]],[25,26,["G2222"]],[26,27,["G5083"]],[27,28,["G3588"]],[28,29,["G1785"]]]},{"k":23780,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G4169"]],[5,6,["G2424"]],[6,7,["G2036"]],[7,9,["(G3588)"]],[9,12,["G5407","G3756"]],[12,15,["G3756"]],[15,17,["G3431"]],[17,20,["G3756"]],[20,21,["G2813"]],[21,27,["G5576"]]]},{"k":23781,"v":[[0,1,["G5091"]],[1,2,["G4675"]],[2,3,["G3962"]],[3,4,["G2532"]],[4,7,["G3384"]],[7,10,["G25"]],[10,11,["G4675"]],[11,12,["G4139"]],[12,13,["G5613"]],[13,14,["G4572"]]]},{"k":23782,"v":[[0,1,["G3588"]],[1,3,["G3495"]],[3,4,["G3004"]],[4,6,["G846"]],[6,7,["G3956"]],[7,9,["G5023"]],[9,12,["G5442"]],[12,13,["G1537"]],[13,14,["G3450"]],[14,15,["G3503"]],[15,17,["G5101"]],[17,18,["G5302"]],[18,20,["G2089"]]]},{"k":23783,"v":[[0,1,["G2424"]],[1,2,["G5346"]],[2,4,["G846"]],[4,5,["G1487"]],[5,7,["G2309"]],[7,8,["G1511"]],[8,9,["G5046"]],[9,10,["G5217"]],[10,12,["G4453"]],[12,15,["G5224","G4675"]],[15,16,["G2532"]],[16,17,["G1325"]],[17,20,["G4434"]],[20,21,["G2532"]],[21,24,["G2192"]],[24,25,["G2344"]],[25,26,["G1722"]],[26,27,["G3772"]],[27,28,["G2532"]],[28,29,["G1204"]],[29,31,["G190"]],[31,32,["G3427"]]]},{"k":23784,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,5,["G3495"]],[5,6,["G191"]],[6,8,["G3056"]],[8,11,["G565"]],[11,12,["G3076"]],[12,13,["G1063"]],[13,15,["G2258","G2192"]],[15,16,["G4183"]],[16,17,["G2933"]]]},{"k":23785,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,5,["G848"]],[5,6,["G3101"]],[6,7,["G281"]],[7,9,["G3004"]],[9,11,["G5213"]],[11,12,["G3754"]],[12,15,["G4145"]],[15,17,["G1423"]],[17,18,["G1525"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G932"]],[21,23,["G3772"]]]},{"k":23786,"v":[[0,1,["G1161"]],[1,2,["G3825"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,8,["G2076"]],[8,9,["G2123"]],[9,12,["G2574"]],[12,14,["G1330"]],[14,15,["G1223"]],[15,17,["G5169"]],[17,20,["G4476"]],[20,21,["G2228"]],[21,25,["G4145"]],[25,27,["G1525"]],[27,28,["G1519"]],[28,29,["G3588"]],[29,30,["G932"]],[30,32,["G2316"]]]},{"k":23787,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G3101"]],[3,4,["G191"]],[4,8,["G4970"]],[8,9,["G1605"]],[9,10,["G3004"]],[10,11,["G5101"]],[11,12,["G686"]],[12,13,["G1410"]],[13,15,["G4982"]]]},{"k":23788,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G1689"]],[3,6,["G2036"]],[6,8,["G846"]],[8,9,["G3844"]],[9,10,["G444"]],[10,11,["G5124"]],[11,12,["G2076"]],[12,13,["G102"]],[13,14,["G1161"]],[14,15,["G3844"]],[15,16,["G2316"]],[16,18,["G3956"]],[18,19,["G2076"]],[19,20,["G1415"]]]},{"k":23789,"v":[[0,1,["G5119"]],[1,2,["G611"]],[2,3,["G4074"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G2400"]],[8,9,["G2249"]],[9,11,["G863"]],[11,12,["G3956"]],[12,13,["G2532"]],[13,14,["G190"]],[14,15,["G4671"]],[15,16,["G5101"]],[16,18,["G2254"]],[18,19,["G2071"]],[19,20,["G686"]]]},{"k":23790,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G281"]],[6,8,["G3004"]],[8,10,["G5213"]],[10,11,["G3754"]],[11,12,["G5210"]],[12,15,["G190"]],[15,16,["G3427"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G3824"]],[19,20,["G3752"]],[20,21,["G3588"]],[21,22,["G5207"]],[22,24,["G444"]],[24,26,["G2523"]],[26,27,["G1909"]],[27,29,["G2362"]],[29,31,["G848"]],[31,32,["G1391"]],[32,33,["G5210"]],[33,34,["G2532"]],[34,36,["G2523"]],[36,37,["G1909"]],[37,38,["G1427"]],[38,39,["G2362"]],[39,40,["G2919"]],[40,41,["G3588"]],[41,42,["G1427"]],[42,43,["G5443"]],[43,45,["G2474"]]]},{"k":23791,"v":[[0,1,["G2532"]],[1,3,["G3956"]],[3,4,["G3739"]],[4,6,["G863"]],[6,7,["G3614"]],[7,8,["G2228"]],[8,9,["G80"]],[9,10,["G2228"]],[10,11,["G79"]],[11,12,["G2228"]],[12,13,["G3962"]],[13,14,["G2228"]],[14,15,["G3384"]],[15,16,["G2228"]],[16,17,["G1135"]],[17,18,["G2228"]],[18,19,["G5043"]],[19,20,["G2228"]],[20,21,["G68"]],[21,25,["G1752","G3450","G3686"]],[25,27,["G2983"]],[27,29,["G1542"]],[29,30,["G2532"]],[30,32,["G2816"]],[32,33,["G166"]],[33,34,["G2222"]]]},{"k":23792,"v":[[0,1,["G1161"]],[1,2,["G4183"]],[2,5,["G4413"]],[5,7,["G2071"]],[7,8,["G2078"]],[8,9,["G2532"]],[9,11,["G2078"]],[11,14,["G4413"]]]},{"k":23793,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G932"]],[3,5,["G3772"]],[5,6,["G2076"]],[6,8,["G3664"]],[8,10,["G444"]],[10,14,["G3617"]],[14,15,["G3748"]],[15,17,["G1831"]],[17,21,["G260","G4404"]],[21,23,["G3409"]],[23,24,["G2040"]],[24,25,["G1519"]],[25,26,["G848"]],[26,27,["G290"]]]},{"k":23794,"v":[[0,1,["G1161"]],[1,5,["G4856"]],[5,6,["G3326"]],[6,7,["G3588"]],[7,8,["G2040"]],[8,9,["G1537"]],[9,11,["G1220"]],[11,13,["G2250"]],[13,15,["G649"]],[15,16,["G846"]],[16,17,["G1519"]],[17,18,["G848"]],[18,19,["G290"]]]},{"k":23795,"v":[[0,1,["G2532"]],[1,4,["G1831"]],[4,5,["G4012"]],[5,6,["G3588"]],[6,7,["G5154"]],[7,8,["G5610"]],[8,10,["G1492"]],[10,11,["G243"]],[11,12,["G2476"]],[12,13,["G692"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G58"]]]},{"k":23796,"v":[[0,4,["G2548","G2036"]],[4,5,["G5217"]],[5,6,["G5210"]],[6,7,["G2532"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G290"]],[10,11,["G2532"]],[11,12,["G3739","G1437"]],[12,13,["G5600"]],[13,14,["G1342"]],[14,17,["G1325"]],[17,18,["G5213"]],[18,19,["G1161"]],[19,20,["G3588"]],[20,23,["G565"]]]},{"k":23797,"v":[[0,1,["G3825"]],[1,4,["G1831"]],[4,5,["G4012"]],[5,7,["G1623"]],[7,8,["G2532"]],[8,9,["G1766"]],[9,10,["G5610"]],[10,12,["G4160"]],[12,13,["G5615"]]]},{"k":23798,"v":[[0,1,["G1161"]],[1,2,["G4012"]],[2,3,["G3588"]],[3,4,["G1734"]],[4,5,["G5610"]],[5,8,["G1831"]],[8,10,["G2147"]],[10,11,["G243"]],[11,12,["G2476"]],[12,13,["G692"]],[13,14,["G2532"]],[14,15,["G3004"]],[15,17,["G846"]],[17,18,["G5101"]],[18,19,["G2476"]],[19,21,["G5602"]],[21,22,["G3650"]],[22,23,["G3588"]],[23,24,["G2250"]],[24,25,["G692"]]]},{"k":23799,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G3754"]],[5,7,["G3762"]],[7,9,["G3409"]],[9,10,["G2248"]],[10,12,["G3004"]],[12,14,["G846"]],[14,15,["G5217"]],[15,16,["G5210"]],[16,17,["G2532"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G290"]],[20,21,["G2532"]],[21,22,["G3739","G1437"]],[22,23,["G5600"]],[23,24,["G1342"]],[24,28,["G2983"]]]},{"k":23800,"v":[[0,1,["G1161"]],[1,3,["G3798"]],[3,5,["G1096"]],[5,6,["G3588"]],[6,7,["G2962"]],[7,9,["G3588"]],[9,10,["G290"]],[10,13,["G848"]],[13,14,["G2012"]],[14,15,["G2564"]],[15,16,["G3588"]],[16,17,["G2040"]],[17,18,["G2532"]],[18,19,["G591"]],[19,20,["G846"]],[20,22,["G3408"]],[22,23,["G756"]],[23,24,["G575"]],[24,25,["G3588"]],[25,26,["G2078"]],[26,27,["G2193"]],[27,28,["G3588"]],[28,29,["G4413"]]]},{"k":23801,"v":[[0,1,["G2532"]],[1,4,["G2064"]],[4,5,["G3588"]],[5,8,["G4012"]],[8,9,["G3588"]],[9,10,["G1734"]],[10,11,["G5610"]],[11,13,["G2983"]],[13,15,["G303"]],[15,17,["G1220"]]]},{"k":23802,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G4413"]],[4,5,["G2064"]],[5,7,["G3543"]],[7,8,["G3754"]],[8,12,["G2983"]],[12,13,["G4119"]],[13,14,["G2532"]],[14,15,["G846"]],[15,16,["G2532"]],[16,17,["G2983"]],[17,19,["G303"]],[19,21,["G1220"]]]},{"k":23803,"v":[[0,1,["G1161"]],[1,5,["G2983"]],[5,8,["G1111"]],[8,9,["G2596"]],[9,10,["G3588"]],[10,14,["G3617"]]]},{"k":23804,"v":[[0,1,["G3004"]],[1,2,["G3778"]],[2,3,["G2078"]],[3,5,["G4160"]],[5,7,["G3391"]],[7,8,["G5610"]],[8,9,["G2532"]],[9,12,["G4160"]],[12,13,["G846"]],[13,14,["G2470"]],[14,16,["G2254"]],[16,19,["G941"]],[19,20,["G3588"]],[20,21,["G922"]],[21,22,["G2532"]],[22,23,["G2742"]],[23,25,["G3588"]],[25,26,["G2250"]]]},{"k":23805,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,4,["G1520"]],[4,6,["G846"]],[6,8,["G2036"]],[8,9,["G2083"]],[9,14,["G91","G4571","G3756"]],[14,16,["G3780"]],[16,18,["G4856"]],[18,20,["G3427"]],[20,23,["G1220"]]]},{"k":23806,"v":[[0,1,["G142"]],[1,3,["G4674"]],[3,5,["G2532"]],[5,8,["G5217"]],[8,9,["(G1161)"]],[9,10,["G2309"]],[10,11,["G1325"]],[11,13,["G5129"]],[13,14,["G2078"]],[14,15,["G2532"]],[15,16,["G5613"]],[16,18,["G4671"]]]},{"k":23807,"v":[[0,4,["G1832","G3756"]],[4,6,["G3427"]],[6,8,["G4160"]],[8,9,["G3739"]],[9,11,["G2309"]],[11,12,["G1722"]],[12,14,["G1699","(G1487)"]],[14,15,["G2076"]],[15,16,["G4675"]],[16,17,["G3788"]],[17,18,["G4190"]],[18,19,["G3754"]],[19,20,["G1473"]],[20,21,["G1510"]],[21,22,["G18"]]]},{"k":23808,"v":[[0,1,["G3779"]],[1,2,["G3588"]],[2,3,["G2078"]],[3,5,["G2071"]],[5,6,["G4413"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G4413"]],[9,10,["G2078"]],[10,11,["G1063"]],[11,12,["G4183"]],[12,13,["G1526"]],[13,14,["G2822"]],[14,15,["G1161"]],[15,16,["G3641"]],[16,17,["G1588"]]]},{"k":23809,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,4,["G305"]],[4,5,["G1519"]],[5,6,["G2414"]],[6,7,["G3880"]],[7,8,["G3588"]],[8,9,["G1427"]],[9,10,["G3101"]],[10,11,["G2596","G2398"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G3598"]],[14,15,["G2532"]],[15,16,["G2036"]],[16,18,["G846"]]]},{"k":23810,"v":[[0,1,["G2400"]],[1,4,["G305"]],[4,5,["G1519"]],[5,6,["G2414"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G5207"]],[9,11,["G444"]],[11,14,["G3860"]],[14,16,["G3588"]],[16,18,["G749"]],[18,19,["G2532"]],[19,22,["G1122"]],[22,23,["G2532"]],[23,26,["G2632"]],[26,27,["G846"]],[27,29,["G2288"]]]},{"k":23811,"v":[[0,1,["G2532"]],[1,3,["G3860"]],[3,4,["G846"]],[4,6,["G3588"]],[6,7,["G1484"]],[7,9,["G1702"]],[9,10,["G2532"]],[10,12,["G3146"]],[12,13,["G2532"]],[13,15,["G4717"]],[15,17,["G2532"]],[17,18,["G3588"]],[18,19,["G5154"]],[19,20,["G2250"]],[20,24,["G450"]]]},{"k":23812,"v":[[0,1,["G5119"]],[1,2,["G4334"]],[2,4,["G846"]],[4,5,["G3588"]],[5,6,["G3384"]],[6,8,["G2199"]],[8,9,["G5207"]],[9,10,["G3326"]],[10,11,["G848"]],[11,12,["G5207"]],[12,13,["G4352"]],[13,15,["G2532"]],[15,16,["G154"]],[16,19,["G5100"]],[19,20,["G3844"]],[20,21,["G846"]]]},{"k":23813,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G5101"]],[6,7,["G2309"]],[7,10,["G3004"]],[10,12,["G846"]],[12,13,["G2036"]],[13,14,["G2443"]],[14,15,["G3778"]],[15,16,["G3450"]],[16,17,["G1417"]],[17,18,["G5207"]],[18,20,["G2523"]],[20,22,["G1520"]],[22,23,["G1537"]],[23,24,["G4675"]],[24,26,["G1188"]],[26,27,["G2532"]],[27,29,["G1520"]],[29,30,["G1537"]],[30,32,["G2176"]],[32,33,["G1722"]],[33,34,["G4675"]],[34,35,["G932"]]]},{"k":23814,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G1492"]],[7,8,["G3756"]],[8,9,["G5101"]],[9,11,["G154"]],[11,14,["G1410"]],[14,16,["G4095"]],[16,18,["G3588"]],[18,19,["G4221"]],[19,20,["G3739"]],[20,21,["G1473"]],[21,22,["G3195"]],[22,23,["G4095"]],[23,25,["G2532"]],[25,28,["G907"]],[28,30,["G3588"]],[30,31,["G908"]],[31,32,["G3739"]],[32,33,["G1473"]],[33,35,["G907"]],[35,38,["G3004"]],[38,40,["G846"]],[40,43,["G1410"]]]},{"k":23815,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,8,["G4095"]],[8,9,["G3303"]],[9,11,["G3450"]],[11,12,["G4221"]],[12,13,["G2532"]],[13,15,["G907"]],[15,17,["G3588"]],[17,18,["G908"]],[18,19,["G3739"]],[19,20,["G1473"]],[20,22,["G907"]],[22,24,["G1161"]],[24,26,["G2523"]],[26,27,["G1537"]],[27,28,["G3450"]],[28,30,["G1188"]],[30,31,["G2532"]],[31,32,["G1537"]],[32,33,["G3450"]],[33,34,["G2176"]],[34,35,["G2076"]],[35,36,["G3756"]],[36,37,["G1699"]],[37,39,["G1325"]],[39,40,["G235"]],[40,48,["G3739"]],[48,51,["G2090"]],[51,52,["G5259"]],[52,53,["G3450"]],[53,54,["G3962"]]]},{"k":23816,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G1176"]],[4,5,["G191"]],[5,11,["G23"]],[11,12,["G4012"]],[12,13,["G3588"]],[13,14,["G1417"]],[14,15,["G80"]]]},{"k":23817,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G4341"]],[3,4,["G846"]],[4,8,["G2036"]],[8,10,["G1492"]],[10,11,["G3754"]],[11,12,["G3588"]],[12,13,["G758"]],[13,15,["G3588"]],[15,16,["G1484"]],[16,18,["G2634"]],[18,20,["G846"]],[20,21,["G2532"]],[21,25,["G3173"]],[25,27,["G2715"]],[27,29,["G846"]]]},{"k":23818,"v":[[0,1,["G1161"]],[1,4,["G3756"]],[4,5,["G2071"]],[5,6,["G3779"]],[6,7,["G1722"]],[7,8,["G5213"]],[8,9,["G235"]],[9,10,["G3739","G1437"]],[10,11,["G2309"]],[11,12,["G1096"]],[12,13,["G3173"]],[13,14,["G1722"]],[14,15,["G5213"]],[15,18,["G2077"]],[18,19,["G5216"]],[19,20,["G1249"]]]},{"k":23819,"v":[[0,1,["G2532"]],[1,2,["G3739","G1437"]],[2,3,["G2309"]],[3,4,["G1511"]],[4,5,["G4413"]],[5,6,["G1722"]],[6,7,["G5213"]],[7,10,["G2077"]],[10,11,["G5216"]],[11,12,["G1401"]]]},{"k":23820,"v":[[0,2,["G5618"]],[2,3,["G3588"]],[3,4,["G5207"]],[4,6,["G444"]],[6,7,["G2064"]],[7,8,["G3756"]],[8,12,["G1247"]],[12,13,["G235"]],[13,15,["G1247"]],[15,16,["G2532"]],[16,18,["G1325"]],[18,19,["G848"]],[19,20,["G5590"]],[20,22,["G3083"]],[22,23,["G473"]],[23,24,["G4183"]]]},{"k":23821,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,4,["G1607"]],[4,5,["G575"]],[5,6,["G2410"]],[6,8,["G4183"]],[8,9,["G3793"]],[9,10,["G190"]],[10,11,["G846"]]]},{"k":23822,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G1417"]],[3,5,["G5185"]],[5,6,["G2521"]],[6,7,["G3844"]],[7,8,["G3588"]],[8,10,["G3598"]],[10,13,["G191"]],[13,14,["G3754"]],[14,15,["G2424"]],[15,17,["G3855"]],[17,19,["G2896"]],[19,20,["G3004"]],[20,22,["G1653"]],[22,24,["G2248"]],[24,26,["G2962"]],[26,28,["G5207"]],[28,30,["G1138"]]]},{"k":23823,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3793"]],[3,4,["G2008"]],[4,5,["G846"]],[5,6,["G2443"]],[6,11,["G4623"]],[11,12,["G1161"]],[12,13,["G3588"]],[13,14,["G2896"]],[14,16,["G3185"]],[16,17,["G3004"]],[17,19,["G1653"]],[19,21,["G2248"]],[21,23,["G2962"]],[23,25,["G5207"]],[25,27,["G1138"]]]},{"k":23824,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,4,["G2476"]],[4,6,["G5455"]],[6,7,["G846"]],[7,8,["G2532"]],[8,9,["G2036"]],[9,10,["G5101"]],[10,11,["G2309"]],[11,16,["G4160"]],[16,18,["G5213"]]]},{"k":23825,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G2962"]],[5,6,["G2443"]],[6,7,["G2257"]],[7,8,["G3788"]],[8,11,["G455"]]]},{"k":23826,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,4,["G4697"]],[4,8,["G680"]],[8,9,["G846"]],[9,10,["G3788"]],[10,11,["G2532"]],[11,12,["G2112"]],[12,13,["G846"]],[13,14,["G3788"]],[14,16,["G308"]],[16,17,["G2532"]],[17,19,["G190"]],[19,20,["G846"]]]},{"k":23827,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G1448"]],[5,6,["G1519"]],[6,7,["G2414"]],[7,8,["G2532"]],[8,10,["G2064"]],[10,11,["G1519"]],[11,12,["G967"]],[12,13,["G4314"]],[13,14,["G3588"]],[14,15,["G3735"]],[15,17,["G1636"]],[17,18,["G5119"]],[18,19,["G649"]],[19,20,["G2424"]],[20,21,["G1417"]],[21,22,["G3101"]]]},{"k":23828,"v":[[0,1,["G3004"]],[1,3,["G846"]],[3,4,["G4198"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G2968"]],[7,9,["G561"]],[9,10,["G5216"]],[10,11,["G2532"]],[11,12,["G2112"]],[12,15,["G2147"]],[15,17,["G3688"]],[17,18,["G1210"]],[18,19,["G2532"]],[19,21,["G4454"]],[21,22,["G3326"]],[22,23,["G846"]],[23,24,["G3089"]],[24,27,["G71"]],[27,30,["G3427"]]]},{"k":23829,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,3,["G5100"]],[3,5,["G2036"]],[5,6,["G5100"]],[6,8,["G5213"]],[8,11,["G2046"]],[11,12,["G3588"]],[12,13,["G2962"]],[13,14,["G2192"]],[14,15,["G5532"]],[15,17,["G846"]],[17,18,["G2532"]],[18,19,["G2112"]],[19,22,["G649"]],[22,23,["G846"]]]},{"k":23830,"v":[[0,0,["(G1161)"]],[0,1,["G3650"]],[1,2,["G5124"]],[2,4,["G1096"]],[4,5,["G2443"]],[5,9,["G4137"]],[9,12,["G4483"]],[12,13,["G1223"]],[13,14,["G3588"]],[14,15,["G4396"]],[15,16,["G3004"]]]},{"k":23831,"v":[[0,1,["G2036"]],[1,3,["G3588"]],[3,4,["G2364"]],[4,6,["G4622"]],[6,7,["G2400"]],[7,8,["G4675"]],[8,9,["G935"]],[9,10,["G2064"]],[10,12,["G4671"]],[12,13,["G4239"]],[13,14,["G2532"]],[14,15,["G1910"]],[15,16,["G1909"]],[16,18,["G3688"]],[18,19,["G2532"]],[19,21,["G4454"]],[21,23,["G5207"]],[23,26,["G5268"]]]},{"k":23832,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,4,["G4198"]],[4,5,["G2532"]],[5,6,["G4160"]],[6,7,["G2531"]],[7,8,["G2424"]],[8,9,["G4367"]],[9,10,["G846"]]]},{"k":23833,"v":[[0,2,["G71"]],[2,3,["G3588"]],[3,4,["G3688"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G4454"]],[7,8,["G2532"]],[8,9,["G2007"]],[9,10,["G1883"]],[10,11,["G846"]],[11,12,["G848"]],[12,13,["G2440"]],[13,14,["G2532"]],[14,16,["G1940"]],[16,18,["G1883","G846"]]]},{"k":23834,"v":[[0,1,["G1161"]],[1,4,["G4118"]],[4,5,["G3793"]],[5,6,["G4766"]],[6,7,["G1438"]],[7,8,["G2440"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G3598","(G1161)"]],[11,12,["G243"]],[12,14,["G2875"]],[14,15,["G2798"]],[15,16,["G575"]],[16,17,["G3588"]],[17,18,["G1186"]],[18,19,["G2532"]],[19,20,["G4766"]],[20,22,["G1722"]],[22,23,["G3588"]],[23,24,["G3598"]]]},{"k":23835,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3793"]],[3,6,["G4254"]],[6,7,["G2532"]],[7,9,["G190"]],[9,10,["G2896"]],[10,11,["G3004"]],[11,12,["G5614"]],[12,14,["G3588"]],[14,15,["G5207"]],[15,17,["G1138"]],[17,18,["G2127"]],[18,22,["G2064"]],[22,23,["G1722"]],[23,25,["G3686"]],[25,28,["G2962"]],[28,29,["G5614"]],[29,30,["G1722"]],[30,31,["G3588"]],[31,32,["G5310"]]]},{"k":23836,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G1525"]],[5,6,["G1519"]],[6,7,["G2414"]],[7,8,["G3956"]],[8,9,["G3588"]],[9,10,["G4172"]],[10,12,["G4579"]],[12,13,["G3004"]],[13,14,["G5101"]],[14,15,["G2076"]],[15,16,["G3778"]]]},{"k":23837,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3793"]],[3,4,["G3004"]],[4,5,["G3778"]],[5,6,["G2076"]],[6,7,["G2424"]],[7,8,["G3588"]],[8,9,["G4396"]],[9,10,["G575"]],[10,11,["G3478"]],[11,13,["G1056"]]]},{"k":23838,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G1525"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G2411"]],[6,8,["G2316"]],[8,9,["G2532"]],[9,11,["G1544"]],[11,12,["G3956"]],[12,15,["G4453"]],[15,16,["G2532"]],[16,17,["G59"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,20,["G2411"]],[20,21,["G2532"]],[21,22,["G2690"]],[22,23,["G3588"]],[23,24,["G5132"]],[24,26,["G3588"]],[26,27,["G2855"]],[27,28,["G2532"]],[28,29,["G3588"]],[29,30,["G2515"]],[30,34,["G4453"]],[34,35,["G4058"]]]},{"k":23839,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,4,["G846"]],[4,7,["G1125"]],[7,8,["G3450"]],[8,9,["G3624"]],[9,12,["G2564"]],[12,14,["G3624"]],[14,16,["G4335"]],[16,17,["G1161"]],[17,18,["G5210"]],[18,20,["G4160"]],[20,21,["G846"]],[21,23,["G4693"]],[23,25,["G3027"]]]},{"k":23840,"v":[[0,1,["G2532"]],[1,3,["G5185"]],[3,4,["G2532"]],[4,6,["G5560"]],[6,7,["G4334"]],[7,9,["G846"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G2411"]],[12,13,["G2532"]],[13,15,["G2323"]],[15,16,["G846"]]]},{"k":23841,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,5,["G749"]],[5,6,["G2532"]],[6,7,["G1122"]],[7,8,["G1492"]],[8,9,["G3588"]],[9,11,["G2297"]],[11,12,["G3739"]],[12,14,["G4160"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G3816"]],[17,18,["G2896"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G2411"]],[21,22,["G2532"]],[22,23,["G3004"]],[23,24,["G5614"]],[24,26,["G3588"]],[26,27,["G5207"]],[27,29,["G1138"]],[29,33,["G23"]]]},{"k":23842,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G191"]],[5,7,["G5101"]],[7,8,["G3778"]],[8,9,["G3004"]],[9,10,["G2532"]],[10,11,["G2424"]],[11,12,["G3004"]],[12,14,["G846"]],[14,15,["G3483"]],[15,18,["G3763"]],[18,19,["G314"]],[19,21,["G1537"]],[21,23,["G4750"]],[23,25,["G3516"]],[25,26,["G2532"]],[26,27,["G2337"]],[27,30,["G2675"]],[30,31,["G136"]]]},{"k":23843,"v":[[0,1,["G2532"]],[1,3,["G2641"]],[3,4,["G846"]],[4,6,["G1831"]],[6,7,["G1854"]],[7,9,["G3588"]],[9,10,["G4172"]],[10,11,["G1519"]],[11,12,["G963"]],[12,13,["G2532"]],[13,15,["G835"]],[15,16,["G1563"]]]},{"k":23844,"v":[[0,1,["G1161"]],[1,4,["G4405"]],[4,7,["G1877"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G4172"]],[10,12,["G3983"]]]},{"k":23845,"v":[[0,1,["G2532"]],[1,4,["G1492"]],[4,5,["G3391"]],[5,7,["G4808"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,10,["G3598"]],[10,12,["G2064"]],[12,13,["G1909"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G2147"]],[16,17,["G3762"]],[17,18,["G1722","G846"]],[18,19,["G1508"]],[19,20,["G5444"]],[20,21,["G3440"]],[21,22,["G2532"]],[22,23,["G3004"]],[23,25,["G846"]],[25,28,["G2590"]],[28,29,["G1096"]],[29,30,["G1537"]],[30,31,["G4675"]],[31,32,["G3371"]],[32,34,["G1519","G165"]],[34,35,["G2532"]],[35,36,["G3916"]],[36,37,["G3588"]],[37,39,["G4808"]],[39,41,["G3583"]]]},{"k":23846,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G3101"]],[4,5,["G1492"]],[5,8,["G2296"]],[8,9,["G3004"]],[9,10,["G4459"]],[10,11,["G3916"]],[11,13,["G3588"]],[13,15,["G4808"]],[15,17,["G3583"]]]},{"k":23847,"v":[[0,0,["(G1161)"]],[0,1,["G2424"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G846"]],[6,7,["G281"]],[7,9,["G3004"]],[9,11,["G5213"]],[11,12,["G1437"]],[12,14,["G2192"]],[14,15,["G4102"]],[15,16,["G2532"]],[16,17,["G1252"]],[17,18,["G3361"]],[18,21,["G3756"]],[21,22,["G3440"]],[22,23,["G4160"]],[23,24,["G3588"]],[24,29,["G3588"]],[29,31,["G4808"]],[31,32,["G235"]],[32,34,["G2579"]],[34,37,["G2036"]],[37,39,["G5129"]],[39,40,["G3735"]],[40,43,["G142"]],[43,44,["G2532"]],[44,47,["G906"]],[47,48,["G1519"]],[48,49,["G3588"]],[49,50,["G2281"]],[50,54,["G1096"]]]},{"k":23848,"v":[[0,1,["G2532"]],[1,3,["G3956"]],[3,4,["G3745","G302"]],[4,7,["G154"]],[7,8,["G1722"]],[8,9,["G4335"]],[9,10,["G4100"]],[10,13,["G2983"]]]},{"k":23849,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G2064"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G2411"]],[8,9,["G3588"]],[9,11,["G749"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G4245"]],[14,16,["G3588"]],[16,17,["G2992"]],[17,18,["G4334"]],[18,20,["G846"]],[20,24,["G1321"]],[24,26,["G3004"]],[26,27,["G1722"]],[27,28,["G4169"]],[28,29,["G1849"]],[29,30,["G4160"]],[30,33,["G5023"]],[33,34,["G2532"]],[34,35,["G5101"]],[35,36,["G1325"]],[36,37,["G4671"]],[37,38,["G5026"]],[38,39,["G1849"]]]},{"k":23850,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,9,["G2504"]],[9,11,["G2065"]],[11,12,["G5209"]],[12,13,["G1520"]],[13,14,["G3056"]],[14,15,["G3739"]],[15,16,["G1437"]],[16,18,["G2036"]],[18,19,["G3427"]],[19,23,["G2504"]],[23,25,["G2046"]],[25,26,["G5213"]],[26,27,["G1722"]],[27,28,["G4169"]],[28,29,["G1849"]],[29,31,["G4160"]],[31,33,["G5023"]]]},{"k":23851,"v":[[0,1,["G3588"]],[1,2,["G908"]],[2,4,["G2491"]],[4,5,["G4159"]],[5,6,["G2258"]],[6,8,["G1537"]],[8,9,["G3772"]],[9,10,["G2228"]],[10,11,["G1537"]],[11,12,["G444"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G1260"]],[15,16,["G3844"]],[16,17,["G1438"]],[17,18,["G3004"]],[18,19,["G1437"]],[19,22,["G2036"]],[22,23,["G1537"]],[23,24,["G3772"]],[24,27,["G2046"]],[27,29,["G2254"]],[29,30,["G1302"]],[30,33,["G3756"]],[33,34,["G3767"]],[34,35,["G4100"]],[35,36,["G846"]]]},{"k":23852,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,5,["G2036"]],[5,6,["G1537"]],[6,7,["G444"]],[7,9,["G5399"]],[9,10,["G3588"]],[10,11,["G3793"]],[11,12,["G1063"]],[12,13,["G3956"]],[13,14,["G2192"]],[14,15,["G2491"]],[15,16,["G5613"]],[16,18,["G4396"]]]},{"k":23853,"v":[[0,1,["G2532"]],[1,3,["G611"]],[3,4,["G2424"]],[4,6,["G2036"]],[6,9,["G1492","G3756"]],[9,10,["G2532"]],[10,11,["G846"]],[11,12,["G5346"]],[12,14,["G846"]],[14,15,["G3761"]],[15,16,["G3004"]],[16,17,["G1473"]],[17,18,["G5213"]],[18,19,["G1722"]],[19,20,["G4169"]],[20,21,["G1849"]],[21,23,["G4160"]],[23,25,["G5023"]]]},{"k":23854,"v":[[0,1,["G1161"]],[1,2,["G5101"]],[2,3,["G1380"]],[3,4,["G5213"]],[4,7,["G444"]],[7,8,["G2192"]],[8,9,["G1417"]],[9,10,["G5043"]],[10,11,["G2532"]],[11,13,["G4334"]],[13,15,["G3588"]],[15,16,["G4413"]],[16,18,["G2036"]],[18,19,["G5043"]],[19,20,["G5217"]],[20,21,["G2038"]],[21,23,["G4594"]],[23,24,["G1722"]],[24,25,["G3450"]],[25,26,["G290"]]]},{"k":23855,"v":[[0,1,["G3588"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G2309"]],[6,7,["G3756"]],[7,8,["G1161"]],[8,9,["G5305"]],[9,11,["G3338"]],[11,13,["G565"]]]},{"k":23856,"v":[[0,1,["G2532"]],[1,3,["G4334"]],[3,5,["G3588"]],[5,6,["G1208"]],[6,8,["G2036"]],[8,9,["G5615"]],[9,10,["G1161"]],[10,11,["G3588"]],[11,12,["G611"]],[12,14,["G2036"]],[14,15,["G1473"]],[15,17,["G2962"]],[17,18,["G2532"]],[18,19,["G565"]],[19,20,["G3756"]]]},{"k":23857,"v":[[0,1,["G5101"]],[1,2,["G1537"]],[2,3,["G3588"]],[3,4,["G1417"]],[4,5,["G4160"]],[5,6,["G3588"]],[6,7,["G2307"]],[7,11,["G3962"]],[11,12,["G3004"]],[12,14,["G846"]],[14,15,["G3588"]],[15,16,["G4413"]],[16,17,["G2424"]],[17,18,["G3004"]],[18,20,["G846"]],[20,21,["G281"]],[21,23,["G3004"]],[23,25,["G5213"]],[25,26,["G3754"]],[26,27,["G3588"]],[27,28,["G5057"]],[28,29,["G2532"]],[29,30,["G3588"]],[30,31,["G4204"]],[31,38,["G4254","G1519","G3588","G932","G2316"]],[38,39,["G5209"]]]},{"k":23858,"v":[[0,1,["G1063"]],[1,2,["G2491"]],[2,3,["G2064"]],[3,4,["G4314"]],[4,5,["G5209"]],[5,6,["G1722"]],[6,8,["G3598"]],[8,10,["G1343"]],[10,11,["G2532"]],[11,13,["G4100"]],[13,14,["G846"]],[14,15,["G3756"]],[15,16,["G1161"]],[16,17,["G3588"]],[17,18,["G5057"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G4204"]],[21,22,["G4100"]],[22,23,["G846"]],[23,24,["G1161"]],[24,25,["G5210"]],[25,29,["G1492"]],[29,31,["G3338"]],[31,32,["G3756"]],[32,33,["G5305"]],[33,37,["G4100"]],[37,38,["G846"]]]},{"k":23859,"v":[[0,1,["G191"]],[1,2,["G243"]],[2,3,["G3850"]],[3,5,["G2258"]],[5,7,["G5100"]],[7,8,["(G3617)"]],[8,9,["G3748"]],[9,10,["G5452"]],[10,12,["G290"]],[12,13,["G2532"]],[13,17,["G4060","G846","G5418"]],[17,18,["G2532"]],[18,19,["G3736"]],[19,21,["G3025"]],[21,22,["G1722"]],[22,23,["G846"]],[23,24,["G2532"]],[24,25,["G3618"]],[25,27,["G4444"]],[27,28,["G2532"]],[28,31,["G1554","G846"]],[31,33,["G1092"]],[33,34,["G2532"]],[34,39,["G589"]]]},{"k":23860,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,3,["G3588"]],[3,4,["G2540"]],[4,6,["G3588"]],[6,7,["G2590"]],[7,9,["G1448"]],[9,11,["G649"]],[11,12,["G848"]],[12,13,["G1401"]],[13,14,["G4314"]],[14,15,["G3588"]],[15,16,["G1092"]],[16,20,["G2983"]],[20,21,["G3588"]],[21,22,["G2590"]],[22,24,["G846"]]]},{"k":23861,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1092"]],[3,4,["G2983"]],[4,5,["G846"]],[5,6,["G1401"]],[6,8,["G1194"]],[8,9,["G3739","G3303"]],[9,10,["G1161"]],[10,11,["G615"]],[11,12,["G3739"]],[12,13,["G1161"]],[13,14,["G3036"]],[14,15,["G3739"]]]},{"k":23862,"v":[[0,1,["G3825"]],[1,3,["G649"]],[3,4,["G243"]],[4,5,["G1401"]],[5,6,["G4119"]],[6,8,["G3588"]],[8,9,["G4413"]],[9,10,["G2532"]],[10,12,["G4160"]],[12,14,["G846"]],[14,15,["G5615"]]]},{"k":23863,"v":[[0,1,["G1161"]],[1,2,["G5305"]],[2,6,["G649"]],[6,7,["G4314"]],[7,8,["G846"]],[8,9,["G848"]],[9,10,["G5207"]],[10,11,["G3004"]],[11,14,["G1788"]],[14,15,["G3450"]],[15,16,["G5207"]]]},{"k":23864,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1092"]],[4,5,["G1492"]],[5,6,["G3588"]],[6,7,["G5207"]],[7,9,["G2036"]],[9,10,["G1722"]],[10,11,["G1438"]],[11,12,["G3778"]],[12,13,["G2076"]],[13,14,["G3588"]],[14,15,["G2818"]],[15,16,["G1205"]],[16,19,["G615"]],[19,20,["G846"]],[20,21,["G2532"]],[21,25,["G2722"]],[25,26,["G846"]],[26,27,["G2817"]]]},{"k":23865,"v":[[0,1,["G2532"]],[1,3,["G2983"]],[3,4,["G846"]],[4,5,["G2532"]],[5,6,["G1544"]],[6,8,["G1854"]],[8,10,["G3588"]],[10,11,["G290"]],[11,12,["G2532"]],[12,13,["G615"]],[13,14,[]]]},{"k":23866,"v":[[0,1,["G3752"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G3767"]],[4,6,["G3588"]],[6,7,["G290"]],[7,8,["G2064"]],[8,9,["G5101"]],[9,12,["G4160"]],[12,14,["G1565"]],[14,15,["G1092"]]]},{"k":23867,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,7,["G2560"]],[7,8,["G622"]],[8,9,["G846"]],[9,11,["G2556"]],[11,12,["G2532"]],[12,15,["G1554"]],[15,17,["G290"]],[17,19,["G243"]],[19,20,["G1092"]],[20,21,["G3748"]],[21,23,["G591"]],[23,24,["G846"]],[24,25,["G3588"]],[25,26,["G2590"]],[26,27,["G1722"]],[27,28,["G846"]],[28,29,["G2540"]]]},{"k":23868,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,7,["G3763"]],[7,8,["G314"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G1124"]],[11,13,["G3037"]],[13,14,["G3739"]],[14,15,["G3588"]],[15,16,["G3618"]],[16,17,["G593"]],[17,19,["G3778"]],[19,21,["G1096"]],[21,22,["(G1519)"]],[22,23,["G2776"]],[23,26,["G1137"]],[26,27,["G3778"]],[27,28,["G1096"]],[28,31,["G3844","G2962"]],[31,32,["G2532"]],[32,34,["G2076"]],[34,35,["G2298"]],[35,36,["G1722"]],[36,37,["G2257"]],[37,38,["G3788"]]]},{"k":23869,"v":[[0,1,["G1223","G5124"]],[1,2,["G3004"]],[2,5,["G5213"]],[5,6,["G3588"]],[6,7,["G932"]],[7,9,["G2316"]],[9,12,["G142"]],[12,13,["G575"]],[13,14,["G5216"]],[14,15,["G2532"]],[15,16,["G1325"]],[16,19,["G1484"]],[19,21,["G4160"]],[21,22,["G3588"]],[22,23,["G2590"]],[23,24,["G846"]]]},{"k":23870,"v":[[0,1,["G2532"]],[1,4,["G4098"]],[4,5,["G1909"]],[5,6,["G5126"]],[6,7,["G3037"]],[7,10,["G4917"]],[10,11,["G1161"]],[11,12,["G1909"]],[12,13,["G3739","G302"]],[13,16,["G4098"]],[16,22,["G3039","G846"]]]},{"k":23871,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,5,["G749"]],[5,6,["G2532"]],[6,7,["G5330"]],[7,9,["G191"]],[9,10,["G846"]],[10,11,["G3850"]],[11,13,["G1097"]],[13,14,["G3754"]],[14,16,["G3004"]],[16,17,["G4012"]],[17,18,["G846"]]]},{"k":23872,"v":[[0,1,["G2532"]],[1,4,["G2212"]],[4,7,["G2902"]],[7,9,["G846"]],[9,11,["G5399"]],[11,12,["G3588"]],[12,13,["G3793"]],[13,14,["G1894"]],[14,16,["G2192"]],[16,17,["G846"]],[17,18,["G5613"]],[18,20,["G4396"]]]},{"k":23873,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G3825"]],[8,9,["G1722"]],[9,10,["G3850"]],[10,12,["G3004"]]]},{"k":23874,"v":[[0,1,["G3588"]],[1,2,["G932"]],[2,4,["G3772"]],[4,7,["G3666"]],[7,10,["G444","G935"]],[10,11,["G3748"]],[11,12,["G4160"]],[12,14,["G1062"]],[14,16,["G848"]],[16,17,["G5207"]]]},{"k":23875,"v":[[0,1,["G2532"]],[1,3,["G649"]],[3,4,["G848"]],[4,5,["G1401"]],[5,7,["G2564"]],[7,11,["G2564"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G1062"]],[14,15,["G2532"]],[15,17,["G2309"]],[17,18,["G3756"]],[18,19,["G2064"]]]},{"k":23876,"v":[[0,1,["G3825"]],[1,4,["G649"]],[4,5,["G243"]],[5,6,["G1401"]],[6,7,["G3004"]],[7,8,["G2036"]],[8,12,["G2564"]],[12,13,["G2400"]],[13,16,["G2090"]],[16,17,["G3450"]],[17,18,["G712"]],[18,19,["G3450"]],[19,20,["G5022"]],[20,21,["G2532"]],[21,23,["G4619"]],[23,25,["G2380"]],[25,26,["G2532"]],[26,28,["G3956"]],[28,30,["G2092"]],[30,31,["G1205"]],[31,32,["G1519"]],[32,33,["G3588"]],[33,34,["G1062"]]]},{"k":23877,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,5,["G272"]],[5,10,["G565"]],[10,11,["G3588","G3303"]],[11,12,["G1519"]],[12,13,["G2398"]],[13,14,["G68","(G1161)"]],[14,15,["G3588","G3303"]],[15,16,["G1519"]],[16,17,["G848"]],[17,18,["G1711"]]]},{"k":23878,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3062"]],[3,4,["G2902"]],[4,5,["G846"]],[5,6,["G1401"]],[6,10,["G5195"]],[10,11,["G2532"]],[11,12,["G615"]],[12,13,[]]]},{"k":23879,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G935"]],[4,5,["G191"]],[5,9,["G3710"]],[9,10,["G2532"]],[10,13,["G3992"]],[13,14,["G848"]],[14,15,["G4753"]],[15,17,["G622"]],[17,18,["G1565"]],[18,19,["G5406"]],[19,20,["G2532"]],[20,22,["G1714"]],[22,23,["G846"]],[23,24,["G4172"]]]},{"k":23880,"v":[[0,1,["G5119"]],[1,2,["G3004"]],[2,5,["G848"]],[5,6,["G1401"]],[6,7,["G3588"]],[7,8,["G1062","(G3303)"]],[8,9,["G2076"]],[9,10,["G2092"]],[10,11,["G1161"]],[11,15,["G2564"]],[15,16,["G2258"]],[16,17,["G3756"]],[17,18,["G514"]]]},{"k":23881,"v":[[0,1,["G4198"]],[1,3,["G3767"]],[3,4,["G1909"]],[4,5,["G3588"]],[5,6,["G1327","G3598"]],[6,7,["G2532"]],[7,10,["G3745","G302"]],[10,13,["G2147"]],[13,14,["G2564"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G1062"]]]},{"k":23882,"v":[[0,1,["G2532"]],[1,2,["G1565"]],[2,3,["G1401"]],[3,5,["G1831"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G3598"]],[8,11,["G4863"]],[11,12,["G3956"]],[12,15,["G3745"]],[15,17,["G2147"]],[17,18,["G5037"]],[18,19,["G4190"]],[19,20,["G2532"]],[20,21,["G18"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G1062"]],[24,26,["G4130"]],[26,28,["G345"]]]},{"k":23883,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G935"]],[4,6,["G1525"]],[6,8,["G2300"]],[8,9,["G3588"]],[9,10,["G345"]],[10,12,["G1492"]],[12,13,["G1563"]],[13,15,["G444"]],[15,19,["G1746","G3756"]],[19,21,["G1062"]],[21,22,["G1742"]]]},{"k":23884,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G2083"]],[6,7,["G4459"]],[7,8,["G1525"]],[8,11,["G5602"]],[11,12,["G3361"]],[12,13,["G2192"]],[13,15,["G1062"]],[15,16,["G1742"]],[16,17,["G1161"]],[17,18,["G3588"]],[18,20,["G5392"]]]},{"k":23885,"v":[[0,1,["G5119"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,4,["G935"]],[4,6,["G3588"]],[6,7,["G1249"]],[7,8,["G1210"]],[8,9,["G846"]],[9,10,["G5495"]],[10,11,["G2532"]],[11,12,["G4228"]],[12,16,["G142","G846"]],[16,17,["G2532"]],[17,18,["G1544"]],[18,20,["G1519"]],[20,21,["G1857"]],[21,22,["G4655"]],[22,23,["G1563"]],[23,25,["G2071"]],[25,26,["G2805"]],[26,27,["G2532"]],[27,28,["G1030"]],[28,30,["G3599"]]]},{"k":23886,"v":[[0,1,["G1063"]],[1,2,["G4183"]],[2,3,["G1526"]],[3,4,["G2822"]],[4,5,["G1161"]],[5,6,["G3641"]],[6,8,["G1588"]]]},{"k":23887,"v":[[0,1,["G5119"]],[1,2,["G4198"]],[2,3,["G3588"]],[3,4,["G5330"]],[4,5,["G2532"]],[5,6,["G2983"]],[6,7,["G4824"]],[7,8,["G3704"]],[8,11,["G3802"]],[11,12,["G846"]],[12,13,["G1722"]],[13,15,["G3056"]]]},{"k":23888,"v":[[0,1,["G2532"]],[1,4,["G649"]],[4,6,["G846"]],[6,7,["G848"]],[7,8,["G3101"]],[8,9,["G3326"]],[9,10,["G3588"]],[10,11,["G2265"]],[11,12,["G3004"]],[12,13,["G1320"]],[13,15,["G1492"]],[15,16,["G3754"]],[16,18,["G1488"]],[18,19,["G227"]],[19,20,["G2532"]],[20,21,["G1321"]],[21,22,["G3588"]],[22,23,["G3598"]],[23,25,["G2316"]],[25,26,["G1722"]],[26,27,["G225"]],[27,28,["G2532","G3756"]],[28,29,["G3199"]],[29,30,["G4671"]],[30,31,["G4012"]],[31,32,["G3762"]],[32,34,["G1063"]],[34,36,["G991"]],[36,37,["G3756"]],[37,38,["(G1519)"]],[38,39,["G4383"]],[39,41,["G444"]]]},{"k":23889,"v":[[0,1,["G2036"]],[1,2,["G2254"]],[2,3,["G3767"]],[3,4,["G5101"]],[4,5,["G1380"]],[5,6,["G4671"]],[6,9,["G1832"]],[9,11,["G1325"]],[11,12,["G2778"]],[12,14,["G2541"]],[14,15,["G2228"]],[15,16,["G3756"]]]},{"k":23890,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G1097"]],[3,4,["G846"]],[4,5,["G4189"]],[5,7,["G2036"]],[7,8,["G5101"]],[8,9,["G3985"]],[9,11,["G3165"]],[11,13,["G5273"]]]},{"k":23891,"v":[[0,1,["G1925"]],[1,2,["G3427"]],[2,3,["G3588"]],[3,4,["G2778"]],[4,5,["G3546"]],[5,6,["G1161"]],[6,7,["G3588"]],[7,8,["G4374"]],[8,10,["G846"]],[10,12,["G1220"]]]},{"k":23892,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G5101"]],[6,8,["G3778"]],[8,9,["G1504"]],[9,10,["G2532"]],[10,11,["G1923"]]]},{"k":23893,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G2541"]],[5,6,["G5119"]],[6,7,["G3004"]],[7,10,["G846"]],[10,11,["G591"]],[11,12,["G3767"]],[12,14,["G2541"]],[14,16,["G3588"]],[16,19,["G2541"]],[19,20,["G2532"]],[20,22,["G2316"]],[22,24,["G3588"]],[24,27,["G2316"]]]},{"k":23894,"v":[[0,0,["(G2532)"]],[0,4,["G191"]],[4,8,["G2296"]],[8,9,["G2532"]],[9,10,["G863"]],[10,11,["G846"]],[11,15,["G565"]]]},{"k":23895,"v":[[0,2,["G1565"]],[2,3,["G2250"]],[3,4,["G4334"]],[4,6,["G846"]],[6,8,["G4523"]],[8,10,["G3004"]],[10,13,["G1511"]],[13,14,["G3361"]],[14,15,["G386"]],[15,16,["G2532"]],[16,17,["G1905"]],[17,18,["G846"]]]},{"k":23896,"v":[[0,1,["G3004"]],[1,2,["G1320"]],[2,3,["G3475"]],[3,4,["G2036"]],[4,5,["G1437"]],[5,7,["G5100"]],[7,8,["G599"]],[8,9,["G2192"]],[9,10,["G3361"]],[10,11,["G5043"]],[11,12,["G848"]],[12,13,["G80"]],[13,15,["G1918"]],[15,16,["G846"]],[16,17,["G1135"]],[17,18,["G2532"]],[18,20,["G450"]],[20,21,["G4690"]],[21,23,["G848"]],[23,24,["G80"]]]},{"k":23897,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G3844"]],[4,5,["G2254"]],[5,6,["G2033"]],[6,7,["G80"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G4413"]],[10,16,["G1060"]],[16,17,["G5053"]],[17,18,["G2532"]],[18,19,["G2192"]],[19,20,["G3361"]],[20,21,["G4690"]],[21,22,["G863"]],[22,23,["G848"]],[23,24,["G1135"]],[24,26,["G848"]],[26,27,["G80"]]]},{"k":23898,"v":[[0,1,["G3668"]],[1,2,["G3588"]],[2,3,["G1208"]],[3,4,["G2532"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G5154"]],[7,8,["G2193"]],[8,9,["G3588"]],[9,10,["G2033"]]]},{"k":23899,"v":[[0,1,["G1161"]],[1,2,["G5305"]],[2,4,["G3956"]],[4,5,["G3588"]],[5,6,["G1135"]],[6,7,["G599"]],[7,8,["G2532"]]]},{"k":23900,"v":[[0,1,["G3767"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G386"]],[4,5,["G5101"]],[5,6,["G1135"]],[6,9,["G2071"]],[9,11,["G3588"]],[11,12,["G2033"]],[12,13,["G1063"]],[13,15,["G3956"]],[15,16,["G2192"]],[16,17,["G846"]]]},{"k":23901,"v":[[0,0,["(G1161)"]],[0,1,["G2424"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G846"]],[6,9,["G4105"]],[9,10,["G3361"]],[10,11,["G1492"]],[11,12,["G3588"]],[12,13,["G1124"]],[13,14,["G3366"]],[14,15,["G3588"]],[15,16,["G1411"]],[16,18,["G2316"]]]},{"k":23902,"v":[[0,1,["G1063"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G386"]],[4,6,["G3777"]],[6,7,["G1060"]],[7,8,["G3777"]],[8,12,["G1547"]],[12,13,["G235"]],[13,14,["G1526"]],[14,15,["G5613"]],[15,17,["G32"]],[17,19,["G2316"]],[19,20,["G1722"]],[20,21,["G3772"]]]},{"k":23903,"v":[[0,1,["G1161"]],[1,3,["G4012"]],[3,4,["G3588"]],[4,5,["G386"]],[5,7,["G3588"]],[7,8,["G3498"]],[8,11,["G3756"]],[11,12,["G314"]],[12,16,["G4483"]],[16,18,["G5213"]],[18,19,["G5259"]],[19,20,["G2316"]],[20,21,["G3004"]]]},{"k":23904,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,3,["G3588"]],[3,4,["G2316"]],[4,6,["G11"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G2316"]],[9,11,["G2464"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G2316"]],[14,16,["G2384"]],[16,17,["G2316"]],[17,18,["G2076"]],[18,19,["G3756"]],[19,21,["G2316"]],[21,24,["G3498"]],[24,25,["G235"]],[25,28,["G2198"]]]},{"k":23905,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G3793"]],[4,5,["G191"]],[5,9,["G1605"]],[9,10,["G1909"]],[10,11,["G846"]],[11,12,["G1322"]]]},{"k":23906,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G5330"]],[4,6,["G191"]],[6,7,["G3754"]],[7,14,["G5392","G3588","G4523"]],[14,17,["G4863"]],[17,18,["G1909","G846"]]]},{"k":23907,"v":[[0,1,["G2532"]],[1,2,["G1520"]],[2,3,["G1537"]],[3,4,["G846"]],[4,8,["G3544"]],[8,9,["G1905"]],[9,13,["G3985"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G3004"]]]},{"k":23908,"v":[[0,1,["G1320"]],[1,2,["G4169"]],[2,5,["G3173"]],[5,6,["G1785"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G3551"]]]},{"k":23909,"v":[[0,0,["(G1161)"]],[0,1,["G2424"]],[1,2,["G2036"]],[2,4,["G846"]],[4,7,["G25"]],[7,9,["G2962"]],[9,10,["G4675"]],[10,11,["G2316"]],[11,12,["G1722"]],[12,13,["G3650"]],[13,14,["G4675"]],[14,15,["G2588"]],[15,16,["G2532"]],[16,17,["G1722"]],[17,18,["G3650"]],[18,19,["G4675"]],[19,20,["G5590"]],[20,21,["G2532"]],[21,22,["G1722"]],[22,23,["G3650"]],[23,24,["G4675"]],[24,25,["G1271"]]]},{"k":23910,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,4,["G4413"]],[4,5,["G2532"]],[5,6,["G3173"]],[6,7,["G1785"]]]},{"k":23911,"v":[[0,1,["G1161"]],[1,3,["G1208"]],[3,6,["G3664"]],[6,7,["G846"]],[7,10,["G25"]],[10,11,["G4675"]],[11,12,["G4139"]],[12,13,["G5613"]],[13,14,["G4572"]]]},{"k":23912,"v":[[0,1,["G1722"]],[1,2,["G5025"]],[2,3,["G1417"]],[3,4,["G1785"]],[4,5,["G2910"]],[5,6,["G3650"]],[6,7,["G3588"]],[7,8,["G3551"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G4396"]]]},{"k":23913,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,6,["G4863"]],[6,7,["G2424"]],[7,8,["G1905"]],[8,9,["G846"]]]},{"k":23914,"v":[[0,1,["G3004"]],[1,2,["G5101"]],[2,3,["G1380"]],[3,4,["G5213"]],[4,5,["G4012"]],[5,6,["G5547"]],[6,7,["G5101"]],[7,8,["G5207"]],[8,9,["G2076"]],[9,12,["G3004"]],[12,14,["G846"]],[14,18,["G1138"]]]},{"k":23915,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G4459"]],[5,6,["G3767"]],[6,8,["G1138"]],[8,9,["G1722"]],[9,10,["G4151"]],[10,11,["G2564"]],[11,12,["G846"]],[12,13,["G2962"]],[13,14,["G3004"]]]},{"k":23916,"v":[[0,1,["G3588"]],[1,2,["G2962"]],[2,3,["G2036"]],[3,5,["G3450"]],[5,6,["G2962"]],[6,7,["G2521"]],[7,9,["G1537"]],[9,10,["G3450"]],[10,12,["G1188"]],[12,13,["G2193"]],[13,15,["G5087"]],[15,16,["G4675"]],[16,17,["G2190"]],[17,18,["G4675"]],[18,19,["G5286","G4228"]]]},{"k":23917,"v":[[0,1,["G1487"]],[1,2,["G1138"]],[2,3,["G3767"]],[3,4,["G2564"]],[4,5,["G846"]],[5,6,["G2962"]],[6,7,["G4459"]],[7,8,["G2076"]],[8,10,["G846"]],[10,11,["G5207"]]]},{"k":23918,"v":[[0,1,["G2532"]],[1,3,["G3762"]],[3,5,["G1410"]],[5,7,["G611"]],[7,8,["G846"]],[8,10,["G3056"]],[10,11,["G3761"]],[11,12,["G5111"]],[12,13,["G5100"]],[13,15,["G575"]],[15,16,["G1565"]],[16,17,["G2250"]],[17,19,["G1905"]],[19,20,["G846"]],[20,22,["G3765"]],[22,23,[]]]},{"k":23919,"v":[[0,1,["G5119"]],[1,2,["G2980"]],[2,3,["G2424"]],[3,5,["G3588"]],[5,6,["G3793"]],[6,7,["G2532"]],[7,9,["G848"]],[9,10,["G3101"]]]},{"k":23920,"v":[[0,1,["G3004"]],[1,2,["G3588"]],[2,3,["G1122"]],[3,4,["G2532"]],[4,5,["G3588"]],[5,6,["G5330"]],[6,7,["G2523"]],[7,8,["G1909"]],[8,9,["G3475"]],[9,10,["G2515"]]]},{"k":23921,"v":[[0,1,["G3956"]],[1,2,["G3767"]],[2,3,["G3745","G302"]],[3,5,["G2036"]],[5,6,["G5213"]],[6,7,["G5083"]],[7,9,["G5083"]],[9,10,["G2532"]],[10,11,["G4160"]],[11,12,["G1161"]],[12,13,["G4160"]],[13,14,["G3361"]],[14,16,["G2596"]],[16,17,["G846"]],[17,18,["G2041"]],[18,19,["G1063"]],[19,21,["G3004"]],[21,22,["G2532"]],[22,23,["G4160"]],[23,24,["G3756"]]]},{"k":23922,"v":[[0,1,["G1063"]],[1,3,["G1195"]],[3,4,["G926"]],[4,5,["G5413"]],[5,6,["G2532"]],[6,10,["G1419"]],[10,11,["G2532"]],[11,12,["G2007"]],[12,14,["G1909"]],[14,15,["G444"]],[15,16,["G5606"]],[16,17,["G1161"]],[17,20,["G2309"]],[20,21,["G3756"]],[21,22,["G2795"]],[22,23,["G846"]],[23,27,["G848"]],[27,28,["G1147"]]]},{"k":23923,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,3,["G848"]],[3,4,["G2041"]],[4,6,["G4160"]],[6,10,["G2300"]],[10,12,["G444"]],[12,13,["(G1161)"]],[13,15,["G4115"]],[15,16,["G848"]],[16,17,["G5440"]],[17,18,["G2532"]],[18,19,["G3170"]],[19,20,["G3588"]],[20,21,["G2899"]],[21,23,["G848"]],[23,24,["G2440"]]]},{"k":23924,"v":[[0,1,["G5037"]],[1,2,["G5368"]],[2,3,["G3588"]],[3,5,["G4411"]],[5,6,["G1722"]],[6,7,["G1173"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,11,["G4410"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G4864"]]]},{"k":23925,"v":[[0,1,["G2532"]],[1,2,["G783"]],[2,3,["G1722"]],[3,4,["G3588"]],[4,5,["G58"]],[5,6,["G2532"]],[6,9,["G2564"]],[9,10,["G5259"]],[10,11,["G444"]],[11,12,["G4461"]],[12,13,["G4461"]]]},{"k":23926,"v":[[0,1,["G1161"]],[1,3,["G3361"]],[3,4,["G5210"]],[4,5,["G2564"]],[5,6,["G4461"]],[6,7,["G1063"]],[7,8,["G1520"]],[8,9,["G2076"]],[9,10,["G5216"]],[10,11,["G2519"]],[11,13,["G5547"]],[13,14,["G1161"]],[14,15,["G3956"]],[15,16,["G5210"]],[16,17,["G2075"]],[17,18,["G80"]]]},{"k":23927,"v":[[0,1,["G2532"]],[1,2,["G2564"]],[2,3,["G3361"]],[3,5,["G5216"]],[5,6,["G3962"]],[6,7,["G1909"]],[7,8,["G3588"]],[8,9,["G1093"]],[9,10,["G1063"]],[10,11,["G1520"]],[11,12,["G2076"]],[12,13,["G5216"]],[13,14,["G3962"]],[14,15,["G3588"]],[15,17,["G1722"]],[17,18,["G3772"]]]},{"k":23928,"v":[[0,1,["G3366"]],[1,4,["G2564"]],[4,5,["G2519"]],[5,6,["G1063"]],[6,7,["G1520"]],[7,8,["G2076"]],[8,9,["G5216"]],[9,10,["G2519"]],[10,12,["G5547"]]]},{"k":23929,"v":[[0,1,["G1161"]],[1,5,["G3187"]],[5,7,["G5216"]],[7,9,["G2071"]],[9,10,["G5216"]],[10,11,["G1249"]]]},{"k":23930,"v":[[0,1,["G1161"]],[1,2,["G3748"]],[2,4,["G5312"]],[4,5,["G1438"]],[5,8,["G5013"]],[8,9,["G2532"]],[9,10,["G3748"]],[10,13,["G5013"]],[13,14,["G1438"]],[14,17,["G5312"]]]},{"k":23931,"v":[[0,1,["G1161"]],[1,2,["G3759"]],[2,4,["G5213"]],[4,5,["G1122"]],[5,6,["G2532"]],[6,7,["G5330"]],[7,8,["G5273"]],[8,9,["G3754"]],[9,12,["G2808"]],[12,13,["G3588"]],[13,14,["G932"]],[14,16,["G3772"]],[16,17,["G1715"]],[17,18,["G444"]],[18,19,["G1063"]],[19,20,["G5210"]],[20,21,["G3756"]],[21,23,["G1525"]],[23,25,["G3761"]],[25,26,["G863"]],[26,31,["G1525"]],[31,34,["G1525"]]]},{"k":23932,"v":[[0,0,["(G1161)"]],[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G1122"]],[4,5,["G2532"]],[5,6,["G5330"]],[6,7,["G5273"]],[7,8,["G3754"]],[8,10,["G2719"]],[10,11,["G5503"]],[11,12,["G3614"]],[12,13,["G2532"]],[13,16,["G4392"]],[16,19,["G4336","G3117"]],[19,20,["G1223","G5124"]],[20,23,["G2983"]],[23,25,["G4056"]],[25,26,["G2917"]]]},{"k":23933,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G1122"]],[4,5,["G2532"]],[5,6,["G5330"]],[6,7,["G5273"]],[7,8,["G3754"]],[8,10,["G4013"]],[10,11,["G2281"]],[11,12,["G2532"]],[12,13,["G3584"]],[13,15,["G4160"]],[15,16,["G1520"]],[16,17,["G4339"]],[17,18,["G2532"]],[18,19,["G3752"]],[19,22,["G1096"]],[22,24,["G4160"]],[24,25,["G846"]],[25,27,["G1362"]],[27,29,["G5207"]],[29,31,["G1067"]],[31,33,["G5216"]]]},{"k":23934,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,5,["G5185"]],[5,6,["G3595"]],[6,8,["G3004"]],[8,9,["G3739","G302"]],[9,11,["G3660"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G3485"]],[14,16,["G2076"]],[16,17,["G3762"]],[17,18,["G1161"]],[18,19,["G3739","G302"]],[19,21,["G3660"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G5557"]],[24,26,["G3588"]],[26,27,["G3485"]],[27,31,["G3784"]]]},{"k":23935,"v":[[0,2,["G3474"]],[2,3,["G2532"]],[3,4,["G5185"]],[4,5,["G1063"]],[5,6,["G5101"]],[6,7,["G2076"]],[7,8,["G3187"]],[8,9,["G3588"]],[9,10,["G5557"]],[10,11,["G2228"]],[11,12,["G3588"]],[12,13,["G3485"]],[13,15,["G37"]],[15,16,["G3588"]],[16,17,["G5557"]]]},{"k":23936,"v":[[0,1,["G2532"]],[1,2,["G3739","G1437"]],[2,4,["G3660"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G2379"]],[7,9,["G2076"]],[9,10,["G3762"]],[10,11,["G1161"]],[11,12,["G3739","G302"]],[12,13,["G3660"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G1435"]],[16,17,["G3588"]],[17,19,["G1883"]],[19,20,["G846"]],[20,23,["G3784"]]]},{"k":23937,"v":[[0,2,["G3474"]],[2,3,["G2532"]],[3,4,["G5185"]],[4,5,["G1063"]],[5,6,["G5101"]],[6,8,["G3187"]],[8,9,["G3588"]],[9,10,["G1435"]],[10,11,["G2228"]],[11,12,["G3588"]],[12,13,["G2379"]],[13,15,["G37"]],[15,16,["G3588"]],[16,17,["G1435"]]]},{"k":23938,"v":[[0,4,["G3660","G3767"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G2379"]],[7,8,["G3660"]],[8,9,["G1722"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G1722"]],[12,14,["G3956"]],[14,15,["G1883","G846"]]]},{"k":23939,"v":[[0,4,["G3660"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G3485"]],[7,8,["G3660"]],[8,9,["G1722"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G1722"]],[12,16,["G2730","G846"]]]},{"k":23940,"v":[[0,1,["G2532"]],[1,5,["G3660"]],[5,6,["G1722"]],[6,7,["G3772"]],[7,8,["G3660"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2362"]],[11,13,["G2316"]],[13,14,["G2532"]],[14,15,["G1722"]],[15,18,["G2521"]],[18,19,["G1883","G846"]]]},{"k":23941,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G1122"]],[4,5,["G2532"]],[5,6,["G5330"]],[6,7,["G5273"]],[7,8,["G1063"]],[8,11,["G586"]],[11,13,["G2238"]],[13,14,["G2532"]],[14,15,["G432"]],[15,16,["G2532"]],[16,17,["G2951"]],[17,18,["G2532"]],[18,20,["G863"]],[20,21,["G3588"]],[21,22,["G926"]],[22,25,["G3588"]],[25,26,["G3551"]],[26,27,["G2920","(G2532)"]],[27,28,["G1656"]],[28,29,["G2532"]],[29,30,["G4102"]],[30,31,["G5023"]],[31,32,["G1163"]],[32,36,["G4160"]],[36,38,["G3361"]],[38,40,["G863"]],[40,42,["G2548"]],[42,43,["G863"]]]},{"k":23942,"v":[[0,2,["G5185"]],[2,3,["G3595"]],[3,5,["G1368"]],[5,8,["G2971"]],[8,9,["G1161"]],[9,10,["G2666"]],[10,12,["G2574"]]]},{"k":23943,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G1122"]],[4,5,["G2532"]],[5,6,["G5330"]],[6,7,["G5273"]],[7,8,["G3754"]],[8,11,["G2511"]],[11,12,["G3588"]],[12,13,["G1855"]],[13,15,["G3588"]],[15,16,["G4221"]],[16,17,["G2532"]],[17,19,["G3588"]],[19,20,["G3953"]],[20,21,["G1161"]],[21,22,["G2081"]],[22,25,["G1073"]],[25,26,["G1537"]],[26,27,["G724"]],[27,28,["G2532"]],[28,29,["G192"]]]},{"k":23944,"v":[[0,2,["G5185"]],[2,3,["G5330"]],[3,4,["G2511"]],[4,5,["G4412"]],[5,6,["G3588"]],[6,9,["G1787"]],[9,10,["G3588"]],[10,11,["G4221"]],[11,12,["G2532"]],[12,13,["G3953"]],[13,14,["G2443"]],[14,15,["G3588"]],[15,16,["G1622"]],[16,18,["G846"]],[18,20,["G1096"]],[20,21,["G2513"]],[21,22,["G2532"]]]},{"k":23945,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G1122"]],[4,5,["G2532"]],[5,6,["G5330"]],[6,7,["G5273"]],[7,8,["G3754"]],[8,12,["G3945"]],[12,13,["G2867"]],[13,14,["G5028"]],[14,15,["G3748"]],[15,16,["G3303"]],[16,17,["G5316"]],[17,18,["G5611"]],[18,19,["G1855"]],[19,20,["G1161"]],[20,23,["G1073","G2081"]],[23,25,["G3498"]],[25,27,["G3747"]],[27,28,["G2532"]],[28,30,["G3956"]],[30,31,["G167"]]]},{"k":23946,"v":[[0,2,["G3779"]],[2,3,["G5210"]],[3,4,["G2532"]],[4,5,["G1855","(G3303)"]],[5,6,["G5316"]],[6,7,["G1342"]],[7,9,["G444"]],[9,10,["G1161"]],[10,11,["G2081"]],[11,13,["G2075"]],[13,14,["G3324"]],[14,16,["G5272"]],[16,17,["G2532"]],[17,18,["G458"]]]},{"k":23947,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G1122"]],[4,5,["G2532"]],[5,6,["G5330"]],[6,7,["G5273"]],[7,8,["G3754"]],[8,10,["G3618"]],[10,11,["G3588"]],[11,12,["G5028"]],[12,14,["G3588"]],[14,15,["G4396"]],[15,16,["G2532"]],[16,17,["G2885"]],[17,18,["G3588"]],[18,19,["G3419"]],[19,21,["G3588"]],[21,22,["G1342"]]]},{"k":23948,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,3,["G1487"]],[3,6,["G2258"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G2250"]],[9,11,["G2257"]],[11,12,["G3962"]],[12,15,["G3756"]],[15,17,["G2258","G302"]],[17,18,["G2844"]],[18,20,["G846"]],[20,21,["G1722"]],[21,22,["G3588"]],[22,23,["G129"]],[23,25,["G3588"]],[25,26,["G4396"]]]},{"k":23949,"v":[[0,1,["G5620"]],[1,4,["G3140"]],[4,6,["G1438"]],[6,7,["G3754"]],[7,9,["G2075"]],[9,11,["G5207"]],[11,15,["G5407"]],[15,16,["G3588"]],[16,17,["G4396"]]]},{"k":23950,"v":[[0,3,["G4137","G5210"]],[3,4,["G2532"]],[4,5,["G3588"]],[5,6,["G3358"]],[6,8,["G5216"]],[8,9,["G3962"]]]},{"k":23951,"v":[[0,2,["G3789"]],[2,4,["G1081"]],[4,6,["G2191"]],[6,7,["G4459"]],[7,10,["G5343","(G575)"]],[10,11,["G3588"]],[11,12,["G2920"]],[12,14,["G1067"]]]},{"k":23952,"v":[[0,1,["G1223","G5124"]],[1,2,["G2400"]],[2,3,["G1473"]],[3,4,["G649"]],[4,5,["G4314"]],[5,6,["G5209"]],[6,7,["G4396"]],[7,8,["G2532"]],[8,10,["G4680"]],[10,11,["G2532"]],[11,12,["G1122"]],[12,13,["G2532"]],[13,15,["G1537"]],[15,16,["G846"]],[16,19,["G615"]],[19,20,["G2532"]],[20,21,["G4717"]],[21,22,["G2532"]],[22,24,["G1537"]],[24,25,["G846"]],[25,28,["G3146"]],[28,29,["G1722"]],[29,30,["G5216"]],[30,31,["G4864"]],[31,32,["G2532"]],[32,33,["G1377"]],[33,35,["G575"]],[35,36,["G4172"]],[36,37,["G1519"]],[37,38,["G4172"]]]},{"k":23953,"v":[[0,1,["G3704"]],[1,2,["G1909"]],[2,3,["G5209"]],[3,5,["G2064"]],[5,6,["G3956"]],[6,8,["G1342"]],[8,9,["G129"]],[9,10,["G1632"]],[10,11,["G1909"]],[11,12,["G3588"]],[12,13,["G1093"]],[13,14,["G575"]],[14,15,["G3588"]],[15,16,["G129"]],[16,18,["G1342"]],[18,19,["G6"]],[19,20,["G2193"]],[20,21,["G3588"]],[21,22,["G129"]],[22,24,["G2197"]],[24,25,["G5207"]],[25,27,["G914"]],[27,28,["G3739"]],[28,30,["G5407"]],[30,31,["G3342"]],[31,32,["G3588"]],[32,33,["G3485"]],[33,34,["G2532"]],[34,35,["G3588"]],[35,36,["G2379"]]]},{"k":23954,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3956"]],[6,8,["G5023"]],[8,10,["G2240"]],[10,11,["G1909"]],[11,12,["G5026"]],[12,13,["G1074"]]]},{"k":23955,"v":[[0,2,["G2419"]],[2,3,["G2419"]],[3,6,["G615"]],[6,7,["G3588"]],[7,8,["G4396"]],[8,9,["G2532"]],[9,10,["G3036"]],[10,14,["G649"]],[14,15,["G4314"]],[15,16,["G846"]],[16,18,["G4212"]],[18,19,["G2309"]],[19,25,["G1996","G4675","G5043"]],[25,27,["G3739","G5158"]],[27,29,["G3733"]],[29,30,["G1996"]],[30,31,["G1438"]],[31,32,["G3556"]],[32,33,["G5259"]],[33,35,["G4420"]],[35,36,["G2532"]],[36,38,["G2309"]],[38,39,["G3756"]]]},{"k":23956,"v":[[0,1,["G2400"]],[1,2,["G5216"]],[2,3,["G3624"]],[3,5,["G863"]],[5,7,["G5213"]],[7,8,["G2048"]]]},{"k":23957,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,8,["G3364"]],[8,9,["G1492"]],[9,10,["G3165"]],[10,11,["G575","G737"]],[11,12,["G2193","G302"]],[12,15,["G2036"]],[15,16,["G2127"]],[16,20,["G2064"]],[20,21,["G1722"]],[21,23,["G3686"]],[23,26,["G2962"]]]},{"k":23958,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,4,["G1831"]],[4,6,["G4198"]],[6,7,["G575"]],[7,8,["G3588"]],[8,9,["G2411"]],[9,10,["G2532"]],[10,11,["G846"]],[11,12,["G3101"]],[12,13,["G4334"]],[13,18,["G1925"]],[18,19,["G846"]],[19,20,["G3588"]],[20,21,["G3619"]],[21,23,["G3588"]],[23,24,["G2411"]]]},{"k":23959,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G991"]],[6,8,["G3756"]],[8,9,["G3956"]],[9,11,["G5023"]],[11,12,["G281"]],[12,14,["G3004"]],[14,16,["G5213"]],[16,19,["G3364"]],[19,21,["G863"]],[21,22,["G5602"]],[22,26,["G3037","G1909","G3037"]],[26,27,["G3739"]],[27,29,["G3364"]],[29,32,["G2647"]]]},{"k":23960,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G2521"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G3735"]],[7,9,["G1636"]],[9,10,["G3588"]],[10,11,["G3101"]],[11,12,["G4334"]],[12,14,["G846"]],[14,15,["G2596","G2398"]],[15,16,["G3004"]],[16,17,["G2036"]],[17,18,["G2254"]],[18,19,["G4219"]],[19,22,["G5023"]],[22,23,["G2071"]],[23,24,["G2532"]],[24,25,["G5101"]],[25,28,["G3588"]],[28,29,["G4592"]],[29,31,["G4674"]],[31,32,["G3952"]],[32,33,["G2532"]],[33,35,["G3588"]],[35,36,["G4930"]],[36,38,["G3588"]],[38,39,["G165"]]]},{"k":23961,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,9,["G991"]],[9,11,["G3361"]],[11,12,["G5100"]],[12,13,["G4105"]],[13,14,["G5209"]]]},{"k":23962,"v":[[0,1,["G1063"]],[1,2,["G4183"]],[2,4,["G2064"]],[4,5,["G1909"]],[5,6,["G3450"]],[6,7,["G3686"]],[7,8,["G3004"]],[8,9,["G1473"]],[9,10,["G1510"]],[10,11,["G5547"]],[11,12,["G2532"]],[12,14,["G4105"]],[14,15,["G4183"]]]},{"k":23963,"v":[[0,1,["G1161"]],[1,3,["G3195"]],[3,4,["G191"]],[4,6,["G4171"]],[6,7,["G2532"]],[7,8,["G189"]],[8,10,["G4171"]],[10,11,["G3708"]],[11,15,["G3361"]],[15,16,["G2360"]],[16,17,["G1063"]],[17,18,["G3956"]],[18,21,["G1163"]],[21,24,["G1096"]],[24,25,["G235"]],[25,26,["G3588"]],[26,27,["G5056"]],[27,28,["G2076"]],[28,30,["G3768"]]]},{"k":23964,"v":[[0,1,["G1063"]],[1,2,["G1484"]],[2,4,["G1453"]],[4,5,["G1909"]],[5,6,["G1484"]],[6,7,["G2532"]],[7,8,["G932"]],[8,9,["G1909"]],[9,10,["G932"]],[10,11,["G2532"]],[11,14,["G2071"]],[14,15,["G3042"]],[15,16,["G2532"]],[16,17,["G3061"]],[17,18,["G2532"]],[18,19,["G4578"]],[19,20,["G2596"]],[20,22,["G5117"]]]},{"k":23965,"v":[[0,0,["(G1161)"]],[0,1,["G3956"]],[1,2,["G5023"]],[2,5,["G746"]],[5,7,["G5604"]]]},{"k":23966,"v":[[0,1,["G5119"]],[1,6,["G3860","G5209"]],[6,9,["G1519","G2347"]],[9,10,["G2532"]],[10,12,["G615"]],[12,13,["G5209"]],[13,14,["G2532"]],[14,17,["G2071"]],[17,18,["G3404"]],[18,19,["G5259"]],[19,20,["G3956"]],[20,21,["G1484"]],[21,25,["G1223","G3450","G3686"]]]},{"k":23967,"v":[[0,1,["G2532"]],[1,2,["G5119"]],[2,4,["G4183"]],[4,6,["G4624"]],[6,7,["G2532"]],[7,9,["G3860"]],[9,11,["G240"]],[11,12,["G2532"]],[12,14,["G3404"]],[14,16,["G240"]]]},{"k":23968,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,4,["G5578"]],[4,6,["G1453"]],[6,7,["G2532"]],[7,9,["G4105"]],[9,10,["G4183"]]]},{"k":23969,"v":[[0,1,["G2532"]],[1,3,["G458"]],[3,5,["G4129"]],[5,6,["G3588"]],[6,7,["G26"]],[7,9,["G4183"]],[9,12,["G5594"]]]},{"k":23970,"v":[[0,1,["G1161"]],[1,5,["G5278"]],[5,6,["G1519"]],[6,8,["G5056"]],[8,10,["G3778"]],[10,13,["G4982"]]]},{"k":23971,"v":[[0,1,["G2532"]],[1,2,["G5124"]],[2,3,["G2098"]],[3,5,["G3588"]],[5,6,["G932"]],[6,9,["G2784"]],[9,10,["G1722"]],[10,11,["G3650"]],[11,12,["G3588"]],[12,13,["G3625"]],[13,14,["G1519"]],[14,16,["G3142"]],[16,18,["G3956"]],[18,19,["G1484"]],[19,20,["G2532"]],[20,21,["G5119"]],[21,23,["G3588"]],[23,24,["G5056"]],[24,25,["G2240"]]]},{"k":23972,"v":[[0,1,["G3752"]],[1,3,["G3767"]],[3,5,["G1492"]],[5,6,["G3588"]],[6,7,["G946"]],[7,9,["G2050"]],[9,10,["G4483"]],[10,12,["G1223"]],[12,13,["G1158"]],[13,14,["G3588"]],[14,15,["G4396"]],[15,16,["G2476"]],[16,17,["G1722"]],[17,19,["G40"]],[19,20,["G5117"]],[20,22,["G314"]],[22,25,["G3539"]]]},{"k":23973,"v":[[0,1,["G5119"]],[1,3,["G3588"]],[3,6,["G1722"]],[6,7,["G2449"]],[7,8,["G5343"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G3735"]]]},{"k":23974,"v":[[0,2,["G3588"]],[2,5,["G1909"]],[5,6,["G3588"]],[6,7,["G1430"]],[7,8,["G3361"]],[8,10,["G2597"]],[10,12,["G142"]],[12,14,["G5100"]],[14,16,["G1537"]],[16,17,["G848"]],[17,18,["G3614"]]]},{"k":23975,"v":[[0,0,["(G2532)"]],[0,1,["G3361"]],[1,3,["G3588"]],[3,6,["G1722"]],[6,7,["G3588"]],[7,8,["G68"]],[8,9,["G1994"]],[9,10,["G3694"]],[10,12,["G142"]],[12,13,["G848"]],[13,14,["G2440"]]]},{"k":23976,"v":[[0,1,["G1161"]],[1,2,["G3759"]],[2,8,["G2192","G1722","G1064"]],[8,9,["G2532"]],[9,14,["G2337"]],[14,15,["G1722"]],[15,16,["G1565"]],[16,17,["G2250"]]]},{"k":23977,"v":[[0,1,["G1161"]],[1,2,["G4336"]],[2,4,["G2443"]],[4,5,["G5216"]],[5,6,["G5437"]],[6,7,["G1096"]],[7,8,["G3361"]],[8,11,["G5494"]],[11,12,["G3366"]],[12,13,["G1722"]],[13,16,["G4521"]]]},{"k":23978,"v":[[0,1,["G1063"]],[1,2,["G5119"]],[2,4,["G2071"]],[4,5,["G3173"]],[5,6,["G2347"]],[6,8,["G3634"]],[8,9,["G1096"]],[9,10,["G3756"]],[10,11,["G575"]],[11,13,["G746"]],[13,16,["G2889"]],[16,17,["G2193"]],[17,19,["G3568"]],[19,20,["G3761"]],[20,22,["G3364"]],[22,24,["G1096"]]]},{"k":23979,"v":[[0,1,["G2532"]],[1,2,["G1508"]],[2,3,["G1565"]],[3,4,["G2250"]],[4,7,["G2856"]],[7,10,["G3756"]],[10,11,["G4561"]],[11,13,["G4982","G302"]],[13,14,["G1161"]],[14,18,["G1223","G3588","G1588"]],[18,19,["G1565"]],[19,20,["G2250"]],[20,23,["G2856"]]]},{"k":23980,"v":[[0,1,["G5119"]],[1,2,["G1437"]],[2,4,["G5100"]],[4,6,["G2036"]],[6,8,["G5213"]],[8,9,["G2400"]],[9,10,["G5602"]],[10,12,["G5547"]],[12,13,["G2228"]],[13,14,["G5602"]],[14,15,["G4100"]],[15,17,["G3361"]]]},{"k":23981,"v":[[0,1,["G1063"]],[1,4,["G1453"]],[4,6,["G5580"]],[6,7,["G2532"]],[7,9,["G5578"]],[9,10,["G2532"]],[10,12,["G1325"]],[12,13,["G3173"]],[13,14,["G4592"]],[14,15,["G2532"]],[15,16,["G5059"]],[16,18,["G5620"]],[18,19,["G1487"]],[19,22,["G1415"]],[22,25,["G4105"]],[25,26,["G3588"]],[26,27,["G2532"]],[27,28,["G1588"]]]},{"k":23982,"v":[[0,1,["G2400"]],[1,6,["G4280","G5213"]]]},{"k":23983,"v":[[0,1,["G3767"]],[1,2,["G1437"]],[2,5,["G2036"]],[5,7,["G5213"]],[7,8,["G2400"]],[8,10,["G2076"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G2048"]],[13,16,["G1831","G3361"]],[16,17,["G2400"]],[17,20,["G1722"]],[20,21,["G3588"]],[21,23,["G5009"]],[23,24,["G4100"]],[24,26,["G3361"]]]},{"k":23984,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G3588"]],[3,4,["G796"]],[4,5,["G1831"]],[5,7,["G575"]],[7,9,["G395"]],[9,10,["G2532"]],[10,11,["G5316"]],[11,13,["G2193"]],[13,15,["G1424"]],[15,16,["G3779"]],[16,18,["G2532"]],[18,19,["G3588"]],[19,20,["G3952"]],[20,22,["G3588"]],[22,23,["G5207"]],[23,25,["G444"]],[25,26,["G2071"]]]},{"k":23985,"v":[[0,1,["G1063"]],[1,2,["G3699","G1437"]],[2,3,["G3588"]],[3,4,["G4430"]],[4,5,["G5600"]],[5,6,["G1563"]],[6,8,["G3588"]],[8,9,["G105"]],[9,12,["G4863"]]]},{"k":23986,"v":[[0,1,["G2112"]],[1,2,["G3326"]],[2,3,["G3588"]],[3,4,["G2347"]],[4,6,["G1565"]],[6,7,["G2250"]],[7,9,["G3588"]],[9,10,["G2246"]],[10,12,["G4654"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G4582"]],[15,17,["G3756"]],[17,18,["G1325"]],[18,19,["G848"]],[19,20,["G5338"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G792"]],[23,25,["G4098"]],[25,26,["G575"]],[26,27,["G3772"]],[27,28,["G2532"]],[28,29,["G3588"]],[29,30,["G1411"]],[30,32,["G3588"]],[32,33,["G3772"]],[33,36,["G4531"]]]},{"k":23987,"v":[[0,1,["G2532"]],[1,2,["G5119"]],[2,4,["G5316"]],[4,5,["G3588"]],[5,6,["G4592"]],[6,8,["G3588"]],[8,9,["G5207"]],[9,11,["G444"]],[11,12,["G1722"]],[12,13,["G3772"]],[13,14,["G2532"]],[14,15,["G5119"]],[15,17,["G3956"]],[17,18,["G3588"]],[18,19,["G5443"]],[19,21,["G3588"]],[21,22,["G1093"]],[22,23,["G2875"]],[23,24,["G2532"]],[24,27,["G3700"]],[27,28,["G3588"]],[28,29,["G5207"]],[29,31,["G444"]],[31,32,["G2064"]],[32,33,["G1909"]],[33,34,["G3588"]],[34,35,["G3507"]],[35,37,["G3772"]],[37,38,["G3326"]],[38,39,["G1411"]],[39,40,["G2532"]],[40,41,["G4183"]],[41,42,["G1391"]]]},{"k":23988,"v":[[0,1,["G2532"]],[1,4,["G649"]],[4,5,["G846"]],[5,6,["G32"]],[6,7,["G3326"]],[7,9,["G3173"]],[9,10,["G5456"]],[10,13,["G4536"]],[13,14,["G2532"]],[14,18,["G1996"]],[18,19,["G848"]],[19,20,["G1588"]],[20,21,["G1537"]],[21,22,["G3588"]],[22,23,["G5064"]],[23,24,["G417"]],[24,25,["G575"]],[25,27,["G206"]],[27,29,["G3772"]],[29,30,["G2193"]],[30,32,["G206"]]]},{"k":23989,"v":[[0,1,["G1161"]],[1,2,["G3129"]],[2,4,["G3850"]],[4,5,["G575"]],[5,6,["G3588"]],[6,8,["G4808"]],[8,9,["G3752"]],[9,10,["G846"]],[10,11,["G2798"]],[11,12,["G1096"]],[12,13,["G2235"]],[13,14,["G527"]],[14,15,["G2532"]],[15,17,["G1631"]],[17,18,["G5444"]],[18,20,["G1097"]],[20,21,["G3754"]],[21,22,["G2330"]],[22,24,["G1451"]]]},{"k":23990,"v":[[0,1,["G3779"]],[1,2,["G2532"]],[2,3,["G5210"]],[3,4,["G3752"]],[4,7,["G1492"]],[7,8,["G3956"]],[8,10,["G5023"]],[10,11,["G1097"]],[11,12,["G3754"]],[12,14,["G2076"]],[14,15,["G1451"]],[15,17,["G1909"]],[17,19,["G2374"]]]},{"k":23991,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3778"]],[6,7,["G1074"]],[7,9,["G3364"]],[9,10,["G3928"]],[10,11,["G2193","G302"]],[11,12,["G3956"]],[12,14,["G5023"]],[14,16,["G1096"]]]},{"k":23992,"v":[[0,1,["G3772"]],[1,2,["G2532"]],[2,3,["G1093"]],[3,6,["G3928"]],[6,7,["G1161"]],[7,8,["G3450"]],[8,9,["G3056"]],[9,11,["G3364"]],[11,13,["G3928"]]]},{"k":23993,"v":[[0,1,["G1161"]],[1,2,["G4012"]],[2,3,["G1565"]],[3,4,["G2250"]],[4,5,["G2532"]],[5,6,["G5610"]],[6,7,["G1492"]],[7,8,["G3762"]],[8,11,["G3761"]],[11,12,["G3588"]],[12,13,["G32"]],[13,15,["G3772"]],[15,16,["G1508"]],[16,17,["G3450"]],[17,18,["G3962"]],[18,19,["G3441"]]]},{"k":23994,"v":[[0,1,["G1161"]],[1,2,["G5618"]],[2,3,["G3588"]],[3,4,["G2250"]],[4,6,["G3575"]],[6,8,["G3779"]],[8,10,["G2532"]],[10,11,["G3588"]],[11,12,["G3952"]],[12,14,["G3588"]],[14,15,["G5207"]],[15,17,["G444"]],[17,18,["G2071"]]]},{"k":23995,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G1722"]],[3,4,["G3588"]],[4,5,["G2250"]],[5,6,["G3588"]],[6,8,["G4253"]],[8,9,["G3588"]],[9,10,["G2627"]],[10,12,["G2258"]],[12,13,["G5176"]],[13,14,["G2532"]],[14,15,["G4095"]],[15,16,["G1060"]],[16,17,["G2532"]],[17,20,["G1547"]],[20,21,["G891"]],[21,23,["G2250"]],[23,24,["G3739"]],[24,25,["G3575"]],[25,26,["G1525"]],[26,27,["G1519"]],[27,28,["G3588"]],[28,29,["G2787"]]]},{"k":23996,"v":[[0,1,["G2532"]],[1,2,["G1097"]],[2,3,["G3756"]],[3,4,["G2193"]],[4,5,["G3588"]],[5,6,["G2627"]],[6,7,["G2064"]],[7,8,["G2532"]],[8,12,["G142","G537"]],[12,13,["G3779"]],[13,15,["G2532"]],[15,16,["G3588"]],[16,17,["G3952"]],[17,19,["G3588"]],[19,20,["G5207"]],[20,22,["G444"]],[22,23,["G2071"]]]},{"k":23997,"v":[[0,1,["G5119"]],[1,3,["G1417"]],[3,4,["G2071"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G68"]],[7,8,["G3588"]],[8,9,["G1520"]],[9,12,["G3880"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G1520"]],[15,16,["G863"]]]},{"k":23998,"v":[[0,1,["G1417"]],[1,5,["G229"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G3459"]],[8,10,["G3391"]],[10,13,["G3880"]],[13,14,["G2532"]],[14,16,["G3391"]],[16,17,["G863"]]]},{"k":23999,"v":[[0,1,["G1127"]],[1,2,["G3767"]],[2,3,["G3754"]],[3,5,["G1492"]],[5,6,["G3756"]],[6,7,["G4169"]],[7,8,["G5610"]],[8,9,["G5216"]],[9,10,["G2962"]],[10,12,["G2064"]]]},{"k":24000,"v":[[0,1,["G1161"]],[1,2,["G1097"]],[2,3,["G1565"]],[3,4,["G3754"]],[4,5,["G1487"]],[5,6,["G3588"]],[6,10,["G3617"]],[10,12,["G1492"]],[12,14,["G4169"]],[14,15,["G5438"]],[15,16,["G3588"]],[16,17,["G2812"]],[17,19,["G2064"]],[19,23,["G1127","G302"]],[23,24,["G2532"]],[24,26,["G3756"]],[26,28,["G1439","G302"]],[28,29,["G848"]],[29,30,["G3614"]],[30,34,["G1358"]]]},{"k":24001,"v":[[0,1,["G1223","G5124"]],[1,2,["G1096"]],[2,3,["G5210"]],[3,4,["G2532"]],[4,5,["G2092"]],[5,6,["G3754"]],[6,8,["G3739"]],[8,10,["G5610"]],[10,13,["G1380"]],[13,14,["G3756"]],[14,15,["G3588"]],[15,16,["G5207"]],[16,18,["G444"]],[18,19,["G2064"]]]},{"k":24002,"v":[[0,1,["G5101"]],[1,2,["G686"]],[2,3,["G2076"]],[3,5,["G4103"]],[5,6,["G2532"]],[6,7,["G5429"]],[7,8,["G1401"]],[8,9,["G3739"]],[9,10,["G846"]],[10,11,["G2962"]],[11,14,["G2525"]],[14,15,["G1909"]],[15,16,["G848"]],[16,17,["G2322"]],[17,19,["G1325"]],[19,20,["G846"]],[20,21,["G5160"]],[21,22,["G1722"]],[22,24,["G2540"]]]},{"k":24003,"v":[[0,1,["G3107"]],[1,3,["G1565"]],[3,4,["G1401"]],[4,5,["G3739"]],[5,6,["G846"]],[6,7,["G2962"]],[7,10,["G2064"]],[10,12,["G2147"]],[12,13,["G3779"]],[13,14,["G4160"]]]},{"k":24004,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,11,["G2525","G846"]],[11,12,["G1909"]],[12,13,["G3956"]],[13,14,["G848"]],[14,15,["G5224"]]]},{"k":24005,"v":[[0,1,["G1161"]],[1,3,["G1437"]],[3,4,["G1565"]],[4,5,["G2556"]],[5,6,["G1401"]],[6,8,["G2036"]],[8,9,["G1722"]],[9,10,["G848"]],[10,11,["G2588"]],[11,12,["G3450"]],[12,13,["G2962"]],[13,14,["G5549"]],[14,16,["G2064"]]]},{"k":24006,"v":[[0,1,["G2532"]],[1,3,["G756"]],[3,5,["G5180"]],[5,7,["G4889"]],[7,8,["G1161"]],[8,10,["G2068"]],[10,11,["G2532"]],[11,12,["G4095"]],[12,13,["G3326"]],[13,14,["G3588"]],[14,15,["G3184"]]]},{"k":24007,"v":[[0,1,["G3588"]],[1,2,["G2962"]],[2,4,["G1565"]],[4,5,["G1401"]],[5,7,["G2240"]],[7,8,["G1722"]],[8,10,["G2250"]],[10,11,["G3739"]],[11,13,["G4328"]],[13,14,["G3756"]],[14,17,["G2532"]],[17,18,["G1722"]],[18,20,["G5610"]],[20,21,["G3739"]],[21,24,["G3756"]],[24,25,["G1097"]],[25,26,[]]]},{"k":24008,"v":[[0,1,["G2532"]],[1,5,["G1371","G846"]],[5,6,["G2532"]],[6,7,["G5087"]],[7,9,["G846"]],[9,10,["G3313"]],[10,11,["G3326"]],[11,12,["G3588"]],[12,13,["G5273"]],[13,14,["G1563"]],[14,16,["G2071"]],[16,17,["G2805"]],[17,18,["G2532"]],[18,19,["G1030"]],[19,21,["G3599"]]]},{"k":24009,"v":[[0,1,["G5119"]],[1,3,["G3588"]],[3,4,["G932"]],[4,6,["G3772"]],[6,9,["G3666"]],[9,10,["G1176"]],[10,11,["G3933"]],[11,12,["G3748"]],[12,13,["G2983"]],[13,14,["G848"]],[14,15,["G2985"]],[15,18,["G1831"]],[18,20,["G1519","G529"]],[20,21,["G3588"]],[21,22,["G3566"]]]},{"k":24010,"v":[[0,1,["G1161"]],[1,2,["G4002"]],[2,3,["G1537"]],[3,4,["G846"]],[4,5,["G2258"]],[5,6,["G5429"]],[6,7,["G2532"]],[7,8,["G4002"]],[8,10,["G3474"]]]},{"k":24011,"v":[[0,2,["G3748"]],[2,4,["G3474"]],[4,5,["G2983"]],[5,6,["G1438"]],[6,7,["G2985"]],[7,9,["G2983"]],[9,10,["G3756"]],[10,11,["G1637"]],[11,12,["G3326"]],[12,13,["G1438"]]]},{"k":24012,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5429"]],[3,4,["G2983"]],[4,5,["G1637"]],[5,6,["G1722"]],[6,7,["G848"]],[7,8,["G30"]],[8,9,["G3326"]],[9,10,["G848"]],[10,11,["G2985"]]]},{"k":24013,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3566"]],[3,4,["G5549"]],[4,6,["G3956"]],[6,7,["G3573"]],[7,8,["G2532"]],[8,9,["G2518"]]]},{"k":24014,"v":[[0,1,["G1161"]],[1,3,["G3319","G3571"]],[3,7,["G2906"]],[7,8,["G1096"]],[8,9,["G2400"]],[9,10,["G3588"]],[10,11,["G3566"]],[11,12,["G2064"]],[12,15,["G1831"]],[15,17,["G1519","G529"]],[17,18,["G846"]]]},{"k":24015,"v":[[0,1,["G5119"]],[1,2,["G3956"]],[2,3,["G1565"]],[3,4,["G3933"]],[4,5,["G1453"]],[5,6,["G2532"]],[6,7,["G2885"]],[7,8,["G848"]],[8,9,["G2985"]]]},{"k":24016,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3474"]],[3,4,["G2036"]],[4,6,["G3588"]],[6,7,["G5429"]],[7,8,["G1325"]],[8,9,["G2254"]],[9,10,["G1537"]],[10,11,["G5216"]],[11,12,["G1637"]],[12,13,["G3754"]],[13,14,["G2257"]],[14,15,["G2985"]],[15,18,["G4570"]]]},{"k":24017,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5429"]],[3,4,["G611"]],[4,5,["G3004"]],[5,8,["G3379"]],[8,12,["G714","G3756"]],[12,14,["G2254"]],[14,15,["G2532"]],[15,16,["G5213"]],[16,17,["G1161"]],[17,18,["G4198"]],[18,20,["G3123"]],[20,21,["G4314"]],[21,24,["G4453"]],[24,25,["G2532"]],[25,26,["G59"]],[26,28,["G1438"]]]},{"k":24018,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G565"]],[4,6,["G59"]],[6,7,["G3588"]],[7,8,["G3566"]],[8,9,["G2064"]],[9,10,["G2532"]],[10,14,["G2092"]],[14,16,["G1525"]],[16,17,["G3326"]],[17,18,["G846"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G1062"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G2374"]],[24,26,["G2808"]]]},{"k":24019,"v":[[0,0,["(G1161)"]],[0,1,["G5305"]],[1,2,["G2064"]],[2,3,["G2532"]],[3,4,["G3588"]],[4,5,["G3062"]],[5,6,["G3933"]],[6,7,["G3004"]],[7,8,["G2962"]],[8,9,["G2962"]],[9,10,["G455"]],[10,12,["G2254"]]]},{"k":24020,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,6,["G281"]],[6,8,["G3004"]],[8,10,["G5213"]],[10,12,["G1492"]],[12,13,["G5209"]],[13,14,["G3756"]]]},{"k":24021,"v":[[0,1,["G1127"]],[1,2,["G3767"]],[2,3,["G3754"]],[3,5,["G1492"]],[5,6,["G3756"]],[6,7,["G3588"]],[7,8,["G2250"]],[8,9,["G3761"]],[9,10,["G3588"]],[10,11,["G5610"]],[11,12,["G1722","G3739"]],[12,13,["G3588"]],[13,14,["G5207"]],[14,16,["G444"]],[16,17,["G2064"]]]},{"k":24022,"v":[[0,1,["G1063"]],[1,7,["G5618"]],[7,9,["G444"]],[9,14,["G589"]],[14,16,["G2564"]],[16,18,["G2398"]],[18,19,["G1401"]],[19,20,["G2532"]],[20,21,["G3860"]],[21,23,["G846"]],[23,24,["G848"]],[24,25,["G5224"]]]},{"k":24023,"v":[[0,1,["G2532"]],[1,3,["G3739","G3303"]],[3,5,["G1325"]],[5,6,["G4002"]],[6,7,["G5007"]],[7,8,["(G1161)"]],[8,9,["G3739"]],[9,10,["G1417"]],[10,11,["G1161"]],[11,13,["G3739"]],[13,14,["G1520"]],[14,17,["G1538"]],[17,18,["G2596"]],[18,21,["G2398"]],[21,22,["G1411"]],[22,23,["G2532"]],[23,24,["G2112"]],[24,27,["G589"]]]},{"k":24024,"v":[[0,1,["G1161"]],[1,5,["G2983"]],[5,6,["G3588"]],[6,7,["G4002"]],[7,8,["G5007"]],[8,9,["G4198"]],[9,10,["G2532"]],[10,11,["G2038"]],[11,12,["G1722"]],[12,14,["G846"]],[14,15,["G2532"]],[15,16,["G4160"]],[16,18,["G243"]],[18,19,["G4002"]],[19,20,["G5007"]]]},{"k":24025,"v":[[0,1,["G2532"]],[1,2,["G5615"]],[2,3,["G3588"]],[3,7,["G1417"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G2770"]],[10,11,["G243"]],[11,12,["G1417"]]]},{"k":24026,"v":[[0,1,["G1161"]],[1,5,["G2983"]],[5,6,["G1520"]],[6,7,["G565"]],[7,9,["G3736"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G1093"]],[12,13,["G2532"]],[13,14,["G613"]],[14,15,["G848"]],[15,16,["G2962"]],[16,17,["G694"]]]},{"k":24027,"v":[[0,0,["(G1161)"]],[0,1,["G3326"]],[1,3,["G4183"]],[3,4,["G5550"]],[4,5,["G3588"]],[5,6,["G2962"]],[6,8,["G1565"]],[8,9,["G1401"]],[9,10,["G2064"]],[10,11,["G2532"]],[11,12,["G4868","G3056"]],[12,13,["G3326"]],[13,14,["G846"]]]},{"k":24028,"v":[[0,1,["G2532"]],[1,6,["G2983"]],[6,7,["(G3588)","G4002"]],[7,8,["G5007"]],[8,9,["G4334"]],[9,11,["G4374"]],[11,12,["G243"]],[12,13,["G4002"]],[13,14,["G5007"]],[14,15,["G3004"]],[15,16,["G2962"]],[16,18,["G3860"]],[18,20,["G3427"]],[20,21,["G4002"]],[21,22,["G5007"]],[22,23,["G2396"]],[23,26,["G2770"]],[26,27,["G1909"]],[27,28,["G846"]],[28,29,["G4002"]],[29,30,["G5007"]],[30,31,["G243"]]]},{"k":24029,"v":[[0,0,["(G1161)"]],[0,1,["G846"]],[1,2,["G2962"]],[2,3,["G5346"]],[3,5,["G846"]],[5,7,["G2095"]],[7,9,["G18"]],[9,10,["G2532"]],[10,11,["G4103"]],[11,12,["G1401"]],[12,15,["G2258"]],[15,16,["G4103"]],[16,17,["G1909"]],[17,20,["G3641"]],[20,25,["G2525","G4571"]],[25,26,["G1909"]],[26,28,["G4183"]],[28,29,["G1525"]],[29,31,["G1519"]],[31,32,["G3588"]],[32,33,["G5479"]],[33,35,["G4675"]],[35,36,["G2962"]]]},{"k":24030,"v":[[0,0,["(G1161)"]],[0,5,["G2983","G2532"]],[5,6,["G1417"]],[6,7,["G5007"]],[7,8,["G4334"]],[8,10,["G2036"]],[10,11,["G2962"]],[11,13,["G3860"]],[13,15,["G3427"]],[15,16,["G1417"]],[16,17,["G5007"]],[17,18,["G2396"]],[18,21,["G2770"]],[21,22,["G1417"]],[22,23,["G243"]],[23,24,["G5007"]],[24,25,["G1909"]],[25,26,["G846"]]]},{"k":24031,"v":[[0,1,["G846"]],[1,2,["G2962"]],[2,3,["G5346"]],[3,5,["G846"]],[5,7,["G2095"]],[7,8,["G18"]],[8,9,["G2532"]],[9,10,["G4103"]],[10,11,["G1401"]],[11,14,["G2258"]],[14,15,["G4103"]],[15,16,["G1909"]],[16,19,["G3641"]],[19,24,["G2525","G4571"]],[24,25,["G1909"]],[25,27,["G4183"]],[27,28,["G1525"]],[28,30,["G1519"]],[30,31,["G3588"]],[31,32,["G5479"]],[32,34,["G4675"]],[34,35,["G2962"]]]},{"k":24032,"v":[[0,1,["G1161"]],[1,5,["G2983"]],[5,6,["G3588"]],[6,7,["G1520"]],[7,8,["G5007"]],[8,9,["(G2532)","G4334"]],[9,11,["G2036"]],[11,12,["G2962"]],[12,14,["G1097"]],[14,15,["G4571"]],[15,16,["G3754"]],[16,18,["G1488"]],[18,20,["G4642"]],[20,21,["G444"]],[21,22,["G2325"]],[22,23,["G3699"]],[23,26,["G3756"]],[26,27,["G4687"]],[27,28,["G2532"]],[28,29,["G4863"]],[29,30,["G3606"]],[30,33,["G3756"]],[33,34,["G1287"]]]},{"k":24033,"v":[[0,1,["G2532"]],[1,4,["G5399"]],[4,6,["G565"]],[6,8,["G2928"]],[8,9,["G4675"]],[9,10,["G5007"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G1093"]],[13,14,["G2396"]],[14,17,["G2192"]],[17,20,["G4674"]]]},{"k":24034,"v":[[0,0,["(G1161)"]],[0,1,["G846"]],[1,2,["G2962"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,9,["G4190"]],[9,10,["G2532"]],[10,11,["G3636"]],[11,12,["G1401"]],[12,14,["G1492"]],[14,15,["G3754"]],[15,17,["G2325"]],[17,18,["G3699"]],[18,20,["G4687"]],[20,21,["G3756"]],[21,22,["G2532"]],[22,23,["G4863"]],[23,24,["G3606"]],[24,27,["G3756"]],[27,28,["G1287"]]]},{"k":24035,"v":[[0,1,["G4571"]],[1,2,["G1163"]],[2,3,["G3767"]],[3,6,["G906"]],[6,7,["G3450"]],[7,8,["G694"]],[8,10,["G3588"]],[10,11,["G5133"]],[11,12,["G2532"]],[12,16,["G2064"]],[16,17,["G1473"]],[17,20,["G2865","G302"]],[20,22,["G1699"]],[22,23,["G4862"]],[23,24,["G5110"]]]},{"k":24036,"v":[[0,1,["G142"]],[1,2,["G3767"]],[2,3,["G3588"]],[3,4,["G5007"]],[4,5,["G575"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G1325"]],[8,13,["G2192"]],[13,14,["G1176"]],[14,15,["G5007"]]]},{"k":24037,"v":[[0,1,["G1063"]],[1,4,["G3956"]],[4,6,["G2192"]],[6,9,["G1325"]],[9,10,["G2532"]],[10,14,["G4052"]],[14,15,["G1161"]],[15,16,["G575"]],[16,17,["G3588"]],[17,19,["G2192"]],[19,20,["G3361"]],[20,24,["G142"]],[24,25,["(G575","G846)","G2532"]],[25,27,["G3739"]],[27,29,["G2192"]]]},{"k":24038,"v":[[0,1,["G2532"]],[1,2,["G1544"]],[2,4,["G3588"]],[4,5,["G888"]],[5,6,["G1401"]],[6,7,["G1519"]],[7,8,["G1857"]],[8,9,["G4655"]],[9,10,["G1563"]],[10,12,["G2071"]],[12,13,["G2805"]],[13,14,["G2532"]],[14,15,["G1030"]],[15,17,["G3599"]]]},{"k":24039,"v":[[0,1,["G3752"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G444"]],[5,7,["G2064"]],[7,8,["G1722"]],[8,9,["G848"]],[9,10,["G1391"]],[10,11,["G2532"]],[11,12,["G3956"]],[12,13,["G3588"]],[13,14,["G40"]],[14,15,["G32"]],[15,16,["G3326"]],[16,17,["G846"]],[17,18,["G5119"]],[18,21,["G2523"]],[21,22,["G1909"]],[22,24,["G2362"]],[24,26,["G848"]],[26,27,["G1391"]]]},{"k":24040,"v":[[0,1,["G2532"]],[1,2,["G1715"]],[2,3,["G846"]],[3,6,["G4863"]],[6,7,["G3956"]],[7,8,["G1484"]],[8,9,["G2532"]],[9,12,["G873"]],[12,13,["G846"]],[13,16,["G240","G575"]],[16,17,["G5618"]],[17,19,["G4166"]],[19,20,["G873"]],[20,22,["G4263"]],[22,23,["G575"]],[23,24,["G3588"]],[24,25,["G2056"]]]},{"k":24041,"v":[[0,1,["G2532"]],[1,4,["G2476"]],[4,5,["G3588"]],[5,6,["(G4263)"]],[6,7,["G1537"]],[7,8,["G848"]],[8,10,["G1188"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,13,["G2055"]],[13,14,["G1537"]],[14,16,["G2176"]]]},{"k":24042,"v":[[0,1,["G5119"]],[1,3,["G3588"]],[3,4,["G935"]],[4,5,["G2046"]],[5,7,["G3588"]],[7,8,["G1537"]],[8,9,["G848"]],[9,11,["G1188"]],[11,12,["G1205"]],[12,14,["G2127"]],[14,16,["G3450"]],[16,17,["G3962"]],[17,18,["G2816"]],[18,19,["G3588"]],[19,20,["G932"]],[20,21,["G2090"]],[21,23,["G5213"]],[23,24,["G575"]],[24,26,["G2602"]],[26,29,["G2889"]]]},{"k":24043,"v":[[0,1,["G1063"]],[1,5,["G3983"]],[5,6,["G2532"]],[6,8,["G1325"]],[8,9,["G3427"]],[9,10,["G5315"]],[10,13,["G1372"]],[13,14,["G2532"]],[14,18,["G4222","G3165"]],[18,20,["G2252"]],[20,22,["G3581"]],[22,23,["G2532"]],[23,27,["G4863","G3165"]]]},{"k":24044,"v":[[0,1,["G1131"]],[1,2,["G2532"]],[2,4,["G4016"]],[4,5,["G3165"]],[5,8,["G770"]],[8,9,["G2532"]],[9,11,["G1980"]],[11,12,["G3165"]],[12,14,["G2252"]],[14,15,["G1722"]],[15,16,["G5438"]],[16,17,["G2532"]],[17,19,["G2064"]],[19,20,["G4314"]],[20,21,["G3165"]]]},{"k":24045,"v":[[0,1,["G5119"]],[1,3,["G3588"]],[3,4,["G1342"]],[4,5,["G611"]],[5,6,["G846"]],[6,7,["G3004"]],[7,8,["G2962"]],[8,9,["G4219"]],[9,10,["G1492"]],[10,12,["G4571"]],[12,14,["G3983"]],[14,15,["G2532"]],[15,16,["G5142"]],[16,18,["G2228"]],[18,19,["G1372"]],[19,20,["G2532"]],[20,23,["G4222"]]]},{"k":24046,"v":[[0,0,["(G1161)"]],[0,1,["G4219"]],[1,2,["G1492"]],[2,4,["G4571"]],[4,6,["G3581"]],[6,7,["G2532"]],[7,10,["G4863"]],[10,11,["G2228"]],[11,12,["G1131"]],[12,13,["G2532"]],[13,14,["G4016"]],[14,15,[]]]},{"k":24047,"v":[[0,1,["G1161"]],[1,2,["G4219"]],[2,3,["G1492"]],[3,5,["G4571"]],[5,6,["G772"]],[6,7,["G2228"]],[7,8,["G1722"]],[8,9,["G5438"]],[9,10,["G2532"]],[10,11,["G2064"]],[11,12,["G4314"]],[12,13,["G4571"]]]},{"k":24048,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G935"]],[3,5,["G611"]],[5,7,["G2046"]],[7,9,["G846"]],[9,10,["G281"]],[10,12,["G3004"]],[12,14,["G5213"]],[14,16,["G1909","G3745"]],[16,19,["G4160"]],[19,22,["G1520"]],[22,24,["G3588"]],[24,25,["G1646"]],[25,27,["G5130"]],[27,28,["G3450"]],[28,29,["G80"]],[29,32,["G4160"]],[32,35,["G1698"]]]},{"k":24049,"v":[[0,1,["G5119"]],[1,4,["G2046"]],[4,5,["G2532"]],[5,7,["G3588"]],[7,8,["G1537"]],[8,11,["G2176"]],[11,12,["G4198"]],[12,13,["G575"]],[13,14,["G1700"]],[14,16,["G2672"]],[16,17,["G1519"]],[17,18,["G166"]],[18,19,["G4442"]],[19,20,["G2090"]],[20,22,["G3588"]],[22,23,["G1228"]],[23,24,["G2532"]],[24,25,["G846"]],[25,26,["G32"]]]},{"k":24050,"v":[[0,1,["G1063"]],[1,5,["G3983"]],[5,6,["G2532"]],[6,8,["G1325"]],[8,9,["G3427"]],[9,10,["G3756"]],[10,11,["G5315"]],[11,14,["G1372"]],[14,15,["G2532"]],[15,20,["G4222","G3165"]]]},{"k":24051,"v":[[0,2,["G2252"]],[2,4,["G3581"]],[4,5,["G2532"]],[5,10,["G4863","G3165","G3756"]],[10,11,["G1131"]],[11,12,["G2532"]],[12,14,["G4016"]],[14,15,["G3165"]],[15,16,["G3756"]],[16,17,["G772"]],[17,18,["G2532"]],[18,19,["G1722"]],[19,20,["G5438"]],[20,21,["G2532"]],[21,23,["G1980"]],[23,24,["G3165"]],[24,25,["G3756"]]]},{"k":24052,"v":[[0,1,["G5119"]],[1,3,["G846"]],[3,4,["G2532"]],[4,5,["G611"]],[5,6,["G846"]],[6,7,["G3004"]],[7,8,["G2962"]],[8,9,["G4219"]],[9,10,["G1492"]],[10,12,["G4571"]],[12,14,["G3983"]],[14,15,["G2228"]],[15,16,["G1372"]],[16,17,["G2228"]],[17,19,["G3581"]],[19,20,["G2228"]],[20,21,["G1131"]],[21,22,["G2228"]],[22,23,["G772"]],[23,24,["G2228"]],[24,25,["G1722"]],[25,26,["G5438"]],[26,27,["G2532"]],[27,29,["G3756"]],[29,30,["G1247"]],[30,32,["G4671"]]]},{"k":24053,"v":[[0,1,["G5119"]],[1,4,["G611"]],[4,5,["G846"]],[5,6,["G3004"]],[6,7,["G281"]],[7,9,["G3004"]],[9,11,["G5213"]],[11,13,["G1909","G3745"]],[13,15,["G4160"]],[15,17,["G3756"]],[17,19,["G1520"]],[19,21,["G3588"]],[21,22,["G1646"]],[22,24,["G5130"]],[24,26,["G4160"]],[26,28,["G3761"]],[28,30,["G1698"]]]},{"k":24054,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,5,["G565"]],[5,6,["G1519"]],[6,7,["G166"]],[7,8,["G2851"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G1342"]],[11,12,["G1519"]],[12,13,["G2222"]],[13,14,["G166"]]]},{"k":24055,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,6,["G3753"]],[6,7,["G2424"]],[7,9,["G5055"]],[9,10,["G3956"]],[10,11,["G5128"]],[11,12,["G3056"]],[12,14,["G2036"]],[14,16,["G848"]],[16,17,["G3101"]]]},{"k":24056,"v":[[0,2,["G1492"]],[2,3,["G3754"]],[3,4,["G3326"]],[4,5,["G1417"]],[5,6,["G2250"]],[6,7,["G1096"]],[7,11,["G3588"]],[11,12,["G3957"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,17,["G444"]],[17,19,["G3860"]],[19,22,["G4717"]]]},{"k":24057,"v":[[0,1,["G5119"]],[1,3,["G4863"]],[3,4,["G3588"]],[4,6,["G749"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G1122"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G4245"]],[12,14,["G3588"]],[14,15,["G2992"]],[15,16,["G1519"]],[16,17,["G3588"]],[17,18,["G833"]],[18,20,["G3588"]],[20,22,["G749"]],[22,25,["G3004"]],[25,26,["G2533"]]]},{"k":24058,"v":[[0,1,["G2532"]],[1,2,["G4823"]],[2,3,["G2443"]],[3,6,["G2902"]],[6,7,["G2424"]],[7,9,["G1388"]],[9,10,["G2532"]],[10,11,["G615"]],[11,12,[]]]},{"k":24059,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,4,["G3361"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G1859"]],[7,9,["G3363"]],[9,11,["G1096"]],[11,13,["G2351"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G2992"]]]},{"k":24060,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,4,["G1096"]],[4,5,["G1722"]],[5,6,["G963"]],[6,7,["G1722"]],[7,9,["G3614"]],[9,11,["G4613"]],[11,12,["G3588"]],[12,13,["G3015"]]]},{"k":24061,"v":[[0,2,["G4334"]],[2,4,["G846"]],[4,6,["G1135"]],[6,7,["G2192"]],[7,10,["G211"]],[10,13,["G927"]],[13,14,["G3464"]],[14,15,["G2532"]],[15,16,["G2708"]],[16,18,["G1909"]],[18,19,["G846"]],[19,20,["G2776"]],[20,23,["G345"]],[23,25,[]]]},{"k":24062,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G3101"]],[4,5,["G1492"]],[5,9,["G23"]],[9,10,["G3004"]],[10,11,["G1519"]],[11,13,["G5101"]],[13,15,["G3778"]],[15,16,["G684"]]]},{"k":24063,"v":[[0,1,["G1063"]],[1,2,["G5124"]],[2,3,["G3464"]],[3,4,["G1410"]],[4,7,["G4097"]],[7,9,["G4183"]],[9,10,["G2532"]],[10,11,["G1325"]],[11,14,["G4434"]]]},{"k":24064,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G1097"]],[3,6,["G2036"]],[6,8,["G846"]],[8,9,["G5101"]],[9,10,["G3930","G2873"]],[10,12,["G3588"]],[12,13,["G1135"]],[13,14,["G1063"]],[14,17,["G2038"]],[17,19,["G2570"]],[19,20,["G2041"]],[20,21,["G1519"]],[21,22,["G1691"]]]},{"k":24065,"v":[[0,1,["G1063"]],[1,3,["G2192"]],[3,4,["G3588"]],[4,5,["G4434"]],[5,6,["G3842"]],[6,7,["G3326"]],[7,8,["G1438"]],[8,9,["G1161"]],[9,10,["G1691"]],[10,12,["G2192"]],[12,13,["G3756"]],[13,14,["G3842"]]]},{"k":24066,"v":[[0,1,["G1063"]],[1,3,["G3778"]],[3,6,["G906"]],[6,7,["G5124"]],[7,8,["G3464"]],[8,9,["G1909"]],[9,10,["G3450"]],[10,11,["G4983"]],[11,13,["G4160"]],[13,16,["G3165"]],[16,17,["G1779"]]]},{"k":24067,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3699","G1437"]],[6,7,["G5124"]],[7,8,["G2098"]],[8,11,["G2784"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G3650"]],[14,15,["G2889"]],[15,18,["G2532"]],[18,19,["G3739"]],[19,22,["G3778"]],[22,24,["G4160"]],[24,26,["G2980"]],[26,27,["G1519"]],[27,29,["G3422"]],[29,31,["G846"]]]},{"k":24068,"v":[[0,1,["G5119"]],[1,2,["G1520"]],[2,4,["G3588"]],[4,5,["G1427"]],[5,6,["G3004"]],[6,7,["G2455"]],[7,8,["G2469"]],[8,9,["G4198"]],[9,10,["G4314"]],[10,11,["G3588"]],[11,13,["G749"]]]},{"k":24069,"v":[[0,2,["G2036"]],[2,5,["G5101"]],[5,6,["G2309"]],[6,8,["G1325"]],[8,9,["G3427"]],[9,11,["G2504"]],[11,13,["G3860"]],[13,14,["G846"]],[14,16,["G5213"]],[16,17,["G1161"]],[17,18,["G3588"]],[18,19,["G2476"]],[19,21,["G846"]],[21,23,["G5144"]],[23,26,["G694"]]]},{"k":24070,"v":[[0,1,["G2532"]],[1,2,["G575"]],[2,4,["G5119"]],[4,6,["G2212"]],[6,7,["G2120"]],[7,8,["G2443"]],[8,9,["G3860"]],[9,10,["G846"]]]},{"k":24071,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4413"]],[3,6,["G3588"]],[6,10,["G106"]],[10,11,["G3588"]],[11,12,["G3101"]],[12,13,["G4334"]],[13,15,["G2424"]],[15,16,["G3004"]],[16,18,["G846"]],[18,19,["G4226"]],[19,20,["G2309"]],[20,24,["G2090"]],[24,26,["G4671"]],[26,28,["G5315"]],[28,29,["G3588"]],[29,30,["G3957"]]]},{"k":24072,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G5217"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G4172"]],[7,8,["G4314"]],[8,11,["G1170"]],[11,12,["G2532"]],[12,13,["G2036"]],[13,15,["G846"]],[15,16,["G3588"]],[16,17,["G1320"]],[17,18,["G3004"]],[18,19,["G3450"]],[19,20,["G2540"]],[20,21,["G2076"]],[21,23,["G1451"]],[23,26,["G4160"]],[26,27,["G3588"]],[27,28,["G3957"]],[28,29,["G4314"]],[29,31,["G4571"]],[31,32,["G3326"]],[32,33,["G3450"]],[33,34,["G3101"]]]},{"k":24073,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,4,["G4160"]],[4,5,["G5613"]],[5,6,["G2424"]],[6,8,["G4929"]],[8,9,["G846"]],[9,10,["G2532"]],[10,13,["G2090"]],[13,14,["G3588"]],[14,15,["G3957"]]]},{"k":24074,"v":[[0,1,["G1161"]],[1,4,["G3798"]],[4,6,["G1096"]],[6,9,["G345"]],[9,10,["G3326"]],[10,11,["G3588"]],[11,12,["G1427"]]]},{"k":24075,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G2068"]],[5,7,["G2036"]],[7,8,["G281"]],[8,10,["G3004"]],[10,12,["G5213"]],[12,13,["G3754"]],[13,14,["G1520"]],[14,15,["G1537"]],[15,16,["G5216"]],[16,18,["G3860"]],[18,19,["G3165"]]]},{"k":24076,"v":[[0,1,["G2532"]],[1,5,["G3076","G4970"]],[5,7,["G756"]],[7,9,["G1538"]],[9,11,["G846"]],[11,13,["G3004"]],[13,15,["G846"]],[15,16,["G2962","(G3385)"]],[16,17,["G1510"]],[17,19,["G1473"]]]},{"k":24077,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,8,["G1686"]],[8,10,["G5495"]],[10,11,["G3326"]],[11,12,["G1700"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G5165"]],[15,17,["G3778"]],[17,19,["G3860"]],[19,20,["G3165"]]]},{"k":24078,"v":[[0,1,["G3588"]],[1,2,["G5207"]],[2,4,["G444"]],[4,5,["G5217"]],[5,6,["G2531"]],[6,7,["(G3303)"]],[7,9,["G1125"]],[9,10,["G4012"]],[10,11,["G846"]],[11,12,["G1161"]],[12,13,["G3759"]],[13,15,["G1565"]],[15,16,["G444"]],[16,17,["G1223"]],[17,18,["G3739"]],[18,19,["G3588"]],[19,20,["G5207"]],[20,22,["G444"]],[22,24,["G3860"]],[24,27,["G2258"]],[27,28,["G2570"]],[28,29,["(G846)"]],[29,30,["G1565"]],[30,31,["G444"]],[31,32,["G1487"]],[32,35,["G3756"]],[35,37,["G1080"]]]},{"k":24079,"v":[[0,1,["G1161"]],[1,2,["G2455"]],[2,4,["G3860"]],[4,5,["G846"]],[5,6,["G611"]],[6,8,["G2036"]],[8,9,["G4461","(G3385)"]],[9,10,["G1510"]],[10,12,["G1473"]],[12,14,["G3004"]],[14,16,["G846"]],[16,17,["G4771"]],[17,19,["G2036"]]]},{"k":24080,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G2068"]],[5,6,["G2424"]],[6,7,["G2983"]],[7,8,["G740"]],[8,9,["G2532"]],[9,10,["G2127"]],[10,13,["G2806"]],[13,15,["G2532"]],[15,16,["G1325"]],[16,19,["G3588"]],[19,20,["G3101"]],[20,21,["G2532"]],[21,22,["G2036"]],[22,23,["G2983"]],[23,24,["G5315"]],[24,25,["G5124"]],[25,26,["G2076"]],[26,27,["G3450"]],[27,28,["G4983"]]]},{"k":24081,"v":[[0,1,["G2532"]],[1,3,["G2983"]],[3,4,["G3588"]],[4,5,["G4221"]],[5,6,["G2532"]],[6,8,["G2168"]],[8,10,["G1325"]],[10,13,["G846"]],[13,14,["G3004"]],[14,15,["G4095"]],[15,17,["G3956"]],[17,18,["G1537"]],[18,19,["G846"]]]},{"k":24082,"v":[[0,1,["G1063"]],[1,2,["G5124"]],[2,3,["G2076"]],[3,4,["G3450"]],[4,5,["G129"]],[5,6,["(G3588)"]],[6,7,["G3588"]],[7,8,["G2537"]],[8,9,["G1242"]],[9,12,["G1632"]],[12,13,["G4012"]],[13,14,["G4183"]],[14,15,["G1519"]],[15,17,["G859"]],[17,19,["G266"]]]},{"k":24083,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,8,["G3364"]],[8,9,["G4095"]],[9,10,["G575","G737"]],[10,11,["G1537"]],[11,12,["G5127"]],[12,13,["G1081"]],[13,15,["G3588"]],[15,16,["G288"]],[16,17,["G2193"]],[17,18,["G1565"]],[18,19,["G2250"]],[19,20,["G3752"]],[20,22,["G4095"]],[22,23,["G846"]],[23,24,["G2537"]],[24,25,["G3326"]],[25,26,["G5216"]],[26,27,["G1722"]],[27,28,["G3450"]],[28,29,["G3962"]],[29,30,["G932"]]]},{"k":24084,"v":[[0,1,["G2532"]],[1,7,["G5214"]],[7,10,["G1831"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G3735"]],[13,15,["G1636"]]]},{"k":24085,"v":[[0,1,["G5119"]],[1,2,["G3004"]],[2,3,["G2424"]],[3,5,["G846"]],[5,6,["G3956"]],[6,7,["G5210"]],[7,10,["G4624"]],[10,11,["G1722"]],[11,13,["G1698","(G1722)"]],[13,14,["G5026"]],[14,15,["G3571"]],[15,16,["G1063"]],[16,19,["G1125"]],[19,22,["G3960"]],[22,23,["G3588"]],[23,24,["G4166"]],[24,25,["G2532"]],[25,26,["G3588"]],[26,27,["G4263"]],[27,29,["G3588"]],[29,30,["G4167"]],[30,34,["G1287"]]]},{"k":24086,"v":[[0,1,["G1161"]],[1,3,["G3165"]],[3,6,["G1453"]],[6,10,["G4254"]],[10,11,["G5209"]],[11,12,["G1519"]],[12,13,["G1056"]]]},{"k":24087,"v":[[0,0,["(G1161)"]],[0,1,["G4074"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G846"]],[6,7,["G1499"]],[7,8,["G3956"]],[8,12,["G4624"]],[12,13,["G1722"]],[13,15,["G4671"]],[15,18,["G1473"]],[18,19,["G3763"]],[19,21,["G4624"]]]},{"k":24088,"v":[[0,1,["G2424"]],[1,2,["G5346"]],[2,4,["G846"]],[4,5,["G281"]],[5,7,["G3004"]],[7,9,["G4671"]],[9,10,["G3754","(G1722)"]],[10,11,["G5026"]],[11,12,["G3571"]],[12,13,["G4250"]],[13,15,["G220"]],[15,16,["G5455"]],[16,19,["G533"]],[19,20,["G3165"]],[20,21,["G5151"]]]},{"k":24089,"v":[[0,1,["G4074"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G2579"]],[5,6,["G3165"]],[6,7,["G1163"]],[7,8,["G599"]],[8,9,["G4862"]],[9,10,["G4671"]],[10,14,["G3364"]],[14,15,["G533"]],[15,16,["G4571"]],[16,17,["G3668"]],[17,18,["G2532"]],[18,19,["G2036"]],[19,20,["G3956"]],[20,21,["G3588"]],[21,22,["G3101"]]]},{"k":24090,"v":[[0,1,["G5119"]],[1,2,["G2064"]],[2,3,["G2424"]],[3,4,["G3326"]],[4,5,["G846"]],[5,6,["G1519"]],[6,8,["G5564"]],[8,9,["G3004"]],[9,10,["G1068"]],[10,11,["G2532"]],[11,12,["G3004"]],[12,14,["G3588"]],[14,15,["G3101"]],[15,16,["G2523"]],[16,18,["G847"]],[18,19,["G2193","G3739"]],[19,21,["G565"]],[21,23,["G4336"]],[23,24,["G1563"]]]},{"k":24091,"v":[[0,1,["G2532"]],[1,4,["G3880"]],[4,6,["G4074"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G1417"]],[9,10,["G5207"]],[10,12,["G2199"]],[12,14,["G756"]],[14,17,["G3076"]],[17,18,["G2532"]],[18,20,["G85"]]]},{"k":24092,"v":[[0,1,["G5119"]],[1,2,["G3004"]],[2,5,["G846"]],[5,6,["G3450"]],[6,7,["G5590"]],[7,8,["G2076"]],[8,10,["G4036"]],[10,12,["G2193"]],[12,13,["G2288"]],[13,14,["G3306"]],[14,16,["G5602"]],[16,17,["G2532"]],[17,18,["G1127"]],[18,19,["G3326"]],[19,20,["G1700"]]]},{"k":24093,"v":[[0,1,["G2532"]],[1,3,["G4281"]],[3,6,["G3397"]],[6,8,["G4098"]],[8,9,["G1909"]],[9,10,["G848"]],[10,11,["G4383"]],[11,13,["G4336","(G2532)"]],[13,14,["G3004"]],[14,16,["G3450"]],[16,17,["G3962"]],[17,18,["G1487"]],[18,20,["G2076"]],[20,21,["G1415"]],[21,23,["G5124"]],[23,24,["G4221"]],[24,25,["G3928"]],[25,26,["G575"]],[26,27,["G1700"]],[27,28,["G4133"]],[28,29,["G3756"]],[29,30,["G5613"]],[30,31,["G1473"]],[31,32,["G2309"]],[32,33,["G235"]],[33,34,["G5613"]],[34,35,["G4771"]],[35,36,[]]]},{"k":24094,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G4314"]],[4,5,["G3588"]],[5,6,["G3101"]],[6,7,["G2532"]],[7,8,["G2147"]],[8,9,["G846"]],[9,10,["G2518"]],[10,11,["G2532"]],[11,12,["G3004"]],[12,14,["G4074"]],[14,15,["G3779"]],[15,16,["G2480"]],[16,18,["G3756"]],[18,19,["G1127"]],[19,20,["G3326"]],[20,21,["G1700"]],[21,22,["G3391"]],[22,23,["G5610"]]]},{"k":24095,"v":[[0,1,["G1127"]],[1,2,["G2532"]],[2,3,["G4336"]],[3,4,["G2443"]],[4,6,["G1525"]],[6,7,["G3361"]],[7,8,["G1519"]],[8,9,["G3986"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G3303"]],[12,14,["G4289"]],[14,15,["G1161"]],[15,16,["G3588"]],[16,17,["G4561"]],[17,19,["G772"]]]},{"k":24096,"v":[[0,3,["G565"]],[3,4,["G3825"]],[4,5,["(G1537)"]],[5,7,["G1208"]],[7,9,["G4336"]],[9,10,["G3004"]],[10,12,["G3450"]],[12,13,["G3962"]],[13,14,["G1487"]],[14,15,["G5124"]],[15,16,["G4221"]],[16,17,["G1410"]],[17,18,["G3756"]],[18,20,["G3928"]],[20,21,["G575"]],[21,22,["G1700"]],[22,23,["G3362"]],[23,25,["G4095"]],[25,26,["G846"]],[26,27,["G4675"]],[27,28,["G2307"]],[28,30,["G1096"]]]},{"k":24097,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,5,["G2147"]],[5,6,["G846"]],[6,7,["G2518"]],[7,8,["G3825"]],[8,9,["G1063"]],[9,10,["G846"]],[10,11,["G3788"]],[11,12,["G2258"]],[12,13,["G916"]]]},{"k":24098,"v":[[0,1,["G2532"]],[1,3,["G863"]],[3,4,["G846"]],[4,7,["G565"]],[7,8,["G3825"]],[8,10,["G4336"]],[10,11,["(G1537)"]],[11,13,["G5154"]],[13,14,["G2036"]],[14,15,["G3588"]],[15,16,["G848"]],[16,17,["G3056"]]]},{"k":24099,"v":[[0,1,["G5119"]],[1,2,["G2064"]],[2,4,["G4314"]],[4,5,["G848"]],[5,6,["G3101"]],[6,7,["G2532"]],[7,8,["G3004"]],[8,10,["G846"]],[10,12,["G2518"]],[12,13,["G3063"]],[13,14,["G2532"]],[14,17,["G373"]],[17,18,["G2400"]],[18,19,["G3588"]],[19,20,["G5610"]],[20,23,["G1448"]],[23,24,["G2532"]],[24,25,["G3588"]],[25,26,["G5207"]],[26,28,["G444"]],[28,30,["G3860"]],[30,31,["G1519"]],[31,33,["G5495"]],[33,35,["G268"]]]},{"k":24100,"v":[[0,1,["G1453"]],[1,5,["G71"]],[5,6,["G2400"]],[6,10,["G1448"]],[10,13,["G3860"]],[13,14,["G3165"]]]},{"k":24101,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,4,["G2089"]],[4,5,["G2980"]],[5,6,["G2400"]],[6,7,["G2455"]],[7,8,["G1520"]],[8,10,["G3588"]],[10,11,["G1427"]],[11,12,["G2064"]],[12,13,["G2532"]],[13,14,["G3326"]],[14,15,["G846"]],[15,17,["G4183"]],[17,18,["G3793"]],[18,19,["G3326"]],[19,20,["G3162"]],[20,21,["G2532"]],[21,22,["G3586"]],[22,23,["G575"]],[23,24,["G3588"]],[24,26,["G749"]],[26,27,["G2532"]],[27,28,["G4245"]],[28,30,["G3588"]],[30,31,["G2992"]]]},{"k":24102,"v":[[0,1,["G1161"]],[1,4,["G3860"]],[4,5,["G846"]],[5,6,["G1325"]],[6,7,["G846"]],[7,9,["G4592"]],[9,10,["G3004"]],[10,11,["G3739","G302"]],[11,14,["G5368"]],[14,16,["G846"]],[16,17,["G2076"]],[17,21,["G2902","G846"]]]},{"k":24103,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G4334"]],[4,6,["G2424"]],[6,8,["G2036"]],[8,9,["G5463"]],[9,10,["G4461"]],[10,11,["G2532"]],[11,12,["G2705"]],[12,13,["G846"]]]},{"k":24104,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G2083"]],[6,7,["G1909","G3739"]],[7,11,["G3918"]],[11,12,["G4334"]],[12,15,["G1911"]],[15,16,["G5495"]],[16,17,["G1909"]],[17,18,["G2424"]],[18,19,["G2532"]],[19,20,["G2902"]],[20,21,["G846"]]]},{"k":24105,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G1520"]],[3,5,["G3588"]],[5,8,["G3326"]],[8,9,["G2424"]],[9,11,["G1614"]],[11,13,["G5495"]],[13,15,["G645"]],[15,16,["G848"]],[16,17,["G3162"]],[17,18,["G2532"]],[18,19,["G3960"]],[19,21,["G1401"]],[21,23,["G3588"]],[23,25,["G749"]],[25,28,["G851"]],[28,29,["G846"]],[29,30,["G5621"]]]},{"k":24106,"v":[[0,1,["G5119"]],[1,2,["G3004"]],[2,3,["G2424"]],[3,5,["G846"]],[5,8,["G654"]],[8,9,["G4675"]],[9,10,["G3162"]],[10,11,["G1519"]],[11,12,["G846"]],[12,13,["G5117"]],[13,14,["G1063"]],[14,15,["G3956"]],[15,18,["G2983"]],[18,20,["G3162"]],[20,22,["G622"]],[22,23,["G1722"]],[23,25,["G3162"]]]},{"k":24107,"v":[[0,0,["(G2228)"]],[0,1,["G1380"]],[1,3,["G3754"]],[3,5,["G1410","G3756"]],[5,6,["G737"]],[6,7,["G3870"]],[7,9,["G3450"]],[9,10,["G3962"]],[10,11,["G2532"]],[11,15,["G3936"]],[15,16,["G3427"]],[16,17,["G4119"]],[17,18,["G2228"]],[18,19,["G1427"]],[19,20,["G3003"]],[20,22,["G32"]]]},{"k":24108,"v":[[0,2,["G4459"]],[2,3,["G3767"]],[3,5,["G3588"]],[5,6,["G1124"]],[6,8,["G4137"]],[8,9,["G3754"]],[9,10,["G3779"]],[10,12,["G1163"]],[12,13,["G1096"]]]},{"k":24109,"v":[[0,1,["G1722"]],[1,3,["G1565"]],[3,4,["G5610"]],[4,5,["G2036"]],[5,6,["G2424"]],[6,8,["G3588"]],[8,9,["G3793"]],[9,13,["G1831"]],[13,14,["G5613"]],[14,15,["G1909"]],[15,17,["G3027"]],[17,18,["G3326"]],[18,19,["G3162"]],[19,20,["G2532"]],[20,21,["G3586"]],[21,24,["G4815"]],[24,25,["G3165"]],[25,27,["G2516"]],[27,28,["G2596","G2250"]],[28,29,["G4314"]],[29,30,["G5209"]],[30,31,["G1321"]],[31,32,["G1722"]],[32,33,["G3588"]],[33,34,["G2411"]],[34,35,["G2532"]],[35,39,["G2902","G3756"]],[39,41,["G3165"]]]},{"k":24110,"v":[[0,1,["G1161"]],[1,2,["G3650"]],[2,3,["G5124"]],[3,5,["G1096"]],[5,6,["G2443"]],[6,7,["G3588"]],[7,8,["G1124"]],[8,10,["G3588"]],[10,11,["G4396"]],[11,14,["G4137"]],[14,15,["G5119"]],[15,16,["G3956"]],[16,17,["G3588"]],[17,18,["G3101"]],[18,19,["G863"]],[19,20,["G846"]],[20,22,["G5343"]]]},{"k":24111,"v":[[0,1,["G1161"]],[1,6,["G2902"]],[6,8,["G2424"]],[8,11,["G520"]],[11,12,["G4314"]],[12,13,["G2533"]],[13,14,["G3588"]],[14,16,["G749"]],[16,17,["G3699"]],[17,18,["G3588"]],[18,19,["G1122"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G4245"]],[22,24,["G4863"]]]},{"k":24112,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G190"]],[3,4,["G846"]],[4,6,["G575","G3113"]],[6,7,["G2193"]],[7,8,["G3588"]],[8,10,["G749"]],[10,11,["G833"]],[11,12,["G2532"]],[12,13,["G1525"]],[13,14,["G2080"]],[14,16,["G2521"]],[16,17,["G3326"]],[17,18,["G3588"]],[18,19,["G5257"]],[19,21,["G1492"]],[21,22,["G3588"]],[22,23,["G5056"]]]},{"k":24113,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G2532"]],[5,6,["G4245"]],[6,7,["G2532"]],[7,8,["G3650"]],[8,9,["G3588"]],[9,10,["G4892"]],[10,11,["G2212"]],[11,13,["G5577"]],[13,14,["G2596"]],[14,15,["G2424"]],[15,16,["G3704"]],[16,20,["G2289","G846"]]]},{"k":24114,"v":[[0,1,["G2532"]],[1,2,["G2147"]],[2,3,["G3756"]],[3,5,["G2532"]],[5,6,["G4183"]],[6,8,["G5575"]],[8,9,["G4334"]],[9,11,["G2147"]],[11,13,["G3756"]],[13,16,["(G1161)","G5305"]],[16,17,["G4334"]],[17,18,["G1417"]],[18,20,["G5575"]]]},{"k":24115,"v":[[0,2,["G2036"]],[2,3,["G3778"]],[3,5,["G5346"]],[5,8,["G1410"]],[8,10,["G2647"]],[10,11,["G3588"]],[11,12,["G3485"]],[12,14,["G2316"]],[14,15,["G2532"]],[15,17,["G3618"]],[17,18,["G846"]],[18,19,["G1223"]],[19,20,["G5140"]],[20,21,["G2250"]]]},{"k":24116,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G450"]],[5,7,["G2036"]],[7,9,["G846"]],[9,10,["G611"]],[10,12,["G3762"]],[12,13,["G5101"]],[13,17,["G3778"]],[17,19,["G2649"]],[19,20,["G4675"]]]},{"k":24117,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,5,["G4623"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,9,["G749"]],[9,10,["G611"]],[10,12,["G2036"]],[12,14,["G846"]],[14,16,["G1844"]],[16,17,["G4571"]],[17,18,["G2596"]],[18,19,["G3588"]],[19,20,["G2198"]],[20,21,["G2316"]],[21,22,["G2443"]],[22,24,["G2036"]],[24,25,["G2254"]],[25,26,["G1487"]],[26,27,["G4771"]],[27,28,["G1488"]],[28,29,["G3588"]],[29,30,["G5547"]],[30,31,["G3588"]],[31,32,["G5207"]],[32,34,["G2316"]]]},{"k":24118,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G4771"]],[5,7,["G2036"]],[7,8,["G4133"]],[8,10,["G3004"]],[10,12,["G5213"]],[12,13,["G575","G737"]],[13,16,["G3700"]],[16,17,["G3588"]],[17,18,["G5207"]],[18,20,["G444"]],[20,21,["G2521"]],[21,22,["G1537"]],[22,25,["G1188"]],[25,27,["G1411"]],[27,28,["G2532"]],[28,29,["G2064"]],[29,30,["G1909"]],[30,31,["G3588"]],[31,32,["G3507"]],[32,34,["G3772"]]]},{"k":24119,"v":[[0,1,["G5119"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G1284"]],[5,6,["G848"]],[6,7,["G2440"]],[7,8,["G3004"]],[8,12,["G987"]],[12,13,["G5101"]],[13,14,["G2089"]],[14,15,["G5532"]],[15,16,["G2192"]],[16,19,["G3144"]],[19,20,["G2396"]],[20,21,["G3568"]],[21,24,["G191"]],[24,25,["G846"]],[25,26,["G988"]]]},{"k":24120,"v":[[0,1,["G5101"]],[1,2,["G1380"]],[2,3,["G5213","(G1161)"]],[3,4,["G3588"]],[4,5,["G611"]],[5,7,["G2036"]],[7,9,["G2076"]],[9,10,["G1777"]],[10,12,["G2288"]]]},{"k":24121,"v":[[0,1,["G5119"]],[1,4,["G1716"]],[4,5,["G1519"]],[5,6,["G846"]],[6,7,["G4383"]],[7,8,["G2532"]],[8,9,["G2852"]],[9,10,["G846"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,20,["G4474"]]]},{"k":24122,"v":[[0,1,["G3004"]],[1,2,["G4395"]],[2,4,["G2254"]],[4,6,["G5547"]],[6,7,["G5101"]],[7,8,["G2076"]],[8,11,["G3817"]],[11,12,["G4571"]]]},{"k":24123,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2521"]],[3,4,["G1854"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G833"]],[7,8,["G2532"]],[8,9,["G3391"]],[9,10,["G3814"]],[10,11,["G4334"]],[11,13,["G846"]],[13,14,["G3004"]],[14,15,["G4771"]],[15,16,["G2532"]],[16,17,["G2258"]],[17,18,["G3326"]],[18,19,["G2424"]],[19,21,["G1057"]]]},{"k":24124,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G720"]],[3,4,["G1715"]],[4,6,["G3956"]],[6,7,["G3004"]],[7,9,["G1492"]],[9,10,["G3756"]],[10,11,["G5101"]],[11,13,["G3004"]]]},{"k":24125,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,6,["G1831"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G4440"]],[9,10,["G243"]],[10,12,["G1492"]],[12,13,["G846"]],[13,14,["G2532"]],[14,15,["G3004"]],[15,17,["G3588"]],[17,20,["G1563"]],[20,21,["G3778"]],[21,23,["G2258"]],[23,24,["G2532"]],[24,25,["G3326"]],[25,26,["G2424"]],[26,28,["G3480"]]]},{"k":24126,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,4,["G720"]],[4,5,["G3326"]],[5,7,["G3727"]],[7,10,["G3756"]],[10,11,["G1492"]],[11,12,["G3588"]],[12,13,["G444"]]]},{"k":24127,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,4,["G3397"]],[4,5,["G4334"]],[5,11,["G2476"]],[11,13,["G2036"]],[13,15,["G4074"]],[15,16,["G230"]],[16,17,["G4771"]],[17,18,["G2532"]],[18,19,["G1488"]],[19,21,["G1537"]],[21,22,["G846"]],[22,23,["G1063"]],[23,24,["G4675"]],[24,25,["G2981"]],[25,26,["G4160","G1212"]],[26,27,["G4571"]]]},{"k":24128,"v":[[0,1,["G5119"]],[1,2,["G756"]],[2,5,["G2653"]],[5,6,["G2532"]],[6,8,["G3660"]],[8,11,["G1492"]],[11,12,["G3756"]],[12,13,["G3588"]],[13,14,["G444"]],[14,15,["G2532"]],[15,16,["G2112"]],[16,18,["G220"]],[18,19,["G5455"]]]},{"k":24129,"v":[[0,1,["G2532"]],[1,2,["G4074"]],[2,3,["G3415"]],[3,4,["G3588"]],[4,5,["G4487"]],[5,7,["G2424"]],[7,9,["G2046"]],[9,11,["G846"]],[11,12,["G4250"]],[12,14,["G220"]],[14,15,["G5455"]],[15,18,["G533"]],[18,19,["G3165"]],[19,20,["G5151"]],[20,21,["G2532"]],[21,23,["G1831"]],[23,24,["G1854"]],[24,26,["G2799"]],[26,27,["G4090"]]]},{"k":24130,"v":[[0,1,["G1161"]],[1,3,["G4405"]],[3,5,["G1096"]],[5,6,["G3956"]],[6,7,["G3588"]],[7,9,["G749"]],[9,10,["G2532"]],[10,11,["G4245"]],[11,13,["G3588"]],[13,14,["G2992"]],[14,15,["G2983"]],[15,16,["G4824"]],[16,17,["G2596"]],[17,18,["G2424"]],[18,19,["G5620"]],[19,23,["G2289","G846"]]]},{"k":24131,"v":[[0,1,["G2532"]],[1,5,["G1210"]],[5,6,["G846"]],[6,10,["G520"]],[10,11,["G2532"]],[11,12,["G3860"]],[12,13,["G846"]],[13,15,["G4194"]],[15,16,["G4091"]],[16,17,["G3588"]],[17,18,["G2232"]]]},{"k":24132,"v":[[0,1,["G5119"]],[1,2,["G2455"]],[2,5,["G3860"]],[5,6,["G846"]],[6,9,["G1492"]],[9,10,["G3754"]],[10,13,["G2632"]],[13,14,["G3338"]],[14,18,["G654"]],[18,19,["G3588"]],[19,20,["G5144"]],[20,23,["G694"]],[23,25,["G3588"]],[25,27,["G749"]],[27,28,["G2532"]],[28,29,["G4245"]]]},{"k":24133,"v":[[0,1,["G3004"]],[1,4,["G264"]],[4,9,["G3860"]],[9,11,["G121"]],[11,12,["G129"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G2036"]],[15,16,["G5101"]],[16,19,["G4314"]],[19,20,["G2248"]],[20,21,["G3700"]],[21,22,["G4771"]],[22,24,[]]]},{"k":24134,"v":[[0,1,["G2532"]],[1,4,["G4496"]],[4,5,["G3588"]],[5,8,["G694"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G3485"]],[11,13,["G402"]],[13,14,["G2532"]],[14,15,["G565"]],[15,17,["G519"]],[17,18,[]]]},{"k":24135,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G2983"]],[5,6,["G3588"]],[6,8,["G694"]],[8,10,["G2036"]],[10,14,["G1832","G3756"]],[14,17,["G906"]],[17,18,["G846"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G2878"]],[21,22,["G1893"]],[22,24,["G2076"]],[24,26,["G5092"]],[26,28,["G129"]]]},{"k":24136,"v":[[0,1,["G1161"]],[1,3,["G2983"]],[3,4,["G4824"]],[4,6,["G59"]],[6,7,["G1537"]],[7,8,["G846"]],[8,9,["G3588"]],[9,10,["G2763"]],[10,11,["G68"]],[11,15,["G1519","G5027","G3581"]]]},{"k":24137,"v":[[0,1,["G1352"]],[1,2,["G1565"]],[2,3,["G68"]],[3,5,["G2564"]],[5,7,["G68"]],[7,9,["G129"]],[9,10,["G2193"]],[10,12,["G4594"]]]},{"k":24138,"v":[[0,1,["G5119"]],[1,3,["G4137"]],[3,4,["G3588"]],[4,7,["G4483"]],[7,8,["G1223"]],[8,9,["G2408"]],[9,10,["G3588"]],[10,11,["G4396"]],[11,12,["G3004"]],[12,13,["G2532"]],[13,15,["G2983"]],[15,16,["G3588"]],[16,17,["G5144"]],[17,20,["G694"]],[20,21,["G3588"]],[21,22,["G5092"]],[22,27,["G5091"]],[27,28,["G3739"]],[28,30,["G575"]],[30,32,["G5207"]],[32,34,["G2474"]],[34,36,["G5091"]]]},{"k":24139,"v":[[0,1,["G2532"]],[1,2,["G1325"]],[2,3,["G846"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G2763"]],[6,7,["G68"]],[7,8,["G2505"]],[8,10,["G2962"]],[10,11,["G4929"]],[11,12,["G3427"]]]},{"k":24140,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2476"]],[3,4,["G1715"]],[4,5,["G3588"]],[5,6,["G2232"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G2232"]],[9,10,["G1905"]],[10,11,["G846"]],[11,12,["G3004"]],[12,13,["G1488"]],[13,14,["G4771"]],[14,15,["G3588"]],[15,16,["G935"]],[16,18,["G3588"]],[18,19,["G2453"]],[19,20,["G1161"]],[20,21,["G2424"]],[21,22,["G5346"]],[22,24,["G846"]],[24,25,["G4771"]],[25,26,["G3004"]]]},{"k":24141,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G2723"]],[5,6,["G5259"]],[6,7,["G3588"]],[7,9,["G749"]],[9,10,["G2532"]],[10,11,["G4245"]],[11,13,["G611"]],[13,14,["G3762"]]]},{"k":24142,"v":[[0,1,["G5119"]],[1,2,["G3004"]],[2,3,["G4091"]],[3,5,["G846"]],[5,6,["G191"]],[6,8,["G3756"]],[8,11,["G4214"]],[11,14,["G2649"]],[14,15,["G4675"]]]},{"k":24143,"v":[[0,1,["G2532"]],[1,3,["G611","(G3756)"]],[3,4,["G846"]],[4,5,["G4314"]],[5,6,["G3761"]],[6,7,["G1520"]],[7,8,["G4487"]],[8,9,["G5620"]],[9,11,["G3588"]],[11,12,["G2232"]],[12,13,["G2296"]],[13,14,["G3029"]]]},{"k":24144,"v":[[0,1,["G1161"]],[1,2,["G2596"]],[2,4,["G1859"]],[4,5,["G3588"]],[5,6,["G2232"]],[6,8,["G1486"]],[8,10,["G630"]],[10,12,["G3588"]],[12,13,["G3793"]],[13,14,["G1520"]],[14,15,["G1198"]],[15,16,["G3739"]],[16,18,["G2309"]]]},{"k":24145,"v":[[0,1,["G1161"]],[1,3,["G2192"]],[3,4,["G5119"]],[4,6,["G1978"]],[6,7,["G1198"]],[7,8,["G3004"]],[8,9,["G912"]]]},{"k":24146,"v":[[0,1,["G3767"]],[1,3,["G846"]],[3,6,["G4863"]],[6,7,["G4091"]],[7,8,["G2036"]],[8,10,["G846"]],[10,11,["G5101"]],[11,12,["G2309"]],[12,16,["G630"]],[16,18,["G5213"]],[18,19,["G912"]],[19,20,["G2228"]],[20,21,["G2424"]],[21,24,["G3004"]],[24,25,["G5547"]]]},{"k":24147,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G1223"]],[5,6,["G5355"]],[6,9,["G3860"]],[9,10,["G846"]]]},{"k":24148,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,5,["G2521"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,9,["G968"]],[9,10,["G846"]],[10,11,["G1135"]],[11,12,["G649"]],[12,13,["G4314"]],[13,14,["G846"]],[14,15,["G3004"]],[15,20,["G3367","G4671"]],[20,22,["G1565"]],[22,24,["G1342"]],[24,25,["G1063"]],[25,28,["G3958"]],[28,30,["G4183"]],[30,32,["G4594"]],[32,33,["G2596"]],[33,35,["G3677"]],[35,36,["G1223"]],[36,38,["G846"]]]},{"k":24149,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G2532"]],[5,6,["G4245"]],[6,7,["G3982"]],[7,8,["G3588"]],[8,9,["G3793"]],[9,10,["G2443"]],[10,13,["G154"]],[13,14,["G912"]],[14,15,["G1161"]],[15,16,["G622"]],[16,17,["G2424"]]]},{"k":24150,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G2232"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G5101"]],[8,9,["G575"]],[9,10,["G3588"]],[10,11,["G1417"]],[11,12,["G2309"]],[12,16,["G630"]],[16,18,["G5213","(G1161)"]],[18,19,["G3588"]],[19,20,["G2036"]],[20,21,["G912"]]]},{"k":24151,"v":[[0,1,["G4091"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G5101"]],[5,8,["G4160"]],[8,9,["G3767"]],[9,11,["G2424"]],[11,14,["G3004"]],[14,15,["G5547"]],[15,17,["G3956"]],[17,18,["G3004"]],[18,20,["G846"]],[20,24,["G4717"]]]},{"k":24152,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2232"]],[3,4,["G5346"]],[4,5,["G1063"]],[5,6,["G5101"]],[6,7,["G2556"]],[7,10,["G4160"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,14,["G2896"]],[14,16,["G4057"]],[16,17,["G3004"]],[17,21,["G4717"]]]},{"k":24153,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,3,["G1492"]],[3,4,["G3754"]],[4,7,["G5623"]],[7,8,["G3762"]],[8,9,["G235"]],[9,11,["G3123"]],[11,13,["G2351"]],[13,15,["G1096"]],[15,17,["G2983"]],[17,18,["G5204"]],[18,20,["G633"]],[20,22,["G5495"]],[22,23,["G561"]],[23,24,["G3588"]],[24,25,["G3793"]],[25,26,["G3004"]],[26,28,["G1510"]],[28,29,["G121"]],[29,30,["G575"]],[30,31,["G3588"]],[31,32,["G129"]],[32,34,["G5127"]],[34,36,["G1342"]],[36,37,["G3700"]],[37,38,["G5210"]],[38,40,[]]]},{"k":24154,"v":[[0,1,["G2532"]],[1,2,["G611"]],[2,3,["G3956"]],[3,4,["G3588"]],[4,5,["G2992"]],[5,7,["G2036"]],[7,8,["G846"]],[8,9,["G129"]],[9,11,["G1909"]],[11,12,["G2248"]],[12,13,["G2532"]],[13,14,["G1909"]],[14,15,["G2257"]],[15,16,["G5043"]]]},{"k":24155,"v":[[0,1,["G5119"]],[1,2,["G630"]],[2,4,["G912"]],[4,6,["G846"]],[6,7,["G1161"]],[7,11,["G5417"]],[11,12,["G2424"]],[12,14,["G3860"]],[14,16,["G2443"]],[16,18,["G4717"]]]},{"k":24156,"v":[[0,1,["G5119"]],[1,2,["G3588"]],[2,3,["G4757"]],[3,5,["G3588"]],[5,6,["G2232"]],[6,7,["G3880"]],[7,8,["G2424"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,12,["G4232"]],[12,14,["G4863"]],[14,15,["G1909"]],[15,16,["G846"]],[16,17,["G3588"]],[17,18,["G3650"]],[18,19,["G4686"]],[19,21,[]]]},{"k":24157,"v":[[0,1,["G2532"]],[1,3,["G1562"]],[3,4,["G846"]],[4,7,["G4060"]],[7,8,["G846"]],[8,10,["G2847"]],[10,11,["G5511"]]]},{"k":24158,"v":[[0,1,["G2532"]],[1,5,["G4120"]],[5,7,["G4735"]],[7,8,["G1537"]],[8,9,["G173"]],[9,11,["G2007"]],[11,13,["G1909"]],[13,14,["G846"]],[14,15,["G2776"]],[15,16,["G2532"]],[16,18,["G2563"]],[18,19,["G1909"]],[19,20,["G846"]],[20,22,["G1188"]],[22,23,["G2532"]],[23,27,["G1120"]],[27,28,["G1715"]],[28,29,["G846"]],[29,31,["G1702"]],[31,32,["G846"]],[32,33,["G3004"]],[33,34,["G5463"]],[34,35,["G935"]],[35,37,["G3588"]],[37,38,["G2453"]]]},{"k":24159,"v":[[0,1,["G2532"]],[1,3,["G1716"]],[3,4,["G1519"]],[4,5,["G846"]],[5,7,["G2983"]],[7,8,["G3588"]],[8,9,["G2563"]],[9,10,["G2532"]],[10,11,["G5180"]],[11,12,["G846"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G2776"]]]},{"k":24160,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,6,["G1702"]],[6,7,["G846"]],[7,9,["G1562"]],[9,10,["G3588"]],[10,11,["G5511"]],[11,13,["G1562"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G1746"]],[16,18,["G846"]],[18,19,["G2440"]],[19,21,["G846"]],[21,22,["G2532"]],[22,25,["G520","G846"]],[25,27,["G4717"]],[27,28,[]]]},{"k":24161,"v":[[0,1,["G1161"]],[1,5,["G1831"]],[5,7,["G2147"]],[7,9,["G444"]],[9,11,["G2956"]],[11,12,["G4613"]],[12,14,["G3686"]],[14,15,["G5126"]],[15,17,["G29"]],[17,18,["G2443"]],[18,19,["G142"]],[19,20,["G846"]],[20,21,["G4716"]]]},{"k":24162,"v":[[0,1,["G2532"]],[1,5,["G2064"]],[5,6,["G1519"]],[6,8,["G5117"]],[8,9,["G3004"]],[9,10,["G1115"]],[10,11,["G3739"]],[11,12,["G2076"]],[12,14,["G3004"]],[14,16,["G5117"]],[16,19,["G2898"]]]},{"k":24163,"v":[[0,2,["G1325"]],[2,3,["G846"]],[3,4,["G3690"]],[4,6,["G4095"]],[6,7,["G3396"]],[7,8,["G3326"]],[8,9,["G5521"]],[9,10,["G2532"]],[10,14,["G1089"]],[14,17,["G2309"]],[17,18,["G3756"]],[18,19,["G4095"]]]},{"k":24164,"v":[[0,1,["G1161"]],[1,3,["G4717"]],[3,4,["G846"]],[4,6,["G1266"]],[6,7,["G846"]],[7,8,["G2440"]],[8,9,["G906"]],[9,10,["G2819"]],[10,11,["G2443"]],[11,15,["G4137"]],[15,18,["G4483"]],[18,19,["G5259"]],[19,20,["G3588"]],[20,21,["G4396"]],[21,23,["G1266"]],[23,24,["G3450"]],[24,25,["G2440"]],[25,27,["G1438"]],[27,28,["G2532"]],[28,29,["G1909"]],[29,30,["G3450"]],[30,31,["G2441"]],[31,34,["G906"]],[34,35,["G2819"]]]},{"k":24165,"v":[[0,1,["G2532"]],[1,3,["G2521"]],[3,5,["G5083"]],[5,6,["G846"]],[6,7,["G1563"]]]},{"k":24166,"v":[[0,1,["G2532"]],[1,3,["G2007"]],[3,4,["G1883"]],[4,5,["G846"]],[5,6,["G2776"]],[6,7,["G846"]],[7,8,["G156"]],[8,9,["G1125"]],[9,10,["G3778"]],[10,11,["G2076"]],[11,12,["G2424"]],[12,13,["G3588"]],[13,14,["G935"]],[14,16,["G3588"]],[16,17,["G2453"]]]},{"k":24167,"v":[[0,1,["G5119"]],[1,4,["G1417"]],[4,5,["G3027"]],[5,6,["G4717"]],[6,7,["G4862"]],[7,8,["G846"]],[8,9,["G1520"]],[9,10,["G1537"]],[10,13,["G1188"]],[13,14,["G2532"]],[14,15,["G1520"]],[15,16,["G1537"]],[16,18,["G2176"]]]},{"k":24168,"v":[[0,1,["G1161"]],[1,5,["G3899"]],[5,6,["G987"]],[6,7,["G846"]],[7,8,["G2795"]],[8,9,["G848"]],[9,10,["G2776"]]]},{"k":24169,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,5,["G2647"]],[5,6,["G3588"]],[6,7,["G3485"]],[7,8,["G2532"]],[8,9,["G3618"]],[9,11,["G1722"]],[11,12,["G5140"]],[12,13,["G2250"]],[13,14,["G4982"]],[14,15,["G4572"]],[15,16,["G1487"]],[16,18,["G1488"]],[18,20,["G5207"]],[20,22,["G2316"]],[22,24,["G2597"]],[24,25,["G575"]],[25,26,["G3588"]],[26,27,["G4716"]]]},{"k":24170,"v":[[0,0,["(G1161)"]],[0,1,["G3668"]],[1,2,["G2532"]],[2,3,["G3588"]],[3,5,["G749"]],[5,6,["G1702"]],[6,8,["G3326"]],[8,9,["G3588"]],[9,10,["G1122"]],[10,11,["G2532"]],[11,12,["G4245"]],[12,13,["G3004"]]]},{"k":24171,"v":[[0,2,["G4982"]],[2,3,["G243"]],[3,4,["G1438"]],[4,6,["G1410","G3756"]],[6,7,["G4982"]],[7,8,["G1487"]],[8,10,["G2076"]],[10,12,["G935"]],[12,14,["G2474"]],[14,17,["G3568"]],[17,19,["G2597"]],[19,20,["G575"]],[20,21,["G3588"]],[21,22,["G4716"]],[22,23,["G2532"]],[23,26,["G4100"]],[26,27,["G846"]]]},{"k":24172,"v":[[0,2,["G3982"]],[2,3,["G1909"]],[3,4,["G2316"]],[4,7,["G4506"]],[7,8,["G846"]],[8,9,["G3568"]],[9,10,["G1487"]],[10,12,["G2309"]],[12,14,["G846"]],[14,15,["G1063"]],[15,17,["G2036"]],[17,19,["G1510"]],[19,21,["G5207"]],[21,23,["G2316"]]]},{"k":24173,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G3027"]],[2,3,["G846"]],[3,7,["G4957"]],[7,8,["G846"]],[8,14,["G3679","G846"]]]},{"k":24174,"v":[[0,1,["G1161"]],[1,2,["G575"]],[2,4,["G1623"]],[4,5,["G5610"]],[5,7,["G1096"]],[7,8,["G4655"]],[8,9,["G1909"]],[9,10,["G3956"]],[10,11,["G3588"]],[11,12,["G1093"]],[12,13,["G2193"]],[13,15,["G1766"]],[15,16,["G5610"]]]},{"k":24175,"v":[[0,1,["G1161"]],[1,2,["G4012"]],[2,3,["G3588"]],[3,4,["G1766"]],[4,5,["G5610"]],[5,6,["G2424"]],[6,7,["G310"]],[7,10,["G3173"]],[10,11,["G5456"]],[11,12,["G3004"]],[12,13,["G2241"]],[13,14,["G2241"]],[14,15,["G2982"]],[15,16,["G4518"]],[16,20,["G5123"]],[20,21,["G3450"]],[21,22,["G2316"]],[22,23,["G3450"]],[23,24,["G2316"]],[24,25,["G2444"]],[25,28,["G1459"]],[28,29,["G3165"]]]},{"k":24176,"v":[[0,0,["(G1161)"]],[0,1,["G5100"]],[1,5,["G2476"]],[5,6,["G1563"]],[6,9,["G191"]],[9,11,["G3004"]],[11,12,["G3778"]],[12,14,["G5455"]],[14,16,["G2243"]]]},{"k":24177,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G1520"]],[3,4,["G1537"]],[4,5,["G846"]],[5,6,["G5143"]],[6,7,["G2532"]],[7,8,["G2983"]],[8,10,["G4699"]],[10,11,["G5037"]],[11,12,["G4130"]],[12,15,["G3690"]],[15,16,["G2532"]],[16,17,["G4060"]],[17,21,["G2563"]],[21,26,["G4222","G846"]]]},{"k":24178,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G3062"]],[2,3,["G3004"]],[3,5,["G863"]],[5,8,["G1492"]],[8,9,["G1487"]],[9,10,["G2243"]],[10,12,["G2064"]],[12,14,["G4982"]],[14,15,["G846"]]]},{"k":24179,"v":[[0,0,["(G1161)"]],[0,1,["G2424"]],[1,5,["G2896"]],[5,6,["G3825"]],[6,9,["G3173"]],[9,10,["G5456"]],[10,12,["G863"]],[12,13,["G3588"]],[13,14,["G4151"]]]},{"k":24180,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G3588"]],[3,4,["G2665"]],[4,6,["G3588"]],[6,7,["G3485"]],[7,9,["G4977"]],[9,10,["G1519"]],[10,11,["G1417"]],[11,12,["G575"]],[12,14,["G509"]],[14,15,["G2193"]],[15,17,["G2736"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G1093"]],[20,22,["G4579"]],[22,23,["G2532"]],[23,24,["G3588"]],[24,25,["G4073"]],[25,26,["G4977"]]]},{"k":24181,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3419"]],[3,5,["G455"]],[5,6,["G2532"]],[6,7,["G4183"]],[7,8,["G4983"]],[8,10,["G3588"]],[10,11,["G40"]],[11,13,["G2837"]],[13,14,["G1453"]]]},{"k":24182,"v":[[0,1,["G2532"]],[1,2,["G1831"]],[2,4,["G1537"]],[4,5,["G3588"]],[5,6,["G3419"]],[6,7,["G3326"]],[7,8,["G846"]],[8,9,["G1454"]],[9,11,["G1525"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G40"]],[14,15,["G4172"]],[15,16,["G2532"]],[16,17,["G1718"]],[17,19,["G4183"]]]},{"k":24183,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1543"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,9,["G3326"]],[9,10,["G846"]],[10,11,["G5083"]],[11,12,["G2424"]],[12,13,["G1492"]],[13,14,["G3588"]],[14,15,["G4578"]],[15,16,["G2532"]],[16,21,["G1096"]],[21,23,["G5399"]],[23,24,["G4970"]],[24,25,["G3004"]],[25,26,["G230"]],[26,27,["G3778"]],[27,28,["G2258"]],[28,30,["G5207"]],[30,32,["G2316"]]]},{"k":24184,"v":[[0,1,["G1161"]],[1,2,["G4183"]],[2,3,["G1135"]],[3,4,["G2258"]],[4,5,["G1563"]],[5,6,["G2334"]],[6,8,["G575","G3113"]],[8,9,["G3748"]],[9,10,["G190"]],[10,11,["G2424"]],[11,12,["G575"]],[12,13,["G1056"]],[13,14,["G1247"]],[14,16,["G846"]]]},{"k":24185,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G2258"]],[3,4,["G3137"]],[4,5,["G3094"]],[5,6,["G2532"]],[6,7,["G3137"]],[7,8,["G3588"]],[8,9,["G3384"]],[9,11,["G2385"]],[11,12,["G2532"]],[12,13,["G2500"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G3384"]],[16,18,["G2199"]],[18,19,["G5207"]]]},{"k":24186,"v":[[0,1,["G1161"]],[1,3,["G3798"]],[3,5,["G1096"]],[5,7,["G2064"]],[7,9,["G4145"]],[9,10,["G444"]],[10,11,["G575"]],[11,12,["G707"]],[12,13,["G5122"]],[13,14,["G2501"]],[14,15,["G3739"]],[15,16,["G2532"]],[16,17,["G846"]],[17,20,["G3100","G2424"]]]},{"k":24187,"v":[[0,1,["G3778"]],[1,2,["G4334"]],[2,4,["G4091"]],[4,6,["G154"]],[6,7,["G3588"]],[7,8,["G4983"]],[8,10,["G2424"]],[10,11,["G5119"]],[11,12,["G4091"]],[12,13,["G2753"]],[13,14,["G3588"]],[14,15,["G4983"]],[15,18,["G591"]]]},{"k":24188,"v":[[0,1,["G2532"]],[1,3,["G2501"]],[3,5,["G2983"]],[5,6,["G3588"]],[6,7,["G4983"]],[7,9,["G1794"]],[9,10,["G846"]],[10,13,["G2513"]],[13,15,["G4616"]]]},{"k":24189,"v":[[0,1,["G2532"]],[1,2,["G5087"]],[2,3,["G846"]],[3,4,["G1722"]],[4,6,["G848"]],[6,7,["G2537"]],[7,8,["G3419"]],[8,9,["G3739"]],[9,13,["G2998"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G4073"]],[16,17,["G2532"]],[17,19,["G4351"]],[19,21,["G3173"]],[21,22,["G3037"]],[22,24,["G3588"]],[24,25,["G2374"]],[25,27,["G3588"]],[27,28,["G3419"]],[28,30,["G565"]]]},{"k":24190,"v":[[0,1,["G1161"]],[1,2,["G1563"]],[2,3,["G2258"]],[3,4,["G3137"]],[4,5,["G3094"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G243"]],[8,9,["G3137"]],[9,10,["G2521"]],[10,12,["G561"]],[12,13,["G3588"]],[13,14,["G5028"]]]},{"k":24191,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G1887"]],[4,5,["G3748"]],[5,6,["G2076","G3326"]],[6,10,["G3588"]],[10,11,["G3904"]],[11,12,["G3588"]],[12,14,["G749"]],[14,15,["G2532"]],[15,16,["G5330"]],[16,18,["G4863"]],[18,19,["G4314"]],[19,20,["G4091"]]]},{"k":24192,"v":[[0,1,["G3004"]],[1,2,["G2962"]],[2,4,["G3415"]],[4,5,["G3754"]],[5,6,["G1565"]],[6,7,["G4108"]],[7,8,["G2036"]],[8,9,["G2089"]],[9,13,["G2198"]],[13,14,["G3326"]],[14,15,["G5140"]],[15,16,["G2250"]],[16,20,["G1453"]]]},{"k":24193,"v":[[0,1,["G2753"]],[1,2,["G3767"]],[2,4,["G3588"]],[4,5,["G5028"]],[5,8,["G805"]],[8,9,["G2193"]],[9,10,["G3588"]],[10,11,["G5154"]],[11,12,["G2250"]],[12,13,["G3379"]],[13,14,["G846"]],[14,15,["G3101"]],[15,16,["G2064"]],[16,18,["G3571"]],[18,22,["G2813","G846"]],[22,23,["G2532"]],[23,24,["G2036"]],[24,26,["G3588"]],[26,27,["G2992"]],[27,30,["G1453"]],[30,31,["G575"]],[31,32,["G3588"]],[32,33,["G3498"]],[33,34,["G2532"]],[34,35,["G3588"]],[35,36,["G2078"]],[36,37,["G4106"]],[37,39,["G2071"]],[39,40,["G5501"]],[40,42,["G3588"]],[42,43,["G4413"]]]},{"k":24194,"v":[[0,0,["(G1161)"]],[0,1,["G4091"]],[1,2,["G5346"]],[2,4,["G846"]],[4,6,["G2192"]],[6,8,["G2892"]],[8,11,["G5217"]],[11,15,["G805"]],[15,16,["G5613"]],[16,18,["G1492"]]]},{"k":24195,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4198"]],[3,8,["G805","G3588","G5028"]],[8,9,["G4972"]],[9,10,["G3588"]],[10,11,["G3037"]],[11,12,["G2532"]],[12,15,["G3326","G2892"]]]},{"k":24196,"v":[[0,3,["(G3796)"]],[3,6,["G4521"]],[6,11,["G2020"]],[11,12,["G1519"]],[12,14,["G3391"]],[14,18,["G4521"]],[18,19,["G2064"]],[19,20,["G3137"]],[20,21,["G3094"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G243"]],[24,25,["G3137"]],[25,27,["G2334"]],[27,28,["G3588"]],[28,29,["G5028"]]]},{"k":24197,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G1096"]],[4,6,["G3173"]],[6,7,["G4578"]],[7,8,["G1063"]],[8,10,["G32"]],[10,13,["G2962"]],[13,14,["G2597"]],[14,15,["G1537"]],[15,16,["G3772"]],[16,18,["G4334"]],[18,21,["G617"]],[21,22,["G3588"]],[22,23,["G3037"]],[23,24,["G575"]],[24,25,["G3588"]],[25,26,["G2374"]],[26,27,["G2532"]],[27,28,["G2521"]],[28,29,["G1883"]],[29,30,["G846"]]]},{"k":24198,"v":[[0,0,["(G1161)"]],[0,1,["G846"]],[1,2,["G2397"]],[2,3,["G2258"]],[3,4,["G5613"]],[4,5,["G796"]],[5,6,["G2532"]],[6,7,["G846"]],[7,8,["G1742"]],[8,9,["G3022"]],[9,10,["G5616"]],[10,11,["G5510"]]]},{"k":24199,"v":[[0,1,["G1161"]],[1,2,["G575"]],[2,3,["G5401"]],[3,5,["G846"]],[5,6,["G3588"]],[6,7,["G5083"]],[7,9,["G4579"]],[9,10,["G2532"]],[10,11,["G1096"]],[11,12,["G5616"]],[12,13,["G3498"]],[13,14,[]]]},{"k":24200,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G32"]],[3,4,["G611"]],[4,6,["G2036"]],[6,8,["G3588"]],[8,9,["G1135"]],[9,10,["G5399"]],[10,11,["G3361"]],[11,12,["G5210"]],[12,13,["G1063"]],[13,15,["G1492"]],[15,16,["G3754"]],[16,18,["G2212"]],[18,19,["G2424"]],[19,22,["G4717"]]]},{"k":24201,"v":[[0,2,["G2076"]],[2,3,["G3756"]],[3,4,["G5602"]],[4,5,["G1063"]],[5,8,["G1453"]],[8,9,["G2531"]],[9,11,["G2036"]],[11,12,["G1205"]],[12,13,["G1492"]],[13,14,["G3588"]],[14,15,["G5117"]],[15,16,["G3699"]],[16,17,["G3588"]],[17,18,["G2962"]],[18,19,["G2749"]]]},{"k":24202,"v":[[0,1,["G2532"]],[1,2,["G4198"]],[2,3,["G5035"]],[3,5,["G2036"]],[5,6,["G846"]],[6,7,["G3101"]],[7,8,["G3754"]],[8,11,["G1453"]],[11,12,["G575"]],[12,13,["G3588"]],[13,14,["G3498"]],[14,15,["G2532"]],[15,16,["G2400"]],[16,19,["G4254"]],[19,20,["G5209"]],[20,21,["G1519"]],[21,22,["G1056"]],[22,23,["G1563"]],[23,26,["G3700"]],[26,27,["G846"]],[27,28,["G2400"]],[28,31,["G2036"]],[31,32,["G5213"]]]},{"k":24203,"v":[[0,1,["G2532"]],[1,3,["G1831"]],[3,4,["G5035"]],[4,5,["G575"]],[5,6,["G3588"]],[6,7,["G3419"]],[7,8,["G3326"]],[8,9,["G5401"]],[9,10,["G2532"]],[10,11,["G3173"]],[11,12,["G5479"]],[12,15,["G5143"]],[15,20,["G518","G846","G3101"]]]},{"k":24204,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,4,["G4198"]],[4,6,["G518"]],[6,7,["G846"]],[7,8,["G3101"]],[8,9,["G2400","(G2532)"]],[9,10,["G2424"]],[10,11,["G528"]],[11,12,["G846"]],[12,13,["G3004"]],[13,15,["G5463"]],[15,16,["G1161"]],[16,17,["G3588"]],[17,18,["G4334"]],[18,20,["G2902"]],[20,21,["G846"]],[21,23,["G3588"]],[23,24,["G4228"]],[24,25,["G2532"]],[25,26,["G4352"]],[26,27,["G846"]]]},{"k":24205,"v":[[0,1,["G5119"]],[1,2,["G3004"]],[2,3,["G2424"]],[3,5,["G846"]],[5,8,["G5399","G3361"]],[8,9,["G5217"]],[9,10,["G518"]],[10,11,["G3450"]],[11,12,["G80"]],[12,13,["G2443"]],[13,15,["G565"]],[15,16,["G1519"]],[16,17,["G1056"]],[17,19,["G2546"]],[19,22,["G3700"]],[22,23,["G3165"]]]},{"k":24206,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G4198"]],[5,6,["G2400"]],[6,7,["G5100"]],[7,9,["G3588"]],[9,10,["G2892"]],[10,11,["G2064"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G4172"]],[14,16,["G518"]],[16,18,["G3588"]],[18,20,["G749"]],[20,21,["G537"]],[21,26,["G1096"]]]},{"k":24207,"v":[[0,1,["G2532"]],[1,5,["G4863"]],[5,6,["G3326"]],[6,7,["G3588"]],[7,8,["G4245"]],[8,9,["G5037"]],[9,11,["G2983"]],[11,12,["G4824"]],[12,14,["G1325"]],[14,15,["G2425"]],[15,16,["G694"]],[16,18,["G3588"]],[18,19,["G4757"]]]},{"k":24208,"v":[[0,1,["G3004"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G3101"]],[5,6,["G2064"]],[6,8,["G3571"]],[8,10,["G2813"]],[10,11,["G846"]],[11,14,["G2257"]],[14,15,["G2837"]]]},{"k":24209,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,3,["G5124"]],[3,8,["G191","G1909","G2232"]],[8,9,["G2249"]],[9,11,["G3982"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G4160","G275"]],[14,15,["G5209"]]]},{"k":24210,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2983"]],[3,4,["G3588"]],[4,5,["G694"]],[5,7,["G4160"]],[7,8,["G5613"]],[8,11,["G1321"]],[11,12,["G2532"]],[12,13,["G3778"]],[13,14,["G3056"]],[14,17,["G1310"]],[17,18,["G3844"]],[18,20,["G2453"]],[20,21,["G3360"]],[21,23,["G4594"]]]},{"k":24211,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1733"]],[3,4,["G3101"]],[4,6,["G4198"]],[6,7,["G1519"]],[7,8,["G1056"]],[8,9,["G1519"]],[9,11,["G3735"]],[11,12,["G3757"]],[12,13,["G2424"]],[13,15,["G5021"]],[15,16,["G846"]]]},{"k":24212,"v":[[0,1,["G2532"]],[1,4,["G1492"]],[4,5,["G846"]],[5,7,["G4352"]],[7,8,["G846"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G1365"]]]},{"k":24213,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G4334"]],[3,5,["G2980"]],[5,7,["G846"]],[7,8,["G3004"]],[8,9,["G3956"]],[9,10,["G1849"]],[10,12,["G1325"]],[12,14,["G3427"]],[14,15,["G1722"]],[15,16,["G3772"]],[16,17,["G2532"]],[17,18,["G1909"]],[18,19,["G1093"]]]},{"k":24214,"v":[[0,1,["G4198"]],[1,3,["G3767"]],[3,5,["G3100"]],[5,6,["G3956"]],[6,7,["G1484"]],[7,8,["G907"]],[8,9,["G846"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G3686"]],[12,14,["G3588"]],[14,15,["G3962"]],[15,16,["G2532"]],[16,18,["G3588"]],[18,19,["G5207"]],[19,20,["G2532"]],[20,22,["G3588"]],[22,23,["G40"]],[23,24,["G4151"]]]},{"k":24215,"v":[[0,1,["G1321"]],[1,2,["G846"]],[2,4,["G5083"]],[4,6,["G3956"]],[6,7,["G3745"]],[7,10,["G1781"]],[10,11,["G5213"]],[11,12,["G2532"]],[12,13,["G2400"]],[13,14,["G1473"]],[14,15,["G1510"]],[15,16,["G3326"]],[16,17,["G5216"]],[17,18,["G3956","G2250"]],[18,20,["G2193"]],[20,21,["G3588"]],[21,22,["G4930"]],[22,24,["G3588"]],[24,25,["G165"]],[25,26,["G281"]]]},{"k":24216,"v":[[0,2,["G746"]],[2,4,["G3588"]],[4,5,["G2098"]],[5,7,["G2424"]],[7,8,["G5547"]],[8,10,["G5207"]],[10,12,["G2316"]]]},{"k":24217,"v":[[0,1,["G5613"]],[1,4,["G1125"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G4396"]],[7,8,["G2400"]],[8,9,["G1473"]],[9,10,["G649"]],[10,11,["G3450"]],[11,12,["G32"]],[12,13,["G4253"]],[13,14,["G4675"]],[14,15,["G4383"]],[15,16,["G3739"]],[16,18,["G2680"]],[18,19,["G4675"]],[19,20,["G3598"]],[20,21,["G1715"]],[21,22,["G4675"]]]},{"k":24218,"v":[[0,2,["G5456"]],[2,5,["G994"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G2048"]],[8,9,["G2090"]],[9,11,["G3588"]],[11,12,["G3598"]],[12,15,["G2962"]],[15,16,["G4160"]],[16,17,["G846"]],[17,18,["G5147"]],[18,19,["G2117"]]]},{"k":24219,"v":[[0,1,["G2491"]],[1,2,["G1096"]],[2,3,["G907"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G2048"]],[6,7,["G2532"]],[7,8,["G2784"]],[8,10,["G908"]],[10,12,["G3341"]],[12,13,["G1519"]],[13,15,["G859"]],[15,17,["G266"]]]},{"k":24220,"v":[[0,1,["G2532"]],[1,4,["G1607"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G3956"]],[7,8,["G3588"]],[8,9,["G5561"]],[9,11,["G2449"]],[11,12,["G2532"]],[12,15,["G2415"]],[15,16,["G2532"]],[16,18,["G3956"]],[18,19,["G907"]],[19,20,["G5259"]],[20,21,["G846"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G4215"]],[24,26,["G2446"]],[26,27,["G1843"]],[27,28,["G848"]],[28,29,["G266"]]]},{"k":24221,"v":[[0,1,["G1161"]],[1,2,["G2491"]],[2,3,["G2258"]],[3,5,["G1746"]],[5,6,["G2574"]],[6,7,["G2359"]],[7,8,["G2532"]],[8,11,["G2223"]],[11,14,["G1193"]],[14,15,["G4012"]],[15,16,["G848"]],[16,17,["G3751"]],[17,18,["G2532"]],[18,21,["G2068"]],[21,22,["G200"]],[22,23,["G2532"]],[23,24,["G66"]],[24,25,["G3192"]]]},{"k":24222,"v":[[0,1,["G2532"]],[1,2,["G2784"]],[2,3,["G3004"]],[3,5,["G2064"]],[5,6,["G3588"]],[6,7,["G2478"]],[7,9,["G3450"]],[9,10,["G3694"]],[10,11,["G3450"]],[11,12,["G3588"]],[12,13,["G2438"]],[13,15,["G848"]],[15,16,["G5266"]],[16,17,["(G3739)"]],[17,18,["G1510"]],[18,19,["G3756"]],[19,20,["G2425"]],[20,23,["G2955"]],[23,25,["G3089"]]]},{"k":24223,"v":[[0,1,["G1473"]],[1,2,["G3303"]],[2,4,["G907"]],[4,5,["G5209"]],[5,6,["G1722"]],[6,7,["G5204"]],[7,8,["G1161"]],[8,9,["G846"]],[9,11,["G907"]],[11,12,["G5209"]],[12,13,["G1722"]],[13,15,["G40"]],[15,16,["G4151"]]]},{"k":24224,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,6,["G1722"]],[6,7,["G1565"]],[7,8,["G2250"]],[8,10,["G2424"]],[10,11,["G2064"]],[11,12,["G575"]],[12,13,["G3478"]],[13,15,["G1056"]],[15,16,["G2532"]],[16,18,["G907"]],[18,19,["G5259"]],[19,20,["G2491"]],[20,21,["G1519"]],[21,22,["G2446"]]]},{"k":24225,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G305"]],[4,6,["G575"]],[6,7,["G3588"]],[7,8,["G5204"]],[8,10,["G1492"]],[10,11,["G3588"]],[11,12,["G3772"]],[12,13,["G4977"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G4151"]],[16,17,["G5616"]],[17,19,["G4058"]],[19,20,["G2597"]],[20,21,["G1909"]],[21,22,["G846"]]]},{"k":24226,"v":[[0,1,["G2532"]],[1,3,["G1096"]],[3,5,["G5456"]],[5,6,["G1537"]],[6,7,["G3772"]],[7,9,["G4771"]],[9,10,["G1488"]],[10,11,["G3450"]],[11,12,["G27"]],[12,13,["G5207"]],[13,14,["G1722"]],[14,15,["G3739"]],[15,19,["G2106"]]]},{"k":24227,"v":[[0,1,["G2532"]],[1,2,["G2117"]],[2,3,["G3588"]],[3,4,["G4151"]],[4,5,["G1544"]],[5,6,["G846"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G2048"]]]},{"k":24228,"v":[[0,1,["G2532"]],[1,3,["G2258"]],[3,4,["G1563"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G2048"]],[7,8,["G5062"]],[8,9,["G2250"]],[9,10,["G3985"]],[10,11,["G5259"]],[11,12,["G4567"]],[12,13,["G2532"]],[13,14,["G2258"]],[14,15,["G3326"]],[15,16,["G3588"]],[16,18,["G2342"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G32"]],[21,22,["G1247"]],[22,24,["G846"]]]},{"k":24229,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,4,["G2491"]],[4,8,["G3860"]],[8,9,["G2424"]],[9,10,["G2064"]],[10,11,["G1519"]],[11,12,["G1056"]],[12,13,["G2784"]],[13,14,["G3588"]],[14,15,["G2098"]],[15,17,["G3588"]],[17,18,["G932"]],[18,20,["G2316"]]]},{"k":24230,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,3,["G3588"]],[3,4,["G2540"]],[4,6,["G4137"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G932"]],[9,11,["G2316"]],[11,14,["G1448"]],[14,15,["G3340"]],[15,17,["G2532"]],[17,18,["G4100"]],[18,19,["G3588"]],[19,20,["G2098"]]]},{"k":24231,"v":[[0,1,["G1161"]],[1,4,["G4043"]],[4,5,["G3844"]],[5,6,["G3588"]],[6,7,["G2281"]],[7,9,["G1056"]],[9,11,["G1492"]],[11,12,["G4613"]],[12,13,["G2532"]],[13,14,["G406"]],[14,15,["G846"]],[15,16,["G80"]],[16,17,["G906"]],[17,19,["G293"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G2281"]],[22,23,["G1063"]],[23,25,["G2258"]],[25,26,["G231"]]]},{"k":24232,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G1205"]],[6,8,["G3694"]],[8,9,["G3450"]],[9,10,["G2532"]],[10,13,["G4160"]],[13,14,["G5209"]],[14,16,["G1096"]],[16,17,["G231"]],[17,19,["G444"]]]},{"k":24233,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G863"]],[4,5,["G848"]],[5,6,["G1350"]],[6,7,["G2532"]],[7,8,["G190"]],[8,9,["G846"]]]},{"k":24234,"v":[[0,1,["G2532"]],[1,5,["G4260"]],[5,8,["G3641"]],[8,9,["G1564"]],[9,11,["G1492"]],[11,12,["G2385"]],[12,13,["G3588"]],[13,16,["G2199"]],[16,17,["G2532"]],[17,18,["G2491"]],[18,19,["G846"]],[19,20,["G80"]],[20,21,["G846"]],[21,22,["G2532"]],[22,24,["G1722"]],[24,25,["G3588"]],[25,26,["G4143"]],[26,27,["G2675"]],[27,29,["G1350"]]]},{"k":24235,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G2564"]],[4,5,["G846"]],[5,6,["G2532"]],[6,8,["G863"]],[8,9,["G848"]],[9,10,["G3962"]],[10,11,["G2199"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G4143"]],[14,15,["G3326"]],[15,16,["G3588"]],[16,18,["G3411"]],[18,19,["G2532"]],[19,20,["G565"]],[20,21,["G3694"]],[21,22,["G846"]]]},{"k":24236,"v":[[0,1,["G2532"]],[1,3,["G1531"]],[3,4,["G1519"]],[4,5,["G2584"]],[5,6,["G2532"]],[6,7,["G2112"]],[7,9,["G3588"]],[9,11,["G4521"]],[11,13,["G1525"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G4864"]],[16,18,["G1321"]]]},{"k":24237,"v":[[0,1,["G2532"]],[1,4,["G1605"]],[4,5,["G1909"]],[5,6,["G846"]],[6,7,["G1322"]],[7,8,["G1063"]],[8,10,["G2258","G1321"]],[10,11,["G846"]],[11,12,["G5613"]],[12,15,["G2192"]],[15,16,["G1849"]],[16,17,["G2532"]],[17,18,["G3756"]],[18,19,["G5613"]],[19,20,["G3588"]],[20,21,["G1122"]]]},{"k":24238,"v":[[0,1,["G2532"]],[1,3,["G2258"]],[3,4,["G1722"]],[4,5,["G846"]],[5,6,["G4864"]],[6,8,["G444"]],[8,9,["G1722"]],[9,11,["G169"]],[11,12,["G4151"]],[12,13,["G2532"]],[13,16,["G349"]]]},{"k":24239,"v":[[0,1,["G3004"]],[1,4,["G1436"]],[4,11,["G5101","G2254","G2532","G4671"]],[11,13,["G2424"]],[13,15,["G3479"]],[15,18,["G2064"]],[18,20,["G622"]],[20,21,["G2248"]],[21,23,["G1492"]],[23,24,["G4571"]],[24,25,["G5101"]],[25,27,["G1488"]],[27,28,["G3588"]],[28,30,["G40"]],[30,32,["G2316"]]]},{"k":24240,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2008"]],[3,4,["G846"]],[4,5,["G3004"]],[5,8,["G5392"]],[8,9,["G2532"]],[9,10,["G1831"]],[10,12,["G1537"]],[12,13,["G846"]]]},{"k":24241,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G169"]],[4,5,["G4151"]],[5,7,["G4682"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G2896"]],[10,13,["G3173"]],[13,14,["G5456"]],[14,16,["G1831"]],[16,18,["G1537"]],[18,19,["G846"]]]},{"k":24242,"v":[[0,1,["G2532"]],[1,4,["G3956"]],[4,5,["G2284"]],[5,7,["G5620"]],[7,9,["G4802"]],[9,10,["G4314"]],[10,11,["G848"]],[11,12,["G3004"]],[12,14,["G5101"]],[14,15,["G2076"]],[15,16,["G5124"]],[16,17,["G5101"]],[17,18,["G2537"]],[18,19,["G1322"]],[19,21,["G3778"]],[21,22,["G3754"]],[22,23,["G2596"]],[23,24,["G1849"]],[24,25,["G2004"]],[25,27,["G2532"]],[27,28,["G3588"]],[28,29,["G169"]],[29,30,["G4151"]],[30,31,["G2532"]],[31,34,["G5219"]],[34,35,["G846"]]]},{"k":24243,"v":[[0,1,["G1161"]],[1,2,["G2117"]],[2,3,["G846"]],[3,4,["G189"]],[4,6,["G1831"]],[6,7,["G1519"]],[7,8,["G3650"]],[8,9,["G3588"]],[9,12,["G4066"]],[12,13,["G1056"]]]},{"k":24244,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,6,["G1831"]],[6,8,["G1537"]],[8,9,["G3588"]],[9,10,["G4864"]],[10,12,["G2064"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G3614"]],[15,17,["G4613"]],[17,18,["G2532"]],[18,19,["G406"]],[19,20,["G3326"]],[20,21,["G2385"]],[21,22,["G2532"]],[22,23,["G2491"]]]},{"k":24245,"v":[[0,1,["G1161"]],[1,2,["G4613"]],[2,4,["G3994"]],[4,5,["G2621"]],[5,9,["G4445"]],[9,10,["G2532"]],[10,11,["G2112"]],[11,13,["G3004"]],[13,14,["G846"]],[14,15,["G4012"]],[15,16,["G846"]]]},{"k":24246,"v":[[0,1,["G2532"]],[1,3,["G4334"]],[3,5,["G2902"]],[5,6,["G846"]],[6,8,["G3588"]],[8,9,["G5495"]],[9,13,["G1453","G846"]],[13,14,["G2532"]],[14,15,["G2112"]],[15,16,["G3588"]],[16,17,["G4446"]],[17,18,["G863"]],[18,19,["G846"]],[19,20,["G2532"]],[20,22,["G1247"]],[22,24,["G846"]]]},{"k":24247,"v":[[0,1,["G1161"]],[1,3,["G3798","G1096"]],[3,4,["G3753"]],[4,5,["G3588"]],[5,6,["G2246"]],[6,8,["G1416"]],[8,10,["G5342"]],[10,11,["G4314"]],[11,12,["G846"]],[12,13,["G3956"]],[13,16,["G2192","G2560"]],[16,17,["G2532"]],[17,23,["G1139"]]]},{"k":24248,"v":[[0,1,["G2532"]],[1,2,["G3650"]],[2,3,["G3588"]],[3,4,["G4172"]],[4,5,["G2258"]],[5,7,["G1996"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,10,["G2374"]]]},{"k":24249,"v":[[0,1,["G2532"]],[1,3,["G2323"]],[3,4,["G4183"]],[4,7,["G2192","G2560"]],[7,9,["G4164"]],[9,10,["G3554"]],[10,11,["G2532"]],[11,13,["G1544"]],[13,14,["G4183"]],[14,15,["G1140"]],[15,16,["G2532"]],[16,17,["G863"]],[17,18,["G3756"]],[18,19,["G3588"]],[19,20,["G1140"]],[20,22,["G2980"]],[22,23,["G3754"]],[23,25,["G1492"]],[25,26,["G846"]]]},{"k":24250,"v":[[0,1,["G2532"]],[1,4,["G1773"]],[4,6,["G450"]],[6,11,["G3029","G4404"]],[11,14,["G1831"]],[14,15,["G2532"]],[15,16,["G565"]],[16,17,["G1519"]],[17,19,["G2048"]],[19,20,["G5117"]],[20,22,["G2546"]],[22,23,["G4336"]]]},{"k":24251,"v":[[0,1,["G2532"]],[1,2,["G4613"]],[2,3,["G2532"]],[3,4,["G3588"]],[4,7,["G3326"]],[7,8,["G846"]],[8,10,["G2614"]],[10,11,["G846"]]]},{"k":24252,"v":[[0,1,["G2532"]],[1,5,["G2147"]],[5,6,["G846"]],[6,8,["G3004"]],[8,10,["G846"]],[10,11,["G3956"]],[11,14,["G2212"]],[14,15,["G4571"]]]},{"k":24253,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,8,["G71"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G2192"]],[11,12,["G2969"]],[12,13,["G2443"]],[13,16,["G2784"]],[16,18,["G2546"]],[18,19,["G1063"]],[19,20,["G1519","G5124"]],[20,23,["G1831"]]]},{"k":24254,"v":[[0,1,["G2532"]],[1,3,["G2258","G2784"]],[3,4,["G1722"]],[4,5,["G846"]],[5,6,["G4864"]],[6,7,["G1519"]],[7,8,["G3650"]],[8,9,["G1056"]],[9,10,["G2532"]],[10,12,["G1544"]],[12,13,["G1140"]]]},{"k":24255,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,5,["G3015"]],[5,6,["G4314"]],[6,7,["G846"]],[7,8,["G3870"]],[8,9,["G846"]],[9,10,["G2532"]],[10,12,["G1120"]],[12,14,["G846"]],[14,15,["G2532"]],[15,16,["G3004"]],[16,18,["G846"]],[18,19,["G1437"]],[19,21,["G2309"]],[21,23,["G1410"]],[23,26,["G2511","G3165"]]]},{"k":24256,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,5,["G4697"]],[5,7,["G1614"]],[7,9,["G5495"]],[9,11,["G680"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G3004"]],[14,16,["G846"]],[16,18,["G2309"]],[18,21,["G2511"]]]},{"k":24257,"v":[[0,1,["G2532"]],[1,5,["G846"]],[5,7,["G2036"]],[7,8,["G2112"]],[8,9,["G3588"]],[9,10,["G3014"]],[10,11,["G565"]],[11,12,["G575"]],[12,13,["G846"]],[13,14,["G2532"]],[14,17,["G2511"]]]},{"k":24258,"v":[[0,1,["G2532"]],[1,4,["G1690"]],[4,5,["G846"]],[5,7,["G2112"]],[7,10,["G1544","G846"]]]},{"k":24259,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G3708"]],[5,7,["G2036"]],[7,8,["G3367"]],[8,11,["G3367"]],[11,12,["G235"]],[12,15,["G5217"]],[15,16,["G1166"]],[16,17,["G4572"]],[17,19,["G3588"]],[19,20,["G2409"]],[20,21,["G2532"]],[21,22,["G4374"]],[22,23,["G4012"]],[23,24,["G4675"]],[24,25,["G2512"]],[25,28,["G3739"]],[28,29,["G3475"]],[29,30,["G4367"]],[30,31,["G1519"]],[31,33,["G3142"]],[33,35,["G846"]]]},{"k":24260,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G1831"]],[4,6,["G756"]],[6,8,["G2784"]],[8,10,["G4183"]],[10,11,["G2532"]],[11,14,["G1310"]],[14,15,["G3588"]],[15,16,["G3056"]],[16,18,["G5620"]],[18,19,["G846"]],[19,20,["G1410"]],[20,22,["G3371"]],[22,23,["G5320"]],[23,24,["G1525"]],[24,25,["G1519"]],[25,27,["G4172"]],[27,28,["G235"]],[28,29,["G2258"]],[29,30,["G1854"]],[30,31,["G1722"]],[31,32,["G2048"]],[32,33,["G5117"]],[33,34,["G2532"]],[34,36,["G2064"]],[36,37,["G4314"]],[37,38,["G846"]],[38,41,["G3836"]]]},{"k":24261,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,4,["G1525"]],[4,5,["G1519"]],[5,6,["G2584"]],[6,7,["G1223"]],[7,9,["G2250"]],[9,10,["G2532"]],[10,13,["G191"]],[13,14,["G3754"]],[14,16,["G2076"]],[16,17,["G1519"]],[17,19,["G3624"]]]},{"k":24262,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G4183"]],[3,6,["G4863"]],[6,8,["G5620"]],[8,14,["G3371","G5562"]],[14,20,["G3366"]],[20,21,["G4314"]],[21,22,["G3588"]],[22,23,["G2374"]],[23,24,["G2532"]],[24,26,["G2980"]],[26,27,["G3588"]],[27,28,["G3056"]],[28,30,["G846"]]]},{"k":24263,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G5342"]],[6,11,["G3885"]],[11,14,["G142"]],[14,15,["G5259"]],[15,16,["G5064"]]]},{"k":24264,"v":[[0,1,["G2532"]],[1,4,["G1410"]],[4,5,["G3361"]],[5,7,["G4331"]],[7,9,["G846"]],[9,10,["G1223"]],[10,11,["G3588"]],[11,12,["G3793"]],[12,14,["G648"]],[14,15,["G3588"]],[15,16,["G4721"]],[16,17,["G3699"]],[17,19,["G2258"]],[19,20,["G2532"]],[20,26,["G1846"]],[26,29,["G5465"]],[29,30,["G3588"]],[30,31,["G2895"]],[31,32,["G1909","G3739"]],[32,33,["G3588"]],[33,37,["G3885"]],[37,38,["G2621"]]]},{"k":24265,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G1492"]],[3,4,["G846"]],[4,5,["G4102"]],[5,7,["G3004"]],[7,9,["G3588"]],[9,13,["G3885"]],[13,14,["G5043"]],[14,15,["G4675"]],[15,16,["G266"]],[16,18,["G863"]],[18,19,["G4671"]]]},{"k":24266,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G5100"]],[4,6,["G3588"]],[6,7,["G1122"]],[7,8,["G2521"]],[8,9,["G1563"]],[9,10,["G2532"]],[10,11,["G1260"]],[11,12,["G1722"]],[12,13,["G848"]],[13,14,["G2588"]]]},{"k":24267,"v":[[0,1,["G5101"]],[1,3,["G3778"]],[3,5,["G3779"]],[5,6,["G2980"]],[6,7,["G988"]],[7,8,["G5101"]],[8,9,["G1410"]],[9,10,["G863"]],[10,11,["G266"]],[11,12,["G1508"]],[12,13,["G2316"]],[13,14,["G1520"]]]},{"k":24268,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G2424"]],[4,5,["G1921"]],[5,7,["G848"]],[7,8,["G4151"]],[8,9,["G3754"]],[9,11,["G3779"]],[11,12,["G1260"]],[12,13,["G1722"]],[13,14,["G1438"]],[14,16,["G2036"]],[16,18,["G846"]],[18,19,["G5101"]],[19,20,["G1260"]],[20,23,["G5023"]],[23,24,["G1722"]],[24,25,["G5216"]],[25,26,["G2588"]]]},{"k":24269,"v":[[0,1,["G5101"]],[1,2,["G2076"]],[2,4,["G2123"]],[4,6,["G2036"]],[6,8,["G3588"]],[8,12,["G3885"]],[12,14,["G266"]],[14,16,["G863"]],[16,17,["G4671"]],[17,18,["G2228"]],[18,20,["G2036"]],[20,21,["G1453"]],[21,22,["G2532"]],[22,24,["G142"]],[24,25,["G4675"]],[25,26,["G2895"]],[26,27,["G2532"]],[27,28,["G4043"]]]},{"k":24270,"v":[[0,1,["G1161"]],[1,2,["G2443"]],[2,5,["G1492"]],[5,6,["G3754"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G444"]],[10,11,["G2192"]],[11,12,["G1849"]],[12,13,["G1909"]],[13,14,["G1093"]],[14,16,["G863"]],[16,17,["G266"]],[17,19,["G3004"]],[19,21,["G3588"]],[21,25,["G3885"]]]},{"k":24271,"v":[[0,2,["G3004"]],[2,4,["G4671"]],[4,5,["G1453"]],[5,6,["G2532"]],[6,8,["G142"]],[8,9,["G4675"]],[9,10,["G2895"]],[10,11,["G2532"]],[11,14,["G5217"]],[14,15,["G1519"]],[15,16,["G4675"]],[16,17,["G3624"]]]},{"k":24272,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G1453"]],[4,6,["G142"]],[6,7,["G3588"]],[7,8,["G2895"]],[8,9,["G2532"]],[9,11,["G1831"]],[11,12,["G1726"]],[12,14,["G3956"]],[14,16,["G5620"]],[16,19,["G3956"]],[19,20,["G1839"]],[20,21,["G2532"]],[21,22,["G1392"]],[22,23,["G2316"]],[23,24,["G3004"]],[24,26,["G3763"]],[26,27,["G1492"]],[27,31,["G3779"]]]},{"k":24273,"v":[[0,1,["G2532"]],[1,4,["G1831"]],[4,5,["G3825"]],[5,6,["G3844"]],[6,7,["G3588"]],[7,9,["G2281"]],[9,10,["G2532"]],[10,11,["G3956"]],[11,12,["G3588"]],[12,13,["G3793"]],[13,14,["G2064"]],[14,15,["G4314"]],[15,16,["G846"]],[16,17,["G2532"]],[17,19,["G1321"]],[19,20,["G846"]]]},{"k":24274,"v":[[0,1,["G2532"]],[1,5,["G3855"]],[5,7,["G1492"]],[7,8,["G3018"]],[8,9,["G3588"]],[9,12,["G256"]],[12,13,["G2521"]],[13,14,["G1909"]],[14,15,["G3588"]],[15,18,["G5058"]],[18,19,["G2532"]],[19,20,["G3004"]],[20,22,["G846"]],[22,23,["G190"]],[23,24,["G3427"]],[24,25,["G2532"]],[25,27,["G450"]],[27,29,["G190"]],[29,30,["G846"]]]},{"k":24275,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["(G1722)"]],[7,8,["G846"]],[8,11,["G2621"]],[11,12,["G1722"]],[12,13,["G846"]],[13,14,["G3614"]],[14,15,["G4183"]],[15,16,["G5057"]],[16,17,["G2532"]],[17,18,["G268"]],[18,22,["G4873","G2532"]],[22,23,["G2424"]],[23,24,["G2532"]],[24,25,["G846"]],[25,26,["G3101"]],[26,27,["G1063"]],[27,29,["G2258"]],[29,30,["G4183"]],[30,31,["G2532"]],[31,33,["G190"]],[33,34,["G846"]]]},{"k":24276,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G1122"]],[4,5,["G2532"]],[5,6,["G5330"]],[6,7,["G1492"]],[7,8,["G846"]],[8,9,["G2068"]],[9,10,["G3326"]],[10,11,["G5057"]],[11,12,["G2532"]],[12,13,["G268"]],[13,15,["G3004"]],[15,17,["G846"]],[17,18,["G3101"]],[18,21,["G5101"]],[21,22,["G3754"]],[22,24,["G2068"]],[24,25,["G2532"]],[25,26,["G4095"]],[26,27,["G3326"]],[27,28,["G5057"]],[28,29,["G2532"]],[29,30,["G268"]]]},{"k":24277,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G191"]],[3,6,["G3004"]],[6,8,["G846"]],[8,12,["G2480"]],[12,13,["G2192"]],[13,14,["G3756"]],[14,15,["G5532"]],[15,18,["G2395"]],[18,19,["G235"]],[19,23,["G2192","G2560"]],[23,25,["G2064"]],[25,26,["G3756"]],[26,28,["G2564"]],[28,30,["G1342"]],[30,31,["G235"]],[31,32,["G268"]],[32,33,["G1519"]],[33,34,["G3341"]]]},{"k":24278,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,5,["G2491"]],[5,6,["G2532"]],[6,7,["(G3588)"]],[7,8,["G3588"]],[8,9,["G5330"]],[9,12,["G2258","G3522"]],[12,13,["G2532"]],[13,15,["G2064"]],[15,16,["G2532"]],[16,17,["G3004"]],[17,19,["G846"]],[19,20,["G1302"]],[20,22,["G3588"]],[22,23,["G3101"]],[23,25,["G2491"]],[25,26,["G2532"]],[26,27,["(G3588)"]],[27,28,["G3588"]],[28,29,["G5330"]],[29,30,["G3522"]],[30,31,["G1161"]],[31,32,["G4671"]],[32,33,["G3101"]],[33,34,["G3522"]],[34,35,["G3756"]]]},{"k":24279,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G1410","(G3361)"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G3588"]],[10,11,["G3567"]],[11,12,["G3522"]],[12,13,["G1722","G3739"]],[13,14,["G3588"]],[14,15,["G3566"]],[15,16,["G2076"]],[16,17,["G3326"]],[17,18,["G846"]],[18,21,["G3745"]],[21,22,["(G5550)"]],[22,23,["G2192"]],[23,24,["G3588"]],[24,25,["G3566"]],[25,26,["G3326"]],[26,27,["G1438"]],[27,29,["G1410","G3756"]],[29,30,["G3522"]]]},{"k":24280,"v":[[0,1,["G1161"]],[1,3,["G2250"]],[3,5,["G2064"]],[5,6,["G3752"]],[6,7,["G3588"]],[7,8,["G3566"]],[8,12,["G522"]],[12,13,["G575"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G5119"]],[16,19,["G3522"]],[19,20,["G1722"]],[20,21,["G1565"]],[21,22,["G2250"]]]},{"k":24281,"v":[[0,2,["G3762"]],[2,3,["G2532"]],[3,4,["G1976"]],[4,6,["G1915"]],[6,8,["G46"]],[8,9,["G4470"]],[9,10,["G1909"]],[10,12,["G3820"]],[12,13,["G2440"]],[13,14,["G1490"]],[14,15,["G3588"]],[15,17,["G2537"]],[17,21,["G4138","G846"]],[21,23,["G142"]],[23,25,["G3588"]],[25,26,["G3820"]],[26,27,["G2532"]],[27,29,["G4978"]],[29,31,["G1096"]],[31,32,["G5501"]]]},{"k":24282,"v":[[0,1,["G2532"]],[1,3,["G3762"]],[3,4,["G906"]],[4,5,["G3501"]],[5,6,["G3631"]],[6,7,["G1519"]],[7,8,["G3820"]],[8,9,["G779"]],[9,10,["G1490"]],[10,11,["G3588"]],[11,12,["G3501"]],[12,13,["G3631"]],[13,15,["G4486"]],[15,16,["G3588"]],[16,17,["G779"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G3631"]],[20,22,["G1632"]],[22,23,["G2532"]],[23,24,["G3588"]],[24,25,["G779"]],[25,28,["G622"]],[28,29,["G235"]],[29,30,["G3501"]],[30,31,["G3631"]],[31,34,["G992"]],[34,35,["G1519"]],[35,36,["G2537"]],[36,37,["G779"]]]},{"k":24283,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G846"]],[7,8,["G3899"]],[8,9,["G1223"]],[9,10,["G3588"]],[10,12,["G4702"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,16,["G4521"]],[16,17,["G2532"]],[17,18,["G846"]],[18,19,["G3101"]],[19,20,["G756"]],[20,23,["G4160","G3598"]],[23,25,["G5089"]],[25,26,["G3588"]],[26,29,["G4719"]]]},{"k":24284,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,4,["G3004"]],[4,6,["G846"]],[6,7,["G2396"]],[7,8,["G5101"]],[8,9,["G4160"]],[9,11,["G1722"]],[11,12,["G3588"]],[12,13,["G4521"]],[13,16,["G3739"]],[16,19,["G1832","G3756"]]]},{"k":24285,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3004"]],[3,5,["G846"]],[5,8,["G3763"]],[8,9,["G314"]],[9,10,["G5101"]],[10,11,["G1138"]],[11,12,["G4160"]],[12,13,["G3753"]],[13,15,["G2192"]],[15,16,["G5532"]],[16,17,["G2532"]],[17,20,["G3983"]],[20,21,["G846"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,26,["G3326"]],[26,27,["G846"]]]},{"k":24286,"v":[[0,1,["G4459"]],[1,3,["G1525"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G3624"]],[6,8,["G2316"]],[8,9,["G1909"]],[9,13,["G8"]],[13,14,["G3588"]],[14,16,["G749"]],[16,17,["G2532"]],[17,19,["G5315"]],[19,20,["G3588"]],[20,21,["G740","G4286"]],[21,22,["G3739"]],[22,25,["G1832","G3756"]],[25,27,["G5315"]],[27,28,["G1508"]],[28,30,["G3588"]],[30,31,["G2409"]],[31,32,["G2532"]],[32,33,["G1325"]],[33,34,["G2532"]],[34,38,["G5607"]],[38,39,["G4862"]],[39,40,["G846"]]]},{"k":24287,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G3588"]],[6,7,["G4521"]],[7,9,["G1096"]],[9,10,["G1223"]],[10,11,["G444"]],[11,13,["G3756"]],[13,14,["G444"]],[14,15,["G1223"]],[15,16,["G3588"]],[16,17,["G4521"]]]},{"k":24288,"v":[[0,1,["G5620"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G444"]],[5,6,["G2076"]],[6,7,["G2962"]],[7,8,["G2532"]],[8,10,["G3588"]],[10,11,["G4521"]]]},{"k":24289,"v":[[0,1,["G2532"]],[1,3,["G1525"]],[3,4,["G3825"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G4864"]],[7,8,["G2532"]],[8,10,["G2258"]],[10,12,["G444"]],[12,13,["G1563"]],[13,15,["G2192"]],[15,17,["G3583"]],[17,18,["G5495"]]]},{"k":24290,"v":[[0,1,["G2532"]],[1,3,["G3906"]],[3,4,["G846"]],[4,5,["G1487"]],[5,8,["G2323"]],[8,9,["G846"]],[9,11,["G3588"]],[11,13,["G4521"]],[13,14,["G2443"]],[14,17,["G2723"]],[17,18,["G846"]]]},{"k":24291,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G3588"]],[5,6,["G444"]],[6,8,["G2192"]],[8,9,["G3588"]],[9,10,["G3583"]],[10,11,["G5495"]],[11,12,["G1453"]],[12,13,["G1519","G3319"]]]},{"k":24292,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,8,["G1832"]],[8,11,["G15"]],[11,13,["G3588"]],[13,15,["G4521"]],[15,16,["G2228"]],[16,19,["G2554"]],[19,21,["G4982"]],[21,22,["G5590"]],[22,23,["G2228"]],[23,25,["G615"]],[25,26,["G1161"]],[26,27,["G3588"]],[27,30,["G4623"]]]},{"k":24293,"v":[[0,1,["G2532"]],[1,7,["G4017"]],[7,9,["G846"]],[9,10,["G3326"]],[10,11,["G3709"]],[11,13,["G4818"]],[13,14,["G1909"]],[14,15,["G3588"]],[15,16,["G4457"]],[16,18,["G846"]],[18,19,["G2588"]],[19,21,["G3004"]],[21,23,["G3588"]],[23,24,["G444"]],[24,26,["G1614"]],[26,27,["G4675"]],[27,28,["G5495"]],[28,29,["G2532"]],[29,33,["G1614"]],[33,34,["G2532"]],[34,35,["G846"]],[35,36,["G5495"]],[36,38,["G600"]],[38,39,["G5199"]],[39,40,["G5613"]],[40,41,["G3588"]],[41,42,["G243"]]]},{"k":24294,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,5,["G1831"]],[5,7,["G2112"]],[7,9,["G4160","G4824"]],[9,10,["G3326"]],[10,11,["G3588"]],[11,12,["G2265"]],[12,13,["G2596"]],[13,14,["G846"]],[14,15,["G3704"]],[15,18,["G622"]],[18,19,["G846"]]]},{"k":24295,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G402"]],[3,5,["G3326"]],[5,6,["G848"]],[6,7,["G3101"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,10,["G2281"]],[10,11,["G2532"]],[11,13,["G4183"]],[13,14,["G4128"]],[14,15,["G575"]],[15,16,["G1056"]],[16,17,["G190"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G575"]],[20,21,["G2449"]]]},{"k":24296,"v":[[0,1,["G2532"]],[1,2,["G575"]],[2,3,["G2414"]],[3,4,["G2532"]],[4,5,["G575"]],[5,6,["G2401"]],[6,7,["G2532"]],[7,9,["G4008"]],[9,10,["G2446"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G4012"]],[13,14,["G5184"]],[14,15,["G2532"]],[15,16,["G4605"]],[16,18,["G4183"]],[18,19,["G4128"]],[19,23,["G191"]],[23,26,["G3745"]],[26,28,["G4160"]],[28,29,["G2064"]],[29,30,["G4314"]],[30,31,["G846"]]]},{"k":24297,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G848"]],[5,6,["G3101"]],[6,7,["G2443"]],[7,10,["G4142"]],[10,13,["G4342"]],[13,14,["G846"]],[14,15,["G1223"]],[15,17,["G3588"]],[17,18,["G3793"]],[18,19,["G3363"]],[19,22,["G2346"]],[22,23,["G846"]]]},{"k":24298,"v":[[0,1,["G1063"]],[1,4,["G2323"]],[4,5,["G4183"]],[5,7,["G5620"]],[7,10,["G1968"]],[10,11,["G846"]],[11,13,["G2443"]],[13,14,["G680"]],[14,15,["G846"]],[15,18,["G3745"]],[18,19,["G2192"]],[19,20,["G3148"]]]},{"k":24299,"v":[[0,1,["G2532"]],[1,2,["G169"]],[2,3,["G4151"]],[3,4,["G3752"]],[4,6,["G2334"]],[6,7,["G846"]],[7,10,["G4363"]],[10,11,["G846"]],[11,12,["G2532"]],[12,13,["G2896"]],[13,14,["G3004"]],[14,15,["G4771"]],[15,16,["G1488"]],[16,17,["G3588"]],[17,18,["G5207"]],[18,20,["G2316"]]]},{"k":24300,"v":[[0,1,["G2532"]],[1,3,["G4183"]],[3,4,["G2008"]],[4,5,["G846"]],[5,6,["G2443"]],[6,9,["G3361"]],[9,10,["G4160"]],[10,11,["G846"]],[11,12,["G5318"]]]},{"k":24301,"v":[[0,1,["G2532"]],[1,4,["G305"]],[4,5,["G1519"]],[5,7,["G3735"]],[7,8,["G2532"]],[8,9,["G4341"]],[9,12,["G3739"]],[12,13,["G846"]],[13,14,["G2309"]],[14,15,["G2532"]],[15,17,["G565"]],[17,18,["G4314"]],[18,19,["G846"]]]},{"k":24302,"v":[[0,1,["G2532"]],[1,3,["G4160"]],[3,4,["G1427"]],[4,5,["G2443"]],[5,8,["G5600"]],[8,9,["G3326"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G2443"]],[12,17,["G649","G846"]],[17,19,["G2784"]]]},{"k":24303,"v":[[0,1,["G2532"]],[1,3,["G2192"]],[3,4,["G1849"]],[4,6,["G2323"]],[6,7,["G3554"]],[7,8,["G2532"]],[8,11,["G1544"]],[11,12,["G1140"]]]},{"k":24304,"v":[[0,1,["G2532"]],[1,2,["G4613"]],[2,4,["G2007","G3686"]],[4,5,["G4074"]]]},{"k":24305,"v":[[0,1,["G2532"]],[1,2,["G2385"]],[2,3,["G3588"]],[3,6,["G2199"]],[6,7,["G2532"]],[7,8,["G2491"]],[8,9,["G3588"]],[9,10,["G80"]],[10,12,["G2385"]],[12,13,["G2532"]],[13,15,["G2007","G3686"]],[15,16,["G846"]],[16,17,["G993"]],[17,19,["G3603"]],[19,21,["G5207"]],[21,23,["G1027"]]]},{"k":24306,"v":[[0,1,["G2532"]],[1,2,["G406"]],[2,3,["G2532"]],[3,4,["G5376"]],[4,5,["G2532"]],[5,6,["G918"]],[6,7,["G2532"]],[7,8,["G3156"]],[8,9,["G2532"]],[9,10,["G2381"]],[10,11,["G2532"]],[11,12,["G2385"]],[12,13,["G3588"]],[13,16,["G256"]],[16,17,["G2532"]],[17,18,["G2280"]],[18,19,["G2532"]],[19,20,["G4613"]],[20,21,["G3588"]],[21,22,["G2581"]]]},{"k":24307,"v":[[0,1,["G2532"]],[1,2,["G2455"]],[2,3,["G2469"]],[3,4,["G3739"]],[4,5,["G2532"]],[5,6,["G3860"]],[6,7,["G846"]],[7,8,["G2532"]],[8,10,["G2064"]],[10,11,["G1519"]],[11,13,["G3624"]]]},{"k":24308,"v":[[0,1,["G2532"]],[1,3,["G3793"]],[3,5,["G4905"]],[5,6,["G3825"]],[6,8,["G5620"]],[8,9,["G846"]],[9,10,["G1410"]],[10,11,["G3361"]],[11,14,["G3383"]],[14,15,["G5315"]],[15,16,["G740"]]]},{"k":24309,"v":[[0,1,["G2532"]],[1,4,["G3844","G846"]],[4,5,["G191"]],[5,10,["G1831"]],[10,14,["G2902"]],[14,15,["G846"]],[15,16,["G1063"]],[16,18,["G3004"]],[18,22,["G1839"]]]},{"k":24310,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1122"]],[3,6,["G2597"]],[6,7,["G575"]],[7,8,["G2414"]],[8,9,["G3004"]],[9,11,["G2192"]],[11,12,["G954"]],[12,13,["G2532"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G758"]],[16,18,["G3588"]],[18,19,["G1140"]],[19,22,["G1544"]],[22,23,["G1140"]]]},{"k":24311,"v":[[0,1,["G2532"]],[1,3,["G4341"]],[3,4,["G846"]],[4,7,["G2532"]],[7,8,["G3004"]],[8,10,["G846"]],[10,11,["G1722"]],[11,12,["G3850"]],[12,13,["G4459"]],[13,14,["G1410"]],[14,15,["G4567"]],[15,17,["G1544"]],[17,18,["G4567"]]]},{"k":24312,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G932"]],[4,6,["G3307"]],[6,7,["G1909"]],[7,8,["G1438"]],[8,9,["G1565"]],[9,10,["G932"]],[10,11,["G1410","G3756"]],[11,12,["G2476"]]]},{"k":24313,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G3614"]],[4,6,["G3307"]],[6,7,["G1909"]],[7,8,["G1438"]],[8,9,["G1565"]],[9,10,["G3614"]],[10,11,["G1410","G3756"]],[11,12,["G2476"]]]},{"k":24314,"v":[[0,1,["G2532"]],[1,2,["G1487"]],[2,3,["G4567"]],[3,5,["G450"]],[5,6,["G1909"]],[6,7,["G1438"]],[7,8,["G2532"]],[8,10,["G3307"]],[10,12,["G1410","G3756"]],[12,13,["G2476"]],[13,14,["G235"]],[14,15,["G2192"]],[15,17,["G5056"]]]},{"k":24315,"v":[[0,2,["G3762","(G3756)"]],[2,3,["G1410"]],[3,4,["G1525"]],[4,5,["G1519"]],[5,8,["G2478"]],[8,9,["G3614"]],[9,11,["G1283"]],[11,12,["G846"]],[12,13,["G4632"]],[13,14,["G3362"]],[14,17,["G4412"]],[17,18,["G1210"]],[18,19,["G3588"]],[19,21,["G2478"]],[21,22,["G2532"]],[22,23,["G5119"]],[23,26,["G1283"]],[26,27,["G846"]],[27,28,["G3614"]]]},{"k":24316,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3956"]],[6,7,["G265"]],[7,10,["G863"]],[10,12,["G3588"]],[12,13,["G5207"]],[13,15,["G444"]],[15,16,["G2532"]],[16,17,["G988"]],[17,19,["G3745","G302"]],[19,22,["G987"]]]},{"k":24317,"v":[[0,1,["G1161"]],[1,2,["G3739","G302"]],[2,5,["G987"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G40"]],[8,9,["G4151"]],[9,10,["G2192"]],[10,12,["G3756","G859","G1519","G165"]],[12,13,["G235"]],[13,14,["G2076"]],[14,16,["G1777"]],[16,18,["G166"]],[18,19,["G2920"]]]},{"k":24318,"v":[[0,1,["G3754"]],[1,3,["G3004"]],[3,5,["G2192"]],[5,7,["G169"]],[7,8,["G4151"]]]},{"k":24319,"v":[[0,2,["G2064"]],[2,3,["G3767"]],[3,5,["G80"]],[5,6,["G2532"]],[6,7,["G846"]],[7,8,["G3384"]],[8,9,["G2532"]],[9,10,["G2476"]],[10,11,["G1854"]],[11,12,["G649"]],[12,13,["G4314"]],[13,14,["G846"]],[14,15,["G5455"]],[15,16,["G846"]]]},{"k":24320,"v":[[0,1,["G2532"]],[1,3,["G3793"]],[3,4,["G2521"]],[4,5,["G4012"]],[5,6,["G846"]],[6,7,["G1161"]],[7,9,["G2036"]],[9,11,["G846"]],[11,12,["G2400"]],[12,13,["G4675"]],[13,14,["G3384"]],[14,15,["G2532"]],[15,16,["G4675"]],[16,17,["G80"]],[17,18,["G1854"]],[18,19,["G2212"]],[19,21,["G4571"]]]},{"k":24321,"v":[[0,1,["G2532"]],[1,3,["G611"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G5101"]],[6,7,["G2076"]],[7,8,["G3450"]],[8,9,["G3384"]],[9,10,["G2228"]],[10,11,["G3450"]],[11,12,["G80"]]]},{"k":24322,"v":[[0,1,["G2532"]],[1,3,["G4017"]],[3,5,["G2945"]],[5,9,["G2521"]],[9,10,["G4012"]],[10,11,["G846"]],[11,13,["G3004"]],[13,14,["G2396"]],[14,15,["G3450"]],[15,16,["G3384"]],[16,17,["G2532"]],[17,18,["G3450"]],[18,19,["G80"]]]},{"k":24323,"v":[[0,1,["G1063"]],[1,2,["G3739","G302"]],[2,4,["G4160"]],[4,5,["G3588"]],[5,6,["G2307"]],[6,8,["G2316"]],[8,10,["G3778"]],[10,11,["G2076"]],[11,12,["G3450"]],[12,13,["G80"]],[13,14,["G2532"]],[14,15,["G3450"]],[15,16,["G79"]],[16,17,["G2532"]],[17,18,["G3384"]]]},{"k":24324,"v":[[0,1,["G2532"]],[1,3,["G756"]],[3,4,["G3825"]],[4,6,["G1321"]],[6,7,["G3844"]],[7,8,["G3588"]],[8,10,["G2281"]],[10,11,["G2532"]],[11,14,["G4863"]],[14,15,["G4314"]],[15,16,["G846"]],[16,18,["G4183"]],[18,19,["G3793"]],[19,21,["G5620"]],[21,22,["G846"]],[22,23,["G1684"]],[23,24,["G1519"]],[24,26,["G4143"]],[26,28,["G2521"]],[28,29,["G1722"]],[29,30,["G3588"]],[30,31,["G2281"]],[31,32,["G2532"]],[32,33,["G3588"]],[33,34,["G3956"]],[34,35,["G3793"]],[35,36,["G2258"]],[36,37,["G4314"]],[37,38,["G3588"]],[38,39,["G2281"]],[39,40,["G1909"]],[40,41,["G3588"]],[41,42,["G1093"]]]},{"k":24325,"v":[[0,1,["G2532"]],[1,3,["G1321"]],[3,4,["G846"]],[4,6,["G4183"]],[6,7,["G1722"]],[7,8,["G3850"]],[8,9,["G2532"]],[9,10,["G3004"]],[10,12,["G846"]],[12,13,["G1722"]],[13,14,["G848"]],[14,15,["G1322"]]]},{"k":24326,"v":[[0,1,["G191"]],[1,2,["G2400"]],[2,5,["G1831"]],[5,7,["G4687"]],[7,9,["G4687"]]]},{"k":24327,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,8,["G4687"]],[8,9,["G3739","G3303"]],[9,10,["G4098"]],[10,11,["G3844"]],[11,12,["G3588"]],[12,14,["G3598"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G4071"]],[17,19,["G3588"]],[19,20,["G3772"]],[20,21,["G2064"]],[21,22,["G2532"]],[22,25,["G2719","G846"]]]},{"k":24328,"v":[[0,1,["G1161"]],[1,2,["G243"]],[2,3,["G4098"]],[3,4,["G1909"]],[4,6,["G4075"]],[6,7,["G3699"]],[7,9,["G2192"]],[9,10,["G3756"]],[10,11,["G4183"]],[11,12,["G1093"]],[12,13,["G2532"]],[13,14,["G2112"]],[14,17,["G1816"]],[17,20,["G2192"]],[20,21,["G3361"]],[21,22,["G899"]],[22,24,["G1093"]]]},{"k":24329,"v":[[0,1,["G1161"]],[1,4,["G2246"]],[4,6,["G393"]],[6,9,["G2739"]],[9,10,["G2532"]],[10,13,["G2192"]],[13,14,["G3361"]],[14,15,["G4491"]],[15,18,["G3583"]]]},{"k":24330,"v":[[0,1,["G2532"]],[1,2,["G243"]],[2,3,["G4098"]],[3,4,["G1519"]],[4,5,["G173"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G173"]],[8,10,["G305"]],[10,11,["G2532"]],[11,12,["G4846"]],[12,13,["G846"]],[13,14,["G2532"]],[14,16,["G1325"]],[16,17,["G3756"]],[17,18,["G2590"]]]},{"k":24331,"v":[[0,1,["G2532"]],[1,2,["G243"]],[2,3,["G4098"]],[3,4,["G1519"]],[4,5,["G2570"]],[5,6,["G1093"]],[6,7,["G2532"]],[7,9,["G1325"]],[9,10,["G2590"]],[10,13,["G305"]],[13,14,["G2532"]],[14,15,["G837"]],[15,16,["G2532"]],[16,18,["G5342"]],[18,19,["G1520"]],[19,20,["G5144"]],[20,21,["G2532"]],[21,22,["G1520"]],[22,23,["G1835"]],[23,24,["G2532"]],[24,25,["G1520"]],[25,27,["G1540"]]]},{"k":24332,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,8,["G2192"]],[8,9,["G3775"]],[9,11,["G191"]],[11,14,["G191"]]]},{"k":24333,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,4,["G1096"]],[4,5,["G2651"]],[5,6,["G3588"]],[6,9,["G4012"]],[9,10,["G846"]],[10,11,["G4862"]],[11,12,["G3588"]],[12,13,["G1427"]],[13,14,["G2065"]],[14,16,["G846"]],[16,17,["G3588"]],[17,18,["G3850"]]]},{"k":24334,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,7,["G5213"]],[7,10,["G1325"]],[10,12,["G1097"]],[12,13,["G3588"]],[13,14,["G3466"]],[14,16,["G3588"]],[16,17,["G932"]],[17,19,["G2316"]],[19,20,["G1161"]],[20,22,["G1565"]],[22,23,["G3588"]],[23,25,["G1854"]],[25,28,["G3956"]],[28,30,["G1096"]],[30,31,["G1722"]],[31,32,["G3850"]]]},{"k":24335,"v":[[0,1,["G2443"]],[1,2,["G991"]],[2,5,["G991"]],[5,6,["G2532"]],[6,7,["G3361"]],[7,8,["G1492"]],[8,9,["G2532"]],[9,10,["G191"]],[10,13,["G191"]],[13,14,["G2532"]],[14,15,["G3361"]],[15,16,["G4920"]],[16,20,["G3379"]],[20,24,["G1994"]],[24,25,["G2532"]],[25,27,["G265"]],[27,30,["G863"]],[30,31,["G846"]]]},{"k":24336,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G1492"]],[6,8,["G3756"]],[8,9,["G5026"]],[9,10,["G3850"]],[10,11,["G2532"]],[11,12,["G4459"]],[12,16,["G1097"]],[16,17,["G3956"]],[17,18,["G3850"]]]},{"k":24337,"v":[[0,1,["G3588"]],[1,2,["G4687"]],[2,3,["G4687"]],[3,4,["G3588"]],[4,5,["G3056"]]]},{"k":24338,"v":[[0,1,["G1161"]],[1,2,["G3778"]],[2,3,["G1526"]],[3,4,["G3588"]],[4,5,["G3844"]],[5,6,["G3588"]],[6,8,["G3598"]],[8,9,["G3699"]],[9,10,["G3588"]],[10,11,["G3056"]],[11,13,["G4687"]],[13,14,["G2532"]],[14,15,["G3752"]],[15,18,["G191"]],[18,19,["G4567"]],[19,20,["G2064"]],[20,21,["G2112"]],[21,22,["G2532"]],[22,24,["G142"]],[24,25,["G3588"]],[25,26,["G3056"]],[26,29,["G4687"]],[29,30,["G1722"]],[30,31,["G846"]],[31,32,["G2588"]]]},{"k":24339,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G1526"]],[3,8,["G4687","G3668"]],[8,9,["G1909"]],[9,11,["G4075"]],[11,12,["G3739"]],[12,13,["G3752"]],[13,16,["G191"]],[16,17,["G3588"]],[17,18,["G3056"]],[18,19,["G2112"]],[19,20,["G2983"]],[20,21,["G846"]],[21,22,["G3326"]],[22,23,["G5479"]]]},{"k":24340,"v":[[0,1,["G2532"]],[1,2,["G2192"]],[2,3,["G3756"]],[3,4,["G4491"]],[4,5,["G1722"]],[5,6,["G1438"]],[6,7,["G235"]],[7,8,["(G1526)"]],[8,13,["G4340"]],[13,14,["G1534"]],[14,16,["G2347"]],[16,17,["G2228"]],[17,18,["G1375"]],[18,19,["G1096"]],[19,23,["G1223","G3588","G3056"]],[23,24,["G2112"]],[24,27,["G4624"]]]},{"k":24341,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G1526"]],[3,7,["G4687"]],[7,8,["G1519"]],[8,9,["G173"]],[9,12,["G191"]],[12,13,["G3588"]],[13,14,["G3056"]]]},{"k":24342,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3308"]],[3,5,["G5127"]],[5,6,["G165"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G539"]],[9,11,["G4149"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G1939"]],[14,15,["G4012"]],[15,17,["G3062"]],[17,19,["G1531"]],[19,20,["G4846"]],[20,21,["G3588"]],[21,22,["G3056"]],[22,23,["G2532"]],[23,25,["G1096"]],[25,26,["G175"]]]},{"k":24343,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G1526"]],[3,7,["G4687"]],[7,8,["G1909"]],[8,9,["G2570"]],[9,10,["G1093"]],[10,12,["G3748"]],[12,13,["G191"]],[13,14,["G3588"]],[14,15,["G3056"]],[15,16,["G2532"]],[16,17,["G3858"]],[17,19,["G2532"]],[19,22,["G2592"]],[22,23,["G1520"]],[23,24,["G5144","(G2532)"]],[24,25,["G1520"]],[25,26,["G1835"]],[26,27,["G2532"]],[27,28,["G1520"]],[28,30,["G1540"]]]},{"k":24344,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,7,["(G3385)"]],[7,8,["G3088"]],[8,9,["G2064"]],[9,10,["G2443"]],[10,12,["G5087"]],[12,13,["G5259"]],[13,15,["G3426"]],[15,16,["G2228"]],[16,17,["G5259"]],[17,19,["G2825"]],[19,21,["G3756"]],[21,22,["G2443"]],[22,24,["G2007"]],[24,25,["G1909"]],[25,27,["G3087"]]]},{"k":24345,"v":[[0,1,["G1063"]],[1,3,["G2076"]],[3,4,["G3756","G5100"]],[4,5,["G2927"]],[5,6,["G3739"]],[6,8,["(G3362)"]],[8,10,["G5319"]],[10,11,["G3761"]],[11,12,["G1096"]],[12,16,["G614"]],[16,17,["G235"]],[17,18,["G2443"]],[18,21,["G2064"]],[21,22,["G1519","G5318"]]]},{"k":24346,"v":[[0,3,["G1536"]],[3,4,["G2192"]],[4,5,["G3775"]],[5,7,["G191"]],[7,10,["G191"]]]},{"k":24347,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,7,["G991"]],[7,8,["G5101"]],[8,10,["G191"]],[10,11,["G1722"]],[11,12,["G3739"]],[12,13,["G3358"]],[13,15,["G3354"]],[15,19,["G3354"]],[19,21,["G5213"]],[21,22,["G2532"]],[22,24,["G5213"]],[24,26,["G191"]],[26,30,["G4369"]]]},{"k":24348,"v":[[0,1,["G1063"]],[1,2,["G3739","G302"]],[2,4,["G2192"]],[4,6,["G846"]],[6,9,["G1325"]],[9,10,["G2532"]],[10,11,["G3739"]],[11,13,["G2192"]],[13,14,["G3756"]],[14,15,["G575"]],[15,16,["G846"]],[16,19,["G142"]],[19,20,["G2532"]],[20,22,["G3739"]],[22,24,["G2192"]]]},{"k":24349,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,4,["G3779"]],[4,5,["G2076"]],[5,6,["G3588"]],[6,7,["G932"]],[7,9,["G2316"]],[9,10,["G5613"]],[10,11,["G1437"]],[11,13,["G444"]],[13,15,["G906"]],[15,16,["G4703"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G1093"]]]},{"k":24350,"v":[[0,1,["G2532"]],[1,3,["G2518"]],[3,4,["G2532"]],[4,5,["G1453"]],[5,6,["G3571"]],[6,7,["G2532"]],[7,8,["G2250"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G4703"]],[11,13,["G985"]],[13,14,["G2532"]],[14,16,["G3373"]],[16,17,["G846"]],[17,18,["G1492"]],[18,19,["G3756"]],[19,20,["G5613"]]]},{"k":24351,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G1093"]],[3,6,["G2592"]],[6,8,["G844"]],[8,9,["G4412"]],[9,11,["G5528"]],[11,12,["G1534"]],[12,14,["G4719"]],[14,15,["G1534"]],[15,17,["G3588"]],[17,18,["G4134"]],[18,19,["G4621"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G4719"]]]},{"k":24352,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,3,["G3588"]],[3,4,["G2590"]],[4,7,["G3860"]],[7,8,["G2112"]],[8,11,["G649"]],[11,12,["G3588"]],[12,13,["G1407"]],[13,14,["G3754"]],[14,15,["G3588"]],[15,16,["G2326"]],[16,18,["G3936"]]]},{"k":24353,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,4,["G5101"]],[4,7,["G3666"]],[7,8,["G3588"]],[8,9,["G932"]],[9,11,["G2316"]],[11,12,["G2228"]],[12,13,["G1722"]],[13,14,["G4169"]],[14,15,["G3850"]],[15,18,["G3846"]],[18,19,["G846"]]]},{"k":24354,"v":[[0,3,["G5613"]],[3,5,["G2848"]],[5,8,["G4615"]],[8,9,["G3739"]],[9,10,["G3752"]],[10,13,["G4687"]],[13,14,["G1909"]],[14,15,["G3588"]],[15,16,["G1093"]],[16,17,["G2076"]],[17,18,["G3398"]],[18,20,["G3956"]],[20,21,["G3588"]],[21,22,["G4690"]],[22,23,["G3588"]],[23,24,["G2076"]],[24,25,["G1909"]],[25,26,["G3588"]],[26,27,["G1093"]]]},{"k":24355,"v":[[0,1,["G2532"]],[1,2,["G3752"]],[2,5,["G4687"]],[5,8,["G305"]],[8,9,["G2532"]],[9,10,["G1096"]],[10,11,["G3187"]],[11,13,["G3956"]],[13,14,["G3001"]],[14,15,["G2532"]],[15,17,["G4160"]],[17,18,["G3173"]],[18,19,["G2798"]],[19,21,["G5620"]],[21,22,["G3588"]],[22,23,["G4071"]],[23,25,["G3588"]],[25,26,["G3772"]],[26,27,["G1410"]],[27,28,["G2681"]],[28,29,["G5259"]],[29,30,["G3588"]],[30,31,["G4639"]],[31,33,["G846"]]]},{"k":24356,"v":[[0,1,["G2532"]],[1,3,["G4183"]],[3,4,["G5108"]],[4,5,["G3850"]],[5,6,["G2980"]],[6,8,["G3588"]],[8,9,["G3056"]],[9,11,["G846"]],[11,12,["G2531"]],[12,15,["G1410"]],[15,17,["G191"]],[17,18,[]]]},{"k":24357,"v":[[0,1,["G1161"]],[1,2,["G5565"]],[2,4,["G3850"]],[4,5,["G2980"]],[5,7,["G3756"]],[7,9,["G846"]],[9,10,["G1161"]],[10,14,["G2596","G2398"]],[14,16,["G1956"]],[16,18,["G3956"]],[18,20,["G848"]],[20,21,["G3101"]]]},{"k":24358,"v":[[0,1,["G2532"]],[1,2,["(G1722)"]],[2,3,["G1565"]],[3,4,["G2250"]],[4,7,["G3798"]],[7,9,["G1096"]],[9,11,["G3004"]],[11,13,["G846"]],[13,17,["G1330"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,21,["G4008"]]]},{"k":24359,"v":[[0,1,["G2532"]],[1,6,["G863"]],[6,7,["G3588"]],[7,8,["G3793"]],[8,10,["G3880"]],[10,11,["G846"]],[11,13,["G5613"]],[13,15,["G2258"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G4143"]],[18,19,["G1161"]],[19,21,["G2258"]],[21,22,["G2532"]],[22,23,["G3326"]],[23,24,["G846"]],[24,25,["G243"]],[25,27,["G4142"]]]},{"k":24360,"v":[[0,1,["G2532"]],[1,3,["G1096"]],[3,5,["G3173"]],[5,6,["G2978"]],[6,8,["G417"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G2949"]],[11,12,["G1911"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G4143"]],[15,17,["G5620"]],[17,18,["G846"]],[18,21,["G1072","G2235"]]]},{"k":24361,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G2258"]],[3,4,["G1909"]],[4,5,["G3588"]],[5,10,["G4403"]],[10,11,["G2518"]],[11,12,["G1909"]],[12,14,["G4344"]],[14,15,["G2532"]],[15,17,["G1326"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G3004"]],[20,22,["G846"]],[22,23,["G1320"]],[23,24,["G3199"]],[24,25,["G4671"]],[25,26,["G3756"]],[26,27,["G3754"]],[27,29,["G622"]]]},{"k":24362,"v":[[0,1,["G2532"]],[1,3,["G1326"]],[3,5,["G2008"]],[5,6,["G3588"]],[6,7,["G417"]],[7,8,["G2532"]],[8,9,["G2036"]],[9,11,["G3588"]],[11,12,["G2281"]],[12,13,["G4623"]],[13,15,["G5392"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G417"]],[18,19,["G2869"]],[19,20,["G2532"]],[20,22,["G1096"]],[22,24,["G3173"]],[24,25,["G1055"]]]},{"k":24363,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G5101"]],[6,7,["G2075"]],[7,9,["G3779"]],[9,10,["G1169"]],[10,11,["G4459"]],[11,16,["G2192"]],[16,17,["G3756"]],[17,18,["G4102"]]]},{"k":24364,"v":[[0,1,["G2532"]],[1,3,["G5399"]],[3,4,["G3173","G5401"]],[4,5,["G2532"]],[5,6,["G3004"]],[6,9,["G240","G4314"]],[9,13,["G5101","G686"]],[13,14,["G2076"]],[14,15,["G3778"]],[15,16,["G3754"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G417"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G2281"]],[22,23,["G5219"]],[23,24,["G846"]]]},{"k":24365,"v":[[0,1,["G2532"]],[1,4,["G2064"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,8,["G4008"]],[8,10,["G3588"]],[10,11,["G2281"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G5561"]],[14,16,["G3588"]],[16,17,["G1046"]]]},{"k":24366,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G1831"]],[5,7,["G1537"]],[7,8,["G3588"]],[8,9,["G4143"]],[9,10,["G2112"]],[10,12,["G528"]],[12,13,["G846"]],[13,15,["G1537"]],[15,16,["G3588"]],[16,17,["G3419"]],[17,19,["G444"]],[19,20,["G1722"]],[20,22,["G169"]],[22,23,["G4151"]]]},{"k":24367,"v":[[0,1,["G3739"]],[1,2,["G2192"]],[2,4,["G2731"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G3419"]],[7,8,["G2532"]],[8,10,["G3762"]],[10,11,["G1410"]],[11,12,["G1210"]],[12,13,["G846"]],[13,15,["G3777"]],[15,17,["G254"]]]},{"k":24368,"v":[[0,3,["G846"]],[3,6,["G4178"]],[6,7,["G1210"]],[7,9,["G3976"]],[9,10,["G2532"]],[10,11,["G254"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G254"]],[14,18,["G1288"]],[18,19,["G5259"]],[19,20,["G846"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G3976"]],[23,26,["G4937"]],[26,27,["G2532"]],[27,28,["G2480"]],[28,29,["G3762"]],[29,31,["G1150"]],[31,32,["G846"]]]},{"k":24369,"v":[[0,1,["G2532"]],[1,2,["G1275"]],[2,3,["G3571"]],[3,4,["G2532"]],[4,5,["G2250"]],[5,7,["G2258"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G3735"]],[10,11,["G2532"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G3418"]],[14,15,["G2896"]],[15,16,["G2532"]],[16,17,["G2629"]],[17,18,["G1438"]],[18,20,["G3037"]]]},{"k":24370,"v":[[0,1,["G1161"]],[1,4,["G1492"]],[4,5,["G2424"]],[5,7,["G575","G3113"]],[7,9,["G5143"]],[9,10,["G2532"]],[10,11,["G4352"]],[11,12,["G846"]]]},{"k":24371,"v":[[0,1,["G2532"]],[1,2,["G2896"]],[2,5,["G3173"]],[5,6,["G5456"]],[6,8,["G2036"]],[8,15,["G5101","G1698","G2532","G4671"]],[15,16,["G2424"]],[16,18,["G5207"]],[18,20,["G3588"]],[20,22,["G5310"]],[22,23,["G2316"]],[23,25,["G3726"]],[25,26,["G4571"]],[26,28,["G2316"]],[28,31,["G928"]],[31,32,["G3165"]],[32,33,["G3361"]]]},{"k":24372,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G1831"]],[6,8,["G1537"]],[8,9,["G3588"]],[9,10,["G444"]],[10,12,["G169"]],[12,13,["G4151"]]]},{"k":24373,"v":[[0,1,["G2532"]],[1,3,["G1905"]],[3,4,["G846"]],[4,5,["G5101"]],[5,7,["G4671"]],[7,8,["G3686"]],[8,9,["G2532"]],[9,11,["G611"]],[11,12,["G3004"]],[12,13,["G3427"]],[13,14,["G3686"]],[14,16,["G3003"]],[16,17,["G3754"]],[17,19,["G2070"]],[19,20,["G4183"]]]},{"k":24374,"v":[[0,1,["G2532"]],[1,3,["G3870"]],[3,4,["G846"]],[4,5,["G4183"]],[5,6,["G2443"]],[6,9,["G3361"]],[9,12,["G649","G846"]],[12,13,["G1854"]],[13,15,["G3588"]],[15,16,["G5561"]]]},{"k":24375,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G1563"]],[4,6,["G4314"]],[6,7,["G3588"]],[7,8,["G3735"]],[8,10,["G3173"]],[10,11,["G34"]],[11,13,["G5519"]],[13,14,["G1006"]]]},{"k":24376,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G1142"]],[4,5,["G3870"]],[5,6,["G846"]],[6,7,["G3004"]],[7,8,["G3992"]],[8,9,["G2248"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G5519"]],[12,13,["G2443"]],[13,16,["G1525"]],[16,17,["G1519"]],[17,18,["G846"]]]},{"k":24377,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G2424"]],[3,6,["G2010","G846"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G169"]],[9,10,["G4151"]],[10,12,["G1831"]],[12,13,["G2532"]],[13,14,["G1525"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G5519"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G34"]],[20,22,["G3729"]],[22,23,["G2596"]],[23,26,["G2911"]],[26,27,["G1519"]],[27,28,["G3588"]],[28,29,["G2281"]],[29,30,["(G1161)"]],[30,31,["G2258"]],[31,32,["G5613"]],[32,34,["G1367"]],[34,35,["G2532"]],[35,37,["G4155"]],[37,38,["G1722"]],[38,39,["G3588"]],[39,40,["G2281"]]]},{"k":24378,"v":[[0,1,["G1161"]],[1,4,["G1006"]],[4,5,["G3588"]],[5,6,["G5519"]],[6,7,["G5343"]],[7,8,["G2532"]],[8,9,["G312"]],[9,11,["G1519"]],[11,12,["G3588"]],[12,13,["G4172"]],[13,14,["G2532"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G68"]],[17,18,["G2532"]],[18,21,["G1831"]],[21,23,["G1492"]],[23,24,["G5101"]],[24,26,["G2076"]],[26,29,["G1096"]]]},{"k":24379,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G4314"]],[4,5,["G2424"]],[5,6,["G2532"]],[6,7,["G2334"]],[7,14,["G1139"]],[14,16,["G2192"]],[16,17,["G3588"]],[17,18,["G3003"]],[18,19,["G2521"]],[19,20,["G2532"]],[20,21,["G2439"]],[21,22,["G2532"]],[22,26,["G4993"]],[26,27,["G2532"]],[27,30,["G5399"]]]},{"k":24380,"v":[[0,1,["G2532"]],[1,4,["G1492"]],[4,6,["G1334"]],[6,7,["G846"]],[7,8,["G4459"]],[8,10,["G1096"]],[10,18,["G1139"]],[18,19,["G2532"]],[19,21,["G4012"]],[21,22,["G3588"]],[22,23,["G5519"]]]},{"k":24381,"v":[[0,1,["G2532"]],[1,3,["G756"]],[3,5,["G3870"]],[5,6,["G846"]],[6,8,["G565"]],[8,10,["G575"]],[10,11,["G846"]],[11,12,["G3725"]]]},{"k":24382,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G1684"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G4143"]],[8,16,["G1139"]],[16,17,["G3870"]],[17,18,["G846"]],[18,19,["G2443"]],[19,22,["G5600"]],[22,23,["G3326"]],[23,24,["G846"]]]},{"k":24383,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G863"]],[3,4,["G846"]],[4,5,["G3756"]],[5,6,["G235"]],[6,7,["G3004"]],[7,9,["G846"]],[9,10,["G5217"]],[10,14,["G1519","G4675","G3624","G4314","G4674"]],[14,15,["G2532"]],[15,16,["G312"]],[16,17,["G846"]],[17,20,["G3745"]],[20,21,["G3588"]],[21,22,["G2962"]],[22,24,["G4160"]],[24,26,["G4671"]],[26,27,["G2532"]],[27,30,["G1653"]],[30,32,["G4571"]]]},{"k":24384,"v":[[0,1,["G2532"]],[1,3,["G565"]],[3,4,["G2532"]],[4,5,["G756"]],[5,7,["G2784"]],[7,8,["G1722"]],[8,9,["G1179"]],[9,12,["G3745"]],[12,13,["G2424"]],[13,15,["G4160"]],[15,17,["G846"]],[17,18,["G2532"]],[18,19,["G3956"]],[19,22,["G2296"]]]},{"k":24385,"v":[[0,1,["G2532"]],[1,3,["G2424"]],[3,6,["G1276"]],[6,7,["G3825"]],[7,8,["G1722"]],[8,9,["G4143"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,13,["G4008"]],[13,14,["G4183"]],[14,15,["G3793"]],[15,16,["G4863"]],[16,17,["G1909"]],[17,18,["G846"]],[18,19,["G2532"]],[19,21,["G2258"]],[21,23,["G3844"]],[23,24,["G3588"]],[24,25,["G2281"]]]},{"k":24386,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G2064"]],[4,5,["G1520"]],[5,7,["G3588"]],[7,11,["G752"]],[11,12,["G2383"]],[12,14,["G3686"]],[14,15,["G2532"]],[15,18,["G1492"]],[18,19,["G846"]],[19,21,["G4098"]],[21,22,["G4314"]],[22,23,["G846"]],[23,24,["G4228"]]]},{"k":24387,"v":[[0,1,["G2532"]],[1,2,["G3870"]],[2,3,["G846"]],[3,4,["G4183"]],[4,5,["G3004"]],[5,6,["G3450"]],[6,8,["G2365"]],[8,14,["G2192","G2079"]],[14,16,["(G2443)"]],[16,18,["G2064"]],[18,20,["G2007"]],[20,22,["G5495"]],[22,24,["G846"]],[24,25,["G3704"]],[25,29,["G4982"]],[29,30,["G2532"]],[30,33,["G2198"]]]},{"k":24388,"v":[[0,1,["G2532"]],[1,3,["G565"]],[3,4,["G3326"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G4183"]],[7,8,["G3793"]],[8,9,["G190"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G4918"]],[12,13,["G846"]]]},{"k":24389,"v":[[0,1,["G2532"]],[1,3,["G5100"]],[3,4,["G1135"]],[4,6,["G5607"]],[6,7,["(G1722)"]],[7,8,["G4511"]],[8,10,["G129"]],[10,11,["G1427"]],[11,12,["G2094"]]]},{"k":24390,"v":[[0,1,["G2532"]],[1,3,["G3958"]],[3,5,["G4183"]],[5,6,["G5259"]],[6,7,["G4183"]],[7,8,["G2395"]],[8,9,["G2532"]],[9,11,["G1159"]],[11,15,["G3956","G3844","G1438"]],[15,16,["G2532"]],[16,18,["G3367"]],[18,19,["G5623"]],[19,20,["G235"]],[20,21,["G3123"]],[21,23,["G2064","G1519","G5501"]]]},{"k":24391,"v":[[0,4,["G191"]],[4,5,["G4012"]],[5,6,["G2424"]],[6,7,["G2064"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G3793"]],[10,11,["G3693"]],[11,13,["G680"]],[13,14,["G846"]],[14,15,["G2440"]]]},{"k":24392,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,4,["G2579"]],[4,7,["G680"]],[7,9,["G846"]],[9,10,["G2440"]],[10,14,["G4982"]]]},{"k":24393,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G3588"]],[3,4,["G4077"]],[4,6,["G846"]],[6,7,["G129"]],[7,10,["G3583"]],[10,11,["G2532"]],[11,13,["G1097"]],[13,16,["G4983"]],[16,17,["G3754"]],[17,20,["G2390"]],[20,21,["G575"]],[21,23,["G3148"]]]},{"k":24394,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2112"]],[3,4,["G1921"]],[4,5,["G1722"]],[5,6,["G1438"]],[6,8,["G1411"]],[8,10,["G1831"]],[10,12,["G1537"]],[12,13,["G846"]],[13,16,["G1994"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G3793"]],[19,20,["G2532"]],[20,21,["G3004"]],[21,22,["G5101"]],[22,23,["G680"]],[23,24,["G3450"]],[24,25,["G2440"]]]},{"k":24395,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3101"]],[3,4,["G3004"]],[4,6,["G846"]],[6,8,["G991"]],[8,9,["G3588"]],[9,10,["G3793"]],[10,11,["G4918"]],[11,12,["G4571"]],[12,13,["G2532"]],[13,14,["G3004"]],[14,16,["G5101"]],[16,17,["G680"]],[17,18,["G3450"]]]},{"k":24396,"v":[[0,1,["G2532"]],[1,5,["G4017"]],[5,7,["G1492"]],[7,11,["G4160"]],[11,13,["G5124"]]]},{"k":24397,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1135"]],[3,4,["G5399"]],[4,5,["G2532"]],[5,6,["G5141"]],[6,7,["G1492"]],[7,8,["G3739"]],[8,10,["G1096"]],[10,11,["G1909"]],[11,12,["G846"]],[12,13,["G2064"]],[13,14,["G2532"]],[14,17,["G4363"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G2036"]],[20,21,["G846"]],[21,22,["G3956"]],[22,23,["G3588"]],[23,24,["G225"]]]},{"k":24398,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G2364"]],[6,7,["G4675"]],[7,8,["G4102"]],[8,12,["G4982","G4571"]],[12,13,["G5217"]],[13,14,["G1519"]],[14,15,["G1515"]],[15,16,["G2532"]],[16,17,["G2468"]],[17,18,["G5199"]],[18,19,["G575"]],[19,20,["G4675"]],[20,21,["G3148"]]]},{"k":24399,"v":[[0,2,["G846"]],[2,3,["G2089"]],[3,4,["G2980"]],[4,6,["G2064"]],[6,7,["G575"]],[7,8,["G3588"]],[8,12,["G752"]],[12,16,["G3004"]],[16,17,["G4675"]],[17,18,["G2364"]],[18,20,["G599"]],[20,21,["G5101"]],[21,22,["G4660"]],[22,24,["G3588"]],[24,25,["G1320"]],[25,27,["G2089"]]]},{"k":24400,"v":[[0,0,["(G1161)"]],[0,3,["G2112"]],[3,4,["G2424"]],[4,5,["G191"]],[5,6,["G3588"]],[6,7,["G3056"]],[7,10,["G2980"]],[10,12,["G3004"]],[12,14,["G3588"]],[14,18,["G752"]],[18,21,["G5399","G3361"]],[21,22,["G3440"]],[22,23,["G4100"]]]},{"k":24401,"v":[[0,1,["G2532"]],[1,3,["G863"]],[3,5,["G3762"]],[5,7,["G4870"]],[7,8,["G846"]],[8,9,["G1508"]],[9,10,["G4074"]],[10,11,["G2532"]],[11,12,["G2385"]],[12,13,["G2532"]],[13,14,["G2491"]],[14,15,["G3588"]],[15,16,["G80"]],[16,18,["G2385"]]]},{"k":24402,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G3624"]],[6,8,["G3588"]],[8,12,["G752"]],[12,13,["G2532"]],[13,14,["G2334"]],[14,16,["G2351"]],[16,20,["G2799"]],[20,21,["G2532"]],[21,22,["G214"]],[22,23,["G4183"]]]},{"k":24403,"v":[[0,1,["G2532"]],[1,6,["G1525"]],[6,8,["G3004"]],[8,10,["G846"]],[10,11,["G5101"]],[11,15,["G2350"]],[15,16,["G2532"]],[16,17,["G2799"]],[17,18,["G3588"]],[18,19,["G3813"]],[19,22,["G599","G3756"]],[22,23,["G235"]],[23,24,["G2518"]]]},{"k":24404,"v":[[0,1,["G2532"]],[1,6,["G2606","G846"]],[6,7,["G1161"]],[7,9,["G3588"]],[9,14,["G1544","G537"]],[14,16,["G3880"]],[16,17,["G3588"]],[17,18,["G3962"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G3384"]],[21,23,["G3588"]],[23,24,["G3813"]],[24,25,["G2532"]],[25,26,["G3588"]],[26,29,["G3326"]],[29,30,["G846"]],[30,31,["G2532"]],[31,33,["G1531"]],[33,34,["G3699"]],[34,35,["G3588"]],[35,36,["G3813"]],[36,37,["G2258"]],[37,38,["G345"]]]},{"k":24405,"v":[[0,1,["G2532"]],[1,3,["G2902"]],[3,4,["G3588"]],[4,5,["G3813"]],[5,7,["G3588"]],[7,8,["G5495"]],[8,10,["G3004"]],[10,12,["G846"]],[12,13,["G5008"]],[13,14,["G2891"]],[14,15,["G3739"]],[15,16,["G2076"]],[16,18,["G3177"]],[18,19,["G2877"]],[19,21,["G3004"]],[21,23,["G4671"]],[23,24,["G1453"]]]},{"k":24406,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G3588"]],[3,4,["G2877"]],[4,5,["G450"]],[5,6,["G2532"]],[6,7,["G4043"]],[7,8,["G1063"]],[8,10,["G2258"]],[10,15,["G1427"]],[15,16,["G2094"]],[16,20,["G1839"]],[20,23,["G3173"]],[23,24,["G1611"]]]},{"k":24407,"v":[[0,1,["G2532"]],[1,3,["G1291"]],[3,4,["G846"]],[4,5,["G4183"]],[5,6,["G2443"]],[6,8,["G3367"]],[8,10,["G1097"]],[10,11,["G5124"]],[11,12,["G2532"]],[12,13,["G2036"]],[13,18,["G1325"]],[18,19,["G846"]],[19,21,["G5315"]]]},{"k":24408,"v":[[0,1,["G2532"]],[1,4,["G1831"]],[4,6,["G1564"]],[6,7,["G2532"]],[7,8,["G2064"]],[8,9,["G1519"]],[9,11,["G848"]],[11,12,["G3968"]],[12,13,["G2532"]],[13,14,["G846"]],[14,15,["G3101"]],[15,16,["G190"]],[16,17,["G846"]]]},{"k":24409,"v":[[0,1,["G2532"]],[1,5,["G4521"]],[5,7,["G1096"]],[7,9,["G756"]],[9,11,["G1321"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G4864"]],[14,15,["G2532"]],[15,16,["G4183"]],[16,17,["G191"]],[17,20,["G1605"]],[20,21,["G3004"]],[21,23,["G4159"]],[23,25,["G5129"]],[25,28,["G5023"]],[28,29,["G2532"]],[29,30,["G5101"]],[30,31,["G4678"]],[31,36,["G1325"]],[36,38,["G846"]],[38,39,["G3754"]],[39,40,["G2532"]],[40,41,["G5108"]],[41,43,["G1411"]],[43,45,["G1096"]],[45,46,["G1223"]],[46,47,["G846"]],[47,48,["G5495"]]]},{"k":24410,"v":[[0,1,["G2076"]],[1,2,["G3756"]],[2,3,["G3778"]],[3,4,["G3588"]],[4,5,["G5045"]],[5,6,["G3588"]],[6,7,["G5207"]],[7,9,["G3137"]],[9,10,["(G1161)"]],[10,11,["G80"]],[11,13,["G2385"]],[13,14,["G2532"]],[14,15,["G2500"]],[15,16,["G2532"]],[16,18,["G2455"]],[18,19,["G2532"]],[19,20,["G4613"]],[20,21,["G2532"]],[21,22,["G1526"]],[22,23,["G3756"]],[23,24,["G846"]],[24,25,["G79"]],[25,26,["G5602"]],[26,27,["G4314"]],[27,28,["G2248"]],[28,29,["G2532"]],[29,32,["G4624"]],[32,33,["G1722"]],[33,34,["G846"]]]},{"k":24411,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G3004"]],[3,5,["G846"]],[5,7,["G4396"]],[7,8,["G2076"]],[8,9,["G3756"]],[9,11,["G820"]],[11,12,["G1508"]],[12,13,["G1722"]],[13,15,["G848"]],[15,16,["G3968"]],[16,17,["G2532"]],[17,18,["G1722"]],[18,21,["G4773"]],[21,22,["G2532"]],[22,23,["G1722"]],[23,25,["G848"]],[25,26,["G3614"]]]},{"k":24412,"v":[[0,1,["G2532"]],[1,3,["G1410"]],[3,4,["G1563"]],[4,5,["G4160"]],[5,6,["G3756"]],[6,8,["G1411"]],[8,10,["G1508"]],[10,15,["G2007","G5495"]],[15,17,["G3641"]],[17,19,["G732"]],[19,21,["G2323"]],[21,22,[]]]},{"k":24413,"v":[[0,1,["G2532"]],[1,3,["G2296"]],[3,4,["G1223"]],[4,6,["G846"]],[6,7,["G570"]],[7,8,["G2532"]],[8,10,["G4013"]],[10,12,["G2945"]],[12,13,["G3588"]],[13,14,["G2968"]],[14,15,["G1321"]]]},{"k":24414,"v":[[0,1,["G2532"]],[1,3,["G4341"]],[3,6,["G3588"]],[6,7,["G1427"]],[7,8,["G2532"]],[8,9,["G756"]],[9,13,["G649","G846"]],[13,17,["G1417","G1417"]],[17,18,["G2532"]],[18,19,["G1325"]],[19,20,["G846"]],[20,21,["G1849"]],[21,23,["G169"]],[23,24,["G4151"]]]},{"k":24415,"v":[[0,1,["G2532"]],[1,2,["G3853"]],[2,3,["G846"]],[3,4,["G2443"]],[4,7,["G142"]],[7,8,["G3367"]],[8,9,["G1519"]],[9,11,["G3598"]],[11,12,["G1508"]],[12,14,["G4464"]],[14,15,["G3440"]],[15,16,["G3361"]],[16,17,["G4082"]],[17,18,["G3361"]],[18,19,["G740"]],[19,20,["G3361"]],[20,21,["G5475"]],[21,22,["G1519"]],[22,24,["G2223"]]]},{"k":24416,"v":[[0,1,["G235"]],[1,3,["G5265"]],[3,5,["G4547"]],[5,6,["G2532"]],[6,7,["G3361"]],[7,9,["G1746"]],[9,10,["G1417"]],[10,11,["G5509"]]]},{"k":24417,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,9,["G3699","G1437"]],[9,11,["G1525"]],[11,12,["G1519"]],[12,14,["G3614"]],[14,15,["G1563"]],[15,16,["G3306"]],[16,17,["G2193","G302"]],[17,19,["G1831"]],[19,22,["G1564"]]]},{"k":24418,"v":[[0,1,["G2532"]],[1,2,["G3745","G302"]],[2,4,["G3361"]],[4,5,["G1209"]],[5,6,["G5209"]],[6,7,["G3366"]],[7,8,["G191"]],[8,9,["G5216"]],[9,12,["G1607"]],[12,13,["G1564"]],[13,15,["G1621"]],[15,16,["G3588"]],[16,17,["G5522"]],[17,18,["G5270"]],[18,19,["G5216"]],[19,20,["G4228"]],[20,21,["G1519"]],[21,23,["G3142"]],[23,25,["G846"]],[25,26,["G281"]],[26,28,["G3004"]],[28,30,["G5213"]],[30,33,["G2071"]],[33,35,["G414"]],[35,37,["G4670"]],[37,38,["G2228"]],[38,39,["G1116"]],[39,40,["G1722"]],[40,42,["G2250"]],[42,44,["G2920"]],[44,45,["G2228"]],[45,47,["G1565"]],[47,48,["G4172"]]]},{"k":24419,"v":[[0,1,["G2532"]],[1,4,["G1831"]],[4,6,["G2784"]],[6,7,["G2443"]],[7,10,["G3340"]]]},{"k":24420,"v":[[0,1,["G2532"]],[1,4,["G1544"]],[4,5,["G4183"]],[5,6,["G1140"]],[6,7,["G2532"]],[7,8,["G218"]],[8,10,["G1637"]],[10,11,["G4183"]],[11,14,["G732"]],[14,15,["G2532"]],[15,16,["G2323"]],[16,17,[]]]},{"k":24421,"v":[[0,1,["G2532"]],[1,2,["G935"]],[2,3,["G2264"]],[3,4,["G191"]],[4,7,["G1063"]],[7,8,["G846"]],[8,9,["G3686"]],[9,12,["G1096","G5318"]],[12,13,["G2532"]],[13,15,["G3004"]],[15,16,["G3754"]],[16,17,["G2491"]],[17,18,["G3588"]],[18,19,["G907"]],[19,21,["G1453"]],[21,22,["G1537"]],[22,24,["G3498"]],[24,25,["G2532"]],[25,26,["G1223","G5124"]],[26,28,["G1411"]],[28,31,["G1754"]],[31,33,["G1722"]],[33,34,["G846"]]]},{"k":24422,"v":[[0,1,["G243"]],[1,2,["G3004"]],[2,3,["G3754"]],[3,5,["G2076"]],[5,6,["G2243"]],[6,7,["G1161"]],[7,8,["G243"]],[8,9,["G3004"]],[9,10,["G3754"]],[10,12,["G2076"]],[12,14,["G4396"]],[14,15,["G2228"]],[15,16,["G5613"]],[16,17,["G1520"]],[17,19,["G3588"]],[19,20,["G4396"]]]},{"k":24423,"v":[[0,1,["G1161"]],[1,3,["G2264"]],[3,4,["G191"]],[4,7,["G2036"]],[7,8,["G3778"]],[8,9,["G2076"]],[9,10,["G2491"]],[10,11,["G3739"]],[11,12,["G1473"]],[12,13,["G607"]],[13,14,["G846"]],[14,16,["G1453"]],[16,17,["G1537"]],[17,19,["G3498"]]]},{"k":24424,"v":[[0,1,["G1063"]],[1,2,["G2264"]],[2,3,["G846"]],[3,6,["G649"]],[6,7,["G2532"]],[7,10,["G2902"]],[10,11,["G2491"]],[11,12,["G2532"]],[12,13,["G1210"]],[13,14,["G846"]],[14,15,["G1722"]],[15,16,["G5438"]],[16,19,["G1223","G2266"]],[19,20,["G848"]],[20,21,["G80"]],[21,22,["G5376"]],[22,23,["G1135"]],[23,24,["G3754"]],[24,27,["G1060"]],[27,28,["G846"]]]},{"k":24425,"v":[[0,1,["G1063"]],[1,2,["G2491"]],[2,4,["G3004"]],[4,6,["G2264"]],[6,10,["G1832","G3756"]],[10,12,["G4671"]],[12,14,["G2192"]],[14,15,["G4675"]],[15,16,["G80"]],[16,17,["G1135"]]]},{"k":24426,"v":[[0,1,["G1161"]],[1,2,["G2266"]],[2,6,["G1758"]],[6,7,["G846"]],[7,8,["G2532"]],[8,9,["G2309"]],[9,11,["G615"]],[11,12,["G846"]],[12,13,["G2532"]],[13,15,["G1410"]],[15,16,["G3756"]]]},{"k":24427,"v":[[0,1,["G1063"]],[1,2,["G2264"]],[2,3,["G5399"]],[3,4,["G2491"]],[4,5,["G1492"]],[5,7,["G846"]],[7,10,["G1342"]],[10,11,["G435"]],[11,12,["G2532"]],[12,14,["G40"]],[14,15,["G2532"]],[15,16,["G4933"]],[16,17,["G846"]],[17,18,["G2532"]],[18,21,["G191"]],[21,22,["G846"]],[22,24,["G4160"]],[24,26,["G4183"]],[26,27,["G2532"]],[27,28,["G191"]],[28,29,["G846"]],[29,30,["G2234"]]]},{"k":24428,"v":[[0,1,["G2532"]],[1,4,["G2121"]],[4,5,["G2250"]],[5,7,["G2064"]],[7,8,["G3753"]],[8,9,["G2264"]],[9,11,["G848"]],[11,12,["G1077"]],[12,13,["G4160"]],[13,15,["G1173"]],[15,17,["G848"]],[17,18,["G3175","(G2532)"]],[18,20,["G5506"]],[20,21,["G2532"]],[21,22,["G4413"]],[22,25,["G1056"]]]},{"k":24429,"v":[[0,2,["G2532"]],[2,3,["G3588"]],[3,4,["G2364"]],[4,7,["G846"]],[7,8,["G2266"]],[8,10,["G1525"]],[10,11,["G2532"]],[11,12,["G3738"]],[12,13,["G2532"]],[13,14,["G700"]],[14,15,["G2264"]],[15,16,["G2532"]],[16,20,["G4873"]],[20,22,["G3588"]],[22,23,["G935"]],[23,24,["G2036"]],[24,26,["G3588"]],[26,27,["G2877"]],[27,28,["G154"]],[28,30,["G3165"]],[30,31,["G3739","G1437"]],[31,33,["G2309"]],[33,34,["G2532"]],[34,37,["G1325"]],[37,39,["G4671"]]]},{"k":24430,"v":[[0,1,["G2532"]],[1,3,["G3660"]],[3,5,["G846"]],[5,6,["G3739","G1437"]],[6,9,["G154"]],[9,11,["G3165"]],[11,14,["G1325"]],[14,16,["G4671"]],[16,17,["G2193"]],[17,19,["G2255"]],[19,21,["G3450"]],[21,22,["G932"]]]},{"k":24431,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G1831"]],[4,6,["G2036"]],[6,8,["G848"]],[8,9,["G3384"]],[9,10,["G5101"]],[10,13,["G154"]],[13,14,["G1161"]],[14,15,["G3588"]],[15,16,["G2036"]],[16,17,["G3588"]],[17,18,["G2776"]],[18,20,["G2491"]],[20,21,["G3588"]],[21,22,["G910"]]]},{"k":24432,"v":[[0,1,["G2532"]],[1,4,["G1525"]],[4,5,["G2112"]],[5,6,["G3326"]],[6,7,["G4710"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,10,["G935"]],[10,12,["G154"]],[12,13,["G3004"]],[13,15,["G2309"]],[15,16,["G2443"]],[16,18,["G1325"]],[18,19,["G3427"]],[19,22,["G1824"]],[22,23,["G1909"]],[23,25,["G4094"]],[25,26,["G3588"]],[26,27,["G2776"]],[27,29,["G2491"]],[29,30,["G3588"]],[30,31,["G910"]]]},{"k":24433,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G935"]],[3,4,["G1096"]],[4,6,["G4036"]],[6,11,["G1223","G3727"]],[11,12,["G2532"]],[12,18,["G4873"]],[18,21,["G2309"]],[21,22,["G3756"]],[22,23,["G114"]],[23,24,["G846"]]]},{"k":24434,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G3588"]],[3,4,["G935"]],[4,5,["G649"]],[5,7,["G4688"]],[7,9,["G2004"]],[9,10,["G846"]],[10,11,["G2776"]],[11,14,["G5342"]],[14,15,["G1161"]],[15,16,["G3588"]],[16,17,["G565"]],[17,19,["G607"]],[19,20,["G846"]],[20,21,["G1722"]],[21,22,["G3588"]],[22,23,["G5438"]]]},{"k":24435,"v":[[0,1,["G2532"]],[1,2,["G5342"]],[2,3,["G846"]],[3,4,["G2776"]],[4,5,["G1909"]],[5,7,["G4094"]],[7,8,["G2532"]],[8,9,["G1325"]],[9,10,["G846"]],[10,12,["G3588"]],[12,13,["G2877"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G2877"]],[16,17,["G1325"]],[17,18,["G846"]],[18,20,["G848"]],[20,21,["G3384"]]]},{"k":24436,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,4,["G3101"]],[4,5,["G191"]],[5,9,["G2064"]],[9,10,["G2532"]],[10,12,["G142"]],[12,13,["G846"]],[13,14,["G4430"]],[14,15,["G2532"]],[15,16,["G5087"]],[16,17,["G846"]],[17,18,["G1722"]],[18,20,["G3419"]]]},{"k":24437,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G652"]],[3,6,["G4863"]],[6,7,["G4314"]],[7,8,["G2424"]],[8,9,["G2532"]],[9,10,["G518"]],[10,11,["G846"]],[11,13,["G3956"]],[13,14,["G2532"]],[14,15,["G3745"]],[15,18,["G4160"]],[18,19,["G2532"]],[19,20,["G3745"]],[20,23,["G1321"]]]},{"k":24438,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G1205"]],[6,7,["G5210"]],[7,8,["G846"]],[8,9,["G2596","G2398"]],[9,10,["G1519"]],[10,12,["G2048"]],[12,13,["G5117"]],[13,14,["G2532"]],[14,15,["G373"]],[15,17,["G3641"]],[17,18,["G1063"]],[18,20,["G2258"]],[20,21,["G4183"]],[21,22,["G2064"]],[22,23,["G2532"]],[23,24,["G5217"]],[24,25,["G2532"]],[25,32,["G2119","G3761"]],[32,34,["G5315"]]]},{"k":24439,"v":[[0,1,["G2532"]],[1,3,["G565"]],[3,4,["G1519"]],[4,6,["G2048"]],[6,7,["G5117"]],[7,9,["G4143"]],[9,10,["G2596","G2398"]]]},{"k":24440,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3793"]],[3,4,["G1492"]],[4,5,["G846"]],[5,6,["G5217"]],[6,7,["G2532"]],[7,8,["G4183"]],[8,9,["G1921"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G4936"]],[12,13,["G3979"]],[13,14,["G1563"]],[14,16,["G575"]],[16,17,["G3956"]],[17,18,["G4172"]],[18,19,["G2532"]],[19,20,["G4281"]],[20,21,["G846"]],[21,22,["G2532"]],[22,24,["G4905"]],[24,25,["G4314"]],[25,26,["G846"]]]},{"k":24441,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,6,["G1831"]],[6,7,["G1492"]],[7,8,["G4183"]],[8,9,["G3793"]],[9,10,["G2532"]],[10,14,["G4697"]],[14,15,["G1909"]],[15,16,["G846"]],[16,17,["G3754"]],[17,19,["G2258"]],[19,20,["G5613"]],[20,21,["G4263"]],[21,22,["G3361"]],[22,23,["G2192"]],[23,25,["G4166"]],[25,26,["G2532"]],[26,28,["G756"]],[28,30,["G1321"]],[30,31,["G846"]],[31,33,["G4183"]]]},{"k":24442,"v":[[0,1,["G2532"]],[1,8,["G2235","G1096","G4183","G5610"]],[8,9,["G846"]],[9,10,["G3101"]],[10,11,["G4334"]],[11,13,["G846"]],[13,15,["G3004"]],[15,17,["G2076"]],[17,19,["G2048"]],[19,20,["G5117"]],[20,21,["G2532"]],[21,22,["G2235"]],[22,27,["G4183","G5610"]]]},{"k":24443,"v":[[0,3,["G630","G846"]],[3,4,["G2443"]],[4,7,["G565"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G68"]],[10,12,["G2945"]],[12,13,["G2532"]],[13,16,["G2968"]],[16,18,["G59"]],[18,19,["G1438"]],[19,20,["G740"]],[20,21,["G1063"]],[21,23,["G2192"]],[23,24,["G3756","G5101"]],[24,26,["G5315"]]]},{"k":24444,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G846"]],[6,7,["G1325"]],[7,8,["G5210"]],[8,9,["G846"]],[9,12,["G5315"]],[12,13,["G2532"]],[13,14,["G3004"]],[14,16,["G846"]],[16,19,["G565"]],[19,21,["G59"]],[21,23,["G1250"]],[23,24,["G1220"]],[24,26,["G740"]],[26,27,["G2532"]],[27,28,["G1325"]],[28,29,["G846"]],[29,31,["G5315"]]]},{"k":24445,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G3004"]],[2,4,["G846"]],[4,6,["G4214"]],[6,7,["G740"]],[7,8,["G2192"]],[8,10,["G5217"]],[10,11,["G2532"]],[11,12,["G1492"]],[12,13,["G2532"]],[13,16,["G1097"]],[16,18,["G3004"]],[18,19,["G4002"]],[19,20,["G2532"]],[20,21,["G1417"]],[21,22,["G2486"]]]},{"k":24446,"v":[[0,1,["G2532"]],[1,3,["G2004"]],[3,4,["G846"]],[4,9,["G347","G3956"]],[9,11,["G4849","G4849"]],[11,12,["G1909"]],[12,13,["G3588"]],[13,14,["G5515"]],[14,15,["G5528"]]]},{"k":24447,"v":[[0,1,["G2532"]],[1,4,["G377"]],[4,6,["G4237","G4237"]],[6,8,["G303","G1540"]],[8,9,["G2532"]],[9,11,["G303","G4004"]]]},{"k":24448,"v":[[0,1,["G2532"]],[1,5,["G2983"]],[5,6,["G3588"]],[6,7,["G4002"]],[7,8,["G740"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G1417"]],[11,12,["G2486"]],[12,15,["G308"]],[15,16,["G1519"]],[16,17,["G3772"]],[17,19,["G2127"]],[19,20,["G2532"]],[20,21,["G2622"]],[21,22,["G3588"]],[22,23,["G740"]],[23,24,["G2532"]],[24,25,["G1325"]],[25,28,["G848"]],[28,29,["G3101"]],[29,30,["G2443"]],[30,32,["G3908"]],[32,33,["G846"]],[33,34,["G2532"]],[34,35,["G3588"]],[35,36,["G1417"]],[36,37,["G2486"]],[37,38,["G3307"]],[38,42,["G3956"]]]},{"k":24449,"v":[[0,1,["G2532"]],[1,4,["G3956"]],[4,5,["G5315"]],[5,6,["G2532"]],[6,8,["G5526"]]]},{"k":24450,"v":[[0,1,["G2532"]],[1,4,["G142"]],[4,5,["G1427"]],[5,6,["G2894"]],[6,7,["G4134"]],[7,10,["G2801"]],[10,11,["G2532"]],[11,12,["G575"]],[12,13,["G3588"]],[13,14,["G2486"]]]},{"k":24451,"v":[[0,1,["G2532"]],[1,5,["G5315"]],[5,7,["G3588"]],[7,8,["G740"]],[8,9,["G2258"]],[9,10,["G5616"]],[10,12,["G4000"]],[12,13,["G435"]]]},{"k":24452,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G315"]],[4,5,["G848"]],[5,6,["G3101"]],[6,8,["G1684"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G4143"]],[11,12,["G2532"]],[12,18,["G4254","G1519","G4008"]],[18,19,["G4314"]],[19,21,["G966"]],[21,22,["G2193"]],[22,23,["G846"]],[23,25,["G630"]],[25,26,["G3588"]],[26,27,["G3793"]]]},{"k":24453,"v":[[0,1,["G2532"]],[1,7,["G657","G846"]],[7,9,["G565"]],[9,10,["G1519"]],[10,12,["G3735"]],[12,14,["G4336"]]]},{"k":24454,"v":[[0,1,["G2532"]],[1,3,["G3798"]],[3,5,["G1096"]],[5,6,["G3588"]],[6,7,["G4143"]],[7,8,["G2258"]],[8,9,["G1722"]],[9,11,["G3319"]],[11,13,["G3588"]],[13,14,["G2281"]],[14,15,["G2532"]],[15,16,["G846"]],[16,17,["G3441"]],[17,18,["G1909"]],[18,19,["G3588"]],[19,20,["G1093"]]]},{"k":24455,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G846"]],[4,5,["G928"]],[5,7,["G1643"]],[7,8,["G1063"]],[8,9,["G3588"]],[9,10,["G417"]],[10,11,["G2258"]],[11,12,["G1727"]],[12,14,["G846"]],[14,15,["G2532"]],[15,16,["G4012"]],[16,18,["G5067"]],[18,19,["G5438"]],[19,21,["G3588"]],[21,22,["G3571"]],[22,24,["G2064"]],[24,25,["G4314"]],[25,26,["G846"]],[26,27,["G4043"]],[27,28,["G1909"]],[28,29,["G3588"]],[29,30,["G2281"]],[30,31,["G2532"]],[31,32,["G2309"]],[32,35,["G3928"]],[35,36,["G846"]]]},{"k":24456,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1492"]],[4,5,["G846"]],[5,6,["G4043"]],[6,7,["G1909"]],[7,8,["G3588"]],[8,9,["G2281"]],[9,11,["G1380"]],[11,14,["G1511"]],[14,16,["G5326"]],[16,17,["G2532"]],[17,19,["G349"]]]},{"k":24457,"v":[[0,1,["G1063"]],[1,3,["G3956"]],[3,4,["G1492"]],[4,5,["G846"]],[5,6,["G2532"]],[6,8,["G5015"]],[8,9,["G2532"]],[9,10,["G2112"]],[10,12,["G2980"]],[12,13,["G3326"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G3004"]],[16,18,["G846"]],[18,22,["G2293"]],[22,24,["G1510"]],[24,25,["G1473"]],[25,28,["G5399","G3361"]]]},{"k":24458,"v":[[0,1,["G2532"]],[1,4,["G305"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G4143"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G417"]],[12,13,["G2869"]],[13,14,["G2532"]],[14,17,["G3029"]],[17,18,["G1839"]],[18,19,["G1722"]],[19,20,["G1438"]],[20,21,["G1537"]],[21,22,["G4053"]],[22,23,["G2532"]],[23,24,["G2296"]]]},{"k":24459,"v":[[0,1,["G1063"]],[1,3,["G4920"]],[3,4,["G3756"]],[4,7,["G1909"]],[7,8,["G3588"]],[8,9,["G740"]],[9,10,["G1063"]],[10,11,["G846"]],[11,12,["G2588"]],[12,13,["G2258"]],[13,14,["G4456"]]]},{"k":24460,"v":[[0,1,["G2532"]],[1,6,["G1276"]],[6,8,["G2064"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G1093"]],[11,13,["G1082"]],[13,14,["G2532"]],[14,18,["G4358"]]]},{"k":24461,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G1831"]],[5,7,["G1537"]],[7,8,["G3588"]],[8,9,["G4143"]],[9,10,["G2112"]],[10,12,["G1921"]],[12,13,["G846"]]]},{"k":24462,"v":[[0,3,["G4063"]],[3,4,["G1565"]],[4,5,["G3650"]],[5,8,["G4066"]],[8,10,["G756"]],[10,13,["G4064"]],[13,14,["G1909"]],[14,15,["G2895"]],[15,19,["G2192","G2560"]],[19,20,["G3699"]],[20,22,["G191"]],[22,23,["(G3754)"]],[23,24,["G2076","(G1563)"]]]},{"k":24463,"v":[[0,1,["G2532"]],[1,2,["G3699","G302"]],[2,4,["G1531"]],[4,5,["G1519"]],[5,6,["G2968"]],[6,7,["G2228"]],[7,8,["G4172"]],[8,9,["G2228"]],[9,10,["G68"]],[10,12,["G5087"]],[12,13,["G3588"]],[13,14,["G770"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G58"]],[17,18,["G2532"]],[18,19,["G3870"]],[19,20,["G846"]],[20,21,["G2443"]],[21,24,["G680"]],[24,28,["G2579"]],[28,29,["G3588"]],[29,30,["G2899"]],[30,32,["G846"]],[32,33,["G2440"]],[33,34,["G2532"]],[34,37,["G3745","G302"]],[37,38,["G680"]],[38,39,["G846"]],[39,42,["G4982"]]]},{"k":24464,"v":[[0,1,["G2532"]],[1,3,["G4863"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G3588"]],[6,7,["G5330"]],[7,8,["G2532"]],[8,9,["G5100"]],[9,11,["G3588"]],[11,12,["G1122"]],[12,14,["G2064"]],[14,15,["G575"]],[15,16,["G2414"]]]},{"k":24465,"v":[[0,1,["G2532"]],[1,4,["G1492"]],[4,5,["G5100"]],[5,7,["G846"]],[7,8,["G3101"]],[8,9,["G2068"]],[9,10,["G740"]],[10,12,["G2839"]],[12,16,["G5123"]],[16,18,["G449"]],[18,19,["G5495"]],[19,22,["G3201"]]]},{"k":24466,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,4,["G2532"]],[4,5,["G3956"]],[5,6,["G3588"]],[6,7,["G2453"]],[7,8,["G3362"]],[8,10,["G3538"]],[10,12,["G5495"]],[12,13,["G4435"]],[13,14,["G2068"]],[14,15,["G3756"]],[15,16,["G2902"]],[16,17,["G3588"]],[17,18,["G3862"]],[18,20,["G3588"]],[20,21,["G4245"]]]},{"k":24467,"v":[[0,1,["G2532"]],[1,5,["G575"]],[5,7,["G58"]],[7,8,["G3362"]],[8,10,["G907"]],[10,12,["G2068"]],[12,13,["G3756"]],[13,14,["G2532"]],[14,15,["G4183"]],[15,17,["G243"]],[17,19,["G2076"]],[19,20,["G3739"]],[20,23,["G3880"]],[23,25,["G2902"]],[25,28,["G909"]],[28,30,["G4221"]],[30,31,["G2532"]],[31,32,["G3582","(G2532)"]],[32,34,["G5473"]],[34,35,["G2532"]],[35,37,["G2825"]]]},{"k":24468,"v":[[0,1,["G1899"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,4,["G2532"]],[4,5,["G1122"]],[5,6,["G1905"]],[6,7,["G846"]],[7,8,["G1302"]],[8,9,["G4043"]],[9,10,["G3756"]],[10,11,["G4675"]],[11,12,["G3101"]],[12,13,["G2596"]],[13,15,["G3588"]],[15,16,["G3862"]],[16,18,["G3588"]],[18,19,["G4245"]],[19,20,["G235"]],[20,21,["G2068"]],[21,22,["G740"]],[22,24,["G449"]],[24,25,["G5495"]]]},{"k":24469,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G846"]],[6,7,["G2573"]],[7,9,["G2268"]],[9,10,["G4395"]],[10,11,["G4012"]],[11,12,["G5216"]],[12,13,["G5273"]],[13,14,["G5613"]],[14,17,["G1125"]],[17,18,["G3778"]],[18,19,["G2992"]],[19,20,["G5091"]],[20,21,["G3165"]],[21,24,["G5491"]],[24,25,["G1161"]],[25,26,["G846"]],[26,27,["G2588"]],[27,29,["G568","G4206"]],[29,30,["G575"]],[30,31,["G1700"]]]},{"k":24470,"v":[[0,1,["G1161"]],[1,3,["G3155"]],[3,6,["G4576"]],[6,7,["G3165"]],[7,8,["G1321"]],[8,10,["G1319"]],[10,12,["G1778"]],[12,14,["G444"]]]},{"k":24471,"v":[[0,1,["G1063"]],[1,3,["G863"]],[3,4,["G3588"]],[4,5,["G1785"]],[5,7,["G2316"]],[7,9,["G2902"]],[9,10,["G3588"]],[10,11,["G3862"]],[11,13,["G444"]],[13,16,["G909"]],[16,18,["G3582"]],[18,19,["G2532"]],[19,20,["G4221"]],[20,21,["G2532"]],[21,22,["G4183"]],[22,23,["G243"]],[23,24,["G5108"]],[24,26,["G3946"]],[26,28,["G4160"]]]},{"k":24472,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,7,["G2573"]],[7,9,["G114"]],[9,10,["G3588"]],[10,11,["G1785"]],[11,13,["G2316"]],[13,14,["G2443"]],[14,17,["G5083"]],[17,19,["G5216"]],[19,20,["G3862"]]]},{"k":24473,"v":[[0,1,["G1063"]],[1,2,["G3475"]],[2,3,["G2036"]],[3,4,["G5091"]],[4,5,["G4675"]],[5,6,["G3962"]],[6,7,["G2532"]],[7,8,["G4675"]],[8,9,["G3384"]],[9,12,["G2551"]],[12,13,["G3962"]],[13,14,["G2228"]],[14,15,["G3384"]],[15,18,["G5053"]],[18,20,["G2288"]]]},{"k":24474,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G3004"]],[3,4,["G1437"]],[4,6,["G444"]],[6,8,["G2036"]],[8,11,["G3962"]],[11,12,["G2228"]],[12,13,["G3384"]],[13,16,["G2878"]],[16,20,["G3603"]],[20,22,["G1435"]],[22,24,["G3739","G1437"]],[24,28,["G5623"]],[28,29,["G1537"]],[29,30,["G1700"]],[30,34,[]]]},{"k":24475,"v":[[0,1,["G2532"]],[1,3,["G863"]],[3,4,["G846"]],[4,6,["G3765"]],[6,8,["G4160"]],[8,9,["G3762"]],[9,11,["G848"]],[11,12,["G3962"]],[12,13,["G2228"]],[13,14,["G848"]],[14,15,["G3384"]]]},{"k":24476,"v":[[0,8,["G208","G3588","G3056","G2316"]],[8,10,["G5216"]],[10,11,["G3862"]],[11,12,["G3739"]],[12,15,["G3860"]],[15,16,["G2532"]],[16,17,["G4183"]],[17,18,["G5108"]],[18,20,["G3946"]],[20,21,["G4160"]],[21,22,[]]]},{"k":24477,"v":[[0,1,["G2532"]],[1,5,["G4341"]],[5,6,["G3956"]],[6,7,["G3588"]],[7,8,["G3793"]],[8,12,["G3004"]],[12,14,["G846"]],[14,15,["G191"]],[15,17,["G3450"]],[17,19,["G3956"]],[19,22,["G2532"]],[22,23,["G4920"]]]},{"k":24478,"v":[[0,2,["G2076"]],[2,3,["G3762"]],[3,5,["G1855"]],[5,7,["G444"]],[7,8,["G3739"]],[8,9,["G1531"]],[9,10,["G1519"]],[10,11,["G846"]],[11,12,["G1410"]],[12,13,["G2840"]],[13,14,["G846"]],[14,15,["G235"]],[15,19,["G1607"]],[19,21,["G575"]],[21,22,["G846"]],[22,23,["G1565"]],[23,24,["G2076"]],[24,27,["G2840"]],[27,28,["G3588"]],[28,29,["G444"]]]},{"k":24479,"v":[[0,3,["G1536"]],[3,4,["G2192"]],[4,5,["G3775"]],[5,7,["G191"]],[7,10,["G191"]]]},{"k":24480,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G1525"]],[5,6,["G1519"]],[6,8,["G3624"]],[8,9,["G575"]],[9,10,["G3588"]],[10,11,["G3793"]],[11,12,["G846"]],[12,13,["G3101"]],[13,14,["G1905"]],[14,15,["G846"]],[15,16,["G4012"]],[16,17,["G3588"]],[17,18,["G3850"]]]},{"k":24481,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G2075"]],[6,7,["G5210"]],[7,8,["G3779"]],[8,10,["G801"]],[10,11,["G2532"]],[11,14,["G3756"]],[14,15,["G3539"]],[15,16,["G3754"]],[16,18,["G3956"]],[18,20,["G1855"]],[20,21,["G1531"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G444"]],[24,26,["G1410","G3756"]],[26,27,["G2840"]],[27,28,["G846"]]]},{"k":24482,"v":[[0,1,["G3754"]],[1,3,["G1531"]],[3,4,["G3756"]],[4,5,["G1519"]],[5,6,["G846"]],[6,7,["G2588"]],[7,8,["G235"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G2836"]],[11,12,["G2532"]],[12,14,["G1607"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G856"]],[17,18,["G2511"]],[18,19,["G3956"]],[19,20,["G1033"]]]},{"k":24483,"v":[[0,1,["G1161"]],[1,3,["G3004","(G3754)"]],[3,6,["G1607"]],[6,8,["G1537"]],[8,9,["G3588"]],[9,10,["G444"]],[10,11,["G1565"]],[11,12,["G2840"]],[12,13,["G3588"]],[13,14,["G444"]]]},{"k":24484,"v":[[0,1,["G1063"]],[1,3,["G2081"]],[3,5,["G1537"]],[5,6,["G3588"]],[6,7,["G2588"]],[7,9,["G444"]],[9,10,["G1607"]],[10,11,["G2556"]],[11,12,["G1261"]],[12,13,["G3430"]],[13,14,["G4202"]],[14,15,["G5408"]]]},{"k":24485,"v":[[0,1,["G2829"]],[1,2,["G4124"]],[2,3,["G4189"]],[3,4,["G1388"]],[4,5,["G766"]],[5,7,["G4190"]],[7,8,["G3788"]],[8,9,["G988"]],[9,10,["G5243"]],[10,11,["G877"]]]},{"k":24486,"v":[[0,1,["G3956"]],[1,2,["G5023"]],[2,4,["G4190"]],[4,5,["G1607"]],[5,7,["G2081"]],[7,8,["G2532"]],[8,9,["G2840"]],[9,10,["G3588"]],[10,11,["G444"]]]},{"k":24487,"v":[[0,1,["G2532"]],[1,3,["G1564"]],[3,5,["G450"]],[5,7,["G565"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G3181"]],[10,12,["G5184"]],[12,13,["G2532"]],[13,14,["G4605"]],[14,15,["G2532"]],[15,16,["G1525"]],[16,17,["G1519"]],[17,19,["G3614"]],[19,21,["G2309"]],[21,24,["G3762"]],[24,25,["G1097"]],[25,27,["G2532"]],[27,29,["G1410"]],[29,30,["G3756"]],[30,32,["G2990"]]]},{"k":24488,"v":[[0,1,["G1063"]],[1,4,["G1135"]],[4,5,["G3739"]],[5,7,["G2365"]],[7,8,["G2192"]],[8,10,["G169"]],[10,11,["G4151"]],[11,12,["G191"]],[12,13,["G4012"]],[13,14,["G846"]],[14,16,["G2064"]],[16,18,["G4363"]],[18,19,["G4314"]],[19,20,["G846"]],[20,21,["G4228"]]]},{"k":24489,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G1135"]],[2,3,["G2258"]],[3,5,["G1674"]],[5,7,["G4949"]],[7,9,["G1085"]],[9,10,["G2532"]],[10,12,["G2065"]],[12,13,["G846"]],[13,14,["G2443"]],[14,18,["G1544"]],[18,19,["G3588"]],[19,20,["G1140"]],[20,22,["G1537"]],[22,23,["G848"]],[23,24,["G2364"]]]},{"k":24490,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G863"]],[6,7,["G3588"]],[7,8,["G5043"]],[8,9,["G4412"]],[9,11,["G5526"]],[11,12,["G1063"]],[12,14,["G2076"]],[14,15,["G3756"]],[15,16,["G2570"]],[16,18,["G2983"]],[18,19,["G3588"]],[19,20,["G5043"]],[20,21,["G740"]],[21,22,["G2532"]],[22,24,["G906"]],[24,27,["G3588"]],[27,28,["G2952"]]]},{"k":24491,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,4,["G2532"]],[4,5,["G3004"]],[5,7,["G846"]],[7,8,["G3483"]],[8,9,["G2962"]],[9,10,["G1063","(G2532)"]],[10,11,["G3588"]],[11,12,["G2952"]],[12,13,["G5270"]],[13,14,["G3588"]],[14,15,["G5132"]],[15,16,["G2068"]],[16,17,["G575"]],[17,18,["G3588"]],[18,19,["G3813"]],[19,20,["G5589"]]]},{"k":24492,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G1223"]],[6,7,["G5126"]],[7,8,["G3056"]],[8,11,["G5217"]],[11,12,["G3588"]],[12,13,["G1140"]],[13,15,["G1831"]],[15,17,["G1537"]],[17,18,["G4675"]],[18,19,["G2364"]]]},{"k":24493,"v":[[0,1,["G2532"]],[1,5,["G565"]],[5,6,["G1519"]],[6,7,["G848"]],[7,8,["G3624"]],[8,10,["G2147"]],[10,11,["G3588"]],[11,12,["G1140"]],[12,14,["G1831"]],[14,15,["G2532"]],[15,17,["G2364"]],[17,18,["G906"]],[18,19,["G1909"]],[19,20,["G3588"]],[20,21,["G2825"]]]},{"k":24494,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,3,["G1831"]],[3,4,["G1537"]],[4,5,["G3588"]],[5,6,["G3725"]],[6,8,["G5184"]],[8,9,["G2532"]],[9,10,["G4605"]],[10,12,["G2064"]],[12,13,["G4314"]],[13,14,["G3588"]],[14,15,["G2281"]],[15,17,["G1056"]],[17,18,["G303"]],[18,20,["G3319"]],[20,22,["G3588"]],[22,23,["G3725"]],[23,25,["G1179"]]]},{"k":24495,"v":[[0,1,["G2532"]],[1,3,["G5342"]],[3,5,["G846"]],[5,9,["G2974"]],[9,16,["G3424"]],[16,17,["G2532"]],[17,19,["G3870"]],[19,20,["G846"]],[20,21,["G2443"]],[21,25,["G2007","G5495"]],[25,26,["G846"]]]},{"k":24496,"v":[[0,1,["G2532"]],[1,3,["G618"]],[3,4,["G846"]],[4,5,["G2596","G2398"]],[5,6,["G575"]],[6,7,["G3588"]],[7,8,["G3793"]],[8,10,["G906"]],[10,11,["G848"]],[11,12,["G1147"]],[12,13,["G1519"]],[13,14,["G846"]],[14,15,["G3775"]],[15,16,["G2532"]],[16,18,["G4429"]],[18,20,["G680"]],[20,21,["G846"]],[21,22,["G1100"]]]},{"k":24497,"v":[[0,1,["G2532"]],[1,3,["G308"]],[3,4,["G1519"]],[4,5,["G3772"]],[5,7,["G4727"]],[7,8,["G2532"]],[8,9,["G3004"]],[9,11,["G846"]],[11,12,["G2188"]],[12,14,["G3603"]],[14,16,["G1272"]]]},{"k":24498,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G846"]],[3,4,["G189"]],[4,6,["G1272"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G1199"]],[9,11,["G846"]],[11,12,["G1100"]],[12,14,["G3089"]],[14,15,["G2532"]],[15,17,["G2980"]],[17,18,["G3723"]]]},{"k":24499,"v":[[0,1,["G2532"]],[1,3,["G1291"]],[3,4,["G846"]],[4,5,["G2443"]],[5,8,["G2036"]],[8,10,["G3367"]],[10,11,["G1161"]],[11,13,["G3745"]],[13,14,["G846"]],[14,15,["G1291"]],[15,16,["G846"]],[16,20,["G3123"]],[20,23,["G4054"]],[23,25,["G2784"]],[25,26,[]]]},{"k":24500,"v":[[0,1,["G2532"]],[1,4,["G5249"]],[4,5,["G1605"]],[5,6,["G3004"]],[6,9,["G4160"]],[9,11,["G3956"]],[11,12,["G2573"]],[12,14,["G4160"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G2974"]],[17,19,["G191"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G216"]],[22,24,["G2980"]]]},{"k":24501,"v":[[0,1,["G1722"]],[1,2,["G1565"]],[2,3,["G2250"]],[3,5,["G3793"]],[5,6,["G5607"]],[6,8,["G3827"]],[8,9,["G2532"]],[9,10,["G2192"]],[10,11,["G3361","G5101"]],[11,13,["G5315"]],[13,14,["G2424"]],[14,15,["G4341"]],[15,16,["G848"]],[16,17,["G3101"]],[17,20,["G2532"]],[20,21,["G3004"]],[21,23,["G846"]]]},{"k":24502,"v":[[0,3,["G4697"]],[3,4,["G1909"]],[4,5,["G3588"]],[5,6,["G3793"]],[6,7,["G3754"]],[7,10,["G2235"]],[10,11,["G4357"]],[11,13,["G3427"]],[13,14,["G5140"]],[14,15,["G2250"]],[15,16,["G2532"]],[16,17,["G2192"]],[17,18,["G3756","G5101"]],[18,20,["G5315"]]]},{"k":24503,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,6,["G630","G846"]],[6,7,["G3523"]],[7,8,["G1519"]],[8,10,["G848"]],[10,11,["G3624"]],[11,14,["G1590"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G3598"]],[17,18,["G1063"]],[18,19,["G5100"]],[19,21,["G846"]],[21,22,["G2240"]],[22,24,["G3113"]]]},{"k":24504,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3101"]],[3,4,["G611"]],[4,5,["G846"]],[5,7,["G4159"]],[7,8,["G1410"]],[8,10,["G5100"]],[10,11,["G5526"]],[11,12,["G5128"]],[12,15,["G740"]],[15,16,["G5602"]],[16,17,["G1909"]],[17,19,["G2047"]]]},{"k":24505,"v":[[0,1,["G2532"]],[1,3,["G1905"]],[3,4,["G846"]],[4,6,["G4214"]],[6,7,["G740"]],[7,8,["G2192"]],[8,10,["G1161"]],[10,11,["G3588"]],[11,12,["G2036"]],[12,13,["G2033"]]]},{"k":24506,"v":[[0,1,["G2532"]],[1,3,["G3853"]],[3,4,["G3588"]],[4,5,["G3793"]],[5,8,["G377"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G1093"]],[11,12,["G2532"]],[12,14,["G2983"]],[14,15,["G3588"]],[15,16,["G2033"]],[16,17,["G740"]],[17,20,["G2168"]],[20,22,["G2806"]],[22,23,["G2532"]],[23,24,["G1325"]],[24,26,["G848"]],[26,27,["G3101"]],[27,28,["G2443"]],[28,30,["G3908"]],[30,32,["G2532"]],[32,37,["G3908"]],[37,38,["G3588"]],[38,39,["G3793"]]]},{"k":24507,"v":[[0,1,["G2532"]],[1,3,["G2192"]],[3,5,["G3641"]],[5,7,["G2485"]],[7,8,["G2532"]],[8,10,["G2127"]],[10,12,["G2036"]],[12,17,["G3908","G846","G2532"]],[17,18,[]]]},{"k":24508,"v":[[0,1,["G1161"]],[1,4,["G5315"]],[4,5,["G2532"]],[5,7,["G5526"]],[7,8,["G2532"]],[8,11,["G142"]],[11,14,["G2801"]],[14,18,["G4051"]],[18,19,["G2033"]],[19,20,["G4711"]]]},{"k":24509,"v":[[0,1,["G1161"]],[1,5,["G5315"]],[5,6,["G2258"]],[6,7,["G5613"]],[7,9,["G5070"]],[9,10,["G2532"]],[10,14,["G630","G846"]]]},{"k":24510,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G1684"]],[4,5,["G1519"]],[5,7,["G4143"]],[7,8,["G3326"]],[8,9,["G848"]],[9,10,["G3101"]],[10,12,["G2064"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G3313"]],[15,17,["G1148"]]]},{"k":24511,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,5,["G1831"]],[5,6,["G2532"]],[6,7,["G756"]],[7,10,["G4802"]],[10,11,["G846"]],[11,12,["G2212"]],[12,13,["G3844"]],[13,14,["G846"]],[14,16,["G4592"]],[16,17,["G575"]],[17,18,["G3772"]],[18,19,["G3985"]],[19,20,["G846"]]]},{"k":24512,"v":[[0,1,["G2532"]],[1,4,["G389"]],[4,6,["G848"]],[6,7,["G4151"]],[7,8,["G2532"]],[8,9,["G3004"]],[9,10,["G5101"]],[10,12,["G3778"]],[12,13,["G1074"]],[13,15,["G1934"]],[15,17,["G4592"]],[17,18,["G281"]],[18,20,["G3004"]],[20,22,["G5213"]],[22,23,["(G1487)"]],[23,26,["G4592"]],[26,28,["G1325"]],[28,30,["G5026"]],[30,31,["G1074"]]]},{"k":24513,"v":[[0,1,["G2532"]],[1,3,["G863"]],[3,4,["G846"]],[4,6,["G1684"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G4143"]],[9,10,["G3825"]],[10,11,["G565"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,15,["G4008"]]]},{"k":24514,"v":[[0,1,["G2532"]],[1,5,["G1950"]],[5,7,["G2983"]],[7,8,["G740"]],[8,9,["G3756"]],[9,10,["G2192"]],[10,12,["G1722"]],[12,13,["G3588"]],[13,14,["G4143"]],[14,15,["G3326"]],[15,16,["G1438"]],[16,18,["G1508"]],[18,19,["G1520"]],[19,20,["G740"]]]},{"k":24515,"v":[[0,1,["G2532"]],[1,3,["G1291"]],[3,4,["G846"]],[4,5,["G3004"]],[5,7,["G3708"]],[7,8,["G991"]],[8,9,["G575"]],[9,10,["G3588"]],[10,11,["G2219"]],[11,13,["G3588"]],[13,14,["G5330"]],[14,15,["G2532"]],[15,17,["G3588"]],[17,18,["G2219"]],[18,20,["G2264"]]]},{"k":24516,"v":[[0,1,["G2532"]],[1,3,["G1260"]],[3,5,["G4314","G240"]],[5,6,["G3004"]],[6,9,["G3754"]],[9,11,["G2192"]],[11,12,["G3756"]],[12,13,["G740"]]]},{"k":24517,"v":[[0,1,["G2532"]],[1,3,["G2424"]],[3,4,["G1097"]],[4,7,["G3004"]],[7,9,["G846"]],[9,10,["G5101"]],[10,11,["G1260"]],[11,13,["G3754"]],[13,15,["G2192"]],[15,16,["G3756"]],[16,17,["G740"]],[17,18,["G3539"]],[18,21,["G3768"]],[21,22,["G3761"]],[22,23,["G4920"]],[23,24,["G2192"]],[24,26,["G5216"]],[26,27,["G2588"]],[27,28,["G2089"]],[28,29,["G4456"]]]},{"k":24518,"v":[[0,1,["G2192"]],[1,2,["G3788"]],[2,3,["G991"]],[3,5,["G3756"]],[5,6,["G2532"]],[6,7,["G2192"]],[7,8,["G3775"]],[8,9,["G191"]],[9,11,["G3756"]],[11,12,["G2532"]],[12,15,["G3756"]],[15,16,["G3421"]]]},{"k":24519,"v":[[0,1,["G3753"]],[1,3,["G2806"]],[3,4,["G3588"]],[4,5,["G4002"]],[5,6,["G740"]],[6,7,["G1519"]],[7,9,["G4000"]],[9,11,["G4214"]],[11,12,["G2894"]],[12,13,["G4134"]],[13,15,["G2801"]],[15,18,["G142"]],[18,20,["G3004"]],[20,22,["G846"]],[22,23,["G1427"]]]},{"k":24520,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,3,["G3588"]],[3,4,["G2033"]],[4,5,["G1519"]],[5,7,["G5070"]],[7,9,["G4214"]],[9,10,["G4711"]],[10,11,["G4138"]],[11,13,["G2801"]],[13,16,["G142"]],[16,17,["G1161"]],[17,18,["G3588"]],[18,19,["G2036"]],[19,20,["G2033"]]]},{"k":24521,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G4459"]],[6,12,["G3756"]],[12,13,["G4920"]]]},{"k":24522,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G1519"]],[4,5,["G966"]],[5,6,["G2532"]],[6,8,["G5342"]],[8,11,["G5185"]],[11,13,["G846"]],[13,14,["G2532"]],[14,15,["G3870"]],[15,16,["G846"]],[16,17,["G2443"]],[17,18,["G680"]],[18,19,["G846"]]]},{"k":24523,"v":[[0,1,["G2532"]],[1,3,["G1949"]],[3,4,["G3588"]],[4,6,["G5185"]],[6,8,["G3588"]],[8,9,["G5495"]],[9,11,["G1806"]],[11,12,["G846"]],[12,13,["G1854"]],[13,15,["G3588"]],[15,16,["G2968"]],[16,17,["G2532"]],[17,21,["G4429"]],[21,22,["G1519"]],[22,23,["G846"]],[23,24,["G3659"]],[24,29,["G2007","G5495"]],[29,30,["G846"]],[30,32,["G1905"]],[32,33,["G846"]],[33,37,["G1536","G991"]]]},{"k":24524,"v":[[0,1,["G2532"]],[1,4,["G308"]],[4,6,["G3004"]],[6,8,["G991"]],[8,9,["G444"]],[9,10,["G5613"]],[10,11,["G1186"]],[11,12,["G4043"]]]},{"k":24525,"v":[[0,2,["G1534"]],[2,4,["G2007"]],[4,6,["G5495"]],[6,7,["G3825"]],[7,8,["G1909"]],[8,9,["G846"]],[9,10,["G3788"]],[10,11,["G2532"]],[11,12,["G4160"]],[12,13,["G846"]],[13,15,["G308"]],[15,16,["G2532"]],[16,19,["G600"]],[19,20,["G2532"]],[20,21,["G1689"]],[21,23,["G537"]],[23,24,["G5081"]]]},{"k":24526,"v":[[0,1,["G2532"]],[1,5,["G649","G846"]],[5,6,["G1519"]],[6,7,["G846"]],[7,8,["G3624"]],[8,9,["G3004"]],[9,10,["G3366"]],[10,11,["G1525"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G2968"]],[14,15,["G3366"]],[15,16,["G2036"]],[16,19,["G5100"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G2968"]]]},{"k":24527,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,4,["G1831"]],[4,5,["G2532"]],[5,6,["G846"]],[6,7,["G3101"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G2968"]],[10,12,["G2542"]],[12,13,["G5376"]],[13,14,["G2532"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G3598"]],[17,19,["G1905"]],[19,20,["G846"]],[20,21,["G3101"]],[21,22,["G3004"]],[22,24,["G846"]],[24,25,["G5101"]],[25,27,["G444"]],[27,28,["G3004"]],[28,30,["G3165"]],[30,31,["G1511"]]]},{"k":24528,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,4,["G2491"]],[4,5,["G3588"]],[5,6,["G910"]],[6,7,["G2532"]],[7,8,["G243"]],[8,10,["G2243"]],[10,11,["G1161"]],[11,12,["G243"]],[12,13,["G1520"]],[13,15,["G3588"]],[15,16,["G4396"]]]},{"k":24529,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G1161"]],[6,7,["G5101"]],[7,8,["G3004"]],[8,9,["G5210"]],[9,11,["G3165"]],[11,12,["G1511"]],[12,13,["G1161"]],[13,14,["G4074"]],[14,15,["G611"]],[15,17,["G3004"]],[17,19,["G846"]],[19,20,["G4771"]],[20,21,["G1488"]],[21,22,["G3588"]],[22,23,["G5547"]]]},{"k":24530,"v":[[0,1,["G2532"]],[1,3,["G2008"]],[3,4,["G846"]],[4,5,["G2443"]],[5,8,["G3004"]],[8,10,["G3367"]],[10,11,["G4012"]],[11,12,["G846"]]]},{"k":24531,"v":[[0,1,["G2532"]],[1,3,["G756"]],[3,5,["G1321"]],[5,6,["G846"]],[6,7,["G3754"]],[7,8,["G3588"]],[8,9,["G5207"]],[9,11,["G444"]],[11,12,["G1163"]],[12,13,["G3958"]],[13,15,["G4183"]],[15,16,["G2532"]],[16,18,["G593"]],[18,19,["G575"]],[19,20,["G3588"]],[20,21,["G4245"]],[21,22,["G2532"]],[22,26,["G749"]],[26,27,["G2532"]],[27,28,["G1122"]],[28,29,["G2532"]],[29,31,["G615"]],[31,32,["G2532"]],[32,33,["G3326"]],[33,34,["G5140"]],[34,35,["G2250"]],[35,37,["G450"]]]},{"k":24532,"v":[[0,1,["G2532"]],[1,3,["G2980"]],[3,5,["G3056"]],[5,6,["G3954"]],[6,7,["G2532"]],[7,8,["G4074"]],[8,9,["G4355"]],[9,10,["G846"]],[10,12,["G756"]],[12,14,["G2008"]],[14,15,["G846"]]]},{"k":24533,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,6,["G1994"]],[6,7,["G2532"]],[7,9,["G1492"]],[9,10,["G848"]],[10,11,["G3101"]],[11,13,["G2008"]],[13,14,["G4074"]],[14,15,["G3004"]],[15,16,["G5217"]],[16,18,["G3694"]],[18,19,["G3450"]],[19,20,["G4567"]],[20,21,["G3754"]],[21,23,["G5426"]],[23,24,["G3756"]],[24,26,["G3588"]],[26,30,["G2316"]],[30,31,["G235"]],[31,33,["G3588"]],[33,37,["G444"]]]},{"k":24534,"v":[[0,1,["G2532"]],[1,5,["G4341"]],[5,6,["G3588"]],[6,7,["G3793"]],[7,10,["G4862"]],[10,11,["G848"]],[11,12,["G3101"]],[12,15,["G2036"]],[15,17,["G846"]],[17,18,["G3748"]],[18,19,["G2309"]],[19,20,["G2064"]],[20,21,["G3694"]],[21,22,["G3450"]],[22,25,["G533"]],[25,26,["G1438"]],[26,27,["G2532"]],[27,29,["G142"]],[29,30,["G846"]],[30,31,["G4716"]],[31,32,["G2532"]],[32,33,["G190"]],[33,34,["G3427"]]]},{"k":24535,"v":[[0,1,["G1063"]],[1,2,["G3739","G302"]],[2,3,["G2309"]],[3,4,["G4982"]],[4,5,["G848"]],[5,6,["G5590"]],[6,8,["G622"]],[8,9,["G846"]],[9,10,["G1161"]],[10,11,["G3739","G302"]],[11,13,["G622"]],[13,14,["G848"]],[14,15,["G5590"]],[15,18,["G1752","G1700"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G2098"]],[21,23,["G3778"]],[23,25,["G4982"]],[25,26,["G846"]]]},{"k":24536,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,5,["G5623"]],[5,7,["G444"]],[7,8,["G1437"]],[8,11,["G2770"]],[11,12,["G3588"]],[12,13,["G3650"]],[13,14,["G2889"]],[14,15,["G2532"]],[15,16,["G2210"]],[16,18,["G848"]],[18,19,["G5590"]]]},{"k":24537,"v":[[0,1,["G2228"]],[1,2,["G5101"]],[2,5,["G444"]],[5,6,["G1325"]],[6,8,["G465"]],[8,10,["G848"]],[10,11,["G5590"]]]},{"k":24538,"v":[[0,1,["G3739","G302"]],[1,2,["G1063"]],[2,5,["G1870"]],[5,7,["G3165"]],[7,8,["G2532"]],[8,10,["G1699"]],[10,11,["G3056"]],[11,12,["G1722"]],[12,13,["G5026"]],[13,14,["G3428"]],[14,15,["G2532"]],[15,16,["G268"]],[16,17,["G1074"]],[17,19,["G846"]],[19,20,["G2532"]],[20,22,["G3588"]],[22,23,["G5207"]],[23,25,["G444"]],[25,27,["G1870"]],[27,28,["G3752"]],[28,30,["G2064"]],[30,31,["G1722"]],[31,32,["G3588"]],[32,33,["G1391"]],[33,35,["G848"]],[35,36,["G3962"]],[36,37,["G3326"]],[37,38,["G3588"]],[38,39,["G40"]],[39,40,["G32"]]]},{"k":24539,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G281"]],[6,8,["G3004"]],[8,10,["G5213"]],[10,11,["G3754"]],[11,13,["G1526"]],[13,14,["G5100"]],[14,18,["G2476"]],[18,19,["G5602"]],[19,20,["G3748"]],[20,22,["G3364"]],[22,23,["G1089"]],[23,25,["G2288"]],[25,26,["G2193","G302"]],[26,29,["G1492"]],[29,30,["G3588"]],[30,31,["G932"]],[31,33,["G2316"]],[33,34,["G2064"]],[34,35,["G1722"]],[35,36,["G1411"]]]},{"k":24540,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,3,["G1803"]],[3,4,["G2250"]],[4,5,["G2424"]],[5,6,["G3880"]],[6,9,["G4074"]],[9,10,["G2532"]],[10,11,["G2385"]],[11,12,["G2532"]],[12,13,["G2491"]],[13,14,["G2532"]],[14,17,["G399","G846"]],[17,18,["G1519"]],[18,20,["G5308"]],[20,21,["G3735"]],[21,24,["G2596","G2398","G3441"]],[24,25,["G2532"]],[25,28,["G3339"]],[28,29,["G1715"]],[29,30,["G846"]]]},{"k":24541,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G2440"]],[3,4,["G1096"]],[4,5,["G4744"]],[5,6,["G3029"]],[6,7,["G3022"]],[7,8,["G5613"]],[8,9,["G5510"]],[9,11,["G3634"]],[11,12,["G3756"]],[12,13,["G1102"]],[13,14,["G1909"]],[14,15,["G1093"]],[15,16,["G1410"]],[16,17,["G3021"]],[17,18,[]]]},{"k":24542,"v":[[0,1,["G2532"]],[1,3,["G3700"]],[3,5,["G846"]],[5,6,["G2243"]],[6,7,["G4862"]],[7,8,["G3475"]],[8,9,["G2532"]],[9,11,["G2258"]],[11,13,["G4814"]],[13,14,["G2424"]]]},{"k":24543,"v":[[0,1,["G2532"]],[1,2,["G4074"]],[2,3,["G611"]],[3,5,["G3004"]],[5,7,["G2424"]],[7,8,["G4461"]],[8,10,["G2076"]],[10,11,["G2570"]],[11,13,["G2248"]],[13,15,["G1511"]],[15,16,["G5602"]],[16,17,["G2532"]],[17,20,["G4160"]],[20,21,["G5140"]],[21,22,["G4633"]],[22,23,["G3391"]],[23,25,["G4671"]],[25,26,["G2532"]],[26,27,["G3391"]],[27,29,["G3475"]],[29,30,["G2532"]],[30,31,["G3391"]],[31,33,["G2243"]]]},{"k":24544,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,4,["G3756"]],[4,5,["G5101"]],[5,7,["G2980"]],[7,8,["G1063"]],[8,10,["G2258"]],[10,12,["G1630"]]]},{"k":24545,"v":[[0,1,["G2532"]],[1,3,["G1096"]],[3,5,["G3507"]],[5,7,["G1982"]],[7,8,["G846"]],[8,9,["G2532"]],[9,11,["G5456"]],[11,12,["G2064"]],[12,14,["G1537"]],[14,15,["G3588"]],[15,16,["G3507"]],[16,17,["G3004"]],[17,18,["G3778"]],[18,19,["G2076"]],[19,20,["G3450"]],[20,21,["G27"]],[21,22,["G5207"]],[22,23,["G191"]],[23,24,["G846"]]]},{"k":24546,"v":[[0,1,["G2532"]],[1,2,["G1819"]],[2,8,["G4017"]],[8,10,["G1492"]],[10,12,["G3762"]],[12,14,["G3765"]],[14,15,["G235"]],[15,16,["G2424"]],[16,17,["G3440"]],[17,18,["G3326"]],[18,19,["G1438"]]]},{"k":24547,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G2597"]],[5,6,["G575"]],[6,7,["G3588"]],[7,8,["G3735"]],[8,10,["G1291"]],[10,11,["G846"]],[11,12,["G2443"]],[12,15,["G1334"]],[15,17,["G3367"]],[17,19,["G3739"]],[19,22,["G1492"]],[22,23,["G1508","G3752"]],[23,24,["G3588"]],[24,25,["G5207"]],[25,27,["G444"]],[27,29,["G450"]],[29,30,["G1537"]],[30,32,["G3498"]]]},{"k":24548,"v":[[0,1,["G2532"]],[1,3,["G2902"]],[3,5,["G3056"]],[5,6,["G4314"]],[6,7,["G1438"]],[7,11,["G4802"]],[11,12,["G5101"]],[12,13,["G3588"]],[13,14,["G450"]],[14,15,["G1537"]],[15,17,["G3498"]],[17,19,["G2076"]]]},{"k":24549,"v":[[0,1,["G2532"]],[1,3,["G1905"]],[3,4,["G846"]],[4,5,["G3004"]],[5,7,["G3004"]],[7,8,["G3588"]],[8,9,["G1122"]],[9,10,["G3754"]],[10,11,["G2243"]],[11,12,["G1163"]],[12,13,["G4412"]],[13,14,["G2064"]]]},{"k":24550,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,6,["G846"]],[6,7,["G2243"]],[7,8,["G3303"]],[8,9,["G2064"]],[9,10,["G4412"]],[10,12,["G600"]],[12,14,["G3956"]],[14,15,["G2532"]],[15,16,["G4459"]],[16,19,["G1125"]],[19,20,["G1909"]],[20,21,["G3588"]],[21,22,["G5207"]],[22,24,["G444"]],[24,25,["G2443"]],[25,28,["G3958"]],[28,30,["G4183"]],[30,31,["G2532"]],[31,35,["G1847"]]]},{"k":24551,"v":[[0,1,["G235"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G2243"]],[7,9,["G2532"]],[9,10,["G2064"]],[10,11,["G2532"]],[11,14,["G4160"]],[14,16,["G846"]],[16,17,["G3745"]],[17,19,["G2309"]],[19,20,["G2531"]],[20,23,["G1125"]],[23,24,["G1909"]],[24,25,["G846"]]]},{"k":24552,"v":[[0,1,["G2532"]],[1,4,["G2064"]],[4,5,["G4314"]],[5,7,["G3101"]],[7,9,["G1492"]],[9,11,["G4183"]],[11,12,["G3793"]],[12,13,["G4012"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G1122"]],[17,18,["G4802"]],[18,20,["G846"]]]},{"k":24553,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G3956"]],[3,4,["G3588"]],[4,5,["G3793"]],[5,8,["G1492"]],[8,9,["G846"]],[9,12,["G1568"]],[12,13,["G2532"]],[13,16,["G4370"]],[16,17,["G782"]],[17,18,["G846"]]]},{"k":24554,"v":[[0,1,["G2532"]],[1,3,["G1905"]],[3,4,["G3588"]],[4,5,["G1122"]],[5,6,["G5101"]],[6,7,["G4802"]],[7,9,["G4314"]],[9,10,["G846"]]]},{"k":24555,"v":[[0,1,["G2532"]],[1,2,["G1520"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G3793"]],[5,6,["G611"]],[6,8,["G2036"]],[8,9,["G1320"]],[9,12,["G5342"]],[12,13,["G4314"]],[13,14,["G4571"]],[14,15,["G3450"]],[15,16,["G5207"]],[16,18,["G2192"]],[18,20,["G216"]],[20,21,["G4151"]]]},{"k":24556,"v":[[0,1,["G2532"]],[1,2,["G3699","G302"]],[2,4,["G2638"]],[4,5,["G846"]],[5,7,["G4486"]],[7,8,["G846"]],[8,9,["G2532"]],[9,11,["G875"]],[11,12,["G2532"]],[12,13,["G5149"]],[13,15,["G848"]],[15,16,["G3599"]],[16,17,["G2532"]],[17,19,["G3583"]],[19,20,["G2532"]],[20,22,["G2036"]],[22,24,["G4675"]],[24,25,["G3101"]],[25,26,["G2443"]],[26,31,["G1544","G846"]],[31,32,["G2532"]],[32,34,["G2480"]],[34,35,["G3756"]]]},{"k":24557,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G611"]],[2,3,["G846"]],[3,5,["G3004"]],[5,6,["G5599"]],[6,7,["G571"]],[7,8,["G1074"]],[8,10,["G2193","G4219"]],[10,13,["G2071"]],[13,14,["G4314"]],[14,15,["G5209"]],[15,17,["G2193","G4219"]],[17,20,["G430"]],[20,21,["G5216"]],[21,22,["G5342"]],[22,23,["G846"]],[23,24,["G4314"]],[24,25,["G3165"]]]},{"k":24558,"v":[[0,1,["G2532"]],[1,3,["G5342"]],[3,4,["G846"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G2532"]],[7,10,["G1492"]],[10,11,["G846"]],[11,12,["G2112"]],[12,13,["G3588"]],[13,14,["G4151"]],[14,15,["G4682"]],[15,16,["G846"]],[16,19,["G4098"]],[19,20,["G1909"]],[20,21,["G3588"]],[21,22,["G1093"]],[22,23,["G2532"]],[23,24,["G2947"]],[24,25,["G875"]]]},{"k":24559,"v":[[0,1,["G2532"]],[1,3,["G1905"]],[3,4,["G846"]],[4,5,["G3962"]],[5,10,["G4214","G5550","G2076"]],[10,11,["G5613"]],[11,12,["G5124"]],[12,13,["G1096"]],[13,15,["G846"]],[15,16,["G1161"]],[16,17,["G3588"]],[17,18,["G2036"]],[18,21,["G3812"]]]},{"k":24560,"v":[[0,1,["G2532"]],[1,2,["G4178"]],[2,5,["G906"]],[5,6,["G846","(G2532)"]],[6,7,["G1519"]],[7,9,["G4442"]],[9,10,["G2532"]],[10,11,["G1519"]],[11,13,["G5204"]],[13,14,["G2443"]],[14,15,["G622"]],[15,16,["G846"]],[16,17,["G235"]],[17,23,["G1536","G1410"]],[23,25,["G4697"]],[25,26,["G1909"]],[26,27,["G2248"]],[27,29,["G997"]],[29,30,["G2254"]]]},{"k":24561,"v":[[0,0,["(G1161)"]],[0,1,["G2424"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G1487"]],[5,7,["G1410"]],[7,8,["G4100"]],[8,10,["G3956"]],[10,12,["G1415"]],[12,16,["G4100"]]]},{"k":24562,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G3588"]],[3,4,["G3962"]],[4,6,["G3588"]],[6,7,["G3813"]],[7,9,["G2896"]],[9,11,["G3004"]],[11,12,["G3326"]],[12,13,["G1144"]],[13,14,["G2962"]],[14,16,["G4100"]],[16,17,["G997"]],[17,19,["G3450"]],[19,20,["G570"]]]},{"k":24563,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G1492"]],[3,4,["G3754"]],[4,6,["G3793"]],[6,9,["G1998"]],[9,11,["G2008"]],[11,12,["G3588"]],[12,13,["G169"]],[13,14,["G4151"]],[14,15,["G3004"]],[15,17,["G846"]],[17,19,["G216"]],[19,20,["G2532"]],[20,21,["G2974"]],[21,22,["G4151"]],[22,23,["G1473"]],[23,24,["G2004"]],[24,25,["G4671"]],[25,26,["G1831"]],[26,28,["G1537"]],[28,29,["G846"]],[29,30,["G2532"]],[30,31,["G1525"]],[31,33,["G3371"]],[33,34,["G1519"]],[34,35,["G846"]]]},{"k":24564,"v":[[0,1,["G2532"]],[1,4,["G2896"]],[4,5,["G2532"]],[5,6,["G4682"]],[6,7,["G846"]],[7,8,["G4183"]],[8,11,["G1831"]],[11,14,["G2532"]],[14,16,["G1096"]],[16,17,["G5616"]],[17,19,["G3498"]],[19,21,["G5620"]],[21,22,["G4183"]],[22,23,["G3004"]],[23,26,["G599"]]]},{"k":24565,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2902"]],[3,4,["G846"]],[4,6,["G3588"]],[6,7,["G5495"]],[7,11,["G1453","G846"]],[11,12,["G2532"]],[12,14,["G450"]]]},{"k":24566,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G1525"]],[5,6,["G1519"]],[6,8,["G3624"]],[8,9,["G846"]],[9,10,["G3101"]],[10,11,["G1905"]],[11,12,["G846"]],[12,13,["G2596","G2398"]],[13,14,["G3754"]],[14,15,["G1410"]],[15,16,["G3756"]],[16,17,["G2249"]],[17,20,["G1544","G846"]]]},{"k":24567,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G5124"]],[6,7,["G1085"]],[7,8,["G1410"]],[8,10,["G1831"]],[10,11,["G1722"]],[11,12,["G3762"]],[12,13,["G1508"]],[13,14,["G1722"]],[14,15,["G4335"]],[15,16,["G2532"]],[16,17,["G3521"]]]},{"k":24568,"v":[[0,1,["G2532"]],[1,3,["G1831"]],[3,4,["G1564"]],[4,6,["G3899"]],[6,7,["G1223"]],[7,8,["G1056"]],[8,9,["G2532"]],[9,11,["G2309"]],[11,12,["G3756"]],[12,13,["G2443"]],[13,15,["G5100"]],[15,17,["G1097"]],[17,18,[]]]},{"k":24569,"v":[[0,1,["G1063"]],[1,3,["G1321"]],[3,4,["G848"]],[4,5,["G3101"]],[5,6,["G2532"]],[6,7,["G3004"]],[7,9,["G846"]],[9,10,["G3588"]],[10,11,["G5207"]],[11,13,["G444"]],[13,15,["G3860"]],[15,16,["G1519"]],[16,18,["G5495"]],[18,20,["G444"]],[20,21,["G2532"]],[21,24,["G615"]],[24,25,["G846"]],[25,26,["G2532"]],[26,31,["G615"]],[31,34,["G450"]],[34,35,["G3588"]],[35,36,["G5154"]],[36,37,["G2250"]]]},{"k":24570,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G50"]],[3,6,["G4487"]],[6,7,["G2532"]],[7,9,["G5399"]],[9,11,["G1905"]],[11,12,["G846"]]]},{"k":24571,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G1519"]],[4,5,["G2584"]],[5,6,["G2532"]],[6,7,["G1096"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G3614"]],[10,12,["G1905"]],[12,13,["G846"]],[13,14,["G5101"]],[14,19,["G1260"]],[19,20,["G4314"]],[20,21,["G1438"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G3598"]]]},{"k":24572,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,5,["G4623"]],[5,6,["G1063"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G3598"]],[9,12,["G1256"]],[12,13,["G4314"]],[13,14,["G240"]],[14,15,["G5101"]],[15,19,["G3187"]]]},{"k":24573,"v":[[0,1,["G2532"]],[1,4,["G2523"]],[4,6,["G5455"]],[6,7,["G3588"]],[7,8,["G1427"]],[8,9,["G2532"]],[9,10,["G3004"]],[10,12,["G846"]],[12,15,["G1536"]],[15,16,["G2309"]],[16,18,["G1511"]],[18,19,["G4413"]],[19,23,["G2071"]],[23,24,["G2078"]],[24,26,["G3956"]],[26,27,["G2532"]],[27,28,["G1249"]],[28,30,["G3956"]]]},{"k":24574,"v":[[0,1,["G2532"]],[1,3,["G2983"]],[3,5,["G3813"]],[5,7,["G2476"]],[7,8,["G846"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G3319"]],[11,13,["G846"]],[13,14,["G2532"]],[14,22,["G1723","G846"]],[22,24,["G2036"]],[24,26,["G846"]]]},{"k":24575,"v":[[0,1,["G3739","G1437"]],[1,3,["G1209"]],[3,4,["G1520"]],[4,6,["G5108"]],[6,7,["G3813"]],[7,8,["G1909"]],[8,9,["G3450"]],[9,10,["G3686"]],[10,11,["G1209"]],[11,12,["G1691"]],[12,13,["G2532"]],[13,14,["G3739","G1437"]],[14,16,["G1209"]],[16,17,["G1691"]],[17,18,["G1209"]],[18,19,["G3756"]],[19,20,["G1691"]],[20,21,["G235"]],[21,24,["G649"]],[24,25,["G3165"]]]},{"k":24576,"v":[[0,1,["G1161"]],[1,2,["G2491"]],[2,3,["G611"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G1320"]],[6,8,["G1492"]],[8,9,["G5100"]],[9,11,["G1544"]],[11,12,["G1140"]],[12,13,["G1722"]],[13,14,["G4675"]],[14,15,["G3686"]],[15,17,["G3739"]],[17,18,["G190"]],[18,19,["G3756"]],[19,20,["G2254"]],[20,21,["G2532"]],[21,23,["G2967"]],[23,24,["G846"]],[24,25,["G3754"]],[25,27,["G190"]],[27,28,["G3756"]],[28,29,["G2254"]]]},{"k":24577,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G2967"]],[4,5,["G846"]],[5,6,["G3361"]],[6,7,["G1063"]],[7,9,["G2076"]],[9,11,["G3762"]],[11,12,["G3739"]],[12,14,["G4160"]],[14,16,["G1411"]],[16,17,["G1909"]],[17,18,["G3450"]],[18,19,["G3686"]],[19,20,["G2532"]],[20,21,["G1410"]],[21,22,["G5035"]],[22,24,["G2551"]],[24,26,["G3165"]]]},{"k":24578,"v":[[0,1,["G1063"]],[1,2,["G3739"]],[2,4,["G2076"]],[4,5,["G3756"]],[5,6,["G2596"]],[6,7,["G5216"]],[7,8,["G2076"]],[8,11,["G5228","G5216"]]]},{"k":24579,"v":[[0,1,["G1063"]],[1,2,["G3739","G302"]],[2,11,["G4222","G5209","G4221","G5204"]],[11,12,["G1722"]],[12,13,["G3450"]],[13,14,["G3686"]],[14,15,["G3754"]],[15,18,["G2075"]],[18,19,["G5547"]],[19,20,["G281"]],[20,22,["G3004"]],[22,24,["G5213"]],[24,27,["G3364"]],[27,28,["G622"]],[28,29,["G848"]],[29,30,["G3408"]]]},{"k":24580,"v":[[0,1,["G2532"]],[1,2,["G3739","G302"]],[2,4,["G4624"]],[4,5,["G1520"]],[5,9,["G3398"]],[9,11,["G4100"]],[11,12,["G1519"]],[12,13,["G1691"]],[13,15,["G2076"]],[15,16,["G2570","G3123"]],[16,18,["G846"]],[18,19,["G1487"]],[19,21,["G3037","G3457"]],[21,23,["G4029"]],[23,24,["G4012"]],[24,25,["G846"]],[25,26,["G5137"]],[26,27,["G2532"]],[27,30,["G906"]],[30,31,["G1519"]],[31,32,["G3588"]],[32,33,["G2281"]]]},{"k":24581,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,3,["G4675"]],[3,4,["G5495"]],[4,5,["G4624"]],[5,6,["G4571"]],[6,9,["G609","G846"]],[9,11,["G2076"]],[11,12,["G2570"]],[12,14,["G4671"]],[14,16,["G1525"]],[16,17,["G1519"]],[17,18,["G2222"]],[18,19,["G2948"]],[19,20,["G2228"]],[20,21,["G2192"]],[21,22,["G1417"]],[22,23,["G5495"]],[23,25,["G565"]],[25,26,["G1519"]],[26,27,["G1067"]],[27,28,["G1519"]],[28,29,["G3588"]],[29,30,["G4442"]],[30,35,["G762"]]]},{"k":24582,"v":[[0,1,["G3699"]],[1,2,["G846"]],[2,3,["G4663"]],[3,4,["G5053"]],[4,5,["G3756"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G4442"]],[8,10,["G3756"]],[10,11,["G4570"]]]},{"k":24583,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,3,["G4675"]],[3,4,["G4228"]],[4,5,["G4624"]],[5,6,["G4571"]],[6,9,["G609","G846"]],[9,11,["G2076"]],[11,12,["G2570"]],[12,14,["G4671"]],[14,16,["G1525"]],[16,17,["G5560"]],[17,18,["G1519"]],[18,19,["G2222"]],[19,20,["G2228"]],[20,21,["G2192"]],[21,22,["G1417"]],[22,23,["G4228"]],[23,26,["G906"]],[26,27,["G1519"]],[27,28,["G1067"]],[28,29,["G1519"]],[29,30,["G3588"]],[30,31,["G4442"]],[31,36,["G762"]]]},{"k":24584,"v":[[0,1,["G3699"]],[1,2,["G846"]],[2,3,["G4663"]],[3,4,["G5053"]],[4,5,["G3756"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G4442"]],[8,10,["G3756"]],[10,11,["G4570"]]]},{"k":24585,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,3,["G4675"]],[3,4,["G3788"]],[4,5,["G4624"]],[5,6,["G4571"]],[6,9,["G1544","G846"]],[9,11,["G2076"]],[11,12,["G2570"]],[12,14,["G4671"]],[14,16,["G1525"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,19,["G932"]],[19,21,["G2316"]],[21,24,["G3442"]],[24,25,["G2228"]],[25,26,["G2192"]],[26,27,["G1417"]],[27,28,["G3788"]],[28,31,["G906"]],[31,32,["G1519"]],[32,33,["G1067"]],[33,34,["G4442"]]]},{"k":24586,"v":[[0,1,["G3699"]],[1,2,["G846"]],[2,3,["G4663"]],[3,4,["G5053"]],[4,5,["G3756"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G4442"]],[8,10,["G3756"]],[10,11,["G4570"]]]},{"k":24587,"v":[[0,1,["G1063"]],[1,3,["G3956"]],[3,6,["G233"]],[6,8,["G4442"]],[8,9,["G2532"]],[9,10,["G3956"]],[10,11,["G2378"]],[11,14,["G233"]],[14,16,["G251"]]]},{"k":24588,"v":[[0,1,["G217"]],[1,3,["G2570"]],[3,4,["G1161"]],[4,5,["G1437"]],[5,6,["G3588"]],[6,7,["G217"]],[7,11,["G1096","G358"]],[11,12,["G1722","G5101"]],[12,15,["G741"]],[15,16,["G846"]],[16,17,["G2192"]],[17,18,["G217"]],[18,19,["G1722"]],[19,20,["G1438"]],[20,21,["G2532"]],[21,23,["G1514"]],[23,26,["G240","G1722"]]]},{"k":24589,"v":[[0,5,["G2547","G450"]],[5,7,["G2064"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G3725"]],[10,12,["G2449"]],[12,13,["G1223"]],[13,14,["G3588"]],[14,16,["G4008"]],[16,18,["G2446"]],[18,19,["G2532"]],[19,21,["G3793"]],[21,22,["G4848"]],[22,23,["G4314"]],[23,24,["G846"]],[24,25,["G3825"]],[25,26,["G2532"]],[26,27,["G5613"]],[27,30,["G1486"]],[30,32,["G1321"]],[32,33,["G846"]],[33,34,["G3825"]]]},{"k":24590,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,5,["G4334"]],[5,8,["G1905"]],[8,9,["G846","(G1487)"]],[9,12,["G1832"]],[12,15,["G435"]],[15,18,["G630"]],[18,20,["G1135"]],[20,21,["G3985"]],[21,22,["G846"]]]},{"k":24591,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G5101"]],[8,10,["G3475"]],[10,11,["G1781"]],[11,12,["G5213"]]]},{"k":24592,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G3475"]],[4,5,["G2010"]],[5,7,["G1125"]],[7,9,["G975"]],[9,11,["G647"]],[11,12,["G2532"]],[12,16,["G630"]]]},{"k":24593,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,13,["G4641","G5216"]],[13,15,["G1125"]],[15,16,["G5213"]],[16,17,["G5026"]],[17,18,["G1785"]]]},{"k":24594,"v":[[0,1,["G1161"]],[1,2,["G575"]],[2,4,["G746"]],[4,7,["G2937"]],[7,8,["G2316"]],[8,9,["G4160"]],[9,10,["G846"]],[10,11,["G730"]],[11,12,["G2532"]],[12,13,["G2338"]]]},{"k":24595,"v":[[0,3,["G1752","G5127"]],[3,6,["G444"]],[6,7,["G2641"]],[7,8,["G848"]],[8,9,["G3962"]],[9,10,["G2532"]],[10,11,["G3384"]],[11,12,["G2532"]],[12,13,["G4347"]],[13,14,["G4314"]],[14,15,["G848"]],[15,16,["G1135"]]]},{"k":24596,"v":[[0,1,["G2532"]],[1,3,["G1417"]],[3,5,["G2071"]],[5,6,["G3391"]],[6,7,["G4561"]],[7,9,["G5620"]],[9,11,["G1526"]],[11,13,["G3765"]],[13,14,["G1417"]],[14,15,["G235"]],[15,16,["G3391"]],[16,17,["G4561"]]]},{"k":24597,"v":[[0,1,["G3739"]],[1,2,["G3767"]],[2,3,["G2316"]],[3,6,["G4801"]],[6,8,["G3361"]],[8,9,["G444"]],[9,11,["G5563"]]]},{"k":24598,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G3614"]],[4,5,["G846"]],[5,6,["G3101"]],[6,7,["G1905"]],[7,8,["G846"]],[8,9,["G3825"]],[9,10,["G4012"]],[10,12,["G846"]],[12,13,[]]]},{"k":24599,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G3739","G1437"]],[6,9,["G630"]],[9,10,["G848"]],[10,11,["G1135"]],[11,12,["G2532"]],[12,13,["G1060"]],[13,14,["G243"]],[14,16,["G3429"]],[16,17,["G1909"]],[17,18,["G846"]]]},{"k":24600,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G1135"]],[4,7,["G630"]],[7,8,["G848"]],[8,9,["G435"]],[9,10,["G2532"]],[10,12,["G1060"]],[12,14,["G243"]],[14,17,["G3429"]]]},{"k":24601,"v":[[0,1,["G2532"]],[1,3,["G4374"]],[3,5,["G3813"]],[5,7,["G846"]],[7,8,["G2443"]],[8,11,["G680"]],[11,12,["G846"]],[12,13,["G1161"]],[13,15,["G3101"]],[15,16,["G2008"]],[16,19,["G4374"]],[19,20,[]]]},{"k":24602,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,4,["G1492"]],[4,9,["G23"]],[9,10,["G2532"]],[10,11,["G2036"]],[11,13,["G846"]],[13,14,["G863"]],[14,15,["G3588"]],[15,17,["G3813"]],[17,19,["G2064"]],[19,20,["G4314"]],[20,21,["G3165"]],[21,22,["G2532"]],[22,23,["G2967"]],[23,24,["G846"]],[24,25,["G3361"]],[25,26,["G1063"]],[26,28,["G5108"]],[28,29,["G2076"]],[29,30,["G3588"]],[30,31,["G932"]],[31,33,["G2316"]]]},{"k":24603,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3739","G1437"]],[6,8,["G3361"]],[8,9,["G1209"]],[9,10,["G3588"]],[10,11,["G932"]],[11,13,["G2316"]],[13,14,["G5613"]],[14,17,["G3813"]],[17,20,["G3364"]],[20,21,["G1525"]],[21,22,["G1519","G846"]]]},{"k":24604,"v":[[0,1,["G2532"]],[1,8,["G1723","G846"]],[8,9,["G5087"]],[9,11,["G5495"]],[11,12,["G1909"]],[12,13,["G846"]],[13,15,["G2127"]],[15,16,["G846"]]]},{"k":24605,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,6,["G1607"]],[6,7,["G1519"]],[7,9,["G3598"]],[9,12,["G1520"]],[12,13,["G4370"]],[13,14,["G2532"]],[14,15,["G1120"]],[15,17,["G846"]],[17,19,["G1905"]],[19,20,["G846"]],[20,21,["G18"]],[21,22,["G1320"]],[22,23,["G5101"]],[23,26,["G4160"]],[26,27,["G2443"]],[27,30,["G2816"]],[30,31,["G166"]],[31,32,["G2222"]]]},{"k":24606,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G5101"]],[6,7,["G3004"]],[7,9,["G3165"]],[9,10,["G18"]],[10,13,["G3762"]],[13,14,["G18"]],[14,15,["G1508"]],[15,16,["G1520"]],[16,19,["G2316"]]]},{"k":24607,"v":[[0,2,["G1492"]],[2,3,["G3588"]],[3,4,["G1785"]],[4,6,["G3361"]],[6,8,["G3431"]],[8,10,["G3361"]],[10,11,["G5407"]],[11,13,["G3361"]],[13,14,["G2813"]],[14,16,["G3361"]],[16,19,["G5576"]],[19,20,["G650"]],[20,21,["G3361"]],[21,22,["G5091"]],[22,23,["G4675"]],[23,24,["G3962"]],[24,25,["G2532"]],[25,26,["G3384"]]]},{"k":24608,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G1320"]],[8,9,["G3956"]],[9,10,["G5023"]],[10,13,["G5442"]],[13,14,["G1537"]],[14,15,["G3450"]],[15,16,["G3503"]]]},{"k":24609,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G1689"]],[3,4,["G846"]],[4,5,["G25"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G2036"]],[8,10,["G846"]],[10,12,["G1520"]],[12,13,["G4671"]],[13,14,["G5302"]],[14,17,["G5217"]],[17,18,["G4453"]],[18,19,["G3745"]],[19,21,["G2192"]],[21,22,["G2532"]],[22,23,["G1325"]],[23,25,["G3588"]],[25,26,["G4434"]],[26,27,["G2532"]],[27,30,["G2192"]],[30,31,["G2344"]],[31,32,["G1722"]],[32,33,["G3772"]],[33,34,["G2532"]],[34,35,["G1204"]],[35,37,["G142"]],[37,38,["G3588"]],[38,39,["G4716"]],[39,41,["G190"]],[41,42,["G3427"]]]},{"k":24610,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G4768"]],[4,5,["G1909"]],[5,7,["G3056"]],[7,10,["G565"]],[10,11,["G3076"]],[11,12,["G1063"]],[12,14,["G2258","G2192"]],[14,15,["G4183"]],[15,16,["G2933"]]]},{"k":24611,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,5,["G4017"]],[5,7,["G3004"]],[7,9,["G848"]],[9,10,["G3101"]],[10,11,["G4459"]],[11,12,["G1423"]],[12,16,["G2192"]],[16,17,["G5536"]],[17,18,["G1525"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G932"]],[21,23,["G2316"]]]},{"k":24612,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,5,["G2284"]],[5,6,["G1909"]],[6,7,["G846"]],[7,8,["G3056"]],[8,9,["G1161"]],[9,10,["G2424"]],[10,11,["G611"]],[11,12,["G3825"]],[12,14,["G3004"]],[14,16,["G846"]],[16,17,["G5043"]],[17,18,["G4459"]],[18,19,["G1422"]],[19,20,["G2076"]],[20,25,["G3982"]],[25,26,["G1909"]],[26,27,["G5536"]],[27,29,["G1525"]],[29,30,["G1519"]],[30,31,["G3588"]],[31,32,["G932"]],[32,34,["G2316"]]]},{"k":24613,"v":[[0,2,["G2076"]],[2,3,["G2123"]],[3,6,["G2574"]],[6,8,["G1525"]],[8,9,["G1223"]],[9,10,["G3588"]],[10,11,["G5168"]],[11,14,["G4476"]],[14,15,["G2228"]],[15,19,["G4145"]],[19,21,["G1525"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G932"]],[24,26,["G2316"]]]},{"k":24614,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G1605"]],[4,7,["G4057"]],[7,8,["G3004"]],[8,9,["G4314"]],[9,10,["G1438"]],[10,11,["G5101"]],[11,12,["G2532"]],[12,13,["G1410"]],[13,15,["G4982"]]]},{"k":24615,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,4,["G1689"]],[4,5,["G846"]],[5,6,["G3004"]],[6,7,["G3844"]],[7,8,["G444"]],[8,11,["G102"]],[11,12,["G235"]],[12,13,["G3756"]],[13,14,["G3844"]],[14,15,["G2316"]],[15,16,["G1063"]],[16,17,["G3844"]],[17,18,["G2316"]],[18,20,["G3956"]],[20,21,["G2076"]],[21,22,["G1415"]]]},{"k":24616,"v":[[0,1,["G2532"]],[1,2,["G4074"]],[2,3,["G756"]],[3,5,["G3004"]],[5,7,["G846"]],[7,8,["G2400"]],[8,9,["G2249"]],[9,11,["G863"]],[11,12,["G3956"]],[12,13,["G2532"]],[13,15,["G190"]],[15,16,["G4671"]]]},{"k":24617,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,6,["G281"]],[6,8,["G3004"]],[8,10,["G5213"]],[10,12,["G2076"]],[12,14,["G3762"]],[14,17,["G863"]],[17,18,["G3614"]],[18,19,["G2228"]],[19,20,["G80"]],[20,21,["G2228"]],[21,22,["G79"]],[22,23,["G2228"]],[23,24,["G3962"]],[24,25,["G2228"]],[25,26,["G3384"]],[26,27,["G2228"]],[27,28,["G1135"]],[28,29,["G2228"]],[29,30,["G5043"]],[30,31,["G2228"]],[31,32,["G68"]],[32,35,["G1752","G1700"]],[35,36,["G2532"]],[36,37,["G3588"]],[37,38,["G2098"]]]},{"k":24618,"v":[[0,1,["G1437","G3361"]],[1,4,["G2983"]],[4,6,["G1542"]],[6,7,["G3568"]],[7,8,["G1722"]],[8,9,["G5129"]],[9,10,["G2540"]],[10,11,["G3614"]],[11,12,["G2532"]],[12,13,["G80"]],[13,14,["G2532"]],[14,15,["G79"]],[15,16,["G2532"]],[16,17,["G3384"]],[17,18,["G2532"]],[18,19,["G5043"]],[19,20,["G2532"]],[20,21,["G68"]],[21,22,["G3326"]],[22,23,["G1375"]],[23,24,["G2532"]],[24,25,["G1722"]],[25,26,["G3588"]],[26,27,["G165"]],[27,29,["G2064"]],[29,30,["G166"]],[30,31,["G2222"]]]},{"k":24619,"v":[[0,1,["G1161"]],[1,2,["G4183"]],[2,5,["G4413"]],[5,7,["G2071"]],[7,8,["G2078"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G2078"]],[11,12,["G4413"]]]},{"k":24620,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G3598"]],[6,8,["G305"]],[8,9,["G1519"]],[9,10,["G2414"]],[10,11,["G2532"]],[11,12,["G2424"]],[12,14,["G2258","G4254"]],[14,15,["G846"]],[15,16,["G2532"]],[16,19,["G2284"]],[19,20,["G2532"]],[20,23,["G190"]],[23,26,["G5399"]],[26,27,["G2532"]],[27,29,["G3880"]],[29,30,["G3825"]],[30,31,["G3588"]],[31,32,["G1427"]],[32,34,["G756"]],[34,36,["G3004"]],[36,37,["G846"]],[37,40,["G3195"]],[40,41,["G4819"]],[41,43,["G846"]]]},{"k":24621,"v":[[0,2,["G2400"]],[2,5,["G305"]],[5,6,["G1519"]],[6,7,["G2414"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G5207"]],[10,12,["G444"]],[12,15,["G3860"]],[15,17,["G3588"]],[17,19,["G749"]],[19,20,["G2532"]],[20,22,["G3588"]],[22,23,["G1122"]],[23,24,["G2532"]],[24,27,["G2632"]],[27,28,["G846"]],[28,30,["G2288"]],[30,31,["G2532"]],[31,33,["G3860"]],[33,34,["G846"]],[34,36,["G3588"]],[36,37,["G1484"]]]},{"k":24622,"v":[[0,1,["G2532"]],[1,4,["G1702"]],[4,5,["G846"]],[5,6,["G2532"]],[6,8,["G3146"]],[8,9,["G846"]],[9,13,["G1716"]],[13,14,["G846"]],[14,15,["G2532"]],[15,17,["G615"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G5154"]],[21,22,["G2250"]],[22,26,["G450"]]]},{"k":24623,"v":[[0,1,["G2532"]],[1,2,["G2385"]],[2,3,["G2532"]],[3,4,["G2491"]],[4,5,["G3588"]],[5,6,["G5207"]],[6,8,["G2199"]],[8,9,["G4365"]],[9,11,["G846"]],[11,12,["G3004"]],[12,13,["G1320"]],[13,15,["G2309"]],[15,16,["G2443"]],[16,19,["G4160"]],[19,21,["G2254"]],[21,22,["G3739","G1437"]],[22,25,["G154"]]]},{"k":24624,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G5101"]],[6,7,["G2309"]],[7,10,["G3165"]],[10,12,["G4160"]],[12,14,["G5213"]]]},{"k":24625,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G1325"]],[5,7,["G2254"]],[7,8,["G2443"]],[8,11,["G2523"]],[11,12,["G1520"]],[12,13,["G1537"]],[13,14,["G4675"]],[14,16,["G1188"]],[16,17,["G2532"]],[17,19,["G1520"]],[19,20,["G1537"]],[20,21,["G4675"]],[21,23,["G2176"]],[23,24,["G1722"]],[24,25,["G4675"]],[25,26,["G1391"]]]},{"k":24626,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,7,["G1492"]],[7,8,["G3756"]],[8,9,["G5101"]],[9,11,["G154"]],[11,12,["G1410"]],[12,14,["G4095"]],[14,16,["G3588"]],[16,17,["G4221"]],[17,18,["G3739"]],[18,19,["G1473"]],[19,20,["G4095"]],[20,22,["G2532"]],[22,24,["G907"]],[24,26,["G3588"]],[26,27,["G908"]],[27,28,["G3739"]],[28,29,["G1473"]],[29,31,["G907"]],[31,32,[]]]},{"k":24627,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,7,["G1410"]],[7,8,["G1161"]],[8,9,["G2424"]],[9,10,["G2036"]],[10,12,["G846"]],[12,15,["G3303"]],[15,16,["G4095"]],[16,18,["G3588"]],[18,19,["G4221"]],[19,20,["G3739"]],[20,21,["G1473"]],[21,22,["G4095"]],[22,24,["G2532"]],[24,26,["G3588"]],[26,27,["G908"]],[27,28,["G3739"]],[28,29,["G1473"]],[29,31,["G907"]],[31,36,["G907"]]]},{"k":24628,"v":[[0,1,["G1161"]],[1,3,["G2523"]],[3,4,["G1537"]],[4,5,["G3450"]],[5,7,["G1188"]],[7,8,["G2532"]],[8,9,["G1537"]],[9,10,["G3450"]],[10,12,["G2176"]],[12,13,["G2076"]],[13,14,["G3756"]],[14,15,["G1699"]],[15,17,["G1325"]],[17,18,["G235"]],[18,26,["G3739"]],[26,29,["G2090"]]]},{"k":24629,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G1176"]],[4,5,["G191"]],[5,8,["G756"]],[8,12,["G23"]],[12,13,["G4012"]],[13,14,["G2385"]],[14,15,["G2532"]],[15,16,["G2491"]]]},{"k":24630,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G4341"]],[3,4,["G846"]],[4,8,["G3004"]],[8,10,["G846"]],[10,12,["G1492"]],[12,13,["G3754"]],[13,17,["G1380"]],[17,20,["G757"]],[20,21,["G3588"]],[21,22,["G1484"]],[22,24,["G2634"]],[24,26,["G846"]],[26,27,["G2532"]],[27,28,["G846"]],[28,30,["G3173"]],[30,32,["G2715"]],[32,34,["G846"]]]},{"k":24631,"v":[[0,1,["G1161"]],[1,2,["G3779"]],[2,5,["G3756"]],[5,6,["G2071"]],[6,7,["G1722"]],[7,8,["G5213"]],[8,9,["G235"]],[9,10,["G3739","G1437"]],[10,11,["G2309"]],[11,12,["G1096"]],[12,13,["G3173"]],[13,14,["G1722"]],[14,15,["G5213"]],[15,17,["G2071"]],[17,18,["G5216"]],[18,19,["G1249"]]]},{"k":24632,"v":[[0,1,["G2532"]],[1,2,["G3739","G302"]],[2,4,["G5216"]],[4,5,["G2309"]],[5,6,["G1096"]],[6,8,["G4413"]],[8,10,["G2071"]],[10,11,["G1401"]],[11,13,["G3956"]]]},{"k":24633,"v":[[0,1,["G1063"]],[1,2,["G2532"]],[2,3,["G3588"]],[3,4,["G5207"]],[4,6,["G444"]],[6,7,["G2064"]],[7,8,["G3756"]],[8,12,["G1247"]],[12,13,["G235"]],[13,15,["G1247"]],[15,16,["G2532"]],[16,18,["G1325"]],[18,19,["G848"]],[19,20,["G5590"]],[20,22,["G3083"]],[22,23,["G473"]],[23,24,["G4183"]]]},{"k":24634,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G1519"]],[4,5,["G2410"]],[5,6,["G2532"]],[6,8,["G846"]],[8,9,["G1607"]],[9,11,["G575"]],[11,12,["G2410"]],[12,13,["G2532"]],[13,14,["G846"]],[14,15,["G3101"]],[15,16,["G2532"]],[16,19,["G2425"]],[19,21,["G3793"]],[21,22,["G5185"]],[22,23,["G924"]],[23,25,["G5207"]],[25,27,["G5090"]],[27,28,["G2521"]],[28,29,["G3844"]],[29,30,["G3588"]],[30,32,["G3598"]],[32,33,["G4319"]]]},{"k":24635,"v":[[0,1,["G2532"]],[1,4,["G191"]],[4,5,["G3754"]],[5,7,["G2076"]],[7,8,["G2424"]],[8,10,["G3480"]],[10,12,["G756"]],[12,15,["G2896"]],[15,16,["G2532"]],[16,17,["G3004"]],[17,18,["G2424"]],[18,20,["G5207"]],[20,22,["G1138"]],[22,24,["G1653"]],[24,26,["G3165"]]]},{"k":24636,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,3,["G2008"]],[3,4,["G846"]],[4,5,["G2443"]],[5,10,["G4623"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,13,["G2896"]],[13,15,["G4183"]],[15,18,["G3123"]],[18,20,["G5207"]],[20,22,["G1138"]],[22,24,["G1653"]],[24,26,["G3165"]]]},{"k":24637,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,4,["G2476"]],[4,6,["G2036"]],[6,7,["G846"]],[7,10,["G5455"]],[10,11,["G2532"]],[11,13,["G5455"]],[13,14,["G3588"]],[14,16,["G5185"]],[16,17,["G3004"]],[17,19,["G846"]],[19,23,["G2293"]],[23,24,["G1453"]],[24,26,["G5455"]],[26,27,["G4571"]]]},{"k":24638,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G577"]],[4,5,["G848"]],[5,6,["G2440"]],[6,7,["G450"]],[7,9,["G2064"]],[9,10,["G4314"]],[10,11,["G2424"]]]},{"k":24639,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G3004"]],[5,7,["G846"]],[7,8,["G5101"]],[8,9,["G2309"]],[9,14,["G4160"]],[14,16,["G4671","(G1161)"]],[16,17,["G3588"]],[17,19,["G5185"]],[19,20,["G2036"]],[20,22,["G846"]],[22,23,["G4462"]],[23,24,["G2443"]],[24,29,["G308"]]]},{"k":24640,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,8,["G5217"]],[8,9,["G4675"]],[9,10,["G4102"]],[10,14,["G4982","G4571"]],[14,15,["G2532"]],[15,16,["G2112"]],[16,20,["G308"]],[20,21,["G2532"]],[21,22,["G190"]],[22,23,["G2424"]],[23,24,["G1722"]],[24,25,["G3588"]],[25,26,["G3598"]]]},{"k":24641,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G1448"]],[5,6,["G1519"]],[6,7,["G2419"]],[7,8,["G1519"]],[8,9,["G967"]],[9,10,["G2532"]],[10,11,["G963"]],[11,12,["G4314"]],[12,13,["G3588"]],[13,14,["G3735"]],[14,16,["G1636"]],[16,19,["G649"]],[19,20,["G1417"]],[20,22,["G848"]],[22,23,["G3101"]]]},{"k":24642,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,4,["G846"]],[4,7,["G5217"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G2968"]],[10,12,["G2713"]],[12,13,["G5216"]],[13,14,["G2532"]],[14,17,["G2112"]],[17,20,["G1531"]],[20,21,["G1519"]],[21,22,["G846"]],[22,25,["G2147"]],[25,27,["G4454"]],[27,28,["G1210"]],[28,29,["G1909","G3739"]],[29,30,["G3762"]],[30,31,["G444"]],[31,32,["G2523"]],[32,33,["G3089"]],[33,34,["G846"]],[34,36,["G71"]],[36,37,[]]]},{"k":24643,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G5100"]],[4,5,["G2036"]],[5,7,["G5213"]],[7,8,["G5101"]],[8,9,["G4160"]],[9,11,["G5124"]],[11,12,["G2036"]],[12,14,["G3754"]],[14,15,["G3588"]],[15,16,["G2962"]],[16,17,["G2192"]],[17,18,["G5532"]],[18,20,["G846"]],[20,21,["G2532"]],[21,22,["G2112"]],[22,25,["G649"]],[25,26,["G846"]],[26,27,["G5602"]]]},{"k":24644,"v":[[0,1,["G1161"]],[1,5,["G565"]],[5,6,["G2532"]],[6,7,["G2147"]],[7,8,["G3588"]],[8,9,["G4454"]],[9,10,["G1210"]],[10,11,["G4314"]],[11,12,["G3588"]],[12,13,["G2374"]],[13,14,["G1854"]],[14,15,["G1909"]],[15,21,["G296"]],[21,22,["G2532"]],[22,24,["G3089"]],[24,25,["G846"]]]},{"k":24645,"v":[[0,1,["G2532"]],[1,2,["G5100"]],[2,6,["G2476"]],[6,7,["G1563"]],[7,8,["G3004"]],[8,10,["G846"]],[10,11,["G5101"]],[11,12,["G4160"]],[12,14,["G3089"]],[14,15,["G3588"]],[15,16,["G4454"]]]},{"k":24646,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,7,["G2531"]],[7,8,["G2424"]],[8,10,["G1781"]],[10,11,["G2532"]],[11,15,["G863","G846"]]]},{"k":24647,"v":[[0,1,["G2532"]],[1,3,["G71"]],[3,4,["G3588"]],[4,5,["G4454"]],[5,6,["G4314"]],[6,7,["G2424"]],[7,8,["G2532"]],[8,9,["G1911"]],[9,10,["G848"]],[10,11,["G2440"]],[11,13,["G846"]],[13,14,["G2532"]],[14,16,["G2523"]],[16,17,["G1909"]],[17,18,["G846"]]]},{"k":24648,"v":[[0,1,["G1161"]],[1,2,["G4183"]],[2,3,["G4766"]],[3,4,["G848"]],[4,5,["G2440"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G3598"]],[8,9,["G1161"]],[9,10,["G243"]],[10,12,["G2875"]],[12,13,["G4746"]],[13,14,["G1537"]],[14,15,["G3588"]],[15,16,["G1186"]],[16,17,["G2532"]],[17,18,["G4766"]],[18,20,["G1519"]],[20,21,["G3588"]],[21,22,["G3598"]]]},{"k":24649,"v":[[0,1,["G2532"]],[1,5,["G4254"]],[5,6,["G2532"]],[6,9,["G190"]],[9,10,["G2896"]],[10,11,["G3004"]],[11,12,["G5614"]],[12,13,["G2127"]],[13,17,["G2064"]],[17,18,["G1722"]],[18,20,["G3686"]],[20,23,["G2962"]]]},{"k":24650,"v":[[0,1,["G2127"]],[1,3,["G3588"]],[3,4,["G932"]],[4,6,["G2257"]],[6,7,["G3962"]],[7,8,["G1138"]],[8,10,["G2064"]],[10,11,["G1722"]],[11,13,["G3686"]],[13,16,["G2962"]],[16,17,["G5614"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,20,["G5310"]]]},{"k":24651,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G1525"]],[3,4,["G1519"]],[4,5,["G2414"]],[5,6,["G2532"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G2411"]],[9,10,["G2532"]],[10,16,["G4017"]],[16,19,["G3956"]],[19,20,["G2532"]],[20,21,["G2235"]],[21,22,["G3588"]],[22,23,["G5610"]],[23,25,["G5607","G3798"]],[25,28,["G1831"]],[28,29,["G1519"]],[29,30,["G963"]],[30,31,["G3326"]],[31,32,["G3588"]],[32,33,["G1427"]]]},{"k":24652,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G1887"]],[4,6,["G846"]],[6,8,["G1831"]],[8,9,["G575"]],[9,10,["G963"]],[10,13,["G3983"]]]},{"k":24653,"v":[[0,1,["G2532"]],[1,2,["G1492"]],[2,5,["G4808"]],[5,7,["G3113"]],[7,8,["G2192"]],[8,9,["G5444"]],[9,11,["G2064"]],[11,12,["G1487"]],[12,13,["G686"]],[13,16,["G2147"]],[16,18,["G5100"]],[18,19,["G1722","G846"]],[19,20,["G2532"]],[20,23,["G2064"]],[23,24,["G1909"]],[24,26,["G846"]],[26,27,["G2147"]],[27,28,["G3762"]],[28,29,["G1508"]],[29,30,["G5444"]],[30,31,["G1063"]],[31,33,["G2540"]],[33,35,["G4810"]],[35,36,["G2258"]],[36,37,["G3756"]],[37,38,[]]]},{"k":24654,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,9,["G3367"]],[9,10,["G5315"]],[10,11,["G2590"]],[11,12,["G1537"]],[12,13,["G4675"]],[13,14,["G3371"]],[14,16,["G1519","G165"]],[16,17,["G2532"]],[17,18,["G846"]],[18,19,["G3101"]],[19,20,["G191"]],[20,21,[]]]},{"k":24655,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G1519"]],[4,5,["G2414"]],[5,6,["G2532"]],[6,7,["G2424"]],[7,8,["G1525"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G2411"]],[11,13,["G756"]],[13,16,["G1544"]],[16,19,["G4453"]],[19,20,["G2532"]],[20,21,["G59"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G2411"]],[24,25,["G2532"]],[25,26,["G2690"]],[26,27,["G3588"]],[27,28,["G5132"]],[28,30,["G3588"]],[30,31,["G2855"]],[31,32,["G2532"]],[32,33,["G3588"]],[33,34,["G2515"]],[34,38,["G4453"]],[38,39,["G4058"]]]},{"k":24656,"v":[[0,1,["G2532"]],[1,3,["G3756"]],[3,4,["G863"]],[4,5,["G2443"]],[5,7,["G5100"]],[7,9,["G1308"]],[9,11,["G4632"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G2411"]]]},{"k":24657,"v":[[0,1,["G2532"]],[1,3,["G1321"]],[3,4,["G3004"]],[4,6,["G846"]],[6,9,["G3756"]],[9,10,["G1125"]],[10,11,["G3450"]],[11,12,["G3624"]],[12,15,["G2564"]],[15,17,["G3956"]],[17,18,["G1484"]],[18,20,["G3624"]],[20,22,["G4335"]],[22,23,["G1161"]],[23,24,["G5210"]],[24,26,["G4160"]],[26,27,["G846"]],[27,29,["G4693"]],[29,31,["G3027"]]]},{"k":24658,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1122"]],[3,4,["G2532"]],[4,6,["G749"]],[6,7,["G191"]],[7,9,["G2532"]],[9,10,["G2212"]],[10,11,["G4459"]],[11,14,["G622"]],[14,15,["G846"]],[15,16,["G1063"]],[16,18,["G5399"]],[18,19,["G846"]],[19,20,["G3754"]],[20,21,["G3956"]],[21,22,["G3588"]],[22,23,["G3793"]],[23,25,["G1605"]],[25,26,["G1909"]],[26,27,["G846"]],[27,28,["G1322"]]]},{"k":24659,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,3,["G3796"]],[3,5,["G1096"]],[5,7,["G1607"]],[7,8,["G1854"]],[8,10,["G3588"]],[10,11,["G4172"]]]},{"k":24660,"v":[[0,1,["G2532"]],[1,4,["G4404"]],[4,8,["G3899"]],[8,10,["G1492"]],[10,11,["G3588"]],[11,13,["G4808"]],[13,15,["G3583"]],[15,16,["G1537"]],[16,18,["G4491"]]]},{"k":24661,"v":[[0,1,["G2532"]],[1,2,["G4074"]],[2,5,["G363"]],[5,6,["G3004"]],[6,8,["G846"]],[8,9,["G4461"]],[9,10,["G2396"]],[10,11,["G3588"]],[11,13,["G4808"]],[13,14,["G3739"]],[14,16,["G2672"]],[16,19,["G3583"]]]},{"k":24662,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G3004"]],[4,6,["G846"]],[6,7,["G2192"]],[7,8,["G4102"]],[8,10,["G2316"]]]},{"k":24663,"v":[[0,1,["G1063"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,7,["G3754"]],[7,8,["G3739","G302"]],[8,10,["G2036"]],[10,12,["G5129"]],[12,13,["G3735"]],[13,16,["G142"]],[16,17,["G2532"]],[17,20,["G906"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G2281"]],[23,24,["G2532"]],[24,26,["G3361"]],[26,27,["G1252"]],[27,28,["G1722"]],[28,29,["G848"]],[29,30,["G2588"]],[30,31,["G235"]],[31,33,["G4100"]],[33,34,["G3754"]],[34,37,["G3739"]],[37,39,["G3004"]],[39,43,["G1096"]],[43,44,["G846"]],[44,46,["G2071"]],[46,47,["G3739","G1437"]],[47,49,["G2036"]]]},{"k":24664,"v":[[0,1,["G1223","G5124"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,8,["G3956","G3745","G302"]],[8,10,["G154"]],[10,13,["G4336"]],[13,14,["G4100"]],[14,15,["G3754"]],[15,17,["G2983"]],[17,19,["G2532"]],[19,20,["G5213"]],[20,22,["G2071"]],[22,23,[]]]},{"k":24665,"v":[[0,1,["G2532"]],[1,2,["G3752"]],[2,4,["G4739"]],[4,5,["G4336"]],[5,6,["G863"]],[6,7,["G1487"]],[7,9,["G2192"]],[9,10,["G5100"]],[10,11,["G2596"]],[11,12,["G5100"]],[12,13,["G2443"]],[13,14,["G5216"]],[14,15,["G3962"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,19,["G1722"]],[19,20,["G3772"]],[20,22,["G863"]],[22,23,["G5213"]],[23,24,["G5216"]],[24,25,["G3900"]]]},{"k":24666,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5210"]],[3,5,["G3756"]],[5,6,["G863"]],[6,7,["G3761"]],[7,9,["G5216"]],[9,10,["G3962"]],[10,11,["G3588"]],[11,13,["G1722"]],[13,14,["G3772"]],[14,15,["G863"]],[15,16,["G5216"]],[16,17,["G3900"]]]},{"k":24667,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G3825"]],[4,5,["G1519"]],[5,6,["G2414"]],[6,7,["G2532"]],[7,9,["G846"]],[9,11,["G4043"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G2411"]],[14,16,["G2064"]],[16,17,["G4314"]],[17,18,["G846"]],[18,19,["G3588"]],[19,21,["G749"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G1122"]],[24,25,["G2532"]],[25,26,["G3588"]],[26,27,["G4245"]]]},{"k":24668,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1722"]],[5,6,["G4169"]],[6,7,["G1849"]],[7,8,["G4160"]],[8,11,["G5023"]],[11,12,["G2532"]],[12,13,["G5101"]],[13,14,["G1325"]],[14,15,["G4671"]],[15,16,["G5026"]],[16,17,["G1849"]],[17,18,["G2443"]],[18,19,["G4160"]],[19,21,["G5023"]]]},{"k":24669,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,11,["G2504","G1905"]],[11,13,["G5209"]],[13,14,["G1520"]],[14,15,["G3056"]],[15,16,["G2532"]],[16,17,["G611"]],[17,18,["G3427"]],[18,19,["G2532"]],[19,22,["G2046"]],[22,23,["G5213"]],[23,24,["G1722"]],[24,25,["G4169"]],[25,26,["G1849"]],[26,28,["G4160"]],[28,30,["G5023"]]]},{"k":24670,"v":[[0,1,["G3588"]],[1,2,["G908"]],[2,4,["G2491"]],[4,5,["G2258"]],[5,7,["G1537"]],[7,8,["G3772"]],[8,9,["G2228"]],[9,10,["G1537"]],[10,11,["G444"]],[11,12,["G611"]],[12,13,["G3427"]]]},{"k":24671,"v":[[0,1,["G2532"]],[1,3,["G3049"]],[3,4,["G4314"]],[4,5,["G1438"]],[5,6,["G3004"]],[6,7,["G1437"]],[7,10,["G2036"]],[10,11,["G1537"]],[11,12,["G3772"]],[12,15,["G2046"]],[15,16,["G1302"]],[16,17,["G3767"]],[17,20,["G3756"]],[20,21,["G4100"]],[21,22,["G846"]]]},{"k":24672,"v":[[0,1,["G235"]],[1,2,["G1437"]],[2,5,["G2036"]],[5,6,["G1537"]],[6,7,["G444"]],[7,9,["G5399"]],[9,10,["G3588"]],[10,11,["G2992"]],[11,12,["G1063"]],[12,13,["G537"]],[13,15,["G2192"]],[15,16,["G2491"]],[16,17,["G3754"]],[17,19,["G2258"]],[19,21,["G4396"]],[21,22,["G3689"]]]},{"k":24673,"v":[[0,1,["G2532"]],[1,3,["G611"]],[3,5,["G3004"]],[5,7,["G2424"]],[7,10,["G1492","G3756"]],[10,11,["G2532"]],[11,12,["G2424"]],[12,13,["G611"]],[13,14,["G3004"]],[14,16,["G846"]],[16,17,["G3761"]],[17,19,["G1473"]],[19,20,["G3004"]],[20,21,["G5213"]],[21,22,["G1722"]],[22,23,["G4169"]],[23,24,["G1849"]],[24,26,["G4160"]],[26,28,["G5023"]]]},{"k":24674,"v":[[0,1,["G2532"]],[1,3,["G756"]],[3,5,["G3004"]],[5,7,["G846"]],[7,8,["G1722"]],[8,9,["G3850"]],[9,12,["G444"]],[12,13,["G5452"]],[13,15,["G290"]],[15,16,["G2532"]],[16,20,["G4060","G5418"]],[20,22,["G2532"]],[22,23,["G3736"]],[23,28,["G5276"]],[28,29,["G2532"]],[29,30,["G3618"]],[30,32,["G4444"]],[32,33,["G2532"]],[33,36,["G1554","G846"]],[36,38,["G1092"]],[38,39,["G2532"]],[39,44,["G589"]]]},{"k":24675,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G2540"]],[4,6,["G649"]],[6,7,["G4314"]],[7,8,["G3588"]],[8,9,["G1092"]],[9,11,["G1401"]],[11,12,["G2443"]],[12,15,["G2983"]],[15,16,["G3844"]],[16,17,["G3588"]],[17,18,["G1092"]],[18,19,["G575"]],[19,20,["G3588"]],[20,21,["G2590"]],[21,23,["G3588"]],[23,24,["G290"]]]},{"k":24676,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2983"]],[3,6,["G1194"]],[6,7,["G846"]],[7,8,["G2532"]],[8,11,["G649"]],[11,12,["G2756"]]]},{"k":24677,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,4,["G649"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G243"]],[7,8,["G1401"]],[8,11,["G2548"]],[11,14,["G3036"]],[14,20,["G2775"]],[20,21,["G2532"]],[21,24,["G649"]],[24,26,["G821"]]]},{"k":24678,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,4,["G649"]],[4,5,["G243"]],[5,7,["G2548"]],[7,9,["G615"]],[9,10,["G2532"]],[10,11,["G4183"]],[11,12,["G243"]],[12,13,["G1194"]],[13,14,["G3588","G3303"]],[14,15,["G1161"]],[15,16,["G615"]],[16,17,["G3588"]]]},{"k":24679,"v":[[0,1,["G2192"]],[1,2,["G2089"]],[2,3,["G3767"]],[3,4,["G1520"]],[4,5,["G5207"]],[5,6,["G848"]],[6,7,["G27"]],[7,9,["G649"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G2078"]],[12,13,["G4314"]],[13,14,["G846"]],[14,15,["G3004"]],[15,18,["G1788"]],[18,19,["G3450"]],[19,20,["G5207"]]]},{"k":24680,"v":[[0,1,["G1161"]],[1,2,["G1565"]],[2,3,["G1092"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G1438"]],[6,7,["G3778"]],[7,8,["G2076"]],[8,9,["G3588"]],[9,10,["G2818"]],[10,11,["G1205"]],[11,14,["G615"]],[14,15,["G846"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G2817"]],[18,20,["G2071"]],[20,21,["G2257"]]]},{"k":24681,"v":[[0,1,["G2532"]],[1,3,["G2983"]],[3,4,["G846"]],[4,6,["G615"]],[6,8,["G2532"]],[8,9,["G1544"]],[9,11,["G1854"]],[11,13,["G3588"]],[13,14,["G290"]]]},{"k":24682,"v":[[0,1,["G5101"]],[1,3,["G3767"]],[3,4,["G3588"]],[4,5,["G2962"]],[5,7,["G3588"]],[7,8,["G290"]],[8,9,["G4160"]],[9,12,["G2064"]],[12,13,["G2532"]],[13,14,["G622"]],[14,15,["G3588"]],[15,16,["G1092"]],[16,17,["G2532"]],[17,19,["G1325"]],[19,20,["G3588"]],[20,21,["G290"]],[21,23,["G243"]]]},{"k":24683,"v":[[0,4,["G3761"]],[4,5,["G314"]],[5,6,["G5026"]],[6,7,["G1124"]],[7,9,["G3037"]],[9,10,["G3739"]],[10,11,["G3588"]],[11,12,["G3618"]],[12,13,["G593"]],[13,14,["(G3778)"]],[14,15,["G1096"]],[15,16,["(G1519)"]],[16,17,["G2776"]],[17,20,["G1137"]]]},{"k":24684,"v":[[0,1,["G3778"]],[1,2,["G1096"]],[2,5,["G3844","G2962"]],[5,6,["G2532"]],[6,8,["G2076"]],[8,9,["G2298"]],[9,10,["G1722"]],[10,11,["G2254"]],[11,12,["G3788"]]]},{"k":24685,"v":[[0,1,["G2532"]],[1,3,["G2212"]],[3,7,["G2902"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G5399"]],[10,11,["G3588"]],[11,12,["G3793"]],[12,13,["G1063"]],[13,15,["G1097"]],[15,16,["G3754"]],[16,19,["G2036"]],[19,20,["G3588"]],[20,21,["G3850"]],[21,22,["G4314"]],[22,23,["G846"]],[23,24,["G2532"]],[24,26,["G863"]],[26,27,["G846"]],[27,31,["G565"]]]},{"k":24686,"v":[[0,1,["G2532"]],[1,3,["G649"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G5100"]],[6,8,["G3588"]],[8,9,["G5330"]],[9,10,["G2532"]],[10,12,["G3588"]],[12,13,["G2265"]],[13,14,["G2443"]],[14,15,["G64"]],[15,16,["G846"]],[16,19,["G3056"]]]},{"k":24687,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,5,["G2064"]],[5,7,["G3004"]],[7,9,["G846"]],[9,10,["G1320"]],[10,12,["G1492"]],[12,13,["G3754"]],[13,15,["G1488"]],[15,16,["G227"]],[16,17,["G2532","(G3756)"]],[17,18,["G3199","G4671"]],[18,19,["G4012"]],[19,21,["G3762"]],[21,22,["G1063"]],[22,24,["G991"]],[24,25,["G3756"]],[25,26,["(G1519)"]],[26,27,["G4383"]],[27,29,["G444"]],[29,30,["G235"]],[30,31,["G1321"]],[31,32,["G3588"]],[32,33,["G3598"]],[33,35,["G2316"]],[35,36,["G1909"]],[36,37,["G225"]],[37,40,["G1832"]],[40,42,["G1325"]],[42,43,["G2778"]],[43,45,["G2541"]],[45,46,["G2228"]],[46,47,["G3756"]]]},{"k":24688,"v":[[0,3,["G1325"]],[3,4,["G2228"]],[4,7,["G3361"]],[7,8,["G1325"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G1492"]],[11,12,["G846"]],[12,13,["G5272"]],[13,14,["G2036"]],[14,16,["G846"]],[16,17,["G5101"]],[17,18,["G3985"]],[18,20,["G3165"]],[20,21,["G5342"]],[21,22,["G3427"]],[22,24,["G1220"]],[24,25,["G2443"]],[25,28,["G1492"]],[28,29,[]]]},{"k":24689,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5342"]],[3,5,["G2532"]],[5,7,["G3004"]],[7,9,["G846"]],[9,10,["G5101"]],[10,12,["G3778"]],[12,13,["G1504"]],[13,14,["G2532"]],[14,15,["G1923"]],[15,16,["G1161"]],[16,17,["G3588"]],[17,18,["G2036"]],[18,20,["G846"]],[20,21,["G2541"]]]},{"k":24690,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G591"]],[7,9,["G2541"]],[9,11,["G3588"]],[11,14,["G2541"]],[14,15,["G2532"]],[15,17,["G2316"]],[17,19,["G3588"]],[19,22,["G2316"]],[22,23,["G2532"]],[23,25,["G2296"]],[25,26,["G1909"]],[26,27,["G846"]]]},{"k":24691,"v":[[0,1,["G2532"]],[1,2,["G2064"]],[2,3,["G4314"]],[3,4,["G846"]],[4,6,["G4523"]],[6,7,["G3748"]],[7,8,["G3004"]],[8,10,["G1511"]],[10,11,["G3361"]],[11,12,["G386"]],[12,13,["G2532"]],[13,15,["G1905"]],[15,16,["G846"]],[16,17,["G3004"]]]},{"k":24692,"v":[[0,1,["G1320"]],[1,2,["G3475"]],[2,3,["G1125"]],[3,5,["G2254"]],[5,6,["G1437"]],[6,8,["G5100"]],[8,9,["G80"]],[9,10,["G599"]],[10,11,["G2532"]],[11,12,["G2641"]],[12,14,["G1135"]],[14,17,["G2532"]],[17,18,["G863"]],[18,19,["G3361"]],[19,20,["G5043"]],[20,21,["G2443"]],[21,22,["G848"]],[22,23,["G80"]],[23,25,["G2983"]],[25,26,["G846"]],[26,27,["G1135"]],[27,28,["G2532"]],[28,30,["G1817"]],[30,31,["G4690"]],[31,33,["G846"]],[33,34,["G80"]]]},{"k":24693,"v":[[0,3,["G2258"]],[3,4,["G2033"]],[4,5,["G80"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G4413"]],[8,9,["G2983"]],[9,11,["G1135"]],[11,12,["G2532"]],[12,13,["G599"]],[13,14,["G863"]],[14,15,["G3756"]],[15,16,["G4690"]]]},{"k":24694,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1208"]],[3,4,["G2983"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G599"]],[7,8,["(G3761)"]],[8,9,["G863"]],[9,10,["G846"]],[10,12,["G4690"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G5154"]],[15,16,["G5615"]]]},{"k":24695,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2033"]],[3,4,["G2983"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G863"]],[7,8,["G3756"]],[8,9,["G4690"]],[9,10,["G2078"]],[10,12,["G3956"]],[12,13,["G3588"]],[13,14,["G1135"]],[14,15,["G599"]],[15,16,["G2532"]]]},{"k":24696,"v":[[0,1,["G1722"]],[1,2,["G3588"]],[2,3,["G386"]],[3,4,["G3767"]],[4,5,["G3752"]],[5,8,["G450"]],[8,9,["G5101"]],[9,10,["G1135"]],[10,13,["G2071"]],[13,15,["G846"]],[15,16,["G1063"]],[16,17,["G3588"]],[17,18,["G2033"]],[18,19,["G2192"]],[19,20,["G846"]],[20,22,["G1135"]]]},{"k":24697,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,6,["G846"]],[6,9,["G3756"]],[9,10,["G1223","G5124"]],[10,11,["G4105"]],[11,14,["G1492"]],[14,15,["G3361"]],[15,16,["G3588"]],[16,17,["G1124"]],[17,18,["G3366"]],[18,19,["G3588"]],[19,20,["G1411"]],[20,22,["G2316"]]]},{"k":24698,"v":[[0,1,["G1063"]],[1,2,["G3752"]],[2,5,["G450"]],[5,6,["G1537"]],[6,8,["G3498"]],[8,10,["G3777"]],[10,11,["G1060"]],[11,12,["G3777"]],[12,16,["G1061"]],[16,17,["G235"]],[17,18,["G1526"]],[18,19,["G5613"]],[19,21,["G32"]],[21,22,["G3588"]],[22,24,["G1722"]],[24,25,["G3772"]]]},{"k":24699,"v":[[0,1,["G1161"]],[1,3,["G4012"]],[3,4,["G3588"]],[4,5,["G3498"]],[5,6,["G3754"]],[6,8,["G1453"]],[8,11,["G3756"]],[11,12,["G314"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G976"]],[15,17,["G3475"]],[17,18,["G5613"]],[18,19,["G1909"]],[19,20,["G3588"]],[20,21,["G942"]],[21,22,["G2316"]],[22,23,["G2036"]],[23,25,["G846"]],[25,26,["G3004"]],[26,27,["G1473"]],[27,29,["G3588"]],[29,30,["G2316"]],[30,32,["G11"]],[32,33,["G2532"]],[33,34,["G3588"]],[34,35,["G2316"]],[35,37,["G2464"]],[37,38,["G2532"]],[38,39,["G3588"]],[39,40,["G2316"]],[40,42,["G2384"]]]},{"k":24700,"v":[[0,2,["G2076"]],[2,3,["G3756"]],[3,4,["G3588"]],[4,5,["G2316"]],[5,8,["G3498"]],[8,9,["G235"]],[9,11,["G2316"]],[11,14,["G2198"]],[14,15,["G5210"]],[15,16,["G3767"]],[16,18,["G4183"]],[18,19,["G4105"]]]},{"k":24701,"v":[[0,1,["G2532"]],[1,2,["G1520"]],[2,4,["G3588"]],[4,5,["G1122"]],[5,6,["G4334"]],[6,9,["G191"]],[9,10,["G846"]],[10,12,["G4802"]],[12,14,["G1492"]],[14,15,["G3754"]],[15,18,["G611"]],[18,19,["G846"]],[19,20,["G2573"]],[20,21,["G1905"]],[21,22,["G846"]],[22,23,["G4169"]],[23,24,["G2076"]],[24,26,["G4413"]],[26,27,["G1785"]],[27,29,["G3956"]]]},{"k":24702,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G846"]],[4,6,["G4413"]],[6,8,["G3956"]],[8,9,["G3588"]],[9,10,["G1785"]],[10,12,["G191"]],[12,14,["G2474"]],[14,16,["G2962"]],[16,17,["G2257"]],[17,18,["G2316"]],[18,19,["G2076"]],[19,20,["G1520"]],[20,21,["G2962"]]]},{"k":24703,"v":[[0,1,["G2532"]],[1,4,["G25"]],[4,6,["G2962"]],[6,7,["G4675"]],[7,8,["G2316"]],[8,9,["G1537"]],[9,10,["G3650"]],[10,11,["G4675"]],[11,12,["G2588"]],[12,13,["G2532"]],[13,14,["G1537"]],[14,15,["G3650"]],[15,16,["G4675"]],[16,17,["G5590"]],[17,18,["G2532"]],[18,19,["G1537"]],[19,20,["G3650"]],[20,21,["G4675"]],[21,22,["G1271"]],[22,23,["G2532"]],[23,24,["G1537"]],[24,25,["G3650"]],[25,26,["G4675"]],[26,27,["G2479"]],[27,28,["G3778"]],[28,31,["G4413"]],[31,32,["G1785"]]]},{"k":24704,"v":[[0,1,["G2532"]],[1,3,["G1208"]],[3,5,["G3664"]],[5,7,["G3778"]],[7,10,["G25"]],[10,11,["G4675"]],[11,12,["G4139"]],[12,13,["G5613"]],[13,14,["G4572"]],[14,16,["G2076"]],[16,17,["G3756"]],[17,18,["G243"]],[18,19,["G1785"]],[19,20,["G3187"]],[20,22,["G5130"]]]},{"k":24705,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1122"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G2573"]],[7,8,["G1320"]],[8,11,["G2036"]],[11,12,["(G1909)"]],[12,13,["G225"]],[13,14,["G3754"]],[14,16,["G2076"]],[16,17,["G1520"]],[17,18,["G2316"]],[18,19,["G2532"]],[19,21,["G2076"]],[21,22,["G3756"]],[22,23,["G243"]],[23,24,["G4133"]],[24,25,["G846"]]]},{"k":24706,"v":[[0,1,["G2532"]],[1,3,["G25"]],[3,4,["G846"]],[4,5,["G1537"]],[5,6,["G3650"]],[6,7,["G3588"]],[7,8,["G2588"]],[8,9,["G2532"]],[9,10,["G1537"]],[10,11,["G3650"]],[11,12,["G3588"]],[12,13,["G4907"]],[13,14,["G2532"]],[14,15,["G1537"]],[15,16,["G3650"]],[16,17,["G3588"]],[17,18,["G5590"]],[18,19,["G2532"]],[19,20,["G1537"]],[20,21,["G3650"]],[21,22,["G3588"]],[22,23,["G2479"]],[23,24,["G2532"]],[24,26,["G25"]],[26,28,["G4139"]],[28,29,["G5613"]],[29,30,["G1438"]],[30,31,["G2076"]],[31,32,["G4119"]],[32,34,["G3956"]],[34,37,["G3646"]],[37,38,["G2532"]],[38,39,["G2378"]]]},{"k":24707,"v":[[0,1,["G2532"]],[1,3,["G2424"]],[3,4,["G1492"]],[4,5,["G3754"]],[5,7,["G611"]],[7,8,["G3562"]],[8,10,["G2036"]],[10,12,["G846"]],[12,14,["G1488"]],[14,15,["G3756"]],[15,16,["G3112"]],[16,17,["G575"]],[17,18,["G3588"]],[18,19,["G932"]],[19,21,["G2316"]],[21,22,["G2532"]],[22,24,["G3762"]],[24,26,["G3765"]],[26,27,["G5111"]],[27,28,["G1905"]],[28,29,["G846"]],[29,31,[]]]},{"k":24708,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G3004"]],[5,8,["G1321"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2411"]],[11,12,["G4459"]],[12,13,["G3004"]],[13,14,["G3588"]],[14,15,["G1122"]],[15,16,["G3754"]],[16,17,["G5547"]],[17,18,["G2076"]],[18,20,["G5207"]],[20,22,["G1138"]]]},{"k":24709,"v":[[0,1,["G1063"]],[1,2,["G1138"]],[2,3,["G846"]],[3,4,["G2036"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G40"]],[7,8,["G4151"]],[8,9,["G3588"]],[9,10,["G2962"]],[10,11,["G2036"]],[11,13,["G3450"]],[13,14,["G2962"]],[14,15,["G2521"]],[15,17,["G1537"]],[17,18,["G3450"]],[18,20,["G1188"]],[20,21,["G2193","G302"]],[21,23,["G5087"]],[23,24,["G4675"]],[24,25,["G2190"]],[25,27,["G5286","G4675","G4228"]]]},{"k":24710,"v":[[0,1,["G1138"]],[1,2,["G3767"]],[2,3,["G846"]],[3,4,["G3004"]],[4,5,["G846"]],[5,6,["G2962"]],[6,7,["G2532"]],[7,8,["G4159"]],[8,9,["G2076"]],[9,12,["G846"]],[12,13,["G5207"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G4183"]],[16,17,["G3793"]],[17,18,["G191"]],[18,19,["G846"]],[19,20,["G2234"]]]},{"k":24711,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G1722"]],[6,7,["G848"]],[7,8,["G1322"]],[8,9,["G991"]],[9,10,["G575"]],[10,11,["G3588"]],[11,12,["G1122"]],[12,14,["G2309"]],[14,16,["G4043"]],[16,17,["G1722"]],[17,19,["G4749"]],[19,20,["G2532"]],[20,22,["G783"]],[22,23,["G1722"]],[23,24,["G3588"]],[24,25,["G58"]]]},{"k":24712,"v":[[0,1,["G2532"]],[1,4,["G4410"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G4864"]],[7,8,["G2532"]],[8,11,["G4411"]],[11,12,["G1722"]],[12,13,["G1173"]]]},{"k":24713,"v":[[0,2,["G2719"]],[2,3,["G5503"]],[3,4,["G3614"]],[4,5,["G2532"]],[5,8,["G4392"]],[8,11,["G4336","G3117"]],[11,12,["G3778"]],[12,14,["G2983"]],[14,15,["G4055"]],[15,16,["G2917"]]]},{"k":24714,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2523"]],[3,5,["G2713"]],[5,6,["G3588"]],[6,7,["G1049"]],[7,9,["G2334"]],[9,10,["G4459"]],[10,11,["G3588"]],[11,12,["G3793"]],[12,13,["G906"]],[13,14,["G5475"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G1049"]],[17,18,["G2532"]],[18,19,["G4183"]],[19,22,["G4145"]],[22,24,["G906"]],[24,25,["G4183"]]]},{"k":24715,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,5,["G3391"]],[5,6,["G4434"]],[6,7,["G5503"]],[7,11,["G906"]],[11,12,["G1417"]],[12,13,["G3016"]],[13,15,["G3603"]],[15,17,["G2835"]]]},{"k":24716,"v":[[0,1,["G2532"]],[1,3,["G4341"]],[3,6,["G848"]],[6,7,["G3101"]],[7,9,["G3004"]],[9,11,["G846"]],[11,12,["G281"]],[12,14,["G3004"]],[14,16,["G5213"]],[16,17,["G3754"]],[17,18,["G3778"]],[18,19,["G4434"]],[19,20,["G5503"]],[20,24,["G906","G4119"]],[24,26,["G3956"]],[26,30,["G906"]],[30,31,["G1519"]],[31,32,["G3588"]],[32,33,["G1049"]]]},{"k":24717,"v":[[0,1,["G1063"]],[1,2,["G3956"]],[2,6,["G906"]],[6,7,["G1537"]],[7,8,["G846"]],[8,9,["G4052"]],[9,10,["G1161"]],[10,11,["G3778"]],[11,12,["G1537"]],[12,13,["G848"]],[13,14,["G5304"]],[14,17,["G906"]],[17,18,["G3956"]],[18,19,["G3745"]],[19,21,["G2192"]],[21,23,["G3650"]],[23,24,["G848"]],[24,25,["G979"]]]},{"k":24718,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,4,["G1607"]],[4,6,["G1537"]],[6,7,["G3588"]],[7,8,["G2411"]],[8,9,["G1520"]],[9,11,["G846"]],[11,12,["G3101"]],[12,13,["G3004"]],[13,15,["G846"]],[15,16,["G1320"]],[16,17,["G2396"]],[17,19,["G4217"]],[19,21,["G3037"]],[21,22,["G2532"]],[22,23,["G4217"]],[23,24,["G3619"]],[24,26,[]]]},{"k":24719,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G991"]],[7,9,["G5025"]],[9,10,["G3173"]],[10,11,["G3619"]],[11,14,["G3364"]],[14,16,["G863"]],[16,20,["G3037","G1909","G3037"]],[20,21,["G3739"]],[21,23,["G3364"]],[23,26,["G2647"]]]},{"k":24720,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,4,["G2521"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G3735"]],[7,9,["G1636"]],[9,11,["G2713"]],[11,12,["G3588"]],[12,13,["G2411"]],[13,14,["G4074"]],[14,15,["G2532"]],[15,16,["G2385"]],[16,17,["G2532"]],[17,18,["G2491"]],[18,19,["G2532"]],[19,20,["G406"]],[20,21,["G1905"]],[21,22,["G846"]],[22,23,["G2596","G2398"]]]},{"k":24721,"v":[[0,1,["G2036"]],[1,2,["G2254"]],[2,3,["G4219"]],[3,6,["G5023"]],[6,7,["G2071"]],[7,8,["G2532"]],[8,9,["G5101"]],[9,12,["G3588"]],[12,13,["G4592"]],[13,14,["G3752"]],[14,15,["G3956"]],[15,17,["G5023"]],[17,18,["G3195"]],[18,20,["G4931"]]]},{"k":24722,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G846"]],[4,5,["G756"]],[5,7,["G3004"]],[7,9,["G991"]],[9,10,["G3361"]],[10,11,["G5100"]],[11,13,["G4105"]],[13,14,["G5209"]]]},{"k":24723,"v":[[0,1,["G1063"]],[1,2,["G4183"]],[2,4,["G2064"]],[4,5,["G1909"]],[5,6,["G3450"]],[6,7,["G3686"]],[7,8,["G3004"]],[8,9,["G1473"]],[9,10,["G1510"]],[10,12,["G2532"]],[12,14,["G4105"]],[14,15,["G4183"]]]},{"k":24724,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,5,["G191"]],[5,7,["G4171"]],[7,8,["G2532"]],[8,9,["G189"]],[9,11,["G4171"]],[11,14,["G3361"]],[14,15,["G2360"]],[15,16,["G1063"]],[16,20,["G1163"]],[20,21,["G1096"]],[21,22,["G235"]],[22,23,["G3588"]],[23,24,["G5056"]],[24,28,["G3768"]]]},{"k":24725,"v":[[0,1,["G1063"]],[1,2,["G1484"]],[2,4,["G1453"]],[4,5,["G1909"]],[5,6,["G1484"]],[6,7,["G2532"]],[7,8,["G932"]],[8,9,["G1909"]],[9,10,["G932"]],[10,11,["G2532"]],[11,14,["G2071"]],[14,15,["G4578"]],[15,18,["G2596","G5117"]],[18,19,["G2532"]],[19,22,["G2071"]],[22,23,["G3042"]],[23,24,["G2532"]],[24,25,["G5016"]],[25,26,["G5023"]],[26,29,["G746"]],[29,31,["G5604"]]]},{"k":24726,"v":[[0,1,["G1161"]],[1,3,["G991"]],[3,5,["G1438"]],[5,6,["G1063"]],[6,11,["G3860","G5209"]],[11,12,["G1519"]],[12,13,["G4892"]],[13,14,["G2532"]],[14,15,["G1519"]],[15,17,["G4864"]],[17,21,["G1194"]],[21,22,["G2532"]],[22,26,["G2476"]],[26,27,["G1909"]],[27,28,["G2232"]],[28,29,["G2532"]],[29,30,["G935"]],[30,33,["G1752","G1700"]],[33,34,["G1519"]],[34,36,["G3142"]],[36,38,["G846"]]]},{"k":24727,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2098"]],[3,4,["G1163"]],[4,5,["G4412"]],[5,7,["G2784"]],[7,8,["G1519"]],[8,9,["G3956"]],[9,10,["G1484"]]]},{"k":24728,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,5,["G71"]],[5,6,["G5209"]],[6,10,["G3860"]],[10,14,["G4305","G3361"]],[14,15,["G5101"]],[15,18,["G2980"]],[18,19,["G3366"]],[19,22,["G3191"]],[22,24,["G3739","G1437"]],[24,27,["G1325"]],[27,28,["G5213"]],[28,29,["G1722"]],[29,30,["G1565"]],[30,31,["G5610"]],[31,32,["G5124"]],[32,33,["G2980"]],[33,35,["G1063"]],[35,37,["G2075"]],[37,38,["G3756"]],[38,39,["G5210"]],[39,41,["G2980"]],[41,42,["G235"]],[42,43,["G3588"]],[43,44,["G40"]],[44,45,["G4151"]]]},{"k":24729,"v":[[0,1,["G1161"]],[1,3,["G80"]],[3,5,["G3860"]],[5,7,["G80"]],[7,8,["G1519"]],[8,9,["G2288"]],[9,10,["G2532"]],[10,12,["G3962"]],[12,14,["G5043"]],[14,15,["G2532"]],[15,16,["G5043"]],[16,19,["G1881"]],[19,20,["G1909"]],[20,22,["G1118"]],[22,23,["G2532"]],[23,31,["G2289","G846"]]]},{"k":24730,"v":[[0,1,["G2532"]],[1,4,["G2071"]],[4,5,["G3404"]],[5,6,["G5259"]],[6,7,["G3956"]],[7,12,["G1223","G3450","G3686"]],[12,13,["G1161"]],[13,17,["G5278"]],[17,18,["G1519"]],[18,20,["G5056"]],[20,22,["G3778"]],[22,25,["G4982"]]]},{"k":24731,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,5,["G1492"]],[5,6,["G3588"]],[6,7,["G946"]],[7,9,["G2050"]],[9,11,["G4483"]],[11,12,["G5259"]],[12,13,["G1158"]],[13,14,["G3588"]],[14,15,["G4396"]],[15,16,["G2476"]],[16,17,["G3699"]],[17,19,["G1163"]],[19,20,["G3756"]],[20,24,["G314"]],[24,25,["G3539"]],[25,26,["G5119"]],[26,28,["G3588"]],[28,31,["G1722"]],[31,32,["G2449"]],[32,33,["G5343"]],[33,34,["G1519"]],[34,35,["G3588"]],[35,36,["G3735"]]]},{"k":24732,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,6,["G1909"]],[6,7,["G3588"]],[7,8,["G1430"]],[8,9,["G3361"]],[9,11,["G2597"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G3614"]],[14,15,["G3366"]],[15,16,["G1525"]],[16,19,["G142"]],[19,21,["G5100"]],[21,23,["G1537"]],[23,24,["G848"]],[24,25,["G3614"]]]},{"k":24733,"v":[[0,1,["G2532"]],[1,5,["G5607"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G68"]],[8,9,["G3361"]],[9,11,["G1994"]],[11,12,["G1519","G3694"]],[12,16,["G142"]],[16,17,["G848"]],[17,18,["G2440"]]]},{"k":24734,"v":[[0,1,["G1161"]],[1,2,["G3759"]],[2,8,["G2192","G1722","G1064"]],[8,9,["G2532"]],[9,14,["G2337"]],[14,15,["G1722"]],[15,16,["G1565"]],[16,17,["G2250"]]]},{"k":24735,"v":[[0,1,["G1161"]],[1,2,["G4336"]],[2,4,["G2443"]],[4,5,["G5216"]],[5,6,["G5437"]],[6,7,["G1096"]],[7,8,["G3361"]],[8,11,["G5494"]]]},{"k":24736,"v":[[0,1,["G1063"]],[1,3,["G1565"]],[3,4,["G2250"]],[4,6,["G2071"]],[6,7,["G2347"]],[7,9,["G3634"]],[9,10,["G1096"]],[10,11,["G3756","(G5108)"]],[11,12,["G575"]],[12,14,["G746"]],[14,17,["G2937"]],[17,18,["G3739"]],[18,19,["G2316"]],[19,20,["G2936"]],[20,21,["G2193"]],[21,23,["G3568","(G2532)"]],[23,24,["G3364"]],[24,26,["G1096"]]]},{"k":24737,"v":[[0,1,["G2532"]],[1,2,["G1508"]],[2,5,["G2962"]],[5,7,["G2856"]],[7,9,["G2250"]],[9,10,["G3956","G3756"]],[10,11,["G4561"]],[11,14,["G4982","G302"]],[14,15,["G235"]],[15,19,["G1223","G3588","G1588"]],[19,20,["G3739"]],[20,23,["G1586"]],[23,26,["G2856"]],[26,27,["G3588"]],[27,28,["G2250"]]]},{"k":24738,"v":[[0,1,["G2532"]],[1,2,["G5119"]],[2,3,["G1437"]],[3,5,["G5100"]],[5,7,["G2036"]],[7,9,["G5213"]],[9,10,["G2400"]],[10,11,["G5602"]],[11,13,["G5547"]],[13,14,["G2228"]],[14,15,["G2400"]],[15,18,["G1563"]],[18,19,["G4100"]],[19,21,["G3361"]]]},{"k":24739,"v":[[0,1,["G1063"]],[1,3,["G5580"]],[3,4,["G2532"]],[4,6,["G5578"]],[6,8,["G1453"]],[8,9,["G2532"]],[9,11,["G1325"]],[11,12,["G4592"]],[12,13,["G2532"]],[13,14,["G5059"]],[14,16,["G635"]],[16,17,["G1487"]],[17,20,["G1415"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G1588"]]]},{"k":24740,"v":[[0,1,["G1161"]],[1,4,["G991","G5210"]],[4,5,["G2400"]],[5,8,["G4280"]],[8,9,["G5213"]],[9,11,["G3956"]]]},{"k":24741,"v":[[0,1,["G235"]],[1,2,["G1722"]],[2,3,["G1565"]],[3,4,["G2250"]],[4,5,["G3326"]],[5,6,["G1565"]],[6,7,["G2347"]],[7,8,["G3588"]],[8,9,["G2246"]],[9,12,["G4654"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G4582"]],[15,17,["G3756"]],[17,18,["G1325"]],[18,19,["G848"]],[19,20,["G5338"]]]},{"k":24742,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G792"]],[3,5,["G3772"]],[5,6,["(G2071)"]],[6,7,["G1601"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G1411"]],[10,11,["G3588"]],[11,13,["G1722"]],[13,14,["G3772"]],[14,17,["G4531"]]]},{"k":24743,"v":[[0,1,["G2532"]],[1,2,["G5119"]],[2,5,["G3700"]],[5,6,["G3588"]],[6,7,["G5207"]],[7,9,["G444"]],[9,10,["G2064"]],[10,11,["G1722"]],[11,13,["G3507"]],[13,14,["G3326"]],[14,15,["G4183"]],[15,16,["G1411"]],[16,17,["G2532"]],[17,18,["G1391"]]]},{"k":24744,"v":[[0,1,["G2532"]],[1,2,["G5119"]],[2,5,["G649"]],[5,6,["G848"]],[6,7,["G32"]],[7,8,["G2532"]],[8,11,["G1996"]],[11,12,["G848"]],[12,13,["G1588"]],[13,14,["G1537"]],[14,15,["G3588"]],[15,16,["G5064"]],[16,17,["G417"]],[17,18,["G575"]],[18,21,["G206"]],[21,24,["G1093"]],[24,25,["G2193"]],[25,28,["G206"]],[28,30,["G3772"]]]},{"k":24745,"v":[[0,1,["G1161"]],[1,2,["G3129"]],[2,4,["G3850"]],[4,5,["G575"]],[5,6,["G3588"]],[6,8,["G4808"]],[8,9,["G3752"]],[9,10,["G846"]],[10,11,["G2798"]],[11,12,["G1096"]],[12,13,["G2235"]],[13,14,["G527"]],[14,15,["G2532"]],[15,17,["G1631"]],[17,18,["G5444"]],[18,20,["G1097"]],[20,21,["G3754"]],[21,22,["G2330"]],[22,23,["G2076"]],[23,24,["G1451"]]]},{"k":24746,"v":[[0,1,["G3779"]],[1,2,["G5210"]],[2,5,["G2532"]],[5,6,["G3752"]],[6,9,["G1492"]],[9,11,["G5023"]],[11,14,["G1096"]],[14,15,["G1097"]],[15,16,["G3754"]],[16,18,["G2076"]],[18,19,["G1451"]],[19,21,["G1909"]],[21,23,["G2374"]]]},{"k":24747,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G3778"]],[7,8,["G1074"]],[8,10,["G3364"]],[10,11,["G3928"]],[11,12,["G3360"]],[12,13,["G3956"]],[13,15,["G5023"]],[15,17,["G1096"]]]},{"k":24748,"v":[[0,1,["G3772"]],[1,2,["G2532"]],[2,3,["G1093"]],[3,6,["G3928"]],[6,7,["G1161"]],[7,8,["G3450"]],[8,9,["G3056"]],[9,11,["G3364"]],[11,13,["G3928"]]]},{"k":24749,"v":[[0,1,["G1161"]],[1,2,["G4012"]],[2,3,["G1565"]],[3,4,["G2250"]],[4,5,["G2532"]],[5,7,["G5610"]],[7,8,["G1492"]],[8,10,["G3762"]],[10,12,["G3761"]],[12,13,["G3588"]],[13,14,["G32"]],[14,15,["G3588"]],[15,17,["G1722"]],[17,18,["G3772"]],[18,19,["G3761"]],[19,20,["G3588"]],[20,21,["G5207"]],[21,22,["G1508"]],[22,23,["G3588"]],[23,24,["G3962"]]]},{"k":24750,"v":[[0,3,["G991"]],[3,4,["G69"]],[4,5,["G2532"]],[5,6,["G4336"]],[6,7,["G1063"]],[7,9,["G1492"]],[9,10,["G3756"]],[10,11,["G4219"]],[11,12,["G3588"]],[12,13,["G2540"]],[13,14,["G2076"]]]},{"k":24751,"v":[[0,7,["G5613"]],[7,9,["G444"]],[9,13,["G590"]],[13,15,["G863"]],[15,16,["G848"]],[16,17,["G3614"]],[17,18,["G2532"]],[18,19,["G1325"]],[19,20,["G1849"]],[20,22,["G848"]],[22,23,["G1401"]],[23,24,["G2532"]],[24,27,["G1538"]],[27,28,["G848"]],[28,29,["G2041"]],[29,30,["G2532"]],[30,31,["G1781"]],[31,32,["G3588"]],[32,33,["G2377"]],[33,34,["G2443"]],[34,35,["G1127"]]]},{"k":24752,"v":[[0,1,["G1127"]],[1,3,["G3767"]],[3,4,["G1063"]],[4,6,["G1492"]],[6,7,["G3756"]],[7,8,["G4219"]],[8,9,["G3588"]],[9,10,["G2962"]],[10,12,["G3588"]],[12,13,["G3614"]],[13,14,["G2064"]],[14,16,["G3796"]],[16,17,["G2228"]],[17,19,["G3317"]],[19,20,["G2228"]],[20,23,["G219"]],[23,24,["G2228"]],[24,27,["G4404"]]]},{"k":24753,"v":[[0,1,["G3361"]],[1,2,["G2064"]],[2,3,["G1810"]],[3,5,["G2147"]],[5,6,["G5209"]],[6,7,["G2518"]]]},{"k":24754,"v":[[0,1,["G1161"]],[1,2,["G3739"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,8,["G3004"]],[8,10,["G3956"]],[10,11,["G1127"]]]},{"k":24755,"v":[[0,1,["(G3326)"]],[1,2,["G1417"]],[2,3,["G2250"]],[3,4,["G2258"]],[4,8,["G3588"]],[8,9,["G3957"]],[9,10,["G2532"]],[10,13,["G106"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,17,["G749"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G1122"]],[20,21,["G2212"]],[21,22,["G4459"]],[22,25,["G2902"]],[25,26,["G846"]],[26,27,["G1722"]],[27,28,["G1388"]],[28,33,["G615"]]]},{"k":24756,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,4,["G3361"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G1859"]],[7,9,["G3379"]],[9,11,["G2071"]],[11,13,["G2351"]],[13,15,["G3588"]],[15,16,["G2992"]]]},{"k":24757,"v":[[0,1,["G2532"]],[1,2,["G5607"]],[2,3,["G1722"]],[3,4,["G963"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G3614"]],[7,9,["G4613"]],[9,10,["G3588"]],[10,11,["G3015"]],[11,13,["G846"]],[13,16,["G2621"]],[16,18,["G2064"]],[18,20,["G1135"]],[20,21,["G2192"]],[21,24,["G211"]],[24,26,["G3464"]],[26,28,["G4101","G3487"]],[28,30,["G4185"]],[30,31,["G2532"]],[31,33,["G4937"]],[33,34,["G3588"]],[34,35,["G211"]],[35,37,["G2708"]],[37,39,["G2596"]],[39,40,["G846"]],[40,41,["G2776"]]]},{"k":24758,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G5100"]],[4,7,["G23"]],[7,8,["G4314"]],[8,9,["G1438"]],[9,10,["G2532"]],[10,11,["G3004"]],[11,12,["G5101"]],[12,14,["G3778"]],[14,15,["G684"]],[15,17,["G3588"]],[17,18,["G3464"]],[18,19,["G1096"]]]},{"k":24759,"v":[[0,1,["G1063"]],[1,2,["G5124"]],[2,5,["G1410"]],[5,6,["G4097"]],[6,9,["G1883"]],[9,11,["G5145"]],[11,12,["G1220"]],[12,13,["G2532"]],[13,16,["G1325"]],[16,18,["G3588"]],[18,19,["G4434"]],[19,20,["G2532"]],[20,23,["G1690"]],[23,24,["G846"]]]},{"k":24760,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,6,["G863","G846"]],[6,7,["G5101"]],[7,8,["G3930","G2873"]],[8,10,["G846"]],[10,13,["G2038"]],[13,15,["G2570"]],[15,16,["G2041"]],[16,17,["G1519"]],[17,18,["G1691"]]]},{"k":24761,"v":[[0,1,["G1063"]],[1,3,["G2192"]],[3,4,["G3588"]],[4,5,["G4434"]],[5,6,["G3326"]],[6,7,["G1438"]],[7,8,["G3842"]],[8,9,["G2532"]],[9,10,["G3752"]],[10,12,["G2309"]],[12,14,["G1410"]],[14,15,["G4160"]],[15,16,["G846"]],[16,17,["G2095"]],[17,18,["G1161"]],[18,19,["G1691"]],[19,21,["G2192"]],[21,22,["G3756"]],[22,23,["G3842"]]]},{"k":24762,"v":[[0,3,["G4160"]],[3,4,["G3739"]],[4,5,["G3778"]],[5,6,["G2192"]],[6,10,["G4301"]],[10,12,["G3462"]],[12,13,["G3450"]],[13,14,["G4983"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G1780"]]]},{"k":24763,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3699","G302"]],[6,7,["G5124"]],[7,8,["G2098"]],[8,11,["G2784"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G3650"]],[14,15,["G2889"]],[15,17,["G2532"]],[17,18,["G3739"]],[18,19,["G3778"]],[19,21,["G4160"]],[21,25,["G2980"]],[25,26,["G1519"]],[26,28,["G3422"]],[28,30,["G846"]]]},{"k":24764,"v":[[0,1,["G2532"]],[1,2,["G2455"]],[2,3,["G2469"]],[3,4,["G1520"]],[4,6,["G3588"]],[6,7,["G1427"]],[7,8,["G565"]],[8,9,["G4314"]],[9,10,["G3588"]],[10,12,["G749"]],[12,13,["G2443"]],[13,14,["G3860"]],[14,15,["G846"]],[15,17,["G846"]]]},{"k":24765,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G191"]],[4,8,["G5463"]],[8,9,["G2532"]],[9,10,["G1861"]],[10,12,["G1325"]],[12,13,["G846"]],[13,14,["G694"]],[14,15,["G2532"]],[15,17,["G2212"]],[17,18,["G4459"]],[18,21,["G2122"]],[21,22,["G3860"]],[22,23,["G846"]]]},{"k":24766,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4413"]],[3,4,["G2250"]],[4,7,["G106"]],[7,8,["G3753"]],[8,10,["G2380"]],[10,11,["G3588"]],[11,12,["G3957"]],[12,13,["G846"]],[13,14,["G3101"]],[14,15,["G3004"]],[15,17,["G846"]],[17,18,["G4226"]],[18,19,["G2309"]],[19,23,["G565"]],[23,25,["G2090"]],[25,26,["G2443"]],[26,29,["G5315"]],[29,30,["G3588"]],[30,31,["G3957"]]]},{"k":24767,"v":[[0,1,["G2532"]],[1,4,["G649"]],[4,5,["G1417"]],[5,7,["G848"]],[7,8,["G3101"]],[8,9,["G2532"]],[9,10,["G3004"]],[10,12,["G846"]],[12,13,["G5217"]],[13,15,["G1519"]],[15,16,["G3588"]],[16,17,["G4172"]],[17,18,["G2532"]],[18,21,["G528"]],[21,22,["G5213"]],[22,24,["G444"]],[24,25,["G941"]],[25,27,["G2765"]],[27,29,["G5204"]],[29,30,["G190"]],[30,31,["G846"]]]},{"k":24768,"v":[[0,1,["G2532"]],[1,2,["G3699","G1437"]],[2,6,["G1525"]],[6,7,["G2036"]],[7,10,["G3588"]],[10,14,["G3617"]],[14,15,["G3588"]],[15,16,["G1320"]],[16,17,["G3004"]],[17,18,["G4226"]],[18,19,["G2076"]],[19,20,["G3588"]],[20,21,["G2646"]],[21,22,["G3699"]],[22,25,["G5315"]],[25,26,["G3588"]],[26,27,["G3957"]],[27,28,["G3326"]],[28,29,["G3450"]],[29,30,["G3101"]]]},{"k":24769,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,4,["G1166"]],[4,5,["G5213"]],[5,7,["G3173"]],[7,9,["G508"]],[9,10,["G4766"]],[10,12,["G2092"]],[12,13,["G1563"]],[13,15,["G2090"]],[15,17,["G2254"]]]},{"k":24770,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3101"]],[3,5,["G1831"]],[5,6,["G2532"]],[6,7,["G2064"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G4172"]],[10,11,["G2532"]],[11,12,["G2147"]],[12,13,["G2531"]],[13,16,["G2036"]],[16,18,["G846"]],[18,19,["G2532"]],[19,22,["G2090"]],[22,23,["G3588"]],[23,24,["G3957"]]]},{"k":24771,"v":[[0,1,["G2532"]],[1,4,["G3798"]],[4,5,["(G1096)"]],[5,6,["G2064"]],[6,7,["G3326"]],[7,8,["G3588"]],[8,9,["G1427"]]]},{"k":24772,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,4,["G345"]],[4,5,["G2532"]],[5,7,["G2068"]],[7,8,["G2424"]],[8,9,["G2036"]],[9,10,["G281"]],[10,12,["G3004"]],[12,14,["G5213"]],[14,15,["G1520"]],[15,16,["G1537"]],[16,17,["G5216"]],[17,19,["G2068"]],[19,20,["G3326"]],[20,21,["G1700"]],[21,23,["G3860"]],[23,24,["G3165"]]]},{"k":24773,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G756"]],[3,6,["G3076"]],[6,7,["G2532"]],[7,9,["G3004"]],[9,11,["G846"]],[11,14,["G1527"]],[14,15,["(G3385)"]],[15,17,["G1473"]],[17,18,["G2532"]],[18,19,["G243"]],[19,21,["(G3385)"]],[21,23,["G1473"]]]},{"k":24774,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,10,["G1520"]],[10,11,["G1537"]],[11,12,["G3588"]],[12,13,["G1427"]],[13,15,["G1686"]],[15,16,["G3326"]],[16,17,["G1700"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G5165"]]]},{"k":24775,"v":[[0,1,["G3588"]],[1,2,["G5207"]],[2,4,["G444"]],[4,5,["G3303"]],[5,6,["G5217"]],[6,7,["G2531"]],[7,10,["G1125"]],[10,11,["G4012"]],[11,12,["G846"]],[12,13,["G1161"]],[13,14,["G3759"]],[14,16,["G1565"]],[16,17,["G444"]],[17,18,["G1223"]],[18,19,["G3739"]],[19,20,["G3588"]],[20,21,["G5207"]],[21,23,["G444"]],[23,25,["G3860"]],[25,26,["G2570"]],[26,27,["G2258"]],[27,28,["(G846)"]],[28,30,["G1565"]],[30,31,["G444"]],[31,32,["G1487"]],[32,35,["G3756"]],[35,37,["G1080"]]]},{"k":24776,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G2068"]],[5,6,["G2424"]],[6,7,["G2983"]],[7,8,["G740"]],[8,10,["G2127"]],[10,12,["G2806"]],[12,14,["G2532"]],[14,15,["G1325"]],[15,17,["G846"]],[17,18,["G2532"]],[18,19,["G2036"]],[19,20,["G2983"]],[20,21,["G5315"]],[21,22,["G5124"]],[22,23,["G2076"]],[23,24,["G3450"]],[24,25,["G4983"]]]},{"k":24777,"v":[[0,1,["G2532"]],[1,3,["G2983"]],[3,4,["G3588"]],[4,5,["G4221"]],[5,11,["G2168"]],[11,13,["G1325"]],[13,16,["G846"]],[16,17,["G2532"]],[17,19,["G3956"]],[19,20,["G4095"]],[20,21,["G1537"]],[21,22,["G846"]]]},{"k":24778,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G5124"]],[6,7,["G2076"]],[7,8,["G3450"]],[8,9,["G129"]],[9,10,["(G3588)"]],[10,11,["G3588"]],[11,12,["G2537"]],[12,13,["G1242"]],[13,16,["G1632"]],[16,17,["G4012"]],[17,18,["G4183"]]]},{"k":24779,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,8,["G4095"]],[8,9,["G3364"]],[9,10,["G3765"]],[10,11,["G1537"]],[11,12,["G3588"]],[12,13,["G1081"]],[13,15,["G3588"]],[15,16,["G288"]],[16,17,["G2193"]],[17,18,["G1565"]],[18,19,["G2250"]],[19,20,["G3752"]],[20,22,["G4095"]],[22,23,["G846"]],[23,24,["G2537"]],[24,25,["G1722"]],[25,26,["G3588"]],[26,27,["G932"]],[27,29,["G2316"]]]},{"k":24780,"v":[[0,1,["G2532"]],[1,7,["G5214"]],[7,10,["G1831"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G3735"]],[13,15,["G1636"]]]},{"k":24781,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G3956"]],[6,10,["G4624"]],[10,12,["G1722"]],[12,13,["G1698","(G1722)"]],[13,14,["G5026"]],[14,15,["G3571"]],[15,16,["G3754"]],[16,19,["G1125"]],[19,22,["G3960"]],[22,23,["G3588"]],[23,24,["G4166"]],[24,25,["G2532"]],[25,26,["G3588"]],[26,27,["G4263"]],[27,30,["G1287"]]]},{"k":24782,"v":[[0,1,["G235"]],[1,2,["G3326"]],[2,5,["G3165"]],[5,6,["G1453"]],[6,10,["G4254"]],[10,11,["G5209"]],[11,12,["G1519"]],[12,13,["G1056"]]]},{"k":24783,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G5346"]],[3,5,["G846"]],[5,6,["G2532","G1487"]],[6,7,["G3956"]],[7,10,["G4624"]],[10,11,["G235"]],[11,13,["G3756"]],[13,14,["G1473"]]]},{"k":24784,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G281"]],[6,8,["G3004"]],[8,10,["G4671"]],[10,11,["G3754"]],[11,13,["G4594"]],[13,15,["G1722"]],[15,16,["G5026"]],[16,17,["G3571"]],[17,18,["G4250"]],[18,19,["(G2228)"]],[19,20,["G220"]],[20,21,["G5455"]],[21,22,["G1364"]],[22,25,["G533"]],[25,26,["G3165"]],[26,27,["G5151"]]]},{"k":24785,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3004"]],[3,5,["G3123"]],[5,6,["G1537","G4053"]],[6,7,["G1437"]],[7,8,["G3165"]],[8,9,["G1163"]],[9,11,["G4880"]],[11,12,["G4671"]],[12,20,["G3364","G533","G4571","(G1161)"]],[20,21,["G5615"]],[21,22,["G2532"]],[22,23,["G3004"]],[23,25,["G3956"]]]},{"k":24786,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G1519"]],[4,6,["G5564"]],[6,7,["G3739"]],[7,9,["G3686"]],[9,10,["G1068"]],[10,11,["G2532"]],[11,13,["G3004"]],[13,15,["G848"]],[15,16,["G3101"]],[16,17,["G2523"]],[17,19,["G5602"]],[19,20,["G2193"]],[20,23,["G4336"]]]},{"k":24787,"v":[[0,1,["G2532"]],[1,3,["G3880"]],[3,4,["G3326"]],[4,5,["G1438"]],[5,6,["G4074"]],[6,7,["G2532"]],[7,8,["G2385"]],[8,9,["G2532"]],[9,10,["G2491"]],[10,11,["G2532"]],[11,12,["G756"]],[12,16,["G1568"]],[16,17,["G2532"]],[17,21,["G85"]]]},{"k":24788,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G3450"]],[5,6,["G5590"]],[6,7,["G2076"]],[7,9,["G4036"]],[9,10,["G2193"]],[10,11,["G2288"]],[11,12,["G3306"]],[12,14,["G5602"]],[14,15,["G2532"]],[15,16,["G1127"]]]},{"k":24789,"v":[[0,1,["G2532"]],[1,4,["G4281"]],[4,6,["G3397"]],[6,8,["G4098"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G1093"]],[11,12,["G2532"]],[12,13,["G4336"]],[13,14,["G2443"]],[14,15,["G1487"]],[15,17,["G2076"]],[17,18,["G1415"]],[18,19,["G3588"]],[19,20,["G5610"]],[20,22,["G3928"]],[22,23,["G575"]],[23,24,["G846"]]]},{"k":24790,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,4,["G5"]],[4,5,["G3962"]],[5,7,["G3956"]],[7,9,["G1415"]],[9,11,["G4671"]],[11,13,["G3911"]],[13,14,["G5124"]],[14,15,["G4221"]],[15,16,["G575"]],[16,17,["G1700"]],[17,18,["G235"]],[18,19,["G3756"]],[19,20,["G5101"]],[20,21,["G1473"]],[21,22,["G2309"]],[22,23,["G235"]],[23,24,["G5101"]],[24,25,["G4771"]],[25,26,[]]]},{"k":24791,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G2532"]],[4,5,["G2147"]],[5,6,["G846"]],[6,7,["G2518"]],[7,8,["G2532"]],[8,9,["G3004"]],[9,11,["G4074"]],[11,12,["G4613"]],[12,13,["G2518"]],[13,15,["G2480"]],[15,16,["G3756"]],[16,18,["G1127"]],[18,19,["G3391"]],[19,20,["G5610"]]]},{"k":24792,"v":[[0,1,["G1127"]],[1,3,["G2532"]],[3,4,["G4336"]],[4,5,["G3363"]],[5,7,["G1525"]],[7,8,["G1519"]],[8,9,["G3986"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G3303"]],[12,14,["G4289"]],[14,15,["G1161"]],[15,16,["G3588"]],[16,17,["G4561"]],[17,19,["G772"]]]},{"k":24793,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,5,["G565"]],[5,7,["G4336"]],[7,9,["G2036"]],[9,10,["G3588"]],[10,11,["G846"]],[11,12,["G3056"]]]},{"k":24794,"v":[[0,1,["G2532"]],[1,4,["G5290"]],[4,6,["G2147"]],[6,7,["G846"]],[7,8,["G2518"]],[8,9,["G3825"]],[9,10,["G1063"]],[10,11,["G846"]],[11,12,["G3788"]],[12,13,["G2258"]],[13,14,["G916"]],[14,15,["G2532","G3756"]],[15,16,["G1492"]],[16,18,["G5101"]],[18,20,["G611"]],[20,21,["G846"]]]},{"k":24795,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G3588"]],[4,6,["G5154"]],[6,7,["G2532"]],[7,8,["G3004"]],[8,10,["G846"]],[10,12,["G2518"]],[12,13,["G3063"]],[13,14,["G2532"]],[14,17,["G373"]],[17,20,["G566"]],[20,21,["G3588"]],[21,22,["G5610"]],[22,24,["G2064"]],[24,25,["G2400"]],[25,26,["G3588"]],[26,27,["G5207"]],[27,29,["G444"]],[29,31,["G3860"]],[31,32,["G1519"]],[32,33,["G3588"]],[33,34,["G5495"]],[34,36,["G268"]]]},{"k":24796,"v":[[0,2,["G1453"]],[2,5,["G71"]],[5,6,["G2400"]],[6,9,["G3860"]],[9,10,["G3165"]],[10,13,["G1448"]]]},{"k":24797,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G846"]],[4,5,["G2089"]],[5,6,["G2980"]],[6,7,["G3854"]],[7,8,["G2455"]],[8,9,["G1520"]],[9,11,["G3588"]],[11,12,["G1427"]],[12,13,["G2532"]],[13,14,["G3326"]],[14,15,["G846"]],[15,17,["G4183"]],[17,18,["G3793"]],[18,19,["G3326"]],[19,20,["G3162"]],[20,21,["G2532"]],[21,22,["G3586"]],[22,23,["G3844"]],[23,24,["G3588"]],[24,26,["G749"]],[26,27,["G2532"]],[27,28,["G3588"]],[28,29,["G1122"]],[29,30,["G2532"]],[30,31,["G3588"]],[31,32,["G4245"]]]},{"k":24798,"v":[[0,1,["G1161"]],[1,4,["G3860"]],[4,5,["G846"]],[5,7,["G1325"]],[7,8,["G846"]],[8,10,["G4953"]],[10,11,["G3004"]],[11,12,["G3739","G302"]],[12,15,["G5368"]],[15,17,["G846"]],[17,18,["G2076"]],[18,20,["G2902"]],[20,21,["G846"]],[21,22,["G2532"]],[22,26,["G520","G806"]]]},{"k":24799,"v":[[0,1,["G2532"]],[1,7,["G2064"]],[7,9,["G4334"]],[9,10,["G2112"]],[10,12,["G846"]],[12,14,["G3004"]],[14,15,["G4461"]],[15,16,["G4461"]],[16,17,["G2532"]],[17,18,["G2705"]],[18,19,["G846"]]]},{"k":24800,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1911"]],[3,4,["G848"]],[4,5,["G5495"]],[5,6,["G1909"]],[6,7,["G846"]],[7,8,["G2532"]],[8,9,["G2902"]],[9,10,["G846"]]]},{"k":24801,"v":[[0,1,["G1161"]],[1,2,["G1520"]],[2,7,["G3936"]],[7,8,["G4685"]],[8,10,["G3162"]],[10,12,["G3817"]],[12,14,["G1401"]],[14,16,["G3588"]],[16,18,["G749"]],[18,19,["G2532"]],[19,21,["G851"]],[21,22,["G846"]],[22,23,["G5621"]]]},{"k":24802,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,11,["G1831"]],[11,12,["G5613"]],[12,13,["G1909"]],[13,15,["G3027"]],[15,16,["G3326"]],[16,17,["G3162"]],[17,18,["G2532"]],[18,20,["G3586"]],[20,22,["G4815"]],[22,23,["G3165"]]]},{"k":24803,"v":[[0,2,["G2252"]],[2,3,["G2596","G2250"]],[3,4,["G4314"]],[4,5,["G5209"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G2411"]],[8,9,["G1321"]],[9,10,["G2532"]],[10,12,["G2902"]],[12,13,["G3165"]],[13,14,["G3756"]],[14,15,["G235","(G2443)"]],[15,16,["G3588"]],[16,17,["G1124"]],[17,20,["G4137"]]]},{"k":24804,"v":[[0,1,["G2532"]],[1,3,["G3956"]],[3,4,["G863"]],[4,5,["G846"]],[5,7,["G5343"]]]},{"k":24805,"v":[[0,1,["G2532"]],[1,3,["G190"]],[3,4,["G846"]],[4,5,["G1520"]],[5,6,["G5100"]],[6,8,["G3495"]],[8,9,["G4016"]],[9,12,["G4616"]],[12,14,["G1909"]],[14,16,["G1131"]],[16,18,["G2532"]],[18,19,["G3588"]],[19,21,["G3495"]],[21,24,["G2902"]],[24,25,["G846"]]]},{"k":24806,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2641"]],[3,4,["G3588"]],[4,6,["G4616"]],[6,8,["G5343"]],[8,9,["G575"]],[9,10,["G846"]],[10,11,["G1131"]]]},{"k":24807,"v":[[0,1,["G2532"]],[1,5,["G520","G2424"]],[5,6,["G4314"]],[6,7,["G3588"]],[7,9,["G749"]],[9,10,["G2532"]],[10,12,["G846"]],[12,14,["G4905"]],[14,15,["G3956"]],[15,16,["G3588"]],[16,18,["G749"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G4245"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G1122"]]]},{"k":24808,"v":[[0,1,["G2532"]],[1,2,["G4074"]],[2,3,["G190"]],[3,4,["G846"]],[4,6,["G575","G3113"]],[6,7,["G2193"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G833"]],[10,12,["G3588"]],[12,14,["G749"]],[14,15,["G2532"]],[15,17,["G2258","G4775"]],[17,18,["G3326"]],[18,19,["G3588"]],[19,20,["G5257"]],[20,21,["G2532"]],[21,22,["G2328"]],[22,24,["G4314"]],[24,25,["G3588"]],[25,26,["G5457"]]]},{"k":24809,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G2532"]],[5,6,["G3650"]],[6,7,["G3588"]],[7,8,["G4892"]],[8,9,["G2212"]],[9,11,["G3141"]],[11,12,["G2596"]],[12,13,["G2424"]],[13,18,["G2289","G846"]],[18,19,["G2532"]],[19,20,["G2147"]],[20,21,["G3756"]]]},{"k":24810,"v":[[0,1,["G1063"]],[1,2,["G4183"]],[2,5,["G5576"]],[5,6,["G2596"]],[6,7,["G846"]],[7,8,["G2532"]],[8,9,["G846"]],[9,10,["G3141"]],[10,13,["G2258","G3756","G2470"]]]},{"k":24811,"v":[[0,1,["G2532"]],[1,3,["G450"]],[3,4,["G5100"]],[4,8,["G5576"]],[8,9,["G2596"]],[9,10,["G846"]],[10,11,["G3004"]]]},{"k":24812,"v":[[0,1,["G2249"]],[1,2,["G191"]],[2,3,["G846"]],[3,4,["G3004"]],[4,5,["G1473"]],[5,7,["G2647"]],[7,8,["G5126"]],[8,9,["G3485"]],[9,14,["G5499"]],[14,15,["G2532"]],[15,16,["G1223"]],[16,17,["G5140"]],[17,18,["G2250"]],[18,21,["G3618"]],[21,22,["G243"]],[22,25,["G886"]]]},{"k":24813,"v":[[0,1,["G2532"]],[1,2,["G3761"]],[2,3,["G3779"]],[3,5,["G846"]],[5,6,["G3141"]],[6,8,["G2258","G2470"]]]},{"k":24814,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,4,["G749"]],[4,6,["G450"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G3319"]],[9,11,["G1905"]],[11,12,["G2424"]],[12,13,["G3004","(G3756)"]],[13,14,["G611"]],[14,16,["G3762"]],[16,17,["G5101"]],[17,21,["G3778"]],[21,23,["G2649"]],[23,24,["G4675"]]]},{"k":24815,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,5,["G4623"]],[5,6,["G2532"]],[6,7,["G611"]],[7,8,["G3762"]],[8,9,["G3825"]],[9,10,["G3588"]],[10,12,["G749"]],[12,13,["G1905"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G3004"]],[16,18,["G846"]],[18,19,["G1488"]],[19,20,["G4771"]],[20,21,["G3588"]],[21,22,["G5547"]],[22,23,["G3588"]],[23,24,["G5207"]],[24,26,["G3588"]],[26,27,["G2128"]]]},{"k":24816,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G1473"]],[4,5,["G1510"]],[5,6,["G2532"]],[6,9,["G3700"]],[9,10,["G3588"]],[10,11,["G5207"]],[11,13,["G444"]],[13,14,["G2521"]],[14,15,["G1537"]],[15,18,["G1188"]],[18,20,["G1411"]],[20,21,["G2532"]],[21,22,["G2064"]],[22,23,["G3326"]],[23,24,["G3588"]],[24,25,["G3507"]],[25,27,["G3772"]]]},{"k":24817,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G1284"]],[5,6,["G848"]],[6,7,["G5509"]],[7,9,["G3004"]],[9,10,["G5101"]],[10,11,["G2192","G5532"]],[11,14,["G2089"]],[14,15,["G3144"]]]},{"k":24818,"v":[[0,3,["G191"]],[3,4,["G3588"]],[4,5,["G988"]],[5,6,["G5101"]],[6,7,["G5316"]],[7,8,["G5213"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G3956"]],[11,12,["G2632"]],[12,13,["G846"]],[13,15,["G1511"]],[15,16,["G1777"]],[16,18,["G2288"]]]},{"k":24819,"v":[[0,1,["G2532"]],[1,2,["G5100"]],[2,3,["G756"]],[3,6,["G1716"]],[6,7,["G846"]],[7,8,["G2532"]],[8,10,["G4028"]],[10,11,["G846"]],[11,12,["G4383"]],[12,13,["G2532"]],[13,15,["G2852"]],[15,16,["G846"]],[16,17,["G2532"]],[17,19,["G3004"]],[19,21,["G846"]],[21,22,["G4395"]],[22,23,["G2532"]],[23,24,["G3588"]],[24,25,["G5257"]],[25,27,["G906"]],[27,28,["G846"]],[28,34,["G4475"]]]},{"k":24820,"v":[[0,1,["G2532"]],[1,3,["G4074"]],[3,4,["G5607"]],[4,5,["G2736"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G833"]],[8,10,["G2064"]],[10,11,["G3391"]],[11,13,["G3588"]],[13,14,["G3814"]],[14,16,["G3588"]],[16,18,["G749"]]]},{"k":24821,"v":[[0,1,["G2532"]],[1,4,["G1492"]],[4,5,["G4074"]],[5,6,["G2328"]],[6,10,["G1689"]],[10,11,["G846"]],[11,13,["G3004"]],[13,14,["G2532"]],[14,15,["G4771"]],[15,17,["G2258"]],[17,18,["G3326"]],[18,19,["G2424"]],[19,21,["G3479"]]]},{"k":24822,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G720"]],[3,4,["G3004"]],[4,6,["G1492"]],[6,7,["G3756"]],[7,8,["G3761"]],[8,9,["G1987"]],[9,11,["G5101"]],[11,12,["G4771"]],[12,13,["G3004"]],[13,14,["G2532"]],[14,16,["G1831"]],[16,17,["G1854"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G4259"]],[20,21,["G2532"]],[21,23,["G220"]],[23,24,["G5455"]]]},{"k":24823,"v":[[0,1,["G2532"]],[1,3,["G3814"]],[3,4,["G1492"]],[4,5,["G846"]],[5,6,["G3825"]],[6,8,["G756"]],[8,10,["G3004"]],[10,15,["G3936"]],[15,16,["G3778"]],[16,17,["G2076"]],[17,19,["G1537"]],[19,20,["G846"]]]},{"k":24824,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G720"]],[3,5,["G3825"]],[5,6,["G2532"]],[6,8,["G3397"]],[8,9,["G3326"]],[9,13,["G3936"]],[13,14,["G3004"]],[14,15,["G3825"]],[15,17,["G4074"]],[17,18,["G230"]],[18,20,["G1488"]],[20,22,["G1537"]],[22,23,["G846"]],[23,24,["G1063"]],[24,25,["(G2532)"]],[25,26,["G1488"]],[26,28,["G1057"]],[28,29,["G2532"]],[29,30,["G4675"]],[30,31,["G2981"]],[31,32,["G3662"]],[32,33,[]]]},{"k":24825,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G756"]],[3,5,["G332"]],[5,6,["G2532"]],[6,8,["G3660"]],[8,11,["G1492"]],[11,12,["G3756"]],[12,13,["G5126"]],[13,14,["G444"]],[14,16,["G3739"]],[16,18,["G3004"]]]},{"k":24826,"v":[[0,1,["G2532"]],[1,2,["(G1537)"]],[2,4,["G1208"]],[4,6,["G220"]],[6,7,["G5455"]],[7,8,["G2532"]],[8,9,["G4074"]],[9,12,["G363"]],[12,13,["G3588"]],[13,14,["G4487"]],[14,15,["G3739"]],[15,16,["G2424"]],[16,17,["G2036"]],[17,19,["G846"]],[19,20,["G4250"]],[20,22,["G220"]],[22,23,["G5455"]],[23,24,["G1364"]],[24,27,["G533"]],[27,28,["G3165"]],[28,29,["G5151"]],[29,30,["G2532"]],[30,34,["G1911"]],[34,36,["G2799"]]]},{"k":24827,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G1909"]],[3,4,["G3588"]],[4,5,["G4404"]],[5,6,["G3588"]],[6,8,["G749"]],[8,9,["G4160"]],[9,11,["G4824"]],[11,12,["G3326"]],[12,13,["G3588"]],[13,14,["G4245"]],[14,15,["G2532"]],[15,16,["G1122"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G3650"]],[19,20,["G4892"]],[20,22,["G1210"]],[22,23,["G2424"]],[23,27,["G667"]],[27,28,["G2532"]],[28,29,["G3860"]],[29,32,["G4091"]]]},{"k":24828,"v":[[0,1,["G2532"]],[1,2,["G4091"]],[2,3,["G1905"]],[3,4,["G846"]],[4,5,["G1488"]],[5,6,["G4771"]],[6,7,["G3588"]],[7,8,["G935"]],[8,10,["G3588"]],[10,11,["G2453"]],[11,12,["G1161"]],[12,13,["G3588"]],[13,14,["G611"]],[14,15,["G2036"]],[15,17,["G846"]],[17,18,["G4771"]],[18,19,["G3004"]],[19,20,[]]]},{"k":24829,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G2723"]],[5,6,["G846"]],[6,9,["G4183"]],[9,10,["G1161"]],[10,11,["G3588"]],[11,12,["G611"]],[12,13,["G3762"]]]},{"k":24830,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,3,["G1905"]],[3,4,["G846"]],[4,5,["G3825"]],[5,6,["G3004"]],[6,7,["G611"]],[7,8,["(G3756)"]],[8,9,["G3762"]],[9,10,["G2396"]],[10,13,["G4214"]],[13,16,["G2649"]],[16,17,["G4675"]]]},{"k":24831,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G3765"]],[3,4,["G611"]],[4,5,["G3762"]],[5,7,["G5620"]],[7,8,["G4091"]],[8,9,["G2296"]]]},{"k":24832,"v":[[0,1,["G1161"]],[1,2,["G2596"]],[2,4,["G1859"]],[4,6,["G630"]],[6,8,["G846"]],[8,9,["G1520"]],[9,10,["G1198"]],[10,11,["G3746"]],[11,13,["G154"]]]},{"k":24833,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,5,["G3004"]],[5,6,["G912"]],[6,9,["G1210"]],[9,10,["G3326"]],[10,17,["G4955"]],[17,18,["G3748"]],[18,20,["G4160"]],[20,21,["G5408"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G4714"]]]},{"k":24834,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3793"]],[3,5,["G310"]],[5,6,["G756"]],[6,8,["G154"]],[8,12,["G2531"]],[12,15,["G104"]],[15,16,["G4160"]],[16,18,["G846"]]]},{"k":24835,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,3,["G611"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G2309"]],[6,10,["G630"]],[10,12,["G5213"]],[12,13,["G3588"]],[13,14,["G935"]],[14,16,["G3588"]],[16,17,["G2453"]]]},{"k":24836,"v":[[0,1,["G1063"]],[1,3,["G1097"]],[3,4,["G3754"]],[4,5,["G3588"]],[5,7,["G749"]],[7,9,["G3860"]],[9,10,["G846"]],[10,11,["G1223"]],[11,12,["G5355"]]]},{"k":24837,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G383"]],[5,6,["G3588"]],[6,7,["G3793"]],[7,8,["G2443"]],[8,11,["G3123"]],[11,12,["G630"]],[12,13,["G912"]],[13,15,["G846"]]]},{"k":24838,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,3,["G611"]],[3,5,["G2036"]],[5,6,["G3825"]],[6,8,["G846"]],[8,9,["G5101"]],[9,10,["G2309"]],[10,12,["G3767"]],[12,16,["G4160"]],[16,19,["G3739"]],[19,21,["G3004"]],[21,22,["G3588"]],[22,23,["G935"]],[23,25,["G3588"]],[25,26,["G2453"]]]},{"k":24839,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G2896"]],[4,5,["G3825"]],[5,6,["G4717"]],[6,7,["G846"]]]},{"k":24840,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G1063"]],[6,7,["G5101"]],[7,8,["G2556"]],[8,11,["G4160"]],[11,12,["G1161"]],[12,13,["G3588"]],[13,15,["G2896"]],[15,18,["G4056"]],[18,19,["G4717"]],[19,20,["G846"]]]},{"k":24841,"v":[[0,1,["G1161"]],[1,3,["G4091"]],[3,4,["G1014"]],[4,6,["G4160","G2425"]],[6,7,["G3588"]],[7,8,["G3793"]],[8,9,["G630"]],[9,10,["G912"]],[10,12,["G846"]],[12,13,["G2532"]],[13,14,["G3860"]],[14,15,["G2424"]],[15,19,["G5417"]],[19,21,["G2443"]],[21,23,["G4717"]]]},{"k":24842,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4757"]],[3,6,["G520","G846"]],[6,7,["G2080"]],[7,8,["G3588"]],[8,9,["G833"]],[9,10,["G3603"]],[10,11,["G4232"]],[11,12,["G2532"]],[12,15,["G4779"]],[15,16,["G3588"]],[16,17,["G3650"]],[17,18,["G4686"]]]},{"k":24843,"v":[[0,1,["G2532"]],[1,5,["G1746","G846"]],[5,6,["G4209"]],[6,7,["G2532"]],[7,8,["G4120"]],[8,10,["G4735"]],[10,12,["G174"]],[12,16,["G4060"]],[16,17,["G846"]],[17,18,[]]]},{"k":24844,"v":[[0,1,["G2532"]],[1,2,["G756"]],[2,4,["G782"]],[4,5,["G846"]],[5,6,["G5463"]],[6,7,["G935"]],[7,9,["G3588"]],[9,10,["G2453"]]]},{"k":24845,"v":[[0,1,["G2532"]],[1,3,["G5180"]],[3,4,["G846"]],[4,6,["G3588"]],[6,7,["G2776"]],[7,10,["G2563"]],[10,11,["G2532"]],[11,14,["G1716"]],[14,15,["G846"]],[15,16,["G2532"]],[16,17,["G5087"]],[17,19,["G1119"]],[19,20,["G4352"]],[20,21,["G846"]]]},{"k":24846,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G1702"]],[5,6,["G846"]],[6,9,["G1562"]],[9,10,["G3588"]],[10,11,["G4209"]],[11,13,["G846"]],[13,14,["G2532"]],[14,19,["G1746","G2398","G2440"]],[19,20,["G846"]],[20,21,["G2532"]],[21,24,["G1806","G846"]],[24,25,["G2443"]],[25,26,["G4717"]],[26,27,["G846"]]]},{"k":24847,"v":[[0,1,["G2532"]],[1,3,["G29"]],[3,4,["G5100"]],[4,5,["G4613"]],[5,7,["G2956"]],[7,10,["G3855"]],[10,11,["G2064"]],[11,13,["G575"]],[13,15,["G68"]],[15,16,["G3588"]],[16,17,["G3962"]],[17,19,["G223"]],[19,20,["G2532"]],[20,21,["G4504"]],[21,22,["G2443"]],[22,23,["G142"]],[23,24,["G846"]],[24,25,["G4716"]]]},{"k":24848,"v":[[0,1,["G2532"]],[1,3,["G5342"]],[3,4,["G846"]],[4,5,["G1909"]],[5,7,["G5117"]],[7,8,["G1115"]],[8,10,["G3603"]],[10,12,["G3177"]],[12,14,["G5117"]],[14,17,["G2898"]]]},{"k":24849,"v":[[0,1,["G2532"]],[1,3,["G1325"]],[3,4,["G846"]],[4,6,["G4095"]],[6,7,["G3631"]],[7,10,["G4669"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,13,["G2983"]],[13,15,["G3756"]]]},{"k":24850,"v":[[0,1,["G2532"]],[1,5,["G4717"]],[5,6,["G846"]],[6,8,["G1266"]],[8,9,["G846"]],[9,10,["G2440"]],[10,11,["G906"]],[11,12,["G2819"]],[12,13,["G1909"]],[13,14,["G846"]],[14,17,["G5101","G5101"]],[17,19,["G142"]]]},{"k":24851,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,5,["G5154"]],[5,6,["G5610"]],[6,7,["G2532"]],[7,9,["G4717"]],[9,10,["G846"]]]},{"k":24852,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1923"]],[3,5,["G846"]],[5,6,["G156"]],[6,7,["G2258"]],[7,9,["G1924"]],[9,10,["G3588"]],[10,11,["G935"]],[11,13,["G3588"]],[13,14,["G2453"]]]},{"k":24853,"v":[[0,1,["G2532"]],[1,2,["G4862"]],[2,3,["G846"]],[3,5,["G4717"]],[5,6,["G1417"]],[6,7,["G3027"]],[7,9,["G1520"]],[9,10,["G1537"]],[10,13,["G1188"]],[13,14,["G2532"]],[14,16,["G1520"]],[16,17,["G1537"]],[17,18,["G846"]],[18,19,["G2176"]]]},{"k":24854,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1124"]],[3,5,["G4137"]],[5,7,["G3004"]],[7,8,["G2532"]],[8,11,["G3049"]],[11,12,["G3326"]],[12,14,["G459"]]]},{"k":24855,"v":[[0,1,["G2532"]],[1,5,["G3899"]],[5,7,["G987"]],[7,8,["G846"]],[8,9,["G2795"]],[9,10,["G848"]],[10,11,["G2776"]],[11,12,["G2532"]],[12,13,["G3004"]],[13,14,["G3758"]],[14,17,["G2647"]],[17,18,["G3588"]],[18,19,["G3485"]],[19,20,["G2532"]],[20,21,["G3618"]],[21,23,["G1722"]],[23,24,["G5140"]],[24,25,["G2250"]]]},{"k":24856,"v":[[0,1,["G4982"]],[1,2,["G4572"]],[2,3,["G2532"]],[3,5,["G2597"]],[5,6,["G575"]],[6,7,["G3588"]],[7,8,["G4716"]]]},{"k":24857,"v":[[0,0,["(G1161)"]],[0,1,["G3668"]],[1,2,["G2532"]],[2,3,["G3588"]],[3,5,["G749"]],[5,6,["G1702"]],[6,7,["G3004"]],[7,8,["G4314"]],[8,9,["G240"]],[9,10,["G3326"]],[10,11,["G3588"]],[11,12,["G1122"]],[12,14,["G4982"]],[14,15,["G243"]],[15,16,["G1438"]],[16,18,["G1410","G3756"]],[18,19,["G4982"]]]},{"k":24858,"v":[[0,2,["G5547"]],[2,3,["G3588"]],[3,4,["G935"]],[4,6,["G2474"]],[6,7,["G2597"]],[7,8,["G3568"]],[8,9,["G575"]],[9,10,["G3588"]],[10,11,["G4716"]],[11,12,["G2443"]],[12,15,["G1492"]],[15,16,["G2532"]],[16,17,["G4100"]],[17,18,["G2532"]],[18,23,["G4957"]],[23,24,["G846"]],[24,25,["G3679"]],[25,26,["G846"]]]},{"k":24859,"v":[[0,1,["G1161"]],[1,4,["G1623"]],[4,5,["G5610"]],[5,7,["G1096"]],[7,9,["G1096"]],[9,10,["G4655"]],[10,11,["G1909"]],[11,12,["G3588"]],[12,13,["G3650"]],[13,14,["G1093"]],[14,15,["G2193"]],[15,17,["G1766"]],[17,18,["G5610"]]]},{"k":24860,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G1766"]],[4,5,["G5610"]],[5,6,["G2424"]],[6,7,["G994"]],[7,10,["G3173"]],[10,11,["G5456"]],[11,12,["G3004"]],[12,13,["G1682"]],[13,14,["G1682"]],[14,15,["G2982"]],[15,16,["G4518"]],[16,18,["G3603"]],[18,20,["G3177"]],[20,21,["G3450"]],[21,22,["G2316"]],[22,23,["G3450"]],[23,24,["G2316"]],[24,25,["G5101"]],[25,28,["G1459"]],[28,29,["G3165"]]]},{"k":24861,"v":[[0,1,["G2532"]],[1,2,["G5100"]],[2,7,["G3936"]],[7,10,["G191"]],[10,12,["G3004"]],[12,13,["G2400"]],[13,15,["G5455"]],[15,16,["G2243"]]]},{"k":24862,"v":[[0,1,["G1161"]],[1,2,["G1520"]],[2,3,["G5143"]],[3,4,["G2532"]],[4,8,["G1072","G4699"]],[8,10,["G3690"]],[10,11,["G5037"]],[11,14,["G4060"]],[14,16,["G2563"]],[16,17,["G2532"]],[17,21,["G4222","G846"]],[21,22,["G3004"]],[22,24,["G863"]],[24,27,["G1492"]],[27,28,["G1487"]],[28,29,["G2243"]],[29,31,["G2064"]],[31,35,["G2507","G846"]]]},{"k":24863,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G863"]],[3,6,["G3173"]],[6,7,["G5456"]],[7,12,["G1606"]]]},{"k":24864,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2665"]],[3,5,["G3588"]],[5,6,["G3485"]],[6,8,["G4977"]],[8,9,["G1519"]],[9,10,["G1417"]],[10,11,["G575"]],[11,13,["G509"]],[13,14,["G2193"]],[14,16,["G2736"]]]},{"k":24865,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G2760"]],[4,6,["G3936"]],[6,8,["G1537","G1727"]],[8,9,["G846"]],[9,10,["G1492"]],[10,11,["G3754"]],[11,13,["G3779"]],[13,15,["G2896"]],[15,20,["G1606"]],[20,22,["G2036"]],[22,23,["G230"]],[23,24,["G3778"]],[24,25,["G444"]],[25,26,["G2258"]],[26,28,["G5207"]],[28,30,["G2316"]]]},{"k":24866,"v":[[0,1,["(G1161)"]],[1,2,["G2258"]],[2,3,["G2532"]],[3,4,["G1135"]],[4,6,["G2334"]],[6,8,["G575","G3113"]],[8,9,["G1722"]],[9,10,["G3739"]],[10,11,["G2258"]],[11,12,["G3137"]],[12,13,["G3094"]],[13,14,["G2532"]],[14,15,["G3137"]],[15,16,["G3588"]],[16,17,["G3384"]],[17,19,["G2385"]],[19,20,["G3588"]],[20,21,["G3398"]],[21,22,["G2532"]],[22,24,["G2500"]],[24,25,["G2532"]],[25,26,["G4539"]]]},{"k":24867,"v":[[0,1,["G3739"]],[1,2,["G2532"]],[2,3,["G3753"]],[3,5,["G2258"]],[5,6,["G1722"]],[6,7,["G1056"]],[7,8,["G190"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G1247"]],[11,13,["G846"]],[13,14,["G2532"]],[14,15,["G4183"]],[15,17,["G243"]],[17,21,["G4872"]],[21,22,["G846"]],[22,23,["G1519"]],[23,24,["G2414"]]]},{"k":24868,"v":[[0,1,["G2532"]],[1,2,["G2235"]],[2,5,["G3798"]],[5,7,["G1096"]],[7,8,["G1893"]],[8,10,["G2258"]],[10,12,["G3904"]],[12,14,["G3603"]],[14,19,["G4315"]]]},{"k":24869,"v":[[0,1,["G2501"]],[1,2,["G575"]],[2,3,["G707"]],[3,5,["G2158"]],[5,6,["G1010"]],[6,7,["G3739"]],[7,8,["G2532"]],[8,10,["G2258","G4327"]],[10,11,["G3588"]],[11,12,["G932"]],[12,14,["G2316"]],[14,15,["G2064"]],[15,18,["G1525"]],[18,19,["G5111"]],[19,20,["G4314"]],[20,21,["G4091"]],[21,22,["G2532"]],[22,23,["G154"]],[23,24,["G3588"]],[24,25,["G4983"]],[25,27,["G2424"]]]},{"k":24870,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,3,["G2296"]],[3,4,["G1487"]],[4,8,["G2348","G2235"]],[8,9,["G2532"]],[9,10,["G4341"]],[10,13,["G3588"]],[13,14,["G2760"]],[14,16,["G1905"]],[16,17,["G846"]],[17,18,["G1487"]],[18,24,["G599","G3819"]]]},{"k":24871,"v":[[0,1,["G2532"]],[1,4,["G1097"]],[4,6,["G575"]],[6,7,["G3588"]],[7,8,["G2760"]],[8,10,["G1433"]],[10,11,["G3588"]],[11,12,["G4983"]],[12,14,["G2501"]]]},{"k":24872,"v":[[0,1,["G2532"]],[1,3,["G59"]],[3,5,["G4616"]],[5,6,["G2532"]],[6,9,["G2507","G846"]],[9,13,["G1750"]],[13,14,["G3588"]],[14,15,["G4616"]],[15,16,["G2532"]],[16,17,["G2698"]],[17,18,["G846"]],[18,19,["G1722"]],[19,21,["G3419"]],[21,22,["G3739"]],[22,23,["G2258"]],[23,24,["G2998"]],[24,26,["G1537"]],[26,28,["G4073"]],[28,29,["G2532"]],[29,30,["G4351"]],[30,32,["G3037"]],[32,33,["G1909"]],[33,34,["G3588"]],[34,35,["G2374"]],[35,37,["G3588"]],[37,38,["G3419"]]]},{"k":24873,"v":[[0,1,["G1161"]],[1,2,["G3137"]],[2,3,["G3094"]],[3,4,["G2532"]],[4,5,["G3137"]],[5,9,["G2500"]],[9,10,["G2334"]],[10,11,["G4226"]],[11,14,["G5087"]]]},{"k":24874,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G4521"]],[4,6,["G1230"]],[6,7,["G3137"]],[7,8,["G3094"]],[8,9,["G2532"]],[9,10,["G3137"]],[10,11,["G3588"]],[11,14,["G2385"]],[14,15,["G2532"]],[15,16,["G4539"]],[16,18,["G59"]],[18,20,["G759"]],[20,21,["G2443"]],[21,24,["G2064"]],[24,26,["G218"]],[26,27,["G846"]]]},{"k":24875,"v":[[0,1,["G2532"]],[1,2,["G3029"]],[2,6,["G4404"]],[6,7,["G3588"]],[7,8,["G3391"]],[8,11,["G3588"]],[11,12,["G4521"]],[12,14,["G2064"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,17,["G3419"]],[17,20,["G393"]],[20,22,["G3588"]],[22,23,["G2246"]]]},{"k":24876,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,4,["G4314"]],[4,5,["G1438"]],[5,6,["G5101"]],[6,10,["G617","G2254"]],[10,11,["G3588"]],[11,12,["G3037"]],[12,13,["G1537"]],[13,14,["G3588"]],[14,15,["G2374"]],[15,17,["G3588"]],[17,18,["G3419"]]]},{"k":24877,"v":[[0,1,["G2532"]],[1,4,["G308"]],[4,6,["G2334"]],[6,7,["G3754"]],[7,8,["G3588"]],[8,9,["G3037"]],[9,12,["G617"]],[12,13,["G1063"]],[13,15,["G2258"]],[15,16,["G4970"]],[16,17,["G3173"]]]},{"k":24878,"v":[[0,1,["G2532"]],[1,2,["G1525"]],[2,3,["G1519"]],[3,4,["G3588"]],[4,5,["G3419"]],[5,7,["G1492"]],[7,10,["G3495"]],[10,11,["G2521"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,15,["G1188"]],[15,17,["G4016"]],[17,21,["G4749","G3022"]],[21,22,["G2532"]],[22,25,["G1568"]]]},{"k":24879,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3004"]],[3,5,["G846"]],[5,7,["G3361"]],[7,8,["G1568"]],[8,10,["G2212"]],[10,11,["G2424"]],[11,13,["G3479"]],[13,16,["G4717"]],[16,19,["G1453"]],[19,21,["G2076"]],[21,22,["G3756"]],[22,23,["G5602"]],[23,24,["G2396"]],[24,25,["G3588"]],[25,26,["G5117"]],[26,27,["G3699"]],[27,29,["G5087"]],[29,30,["G846"]]]},{"k":24880,"v":[[0,1,["G235"]],[1,4,["G5217"]],[4,5,["G2036"]],[5,6,["G846"]],[6,7,["G3101"]],[7,8,["G2532"]],[8,9,["G4074"]],[9,10,["G3754"]],[10,13,["G4254"]],[13,14,["G5209"]],[14,15,["G1519"]],[15,16,["G1056"]],[16,17,["G1563"]],[17,20,["G3700"]],[20,21,["G846"]],[21,22,["G2531"]],[22,24,["G2036"]],[24,26,["G5213"]]]},{"k":24881,"v":[[0,1,["G2532"]],[1,4,["G1831"]],[4,5,["G5035"]],[5,7,["G5343"]],[7,8,["G575"]],[8,9,["G3588"]],[9,10,["G3419"]],[10,11,["G1161"]],[11,12,["G846"]],[12,13,["G5156","G2192"]],[13,14,["G2532"]],[14,16,["G1611"]],[16,17,["G2532"]],[17,18,["G2036"]],[18,21,["G3762"]],[21,23,["G3762"]],[23,25,["G1063"]],[25,28,["G5399"]]]},{"k":24882,"v":[[0,1,["G1161"]],[1,5,["G450"]],[5,6,["G4404"]],[6,8,["G4413"]],[8,12,["G4521"]],[12,14,["G5316"]],[14,15,["G4412"]],[15,17,["G3137"]],[17,18,["G3094"]],[18,20,["G575"]],[20,21,["G3739"]],[21,24,["G1544"]],[24,25,["G2033"]],[25,26,["G1140"]]]},{"k":24883,"v":[[0,2,["G1565"]],[2,3,["G4198"]],[3,5,["G518"]],[5,9,["G1096"]],[9,10,["G3326"]],[10,11,["G846"]],[11,14,["G3996"]],[14,15,["G2532"]],[15,16,["G2799"]]]},{"k":24884,"v":[[0,2,["G2548"]],[2,6,["G191"]],[6,7,["G3754"]],[7,10,["G2198"]],[10,11,["G2532"]],[11,14,["G2300"]],[14,15,["G5259"]],[15,16,["G846"]],[16,18,["G569"]]]},{"k":24885,"v":[[0,1,["G3326"]],[1,2,["G5023"]],[2,4,["G5319"]],[4,5,["G1722"]],[5,6,["G2087"]],[6,7,["G3444"]],[7,9,["G1417"]],[9,10,["G1537"]],[10,11,["G846"]],[11,14,["G4043"]],[14,16,["G4198"]],[16,17,["G1519"]],[17,19,["G68"]]]},{"k":24886,"v":[[0,2,["G2548"]],[2,3,["G565"]],[3,5,["G518"]],[5,8,["G3588"]],[8,9,["G3062"]],[9,10,["G3761"]],[10,11,["G4100"]],[11,13,["G1565"]]]},{"k":24887,"v":[[0,1,["G5305"]],[1,3,["G5319"]],[3,5,["G3588"]],[5,6,["G1733"]],[6,8,["G846"]],[8,11,["G345"]],[11,12,["G2532"]],[12,13,["G3679"]],[13,16,["G846"]],[16,17,["G570"]],[17,18,["G2532"]],[18,21,["G4641"]],[21,22,["G3754"]],[22,24,["G4100"]],[24,25,["G3756"]],[25,29,["G2300"]],[29,30,["G846"]],[30,34,["G1453"]]]},{"k":24888,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G4198"]],[6,8,["G1519"]],[8,9,["G537"]],[9,10,["G3588"]],[10,11,["G2889"]],[11,13,["G2784"]],[13,14,["G3588"]],[14,15,["G2098"]],[15,17,["G3956"]],[17,18,["G2937"]]]},{"k":24889,"v":[[0,3,["G4100"]],[3,4,["G2532"]],[4,6,["G907"]],[6,9,["G4982"]],[9,10,["G1161"]],[10,14,["G569"]],[14,17,["G2632"]]]},{"k":24890,"v":[[0,1,["G1161"]],[1,2,["G5023"]],[2,3,["G4592"]],[3,5,["G3877"]],[5,6,["G3588"]],[6,8,["G4100"]],[8,9,["G1722"]],[9,10,["G3450"]],[10,11,["G3686"]],[11,15,["G1544"]],[15,16,["G1140"]],[16,19,["G2980"]],[19,21,["G2537"]],[21,22,["G1100"]]]},{"k":24891,"v":[[0,4,["G142"]],[4,5,["G3789"]],[5,7,["G2579"]],[7,9,["G4095"]],[9,10,["G5100"]],[10,12,["G2286"]],[12,15,["G3364"]],[15,16,["G984"]],[16,17,["G846"]],[17,20,["G2007"]],[20,21,["G5495"]],[21,22,["G1909"]],[22,24,["G732"]],[24,25,["G2532"]],[25,28,["G2192","G2573"]]]},{"k":24892,"v":[[0,1,["G3767"]],[1,2,["G3303"]],[2,3,["G3326"]],[3,4,["G3588"]],[4,5,["G2962"]],[5,7,["G2980"]],[7,9,["G846"]],[9,13,["G353"]],[13,14,["G1519"]],[14,15,["G3772"]],[15,16,["G2532"]],[16,17,["G2523"]],[17,18,["G1537"]],[18,21,["G1188"]],[21,23,["G2316"]]]},{"k":24893,"v":[[0,1,["G1161"]],[1,2,["G1565"]],[2,4,["G1831"]],[4,6,["G2784"]],[6,8,["G3837"]],[8,9,["G3588"]],[9,10,["G2962"]],[10,12,["G4903"]],[12,14,["G2532"]],[14,15,["G950"]],[15,16,["G3588"]],[16,17,["G3056"]],[17,18,["G1223"]],[18,19,["G4592"]],[19,20,["G1872"]],[20,21,["G281"]]]},{"k":24894,"v":[[0,1,["G1895"]],[1,3,["G4183"]],[3,7,["G2021"]],[7,12,["G392"]],[12,14,["G1335"]],[14,15,["G4012"]],[15,17,["G4229"]],[17,22,["G4135"]],[22,23,["G1722"]],[23,24,["G2254"]]]},{"k":24895,"v":[[0,2,["G2531"]],[2,4,["G3860"]],[4,7,["G2254"]],[7,12,["G1096","G575","G746"]],[12,13,["G845"]],[13,14,["G2532"]],[14,15,["G5257"]],[15,17,["G3588"]],[17,18,["G3056"]]]},{"k":24896,"v":[[0,3,["G1380"]],[3,6,["G2504"]],[6,9,["G199"]],[9,10,["G3877"]],[10,13,["G3956"]],[13,17,["G509"]],[17,19,["G1125"]],[19,21,["G4671"]],[21,23,["G2517"]],[23,25,["G2903"]],[25,26,["G2321"]]]},{"k":24897,"v":[[0,1,["G2443"]],[1,4,["G1921"]],[4,5,["G3588"]],[5,6,["G803"]],[6,9,["G3056"]],[9,10,["G4012","G3739"]],[10,14,["G2727"]]]},{"k":24898,"v":[[0,2,["G1096"]],[2,3,["G1722"]],[3,4,["G3588"]],[4,5,["G2250"]],[5,7,["G2264"]],[7,8,["G3588"]],[8,9,["G935"]],[9,11,["G2449"]],[11,13,["G5100"]],[13,14,["G2409"]],[14,15,["G3686"]],[15,16,["G2197"]],[16,17,["G1537"]],[17,19,["G2183"]],[19,21,["G7"]],[21,22,["G2532"]],[22,23,["G846"]],[23,24,["G1135"]],[24,26,["G1537"]],[26,27,["G3588"]],[27,28,["G2364"]],[28,30,["G2"]],[30,31,["G2532"]],[31,32,["G846"]],[32,33,["G3686"]],[33,35,["G1665"]]]},{"k":24899,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G297"]],[4,5,["G1342"]],[5,6,["G1799"]],[6,7,["G2316"]],[7,8,["G4198"]],[8,9,["G1722"]],[9,10,["G3956"]],[10,11,["G3588"]],[11,12,["G1785"]],[12,13,["G2532"]],[13,14,["G1345"]],[14,16,["G3588"]],[16,17,["G2962"]],[17,18,["G273"]]]},{"k":24900,"v":[[0,1,["G2532"]],[1,3,["G2258","G846"]],[3,4,["G3756"]],[4,5,["G5043"]],[5,7,["G2530"]],[7,8,["G1665"]],[8,9,["G2258"]],[9,10,["G4723"]],[10,11,["G2532"]],[11,13,["G297"]],[13,14,["G2258"]],[14,17,["G4260"]],[17,18,["G1722"]],[18,19,["G2250"]]]},{"k":24901,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,8,["G846"]],[8,12,["G2407"]],[12,13,["G1725"]],[13,14,["G2316"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G5010"]],[17,19,["G848"]],[19,20,["G2183"]]]},{"k":24902,"v":[[0,1,["G2596"]],[1,3,["G3588"]],[3,4,["G1485"]],[4,6,["G3588"]],[6,8,["G2405"]],[8,11,["G2975"]],[11,14,["G2370"]],[14,17,["G1525"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G3485"]],[20,22,["G3588"]],[22,23,["G2962"]]]},{"k":24903,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3956"]],[3,4,["G4128"]],[4,6,["G3588"]],[6,7,["G2992"]],[7,8,["G2258"]],[8,9,["G4336"]],[9,10,["G1854"]],[10,12,["G3588"]],[12,13,["G5610"]],[13,15,["G2368"]]]},{"k":24904,"v":[[0,1,["G1161"]],[1,3,["G3700"]],[3,5,["G846"]],[5,7,["G32"]],[7,10,["G2962"]],[10,11,["G2476"]],[11,12,["G1537"]],[12,15,["G1188"]],[15,17,["G3588"]],[17,18,["G2379"]],[18,20,["G2368"]]]},{"k":24905,"v":[[0,1,["G2532"]],[1,3,["G2197"]],[3,4,["G1492"]],[4,8,["G5015"]],[8,9,["G2532"]],[9,10,["G5401"]],[10,11,["G1968"]],[11,12,["G1909"]],[12,13,["G846"]]]},{"k":24906,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G32"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G5399"]],[7,8,["G3361"]],[8,9,["G2197"]],[9,10,["G1360"]],[10,11,["G4675"]],[11,12,["G1162"]],[12,14,["G1522"]],[14,15,["G2532"]],[15,16,["G4675"]],[16,17,["G1135"]],[17,18,["G1665"]],[18,20,["G1080"]],[20,21,["G4671"]],[21,23,["G5207"]],[23,24,["G2532"]],[24,27,["G2564"]],[27,28,["G846"]],[28,29,["G3686"]],[29,30,["G2491"]]]},{"k":24907,"v":[[0,1,["G2532"]],[1,2,["G4671"]],[2,4,["G2071"]],[4,5,["G5479"]],[5,6,["G2532"]],[6,7,["G20"]],[7,8,["G2532"]],[8,9,["G4183"]],[9,11,["G5463"]],[11,12,["G1909"]],[12,13,["G846"]],[13,14,["G1083"]]]},{"k":24908,"v":[[0,1,["G1063"]],[1,4,["G2071"]],[4,5,["G3173"]],[5,8,["G1799"]],[8,10,["G3588"]],[10,11,["G2962"]],[11,12,["G2532"]],[12,14,["G4095"]],[14,15,["G3364"]],[15,16,["G3631"]],[16,17,["G2532"]],[17,19,["G4608"]],[19,20,["G2532"]],[20,24,["G4130"]],[24,27,["G40"]],[27,28,["G4151"]],[28,29,["G2089"]],[29,30,["G1537"]],[30,31,["G848"]],[31,32,["G3384"]],[32,33,["G2836"]]]},{"k":24909,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,4,["G3588"]],[4,5,["G5207"]],[5,7,["G2474"]],[7,10,["G1994"]],[10,11,["G1909"]],[11,13,["G2962"]],[13,14,["G846"]],[14,15,["G2316"]]]},{"k":24910,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,4,["G4281"]],[4,5,["G1799"]],[5,6,["G846"]],[6,9,["G4151"]],[9,10,["G2532"]],[10,11,["G1411"]],[11,13,["G2243"]],[13,15,["G1994"]],[15,17,["G2588"]],[17,20,["G3962"]],[20,21,["G1909"]],[21,23,["G5043"]],[23,24,["G2532"]],[24,26,["G545"]],[26,27,["G1722"]],[27,29,["G5428"]],[29,32,["G1342"]],[32,35,["G2090"]],[35,37,["G2992"]],[37,38,["G2680"]],[38,41,["G2962"]]]},{"k":24911,"v":[[0,1,["G2532"]],[1,2,["G2197"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G3588"]],[5,6,["G32"]],[6,7,["G2596","G5101"]],[7,10,["G1097"]],[10,11,["G5124"]],[11,12,["G1063"]],[12,13,["G1473"]],[13,14,["G1510"]],[14,17,["G4246"]],[17,18,["G2532"]],[18,19,["G3450"]],[19,20,["G1135"]],[20,22,["G4260"]],[22,23,["G1722"]],[23,24,["G2250"]]]},{"k":24912,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G32"]],[3,4,["G611"]],[4,5,["G2036"]],[5,7,["G846"]],[7,8,["G1473"]],[8,9,["G1510"]],[9,10,["G1043"]],[10,12,["G3936"]],[12,15,["G1799"]],[15,17,["G2316"]],[17,18,["G2532"]],[18,20,["G649"]],[20,22,["G2980"]],[22,23,["G4314"]],[23,24,["G4571"]],[24,25,["G2532"]],[25,31,["G2097","G4671","G5023"]]]},{"k":24913,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,5,["G2071"]],[5,6,["G4623"]],[6,7,["G2532"]],[7,8,["G3361"]],[8,9,["G1410"]],[9,11,["G2980"]],[11,12,["G891"]],[12,13,["(G3739)"]],[13,14,["G2250"]],[14,17,["G5023"]],[17,20,["G1096"]],[20,21,["G473"]],[21,22,["(G3739)"]],[22,23,["G4100"]],[23,24,["G3756"]],[24,25,["G3450"]],[25,26,["G3056"]],[26,27,["G3748"]],[27,30,["G4137"]],[30,31,["G1519"]],[31,32,["G848"]],[32,33,["G2540"]]]},{"k":24914,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2992"]],[3,5,["G2258","G4328"]],[5,6,["G2197"]],[6,7,["G2532"]],[7,8,["G2296"]],[8,10,["G846"]],[10,13,["G5549"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G3485"]]]},{"k":24915,"v":[[0,1,["G1161"]],[1,5,["G1831"]],[5,7,["G1410"]],[7,8,["G3756"]],[8,9,["G2980"]],[9,11,["G846"]],[11,12,["G2532"]],[12,14,["G1921"]],[14,15,["G3754"]],[15,18,["G3708"]],[18,20,["G3701"]],[20,21,["G1722"]],[21,22,["G3588"]],[22,23,["G3485"]],[23,24,["G2532"]],[24,25,["G846"]],[25,26,["G2258","G1269"]],[26,28,["G846"]],[28,29,["G2532"]],[29,30,["G1265"]],[30,31,["G2974"]]]},{"k":24916,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,9,["G5613"]],[9,10,["G3588"]],[10,11,["G2250"]],[11,13,["G846"]],[13,14,["G3009"]],[14,16,["G4130"]],[16,18,["G565"]],[18,19,["G1519"]],[19,21,["G848"]],[21,22,["G3624"]]]},{"k":24917,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,3,["G5025"]],[3,4,["G2250"]],[4,5,["G846"]],[5,6,["G1135"]],[6,7,["G1665"]],[7,8,["G4815"]],[8,9,["G2532"]],[9,10,["G4032"]],[10,11,["G1438"]],[11,12,["G4002"]],[12,13,["G3376"]],[13,14,["G3004"]]]},{"k":24918,"v":[[0,1,["G3779"]],[1,3,["G3588"]],[3,4,["G2962"]],[4,5,["G4160"]],[5,7,["G3427"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G2250"]],[10,11,["G3739"]],[11,14,["G1896"]],[14,18,["G851"]],[18,19,["G3450"]],[19,20,["G3681"]],[20,21,["G1722"]],[21,22,["G444"]]]},{"k":24919,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G1623"]],[4,5,["G3376"]],[5,6,["G3588"]],[6,7,["G32"]],[7,8,["G1043"]],[8,10,["G649"]],[10,11,["G5259"]],[11,12,["G2316"]],[12,13,["G1519"]],[13,15,["G4172"]],[15,17,["G1056"]],[17,18,["G3686"]],[18,19,["G3478"]]]},{"k":24920,"v":[[0,1,["G4314"]],[1,3,["G3933"]],[3,4,["G3423"]],[4,7,["G435"]],[7,8,["G3739"]],[8,9,["G3686"]],[9,11,["G2501"]],[11,12,["G1537"]],[12,14,["G3624"]],[14,16,["G1138"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G3933"]],[19,20,["G3686"]],[20,22,["G3137"]]]},{"k":24921,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G32"]],[3,5,["G1525"]],[5,6,["G4314"]],[6,7,["G846"]],[7,9,["G2036"]],[9,10,["G5463"]],[10,15,["G5487"]],[15,16,["G3588"]],[16,17,["G2962"]],[17,19,["G3326"]],[19,20,["G4675"]],[20,21,["G2127"]],[21,23,["G4771"]],[23,24,["G1722"]],[24,25,["G1135"]]]},{"k":24922,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1492"]],[4,8,["G1298"]],[8,9,["G1909"]],[9,10,["G846"]],[10,11,["G3056"]],[11,12,["G2532"]],[12,16,["G1260"]],[16,18,["G4217"]],[18,20,["G783"]],[20,21,["G3778"]],[21,23,["G1498"]]]},{"k":24923,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G32"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G5399"]],[7,8,["G3361"]],[8,9,["G3137"]],[9,10,["G1063"]],[10,13,["G2147"]],[13,14,["G5485"]],[14,15,["G3844"]],[15,16,["G2316"]]]},{"k":24924,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,5,["G4815"]],[5,6,["G1722"]],[6,8,["G1064"]],[8,9,["G2532"]],[9,11,["G5088"]],[11,13,["G5207"]],[13,14,["G2532"]],[14,16,["G2564"]],[16,17,["G846"]],[17,18,["G3686"]],[18,19,["G2424"]]]},{"k":24925,"v":[[0,1,["G3778"]],[1,3,["G2071"]],[3,4,["G3173"]],[4,5,["G2532"]],[5,8,["G2564"]],[8,10,["G5207"]],[10,13,["G5310"]],[13,14,["G2532"]],[14,16,["G2962"]],[16,17,["G2316"]],[17,19,["G1325"]],[19,21,["G846"]],[21,22,["G3588"]],[22,23,["G2362"]],[23,25,["G846"]],[25,26,["G3962"]],[26,27,["G1138"]]]},{"k":24926,"v":[[0,1,["G2532"]],[1,4,["G936"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G3624"]],[7,9,["G2384"]],[9,11,["G1519","G165"]],[11,12,["G2532"]],[12,14,["G846"]],[14,15,["G932"]],[15,18,["G2071"]],[18,19,["G3756"]],[19,20,["G5056"]]]},{"k":24927,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G3137"]],[3,4,["G4314"]],[4,5,["G3588"]],[5,6,["G32"]],[6,7,["G4459"]],[7,9,["G5124"]],[9,10,["G2071"]],[10,11,["G1893"]],[11,13,["G1097"]],[13,14,["G3756"]],[14,16,["G435"]]]},{"k":24928,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G32"]],[3,4,["G611"]],[4,6,["G2036"]],[6,8,["G846"]],[8,10,["G40"]],[10,11,["G4151"]],[11,13,["G1904"]],[13,14,["G1909"]],[14,15,["G4571"]],[15,16,["G2532"]],[16,18,["G1411"]],[18,21,["G5310"]],[21,23,["G1982"]],[23,24,["G4671"]],[24,25,["G1352"]],[25,26,["G2532"]],[26,29,["G40"]],[29,33,["G1080"]],[33,34,["G1537"]],[34,35,["G4675"]],[35,38,["G2564"]],[38,40,["G5207"]],[40,42,["G2316"]]]},{"k":24929,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G4675"]],[3,4,["G4773"]],[4,5,["G1665"]],[5,6,["G846"]],[6,8,["G2532"]],[8,9,["G4815"]],[9,11,["G5207"]],[11,12,["G1722"]],[12,13,["G848"]],[13,15,["G1094"]],[15,16,["G2532"]],[16,17,["G3778"]],[17,18,["G2076"]],[18,20,["G1623"]],[20,21,["G3376"]],[21,23,["G846"]],[23,26,["G2564"]],[26,27,["G4723"]]]},{"k":24930,"v":[[0,1,["G3754"]],[1,2,["G3844"]],[2,3,["G2316"]],[3,4,["G3956","G4487","G3756"]],[4,7,["G101"]]]},{"k":24931,"v":[[0,1,["G1161"]],[1,2,["G3137"]],[2,3,["G2036"]],[3,4,["G2400"]],[4,5,["G3588"]],[5,6,["G1399"]],[6,9,["G2962"]],[9,10,["G1096"]],[10,13,["G3427"]],[13,14,["G2596"]],[14,16,["G4675"]],[16,17,["G4487"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G32"]],[20,21,["G565"]],[21,22,["G575"]],[22,23,["G846"]]]},{"k":24932,"v":[[0,1,["G1161"]],[1,2,["G3137"]],[2,3,["G450"]],[3,4,["G1722"]],[4,5,["G5025"]],[5,6,["G2250"]],[6,8,["G4198"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,12,["G3714"]],[12,13,["G3326"]],[13,14,["G4710"]],[14,15,["G1519"]],[15,17,["G4172"]],[17,19,["G2448"]]]},{"k":24933,"v":[[0,1,["G2532"]],[1,2,["G1525"]],[2,3,["G1519"]],[3,4,["G3588"]],[4,5,["G3624"]],[5,7,["G2197"]],[7,8,["G2532"]],[8,9,["G782"]],[9,10,["G1665"]]]},{"k":24934,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G5613"]],[7,8,["G1665"]],[8,9,["G191"]],[9,10,["G3588"]],[10,11,["G783"]],[11,13,["G3137"]],[13,14,["G3588"]],[14,15,["G1025"]],[15,16,["G4640"]],[16,17,["G1722"]],[17,18,["G846"]],[18,19,["G2836"]],[19,20,["G2532"]],[20,21,["G1665"]],[21,23,["G4130"]],[23,26,["G40"]],[26,27,["G4151"]]]},{"k":24935,"v":[[0,1,["G2532"]],[1,4,["G400"]],[4,7,["G3173"]],[7,8,["G5456"]],[8,9,["G2532"]],[9,10,["G2036"]],[10,11,["G2127"]],[11,13,["G4771"]],[13,14,["G1722"]],[14,15,["G1135"]],[15,16,["G2532"]],[16,17,["G2127"]],[17,19,["G3588"]],[19,20,["G2590"]],[20,22,["G4675"]],[22,23,["G2836"]]]},{"k":24936,"v":[[0,1,["G2532"]],[1,2,["G4159"]],[2,4,["G5124"]],[4,6,["G3427"]],[6,7,["G2443"]],[7,8,["G3588"]],[8,9,["G3384"]],[9,11,["G3450"]],[11,12,["G2962"]],[12,14,["G2064"]],[14,15,["G4314"]],[15,16,["G3165"]]]},{"k":24937,"v":[[0,1,["G1063"]],[1,2,["G2400"]],[2,5,["G5613"]],[5,6,["G3588"]],[6,7,["G5456"]],[7,9,["G4675"]],[9,10,["G783"]],[10,11,["G1096"]],[11,12,["G1519"]],[12,13,["G3450"]],[13,14,["G3775"]],[14,15,["G3588"]],[15,16,["G1025"]],[16,17,["G4640"]],[17,18,["G1722"]],[18,19,["G3450"]],[19,20,["G2836"]],[20,21,["G1722"]],[21,22,["G20"]]]},{"k":24938,"v":[[0,1,["G2532"]],[1,2,["G3107"]],[2,6,["G4100"]],[6,7,["G3754"]],[7,10,["G2071"]],[10,12,["G5050"]],[12,18,["G2980"]],[18,19,["G846"]],[19,20,["G3844"]],[20,22,["G2962"]]]},{"k":24939,"v":[[0,1,["G2532"]],[1,2,["G3137"]],[2,3,["G2036"]],[3,4,["G3450"]],[4,5,["G5590"]],[5,7,["G3170"]],[7,8,["G3588"]],[8,9,["G2962"]]]},{"k":24940,"v":[[0,1,["G2532"]],[1,2,["G3450"]],[2,3,["G4151"]],[3,5,["G21"]],[5,6,["G1909"]],[6,7,["G2316"]],[7,8,["G3450"]],[8,9,["G4990"]]]},{"k":24941,"v":[[0,1,["G3754"]],[1,4,["G1914"]],[4,5,["G3588"]],[5,7,["G5014"]],[7,9,["G848"]],[9,10,["G1399"]],[10,11,["G1063"]],[11,12,["G2400"]],[12,13,["G575"]],[13,14,["G3568"]],[14,15,["G3956"]],[15,16,["G1074"]],[16,20,["G3106","G3165"]]]},{"k":24942,"v":[[0,1,["G3754"]],[1,5,["G1415"]],[5,7,["G4160"]],[7,9,["G3427"]],[9,11,["G3167"]],[11,12,["G2532"]],[12,13,["G40"]],[13,15,["G846"]],[15,16,["G3686"]]]},{"k":24943,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G1656"]],[3,8,["G5399"]],[8,9,["G846"]],[9,10,["G1519"]],[10,11,["G1074"]],[11,13,["G1074"]]]},{"k":24944,"v":[[0,3,["G4160"]],[3,4,["G2904"]],[4,5,["G1722"]],[5,6,["G848"]],[6,7,["G1023"]],[7,10,["G1287"]],[10,12,["G5244"]],[12,15,["G1271"]],[15,17,["G846"]],[17,18,["G2588"]]]},{"k":24945,"v":[[0,4,["G2507"]],[4,6,["G1413"]],[6,7,["G575"]],[7,9,["G2362"]],[9,10,["G2532"]],[10,11,["G5312"]],[11,15,["G5011"]]]},{"k":24946,"v":[[0,3,["G1705"]],[3,5,["G3983"]],[5,8,["G18"]],[8,9,["G2532"]],[9,11,["G4147"]],[11,16,["G1821","G2756"]]]},{"k":24947,"v":[[0,3,["G482"]],[3,4,["G848"]],[4,5,["G3816"]],[5,6,["G2474"]],[6,8,["G3415"]],[8,11,["G1656"]]]},{"k":24948,"v":[[0,1,["G2531"]],[1,3,["G2980"]],[3,4,["G4314"]],[4,5,["G2257"]],[5,6,["G3962"]],[6,8,["G11"]],[8,9,["G2532"]],[9,11,["G846"]],[11,12,["G4690"]],[12,14,["G1519","G165"]]]},{"k":24949,"v":[[0,1,["G1161"]],[1,2,["G3137"]],[2,3,["G3306"]],[3,4,["G4862"]],[4,5,["G846"]],[5,6,["G5616"]],[6,7,["G5140"]],[7,8,["G3376"]],[8,9,["G2532"]],[9,10,["G5290"]],[10,11,["G1519"]],[11,13,["G848"]],[13,14,["G3624"]]]},{"k":24950,"v":[[0,1,["G1161"]],[1,2,["G1665"]],[2,4,["G5550"]],[4,5,["G4130"]],[5,7,["G846"]],[7,10,["G5088"]],[10,11,["G2532"]],[11,14,["G1080"]],[14,16,["G5207"]]]},{"k":24951,"v":[[0,1,["G2532"]],[1,2,["G848"]],[2,3,["G4040"]],[3,4,["G2532"]],[4,6,["G4773"]],[6,7,["G191"]],[7,8,["G3754"]],[8,10,["G2962"]],[10,14,["G3170","G848","G1656"]],[14,15,["G3326"]],[15,16,["G846"]],[16,17,["G2532"]],[17,20,["G4796"]],[20,21,["G846"]]]},{"k":24952,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G1722"]],[7,8,["G3588"]],[8,9,["G3590"]],[9,10,["G2250"]],[10,12,["G2064"]],[12,14,["G4059"]],[14,15,["G3588"]],[15,16,["G3813"]],[16,17,["G2532"]],[17,19,["G2564"]],[19,20,["G846"]],[20,21,["G2197"]],[21,22,["G1909"]],[22,23,["G3588"]],[23,24,["G3686"]],[24,26,["G846"]],[26,27,["G3962"]]]},{"k":24953,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3384"]],[3,4,["G611"]],[4,6,["G2036"]],[6,7,["G3780"]],[7,9,["G235"]],[9,13,["G2564"]],[13,14,["G2491"]]]},{"k":24954,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,7,["G2076"]],[7,8,["G3762"]],[8,9,["G1722"]],[9,10,["G4675"]],[10,11,["G4772"]],[11,12,["G3739"]],[12,14,["G2564"]],[14,16,["G5129"]],[16,17,["G3686"]]]},{"k":24955,"v":[[0,1,["G2532"]],[1,4,["G1770"]],[4,6,["G846"]],[6,7,["G3962"]],[7,8,["G5101"]],[8,11,["G2309","G302"]],[11,12,["G846"]],[12,13,["G2564"]]]},{"k":24956,"v":[[0,1,["G2532"]],[1,3,["G154"]],[3,7,["G4093"]],[7,9,["G1125"]],[9,10,["G3004"]],[10,11,["G846"]],[11,12,["G3686"]],[12,13,["G2076"]],[13,14,["G2491"]],[14,15,["G2532"]],[15,17,["G2296"]],[17,18,["G3956"]]]},{"k":24957,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G4750"]],[3,5,["G455"]],[5,6,["G3916"]],[6,7,["G2532"]],[7,8,["G846"]],[8,9,["G1100"]],[9,11,["G2532"]],[11,13,["G2980"]],[13,15,["G2127"]],[15,16,["G2316"]]]},{"k":24958,"v":[[0,1,["G2532"]],[1,2,["G5401"]],[2,3,["G1096"]],[3,4,["G1909"]],[4,5,["G3956"]],[5,9,["G4039"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G3956"]],[12,13,["G5023"]],[13,14,["G4487"]],[14,17,["G1255"]],[17,18,["G1722"]],[18,19,["G3650"]],[19,20,["G3588"]],[20,22,["G3714"]],[22,24,["G2449"]]]},{"k":24959,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,5,["G191"]],[5,9,["G5087"]],[9,10,["G1722"]],[10,11,["G848"]],[11,12,["G2588"]],[12,13,["G3004"]],[13,15,["G5101"]],[15,16,["(G686)"]],[16,17,["G3813"]],[17,19,["G5124"]],[19,20,["G2071"]],[20,21,["G2532"]],[21,23,["G5495"]],[23,26,["G2962"]],[26,27,["G2258"]],[27,28,["G3326"]],[28,29,["G846"]]]},{"k":24960,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3962"]],[3,4,["G2197"]],[4,6,["G4130"]],[6,9,["G40"]],[9,10,["G4151"]],[10,11,["G2532"]],[11,12,["G4395"]],[12,13,["G3004"]]]},{"k":24961,"v":[[0,1,["G2128"]],[1,4,["G2962"]],[4,5,["G2316"]],[5,7,["G2474"]],[7,8,["G3754"]],[8,11,["G1980"]],[11,12,["G2532"]],[12,13,["G4160","G3085"]],[13,14,["G848"]],[14,15,["G2992"]]]},{"k":24962,"v":[[0,1,["G2532"]],[1,4,["G1453"]],[4,6,["G2768"]],[6,8,["G4991"]],[8,10,["G2254"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G3624"]],[13,15,["G848"]],[15,16,["G3816"]],[16,17,["G1138"]]]},{"k":24963,"v":[[0,1,["G2531"]],[1,3,["G2980"]],[3,4,["G1223"]],[4,6,["G4750"]],[6,8,["G848"]],[8,9,["G40"]],[9,10,["G4396"]],[10,11,["G3588"]],[11,17,["G575","G165"]]]},{"k":24964,"v":[[0,5,["G4991"]],[5,6,["G1537"]],[6,7,["G2257"]],[7,8,["G2190"]],[8,9,["G2532"]],[9,10,["G1537"]],[10,12,["G5495"]],[12,14,["G3956"]],[14,16,["G3404"]],[16,17,["G2248"]]]},{"k":24965,"v":[[0,2,["G4160"]],[2,4,["G1656"]],[4,6,["G3326"]],[6,7,["G2257"]],[7,8,["G3962"]],[8,9,["G2532"]],[9,11,["G3415"]],[11,12,["G848"]],[12,13,["G40"]],[13,14,["G1242"]]]},{"k":24966,"v":[[0,2,["G3727"]],[2,3,["G3739"]],[3,5,["G3660"]],[5,6,["G4314"]],[6,7,["G2257"]],[7,8,["G3962"]],[8,9,["G11"]]]},{"k":24967,"v":[[0,4,["G1325"]],[4,6,["G2254"]],[6,10,["G4506"]],[10,12,["G1537"]],[12,14,["G5495"]],[14,16,["G2257"]],[16,17,["G2190"]],[17,19,["G3000"]],[19,20,["G846"]],[20,22,["G870"]]]},{"k":24968,"v":[[0,1,["G1722"]],[1,2,["G3742"]],[2,3,["G2532"]],[3,4,["G1343"]],[4,5,["G1799"]],[5,6,["G846"]],[6,7,["G3956"]],[7,8,["G3588"]],[8,9,["G2250"]],[9,11,["G2257"]],[11,12,["G2222"]]]},{"k":24969,"v":[[0,1,["G2532"]],[1,2,["G4771"]],[2,3,["G3813"]],[3,6,["G2564"]],[6,8,["G4396"]],[8,11,["G5310"]],[11,12,["G1063"]],[12,15,["G4313"]],[15,16,["G4253"]],[16,18,["G4383"]],[18,21,["G2962"]],[21,23,["G2090"]],[23,24,["G846"]],[24,25,["G3598"]]]},{"k":24970,"v":[[0,2,["G1325"]],[2,3,["G1108"]],[3,5,["G4991"]],[5,7,["G846"]],[7,8,["G2992"]],[8,9,["G1722"]],[9,11,["G859"]],[11,13,["G846"]],[13,14,["G266"]]]},{"k":24971,"v":[[0,1,["G1223"]],[1,4,["G4698","G1656"]],[4,6,["G2257"]],[6,7,["G2316"]],[7,8,["G1722","G3739"]],[8,10,["G395"]],[10,11,["G1537"]],[11,13,["G5311"]],[13,15,["G1980"]],[15,16,["G2248"]]]},{"k":24972,"v":[[0,3,["G2014"]],[3,7,["G2521"]],[7,8,["G1722"]],[8,9,["G4655"]],[9,10,["G2532"]],[10,13,["G4639"]],[13,15,["G2288"]],[15,17,["G2720"]],[17,18,["G2257"]],[18,19,["G4228"]],[19,20,["G1519"]],[20,22,["G3598"]],[22,24,["G1515"]]]},{"k":24973,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3813"]],[3,4,["G837"]],[4,5,["G2532"]],[5,7,["G2901"]],[7,9,["G4151"]],[9,10,["G2532"]],[10,11,["G2258"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G2048"]],[14,15,["G2193"]],[15,17,["G2250"]],[17,19,["G846"]],[19,20,["G323"]],[20,21,["G4314"]],[21,22,["G2474"]]]},{"k":24974,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,6,["G1722"]],[6,7,["G1565"]],[7,8,["G2250"]],[8,12,["G1831"]],[12,14,["G1378"]],[14,15,["G3844"]],[15,16,["G2541"]],[16,17,["G828"]],[17,19,["G3956"]],[19,20,["G3588"]],[20,21,["G3625"]],[21,24,["G583"]]]},{"k":24975,"v":[[0,2,["G3778"]],[2,3,["G582"]],[3,5,["G4413"]],[5,6,["G1096"]],[6,8,["G2958"]],[8,10,["G2230"]],[10,12,["G4947"]]]},{"k":24976,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G4198"]],[3,6,["G583"]],[6,8,["G1538"]],[8,9,["G1519"]],[9,11,["G2398"]],[11,12,["G4172"]]]},{"k":24977,"v":[[0,1,["G1161"]],[1,2,["G2501"]],[2,3,["G2532"]],[3,5,["G305"]],[5,6,["G575"]],[6,7,["G1056"]],[7,9,["G1537"]],[9,11,["G4172"]],[11,13,["G3478"]],[13,14,["G1519"]],[14,15,["G2449"]],[15,16,["G1519"]],[16,18,["G4172"]],[18,20,["G1138"]],[20,21,["G3748"]],[21,23,["G2564"]],[23,24,["G965"]],[24,25,["G1223"]],[25,26,["G846"]],[26,27,["G1511"]],[27,28,["G1537"]],[28,30,["G3624"]],[30,31,["G2532"]],[31,32,["G3965"]],[32,34,["G1138"]]]},{"k":24978,"v":[[0,3,["G583"]],[3,4,["G4862"]],[4,5,["G3137"]],[5,6,["G846"]],[6,7,["G3423"]],[7,8,["G1135"]],[8,9,["G5607"]],[9,12,["G1471"]]]},{"k":24979,"v":[[0,1,["G1161"]],[1,4,["G1096"]],[4,7,["G846"]],[7,8,["G1511"]],[8,9,["G1563"]],[9,10,["G3588"]],[10,11,["G2250"]],[11,13,["G4130"]],[13,15,["G846"]],[15,18,["G5088"]]]},{"k":24980,"v":[[0,1,["G2532"]],[1,4,["G5088"]],[4,5,["G848"]],[5,6,["G4416"]],[6,7,["G5207"]],[7,8,["G2532"]],[8,13,["G4683","G846"]],[13,14,["G2532"]],[14,15,["G347"]],[15,16,["G846"]],[16,17,["G1722"]],[17,19,["G5336"]],[19,20,["G1360"]],[20,22,["G2258"]],[22,23,["G3756"]],[23,24,["G5117"]],[24,26,["G846"]],[26,27,["G1722"]],[27,28,["G3588"]],[28,29,["G2646"]]]},{"k":24981,"v":[[0,1,["G2532"]],[1,3,["G2258"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G846"]],[6,7,["G5561"]],[7,8,["G4166"]],[8,10,["G63"]],[10,12,["(G2532)"]],[12,13,["G5442"]],[13,14,["G5438"]],[14,15,["G1909"]],[15,16,["G848"]],[16,17,["G4167"]],[17,19,["G3571"]]]},{"k":24982,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G32"]],[4,7,["G2962"]],[7,9,["G2186"]],[9,10,["G846"]],[10,11,["G2532"]],[11,13,["G1391"]],[13,16,["G2962"]],[16,19,["G4034"]],[19,20,["G846"]],[20,21,["G2532"]],[21,25,["G5399","G3173","G5401"]]]},{"k":24983,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G32"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G5399"]],[7,8,["G3361"]],[8,9,["G1063"]],[9,10,["G2400"]],[10,15,["G2097","G5213"]],[15,17,["G3173"]],[17,18,["G5479"]],[18,19,["G3748"]],[19,21,["G2071"]],[21,23,["G3956"]],[23,24,["G2992"]]]},{"k":24984,"v":[[0,1,["G3754"]],[1,3,["G5213"]],[3,5,["G5088"]],[5,7,["G4594"]],[7,8,["G1722"]],[8,10,["G4172"]],[10,12,["G1138"]],[12,14,["G4990"]],[14,15,["G3739"]],[15,16,["G2076"]],[16,17,["G5547"]],[17,19,["G2962"]]]},{"k":24985,"v":[[0,1,["G2532"]],[1,2,["G5124"]],[2,6,["G4592"]],[6,8,["G5213"]],[8,11,["G2147"]],[11,13,["G1025"]],[13,17,["G4683"]],[17,18,["G2749"]],[18,19,["G1722"]],[19,21,["G5336"]]]},{"k":24986,"v":[[0,1,["G2532"]],[1,2,["G1810"]],[2,4,["G1096"]],[4,5,["G4862"]],[5,6,["G3588"]],[6,7,["G32"]],[7,9,["G4128"]],[9,12,["G3770"]],[12,13,["G4756"]],[13,14,["G134"]],[14,15,["G2316"]],[15,16,["G2532"]],[16,17,["G3004"]]]},{"k":24987,"v":[[0,1,["G1391"]],[1,3,["G2316"]],[3,4,["G1722"]],[4,6,["G5310"]],[6,7,["G2532"]],[7,8,["G1909"]],[8,9,["G1093"]],[9,10,["G1515"]],[10,12,["G2107"]],[12,13,["G1722"]],[13,14,["G444"]]]},{"k":24988,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,6,["G5613"]],[6,7,["G3588"]],[7,8,["G32"]],[8,11,["G565"]],[11,12,["G575"]],[12,13,["G846"]],[13,14,["G1519"]],[14,15,["G3772","(G444)"]],[15,16,["G3588"]],[16,17,["G4166"]],[17,18,["G2036"]],[18,21,["G240","G4314"]],[21,25,["G1330"]],[25,26,["G1211"]],[26,27,["G2193"]],[27,28,["G965"]],[28,29,["G2532"]],[29,30,["G1492"]],[30,31,["G5124"]],[31,32,["G4487"]],[32,37,["G1096"]],[37,38,["G3739"]],[38,39,["G3588"]],[39,40,["G2962"]],[40,43,["G1107"]],[43,45,["G2254"]]]},{"k":24989,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,5,["G4692"]],[5,6,["G2532"]],[6,7,["G429","(G5037)"]],[7,8,["G3137"]],[8,9,["G2532"]],[9,10,["G2501"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G1025"]],[13,14,["G2749"]],[14,15,["G1722"]],[15,17,["G5336"]]]},{"k":24990,"v":[[0,1,["G1161"]],[1,5,["G1492"]],[5,9,["G1232"]],[9,10,["(G4012)"]],[10,11,["G3588"]],[11,12,["G4487"]],[12,15,["G2980"]],[15,16,["G846"]],[16,17,["G4012"]],[17,18,["G5127"]],[18,19,["G3813"]]]},{"k":24991,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,5,["G191"]],[5,7,["G2296"]],[7,8,["G4012"]],[8,13,["G2980"]],[13,14,["G846"]],[14,15,["G5259"]],[15,16,["G3588"]],[16,17,["G4166"]]]},{"k":24992,"v":[[0,1,["G1161"]],[1,2,["G3137"]],[2,3,["G4933"]],[3,4,["G3956"]],[4,5,["G5023"]],[5,6,["G4487"]],[6,8,["G4820"]],[8,10,["G1722"]],[10,11,["G848"]],[11,12,["G2588"]]]},{"k":24993,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4166"]],[3,4,["G1994"]],[4,5,["G1392"]],[5,6,["G2532"]],[6,7,["G134"]],[7,8,["G2316"]],[8,9,["G1909"]],[9,10,["G3956"]],[10,13,["G3739"]],[13,16,["G191"]],[16,17,["G2532"]],[17,18,["G1492"]],[18,19,["G2531"]],[19,22,["G2980"]],[22,23,["G4314"]],[23,24,["G846"]]]},{"k":24994,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,3,["G3638"]],[3,4,["G2250"]],[4,6,["G4130"]],[6,9,["G4059"]],[9,11,["G3588"]],[11,12,["G3813","(G2532)"]],[12,13,["G846"]],[13,14,["G3686"]],[14,16,["G2564"]],[16,17,["G2424"]],[17,21,["G2564"]],[21,22,["G5259"]],[22,23,["G3588"]],[23,24,["G32"]],[24,25,["G4253"]],[25,26,["G846"]],[26,28,["G4815"]],[28,29,["G1722"]],[29,30,["G3588"]],[30,31,["G2836"]]]},{"k":24995,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,3,["G3588"]],[3,4,["G2250"]],[4,6,["G846"]],[6,7,["G2512"]],[7,8,["G2596"]],[8,10,["G3588"]],[10,11,["G3551"]],[11,13,["G3475"]],[13,15,["G4130"]],[15,17,["G321"]],[17,18,["G846"]],[18,19,["G1519"]],[19,20,["G2414"]],[20,22,["G3936"]],[22,25,["G3588"]],[25,26,["G2962"]]]},{"k":24996,"v":[[0,1,["G2531"]],[1,4,["G1125"]],[4,5,["G1722"]],[5,7,["G3551"]],[7,10,["G2962"]],[10,11,["G3956"]],[11,12,["G730"]],[12,14,["G1272"]],[14,16,["G3388"]],[16,19,["G2564"]],[19,20,["G40"]],[20,22,["G3588"]],[22,23,["G2962"]]]},{"k":24997,"v":[[0,1,["G2532"]],[1,3,["G1325"]],[3,5,["G2378"]],[5,6,["G2596"]],[6,11,["G2046"]],[11,12,["G1722"]],[12,14,["G3551"]],[14,17,["G2962"]],[17,19,["G2201"]],[19,21,["G5167"]],[21,22,["G2228"]],[22,23,["G1417"]],[23,24,["G3502"]],[24,25,["G4058"]]]},{"k":24998,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G2258"]],[4,6,["G444"]],[6,7,["G1722"]],[7,8,["G2419"]],[8,9,["G3739"]],[9,10,["G3686"]],[10,12,["G4826"]],[12,13,["G2532"]],[13,15,["G3778"]],[15,16,["G444"]],[16,18,["G1342"]],[18,19,["G2532"]],[19,20,["G2126"]],[20,22,["G4327"]],[22,24,["G3874"]],[24,26,["G2474"]],[26,27,["G2532"]],[27,29,["G40"]],[29,30,["G4151"]],[30,31,["G2258"]],[31,32,["G1909"]],[32,33,["G846"]]]},{"k":24999,"v":[[0,1,["G2532"]],[1,3,["G2258"]],[3,4,["G5537"]],[4,6,["G846"]],[6,7,["G5259"]],[7,8,["G3588"]],[8,9,["G40"]],[9,10,["G4151"]],[10,14,["G3361"]],[14,15,["G1492"]],[15,16,["G2288"]],[16,17,["G4250"]],[17,20,["G1492"]],[20,22,["G2962"]],[22,23,["G5547"]]]},{"k":25000,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G4151"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G2411"]],[9,10,["G2532"]],[10,12,["G3588"]],[12,13,["G1118"]],[13,15,["G1521"]],[15,16,["G3588"]],[16,17,["G3813"]],[17,18,["G2424"]],[18,20,["G4160"]],[20,21,["G4012"]],[21,22,["G846"]],[22,23,["G2596"]],[23,24,["G3588"]],[24,25,["G1480"]],[25,27,["G3588"]],[27,28,["G3551"]]]},{"k":25001,"v":[[0,1,["G2532"]],[1,5,["G1209","G846","G846"]],[5,6,["G1519"]],[6,7,["G848"]],[7,8,["G43"]],[8,9,["G2532"]],[9,10,["G2127"]],[10,11,["G2316"]],[11,12,["G2532"]],[12,13,["G2036"]]]},{"k":25002,"v":[[0,1,["G1203"]],[1,2,["G3568"]],[2,5,["G4675"]],[5,6,["G1401"]],[6,7,["G630"]],[7,8,["G1722"]],[8,9,["G1515"]],[9,10,["G2596"]],[10,12,["G4675"]],[12,13,["G4487"]]]},{"k":25003,"v":[[0,1,["G3754"]],[1,2,["G3450"]],[2,3,["G3788"]],[3,5,["G1492"]],[5,6,["G4675"]],[6,7,["G4992"]]]},{"k":25004,"v":[[0,1,["G3739"]],[1,4,["G2090"]],[4,5,["G2596"]],[5,7,["G4383"]],[7,9,["G3956"]],[9,10,["G2992"]]]},{"k":25005,"v":[[0,2,["G5457"]],[2,3,["G1519"]],[3,4,["G602"]],[4,6,["G1484"]],[6,7,["G2532"]],[7,9,["G1391"]],[9,11,["G4675"]],[11,12,["G2992"]],[12,13,["G2474"]]]},{"k":25006,"v":[[0,1,["G2532"]],[1,2,["G2501"]],[2,3,["G2532"]],[3,4,["G846"]],[4,5,["G3384"]],[5,6,["G2258","G2296"]],[6,7,["G1909"]],[7,12,["G2980"]],[12,13,["G4012"]],[13,14,["G846"]]]},{"k":25007,"v":[[0,1,["G2532"]],[1,2,["G4826"]],[2,3,["G2127"]],[3,4,["G846"]],[4,5,["G2532"]],[5,6,["G2036"]],[6,7,["G4314"]],[7,8,["G3137"]],[8,9,["G846"]],[9,10,["G3384"]],[10,11,["G2400"]],[11,12,["G3778"]],[12,15,["G2749"]],[15,16,["G1519"]],[16,18,["G4431"]],[18,19,["G2532"]],[19,21,["G386"]],[21,23,["G4183"]],[23,24,["G1722"]],[24,25,["G2474"]],[25,26,["G2532"]],[26,27,["G1519"]],[27,29,["G4592"]],[29,34,["G483"]]]},{"k":25008,"v":[[0,1,["G1161"]],[1,2,["(G846)"]],[2,3,["G4501"]],[3,6,["G1330"]],[6,8,["G846"]],[8,9,["G5590"]],[9,10,["G2532"]],[10,11,["G3704"]],[11,13,["G1261"]],[13,14,["G1537"]],[14,15,["G4183"]],[15,16,["G2588"]],[16,19,["G601","G302"]]]},{"k":25009,"v":[[0,1,["G2532"]],[1,3,["G2258"]],[3,5,["G451"]],[5,7,["G4398"]],[7,9,["G2364"]],[9,11,["G5323"]],[11,12,["G1537"]],[12,14,["G5443"]],[14,16,["G768"]],[16,17,["G3778"]],[17,22,["G4260","G1722","G4183","G2250"]],[22,25,["G2198"]],[25,26,["G3326"]],[26,28,["G435"]],[28,29,["G2033"]],[29,30,["G2094"]],[30,31,["G575"]],[31,32,["G848"]],[32,33,["G3932"]]]},{"k":25010,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,5,["G5503"]],[5,7,["G5613"]],[7,10,["G3589","G5064"]],[10,11,["G2094"]],[11,12,["G3739"]],[12,13,["G868"]],[13,14,["G3756"]],[14,15,["G575"]],[15,16,["G3588"]],[16,17,["G2411"]],[17,19,["G3000"]],[19,22,["G3521"]],[22,23,["G2532"]],[23,24,["G1162"]],[24,25,["G3571"]],[25,26,["G2532"]],[26,27,["G2250"]]]},{"k":25011,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G2186"]],[3,6,["G846","G5610"]],[6,8,["G437"]],[8,11,["G3588"]],[11,12,["G2962"]],[12,13,["G2532"]],[13,14,["G2980"]],[14,15,["G4012"]],[15,16,["G846"]],[16,18,["G3956"]],[18,22,["G4327"]],[22,23,["G3085"]],[23,24,["G1722"]],[24,25,["G2419"]]]},{"k":25012,"v":[[0,1,["G2532"]],[1,2,["G5613"]],[2,5,["G5055"]],[5,7,["G537"]],[7,8,["G2596"]],[8,10,["G3588"]],[10,11,["G3551"]],[11,14,["G2962"]],[14,16,["G5290"]],[16,17,["G1519"]],[17,18,["G1056"]],[18,19,["G1519"]],[19,21,["G848"]],[21,22,["G4172"]],[22,23,["G3478"]]]},{"k":25013,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3813"]],[3,4,["G837"]],[4,5,["G2532"]],[5,7,["G2901"]],[7,9,["G4151"]],[9,10,["G4137"]],[10,12,["G4678"]],[12,13,["G2532"]],[13,15,["G5485"]],[15,17,["G2316"]],[17,18,["G2258"]],[18,19,["G1909"]],[19,20,["G846"]]]},{"k":25014,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G1118"]],[3,4,["G4198"]],[4,5,["G1519"]],[5,6,["G2419"]],[6,8,["G2596","G2094"]],[8,10,["G3588"]],[10,11,["G1859"]],[11,13,["G3588"]],[13,14,["G3957"]]]},{"k":25015,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,4,["G1096"]],[4,7,["G1427","G2094"]],[7,8,["G846"]],[8,10,["G305"]],[10,11,["G1519"]],[11,12,["G2414"]],[12,13,["G2596"]],[13,14,["G3588"]],[14,15,["G1485"]],[15,17,["G3588"]],[17,18,["G1859"]]]},{"k":25016,"v":[[0,1,["G2532"]],[1,5,["G5048"]],[5,6,["G3588"]],[6,7,["G2250"]],[7,9,["G846"]],[9,10,["G5290"]],[10,11,["G3588"]],[11,12,["G3816"]],[12,13,["G2424"]],[13,15,["G5278"]],[15,16,["G1722"]],[16,17,["G2419"]],[17,18,["G2532"]],[18,19,["G2501"]],[19,20,["G2532"]],[20,21,["G846"]],[21,22,["G3384"]],[22,23,["G1097"]],[23,24,["G3756"]],[24,26,[]]]},{"k":25017,"v":[[0,1,["G1161"]],[1,3,["G3543"]],[3,4,["G846"]],[4,7,["G1511"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G4923"]],[10,11,["G2064"]],[11,13,["G2250"]],[13,14,["G3598"]],[14,15,["G2532"]],[15,17,["G327"]],[17,18,["G846"]],[18,19,["G1722"]],[19,21,["G4773"]],[21,22,["G2532","(G1722)"]],[22,23,["G1110"]]]},{"k":25018,"v":[[0,1,["G2532"]],[1,4,["G2147"]],[4,5,["G846"]],[5,6,["G3361"]],[6,10,["G5290"]],[10,11,["G1519"]],[11,12,["G2419"]],[12,13,["G2212"]],[13,14,["G846"]]]},{"k":25019,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G3326"]],[7,8,["G5140"]],[8,9,["G2250"]],[9,11,["G2147"]],[11,12,["G846"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G2411"]],[15,16,["G2516"]],[16,17,["G1722"]],[17,19,["G3319"]],[19,21,["G3588"]],[21,22,["G1320"]],[22,23,["G2532"]],[23,24,["G191"]],[24,25,["G846"]],[25,26,["G2532"]],[26,29,["G1905","G846"]]]},{"k":25020,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,4,["G191"]],[4,5,["G846"]],[5,7,["G1839"]],[7,8,["G1909"]],[8,9,["G846"]],[9,10,["G4907"]],[10,11,["G2532"]],[11,12,["G612"]]]},{"k":25021,"v":[[0,1,["G2532"]],[1,4,["G1492"]],[4,5,["G846"]],[5,8,["G1605"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G3384"]],[11,12,["G2036"]],[12,13,["G4314"]],[13,14,["G846"]],[14,15,["G5043"]],[15,16,["G5101"]],[16,19,["G3779"]],[19,20,["G4160"]],[20,22,["G2254"]],[22,23,["G2400"]],[23,24,["G4675"]],[24,25,["G3962"]],[25,27,["G2504"]],[27,29,["G2212"]],[29,30,["G4571"]],[30,31,["G3600"]]]},{"k":25022,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G5101"]],[6,9,["G3754"]],[9,11,["G2212"]],[11,12,["G3165"]],[12,13,["G1492"]],[13,15,["G3756"]],[15,16,["G3754"]],[16,17,["G3165"]],[17,18,["G1163"]],[18,19,["G1511"]],[19,20,["G1722"]],[20,21,["G3450"]],[21,23,["G3588","G3962"]]]},{"k":25023,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G4920"]],[3,4,["G3756"]],[4,5,["G3588"]],[5,6,["G4487"]],[6,7,["G3739"]],[7,9,["G2980"]],[9,11,["G846"]]]},{"k":25024,"v":[[0,1,["G2532"]],[1,4,["G2597"]],[4,5,["G3326"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G2064"]],[8,9,["G1519"]],[9,10,["G3478"]],[10,11,["G2532"]],[11,12,["G2258"]],[12,14,["G5293"]],[14,15,["G846"]],[15,16,["G2532"]],[16,17,["G846"]],[17,18,["G3384"]],[18,19,["G1301"]],[19,20,["G3956"]],[20,21,["G5023"]],[21,22,["G4487"]],[22,23,["G1722"]],[23,24,["G848"]],[24,25,["G2588"]]]},{"k":25025,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G4298"]],[3,5,["G4678"]],[5,6,["G2532"]],[6,7,["G2244"]],[7,8,["G2532"]],[8,10,["G5485"]],[10,11,["G3844"]],[11,12,["G2316"]],[12,13,["G2532"]],[13,14,["G444"]]]},{"k":25026,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,4,["G4003"]],[4,5,["G2094"]],[5,7,["G3588"]],[7,8,["G2231"]],[8,10,["G5086"]],[10,11,["G2541"]],[11,12,["G4194"]],[12,13,["G4091"]],[13,15,["G2230"]],[15,17,["G2449"]],[17,18,["G2532"]],[18,19,["G2264"]],[19,21,["G5075"]],[21,23,["G1056"]],[23,24,["G1161"]],[24,25,["G846"]],[25,26,["G80"]],[26,27,["G5376"]],[27,28,["G5075"]],[28,30,["G2484"]],[30,31,["G2532"]],[31,34,["G5561"]],[34,36,["G5139"]],[36,37,["G2532"]],[37,38,["G3078"]],[38,40,["G5075"]],[40,42,["G9"]]]},{"k":25027,"v":[[0,1,["G452"]],[1,2,["G2532"]],[2,3,["G2533"]],[3,7,["G1909","G749"]],[7,9,["G4487"]],[9,11,["G2316"]],[11,12,["G1096"]],[12,13,["G1909"]],[13,14,["G2491"]],[14,15,["G3588"]],[15,16,["G5207"]],[16,18,["G2197"]],[18,19,["G2197"]],[19,20,["G3588"]],[20,21,["G2048"]]]},{"k":25028,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G1519"]],[4,5,["G3956"]],[5,6,["G3588"]],[6,8,["G4066"]],[8,9,["G2446"]],[9,10,["G2784"]],[10,12,["G908"]],[12,14,["G3341"]],[14,15,["G1519"]],[15,17,["G859"]],[17,19,["G266"]]]},{"k":25029,"v":[[0,1,["G5613"]],[1,4,["G1125"]],[4,5,["G1722"]],[5,7,["G976"]],[7,10,["G3056"]],[10,12,["G2268"]],[12,13,["G3588"]],[13,14,["G4396"]],[14,15,["G3004"]],[15,17,["G5456"]],[17,20,["G994"]],[20,21,["G1722"]],[21,22,["G3588"]],[22,23,["G2048"]],[23,24,["G2090"]],[24,26,["G3588"]],[26,27,["G3598"]],[27,30,["G2962"]],[30,31,["G4160"]],[31,32,["G846"]],[32,33,["G5147"]],[33,34,["G2117"]]]},{"k":25030,"v":[[0,1,["G3956"]],[1,2,["G5327"]],[2,5,["G4137"]],[5,6,["G2532"]],[6,7,["G3956"]],[7,8,["G3735"]],[8,9,["G2532"]],[9,10,["G1015"]],[10,14,["G5013"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G4646"]],[17,20,["G2071"]],[20,21,["G2117"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,25,["G5138"]],[25,27,["(G1519","G3598)"]],[27,29,["G3006"]]]},{"k":25031,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G4561"]],[3,5,["G3700"]],[5,6,["G3588"]],[6,7,["G4992"]],[7,9,["G2316"]]]},{"k":25032,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,6,["G3793"]],[6,9,["G1607"]],[9,12,["G907"]],[12,13,["G5259"]],[13,14,["G846"]],[14,16,["G1081"]],[16,18,["G2191"]],[18,19,["G5101"]],[19,21,["G5263"]],[21,22,["G5213"]],[22,24,["G5343"]],[24,25,["G575"]],[25,26,["G3588"]],[26,27,["G3709"]],[27,29,["G3195"]]]},{"k":25033,"v":[[0,2,["G4160"]],[2,3,["G3767"]],[3,4,["G2590"]],[4,5,["G514"]],[5,7,["G3341"]],[7,8,["G2532"]],[8,9,["G756"]],[9,10,["G3361"]],[10,12,["G3004"]],[12,13,["G1722"]],[13,14,["G1438"]],[14,16,["G2192"]],[16,17,["G11"]],[17,20,["G3962"]],[20,21,["G1063"]],[21,23,["G3004"]],[23,25,["G5213"]],[25,26,["G3754"]],[26,27,["G2316"]],[27,29,["G1410"]],[29,30,["G1537"]],[30,31,["G5130"]],[31,32,["G3037"]],[32,35,["G1453"]],[35,36,["G5043"]],[36,38,["G11"]]]},{"k":25034,"v":[[0,1,["G1161"]],[1,2,["G2235"]],[2,3,["G2532"]],[3,4,["G3588"]],[4,5,["G513"]],[5,7,["G2749"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,10,["G4491"]],[10,12,["G3588"]],[12,13,["G1186"]],[13,14,["G3956"]],[14,15,["G1186"]],[15,16,["G3767"]],[16,20,["G4160","G3361"]],[20,21,["G2570"]],[21,22,["G2590"]],[22,25,["G1581"]],[25,26,["G2532"]],[26,27,["G906"]],[27,28,["G1519"]],[28,30,["G4442"]]]},{"k":25035,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3793"]],[3,4,["G1905"]],[4,5,["G846"]],[5,6,["G3004"]],[6,7,["G5101"]],[7,10,["G4160"]],[10,11,["G3767"]]]},{"k":25036,"v":[[0,1,["(G1161)"]],[1,2,["G611"]],[2,4,["G3004"]],[4,6,["G846"]],[6,9,["G2192"]],[9,10,["G1417"]],[10,11,["G5509"]],[11,14,["G3330"]],[14,18,["G2192"]],[18,19,["G3361"]],[19,20,["G2532"]],[20,23,["G2192"]],[23,24,["G1033"]],[24,27,["G4160"]],[27,28,["G3668"]]]},{"k":25037,"v":[[0,1,["G1161"]],[1,2,["G2064"]],[2,3,["G2532"]],[3,4,["G5057"]],[4,7,["G907"]],[7,8,["G2532"]],[8,9,["G2036"]],[9,10,["G4314"]],[10,11,["G846"]],[11,12,["G1320"]],[12,13,["G5101"]],[13,16,["G4160"]]]},{"k":25038,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G4238"]],[6,7,["G3367"]],[7,8,["G4119"]],[8,9,["G3844"]],[9,13,["G1299"]],[13,14,["G5213"]]]},{"k":25039,"v":[[0,1,["G1161"]],[1,3,["G4754"]],[3,4,["G2532"]],[4,5,["G1905"]],[5,7,["G846"]],[7,8,["G3004"]],[8,9,["G2532"]],[9,10,["G5101"]],[10,12,["G2248"]],[12,13,["G4160"]],[13,14,["G2532"]],[14,16,["G2036"]],[16,17,["G4314"]],[17,18,["G846"]],[18,20,["G1286"]],[20,23,["G3367"]],[23,24,["G3366"]],[24,27,["G4811"]],[27,28,["G2532"]],[28,30,["G714"]],[30,32,["G5216"]],[32,33,["G3800"]]]},{"k":25040,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G2992"]],[4,7,["G4328"]],[7,8,["G2532"]],[8,10,["G3956"]],[10,11,["G1260"]],[11,12,["G1722"]],[12,13,["G848"]],[13,14,["G2588"]],[14,15,["G4012"]],[15,16,["G2491"]],[16,23,["G3379","G846","G1498","G3588","G5547"]]]},{"k":25041,"v":[[0,1,["G2491"]],[1,2,["G611"]],[2,3,["G3004"]],[3,6,["G537"]],[6,7,["G1473"]],[7,8,["G3303"]],[8,9,["G907"]],[9,10,["G5209"]],[10,12,["G5204"]],[12,13,["G1161"]],[13,15,["G2478"]],[15,17,["G3450"]],[17,18,["G2064"]],[18,19,["G3588"]],[19,20,["G2438"]],[20,22,["G3739"]],[22,23,["G5266"]],[23,25,["G1510"]],[25,26,["G3756"]],[26,27,["G2425"]],[27,29,["G3089"]],[29,30,["G846"]],[30,32,["G907"]],[32,33,["G5209"]],[33,34,["G1722"]],[34,36,["G40"]],[36,37,["G4151"]],[37,38,["G2532"]],[38,40,["G4442"]]]},{"k":25042,"v":[[0,1,["G3739"]],[1,2,["G4425"]],[2,4,["G1722"]],[4,5,["G846"]],[5,6,["G5495"]],[6,7,["G2532"]],[7,11,["G1245"]],[11,12,["G848"]],[12,13,["G257"]],[13,14,["G2532"]],[14,16,["G4863"]],[16,17,["G3588"]],[17,18,["G4621"]],[18,19,["G1519"]],[19,20,["G848"]],[20,21,["G596"]],[21,22,["G1161"]],[22,23,["G3588"]],[23,24,["G892"]],[24,27,["G2618"]],[27,29,["G4442"]],[29,30,["G762"]]]},{"k":25043,"v":[[0,1,["G2532","(G3767","G3303)"]],[1,2,["G4183"]],[2,4,["G2087"]],[4,7,["G3870"]],[7,8,["G2097"]],[8,11,["G3588"]],[11,12,["G2992"]]]},{"k":25044,"v":[[0,1,["G1161"]],[1,2,["G2264"]],[2,3,["G3588"]],[3,4,["G5076"]],[4,6,["G1651"]],[6,7,["G5259"]],[7,8,["G846"]],[8,9,["G4012"]],[9,10,["G2266"]],[10,11,["G846"]],[11,12,["G80"]],[12,13,["G5376"]],[13,14,["G1135"]],[14,15,["G2532"]],[15,16,["G4012"]],[16,17,["G3956"]],[17,19,["G4190"]],[19,20,["G3739"]],[20,21,["G2264"]],[21,23,["G4160"]]]},{"k":25045,"v":[[0,1,["G4369"]],[1,2,["G2532"]],[2,3,["G5124"]],[3,4,["G1909"]],[4,5,["G3956"]],[5,6,["G2532"]],[6,9,["G2623"]],[9,10,["G2491"]],[10,11,["G1722"]],[11,12,["G5438"]]]},{"k":25046,"v":[[0,1,["G1161"]],[1,3,["G537"]],[3,4,["G3588"]],[4,5,["G2992"]],[5,7,["G907"]],[7,11,["G1096"]],[11,13,["G2424"]],[13,14,["G2532"]],[14,16,["G907"]],[16,17,["G2532"]],[17,18,["G4336"]],[18,19,["G3588"]],[19,20,["G3772"]],[20,22,["G455"]]]},{"k":25047,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G40"]],[3,4,["G4151"]],[4,5,["G2597"]],[5,8,["G4984"]],[8,9,["G1491"]],[9,10,["G5616"]],[10,12,["G4058"]],[12,13,["G1909"]],[13,14,["G846"]],[14,15,["G2532"]],[15,17,["G5456"]],[17,18,["G1096"]],[18,19,["G1537"]],[19,20,["G3772"]],[20,22,["G3004"]],[22,23,["G4771"]],[23,24,["G1488"]],[24,25,["G3450"]],[25,26,["G27"]],[26,27,["G5207"]],[27,28,["G1722"]],[28,29,["G4671"]],[29,33,["G2106"]]]},{"k":25048,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G846"]],[3,4,["G756"]],[4,6,["G2258"]],[6,7,["G5616"]],[7,11,["G5144","G2094"]],[11,12,["G5607"]],[12,13,["G5613"]],[13,15,["G3543"]],[15,16,["G3588"]],[16,17,["G5207"]],[17,19,["G2501"]],[19,25,["G2242"]]]},{"k":25049,"v":[[0,6,["G3158"]],[6,12,["G3017"]],[12,18,["G3197"]],[18,24,["G2388"]],[24,30,["G2501"]]]},{"k":25050,"v":[[0,6,["G3161"]],[6,12,["G301"]],[12,18,["G3486"]],[18,24,["G2069"]],[24,30,["G3477"]]]},{"k":25051,"v":[[0,6,["G3092"]],[6,12,["G3161"]],[12,18,["G4584"]],[18,24,["G2501"]],[24,30,["G2455"]]]},{"k":25052,"v":[[0,6,["G2490"]],[6,12,["G4488"]],[12,18,["G2216"]],[18,24,["G4528"]],[24,30,["G3518"]]]},{"k":25053,"v":[[0,6,["G3197"]],[6,12,["G78"]],[12,18,["G2973"]],[18,24,["G1678"]],[24,30,["G2262"]]]},{"k":25054,"v":[[0,6,["G2499"]],[6,12,["G1663"]],[12,18,["G2497"]],[18,24,["G3158"]],[24,30,["G3017"]]]},{"k":25055,"v":[[0,6,["G4826"]],[6,12,["G2455"]],[12,18,["G2501"]],[18,24,["G2494"]],[24,30,["G1662"]]]},{"k":25056,"v":[[0,6,["G3190"]],[6,12,["G3104"]],[12,18,["G3160"]],[18,24,["G3481"]],[24,30,["G1138"]]]},{"k":25057,"v":[[0,6,["G2421"]],[6,12,["G5601"]],[12,18,["G1003"]],[18,24,["G4533"]],[24,30,["G3476"]]]},{"k":25058,"v":[[0,6,["G284"]],[6,12,["G689"]],[12,18,["G2074"]],[18,24,["G5329"]],[24,30,["G2455"]]]},{"k":25059,"v":[[0,6,["G2384"]],[6,12,["G2464"]],[12,18,["G11"]],[18,24,["G2291"]],[24,30,["G3493"]]]},{"k":25060,"v":[[0,6,["G4562"]],[6,12,["G4466"]],[12,18,["G5317"]],[18,24,["G1443"]],[24,30,["G4527"]]]},{"k":25061,"v":[[0,6,["G2536"]],[6,12,["G742"]],[12,18,["G4590"]],[18,24,["G3575"]],[24,30,["G2984"]]]},{"k":25062,"v":[[0,6,["G3103"]],[6,12,["G1802"]],[12,18,["G2391"]],[18,24,["G3121"]],[24,30,["G2536"]]]},{"k":25063,"v":[[0,6,["G1800"]],[6,12,["G4589"]],[12,18,["G76"]],[18,24,["G2316"]]]},{"k":25064,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,4,["G4134"]],[4,7,["G40"]],[7,8,["G4151"]],[8,9,["G5290"]],[9,10,["G575"]],[10,11,["G2446"]],[11,12,["G2532"]],[12,14,["G71"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G4151"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G2048"]]]},{"k":25065,"v":[[0,2,["G5062"]],[2,3,["G2250"]],[3,4,["G3985"]],[4,5,["G5259"]],[5,6,["G3588"]],[6,7,["G1228"]],[7,8,["G2532"]],[8,9,["G1722"]],[9,10,["G1565"]],[10,11,["G2250"]],[11,13,["(G3756)"]],[13,14,["G5315"]],[14,15,["G3762"]],[15,16,["G2532"]],[16,18,["G846"]],[18,20,["G4931"]],[20,22,["G5305"]],[22,23,["G3983"]]]},{"k":25066,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1228"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G1487"]],[7,9,["G1488"]],[9,11,["G5207"]],[11,13,["G2316"]],[13,14,["G2036"]],[14,15,["G5129"]],[15,16,["G3037"]],[16,17,["G2443"]],[17,20,["G1096"]],[20,21,["G740"]]]},{"k":25067,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611","(G4314)"]],[3,4,["G846"]],[4,5,["G3004"]],[5,8,["G1125"]],[8,9,["G3754"]],[9,10,["G444"]],[10,12,["G3756"]],[12,13,["G2198"]],[13,14,["G1909"]],[14,15,["G740"]],[15,16,["G3441"]],[16,17,["G235"]],[17,18,["G1909"]],[18,19,["G3956"]],[19,20,["G4487"]],[20,22,["G2316"]]]},{"k":25068,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1228"]],[3,6,["G321","G846"]],[6,7,["G1519"]],[7,9,["G5308"]],[9,10,["G3735"]],[10,11,["G1166"]],[11,13,["G846"]],[13,14,["G3956"]],[14,15,["G3588"]],[15,16,["G932"]],[16,18,["G3588"]],[18,19,["G3625"]],[19,20,["G1722"]],[20,22,["G4743"]],[22,24,["G5550"]]]},{"k":25069,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1228"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G537"]],[7,8,["G5026"]],[8,9,["G1849"]],[9,12,["G1325"]],[12,13,["G4671"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G1391"]],[16,18,["G846"]],[18,19,["G3754"]],[19,22,["G3860"]],[22,24,["G1698"]],[24,25,["G2532"]],[25,27,["G3739","G1437"]],[27,29,["G2309"]],[29,31,["G1325"]],[31,32,["G846"]]]},{"k":25070,"v":[[0,1,["G1437"]],[1,2,["G4771"]],[2,3,["G3767"]],[3,5,["G4352"]],[5,6,["G3450"]],[6,7,["G3956"]],[7,9,["G2071"]],[9,10,["G4675"]]]},{"k":25071,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G5217"]],[8,10,["G3694"]],[10,11,["G3450"]],[11,12,["G4567"]],[12,13,["G1063"]],[13,16,["G1125"]],[16,19,["G4352"]],[19,21,["G2962"]],[21,22,["G4675"]],[22,23,["G2316"]],[23,24,["G2532"]],[24,25,["G846"]],[25,26,["G3441"]],[26,29,["G3000"]]]},{"k":25072,"v":[[0,1,["G2532"]],[1,3,["G71"]],[3,4,["G846"]],[4,5,["G1519"]],[5,6,["G2419"]],[6,7,["G2532"]],[7,8,["G2476"]],[8,9,["G846"]],[9,10,["G1909"]],[10,12,["G4419"]],[12,14,["G3588"]],[14,15,["G2411"]],[15,16,["G2532"]],[16,17,["G2036"]],[17,19,["G846"]],[19,20,["G1487"]],[20,22,["G1488"]],[22,24,["G5207"]],[24,26,["G2316"]],[26,27,["G906"]],[27,28,["G4572"]],[28,29,["G2736"]],[29,31,["G1782"]]]},{"k":25073,"v":[[0,1,["G1063"]],[1,4,["G1125"]],[4,10,["G1781","G848","G32"]],[10,11,["G4012"]],[11,12,["G4675"]],[12,14,["G1314"]],[14,15,["G4571"]]]},{"k":25074,"v":[[0,1,["G2532"]],[1,2,["G1909"]],[2,4,["G5495"]],[4,9,["G142","G4571"]],[9,13,["G3379"]],[13,15,["G4350"]],[15,16,["G4675"]],[16,17,["G4228"]],[17,18,["G4314"]],[18,20,["G3037"]]]},{"k":25075,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,6,["G846"]],[6,9,["G2046"]],[9,12,["G3756"]],[12,13,["G1598"]],[13,15,["G2962"]],[15,16,["G4675"]],[16,17,["G2316"]]]},{"k":25076,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G1228"]],[4,6,["G4931"]],[6,7,["G3956"]],[7,9,["G3986"]],[9,11,["G868"]],[11,12,["G575"]],[12,13,["G846"]],[13,16,["G891","G2540"]]]},{"k":25077,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G5290"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G1411"]],[6,8,["G3588"]],[8,9,["G4151"]],[9,10,["G1519"]],[10,11,["G1056"]],[11,12,["G2532"]],[12,15,["G1831"]],[15,17,["G5345"]],[17,18,["G4012"]],[18,19,["G846"]],[19,20,["G2596"]],[20,21,["G3650"]],[21,22,["G3588"]],[22,25,["G4066"]]]},{"k":25078,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G1321"]],[3,4,["G1722"]],[4,5,["G846"]],[5,6,["G4864"]],[6,8,["G1392"]],[8,9,["G5259"]],[9,10,["G3956"]]]},{"k":25079,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G1519"]],[4,5,["G3478"]],[5,6,["G3757"]],[6,9,["G2258"]],[9,11,["G5142"]],[11,12,["G2532"]],[12,13,["G2596"]],[13,14,["G846"]],[14,15,["G1486"]],[15,18,["G1525"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G4864"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G4521"]],[24,25,["G2250"]],[25,26,["G2532"]],[26,28,["G450"]],[28,31,["G314"]]]},{"k":25080,"v":[[0,1,["G2532"]],[1,4,["G1929"]],[4,6,["G846"]],[6,8,["G975"]],[8,10,["G3588"]],[10,11,["G4396"]],[11,12,["G2268"]],[12,13,["G2532"]],[13,17,["G380"]],[17,18,["G3588"]],[18,19,["G975"]],[19,21,["G2147"]],[21,22,["G3588"]],[22,23,["G5117"]],[23,24,["G3757"]],[24,26,["G2258"]],[26,27,["G1125"]]]},{"k":25081,"v":[[0,2,["G4151"]],[2,5,["G2962"]],[5,7,["G1909"]],[7,8,["G1691"]],[8,9,["G3739","G1752"]],[9,12,["G5548"]],[12,13,["G3165"]],[13,17,["G2097"]],[17,20,["G4434"]],[20,23,["G649"]],[23,24,["G3165"]],[24,26,["G2390"]],[26,27,["G3588"]],[27,28,["G4937","G2588"]],[28,30,["G2784"]],[30,31,["G859"]],[31,34,["G164"]],[34,35,["G2532"]],[35,38,["G309"]],[38,41,["G5185"]],[41,43,["G649"]],[43,44,["G1722"]],[44,45,["G859"]],[45,49,["G2352"]]]},{"k":25082,"v":[[0,2,["G2784"]],[2,4,["G1184"]],[4,5,["G1763"]],[5,8,["G2962"]]]},{"k":25083,"v":[[0,1,["G2532"]],[1,3,["G4428"]],[3,4,["G3588"]],[4,5,["G975"]],[5,10,["G591"]],[10,12,["G3588"]],[12,13,["G5257"]],[13,16,["G2523"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G3788"]],[19,21,["G3956"]],[21,25,["G1722"]],[25,26,["G3588"]],[26,27,["G4864"]],[27,28,["G2258"]],[28,30,["G816"]],[30,31,["G846"]]]},{"k":25084,"v":[[0,1,["G1161"]],[1,3,["G756"]],[3,5,["G3004"]],[5,6,["G4314"]],[6,7,["G846"]],[7,9,["G4594"]],[9,11,["G3778"]],[11,12,["G1124"]],[12,13,["G4137"]],[13,14,["G1722"]],[14,15,["G5216"]],[15,16,["G3775"]]]},{"k":25085,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,5,["G3140","G846"]],[5,6,["G2532"]],[6,7,["G2296"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,10,["G5485"]],[10,11,["G3056"]],[11,13,["G1607"]],[13,15,["G1537"]],[15,16,["G846"]],[16,17,["G4750"]],[17,18,["G2532"]],[18,20,["G3004"]],[20,21,["G2076"]],[21,22,["G3756"]],[22,23,["G3778"]],[23,24,["G2501"]],[24,25,["G5207"]]]},{"k":25086,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,8,["G3843"]],[8,9,["G2046"]],[9,11,["G3427"]],[11,12,["G5026"]],[12,13,["G3850"]],[13,14,["G2395"]],[14,15,["G2323"]],[15,16,["G4572"]],[16,17,["G3745"]],[17,20,["G191"]],[20,21,["G1096"]],[21,22,["G1722"]],[22,23,["G2584"]],[23,24,["G4160"]],[24,25,["G2532"]],[25,26,["G5602"]],[26,27,["G1722"]],[27,28,["G4675"]],[28,29,["G3968"]]]},{"k":25087,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G281"]],[4,6,["G3004"]],[6,8,["G5213"]],[8,9,["G3762"]],[9,10,["G4396"]],[10,11,["G2076"]],[11,12,["G1184"]],[12,13,["G1722"]],[13,15,["G848"]],[15,16,["G3968"]]]},{"k":25088,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,4,["G5213"]],[4,5,["G1909"]],[5,7,["G225"]],[7,8,["G4183"]],[8,9,["G5503"]],[9,10,["G2258"]],[10,11,["G1722"]],[11,12,["G2474"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G2250"]],[15,17,["G2243"]],[17,18,["G3753"]],[18,19,["G3588"]],[19,20,["G3772"]],[20,23,["G2808"]],[23,24,["G5140"]],[24,25,["G2094"]],[25,26,["G2532"]],[26,27,["G1803"]],[27,28,["G3376"]],[28,29,["G5613"]],[29,30,["G3173"]],[30,31,["G3042"]],[31,32,["G1096"]],[32,33,["G1909"]],[33,34,["G3956"]],[34,35,["G3588"]],[35,36,["G1093"]]]},{"k":25089,"v":[[0,1,["G2532"]],[1,2,["G4314"]],[2,3,["G3762"]],[3,5,["G846"]],[5,7,["G2243"]],[7,8,["G3992"]],[8,9,["G1508"]],[9,10,["G1519"]],[10,11,["G4558"]],[11,15,["G4605"]],[15,16,["G4314"]],[16,18,["G1135"]],[18,22,["G5503"]]]},{"k":25090,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,3,["G3015"]],[3,4,["G2258"]],[4,5,["G1722"]],[5,6,["G2474"]],[6,9,["G1909"]],[9,11,["G1666"]],[11,12,["G3588"]],[12,13,["G4396"]],[13,14,["G2532"]],[14,15,["G3762"]],[15,17,["G846"]],[17,19,["G2511"]],[19,20,["G1508"]],[20,21,["G3497"]],[21,22,["G3588"]],[22,23,["G4948"]]]},{"k":25091,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,4,["G1722"]],[4,5,["G3588"]],[5,6,["G4864"]],[6,9,["G191"]],[9,11,["G5023"]],[11,13,["G4130"]],[13,15,["G2372"]]]},{"k":25092,"v":[[0,1,["G2532"]],[1,3,["G450"]],[3,5,["G1544"]],[5,6,["G846"]],[6,7,["G1854"]],[7,9,["G3588"]],[9,10,["G4172"]],[10,11,["G2532"]],[11,12,["G71"]],[12,13,["G846"]],[13,14,["G2193"]],[14,15,["G3588"]],[15,16,["G3790"]],[16,18,["G3588"]],[18,19,["G3735"]],[19,20,["G1909","G3739"]],[20,21,["G846"]],[21,22,["G4172"]],[22,24,["G3618"]],[24,31,["G2630","G846"]]]},{"k":25093,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G1330"]],[3,4,["G1223"]],[4,6,["G3319"]],[6,8,["G846"]],[8,11,["G4198"]]]},{"k":25094,"v":[[0,1,["G2532"]],[1,3,["G2718"]],[3,4,["G1519"]],[4,5,["G2584"]],[5,7,["G4172"]],[7,9,["G1056"]],[9,10,["G2532"]],[10,11,["G2258","G1321"]],[11,12,["G846"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,16,["G4521"]]]},{"k":25095,"v":[[0,1,["G2532"]],[1,4,["G1605"]],[4,5,["G1909"]],[5,6,["G846"]],[6,7,["G1322"]],[7,8,["G3754"]],[8,9,["G846"]],[9,10,["G3056"]],[10,11,["G2258"]],[11,12,["G1722"]],[12,13,["G1849"]]]},{"k":25096,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G4864"]],[4,6,["G2258"]],[6,8,["G444"]],[8,10,["G2192"]],[10,12,["G4151"]],[12,15,["G169"]],[15,16,["G1140"]],[16,17,["G2532"]],[17,19,["G349"]],[19,22,["G3173"]],[22,23,["G5456"]]]},{"k":25097,"v":[[0,1,["G3004"]],[1,4,["G1436"]],[4,11,["G5101","G2254","G2532","G4671"]],[11,13,["G2424"]],[13,15,["G3479"]],[15,18,["G2064"]],[18,20,["G622"]],[20,21,["G2248"]],[21,23,["G1492"]],[23,24,["G4571"]],[24,25,["G5101"]],[25,27,["G1488"]],[27,28,["G3588"]],[28,30,["G40"]],[30,32,["G2316"]]]},{"k":25098,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2008"]],[3,4,["G846"]],[4,5,["G3004"]],[5,8,["G5392"]],[8,9,["G2532"]],[9,10,["G1831"]],[10,12,["G1537"]],[12,13,["G846"]],[13,14,["G2532"]],[14,16,["G3588"]],[16,17,["G1140"]],[17,19,["G4496"]],[19,20,["G846"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G3319"]],[23,25,["G1831"]],[25,27,["G575"]],[27,28,["G846"]],[28,29,["G2532"]],[29,30,["G984"]],[30,31,["G846"]],[31,32,["G3367"]]]},{"k":25099,"v":[[0,1,["G2532"]],[1,3,["(G1909)"]],[3,4,["G3956"]],[4,5,["G2285","G1096"]],[5,6,["G2532"]],[6,7,["G4814"]],[7,8,["G4314"]],[8,9,["G240"]],[9,10,["G3004"]],[10,11,["G5101"]],[11,13,["G3056"]],[13,15,["G3778"]],[15,16,["G3754"]],[16,17,["G1722"]],[17,18,["G1849"]],[18,19,["G2532"]],[19,20,["G1411"]],[20,22,["G2004"]],[22,23,["G3588"]],[23,24,["G169"]],[24,25,["G4151"]],[25,26,["G2532"]],[26,29,["G1831"]]]},{"k":25100,"v":[[0,1,["G2532"]],[1,3,["G2279"]],[3,4,["G4012"]],[4,5,["G846"]],[5,7,["G1607"]],[7,8,["G1519"]],[8,9,["G3956"]],[9,10,["G5117"]],[10,12,["G3588"]],[12,15,["G4066"]]]},{"k":25101,"v":[[0,1,["G1161"]],[1,3,["G450"]],[3,5,["G1537"]],[5,6,["G3588"]],[6,7,["G4864"]],[7,9,["G1525"]],[9,10,["G1519"]],[10,11,["G4613"]],[11,12,["G3614"]],[12,13,["G1161"]],[13,14,["G4613"]],[14,16,["G3994"]],[16,17,["G2258"]],[17,19,["G4912"]],[19,21,["G3173"]],[21,22,["G4446"]],[22,23,["G2532"]],[23,25,["G2065"]],[25,26,["G846"]],[26,27,["G4012"]],[27,28,["G846"]]]},{"k":25102,"v":[[0,1,["G2532"]],[1,3,["G2186"]],[3,4,["G1883"]],[4,5,["G846"]],[5,7,["G2008"]],[7,8,["G3588"]],[8,9,["G4446"]],[9,10,["G2532"]],[10,12,["G863"]],[12,13,["G846"]],[13,14,["G1161"]],[14,15,["G3916"]],[15,17,["G450"]],[17,19,["G1247"]],[19,21,["G846"]]]},{"k":25103,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G2246"]],[4,6,["G1416"]],[6,7,["G3956"]],[7,8,["G3745"]],[8,10,["G2192"]],[10,12,["G770"]],[12,14,["G4164"]],[14,15,["G3554"]],[15,16,["G71"]],[16,17,["G846"]],[17,18,["G4314"]],[18,19,["G846"]],[19,20,["G1161"]],[20,21,["G3588"]],[21,25,["G2007","G5495"]],[25,26,["G1538"]],[26,27,["G1520"]],[27,29,["G846"]],[29,31,["G2323"]],[31,32,["G846"]]]},{"k":25104,"v":[[0,1,["G1161"]],[1,2,["G1140"]],[2,3,["G2532"]],[3,4,["G1831"]],[4,6,["G575"]],[6,7,["G4183"]],[7,9,["G2896"]],[9,10,["G2532"]],[10,11,["G3004"]],[11,12,["G4771"]],[12,13,["G1488"]],[13,14,["G5547"]],[14,15,["G3588"]],[15,16,["G5207"]],[16,18,["G2316"]],[18,19,["G2532"]],[19,21,["G2008"]],[21,23,["G1439"]],[23,24,["G846"]],[24,25,["G3756"]],[25,27,["G2980"]],[27,28,["G3754"]],[28,30,["G1492"]],[30,32,["G846"]],[32,33,["G1511"]],[33,34,["G5547"]]]},{"k":25105,"v":[[0,1,["G1161"]],[1,4,["G1096"]],[4,5,["G2250"]],[5,7,["G1831"]],[7,9,["G4198"]],[9,10,["G1519"]],[10,12,["G2048"]],[12,13,["G5117"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G3793"]],[16,17,["G2212"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G2064"]],[20,21,["G2193"]],[21,22,["G846"]],[22,23,["G2532"]],[23,24,["G2722"]],[24,25,["G846"]],[25,29,["G3361"]],[29,30,["G4198"]],[30,31,["G575"]],[31,32,["G846"]]]},{"k":25106,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G3165"]],[6,7,["G1163"]],[7,8,["G2097"]],[8,9,["G3588"]],[9,10,["G932"]],[10,12,["G2316"]],[12,14,["G2087"]],[14,15,["G4172"]],[15,16,["G2532"]],[16,17,["G3754"]],[17,18,["G1519","G5124"]],[18,21,["G649"]]]},{"k":25107,"v":[[0,1,["G2532"]],[1,3,["G2258","G2784"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G4864"]],[6,8,["G1056"]]]},{"k":25108,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,8,["G3588"]],[8,9,["G3793"]],[9,11,["G1945"]],[11,12,["G846"]],[12,14,["G191"]],[14,15,["G3588"]],[15,16,["G3056"]],[16,18,["G2316","(G2532)"]],[18,19,["G846"]],[19,20,["G2258","G2476"]],[20,21,["G3844"]],[21,22,["G3588"]],[22,23,["G3041"]],[23,25,["G1082"]]]},{"k":25109,"v":[[0,1,["G2532"]],[1,2,["G1492"]],[2,3,["G1417"]],[3,4,["G4143"]],[4,5,["G2476"]],[5,6,["G3844"]],[6,7,["G3588"]],[7,8,["G3041"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G231"]],[11,13,["G576"]],[13,15,["G576"]],[15,16,["G846"]],[16,19,["G637"]],[19,21,["G1350"]]]},{"k":25110,"v":[[0,1,["G1161"]],[1,3,["G1684"]],[3,4,["G1519"]],[4,5,["G1520"]],[5,7,["G3588"]],[7,8,["G4143"]],[8,9,["G3739"]],[9,10,["G2258"]],[10,11,["G4613"]],[11,13,["G2065"]],[13,14,["G846"]],[14,19,["G1877"]],[19,21,["G3641"]],[21,22,["G575"]],[22,23,["G3588"]],[23,24,["G1093"]],[24,25,["G2532"]],[25,28,["G2523"]],[28,30,["G1321"]],[30,31,["G3588"]],[31,32,["G3793"]],[32,34,["G1537"]],[34,35,["G3588"]],[35,36,["G4143"]]]},{"k":25111,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,5,["G3973"]],[5,6,["G2980"]],[6,8,["G2036"]],[8,9,["G4314"]],[9,10,["G4613"]],[10,12,["G1877"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G899"]],[15,16,["G2532"]],[16,18,["G5465"]],[18,19,["G5216"]],[19,20,["G1350"]],[20,21,["G1519"]],[21,23,["G61"]]]},{"k":25112,"v":[[0,1,["G2532"]],[1,2,["G4613"]],[2,3,["G611"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G1988"]],[7,10,["G2872","(G1223)"]],[10,11,["G3650"]],[11,12,["G3588"]],[12,13,["G3571"]],[13,16,["G2983"]],[16,17,["G3762"]],[17,18,["G1161"]],[18,19,["G1909"]],[19,20,["G4675"]],[20,21,["G4487"]],[21,25,["G5465"]],[25,26,["G3588"]],[26,27,["G1350"]]]},{"k":25113,"v":[[0,1,["G2532"]],[1,5,["G5124"]],[5,6,["G4160"]],[6,8,["G4788"]],[8,10,["G4183"]],[10,11,["G4128"]],[11,13,["G2486"]],[13,14,["G1161"]],[14,15,["G846"]],[15,16,["G1350"]],[16,17,["G1284"]]]},{"k":25114,"v":[[0,1,["G2532"]],[1,3,["G2656"]],[3,6,["G3353"]],[6,7,["G3588"]],[7,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2087"]],[11,12,["G4143"]],[12,16,["G2064"]],[16,18,["G4815"]],[18,19,["G846"]],[19,20,["G2532"]],[20,22,["G2064"]],[22,23,["G2532"]],[23,24,["G4130"]],[24,25,["G297"]],[25,26,["G3588"]],[26,27,["G4143"]],[27,29,["G5620"]],[29,30,["G846"]],[30,33,["G1036"]]]},{"k":25115,"v":[[0,1,["G1161"]],[1,2,["G4613"]],[2,3,["G4074"]],[3,4,["G1492"]],[4,8,["G4363"]],[8,10,["G2424"]],[10,11,["G1119"]],[11,12,["G3004"]],[12,13,["G1831"]],[13,14,["G575"]],[14,15,["G1700"]],[15,16,["G3754"]],[16,18,["G1510"]],[18,20,["G268"]],[20,21,["G435"]],[21,23,["G2962"]]]},{"k":25116,"v":[[0,1,["G1063"]],[1,2,["G846"]],[2,4,["G2285","G4023"]],[4,5,["G2532"]],[5,6,["G3956"]],[6,7,["G3588"]],[7,9,["G4862"]],[9,10,["G846"]],[10,11,["G1909"]],[11,12,["G3588"]],[12,13,["G61"]],[13,15,["G3588"]],[15,16,["G2486"]],[16,17,["G3739"]],[17,20,["G4815"]]]},{"k":25117,"v":[[0,1,["G1161"]],[1,2,["G3668"]],[2,4,["G2532"]],[4,5,["G2385"]],[5,6,["G2532"]],[6,7,["G2491"]],[7,9,["G5207"]],[9,11,["G2199"]],[11,12,["G3739"]],[12,13,["G2258"]],[13,14,["G2844"]],[14,16,["G4613"]],[16,17,["G2532"]],[17,18,["G2424"]],[18,19,["G2036"]],[19,20,["G4314"]],[20,21,["G4613"]],[21,22,["G5399"]],[22,23,["G3361"]],[23,24,["G575"]],[24,25,["G3568"]],[25,27,["(G2071)"]],[27,28,["G2221"]],[28,29,["G444"]]]},{"k":25118,"v":[[0,1,["G2532"]],[1,5,["G2609"]],[5,7,["G4143"]],[7,8,["G1909"]],[8,9,["G1093"]],[9,11,["G863"]],[11,12,["G537"]],[12,14,["G190"]],[14,15,["G846"]]]},{"k":25119,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G846"]],[7,8,["G1511"]],[8,9,["G1722"]],[9,11,["G3391"]],[11,12,["G4172","(G2532)"]],[12,13,["G2400"]],[13,15,["G435"]],[15,16,["G4134"]],[16,18,["G3014"]],[18,19,["(G2532)"]],[19,20,["G1492"]],[20,21,["G2424"]],[21,22,["G4098"]],[22,23,["G1909"]],[23,25,["G4383"]],[25,27,["G1189"]],[27,28,["G846"]],[28,29,["G3004"]],[29,30,["G2962"]],[30,31,["G1437"]],[31,33,["G2309"]],[33,35,["G1410"]],[35,38,["G2511","G3165"]]]},{"k":25120,"v":[[0,1,["G2532"]],[1,4,["G1614"]],[4,6,["G5495"]],[6,8,["G680"]],[8,9,["G846"]],[9,10,["G2036"]],[10,12,["G2309"]],[12,15,["G2511"]],[15,16,["G2532"]],[16,17,["G2112"]],[17,18,["G3588"]],[18,19,["G3014"]],[19,20,["G565"]],[20,21,["G575"]],[21,22,["G846"]]]},{"k":25121,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3853"]],[3,4,["G846"]],[4,6,["G2036"]],[6,8,["G3367"]],[8,9,["G235"]],[9,10,["G565"]],[10,12,["G1166"]],[12,13,["G4572"]],[13,15,["G3588"]],[15,16,["G2409"]],[16,17,["G2532"]],[17,18,["G4374"]],[18,19,["G4012"]],[19,20,["G4675"]],[20,21,["G2512"]],[21,23,["G2531"]],[23,24,["G3475"]],[24,25,["G4367"]],[25,26,["G1519"]],[26,28,["G3142"]],[28,30,["G846"]]]},{"k":25122,"v":[[0,1,["G1161"]],[1,5,["G3123"]],[5,10,["G1330","G3056"]],[10,11,["G4012"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G4183"]],[14,15,["G3793"]],[15,17,["G4905"]],[17,19,["G191"]],[19,20,["G2532"]],[20,23,["G2323"]],[23,24,["G5259"]],[24,25,["G846"]],[25,26,["G575"]],[26,27,["G848"]],[27,28,["G769"]]]},{"k":25123,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G2258","G5298"]],[3,5,["G1722"]],[5,6,["G3588"]],[6,7,["G2048"]],[7,8,["G2532"]],[8,9,["G4336"]]]},{"k":25124,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,6,["G1722"]],[6,8,["G3391"]],[8,9,["G2250"]],[9,10,["(G2532)"]],[10,11,["G846"]],[11,12,["G2258"]],[12,13,["G1321"]],[13,14,["G2532"]],[14,16,["G2258"]],[16,17,["G5330"]],[17,18,["G2532"]],[18,22,["G3547"]],[22,24,["G2521"]],[24,25,["G3739"]],[25,26,["G2258"]],[26,27,["G2064"]],[27,29,["G1537"]],[29,30,["G3956"]],[30,31,["G2968"]],[31,33,["G1056"]],[33,34,["G2532"]],[34,35,["G2449"]],[35,36,["G2532"]],[36,37,["G2419"]],[37,38,["G2532"]],[38,40,["G1411"]],[40,43,["G2962"]],[43,44,["G2258"]],[44,47,["G2390"]],[47,48,["G846"]]]},{"k":25125,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G435"]],[3,4,["G5342"]],[4,5,["G1909"]],[5,7,["G2825"]],[7,9,["G444"]],[9,10,["G3739"]],[10,11,["G2258"]],[11,15,["G3886"]],[15,16,["G2532"]],[16,18,["G2212"]],[18,23,["G1533","G846"]],[23,24,["G2532"]],[24,26,["G5087"]],[26,28,["G1799"]],[28,29,["G846"]]]},{"k":25126,"v":[[0,1,["G2532"]],[1,5,["G3361"]],[5,6,["G2147"]],[6,7,["G1223"]],[7,8,["G4169"]],[8,14,["G1533","G846"]],[14,16,["G1223"]],[16,17,["G3588"]],[17,18,["G3793"]],[18,20,["G305"]],[20,21,["G1909"]],[21,22,["G3588"]],[22,23,["G1430"]],[23,24,["G2532"]],[24,27,["G2524","G846"]],[27,28,["G1223"]],[28,29,["G3588"]],[29,30,["G2766"]],[30,31,["G4862"]],[31,33,["G2826"]],[33,34,["G1519"]],[34,35,["G3588"]],[35,36,["G3319"]],[36,37,["G1715"]],[37,38,["G2424"]]]},{"k":25127,"v":[[0,1,["G2532"]],[1,4,["G1492"]],[4,5,["G846"]],[5,6,["G4102"]],[6,8,["G2036"]],[8,10,["G846"]],[10,11,["G444"]],[11,12,["G4675"]],[12,13,["G266"]],[13,15,["G863"]],[15,16,["G4671"]]]},{"k":25128,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1122"]],[3,4,["G2532"]],[4,5,["G3588"]],[5,6,["G5330"]],[6,7,["G756"]],[7,9,["G1260"]],[9,10,["G3004"]],[10,11,["G5101"]],[11,12,["G2076"]],[12,13,["G3778"]],[13,14,["G3739"]],[14,15,["G2980"]],[15,16,["G988"]],[16,17,["G5101"]],[17,18,["G1410"]],[18,19,["G863"]],[19,20,["G266"]],[20,21,["G1508"]],[21,22,["G2316"]],[22,23,["G3441"]]]},{"k":25129,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,4,["G1921"]],[4,5,["G846"]],[5,6,["G1261"]],[6,8,["G611"]],[8,9,["G2036"]],[9,10,["G4314"]],[10,11,["G846"]],[11,12,["G5101"]],[12,13,["G1260"]],[13,15,["G1722"]],[15,16,["G5216"]],[16,17,["G2588"]]]},{"k":25130,"v":[[0,1,["G5101"]],[1,2,["G2076"]],[2,3,["G2123"]],[3,5,["G2036"]],[5,6,["G4675"]],[6,7,["G266"]],[7,9,["G863"]],[9,10,["G4671"]],[10,11,["G2228"]],[11,13,["G2036"]],[13,15,["G1453"]],[15,16,["G2532"]],[16,17,["G4043"]]]},{"k":25131,"v":[[0,1,["G1161"]],[1,2,["G2443"]],[2,5,["G1492"]],[5,6,["G3754"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G444"]],[10,11,["G2192"]],[11,12,["G1849"]],[12,13,["G1909"]],[13,14,["G1093"]],[14,16,["G863"]],[16,17,["G266"]],[17,19,["G2036"]],[19,21,["G3588"]],[21,25,["G3886"]],[25,27,["G3004"]],[27,29,["G4671"]],[29,30,["G1453"]],[30,31,["G2532"]],[31,33,["G142"]],[33,34,["G4675"]],[34,35,["G2826"]],[35,36,["G2532"]],[36,37,["G4198"]],[37,38,["G1519"]],[38,39,["G4675"]],[39,40,["G3624"]]]},{"k":25132,"v":[[0,1,["G2532"]],[1,2,["G3916"]],[2,5,["G450"]],[5,6,["G1799"]],[6,7,["G846"]],[7,10,["G142"]],[10,12,["G1909","G3739"]],[12,14,["G2621"]],[14,16,["G565"]],[16,17,["G1519"]],[17,19,["G848"]],[19,20,["G3624"]],[20,21,["G1392"]],[21,22,["G2316"]]]},{"k":25133,"v":[[0,1,["G2532"]],[1,5,["G1611","G2983","G537"]],[5,6,["G2532"]],[6,8,["G1392"]],[8,9,["G2316"]],[9,10,["G2532"]],[10,12,["G4130"]],[12,14,["G5401"]],[14,15,["G3004"]],[15,18,["G1492"]],[18,20,["G3861"]],[20,22,["G4594"]]]},{"k":25134,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,4,["G5023"]],[4,7,["G1831"]],[7,8,["G2532"]],[8,9,["G2300"]],[9,11,["G5057"]],[11,12,["G3686"]],[12,13,["G3018"]],[13,14,["G2521"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,19,["G5058"]],[19,20,["G2532"]],[20,22,["G2036"]],[22,24,["G846"]],[24,25,["G190"]],[25,26,["G3427"]]]},{"k":25135,"v":[[0,1,["G2532"]],[1,3,["G2641"]],[3,4,["G537"]],[4,6,["G450"]],[6,8,["G190"]],[8,9,["G846"]]]},{"k":25136,"v":[[0,1,["G2532"]],[1,2,["G3018"]],[2,3,["G4160"]],[3,4,["G846"]],[4,6,["G3173"]],[6,7,["G1403"]],[7,8,["G1722"]],[8,10,["G848"]],[10,11,["G3614"]],[11,12,["G2532"]],[12,14,["G2258"]],[14,16,["G4183"]],[16,17,["G3793"]],[17,19,["G5057"]],[19,20,["G2532"]],[20,22,["G243"]],[22,23,["G3739"]],[23,25,["G2258","G2621"]],[25,26,["G3326"]],[26,27,["G846"]]]},{"k":25137,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G1122"]],[3,4,["G2532"]],[4,5,["G5330"]],[5,6,["G1111"]],[6,7,["G4314"]],[7,8,["G846"]],[8,9,["G3101"]],[9,10,["G3004"]],[10,11,["G1302"]],[11,14,["G2068"]],[14,15,["G2532"]],[15,16,["G4095"]],[16,17,["G3326"]],[17,18,["G5057"]],[18,19,["G2532"]],[19,20,["G268"]]]},{"k":25138,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G846"]],[6,10,["G5198"]],[10,11,["G2192","G5532"]],[11,12,["G3756"]],[12,14,["G2395"]],[14,15,["G235"]],[15,19,["G2192","G2560"]]]},{"k":25139,"v":[[0,2,["G2064"]],[2,3,["G3756"]],[3,5,["G2564"]],[5,7,["G1342"]],[7,8,["G235"]],[8,9,["G268"]],[9,10,["G1519"]],[10,11,["G3341"]]]},{"k":25140,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G1302"]],[6,8,["G3588"]],[8,9,["G3101"]],[9,11,["G2491"]],[11,12,["G3522"]],[12,13,["G4437"]],[13,14,["G2532"]],[14,15,["G4160"]],[15,16,["G1162"]],[16,17,["G2532"]],[17,18,["G3668"]],[18,20,["(G3588)"]],[20,22,["G3588"]],[22,23,["G5330"]],[23,24,["G1161"]],[24,25,["G4674"]],[25,26,["G2068"]],[26,27,["G2532"]],[27,28,["G4095"]]]},{"k":25141,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G1410"]],[6,7,["(G3361)"]],[7,8,["G4160"]],[8,9,["G3588"]],[9,10,["G5207"]],[10,12,["G3588"]],[12,13,["G3567"]],[13,14,["G3522"]],[14,15,["G1722","G3739"]],[15,16,["G3588"]],[16,17,["G3566"]],[17,18,["G2076"]],[18,19,["G3326"]],[19,20,["G846"]]]},{"k":25142,"v":[[0,1,["G1161"]],[1,3,["G2250"]],[3,5,["G2064","(G2532)"]],[5,6,["G3752"]],[6,7,["G3588"]],[7,8,["G3566"]],[8,12,["G522"]],[12,13,["G575"]],[13,14,["G846"]],[14,16,["G5119"]],[16,19,["G3522"]],[19,20,["G1722"]],[20,21,["G1565"]],[21,22,["G2250"]]]},{"k":25143,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,4,["G2532"]],[4,6,["G3850"]],[6,7,["G4314"]],[7,8,["G846"]],[8,10,["G3762"]],[10,11,["G1911"]],[11,13,["G1915"]],[13,16,["G2537"]],[16,17,["G2440"]],[17,18,["G1909"]],[18,20,["G3820"]],[20,22,["G1490"]],[22,24,["G2532"]],[24,25,["G3588"]],[25,26,["G2537"]],[26,29,["G4977"]],[29,30,["G2532"]],[30,31,["G3588"]],[31,32,["G1915"]],[32,33,["G3588"]],[33,37,["G575"]],[37,38,["G3588"]],[38,39,["G2537"]],[39,40,["G4856"]],[40,41,["G3756"]],[41,43,["G3588"]],[43,44,["G3820"]]]},{"k":25144,"v":[[0,1,["G2532"]],[1,3,["G3762"]],[3,4,["G906"]],[4,5,["G3501"]],[5,6,["G3631"]],[6,7,["G1519"]],[7,8,["G3820"]],[8,9,["G779"]],[9,10,["G1490"]],[10,11,["G3588"]],[11,12,["G3501"]],[12,13,["G3631"]],[13,15,["G4486"]],[15,16,["G3588"]],[16,17,["G779"]],[17,18,["G2532"]],[18,19,["(G846)"]],[19,20,["G1632"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G779"]],[23,25,["G622"]]]},{"k":25145,"v":[[0,1,["G235"]],[1,2,["G3501"]],[2,3,["G3631"]],[3,6,["G992"]],[6,7,["G1519"]],[7,8,["G2537"]],[8,9,["G779"]],[9,10,["G2532"]],[10,11,["G297"]],[11,13,["G4933"]]]},{"k":25146,"v":[[0,2,["G3762"]],[2,3,["G2532"]],[3,5,["G4095"]],[5,6,["G3820"]],[6,8,["G2112"]],[8,9,["G2309"]],[9,10,["G3501"]],[10,11,["G1063"]],[11,13,["G3004"]],[13,14,["G3588"]],[14,15,["G3820"]],[15,16,["G2076"]],[16,17,["G5543"]]]},{"k":25147,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,6,["G1722"]],[6,12,["G1207","G4521"]],[12,14,["G846"]],[14,15,["G1279"]],[15,16,["G1223"]],[16,17,["G3588"]],[17,19,["G4702"]],[19,20,["G2532"]],[20,21,["G846"]],[21,22,["G3101"]],[22,23,["G5089"]],[23,24,["G3588"]],[24,27,["G4719"]],[27,28,["G2532"]],[28,30,["G2068"]],[30,31,["G5597"]],[31,35,["G5495"]]]},{"k":25148,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,4,["G3588"]],[4,5,["G5330"]],[5,6,["G2036"]],[6,8,["G846"]],[8,9,["G5101"]],[9,10,["G4160"]],[10,13,["G3739"]],[13,16,["G1832","G3756"]],[16,18,["G4160"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,22,["G4521"]]]},{"k":25149,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611","(G4314)"]],[3,4,["G846"]],[4,5,["G2036"]],[5,12,["G3761","G314"]],[12,13,["G5124"]],[13,14,["G3739"]],[14,15,["G1138"]],[15,16,["G4160"]],[16,17,["G3698"]],[17,18,["G846"]],[18,21,["G3983"]],[21,22,["G2532"]],[22,25,["G5607"]],[25,26,["G3326"]],[26,27,["G846"]]]},{"k":25150,"v":[[0,1,["G5613"]],[1,3,["G1525"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G3624"]],[6,8,["G2316"]],[8,9,["G2532"]],[9,11,["G2983"]],[11,12,["G2532"]],[12,13,["G5315"]],[13,14,["G3588"]],[14,15,["G740","G4286"]],[15,16,["G2532"]],[16,17,["G1325"]],[17,18,["G2532"]],[18,20,["G3588"]],[20,23,["G3326"]],[23,24,["G846"]],[24,25,["G3739"]],[25,29,["G1832","G3756"]],[29,31,["G5315"]],[31,32,["G1508"]],[32,34,["G3588"]],[34,35,["G2409"]],[35,36,["G3441"]]]},{"k":25151,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G3754"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G444"]],[10,11,["G2076"]],[11,12,["G2962"]],[12,13,["G2532"]],[13,15,["G3588"]],[15,16,["G4521"]]]},{"k":25152,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,6,["G2532"]],[6,7,["G1722"]],[7,8,["G2087"]],[8,9,["G4521"]],[9,11,["G846"]],[11,12,["G1525"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G4864"]],[15,16,["G2532"]],[16,17,["G1321"]],[17,18,["G2532"]],[18,19,["G1563"]],[19,20,["G2258"]],[20,22,["G444","(G2532)"]],[22,23,["G846"]],[23,24,["G1188"]],[24,25,["G5495"]],[25,26,["G2258"]],[26,27,["G3584"]]]},{"k":25153,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1122"]],[3,4,["G2532"]],[4,5,["G5330"]],[5,6,["G3906"]],[6,7,["G846"]],[7,8,["G1487"]],[8,11,["G2323"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,15,["G4521"]],[15,16,["G2443"]],[16,19,["G2147"]],[19,21,["G2724"]],[21,23,["G846"]]]},{"k":25154,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G1492"]],[3,4,["G846"]],[4,5,["G1261"]],[5,6,["G2532"]],[6,7,["G2036"]],[7,9,["G3588"]],[9,10,["G444"]],[10,12,["G2192"]],[12,14,["G3584"]],[14,15,["G5495"]],[15,17,["G1453"]],[17,18,["G2532"]],[18,20,["G2476"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G3319"]],[23,24,["G1161"]],[24,25,["G3588"]],[25,26,["G450"]],[26,29,["G2476"]]]},{"k":25155,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,4,["G4314"]],[4,5,["G846"]],[5,8,["G1905"]],[8,9,["G5209"]],[9,11,["G5101"]],[11,14,["G1832"]],[14,16,["G3588"]],[16,18,["G4521"]],[18,21,["G15"]],[21,22,["G2228"]],[22,25,["G2554"]],[25,27,["G4982"]],[27,28,["G5590"]],[28,29,["G2228"]],[29,31,["G622"]],[31,32,[]]]},{"k":25156,"v":[[0,1,["G2532"]],[1,5,["G4017"]],[5,6,["G846"]],[6,7,["G3956"]],[7,9,["G2036"]],[9,11,["G3588"]],[11,12,["G444"]],[12,14,["G1614"]],[14,15,["G4675"]],[15,16,["G5495"]],[16,17,["G1161"]],[17,18,["G3588"]],[18,19,["G4160"]],[19,20,["G3779"]],[20,21,["G2532"]],[21,22,["G846"]],[22,23,["G5495"]],[23,25,["G600"]],[25,26,["G5199"]],[26,27,["G5613"]],[27,28,["G3588"]],[28,29,["G243"]]]},{"k":25157,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,4,["G4130"]],[4,6,["G454"]],[6,7,["G2532"]],[7,8,["G1255"]],[8,11,["G240","G4314"]],[11,12,["G5101"]],[12,15,["G4160","G302"]],[15,17,["G2424"]]]},{"k":25158,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,6,["G1722"]],[6,7,["G5025"]],[7,8,["G2250"]],[8,12,["G1831"]],[12,13,["G1519"]],[13,15,["G3735"]],[15,17,["G4336"]],[17,18,["G2532"]],[18,21,["G2258","G1273"]],[21,22,["G1722"]],[22,23,["G4335"]],[23,25,["G2316"]]]},{"k":25159,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,4,["G1096"]],[4,5,["G2250"]],[5,7,["G4377"]],[7,10,["G848"]],[10,11,["G3101"]],[11,12,["G2532"]],[12,13,["G575"]],[13,14,["G846"]],[14,16,["G1586"]],[16,17,["G1427"]],[17,18,["G3739"]],[18,19,["G2532"]],[19,21,["G3687"]],[21,22,["G652"]]]},{"k":25160,"v":[[0,1,["G4613"]],[1,2,["G3739"]],[2,4,["G2532"]],[4,5,["G3687"]],[5,6,["G4074"]],[6,7,["G2532"]],[7,8,["G406"]],[8,9,["G846"]],[9,10,["G80"]],[10,11,["G2385"]],[11,12,["G2532"]],[12,13,["G2491"]],[13,14,["G5376"]],[14,15,["G2532"]],[15,16,["G918"]]]},{"k":25161,"v":[[0,1,["G3156"]],[1,2,["G2532"]],[2,3,["G2381"]],[3,4,["G2385"]],[4,5,["G3588"]],[5,8,["G256"]],[8,9,["G2532"]],[9,10,["G4613"]],[10,11,["G2564"]],[11,12,["G2208"]]]},{"k":25162,"v":[[0,2,["G2455"]],[2,6,["G2385"]],[6,7,["G2532"]],[7,8,["G2455"]],[8,9,["G2469"]],[9,10,["G3739"]],[10,11,["G2532"]],[11,12,["G1096"]],[12,14,["G4273"]]]},{"k":25163,"v":[[0,1,["G2532"]],[1,4,["G2597"]],[4,5,["G3326"]],[5,6,["G846"]],[6,8,["G2476"]],[8,9,["G1909"]],[9,11,["G3977","G5117"]],[11,12,["G2532"]],[12,14,["G3793"]],[14,16,["G846"]],[16,17,["G3101"]],[17,18,["G2532"]],[18,20,["G4183"]],[20,21,["G4128"]],[21,23,["G2992"]],[23,25,["G575"]],[25,26,["G3956"]],[26,27,["G2449"]],[27,28,["G2532"]],[28,29,["G2419"]],[29,30,["G2532"]],[30,32,["G3588"]],[32,34,["G3882"]],[34,36,["G5184"]],[36,37,["G2532"]],[37,38,["G4605"]],[38,39,["G3739"]],[39,40,["G2064"]],[40,42,["G191"]],[42,43,["G846"]],[43,44,["G2532"]],[44,47,["G2390"]],[47,48,["G575"]],[48,49,["G848"]],[49,50,["G3554"]]]},{"k":25164,"v":[[0,1,["G2532"]],[1,5,["G3791"]],[5,6,["G5259"]],[6,7,["G169"]],[7,8,["G4151"]],[8,9,["G2532"]],[9,12,["G2323"]]]},{"k":25165,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3956"]],[3,4,["G3793"]],[4,5,["G2212"]],[5,7,["G680"]],[7,8,["G846"]],[8,9,["G3754"]],[9,13,["G1831","G1411"]],[13,14,["G3844"]],[14,15,["G846"]],[15,16,["G2532"]],[16,17,["G2390"]],[17,19,["G3956"]]]},{"k":25166,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,4,["G1869"]],[4,5,["G848"]],[5,6,["G3788"]],[6,7,["G1519"]],[7,8,["G846"]],[8,9,["G3101"]],[9,11,["G3004"]],[11,12,["G3107"]],[12,15,["G4434"]],[15,16,["G3754"]],[16,17,["G5212"]],[17,18,["G2076"]],[18,19,["G3588"]],[19,20,["G932"]],[20,22,["G2316"]]]},{"k":25167,"v":[[0,1,["G3107"]],[1,5,["G3983"]],[5,6,["G3568"]],[6,7,["G3754"]],[7,11,["G5526"]],[11,12,["G3107"]],[12,16,["G2799"]],[16,17,["G3568"]],[17,18,["G3754"]],[18,21,["G1070"]]]},{"k":25168,"v":[[0,1,["G3107"]],[1,2,["G2075"]],[2,4,["G3752"]],[4,5,["G444"]],[5,7,["G3404"]],[7,8,["G5209"]],[8,9,["G2532"]],[9,10,["G3752"]],[10,13,["G873"]],[13,14,["G5209"]],[14,18,["G2532"]],[18,20,["G3679"]],[20,22,["G2532"]],[22,24,["G1544"]],[24,25,["G5216"]],[25,26,["G3686"]],[26,27,["G5613"]],[27,28,["G4190"]],[28,34,["G1752","G3588","G5207","G444"]]]},{"k":25169,"v":[[0,1,["G5463"]],[1,3,["G1722"]],[3,4,["G1565"]],[4,5,["G2250"]],[5,6,["G2532"]],[6,9,["G4640"]],[9,10,["G1063"]],[10,11,["G2400"]],[11,12,["G5216"]],[12,13,["G3408"]],[13,15,["G4183"]],[15,16,["G1722"]],[16,17,["G3772"]],[17,18,["G1063"]],[18,22,["G2596","G5024"]],[22,23,["G4160"]],[23,24,["G846"]],[24,25,["G3962"]],[25,27,["G3588"]],[27,28,["G4396"]]]},{"k":25170,"v":[[0,1,["G4133"]],[1,2,["G3759"]],[2,4,["G5213"]],[4,7,["G4145"]],[7,8,["G3754"]],[8,11,["G568"]],[11,12,["G5216"]],[12,13,["G3874"]]]},{"k":25171,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,6,["G1705"]],[6,7,["G3754"]],[7,10,["G3983"]],[10,11,["G3759"]],[11,13,["G5213"]],[13,15,["G1070"]],[15,16,["G3568"]],[16,17,["G3754"]],[17,20,["G3996"]],[20,21,["G2532"]],[21,22,["G2799"]]]},{"k":25172,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G3752"]],[4,5,["G3956"]],[5,6,["G444"]],[6,8,["G2036"]],[8,9,["G2573"]],[9,11,["G5209"]],[11,12,["G1063"]],[12,13,["G2596","G5024"]],[13,14,["G4160"]],[14,15,["G846"]],[15,16,["G3962"]],[16,18,["G3588"]],[18,20,["G5578"]]]},{"k":25173,"v":[[0,1,["G235"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,7,["G191"]],[7,8,["G25"]],[8,9,["G5216"]],[9,10,["G2190"]],[10,11,["G4160"]],[11,12,["G2573"]],[12,16,["G3404"]],[16,17,["G5209"]]]},{"k":25174,"v":[[0,1,["G2127"]],[1,4,["G2672"]],[4,5,["G5213"]],[5,6,["G2532"]],[6,7,["G4336"]],[7,8,["G5228"]],[8,12,["G1908"]],[12,13,["G5209"]]]},{"k":25175,"v":[[0,5,["G5180"]],[5,6,["G4571"]],[6,7,["G1909"]],[7,8,["G3588"]],[8,10,["G4600"]],[10,11,["G3930"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G243"]],[14,15,["G2532"]],[15,19,["G142"]],[19,20,["G4675"]],[20,21,["G2440"]],[21,22,["G2967"]],[22,23,["G3361"]],[23,27,["G5509"]],[27,28,["G2532"]]]},{"k":25176,"v":[[0,0,["(G1161)"]],[0,1,["G1325"]],[1,4,["G3956"]],[4,6,["G154"]],[6,8,["G4571"]],[8,9,["G2532"]],[9,10,["G575"]],[10,14,["G142"]],[14,16,["G4674"]],[16,20,["G523","G3361"]]]},{"k":25177,"v":[[0,1,["G2532"]],[1,2,["G2531"]],[2,4,["G2309"]],[4,5,["G2443"]],[5,6,["G444"]],[6,8,["G4160"]],[8,10,["G5213"]],[10,11,["G4160"]],[11,12,["G5210"]],[12,13,["G2532"]],[13,15,["G846"]],[15,16,["G3668"]]]},{"k":25178,"v":[[0,1,["G2532"]],[1,2,["G1487"]],[2,4,["G25"]],[4,7,["G25"]],[7,8,["G5209"]],[8,9,["G4169"]],[9,10,["G5485"]],[10,11,["G2076"]],[11,12,["G5213"]],[12,13,["G1063"]],[13,14,["G268"]],[14,15,["G2532"]],[15,16,["G25"]],[16,19,["G25"]],[19,20,["G846"]]]},{"k":25179,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,5,["G15"]],[5,10,["G15"]],[10,12,["G5209"]],[12,13,["G4169"]],[13,14,["G5485"]],[14,15,["G2076"]],[15,16,["G5213"]],[16,17,["G1063"]],[17,18,["G268"]],[18,19,["G2532"]],[19,20,["G4160"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G846"]]]},{"k":25180,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G1155"]],[4,7,["G3844"]],[7,8,["G3739"]],[8,10,["G1679"]],[10,12,["G618"]],[12,13,["G4169"]],[13,14,["G5485"]],[14,15,["G2076"]],[15,16,["G5213"]],[16,17,["G1063"]],[17,18,["G268"]],[18,19,["G2532"]],[19,20,["G1155"]],[20,22,["G268"]],[22,23,["G2443"]],[23,24,["G618"]],[24,27,["G2470"]]]},{"k":25181,"v":[[0,1,["G4133"]],[1,2,["G25"]],[2,4,["G5216"]],[4,5,["G2190"]],[5,6,["G2532"]],[6,8,["G15"]],[8,9,["G2532"]],[9,10,["G1155"]],[10,14,["G560","G3367"]],[14,15,["G2532"]],[15,16,["G5216"]],[16,17,["G3408"]],[17,19,["G2071"]],[19,20,["G4183"]],[20,21,["G2532"]],[21,24,["G2071"]],[24,26,["G5207"]],[26,28,["G3588"]],[28,29,["G5310"]],[29,30,["G3754"]],[30,31,["G846"]],[31,32,["G2076"]],[32,33,["G5543"]],[33,34,["G1909"]],[34,35,["G3588"]],[35,36,["G884"]],[36,37,["G2532"]],[37,40,["G4190"]]]},{"k":25182,"v":[[0,1,["G1096"]],[1,3,["G3767"]],[3,4,["G3629"]],[4,5,["G2531"]],[5,6,["G5216"]],[6,7,["G3962"]],[7,8,["G2532"]],[8,9,["G2076"]],[9,10,["G3629"]]]},{"k":25183,"v":[[0,1,["G2919"]],[1,2,["G3361"]],[2,3,["G2532"]],[3,6,["G3364"]],[6,8,["G2919"]],[8,9,["G2613"]],[9,10,["G3361"]],[10,11,["G2532"]],[11,14,["G3364"]],[14,16,["G2613"]],[16,17,["G630"]],[17,18,["G2532"]],[18,22,["G630"]]]},{"k":25184,"v":[[0,1,["G1325"]],[1,2,["G2532"]],[2,6,["G1325"]],[6,8,["G5213"]],[8,9,["G2570"]],[9,10,["G3358"]],[10,12,["G4085"]],[12,13,["G2532"]],[13,15,["G4531"]],[15,16,["G2532"]],[16,18,["G5240"]],[18,21,["G1325"]],[21,22,["G1519"]],[22,23,["G5216"]],[23,24,["G2859"]],[24,25,["G1063"]],[25,27,["G3588"]],[27,28,["G846"]],[28,29,["G3358"]],[29,30,["G3739"]],[30,32,["G3354"]],[32,40,["G488","G5213"]]]},{"k":25185,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G3850"]],[5,7,["G846"]],[7,8,["G1410","G3385"]],[8,10,["G5185"]],[10,11,["G3594"]],[11,13,["G5185"]],[13,16,["G3780"]],[16,17,["G297"]],[17,18,["G4098"]],[18,19,["G1519"]],[19,21,["G999"]]]},{"k":25186,"v":[[0,2,["G3101"]],[2,3,["G2076"]],[3,4,["G3756"]],[4,5,["G5228"]],[5,6,["G848"]],[6,7,["G1320"]],[7,8,["G1161"]],[8,10,["G3956"]],[10,13,["G2675"]],[13,15,["G2071"]],[15,16,["G5613"]],[16,17,["G846"]],[17,18,["G1320"]]]},{"k":25187,"v":[[0,1,["G1161"]],[1,2,["G5101"]],[2,3,["G991"]],[3,5,["G3588"]],[5,6,["G2595"]],[6,7,["G3588"]],[7,9,["G1722"]],[9,10,["G4675"]],[10,11,["G80"]],[11,12,["G3788"]],[12,13,["G1161"]],[13,14,["G2657"]],[14,15,["G3756"]],[15,16,["G3588"]],[16,17,["G1385"]],[17,18,["G3588"]],[18,20,["G1722"]],[20,22,["G2398"]],[22,23,["G3788"]]]},{"k":25188,"v":[[0,1,["G2228"]],[1,2,["G4459"]],[2,3,["G1410"]],[3,5,["G3004"]],[5,7,["G4675"]],[7,8,["G80"]],[8,9,["G80"]],[9,10,["G863"]],[10,13,["G1544"]],[13,14,["G3588"]],[14,15,["G2595"]],[15,16,["G3588"]],[16,18,["G1722"]],[18,19,["G4675"]],[19,20,["G3788"]],[20,23,["G846"]],[23,24,["G991"]],[24,25,["G3756"]],[25,26,["G3588"]],[26,27,["G1385"]],[27,28,["G3588"]],[28,30,["G1722"]],[30,32,["G4675"]],[32,33,["G3788"]],[33,35,["G5273"]],[35,37,["G1544"]],[37,38,["G4412"]],[38,39,["G3588"]],[39,40,["G1385"]],[40,42,["G1537"]],[42,44,["G4675"]],[44,45,["G3788"]],[45,46,["G2532"]],[46,47,["G5119"]],[47,51,["G1227"]],[51,54,["G1544"]],[54,55,["G3588"]],[55,56,["G2595"]],[56,57,["G3588"]],[57,59,["G1722"]],[59,60,["G4675"]],[60,61,["G80"]],[61,62,["G3788"]]]},{"k":25189,"v":[[0,1,["G1063"]],[1,3,["G2570"]],[3,4,["G1186"]],[4,7,["G2076","G3756","G4160"]],[7,8,["G4550"]],[8,9,["G2590"]],[9,10,["G3761"]],[10,13,["G4550"]],[13,14,["G1186"]],[14,16,["G4160"]],[16,17,["G2570"]],[17,18,["G2590"]]]},{"k":25190,"v":[[0,1,["G1063"]],[1,2,["G1538"]],[2,3,["G1186"]],[3,5,["G1097"]],[5,6,["G1537"]],[6,8,["G2398"]],[8,9,["G2590"]],[9,10,["G1063"]],[10,11,["G1537"]],[11,12,["G173"]],[12,15,["G3756"]],[15,16,["G4816"]],[16,17,["G4810"]],[17,18,["G3761"]],[18,19,["G1537"]],[19,22,["G942"]],[22,23,["G5166"]],[23,25,["G4718"]]]},{"k":25191,"v":[[0,2,["G18"]],[2,3,["G444"]],[3,4,["G1537"]],[4,6,["G3588"]],[6,7,["G18"]],[7,8,["G2344"]],[8,10,["G848"]],[10,11,["G2588"]],[11,13,["G4393"]],[13,17,["G18"]],[17,18,["G2532"]],[18,20,["G4190"]],[20,21,["G444"]],[21,22,["G1537"]],[22,24,["G3588"]],[24,25,["G4190"]],[25,26,["G2344"]],[26,28,["G848"]],[28,29,["G2588"]],[29,31,["G4393"]],[31,35,["G4190"]],[35,36,["G1063"]],[36,37,["G1537"]],[37,38,["G3588"]],[38,39,["G4051"]],[39,41,["G3588"]],[41,42,["G2588"]],[42,43,["G846"]],[43,44,["G4750"]],[44,45,["G2980"]]]},{"k":25192,"v":[[0,1,["G1161"]],[1,2,["G5101"]],[2,3,["G2564"]],[3,5,["G3165"]],[5,6,["G2962"]],[6,7,["G2962"]],[7,8,["G2532"]],[8,9,["G4160"]],[9,10,["G3756"]],[10,13,["G3739"]],[13,15,["G3004"]]]},{"k":25193,"v":[[0,1,["G3956"]],[1,2,["G2064"]],[2,3,["G4314"]],[3,4,["G3165"]],[4,5,["G2532"]],[5,6,["G191"]],[6,7,["G3450"]],[7,8,["G3056"]],[8,9,["G2532"]],[9,10,["G4160"]],[10,11,["G846"]],[11,14,["G5263"]],[14,15,["G5213"]],[15,17,["G5101"]],[17,19,["G2076"]],[19,20,["G3664"]]]},{"k":25194,"v":[[0,2,["G2076"]],[2,3,["G3664"]],[3,5,["G444"]],[5,7,["G3618"]],[7,9,["G3614"]],[9,10,["(G3739)"]],[10,11,["G4626"]],[11,12,["G900"]],[12,13,["G2532"]],[13,14,["G5087"]],[14,16,["G2310"]],[16,17,["G1909"]],[17,19,["G4073"]],[19,20,["G1161"]],[20,23,["G4132"]],[23,24,["G1096"]],[24,25,["G3588"]],[25,26,["G4215"]],[26,29,["G4366"]],[29,30,["G1565"]],[30,31,["G3614"]],[31,32,["G2532"]],[32,33,["G2480"]],[33,34,["G3756"]],[34,35,["G4531"]],[35,36,["G846"]],[36,37,["G1063"]],[37,40,["G2311"]],[40,41,["G1909"]],[41,43,["G4073"]]]},{"k":25195,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,5,["G2532"]],[5,6,["G4160"]],[6,7,["G3361"]],[7,8,["G2076"]],[8,9,["G3664"]],[9,11,["G444"]],[11,13,["G5565"]],[13,15,["G2310"]],[15,16,["G3618"]],[16,18,["G3614"]],[18,19,["G1909"]],[19,20,["G3588"]],[20,21,["G1093"]],[21,28,["G4366","G3739","G3588","G4215"]],[28,29,["G2532"]],[29,30,["G2112"]],[30,32,["G4098"]],[32,33,["G2532"]],[33,34,["G3588"]],[34,35,["G4485"]],[35,37,["G1565"]],[37,38,["G3614"]],[38,39,["G1096"]],[39,40,["G3173"]]]},{"k":25196,"v":[[0,1,["G1161"]],[1,2,["G1893"]],[2,5,["G4137"]],[5,6,["G3956"]],[6,7,["G848"]],[7,8,["G4487"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G189"]],[11,13,["G3588"]],[13,14,["G2992"]],[14,16,["G1525"]],[16,17,["G1519"]],[17,18,["G2584"]]]},{"k":25197,"v":[[0,1,["G1161"]],[1,3,["G5100"]],[3,4,["G1543"]],[4,5,["G1401"]],[5,6,["G3739"]],[6,7,["G2258"]],[7,8,["G1784"]],[8,10,["G846"]],[10,12,["G2192","G2560"]],[12,14,["G3195"]],[14,16,["G5053"]]]},{"k":25198,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,5,["G4012"]],[5,6,["G2424"]],[6,8,["G649"]],[8,9,["G4314"]],[9,10,["G846"]],[10,12,["G4245"]],[12,14,["G3588"]],[14,15,["G2453"]],[15,16,["G2065"]],[16,17,["G846"]],[17,18,["G3704"]],[18,21,["G2064"]],[21,22,["G2532"]],[22,23,["G1295"]],[23,24,["G846"]],[24,25,["G1401"]]]},{"k":25199,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G3854"]],[4,5,["G4314"]],[5,6,["G2424"]],[6,8,["G3870"]],[8,9,["G846"]],[9,10,["G4709"]],[10,11,["G3004"]],[11,12,["G3754"]],[12,14,["G2076"]],[14,15,["G514"]],[15,17,["G3739"]],[17,20,["G3930"]],[20,21,["G5124"]]]},{"k":25200,"v":[[0,1,["G1063"]],[1,3,["G25"]],[3,4,["G2257"]],[4,5,["G1484"]],[5,6,["G2532"]],[6,7,["G846"]],[7,9,["G3618"]],[9,10,["G2254"]],[10,12,["G4864"]]]},{"k":25201,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G4198"]],[3,4,["G4862"]],[4,5,["G846"]],[5,6,["G1161"]],[6,8,["G846"]],[8,9,["G568"]],[9,10,["G2235"]],[10,11,["G3756"]],[11,12,["G3112"]],[12,13,["G575"]],[13,14,["G3588"]],[14,15,["G3614"]],[15,16,["G3588"]],[16,17,["G1543"]],[17,18,["G3992"]],[18,19,["G5384"]],[19,20,["G4314"]],[20,21,["G846"]],[21,22,["G3004"]],[22,24,["G846"]],[24,25,["G2962"]],[25,26,["G4660"]],[26,27,["G3361"]],[27,29,["G1063"]],[29,31,["G1510"]],[31,32,["G3756"]],[32,33,["G2425"]],[33,34,["G2443"]],[34,37,["G1525"]],[37,38,["G5259"]],[38,39,["G3450"]],[39,40,["G4721"]]]},{"k":25202,"v":[[0,1,["G1352"]],[1,2,["G3761"]],[2,6,["G515","G1683"]],[6,8,["G2064"]],[8,9,["G4314"]],[9,10,["G4571"]],[10,11,["G235"]],[11,12,["G2036"]],[12,15,["G3056"]],[15,16,["G2532"]],[16,17,["G3450"]],[17,18,["G3816"]],[18,21,["G2390"]]]},{"k":25203,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,3,["G2532"]],[3,4,["G1510"]],[4,6,["G444"]],[6,7,["G5021"]],[7,8,["G5259"]],[8,9,["G1849"]],[9,10,["G2192"]],[10,11,["G5259"]],[11,12,["G1683"]],[12,13,["G4757"]],[13,14,["G2532"]],[14,16,["G3004"]],[16,18,["G5129"]],[18,19,["G4198"]],[19,20,["G2532"]],[20,22,["G4198"]],[22,23,["G2532"]],[23,25,["G243"]],[25,26,["G2064"]],[26,27,["G2532"]],[27,29,["G2064"]],[29,30,["G2532"]],[30,32,["G3450"]],[32,33,["G1401"]],[33,34,["G4160"]],[34,35,["G5124"]],[35,36,["G2532"]],[36,38,["G4160"]],[38,39,[]]]},{"k":25204,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G191"]],[3,5,["G5023"]],[5,7,["G2296"]],[7,9,["G846"]],[9,10,["G2532"]],[10,13,["G4762"]],[13,15,["G2036"]],[15,17,["G3588"]],[17,18,["G3793"]],[18,20,["G190"]],[20,21,["G846"]],[21,23,["G3004"]],[23,25,["G5213"]],[25,29,["G2147"]],[29,31,["G5118"]],[31,32,["G4102"]],[32,34,["G3761"]],[34,35,["G1722"]],[35,36,["G2474"]]]},{"k":25205,"v":[[0,1,["G2532"]],[1,5,["G3992"]],[5,6,["G5290"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G3624"]],[9,10,["G2147"]],[10,11,["G3588"]],[11,12,["G1401"]],[12,13,["G5198"]],[13,17,["G770"]]]},{"k":25206,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,6,["G3588"]],[6,8,["G1836"]],[8,11,["G4198"]],[11,12,["G1519"]],[12,14,["G4172"]],[14,15,["G2564"]],[15,16,["G3484"]],[16,17,["G2532"]],[17,18,["G2425"]],[18,20,["G846"]],[20,21,["G3101"]],[21,23,["G4848"]],[23,24,["G846"]],[24,25,["G2532"]],[25,26,["G4183"]],[26,27,["G3793"]]]},{"k":25207,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,5,["G1448"]],[5,7,["G3588"]],[7,8,["G4439"]],[8,10,["G3588"]],[10,11,["G4172","(G2532)"]],[11,12,["G2400"]],[12,17,["G2348"]],[17,19,["G1580"]],[19,21,["G3439"]],[21,22,["G5207"]],[22,24,["G848"]],[24,25,["G3384"]],[25,26,["G2532"]],[26,27,["G3778"]],[27,28,["G2258"]],[28,30,["G5503"]],[30,31,["G2532"]],[31,32,["G2425"]],[32,33,["G3793"]],[33,35,["G3588"]],[35,36,["G4172"]],[36,37,["G2258"]],[37,38,["G4862"]],[38,39,["G846"]]]},{"k":25208,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G2962"]],[4,5,["G1492"]],[5,6,["G846"]],[6,9,["G4697"]],[9,10,["G1909"]],[10,11,["G846"]],[11,12,["G2532"]],[12,13,["G2036"]],[13,15,["G846"]],[15,16,["G2799"]],[16,17,["G3361"]]]},{"k":25209,"v":[[0,1,["G2532"]],[1,3,["G4334"]],[3,5,["G680"]],[5,6,["G3588"]],[6,7,["G4673"]],[7,8,["G1161"]],[8,11,["G941"]],[11,14,["G2476"]],[14,15,["G2532"]],[15,17,["G2036"]],[17,19,["G3495"]],[19,21,["G3004"]],[21,23,["G4671"]],[23,24,["G1453"]]]},{"k":25210,"v":[[0,1,["G2532"]],[1,5,["G3498"]],[5,7,["G339"]],[7,8,["G2532"]],[8,9,["G756"]],[9,11,["G2980"]],[11,12,["G2532"]],[12,14,["G1325"]],[14,15,["G846"]],[15,17,["G846"]],[17,18,["G3384"]]]},{"k":25211,"v":[[0,1,["G1161"]],[1,5,["G5401","G2983"]],[5,7,["G537"]],[7,8,["G2532"]],[8,10,["G1392"]],[10,11,["G2316"]],[11,12,["G3004"]],[12,13,["G3754"]],[13,15,["G3173"]],[15,16,["G4396"]],[16,19,["G1453"]],[19,20,["G1722"]],[20,21,["G2254"]],[21,22,["G2532"]],[22,23,["G3754"]],[23,24,["G2316"]],[24,26,["G1980"]],[26,27,["G848"]],[27,28,["G2992"]]]},{"k":25212,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G3056"]],[3,4,["G4012"]],[4,5,["G846"]],[5,7,["G1831"]],[7,8,["G1722"]],[8,9,["G3650"]],[9,10,["G2449"]],[10,11,["G2532"]],[11,12,["G1722"]],[12,13,["G3956"]],[13,14,["G3588"]],[14,17,["G4066"]]]},{"k":25213,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,5,["G2491"]],[5,6,["G518"]],[6,7,["G846"]],[7,8,["G4012"]],[8,9,["G3956"]],[9,11,["G5130"]]]},{"k":25214,"v":[[0,1,["G2532"]],[1,2,["G2491"]],[2,3,["G4341"]],[3,5,["(G5100)"]],[5,6,["G1417"]],[6,8,["G848"]],[8,9,["G3101"]],[9,10,["G3992"]],[10,12,["G4314"]],[12,13,["G2424"]],[13,14,["G3004"]],[14,15,["G1488"]],[15,16,["G4771"]],[16,20,["G2064"]],[20,21,["G2228"]],[21,24,["G4328"]],[24,25,["G243"]]]},{"k":25215,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G435"]],[3,5,["G3854"]],[5,6,["G4314"]],[6,7,["G846"]],[7,9,["G2036"]],[9,10,["G2491"]],[10,11,["G910"]],[11,13,["G649"]],[13,14,["G2248"]],[14,15,["G4314"]],[15,16,["G4571"]],[16,17,["G3004"]],[17,18,["G1488"]],[18,19,["G4771"]],[19,23,["G2064"]],[23,24,["G2228"]],[24,27,["G4328"]],[27,28,["G243"]]]},{"k":25216,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,4,["G846"]],[4,5,["G5610"]],[5,7,["G2323"]],[7,8,["G4183"]],[8,9,["G575"]],[9,11,["G3554"]],[11,12,["G2532"]],[12,13,["G3148"]],[13,14,["G2532"]],[14,16,["G4190"]],[16,17,["G4151"]],[17,18,["G2532"]],[18,20,["G4183"]],[20,23,["G5185"]],[23,25,["G5483"]],[25,26,["G991"]]]},{"k":25217,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,6,["G846"]],[6,9,["G4198"]],[9,11,["G518"]],[11,12,["G2491"]],[12,14,["G3739"]],[14,17,["G1492"]],[17,18,["G2532"]],[18,19,["G191"]],[19,21,["G3754"]],[21,23,["G5185"]],[23,24,["G308"]],[24,26,["G5560"]],[26,27,["G4043"]],[27,29,["G3015"]],[29,31,["G2511"]],[31,33,["G2974"]],[33,34,["G191"]],[34,36,["G3498"]],[36,38,["G1453"]],[38,41,["G4434"]],[41,45,["G2097"]]]},{"k":25218,"v":[[0,1,["G2532"]],[1,2,["G3107"]],[2,3,["G2076"]],[3,5,["G3739","G1437"]],[5,7,["G3361"]],[7,9,["G4624"]],[9,10,["G1722"]],[10,11,["G1698"]]]},{"k":25219,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G32"]],[4,6,["G2491"]],[6,8,["G565"]],[8,10,["G756"]],[10,12,["G3004"]],[12,13,["G4314"]],[13,14,["G3588"]],[14,15,["G3793"]],[15,16,["G4012"]],[16,17,["G2491"]],[17,18,["G5101"]],[18,21,["G1831"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G2048"]],[24,27,["G2300"]],[27,29,["G2563"]],[29,30,["G4531"]],[30,31,["G5259"]],[31,33,["G417"]]]},{"k":25220,"v":[[0,1,["G235"]],[1,2,["G5101"]],[2,5,["G1831"]],[5,8,["G1492"]],[8,10,["G444"]],[10,11,["G294"]],[11,12,["G1722"]],[12,13,["G3120"]],[13,14,["G2440"]],[14,15,["G2400"]],[15,16,["G3588"]],[16,20,["G1722","G1741","G2441"]],[20,21,["G2532"]],[21,22,["G5225"]],[22,23,["G5172"]],[23,24,["G1526"]],[24,25,["G1722"]],[25,27,["G933"]]]},{"k":25221,"v":[[0,1,["G235"]],[1,2,["G5101"]],[2,5,["G1831"]],[5,8,["G1492"]],[8,10,["G4396"]],[10,11,["G3483"]],[11,13,["G3004"]],[13,15,["G5213"]],[15,16,["G2532"]],[16,18,["G4055"]],[18,21,["G4396"]]]},{"k":25222,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,4,["G4012"]],[4,5,["G3739"]],[5,8,["G1125"]],[8,9,["G2400"]],[9,10,["G1473"]],[10,11,["G649"]],[11,12,["G3450"]],[12,13,["G32"]],[13,14,["G4253"]],[14,15,["G4675"]],[15,16,["G4383"]],[16,17,["G3739"]],[17,19,["G2680"]],[19,20,["G4675"]],[20,21,["G3598"]],[21,22,["G1715"]],[22,23,["G4675"]]]},{"k":25223,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G1722"]],[6,10,["G1084"]],[10,12,["G1135"]],[12,14,["G2076"]],[14,15,["G3762"]],[15,17,["G3187"]],[17,18,["G4396"]],[18,20,["G2491"]],[20,21,["G3588"]],[21,22,["G910"]],[22,23,["G1161"]],[23,27,["G3398"]],[27,28,["G1722"]],[28,29,["G3588"]],[29,30,["G932"]],[30,32,["G2316"]],[32,33,["G2076"]],[33,34,["G3187"]],[34,36,["G846"]]]},{"k":25224,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G2992"]],[4,6,["G191"]],[6,8,["G2532"]],[8,9,["G3588"]],[9,10,["G5057"]],[10,11,["G1344"]],[11,12,["G2316"]],[12,14,["G907"]],[14,16,["G3588"]],[16,17,["G908"]],[17,19,["G2491"]]]},{"k":25225,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,4,["G2532"]],[4,5,["G3544"]],[5,6,["G114"]],[6,7,["G3588"]],[7,8,["G1012"]],[8,10,["G2316"]],[10,11,["G1519"]],[11,12,["G1438"]],[12,14,["G3361"]],[14,15,["G907"]],[15,16,["G5259"]],[16,17,["G846"]]]},{"k":25226,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2036"]],[4,5,["G5101"]],[5,6,["G3767"]],[6,9,["G3666"]],[9,10,["G3588"]],[10,11,["G444"]],[11,13,["G5026"]],[13,14,["G1074"]],[14,15,["G2532"]],[15,17,["G5101"]],[17,18,["G1526"]],[18,20,["G3664"]]]},{"k":25227,"v":[[0,2,["G1526"]],[2,4,["G3664"]],[4,5,["G3813"]],[5,6,["G2521"]],[6,7,["G1722"]],[7,9,["G58"]],[9,10,["G2532"]],[10,11,["G4377"]],[11,14,["G240"]],[14,15,["G2532"]],[15,16,["G3004"]],[16,19,["G832"]],[19,21,["G5213"]],[21,22,["G2532"]],[22,25,["G3756"]],[25,26,["G3738"]],[26,29,["G2354"]],[29,31,["G5213"]],[31,32,["G2532"]],[32,35,["G3756"]],[35,36,["G2799"]]]},{"k":25228,"v":[[0,1,["G1063"]],[1,2,["G2491"]],[2,3,["G3588"]],[3,4,["G910"]],[4,5,["G2064"]],[5,6,["G3383"]],[6,7,["G2068"]],[7,8,["G740"]],[8,9,["G3383"]],[9,10,["G4095"]],[10,11,["G3631"]],[11,12,["G2532"]],[12,14,["G3004"]],[14,16,["G2192"]],[16,18,["G1140"]]]},{"k":25229,"v":[[0,1,["G3588"]],[1,2,["G5207"]],[2,4,["G444"]],[4,6,["G2064"]],[6,7,["G2068"]],[7,8,["G2532"]],[8,9,["G4095"]],[9,10,["G2532"]],[10,12,["G3004"]],[12,13,["G2400"]],[13,15,["G5314"]],[15,16,["G444"]],[16,17,["G2532"]],[17,19,["G3630"]],[19,21,["G5384"]],[21,23,["G5057"]],[23,24,["G2532"]],[24,25,["G268"]]]},{"k":25230,"v":[[0,1,["G2532"]],[1,2,["G4678"]],[2,4,["G1344"]],[4,5,["G575"]],[5,6,["G3956"]],[6,7,["G848"]],[7,8,["G5043"]]]},{"k":25231,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,4,["G3588"]],[4,5,["G5330"]],[5,6,["G2065"]],[6,7,["G846"]],[7,8,["G2443"]],[8,11,["G5315"]],[11,12,["G3326"]],[12,13,["G846"]],[13,14,["G2532"]],[14,16,["G1525"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,19,["G5330"]],[19,20,["G3614"]],[20,21,["G2532"]],[21,25,["G347"]]]},{"k":25232,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G1135"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G4172"]],[7,8,["G3748"]],[8,9,["G2258"]],[9,11,["G268"]],[11,14,["G1921"]],[14,15,["G3754"]],[15,19,["G345"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G5330"]],[22,23,["G3614"]],[23,24,["G2865"]],[24,27,["G211"]],[27,29,["G3464"]]]},{"k":25233,"v":[[0,1,["G2532"]],[1,2,["G2476"]],[2,3,["G3844"]],[3,4,["G846"]],[4,5,["G4228"]],[5,6,["G3694"]],[6,8,["G2799"]],[8,10,["G756"]],[10,12,["G1026"]],[12,13,["G846"]],[13,14,["G4228"]],[14,16,["G1144"]],[16,17,["G2532"]],[17,19,["G1591"]],[19,22,["G3588"]],[22,23,["G2359"]],[23,25,["G848"]],[25,26,["G2776"]],[26,27,["G2532"]],[27,28,["G2705"]],[28,29,["G846"]],[29,30,["G4228"]],[30,31,["G2532"]],[31,32,["G218"]],[32,35,["G3588"]],[35,36,["G3464"]]]},{"k":25234,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G5330"]],[4,7,["G2564"]],[7,8,["G846"]],[8,9,["G1492"]],[9,12,["G2036"]],[12,13,["G1722"]],[13,14,["G1438"]],[14,15,["G3004"]],[15,17,["G3778"]],[17,18,["G1487"]],[18,20,["G2258"]],[20,22,["G4396"]],[22,25,["G1097","G302"]],[25,26,["G5101"]],[26,27,["G2532"]],[27,29,["G4217"]],[29,31,["G1135"]],[31,34,["G3748"]],[34,35,["G680"]],[35,36,["G846"]],[36,37,["G3754"]],[37,39,["G2076"]],[39,41,["G268"]]]},{"k":25235,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G4613"]],[7,9,["G2192"]],[9,10,["G5100"]],[10,12,["G2036"]],[12,14,["G4671"]],[14,15,["G1161"]],[15,16,["G3588"]],[16,17,["G5346"]],[17,18,["G1320"]],[18,20,["G2036"]]]},{"k":25236,"v":[[0,4,["G5100"]],[4,5,["G1157"]],[5,7,["G2258"]],[7,8,["G1417"]],[8,9,["G5533"]],[9,10,["G3588"]],[10,11,["G1520"]],[11,12,["G3784"]],[12,14,["G4001"]],[14,15,["G1220"]],[15,16,["G1161"]],[16,17,["G3588"]],[17,18,["G2087"]],[18,19,["G4004"]]]},{"k":25237,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G2192"]],[4,5,["G3361"]],[5,7,["G591"]],[7,10,["G5483"]],[10,12,["G297"]],[12,13,["G2036"]],[13,15,["G3767"]],[15,16,["G5101"]],[16,18,["G846"]],[18,20,["G25"]],[20,21,["G846"]],[21,22,["G4119"]]]},{"k":25238,"v":[[0,0,["(G1161)"]],[0,1,["G4613"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G5274"]],[6,7,["G3754"]],[7,10,["G3739"]],[10,12,["G5483"]],[12,13,["G4119"]],[13,14,["G1161"]],[14,15,["G3588"]],[15,16,["G2036"]],[16,18,["G846"]],[18,21,["G3723"]],[21,22,["G2919"]]]},{"k":25239,"v":[[0,1,["G2532"]],[1,3,["G4762"]],[3,4,["G4314"]],[4,5,["G3588"]],[5,6,["G1135"]],[6,8,["G5346"]],[8,10,["G4613"]],[10,11,["G991"]],[11,13,["G5026"]],[13,14,["G1135"]],[14,16,["G1525"]],[16,17,["G1519"]],[17,18,["G4675"]],[18,19,["G3614"]],[19,21,["G1325"]],[21,23,["G3756"]],[23,24,["G5204"]],[24,25,["G1909"]],[25,26,["G3450"]],[26,27,["G4228"]],[27,28,["G1161"]],[28,29,["G3778"]],[29,31,["G1026"]],[31,32,["G3450"]],[32,33,["G4228"]],[33,35,["G1144"]],[35,36,["G2532"]],[36,37,["G1591"]],[37,40,["G3588"]],[40,41,["G2359"]],[41,43,["G848"]],[43,44,["G2776"]]]},{"k":25240,"v":[[0,2,["G1325"]],[2,3,["G3427"]],[3,4,["G3756"]],[4,5,["G5370"]],[5,6,["G1161"]],[6,8,["G3778"]],[8,9,["G575"]],[9,11,["G3739"]],[11,14,["G1525"]],[14,16,["G3756"]],[16,17,["G1257"]],[17,19,["G2705"]],[19,20,["G3450"]],[20,21,["G4228"]]]},{"k":25241,"v":[[0,1,["G3450"]],[1,2,["G2776"]],[2,4,["G1637"]],[4,7,["G3756"]],[7,8,["G218"]],[8,9,["G1161"]],[9,11,["G3778"]],[11,13,["G218"]],[13,14,["G3450"]],[14,15,["G4228"]],[15,17,["G3464"]]]},{"k":25242,"v":[[0,1,["G5484","G3739"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G846"]],[6,7,["G266"]],[7,10,["G4183"]],[10,12,["G863"]],[12,13,["G3754"]],[13,15,["G25"]],[15,16,["G4183"]],[16,17,["G1161"]],[17,19,["G3739"]],[19,20,["G3641"]],[20,22,["G863"]],[22,25,["G25"]],[25,26,["G3641"]]]},{"k":25243,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G4675"]],[6,7,["G266"]],[7,9,["G863"]]]},{"k":25244,"v":[[0,1,["G2532"]],[1,7,["G4873"]],[7,9,["G756"]],[9,11,["G3004"]],[11,12,["G1722"]],[12,13,["G1438"]],[13,14,["G5101"]],[14,15,["G2076"]],[15,16,["G3778"]],[16,17,["G3739"]],[17,18,["G863"]],[18,19,["G266"]],[19,20,["G2532"]]]},{"k":25245,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G3588"]],[5,6,["G1135"]],[6,7,["G4675"]],[7,8,["G4102"]],[8,10,["G4982"]],[10,11,["G4571"]],[11,12,["G4198"]],[12,13,["G1519"]],[13,14,["G1515"]]]},{"k":25246,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,6,["G1722","G2517"]],[6,7,["G2532"]],[7,8,["G846"]],[8,10,["G1353"]],[10,12,["G2596","G4172"]],[12,13,["G2532"]],[13,14,["G2968"]],[14,15,["G2784"]],[15,16,["G2532"]],[16,20,["G2097"]],[20,22,["G3588"]],[22,23,["G932"]],[23,25,["G2316"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G1427"]],[28,30,["G4862"]],[30,31,["G846"]]]},{"k":25247,"v":[[0,1,["G2532"]],[1,2,["G5100"]],[2,3,["G1135"]],[3,4,["G3739"]],[4,6,["G2258"]],[6,7,["G2323"]],[7,8,["G575"]],[8,9,["G4190"]],[9,10,["G4151"]],[10,11,["G2532"]],[11,12,["G769"]],[12,13,["G3137"]],[13,14,["G2564"]],[14,15,["G3094"]],[15,17,["G575"]],[17,18,["G3739"]],[18,19,["G1831"]],[19,20,["G2033"]],[20,21,["G1140"]]]},{"k":25248,"v":[[0,1,["G2532"]],[1,2,["G2489"]],[2,4,["G1135"]],[4,6,["G5529"]],[6,7,["G2264"]],[7,8,["G2012"]],[8,9,["G2532"]],[9,10,["G4677"]],[10,11,["G2532"]],[11,12,["G4183"]],[12,13,["G2087"]],[13,14,["G3748"]],[14,15,["G1247"]],[15,17,["G846"]],[17,18,["G575"]],[18,19,["G846"]],[19,20,["G5224"]]]},{"k":25249,"v":[[0,1,["G1161"]],[1,3,["G4183"]],[3,4,["G3793"]],[4,7,["G4896"]],[7,8,["G2532"]],[8,10,["G1975"]],[10,11,["G4314"]],[11,12,["G846"]],[12,16,["G2596","G4172"]],[16,18,["G2036"]],[18,19,["G1223"]],[19,21,["G3850"]]]},{"k":25250,"v":[[0,2,["G4687"]],[2,4,["G1831"]],[4,6,["G4687"]],[6,7,["G848"]],[7,8,["G4703"]],[8,9,["G2532"]],[9,11,["G846"]],[11,12,["G4687"]],[12,13,["G3739","G3303"]],[13,14,["G4098"]],[14,15,["G3844"]],[15,16,["G3588"]],[16,18,["G3598"]],[18,19,["G2532"]],[19,23,["G2662"]],[23,24,["G2532"]],[24,25,["G3588"]],[25,26,["G4071"]],[26,28,["G3588"]],[28,29,["G3772"]],[29,30,["G2719"]],[30,31,["G846"]]]},{"k":25251,"v":[[0,1,["G2532"]],[1,2,["G2087"]],[2,3,["G4098"]],[3,4,["G1909"]],[4,6,["G4073"]],[6,7,["G2532"]],[7,14,["G5453"]],[14,17,["G3583"]],[17,20,["G2192","G3361"]],[20,21,["G2429"]]]},{"k":25252,"v":[[0,1,["G2532"]],[1,2,["G2087"]],[2,3,["G4098"]],[3,4,["G1722","G3319"]],[4,5,["G173"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G173"]],[8,11,["G4855"]],[11,14,["G638"]],[14,15,["G846"]]]},{"k":25253,"v":[[0,1,["G2532"]],[1,2,["G2087"]],[2,3,["G4098"]],[3,4,["G1909"]],[4,5,["G18"]],[5,6,["G1093"]],[6,7,["G2532"]],[7,9,["G5453"]],[9,11,["G4160"]],[11,12,["G2590"]],[12,14,["G1542"]],[14,19,["G3004"]],[19,21,["G3778"]],[21,23,["G5455"]],[23,26,["G2192"]],[26,27,["G3775"]],[27,29,["G191"]],[29,32,["G191"]]]},{"k":25254,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G3101"]],[3,4,["G1905"]],[4,5,["G846"]],[5,6,["G3004"]],[6,7,["G5101"]],[7,9,["G3778"]],[9,10,["G3850"]],[10,11,["G1498"]]]},{"k":25255,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G5213"]],[5,8,["G1325"]],[8,10,["G1097"]],[10,11,["G3588"]],[11,12,["G3466"]],[12,14,["G3588"]],[14,15,["G932"]],[15,17,["G2316"]],[17,18,["G1161"]],[18,20,["G3062"]],[20,21,["G1722"]],[21,22,["G3850"]],[22,23,["G2443"]],[23,24,["G991"]],[24,27,["G3361"]],[27,28,["G991"]],[28,29,["G2532"]],[29,30,["G191"]],[30,33,["G3361"]],[33,34,["G4920"]]]},{"k":25256,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3850"]],[3,4,["G2076"]],[4,5,["G3778"]],[5,6,["G3588"]],[6,7,["G4703"]],[7,8,["G2076"]],[8,9,["G3588"]],[9,10,["G3056"]],[10,12,["G2316"]]]},{"k":25257,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G3844"]],[2,3,["G3588"]],[3,5,["G3598"]],[5,6,["G1526"]],[6,9,["G191"]],[9,10,["G1534"]],[10,11,["G2064"]],[11,12,["G3588"]],[12,13,["G1228"]],[13,14,["G2532"]],[14,16,["G142"]],[16,17,["G3588"]],[17,18,["G3056"]],[18,20,["G575"]],[20,21,["G846"]],[21,22,["G2588"]],[22,23,["G3363"]],[23,26,["G4100"]],[26,29,["G4982"]]]},{"k":25258,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G1909"]],[2,3,["G3588"]],[3,4,["G4073"]],[4,7,["G3739"]],[7,8,["G3752"]],[8,10,["G191"]],[10,11,["G1209"]],[11,12,["G3588"]],[12,13,["G3056"]],[13,14,["G3326"]],[14,15,["G5479"]],[15,16,["G2532"]],[16,17,["G3778"]],[17,18,["G2192"]],[18,19,["G3756"]],[19,20,["G4491"]],[20,21,["G3739"]],[21,22,["G4314"]],[22,24,["G2540"]],[24,25,["G4100"]],[25,26,["G2532"]],[26,27,["G1722"]],[27,28,["G2540"]],[28,30,["G3986"]],[30,32,["G868"]]]},{"k":25259,"v":[[0,1,["G1161"]],[1,4,["G4098"]],[4,5,["G1519"]],[5,6,["G173"]],[6,7,["G1526"]],[7,13,["G191"]],[13,15,["G4198"]],[15,16,["G2532"]],[16,18,["G4846"]],[18,19,["G5259"]],[19,20,["G3308"]],[20,21,["G2532"]],[21,22,["G4149"]],[22,23,["G2532"]],[23,24,["G2237"]],[24,27,["G979"]],[27,28,["G2532"]],[28,33,["G5052","G3756"]]]},{"k":25260,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1722"]],[3,4,["G3588"]],[4,5,["G2570"]],[5,6,["G1093"]],[6,7,["G1526"]],[7,8,["G3748"]],[8,10,["G1722"]],[10,12,["G2570"]],[12,13,["G2532"]],[13,14,["G18"]],[14,15,["G2588"]],[15,17,["G191"]],[17,18,["G3588"]],[18,19,["G3056"]],[19,20,["G2722"]],[20,22,["G2532"]],[22,25,["G2592"]],[25,26,["G1722"]],[26,27,["G5281"]]]},{"k":25261,"v":[[0,2,["G3762"]],[2,6,["G681"]],[6,8,["G3088"]],[8,9,["G2572"]],[9,10,["G846"]],[10,13,["G4632"]],[13,14,["G2228"]],[14,15,["G5087"]],[15,17,["G5270"]],[17,19,["G2825"]],[19,20,["G235"]],[20,21,["G2007"]],[21,23,["G1909"]],[23,25,["G3087"]],[25,26,["G2443"]],[26,30,["G1531"]],[30,32,["G991"]],[32,33,["G3588"]],[33,34,["G5457"]]]},{"k":25262,"v":[[0,1,["G1063"]],[1,2,["G3756"]],[2,3,["G2076"]],[3,4,["G2927"]],[4,5,["G3739"]],[5,7,["G3756"]],[7,9,["G1096"]],[9,10,["G5318"]],[10,11,["G3761"]],[11,14,["G614"]],[14,15,["G3739"]],[15,17,["G3756"]],[17,19,["G1097"]],[19,20,["G2532"]],[20,21,["G2064"]],[21,22,["G1519","G5318"]]]},{"k":25263,"v":[[0,2,["G991"]],[2,3,["G3767"]],[3,4,["G4459"]],[4,6,["G191"]],[6,7,["G1063"]],[7,8,["G3739","G302"]],[8,9,["G2192"]],[9,11,["G846"]],[11,14,["G1325"]],[14,15,["G2532"]],[15,16,["G3739","G302"]],[16,17,["G2192"]],[17,18,["G3361"]],[18,19,["G575"]],[19,20,["G846"]],[20,23,["G142"]],[23,24,["G2532"]],[24,26,["G3739"]],[26,28,["G1380"]],[28,30,["G2192"]]]},{"k":25264,"v":[[0,1,["G1161"]],[1,2,["G3854"]],[2,3,["G4314"]],[3,4,["G846"]],[4,6,["G3384"]],[6,7,["G2532"]],[7,8,["G846"]],[8,9,["G80"]],[9,10,["G2532"]],[10,11,["G1410"]],[11,12,["G3756"]],[12,14,["G4940"]],[14,15,["G846"]],[15,16,["G1223"]],[16,17,["G3588"]],[17,18,["G3793"]]]},{"k":25265,"v":[[0,1,["G2532"]],[1,4,["G518"]],[4,5,["G846"]],[5,9,["G3004"]],[9,10,["G4675"]],[10,11,["G3384"]],[11,12,["G2532"]],[12,13,["G4675"]],[13,14,["G80"]],[14,15,["G2476"]],[15,16,["G1854"]],[16,17,["G2309"]],[17,19,["G1492"]],[19,20,["G4571"]]]},{"k":25266,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,6,["G4314"]],[6,7,["G846"]],[7,8,["G3450"]],[8,9,["G3384"]],[9,10,["G2532"]],[10,11,["G3450"]],[11,12,["G80"]],[12,13,["G1526"]],[13,14,["G3778"]],[14,16,["G191"]],[16,17,["G3588"]],[17,18,["G3056"]],[18,20,["G2316"]],[20,21,["G2532"]],[21,22,["G4160"]],[22,23,["G846"]]]},{"k":25267,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,6,["G1722"]],[6,8,["G3391"]],[8,9,["G2250"]],[9,10,["(G2532)"]],[10,11,["G846"]],[11,12,["G1684"]],[12,13,["G1519"]],[13,15,["G4143"]],[15,16,["(G2532)"]],[16,17,["G846"]],[17,18,["G3101"]],[18,19,["G2532"]],[19,21,["G2036"]],[21,22,["G4314"]],[22,23,["G846"]],[23,27,["G1330"]],[27,28,["G1519"]],[28,29,["G3588"]],[29,31,["G4008"]],[31,33,["G3588"]],[33,34,["G3041"]],[34,35,["G2532"]],[35,38,["G321"]]]},{"k":25268,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G4126"]],[4,7,["G879"]],[7,8,["G2532"]],[8,11,["G2597"]],[11,13,["G2978"]],[13,15,["G417"]],[15,16,["G1519"]],[16,17,["G3588"]],[17,18,["G3041"]],[18,19,["G2532"]],[19,22,["G4845"]],[22,25,["G2532"]],[25,28,["G2793"]]]},{"k":25269,"v":[[0,1,["G1161"]],[1,3,["G4334"]],[3,7,["G1326"]],[7,8,["G846"]],[8,9,["G3004"]],[9,10,["G1988"]],[10,11,["G1988"]],[11,13,["G622"]],[13,14,["G1161"]],[14,15,["G3588"]],[15,16,["G1453"]],[16,18,["G2008"]],[18,19,["G3588"]],[19,20,["G417"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G2830"]],[23,25,["G3588"]],[25,26,["G5204"]],[26,27,["G2532"]],[27,29,["G3973"]],[29,30,["G2532"]],[30,32,["G1096"]],[32,34,["G1055"]]]},{"k":25270,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G4226"]],[6,7,["G2076"]],[7,8,["G5216"]],[8,9,["G4102"]],[9,10,["G1161"]],[10,13,["G5399"]],[13,14,["G2296"]],[14,15,["G3004"]],[15,18,["G240","G4314"]],[18,22,["G5101","(G686)"]],[22,23,["G2076"]],[23,24,["G3778"]],[24,25,["G3754"]],[25,27,["G2004"]],[27,28,["G2532"]],[28,29,["G3588"]],[29,30,["G417"]],[30,31,["G2532"]],[31,32,["G5204"]],[32,33,["G2532"]],[33,35,["G5219"]],[35,36,["G846"]]]},{"k":25271,"v":[[0,1,["G2532"]],[1,3,["G2668"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G5561"]],[6,8,["G3588"]],[8,9,["G1046"]],[9,10,["G3748"]],[10,11,["G2076"]],[11,13,["G495"]],[13,14,["G1056"]]]},{"k":25272,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G1831"]],[5,6,["G1909"]],[6,7,["G1093"]],[7,9,["G5221"]],[9,10,["G846"]],[10,12,["G1537"]],[12,13,["G3588"]],[13,14,["G4172"]],[14,16,["G5100"]],[16,17,["G435"]],[17,18,["G3739"]],[18,19,["G2192"]],[19,20,["G1140","(G1537)"]],[20,22,["G2425","G5550"]],[22,23,["G2532"]],[23,24,["G1737"]],[24,25,["G3756"]],[25,26,["G2440"]],[26,27,["G2532","G3756"]],[27,28,["G3306"]],[28,29,["G1722"]],[29,31,["G3614"]],[31,32,["G235"]],[32,33,["G1722"]],[33,34,["G3588"]],[34,35,["G3418"]]]},{"k":25273,"v":[[0,1,["(G1161)"]],[1,3,["G1492"]],[3,4,["G2424"]],[4,7,["G349"]],[7,8,["G2532"]],[8,11,["G4363"]],[11,12,["G846"]],[12,13,["G2532"]],[13,16,["G3173"]],[16,17,["G5456"]],[17,18,["G2036"]],[18,25,["G5101","G1698","G2532","G4671"]],[25,26,["G2424"]],[26,28,["G5207"]],[28,30,["G2316"]],[30,32,["G5310"]],[32,34,["G1189"]],[34,35,["G4675"]],[35,36,["G928"]],[36,37,["G3165"]],[37,38,["G3361"]]]},{"k":25274,"v":[[0,1,["G1063"]],[1,4,["G3853"]],[4,5,["G3588"]],[5,6,["G169"]],[6,7,["G4151"]],[7,9,["G1831"]],[9,11,["G575"]],[11,12,["G3588"]],[12,13,["G444"]],[13,14,["G1063"]],[14,15,["G4183","G5550"]],[15,18,["G4884"]],[18,19,["G846"]],[19,20,["G2532"]],[20,23,["G5442"]],[23,24,["G1196"]],[24,26,["G254"]],[26,27,["G2532"]],[27,29,["G3976"]],[29,30,["G2532"]],[30,32,["G1284"]],[32,33,["G3588"]],[33,34,["G1199"]],[34,37,["G1643"]],[37,38,["G5259"]],[38,39,["G3588"]],[39,40,["G1142"]],[40,41,["G1519"]],[41,42,["G3588"]],[42,43,["G2048"]]]},{"k":25275,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G1905"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G5101"]],[6,7,["G2076"]],[7,8,["G4671"]],[8,9,["G3686"]],[9,10,["G1161"]],[10,11,["G3588"]],[11,12,["G2036"]],[12,13,["G3003"]],[13,14,["G3754"]],[14,15,["G4183"]],[15,16,["G1140"]],[16,18,["G1525"]],[18,19,["G1519"]],[19,20,["G846"]]]},{"k":25276,"v":[[0,1,["G2532"]],[1,3,["G3870"]],[3,4,["G846"]],[4,5,["G2443"]],[5,8,["G3361"]],[8,9,["G2004"]],[9,10,["G846"]],[10,13,["G565"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G12"]]]},{"k":25277,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G1563"]],[4,6,["G34"]],[6,8,["G2425"]],[8,9,["G5519"]],[9,10,["G1006"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G3735"]],[13,14,["G2532"]],[14,16,["G3870"]],[16,17,["G846"]],[17,18,["G2443"]],[18,21,["G2010"]],[21,22,["G846"]],[22,24,["G1525"]],[24,25,["G1519"]],[25,26,["G1565"]],[26,27,["G2532"]],[27,29,["G2010"]],[29,30,["G846"]]]},{"k":25278,"v":[[0,1,["G1161"]],[1,2,["G1831"]],[2,3,["G3588"]],[3,4,["G1140"]],[4,6,["G575"]],[6,7,["G3588"]],[7,8,["G444"]],[8,10,["G1525"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G5519"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G34"]],[16,18,["G3729"]],[18,19,["G2596"]],[19,22,["G2911"]],[22,23,["G1519"]],[23,24,["G3588"]],[24,25,["G3041"]],[25,26,["G2532"]],[26,28,["G638"]]]},{"k":25279,"v":[[0,1,["(G1161)"]],[1,4,["G1006"]],[4,6,["G1492"]],[6,9,["G1096"]],[9,11,["G5343"]],[11,12,["G2532"]],[12,13,["G565"]],[13,15,["G518"]],[15,17,["G1519"]],[17,18,["G3588"]],[18,19,["G4172"]],[19,20,["G2532"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G68"]]]},{"k":25280,"v":[[0,1,["G1161"]],[1,4,["G1831"]],[4,6,["G1492"]],[6,9,["G1096"]],[9,10,["G2532"]],[10,11,["G2064"]],[11,12,["G4314"]],[12,13,["G2424"]],[13,14,["G2532"]],[14,15,["G2147"]],[15,16,["G3588"]],[16,17,["G444"]],[17,19,["G575"]],[19,20,["G3739"]],[20,21,["G3588"]],[21,22,["G1140"]],[22,24,["G1831"]],[24,25,["G2521"]],[25,26,["G3844"]],[26,27,["G3588"]],[27,28,["G4228"]],[28,30,["G2424"]],[30,31,["G2439"]],[31,32,["G2532"]],[32,36,["G4993"]],[36,37,["G2532"]],[37,40,["G5399"]]]},{"k":25281,"v":[[0,0,["(G1161)"]],[0,4,["G1492","G2532"]],[4,6,["G518"]],[6,7,["G846"]],[7,10,["G4459"]],[10,17,["G1139"]],[17,19,["G4982"]]]},{"k":25282,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G537"]],[3,4,["G4128"]],[4,6,["G3588"]],[6,12,["G4066","G3588","G1046"]],[12,13,["G2065"]],[13,14,["G846"]],[14,16,["G565"]],[16,17,["G575"]],[17,18,["G846"]],[18,19,["G3754"]],[19,22,["G4912"]],[22,24,["G3173"]],[24,25,["G5401"]],[25,26,["G1161"]],[26,27,["G846"]],[27,29,["G1684"]],[29,30,["G1519"]],[30,31,["G3588"]],[31,32,["G4143"]],[32,36,["G5290"]]]},{"k":25283,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G435"]],[3,5,["G575"]],[5,6,["G3739"]],[6,7,["G3588"]],[7,8,["G1140"]],[8,10,["G1831"]],[10,11,["G1189"]],[11,12,["G846"]],[12,16,["G1511"]],[16,17,["G4862"]],[17,18,["G846"]],[18,19,["G1161"]],[19,20,["G2424"]],[20,23,["G630","G846"]],[23,24,["G3004"]]]},{"k":25284,"v":[[0,1,["G5290"]],[1,2,["G1519"]],[2,4,["G4675"]],[4,5,["G3624"]],[5,6,["G2532"]],[6,7,["G1334"]],[7,10,["G3745"]],[10,11,["G2316"]],[11,13,["G4160"]],[13,15,["G4671"]],[15,16,["G2532"]],[16,20,["G565"]],[20,22,["G2784"]],[22,23,["G2596"]],[23,24,["G3588"]],[24,25,["G3650"]],[25,26,["G4172"]],[26,29,["G3745"]],[29,30,["G2424"]],[30,32,["G4160"]],[32,34,["G846"]]]},{"k":25285,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,8,["G2424"]],[8,10,["G5290"]],[10,11,["G3588"]],[11,12,["G3793"]],[12,14,["G588"]],[14,15,["G846"]],[15,16,["G1063"]],[16,18,["G2258"]],[18,19,["G3956"]],[19,21,["G4328"]],[21,22,["G846"]]]},{"k":25286,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G2064"]],[4,6,["G435"]],[6,7,["G3686"]],[7,8,["G2383"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G5225"]],[11,13,["G758"]],[13,15,["G3588"]],[15,16,["G4864"]],[16,17,["G2532"]],[17,20,["G4098"]],[20,21,["G3844"]],[21,22,["G2424"]],[22,23,["G4228"]],[23,25,["G3870"]],[25,26,["G846"]],[26,30,["G1525"]],[30,31,["G1519"]],[31,32,["G848"]],[32,33,["G3624"]]]},{"k":25287,"v":[[0,1,["G3754"]],[1,2,["G846"]],[2,3,["G2258"]],[3,5,["G3439"]],[5,6,["G2364"]],[6,7,["G5613"]],[7,8,["G1427"]],[8,11,["G2094"]],[11,12,["G2532"]],[12,13,["G3778"]],[13,16,["G599"]],[16,17,["G1161"]],[17,19,["G846"]],[19,20,["G5217"]],[20,21,["G3588"]],[21,22,["G3793"]],[22,23,["G4846"]],[23,24,["G846"]]]},{"k":25288,"v":[[0,1,["G2532"]],[1,3,["G1135"]],[3,4,["G5607"]],[4,5,["(G1722)"]],[5,6,["G4511"]],[6,8,["G129"]],[8,9,["G1427"]],[9,10,["G2094"]],[10,11,["G3748"]],[11,13,["G4321"]],[13,14,["G3650"]],[14,16,["G979"]],[16,17,["G1519"]],[17,18,["G2395"]],[18,19,["G3756"]],[19,20,["G2480"]],[20,22,["G2323"]],[22,23,["G5259"]],[23,24,["G3762"]]]},{"k":25289,"v":[[0,1,["G4334"]],[1,2,["G3693"]],[2,5,["G680"]],[5,6,["G3588"]],[6,7,["G2899"]],[7,9,["G846"]],[9,10,["G2440"]],[10,11,["G2532"]],[11,12,["G3916"]],[12,13,["G846"]],[13,14,["G4511"]],[14,16,["G129"]],[16,17,["G2476"]]]},{"k":25290,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G5101"]],[4,5,["G680"]],[5,6,["G3450"]],[6,7,["G1161"]],[7,8,["G3956"]],[8,9,["G720"]],[9,10,["G4074"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,15,["G3326"]],[15,16,["G846"]],[16,17,["G2036"]],[17,18,["G1988"]],[18,19,["G3588"]],[19,20,["G3793"]],[20,21,["G4912"]],[21,22,["G4571"]],[22,23,["G2532"]],[23,24,["G598"]],[24,26,["G2532"]],[26,27,["G3004"]],[27,29,["G5101"]],[29,30,["G680"]],[30,31,["G3450"]]]},{"k":25291,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G5100"]],[4,6,["G680"]],[6,7,["G3450"]],[7,8,["G1063"]],[8,9,["G1473"]],[9,10,["G1097"]],[10,12,["G1411"]],[12,14,["G1831"]],[14,16,["G575"]],[16,17,["G1700"]]]},{"k":25292,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1135"]],[4,5,["G1492"]],[5,6,["G3754"]],[6,9,["G3756"]],[9,10,["G2990"]],[10,12,["G2064"]],[12,13,["G5141"]],[13,14,["G2532"]],[14,17,["G4363"]],[17,18,["G846"]],[18,20,["G518"]],[20,22,["G846"]],[22,23,["G1799"]],[23,24,["G3956"]],[24,25,["G3588"]],[25,26,["G2992"]],[26,27,["G1223"]],[27,28,["G3739"]],[28,29,["G156"]],[29,32,["G680"]],[32,33,["G846"]],[33,34,["G2532"]],[34,35,["G5613"]],[35,38,["G2390"]],[38,39,["G3916"]]]},{"k":25293,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G2364"]],[6,10,["G2293"]],[10,11,["G4675"]],[11,12,["G4102"]],[12,16,["G4982","G4571"]],[16,17,["G4198"]],[17,18,["G1519"]],[18,19,["G1515"]]]},{"k":25294,"v":[[0,2,["G846"]],[2,3,["G2089"]],[3,4,["G2980"]],[4,6,["G2064"]],[6,7,["G5100"]],[7,8,["G3844"]],[8,9,["G3588"]],[9,13,["G752"]],[13,15,["G3004"]],[15,17,["G846"]],[17,18,["G4675"]],[18,19,["G2364"]],[19,21,["G2348"]],[21,22,["G4660"]],[22,23,["G3361"]],[23,24,["G3588"]],[24,25,["G1320"]]]},{"k":25295,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,4,["G191"]],[4,7,["G611"]],[7,8,["G846"]],[8,9,["G3004"]],[9,10,["G5399"]],[10,11,["G3361"]],[11,12,["G4100"]],[12,13,["G3440"]],[13,14,["G2532"]],[14,19,["G4982"]]]},{"k":25296,"v":[[0,1,["G1161"]],[1,4,["G1525"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G3614"]],[7,9,["G863"]],[9,11,["G3756","G3762"]],[11,14,["G1525"]],[14,15,["G1508"]],[15,16,["G4074"]],[16,17,["G2532"]],[17,18,["G2385"]],[18,19,["G2532"]],[19,20,["G2491"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G3962"]],[23,24,["G2532"]],[24,25,["G3588"]],[25,26,["G3384"]],[26,28,["G3588"]],[28,29,["G3816"]]]},{"k":25297,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,3,["G2799"]],[3,4,["G2532"]],[4,5,["G2875"]],[5,6,["G846"]],[6,7,["G1161"]],[7,8,["G3588"]],[8,9,["G2036"]],[9,10,["G2799"]],[10,11,["G3361"]],[11,15,["G599","G3756"]],[15,16,["G235"]],[16,17,["G2518"]]]},{"k":25298,"v":[[0,1,["G2532"]],[1,6,["G2606","G846"]],[6,7,["G1492"]],[7,8,["G3754"]],[8,11,["G599"]]]},{"k":25299,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G1544"]],[3,5,["G3956"]],[5,6,["G1854"]],[6,7,["G2532"]],[7,8,["G2902"]],[8,9,["G846"]],[9,11,["G3588"]],[11,12,["G5495"]],[12,14,["G5455"]],[14,15,["G3004"]],[15,16,["G3816"]],[16,17,["G1453"]]]},{"k":25300,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G4151"]],[3,5,["G1994"]],[5,6,["G2532"]],[6,8,["G450"]],[8,9,["G3916"]],[9,10,["G2532"]],[10,12,["G1299"]],[12,14,["G1325"]],[14,15,["G846"]],[15,16,["G5315"]]]},{"k":25301,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G1118"]],[3,5,["G1839"]],[5,6,["G1161"]],[6,7,["G3588"]],[7,8,["G3853"]],[8,9,["G846"]],[9,13,["G2036"]],[13,15,["G3367"]],[15,18,["G1096"]]]},{"k":25302,"v":[[0,1,["G1161"]],[1,7,["G4779","G848","G1427","G3101"]],[7,9,["G1325"]],[9,10,["G846"]],[10,11,["G1411"]],[11,12,["G2532"]],[12,13,["G1849"]],[13,14,["G1909"]],[14,15,["G3956"]],[15,16,["G1140"]],[16,17,["G2532"]],[17,19,["G2323"]],[19,20,["G3554"]]]},{"k":25303,"v":[[0,1,["G2532"]],[1,3,["G649"]],[3,4,["G846"]],[4,6,["G2784"]],[6,7,["G3588"]],[7,8,["G932"]],[8,10,["G2316"]],[10,11,["G2532"]],[11,13,["G2390"]],[13,14,["G3588"]],[14,15,["G770"]]]},{"k":25304,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G142"]],[6,7,["G3367"]],[7,8,["G1519"]],[8,10,["G3598"]],[10,11,["G3383"]],[11,12,["G4464"]],[12,13,["G3383"]],[13,14,["G4082"]],[14,15,["G3383"]],[15,16,["G740"]],[16,17,["G3383"]],[17,18,["G694"]],[18,19,["G3383"]],[19,20,["G2192"]],[20,21,["G1417"]],[21,22,["G5509"]],[22,23,["G303"]]]},{"k":25305,"v":[[0,1,["G2532"]],[1,2,["G3739","G302"]],[2,3,["G3614"]],[3,5,["G1525"]],[5,6,["G1519"]],[6,7,["G1563"]],[7,8,["G3306"]],[8,9,["G2532"]],[9,10,["G1564"]],[10,11,["G1831"]]]},{"k":25306,"v":[[0,1,["G2532"]],[1,2,["G3745","G302"]],[2,4,["G3361"]],[4,5,["G1209"]],[5,6,["G5209"]],[6,9,["G1831"]],[9,11,["G575"]],[11,12,["G1565"]],[12,13,["G4172"]],[13,15,["G660"]],[15,16,["G3588"]],[16,17,["G2532"]],[17,18,["G2868"]],[18,19,["G575"]],[19,20,["G5216"]],[20,21,["G4228"]],[21,22,["G1519"]],[22,24,["G3142"]],[24,25,["G1909"]],[25,26,["G846"]]]},{"k":25307,"v":[[0,1,["G1161"]],[1,3,["G1831"]],[3,5,["G1330"]],[5,6,["G2596"]],[6,7,["G3588"]],[7,8,["G2968"]],[8,11,["G2097"]],[11,12,["G2532"]],[12,13,["G2323"]],[13,15,["G3837"]]]},{"k":25308,"v":[[0,1,["G1161"]],[1,2,["G2264"]],[2,3,["G3588"]],[3,4,["G5076"]],[4,5,["G191"]],[5,7,["G3956"]],[7,10,["G1096"]],[10,11,["G5259"]],[11,12,["G846"]],[12,13,["G2532"]],[13,16,["G1280"]],[16,21,["G3004"]],[21,22,["G5259"]],[22,23,["G5100"]],[23,24,["G3754"]],[24,25,["G2491"]],[25,27,["G1453"]],[27,28,["G1537"]],[28,30,["G3498"]]]},{"k":25309,"v":[[0,1,["G1161"]],[1,2,["G5259"]],[2,3,["G5100"]],[3,4,["G3754"]],[4,5,["G2243"]],[5,7,["G5316"]],[7,8,["G1161"]],[8,10,["G243"]],[10,11,["G3754"]],[11,12,["G1520"]],[12,14,["G3588"]],[14,15,["G744"]],[15,16,["G4396"]],[16,19,["G450"]]]},{"k":25310,"v":[[0,1,["G2532"]],[1,2,["G2264"]],[2,3,["G2036"]],[3,4,["G2491"]],[4,6,["G1473"]],[6,7,["G607"]],[7,8,["G1161"]],[8,9,["G5101"]],[9,10,["G2076"]],[10,11,["G3778"]],[11,12,["G4012"]],[12,13,["G3739"]],[13,14,["G1473"]],[14,15,["G191"]],[15,17,["G5108"]],[17,18,["G2532"]],[18,20,["G2212"]],[20,22,["G1492"]],[22,23,["G846"]]]},{"k":25311,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G652"]],[3,7,["G5290"]],[7,8,["G1334"]],[8,9,["G846"]],[9,11,["G3745"]],[11,14,["G4160"]],[14,15,["G2532"]],[15,17,["G3880"]],[17,18,["G846"]],[18,21,["G5298"]],[21,22,["G2596","G2398"]],[22,23,["G1519"]],[23,25,["G2048"]],[25,26,["G5117"]],[26,30,["G4172"]],[30,31,["G2564"]],[31,32,["G966"]]]},{"k":25312,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3793"]],[3,6,["G1097"]],[6,8,["G190"]],[8,9,["G846"]],[9,10,["G2532"]],[10,12,["G1209"]],[12,13,["G846"]],[13,15,["G2980"]],[15,17,["G846"]],[17,18,["G4012"]],[18,19,["G3588"]],[19,20,["G932"]],[20,22,["G2316"]],[22,23,["G2532"]],[23,24,["G2390"]],[24,27,["G2192"]],[27,28,["G5532"]],[28,30,["G2322"]]]},{"k":25313,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G2250"]],[4,5,["G756"]],[5,8,["G2827"]],[8,9,["G1161"]],[9,10,["G4334"]],[10,11,["G3588"]],[11,12,["G1427"]],[12,14,["G2036"]],[14,16,["G846"]],[16,20,["G630","G3588","G3793"]],[20,21,["G2443"]],[21,24,["G565"]],[24,25,["G1519"]],[25,26,["G3588"]],[26,27,["G2968"]],[27,28,["G2532"]],[28,29,["G68"]],[29,31,["G2945"]],[31,33,["G2647"]],[33,34,["G2532"]],[34,35,["G2147"]],[35,36,["G1979"]],[36,37,["G3754"]],[37,39,["G2070"]],[39,40,["G5602"]],[40,41,["G1722"]],[41,43,["G2048"]],[43,44,["G5117"]]]},{"k":25314,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G1325"]],[6,7,["G5210"]],[7,8,["G846"]],[8,10,["G5315"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,13,["G2036"]],[13,14,["G2254"]],[14,15,["G1526"]],[15,16,["G3756"]],[16,17,["G4119"]],[17,18,["G2228"]],[18,19,["G4002"]],[19,20,["G740"]],[20,21,["G2532"]],[21,22,["G1417"]],[22,23,["G2486"]],[23,24,["G1509"]],[24,25,["G2249"]],[25,27,["G4198"]],[27,29,["G59"]],[29,30,["G1033"]],[30,31,["G1519"]],[31,32,["G3956"]],[32,33,["G5126"]],[33,34,["G2992"]]]},{"k":25315,"v":[[0,1,["G1063"]],[1,3,["G2258"]],[3,4,["G5616"]],[4,6,["G4000"]],[6,7,["G435"]],[7,8,["G1161"]],[8,9,["G3588"]],[9,10,["G2036"]],[10,11,["G4314"]],[11,12,["G848"]],[12,13,["G3101"]],[13,15,["G846"]],[15,17,["G2625"]],[17,18,["G303"]],[18,19,["G4004"]],[19,22,["G2828"]]]},{"k":25316,"v":[[0,1,["G2532"]],[1,3,["G4160"]],[3,4,["G3779"]],[4,5,["G2532"]],[5,8,["G537"]],[8,10,["G347"]]]},{"k":25317,"v":[[0,1,["G1161"]],[1,3,["G2983"]],[3,4,["G3588"]],[4,5,["G4002"]],[5,6,["G740"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G1417"]],[9,10,["G2486"]],[10,13,["G308"]],[13,14,["G1519"]],[14,15,["G3772"]],[15,17,["G2127"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G2622"]],[20,21,["G2532"]],[21,22,["G1325"]],[22,24,["G3588"]],[24,25,["G3101"]],[25,28,["G3908"]],[28,29,["G3588"]],[29,30,["G3793"]]]},{"k":25318,"v":[[0,1,["G2532"]],[1,4,["G5315"]],[4,5,["G2532"]],[5,7,["G3956"]],[7,8,["G5526"]],[8,9,["G2532"]],[9,13,["G142"]],[13,15,["G2801"]],[15,17,["G4052"]],[17,19,["G846"]],[19,20,["G1427"]],[20,21,["G2894"]]]},{"k":25319,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G846"]],[7,8,["G1511"]],[8,9,["G2651"]],[9,10,["G4336"]],[10,12,["G3101"]],[12,14,["G4895"]],[14,15,["G846"]],[15,16,["G2532"]],[16,18,["G1905"]],[18,19,["G846"]],[19,20,["G3004"]],[20,21,["G5101"]],[21,22,["G3004"]],[22,23,["G3588"]],[23,24,["G3793"]],[24,26,["G3165"]],[26,27,["G1511"]]]},{"k":25320,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G611"]],[2,3,["G2036"]],[3,4,["G2491"]],[4,5,["G3588"]],[5,6,["G910"]],[6,7,["G1161"]],[7,8,["G243"]],[8,10,["G2243"]],[10,11,["G1161"]],[11,12,["G243"]],[12,14,["G3754"]],[14,15,["G5100"]],[15,17,["G3588"]],[17,18,["G744"]],[18,19,["G4396"]],[19,22,["G450"]]]},{"k":25321,"v":[[0,0,["(G1161)"]],[0,2,["G2036"]],[2,4,["G846"]],[4,5,["G1161"]],[5,6,["G5101"]],[6,7,["G3004"]],[7,8,["G5210"]],[8,10,["G3165"]],[10,11,["G1511","(G1161)"]],[11,12,["G4074"]],[12,13,["G611"]],[13,14,["G2036"]],[14,15,["G3588"]],[15,16,["G5547"]],[16,18,["G2316"]]]},{"k":25322,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G2008"]],[4,5,["G846"]],[5,7,["G3853"]],[7,10,["G2036"]],[10,12,["G3367"]],[12,14,["G5124"]]]},{"k":25323,"v":[[0,1,["G2036"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G444"]],[5,6,["G1163"]],[6,7,["G3958"]],[7,9,["G4183"]],[9,10,["G2532"]],[10,12,["G593"]],[12,13,["G575"]],[13,14,["G3588"]],[14,15,["G4245"]],[15,16,["G2532"]],[16,18,["G749"]],[18,19,["G2532"]],[19,20,["G1122"]],[20,21,["G2532"]],[21,23,["G615"]],[23,24,["G2532"]],[24,26,["G1453"]],[26,27,["G3588"]],[27,28,["G5154"]],[28,29,["G2250"]]]},{"k":25324,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,4,["G4314"]],[4,6,["G3956"]],[6,7,["G1487"]],[7,8,["G5100"]],[8,10,["G2309"]],[10,11,["G2064"]],[11,12,["G3694"]],[12,13,["G3450"]],[13,16,["G533"]],[16,17,["G1438"]],[17,18,["G2532"]],[18,20,["G142"]],[20,21,["G848"]],[21,22,["G4716"]],[22,23,["G2596","G2250"]],[23,24,["G2532"]],[24,25,["G190"]],[25,26,["G3427"]]]},{"k":25325,"v":[[0,1,["G1063"]],[1,2,["G3739","G302"]],[2,3,["G2309"]],[3,4,["G4982"]],[4,5,["G848"]],[5,6,["G5590"]],[6,8,["G622"]],[8,9,["G846"]],[9,10,["G1161"]],[10,11,["G3739","G302"]],[11,13,["G622"]],[13,14,["G848"]],[14,15,["G5590"]],[15,18,["G1752","G1700"]],[18,20,["G3778"]],[20,22,["G4982"]],[22,23,["G846"]]]},{"k":25326,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,5,["G444"]],[5,6,["G5623"]],[6,9,["G2770"]],[9,10,["G3588"]],[10,11,["G3650"]],[11,12,["G2889"]],[12,13,["G1161"]],[13,14,["G622"]],[14,15,["G1438"]],[15,16,["G2228"]],[16,19,["G2210"]]]},{"k":25327,"v":[[0,1,["G1063"]],[1,2,["G3739","G302"]],[2,5,["G1870"]],[5,7,["G3165"]],[7,8,["G2532"]],[8,10,["G1699"]],[10,11,["G3056"]],[11,13,["G5126"]],[13,15,["G3588"]],[15,16,["G5207"]],[16,18,["G444"]],[18,20,["G1870"]],[20,21,["G3752"]],[21,24,["G2064"]],[24,25,["G1722"]],[25,27,["G848"]],[27,28,["G1391"]],[28,29,["G2532"]],[29,32,["G3962"]],[32,33,["G2532"]],[33,35,["G3588"]],[35,36,["G40"]],[36,37,["G32"]]]},{"k":25328,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,4,["G5213"]],[4,7,["G230"]],[7,9,["G1526"]],[9,10,["G5100"]],[10,11,["G2476"]],[11,12,["G5602"]],[12,13,["G3739"]],[13,15,["G3364"]],[15,16,["G1089"]],[16,18,["G2288"]],[18,19,["G2193","G302"]],[19,21,["G1492"]],[21,22,["G3588"]],[22,23,["G932"]],[23,25,["G2316"]]]},{"k":25329,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,6,["G5616"]],[6,8,["G3638"]],[8,9,["G2250"]],[9,10,["G3326"]],[10,11,["G5128"]],[11,12,["G3056"]],[12,13,["(G2532)"]],[13,14,["G3880"]],[14,15,["G4074"]],[15,16,["G2532"]],[16,17,["G2491"]],[17,18,["G2532"]],[18,19,["G2385"]],[19,22,["G305"]],[22,23,["G1519"]],[23,25,["G3735"]],[25,27,["G4336"]]]},{"k":25330,"v":[[0,1,["G2532"]],[1,2,["(G1096)"]],[2,3,["G846"]],[3,4,["G4336"]],[4,5,["G3588"]],[5,6,["G1491"]],[6,8,["G846"]],[8,9,["G4383"]],[9,11,["G2087"]],[11,12,["G2532"]],[12,13,["G846"]],[13,14,["G2441"]],[14,16,["G3022"]],[16,18,["G1823"]]]},{"k":25331,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,5,["G4814"]],[5,6,["G846"]],[6,7,["G1417"]],[7,8,["G444"]],[8,9,["G3748"]],[9,10,["G2258"]],[10,11,["G3475"]],[11,12,["G2532"]],[12,13,["G2243"]]]},{"k":25332,"v":[[0,1,["G3739"]],[1,2,["G3700"]],[2,3,["G1722"]],[3,4,["G1391"]],[4,6,["G3004"]],[6,8,["G846"]],[8,9,["G1841"]],[9,10,["G3739"]],[10,12,["G3195"]],[12,13,["G4137"]],[13,14,["G1722"]],[14,15,["G2419"]]]},{"k":25333,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2532"]],[3,4,["G3588"]],[4,7,["G4862"]],[7,8,["G846"]],[8,9,["G2258"]],[9,10,["G916"]],[10,12,["G5258"]],[12,13,["G1161"]],[13,17,["G1235"]],[17,19,["G1492"]],[19,20,["G846"]],[20,21,["G1391"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G1417"]],[24,25,["G444"]],[25,28,["G4921"]],[28,29,["G846"]]]},{"k":25334,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G846"]],[7,8,["G1316"]],[8,9,["G575"]],[9,10,["G846"]],[10,11,["G4074"]],[11,12,["G2036"]],[12,13,["G4314"]],[13,14,["G2424"]],[14,15,["G1988"]],[15,17,["G2076"]],[17,18,["G2570"]],[18,20,["G2248"]],[20,22,["G1511"]],[22,23,["G5602"]],[23,24,["G2532"]],[24,27,["G4160"]],[27,28,["G5140"]],[28,29,["G4633"]],[29,30,["G3391"]],[30,32,["G4671"]],[32,33,["G2532"]],[33,34,["G3391"]],[34,36,["G3475"]],[36,37,["G2532"]],[37,38,["G3391"]],[38,40,["G2243"]],[40,41,["G3361"]],[41,42,["G1492"]],[42,43,["G3739"]],[43,45,["G3004"]]]},{"k":25335,"v":[[0,1,["(G1161)"]],[1,2,["G846"]],[2,3,["G5023"]],[3,4,["G3004"]],[4,6,["G1096"]],[6,8,["G3507"]],[8,9,["G2532"]],[9,10,["G1982"]],[10,11,["G846"]],[11,12,["G1161"]],[12,14,["G5399"]],[14,16,["G1565"]],[16,17,["G1525"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G3507"]]]},{"k":25336,"v":[[0,1,["G2532"]],[1,3,["G1096"]],[3,5,["G5456"]],[5,7,["G1537"]],[7,8,["G3588"]],[8,9,["G3507"]],[9,10,["G3004"]],[10,11,["G3778"]],[11,12,["G2076"]],[12,13,["G3450"]],[13,14,["G27"]],[14,15,["G5207"]],[15,16,["G191"]],[16,17,["G846"]]]},{"k":25337,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G5456"]],[4,6,["G1096"]],[6,7,["G2424"]],[7,9,["G2147"]],[9,10,["G3441"]],[10,11,["G2532"]],[11,12,["G846"]],[12,15,["G4601"]],[15,16,["G2532"]],[16,17,["G518"]],[17,19,["G3762"]],[19,20,["G1722"]],[20,21,["G1565"]],[21,22,["G2250"]],[22,26,["G3762"]],[26,27,["G3739"]],[27,30,["G3708"]]]},{"k":25338,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,7,["G1722"]],[7,8,["G3588"]],[8,9,["G1836"]],[9,10,["G2250"]],[10,12,["G846"]],[12,15,["G2718"]],[15,16,["G575"]],[16,17,["G3588"]],[17,18,["G3735"]],[18,19,["G4183"]],[19,20,["G3793"]],[20,21,["G4876"]],[21,22,["G846"]]]},{"k":25339,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G435"]],[4,5,["G575"]],[5,6,["G3588"]],[6,7,["G3793"]],[7,9,["G310"]],[9,10,["G3004"]],[10,11,["G1320"]],[11,13,["G1189"]],[13,14,["G4675"]],[14,15,["G1914"]],[15,16,["G1909"]],[16,17,["G3450"]],[17,18,["G5207"]],[18,19,["G3754"]],[19,21,["G2076"]],[21,22,["G3427"]],[22,24,["G3439"]]]},{"k":25340,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G4151"]],[4,5,["G2983"]],[5,6,["G846"]],[6,7,["G2532"]],[7,9,["G1810"]],[9,11,["G2896"]],[11,12,["G2532"]],[12,14,["G4682"]],[14,15,["G846"]],[15,19,["G3326","G876"]],[19,20,["G2532"]],[20,21,["G4937"]],[21,22,["G846"]],[22,23,["G3425"]],[23,24,["G672"]],[24,25,["G575"]],[25,26,["G846"]]]},{"k":25341,"v":[[0,1,["G2532"]],[1,3,["G1189"]],[3,4,["G4675"]],[4,5,["G3101"]],[5,6,["G2443"]],[6,9,["G1544","G846"]],[9,10,["G2532"]],[10,12,["G1410"]],[12,13,["G3756"]]]},{"k":25342,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,5,["G5599"]],[5,6,["G571"]],[6,7,["G2532"]],[7,8,["G1294"]],[8,9,["G1074"]],[9,11,["G2193","G4219"]],[11,14,["G2071"]],[14,15,["G4314"]],[15,16,["G5209"]],[16,17,["G2532"]],[17,18,["G430"]],[18,19,["G5216"]],[19,20,["G4317"]],[20,21,["G4675"]],[21,22,["G5207"]],[22,23,["G5602"]]]},{"k":25343,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G2089"]],[5,7,["G4334"]],[7,8,["G3588"]],[8,9,["G1140"]],[9,12,["G4486","G846"]],[12,13,["G2532"]],[13,14,["G4952"]],[14,16,["G1161"]],[16,17,["G2424"]],[17,18,["G2008"]],[18,19,["G3588"]],[19,20,["G169"]],[20,21,["G4151"]],[21,22,["G2532"]],[22,23,["G2390"]],[23,24,["G3588"]],[24,25,["G3816"]],[25,26,["G2532"]],[26,29,["G591","G846"]],[29,31,["G846"]],[31,32,["G3962"]]]},{"k":25344,"v":[[0,1,["G1161"]],[1,4,["G3956"]],[4,5,["G1605"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,9,["G3168"]],[9,11,["G2316"]],[11,12,["G1161"]],[12,15,["G2296"]],[15,17,["G3956"]],[17,18,["G1909"]],[18,20,["G3956"]],[20,21,["G3739"]],[21,22,["G2424"]],[22,23,["G4160"]],[23,25,["G2036"]],[25,26,["G4314"]],[26,27,["G848"]],[27,28,["G3101"]]]},{"k":25345,"v":[[0,1,["(G5210)"]],[1,2,["G5128"]],[2,3,["G3056"]],[3,5,["G5087"]],[5,6,["G1519"]],[6,7,["G5216"]],[7,8,["G3775"]],[8,9,["G1063"]],[9,10,["G3588"]],[10,11,["G5207"]],[11,13,["G444"]],[13,14,["G3195"]],[14,16,["G3860"]],[16,17,["G1519"]],[17,19,["G5495"]],[19,21,["G444"]]]},{"k":25346,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G50"]],[4,5,["G5124"]],[5,6,["G4487"]],[6,7,["G2532"]],[7,9,["G2258"]],[9,10,["G3871"]],[10,11,["G575"]],[11,12,["G846"]],[12,13,["G2443"]],[13,15,["G143"]],[15,16,["G846"]],[16,17,["G3361"]],[17,18,["G2532"]],[18,20,["G5399"]],[20,22,["G2065"]],[22,23,["G846"]],[23,24,["G4012"]],[24,25,["G5127"]],[25,26,["G4487"]]]},{"k":25347,"v":[[0,1,["G1161"]],[1,3,["G1525"]],[3,5,["G1261"]],[5,6,["G1722"]],[6,7,["G846"]],[7,8,["G5101"]],[8,10,["G846"]],[10,12,["G1498"]],[12,13,["G3187"]]]},{"k":25348,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G1492"]],[3,4,["G3588"]],[4,5,["G1261"]],[5,7,["G846"]],[7,8,["G2588"]],[8,9,["G1949"]],[9,11,["G3813"]],[11,13,["G2476"]],[13,14,["G846"]],[14,15,["G3844"]],[15,16,["G1438"]]]},{"k":25349,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G3739","G1437"]],[5,7,["G1209"]],[7,8,["G5124"]],[8,9,["G3813"]],[9,10,["G1909"]],[10,11,["G3450"]],[11,12,["G3686"]],[12,13,["G1209"]],[13,14,["G1691"]],[14,15,["G2532"]],[15,16,["G3739","G1437"]],[16,18,["G1209"]],[18,19,["G1691"]],[19,20,["G1209"]],[20,23,["G649"]],[23,24,["G3165"]],[24,25,["G1063"]],[25,28,["G5225"]],[28,29,["G3398"]],[29,30,["G1722"]],[30,31,["G5213"]],[31,32,["G3956"]],[32,34,["G3778"]],[34,36,["G2071"]],[36,37,["G3173"]]]},{"k":25350,"v":[[0,1,["G1161"]],[1,2,["G2491"]],[2,3,["G611"]],[3,5,["G2036"]],[5,6,["G1988"]],[6,8,["G1492"]],[8,9,["G5100"]],[9,11,["G1544"]],[11,12,["G1140"]],[12,13,["G1909"]],[13,14,["G4675"]],[14,15,["G3686"]],[15,16,["G2532"]],[16,18,["G2967"]],[18,19,["G846"]],[19,20,["G3754"]],[20,22,["G190"]],[22,23,["G3756"]],[23,24,["G3326"]],[24,25,["G2257"]]]},{"k":25351,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G2967"]],[6,8,["G3361"]],[8,9,["G1063"]],[9,10,["G3739"]],[10,12,["G2076"]],[12,13,["G3756"]],[13,14,["G2596"]],[14,15,["G2257"]],[15,16,["G2076"]],[16,17,["G5228"]],[17,18,["G2257"]]]},{"k":25352,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,7,["G3588"]],[7,8,["G2250"]],[8,10,["G4845"]],[10,11,["G2532"]],[11,12,["G846"]],[12,16,["G354"]],[16,17,["G846"]],[17,19,["G4741"]],[19,20,["G848"]],[20,21,["G4383"]],[21,23,["G4198"]],[23,24,["G1519"]],[24,25,["G2419"]]]},{"k":25353,"v":[[0,1,["G2532"]],[1,2,["G649"]],[2,3,["G32"]],[3,4,["G4253"]],[4,5,["G848"]],[5,6,["G4383"]],[6,7,["G2532"]],[7,9,["G4198"]],[9,11,["G1525"]],[11,12,["G1519"]],[12,14,["G2968"]],[14,17,["G4541"]],[17,18,["G5620"]],[18,20,["G2090"]],[20,22,["G846"]]]},{"k":25354,"v":[[0,1,["G2532"]],[1,4,["G3756"]],[4,5,["G1209"]],[5,6,["G846"]],[6,7,["G3754"]],[7,8,["G846"]],[8,9,["G4383"]],[9,10,["G2258"]],[10,15,["G4198"]],[15,16,["G1519"]],[16,17,["G2419"]]]},{"k":25355,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G3101"]],[4,5,["G2385"]],[5,6,["G2532"]],[6,7,["G2491"]],[7,8,["G1492"]],[8,11,["G2036"]],[11,12,["G2962"]],[12,13,["G2309"]],[13,17,["G2036"]],[17,18,["G4442"]],[18,21,["G2597"]],[21,22,["G575"]],[22,23,["G3772"]],[23,24,["G2532"]],[24,25,["G355"]],[25,26,["G846"]],[26,27,["G2532"]],[27,28,["G5613"]],[28,29,["G2243"]],[29,30,["G4160"]]]},{"k":25356,"v":[[0,1,["G1161"]],[1,3,["G4762"]],[3,5,["G2008"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G2036"]],[8,10,["G1492"]],[10,11,["G3756"]],[11,13,["G3634"]],[13,15,["G4151"]],[15,16,["G5210"]],[16,17,["G2075"]],[17,18,[]]]},{"k":25357,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G444"]],[5,7,["G3756"]],[7,8,["G2064"]],[8,10,["G622"]],[10,11,["G444"]],[11,12,["G5590"]],[12,13,["G235"]],[13,15,["G4982"]],[15,17,["G2532"]],[17,19,["G4198"]],[19,20,["G1519"]],[20,21,["G2087"]],[21,22,["G2968"]]]},{"k":25358,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,8,["G846"]],[8,9,["G4198"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G3598"]],[12,14,["G5100"]],[14,16,["G2036"]],[16,17,["G4314"]],[17,18,["G846"]],[18,19,["G2962"]],[19,22,["G190"]],[22,23,["G4671"]],[23,24,["G3699","G302"]],[24,26,["G565"]]]},{"k":25359,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G258"]],[6,7,["G2192"]],[7,8,["G5454"]],[8,9,["G2532"]],[9,10,["G4071"]],[10,12,["G3588"]],[12,13,["G3772"]],[13,15,["G2682"]],[15,16,["G1161"]],[16,17,["G3588"]],[17,18,["G5207"]],[18,20,["G444"]],[20,21,["G2192"]],[21,22,["G3756"]],[22,23,["G4226"]],[23,25,["G2827"]],[25,27,["G2776"]]]},{"k":25360,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G2087"]],[5,6,["G190"]],[6,7,["G3427"]],[7,8,["G1161"]],[8,9,["G3588"]],[9,10,["G2036"]],[10,11,["G2962"]],[11,12,["G2010"]],[12,13,["G3427"]],[13,14,["G4412"]],[14,16,["G565"]],[16,18,["G2290"]],[18,19,["G3450"]],[19,20,["G3962"]]]},{"k":25361,"v":[[0,0,["(G1161)"]],[0,1,["G2424"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G863"]],[5,6,["G3588"]],[6,7,["G3498"]],[7,8,["G2290"]],[8,9,["G1438"]],[9,10,["G3498"]],[10,11,["G1161"]],[11,12,["G565"]],[12,13,["G4771"]],[13,15,["G1229"]],[15,16,["G3588"]],[16,17,["G932"]],[17,19,["G2316"]]]},{"k":25362,"v":[[0,1,["G1161"]],[1,2,["G2087"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,5,["G2962"]],[5,8,["G190"]],[8,9,["G4671"]],[9,10,["G1161"]],[10,11,["G2010"]],[11,12,["G3427"]],[12,13,["G4412"]],[13,17,["G657"]],[17,18,["G3588"]],[18,22,["G1519"]],[22,23,["G3450"]],[23,24,["G3624"]]]},{"k":25363,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,7,["G3762"]],[7,9,["G1911"]],[9,10,["G848"]],[10,11,["G5495"]],[11,12,["G1909"]],[12,14,["G723"]],[14,15,["G2532"]],[15,16,["G991"]],[16,17,["G1519","G3694"]],[17,18,["G2076"]],[18,19,["G2111"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G932"]],[22,24,["G2316"]]]},{"k":25364,"v":[[0,1,["(G3326)"]],[1,3,["G5023"]],[3,4,["G3588"]],[4,5,["G2962"]],[5,6,["G322"]],[6,7,["G2087"]],[7,8,["G1440"]],[8,9,["G2532"]],[9,10,["G2532"]],[10,11,["G649"]],[11,12,["G846"]],[12,15,["G303","G1417"]],[15,16,["G4253"]],[16,17,["G848"]],[17,18,["G4383"]],[18,19,["G1519"]],[19,20,["G3956"]],[20,21,["G4172"]],[21,22,["G2532"]],[22,23,["G5117"]],[23,24,["G3757"]],[24,26,["G846"]],[26,27,["G3195"]],[27,28,["G2064"]]]},{"k":25365,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,4,["G4314"]],[4,5,["G846"]],[5,6,["G3588"]],[6,7,["G2326"]],[7,8,["G3303"]],[8,10,["G4183"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,13,["G2040"]],[13,15,["G3641"]],[15,16,["G1189"]],[16,18,["G3767"]],[18,19,["G3588"]],[19,20,["G2962"]],[20,22,["G3588"]],[22,23,["G2326"]],[23,24,["G3704"]],[24,28,["G1544"]],[28,29,["G2040"]],[29,30,["G1519"]],[30,31,["G848"]],[31,32,["G2326"]]]},{"k":25366,"v":[[0,3,["G5217"]],[3,4,["G2400"]],[4,5,["G1473"]],[5,8,["G649","G5209"]],[8,9,["G5613"]],[9,10,["G704"]],[10,11,["G1722","G3319"]],[11,12,["G3074"]]]},{"k":25367,"v":[[0,1,["G941"]],[1,2,["G3361"]],[2,3,["G905"]],[3,4,["G3361"]],[4,5,["G4082"]],[5,6,["G3366"]],[6,7,["G5266"]],[7,8,["G2532"]],[8,9,["G782"]],[9,11,["G3367"]],[11,12,["G2596"]],[12,13,["G3588"]],[13,14,["G3598"]]]},{"k":25368,"v":[[0,1,["G1161"]],[1,2,["G1519"]],[2,3,["G3739","G302"]],[3,4,["G3614"]],[4,6,["G1525"]],[6,7,["G4412"]],[7,8,["G3004"]],[8,9,["G1515"]],[9,12,["G5129"]],[12,13,["G3624"]]]},{"k":25369,"v":[[0,1,["G2532"]],[1,2,["G1437","(G3303)"]],[2,3,["G3588"]],[3,4,["G5207"]],[4,6,["G1515"]],[6,7,["G5600"]],[7,8,["G1563"]],[8,9,["G5216"]],[9,10,["G1515"]],[10,12,["G1879"]],[12,13,["G1909"]],[13,14,["G846"]],[14,16,["G1490"]],[16,22,["G344","G1909","G5209"]]]},{"k":25370,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G846"]],[4,5,["G3614"]],[5,6,["G3306"]],[6,7,["G2068"]],[7,8,["G2532"]],[8,9,["G4095"]],[9,14,["G3588","G3844","G846"]],[14,15,["G1063"]],[15,16,["G3588"]],[16,17,["G2040"]],[17,18,["G2076"]],[18,19,["G514"]],[19,21,["G848"]],[21,22,["G3408"]],[22,23,["G3327"]],[23,24,["G3361"]],[24,25,["G1537"]],[25,26,["G3614"]],[26,27,["G1519"]],[27,28,["G3614"]]]},{"k":25371,"v":[[0,1,["G2532"]],[1,2,["G1519","(G1161)"]],[2,3,["G3739","G302"]],[3,4,["G4172"]],[4,6,["G1525"]],[6,7,["G2532"]],[7,9,["G1209"]],[9,10,["G5209"]],[10,11,["G2068"]],[11,17,["G3908"]],[17,18,["G5213"]]]},{"k":25372,"v":[[0,1,["G2532"]],[1,2,["G2323"]],[2,3,["G3588"]],[3,4,["G772"]],[4,7,["G1722","G846"]],[7,8,["G2532"]],[8,9,["G3004"]],[9,11,["G846"]],[11,12,["G3588"]],[12,13,["G932"]],[13,15,["G2316"]],[15,18,["G1448"]],[18,19,["G1909"]],[19,20,["G5209"]]]},{"k":25373,"v":[[0,1,["G1161"]],[1,2,["G1519","(G1161)"]],[2,3,["G3739","G302"]],[3,4,["G4172"]],[4,6,["G1525"]],[6,7,["G2532"]],[7,9,["G1209"]],[9,10,["G5209"]],[10,11,["G3361"]],[11,15,["G1831"]],[15,16,["G1519"]],[16,17,["G3588"]],[17,18,["G4113"]],[18,21,["G846"]],[21,23,["G2036"]]]},{"k":25374,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,4,["G2868"]],[4,5,["G1537"]],[5,6,["G5216"]],[6,7,["G4172"]],[7,9,["G2853"]],[9,11,["G2254"]],[11,15,["G631"]],[15,17,["G5213"]],[17,18,["G4133"]],[18,21,["G1097"]],[21,23,["G5124"]],[23,24,["G3754"]],[24,25,["G3588"]],[25,26,["G932"]],[26,28,["G2316"]],[28,31,["G1448"]],[31,32,["G1909"]],[32,33,["G5209"]]]},{"k":25375,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,9,["G2071"]],[9,11,["G414"]],[11,12,["G1722"]],[12,13,["G1565"]],[13,14,["G2250"]],[14,16,["G4670"]],[16,17,["G2228"]],[17,19,["G1565"]],[19,20,["G4172"]]]},{"k":25376,"v":[[0,1,["G3759"]],[1,3,["G4671"]],[3,4,["G5523"]],[4,5,["G3759"]],[5,7,["G4671"]],[7,8,["G966"]],[8,9,["G3754"]],[9,10,["G1487"]],[10,11,["G3588"]],[11,13,["G1411"]],[13,16,["G1096"]],[16,17,["G1722"]],[17,18,["G5184"]],[18,19,["G2532"]],[19,20,["G4605"]],[20,24,["G1096"]],[24,25,["G1722"]],[25,26,["G5213"]],[26,28,["(G302)"]],[28,32,["G3819"]],[32,33,["G3340"]],[33,34,["G2521"]],[34,35,["G1722"]],[35,36,["G4526"]],[36,37,["G2532"]],[37,38,["G4700"]]]},{"k":25377,"v":[[0,1,["G4133"]],[1,4,["G2071"]],[4,6,["G414"]],[6,8,["G5184"]],[8,9,["G2532"]],[9,10,["G4605"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G2920"]],[13,14,["G2228"]],[14,16,["G5213"]]]},{"k":25378,"v":[[0,1,["G2532"]],[1,2,["G4771"]],[2,3,["G2584"]],[3,6,["G5312"]],[6,7,["G2193"]],[7,8,["G3772"]],[8,12,["G2601"]],[12,13,["G2193"]],[13,14,["G86"]]]},{"k":25379,"v":[[0,3,["G191"]],[3,4,["G5216"]],[4,5,["G191"]],[5,6,["G1700"]],[6,7,["G2532"]],[7,10,["G114"]],[10,11,["G5209"]],[11,12,["G114"]],[12,13,["G1691"]],[13,14,["G1161"]],[14,17,["G114"]],[17,18,["G1691"]],[18,19,["G114"]],[19,20,["G3588"]],[20,22,["G649"]],[22,23,["G3165"]]]},{"k":25380,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1440"]],[3,5,["G5290"]],[5,6,["G3326"]],[6,7,["G5479"]],[7,8,["G3004"]],[8,9,["G2962"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G1140"]],[12,15,["G5293"]],[15,16,["G2254"]],[16,17,["G1722"]],[17,18,["G4675"]],[18,19,["G3686"]]]},{"k":25381,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G846"]],[5,7,["G2334"]],[7,8,["G4567"]],[8,9,["G5613"]],[9,10,["G796"]],[10,11,["G4098"]],[11,12,["G1537"]],[12,13,["G3772"]]]},{"k":25382,"v":[[0,1,["G2400"]],[1,3,["G1325"]],[3,5,["G5213"]],[5,6,["G1849"]],[6,8,["G3961"]],[8,9,["G1883"]],[9,10,["G3789"]],[10,11,["G2532"]],[11,12,["G4651"]],[12,13,["G2532"]],[13,14,["G1909"]],[14,15,["G3956"]],[15,16,["G3588"]],[16,17,["G1411"]],[17,19,["G3588"]],[19,20,["G2190"]],[20,21,["G2532"]],[21,22,["G3762"]],[22,26,["G3364"]],[26,27,["G91"]],[27,28,["G5209"]]]},{"k":25383,"v":[[0,1,["G4133"]],[1,2,["G1722"]],[2,3,["G5129"]],[3,4,["G5463"]],[4,5,["G3361"]],[5,6,["G3754"]],[6,7,["G3588"]],[7,8,["G4151"]],[8,10,["G5293"]],[10,12,["G5213"]],[12,13,["G1161"]],[13,14,["G3123"]],[14,15,["G5463"]],[15,16,["G3754"]],[16,17,["G5216"]],[17,18,["G3686"]],[18,20,["G1125"]],[20,21,["G1722"]],[21,22,["G3772"]]]},{"k":25384,"v":[[0,1,["G1722"]],[1,2,["G846"]],[2,3,["G5610"]],[3,4,["G2424"]],[4,5,["G21"]],[5,7,["G4151"]],[7,8,["G2532"]],[8,9,["G2036"]],[9,11,["G1843"]],[11,12,["G4671"]],[12,14,["G3962"]],[14,15,["G2962"]],[15,17,["G3772"]],[17,18,["G2532"]],[18,19,["G1093"]],[19,20,["G3754"]],[20,23,["G613"]],[23,25,["G5023"]],[25,26,["G575"]],[26,28,["G4680"]],[28,29,["G2532"]],[29,30,["G4908"]],[30,31,["G2532"]],[31,33,["G601"]],[33,34,["G846"]],[34,36,["G3516"]],[36,38,["G3483"]],[38,39,["G3962"]],[39,40,["G3754"]],[40,41,["G3779"]],[41,43,["G1096"]],[43,44,["G2107"]],[44,47,["G1715","G4675"]]]},{"k":25385,"v":[[0,2,["G3956"]],[2,4,["G3860"]],[4,6,["G3427"]],[6,7,["G5259"]],[7,8,["G3450"]],[8,9,["G3962"]],[9,10,["G2532"]],[10,12,["G3762"]],[12,13,["G1097"]],[13,14,["G5101"]],[14,15,["G3588"]],[15,16,["G5207"]],[16,17,["G2076"]],[17,18,["G1508"]],[18,19,["G3588"]],[19,20,["G3962"]],[20,21,["G2532"]],[21,22,["G5101"]],[22,23,["G3588"]],[23,24,["G3962"]],[24,25,["G2076"]],[25,26,["G1508"]],[26,27,["G3588"]],[27,28,["G5207"]],[28,29,["G2532"]],[29,32,["G3739","G1437"]],[32,33,["G3588"]],[33,34,["G5207"]],[34,35,["G1014"]],[35,36,["G601"]],[36,37,[]]]},{"k":25386,"v":[[0,1,["G2532"]],[1,3,["G4762"]],[3,5,["G4314"]],[5,7,["G3101"]],[7,9,["G2036"]],[9,10,["G2596","G2398"]],[10,11,["G3107"]],[11,13,["G3588"]],[13,14,["G3788"]],[14,16,["G991"]],[16,19,["G3739"]],[19,21,["G991"]]]},{"k":25387,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,4,["G5213"]],[4,5,["G3754"]],[5,6,["G4183"]],[6,7,["G4396"]],[7,8,["G2532"]],[8,9,["G935"]],[9,11,["G2309"]],[11,13,["G1492"]],[13,16,["G3739"]],[16,17,["G5210"]],[17,18,["G991"]],[18,19,["G2532"]],[19,21,["G3756"]],[21,22,["G1492"]],[22,24,["G2532"]],[24,26,["G191"]],[26,29,["G3739"]],[29,31,["G191"]],[31,32,["G2532"]],[32,34,["G3756"]],[34,35,["G191"]],[35,36,[]]]},{"k":25388,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G5100"]],[4,5,["G3544"]],[5,7,["G450"]],[7,9,["G1598"]],[9,10,["G846","(G2532)"]],[10,11,["G3004"]],[11,12,["G1320"]],[12,13,["G5101"]],[13,16,["G4160"]],[16,18,["G2816"]],[18,19,["G166"]],[19,20,["G2222"]]]},{"k":25389,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G2036"]],[2,3,["G4314"]],[3,4,["G846"]],[4,5,["G5101"]],[5,7,["G1125"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G3551"]],[10,11,["G4459"]],[11,12,["G314"]],[12,13,[]]]},{"k":25390,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,4,["G2036"]],[4,7,["G25"]],[7,9,["G2962"]],[9,10,["G4675"]],[10,11,["G2316"]],[11,12,["G1537"]],[12,13,["G3650"]],[13,14,["G4675"]],[14,15,["G2588"]],[15,16,["G2532"]],[16,17,["G1537"]],[17,18,["G3650"]],[18,19,["G4675"]],[19,20,["G5590"]],[20,21,["G2532"]],[21,22,["G1537"]],[22,23,["G3650"]],[23,24,["G4675"]],[24,25,["G2479"]],[25,26,["G2532"]],[26,27,["G1537"]],[27,28,["G3650"]],[28,29,["G4675"]],[29,30,["G1271"]],[30,31,["G2532"]],[31,32,["G4675"]],[32,33,["G4139"]],[33,34,["G5613"]],[34,35,["G4572"]]]},{"k":25391,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G846"]],[5,8,["G611"]],[8,9,["G3723"]],[9,10,["G5124"]],[10,11,["G4160"]],[11,12,["G2532"]],[12,15,["G2198"]]]},{"k":25392,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2309"]],[3,5,["G1344"]],[5,6,["G1438"]],[6,7,["G2036"]],[7,8,["G4314"]],[8,9,["G2424"]],[9,10,["G2532"]],[10,11,["G5101"]],[11,12,["G2076"]],[12,13,["G3450"]],[13,14,["G4139"]]]},{"k":25393,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G5274"]],[3,4,["G2036"]],[4,6,["G5100"]],[6,7,["(G444)"]],[7,9,["G2597"]],[9,10,["G575"]],[10,11,["G2419"]],[11,12,["G1519"]],[12,13,["G2410"]],[13,14,["G2532"]],[14,16,["G4045"]],[16,17,["G3027"]],[17,18,["G3739","(G2532)"]],[18,19,["G1562"]],[19,20,["G846"]],[20,24,["G2532"]],[24,25,["G2007","G4127"]],[25,28,["G565"]],[28,29,["G863"]],[29,30,["(G5177)"]],[30,32,["G2253"]]]},{"k":25394,"v":[[0,1,["G1161"]],[1,2,["G2596"]],[2,3,["G4795"]],[3,6,["G2597"]],[6,8,["G5100"]],[8,9,["G2409","(G1722)"]],[9,10,["G1565"]],[10,11,["G3598"]],[11,12,["G2532"]],[12,15,["G1492"]],[15,16,["G846"]],[16,23,["G492"]]]},{"k":25395,"v":[[0,1,["G1161"]],[1,2,["G3668"]],[2,3,["(G2532)"]],[3,4,["G3019"]],[4,7,["G1096"]],[7,8,["G2596"]],[8,9,["G3588"]],[9,10,["G5117"]],[10,11,["G2064"]],[11,12,["G2532"]],[12,13,["G1492"]],[13,22,["G492"]]]},{"k":25396,"v":[[0,1,["G1161"]],[1,3,["G5100"]],[3,4,["G4541"]],[4,7,["G3593"]],[7,8,["G2064"]],[8,11,["G2596","G846"]],[11,12,["G2532"]],[12,15,["G1492"]],[15,16,["G846"]],[16,19,["G4697"]],[19,21,[]]]},{"k":25397,"v":[[0,1,["G2532"]],[1,2,["G4334"]],[2,7,["G2611"]],[7,8,["G846"]],[8,9,["G5134"]],[9,11,["G2022"]],[11,12,["G1637"]],[12,13,["G2532"]],[13,14,["G3631"]],[14,15,["G1161"]],[15,16,["G1913"]],[16,17,["G846"]],[17,18,["G1909"]],[18,20,["G2398"]],[20,21,["G2934"]],[21,23,["G71"]],[23,24,["G846"]],[24,25,["G1519"]],[25,27,["G3829"]],[27,28,["G2532"]],[28,30,["G1959"]],[30,32,["G846"]]]},{"k":25398,"v":[[0,1,["G2532"]],[1,2,["G1909"]],[2,3,["G3588"]],[3,4,["G839"]],[4,7,["G1831"]],[7,10,["G1544"]],[10,11,["G1417"]],[11,12,["G1220"]],[12,14,["G1325"]],[14,17,["G3588"]],[17,18,["G3830"]],[18,19,["G2532"]],[19,20,["G2036"]],[20,22,["G846"]],[22,24,["G1959"]],[24,26,["G846"]],[26,27,["G2532"]],[27,28,["G3748","G302"]],[28,31,["G4325"]],[31,33,["G3165"]],[33,35,["G1880"]],[35,36,["G1473"]],[36,38,["G591"]],[38,39,["G4671"]]]},{"k":25399,"v":[[0,1,["G5101"]],[1,2,["G3767"]],[2,4,["G5130"]],[4,5,["G5140"]],[5,6,["G1380"]],[6,7,["G4671"]],[7,8,["G1096"]],[8,9,["G4139"]],[9,13,["G1706"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G3027"]]]},{"k":25400,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,6,["G4160"]],[6,7,["G1656"]],[7,8,["G3326"]],[8,9,["G846"]],[9,10,["G3767"]],[10,11,["G2036"]],[11,12,["G2424"]],[12,14,["G846"]],[14,15,["G4198"]],[15,16,["G2532"]],[16,17,["G4160"]],[17,18,["G4771"]],[18,19,["G3668"]]]},{"k":25401,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,7,["G846"]],[7,8,["G4198"]],[8,9,["(G2532)"]],[9,10,["G846"]],[10,11,["G1525"]],[11,12,["G1519"]],[12,14,["G5100"]],[14,15,["G2968"]],[15,16,["G1161"]],[16,18,["G5100"]],[18,19,["G1135"]],[19,20,["G3686"]],[20,21,["G3136"]],[21,22,["G5264"]],[22,23,["G846"]],[23,24,["G1519"]],[24,25,["G848"]],[25,26,["G3624"]]]},{"k":25402,"v":[[0,1,["G2532"]],[1,2,["G3592"]],[2,3,["G2258"]],[3,5,["G79"]],[5,6,["G2564"]],[6,7,["G3137"]],[7,8,["G3739"]],[8,9,["G2532"]],[9,10,["G3869"]],[10,11,["G3844"]],[11,12,["G2424"]],[12,13,["G4228"]],[13,15,["G191"]],[15,16,["G846"]],[16,17,["G3056"]]]},{"k":25403,"v":[[0,1,["G1161"]],[1,2,["G3136"]],[2,4,["G4049"]],[4,5,["G4012"]],[5,6,["G4183"]],[6,7,["G1248"]],[7,8,["G1161"]],[8,9,["G2186"]],[9,13,["G2036"]],[13,14,["G2962"]],[14,18,["G3199","G3756","G4671"]],[18,19,["G3754"]],[19,20,["G3450"]],[20,21,["G79"]],[21,23,["G2641"]],[23,24,["G3165"]],[24,26,["G1247"]],[26,27,["G3440"]],[27,28,["G2036"]],[28,29,["G846"]],[29,30,["G3767"]],[30,31,["G2443"]],[31,33,["G4878"]],[33,34,["G3427"]]]},{"k":25404,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G3136"]],[8,9,["G3136"]],[9,12,["G3309"]],[12,13,["G2532"]],[13,14,["G5182"]],[14,15,["G4012"]],[15,17,["G4183"]]]},{"k":25405,"v":[[0,1,["G1161"]],[1,3,["G1520"]],[3,4,["G2076"]],[4,5,["G5532"]],[5,6,["G1161"]],[6,7,["G3137"]],[7,9,["G1586"]],[9,11,["G18"]],[11,12,["G3310"]],[12,13,["G3748"]],[13,15,["G3756"]],[15,18,["G851"]],[18,19,["G575"]],[19,20,["G846"]]]},{"k":25406,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,8,["G846"]],[8,9,["G1511"]],[9,10,["G4336"]],[10,11,["G1722"]],[11,13,["G5100"]],[13,14,["G5117"]],[14,15,["G5613"]],[15,17,["G3973"]],[17,18,["G5100"]],[18,20,["G846"]],[20,21,["G3101"]],[21,22,["G2036"]],[22,23,["G4314"]],[23,24,["G846"]],[24,25,["G2962"]],[25,26,["G1321"]],[26,27,["G2248"]],[27,29,["G4336"]],[29,30,["G2531"]],[30,31,["G2491"]],[31,32,["G2532"]],[32,33,["G1321"]],[33,34,["G848"]],[34,35,["G3101"]]]},{"k":25407,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G3752"]],[6,8,["G4336"]],[8,9,["G3004"]],[9,10,["G2257"]],[10,11,["G3962"]],[11,12,["G3588"]],[12,14,["G1722"]],[14,15,["G3772"]],[15,16,["G37"]],[16,18,["G4675"]],[18,19,["G3686"]],[19,20,["G4675"]],[20,21,["G932"]],[21,22,["G2064"]],[22,23,["G4675"]],[23,24,["G2307"]],[24,26,["G1096"]],[26,27,["G5613"]],[27,28,["G1722"]],[28,29,["G3772"]],[29,30,["G2532"]],[30,31,["G1909"]],[31,32,["G1093"]]]},{"k":25408,"v":[[0,1,["G1325"]],[1,2,["G2254"]],[2,5,["G2596","G2250"]],[5,6,["G2257"]],[6,7,["G1967"]],[7,8,["G740"]]]},{"k":25409,"v":[[0,1,["G2532"]],[1,2,["G863"]],[2,3,["G2254"]],[3,4,["G2257"]],[4,5,["G266"]],[5,6,["G1063"]],[6,7,["G846"]],[7,8,["G2532"]],[8,9,["G863"]],[9,11,["G3956"]],[11,14,["G3784"]],[14,16,["G2254"]],[16,17,["G2532"]],[17,18,["G1533"]],[18,19,["G2248"]],[19,20,["G3361"]],[20,21,["G1519"]],[21,22,["G3986"]],[22,23,["G235"]],[23,24,["G4506"]],[24,25,["G2248"]],[25,26,["G575"]],[26,27,["G4190"]]]},{"k":25410,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G5101"]],[6,7,["G1537"]],[7,8,["G5216"]],[8,10,["G2192"]],[10,12,["G5384"]],[12,13,["G2532"]],[13,15,["G4198"]],[15,16,["G4314"]],[16,17,["G846"]],[17,19,["G3317"]],[19,20,["G2532"]],[20,21,["G2036"]],[21,23,["G846"]],[23,24,["G5384"]],[24,25,["G5531"]],[25,26,["G3427"]],[26,27,["G5140"]],[27,28,["G740"]]]},{"k":25411,"v":[[0,1,["G1894"]],[1,3,["G5384"]],[3,5,["G3450"]],[5,6,["G1537"]],[6,8,["G3598"]],[8,10,["G3854"]],[10,11,["G4314"]],[11,12,["G3165"]],[12,13,["G2532"]],[13,15,["G2192"]],[15,16,["G3756"]],[16,17,["(G3739)"]],[17,19,["G3908"]],[19,20,["G846"]]]},{"k":25412,"v":[[0,2,["G2548"]],[2,4,["G2081"]],[4,6,["G611"]],[6,8,["G2036"]],[8,11,["G3930","G3427","G3361","G2873"]],[11,12,["G3588"]],[12,13,["G2374"]],[13,15,["G2235"]],[15,16,["G2808"]],[16,17,["G2532"]],[17,18,["G3450"]],[18,19,["G3813"]],[19,20,["G1526"]],[20,21,["G3326"]],[21,22,["G1700"]],[22,23,["G1519"]],[23,24,["G2845"]],[24,26,["G1410","G3756"]],[26,27,["G450"]],[27,29,["G1325"]],[29,30,["G4671"]]]},{"k":25413,"v":[[0,2,["G3004"]],[2,4,["G5213"]],[4,5,["G1499"]],[5,8,["G3756"]],[8,9,["G450"]],[9,11,["G1325"]],[11,12,["G846"]],[12,15,["G1511"]],[15,16,["G846"]],[16,17,["G5384"]],[17,18,["G1065"]],[18,19,["G1223"]],[19,21,["G846"]],[21,22,["G335"]],[22,25,["G1453"]],[25,27,["G1325"]],[27,28,["G846"]],[28,31,["G3745"]],[31,33,["G5535"]]]},{"k":25414,"v":[[0,2,["G2504"]],[2,3,["G3004"]],[3,5,["G5213"]],[5,6,["G154"]],[6,7,["G2532"]],[7,11,["G1325"]],[11,12,["G5213"]],[12,13,["G2212"]],[13,14,["G2532"]],[14,17,["G2147"]],[17,18,["G2925"]],[18,19,["G2532"]],[19,23,["G455"]],[23,25,["G5213"]]]},{"k":25415,"v":[[0,1,["G1063"]],[1,3,["G3956"]],[3,5,["G154"]],[5,6,["G2983"]],[6,7,["G2532"]],[7,10,["G2212"]],[10,11,["G2147"]],[11,12,["G2532"]],[12,16,["G2925"]],[16,20,["G455"]]]},{"k":25416,"v":[[0,1,["(G1161)"]],[1,3,["G5207"]],[3,5,["G154"]],[5,6,["G740"]],[6,8,["G5101"]],[8,10,["G5216"]],[10,14,["G3962"]],[14,16,["(G3361)"]],[16,17,["G1929"]],[17,18,["G846"]],[18,20,["G3037"]],[20,21,["G2532"]],[21,22,["G1487"]],[22,26,["G2486"]],[26,27,["(G3361)"]],[27,29,["G473"]],[29,31,["G2486"]],[31,32,["G1929"]],[32,33,["G846"]],[33,35,["G3789"]]]},{"k":25417,"v":[[0,1,["G2228","(G2532)"]],[1,2,["G1437"]],[2,5,["G154"]],[5,7,["G5609"]],[7,9,["(G3361)"]],[9,10,["G1929"]],[10,11,["G846"]],[11,13,["G4651"]]]},{"k":25418,"v":[[0,1,["G1487"]],[1,2,["G5210"]],[2,3,["G3767"]],[3,4,["G5225"]],[4,5,["G4190"]],[5,6,["G1492"]],[6,9,["G1325"]],[9,10,["G18"]],[10,11,["G1390"]],[11,13,["G5216"]],[13,14,["G5043"]],[14,16,["G4214"]],[16,17,["G3123"]],[17,20,["G1537","G3772"]],[20,21,["G3962"]],[21,22,["G1325"]],[22,24,["G40"]],[24,25,["G4151"]],[25,29,["G154"]],[29,30,["G846"]]]},{"k":25419,"v":[[0,1,["G2532"]],[1,3,["G2258"]],[3,5,["G1544"]],[5,7,["G1140"]],[7,8,["G2532"]],[8,9,["G846"]],[9,10,["G2258"]],[10,11,["G2974"]],[11,12,["G1161"]],[12,16,["G1096"]],[16,18,["G3588"]],[18,19,["G1140"]],[19,22,["G1831"]],[22,23,["G3588"]],[23,24,["G2974"]],[24,25,["G2980"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G3793"]],[28,29,["G2296"]]]},{"k":25420,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G1537"]],[3,4,["G846"]],[4,5,["G2036"]],[5,8,["G1544"]],[8,9,["G1140"]],[9,10,["G1722"]],[10,11,["G954"]],[11,13,["G758"]],[13,15,["G3588"]],[15,16,["G1140"]]]},{"k":25421,"v":[[0,1,["G1161"]],[1,2,["G2087"]],[2,3,["G3985"]],[3,5,["G2212"]],[5,6,["G3844"]],[6,7,["G846"]],[7,9,["G4592"]],[9,10,["G1537"]],[10,11,["G3772"]]]},{"k":25422,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G1492"]],[3,4,["G846"]],[4,5,["G1270"]],[5,6,["G2036"]],[6,8,["G846"]],[8,9,["G3956"]],[9,10,["G932"]],[10,11,["G1266"]],[11,12,["G1909"]],[12,13,["G1438"]],[13,17,["G2049"]],[17,18,["G2532"]],[18,20,["G3624"]],[20,22,["G1909"]],[22,24,["G3624"]],[24,25,["G4098"]]]},{"k":25423,"v":[[0,0,["(G1161)"]],[0,1,["G1487"]],[1,2,["G4567"]],[2,3,["G2532"]],[3,5,["G1266"]],[5,6,["G1909"]],[6,7,["G1438"]],[7,8,["G4459"]],[8,10,["G846"]],[10,11,["G932"]],[11,12,["G2476"]],[12,13,["G3754"]],[13,15,["G3004"]],[15,17,["G3165"]],[17,19,["G1544"]],[19,20,["G1140"]],[20,21,["G1722"]],[21,22,["G954"]]]},{"k":25424,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G1473"]],[3,4,["G1722"]],[4,5,["G954"]],[5,7,["G1544"]],[7,8,["G1140"]],[8,9,["G1722"]],[9,10,["G5101"]],[10,12,["G5216"]],[12,13,["G5207"]],[13,16,["G1544"]],[16,17,["G1223","G5124"]],[17,19,["G846"]],[19,20,["G2071"]],[20,21,["G5216"]],[21,22,["G2923"]]]},{"k":25425,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G1722"]],[4,6,["G1147"]],[6,8,["G2316"]],[8,10,["G1544"]],[10,11,["G1140"]],[11,13,["G686"]],[13,14,["G3588"]],[14,15,["G932"]],[15,17,["G2316"]],[17,19,["G5348"]],[19,20,["G1909"]],[20,21,["G5209"]]]},{"k":25426,"v":[[0,1,["G3752"]],[1,4,["G2478"]],[4,5,["G2528"]],[5,6,["G5442"]],[6,7,["G1438"]],[7,8,["G833"]],[8,9,["G846"]],[9,10,["G5224"]],[10,11,["G2076"]],[11,12,["G1722"]],[12,13,["G1515"]]]},{"k":25427,"v":[[0,1,["G1161"]],[1,2,["G1875"]],[2,4,["G2478"]],[4,6,["G846"]],[6,9,["G1904"]],[9,12,["G3528"]],[12,13,["G846"]],[13,15,["G142"]],[15,20,["G3833","G846"]],[20,21,["G1909","G3739"]],[21,23,["G3982"]],[23,24,["G2532"]],[24,25,["G1239"]],[25,26,["G846"]],[26,27,["G4661"]]]},{"k":25428,"v":[[0,3,["G5607"]],[3,4,["G3361"]],[4,5,["G3326"]],[5,6,["G1700"]],[6,7,["G2076"]],[7,8,["G2596"]],[8,9,["G1700"]],[9,10,["G2532"]],[10,13,["G4863"]],[13,14,["G3361"]],[14,15,["G3326"]],[15,16,["G1700"]],[16,17,["G4650"]]]},{"k":25429,"v":[[0,1,["G3752"]],[1,2,["G3588"]],[2,3,["G169"]],[3,4,["G4151"]],[4,6,["G1831"]],[6,8,["G575"]],[8,10,["G444"]],[10,12,["G1330"]],[12,13,["G1223"]],[13,14,["G504"]],[14,15,["G5117"]],[15,16,["G2212"]],[16,17,["G372"]],[17,18,["G2532"]],[18,19,["G2147"]],[19,20,["G3361"]],[20,22,["G3004"]],[22,25,["G5290"]],[25,26,["G1519"]],[26,27,["G3450"]],[27,28,["G3624"]],[28,29,["G3606"]],[29,32,["G1831"]]]},{"k":25430,"v":[[0,1,["G2532"]],[1,4,["G2064"]],[4,6,["G2147"]],[6,8,["G4563"]],[8,9,["G2532"]],[9,10,["G2885"]]]},{"k":25431,"v":[[0,1,["G5119"]],[1,2,["G4198"]],[2,4,["G2532"]],[4,5,["G3880"]],[5,8,["G2033"]],[8,9,["G2087"]],[9,10,["G4151"]],[10,12,["G4191"]],[12,14,["G1438"]],[14,15,["G2532"]],[15,18,["G1525"]],[18,19,["G2532"]],[19,20,["G2730"]],[20,21,["G1563"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G2078"]],[24,27,["G1565"]],[27,28,["G444"]],[28,29,["G1096"]],[29,30,["G5501"]],[30,32,["G3588"]],[32,33,["G4413"]]]},{"k":25432,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,7,["G846"]],[7,8,["G3004"]],[8,10,["G5023"]],[10,12,["G5100"]],[12,13,["G1135"]],[13,14,["G1537"]],[14,15,["G3588"]],[15,16,["G3793"]],[16,18,["G1869"]],[18,20,["G5456"]],[20,22,["G2036"]],[22,24,["G846"]],[24,25,["G3107"]],[25,27,["G3588"]],[27,28,["G2836"]],[28,30,["G941"]],[30,31,["G4571"]],[31,32,["G2532"]],[32,34,["G3149"]],[34,35,["G3739"]],[35,38,["G2337"]]]},{"k":25433,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G2036"]],[3,5,["G3304"]],[5,6,["G3107"]],[6,10,["G191"]],[10,11,["G3588"]],[11,12,["G3056"]],[12,14,["G2316"]],[14,15,["G2532"]],[15,16,["G5442"]],[16,17,["G846"]]]},{"k":25434,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G3793"]],[4,8,["G1865"]],[8,10,["G756"]],[10,12,["G3004"]],[12,13,["G3778"]],[13,14,["G2076"]],[14,16,["G4190"]],[16,17,["G1074"]],[17,19,["G1934"]],[19,21,["G4592"]],[21,22,["G2532"]],[22,25,["G3756"]],[25,26,["G4592"]],[26,28,["G1325"]],[28,29,["G846"]],[29,30,["G1508"]],[30,31,["G3588"]],[31,32,["G4592"]],[32,34,["G2495"]],[34,35,["G3588"]],[35,36,["G4396"]]]},{"k":25435,"v":[[0,1,["G1063"]],[1,2,["G2531"]],[2,3,["G2495"]],[3,4,["G1096"]],[4,6,["G4592"]],[6,8,["G444"]],[8,9,["G3536"]],[9,10,["G3779"]],[10,12,["G2532"]],[12,13,["G3588"]],[13,14,["G5207"]],[14,16,["G444"]],[16,17,["G2071"]],[17,19,["G5026"]],[19,20,["G1074"]]]},{"k":25436,"v":[[0,2,["G938"]],[2,5,["G3558"]],[5,8,["G1453"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2920"]],[11,12,["G3326"]],[12,13,["G3588"]],[13,14,["G435"]],[14,16,["G5026"]],[16,17,["G1074"]],[17,18,["G2532"]],[18,19,["G2632"]],[19,20,["G846"]],[20,21,["G3754"]],[21,23,["G2064"]],[23,24,["G1537"]],[24,25,["G3588"]],[25,27,["G4009"]],[27,29,["G3588"]],[29,30,["G1093"]],[30,32,["G191"]],[32,33,["G3588"]],[33,34,["G4678"]],[34,36,["G4672"]],[36,37,["G2532"]],[37,38,["G2400"]],[38,40,["G4119"]],[40,42,["G4672"]],[42,44,["G5602"]]]},{"k":25437,"v":[[0,2,["G435"]],[2,4,["G3535"]],[4,7,["G450"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G2920"]],[10,11,["G3326"]],[11,12,["G5026"]],[12,13,["G1074"]],[13,14,["G2532"]],[14,16,["G2632"]],[16,17,["G846"]],[17,18,["G3754"]],[18,20,["G3340"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G2782"]],[23,25,["G2495"]],[25,26,["G2532"]],[26,27,["G2400"]],[27,29,["G4119"]],[29,31,["G2495"]],[31,33,["G5602"]]]},{"k":25438,"v":[[0,2,["G3762"]],[2,6,["G681"]],[6,8,["G3088"]],[8,9,["G5087"]],[9,11,["G1519"]],[11,14,["G2927"]],[14,15,["G3761"]],[15,16,["G5259"]],[16,18,["G3426"]],[18,19,["G235"]],[19,20,["G1909"]],[20,22,["G3087"]],[22,23,["G2443"]],[23,27,["G1531"]],[27,29,["G991"]],[29,30,["G3588"]],[30,31,["G5338"]]]},{"k":25439,"v":[[0,1,["G3588"]],[1,2,["G3088"]],[2,4,["G3588"]],[4,5,["G4983"]],[5,6,["G2076"]],[6,7,["G3588"]],[7,8,["G3788"]],[8,9,["G3767"]],[9,10,["G3752"]],[10,11,["G4675"]],[11,12,["G3788"]],[12,13,["G5600"]],[13,14,["G573"]],[14,15,["G4675"]],[15,16,["G3650"]],[16,17,["G4983"]],[17,18,["G2532"]],[18,19,["G2076"]],[19,22,["G5460"]],[22,23,["G1161"]],[23,24,["G1875"]],[24,27,["G5600"]],[27,28,["G4190"]],[28,29,["G4675"]],[29,30,["G4983"]],[30,31,["G2532"]],[31,35,["G4652"]]]},{"k":25440,"v":[[0,2,["G4648"]],[2,3,["G3767"]],[3,5,["G3588"]],[5,6,["G5457"]],[6,7,["G3588"]],[7,9,["G1722"]],[9,10,["G4671"]],[10,11,["G2076"]],[11,12,["G3361"]],[12,13,["G4655"]]]},{"k":25441,"v":[[0,1,["G1487"]],[1,2,["G4675"]],[2,3,["G3650"]],[3,4,["G4983"]],[4,5,["G3767"]],[5,9,["G5460"]],[9,10,["G2192"]],[10,11,["G3361","G5100"]],[11,12,["G3313"]],[12,13,["G4652"]],[13,15,["G3650"]],[15,17,["G2071"]],[17,20,["G5460"]],[20,21,["G5613"]],[21,22,["G3752"]],[22,23,["G3588"]],[23,25,["G796"]],[25,28,["G3088"]],[28,32,["G5461","G4571"]]]},{"k":25442,"v":[[0,1,["G1161"]],[1,4,["G2980"]],[4,6,["G5100"]],[6,7,["G5330"]],[7,8,["G2065"]],[8,9,["G846"]],[9,10,["G3704"]],[10,11,["G709"]],[11,12,["G3844"]],[12,13,["G846"]],[13,14,["G1161"]],[14,16,["G1525"]],[16,22,["G377"]]]},{"k":25443,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G5330"]],[4,5,["G1492"]],[5,8,["G2296"]],[8,9,["G3754"]],[9,12,["G3756"]],[12,13,["G4412"]],[13,14,["G907"]],[14,15,["G4253"]],[15,16,["G712"]]]},{"k":25444,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G3568"]],[7,9,["G5210"]],[9,10,["G5330"]],[10,12,["G2511"]],[12,13,["G3588"]],[13,14,["G1855"]],[14,16,["G3588"]],[16,17,["G4221"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G4094"]],[20,21,["G1161"]],[21,22,["G5216"]],[22,24,["G2081"]],[24,26,["G1073"]],[26,28,["G724"]],[28,29,["G2532"]],[29,30,["G4189"]]]},{"k":25445,"v":[[0,2,["G878"]],[2,4,["G3756"]],[4,7,["G4160"]],[7,8,["G3588"]],[8,11,["G1855"]],[11,12,["G4160"]],[12,13,["G3588"]],[13,16,["G2081"]],[16,17,["G2532"]]]},{"k":25446,"v":[[0,1,["G4133"]],[1,3,["G1325"]],[3,4,["G1654"]],[4,10,["G1751"]],[10,11,["G2532"]],[11,12,["G2400"]],[12,14,["G3956"]],[14,15,["G2076"]],[15,16,["G2513"]],[16,18,["G5213"]]]},{"k":25447,"v":[[0,1,["G235"]],[1,2,["G3759"]],[2,4,["G5213"]],[4,5,["G5330"]],[5,6,["G3754"]],[6,8,["G586"]],[8,9,["G2238"]],[9,10,["G2532"]],[10,11,["G4076"]],[11,12,["G2532"]],[12,14,["G3956"]],[14,16,["G3001"]],[16,17,["G2532"]],[17,19,["G3928"]],[19,20,["G2920"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G26"]],[23,25,["G2316"]],[25,26,["G5023"]],[26,27,["G1163"]],[27,31,["G4160"]],[31,38,["G2548","G3361","G863"]]]},{"k":25448,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G5330"]],[4,5,["G3754"]],[5,7,["G25"]],[7,8,["G3588"]],[8,10,["G4410"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G4864"]],[13,14,["G2532"]],[14,15,["G783"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G58"]]]},{"k":25449,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G1122"]],[4,5,["G2532"]],[5,6,["G5330"]],[6,7,["G5273"]],[7,8,["G3754"]],[8,10,["G2075"]],[10,11,["G5613"]],[11,12,["G3419"]],[12,15,["G82"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G444"]],[18,20,["G4043"]],[20,21,["G1883"]],[21,25,["G1492","G3756"]],[25,27,[]]]},{"k":25450,"v":[[0,1,["G1161"]],[1,2,["G611"]],[2,3,["G5100"]],[3,5,["G3588"]],[5,6,["G3544"]],[6,8,["G3004"]],[8,10,["G846"]],[10,11,["G1320"]],[11,12,["G5023"]],[12,13,["G3004"]],[13,15,["G5195"]],[15,16,["G2248"]],[16,17,["G2532"]]]},{"k":25451,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G3759"]],[4,6,["G5213"]],[6,7,["G2532"]],[7,9,["G3544"]],[9,10,["G3754"]],[10,12,["G5412"]],[12,13,["G444"]],[13,15,["G5413"]],[15,19,["G1419"]],[19,20,["G2532"]],[20,22,["G846"]],[22,23,["G4379"]],[23,24,["G3756"]],[24,25,["G3588"]],[25,26,["G5413"]],[26,28,["G1520"]],[28,30,["G5216"]],[30,31,["G1147"]]]},{"k":25452,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G3754"]],[4,6,["G3618"]],[6,7,["G3588"]],[7,8,["G3419"]],[8,10,["G3588"]],[10,11,["G4396"]],[11,12,["G1161"]],[12,13,["G5216"]],[13,14,["G3962"]],[14,15,["G615"]],[15,16,["G846"]]]},{"k":25453,"v":[[0,1,["G686"]],[1,4,["G3140"]],[4,5,["G2532"]],[5,7,["G4909"]],[7,8,["G3588"]],[8,9,["G2041"]],[9,11,["G5216"]],[11,12,["G3962"]],[12,13,["G3754"]],[13,14,["G846"]],[14,15,["G3303"]],[15,16,["G615"]],[16,17,["G846"]],[17,18,["G1161"]],[18,19,["G5210"]],[19,20,["G3618"]],[20,21,["G846"]],[21,22,["G3419"]]]},{"k":25454,"v":[[0,1,["G1223","G5124"]],[1,2,["G2532"]],[2,3,["G2036"]],[3,4,["G3588"]],[4,5,["G4678"]],[5,7,["G2316"]],[7,10,["G649","(G1519)"]],[10,11,["G846"]],[11,12,["G4396"]],[12,13,["G2532"]],[13,14,["G652"]],[14,15,["G2532"]],[15,17,["G1537"]],[17,18,["G846"]],[18,21,["G615"]],[21,22,["G2532"]],[22,23,["G1559"]]]},{"k":25455,"v":[[0,1,["G2443"]],[1,2,["G3588"]],[2,3,["G129"]],[3,5,["G3956"]],[5,6,["G3588"]],[6,7,["G4396"]],[7,10,["G1632"]],[10,11,["G575"]],[11,13,["G2602"]],[13,16,["G2889"]],[16,19,["G1567"]],[19,20,["G575"]],[20,21,["G5026"]],[21,22,["G1074"]]]},{"k":25456,"v":[[0,1,["G575"]],[1,2,["G3588"]],[2,3,["G129"]],[3,5,["G6"]],[5,6,["G2193"]],[6,7,["G3588"]],[7,8,["G129"]],[8,10,["G2197"]],[10,12,["G622"]],[12,13,["G3342"]],[13,14,["G3588"]],[14,15,["G2379"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G3624"]],[18,19,["G3483"]],[19,21,["G3004"]],[21,23,["G5213"]],[23,27,["G1567"]],[27,28,["G575"]],[28,29,["G5026"]],[29,30,["G1074"]]]},{"k":25457,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G3544"]],[4,5,["G3754"]],[5,9,["G142"]],[9,10,["G3588"]],[10,11,["G2807"]],[11,13,["G1108"]],[13,17,["G1525","G3756"]],[17,18,["G846"]],[18,19,["G2532"]],[19,24,["G1525"]],[24,26,["G2967"]]]},{"k":25458,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G3004"]],[4,6,["G5023"]],[6,7,["G4314"]],[7,8,["G846"]],[8,9,["G3588"]],[9,10,["G1122"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G5330"]],[13,14,["G756"]],[14,16,["G1758"]],[16,18,["G1171"]],[18,19,["G2532"]],[19,24,["G653","G846"]],[24,25,["G4012"]],[25,27,["G4119"]]]},{"k":25459,"v":[[0,2,["G1748"]],[2,4,["G846"]],[4,5,["G2532"]],[5,6,["G2212"]],[6,8,["G2340"]],[8,9,["G5100"]],[9,11,["G1537"]],[11,12,["G846"]],[12,13,["G4750"]],[13,14,["G2443"]],[14,17,["G2723"]],[17,18,["G846"]]]},{"k":25460,"v":[[0,4,["G1722","G3739"]],[4,9,["G1996"]],[9,12,["G3461"]],[12,14,["G3793"]],[14,16,["G5620"]],[16,18,["G2662"]],[18,21,["G240"]],[21,23,["G756"]],[23,25,["G3004"]],[25,26,["G4314"]],[26,27,["G848"]],[27,28,["G3101"]],[28,31,["G4412"]],[31,32,["G4337"]],[32,33,["G1438"]],[33,34,["G575"]],[34,35,["G3588"]],[35,36,["G2219"]],[36,38,["G3588"]],[38,39,["G5330"]],[39,40,["G3748"]],[40,41,["G2076"]],[41,42,["G5272"]]]},{"k":25461,"v":[[0,1,["G1161"]],[1,3,["G2076"]],[3,4,["G3762"]],[4,5,["G4780"]],[5,6,["G3739"]],[6,8,["G3756"]],[8,10,["G601"]],[10,11,["G2532"]],[11,12,["G2927"]],[12,13,["G3739"]],[13,15,["G3756"]],[15,17,["G1097"]]]},{"k":25462,"v":[[0,1,["G473","G3739"]],[1,2,["G3745"]],[2,5,["G2036"]],[5,6,["G1722"]],[6,7,["G4653"]],[7,10,["G191"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G5457"]],[13,14,["G2532"]],[14,16,["G3739"]],[16,19,["G2980"]],[19,20,["G4314"]],[20,21,["G3588"]],[21,22,["G3775"]],[22,23,["G1722"]],[23,24,["G5009"]],[24,27,["G2784"]],[27,28,["G1909"]],[28,29,["G3588"]],[29,30,["G1430"]]]},{"k":25463,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3450"]],[6,7,["G5384"]],[7,10,["G5399","G3361"]],[10,11,["G575"]],[11,14,["G615"]],[14,15,["G3588"]],[15,16,["G4983"]],[16,17,["G2532"]],[17,18,["G3326"]],[18,19,["G5023"]],[19,20,["G2192"]],[20,21,["G3361"]],[21,22,["G5100","G4055"]],[22,26,["G4160"]]]},{"k":25464,"v":[[0,1,["G1161"]],[1,4,["G5263"]],[4,5,["G5213"]],[5,6,["G5101"]],[6,9,["G5399"]],[9,10,["G5399"]],[10,16,["G615"]],[16,17,["G2192"]],[17,18,["G1849"]],[18,20,["G1685"]],[20,21,["G1519"]],[21,22,["G1067"]],[22,23,["G3483"]],[23,25,["G3004"]],[25,27,["G5213"]],[27,28,["G5399"]],[28,29,["G5126"]]]},{"k":25465,"v":[[0,2,["G3780"]],[2,3,["G4002"]],[3,4,["G4765"]],[4,5,["G4453"]],[5,7,["G1417"]],[7,8,["G787"]],[8,9,["G2532"]],[9,10,["G3756"]],[10,11,["G1520"]],[11,12,["G1537"]],[12,13,["G846"]],[13,14,["G2076"]],[14,15,["G1950"]],[15,16,["G1799"]],[16,17,["G2316"]]]},{"k":25466,"v":[[0,1,["G235"]],[1,2,["G2532"]],[2,3,["G3588"]],[3,5,["G2359"]],[5,7,["G5216"]],[7,8,["G2776"]],[8,10,["G3956"]],[10,11,["G705"]],[11,12,["G5399"]],[12,13,["G3361"]],[13,14,["G3767"]],[14,19,["G1308"]],[19,21,["G4183"]],[21,22,["G4765"]]]},{"k":25467,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3956","G3739","G302"]],[6,8,["G3670"]],[8,9,["G1698"]],[9,10,["G1715"]],[10,11,["G444","(G1722)"]],[11,12,["G846"]],[12,14,["G3588"]],[14,15,["G5207"]],[15,17,["G444"]],[17,18,["G2532"]],[18,19,["G3670"]],[19,20,["G1715"]],[20,21,["G3588"]],[21,22,["G32"]],[22,24,["G2316"]]]},{"k":25468,"v":[[0,1,["G1161"]],[1,4,["G720"]],[4,5,["G3165"]],[5,6,["G1799"]],[6,7,["G444"]],[7,10,["G533"]],[10,11,["G1799"]],[11,12,["G3588"]],[12,13,["G32"]],[13,15,["G2316"]]]},{"k":25469,"v":[[0,1,["G2532"]],[1,2,["G3956","G3739"]],[2,4,["G2046"]],[4,6,["G3056"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G5207"]],[9,11,["G444"]],[11,15,["G863"]],[15,16,["G846"]],[16,17,["G1161"]],[17,21,["G987"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G40"]],[24,25,["G4151"]],[25,28,["G3756"]],[28,30,["G863"]]]},{"k":25470,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,4,["G4374"]],[4,5,["G5209"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G4864"]],[8,9,["G2532"]],[9,11,["G746"]],[11,12,["G2532"]],[12,13,["G1849"]],[13,17,["G3309","G3361"]],[17,18,["G4459"]],[18,19,["G2228"]],[19,21,["G5101"]],[21,24,["G626"]],[24,25,["G2228"]],[25,26,["G5101"]],[26,29,["G2036"]]]},{"k":25471,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G40"]],[3,4,["G4151"]],[4,6,["G1321"]],[6,7,["G5209"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G846"]],[10,11,["G5610"]],[11,12,["G3739"]],[12,14,["G1163"]],[14,16,["G2036"]]]},{"k":25472,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G3793"]],[5,6,["G2036"]],[6,8,["G846"]],[8,9,["G1320"]],[9,10,["G2036"]],[10,12,["G3450"]],[12,13,["G80"]],[13,16,["G3307"]],[16,17,["G3588"]],[17,18,["G2817"]],[18,19,["G3326"]],[19,20,["G1700"]]]},{"k":25473,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G444"]],[6,7,["G5101"]],[7,8,["G2525"]],[8,9,["G3165"]],[9,11,["G1348"]],[11,12,["G2228"]],[12,14,["G3312"]],[14,15,["G1909"]],[15,16,["G5209"]]]},{"k":25474,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,7,["G3708"]],[7,8,["G2532"]],[8,9,["G5442"]],[9,10,["G575"]],[10,11,["G4124"]],[11,12,["G3754"]],[12,14,["G5100"]],[14,15,["G2222"]],[15,16,["G2076"]],[16,17,["G3756"]],[17,20,["G4052"]],[20,21,["G1537"]],[21,26,["G5224","G846"]]]},{"k":25475,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G3850"]],[5,6,["G4314"]],[6,7,["G846"]],[7,8,["G3004"]],[8,9,["G3588"]],[9,10,["G5561"]],[10,13,["G5100"]],[13,14,["G4145"]],[14,15,["G444"]],[15,18,["G2164"]]]},{"k":25476,"v":[[0,1,["G2532"]],[1,3,["G1260"]],[3,4,["G1722"]],[4,5,["G1438"]],[5,6,["G3004"]],[6,7,["G5101"]],[7,10,["G4160"]],[10,11,["G3754"]],[11,13,["G2192"]],[13,14,["G3756"]],[14,16,["G4226"]],[16,18,["G4863"]],[18,19,["G3450"]],[19,20,["G2590"]]]},{"k":25477,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,4,["G5124"]],[4,7,["G4160"]],[7,11,["G2507"]],[11,12,["G3450"]],[12,13,["G596"]],[13,14,["G2532"]],[14,15,["G3618"]],[15,16,["G3187"]],[16,17,["G2532"]],[17,18,["G1563"]],[18,21,["G4863"]],[21,22,["G3956"]],[22,23,["G3450"]],[23,24,["G1081"]],[24,25,["G2532"]],[25,26,["G3450"]],[26,27,["G18"]]]},{"k":25478,"v":[[0,1,["G2532"]],[1,4,["G2046"]],[4,6,["G3450"]],[6,7,["G5590"]],[7,8,["G5590"]],[8,10,["G2192"]],[10,11,["G4183"]],[11,12,["G18"]],[12,14,["G2749"]],[14,15,["G1519"]],[15,16,["G4183"]],[16,17,["G2094"]],[17,20,["G373"]],[20,21,["G5315"]],[21,22,["G4095"]],[22,25,["G2165"]]]},{"k":25479,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,3,["G2036"]],[3,5,["G846"]],[5,7,["G878"]],[7,8,["G5026"]],[8,9,["G3571"]],[9,10,["G4675"]],[10,11,["G5590"]],[11,14,["G523"]],[14,15,["G575"]],[15,16,["G4675"]],[16,17,["G1161"]],[17,18,["G5101"]],[18,21,["G3739"]],[21,22,["G2071"]],[22,26,["G2090"]]]},{"k":25480,"v":[[0,1,["G3779"]],[1,3,["G3588"]],[3,7,["G2343"]],[7,9,["G1438"]],[9,10,["G2532"]],[10,13,["G4147","G3361"]],[13,14,["G1519"]],[14,15,["G2316"]]]},{"k":25481,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G848"]],[5,6,["G3101"]],[6,7,["G1223","G5124"]],[7,9,["G3004"]],[9,11,["G5213"]],[11,14,["G3309","G3361"]],[14,16,["G5216"]],[16,17,["G5590"]],[17,18,["G5101"]],[18,21,["G5315"]],[21,22,["G3366"]],[22,24,["G3588"]],[24,25,["G4983"]],[25,26,["G5101"]],[26,30,["G1746"]]]},{"k":25482,"v":[[0,1,["G3588"]],[1,2,["G5590"]],[2,3,["G2076"]],[3,4,["G4119"]],[4,6,["G5160"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G4983"]],[9,13,["G1742"]]]},{"k":25483,"v":[[0,1,["G2657"]],[1,2,["G3588"]],[2,3,["G2876"]],[3,4,["G3754"]],[4,6,["G3756"]],[6,7,["G4687"]],[7,8,["G3761"]],[8,9,["G2325"]],[9,10,["G3739"]],[10,11,["G3756"]],[11,12,["G2076"]],[12,13,["G5009"]],[13,14,["G3761"]],[14,15,["G596"]],[15,16,["G2532"]],[16,17,["G2316"]],[17,18,["G5142"]],[18,19,["G846"]],[19,21,["G4214"]],[21,22,["G3123"]],[22,25,["G1308","G5210"]],[25,27,["G3588"]],[27,28,["G4071"]]]},{"k":25484,"v":[[0,1,["G1161"]],[1,2,["G5101"]],[2,3,["G1537"]],[3,4,["G5216"]],[4,7,["G3309"]],[7,8,["G1410"]],[8,9,["G4369"]],[9,10,["G1909"]],[10,11,["G848"]],[11,12,["G2244"]],[12,13,["G1520"]],[13,14,["G4083"]]]},{"k":25485,"v":[[0,1,["G1487"]],[1,3,["G3767"]],[3,6,["G1410","G3777"]],[6,13,["G1646"]],[13,14,["G5101"]],[14,17,["G3309"]],[17,18,["G4012"]],[18,19,["G3588"]],[19,20,["G3062"]]]},{"k":25486,"v":[[0,1,["G2657"]],[1,2,["G3588"]],[2,3,["G2918"]],[3,4,["G4459"]],[4,6,["G837"]],[6,8,["G2872"]],[8,9,["G3756"]],[9,11,["G3514"]],[11,12,["G3761"]],[12,13,["G1161"]],[13,16,["G3004"]],[16,18,["G5213"]],[18,20,["G4672"]],[20,21,["G1722"]],[21,22,["G3956"]],[22,23,["G848"]],[23,24,["G1391"]],[24,26,["G3761"]],[26,27,["G4016"]],[27,28,["G5613"]],[28,29,["G1520"]],[29,31,["G5130"]]]},{"k":25487,"v":[[0,0,["(G1161)"]],[0,1,["G1487"]],[1,3,["G2316"]],[3,4,["G3779"]],[4,5,["G294"]],[5,6,["G3588"]],[6,7,["G5528"]],[7,9,["G5607"]],[9,11,["G4594"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G68"]],[14,15,["G2532"]],[15,17,["G839"]],[17,19,["G906"]],[19,20,["G1519"]],[20,22,["G2823"]],[22,24,["G4214"]],[24,25,["G3123"]],[25,29,["G5209"]],[29,34,["G3640"]]]},{"k":25488,"v":[[0,1,["G2532"]],[1,2,["G2212"]],[2,3,["G3361"]],[3,4,["G5210"]],[4,5,["G5101"]],[5,8,["G5315"]],[8,9,["G2228"]],[9,10,["G5101"]],[10,13,["G4095"]],[13,14,["G2532","G3361"]],[14,19,["G3349"]]]},{"k":25489,"v":[[0,1,["G1063"]],[1,2,["G3956"]],[2,4,["G5023"]],[4,6,["G3588"]],[6,7,["G1484"]],[7,9,["G3588"]],[9,10,["G2889"]],[10,12,["G1934"]],[12,13,["G1161"]],[13,14,["G5216"]],[14,15,["G3962"]],[15,16,["G1492"]],[16,17,["G3754"]],[17,20,["G5535"]],[20,23,["G5130"]]]},{"k":25490,"v":[[0,1,["G4133"]],[1,3,["G2212"]],[3,5,["G3588"]],[5,6,["G932"]],[6,8,["G2316"]],[8,9,["G2532"]],[9,10,["G3956"]],[10,12,["G5023"]],[12,15,["G4369"]],[15,17,["G5213"]]]},{"k":25491,"v":[[0,1,["G5399"]],[1,2,["G3361"]],[2,3,["G3398"]],[3,4,["G4168"]],[4,5,["G3754"]],[5,11,["G2106","G5216","G3962"]],[11,13,["G1325"]],[13,14,["G5213"]],[14,15,["G3588"]],[15,16,["G932"]]]},{"k":25492,"v":[[0,1,["G4453"]],[1,4,["G5216","G5224"]],[4,5,["G2532"]],[5,6,["G1325"]],[6,7,["G1654"]],[7,8,["G4160"]],[8,9,["G1438"]],[9,10,["G905"]],[10,14,["G3822","G3361"]],[14,16,["G2344"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G3772"]],[19,22,["G413"]],[22,23,["G3699"]],[23,24,["G3756"]],[24,25,["G2812"]],[25,26,["G1448"]],[26,27,["G3761"]],[27,28,["G4597"]],[28,29,["G1311"]]]},{"k":25493,"v":[[0,1,["G1063"]],[1,2,["G3699"]],[2,3,["G5216"]],[3,4,["G2344"]],[4,5,["G2076"]],[5,6,["G1563"]],[6,8,["G5216"]],[8,9,["G2588"]],[9,10,["G2071"]],[10,11,["G2532"]]]},{"k":25494,"v":[[0,2,["G5216"]],[2,3,["G3751"]],[3,4,["G2077"]],[4,6,["G4024"]],[6,7,["G2532"]],[7,9,["G3088"]],[9,10,["G2545"]]]},{"k":25495,"v":[[0,1,["G2532"]],[1,3,["G5210"]],[3,5,["G3664"]],[5,6,["G444"]],[6,9,["G4327"]],[9,10,["G1438"]],[10,11,["G2962"]],[11,12,["G4219"]],[12,15,["G360"]],[15,16,["G1537"]],[16,17,["G3588"]],[17,18,["G1062"]],[18,19,["G2443"]],[19,22,["G2064"]],[22,23,["G2532"]],[23,24,["G2925"]],[24,27,["G455"]],[27,29,["G846"]],[29,30,["G2112"]]]},{"k":25496,"v":[[0,1,["G3107"]],[1,3,["G1565"]],[3,4,["G1401"]],[4,5,["G3739"]],[5,6,["G3588"]],[6,7,["G2962"]],[7,10,["G2064"]],[10,12,["G2147"]],[12,13,["G1127"]],[13,14,["G281"]],[14,16,["G3004"]],[16,18,["G5213"]],[18,19,["G3754"]],[19,22,["G4024"]],[22,24,["G2532"]],[24,26,["G846"]],[26,31,["G347"]],[31,32,["G2532"]],[32,35,["G3928"]],[35,37,["G1247"]],[37,38,["G846"]]]},{"k":25497,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,5,["G2064"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G1208"]],[8,9,["G5438"]],[9,10,["G2532"]],[10,11,["G2064"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G5154"]],[14,15,["G5438"]],[15,16,["G2532"]],[16,17,["G2147"]],[17,19,["G3779"]],[19,20,["G3107"]],[20,21,["G1526"]],[21,22,["G1565"]],[22,23,["G1401"]]]},{"k":25498,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,3,["G1097"]],[3,4,["G3754"]],[4,5,["G1487"]],[5,6,["G3588"]],[6,10,["G3617"]],[10,12,["G1492"]],[12,13,["G4169"]],[13,14,["G5610"]],[14,15,["G3588"]],[15,16,["G2812"]],[16,18,["G2064"]],[18,22,["G1127","G302"]],[22,23,["G2532"]],[23,24,["G3756"]],[24,26,["G863","G302"]],[26,27,["G848"]],[27,28,["G3624"]],[28,32,["G1358"]]]},{"k":25499,"v":[[0,1,["G1096"]],[1,2,["G5210"]],[2,3,["G3767"]],[3,4,["G2092"]],[4,5,["G2532"]],[5,6,["G3754"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G444"]],[10,11,["G2064"]],[11,12,["(G3739)"]],[12,14,["G5610"]],[14,17,["G1380"]],[17,18,["G3756"]]]},{"k":25500,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G2962"]],[6,7,["G3004"]],[7,9,["G5026"]],[9,10,["G3850"]],[10,11,["G4314"]],[11,12,["G2248"]],[12,13,["G2228"]],[13,14,["G2532"]],[14,15,["G4314"]],[15,16,["G3956"]]]},{"k":25501,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2036"]],[4,5,["G5101"]],[5,6,["G686"]],[6,7,["G2076"]],[7,9,["G4103"]],[9,10,["G2532"]],[10,11,["G5429"]],[11,12,["G3623"]],[12,13,["G3739"]],[13,15,["G2962"]],[15,18,["G2525"]],[18,19,["G1909"]],[19,20,["G848"]],[20,21,["G2322"]],[21,23,["G1325"]],[23,28,["G4620"]],[28,29,["G1722"]],[29,31,["G2540"]]]},{"k":25502,"v":[[0,1,["G3107"]],[1,3,["G1565"]],[3,4,["G1401"]],[4,5,["G3739"]],[5,6,["G846"]],[6,7,["G2962"]],[7,10,["G2064"]],[10,12,["G2147"]],[12,13,["G3779"]],[13,14,["G4160"]]]},{"k":25503,"v":[[0,3,["G230"]],[3,5,["G3004"]],[5,7,["G5213"]],[7,8,["G3754"]],[8,13,["G2525","G846"]],[13,14,["G1909"]],[14,15,["G3956"]],[15,18,["G5224","G848"]]]},{"k":25504,"v":[[0,1,["G1161"]],[1,3,["G1437"]],[3,4,["G1565"]],[4,5,["G1401"]],[5,6,["G2036"]],[6,7,["G1722"]],[7,8,["G848"]],[8,9,["G2588"]],[9,10,["G3450"]],[10,11,["G2962"]],[11,12,["G5549"]],[12,14,["G2064"]],[14,15,["G2532"]],[15,17,["G756"]],[17,19,["G5180"]],[19,20,["G3588"]],[20,21,["G3816"]],[21,22,["G2532"]],[22,23,["G3814"]],[23,24,["G5037"]],[24,26,["G2068"]],[26,27,["G2532"]],[27,28,["G4095"]],[28,29,["G2532"]],[29,32,["G3182"]]]},{"k":25505,"v":[[0,1,["G3588"]],[1,2,["G2962"]],[2,4,["G1565"]],[4,5,["G1401"]],[5,7,["G2240"]],[7,8,["G1722"]],[8,10,["G2250"]],[10,11,["G3739"]],[11,15,["G4328","G3756"]],[15,17,["G2532"]],[17,18,["G1722"]],[18,20,["G5610"]],[20,21,["G3739"]],[21,25,["G1097","G3756"]],[25,26,["G2532"]],[26,31,["G1371","G846"]],[31,32,["G2532"]],[32,34,["G5087"]],[34,35,["G846"]],[35,37,["G3313"]],[37,38,["G3326"]],[38,39,["G3588"]],[39,40,["G571"]]]},{"k":25506,"v":[[0,1,["G1161"]],[1,2,["G1565"]],[2,3,["G1401"]],[3,5,["G1097"]],[5,6,["G1438"]],[6,7,["G2962"]],[7,8,["G2307"]],[8,9,["G2532"]],[9,10,["G2090"]],[10,11,["G3361"]],[11,13,["G3366"]],[13,14,["G4160"]],[14,16,["G4314"]],[16,17,["G846"]],[17,18,["G2307"]],[18,21,["G1194"]],[21,23,["G4183"]],[23,24,[]]]},{"k":25507,"v":[[0,1,["G1161"]],[1,4,["G1097"]],[4,5,["G3361"]],[5,6,["G1161"]],[6,8,["G4160"]],[8,10,["G514"]],[10,12,["G4127"]],[12,15,["G1194"]],[15,17,["G3641"]],[17,19,["G1161"]],[19,21,["G3956","G3739"]],[21,22,["G4183"]],[22,24,["G1325"]],[24,25,["G3844"]],[25,26,["G846"]],[26,29,["G4183"]],[29,30,["G2212"]],[30,31,["G2532"]],[31,33,["G3739"]],[33,36,["G3908"]],[36,37,["G4183"]],[37,39,["G846"]],[39,42,["G154"]],[42,44,["G4055"]]]},{"k":25508,"v":[[0,3,["G2064"]],[3,5,["G906"]],[5,6,["G4442"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G1093"]],[9,10,["G2532"]],[10,11,["G5101"]],[11,12,["G2309"]],[12,14,["G1487"]],[14,17,["G2235"]],[17,18,["G381"]]]},{"k":25509,"v":[[0,1,["G1161"]],[1,3,["G2192"]],[3,5,["G908"]],[5,8,["G907"]],[8,10,["G2532"]],[10,11,["G4459"]],[11,14,["G4912"]],[14,15,["G2193"]],[15,16,["(G3739)"]],[16,18,["G5055"]]]},{"k":25510,"v":[[0,1,["G1380"]],[1,3,["G3754"]],[3,6,["G3854"]],[6,8,["G1325"]],[8,9,["G1515"]],[9,10,["G1722"]],[10,11,["G1093"]],[11,13,["G3004"]],[13,14,["G5213"]],[14,15,["G3780"]],[15,16,["G235"]],[16,17,["G2228"]],[17,18,["G1267"]]]},{"k":25511,"v":[[0,1,["G1063"]],[1,2,["G575"]],[2,3,["G3568"]],[3,6,["G2071"]],[6,7,["G4002"]],[7,8,["G1722"]],[8,9,["G1520"]],[9,10,["G3624"]],[10,11,["G1266"]],[11,12,["G5140"]],[12,13,["G1909"]],[13,14,["G1417"]],[14,15,["G2532"]],[15,16,["G1417"]],[16,17,["G1909"]],[17,18,["G5140"]]]},{"k":25512,"v":[[0,2,["G3962"]],[2,5,["G1266"]],[5,6,["G1909"]],[6,8,["G5207"]],[8,9,["G2532"]],[9,11,["G5207"]],[11,12,["G1909"]],[12,14,["G3962"]],[14,16,["G3384"]],[16,17,["G1909"]],[17,19,["G2364"]],[19,20,["G2532"]],[20,22,["G2364"]],[22,23,["G1909"]],[23,25,["G3384"]],[25,29,["G3994"]],[29,30,["G1909"]],[30,31,["G848"]],[31,34,["G3565"]],[34,35,["G2532"]],[35,39,["G3565"]],[39,40,["G1909"]],[40,41,["G848"]],[41,44,["G3994"]]]},{"k":25513,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,4,["G2532"]],[4,6,["G3588"]],[6,7,["G3793"]],[7,8,["G3752"]],[8,10,["G1492"]],[10,12,["G3507"]],[12,13,["G393"]],[13,15,["G575"]],[15,17,["G1424"]],[17,18,["G2112"]],[18,20,["G3004"]],[20,22,["G2064"]],[22,24,["G3655"]],[24,25,["G2543"]],[25,26,["G3779"]],[26,28,["G1096"]]]},{"k":25514,"v":[[0,1,["G2532"]],[1,2,["G3752"]],[2,7,["G3558"]],[7,8,["G4154"]],[8,10,["G3004"]],[10,13,["G2071"]],[13,14,["G2742"]],[14,15,["G2532"]],[15,19,["G1096"]]]},{"k":25515,"v":[[0,2,["G5273"]],[2,4,["G1492"]],[4,5,["G1381"]],[5,6,["G3588"]],[6,7,["G4383"]],[7,9,["G3588"]],[9,10,["G3772"]],[10,11,["G2532"]],[11,13,["G3588"]],[13,14,["G1093"]],[14,15,["G1161"]],[15,16,["G4459"]],[16,22,["G3756"]],[22,23,["G1381"]],[23,24,["G5126"]],[24,25,["G2540"]]]},{"k":25516,"v":[[0,2,["G1161"]],[2,3,["G5101"]],[3,4,["G2532"]],[4,5,["G575"]],[5,6,["G1438"]],[6,7,["G2919"]],[7,9,["G3756"]],[9,12,["G1342"]]]},{"k":25517,"v":[[0,0,["(G1161)"]],[0,1,["G5613"]],[1,3,["G5217"]],[3,4,["G3326"]],[4,5,["G4675"]],[5,6,["G476"]],[6,7,["G1909"]],[7,9,["G758"]],[9,13,["G1722"]],[13,14,["G3588"]],[14,15,["G3598"]],[15,16,["G1325"]],[16,17,["G2039"]],[17,22,["G525"]],[22,23,["G575"]],[23,24,["G846"]],[24,25,["G3379"]],[25,27,["G2694"]],[27,28,["G4571"]],[28,29,["G4314"]],[29,30,["G3588"]],[30,31,["G2923"]],[31,32,["G2532"]],[32,33,["G3588"]],[33,34,["G2923"]],[34,35,["G3860"]],[35,36,["G4571"]],[36,38,["G3588"]],[38,39,["G4233"]],[39,40,["G2532"]],[40,41,["G3588"]],[41,42,["G4233"]],[42,43,["G906"]],[43,44,["G4571"]],[44,45,["G1519"]],[45,46,["G5438"]]]},{"k":25518,"v":[[0,2,["G3004"]],[2,3,["G4671"]],[3,6,["G3364"]],[6,7,["G1831"]],[7,8,["G1564"]],[8,9,["G2193","G3757"]],[9,12,["G591"]],[12,13,["G3588"]],[13,14,["G2532"]],[14,15,["G2078"]],[15,16,["G3016"]]]},{"k":25519,"v":[[0,1,["(G1161)"]],[1,3,["G3918"]],[3,4,["G1722"]],[4,5,["G846"]],[5,6,["G2540"]],[6,7,["G5100"]],[7,9,["G518"]],[9,10,["G846"]],[10,11,["G4012"]],[11,12,["G3588"]],[12,13,["G1057"]],[13,14,["G3739"]],[14,15,["G129"]],[15,16,["G4091"]],[16,18,["G3396"]],[18,19,["G3326"]],[19,20,["G846"]],[20,21,["G2378"]]]},{"k":25520,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G1380"]],[7,9,["G3754"]],[9,10,["G3778"]],[10,11,["G1057"]],[11,12,["G1096"]],[12,13,["G268"]],[13,14,["G3844"]],[14,15,["G3956"]],[15,16,["G3588"]],[16,17,["G1057"]],[17,18,["G3754"]],[18,20,["G3958"]],[20,22,["G5108"]]]},{"k":25521,"v":[[0,2,["G3004"]],[2,3,["G5213"]],[3,4,["G3780"]],[4,5,["G235"]],[5,6,["G1437","G3361"]],[6,8,["G3340"]],[8,11,["G3956"]],[11,12,["G5615"]],[12,13,["G622"]]]},{"k":25522,"v":[[0,1,["G2228"]],[1,2,["G1565"]],[2,3,["G1176","G2532","G3638"]],[3,4,["G1909"]],[4,5,["G3739"]],[5,6,["G3588"]],[6,7,["G4444"]],[7,8,["G1722"]],[8,9,["G4611"]],[9,10,["G4098"]],[10,11,["G2532"]],[11,12,["G615"]],[12,13,["G846"]],[13,14,["G1380"]],[14,16,["G3754"]],[16,17,["G3778"]],[17,18,["G1096"]],[18,19,["G3781"]],[19,20,["G3844"]],[20,21,["G3956"]],[21,22,["G444"]],[22,24,["G2730"]],[24,25,["G1722"]],[25,26,["G2419"]]]},{"k":25523,"v":[[0,2,["G3004"]],[2,3,["G5213"]],[3,4,["G3780"]],[4,5,["G235"]],[5,6,["G1437","G3361"]],[6,8,["G3340"]],[8,11,["G3956"]],[11,12,["G3668"]],[12,13,["G622"]]]},{"k":25524,"v":[[0,2,["G3004"]],[2,3,["G1161"]],[3,4,["G5026"]],[4,5,["G3850"]],[5,7,["G5100"]],[7,9,["G2192"]],[9,12,["G4808"]],[12,13,["G5452"]],[13,14,["G1722"]],[14,15,["G848"]],[15,16,["G290"]],[16,17,["G2532"]],[17,19,["G2064"]],[19,21,["G2212"]],[21,22,["G2590"]],[22,23,["G1722","G846"]],[23,24,["G2532"]],[24,25,["G2147"]],[25,26,["G3756"]]]},{"k":25525,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,4,["G4314"]],[4,5,["G3588"]],[5,9,["G289"]],[9,10,["G2400"]],[10,12,["G5140"]],[12,13,["G2094"]],[13,15,["G2064"]],[15,16,["G2212"]],[16,17,["G2590"]],[17,18,["G1722"]],[18,19,["G5026"]],[19,21,["G4808"]],[21,22,["G2532"]],[22,23,["G2147"]],[23,24,["G3756"]],[24,27,["G1581","G846"]],[27,28,["G2444","(G2532)"]],[28,29,["G2673"]],[29,31,["G3588"]],[31,32,["G1093"]]]},{"k":25526,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,4,["G3004"]],[4,6,["G846"]],[6,7,["G2962"]],[7,10,["G863","G846"]],[10,11,["G5124"]],[11,12,["G2094"]],[12,13,["G2532"]],[13,14,["G2193","G3755"]],[14,17,["G4626"]],[17,18,["G4012"]],[18,19,["G846"]],[19,20,["G2532"]],[20,21,["G906","G2874"]],[21,22,[]]]},{"k":25527,"v":[[0,2,["G2579"]],[2,3,["(G3303)"]],[3,4,["G4160"]],[4,5,["G2590"]],[5,9,["G1490"]],[9,12,["G1519","G3195"]],[12,17,["G1581","G846"]]]},{"k":25528,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G1321"]],[4,5,["G1722"]],[5,6,["G3391"]],[6,8,["G3588"]],[8,9,["G4864"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G4521"]]]},{"k":25529,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G2258"]],[4,6,["G1135"]],[6,8,["G2192"]],[8,10,["G4151"]],[10,12,["G769"]],[12,13,["G1176","G2532","G3638"]],[13,14,["G2094"]],[14,15,["G2532"]],[15,16,["G2258"]],[16,18,["G4794"]],[18,19,["G2532"]],[19,20,["G1410"]],[20,23,["G3361","G1519","G3838"]],[23,25,["G352"]],[25,26,[]]]},{"k":25530,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,4,["G1492"]],[4,5,["G846"]],[5,7,["G4377"]],[7,11,["G2532"]],[11,12,["G2036"]],[12,14,["G846"]],[14,15,["G1135"]],[15,18,["G630"]],[18,20,["G4675"]],[20,21,["G769"]]]},{"k":25531,"v":[[0,1,["G2532"]],[1,3,["G2007"]],[3,5,["G5495"]],[5,7,["G846"]],[7,8,["G2532"]],[8,9,["G3916"]],[9,13,["G461"]],[13,14,["G2532"]],[14,15,["G1392"]],[15,16,["G2316"]]]},{"k":25532,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,6,["G752"]],[6,7,["G611"]],[7,9,["G23"]],[9,10,["G3754"]],[10,12,["G2424"]],[12,14,["G2323"]],[14,16,["G3588"]],[16,18,["G4521"]],[18,20,["G3004"]],[20,22,["G3588"]],[22,23,["G3793"]],[23,25,["G1526"]],[25,26,["G1803"]],[26,27,["G2250"]],[27,28,["G1722"]],[28,29,["G3739"]],[29,31,["G1163"]],[31,33,["G2038"]],[33,34,["G1722"]],[34,35,["G5025"]],[35,36,["G3767"]],[36,37,["G2064"]],[37,38,["G2532"]],[38,40,["G2323"]],[40,41,["G2532"]],[41,42,["G3361"]],[42,44,["G3588"]],[44,45,["G4521"]],[45,46,["G2250"]]]},{"k":25533,"v":[[0,1,["G3588"]],[1,2,["G2962"]],[2,3,["G3767"]],[3,4,["G611"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G2036"]],[7,9,["G5273"]],[9,11,["G3756"]],[11,13,["G1538"]],[13,15,["G5216"]],[15,17,["G3588"]],[17,18,["G4521"]],[18,19,["G3089"]],[19,20,["G848"]],[20,21,["G1016"]],[21,22,["G2228"]],[22,24,["G3688"]],[24,25,["G575"]],[25,26,["G3588"]],[26,27,["G5336"]],[27,28,["G2532"]],[28,31,["G520"]],[31,33,["G4222"]]]},{"k":25534,"v":[[0,1,["G1161"]],[1,2,["G1163"]],[2,3,["G3756"]],[3,5,["G5026"]],[5,6,["G5607"]],[6,8,["G2364"]],[8,10,["G11"]],[10,11,["G3739"]],[11,12,["G4567"]],[12,14,["G1210"]],[14,15,["G2400"]],[15,17,["G1176","G2532","G3638"]],[17,18,["G2094"]],[18,20,["G3089"]],[20,21,["G575"]],[21,22,["G5127"]],[22,23,["G1199"]],[23,25,["G3588"]],[25,26,["G4521"]],[26,27,["G2250"]]]},{"k":25535,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G3004"]],[5,7,["G5023"]],[7,8,["G3956"]],[8,9,["G846"]],[9,10,["G480"]],[10,12,["G2617"]],[12,13,["G2532"]],[13,14,["G3956"]],[14,15,["G3588"]],[15,16,["G3793"]],[16,17,["G5463"]],[17,18,["G1909"]],[18,19,["G3956"]],[19,20,["G3588"]],[20,22,["G1741"]],[22,25,["G1096"]],[25,26,["G5259"]],[26,27,["G846"]]]},{"k":25536,"v":[[0,1,["G1161"]],[1,2,["G3004"]],[2,5,["G5101"]],[5,6,["G2076"]],[6,7,["G3588"]],[7,8,["G932"]],[8,10,["G2316"]],[10,11,["G3664"]],[11,12,["G2532"]],[12,13,["G5101"]],[13,16,["G3666"]],[16,17,["G846"]]]},{"k":25537,"v":[[0,2,["G2076"]],[2,3,["G3664"]],[3,5,["G2848"]],[5,8,["G4615"]],[8,9,["G3739"]],[9,11,["G444"]],[11,12,["G2983"]],[12,14,["G906"]],[14,15,["G1519"]],[15,16,["G1438"]],[16,17,["G2779"]],[17,18,["G2532"]],[18,20,["G837"]],[20,21,["G2532"]],[21,22,["G1096"]],[22,24,["G3173"]],[24,25,["G1186"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G4071"]],[28,30,["G3588"]],[30,31,["G3772"]],[31,32,["G2681"]],[32,33,["G1722"]],[33,34,["G3588"]],[34,35,["G2798"]],[35,37,["G846"]]]},{"k":25538,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,4,["G2036"]],[4,5,["G5101"]],[5,8,["G3666"]],[8,9,["G3588"]],[9,10,["G932"]],[10,12,["G2316"]]]},{"k":25539,"v":[[0,2,["G2076"]],[2,3,["G3664"]],[3,4,["G2219"]],[4,5,["G3739"]],[5,7,["G1135"]],[7,8,["G2983"]],[8,10,["G1470"]],[10,11,["G1519"]],[11,12,["G5140"]],[12,13,["G4568"]],[13,15,["G224"]],[15,16,["G2193","G3757"]],[16,18,["G3650"]],[18,20,["G2220"]]]},{"k":25540,"v":[[0,1,["G2532"]],[1,3,["G1279"]],[3,4,["G2596"]],[4,6,["G4172"]],[6,7,["G2532"]],[7,8,["G2968"]],[8,9,["G1321"]],[9,10,["G2532"]],[10,11,["G4160","G4197"]],[11,12,["G1519"]],[12,13,["G2419"]]]},{"k":25541,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G5100"]],[3,5,["G846"]],[5,6,["G2962"]],[6,7,["(G1487)"]],[7,9,["G3641"]],[9,12,["G4982"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G2036"]],[15,16,["G4314"]],[16,17,["G846"]]]},{"k":25542,"v":[[0,1,["G75"]],[1,4,["G1525"]],[4,5,["G1223"]],[5,6,["G3588"]],[6,7,["G4728"]],[7,8,["G4439"]],[8,9,["G3754"]],[9,10,["G4183"]],[10,12,["G3004"]],[12,14,["G5213"]],[14,16,["G2212"]],[16,19,["G1525"]],[19,20,["G2532"]],[20,22,["G3756"]],[22,24,["G2480"]]]},{"k":25543,"v":[[0,2,["G575","G3739","G302"]],[2,3,["G3588"]],[3,7,["G3617"]],[7,10,["G1453"]],[10,11,["G2532"]],[11,14,["G608"]],[14,15,["G3588"]],[15,16,["G2374"]],[16,17,["G2532"]],[17,19,["G756"]],[19,21,["G2476"]],[21,22,["G1854"]],[22,23,["G2532"]],[23,25,["G2925"]],[25,27,["G3588"]],[27,28,["G2374"]],[28,29,["G3004"]],[29,30,["G2962"]],[30,31,["G2962"]],[31,32,["G455"]],[32,34,["G2254"]],[34,35,["G2532"]],[35,38,["G611"]],[38,40,["G2046"]],[40,42,["G5213"]],[42,44,["G1492"]],[44,45,["G5209"]],[45,46,["G3756"]],[46,47,["G4159"]],[47,49,["G2075"]]]},{"k":25544,"v":[[0,1,["G5119"]],[1,4,["G756"]],[4,6,["G3004"]],[6,9,["G5315"]],[9,10,["G2532"]],[10,11,["G4095"]],[11,14,["G1799","G4675"]],[14,15,["G2532"]],[15,18,["G1321"]],[18,19,["G1722"]],[19,20,["G2257"]],[20,21,["G4113"]]]},{"k":25545,"v":[[0,1,["G2532"]],[1,4,["G2046"]],[4,6,["G3004"]],[6,7,["G5213"]],[7,9,["G1492"]],[9,10,["G5209"]],[10,11,["G3756"]],[11,12,["G4159"]],[12,14,["G2075"]],[14,15,["G868"]],[15,16,["G575"]],[16,17,["G1700"]],[17,18,["G3956"]],[18,20,["G2040"]],[20,22,["G93"]]]},{"k":25546,"v":[[0,1,["G1563"]],[1,3,["G2071"]],[3,4,["G2805"]],[4,5,["G2532"]],[5,6,["G1030"]],[6,8,["G3599"]],[8,9,["G3752"]],[9,12,["G3700"]],[12,13,["G11"]],[13,14,["G2532"]],[14,15,["G2464"]],[15,16,["G2532"]],[16,17,["G2384"]],[17,18,["G2532"]],[18,19,["G3956"]],[19,20,["G3588"]],[20,21,["G4396"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G932"]],[24,26,["G2316"]],[26,27,["G1161"]],[27,28,["G5209"]],[28,30,["G1544"]],[30,31,["G1854"]]]},{"k":25547,"v":[[0,1,["G2532"]],[1,4,["G2240"]],[4,5,["G575"]],[5,7,["G395"]],[7,8,["G2532"]],[8,11,["G1424"]],[11,12,["G2532"]],[12,13,["G575"]],[13,15,["G1005"]],[15,16,["G2532"]],[16,19,["G3558"]],[19,20,["G2532"]],[20,23,["G347"]],[23,24,["G1722"]],[24,25,["G3588"]],[25,26,["G932"]],[26,27,["G2316"]],[27,28,[]]]},{"k":25548,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G1526"]],[4,5,["G2078"]],[5,6,["G3739"]],[6,8,["G2071"]],[8,9,["G4413"]],[9,10,["G2532"]],[10,12,["G1526"]],[12,13,["G4413"]],[13,14,["G3739"]],[14,16,["G2071"]],[16,17,["G2078"]]]},{"k":25549,"v":[[0,1,["(G1722)"]],[1,2,["G846"]],[2,3,["G2250"]],[3,5,["G4334"]],[5,6,["G5100"]],[6,9,["G5330"]],[9,10,["G3004"]],[10,12,["G846"]],[12,15,["G1831"]],[15,16,["G2532"]],[16,17,["G4198"]],[17,18,["G1782"]],[18,19,["G3754"]],[19,20,["G2264"]],[20,21,["G2309"]],[21,22,["G615"]],[22,23,["G4571"]]]},{"k":25550,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G4198"]],[6,9,["G2036"]],[9,10,["G5026"]],[10,11,["G258"]],[11,12,["G2400"]],[12,15,["G1544"]],[15,16,["G1140"]],[16,17,["G2532"]],[17,19,["G2005"]],[19,20,["G2392"]],[20,22,["G4594"]],[22,23,["G2532"]],[23,25,["G839"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G5154"]],[28,33,["G5048"]]]},{"k":25551,"v":[[0,1,["G4133"]],[1,2,["G3165"]],[2,3,["G1163"]],[3,4,["G4198"]],[4,6,["G4594"]],[6,7,["G2532"]],[7,9,["G839"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,13,["G2192"]],[13,14,["G3754"]],[14,17,["G1735","G3756"]],[17,20,["G4396"]],[20,21,["G622"]],[21,22,["G1854"]],[22,24,["G2419"]]]},{"k":25552,"v":[[0,2,["G2419"]],[2,3,["G2419"]],[3,5,["G615"]],[5,6,["G3588"]],[6,7,["G4396"]],[7,8,["G2532"]],[8,9,["G3036"]],[9,13,["G649"]],[13,14,["G4314"]],[14,15,["G846"]],[15,17,["G4212"]],[17,18,["G2309"]],[18,24,["G1996","G4675","G5043"]],[24,25,["G3739","G5158"]],[25,27,["G3733"]],[27,30,["G1438"]],[30,31,["G3555"]],[31,32,["G5259"]],[32,34,["G4420"]],[34,35,["G2532"]],[35,37,["G2309"]],[37,38,["G3756"]]]},{"k":25553,"v":[[0,1,["G2400"]],[1,2,["G5216"]],[2,3,["G3624"]],[3,5,["G863"]],[5,7,["G5213"]],[7,8,["G2048"]],[8,9,["G1161"]],[9,10,["G281"]],[10,12,["G3004"]],[12,14,["G5213"]],[14,17,["G3364"]],[17,18,["G1492"]],[18,19,["G3165"]],[19,20,["G2193","G302"]],[20,23,["G2240"]],[23,24,["G3753"]],[24,27,["G2036"]],[27,28,["G2127"]],[28,32,["G2064"]],[32,33,["G1722"]],[33,35,["G3686"]],[35,38,["G2962"]]]},{"k":25554,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G846"]],[7,8,["G2064"]],[8,9,["G1519"]],[9,11,["G3624"]],[11,13,["G5100"]],[13,15,["G3588"]],[15,16,["G758"]],[16,17,["G5330"]],[17,19,["G5315"]],[19,20,["G740"]],[20,24,["G4521"]],[24,25,["G2532"]],[25,26,["G846"]],[26,27,["G2258","G3906"]],[27,28,["G846"]]]},{"k":25555,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G2258"]],[4,6,["G5100"]],[6,7,["G444"]],[7,8,["G1715"]],[8,9,["G846"]],[9,13,["G5203"]]]},{"k":25556,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G3588"]],[6,7,["G3544"]],[7,8,["G2532"]],[8,9,["G5330"]],[9,10,["G3004","(G1487)"]],[10,13,["G1832"]],[13,15,["G2323"]],[15,17,["G3588"]],[17,19,["G4521"]]]},{"k":25557,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,5,["G2270"]],[5,6,["G2532"]],[6,8,["G1949"]],[8,11,["G2390"]],[11,12,["G846"]],[12,13,["G2532"]],[13,16,["G630"]]]},{"k":25558,"v":[[0,1,["G2532"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G2036"]],[4,5,["G5101"]],[5,7,["G5216"]],[7,11,["G3688"]],[11,12,["G2228"]],[12,14,["G1016"]],[14,15,["G1706"]],[15,16,["G1519"]],[16,18,["G5421"]],[18,19,["G2532"]],[19,21,["G3756"]],[21,22,["G2112"]],[22,25,["G385","G846"]],[25,26,["G1722"]],[26,27,["G3588"]],[27,28,["G4521"]],[28,29,["G2250"]]]},{"k":25559,"v":[[0,1,["G2532"]],[1,3,["G2480"]],[3,4,["G3756"]],[4,7,["G470","G846"]],[7,8,["G4314"]],[8,10,["G5023"]]]},{"k":25560,"v":[[0,1,["G1161"]],[1,4,["G3004"]],[4,6,["G3850"]],[6,7,["G4314"]],[7,11,["G2564"]],[11,14,["G1907"]],[14,15,["G4459"]],[15,18,["G1586"]],[18,19,["G3588"]],[19,21,["G4411"]],[21,22,["G3004"]],[22,23,["G4314"]],[23,24,["G846"]]]},{"k":25561,"v":[[0,1,["G3752"]],[1,4,["G2564"]],[4,5,["G5259"]],[5,6,["G5100"]],[6,8,["G1519"]],[8,10,["G1062"]],[10,13,["G2625","G3361"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,17,["G4411"]],[17,18,["G3379"]],[18,22,["G1784"]],[22,24,["G4675"]],[24,25,["G5600"]],[25,26,["G2564"]],[26,27,["G5259"]],[27,28,["G846"]]]},{"k":25562,"v":[[0,1,["G2532"]],[1,4,["G2564"]],[4,5,["G4571"]],[5,6,["G2532"]],[6,7,["G846"]],[7,8,["G2064"]],[8,10,["G2046"]],[10,12,["G4671"]],[12,13,["G1325"]],[13,15,["G5129"]],[15,16,["G5117"]],[16,17,["G2532"]],[17,18,["(G5119)"]],[18,19,["G756"]],[19,20,["G3326"]],[20,21,["G152"]],[21,23,["G2722"]],[23,24,["G3588"]],[24,25,["G2078"]],[25,26,["G5117"]]]},{"k":25563,"v":[[0,1,["G235"]],[1,2,["G3752"]],[2,5,["G2564"]],[5,6,["G4198"]],[6,9,["G377"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G2078"]],[12,13,["G5117"]],[13,14,["G2443"]],[14,15,["G3752"]],[15,18,["G2564"]],[18,19,["G4571"]],[19,20,["G2064"]],[20,23,["G2036"]],[23,25,["G4671"]],[25,26,["G5384"]],[26,28,["G4320"]],[28,29,["G511"]],[29,30,["G5119"]],[30,32,["G4671"]],[32,33,["G2071"]],[33,34,["G1391"]],[34,37,["G1799"]],[37,44,["G4873"]],[44,45,["G4671"]]]},{"k":25564,"v":[[0,1,["G3754"]],[1,2,["G3956"]],[2,3,["G5312"]],[3,4,["G1438"]],[4,7,["G5013"]],[7,8,["G2532"]],[8,11,["G5013"]],[11,12,["G1438"]],[12,15,["G5312"]]]},{"k":25565,"v":[[0,1,["G1161"]],[1,2,["G3004"]],[2,4,["G2532"]],[4,8,["G2564"]],[8,9,["G846"]],[9,10,["G3752"]],[10,12,["G4160"]],[12,14,["G712"]],[14,15,["G2228"]],[15,17,["G1173"]],[17,18,["G5455"]],[18,19,["G3361"]],[19,20,["G4675"]],[20,21,["G5384"]],[21,22,["G3366"]],[22,23,["G4675"]],[23,24,["G80"]],[24,25,["G3366"]],[25,26,["G4675"]],[26,27,["G4773"]],[27,28,["G3366"]],[28,30,["G4145"]],[30,31,["G1069"]],[31,32,["G3379"]],[32,33,["G846"]],[33,34,["G2532"]],[34,37,["G479","G4571"]],[37,38,["G2532"]],[38,40,["G468"]],[40,42,["G1096"]],[42,43,["G4671"]]]},{"k":25566,"v":[[0,1,["G235"]],[1,2,["G3752"]],[2,4,["G4160"]],[4,6,["G1403"]],[6,7,["G2564"]],[7,9,["G4434"]],[9,11,["G376"]],[11,13,["G5560"]],[13,15,["G5185"]]]},{"k":25567,"v":[[0,1,["G2532"]],[1,4,["G2071"]],[4,5,["G3107"]],[5,6,["G3754"]],[6,8,["G2192","G3756"]],[8,9,["G467"]],[9,10,["G4671"]],[10,11,["G1063"]],[11,12,["G4671"]],[12,15,["G467"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G386"]],[18,20,["G3588"]],[20,21,["G1342"]]]},{"k":25568,"v":[[0,1,["G1161"]],[1,3,["G5100"]],[3,10,["G4873"]],[10,12,["G191"]],[12,14,["G5023"]],[14,16,["G2036"]],[16,18,["G846"]],[18,19,["G3107"]],[19,21,["G3739"]],[21,24,["G5315"]],[24,25,["G740"]],[25,26,["G1722"]],[26,27,["G3588"]],[27,28,["G932"]],[28,30,["G2316"]]]},{"k":25569,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,5,["G846"]],[5,7,["G5100"]],[7,8,["G444"]],[8,9,["G4160"]],[9,11,["G3173"]],[11,12,["G1173"]],[12,13,["G2532"]],[13,14,["G2564"]],[14,15,["G4183"]]]},{"k":25570,"v":[[0,1,["G2532"]],[1,2,["G649"]],[2,3,["G848"]],[3,4,["G1401"]],[4,6,["G1173"]],[6,7,["G5610"]],[7,9,["G2036"]],[9,14,["G2564"]],[14,15,["G2064"]],[15,16,["G3754"]],[16,18,["G3956"]],[18,19,["G2076"]],[19,20,["G2235"]],[20,21,["G2092"]]]},{"k":25571,"v":[[0,1,["G2532"]],[1,3,["G3956"]],[3,4,["G575"]],[4,5,["G3391"]],[5,7,["G756"]],[7,10,["G3868"]],[10,11,["G3588"]],[11,12,["G4413"]],[12,13,["G2036"]],[13,15,["G846"]],[15,18,["G59"]],[18,22,["G68"]],[22,23,["G2532"]],[23,25,["G2192"]],[25,26,["G318"]],[26,27,["G1831"]],[27,28,["G2532"]],[28,29,["G1492"]],[29,30,["G846"]],[30,32,["G2065"]],[32,33,["G4571"]],[33,34,["G2192"]],[34,35,["G3165"]],[35,36,["G3868"]]]},{"k":25572,"v":[[0,1,["G2532"]],[1,2,["G2087"]],[2,3,["G2036"]],[3,6,["G59"]],[6,7,["G4002"]],[7,8,["G2201"]],[8,10,["G1016"]],[10,11,["G2532"]],[11,13,["G4198"]],[13,15,["G1381"]],[15,16,["G846"]],[16,18,["G2065"]],[18,19,["G4571"]],[19,20,["G2192"]],[20,21,["G3165"]],[21,22,["G3868"]]]},{"k":25573,"v":[[0,1,["G2532"]],[1,2,["G2087"]],[2,3,["G2036"]],[3,6,["G1060"]],[6,8,["G1135"]],[8,9,["G2532"]],[9,10,["G1223","G5124"]],[10,12,["G1410","G3756"]],[12,13,["G2064"]]]},{"k":25574,"v":[[0,1,["G2532"]],[1,2,["G1565"]],[2,3,["G1401"]],[3,4,["G3854"]],[4,6,["G518"]],[6,7,["G848"]],[7,8,["G2962"]],[8,10,["G5023"]],[10,11,["G5119"]],[11,12,["G3588"]],[12,16,["G3617"]],[16,18,["G3710"]],[18,19,["G2036"]],[19,21,["G848"]],[21,22,["G1401"]],[22,24,["G1831"]],[24,25,["G5030"]],[25,26,["G1519"]],[26,27,["G3588"]],[27,28,["G4113"]],[28,29,["G2532"]],[29,30,["G4505"]],[30,32,["G3588"]],[32,33,["G4172"]],[33,34,["G2532"]],[34,36,["G1521"]],[36,37,["G5602"]],[37,38,["G3588"]],[38,39,["G4434"]],[39,40,["G2532"]],[40,42,["G376"]],[42,43,["G2532"]],[43,45,["G5560"]],[45,46,["G2532"]],[46,48,["G5185"]]]},{"k":25575,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1401"]],[3,4,["G2036"]],[4,5,["G2962"]],[5,8,["G1096"]],[8,9,["G5613"]],[9,12,["G2004"]],[12,13,["G2532"]],[13,14,["G2089"]],[14,16,["G2076"]],[16,17,["G5117"]]]},{"k":25576,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G3588"]],[6,7,["G1401"]],[7,9,["G1831"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G3598"]],[12,13,["G2532"]],[13,14,["G5418"]],[14,15,["G2532"]],[15,16,["G315"]],[16,20,["G1525"]],[20,21,["G2443"]],[21,22,["G3450"]],[22,23,["G3624"]],[23,26,["G1072"]]]},{"k":25577,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G3762"]],[7,9,["G1565"]],[9,10,["G435"]],[10,13,["G2564"]],[13,15,["G1089"]],[15,17,["G3450"]],[17,18,["G1173"]]]},{"k":25578,"v":[[0,1,["G1161"]],[1,6,["G4848","G4183","G3793"]],[6,7,["G846"]],[7,8,["G2532"]],[8,10,["G4762"]],[10,12,["G2036"]],[12,13,["G4314"]],[13,14,["G846"]]]},{"k":25579,"v":[[0,2,["G1536"]],[2,4,["G2064"]],[4,5,["G4314"]],[5,6,["G3165"]],[6,7,["G2532"]],[7,8,["G3404"]],[8,9,["G3756"]],[9,10,["G1438"]],[10,11,["G3962"]],[11,12,["G2532"]],[12,13,["G3384"]],[13,14,["G2532"]],[14,15,["G1135"]],[15,16,["G2532"]],[16,17,["G5043"]],[17,18,["G2532"]],[18,19,["G80"]],[19,20,["G2532"]],[20,21,["G79"]],[21,22,["(G2089)"]],[22,23,["G1161"]],[23,25,["G1438"]],[25,26,["G5590"]],[26,27,["G2532"]],[27,29,["G1410","G3756"]],[29,30,["G1511"]],[30,31,["G3450"]],[31,32,["G3101"]]]},{"k":25580,"v":[[0,1,["G2532"]],[1,2,["G3748"]],[2,4,["G3756"]],[4,5,["G941"]],[5,6,["G848"]],[6,7,["G4716"]],[7,8,["G2532"]],[8,9,["G2064"]],[9,10,["G3694"]],[10,11,["G3450"]],[11,12,["G1410","G3756"]],[12,13,["G1511"]],[13,14,["G3450"]],[14,15,["G3101"]]]},{"k":25581,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,3,["G1537"]],[3,4,["G5216"]],[4,5,["G2309"]],[5,7,["G3618"]],[7,9,["G4444"]],[9,12,["G2523","G3780"]],[12,13,["G4412"]],[13,15,["G5585"]],[15,16,["G3588"]],[16,17,["G1160"]],[17,18,["G1487"]],[18,20,["G2192"]],[20,23,["G4314","G535"]],[23,24,[]]]},{"k":25582,"v":[[0,2,["G3379"]],[2,3,["(G2443)"]],[3,4,["G846"]],[4,6,["G5087"]],[6,8,["G2310"]],[8,9,["G2532"]],[9,12,["G2480","G3361"]],[12,14,["G1615"]],[14,16,["G3956"]],[16,18,["G2334"]],[18,20,["G756"]],[20,22,["G1702"]],[22,23,["G846"]]]},{"k":25583,"v":[[0,1,["G3004"]],[1,2,["G3778"]],[2,3,["G444"]],[3,4,["G756"]],[4,6,["G3618"]],[6,7,["G2532"]],[7,10,["G2480","G3756"]],[10,12,["G1615"]]]},{"k":25584,"v":[[0,1,["G2228"]],[1,2,["G5101"]],[2,3,["G935"]],[3,4,["G4198"]],[4,7,["G4820","G1519","G4171"]],[7,9,["G2087"]],[9,10,["G935"]],[10,13,["G2523","G3780"]],[13,14,["G4412"]],[14,15,["G2532"]],[15,16,["G1011"]],[16,17,["G1487"]],[17,19,["G2076"]],[19,20,["G1415"]],[20,21,["G1722"]],[21,22,["G1176"]],[22,23,["G5505"]],[23,25,["G528"]],[25,28,["G2064"]],[28,29,["G1909"]],[29,30,["G846"]],[30,31,["G3326"]],[31,32,["G1501"]],[32,33,["G5505"]]]},{"k":25585,"v":[[0,2,["G1490"]],[2,5,["G846"]],[5,6,["G5607"]],[6,7,["G2089"]],[7,11,["G4206"]],[11,13,["G649"]],[13,15,["G4242"]],[15,17,["G2065"]],[17,18,["G3588"]],[18,19,["G4314"]],[19,20,["G1515"]]]},{"k":25586,"v":[[0,1,["G3767"]],[1,2,["G3779"]],[2,3,["G3956"]],[3,6,["G1537"]],[6,7,["G5216"]],[7,8,["G3739"]],[8,9,["G657"]],[9,10,["G3756"]],[10,11,["G3956"]],[11,14,["G5224","G1438"]],[14,16,["G1410","G3756"]],[16,17,["G1511"]],[17,18,["G3450"]],[18,19,["G3101"]]]},{"k":25587,"v":[[0,1,["G217"]],[1,3,["G2570"]],[3,4,["G1161"]],[4,5,["G1437"]],[5,6,["G3588"]],[6,7,["G217"]],[7,11,["G3471"]],[11,12,["G1722","G5101"]],[12,16,["G741"]]]},{"k":25588,"v":[[0,2,["G2076"]],[2,3,["G3777"]],[3,4,["G2111"]],[4,5,["G1519"]],[5,7,["G1093"]],[7,9,["G3777"]],[9,10,["G1519"]],[10,12,["G2874"]],[12,15,["G906"]],[15,16,["G846"]],[16,17,["G1854"]],[17,20,["G2192"]],[20,21,["G3775"]],[21,23,["G191"]],[23,26,["G191"]]]},{"k":25589,"v":[[0,1,["G1161"]],[1,3,["G2258","G1448"]],[3,5,["G846"]],[5,6,["G3956"]],[6,7,["G3588"]],[7,8,["G5057"]],[8,9,["G2532"]],[9,10,["G268"]],[10,13,["G191"]],[13,14,["G846"]]]},{"k":25590,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,4,["G2532"]],[4,5,["G1122"]],[5,6,["G1234"]],[6,7,["G3004"]],[7,9,["G3778"]],[9,10,["G4327"]],[10,11,["G268"]],[11,12,["G2532"]],[12,14,["G4906"]],[14,15,["G846"]]]},{"k":25591,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G5026"]],[4,5,["G3850"]],[5,6,["G4314"]],[6,7,["G846"]],[7,8,["G3004"]]]},{"k":25592,"v":[[0,1,["G5101"]],[1,2,["G444"]],[2,3,["G1537"]],[3,4,["G5216"]],[4,5,["G2192"]],[5,7,["G1540"]],[7,8,["G4263"]],[8,9,["G2532"]],[9,11,["G622"]],[11,12,["G1520"]],[12,13,["G1537"]],[13,14,["G846"]],[14,16,["G3756"]],[16,17,["G2641"]],[17,18,["G3588"]],[18,21,["G1768"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G2048"]],[24,25,["G2532"]],[25,26,["G4198"]],[26,27,["G1909"]],[27,31,["G622"]],[31,32,["G2193"]],[32,34,["G2147"]],[34,35,["G846"]]]},{"k":25593,"v":[[0,1,["G2532"]],[1,5,["G2147"]],[5,8,["G2007"]],[8,10,["G1909"]],[10,11,["G1438"]],[11,12,["G5606"]],[12,13,["G5463"]]]},{"k":25594,"v":[[0,1,["G2532"]],[1,4,["G2064"]],[4,5,["G3624"]],[5,8,["G4779"]],[8,10,["G5384"]],[10,11,["G2532"]],[11,12,["G1069"]],[12,13,["G3004"]],[13,15,["G846"]],[15,17,["G4796"]],[17,18,["G3427"]],[18,19,["G3754"]],[19,22,["G2147"]],[22,23,["G3450"]],[23,24,["G4263"]],[24,27,["G622"]]]},{"k":25595,"v":[[0,2,["G3004"]],[2,4,["G5213"]],[4,5,["G3754"]],[5,6,["G3779"]],[6,7,["G5479"]],[7,9,["G2071"]],[9,10,["G1722"]],[10,11,["G3772"]],[11,12,["G1909"]],[12,13,["G1520"]],[13,14,["G268"]],[14,16,["G3340"]],[16,18,["G2228"]],[18,19,["G1909"]],[19,22,["G1768"]],[22,24,["G1342"]],[24,25,["G3748"]],[25,26,["G2192","G5532"]],[26,27,["G3756"]],[27,28,["G3341"]]]},{"k":25596,"v":[[0,1,["G2228"]],[1,2,["G5101"]],[2,3,["G1135"]],[3,4,["G2192"]],[4,5,["G1176"]],[5,8,["G1406"]],[8,9,["G1437"]],[9,11,["G622"]],[11,12,["G3391"]],[12,13,["G1406"]],[13,15,["G3780"]],[15,16,["G681"]],[16,18,["G3088"]],[18,19,["G2532"]],[19,20,["G4563"]],[20,21,["G3588"]],[21,22,["G3614"]],[22,23,["G2532"]],[23,24,["G2212"]],[24,25,["G1960"]],[25,26,["G2193","G3755"]],[26,28,["G2147"]],[28,29,[]]]},{"k":25597,"v":[[0,1,["G2532"]],[1,5,["G2147"]],[5,14,["G4779","G5384","G2532","G1069"]],[14,15,["G3004"]],[15,17,["G4796"]],[17,18,["G3427"]],[18,19,["G3754"]],[19,22,["G2147"]],[22,23,["G3588"]],[23,24,["G1406"]],[24,25,["G3739"]],[25,28,["G622"]]]},{"k":25598,"v":[[0,1,["G3779"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,7,["G1096"]],[7,8,["G5479"]],[8,11,["G1799"]],[11,13,["G3588"]],[13,14,["G32"]],[14,16,["G2316"]],[16,17,["G1909"]],[17,18,["G1520"]],[18,19,["G268"]],[19,21,["G3340"]]]},{"k":25599,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G5100"]],[5,6,["G444"]],[6,7,["G2192"]],[7,8,["G1417"]],[8,9,["G5207"]]]},{"k":25600,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3501"]],[3,5,["G846"]],[5,6,["G2036"]],[6,9,["G3962"]],[9,10,["G3962"]],[10,11,["G1325"]],[11,12,["G3427"]],[12,13,["G3588"]],[13,14,["G3313"]],[14,16,["G3776"]],[16,18,["G1911"]],[18,21,["G2532"]],[21,23,["G1244"]],[23,25,["G846"]],[25,27,["G979"]]]},{"k":25601,"v":[[0,1,["G2532"]],[1,2,["G3756"]],[2,3,["G4183"]],[3,4,["G2250"]],[4,5,["G3326"]],[5,6,["G3588"]],[6,7,["G3501"]],[7,8,["G5207"]],[8,11,["G4863","G537"]],[11,15,["G589"]],[15,16,["G1519"]],[16,18,["G3117"]],[18,19,["G5561"]],[19,20,["G2532"]],[20,21,["G1563"]],[21,22,["G1287"]],[22,23,["G848"]],[23,24,["G3776"]],[24,26,["G811"]],[26,27,["G2198"]]]},{"k":25602,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G1159"]],[5,6,["G3956"]],[6,8,["G1096"]],[8,10,["G2478"]],[10,11,["G3042"]],[11,12,["G2596"]],[12,13,["G1565"]],[13,14,["G5561"]],[14,15,["G2532"]],[15,16,["G846"]],[16,17,["G756"]],[17,21,["G5302"]]]},{"k":25603,"v":[[0,1,["G2532"]],[1,3,["G4198"]],[3,5,["G2853"]],[5,8,["G1520"]],[8,9,["G4177"]],[9,11,["G1565"]],[11,12,["G5561"]],[12,13,["G2532"]],[13,15,["G3992"]],[15,16,["G846"]],[16,17,["G1519"]],[17,18,["G848"]],[18,19,["G68"]],[19,21,["G1006"]],[21,22,["G5519"]]]},{"k":25604,"v":[[0,1,["G2532"]],[1,4,["G1937"]],[4,6,["G1072"]],[6,7,["G848"]],[7,8,["G2836"]],[8,9,["G575"]],[9,10,["G3588"]],[10,11,["G2769"]],[11,12,["G3739"]],[12,13,["G3588"]],[13,14,["G5519"]],[14,16,["G2068"]],[16,17,["G2532"]],[17,19,["G3762"]],[19,20,["G1325"]],[20,22,["G846"]]]},{"k":25605,"v":[[0,1,["G1161"]],[1,4,["G2064"]],[4,5,["G1519"]],[5,6,["G1438"]],[6,8,["G2036"]],[8,10,["G4214"]],[10,12,["G3407"]],[12,14,["G3450"]],[14,15,["G3962"]],[15,21,["G4052","G740"]],[21,22,["G1161"]],[22,23,["G1473"]],[23,24,["G622"]],[24,26,["G3042"]]]},{"k":25606,"v":[[0,3,["G450"]],[3,5,["G4198"]],[5,6,["G4314"]],[6,7,["G3450"]],[7,8,["G3962"]],[8,9,["G2532"]],[9,11,["G2046"]],[11,13,["G846"]],[13,14,["G3962"]],[14,17,["G264"]],[17,18,["G1519"]],[18,19,["G3772"]],[19,20,["G2532"]],[20,21,["G1799"]],[21,22,["G4675"]]]},{"k":25607,"v":[[0,1,["G2532"]],[1,2,["G1510"]],[2,4,["G3765"]],[4,5,["G514"]],[5,8,["G2564"]],[8,9,["G4675"]],[9,10,["G5207"]],[10,11,["G4160"]],[11,12,["G3165"]],[12,13,["G5613"]],[13,14,["G1520"]],[14,16,["G4675"]],[16,18,["G3407"]]]},{"k":25608,"v":[[0,1,["G2532"]],[1,3,["G450"]],[3,5,["G2064"]],[5,6,["G4314"]],[6,7,["G1438"]],[7,8,["G3962"]],[8,9,["G1161"]],[9,11,["G846"]],[11,17,["G568","G2089","G3112"]],[17,18,["G846"]],[18,19,["G3962"]],[19,20,["G1492"]],[20,21,["G846"]],[21,22,["G2532"]],[22,24,["G4697"]],[24,25,["G2532"]],[25,26,["G5143"]],[26,28,["G1968"]],[28,29,["G1909"]],[29,30,["G846"]],[30,31,["G5137"]],[31,32,["G2532"]],[32,33,["G2705"]],[33,34,["G846"]]]},{"k":25609,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G3962"]],[7,10,["G264"]],[10,11,["G1519"]],[11,12,["G3772"]],[12,13,["G2532"]],[13,16,["G1799","G4675"]],[16,17,["G2532"]],[17,18,["G1510"]],[18,20,["G3765"]],[20,21,["G514"]],[21,24,["G2564"]],[24,25,["G4675"]],[25,26,["G5207"]]]},{"k":25610,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3962"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G848"]],[6,7,["G1401"]],[7,9,["G1627"]],[9,10,["G3588"]],[10,11,["G4413"]],[11,12,["G4749"]],[12,13,["G2532"]],[13,16,["G1746"]],[16,17,["G846"]],[17,18,["G2532"]],[18,19,["G1325"]],[19,21,["G1146"]],[21,22,["G1519"]],[22,23,["G846"]],[23,24,["G5495"]],[24,25,["G2532"]],[25,26,["G5266"]],[26,27,["G1519"]],[27,29,["G4228"]]]},{"k":25611,"v":[[0,1,["G2532"]],[1,3,["G5342"]],[3,4,["G3588"]],[4,5,["G4618"]],[5,6,["G3448"]],[6,8,["G2380"]],[8,10,["G2532"]],[10,13,["G5315"]],[13,16,["G2165"]]]},{"k":25612,"v":[[0,1,["G3754"]],[1,2,["G3778"]],[2,3,["G3450"]],[3,4,["G5207"]],[4,5,["G2258"]],[5,6,["G3498"]],[6,7,["G2532"]],[7,10,["G326"]],[10,12,["G2258"]],[12,13,["G622"]],[13,14,["G2532"]],[14,16,["G2147"]],[16,17,["G2532"]],[17,19,["G756"]],[19,22,["G2165"]]]},{"k":25613,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G4245"]],[3,4,["G5207"]],[4,5,["G2258"]],[5,6,["G1722"]],[6,8,["G68"]],[8,9,["G2532"]],[9,10,["G5613"]],[10,12,["G2064"]],[12,15,["G1448"]],[15,17,["G3588"]],[17,18,["G3614"]],[18,20,["G191"]],[20,21,["G4858"]],[21,22,["G2532"]],[22,23,["G5525"]]]},{"k":25614,"v":[[0,1,["G2532"]],[1,3,["G4341"]],[3,4,["G1520"]],[4,6,["G3588"]],[6,7,["G3816"]],[7,8,["G2532"]],[8,9,["G4441"]],[9,10,["G5101"]],[10,12,["G5023"]],[12,13,["G1498"]]]},{"k":25615,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G4675"]],[6,7,["G80"]],[7,9,["G2240"]],[9,10,["G2532"]],[10,11,["G4675"]],[11,12,["G3962"]],[12,14,["G2380"]],[14,15,["G3588"]],[15,16,["G4618"]],[16,17,["G3448"]],[17,18,["G3754"]],[18,21,["G618"]],[21,22,["G846"]],[22,25,["G5198"]]]},{"k":25616,"v":[[0,1,["G1161"]],[1,4,["G3710"]],[4,5,["G2532"]],[5,6,["G2309"]],[6,7,["G3756"]],[7,9,["G1525"]],[9,10,["G3767"]],[10,14,["G1831","G846","G3962"]],[14,15,["G2532"]],[15,16,["G3870"]],[16,17,["G846"]]]},{"k":25617,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,4,["G2036"]],[4,7,["G3962"]],[7,8,["G2400"]],[8,10,["G5118"]],[10,11,["G2094"]],[11,14,["G1398"]],[14,15,["G4671"]],[15,16,["G2532"]],[16,17,["G3928"]],[17,21,["G3763"]],[21,22,["G4675"]],[22,23,["G1785"]],[23,24,["G2532"]],[24,27,["G3763"]],[27,28,["G1325"]],[28,29,["G1698"]],[29,31,["G2056"]],[31,32,["G2443"]],[32,36,["G2165"]],[36,37,["G3326"]],[37,38,["G3450"]],[38,39,["G5384"]]]},{"k":25618,"v":[[0,1,["G1161"]],[1,4,["G3753"]],[4,5,["G3778"]],[5,6,["G4675"]],[6,7,["G5207"]],[7,9,["G2064"]],[9,12,["G2719"]],[12,14,["G979"]],[14,15,["G3326"]],[15,16,["G4204"]],[16,19,["G2380"]],[19,21,["G846"]],[21,22,["G3588"]],[22,23,["G4618"]],[23,24,["G3448"]]]},{"k":25619,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G5043"]],[6,7,["G4771"]],[7,8,["G1488"]],[8,9,["G3842"]],[9,10,["G3326"]],[10,11,["G1700"]],[11,12,["G2532"]],[12,13,["G3956"]],[13,16,["G1699"]],[16,17,["G2076"]],[17,18,["G4674"]]]},{"k":25620,"v":[[0,1,["(G1161)"]],[1,3,["G1163"]],[3,8,["G2165"]],[8,9,["G2532"]],[9,11,["G5463"]],[11,12,["G3754"]],[12,13,["G3778"]],[13,14,["G4675"]],[14,15,["G80"]],[15,16,["G2258"]],[16,17,["G3498"]],[17,18,["G2532"]],[18,21,["G326"]],[21,22,["G2532"]],[22,23,["G2258"]],[23,24,["G622"]],[24,25,["G2532"]],[25,27,["G2147"]]]},{"k":25621,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,4,["G2532"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G3101"]],[7,9,["G2258"]],[9,11,["G5100"]],[11,12,["G4145"]],[12,13,["G444"]],[13,14,["G3739"]],[14,15,["G2192"]],[15,17,["G3623"]],[17,18,["G2532"]],[18,20,["G3778"]],[20,22,["G1225"]],[22,24,["G846"]],[24,25,["G5613"]],[25,28,["G1287"]],[28,29,["G848"]],[29,30,["G5224"]]]},{"k":25622,"v":[[0,1,["G2532"]],[1,3,["G5455"]],[3,4,["G846"]],[4,6,["G2036"]],[6,8,["G846"]],[8,9,["G5101"]],[9,14,["G191"]],[14,15,["G5124"]],[15,16,["G4012"]],[16,17,["G4675"]],[17,18,["G591"]],[18,20,["G3056"]],[20,22,["G4675"]],[22,23,["G3622"]],[23,24,["G1063"]],[24,26,["G1410"]],[26,30,["G3621","G3756","G2089"]]]},{"k":25623,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3623"]],[3,4,["G2036"]],[4,5,["G1722"]],[5,6,["G1438"]],[6,7,["G5101"]],[7,10,["G4160"]],[10,11,["G3754"]],[11,12,["G3450"]],[12,13,["G2962"]],[13,15,["G851"]],[15,16,["G575"]],[16,17,["G1700"]],[17,18,["G3588"]],[18,19,["G3622"]],[19,21,["G2480","G3756"]],[21,22,["G4626"]],[22,24,["G1871"]],[24,27,["G153"]]]},{"k":25624,"v":[[0,3,["G1097"]],[3,4,["G5101"]],[4,6,["G4160"]],[6,7,["G2443"]],[7,8,["G3752"]],[8,12,["G3179"]],[12,14,["G3588"]],[14,15,["G3622"]],[15,18,["G1209"]],[18,19,["G3165"]],[19,20,["G1519"]],[20,21,["G848"]],[21,22,["G3624"]]]},{"k":25625,"v":[[0,1,["G2532"]],[1,3,["G4341"]],[3,4,["G1538"]],[4,5,["G1520"]],[5,7,["G1438"]],[7,8,["G2962"]],[8,9,["G5533"]],[9,13,["G3004"]],[13,15,["G3588"]],[15,16,["G4413"]],[16,18,["G4214"]],[18,19,["G3784"]],[19,22,["G3450"]],[22,23,["G2962"]]]},{"k":25626,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G1540"]],[5,6,["G943"]],[6,8,["G1637"]],[8,9,["G2532"]],[9,11,["G2036"]],[11,13,["G846"]],[13,14,["G1209"]],[14,15,["G4675"]],[15,16,["G1121"]],[16,17,["G2532"]],[17,19,["G2523"]],[19,20,["G5030"]],[20,22,["G1125"]],[22,23,["G4004"]]]},{"k":25627,"v":[[0,1,["G1899"]],[1,2,["G2036"]],[2,5,["G2087"]],[5,6,["G1161"]],[6,8,["G4214"]],[8,9,["G3784"]],[9,10,["G4771"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,13,["G2036"]],[13,15,["G1540"]],[15,16,["G2884"]],[16,18,["G4621"]],[18,19,["G2532"]],[19,21,["G3004"]],[21,23,["G846"]],[23,24,["G1209"]],[24,25,["G4675"]],[25,26,["G1121"]],[26,27,["G2532"]],[27,28,["G1125"]],[28,29,["G3589"]]]},{"k":25628,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G1867"]],[4,5,["G3588"]],[5,6,["G93"]],[6,7,["G3623"]],[7,8,["G3754"]],[8,11,["G4160"]],[11,12,["G5430"]],[12,13,["G3754"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,17,["G5127"]],[17,18,["G165"]],[18,19,["G1526"]],[19,20,["G1519"]],[20,21,["G1438"]],[21,22,["G1074"]],[22,23,["G5429"]],[23,24,["G5228"]],[24,25,["G3588"]],[25,26,["G5207"]],[26,28,["G5457"]]]},{"k":25629,"v":[[0,2,["G2504"]],[2,3,["G3004"]],[3,5,["G5213"]],[5,6,["G4160"]],[6,8,["G1438"]],[8,9,["G5384"]],[9,10,["G1537"]],[10,11,["G3588"]],[11,12,["G3126"]],[12,14,["G93"]],[14,15,["G2443"]],[15,16,["G3752"]],[16,18,["G1587"]],[18,21,["G1209"]],[21,22,["G5209"]],[22,23,["G1519"]],[23,24,["G166"]],[24,25,["G4633"]]]},{"k":25630,"v":[[0,4,["G4103"]],[4,5,["G1722"]],[5,9,["G1646"]],[9,10,["G2076"]],[10,11,["G4103"]],[11,12,["G2532"]],[12,13,["G1722"]],[13,14,["G4183"]],[14,15,["G2532"]],[15,19,["G94"]],[19,20,["G1722"]],[20,22,["G1646"]],[22,23,["G2076"]],[23,24,["G94"]],[24,25,["G2532"]],[25,26,["G1722"]],[26,27,["G4183"]]]},{"k":25631,"v":[[0,1,["G1487"]],[1,2,["G3767"]],[2,5,["G3756"]],[5,6,["G1096"]],[6,7,["G4103"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G94"]],[10,11,["G3126"]],[11,12,["G5101"]],[12,17,["G4100","G5213"]],[17,18,["G3588"]],[18,19,["G228"]],[19,20,[]]]},{"k":25632,"v":[[0,1,["G2532"]],[1,2,["G1487"]],[2,5,["G3756"]],[5,6,["G1096"]],[6,7,["G4103"]],[7,8,["G1722"]],[8,13,["G245"]],[13,14,["G5101"]],[14,16,["G1325"]],[16,17,["G5213"]],[17,22,["G5212"]]]},{"k":25633,"v":[[0,1,["G3762"]],[1,2,["G3610"]],[2,3,["G1410"]],[3,4,["G1398"]],[4,5,["G1417"]],[5,6,["G2962"]],[6,7,["G1063"]],[7,8,["G2228"]],[8,11,["G3404"]],[11,12,["G3588"]],[12,13,["G1520"]],[13,14,["G2532"]],[14,15,["G25"]],[15,16,["G3588"]],[16,17,["G2087"]],[17,19,["G2228"]],[19,23,["G472"]],[23,25,["G1520"]],[25,26,["G2532"]],[26,27,["G2706"]],[27,28,["G3588"]],[28,29,["G2087"]],[29,31,["G1410","G3756"]],[31,32,["G1398"]],[32,33,["G2316"]],[33,34,["G2532"]],[34,35,["G3126"]]]},{"k":25634,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,4,["G2532"]],[4,6,["G5225"]],[6,7,["G5366"]],[7,8,["G191"]],[8,9,["G3956"]],[9,11,["G5023"]],[11,12,["G2532"]],[12,14,["G1592"]],[14,15,["G846"]]]},{"k":25635,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G5210"]],[6,7,["G2075"]],[7,10,["G1344"]],[10,11,["G1438"]],[11,12,["G1799"]],[12,13,["G444"]],[13,14,["G1161"]],[14,15,["G2316"]],[15,16,["G1097"]],[16,17,["G5216"]],[17,18,["G2588"]],[18,19,["G3754"]],[19,24,["G5308"]],[24,25,["G1722"]],[25,26,["G444"]],[26,27,["G2076"]],[27,28,["G946"]],[28,31,["G1799"]],[31,33,["G2316"]]]},{"k":25636,"v":[[0,1,["G3588"]],[1,2,["G3551"]],[2,3,["G2532"]],[3,4,["G3588"]],[4,5,["G4396"]],[5,7,["G2193"]],[7,8,["G2491"]],[8,9,["G575"]],[9,11,["G5119"]],[11,12,["G3588"]],[12,13,["G932"]],[13,15,["G2316"]],[15,17,["G2097"]],[17,18,["G2532"]],[18,20,["G3956"]],[20,21,["G971"]],[21,22,["G1519"]],[22,23,["G846"]]]},{"k":25637,"v":[[0,1,["G1161"]],[1,3,["G2076"]],[3,4,["G2123"]],[4,6,["G3772"]],[6,7,["G2532"]],[7,8,["G1093"]],[8,10,["G3928"]],[10,11,["G2228"]],[11,12,["G3391"]],[12,13,["G2762"]],[13,15,["G3588"]],[15,16,["G3551"]],[16,18,["G4098"]]]},{"k":25638,"v":[[0,1,["G3956"]],[1,3,["G630"]],[3,4,["G848"]],[4,5,["G1135"]],[5,6,["G2532"]],[6,7,["G1060"]],[7,8,["G2087"]],[8,10,["G3431"]],[10,11,["G2532"]],[11,12,["G3956"]],[12,13,["G1060"]],[13,18,["G630"]],[18,19,["G575"]],[19,21,["G435"]],[21,23,["G3431"]]]},{"k":25639,"v":[[0,1,["(G1161)"]],[1,2,["G2258"]],[2,4,["G5100"]],[4,5,["G4145"]],[5,6,["G444"]],[6,7,["(G2532)"]],[7,9,["G1737"]],[9,11,["G4209"]],[11,12,["G2532"]],[12,14,["G1040"]],[14,16,["G2165"]],[16,17,["G2988"]],[17,19,["G2596","G2250"]]]},{"k":25640,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,5,["G5100"]],[5,6,["G4434"]],[6,7,["G3686"]],[7,8,["G2976"]],[8,9,["G3739"]],[9,11,["G906"]],[11,12,["G4314"]],[12,13,["G846"]],[13,14,["G4440"]],[14,17,["G1669"]]]},{"k":25641,"v":[[0,1,["G2532"]],[1,2,["G1937"]],[2,5,["G5526"]],[5,6,["G575"]],[6,7,["G3588"]],[7,8,["G5589"]],[8,10,["G4098"]],[10,11,["G575"]],[11,12,["G3588"]],[12,14,["G4145"]],[14,15,["G5132"]],[15,16,["G235","G2532"]],[16,17,["G3588"]],[17,18,["G2965"]],[18,19,["G2064"]],[19,21,["G621"]],[21,22,["G846"]],[22,23,["G1668"]]]},{"k":25642,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,7,["G3588"]],[7,8,["G4434"]],[8,9,["G599"]],[9,10,["G2532"]],[10,11,["(G846)"]],[11,12,["G667"]],[12,13,["G5259"]],[13,14,["G3588"]],[14,15,["G32"]],[15,16,["G1519"]],[16,17,["G11"]],[17,18,["G2859","(G1161)"]],[18,19,["G3588"]],[19,21,["G4145"]],[21,22,["G2532"]],[22,23,["G599"]],[23,24,["G2532"]],[24,26,["G2290"]]]},{"k":25643,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G86"]],[3,6,["G1869"]],[6,7,["G848"]],[7,8,["G3788"]],[8,9,["G5225"]],[9,10,["G1722"]],[10,11,["G931"]],[11,13,["G3708"]],[13,14,["G11"]],[14,16,["G575","G3113"]],[16,17,["G2532"]],[17,18,["G2976"]],[18,19,["G1722"]],[19,20,["G846"]],[20,21,["G2859"]]]},{"k":25644,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G5455"]],[3,5,["G2036"]],[5,6,["G3962"]],[6,7,["G11"]],[7,9,["G1653"]],[9,11,["G3165"]],[11,12,["G2532"]],[12,13,["G3992"]],[13,14,["G2976"]],[14,15,["G2443"]],[15,18,["G911"]],[18,19,["G3588"]],[19,20,["G206"]],[20,22,["G848"]],[22,23,["G1147"]],[23,25,["G5204"]],[25,26,["G2532"]],[26,27,["G2711"]],[27,28,["G3450"]],[28,29,["G1100"]],[29,30,["G3754"]],[30,33,["G3600"]],[33,34,["G1722"]],[34,35,["G5026"]],[35,36,["G5395"]]]},{"k":25645,"v":[[0,1,["G1161"]],[1,2,["G11"]],[2,3,["G2036"]],[3,4,["G5043"]],[4,5,["G3415"]],[5,6,["G3754"]],[6,7,["G4771"]],[7,8,["G1722"]],[8,9,["G4675"]],[9,10,["G2222"]],[10,11,["G618"]],[11,12,["G4675"]],[12,14,["G18"]],[14,15,["G2532"]],[15,16,["G3668"]],[16,17,["G2976"]],[17,19,["G2556"]],[19,20,["G1161"]],[20,21,["G3568"]],[21,22,["G3592"]],[22,24,["G3870"]],[24,25,["G1161"]],[25,26,["G4771"]],[26,28,["G3600"]]]},{"k":25646,"v":[[0,1,["G2532"]],[1,2,["G1909"]],[2,3,["G3956"]],[3,4,["G5125"]],[4,5,["G3342"]],[5,6,["G2257"]],[6,7,["G2532"]],[7,8,["G5216"]],[8,12,["G3173"]],[12,13,["G5490"]],[13,14,["G4741"]],[14,16,["G3704"]],[16,19,["G2309"]],[19,20,["G1224"]],[20,22,["G1782"]],[22,23,["G4314"]],[23,24,["G5209"]],[24,25,["G1410","G3361"]],[25,26,["G3366"]],[26,29,["G1276"]],[29,30,["G4314"]],[30,31,["G2248"]],[31,36,["G1564"]]]},{"k":25647,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G2065"]],[5,6,["G4571"]],[6,7,["G3767"]],[7,8,["G3962"]],[8,9,["G2443"]],[9,12,["G3992"]],[12,13,["G846"]],[13,14,["G1519"]],[14,15,["G3450"]],[15,16,["G3962"]],[16,17,["G3624"]]]},{"k":25648,"v":[[0,1,["G1063"]],[1,3,["G2192"]],[3,4,["G4002"]],[4,5,["G80"]],[5,6,["G3704"]],[6,9,["G1263"]],[9,11,["G846"]],[11,12,["G3363"]],[12,13,["G846"]],[13,14,["G2532"]],[14,15,["G2064"]],[15,16,["G1519"]],[16,17,["G5126"]],[17,18,["G5117"]],[18,20,["G931"]]]},{"k":25649,"v":[[0,1,["G11"]],[1,2,["G3004"]],[2,4,["G846"]],[4,6,["G2192"]],[6,7,["G3475"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G4396"]],[10,13,["G191"]],[13,14,["G846"]]]},{"k":25650,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G3780"]],[4,5,["G3962"]],[5,6,["G11"]],[6,7,["G235"]],[7,8,["G1437"]],[8,9,["G5100"]],[9,10,["G4198"]],[10,11,["G4314"]],[11,12,["G846"]],[12,13,["G575"]],[13,15,["G3498"]],[15,18,["G3340"]]]},{"k":25651,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G846"]],[5,8,["G191"]],[8,9,["G3756"]],[9,10,["G3475"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G4396"]],[13,14,["G3756"]],[14,18,["G3982"]],[18,19,["G3761","G1437"]],[19,20,["G5100"]],[20,21,["G450"]],[21,22,["G1537"]],[22,24,["G3498"]]]},{"k":25652,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,4,["G4314"]],[4,5,["G3588"]],[5,6,["G3101"]],[6,8,["G2076"]],[8,9,["G418"]],[9,11,["G3361"]],[11,12,["G4625"]],[12,14,["G2064"]],[14,15,["G1161"]],[15,16,["G3759"]],[16,19,["G1223"]],[19,20,["G3739"]],[20,22,["G2064"]]]},{"k":25653,"v":[[0,3,["G3081"]],[3,5,["G846"]],[5,6,["G1487"]],[6,8,["G3458","G3684"]],[8,10,["G4029"]],[10,11,["G4012"]],[11,12,["G846"]],[12,13,["G5137"]],[13,14,["G2532"]],[14,16,["G4496"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,19,["G2281"]],[19,20,["G2228"]],[20,21,["G2443"]],[21,24,["G4624"]],[24,25,["G1520"]],[25,27,["G5130"]],[27,29,["G3398"]]]},{"k":25654,"v":[[0,2,["G4337"]],[2,4,["G1438","(G1161)"]],[4,5,["G1437"]],[5,6,["G4675"]],[6,7,["G80"]],[7,8,["G264"]],[8,9,["G1519"]],[9,10,["G4571"]],[10,11,["G2008"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G1437"]],[14,16,["G3340"]],[16,17,["G863"]],[17,18,["G846"]]]},{"k":25655,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G264"]],[4,5,["G1519"]],[5,6,["G4571"]],[6,8,["G2034"]],[8,11,["G2250"]],[11,12,["G2532"]],[12,14,["G2034"]],[14,17,["G2250"]],[17,19,["G1994"]],[19,20,["G1909"]],[20,21,["G4571"]],[21,22,["G3004"]],[22,24,["G3340"]],[24,27,["G863"]],[27,28,["G846"]]]},{"k":25656,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G652"]],[3,4,["G2036"]],[4,6,["G3588"]],[6,7,["G2962"]],[7,8,["G4369"]],[8,9,["G2254"]],[9,10,["G4102"]]]},{"k":25657,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2036"]],[4,5,["G1487"]],[5,7,["G2192"]],[7,8,["G4102"]],[8,9,["G5613"]],[9,11,["G2848"]],[11,14,["G4615"]],[14,17,["G3004","G302"]],[17,19,["G5026"]],[19,21,["G4807"]],[21,28,["G1610"]],[28,29,["G2532"]],[29,32,["G5452"]],[32,33,["G1722"]],[33,34,["G3588"]],[34,35,["G2281"]],[35,36,["G2532"]],[36,39,["G5219","G302"]],[39,40,["G5213"]]]},{"k":25658,"v":[[0,1,["G1161"]],[1,2,["G5101"]],[2,3,["G1537"]],[3,4,["G5216"]],[4,5,["G2192"]],[5,7,["G1401"]],[7,8,["G722"]],[8,9,["G2228"]],[9,11,["G4165"]],[11,13,["G2046"]],[13,18,["G2112"]],[18,22,["G1525"]],[22,23,["G1537"]],[23,24,["G3588"]],[24,25,["G68"]],[25,26,["G3928"]],[26,31,["G377"]]]},{"k":25659,"v":[[0,1,["G235"]],[1,3,["G3780"]],[3,5,["G2046"]],[5,7,["G846"]],[7,9,["G2090"]],[9,10,["G5101"]],[10,13,["G1172"]],[13,14,["G2532"]],[14,15,["G4024"]],[15,18,["G1247"]],[18,19,["G3427"]],[19,20,["G2193"]],[20,23,["G5315"]],[23,24,["G2532"]],[24,25,["G4095"]],[25,26,["G2532"]],[26,27,["G3326","G5023"]],[27,28,["G4771"]],[28,30,["G5315"]],[30,31,["G2532"]],[31,32,["G4095"]]]},{"k":25660,"v":[[0,3,["G2192","G3361","G5485"]],[3,4,["G1565"]],[4,5,["G1401"]],[5,6,["G3754"]],[6,8,["G4160"]],[8,13,["G1299"]],[13,14,["G846"]],[14,16,["G1380"]],[16,17,["G3756"]]]},{"k":25661,"v":[[0,2,["G3779","(G2532)"]],[2,3,["G5210"]],[3,4,["G3752"]],[4,8,["G4160"]],[8,9,["G3956"]],[9,14,["G1299"]],[14,15,["G5213"]],[15,16,["G3004"]],[16,18,["G2070"]],[18,19,["G888"]],[19,20,["G1401"]],[20,21,["(G3754)"]],[21,23,["G4160"]],[23,25,["G3739"]],[25,28,["G3784"]],[28,30,["G4160"]]]},{"k":25662,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G846"]],[7,8,["G4198"]],[8,9,["G1519"]],[9,10,["G2419"]],[10,11,["G2532"]],[11,12,["G846"]],[12,13,["G1330"]],[13,14,["G1223"]],[14,16,["G3319"]],[16,18,["G4540"]],[18,19,["G2532"]],[19,20,["G1056"]]]},{"k":25663,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,4,["G1525"]],[4,5,["G1519"]],[5,7,["G5100"]],[7,8,["G2968"]],[8,10,["G528"]],[10,11,["G846"]],[11,12,["G1176"]],[12,13,["G435"]],[13,16,["G3015"]],[16,17,["G3739"]],[17,18,["G2476"]],[18,20,["G4207"]]]},{"k":25664,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,4,["G142"]],[4,6,["G5456"]],[6,8,["G3004"]],[8,9,["G2424"]],[9,10,["G1988"]],[10,12,["G1653"]],[12,14,["G2248"]]]},{"k":25665,"v":[[0,1,["G2532"]],[1,4,["G1492"]],[4,7,["G2036"]],[7,9,["G846"]],[9,10,["G4198"]],[10,11,["G1925"]],[11,12,["G1438"]],[12,14,["G3588"]],[14,15,["G2409"]],[15,16,["G2532"]],[16,20,["G1096"]],[20,23,["G846"]],[23,24,["G5217"]],[24,27,["G2511"]]]},{"k":25666,"v":[[0,1,["G1161"]],[1,2,["G1520"]],[2,3,["G1537"]],[3,4,["G846"]],[4,7,["G1492"]],[7,8,["G3754"]],[8,11,["G2390"]],[11,13,["G5290"]],[13,15,["G3326"]],[15,17,["G3173"]],[17,18,["G5456"]],[18,19,["G1392"]],[19,20,["G2316"]]]},{"k":25667,"v":[[0,1,["G2532"]],[1,3,["G4098"]],[3,4,["G1909"]],[4,6,["G4383"]],[6,7,["G3844"]],[7,8,["G846"]],[8,9,["G4228"]],[9,12,["G2168","G846"]],[12,13,["G2532"]],[13,14,["G846"]],[14,15,["G2258"]],[15,17,["G4541"]]]},{"k":25668,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,7,["G3780"]],[7,8,["G1176"]],[8,9,["G2511"]],[9,10,["G1161"]],[10,11,["G4226"]],[11,13,["G3588"]],[13,14,["G1767"]]]},{"k":25669,"v":[[0,3,["G3756"]],[3,4,["G2147"]],[4,6,["G5290"]],[6,8,["G1325"]],[8,9,["G1391"]],[9,11,["G2316"]],[11,12,["G1508"]],[12,13,["G3778"]],[13,14,["G241"]]]},{"k":25670,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G450"]],[6,9,["G4198"]],[9,10,["G4675"]],[10,11,["G4102"]],[11,15,["G4982","G4571"]]]},{"k":25671,"v":[[0,1,["G1161"]],[1,5,["G1905"]],[5,6,["G5259"]],[6,7,["G3588"]],[7,8,["G5330"]],[8,9,["G4219"]],[9,10,["G3588"]],[10,11,["G932"]],[11,13,["G2316"]],[13,15,["G2064"]],[15,17,["G611"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G2036"]],[20,21,["G3588"]],[21,22,["G932"]],[22,24,["G2316"]],[24,25,["G2064"]],[25,26,["G3756"]],[26,27,["G3326"]],[27,28,["G3907"]]]},{"k":25672,"v":[[0,1,["G3761"]],[1,4,["G2046"]],[4,5,["G2400"]],[5,6,["G5602"]],[6,7,["G2228"]],[7,8,["G2400"]],[8,9,["G1563"]],[9,10,["G1063"]],[10,11,["G2400"]],[11,12,["G3588"]],[12,13,["G932"]],[13,15,["G2316"]],[15,16,["G2076"]],[16,17,["G1787"]],[17,18,["G5216"]]]},{"k":25673,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G3588"]],[5,6,["G3101"]],[6,8,["G2250"]],[8,10,["G2064"]],[10,11,["G3753"]],[11,14,["G1937"]],[14,16,["G1492"]],[16,17,["G3391"]],[17,19,["G3588"]],[19,20,["G2250"]],[20,22,["G3588"]],[22,23,["G5207"]],[23,25,["G444"]],[25,26,["G2532"]],[26,29,["G3756"]],[29,30,["G3700"]],[30,31,[]]]},{"k":25674,"v":[[0,1,["G2532"]],[1,4,["G2046"]],[4,6,["G5213"]],[6,7,["G2400"]],[7,8,["G5602"]],[8,9,["G2228"]],[9,10,["G2400"]],[10,11,["G1563"]],[11,14,["G565","G3361"]],[14,16,["G3366"]],[16,17,["G1377"]],[17,18,[]]]},{"k":25675,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G3588"]],[3,4,["G796"]],[4,6,["G797"]],[6,7,["G1537"]],[7,10,["G3588"]],[10,12,["G5259"]],[12,13,["G3772"]],[13,14,["G2989"]],[14,15,["G1519"]],[15,17,["G3588"]],[17,19,["G5259"]],[19,20,["G3772"]],[20,21,["G3779"]],[21,23,["G2532"]],[23,24,["G3588"]],[24,25,["G5207"]],[25,27,["G444"]],[27,28,["G2071"]],[28,29,["G1722"]],[29,30,["G848"]],[30,31,["G2250"]]]},{"k":25676,"v":[[0,1,["G1161"]],[1,2,["G4412"]],[2,3,["G1163"]],[3,4,["G846"]],[4,5,["G3958"]],[5,7,["G4183"]],[7,8,["G2532"]],[8,10,["G593"]],[10,11,["G575"]],[11,12,["G5026"]],[12,13,["G1074"]]]},{"k":25677,"v":[[0,1,["G2532"]],[1,2,["G2531"]],[2,4,["G1096"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G2250"]],[7,9,["G3575"]],[9,10,["G3779"]],[10,13,["G2071"]],[13,14,["G2532"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G2250"]],[17,19,["G3588"]],[19,20,["G5207"]],[20,22,["G444"]]]},{"k":25678,"v":[[0,3,["G2068"]],[3,5,["G4095"]],[5,8,["G1060"]],[8,13,["G1547"]],[13,14,["G891"]],[14,15,["(G3739)"]],[15,16,["G2250"]],[16,18,["G3575"]],[18,19,["G1525"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G2787"]],[22,23,["G2532"]],[23,24,["G3588"]],[24,25,["G2627"]],[25,26,["G2064"]],[26,27,["G2532"]],[27,28,["G622"]],[28,30,["G537"]]]},{"k":25679,"v":[[0,1,["G3668"]],[1,2,["G2532"]],[2,3,["G5613"]],[3,5,["G1096"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G2250"]],[8,10,["G3091"]],[10,13,["G2068"]],[13,15,["G4095"]],[15,17,["G59"]],[17,19,["G4453"]],[19,21,["G5452"]],[21,23,["G3618"]]]},{"k":25680,"v":[[0,1,["G1161"]],[1,3,["G3739"]],[3,4,["G2250"]],[4,6,["G3091"]],[6,8,["G1831"]],[8,9,["G575"]],[9,10,["G4670"]],[10,12,["G1026"]],[12,13,["G4442"]],[13,14,["G2532"]],[14,15,["G2303"]],[15,16,["G575"]],[16,17,["G3772"]],[17,18,["G2532"]],[18,19,["G622"]],[19,21,["G537"]]]},{"k":25681,"v":[[0,2,["G2596","G5024"]],[2,5,["G2071"]],[5,7,["(G3739)"]],[7,8,["G2250"]],[8,10,["G3588"]],[10,11,["G5207"]],[11,13,["G444"]],[13,15,["G601"]]]},{"k":25682,"v":[[0,1,["G1722"]],[1,2,["G1565"]],[2,3,["G2250"]],[3,5,["G3739"]],[5,7,["G2071"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,10,["G1430"]],[10,11,["G2532"]],[11,12,["G846"]],[12,13,["G4632"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G3614"]],[16,19,["G3361"]],[19,21,["G2597"]],[21,25,["G142","G846"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,30,["G1722"]],[30,31,["G3588"]],[31,32,["G68"]],[32,35,["G3668"]],[35,36,["G3361"]],[36,37,["G1994"]],[37,38,["G1519","G3694"]]]},{"k":25683,"v":[[0,1,["G3421"]],[1,2,["G3091"]],[2,3,["G1135"]]]},{"k":25684,"v":[[0,1,["G3739","G1437"]],[1,3,["G2212"]],[3,5,["G4982"]],[5,6,["G848"]],[6,7,["G5590"]],[7,9,["G622"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G3739","G1437"]],[12,14,["G622"]],[14,15,["G848"]],[15,18,["G2225"]],[18,19,["G846"]]]},{"k":25685,"v":[[0,2,["G3004"]],[2,3,["G5213"]],[3,5,["G5026"]],[5,6,["G3571"]],[6,9,["G2071"]],[9,10,["G1417"]],[10,12,["G1909"]],[12,13,["G3391"]],[13,14,["G2825"]],[14,15,["G3588"]],[15,16,["G1520"]],[16,19,["G3880"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G2087"]],[22,25,["G863"]]]},{"k":25686,"v":[[0,1,["G1417"]],[1,4,["G2071"]],[4,5,["G229"]],[5,6,["G1909","G846"]],[6,7,["G3588"]],[7,8,["G3391"]],[8,11,["G3880"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G2087"]],[14,15,["G863"]]]},{"k":25687,"v":[[0,1,["G1417"]],[1,4,["G2071"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G68"]],[7,8,["G3588"]],[8,9,["G1520"]],[9,12,["G3880"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G2087"]],[15,16,["G863"]]]},{"k":25688,"v":[[0,1,["G2532"]],[1,3,["G611"]],[3,5,["G3004"]],[5,7,["G846"]],[7,8,["G4226"]],[8,9,["G2962"]],[9,10,["G1161"]],[10,11,["G3588"]],[11,12,["G2036"]],[12,14,["G846"]],[14,15,["G3699"]],[15,16,["G3588"]],[16,17,["G4983"]],[17,19,["G1563"]],[19,21,["G3588"]],[21,22,["G105"]],[22,25,["G4863"]]]},{"k":25689,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,4,["(G2532)"]],[4,5,["G3850"]],[5,7,["G846"]],[7,13,["G1163"]],[13,14,["G3842"]],[14,16,["G4336"]],[16,17,["G2532"]],[17,18,["G3361"]],[18,20,["G1573"]]]},{"k":25690,"v":[[0,1,["G3004"]],[1,3,["G2258"]],[3,4,["G1722"]],[4,5,["(G5100)"]],[5,6,["G4172"]],[6,7,["(G5100)"]],[7,8,["G2923"]],[8,10,["G5399"]],[10,11,["G3361"]],[11,12,["G2316"]],[12,13,["G2532","G3361"]],[13,14,["G1788"]],[14,15,["G444"]]]},{"k":25691,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,5,["G5503"]],[5,6,["G1722"]],[6,7,["G1565"]],[7,8,["G4172"]],[8,9,["G2532"]],[9,11,["G2064"]],[11,12,["G4314"]],[12,13,["G846"]],[13,14,["G3004"]],[14,15,["G1556"]],[15,16,["G3165"]],[16,17,["G575"]],[17,18,["G3450"]],[18,19,["G476"]]]},{"k":25692,"v":[[0,1,["G2532"]],[1,3,["G2309"]],[3,4,["G3756"]],[4,7,["G1909","G5550"]],[7,8,["G1161"]],[8,9,["G3326","G5023"]],[9,11,["G2036"]],[11,12,["G1722"]],[12,13,["G1438"]],[13,14,["G1499"]],[14,16,["G5399"]],[16,17,["G3756"]],[17,18,["G2316"]],[18,19,["G2532","G3756"]],[19,20,["G1788"]],[20,21,["G444"]]]},{"k":25693,"v":[[0,1,["G1065"]],[1,3,["G5026"]],[3,4,["G5503"]],[4,5,["G3930","G2873"]],[5,6,["G3427"]],[6,9,["G1556"]],[9,10,["G846"]],[10,11,["G3363"]],[11,14,["G1519","G5056"]],[14,15,["G2064"]],[15,17,["G5299"]],[17,18,["G3165"]]]},{"k":25694,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2036"]],[4,5,["G191"]],[5,6,["G5101"]],[6,7,["G3588"]],[7,8,["G93"]],[8,9,["G2923"]],[9,10,["G3004"]]]},{"k":25695,"v":[[0,1,["G1161"]],[1,3,["G3364"]],[3,4,["G2316"]],[4,5,["G4160","G1557"]],[5,7,["G848"]],[7,8,["G1588"]],[8,10,["G994"]],[10,11,["G2250"]],[11,12,["G2532"]],[12,13,["G3571"]],[13,14,["G4314"]],[14,15,["G846"]],[15,16,["G2532"]],[16,19,["G3114"]],[19,20,["G1909"]],[20,21,["G846"]]]},{"k":25696,"v":[[0,2,["G3004"]],[2,3,["G5213"]],[3,4,["G3754"]],[4,7,["G4160","G1557"]],[7,8,["G846"]],[8,9,["G1722","G5034"]],[9,10,["G4133"]],[10,12,["G3588"]],[12,13,["G5207"]],[13,15,["G444"]],[15,16,["G2064"]],[16,17,["(G687)"]],[17,19,["G2147"]],[19,20,["G4102"]],[20,21,["G1909"]],[21,22,["G3588"]],[22,23,["G1093"]]]},{"k":25697,"v":[[0,1,["G1161"]],[1,3,["G2036","(G2532)"]],[3,4,["G5026"]],[4,5,["G3850"]],[5,6,["G4314"]],[6,7,["G5100"]],[7,9,["G3982"]],[9,10,["G1909"]],[10,11,["G1438"]],[11,12,["G3754"]],[12,14,["G1526"]],[14,15,["G1342"]],[15,16,["G2532"]],[16,17,["G1848"]],[17,18,["G3062"]]]},{"k":25698,"v":[[0,1,["G1417"]],[1,2,["G444"]],[2,4,["G305"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G2411"]],[7,9,["G4336"]],[9,10,["G3588"]],[10,11,["G1520"]],[11,13,["G5330"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G2087"]],[16,18,["G5057"]]]},{"k":25699,"v":[[0,1,["G3588"]],[1,2,["G5330"]],[2,3,["G2476"]],[3,5,["G4336"]],[5,6,["G5023"]],[6,7,["G4314"]],[7,8,["G1438"]],[8,9,["G2316"]],[9,11,["G2168"]],[11,12,["G4671"]],[12,13,["G3754"]],[13,15,["G1510"]],[15,16,["G3756"]],[16,17,["G5618"]],[17,18,["G3062"]],[18,19,["G444"]],[19,21,["G727"]],[21,22,["G94"]],[22,23,["G3432"]],[23,24,["G2228"]],[24,25,["G2532"]],[25,26,["G5613"]],[26,27,["G3778"]],[27,28,["G5057"]]]},{"k":25700,"v":[[0,2,["G3522"]],[2,3,["G1364"]],[3,5,["G3588"]],[5,6,["G4521"]],[6,9,["G586"]],[9,11,["G3956"]],[11,12,["G3745"]],[12,14,["G2932"]]]},{"k":25701,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5057"]],[3,4,["G2476"]],[4,6,["G3113"]],[6,7,["G2309"]],[7,8,["G3756"]],[8,10,["G1869"]],[10,13,["G3761"]],[13,15,["G3788"]],[15,16,["G1519"]],[16,17,["G3772"]],[17,18,["G235"]],[18,19,["G5180"]],[19,20,["G1519"]],[20,21,["G848"]],[21,22,["G4738"]],[22,23,["G3004"]],[23,24,["G2316"]],[24,26,["G2433"]],[26,28,["G3427"]],[28,30,["G268"]]]},{"k":25702,"v":[[0,2,["G3004"]],[2,3,["G5213"]],[3,5,["G3778"]],[5,7,["G2597"]],[7,8,["G1519"]],[8,9,["G848"]],[9,10,["G3624"]],[10,11,["G1344"]],[11,13,["G2228"]],[13,15,["G1565"]],[15,16,["G3754"]],[16,18,["G3956"]],[18,20,["G5312"]],[20,21,["G1438"]],[21,24,["G5013"]],[24,25,["G1161"]],[25,28,["G5013"]],[28,29,["G1438"]],[29,32,["G5312"]]]},{"k":25703,"v":[[0,1,["G1161"]],[1,3,["G4374"]],[3,5,["G846"]],[5,6,["G2532"]],[6,7,["G1025"]],[7,8,["G2443"]],[8,11,["G680"]],[11,12,["G846"]],[12,13,["G1161"]],[13,16,["G3101"]],[16,17,["G1492"]],[17,20,["G2008"]],[20,21,["G846"]]]},{"k":25704,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G4341"]],[3,4,["G846"]],[4,8,["G2036"]],[8,9,["G863"]],[9,11,["G3813"]],[11,13,["G2064"]],[13,14,["G4314"]],[14,15,["G3165"]],[15,16,["G2532"]],[16,17,["G2967"]],[17,18,["G846"]],[18,19,["G3361"]],[19,20,["G1063"]],[20,22,["G5108"]],[22,23,["G2076"]],[23,24,["G3588"]],[24,25,["G932"]],[25,27,["G2316"]]]},{"k":25705,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3739","G1437"]],[6,8,["G3361"]],[8,9,["G1209"]],[9,10,["G3588"]],[10,11,["G932"]],[11,13,["G2316"]],[13,14,["G5613"]],[14,17,["G3813"]],[17,21,["G3364"]],[21,22,["G1525"]],[22,23,["G1519","G846"]]]},{"k":25706,"v":[[0,1,["G2532"]],[1,3,["G5100"]],[3,4,["G758"]],[4,5,["G1905"]],[5,6,["G846"]],[6,7,["G3004"]],[7,8,["G18"]],[8,9,["G1320"]],[9,10,["G5101"]],[10,13,["G4160"]],[13,15,["G2816"]],[15,16,["G166"]],[16,17,["G2222"]]]},{"k":25707,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G5101"]],[6,7,["G3004"]],[7,9,["G3165"]],[9,10,["G18"]],[10,11,["G3762"]],[11,13,["G18"]],[13,14,["G1508"]],[14,15,["G1520"]],[15,18,["G2316"]]]},{"k":25708,"v":[[0,2,["G1492"]],[2,3,["G3588"]],[3,4,["G1785"]],[4,6,["G3361"]],[6,8,["G3431"]],[8,10,["G3361"]],[10,11,["G5407"]],[11,13,["G3361"]],[13,14,["G2813"]],[14,16,["G3361"]],[16,19,["G5576"]],[19,20,["G5091"]],[20,21,["G4675"]],[21,22,["G3962"]],[22,23,["G2532"]],[23,24,["G4675"]],[24,25,["G3384"]]]},{"k":25709,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G3956"]],[4,5,["G5023"]],[5,8,["G5442"]],[8,9,["G1537"]],[9,10,["G3450"]],[10,11,["G3503"]],[11,12,[]]]},{"k":25710,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,4,["G191"]],[4,6,["G5023"]],[6,8,["G2036"]],[8,10,["G846"]],[10,11,["G2089"]],[11,12,["G3007"]],[12,13,["G4671"]],[13,15,["G1520"]],[15,16,["G4453"]],[16,17,["G3956"]],[17,18,["G3745"]],[18,20,["G2192"]],[20,21,["G2532"]],[21,22,["G1239"]],[22,25,["G4434"]],[25,26,["G2532"]],[26,29,["G2192"]],[29,30,["G2344"]],[30,31,["G1722"]],[31,32,["G3772"]],[32,33,["G2532"]],[33,34,["G1204"]],[34,35,["G190"]],[35,36,["G3427"]]]},{"k":25711,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G191"]],[4,5,["G5023"]],[5,7,["G1096"]],[7,9,["G4036"]],[9,10,["G1063"]],[10,12,["G2258"]],[12,13,["G4970"]],[13,14,["G4145"]]]},{"k":25712,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,4,["G1492"]],[4,6,["G846"]],[6,7,["G1096"]],[7,9,["G4036"]],[9,11,["G2036"]],[11,12,["G4459"]],[12,13,["G1423"]],[13,17,["G2192"]],[17,18,["G5536"]],[18,19,["G1525"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G932"]],[22,24,["G2316"]]]},{"k":25713,"v":[[0,1,["G1063"]],[1,3,["G2076"]],[3,4,["G2123"]],[4,7,["G2574"]],[7,9,["G1525"]],[9,10,["G1223"]],[10,12,["G4476"]],[12,13,["G5168"]],[13,14,["G2228"]],[14,18,["G4145"]],[18,20,["G1525"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G932"]],[23,25,["G2316"]]]},{"k":25714,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,6,["G2036"]],[6,7,["G5101"]],[7,8,["G2532"]],[8,9,["G1410"]],[9,11,["G4982"]]]},{"k":25715,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,8,["G102"]],[8,9,["G3844"]],[9,10,["G444"]],[10,11,["G2076"]],[11,12,["G1415"]],[12,13,["G3844"]],[13,14,["G2316"]]]},{"k":25716,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2036"]],[3,4,["G2400"]],[4,5,["G2249"]],[5,7,["G863"]],[7,8,["G3956"]],[8,9,["G2532"]],[9,10,["G190"]],[10,11,["G4671"]]]},{"k":25717,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G281"]],[6,8,["G3004"]],[8,10,["G5213"]],[10,12,["G2076"]],[12,14,["G3762"]],[14,15,["G3739"]],[15,17,["G863"]],[17,18,["G3614"]],[18,19,["G2228"]],[19,20,["G1118"]],[20,21,["G2228"]],[21,22,["G80"]],[22,23,["G2228"]],[23,24,["G1135"]],[24,25,["G2228"]],[25,26,["G5043"]],[26,32,["G1752","G3588","G932","G2316"]]]},{"k":25718,"v":[[0,1,["G3739"]],[1,3,["G3364"]],[3,4,["G618"]],[4,6,["G4179"]],[6,7,["G1722"]],[7,8,["G5129"]],[8,10,["G2540"]],[10,11,["G2532"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G165"]],[14,16,["G2064"]],[16,17,["G2222"]],[17,18,["G166"]]]},{"k":25719,"v":[[0,1,["G1161"]],[1,3,["G3880"]],[3,6,["G3588"]],[6,7,["G1427"]],[7,9,["G2036"]],[9,10,["G4314"]],[10,11,["G846"]],[11,12,["G2400"]],[12,15,["G305"]],[15,16,["G1519"]],[16,17,["G2414"]],[17,18,["G2532"]],[18,20,["G3956"]],[20,23,["G1125"]],[23,24,["G1223"]],[24,25,["G3588"]],[25,26,["G4396"]],[26,28,["G3588"]],[28,29,["G5207"]],[29,31,["G444"]],[31,34,["G5055"]]]},{"k":25720,"v":[[0,1,["G1063"]],[1,5,["G3860"]],[5,7,["G3588"]],[7,8,["G1484"]],[8,9,["G2532"]],[9,12,["G1702"]],[12,13,["G2532"]],[13,15,["G5195"]],[15,16,["G2532"]],[16,18,["G1716"]]]},{"k":25721,"v":[[0,1,["G2532"]],[1,4,["G3146"]],[4,10,["G615","G846"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G5154"]],[13,14,["G2250"]],[14,18,["G450"]]]},{"k":25722,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G4920"]],[3,4,["G3762"]],[4,7,["G5130"]],[7,8,["G2532"]],[8,9,["G5124"]],[9,10,["G4487"]],[10,11,["G2258"]],[11,12,["G2928"]],[12,13,["G575"]],[13,14,["G846"]],[14,15,["G2532","G3756"]],[15,16,["G1097"]],[16,22,["G3004"]]]},{"k":25723,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,8,["G846"]],[8,11,["G1448"]],[11,12,["G1519"]],[12,13,["G2410"]],[13,15,["G5100"]],[15,17,["G5185"]],[17,18,["G2521"]],[18,19,["G3844"]],[19,20,["G3588"]],[20,22,["G3598"]],[22,23,["G4319"]]]},{"k":25724,"v":[[0,1,["G1161"]],[1,2,["G191"]],[2,4,["G3793"]],[4,6,["G1279"]],[6,8,["G4441"]],[8,9,["G5101"]],[9,10,["G5124"]],[10,11,["G1498"]]]},{"k":25725,"v":[[0,1,["G1161"]],[1,3,["G518"]],[3,4,["G846"]],[4,5,["G3754"]],[5,6,["G2424"]],[6,8,["G3480"]],[8,10,["G3928"]]]},{"k":25726,"v":[[0,1,["G2532"]],[1,3,["G994"]],[3,4,["G3004"]],[4,5,["G2424"]],[5,7,["G5207"]],[7,9,["G1138"]],[9,11,["G1653"]],[11,13,["G3165"]]]},{"k":25727,"v":[[0,1,["G2532"]],[1,5,["G4254"]],[5,6,["G2008"]],[6,7,["G846"]],[7,8,["G2443"]],[8,13,["G4623"]],[13,14,["G1161"]],[14,15,["G846"]],[15,16,["G2896"]],[16,18,["G4183"]],[18,20,["G3123"]],[20,22,["G5207"]],[22,24,["G1138"]],[24,26,["G1653"]],[26,28,["G3165"]]]},{"k":25728,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2476"]],[3,5,["G2753"]],[5,6,["G846"]],[6,9,["G71"]],[9,10,["G4314"]],[10,11,["G846"]],[11,12,["G1161"]],[12,14,["G846"]],[14,17,["G1448"]],[17,19,["G1905"]],[19,20,["G846"]]]},{"k":25729,"v":[[0,1,["G3004"]],[1,2,["G5101"]],[2,3,["G2309"]],[3,8,["G4160"]],[8,10,["G4671"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,13,["G2036"]],[13,14,["G2962"]],[14,15,["G2443"]],[15,20,["G308"]]]},{"k":25730,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,8,["G308"]],[8,9,["G4675"]],[9,10,["G4102"]],[10,12,["G4982"]],[12,13,["G4571"]]]},{"k":25731,"v":[[0,1,["G2532"]],[1,2,["G3916"]],[2,6,["G308"]],[6,7,["G2532"]],[7,8,["G190"]],[8,9,["G846"]],[9,10,["G1392"]],[10,11,["G2316"]],[11,12,["G2532"]],[12,13,["G3956"]],[13,14,["G3588"]],[14,15,["G2992"]],[15,18,["G1492"]],[18,20,["G1325"]],[20,21,["G136"]],[21,23,["G2316"]]]},{"k":25732,"v":[[0,1,["G2532"]],[1,3,["G1525"]],[3,6,["G1330"]],[6,7,["G2410"]]]},{"k":25733,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,6,["G435"]],[6,7,["G3686","G2564"]],[7,8,["G2195","(G2532)"]],[8,9,["G846"]],[9,10,["G2258"]],[10,15,["G754"]],[15,16,["G2532"]],[16,17,["G3778"]],[17,18,["G2258"]],[18,19,["G4145"]]]},{"k":25734,"v":[[0,1,["G2532"]],[1,3,["G2212"]],[3,5,["G1492"]],[5,6,["G2424"]],[6,7,["G5101"]],[7,9,["G2076"]],[9,10,["G2076"]],[10,11,["G1410"]],[11,12,["G3756"]],[12,13,["G575"]],[13,14,["G3588"]],[14,15,["G3793"]],[15,16,["G3754"]],[16,18,["G2258"]],[18,19,["G3398"]],[19,21,["G2244"]]]},{"k":25735,"v":[[0,1,["G2532"]],[1,3,["G4390"]],[3,4,["G1715"]],[4,7,["G305"]],[7,8,["G1909"]],[8,11,["G4809"]],[11,12,["G2443"]],[12,13,["G1492"]],[13,14,["G846"]],[14,15,["G3754"]],[15,17,["G3195"]],[17,19,["G1330"]],[19,20,["G1565"]],[20,21,[]]]},{"k":25736,"v":[[0,1,["G2532"]],[1,2,["G5613"]],[2,3,["G2424"]],[3,4,["G2064"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G5117"]],[7,10,["G308"]],[10,12,["G1492"]],[12,13,["G846"]],[13,14,["G2532"]],[14,15,["G2036"]],[15,16,["G4314"]],[16,17,["G846"]],[17,18,["G2195"]],[18,20,["G4692"]],[20,23,["G2597"]],[23,24,["G1063"]],[24,26,["G4594"]],[26,27,["G3165"]],[27,28,["G1163"]],[28,29,["G3306"]],[29,30,["G1722"]],[30,31,["G4675"]],[31,32,["G3624"]]]},{"k":25737,"v":[[0,1,["G2532"]],[1,4,["G4692"]],[4,7,["G2597"]],[7,8,["G2532"]],[8,9,["G5264"]],[9,10,["G846"]],[10,11,["G5463"]]]},{"k":25738,"v":[[0,1,["G2532"]],[1,4,["G1492"]],[4,7,["G537"]],[7,8,["G1234"]],[8,9,["G3004"]],[9,10,["G3754"]],[10,13,["G1525"]],[13,16,["G2647"]],[16,17,["G3844"]],[17,19,["G435"]],[19,23,["G268"]]]},{"k":25739,"v":[[0,1,["G1161"]],[1,2,["G2195"]],[2,3,["G2476"]],[3,5,["G2036"]],[5,6,["G4314"]],[6,7,["G3588"]],[7,8,["G2962"]],[8,9,["G2400"]],[9,10,["G2962"]],[10,11,["G3588"]],[11,12,["G2255"]],[12,14,["G3450"]],[14,15,["G5224"]],[15,17,["G1325"]],[17,19,["G3588"]],[19,20,["G4434"]],[20,21,["G2532"]],[21,22,["G1487"]],[22,33,["G4811","G5100","G5100"]],[33,35,["G591"]],[35,37,["G5073"]]]},{"k":25740,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,7,["G4594"]],[7,9,["G4991"]],[9,10,["G1096"]],[10,12,["G5129"]],[12,13,["G3624"]],[13,15,["G2530"]],[15,16,["G846"]],[16,17,["G2532"]],[17,18,["G2076"]],[18,20,["G5207"]],[20,22,["G11"]]]},{"k":25741,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G444"]],[5,7,["G2064"]],[7,9,["G2212"]],[9,10,["G2532"]],[10,12,["G4982"]],[12,16,["G622"]]]},{"k":25742,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G191"]],[4,6,["G5023"]],[6,8,["G4369"]],[8,10,["G2036"]],[10,12,["G3850"]],[12,14,["G846"]],[14,15,["G1511"]],[15,17,["G1451"]],[17,18,["G2419"]],[18,19,["G2532"]],[19,21,["G846"]],[21,22,["G1380"]],[22,23,["G3754"]],[23,24,["G3588"]],[24,25,["G932"]],[25,27,["G2316"]],[27,28,["G3195"]],[28,29,["G3916"]],[29,30,["G398"]]]},{"k":25743,"v":[[0,2,["G2036"]],[2,3,["G3767"]],[3,5,["G5100"]],[5,6,["G2104","G444"]],[6,7,["G4198"]],[7,8,["G1519"]],[8,10,["G3117"]],[10,11,["G5561"]],[11,13,["G2983"]],[13,15,["G1438"]],[15,17,["G932"]],[17,18,["G2532"]],[18,20,["G5290"]]]},{"k":25744,"v":[[0,1,["G1161"]],[1,3,["G2564"]],[3,4,["G1438"]],[4,5,["G1176"]],[5,6,["G1401"]],[6,8,["G1325"]],[8,9,["G846"]],[9,10,["G1176"]],[10,11,["G3414"]],[11,12,["G2532"]],[12,13,["G2036"]],[13,14,["G4314"]],[14,15,["G846"]],[15,16,["G4231"]],[16,17,["G2193"]],[17,19,["G2064"]]]},{"k":25745,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G4177"]],[3,4,["G3404"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G649"]],[7,9,["G4242"]],[9,10,["G3694"]],[10,11,["G846"]],[11,12,["G3004"]],[12,15,["G3756"]],[15,16,["G2309"]],[16,17,["G5126"]],[17,20,["G936"]],[20,21,["G1909"]],[21,22,["G2248"]]]},{"k":25746,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,8,["G846"]],[8,10,["G1880"]],[10,12,["G2983"]],[12,13,["G3588"]],[13,14,["G932"]],[14,15,["G2532"]],[15,17,["G2036"]],[17,18,["G5128"]],[18,19,["G1401"]],[19,22,["G5455"]],[22,24,["G848"]],[24,26,["G3739"]],[26,29,["G1325"]],[29,30,["G3588"]],[30,31,["G694"]],[31,32,["G2443"]],[32,35,["G1097"]],[35,37,["G5101"]],[37,39,["G5100"]],[39,43,["G1281"]]]},{"k":25747,"v":[[0,1,["G1161"]],[1,2,["G3854"]],[2,3,["G3588"]],[3,4,["G4413"]],[4,5,["G3004"]],[5,6,["G2962"]],[6,7,["G4675"]],[7,8,["G3414"]],[8,10,["G4333"]],[10,11,["G1176"]],[11,12,["G3414"]]]},{"k":25748,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G2095"]],[6,8,["G18"]],[8,9,["G1401"]],[9,10,["G3754"]],[10,13,["G1096"]],[13,14,["G4103"]],[14,15,["G1722"]],[15,18,["G1646"]],[18,19,["G2468","G2192"]],[19,21,["G1849"]],[21,22,["G1883"]],[22,23,["G1176"]],[23,24,["G4172"]]]},{"k":25749,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1208"]],[3,4,["G2064"]],[4,5,["G3004"]],[5,6,["G2962"]],[6,7,["G4675"]],[7,8,["G3414"]],[8,10,["G4160"]],[10,11,["G4002"]],[11,12,["G3414"]]]},{"k":25750,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G2532"]],[4,6,["G5129"]],[6,7,["G1096"]],[7,8,["G4771"]],[8,9,["G2532"]],[9,10,["G1883"]],[10,11,["G4002"]],[11,12,["G4172"]]]},{"k":25751,"v":[[0,1,["G2532"]],[1,2,["G2087"]],[2,3,["G2064"]],[3,4,["G3004"]],[4,5,["G2962"]],[5,6,["G2400"]],[6,9,["G4675"]],[9,10,["G3414"]],[10,11,["G3739"]],[11,13,["G2192"]],[13,16,["G606"]],[16,17,["G1722"]],[17,19,["G4676"]]]},{"k":25752,"v":[[0,1,["G1063"]],[1,3,["G5399"]],[3,4,["G4571"]],[4,5,["G3754"]],[5,7,["G1488"]],[7,9,["G840"]],[9,10,["G444"]],[10,13,["G142"]],[13,14,["G3739"]],[14,18,["G5087","G3756"]],[18,19,["G2532"]],[19,20,["G2325"]],[20,21,["G3739"]],[21,24,["G3756"]],[24,25,["G4687"]]]},{"k":25753,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G1537"]],[6,9,["G4675"]],[9,10,["G4750"]],[10,13,["G2919"]],[13,14,["G4571"]],[14,16,["G4190"]],[16,17,["G1401"]],[17,19,["G1492"]],[19,20,["G3754"]],[20,21,["G1473"]],[21,22,["G1510"]],[22,24,["G840"]],[24,25,["G444"]],[25,27,["G142"]],[27,28,["G3739"]],[28,32,["G5087","G3756"]],[32,33,["G2532"]],[33,34,["G2325"]],[34,35,["G3739"]],[35,38,["G3756"]],[38,39,["G4687"]]]},{"k":25754,"v":[[0,1,["G1302"]],[1,2,["G2532"]],[2,3,["G1325"]],[3,4,["G3756"]],[4,6,["G3450"]],[6,7,["G694"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,10,["G5132"]],[10,11,["G2532"]],[11,13,["G1473"]],[13,14,["G2064"]],[14,18,["G4238","G302"]],[18,20,["G846"]],[20,21,["G4862"]],[21,22,["G5110"]]]},{"k":25755,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,8,["G3936"]],[8,9,["G142"]],[9,10,["G575"]],[10,11,["G846"]],[11,12,["G3588"]],[12,13,["G3414"]],[13,14,["G2532"]],[14,15,["G1325"]],[15,20,["G2192"]],[20,21,["G1176"]],[21,22,["G3414"]]]},{"k":25756,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G2962"]],[6,8,["G2192"]],[8,9,["G1176"]],[9,10,["G3414"]]]},{"k":25757,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,9,["G3956"]],[9,11,["G2192"]],[11,14,["G1325"]],[14,15,["G1161"]],[15,16,["G575"]],[16,19,["G2192"]],[19,20,["G3361"]],[20,21,["G2532"]],[21,22,["G3739"]],[22,24,["G2192"]],[24,28,["G142"]],[28,29,["G575"]],[29,30,["G846"]]]},{"k":25758,"v":[[0,1,["G4133"]],[1,2,["G1565"]],[2,3,["G3450"]],[3,4,["G2190"]],[4,6,["G2309"]],[6,7,["G3361"]],[7,9,["G3165"]],[9,11,["G936"]],[11,12,["G1909"]],[12,13,["G846"]],[13,14,["G71"]],[14,15,["G5602"]],[15,16,["G2532"]],[16,17,["G2695"]],[17,19,["G1715"]],[19,20,["G3450"]]]},{"k":25759,"v":[[0,1,["G2532"]],[1,5,["G5023"]],[5,6,["G2036"]],[6,8,["G4198"]],[8,9,["G1715"]],[9,11,["G305"]],[11,12,["G1519"]],[12,13,["G2414"]]]},{"k":25760,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,6,["G5613"]],[6,10,["G1448"]],[10,11,["G1519"]],[11,12,["G967"]],[12,13,["G2532"]],[13,14,["G963"]],[14,15,["G4314"]],[15,16,["G3588"]],[16,17,["G3735"]],[17,18,["G2564"]],[18,22,["G1636"]],[22,24,["G649"]],[24,25,["G1417"]],[25,27,["G848"]],[27,28,["G3101"]]]},{"k":25761,"v":[[0,1,["G2036"]],[1,2,["G5217"]],[2,4,["G1519"]],[4,5,["G3588"]],[5,6,["G2968"]],[6,8,["G2713"]],[8,10,["G1722"]],[10,12,["G3739"]],[12,15,["G1531"]],[15,18,["G2147"]],[18,20,["G4454"]],[20,21,["G1210"]],[21,22,["G1909","G3739"]],[22,24,["G4455","G3762"]],[24,25,["G444"]],[25,26,["G2523"]],[26,27,["G3089"]],[27,28,["G846"]],[28,30,["G71"]],[30,32,[]]]},{"k":25762,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G5100"]],[4,5,["G2065"]],[5,6,["G5209"]],[6,7,["G1302"]],[7,10,["G3089"]],[10,12,["G3779"]],[12,15,["G2046"]],[15,17,["G846"]],[17,18,["G3754"]],[18,19,["G3588"]],[19,20,["G2962"]],[20,21,["G2192"]],[21,22,["G5532"]],[22,24,["G846"]]]},{"k":25763,"v":[[0,1,["G1161"]],[1,5,["G649"]],[5,8,["G565"]],[8,10,["G2147"]],[10,12,["G2531"]],[12,15,["G2036"]],[15,17,["G846"]]]},{"k":25764,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G3089"]],[5,6,["G3588"]],[6,7,["G4454"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,10,["G846"]],[10,11,["G2036"]],[11,12,["G4314"]],[12,13,["G846"]],[13,14,["G5101"]],[14,15,["G3089"]],[15,17,["G3588"]],[17,18,["G4454"]]]},{"k":25765,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G3588"]],[4,5,["G2962"]],[5,6,["G2192"]],[6,7,["G5532"]],[7,9,["G846"]]]},{"k":25766,"v":[[0,1,["G2532"]],[1,3,["G71"]],[3,4,["G846"]],[4,5,["G4314"]],[5,6,["G2424"]],[6,7,["G2532"]],[7,9,["G1977"]],[9,10,["G1438"]],[10,11,["G2440"]],[11,12,["G1909"]],[12,13,["G3588"]],[13,14,["G4454"]],[14,19,["G1913","G2424"]]]},{"k":25767,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G4198"]],[4,6,["G5291"]],[6,7,["G848"]],[7,8,["G2440"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G3598"]]]},{"k":25768,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,6,["G1448"]],[6,8,["G2235"]],[8,9,["G4314"]],[9,10,["G3588"]],[10,11,["G2600"]],[11,13,["G3588"]],[13,14,["G3735"]],[14,16,["G1636"]],[16,17,["G3588"]],[17,18,["G537"]],[18,19,["G4128"]],[19,21,["G3588"]],[21,22,["G3101"]],[22,23,["G756"]],[23,25,["G5463"]],[25,27,["G134"]],[27,28,["G2316"]],[28,31,["G3173"]],[31,32,["G5456"]],[32,33,["G4012"]],[33,34,["G3956"]],[34,37,["G1411"]],[37,38,["G3739"]],[38,41,["G1492"]]]},{"k":25769,"v":[[0,1,["G3004"]],[1,2,["G2127"]],[2,4,["G3588"]],[4,5,["G935"]],[5,7,["G2064"]],[7,8,["G1722"]],[8,10,["G3686"]],[10,13,["G2962"]],[13,14,["G1515"]],[14,15,["G1722"]],[15,16,["G3772"]],[16,17,["G2532"]],[17,18,["G1391"]],[18,19,["G1722"]],[19,21,["G5310"]]]},{"k":25770,"v":[[0,1,["G2532"]],[1,2,["G5100"]],[2,4,["G3588"]],[4,5,["G5330"]],[5,6,["G575"]],[6,8,["G3588"]],[8,9,["G3793"]],[9,10,["G2036"]],[10,11,["G4314"]],[11,12,["G846"]],[12,13,["G1320"]],[13,14,["G2008"]],[14,15,["G4675"]],[15,16,["G3101"]]]},{"k":25771,"v":[[0,1,["G2532"]],[1,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,9,["G3004"]],[9,10,["G5213"]],[10,11,["G3754"]],[11,12,["G1437"]],[12,13,["G3778"]],[13,17,["G4623"]],[17,18,["G3588"]],[18,19,["G3037"]],[19,23,["G2896"]]]},{"k":25772,"v":[[0,1,["G2532"]],[1,2,["G5613"]],[2,6,["G1448"]],[6,8,["G1492"]],[8,9,["G3588"]],[9,10,["G4172"]],[10,12,["G2799"]],[12,13,["G1909"]],[13,14,["G846"]]]},{"k":25773,"v":[[0,1,["G3004"]],[1,2,["G1487"]],[2,5,["G1097"]],[5,6,["G2532"]],[6,7,["G4771"]],[7,9,["G2532","G1065"]],[9,10,["G1722"]],[10,11,["G5026"]],[11,12,["G4675"]],[12,13,["G2250"]],[13,15,["G3588"]],[15,18,["G4314"]],[18,19,["G4675"]],[19,20,["G1515"]],[20,21,["G1161"]],[21,22,["G3568"]],[22,25,["G2928"]],[25,26,["G575"]],[26,27,["G4675"]],[27,28,["G3788"]]]},{"k":25774,"v":[[0,1,["G3754"]],[1,3,["G2250"]],[3,5,["G2240"]],[5,6,["G1909"]],[6,7,["G4571"]],[7,8,["G2532"]],[8,9,["G4675"]],[9,10,["G2190"]],[10,15,["G4016","G5482"]],[15,16,["G4571"]],[16,17,["G2532"]],[17,20,["G4033","G4571"]],[20,21,["G2532"]],[21,24,["G4912","G4571"]],[24,27,["G3840"]]]},{"k":25775,"v":[[0,1,["G2532"]],[1,8,["G1474","G4571"]],[8,9,["G2532"]],[9,10,["G4675"]],[10,11,["G5043"]],[11,12,["G1722"]],[12,13,["G4671"]],[13,14,["G2532"]],[14,17,["G3756"]],[17,18,["G863"]],[18,19,["G1722"]],[19,20,["G4671"]],[20,24,["G3037","G1909","G3037"]],[24,25,["G473","G3739"]],[25,27,["G1097"]],[27,28,["G3756"]],[28,29,["G3588"]],[29,30,["G2540"]],[30,32,["G4675"]],[32,33,["G1984"]]]},{"k":25776,"v":[[0,1,["G2532"]],[1,3,["G1525"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G2411"]],[6,8,["G756"]],[8,11,["G1544"]],[11,14,["G4453"]],[14,15,["G1722","G846"]],[15,16,["G2532"]],[16,19,["G59"]]]},{"k":25777,"v":[[0,1,["G3004"]],[1,3,["G846"]],[3,6,["G1125"]],[6,7,["G3450"]],[7,8,["G3624"]],[8,9,["G2076"]],[9,11,["G3624"]],[11,13,["G4335"]],[13,14,["G1161"]],[14,15,["G5210"]],[15,17,["G4160"]],[17,18,["G846"]],[18,20,["G4693"]],[20,22,["G3027"]]]},{"k":25778,"v":[[0,1,["G2532"]],[1,3,["G2258","G1321"]],[3,4,["G2596","G2250"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G2411"]],[7,8,["G1161"]],[8,9,["G3588"]],[9,11,["G749"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G1122"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G4413"]],[17,19,["G3588"]],[19,20,["G2992"]],[20,21,["G2212"]],[21,23,["G622"]],[23,24,["G846"]]]},{"k":25779,"v":[[0,1,["G2532"]],[1,3,["G3756"]],[3,4,["G2147"]],[4,5,["G5101"]],[5,8,["G4160"]],[8,9,["G1063"]],[9,10,["G537"]],[10,11,["G3588"]],[11,12,["G2992"]],[12,15,["G1582"]],[15,17,["G191"]],[17,18,["G846"]]]},{"k":25780,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G1722"]],[7,8,["G3391"]],[8,10,["G1565"]],[10,11,["G2250"]],[11,13,["G846"]],[13,14,["G1321"]],[14,15,["G3588"]],[15,16,["G2992"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G2411"]],[19,20,["G2532"]],[20,23,["G2097"]],[23,24,["G3588"]],[24,26,["G749"]],[26,27,["G2532"]],[27,28,["G3588"]],[28,29,["G1122"]],[29,31,["G2186"]],[31,33,["G4862"]],[33,34,["G3588"]],[34,35,["G4245"]]]},{"k":25781,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,3,["G4314"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G2036"]],[6,7,["G2254"]],[7,8,["G1722"]],[8,9,["G4169"]],[9,10,["G1849"]],[10,11,["G4160"]],[11,14,["G5023"]],[14,15,["G2228"]],[15,16,["G5101"]],[16,17,["G2076"]],[17,20,["G1325"]],[20,21,["G4671"]],[21,22,["G5026"]],[22,23,["G1849"]]]},{"k":25782,"v":[[0,1,["G1161"]],[1,3,["G611"]],[3,5,["G2036"]],[5,6,["G4314"]],[6,7,["G846"]],[7,11,["G2504","G2065"]],[11,12,["G5209"]],[12,13,["G1520"]],[13,14,["G3056"]],[14,15,["G2532"]],[15,16,["G2036"]],[16,17,["G3427"]]]},{"k":25783,"v":[[0,1,["G3588"]],[1,2,["G908"]],[2,4,["G2491"]],[4,5,["G2258"]],[5,7,["G1537"]],[7,8,["G3772"]],[8,9,["G2228"]],[9,10,["G1537"]],[10,11,["G444"]]]},{"k":25784,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4817"]],[3,4,["G4314"]],[4,5,["G1438"]],[5,6,["G3004"]],[6,7,["G1437"]],[7,10,["G2036"]],[10,11,["G1537"]],[11,12,["G3772"]],[12,15,["G2046"]],[15,16,["G1302"]],[16,17,["G3767"]],[17,18,["G4100"]],[18,20,["G846"]],[20,21,["G3756"]]]},{"k":25785,"v":[[0,1,["G1161"]],[1,3,["G1437"]],[3,5,["G2036"]],[5,6,["G1537"]],[6,7,["G444"]],[7,8,["G3956"]],[8,9,["G3588"]],[9,10,["G2992"]],[10,12,["G2642"]],[12,13,["G2248"]],[13,14,["G1063"]],[14,16,["G2076"]],[16,17,["G3982"]],[17,19,["G2491"]],[19,20,["G1511"]],[20,22,["G4396"]]]},{"k":25786,"v":[[0,1,["G2532"]],[1,3,["G611"]],[3,7,["G3361"]],[7,8,["G1492"]],[8,9,["G4159"]],[9,11,[]]]},{"k":25787,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G3761"]],[6,7,["G3004"]],[7,8,["G1473"]],[8,9,["G5213"]],[9,10,["G1722"]],[10,11,["G4169"]],[11,12,["G1849"]],[12,14,["G4160"]],[14,16,["G5023"]]]},{"k":25788,"v":[[0,1,["G1161"]],[1,2,["G756"]],[2,5,["G3004"]],[5,6,["G4314"]],[6,7,["G3588"]],[7,8,["G2992"]],[8,9,["G5026"]],[9,10,["G3850"]],[10,12,["G5100"]],[12,13,["G444"]],[13,14,["G5452"]],[14,16,["G290"]],[16,17,["G2532"]],[17,20,["G1554","G846"]],[20,22,["G1092"]],[22,23,["G2532"]],[23,28,["G589"]],[28,31,["G2425"]],[31,32,["G5550"]]]},{"k":25789,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,4,["G2540"]],[4,6,["G649"]],[6,8,["G1401"]],[8,9,["G4314"]],[9,10,["G3588"]],[10,11,["G1092"]],[11,12,["G2443"]],[12,15,["G1325"]],[15,16,["G846"]],[16,17,["G575"]],[17,18,["G3588"]],[18,19,["G2590"]],[19,21,["G3588"]],[21,22,["G290"]],[22,23,["G1161"]],[23,24,["G3588"]],[24,25,["G1092"]],[25,26,["G1194"]],[26,27,["G846"]],[27,31,["G1821"]],[31,32,["G2756"]]]},{"k":25790,"v":[[0,1,["G2532"]],[1,4,["G4369","G3992"]],[4,5,["G2087"]],[5,6,["G1401"]],[6,7,["G1161"]],[7,8,["G3588"]],[8,9,["G1194"]],[9,11,["G2548"]],[11,12,["G2532"]],[12,15,["G818"]],[15,19,["G1821"]],[19,20,["G2756"]]]},{"k":25791,"v":[[0,1,["G2532"]],[1,4,["G4369","G3992"]],[4,6,["G5154"]],[6,7,["G1161"]],[7,8,["G3588"]],[8,9,["G5135"]],[9,10,["G5126"]],[10,12,["G2532"]],[12,15,["G1544"]]]},{"k":25792,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,4,["G2962"]],[4,6,["G3588"]],[6,7,["G290"]],[7,8,["G5101"]],[8,11,["G4160"]],[11,14,["G3992"]],[14,15,["G3450"]],[15,16,["G27"]],[16,17,["G5207"]],[17,20,["G2481"]],[20,23,["G1788"]],[23,27,["G1492"]],[27,28,["G5126"]]]},{"k":25793,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1092"]],[4,5,["G1492"]],[5,6,["G846"]],[6,8,["G1260"]],[8,9,["G4314"]],[9,10,["G1438"]],[10,11,["G3004"]],[11,12,["G3778"]],[12,13,["G2076"]],[13,14,["G3588"]],[14,15,["G2818"]],[15,16,["G1205"]],[16,19,["G615"]],[19,20,["G846"]],[20,21,["G2443"]],[21,22,["G3588"]],[22,23,["G2817"]],[23,25,["G1096"]],[25,26,["G2254"]]]},{"k":25794,"v":[[0,1,["G2532"]],[1,3,["G1544"]],[3,4,["G846"]],[4,5,["G1854"]],[5,7,["G3588"]],[7,8,["G290"]],[8,10,["G615"]],[10,12,["G5101"]],[12,13,["G3767"]],[13,15,["G3588"]],[15,16,["G2962"]],[16,18,["G3588"]],[18,19,["G290"]],[19,20,["G4160"]],[20,22,["G846"]]]},{"k":25795,"v":[[0,3,["G2064"]],[3,4,["G2532"]],[4,5,["G622"]],[5,6,["G5128"]],[6,7,["G1092"]],[7,8,["G2532"]],[8,10,["G1325"]],[10,11,["G3588"]],[11,12,["G290"]],[12,14,["G243"]],[14,15,["G1161"]],[15,18,["G191"]],[18,21,["G2036"]],[21,23,["G1096","G3361"]]]},{"k":25796,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1689"]],[3,4,["G846"]],[4,6,["G2036"]],[6,7,["G5101"]],[7,8,["G2076"]],[8,9,["G5124"]],[9,10,["G3767"]],[10,13,["G1125"]],[13,15,["G3037"]],[15,16,["G3739"]],[16,17,["G3588"]],[17,18,["G3618"]],[18,19,["G593"]],[19,21,["G3778"]],[21,23,["G1096"]],[23,24,["(G1519)"]],[24,25,["G2776"]],[25,28,["G1137"]]]},{"k":25797,"v":[[0,1,["G3956"]],[1,3,["G4098"]],[3,4,["G1909"]],[4,5,["G1565"]],[5,6,["G3037"]],[6,9,["G4917"]],[9,10,["G1161"]],[10,11,["G1909"]],[11,12,["G3739","G302"]],[12,15,["G4098"]],[15,21,["G3039","G846"]]]},{"k":25798,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G1122"]],[7,9,["G846"]],[9,10,["G5610"]],[10,11,["G2212"]],[11,13,["G1911"]],[13,14,["G5495"]],[14,15,["G1909"]],[15,16,["G846"]],[16,17,["G2532"]],[17,19,["G5399"]],[19,20,["G3588"]],[20,21,["G2992"]],[21,22,["G1063"]],[22,24,["G1097"]],[24,25,["G3754"]],[25,28,["G2036"]],[28,29,["G5026"]],[29,30,["G3850"]],[30,31,["G4314"]],[31,32,["G846"]]]},{"k":25799,"v":[[0,1,["G2532"]],[1,3,["G3906"]],[3,7,["G649"]],[7,8,["G1455"]],[8,11,["G5271"]],[11,12,["G1438"]],[12,14,["G1342"]],[14,15,["G2443"]],[15,19,["G1949"]],[19,21,["G846"]],[21,22,["G3056"]],[22,27,["G3860"]],[27,28,["G846"]],[28,30,["G3588"]],[30,31,["G746"]],[31,32,["G2532"]],[32,33,["G1849"]],[33,35,["G3588"]],[35,36,["G2232"]]]},{"k":25800,"v":[[0,1,["G2532"]],[1,3,["G1905"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G1320"]],[6,8,["G1492"]],[8,9,["G3754"]],[9,11,["G3004"]],[11,12,["G2532"]],[12,13,["G1321"]],[13,14,["G3723"]],[14,15,["G2532","G3756"]],[15,16,["G2983"]],[16,19,["G4383"]],[19,22,["G235"]],[22,23,["G1321"]],[23,24,["G3588"]],[24,25,["G3598"]],[25,27,["G2316"]],[27,28,["G1909","G225"]]]},{"k":25801,"v":[[0,3,["G1832"]],[3,5,["G2254"]],[5,7,["G1325"]],[7,8,["G5411"]],[8,10,["G2541"]],[10,11,["G2228"]],[11,12,["G3756"]]]},{"k":25802,"v":[[0,1,["G1161"]],[1,3,["G2657"]],[3,4,["G848"]],[4,5,["G3834"]],[5,7,["G2036"]],[7,8,["G4314"]],[8,9,["G846"]],[9,10,["G5101"]],[10,11,["G3985"]],[11,13,["G3165"]]]},{"k":25803,"v":[[0,1,["G1925"]],[1,2,["G3427"]],[2,4,["G1220"]],[4,5,["G5101"]],[5,6,["G1504"]],[6,7,["G2532"]],[7,8,["G1923"]],[8,9,["G2192"]],[9,11,["(G1161)"]],[11,12,["G611"]],[12,14,["G2036"]],[14,15,["G2541"]]]},{"k":25804,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G591"]],[6,7,["G5106"]],[7,9,["G2541"]],[9,11,["G3588"]],[11,14,["G2541"]],[14,15,["G2532"]],[15,17,["G2316"]],[17,19,["G3588"]],[19,22,["G2316"]]]},{"k":25805,"v":[[0,1,["G2532"]],[1,3,["G2480"]],[3,4,["G3756"]],[4,6,["G1949"]],[6,8,["G846"]],[8,9,["G4487"]],[9,10,["G1726"]],[10,11,["G3588"]],[11,12,["G2992"]],[12,13,["G2532"]],[13,15,["G2296"]],[15,16,["G1909"]],[16,17,["G846"]],[17,18,["G612"]],[18,22,["G4601"]]]},{"k":25806,"v":[[0,1,["G1161"]],[1,2,["G4334"]],[2,5,["G5100"]],[5,7,["G3588"]],[7,8,["G4523"]],[8,10,["G483"]],[10,13,["G1511"]],[13,14,["(G3361)"]],[14,15,["G386"]],[15,18,["G1905"]],[18,19,["G846"]]]},{"k":25807,"v":[[0,1,["G3004"]],[1,2,["G1320"]],[2,3,["G3475"]],[3,4,["G1125"]],[4,6,["G2254"]],[6,7,["G1437"]],[7,9,["G5100"]],[9,10,["G80"]],[10,11,["G599"]],[11,12,["G2192"]],[12,14,["G1135"]],[14,15,["G2532"]],[15,16,["G3778"]],[16,17,["G599"]],[17,19,["G815"]],[19,20,["G2443"]],[20,21,["G846"]],[21,22,["G80"]],[22,24,["G2983"]],[24,26,["G1135"]],[26,27,["G2532"]],[27,29,["G1817"]],[29,30,["G4690"]],[30,32,["G848"]],[32,33,["G80"]]]},{"k":25808,"v":[[0,2,["G2258"]],[2,3,["G3767"]],[3,4,["G2033"]],[4,5,["G80"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G4413"]],[8,9,["G2983"]],[9,11,["G1135"]],[11,13,["G599"]],[13,15,["G815"]]]},{"k":25809,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1208"]],[3,4,["G2983"]],[4,7,["G1135"]],[7,8,["G2532"]],[8,9,["G3778"]],[9,10,["G599"]],[10,11,["G815"]]]},{"k":25810,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5154"]],[3,4,["G2983"]],[4,5,["G846"]],[5,6,["G1161"]],[6,9,["G5615"]],[9,10,["G3588"]],[10,11,["G2033"]],[11,12,["G2532"]],[12,15,["G2641"]],[15,16,["G3756"]],[16,17,["G5043"]],[17,18,["G2532"]],[18,19,["G599"]]]},{"k":25811,"v":[[0,0,["(G1161)"]],[0,1,["G5305"]],[1,3,["G3956"]],[3,4,["G3588"]],[4,5,["G1135"]],[5,6,["G599"]],[6,7,["G2532"]]]},{"k":25812,"v":[[0,1,["G3767"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G386"]],[4,5,["G5101"]],[5,6,["G1135"]],[6,8,["G846"]],[8,10,["G1096"]],[10,11,["G1063"]],[11,12,["G2033"]],[12,13,["G2192"]],[13,14,["G846"]],[14,16,["G1135"]]]},{"k":25813,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G5127"]],[10,11,["G165"]],[11,12,["G1060"]],[12,13,["G2532"]],[13,17,["G1548"]]]},{"k":25814,"v":[[0,1,["G1161"]],[1,7,["G2661"]],[7,9,["G5177"]],[9,10,["G1565"]],[10,11,["G165"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G386"]],[14,15,["G1537"]],[15,17,["G3498"]],[17,18,["G3777"]],[18,19,["G1060"]],[19,20,["G3777"]],[20,24,["G1548"]]]},{"k":25815,"v":[[0,0,["(G1063)"]],[0,1,["G3777"]],[1,2,["G1410"]],[2,4,["G599"]],[4,6,["G2089"]],[6,7,["G1063"]],[7,9,["G1526"]],[9,13,["G2465"]],[13,14,["G2532"]],[14,15,["G1526"]],[15,17,["G5207"]],[17,19,["G2316"]],[19,20,["G5607"]],[20,22,["G5207"]],[22,24,["G3588"]],[24,25,["G386"]]]},{"k":25816,"v":[[0,1,["G1161"]],[1,2,["G3754"]],[2,3,["G3588"]],[3,4,["G3498"]],[4,6,["G1453"]],[6,7,["G2532"]],[7,8,["G3475"]],[8,9,["G3377"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G942"]],[12,13,["G5613"]],[13,15,["G3004"]],[15,17,["G2962"]],[17,18,["G3588"]],[18,19,["G2316"]],[19,21,["G11"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G2316"]],[24,26,["G2464"]],[26,27,["G2532"]],[27,28,["G3588"]],[28,29,["G2316"]],[29,31,["G2384"]]]},{"k":25817,"v":[[0,1,["G1161"]],[1,3,["G2076"]],[3,4,["G3756"]],[4,6,["G2316"]],[6,9,["G3498"]],[9,10,["G235"]],[10,13,["G2198"]],[13,14,["G1063"]],[14,15,["G3956"]],[15,16,["G2198"]],[16,18,["G846"]]]},{"k":25818,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,4,["G3588"]],[4,5,["G1122"]],[5,6,["G611"]],[6,7,["G2036"]],[7,8,["G1320"]],[8,11,["G2573"]],[11,12,["G2036"]]]},{"k":25819,"v":[[0,1,["G1161"]],[1,5,["G5111"]],[5,6,["G3765"]],[6,7,["G1905"]],[7,8,["G846"]],[8,9,["G3762"]],[9,12,[]]]},{"k":25820,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G4459"]],[6,7,["G3004"]],[7,10,["G5547"]],[10,11,["G1511"]],[11,12,["G1138"]],[12,13,["G5207"]]]},{"k":25821,"v":[[0,1,["G2532"]],[1,2,["G1138"]],[2,3,["G846"]],[3,4,["G3004"]],[4,5,["G1722"]],[5,7,["G976"]],[7,9,["G5568"]],[9,10,["G3588"]],[10,11,["G2962"]],[11,12,["G2036"]],[12,14,["G3450"]],[14,15,["G2962"]],[15,16,["G2521"]],[16,18,["G1537"]],[18,19,["G3450"]],[19,21,["G1188"]]]},{"k":25822,"v":[[0,1,["G2193","G302"]],[1,3,["G5087"]],[3,4,["G4675"]],[4,5,["G2190"]],[5,6,["G4675"]],[6,7,["G5286","G4228"]]]},{"k":25823,"v":[[0,1,["G1138"]],[1,2,["G3767"]],[2,3,["G2564"]],[3,4,["G846"]],[4,5,["G2962"]],[5,6,["G4459"]],[6,8,["G2076"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G5207"]]]},{"k":25824,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,6,["G3956"]],[6,7,["G3588"]],[7,8,["G2992"]],[8,10,["G2036"]],[10,12,["G848"]],[12,13,["G3101"]]]},{"k":25825,"v":[[0,1,["G4337"]],[1,2,["G575"]],[2,3,["G3588"]],[3,4,["G1122"]],[4,6,["G2309"]],[6,8,["G4043"]],[8,9,["G1722"]],[9,11,["G4749"]],[11,12,["G2532"]],[12,13,["G5368"]],[13,14,["G783"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G58"]],[17,18,["G2532"]],[18,21,["G4410"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G4864"]],[24,25,["G2532"]],[25,28,["G4411"]],[28,29,["G1722"]],[29,30,["G1173"]]]},{"k":25826,"v":[[0,1,["G3739"]],[1,2,["G2719"]],[2,3,["G5503"]],[3,4,["G3614"]],[4,5,["G2532"]],[5,8,["G4392"]],[8,11,["G4336","G3117"]],[11,13,["G3778"]],[13,15,["G2983"]],[15,16,["G4055"]],[16,17,["G2917"]]]},{"k":25827,"v":[[0,1,["G1161"]],[1,4,["G308"]],[4,6,["G1492"]],[6,7,["G3588"]],[7,9,["G4145"]],[9,10,["G906"]],[10,11,["G848"]],[11,12,["G1435"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G1049"]]]},{"k":25828,"v":[[0,1,["G1161"]],[1,3,["G1492"]],[3,4,["G2532"]],[4,6,["G5100"]],[6,7,["G3998"]],[7,8,["G5503"]],[8,10,["G906"]],[10,11,["G1563"]],[11,12,["G1417"]],[12,13,["G3016"]]]},{"k":25829,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,6,["G230"]],[6,8,["G3004"]],[8,10,["G5213"]],[10,11,["G3754"]],[11,12,["G3778"]],[12,13,["G4434"]],[13,14,["G5503"]],[14,17,["G906"]],[17,18,["G4119"]],[18,21,["G3956"]]]},{"k":25830,"v":[[0,1,["G1063"]],[1,2,["G537"]],[2,3,["G3778"]],[3,5,["G1537"]],[5,6,["G846"]],[6,7,["G4052"]],[7,9,["G906"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G1435"]],[12,14,["G2316"]],[14,15,["G1161"]],[15,16,["G3778"]],[16,17,["G1537"]],[17,18,["G848"]],[18,19,["G5303"]],[19,22,["G906"]],[22,23,["G537"]],[23,24,["G3588"]],[24,25,["G979"]],[25,26,["G3739"]],[26,28,["G2192"]]]},{"k":25831,"v":[[0,1,["G2532"]],[1,3,["G5100"]],[3,4,["G3004"]],[4,5,["G4012"]],[5,6,["G3588"]],[6,7,["G2411"]],[7,8,["G3754"]],[8,11,["G2885"]],[11,13,["G2570"]],[13,14,["G3037"]],[14,15,["G2532"]],[15,16,["G334"]],[16,18,["G2036"]]]},{"k":25832,"v":[[0,4,["G5023"]],[4,5,["G3739"]],[5,7,["G2334"]],[7,9,["G2250"]],[9,11,["G2064"]],[11,12,["G1722"]],[12,14,["G3739"]],[14,17,["G3756"]],[17,19,["G863"]],[19,23,["G3037","G1909","G3037"]],[23,24,["G3739"]],[24,26,["G3756"]],[26,29,["G2647"]]]},{"k":25833,"v":[[0,1,["G1161"]],[1,3,["G1905"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G1320"]],[6,8,["G4219"]],[8,9,["(G3767)"]],[9,11,["G5023"]],[11,12,["G2071"]],[12,13,["G2532"]],[13,14,["G5101"]],[14,15,["G4592"]],[15,19,["G3752"]],[19,21,["G5023"]],[21,22,["G3195"]],[22,25,["G1096"]]]},{"k":25834,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G991"]],[5,9,["G3361"]],[9,10,["G4105"]],[10,11,["G1063"]],[11,12,["G4183"]],[12,14,["G2064"]],[14,15,["G1909"]],[15,16,["G3450"]],[16,17,["G3686"]],[17,18,["G3004"]],[18,19,["G1473"]],[19,20,["G1510"]],[20,22,["G2532"]],[22,23,["G3588"]],[23,24,["G2540"]],[24,26,["G1448"]],[26,27,["G4198"]],[27,29,["G3361"]],[29,30,["G3767"]],[30,31,["G3694"]],[31,32,["G846"]]]},{"k":25835,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,5,["G191"]],[5,7,["G4171"]],[7,8,["G2532"]],[8,9,["G181"]],[9,11,["G3361"]],[11,12,["G4422"]],[12,13,["G1063"]],[13,15,["G5023"]],[15,16,["G1163"]],[16,17,["G4412"]],[17,20,["G1096"]],[20,21,["G235"]],[21,22,["G3588"]],[22,23,["G5056"]],[23,25,["G3756"]],[25,28,["G2112"]]]},{"k":25836,"v":[[0,1,["G5119"]],[1,2,["G3004"]],[2,5,["G846"]],[5,6,["G1484"]],[6,8,["G1453"]],[8,9,["G1909"]],[9,10,["G1484"]],[10,11,["G2532"]],[11,12,["G932"]],[12,13,["G1909"]],[13,14,["G932"]]]},{"k":25837,"v":[[0,1,["G5037"]],[1,2,["G3173"]],[2,3,["G4578"]],[3,5,["G2071"]],[5,8,["G2596","G5117"]],[8,9,["G2532"]],[9,10,["G3042"]],[10,11,["G2532"]],[11,12,["G3061"]],[12,13,["G5037"]],[13,15,["G5400"]],[15,16,["G2532"]],[16,17,["G3173"]],[17,18,["G4592"]],[18,21,["G2071"]],[21,22,["G575"]],[22,23,["G3772"]]]},{"k":25838,"v":[[0,1,["G1161"]],[1,2,["G4253"]],[2,3,["G537"]],[3,4,["G5130"]],[4,7,["G1911"]],[7,8,["G848"]],[8,9,["G5495"]],[9,10,["G1909"]],[10,11,["G5209"]],[11,12,["G2532"]],[12,13,["G1377"]],[13,17,["G3860"]],[17,18,["G1519"]],[18,20,["G4864"]],[20,21,["G2532"]],[21,23,["G5438"]],[23,25,["G71"]],[25,26,["G1909"]],[26,27,["G935"]],[27,28,["G2532"]],[28,29,["G2232"]],[29,33,["G1752","G3450","G3686"]]]},{"k":25839,"v":[[0,1,["G1161"]],[1,4,["G576"]],[4,6,["G5213"]],[6,7,["G1519"]],[7,9,["G3142"]]]},{"k":25840,"v":[[0,1,["G5087"]],[1,3,["G3767"]],[3,4,["G1519"]],[4,5,["G5216"]],[5,6,["G2588"]],[6,7,["G3361"]],[7,10,["G4304"]],[10,14,["G626"]]]},{"k":25841,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,4,["G1325"]],[4,5,["G5213"]],[5,7,["G4750"]],[7,8,["G2532"]],[8,9,["G4678"]],[9,10,["G3739"]],[10,11,["G3956"]],[11,12,["G5213"]],[12,13,["G480"]],[13,15,["G3756"]],[15,17,["G1410"]],[17,19,["G471"]],[19,20,["G3761"]],[20,21,["G436"]]]},{"k":25842,"v":[[0,1,["G1161"]],[1,5,["G3860"]],[5,6,["G2532"]],[6,7,["G5259"]],[7,8,["G1118"]],[8,9,["G2532"]],[9,10,["G80"]],[10,11,["G2532"]],[11,12,["G4773"]],[12,13,["G2532"]],[13,14,["G5384"]],[14,15,["G2532"]],[15,17,["G1537"]],[17,18,["G5216"]],[18,26,["G2289"]]]},{"k":25843,"v":[[0,1,["G2532"]],[1,4,["G2071"]],[4,5,["G3404"]],[5,6,["G5259"]],[6,7,["G3956"]],[7,12,["G1223","G3450","G3686"]]]},{"k":25844,"v":[[0,1,["G2532"]],[1,4,["G3364"]],[4,6,["G2359"]],[6,7,["G1537"]],[7,8,["G5216"]],[8,9,["G2776"]],[9,10,["G622"]]]},{"k":25845,"v":[[0,1,["G1722"]],[1,2,["G5216"]],[2,3,["G5281"]],[3,4,["G2932"]],[4,6,["G5216"]],[6,7,["G5590"]]]},{"k":25846,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,5,["G1492"]],[5,6,["G2419"]],[6,7,["G2944"]],[7,8,["G5259"]],[8,9,["G4760"]],[9,10,["G5119"]],[10,11,["G1097"]],[11,12,["G3754"]],[12,13,["G3588"]],[13,14,["G2050"]],[14,15,["G846"]],[15,17,["G1448"]]]},{"k":25847,"v":[[0,1,["G5119"]],[1,3,["G3588"]],[3,6,["G1722"]],[6,7,["G2449"]],[7,8,["G5343"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G3735"]],[11,12,["G2532"]],[12,14,["G3588"]],[14,17,["G1722"]],[17,19,["G3319"]],[19,21,["G848"]],[21,23,["G1633"]],[23,24,["G2532"]],[24,26,["G3361"]],[26,27,["G3588"]],[27,30,["G1722"]],[30,31,["G3588"]],[31,32,["G5561"]],[32,33,["G1525"]],[33,34,["G1519","G846"]]]},{"k":25848,"v":[[0,1,["G3754"]],[1,2,["G3778"]],[2,3,["G1526"]],[3,5,["G2250"]],[5,7,["G1557"]],[7,10,["G3956"]],[10,13,["G1125"]],[13,16,["G4137"]]]},{"k":25849,"v":[[0,1,["G1161"]],[1,2,["G3759"]],[2,8,["G2192","G1722","G1064"]],[8,9,["G2532"]],[9,14,["G2337"]],[14,15,["G1722"]],[15,16,["G1565"]],[16,17,["G2250"]],[17,18,["G1063"]],[18,21,["G2071"]],[21,22,["G3173"]],[22,23,["G318"]],[23,24,["G1909"]],[24,25,["G3588"]],[25,26,["G1093"]],[26,27,["G2532"]],[27,28,["G3709"]],[28,29,["G1722"]],[29,30,["G5129"]],[30,31,["G2992"]]]},{"k":25850,"v":[[0,1,["G2532"]],[1,4,["G4098"]],[4,7,["G4750"]],[7,10,["G3162"]],[10,11,["G2532"]],[11,16,["G163"]],[16,17,["G1519"]],[17,18,["G3956"]],[18,19,["G1484"]],[19,20,["G2532"]],[20,21,["G2419"]],[21,23,["G2071"]],[23,25,["G3961"]],[25,26,["G5259"]],[26,28,["G1484"]],[28,29,["G891"]],[29,31,["G2540"]],[31,34,["G1484"]],[34,36,["G4137"]]]},{"k":25851,"v":[[0,1,["G2532"]],[1,4,["G2071"]],[4,5,["G4592"]],[5,6,["G1722"]],[6,8,["G2246"]],[8,9,["G2532"]],[9,12,["G4582"]],[12,13,["G2532"]],[13,16,["G798"]],[16,17,["G2532"]],[17,18,["G1909"]],[18,19,["G3588"]],[19,20,["G1093"]],[20,21,["G4928"]],[21,23,["G1484"]],[23,24,["G1722"]],[24,25,["G640"]],[25,27,["G2281"]],[27,28,["G2532"]],[28,30,["G4535"]],[30,31,["G2278"]]]},{"k":25852,"v":[[0,1,["G444"]],[1,4,["G674"]],[4,5,["G575"]],[5,6,["G5401"]],[6,7,["G2532"]],[7,10,["G4329"]],[10,16,["G1904"]],[16,17,["G3588"]],[17,18,["G3625"]],[18,19,["G1063"]],[19,20,["G3588"]],[20,21,["G1411"]],[21,23,["G3772"]],[23,26,["G4531"]]]},{"k":25853,"v":[[0,1,["G2532"]],[1,2,["G5119"]],[2,5,["G3700"]],[5,6,["G3588"]],[6,7,["G5207"]],[7,9,["G444"]],[9,10,["G2064"]],[10,11,["G1722"]],[11,13,["G3507"]],[13,14,["G3326"]],[14,15,["G1411"]],[15,16,["G2532"]],[16,17,["G4183"]],[17,18,["G1391"]]]},{"k":25854,"v":[[0,1,["G1161"]],[1,4,["G5130"]],[4,5,["G756"]],[5,9,["G1096"]],[9,12,["G352"]],[12,13,["G2532"]],[13,15,["G1869"]],[15,16,["G5216"]],[16,17,["G2776"]],[17,18,["G1360"]],[18,19,["G5216"]],[19,20,["G629"]],[20,22,["G1448"]]]},{"k":25855,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,7,["G3850"]],[7,8,["G1492"]],[8,9,["G3588"]],[9,11,["G4808"]],[11,12,["G2532"]],[12,13,["G3956"]],[13,14,["G3588"]],[14,15,["G1186"]]]},{"k":25856,"v":[[0,1,["G3752"]],[1,3,["G2235"]],[3,5,["G4261"]],[5,7,["G991"]],[7,9,["G1097"]],[9,10,["G575"]],[10,13,["G1438"]],[13,14,["G3754"]],[14,15,["G2330"]],[15,16,["G2076"]],[16,17,["G2235"]],[17,20,["G1451"]]]},{"k":25857,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,3,["G5210"]],[3,4,["G3752"]],[4,6,["G1492"]],[6,8,["G5023"]],[8,11,["G1096"]],[11,12,["G1097"]],[12,14,["G3754"]],[14,15,["G3588"]],[15,16,["G932"]],[16,18,["G2316"]],[18,19,["G2076"]],[19,22,["G1451"]]]},{"k":25858,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213","(G3754)"]],[5,6,["G3778"]],[6,7,["G1074"]],[7,9,["G3364"]],[9,11,["G3928"]],[11,12,["G2193","G302"]],[12,13,["G3956"]],[13,15,["G1096"]]]},{"k":25859,"v":[[0,1,["G3772"]],[1,2,["G2532"]],[2,3,["G1093"]],[3,6,["G3928"]],[6,7,["G1161"]],[7,8,["G3450"]],[8,9,["G3056"]],[9,11,["G3364"]],[11,13,["G3928"]]]},{"k":25860,"v":[[0,1,["G1161"]],[1,3,["G4337"]],[3,5,["G1438"]],[5,9,["G3379"]],[9,10,["G5216"]],[10,11,["G2588"]],[11,13,["G925"]],[13,14,["G1722"]],[14,15,["G2897"]],[15,16,["G2532"]],[16,17,["G3178"]],[17,18,["G2532"]],[18,19,["G3308"]],[19,22,["G982"]],[22,23,["G2532"]],[23,25,["G1565"]],[25,26,["G2250"]],[26,27,["G2186"]],[27,28,["G1909"]],[28,29,["G5209"]],[29,30,["G160"]]]},{"k":25861,"v":[[0,1,["G1063"]],[1,2,["G5613"]],[2,4,["G3803"]],[4,7,["G1904"]],[7,8,["G1909"]],[8,9,["G3956"]],[9,12,["G2521"]],[12,13,["G1909"]],[13,15,["G4383"]],[15,17,["G3588"]],[17,18,["G3956"]],[18,19,["G1093"]]]},{"k":25862,"v":[[0,1,["G69"]],[1,3,["G3767"]],[3,5,["G1189"]],[5,6,["G1722","G3956","G2540"]],[6,7,["G2443"]],[7,12,["G2661"]],[12,14,["G1628"]],[14,15,["G3956"]],[15,17,["G5023"]],[17,19,["G3195"]],[19,22,["G1096"]],[22,23,["G2532"]],[23,25,["G2476"]],[25,26,["G1715"]],[26,27,["G3588"]],[27,28,["G5207"]],[28,30,["G444"]]]},{"k":25863,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,5,["G2250"]],[5,7,["G2258"]],[7,8,["G1321"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2411"]],[11,12,["G1161"]],[12,14,["G3571"]],[14,17,["G1831"]],[17,19,["G835"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G3735"]],[22,25,["G2564"]],[25,29,["G1636"]]]},{"k":25864,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G2992"]],[4,9,["G3719"]],[9,10,["G4314"]],[10,11,["G846"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G2411"]],[14,17,["G191"]],[17,18,["G846"]]]},{"k":25865,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1859"]],[3,6,["G106"]],[6,8,["G1448"]],[8,11,["G3004"]],[11,13,["G3957"]]]},{"k":25866,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G2532"]],[5,6,["G1122"]],[6,7,["G2212"]],[7,8,["G4459"]],[8,11,["G337"]],[11,12,["G846"]],[12,13,["G1063"]],[13,15,["G5399"]],[15,16,["G3588"]],[16,17,["G2992"]]]},{"k":25867,"v":[[0,1,["G1161"]],[1,2,["G1525"]],[2,3,["G4567"]],[3,4,["G1519"]],[4,5,["G2455"]],[5,6,["G1941"]],[6,7,["G2469"]],[7,8,["G5607"]],[8,9,["G1537"]],[9,10,["G3588"]],[10,11,["G706"]],[11,13,["G3588"]],[13,14,["G1427"]]]},{"k":25868,"v":[[0,1,["G2532"]],[1,5,["G565"]],[5,8,["G4814"]],[8,9,["G3588"]],[9,11,["G749"]],[11,12,["G2532"]],[12,13,["G4755"]],[13,14,["G4459"]],[14,17,["G3860"]],[17,18,["G846"]],[18,20,["G846"]]]},{"k":25869,"v":[[0,1,["G2532"]],[1,4,["G5463"]],[4,5,["G2532"]],[5,6,["G4934"]],[6,8,["G1325"]],[8,9,["G846"]],[9,10,["G694"]]]},{"k":25870,"v":[[0,1,["G2532"]],[1,3,["G1843"]],[3,4,["G2532"]],[4,5,["G2212"]],[5,6,["G2120"]],[6,8,["G3860"]],[8,9,["G846"]],[9,11,["G846"]],[11,15,["G817"]],[15,17,["G3793"]]]},{"k":25871,"v":[[0,1,["G1161"]],[1,2,["G2064"]],[2,3,["G3588"]],[3,4,["G2250"]],[4,7,["G106"]],[7,8,["G1722","G3739"]],[8,9,["G3588"]],[9,10,["G3957"]],[10,11,["G1163"]],[11,13,["G2380"]]]},{"k":25872,"v":[[0,1,["G2532"]],[1,3,["G649"]],[3,4,["G4074"]],[4,5,["G2532"]],[5,6,["G2491"]],[6,7,["G2036"]],[7,8,["G4198"]],[8,10,["G2090"]],[10,11,["G2254"]],[11,12,["G3588"]],[12,13,["G3957"]],[13,14,["G2443"]],[14,17,["G5315"]]]},{"k":25873,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G4226"]],[6,7,["G2309"]],[7,11,["G2090"]]]},{"k":25874,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G2400"]],[6,8,["G5216"]],[8,10,["G1525"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G4172"]],[13,17,["G444"]],[17,18,["G4876"]],[18,19,["G5213"]],[19,20,["G941"]],[20,22,["G2765"]],[22,24,["G5204"]],[24,25,["G190"]],[25,26,["G846"]],[26,27,["G1519"]],[27,28,["G3588"]],[28,29,["G3614"]],[29,30,["G3757"]],[30,33,["G1531"]]]},{"k":25875,"v":[[0,1,["G2532"]],[1,4,["G2046"]],[4,6,["G3588"]],[6,7,["G3617"]],[7,9,["G3588"]],[9,10,["G3614"]],[10,11,["G3588"]],[11,12,["G1320"]],[12,13,["G3004"]],[13,15,["G4671"]],[15,16,["G4226"]],[16,17,["G2076"]],[17,18,["G3588"]],[18,19,["G2646"]],[19,20,["G3699"]],[20,23,["G5315"]],[23,24,["G3588"]],[24,25,["G3957"]],[25,26,["G3326"]],[26,27,["G3450"]],[27,28,["G3101"]]]},{"k":25876,"v":[[0,2,["G2548"]],[2,4,["G1166"]],[4,5,["G5213"]],[5,7,["G3173"]],[7,9,["G508"]],[9,10,["G4766"]],[10,11,["G1563"]],[11,13,["G2090"]]]},{"k":25877,"v":[[0,1,["G1161"]],[1,3,["G565"]],[3,5,["G2147"]],[5,6,["G2531"]],[6,9,["G2046"]],[9,11,["G846"]],[11,12,["G2532"]],[12,15,["G2090"]],[15,16,["G3588"]],[16,17,["G3957"]]]},{"k":25878,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,3,["G3588"]],[3,4,["G5610"]],[4,6,["G1096"]],[6,9,["G377"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G1427"]],[12,13,["G652"]],[13,14,["G4862"]],[14,15,["G846"]]]},{"k":25879,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,7,["G1939"]],[7,10,["G1937"]],[10,12,["G5315"]],[12,13,["G5124"]],[13,14,["G3957"]],[14,15,["G3326"]],[15,16,["G5216"]],[16,17,["G4253"]],[17,18,["G3165"]],[18,19,["G3958"]]]},{"k":25880,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,7,["(G3754)"]],[7,8,["G3364"]],[8,10,["G3765"]],[10,11,["G5315"]],[11,12,["G1537","G846"]],[12,13,["G2193","G3755"]],[13,16,["G4137"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G932"]],[19,21,["G2316"]]]},{"k":25881,"v":[[0,1,["G2532"]],[1,3,["G1209"]],[3,5,["G4221"]],[5,8,["G2168"]],[8,10,["G2036"]],[10,11,["G2983"]],[11,12,["G5124"]],[12,13,["G2532"]],[13,14,["G1266"]],[14,17,["G1438"]]]},{"k":25882,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,7,["(G3754)"]],[7,8,["G3364"]],[8,9,["G4095"]],[9,10,["G575"]],[10,11,["G3588"]],[11,12,["G1081"]],[12,14,["G3588"]],[14,15,["G288"]],[15,16,["G2193","G3755"]],[16,17,["G3588"]],[17,18,["G932"]],[18,20,["G2316"]],[20,22,["G2064"]]]},{"k":25883,"v":[[0,1,["G2532"]],[1,3,["G2983"]],[3,4,["G740"]],[4,7,["G2168"]],[7,9,["G2806"]],[9,11,["G2532"]],[11,12,["G1325"]],[12,14,["G846"]],[14,15,["G3004"]],[15,16,["G5124"]],[16,17,["G2076"]],[17,18,["G3450"]],[18,19,["G4983"]],[19,22,["G1325"]],[22,23,["G5228"]],[23,24,["G5216"]],[24,25,["G5124"]],[25,26,["G4160"]],[26,27,["G1519"]],[27,28,["G364"]],[28,30,["G1699"]]]},{"k":25884,"v":[[0,1,["G5615"]],[1,2,["G2532"]],[2,3,["G3588"]],[3,4,["G4221"]],[4,6,["G1172"]],[6,7,["G3004"]],[7,8,["G5124"]],[8,10,["G4221"]],[10,11,["G3588"]],[11,12,["G2537"]],[12,13,["G1242"]],[13,14,["G1722"]],[14,15,["G3450"]],[15,16,["G129"]],[16,19,["G1632"]],[19,20,["G5228"]],[20,21,["G5216"]]]},{"k":25885,"v":[[0,1,["G4133"]],[1,2,["G2400"]],[2,3,["G3588"]],[3,4,["G5495"]],[4,8,["G3860"]],[8,9,["G3165"]],[9,11,["G3326"]],[11,12,["G1700"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G5132"]]]},{"k":25886,"v":[[0,1,["G2532"]],[1,2,["G3303"]],[2,3,["G3588"]],[3,4,["G5207"]],[4,6,["G444"]],[6,7,["G4198"]],[7,8,["G2596"]],[8,11,["G3724"]],[11,12,["G4133"]],[12,13,["G3759"]],[13,15,["G1565"]],[15,16,["G444"]],[16,17,["G1223"]],[17,18,["G3739"]],[18,21,["G3860"]]]},{"k":25887,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G756"]],[3,5,["G4802"]],[5,6,["G4314"]],[6,7,["G1438"]],[7,8,["G5101","(G686)"]],[8,9,["G1537"]],[9,10,["G846"]],[10,12,["G1498"]],[12,14,["G3195"]],[14,15,["G4238"]],[15,17,["G5124"]]]},{"k":25888,"v":[[0,1,["G1161"]],[1,3,["G1096"]],[3,4,["G2532"]],[4,6,["G5379"]],[6,7,["G1722"]],[7,8,["G846"]],[8,9,["G5101"]],[9,11,["G846"]],[11,14,["G1380"]],[14,15,["(G1511)"]],[15,16,["G3187"]]]},{"k":25889,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G3588"]],[6,7,["G935"]],[7,9,["G3588"]],[9,10,["G1484"]],[10,13,["G2961"]],[13,14,["G846"]],[14,15,["G2532"]],[15,20,["G1850"]],[20,21,["G846"]],[21,23,["G2564"]],[23,24,["G2110"]]]},{"k":25890,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,4,["G3756"]],[4,6,["G3779"]],[6,7,["G235"]],[7,11,["G3187"]],[11,12,["G1722"]],[12,13,["G5213"]],[13,16,["G1096"]],[16,17,["G5613"]],[17,18,["G3588"]],[18,19,["G3501"]],[19,20,["G2532"]],[20,24,["G2233"]],[24,25,["G5613"]],[25,29,["G1247"]]]},{"k":25891,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,4,["G3187"]],[4,9,["G345"]],[9,10,["G2228"]],[10,13,["G1247"]],[13,15,["G3780"]],[15,20,["G345"]],[20,21,["G1161"]],[21,22,["G1473"]],[22,23,["G1510"]],[23,24,["G1722","G3319"]],[24,25,["G5216"]],[25,26,["G5613"]],[26,29,["G1247"]]]},{"k":25892,"v":[[0,0,["(G1161)"]],[0,1,["G5210"]],[1,2,["G2075"]],[2,6,["G1265"]],[6,7,["G3326"]],[7,8,["G1700"]],[8,9,["G1722"]],[9,10,["G3450"]],[10,11,["G3986"]]]},{"k":25893,"v":[[0,2,["G2504"]],[2,3,["G1303"]],[3,5,["G5213"]],[5,7,["G932"]],[7,8,["G2531"]],[8,9,["G3450"]],[9,10,["G3962"]],[10,12,["G1303"]],[12,14,["G3427"]]]},{"k":25894,"v":[[0,1,["G2443"]],[1,4,["G2068"]],[4,5,["G2532"]],[5,6,["G4095"]],[6,7,["G1909"]],[7,8,["G3450"]],[8,9,["G5132"]],[9,10,["G1722"]],[10,11,["G3450"]],[11,12,["G932"]],[12,13,["G2532"]],[13,14,["G2523"]],[14,15,["G1909"]],[15,16,["G2362"]],[16,17,["G2919"]],[17,18,["G3588"]],[18,19,["G1427"]],[19,20,["G5443"]],[20,22,["G2474"]]]},{"k":25895,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2036"]],[4,5,["G4613"]],[5,6,["G4613"]],[6,7,["G2400"]],[7,8,["G4567"]],[8,10,["G1809"]],[10,13,["G5209"]],[13,17,["G4617"]],[17,19,["G5613"]],[19,20,["G4621"]]]},{"k":25896,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,4,["G1189"]],[4,5,["G4012"]],[5,6,["G4675"]],[6,7,["G2443"]],[7,8,["G4675"]],[8,9,["G4102"]],[9,10,["G1587"]],[10,11,["G3361"]],[11,12,["G2532"]],[12,13,["G4218"]],[13,14,["G4771"]],[14,16,["G1994"]],[16,17,["G4741"]],[17,18,["G4675"]],[18,19,["G80"]]]},{"k":25897,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G2962"]],[6,8,["G1510"]],[8,9,["G2092"]],[9,11,["G4198"]],[11,12,["G3326"]],[12,13,["G4675"]],[13,14,["G2532"]],[14,15,["G1519"]],[15,16,["G5438"]],[16,17,["G2532"]],[17,18,["G1519"]],[18,19,["G2288"]]]},{"k":25898,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G3004"]],[5,6,["G4671"]],[6,7,["G4074"]],[7,9,["G220"]],[9,11,["G3364"]],[11,12,["G5455"]],[12,14,["G4594"]],[14,15,["G4250"]],[15,16,["(G2228)"]],[16,19,["G5151"]],[19,20,["G533"]],[20,22,["(G3361)"]],[22,23,["G1492"]],[23,24,["G3165"]]]},{"k":25899,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G3753"]],[6,8,["G649"]],[8,9,["G5209"]],[9,10,["G817"]],[10,11,["G905"]],[11,12,["G2532"]],[12,13,["G4082"]],[13,14,["G2532"]],[14,15,["G5266","(G3361)"]],[15,16,["G5302"]],[16,19,["G5100"]],[19,20,["G1161"]],[20,21,["G3588"]],[21,22,["G2036"]],[22,23,["G3762"]]]},{"k":25900,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,5,["G846"]],[5,6,["G235"]],[6,7,["G3568"]],[7,10,["G2192"]],[10,12,["G905"]],[12,15,["G142"]],[15,17,["G2532"]],[17,18,["G3668"]],[18,19,["(G2532)"]],[19,20,["G4082"]],[20,21,["G2532"]],[21,24,["G2192"]],[24,25,["G3361"]],[25,29,["G4453"]],[29,30,["G848"]],[30,31,["G2440"]],[31,32,["G2532"]],[32,33,["G59"]],[33,34,["(G3162)"]]]},{"k":25901,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G5124"]],[7,10,["G1125"]],[10,11,["G1163"]],[11,12,["G2089"]],[12,14,["G5055"]],[14,15,["G1722"]],[15,16,["G1698"]],[16,17,["G2532"]],[17,20,["G3049"]],[20,21,["G3326"]],[21,23,["G459"]],[23,24,["G1063","(G2532)"]],[24,26,["G3588"]],[26,27,["G4012"]],[27,28,["G1700"]],[28,29,["G2192"]],[29,31,["G5056"]]]},{"k":25902,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G2962"]],[4,5,["G2400"]],[5,6,["G5602"]],[6,8,["G1417"]],[8,9,["G3162"]],[9,10,["G1161"]],[10,11,["G3588"]],[11,12,["G2036"]],[12,14,["G846"]],[14,16,["G2076"]],[16,17,["G2425"]]]},{"k":25903,"v":[[0,1,["G2532"]],[1,4,["G1831"]],[4,6,["G4198"]],[6,10,["G2596","G1485"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G3735"]],[13,15,["G1636"]],[15,16,["G1161"]],[16,17,["G846"]],[17,18,["G3101"]],[18,19,["G2532"]],[19,20,["G190"]],[20,21,["G846"]]]},{"k":25904,"v":[[0,1,["G1161"]],[1,4,["G1096"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G5117"]],[7,9,["G2036"]],[9,11,["G846"]],[11,12,["G4336"]],[12,15,["G1525"]],[15,16,["G3361"]],[16,17,["G1519"]],[17,18,["G3986"]]]},{"k":25905,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,4,["G645"]],[4,5,["G575"]],[5,6,["G846"]],[6,7,["G5616"]],[7,9,["G3037"]],[9,10,["G1000"]],[10,11,["G2532"]],[11,13,["G5087","G1119"]],[13,15,["G4336"]]]},{"k":25906,"v":[[0,1,["G3004"]],[1,2,["G3962"]],[2,3,["G1487"]],[3,6,["G1014"]],[6,7,["G3911"]],[7,8,["G5124"]],[8,9,["G4221"]],[9,10,["G575"]],[10,11,["G1700"]],[11,12,["G4133"]],[12,13,["G3361"]],[13,14,["G3450"]],[14,15,["G2307"]],[15,16,["G235"]],[16,17,["G4674"]],[17,19,["G1096"]]]},{"k":25907,"v":[[0,1,["G1161"]],[1,3,["G3700"]],[3,5,["G32"]],[5,7,["G846"]],[7,8,["G575"]],[8,9,["G3772"]],[9,10,["G1765"]],[10,11,["G846"]]]},{"k":25908,"v":[[0,1,["G2532"]],[1,2,["G1096"]],[2,3,["G1722"]],[3,5,["G74"]],[5,7,["G4336"]],[7,9,["G1617"]],[9,10,["G1161"]],[10,11,["G846"]],[11,12,["G2402"]],[12,13,["G1096"]],[13,16,["G5616"]],[16,18,["G2361"]],[18,20,["G129"]],[20,22,["G2597"]],[22,23,["G1909"]],[23,24,["G3588"]],[24,25,["G1093"]]]},{"k":25909,"v":[[0,1,["G2532"]],[1,5,["G450"]],[5,6,["G575"]],[6,7,["G4335"]],[7,10,["G2064"]],[10,11,["G4314"]],[11,13,["G3101"]],[13,15,["G2147"]],[15,16,["G846"]],[16,17,["G2837"]],[17,18,["G575"]],[18,19,["G3077"]]]},{"k":25910,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G5101"]],[5,6,["G2518"]],[6,8,["G450"]],[8,10,["G4336"]],[10,11,["G3363"]],[11,13,["G1525"]],[13,14,["G1519"]],[14,15,["G3986"]]]},{"k":25911,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G2089"]],[4,5,["G2980"]],[5,6,["G2400"]],[6,8,["G3793"]],[8,9,["G2532"]],[9,13,["G3004"]],[13,14,["G2455"]],[14,15,["G1520"]],[15,17,["G3588"]],[17,18,["G1427"]],[18,20,["G4281"]],[20,21,["G846"]],[21,22,["G2532"]],[22,24,["G1448"]],[24,26,["G2424"]],[26,28,["G5368"]],[28,29,["G846"]]]},{"k":25912,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G2455"]],[6,7,["G3860"]],[7,9,["G3588"]],[9,10,["G5207"]],[10,12,["G444"]],[12,15,["G5370"]]]},{"k":25913,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,5,["G4012"]],[5,6,["G846"]],[6,7,["G1492"]],[7,10,["G2071"]],[10,12,["G2036"]],[12,14,["G846"]],[14,15,["G2962"]],[15,17,["(G1487)"]],[17,18,["G3960"]],[18,19,["G1722"]],[19,21,["G3162"]]]},{"k":25914,"v":[[0,1,["G2532","(G5100)"]],[1,2,["G1520"]],[2,3,["G1537"]],[3,4,["G846"]],[4,5,["G3960"]],[5,6,["G3588"]],[6,7,["G1401"]],[7,9,["G3588"]],[9,11,["G749"]],[11,12,["G2532"]],[12,14,["G851"]],[14,15,["G846"]],[15,16,["G1188"]],[16,17,["G3775"]]]},{"k":25915,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,6,["G1439"]],[6,9,["G2193","G5127"]],[9,10,["G2532"]],[10,12,["G680"]],[12,13,["G846"]],[13,14,["G5621"]],[14,16,["G2390"]],[16,17,["G846"]]]},{"k":25916,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,7,["G749"]],[7,8,["G2532"]],[8,9,["G4755"]],[9,11,["G3588"]],[11,12,["G2411"]],[12,13,["G2532"]],[13,15,["G4245"]],[15,18,["G3854"]],[18,19,["G1909"]],[19,20,["G846"]],[20,24,["G1831"]],[24,25,["G5613"]],[25,26,["G1909"]],[26,28,["G3027"]],[28,29,["G3326"]],[29,30,["G3162"]],[30,31,["G2532"]],[31,32,["G3586"]]]},{"k":25917,"v":[[0,2,["G3450"]],[2,3,["G5607"]],[3,4,["G2596","G2250"]],[4,5,["G3326"]],[5,6,["G5216"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G2411"]],[9,12,["G1614"]],[12,13,["G3756"]],[13,14,["G5495"]],[14,15,["G1909"]],[15,16,["G1691"]],[16,17,["G235"]],[17,18,["G3778"]],[18,19,["G2076"]],[19,20,["G5216"]],[20,21,["G5610"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G1849"]],[24,26,["G4655"]]]},{"k":25918,"v":[[0,1,["G1161"]],[1,2,["G4815"]],[2,4,["G846"]],[4,6,["G71"]],[6,8,["G2532"]],[8,9,["G1521"]],[9,10,["G846"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,14,["G749"]],[14,15,["G3624"]],[15,16,["G1161"]],[16,17,["G4074"]],[17,18,["G190"]],[18,20,["G3113"]]]},{"k":25919,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G681"]],[5,7,["G4442"]],[7,8,["G1722"]],[8,10,["G3319"]],[10,12,["G3588"]],[12,13,["G833"]],[13,14,["G2532"]],[14,18,["G4776"]],[18,19,["G4074"]],[19,21,["G2521"]],[21,22,["G1722","G3319"]],[22,23,["G846"]]]},{"k":25920,"v":[[0,1,["G1161"]],[1,3,["G5100"]],[3,4,["G3814"]],[4,5,["G1492"]],[5,6,["G846"]],[6,9,["G2521"]],[9,10,["G4314"]],[10,11,["G3588"]],[11,12,["G5457"]],[12,13,["G2532"]],[13,15,["G816"]],[15,17,["G846"]],[17,19,["G2036"]],[19,21,["G3778"]],[21,22,["G2258"]],[22,23,["G2532"]],[23,24,["G4862"]],[24,25,["G846"]]]},{"k":25921,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G720"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G1135"]],[6,8,["G1492"]],[8,9,["G846"]],[9,10,["G3756"]]]},{"k":25922,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,5,["G1024"]],[5,6,["G2087"]],[6,7,["G1492"]],[7,8,["G846"]],[8,10,["G5346"]],[10,11,["G4771"]],[11,12,["G1488"]],[12,13,["G2532"]],[13,14,["G1537"]],[14,15,["G846"]],[15,16,["G1161"]],[16,17,["G4074"]],[17,18,["G2036"]],[18,19,["G444"]],[19,21,["G1510"]],[21,22,["G3756"]]]},{"k":25923,"v":[[0,1,["G2532"]],[1,2,["G5616"]],[2,8,["G1339","G3391","G5610"]],[8,9,["G243"]],[9,11,["G1340"]],[11,12,["G3004"]],[12,15,["G1909","G225"]],[15,16,["G3778"]],[16,18,["G2532"]],[18,19,["G2258"]],[19,20,["G3326"]],[20,21,["G846"]],[21,22,["G1063"]],[22,24,["G2076"]],[24,25,["(G2532)"]],[25,26,["G1057"]]]},{"k":25924,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2036"]],[3,4,["G444"]],[4,6,["G1492"]],[6,7,["G3756"]],[7,8,["G3739"]],[8,10,["G3004"]],[10,11,["G2532"]],[11,12,["G3916"]],[12,14,["G846"]],[14,15,["G2089"]],[15,16,["G2980"]],[16,17,["G3588"]],[17,18,["G220"]],[18,19,["G5455"]]]},{"k":25925,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G4762"]],[4,7,["G1689"]],[7,8,["G4074"]],[8,9,["G2532"]],[9,10,["G4074"]],[10,11,["G5279"]],[11,12,["G3588"]],[12,13,["G3056"]],[13,15,["G3588"]],[15,16,["G2962"]],[16,17,["G5613"]],[17,20,["G2036"]],[20,22,["G846"]],[22,23,["G4250"]],[23,25,["G220"]],[25,26,["G5455"]],[26,29,["G533"]],[29,30,["G3165"]],[30,31,["G5151"]]]},{"k":25926,"v":[[0,1,["G2532"]],[1,2,["G4074"]],[2,3,["G1831"]],[3,4,["G1854"]],[4,6,["G2799"]],[6,7,["G4090"]]]},{"k":25927,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G435"]],[3,5,["G4912"]],[5,6,["G2424"]],[6,7,["G1702"]],[7,8,["G846"]],[8,10,["G1194"]],[10,11,[]]]},{"k":25928,"v":[[0,1,["G2532"]],[1,5,["G4028"]],[5,6,["G846"]],[6,8,["G5180"]],[8,9,["G846"]],[9,11,["G3588"]],[11,12,["G4383"]],[12,13,["G2532"]],[13,14,["G1905"]],[14,15,["G846"]],[15,16,["G3004"]],[16,17,["G4395"]],[17,18,["G5101"]],[18,19,["G2076"]],[19,22,["G3817"]],[22,23,["G4571"]]]},{"k":25929,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,4,["G2087"]],[4,5,["G987"]],[5,6,["G3004"]],[6,8,["G1519"]],[8,9,["G846"]]]},{"k":25930,"v":[[0,1,["G2532"]],[1,4,["G5613"]],[4,6,["G1096"]],[6,7,["G2250"]],[7,8,["G3588"]],[8,9,["G4244"]],[9,11,["G3588"]],[11,12,["G2992"]],[12,13,["G5037"]],[13,16,["G749"]],[16,17,["G2532"]],[17,19,["G1122"]],[19,21,["G4863"]],[21,22,["G2532"]],[22,23,["G321"]],[23,24,["G846"]],[24,25,["G1519"]],[25,26,["G1438"]],[26,27,["G4892"]],[27,28,["G3004"]]]},{"k":25931,"v":[[0,0,["(G1161)"]],[0,1,["G1488"]],[1,2,["G4771"]],[2,3,["G3588"]],[3,4,["G5547"]],[4,5,["G2036"]],[5,6,["G2254"]],[6,7,["G1161"]],[7,9,["G2036"]],[9,11,["G846"]],[11,12,["G1437"]],[12,14,["G2036"]],[14,15,["G5213"]],[15,18,["G3364"]],[18,19,["G4100"]]]},{"k":25932,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,4,["G2532"]],[4,5,["G2065"]],[5,9,["G3364"]],[9,10,["G611"]],[10,11,["G3427"]],[11,12,["G2228"]],[12,15,["G630"]]]},{"k":25933,"v":[[0,1,["G575","G3568"]],[1,2,["(G2071)"]],[2,3,["G3588"]],[3,4,["G5207"]],[4,6,["G444"]],[6,7,["G2521"]],[7,8,["G1537"]],[8,11,["G1188"]],[11,13,["G3588"]],[13,14,["G1411"]],[14,16,["G2316"]]]},{"k":25934,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,4,["G3956"]],[4,5,["G1488"]],[5,6,["G4771"]],[6,7,["G3767"]],[7,8,["G3588"]],[8,9,["G5207"]],[9,11,["G2316"]],[11,12,["G1161"]],[12,13,["G3588"]],[13,14,["G5346"]],[14,15,["G4314"]],[15,16,["G846"]],[16,17,["G5210"]],[17,18,["G3004"]],[18,19,["G3754"]],[19,20,["G1473"]],[20,21,["G1510"]]]},{"k":25935,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G5101"]],[4,5,["G2192","G5532"]],[5,8,["G2089"]],[8,9,["G3141"]],[9,10,["G1063"]],[10,12,["G846"]],[12,14,["G191"]],[14,15,["G575"]],[15,17,["G846"]],[17,18,["G4750"]]]},{"k":25936,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G537"]],[3,4,["G4128"]],[4,6,["G846"]],[6,7,["G450"]],[7,9,["G71"]],[9,10,["G846"]],[10,11,["G1909"]],[11,12,["G4091"]]]},{"k":25937,"v":[[0,1,["G1161"]],[1,3,["G756"]],[3,5,["G2723"]],[5,6,["G846"]],[6,7,["G3004"]],[7,9,["G2147"]],[9,10,["G5126"]],[10,12,["G1294"]],[12,13,["G3588"]],[13,14,["G1484"]],[14,15,["G2532"]],[15,16,["G2967"]],[16,18,["G1325"]],[18,19,["G5411"]],[19,21,["G2541"]],[21,22,["G3004"]],[22,25,["G1438"]],[25,26,["G1511"]],[26,27,["G5547"]],[27,29,["G935"]]]},{"k":25938,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,3,["G1905"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G1488"]],[6,7,["G4771"]],[7,8,["G3588"]],[8,9,["G935"]],[9,11,["G3588"]],[11,12,["G2453"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G611"]],[15,16,["G846"]],[16,18,["G5346"]],[18,19,["G4771"]],[19,20,["G3004"]],[20,21,[]]]},{"k":25939,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G4091"]],[3,4,["G4314"]],[4,5,["G3588"]],[5,7,["G749"]],[7,8,["G2532"]],[8,10,["G3588"]],[10,11,["G3793"]],[11,13,["G2147"]],[13,14,["G3762"]],[14,15,["G158"]],[15,16,["G1722"]],[16,17,["G5129"]],[17,18,["G444"]]]},{"k":25940,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,6,["G2001"]],[6,7,["G3004"]],[7,10,["G383"]],[10,11,["G3588"]],[11,12,["G2992"]],[12,13,["G1321"]],[13,14,["G2596"]],[14,15,["G3650"]],[15,16,["G2449"]],[16,17,["G756"]],[17,18,["G575"]],[18,19,["G1056"]],[19,20,["G2193"]],[20,22,["G5602"]]]},{"k":25941,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,3,["G191"]],[3,5,["G1056"]],[5,7,["G1905"]],[7,8,["G1487"]],[8,9,["G3588"]],[9,10,["G444"]],[10,11,["G2076"]],[11,13,["G1057"]]]},{"k":25942,"v":[[0,1,["G2532"]],[1,6,["G1921"]],[6,7,["G3754"]],[7,10,["G2076","G1537"]],[10,11,["G2264"]],[11,12,["G1849"]],[12,14,["G375"]],[14,15,["G846"]],[15,16,["G4314"]],[16,17,["G2264"]],[17,19,["G846"]],[19,20,["G2532"]],[20,21,["G5607"]],[21,22,["G1722"]],[22,23,["G2414"]],[23,24,["G1722"]],[24,25,["G5025"]],[25,26,["G2250"]]]},{"k":25943,"v":[[0,1,["G1161"]],[1,3,["G2264"]],[3,4,["G1492"]],[4,5,["G2424"]],[5,9,["G5463","G3029"]],[9,10,["G1063"]],[10,12,["G2258"]],[12,13,["G2309"]],[13,15,["G1492"]],[15,16,["G846"]],[16,17,["G1537"]],[17,19,["G2425"]],[19,24,["G191"]],[24,26,["G4183"]],[26,27,["G4012"]],[27,28,["G846"]],[28,29,["G2532"]],[29,31,["G1679"]],[31,34,["G1492"]],[34,35,["G5100"]],[35,36,["G4592"]],[36,37,["G1096"]],[37,38,["G5259"]],[38,39,["G846"]]]},{"k":25944,"v":[[0,1,["G1161"]],[1,3,["G1905"]],[3,5,["G846"]],[5,6,["G1722"]],[6,7,["G2425"]],[7,8,["G3056"]],[8,9,["G1161"]],[9,10,["G846"]],[10,11,["G611"]],[11,12,["G846"]],[12,13,["G3762"]]]},{"k":25945,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G2532"]],[5,6,["G1122"]],[6,7,["G2476"]],[7,9,["G2159"]],[9,10,["G2723"]],[10,11,["G846"]]]},{"k":25946,"v":[[0,1,["G1161"]],[1,2,["G2264"]],[2,3,["G4862"]],[3,4,["G848"]],[4,7,["G4753"]],[7,11,["G1848","G846"]],[11,12,["G2532"]],[12,13,["G1702"]],[13,16,["G4016"]],[16,17,["G846"]],[17,20,["G2986"]],[20,21,["G2066"]],[21,25,["G375","G846"]],[25,27,["G4091"]]]},{"k":25947,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G2250"]],[4,5,["G4091"]],[5,6,["G2532"]],[6,7,["G2264"]],[7,9,["G1096"]],[9,10,["G5384"]],[10,11,["G3326","G240"]],[11,12,["G1063"]],[12,13,["G4391"]],[13,15,["G5607"]],[15,16,["G1722"]],[16,17,["G2189"]],[17,18,["G4314"]],[18,19,["G1438"]]]},{"k":25948,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,7,["G4779"]],[7,8,["G3588"]],[8,10,["G749"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G758"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G2992"]]]},{"k":25949,"v":[[0,1,["G2036"]],[1,2,["G4314"]],[2,3,["G846"]],[3,6,["G4374"]],[6,7,["G5126"]],[7,8,["G444"]],[8,10,["G3427"]],[10,11,["G5613"]],[11,14,["G654"]],[14,15,["G3588"]],[15,16,["G2992"]],[16,17,["G2532"]],[17,18,["G2400"]],[18,19,["G1473"]],[19,21,["G350"]],[21,23,["G1799"]],[23,24,["G5216"]],[24,26,["G2147"]],[26,27,["G3762"]],[27,28,["G158"]],[28,29,["G1722"]],[29,30,["G5129"]],[30,31,["G444"]],[31,35,["G3739"]],[35,37,["G2723"]],[37,38,["G846"]]]},{"k":25950,"v":[[0,1,["(G235)"]],[1,3,["G3761"]],[3,4,["G2264"]],[4,5,["G1063"]],[5,7,["G375"]],[7,8,["G5209"]],[8,9,["G4314"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G2400"]],[12,13,["G3762"]],[13,14,["G514"]],[14,16,["G2288"]],[16,17,["G2076"]],[17,18,["G4238"]],[18,20,["G846"]]]},{"k":25951,"v":[[0,3,["G3767"]],[3,4,["G3811"]],[4,5,["G846"]],[5,7,["G630"]],[7,8,[]]]},{"k":25952,"v":[[0,1,["G1161"]],[1,3,["G318"]],[3,5,["G2192"]],[5,6,["G630"]],[6,7,["G1520"]],[7,9,["G846"]],[9,10,["G2596"]],[10,12,["G1859"]]]},{"k":25953,"v":[[0,1,["G1161"]],[1,4,["G349"]],[4,7,["G3826"]],[7,8,["G3004"]],[8,9,["G142"]],[9,11,["G5126"]],[11,13,["G1161"]],[13,14,["G630"]],[14,16,["G2254"]],[16,17,["G912"]]]},{"k":25954,"v":[[0,1,["G3748"]],[1,2,["G1223"]],[2,4,["G5100"]],[4,5,["G4714"]],[5,6,["G1096"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G4172"]],[9,10,["G2532"]],[10,12,["G5408"]],[12,13,["G2258"]],[13,14,["G906"]],[14,15,["G1519"]],[15,16,["G5438"]]]},{"k":25955,"v":[[0,1,["G4091"]],[1,2,["G3767"]],[2,3,["G2309"]],[3,5,["G630"]],[5,6,["G2424"]],[6,10,["G4377","G3825"]]]},{"k":25956,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2019"]],[3,4,["G3004"]],[4,5,["G4717"]],[5,7,["G4717"]],[7,8,["G846"]]]},{"k":25957,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,8,["G5154"]],[8,9,["G1063"]],[9,10,["G5101"]],[10,11,["G2556"]],[11,13,["G3778"]],[13,14,["G4160"]],[14,17,["G2147"]],[17,18,["G3762"]],[18,19,["G158"]],[19,21,["G2288"]],[21,22,["G1722"]],[22,23,["G846"]],[23,26,["G3767"]],[26,27,["G3811"]],[27,28,["G846"]],[28,29,["G2532"]],[29,32,["G630"]]]},{"k":25958,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G1945"]],[4,6,["G3173"]],[6,7,["G5456"]],[7,8,["G154"]],[8,10,["G846"]],[10,13,["G4717"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G5456"]],[16,18,["G846"]],[18,19,["G2532"]],[19,21,["G3588"]],[21,23,["G749"]],[23,24,["G2729"]]]},{"k":25959,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,4,["G1948"]],[4,8,["G1096"]],[8,11,["G846","G155"]]]},{"k":25960,"v":[[0,1,["G1161"]],[1,3,["G630"]],[3,5,["G846"]],[5,8,["G1223"]],[8,9,["G4714"]],[9,10,["G2532"]],[10,11,["G5408"]],[11,13,["G906"]],[13,14,["G1519"]],[14,15,["G5438"]],[15,16,["G3739"]],[16,19,["G154"]],[19,20,["G1161"]],[20,22,["G3860"]],[22,23,["G2424"]],[23,25,["G846"]],[25,26,["G2307"]]]},{"k":25961,"v":[[0,1,["G2532"]],[1,2,["G5613"]],[2,6,["G520","G846"]],[6,10,["G1949"]],[10,11,["G5100"]],[11,12,["G4613"]],[12,14,["G2956"]],[14,15,["G2064"]],[15,17,["G575"]],[17,19,["G68"]],[19,22,["G846"]],[22,24,["G2007"]],[24,25,["G3588"]],[25,26,["G4716"]],[26,30,["G5342"]],[30,32,["G3693"]],[32,33,["G2424"]]]},{"k":25962,"v":[[0,1,["G1161"]],[1,3,["G190"]],[3,4,["G846"]],[4,6,["G4183"]],[6,7,["G4128"]],[7,9,["G2992"]],[9,10,["G2532"]],[10,12,["G1135"]],[12,13,["G3739"]],[13,14,["G2532"]],[14,15,["G2875"]],[15,16,["G2532"]],[16,17,["G2354"]],[17,18,["G846"]]]},{"k":25963,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G4762"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G2036"]],[6,7,["G2364"]],[7,9,["G2419"]],[9,10,["G2799"]],[10,11,["G3361"]],[11,12,["G1909"]],[12,13,["G1691"]],[13,14,["G4133"]],[14,15,["G2799"]],[15,16,["G1909"]],[16,17,["G1438"]],[17,18,["G2532"]],[18,19,["G1909"]],[19,20,["G5216"]],[20,21,["G5043"]]]},{"k":25964,"v":[[0,1,["G3754"]],[1,2,["G2400"]],[2,4,["G2250"]],[4,6,["G2064"]],[6,7,["G1722"]],[7,9,["G3739"]],[9,12,["G2046"]],[12,13,["G3107"]],[13,15,["G3588"]],[15,16,["G4723"]],[16,17,["G2532"]],[17,19,["G2836"]],[19,20,["G3739"]],[20,21,["G3756"]],[21,22,["G1080"]],[22,23,["G2532"]],[23,25,["G3149"]],[25,26,["G3739"]],[26,27,["G3756"]],[27,29,["G2337"]]]},{"k":25965,"v":[[0,1,["G5119"]],[1,4,["G756"]],[4,6,["G3004"]],[6,8,["G3588"]],[8,9,["G3735"]],[9,10,["G4098"]],[10,11,["G1909"]],[11,12,["G2248"]],[12,13,["G2532"]],[13,15,["G3588"]],[15,16,["G1015"]],[16,17,["G2572"]],[17,18,["G2248"]]]},{"k":25966,"v":[[0,1,["G3754"]],[1,2,["G1487"]],[2,4,["G4160"]],[4,6,["G5023"]],[6,7,["G1722"]],[7,9,["G5200"]],[9,10,["G3586"]],[10,11,["G5101"]],[11,14,["G1096"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G3584"]]]},{"k":25967,"v":[[0,1,["G1161"]],[1,4,["G2532"]],[4,5,["G1417"]],[5,6,["G2087"]],[6,7,["G2557"]],[7,8,["G71"]],[8,9,["G4862"]],[9,10,["G846"]],[10,15,["G337"]]]},{"k":25968,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G565"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G5117"]],[8,11,["G2564"]],[11,12,["G2898"]],[12,13,["G1563"]],[13,15,["G4717"]],[15,16,["G846"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G2557"]],[19,20,["G3739","G3303"]],[20,21,["G1537"]],[21,24,["G1188"]],[24,25,["G1161"]],[25,27,["G3739"]],[27,28,["G1537"]],[28,30,["G710"]]]},{"k":25969,"v":[[0,1,["G1161"]],[1,2,["G3004"]],[2,3,["G2424"]],[3,4,["G3962"]],[4,5,["G863"]],[5,6,["G846"]],[6,7,["G1063"]],[7,9,["G1492"]],[9,10,["G3756"]],[10,11,["G5101"]],[11,13,["G4160"]],[13,14,["G1161"]],[14,16,["G1266"]],[16,17,["G846"]],[17,18,["G2440"]],[18,20,["G906"]],[20,21,["G2819"]]]},{"k":25970,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2992"]],[3,4,["G2476"]],[4,5,["G2334"]],[5,6,["G1161"]],[6,7,["G3588"]],[7,8,["G758"]],[8,9,["G2532"]],[9,10,["G4862"]],[10,11,["G846"]],[11,12,["G1592"]],[12,14,["G3004"]],[14,16,["G4982"]],[16,17,["G243"]],[17,20,["G4982"]],[20,21,["G1438"]],[21,22,["G1487"]],[22,23,["G3778"]],[23,24,["G2076"]],[24,25,["G5547"]],[25,26,["G3588"]],[26,27,["G1588"]],[27,29,["G2316"]]]},{"k":25971,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4757"]],[3,4,["G2532"]],[4,5,["G1702"]],[5,6,["G846"]],[6,8,["G4334"]],[8,10,["G2532"]],[10,11,["G4374"]],[11,12,["G846"]],[12,13,["G3690"]]]},{"k":25972,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,3,["G1487"]],[3,4,["G4771"]],[4,5,["G1488"]],[5,6,["G3588"]],[6,7,["G935"]],[7,9,["G3588"]],[9,10,["G2453"]],[10,11,["G4982"]],[11,12,["G4572"]]]},{"k":25973,"v":[[0,1,["G1161"]],[1,3,["G1923"]],[3,4,["G2532"]],[4,5,["G2258"]],[5,6,["G1125"]],[6,7,["G1909"]],[7,8,["G846"]],[8,10,["G1121"]],[10,12,["G1673"]],[12,13,["G2532"]],[13,14,["G4513"]],[14,15,["G2532"]],[15,16,["G1444"]],[16,17,["G3778"]],[17,18,["G2076"]],[18,19,["G3588"]],[19,20,["G935"]],[20,22,["G3588"]],[22,23,["G2453"]]]},{"k":25974,"v":[[0,1,["G1161"]],[1,2,["G1520"]],[2,4,["G3588"]],[4,5,["G2557"]],[5,8,["G2910"]],[8,10,["G987"]],[10,11,["G846"]],[11,12,["G3004"]],[12,13,["G1487"]],[13,14,["G4771"]],[14,15,["G1488"]],[15,16,["G5547"]],[16,17,["G4982"]],[17,18,["G4572"]],[18,19,["G2532"]],[19,20,["G2248"]]]},{"k":25975,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2087"]],[3,4,["G611"]],[4,5,["G2008"]],[5,6,["G846"]],[6,7,["G3004"]],[7,9,["G3761"]],[9,10,["G4771"]],[10,11,["G5399"]],[11,12,["G2316"]],[12,13,["(G3754)"]],[13,15,["G1488"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G846"]],[18,19,["G2917"]]]},{"k":25976,"v":[[0,1,["G2532"]],[1,2,["G2249"]],[2,3,["G3303"]],[3,4,["G1346"]],[4,5,["G1063"]],[5,7,["G618"]],[7,10,["G514"]],[10,13,["G3739","G4238"]],[13,14,["G1161"]],[14,16,["G3778"]],[16,18,["G4238"]],[18,19,["G3762"]],[19,20,["G824"]]]},{"k":25977,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G2424"]],[5,6,["G2962"]],[6,7,["G3415"]],[7,8,["G3450"]],[8,9,["G3752"]],[9,11,["G2064"]],[11,12,["G1722"]],[12,13,["G4675"]],[13,14,["G932"]]]},{"k":25978,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G281"]],[6,8,["G3004"]],[8,10,["G4671"]],[10,12,["G4594"]],[12,15,["G2071"]],[15,16,["G3326"]],[16,17,["G1700"]],[17,18,["G1722"]],[18,19,["G3857"]]]},{"k":25979,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G5616"]],[4,6,["G1623"]],[6,7,["G5610"]],[7,8,["G2532"]],[8,10,["G1096"]],[10,12,["G4655"]],[12,13,["G1909"]],[13,14,["G3650"]],[14,15,["G3588"]],[15,16,["G1093"]],[16,17,["G2193"]],[17,19,["G1766"]],[19,20,["G5610"]]]},{"k":25980,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2246"]],[3,5,["G4654"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G2665"]],[8,10,["G3588"]],[10,11,["G3485"]],[11,13,["G4977"]],[13,16,["G3319"]]]},{"k":25981,"v":[[0,1,["G2532"]],[1,3,["G2424"]],[3,5,["G5455"]],[5,8,["G3173"]],[8,9,["G5456"]],[9,11,["G2036"]],[11,12,["G3962"]],[12,13,["G1519"]],[13,14,["G4675"]],[14,15,["G5495"]],[15,17,["G3908"]],[17,18,["G3450"]],[18,19,["G4151"]],[19,20,["G2532"]],[20,22,["G2036"]],[22,23,["G5023"]],[23,28,["G1606"]]]},{"k":25982,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1543"]],[4,5,["G1492"]],[5,8,["G1096"]],[8,10,["G1392"]],[10,11,["G2316"]],[11,12,["G3004"]],[12,13,["G3689"]],[13,14,["G3778"]],[14,15,["G2258"]],[15,17,["G1342"]],[17,18,["G444"]]]},{"k":25983,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G3793"]],[4,7,["G4836"]],[7,8,["G1909"]],[8,9,["G5026"]],[9,10,["G2335"]],[10,11,["G2334"]],[11,16,["G1096"]],[16,17,["G5180"]],[17,18,["G1438"]],[18,19,["G4738"]],[19,21,["G5290"]]]},{"k":25984,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,3,["G846"]],[3,4,["G1110"]],[4,5,["G2532"]],[5,7,["G1135"]],[7,9,["G4870"]],[9,10,["G846"]],[10,11,["G575"]],[11,12,["G1056"]],[12,13,["G2476"]],[13,15,["G3113"]],[15,16,["G3708"]],[16,18,["G5023"]]]},{"k":25985,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,6,["G435"]],[6,7,["G3686"]],[7,8,["G2501"]],[8,9,["(G5225)"]],[9,10,["G1010"]],[10,15,["G18"]],[15,16,["G435"]],[16,17,["G2532"]],[17,19,["G1342"]]]},{"k":25986,"v":[[0,2,["G3778"]],[2,3,["G2258"]],[3,4,["G3756"]],[4,5,["G4784"]],[5,7,["G3588"]],[7,8,["G1012"]],[8,9,["G2532"]],[9,10,["G4234"]],[10,12,["G846"]],[12,15,["G575"]],[15,16,["G707"]],[16,18,["G4172"]],[18,20,["G3588"]],[20,21,["G2453"]],[21,22,["G3739"]],[22,23,["G2532"]],[23,24,["G846"]],[24,26,["G4327"]],[26,27,["G3588"]],[27,28,["G932"]],[28,30,["G2316"]]]},{"k":25987,"v":[[0,1,["G3778"]],[1,3,["G4334"]],[3,5,["G4091"]],[5,7,["G154"]],[7,8,["G3588"]],[8,9,["G4983"]],[9,11,["G2424"]]]},{"k":25988,"v":[[0,1,["G2532"]],[1,5,["G2507","G846"]],[5,7,["G1794"]],[7,8,["G846"]],[8,10,["G4616"]],[10,11,["G2532"]],[11,12,["G5087"]],[12,13,["G846"]],[13,14,["G1722"]],[14,16,["G3418"]],[16,21,["G2991"]],[21,22,["G3757"]],[22,24,["G3762","G3764"]],[24,25,["(G3756)"]],[25,26,["G2258"]],[26,27,["G2749"]]]},{"k":25989,"v":[[0,1,["G2532"]],[1,3,["G2250"]],[3,4,["G2258"]],[4,6,["G3904"]],[6,7,["G2532"]],[7,9,["G4521"]],[9,11,["G2020"]]]},{"k":25990,"v":[[0,1,["G1161"]],[1,3,["G1135"]],[3,4,["G2532"]],[4,5,["G3748"]],[5,7,["G2258","G4905"]],[7,8,["G846"]],[8,9,["G1537"]],[9,10,["G1056"]],[10,12,["G2628"]],[12,14,["G2300"]],[14,15,["G3588"]],[15,16,["G3419"]],[16,17,["G2532"]],[17,18,["G5613"]],[18,19,["G846"]],[19,20,["G4983"]],[20,22,["G5087"]]]},{"k":25991,"v":[[0,1,["G1161"]],[1,3,["G5290"]],[3,5,["G2090"]],[5,6,["G759"]],[6,7,["G2532"]],[7,8,["G3464"]],[8,9,["G2532"]],[9,10,["G2270"]],[10,11,["G3588","(G3303)"]],[11,13,["G4521"]],[13,14,["G2596"]],[14,16,["G3588"]],[16,17,["G1785"]]]},{"k":25992,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G3391"]],[4,7,["G3588"]],[7,8,["G4521"]],[8,13,["G901","G3722"]],[13,15,["G2064"]],[15,16,["G1909"]],[16,17,["G3588"]],[17,18,["G3418"]],[18,19,["G5342"]],[19,21,["G759"]],[21,22,["G3739"]],[22,25,["G2090"]],[25,26,["G2532"]],[26,27,["G5100"]],[27,29,["G4862"]],[29,30,["G846"]]]},{"k":25993,"v":[[0,1,["G1161"]],[1,3,["G2147"]],[3,4,["G3588"]],[4,5,["G3037"]],[5,7,["G617"]],[7,8,["G575"]],[8,9,["G3588"]],[9,10,["G3419"]]]},{"k":25994,"v":[[0,1,["G2532"]],[1,4,["G1525"]],[4,6,["G2147"]],[6,7,["G3756"]],[7,8,["G3588"]],[8,9,["G4983"]],[9,11,["G3588"]],[11,12,["G2962"]],[12,13,["G2424"]]]},{"k":25995,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G846"]],[7,10,["G1280"]],[10,11,["G4012","G5127","(G2532)"]],[11,12,["G2400"]],[12,13,["G1417"]],[13,14,["G435"]],[14,16,["G2186"]],[16,17,["G846"]],[17,18,["G1722"]],[18,19,["G797"]],[19,20,["G2067"]]]},{"k":25996,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G1096"]],[4,5,["G1719"]],[5,6,["G2532"]],[6,8,["G2827"]],[8,10,["G4383"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G1093"]],[13,15,["G2036"]],[15,16,["G4314"]],[16,17,["G846"]],[17,18,["G5101"]],[18,19,["G2212"]],[19,21,["G3588"]],[21,22,["G2198"]],[22,23,["G3326"]],[23,24,["G3588"]],[24,25,["G3498"]]]},{"k":25997,"v":[[0,2,["G2076"]],[2,3,["G3756"]],[3,4,["G5602"]],[4,5,["G235"]],[5,7,["G1453"]],[7,8,["G3415"]],[8,9,["G5613"]],[9,11,["G2980"]],[11,13,["G5213"]],[13,16,["G5607"]],[16,17,["G2089"]],[17,18,["G1722"]],[18,19,["G1056"]]]},{"k":25998,"v":[[0,1,["G3004"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G444"]],[5,6,["G1163"]],[6,8,["G3860"]],[8,9,["G1519"]],[9,11,["G5495"]],[11,13,["G268"]],[13,14,["G435"]],[14,15,["G2532"]],[15,17,["G4717"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G5154"]],[20,21,["G2250"]],[21,23,["G450"]]]},{"k":25999,"v":[[0,1,["G2532"]],[1,3,["G3415"]],[3,4,["G846"]],[4,5,["G4487"]]]},{"k":26000,"v":[[0,1,["G2532"]],[1,2,["G5290"]],[2,3,["G575"]],[3,4,["G3588"]],[4,5,["G3419"]],[5,7,["G518"]],[7,8,["G3956"]],[8,10,["G5023"]],[10,12,["G3588"]],[12,13,["G1733"]],[13,14,["G2532"]],[14,16,["G3956"]],[16,17,["G3588"]],[17,18,["G3062"]]]},{"k":26001,"v":[[0,0,["(G1161)"]],[0,2,["G2258"]],[2,3,["G3137"]],[3,4,["G3094"]],[4,5,["G2532"]],[5,6,["G2489"]],[6,7,["G2532"]],[7,8,["G3137"]],[8,12,["G2385"]],[12,13,["G2532"]],[13,14,["G3062"]],[14,18,["G4862"]],[18,19,["G846"]],[19,20,["G3739"]],[20,21,["G3004"]],[21,23,["G5023"]],[23,24,["G4314"]],[24,25,["G3588"]],[25,26,["G652"]]]},{"k":26002,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G4487"]],[3,4,["G5316"]],[4,5,["G1799"]],[5,6,["G846"]],[6,7,["G5616"]],[7,9,["G3026"]],[9,10,["G2532"]],[10,14,["G569","G846"]]]},{"k":26003,"v":[[0,1,["G1161"]],[1,2,["G450"]],[2,3,["G4074"]],[3,5,["G5143"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G3419"]],[8,9,["G2532"]],[9,11,["G3879"]],[11,13,["G991"]],[13,14,["G3588"]],[14,16,["G3608"]],[16,17,["G2749"]],[17,19,["G3441"]],[19,20,["G2532"]],[20,21,["G565"]],[21,22,["G2296"]],[22,23,["G4314"]],[23,24,["G1438"]],[24,31,["G1096"]]]},{"k":26004,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G1417"]],[3,4,["G1537"]],[4,5,["G846"]],[5,6,["G2258","G4198"]],[6,8,["G846"]],[8,9,["G2250"]],[9,10,["G1519"]],[10,12,["G2968"]],[12,13,["G3686"]],[13,14,["G1695"]],[14,16,["G568"]],[16,17,["G575"]],[17,18,["G2419"]],[18,20,["G1835"]],[20,21,["G4712"]]]},{"k":26005,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3656"]],[3,4,["G4314","G240"]],[4,5,["G4012"]],[5,6,["G3956"]],[6,8,["G5130"]],[8,11,["G4819"]]]},{"k":26006,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,8,["G846"]],[8,9,["G3656"]],[9,11,["G2532"]],[11,12,["G4802","(G2532)"]],[12,13,["G2424"]],[13,14,["G846"]],[14,16,["G1448"]],[16,19,["G4848"]],[19,20,["G846"]]]},{"k":26007,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G3788"]],[3,5,["G2902"]],[5,9,["G3361"]],[9,10,["G1921"]],[10,11,["G846"]]]},{"k":26008,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,7,["G5101"]],[7,9,["G3056"]],[9,11,["G3778"]],[11,12,["G3739"]],[12,14,["G474"]],[14,17,["G240","G4314"]],[17,20,["G4043"]],[20,21,["G2532"]],[21,22,["G2075"]],[22,23,["G4659"]]]},{"k":26009,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1520"]],[3,6,["G3739"]],[6,7,["G3686"]],[7,9,["G2810"]],[9,10,["G611"]],[10,11,["G2036"]],[11,12,["G4314"]],[12,13,["G846"]],[13,18,["G3939","G4771","G3441"]],[18,19,["G1722"]],[19,20,["G2419"]],[20,21,["G2532"]],[21,23,["G3756"]],[23,24,["G1097"]],[24,31,["G1096"]],[31,32,["G846"]],[32,33,["G1722"]],[33,34,["G5025"]],[34,35,["G2250"]]]},{"k":26010,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,7,["G4169"]],[7,8,["G1161"]],[8,9,["G3588"]],[9,10,["G2036"]],[10,12,["G846"]],[12,13,["G4012"]],[13,14,["G2424"]],[14,16,["G3480"]],[16,17,["G3739"]],[17,18,["G1096"]],[18,19,["(G435)"]],[19,20,["G4396"]],[20,21,["G1415"]],[21,22,["G1722"]],[22,23,["G2041"]],[23,24,["G2532"]],[24,25,["G3056"]],[25,26,["G1726"]],[26,27,["G2316"]],[27,28,["G2532"]],[28,29,["G3956"]],[29,30,["G3588"]],[30,31,["G2992"]]]},{"k":26011,"v":[[0,1,["G5037"]],[1,2,["G3704"]],[2,3,["G3588"]],[3,5,["G749"]],[5,6,["G2532"]],[6,7,["G2257"]],[7,8,["G758"]],[8,9,["G3860"]],[9,10,["G846"]],[10,11,["G1519"]],[11,13,["G2917"]],[13,15,["G2288"]],[15,16,["G2532"]],[16,18,["G4717"]],[18,19,["G846"]]]},{"k":26012,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,3,["G1679"]],[3,4,["G3754"]],[4,7,["G2076"]],[7,8,["G846"]],[8,10,["G3195"]],[10,12,["G3084"]],[12,13,["G2474"]],[13,14,["G1065","G235"]],[14,15,["G4862"]],[15,16,["G3956"]],[16,17,["G5125"]],[17,19,["G4594"]],[19,20,["G71"]],[20,21,["(G5026)"]],[21,22,["G5154"]],[22,23,["G2250"]],[23,24,["G575","G3739"]],[24,26,["G5023"]],[26,28,["G1096"]]]},{"k":26013,"v":[[0,2,["G235"]],[2,3,["G5100"]],[3,4,["G1135"]],[4,5,["G2532"]],[5,6,["G1537"]],[6,8,["G2257"]],[8,11,["G1839","G2248"]],[11,13,["G1096"]],[13,14,["G3721"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,17,["G3419"]]]},{"k":26014,"v":[[0,1,["G2532"]],[1,4,["G2147"]],[4,5,["G3361"]],[5,6,["G846"]],[6,7,["G4983"]],[7,9,["G2064"]],[9,10,["G3004"]],[10,14,["G2532"]],[14,15,["G3708"]],[15,17,["G3701"]],[17,19,["G32"]],[19,20,["G3739"]],[20,21,["G3004"]],[21,23,["G846"]],[23,25,["G2198"]]]},{"k":26015,"v":[[0,1,["G2532"]],[1,2,["G5100"]],[2,4,["G3588"]],[4,7,["G4862"]],[7,8,["G2254"]],[8,9,["G565"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G3419"]],[12,13,["G2532"]],[13,14,["G2147"]],[14,16,["G2532"]],[16,17,["G3779"]],[17,18,["G2531"]],[18,19,["G3588"]],[19,20,["G1135"]],[20,22,["G2036"]],[22,23,["G1161"]],[23,24,["G846"]],[24,26,["G1492"]],[26,27,["G3756"]]]},{"k":26016,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G5599"]],[6,7,["G453"]],[7,8,["G2532"]],[8,9,["G1021"]],[9,11,["G2588"]],[11,13,["G4100"]],[13,14,["G3956"]],[14,15,["G3739"]],[15,16,["G3588"]],[16,17,["G4396"]],[17,19,["G2980"]]]},{"k":26017,"v":[[0,1,["G1163"]],[1,2,["G3780"]],[2,3,["G5547"]],[3,6,["G3958"]],[6,8,["G5023"]],[8,9,["G2532"]],[9,11,["G1525"]],[11,12,["G1519"]],[12,13,["G848"]],[13,14,["G1391"]]]},{"k":26018,"v":[[0,1,["G2532"]],[1,2,["G756"]],[2,3,["G575"]],[3,4,["G3475"]],[4,5,["G2532"]],[5,6,["G3956"]],[6,7,["G3588"]],[7,8,["G4396"]],[8,10,["G1329"]],[10,12,["G846"]],[12,13,["G1722"]],[13,14,["G3956"]],[14,15,["G3588"]],[15,16,["G1124"]],[16,18,["G3588"]],[18,19,["G4012"]],[19,20,["G1438"]]]},{"k":26019,"v":[[0,1,["G2532"]],[1,4,["G1448"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G2968"]],[7,8,["G3757"]],[8,10,["G4198"]],[10,11,["G2532"]],[11,12,["G846"]],[12,15,["G4364"]],[15,19,["G4198"]],[19,20,["G4208"]]]},{"k":26020,"v":[[0,1,["G2532"]],[1,3,["G3849"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G3306"]],[6,7,["G3326"]],[7,8,["G2257"]],[8,9,["G3754"]],[9,11,["G2076"]],[11,12,["G4314"]],[12,13,["G2073"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G2250"]],[16,19,["G2827"]],[19,20,["G2532"]],[20,23,["G1525"]],[23,25,["G3306"]],[25,26,["G4862"]],[26,27,["G846"]]]},{"k":26021,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G846"]],[7,10,["G2625"]],[10,11,["G3326"]],[11,12,["G846"]],[12,14,["G2983"]],[14,15,["G740"]],[15,17,["G2127"]],[17,19,["G2532"]],[19,20,["G2806"]],[20,22,["G1929"]],[22,24,["G846"]]]},{"k":26022,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G3788"]],[3,5,["G1272"]],[5,6,["G2532"]],[6,8,["G1921"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G846"]],[11,12,["G1096","G855"]],[12,16,["G575","G846"]]]},{"k":26023,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,6,["G240","G4314"]],[6,8,["G3780"]],[8,9,["G2257"]],[9,10,["G2588"]],[10,11,["G2258","G2545"]],[11,12,["G1722"]],[12,13,["G2254"]],[13,14,["G5613"]],[14,16,["G2980"]],[16,18,["G2254"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G3598"]],[21,22,["G2532"]],[22,23,["G5613"]],[23,25,["G1272"]],[25,27,["G2254"]],[27,28,["G3588"]],[28,29,["G1124"]]]},{"k":26024,"v":[[0,1,["G2532"]],[1,4,["G450"]],[4,5,["G3588"]],[5,6,["G846"]],[6,7,["G5610"]],[7,9,["G5290"]],[9,10,["G1519"]],[10,11,["G2419"]],[11,12,["G2532"]],[12,13,["G2147"]],[13,14,["G3588"]],[14,15,["G1733"]],[15,17,["G4867"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,22,["G4862"]],[22,23,["G846"]]]},{"k":26025,"v":[[0,1,["G3004"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,5,["G1453"]],[5,6,["G3689"]],[6,7,["G2532"]],[7,9,["G3700"]],[9,11,["G4613"]]]},{"k":26026,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G1834"]],[3,5,["G3588"]],[5,8,["G1722"]],[8,9,["G3588"]],[9,10,["G3598"]],[10,11,["G2532"]],[11,12,["G5613"]],[12,15,["G1097"]],[15,17,["G846"]],[17,18,["G1722"]],[18,19,["G2800"]],[19,21,["G740"]]]},{"k":26027,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G5023"]],[4,5,["G2980"]],[5,6,["G2424"]],[6,7,["G846"]],[7,8,["G2476"]],[8,9,["G1722"]],[9,11,["G3319"]],[11,13,["G846"]],[13,14,["G2532"]],[14,15,["G3004"]],[15,17,["G846"]],[17,18,["G1515"]],[18,21,["G5213"]]]},{"k":26028,"v":[[0,1,["G1161"]],[1,4,["G4422"]],[4,5,["G2532"]],[5,6,["G1096","G1719"]],[6,8,["G1380"]],[8,12,["G2334"]],[12,14,["G4151"]]]},{"k":26029,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G5101"]],[6,7,["G2075"]],[7,9,["G5015"]],[9,10,["G2532"]],[10,11,["G1302"]],[11,13,["G1261"]],[13,14,["G305"]],[14,15,["G1722"]],[15,16,["G5216"]],[16,17,["G2588"]]]},{"k":26030,"v":[[0,1,["G1492"]],[1,2,["G3450"]],[2,3,["G5495"]],[3,4,["G2532"]],[4,5,["G3450"]],[5,6,["G4228"]],[6,7,["G3754"]],[7,9,["G1510"]],[9,10,["G1473"]],[10,11,["G846"]],[11,12,["G5584"]],[12,13,["G3165"]],[13,14,["G2532"]],[14,15,["G1492"]],[15,16,["G3754"]],[16,18,["G4151"]],[18,19,["G2192"]],[19,20,["G3756"]],[20,21,["G4561"]],[21,22,["G2532"]],[22,23,["G3747"]],[23,24,["G2531"]],[24,26,["G2334"]],[26,27,["G1691"]],[27,28,["G2192"]]]},{"k":26031,"v":[[0,1,["G2532"]],[1,5,["G5124"]],[5,6,["G2036"]],[6,8,["G1925"]],[8,9,["G846"]],[9,11,["G5495"]],[11,12,["G2532"]],[12,14,["G4228"]]]},{"k":26032,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G2089"]],[4,6,["G569"]],[6,7,["G575"]],[7,8,["G5479"]],[8,9,["G2532"]],[9,10,["G2296"]],[10,12,["G2036"]],[12,14,["G846"]],[14,15,["G2192"]],[15,17,["G1759"]],[17,18,["G5100"]],[18,19,["G1034"]]]},{"k":26033,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1929"]],[3,4,["G846"]],[4,6,["G3313"]],[6,9,["G3702"]],[9,10,["G2486"]],[10,11,["G2532"]],[11,12,["G575"]],[12,14,["G3193","G2781"]]]},{"k":26034,"v":[[0,1,["G2532"]],[1,3,["G2983"]],[3,7,["G5315"]],[7,8,["G1799"]],[8,9,["G846"]]]},{"k":26035,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G3778"]],[6,8,["G3588"]],[8,9,["G3056"]],[9,10,["G3739"]],[10,12,["G2980"]],[12,13,["G4314"]],[13,14,["G5209"]],[14,17,["G5607"]],[17,18,["G2089"]],[18,19,["G4862"]],[19,20,["G5213"]],[20,21,["G3754"]],[21,23,["G3956"]],[23,24,["G1163"]],[24,26,["G4137"]],[26,29,["G1125"]],[29,30,["G1722"]],[30,31,["G3588"]],[31,32,["G3551"]],[32,34,["G3475"]],[34,35,["G2532"]],[35,38,["G4396"]],[38,39,["G2532"]],[39,42,["G5568"]],[42,43,["G4012"]],[43,44,["G1700"]]]},{"k":26036,"v":[[0,1,["G5119"]],[1,2,["G1272"]],[2,4,["G846"]],[4,5,["G3563"]],[5,9,["G4920"]],[9,10,["G3588"]],[10,11,["G1124"]]]},{"k":26037,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G3779"]],[5,8,["G1125"]],[8,9,["G2532"]],[9,10,["G3779"]],[10,12,["G1163"]],[12,13,["G5547"]],[13,15,["G3958"]],[15,16,["G2532"]],[16,18,["G450"]],[18,19,["G1537"]],[19,21,["G3498"]],[21,22,["G3588"]],[22,23,["G5154"]],[23,24,["G2250"]]]},{"k":26038,"v":[[0,1,["G2532"]],[1,3,["G3341"]],[3,4,["G2532"]],[4,5,["G859"]],[5,7,["G266"]],[7,10,["G2784"]],[10,11,["G1909"]],[11,12,["G846"]],[12,13,["G3686"]],[13,14,["G1519"]],[14,15,["G3956"]],[15,16,["G1484"]],[16,17,["G756"]],[17,18,["G575"]],[18,19,["G2419"]]]},{"k":26039,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G2075"]],[3,4,["G3144"]],[4,7,["G5130"]]]},{"k":26040,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G1473"]],[3,4,["G649"]],[4,5,["G3588"]],[5,6,["G1860"]],[6,8,["G3450"]],[8,9,["G3962"]],[9,10,["G1909"]],[10,11,["G5209"]],[11,12,["G1161"]],[12,13,["G2523"]],[13,14,["G5210"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G4172"]],[17,19,["G2419"]],[19,20,["G2193","G3757"]],[20,23,["G1746"]],[23,25,["G1411"]],[25,26,["G1537"]],[26,28,["G5311"]]]},{"k":26041,"v":[[0,1,["G1161"]],[1,3,["G1806"]],[3,4,["G846"]],[4,5,["G1854"]],[5,8,["G2193"]],[8,9,["G1519"]],[9,10,["G963"]],[10,11,["G2532"]],[11,14,["G1869"]],[14,15,["G848"]],[15,16,["G5495"]],[16,18,["G2127"]],[18,19,["G846"]]]},{"k":26042,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G846"]],[7,8,["G2127"]],[8,9,["G846"]],[9,12,["G1339"]],[12,13,["G575"]],[13,14,["G846"]],[14,15,["G2532"]],[15,17,["G399"]],[17,18,["G1519"]],[18,19,["G3772"]]]},{"k":26043,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G4352"]],[3,4,["G846"]],[4,6,["G5290"]],[6,7,["G1519"]],[7,8,["G2419"]],[8,9,["G3326"]],[9,10,["G3173"]],[10,11,["G5479"]]]},{"k":26044,"v":[[0,1,["G2532"]],[1,2,["G2258"]],[2,3,["G1275"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G2411"]],[6,7,["G134"]],[7,8,["G2532"]],[8,9,["G2127"]],[9,10,["G2316"]],[10,11,["G281"]]]},{"k":26045,"v":[[0,1,["G1722"]],[1,3,["G746"]],[3,4,["G2258"]],[4,5,["G3588"]],[5,6,["G3056"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G3056"]],[9,10,["G2258"]],[10,11,["G4314"]],[11,12,["G2316"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G3056"]],[15,16,["G2258"]],[16,17,["G2316"]]]},{"k":26046,"v":[[0,2,["G3778"]],[2,3,["G2258"]],[3,4,["G1722"]],[4,6,["G746"]],[6,7,["G4314"]],[7,8,["G2316"]]]},{"k":26047,"v":[[0,2,["G3956"]],[2,4,["G1096"]],[4,5,["G1223"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G5565"]],[8,9,["G846"]],[9,11,["G3761"]],[11,13,["G1520"]],[13,14,["G1096"]],[14,15,["G3739"]],[15,17,["G1096"]]]},{"k":26048,"v":[[0,1,["G1722"]],[1,2,["G846"]],[2,3,["G2258"]],[3,4,["G2222"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G2222"]],[7,8,["G2258"]],[8,9,["G3588"]],[9,10,["G5457"]],[10,12,["G444"]]]},{"k":26049,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5457"]],[3,4,["G5316"]],[4,5,["G1722"]],[5,6,["G4653"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G4653"]],[9,10,["G2638"]],[10,11,["G846"]],[11,12,["G3756"]]]},{"k":26050,"v":[[0,2,["G1096"]],[2,4,["G444"]],[4,5,["G649"]],[5,6,["G3844"]],[6,7,["G2316"]],[7,8,["G846"]],[8,9,["G3686"]],[9,11,["G2491"]]]},{"k":26051,"v":[[0,2,["G3778"]],[2,3,["G2064"]],[3,4,["G1519"]],[4,6,["G3141"]],[6,7,["G2443"]],[7,9,["G3140"]],[9,10,["G4012"]],[10,11,["G3588"]],[11,12,["G5457"]],[12,13,["G2443"]],[13,14,["G3956"]],[14,16,["G1223"]],[16,17,["G846"]],[17,19,["G4100"]]]},{"k":26052,"v":[[0,1,["G1565"]],[1,2,["G2258"]],[2,3,["G3756"]],[3,5,["G5457"]],[5,6,["G235"]],[6,9,["G2443"]],[9,11,["G3140"]],[11,12,["G4012"]],[12,14,["G5457"]]]},{"k":26053,"v":[[0,2,["G2258"]],[2,3,["G3588"]],[3,4,["G228"]],[4,5,["G5457"]],[5,6,["G3739"]],[6,7,["G5461"]],[7,8,["G3956"]],[8,9,["G444"]],[9,11,["G2064"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G2889"]]]},{"k":26054,"v":[[0,2,["G2258"]],[2,3,["G1722"]],[3,4,["G3588"]],[4,5,["G2889"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G2889"]],[8,10,["G1096"]],[10,11,["G1223"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G2889"]],[15,16,["G1097"]],[16,17,["G846"]],[17,18,["G3756"]]]},{"k":26055,"v":[[0,2,["G2064"]],[2,3,["G1519"]],[3,5,["G2398"]],[5,6,["G2532"]],[6,8,["G2398"]],[8,9,["G3880"]],[9,10,["G846"]],[10,11,["G3756"]]]},{"k":26056,"v":[[0,1,["G1161"]],[1,4,["G3745"]],[4,5,["G2983"]],[5,6,["G846"]],[6,8,["G846"]],[8,9,["G1325"]],[9,11,["G1849"]],[11,13,["G1096"]],[13,15,["G5043"]],[15,17,["G2316"]],[17,22,["G4100"]],[22,23,["G1519"]],[23,24,["G846"]],[24,25,["G3686"]]]},{"k":26057,"v":[[0,1,["G3739"]],[1,3,["G1080"]],[3,4,["G3756"]],[4,5,["G1537"]],[5,6,["G129"]],[6,7,["G3761"]],[7,8,["G1537"]],[8,10,["G2307"]],[10,13,["G4561"]],[13,14,["G3761"]],[14,15,["G1537"]],[15,17,["G2307"]],[17,19,["G435"]],[19,20,["G235"]],[20,21,["G1537"]],[21,22,["G2316"]]]},{"k":26058,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,5,["G1096"]],[5,6,["G4561"]],[6,7,["G2532"]],[7,8,["G4637"]],[8,9,["G1722"]],[9,10,["G2254"]],[10,11,["G2532"]],[11,13,["G2300"]],[13,14,["G846"]],[14,15,["G1391"]],[15,17,["G1391"]],[17,18,["G5613"]],[18,22,["G3439"]],[22,23,["G3844"]],[23,25,["G3962"]],[25,26,["G4134"]],[26,28,["G5485"]],[28,29,["G2532"]],[29,30,["G225"]]]},{"k":26059,"v":[[0,1,["G2491"]],[1,3,["G3140"]],[3,4,["G4012"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G2896"]],[7,8,["G3004"]],[8,9,["G3778"]],[9,10,["G2258"]],[10,13,["G3739"]],[13,15,["G2036"]],[15,18,["G2064"]],[18,19,["G3694"]],[19,20,["G3450"]],[20,22,["G1096"]],[22,23,["G1715"]],[23,24,["G3450"]],[24,26,["G3754"]],[26,27,["G2258"]],[27,28,["G4413"]],[28,29,["G3450"]]]},{"k":26060,"v":[[0,1,["G2532"]],[1,2,["G1537"]],[2,3,["G846"]],[3,4,["G4138"]],[4,6,["G3956"]],[6,7,["G2249"]],[7,8,["G2983"]],[8,9,["G2532"]],[9,10,["G5485"]],[10,11,["G473"]],[11,12,["G5485"]]]},{"k":26061,"v":[[0,1,["G3754"]],[1,2,["G3588"]],[2,3,["G3551"]],[3,5,["G1325"]],[5,6,["G1223"]],[6,7,["G3475"]],[7,9,["G5485"]],[9,10,["G2532"]],[10,11,["G225"]],[11,12,["G1096"]],[12,13,["G1223"]],[13,14,["G2424"]],[14,15,["G5547"]]]},{"k":26062,"v":[[0,2,["G3762"]],[2,4,["G3708"]],[4,5,["G2316"]],[5,8,["G4455"]],[8,9,["G3588"]],[9,11,["G3439"]],[11,12,["G5207"]],[12,14,["G5607"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G2859"]],[17,19,["G3588"]],[19,20,["G3962"]],[20,21,["G1565"]],[21,23,["G1834"]],[23,24,[]]]},{"k":26063,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G3141"]],[5,7,["G2491"]],[7,8,["G3753"]],[8,9,["G3588"]],[9,10,["G2453"]],[10,11,["G649"]],[11,12,["G2409"]],[12,13,["G2532"]],[13,14,["G3019"]],[14,15,["G1537"]],[15,16,["G2414"]],[16,17,["G2443"]],[17,18,["G2065"]],[18,19,["G846"]],[19,20,["G5101"]],[20,21,["G1488"]],[21,22,["G4771"]]]},{"k":26064,"v":[[0,1,["G2532"]],[1,3,["G3670"]],[3,4,["G2532"]],[4,5,["G720"]],[5,6,["G3756"]],[6,7,["G2532"]],[7,8,["G3670"]],[8,9,["G1473"]],[9,10,["G1510"]],[10,11,["G3756"]],[11,12,["G3588"]],[12,13,["G5547"]]]},{"k":26065,"v":[[0,1,["G2532"]],[1,3,["G2065"]],[3,4,["G846"]],[4,5,["G5101"]],[5,6,["G3767"]],[6,7,["G1488"]],[7,8,["G4771"]],[8,9,["G2243"]],[9,10,["G2532"]],[10,12,["G3004"]],[12,14,["G1510"]],[14,15,["G3756"]],[15,16,["G1488"]],[16,17,["G4771"]],[17,19,["G4396"]],[19,20,["G2532"]],[20,22,["G611"]],[22,23,["G3756"]]]},{"k":26066,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,5,["G846"]],[5,6,["G5101"]],[6,7,["G1488"]],[7,9,["G2443"]],[9,12,["G1325"]],[12,14,["G612"]],[14,18,["G3992"]],[18,19,["G2248"]],[19,20,["G5101"]],[20,21,["G3004"]],[21,23,["G4012"]],[23,24,["G4572"]]]},{"k":26067,"v":[[0,2,["G5346"]],[2,3,["G1473"]],[3,6,["G5456"]],[6,9,["G994"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G2048"]],[12,14,["G2116"]],[14,15,["G3588"]],[15,16,["G3598"]],[16,19,["G2962"]],[19,20,["G2531"]],[20,21,["G2036"]],[21,22,["G3588"]],[22,23,["G4396"]],[23,24,["G2268"]]]},{"k":26068,"v":[[0,1,["G2532"]],[1,5,["G649"]],[5,6,["G2258"]],[6,7,["G1537"]],[7,8,["G3588"]],[8,9,["G5330"]]]},{"k":26069,"v":[[0,1,["G2532"]],[1,3,["G2065"]],[3,4,["G846"]],[4,5,["G2532"]],[5,6,["G2036"]],[6,8,["G846"]],[8,9,["G5101"]],[9,10,["G907"]],[10,12,["G3767"]],[12,13,["G1487"]],[13,14,["G4771"]],[14,15,["G1488"]],[15,16,["G3756"]],[16,18,["G5547"]],[18,19,["G3777"]],[19,20,["G2243"]],[20,21,["G3777"]],[21,23,["G4396"]]]},{"k":26070,"v":[[0,1,["G2491"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G3004"]],[4,5,["G1473"]],[5,6,["G907"]],[6,7,["G1722"]],[7,8,["G5204"]],[8,9,["G1161"]],[9,11,["G2476"]],[11,13,["G3319"]],[13,14,["G5216"]],[14,15,["G3739"]],[15,16,["G5210"]],[16,17,["G1492"]],[17,18,["G3756"]]]},{"k":26071,"v":[[0,1,["G846"]],[1,3,["G2076"]],[3,5,["G2064"]],[5,6,["G3694"]],[6,7,["G3450"]],[7,9,["G1096"]],[9,10,["G1715"]],[10,11,["G3450"]],[11,12,["G3739"]],[12,13,["G5266"]],[13,14,["G2438"]],[14,15,["G1473"]],[15,16,["G1510"]],[16,17,["G3756"]],[17,18,["G514"]],[18,19,["G2443"]],[19,20,["G3089","(G846)"]]]},{"k":26072,"v":[[0,2,["G5023"]],[2,4,["G1096"]],[4,5,["G1722"]],[5,6,["G962"]],[6,7,["G4008"]],[7,8,["G2446"]],[8,9,["G3699"]],[9,10,["G2491"]],[10,11,["G2258"]],[11,12,["G907"]]]},{"k":26073,"v":[[0,1,["G3588"]],[1,3,["G1887"]],[3,4,["G2491"]],[4,5,["G991"]],[5,6,["G2424"]],[6,7,["G2064"]],[7,8,["G4314"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G3004"]],[11,12,["G2396"]],[12,13,["G3588"]],[13,14,["G286"]],[14,16,["G2316"]],[16,19,["G142"]],[19,20,["G3588"]],[20,21,["G266"]],[21,23,["G3588"]],[23,24,["G2889"]]]},{"k":26074,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,4,["G4012"]],[4,5,["G3739"]],[5,6,["G1473"]],[6,7,["G2036"]],[7,8,["G3694"]],[8,9,["G3450"]],[9,10,["G2064"]],[10,12,["G435"]],[12,13,["G3739"]],[13,15,["G1096"]],[15,16,["G1715"]],[16,17,["G3450"]],[17,18,["G3754"]],[18,20,["G2258"]],[20,21,["G4413"]],[21,22,["G3450"]]]},{"k":26075,"v":[[0,2,["G2504"]],[2,3,["G1492"]],[3,4,["G846"]],[4,5,["G3756"]],[5,6,["G235"]],[6,7,["G2443"]],[7,12,["G5319"]],[12,14,["G2474"]],[14,15,["G1223","G5124"]],[15,17,["G1473"]],[17,18,["G2064"]],[18,19,["G907"]],[19,20,["G1722"]],[20,21,["G5204"]]]},{"k":26076,"v":[[0,1,["G2532"]],[1,2,["G2491"]],[2,4,["G3140"]],[4,5,["G3004"]],[5,7,["G2300"]],[7,8,["G3588"]],[8,9,["G4151"]],[9,10,["G2597"]],[10,11,["G1537"]],[11,12,["G3772"]],[12,13,["G5616"]],[13,15,["G4058"]],[15,16,["G2532"]],[16,18,["G3306"]],[18,19,["G1909"]],[19,20,["G846"]]]},{"k":26077,"v":[[0,2,["G2504"]],[2,3,["G1492"]],[3,4,["G846"]],[4,5,["G3756"]],[5,6,["G235"]],[6,9,["G3992"]],[9,10,["G3165"]],[10,12,["G907"]],[12,13,["G1722"]],[13,14,["G5204"]],[14,16,["G1565"]],[16,17,["G2036"]],[17,19,["G3427"]],[19,20,["G1909"]],[20,21,["G3739","G302"]],[21,24,["G1492"]],[24,25,["G3588"]],[25,26,["G4151"]],[26,27,["G2597"]],[27,28,["G2532"]],[28,29,["G3306"]],[29,30,["G1909"]],[30,31,["G846"]],[31,33,["G3778"]],[33,34,["G2076"]],[34,37,["G907"]],[37,38,["G1722"]],[38,40,["G40"]],[40,41,["G4151"]]]},{"k":26078,"v":[[0,2,["G2504"]],[2,3,["G3708"]],[3,4,["G2532"]],[4,6,["G3140"]],[6,7,["G3754"]],[7,8,["G3778"]],[8,9,["G2076"]],[9,10,["G3588"]],[10,11,["G5207"]],[11,13,["G2316"]]]},{"k":26079,"v":[[0,1,["G3825"]],[1,2,["G3588"]],[2,5,["G1887"]],[5,6,["G2491"]],[6,7,["G2476"]],[7,8,["G2532"]],[8,9,["G1417"]],[9,10,["G1537"]],[10,11,["G846"]],[11,12,["G3101"]]]},{"k":26080,"v":[[0,1,["G2532"]],[1,3,["G1689"]],[3,4,["G2424"]],[4,7,["G4043"]],[7,9,["G3004"]],[9,10,["G2396"]],[10,11,["G3588"]],[11,12,["G286"]],[12,14,["G2316"]]]},{"k":26081,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1417"]],[3,4,["G3101"]],[4,5,["G191"]],[5,6,["G846"]],[6,7,["G2980"]],[7,8,["G2532"]],[8,10,["G190"]],[10,11,["G2424"]]]},{"k":26082,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G4762"]],[3,4,["G2532"]],[4,5,["G2300"]],[5,6,["G846"]],[6,7,["G190"]],[7,9,["G3004"]],[9,11,["G846"]],[11,12,["G5101"]],[12,13,["G2212"]],[13,14,["(G1161)"]],[14,16,["G2036"]],[16,18,["G846"]],[18,19,["G4461"]],[19,20,["G3739"]],[20,23,["G3004"]],[23,25,["G2059"]],[25,26,["G1320"]],[26,27,["G4226"]],[27,28,["G3306"]],[28,29,[]]]},{"k":26083,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G2064"]],[5,6,["G2532"]],[6,7,["G1492"]],[7,9,["G2064"]],[9,10,["G2532"]],[10,11,["G1492"]],[11,12,["G4226"]],[12,14,["G3306"]],[14,15,["G2532"]],[15,16,["G3306"]],[16,17,["G3844"]],[17,18,["G846"]],[18,19,["G1565"]],[19,20,["G2250"]],[20,21,["G1161"]],[21,23,["G2258"]],[23,24,["G5613"]],[24,26,["G1182"]],[26,27,["G5610"]]]},{"k":26084,"v":[[0,1,["G1520"]],[1,2,["G1537"]],[2,3,["G3588"]],[3,4,["G1417"]],[4,6,["G191"]],[6,7,["G2491"]],[7,9,["G2532"]],[9,10,["G190"]],[10,11,["G846"]],[11,12,["G2258"]],[12,13,["G406"]],[13,14,["G4613"]],[14,15,["G4074"]],[15,16,["G80"]]]},{"k":26085,"v":[[0,1,["G3778"]],[1,2,["G4413"]],[2,3,["G2147"]],[3,5,["G2398"]],[5,6,["G80"]],[6,7,["G4613"]],[7,8,["G2532"]],[8,9,["G3004"]],[9,11,["G846"]],[11,14,["G2147"]],[14,15,["G3588"]],[15,16,["G3323"]],[16,18,["G3603"]],[18,20,["G3177"]],[20,21,["G3588"]],[21,22,["G5547"]]]},{"k":26086,"v":[[0,1,["G2532"]],[1,3,["G71"]],[3,4,["G846"]],[4,5,["G4314"]],[5,6,["G2424"]],[6,7,["G1161"]],[7,9,["G2424"]],[9,10,["G1689"]],[10,11,["G846"]],[11,13,["G2036"]],[13,14,["G4771"]],[14,15,["G1488"]],[15,16,["G4613"]],[16,17,["G3588"]],[17,18,["G5207"]],[18,20,["G2495"]],[20,21,["G4771"]],[21,24,["G2564"]],[24,25,["G2786"]],[25,26,["G3739"]],[26,29,["G2059"]],[29,31,["G4074"]]]},{"k":26087,"v":[[0,1,["G3588"]],[1,3,["G1887"]],[3,4,["G2424"]],[4,5,["G2309"]],[5,7,["G1831"]],[7,8,["G1519"]],[8,9,["G1056"]],[9,10,["G2532"]],[10,11,["G2147"]],[11,12,["G5376"]],[12,13,["G2532"]],[13,14,["G3004"]],[14,16,["G846"]],[16,17,["G190"]],[17,18,["G3427"]]]},{"k":26088,"v":[[0,1,["G1161"]],[1,2,["G5376"]],[2,3,["G2258"]],[3,4,["G575"]],[4,5,["G966"]],[5,6,["G3588"]],[6,7,["G4172"]],[7,9,["G406"]],[9,10,["G2532"]],[10,11,["G4074"]]]},{"k":26089,"v":[[0,1,["G5376"]],[1,2,["G2147"]],[2,3,["G3482"]],[3,4,["G2532"]],[4,5,["G3004"]],[5,7,["G846"]],[7,10,["G2147"]],[10,13,["G3739"]],[13,14,["G3475"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G3551"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G4396"]],[20,22,["G1125"]],[22,23,["G2424"]],[23,24,["G575"]],[24,25,["G3478"]],[25,26,["G3588"]],[26,27,["G5207"]],[27,29,["G2501"]]]},{"k":26090,"v":[[0,1,["G2532"]],[1,2,["G3482"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G1410"]],[6,8,["G5100"]],[8,10,["G18"]],[10,11,["G1511"]],[11,13,["G1537"]],[13,14,["G3478"]],[14,15,["G5376"]],[15,16,["G3004"]],[16,18,["G846"]],[18,19,["G2064"]],[19,20,["G2532"]],[20,21,["G1492"]]]},{"k":26091,"v":[[0,1,["G2424"]],[1,2,["G1492"]],[2,3,["G3482"]],[3,4,["G2064"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G3004"]],[8,9,["G4012"]],[9,10,["G846"]],[10,11,["G2396"]],[11,13,["G2475"]],[13,14,["G230"]],[14,15,["G1722"]],[15,16,["G3739"]],[16,17,["G2076"]],[17,18,["G3756"]],[18,19,["G1388"]]]},{"k":26092,"v":[[0,1,["G3482"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G4159"]],[5,6,["G1097"]],[6,8,["G3165"]],[8,9,["G2424"]],[9,10,["G611"]],[10,11,["G2532"]],[11,12,["G2036"]],[12,14,["G846"]],[14,15,["G4253"]],[15,17,["G5376"]],[17,18,["G5455"]],[18,19,["G4571"]],[19,22,["G5607"]],[22,23,["G5259"]],[23,24,["G3588"]],[24,26,["G4808"]],[26,28,["G1492"]],[28,29,["G4571"]]]},{"k":26093,"v":[[0,1,["G3482"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G3004"]],[4,6,["G846"]],[6,7,["G4461"]],[7,8,["G4771"]],[8,9,["G1488"]],[9,10,["G3588"]],[10,11,["G5207"]],[11,13,["G2316"]],[13,14,["G4771"]],[14,15,["G1488"]],[15,16,["G3588"]],[16,17,["G935"]],[17,19,["G2474"]]]},{"k":26094,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G3754"]],[7,9,["G2036"]],[9,11,["G4671"]],[11,13,["G1492"]],[13,14,["G4571"]],[14,15,["G5270"]],[15,16,["G3588"]],[16,18,["G4808"]],[18,19,["G4100"]],[19,23,["G3700"]],[23,25,["G3187"]],[25,27,["G5130"]]]},{"k":26095,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G281"]],[6,7,["G281"]],[7,9,["G3004"]],[9,11,["G5213"]],[11,12,["G575","G737"]],[12,15,["G3700"]],[15,16,["G3772"]],[16,17,["G455"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G32"]],[20,22,["G2316"]],[22,23,["G305"]],[23,24,["G2532"]],[24,25,["G2597"]],[25,26,["G1909"]],[26,27,["G3588"]],[27,28,["G5207"]],[28,30,["G444"]]]},{"k":26096,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5154"]],[3,4,["G2250"]],[4,6,["G1096"]],[6,8,["G1062"]],[8,9,["G1722"]],[9,10,["G2580"]],[10,12,["G1056"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G3384"]],[15,17,["G2424"]],[17,18,["G2258"]],[18,19,["G1563"]]]},{"k":26097,"v":[[0,1,["G1161"]],[1,2,["G2532"]],[2,3,["G2424"]],[3,5,["G2564"]],[5,6,["G2532"]],[6,7,["G846"]],[7,8,["G3101"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G1062"]]]},{"k":26098,"v":[[0,1,["G2532"]],[1,4,["G5302"]],[4,5,["G3631"]],[5,6,["G3588"]],[6,7,["G3384"]],[7,9,["G2424"]],[9,10,["G3004"]],[10,11,["G4314"]],[11,12,["G846"]],[12,14,["G2192"]],[14,15,["G3756"]],[15,16,["G3631"]]]},{"k":26099,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1135"]],[5,12,["G5101","G1698","G2532","G4671"]],[12,13,["G3450"]],[13,14,["G5610"]],[14,17,["G3768"]],[17,18,["G2240"]]]},{"k":26100,"v":[[0,1,["G846"]],[1,2,["G3384"]],[2,3,["G3004"]],[3,5,["G3588"]],[5,6,["G1249"]],[6,7,["G3748","G302"]],[7,9,["G3004"]],[9,11,["G5213"]],[11,12,["G4160"]],[12,13,[]]]},{"k":26101,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G2749"]],[4,5,["G1563"]],[5,6,["G1803"]],[6,7,["G5201"]],[7,9,["G3035"]],[9,10,["G2596"]],[10,11,["G3588"]],[11,15,["G2512"]],[15,17,["G3588"]],[17,18,["G2453"]],[18,19,["G5562"]],[19,20,["G1417"]],[20,21,["G2228"]],[21,22,["G5140"]],[22,23,["G3355"]],[23,24,["G303"]]]},{"k":26102,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1072"]],[5,6,["G3588"]],[6,7,["G5201"]],[7,9,["G5204"]],[9,10,["G2532"]],[10,12,["G1072"]],[12,13,["G846"]],[13,15,["G2193"]],[15,17,["G507"]]]},{"k":26103,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,7,["G501"]],[7,8,["G3568"]],[8,9,["G2532"]],[9,10,["G5342"]],[10,12,["G3588"]],[12,16,["G755"]],[16,17,["G2532"]],[17,19,["G5342"]],[19,20,[]]]},{"k":26104,"v":[[0,0,["(G1161)"]],[0,1,["G5613"]],[1,2,["G3588"]],[2,6,["G755"]],[6,8,["G1089"]],[8,9,["G3588"]],[9,10,["G5204"]],[10,13,["G1096"]],[13,14,["G3631"]],[14,15,["G2532"]],[15,16,["G1492"]],[16,17,["G3756"]],[17,18,["G4159"]],[18,20,["G2076"]],[20,21,["G1161"]],[21,22,["G3588"]],[22,23,["G1249"]],[23,25,["G501"]],[25,26,["G3588"]],[26,27,["G5204"]],[27,28,["G1492"]],[28,29,["G3588"]],[29,33,["G755"]],[33,34,["G5455"]],[34,35,["G3588"]],[35,36,["G3566"]]]},{"k":26105,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G3956"]],[5,6,["G444"]],[6,9,["G4412"]],[9,12,["G5087"]],[12,13,["G2570"]],[13,14,["G3631"]],[14,15,["G2532"]],[15,16,["G3752"]],[16,20,["G3184"]],[20,21,["G5119"]],[21,25,["G1640"]],[25,27,["G4771"]],[27,29,["G5083"]],[29,30,["G3588"]],[30,31,["G2570"]],[31,32,["G3631"]],[32,33,["G2193"]],[33,34,["G737"]]]},{"k":26106,"v":[[0,1,["G5026"]],[1,2,["G746"]],[2,4,["G4592"]],[4,5,["G4160"]],[5,6,["G2424"]],[6,7,["G1722"]],[7,8,["G2580"]],[8,10,["G1056"]],[10,11,["G2532"]],[11,13,["G5319"]],[13,14,["G848"]],[14,15,["G1391"]],[15,16,["G2532"]],[16,17,["G846"]],[17,18,["G3101"]],[18,19,["G4100"]],[19,20,["G1519"]],[20,21,["G846"]]]},{"k":26107,"v":[[0,1,["G3326"]],[1,2,["G5124"]],[2,5,["G2597"]],[5,6,["G1519"]],[6,7,["G2584"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G3384"]],[11,12,["G2532"]],[12,13,["G846"]],[13,14,["G80"]],[14,15,["G2532"]],[15,16,["G846"]],[16,17,["G3101"]],[17,18,["G2532"]],[18,20,["G3306"]],[20,21,["G1563"]],[21,22,["G3756"]],[22,23,["G4183"]],[23,24,["G2250"]]]},{"k":26108,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,4,["G3957"]],[4,5,["G2258"]],[5,7,["G1451"]],[7,8,["G2532"]],[8,9,["G2424"]],[9,11,["G305"]],[11,12,["G1519"]],[12,13,["G2414"]]]},{"k":26109,"v":[[0,1,["G2532"]],[1,2,["G2147"]],[2,3,["G1722"]],[3,4,["G3588"]],[4,5,["G2411"]],[5,8,["G4453"]],[8,9,["G1016"]],[9,10,["G2532"]],[10,11,["G4263"]],[11,12,["G2532"]],[12,13,["G4058"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,18,["G2773"]],[18,19,["G2521"]]]},{"k":26110,"v":[[0,1,["G2532"]],[1,5,["G4160"]],[5,7,["G5416"]],[7,8,["G1537"]],[8,10,["G4979"]],[10,12,["G1544"]],[12,14,["G3956"]],[14,16,["G1537"]],[16,17,["G3588"]],[17,18,["G2411"]],[18,19,["G5037"]],[19,20,["G3588"]],[20,21,["G4263"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G1016"]],[24,25,["G2532"]],[25,27,["G1632"]],[27,28,["G3588"]],[28,29,["G2855"]],[29,30,["G2772"]],[30,31,["G2532"]],[31,32,["G390"]],[32,33,["G3588"]],[33,34,["G5132"]]]},{"k":26111,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,6,["G4453"]],[6,7,["G4058"]],[7,8,["G142"]],[8,10,["G5023"]],[10,11,["G1782"]],[11,12,["G4160"]],[12,13,["G3361"]],[13,14,["G3450"]],[14,15,["G3962"]],[15,16,["G3624"]],[16,18,["G3624"]],[18,20,["G1712"]]]},{"k":26112,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G3101"]],[3,4,["G3415"]],[4,5,["G3754"]],[5,7,["G2076"]],[7,8,["G1125"]],[8,9,["G3588"]],[9,10,["G2205"]],[10,12,["G4675"]],[12,13,["G3624"]],[13,17,["G2719","G3165"]]]},{"k":26113,"v":[[0,1,["G3767"]],[1,2,["G611"]],[2,3,["G3588"]],[3,4,["G2453"]],[4,5,["G2532"]],[5,6,["G2036"]],[6,8,["G846"]],[8,9,["G5101"]],[9,10,["G4592"]],[10,11,["G1166"]],[11,14,["G2254"]],[14,16,["G3754"]],[16,18,["G4160"]],[18,20,["G5023"]]]},{"k":26114,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G3089"]],[7,8,["G5126"]],[8,9,["G3485"]],[9,10,["G2532"]],[10,11,["G1722"]],[11,12,["G5140"]],[12,13,["G2250"]],[13,18,["G1453","G846"]]]},{"k":26115,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,4,["G2453"]],[4,7,["G5062","G2532","G1803"]],[7,8,["G2094"]],[8,13,["G3618","G3778","G3485"]],[13,14,["G2532"]],[14,16,["G4771"]],[16,19,["G1453","G846"]],[19,20,["G1722"]],[20,21,["G5140"]],[21,22,["G2250"]]]},{"k":26116,"v":[[0,1,["G1161"]],[1,2,["G1565"]],[2,3,["G3004"]],[3,4,["G4012"]],[4,5,["G3588"]],[5,6,["G3485"]],[6,8,["G848"]],[8,9,["G4983"]]]},{"k":26117,"v":[[0,1,["G3753"]],[1,2,["G3767"]],[2,5,["G1453"]],[5,6,["G1537"]],[6,8,["G3498"]],[8,9,["G846"]],[9,10,["G3101"]],[10,11,["G3415"]],[11,12,["G3754"]],[12,15,["G3004"]],[15,16,["G5124"]],[16,18,["G846"]],[18,19,["G2532"]],[19,21,["G4100"]],[21,22,["G3588"]],[22,23,["G1124"]],[23,24,["G2532"]],[24,25,["G3588"]],[25,26,["G3056"]],[26,27,["G3739"]],[27,28,["G2424"]],[28,30,["G2036"]]]},{"k":26118,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,4,["G2258"]],[4,5,["G1722"]],[5,6,["G2414"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G3957"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G1859"]],[12,14,["G4183"]],[14,15,["G4100"]],[15,16,["G1519"]],[16,17,["G846"]],[17,18,["G3686"]],[18,21,["G2334"]],[21,22,["G3588"]],[22,23,["G4592"]],[23,24,["G3739"]],[24,26,["G4160"]]]},{"k":26119,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,4,["G3756"]],[4,5,["G4100"]],[5,6,["G1438"]],[6,8,["G846"]],[8,10,["G846"]],[10,11,["G1097"]],[11,12,["G3956"]],[12,13,[]]]},{"k":26120,"v":[[0,1,["G2532","(G3754)"]],[1,2,["G2192","G5532"]],[2,3,["G3756"]],[3,4,["G2443"]],[4,5,["G5100"]],[5,7,["G3140"]],[7,8,["G4012"]],[8,9,["G444"]],[9,10,["G1063"]],[10,11,["G846"]],[11,12,["G1097"]],[12,13,["G5101"]],[13,14,["G2258"]],[14,15,["G1722"]],[15,16,["G444"]]]},{"k":26121,"v":[[0,1,["(G1161)"]],[1,2,["G2258"]],[2,4,["G444"]],[4,5,["G1537"]],[5,6,["G3588"]],[6,7,["G5330"]],[7,8,["G3686"]],[8,9,["G3530"]],[9,11,["G758"]],[11,13,["G3588"]],[13,14,["G2453"]]]},{"k":26122,"v":[[0,2,["G3778"]],[2,3,["G2064"]],[3,4,["G4314"]],[4,5,["G2424"]],[5,7,["G3571"]],[7,8,["G2532"]],[8,9,["G2036"]],[9,11,["G846"]],[11,12,["G4461"]],[12,14,["G1492"]],[14,15,["G3754"]],[15,19,["G1320"]],[19,20,["G2064"]],[20,21,["G575"]],[21,22,["G2316"]],[22,23,["G1063"]],[23,25,["G3762"]],[25,26,["G1410"]],[26,27,["G4160"]],[27,28,["G5023"]],[28,29,["G4592"]],[29,30,["G3739"]],[30,31,["G4771"]],[31,32,["G4160"]],[32,33,["G3362"]],[33,34,["G2316"]],[34,35,["G5600"]],[35,36,["G3326"]],[36,37,["G846"]]]},{"k":26123,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G281"]],[7,8,["G281"]],[8,10,["G3004"]],[10,12,["G4671"]],[12,13,["G3362"]],[13,15,["G5100"]],[15,17,["G1080"]],[17,18,["G509"]],[18,20,["G1410","G3756"]],[20,21,["G1492"]],[21,22,["G3588"]],[22,23,["G932"]],[23,25,["G2316"]]]},{"k":26124,"v":[[0,1,["G3530"]],[1,2,["G3004"]],[2,3,["G4314"]],[3,4,["G846"]],[4,5,["G4459"]],[5,6,["G1410"]],[6,8,["G444"]],[8,10,["G1080"]],[10,13,["G5607"]],[13,14,["G1088"]],[14,15,["G1410"]],[15,16,["(G3361)"]],[16,17,["G1525"]],[17,20,["G1208"]],[20,21,["G1519"]],[21,22,["G848"]],[22,23,["G3384"]],[23,24,["G2836"]],[24,25,["G2532"]],[25,27,["G1080"]]]},{"k":26125,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G281"]],[3,4,["G281"]],[4,6,["G3004"]],[6,8,["G4671"]],[8,9,["G3362"]],[9,11,["G5100"]],[11,13,["G1080"]],[13,14,["G1537"]],[14,15,["G5204"]],[15,16,["G2532"]],[16,19,["G4151"]],[19,21,["G1410","G3756"]],[21,22,["G1525"]],[22,23,["G1519"]],[23,24,["G3588"]],[24,25,["G932"]],[25,27,["G2316"]]]},{"k":26126,"v":[[0,4,["G1080"]],[4,5,["G1537"]],[5,6,["G3588"]],[6,7,["G4561"]],[7,8,["G2076"]],[8,9,["G4561"]],[9,10,["G2532"]],[10,14,["G1080"]],[14,15,["G1537"]],[15,16,["G3588"]],[16,17,["G4151"]],[17,18,["G2076"]],[18,19,["G4151"]]]},{"k":26127,"v":[[0,1,["G2296"]],[1,2,["G3361"]],[2,3,["G3754"]],[3,5,["G2036"]],[5,7,["G4671"]],[7,8,["G5209"]],[8,9,["G1163"]],[9,11,["G1080"]],[11,12,["G509"]]]},{"k":26128,"v":[[0,1,["G3588"]],[1,2,["G4151"]],[2,3,["G4154"]],[3,4,["G3699"]],[4,6,["G2309"]],[6,7,["G2532"]],[7,9,["G191"]],[9,10,["G3588"]],[10,11,["G5456"]],[11,12,["G846"]],[12,13,["G235"]],[13,16,["G1492","G3756"]],[16,17,["G4159"]],[17,19,["G2064"]],[19,20,["G2532"]],[20,21,["G4226"]],[21,23,["G5217"]],[23,24,["G3779"]],[24,25,["G2076"]],[25,27,["G3956"]],[27,30,["G1080"]],[30,31,["G1537"]],[31,32,["G3588"]],[32,33,["G4151"]]]},{"k":26129,"v":[[0,1,["G3530"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G4459"]],[7,8,["G1410"]],[8,10,["G5023"]],[10,11,["G1096"]]]},{"k":26130,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G1488"]],[7,8,["G4771"]],[8,10,["G1320"]],[10,12,["G2474"]],[12,13,["G2532"]],[13,14,["G1097"]],[14,15,["G3756"]],[15,17,["G5023"]]]},{"k":26131,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G4671"]],[6,7,["(G3754)"]],[7,8,["G2980"]],[8,9,["G3739"]],[9,12,["G1492"]],[12,13,["G2532"]],[13,14,["G3140"]],[14,15,["G3739"]],[15,18,["G3708"]],[18,19,["G2532"]],[19,21,["G2983"]],[21,22,["G3756"]],[22,23,["G2257"]],[23,24,["G3141"]]]},{"k":26132,"v":[[0,1,["G1487"]],[1,4,["G2036"]],[4,5,["G5213"]],[5,7,["G1919"]],[7,8,["G2532"]],[8,10,["G4100"]],[10,11,["G3756"]],[11,12,["G4459"]],[12,15,["G4100"]],[15,16,["G1437"]],[16,18,["G2036"]],[18,19,["G5213"]],[19,22,["G2032"]]]},{"k":26133,"v":[[0,1,["G2532"]],[1,3,["G3762"]],[3,6,["G305"]],[6,7,["G1519"]],[7,8,["G3772"]],[8,9,["G1508"]],[9,13,["G2597"]],[13,14,["G1537"]],[14,15,["G3772"]],[15,17,["G3588"]],[17,18,["G5207"]],[18,20,["G444"]],[20,22,["G5607"]],[22,23,["G1722"]],[23,24,["G3772"]]]},{"k":26134,"v":[[0,1,["G2532"]],[1,2,["G2531"]],[2,3,["G3475"]],[3,5,["G5312"]],[5,6,["G3588"]],[6,7,["G3789"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G2048"]],[10,12,["G3779"]],[12,13,["G1163"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,17,["G444"]],[17,20,["G5312"]]]},{"k":26135,"v":[[0,1,["G2443"]],[1,2,["G3956"]],[2,3,["G4100"]],[3,4,["G1519"]],[4,5,["G846"]],[5,7,["G3361"]],[7,8,["G622"]],[8,9,["G235"]],[9,10,["G2192"]],[10,11,["G166"]],[11,12,["G2222"]]]},{"k":26136,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,3,["G3779"]],[3,4,["G25"]],[4,5,["G3588"]],[5,6,["G2889"]],[6,7,["G5620"]],[7,9,["G1325"]],[9,10,["G848"]],[10,12,["G3439"]],[12,13,["G5207"]],[13,14,["G2443"]],[14,15,["G3956"]],[15,16,["G4100"]],[16,17,["G1519"]],[17,18,["G846"]],[18,20,["G3361"]],[20,21,["G622"]],[21,22,["G235"]],[22,23,["G2192"]],[23,24,["G166"]],[24,25,["G2222"]]]},{"k":26137,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,3,["G649"]],[3,4,["G3756"]],[4,5,["G848"]],[5,6,["G5207"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G2889"]],[9,10,["G2443"]],[10,11,["G2919"]],[11,12,["G3588"]],[12,13,["G2889"]],[13,14,["G235"]],[14,15,["G2443"]],[15,16,["G3588"]],[16,17,["G2889"]],[17,18,["G1223"]],[18,19,["G846"]],[19,22,["G4982"]]]},{"k":26138,"v":[[0,3,["G4100"]],[3,4,["G1519"]],[4,5,["G846"]],[5,7,["G3756"]],[7,8,["G2919"]],[8,9,["G1161"]],[9,12,["G4100"]],[12,13,["G3361"]],[13,15,["G2919"]],[15,16,["G2235"]],[16,17,["G3754"]],[17,20,["G3361"]],[20,21,["G4100"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G3686"]],[24,26,["G3588"]],[26,28,["G3439"]],[28,29,["G5207"]],[29,31,["G2316"]]]},{"k":26139,"v":[[0,1,["G1161"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G2920"]],[5,6,["G3754"]],[6,7,["G5457"]],[7,9,["G2064"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G2889"]],[12,13,["G2532"]],[13,14,["G444"]],[14,15,["G25"]],[15,16,["G4655"]],[16,17,["G3123"]],[17,18,["G2228"]],[18,19,["G5457"]],[19,20,["G1063"]],[20,21,["G846"]],[21,22,["G2041"]],[22,23,["G2258"]],[23,24,["G4190"]]]},{"k":26140,"v":[[0,1,["G1063"]],[1,3,["G3956"]],[3,5,["G4238"]],[5,6,["G5337"]],[6,7,["G3404"]],[7,8,["G3588"]],[8,9,["G5457"]],[9,10,["G2532","G3756"]],[10,11,["G2064"]],[11,12,["G4314"]],[12,13,["G3588"]],[13,14,["G5457"]],[14,15,["G3363"]],[15,16,["G846"]],[16,17,["G2041"]],[17,20,["G1651"]]]},{"k":26141,"v":[[0,1,["G1161"]],[1,4,["G4160"]],[4,5,["G225"]],[5,6,["G2064"]],[6,7,["G4314"]],[7,8,["G3588"]],[8,9,["G5457"]],[9,10,["G2443"]],[10,11,["G846"]],[11,12,["G2041"]],[12,16,["G5319"]],[16,17,["G3754"]],[17,19,["G2076"]],[19,20,["G2038"]],[20,21,["G1722"]],[21,22,["G2316"]]]},{"k":26142,"v":[[0,1,["G3326"]],[1,3,["G5023"]],[3,4,["G2064"]],[4,5,["G2424"]],[5,6,["G2532"]],[6,7,["G846"]],[7,8,["G3101"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G1093"]],[11,13,["G2449"]],[13,14,["G2532"]],[14,15,["G1563"]],[15,17,["G1304"]],[17,18,["G3326"]],[18,19,["G846"]],[19,20,["G2532"]],[20,21,["G907"]]]},{"k":26143,"v":[[0,1,["G1161"]],[1,2,["G2491"]],[2,3,["G2532"]],[3,4,["G2258"]],[4,5,["G907"]],[5,6,["G1722"]],[6,7,["G137"]],[7,9,["G1451"]],[9,10,["G4530"]],[10,11,["G3754"]],[11,13,["G2258"]],[13,14,["G4183"]],[14,15,["G5204"]],[15,16,["G1563"]],[16,17,["G2532"]],[17,19,["G3854"]],[19,20,["G2532"]],[20,22,["G907"]]]},{"k":26144,"v":[[0,1,["G1063"]],[1,2,["G2491"]],[2,3,["G2258"]],[3,5,["G3768"]],[5,6,["G906"]],[6,7,["G1519"]],[7,8,["G5438"]]]},{"k":26145,"v":[[0,1,["G3767"]],[1,3,["G1096"]],[3,5,["G2214"]],[5,8,["G1537"]],[8,9,["G2491"]],[9,10,["G3101"]],[10,11,["G3326"]],[11,13,["G2453"]],[13,14,["G4012"]],[14,15,["G2512"]]]},{"k":26146,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G4314"]],[4,5,["G2491"]],[5,6,["G2532"]],[6,7,["G2036"]],[7,9,["G846"]],[9,10,["G4461"]],[10,12,["G3739"]],[12,13,["G2258"]],[13,14,["G3326"]],[14,15,["G4675"]],[15,16,["G4008"]],[16,17,["G2446"]],[17,19,["G3739"]],[19,20,["G4771"]],[20,22,["G3140"]],[22,23,["G2396"]],[23,25,["G3778"]],[25,26,["G907"]],[26,27,["G2532"]],[27,28,["G3956"]],[28,30,["G2064"]],[30,31,["G4314"]],[31,32,["G846"]]]},{"k":26147,"v":[[0,1,["G2491"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G444"]],[6,7,["G1410","(G3756)"]],[7,8,["G2983"]],[8,9,["G3762"]],[9,10,["G3362"]],[10,12,["G5600"]],[12,13,["G1325"]],[13,14,["G846"]],[14,15,["G1537"]],[15,16,["G3772"]]]},{"k":26148,"v":[[0,1,["G5210"]],[1,2,["G846"]],[2,5,["G3140","G3427"]],[5,6,["G3754"]],[6,8,["G2036"]],[8,9,["G1473"]],[9,10,["G1510"]],[10,11,["G3756"]],[11,12,["G3588"]],[12,13,["G5547"]],[13,14,["G235"]],[14,15,["G3754"]],[15,17,["G1510"]],[17,18,["G649"]],[18,19,["G1715"]],[19,20,["G1565"]]]},{"k":26149,"v":[[0,3,["G2192"]],[3,4,["G3588"]],[4,5,["G3565"]],[5,6,["G2076"]],[6,8,["G3566"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G5384"]],[11,13,["G3588"]],[13,14,["G3566"]],[14,16,["G2476"]],[16,17,["G2532"]],[17,18,["G191"]],[18,19,["G846"]],[19,20,["G5463"]],[20,21,["G5479"]],[21,22,["G1223"]],[22,24,["G3588"]],[24,25,["G3566"]],[25,26,["G5456"]],[26,27,["G3778"]],[27,28,["G1699"]],[28,29,["G5479"]],[29,30,["G3767"]],[30,32,["G4137"]]]},{"k":26150,"v":[[0,1,["G1565"]],[1,2,["G1163"]],[2,3,["G837"]],[3,4,["G1161"]],[4,5,["G1691"]],[5,7,["G1642"]]]},{"k":26151,"v":[[0,3,["G2064"]],[3,5,["G509"]],[5,6,["G2076"]],[6,7,["G1883"]],[7,8,["G3956"]],[8,11,["G5607"]],[11,12,["G1537"]],[12,13,["G3588"]],[13,14,["G1093"]],[14,15,["G2076"]],[15,16,["G1537","G1093"]],[16,17,["G2532"]],[17,18,["G2980"]],[18,19,["G1537"]],[19,20,["G3588"]],[20,21,["G1093"]],[21,24,["G2064"]],[24,25,["G1537"]],[25,26,["G3772"]],[26,27,["G2076"]],[27,28,["G1883"]],[28,29,["G3956"]]]},{"k":26152,"v":[[0,1,["G2532"]],[1,2,["G3739"]],[2,5,["G3708"]],[5,6,["G2532"]],[6,7,["G191"]],[7,8,["G5124"]],[8,10,["G3140"]],[10,11,["G2532"]],[11,13,["G3762"]],[13,14,["G2983"]],[14,15,["G846"]],[15,16,["G3141"]]]},{"k":26153,"v":[[0,4,["G2983"]],[4,5,["G846"]],[5,6,["G3141"]],[6,11,["G4972"]],[11,12,["G3754"]],[12,13,["G2316"]],[13,14,["G2076"]],[14,15,["G227"]]]},{"k":26154,"v":[[0,1,["G1063"]],[1,3,["G3739"]],[3,4,["G2316"]],[4,6,["G649"]],[6,7,["G2980"]],[7,8,["G3588"]],[8,9,["G4487"]],[9,11,["G2316"]],[11,12,["G1063"]],[12,13,["G2316"]],[13,14,["G1325"]],[14,15,["G3756"]],[15,16,["G3588"]],[16,17,["G4151"]],[17,18,["G1537"]],[18,19,["G3358"]],[19,21,[]]]},{"k":26155,"v":[[0,1,["G3588"]],[1,2,["G3962"]],[2,3,["G25"]],[3,4,["G3588"]],[4,5,["G5207"]],[5,6,["G2532"]],[6,8,["G1325"]],[8,10,["G3956"]],[10,11,["G1722"]],[11,12,["G846"]],[12,13,["G5495"]]]},{"k":26156,"v":[[0,3,["G4100"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G5207"]],[6,7,["G2192"]],[7,8,["G166"]],[8,9,["G2222"]],[9,10,["G1161"]],[10,13,["G544"]],[13,15,["G3588"]],[15,16,["G5207"]],[16,18,["G3756"]],[18,19,["G3700"]],[19,20,["G2222"]],[20,21,["G235"]],[21,22,["G3588"]],[22,23,["G3709"]],[23,25,["G2316"]],[25,26,["G3306"]],[26,27,["G1909"]],[27,28,["G846"]]]},{"k":26157,"v":[[0,1,["G5613"]],[1,2,["G3767"]],[2,3,["G3588"]],[3,4,["G2962"]],[4,5,["G1097"]],[5,6,["G3754"]],[6,7,["G3588"]],[7,8,["G5330"]],[8,10,["G191"]],[10,11,["G3754"]],[11,12,["G2424"]],[12,13,["G4160"]],[13,14,["G2532"]],[14,15,["G907"]],[15,16,["G4119"]],[16,17,["G3101"]],[17,18,["G2228"]],[18,19,["G2491"]]]},{"k":26158,"v":[[0,1,["G2544"]],[1,2,["G2424"]],[2,3,["G846"]],[3,4,["G907"]],[4,5,["G3756"]],[5,6,["G235"]],[6,7,["G846"]],[7,8,["G3101"]]]},{"k":26159,"v":[[0,2,["G863"]],[2,3,["G2449"]],[3,4,["G2532"]],[4,5,["G565"]],[5,6,["G3825"]],[6,7,["G1519"]],[7,8,["G1056"]]]},{"k":26160,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,4,["G1163"]],[4,5,["G1330"]],[5,6,["G1223"]],[6,7,["G4540"]]]},{"k":26161,"v":[[0,1,["G3767"]],[1,2,["G2064"]],[2,4,["G1519"]],[4,6,["G4172"]],[6,8,["G4540"]],[8,11,["G3004"]],[11,12,["G4965"]],[12,13,["G4139"]],[13,15,["G3588"]],[15,18,["G5564"]],[18,19,["G3739"]],[19,20,["G2384"]],[20,21,["G1325"]],[21,23,["G848"]],[23,24,["G5207"]],[24,25,["G2501"]]]},{"k":26162,"v":[[0,1,["G1161"]],[1,2,["G2384"]],[2,3,["G4077"]],[3,4,["G2258"]],[4,5,["G1563"]],[5,6,["G2424"]],[6,7,["G3767"]],[7,9,["G2872"]],[9,10,["G1537"]],[10,12,["G3597"]],[12,13,["G2516"]],[13,14,["G3779"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,17,["G4077"]],[17,20,["G2258"]],[20,21,["G5616"]],[21,23,["G1623"]],[23,24,["G5610"]]]},{"k":26163,"v":[[0,2,["G2064"]],[2,4,["G1135"]],[4,5,["G1537"]],[5,6,["G4540"]],[6,8,["G501"]],[8,9,["G5204"]],[9,10,["G2424"]],[10,11,["G3004"]],[11,13,["G846"]],[13,14,["G1325"]],[14,15,["G3427"]],[15,17,["G4095"]]]},{"k":26164,"v":[[0,1,["G1063"]],[1,2,["G846"]],[2,3,["G3101"]],[3,6,["G565"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G4172"]],[9,10,["G2443"]],[10,11,["G59"]],[11,12,["G5160"]]]},{"k":26165,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G3588"]],[3,4,["G1135"]],[4,6,["G4542"]],[6,8,["G846"]],[8,9,["G4459"]],[9,13,["G4771"]],[13,14,["G5607"]],[14,16,["G2453"]],[16,17,["G154"]],[17,18,["G4095"]],[18,19,["G3844"]],[19,20,["G1700"]],[20,22,["G5607"]],[22,24,["G1135"]],[24,26,["G4542"]],[26,27,["G1063"]],[27,29,["G2453"]],[29,32,["G4798","G3756"]],[32,35,["G4541"]]]},{"k":26166,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G1487"]],[7,9,["G1492"]],[9,10,["G3588"]],[10,11,["G1431"]],[11,13,["G2316"]],[13,14,["G2532"]],[14,15,["G5101"]],[15,17,["G2076"]],[17,19,["G3004"]],[19,21,["G4671"]],[21,22,["G1325"]],[22,23,["G3427"]],[23,25,["G4095"]],[25,26,["G4771"]],[26,29,["G154","G302"]],[29,31,["G846"]],[31,32,["G2532"]],[32,36,["G1325","G302"]],[36,37,["G4671"]],[37,38,["G2198"]],[38,39,["G5204"]]]},{"k":26167,"v":[[0,1,["G3588"]],[1,2,["G1135"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G2962"]],[6,8,["G2192"]],[8,9,["G3777"]],[9,11,["G502"]],[11,13,["G2532"]],[13,14,["G3588"]],[14,15,["G5421"]],[15,16,["G2076"]],[16,17,["G901"]],[17,19,["G4159"]],[19,20,["G3767"]],[20,21,["G2192"]],[21,24,["G2198"]],[24,25,["G5204"]]]},{"k":26168,"v":[[0,1,["G1488"]],[1,2,["G4771","(G3361)"]],[2,3,["G3187"]],[3,5,["G2257"]],[5,6,["G3962"]],[6,7,["G2384"]],[7,8,["G3739"]],[8,9,["G1325"]],[9,10,["G2254"]],[10,11,["G3588"]],[11,12,["G5421"]],[12,13,["G2532"]],[13,14,["G4095"]],[14,15,["G1537","G846"]],[15,16,["G846"]],[16,17,["G2532"]],[17,18,["G846"]],[18,19,["G5207"]],[19,20,["G2532"]],[20,21,["G846"]],[21,22,["G2353"]]]},{"k":26169,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G3956"]],[7,8,["G4095"]],[8,9,["G1537"]],[9,10,["G5127"]],[10,11,["G5204"]],[11,13,["G1372"]],[13,14,["G3825"]]]},{"k":26170,"v":[[0,1,["G1161"]],[1,2,["G3739","G302"]],[2,3,["G4095"]],[3,4,["G1537"]],[4,5,["G3588"]],[5,6,["G5204"]],[6,7,["G3739"]],[7,8,["G1473"]],[8,10,["G1325"]],[10,11,["G846"]],[11,13,["G3364","G1519","G165"]],[13,14,["G1372"]],[14,15,["G235"]],[15,16,["G3588"]],[16,17,["G5204"]],[17,18,["G3739"]],[18,21,["G1325"]],[21,22,["G846"]],[22,24,["G1096"]],[24,25,["G1722"]],[25,26,["G846"]],[26,28,["G4077"]],[28,30,["G5204"]],[30,32,["G242"]],[32,33,["G1519"]],[33,34,["G166"]],[34,35,["G2222"]]]},{"k":26171,"v":[[0,1,["G3588"]],[1,2,["G1135"]],[2,3,["G3004"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G2962"]],[6,7,["G1325"]],[7,8,["G3427"]],[8,9,["G5124"]],[9,10,["G5204"]],[10,11,["G2443"]],[11,13,["G1372"]],[13,14,["G3361"]],[14,15,["G3366"]],[15,16,["G2064"]],[16,17,["G1759"]],[17,19,["G501"]]]},{"k":26172,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G5217"]],[5,6,["G5455"]],[6,7,["G4675"]],[7,8,["G435"]],[8,9,["G2532"]],[9,10,["G2064"]],[10,11,["G1759"]]]},{"k":26173,"v":[[0,1,["G3588"]],[1,2,["G1135"]],[2,3,["G611"]],[3,4,["G2532"]],[4,5,["G2036"]],[5,7,["G2192"]],[7,8,["G3756"]],[8,9,["G435"]],[9,10,["G2424"]],[10,11,["G3004"]],[11,13,["G846"]],[13,16,["G2573"]],[16,17,["G2036"]],[17,19,["G2192"]],[19,20,["G3756"]],[20,21,["G435"]]]},{"k":26174,"v":[[0,1,["G1063"]],[1,4,["G2192"]],[4,5,["G4002"]],[5,6,["G435"]],[6,7,["G2532"]],[7,9,["G3739"]],[9,11,["G3568"]],[11,12,["G2192"]],[12,13,["G2076"]],[13,14,["G3756"]],[14,15,["G4675"]],[15,16,["G435"]],[16,18,["G5124"]],[18,19,["G2046"]],[19,21,["G227"]]]},{"k":26175,"v":[[0,1,["G3588"]],[1,2,["G1135"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G2962"]],[6,8,["G2334"]],[8,9,["G3754"]],[9,10,["G4771"]],[10,11,["G1488"]],[11,13,["G4396"]]]},{"k":26176,"v":[[0,1,["G2257"]],[1,2,["G3962"]],[2,3,["G4352"]],[3,4,["G1722"]],[4,5,["G5129"]],[5,6,["G3735"]],[6,7,["G2532"]],[7,8,["G5210"]],[8,9,["G3004"]],[9,10,["G3754"]],[10,11,["G1722"]],[11,12,["G2414"]],[12,13,["G2076"]],[13,14,["G3588"]],[14,15,["G5117"]],[15,16,["G3699"]],[16,18,["G1163"]],[18,20,["G4352"]]]},{"k":26177,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1135"]],[5,6,["G4100"]],[6,7,["G3427","(G3754)"]],[7,9,["G5610"]],[9,10,["G2064"]],[10,11,["G3753"]],[11,14,["G3777"]],[14,15,["G1722"]],[15,16,["G5129"]],[16,17,["G3735"]],[17,19,["G3777"]],[19,20,["G1722"]],[20,21,["G2414"]],[21,22,["G4352"]],[22,23,["G3588"]],[23,24,["G3962"]]]},{"k":26178,"v":[[0,1,["G5210"]],[1,2,["G4352"]],[2,4,["G1492"]],[4,5,["G3756"]],[5,6,["G3739"]],[6,7,["G2249"]],[7,8,["G1492"]],[8,9,["G3739"]],[9,11,["G4352"]],[11,12,["G3754"]],[12,13,["G4991"]],[13,14,["G2076"]],[14,15,["G1537"]],[15,16,["G3588"]],[16,17,["G2453"]]]},{"k":26179,"v":[[0,1,["G235"]],[1,3,["G5610"]],[3,4,["G2064"]],[4,5,["G2532"]],[5,6,["G3568"]],[6,7,["G2076"]],[7,8,["G3753"]],[8,9,["G3588"]],[9,10,["G228"]],[10,11,["G4353"]],[11,13,["G4352"]],[13,14,["G3588"]],[14,15,["G3962"]],[15,16,["G1722"]],[16,17,["G4151"]],[17,18,["G2532"]],[18,20,["G225"]],[20,21,["G1063"]],[21,22,["G3588"]],[22,23,["G3962","(G2532)"]],[23,24,["G2212"]],[24,25,["G5108"]],[25,27,["G4352"]],[27,28,["G846"]]]},{"k":26180,"v":[[0,1,["G2316"]],[1,4,["G4151"]],[4,5,["G2532"]],[5,8,["G4352"]],[8,9,["G846"]],[9,10,["G1163"]],[10,11,["G4352"]],[11,13,["G1722"]],[13,14,["G4151"]],[14,15,["G2532"]],[15,17,["G225"]]]},{"k":26181,"v":[[0,1,["G3588"]],[1,2,["G1135"]],[2,3,["G3004"]],[3,5,["G846"]],[5,7,["G1492"]],[7,8,["G3754"]],[8,9,["G3323"]],[9,10,["G2064"]],[10,13,["G3004"]],[13,14,["G5547"]],[14,15,["G3752"]],[15,16,["G1565"]],[16,18,["G2064"]],[18,21,["G312"]],[21,22,["G2254"]],[22,24,["G3956"]]]},{"k":26182,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1473"]],[5,7,["G2980"]],[7,9,["G4671"]],[9,10,["G1510"]],[10,11,[]]]},{"k":26183,"v":[[0,1,["G2532"]],[1,2,["G1909"]],[2,3,["G5129"]],[3,4,["G2064"]],[4,5,["G846"]],[5,6,["G3101"]],[6,7,["G2532"]],[7,8,["G2296"]],[8,9,["G3754"]],[9,11,["G2980"]],[11,12,["G3326"]],[12,14,["G1135"]],[14,15,["G3305"]],[15,17,["G3762"]],[17,18,["G2036"]],[18,19,["G5101"]],[19,20,["G2212"]],[20,22,["G2228"]],[22,23,["G5101"]],[23,24,["G2980"]],[24,26,["G3326"]],[26,27,["G846"]]]},{"k":26184,"v":[[0,1,["G3588"]],[1,2,["G1135"]],[2,3,["G3767"]],[3,4,["G863"]],[4,5,["G848"]],[5,6,["G5201"]],[6,7,["G2532"]],[7,10,["G565"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G4172"]],[13,14,["G2532"]],[14,15,["G3004"]],[15,17,["G3588"]],[17,18,["G444"]]]},{"k":26185,"v":[[0,1,["G1205"]],[1,2,["G1492"]],[2,4,["G444"]],[4,5,["G3739"]],[5,6,["G2036"]],[6,7,["G3427"]],[7,9,["G3956"]],[9,11,["G3745"]],[11,13,["G4160"]],[13,14,["G2076"]],[14,15,["G3385"]],[15,16,["G3778"]],[16,17,["G3588"]],[17,18,["G5547"]]]},{"k":26186,"v":[[0,1,["G3767"]],[1,3,["G1831"]],[3,5,["G1537"]],[5,6,["G3588"]],[6,7,["G4172"]],[7,8,["G2532"]],[8,9,["G2064"]],[9,10,["G4314"]],[10,11,["G846"]]]},{"k":26187,"v":[[0,0,["(G1161)"]],[0,1,["G1722"]],[1,2,["G3588"]],[2,4,["G3342"]],[4,6,["G3101"]],[6,7,["G2065"]],[7,8,["G846"]],[8,9,["G3004"]],[9,10,["G4461"]],[10,11,["G5315"]]]},{"k":26188,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G1473"]],[6,7,["G2192"]],[7,8,["G1035"]],[8,10,["G5315"]],[10,11,["G3739"]],[11,12,["G5210"]],[12,13,["G1492"]],[13,14,["G3756"]],[14,15,[]]]},{"k":26189,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G3588"]],[3,4,["G3101"]],[4,7,["G240","G4314"]],[7,10,["G3387"]],[10,11,["G5342"]],[11,12,["G846"]],[12,15,["G5315"]]]},{"k":26190,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1699"]],[5,6,["G1033"]],[6,7,["G2076"]],[7,8,["G2443"]],[8,9,["G4160"]],[9,10,["G3588"]],[10,11,["G2307"]],[11,15,["G3992"]],[15,16,["G3165"]],[16,17,["G2532"]],[17,19,["G5048"]],[19,20,["G846"]],[20,21,["G2041"]]]},{"k":26191,"v":[[0,1,["G3004"]],[1,2,["G3756"]],[2,3,["G5210"]],[3,5,["G2076"]],[5,6,["G2089"]],[6,8,["G5072"]],[8,9,["G2532"]],[9,11,["G2064"]],[11,12,["G2326"]],[12,13,["G2400"]],[13,15,["G3004"]],[15,17,["G5213"]],[17,19,["G1869"]],[19,20,["G5216"]],[20,21,["G3788"]],[21,22,["G2532"]],[22,24,["G2300"]],[24,25,["G3588"]],[25,26,["G5561"]],[26,27,["G3754"]],[27,29,["G1526"]],[29,30,["G3022"]],[30,31,["G2235"]],[31,32,["G4314"]],[32,33,["G2326"]]]},{"k":26192,"v":[[0,1,["G2532"]],[1,4,["G2325"]],[4,5,["G2983"]],[5,6,["G3408"]],[6,7,["G2532"]],[7,8,["G4863"]],[8,9,["G2590"]],[9,10,["G1519"]],[10,11,["G2222"]],[11,12,["G166"]],[12,13,["G2443"]],[13,14,["G2532"]],[14,17,["G4687"]],[17,18,["G2532"]],[18,21,["G2325"]],[21,23,["G5463"]],[23,24,["G3674"]]]},{"k":26193,"v":[[0,1,["G1063"]],[1,2,["G1722","G5129"]],[2,3,["G2076"]],[3,5,["G3056"]],[5,6,["G228"]],[6,7,["G243"]],[7,8,["G4687"]],[8,9,["G2532"]],[9,10,["G243"]],[10,11,["G2325"]]]},{"k":26194,"v":[[0,1,["G1473"]],[1,2,["G649"]],[2,3,["G5209"]],[3,5,["G2325"]],[5,7,["G3739"]],[7,8,["G5210"]],[8,11,["G2872","G3756"]],[11,13,["G243"]],[13,14,["G2872"]],[14,15,["G2532"]],[15,16,["G5210"]],[16,18,["G1525"]],[18,19,["G1519"]],[19,20,["G846"]],[20,21,["G2873"]]]},{"k":26195,"v":[[0,1,["G1161"]],[1,2,["G4183"]],[2,4,["G3588"]],[4,5,["G4541"]],[5,6,["G1537"]],[6,7,["G1565"]],[7,8,["G4172"]],[8,9,["G4100"]],[9,10,["G1519"]],[10,11,["G846"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G3056"]],[14,16,["G3588"]],[16,17,["G1135"]],[17,19,["G3140"]],[19,21,["G2036"]],[21,22,["G3427"]],[22,23,["G3956"]],[23,25,["G3745"]],[25,27,["G4160"]]]},{"k":26196,"v":[[0,1,["G3767"]],[1,2,["G5613"]],[2,3,["G3588"]],[3,4,["G4541"]],[4,6,["G2064"]],[6,7,["G4314"]],[7,8,["G846"]],[8,10,["G2065"]],[10,11,["G846"]],[11,15,["G3306"]],[15,16,["G3844"]],[16,17,["G846"]],[17,18,["G2532"]],[18,20,["G3306"]],[20,21,["G1563"]],[21,22,["G1417"]],[22,23,["G2250"]]]},{"k":26197,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,3,["G4119"]],[3,4,["G4100"]],[4,5,["G1223"]],[5,8,["G846"]],[8,9,["G3056"]]]},{"k":26198,"v":[[0,1,["G5037"]],[1,2,["G3004"]],[2,4,["G3588"]],[4,5,["G1135"]],[5,6,["G3765"]],[6,8,["G4100"]],[8,10,["G1223"]],[10,12,["G4674"]],[12,13,["G2981"]],[13,14,["G1063"]],[14,17,["G191"]],[17,19,["G846"]],[19,20,["G2532"]],[20,21,["G1492"]],[21,22,["G3754"]],[22,23,["G3778"]],[23,24,["G2076"]],[24,25,["G230"]],[25,26,["G3588"]],[26,27,["G5547"]],[27,28,["G3588"]],[28,29,["G4990"]],[29,31,["G3588"]],[31,32,["G2889"]]]},{"k":26199,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,3,["G1417"]],[3,4,["G2250"]],[4,6,["G1831"]],[6,7,["G1564"]],[7,8,["G2532"]],[8,9,["G565"]],[9,10,["G1519"]],[10,11,["G1056"]]]},{"k":26200,"v":[[0,1,["G1063"]],[1,2,["G2424"]],[2,3,["G846"]],[3,4,["G3140"]],[4,5,["G3754"]],[5,7,["G4396"]],[7,8,["G2192"]],[8,9,["G3756"]],[9,10,["G5092"]],[10,11,["G1722"]],[11,13,["G2398"]],[13,14,["G3968"]]]},{"k":26201,"v":[[0,1,["G3767"]],[1,2,["G3753"]],[2,5,["G2064"]],[5,6,["G1519"]],[6,7,["G1056"]],[7,8,["G3588"]],[8,9,["G1057"]],[9,10,["G1209"]],[10,11,["G846"]],[11,13,["G3708"]],[13,16,["G3956"]],[16,17,["G3739"]],[17,19,["G4160"]],[19,20,["G1722"]],[20,21,["G2414"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G1859"]],[24,25,["G1063"]],[25,26,["G846"]],[26,27,["G2532"]],[27,28,["G2064"]],[28,29,["G1519"]],[29,30,["G3588"]],[30,31,["G1859"]]]},{"k":26202,"v":[[0,1,["G3767"]],[1,2,["G2424"]],[2,3,["G2064"]],[3,4,["G3825"]],[4,5,["G1519"]],[5,6,["G2580"]],[6,8,["G1056"]],[8,9,["G3699"]],[9,11,["G4160"]],[11,12,["G3588"]],[12,13,["G5204"]],[13,14,["G3631"]],[14,15,["G2532"]],[15,17,["G2258"]],[17,19,["G5100"]],[19,20,["G937"]],[20,21,["G3739"]],[21,22,["G5207"]],[22,24,["G770"]],[24,25,["G1722"]],[25,26,["G2584"]]]},{"k":26203,"v":[[0,2,["G3778"]],[2,3,["G191"]],[3,4,["G3754"]],[4,5,["G2424"]],[5,7,["G2240"]],[7,9,["G1537"]],[9,10,["G2449"]],[10,11,["G1519"]],[11,12,["G1056"]],[12,14,["G565"]],[14,15,["G4314"]],[15,16,["G846"]],[16,17,["G2532"]],[17,18,["G2065"]],[18,19,["G846"]],[19,20,["G2443"]],[20,24,["G2597"]],[24,25,["G2532"]],[25,26,["G2390"]],[26,27,["G846"]],[27,28,["G5207"]],[28,29,["G1063"]],[29,36,["G3195","G599"]]]},{"k":26204,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G3362"]],[6,8,["G1492"]],[8,9,["G4592"]],[9,10,["G2532"]],[10,11,["G5059"]],[11,14,["G3364"]],[14,15,["G4100"]]]},{"k":26205,"v":[[0,1,["G3588"]],[1,2,["G937"]],[2,3,["G3004"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G2962"]],[6,8,["G2597"]],[8,9,["G4250"]],[9,10,["G3450"]],[10,11,["G3813"]],[11,12,["G599"]]]},{"k":26206,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,7,["G4198"]],[7,8,["G4675"]],[8,9,["G5207"]],[9,10,["G2198"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G444"]],[13,14,["G4100"]],[14,15,["G3588"]],[15,16,["G3056"]],[16,17,["G3739"]],[17,18,["G2424"]],[18,20,["G2036"]],[20,22,["G846"]],[22,23,["G2532"]],[23,27,["G4198"]]]},{"k":26207,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G2235"]],[5,7,["G2597"]],[7,8,["G846"]],[8,9,["G1401"]],[9,10,["G528"]],[10,11,["G846"]],[11,12,["G2532"]],[12,13,["G518"]],[13,15,["G3004"]],[15,16,["G4675"]],[16,17,["G3816"]],[17,18,["G2198"]]]},{"k":26208,"v":[[0,1,["G3767"]],[1,2,["G4441"]],[2,4,["G3844"]],[4,5,["G846"]],[5,6,["G3588"]],[6,7,["G5610"]],[7,8,["G1722","G3739"]],[8,12,["G2192","G2866"]],[12,13,["G2532"]],[13,15,["G2036"]],[15,17,["G846"]],[17,18,["G5504"]],[18,21,["G1442"]],[21,22,["G5610"]],[22,23,["G3588"]],[23,24,["G4446"]],[24,25,["G863"]],[25,26,["G846"]]]},{"k":26209,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,3,["G3962"]],[3,4,["G1097"]],[4,5,["G3754"]],[5,8,["G1722"]],[8,10,["G1565"]],[10,11,["G5610"]],[11,12,["G1722"]],[12,14,["G3739"]],[14,15,["G2424"]],[15,16,["G2036"]],[16,18,["G846"]],[18,19,["G4675"]],[19,20,["G5207"]],[20,21,["G2198"]],[21,22,["G2532"]],[22,23,["G846"]],[23,24,["G4100"]],[24,25,["G2532"]],[25,26,["G846"]],[26,27,["G3650"]],[27,28,["G3614"]]]},{"k":26210,"v":[[0,1,["G5124"]],[1,3,["G3825"]],[3,5,["G1208"]],[5,6,["G4592"]],[6,8,["G2424"]],[8,9,["G4160"]],[9,13,["G2064"]],[13,15,["G1537"]],[15,16,["G2449"]],[16,17,["G1519"]],[17,18,["G1056"]]]},{"k":26211,"v":[[0,1,["G3326"]],[1,2,["G5023"]],[2,4,["G2258"]],[4,6,["G1859"]],[6,8,["G3588"]],[8,9,["G2453"]],[9,10,["G2532"]],[10,11,["G2424"]],[11,13,["G305"]],[13,14,["G1519"]],[14,15,["G2414"]]]},{"k":26212,"v":[[0,1,["G1161"]],[1,3,["G2076"]],[3,4,["G1722"]],[4,5,["G2414"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G4262"]],[8,11,["G2861"]],[11,14,["G1951"]],[14,18,["G1447"]],[18,19,["G964"]],[19,20,["G2192"]],[20,21,["G4002"]],[21,22,["G4745"]]]},{"k":26213,"v":[[0,1,["G1722"]],[1,2,["G5025"]],[2,3,["G2621"]],[3,5,["G4183"]],[5,6,["G4128"]],[6,9,["G770"]],[9,11,["G5185"]],[11,12,["G5560"]],[12,13,["G3584"]],[13,15,["G1551"]],[15,16,["G3588"]],[16,17,["G2796"]],[17,19,["G3588"]],[19,20,["G5204"]]]},{"k":26214,"v":[[0,1,["G1063"]],[1,3,["G32"]],[3,5,["G2597"]],[5,9,["G2596","G2540"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G2861"]],[12,13,["G2532"]],[13,14,["G5015"]],[14,15,["G3588"]],[15,16,["G5204"]],[16,18,["G3767"]],[18,19,["G4413"]],[19,20,["G3326"]],[20,21,["G3588"]],[21,22,["G5016"]],[22,24,["G3588"]],[24,25,["G5204"]],[25,27,["G1684"]],[27,29,["G1096"]],[29,30,["G5199"]],[30,32,["G3739","G1221"]],[32,33,["G3553"]],[33,35,["G2722"]]]},{"k":26215,"v":[[0,1,["G1161"]],[1,3,["G5100"]],[3,4,["G444"]],[4,5,["G2258"]],[5,6,["G1563"]],[6,8,["G2192"]],[8,9,["(G1722)"]],[9,10,["G769"]],[10,13,["G5144","G3638"]],[13,14,["G2094"]]]},{"k":26216,"v":[[0,2,["G2424"]],[2,3,["G1492"]],[3,4,["G5126"]],[4,5,["G2621"]],[5,6,["G2532"]],[6,7,["G1097"]],[7,8,["G3754"]],[8,11,["G2192"]],[11,12,["G2235"]],[12,14,["G4183"]],[14,15,["G5550"]],[15,20,["G3004"]],[20,22,["G846"]],[22,23,["G2309"]],[23,26,["G1096"]],[26,27,["G5199"]]]},{"k":26217,"v":[[0,1,["G3588"]],[1,3,["G770"]],[3,4,["G611"]],[4,5,["G846"]],[5,6,["G2962"]],[6,8,["G2192"]],[8,9,["G3756"]],[9,10,["G444","(G2443)"]],[10,11,["G3752"]],[11,12,["G3588"]],[12,13,["G5204"]],[13,15,["G5015"]],[15,17,["G906"]],[17,18,["G3165"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G2861"]],[21,22,["G1161"]],[22,23,["G1722","G3739"]],[23,24,["G1473"]],[24,26,["G2064"]],[26,27,["G243"]],[27,29,["G2597"]],[29,30,["G4253"]],[30,31,["G1700"]]]},{"k":26218,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1453"]],[5,7,["G142"]],[7,8,["G4675"]],[8,9,["G2895"]],[9,10,["G2532"]],[10,11,["G4043"]]]},{"k":26219,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G3588"]],[3,4,["G444"]],[4,6,["G1096"]],[6,7,["G5199"]],[7,8,["G2532"]],[8,10,["G142"]],[10,11,["G846"]],[11,12,["G2895"]],[12,13,["G2532"]],[13,14,["G4043"]],[14,15,["G1161"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G1565"]],[18,19,["G2250"]],[19,20,["G2258"]],[20,22,["G4521"]]]},{"k":26220,"v":[[0,1,["G3588"]],[1,2,["G2453"]],[2,3,["G3767"]],[3,4,["G3004"]],[4,9,["G2323"]],[9,11,["G2076"]],[11,14,["G4521"]],[14,18,["G1832","G3756"]],[18,20,["G4671"]],[20,22,["G142"]],[22,24,["G2895"]]]},{"k":26221,"v":[[0,2,["G611"]],[2,3,["G846"]],[3,6,["G4160"]],[6,7,["G3165"]],[7,8,["G5199"]],[8,10,["G1565"]],[10,11,["G2036"]],[11,13,["G3427"]],[13,15,["G142"]],[15,16,["G4675"]],[16,17,["G2895"]],[17,18,["G2532"]],[18,19,["G4043"]]]},{"k":26222,"v":[[0,1,["G3767"]],[1,2,["G2065"]],[2,4,["G846"]],[4,5,["G5101"]],[5,6,["G444"]],[6,7,["G2076"]],[7,10,["G2036"]],[10,12,["G4671"]],[12,14,["G142"]],[14,15,["G4675"]],[15,16,["G2895"]],[16,17,["G2532"]],[17,18,["G4043"]]]},{"k":26223,"v":[[0,1,["G1161"]],[1,5,["G2390"]],[5,6,["G1492"]],[6,7,["G3756"]],[7,8,["G5101"]],[8,10,["G2076"]],[10,11,["G1063"]],[11,12,["G2424"]],[12,16,["G1593"]],[16,18,["G3793"]],[18,19,["G5607"]],[19,20,["G1722"]],[20,22,["G5117"]]]},{"k":26224,"v":[[0,1,["G3326","G5023"]],[1,2,["G2424"]],[2,3,["G2147"]],[3,4,["G846"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G2411"]],[7,8,["G2532"]],[8,9,["G2036"]],[9,11,["G846"]],[11,12,["G2396"]],[12,15,["G1096"]],[15,16,["G5199"]],[16,17,["G264"]],[17,19,["G3371"]],[19,20,["G3363"]],[20,22,["G5501"]],[22,23,["G5100"]],[23,24,["G1096"]],[24,26,["G4671"]]]},{"k":26225,"v":[[0,1,["G3588"]],[1,2,["G444"]],[2,3,["G565"]],[3,4,["G2532"]],[4,5,["G312"]],[5,6,["G3588"]],[6,7,["G2453"]],[7,8,["G3754"]],[8,10,["G2076"]],[10,11,["G2424"]],[11,14,["G4160"]],[14,15,["G846"]],[15,16,["G5199"]]]},{"k":26226,"v":[[0,1,["G2532"]],[1,2,["G1223","G5124"]],[2,4,["G3588"]],[4,5,["G2453"]],[5,6,["G1377"]],[6,7,["G2424"]],[7,8,["G2532"]],[8,9,["G2212"]],[9,11,["G615"]],[11,12,["G846"]],[12,13,["G3754"]],[13,16,["G4160"]],[16,18,["G5023"]],[18,19,["G1722"]],[19,22,["G4521"]]]},{"k":26227,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G846"]],[4,5,["G3450"]],[5,6,["G3962"]],[6,7,["G2038"]],[7,8,["G2193","G737"]],[8,10,["G2504"]],[10,11,["G2038"]]]},{"k":26228,"v":[[0,1,["G1223","G5124","(G3767)"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,4,["G2212"]],[4,6,["G3123"]],[6,8,["G615"]],[8,9,["G846"]],[9,10,["G3754"]],[10,12,["G3756"]],[12,13,["G3440"]],[13,15,["G3089"]],[15,16,["G3588"]],[16,17,["G4521"]],[17,18,["G235"]],[18,19,["G3004"]],[19,20,["G2532"]],[20,22,["G2316"]],[22,24,["G2398"]],[24,25,["G3962"]],[25,26,["G4160"]],[26,27,["G1438"]],[27,28,["G2470"]],[28,30,["G2316"]]]},{"k":26229,"v":[[0,1,["G3767"]],[1,2,["G611"]],[2,3,["G2424"]],[3,4,["G2532"]],[4,5,["G2036"]],[5,7,["G846"]],[7,8,["G281"]],[8,9,["G281"]],[9,11,["G3004"]],[11,13,["G5213"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,16,["G1410","(G3756)"]],[16,17,["G4160"]],[17,18,["G3762"]],[18,19,["G575"]],[19,20,["G1438"]],[20,21,["G3362"]],[21,22,["G5100"]],[22,24,["G991"]],[24,25,["G3588"]],[25,26,["G3962"]],[26,27,["G4160"]],[27,28,["G1063"]],[28,31,["G3739","G302"]],[31,32,["G1565"]],[32,33,["G4160"]],[33,34,["G5023"]],[34,35,["G2532"]],[35,36,["G4160"]],[36,37,["G3588"]],[37,38,["G5207"]],[38,39,["G3668"]]]},{"k":26230,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3962"]],[3,4,["G5368"]],[4,5,["G3588"]],[5,6,["G5207"]],[6,7,["G2532"]],[7,8,["G1166"]],[8,9,["G846"]],[9,11,["G3956"]],[11,12,["G3739"]],[12,13,["G846"]],[13,14,["G4160"]],[14,15,["G2532"]],[15,18,["G1166"]],[18,19,["G846"]],[19,20,["G3187"]],[20,21,["G2041"]],[21,23,["G5130"]],[23,24,["G2443"]],[24,25,["G5210"]],[25,27,["G2296"]]]},{"k":26231,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G3588"]],[3,4,["G3962"]],[4,6,["G1453"]],[6,7,["G3588"]],[7,8,["G3498"]],[8,9,["G2532"]],[9,10,["G2227"]],[10,13,["G3779"]],[13,14,["G3588"]],[14,15,["G5207","(G2532)"]],[15,16,["G2227"]],[16,17,["G3739"]],[17,19,["G2309"]]]},{"k":26232,"v":[[0,1,["G1063","(G3761)"]],[1,2,["G3588"]],[2,3,["G3962"]],[3,4,["G2919"]],[4,6,["G3762"]],[6,7,["G235"]],[7,9,["G1325"]],[9,10,["G3956"]],[10,11,["G2920"]],[11,13,["G3588"]],[13,14,["G5207"]]]},{"k":26233,"v":[[0,1,["G2443"]],[1,2,["G3956"]],[2,5,["G5091"]],[5,6,["G3588"]],[6,7,["G5207"]],[7,9,["G2531"]],[9,11,["G5091"]],[11,12,["G3588"]],[12,13,["G3962"]],[13,16,["G5091"]],[16,17,["G3361"]],[17,18,["G3588"]],[18,19,["G5207"]],[19,20,["G5091"]],[20,21,["G3756"]],[21,22,["G3588"]],[22,23,["G3962"]],[23,26,["G3992"]],[26,27,["G846"]]]},{"k":26234,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213","(G3754)"]],[6,9,["G191"]],[9,10,["G3450"]],[10,11,["G3056"]],[11,12,["G2532"]],[12,13,["G4100"]],[13,17,["G3992"]],[17,18,["G3165"]],[18,19,["G2192"]],[19,20,["G166"]],[20,21,["G2222"]],[21,22,["G2532"]],[22,24,["G3756"]],[24,25,["G2064"]],[25,26,["G1519"]],[26,27,["G2920"]],[27,28,["G235"]],[28,30,["G3327"]],[30,31,["G1537"]],[31,32,["G2288"]],[32,33,["G1519"]],[33,34,["G2222"]]]},{"k":26235,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,7,["(G3754)"]],[7,8,["G5610"]],[8,10,["G2064"]],[10,11,["G2532"]],[11,12,["G3568"]],[12,13,["G2076"]],[13,14,["G3753"]],[14,15,["G3588"]],[15,16,["G3498"]],[16,18,["G191"]],[18,19,["G3588"]],[19,20,["G5456"]],[20,22,["G3588"]],[22,23,["G5207"]],[23,25,["G2316"]],[25,26,["G2532"]],[26,29,["G191"]],[29,31,["G2198"]]]},{"k":26236,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G3588"]],[3,4,["G3962"]],[4,5,["G2192"]],[5,6,["G2222"]],[6,7,["G1722"]],[7,8,["G1438"]],[8,9,["G3779"]],[9,12,["G1325"]],[12,13,["(G2532)"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,17,["G2192"]],[17,18,["G2222"]],[18,19,["G1722"]],[19,20,["G1438"]]]},{"k":26237,"v":[[0,1,["G2532"]],[1,3,["G1325"]],[3,4,["G846"]],[4,5,["G1849"]],[5,7,["G4160"]],[7,8,["G2920"]],[8,9,["G2532"]],[9,10,["G3754"]],[10,12,["G2076"]],[12,14,["G5207"]],[14,16,["G444"]]]},{"k":26238,"v":[[0,1,["G2296"]],[1,2,["G3361"]],[2,4,["G5124"]],[4,5,["G3754"]],[5,7,["G5610"]],[7,9,["G2064"]],[9,10,["G1722"]],[10,12,["G3739"]],[12,13,["G3956"]],[13,14,["G3588"]],[14,16,["G1722"]],[16,17,["G3588"]],[17,18,["G3419"]],[18,20,["G191"]],[20,21,["G846"]],[21,22,["G5456"]]]},{"k":26239,"v":[[0,1,["G2532"]],[1,4,["G1607"]],[4,8,["G4160"]],[8,9,["G18"]],[9,10,["G1519"]],[10,12,["G386"]],[12,14,["G2222"]],[14,15,["G1161"]],[15,19,["G4238"]],[19,20,["G5337"]],[20,21,["G1519"]],[21,23,["G386"]],[23,25,["G2920"]]]},{"k":26240,"v":[[0,1,["G1473"]],[1,2,["G1410","(G3756)"]],[2,3,["G575"]],[3,6,["G1683"]],[6,7,["G4160"]],[7,8,["G3762"]],[8,9,["G2531"]],[9,11,["G191"]],[11,13,["G2919"]],[13,14,["G2532"]],[14,15,["G1699"]],[15,16,["G2920"]],[16,17,["G2076"]],[17,18,["G1342"]],[18,19,["G3754"]],[19,21,["G2212"]],[21,22,["G3756"]],[22,24,["G1699"]],[24,25,["G2307"]],[25,26,["G235"]],[26,27,["G3588"]],[27,28,["G2307"]],[28,30,["G3588"]],[30,31,["G3962"]],[31,34,["G3992"]],[34,35,["G3165"]]]},{"k":26241,"v":[[0,1,["G1437"]],[1,2,["G1473"]],[2,4,["G3140"]],[4,5,["G4012"]],[5,6,["G1683"]],[6,7,["G3450"]],[7,8,["G3141"]],[8,9,["G2076"]],[9,10,["G3756"]],[10,11,["G227"]]]},{"k":26242,"v":[[0,2,["G2076"]],[2,3,["G243"]],[3,6,["G3140"]],[6,7,["G4012"]],[7,8,["G1700"]],[8,9,["G2532"]],[9,11,["G1492"]],[11,12,["G3754"]],[12,13,["G3588"]],[13,14,["G3141"]],[14,15,["G3739"]],[15,17,["G3140"]],[17,18,["G4012"]],[18,19,["G1700"]],[19,20,["G2076"]],[20,21,["G227"]]]},{"k":26243,"v":[[0,1,["G5210"]],[1,2,["G649"]],[2,3,["G4314"]],[3,4,["G2491"]],[4,5,["G2532"]],[5,8,["G3140"]],[8,10,["G3588"]],[10,11,["G225"]]]},{"k":26244,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G2983"]],[3,4,["G3756"]],[4,5,["G3141"]],[5,6,["G3844"]],[6,7,["G444"]],[7,8,["G235"]],[8,10,["G5023"]],[10,12,["G3004"]],[12,13,["G2443"]],[13,14,["G5210"]],[14,17,["G4982"]]]},{"k":26245,"v":[[0,1,["G1565"]],[1,2,["G2258"]],[2,4,["G2545"]],[4,5,["G2532"]],[5,7,["G5316"]],[7,8,["G3088"]],[8,9,["G1161"]],[9,10,["G5210"]],[10,12,["G2309"]],[12,13,["G4314"]],[13,15,["G5610"]],[15,17,["G21"]],[17,18,["G1722"]],[18,19,["G846"]],[19,20,["G5457"]]]},{"k":26246,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G2192"]],[3,4,["G3187"]],[4,5,["G3141"]],[5,9,["G2491"]],[9,10,["G1063"]],[10,11,["G3588"]],[11,12,["G2041"]],[12,13,["G3739"]],[13,14,["G3588"]],[14,15,["G3962"]],[15,17,["G1325"]],[17,18,["G3427"]],[18,19,["G2443"]],[19,20,["G5048"]],[20,21,["(G846)"]],[21,22,["G846"]],[22,23,["G2041"]],[23,24,["G3739"]],[24,25,["G1473"]],[25,26,["G4160"]],[26,28,["G3140"]],[28,29,["G4012"]],[29,30,["G1700"]],[30,31,["G3754"]],[31,32,["G3588"]],[32,33,["G3962"]],[33,35,["G649"]],[35,36,["G3165"]]]},{"k":26247,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3962"]],[3,4,["G846"]],[4,7,["G3992"]],[7,8,["G3165"]],[8,11,["G3140"]],[11,12,["G4012"]],[12,13,["G1700"]],[13,16,["G3777"]],[16,17,["G191"]],[17,18,["G846"]],[18,19,["G5456"]],[19,22,["G4455"]],[22,23,["G3777"]],[23,24,["G3708"]],[24,25,["G846"]],[25,26,["G1491"]]]},{"k":26248,"v":[[0,1,["G2532"]],[1,3,["G2192"]],[3,4,["G3756"]],[4,5,["G846"]],[5,6,["G3056"]],[6,7,["G3306"]],[7,8,["G1722"]],[8,9,["G5213"]],[9,10,["G3754"]],[10,11,["G3739"]],[11,12,["G1565"]],[12,14,["G649"]],[14,15,["G5129"]],[15,16,["G5210"]],[16,17,["G4100"]],[17,18,["G3756"]]]},{"k":26249,"v":[[0,1,["G2045"]],[1,2,["G3588"]],[2,3,["G1124"]],[3,4,["G3754"]],[4,5,["G1722"]],[5,6,["G846"]],[6,7,["G5210"]],[7,8,["G1380"]],[8,10,["G2192"]],[10,11,["G166"]],[11,12,["G2222"]],[12,13,["G2532"]],[13,14,["G1565"]],[14,15,["G1526"]],[15,18,["G3140"]],[18,19,["G4012"]],[19,20,["G1700"]]]},{"k":26250,"v":[[0,1,["G2532"]],[1,3,["G2309"]],[3,4,["G3756"]],[4,5,["G2064"]],[5,6,["G4314"]],[6,7,["G3165"]],[7,8,["G2443"]],[8,11,["G2192"]],[11,12,["G2222"]]]},{"k":26251,"v":[[0,2,["G2983"]],[2,3,["G3756"]],[3,4,["G1391"]],[4,5,["G3844"]],[5,6,["G444"]]]},{"k":26252,"v":[[0,1,["G235"]],[1,3,["G1097"]],[3,4,["G5209"]],[4,5,["G3754"]],[5,7,["G2192"]],[7,8,["G3756"]],[8,9,["G3588"]],[9,10,["G26"]],[10,12,["G2316"]],[12,13,["G1722"]],[13,14,["G1438"]]]},{"k":26253,"v":[[0,1,["G1473"]],[1,3,["G2064"]],[3,4,["G1722"]],[4,5,["G3450"]],[5,6,["G3962"]],[6,7,["G3686"]],[7,8,["G2532"]],[8,10,["G2983"]],[10,11,["G3165"]],[11,12,["G3756"]],[12,13,["G1437"]],[13,14,["G243"]],[14,16,["G2064"]],[16,17,["G1722"]],[17,19,["G2398"]],[19,20,["G3686"]],[20,21,["G1565"]],[21,24,["G2983"]]]},{"k":26254,"v":[[0,1,["G4459"]],[1,2,["G1410"]],[2,3,["G5210"]],[3,4,["G4100"]],[4,6,["G2983"]],[6,7,["G1391"]],[7,10,["G240","G3844"]],[10,11,["G2532"]],[11,12,["G2212"]],[12,13,["G3756"]],[13,14,["G3588"]],[14,15,["G1391"]],[15,16,["G3588"]],[16,18,["G3844"]],[18,19,["G2316"]],[19,20,["G3441"]]]},{"k":26255,"v":[[0,2,["G3361"]],[2,3,["G1380"]],[3,4,["G3754"]],[4,5,["G1473"]],[5,7,["G2723"]],[7,8,["G5216"]],[8,9,["G4314"]],[9,10,["G3588"]],[10,11,["G3962"]],[11,13,["G2076"]],[13,16,["G2723"]],[16,17,["G5216"]],[17,19,["G3475"]],[19,20,["G1519"]],[20,21,["G3739"]],[21,22,["G5210"]],[22,23,["G1679"]]]},{"k":26256,"v":[[0,1,["G1063"]],[1,3,["(G1487)"]],[3,4,["G4100"]],[4,5,["G3475"]],[5,9,["G4100","G302"]],[9,10,["G1698"]],[10,11,["G1063"]],[11,12,["G1565"]],[12,13,["G1125"]],[13,14,["G4012"]],[14,15,["G1700"]]]},{"k":26257,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G4100"]],[4,5,["G3756"]],[5,6,["G1565"]],[6,7,["G1121"]],[7,8,["G4459"]],[8,11,["G4100"]],[11,12,["G1699"]],[12,13,["G4487"]]]},{"k":26258,"v":[[0,1,["G3326"]],[1,3,["G5023"]],[3,4,["G2424"]],[4,5,["G565"]],[5,6,["G4008"]],[6,7,["G3588"]],[7,8,["G2281"]],[8,10,["G1056"]],[10,16,["G5085"]]]},{"k":26259,"v":[[0,1,["G2532"]],[1,3,["G4183"]],[3,4,["G3793"]],[4,5,["G190"]],[5,6,["G846"]],[6,7,["G3754"]],[7,9,["G3708"]],[9,10,["G846"]],[10,11,["G4592"]],[11,12,["G3739"]],[12,14,["G4160"]],[14,15,["G1909"]],[15,19,["G770"]]]},{"k":26260,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,4,["G424"]],[4,5,["G1519"]],[5,7,["G3735"]],[7,8,["G2532"]],[8,9,["G1563"]],[9,11,["G2521"]],[11,12,["G3326"]],[12,13,["G848"]],[13,14,["G3101"]]]},{"k":26261,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3957"]],[3,5,["G1859"]],[5,7,["G3588"]],[7,8,["G2453"]],[8,9,["G2258"]],[9,10,["G1451"]]]},{"k":26262,"v":[[0,2,["G2424"]],[2,3,["G3767"]],[3,5,["G1869"]],[5,7,["G3788"]],[7,8,["G2532"]],[8,9,["G2300"]],[9,10,["(G3754)"]],[10,11,["G4183"]],[11,12,["G3793"]],[12,13,["G2064"]],[13,14,["G4314"]],[14,15,["G846"]],[15,17,["G3004"]],[17,18,["G4314"]],[18,19,["G5376"]],[19,20,["G4159"]],[20,23,["G59"]],[23,24,["G740"]],[24,25,["G2443"]],[25,26,["G3778"]],[26,28,["G5315"]]]},{"k":26263,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,4,["G3004"]],[4,6,["G3985"]],[6,7,["G846"]],[7,8,["G1063"]],[8,9,["G846"]],[9,11,["G1492"]],[11,12,["G5101"]],[12,14,["G3195"]],[14,15,["G4160"]]]},{"k":26264,"v":[[0,1,["G5376"]],[1,2,["G611"]],[2,3,["G846"]],[3,5,["G1250"]],[5,6,["G1220"]],[6,8,["G740"]],[8,11,["G714","G3756"]],[11,13,["G846"]],[13,14,["G2443"]],[14,16,["G1538"]],[16,18,["G846"]],[18,20,["G2983"]],[20,22,["G5100","G1024"]]]},{"k":26265,"v":[[0,1,["G1520"]],[1,2,["G1537"]],[2,3,["G846"]],[3,4,["G3101"]],[4,5,["G406"]],[5,6,["G4613"]],[6,7,["G4074"]],[7,8,["G80"]],[8,9,["G3004"]],[9,11,["G846"]]]},{"k":26266,"v":[[0,2,["G2076"]],[2,3,["G1520"]],[3,4,["G3808"]],[4,5,["G5602"]],[5,6,["G3739"]],[6,7,["G2192"]],[7,8,["G4002"]],[8,9,["G2916"]],[9,10,["G740"]],[10,11,["G2532"]],[11,12,["G1417"]],[12,14,["G3795"]],[14,15,["G235"]],[15,16,["G5101"]],[16,17,["G2076"]],[17,18,["G5023"]],[18,19,["G1519"]],[19,21,["G5118"]]]},{"k":26267,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G4160"]],[4,5,["G3588"]],[5,6,["G444"]],[6,8,["G377"]],[8,9,["G1161"]],[9,11,["G2258"]],[11,12,["G4183"]],[12,13,["G5528"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G5117"]],[16,17,["G3767"]],[17,18,["G3588"]],[18,19,["G435"]],[19,21,["G377"]],[21,23,["G706"]],[23,24,["G5616"]],[24,26,["G4000"]]]},{"k":26268,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2983"]],[3,4,["G3588"]],[4,5,["G740"]],[5,6,["G2532"]],[6,11,["G2168"]],[11,13,["G1239"]],[13,15,["G3588"]],[15,16,["G3101"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G3101"]],[19,25,["G345"]],[25,26,["G2532"]],[26,27,["G3668"]],[27,28,["G1537"]],[28,29,["G3588"]],[29,30,["G3795"]],[30,33,["G3745"]],[33,35,["G2309"]]]},{"k":26269,"v":[[0,0,["(G1161)"]],[0,1,["G5613"]],[1,4,["G1705"]],[4,6,["G3004"]],[6,8,["G848"]],[8,9,["G3101"]],[9,11,["G4863"]],[11,12,["G3588"]],[12,13,["G2801"]],[13,15,["G4052"]],[15,16,["G2443"]],[16,17,["G5100","G3361"]],[17,19,["G622"]]]},{"k":26270,"v":[[0,1,["G3767"]],[1,5,["G4863"]],[5,6,["G2532"]],[6,7,["G1072"]],[7,8,["G1427"]],[8,9,["G2894"]],[9,12,["G2801"]],[12,13,["G1537"]],[13,14,["G3588"]],[14,15,["G4002"]],[15,16,["G2916"]],[16,17,["G740"]],[17,18,["G3739"]],[18,22,["G4052"]],[22,27,["G977"]]]},{"k":26271,"v":[[0,1,["G3767"]],[1,3,["G444"]],[3,7,["G1492"]],[7,9,["G4592"]],[9,10,["G3739"]],[10,11,["G2424"]],[11,12,["G4160"]],[12,13,["G3004"]],[13,14,["G3778"]],[14,15,["G2076"]],[15,18,["G230"]],[18,20,["G4396"]],[20,23,["G2064"]],[23,24,["G1519"]],[24,25,["G3588"]],[25,26,["G2889"]]]},{"k":26272,"v":[[0,2,["G2424"]],[2,3,["G3767"]],[3,4,["G1097"]],[4,5,["G3754"]],[5,7,["G3195"]],[7,8,["G2064"]],[8,9,["G2532"]],[9,13,["G726","G846"]],[13,14,["G2443"]],[14,15,["G4160"]],[15,16,["G846"]],[16,18,["G935"]],[18,20,["G402"]],[20,21,["G3825"]],[21,22,["G1519"]],[22,24,["G3735"]],[24,25,["G846"]],[25,26,["G3441"]]]},{"k":26273,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G3798"]],[3,6,["G1096"]],[6,7,["G846"]],[7,8,["G3101"]],[8,10,["G2597"]],[10,11,["G1909"]],[11,12,["G3588"]],[12,13,["G2281"]]]},{"k":26274,"v":[[0,1,["G2532"]],[1,2,["G1684"]],[2,3,["G1519"]],[3,5,["G4143"]],[5,7,["G2064"]],[7,8,["G4008"]],[8,9,["G3588"]],[9,10,["G2281"]],[10,11,["G1519"]],[11,12,["G2584"]],[12,13,["G2532"]],[13,15,["G1096"]],[15,16,["G2235"]],[16,17,["G4653"]],[17,18,["G2532"]],[18,19,["G2424"]],[19,21,["G3756"]],[21,22,["G2064"]],[22,23,["G4314"]],[23,24,["G846"]]]},{"k":26275,"v":[[0,1,["G5037"]],[1,2,["(G3739)"]],[2,3,["G2281"]],[3,4,["G1326"]],[4,9,["G3173"]],[9,10,["G417"]],[10,12,["G4154"]]]},{"k":26276,"v":[[0,1,["G3767"]],[1,5,["G1643"]],[5,6,["G5613"]],[6,9,["G4002","G1501"]],[9,10,["G2228"]],[10,11,["G5144"]],[11,12,["G4712"]],[12,14,["G2334"]],[14,15,["G2424"]],[15,16,["G4043"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G2281"]],[19,20,["G2532"]],[20,21,["G1096"]],[21,22,["G1451"]],[22,24,["G3588"]],[24,25,["G4143"]],[25,26,["G2532"]],[26,29,["G5399"]]]},{"k":26277,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3004"]],[3,5,["G846"]],[5,7,["G1510"]],[7,8,["G1473"]],[8,11,["G5399","G3361"]]]},{"k":26278,"v":[[0,1,["G3767"]],[1,3,["G2309"]],[3,4,["G2983"]],[4,5,["G846"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G4143"]],[8,9,["G2532"]],[9,10,["G2112"]],[10,11,["G3588"]],[11,12,["G4143"]],[12,13,["G1096"]],[13,14,["G1909"]],[14,15,["G3588"]],[15,16,["G1093"]],[16,17,["G1519","G3739"]],[17,19,["G5217"]]]},{"k":26279,"v":[[0,1,["G3588"]],[1,3,["G1887"]],[3,5,["G3588"]],[5,6,["G3793"]],[6,8,["G2476"]],[8,12,["G4008"]],[12,14,["G3588"]],[14,15,["G2281"]],[15,16,["G1492"]],[16,17,["G3754"]],[17,19,["G2258"]],[19,20,["G3756"]],[20,21,["G243"]],[21,22,["G4142"]],[22,23,["G1563"]],[23,24,["G1508"]],[24,25,["G1565"]],[25,26,["G1520"]],[26,27,["G1519","G3739"]],[27,28,["G848"]],[28,29,["G3101"]],[29,31,["G1684"]],[31,32,["G2532"]],[32,33,["G3754"]],[33,34,["G2424"]],[34,37,["G4897","G3756"]],[37,38,["G846"]],[38,39,["G3101"]],[39,40,["G1519"]],[40,41,["G3588"]],[41,42,["G4142"]],[42,43,["G235"]],[43,45,["G846"]],[45,46,["G3101"]],[46,49,["G565"]],[49,50,["G3441"]]]},{"k":26280,"v":[[0,1,["G1161"]],[1,3,["G2064"]],[3,4,["G243"]],[4,5,["G4142"]],[5,6,["G1537"]],[6,7,["G5085"]],[7,9,["G1451"]],[9,10,["G3588"]],[10,11,["G5117"]],[11,12,["G3699"]],[12,15,["G5315"]],[15,16,["G740"]],[16,19,["G3588"]],[19,20,["G2962"]],[20,23,["G2168"]]]},{"k":26281,"v":[[0,1,["G3753"]],[1,2,["G3588"]],[2,3,["G3793"]],[3,4,["G3767"]],[4,5,["G1492"]],[5,6,["G3754"]],[6,7,["G2424"]],[7,8,["G2076"]],[8,9,["G3756"]],[9,10,["G1563"]],[10,11,["G3761"]],[11,12,["G846"]],[12,13,["G3101"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G1684"]],[16,17,["G1519","G4143"]],[17,18,["G2532"]],[18,19,["G2064"]],[19,20,["G1519"]],[20,21,["G2584"]],[21,23,["G2212"]],[23,24,["G2424"]]]},{"k":26282,"v":[[0,1,["G2532"]],[1,5,["G2147"]],[5,6,["G846"]],[6,10,["G4008"]],[10,12,["G3588"]],[12,13,["G2281"]],[13,15,["G2036"]],[15,17,["G846"]],[17,18,["G4461"]],[18,19,["G4219"]],[19,20,["G1096"]],[20,22,["G5602"]]]},{"k":26283,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G2532"]],[4,5,["G2036"]],[5,6,["G281"]],[6,7,["G281"]],[7,9,["G3004"]],[9,11,["G5213"]],[11,13,["G2212"]],[13,14,["G3165"]],[14,15,["G3756"]],[15,16,["G3754"]],[16,18,["G1492"]],[18,20,["G4592"]],[20,21,["G235"]],[21,22,["G3754"]],[22,25,["G5315"]],[25,26,["G1537"]],[26,27,["G3588"]],[27,28,["G740"]],[28,29,["G2532"]],[29,31,["G5526"]]]},{"k":26284,"v":[[0,1,["G2038"]],[1,2,["G3361"]],[2,4,["G3588"]],[4,5,["G1035"]],[5,7,["G622"]],[7,8,["G235"]],[8,11,["G1035"]],[11,13,["G3306"]],[13,14,["G1519"]],[14,15,["G166"]],[15,16,["G2222"]],[16,17,["G3739"]],[17,18,["G3588"]],[18,19,["G5207"]],[19,21,["G444"]],[21,23,["G1325"]],[23,25,["G5213"]],[25,26,["G1063"]],[26,27,["G5126"]],[27,29,["G2316"]],[29,30,["G3588"]],[30,31,["G3962"]],[31,32,["G4972"]]]},{"k":26285,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,4,["G4314"]],[4,5,["G846"]],[5,6,["G5101"]],[6,9,["G4160"]],[9,10,["G2443"]],[10,13,["G2038"]],[13,14,["G3588"]],[14,15,["G2041"]],[15,17,["G2316"]]]},{"k":26286,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G5124"]],[7,8,["G2076"]],[8,9,["G3588"]],[9,10,["G2041"]],[10,12,["G2316"]],[12,13,["G2443"]],[13,15,["G4100"]],[15,16,["G1519"]],[16,18,["G3739"]],[18,19,["G1565"]],[19,21,["G649"]]]},{"k":26287,"v":[[0,2,["G2036"]],[2,3,["G3767"]],[3,5,["G846"]],[5,6,["G5101"]],[6,7,["G4592"]],[7,8,["G4160"]],[8,9,["G4771"]],[9,10,["G3767"]],[10,11,["G2443"]],[11,14,["G1492"]],[14,15,["G2532"]],[15,16,["G4100"]],[16,17,["G4671"]],[17,18,["G5101"]],[18,21,["G2038"]]]},{"k":26288,"v":[[0,1,["G2257"]],[1,2,["G3962"]],[2,4,["G5315"]],[4,5,["G3131"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G2048"]],[8,9,["G2531"]],[9,11,["G2076"]],[11,12,["G1125"]],[12,14,["G1325"]],[14,15,["G846"]],[15,16,["G740"]],[16,17,["G1537"]],[17,18,["G3772"]],[18,20,["G5315"]]]},{"k":26289,"v":[[0,1,["G3767"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G281"]],[6,7,["G281"]],[7,9,["G3004"]],[9,11,["G5213"]],[11,12,["G3475"]],[12,13,["G1325"]],[13,14,["G5213"]],[14,15,["G3756"]],[15,17,["G740"]],[17,18,["G1537"]],[18,19,["G3772"]],[19,20,["G235"]],[20,21,["G3450"]],[21,22,["G3962"]],[22,23,["G1325"]],[23,24,["G5213"]],[24,25,["G3588"]],[25,26,["G228"]],[26,27,["G740"]],[27,28,["G1537"]],[28,29,["G3772"]]]},{"k":26290,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G740"]],[3,5,["G2316"]],[5,6,["G2076"]],[6,10,["G2597"]],[10,11,["G1537"]],[11,12,["G3772"]],[12,13,["G2532"]],[13,14,["G1325"]],[14,15,["G2222"]],[15,17,["G3588"]],[17,18,["G2889"]]]},{"k":26291,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,4,["G4314"]],[4,5,["G846"]],[5,6,["G2962"]],[6,7,["G3842"]],[7,8,["G1325"]],[8,9,["G2254"]],[9,10,["G5126"]],[10,11,["G740"]]]},{"k":26292,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G1473"]],[6,7,["G1510"]],[7,8,["G3588"]],[8,9,["G740"]],[9,11,["G2222"]],[11,14,["G2064"]],[14,15,["G4314"]],[15,16,["G3165"]],[16,18,["G3364"]],[18,19,["G3983"]],[19,20,["G2532"]],[20,23,["G4100"]],[23,24,["G1519"]],[24,25,["G1691"]],[25,27,["G3364","G4455"]],[27,28,["G1372"]]]},{"k":26293,"v":[[0,1,["G235"]],[1,3,["G2036"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,8,["G2532"]],[8,10,["G3708"]],[10,11,["G3165"]],[11,12,["G2532"]],[12,13,["G4100"]],[13,14,["G3756"]]]},{"k":26294,"v":[[0,1,["G3956"]],[1,2,["G3739"]],[2,3,["G3588"]],[3,4,["G3962"]],[4,5,["G1325"]],[5,6,["G3427"]],[6,8,["G2240"]],[8,9,["G4314"]],[9,10,["G1691"]],[10,11,["G2532"]],[11,14,["G2064"]],[14,15,["G4314"]],[15,16,["G3165"]],[16,21,["G3364"]],[21,22,["G1544"]],[22,23,["G1854"]]]},{"k":26295,"v":[[0,1,["G3754"]],[1,4,["G2597"]],[4,5,["G1537"]],[5,6,["G3772"]],[6,7,["G3756"]],[7,8,["G2443"]],[8,9,["G4160"]],[9,11,["G1699"]],[11,12,["G2307"]],[12,13,["G235"]],[13,14,["G3588"]],[14,15,["G2307"]],[15,19,["G3992"]],[19,20,["G3165"]]]},{"k":26296,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G3962"]],[5,6,["G2307"]],[6,9,["G3992"]],[9,10,["G3165"]],[10,11,["G2443"]],[11,13,["G3956"]],[13,14,["G3739"]],[14,17,["G1325"]],[17,18,["G3427"]],[18,20,["(G3361)"]],[20,21,["G622"]],[21,22,["G1537","G846"]],[22,23,["G235"]],[23,28,["G450","G846"]],[28,29,["G1722"]],[29,30,["G3588"]],[30,31,["G2078"]],[31,32,["G2250"]]]},{"k":26297,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G2307"]],[5,9,["G3992"]],[9,10,["G3165"]],[10,11,["G2443"]],[11,13,["G3956"]],[13,15,["G2334"]],[15,16,["G3588"]],[16,17,["G5207"]],[17,18,["G2532"]],[18,19,["G4100"]],[19,20,["G1519"]],[20,21,["G846"]],[21,23,["G2192"]],[23,24,["G166"]],[24,25,["G2222"]],[25,26,["G2532"]],[26,27,["G1473"]],[27,31,["G450","G846"]],[31,33,["G3588"]],[33,34,["G2078"]],[34,35,["G2250"]]]},{"k":26298,"v":[[0,1,["G3588"]],[1,2,["G2453"]],[2,3,["G3767"]],[3,4,["G1111"]],[4,5,["G4012"]],[5,6,["G846"]],[6,7,["G3754"]],[7,9,["G2036"]],[9,10,["G1473"]],[10,11,["G1510"]],[11,12,["G3588"]],[12,13,["G740"]],[13,16,["G2597"]],[16,17,["G1537"]],[17,18,["G3772"]]]},{"k":26299,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,4,["G2076"]],[4,5,["G3756"]],[5,6,["G3778"]],[6,7,["G2424"]],[7,8,["G3588"]],[8,9,["G5207"]],[9,11,["G2501"]],[11,12,["G3739"]],[12,13,["G3962"]],[13,14,["G2532"]],[14,15,["G3384"]],[15,16,["G2249"]],[16,17,["G1492"]],[17,18,["G4459"]],[18,21,["G3767"]],[21,23,["G3778"]],[23,24,["G3004"]],[24,27,["G2597"]],[27,28,["G1537"]],[28,29,["G3772"]]]},{"k":26300,"v":[[0,1,["G2424"]],[1,2,["G3767"]],[2,3,["G611"]],[3,4,["G2532"]],[4,5,["G2036"]],[5,7,["G846"]],[7,8,["G1111"]],[8,9,["G3361"]],[9,10,["G3326"]],[10,11,["G240"]]]},{"k":26301,"v":[[0,2,["G3762"]],[2,3,["G1410"]],[3,4,["G2064"]],[4,5,["G4314"]],[5,6,["G3165"]],[6,7,["G3362"]],[7,8,["G3588"]],[8,9,["G3962"]],[9,12,["G3992"]],[12,13,["G3165"]],[13,14,["G1670"]],[14,15,["G846"]],[15,16,["G2532"]],[16,17,["G1473"]],[17,21,["G450","G846"]],[21,23,["G3588"]],[23,24,["G2078"]],[24,25,["G2250"]]]},{"k":26302,"v":[[0,2,["G2076"]],[2,3,["G1125"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G4396"]],[6,7,["G2532"]],[7,10,["G2071"]],[10,11,["G3956"]],[11,12,["G1318"]],[12,14,["G2316"]],[14,16,["G3956"]],[16,17,["G3767"]],[17,20,["G191"]],[20,21,["G2532"]],[21,23,["G3129"]],[23,24,["G3844"]],[24,25,["G3588"]],[25,26,["G3962"]],[26,27,["G2064"]],[27,28,["G4314"]],[28,29,["G3165"]]]},{"k":26303,"v":[[0,1,["G3756"]],[1,2,["G3754"]],[2,4,["G5100"]],[4,6,["G3708"]],[6,7,["G3588"]],[7,8,["G3962"]],[8,9,["G1508"]],[9,12,["G5607"]],[12,13,["G3844"]],[13,14,["G2316"]],[14,15,["G3778"]],[15,17,["G3708"]],[17,18,["G3588"]],[18,19,["G3962"]]]},{"k":26304,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,9,["G4100"]],[9,10,["G1519"]],[10,11,["G1691"]],[11,12,["G2192"]],[12,13,["G166"]],[13,14,["G2222"]]]},{"k":26305,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,4,["G740"]],[4,6,["G2222"]]]},{"k":26306,"v":[[0,1,["G5216"]],[1,2,["G3962"]],[2,4,["G5315"]],[4,5,["G3131"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G2048"]],[8,9,["G2532"]],[9,11,["G599"]]]},{"k":26307,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,3,["G3588"]],[3,4,["G740"]],[4,7,["G2597"]],[7,8,["G1537"]],[8,9,["G3772"]],[9,10,["G2443"]],[10,12,["G5100"]],[12,14,["G5315"]],[14,15,["G1537","G846"]],[15,16,["G2532"]],[16,17,["G3361"]],[17,18,["G599"]]]},{"k":26308,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,3,["G3588"]],[3,4,["G2198"]],[4,5,["G740"]],[5,8,["G2597"]],[8,9,["G1537"]],[9,10,["G3772"]],[10,11,["G1437"]],[11,13,["G5100"]],[13,14,["G5315"]],[14,15,["G1537"]],[15,16,["G5127"]],[16,17,["G740"]],[17,20,["G2198"]],[20,22,["G1519","G165"]],[22,23,["G1161"]],[23,24,["G3588"]],[24,25,["G740"]],[25,26,["G3739"]],[26,27,["G1473"]],[27,29,["G1325"]],[29,30,["G2076"]],[30,31,["G3450"]],[31,32,["G4561"]],[32,33,["G3739"]],[33,34,["G1473"]],[34,36,["G1325"]],[36,37,["G5228"]],[37,38,["G3588"]],[38,39,["G2222"]],[39,41,["G3588"]],[41,42,["G2889"]]]},{"k":26309,"v":[[0,1,["G3588"]],[1,2,["G2453"]],[2,3,["G3767"]],[3,4,["G3164"]],[4,5,["G4314"]],[5,6,["G240"]],[6,7,["G3004"]],[7,8,["G4459"]],[8,9,["G1410"]],[9,11,["G3778"]],[11,12,["G1325"]],[12,13,["G2254"]],[13,15,["G4561"]],[15,17,["G5315"]]]},{"k":26310,"v":[[0,1,["G3767"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G281"]],[6,7,["G281"]],[7,9,["G3004"]],[9,11,["G5213"]],[11,12,["G3362"]],[12,14,["G5315"]],[14,15,["G3588"]],[15,16,["G4561"]],[16,18,["G3588"]],[18,19,["G5207"]],[19,21,["G444"]],[21,22,["G2532"]],[22,23,["G4095"]],[23,24,["G846"]],[24,25,["G129"]],[25,27,["G2192"]],[27,28,["G3756"]],[28,29,["G2222"]],[29,30,["G1722"]],[30,31,["G1438"]]]},{"k":26311,"v":[[0,2,["G5176"]],[2,3,["G3450"]],[3,4,["G4561"]],[4,5,["G2532"]],[5,6,["G4095"]],[6,7,["G3450"]],[7,8,["G129"]],[8,9,["G2192"]],[9,10,["G166"]],[10,11,["G2222"]],[11,12,["G2532"]],[12,13,["G1473"]],[13,17,["G450","G846"]],[17,19,["G3588"]],[19,20,["G2078"]],[20,21,["G2250"]]]},{"k":26312,"v":[[0,1,["G1063"]],[1,2,["G3450"]],[2,3,["G4561"]],[3,4,["G2076"]],[4,5,["G1035"]],[5,6,["G230"]],[6,7,["G2532"]],[7,8,["G3450"]],[8,9,["G129"]],[9,10,["G2076"]],[10,11,["G4213"]],[11,12,["G230"]]]},{"k":26313,"v":[[0,3,["G5176"]],[3,4,["G3450"]],[4,5,["G4561"]],[5,6,["G2532"]],[6,7,["G4095"]],[7,8,["G3450"]],[8,9,["G129"]],[9,10,["G3306"]],[10,11,["G1722"]],[11,12,["G1698"]],[12,14,["G2504"]],[14,15,["G1722"]],[15,16,["G846"]]]},{"k":26314,"v":[[0,1,["G2531"]],[1,2,["G3588"]],[2,3,["G2198"]],[3,4,["G3962"]],[4,6,["G649"]],[6,7,["G3165"]],[7,9,["G2504"]],[9,10,["G2198"]],[10,11,["G1223"]],[11,12,["G3588"]],[12,13,["G3962"]],[13,14,["G2532"]],[14,17,["G5176"]],[17,18,["G3165"]],[18,20,["G2548"]],[20,22,["G2198"]],[22,23,["G1223"]],[23,24,["G1691"]]]},{"k":26315,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,4,["G740"]],[4,7,["G2597"]],[7,8,["G1537"]],[8,9,["G3772"]],[9,10,["G3756"]],[10,11,["G2531"]],[11,12,["G5216"]],[12,13,["G3962"]],[13,15,["G5315"]],[15,16,["G3131"]],[16,17,["G2532"]],[17,19,["G599"]],[19,22,["G5176"]],[22,24,["G5126"]],[24,25,["G740"]],[25,27,["G2198"]],[27,29,["G1519","G165"]]]},{"k":26316,"v":[[0,2,["G5023"]],[2,3,["G2036"]],[3,5,["G1722"]],[5,7,["G4864"]],[7,10,["G1321"]],[10,11,["G1722"]],[11,12,["G2584"]]]},{"k":26317,"v":[[0,1,["G4183"]],[1,2,["G3767"]],[2,3,["G1537"]],[3,4,["G846"]],[4,5,["G3101"]],[5,9,["G191"]],[9,11,["G2036"]],[11,12,["G3778"]],[12,13,["G2076"]],[13,15,["G4642"]],[15,16,["G3056"]],[16,17,["G5101"]],[17,18,["G1410"]],[18,19,["G191"]],[19,20,["G846"]]]},{"k":26318,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G1492"]],[3,4,["G1722"]],[4,5,["G1438"]],[5,6,["G3754"]],[6,7,["G846"]],[7,8,["G3101"]],[8,9,["G1111"]],[9,10,["G4012"]],[10,11,["G5127"]],[11,13,["G2036"]],[13,15,["G846"]],[15,17,["G5124"]],[17,18,["G4624"]],[18,19,["G5209"]]]},{"k":26319,"v":[[0,2,["G3767"]],[2,3,["G1437"]],[3,6,["G2334"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G444"]],[10,12,["G305"]],[12,13,["G3699"]],[13,15,["G2258"]],[15,16,["G4386"]]]},{"k":26320,"v":[[0,2,["G2076"]],[2,3,["G3588"]],[3,4,["G4151"]],[4,6,["G2227"]],[6,7,["G3588"]],[7,8,["G4561","(G3756)"]],[8,9,["G5623"]],[9,10,["G3762"]],[10,11,["G3588"]],[11,12,["G4487"]],[12,13,["G3739"]],[13,14,["G1473"]],[14,15,["G2980"]],[15,17,["G5213"]],[17,19,["G2076"]],[19,20,["G4151"]],[20,21,["G2532"]],[21,23,["G2076"]],[23,24,["G2222"]]]},{"k":26321,"v":[[0,1,["G235"]],[1,3,["G1526"]],[3,4,["G5100"]],[4,5,["G1537"]],[5,6,["G5216"]],[6,7,["G3739"]],[7,8,["G4100"]],[8,9,["G3756"]],[9,10,["G1063"]],[10,11,["G2424"]],[11,12,["G1492"]],[12,13,["G1537"]],[13,15,["G746"]],[15,16,["G5101"]],[16,18,["G1526"]],[18,20,["G4100"]],[20,21,["G3361"]],[21,22,["G2532"]],[22,23,["G5101"]],[23,24,["G2076"]],[24,25,["G3860"]],[25,26,["G846"]]]},{"k":26322,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,4,["G1223","G5124"]],[4,5,["G2046"]],[5,8,["G5213"]],[8,9,["G3754"]],[9,11,["G3762"]],[11,12,["G1410"]],[12,13,["G2064"]],[13,14,["G4314"]],[14,15,["G3165"]],[15,16,["G3362"]],[16,18,["G5600"]],[18,19,["G1325"]],[19,21,["G846"]],[21,22,["G1537"]],[22,23,["G3450"]],[23,24,["G3962"]]]},{"k":26323,"v":[[0,1,["G1537"]],[1,2,["G5127"]],[2,4,["G4183"]],[4,6,["G846"]],[6,7,["G3101"]],[7,8,["G565"]],[8,9,["G1519","G3694"]],[9,10,["G2532"]],[10,11,["G4043"]],[11,13,["G3765"]],[13,14,["G3326"]],[14,15,["G846"]]]},{"k":26324,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,5,["G3588"]],[5,6,["G1427"]],[6,7,["G2309","(G3361)"]],[7,8,["G5210"]],[8,9,["G2532"]],[9,11,["G5217"]]]},{"k":26325,"v":[[0,1,["G3767"]],[1,2,["G4613"]],[2,3,["G4074"]],[3,4,["G611"]],[4,5,["G846"]],[5,6,["G2962"]],[6,7,["G4314"]],[7,8,["G5101"]],[8,11,["G565"]],[11,13,["G2192"]],[13,15,["G4487"]],[15,17,["G166"]],[17,18,["G2222"]]]},{"k":26326,"v":[[0,1,["G2532"]],[1,2,["G2249"]],[2,3,["G4100"]],[3,4,["G2532"]],[4,6,["G1097"]],[6,7,["G3754"]],[7,8,["G4771"]],[8,9,["G1488"]],[9,11,["G5547"]],[11,12,["G3588"]],[12,13,["G5207"]],[13,15,["G3588"]],[15,16,["G2198"]],[16,17,["G2316"]]]},{"k":26327,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,5,["G3756"]],[5,6,["G1473"]],[6,7,["G1586"]],[7,8,["G5209"]],[8,9,["G1427"]],[9,10,["G2532"]],[10,11,["G1520"]],[11,12,["G1537"]],[12,13,["G5216"]],[13,14,["G2076"]],[14,16,["G1228"]]]},{"k":26328,"v":[[0,0,["(G1161)"]],[0,2,["G3004"]],[2,4,["G2455"]],[4,5,["G2469"]],[5,9,["G4613"]],[9,10,["G1063"]],[10,11,["G3778"]],[11,15,["G3195"]],[15,16,["G3860"]],[16,17,["G846"]],[17,18,["G5607"]],[18,19,["G1520"]],[19,20,["G1537"]],[20,21,["G3588"]],[21,22,["G1427"]]]},{"k":26329,"v":[[0,0,["(G2532)"]],[0,1,["G3326"]],[1,3,["G5023"]],[3,4,["G2424"]],[4,5,["G4043"]],[5,6,["G1722"]],[6,7,["G1056"]],[7,8,["G1063"]],[8,10,["G2309"]],[10,11,["G3756"]],[11,12,["G4043"]],[12,13,["G1722"]],[13,14,["G2449"]],[14,15,["G3754"]],[15,16,["G3588"]],[16,17,["G2453"]],[17,18,["G2212"]],[18,20,["G615"]],[20,21,["G846"]]]},{"k":26330,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,4,["G1859"]],[4,6,["G4634"]],[6,7,["G2258"]],[7,9,["G1451"]]]},{"k":26331,"v":[[0,1,["G846"]],[1,2,["G80"]],[2,3,["G3767"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G3327"]],[7,8,["G1782"]],[8,9,["G2532"]],[9,10,["G5217"]],[10,11,["G1519"]],[11,12,["G2449"]],[12,13,["G2443"]],[13,14,["G4675"]],[14,15,["G3101"]],[15,16,["G2532"]],[16,18,["G2334"]],[18,19,["G3588"]],[19,20,["G2041"]],[20,21,["G3739"]],[21,23,["G4160"]]]},{"k":26332,"v":[[0,1,["G1063"]],[1,5,["G3762"]],[5,7,["G4160"]],[7,9,["G5100"]],[9,10,["G1722"]],[10,11,["G2927"]],[11,12,["G2532"]],[12,13,["G846"]],[13,15,["G2212"]],[15,17,["G1511"]],[17,19,["G1722","G3954"]],[19,20,["G1487"]],[20,22,["G4160"]],[22,24,["G5023"]],[24,25,["G5319"]],[25,26,["G4572"]],[26,28,["G3588"]],[28,29,["G2889"]]]},{"k":26333,"v":[[0,1,["G1063"]],[1,2,["G3761"]],[2,4,["G846"]],[4,5,["G80"]],[5,6,["G4100"]],[6,7,["G1519"]],[7,8,["G846"]]]},{"k":26334,"v":[[0,1,["G3767"]],[1,2,["G2424"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G1699"]],[6,7,["G2540"]],[7,10,["G3768"]],[10,11,["G3918"]],[11,12,["G1161"]],[12,13,["G5212"]],[13,14,["G2540"]],[14,15,["G2076"]],[15,16,["G3842"]],[16,17,["G2092"]]]},{"k":26335,"v":[[0,1,["G3588"]],[1,2,["G2889"]],[2,3,["G1410","G3756"]],[3,4,["G3404"]],[4,5,["G5209"]],[5,6,["G1161"]],[6,7,["G1691"]],[7,9,["G3404"]],[9,10,["G3754"]],[10,11,["G1473"]],[11,12,["G3140"]],[12,13,["G4012"]],[13,14,["G846"]],[14,15,["G3754"]],[15,16,["G3588"]],[16,17,["G2041"]],[17,18,["G846"]],[18,19,["G2076"]],[19,20,["G4190"]]]},{"k":26336,"v":[[0,3,["G305","G5210"]],[3,4,["G1519"]],[4,5,["G5026"]],[5,6,["G1859"]],[6,7,["G1473"]],[7,11,["G305","G3768"]],[11,12,["G1519"]],[12,13,["G5026"]],[13,14,["G1859"]],[14,15,["G3754"]],[15,16,["G1699"]],[16,17,["G2540"]],[17,20,["G3768"]],[20,22,["G4137"]]]},{"k":26337,"v":[[0,1,["G1161"]],[1,4,["G2036"]],[4,6,["G5023"]],[6,8,["G846"]],[8,10,["G3306"]],[10,12,["G1722"]],[12,13,["G1056"]]]},{"k":26338,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G846"]],[3,4,["G80"]],[4,7,["G305"]],[7,8,["G5119"]],[8,12,["G305","G846","G2532"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G1859"]],[15,16,["G3756"]],[16,17,["G5320"]],[17,18,["G235"]],[18,21,["G5613"]],[21,22,["G1722"]],[22,23,["G2927"]]]},{"k":26339,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,4,["G2212"]],[4,5,["G846"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G1859"]],[8,9,["G2532"]],[9,10,["G3004"]],[10,11,["G4226"]],[11,12,["G2076"]],[12,13,["G1565"]]]},{"k":26340,"v":[[0,1,["G2532"]],[1,3,["G2258"]],[3,4,["G4183"]],[4,5,["G1112"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G3793"]],[8,9,["G4012"]],[9,10,["G846"]],[10,11,["G1063"]],[11,12,["G3588","G3303"]],[12,13,["G3004"]],[13,15,["G2076"]],[15,18,["G18","(G1161)"]],[18,19,["G243"]],[19,20,["G3004"]],[20,21,["G3756"]],[21,22,["G235"]],[22,24,["G4105"]],[24,25,["G3588"]],[25,26,["G3793"]]]},{"k":26341,"v":[[0,1,["G3305"]],[1,3,["G3762"]],[3,4,["G2980"]],[4,5,["G3954"]],[5,6,["G4012"]],[6,7,["G846"]],[7,8,["G1223"]],[8,9,["G5401"]],[9,11,["G3588"]],[11,12,["G2453"]]]},{"k":26342,"v":[[0,1,["G1161"]],[1,2,["G2235"]],[2,4,["G3322"]],[4,6,["G3588"]],[6,7,["G1859"]],[7,8,["G2424"]],[8,10,["G305"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G2411"]],[13,14,["G2532"]],[14,15,["G1321"]]]},{"k":26343,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,4,["G2296"]],[4,5,["G3004"]],[5,6,["G4459"]],[6,7,["G1492"]],[7,9,["G3778"]],[9,10,["G1121"]],[10,12,["G3361"]],[12,13,["G3129"]]]},{"k":26344,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G2532"]],[4,5,["G2036"]],[5,6,["G1699"]],[6,7,["G1322"]],[7,8,["G2076"]],[8,9,["G3756"]],[9,10,["G1699"]],[10,11,["G235"]],[11,14,["G3992"]],[14,15,["G3165"]]]},{"k":26345,"v":[[0,1,["G1437"]],[1,3,["G5100"]],[3,4,["G2309"]],[4,5,["G4160"]],[5,6,["G846"]],[6,7,["G2307"]],[7,10,["G1097"]],[10,11,["G4012"]],[11,12,["G3588"]],[12,13,["G1322"]],[13,14,["G4220"]],[14,16,["G2076"]],[16,17,["G1537"]],[17,18,["G2316"]],[18,19,["G2228"]],[19,21,["G1473"]],[21,22,["G2980"]],[22,23,["G575"]],[23,24,["G1683"]]]},{"k":26346,"v":[[0,3,["G2980"]],[3,4,["G575"]],[4,5,["G1438"]],[5,6,["G2212"]],[6,8,["G2398"]],[8,9,["G1391"]],[9,10,["G1161"]],[10,13,["G2212"]],[13,15,["G1391"]],[15,17,["G3992"]],[17,18,["G846"]],[18,20,["G3778"]],[20,21,["G2076"]],[21,22,["G227"]],[22,23,["G2532"]],[23,24,["G3756"]],[24,25,["G93"]],[25,26,["G2076"]],[26,27,["G1722"]],[27,28,["G846"]]]},{"k":26347,"v":[[0,2,["G3756"]],[2,3,["G3475"]],[3,4,["G1325"]],[4,5,["G5213"]],[5,6,["G3588"]],[6,7,["G3551"]],[7,8,["G2532"]],[8,10,["G3762"]],[10,11,["G1537"]],[11,12,["G5216"]],[12,13,["G4160"]],[13,14,["G3588"]],[14,15,["G3551"]],[15,16,["G5101"]],[16,19,["G2212"]],[19,21,["G615"]],[21,22,["G3165"]]]},{"k":26348,"v":[[0,1,["G3588"]],[1,2,["G3793"]],[2,3,["G611"]],[3,4,["G2532"]],[4,5,["G2036"]],[5,7,["G2192"]],[7,9,["G1140"]],[9,10,["G5101"]],[10,12,["G2212"]],[12,14,["G615"]],[14,15,["G4571"]]]},{"k":26349,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,9,["G4160"]],[9,10,["G1520"]],[10,11,["G2041"]],[11,12,["G2532"]],[12,14,["G3956"]],[14,15,["G2296"]]]},{"k":26350,"v":[[0,1,["G3475"]],[1,2,["G1223","G5124"]],[2,3,["G1325"]],[3,5,["G5213"]],[5,6,["G4061"]],[6,7,["G3756"]],[7,8,["G3754"]],[8,10,["G2076"]],[10,11,["G1537"]],[11,12,["G3475"]],[12,13,["G235"]],[13,14,["G1537"]],[14,15,["G3588"]],[15,16,["G3962"]],[16,17,["G2532"]],[17,19,["G1722"]],[19,22,["G4521"]],[22,23,["G4059"]],[23,25,["G444"]]]},{"k":26351,"v":[[0,1,["G1487"]],[1,3,["G444"]],[3,4,["G1722"]],[4,7,["G4521"]],[7,8,["G2983"]],[8,9,["G4061"]],[9,10,["G2443"]],[10,11,["G3588"]],[11,12,["G3551"]],[12,14,["G3475"]],[14,16,["G3361"]],[16,18,["G3089"]],[18,21,["G5520"]],[21,23,["G1698"]],[23,24,["G3754"]],[24,27,["G4160"]],[27,29,["G444"]],[29,31,["G3650"]],[31,32,["G5199"]],[32,33,["G1722"]],[33,36,["G4521"]]]},{"k":26352,"v":[[0,1,["G2919"]],[1,2,["G3361"]],[2,3,["G2596"]],[3,6,["G3799"]],[6,7,["G235"]],[7,8,["G2919"]],[8,9,["G1342"]],[9,10,["G2920"]]]},{"k":26353,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G5100"]],[3,4,["G1537"]],[4,7,["G2415"]],[7,8,["G2076"]],[8,9,["G3756"]],[9,10,["G3778"]],[10,12,["G3739"]],[12,14,["G2212"]],[14,16,["G615"]]]},{"k":26354,"v":[[0,1,["G2532"]],[1,2,["G2396"]],[2,4,["G2980"]],[4,5,["G3954"]],[5,6,["G2532"]],[6,8,["G3004"]],[8,9,["G3762"]],[9,11,["G846"]],[11,12,["(G3379)"]],[12,13,["G3588"]],[13,14,["G758"]],[14,15,["G1097"]],[15,16,["G230"]],[16,17,["G3754"]],[17,18,["G3778"]],[18,19,["G2076"]],[19,20,["G3588"]],[20,21,["G230"]],[21,22,["G5547"]]]},{"k":26355,"v":[[0,1,["G235"]],[1,3,["G1492"]],[3,5,["G5126"]],[5,6,["G4159"]],[6,8,["G2076"]],[8,9,["G1161"]],[9,10,["G3752"]],[10,11,["G5547"]],[11,12,["G2064"]],[12,14,["G3762"]],[14,15,["G1097"]],[15,16,["G4159"]],[16,18,["G2076"]]]},{"k":26356,"v":[[0,1,["G3767"]],[1,2,["G2896"]],[2,3,["G2424"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G2411"]],[6,9,["G1321","(G2532)"]],[9,10,["G3004"]],[10,14,["G2504","G1492"]],[14,15,["G2532"]],[15,17,["G1492"]],[17,18,["G4159"]],[18,20,["G1510"]],[20,21,["G2532"]],[21,24,["G3756"]],[24,25,["G2064"]],[25,26,["G575"]],[26,27,["G1683"]],[27,28,["G235"]],[28,31,["G3992"]],[31,32,["G3165"]],[32,33,["G2076"]],[33,34,["G228"]],[34,35,["G3739"]],[35,36,["G5210"]],[36,37,["G1492"]],[37,38,["G3756"]]]},{"k":26357,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G1492"]],[3,4,["G846"]],[4,5,["G3754"]],[5,7,["G1510"]],[7,8,["G3844"]],[8,9,["G846"]],[9,11,["G2548"]],[11,13,["G649"]],[13,14,["G3165"]]]},{"k":26358,"v":[[0,1,["G3767"]],[1,3,["G2212"]],[3,5,["G4084"]],[5,6,["G846"]],[6,7,["G2532"]],[7,9,["G3762"]],[9,10,["G1911"]],[10,11,["G5495"]],[11,12,["G1909"]],[12,13,["G846"]],[13,14,["G3754"]],[14,15,["G846"]],[15,16,["G5610"]],[16,19,["G3768"]],[19,20,["G2064"]]]},{"k":26359,"v":[[0,1,["G1161"]],[1,2,["G4183"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G3793"]],[5,6,["G4100"]],[6,7,["G1519"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G3004"]],[10,11,["G3752"]],[11,12,["G5547"]],[12,13,["G2064"]],[13,15,["(G3385)"]],[15,16,["G4160"]],[16,17,["G4119"]],[17,18,["G4592"]],[18,20,["G5130"]],[20,21,["G3739"]],[21,22,["G3778"]],[22,25,["G4160"]]]},{"k":26360,"v":[[0,1,["G3588"]],[1,2,["G5330"]],[2,3,["G191"]],[3,5,["G3588"]],[5,6,["G3793"]],[6,7,["G1111"]],[7,9,["G5023"]],[9,10,["G4012"]],[10,11,["G846"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G5330"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,18,["G749"]],[18,19,["G649"]],[19,20,["G5257"]],[20,21,["G2443"]],[21,22,["G4084"]],[22,23,["G846"]]]},{"k":26361,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,5,["G846"]],[5,6,["G2089"]],[6,8,["G3398"]],[8,9,["G5550"]],[9,10,["G1510"]],[10,12,["G3326"]],[12,13,["G5216"]],[13,14,["G2532"]],[14,17,["G5217"]],[17,18,["G4314"]],[18,21,["G3992"]],[21,22,["G3165"]]]},{"k":26362,"v":[[0,3,["G2212"]],[3,4,["G3165"]],[4,5,["G2532"]],[5,7,["G3756"]],[7,8,["G2147"]],[8,10,["G2532"]],[10,11,["G3699"]],[11,12,["G1473"]],[12,13,["G1510"]],[13,15,["G5210"]],[15,16,["G1410","G3756"]],[16,17,["G2064"]]]},{"k":26363,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,4,["G2453"]],[4,5,["G4314"]],[5,6,["G1438"]],[6,7,["G4226"]],[7,8,["G3195"]],[8,9,["G3778"]],[9,10,["G4198"]],[10,11,["G3754"]],[11,12,["G2249"]],[12,14,["G3756"]],[14,15,["G2147"]],[15,16,["G846"]],[16,17,["G3195"]],[17,18,["(G3361)"]],[18,19,["G4198"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G1290"]],[22,24,["G3588"]],[24,25,["G1672"]],[25,26,["G2532"]],[26,27,["G1321"]],[27,28,["G3588"]],[28,29,["G1672"]]]},{"k":26364,"v":[[0,1,["G5101"]],[1,4,["G3056"]],[4,5,["G2076"]],[5,6,["G3778"]],[6,7,["G3739"]],[7,9,["G2036"]],[9,12,["G2212"]],[12,13,["G3165"]],[13,14,["G2532"]],[14,16,["G3756"]],[16,17,["G2147"]],[17,19,["G2532"]],[19,20,["G3699"]],[20,21,["G1473"]],[21,22,["G1510"]],[22,24,["G5210"]],[24,25,["G1410","G3756"]],[25,26,["G2064"]]]},{"k":26365,"v":[[0,1,["G1722"]],[1,2,["G3588"]],[2,3,["G2078"]],[3,4,["G2250"]],[4,6,["G3173"]],[6,9,["G3588"]],[9,10,["G1859"]],[10,11,["G2424"]],[11,12,["G2476"]],[12,13,["G2532"]],[13,14,["G2896"]],[14,15,["G3004"]],[15,16,["G1437"]],[16,18,["G5100"]],[18,19,["G1372"]],[19,22,["G2064"]],[22,23,["G4314"]],[23,24,["G3165"]],[24,25,["G2532"]],[25,26,["G4095"]]]},{"k":26366,"v":[[0,3,["G4100"]],[3,4,["G1519"]],[4,5,["G1691"]],[5,6,["G2531"]],[6,7,["G3588"]],[7,8,["G1124"]],[8,10,["G2036"]],[10,12,["G1537"]],[12,13,["G846"]],[13,14,["G2836"]],[14,16,["G4482"]],[16,17,["G4215"]],[17,19,["G2198"]],[19,20,["G5204"]]]},{"k":26367,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,3,["G2036"]],[3,5,["G4012"]],[5,6,["G3588"]],[6,7,["G4151"]],[7,8,["G3739"]],[8,11,["G4100"]],[11,12,["G1519"]],[12,13,["G846"]],[13,14,["G3195"]],[14,15,["G2983"]],[15,16,["G1063"]],[16,18,["G40"]],[18,19,["G4151"]],[19,20,["G2258"]],[20,22,["G3768"]],[22,24,["G3754"]],[24,26,["G2424"]],[26,29,["G3764"]],[29,30,["G1392"]]]},{"k":26368,"v":[[0,1,["G4183"]],[1,2,["G1537"]],[2,3,["G3588"]],[3,4,["G3793"]],[4,5,["G3767"]],[5,8,["G191"]],[8,10,["G3056"]],[10,11,["G3004"]],[11,14,["G230"]],[14,15,["G3778"]],[15,16,["G2076"]],[16,17,["G3588"]],[17,18,["G4396"]]]},{"k":26369,"v":[[0,1,["G243"]],[1,2,["G3004"]],[2,3,["G3778"]],[3,4,["G2076"]],[4,5,["G3588"]],[5,6,["G5547"]],[6,7,["G1161"]],[7,8,["G243"]],[8,9,["G3004"]],[9,10,["(G1063","G3361)"]],[10,11,["G5547"]],[11,12,["G2064"]],[12,14,["G1537"]],[14,15,["G1056"]]]},{"k":26370,"v":[[0,2,["G3780"]],[2,3,["G3588"]],[3,4,["G1124"]],[4,5,["G2036"]],[5,6,["G3754"]],[6,7,["G5547"]],[7,8,["G2064"]],[8,9,["G1537"]],[9,10,["G3588"]],[10,11,["G4690"]],[11,13,["G1138"]],[13,14,["G2532"]],[14,16,["G575"]],[16,17,["G3588"]],[17,18,["G2968"]],[18,20,["G965"]],[20,21,["G3699"]],[21,22,["G1138"]],[22,23,["G2258"]]]},{"k":26371,"v":[[0,1,["G3767"]],[1,3,["G1096"]],[3,5,["G4978"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G3793"]],[8,9,["G1223"]],[9,11,["G846"]]]},{"k":26372,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G1537"]],[3,4,["G846"]],[4,5,["G2309"]],[5,7,["G4084"]],[7,8,["G846"]],[8,9,["G235"]],[9,11,["G3762"]],[11,12,["G1911"]],[12,13,["G5495"]],[13,14,["G1909"]],[14,15,["G846"]]]},{"k":26373,"v":[[0,1,["G3767"]],[1,2,["G2064"]],[2,3,["G3588"]],[3,4,["G5257"]],[4,5,["G4314"]],[5,6,["G3588"]],[6,8,["G749"]],[8,9,["G2532"]],[9,10,["G5330"]],[10,11,["G2532"]],[11,12,["G1565"]],[12,13,["G2036"]],[13,15,["G846"]],[15,16,["G1302"]],[16,19,["G3756"]],[19,20,["G71"]],[20,21,["G846"]]]},{"k":26374,"v":[[0,1,["G3588"]],[1,2,["G5257"]],[2,3,["G611"]],[3,4,["G3763"]],[4,5,["G444"]],[5,6,["G2980"]],[6,7,["G5613"]],[7,8,["G3778"]],[8,9,["G444"]]]},{"k":26375,"v":[[0,1,["G3767"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G3588"]],[4,5,["G5330"]],[5,6,["(G3361)"]],[6,7,["G5210"]],[7,8,["G2532"]],[8,9,["G4105"]]]},{"k":26376,"v":[[0,2,["G3387"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G758"]],[5,6,["G2228"]],[6,7,["G1537"]],[7,8,["G3588"]],[8,9,["G5330"]],[9,10,["G4100"]],[10,11,["G1519"]],[11,12,["G846"]]]},{"k":26377,"v":[[0,1,["G235"]],[1,2,["G3778"]],[2,3,["G3793"]],[3,5,["G1097"]],[5,6,["G3361"]],[6,7,["G3588"]],[7,8,["G3551"]],[8,9,["G1526"]],[9,10,["G1944"]]]},{"k":26378,"v":[[0,1,["G3530"]],[1,2,["G3004"]],[2,3,["G4314"]],[3,4,["G846"]],[4,7,["G2064"]],[7,8,["G4314"]],[8,9,["G846"]],[9,11,["G3571"]],[11,12,["G5607"]],[12,13,["G1520"]],[13,14,["G1537"]],[14,15,["G846"]]]},{"k":26379,"v":[[0,2,["G2257"]],[2,3,["G3551","(G3361)"]],[3,4,["G2919"]],[4,6,["G444"]],[6,7,["G4386","G3362"]],[7,9,["G191"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G1097"]],[12,13,["G5101"]],[13,15,["G4160"]]]},{"k":26380,"v":[[0,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G1488","(G3361)"]],[7,8,["G4771"]],[8,9,["G2532"]],[9,10,["G1537"]],[10,11,["G1056"]],[11,12,["G2045"]],[12,13,["G2532"]],[13,14,["G1492"]],[14,15,["G3754"]],[15,17,["G1537"]],[17,18,["G1056"]],[18,19,["G1453"]],[19,20,["G3756"]],[20,21,["G4396"]]]},{"k":26381,"v":[[0,1,["G2532"]],[1,3,["G1538"]],[3,4,["G4198"]],[4,5,["G1519"]],[5,7,["G848"]],[7,8,["G3624"]]]},{"k":26382,"v":[[0,0,["(G1161)"]],[0,1,["G2424"]],[1,2,["G4198"]],[2,3,["G1519"]],[3,4,["G3588"]],[4,5,["G3735"]],[5,7,["G1636"]]]},{"k":26383,"v":[[0,1,["G1161"]],[1,5,["G3722"]],[5,7,["G3854"]],[7,8,["G3825"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G2411"]],[11,12,["G2532"]],[12,13,["G3956"]],[13,14,["G3588"]],[14,15,["G2992"]],[15,16,["G2064"]],[16,17,["G4314"]],[17,18,["G846"]],[18,19,["G2532"]],[19,22,["G2523"]],[22,24,["G1321"]],[24,25,["G846"]]]},{"k":26384,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1122"]],[3,4,["G2532"]],[4,5,["G5330"]],[5,6,["G71"]],[6,7,["G4314"]],[7,8,["G846"]],[8,10,["G1135"]],[10,11,["G2638"]],[11,12,["G1722"]],[12,13,["G3430"]],[13,14,["G2532"]],[14,18,["G2476"]],[18,19,["G846"]],[19,20,["G1722"]],[20,22,["G3319"]]]},{"k":26385,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G1320"]],[5,6,["G3778"]],[6,7,["G1135"]],[7,9,["G2638"]],[9,11,["G3431"]],[11,15,["G1888"]]]},{"k":26386,"v":[[0,1,["G1161"]],[1,2,["G3475"]],[2,3,["G1722"]],[3,4,["G3588"]],[4,5,["G3551"]],[5,6,["G1781"]],[6,7,["G2254"]],[7,9,["G5108"]],[9,12,["G3036"]],[12,13,["G3767"]],[13,14,["G5101"]],[14,15,["G3004"]],[15,16,["G4771"]]]},{"k":26387,"v":[[0,0,["(G1161)"]],[0,1,["G5124"]],[1,3,["G3004"]],[3,4,["G3985"]],[4,5,["G846"]],[5,6,["G2443"]],[6,9,["G2192"]],[9,11,["G2723"]],[11,12,["G846"]],[12,13,["G1161"]],[13,14,["G2424"]],[14,15,["G2955"]],[15,16,["G2736"]],[16,20,["G1147"]],[20,21,["G1125"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G1093"]],[24,30,[]]]},{"k":26388,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,4,["G1961"]],[4,5,["G2065"]],[5,6,["G846"]],[6,9,["G352"]],[9,12,["G2036"]],[12,13,["G4314"]],[13,14,["G846"]],[14,19,["G361"]],[19,21,["G5216"]],[21,24,["G4413"]],[24,25,["G906"]],[25,27,["G3037"]],[27,28,["G1909"]],[28,29,["G846"]]]},{"k":26389,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,4,["G2955"]],[4,5,["G2736"]],[5,7,["G1125"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G1093"]]]},{"k":26390,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,6,["(G2532)"]],[6,7,["G1651"]],[7,8,["G5259"]],[8,11,["G4893"]],[11,13,["G1831"]],[13,16,["G1527"]],[16,17,["G756"]],[17,18,["G575"]],[18,19,["G3588"]],[19,20,["G4245"]],[20,22,["G2193"]],[22,23,["G3588"]],[23,24,["G2078"]],[24,25,["G2532"]],[25,26,["G2424"]],[26,28,["G2641"]],[28,29,["G3441"]],[29,30,["G2532"]],[30,31,["G3588"]],[31,32,["G1135"]],[32,33,["G2476"]],[33,34,["G1722"]],[34,36,["G3319"]]]},{"k":26391,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,5,["G352"]],[5,7,["G2532"]],[7,8,["G2300"]],[8,9,["G3367"]],[9,10,["G4133"]],[10,11,["G3588"]],[11,12,["G1135"]],[12,14,["G2036"]],[14,16,["G846"]],[16,17,["G1135"]],[17,18,["G4226"]],[18,19,["G1526"]],[19,20,["G1565"]],[20,21,["G4675"]],[21,22,["G2725"]],[22,25,["G3762"]],[25,26,["G2632"]],[26,27,["G4571"]]]},{"k":26392,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G2036"]],[2,4,["G3762"]],[4,5,["G2962"]],[5,6,["G1161"]],[6,7,["G2424"]],[7,8,["G2036"]],[8,10,["G846"]],[10,11,["G3761"]],[11,13,["G1473"]],[13,14,["G2632"]],[14,15,["G4571"]],[15,16,["G4198"]],[16,17,["G2532"]],[17,18,["G264"]],[18,20,["G3371"]]]},{"k":26393,"v":[[0,1,["G3767"]],[1,2,["G2980"]],[2,3,["G2424"]],[3,4,["G3825"]],[4,6,["G846"]],[6,7,["G3004"]],[7,8,["G1473"]],[8,9,["G1510"]],[9,10,["G3588"]],[10,11,["G5457"]],[11,13,["G3588"]],[13,14,["G2889"]],[14,17,["G190"]],[17,18,["G1698"]],[18,20,["G3364"]],[20,21,["G4043"]],[21,22,["G1722"]],[22,23,["G4653"]],[23,24,["G235"]],[24,26,["G2192"]],[26,27,["G3588"]],[27,28,["G5457"]],[28,30,["G2222"]]]},{"k":26394,"v":[[0,1,["G3588"]],[1,2,["G5330"]],[2,3,["G3767"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G4771"]],[7,9,["G3140"]],[9,10,["G4012"]],[10,11,["G4572"]],[11,12,["G4675"]],[12,13,["G3141"]],[13,14,["G2076"]],[14,15,["G3756"]],[15,16,["G227"]]]},{"k":26395,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G2579"]],[7,8,["G1473"]],[8,10,["G3140"]],[10,11,["G4012"]],[11,12,["G1683"]],[12,14,["G3450"]],[14,15,["G3141"]],[15,16,["G2076"]],[16,17,["G227"]],[17,18,["G3754"]],[18,20,["G1492"]],[20,21,["G4159"]],[21,23,["G2064"]],[23,24,["G2532"]],[24,25,["G4226"]],[25,27,["G5217"]],[27,28,["G1161"]],[28,29,["G5210"]],[29,31,["G1492","G3756"]],[31,32,["G4159"]],[32,34,["G2064"]],[34,35,["G2532"]],[35,36,["G4226"]],[36,38,["G5217"]]]},{"k":26396,"v":[[0,1,["G5210"]],[1,2,["G2919"]],[2,3,["G2596"]],[3,4,["G3588"]],[4,5,["G4561"]],[5,6,["G1473"]],[6,7,["G2919"]],[7,9,["G3762"]]]},{"k":26397,"v":[[0,1,["G2532"]],[1,2,["G1161"]],[2,3,["G1437"]],[3,4,["G1473"]],[4,5,["G2919"]],[5,6,["G1699"]],[6,7,["G2920"]],[7,8,["G2076"]],[8,9,["G227"]],[9,10,["G3754"]],[10,12,["G1510"]],[12,13,["G3756"]],[13,14,["G3441"]],[14,15,["G235"]],[15,16,["G1473"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G3962"]],[19,21,["G3992"]],[21,22,["G3165"]]]},{"k":26398,"v":[[0,2,["(G2532)"]],[2,3,["G1161"]],[3,4,["G1125"]],[4,5,["G1722"]],[5,6,["G5212"]],[6,7,["G3551"]],[7,8,["G3754"]],[8,9,["G3588"]],[9,10,["G3141"]],[10,12,["G1417"]],[12,13,["G444"]],[13,14,["G2076"]],[14,15,["G227"]]]},{"k":26399,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,6,["G3140"]],[6,7,["G4012"]],[7,8,["G1683"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G3962"]],[11,12,["G3588"]],[12,13,["G3992"]],[13,14,["G3165"]],[14,16,["G3140"]],[16,17,["G4012"]],[17,18,["G1700"]]]},{"k":26400,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,5,["G846"]],[5,6,["G4226"]],[6,7,["G2076"]],[7,8,["G4675"]],[8,9,["G3962"]],[9,10,["G2424"]],[10,11,["G611"]],[11,13,["G3777"]],[13,14,["G1492"]],[14,15,["G1691"]],[15,16,["G3777"]],[16,17,["G3450"]],[17,18,["G3962"]],[18,19,["G1487"]],[19,22,["G1492"]],[22,23,["G1691"]],[23,27,["G1492","G302"]],[27,28,["G3450"]],[28,29,["G3962"]],[29,30,["G2532"]]]},{"k":26401,"v":[[0,1,["G5023"]],[1,2,["G4487"]],[2,3,["G2980"]],[3,4,["G2424"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G1049"]],[7,10,["G1321"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G2411"]],[13,14,["G2532"]],[14,16,["G3762"]],[16,19,["G4084"]],[19,20,["G846"]],[20,21,["G3754"]],[21,22,["G846"]],[22,23,["G5610"]],[23,26,["G3768"]],[26,27,["G2064"]]]},{"k":26402,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,4,["G3825"]],[4,6,["G846"]],[6,7,["G1473"]],[7,10,["G5217"]],[10,11,["G2532"]],[11,14,["G2212"]],[14,15,["G3165"]],[15,16,["G2532"]],[16,18,["G599"]],[18,19,["G1722"]],[19,20,["G5216"]],[20,21,["G266"]],[21,22,["G3699"]],[22,23,["G1473"]],[23,24,["G5217"]],[24,25,["G5210"]],[25,26,["G1410","G3756"]],[26,27,["G2064"]]]},{"k":26403,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G3588"]],[3,4,["G2453"]],[4,5,["(G3385)"]],[5,7,["G615"]],[7,8,["G1438"]],[8,9,["G3754"]],[9,11,["G3004"]],[11,12,["G3699"]],[12,13,["G1473"]],[13,14,["G5217"]],[14,15,["G5210"]],[15,16,["G1410","G3756"]],[16,17,["G2064"]]]},{"k":26404,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G5210"]],[6,7,["G2075"]],[7,8,["G1537"]],[8,9,["G2736"]],[9,10,["G1473"]],[10,11,["G1510"]],[11,12,["G1537"]],[12,13,["G507"]],[13,14,["G5210"]],[14,15,["G2075"]],[15,16,["G1537"]],[16,17,["G5127"]],[17,18,["G2889"]],[18,19,["G1473"]],[19,20,["G1510"]],[20,21,["G3756"]],[21,22,["G1537"]],[22,23,["G5127"]],[23,24,["G2889"]]]},{"k":26405,"v":[[0,2,["G2036"]],[2,3,["G3767"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,9,["G599"]],[9,10,["G1722"]],[10,11,["G5216"]],[11,12,["G266"]],[12,13,["G1063"]],[13,14,["G1437"]],[14,16,["G4100"]],[16,17,["G3361"]],[17,18,["G3754"]],[18,19,["G1473"]],[19,20,["G1510"]],[20,24,["G599"]],[24,25,["G1722"]],[25,26,["G5216"]],[26,27,["G266"]]]},{"k":26406,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,5,["G846"]],[5,6,["G5101"]],[6,7,["G1488"]],[7,8,["G4771"]],[8,9,["G2532"]],[9,10,["G2424"]],[10,11,["G2036"]],[11,13,["G846"]],[13,14,["G2532"]],[14,17,["G3748"]],[17,19,["G2980"]],[19,21,["G5213"]],[21,23,["G3588"]],[23,24,["G746"]]]},{"k":26407,"v":[[0,2,["G2192"]],[2,4,["G4183"]],[4,6,["G2980"]],[6,7,["G2532"]],[7,9,["G2919"]],[9,10,["G4012"]],[10,11,["G5216"]],[11,12,["G235"]],[12,15,["G3992"]],[15,16,["G3165"]],[16,17,["G2076"]],[17,18,["G227"]],[18,20,["G2504"]],[20,21,["G3004"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G2889"]],[24,26,["G5023"]],[26,27,["G3739"]],[27,30,["G191"]],[30,31,["G3844"]],[31,32,["G846"]]]},{"k":26408,"v":[[0,2,["G1097"]],[2,3,["G3756"]],[3,4,["G3754"]],[4,6,["G3004"]],[6,8,["G846"]],[8,10,["G3588"]],[10,11,["G3962"]]]},{"k":26409,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,5,["G846"]],[5,6,["G3752"]],[6,10,["G5312"]],[10,11,["G3588"]],[11,12,["G5207"]],[12,14,["G444"]],[14,15,["G5119"]],[15,18,["G1097"]],[18,19,["G3754"]],[19,20,["G1473"]],[20,21,["G1510"]],[21,23,["G2532"]],[23,26,["G4160"]],[26,27,["G3762"]],[27,28,["G575"]],[28,29,["G1683"]],[29,30,["G235"]],[30,31,["G2531"]],[31,32,["G3450"]],[32,33,["G3962"]],[33,35,["G1321"]],[35,36,["G3165"]],[36,38,["G2980"]],[38,40,["G5023"]]]},{"k":26410,"v":[[0,1,["G2532"]],[1,4,["G3992"]],[4,5,["G3165"]],[5,6,["G2076"]],[6,7,["G3326"]],[7,8,["G1700"]],[8,9,["G3588"]],[9,10,["G3962"]],[10,12,["G3756"]],[12,13,["G863"]],[13,14,["G3165"]],[14,15,["G3441"]],[15,16,["G3754"]],[16,17,["G1473"]],[17,18,["G4160"]],[18,19,["G3842"]],[19,23,["G701"]],[23,24,["G846"]]]},{"k":26411,"v":[[0,2,["G846"]],[2,3,["G2980"]],[3,5,["G5023"]],[5,6,["G4183"]],[6,7,["G4100"]],[7,8,["G1519"]],[8,9,["G846"]]]},{"k":26412,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G2424"]],[3,4,["G4314"]],[4,6,["G2453"]],[6,8,["G4100"]],[8,10,["G846"]],[10,11,["G1437"]],[11,12,["G5210"]],[12,13,["G3306"]],[13,14,["G1722"]],[14,15,["G1699"]],[15,16,["G3056"]],[16,18,["G2075"]],[18,20,["G3450"]],[20,21,["G3101"]],[21,22,["G230"]]]},{"k":26413,"v":[[0,1,["G2532"]],[1,4,["G1097"]],[4,5,["G3588"]],[5,6,["G225"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G225"]],[9,13,["G1659","G5209"]]]},{"k":26414,"v":[[0,2,["G611"]],[2,3,["G846"]],[3,5,["G2070"]],[5,6,["G11"]],[6,7,["G4690"]],[7,8,["G2532"]],[8,12,["G1398","G4455"]],[12,15,["G3762"]],[15,16,["G4459"]],[16,17,["G3004"]],[17,18,["G4771"]],[18,22,["G1096"]],[22,23,["G1658"]]]},{"k":26415,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G281"]],[4,5,["G281"]],[5,7,["G3004"]],[7,9,["G5213"]],[9,10,["G3956"]],[10,11,["G4160"]],[11,12,["G266"]],[12,13,["G2076"]],[13,15,["G1401"]],[15,17,["G266"]]]},{"k":26416,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1401"]],[3,4,["G3306"]],[4,5,["G3756"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G3614"]],[8,10,["G1519","G165"]],[10,12,["G3588"]],[12,13,["G5207"]],[13,14,["G3306"]],[14,15,["G1519","G165"]]]},{"k":26417,"v":[[0,1,["G1437"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,4,["G3767"]],[4,8,["G1659","G5209"]],[8,11,["G2071"]],[11,12,["G1658"]],[12,13,["G3689"]]]},{"k":26418,"v":[[0,2,["G1492"]],[2,3,["G3754"]],[3,5,["G2075"]],[5,6,["G11"]],[6,7,["G4690"]],[7,8,["G235"]],[8,10,["G2212"]],[10,12,["G615"]],[12,13,["G3165"]],[13,14,["G3754"]],[14,15,["G1699"]],[15,16,["G3056"]],[16,19,["G5562","G3756"]],[19,20,["G1722"]],[20,21,["G5213"]]]},{"k":26419,"v":[[0,1,["G1473"]],[1,2,["G2980"]],[2,4,["G3739"]],[4,7,["G3708"]],[7,8,["G3844"]],[8,9,["G3450"]],[9,10,["G3962"]],[10,11,["G2532"]],[11,12,["G5210"]],[12,13,["G4160"]],[13,15,["G3739"]],[15,17,["(G3767)"]],[17,18,["G3708"]],[18,19,["G3844"]],[19,20,["G5216"]],[20,21,["G3962"]]]},{"k":26420,"v":[[0,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G11"]],[7,8,["G2076"]],[8,9,["G2257"]],[9,10,["G3962"]],[10,11,["G2424"]],[11,12,["G3004"]],[12,14,["G846"]],[14,15,["G1487"]],[15,17,["G2258"]],[17,18,["G11"]],[18,19,["G5043"]],[19,22,["G4160","G302"]],[22,23,["G3588"]],[23,24,["G2041"]],[24,26,["G11"]]]},{"k":26421,"v":[[0,1,["G1161"]],[1,2,["G3568"]],[2,4,["G2212"]],[4,6,["G615"]],[6,7,["G3165"]],[7,9,["G444"]],[9,10,["G3739"]],[10,12,["G2980"]],[12,13,["G5213"]],[13,14,["G3588"]],[14,15,["G225"]],[15,16,["G3739"]],[16,19,["G191"]],[19,20,["G3844"]],[20,21,["G2316"]],[21,22,["G5124"]],[22,23,["G4160"]],[23,24,["G3756"]],[24,25,["G11"]]]},{"k":26422,"v":[[0,1,["G5210"]],[1,2,["G4160"]],[2,3,["G3588"]],[3,4,["G2041"]],[4,6,["G5216"]],[6,7,["G3962"]],[7,8,["G3767"]],[8,9,["G2036"]],[9,12,["G846"]],[12,13,["G2249"]],[13,15,["G3756"]],[15,16,["G1080"]],[16,17,["G1537"]],[17,18,["G4202"]],[18,20,["G2192"]],[20,21,["G1520"]],[21,22,["G3962"]],[22,24,["G2316"]]]},{"k":26423,"v":[[0,1,["G2424"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G1487"]],[5,6,["G2316"]],[6,7,["G2258"]],[7,8,["G5216"]],[8,9,["G3962"]],[9,12,["G25","G302"]],[12,13,["G1691"]],[13,14,["G1063"]],[14,15,["G1473"]],[15,17,["G1831"]],[17,18,["G2532"]],[18,19,["G2240"]],[19,20,["G1537"]],[20,21,["G2316","(G1063)"]],[21,22,["G3761"]],[22,23,["G2064"]],[23,25,["G575"]],[25,26,["G1683"]],[26,27,["G235"]],[27,28,["G1565"]],[28,29,["G649"]],[29,30,["G3165"]]]},{"k":26424,"v":[[0,1,["G1302"]],[1,4,["G3756"]],[4,5,["G1097"]],[5,6,["G1699"]],[6,7,["G2981"]],[7,9,["G3754"]],[9,11,["G1410","G3756"]],[11,12,["G191"]],[12,13,["G1699"]],[13,14,["G3056"]]]},{"k":26425,"v":[[0,1,["G5210"]],[1,2,["G2075"]],[2,3,["G1537"]],[3,5,["G3962"]],[5,6,["G3588"]],[6,7,["G1228"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G1939"]],[10,12,["G5216"]],[12,13,["G3962"]],[13,15,["G2309"]],[15,16,["G4160"]],[16,17,["G1565"]],[17,18,["G2258"]],[18,20,["G443"]],[20,21,["G575"]],[21,23,["G746"]],[23,24,["G2532"]],[24,25,["G2476"]],[25,26,["G3756"]],[26,27,["G1722"]],[27,28,["G3588"]],[28,29,["G225"]],[29,30,["G3754"]],[30,32,["G2076"]],[32,33,["G3756"]],[33,34,["G225"]],[34,35,["G1722"]],[35,36,["G846"]],[36,37,["G3752"]],[37,39,["G2980"]],[39,41,["G5579"]],[41,43,["G2980"]],[43,44,["G1537"]],[44,46,["G2398"]],[46,47,["G3754"]],[47,49,["G2076"]],[49,51,["G5583"]],[51,52,["G2532"]],[52,53,["G3588"]],[53,54,["G3962"]],[54,56,["G846"]]]},{"k":26426,"v":[[0,1,["G1161"]],[1,2,["G3754"]],[2,3,["G1473"]],[3,4,["G3004"]],[4,6,["G3588"]],[6,7,["G225"]],[7,9,["G4100"]],[9,10,["G3427"]],[10,11,["G3756"]]]},{"k":26427,"v":[[0,1,["G5101"]],[1,2,["G1537"]],[2,3,["G5216"]],[3,4,["G1651"]],[4,5,["G3165"]],[5,6,["G4012"]],[6,7,["G266"]],[7,8,["G1161"]],[8,9,["G1487"]],[9,11,["G3004"]],[11,13,["G225"]],[13,14,["G1302"]],[14,16,["G5210"]],[16,17,["G3756"]],[17,18,["G4100"]],[18,19,["G3427"]]]},{"k":26428,"v":[[0,3,["G5607"]],[3,4,["G1537"]],[4,5,["G2316"]],[5,6,["G191"]],[6,7,["G2316"]],[7,8,["G4487"]],[8,9,["G5210"]],[9,10,["G1223","G5124"]],[10,11,["G191"]],[11,13,["G3756"]],[13,14,["G3754"]],[14,16,["G2075"]],[16,17,["G3756"]],[17,18,["G1537"]],[18,19,["G2316"]]]},{"k":26429,"v":[[0,1,["G3767"]],[1,2,["G611"]],[2,3,["G3588"]],[3,4,["G2453"]],[4,5,["G2532"]],[5,6,["G2036"]],[6,8,["G846"]],[8,9,["G3004"]],[9,10,["G2249"]],[10,11,["G3756"]],[11,12,["G2573"]],[12,13,["G3754"]],[13,14,["G4771"]],[14,15,["G1488"]],[15,17,["G4541"]],[17,18,["G2532"]],[18,19,["G2192"]],[19,21,["G1140"]]]},{"k":26430,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G1473"]],[3,4,["G2192"]],[4,5,["G3756"]],[5,7,["G1140"]],[7,8,["G235"]],[8,10,["G5091"]],[10,11,["G3450"]],[11,12,["G3962"]],[12,13,["G2532"]],[13,14,["G5210"]],[14,16,["G818"]],[16,17,["G3165"]]]},{"k":26431,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G2212"]],[3,4,["G3756"]],[4,6,["G3450"]],[6,7,["G1391"]],[7,9,["G2076"]],[9,12,["G2212"]],[12,13,["G2532"]],[13,14,["G2919"]]]},{"k":26432,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,7,["G1437"]],[7,9,["G5100"]],[9,10,["G5083"]],[10,11,["G1699"]],[11,12,["G3056"]],[12,15,["G3364","G1519","G165"]],[15,16,["G2334"]],[16,17,["G2288"]]]},{"k":26433,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,4,["G2453"]],[4,6,["G846"]],[6,7,["G3568"]],[7,9,["G1097"]],[9,10,["G3754"]],[10,12,["G2192"]],[12,14,["G1140"]],[14,15,["G11"]],[15,17,["G599"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G4396"]],[20,21,["G2532"]],[21,22,["G4771"]],[22,23,["G3004"]],[23,24,["G1437"]],[24,26,["G5100"]],[26,27,["G5083"]],[27,28,["G3450"]],[28,29,["G3056"]],[29,32,["G3364","G1519","G165"]],[32,33,["G1089"]],[33,35,["G2288"]]]},{"k":26434,"v":[[0,1,["G1488","(G3361)"]],[1,2,["G4771"]],[2,3,["G3187"]],[3,5,["G2257"]],[5,6,["G3962"]],[6,7,["G11"]],[7,8,["G3748"]],[8,10,["G599"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G4396"]],[13,15,["G599"]],[15,16,["G5101"]],[16,17,["G4160"]],[17,18,["G4771"]],[18,19,["G4572"]]]},{"k":26435,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G1437"]],[3,4,["G1473"]],[4,5,["G1392"]],[5,6,["G1683"]],[6,7,["G3450"]],[7,8,["G1391"]],[8,9,["G2076"]],[9,10,["G3762"]],[10,12,["G2076"]],[12,13,["G3450"]],[13,14,["G3962"]],[14,16,["G1392"]],[16,17,["G3165"]],[17,19,["G3739"]],[19,20,["G5210"]],[20,21,["G3004"]],[21,22,["G3754"]],[22,24,["G2076"]],[24,25,["G5216"]],[25,26,["G2316"]]]},{"k":26436,"v":[[0,1,["G2532"]],[1,4,["G3756"]],[4,5,["G1097"]],[5,6,["G846"]],[6,7,["G1161"]],[7,9,["G1492"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G1437"]],[12,15,["G2036"]],[15,16,["(G3754)"]],[16,17,["G1492"]],[17,18,["G846"]],[18,19,["G3756"]],[19,22,["G2071"]],[22,24,["G5583"]],[24,26,["G3664"]],[26,27,["G5216"]],[27,28,["G235"]],[28,30,["G1492"]],[30,31,["G846"]],[31,32,["G2532"]],[32,33,["G5083"]],[33,34,["G846"]],[34,35,["G3056"]]]},{"k":26437,"v":[[0,1,["G5216"]],[1,2,["G3962"]],[2,3,["G11"]],[3,4,["G21"]],[4,5,["G2443"]],[5,6,["G1492"]],[6,7,["G1699"]],[7,8,["G2250"]],[8,9,["G2532"]],[9,11,["G1492"]],[11,13,["G2532"]],[13,15,["G5463"]]]},{"k":26438,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,4,["G2453"]],[4,5,["G4314"]],[5,6,["G846"]],[6,8,["G2192"]],[8,10,["G3768"]],[10,11,["G4004"]],[11,13,["G2094"]],[13,14,["G2532"]],[14,17,["G3708"]],[17,18,["G11"]]]},{"k":26439,"v":[[0,1,["G2424"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G281"]],[5,6,["G281"]],[6,8,["G3004"]],[8,10,["G5213"]],[10,11,["G4250"]],[11,12,["G11"]],[12,13,["G1096"]],[13,14,["G1473"]],[14,15,["G1510"]]]},{"k":26440,"v":[[0,1,["G3767"]],[1,4,["G142"]],[4,5,["G3037"]],[5,6,["G2443"]],[6,7,["G906"]],[7,8,["G1909"]],[8,9,["G846"]],[9,10,["G1161"]],[10,11,["G2424"]],[11,12,["G2928"]],[12,14,["G2532"]],[14,15,["G1831"]],[15,17,["G1537"]],[17,18,["G3588"]],[18,19,["G2411"]],[19,20,["G1330"]],[20,21,["G1223"]],[21,23,["G3319"]],[23,25,["G846"]],[25,26,["G2532"]],[26,27,["G3779"]],[27,29,["G3855"]]]},{"k":26441,"v":[[0,1,["G2532"]],[1,5,["G3855"]],[5,7,["G1492"]],[7,9,["G444"]],[9,12,["G5185"]],[12,13,["G1537"]],[13,15,["G1079"]]]},{"k":26442,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3101"]],[3,4,["G2065"]],[4,5,["G846"]],[5,6,["G3004"]],[6,7,["G4461"]],[7,8,["G5101"]],[8,10,["G264"]],[10,12,["G3778"]],[12,13,["G2228"]],[13,14,["G846"]],[14,15,["G1118"]],[15,16,["G2443"]],[16,19,["G1080"]],[19,20,["G5185"]]]},{"k":26443,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G3777"]],[3,6,["G3778"]],[6,7,["G264"]],[7,8,["G3777"]],[8,9,["G846"]],[9,10,["G1118"]],[10,11,["G235"]],[11,12,["G2443"]],[12,13,["G3588"]],[13,14,["G2041"]],[14,16,["G2316"]],[16,20,["G5319"]],[20,21,["G1722"]],[21,22,["G846"]]]},{"k":26444,"v":[[0,1,["G1691"]],[1,2,["G1163"]],[2,3,["G2038"]],[3,4,["G3588"]],[4,5,["G2041"]],[5,9,["G3992"]],[9,10,["G3165"]],[10,11,["G2193"]],[11,13,["G2076"]],[13,14,["G2250"]],[14,16,["G3571"]],[16,17,["G2064"]],[17,18,["G3753"]],[18,20,["G3762"]],[20,21,["G1410"]],[21,22,["G2038"]]]},{"k":26445,"v":[[0,3,["G3752"]],[3,5,["G5600"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G2889"]],[8,10,["G1510"]],[10,12,["G5457"]],[12,14,["G3588"]],[14,15,["G2889"]]]},{"k":26446,"v":[[0,4,["G5023"]],[4,5,["G2036"]],[5,7,["G4429"]],[7,10,["G5476"]],[10,11,["G2532"]],[11,12,["G4160"]],[12,13,["G4081"]],[13,14,["G1537"]],[14,15,["G3588"]],[15,16,["G4427"]],[16,17,["G2532"]],[17,19,["G2025"]],[19,20,["G3588"]],[20,21,["G3788"]],[21,23,["G3588"]],[23,25,["G5185"]],[25,27,["G3588"]],[27,28,["G4081"]]]},{"k":26447,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G5217"]],[5,6,["G3538"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G2861"]],[9,11,["G4611"]],[11,12,["G3739"]],[12,15,["G2059"]],[15,16,["G649"]],[16,20,["G565"]],[20,21,["G3767"]],[21,22,["G2532"]],[22,23,["G3538"]],[23,24,["G2532"]],[24,25,["G2064"]],[25,26,["G991"]]]},{"k":26448,"v":[[0,1,["G3588"]],[1,2,["G1069"]],[2,3,["G3767"]],[3,4,["G2532"]],[4,7,["G4386"]],[7,9,["G2334"]],[9,10,["G846"]],[10,11,["G3754"]],[11,13,["G2258"]],[13,14,["G5185"]],[14,15,["G3004"]],[15,16,["G2076"]],[16,17,["G3756"]],[17,18,["G3778"]],[18,21,["G2521"]],[21,22,["G2532"]],[22,23,["G4319"]]]},{"k":26449,"v":[[0,1,["G243"]],[1,2,["G3004"]],[2,3,["G3778"]],[3,4,["G2076"]],[4,5,["(G1161)"]],[5,6,["G243"]],[6,9,["G2076"]],[9,10,["G3664"]],[10,11,["G846"]],[11,13,["G1565"]],[13,14,["G3004"]],[14,15,["G1473"]],[15,16,["G1510"]],[16,17,[]]]},{"k":26450,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,5,["G846"]],[5,6,["G4459"]],[6,8,["G4675"]],[8,9,["G3788"]],[9,10,["G455"]]]},{"k":26451,"v":[[0,1,["G1565"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G444"]],[6,9,["G3004"]],[9,10,["G2424"]],[10,11,["G4160"]],[11,12,["G4081"]],[12,13,["G2532"]],[13,14,["G2025"]],[14,15,["G3450"]],[15,16,["G3788"]],[16,17,["G2532"]],[17,18,["G2036"]],[18,20,["G3427"]],[20,21,["G5217"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G2861"]],[24,26,["G4611"]],[26,27,["G2532"]],[27,28,["G3538"]],[28,29,["G1161"]],[29,31,["G565"]],[31,32,["G2532"]],[32,33,["G3538"]],[33,34,["G2532"]],[34,37,["G308"]]]},{"k":26452,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,5,["G846"]],[5,6,["G4226"]],[6,7,["G2076"]],[7,8,["G1565"]],[8,10,["G3004"]],[10,12,["G1492"]],[12,13,["G3756"]]]},{"k":26453,"v":[[0,2,["G71"]],[2,3,["G4314"]],[3,4,["G3588"]],[4,5,["G5330"]],[5,6,["G846"]],[6,8,["G4218"]],[8,10,["G5185"]]]},{"k":26454,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,6,["G4521"]],[6,7,["G3753"]],[7,8,["G2424"]],[8,9,["G4160"]],[9,10,["G3588"]],[10,11,["G4081"]],[11,12,["G2532"]],[12,13,["G455"]],[13,14,["G846"]],[14,15,["G3788"]]]},{"k":26455,"v":[[0,1,["G3767"]],[1,2,["G3825"]],[2,3,["G3588"]],[3,4,["G5330"]],[4,5,["G2532"]],[5,6,["G2065"]],[6,7,["G846"]],[7,8,["G4459"]],[8,13,["G308","(G1161)"]],[13,14,["G3588"]],[14,15,["G2036"]],[15,17,["G846"]],[17,19,["G2007"]],[19,20,["G4081"]],[20,21,["G1909"]],[21,22,["G3450"]],[22,23,["G3788"]],[23,24,["G2532"]],[24,26,["G3538"]],[26,27,["G2532"]],[27,29,["G991"]]]},{"k":26456,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G5100"]],[3,4,["G1537"]],[4,5,["G3588"]],[5,6,["G5330"]],[6,7,["G3778"]],[7,8,["G444"]],[8,9,["G2076"]],[9,10,["G3756"]],[10,11,["G3844"]],[11,12,["G2316"]],[12,13,["G3754"]],[13,15,["G5083"]],[15,16,["G3756"]],[16,17,["G3588"]],[17,19,["G4521"]],[19,20,["G243"]],[20,21,["G3004"]],[21,22,["G4459"]],[22,23,["G1410"]],[23,25,["G444"]],[25,29,["G268"]],[29,30,["G4160"]],[30,31,["G5108"]],[31,32,["G4592"]],[32,33,["G2532"]],[33,35,["G2258"]],[35,37,["G4978"]],[37,38,["G1722"]],[38,39,["G846"]]]},{"k":26457,"v":[[0,2,["G3004"]],[2,4,["G3588"]],[4,6,["G5185"]],[6,7,["G3825"]],[7,8,["G5101"]],[8,9,["G3004"]],[9,10,["G4771"]],[10,11,["G4012"]],[11,12,["G846"]],[12,13,["G3754"]],[13,16,["G455"]],[16,17,["G4675"]],[17,18,["G3788","(G1161)"]],[18,19,["G3588"]],[19,20,["G2036"]],[20,22,["G2076"]],[22,24,["G4396"]]]},{"k":26458,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,5,["G3756"]],[5,6,["G4100"]],[6,7,["G4012"]],[7,8,["G846"]],[8,9,["G3754"]],[9,12,["G2258"]],[12,13,["G5185"]],[13,14,["G2532"]],[14,17,["G308"]],[17,18,["G2193","G3755"]],[18,20,["G5455"]],[20,21,["G3588"]],[21,22,["G1118"]],[22,24,["G846"]],[24,29,["G308"]]]},{"k":26459,"v":[[0,1,["G2532"]],[1,3,["G2065"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G2076"]],[6,7,["G3778"]],[7,8,["G5216"]],[8,9,["G5207"]],[9,10,["G3739"]],[10,11,["G5210"]],[11,12,["G3004"]],[12,13,["(G3754)"]],[13,14,["G1080"]],[14,15,["G5185"]],[15,16,["G4459"]],[16,17,["G3767"]],[17,20,["G737"]],[20,21,["G991"]]]},{"k":26460,"v":[[0,1,["G846"]],[1,2,["G1118"]],[2,3,["G611"]],[3,4,["G846"]],[4,5,["G2532"]],[5,6,["G2036"]],[6,8,["G1492"]],[8,9,["G3754"]],[9,10,["G3778"]],[10,11,["G2076"]],[11,12,["G2257"]],[12,13,["G5207"]],[13,14,["G2532"]],[14,15,["G3754"]],[15,18,["G1080"]],[18,19,["G5185"]]]},{"k":26461,"v":[[0,1,["G1161"]],[1,4,["G4459"]],[4,6,["G3568"]],[6,7,["G991"]],[7,9,["G1492"]],[9,10,["G3756"]],[10,11,["G2228"]],[11,12,["G5101"]],[12,14,["G455"]],[14,15,["G846"]],[15,16,["G3788"]],[16,17,["G2249"]],[17,18,["G1492"]],[18,19,["G3756"]],[19,20,["G846"]],[20,23,["G2192","G2244"]],[23,24,["G2065"]],[24,25,["G846"]],[25,26,["G846"]],[26,28,["G2980"]],[28,29,["G4012"]],[29,30,["G848"]]]},{"k":26462,"v":[[0,1,["G5023"]],[1,3,["G2036"]],[3,4,["G846"]],[4,5,["G1118"]],[5,6,["G3754"]],[6,8,["G5399"]],[8,9,["G3588"]],[9,10,["G2453"]],[10,11,["G1063"]],[11,12,["G3588"]],[12,13,["G2453"]],[13,15,["G4934"]],[15,16,["G2235"]],[16,17,["G2443"]],[17,18,["G1437"]],[18,20,["G5100"]],[20,22,["G3670"]],[22,24,["G846"]],[24,26,["G5547"]],[26,29,["G1096"]],[29,34,["G656"]]]},{"k":26463,"v":[[0,1,["G1223","G5124"]],[1,2,["G2036"]],[2,3,["G846"]],[3,4,["G1118"]],[4,8,["G2192","G2244"]],[8,9,["G2065"]],[9,10,["G846"]]]},{"k":26464,"v":[[0,1,["G3767"]],[1,2,["G1537","G1208"]],[2,3,["G5455"]],[3,5,["G3588"]],[5,6,["G444"]],[6,7,["G3739"]],[7,8,["G2258"]],[8,9,["G5185"]],[9,10,["G2532"]],[10,11,["G2036"]],[11,13,["G846"]],[13,14,["G1325"]],[14,15,["G2316"]],[15,17,["G1391"]],[17,18,["G2249"]],[18,19,["G1492"]],[19,20,["G3754"]],[20,21,["G3778"]],[21,22,["G444"]],[22,23,["G2076"]],[23,25,["G268"]]]},{"k":26465,"v":[[0,1,["G1565"]],[1,2,["G611","(G3767)"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,5,["G1487"]],[5,7,["G2076"]],[7,9,["G268"]],[9,13,["G1492"]],[13,14,["G3756"]],[14,16,["G1520"]],[16,18,["G1492"]],[18,19,["G3754"]],[19,22,["G5607"]],[22,23,["G5185"]],[23,24,["G737"]],[24,26,["G991"]]]},{"k":26466,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,5,["G846"]],[5,6,["G3825"]],[6,7,["G5101"]],[7,8,["G4160"]],[8,11,["G4671"]],[11,12,["G4459"]],[12,13,["G455"]],[13,15,["G4675"]],[15,16,["G3788"]]]},{"k":26467,"v":[[0,2,["G611"]],[2,3,["G846"]],[3,6,["G2036"]],[6,7,["G5213"]],[7,8,["G2235"]],[8,9,["G2532"]],[9,12,["G3756"]],[12,13,["G191"]],[13,14,["G5101"]],[14,15,["G2309"]],[15,17,["G191"]],[17,19,["G3825"]],[19,20,["G2309","(G3361)"]],[20,21,["G5210"]],[21,22,["G2532"]],[22,23,["G1096"]],[23,24,["G846"]],[24,25,["G3101"]]]},{"k":26468,"v":[[0,1,["G3767"]],[1,3,["G3058"]],[3,4,["G846"]],[4,5,["G2532"]],[5,6,["G2036"]],[6,7,["G4771"]],[7,8,["G1488"]],[8,9,["G1565"]],[9,10,["G3101"]],[10,11,["G1161"]],[11,12,["G2249"]],[12,13,["G2070"]],[13,14,["G3475"]],[14,15,["G3101"]]]},{"k":26469,"v":[[0,1,["G2249"]],[1,2,["G1492"]],[2,3,["G3754"]],[3,4,["G2316"]],[4,5,["G2980"]],[5,7,["G3475"]],[7,9,["(G1161)"]],[9,10,["G5126"]],[10,13,["G1492"]],[13,14,["G3756"]],[14,16,["G4159"]],[16,18,["G2076"]]]},{"k":26470,"v":[[0,1,["G3588"]],[1,2,["G444"]],[2,3,["G611"]],[3,4,["G2532"]],[4,5,["G2036"]],[5,7,["G846"]],[7,8,["G1063"]],[8,9,["G1722","G5129"]],[9,10,["G2076"]],[10,13,["G2298"]],[13,14,["G3754"]],[14,15,["G5210"]],[15,16,["G1492"]],[16,17,["G3756"]],[17,19,["G4159"]],[19,21,["G2076"]],[21,22,["G2532"]],[22,26,["G455"]],[26,27,["G3450"]],[27,28,["G3788"]]]},{"k":26471,"v":[[0,1,["G1161"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G2316"]],[5,6,["G191"]],[6,7,["G3756"]],[7,8,["G268"]],[8,9,["G235"]],[9,10,["G1437"]],[10,12,["G5100"]],[12,13,["G5600"]],[13,17,["G2318"]],[17,18,["G2532"]],[18,19,["G4160"]],[19,20,["G846"]],[20,21,["G2307"]],[21,22,["G5127"]],[22,24,["G191"]]]},{"k":26472,"v":[[0,4,["G1537","G165"]],[4,7,["G3756"]],[7,8,["G191"]],[8,9,["G3754"]],[9,11,["G5100"]],[11,12,["G455"]],[12,14,["G3788"]],[14,19,["G1080"]],[19,20,["G5185"]]]},{"k":26473,"v":[[0,1,["G1508"]],[1,3,["G3778"]],[3,4,["G2258"]],[4,5,["G3756"]],[5,6,["G3844"]],[6,7,["G2316"]],[7,9,["G1410"]],[9,10,["G4160"]],[10,11,["G3762"]]]},{"k":26474,"v":[[0,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G4771"]],[7,9,["G3650"]],[9,10,["G1080"]],[10,11,["G1722"]],[11,12,["G266"]],[12,13,["G2532"]],[13,15,["G4771"]],[15,16,["G1321"]],[16,17,["G2248"]],[17,18,["G2532"]],[18,20,["G1544"]],[20,21,["G846"]],[21,22,["G1854"]]]},{"k":26475,"v":[[0,1,["G2424"]],[1,2,["G191"]],[2,3,["G3754"]],[3,6,["G1544"]],[6,7,["G846"]],[7,8,["G1854"]],[8,9,["G2532"]],[9,13,["G2147"]],[13,14,["G846"]],[14,16,["G2036"]],[16,18,["G846"]],[18,20,["G4771"]],[20,21,["G4100"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G5207"]],[24,26,["G2316"]]]},{"k":26476,"v":[[0,1,["G1565"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,5,["G5101"]],[5,6,["G2076"]],[6,8,["G2962"]],[8,9,["G2443"]],[9,12,["G4100"]],[12,13,["G1519"]],[13,14,["G846"]]]},{"k":26477,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,8,["G2532"]],[8,9,["G3708"]],[9,10,["G846"]],[10,11,["G2532"]],[11,13,["G2076"]],[13,14,["G1565"]],[14,16,["G2980"]],[16,17,["G3326"]],[17,18,["G4675"]]]},{"k":26478,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5346"]],[3,4,["G2962"]],[4,6,["G4100"]],[6,7,["G2532"]],[7,9,["G4352"]],[9,10,["G846"]]]},{"k":26479,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G1519"]],[4,5,["G2917"]],[5,6,["G1473"]],[6,8,["G2064"]],[8,9,["G1519"]],[9,10,["G5126"]],[10,11,["G2889"]],[11,12,["G2443"]],[12,15,["G991"]],[15,16,["G3361"]],[16,18,["G991"]],[18,19,["G2532"]],[19,23,["G991"]],[23,26,["G1096"]],[26,27,["G5185"]]]},{"k":26480,"v":[[0,1,["G2532"]],[1,3,["G1537"]],[3,4,["G3588"]],[4,5,["G5330"]],[5,7,["G5607"]],[7,8,["G3326"]],[8,9,["G846"]],[9,10,["G191"]],[10,12,["G5023"]],[12,13,["G2532"]],[13,14,["G2036"]],[14,16,["G846"]],[16,17,["G2070"]],[17,18,["G2249","(G3361)"]],[18,19,["G5185"]],[19,20,["G2532"]]]},{"k":26481,"v":[[0,1,["G2424"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G1487"]],[5,7,["G2258"]],[7,8,["G5185"]],[8,11,["G2192","G302"]],[11,12,["G3756"]],[12,13,["G266"]],[13,14,["G1161"]],[14,15,["G3568"]],[15,17,["G3004"]],[17,19,["G991"]],[19,20,["G3767"]],[20,21,["G5216"]],[21,22,["G266"]],[22,23,["G3306"]]]},{"k":26482,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,9,["G1525"]],[9,10,["G3361"]],[10,11,["G1223"]],[11,12,["G3588"]],[12,13,["G2374"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G833","G4263"]],[16,17,["G235"]],[17,19,["G305"]],[19,22,["G237"]],[22,24,["G1565"]],[24,25,["G2076"]],[25,27,["G2812"]],[27,28,["G2532"]],[28,30,["G3027"]]]},{"k":26483,"v":[[0,1,["G1161"]],[1,5,["G1525"]],[5,6,["G1223"]],[6,7,["G3588"]],[7,8,["G2374"]],[8,9,["G2076"]],[9,10,["G3588"]],[10,11,["G4166"]],[11,13,["G3588"]],[13,14,["G4263"]]]},{"k":26484,"v":[[0,2,["G5129"]],[2,3,["G3588"]],[3,4,["G2377"]],[4,5,["G455"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G4263"]],[8,9,["G191"]],[9,10,["G846"]],[10,11,["G5456"]],[11,12,["G2532"]],[12,14,["G2564"]],[14,16,["G2398"]],[16,17,["G4263"]],[17,18,["G2596"]],[18,19,["G3686"]],[19,20,["G2532"]],[20,23,["G1806","G846"]]]},{"k":26485,"v":[[0,1,["G2532"]],[1,2,["G3752"]],[2,5,["G1544"]],[5,7,["G2398"]],[7,8,["G4263"]],[8,10,["G4198"]],[10,11,["G1715"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G4263"]],[15,16,["G190"]],[16,17,["G846"]],[17,18,["G3754"]],[18,20,["G1492"]],[20,21,["G846"]],[21,22,["G5456"]]]},{"k":26486,"v":[[0,1,["G1161"]],[1,3,["G245"]],[3,6,["G3364"]],[6,7,["G190"]],[7,8,["G235"]],[8,10,["G5343"]],[10,11,["G575"]],[11,12,["G846"]],[12,13,["G3754"]],[13,15,["G1492"]],[15,16,["G3756"]],[16,17,["G3588"]],[17,18,["G5456"]],[18,20,["G245"]]]},{"k":26487,"v":[[0,1,["G5026"]],[1,2,["G3942"]],[2,3,["G2036"]],[3,4,["G2424"]],[4,6,["G846"]],[6,7,["G1161"]],[7,8,["G1565"]],[8,9,["G1097"]],[9,10,["G3756"]],[10,12,["G5101"]],[12,14,["G2258"]],[14,15,["G3739"]],[15,17,["G2980"]],[17,19,["G846"]]]},{"k":26488,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,5,["G846"]],[5,6,["G3825"]],[6,7,["G281"]],[7,8,["G281"]],[8,10,["G3004"]],[10,12,["G5213","(G3754)"]],[12,13,["G1473"]],[13,14,["G1510"]],[14,15,["G3588"]],[15,16,["G2374"]],[16,18,["G3588"]],[18,19,["G4263"]]]},{"k":26489,"v":[[0,1,["G3956"]],[1,2,["G3745"]],[2,4,["G2064"]],[4,5,["G4253"]],[5,6,["G1700"]],[6,7,["G1526"]],[7,8,["G2812"]],[8,9,["G2532"]],[9,10,["G3027"]],[10,11,["G235"]],[11,12,["G3588"]],[12,13,["G4263"]],[13,15,["G3756"]],[15,16,["G191"]],[16,17,["G846"]]]},{"k":26490,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,3,["G3588"]],[3,4,["G2374"]],[4,5,["G1223"]],[5,6,["G1700"]],[6,7,["G1437"]],[7,9,["G5100"]],[9,11,["G1525"]],[11,15,["G4982"]],[15,16,["G2532"]],[16,19,["G1525"]],[19,20,["G2532"]],[20,21,["G1831"]],[21,22,["G2532"]],[22,23,["G2147"]],[23,24,["G3542"]]]},{"k":26491,"v":[[0,1,["G3588"]],[1,2,["G2812"]],[2,3,["G2064"]],[3,4,["G3756"]],[4,5,["G1508"]],[5,7,["G2443"]],[7,8,["G2813"]],[8,9,["G2532"]],[9,11,["G2380"]],[11,12,["G2532"]],[12,14,["G622"]],[14,15,["G1473"]],[15,17,["G2064"]],[17,18,["G2443"]],[18,21,["G2192"]],[21,22,["G2222"]],[22,23,["G2532"]],[23,27,["G2192"]],[27,30,["G4053"]]]},{"k":26492,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,3,["G3588"]],[3,4,["G2570"]],[4,5,["G4166"]],[5,6,["G3588"]],[6,7,["G2570"]],[7,8,["G4166"]],[8,9,["G5087"]],[9,10,["G846"]],[10,11,["G5590"]],[11,12,["G5228"]],[12,13,["G3588"]],[13,14,["G4263"]]]},{"k":26493,"v":[[0,1,["G1161"]],[1,6,["G3411"]],[6,7,["G2532"]],[7,8,["G3756"]],[8,9,["(G5607)"]],[9,10,["G4166"]],[10,11,["G3739"]],[11,12,["G2398"]],[12,13,["G3588"]],[13,14,["G4263"]],[14,15,["G1526"]],[15,16,["G3756"]],[16,17,["G2334"]],[17,18,["G3588"]],[18,19,["G3074"]],[19,20,["G2064"]],[20,21,["G2532"]],[21,22,["G863"]],[22,23,["G3588"]],[23,24,["G4263"]],[24,25,["G2532"]],[25,26,["G5343"]],[26,27,["G2532"]],[27,28,["G3588"]],[28,29,["G3074"]],[29,30,["G726"]],[30,31,["G846"]],[31,32,["G2532"]],[32,33,["G4650"]],[33,34,["G3588"]],[34,35,["G4263"]]]},{"k":26494,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G3411"]],[2,3,["G5343"]],[3,4,["G3754"]],[4,6,["G2076"]],[6,8,["G3411"]],[8,9,["G2532"]],[9,10,["G3199"]],[10,11,["G3756"]],[11,12,["G4012"]],[12,13,["G3588"]],[13,14,["G4263"]]]},{"k":26495,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,3,["G3588"]],[3,4,["G2570"]],[4,5,["G4166"]],[5,6,["G2532"]],[6,7,["G1097"]],[7,8,["G1699"]],[8,10,["G2532"]],[10,12,["G1097"]],[12,13,["G5259"]],[13,14,["G1699"]]]},{"k":26496,"v":[[0,1,["G2531"]],[1,2,["G3588"]],[2,3,["G3962"]],[3,4,["G1097"]],[4,5,["G3165"]],[5,9,["G2504","G1097"]],[9,10,["G3588"]],[10,11,["G3962"]],[11,12,["G2532"]],[12,15,["G5087"]],[15,16,["G3450"]],[16,17,["G5590"]],[17,18,["G5228"]],[18,19,["G3588"]],[19,20,["G4263"]]]},{"k":26497,"v":[[0,1,["G2532"]],[1,2,["G243"]],[2,3,["G4263"]],[3,5,["G2192"]],[5,6,["G3739"]],[6,7,["G2076"]],[7,8,["G3756"]],[8,9,["G1537"]],[9,10,["G5026"]],[10,11,["G833"]],[11,13,["G2548"]],[13,14,["G3165"]],[14,15,["G1163"]],[15,16,["G71"]],[16,17,["G2532"]],[17,20,["G191"]],[20,21,["G3450"]],[21,22,["G5456"]],[22,23,["G2532"]],[23,26,["G1096"]],[26,27,["G3391"]],[27,28,["G4167"]],[28,30,["G1520"]],[30,31,["G4166"]]]},{"k":26498,"v":[[0,1,["G1223","G5124"]],[1,4,["G3962"]],[4,5,["G25"]],[5,6,["G3165"]],[6,7,["G3754"]],[7,8,["G1473"]],[8,10,["G5087"]],[10,11,["G3450"]],[11,12,["G5590"]],[12,13,["G2443"]],[13,16,["G2983"]],[16,17,["G846"]],[17,18,["G3825"]]]},{"k":26499,"v":[[0,2,["G3762"]],[2,3,["G142"]],[3,4,["G846"]],[4,5,["G575"]],[5,6,["G1700"]],[6,7,["G235"]],[7,8,["G1473"]],[8,11,["G5087","G846"]],[11,12,["G575"]],[12,13,["G1683"]],[13,15,["G2192"]],[15,16,["G1849"]],[16,20,["G5087","G846"]],[20,21,["G2532"]],[21,23,["G2192"]],[23,24,["G1849"]],[24,26,["G2983"]],[26,27,["G846"]],[27,28,["G3825"]],[28,29,["G5026"]],[29,30,["G1785"]],[30,33,["G2983"]],[33,34,["G3844"]],[34,35,["G3450"]],[35,36,["G3962"]]]},{"k":26500,"v":[[0,2,["G1096"]],[2,4,["G4978"]],[4,5,["G3767"]],[5,6,["G3825"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G2453"]],[9,10,["G1223"]],[10,11,["G5128"]],[11,12,["G3056"]]]},{"k":26501,"v":[[0,1,["G1161"]],[1,2,["G4183"]],[2,3,["G1537"]],[3,4,["G846"]],[4,5,["G3004"]],[5,7,["G2192"]],[7,9,["G1140"]],[9,10,["G2532"]],[10,12,["G3105"]],[12,13,["G5101"]],[13,14,["G191"]],[14,16,["G846"]]]},{"k":26502,"v":[[0,1,["G243"]],[1,2,["G3004"]],[2,3,["G5023"]],[3,4,["G2076"]],[4,5,["G3756"]],[5,6,["G3588"]],[6,7,["G4487"]],[7,13,["G1139"]],[13,14,["G1410"]],[14,15,["(G3361)"]],[15,16,["G1140"]],[16,17,["G455"]],[17,19,["G3788"]],[19,22,["G5185"]]]},{"k":26503,"v":[[0,1,["G1161"]],[1,3,["G1096"]],[3,4,["G1722"]],[4,5,["G2414"]],[5,6,["G3588"]],[6,10,["G1456"]],[10,11,["G2532"]],[11,13,["G2258"]],[13,14,["G5494"]]]},{"k":26504,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G4043"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G2411"]],[6,7,["G1722"]],[7,8,["G4672"]],[8,9,["G4745"]]]},{"k":26505,"v":[[0,1,["G3767"]],[1,6,["G2944","G3588","G2453"]],[6,7,["G846"]],[7,8,["G2532"]],[8,9,["G3004"]],[9,11,["G846"]],[11,13,["G2193","G4219"]],[13,19,["G142","G2257","G5590"]],[19,20,["G1487"]],[20,21,["G4771"]],[21,22,["G1488"]],[22,23,["G3588"]],[23,24,["G5547"]],[24,25,["G2036"]],[25,26,["G2254"]],[26,27,["G3954"]]]},{"k":26506,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,5,["G2036"]],[5,6,["G5213"]],[6,7,["G2532"]],[7,9,["G4100"]],[9,10,["G3756"]],[10,11,["G3588"]],[11,12,["G2041"]],[12,13,["G3739"]],[13,14,["G1473"]],[14,15,["G4160"]],[15,16,["G1722"]],[16,17,["G3450"]],[17,18,["G3962"]],[18,19,["G3686"]],[19,20,["G5023"]],[20,22,["G3140"]],[22,23,["G4012"]],[23,24,["G1700"]]]},{"k":26507,"v":[[0,1,["G235"]],[1,2,["G5210"]],[2,3,["G4100"]],[3,4,["G3756"]],[4,5,["G1063"]],[5,7,["G2075"]],[7,8,["G3756"]],[8,9,["G1537"]],[9,10,["G1699"]],[10,11,["G4263"]],[11,12,["G2531"]],[12,14,["G2036"]],[14,16,["G5213"]]]},{"k":26508,"v":[[0,1,["G1699"]],[1,2,["G4263"]],[2,3,["G191"]],[3,4,["G3450"]],[4,5,["G5456"]],[5,7,["G2504"]],[7,8,["G1097"]],[8,9,["G846"]],[9,10,["G2532"]],[10,12,["G190"]],[12,13,["G3427"]]]},{"k":26509,"v":[[0,2,["G2504"]],[2,3,["G1325"]],[3,5,["G846"]],[5,6,["G166"]],[6,7,["G2222"]],[7,8,["G2532"]],[8,11,["G3364","G1519","G165"]],[11,12,["G622"]],[12,13,["G2532","G3756"]],[13,15,["G5100"]],[15,17,["G726"]],[17,18,["G846"]],[18,20,["G1537"]],[20,21,["G3450"]],[21,22,["G5495"]]]},{"k":26510,"v":[[0,1,["G3450"]],[1,2,["G3962"]],[2,3,["G3739"]],[3,4,["G1325"]],[4,6,["G3427"]],[6,7,["G2076"]],[7,8,["G3187"]],[8,10,["G3956"]],[10,11,["G2532"]],[11,12,["G3762"]],[12,15,["G1410"]],[15,17,["G726"]],[17,20,["G1537"]],[20,21,["G3450"]],[21,22,["G3962"]],[22,23,["G5495"]]]},{"k":26511,"v":[[0,1,["G1473"]],[1,2,["G2532"]],[2,4,["G3962"]],[4,5,["G2070"]],[5,6,["G1520"]]]},{"k":26512,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,5,["G941"]],[5,6,["G3037"]],[6,7,["G3825"]],[7,8,["G2443"]],[8,9,["G3034"]],[9,10,["G846"]]]},{"k":26513,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G4183"]],[4,5,["G2570"]],[5,6,["G2041"]],[6,9,["G1166"]],[9,10,["G5213"]],[10,11,["G1537"]],[11,12,["G3450"]],[12,13,["G3962"]],[13,14,["G1223"]],[14,15,["G4169"]],[15,17,["G846"]],[17,18,["G2041"]],[18,21,["G3034"]],[21,22,["G3165"]]]},{"k":26514,"v":[[0,1,["G3588"]],[1,2,["G2453"]],[2,3,["G611"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G4012"]],[6,8,["G2570"]],[8,9,["G2041"]],[9,11,["G3034"]],[11,12,["G4571"]],[12,13,["G3756"]],[13,14,["G235"]],[14,15,["G4012"]],[15,16,["G988"]],[16,17,["G2532"]],[17,18,["G3754"]],[18,20,["G4771"]],[20,21,["G5607"]],[21,23,["G444"]],[23,24,["G4160"]],[24,25,["G4572"]],[25,26,["G2316"]]]},{"k":26515,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G2076"]],[4,6,["G3756"]],[6,7,["G1125"]],[7,8,["G1722"]],[8,9,["G5216"]],[9,10,["G3551"]],[10,11,["G1473"]],[11,12,["G2036"]],[12,14,["G2075"]],[14,15,["G2316"]]]},{"k":26516,"v":[[0,1,["G1487"]],[1,3,["G2036"]],[3,4,["G1565"]],[4,5,["G2316"]],[5,6,["G4314"]],[6,7,["G3739"]],[7,8,["G3588"]],[8,9,["G3056"]],[9,11,["G2316"]],[11,12,["G1096"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G1124"]],[15,16,["G1410","G3756"]],[16,18,["G3089"]]]},{"k":26517,"v":[[0,1,["G3004"]],[1,2,["G5210"]],[2,5,["G3739"]],[5,6,["G3588"]],[6,7,["G3962"]],[7,9,["G37"]],[9,10,["G2532"]],[10,11,["G649"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G2889"]],[14,16,["G987"]],[16,17,["G3754"]],[17,19,["G3004"]],[19,21,["G1510"]],[21,23,["G5207"]],[23,25,["G2316"]]]},{"k":26518,"v":[[0,1,["G1487"]],[1,3,["G4160"]],[3,4,["G3756"]],[4,5,["G3588"]],[5,6,["G2041"]],[6,8,["G3450"]],[8,9,["G3962"]],[9,10,["G4100"]],[10,11,["G3427"]],[11,12,["G3361"]]]},{"k":26519,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G4160"]],[4,5,["G2579"]],[5,7,["G4100"]],[7,8,["G3361"]],[8,9,["G1698"]],[9,10,["G4100"]],[10,11,["G3588"]],[11,12,["G2041"]],[12,13,["G2443"]],[13,16,["G1097"]],[16,17,["G2532"]],[17,18,["G4100"]],[18,19,["G3754"]],[19,20,["G3588"]],[20,21,["G3962"]],[21,23,["G1722"]],[23,24,["G1698"]],[24,26,["G2504"]],[26,27,["G1722"]],[27,28,["G846"]]]},{"k":26520,"v":[[0,1,["G3767"]],[1,3,["G2212"]],[3,4,["G3825"]],[4,6,["G4084"]],[6,7,["G846"]],[7,8,["G2532"]],[8,10,["G1831"]],[10,12,["G1537"]],[12,13,["G846"]],[13,14,["G5495"]]]},{"k":26521,"v":[[0,1,["G2532"]],[1,3,["G565"]],[3,4,["G3825"]],[4,5,["G4008"]],[5,6,["G2446"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G5117"]],[9,10,["G3699"]],[10,11,["G2491"]],[11,13,["G4412"]],[13,14,["G2258","G907"]],[14,15,["G2532"]],[15,16,["G1563"]],[16,18,["G3306"]]]},{"k":26522,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,3,["G2064"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G3004"]],[7,8,["G2491"]],[8,9,["G4160"]],[9,10,["G3762"]],[10,11,["G4592"]],[11,12,["G1161"]],[12,14,["G3956"]],[14,15,["G3745"]],[15,16,["G2491"]],[16,17,["G2036"]],[17,18,["G4012"]],[18,20,["G5127"]],[20,21,["G2258"]],[21,22,["G227"]]]},{"k":26523,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,3,["G4100"]],[3,4,["G1519"]],[4,5,["G846"]],[5,6,["G1563"]]]},{"k":26524,"v":[[0,1,["G1161"]],[1,3,["G5100"]],[3,5,["G2258"]],[5,6,["G770"]],[6,8,["G2976"]],[8,9,["G575"]],[9,10,["G963"]],[10,11,["G3588"]],[11,12,["G2968"]],[12,14,["G3137"]],[14,15,["G2532"]],[15,16,["G846"]],[16,17,["G79"]],[17,18,["G3136"]]]},{"k":26525,"v":[[0,1,["(G1161)"]],[1,2,["G2258"]],[2,4,["G3137"]],[4,6,["G218"]],[6,7,["G3588"]],[7,8,["G2962"]],[8,10,["G3464"]],[10,11,["G2532"]],[11,12,["G1591"]],[12,13,["G846"]],[13,14,["G4228"]],[14,16,["G848"]],[16,17,["G2359"]],[17,18,["G3739"]],[18,19,["G80"]],[19,20,["G2976"]],[20,22,["G770"]]]},{"k":26526,"v":[[0,1,["G3767"]],[1,3,["G79"]],[3,4,["G649"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G3004"]],[7,8,["G2962"]],[8,9,["G2396"]],[9,11,["G3739"]],[11,13,["G5368"]],[13,15,["G770"]]]},{"k":26527,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G191"]],[3,6,["G2036"]],[6,7,["G3778"]],[7,8,["G769"]],[8,9,["G2076"]],[9,10,["G3756"]],[10,11,["G4314"]],[11,12,["G2288"]],[12,13,["G235"]],[13,14,["G5228"]],[14,15,["G3588"]],[15,16,["G1391"]],[16,18,["G2316"]],[18,19,["G2443"]],[19,20,["G3588"]],[20,21,["G5207"]],[21,23,["G2316"]],[23,26,["G1392"]],[26,27,["G1223","G846"]]]},{"k":26528,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G25"]],[3,4,["G3136"]],[4,5,["G2532"]],[5,6,["G846"]],[6,7,["G79"]],[7,8,["G2532"]],[8,9,["G2976"]]]},{"k":26529,"v":[[0,1,["G5613"]],[1,4,["G191"]],[4,5,["G3767"]],[5,6,["G3754"]],[6,9,["G770"]],[9,11,["G3306","(G3303)"]],[11,12,["G1417"]],[12,13,["G2250"]],[13,14,["G5119"]],[14,15,["G1722"]],[15,17,["G3739"]],[17,18,["G5117"]],[18,21,["G2258"]]]},{"k":26530,"v":[[0,1,["G1899"]],[1,2,["G3326"]],[2,3,["G5124"]],[3,4,["G3004"]],[4,8,["G3101"]],[8,11,["G71"]],[11,12,["G1519"]],[12,13,["G2449"]],[13,14,["G3825"]]]},{"k":26531,"v":[[0,2,["G3101"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G4461"]],[6,7,["G3588"]],[7,8,["G2453"]],[8,10,["G3568"]],[10,11,["G2212"]],[11,13,["G3034"]],[13,14,["G4571"]],[14,15,["G2532"]],[15,16,["G5217"]],[16,18,["G1563"]],[18,19,["G3825"]]]},{"k":26532,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G1526"]],[3,5,["G3780"]],[5,6,["G1427"]],[6,7,["G5610"]],[7,9,["G3588"]],[9,10,["G2250"]],[10,11,["G1437"]],[11,13,["G5100"]],[13,14,["G4043"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G2250"]],[17,19,["G4350"]],[19,20,["G3756"]],[20,21,["G3754"]],[21,23,["G991"]],[23,24,["G3588"]],[24,25,["G5457"]],[25,27,["G5127"]],[27,28,["G2889"]]]},{"k":26533,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,4,["G5100"]],[4,5,["G4043"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G3571"]],[8,10,["G4350"]],[10,11,["G3754"]],[11,13,["G2076"]],[13,14,["G3756"]],[14,15,["G5457"]],[15,16,["G1722"]],[16,17,["G846"]]]},{"k":26534,"v":[[0,2,["G5023"]],[2,3,["G2036"]],[3,5,["G2532"]],[5,6,["G3326"]],[6,7,["G5124"]],[7,9,["G3004"]],[9,11,["G846"]],[11,12,["G2257"]],[12,13,["G5384"]],[13,14,["G2976"]],[14,15,["G2837"]],[15,16,["G235"]],[16,18,["G4198"]],[18,19,["G2443"]],[19,26,["G1852","G846"]]]},{"k":26535,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G846"]],[3,4,["G3101"]],[4,5,["G2962"]],[5,6,["G1487"]],[6,8,["G2837"]],[8,12,["G4982"]]]},{"k":26536,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2046"]],[3,4,["G4012"]],[4,5,["G846"]],[5,6,["G2288"]],[6,7,["G1161"]],[7,8,["G1565"]],[8,9,["G1380"]],[9,10,["G3754"]],[10,13,["G3004"]],[13,14,["G4012"]],[14,17,["G2838"]],[17,19,["G5258"]]]},{"k":26537,"v":[[0,1,["G5119","(G3767)"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,5,["G846"]],[5,6,["G3954"]],[6,7,["G2976"]],[7,9,["G599"]]]},{"k":26538,"v":[[0,1,["G2532"]],[1,4,["G5463"]],[4,7,["G1223","G5209"]],[7,8,["G3754"]],[8,10,["G2252"]],[10,11,["G3756"]],[11,12,["G1563"]],[12,15,["G2443"]],[15,18,["G4100"]],[18,19,["G235"]],[19,22,["G71"]],[22,23,["G4314"]],[23,24,["G846"]]]},{"k":26539,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2381"]],[3,6,["G3004"]],[6,7,["G1324"]],[7,10,["G4827"]],[10,12,["G2249"]],[12,13,["G2532"]],[13,14,["G71"]],[14,15,["G2443"]],[15,18,["G599"]],[18,19,["G3326"]],[19,20,["G846"]]]},{"k":26540,"v":[[0,1,["G3767"]],[1,3,["G2424"]],[3,4,["G2064"]],[4,6,["G2147"]],[6,7,["(G846)"]],[7,9,["G2192"]],[9,11,["G1722"]],[11,12,["G3588"]],[12,13,["G3419"]],[13,14,["G5064"]],[14,15,["G2250"]],[15,16,["G2235"]]]},{"k":26541,"v":[[0,1,["G1161"]],[1,2,["G963"]],[2,3,["G2258"]],[3,5,["G1451"]],[5,6,["G2414"]],[6,7,["G5613"]],[7,8,["G1178"]],[8,9,["G4712"]],[9,10,["G575"]]]},{"k":26542,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G2453"]],[5,6,["G2064"]],[6,7,["G4314"]],[7,8,["G3136"]],[8,9,["G2532"]],[9,10,["G3137"]],[10,11,["G2443"]],[11,12,["G3888"]],[12,13,["G846"]],[13,14,["G4012"]],[14,15,["G846"]],[15,16,["G80"]]]},{"k":26543,"v":[[0,1,["G3767"]],[1,2,["G3136"]],[2,5,["G5613"]],[5,7,["G191"]],[7,8,["G3754"]],[8,9,["G2424"]],[9,11,["G2064"]],[11,14,["G5221"]],[14,15,["G846"]],[15,16,["G1161"]],[16,17,["G3137"]],[17,18,["G2516"]],[18,20,["G1722"]],[20,21,["G3588"]],[21,22,["G3624"]]]},{"k":26544,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G3136"]],[3,4,["G4314"]],[4,5,["G2424"]],[5,6,["G2962"]],[6,7,["G1487"]],[7,10,["G2258"]],[10,11,["G5602"]],[11,12,["G3450"]],[12,13,["G80"]],[13,15,["G3756"]],[15,16,["G2348","G302"]]]},{"k":26545,"v":[[0,1,["G235"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G2532"]],[5,6,["G3568"]],[6,7,["G3745"]],[7,10,["G154","G302"]],[10,12,["G2316"]],[12,13,["G2316"]],[13,15,["G1325"]],[15,17,["G4671"]]]},{"k":26546,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G4675"]],[5,6,["G80"]],[6,9,["G450"]]]},{"k":26547,"v":[[0,1,["G3136"]],[1,2,["G3004"]],[2,4,["G846"]],[4,6,["G1492"]],[6,7,["G3754"]],[7,11,["G450"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G386"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G2078"]],[17,18,["G2250"]]]},{"k":26548,"v":[[0,1,["G2424"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G1473"]],[5,6,["G1510"]],[6,7,["G3588"]],[7,8,["G386"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G2222"]],[11,14,["G4100"]],[14,15,["G1519"]],[15,16,["G1691"]],[16,17,["G2579"]],[17,20,["G599"]],[20,24,["G2198"]]]},{"k":26549,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G2198"]],[3,4,["G2532"]],[4,5,["G4100"]],[5,6,["G1519"]],[6,7,["G1691"]],[7,9,["G3364","G1519","G165"]],[9,10,["G599"]],[10,11,["G4100"]],[11,13,["G5124"]]]},{"k":26550,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G3483"]],[5,6,["G2962"]],[6,7,["G1473"]],[7,8,["G4100"]],[8,9,["G3754"]],[9,10,["G4771"]],[10,11,["G1488"]],[11,12,["G3588"]],[12,13,["G5547"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,17,["G2316"]],[17,20,["G2064"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G2889"]]]},{"k":26551,"v":[[0,1,["G2532"]],[1,5,["G5023"]],[5,6,["G2036"]],[6,10,["G565"]],[10,11,["G2532"]],[11,12,["G5455"]],[12,13,["G3137"]],[13,14,["G848"]],[14,15,["G79"]],[15,16,["G2977"]],[16,17,["G2036"]],[17,18,["G3588"]],[18,19,["G1320"]],[19,21,["G3918"]],[21,22,["G2532"]],[22,23,["G5455"]],[23,25,["G4571"]]]},{"k":26552,"v":[[0,3,["G5613"]],[3,4,["G1565"]],[4,5,["G191"]],[5,8,["G1453"]],[8,9,["G5035"]],[9,10,["G2532"]],[10,11,["G2064"]],[11,12,["G4314"]],[12,13,["G846"]]]},{"k":26553,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,5,["G3768"]],[5,6,["G2064"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G2968"]],[9,10,["G235"]],[10,11,["G2258"]],[11,12,["G1722"]],[12,14,["G5117"]],[14,15,["G3699"]],[15,16,["G3136"]],[16,17,["G5221"]],[17,18,["G846"]]]},{"k":26554,"v":[[0,1,["G3588"]],[1,2,["G2453"]],[2,3,["G3767"]],[3,5,["G5607"]],[5,6,["G3326"]],[6,7,["G846"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G3614"]],[10,11,["G2532"]],[11,12,["G3888"]],[12,13,["G846"]],[13,16,["G1492"]],[16,17,["G3137"]],[17,18,["G3754"]],[18,21,["G450"]],[21,22,["G5030"]],[22,23,["G2532"]],[23,25,["G1831"]],[25,26,["G190"]],[26,27,["G846"]],[27,28,["G3004"]],[28,30,["G5217"]],[30,31,["G1519"]],[31,32,["G3588"]],[32,33,["G3419"]],[33,34,["G2443"]],[34,35,["G2799"]],[35,36,["G1563"]]]},{"k":26555,"v":[[0,1,["G3767"]],[1,2,["G5613"]],[2,3,["G3137"]],[3,5,["G2064"]],[5,6,["G3699"]],[6,7,["G2424"]],[7,8,["G2258"]],[8,10,["G1492"]],[10,11,["G846"]],[11,14,["G4098"]],[14,15,["G1519"]],[15,16,["G846"]],[16,17,["G4228"]],[17,18,["G3004"]],[18,20,["G846"]],[20,21,["G2962"]],[21,22,["G1487"]],[22,25,["G2258"]],[25,26,["G5602"]],[26,27,["G3450"]],[27,28,["G80"]],[28,30,["G3756"]],[30,31,["G599","G302"]]]},{"k":26556,"v":[[0,1,["G5613"]],[1,2,["G2424"]],[2,3,["G3767"]],[3,4,["G1492"]],[4,5,["G846"]],[5,6,["G2799"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G2453"]],[9,11,["G2799"]],[11,14,["G4905"]],[14,15,["G846"]],[15,17,["G1690"]],[17,19,["G3588"]],[19,20,["G4151"]],[20,21,["G2532"]],[21,23,["G5015","(G1438)"]]]},{"k":26557,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,3,["G4226"]],[3,6,["G5087"]],[6,8,["G846"]],[8,9,["G3004"]],[9,11,["G846"]],[11,12,["G2962"]],[12,13,["G2064"]],[13,14,["G2532"]],[14,15,["G1492"]]]},{"k":26558,"v":[[0,1,["G2424"]],[1,2,["G1145"]]]},{"k":26559,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G3588"]],[3,4,["G2453"]],[4,5,["G2396"]],[5,6,["G4459"]],[6,8,["G5368"]],[8,9,["G846"]]]},{"k":26560,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G1537"]],[3,4,["G846"]],[4,5,["G2036"]],[5,6,["G1410"]],[6,7,["G3756"]],[7,9,["G3778"]],[9,11,["G455"]],[11,12,["G3588"]],[12,13,["G3788"]],[13,15,["G3588"]],[15,16,["G5185"]],[16,18,["G4160"]],[18,19,["G2443"]],[19,20,["G2532"]],[20,22,["G3778"]],[22,24,["G3361"]],[24,26,["G599"]]]},{"k":26561,"v":[[0,1,["G2424"]],[1,2,["G3767"]],[2,3,["G3825"]],[3,4,["G1690"]],[4,5,["G1722"]],[5,6,["G1438"]],[6,7,["G2064"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G3419"]],[10,11,["(G1161)"]],[11,12,["G2258"]],[12,14,["G4693"]],[14,15,["G2532"]],[15,17,["G3037"]],[17,18,["G1945"]],[18,19,["G1909"]],[19,20,["G846"]]]},{"k":26562,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,5,["G142"]],[5,6,["G3588"]],[6,7,["G3037"]],[7,8,["G3136"]],[8,9,["G3588"]],[9,10,["G79"]],[10,15,["G2348"]],[15,16,["G3004"]],[16,18,["G846"]],[18,19,["G2962"]],[19,22,["G2235"]],[22,24,["G3605"]],[24,25,["G1063"]],[25,28,["G2076"]],[28,31,["G5066"]]]},{"k":26563,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G2036"]],[5,7,["G3756"]],[7,9,["G4671"]],[9,10,["G3754"]],[10,11,["G1437"]],[11,14,["G4100"]],[14,17,["G3700"]],[17,18,["G3588"]],[18,19,["G1391"]],[19,21,["G2316"]]]},{"k":26564,"v":[[0,1,["G3767"]],[1,4,["G142"]],[4,5,["G3588"]],[5,6,["G3037"]],[6,10,["G3757"]],[10,11,["G3588"]],[11,12,["G2348"]],[12,13,["G2258"]],[13,14,["G2749"]],[14,15,["G1161"]],[15,16,["G2424"]],[16,17,["G142"]],[17,18,["G507"]],[18,20,["G3788"]],[20,21,["G2532"]],[21,22,["G2036"]],[22,23,["G3962"]],[23,25,["G2168"]],[25,26,["G4671"]],[26,27,["G3754"]],[27,30,["G191"]],[30,31,["G3450"]]]},{"k":26565,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G1492"]],[3,4,["G3754"]],[4,6,["G191"]],[6,7,["G3450"]],[7,8,["G3842"]],[8,9,["G235"]],[9,10,["G1223"]],[10,12,["G3588"]],[12,13,["G3793"]],[13,16,["G4026"]],[16,18,["G2036"]],[18,20,["G2443"]],[20,23,["G4100"]],[23,24,["G3754"]],[24,25,["G4771"]],[25,27,["G649"]],[27,28,["G3165"]]]},{"k":26566,"v":[[0,1,["G2532"]],[1,4,["G5023"]],[4,6,["G2036"]],[6,8,["G2905"]],[8,11,["G3173"]],[11,12,["G5456"]],[12,13,["G2976"]],[13,14,["G1204"]],[14,15,["G1854"]]]},{"k":26567,"v":[[0,1,["G2532"]],[1,5,["G2348"]],[5,7,["G1831"]],[7,8,["G1210"]],[8,9,["G5495"]],[9,10,["G2532"]],[10,11,["G4228"]],[11,13,["G2750"]],[13,14,["G2532"]],[14,15,["G846"]],[15,16,["G3799"]],[16,19,["G4019"]],[19,22,["G4676"]],[22,23,["G2424"]],[23,24,["G3004"]],[24,26,["G846"]],[26,27,["G3089"]],[27,28,["G846"]],[28,29,["G2532"]],[29,30,["G863"]],[30,32,["G5217"]]]},{"k":26568,"v":[[0,1,["G3767"]],[1,2,["G4183"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G2453"]],[5,7,["G2064"]],[7,8,["G4314"]],[8,9,["G3137"]],[9,10,["G2532"]],[10,12,["G2300"]],[12,15,["G3739"]],[15,16,["G2424"]],[16,17,["G4160"]],[17,18,["G4100"]],[18,19,["G1519"]],[19,20,["G846"]]]},{"k":26569,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G1537"]],[3,4,["G846"]],[4,7,["G565"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,10,["G5330"]],[10,11,["G2532"]],[11,12,["G2036"]],[12,13,["G846"]],[13,15,["G3739"]],[15,16,["G2424"]],[16,18,["G4160"]]]},{"k":26570,"v":[[0,1,["G3767"]],[1,2,["G4863"]],[2,3,["G3588"]],[3,5,["G749"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G5330"]],[8,10,["G4892"]],[10,11,["G2532"]],[11,12,["G3004"]],[12,13,["G5101"]],[13,14,["G4160"]],[14,16,["G3754"]],[16,17,["G3778"]],[17,18,["G444"]],[18,19,["G4160"]],[19,20,["G4183"]],[20,21,["G4592"]]]},{"k":26571,"v":[[0,1,["G1437"]],[1,6,["G863","G846","G3779"]],[6,7,["G3956"]],[7,10,["G4100"]],[10,11,["G1519"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G4514"]],[15,17,["G2064"]],[17,18,["G2532"]],[18,20,["G142"]],[20,21,["G2532"]],[21,22,["G2257"]],[22,23,["G5117"]],[23,24,["G2532"]],[24,25,["G1484"]]]},{"k":26572,"v":[[0,1,["G1161","(G5100)"]],[1,2,["G1520"]],[2,3,["G1537"]],[3,4,["G846"]],[4,6,["G2533"]],[6,7,["G5607"]],[7,10,["G749"]],[10,12,["G1565"]],[12,13,["G1763"]],[13,14,["G2036"]],[14,16,["G846"]],[16,17,["G5210"]],[17,18,["G1492","(G3756)"]],[18,21,["G3762"]]]},{"k":26573,"v":[[0,1,["G3761"]],[1,2,["G1260"]],[2,3,["G3754"]],[3,6,["G4851"]],[6,8,["G2254"]],[8,9,["G2443"]],[9,10,["G1520"]],[10,11,["G444"]],[11,13,["G599"]],[13,14,["G5228"]],[14,15,["G3588"]],[15,16,["G2992"]],[16,17,["G2532"]],[17,19,["G3588"]],[19,20,["G3650"]],[20,21,["G1484"]],[21,22,["G622"]],[22,23,["G3361"]]]},{"k":26574,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,3,["G2036"]],[3,5,["G3756"]],[5,6,["G575"]],[6,7,["G1438"]],[7,8,["G235"]],[8,9,["G5607"]],[9,11,["G749"]],[11,12,["G1565"]],[12,13,["G1763"]],[13,15,["G4395"]],[15,16,["G3754"]],[16,17,["G2424"]],[17,18,["G3195"]],[18,19,["G599"]],[19,20,["G5228"]],[20,22,["G1484"]]]},{"k":26575,"v":[[0,1,["G2532"]],[1,2,["G3756"]],[2,3,["G5228"]],[3,5,["G1484"]],[5,6,["G3440"]],[6,7,["G235"]],[7,8,["G2443"]],[8,9,["G2532"]],[9,13,["G4863"]],[13,14,["G1519"]],[14,15,["G1520"]],[15,16,["G3588"]],[16,17,["G5043"]],[17,19,["G2316"]],[19,23,["G1287"]]]},{"k":26576,"v":[[0,1,["G3767"]],[1,2,["G575"]],[2,3,["G1565"]],[3,4,["G2250"]],[4,9,["G4823"]],[9,11,["G2443"]],[11,15,["G615","G846"]]]},{"k":26577,"v":[[0,1,["G2424"]],[1,2,["G3767"]],[2,3,["G4043"]],[3,4,["G3756"]],[4,5,["G2089"]],[5,6,["G3954"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G2453"]],[9,10,["G235"]],[10,11,["G565"]],[11,12,["G1564"]],[12,13,["G1519"]],[13,15,["G5561"]],[15,17,["G1451"]],[17,18,["G3588"]],[18,19,["G2048"]],[19,20,["G1519"]],[20,22,["G4172"]],[22,23,["G3004"]],[23,24,["G2187"]],[24,26,["G2546"]],[26,27,["G1304"]],[27,28,["G3326"]],[28,29,["G846"]],[29,30,["G3101"]]]},{"k":26578,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,4,["G3957"]],[4,5,["G2258"]],[5,8,["G1451"]],[8,9,["G2532"]],[9,10,["G4183"]],[10,16,["G305","G1537","G3588","G5561"]],[16,17,["G1519"]],[17,18,["G2414"]],[18,19,["G4253"]],[19,20,["G3588"]],[20,21,["G3957"]],[21,22,["G2443"]],[22,23,["G48"]],[23,24,["G1438"]]]},{"k":26579,"v":[[0,1,["G3767"]],[1,2,["G2212"]],[2,5,["G2424"]],[5,6,["G2532"]],[6,7,["G3004"]],[7,8,["G3326"]],[8,9,["G240"]],[9,12,["G2476"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G2411"]],[15,16,["G5101"]],[16,17,["G1380"]],[17,18,["G5213"]],[18,19,["G3754"]],[19,22,["G3364"]],[22,23,["G2064"]],[23,24,["G1519"]],[24,25,["G3588"]],[25,26,["G1859"]]]},{"k":26580,"v":[[0,1,["G1161"]],[1,2,["G2532"]],[2,3,["G3588"]],[3,5,["G749"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G5330"]],[8,10,["G1325"]],[10,12,["G1785"]],[12,13,["G2443"]],[13,14,["G1437"]],[14,16,["G5100"]],[16,17,["G1097"]],[17,18,["G4226"]],[18,20,["G2076"]],[20,23,["G3377"]],[23,25,["G3704"]],[25,28,["G4084"]],[28,29,["G846"]]]},{"k":26581,"v":[[0,1,["G3767"]],[1,2,["G2424"]],[2,3,["G1803"]],[3,4,["G2250"]],[4,5,["G4253"]],[5,6,["G3588"]],[6,7,["G3957"]],[7,8,["G2064"]],[8,9,["G1519"]],[9,10,["G963"]],[10,11,["G3699"]],[11,12,["G2976"]],[12,13,["G2258"]],[13,17,["G2348"]],[17,18,["G3739"]],[18,20,["G1453"]],[20,21,["G1537"]],[21,23,["G3498"]]]},{"k":26582,"v":[[0,0,["(G3767)"]],[0,1,["G1563"]],[1,3,["G4160"]],[3,4,["G4160"]],[4,6,["G1173"]],[6,7,["G2532"]],[7,8,["G3136"]],[8,9,["G1247"]],[9,10,["G1161"]],[10,11,["G2976"]],[11,12,["G2258"]],[12,13,["G1520"]],[13,21,["G4873"]],[21,22,["G846"]]]},{"k":26583,"v":[[0,1,["G3767"]],[1,2,["G2983"]],[2,3,["G3137"]],[3,5,["G3046"]],[5,7,["G3464"]],[7,9,["G4101","G3487"]],[9,11,["G4186"]],[11,13,["G218"]],[13,14,["G3588"]],[14,15,["G4228"]],[15,17,["G2424"]],[17,18,["G2532"]],[18,19,["G1591"]],[19,20,["G846"]],[20,21,["G4228"]],[21,23,["G848"]],[23,24,["G2359"]],[24,25,["G1161"]],[25,26,["G3588"]],[26,27,["G3614"]],[27,29,["G4137"]],[29,30,["G1537"]],[30,31,["G3588"]],[31,32,["G3744"]],[32,34,["G3588"]],[34,35,["G3464"]]]},{"k":26584,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G1520"]],[3,4,["G1537"]],[4,5,["G846"]],[5,6,["G3101"]],[6,7,["G2455"]],[7,8,["G2469"]],[8,9,["G4613"]],[9,12,["G3195"]],[12,13,["G3860"]],[13,14,["G846"]]]},{"k":26585,"v":[[0,1,["G1302"]],[1,3,["G3756"]],[3,4,["G5124"]],[4,5,["G3464"]],[5,6,["G4097"]],[6,9,["G5145"]],[9,10,["G1220"]],[10,11,["G2532"]],[11,12,["G1325"]],[12,15,["G4434"]]]},{"k":26586,"v":[[0,0,["(G1161)"]],[0,1,["G5124"]],[1,3,["G2036"]],[3,4,["G3756"]],[4,5,["G3754"]],[5,6,["G846"]],[6,7,["G3199"]],[7,8,["G4012"]],[8,9,["G3588"]],[9,10,["G4434"]],[10,11,["G235"]],[11,12,["G3754"]],[12,14,["G2258"]],[14,16,["G2812"]],[16,17,["G2532"]],[17,18,["G2192"]],[18,19,["G3588"]],[19,20,["G1101"]],[20,21,["G2532"]],[21,22,["G941"]],[22,25,["G906"]],[25,26,[]]]},{"k":26587,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,6,["G863","G846"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G2250"]],[9,11,["G3450"]],[11,12,["G1780"]],[12,15,["G5083"]],[15,16,["G846"]]]},{"k":26588,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G4434"]],[3,4,["G3842"]],[4,6,["G2192"]],[6,7,["G3326"]],[7,8,["G1438"]],[8,9,["G1161"]],[9,10,["G1691"]],[10,12,["G2192"]],[12,13,["G3756"]],[13,14,["G3842"]]]},{"k":26589,"v":[[0,1,["G4183"]],[1,2,["G3793"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G2453"]],[5,6,["G3767"]],[6,7,["G1097"]],[7,8,["G3754"]],[8,10,["G2076"]],[10,11,["G1563"]],[11,12,["G2532"]],[12,14,["G2064"]],[14,15,["G3756"]],[15,18,["G1223","G2424"]],[18,19,["G3440"]],[19,20,["G235"]],[20,21,["G2443"]],[21,24,["G1492"]],[24,25,["G2976"]],[25,26,["G2532"]],[26,27,["G3739"]],[27,30,["G1453"]],[30,31,["G1537"]],[31,33,["G3498"]]]},{"k":26590,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G1011"]],[5,6,["G2443"]],[6,13,["G615","G2976","G2532"]]]},{"k":26591,"v":[[0,1,["G3754"]],[1,5,["G1223"]],[5,6,["G846"]],[6,7,["G4183"]],[7,9,["G3588"]],[9,10,["G2453"]],[10,12,["G5217"]],[12,13,["G2532"]],[13,14,["G4100"]],[14,15,["G1519"]],[15,16,["G2424"]]]},{"k":26592,"v":[[0,2,["G3588"]],[2,4,["G1887"]],[4,5,["G4183"]],[5,6,["G3793"]],[6,9,["G2064"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G1859"]],[12,15,["G191"]],[15,16,["G3754"]],[16,17,["G2424"]],[17,19,["G2064"]],[19,20,["G1519"]],[20,21,["G2414"]]]},{"k":26593,"v":[[0,1,["G2983"]],[1,2,["G902"]],[2,5,["G5404"]],[5,6,["G2532"]],[6,8,["G1831"]],[8,9,["G1519"]],[9,10,["G5222"]],[10,11,["G846"]],[11,12,["G2532"]],[12,13,["G2896"]],[13,14,["G5614"]],[14,15,["G2127"]],[15,17,["G3588"]],[17,18,["G935"]],[18,20,["G2474"]],[20,22,["G2064"]],[22,23,["G1722"]],[23,25,["G3686"]],[25,28,["G2962"]]]},{"k":26594,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,6,["G2147"]],[6,9,["G3678"]],[9,10,["G2523"]],[10,11,["G1909","G846"]],[11,12,["G2531"]],[12,14,["G2076"]],[14,15,["G1125"]]]},{"k":26595,"v":[[0,1,["G5399"]],[1,2,["G3361"]],[2,3,["G2364"]],[3,5,["G4622"]],[5,6,["G2400"]],[6,7,["G4675"]],[7,8,["G935"]],[8,9,["G2064"]],[9,10,["G2521"]],[10,11,["G1909"]],[11,13,["G3688"]],[13,14,["G4454"]]]},{"k":26596,"v":[[0,0,["(G1161)"]],[0,2,["G5023"]],[2,3,["G1097"]],[3,4,["G3756"]],[4,5,["G846"]],[5,6,["G3101"]],[6,9,["G4412"]],[9,10,["G235"]],[10,11,["G3753"]],[11,12,["G2424"]],[12,14,["G1392"]],[14,15,["G5119"]],[15,16,["G3415"]],[16,18,["G3754"]],[18,20,["G5023"]],[20,21,["G2258"]],[21,22,["G1125"]],[22,23,["G1909"]],[23,24,["G846"]],[24,25,["G2532"]],[25,29,["G4160"]],[29,31,["G5023"]],[31,33,["G846"]]]},{"k":26597,"v":[[0,1,["G3588"]],[1,2,["G3793"]],[2,3,["G3767"]],[3,5,["G5607"]],[5,6,["G3326"]],[6,7,["G846"]],[7,8,["G3753"]],[8,10,["G5455"]],[10,11,["G2976"]],[11,13,["G1537"]],[13,15,["G3419"]],[15,16,["G2532"]],[16,17,["G1453"]],[17,18,["G846"]],[18,19,["G1537"]],[19,21,["G3498"]],[21,23,["G3140"]]]},{"k":26598,"v":[[0,3,["G1223","G5124"]],[3,4,["G3588"]],[4,5,["G3793"]],[5,6,["G2532"]],[6,7,["G5221"]],[7,8,["G846"]],[8,9,["G3754"]],[9,12,["G191"]],[12,14,["G846"]],[14,16,["G4160"]],[16,17,["G5124"]],[17,18,["G4592"]]]},{"k":26599,"v":[[0,1,["G3588"]],[1,2,["G5330"]],[2,3,["G3767"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G1438"]],[6,7,["G2334"]],[7,9,["G3754"]],[9,11,["G5623","(G3756)"]],[11,12,["G3762"]],[12,13,["G2396"]],[13,14,["G3588"]],[14,15,["G2889"]],[15,17,["G565"]],[17,18,["G3694"]],[18,19,["G846"]]]},{"k":26600,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G5100"]],[4,5,["G1672"]],[5,6,["G1537"]],[6,10,["G305"]],[10,11,["G2443"]],[11,12,["G4352"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G1859"]]]},{"k":26601,"v":[[0,2,["G3778"]],[2,3,["G4334"]],[3,4,["G3767"]],[4,6,["G5376"]],[6,7,["G3588"]],[7,9,["G575"]],[9,10,["G966"]],[10,12,["G1056"]],[12,13,["G2532"]],[13,14,["G2065"]],[14,15,["G846"]],[15,16,["G3004"]],[16,17,["G2962"]],[17,19,["G2309"]],[19,20,["G1492"]],[20,21,["G2424"]]]},{"k":26602,"v":[[0,1,["G5376"]],[1,2,["G2064"]],[2,3,["G2532"]],[3,4,["G3004"]],[4,5,["G406"]],[5,6,["G2532"]],[6,7,["G3825"]],[7,8,["G406"]],[8,9,["G2532"]],[9,10,["G5376"]],[10,11,["G3004"]],[11,12,["G2424"]]]},{"k":26603,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G3588"]],[6,7,["G5610"]],[7,9,["G2064"]],[9,10,["G2443"]],[10,11,["G3588"]],[11,12,["G5207"]],[12,14,["G444"]],[14,17,["G1392"]]]},{"k":26604,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,7,["G3362"]],[7,9,["G2848"]],[9,11,["G4621"]],[11,12,["G4098"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G1093"]],[15,17,["G599"]],[17,18,["G846"]],[18,19,["G3306"]],[19,20,["G3441"]],[20,21,["G1161"]],[21,22,["G1437"]],[22,24,["G599"]],[24,27,["G5342"]],[27,28,["G4183"]],[28,29,["G2590"]]]},{"k":26605,"v":[[0,3,["G5368"]],[3,4,["G848"]],[4,5,["G5590"]],[5,7,["G622"]],[7,8,["G846"]],[8,9,["G2532"]],[9,12,["G3404"]],[12,13,["G848"]],[13,14,["G5590"]],[14,15,["G1722"]],[15,16,["G5129"]],[16,17,["G2889"]],[17,19,["G5442"]],[19,20,["G846"]],[20,21,["G1519"]],[21,22,["G2222"]],[22,23,["G166"]]]},{"k":26606,"v":[[0,1,["G1437"]],[1,3,["G5100"]],[3,4,["G1247"]],[4,5,["G1698"]],[5,8,["G190"]],[8,9,["G1698"]],[9,10,["G2532"]],[10,11,["G3699"]],[11,12,["G1473"]],[12,13,["G1510"]],[13,14,["G1563"]],[14,16,["G2532"]],[16,17,["G1699"]],[17,18,["G1249"]],[18,19,["G2071","(G2532)"]],[19,20,["G1437"]],[20,22,["G5100"]],[22,23,["G1247"]],[23,24,["G1698"]],[24,25,["G846"]],[25,28,["G3962"]],[28,29,["G5091"]]]},{"k":26607,"v":[[0,1,["G3568"]],[1,3,["G3450"]],[3,4,["G5590"]],[4,5,["G5015"]],[5,6,["G2532"]],[6,7,["G5101"]],[7,10,["G2036"]],[10,11,["G3962"]],[11,12,["G4982"]],[12,13,["G3165"]],[13,14,["G1537"]],[14,15,["G5026"]],[15,16,["G5610"]],[16,17,["G235"]],[17,20,["G1223","G5124"]],[20,21,["G2064"]],[21,23,["G1519"]],[23,24,["G5026"]],[24,25,["G5610"]]]},{"k":26608,"v":[[0,1,["G3962"]],[1,2,["G1392"]],[2,3,["G4675"]],[3,4,["G3686"]],[4,5,["G3767"]],[5,6,["G2064"]],[6,9,["G5456"]],[9,10,["G1537"]],[10,11,["G3772"]],[11,15,["G2532"]],[15,16,["G1392"]],[16,18,["G2532"]],[18,20,["G1392"]],[20,22,["G3825"]]]},{"k":26609,"v":[[0,1,["G3588"]],[1,2,["G3793"]],[2,3,["G3767"]],[3,6,["G2476"]],[6,7,["G2532"]],[7,8,["G191"]],[8,10,["G3004"]],[10,13,["G1096","G1027"]],[13,14,["G243"]],[14,15,["G3004"]],[15,17,["G32"]],[17,18,["G2980"]],[18,20,["G846"]]]},{"k":26610,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,5,["G3778"]],[5,6,["G5456"]],[6,7,["G1096"]],[7,8,["G3756"]],[8,9,["G1223"]],[9,11,["G1691"]],[11,12,["G235"]],[12,15,["G1223","G5209"]]]},{"k":26611,"v":[[0,1,["G3568"]],[1,2,["G2076"]],[2,4,["G2920"]],[4,6,["G5127"]],[6,7,["G2889"]],[7,8,["G3568"]],[8,10,["G3588"]],[10,11,["G758"]],[11,13,["G5127"]],[13,14,["G2889"]],[14,16,["G1544"]],[16,17,["G1854"]]]},{"k":26612,"v":[[0,2,["G2504"]],[2,3,["G1437"]],[3,7,["G5312"]],[7,8,["G1537"]],[8,9,["G3588"]],[9,10,["G1093"]],[10,12,["G1670"]],[12,13,["G3956"]],[13,15,["G4314"]],[15,16,["G1683"]]]},{"k":26613,"v":[[0,0,["(G1161)"]],[0,1,["G5124"]],[1,3,["G3004"]],[3,4,["G4591"]],[4,5,["G4169"]],[5,6,["G2288"]],[6,8,["G3195"]],[8,9,["G599"]]]},{"k":26614,"v":[[0,1,["G3588"]],[1,2,["G3793"]],[2,3,["G611"]],[3,4,["G846"]],[4,5,["G2249"]],[5,7,["G191"]],[7,9,["G1537"]],[9,10,["G3588"]],[10,11,["G3551"]],[11,12,["G3754"]],[12,13,["G5547"]],[13,14,["G3306"]],[14,16,["G1519","G165"]],[16,17,["G2532"]],[17,18,["G4459"]],[18,19,["G3004"]],[19,20,["G4771"]],[20,21,["G3588"]],[21,22,["G5207"]],[22,24,["G444"]],[24,25,["G1163"]],[25,28,["G5312"]],[28,29,["G5101"]],[29,30,["G2076"]],[30,31,["G3778"]],[31,32,["G5207"]],[32,34,["G444"]]]},{"k":26615,"v":[[0,1,["G3767"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G2089"]],[6,8,["G3398"]],[8,9,["G5550"]],[9,10,["G2076"]],[10,11,["G3588"]],[11,12,["G5457"]],[12,13,["G3326"]],[13,14,["G5216"]],[14,15,["G4043"]],[15,16,["G2193"]],[16,18,["G2192"]],[18,19,["G3588"]],[19,20,["G5457"]],[20,21,["G3363"]],[21,22,["G4653"]],[22,24,["G2638"]],[24,25,["G5209"]],[25,26,["G2532"]],[26,29,["G4043"]],[29,30,["G1722"]],[30,31,["G4653"]],[31,32,["G1492"]],[32,33,["G3756"]],[33,34,["G4226"]],[34,36,["G5217"]]]},{"k":26616,"v":[[0,1,["G2193"]],[1,3,["G2192"]],[3,4,["G5457"]],[4,5,["G4100"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G5457"]],[8,9,["G2443"]],[9,12,["G1096"]],[12,14,["G5207"]],[14,16,["G5457"]],[16,18,["G5023"]],[18,19,["G2980"]],[19,20,["G2424"]],[20,21,["G2532"]],[21,22,["G565"]],[22,25,["G2928"]],[25,27,["G575"]],[27,28,["G846"]]]},{"k":26617,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G4160"]],[5,7,["G5118"]],[7,8,["G4592"]],[8,9,["G1715"]],[9,10,["G846"]],[10,13,["G4100"]],[13,14,["G3756"]],[14,15,["G1519"]],[15,16,["G846"]]]},{"k":26618,"v":[[0,1,["G2443"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,5,["G2268"]],[5,6,["G3588"]],[6,7,["G4396"]],[7,10,["G4137"]],[10,11,["G3739"]],[11,13,["G2036"]],[13,14,["G2962"]],[14,15,["G5101"]],[15,17,["G4100"]],[17,18,["G2257"]],[18,19,["G189"]],[19,20,["G2532"]],[20,22,["G5101"]],[22,24,["G3588"]],[24,25,["G1023"]],[25,28,["G2962"]],[28,30,["G601"]]]},{"k":26619,"v":[[0,1,["G1223","G5124"]],[1,3,["G1410"]],[3,4,["G3756"]],[4,5,["G4100"]],[5,6,["G3754"]],[6,8,["G2268"]],[8,9,["G2036"]],[9,10,["G3825"]]]},{"k":26620,"v":[[0,3,["G5186"]],[3,4,["G846"]],[4,5,["G3788"]],[5,6,["G2532"]],[6,7,["G4456"]],[7,8,["G846"]],[8,9,["G2588"]],[9,10,["G2443"]],[10,13,["G3361"]],[13,14,["G1492"]],[14,17,["G3788"]],[17,18,["G2532"]],[18,19,["G3539"]],[19,22,["G2588"]],[22,23,["G2532"]],[23,25,["G1994"]],[25,26,["G2532"]],[26,29,["G2390"]],[29,30,["G846"]]]},{"k":26621,"v":[[0,2,["G5023"]],[2,3,["G2036"]],[3,4,["G2268"]],[4,5,["G3753"]],[5,7,["G1492"]],[7,8,["G846"]],[8,9,["G1391"]],[9,10,["G2532"]],[10,11,["G2980"]],[11,12,["G4012"]],[12,13,["G846"]]]},{"k":26622,"v":[[0,1,["G3676","(G3305","G2532)"]],[1,2,["G1537"]],[2,3,["G3588"]],[3,5,["G758"]],[5,6,["G2532"]],[6,7,["G4183"]],[7,8,["G4100"]],[8,9,["G1519"]],[9,10,["G846"]],[10,11,["G235"]],[11,12,["G1223"]],[12,14,["G3588"]],[14,15,["G5330"]],[15,18,["G3756"]],[18,19,["G3670"]],[19,21,["G3363"]],[21,24,["G1096"]],[24,29,["G656"]]]},{"k":26623,"v":[[0,1,["G1063"]],[1,3,["G25"]],[3,4,["G3588"]],[4,5,["G1391"]],[5,7,["G444"]],[7,8,["G3123"]],[8,9,["G2260"]],[9,10,["G3588"]],[10,11,["G1391"]],[11,13,["G2316"]]]},{"k":26624,"v":[[0,0,["(G1161)"]],[0,1,["G2424"]],[1,2,["G2896"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,7,["G4100"]],[7,8,["G1519"]],[8,9,["G1691"]],[9,10,["G4100"]],[10,11,["G3756"]],[11,12,["G1519"]],[12,13,["G1691"]],[13,14,["G235"]],[14,15,["G1519"]],[15,18,["G3992"]],[18,19,["G3165"]]]},{"k":26625,"v":[[0,1,["G2532"]],[1,4,["G2334"]],[4,5,["G1691"]],[5,6,["G2334"]],[6,9,["G3992"]],[9,10,["G3165"]]]},{"k":26626,"v":[[0,1,["G1473"]],[1,3,["G2064"]],[3,5,["G5457"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G2889"]],[8,9,["G2443"]],[9,10,["G3956"]],[10,11,["G4100"]],[11,12,["G1519"]],[12,13,["G1691"]],[13,15,["G3361"]],[15,16,["G3306"]],[16,17,["G1722"]],[17,18,["G4653"]]]},{"k":26627,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G5100"]],[4,5,["G191"]],[5,6,["G3450"]],[6,7,["G4487"]],[7,8,["G2532"]],[8,9,["G4100"]],[9,10,["G3361"]],[10,11,["G1473"]],[11,12,["G2919"]],[12,13,["G846"]],[13,14,["G3756"]],[14,15,["G1063"]],[15,17,["G2064"]],[17,18,["G3756"]],[18,19,["G2443"]],[19,20,["G2919"]],[20,21,["G3588"]],[21,22,["G2889"]],[22,23,["G235"]],[23,24,["G2443"]],[24,25,["G4982"]],[25,26,["G3588"]],[26,27,["G2889"]]]},{"k":26628,"v":[[0,3,["G114"]],[3,4,["G1691"]],[4,5,["G2532"]],[5,6,["G2983"]],[6,7,["G3361"]],[7,8,["G3450"]],[8,9,["G4487"]],[9,10,["G2192"]],[10,13,["G2919"]],[13,14,["G846"]],[14,15,["G3588"]],[15,16,["G3056"]],[16,17,["G3739"]],[17,20,["G2980"]],[20,22,["G1565"]],[22,24,["G2919"]],[24,25,["G846"]],[25,26,["G1722"]],[26,27,["G3588"]],[27,28,["G2078"]],[28,29,["G2250"]]]},{"k":26629,"v":[[0,1,["G3754"]],[1,2,["G1473"]],[2,4,["G3756"]],[4,5,["G2980"]],[5,6,["G1537"]],[6,7,["G1683"]],[7,8,["G235"]],[8,10,["G3962"]],[10,12,["G3992"]],[12,13,["G3165"]],[13,14,["G846"]],[14,15,["G1325"]],[15,16,["G3427"]],[16,18,["G1785"]],[18,19,["G5101"]],[19,22,["G2036"]],[22,23,["G2532"]],[23,24,["G5101"]],[24,27,["G2980"]]]},{"k":26630,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G846"]],[5,6,["G1785"]],[6,7,["G2076"]],[7,8,["G2222"]],[8,9,["G166"]],[9,10,["G3739"]],[10,11,["G1473"]],[11,12,["G2980"]],[12,13,["G3767"]],[13,15,["G2531"]],[15,16,["G3588"]],[16,17,["G3962"]],[17,18,["G2046"]],[18,20,["G3427"]],[20,21,["G3779"]],[21,23,["G2980"]]]},{"k":26631,"v":[[0,1,["G1161"]],[1,2,["G4253"]],[2,3,["G3588"]],[3,4,["G1859"]],[4,6,["G3588"]],[6,7,["G3957"]],[7,9,["G2424"]],[9,10,["G1492"]],[10,11,["G3754"]],[11,12,["G846"]],[12,13,["G5610"]],[13,15,["G2064"]],[15,16,["G2443"]],[16,19,["G3327"]],[19,21,["G1537"]],[21,22,["G5127"]],[22,23,["G2889"]],[23,24,["G4314"]],[24,25,["G3588"]],[25,26,["G3962"]],[26,28,["G25"]],[28,30,["G2398"]],[30,31,["G3588"]],[31,33,["G1722"]],[33,34,["G3588"]],[34,35,["G2889"]],[35,37,["G25"]],[37,38,["G846"]],[38,39,["G1519"]],[39,41,["G5056"]]]},{"k":26632,"v":[[0,1,["G2532"]],[1,2,["G1173"]],[2,4,["G1096"]],[4,5,["G3588"]],[5,6,["G1228"]],[6,8,["G2235"]],[8,9,["G906"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G2588"]],[12,14,["G2455"]],[14,15,["G2469"]],[15,16,["G4613"]],[16,18,["G2443"]],[18,19,["G3860"]],[19,20,["G846"]]]},{"k":26633,"v":[[0,1,["G2424"]],[1,2,["G1492"]],[2,3,["G3754"]],[3,4,["G3588"]],[4,5,["G3962"]],[5,7,["G1325"]],[7,9,["G3956"]],[9,10,["G1519"]],[10,11,["G846"]],[11,12,["G5495"]],[12,13,["G2532"]],[13,14,["G3754"]],[14,17,["G1831"]],[17,18,["G575"]],[18,19,["G2316"]],[19,20,["G2532"]],[20,21,["G5217"]],[21,22,["G4314"]],[22,23,["G2316"]]]},{"k":26634,"v":[[0,2,["G1453"]],[2,3,["G1537"]],[3,4,["G1173"]],[4,5,["G2532"]],[5,7,["G5087"]],[7,9,["G2440"]],[9,10,["G2532"]],[10,11,["G2983"]],[11,13,["G3012"]],[13,15,["G1241"]],[15,16,["G1438"]]]},{"k":26635,"v":[[0,2,["G1534"]],[2,4,["G906"]],[4,5,["G5204"]],[5,6,["G1519"]],[6,8,["G3537"]],[8,9,["G2532"]],[9,10,["G756"]],[10,12,["G3538"]],[12,13,["G3588"]],[13,14,["G3101"]],[14,15,["G4228"]],[15,16,["G2532"]],[16,18,["G1591"]],[18,21,["G3588"]],[21,22,["G3012"]],[22,23,["G3739"]],[23,25,["G2258"]],[25,26,["G1241"]]]},{"k":26636,"v":[[0,1,["G3767"]],[1,2,["G2064"]],[2,4,["G4314"]],[4,5,["G4613"]],[5,6,["G4074"]],[6,7,["G2532"]],[7,8,["G1565"]],[8,9,["G3004"]],[9,11,["G846"]],[11,12,["G2962"]],[12,14,["G4771"]],[14,15,["G3538"]],[15,16,["G3450"]],[16,17,["G4228"]]]},{"k":26637,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G3739"]],[7,8,["G1473"]],[8,9,["G4160"]],[9,10,["G4771"]],[10,11,["G1492"]],[11,12,["G3756"]],[12,13,["G737"]],[13,14,["G1161"]],[14,17,["G1097"]],[17,18,["G3326","G5023"]]]},{"k":26638,"v":[[0,1,["G4074"]],[1,2,["G3004"]],[2,4,["G846"]],[4,7,["G3364","G1519","G165"]],[7,8,["G3538"]],[8,9,["G3450"]],[9,10,["G4228"]],[10,11,["G2424"]],[11,12,["G611"]],[12,13,["G846"]],[13,14,["G3362"]],[14,16,["G3538"]],[16,17,["G4571"]],[17,18,["G3756"]],[18,20,["G2192"]],[20,21,["G3756"]],[21,22,["G3313"]],[22,23,["G3326"]],[23,24,["G1700"]]]},{"k":26639,"v":[[0,1,["G4613"]],[1,2,["G4074"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G2962"]],[6,7,["G3361"]],[7,8,["G3450"]],[8,9,["G4228"]],[9,10,["G3440"]],[10,11,["G235"]],[11,12,["G2532"]],[12,14,["G5495"]],[14,15,["G2532"]],[15,17,["G2776"]]]},{"k":26640,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,8,["G3068"]],[8,9,["G2192","G5532"]],[9,10,["G3756"]],[10,11,["G2228"]],[11,13,["G3538"]],[13,15,["G4228"]],[15,16,["G235"]],[16,17,["G2076"]],[17,18,["G2513"]],[18,20,["G3650"]],[20,21,["G2532"]],[21,22,["G5210"]],[22,23,["G2075"]],[23,24,["G2513"]],[24,25,["G235"]],[25,26,["G3780"]],[26,27,["G3956"]]]},{"k":26641,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,6,["G3860"]],[6,7,["G846"]],[7,8,["G1223","G5124"]],[8,9,["G2036"]],[9,12,["G2075"]],[12,13,["G3780"]],[13,14,["G3956"]],[14,15,["G2513"]]]},{"k":26642,"v":[[0,1,["G3767"]],[1,2,["G3753"]],[2,5,["G3538"]],[5,6,["G846"]],[6,7,["G4228"]],[7,8,["G2532"]],[8,10,["G2983"]],[10,11,["G848"]],[11,12,["G2440"]],[12,16,["G377"]],[16,17,["G3825"]],[17,19,["G2036"]],[19,21,["G846"]],[21,22,["G1097"]],[22,24,["G5101"]],[24,27,["G4160"]],[27,29,["G5213"]]]},{"k":26643,"v":[[0,1,["G5210"]],[1,2,["G5455"]],[2,3,["G3165"]],[3,4,["G1320"]],[4,5,["G2532"]],[5,6,["G2962"]],[6,7,["G2532"]],[7,9,["G3004"]],[9,10,["G2573"]],[10,11,["G1063"]],[11,14,["G1510"]]]},{"k":26644,"v":[[0,1,["G1487"]],[1,2,["G1473"]],[2,3,["G3767"]],[3,5,["G2962"]],[5,6,["G2532"]],[6,7,["G1320"]],[7,9,["G3538"]],[9,10,["G5216"]],[10,11,["G4228"]],[11,12,["G5210"]],[12,13,["G2532"]],[13,14,["G3784"]],[14,16,["G3538"]],[16,18,["G240"]],[18,19,["G4228"]]]},{"k":26645,"v":[[0,1,["G1063"]],[1,4,["G1325"]],[4,5,["G5213"]],[5,7,["G5262"]],[7,8,["G2443"]],[8,9,["G5210"]],[9,10,["(G2532)"]],[10,11,["G4160"]],[11,12,["G2531"]],[12,13,["G1473"]],[13,15,["G4160"]],[15,17,["G5213"]]]},{"k":26646,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,8,["G1401"]],[8,9,["G2076"]],[9,10,["G3756"]],[10,11,["G3187"]],[11,13,["G848"]],[13,14,["G2962"]],[14,15,["G3761"]],[15,19,["G652"]],[19,20,["G3187"]],[20,24,["G3992"]],[24,25,["G846"]]]},{"k":26647,"v":[[0,1,["G1487"]],[1,3,["G1492"]],[3,5,["G5023"]],[5,6,["G3107"]],[6,7,["G2075"]],[7,9,["G1437"]],[9,11,["G4160"]],[11,12,["G846"]]]},{"k":26648,"v":[[0,2,["G3004"]],[2,3,["G3756"]],[3,4,["G4012"]],[4,5,["G5216"]],[5,6,["G3956"]],[6,7,["G1473"]],[7,8,["G1492"]],[8,9,["G3739"]],[9,12,["G1586"]],[12,13,["G235"]],[13,14,["G2443"]],[14,15,["G3588"]],[15,16,["G1124"]],[16,19,["G4137"]],[19,22,["G5176"]],[22,23,["G740"]],[23,24,["G3326"]],[24,25,["G1700"]],[25,28,["G1869"]],[28,29,["G848"]],[29,30,["G4418"]],[30,31,["G1909"]],[31,32,["G1691"]]]},{"k":26649,"v":[[0,1,["G575","G737"]],[1,3,["G3004"]],[3,4,["G5213"]],[4,5,["G4253"]],[5,7,["G1096"]],[7,8,["G2443"]],[8,9,["G3752"]],[9,14,["G1096"]],[14,17,["G4100"]],[17,18,["G3754"]],[18,19,["G1473"]],[19,20,["G1510"]],[20,21,[]]]},{"k":26650,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,9,["G2983"]],[9,10,["G5100","G1437"]],[10,12,["G3992"]],[12,13,["G2983"]],[13,14,["G1691"]],[14,15,["G1161"]],[15,18,["G2983"]],[18,19,["G1691"]],[19,20,["G2983"]],[20,23,["G3992"]],[23,24,["G3165"]]]},{"k":26651,"v":[[0,2,["G2424"]],[2,4,["G5023"]],[4,5,["G2036"]],[5,8,["G5015"]],[8,10,["G4151"]],[10,11,["G2532"]],[11,12,["G3140"]],[12,13,["G2532"]],[13,14,["G2036"]],[14,15,["G281"]],[15,16,["G281"]],[16,18,["G3004"]],[18,20,["G5213"]],[20,21,["G3754"]],[21,22,["G1520"]],[22,23,["G1537"]],[23,24,["G5216"]],[24,26,["G3860"]],[26,27,["G3165"]]]},{"k":26652,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,4,["G991"]],[4,7,["G240","G1519"]],[7,8,["G639"]],[8,9,["G4012"]],[9,10,["G5101"]],[10,12,["G3004"]]]},{"k":26653,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G345"]],[4,5,["G1722"]],[5,6,["G2424"]],[6,7,["G2859"]],[7,8,["G1520"]],[8,9,["G1537"]],[9,10,["G846"]],[10,11,["G3101"]],[11,12,["G3739"]],[12,13,["G2424"]],[13,14,["G25"]]]},{"k":26654,"v":[[0,1,["G4613"]],[1,2,["G4074"]],[2,3,["G3767"]],[3,4,["G3506"]],[4,6,["G5129"]],[6,10,["G4441"]],[10,11,["G5101"]],[11,14,["G1498","G302"]],[14,15,["G4012"]],[15,16,["G3739"]],[16,18,["G3004"]]]},{"k":26655,"v":[[0,1,["G1565"]],[1,2,["G1161"]],[2,3,["G1968"]],[3,4,["G1909"]],[4,5,["G2424"]],[5,6,["G4738"]],[6,7,["G3004"]],[7,9,["G846"]],[9,10,["G2962"]],[10,11,["G5101"]],[11,12,["G2076"]],[12,13,[]]]},{"k":26656,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G1565"]],[3,5,["G2076"]],[5,7,["G3739"]],[7,8,["G1473"]],[8,10,["G1929"]],[10,12,["G5596"]],[12,16,["G911"]],[16,18,["G2532"]],[18,22,["G1686"]],[22,23,["G3588"]],[23,24,["G5596"]],[24,26,["G1325"]],[26,29,["G2455"]],[29,30,["G2469"]],[30,34,["G4613"]]]},{"k":26657,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,3,["G3588"]],[3,4,["G5596"]],[4,5,["G4567"]],[5,6,["G1525"]],[6,7,["G1519"]],[7,8,["G1565"]],[8,9,["G3767"]],[9,10,["G3004"]],[10,11,["G2424"]],[11,13,["G846"]],[13,14,["G3739"]],[14,16,["G4160"]],[16,17,["G4160"]],[17,18,["G5032"]]]},{"k":26658,"v":[[0,1,["G1161"]],[1,3,["G3762"]],[3,6,["G345"]],[6,7,["G1097"]],[7,8,["G4314"]],[8,10,["G5101"]],[10,12,["G2036"]],[12,13,["G5124"]],[13,15,["G846"]]]},{"k":26659,"v":[[0,1,["G1063"]],[1,2,["G5100"]],[2,5,["G1380"]],[5,6,["G1893"]],[6,7,["G2455"]],[7,8,["G2192"]],[8,9,["G3588"]],[9,10,["G1101"]],[10,11,["G3754"]],[11,12,["G2424"]],[12,14,["G3004"]],[14,16,["G846"]],[16,17,["G59"]],[17,20,["G3739"]],[20,22,["G2192"]],[22,23,["G5532"]],[23,25,["G1519"]],[25,26,["G3588"]],[26,27,["G1859"]],[27,28,["G2228"]],[28,29,["G2443"]],[29,32,["G1325"]],[32,33,["G5100"]],[33,35,["G3588"]],[35,36,["G4434"]]]},{"k":26660,"v":[[0,1,["G1565"]],[1,2,["G3767"]],[2,4,["G2983"]],[4,5,["G3588"]],[5,6,["G5596"]],[6,9,["G1831","G2112"]],[9,10,["G1161"]],[10,12,["G2258"]],[12,13,["G3571"]]]},{"k":26661,"v":[[0,1,["G3753"]],[1,6,["G1831"]],[6,7,["G2424"]],[7,8,["G3004"]],[8,9,["G3568"]],[9,11,["G3588"]],[11,12,["G5207"]],[12,14,["G444"]],[14,15,["G1392"]],[15,16,["G2532"]],[16,17,["G2316"]],[17,19,["G1392"]],[19,20,["G1722"]],[20,21,["G846"]]]},{"k":26662,"v":[[0,1,["G1487"]],[1,2,["G2316"]],[2,4,["G1392"]],[4,5,["G1722"]],[5,6,["G846"]],[6,7,["G2316"]],[7,9,["G2532"]],[9,10,["G1392"]],[10,11,["G846"]],[11,12,["G1722"]],[12,13,["G1438"]],[13,14,["G2532"]],[14,16,["G2117"]],[16,17,["G1392"]],[17,18,["G846"]]]},{"k":26663,"v":[[0,2,["G5040"]],[2,3,["G2089"]],[3,6,["G3397"]],[6,8,["G1510"]],[8,9,["G3326"]],[9,10,["G5216"]],[10,13,["G2212"]],[13,14,["G3165"]],[14,15,["G2532"]],[15,16,["G2531"]],[16,18,["G2036"]],[18,20,["G3588"]],[20,21,["G2453"]],[21,22,["G3699"]],[22,23,["G1473"]],[23,24,["G5217"]],[24,25,["G5210"]],[25,26,["G1410","G3756"]],[26,27,["G2064"]],[27,28,["G2532"]],[28,29,["G737"]],[29,31,["G3004"]],[31,33,["G5213"]]]},{"k":26664,"v":[[0,2,["G2537"]],[2,3,["G1785"]],[3,5,["G1325"]],[5,7,["G5213"]],[7,8,["G2443"]],[8,10,["G25"]],[10,12,["G240"]],[12,13,["G2531"]],[13,16,["G25"]],[16,17,["G5209"]],[17,18,["G2443"]],[18,19,["G5210"]],[19,20,["G2532"]],[20,21,["G25"]],[21,23,["G240"]]]},{"k":26665,"v":[[0,1,["G1722"]],[1,2,["G5129"]],[2,4,["G3956"]],[4,6,["G1097"]],[6,7,["G3754"]],[7,9,["G2075"]],[9,10,["G1698"]],[10,11,["G3101"]],[11,12,["G1437"]],[12,14,["G2192"]],[14,15,["G26"]],[15,18,["G240","G1722"]]]},{"k":26666,"v":[[0,1,["G4613"]],[1,2,["G4074"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G2962"]],[6,7,["G4226"]],[7,8,["G5217"]],[8,10,["G2424"]],[10,11,["G611"]],[11,12,["G846"]],[12,13,["G3699"]],[13,15,["G5217"]],[15,17,["G1410"]],[17,18,["G3756"]],[18,19,["G190"]],[19,20,["G3427"]],[20,21,["G3568"]],[21,22,["G1161"]],[22,25,["G190"]],[25,26,["G3427"]],[26,27,["G5305"]]]},{"k":26667,"v":[[0,1,["G4074"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G2962"]],[5,6,["G1302"]],[6,7,["G1410","G3756"]],[7,9,["G190"]],[9,10,["G4671"]],[10,11,["G737"]],[11,15,["G5087"]],[15,16,["G3450"]],[16,17,["G5590"]],[17,20,["G5228","G4675"]]]},{"k":26668,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,7,["G5087"]],[7,8,["G4675"]],[8,9,["G5590"]],[9,12,["G5228","G1700"]],[12,13,["G281"]],[13,14,["G281"]],[14,16,["G3004"]],[16,18,["G4671"]],[18,20,["G220"]],[20,22,["G3364"]],[22,23,["G5455"]],[23,24,["G2193","G3757"]],[24,27,["G533"]],[27,28,["G3165"]],[28,29,["G5151"]]]},{"k":26669,"v":[[0,2,["G3361"]],[2,3,["G5216"]],[3,4,["G2588"]],[4,6,["G5015"]],[6,8,["G4100"]],[8,9,["G1519"]],[9,10,["G2316"]],[10,11,["G4100"]],[11,12,["G2532"]],[12,13,["G1519"]],[13,14,["G1691"]]]},{"k":26670,"v":[[0,1,["G1722"]],[1,2,["G3450"]],[2,3,["G3962"]],[3,4,["G3614"]],[4,5,["G1526"]],[5,6,["G4183"]],[6,7,["G3438"]],[7,11,["G1490"]],[11,16,["G2036","G302"]],[16,17,["G5213"]],[17,19,["G4198"]],[19,21,["G2090"]],[21,23,["G5117"]],[23,25,["G5213"]]]},{"k":26671,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G4198"]],[4,5,["G2532"]],[5,6,["G2090"]],[6,8,["G5117"]],[8,10,["G5213"]],[10,13,["G2064"]],[13,14,["G3825"]],[14,15,["G2532"]],[15,16,["G3880"]],[16,17,["G5209"]],[17,18,["G4314"]],[18,19,["G1683"]],[19,20,["G2443"]],[20,21,["G3699"]],[21,22,["G1473"]],[22,23,["G1510"]],[23,25,["G5210"]],[25,27,["G5600"]],[27,28,["G2532"]]]},{"k":26672,"v":[[0,1,["G2532"]],[1,2,["G3699"]],[2,3,["G1473"]],[3,4,["G5217"]],[4,6,["G1492"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G3598"]],[9,11,["G1492"]]]},{"k":26673,"v":[[0,1,["G2381"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G2962"]],[5,7,["G1492"]],[7,8,["G3756"]],[8,9,["G4226"]],[9,11,["G5217"]],[11,12,["G2532"]],[12,13,["G4459"]],[13,14,["G1410"]],[14,16,["G1492"]],[16,17,["G3588"]],[17,18,["G3598"]]]},{"k":26674,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1473"]],[5,6,["G1510"]],[6,7,["G3588"]],[7,8,["G3598"]],[8,9,["G3588"]],[9,10,["G225"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G2222"]],[13,15,["G3762"]],[15,16,["G2064"]],[16,17,["G4314"]],[17,18,["G3588"]],[18,19,["G3962"]],[19,20,["G1508"]],[20,21,["G1223"]],[21,22,["G1700"]]]},{"k":26675,"v":[[0,1,["G1487"]],[1,4,["G1097"]],[4,5,["G3165"]],[5,9,["G1097","G302"]],[9,10,["G3450"]],[10,11,["G3962"]],[11,12,["G2532"]],[12,13,["G2532"]],[13,14,["G575"]],[14,15,["G737"]],[15,17,["G1097"]],[17,18,["G846"]],[18,19,["G2532"]],[19,21,["G3708"]],[21,22,["G846"]]]},{"k":26676,"v":[[0,1,["G5376"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G2962"]],[5,6,["G1166"]],[6,7,["G2254"]],[7,8,["G3588"]],[8,9,["G3962"]],[9,10,["G2532"]],[10,12,["G714"]],[12,13,["G2254"]]]},{"k":26677,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,7,["G1510"]],[7,9,["G5118"]],[9,10,["G5550"]],[10,11,["G3326"]],[11,12,["G5216"]],[12,13,["G2532"]],[13,17,["G3756"]],[17,18,["G1097"]],[18,19,["G3165"]],[19,20,["G5376"]],[20,24,["G3708"]],[24,25,["G1691"]],[25,27,["G3708"]],[27,28,["G3588"]],[28,29,["G3962"]],[29,30,["G2532"]],[30,31,["G4459"]],[31,32,["G3004"]],[32,33,["G4771"]],[33,35,["G1166"]],[35,36,["G2254"]],[36,37,["G3588"]],[37,38,["G3962"]]]},{"k":26678,"v":[[0,1,["G4100"]],[1,3,["G3756"]],[3,4,["G3754"]],[4,5,["G1473"]],[5,7,["G1722"]],[7,8,["G3588"]],[8,9,["G3962"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G3962"]],[12,13,["G1722"]],[13,14,["G1698"]],[14,15,["G3588"]],[15,16,["G4487"]],[16,17,["G3739"]],[17,18,["G1473"]],[18,19,["G2980"]],[19,21,["G5213"]],[21,23,["G2980"]],[23,24,["G3756"]],[24,25,["G575"]],[25,26,["G1683"]],[26,27,["G1161"]],[27,28,["G3588"]],[28,29,["G3962"]],[29,31,["G3306"]],[31,32,["G1722"]],[32,33,["G1698"]],[33,34,["G846"]],[34,35,["G4160"]],[35,36,["G3588"]],[36,37,["G2041"]]]},{"k":26679,"v":[[0,1,["G4100"]],[1,2,["G3427"]],[2,3,["G3754"]],[3,4,["G1473"]],[4,6,["G1722"]],[6,7,["G3588"]],[7,8,["G3962"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G3962"]],[11,12,["G1722"]],[12,13,["G1698"]],[13,15,["G1490"]],[15,16,["G4100"]],[16,17,["G3427"]],[17,22,["G1223","G3588","G846","G2041"]]]},{"k":26680,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,9,["G4100"]],[9,10,["G1519"]],[10,11,["G1691"]],[11,12,["G3588"]],[12,13,["G2041"]],[13,14,["G3739"]],[14,15,["G1473"]],[15,16,["G4160"]],[16,20,["G2548","G4160"]],[20,21,["G2532"]],[21,22,["G3187"]],[22,25,["G5130"]],[25,28,["G4160"]],[28,29,["G3754"]],[29,30,["G1473"]],[30,31,["G4198"]],[31,32,["G4314"]],[32,33,["G3450"]],[33,34,["G3962"]]]},{"k":26681,"v":[[0,1,["G2532"]],[1,2,["G3748","G302"]],[2,5,["G154"]],[5,6,["G1722"]],[6,7,["G3450"]],[7,8,["G3686"]],[8,9,["G5124"]],[9,12,["G4160"]],[12,13,["G2443"]],[13,14,["G3588"]],[14,15,["G3962"]],[15,18,["G1392"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G5207"]]]},{"k":26682,"v":[[0,1,["G1437"]],[1,4,["G154"]],[4,6,["G5100"]],[6,7,["G1722"]],[7,8,["G3450"]],[8,9,["G3686"]],[9,10,["G1473"]],[10,12,["G4160"]],[12,13,[]]]},{"k":26683,"v":[[0,1,["G1437"]],[1,3,["G25"]],[3,4,["G3165"]],[4,5,["G5083"]],[5,6,["G1699"]],[6,7,["G1785"]]]},{"k":26684,"v":[[0,1,["G2532"]],[1,2,["G1473"]],[2,4,["G2065"]],[4,5,["G3588"]],[5,6,["G3962"]],[6,7,["G2532"]],[7,10,["G1325"]],[10,11,["G5213"]],[11,12,["G243"]],[12,13,["G3875"]],[13,14,["G2443"]],[14,17,["G3306"]],[17,18,["G3326"]],[18,19,["G5216"]],[19,21,["G1519","G165"]]]},{"k":26685,"v":[[0,2,["G3588"]],[2,3,["G4151"]],[3,5,["G225"]],[5,6,["G3739"]],[6,7,["G3588"]],[7,8,["G2889"]],[8,9,["G1410","G3756"]],[9,10,["G2983"]],[10,11,["G3754"]],[11,13,["G2334"]],[13,14,["G846"]],[14,15,["G3756"]],[15,16,["G3761"]],[16,17,["G1097"]],[17,18,["G846"]],[18,19,["G1161"]],[19,20,["G5210"]],[20,21,["G1097"]],[21,22,["G846"]],[22,23,["G3754"]],[23,25,["G3306"]],[25,26,["G3844"]],[26,27,["G5213"]],[27,28,["G2532"]],[28,30,["G2071"]],[30,31,["G1722"]],[31,32,["G5213"]]]},{"k":26686,"v":[[0,3,["G3756"]],[3,4,["G863"]],[4,5,["G5209"]],[5,6,["G3737"]],[6,9,["G2064"]],[9,10,["G4314"]],[10,11,["G5209"]]]},{"k":26687,"v":[[0,1,["G2089"]],[1,4,["G3397"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G2889"]],[7,8,["G2334"]],[8,9,["G3165"]],[9,10,["G3756"]],[10,11,["G2089"]],[11,12,["G1161"]],[12,13,["G5210"]],[13,14,["G2334"]],[14,15,["G3165"]],[15,16,["G3754"]],[16,17,["G1473"]],[17,18,["G2198"]],[18,19,["G5210"]],[19,21,["G2198"]],[21,22,["G2532"]]]},{"k":26688,"v":[[0,1,["G1722"]],[1,2,["G1565"]],[2,3,["G2250"]],[3,4,["G5210"]],[4,6,["G1097"]],[6,7,["G3754"]],[7,8,["G1473"]],[8,10,["G1722"]],[10,11,["G3450"]],[11,12,["G3962"]],[12,13,["G2532"]],[13,14,["G5210"]],[14,15,["G1722"]],[15,16,["G1698"]],[16,18,["G2504"]],[18,19,["G1722"]],[19,20,["G5213"]]]},{"k":26689,"v":[[0,3,["G2192"]],[3,4,["G3450"]],[4,5,["G1785"]],[5,6,["G2532"]],[6,7,["G5083"]],[7,8,["G846"]],[8,9,["G1565"]],[9,11,["G2076"]],[11,13,["G25"]],[13,14,["G3165"]],[14,15,["G1161"]],[15,18,["G25"]],[18,19,["G3165"]],[19,22,["G25"]],[22,23,["G5259"]],[23,24,["G3450"]],[24,25,["G3962"]],[25,26,["G2532"]],[26,27,["G1473"]],[27,29,["G25"]],[29,30,["G846"]],[30,31,["G2532"]],[31,33,["G1718"]],[33,34,["G1683"]],[34,36,["G846"]]]},{"k":26690,"v":[[0,1,["G2455"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G3756"]],[5,6,["G2469"]],[6,7,["G2962"]],[7,8,["G5101"]],[8,9,["G1096"]],[9,11,["G3754"]],[11,13,["G3195"]],[13,14,["G1718"]],[14,15,["G4572"]],[15,17,["G2254"]],[17,18,["G2532"]],[18,19,["G3780"]],[19,21,["G3588"]],[21,22,["G2889"]]]},{"k":26691,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G1437"]],[7,9,["G5100"]],[9,10,["G25"]],[10,11,["G3165"]],[11,14,["G5083"]],[14,15,["G3450"]],[15,16,["G3056"]],[16,17,["G2532"]],[17,18,["G3450"]],[18,19,["G3962"]],[19,21,["G25"]],[21,22,["G846"]],[22,23,["G2532"]],[23,26,["G2064"]],[26,27,["G4314"]],[27,28,["G846"]],[28,29,["G2532"]],[29,30,["G4160"]],[30,32,["G3438"]],[32,33,["G3844"]],[33,34,["G846"]]]},{"k":26692,"v":[[0,3,["G25"]],[3,4,["G3165"]],[4,5,["G3361"]],[5,6,["G5083"]],[6,7,["G3756"]],[7,8,["G3450"]],[8,9,["G3056"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G3056"]],[12,13,["G3739"]],[13,15,["G191"]],[15,16,["G2076"]],[16,17,["G3756"]],[17,18,["G1699"]],[18,19,["G235"]],[19,21,["G3962"]],[21,23,["G3992"]],[23,24,["G3165"]]]},{"k":26693,"v":[[0,2,["G5023"]],[2,5,["G2980"]],[5,7,["G5213"]],[7,10,["G3306"]],[10,11,["G3844"]],[11,12,["G5213"]]]},{"k":26694,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3875"]],[3,6,["G3588"]],[6,7,["G40"]],[7,8,["G4151"]],[8,9,["G3739"]],[9,10,["G3588"]],[10,11,["G3962"]],[11,13,["G3992"]],[13,14,["G1722"]],[14,15,["G3450"]],[15,16,["G3686"]],[16,17,["G1565"]],[17,19,["G1321"]],[19,20,["G5209"]],[20,22,["G3956"]],[22,23,["G2532"]],[23,29,["G5279","G3956","G5209"]],[29,30,["G3739"]],[30,33,["G2036"]],[33,35,["G5213"]]]},{"k":26695,"v":[[0,1,["G1515"]],[1,3,["G863"]],[3,5,["G5213"]],[5,6,["G1699"]],[6,7,["G1515"]],[7,9,["G1325"]],[9,11,["G5213"]],[11,12,["G3756"]],[12,13,["G2531"]],[13,14,["G3588"]],[14,15,["G2889"]],[15,16,["G1325"]],[16,17,["G1325"]],[17,18,["G1473"]],[18,20,["G5213"]],[20,22,["G3361"]],[22,23,["G5216"]],[23,24,["G2588"]],[24,26,["G5015"]],[26,27,["G3366"]],[27,31,["G1168"]]]},{"k":26696,"v":[[0,3,["G191"]],[3,4,["G3754"]],[4,5,["G1473"]],[5,6,["G2036"]],[6,8,["G5213"]],[8,11,["G5217"]],[11,12,["G2532"]],[12,13,["G2064"]],[13,15,["G4314"]],[15,16,["G5209"]],[16,17,["G1487"]],[17,19,["G25"]],[19,20,["G3165"]],[20,23,["G5463","G302"]],[23,24,["G3754"]],[24,26,["G2036"]],[26,28,["G4198"]],[28,29,["G4314"]],[29,30,["G3588"]],[30,31,["G3962"]],[31,32,["G3754"]],[32,33,["G3450"]],[33,34,["G3962"]],[34,35,["G2076"]],[35,36,["G3187"]],[36,38,["G3450"]]]},{"k":26697,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,5,["G2046"]],[5,6,["G5213"]],[6,7,["G4250"]],[7,11,["G1096"]],[11,12,["G2443"]],[12,13,["G3752"]],[13,18,["G1096"]],[18,21,["G4100"]]]},{"k":26698,"v":[[0,1,["G2089"]],[1,4,["G3756"]],[4,5,["G2980"]],[5,6,["G4183"]],[6,7,["G3326"]],[7,8,["G5216"]],[8,9,["G1063"]],[9,10,["G3588"]],[10,11,["G758"]],[11,13,["G5127"]],[13,14,["G2889"]],[14,15,["G2064"]],[15,16,["G2532"]],[16,17,["G2192","(G3756)"]],[17,18,["G3762"]],[18,19,["G1722"]],[19,20,["G1698"]]]},{"k":26699,"v":[[0,1,["G235"]],[1,2,["G2443"]],[2,3,["G3588"]],[3,4,["G2889"]],[4,6,["G1097"]],[6,7,["G3754"]],[7,9,["G25"]],[9,10,["G3588"]],[10,11,["G3962"]],[11,12,["G2532"]],[12,13,["G2531"]],[13,14,["G3588"]],[14,15,["G3962"]],[15,18,["G1781","G3427"]],[18,20,["G3779"]],[20,22,["G4160"]],[22,23,["G1453"]],[23,26,["G71"]],[26,27,["G1782"]]]},{"k":26700,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,3,["G3588"]],[3,4,["G228"]],[4,5,["G288"]],[5,6,["G2532"]],[6,7,["G3450"]],[7,8,["G3962"]],[8,9,["G2076"]],[9,10,["G3588"]],[10,11,["G1092"]]]},{"k":26701,"v":[[0,1,["G3956"]],[1,2,["G2814"]],[2,3,["G1722"]],[3,4,["G1698"]],[4,6,["G5342"]],[6,7,["G3361"]],[7,8,["G2590"]],[8,11,["G142","(G846)"]],[11,12,["G2532"]],[12,13,["G3956"]],[13,16,["G5342"]],[16,17,["G2590"]],[17,19,["G2508"]],[19,20,["G846"]],[20,21,["G2443"]],[21,25,["G5342"]],[25,26,["G4119"]],[26,27,["G2590"]]]},{"k":26702,"v":[[0,1,["G2235"]],[1,2,["G5210"]],[2,3,["G2075"]],[3,4,["G2513"]],[4,5,["G1223"]],[5,6,["G3588"]],[6,7,["G3056"]],[7,8,["G3739"]],[8,11,["G2980"]],[11,13,["G5213"]]]},{"k":26703,"v":[[0,1,["G3306"]],[1,2,["G1722"]],[2,3,["G1698"]],[3,5,["G2504"]],[5,6,["G1722"]],[6,7,["G5213"]],[7,8,["G2531"]],[8,9,["G3588"]],[9,10,["G2814"]],[10,11,["G1410","G3756"]],[11,12,["G5342"]],[12,13,["G2590"]],[13,14,["G575"]],[14,15,["G1438"]],[15,16,["G3362"]],[16,18,["G3306"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G288"]],[21,22,["G3761"]],[22,23,["G3779"]],[23,25,["G5210"]],[25,26,["G3362"]],[26,28,["G3306"]],[28,29,["G1722"]],[29,30,["G1698"]]]},{"k":26704,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,3,["G3588"]],[3,4,["G288"]],[4,5,["G5210"]],[5,7,["G3588"]],[7,8,["G2814"]],[8,11,["G3306"]],[11,12,["G1722"]],[12,13,["G1698"]],[13,15,["G2504"]],[15,16,["G1722"]],[16,17,["G846"]],[17,19,["G3778"]],[19,21,["G5342"]],[21,22,["G4183"]],[22,23,["G2590"]],[23,24,["G3754"]],[24,25,["G5565"]],[25,26,["G1700"]],[26,28,["G1410","(G3756)"]],[28,29,["G4160"]],[29,30,["G3762"]]]},{"k":26705,"v":[[0,5,["G3362","G5100","G3306"]],[5,6,["G1722"]],[6,7,["G1698"]],[7,10,["G906"]],[10,11,["G1854"]],[11,12,["G5613"]],[12,14,["G2814"]],[14,15,["G2532"]],[15,17,["G3583"]],[17,18,["G2532"]],[18,20,["G4863"]],[20,21,["G846"]],[21,22,["G2532"]],[22,23,["G906"]],[23,25,["G1519"]],[25,27,["G4442"]],[27,28,["G2532"]],[28,31,["G2545"]]]},{"k":26706,"v":[[0,1,["G1437"]],[1,3,["G3306"]],[3,4,["G1722"]],[4,5,["G1698"]],[5,6,["G2532"]],[6,7,["G3450"]],[7,8,["G4487"]],[8,9,["G3306"]],[9,10,["G1722"]],[10,11,["G5213"]],[11,14,["G154"]],[14,15,["G3739","G1437"]],[15,17,["G2309"]],[17,18,["G2532"]],[18,22,["G1096"]],[22,24,["G5213"]]]},{"k":26707,"v":[[0,1,["G1722","G5129"]],[1,3,["G3450"]],[3,4,["G3962"]],[4,5,["G1392"]],[5,6,["G2443"]],[6,8,["G5342"]],[8,9,["G4183"]],[9,10,["G2590"]],[10,11,["G2532"]],[11,14,["G1096"]],[14,15,["G1698"]],[15,16,["G3101"]]]},{"k":26708,"v":[[0,1,["G2531"]],[1,2,["G3588"]],[2,4,["G3962"]],[4,5,["G25"]],[5,6,["G3165"]],[6,10,["G2504","G25"]],[10,11,["G5209"]],[11,12,["G3306"]],[12,14,["G1722"]],[14,15,["G1699"]],[15,16,["G26"]]]},{"k":26709,"v":[[0,1,["G1437"]],[1,3,["G5083"]],[3,4,["G3450"]],[4,5,["G1785"]],[5,8,["G3306"]],[8,9,["G1722"]],[9,10,["G3450"]],[10,11,["G26"]],[11,13,["G2531"]],[13,14,["G1473"]],[14,16,["G5083"]],[16,17,["G3450"]],[17,18,["G3962"]],[18,19,["G1785"]],[19,20,["G2532"]],[20,21,["G3306"]],[21,22,["G1722"]],[22,23,["G846"]],[23,24,["G26"]]]},{"k":26710,"v":[[0,2,["G5023"]],[2,5,["G2980"]],[5,7,["G5213"]],[7,8,["G2443"]],[8,9,["G1699"]],[9,10,["G5479"]],[10,12,["G3306"]],[12,13,["G1722"]],[13,14,["G5213"]],[14,15,["G2532"]],[15,17,["G5216"]],[17,18,["G5479"]],[18,21,["G4137"]]]},{"k":26711,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,3,["G1699"]],[3,4,["G1785"]],[4,5,["G2443"]],[5,7,["G25"]],[7,9,["G240"]],[9,10,["G2531"]],[10,13,["G25"]],[13,14,["G5209"]]]},{"k":26712,"v":[[0,1,["G3187"]],[1,2,["G26"]],[2,3,["G2192"]],[3,5,["G3762"]],[5,7,["G5026"]],[7,8,["G2443"]],[8,10,["G5100"]],[10,12,["G5087"]],[12,13,["G848"]],[13,14,["G5590"]],[14,15,["G5228"]],[15,16,["G848"]],[16,17,["G5384"]]]},{"k":26713,"v":[[0,1,["G5210"]],[1,2,["G2075"]],[2,3,["G3450"]],[3,4,["G5384"]],[4,5,["G1437"]],[5,7,["G4160"]],[7,8,["G3745"]],[8,9,["G1473"]],[9,10,["G1781"]],[10,11,["G5213"]]]},{"k":26714,"v":[[0,5,["G3765","G3004","G5209"]],[5,6,["G1401"]],[6,7,["G3754"]],[7,8,["G3588"]],[8,9,["G1401"]],[9,10,["G1492"]],[10,11,["G3756"]],[11,12,["G5101"]],[12,13,["G846"]],[13,14,["G2962"]],[14,15,["G4160"]],[15,16,["G1161"]],[16,19,["G2046"]],[19,20,["G5209"]],[20,21,["G5384"]],[21,22,["G3754"]],[22,24,["G3956"]],[24,25,["G3739"]],[25,28,["G191"]],[28,29,["G3844"]],[29,30,["G3450"]],[30,31,["G3962"]],[31,35,["G1107"]],[35,37,["G5213"]]]},{"k":26715,"v":[[0,1,["G5210"]],[1,3,["G3756"]],[3,4,["G1586"]],[4,5,["G3165"]],[5,6,["G235"]],[6,7,["G1473"]],[7,9,["G1586"]],[9,10,["G5209"]],[10,11,["G2532"]],[11,12,["G5087"]],[12,13,["G5209"]],[13,14,["G2443"]],[14,15,["G5210"]],[15,17,["G5217"]],[17,18,["G2532"]],[18,20,["G5342"]],[20,21,["G2590"]],[21,22,["G2532"]],[22,24,["G5216"]],[24,25,["G2590"]],[25,27,["G3306"]],[27,28,["G2443"]],[28,29,["G3748","G302"]],[29,32,["G154"]],[32,34,["G3588"]],[34,35,["G3962"]],[35,36,["G1722"]],[36,37,["G3450"]],[37,38,["G3686"]],[38,41,["G1325"]],[41,43,["G5213"]]]},{"k":26716,"v":[[0,2,["G5023"]],[2,4,["G1781"]],[4,5,["G5213"]],[5,6,["G2443"]],[6,8,["G25"]],[8,10,["G240"]]]},{"k":26717,"v":[[0,1,["G1487"]],[1,2,["G3588"]],[2,3,["G2889"]],[3,4,["G3404"]],[4,5,["G5209"]],[5,7,["G1097"]],[7,8,["G3754"]],[8,10,["G3404"]],[10,11,["G1691"]],[11,12,["G4412"]],[12,15,["G5216"]]]},{"k":26718,"v":[[0,1,["G1487"]],[1,3,["G2258"]],[3,4,["G1537"]],[4,5,["G3588"]],[5,6,["G2889"]],[6,7,["G3588"]],[7,8,["G2889"]],[8,10,["G5368","G302"]],[10,12,["G2398"]],[12,13,["G1161"]],[13,14,["G3754"]],[14,16,["G2075"]],[16,17,["G3756"]],[17,18,["G1537"]],[18,19,["G3588"]],[19,20,["G2889"]],[20,21,["G235"]],[21,22,["G1473"]],[22,24,["G1586"]],[24,25,["G5209"]],[25,27,["G1537"]],[27,28,["G3588"]],[28,29,["G2889"]],[29,30,["G1223","G5124"]],[30,31,["G3588"]],[31,32,["G2889"]],[32,33,["G3404"]],[33,34,["G5209"]]]},{"k":26719,"v":[[0,1,["G3421"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,4,["G3739"]],[4,5,["G1473"]],[5,6,["G2036"]],[6,8,["G5213"]],[8,10,["G1401"]],[10,11,["G2076"]],[11,12,["G3756"]],[12,13,["G3187"]],[13,15,["G848"]],[15,16,["G2962"]],[16,17,["G1487"]],[17,20,["G1377"]],[20,21,["G1691"]],[21,24,["G2532"]],[24,25,["G1377"]],[25,26,["G5209"]],[26,27,["G1487"]],[27,30,["G5083"]],[30,31,["G3450"]],[31,32,["G3056"]],[32,35,["G5083"]],[35,36,["G5212"]],[36,37,["G2532"]]]},{"k":26720,"v":[[0,1,["G235"]],[1,2,["G3956"]],[2,4,["G5023"]],[4,7,["G4160"]],[7,9,["G5213"]],[9,13,["G1223","G3450","G3686"]],[13,14,["G3754"]],[14,16,["G1492"]],[16,17,["G3756"]],[17,20,["G3992"]],[20,21,["G3165"]]]},{"k":26721,"v":[[0,1,["G1487"]],[1,4,["G3361"]],[4,5,["G2064"]],[5,6,["G2532"]],[6,7,["G2980"]],[7,9,["G846"]],[9,12,["G3756"]],[12,13,["G2192"]],[13,14,["G266"]],[14,15,["G1161"]],[15,16,["G3568"]],[16,18,["G2192"]],[18,19,["G3756"]],[19,20,["G4392"]],[20,21,["G4012"]],[21,22,["G848"]],[22,23,["G266"]]]},{"k":26722,"v":[[0,3,["G3404"]],[3,4,["G1691"]],[4,5,["G3404"]],[5,6,["G3450"]],[6,7,["G3962"]],[7,8,["G2532"]]]},{"k":26723,"v":[[0,1,["G1487"]],[1,4,["G3361"]],[4,5,["G4160"]],[5,6,["G1722"]],[6,7,["G846"]],[7,8,["G3588"]],[8,9,["G2041"]],[9,10,["G3739"]],[10,11,["G3762"]],[11,13,["G243"]],[13,14,["G4160"]],[14,17,["G3756"]],[17,18,["G2192"]],[18,19,["G266"]],[19,20,["G1161"]],[20,21,["G3568"]],[21,24,["G2532"]],[24,25,["G3708"]],[25,26,["G2532"]],[26,27,["G3404"]],[27,28,["G2532"]],[28,29,["G1691"]],[29,30,["G2532"]],[30,31,["G3450"]],[31,32,["G3962"]]]},{"k":26724,"v":[[0,1,["G235"]],[1,6,["G2443"]],[6,7,["G3588"]],[7,8,["G3056"]],[8,11,["G4137"]],[11,14,["G1125"]],[14,15,["G1722"]],[15,16,["G846"]],[16,17,["G3551"]],[17,19,["G3404"]],[19,20,["G3165"]],[20,23,["G1432"]]]},{"k":26725,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,3,["G3588"]],[3,4,["G3875"]],[4,6,["G2064"]],[6,7,["G3739"]],[7,8,["G1473"]],[8,10,["G3992"]],[10,12,["G5213"]],[12,13,["G3844"]],[13,14,["G3588"]],[14,15,["G3962"]],[15,17,["G3588"]],[17,18,["G4151"]],[18,20,["G225"]],[20,21,["G3739"]],[21,22,["G1607"]],[22,23,["G3844"]],[23,24,["G3588"]],[24,25,["G3962"]],[25,26,["G1565"]],[26,28,["G3140"]],[28,29,["G4012"]],[29,30,["G1700"]]]},{"k":26726,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G2532"]],[3,6,["G3140"]],[6,7,["G3754"]],[7,10,["G2075"]],[10,11,["G3326"]],[11,12,["G1700"]],[12,13,["G575"]],[13,15,["G746"]]]},{"k":26727,"v":[[0,2,["G5023"]],[2,5,["G2980"]],[5,7,["G5213"]],[7,8,["G2443"]],[8,11,["G3361"]],[11,13,["G4624"]]]},{"k":26728,"v":[[0,3,["G4160"]],[3,4,["G5209"]],[4,8,["G656"]],[8,9,["G235"]],[9,11,["G5610"]],[11,12,["G2064"]],[12,13,["G2443"]],[13,14,["G3956"]],[14,15,["G615"]],[15,16,["G5209"]],[16,18,["G1380"]],[18,21,["G4374"]],[21,22,["G2316"]],[22,23,["G2999"]]]},{"k":26729,"v":[[0,1,["G2532"]],[1,3,["G5023"]],[3,6,["G4160"]],[6,8,["G5213"]],[8,9,["G3754"]],[9,12,["G3756"]],[12,13,["G1097"]],[13,14,["G3588"]],[14,15,["G3962"]],[15,16,["G3761"]],[16,17,["G1691"]]]},{"k":26730,"v":[[0,1,["G235"]],[1,3,["G5023"]],[3,6,["G2980"]],[6,7,["G5213"]],[7,8,["G2443"]],[8,9,["G3752"]],[9,10,["G3588"]],[10,11,["G5610"]],[11,13,["G2064"]],[13,16,["G3421"]],[16,17,["G3754"]],[17,18,["G1473"]],[18,19,["G2036"]],[19,20,["G5213"]],[20,22,["G846"]],[22,23,["G1161"]],[23,25,["G5023"]],[25,27,["G2036"]],[27,28,["G3756"]],[28,30,["G5213"]],[30,31,["G1537"]],[31,33,["G746"]],[33,34,["G3754"]],[34,36,["G2252"]],[36,37,["G3326"]],[37,38,["G5216"]]]},{"k":26731,"v":[[0,1,["G1161"]],[1,2,["G3568"]],[2,6,["G5217"]],[6,7,["G4314"]],[7,10,["G3992"]],[10,11,["G3165"]],[11,12,["G2532"]],[12,13,["G3762"]],[13,14,["G1537"]],[14,15,["G5216"]],[15,16,["G2065"]],[16,17,["G3165"]],[17,18,["G4226"]],[18,19,["G5217"]],[19,20,[]]]},{"k":26732,"v":[[0,1,["G235"]],[1,2,["G3754"]],[2,5,["G2980"]],[5,7,["G5023"]],[7,9,["G5213"]],[9,10,["G3077"]],[10,12,["G4137"]],[12,13,["G5216"]],[13,14,["G2588"]]]},{"k":26733,"v":[[0,1,["G235"]],[1,2,["G1473"]],[2,3,["G3004"]],[3,4,["G5213"]],[4,5,["G3588"]],[5,6,["G225"]],[6,9,["G4851"]],[9,11,["G5213"]],[11,12,["G2443"]],[12,13,["G1473"]],[13,15,["G565"]],[15,16,["G1063"]],[16,18,["G1437"]],[18,21,["G565","G3361"]],[21,22,["G3588"]],[22,23,["G3875"]],[23,25,["G3756"]],[25,26,["G2064"]],[26,27,["G4314"]],[27,28,["G5209"]],[28,29,["G1161"]],[29,30,["G1437"]],[30,32,["G4198"]],[32,35,["G3992"]],[35,36,["G846"]],[36,37,["G4314"]],[37,38,["G5209"]]]},{"k":26734,"v":[[0,1,["G2532"]],[1,3,["G1565"]],[3,5,["G2064"]],[5,8,["G1651"]],[8,9,["G3588"]],[9,10,["G2889"]],[10,11,["G4012"]],[11,12,["G266"]],[12,13,["G2532"]],[13,14,["G4012"]],[14,15,["G1343"]],[15,16,["G2532"]],[16,17,["G4012"]],[17,18,["G2920"]]]},{"k":26735,"v":[[0,1,["G4012"]],[1,2,["G266","(G3303)"]],[2,3,["G3754"]],[3,5,["G4100"]],[5,6,["G3756"]],[6,7,["G1519"]],[7,8,["G1691"]]]},{"k":26736,"v":[[0,0,["(G1161)"]],[0,1,["G4012"]],[1,2,["G1343"]],[2,3,["G3754"]],[3,5,["G5217"]],[5,6,["G4314"]],[6,7,["G3450"]],[7,8,["G3962"]],[8,9,["G2532"]],[9,11,["G2334"]],[11,12,["G3165"]],[12,13,["G3756"]],[13,14,["G2089"]]]},{"k":26737,"v":[[0,0,["(G1161)"]],[0,1,["G4012"]],[1,2,["G2920"]],[2,3,["G3754"]],[3,4,["G3588"]],[4,5,["G758"]],[5,7,["G5127"]],[7,8,["G2889"]],[8,10,["G2919"]]]},{"k":26738,"v":[[0,2,["G2192"]],[2,3,["G2089"]],[3,5,["G4183"]],[5,7,["G3004"]],[7,9,["G5213"]],[9,10,["G235"]],[10,12,["G1410","G3756"]],[12,13,["G941"]],[13,15,["G737"]]]},{"k":26739,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,3,["G1565"]],[3,4,["G3588"]],[4,5,["G4151"]],[5,7,["G225"]],[7,9,["G2064"]],[9,12,["G3594"]],[12,13,["G5209"]],[13,14,["G1519"]],[14,15,["G3956"]],[15,16,["G225"]],[16,17,["G1063"]],[17,20,["G3756"]],[20,21,["G2980"]],[21,22,["G575"]],[22,23,["G1438"]],[23,24,["G235"]],[24,25,["G3745","G302"]],[25,28,["G191"]],[28,32,["G2980"]],[32,33,["G2532"]],[33,36,["G312"]],[36,37,["G5213"]],[37,40,["G2064"]]]},{"k":26740,"v":[[0,1,["G1565"]],[1,3,["G1392"]],[3,4,["G1691"]],[4,5,["G3754"]],[5,8,["G2983"]],[8,9,["G1537"]],[9,10,["G1699"]],[10,11,["G2532"]],[11,13,["G312"]],[13,16,["G5213"]]]},{"k":26741,"v":[[0,2,["G3956"]],[2,3,["G3745"]],[3,4,["G3588"]],[4,5,["G3962"]],[5,6,["G2192"]],[6,7,["G2076"]],[7,8,["G1699"]],[8,9,["G1223","G5124"]],[9,10,["G2036"]],[10,12,["G3754"]],[12,15,["G2983"]],[15,16,["G1537"]],[16,17,["G1699"]],[17,18,["G2532"]],[18,20,["G312"]],[20,23,["G5213"]]]},{"k":26742,"v":[[0,3,["G3397"]],[3,4,["G2532"]],[4,7,["G3756"]],[7,8,["G2334"]],[8,9,["G3165"]],[9,10,["G2532"]],[10,11,["G3825"]],[11,14,["G3397"]],[14,15,["G2532"]],[15,18,["G3700"]],[18,19,["G3165"]],[19,20,["G3754"]],[20,21,["G1473"]],[21,22,["G5217"]],[22,23,["G4314"]],[23,24,["G3588"]],[24,25,["G3962"]]]},{"k":26743,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,4,["G1537"]],[4,5,["G846"]],[5,6,["G3101"]],[6,7,["G4314"]],[7,8,["G240"]],[8,9,["G5101"]],[9,10,["G2076"]],[10,11,["G5124"]],[11,12,["G3739"]],[12,14,["G3004"]],[14,16,["G2254"]],[16,19,["G3397"]],[19,20,["G2532"]],[20,23,["G3756"]],[23,24,["G2334"]],[24,25,["G3165"]],[25,26,["G2532"]],[26,27,["G3825"]],[27,30,["G3397"]],[30,31,["G2532"]],[31,34,["G3700"]],[34,35,["G3165"]],[35,36,["G2532"]],[36,37,["G3754"]],[37,38,["G1473"]],[38,39,["G5217"]],[39,40,["G4314"]],[40,41,["G3588"]],[41,42,["G3962"]]]},{"k":26744,"v":[[0,2,["G3004"]],[2,3,["G3767"]],[3,4,["G5101"]],[4,5,["G2076"]],[5,6,["G5124"]],[6,7,["G3739"]],[7,9,["G3004"]],[9,12,["G3397"]],[12,15,["G1492","G3756"]],[15,16,["G5101"]],[16,18,["G2980"]]]},{"k":26745,"v":[[0,1,["G3767"]],[1,2,["G2424"]],[2,3,["G1097"]],[3,4,["G3754"]],[4,7,["G2309"]],[7,9,["G2065"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G2036"]],[12,14,["G846"]],[14,17,["G2212"]],[17,18,["G3326"]],[18,19,["G240"]],[19,20,["G4012"]],[20,21,["(G3754)"]],[21,23,["G2036"]],[23,26,["G3397"]],[26,27,["G2532"]],[27,30,["G3756"]],[30,31,["G2334"]],[31,32,["G3165"]],[32,33,["G2532"]],[33,34,["G3825"]],[34,37,["G3397"]],[37,38,["G2532"]],[38,41,["G3700"]],[41,42,["G3165"]]]},{"k":26746,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,7,["G3754"]],[7,8,["G5210"]],[8,10,["G2799"]],[10,11,["G2532"]],[11,12,["G2354"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G2889"]],[15,17,["G5463"]],[17,18,["G1161"]],[18,19,["G5210"]],[19,22,["G3076"]],[22,23,["G235"]],[23,24,["G5216"]],[24,25,["G3077"]],[25,28,["G1096"]],[28,29,["G1519"]],[29,30,["G5479"]]]},{"k":26747,"v":[[0,2,["G1135"]],[2,3,["G3752"]],[3,7,["G5088"]],[7,8,["G2192"]],[8,9,["G3077"]],[9,10,["G3754"]],[10,11,["G846"]],[11,12,["G5610"]],[12,14,["G2064"]],[14,15,["G1161"]],[15,18,["G3752"]],[18,21,["G1080"]],[21,23,["G3588"]],[23,24,["G3813"]],[24,26,["G3421"]],[26,27,["G3756"]],[27,28,["G2089"]],[28,29,["G3588"]],[29,30,["G2347"]],[30,31,["G1223"]],[31,32,["G5479"]],[32,33,["G3754"]],[33,35,["G444"]],[35,37,["G1080"]],[37,38,["G1519"]],[38,39,["G3588"]],[39,40,["G2889"]]]},{"k":26748,"v":[[0,1,["G2532"]],[1,2,["G5210"]],[2,3,["G3568"]],[3,4,["G3767","(G3303)"]],[4,5,["G2192"]],[5,6,["G3077"]],[6,7,["G1161"]],[7,10,["G3700"]],[10,11,["G5209"]],[11,12,["G3825"]],[12,13,["G2532"]],[13,14,["G5216"]],[14,15,["G2588"]],[15,17,["G5463"]],[17,18,["G2532"]],[18,19,["G5216"]],[19,20,["G5479"]],[20,22,["G3762"]],[22,23,["G142"]],[23,24,["G575"]],[24,25,["G5216"]]]},{"k":26749,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G1565"]],[3,4,["G2250"]],[4,6,["(G3756)"]],[6,7,["G2065"]],[7,8,["G1691"]],[8,9,["G3762"]],[9,10,["G281"]],[10,11,["G281"]],[11,13,["G3004"]],[13,15,["G5213"]],[15,16,["(G3745)","G302"]],[16,19,["G154"]],[19,20,["G3588"]],[20,21,["G3962"]],[21,22,["G1722"]],[22,23,["G3450"]],[23,24,["G3686"]],[24,27,["G1325"]],[27,29,["G5213"]]]},{"k":26750,"v":[[0,1,["G2193","G737"]],[1,3,["(G3756)"]],[3,4,["G154"]],[4,5,["G3762"]],[5,6,["G1722"]],[6,7,["G3450"]],[7,8,["G3686"]],[8,9,["G154"]],[9,10,["G2532"]],[10,13,["G2983"]],[13,14,["G2443"]],[14,15,["G5216"]],[15,16,["G5479"]],[16,18,["G5600"]],[18,19,["G4137"]]]},{"k":26751,"v":[[0,2,["G5023"]],[2,5,["G2980"]],[5,7,["G5213"]],[7,8,["G1722"]],[8,9,["G3942"]],[9,10,["G235"]],[10,12,["G5610"]],[12,13,["G2064"]],[13,14,["G3753"]],[14,17,["G3756"]],[17,18,["G2089"]],[18,19,["G2980"]],[19,21,["G5213"]],[21,22,["G1722"]],[22,23,["G3942"]],[23,24,["G235"]],[24,27,["G312"]],[27,28,["G5213"]],[28,29,["G3954"]],[29,30,["G4012"]],[30,31,["G3588"]],[31,32,["G3962"]]]},{"k":26752,"v":[[0,1,["G1722"]],[1,2,["G1565"]],[2,3,["G2250"]],[3,6,["G154"]],[6,7,["G1722"]],[7,8,["G3450"]],[8,9,["G3686"]],[9,10,["G2532"]],[10,12,["G3004"]],[12,13,["G3756"]],[13,15,["G5213"]],[15,16,["G3754"]],[16,17,["G1473"]],[17,19,["G2065"]],[19,20,["G3588"]],[20,21,["G3962"]],[21,22,["G4012"]],[22,23,["G5216"]]]},{"k":26753,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3962"]],[3,4,["G846"]],[4,5,["G5368"]],[5,6,["G5209"]],[6,7,["G3754"]],[7,8,["G5210"]],[8,10,["G5368"]],[10,11,["G1691"]],[11,12,["G2532"]],[12,14,["G4100"]],[14,15,["G3754"]],[15,16,["G1473"]],[16,18,["G1831"]],[18,19,["G3844"]],[19,20,["G2316"]]]},{"k":26754,"v":[[0,3,["G1831"]],[3,4,["G3844"]],[4,5,["G3588"]],[5,6,["G3962"]],[6,7,["G2532"]],[7,9,["G2064"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G2889"]],[12,13,["G3825"]],[13,15,["G863"]],[15,16,["G3588"]],[16,17,["G2889"]],[17,18,["G2532"]],[18,19,["G4198"]],[19,20,["G4314"]],[20,21,["G3588"]],[21,22,["G3962"]]]},{"k":26755,"v":[[0,1,["G846"]],[1,2,["G3101"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G2396"]],[6,7,["G3568"]],[7,8,["G2980"]],[8,10,["G3954"]],[10,11,["G2532"]],[11,12,["G3004"]],[12,13,["G3762"]],[13,14,["G3942"]]]},{"k":26756,"v":[[0,1,["G3568"]],[1,4,["G1492"]],[4,5,["G3754"]],[5,7,["G1492"]],[7,9,["G3956"]],[9,10,["G2532"]],[10,11,["G2192","G5532"]],[11,12,["G3756"]],[12,13,["G2443"]],[13,15,["G5100"]],[15,17,["G2065"]],[17,18,["G4571"]],[18,19,["G1722"]],[19,20,["G5129"]],[20,22,["G4100"]],[22,23,["G3754"]],[23,26,["G1831"]],[26,27,["G575"]],[27,28,["G2316"]]]},{"k":26757,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,6,["G737"]],[6,7,["G4100"]]]},{"k":26758,"v":[[0,1,["G2400"]],[1,3,["G5610"]],[3,4,["G2064"]],[4,5,["G2532"]],[5,7,["G3568"]],[7,8,["G2064"]],[8,9,["G2443"]],[9,13,["G4650"]],[13,15,["G1538"]],[15,16,["G1519"]],[16,18,["G2398"]],[18,19,["G2532"]],[19,21,["G863"]],[21,22,["G1691"]],[22,23,["G3441"]],[23,24,["G2532"]],[24,27,["G1510"]],[27,28,["G3756"]],[28,29,["G3441"]],[29,30,["G3754"]],[30,31,["G3588"]],[31,32,["G3962"]],[32,33,["G2076"]],[33,34,["G3326"]],[34,35,["G1700"]]]},{"k":26759,"v":[[0,2,["G5023"]],[2,5,["G2980"]],[5,7,["G5213"]],[7,8,["G2443"]],[8,9,["G1722"]],[9,10,["G1698"]],[10,13,["G2192"]],[13,14,["G1515"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G2889"]],[17,20,["G2192"]],[20,21,["G2347"]],[21,22,["G235"]],[22,26,["G2293"]],[26,27,["G1473"]],[27,29,["G3528"]],[29,30,["G3588"]],[30,31,["G2889"]]]},{"k":26760,"v":[[0,2,["G5023"]],[2,3,["G2980"]],[3,4,["G2424"]],[4,5,["G2532"]],[5,7,["G1869"]],[7,8,["G848"]],[8,9,["G3788"]],[9,10,["G1519"]],[10,11,["G3772"]],[11,12,["G2532"]],[12,13,["G2036"]],[13,14,["G3962"]],[14,15,["G3588"]],[15,16,["G5610"]],[16,18,["G2064"]],[18,19,["G1392"]],[19,20,["G4675"]],[20,21,["G5207"]],[21,22,["G2443"]],[22,23,["G4675"]],[23,24,["G5207"]],[24,25,["G2532"]],[25,27,["G1392"]],[27,28,["G4571"]]]},{"k":26761,"v":[[0,1,["G2531"]],[1,4,["G1325"]],[4,5,["G846"]],[5,6,["G1849"]],[6,8,["G3956"]],[8,9,["G4561"]],[9,10,["G2443"]],[10,13,["G1325"]],[13,14,["G166"]],[14,15,["G2222"]],[15,19,["G3956","G3739"]],[19,22,["G1325"]],[22,23,["G846"]]]},{"k":26762,"v":[[0,1,["G1161"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,4,["G2222"]],[4,5,["G166"]],[5,6,["G2443"]],[6,9,["G1097"]],[9,10,["G4571"]],[10,11,["G3588"]],[11,12,["G3441"]],[12,13,["G228"]],[13,14,["G2316"]],[14,15,["G2532"]],[15,16,["G2424"]],[16,17,["G5547"]],[17,18,["G3739"]],[18,21,["G649"]]]},{"k":26763,"v":[[0,1,["G1473"]],[1,3,["G1392"]],[3,4,["G4571"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G1093"]],[7,10,["G5048"]],[10,11,["G3588"]],[11,12,["G2041"]],[12,13,["G3739"]],[13,15,["G1325"]],[15,16,["G3427"]],[16,17,["G2443"]],[17,18,["G4160"]]]},{"k":26764,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,4,["G3962"]],[4,5,["G1392"]],[5,6,["G4771"]],[6,7,["G3165"]],[7,8,["G3844"]],[8,11,["G4572"]],[11,14,["G1391"]],[14,15,["G3739"]],[15,17,["G2192"]],[17,18,["G3844"]],[18,19,["G4671"]],[19,20,["G4253"]],[20,21,["G3588"]],[21,22,["G2889"]],[22,23,["G1511"]]]},{"k":26765,"v":[[0,3,["G5319"]],[3,4,["G4675"]],[4,5,["G3686"]],[5,7,["G3588"]],[7,8,["G444"]],[8,9,["G3739"]],[9,11,["G1325"]],[11,12,["G3427"]],[12,14,["G1537"]],[14,15,["G3588"]],[15,16,["G2889"]],[16,17,["G4674"]],[17,19,["G2258"]],[19,20,["G2532"]],[20,22,["G1325"]],[22,23,["G846"]],[23,24,["G1698"]],[24,25,["G2532"]],[25,28,["G5083"]],[28,29,["G4675"]],[29,30,["G3056"]]]},{"k":26766,"v":[[0,1,["G3568"]],[1,4,["G1097"]],[4,5,["G3754"]],[5,7,["G3956"]],[7,8,["G3745"]],[8,11,["G1325"]],[11,12,["G3427"]],[12,13,["G2076"]],[13,14,["G3844"]],[14,15,["G4675"]]]},{"k":26767,"v":[[0,1,["G3754"]],[1,4,["G1325"]],[4,6,["G846"]],[6,7,["G3588"]],[7,8,["G4487"]],[8,9,["G3739"]],[9,11,["G1325"]],[11,12,["G3427"]],[12,13,["G2532"]],[13,14,["G846"]],[14,16,["G2983"]],[16,18,["G2532"]],[18,20,["G1097"]],[20,21,["G230"]],[21,22,["G3754"]],[22,25,["G1831"]],[25,26,["G3844"]],[26,27,["G4675"]],[27,28,["G2532"]],[28,31,["G4100"]],[31,32,["G3754"]],[32,33,["G4771"]],[33,35,["G649"]],[35,36,["G3165"]]]},{"k":26768,"v":[[0,1,["G1473"]],[1,2,["G2065"]],[2,3,["G4012"]],[3,4,["G846"]],[4,6,["G2065"]],[6,7,["G3756"]],[7,8,["G4012"]],[8,9,["G3588"]],[9,10,["G2889"]],[10,11,["G235"]],[11,12,["G4012"]],[12,14,["G3739"]],[14,17,["G1325"]],[17,18,["G3427"]],[18,19,["G3754"]],[19,21,["G1526"]],[21,22,["G4671"]]]},{"k":26769,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G1699"]],[3,4,["G2076"]],[4,5,["G4674"]],[5,6,["G2532"]],[6,7,["G4674"]],[7,9,["G1699"]],[9,10,["G2532"]],[10,13,["G1392"]],[13,14,["G1722"]],[14,15,["G846"]]]},{"k":26770,"v":[[0,1,["G2532"]],[1,4,["G1510"]],[4,5,["G3756"]],[5,6,["G2089"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G2889"]],[9,10,["G2532"]],[10,11,["G3778"]],[11,12,["G1526"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G2889"]],[15,16,["G2532"]],[16,17,["G1473"]],[17,18,["G2064"]],[18,19,["G4314"]],[19,20,["G4571"]],[20,21,["G40"]],[21,22,["G3962"]],[22,23,["G5083"]],[23,24,["G1722"]],[24,26,["G4675"]],[26,27,["G3686"]],[27,28,["G846"]],[28,29,["G3739"]],[29,32,["G1325"]],[32,33,["G3427"]],[33,34,["G2443"]],[34,37,["G5600"]],[37,38,["G1520"]],[38,39,["G2531"]],[39,40,["G2249"]],[40,41,[]]]},{"k":26771,"v":[[0,1,["G3753"]],[1,3,["G2252"]],[3,4,["G3326"]],[4,5,["G846"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G2889"]],[8,9,["G1473"]],[9,10,["G5083"]],[10,11,["G846"]],[11,12,["G1722"]],[12,13,["G4675"]],[13,14,["G3686"]],[14,16,["G3739"]],[16,18,["G1325"]],[18,19,["G3427"]],[19,22,["G5442"]],[22,23,["G2532"]],[23,24,["G3762"]],[24,25,["G1537"]],[25,26,["G846"]],[26,28,["G622"]],[28,29,["G1508"]],[29,30,["G3588"]],[30,31,["G5207"]],[31,33,["G684"]],[33,34,["G2443"]],[34,35,["G3588"]],[35,36,["G1124"]],[36,39,["G4137"]]]},{"k":26772,"v":[[0,1,["G1161"]],[1,2,["G3568"]],[2,3,["G2064"]],[3,5,["G4314"]],[5,6,["G4571"]],[6,7,["G2532"]],[7,9,["G5023"]],[9,11,["G2980"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G2889"]],[14,15,["G2443"]],[15,18,["G2192"]],[18,19,["G1699"]],[19,20,["G5479"]],[20,21,["G4137"]],[21,22,["G1722"]],[22,23,["G848"]]]},{"k":26773,"v":[[0,1,["G1473"]],[1,3,["G1325"]],[3,4,["G846"]],[4,5,["G4675"]],[5,6,["G3056"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G2889"]],[9,11,["G3404"]],[11,12,["G846"]],[12,13,["G3754"]],[13,15,["G1526"]],[15,16,["G3756"]],[16,17,["G1537"]],[17,18,["G3588"]],[18,19,["G2889"]],[19,21,["G2531"]],[21,22,["G1473"]],[22,23,["G1510"]],[23,24,["G3756"]],[24,25,["G1537"]],[25,26,["G3588"]],[26,27,["G2889"]]]},{"k":26774,"v":[[0,2,["G2065"]],[2,3,["G3756"]],[3,4,["G2443"]],[4,7,["G142"]],[7,8,["G846"]],[8,10,["G1537"]],[10,11,["G3588"]],[11,12,["G2889"]],[12,13,["G235"]],[13,14,["G2443"]],[14,17,["G5083"]],[17,18,["G846"]],[18,19,["G1537"]],[19,20,["G3588"]],[20,21,["G4190"]]]},{"k":26775,"v":[[0,2,["G1526"]],[2,3,["G3756"]],[3,4,["G1537"]],[4,5,["G3588"]],[5,6,["G2889"]],[6,8,["G2531"]],[8,9,["G1473"]],[9,10,["G1510"]],[10,11,["G3756"]],[11,12,["G1537"]],[12,13,["G3588"]],[13,14,["G2889"]]]},{"k":26776,"v":[[0,1,["G37"]],[1,2,["G846"]],[2,3,["G1722"]],[3,4,["G4675"]],[4,5,["G225"]],[5,6,["G4674"]],[6,7,["G3056"]],[7,8,["G2076"]],[8,9,["G225"]]]},{"k":26777,"v":[[0,1,["G2531"]],[1,4,["G649"]],[4,5,["G1691"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G2889"]],[8,13,["G2504"]],[13,14,["G649"]],[14,15,["G846"]],[15,16,["G1519"]],[16,17,["G3588"]],[17,18,["G2889"]]]},{"k":26778,"v":[[0,1,["G2532"]],[1,4,["G5228","G846"]],[4,5,["G1473"]],[5,6,["G37"]],[6,7,["G1683"]],[7,8,["G2443"]],[8,9,["G846"]],[9,10,["G2532"]],[10,12,["G5600"]],[12,13,["G37"]],[13,14,["G1722"]],[14,16,["G225"]]]},{"k":26779,"v":[[0,1,["G1161","G3756"]],[1,2,["G2065"]],[2,4,["G4012"]],[4,5,["G5130"]],[5,6,["G3440"]],[6,7,["G235"]],[7,8,["G4012"]],[8,13,["G4100","G2532"]],[13,14,["G1519"]],[14,15,["G1691"]],[15,16,["G1223"]],[16,17,["G846"]],[17,18,["G3056"]]]},{"k":26780,"v":[[0,1,["G2443"]],[1,3,["G3956"]],[3,5,["G5600"]],[5,6,["G1520"]],[6,7,["G2531"]],[7,8,["G4771"]],[8,9,["G3962"]],[9,11,["G1722"]],[11,12,["G1698"]],[12,14,["G2504"]],[14,15,["G1722"]],[15,16,["G4671"]],[16,17,["G2443"]],[17,18,["G846"]],[18,19,["G2532"]],[19,21,["G5600"]],[21,22,["G1520"]],[22,23,["G1722"]],[23,24,["G2254"]],[24,25,["G2443"]],[25,26,["G3588"]],[26,27,["G2889"]],[27,29,["G4100"]],[29,30,["G3754"]],[30,31,["G4771"]],[31,33,["G649"]],[33,34,["G3165"]]]},{"k":26781,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1391"]],[3,4,["G3739"]],[4,6,["G1325"]],[6,7,["G3427"]],[7,8,["G1473"]],[8,10,["G1325"]],[10,11,["G846"]],[11,12,["G2443"]],[12,15,["G5600"]],[15,16,["G1520"]],[16,18,["G2531"]],[18,19,["G2249"]],[19,20,["G2070"]],[20,21,["G1520"]]]},{"k":26782,"v":[[0,1,["G1473"]],[1,2,["G1722"]],[2,3,["G846"]],[3,4,["G2532"]],[4,5,["G4771"]],[5,6,["G1722"]],[6,7,["G1698"]],[7,8,["G2443"]],[8,11,["G5600"]],[11,13,["G5048"]],[13,14,["G1519"]],[14,15,["G1520"]],[15,16,["G2532"]],[16,17,["G2443"]],[17,18,["G3588"]],[18,19,["G2889"]],[19,21,["G1097"]],[21,22,["G3754"]],[22,23,["G4771"]],[23,25,["G649"]],[25,26,["G3165"]],[26,27,["G2532"]],[27,29,["G25"]],[29,30,["G846"]],[30,31,["G2531"]],[31,34,["G25"]],[34,35,["G1691"]]]},{"k":26783,"v":[[0,1,["G3962"]],[1,3,["G2309"]],[3,4,["G2443"]],[4,6,["G2548"]],[6,7,["G3739"]],[7,10,["G1325"]],[10,11,["G3427"]],[11,12,["G5600"]],[12,13,["G3326"]],[13,14,["G1700"]],[14,15,["G3699"]],[15,16,["G1473"]],[16,17,["G1510"]],[17,18,["G2443"]],[18,21,["G2334"]],[21,22,["G1699"]],[22,23,["G1391"]],[23,24,["G3739"]],[24,27,["G1325"]],[27,28,["G3427"]],[28,29,["G3754"]],[29,31,["G25"]],[31,32,["G3165"]],[32,33,["G4253"]],[33,35,["G2602"]],[35,38,["G2889"]]]},{"k":26784,"v":[[0,2,["G1342"]],[2,3,["G3962","(G2532)"]],[3,4,["G3588"]],[4,5,["G2889"]],[5,7,["G3756"]],[7,8,["G1097"]],[8,9,["G4571"]],[9,10,["G1161"]],[10,11,["G1473"]],[11,13,["G1097"]],[13,14,["G4571"]],[14,15,["G2532"]],[15,16,["G3778"]],[16,18,["G1097"]],[18,19,["G3754"]],[19,20,["G4771"]],[20,22,["G649"]],[22,23,["G3165"]]]},{"k":26785,"v":[[0,1,["G2532"]],[1,4,["G1107"]],[4,6,["G846"]],[6,7,["G4675"]],[7,8,["G3686"]],[8,9,["G2532"]],[9,11,["G1107"]],[11,13,["G2443"]],[13,14,["G3588"]],[14,15,["G26"]],[15,16,["G3739"]],[16,19,["G25"]],[19,20,["G3165"]],[20,22,["G5600"]],[22,23,["G1722"]],[23,24,["G846"]],[24,26,["G2504"]],[26,27,["G1722"]],[27,28,["G846"]]]},{"k":26786,"v":[[0,2,["G2424"]],[2,4,["G2036"]],[4,6,["G5023"]],[6,9,["G1831"]],[9,10,["G4862"]],[10,11,["G846"]],[11,12,["G3101"]],[12,13,["G4008"]],[13,14,["G3588"]],[14,15,["G5493"]],[15,16,["G2748"]],[16,17,["G3699"]],[17,18,["G2258"]],[18,20,["G2779"]],[20,21,["G1519"]],[21,23,["G3739"]],[23,24,["G846"]],[24,25,["G1525"]],[25,26,["G2532"]],[26,27,["G846"]],[27,28,["G3101"]]]},{"k":26787,"v":[[0,1,["G1161"]],[1,2,["G2455"]],[2,3,["G2532"]],[3,5,["G3860"]],[5,6,["G846"]],[6,7,["G1492"]],[7,8,["G3588"]],[8,9,["G5117"]],[9,10,["G3754"]],[10,11,["G2424"]],[11,12,["G4178"]],[12,13,["G4863"]],[13,14,["G1563"]],[14,15,["G3326"]],[15,16,["G846"]],[16,17,["G3101"]]]},{"k":26788,"v":[[0,1,["G2455"]],[1,2,["G3767"]],[2,4,["G2983"]],[4,6,["G4686"]],[6,9,["G2532"]],[9,10,["G5257"]],[10,11,["G1537"]],[11,12,["G3588"]],[12,14,["G749"]],[14,15,["G2532"]],[15,16,["G5330"]],[16,17,["G2064"]],[17,18,["G1563"]],[18,19,["G3326"]],[19,20,["G5322"]],[20,21,["G2532"]],[21,22,["G2985"]],[22,23,["G2532"]],[23,24,["G3696"]]]},{"k":26789,"v":[[0,1,["G2424"]],[1,2,["G3767"]],[2,3,["G1492"]],[3,5,["G3956"]],[5,8,["G2064"]],[8,9,["G1909"]],[9,10,["G848"]],[10,12,["G1831"]],[12,14,["G2036"]],[14,16,["G846"]],[16,17,["G5101"]],[17,18,["G2212"]],[18,19,[]]]},{"k":26790,"v":[[0,2,["G611"]],[2,3,["G846"]],[3,4,["G2424"]],[4,6,["G3480"]],[6,7,["G2424"]],[7,8,["G3004"]],[8,10,["G846"]],[10,11,["G1473"]],[11,12,["G1510"]],[12,14,["G1161"]],[14,15,["G2455"]],[15,16,["G2532"]],[16,18,["G3860"]],[18,19,["G846"]],[19,20,["G2476"]],[20,21,["G3326"]],[21,22,["G846"]]]},{"k":26791,"v":[[0,4,["G5613","G3767"]],[4,7,["G2036"]],[7,9,["G846"]],[9,10,["G1473"]],[10,11,["G1510"]],[11,14,["G565"]],[14,15,["G1519","G3694"]],[15,16,["G2532"]],[16,17,["G4098"]],[17,20,["G5476"]]]},{"k":26792,"v":[[0,1,["G3767"]],[1,2,["G1905"]],[2,4,["G846"]],[4,5,["G3825"]],[5,6,["G5101"]],[6,7,["G2212"]],[7,9,["G1161"]],[9,10,["G3588"]],[10,11,["G2036"]],[11,12,["G2424"]],[12,14,["G3480"]]]},{"k":26793,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,5,["G2036"]],[5,6,["G5213"]],[6,7,["G3754"]],[7,8,["G1473"]],[8,9,["G1510"]],[9,11,["G1487"]],[11,12,["G3767"]],[12,14,["G2212"]],[14,15,["G1691"]],[15,16,["G863"]],[16,17,["G5128"]],[17,20,["G5217"]]]},{"k":26794,"v":[[0,1,["G2443"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,6,["G4137"]],[6,7,["G3739"]],[7,9,["G2036"]],[9,10,["G1537"]],[10,11,["G846"]],[11,12,["G3739"]],[12,14,["G1325"]],[14,15,["G3427"]],[15,16,["(G3756)"]],[16,18,["G622"]],[18,19,["G3762"]]]},{"k":26795,"v":[[0,1,["G3767"]],[1,2,["G4613"]],[2,3,["G4074"]],[3,4,["G2192"]],[4,6,["G3162"]],[6,7,["G1670"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G3817"]],[10,11,["G3588"]],[11,13,["G749"]],[13,14,["G1401"]],[14,15,["G2532"]],[15,17,["G609"]],[17,18,["G846"]],[18,19,["G1188"]],[19,20,["G5621","(G1161)"]],[20,21,["G3588"]],[21,22,["G1401"]],[22,23,["G3686"]],[23,24,["G2258"]],[24,25,["G3124"]]]},{"k":26796,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,5,["G4074"]],[5,7,["G906"]],[7,8,["G4675"]],[8,9,["G3162"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G2336"]],[12,13,["G3588"]],[13,14,["G4221"]],[14,15,["G3739"]],[15,17,["G3962"]],[17,19,["G1325"]],[19,20,["G3427"]],[20,23,["G3364"]],[23,24,["G4095"]],[24,25,["G846"]]]},{"k":26797,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,3,["G4686"]],[3,4,["G2532"]],[4,5,["G3588"]],[5,6,["G5506"]],[6,7,["G2532"]],[7,8,["G5257"]],[8,10,["G3588"]],[10,11,["G2453"]],[11,12,["G4815"]],[12,13,["G2424"]],[13,14,["G2532"]],[14,15,["G1210"]],[15,16,["G846"]]]},{"k":26798,"v":[[0,1,["G2532"]],[1,4,["G520","G846"]],[4,5,["G4314"]],[5,6,["G452"]],[6,7,["G4412"]],[7,8,["G1063"]],[8,10,["G2258"]],[10,13,["G3995"]],[13,15,["G2533"]],[15,16,["G3739"]],[16,17,["G2258"]],[17,20,["G749"]],[20,22,["G1565"]],[22,23,["G1763"]]]},{"k":26799,"v":[[0,1,["G1161"]],[1,2,["G2533"]],[2,3,["G2258"]],[3,4,["G3588"]],[4,7,["G4823"]],[7,9,["G3588"]],[9,10,["G2453"]],[10,11,["G3754"]],[11,14,["G4851"]],[14,16,["G1520"]],[16,17,["G444"]],[17,19,["G622"]],[19,20,["G5228"]],[20,21,["G3588"]],[21,22,["G2992"]]]},{"k":26800,"v":[[0,1,["G1161"]],[1,2,["G4613"]],[2,3,["G4074"]],[3,4,["G190"]],[4,5,["G2424"]],[5,6,["G2532"]],[6,9,["G243"]],[9,10,["G3101","(G1161)"]],[10,11,["G1565"]],[11,12,["G3101"]],[12,13,["G2258"]],[13,14,["G1110"]],[14,16,["G3588"]],[16,18,["G749"]],[18,19,["G2532"]],[19,22,["G4897"]],[22,23,["G2424"]],[23,24,["G1519"]],[24,25,["G3588"]],[25,26,["G833"]],[26,28,["G3588"]],[28,30,["G749"]]]},{"k":26801,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2476"]],[3,4,["G4314"]],[4,5,["G3588"]],[5,6,["G2374"]],[6,7,["G1854"]],[7,8,["G3767"]],[8,10,["G1831"]],[10,12,["G243"]],[12,13,["G3101"]],[13,14,["G3739"]],[14,15,["G2258"]],[15,16,["G1110"]],[16,18,["G3588"]],[18,20,["G749"]],[20,21,["G2532"]],[21,22,["G2036"]],[22,28,["G2377"]],[28,29,["G2532"]],[29,31,["G1521"]],[31,32,["G4074"]]]},{"k":26802,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G3588"]],[3,4,["G3814"]],[4,8,["G2377"]],[8,10,["G4074"]],[10,11,["G1488"]],[11,12,["G3361"]],[12,13,["G4771"]],[13,14,["G2532"]],[14,16,["G1537"]],[16,17,["G5127"]],[17,18,["G444"]],[18,19,["G3101"]],[19,20,["G1565"]],[20,21,["G3004"]],[21,23,["G1510"]],[23,24,["G3756"]]]},{"k":26803,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1401"]],[3,4,["G2532"]],[4,5,["G5257"]],[5,6,["G2476"]],[6,10,["G4160"]],[10,14,["G439"]],[14,15,["G3754"]],[15,17,["G2258"]],[17,18,["G5592"]],[18,19,["G2532"]],[19,21,["G2328"]],[21,23,["G1161"]],[23,24,["G4074"]],[24,25,["G2258","G2476"]],[25,26,["G3326"]],[26,27,["G846"]],[27,28,["G2532"]],[28,29,["G2328"]],[29,30,[]]]},{"k":26804,"v":[[0,1,["G3588"]],[1,3,["G749"]],[3,4,["G3767"]],[4,5,["G2065"]],[5,6,["G2424"]],[6,7,["G4012"]],[7,8,["G846"]],[8,9,["G3101"]],[9,10,["G2532"]],[10,11,["G4012"]],[11,12,["G846"]],[12,13,["G1322"]]]},{"k":26805,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G1473"]],[4,5,["G2980"]],[5,6,["G3954"]],[6,8,["G3588"]],[8,9,["G2889"]],[9,10,["G1473"]],[10,11,["G3842"]],[11,12,["G1321"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G4864"]],[15,16,["G2532"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G2411"]],[19,20,["G3699"]],[20,21,["G3588"]],[21,22,["G2453"]],[22,23,["G3842"]],[23,24,["G4905"]],[24,25,["G2532"]],[25,26,["G1722"]],[26,27,["G2927"]],[27,30,["G2980"]],[30,31,["G3752"]]]},{"k":26806,"v":[[0,1,["G5101"]],[1,2,["G1905"]],[2,4,["G1905"]],[4,5,["G1905"]],[5,8,["G191"]],[8,10,["G5101"]],[10,13,["G2980"]],[13,15,["G846"]],[15,16,["G2396"]],[16,17,["G3778"]],[17,18,["G1492"]],[18,19,["G3739"]],[19,20,["G1473"]],[20,21,["G2036"]]]},{"k":26807,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G5023"]],[5,6,["G2036"]],[6,7,["G1520"]],[7,9,["G3588"]],[9,10,["G5257"]],[10,13,["G3936"]],[13,21,["G1325","G2424","G4475"]],[21,22,["G2036"]],[22,23,["G611"]],[23,25,["G3588"]],[25,27,["G749"]],[27,28,["G3779"]]]},{"k":26808,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G1487"]],[4,7,["G2980"]],[7,8,["G2560"]],[8,10,["G3140"]],[10,11,["G4012"]],[11,12,["G3588"]],[12,13,["G2556"]],[13,14,["G1161"]],[14,15,["G1487"]],[15,16,["G2573"]],[16,17,["G5101"]],[17,18,["G1194"]],[18,20,["G3165"]]]},{"k":26809,"v":[[0,1,["G3767"]],[1,2,["G452"]],[2,4,["G649"]],[4,5,["G846"]],[5,6,["G1210"]],[6,7,["G4314"]],[7,8,["G2533"]],[8,9,["G3588"]],[9,11,["G749"]]]},{"k":26810,"v":[[0,2,["G4613"]],[2,3,["G4074"]],[3,4,["G2258","G2476"]],[4,5,["G2532"]],[5,6,["G2328"]],[6,9,["G2036"]],[9,10,["G3767"]],[10,12,["G846"]],[12,13,["G1488"]],[13,14,["G3361"]],[14,15,["G4771"]],[15,16,["G2532"]],[16,18,["G1537"]],[18,19,["G846"]],[19,20,["G3101"]],[20,21,["G1565"]],[21,22,["G720"]],[22,24,["G2532"]],[24,25,["G2036"]],[25,27,["G1510"]],[27,28,["G3756"]]]},{"k":26811,"v":[[0,1,["G1520"]],[1,2,["G1537"]],[2,3,["G3588"]],[3,4,["G1401"]],[4,6,["G3588"]],[6,8,["G749"]],[8,9,["G5607"]],[9,11,["G4773"]],[11,12,["G3739"]],[12,13,["G5621"]],[13,14,["G4074"]],[14,16,["G609"]],[16,17,["G3004"]],[17,19,["G3756"]],[19,20,["G1473"]],[20,21,["G1492"]],[21,22,["G4571"]],[22,23,["G1722"]],[23,24,["G3588"]],[24,25,["G2779"]],[25,26,["G3326"]],[26,27,["G846"]]]},{"k":26812,"v":[[0,1,["G4074"]],[1,2,["G3767"]],[2,3,["G720"]],[3,4,["G3825"]],[4,5,["G2532"]],[5,6,["G2112"]],[6,8,["G220"]],[8,9,["G5455"]]]},{"k":26813,"v":[[0,1,["G3767"]],[1,2,["G71"]],[2,4,["G2424"]],[4,5,["G575"]],[5,6,["G2533"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,11,["G4232"]],[11,12,["G1161"]],[12,14,["G2258"]],[14,15,["G4405"]],[15,16,["G2532"]],[16,17,["G846"]],[17,19,["G1525"]],[19,20,["G3756"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,24,["G4232"]],[24,25,["G3363"]],[25,29,["G3392"]],[29,30,["G235"]],[30,31,["G2443"]],[31,34,["G5315"]],[34,35,["G3588"]],[35,36,["G3957"]]]},{"k":26814,"v":[[0,1,["G4091"]],[1,2,["G3767"]],[2,4,["G1831"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G2036"]],[8,9,["G5101"]],[9,10,["G2724"]],[10,11,["G5342"]],[11,13,["G2596"]],[13,14,["G5127"]],[14,15,["G444"]]]},{"k":26815,"v":[[0,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G1487"]],[7,8,["G3778"]],[8,9,["G2258"]],[9,10,["G3361"]],[10,12,["G2555"]],[12,15,["G3756"]],[15,16,["(G302)"]],[16,19,["G3860","G846"]],[19,21,["G4671"]]]},{"k":26816,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G4091"]],[3,5,["G846"]],[5,6,["G2983"]],[6,7,["G5210"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G2919"]],[10,11,["G846"]],[11,12,["G2596"]],[12,14,["G5216"]],[14,15,["G3551"]],[15,16,["G3588"]],[16,17,["G2453"]],[17,18,["G3767"]],[18,19,["G2036"]],[19,21,["G846"]],[21,25,["G1832","G3756"]],[25,27,["G2254"]],[27,33,["G615","G3762"]]]},{"k":26817,"v":[[0,1,["G2443"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,5,["G2424"]],[5,8,["G4137"]],[8,9,["G3739"]],[9,11,["G2036"]],[11,12,["G4591"]],[12,13,["G4169"]],[13,14,["G2288"]],[14,16,["G3195"]],[16,17,["G599"]]]},{"k":26818,"v":[[0,1,["G3767"]],[1,2,["G4091"]],[2,3,["G1525"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,7,["G4232"]],[7,8,["G3825"]],[8,9,["G2532"]],[9,10,["G5455"]],[10,11,["G2424"]],[11,12,["G2532"]],[12,13,["G2036"]],[13,15,["G846"]],[15,16,["G1488"]],[16,17,["G4771"]],[17,18,["G3588"]],[18,19,["G935"]],[19,21,["G3588"]],[21,22,["G2453"]]]},{"k":26819,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G3004"]],[4,5,["G4771"]],[5,7,["G5124"]],[7,8,["G575"]],[8,9,["G1438"]],[9,10,["G2228"]],[10,12,["G243"]],[12,13,["G2036"]],[13,15,["G4671"]],[15,16,["G4012"]],[16,17,["G1700"]]]},{"k":26820,"v":[[0,1,["G4091"]],[1,2,["G611","(G3385)"]],[2,3,["G1510"]],[3,4,["G1473"]],[4,6,["G2453"]],[6,8,["G4674"]],[8,9,["G1484"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,13,["G749"]],[13,15,["G3860"]],[15,16,["G4571"]],[16,18,["G1698"]],[18,19,["G5101"]],[19,22,["G4160"]]]},{"k":26821,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G1699"]],[3,4,["G932"]],[4,5,["G2076"]],[5,6,["G3756"]],[6,7,["G1537"]],[7,8,["G5127"]],[8,9,["G2889"]],[9,10,["G1487"]],[10,11,["G1699"]],[11,12,["G932"]],[12,13,["G2258"]],[13,14,["G1537"]],[14,15,["G5127"]],[15,16,["G2889"]],[16,19,["G1699"]],[19,20,["G5257"]],[20,21,["G75","G302"]],[21,22,["G2443"]],[22,25,["G3361"]],[25,27,["G3860"]],[27,29,["G3588"]],[29,30,["G2453"]],[30,31,["G1161"]],[31,32,["G3568"]],[32,33,["G2076"]],[33,34,["G1699"]],[34,35,["G932"]],[35,36,["G3756"]],[36,38,["G1782"]]]},{"k":26822,"v":[[0,1,["G4091"]],[1,2,["G3767"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G1488"]],[6,7,["G4771"]],[7,9,["G935"]],[9,10,["G3766"]],[10,11,["G2424"]],[11,12,["G611"]],[12,13,["G4771"]],[13,14,["G3004"]],[14,15,["G3754"]],[15,16,["G1473"]],[16,17,["G1510"]],[17,19,["G935"]],[19,20,["G1519"]],[20,22,["G5124"]],[22,24,["G1473"]],[24,25,["G1080"]],[25,26,["G2532"]],[26,27,["G1519"]],[27,29,["G5124"]],[29,30,["G2064"]],[30,32,["G1519"]],[32,33,["G3588"]],[33,34,["G2889"]],[34,35,["G2443"]],[35,39,["G3140"]],[39,41,["G3588"]],[41,42,["G225"]],[42,44,["G3956"]],[44,46,["G5607"]],[46,47,["G1537"]],[47,48,["G3588"]],[48,49,["G225"]],[49,50,["G191"]],[50,51,["G3450"]],[51,52,["G5456"]]]},{"k":26823,"v":[[0,1,["G4091"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G5101"]],[5,6,["G2076"]],[6,7,["G225"]],[7,8,["G2532"]],[8,12,["G2036"]],[12,13,["G5124"]],[13,16,["G1831"]],[16,17,["G3825"]],[17,18,["G4314"]],[18,19,["G3588"]],[19,20,["G2453"]],[20,21,["G2532"]],[21,22,["G3004"]],[22,24,["G846"]],[24,25,["G1473"]],[25,26,["G2147"]],[26,27,["G1722"]],[27,28,["G846"]],[28,29,["G3762"]],[29,30,["G156"]],[30,32,[]]]},{"k":26824,"v":[[0,1,["G1161"]],[1,2,["G5213"]],[2,3,["G2076"]],[3,5,["G4914"]],[5,6,["G2443"]],[6,9,["G630"]],[9,11,["G5213"]],[11,12,["G1520"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G3957"]],[15,16,["G1014"]],[16,18,["G3767"]],[18,21,["G630"]],[21,23,["G5213"]],[23,24,["G3588"]],[24,25,["G935"]],[25,27,["G3588"]],[27,28,["G2453"]]]},{"k":26825,"v":[[0,1,["G3767"]],[1,2,["G2905"]],[2,4,["G3956"]],[4,5,["G3825"]],[5,6,["G3004"]],[6,7,["G3361"]],[7,9,["G5126"]],[9,10,["G235"]],[10,11,["G912"]],[11,12,["G1161"]],[12,13,["G912"]],[13,14,["G2258"]],[14,16,["G3027"]]]},{"k":26826,"v":[[0,1,["G5119"]],[1,2,["G4091"]],[2,3,["G3767"]],[3,4,["G2983"]],[4,5,["G2424"]],[5,6,["G2532"]],[6,7,["G3146"]],[7,8,[]]]},{"k":26827,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4757"]],[3,4,["G4120"]],[4,6,["G4735"]],[6,7,["G1537"]],[7,8,["G173"]],[8,12,["G2007"]],[12,13,["G846"]],[13,14,["G2776"]],[14,15,["G2532"]],[15,18,["G4016"]],[18,19,["G846"]],[19,21,["G4210"]],[21,22,["G2440"]]]},{"k":26828,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,3,["G5463"]],[3,4,["G935"]],[4,6,["G3588"]],[6,7,["G2453"]],[7,8,["G2532"]],[8,14,["G1325","G846","G4475"]]]},{"k":26829,"v":[[0,1,["G4091"]],[1,2,["G3767"]],[2,3,["G1831"]],[3,4,["G1854"]],[4,5,["G3825"]],[5,6,["G2532"]],[6,7,["G3004"]],[7,9,["G846"]],[9,10,["G2396"]],[10,12,["G71"]],[12,13,["G846"]],[13,14,["G1854"]],[14,16,["G5213"]],[16,17,["G2443"]],[17,20,["G1097"]],[20,21,["G3754"]],[21,23,["G2147"]],[23,24,["G3762"]],[24,25,["G156"]],[25,26,["G1722"]],[26,27,["G846"]]]},{"k":26830,"v":[[0,1,["G3767"]],[1,2,["G1831"]],[2,3,["G2424"]],[3,4,["G1854"]],[4,5,["G5409"]],[5,6,["G3588"]],[6,7,["G4735"]],[7,9,["G174"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G4210"]],[12,13,["G2440"]],[13,14,["G2532"]],[14,16,["G3004"]],[16,18,["G846"]],[18,19,["G2396"]],[19,20,["G3588"]],[20,21,["G444"]]]},{"k":26831,"v":[[0,1,["G3753"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G3767"]],[5,6,["G2532"]],[6,7,["G5257"]],[7,8,["G1492"]],[8,9,["G846"]],[9,12,["G2905"]],[12,13,["G3004"]],[13,14,["G4717"]],[14,16,["G4717"]],[16,18,["G4091"]],[18,19,["G3004"]],[19,21,["G846"]],[21,22,["G2983"]],[22,23,["G5210"]],[23,24,["G846"]],[24,25,["G2532"]],[25,26,["G4717"]],[26,28,["G1063"]],[28,29,["G1473"]],[29,30,["G2147"]],[30,31,["G3756"]],[31,32,["G156"]],[32,33,["G1722"]],[33,34,["G846"]]]},{"k":26832,"v":[[0,1,["G3588"]],[1,2,["G2453"]],[2,3,["G611"]],[3,4,["G846"]],[4,5,["G2249"]],[5,6,["G2192"]],[6,8,["G3551"]],[8,9,["G2532"]],[9,10,["G2596"]],[10,11,["G2257"]],[11,12,["G3551"]],[12,14,["G3784"]],[14,16,["G599"]],[16,17,["G3754"]],[17,19,["G4160"]],[19,20,["G1438"]],[20,22,["G5207"]],[22,24,["G2316"]]]},{"k":26833,"v":[[0,1,["G3753"]],[1,2,["G4091"]],[2,3,["G3767"]],[3,4,["G191"]],[4,5,["G5126"]],[5,6,["G3056"]],[6,11,["G5399","G3123"]]]},{"k":26834,"v":[[0,1,["G2532"]],[1,2,["G1525"]],[2,3,["G3825"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,7,["G4232"]],[7,8,["G2532"]],[8,9,["G3004"]],[9,11,["G2424"]],[11,12,["G4159"]],[12,13,["G1488"]],[13,14,["G4771"]],[14,15,["G1161"]],[15,16,["G2424"]],[16,17,["G1325"]],[17,18,["G846"]],[18,19,["G3756"]],[19,20,["G612"]]]},{"k":26835,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G4091"]],[3,5,["G846"]],[5,6,["G2980"]],[6,8,["G3756"]],[8,10,["G1698"]],[10,11,["G1492"]],[11,13,["G3756"]],[13,14,["G3754"]],[14,16,["G2192"]],[16,17,["G1849"]],[17,19,["G4717"]],[19,20,["G4571"]],[20,21,["G2532"]],[21,22,["G2192"]],[22,23,["G1849"]],[23,25,["G630"]],[25,26,["G4571"]]]},{"k":26836,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["(G3756)"]],[3,5,["G2192"]],[5,6,["G3762"]],[6,7,["G1849"]],[7,10,["G2596"]],[10,11,["G1700"]],[11,12,["G1487","G3361"]],[12,14,["G2258"]],[14,15,["G1325"]],[15,16,["G4571"]],[16,18,["G509"]],[18,19,["G1223","G5124"]],[19,22,["G3860"]],[22,23,["G3165"]],[23,25,["G4571"]],[25,26,["G2192"]],[26,28,["G3187"]],[28,29,["G266"]]]},{"k":26837,"v":[[0,2,["G1537"]],[2,3,["G5127"]],[3,4,["G4091"]],[4,5,["G2212"]],[5,7,["G630"]],[7,8,["G846"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G2453"]],[11,13,["G2896"]],[13,14,["G3004"]],[14,15,["G1437"]],[15,20,["G630","G5126"]],[20,22,["G1488"]],[22,23,["G3756"]],[23,24,["G2541"]],[24,25,["G5384"]],[25,26,["G3956"]],[26,27,["G4160"]],[27,28,["G848"]],[28,30,["G935"]],[30,32,["G483"]],[32,33,["G2541"]]]},{"k":26838,"v":[[0,2,["G4091"]],[2,3,["G3767"]],[3,4,["G191"]],[4,5,["G5126"]],[5,6,["G3056"]],[6,8,["G71"]],[8,9,["G2424"]],[9,10,["G1854"]],[10,11,["G2532"]],[11,13,["G2523"]],[13,14,["G1909"]],[14,15,["G3588"]],[15,17,["G968"]],[17,18,["G1519"]],[18,20,["G5117"]],[20,23,["G3004"]],[23,25,["G3038"]],[25,26,["G1161"]],[26,29,["G1447"]],[29,30,["G1042"]]]},{"k":26839,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,5,["G3904"]],[5,7,["G3588"]],[7,8,["G3957"]],[8,9,["G1161"]],[9,10,["G5616"]],[10,12,["G1623"]],[12,13,["G5610"]],[13,14,["G2532"]],[14,16,["G3004"]],[16,18,["G3588"]],[18,19,["G2453"]],[19,20,["G2396"]],[20,21,["G5216"]],[21,22,["G935"]]]},{"k":26840,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G2905"]],[4,6,["G142"]],[6,9,["G142"]],[9,11,["G4717"]],[11,12,["G846"]],[12,13,["G4091"]],[13,14,["G3004"]],[14,16,["G846"]],[16,19,["G4717"]],[19,20,["G5216"]],[20,21,["G935"]],[21,22,["G3588"]],[22,24,["G749"]],[24,25,["G611"]],[25,27,["G2192"]],[27,28,["G3756"]],[28,29,["G935"]],[29,30,["G1508"]],[30,31,["G2541"]]]},{"k":26841,"v":[[0,1,["G5119"]],[1,2,["G3860"]],[2,4,["G846"]],[4,5,["G3767"]],[5,7,["G846"]],[7,10,["G4717"]],[10,11,["G1161"]],[11,13,["G3880"]],[13,14,["G2424"]],[14,15,["G2532"]],[15,18,["G520"]]]},{"k":26842,"v":[[0,1,["G2532"]],[1,3,["G941"]],[3,4,["G848"]],[4,5,["G4716"]],[5,7,["G1831"]],[7,8,["G1519"]],[8,10,["G5117"]],[10,11,["G3004"]],[11,16,["G2898"]],[16,17,["G3739"]],[17,19,["G3004"]],[19,22,["G1447"]],[22,23,["G1115"]]]},{"k":26843,"v":[[0,1,["G3699"]],[1,3,["G4717"]],[3,4,["G846"]],[4,5,["G2532"]],[5,6,["G1417"]],[6,7,["G243"]],[7,8,["G3326"]],[8,9,["G846"]],[9,13,["G1782","G2532","G1782"]],[13,14,["G1161"]],[14,15,["G2424"]],[15,18,["G3319"]]]},{"k":26844,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,3,["G1125"]],[3,5,["G5102"]],[5,6,["G2532"]],[6,7,["G5087"]],[7,9,["G1909"]],[9,10,["G3588"]],[10,11,["G4716"]],[11,12,["G1161"]],[12,14,["G1125"]],[14,15,["G2258"]],[15,16,["G2424"]],[16,18,["G3480"]],[18,19,["G3588"]],[19,20,["G935"]],[20,22,["G3588"]],[22,23,["G2453"]]]},{"k":26845,"v":[[0,1,["G5126"]],[1,2,["G5102"]],[2,3,["G3767"]],[3,4,["G314"]],[4,5,["G4183"]],[5,7,["G3588"]],[7,8,["G2453"]],[8,9,["G3754"]],[9,10,["G3588"]],[10,11,["G5117"]],[11,12,["G3699"]],[12,13,["G2424"]],[13,15,["G4717"]],[15,16,["G2258"]],[16,18,["G1451"]],[18,19,["G3588"]],[19,20,["G4172"]],[20,21,["G2532"]],[21,23,["G2258"]],[23,24,["G1125"]],[24,26,["G1447"]],[26,28,["G1676"]],[28,30,["G4515"]]]},{"k":26846,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G3588"]],[3,5,["G749"]],[5,7,["G3588"]],[7,8,["G2453"]],[8,10,["G4091"]],[10,11,["G1125"]],[11,12,["G3361"]],[12,13,["G3588"]],[13,14,["G935"]],[14,16,["G3588"]],[16,17,["G2453"]],[17,18,["G235"]],[18,19,["G3754"]],[19,20,["G1565"]],[20,22,["G2036"]],[22,23,["G1510"]],[23,24,["G935"]],[24,26,["G3588"]],[26,27,["G2453"]]]},{"k":26847,"v":[[0,1,["G4091"]],[1,2,["G611"]],[2,3,["G3739"]],[3,6,["G1125"]],[6,9,["G1125"]]]},{"k":26848,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,3,["G4757"]],[3,4,["G3753"]],[4,7,["G4717"]],[7,8,["G2424"]],[8,9,["G2983"]],[9,10,["G846"]],[10,11,["G2440"]],[11,12,["G2532"]],[12,13,["G4160"]],[13,14,["G5064"]],[14,15,["G3313"]],[15,17,["G1538"]],[17,18,["G4757"]],[18,20,["G3313"]],[20,21,["G2532"]],[21,24,["G5509"]],[24,25,["G1161"]],[25,26,["G3588"]],[26,27,["G5509"]],[27,28,["G2258"]],[28,30,["G729"]],[30,31,["G5307"]],[31,32,["G1537"]],[32,33,["G3588"]],[33,34,["G509"]],[34,35,["G1223","G3650"]]]},{"k":26849,"v":[[0,2,["G2036"]],[2,3,["G3767"]],[3,4,["G4314"]],[4,5,["G240"]],[5,8,["G3361"]],[8,9,["G4977"]],[9,10,["G846"]],[10,11,["G235"]],[11,13,["G2975"]],[13,14,["G4012"]],[14,15,["G846"]],[15,16,["G5101"]],[16,19,["G2071"]],[19,20,["G2443"]],[20,21,["G3588"]],[21,22,["G1124"]],[22,25,["G4137"]],[25,27,["G3004"]],[27,29,["G1266"]],[29,30,["G3450"]],[30,31,["G2440"]],[31,33,["G1438"]],[33,34,["G2532"]],[34,35,["G1909"]],[35,36,["G3450"]],[36,37,["G2441"]],[37,40,["G906"]],[40,41,["G2819"]],[41,43,["G5023"]],[43,44,["G3767","(G3303)"]],[44,45,["G3588"]],[45,46,["G4757"]],[46,47,["G4160"]]]},{"k":26850,"v":[[0,1,["G1161"]],[1,3,["G2476"]],[3,4,["G3844"]],[4,5,["G3588"]],[5,6,["G4716"]],[6,8,["G2424"]],[8,9,["G846"]],[9,10,["G3384"]],[10,11,["G2532"]],[11,12,["G846"]],[12,13,["G3384"]],[13,14,["G79"]],[14,15,["G3137"]],[15,16,["G3588"]],[16,19,["G2832"]],[19,20,["G2532"]],[20,21,["G3137"]],[21,22,["G3094"]]]},{"k":26851,"v":[[0,2,["G2424"]],[2,3,["G3767"]],[3,4,["G1492"]],[4,6,["G3384"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G3101"]],[9,11,["G3936"]],[11,12,["G3739"]],[12,14,["G25"]],[14,16,["G3004"]],[16,18,["G848"]],[18,19,["G3384"]],[19,20,["G1135"]],[20,21,["G2400"]],[21,22,["G4675"]],[22,23,["G5207"]]]},{"k":26852,"v":[[0,1,["G1534"]],[1,2,["G3004"]],[2,5,["G3588"]],[5,6,["G3101"]],[6,7,["G2400"]],[7,8,["G4675"]],[8,9,["G3384"]],[9,10,["G2532"]],[10,11,["G575"]],[11,12,["G1565"]],[12,13,["G5610"]],[13,15,["G3101"]],[15,16,["G2983"]],[16,17,["G846"]],[17,18,["G1519"]],[18,20,["G2398"]],[20,21,[]]]},{"k":26853,"v":[[0,1,["G3326"]],[1,2,["G5124"]],[2,3,["G2424"]],[3,4,["G1492"]],[4,5,["G3754"]],[5,7,["G3956"]],[7,9,["G2235"]],[9,10,["G5055"]],[10,11,["G2443"]],[11,12,["G3588"]],[12,13,["G1124"]],[13,16,["G5048"]],[16,17,["G3004"]],[17,19,["G1372"]]]},{"k":26854,"v":[[0,1,["G3767"]],[1,4,["G2749"]],[4,6,["G4632"]],[6,7,["G3324"]],[7,9,["G3690"]],[9,10,["G1161"]],[10,11,["G3588"]],[11,12,["G4130"]],[12,14,["G4699"]],[14,16,["G3690"]],[16,17,["G2532"]],[17,20,["G4060"]],[20,21,["G5301"]],[21,22,["G2532"]],[22,24,["G4374"]],[24,26,["G846"]],[26,27,["G4750"]]]},{"k":26855,"v":[[0,1,["G3753"]],[1,2,["G2424"]],[2,3,["G3767"]],[3,5,["G2983"]],[5,6,["G3588"]],[6,7,["G3690"]],[7,9,["G2036"]],[9,12,["G5055"]],[12,13,["G2532"]],[13,15,["G2827"]],[15,17,["G2776"]],[17,20,["G3860"]],[20,21,["G3588"]],[21,22,["G4151"]]]},{"k":26856,"v":[[0,1,["G3588"]],[1,2,["G2453"]],[2,3,["G3767"]],[3,4,["G1893"]],[4,6,["G2258"]],[6,8,["G3904"]],[8,9,["G2443"]],[9,10,["G3588"]],[10,11,["G4983"]],[11,13,["G3361"]],[13,14,["G3306"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,17,["G4716"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,21,["G4521"]],[21,22,["G1063"]],[22,23,["G1565"]],[23,24,["G4521"]],[24,25,["G2250"]],[25,26,["G2258"]],[26,29,["G3173"]],[29,30,["G2065"]],[30,31,["G4091"]],[31,32,["G2443"]],[32,33,["G846"]],[33,34,["G4628"]],[34,37,["G2608"]],[37,38,["G2532"]],[38,44,["G142"]]]},{"k":26857,"v":[[0,1,["G3767"]],[1,2,["G2064"]],[2,3,["G3588"]],[3,4,["G4757"]],[4,5,["G2532"]],[5,6,["G2608"]],[6,7,["G3588"]],[7,8,["G4628"]],[8,10,["G3588"]],[10,11,["G4413"]],[11,12,["G2532"]],[12,14,["G3588"]],[14,15,["G243"]],[15,19,["G4957"]],[19,20,["G846"]]]},{"k":26858,"v":[[0,1,["G1161"]],[1,4,["G2064"]],[4,5,["G1909"]],[5,6,["G2424"]],[6,7,["(G5613)"]],[7,8,["G1492"]],[8,10,["G846"]],[10,12,["G2348"]],[12,13,["G2235"]],[13,15,["G2608"]],[15,16,["G3756"]],[16,17,["G846"]],[17,18,["G4628"]]]},{"k":26859,"v":[[0,1,["G235"]],[1,2,["G1520"]],[2,4,["G3588"]],[4,5,["G4757"]],[5,8,["G3057"]],[8,9,["G3572"]],[9,10,["G846"]],[10,11,["G4125"]],[11,12,["G2532"]],[12,13,["G2117"]],[13,16,["G1831"]],[16,17,["G129"]],[17,18,["G2532"]],[18,19,["G5204"]]]},{"k":26860,"v":[[0,1,["G2532"]],[1,4,["G3708"]],[4,7,["G3140"]],[7,8,["G2532"]],[8,9,["G846"]],[9,10,["G3141"]],[10,11,["G2076"]],[11,12,["G228"]],[12,14,["G2548"]],[14,15,["G1492"]],[15,16,["G3754"]],[16,18,["G3004"]],[18,19,["G227"]],[19,20,["G2443"]],[20,21,["G5210"]],[21,23,["G4100"]]]},{"k":26861,"v":[[0,1,["G1063"]],[1,3,["G5023"]],[3,5,["G1096"]],[5,6,["G2443"]],[6,7,["G3588"]],[7,8,["G1124"]],[8,11,["G4137"]],[11,13,["G3747"]],[13,15,["G846"]],[15,17,["G3756"]],[17,19,["G4937"]]]},{"k":26862,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,3,["G2087"]],[3,4,["G1124"]],[4,5,["G3004"]],[5,8,["G3700"]],[8,9,["G1519"]],[9,11,["G3739"]],[11,13,["G1574"]]]},{"k":26863,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,3,["G5023"]],[3,4,["G2501"]],[4,5,["G575"]],[5,6,["G707"]],[6,7,["G5607"]],[7,9,["G3101"]],[9,11,["G2424"]],[11,12,["G1161"]],[12,13,["G2928"]],[13,14,["G1223"]],[14,15,["G5401"]],[15,17,["G3588"]],[17,18,["G2453"]],[18,19,["G2065"]],[19,20,["G4091"]],[20,21,["G2443"]],[21,25,["G142"]],[25,26,["G3588"]],[26,27,["G4983"]],[27,29,["G2424"]],[29,30,["G2532"]],[30,31,["G4091"]],[31,34,["G2010"]],[34,36,["G2064"]],[36,37,["G3767"]],[37,38,["G2532"]],[38,39,["G142"]],[39,40,["G3588"]],[40,41,["G4983"]],[41,43,["G2424"]]]},{"k":26864,"v":[[0,1,["G1161"]],[1,3,["G2064"]],[3,4,["G2532"]],[4,5,["G3530"]],[5,10,["G2064","G4412"]],[10,11,["G4314"]],[11,12,["G2424"]],[12,14,["G3571"]],[14,16,["G5342"]],[16,18,["G3395"]],[18,20,["G4666"]],[20,21,["G2532"]],[21,22,["G250"]],[22,23,["G5616"]],[23,25,["G1540"]],[25,26,["G3046"]],[26,27,[]]]},{"k":26865,"v":[[0,1,["G3767"]],[1,2,["G2983"]],[2,4,["G3588"]],[4,5,["G4983"]],[5,7,["G2424"]],[7,8,["G2532"]],[8,9,["G1210"]],[9,10,["G846"]],[10,13,["G3608"]],[13,14,["G3326"]],[14,15,["G3588"]],[15,16,["G759"]],[16,17,["G2531"]],[17,19,["G1485"]],[19,21,["G3588"]],[21,22,["G2453"]],[22,23,["G2076"]],[23,25,["G1779"]]]},{"k":26866,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G5117"]],[4,5,["G3699"]],[5,8,["G4717"]],[8,10,["G2258"]],[10,12,["G2779"]],[12,13,["G2532"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G2779"]],[16,18,["G2537"]],[18,19,["G3419"]],[19,20,["G1722","G3739"]],[20,24,["G3764","G3762"]],[24,25,["G5087"]]]},{"k":26867,"v":[[0,1,["G1563"]],[1,2,["G5087"]],[2,4,["G2424"]],[4,5,["G3767"]],[5,7,["G1223"]],[7,8,["G3588"]],[8,9,["G2453"]],[9,10,["G3904"]],[10,12,["G3754"]],[12,13,["G3588"]],[13,14,["G3419"]],[14,15,["G2258"]],[15,18,["G1451"]]]},{"k":26868,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G3391"]],[2,5,["G3588"]],[5,6,["G4521"]],[6,7,["G2064"]],[7,8,["G3137"]],[8,9,["G3094"]],[9,10,["G4404"]],[10,13,["G5607"]],[13,14,["G2089"]],[14,15,["G4653"]],[15,16,["G1519"]],[16,17,["G3588"]],[17,18,["G3419"]],[18,19,["G2532"]],[19,20,["G991"]],[20,21,["G3588"]],[21,22,["G3037"]],[22,24,["G142"]],[24,25,["G1537"]],[25,26,["G3588"]],[26,27,["G3419"]]]},{"k":26869,"v":[[0,1,["G3767"]],[1,3,["G5143"]],[3,4,["G2532"]],[4,5,["G2064"]],[5,6,["G4314"]],[6,7,["G4613"]],[7,8,["G4074"]],[8,9,["G2532"]],[9,10,["G4314"]],[10,11,["G3588"]],[11,12,["G243"]],[12,13,["G3101"]],[13,14,["G3739"]],[14,15,["G2424"]],[15,16,["G5368"]],[16,17,["G2532"]],[17,18,["G3004"]],[18,20,["G846"]],[20,24,["G142"]],[24,25,["G3588"]],[25,26,["G2962"]],[26,27,["G1537"]],[27,29,["G3588"]],[29,30,["G3419"]],[30,31,["G2532"]],[31,33,["G1492"]],[33,34,["G3756"]],[34,35,["G4226"]],[35,38,["G5087"]],[38,39,["G846"]]]},{"k":26870,"v":[[0,1,["G4074"]],[1,2,["G3767"]],[2,4,["G1831"]],[4,5,["G2532"]],[5,7,["G243"]],[7,8,["G3101"]],[8,9,["G2532"]],[9,10,["G2064"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G3419"]]]},{"k":26871,"v":[[0,1,["G1161"]],[1,3,["G5143"]],[3,4,["G1417"]],[4,5,["G3674"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G243"]],[8,9,["G3101"]],[9,11,["G4390","G5032"]],[11,12,["G4074"]],[12,13,["G2532"]],[13,14,["G2064"]],[14,15,["G4413"]],[15,16,["G1519"]],[16,17,["G3588"]],[17,18,["G3419"]]]},{"k":26872,"v":[[0,1,["G2532"]],[1,4,["G3879"]],[4,8,["G991"]],[8,9,["G3588"]],[9,11,["G3608"]],[11,12,["G2749"]],[12,13,["G3305"]],[13,17,["G1525","G3756"]]]},{"k":26873,"v":[[0,1,["G3767"]],[1,2,["G2064"]],[2,3,["G4613"]],[3,4,["G4074"]],[4,5,["G190"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G1525"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G3419"]],[11,12,["G2532"]],[12,13,["G2334"]],[13,14,["G3588"]],[14,16,["G3608"]],[16,17,["G2749"]]]},{"k":26874,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4676"]],[3,4,["G3739"]],[4,5,["G2258"]],[5,6,["G1909"]],[6,7,["G846"]],[7,8,["G2776"]],[8,9,["G3756"]],[9,10,["G2749"]],[10,11,["G3326"]],[11,12,["G3588"]],[12,14,["G3608"]],[14,15,["G235"]],[15,17,["G1794"]],[17,18,["G1519"]],[18,19,["G1520"]],[19,20,["G5117"]],[20,22,["G5565"]]]},{"k":26875,"v":[[0,1,["G5119"]],[1,3,["G1525"]],[3,4,["G2532"]],[4,5,["(G3767)"]],[5,6,["G243"]],[6,7,["G3101"]],[7,9,["G2064"]],[9,10,["G4413"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G3419"]],[13,14,["G2532"]],[14,16,["G1491"]],[16,17,["G2532"]],[17,18,["G4100"]]]},{"k":26876,"v":[[0,1,["G1063"]],[1,6,["G3764","G1492"]],[6,7,["G3588"]],[7,8,["G1124"]],[8,9,["G3754"]],[9,10,["G846"]],[10,11,["G1163"]],[11,13,["G450"]],[13,14,["G1537"]],[14,16,["G3498"]]]},{"k":26877,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,5,["G565"]],[5,6,["G3825"]],[6,7,["G4314"]],[7,10,["G1438"]]]},{"k":26878,"v":[[0,1,["G1161"]],[1,2,["G3137"]],[2,3,["G2476"]],[3,4,["G1854"]],[4,5,["G4314"]],[5,6,["G3588"]],[6,7,["G3419"]],[7,8,["G2799"]],[8,9,["G3767"]],[9,10,["G5613"]],[10,12,["G2799"]],[12,15,["G3879"]],[15,18,["G1519"]],[18,19,["G3588"]],[19,20,["G3419"]]]},{"k":26879,"v":[[0,1,["G2532"]],[1,2,["G2334"]],[2,3,["G1417"]],[3,4,["G32"]],[4,5,["G1722"]],[5,6,["G3022"]],[6,7,["G2516"]],[7,9,["G1520"]],[9,10,["G4314"]],[10,11,["G3588"]],[11,12,["G2776"]],[12,13,["G2532"]],[13,15,["G1520"]],[15,16,["G4314"]],[16,17,["G3588"]],[17,18,["G4228"]],[18,19,["G3699"]],[19,20,["G3588"]],[20,21,["G4983"]],[21,23,["G2424"]],[23,25,["G2749"]]]},{"k":26880,"v":[[0,1,["G2532"]],[1,2,["G1565"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G1135"]],[6,7,["G5101"]],[7,8,["G2799"]],[8,11,["G3004"]],[11,13,["G846"]],[13,14,["G3754"]],[14,18,["G142"]],[18,19,["G3450"]],[19,20,["G2962"]],[20,21,["G2532"]],[21,23,["G1492"]],[23,24,["G3756"]],[24,25,["G4226"]],[25,28,["G5087"]],[28,29,["G846"]]]},{"k":26881,"v":[[0,1,["G2532"]],[1,5,["G5023"]],[5,6,["G2036"]],[6,8,["G4762"]],[8,10,["G1519","G3694"]],[10,11,["G2532"]],[11,12,["G2334"]],[12,13,["G2424"]],[13,14,["G2476"]],[14,15,["G2532"]],[15,16,["G1492"]],[16,17,["G3756"]],[17,18,["G3754"]],[18,20,["G2076"]],[20,21,["G2424"]]]},{"k":26882,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1135"]],[5,6,["G5101"]],[6,7,["G2799"]],[7,9,["G5101"]],[9,10,["G2212"]],[10,12,["G1565"]],[12,13,["G1380"]],[13,14,["(G3754)"]],[14,16,["G2076"]],[16,17,["G3588"]],[17,18,["G2780"]],[18,19,["G3004"]],[19,21,["G846"]],[21,22,["G2962"]],[22,23,["G1487"]],[23,24,["G4771"]],[24,26,["G941"]],[26,27,["G846"]],[27,29,["G2036"]],[29,30,["G3427"]],[30,31,["G4226"]],[31,34,["G5087"]],[34,35,["G846"]],[35,37,["G2504"]],[37,41,["G142","G846"]]]},{"k":26883,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G3137"]],[5,6,["G1565"]],[6,7,["G4762"]],[7,10,["G3004"]],[10,12,["G846"]],[12,13,["G4462"]],[13,17,["G3739","G3004"]],[17,18,["G1320"]]]},{"k":26884,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G680"]],[5,6,["G3450"]],[6,7,["G3361"]],[7,8,["G1063"]],[8,12,["G3768"]],[12,13,["G305"]],[13,14,["G4314"]],[14,15,["G3450"]],[15,16,["G3962"]],[16,17,["G1161"]],[17,18,["G4198"]],[18,19,["G4314"]],[19,20,["G3450"]],[20,21,["G80"]],[21,22,["G2532"]],[22,23,["G2036"]],[23,25,["G846"]],[25,27,["G305"]],[27,28,["G4314"]],[28,29,["G3450"]],[29,30,["G3962"]],[30,31,["G2532"]],[31,32,["G5216"]],[32,33,["G3962"]],[33,34,["G2532"]],[34,36,["G3450"]],[36,37,["G2316"]],[37,38,["G2532"]],[38,39,["G5216"]],[39,40,["G2316"]]]},{"k":26885,"v":[[0,1,["G3137"]],[1,2,["G3094"]],[2,3,["G2064"]],[3,5,["G518"]],[5,6,["G3588"]],[6,7,["G3101"]],[7,8,["G3754"]],[8,11,["G3708"]],[11,12,["G3588"]],[12,13,["G2962"]],[13,14,["G2532"]],[14,18,["G2036"]],[18,20,["G5023"]],[20,22,["G846"]]]},{"k":26886,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,3,["G1565"]],[3,4,["G2250"]],[4,6,["G3798"]],[6,7,["G5607"]],[7,8,["G3588"]],[8,9,["G3391"]],[9,12,["G3588"]],[12,13,["G4521"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G2374"]],[16,18,["G2808"]],[18,19,["G3699"]],[19,20,["G3588"]],[20,21,["G3101"]],[21,22,["G2258"]],[22,23,["G4863"]],[23,24,["G1223"]],[24,25,["G5401"]],[25,27,["G3588"]],[27,28,["G2453"]],[28,29,["G2064"]],[29,30,["G2424"]],[30,31,["G2532"]],[31,32,["G2476"]],[32,33,["G1519"]],[33,34,["G3588"]],[34,35,["G3319"]],[35,36,["G2532"]],[36,37,["G3004"]],[37,39,["G846"]],[39,40,["G1515"]],[40,43,["G5213"]]]},{"k":26887,"v":[[0,1,["G2532"]],[1,5,["G5124"]],[5,6,["G2036"]],[6,8,["G1166"]],[8,10,["G846"]],[10,12,["G5495"]],[12,13,["G2532"]],[13,14,["G848"]],[14,15,["G4125"]],[15,16,["G3767"]],[16,20,["G5463","G3588","G3101"]],[20,23,["G1492"]],[23,24,["G3588"]],[24,25,["G2962"]]]},{"k":26888,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,5,["G846"]],[5,6,["G3825"]],[6,7,["G1515"]],[7,10,["G5213"]],[10,11,["G2531"]],[11,13,["G3962"]],[13,15,["G649"]],[15,16,["G3165"]],[16,20,["G2504","G3992"]],[20,21,["G5209"]]]},{"k":26889,"v":[[0,1,["G2532"]],[1,5,["G2036"]],[5,6,["G5124"]],[6,9,["G1720"]],[9,11,["G2532"]],[11,12,["G3004"]],[12,14,["G846"]],[14,15,["G2983"]],[15,18,["G40"]],[18,19,["G4151"]]]},{"k":26890,"v":[[0,2,["G5100","G302"]],[2,3,["G266"]],[3,5,["G863"]],[5,8,["G863"]],[8,10,["G846"]],[10,13,["G5100","G302"]],[13,16,["G2902"]],[16,19,["G2902"]]]},{"k":26891,"v":[[0,1,["G1161"]],[1,2,["G2381"]],[2,3,["G1520"]],[3,4,["G1537"]],[4,5,["G3588"]],[5,6,["G1427"]],[6,7,["G3004"]],[7,8,["G1324"]],[8,9,["G2258"]],[9,10,["G3756"]],[10,11,["G3326"]],[11,12,["G846"]],[12,13,["G3753"]],[13,14,["G2424"]],[14,15,["G2064"]]]},{"k":26892,"v":[[0,1,["G3588"]],[1,2,["G243"]],[2,3,["G3101"]],[3,4,["G3767"]],[4,5,["G3004"]],[5,7,["G846"]],[7,10,["G3708"]],[10,11,["G3588"]],[11,12,["G2962"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G2036"]],[15,17,["G846"]],[17,18,["G3362"]],[18,21,["G1492"]],[21,22,["G1722"]],[22,23,["G846"]],[23,24,["G5495"]],[24,25,["G3588"]],[25,26,["G5179"]],[26,28,["G3588"]],[28,29,["G2247"]],[29,30,["G2532"]],[30,31,["G906"]],[31,32,["G3450"]],[32,33,["G1147"]],[33,34,["G1519"]],[34,35,["G3588"]],[35,36,["G5179"]],[36,38,["G3588"]],[38,39,["G2247"]],[39,40,["G2532"]],[40,41,["G906"]],[41,42,["G3450"]],[42,43,["G5495"]],[43,44,["G1519"]],[44,45,["G846"]],[45,46,["G4125"]],[46,49,["G3364"]],[49,50,["G4100"]]]},{"k":26893,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,3,["G3638"]],[3,4,["G2250"]],[4,5,["G3825"]],[5,6,["G846"]],[6,7,["G3101"]],[7,8,["G2258"]],[8,9,["G2080"]],[9,10,["G2532"]],[10,11,["G2381"]],[11,12,["G3326"]],[12,13,["G846"]],[13,15,["G2064"]],[15,16,["G2424"]],[16,17,["G3588"]],[17,18,["G2374"]],[18,20,["G2808"]],[20,21,["G2532"]],[21,22,["G2476"]],[22,23,["G1519"]],[23,24,["G3588"]],[24,25,["G3319"]],[25,26,["G2532"]],[26,27,["G2036"]],[27,28,["G1515"]],[28,31,["G5213"]]]},{"k":26894,"v":[[0,1,["G1534"]],[1,2,["G3004"]],[2,5,["G2381"]],[5,6,["G5342"]],[6,7,["G5602"]],[7,8,["G4675"]],[8,9,["G1147"]],[9,10,["G2532"]],[10,11,["G1492"]],[11,12,["G3450"]],[12,13,["G5495"]],[13,14,["G2532"]],[14,15,["G5342"]],[15,17,["G4675"]],[17,18,["G5495"]],[18,19,["G2532"]],[19,20,["G906"]],[20,22,["G1519"]],[22,23,["G3450"]],[23,24,["G4125"]],[24,25,["G2532"]],[25,26,["G1096"]],[26,27,["G3361"]],[27,28,["G571"]],[28,29,["G235"]],[29,30,["G4103"]]]},{"k":26895,"v":[[0,1,["G2532"]],[1,2,["G2381"]],[2,3,["G611"]],[3,4,["G2532"]],[4,5,["G2036"]],[5,7,["G846"]],[7,8,["G3450"]],[8,9,["G2962"]],[9,10,["G2532"]],[10,11,["G3450"]],[11,12,["G2316"]]]},{"k":26896,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G2381"]],[5,6,["G3754"]],[6,9,["G3708"]],[9,10,["G3165"]],[10,13,["G4100"]],[13,14,["G3107"]],[14,20,["G1492","G3361"]],[20,21,["G2532"]],[21,24,["G4100"]]]},{"k":26897,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,3,["G243"]],[3,4,["G4592"]],[4,5,["G3303"]],[5,6,["G4160"]],[6,7,["G2424"]],[7,10,["G1799"]],[10,12,["G848"]],[12,13,["G3101"]],[13,14,["G3739"]],[14,15,["G2076"]],[15,16,["G3756"]],[16,17,["G1125"]],[17,18,["G1722"]],[18,19,["G5129"]],[19,20,["G975"]]]},{"k":26898,"v":[[0,1,["G1161"]],[1,2,["G5023"]],[2,4,["G1125"]],[4,5,["G2443"]],[5,8,["G4100"]],[8,9,["G3754"]],[9,10,["G2424"]],[10,11,["G2076"]],[11,12,["G3588"]],[12,13,["G5547"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,17,["G2316"]],[17,18,["G2532"]],[18,19,["G2443"]],[19,20,["G4100"]],[20,23,["G2192"]],[23,24,["G2222"]],[24,25,["G1722"]],[25,26,["G846"]],[26,27,["G3686"]]]},{"k":26899,"v":[[0,1,["G3326"]],[1,3,["G5023"]],[3,4,["G2424"]],[4,5,["G5319"]],[5,6,["G1438"]],[6,7,["G3825"]],[7,9,["G3588"]],[9,10,["G3101"]],[10,11,["G1909"]],[11,12,["G3588"]],[12,13,["G2281"]],[13,15,["G5085"]],[15,16,["G1161"]],[16,19,["G3779"]],[19,20,["G5319"]],[20,22,[]]]},{"k":26900,"v":[[0,2,["G2258"]],[2,3,["G3674"]],[3,4,["G4613"]],[4,5,["G4074"]],[5,6,["G2532"]],[6,7,["G2381"]],[7,8,["G3004"]],[8,9,["G1324"]],[9,10,["G2532"]],[10,11,["G3482"]],[11,12,["G575"]],[12,13,["G2580"]],[13,15,["G1056"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,20,["G2199"]],[20,21,["G2532"]],[21,22,["G1417"]],[22,23,["G243"]],[23,24,["G1537"]],[24,25,["G846"]],[25,26,["G3101"]]]},{"k":26901,"v":[[0,1,["G4613"]],[1,2,["G4074"]],[2,3,["G3004"]],[3,5,["G846"]],[5,7,["G5217"]],[7,9,["G232"]],[9,11,["G3004"]],[11,13,["G846"]],[13,14,["G2249"]],[14,15,["G2532"]],[15,16,["G2064"]],[16,17,["G4862"]],[17,18,["G4671"]],[18,21,["G1831"]],[21,22,["G2532"]],[22,23,["G305"]],[23,24,["G1519"]],[24,26,["G4143"]],[26,27,["G2117"]],[27,28,["G2532"]],[28,29,["G1565"]],[29,30,["G3571"]],[30,32,["G4084"]],[32,33,["G3762"]]]},{"k":26902,"v":[[0,1,["G1161"]],[1,4,["G4405"]],[4,6,["G2235"]],[6,7,["G1096"]],[7,8,["G2424"]],[8,9,["G2476"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G123"]],[12,13,["G3305"]],[13,14,["G3588"]],[14,15,["G3101"]],[15,16,["G1492"]],[16,17,["G3756"]],[17,18,["G3754"]],[18,20,["G2076"]],[20,21,["G2424"]]]},{"k":26903,"v":[[0,1,["G3767"]],[1,2,["G2424"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G3813"]],[6,7,["G2192"]],[7,9,["G3387"]],[9,10,["G4371"]],[10,12,["G611"]],[12,13,["G846"]],[13,14,["G3756"]]]},{"k":26904,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G906"]],[6,7,["G3588"]],[7,8,["G1350"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G1188"]],[11,12,["G3313"]],[12,14,["G3588"]],[14,15,["G4143"]],[15,16,["G2532"]],[16,19,["G2147"]],[19,21,["G906"]],[21,22,["G3767"]],[22,23,["G2532"]],[23,24,["G2089"]],[24,28,["G2480","G3756"]],[28,30,["G1670"]],[30,31,["G846"]],[31,32,["G575"]],[32,33,["G3588"]],[33,34,["G4128"]],[34,36,["G2486"]]]},{"k":26905,"v":[[0,1,["G3767"]],[1,2,["G1565"]],[2,3,["G3101"]],[3,4,["G3739"]],[4,5,["G2424"]],[5,6,["G25"]],[6,7,["G3004"]],[7,9,["G4074"]],[9,11,["G2076"]],[11,12,["G3588"]],[12,13,["G2962"]],[13,14,["G3767"]],[14,16,["G4613"]],[16,17,["G4074"]],[17,18,["G191"]],[18,19,["G3754"]],[19,21,["G2076"]],[21,22,["G3588"]],[22,23,["G2962"]],[23,25,["G1241"]],[25,28,["G1903"]],[28,31,["G1063"]],[31,33,["G2258"]],[33,34,["G1131"]],[34,35,["G2532"]],[35,37,["G906"]],[37,38,["G1438"]],[38,39,["G1519"]],[39,40,["G3588"]],[40,41,["G2281"]]]},{"k":26906,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G243"]],[3,4,["G3101"]],[4,5,["G2064"]],[5,9,["G4142"]],[9,10,["G1063"]],[10,12,["G2258"]],[12,13,["G3756"]],[13,14,["G3112"]],[14,15,["G575"]],[15,16,["G1093"]],[16,17,["G235"]],[17,20,["G5613"]],[20,21,["(G575)"]],[21,22,["G1250"]],[22,23,["G4083"]],[23,24,["G4951"]],[24,25,["G3588"]],[25,26,["G1350"]],[26,28,["G2486"]]]},{"k":26907,"v":[[0,4,["G5613","G3767"]],[4,7,["G576"]],[7,8,["G1519"]],[8,9,["G1093"]],[9,11,["G991"]],[11,15,["G439"]],[15,16,["(G2749)"]],[16,17,["G2532"]],[17,18,["G3795"]],[18,20,["G1945"]],[20,21,["G2532"]],[21,22,["G740"]]]},{"k":26908,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G5342"]],[5,6,["G575"]],[6,7,["G3588"]],[7,8,["G3795"]],[8,9,["G3739"]],[9,12,["G3568"]],[12,13,["G4084"]]]},{"k":26909,"v":[[0,1,["G4613"]],[1,2,["G4074"]],[2,4,["G305"]],[4,5,["G2532"]],[5,6,["G1670"]],[6,7,["G3588"]],[7,8,["G1350"]],[8,9,["G1909"]],[9,10,["G1093"]],[10,11,["G3324"]],[11,13,["G3173"]],[13,14,["G2486"]],[14,20,["G1540","G4004","G5140"]],[20,21,["G2532"]],[21,25,["G5607"]],[25,27,["G5118"]],[27,30,["G3756"]],[30,31,["G3588"]],[31,32,["G1350"]],[32,33,["G4977"]]]},{"k":26910,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1205"]],[5,7,["G709"]],[7,8,["G1161"]],[8,9,["G3762"]],[9,11,["G3588"]],[11,12,["G3101"]],[12,13,["G5111"]],[13,14,["G1833"]],[14,15,["G846"]],[15,16,["G5101"]],[16,17,["G1488"]],[17,18,["G4771"]],[18,19,["G1492"]],[19,20,["G3754"]],[20,22,["G2076"]],[22,23,["G3588"]],[23,24,["G2962"]]]},{"k":26911,"v":[[0,1,["G2424"]],[1,2,["G3767"]],[2,3,["G2064"]],[3,4,["G2532"]],[4,5,["G2983"]],[5,6,["G740"]],[6,7,["G2532"]],[7,8,["G1325"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G3795"]],[11,12,["G3668"]]]},{"k":26912,"v":[[0,1,["G5124"]],[1,3,["G2235"]],[3,6,["G5154"]],[6,8,["G2424"]],[8,9,["G5319"]],[9,12,["G848"]],[12,13,["G3101"]],[13,18,["G1453"]],[18,19,["G1537"]],[19,21,["G3498"]]]},{"k":26913,"v":[[0,1,["G3767"]],[1,2,["G3753"]],[2,5,["G709"]],[5,6,["G2424"]],[6,7,["G3004"]],[7,9,["G4613"]],[9,10,["G4074"]],[10,11,["G4613"]],[11,14,["G2495"]],[14,15,["G25"]],[15,17,["G3165"]],[17,18,["G4119"]],[18,21,["G5130"]],[21,22,["G3004"]],[22,24,["G846"]],[24,25,["G3483"]],[25,26,["G2962"]],[26,27,["G4771"]],[27,28,["G1492"]],[28,29,["G3754"]],[29,31,["G5368"]],[31,32,["G4571"]],[32,34,["G3004"]],[34,36,["G846"]],[36,37,["G1006"]],[37,38,["G3450"]],[38,39,["G721"]]]},{"k":26914,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G3825"]],[5,8,["G1208"]],[8,9,["G4613"]],[9,12,["G2495"]],[12,13,["G25"]],[13,16,["G3165"]],[16,17,["G3004"]],[17,19,["G846"]],[19,20,["G3483"]],[20,21,["G2962"]],[21,22,["G4771"]],[22,23,["G1492"]],[23,24,["G3754"]],[24,26,["G5368"]],[26,27,["G4571"]],[27,29,["G3004"]],[29,31,["G846"]],[31,32,["G4165"]],[32,33,["G3450"]],[33,34,["G4263"]]]},{"k":26915,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G3588"]],[5,7,["G5154"]],[7,8,["G4613"]],[8,11,["G2495"]],[11,12,["G5368"]],[12,14,["G3165"]],[14,15,["G4074"]],[15,17,["G3076"]],[17,18,["G3754"]],[18,20,["G2036"]],[20,22,["G846"]],[22,23,["G3588"]],[23,25,["G5154"]],[25,26,["G5368"]],[26,28,["G3165"]],[28,29,["G2532"]],[29,31,["G2036"]],[31,33,["G846"]],[33,34,["G2962"]],[34,35,["G4771"]],[35,36,["G1492"]],[36,38,["G3956"]],[38,39,["G4771"]],[39,40,["G1097"]],[40,41,["G3754"]],[41,43,["G5368"]],[43,44,["G4571"]],[44,45,["G2424"]],[45,46,["G3004"]],[46,48,["G846"]],[48,49,["G1006"]],[49,50,["G3450"]],[50,51,["G4263"]]]},{"k":26916,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G4671"]],[6,7,["G3753"]],[7,9,["G2258"]],[9,10,["G3501"]],[10,12,["G2224"]],[12,13,["G4572"]],[13,14,["G2532"]],[14,15,["G4043"]],[15,16,["G3699"]],[16,18,["G2309"]],[18,19,["G1161"]],[19,20,["G3752"]],[20,24,["G1095"]],[24,28,["G1614"]],[28,29,["G4675"]],[29,30,["G5495"]],[30,31,["G2532"]],[31,32,["G243"]],[32,34,["G2224"]],[34,35,["G4571"]],[35,36,["G2532"]],[36,37,["G5342"]],[37,39,["G3699"]],[39,41,["G2309"]],[41,42,["G3756"]]]},{"k":26917,"v":[[0,0,["(G1161)"]],[0,1,["G5124"]],[1,2,["G2036"]],[2,4,["G4591"]],[4,6,["G4169"]],[6,7,["G2288"]],[7,10,["G1392"]],[10,11,["G2316"]],[11,12,["G2532"]],[12,16,["G2036"]],[16,17,["G5124"]],[17,19,["G3004"]],[19,21,["G846"]],[21,22,["G190"]],[22,23,["G3427"]]]},{"k":26918,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,4,["G1994"]],[4,5,["G991"]],[5,6,["G3588"]],[6,7,["G3101"]],[7,8,["G3739"]],[8,9,["G2424"]],[9,10,["G25"]],[10,11,["G190"]],[11,12,["G3739"]],[12,13,["G2532"]],[13,14,["G377"]],[14,15,["G1909"]],[15,16,["G846"]],[16,17,["G4738"]],[17,18,["G1722"]],[18,19,["G1173"]],[19,20,["G2532"]],[20,21,["G2036"]],[21,22,["G2962"]],[22,23,["G5101"]],[23,24,["G2076"]],[24,27,["G3860"]],[27,28,["G4571"]]]},{"k":26919,"v":[[0,1,["G4074"]],[1,2,["G1492"]],[2,3,["G5126"]],[3,4,["G3004"]],[4,6,["G2424"]],[6,7,["G2962"]],[7,8,["G1161"]],[8,9,["G5101"]],[9,12,["G3778"]],[12,13,[]]]},{"k":26920,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1437"]],[5,7,["G2309"]],[7,9,["G846"]],[9,10,["G3306"]],[10,11,["G2193"]],[11,13,["G2064"]],[13,14,["G5101"]],[14,17,["G4314"]],[17,18,["G4571"]],[18,19,["G190"]],[19,20,["G4771"]],[20,21,["G3427"]]]},{"k":26921,"v":[[0,1,["G3767"]],[1,5,["G1831","G3778","G3056"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G80"]],[8,9,["G3754"]],[9,10,["G1565"]],[10,11,["G3101"]],[11,13,["G3756"]],[13,14,["G599"]],[14,15,["G2532"]],[15,16,["G2424"]],[16,17,["G2036"]],[17,18,["G3756"]],[18,20,["G846"]],[20,22,["(G3754)"]],[22,23,["G3756"]],[23,24,["G599"]],[24,25,["G235"]],[25,26,["G1437"]],[26,28,["G2309"]],[28,30,["G846"]],[30,31,["G3306"]],[31,32,["G2193"]],[32,34,["G2064"]],[34,35,["G5101"]],[35,38,["G4314"]],[38,39,["G4571"]]]},{"k":26922,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,3,["G3588"]],[3,4,["G3101"]],[4,6,["G3140"]],[6,7,["G4012"]],[7,9,["G5023"]],[9,10,["G2532"]],[10,11,["G1125"]],[11,13,["G5023"]],[13,14,["G2532"]],[14,16,["G1492"]],[16,17,["G3754"]],[17,18,["G846"]],[18,19,["G3141"]],[19,20,["G2076"]],[20,21,["G227"]]]},{"k":26923,"v":[[0,1,["G1161"]],[1,3,["G2076"]],[3,4,["G2532"]],[4,5,["G4183"]],[5,7,["G243"]],[7,8,["G3745"]],[8,9,["G2424"]],[9,10,["G4160"]],[10,12,["G3748"]],[12,13,["G1437"]],[13,17,["G1125"]],[17,19,["G2596","G1520"]],[19,21,["G3633"]],[21,24,["G3588"]],[24,25,["G2889"]],[25,26,["G846"]],[26,28,["G3761"]],[28,29,["G5562"]],[29,30,["G3588"]],[30,31,["G975"]],[31,35,["G1125"]],[35,36,["G281"]]]},{"k":26924,"v":[[0,1,["G3588"]],[1,2,["G4413"]],[2,3,["G3056"]],[3,4,["(G3303)"]],[4,6,["G4160"]],[6,7,["G5599"]],[7,8,["G2321"]],[8,9,["G4012"]],[9,10,["G3956"]],[10,11,["G3739"]],[11,12,["G2424"]],[12,13,["G756"]],[13,14,["G5037"]],[14,16,["G4160"]],[16,17,["G2532"]],[17,18,["G1321"]]]},{"k":26925,"v":[[0,1,["G891"]],[1,3,["G2250"]],[3,5,["G3739"]],[5,9,["G353"]],[9,13,["G1223"]],[13,15,["G40"]],[15,16,["G4151"]],[16,19,["G1781"]],[19,21,["G3588"]],[21,22,["G652"]],[22,23,["G3739"]],[23,26,["G1586"]]]},{"k":26926,"v":[[0,2,["G3739"]],[2,3,["G2532"]],[3,5,["G3936"]],[5,6,["G1438"]],[6,7,["G2198"]],[7,9,["G846"]],[9,10,["G3958"]],[10,11,["G1722"]],[11,12,["G4183"]],[12,14,["G5039"]],[14,16,["G3700"]],[16,18,["G846"]],[18,19,["G5062"]],[19,20,["G2250"]],[20,21,["G2532"]],[21,22,["G3004"]],[22,25,["G3588"]],[25,26,["G4012"]],[26,28,["G3588"]],[28,29,["G932"]],[29,31,["G2316"]]]},{"k":26927,"v":[[0,1,["G2532"]],[1,5,["G4871"]],[5,7,["G3853"]],[7,8,["G846"]],[8,12,["G3361"]],[12,13,["G5563"]],[13,14,["G575"]],[14,15,["G2414"]],[15,16,["G235"]],[16,18,["G4037"]],[18,19,["G3588"]],[19,20,["G1860"]],[20,22,["G3588"]],[22,23,["G3962"]],[23,24,["G3739"]],[24,29,["G191"]],[29,31,["G3450"]]]},{"k":26928,"v":[[0,1,["G3754"]],[1,2,["G2491"]],[2,3,["G3303"]],[3,4,["G907"]],[4,6,["G5204"]],[6,7,["G1161"]],[7,8,["G5210"]],[8,11,["G907"]],[11,12,["G1722"]],[12,14,["G40"]],[14,15,["G4151"]],[15,16,["G3756"]],[16,17,["G4183"]],[17,18,["G2250"]],[18,19,["G5025"]]]},{"k":26929,"v":[[0,2,["G3588","(G3303)"]],[2,3,["G3767"]],[3,6,["G4905"]],[6,8,["G1905"]],[8,10,["G846"]],[10,11,["G3004"]],[11,12,["G2962"]],[12,14,["(G1487)"]],[14,15,["G1722"]],[15,16,["G5129"]],[16,17,["G5550"]],[17,19,["G600"]],[19,20,["G3588"]],[20,21,["G932"]],[21,23,["G2474"]]]},{"k":26930,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,7,["G2076"]],[7,8,["G3756"]],[8,10,["G5216"]],[10,12,["G1097"]],[12,14,["G5550"]],[14,15,["G2228"]],[15,17,["G2540"]],[17,18,["G3739"]],[18,19,["G3588"]],[19,20,["G3962"]],[20,22,["G5087"]],[22,23,["G1722"]],[23,25,["G2398"]],[25,26,["G1849"]]]},{"k":26931,"v":[[0,1,["G235"]],[1,4,["G2983"]],[4,5,["G1411"]],[5,8,["G3588"]],[8,9,["G40"]],[9,10,["G4151"]],[10,12,["G1904"]],[12,13,["G1909"]],[13,14,["G5209"]],[14,15,["G2532"]],[15,18,["G2071"]],[18,19,["G3144"]],[19,21,["G3427"]],[21,22,["G5037"]],[22,23,["G1722"]],[23,24,["G2419"]],[24,25,["G2532"]],[25,26,["G1722"]],[26,27,["G3956"]],[27,28,["G2449"]],[28,29,["G2532"]],[29,31,["G4540"]],[31,32,["G2532"]],[32,33,["G2193"]],[33,36,["G2078"]],[36,38,["G3588"]],[38,39,["G1093"]]]},{"k":26932,"v":[[0,1,["G2532"]],[1,5,["G2036"]],[5,7,["G5023"]],[7,9,["G846"]],[9,10,["G991"]],[10,14,["G1869"]],[14,15,["G2532"]],[15,17,["G3507"]],[17,18,["G5274"]],[18,19,["G846"]],[19,21,["G575"]],[21,22,["G846"]],[22,23,["G3788"]]]},{"k":26933,"v":[[0,1,["G2532"]],[1,2,["G5613"]],[2,5,["G2258","G816"]],[5,6,["G1519"]],[6,7,["G3772"]],[7,9,["G846"]],[9,11,["G4198"]],[11,12,["G2400"]],[12,13,["G1417"]],[13,14,["G435","(G2532)"]],[14,16,["G3936"]],[16,17,["G846"]],[17,18,["G1722"]],[18,19,["G3022"]],[19,20,["G2066"]]]},{"k":26934,"v":[[0,1,["G3739"]],[1,2,["G2532"]],[2,3,["G2036"]],[3,5,["G435"]],[5,7,["G1057"]],[7,8,["G5101"]],[8,9,["G2476"]],[9,12,["G1689"]],[12,13,["G1519"]],[13,14,["G3772"]],[14,16,["G3778"]],[16,17,["G2424"]],[17,21,["G353"]],[21,22,["G575"]],[22,23,["G5216"]],[23,24,["G1519"]],[24,25,["G3772"]],[25,27,["G3779"]],[27,28,["G2064"]],[28,31,["G3739","G5158"]],[31,35,["G2300"]],[35,36,["G846"]],[36,37,["G4198"]],[37,38,["G1519"]],[38,39,["G3772"]]]},{"k":26935,"v":[[0,1,["G5119"]],[1,2,["G5290"]],[2,4,["G1519"]],[4,5,["G2419"]],[5,6,["G575"]],[6,8,["G3735"]],[8,9,["G2564"]],[9,10,["G1638"]],[10,12,["G3603"]],[12,13,["G1451"]],[13,14,["G2419"]],[14,15,["(G2192)"]],[15,17,["G4521"]],[17,18,["G3598"]]]},{"k":26936,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,6,["G1525"]],[6,9,["G305"]],[9,10,["G1519"]],[10,13,["G5253"]],[13,14,["G3757"]],[14,15,["G2258","G2650"]],[15,16,["G5037"]],[16,17,["G4074"]],[17,18,["G2532"]],[18,19,["G2385"]],[19,20,["G2532"]],[20,21,["G2491"]],[21,22,["G2532"]],[22,23,["G406"]],[23,24,["G5376"]],[24,25,["G2532"]],[25,26,["G2381"]],[26,27,["G918"]],[27,28,["G2532"]],[28,29,["G3156"]],[29,30,["G2385"]],[30,34,["G256"]],[34,35,["G2532"]],[35,36,["G4613"]],[36,37,["G2208"]],[37,38,["G2532"]],[38,39,["G2455"]],[39,43,["G2385"]]]},{"k":26937,"v":[[0,1,["G3778"]],[1,2,["G3956"]],[2,3,["G2258","G4342"]],[3,6,["G3661"]],[6,8,["G4335"]],[8,9,["G2532"]],[9,10,["G1162"]],[10,11,["G4862"]],[11,13,["G1135"]],[13,14,["G2532"]],[14,15,["G3137"]],[15,16,["G3588"]],[16,17,["G3384"]],[17,19,["G2424"]],[19,20,["G2532"]],[20,21,["G4862"]],[21,22,["G846"]],[22,23,["G80"]]]},{"k":26938,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G5025"]],[3,4,["G2250"]],[4,5,["G4074"]],[5,7,["G450"]],[7,8,["G1722"]],[8,10,["G3319"]],[10,12,["G3588"]],[12,13,["G3101"]],[13,15,["G2036"]],[15,16,["(G5037)"]],[16,17,["G3793"]],[17,19,["G3686"]],[19,20,["G1909","G846"]],[20,21,["G2258"]],[21,22,["G5613"]],[22,26,["G1540","G1501"]]]},{"k":26939,"v":[[0,1,["G435"]],[1,3,["G80"]],[3,4,["G5026"]],[4,5,["G1124"]],[5,7,["G1163"]],[7,10,["G4137"]],[10,11,["G3739"]],[11,12,["G3588"]],[12,13,["G40"]],[13,14,["G4151"]],[14,15,["G1223"]],[15,17,["G4750"]],[17,19,["G1138"]],[19,21,["G4277"]],[21,22,["G4012"]],[22,23,["G2455"]],[23,25,["G1096"]],[25,26,["G3595"]],[26,30,["G4815"]],[30,31,["G2424"]]]},{"k":26940,"v":[[0,1,["G3754"]],[1,3,["G2258"]],[3,4,["G2674"]],[4,5,["G4862"]],[5,6,["G2254"]],[6,7,["G2532"]],[7,9,["G2975"]],[9,10,["G2819"]],[10,12,["G5026"]],[12,13,["G1248"]]]},{"k":26941,"v":[[0,1,["G3767"]],[1,3,["G3778","(G3303)"]],[3,4,["G2932"]],[4,6,["G5564"]],[6,7,["G1537"]],[7,8,["G3588"]],[8,9,["G3408"]],[9,11,["G93"]],[11,12,["G2532"]],[12,13,["G1096"]],[13,14,["G4248"]],[14,17,["G2997"]],[17,20,["G3319"]],[20,21,["G2532"]],[21,22,["G3956"]],[22,23,["G846"]],[23,24,["G4698"]],[24,26,["G1632"]]]},{"k":26942,"v":[[0,1,["G2532"]],[1,3,["G1096"]],[3,4,["G1110"]],[4,6,["G3956"]],[6,7,["G3588"]],[7,8,["G2730"]],[8,10,["G2419"]],[10,12,["G5620"]],[12,13,["G1565"]],[13,14,["G5564"]],[14,16,["G2564"]],[16,18,["G846"]],[18,19,["G2398"]],[19,20,["G1258"]],[20,21,["G184"]],[21,25,["G5123"]],[25,27,["G5564"]],[27,29,["G129"]]]},{"k":26943,"v":[[0,1,["G1063"]],[1,4,["G1125"]],[4,5,["G1722"]],[5,7,["G976"]],[7,9,["G5568"]],[9,11,["G846"]],[11,12,["G1886"]],[12,13,["G1096"]],[13,14,["G2048"]],[14,15,["G2532"]],[15,17,["G3361"]],[17,18,["(G2077)"]],[18,19,["G2730"]],[19,20,["G1722","G846"]],[20,21,["G2532"]],[21,22,["G846"]],[22,23,["G1984"]],[23,25,["G2087"]],[25,26,["G2983"]]]},{"k":26944,"v":[[0,1,["G3767"]],[1,2,["(G1163)"]],[2,4,["G435"]],[4,7,["G4905"]],[7,9,["G2254"]],[9,10,["G3956"]],[10,12,["G5550"]],[12,13,["G1722","G3739"]],[13,14,["G3588"]],[14,15,["G2962"]],[15,16,["G2424"]],[16,18,["G1525"]],[18,19,["G2532"]],[19,20,["G1831"]],[20,21,["G1909"]],[21,22,["G2248"]]]},{"k":26945,"v":[[0,1,["G756"]],[1,2,["G575"]],[2,3,["G3588"]],[3,4,["G908"]],[4,6,["G2491"]],[6,7,["G2193"]],[7,10,["G2250"]],[10,11,["G3739"]],[11,15,["G353"]],[15,16,["G575"]],[16,17,["G2257"]],[17,19,["G1520"]],[19,20,["(G5130)"]],[20,21,["G1096"]],[21,25,["G3144"]],[25,26,["G4862"]],[26,27,["G2254"]],[27,29,["G846"]],[29,30,["G386"]]]},{"k":26946,"v":[[0,1,["G2532"]],[1,3,["G2476"]],[3,4,["G1417"]],[4,5,["G2501"]],[5,6,["G2564"]],[6,7,["G923"]],[7,8,["G3739"]],[8,10,["G1941"]],[10,11,["G2459"]],[11,12,["G2532"]],[12,13,["G3159"]]]},{"k":26947,"v":[[0,1,["G2532"]],[1,3,["G4336"]],[3,5,["G2036"]],[5,6,["G4771"]],[6,7,["G2962"]],[7,11,["G2589"]],[11,13,["G3956"]],[13,15,["G322"]],[15,16,["G3739","G1520"]],[16,17,["G1537"]],[17,18,["G5130"]],[18,19,["G1417"]],[19,22,["G1586"]]]},{"k":26948,"v":[[0,4,["G2983"]],[4,5,["G2819"]],[5,7,["G5026"]],[7,8,["G1248"]],[8,9,["G2532"]],[9,10,["G651"]],[10,11,["G1537"]],[11,12,["G3739"]],[12,13,["G2455"]],[13,16,["G3845"]],[16,20,["G4198"]],[20,21,["G1519"]],[21,23,["G2398"]],[23,24,["G5117"]]]},{"k":26949,"v":[[0,1,["G2532"]],[1,4,["G1325"]],[4,5,["G846"]],[5,6,["G2819"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G2819"]],[9,10,["G4098"]],[10,11,["G1909"]],[11,12,["G3159"]],[12,13,["G2532"]],[13,16,["G4785"]],[16,17,["G3326"]],[17,18,["G3588"]],[18,19,["G1733"]],[19,20,["G652"]]]},{"k":26950,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G2250"]],[4,6,["G4005"]],[6,9,["G4845"]],[9,11,["G2258"]],[11,12,["G537"]],[12,15,["G3661"]],[15,16,["G1909"]],[16,18,["G846"]]]},{"k":26951,"v":[[0,1,["G2532"]],[1,2,["G869"]],[2,4,["G1096"]],[4,6,["G2279"]],[6,7,["G1537"]],[7,8,["G3772"]],[8,9,["G5618"]],[9,12,["G5342"]],[12,13,["G972"]],[13,14,["G4157"]],[14,15,["G2532"]],[15,17,["G4137"]],[17,18,["G3650"]],[18,19,["G3588"]],[19,20,["G3624"]],[20,21,["G3757"]],[21,23,["G2258"]],[23,24,["G2521"]]]},{"k":26952,"v":[[0,1,["G2532"]],[1,3,["G3700"]],[3,5,["G846"]],[5,6,["G1266"]],[6,7,["G1100"]],[7,9,["G5616"]],[9,11,["G4442"]],[11,12,["G5037"]],[12,14,["G2523"]],[14,15,["G1909"]],[15,16,["G1538","G1520"]],[16,18,["G846"]]]},{"k":26953,"v":[[0,1,["G2532"]],[1,4,["G537"]],[4,5,["G4130"]],[5,8,["G40"]],[8,9,["G4151"]],[9,10,["G2532"]],[10,11,["G756"]],[11,13,["G2980"]],[13,15,["G2087"]],[15,16,["G1100"]],[16,17,["G2531"]],[17,18,["G3588"]],[18,19,["G4151"]],[19,20,["G1325"]],[20,21,["G846"]],[21,22,["G669"]]]},{"k":26954,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G2730"]],[4,5,["G1722"]],[5,6,["G2419"]],[6,7,["G2453"]],[7,8,["G2126"]],[8,9,["G435"]],[9,11,["G575"]],[11,12,["G3956"]],[12,13,["G1484"]],[13,14,["G5259"]],[14,15,["G3772"]]]},{"k":26955,"v":[[0,1,["G1161"]],[1,3,["G5026"]],[3,6,["G1096","G5456"]],[6,7,["G3588"]],[7,8,["G4128"]],[8,10,["G4905"]],[10,11,["G2532"]],[11,13,["G4797"]],[13,14,["G3754"]],[14,17,["G1538","G1520"]],[17,18,["G191"]],[18,19,["G846"]],[19,20,["G2980"]],[20,23,["G2398"]],[23,24,["G1258"]]]},{"k":26956,"v":[[0,1,["G1161"]],[1,4,["G3956"]],[4,5,["G1839"]],[5,6,["G2532"]],[6,7,["G2296"]],[7,8,["G3004"]],[8,11,["G240","G4314"]],[11,12,["G2400"]],[12,13,["G1526"]],[13,14,["G3756"]],[14,15,["G3956"]],[15,16,["G3778"]],[16,18,["G2980"]],[18,19,["G1057"]]]},{"k":26957,"v":[[0,1,["G2532"]],[1,2,["G4459"]],[2,3,["G191"]],[3,4,["G2249"]],[4,6,["G1538"]],[6,8,["G2257"]],[8,9,["G2398"]],[9,10,["G1258"]],[10,11,["G1722","G3739"]],[11,14,["G1080"]]]},{"k":26958,"v":[[0,1,["G3934"]],[1,2,["G2532"]],[2,3,["G3370"]],[3,4,["G2532"]],[4,5,["G1639"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G2730"]],[8,10,["G3318"]],[10,11,["G5037"]],[11,13,["G2449"]],[13,14,["G2532"]],[14,15,["G2587"]],[15,17,["G4195"]],[17,18,["G2532"]],[18,19,["G773"]]]},{"k":26959,"v":[[0,0,["(G5037)"]],[0,1,["G5435"]],[1,2,["G2532"]],[2,3,["G3828"]],[3,5,["G125"]],[5,6,["G2532"]],[6,8,["G3588"]],[8,9,["G3313"]],[9,11,["G3033"]],[11,12,["G2596"]],[12,13,["G2957"]],[13,14,["G2532"]],[14,15,["G1927"]],[15,17,["G4514","(G5037)"]],[17,18,["G2453"]],[18,19,["G2532"]],[19,20,["G4339"]]]},{"k":26960,"v":[[0,1,["G2912"]],[1,2,["G2532"]],[2,3,["G690"]],[3,6,["G191"]],[6,7,["G846"]],[7,8,["G2980"]],[8,10,["G2251"]],[10,11,["G1100"]],[11,12,["G3588"]],[12,14,["G3167"]],[14,16,["G2316"]]]},{"k":26961,"v":[[0,1,["G1161"]],[1,4,["G3956"]],[4,5,["G1839"]],[5,6,["G2532"]],[6,9,["G1280"]],[9,10,["G3004"]],[10,13,["G243","G4314","G243"]],[13,14,["G5101"]],[14,15,["G2309","G302","G1511"]],[15,16,["G5124"]]]},{"k":26962,"v":[[0,0,["(G1161)"]],[0,1,["G2087"]],[1,2,["G5512"]],[2,3,["G3004"]],[3,6,["G1526"]],[6,7,["G3325"]],[7,10,["G1098"]]]},{"k":26963,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,4,["G2476"]],[4,5,["G4862"]],[5,6,["G3588"]],[6,7,["G1733"]],[7,9,["G1869"]],[9,10,["G848"]],[10,11,["G5456"]],[11,12,["G2532"]],[12,13,["G669"]],[13,15,["G846"]],[15,17,["G435"]],[17,19,["G2453"]],[19,20,["G2532"]],[20,21,["G537"]],[21,24,["G2730"]],[24,26,["G2419"]],[26,27,["G2077"]],[27,28,["G5124"]],[28,29,["G1110"]],[29,31,["G5213"]],[31,32,["G2532"]],[32,33,["G1801"]],[33,35,["G3450"]],[35,36,["G4487"]]]},{"k":26964,"v":[[0,1,["G1063"]],[1,2,["G3778"]],[2,4,["G3756"]],[4,5,["G3184"]],[5,6,["G5613"]],[6,7,["G5210"]],[7,8,["G5274"]],[8,9,["G1063"]],[9,11,["G2076"]],[11,14,["G5154"]],[14,15,["G5610"]],[15,17,["G3588"]],[17,18,["G2250"]]]},{"k":26965,"v":[[0,1,["G235"]],[1,2,["G5124"]],[2,3,["G2076"]],[3,7,["G2046"]],[7,8,["G1223"]],[8,9,["G3588"]],[9,10,["G4396"]],[10,11,["G2493"]]]},{"k":26966,"v":[[0,1,["G2532"]],[1,6,["G2071"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G2078"]],[9,10,["G2250"]],[10,11,["G3004"]],[11,12,["G2316"]],[12,16,["G1632"]],[16,17,["G575"]],[17,18,["G3450"]],[18,19,["G4151"]],[19,20,["G1909"]],[20,21,["G3956"]],[21,22,["G4561"]],[22,23,["G2532"]],[23,24,["G5216"]],[24,25,["G5207"]],[25,26,["G2532"]],[26,27,["G5216"]],[27,28,["G2364"]],[28,30,["G4395"]],[30,31,["G2532"]],[31,32,["G5216"]],[32,34,["G3495"]],[34,36,["G3700"]],[36,37,["G3706"]],[37,38,["G2532"]],[38,39,["G5216"]],[39,41,["G4245"]],[41,43,["G1797"]],[43,44,["G1798"]]]},{"k":26967,"v":[[0,1,["G2532","(G1065)"]],[1,2,["G1909"]],[2,3,["G3450"]],[3,4,["G1401"]],[4,5,["G2532"]],[5,6,["G1909"]],[6,7,["G3450"]],[7,8,["G1399"]],[8,12,["G1632"]],[12,13,["G1722"]],[13,14,["G1565"]],[14,15,["G2250"]],[15,16,["G575"]],[16,17,["G3450"]],[17,18,["G4151"]],[18,19,["G2532"]],[19,22,["G4395"]]]},{"k":26968,"v":[[0,1,["G2532"]],[1,4,["G1325"]],[4,5,["G5059"]],[5,6,["G1722"]],[6,7,["G3772"]],[7,8,["G507"]],[8,9,["G2532"]],[9,10,["G4592"]],[10,11,["G1909"]],[11,12,["G3588"]],[12,13,["G1093"]],[13,14,["G2736"]],[14,15,["G129"]],[15,16,["G2532"]],[16,17,["G4442"]],[17,18,["G2532"]],[18,19,["G822"]],[19,21,["G2586"]]]},{"k":26969,"v":[[0,1,["G3588"]],[1,2,["G2246"]],[2,5,["G3344"]],[5,6,["G1519"]],[6,7,["G4655"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G4582"]],[10,11,["G1519"]],[11,12,["G129"]],[12,13,["G4250"]],[13,14,["(G2228)"]],[14,15,["G3173"]],[15,16,["G2532"]],[16,17,["G2016"]],[17,18,["G2250"]],[18,21,["G2962"]],[21,22,["G2064"]]]},{"k":26970,"v":[[0,1,["G2532"]],[1,6,["G2071"]],[6,8,["G3956","G3739","G302"]],[8,11,["G1941"]],[11,12,["G3588"]],[12,13,["G3686"]],[13,16,["G2962"]],[16,19,["G4982"]]]},{"k":26971,"v":[[0,2,["G435"]],[2,4,["G2475"]],[4,5,["G191"]],[5,6,["G5128"]],[6,7,["G3056"]],[7,8,["G2424"]],[8,10,["G3480"]],[10,12,["G435"]],[12,13,["G584"]],[13,14,["G575"]],[14,15,["G2316"]],[15,16,["G1519"]],[16,17,["G5209"]],[17,19,["G1411"]],[19,20,["G2532"]],[20,21,["G5059"]],[21,22,["G2532"]],[22,23,["G4592"]],[23,24,["G3739"]],[24,25,["G2316"]],[25,26,["G4160"]],[26,27,["G1223"]],[27,28,["G846"]],[28,29,["G1722"]],[29,31,["G3319"]],[31,33,["G5216"]],[33,34,["G2531"]],[34,35,["G846"]],[35,37,["G2532"]],[37,38,["G1492"]]]},{"k":26972,"v":[[0,1,["G5126"]],[1,3,["G1560"]],[3,5,["G3588"]],[5,6,["G3724"]],[6,7,["G1012"]],[7,8,["G2532"]],[8,9,["G4268"]],[9,11,["G2316"]],[11,14,["G2983"]],[14,16,["G1223"]],[16,17,["G459"]],[17,18,["G5495"]],[18,20,["G4362"]],[20,22,["G337"]]]},{"k":26973,"v":[[0,1,["G3739"]],[1,2,["G2316"]],[2,5,["G450"]],[5,7,["G3089"]],[7,8,["G3588"]],[8,9,["G5604"]],[9,11,["G2288"]],[11,12,["G2530"]],[12,14,["G2258"]],[14,15,["G3756"]],[15,16,["G1415"]],[16,18,["G846"]],[18,21,["G2902"]],[21,22,["G5259"]],[22,23,["G846"]]]},{"k":26974,"v":[[0,1,["G1063"]],[1,2,["G1138"]],[2,3,["G3004"]],[3,4,["G1519"]],[4,5,["G846"]],[5,7,["G4308"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,10,["G1223","G3956"]],[10,11,["G1799"]],[11,13,["G3450"]],[13,14,["G3754"]],[14,16,["G2076"]],[16,17,["G1537"]],[17,18,["G3450"]],[18,20,["G1188"]],[20,21,["G2443"]],[21,24,["G3361"]],[24,26,["G4531"]]]},{"k":26975,"v":[[0,1,["G1223","G5124"]],[1,3,["G3450"]],[3,4,["G2588"]],[4,5,["G2165"]],[5,6,["G2532"]],[6,7,["G3450"]],[7,8,["G1100"]],[8,10,["G21"]],[10,11,["G1161","G2089"]],[11,12,["G2532"]],[12,13,["G3450"]],[13,14,["G4561"]],[14,16,["G2681"]],[16,17,["G1909"]],[17,18,["G1680"]]]},{"k":26976,"v":[[0,1,["G3754"]],[1,4,["G3756"]],[4,5,["G1459"]],[5,6,["G3450"]],[6,7,["G5590"]],[7,8,["G1519"]],[8,9,["G86"]],[9,10,["G3761"]],[10,13,["G1325"]],[13,14,["G4675"]],[14,16,["G3741"]],[16,18,["G1492"]],[18,19,["G1312"]]]},{"k":26977,"v":[[0,4,["G1107"]],[4,6,["G3427"]],[6,8,["G3598"]],[8,10,["G2222"]],[10,15,["G4137","G3165"]],[15,17,["G2167"]],[17,18,["G3326"]],[18,19,["G4675"]],[19,20,["G4383"]]]},{"k":26978,"v":[[0,1,["G435"]],[1,3,["G80"]],[3,4,["G1832"]],[4,6,["G3326","G3954"]],[6,7,["G2036"]],[7,8,["G4314"]],[8,9,["G5209"]],[9,10,["G4012"]],[10,11,["G3588"]],[11,12,["G3966"]],[12,13,["G1138"]],[13,14,["G3754"]],[14,18,["G5053","G2532"]],[18,19,["G2532"]],[19,20,["G2290"]],[20,21,["G2532"]],[21,22,["G846"]],[22,23,["G3418"]],[23,24,["G2076"]],[24,25,["G1722"]],[25,26,["G2254"]],[26,27,["G891"]],[27,28,["G5026"]],[28,29,["G2250"]]]},{"k":26979,"v":[[0,1,["G3767"]],[1,2,["G5225"]],[2,4,["G4396"]],[4,5,["G2532"]],[5,6,["G1492"]],[6,7,["G3754"]],[7,8,["G2316"]],[8,10,["G3660"]],[10,13,["G3727"]],[13,15,["G846"]],[15,17,["G1537"]],[17,19,["G2590"]],[19,21,["G846"]],[21,22,["G3751"]],[22,24,["G2596"]],[24,26,["G4561"]],[26,30,["G450"]],[30,31,["G5547"]],[31,33,["G2523"]],[33,34,["G1909"]],[34,35,["G846"]],[35,36,["G2362"]]]},{"k":26980,"v":[[0,4,["G4275"]],[4,5,["G2980"]],[5,6,["G4012"]],[6,7,["G3588"]],[7,8,["G386"]],[8,10,["G5547"]],[10,11,["G3754"]],[11,12,["G846"]],[12,13,["G5590"]],[13,15,["G3756"]],[15,16,["G2641"]],[16,17,["G1519"]],[17,18,["G86"]],[18,19,["G3761"]],[19,20,["G846"]],[20,21,["G4561"]],[21,23,["G1492"]],[23,24,["G1312"]]]},{"k":26981,"v":[[0,1,["G5126"]],[1,2,["G2424"]],[2,4,["G2316"]],[4,6,["G450"]],[6,7,["G3739"]],[7,8,["G2249"]],[8,9,["G3956"]],[9,10,["G2070"]],[10,11,["G3144"]]]},{"k":26982,"v":[[0,1,["G3767"]],[1,4,["G3588"]],[4,6,["G1188"]],[6,8,["G2316"]],[8,9,["G5312"]],[9,10,["G5037"]],[10,12,["G2983"]],[12,13,["G3844"]],[13,14,["G3588"]],[14,15,["G3962"]],[15,16,["G3588"]],[16,17,["G1860"]],[17,19,["G3588"]],[19,20,["G40"]],[20,21,["G4151"]],[21,25,["G1632"]],[25,26,["G5124"]],[26,27,["G3739"]],[27,28,["G5210"]],[28,29,["G3568"]],[29,30,["G991"]],[30,31,["G2532"]],[31,32,["G191"]]]},{"k":26983,"v":[[0,1,["G1063"]],[1,2,["G1138"]],[2,4,["G3756"]],[4,5,["G305"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G3772"]],[8,9,["G1161"]],[9,10,["G846"]],[10,11,["G3004"]],[11,13,["G3588"]],[13,14,["G2962"]],[14,15,["G2036"]],[15,17,["G3450"]],[17,18,["G2962"]],[18,19,["G2521"]],[19,21,["G1537"]],[21,22,["G3450"]],[22,24,["G1188"]]]},{"k":26984,"v":[[0,1,["G2193"]],[1,3,["G5087","G302"]],[3,4,["G4675"]],[4,5,["G2190"]],[5,7,["G5286","G4675","G4228"]]]},{"k":26985,"v":[[0,1,["G3767"]],[1,3,["G3956"]],[3,5,["G3624"]],[5,7,["G2474"]],[7,8,["G1097"]],[8,9,["G806"]],[9,10,["G3754"]],[10,11,["G2316"]],[11,13,["G4160"]],[13,15,["G5126"]],[15,16,["G2424"]],[16,17,["G3739"]],[17,18,["G5210"]],[18,20,["G4717"]],[20,21,["G2532"]],[21,22,["G2962"]],[22,23,["G2532"]],[23,24,["G5547"]]]},{"k":26986,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,8,["G2660"]],[8,11,["G2588"]],[11,12,["G5037"]],[12,13,["G2036"]],[13,14,["G4314"]],[14,15,["G4074"]],[15,16,["G2532"]],[16,18,["G3588"]],[18,19,["G3062"]],[19,22,["G652"]],[22,23,["G435"]],[23,25,["G80"]],[25,26,["G5101"]],[26,29,["G4160"]]]},{"k":26987,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G5346"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G3340"]],[6,7,["G2532"]],[7,9,["G907"]],[9,11,["G1538"]],[11,13,["G5216"]],[13,14,["G1909"]],[14,15,["G3588"]],[15,16,["G3686"]],[16,18,["G2424"]],[18,19,["G5547"]],[19,20,["G1519"]],[20,22,["G859"]],[22,24,["G266"]],[24,25,["G2532"]],[25,28,["G2983"]],[28,29,["G3588"]],[29,30,["G1431"]],[30,32,["G3588"]],[32,33,["G40"]],[33,34,["G4151"]]]},{"k":26988,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G1860"]],[3,4,["G2076"]],[4,6,["G5213"]],[6,7,["G2532"]],[7,9,["G5216"]],[9,10,["G5043"]],[10,11,["G2532"]],[11,13,["G3956"]],[13,14,["G3588"]],[14,17,["G1519","G3112"]],[17,21,["G3745","G302"]],[21,23,["G2962"]],[23,24,["G2257"]],[24,25,["G2316"]],[25,27,["G4341"]]]},{"k":26989,"v":[[0,1,["G5037"]],[1,3,["G4119"]],[3,4,["G2087"]],[4,5,["G3056"]],[5,8,["G1263"]],[8,9,["G2532"]],[9,10,["G3870"]],[10,11,["G3004"]],[11,12,["G4982"]],[12,14,["G575"]],[14,15,["G5026"]],[15,16,["G4646"]],[16,17,["G1074"]]]},{"k":26990,"v":[[0,1,["G3767"]],[1,5,["G588","G780","(G3303)"]],[5,6,["G846"]],[6,7,["G3056"]],[7,9,["G907"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G1565"]],[12,13,["G2250"]],[13,16,["G4369"]],[16,19,["G5616"]],[19,21,["G5153"]],[21,22,["G5590"]]]},{"k":26991,"v":[[0,1,["G1161"]],[1,4,["G2258","G4342"]],[4,6,["G3588"]],[6,7,["G652"]],[7,8,["G1322"]],[8,9,["G2532"]],[9,10,["G2842"]],[10,11,["G2532"]],[11,13,["G2800"]],[13,15,["G740"]],[15,16,["G2532"]],[16,18,["G4335"]]]},{"k":26992,"v":[[0,1,["G1161"]],[1,2,["G5401"]],[2,3,["G1096"]],[3,5,["G3956"]],[5,6,["G5590"]],[6,7,["G5037"]],[7,8,["G4183"]],[8,9,["G5059"]],[9,10,["G2532"]],[10,11,["G4592"]],[11,13,["G1096"]],[13,14,["G1223"]],[14,15,["G3588"]],[15,16,["G652"]]]},{"k":26993,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,4,["G4100"]],[4,5,["G2258"]],[5,6,["G1909","G846"]],[6,7,["G2532"]],[7,8,["G2192"]],[8,10,["G537"]],[10,11,["G2839"]]]},{"k":26994,"v":[[0,1,["G2532"]],[1,2,["G4097"]],[2,4,["G2933"]],[4,5,["G2532"]],[5,6,["G5223"]],[6,7,["G2532"]],[7,8,["G1266"]],[8,9,["G846"]],[9,11,["G3956"]],[11,13,["G2530"]],[13,15,["G5100","G302"]],[15,16,["G2192"]],[16,17,["G5532"]]]},{"k":26995,"v":[[0,1,["G5037"]],[1,3,["G4342"]],[3,4,["G2596","G2250"]],[4,7,["G3661"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G2411"]],[10,11,["G5037"]],[11,12,["G2806"]],[12,13,["G740"]],[13,17,["G2596","G3624"]],[17,19,["G3335"]],[19,21,["G5160"]],[21,22,["G1722"]],[22,23,["G20"]],[23,24,["G2532"]],[24,25,["G858"]],[25,27,["G2588"]]]},{"k":26996,"v":[[0,1,["G134"]],[1,2,["G2316"]],[2,3,["G2532"]],[3,4,["G2192"]],[4,5,["G5485"]],[5,6,["G4314"]],[6,7,["G3650"]],[7,8,["G3588"]],[8,9,["G2992"]],[9,10,["G1161"]],[10,11,["G3588"]],[11,12,["G2962"]],[12,13,["G4369"]],[13,15,["G3588"]],[15,16,["G1577"]],[16,17,["G2596","G2250"]],[17,22,["G4982"]]]},{"k":26997,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2532"]],[3,4,["G2491"]],[4,6,["G305"]],[6,7,["G1909","G846"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G2411"]],[10,11,["G1909"]],[11,12,["G3588"]],[12,13,["G5610"]],[13,15,["G4335"]],[15,17,["G3588"]],[17,18,["G1766"]],[18,19,[]]]},{"k":26998,"v":[[0,1,["G2532"]],[1,3,["G5100"]],[3,4,["G435"]],[4,5,["G5560"]],[5,6,["G1537"]],[6,7,["G848"]],[7,8,["G3384"]],[8,9,["G2836"]],[9,11,["G941"]],[11,12,["G3739"]],[12,14,["G5087"]],[14,15,["G2596","G2250"]],[15,16,["G4314"]],[16,17,["G3588"]],[17,18,["G2374"]],[18,20,["G3588"]],[20,21,["G2411"]],[21,24,["G3004"]],[24,25,["G5611"]],[25,27,["G154"]],[27,28,["G1654"]],[28,29,["G3844"]],[29,32,["G1531"]],[32,33,["G1519"]],[33,34,["G3588"]],[34,35,["G2411"]]]},{"k":26999,"v":[[0,1,["G3739"]],[1,2,["G1492"]],[2,3,["G4074"]],[3,4,["G2532"]],[4,5,["G2491"]],[5,6,["G3195"]],[6,8,["G1524"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G2411"]],[11,12,["G2065"]],[12,13,["(G2983)"]],[13,14,["G1654"]]]},{"k":27000,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,5,["G816"]],[5,6,["G1519"]],[6,7,["G846"]],[7,8,["G4862"]],[8,9,["G2491"]],[9,10,["G2036"]],[10,11,["G991"]],[11,12,["G1519"]],[12,13,["G2248"]]]},{"k":27001,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G1907"]],[4,6,["G846"]],[6,7,["G4328"]],[7,9,["G2983"]],[9,10,["G5100"]],[10,11,["G3844"]],[11,12,["G846"]]]},{"k":27002,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2036"]],[3,4,["G694"]],[4,5,["G2532"]],[5,6,["G5553"]],[6,7,["G5225"]],[7,8,["G3427"]],[8,9,["G3756"]],[9,10,["G1161"]],[10,11,["G3739"]],[11,14,["G2192"]],[14,15,["G1325"]],[15,17,["G4671"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,20,["G3686"]],[20,22,["G2424"]],[22,23,["G5547"]],[23,25,["G3480"]],[25,27,["G1453"]],[27,28,["G2532"]],[28,29,["G4043"]]]},{"k":27003,"v":[[0,1,["G2532"]],[1,3,["G4084"]],[3,4,["G846"]],[4,6,["G3588"]],[6,7,["G1188"]],[7,8,["G5495"]],[8,12,["G1453"]],[12,13,["G1161"]],[13,14,["G3916"]],[14,15,["G846"]],[15,16,["G939"]],[16,17,["G2532"]],[17,19,["G4974"]],[19,21,["G4732"]]]},{"k":27004,"v":[[0,1,["G2532"]],[1,4,["G1814"]],[4,5,["G2476"]],[5,6,["G2532"]],[6,7,["G4043"]],[7,8,["G2532"]],[8,9,["G1525"]],[9,10,["G4862"]],[10,11,["G846"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G2411"]],[14,15,["G4043"]],[15,16,["G2532"]],[16,17,["G242"]],[17,18,["G2532"]],[18,19,["G134"]],[19,20,["G2316"]]]},{"k":27005,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G2992"]],[4,5,["G1492"]],[5,6,["G846"]],[6,7,["G4043"]],[7,8,["G2532"]],[8,9,["G134"]],[9,10,["G2316"]]]},{"k":27006,"v":[[0,1,["G5037"]],[1,3,["G1921"]],[3,4,["G3754"]],[4,6,["G2258"]],[6,7,["G3778"]],[7,9,["G2521"]],[9,10,["G4314"]],[10,11,["G1654"]],[11,12,["G1909"]],[12,13,["G3588"]],[13,14,["G5611"]],[14,15,["G4439"]],[15,17,["G3588"]],[17,18,["G2411"]],[18,19,["G2532"]],[19,22,["G4130"]],[22,24,["G2285"]],[24,25,["G2532"]],[25,26,["G1611"]],[26,27,["G1909"]],[27,31,["G4819"]],[31,33,["G846"]]]},{"k":27007,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,5,["G5560"]],[5,8,["G2390"]],[8,9,["G2902"]],[9,10,["G4074"]],[10,11,["G2532"]],[11,12,["G2491"]],[12,13,["G3956"]],[13,14,["G3588"]],[14,15,["G2992"]],[15,17,["G4936"]],[17,18,["G4314"]],[18,19,["G846"]],[19,20,["G1909"]],[20,21,["G3588"]],[21,22,["G4745"]],[22,25,["G2564"]],[25,26,["G4672"]],[26,28,["G1569"]]]},{"k":27008,"v":[[0,1,["G1161"]],[1,3,["G4074"]],[3,4,["G1492"]],[4,7,["G611"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,10,["G2992"]],[10,12,["G435"]],[12,14,["G2475"]],[14,15,["G5101"]],[15,16,["G2296"]],[16,17,["G1909"]],[17,19,["G5129"]],[19,20,["G2228"]],[20,21,["G5101"]],[21,25,["G816"]],[25,27,["G2254"]],[27,29,["G5613"]],[29,32,["G2398"]],[32,33,["G1411"]],[33,34,["G2228"]],[34,35,["G2150"]],[35,38,["G4160"]],[38,40,["G846"]],[40,42,["G4043"]]]},{"k":27009,"v":[[0,1,["G3588"]],[1,2,["G2316"]],[2,4,["G11"]],[4,5,["G2532"]],[5,7,["G2464"]],[7,8,["G2532"]],[8,10,["G2384"]],[10,11,["G3588"]],[11,12,["G2316"]],[12,14,["G2257"]],[14,15,["G3962"]],[15,17,["G1392"]],[17,18,["G848"]],[18,19,["G3816"]],[19,20,["G2424"]],[20,21,["G3739"]],[21,22,["G5210"]],[22,24,["G3860"]],[24,25,["G2532"]],[25,26,["G720"]],[26,27,["G846"]],[27,30,["G2596","G4383"]],[30,32,["G4091"]],[32,34,["G1565"]],[34,36,["G2919"]],[36,40,["G630"]]]},{"k":27010,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G720"]],[3,4,["G3588"]],[4,6,["G40"]],[6,7,["G2532"]],[7,9,["G1342"]],[9,10,["G2532"]],[10,11,["G154"]],[11,12,["(G435)"]],[12,13,["G5406"]],[13,16,["G5483"]],[16,18,["G5213"]]]},{"k":27011,"v":[[0,1,["G1161"]],[1,2,["G615"]],[2,3,["G3588"]],[3,4,["G747"]],[4,6,["G2222"]],[6,7,["G3739"]],[7,8,["G2316"]],[8,10,["G1453"]],[10,11,["G1537"]],[11,13,["G3498"]],[13,14,["G3739"]],[14,15,["G2249"]],[15,16,["G2070"]],[16,17,["G3144"]]]},{"k":27012,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3686"]],[3,4,["G1909"]],[4,5,["G4102"]],[5,7,["G846"]],[7,8,["G3686"]],[8,13,["G4732","G5126"]],[13,14,["G3739"]],[14,16,["G2334"]],[16,17,["G2532"]],[17,18,["G1492"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G4102"]],[21,22,["G3588"]],[22,24,["G1223"]],[24,25,["G846"]],[25,27,["G1325"]],[27,28,["G846"]],[28,29,["G5026"]],[29,31,["G3647"]],[31,34,["G561"]],[34,36,["G5216"]],[36,37,["G3956"]]]},{"k":27013,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,3,["G80"]],[3,5,["G1492"]],[5,6,["G3754"]],[6,7,["G2596"]],[7,8,["G52"]],[8,10,["G4238"]],[10,12,["G5618"]],[12,14,["G2532"]],[14,15,["G5216"]],[15,16,["G758"]]]},{"k":27014,"v":[[0,1,["G1161"]],[1,3,["G3739"]],[3,5,["G2316"]],[5,8,["G4293"]],[8,9,["G1223"]],[9,11,["G4750"]],[11,13,["G3956"]],[13,14,["G846"]],[14,15,["G4396"]],[15,17,["G5547"]],[17,19,["G3958"]],[19,22,["G3779"]],[22,23,["G4137"]]]},{"k":27015,"v":[[0,1,["G3340"]],[1,3,["G3767"]],[3,4,["G2532"]],[4,6,["G1994"]],[6,8,["G5216"]],[8,9,["G266"]],[9,13,["G1813"]],[13,14,["G3704"]],[14,16,["G2540"]],[16,18,["G403"]],[18,20,["G2064","G302"]],[20,21,["G575"]],[21,23,["G4383"]],[23,25,["G3588"]],[25,26,["G2962"]]]},{"k":27016,"v":[[0,1,["G2532"]],[1,4,["G649"]],[4,5,["G2424"]],[5,6,["G5547"]],[6,10,["G4296"]],[10,12,["G5213"]]]},{"k":27017,"v":[[0,1,["G3739"]],[1,3,["G3772"]],[3,4,["G1163","(G3303)"]],[4,5,["G1209"]],[5,6,["G891"]],[6,8,["G5550"]],[8,10,["G605"]],[10,13,["G3956"]],[13,14,["G3739"]],[14,15,["G2316"]],[15,17,["G2980"]],[17,18,["G1223"]],[18,20,["G4750"]],[20,22,["G3956"]],[22,23,["G848"]],[23,24,["G40"]],[24,25,["G4396"]],[25,29,["G575","G165"]]]},{"k":27018,"v":[[0,1,["G1063"]],[1,2,["G3475"]],[2,3,["G3303"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G3588"]],[6,7,["G3962"]],[7,9,["G4396"]],[9,12,["G2962"]],[12,13,["G5216"]],[13,14,["G2316"]],[14,16,["G450"]],[16,18,["G5213"]],[18,19,["G1537"]],[19,20,["G5216"]],[20,21,["G80"]],[21,23,["G5613"]],[23,24,["G1691"]],[24,25,["G846"]],[25,28,["G191"]],[28,29,["G2596"]],[29,31,["G3956"]],[31,32,["G3745","G302"]],[32,35,["G2980"]],[35,36,["G4314"]],[36,37,["G5209"]]]},{"k":27019,"v":[[0,1,["G1161"]],[1,6,["G2071"]],[6,8,["G3956"]],[8,9,["G5590"]],[9,10,["G3748"]],[10,12,["G3361"]],[12,13,["G191","G302"]],[13,14,["G1565"]],[14,15,["G4396"]],[15,18,["G1842"]],[18,19,["G1537"]],[19,21,["G3588"]],[21,22,["G2992"]]]},{"k":27020,"v":[[0,1,["G1161"]],[1,2,["G2532"]],[2,3,["G3956"]],[3,4,["G3588"]],[4,5,["G4396"]],[5,6,["G575"]],[6,7,["G4545"]],[7,8,["G2532"]],[8,12,["G2517"]],[12,15,["G3745"]],[15,17,["G2980"]],[17,19,["G2532"]],[19,20,["G4293"]],[20,22,["G5025"]],[22,23,["G2250"]]]},{"k":27021,"v":[[0,1,["G5210"]],[1,2,["G2075"]],[2,4,["G5207"]],[4,6,["G3588"]],[6,7,["G4396"]],[7,8,["G2532"]],[8,10,["G3588"]],[10,11,["G1242"]],[11,12,["G3739"]],[12,13,["G2316"]],[13,14,["G1303"]],[14,15,["G4314"]],[15,16,["G2257"]],[16,17,["G3962"]],[17,18,["G3004"]],[18,19,["G4314"]],[19,20,["G11"]],[20,21,["G2532"]],[21,23,["G4675"]],[23,24,["G4690"]],[24,26,["G3956"]],[26,27,["G3588"]],[27,28,["G3965"]],[28,30,["G3588"]],[30,31,["G1093"]],[31,33,["G1757"]]]},{"k":27022,"v":[[0,2,["G5213"]],[2,3,["G4412"]],[3,4,["G2316"]],[4,7,["G450"]],[7,8,["G848"]],[8,9,["G3816"]],[9,10,["G2424"]],[10,11,["G649"]],[11,12,["G846"]],[12,14,["G2127"]],[14,15,["G5209"]],[15,18,["G654"]],[18,20,["G1538"]],[20,23,["G575"]],[23,24,["G5216"]],[24,25,["G4189"]]]},{"k":27023,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G2980"]],[4,5,["G4314"]],[5,6,["G3588"]],[6,7,["G2992"]],[7,8,["G3588"]],[8,9,["G2409"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G4755"]],[12,14,["G3588"]],[14,15,["G2411"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G4523"]],[18,20,["G2186"]],[20,21,["G846"]]]},{"k":27024,"v":[[0,2,["G1278"]],[2,4,["G846"]],[4,5,["G1321"]],[5,6,["G3588"]],[6,7,["G2992"]],[7,8,["G2532"]],[8,9,["G2605"]],[9,10,["G1722"]],[10,11,["G2424"]],[11,12,["G3588"]],[12,13,["G386"]],[13,14,["G1537"]],[14,16,["G3498"]]]},{"k":27025,"v":[[0,1,["G2532"]],[1,5,["G1911","G5495"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G5087"]],[8,10,["G1519"]],[10,11,["G5084"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,15,["G839"]],[15,16,["G1063"]],[16,18,["G2258"]],[18,19,["G2235"]],[19,20,["G2073"]]]},{"k":27026,"v":[[0,1,["G1161"]],[1,2,["G4183"]],[2,6,["G191"]],[6,7,["G3588"]],[7,8,["G3056"]],[8,9,["G4100"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G706"]],[12,14,["G3588"]],[14,15,["G435"]],[15,16,["G1096"]],[16,17,["G5616"]],[17,18,["G4002"]],[18,19,["G5505"]]]},{"k":27027,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G839"]],[8,10,["G846"]],[10,11,["G758"]],[11,12,["G2532"]],[12,13,["G4245"]],[13,14,["G2532"]],[14,15,["G1122"]]]},{"k":27028,"v":[[0,1,["G2532"]],[1,2,["G452"]],[2,3,["G3588"]],[3,5,["G749"]],[5,6,["G2532"]],[6,7,["G2533"]],[7,8,["G2532"]],[8,9,["G2491"]],[9,10,["G2532"]],[10,11,["G223"]],[11,12,["G2532"]],[12,15,["G3745"]],[15,16,["G2258"]],[16,17,["G1537"]],[17,19,["G1085"]],[19,23,["G748"]],[23,26,["G4863"]],[26,27,["G1519"]],[27,28,["G2419"]]]},{"k":27029,"v":[[0,1,["G2532"]],[1,5,["G2476"]],[5,6,["G846"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G3319"]],[9,11,["G4441"]],[11,12,["G1722"]],[12,13,["G4169"]],[13,14,["G1411"]],[14,15,["G2228"]],[15,16,["G1722"]],[16,17,["G4169"]],[17,18,["G3686"]],[18,20,["G5210"]],[20,21,["G4160"]],[21,22,["G5124"]]]},{"k":27030,"v":[[0,1,["G5119"]],[1,2,["G4074"]],[2,3,["G4130"]],[3,6,["G40"]],[6,7,["G4151"]],[7,8,["G2036"]],[8,9,["G4314"]],[9,10,["G846"]],[10,12,["G758"]],[12,14,["G3588"]],[14,15,["G2992"]],[15,16,["G2532"]],[16,17,["G4245"]],[17,19,["G2474"]]]},{"k":27031,"v":[[0,1,["G1487"]],[1,2,["G2249"]],[2,4,["G4594"]],[4,6,["G350"]],[6,7,["G1909"]],[7,11,["G2108"]],[11,14,["G772"]],[14,15,["G444"]],[15,16,["G1722"]],[16,18,["G5101"]],[18,19,["G3778"]],[19,22,["G4982"]]]},{"k":27032,"v":[[0,1,["G2077"]],[1,3,["G1110"]],[3,5,["G5213"]],[5,6,["G3956"]],[6,7,["G2532"]],[7,9,["G3956"]],[9,10,["G3588"]],[10,11,["G2992"]],[11,13,["G2474"]],[13,14,["G3754"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G3686"]],[17,19,["G2424"]],[19,20,["G5547"]],[20,22,["G3480"]],[22,23,["G3739"]],[23,24,["G5210"]],[24,25,["G4717"]],[25,26,["G3739"]],[26,27,["G2316"]],[27,28,["G1453"]],[28,29,["G1537"]],[29,31,["G3498"]],[31,33,["G1722"]],[33,34,["G5129"]],[34,37,["G3778"]],[37,38,["G3936"]],[38,40,["G1799"]],[40,41,["G5216"]],[41,42,["G5199"]]]},{"k":27033,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,3,["G3588"]],[3,4,["G3037"]],[4,9,["G1848"]],[9,10,["G5259"]],[10,11,["G5216"]],[11,12,["G3618"]],[12,15,["G1096"]],[15,16,["(G1519)"]],[16,17,["G2776"]],[17,20,["G1137"]]]},{"k":27034,"v":[[0,1,["G2532","G3756"]],[1,2,["G2076"]],[2,4,["G4991"]],[4,5,["G1722"]],[5,6,["G3762"]],[6,7,["G243"]],[7,8,["G1063"]],[8,10,["G2076"]],[10,11,["G3777"]],[11,12,["G2087"]],[12,13,["G3686"]],[13,14,["G5259"]],[14,15,["G3772"]],[15,16,["G1325"]],[16,17,["G1722"]],[17,18,["G444"]],[18,19,["G1722","G3739"]],[19,20,["G2248"]],[20,21,["G1163"]],[21,23,["G4982"]]]},{"k":27035,"v":[[0,1,["G1161"]],[1,4,["G2334"]],[4,5,["G3588"]],[5,6,["G3954"]],[6,8,["G4074"]],[8,9,["G2532"]],[9,10,["G2491"]],[10,11,["G2532"]],[11,12,["G2638"]],[12,13,["G3754"]],[13,15,["G1526"]],[15,16,["G62"]],[16,17,["G2532"]],[17,18,["G2399"]],[18,19,["G444"]],[19,21,["G2296"]],[21,22,["G5037"]],[22,25,["G1921"]],[25,27,["G846"]],[27,28,["G3754"]],[28,31,["G2258"]],[31,32,["G4862"]],[32,33,["G2424"]]]},{"k":27036,"v":[[0,1,["G1161"]],[1,2,["G991"]],[2,3,["G3588"]],[3,4,["G444"]],[4,7,["G2323"]],[7,8,["G2476"]],[8,9,["G4862"]],[9,10,["G846"]],[10,12,["G2192"]],[12,15,["G471","G3762"]],[15,16,[]]]},{"k":27037,"v":[[0,1,["G1161"]],[1,5,["G2753"]],[5,6,["G846"]],[6,9,["G565"]],[9,10,["G1854"]],[10,12,["G3588"]],[12,13,["G4892"]],[13,15,["G4820"]],[15,16,["G4314"]],[16,17,["G240"]]]},{"k":27038,"v":[[0,1,["G3004"]],[1,2,["G5101"]],[2,5,["G4160"]],[5,7,["G5125"]],[7,8,["G444"]],[8,9,["G1063"]],[9,10,["G3754"]],[10,11,["G3303"]],[11,13,["G1110"]],[13,14,["G4592"]],[14,17,["G1096"]],[17,18,["G1223"]],[18,19,["G846"]],[19,21,["G5318"]],[21,23,["G3956"]],[23,26,["G2730"]],[26,28,["G2419"]],[28,29,["G2532"]],[29,31,["G1410","G3756"]],[31,32,["G720"]],[32,33,[]]]},{"k":27039,"v":[[0,1,["G235"]],[1,2,["G2443"]],[2,4,["G1268"]],[4,5,["G3361"]],[5,6,["G1909","G4119"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G2992"]],[9,13,["G546","G547"]],[13,14,["G846"]],[14,17,["G2980"]],[17,18,["G3371"]],[18,20,["G3367"]],[20,21,["G444"]],[21,22,["G1909"]],[22,23,["G5127"]],[23,24,["G3686"]]]},{"k":27040,"v":[[0,1,["G2532"]],[1,3,["G2564"]],[3,4,["G846"]],[4,6,["G3853"]],[6,7,["G846"]],[7,8,["G3361"]],[8,10,["G5350"]],[10,12,["G2527"]],[12,13,["G3366"]],[13,14,["G1321"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,17,["G3686"]],[17,19,["G2424"]]]},{"k":27041,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2532"]],[3,4,["G2491"]],[4,5,["G611"]],[5,7,["G2036"]],[7,8,["G4314"]],[8,9,["G846"]],[9,10,["G1487"]],[10,12,["G2076"]],[12,13,["G1342"]],[13,16,["G1799"]],[16,18,["G2316"]],[18,20,["G191"]],[20,22,["G5216"]],[22,23,["G3123"]],[23,24,["G2228"]],[24,26,["G2316"]],[26,27,["G2919"]],[27,28,[]]]},{"k":27042,"v":[[0,1,["G1063"]],[1,2,["G2249"]],[2,3,["G1410","G3756"]],[3,4,["G3361"]],[4,5,["G2980"]],[5,8,["G3739"]],[8,11,["G1492"]],[11,12,["G2532"]],[12,13,["G191"]]]},{"k":27043,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,6,["G4324"]],[6,11,["G630","G846"]],[11,12,["G2147"]],[12,13,["G3367"]],[13,14,["G4459"]],[14,17,["G2849"]],[17,18,["G846"]],[18,19,["G1223"]],[19,21,["G3588"]],[21,22,["G2992"]],[22,23,["G3754"]],[23,24,["G3956"]],[24,26,["G1392"]],[26,27,["G2316"]],[27,28,["G1909"]],[28,32,["G1096"]]]},{"k":27044,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G444"]],[3,4,["G2258"]],[4,5,["G4119"]],[5,6,["G5062"]],[6,8,["G2094"]],[8,9,["G1909"]],[9,10,["G3739"]],[10,11,["G5124"]],[11,12,["G4592"]],[12,14,["G2392"]],[14,16,["G1096"]]]},{"k":27045,"v":[[0,1,["G1161"]],[1,4,["G630"]],[4,6,["G2064"]],[6,7,["G4314"]],[7,10,["G2398"]],[10,11,["G2532"]],[11,12,["G518"]],[12,14,["G3745"]],[14,15,["G3588"]],[15,17,["G749"]],[17,18,["G2532"]],[18,19,["G4245"]],[19,21,["G2036"]],[21,22,["G4314"]],[22,23,["G846"]]]},{"k":27046,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G191"]],[4,8,["G142"]],[8,10,["G5456"]],[10,11,["G4314"]],[11,12,["G2316"]],[12,15,["G3661"]],[15,16,["G2532"]],[16,17,["G2036"]],[17,18,["G1203"]],[18,19,["G4771"]],[19,21,["G2316"]],[21,24,["G4160"]],[24,25,["G3772"]],[25,26,["G2532"]],[26,27,["G1093"]],[27,28,["G2532"]],[28,29,["G3588"]],[29,30,["G2281"]],[30,31,["G2532"]],[31,32,["G3956"]],[32,33,["G3588"]],[33,34,["G1722"]],[34,35,["G846"]],[35,36,[]]]},{"k":27047,"v":[[0,2,["G1223"]],[2,4,["G4750"]],[4,6,["G4675"]],[6,7,["G3816"]],[7,8,["G1138"]],[8,10,["G2036"]],[10,11,["G2444"]],[11,14,["G1484"]],[14,15,["G5433"]],[15,16,["G2532"]],[16,18,["G2992"]],[18,19,["G3191"]],[19,21,["G2756"]]]},{"k":27048,"v":[[0,1,["G3588"]],[1,2,["G935"]],[2,4,["G3588"]],[4,5,["G1093"]],[5,7,["G3936"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G758"]],[10,12,["G4863"]],[12,13,["G1909","G846"]],[13,14,["G2596"]],[14,15,["G3588"]],[15,16,["G2962"]],[16,17,["G2532"]],[17,18,["G2596"]],[18,19,["G846"]],[19,20,["G5547"]]]},{"k":27049,"v":[[0,1,["G1063"]],[1,2,["G1909"]],[2,4,["G225"]],[4,5,["G1909"]],[5,6,["G4675"]],[6,7,["G40"]],[7,8,["G3816"]],[8,9,["G2424"]],[9,10,["G3739"]],[10,13,["G5548"]],[13,14,["G5037"]],[14,15,["G2264"]],[15,16,["G2532"]],[16,17,["G4194"]],[17,18,["G4091"]],[18,19,["G4862"]],[19,21,["G1484"]],[21,22,["G2532"]],[22,24,["G2992"]],[24,26,["G2474"]],[26,29,["G4863"]]]},{"k":27050,"v":[[0,3,["G4160"]],[3,4,["G3745"]],[4,5,["G4675"]],[5,6,["G5495"]],[6,7,["G2532"]],[7,8,["G4675"]],[8,9,["G1012"]],[9,11,["G4309"]],[11,14,["G1096"]]]},{"k":27051,"v":[[0,1,["G2532"]],[1,2,["G3569"]],[2,3,["G2962"]],[3,4,["G1896","(G1909)"]],[4,5,["G846"]],[5,6,["G547"]],[6,7,["G2532"]],[7,8,["G1325"]],[8,10,["G4675"]],[10,11,["G1401"]],[11,13,["G3326"]],[13,14,["G3956"]],[14,15,["G3954"]],[15,18,["G2980"]],[18,19,["G4675"]],[19,20,["G3056"]]]},{"k":27052,"v":[[0,1,["(G4571)"]],[1,3,["G1614"]],[3,4,["G4675"]],[4,5,["G5495"]],[5,6,["G1519"]],[6,7,["G2392"]],[7,8,["G2532"]],[8,10,["G4592"]],[10,11,["G2532"]],[11,12,["G5059"]],[12,15,["G1096"]],[15,16,["G1223"]],[16,17,["G3588"]],[17,18,["G3686"]],[18,20,["G4675"]],[20,21,["G40"]],[21,22,["G3816"]],[22,23,["G2424"]]]},{"k":27053,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G1189"]],[5,6,["G3588"]],[6,7,["G5117"]],[7,9,["G4531"]],[9,10,["G1722","G3739"]],[10,12,["G2258"]],[12,14,["G4863"]],[14,15,["G2532"]],[15,18,["G537"]],[18,19,["G4130"]],[19,22,["G40"]],[22,23,["G4151"]],[23,24,["G2532"]],[24,26,["G2980"]],[26,27,["G3588"]],[27,28,["G3056"]],[28,30,["G2316"]],[30,31,["G3326"]],[31,32,["G3954"]]]},{"k":27054,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4128"]],[3,7,["G4100"]],[7,8,["G2258"]],[8,10,["G3391"]],[10,11,["G2588"]],[11,12,["G2532"]],[12,15,["G5590"]],[15,16,["G2532","G3761"]],[16,17,["G3004"]],[17,18,["G1520"]],[18,22,["G5100"]],[22,28,["G5224","G846"]],[28,29,["G1511"]],[29,31,["G2398"]],[31,32,["G235"]],[32,33,["G846"]],[33,34,["G2258"]],[34,36,["G537"]],[36,37,["G2839"]]]},{"k":27055,"v":[[0,1,["G2532"]],[1,3,["G3173"]],[3,4,["G1411"]],[4,5,["G591"]],[5,6,["G3588"]],[6,7,["G652"]],[7,8,["G3142"]],[8,10,["G3588"]],[10,11,["G386"]],[11,13,["G3588"]],[13,14,["G2962"]],[14,15,["G2424"]],[15,16,["G5037"]],[16,17,["G3173"]],[17,18,["G5485"]],[18,19,["G2258"]],[19,20,["G1909"]],[20,21,["G846"]],[21,22,["G3956"]]]},{"k":27056,"v":[[0,0,["(G1063)"]],[0,1,["G3761"]],[1,2,["G5225"]],[2,4,["G5100"]],[4,5,["G1722"]],[5,6,["G846"]],[6,8,["G1729"]],[8,9,["G1063"]],[9,12,["G3745"]],[12,13,["G5225"]],[13,14,["G2935"]],[14,16,["G5564"]],[16,17,["G2228"]],[17,18,["G3614"]],[18,19,["G4453"]],[19,22,["G5342"]],[22,23,["G3588"]],[23,24,["G5092"]],[24,30,["G4097"]]]},{"k":27057,"v":[[0,1,["G2532"]],[1,4,["G5087"]],[4,5,["G3844"]],[5,6,["G3588"]],[6,7,["G652"]],[7,8,["G4228"]],[8,9,["G1161"]],[9,12,["G1239"]],[12,15,["G1538"]],[15,17,["G2530","G302"]],[17,18,["G5100"]],[18,19,["G2192"]],[19,20,["G5532"]]]},{"k":27058,"v":[[0,1,["G1161"]],[1,2,["G2500"]],[2,3,["G3588"]],[3,4,["G5259"]],[4,5,["G3588"]],[5,6,["G652"]],[6,8,["G1941"]],[8,9,["G921"]],[9,11,["G3603"]],[11,13,["G3177"]],[13,15,["G5207"]],[15,18,["G3874"]],[18,19,["G3019"]],[19,25,["G1085","G2953"]]]},{"k":27059,"v":[[0,1,["G5225"]],[1,2,["G68"]],[2,3,["G4453"]],[3,6,["G5342"]],[6,7,["G3588"]],[7,8,["G5536"]],[8,9,["G2532"]],[9,10,["G5087"]],[10,12,["G3844"]],[12,13,["G3588"]],[13,14,["G652"]],[14,15,["G4228"]]]},{"k":27060,"v":[[0,1,["G1161"]],[1,3,["G5100"]],[3,4,["G435"]],[4,5,["G3686"]],[5,6,["G367"]],[6,7,["G4862"]],[7,8,["G4551"]],[8,9,["G848"]],[9,10,["G1135"]],[10,11,["G4453"]],[11,13,["G2933"]]]},{"k":27061,"v":[[0,1,["G2532"]],[1,3,["G3557"]],[3,5,["G575"]],[5,6,["G3588"]],[6,7,["G5092"]],[7,8,["G846"]],[8,9,["G1135"]],[9,10,["G2532"]],[10,12,["G4894"]],[12,15,["G2532"]],[15,16,["G5342"]],[16,18,["G5100"]],[18,19,["G3313"]],[19,21,["G5087"]],[21,23,["G3844"]],[23,24,["G3588"]],[24,25,["G652"]],[25,26,["G4228"]]]},{"k":27062,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2036"]],[3,4,["G367"]],[4,5,["G1302"]],[5,7,["G4567"]],[7,8,["G4137"]],[8,9,["G4675"]],[9,10,["G2588"]],[10,12,["G5574"]],[12,14,["G3588"]],[14,15,["G40"]],[15,16,["G4151"]],[16,17,["G2532"]],[17,20,["G3557"]],[20,22,["G575"]],[22,23,["G3588"]],[23,24,["G5092"]],[24,26,["G3588"]],[26,27,["G5564"]]]},{"k":27063,"v":[[0,3,["G3306"]],[3,8,["G3306","G3780","G4671"]],[8,9,["G2532"]],[9,13,["G4097"]],[13,14,["G5225"]],[14,17,["G1722"]],[17,19,["G4674"]],[19,20,["G1849","(G3754)"]],[20,21,["G5101"]],[21,24,["G5087"]],[24,25,["G5124"]],[25,26,["G4229"]],[26,27,["G1722"]],[27,28,["G4675"]],[28,29,["G2588"]],[29,32,["G3756"]],[32,33,["G5574"]],[33,35,["G444"]],[35,36,["G235"]],[36,38,["G2316"]]]},{"k":27064,"v":[[0,1,["G1161"]],[1,2,["G367"]],[2,3,["G191"]],[3,4,["G5128"]],[4,5,["G3056"]],[5,7,["G4098"]],[7,12,["G1634"]],[12,13,["G2532"]],[13,14,["G3173"]],[14,15,["G5401"]],[15,16,["G1096"]],[16,17,["G1909"]],[17,18,["G3956"]],[18,21,["G191"]],[21,23,["G5023"]]]},{"k":27065,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G3501"]],[4,5,["G450"]],[5,8,["G4958","G846"]],[8,9,["G2532"]],[9,12,["G1627"]],[12,14,["G2290"]],[14,15,[]]]},{"k":27066,"v":[[0,1,["G1161"]],[1,3,["G1096"]],[3,4,["G5613"]],[4,6,["G1292"]],[6,8,["G5140"]],[8,9,["G5610"]],[9,11,["G2532"]],[11,12,["G846"]],[12,13,["G1135"]],[13,14,["G3361"]],[14,15,["G1492"]],[15,18,["G1096"]],[18,20,["G1525"]]]},{"k":27067,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G611"]],[3,5,["G846"]],[5,6,["G2036"]],[6,7,["G3427"]],[7,8,["G1487"]],[8,10,["G591"]],[10,11,["G3588"]],[11,12,["G5564"]],[12,15,["G5118"]],[15,16,["G1161"]],[16,17,["G3588"]],[17,18,["G2036"]],[18,19,["G3483"]],[19,22,["G5118"]]]},{"k":27068,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G5101"]],[6,9,["G3754"]],[9,10,["G5213"]],[10,13,["G4856"]],[13,15,["G3985"]],[15,16,["G3588"]],[16,17,["G4151"]],[17,20,["G2962"]],[20,21,["G2400"]],[21,22,["G3588"]],[22,23,["G4228"]],[23,28,["G2290"]],[28,29,["G4675"]],[29,30,["G435"]],[30,32,["G1909"]],[32,33,["G3588"]],[33,34,["G2374"]],[34,35,["G2532"]],[35,39,["G1627","G4571"]]]},{"k":27069,"v":[[0,1,["G1161"]],[1,4,["G4098"]],[4,5,["G3916"]],[5,6,["G3844"]],[6,7,["G846"]],[7,8,["G4228"]],[8,9,["G2532"]],[9,13,["G1634"]],[13,14,["G1161"]],[14,15,["G3588"]],[15,17,["G3495"]],[17,19,["G1525"]],[19,21,["G2147"]],[21,22,["G846"]],[22,23,["G3498"]],[23,24,["G2532"]],[24,27,["G1627"]],[27,28,["G2290"]],[28,30,["G4314"]],[30,31,["G846"]],[31,32,["G435"]]]},{"k":27070,"v":[[0,1,["G2532"]],[1,2,["G3173"]],[2,3,["G5401"]],[3,4,["G1096"]],[4,5,["G1909"]],[5,6,["G3650"]],[6,7,["G3588"]],[7,8,["G1577"]],[8,9,["G2532"]],[9,10,["G1909"]],[10,13,["G3956"]],[13,14,["G191"]],[14,16,["G5023"]]]},{"k":27071,"v":[[0,1,["G1161"]],[1,2,["G1223"]],[2,3,["G3588"]],[3,4,["G5495"]],[4,6,["G3588"]],[6,7,["G652"]],[7,9,["G4183"]],[9,10,["G4592"]],[10,11,["G2532"]],[11,12,["G5059"]],[12,13,["G1096"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G2992"]],[16,17,["G2532"]],[17,19,["G2258"]],[19,20,["G537"]],[20,23,["G3661"]],[23,24,["G1722"]],[24,25,["G4672"]],[25,26,["G4745"]]]},{"k":27072,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G3062"]],[4,5,["G5111"]],[5,7,["G3762"]],[7,8,["G2853"]],[8,11,["G846"]],[11,12,["G235"]],[12,13,["G3588"]],[13,14,["G2992"]],[14,15,["G3170"]],[15,16,["G846"]]]},{"k":27073,"v":[[0,1,["G1161"]],[1,2,["G4100"]],[2,5,["G3123"]],[5,6,["G4369"]],[6,8,["G3588"]],[8,9,["G2962"]],[9,10,["G4128"]],[10,11,["G5037"]],[11,13,["G435"]],[13,14,["G2532"]],[14,15,["G1135"]]]},{"k":27074,"v":[[0,2,["G5620"]],[2,5,["G1627"]],[5,6,["G3588"]],[6,7,["G772"]],[7,8,["G2596"]],[8,9,["G3588"]],[9,10,["G4113"]],[10,11,["G2532"]],[11,12,["G5087"]],[12,14,["G1909"]],[14,15,["G2825"]],[15,16,["G2532"]],[16,17,["G2895"]],[17,18,["G2443"]],[18,21,["G2579"]],[21,22,["G3588"]],[22,23,["G4639"]],[23,25,["G4074"]],[25,27,["G2064"]],[27,29,["G1982"]],[29,30,["G5100"]],[30,32,["G846"]]]},{"k":27075,"v":[[0,0,["(G1161)"]],[0,2,["G4905"]],[2,3,["G2532"]],[3,5,["G4128"]],[5,8,["G3588"]],[8,9,["G4172"]],[9,11,["G4038"]],[11,12,["G1519"]],[12,13,["G2419"]],[13,14,["G5342"]],[14,16,["G772"]],[16,17,["G2532"]],[17,21,["G3791"]],[21,22,["G5259"]],[22,23,["G169"]],[23,24,["G4151"]],[24,26,["G3748"]],[26,28,["G2323"]],[28,30,["G537"]]]},{"k":27076,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,6,["G450"]],[6,7,["G2532"]],[7,8,["G3956"]],[8,9,["G3588"]],[9,12,["G4862"]],[12,13,["G846"]],[13,15,["G5607"]],[15,17,["G139"]],[17,19,["G3588"]],[19,20,["G4523"]],[20,23,["G4130"]],[23,25,["G2205"]]]},{"k":27077,"v":[[0,1,["G2532"]],[1,2,["G1911"]],[2,3,["G846"]],[3,4,["G5495"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G652"]],[7,8,["G2532"]],[8,9,["G5087"]],[9,10,["G848"]],[10,11,["G1722"]],[11,13,["G1219"]],[13,14,["G5084"]]]},{"k":27078,"v":[[0,1,["G1161"]],[1,3,["G32"]],[3,6,["G2962"]],[6,7,["G1223"]],[7,8,["G3571"]],[8,9,["G455"]],[9,10,["G3588"]],[10,11,["G5438"]],[11,12,["G2374"]],[12,13,["G5037"]],[13,16,["G1806","G846"]],[16,18,["G2036"]]]},{"k":27079,"v":[[0,1,["G4198","(G2532)"]],[1,2,["G2476"]],[2,4,["G2980"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G2411"]],[7,9,["G3588"]],[9,10,["G2992"]],[10,11,["G3956"]],[11,12,["G3588"]],[12,13,["G4487"]],[13,15,["G5026"]],[15,16,["G2222"]]]},{"k":27080,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,7,["G1525"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G2411"]],[10,14,["G5259","G3722"]],[14,15,["G2532"]],[15,16,["G1321"]],[16,17,["G1161"]],[17,18,["G3588"]],[18,20,["G749"]],[20,21,["G3854"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,26,["G4862"]],[26,27,["G846"]],[27,32,["G4779","G3588","G4892"]],[32,33,["G2532"]],[33,34,["G3956"]],[34,35,["G3588"]],[35,36,["G1087"]],[36,38,["G3588"]],[38,39,["G5207"]],[39,41,["G2474"]],[41,42,["G2532"]],[42,43,["G649"]],[43,44,["G1519"]],[44,45,["G3588"]],[45,46,["G1201"]],[46,49,["G846"]],[49,50,["G71"]]]},{"k":27081,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G5257"]],[4,5,["G3854"]],[5,7,["G2147"]],[7,8,["G846"]],[8,9,["G3756"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G5438"]],[12,13,["(G1161)"]],[13,14,["G390"]],[14,16,["G518"]]]},{"k":27082,"v":[[0,1,["G3004"]],[1,2,["G3588"]],[2,3,["G1201"]],[3,4,["G3303"]],[4,5,["G2147"]],[5,7,["G2808"]],[7,8,["G1722"]],[8,9,["G3956"]],[9,10,["G803"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G5441"]],[13,14,["G2476"]],[14,15,["G1854"]],[15,16,["G4253"]],[16,17,["G3588"]],[17,18,["G2374"]],[18,19,["G1161"]],[19,23,["G455"]],[23,25,["G2147"]],[25,27,["G3762"]],[27,28,["G2080"]]]},{"k":27083,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["(G5037","G3739)"]],[3,5,["G2409"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G4755"]],[8,10,["G3588"]],[10,11,["G2411"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,15,["G749"]],[15,16,["G191"]],[16,17,["G5128"]],[17,18,["G3056"]],[18,20,["G1280"]],[20,21,["G4012"]],[21,22,["G846"]],[22,23,["G5101"]],[23,24,["G5124"]],[24,26,["G1096","G302"]]]},{"k":27084,"v":[[0,1,["G1161"]],[1,2,["G3854"]],[2,3,["G5100"]],[3,5,["G518"]],[5,6,["G846"]],[6,7,["G3004"]],[7,8,["G2400"]],[8,9,["G3588"]],[9,10,["G435"]],[10,11,["G3739"]],[11,13,["G5087"]],[13,14,["G1722"]],[14,15,["G5438"]],[15,16,["G1526"]],[16,17,["G2476"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,20,["G2411"]],[20,21,["G2532"]],[21,22,["G1321"]],[22,23,["G3588"]],[23,24,["G2992"]]]},{"k":27085,"v":[[0,1,["G5119"]],[1,2,["G565"]],[2,3,["G3588"]],[3,4,["G4755"]],[4,5,["G4862"]],[5,6,["G3588"]],[6,7,["G5257"]],[7,9,["G71"]],[9,10,["G846"]],[10,11,["G3326","G3756"]],[11,12,["G970"]],[12,13,["G1063"]],[13,15,["G5399"]],[15,16,["G3588"]],[16,17,["G2992"]],[17,18,["G3363"]],[18,23,["G3034"]]]},{"k":27086,"v":[[0,1,["G1161"]],[1,5,["G71"]],[5,6,["G846"]],[6,8,["G2476"]],[8,10,["G1722"]],[10,11,["G3588"]],[11,12,["G4892"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,16,["G749"]],[16,17,["G1905"]],[17,18,["G846"]]]},{"k":27087,"v":[[0,1,["G3004"]],[1,3,["G3756"]],[3,6,["G3853","G3852"]],[6,7,["G5213"]],[7,11,["G3361"]],[11,12,["G1321"]],[12,13,["G1909"]],[13,14,["G5129"]],[14,15,["G3686"]],[15,16,["G2532"]],[16,17,["G2400"]],[17,20,["G4137"]],[20,21,["G2419"]],[21,23,["G5216"]],[23,24,["G1322"]],[24,25,["G2532"]],[25,26,["G1014"]],[26,28,["G1863"]],[28,29,["G5127"]],[29,30,["G444"]],[30,31,["G129"]],[31,32,["G1909"]],[32,33,["G2248"]]]},{"k":27088,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2532"]],[3,4,["G3588"]],[4,6,["G652"]],[6,7,["G611"]],[7,9,["G2036"]],[9,11,["G1163"]],[11,13,["G3980"]],[13,14,["G2316"]],[14,15,["G3123"]],[15,16,["G2228"]],[16,17,["G444"]]]},{"k":27089,"v":[[0,1,["G3588"]],[1,2,["G2316"]],[2,4,["G2257"]],[4,5,["G3962"]],[5,7,["G1453"]],[7,8,["G2424"]],[8,9,["G3739"]],[9,10,["G5210"]],[10,11,["G1315"]],[11,13,["G2910"]],[13,14,["G1909"]],[14,16,["G3586"]]]},{"k":27090,"v":[[0,1,["G5126"]],[1,3,["G2316"]],[3,4,["G5312"]],[4,6,["G848"]],[6,8,["G1188"]],[8,12,["G747"]],[12,13,["G2532"]],[13,15,["G4990"]],[15,18,["G1325"]],[18,19,["G3341"]],[19,21,["G2474"]],[21,22,["G2532"]],[22,23,["G859"]],[23,25,["G266"]]]},{"k":27091,"v":[[0,1,["G2532"]],[1,2,["G2249"]],[2,3,["G2070"]],[3,4,["G846"]],[4,5,["G3144"]],[5,7,["G5130"]],[7,8,["G4487"]],[8,9,["G2532"]],[9,12,["G1161"]],[12,13,["G3588"]],[13,14,["G40"]],[14,15,["G4151"]],[15,16,["G3739"]],[16,17,["G2316"]],[17,19,["G1325"]],[19,23,["G3980"]],[23,24,["G846"]]]},{"k":27092,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G191"]],[3,7,["G1282"]],[7,11,["G2532"]],[11,13,["G1011"]],[13,15,["G337"]],[15,16,["G846"]]]},{"k":27093,"v":[[0,1,["G1161"]],[1,4,["G450"]],[4,5,["G5100"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G4892"]],[8,10,["G5330"]],[10,11,["G3686"]],[11,12,["G1059"]],[12,17,["G3547"]],[17,20,["G5093"]],[20,22,["G3956"]],[22,23,["G3588"]],[23,24,["G2992"]],[24,26,["G2753"]],[26,28,["G4160"]],[28,29,["G3588"]],[29,30,["G652"]],[30,31,["G1854"]],[31,34,["G1024","G5100"]]]},{"k":27094,"v":[[0,1,["G5037"]],[1,2,["G2036"]],[2,3,["G4314"]],[3,4,["G846"]],[4,6,["G435"]],[6,8,["G2475"]],[8,10,["G4337"]],[10,12,["G1438"]],[12,13,["G5101"]],[13,15,["G3195"]],[15,17,["G4238"]],[17,19,["G1909"]],[19,20,["G5125"]],[20,21,["G444"]]]},{"k":27095,"v":[[0,1,["G1063"]],[1,2,["G4253"]],[2,3,["G5130"]],[3,4,["G2250"]],[4,6,["G450"]],[6,7,["G2333"]],[7,8,["G3004"]],[8,9,["G1438"]],[9,11,["G1511"]],[11,12,["G5100"]],[12,14,["G3739"]],[14,16,["G706"]],[16,18,["G435"]],[18,19,["G5616"]],[19,21,["G5071"]],[21,22,["G4347"]],[22,24,["G3739"]],[24,26,["G337"]],[26,27,["G2532"]],[27,28,["G3956"]],[28,31,["G3745"]],[31,32,["G3982"]],[32,33,["G846"]],[33,35,["G1262"]],[35,36,["G2532"]],[36,37,["G1096"]],[37,38,["G1519"]],[38,39,["G3762"]]]},{"k":27096,"v":[[0,1,["G3326"]],[1,3,["G5126"]],[3,5,["G450"]],[5,6,["G2455"]],[6,8,["G1057"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2250"]],[11,13,["G3588"]],[13,14,["G582"]],[14,15,["G2532"]],[15,17,["G868"]],[17,18,["G2425"]],[18,19,["G2992"]],[19,20,["G3694"]],[20,21,["G848"]],[21,23,["G2548"]],[23,24,["G622"]],[24,25,["G2532"]],[25,26,["G3956"]],[26,30,["G3745"]],[30,31,["G3982"]],[31,32,["G846"]],[32,34,["G1287"]]]},{"k":27097,"v":[[0,1,["G2532"]],[1,2,["G3569"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,7,["G868"]],[7,8,["G575"]],[8,9,["G5130"]],[9,10,["G444"]],[10,11,["G2532"]],[11,14,["G1439","G846"]],[14,15,["G3754"]],[15,16,["G1437"]],[16,17,["G3778"]],[17,18,["G1012"]],[18,19,["G2228"]],[19,20,["G5124"]],[20,21,["G2041"]],[21,22,["G5600"]],[22,23,["G1537"]],[23,24,["G444"]],[24,29,["G2647"]]]},{"k":27098,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G2076"]],[4,5,["G1537"]],[5,6,["G2316"]],[6,8,["G1410","G3756"]],[8,9,["G2647"]],[9,10,["G846"]],[10,12,["G3379"]],[12,15,["G2147"]],[15,16,["G2532"]],[16,20,["G2314"]]]},{"k":27099,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G3982"]],[5,6,["G2532"]],[6,10,["G4341"]],[10,11,["G3588"]],[11,12,["G652"]],[12,14,["G1194"]],[14,17,["G3853"]],[17,21,["G3361"]],[21,22,["G2980"]],[22,23,["G1909"]],[23,24,["G3588"]],[24,25,["G3686"]],[25,27,["G2424"]],[27,28,["G2532"]],[28,31,["G630","G846"]]]},{"k":27100,"v":[[0,1,["G3767","(G3303)"]],[1,2,["G3588"]],[2,3,["G4198"]],[3,4,["G575"]],[4,6,["G4383"]],[6,8,["G3588"]],[8,9,["G4892"]],[9,10,["G5463"]],[10,11,["G3754"]],[11,15,["G2661"]],[15,18,["G818"]],[18,19,["G5228"]],[19,20,["G846"]],[20,21,["G3686"]]]},{"k":27101,"v":[[0,1,["G5037"]],[1,2,["G3956","G2250"]],[2,3,["G1722"]],[3,4,["G3588"]],[4,5,["G2411"]],[5,6,["G2532"]],[6,9,["G2596","G3624"]],[9,11,["G3973"]],[11,12,["G3756"]],[12,14,["G1321"]],[14,15,["G2532"]],[15,16,["G2097"]],[16,17,["G2424"]],[17,18,["G5547"]]]},{"k":27102,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,3,["G5025"]],[3,4,["G2250"]],[4,9,["G3588"]],[9,10,["G3101"]],[10,12,["G4129"]],[12,14,["G1096"]],[14,16,["G1112"]],[16,18,["G3588"]],[18,19,["G1675"]],[19,20,["G4314"]],[20,21,["G3588"]],[21,22,["G1445"]],[22,23,["G3754"]],[23,24,["G846"]],[24,25,["G5503"]],[25,27,["G3865"]],[27,28,["G1722"]],[28,29,["G3588"]],[29,30,["G2522"]],[30,31,["G1248"]]]},{"k":27103,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1427"]],[3,4,["G4341"]],[4,5,["G3588"]],[5,6,["G4128"]],[6,8,["G3588"]],[8,9,["G3101"]],[9,13,["G2036"]],[13,15,["G2076"]],[15,16,["G3756"]],[16,17,["G701"]],[17,19,["G2248"]],[19,21,["G2641"]],[21,22,["G3588"]],[22,23,["G3056"]],[23,25,["G2316"]],[25,27,["G1247"]],[27,28,["G5132"]]]},{"k":27104,"v":[[0,1,["G3767"]],[1,2,["G80"]],[2,5,["G1980"]],[5,6,["G1537"]],[6,7,["G5216"]],[7,8,["G2033"]],[8,9,["G435"]],[9,12,["G3140"]],[12,13,["G4134"]],[13,16,["G40"]],[16,17,["G4151"]],[17,18,["G2532"]],[18,19,["G4678"]],[19,20,["G3739"]],[20,23,["G2525"]],[23,24,["G1909"]],[24,25,["G5026"]],[25,26,["G5532"]]]},{"k":27105,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,6,["G4342"]],[6,8,["G4335"]],[8,9,["G2532"]],[9,11,["G3588"]],[11,12,["G1248"]],[12,14,["G3588"]],[14,15,["G3056"]]]},{"k":27106,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,4,["G700"]],[4,5,["(G1799)"]],[5,6,["G3956"]],[6,7,["G4128"]],[7,8,["G2532"]],[8,10,["G1586"]],[10,11,["G4736"]],[11,13,["G435"]],[13,14,["G4134"]],[14,16,["G4102"]],[16,17,["G2532"]],[17,20,["G40"]],[20,21,["G4151"]],[21,22,["G2532"]],[22,23,["G5376"]],[23,24,["G2532"]],[24,25,["G4402"]],[25,26,["G2532"]],[26,27,["G3527"]],[27,28,["G2532"]],[28,29,["G5096"]],[29,30,["G2532"]],[30,31,["G3937"]],[31,32,["G2532"]],[32,33,["G3532"]],[33,35,["G4339"]],[35,37,["G491"]]]},{"k":27107,"v":[[0,1,["G3739"]],[1,3,["G2476"]],[3,4,["G1799"]],[4,5,["G3588"]],[5,6,["G652"]],[6,7,["G2532"]],[7,11,["G4336"]],[11,16,["G2007","G5495"]],[16,17,["G846"]]]},{"k":27108,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,5,["G2316"]],[5,6,["G837"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G706"]],[9,11,["G3588"]],[11,12,["G3101"]],[12,13,["G4129"]],[13,14,["G1722"]],[14,15,["G2419"]],[15,16,["G4970"]],[16,17,["G5037"]],[17,19,["G4183"]],[19,20,["G3793"]],[20,22,["G3588"]],[22,23,["G2409"]],[23,25,["G5219"]],[25,27,["G3588"]],[27,28,["G4102"]]]},{"k":27109,"v":[[0,1,["G1161"]],[1,2,["G4736"]],[2,3,["G4134"]],[3,5,["G4102"]],[5,6,["G2532"]],[6,7,["G1411"]],[7,8,["G4160"]],[8,9,["G3173"]],[9,10,["G5059"]],[10,11,["G2532"]],[11,12,["G4592"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G2992"]]]},{"k":27110,"v":[[0,1,["G1161"]],[1,3,["G450"]],[3,4,["G5100"]],[4,5,["G1537"]],[5,6,["G3588"]],[6,7,["G4864"]],[7,10,["G3004"]],[10,15,["G3032"]],[15,16,["G2532"]],[16,17,["G2956"]],[17,18,["G2532"]],[18,19,["G221"]],[19,20,["G2532"]],[20,22,["G3588"]],[22,23,["G575"]],[23,24,["G2791"]],[24,25,["G2532"]],[25,27,["G773"]],[27,29,["G4802"]],[29,30,["G4736"]]]},{"k":27111,"v":[[0,1,["G2532"]],[1,5,["G2480","G3756"]],[5,7,["G436"]],[7,8,["G3588"]],[8,9,["G4678"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G4151"]],[12,14,["G3739"]],[14,16,["G2980"]]]},{"k":27112,"v":[[0,1,["G5119"]],[1,3,["G5260"]],[3,4,["G435"]],[4,6,["G3004"]],[6,9,["G191"]],[9,10,["G846"]],[10,11,["G2980"]],[11,12,["G989"]],[12,13,["G4487"]],[13,14,["G1519"]],[14,15,["G3475"]],[15,16,["G2532"]],[16,18,["G2316"]]]},{"k":27113,"v":[[0,1,["G5037"]],[1,4,["G4787"]],[4,5,["G3588"]],[5,6,["G2992"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G4245"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G1122"]],[12,13,["G2532"]],[13,15,["G2186"]],[15,18,["G4884"]],[18,19,["G846"]],[19,20,["G2532"]],[20,21,["G71"]],[21,23,["G1519"]],[23,24,["G3588"]],[24,25,["G4892"]]]},{"k":27114,"v":[[0,1,["G5037"]],[1,3,["G2476"]],[3,4,["G5571"]],[4,5,["G3144"]],[5,7,["G3004"]],[7,8,["G3778"]],[8,9,["G444"]],[9,10,["G3973"]],[10,11,["G3756"]],[11,13,["G2980"]],[13,14,["G989"]],[14,15,["G4487"]],[15,16,["G2596"]],[16,17,["G5127"]],[17,18,["G40"]],[18,19,["G5117"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G3551"]]]},{"k":27115,"v":[[0,1,["G1063"]],[1,4,["G191"]],[4,5,["G846"]],[5,6,["G3004"]],[6,7,["G3754"]],[7,8,["G3778"]],[8,9,["G2424"]],[9,11,["G3480"]],[11,13,["G2647"]],[13,14,["G5126"]],[14,15,["G5117"]],[15,16,["G2532"]],[16,18,["G236"]],[18,19,["G3588"]],[19,20,["G1485"]],[20,21,["G3739"]],[21,22,["G3475"]],[22,23,["G3860"]],[23,24,["G2254"]]]},{"k":27116,"v":[[0,1,["G2532"]],[1,2,["G537"]],[2,4,["G2516"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G4892"]],[7,9,["G816"]],[9,10,["G1519"]],[10,11,["G846"]],[11,12,["G1492"]],[12,13,["G846"]],[13,14,["G4383"]],[14,18,["G5616"]],[18,20,["G4383"]],[20,23,["G32"]]]},{"k":27117,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,5,["G749","(G1487","G686)"]],[5,6,["G2192"]],[6,7,["G5023"]],[7,9,["G3779"]]]},{"k":27118,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5346"]],[3,4,["G435"]],[4,5,["G80"]],[5,6,["G2532"]],[6,7,["G3962"]],[7,8,["G191"]],[8,9,["G3588"]],[9,10,["G2316"]],[10,12,["G1391"]],[12,13,["G3700"]],[13,15,["G2257"]],[15,16,["G3962"]],[16,17,["G11"]],[17,20,["G5607"]],[20,21,["G1722"]],[21,22,["G3318"]],[22,23,["G4250","(G2228)"]],[23,24,["G846"]],[24,25,["G2730"]],[25,26,["G1722"]],[26,27,["G5488"]]]},{"k":27119,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,3,["G4314"]],[3,4,["G846"]],[4,5,["G1831"]],[5,8,["G1537"]],[8,9,["G4675"]],[9,10,["G1093"]],[10,11,["G2532"]],[11,12,["G1537"]],[12,13,["G4675"]],[13,14,["G4772"]],[14,15,["G2532"]],[15,16,["G1204"]],[16,17,["G1519"]],[17,19,["G1093"]],[19,20,["G3739","G302"]],[20,23,["G1166"]],[23,24,["G4671"]]]},{"k":27120,"v":[[0,1,["G5119"]],[1,2,["G1831"]],[2,5,["G1537"]],[5,7,["G1093"]],[7,10,["G5466"]],[10,12,["G2730"]],[12,13,["G1722"]],[13,14,["G5488"]],[14,17,["G2547"]],[17,19,["G846"]],[19,20,["G3962"]],[20,22,["G599"]],[22,24,["G3351"]],[24,25,["G846"]],[25,26,["G1519"]],[26,27,["G5026"]],[27,28,["G1093"]],[28,29,["G1519","G3739"]],[29,30,["G5210"]],[30,31,["G3568"]],[31,32,["G2730"]]]},{"k":27121,"v":[[0,1,["G2532"]],[1,3,["G1325"]],[3,4,["G846"]],[4,5,["G3756"]],[5,6,["G2817"]],[6,7,["G1722"]],[7,9,["G846"]],[9,10,["G3761"]],[10,18,["G968","G4228"]],[18,19,["G2532"]],[19,21,["G1861"]],[21,25,["G1325"]],[25,26,["G846"]],[26,28,["G846"]],[28,29,["G1519"]],[29,31,["G2697"]],[31,32,["G2532"]],[32,34,["G846"]],[34,35,["G4690"]],[35,36,["G3326"]],[36,37,["G846"]],[37,41,["G846"]],[41,42,["G5607"]],[42,43,["G3756"]],[43,44,["G5043"]]]},{"k":27122,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,3,["G2980"]],[3,6,["G3779"]],[6,7,["G3754"]],[7,8,["G846"]],[8,9,["G4690"]],[9,10,["G2071"]],[10,11,["G3941"]],[11,12,["G1722"]],[12,14,["G245"]],[14,15,["G1093"]],[15,16,["G2532"]],[16,23,["G1402","G846"]],[23,24,["G2532"]],[24,27,["G2559"]],[27,29,["G5071"]],[29,30,["G2094"]]]},{"k":27123,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1484"]],[3,5,["G3739"]],[5,7,["(G1437)"]],[7,10,["G1398"]],[10,12,["G1473"]],[12,13,["G2919"]],[13,14,["G2036"]],[14,15,["G2316"]],[15,16,["G2532"]],[16,17,["G3326"]],[17,18,["G5023"]],[18,22,["G1831"]],[22,23,["G2532"]],[23,24,["G3000"]],[24,25,["G3427"]],[25,26,["G1722"]],[26,27,["G5129"]],[27,28,["G5117"]]]},{"k":27124,"v":[[0,1,["G2532"]],[1,3,["G1325"]],[3,4,["G846"]],[4,6,["G1242"]],[6,8,["G4061"]],[8,9,["G2532"]],[9,10,["G3779"]],[10,12,["G1080"]],[12,13,["G2464"]],[13,14,["G2532"]],[14,15,["G4059"]],[15,16,["G846"]],[16,17,["G3588"]],[17,18,["G3590"]],[18,19,["G2250"]],[19,20,["G2532"]],[20,21,["G2464"]],[21,23,["G2384"]],[23,24,["G2532"]],[24,25,["G2384"]],[25,27,["G3588"]],[27,28,["G1427"]],[28,29,["G3966"]]]},{"k":27125,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3966"]],[3,6,["G2206"]],[6,7,["G591"]],[7,8,["G2501"]],[8,9,["G1519"]],[9,10,["G125"]],[10,11,["G2532"]],[11,12,["G2316"]],[12,13,["G2258"]],[13,14,["G3326"]],[14,15,["G846"]]]},{"k":27126,"v":[[0,1,["G2532"]],[1,2,["G1807"]],[2,3,["G846"]],[3,5,["G1537"]],[5,6,["G3956"]],[6,7,["G846"]],[7,8,["G2347"]],[8,9,["G2532"]],[9,10,["G1325"]],[10,11,["G846"]],[11,12,["G5485"]],[12,13,["G2532"]],[13,14,["G4678"]],[14,17,["G1726"]],[17,19,["G5328"]],[19,20,["G935"]],[20,22,["G125"]],[22,23,["G2532"]],[23,25,["G2525"]],[25,26,["G846"]],[26,27,["G2233"]],[27,28,["G1909"]],[28,29,["G125"]],[29,30,["G2532"]],[30,31,["G3650"]],[31,32,["G848"]],[32,33,["G3624"]]]},{"k":27127,"v":[[0,1,["G1161"]],[1,3,["G2064"]],[3,5,["G3042"]],[5,6,["G1909"]],[6,7,["G3650"]],[7,8,["G3588"]],[8,9,["G1093"]],[9,11,["G125"]],[11,12,["G2532"]],[12,13,["G5477"]],[13,14,["G2532"]],[14,15,["G3173"]],[15,16,["G2347"]],[16,17,["G2532"]],[17,18,["G2257"]],[18,19,["G3962"]],[19,20,["G2147"]],[20,21,["G3756"]],[21,22,["G5527"]]]},{"k":27128,"v":[[0,1,["G1161"]],[1,3,["G2384"]],[3,4,["G191"]],[4,7,["G5607"]],[7,8,["G4621"]],[8,9,["G1722"]],[9,10,["G125"]],[10,13,["G1821"]],[13,14,["G2257"]],[14,15,["G3962"]],[15,16,["G4412"]]]},{"k":27129,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G1208"]],[4,6,["G2501"]],[6,9,["G319"]],[9,11,["G848"]],[11,12,["G80"]],[12,13,["G2532"]],[13,14,["G2501"]],[14,15,["G1085"]],[15,17,["G1096"]],[17,18,["G5318"]],[18,20,["G5328"]]]},{"k":27130,"v":[[0,1,["G1161"]],[1,2,["G649"]],[2,3,["G2501"]],[3,5,["G3333"]],[5,6,["G848"]],[6,7,["G3962"]],[7,8,["G2384"]],[8,11,["G2532"]],[11,12,["G3956"]],[12,13,["G848"]],[13,14,["G4772"]],[14,17,["G1440","G4002"]],[17,18,["G5590"]]]},{"k":27131,"v":[[0,1,["G1161"]],[1,2,["G2384"]],[2,4,["G2597"]],[4,5,["G1519"]],[5,6,["G125"]],[6,7,["G2532"]],[7,8,["G5053"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G2257"]],[11,12,["G3962"]]]},{"k":27132,"v":[[0,1,["G2532"]],[1,4,["G3346"]],[4,5,["G1519"]],[5,6,["G4966"]],[6,7,["G2532"]],[7,8,["G5087"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G3418"]],[11,12,["G3739"]],[12,13,["G11"]],[13,14,["G5608"]],[14,17,["G5092"]],[17,19,["G694"]],[19,20,["G3844"]],[20,21,["G3588"]],[21,22,["G5207"]],[22,24,["G1697"]],[24,28,["G4966"]]]},{"k":27133,"v":[[0,1,["G1161"]],[1,2,["G2531"]],[2,3,["G3588"]],[3,4,["G5550"]],[4,6,["G3588"]],[6,7,["G1860"]],[7,9,["G1448"]],[9,10,["G3739"]],[10,11,["G2316"]],[11,13,["G3660"]],[13,15,["G11"]],[15,16,["G3588"]],[16,17,["G2992"]],[17,18,["G837"]],[18,19,["G2532"]],[19,20,["G4129"]],[20,21,["G1722"]],[21,22,["G125"]]]},{"k":27134,"v":[[0,1,["G891","G3757"]],[1,2,["G2087"]],[2,3,["G935"]],[3,4,["G450"]],[4,5,["G3739"]],[5,6,["G1492"]],[6,7,["G3756"]],[7,8,["G2501"]]]},{"k":27135,"v":[[0,2,["G3778"]],[2,5,["G2686"]],[5,6,["G2257"]],[6,7,["G1085"]],[7,10,["G2559"]],[10,11,["G2257"]],[11,12,["G3962"]],[12,17,["G4160","G1570"]],[17,18,["G846"]],[18,20,["G1025"]],[20,26,["G3361"]],[26,27,["G2225"]]]},{"k":27136,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G2540"]],[3,4,["G3475"]],[4,6,["G1080"]],[6,7,["G2532"]],[7,8,["G2258"]],[8,10,["G791"]],[10,11,["G2532"]],[11,13,["G397"]],[13,14,["G1722"]],[14,15,["G848"]],[15,16,["G3962"]],[16,17,["G3624"]],[17,18,["G5140"]],[18,19,["G3376"]]]},{"k":27137,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,6,["G1620"]],[6,7,["G5328"]],[7,8,["G2364"]],[8,11,["G337","G846"]],[11,12,["G2532"]],[12,13,["G397"]],[13,14,["G846"]],[14,15,["G1519"]],[15,17,["G1438"]],[17,18,["G5207"]]]},{"k":27138,"v":[[0,1,["G2532"]],[1,2,["G3475"]],[2,4,["G3811"]],[4,6,["G3956"]],[6,8,["G4678"]],[8,11,["G124"]],[11,12,["G1161"]],[12,13,["G2258"]],[13,14,["G1415"]],[14,15,["G1722"]],[15,16,["G3056"]],[16,17,["G2532"]],[17,18,["G1722"]],[18,19,["G2041"]]]},{"k":27139,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G846"]],[3,5,["G4137"]],[5,6,["G5063"]],[6,8,["G5550"]],[8,10,["G305"]],[10,11,["G1909"]],[11,12,["G846"]],[12,13,["G2588"]],[13,15,["G1980"]],[15,16,["G848"]],[16,17,["G80"]],[17,18,["G3588"]],[18,19,["G5207"]],[19,21,["G2474"]]]},{"k":27140,"v":[[0,1,["G2532"]],[1,2,["G1492"]],[2,3,["G5100"]],[3,7,["G91"]],[7,9,["G292"]],[9,11,["G2532"]],[11,12,["G4160","G1557"]],[12,16,["G2669"]],[16,18,["G3960"]],[18,19,["G3588"]],[19,20,["G124"]]]},{"k":27141,"v":[[0,1,["G1161"]],[1,3,["G3543"]],[3,4,["G848"]],[4,5,["G80"]],[5,8,["G4920"]],[8,10,["G3754"]],[10,11,["G2316"]],[11,12,["G1223"]],[12,13,["G846"]],[13,14,["G5495"]],[14,16,["G1325","G4991"]],[16,17,["G846"]],[17,18,["G1161"]],[18,19,["G3588"]],[19,20,["G4920"]],[20,21,["G3756"]]]},{"k":27142,"v":[[0,1,["G5037"]],[1,2,["G3588"]],[2,3,["G1966"]],[3,4,["G2250"]],[4,7,["G3700"]],[7,9,["G846"]],[9,12,["G3164"]],[12,13,["G2532"]],[13,20,["G4900","G846","G1519","G1515"]],[20,21,["G2036"]],[21,22,["G435"]],[22,23,["G5210"]],[23,24,["G2075"]],[24,25,["G80"]],[25,26,["G2444"]],[26,29,["G91"]],[29,32,["G240"]]]},{"k":27143,"v":[[0,1,["G1161"]],[1,7,["G91","G4139"]],[7,10,["G683","G846"]],[10,11,["G2036"]],[11,12,["G5101"]],[12,13,["G2525"]],[13,14,["G4571"]],[14,16,["G758"]],[16,17,["G2532"]],[17,19,["G1348"]],[19,20,["G1909"]],[20,21,["G2248"]]]},{"k":27144,"v":[[0,1,["G2309","(G3361)"]],[1,2,["G4771"]],[2,3,["G337"]],[3,4,["G3165"]],[4,7,["G3739","G5158","G337"]],[7,8,["G3588"]],[8,9,["G124"]],[9,10,["G5504"]]]},{"k":27145,"v":[[0,1,["G1161"]],[1,2,["G5343"]],[2,3,["G3475"]],[3,4,["G1722"]],[4,5,["G5129"]],[5,6,["G3056"]],[6,7,["G2532"]],[7,8,["G1096"]],[8,10,["G3941"]],[10,11,["G1722"]],[11,13,["G1093"]],[13,15,["G3099"]],[15,16,["G3757"]],[16,18,["G1080"]],[18,19,["G1417"]],[19,20,["G5207"]]]},{"k":27146,"v":[[0,1,["G2532"]],[1,3,["G5062"]],[3,4,["G2094"]],[4,6,["G4137"]],[6,8,["G3700"]],[8,10,["G846"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G2048"]],[13,15,["G3735"]],[15,16,["G4614"]],[16,18,["G32"]],[18,21,["G2962"]],[21,22,["G1722"]],[22,24,["G5395"]],[24,26,["G4442"]],[26,29,["G942"]]]},{"k":27147,"v":[[0,1,["G1161"]],[1,2,["G3475"]],[2,3,["G1492"]],[3,6,["G2296"]],[6,8,["G3588"]],[8,9,["G3705"]],[9,10,["G1161"]],[10,12,["G846"]],[12,14,["G4334"]],[14,16,["G2657"]],[16,19,["G5456"]],[19,22,["G2962"]],[22,23,["G1096"]],[23,24,["G4314"]],[24,25,["G846"]]]},{"k":27148,"v":[[0,2,["G1473"]],[2,4,["G3588"]],[4,5,["G2316"]],[5,7,["G4675"]],[7,8,["G3962"]],[8,9,["G3588"]],[9,10,["G2316"]],[10,12,["G11"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G2316"]],[15,17,["G2464"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G2316"]],[20,22,["G2384"]],[22,23,["G1161"]],[23,24,["G3475"]],[24,25,["G1096","G1790"]],[25,27,["G5111"]],[27,28,["G3756"]],[28,29,["G2657"]]]},{"k":27149,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,4,["G2962"]],[4,6,["G846"]],[6,8,["G3089"]],[8,10,["G5266"]],[10,12,["G4675"]],[12,13,["G4228"]],[13,14,["G1063"]],[14,15,["G3588"]],[15,16,["G5117"]],[16,17,["G1722","G3739"]],[17,19,["G2476"]],[19,20,["G2076"]],[20,21,["G40"]],[21,22,["G1093"]]]},{"k":27150,"v":[[0,3,["G1492"]],[3,6,["G1492"]],[6,7,["G3588"]],[7,8,["G2561"]],[8,10,["G3450"]],[10,11,["G2992"]],[11,12,["G3588"]],[12,14,["G1722"]],[14,15,["G125"]],[15,16,["G2532"]],[16,19,["G191"]],[19,20,["G846"]],[20,21,["G4726"]],[21,22,["G2532"]],[22,25,["G2597"]],[25,27,["G1807"]],[27,28,["G846"]],[28,29,["G2532"]],[29,30,["G3568"]],[30,31,["G1204"]],[31,34,["G649"]],[34,35,["G4571"]],[35,36,["G1519"]],[36,37,["G125"]]]},{"k":27151,"v":[[0,1,["G5126"]],[1,2,["G3475"]],[2,3,["G3739"]],[3,5,["G720"]],[5,6,["G2036"]],[6,7,["G5101"]],[7,8,["G2525"]],[8,9,["G4571"]],[9,11,["G758"]],[11,12,["G2532"]],[12,14,["G1348"]],[14,16,["G5126"]],[16,18,["G2316"]],[18,19,["G649"]],[19,23,["G758"]],[23,24,["G2532"]],[24,26,["G3086"]],[26,27,["G1722"]],[27,29,["G5495"]],[29,32,["G32"]],[32,34,["G3700"]],[34,36,["G846"]],[36,37,["G1722"]],[37,38,["G3588"]],[38,39,["G942"]]]},{"k":27152,"v":[[0,1,["G3778"]],[1,4,["G1806","G846"]],[4,9,["G4160"]],[9,10,["G5059"]],[10,11,["G2532"]],[11,12,["G4592"]],[12,13,["G1722"]],[13,15,["G1093"]],[15,17,["G125"]],[17,18,["G2532"]],[18,19,["G1722"]],[19,21,["G2063"]],[21,22,["G2281"]],[22,23,["G2532"]],[23,24,["G1722"]],[24,25,["G3588"]],[25,26,["G2048"]],[26,27,["G5062"]],[27,28,["G2094"]]]},{"k":27153,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,4,["G3475"]],[4,6,["G2036"]],[6,8,["G3588"]],[8,9,["G5207"]],[9,11,["G2474"]],[11,13,["G4396"]],[13,16,["G2962"]],[16,17,["G5216"]],[17,18,["G2316"]],[18,20,["G450"]],[20,22,["G5213"]],[22,23,["G1537"]],[23,24,["G5216"]],[24,25,["G80"]],[25,27,["G5613"]],[27,28,["G1691"]],[28,29,["G846"]],[29,32,["G191"]]]},{"k":27154,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,5,["G1096"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G1577"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2048"]],[11,12,["G3326"]],[12,13,["G3588"]],[13,14,["G32"]],[14,16,["G2980"]],[16,18,["G846"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G3735"]],[21,22,["G4614"]],[22,23,["G2532"]],[23,25,["G2257"]],[25,26,["G3962"]],[26,27,["G3739"]],[27,28,["G1209"]],[28,30,["G2198"]],[30,31,["G3051"]],[31,33,["G1325"]],[33,35,["G2254"]]]},{"k":27155,"v":[[0,2,["G3739"]],[2,3,["G2257"]],[3,4,["G3962"]],[4,5,["G2309"]],[5,6,["G3756"]],[6,7,["G1096","G5255"]],[7,8,["G235"]],[8,11,["G683"]],[11,13,["G2532"]],[13,15,["G848"]],[15,16,["G2588"]],[16,19,["G4762"]],[19,20,["G1519"]],[20,21,["G125"]]]},{"k":27156,"v":[[0,1,["G2036"]],[1,3,["G2"]],[3,4,["G4160"]],[4,5,["G2254"]],[5,6,["G2316"]],[6,7,["(G3739)"]],[7,9,["G4313"]],[9,10,["G2257"]],[10,11,["G1063"]],[11,14,["G3778"]],[14,15,["G3475"]],[15,16,["G3739"]],[16,17,["G1806"]],[17,18,["G2248"]],[18,20,["G1537"]],[20,22,["G1093"]],[22,24,["G125"]],[24,26,["G1492"]],[26,27,["G3756"]],[27,28,["G5101"]],[28,30,["G1096"]],[30,32,["G846"]]]},{"k":27157,"v":[[0,1,["G2532"]],[1,5,["G3447"]],[5,6,["G1722"]],[6,7,["G1565"]],[7,8,["G2250"]],[8,9,["G2532"]],[9,10,["G321"]],[10,11,["G2378"]],[11,13,["G3588"]],[13,14,["G1497"]],[14,15,["G2532"]],[15,16,["G2165"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G2041"]],[19,22,["G848"]],[22,23,["G5495"]]]},{"k":27158,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,3,["G4762"]],[3,4,["G2532"]],[4,7,["G3860","G846"]],[7,9,["G3000"]],[9,10,["G3588"]],[10,11,["G4756"]],[11,13,["G3772"]],[13,14,["G2531"]],[14,17,["G1125"]],[17,18,["G1722"]],[18,20,["G976"]],[20,22,["G3588"]],[22,23,["G4396"]],[23,26,["G3624"]],[26,28,["G2474"]],[28,30,["(G3361)"]],[30,31,["G4374"]],[31,33,["G3427"]],[33,35,["G4968"]],[35,36,["G2532"]],[36,37,["G2378"]],[37,42,["G5062"]],[42,43,["G2094"]],[43,44,["G1722"]],[44,45,["G3588"]],[45,46,["G2048"]]]},{"k":27159,"v":[[0,1,["G2532"]],[1,4,["G353"]],[4,5,["G3588"]],[5,6,["G4633"]],[6,8,["G3434"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G798"]],[11,13,["G5216"]],[13,14,["G2316"]],[14,15,["G4481"]],[15,16,["G5179"]],[16,17,["G3739"]],[17,19,["G4160"]],[19,21,["G4352"]],[21,22,["G846"]],[22,23,["G2532"]],[23,28,["G3351","G5209"]],[28,29,["G1900"]],[29,30,["G897"]]]},{"k":27160,"v":[[0,1,["G2257"]],[1,2,["G3962"]],[2,3,["G2258"]],[3,4,["G3588"]],[4,5,["G4633"]],[5,7,["G3142"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G2048"]],[10,14,["G1299"]],[14,15,["G2980"]],[15,17,["G3475"]],[17,21,["G4160"]],[21,22,["G846"]],[22,23,["G2596"]],[23,25,["G3588"]],[25,26,["G5179"]],[26,27,["G3739"]],[27,30,["G3708"]]]},{"k":27161,"v":[[0,1,["G3739"]],[1,2,["G2532"]],[2,3,["G2257"]],[3,4,["G3962"]],[4,7,["G1237"]],[7,9,["G1521"]],[9,10,["G3326"]],[10,11,["G2424"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G2697"]],[14,16,["G3588"]],[16,17,["G1484"]],[17,18,["G3739"]],[18,19,["G2316"]],[19,21,["G1856"]],[21,22,["G575"]],[22,24,["G4383"]],[24,26,["G2257"]],[26,27,["G3962"]],[27,28,["G2193"]],[28,29,["G3588"]],[29,30,["G2250"]],[30,32,["G1138"]]]},{"k":27162,"v":[[0,1,["G3739"]],[1,2,["G2147"]],[2,3,["G5485"]],[3,4,["G1799"]],[4,5,["G2316"]],[5,6,["G2532"]],[6,7,["G154"]],[7,9,["G2147"]],[9,11,["G4638"]],[11,13,["G3588"]],[13,14,["G2316"]],[14,16,["G2384"]]]},{"k":27163,"v":[[0,1,["G1161"]],[1,2,["G4672"]],[2,3,["G3618"]],[3,4,["G846"]],[4,6,["G3624"]]]},{"k":27164,"v":[[0,1,["G235"]],[1,2,["G3588"]],[2,4,["G5310"]],[4,5,["G2730"]],[5,6,["G3756"]],[6,7,["G1722"]],[7,8,["G3485"]],[8,11,["G5499"]],[11,12,["G2531"]],[12,13,["G3004"]],[13,14,["G3588"]],[14,15,["G4396"]]]},{"k":27165,"v":[[0,1,["G3772"]],[1,3,["G3427"]],[3,4,["G2362"]],[4,5,["G1161"]],[5,6,["G1093"]],[6,8,["G3450"]],[8,9,["G5286","G4228"]],[9,10,["G4169"]],[10,11,["G3624"]],[11,14,["G3618"]],[14,15,["G3427"]],[15,16,["G3004"]],[16,18,["G2962"]],[18,19,["G2228"]],[19,20,["G5101"]],[20,23,["G5117"]],[23,25,["G3450"]],[25,26,["G2663"]]]},{"k":27166,"v":[[0,2,["G3780"]],[2,3,["G3450"]],[3,4,["G5495"]],[4,5,["G4160"]],[5,6,["G3956"]],[6,8,["G5023"]]]},{"k":27167,"v":[[0,2,["G4644"]],[2,3,["G2532"]],[3,4,["G564"]],[4,6,["G2588"]],[6,7,["G2532"]],[7,8,["G3775"]],[8,9,["G5210"]],[9,11,["G104"]],[11,12,["G496"]],[12,13,["G3588"]],[13,14,["G40"]],[14,15,["G4151"]],[15,16,["G5613"]],[16,17,["G5216"]],[17,18,["G3962"]],[18,20,["G2532"]],[20,22,["G5210"]]]},{"k":27168,"v":[[0,1,["G5101"]],[1,3,["G3588"]],[3,4,["G4396"]],[4,6,["G3756"]],[6,7,["G5216"]],[7,8,["G3962"]],[8,9,["G1377"]],[9,10,["G2532"]],[10,13,["G615"]],[13,17,["G4293"]],[17,18,["G4012"]],[18,19,["G3588"]],[19,20,["G1660"]],[20,22,["G3588"]],[22,24,["G1342"]],[24,26,["G3739"]],[26,27,["G5210"]],[27,29,["G1096"]],[29,30,["G3568"]],[30,32,["G4273"]],[32,33,["G2532"]],[33,34,["G5406"]]]},{"k":27169,"v":[[0,1,["G3748"]],[1,3,["G2983"]],[3,4,["G3588"]],[4,5,["G3551"]],[5,6,["G1519"]],[6,8,["G1296"]],[8,10,["G32"]],[10,11,["G2532"]],[11,13,["G3756"]],[13,14,["G5442"]],[14,15,[]]]},{"k":27170,"v":[[0,1,["G1161"]],[1,3,["G191"]],[3,5,["G5023"]],[5,8,["G1282"]],[8,9,["(G848)"]],[9,10,["G3588"]],[10,11,["G2588"]],[11,12,["G2532"]],[12,14,["G1031"]],[14,15,["G1909"]],[15,16,["G846"]],[16,19,["G3599"]]]},{"k":27171,"v":[[0,1,["G1161"]],[1,3,["G5225"]],[3,4,["G4134"]],[4,7,["G40"]],[7,8,["G4151"]],[8,11,["G816"]],[11,12,["G1519"]],[12,13,["G3772"]],[13,15,["G1492"]],[15,17,["G1391"]],[17,19,["G2316"]],[19,20,["G2532"]],[20,21,["G2424"]],[21,22,["G2476"]],[22,23,["G1537"]],[23,26,["G1188"]],[26,28,["G2316"]]]},{"k":27172,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,3,["G2400"]],[3,5,["G2334"]],[5,6,["G3588"]],[6,7,["G3772"]],[7,8,["G455"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G5207"]],[11,13,["G444"]],[13,14,["G2476"]],[14,15,["G1537"]],[15,18,["G1188"]],[18,20,["G2316"]]]},{"k":27173,"v":[[0,1,["G1161"]],[1,4,["G2896"]],[4,7,["G3173"]],[7,8,["G5456"]],[8,10,["G4912"]],[10,11,["G848"]],[11,12,["G3775"]],[12,13,["G2532"]],[13,14,["G3729"]],[14,15,["G1909"]],[15,16,["G846"]],[16,19,["G3661"]]]},{"k":27174,"v":[[0,1,["G2532"]],[1,2,["G1544"]],[2,4,["G1854"]],[4,6,["G3588"]],[6,7,["G4172"]],[7,9,["G3036"]],[9,11,["G2532"]],[11,12,["G3588"]],[12,13,["G3144"]],[13,15,["G659"]],[15,16,["G848"]],[16,17,["G2440"]],[17,18,["G3844"]],[18,21,["G3494"]],[21,22,["G4228"]],[22,24,["G2564"]],[24,26,["G4569"]]]},{"k":27175,"v":[[0,1,["G2532"]],[1,3,["G3036"]],[3,4,["G4736"]],[4,6,["G1941"]],[6,8,["G2532"]],[8,9,["G3004"]],[9,10,["G2962"]],[10,11,["G2424"]],[11,12,["G1209"]],[12,13,["G3450"]],[13,14,["G4151"]]]},{"k":27176,"v":[[0,1,["G1161"]],[1,4,["G5087","G1119"]],[4,6,["G2896"]],[6,9,["G3173"]],[9,10,["G5456"]],[10,11,["G2962"]],[11,12,["G2476"]],[12,13,["G3361"]],[13,14,["G5026"]],[14,15,["G266"]],[15,18,["G846"]],[18,19,["G2532"]],[19,23,["G2036"]],[23,24,["G5124"]],[24,27,["G2837"]]]},{"k":27177,"v":[[0,1,["G1161"]],[1,2,["G4569"]],[2,3,["G2258"]],[3,4,["G4909"]],[4,6,["G846"]],[6,7,["G336"]],[7,8,["G1161"]],[8,9,["G1722"]],[9,10,["G1565"]],[10,11,["G2250"]],[11,13,["G1096"]],[13,15,["G3173"]],[15,16,["G1375"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G1577"]],[19,20,["G3588"]],[20,22,["G1722"]],[22,23,["G2414"]],[23,24,["G5037"]],[24,27,["G3956"]],[27,29,["G1289"]],[29,30,["G2596"]],[30,31,["G3588"]],[31,32,["G5561"]],[32,34,["G2449"]],[34,35,["G2532"]],[35,36,["G4540"]],[36,37,["G4133"]],[37,38,["G3588"]],[38,39,["G652"]]]},{"k":27178,"v":[[0,1,["G1161"]],[1,2,["G2126"]],[2,3,["G435"]],[3,4,["G4792"]],[4,5,["G4736"]],[5,9,["G2532"]],[9,10,["G4160"]],[10,11,["G3173"]],[11,12,["G2870"]],[12,13,["G1909"]],[13,14,["G846"]]]},{"k":27179,"v":[[0,2,["(G1161)"]],[2,3,["G4569"]],[3,6,["G3075"]],[6,8,["G3588"]],[8,9,["G1577"]],[9,11,["G1531"]],[11,13,["G2596","G3624"]],[13,14,["G5037"]],[14,15,["G4951"]],[15,16,["G435"]],[16,17,["G2532"]],[17,18,["G1135"]],[18,19,["G3860"]],[19,21,["G1519"]],[21,22,["G5438"]]]},{"k":27180,"v":[[0,1,["G3767","(G3303)"]],[1,6,["G1289"]],[6,9,["G1330"]],[9,10,["G2097"]],[10,11,["G3588"]],[11,12,["G3056"]]]},{"k":27181,"v":[[0,1,["G1161"]],[1,2,["G5376"]],[2,4,["G2718"]],[4,5,["G1519"]],[5,7,["G4172"]],[7,9,["G4540"]],[9,11,["G2784"]],[11,12,["G5547"]],[12,14,["G846"]]]},{"k":27182,"v":[[0,1,["G5037"]],[1,2,["G3588"]],[2,3,["G3793"]],[3,6,["G3661"]],[6,8,["G4337"]],[8,12,["(G5259)"]],[12,13,["G5376"]],[13,14,["G3004"]],[14,15,["G191"]],[15,16,["G2532"]],[16,17,["G991"]],[17,18,["G3588"]],[18,19,["G4592"]],[19,20,["G3739"]],[20,22,["G4160"]]]},{"k":27183,"v":[[0,1,["G1063"]],[1,2,["G169"]],[2,3,["G4151"]],[3,4,["G994"]],[4,6,["G3173"]],[6,7,["G5456"]],[7,9,["G1831"]],[9,11,["G4183"]],[11,14,["G2192"]],[14,17,["G1161"]],[17,18,["G4183"]],[18,21,["G3886"]],[21,22,["G2532"]],[22,25,["G5560"]],[25,27,["G2323"]]]},{"k":27184,"v":[[0,1,["G2532"]],[1,3,["G1096"]],[3,4,["G3173"]],[4,5,["G5479"]],[5,6,["G1722"]],[6,7,["G1565"]],[7,8,["G4172"]]]},{"k":27185,"v":[[0,1,["G1161"]],[1,5,["G5100"]],[5,6,["G435"]],[6,7,["G3686"]],[7,8,["G4613"]],[8,10,["G4391"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,14,["G4172"]],[14,16,["G3096"]],[16,17,["G2532"]],[17,18,["G1839"]],[18,19,["G3588"]],[19,20,["G1484"]],[20,22,["G4540"]],[22,24,["G3004"]],[24,26,["G1438"]],[26,27,["G1511"]],[27,28,["G5100"]],[28,30,["G3173"]]]},{"k":27186,"v":[[0,2,["G3739"]],[2,4,["G3956"]],[4,6,["G4337"]],[6,7,["G575"]],[7,9,["G3398"]],[9,10,["G2193"]],[10,12,["G3173"]],[12,13,["G3004"]],[13,15,["G3778"]],[15,16,["G2076"]],[16,17,["G3588"]],[17,18,["G3173"]],[18,19,["G1411"]],[19,21,["G2316"]]]},{"k":27187,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,6,["G4337"]],[6,10,["G2425"]],[10,11,["G5550"]],[11,14,["G1839"]],[14,15,["G846"]],[15,17,["G3095"]]]},{"k":27188,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,4,["G4100"]],[4,5,["G5376"]],[5,6,["G2097"]],[6,8,["G3588"]],[8,9,["G4012"]],[9,10,["G3588"]],[10,11,["G932"]],[11,13,["G2316"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G3686"]],[16,18,["G2424"]],[18,19,["G5547"]],[19,22,["G907"]],[22,23,["G5037"]],[23,24,["G435"]],[24,25,["G2532"]],[25,26,["G1135"]]]},{"k":27189,"v":[[0,1,["G1161"]],[1,2,["G4613"]],[2,3,["G846"]],[3,4,["G4100"]],[4,5,["G2532"]],[5,6,["G2532"]],[6,10,["G907"]],[10,12,["G2258","G4342"]],[12,14,["G5376"]],[14,15,["G5037"]],[15,16,["G1839"]],[16,17,["G2334"]],[17,18,["(G3173)"]],[18,19,["G1411"]],[19,20,["G2532"]],[20,21,["G4592"]],[21,24,["G1096"]]]},{"k":27190,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G652"]],[4,5,["G3588"]],[5,7,["G1722"]],[7,8,["G2414"]],[8,9,["G191"]],[9,10,["G3754"]],[10,11,["G4540"]],[11,13,["G1209"]],[13,14,["G3588"]],[14,15,["G3056"]],[15,17,["G2316"]],[17,19,["G649"]],[19,20,["G4314"]],[20,21,["G846"]],[21,22,["G4074"]],[22,23,["G2532"]],[23,24,["G2491"]]]},{"k":27191,"v":[[0,1,["G3748"]],[1,6,["G2597"]],[6,7,["G4336"]],[7,8,["G4012"]],[8,9,["G846"]],[9,10,["G3704"]],[10,13,["G2983"]],[13,15,["G40"]],[15,16,["G4151"]]]},{"k":27192,"v":[[0,1,["G1063"]],[1,3,["G3768"]],[3,5,["G2258"]],[5,6,["G1968"]],[6,7,["G1909"]],[7,8,["G3762"]],[8,10,["G846","(G1161)"]],[10,11,["G3440"]],[11,13,["G5225"]],[13,14,["G907"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G3686"]],[17,19,["G3588"]],[19,20,["G2962"]],[20,21,["G2424"]]]},{"k":27193,"v":[[0,1,["G5119"]],[1,2,["G2007"]],[2,5,["G5495"]],[5,6,["G1909"]],[6,7,["G846"]],[7,8,["G2532"]],[8,10,["G2983"]],[10,12,["G40"]],[12,13,["G4151"]]]},{"k":27194,"v":[[0,1,["G1161"]],[1,3,["G4613"]],[3,4,["G2300"]],[4,5,["G3754"]],[5,6,["G1223"]],[6,8,["G1936"]],[8,10,["G3588"]],[10,11,["G652"]],[11,12,["G5495"]],[12,13,["G3588"]],[13,14,["G40"]],[14,15,["G4151"]],[15,17,["G1325"]],[17,19,["G4374"]],[19,20,["G846"]],[20,21,["G5536"]]]},{"k":27195,"v":[[0,1,["G3004"]],[1,2,["G1325"]],[2,4,["G2504"]],[4,5,["G5026"]],[5,6,["G1849"]],[6,7,["G2443"]],[7,9,["G3739","G302"]],[9,11,["G2007"]],[11,12,["G5495"]],[12,15,["G2983"]],[15,17,["G40"]],[17,18,["G4151"]]]},{"k":27196,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G4675"]],[6,7,["G694"]],[7,8,["G1498","G1519","G684"]],[8,9,["G4862"]],[9,10,["G4671"]],[10,11,["G3754"]],[11,14,["G3543"]],[14,16,["G3588"]],[16,17,["G1431"]],[17,19,["G2316"]],[19,22,["G2932"]],[22,23,["G1223"]],[23,24,["G5536"]]]},{"k":27197,"v":[[0,1,["G4671"]],[1,2,["G2076"]],[2,3,["G3756"]],[3,4,["G3310"]],[4,5,["G3761"]],[5,6,["G2819"]],[6,7,["G1722"]],[7,8,["G5129"]],[8,9,["G3056"]],[9,10,["G1063"]],[10,11,["G4675"]],[11,12,["G2588"]],[12,13,["G2076"]],[13,14,["G3756"]],[14,15,["G2117"]],[15,18,["G1799"]],[18,20,["G2316"]]]},{"k":27198,"v":[[0,1,["G3340"]],[1,2,["G3767"]],[2,3,["G575"]],[3,4,["G5026"]],[4,5,["G4675"]],[5,6,["G2549"]],[6,7,["G2532"]],[7,8,["G1189"]],[8,9,["G2316"]],[9,10,["G1487"]],[10,11,["G686"]],[11,12,["G3588"]],[12,13,["G1963"]],[13,15,["G4675"]],[15,16,["G2588"]],[16,19,["G863"]],[19,20,["G4671"]]]},{"k":27199,"v":[[0,1,["G1063"]],[1,3,["G3708"]],[3,5,["G4571"]],[5,6,["G5607"]],[6,7,["G1519"]],[7,9,["G5521"]],[9,11,["G4088"]],[11,12,["G2532"]],[12,15,["G4886"]],[15,17,["G93"]]]},{"k":27200,"v":[[0,1,["G1161"]],[1,2,["G611"]],[2,3,["G4613"]],[3,5,["G2036"]],[5,6,["G1189"]],[6,7,["G5210"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,10,["G2962"]],[10,11,["G5228"]],[11,12,["G1700"]],[12,13,["G3704"]],[13,14,["G3367"]],[14,18,["G3739"]],[18,21,["G2046"]],[21,22,["G1904"]],[22,23,["G1909"]],[23,24,["G1691"]]]},{"k":27201,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,4,["(G3303","G3767)"]],[4,6,["G1263"]],[6,7,["G2532"]],[7,8,["G2980"]],[8,9,["G3588"]],[9,10,["G3056"]],[10,12,["G3588"]],[12,13,["G2962"]],[13,14,["G5290"]],[14,15,["G1519"]],[15,16,["G2419"]],[16,17,["G5037"]],[17,20,["G2097"]],[20,22,["G4183"]],[22,23,["G2968"]],[23,25,["G3588"]],[25,26,["G4541"]]]},{"k":27202,"v":[[0,1,["G1161"]],[1,3,["G32"]],[3,6,["G2962"]],[6,7,["G2980"]],[7,8,["G4314"]],[8,9,["G5376"]],[9,10,["G3004"]],[10,11,["G450"]],[11,12,["G2532"]],[12,13,["G4198"]],[13,14,["G2596"]],[14,16,["G3314"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G3598"]],[19,22,["G2597"]],[22,23,["G575"]],[23,24,["G2419"]],[24,25,["G1519"]],[25,26,["G1048"]],[26,27,["G3778"]],[27,28,["G2076"]],[28,29,["G2048"]]]},{"k":27203,"v":[[0,1,["G2532"]],[1,3,["G450"]],[3,4,["G2532"]],[4,5,["G4198"]],[5,6,["G2532"]],[6,7,["G2400"]],[7,9,["G435"]],[9,11,["G128"]],[11,13,["G2135"]],[13,16,["G1413"]],[16,18,["G2582"]],[18,19,["G938"]],[19,22,["G128"]],[22,23,["G3739"]],[23,26,["G2258","G1909"]],[26,28,["G3956"]],[28,29,["G848"]],[29,30,["G1047"]],[30,31,["G2532"]],[31,32,["(G3739)"]],[32,33,["G2064"]],[33,34,["G1519"]],[34,35,["G2419"]],[35,38,["G4352"]]]},{"k":27204,"v":[[0,0,["(G5037)"]],[0,1,["G2258"]],[1,2,["G5290"]],[2,3,["G2532"]],[3,4,["G2521"]],[4,5,["G1909"]],[5,6,["G848"]],[6,7,["G716","(G2532)"]],[7,8,["G314"]],[8,9,["G2268"]],[9,10,["G3588"]],[10,11,["G4396"]]]},{"k":27205,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4151"]],[3,4,["G2036"]],[4,6,["G5376"]],[6,8,["G4334"]],[8,9,["G2532"]],[9,11,["G2853"]],[11,13,["G5129"]],[13,14,["G716"]]]},{"k":27206,"v":[[0,1,["G1161"]],[1,2,["G5376"]],[2,4,["G4370"]],[4,8,["G191"]],[8,9,["G846"]],[9,10,["G314"]],[10,11,["G3588"]],[11,12,["G4396"]],[12,13,["G2268"]],[13,14,["G2532"]],[14,15,["G2036","(G687","G1065)"]],[15,16,["G1097"]],[16,18,["G3739"]],[18,20,["G314"]]]},{"k":27207,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036","(G1063)"]],[3,4,["G4459"]],[4,5,["G1410","G302"]],[5,7,["G3362"]],[7,9,["G5100"]],[9,11,["G3594"]],[11,12,["G3165"]],[12,13,["G5037"]],[13,15,["G3870"]],[15,16,["G5376"]],[16,21,["G305"]],[21,23,["G2523"]],[23,24,["G4862"]],[24,25,["G846"]]]},{"k":27208,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G4042"]],[2,4,["G3588"]],[4,5,["G1124"]],[5,6,["G3739"]],[6,8,["G314"]],[8,9,["G2258"]],[9,10,["G3778"]],[10,13,["G71"]],[13,14,["G5613"]],[14,16,["G4263"]],[16,17,["G1909"]],[17,19,["G4967"]],[19,20,["G2532"]],[20,21,["G5613"]],[21,23,["G286"]],[23,24,["G880"]],[24,25,["G1726"]],[25,26,["G846"]],[26,27,["G2751"]],[27,28,["G3779"]],[28,29,["G455"]],[29,31,["G3756"]],[31,32,["G848"]],[32,33,["G4750"]]]},{"k":27209,"v":[[0,1,["G1722"]],[1,2,["G846"]],[2,3,["G5014"]],[3,4,["G846"]],[4,5,["G2920"]],[5,8,["G142"]],[8,9,["G1161"]],[9,10,["G5101"]],[10,12,["G1334"]],[12,13,["G846"]],[13,14,["G1074"]],[14,15,["G3754"]],[15,16,["G846"]],[16,17,["G2222"]],[17,19,["G142"]],[19,20,["G575"]],[20,21,["G3588"]],[21,22,["G1093"]]]},{"k":27210,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2135"]],[3,4,["G611"]],[4,5,["G5376"]],[5,7,["G2036"]],[7,9,["G1189"]],[9,10,["G4675"]],[10,11,["G4012"]],[11,12,["G5101"]],[12,13,["G3004"]],[13,14,["G3588"]],[14,15,["G4396"]],[15,16,["G5124"]],[16,17,["G4012"]],[17,18,["G1438"]],[18,19,["G2228"]],[19,20,["G4012"]],[20,23,["G5101","G2087"]]]},{"k":27211,"v":[[0,1,["G1161"]],[1,2,["G5376"]],[2,3,["G455"]],[3,4,["G848"]],[4,5,["G4750"]],[5,6,["G2532"]],[6,7,["G756"]],[7,8,["G575"]],[8,10,["G5026"]],[10,11,["G1124"]],[11,13,["G2097"]],[13,15,["G846"]],[15,16,["G2424"]]]},{"k":27212,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,4,["G4198"]],[4,5,["G2596"]],[5,7,["G3598"]],[7,9,["G2064"]],[9,10,["G1909"]],[10,12,["G5100"]],[12,13,["G5204"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G2135"]],[16,17,["G5346"]],[17,18,["G2400"]],[18,21,["G5204"]],[21,22,["G5101"]],[22,24,["G2967"]],[24,25,["G3165"]],[25,28,["G907"]]]},{"k":27213,"v":[[0,1,["G1161"]],[1,2,["G5376"]],[2,3,["G2036"]],[3,4,["G1487"]],[4,6,["G4100"]],[6,7,["G1537"]],[7,8,["G3650"]],[8,10,["G2588"]],[10,12,["G1832"]],[12,13,["G1161"]],[13,15,["G611"]],[15,17,["G2036"]],[17,19,["G4100"]],[19,21,["G2424"]],[21,22,["G5547"]],[22,23,["G1511"]],[23,24,["G3588"]],[24,25,["G5207"]],[25,27,["G2316"]]]},{"k":27214,"v":[[0,1,["G2532"]],[1,3,["G2753"]],[3,4,["G3588"]],[4,5,["G716"]],[5,8,["G2476"]],[8,9,["G2532"]],[9,12,["G2597"]],[12,13,["G297"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G5204"]],[16,17,["G5037"]],[17,18,["G5376"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G2135"]],[21,22,["G2532"]],[22,24,["G907"]],[24,25,["G846"]]]},{"k":27215,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,6,["G305"]],[6,8,["G1537"]],[8,9,["G3588"]],[9,10,["G5204"]],[10,12,["G4151"]],[12,15,["G2962"]],[15,17,["G726"]],[17,18,["G5376"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G2135","(G3756)"]],[21,22,["G1492"]],[22,23,["G846"]],[23,25,["G3765"]],[25,26,["(G1063)"]],[26,28,["G4198"]],[28,30,["G848"]],[30,31,["G3598"]],[31,32,["G5463"]]]},{"k":27216,"v":[[0,1,["G1161"]],[1,2,["G5376"]],[2,4,["G2147"]],[4,5,["G1519"]],[5,6,["G108"]],[6,7,["G2532"]],[7,9,["G1330"]],[9,11,["G2097"]],[11,13,["G3956"]],[13,14,["G3588"]],[14,15,["G4172"]],[15,16,["G2193"]],[16,17,["G846"]],[17,18,["G2064"]],[18,19,["G1519"]],[19,20,["G2542"]]]},{"k":27217,"v":[[0,1,["G1161"]],[1,2,["G4569"]],[2,3,["G2089"]],[3,5,["G1709"]],[5,6,["G547"]],[6,7,["G2532"]],[7,8,["G5408"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G3101"]],[11,13,["G3588"]],[13,14,["G2962"]],[14,15,["G4334"]],[15,17,["G3588"]],[17,19,["G749"]]]},{"k":27218,"v":[[0,2,["G154"]],[2,3,["G3844"]],[3,4,["G846"]],[4,5,["G1992"]],[5,6,["G1519"]],[6,7,["G1154"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,10,["G4864"]],[10,11,["G3704"]],[11,12,["G1437"]],[12,14,["G2147"]],[14,15,["G5100"]],[15,17,["(G5607)"]],[17,18,["G3598"]],[18,19,["G5037"]],[19,22,["G435"]],[22,23,["G2532"]],[23,24,["G1135"]],[24,27,["G71"]],[27,29,["G1210"]],[29,30,["G1519"]],[30,31,["G2419"]]]},{"k":27219,"v":[[0,1,["G1161"]],[1,4,["G4198"]],[4,5,["G846"]],[5,7,["G1448"]],[7,8,["G1154"]],[8,9,["G2532"]],[9,10,["G1810"]],[10,14,["G4015"]],[14,15,["G846"]],[15,17,["G5457"]],[17,18,["G575"]],[18,19,["G3772"]]]},{"k":27220,"v":[[0,1,["G2532"]],[1,3,["G4098"]],[3,4,["G1909"]],[4,5,["G3588"]],[5,6,["G1093"]],[6,8,["G191"]],[8,10,["G5456"]],[10,11,["G3004"]],[11,13,["G848"]],[13,14,["G4549"]],[14,15,["G4549"]],[15,16,["G5101"]],[16,17,["G1377"]],[17,19,["G3165"]]]},{"k":27221,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G5101"]],[4,5,["G1488"]],[5,7,["G2962"]],[7,8,["G1161"]],[8,9,["G3588"]],[9,10,["G2962"]],[10,11,["G2036"]],[11,12,["G1473"]],[12,13,["G1510"]],[13,14,["G2424"]],[14,15,["G3739"]],[15,16,["G4771"]],[16,17,["G1377"]],[17,20,["G4642"]],[20,22,["G4671"]],[22,24,["G2979"]],[24,25,["G4314"]],[25,27,["G2759"]]]},{"k":27222,"v":[[0,1,["G5037"]],[1,3,["G5141"]],[3,4,["G2532"]],[4,5,["G2284"]],[5,6,["G2036"]],[6,7,["G2962"]],[7,8,["G5101"]],[8,9,["G2309"]],[9,12,["G3165"]],[12,14,["G4160"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G2962"]],[17,19,["G4314"]],[19,20,["G846"]],[20,21,["G450"]],[21,22,["G2532"]],[22,23,["G1525"]],[23,24,["G1519"]],[24,25,["G3588"]],[25,26,["G4172"]],[26,27,["G2532"]],[27,31,["G2980"]],[31,32,["G4671"]],[32,33,["G5101"]],[33,35,["G1163"]],[35,36,["G4160"]]]},{"k":27223,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G435"]],[3,6,["G4922"]],[6,7,["G846"]],[7,8,["G2476"]],[8,9,["G1769"]],[9,10,["G191"]],[10,11,["(G3303)"]],[11,12,["G5456"]],[12,13,["G1161"]],[13,14,["G2334"]],[14,16,["G3367"]]]},{"k":27224,"v":[[0,1,["G1161"]],[1,2,["G4569"]],[2,3,["G1453"]],[3,4,["G575"]],[4,5,["G3588"]],[5,6,["G1093"]],[6,7,["G1161"]],[7,9,["G848"]],[9,10,["G3788"]],[10,12,["G455"]],[12,14,["G991"]],[14,16,["G3762"]],[16,17,["G1161"]],[17,23,["G5496","G846"]],[23,25,["G1521"]],[25,27,["G1519"]],[27,28,["G1154"]]]},{"k":27225,"v":[[0,1,["G2532"]],[1,3,["G2258"]],[3,4,["G5140"]],[4,5,["G2250"]],[5,6,["G3361"]],[6,7,["G991"]],[7,8,["G2532"]],[8,9,["G3756"]],[9,11,["G5315"]],[11,12,["G3761"]],[12,13,["G4095"]]]},{"k":27226,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,5,["G5100"]],[5,6,["G3101"]],[6,7,["G1722"]],[7,8,["G1154"]],[8,9,["G3686"]],[9,10,["G367"]],[10,11,["G2532"]],[11,12,["G4314"]],[12,13,["G846"]],[13,14,["G2036"]],[14,15,["G3588"]],[15,16,["G2962"]],[16,17,["G1722"]],[17,19,["G3705"]],[19,20,["G367"]],[20,21,["G1161"]],[21,22,["G3588"]],[22,23,["G2036"]],[23,24,["G2400"]],[24,25,["G1473"]],[25,28,["G2962"]]]},{"k":27227,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,5,["G4314"]],[5,6,["G846"]],[6,7,["G450"]],[7,9,["G4198"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G4505"]],[12,15,["G2564"]],[15,16,["G2117"]],[16,17,["G2532"]],[17,18,["G2212"]],[18,19,["G1722"]],[19,21,["G3614"]],[21,23,["G2455"]],[23,26,["G3686"]],[26,27,["G4569"]],[27,29,["G5018"]],[29,30,["G1063"]],[30,31,["G2400"]],[31,33,["G4336"]]]},{"k":27228,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G1722"]],[4,6,["G3705"]],[6,8,["G435"]],[8,9,["G3686"]],[9,10,["G367"]],[10,12,["G1525"]],[12,13,["G2532"]],[13,14,["G2007"]],[14,16,["G5495"]],[16,18,["G846"]],[18,19,["G3704"]],[19,24,["G308"]]]},{"k":27229,"v":[[0,1,["G1161"]],[1,2,["G367"]],[2,3,["G611"]],[3,4,["G2962"]],[4,7,["G191"]],[7,8,["G575"]],[8,9,["G4183"]],[9,10,["G4012"]],[10,11,["G5127"]],[11,12,["G435"]],[12,14,["G3745"]],[14,15,["G2556"]],[15,18,["G4160"]],[18,20,["G4675"]],[20,21,["G40"]],[21,22,["G1722"]],[22,23,["G2419"]]]},{"k":27230,"v":[[0,1,["G2532"]],[1,2,["G5602"]],[2,4,["G2192"]],[4,5,["G1849"]],[5,6,["G3844"]],[6,7,["G3588"]],[7,9,["G749"]],[9,11,["G1210"]],[11,12,["G3956"]],[12,15,["G1941"]],[15,16,["G4675"]],[16,17,["G3686"]]]},{"k":27231,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G846"]],[6,9,["G4198"]],[9,10,["G3754"]],[10,11,["G3778"]],[11,12,["G2076"]],[12,14,["G1589"]],[14,15,["G4632"]],[15,17,["G3427"]],[17,19,["G941"]],[19,20,["G3450"]],[20,21,["G3686"]],[21,22,["G1799"]],[22,24,["G1484"]],[24,25,["G2532"]],[25,26,["G935"]],[26,27,["G5037"]],[27,29,["G5207"]],[29,31,["G2474"]]]},{"k":27232,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,4,["G5263"]],[4,5,["G846"]],[5,8,["G3745"]],[8,9,["G846"]],[9,10,["G1163"]],[10,11,["G3958"]],[11,12,["G5228"]],[12,15,["G3450","G3686"]]]},{"k":27233,"v":[[0,1,["G1161"]],[1,2,["G367"]],[2,5,["G565"]],[5,6,["G2532"]],[6,7,["G1525"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G3614"]],[10,11,["G2532"]],[11,12,["G2007"]],[12,14,["G5495"]],[14,15,["G1909"]],[15,16,["G846"]],[16,17,["G2036"]],[17,18,["G80"]],[18,19,["G4549"]],[19,20,["G3588"]],[20,21,["G2962"]],[21,23,["G2424"]],[23,25,["G3700"]],[25,27,["G4671"]],[27,28,["G1722"]],[28,29,["G3588"]],[29,30,["G3598"]],[30,31,["G3739"]],[31,33,["G2064"]],[33,35,["G649"]],[35,36,["G3165"]],[36,37,["G3704"]],[37,42,["G308"]],[42,43,["G2532"]],[43,45,["G4130"]],[45,48,["G40"]],[48,49,["G4151"]]]},{"k":27234,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G634"]],[4,5,["G575"]],[5,6,["G846"]],[6,7,["G3788"]],[7,11,["G5616"]],[11,12,["G3013"]],[12,13,["G5037"]],[13,16,["G308"]],[16,17,["G3916"]],[17,18,["G2532"]],[18,19,["G450"]],[19,22,["G907"]]]},{"k":27235,"v":[[0,1,["G2532"]],[1,5,["G2983"]],[5,6,["G5160"]],[6,9,["G1765"]],[9,10,["G1161"]],[10,11,["G1096"]],[11,12,["G4569"]],[12,13,["G5100"]],[13,14,["G2250"]],[14,15,["G3326"]],[15,16,["G3588"]],[16,17,["G3101"]],[17,20,["G1722"]],[20,21,["G1154"]]]},{"k":27236,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G2784"]],[4,5,["G5547"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G4864"]],[8,9,["G3754"]],[9,10,["G3778"]],[10,11,["G2076"]],[11,12,["G3588"]],[12,13,["G5207"]],[13,15,["G2316"]]]},{"k":27237,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,4,["G191"]],[4,7,["G1839"]],[7,8,["G2532"]],[8,9,["G3004"]],[9,10,["G2076"]],[10,11,["G3756"]],[11,12,["G3778"]],[12,15,["G4199"]],[15,19,["G1941"]],[19,20,["G5124"]],[20,21,["G3686"]],[21,22,["G1722"]],[22,23,["G2419"]],[23,24,["G2532"]],[24,25,["G2064"]],[25,26,["G5602"]],[26,27,["G1519"]],[27,29,["G5124"]],[29,30,["G2443"]],[30,33,["G71"]],[33,34,["G846"]],[34,35,["G1210"]],[35,36,["G1909"]],[36,37,["G3588"]],[37,39,["G749"]]]},{"k":27238,"v":[[0,1,["G1161"]],[1,2,["G4569"]],[2,7,["G1743","G3123"]],[7,8,["G2532"]],[8,9,["G4797"]],[9,10,["G3588"]],[10,11,["G2453"]],[11,13,["G2730"]],[13,14,["G1722"]],[14,15,["G1154"]],[15,16,["G4822"]],[16,17,["G3754"]],[17,18,["G3778"]],[18,19,["G2076"]],[19,21,["G5547"]]]},{"k":27239,"v":[[0,1,["G1161"]],[1,3,["G5613"]],[3,4,["G2425"]],[4,5,["G2250"]],[5,7,["G4137"]],[7,8,["G3588"]],[8,9,["G2453"]],[9,11,["G4823"]],[11,13,["G337"]],[13,14,["G846"]]]},{"k":27240,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,4,["G1917"]],[4,6,["G1097"]],[6,8,["G4569"]],[8,9,["G5037"]],[9,11,["G3906"]],[11,12,["G3588"]],[12,13,["G4439","(G5037)"]],[13,14,["G2250"]],[14,15,["G2532"]],[15,16,["G3571"]],[16,17,["G3704"]],[17,18,["G337"]],[18,19,["G846"]]]},{"k":27241,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,4,["G2983"]],[4,5,["G846"]],[5,7,["G3571"]],[7,11,["G2524","G5465"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G5038"]],[14,15,["G1722"]],[15,17,["G4711"]]]},{"k":27242,"v":[[0,1,["G1161"]],[1,3,["G4569"]],[3,5,["G3854"]],[5,6,["G1519"]],[6,7,["G2419"]],[7,9,["G3987"]],[9,12,["G2853"]],[12,14,["G3588"]],[14,15,["G3101"]],[15,16,["G2532"]],[16,20,["G5399","G3956"]],[20,22,["G846"]],[22,24,["G4100"]],[24,25,["G3361"]],[25,26,["G3754"]],[26,28,["G2076"]],[28,30,["G3101"]]]},{"k":27243,"v":[[0,1,["G1161"]],[1,2,["G921"]],[2,3,["G1949"]],[3,4,["G846"]],[4,6,["G71"]],[6,8,["G4314"]],[8,9,["G3588"]],[9,10,["G652"]],[10,11,["G2532"]],[11,12,["G1334"]],[12,14,["G846"]],[14,15,["G4459"]],[15,18,["G1492"]],[18,19,["G3588"]],[19,20,["G2962"]],[20,21,["G1722"]],[21,22,["G3588"]],[22,23,["G3598"]],[23,24,["G2532"]],[24,25,["G3754"]],[25,28,["G2980"]],[28,30,["G846"]],[30,31,["G2532"]],[31,32,["G4459"]],[32,36,["G3955"]],[36,37,["G1722"]],[37,38,["G1154"]],[38,39,["G1722"]],[39,40,["G3588"]],[40,41,["G3686"]],[41,43,["G2424"]]]},{"k":27244,"v":[[0,1,["G2532"]],[1,3,["G2258"]],[3,4,["G3326"]],[4,5,["G846"]],[5,7,["G1531"]],[7,8,["G2532"]],[8,10,["G1607"]],[10,11,["G1722"]],[11,12,["G2419"]]]},{"k":27245,"v":[[0,1,["G2532"]],[1,4,["G3955"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G3686"]],[7,9,["G3588"]],[9,10,["G2962"]],[10,11,["G2424"]],[11,12,["G5037"]],[12,13,["(G2980","G4802)"]],[13,14,["G4314"]],[14,15,["G3588"]],[15,16,["G1675"]],[16,17,["G1161"]],[17,18,["G3588"]],[18,20,["G2021"]],[20,22,["G337"]],[22,23,["G846"]]]},{"k":27246,"v":[[0,2,["G1161"]],[2,3,["G3588"]],[3,4,["G80"]],[4,5,["G1921"]],[5,9,["G2609","G846"]],[9,10,["G1519"]],[10,11,["G2542"]],[11,12,["G2532"]],[12,15,["G1821","G846"]],[15,16,["G1519"]],[16,17,["G5019"]]]},{"k":27247,"v":[[0,1,["G3767","(G3303)"]],[1,2,["G2192"]],[2,3,["G3588"]],[3,4,["G1577"]],[4,5,["G1515"]],[5,6,["G2596"]],[6,7,["G3650"]],[7,8,["G2449"]],[8,9,["G2532"]],[9,10,["G1056"]],[10,11,["G2532"]],[11,12,["G4540"]],[12,15,["G3618"]],[15,16,["G2532"]],[16,17,["G4198"]],[17,19,["G3588"]],[19,20,["G5401"]],[20,22,["G3588"]],[22,23,["G2962"]],[23,24,["G2532"]],[24,26,["G3588"]],[26,27,["G3874"]],[27,29,["G3588"]],[29,30,["G40"]],[30,31,["G4151"]],[31,33,["G4129"]]]},{"k":27248,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,7,["G4074"]],[7,8,["G1330"]],[8,9,["G1223"]],[9,10,["G3956"]],[10,14,["G2718"]],[14,15,["G2532"]],[15,16,["G4314"]],[16,17,["G3588"]],[17,18,["G40"]],[18,20,["G2730"]],[20,22,["G3069"]]]},{"k":27249,"v":[[0,1,["G1161"]],[1,2,["G1563"]],[2,4,["G2147"]],[4,6,["G5100"]],[6,7,["G444"]],[7,8,["G3686"]],[8,9,["G132"]],[9,14,["G2621","G1909","G2895","(G1537)"]],[14,15,["G3638"]],[15,16,["G2094"]],[16,17,["(G3739)"]],[17,18,["G2258"]],[18,22,["G3886"]]]},{"k":27250,"v":[[0,1,["G2532"]],[1,2,["G4074"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G132"]],[6,7,["G2424"]],[7,8,["G5547"]],[8,11,["G2390","G4571"]],[11,12,["G450"]],[12,13,["G2532"]],[13,16,["G4766","G4572"]],[16,17,["G2532"]],[17,19,["G450"]],[19,20,["G2112"]]]},{"k":27251,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,4,["G2730"]],[4,6,["G3069"]],[6,7,["G2532"]],[7,8,["G4565"]],[8,9,["G1492"]],[9,10,["G846"]],[10,11,["(G3748)"]],[11,12,["G1994"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G2962"]]]},{"k":27252,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G1722"]],[4,5,["G2445"]],[5,7,["G5100"]],[7,8,["G3102"]],[8,9,["G3686"]],[9,10,["G5000"]],[10,11,["G3739"]],[11,13,["G1329"]],[13,15,["G3004"]],[15,16,["G1393"]],[16,18,["G3778"]],[18,19,["G2258"]],[19,20,["G4134"]],[20,22,["G18"]],[22,23,["G2041"]],[23,24,["G2532"]],[24,25,["G1654"]],[25,26,["G3739"]],[26,28,["G4160"]]]},{"k":27253,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,6,["G1722"]],[6,7,["G1565"]],[7,8,["G2250"]],[8,10,["G846"]],[10,12,["G770"]],[12,14,["G599"]],[14,16,["G1161"]],[16,19,["G3068"]],[19,20,["(G846)"]],[20,21,["G5087"]],[21,23,["G1722"]],[23,26,["G5253"]]]},{"k":27254,"v":[[0,1,["G1161"]],[1,4,["G3069"]],[4,5,["G5607"]],[5,7,["G1451"]],[7,8,["G2445"]],[8,10,["G3588"]],[10,11,["G3101"]],[11,13,["G191"]],[13,14,["G3754"]],[14,15,["G4074"]],[15,16,["G2076"]],[16,17,["G1722","G846"]],[17,19,["G649"]],[19,20,["G4314"]],[20,21,["G846"]],[21,22,["G1417"]],[22,23,["G435"]],[23,24,["G3870"]],[24,29,["G3361"]],[29,30,["G3635"]],[30,32,["G1330"]],[32,33,["G2193"]],[33,34,["G846"]]]},{"k":27255,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G450"]],[3,6,["G4905"]],[6,7,["G846"]],[7,8,["(G3739)"]],[8,11,["G3854"]],[11,13,["G321"]],[13,15,["G1519"]],[15,16,["G3588"]],[16,18,["G5253"]],[18,19,["G2532"]],[19,20,["G3956"]],[20,21,["G3588"]],[21,22,["G5503"]],[22,24,["G3936"]],[24,25,["G846"]],[25,26,["G2799"]],[26,27,["G2532"]],[27,28,["G1925"]],[28,30,["G5509"]],[30,31,["G2532"]],[31,32,["G2440"]],[32,33,["G3745"]],[33,34,["G1393"]],[34,35,["G4160"]],[35,38,["G5607"]],[38,39,["G3326"]],[39,40,["G846"]]]},{"k":27256,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G1544"]],[3,5,["G3956"]],[5,6,["G1854"]],[6,9,["G5087","G1119"]],[9,11,["G4336"]],[11,12,["G2532"]],[12,13,["G1994"]],[13,15,["G4314"]],[15,16,["G3588"]],[16,17,["G4983"]],[17,18,["G2036"]],[18,19,["G5000"]],[19,20,["G450"]],[20,21,["G1161"]],[21,22,["G3588"]],[22,23,["G455"]],[23,24,["G848"]],[24,25,["G3788"]],[25,26,["G2532"]],[26,29,["G1492"]],[29,30,["G4074"]],[30,33,["G339"]]]},{"k":27257,"v":[[0,1,["G1161"]],[1,3,["G1325"]],[3,4,["G846"]],[4,6,["G5495"]],[6,10,["G450","G846"]],[10,11,["G1161"]],[11,15,["G5455"]],[15,16,["G3588"]],[16,17,["G40"]],[17,18,["G2532"]],[18,19,["G5503"]],[19,20,["G3936"]],[20,21,["G846"]],[21,22,["G2198"]]]},{"k":27258,"v":[[0,1,["G1161"]],[1,3,["G1096"]],[3,4,["G1110"]],[4,5,["G2596"]],[5,6,["G3650"]],[6,7,["G2445"]],[7,8,["G2532"]],[8,9,["G4183"]],[9,10,["G4100"]],[10,11,["G1909"]],[11,12,["G3588"]],[12,13,["G2962"]]]},{"k":27259,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,7,["G846"]],[7,8,["G3306"]],[8,9,["G2425"]],[9,10,["G2250"]],[10,11,["G1722"]],[11,12,["G2445"]],[12,13,["G3844"]],[13,14,["G5100"]],[14,15,["G4613"]],[15,17,["G1038"]]]},{"k":27260,"v":[[0,1,["(G1161)"]],[1,2,["G2258"]],[2,4,["G5100"]],[4,5,["G435"]],[5,6,["G1722"]],[6,7,["G2542"]],[7,8,["G3686"]],[8,9,["G2883"]],[9,11,["G1543"]],[11,12,["G1537"]],[12,14,["G4686"]],[14,15,["G2564"]],[15,17,["G2483"]],[17,18,[]]]},{"k":27261,"v":[[0,2,["G2152"]],[2,4,["G2532"]],[4,7,["G5399"]],[7,8,["G2316"]],[8,9,["G4862"]],[9,10,["G3956"]],[10,11,["G848"]],[11,12,["G3624"]],[12,13,["(G5037)"]],[13,14,["G4160"]],[14,15,["G4183"]],[15,16,["G1654"]],[16,18,["G3588"]],[18,19,["G2992"]],[19,20,["G2532"]],[20,21,["G1189"]],[21,23,["G2316"]],[23,24,["G1275"]]]},{"k":27262,"v":[[0,2,["G1492"]],[2,3,["G1722"]],[3,5,["G3705"]],[5,6,["G5320"]],[6,7,["G5616"]],[7,9,["G1766"]],[9,10,["G5610"]],[10,12,["G3588"]],[12,13,["G2250"]],[13,15,["G32"]],[15,17,["G2316"]],[17,19,["G1525"]],[19,20,["G4314"]],[20,21,["G846"]],[21,22,["G2532"]],[22,23,["G2036"]],[23,25,["G846"]],[25,26,["G2883"]]]},{"k":27263,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G816"]],[4,6,["G846"]],[6,7,["(G2532)"]],[7,8,["G1096"]],[8,9,["G1719"]],[9,11,["G2036"]],[11,12,["G5101"]],[12,13,["G2076"]],[13,15,["G2962"]],[15,16,["G1161"]],[16,18,["G2036"]],[18,20,["G846"]],[20,21,["G4675"]],[21,22,["G4335"]],[22,23,["G2532"]],[23,24,["G4675"]],[24,25,["G1654"]],[25,28,["G305"]],[28,29,["G1519"]],[29,31,["G3422"]],[31,32,["G1799"]],[32,33,["G2316"]]]},{"k":27264,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,3,["G3992"]],[3,4,["G435"]],[4,5,["G1519"]],[5,6,["G2445"]],[6,7,["G2532"]],[7,9,["G3343"]],[9,11,["G4613"]],[11,12,["G3739"]],[12,14,["G1941"]],[14,15,["G4074"]]]},{"k":27265,"v":[[0,1,["G3778"]],[1,2,["G3579"]],[2,3,["G3844"]],[3,4,["G5100"]],[4,5,["G4613"]],[5,7,["G1038"]],[7,8,["G3739"]],[8,9,["G3614"]],[9,10,["G2076"]],[10,11,["G3844"]],[11,14,["G2281"]],[14,15,["G3778"]],[15,17,["G2980"]],[17,18,["G4671"]],[18,19,["G5101"]],[19,20,["G4571"]],[20,21,["G1163"]],[21,23,["G4160"]]]},{"k":27266,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G3588"]],[3,4,["G32"]],[4,6,["G2980"]],[6,8,["G2883"]],[8,10,["G565"]],[10,12,["G5455"]],[12,13,["G1417"]],[13,15,["G848"]],[15,17,["G3610"]],[17,18,["G2532"]],[18,20,["G2152"]],[20,21,["G4757"]],[21,28,["G4342","G846"]]]},{"k":27267,"v":[[0,1,["G2532"]],[1,5,["G1834"]],[5,6,["G537"]],[6,10,["G846"]],[10,12,["G649"]],[12,13,["G846"]],[13,14,["G1519"]],[14,15,["G2445"]]]},{"k":27268,"v":[[0,1,["(G1161)"]],[1,2,["G3588"]],[2,3,["G1887"]],[3,5,["G1565"]],[5,9,["G3596"]],[9,10,["G2532"]],[10,12,["G1448"]],[12,14,["G3588"]],[14,15,["G4172"]],[15,16,["G4074"]],[16,18,["G305"]],[18,19,["G1909"]],[19,20,["G3588"]],[20,21,["G1430"]],[21,23,["G4336"]],[23,24,["G4012"]],[24,26,["G1623"]],[26,27,["G5610"]]]},{"k":27269,"v":[[0,1,["G1161"]],[1,3,["G1096"]],[3,5,["G4361"]],[5,6,["G2532"]],[6,7,["G2309"]],[7,9,["G1089"]],[9,10,["G1161"]],[10,12,["G1565"]],[12,14,["G3903"]],[14,16,["G1968"]],[16,17,["G1909"]],[17,18,["(G846)"]],[18,19,["G1611"]]]},{"k":27270,"v":[[0,1,["G2532"]],[1,2,["G2334"]],[2,3,["G3772"]],[3,4,["G455"]],[4,5,["G2532"]],[5,7,["G5100"]],[7,8,["G4632"]],[8,9,["G2597"]],[9,10,["G1909"]],[10,11,["G846"]],[11,15,["G5613"]],[15,17,["G3173"]],[17,18,["G3607"]],[18,19,["G1210"]],[19,22,["G5064"]],[22,23,["G746"]],[23,24,["G2532"]],[24,26,["G2524"]],[26,27,["G1909"]],[27,28,["G3588"]],[28,29,["G1093"]]]},{"k":27271,"v":[[0,1,["G1722","G3739"]],[1,2,["G5225"]],[2,4,["G3956"]],[4,7,["G5074"]],[7,9,["G3588"]],[9,10,["G1093"]],[10,11,["G2532"]],[11,13,["G2342"]],[13,14,["G2532"]],[14,16,["G2062"]],[16,17,["G2532"]],[17,18,["G4071"]],[18,20,["G3588"]],[20,21,["G3772"]]]},{"k":27272,"v":[[0,1,["G2532"]],[1,3,["G1096"]],[3,5,["G5456"]],[5,6,["G4314"]],[6,7,["G846"]],[7,8,["G450"]],[8,9,["G4074"]],[9,10,["G2380"]],[10,11,["G2532"]],[11,12,["G5315"]]]},{"k":27273,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2036"]],[3,5,["G3365"]],[5,6,["G2962"]],[6,7,["G3754"]],[7,10,["G3763"]],[10,11,["G5315"]],[11,13,["G3956"]],[13,16,["G2839"]],[16,17,["G2228"]],[17,18,["G169"]]]},{"k":27274,"v":[[0,1,["G2532"]],[1,3,["G5456"]],[3,5,["G4314"]],[5,6,["G846"]],[6,7,["G3825"]],[7,8,["(G1537)"]],[8,10,["G1208"]],[10,11,["G3739"]],[11,12,["G2316"]],[12,14,["G2511"]],[14,19,["G2840","G3361","G4771"]]]},{"k":27275,"v":[[0,0,["(G1161)"]],[0,1,["G5124"]],[1,2,["G1096"]],[2,3,["(G1909)"]],[3,4,["G5151"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G4632"]],[7,10,["G353"]],[10,11,["G3825"]],[11,12,["G1519"]],[12,13,["G3772"]]]},{"k":27276,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G4074"]],[3,4,["G1280"]],[4,5,["G1722"]],[5,6,["G1438"]],[6,7,["G5101"]],[7,9,["G3705"]],[9,10,["G3739"]],[10,13,["G1492"]],[13,15,["G1498","G302","(G2532)"]],[15,16,["G2400"]],[16,17,["G3588"]],[17,18,["G435"]],[18,21,["G649"]],[21,22,["G575"]],[22,23,["G2883"]],[23,26,["G1331"]],[26,28,["G4613"]],[28,29,["G3614"]],[29,31,["G2186"]],[31,32,["G1909"]],[32,33,["G3588"]],[33,34,["G4440"]]]},{"k":27277,"v":[[0,1,["G2532"]],[1,2,["G5455"]],[2,4,["G4441"]],[4,5,["G1487"]],[5,6,["G4613"]],[6,9,["G1941"]],[9,10,["G4074"]],[10,12,["G3579"]],[12,13,["G1759"]]]},{"k":27278,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G1760"]],[3,4,["G4012"]],[4,5,["G3588"]],[5,6,["G3705"]],[6,7,["G3588"]],[7,8,["G4151"]],[8,9,["G2036"]],[9,11,["G846"]],[11,12,["G2400"]],[12,13,["G5140"]],[13,14,["G435"]],[14,15,["G2212"]],[15,16,["G4571"]]]},{"k":27279,"v":[[0,1,["G450"]],[1,2,["G235"]],[2,6,["G2597"]],[6,7,["G2532"]],[7,8,["G4198"]],[8,9,["G4862"]],[9,10,["G846"]],[10,11,["G1252"]],[11,12,["G3367"]],[12,13,["G1360"]],[13,14,["G1473"]],[14,16,["G649"]],[16,17,["G846"]]]},{"k":27280,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,4,["G2597"]],[4,5,["G4314"]],[5,6,["G3588"]],[6,7,["G435"]],[7,10,["G649"]],[10,11,["G4314"]],[11,12,["G846"]],[12,13,["G575"]],[13,14,["G2883"]],[14,16,["G2036"]],[16,17,["G2400"]],[17,18,["G1473"]],[18,19,["G1510"]],[19,21,["G3739"]],[21,23,["G2212"]],[23,24,["G5101"]],[24,26,["G3588"]],[26,27,["G156"]],[27,28,["G1223","G3739"]],[28,31,["G3918"]]]},{"k":27281,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G2883"]],[4,6,["G1543"]],[6,8,["G1342"]],[8,9,["G435"]],[9,10,["G2532"]],[10,13,["G5399"]],[13,14,["G2316"]],[14,15,["G5037"]],[15,18,["G3140"]],[18,19,["G5259"]],[19,20,["G3650"]],[20,21,["G3588"]],[21,22,["G1484"]],[22,24,["G3588"]],[24,25,["G2453"]],[25,29,["G5537"]],[29,30,["G5259"]],[30,32,["G40"]],[32,33,["G32"]],[33,36,["G3343"]],[36,37,["G4571"]],[37,38,["G1519"]],[38,39,["G848"]],[39,40,["G3624"]],[40,41,["G2532"]],[41,43,["G191"]],[43,44,["G4487"]],[44,45,["G3844"]],[45,46,["G4675"]]]},{"k":27282,"v":[[0,1,["G3767"]],[1,5,["G1528","G846"]],[5,7,["G3579"]],[7,9,["G1161"]],[9,11,["G3588"]],[11,12,["G1887"]],[12,13,["G4074"]],[13,15,["G1831"]],[15,16,["G4862"]],[16,17,["G846"]],[17,18,["G2532"]],[18,19,["G5100"]],[19,20,["G80"]],[20,21,["G575"]],[21,22,["G2445"]],[22,23,["G4905"]],[23,24,["G846"]]]},{"k":27283,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,4,["G1887"]],[4,6,["G1525"]],[6,7,["G1519"]],[7,8,["G2542"]],[8,9,["G1161"]],[9,10,["G2883"]],[10,12,["G2258","G4328"]],[12,13,["G846"]],[13,17,["G4779"]],[17,18,["G848"]],[18,19,["G4773"]],[19,20,["G2532"]],[20,21,["G316"]],[21,22,["G5384"]]]},{"k":27284,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G4074"]],[3,4,["G1096"]],[4,6,["G1525"]],[6,7,["G2883"]],[7,8,["G4876"]],[8,9,["G846"]],[9,12,["G4098"]],[12,13,["G1909"]],[13,15,["G4228"]],[15,17,["G4352"]],[17,18,[]]]},{"k":27285,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,5,["G1453","G846"]],[5,6,["G3004"]],[6,8,["G450"]],[8,11,["G2504","G846"]],[11,12,["G1510"]],[12,14,["G444"]]]},{"k":27286,"v":[[0,1,["G2532"]],[1,5,["G4926"]],[5,6,["G846"]],[6,9,["G1525"]],[9,10,["G2532"]],[10,11,["G2147"]],[11,12,["G4183"]],[12,16,["G4905"]]]},{"k":27287,"v":[[0,1,["G5037"]],[1,3,["G5346"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G5210"]],[6,7,["G1987"]],[7,8,["G5613"]],[8,11,["G2076"]],[11,14,["G111"]],[14,17,["G435"]],[17,21,["G2453"]],[21,24,["G2853"]],[24,25,["G2228"]],[25,27,["G4334"]],[27,31,["G246"]],[31,32,["G2532"]],[32,33,["G2316"]],[33,35,["G1166"]],[35,36,["G1698"]],[36,41,["G3004"]],[41,42,["G3367"]],[42,43,["G444"]],[43,44,["G2839"]],[44,45,["G2228"]],[45,46,["G169"]]]},{"k":27288,"v":[[0,1,["G1352","(G2532)"]],[1,2,["G2064"]],[2,7,["G369"]],[7,14,["G3343"]],[14,16,["G4441"]],[16,17,["G3767"]],[17,19,["G5101"]],[19,20,["G3056"]],[20,24,["G3343"]],[24,25,["G3165"]]]},{"k":27289,"v":[[0,1,["G2532"]],[1,2,["G2883"]],[2,3,["G5346"]],[3,4,["G5067"]],[4,5,["G2250"]],[5,6,["G575"]],[6,8,["G2252"]],[8,9,["G3522"]],[9,10,["G3360"]],[10,11,["G5026"]],[11,12,["G5610"]],[12,13,["G2532"]],[13,15,["G3588"]],[15,16,["G1766"]],[16,17,["G5610"]],[17,19,["G4336"]],[19,20,["G1722"]],[20,21,["G3450"]],[21,22,["G3624"]],[22,23,["G2532"]],[23,24,["G2400"]],[24,26,["G435"]],[26,27,["G2476"]],[27,28,["G1799"]],[28,29,["G3450"]],[29,30,["G1722"]],[30,31,["G2986"]],[31,32,["G2066"]]]},{"k":27290,"v":[[0,1,["G2532"]],[1,2,["G5346"]],[2,3,["G2883"]],[3,4,["G4675"]],[4,5,["G4335"]],[5,7,["G1522"]],[7,8,["G2532"]],[8,9,["G4675"]],[9,10,["G1654"]],[10,14,["G3415"]],[14,17,["G1799"]],[17,19,["G2316"]]]},{"k":27291,"v":[[0,1,["G3992"]],[1,2,["G3767"]],[2,3,["G1519"]],[3,4,["G2445"]],[4,5,["G2532"]],[5,7,["G3333"]],[7,8,["G4613"]],[8,9,["G3739"]],[9,11,["G1941"]],[11,12,["G4074"]],[12,13,["G3778"]],[13,15,["G3579"]],[15,16,["G1722"]],[16,18,["G3614"]],[18,21,["G4613"]],[21,23,["G1038"]],[23,24,["G3844"]],[24,27,["G2281"]],[27,28,["G3739"]],[28,31,["G3854"]],[31,33,["G2980"]],[33,35,["G4671"]]]},{"k":27292,"v":[[0,1,["G1824"]],[1,2,["G3767"]],[2,4,["G3992"]],[4,5,["G4314"]],[5,6,["G4571"]],[6,7,["G5037"]],[7,8,["G4771"]],[8,10,["G2573"]],[10,11,["G4160"]],[11,15,["G3854"]],[15,16,["G3568"]],[16,17,["G3767"]],[17,22,["G3918","G2249","G3956"]],[22,23,["G1799"]],[23,24,["G2316"]],[24,26,["G191"]],[26,28,["G3956"]],[28,31,["G4367"]],[31,32,["G4671"]],[32,33,["G5259"]],[33,34,["G2316"]]]},{"k":27293,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G455"]],[3,5,["G4750"]],[5,7,["G2036"]],[7,8,["G1909"]],[8,10,["G225"]],[10,12,["G2638"]],[12,13,["G3754"]],[13,14,["G2316"]],[14,15,["G2076"]],[15,16,["G3756"]],[16,19,["G4381"]]]},{"k":27294,"v":[[0,1,["G235"]],[1,2,["G1722"]],[2,3,["G3956"]],[3,4,["G1484"]],[4,7,["G5399"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G2038"]],[10,11,["G1343"]],[11,12,["G2076"]],[12,13,["G1184"]],[13,15,["G846"]]]},{"k":27295,"v":[[0,1,["G3588"]],[1,2,["G3056"]],[2,3,["G3739"]],[3,5,["G649"]],[5,7,["G3588"]],[7,8,["G5207"]],[8,10,["G2474"]],[10,11,["G2097"]],[11,12,["G1515"]],[12,13,["G1223"]],[13,14,["G2424"]],[14,15,["G5547"]],[15,16,["G3778"]],[16,17,["G2076"]],[17,18,["G2962"]],[18,20,["G3956"]]]},{"k":27296,"v":[[0,2,["G4487"]],[2,5,["G5210"]],[5,6,["G1492"]],[6,9,["G1096"]],[9,10,["G2596"]],[10,11,["G3650"]],[11,12,["G2449"]],[12,14,["G756"]],[14,15,["G575"]],[15,16,["G1056"]],[16,17,["G3326"]],[17,18,["G3588"]],[18,19,["G908"]],[19,20,["G3739"]],[20,21,["G2491"]],[21,22,["G2784"]]]},{"k":27297,"v":[[0,1,["G5613"]],[1,2,["G2316"]],[2,3,["G5548"]],[3,4,["G2424"]],[4,5,["G575"]],[5,6,["G3478"]],[6,9,["G40"]],[9,10,["G4151"]],[10,11,["G2532"]],[11,13,["G1411"]],[13,14,["G3739"]],[14,16,["G1330"]],[16,18,["G2109"]],[18,19,["G2532"]],[19,20,["G2390"]],[20,21,["G3956"]],[21,24,["G2616"]],[24,25,["G5259"]],[25,26,["G3588"]],[26,27,["G1228"]],[27,28,["G3754"]],[28,29,["G2316"]],[29,30,["G2258"]],[30,31,["G3326"]],[31,32,["G846"]]]},{"k":27298,"v":[[0,1,["G2532"]],[1,2,["G2249"]],[2,3,["G2070"]],[3,4,["G3144"]],[4,7,["G3956"]],[7,8,["G3739"]],[8,10,["G4160"]],[10,11,["G5037"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G5561"]],[14,16,["G3588"]],[16,17,["G2453"]],[17,18,["G2532"]],[18,19,["G1722"]],[19,20,["G2419"]],[20,21,["G3739"]],[21,23,["G337"]],[23,25,["G2910"]],[25,26,["G1909"]],[26,28,["G3586"]]]},{"k":27299,"v":[[0,1,["G5126"]],[1,2,["G2316"]],[2,4,["G1453"]],[4,5,["G3588"]],[5,6,["G5154"]],[6,7,["G2250"]],[7,8,["G2532"]],[8,11,["G1325","G846","G1096","G1717"]]]},{"k":27300,"v":[[0,1,["G3756"]],[1,3,["G3956"]],[3,4,["G3588"]],[4,5,["G2992"]],[5,6,["G235"]],[6,8,["G3144"]],[8,10,["G4401"]],[10,11,["G5259"]],[11,12,["G2316"]],[12,15,["G2254"]],[15,16,["G3748"]],[16,18,["G4906"]],[18,19,["G2532"]],[19,21,["G4844"]],[21,22,["G846"]],[22,24,["G846"]],[24,25,["G450"]],[25,26,["G1537"]],[26,28,["G3498"]]]},{"k":27301,"v":[[0,1,["G2532"]],[1,3,["G3853"]],[3,4,["G2254"]],[4,6,["G2784"]],[6,8,["G3588"]],[8,9,["G2992"]],[9,10,["G2532"]],[10,12,["G1263"]],[12,13,["G3754"]],[13,15,["G2076"]],[15,16,["G846"]],[16,19,["G3724"]],[19,20,["G5259"]],[20,21,["G2316"]],[21,25,["G2923"]],[25,27,["G2198"]],[27,28,["G2532"]],[28,29,["G3498"]]]},{"k":27302,"v":[[0,2,["G5129"]],[2,7,["G3140","G3956","G3588","G4396"]],[7,9,["G1223"]],[9,10,["G846"]],[10,11,["G3686"]],[11,12,["G3956"]],[12,13,["G4100"]],[13,14,["G1519"]],[14,15,["G846"]],[15,17,["G2983"]],[17,18,["G859"]],[18,20,["G266"]]]},{"k":27303,"v":[[0,2,["G4074"]],[2,3,["G2089"]],[3,4,["G2980"]],[4,5,["G5023"]],[5,6,["G4487"]],[6,7,["G3588"]],[7,8,["G40"]],[8,9,["G4151"]],[9,10,["G1968"]],[10,11,["G1909"]],[11,12,["G3956"]],[12,15,["G191"]],[15,16,["G3588"]],[16,17,["G3056"]]]},{"k":27304,"v":[[0,1,["G2532"]],[1,7,["G4103","G1537","G4061"]],[7,9,["G1839"]],[9,12,["G3745"]],[12,14,["G4905"]],[14,15,["G4074"]],[15,16,["G3754"]],[16,18,["G1909"]],[18,19,["G3588"]],[19,20,["G1484"]],[20,21,["G2532"]],[21,24,["G1632"]],[24,25,["G3588"]],[25,26,["G1431"]],[26,28,["G3588"]],[28,29,["G40"]],[29,30,["G4151"]]]},{"k":27305,"v":[[0,1,["G1063"]],[1,3,["G191"]],[3,4,["G846"]],[4,5,["G2980"]],[5,7,["G1100"]],[7,8,["G2532"]],[8,9,["G3170"]],[9,10,["G2316"]],[10,11,["G5119"]],[11,12,["G611"]],[12,13,["G4074"]]]},{"k":27306,"v":[[0,1,["G1410"]],[1,3,["G5100"]],[3,4,["G2967","(G3385)"]],[4,5,["G5204"]],[5,7,["G5128"]],[7,9,["G3361"]],[9,11,["G907"]],[11,12,["G3748"]],[12,14,["G2983"]],[14,15,["G3588"]],[15,16,["G40"]],[16,17,["G4151"]],[17,20,["G2531","G2532"]],[20,21,["G2249"]]]},{"k":27307,"v":[[0,1,["G5037"]],[1,3,["G4367"]],[3,4,["G846"]],[4,7,["G907"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G3686"]],[10,12,["G3588"]],[12,13,["G2962"]],[13,14,["G5119"]],[14,15,["G2065"]],[15,17,["G846"]],[17,19,["G1961"]],[19,20,["G5100"]],[20,21,["G2250"]]]},{"k":27308,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G652"]],[3,4,["G2532"]],[4,5,["G80"]],[5,7,["G5607"]],[7,8,["G2596"]],[8,9,["G2449"]],[9,10,["G191"]],[10,11,["G3754"]],[11,12,["G3588"]],[12,13,["G1484"]],[13,15,["G2532"]],[15,16,["G1209"]],[16,17,["G3588"]],[17,18,["G3056"]],[18,20,["G2316"]]]},{"k":27309,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,3,["G4074"]],[3,6,["G305"]],[6,7,["G1519"]],[7,8,["G2414"]],[8,9,["G3588"]],[9,12,["G1537"]],[12,14,["G4061"]],[14,15,["G1252"]],[15,16,["G4314"]],[16,17,["G846"]]]},{"k":27310,"v":[[0,1,["G3004"]],[1,4,["G1525"]],[4,5,["G4314"]],[5,6,["G435"]],[6,7,["G203"]],[7,8,["G2532"]],[8,11,["G4906"]],[11,12,["G846"]]]},{"k":27311,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,8,["G756"]],[8,10,["G1620"]],[10,13,["G2517"]],[13,15,["G846"]],[15,16,["G3004"]]]},{"k":27312,"v":[[0,1,["G1473"]],[1,2,["G2252"]],[2,3,["G1722"]],[3,5,["G4172"]],[5,7,["G2445"]],[7,8,["G4336"]],[8,9,["G2532"]],[9,10,["G1722"]],[10,12,["G1611"]],[12,14,["G1492"]],[14,16,["G3705"]],[16,18,["G5100"]],[18,19,["G4632"]],[19,20,["G2597"]],[20,24,["G5613"]],[24,26,["G3173"]],[26,27,["G3607"]],[27,29,["G2524"]],[29,30,["G1537"]],[30,31,["G3772"]],[31,33,["G5064"]],[33,34,["G746"]],[34,35,["G2532"]],[35,37,["G2064"]],[37,39,["G891"]],[39,40,["G1700"]]]},{"k":27313,"v":[[0,1,["G1519"]],[1,3,["G3739"]],[3,9,["G816"]],[9,11,["G2657"]],[11,12,["G2532"]],[12,13,["G1492"]],[13,15,["G5074"]],[15,17,["G3588"]],[17,18,["G1093"]],[18,19,["G2532"]],[19,21,["G2342"]],[21,22,["G2532"]],[22,24,["G2062"]],[24,25,["G2532"]],[25,26,["G4071"]],[26,28,["G3588"]],[28,29,["G3772"]]]},{"k":27314,"v":[[0,1,["G1161"]],[1,3,["G191"]],[3,5,["G5456"]],[5,6,["G3004"]],[6,8,["G3427"]],[8,9,["G450"]],[9,10,["G4074"]],[10,11,["G2380"]],[11,12,["G2532"]],[12,13,["G5315"]]]},{"k":27315,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G3365"]],[5,6,["G2962"]],[6,7,["G3754"]],[7,8,["G3956"]],[8,9,["G2839"]],[9,10,["G2228"]],[10,11,["G169"]],[11,15,["G3763"]],[15,16,["G1525"]],[16,17,["G1519"]],[17,18,["G3450"]],[18,19,["G4750"]]]},{"k":27316,"v":[[0,1,["G1161"]],[1,3,["G5456"]],[3,4,["G611"]],[4,5,["G3427"]],[5,6,["G1537","G1208"]],[6,7,["G1537"]],[7,8,["G3772"]],[8,9,["G3739"]],[9,10,["G2316"]],[10,12,["G2511"]],[12,17,["G2840","G3361","G4771"]]]},{"k":27317,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,4,["G1096"]],[4,6,["G5151"]],[6,7,["G2532"]],[7,8,["G537"]],[8,11,["G385"]],[11,12,["G3825"]],[12,13,["G1519"]],[13,14,["G3772"]]]},{"k":27318,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G1824"]],[3,6,["G5140"]],[6,7,["G435"]],[7,9,["G2186"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G3614"]],[12,13,["G1722","G3739"]],[13,15,["G2252"]],[15,16,["G649"]],[16,17,["G575"]],[17,18,["G2542"]],[18,19,["G4314"]],[19,20,["G3165"]]]},{"k":27319,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4151"]],[3,4,["G2036"]],[4,5,["G3427"]],[5,7,["G4905"]],[7,8,["G846"]],[8,9,["G3367"]],[9,10,["G1252"]],[10,11,["G1161"]],[11,12,["G3778"]],[12,13,["G1803"]],[13,14,["G80","(G2532)"]],[14,15,["G2064","G4862"]],[15,16,["G1698"]],[16,17,["G2532"]],[17,19,["G1525"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G435"]],[22,23,["G3624"]]]},{"k":27320,"v":[[0,1,["G5037"]],[1,3,["G518"]],[3,4,["G2254"]],[4,5,["G4459"]],[5,8,["G1492"]],[8,10,["G32"]],[10,11,["G1722"]],[11,12,["G846"]],[12,13,["G3624"]],[13,15,["G2476"]],[15,16,["G2532"]],[16,17,["G2036"]],[17,19,["G846"]],[19,20,["G649"]],[20,21,["G435"]],[21,22,["G1519"]],[22,23,["G2445"]],[23,24,["G2532"]],[24,26,["G3343"]],[26,27,["G4613"]],[27,30,["G1941"]],[30,31,["G4074"]]]},{"k":27321,"v":[[0,1,["G3739"]],[1,3,["G2980"]],[3,4,["G4571"]],[4,5,["G4487"]],[5,6,["G1722","G3739"]],[6,7,["G4771"]],[7,8,["G2532"]],[8,9,["G3956"]],[9,10,["G4675"]],[10,11,["G3624"]],[11,14,["G4982"]]]},{"k":27322,"v":[[0,1,["G1161"]],[1,3,["G3165"]],[3,4,["G756"]],[4,6,["G2980"]],[6,7,["G3588"]],[7,8,["G40"]],[8,9,["G4151"]],[9,10,["G1968"]],[10,11,["G1909"]],[11,12,["G846"]],[12,13,["G5618","(G2532)"]],[13,14,["G1909"]],[14,15,["G2248"]],[15,16,["G1722"]],[16,18,["G746"]]]},{"k":27323,"v":[[0,1,["G1161"]],[1,2,["G3415"]],[2,4,["G3588"]],[4,5,["G4487"]],[5,8,["G2962"]],[8,9,["G5613"]],[9,12,["G3004"]],[12,13,["G2491"]],[13,14,["G3303"]],[14,15,["G907"]],[15,17,["G5204"]],[17,18,["G1161"]],[18,19,["G5210"]],[19,22,["G907"]],[22,23,["G1722"]],[23,25,["G40"]],[25,26,["G4151"]]]},{"k":27324,"v":[[0,1,["G1487"]],[1,2,["G3767"]],[2,4,["G2316"]],[4,5,["G1325"]],[5,6,["G846"]],[6,7,["G3588"]],[7,8,["G2470"]],[8,9,["G1431"]],[9,10,["G5613"]],[10,12,["(G2532)"]],[12,14,["G2254"]],[14,16,["G4100"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G2962"]],[19,20,["G2424"]],[20,21,["G5547"]],[21,22,["G5101"]],[22,23,["G2252"]],[23,27,["G1415"]],[27,28,["G2967"]],[28,29,["G2316"]]]},{"k":27325,"v":[[0,1,["G1161"]],[1,3,["G191"]],[3,5,["G5023"]],[5,9,["G2270"]],[9,10,["G2532"]],[10,11,["G1392"]],[11,12,["G2316"]],[12,13,["G3004"]],[13,14,["G686"]],[14,15,["(G1065)"]],[15,16,["G2316"]],[16,17,["G2532"]],[17,19,["G3588"]],[19,20,["G1484"]],[20,21,["G1325"]],[21,22,["G3341"]],[22,23,["G1519"]],[23,24,["G2222"]]]},{"k":27326,"v":[[0,1,["G3767"]],[1,6,["G1289","(G3303)"]],[6,7,["G575"]],[7,8,["G3588"]],[8,9,["G2347"]],[9,11,["G1096"]],[11,12,["G1909"]],[12,13,["G4736"]],[13,14,["G1330"]],[14,17,["G2193"]],[17,18,["G5403"]],[18,19,["G2532"]],[19,20,["G2954"]],[20,21,["G2532"]],[21,22,["G490"]],[22,23,["G2980"]],[23,24,["G3588"]],[24,25,["G3056"]],[25,27,["G3367"]],[27,28,["G1508"]],[28,31,["G2453"]],[31,32,["G3440"]]]},{"k":27327,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G1537"]],[3,4,["G846"]],[4,5,["G2258"]],[5,6,["G435"]],[6,8,["G2953"]],[8,9,["G2532"]],[9,10,["G2956"]],[10,11,["G3748"]],[11,15,["G1525"]],[15,16,["G1519"]],[16,17,["G490"]],[17,18,["G2980"]],[18,19,["G4314"]],[19,20,["G3588"]],[20,21,["G1675"]],[21,22,["G2097"]],[22,23,["G3588"]],[23,24,["G2962"]],[24,25,["G2424"]]]},{"k":27328,"v":[[0,1,["G2532"]],[1,3,["G5495"]],[3,6,["G2962"]],[6,7,["G2258"]],[7,8,["G3326"]],[8,9,["G846"]],[9,10,["G5037"]],[10,12,["G4183"]],[12,13,["G706"]],[13,14,["G4100"]],[14,16,["G1994"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G2962"]]]},{"k":27329,"v":[[0,1,["G1161"]],[1,6,["G3056","G4012","G846","G191"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G3775"]],[9,11,["G3588"]],[11,12,["G1577"]],[12,13,["G3588"]],[13,15,["G1722"]],[15,16,["G2414"]],[16,17,["G2532"]],[17,20,["G1821"]],[20,21,["G921"]],[21,25,["G1330"]],[25,28,["G2193"]],[28,29,["G490"]]]},{"k":27330,"v":[[0,1,["G3739"]],[1,4,["G3854"]],[4,5,["G2532"]],[5,7,["G1492"]],[7,8,["G3588"]],[8,9,["G5485"]],[9,11,["G2316"]],[11,13,["G5463"]],[13,14,["G2532"]],[14,15,["G3870"]],[15,17,["G3956"]],[17,20,["G4286"]],[20,22,["G2588"]],[22,26,["G4357"]],[26,27,["G3588"]],[27,28,["G2962"]]]},{"k":27331,"v":[[0,1,["G3754"]],[1,3,["G2258"]],[3,5,["G18"]],[5,6,["G435"]],[6,7,["G2532"]],[7,8,["G4134"]],[8,11,["G40"]],[11,12,["G4151"]],[12,13,["G2532"]],[13,15,["G4102"]],[15,16,["G2532"]],[16,17,["G2425"]],[17,18,["G3793"]],[18,20,["G4369"]],[20,22,["G3588"]],[22,23,["G2962"]]]},{"k":27332,"v":[[0,1,["G1161"]],[1,2,["G1831"]],[2,3,["G921"]],[3,4,["G1519"]],[4,5,["G5019"]],[5,8,["G327"]],[8,9,["G4569"]]]},{"k":27333,"v":[[0,1,["G2532"]],[1,5,["G2147"]],[5,6,["G846"]],[6,8,["G71"]],[8,9,["G846"]],[9,10,["G1519"]],[10,11,["G490"]],[11,12,["G1161"]],[12,16,["G1096"]],[16,19,["G3650"]],[19,20,["G1763"]],[20,21,["G846"]],[21,23,["G4863"]],[23,24,["G1722"]],[24,25,["G3588"]],[25,26,["G1577"]],[26,27,["G2532"]],[27,28,["G1321"]],[28,29,["G2425"]],[29,30,["G3793"]],[30,31,["G5037"]],[31,32,["G3588"]],[32,33,["G3101"]],[33,35,["G5537"]],[35,36,["G5546"]],[36,37,["G4412"]],[37,38,["G1722"]],[38,39,["G490"]]]},{"k":27334,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,3,["G5025"]],[3,4,["G2250"]],[4,5,["G2718"]],[5,6,["G4396"]],[6,7,["G575"]],[7,8,["G2414"]],[8,9,["G1519"]],[9,10,["G490"]]]},{"k":27335,"v":[[0,1,["G1161"]],[1,4,["G450"]],[4,5,["G1520"]],[5,6,["G1537"]],[6,7,["G846"]],[7,8,["G3686"]],[8,9,["G13"]],[9,11,["G4591"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G4151"]],[14,17,["G3195"]],[17,18,["G1510"]],[18,19,["G3173"]],[19,20,["G3042"]],[20,21,["G1909"]],[21,22,["G3650"]],[22,23,["G3588"]],[23,24,["G3625"]],[24,25,["G3748","(G2532)"]],[25,28,["G1096"]],[28,32,["G1909"]],[32,33,["G2804"]],[33,34,["G2541"]]]},{"k":27336,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,5,["G1538"]],[5,7,["G2531"]],[7,9,["G5100","G2141"]],[9,10,["G3724"]],[10,12,["G3992"]],[12,13,["G1519","G1248"]],[13,15,["G3588"]],[15,16,["G80"]],[16,18,["G2730"]],[18,19,["G1722"]],[19,20,["G2449"]]]},{"k":27337,"v":[[0,1,["G3739"]],[1,2,["G2532"]],[2,4,["G4160"]],[4,6,["G649"]],[6,8,["G4314"]],[8,9,["G3588"]],[9,10,["G4245"]],[10,11,["G1223"]],[11,13,["G5495"]],[13,15,["G921"]],[15,16,["G2532"]],[16,17,["G4569"]]]},{"k":27338,"v":[[0,1,["G1161"]],[1,2,["G2596"]],[2,3,["G1565"]],[3,4,["G2540"]],[4,5,["G2264"]],[5,6,["G3588"]],[6,7,["G935"]],[7,9,["G1911"]],[9,11,["G5495"]],[11,13,["G2559"]],[13,14,["G5100"]],[14,15,["G575"]],[15,16,["G3588"]],[16,17,["G1577"]]]},{"k":27339,"v":[[0,1,["G1161"]],[1,3,["G337"]],[3,4,["G2385"]],[4,5,["G3588"]],[5,6,["G80"]],[6,8,["G2491"]],[8,11,["G3162"]]]},{"k":27340,"v":[[0,1,["G2532"]],[1,4,["G1492"]],[4,5,["(G3754)"]],[5,6,["G2076","G701"]],[6,7,["G3588"]],[7,8,["G2453"]],[8,11,["G4369"]],[11,13,["G4815"]],[13,14,["G4074"]],[14,15,["G2532"]],[15,16,["G1161"]],[16,17,["G2258"]],[17,19,["G2250"]],[19,22,["G106"]]]},{"k":27341,"v":[[0,1,["G2532"]],[1,3,["(G3739)"]],[3,5,["G4084"]],[5,8,["G5087"]],[8,10,["G1519"]],[10,11,["G5438"]],[11,13,["G3860"]],[13,16,["G5064"]],[16,17,["G5069"]],[17,19,["G4757"]],[19,21,["G5442"]],[21,22,["G846"]],[22,23,["G1014"]],[23,24,["G3326"]],[24,25,["G3957"]],[25,29,["G321","G846"]],[29,31,["G3588"]],[31,32,["G2992"]]]},{"k":27342,"v":[[0,1,["G4074"]],[1,2,["G3767"]],[2,3,["(G3303)"]],[3,4,["G5083"]],[4,5,["G1722"]],[5,6,["G5438"]],[6,7,["G1161"]],[7,8,["G4335"]],[8,9,["G2258"]],[9,10,["G1096"]],[10,12,["G1618"]],[12,13,["G5259"]],[13,14,["G3588"]],[14,15,["G1577"]],[15,16,["G4314"]],[16,17,["G2316"]],[17,18,["G5228"]],[18,19,["G846"]]]},{"k":27343,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,3,["G2264"]],[3,4,["G3195"]],[4,8,["G4254","G846"]],[8,9,["G3588"]],[9,10,["G1565"]],[10,11,["G3571"]],[11,12,["G4074"]],[12,13,["G2258"]],[13,14,["G2837"]],[14,15,["G3342"]],[15,16,["G1417"]],[16,17,["G4757"]],[17,18,["G1210"]],[18,20,["G1417"]],[20,21,["G254"]],[21,22,["G5037"]],[22,24,["G5441"]],[24,25,["G4253"]],[25,26,["G3588"]],[26,27,["G2374"]],[27,28,["G5083"]],[28,29,["G3588"]],[29,30,["G5438"]]]},{"k":27344,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G32"]],[4,7,["G2962"]],[7,9,["G2186"]],[9,11,["G2532"]],[11,13,["G5457"]],[13,14,["G2989"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G3612"]],[17,18,["G1161"]],[18,20,["G3960"]],[20,21,["G4074"]],[21,23,["G3588"]],[23,24,["G4125"]],[24,28,["G1453","G846"]],[28,29,["G3004"]],[29,31,["G450"]],[31,32,["G1722","G5034"]],[32,33,["G2532"]],[33,34,["G846"]],[34,35,["G254"]],[35,37,["G1601"]],[37,38,["G1537"]],[38,40,["G5495"]]]},{"k":27345,"v":[[0,1,["G5037"]],[1,2,["G3588"]],[2,3,["G32"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G846"]],[6,8,["G4024"]],[8,9,["G2532"]],[9,10,["G5265"]],[10,12,["G4675"]],[12,13,["G4547"]],[13,14,["G1161"]],[14,15,["G3779"]],[15,17,["G4160"]],[17,18,["G2532"]],[18,20,["G3004"]],[20,22,["G846"]],[22,26,["G4016","G4675","G2440"]],[26,28,["G2532"]],[28,29,["G190"]],[29,30,["G3427"]]]},{"k":27346,"v":[[0,1,["G2532"]],[1,4,["G1831"]],[4,6,["G190"]],[6,7,["G846"]],[7,8,["G2532"]],[8,9,["G1492"]],[9,10,["G3756"]],[10,11,["G3754"]],[11,13,["G2076"]],[13,14,["G227"]],[14,17,["G1096"]],[17,18,["G1223"]],[18,19,["G3588"]],[19,20,["G32"]],[20,21,["G1161"]],[21,22,["G1380"]],[22,24,["G991"]],[24,26,["G3705"]]]},{"k":27347,"v":[[0,1,["G1161"]],[1,4,["G1330"]],[4,6,["G4413"]],[6,7,["G2532"]],[7,9,["G1208"]],[9,10,["G5438"]],[10,12,["G2064"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G4603"]],[15,16,["G4439"]],[16,18,["G5342"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G4172"]],[21,22,["G3748"]],[22,23,["G455"]],[23,25,["G846"]],[25,29,["G844"]],[29,30,["G2532"]],[30,33,["G1831"]],[33,36,["G4281"]],[36,38,["G3391"]],[38,39,["G4505"]],[39,40,["G2532"]],[40,41,["G2112"]],[41,42,["G3588"]],[42,43,["G32"]],[43,44,["G868"]],[44,45,["G575"]],[45,46,["G846"]]]},{"k":27348,"v":[[0,1,["G2532"]],[1,3,["G4074"]],[3,5,["G1096"]],[5,6,["G1722"]],[6,7,["G1438"]],[7,9,["G2036"]],[9,10,["G3568"]],[10,12,["G1492"]],[12,15,["G230"]],[15,16,["G3754"]],[16,18,["G2962"]],[18,20,["G1821"]],[20,21,["G848"]],[21,22,["G32"]],[22,23,["G2532"]],[23,25,["G1807"]],[25,26,["G3165"]],[26,28,["G1537"]],[28,30,["G5495"]],[30,32,["G2264"]],[32,33,["G2532"]],[33,35,["G3956"]],[35,36,["G3588"]],[36,37,["G4329"]],[37,39,["G3588"]],[39,40,["G2992"]],[40,42,["G3588"]],[42,43,["G2453"]]]},{"k":27349,"v":[[0,1,["G5037"]],[1,5,["G4894"]],[5,9,["G2064"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G3614"]],[12,14,["G3137"]],[14,15,["G3588"]],[15,16,["G3384"]],[16,18,["G2491"]],[18,20,["G1941"]],[20,22,["G3138"]],[22,23,["G3757"]],[23,24,["G2425"]],[24,25,["G2258"]],[25,27,["G4867","(G2532)"]],[27,28,["G4336"]]]},{"k":27350,"v":[[0,1,["G1161"]],[1,3,["G4074"]],[3,4,["G2925"]],[4,6,["G3588"]],[6,7,["G2374"]],[7,9,["G3588"]],[9,10,["G4440"]],[10,12,["G3814"]],[12,13,["G4334"]],[13,15,["G5219"]],[15,16,["G3686"]],[16,17,["G4498"]]]},{"k":27351,"v":[[0,1,["G2532"]],[1,4,["G1921"]],[4,5,["G4074"]],[5,6,["G5456"]],[6,8,["G455"]],[8,9,["G3756"]],[9,10,["G3588"]],[10,11,["G4440"]],[11,12,["G575"]],[12,13,["G5479"]],[13,14,["G1161"]],[14,16,["G1532"]],[16,18,["G518"]],[18,20,["G4074"]],[20,21,["G2476"]],[21,22,["G4253"]],[22,23,["G3588"]],[23,24,["G4440"]]]},{"k":27352,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,8,["G3105"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,12,["G1340"]],[12,15,["G2192"]],[15,17,["G3779"]],[17,18,["G1161"]],[18,19,["G3004"]],[19,20,["G3588"]],[20,22,["G2076"]],[22,23,["G846"]],[23,24,["G32"]]]},{"k":27353,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G1961"]],[3,4,["G2925"]],[4,5,["G1161"]],[5,9,["G455"]],[9,13,["G1492"]],[13,14,["G846"]],[14,16,["(G2532)"]],[16,17,["G1839"]]]},{"k":27354,"v":[[0,1,["G1161"]],[1,3,["G2678"]],[3,5,["G846"]],[5,7,["G3588"]],[7,8,["G5495"]],[8,12,["G4601"]],[12,13,["G1334"]],[13,15,["G846"]],[15,16,["G4459"]],[16,17,["G3588"]],[17,18,["G2962"]],[18,20,["G1806"]],[20,21,["G846"]],[21,23,["G1537"]],[23,24,["G3588"]],[24,25,["G5438"]],[25,26,["G1161"]],[26,28,["G2036"]],[28,30,["G518"]],[30,32,["G5023"]],[32,34,["G2385"]],[34,35,["G2532"]],[35,37,["G3588"]],[37,38,["G80"]],[38,39,["G2532"]],[39,41,["G1831"]],[41,43,["G4198"]],[43,44,["G1519"]],[44,45,["G2087"]],[45,46,["G5117"]]]},{"k":27355,"v":[[0,1,["G1161"]],[1,6,["G1096"]],[6,7,["G2250"]],[7,9,["G2258"]],[9,10,["G3756"]],[10,11,["G3641"]],[11,12,["G5017"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G4757"]],[15,16,["G5101"]],[16,17,["(G686)"]],[17,18,["G1096"]],[18,20,["G4074"]]]},{"k":27356,"v":[[0,1,["G1161"]],[1,3,["G2264"]],[3,6,["G1934"]],[6,7,["G846"]],[7,8,["G2532"]],[8,9,["G2147"]],[9,11,["G3361"]],[11,13,["G350"]],[13,14,["G3588"]],[14,15,["G5441"]],[15,17,["G2753"]],[17,24,["G520"]],[24,25,["G2532"]],[25,28,["G2718"]],[28,29,["G575"]],[29,30,["G2449"]],[30,31,["G1519"]],[31,32,["G2542"]],[32,35,["G1304"]]]},{"k":27357,"v":[[0,1,["G1161"]],[1,2,["G2264"]],[2,3,["G2258"]],[3,5,["G2371"]],[5,9,["G5183"]],[9,10,["G2532"]],[10,11,["G4606"]],[11,12,["G1161"]],[12,14,["G3918"]],[14,17,["G3661"]],[17,18,["G4314"]],[18,19,["G846"]],[19,20,["G2532"]],[20,28,["G3982","G986","G3588","G935","G1909","G2846"]],[28,29,["G154"]],[29,30,["G1515"]],[30,32,["G846"]],[32,33,["G5561"]],[33,35,["G5142"]],[35,36,["G575"]],[36,37,["G3588"]],[37,38,["G937"]],[38,39,[]]]},{"k":27358,"v":[[0,1,["G1161"]],[1,4,["G5002"]],[4,5,["G2250"]],[5,6,["G2264"]],[6,7,["G1746"]],[7,9,["G937"]],[9,10,["G2066","(G2532)"]],[10,11,["G2523"]],[11,12,["G1909"]],[12,14,["G968"]],[14,18,["G1215"]],[18,19,["G4314"]],[19,20,["G846"]]]},{"k":27359,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1218"]],[3,6,["G2019"]],[6,11,["G5456"]],[11,14,["G2316"]],[14,15,["G2532"]],[15,16,["G3756"]],[16,19,["G444"]]]},{"k":27360,"v":[[0,1,["G1161"]],[1,2,["G3916"]],[2,4,["G32"]],[4,7,["G2962"]],[7,8,["G3960"]],[8,9,["G846"]],[9,10,["G473","G3739"]],[10,12,["G1325"]],[12,13,["G3756"]],[13,14,["G2316"]],[14,15,["G3588"]],[15,16,["G1391"]],[16,17,["G2532"]],[17,19,["G1096"]],[19,22,["G4662"]],[22,27,["G1634"]]]},{"k":27361,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,5,["G2316"]],[5,6,["G837"]],[6,7,["G2532"]],[7,8,["G4129"]]]},{"k":27362,"v":[[0,1,["G1161"]],[1,2,["G921"]],[2,3,["G2532"]],[3,4,["G4569"]],[4,5,["G5290"]],[5,6,["G1537"]],[6,7,["G2419"]],[7,11,["G4137"]],[11,13,["G1248"]],[13,14,["G2532"]],[14,16,["G4838"]],[16,18,["G2491"]],[18,21,["G1941"]],[21,22,["G3138"]]]},{"k":27363,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G2596"]],[4,5,["G3588"]],[5,6,["G1577"]],[6,8,["G5607"]],[8,9,["G1722"]],[9,10,["G490"]],[10,11,["G5100"]],[11,12,["G4396"]],[12,13,["G2532"]],[13,14,["G1320"]],[14,15,["(G5037","G3739)"]],[15,16,["G921"]],[16,17,["G2532"]],[17,18,["G4826"]],[18,21,["G2564"]],[21,22,["G3526"]],[22,23,["G2532"]],[23,24,["G3066"]],[24,26,["G2956"]],[26,27,["G5037"]],[27,28,["G3127"]],[28,34,["G4939"]],[34,35,["G2264"]],[35,36,["G3588"]],[36,37,["G5076"]],[37,38,["G2532"]],[38,39,["G4569"]]]},{"k":27364,"v":[[0,1,["(G1161)"]],[1,2,["G846"]],[2,3,["G3008"]],[3,5,["G3588"]],[5,6,["G2962"]],[6,7,["G2532"]],[7,8,["G3522"]],[8,9,["G3588"]],[9,10,["G40"]],[10,11,["G4151"]],[11,12,["G2036"]],[12,13,["G873","(G1211)"]],[13,14,["G3427","(G5037)"]],[14,15,["G921"]],[15,16,["G2532"]],[16,17,["G4569"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G2041"]],[20,21,["G3739"]],[21,24,["G4341"]],[24,25,["G846"]]]},{"k":27365,"v":[[0,2,["G5119"]],[2,5,["G3522"]],[5,6,["G2532"]],[6,7,["G4336"]],[7,8,["G2532"]],[8,9,["G2007"]],[9,11,["G5495"]],[11,13,["G846"]],[13,17,["G630"]]]},{"k":27366,"v":[[0,1,["G3767"]],[1,2,["G3778"]],[2,3,["(G3303)"]],[3,5,["G1599"]],[5,6,["G5259"]],[6,7,["G3588"]],[7,8,["G40"]],[8,9,["G4151"]],[9,10,["G2718"]],[10,11,["G1519"]],[11,12,["G4581"]],[12,13,["G5037"]],[13,15,["G1564"]],[15,17,["G636"]],[17,18,["G1519"]],[18,19,["G2954"]]]},{"k":27367,"v":[[0,1,["G2532"]],[1,4,["G1096"]],[4,5,["G1722"]],[5,6,["G4529"]],[6,8,["G2605"]],[8,9,["G3588"]],[9,10,["G3056"]],[10,12,["G2316"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G4864"]],[15,17,["G3588"]],[17,18,["G2453"]],[18,19,["G1161"]],[19,21,["G2192"]],[21,22,["G2532"]],[22,23,["G2491"]],[23,26,["G5257"]]]},{"k":27368,"v":[[0,1,["G1161"]],[1,6,["G1330"]],[6,7,["G3588"]],[7,8,["G3520"]],[8,9,["G891"]],[9,10,["G3974"]],[10,12,["G2147"]],[12,14,["G5100"]],[14,15,["G3097"]],[15,18,["G5578"]],[18,20,["G2453"]],[20,21,["G3739"]],[21,22,["G3686"]],[22,24,["G919"]]]},{"k":27369,"v":[[0,1,["G3739"]],[1,2,["G2258"]],[2,3,["G4862"]],[3,4,["G3588"]],[4,8,["G446"]],[8,9,["G4588"]],[9,10,["G3972"]],[10,12,["G4908"]],[12,13,["G435"]],[13,14,["G3778"]],[14,16,["G4341"]],[16,17,["G921"]],[17,18,["G2532"]],[18,19,["G4569"]],[19,21,["G1934"]],[21,23,["G191"]],[23,24,["G3588"]],[24,25,["G3056"]],[25,27,["G2316"]]]},{"k":27370,"v":[[0,1,["G1161"]],[1,2,["G1681"]],[2,3,["G3588"]],[3,4,["G3097"]],[4,5,["G1063"]],[5,6,["G3779"]],[6,11,["G3177","G846","G3686"]],[11,12,["G436"]],[12,13,["G846"]],[13,14,["G2212"]],[14,17,["G1294"]],[17,18,["G3588"]],[18,19,["G446"]],[19,20,["G575"]],[20,21,["G3588"]],[21,22,["G4102"]]]},{"k":27371,"v":[[0,1,["G1161"]],[1,2,["G4569"]],[2,3,["G3588"]],[3,4,["G2532"]],[4,7,["G3972"]],[7,8,["G4130"]],[8,11,["G40"]],[11,12,["G4151","(G2532)"]],[12,15,["G816"]],[15,16,["G1519"]],[16,17,["G846"]]]},{"k":27372,"v":[[0,2,["G2036"]],[2,3,["G5599"]],[3,4,["G4134"]],[4,6,["G3956"]],[6,7,["G1388"]],[7,8,["G2532"]],[8,9,["G3956"]],[9,10,["G4468"]],[10,12,["G5207"]],[12,15,["G1228"]],[15,17,["G2190"]],[17,19,["G3956"]],[19,20,["G1343"]],[20,23,["G3756"]],[23,24,["G3973"]],[24,26,["G1294"]],[26,27,["G3588"]],[27,28,["G2117"]],[28,29,["G3598"]],[29,32,["G2962"]]]},{"k":27373,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,3,["G2400"]],[3,5,["G5495"]],[5,7,["G3588"]],[7,8,["G2962"]],[8,10,["G1909"]],[10,11,["G4571"]],[11,12,["G2532"]],[12,15,["G2071"]],[15,16,["G5185"]],[16,17,["G3361"]],[17,18,["G991"]],[18,19,["G3588"]],[19,20,["G2246"]],[20,21,["G891"]],[21,23,["G2540"]],[23,24,["G1161"]],[24,25,["G3916"]],[25,27,["G1968"]],[27,28,["G1909"]],[28,29,["G846"]],[29,31,["G887"]],[31,32,["G2532"]],[32,34,["G4655"]],[34,35,["G2532"]],[35,38,["G4013"]],[38,39,["G2212"]],[39,46,["G5497"]]]},{"k":27374,"v":[[0,1,["G5119"]],[1,2,["G3588"]],[2,3,["G446"]],[3,6,["G1492"]],[6,9,["G1096"]],[9,10,["G4100"]],[10,12,["G1605"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G1322"]],[15,17,["G3588"]],[17,18,["G2962"]]]},{"k":27375,"v":[[0,1,["G1161"]],[1,3,["G3972"]],[3,6,["G4012"]],[6,7,["G321"]],[7,8,["G575"]],[8,9,["G3974"]],[9,11,["G2064"]],[11,12,["G1519"]],[12,13,["G4011"]],[13,15,["G3828"]],[15,16,["G1161"]],[16,17,["G2491"]],[17,18,["G672"]],[18,19,["G575"]],[19,20,["G846"]],[20,21,["G5290"]],[21,22,["G1519"]],[22,23,["G2414"]]]},{"k":27376,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G1330"]],[4,5,["G575"]],[5,6,["G4011"]],[6,8,["G3854"]],[8,9,["G1519"]],[9,10,["G490"]],[10,12,["G4099"]],[12,13,["G2532"]],[13,14,["G1525"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G4864"]],[17,19,["G3588"]],[19,20,["G4521"]],[20,21,["G2250"]],[21,24,["G2523"]]]},{"k":27377,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,3,["G3588"]],[3,4,["G320"]],[4,6,["G3588"]],[6,7,["G3551"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G4396"]],[10,11,["G3588"]],[11,15,["G752"]],[15,16,["G649"]],[16,17,["G4314"]],[17,18,["G846"]],[18,19,["G3004"]],[19,21,["G435"]],[21,23,["G80"]],[23,24,["G1487"]],[24,26,["G2076","G1722","G5213"]],[26,28,["G3056"]],[28,30,["G3874"]],[30,31,["G4314"]],[31,32,["G3588"]],[32,33,["G2992"]],[33,35,["G3004"]]]},{"k":27378,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,4,["G450"]],[4,5,["G2532"]],[5,6,["G2678"]],[6,9,["G5495"]],[9,10,["G2036"]],[10,11,["G435"]],[11,13,["G2475"]],[13,14,["G2532"]],[14,17,["G5399"]],[17,18,["G2316"]],[18,20,["G191"]]]},{"k":27379,"v":[[0,1,["G3588"]],[1,2,["G2316"]],[2,4,["G5127"]],[4,5,["G2992"]],[5,7,["G2474"]],[7,8,["G1586"]],[8,9,["G2257"]],[9,10,["G3962"]],[10,11,["G2532"]],[11,12,["G5312"]],[12,13,["G3588"]],[13,14,["G2992"]],[14,15,["G1722"]],[15,19,["G3940"]],[19,20,["G1722"]],[20,22,["G1093"]],[22,24,["G125"]],[24,25,["G2532"]],[25,26,["G3326"]],[26,28,["G5308"]],[28,29,["G1023"]],[29,30,["G1806"]],[30,32,["G846"]],[32,34,["G1537"]],[34,35,["G846"]]]},{"k":27380,"v":[[0,1,["G2532"]],[1,2,["G5613"]],[2,4,["G5550"]],[4,7,["G5063"]],[7,11,["G5159","G846"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G2048"]]]},{"k":27381,"v":[[0,1,["G2532"]],[1,5,["G2507"]],[5,6,["G2033"]],[6,7,["G1484"]],[7,8,["G1722"]],[8,10,["G1093"]],[10,12,["G5477"]],[12,20,["G2624","G846","G1093","G846"]]]},{"k":27382,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,3,["G5023"]],[3,5,["G1325"]],[5,8,["G2923"]],[8,12,["G5613"]],[12,14,["G5071"]],[14,15,["G2532"]],[15,16,["G4004"]],[16,17,["G2094"]],[17,18,["G2193"]],[18,19,["G4545"]],[19,20,["G3588"]],[20,21,["G4396"]]]},{"k":27383,"v":[[0,2,["G2547"]],[2,4,["G154"]],[4,6,["G935"]],[6,7,["G2532"]],[7,8,["G2316"]],[8,9,["G1325"]],[9,11,["G846"]],[11,12,["G4549"]],[12,14,["G5207"]],[14,16,["G2797"]],[16,18,["G435"]],[18,19,["G1537"]],[19,21,["G5443"]],[21,23,["G958"]],[23,28,["G5062"]],[28,29,["G2094"]]]},{"k":27384,"v":[[0,1,["G2532"]],[1,5,["G3179"]],[5,6,["G846"]],[6,9,["G1453"]],[9,11,["G846"]],[11,12,["G1138"]],[12,16,["G1519","G935"]],[16,18,["G3739"]],[18,19,["G2532"]],[19,22,["G3140"]],[22,24,["G2036"]],[24,27,["G2147"]],[27,28,["G1138"]],[28,29,["G3588"]],[29,32,["G2421"]],[32,34,["G435"]],[34,35,["G2596"]],[35,37,["G3450"]],[37,38,["G2588"]],[38,39,["G3739"]],[39,41,["G4160"]],[41,42,["G3956"]],[42,43,["G3450"]],[43,44,["G2307"]]]},{"k":27385,"v":[[0,1,["G575"]],[1,3,["G5127"]],[3,4,["G4690"]],[4,6,["G2316"]],[6,7,["G2596"]],[7,10,["G1860"]],[10,11,["G1453"]],[11,13,["G2474"]],[13,15,["G4990"]],[15,16,["G2424"]]]},{"k":27386,"v":[[0,2,["G2491"]],[2,5,["G4296"]],[5,6,["G4253"]],[6,7,["G846"]],[7,8,["G1529","G4383"]],[8,10,["G908"]],[10,12,["G3341"]],[12,14,["G3956"]],[14,15,["G3588"]],[15,16,["G2992"]],[16,18,["G2474"]]]},{"k":27387,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G2491"]],[3,4,["G4137"]],[4,6,["G1408"]],[6,8,["G3004"]],[8,9,["G5101"]],[9,10,["G5282"]],[10,13,["G3165"]],[13,14,["G1511"]],[14,15,["G1473"]],[15,16,["G1510"]],[16,17,["G3756"]],[17,19,["G235"]],[19,20,["G2400"]],[20,22,["G2064"]],[22,24,["G3326"]],[24,25,["G1691"]],[25,26,["G3739"]],[26,27,["G5266"]],[27,30,["G4228"]],[30,32,["G1510"]],[32,33,["G3756"]],[33,34,["G514"]],[34,36,["G3089"]]]},{"k":27388,"v":[[0,1,["G435"]],[1,3,["G80"]],[3,4,["G5207"]],[4,7,["G1085"]],[7,9,["G11"]],[9,10,["G2532"]],[10,12,["G1722"]],[12,13,["G5213"]],[13,14,["G5399"]],[14,15,["G2316"]],[15,17,["G5213"]],[17,19,["G3588"]],[19,20,["G3056"]],[20,22,["G5026"]],[22,23,["G4991"]],[23,24,["G649"]]]},{"k":27389,"v":[[0,1,["G1063"]],[1,4,["G2730"]],[4,5,["G1722"]],[5,6,["G2419"]],[6,7,["G2532"]],[7,8,["G846"]],[8,9,["G758"]],[9,14,["G50","G5126"]],[14,15,["G2532"]],[15,17,["G3588"]],[17,18,["G5456"]],[18,20,["G3588"]],[20,21,["G4396"]],[21,24,["G314"]],[24,25,["G2596","G3956"]],[25,27,["G4521"]],[27,30,["G4137"]],[30,33,["G2919"]],[33,34,[]]]},{"k":27390,"v":[[0,1,["G2532"]],[1,4,["G2147"]],[4,5,["G3367"]],[5,6,["G156"]],[6,8,["G2288"]],[8,12,["G154"]],[12,14,["G4091"]],[14,16,["G846"]],[16,19,["G337"]]]},{"k":27391,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,5,["G5055"]],[5,6,["G537"]],[6,9,["G1125"]],[9,10,["G4012"]],[10,11,["G846"]],[11,15,["G2507"]],[15,16,["G575"]],[16,17,["G3588"]],[17,18,["G3586"]],[18,20,["G5087"]],[20,22,["G1519"]],[22,24,["G3419"]]]},{"k":27392,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,3,["G1453"]],[3,4,["G846"]],[4,5,["G1537"]],[5,7,["G3498"]]]},{"k":27393,"v":[[0,2,["G3739"]],[2,4,["G3700"]],[4,5,["G4119"]],[5,6,["G2250"]],[6,12,["G4872"]],[12,13,["G846"]],[13,14,["G575"]],[14,15,["G1056"]],[15,16,["G1519"]],[16,17,["G2419"]],[17,18,["G3748"]],[18,19,["G1526"]],[19,20,["G846"]],[20,21,["G3144"]],[21,22,["G4314"]],[22,23,["G3588"]],[23,24,["G2992"]]]},{"k":27394,"v":[[0,1,["G2532"]],[1,2,["G2249"]],[2,7,["G2097","G5209"]],[7,10,["G3588"]],[10,11,["G1860"]],[11,14,["G1096"]],[14,15,["G4314"]],[15,16,["G3588"]],[16,17,["G3962"]]]},{"k":27395,"v":[[0,0,["(G3754)"]],[0,1,["G2316"]],[1,3,["G1603"]],[3,5,["G5026"]],[5,7,["G2254"]],[7,8,["G846"]],[8,9,["G5043"]],[9,17,["G450","G2424"]],[17,18,["G5613"]],[18,21,["G2532"]],[21,22,["G1125"]],[22,23,["G1722"]],[23,24,["G3588"]],[24,25,["G1208"]],[25,26,["G5568"]],[26,27,["G4771"]],[27,28,["G1488"]],[28,29,["G3450"]],[29,30,["G5207"]],[30,32,["G4594"]],[32,34,["G1473"]],[34,35,["G1080"]],[35,36,["G4571"]]]},{"k":27396,"v":[[0,1,["G1161"]],[1,4,["G3754"]],[4,8,["G450","G846"]],[8,9,["G1537"]],[9,11,["G3498"]],[11,14,["G3371"]],[14,15,["(G3195)"]],[15,16,["G5290"]],[16,17,["G1519"]],[17,18,["G1312"]],[18,20,["G2046"]],[20,23,["G3779"]],[23,26,["G1325"]],[26,27,["G5213"]],[27,28,["G3588"]],[28,29,["G4103"]],[29,30,["G3741"]],[30,32,["G1138"]]]},{"k":27397,"v":[[0,1,["G1352"]],[1,3,["G3004"]],[3,4,["G2532"]],[4,5,["G1722"]],[5,6,["G2087"]],[6,10,["G3756"]],[10,11,["G1325"]],[11,12,["G4675"]],[12,14,["G3741"]],[14,16,["G1492"]],[16,17,["G1312"]]]},{"k":27398,"v":[[0,1,["G1063"]],[1,2,["G1138"]],[2,4,["(G3303)"]],[4,6,["G5256"]],[6,8,["G2398"]],[8,9,["G1074"]],[9,11,["G3588"]],[11,12,["G1012"]],[12,14,["G2316"]],[14,17,["G2837"]],[17,18,["G2532"]],[18,20,["G4369"]],[20,21,["G4314"]],[21,22,["G848"]],[22,23,["G3962"]],[23,24,["G2532"]],[24,25,["G1492"]],[25,26,["G1312"]]]},{"k":27399,"v":[[0,1,["G1161"]],[1,3,["G3739"]],[3,4,["G2316"]],[4,6,["G1453"]],[6,7,["G1492"]],[7,8,["G3756"]],[8,9,["G1312"]]]},{"k":27400,"v":[[0,1,["G2077"]],[1,3,["G1110"]],[3,5,["G5213"]],[5,6,["G3767"]],[6,7,["G435"]],[7,9,["G80"]],[9,10,["G3754"]],[10,11,["G1223"]],[11,13,["G5127"]],[13,15,["G2605"]],[15,17,["G5213"]],[17,19,["G859"]],[19,21,["G266"]]]},{"k":27401,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G5129"]],[3,4,["G3956"]],[4,6,["G4100"]],[6,8,["G1344"]],[8,9,["G575"]],[9,11,["G3956"]],[11,13,["G3739"]],[13,15,["G1410"]],[15,16,["G3756"]],[16,18,["G1344"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G3551"]],[21,23,["G3475"]]]},{"k":27402,"v":[[0,1,["G991"]],[1,2,["G3767"]],[2,3,["G3361"]],[3,5,["G1904"]],[5,6,["G1909"]],[6,7,["G5209"]],[7,11,["G2046"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G4396"]]]},{"k":27403,"v":[[0,1,["G1492"]],[1,3,["G2707"]],[3,4,["G2532"]],[4,5,["G2296"]],[5,6,["G2532"]],[6,7,["G853"]],[7,8,["G3754"]],[8,9,["G1473"]],[9,10,["G2038"]],[10,12,["G2041"]],[12,13,["G1722"]],[13,14,["G5216"]],[14,15,["G2250"]],[15,17,["G2041"]],[17,18,["G3739"]],[18,23,["G3364"]],[23,24,["G4100"]],[24,25,["G1437"]],[25,27,["G5100"]],[27,28,["G1555"]],[28,31,["G5213"]]]},{"k":27404,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G2453"]],[4,6,["G1826"]],[6,8,["G1537"]],[8,9,["G3588"]],[9,10,["G4864"]],[10,11,["G3588"]],[11,12,["G1484"]],[12,13,["G3870"]],[13,15,["G5023"]],[15,16,["G4487"]],[16,19,["G2980"]],[19,21,["G848"]],[21,22,["G3588"]],[22,23,["G3342"]],[23,24,["G4521"]]]},{"k":27405,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G4864"]],[4,7,["G3089"]],[7,8,["G4183"]],[8,10,["G3588"]],[10,11,["G2453"]],[11,12,["G2532"]],[12,13,["G4576"]],[13,14,["G4339"]],[14,15,["G190"]],[15,16,["G3972"]],[16,17,["G2532"]],[17,18,["G921"]],[18,19,["G3748"]],[19,21,["G4354"]],[21,22,["G846"]],[22,23,["G3982"]],[23,24,["G846"]],[24,26,["G1961"]],[26,28,["G3588"]],[28,29,["G5485"]],[29,31,["G2316"]]]},{"k":27406,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2064"]],[3,5,["G4521"]],[5,11,["G4863","G4975","G3588","G3956","G4172"]],[11,13,["G191"]],[13,14,["G3588"]],[14,15,["G3056"]],[15,17,["G2316"]]]},{"k":27407,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G2453"]],[4,5,["G1492"]],[5,6,["G3588"]],[6,7,["G3793"]],[7,10,["G4130"]],[10,12,["G2205"]],[12,13,["G2532"]],[13,15,["G483"]],[15,20,["G3004"]],[20,21,["G5259"]],[21,22,["G3972"]],[22,23,["G483"]],[23,24,["G2532"]],[24,25,["G987"]]]},{"k":27408,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,3,["G2532"]],[3,4,["G921"]],[4,6,["G3955"]],[6,8,["G2036"]],[8,10,["G2258"]],[10,11,["G316"]],[11,13,["G3588"]],[13,14,["G3056"]],[14,16,["G2316"]],[16,18,["G4412"]],[18,21,["G2980"]],[21,23,["G5213"]],[23,24,["G1161"]],[24,25,["G1894"]],[25,30,["G683","G846"]],[30,31,["G2532"]],[31,32,["G2919"]],[32,33,["G1438"]],[33,34,["G3756","G514"]],[34,36,["G166"]],[36,37,["G2222"]],[37,38,["G2400"]],[38,40,["G4762"]],[40,41,["G1519"]],[41,42,["G3588"]],[42,43,["G1484"]]]},{"k":27409,"v":[[0,1,["G1063"]],[1,2,["G3779"]],[2,4,["G3588"]],[4,5,["G2962"]],[5,6,["G1781"]],[6,7,["G2254"]],[7,11,["G5087"]],[11,12,["G4571"]],[12,16,["G1519","G5457"]],[16,19,["G1484"]],[19,21,["G4571"]],[21,23,["G1511"]],[23,24,["G1519"]],[24,25,["G4991"]],[25,26,["G2193"]],[26,28,["G2078"]],[28,30,["G3588"]],[30,31,["G1093"]]]},{"k":27410,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1484"]],[4,5,["G191"]],[5,9,["G5463"]],[9,10,["G2532"]],[10,11,["G1392"]],[11,12,["G3588"]],[12,13,["G3056"]],[13,15,["G3588"]],[15,16,["G2962"]],[16,17,["G2532"]],[17,20,["G3745"]],[20,21,["G2258"]],[21,22,["G5021"]],[22,23,["G1519"]],[23,24,["G166"]],[24,25,["G2222"]],[25,26,["G4100"]]]},{"k":27411,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,5,["G3588"]],[5,6,["G2962"]],[6,8,["G1308"]],[8,9,["G1223"]],[9,10,["G3650"]],[10,11,["G3588"]],[11,12,["G5561"]]]},{"k":27412,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,5,["G3951"]],[5,6,["G3588"]],[6,7,["G4576"]],[7,8,["G2532"]],[8,9,["G2158"]],[9,10,["G1135"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,14,["G4413"]],[14,16,["G3588"]],[16,17,["G4172"]],[17,18,["G2532"]],[18,19,["G1892"]],[19,20,["G1375"]],[20,21,["G1909"]],[21,22,["G3972"]],[22,23,["G2532"]],[23,24,["G921"]],[24,25,["G2532"]],[25,26,["G1544"]],[26,27,["G846"]],[27,29,["G575"]],[29,30,["G848"]],[30,31,["G3725"]]]},{"k":27413,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G1621"]],[4,5,["G3588"]],[5,6,["G2868"]],[6,8,["G848"]],[8,9,["G4228"]],[9,10,["G1909"]],[10,11,["G846"]],[11,13,["G2064"]],[13,14,["G1519"]],[14,15,["G2430"]]]},{"k":27414,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,5,["G4137"]],[5,7,["G5479"]],[7,8,["G2532"]],[8,11,["G40"]],[11,12,["G4151"]]]},{"k":27415,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,6,["G1722"]],[6,7,["G2430"]],[7,9,["G846"]],[9,10,["G1525"]],[10,12,["G2596","G846"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G4864"]],[15,17,["G3588"]],[17,18,["G2453"]],[18,19,["G2532"]],[19,20,["G3779"]],[20,21,["G2980"]],[21,22,["G5620"]],[22,24,["G4183"]],[24,25,["G4128"]],[25,26,["G5037"]],[26,29,["G2453"]],[29,30,["G2532"]],[30,34,["G1672"]],[34,35,["G4100"]]]},{"k":27416,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G544"]],[3,4,["G2453"]],[4,6,["G1892"]],[6,7,["G3588"]],[7,8,["G1484"]],[8,9,["G2532"]],[9,14,["G2559","G5590"]],[14,15,["G2596"]],[15,16,["G3588"]],[16,17,["G80"]]]},{"k":27417,"v":[[0,1,["G2425"]],[1,2,["G5550","(G3303)"]],[2,3,["G3767"]],[3,4,["G1304"]],[4,7,["G3955"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,10,["G2962"]],[10,11,["G3588"]],[11,13,["G3140"]],[13,15,["G3588"]],[15,16,["G3056"]],[16,18,["G848"]],[18,19,["G5485"]],[19,20,["G2532"]],[20,21,["G1325"]],[21,22,["G4592"]],[22,23,["G2532"]],[23,24,["G5059"]],[24,27,["G1096"]],[27,28,["G1223"]],[28,29,["G846"]],[29,30,["G5495"]]]},{"k":27418,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4128"]],[3,5,["G3588"]],[5,6,["G4172"]],[6,8,["G4977"]],[8,9,["G2532"]],[9,10,["G3588","G3303"]],[10,11,["G2258"]],[11,12,["G4862"]],[12,13,["G3588"]],[13,14,["G2453"]],[14,15,["G1161"]],[15,16,["G3588"]],[16,17,["G4862"]],[17,18,["G3588"]],[18,19,["G652"]]]},{"k":27419,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,4,["G1096"]],[4,6,["G3730"]],[6,8,["G5037"]],[8,10,["G3588"]],[10,11,["G1484"]],[11,12,["G2532"]],[12,16,["G2453"]],[16,17,["G4862"]],[17,18,["G846"]],[18,19,["G758"]],[19,23,["G5195"]],[23,24,["G2532"]],[24,26,["G3036"]],[26,27,["G846"]]]},{"k":27420,"v":[[0,4,["G4894"]],[4,7,["G2703"]],[7,8,["G1519"]],[8,9,["G3082"]],[9,10,["G2532"]],[10,11,["G1191"]],[11,12,["G4172"]],[12,14,["G3071"]],[14,15,["G2532"]],[15,17,["G3588"]],[17,22,["G4066"]]]},{"k":27421,"v":[[0,2,["G2546"]],[2,6,["G2258","G2097"]]]},{"k":27422,"v":[[0,1,["G2532"]],[1,3,["G2521"]],[3,5,["G5100"]],[5,6,["G435"]],[6,7,["G1722"]],[7,8,["G3082"]],[8,9,["G102"]],[9,12,["G4228"]],[12,13,["G5225"]],[13,15,["G5560"]],[15,16,["G1537"]],[16,17,["G848"]],[17,18,["G3384"]],[18,19,["G2836"]],[19,20,["G3739"]],[20,21,["G3763"]],[21,23,["G4043"]]]},{"k":27423,"v":[[0,2,["G3778"]],[2,3,["G191"]],[3,4,["G3972"]],[4,5,["G2980"]],[5,6,["G3739"]],[6,8,["G816"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G1492"]],[11,12,["G3754"]],[12,14,["G2192"]],[14,15,["G4102"]],[15,18,["G4982"]]]},{"k":27424,"v":[[0,1,["G2036"]],[1,4,["G3173"]],[4,5,["G5456"]],[5,6,["G450"]],[6,7,["G3717"]],[7,8,["G1909"]],[8,9,["G4675"]],[9,10,["G4228"]],[10,13,["G242"]],[13,14,["G2532"]],[14,15,["G4043"]]]},{"k":27425,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G3793"]],[4,5,["G1492"]],[5,6,["G3739"]],[6,7,["G3972"]],[7,9,["G4160"]],[9,12,["G1869"]],[12,13,["G848"]],[13,14,["G5456"]],[14,15,["G3004"]],[15,20,["G3072"]],[20,21,["G3588"]],[21,22,["G2316"]],[22,25,["G2597"]],[25,26,["G4314"]],[26,27,["G2248"]],[27,30,["G3666"]],[30,32,["G444"]]]},{"k":27426,"v":[[0,1,["G5037"]],[1,3,["G2564"]],[3,4,["G921","(G3303)"]],[4,5,["G2203"]],[5,6,["G1161"]],[6,7,["G3972"]],[7,8,["G2060"]],[8,9,["G1894"]],[9,10,["G846"]],[10,11,["G2258"]],[11,12,["G3588"]],[12,14,["G2233","G3056"]]]},{"k":27427,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2409"]],[3,5,["G2203"]],[5,7,["G5607"]],[7,8,["G4253"]],[8,9,["G846"]],[9,10,["G4172"]],[10,11,["G5342"]],[11,12,["G5022"]],[12,13,["G2532"]],[13,14,["G4725"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,17,["G4440"]],[17,19,["G2309"]],[19,22,["G2380"]],[22,23,["G4862"]],[23,24,["G3588"]],[24,25,["G3793"]]]},{"k":27428,"v":[[0,2,["G1161"]],[2,3,["G3588"]],[3,4,["G652"]],[4,5,["G921"]],[5,6,["G2532"]],[6,7,["G3972"]],[7,8,["G191"]],[8,11,["G1284"]],[11,12,["G848"]],[12,13,["G2440"]],[13,16,["G1530"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,19,["G3793"]],[19,21,["G2896"]]]},{"k":27429,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,3,["G435"]],[3,4,["G5101"]],[4,5,["G4160"]],[5,8,["G5023"]],[8,9,["G2249"]],[9,10,["G2532"]],[10,11,["G2070"]],[11,12,["G444"]],[12,15,["G3663"]],[15,17,["G5213"]],[17,19,["G2097"]],[19,21,["G5209"]],[21,25,["G1994"]],[25,26,["G575"]],[26,27,["G5130"]],[27,28,["G3152"]],[28,29,["G1909"]],[29,30,["G3588"]],[30,31,["G2198"]],[31,32,["G2316"]],[32,33,["G3739"]],[33,34,["G4160"]],[34,35,["G3772"]],[35,36,["G2532"]],[36,37,["G1093"]],[37,38,["G2532"]],[38,39,["G3588"]],[39,40,["G2281"]],[40,41,["G2532"]],[41,43,["G3956"]],[43,44,["G3588"]],[44,46,["G1722","G846"]]]},{"k":27430,"v":[[0,1,["G3739"]],[1,2,["G1722"]],[2,3,["G1074"]],[3,4,["G3944"]],[4,5,["G1439"]],[5,6,["G3956"]],[6,7,["G1484"]],[7,9,["G4198"]],[9,12,["G848"]],[12,13,["G3598"]]]},{"k":27431,"v":[[0,1,["G2544"]],[1,3,["G863"]],[3,4,["G3756"]],[4,5,["G1438"]],[5,7,["G267"]],[7,12,["G15"]],[12,14,["G1325"]],[14,15,["G2254"]],[15,16,["G5205"]],[16,18,["G3771"]],[18,19,["G2532"]],[19,20,["G2593"]],[20,21,["G2540"]],[21,22,["G1705"]],[22,23,["G2257"]],[23,24,["G2588"]],[24,26,["G5160"]],[26,27,["G2532"]],[27,28,["G2167"]]]},{"k":27432,"v":[[0,1,["G2532"]],[1,3,["G5023"]],[3,4,["G3004"]],[4,5,["G3433"]],[5,6,["G2664"]],[6,8,["G3588"]],[8,9,["G3793"]],[9,13,["G3361"]],[13,15,["G2380"]],[15,17,["G846"]]]},{"k":27433,"v":[[0,1,["G1161"]],[1,4,["G1904"]],[4,6,["G2453"]],[6,7,["G575"]],[7,8,["G490"]],[8,9,["G2532"]],[9,10,["G2430"]],[10,11,["(G2532)"]],[11,12,["G3982"]],[12,13,["G3588"]],[13,14,["G3793"]],[14,15,["G2532"]],[15,17,["G3034"]],[17,18,["G3972"]],[18,19,["G4951"]],[19,21,["G1854"]],[21,23,["G3588"]],[23,24,["G4172"]],[24,25,["G3543"]],[25,26,["G846"]],[26,29,["G2348"]]]},{"k":27434,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G3101"]],[4,7,["G2944"]],[7,8,["G846"]],[8,11,["G450"]],[11,13,["G1525"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G4172"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,20,["G1887"]],[20,22,["G1831"]],[22,23,["G4862"]],[23,24,["G921"]],[24,25,["G1519"]],[25,26,["G1191"]]]},{"k":27435,"v":[[0,1,["G5037"]],[1,7,["G2097"]],[7,9,["G1565"]],[9,10,["G4172"]],[10,11,["G2532"]],[11,13,["G3100"]],[13,14,["G2425"]],[14,17,["G5290"]],[17,18,["G1519"]],[18,19,["G3082"]],[19,20,["G2532"]],[20,22,["G2430"]],[22,23,["G2532"]],[23,24,["G490"]]]},{"k":27436,"v":[[0,1,["G1991"]],[1,2,["G3588"]],[2,3,["G5590"]],[3,5,["G3588"]],[5,6,["G3101"]],[6,8,["G3870"]],[8,11,["G1696"]],[11,13,["G3588"]],[13,14,["G4102"]],[14,15,["G2532"]],[15,16,["G3754"]],[16,17,["G2248"]],[17,18,["G1163"]],[18,19,["G1223"]],[19,20,["G4183"]],[20,21,["G2347"]],[21,22,["G1525"]],[22,23,["G1519"]],[23,24,["G3588"]],[24,25,["G932"]],[25,27,["G2316"]]]},{"k":27437,"v":[[0,1,["G1161"]],[1,5,["G5500"]],[5,6,["G846"]],[6,7,["G4245"]],[7,10,["G2596","G1577"]],[10,13,["G4336"]],[13,14,["G3326"]],[14,15,["G3521"]],[15,17,["G3908"]],[17,18,["G846"]],[18,20,["G3588"]],[20,21,["G2962"]],[21,22,["G1519"]],[22,23,["G3739"]],[23,25,["G4100"]]]},{"k":27438,"v":[[0,1,["G2532"]],[1,6,["G1330"]],[6,7,["G4099"]],[7,9,["G2064"]],[9,10,["G1519"]],[10,11,["G3828"]]]},{"k":27439,"v":[[0,1,["G2532"]],[1,5,["G2980"]],[5,6,["G3588"]],[6,7,["G3056"]],[7,8,["G1722"]],[8,9,["G4011"]],[9,12,["G2597"]],[12,13,["G1519"]],[13,14,["G825"]]]},{"k":27440,"v":[[0,2,["G2547"]],[2,3,["G636"]],[3,4,["G1519"]],[4,5,["G490"]],[5,7,["G3606"]],[7,10,["G2258"]],[10,11,["G3860"]],[11,13,["G3588"]],[13,14,["G5485"]],[14,16,["G2316"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,19,["G2041"]],[19,20,["G3739"]],[20,22,["G4137"]]]},{"k":27441,"v":[[0,1,["G1161"]],[1,5,["G3854"]],[5,6,["G2532"]],[6,11,["G4863","G3588","G1577"]],[11,13,["G312"]],[13,15,["G3745"]],[15,16,["G2316"]],[16,18,["G4160"]],[18,19,["G3326"]],[19,20,["G846"]],[20,21,["G2532"]],[21,22,["G3754"]],[22,25,["G455"]],[25,27,["G2374"]],[27,29,["G4102"]],[29,31,["G3588"]],[31,32,["G1484"]]]},{"k":27442,"v":[[0,1,["G1161"]],[1,2,["G1563"]],[2,4,["G1304"]],[4,5,["G3756","G3641"]],[5,6,["G5550"]],[6,7,["G4862"]],[7,8,["G3588"]],[8,9,["G3101"]]]},{"k":27443,"v":[[0,1,["G2532"]],[1,3,["G5100"]],[3,6,["G2718"]],[6,7,["G575"]],[7,8,["G2449"]],[8,9,["G1321"]],[9,10,["G3588"]],[10,11,["G80"]],[11,14,["G3362"]],[14,17,["G4059"]],[17,19,["G3588"]],[19,20,["G1485"]],[20,22,["G3475"]],[22,24,["G1410","G3756"]],[24,26,["G4982"]]]},{"k":27444,"v":[[0,2,["G3767"]],[2,3,["G3972"]],[3,4,["G2532"]],[4,5,["G921"]],[5,6,["G1096"]],[6,7,["G3756"]],[7,8,["G3641"]],[8,9,["G4714"]],[9,10,["G2532"]],[10,11,["G4803"]],[11,12,["G4314"]],[12,13,["G846"]],[13,15,["G5021"]],[15,17,["G3972"]],[17,18,["G2532"]],[18,19,["G921"]],[19,20,["G2532"]],[20,21,["G5100"]],[21,22,["G243"]],[22,23,["G1537"]],[23,24,["G846"]],[24,27,["G305"]],[27,28,["G1519"]],[28,29,["G2419"]],[29,30,["G4314"]],[30,31,["G3588"]],[31,32,["G652"]],[32,33,["G2532"]],[33,34,["G4245"]],[34,35,["G4012"]],[35,36,["G5127"]],[36,37,["G2213"]]]},{"k":27445,"v":[[0,1,["G3767"]],[1,2,["(G3303)"]],[2,6,["G4311"]],[6,7,["G5259"]],[7,8,["G3588"]],[8,9,["G1577"]],[9,10,["G3588"]],[10,12,["G1330"]],[12,13,["G5403"]],[13,14,["G2532"]],[14,15,["G4540"]],[15,16,["G1555"]],[16,17,["G3588"]],[17,18,["G1995"]],[18,20,["G3588"]],[20,21,["G1484"]],[21,22,["G2532"]],[22,24,["G4160"]],[24,25,["G3173"]],[25,26,["G5479"]],[26,28,["G3956"]],[28,29,["G3588"]],[29,30,["G80"]]]},{"k":27446,"v":[[0,1,["G1161"]],[1,5,["G3854"]],[5,6,["G1519"]],[6,7,["G2419"]],[7,10,["G588"]],[10,11,["G5259"]],[11,12,["G3588"]],[12,13,["G1577"]],[13,14,["G2532"]],[14,16,["G3588"]],[16,17,["G652"]],[17,18,["G2532"]],[18,19,["G4245"]],[19,20,["G5037"]],[20,22,["G312"]],[22,25,["G3745"]],[25,26,["G2316"]],[26,28,["G4160"]],[28,29,["G3326"]],[29,30,["G846"]]]},{"k":27447,"v":[[0,1,["G1161"]],[1,4,["G1817"]],[4,5,["G5100"]],[5,6,["G575"]],[6,7,["G3588"]],[7,8,["G139"]],[8,10,["G3588"]],[10,11,["G5330"]],[11,13,["G4100"]],[13,14,["G3004"]],[14,15,["G3754"]],[15,18,["G1163"]],[18,20,["G4059"]],[20,21,["G846"]],[21,22,["G5037"]],[22,24,["G3853"]],[24,27,["G5083"]],[27,28,["G3588"]],[28,29,["G3551"]],[29,31,["G3475"]]]},{"k":27448,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G652"]],[3,4,["G2532"]],[4,5,["G4245"]],[5,7,["G4863"]],[7,10,["G1492"]],[10,11,["G4012"]],[11,12,["G5127"]],[12,13,["G3056"]]]},{"k":27449,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,6,["G4183"]],[6,7,["G4803"]],[7,8,["G4074"]],[8,10,["G450"]],[10,12,["G2036"]],[12,13,["G4314"]],[13,14,["G846"]],[14,15,["G435"]],[15,17,["G80"]],[17,18,["G5210"]],[18,19,["G1987"]],[19,21,["G3754"]],[21,25,["G575","G744","G2250"]],[25,26,["G2316"]],[26,28,["G1586"]],[28,29,["G1722"]],[29,30,["G2254"]],[30,32,["G3588"]],[32,33,["G1484"]],[33,34,["G1223"]],[34,35,["G3450"]],[35,36,["G4750"]],[36,38,["G191"]],[38,39,["G3588"]],[39,40,["G3056"]],[40,42,["G3588"]],[42,43,["G2098"]],[43,44,["G2532"]],[44,45,["G4100"]]]},{"k":27450,"v":[[0,1,["G2532"]],[1,2,["G2316"]],[2,6,["G2589"]],[6,9,["G3140","G846"]],[9,10,["G1325"]],[10,11,["G846"]],[11,12,["G3588"]],[12,13,["G40"]],[13,14,["G4151"]],[14,16,["G2531"]],[16,20,["G2254"]]]},{"k":27451,"v":[[0,1,["G2532"]],[1,4,["G1252","G3762"]],[4,5,["G3342","(G5037)"]],[5,6,["G2257"]],[6,7,["G2532"]],[7,8,["G846"]],[8,9,["G2511"]],[9,10,["G846"]],[10,11,["G2588"]],[11,13,["G4102"]]]},{"k":27452,"v":[[0,1,["G3568"]],[1,2,["G3767"]],[2,3,["G5101"]],[3,4,["G3985"]],[4,6,["G2316"]],[6,8,["G2007"]],[8,10,["G2218"]],[10,11,["G1909"]],[11,12,["G3588"]],[12,13,["G5137"]],[13,15,["G3588"]],[15,16,["G3101"]],[16,17,["G3739"]],[17,18,["G3777"]],[18,19,["G2257"]],[19,20,["G3962"]],[20,21,["G3777"]],[21,22,["G2249"]],[22,24,["G2480"]],[24,26,["G941"]]]},{"k":27453,"v":[[0,1,["G235"]],[1,3,["G4100"]],[3,5,["G1223"]],[5,6,["G3588"]],[6,7,["G5485"]],[7,9,["G3588"]],[9,10,["G2962"]],[10,11,["G2424"]],[11,12,["G5547"]],[12,16,["G4982"]],[16,19,["G2596","G3739","G5158","G2548"]]]},{"k":27454,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G4128"]],[4,6,["G4601"]],[6,7,["G2532"]],[7,9,["G191"]],[9,11,["G921"]],[11,12,["G2532"]],[12,13,["G3972"]],[13,14,["G1834"]],[14,15,["G3745"]],[15,16,["G4592"]],[16,17,["G2532"]],[17,18,["G5059"]],[18,19,["G2316"]],[19,21,["G4160"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G1484"]],[24,25,["G1223"]],[25,26,["G846"]]]},{"k":27455,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,7,["G4601"]],[7,8,["G2385"]],[8,9,["G611"]],[9,10,["G3004"]],[10,11,["G435"]],[11,13,["G80"]],[13,14,["G191"]],[14,16,["G3450"]]]},{"k":27456,"v":[[0,1,["G4826"]],[1,3,["G1834"]],[3,4,["G2531"]],[4,5,["G2316"]],[5,8,["G4412"]],[8,10,["G1980"]],[10,12,["G1484"]],[12,14,["G2983"]],[14,16,["G1537"]],[16,19,["G2992"]],[19,20,["G1909"]],[20,21,["G848"]],[21,22,["G3686"]]]},{"k":27457,"v":[[0,1,["G2532"]],[1,3,["G5129"]],[3,4,["G4856"]],[4,5,["G3588"]],[5,6,["G3056"]],[6,8,["G3588"]],[8,9,["G4396"]],[9,10,["G2531"]],[10,13,["G1125"]]]},{"k":27458,"v":[[0,1,["G3326"]],[1,2,["G5023"]],[2,5,["G390"]],[5,6,["G2532"]],[6,9,["G456"]],[9,10,["G3588"]],[10,11,["G4633"]],[11,13,["G1138"]],[13,17,["G4098"]],[17,18,["G2532"]],[18,22,["G456"]],[22,23,["G3588"]],[23,24,["G2679"]],[24,25,["G846"]],[25,26,["G2532"]],[26,31,["G461","G846"]]]},{"k":27459,"v":[[0,1,["G3704"]],[1,2,["G3588"]],[2,3,["G2645"]],[3,5,["G444"]],[5,8,["G1567","G302"]],[8,9,["G3588"]],[9,10,["G2962"]],[10,11,["G2532"]],[11,12,["G3956"]],[12,13,["G3588"]],[13,14,["G1484"]],[14,15,["G1909"]],[15,16,["G3739"]],[16,17,["G3450"]],[17,18,["G3686"]],[18,20,["G1941"]],[20,21,["(G3004","G846)"]],[21,23,["G2962"]],[23,25,["G4160"]],[25,26,["G3956"]],[26,28,["G5023"]]]},{"k":27460,"v":[[0,1,["G1110"]],[1,3,["G2316"]],[3,4,["G2076"]],[4,5,["G3956"]],[5,6,["G848"]],[6,7,["G2041"]],[7,8,["G575"]],[8,13,["G165"]]]},{"k":27461,"v":[[0,1,["G1352"]],[1,2,["G1473"]],[2,4,["G2919"]],[4,7,["G3926"]],[7,8,["G3361"]],[8,11,["G575"]],[11,13,["G3588"]],[13,14,["G1484"]],[14,16,["G1994"]],[16,17,["G1909"]],[17,18,["G2316"]]]},{"k":27462,"v":[[0,1,["G235"]],[1,4,["G1989"]],[4,6,["G846"]],[6,9,["G567"]],[9,10,["G575"]],[10,11,["G234"]],[11,13,["G1497"]],[13,14,["G2532"]],[14,16,["G4202"]],[16,17,["G2532"]],[17,20,["G4156"]],[20,21,["G2532"]],[21,23,["G129"]]]},{"k":27463,"v":[[0,1,["G1063"]],[1,2,["G3475"]],[2,5,["G1537","G744","G1074"]],[5,6,["G2192"]],[6,9,["G2596","G4172"]],[9,12,["G2784"]],[12,13,["G846"]],[13,15,["G314"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G4864"]],[18,19,["G2596","G3956"]],[19,21,["G4521"]]]},{"k":27464,"v":[[0,1,["G5119"]],[1,2,["G1380"]],[2,4,["G3588"]],[4,5,["G652"]],[5,6,["G2532"]],[6,7,["G4245"]],[7,8,["G4862"]],[8,9,["G3588"]],[9,10,["G3650"]],[10,11,["G1577"]],[11,13,["G3992"]],[13,14,["G1586"]],[14,15,["G435"]],[15,16,["G1537"]],[16,19,["G846"]],[19,20,["G1519"]],[20,21,["G490"]],[21,22,["G4862"]],[22,23,["G3972"]],[23,24,["G2532"]],[24,25,["G921"]],[25,27,["G2455"]],[27,28,["G1941"]],[28,29,["G923"]],[29,30,["G2532"]],[30,31,["G4609"]],[31,32,["G2233"]],[32,33,["G435"]],[33,34,["G1722"]],[34,35,["G3588"]],[35,36,["G80"]]]},{"k":27465,"v":[[0,3,["G1125"]],[3,5,["G1223"]],[5,6,["G848"]],[6,9,["G3592"]],[9,10,["G3588"]],[10,11,["G652"]],[11,13,["G4245"]],[13,14,["G2532"]],[14,15,["G80"]],[15,17,["G5463"]],[17,19,["G3588"]],[19,20,["G80"]],[20,21,["G3588"]],[21,23,["G1537"]],[23,25,["G1484"]],[25,26,["G2596"]],[26,27,["G490"]],[27,28,["G2532"]],[28,29,["G4947"]],[29,30,["G2532"]],[30,31,["G2791"]]]},{"k":27466,"v":[[0,2,["G1894"]],[2,5,["G191"]],[5,6,["G3754"]],[6,7,["G5100"]],[7,10,["G1831"]],[10,11,["G1537"]],[11,12,["G2257"]],[12,14,["G5015"]],[14,15,["G5209"]],[15,17,["G3056"]],[17,18,["G384"]],[18,19,["G5216"]],[19,20,["G5590"]],[20,21,["G3004"]],[21,25,["G4059"]],[25,26,["G2532"]],[26,27,["G5083"]],[27,28,["G3588"]],[28,29,["G3551"]],[29,31,["G3739"]],[31,36,["G1291","G3756"]]]},{"k":27467,"v":[[0,3,["G1380"]],[3,5,["G2254"]],[5,7,["G1096"]],[7,10,["G3661"]],[10,12,["G3992"]],[12,13,["G1586"]],[13,14,["G435"]],[14,15,["G4314"]],[15,16,["G5209"]],[16,17,["G4862"]],[17,18,["G2257"]],[18,19,["G27"]],[19,20,["G921"]],[20,21,["G2532"]],[21,22,["G3972"]]]},{"k":27468,"v":[[0,1,["G444"]],[1,4,["G3860"]],[4,5,["G848"]],[5,6,["G5590"]],[6,7,["G5228"]],[7,8,["G3588"]],[8,9,["G3686"]],[9,11,["G2257"]],[11,12,["G2962"]],[12,13,["G2424"]],[13,14,["G5547"]]]},{"k":27469,"v":[[0,3,["G649"]],[3,4,["G3767"]],[4,5,["G2455"]],[5,6,["G2532"]],[6,7,["G4609"]],[7,8,["G846"]],[8,10,["G2532"]],[10,11,["G518"]],[11,13,["G3588"]],[13,15,["G846"]],[15,17,["G1223","G3056"]]]},{"k":27470,"v":[[0,1,["G1063"]],[1,4,["G1380"]],[4,6,["G3588"]],[6,7,["G40"]],[7,8,["G4151"]],[8,9,["G2532"]],[9,11,["G2254"]],[11,13,["G2007"]],[13,15,["G5213"]],[15,16,["G3367"]],[16,17,["G4119"]],[17,18,["G922"]],[18,19,["G4133"]],[19,20,["G5130"]],[20,22,["G1876"]]]},{"k":27471,"v":[[0,3,["G567"]],[3,8,["G1494"]],[8,9,["G2532"]],[9,11,["G129"]],[11,12,["G2532"]],[12,15,["G4156"]],[15,16,["G2532"]],[16,18,["G4202"]],[18,19,["G1537"]],[19,20,["G3739"]],[20,23,["G1301"]],[23,24,["G1438"]],[24,27,["G4238"]],[27,28,["G2095"]],[28,31,["G4517"]]]},{"k":27472,"v":[[0,1,["G3767"]],[1,3,["G3588"]],[3,4,["(G3303)"]],[4,5,["G630"]],[5,7,["G2064"]],[7,8,["G1519"]],[8,9,["G490"]],[9,10,["G2532"]],[10,17,["G4863","G3588","G4128"]],[17,19,["G1929"]],[19,20,["G3588"]],[20,21,["G1992"]]]},{"k":27473,"v":[[0,2,["G1161"]],[2,5,["G314"]],[5,7,["G5463"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,10,["G3874"]]]},{"k":27474,"v":[[0,1,["G5037"]],[1,2,["G2455"]],[2,3,["G2532"]],[3,4,["G4609"]],[4,5,["G5607"]],[5,6,["G4396"]],[6,7,["G2532"]],[7,8,["G848"]],[8,9,["G3870"]],[9,10,["G3588"]],[10,11,["G80"]],[11,12,["G1223"]],[12,13,["G4183"]],[13,14,["G3056"]],[14,15,["G2532"]],[15,16,["G1991"]],[16,17,[]]]},{"k":27475,"v":[[0,1,["G1161"]],[1,5,["G4160"]],[5,8,["G5550"]],[8,12,["G630"]],[12,13,["G3326"]],[13,14,["G1515"]],[14,15,["G575"]],[15,16,["G3588"]],[16,17,["G80"]],[17,18,["G4314"]],[18,19,["G3588"]],[19,20,["G652"]]]},{"k":27476,"v":[[0,1,["G1161"]],[1,3,["G1380"]],[3,4,["G4609"]],[4,6,["G1961"]],[6,7,["G847"]],[7,8,[]]]},{"k":27477,"v":[[0,1,["G3972"]],[1,2,["G1161"]],[2,3,["G2532"]],[3,4,["G921"]],[4,5,["G1304"]],[5,6,["G1722"]],[6,7,["G490"]],[7,8,["G1321"]],[8,9,["G2532"]],[9,10,["G2097"]],[10,11,["G3588"]],[11,12,["G3056"]],[12,14,["G3588"]],[14,15,["G2962"]],[15,16,["G3326"]],[16,17,["G4183"]],[17,18,["G2087"]],[18,19,["G2532"]]]},{"k":27478,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G2250"]],[3,4,["G3326"]],[4,5,["G3972"]],[5,6,["G2036"]],[6,7,["G4314"]],[7,8,["G921"]],[8,12,["G1994","(G1211)"]],[12,14,["G1980"]],[14,15,["G2257"]],[15,16,["G80"]],[16,17,["G2596"]],[17,18,["G3956"]],[18,19,["G4172"]],[19,20,["G1722","G3739"]],[20,23,["G2605"]],[23,24,["G3588"]],[24,25,["G3056"]],[25,27,["G3588"]],[27,28,["G2962"]],[28,31,["G4459"]],[31,33,["G2192"]]]},{"k":27479,"v":[[0,1,["G1161"]],[1,2,["G921"]],[2,3,["G1011"]],[3,6,["G4838"]],[6,8,["G2491"]],[8,11,["G2564"]],[11,12,["G3138"]]]},{"k":27480,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,5,["G515","G3361"]],[5,9,["G4838","G5126"]],[9,12,["G868"]],[12,13,["G575"]],[13,14,["G846"]],[14,15,["G575"]],[15,16,["G3828"]],[16,17,["G2532"]],[17,20,["G4905","G3361"]],[20,21,["G846"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G2041"]]]},{"k":27481,"v":[[0,1,["G3767"]],[1,7,["G3948","G1096"]],[7,9,["G5620"]],[9,10,["G846"]],[10,12,["G673"]],[12,16,["G575","G240"]],[16,17,["G5037"]],[17,19,["G921"]],[19,20,["G3880"]],[20,21,["G3138"]],[21,23,["G1602"]],[23,24,["G1519"]],[24,25,["G2954"]]]},{"k":27482,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,3,["G1951"]],[3,4,["G4609"]],[4,6,["G1831"]],[6,8,["G3860"]],[8,9,["G5259"]],[9,10,["G3588"]],[10,11,["G80"]],[11,13,["G3588"]],[13,14,["G5485"]],[14,16,["G2316"]]]},{"k":27483,"v":[[0,1,["G1161"]],[1,4,["G1330"]],[4,5,["G4947"]],[5,6,["G2532"]],[6,7,["G2791"]],[7,8,["G1991"]],[8,9,["G3588"]],[9,10,["G1577"]]]},{"k":27484,"v":[[0,1,["G1161"]],[1,2,["G2658"]],[2,4,["G1519"]],[4,5,["G1191"]],[5,6,["G2532"]],[6,7,["G3082"]],[7,8,["G2532"]],[8,9,["G2400"]],[9,11,["G5100"]],[11,12,["G3101"]],[12,13,["G2258"]],[13,14,["G1563"]],[14,15,["G3686"]],[15,16,["G5095"]],[16,18,["G5207"]],[18,21,["G5100"]],[21,22,["G1135"]],[22,26,["G2453"]],[26,28,["G4103"]],[28,29,["G1161"]],[29,31,["G3962"]],[31,34,["G1672"]]]},{"k":27485,"v":[[0,1,["G3739"]],[1,5,["G3140"]],[5,6,["G5259"]],[6,7,["G3588"]],[7,8,["G80"]],[8,11,["G1722"]],[11,12,["G3082"]],[12,13,["G2532"]],[13,14,["G2430"]]]},{"k":27486,"v":[[0,1,["G5126"]],[1,2,["G2309"]],[2,3,["G3972"]],[3,7,["G1831"]],[7,8,["G4862"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G2983"]],[11,13,["G4059"]],[13,14,["G846"]],[14,16,["G1223"]],[16,17,["G3588"]],[17,18,["G2453"]],[18,20,["G5607"]],[20,21,["G1722"]],[21,22,["G1565"]],[22,23,["G5117"]],[23,24,["G1063"]],[24,26,["G1492"]],[26,27,["G537"]],[27,28,["G3754"]],[28,29,["G848"]],[29,30,["G3962"]],[30,31,["G5225"]],[31,33,["G1672"]]]},{"k":27487,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,5,["G1279"]],[5,6,["G3588"]],[6,7,["G4172"]],[7,9,["G3860"]],[9,10,["G846"]],[10,11,["G3588"]],[11,12,["G1378"]],[12,15,["G5442"]],[15,18,["G2919"]],[18,19,["G5259"]],[19,20,["G3588"]],[20,21,["G652"]],[21,22,["G2532"]],[22,23,["G4245"]],[23,24,["G3588"]],[24,26,["G1722"]],[26,27,["G2419"]]]},{"k":27488,"v":[[0,1,["G3767"]],[1,2,["G3303"]],[2,4,["G3588"]],[4,5,["G1577"]],[5,6,["G4732"]],[6,8,["G3588"]],[8,9,["G4102"]],[9,10,["G2532"]],[10,11,["G4052"]],[11,13,["G706"]],[13,14,["G2596","G2250"]]]},{"k":27489,"v":[[0,1,["G1161"]],[1,6,["G1330"]],[6,7,["G5435"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G5561"]],[10,12,["G1054"]],[12,15,["G2967"]],[15,16,["G5259"]],[16,17,["G3588"]],[17,18,["G40"]],[18,19,["G4151"]],[19,21,["G2980"]],[21,22,["G3588"]],[22,23,["G3056"]],[23,24,["G1722"]],[24,25,["G773"]]]},{"k":27490,"v":[[0,4,["G2064"]],[4,5,["G2596"]],[5,6,["G3465"]],[6,8,["G3985"]],[8,10,["G4198"]],[10,11,["G2596"]],[11,12,["G978"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G4151"]],[15,16,["G1439"]],[16,17,["G846"]],[17,18,["G3756"]]]},{"k":27491,"v":[[0,1,["G1161"]],[1,4,["G3928"]],[4,5,["G3465"]],[5,7,["G2597"]],[7,8,["G1519"]],[8,9,["G5174"]]]},{"k":27492,"v":[[0,1,["G2532"]],[1,3,["G3705"]],[3,4,["G3700"]],[4,6,["G3972"]],[6,7,["G1223"]],[7,8,["G3588"]],[8,9,["G3571"]],[9,11,["G2258","G2476"]],[11,13,["G435"]],[13,15,["G3110"]],[15,16,["G2532"]],[16,17,["G3870"]],[17,18,["G846"]],[18,19,["G3004"]],[19,21,["G1224"]],[21,22,["G1519"]],[22,23,["G3109"]],[23,25,["G997"]],[25,26,["G2254"]]]},{"k":27493,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,5,["G1492"]],[5,6,["G3588"]],[6,7,["G3705"]],[7,8,["G2112"]],[8,10,["G2212"]],[10,12,["G1831"]],[12,13,["G1519"]],[13,14,["G3109"]],[14,16,["G4822"]],[16,17,["G3754"]],[17,18,["G3588"]],[18,19,["G2962"]],[19,21,["G4341"]],[21,22,["G2248"]],[22,27,["G2097"]],[27,29,["G846"]]]},{"k":27494,"v":[[0,1,["G3767"]],[1,2,["G321"]],[2,3,["G575"]],[3,4,["G5174"]],[4,10,["G2113"]],[10,11,["G1519"]],[11,12,["G4543"]],[12,13,["G5037"]],[13,14,["G3588"]],[14,15,["G1966"]],[15,17,["G1519"]],[17,18,["G3496"]]]},{"k":27495,"v":[[0,1,["G5037"]],[1,3,["G1564"]],[3,4,["G1519"]],[4,5,["G5375"]],[5,6,["G3748"]],[6,7,["G2076"]],[7,9,["G4413"]],[9,10,["G4172"]],[10,13,["G3310"]],[13,15,["G3109"]],[15,18,["G2862"]],[18,19,["G1161"]],[19,21,["G2258"]],[21,22,["G1722"]],[22,23,["G5026"]],[23,24,["G4172"]],[24,25,["G1304"]],[25,26,["G5100"]],[26,27,["G2250"]]]},{"k":27496,"v":[[0,1,["G5037"]],[1,2,["(G2250)"]],[2,3,["G3588"]],[3,4,["G4521"]],[4,6,["G1831"]],[6,7,["G1854"]],[7,9,["G3588"]],[9,10,["G4172"]],[10,11,["G3844"]],[11,14,["G4215"]],[14,15,["G3757"]],[15,16,["G4335"]],[16,18,["G3543"]],[18,21,["G1511"]],[21,22,["G2532"]],[22,25,["G2523"]],[25,27,["G2980"]],[27,29,["G3588"]],[29,30,["G1135"]],[30,32,["G4905"]],[32,33,[]]]},{"k":27497,"v":[[0,1,["G2532"]],[1,3,["G5100"]],[3,4,["G1135"]],[4,5,["G3686"]],[5,6,["G3070"]],[6,10,["G4211"]],[10,13,["G4172"]],[13,15,["G2363"]],[15,17,["G4576"]],[17,18,["G2316"]],[18,19,["G191"]],[19,21,["G3739"]],[21,22,["G2588"]],[22,23,["G3588"]],[23,24,["G2962"]],[24,25,["G1272"]],[25,28,["G4337"]],[28,34,["G2980"]],[34,35,["G5259"]],[35,36,["G3972"]]]},{"k":27498,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,5,["G907"]],[5,6,["G2532"]],[6,7,["G848"]],[7,8,["G3624"]],[8,10,["G3870"]],[10,12,["G3004"]],[12,13,["G1487"]],[13,16,["G2919"]],[16,17,["G3165"]],[17,19,["G1511"]],[19,20,["G4103"]],[20,22,["G3588"]],[22,23,["G2962"]],[23,24,["G1525"]],[24,25,["G1519"]],[25,26,["G3450"]],[26,27,["G3624"]],[27,29,["G3306"]],[29,31,["G2532"]],[31,33,["G3849"]],[33,34,["G2248"]]]},{"k":27499,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,7,["G2257"]],[7,8,["G4198"]],[8,9,["G1519"]],[9,10,["G4335"]],[10,12,["G5100"]],[12,13,["G3814"]],[13,14,["G2192"]],[14,17,["G4151"]],[17,19,["G4436"]],[19,20,["G528"]],[20,21,["G2254"]],[21,22,["G3748"]],[22,23,["G3930"]],[23,24,["G848"]],[24,25,["G2962"]],[25,26,["G4183"]],[26,27,["G2039"]],[27,29,["G3132"]]]},{"k":27500,"v":[[0,2,["G3778"]],[2,3,["G2628"]],[3,4,["G3972"]],[4,5,["G2532"]],[5,6,["G2254"]],[6,8,["G2896"]],[8,9,["G3004"]],[9,10,["G3778"]],[10,11,["G444"]],[11,12,["G1526"]],[12,14,["G1401"]],[14,16,["G3588"]],[16,18,["G5310"]],[18,19,["G2316"]],[19,20,["G3748"]],[20,21,["G2605"]],[21,23,["G2254"]],[23,25,["G3598"]],[25,27,["G4991"]]]},{"k":27501,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,3,["G4160"]],[3,4,["(G1909)"]],[4,5,["G4183"]],[5,6,["G2250"]],[6,7,["G1161"]],[7,8,["G3972"]],[8,10,["G1278"]],[10,11,["G1994"]],[11,12,["G2532"]],[12,13,["G2036"]],[13,15,["G3588"]],[15,16,["G4151"]],[16,18,["G3853"]],[18,19,["G4671"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G3686"]],[22,24,["G2424"]],[24,25,["G5547"]],[25,27,["G1831"]],[27,29,["G575"]],[29,30,["G846"]],[30,31,["G2532"]],[31,34,["G1831"]],[34,35,["G3588"]],[35,36,["G846"]],[36,37,["G5610"]]]},{"k":27502,"v":[[0,1,["G1161"]],[1,3,["G848"]],[3,4,["G2962"]],[4,5,["G1492"]],[5,6,["G3754"]],[6,7,["G3588"]],[7,8,["G1680"]],[8,10,["G848"]],[10,11,["G2039"]],[11,13,["G1831"]],[13,15,["G1949"]],[15,16,["G3972"]],[16,17,["G2532"]],[17,18,["G4609"]],[18,20,["G1670"]],[20,22,["G1519"]],[22,23,["G3588"]],[23,24,["G58"]],[24,25,["G1909"]],[25,26,["G3588"]],[26,27,["G758"]]]},{"k":27503,"v":[[0,1,["G2532"]],[1,2,["G4317"]],[2,3,["G846"]],[3,5,["G3588"]],[5,6,["G4755"]],[6,7,["G2036"]],[7,8,["G3778"]],[8,9,["G444"]],[9,10,["G5225"]],[10,11,["G2453"]],[11,14,["G1613"]],[14,15,["G2257"]],[15,16,["G4172"]]]},{"k":27504,"v":[[0,1,["G2532"]],[1,2,["G2605"]],[2,3,["G1485"]],[3,4,["G3739"]],[4,7,["G1832","G3756"]],[7,9,["G2254"]],[9,11,["G3858"]],[11,12,["G3761"]],[12,14,["G4160"]],[14,15,["G5607"]],[15,16,["G4514"]]]},{"k":27505,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3793"]],[3,6,["G4911"]],[6,7,["G2596"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G4755"]],[11,13,["G4048"]],[13,14,["G846"]],[14,15,["G2440"]],[15,17,["G2753"]],[17,19,["G4463"]],[19,20,[]]]},{"k":27506,"v":[[0,1,["G5037"]],[1,5,["G2007"]],[5,6,["G4183"]],[6,7,["G4127"]],[7,9,["G846"]],[9,11,["G906"]],[11,13,["G1519"]],[13,14,["G5438"]],[14,15,["G3853"]],[15,16,["G3588"]],[16,17,["G1200"]],[17,19,["G5083"]],[19,20,["G846"]],[20,21,["G806"]]]},{"k":27507,"v":[[0,1,["G3739"]],[1,3,["G2983"]],[3,4,["G5108"]],[4,6,["G3852"]],[6,7,["G906"]],[7,8,["G846"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G2082"]],[11,12,["G5438"]],[12,13,["G2532"]],[13,17,["G805","G846","G4228"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G3586"]]]},{"k":27508,"v":[[0,1,["G1161"]],[1,2,["G2596"]],[2,3,["G3317"]],[3,4,["G3972"]],[4,5,["G2532"]],[5,6,["G4609"]],[6,7,["G4336"]],[7,8,["G2532"]],[8,10,["G5214"]],[10,12,["G2316"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G1198"]],[15,16,["G1874"]],[16,17,["G846"]]]},{"k":27509,"v":[[0,1,["G1161"]],[1,2,["G869"]],[2,4,["G1096"]],[4,6,["G3173"]],[6,7,["G4578"]],[7,9,["G5620"]],[9,10,["G3588"]],[10,11,["G2310"]],[11,13,["G3588"]],[13,14,["G1201"]],[14,16,["G4531"]],[16,17,["G5037"]],[17,18,["G3916"]],[18,19,["G3956"]],[19,20,["G3588"]],[20,21,["G2374"]],[21,23,["G455"]],[23,24,["G2532"]],[24,26,["G3956"]],[26,27,["G1199"]],[27,29,["G447"]]]},{"k":27510,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,6,["G1200"]],[6,11,["G1096","G1853"]],[11,12,["G2532"]],[12,13,["G1492"]],[13,14,["G3588"]],[14,15,["G5438"]],[15,16,["G2374"]],[16,17,["G455"]],[17,20,["G4685"]],[20,22,["G3162"]],[22,24,["G3195"]],[24,26,["G337"]],[26,27,["G1438"]],[27,28,["G3543"]],[28,30,["G3588"]],[30,31,["G1198"]],[31,34,["G1628"]]]},{"k":27511,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,3,["G5455"]],[3,6,["G3173"]],[6,7,["G5456"]],[7,8,["G3004"]],[8,9,["G4238"]],[9,10,["G4572"]],[10,11,["G3367"]],[11,12,["G2556"]],[12,13,["G1063"]],[13,15,["G2070"]],[15,16,["G537"]],[16,17,["G1759"]]]},{"k":27512,"v":[[0,1,["G1161"]],[1,3,["G154"]],[3,6,["G5457"]],[6,9,["G1530"]],[9,10,["G2532"]],[10,11,["G1096"]],[11,12,["G1790"]],[12,16,["G4363"]],[16,17,["G3972"]],[17,18,["G2532"]],[18,19,["G4609"]]]},{"k":27513,"v":[[0,1,["G2532"]],[1,2,["G4254"]],[2,3,["G846"]],[3,4,["G1854"]],[4,6,["G5346"]],[6,7,["G2962"]],[7,8,["G5101"]],[8,9,["G1163"]],[9,10,["G3165"]],[10,11,["G4160"]],[11,12,["G2443"]],[12,14,["G4982"]]]},{"k":27514,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G4100"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G2962"]],[7,8,["G2424"]],[8,9,["G5547"]],[9,10,["G2532"]],[10,11,["G4771"]],[11,14,["G4982"]],[14,15,["G2532"]],[15,16,["G4675"]],[16,17,["G3624"]]]},{"k":27515,"v":[[0,1,["G2532"]],[1,3,["G2980"]],[3,5,["G846"]],[5,6,["G3588"]],[6,7,["G3056"]],[7,9,["G3588"]],[9,10,["G2962"]],[10,11,["G2532"]],[11,13,["G3956"]],[13,14,["G3588"]],[14,16,["G1722"]],[16,17,["G848"]],[17,18,["G3614"]]]},{"k":27516,"v":[[0,1,["G2532"]],[1,3,["G3880"]],[3,4,["G846"]],[4,5,["G3588"]],[5,6,["G1565"]],[6,7,["G5610"]],[7,9,["G3588"]],[9,10,["G3571"]],[10,12,["G3068"]],[12,13,["(G575)"]],[13,14,["G4127"]],[14,15,["G2532"]],[15,17,["G907"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G3956"]],[20,21,["G846"]],[21,22,["G3916"]]]},{"k":27517,"v":[[0,1,["G5037"]],[1,5,["G321"]],[5,6,["G846"]],[6,7,["G1519"]],[7,8,["G848"]],[8,9,["G3624"]],[9,13,["G3908","G5132"]],[13,15,["G2532"]],[15,16,["G21"]],[16,17,["G4100"]],[17,19,["G2316"]],[19,23,["G3832"]]]},{"k":27518,"v":[[0,1,["G1161"]],[1,4,["G1096"]],[4,5,["G2250"]],[5,6,["G3588"]],[6,7,["G4755"]],[7,8,["G649"]],[8,9,["G3588"]],[9,10,["G4465"]],[10,11,["G3004"]],[11,15,["G630","G1565","G444"]]]},{"k":27519,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,6,["G1200"]],[6,7,["G518"]],[7,8,["G5128"]],[8,9,["G3056"]],[9,10,["G4314"]],[10,11,["G3972"]],[11,12,["G3588"]],[12,13,["G4755"]],[13,15,["G649"]],[15,16,["G2443"]],[16,19,["G630"]],[19,20,["G3568"]],[20,21,["G3767"]],[21,22,["G1831"]],[22,24,["G4198"]],[24,25,["G1722"]],[25,26,["G1515"]]]},{"k":27520,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,3,["G5346"]],[3,4,["G4314"]],[4,5,["G846"]],[5,8,["G1194"]],[8,9,["G2248"]],[9,10,["G1219"]],[10,11,["G178"]],[11,12,["G5225"]],[12,13,["G4514"]],[13,14,["(G444)"]],[14,16,["G906"]],[16,18,["G1519"]],[18,19,["G5438"]],[19,20,["G2532"]],[20,21,["G3568"]],[21,26,["G1544","G2248"]],[26,27,["G2977"]],[27,28,["G3756"]],[28,29,["G1063"]],[29,30,["G235"]],[30,33,["G2064"]],[33,34,["G848"]],[34,38,["G1806","G2248"]]]},{"k":27521,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4465"]],[3,4,["G312"]],[4,5,["G5023"]],[5,6,["G4487"]],[6,8,["G3588"]],[8,9,["G4755"]],[9,10,["G2532"]],[10,12,["G5399"]],[12,15,["G191"]],[15,16,["G3754"]],[16,18,["G1526"]],[18,19,["G4514"]]]},{"k":27522,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,5,["G3870"]],[5,6,["G846"]],[6,7,["G2532"]],[7,10,["G1806"]],[10,12,["G2065"]],[12,16,["G1831"]],[16,18,["G3588"]],[18,19,["G4172"]]]},{"k":27523,"v":[[0,1,["G1161"]],[1,3,["G1831"]],[3,5,["G1537"]],[5,6,["G3588"]],[6,7,["G5438"]],[7,9,["G1525"]],[9,10,["G1519"]],[10,14,["G3070"]],[14,15,["G2532"]],[15,19,["G1492"]],[19,20,["G3588"]],[20,21,["G80"]],[21,23,["G3870"]],[23,24,["G846"]],[24,25,["G2532"]],[25,26,["G1831"]]]},{"k":27524,"v":[[0,1,["G1161"]],[1,6,["G1353"]],[6,7,["G295"]],[7,8,["G2532"]],[8,9,["G624"]],[9,11,["G2064"]],[11,12,["G1519"]],[12,13,["G2332"]],[13,14,["G3699"]],[14,15,["G2258"]],[15,17,["G4864"]],[17,19,["G3588"]],[19,20,["G2453"]]]},{"k":27525,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,6,["G2596","G1486"]],[6,8,["G1525"]],[8,9,["G4314"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["(G5140)"]],[12,14,["G4521"]],[14,15,["G1256"]],[15,17,["G846"]],[17,19,["G575"]],[19,20,["G3588"]],[20,21,["G1124"]]]},{"k":27526,"v":[[0,1,["G1272"]],[1,2,["G2532"]],[2,3,["G3908"]],[3,4,["G3754"]],[4,5,["G5547"]],[5,7,["G1163"]],[7,9,["G3958"]],[9,10,["G2532"]],[10,12,["G450"]],[12,13,["G1537"]],[13,15,["G3498"]],[15,16,["G2532"]],[16,17,["G3754"]],[17,18,["G3778"]],[18,19,["G2424"]],[19,20,["G3739"]],[20,21,["G1473"]],[21,22,["G2605"]],[22,24,["G5213"]],[24,25,["G2076"]],[25,26,["G5547"]]]},{"k":27527,"v":[[0,1,["G2532"]],[1,2,["G5100"]],[2,3,["G1537"]],[3,4,["G846"]],[4,5,["G3982"]],[5,6,["G2532"]],[6,8,["G4345"]],[8,9,["G3972"]],[9,10,["G2532"]],[10,11,["G4609"]],[11,12,["G5037"]],[12,14,["G3588"]],[14,15,["G4576"]],[15,16,["G1672"]],[16,18,["G4183"]],[18,19,["G4128"]],[19,20,["G5037"]],[20,22,["G3588"]],[22,23,["G4413"]],[23,24,["G1135"]],[24,25,["G3756"]],[25,27,["G3641"]]]},{"k":27528,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,6,["G544"]],[6,9,["G2206","(G2532)"]],[9,11,["G4355"]],[11,13,["G5100"]],[13,14,["G4190"]],[14,15,["G435"]],[15,17,["G3588"]],[17,19,["G60"]],[19,20,["G2532"]],[20,23,["G3792"]],[23,31,["G2350","G3588","G4172"]],[31,32,["G5037"]],[32,33,["G2186"]],[33,34,["G3588"]],[34,35,["G3614"]],[35,37,["G2394"]],[37,39,["G2212"]],[39,40,["(G846)"]],[40,43,["G71"]],[43,44,["G1519"]],[44,45,["G3588"]],[45,46,["G1218"]]]},{"k":27529,"v":[[0,1,["G1161"]],[1,4,["G2147"]],[4,5,["G846"]],[5,6,["G3361"]],[6,8,["G4951"]],[8,9,["G2394"]],[9,10,["G2532"]],[10,11,["G5100"]],[11,12,["G80"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,18,["G4173"]],[18,19,["G994"]],[19,20,["G3778"]],[20,27,["G387","G3588","G3625"]],[27,29,["G3918"]],[29,30,["G1759"]],[30,31,["G2532"]]]},{"k":27530,"v":[[0,1,["G3739"]],[1,2,["G2394"]],[2,4,["G5264"]],[4,5,["G2532"]],[5,6,["G3778"]],[6,7,["G3956"]],[7,8,["G4238"]],[8,9,["G561"]],[9,11,["G3588"]],[11,12,["G1378"]],[12,14,["G2541"]],[14,15,["G3004"]],[15,18,["G1511"]],[18,19,["G2087"]],[19,20,["G935"]],[20,22,["G2424"]]]},{"k":27531,"v":[[0,1,["G1161"]],[1,3,["G5015"]],[3,4,["G3588"]],[4,5,["G3793"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,11,["G4173"]],[11,14,["G191"]],[14,16,["G5023"]]]},{"k":27532,"v":[[0,1,["G2532"]],[1,5,["G2983"]],[5,6,["G2425"]],[6,7,["G3844"]],[7,8,["G2394"]],[8,9,["G2532"]],[9,11,["G3588"]],[11,12,["G3062"]],[12,16,["G630","G846"]]]},{"k":27533,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G80"]],[3,4,["G2112"]],[4,6,["G1599","(G5037)"]],[6,7,["G3972"]],[7,8,["G2532"]],[8,9,["G4609"]],[9,10,["G1223"]],[10,11,["G3571"]],[11,12,["G1519"]],[12,13,["G960"]],[13,14,["G3748"]],[14,15,["G3854"]],[15,17,["G549"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G4864"]],[20,22,["G3588"]],[22,23,["G2453"]]]},{"k":27534,"v":[[0,1,["(G3778)"]],[1,2,["G2258"]],[2,4,["G2104"]],[4,6,["G3588"]],[6,7,["G1722"]],[7,8,["G2332"]],[8,11,["G3748"]],[11,12,["G1209"]],[12,13,["G3588"]],[13,14,["G3056"]],[14,15,["G3326"]],[15,16,["G3956"]],[16,19,["G4288"]],[19,21,["G350"]],[21,22,["G3588"]],[22,23,["G1124"]],[23,24,["G2596","G2250"]],[24,25,["G1487"]],[25,27,["G5023"]],[27,28,["G2192"]],[28,29,["G3779"]]]},{"k":27535,"v":[[0,1,["G3767"]],[1,2,["G4183","(G3303)"]],[2,3,["G1537"]],[3,4,["G846"]],[4,5,["G4100"]],[5,6,["G2532"]],[6,8,["G2158"]],[8,9,["G1135"]],[9,12,["G1674"]],[12,13,["G2532"]],[13,15,["G435"]],[15,16,["G3756"]],[16,18,["G3641"]]]},{"k":27536,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G3588"]],[3,4,["G2453"]],[4,5,["G575"]],[5,6,["G2332"]],[6,8,["G1097"]],[8,9,["G3754"]],[9,10,["G3588"]],[10,11,["G3056"]],[11,13,["G2316"]],[13,15,["G2605"]],[15,16,["G5259"]],[16,17,["G3972"]],[17,18,["G1722"]],[18,19,["G960"]],[19,21,["G2064"]],[21,23,["G2546"]],[23,26,["G4531"]],[26,27,["G3588"]],[27,28,["G3793"]]]},{"k":27537,"v":[[0,1,["G1161"]],[1,2,["G5119"]],[2,3,["G2112"]],[3,4,["G3588"]],[4,5,["G80"]],[5,7,["G1821"]],[7,8,["G3972"]],[8,10,["G4198"]],[10,13,["G5613"]],[13,14,["G1909"]],[14,15,["G3588"]],[15,16,["G2281"]],[16,17,["G1161","(G5037)"]],[17,18,["G4609"]],[18,19,["G2532"]],[19,20,["G5095"]],[20,21,["G5278"]],[21,22,["G1563"]],[22,23,[]]]},{"k":27538,"v":[[0,1,["G1161"]],[1,4,["G2525"]],[4,5,["G3972"]],[5,6,["G71"]],[6,7,["G846"]],[7,8,["G2193"]],[8,9,["G116"]],[9,10,["G2532"]],[10,11,["G2983"]],[11,13,["G1785"]],[13,14,["G4314"]],[14,15,["G4609"]],[15,16,["G2532"]],[16,17,["G5095"]],[17,20,["G2064"]],[20,21,["G4314"]],[21,22,["G846"]],[22,25,["G5613","G5033"]],[25,27,["G1826"]]]},{"k":27539,"v":[[0,1,["G1161"]],[1,3,["G3972"]],[3,5,["G1551"]],[5,6,["G846"]],[6,7,["G1722"]],[7,8,["G116"]],[8,9,["G848"]],[9,10,["G4151"]],[10,12,["G3947"]],[12,13,["G1722"]],[13,14,["G846"]],[14,17,["G2334"]],[17,18,["G3588"]],[18,19,["G4172"]],[19,23,["G2712"]]]},{"k":27540,"v":[[0,1,["G3767"]],[1,2,["G1256"]],[2,3,["(G3303)"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G4864"]],[6,8,["G3588"]],[8,9,["G2453"]],[9,10,["G2532"]],[10,12,["G3588"]],[12,14,["G4576"]],[14,15,["G2532"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G58"]],[18,19,["G2596","G3956","G2250"]],[19,20,["G4314"]],[20,24,["G3909"]],[24,25,[]]]},{"k":27541,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G5386"]],[3,5,["G3588"]],[5,6,["G1946"]],[6,7,["G2532"]],[7,9,["G3588"]],[9,10,["G4770"]],[10,11,["G4820"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G5100"]],[14,15,["G3004"]],[15,16,["G5101"]],[16,17,["G2309","G302"]],[17,18,["G3778"]],[18,19,["G4691"]],[19,20,["G3004","(G1161)"]],[20,21,["G3588"]],[21,24,["G1380"]],[24,26,["G1511"]],[26,29,["G2604"]],[29,31,["G3581"]],[31,32,["G1140"]],[32,33,["G3754"]],[33,35,["G2097"]],[35,37,["G846"]],[37,38,["G2424"]],[38,39,["G2532"]],[39,40,["G3588"]],[40,41,["G386"]]]},{"k":27542,"v":[[0,1,["G5037"]],[1,3,["G1949"]],[3,4,["G846"]],[4,6,["G71"]],[6,8,["G1909"]],[8,9,["G697"]],[9,10,["G3004"]],[10,11,["G1410"]],[11,13,["G1097"]],[13,14,["G5101"]],[14,15,["G3778"]],[15,16,["G2537"]],[16,17,["G1322"]],[17,18,["G3588"]],[18,19,["G4675"]],[19,20,["G2980"]],[20,21,[]]]},{"k":27543,"v":[[0,1,["G1063"]],[1,3,["G1533"]],[3,4,["G5100"]],[4,6,["G3579"]],[6,7,["G1519"]],[7,8,["G2257"]],[8,9,["G189"]],[9,11,["G1014"]],[11,12,["G1097"]],[12,13,["G3767"]],[13,14,["G5101"]],[14,16,["G5023"]],[16,17,["G2309","G302","(G1511)"]]]},{"k":27544,"v":[[0,1,["(G1161)"]],[1,2,["G3956"]],[2,4,["G117"]],[4,5,["G2532"]],[5,6,["G3581"]],[6,9,["G1927"]],[9,12,["G2119"]],[12,13,["G1519"]],[13,14,["G3762"]],[14,15,["G2087"]],[15,16,["G2228"]],[16,19,["G3004"]],[19,20,["G2532"]],[20,22,["G191"]],[22,23,["G5100"]],[23,25,["G2537"]]]},{"k":27545,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,3,["G2476"]],[3,4,["G1722"]],[4,6,["G3319"]],[6,9,["G697"]],[9,11,["G5346"]],[11,13,["G435"]],[13,15,["G117"]],[15,17,["G2334"]],[17,19,["G2596"]],[19,21,["G3956"]],[21,22,["G5209"]],[22,23,["(G5613)"]],[23,25,["G1174"]]]},{"k":27546,"v":[[0,1,["G1063"]],[1,5,["G1330"]],[5,6,["G2532"]],[6,7,["G333"]],[7,8,["G5216"]],[8,9,["G4574"]],[9,11,["G2147"]],[11,12,["(G2532)"]],[12,13,["G1041"]],[13,16,["G1722","G3739","G1924"]],[16,19,["G57"]],[19,20,["G2316"]],[20,21,["G3739"]],[21,22,["G3767"]],[22,24,["G50"]],[24,25,["G2151"]],[25,26,["G5126"]],[26,27,["G2605"]],[27,28,["G1473"]],[28,30,["G5213"]]]},{"k":27547,"v":[[0,1,["G2316"]],[1,3,["G4160"]],[3,4,["G3588"]],[4,5,["G2889"]],[5,6,["G2532"]],[6,8,["G3956"]],[8,9,["G1722","G846"]],[9,12,["G3778"]],[12,13,["G5225"]],[13,14,["G2962"]],[14,16,["G3772"]],[16,17,["G2532"]],[17,18,["G1093"]],[18,19,["G2730"]],[19,20,["G3756"]],[20,21,["G1722"]],[21,22,["G3485"]],[22,25,["G5499"]]]},{"k":27548,"v":[[0,1,["G3761"]],[1,3,["G2323"]],[3,4,["G5259"]],[4,5,["G444"]],[5,6,["G5495"]],[6,10,["G4326"]],[10,12,["G5100"]],[12,14,["G846"]],[14,15,["G1325"]],[15,17,["G3956"]],[17,18,["G2222"]],[18,19,["G2532"]],[19,20,["G4157"]],[20,23,["G2596","G3956"]]]},{"k":27549,"v":[[0,1,["G5037"]],[1,3,["G4160"]],[3,4,["G1537"]],[4,5,["G1520"]],[5,6,["G129"]],[6,7,["G3956"]],[7,8,["G1484"]],[8,10,["G444"]],[10,13,["G2730"]],[13,14,["G1909"]],[14,15,["G3956"]],[15,16,["G3588"]],[16,17,["G4383"]],[17,19,["G3588"]],[19,20,["G1093"]],[20,23,["G3724"]],[23,25,["G2540"]],[25,27,["G4384"]],[27,28,["G2532"]],[28,29,["G3588"]],[29,30,["G3734"]],[30,32,["G848"]],[32,33,["G2733"]]]},{"k":27550,"v":[[0,4,["G2212"]],[4,5,["G3588"]],[5,6,["G2962"]],[6,7,["G1487"]],[7,8,["G686","G1065"]],[8,12,["G5584"]],[12,13,["G846"]],[13,14,["G2532"]],[14,15,["G2147"]],[15,17,["G2544"]],[17,19,["G5225"]],[19,20,["G3756"]],[20,21,["G3112"]],[21,22,["G575"]],[22,23,["G1538"]],[23,24,["G1520"]],[24,26,["G2257"]]]},{"k":27551,"v":[[0,1,["G1063"]],[1,2,["G1722"]],[2,3,["G846"]],[3,5,["G2198"]],[5,6,["G2532"]],[6,7,["G2795"]],[7,8,["G2532"]],[8,11,["G2070"]],[11,12,["G5613"]],[12,13,["G5100"]],[13,14,["G2532"]],[14,17,["G2596","G5209"]],[17,18,["G4163"]],[18,20,["G2046"]],[20,21,["G1063"]],[21,23,["G2070"]],[23,24,["G2532"]],[24,25,["G5120"]],[25,26,["G1085"]]]},{"k":27552,"v":[[0,2,["G3767"]],[2,5,["G5225"]],[5,7,["G1085"]],[7,9,["G2316"]],[9,11,["G3784"]],[11,12,["G3756"]],[12,14,["G3543"]],[14,16,["G3588"]],[16,17,["G2304"]],[17,18,["G1511"]],[18,20,["G3664"]],[20,21,["G5557"]],[21,22,["G2228"]],[22,23,["G696"]],[23,24,["G2228"]],[24,25,["G3037"]],[25,26,["G5480"]],[26,28,["G5078"]],[28,29,["G2532"]],[29,30,["G444"]],[30,31,["G1761"]]]},{"k":27553,"v":[[0,1,["(G3767","G3303)"]],[1,2,["G3588"]],[2,3,["G5550"]],[3,6,["G52"]],[6,7,["G2316"]],[7,8,["G5237"]],[8,11,["G3569"]],[11,12,["G3853"]],[12,13,["G3956"]],[13,14,["G444"]],[14,16,["G3837"]],[16,18,["G3340"]]]},{"k":27554,"v":[[0,1,["G1360"]],[1,4,["G2476"]],[4,6,["G2250"]],[6,7,["G1722"]],[7,9,["G3739"]],[9,11,["G3195"]],[11,12,["G2919"]],[12,13,["G3588"]],[13,14,["G3625"]],[14,15,["G1722"]],[15,16,["G1343"]],[16,17,["G1722"]],[17,19,["G435"]],[19,20,["G3739"]],[20,23,["G3724"]],[23,27,["G3930"]],[27,28,["G4102"]],[28,30,["G3956"]],[30,36,["G450"]],[36,37,["G846"]],[37,38,["G1537"]],[38,40,["G3498"]]]},{"k":27555,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,7,["G386"]],[7,10,["G3498"]],[10,11,["G3588","G3303"]],[11,12,["G5512"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G2036"]],[15,18,["G191"]],[18,19,["G4675"]],[19,20,["G3825"]],[20,21,["G4012"]],[21,22,["G5127"]],[22,23,[]]]},{"k":27556,"v":[[0,0,["(G2532)"]],[0,1,["G3779"]],[1,2,["G3972"]],[2,3,["G1831"]],[3,4,["G1537"]],[4,5,["G3319"]],[5,6,["G846"]]]},{"k":27557,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G435"]],[3,4,["G2853"]],[4,6,["G846"]],[6,7,["G2532"]],[7,8,["G4100"]],[8,9,["G1722"]],[9,11,["G3739"]],[11,13,["G1354"]],[13,14,["G3588"]],[14,15,["G698"]],[15,16,["G2532"]],[16,18,["G1135"]],[18,19,["G3686"]],[19,20,["G1152"]],[20,21,["G2532"]],[21,22,["G2087"]],[22,23,["G4862"]],[23,24,["G846"]]]},{"k":27558,"v":[[0,0,["(G1161)"]],[0,1,["G3326"]],[1,3,["G5023"]],[3,4,["G3972"]],[4,5,["G5563"]],[5,6,["G1537"]],[6,7,["G116"]],[7,9,["G2064"]],[9,10,["G1519"]],[10,11,["G2882"]]]},{"k":27559,"v":[[0,1,["G2532"]],[1,2,["G2147"]],[2,4,["G5100"]],[4,5,["G2453"]],[5,6,["G3686"]],[6,7,["G207"]],[7,8,["G1085"]],[8,10,["G4193"]],[10,11,["G4373"]],[11,12,["G2064"]],[12,13,["G575"]],[13,14,["G2482"]],[14,15,["G2532"]],[15,16,["G848"]],[16,17,["G1135"]],[17,18,["G4252"]],[18,20,["G1223"]],[20,21,["G2804"]],[21,23,["G1299"]],[23,24,["G3956"]],[24,25,["G2453"]],[25,27,["G5563"]],[27,28,["G1537"]],[28,29,["G4516"]],[29,31,["G4334"]],[31,33,["G846"]]]},{"k":27560,"v":[[0,1,["G2532"]],[1,4,["G1511"]],[4,6,["G3588"]],[6,8,["G3673"]],[8,10,["G3306"]],[10,11,["G3844"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G2038"]],[14,15,["G1063"]],[15,18,["G5078"]],[18,20,["G2258"]],[20,21,["G4635"]]]},{"k":27561,"v":[[0,1,["G1161"]],[1,3,["G1256"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G4864"]],[6,7,["G2596","G3956"]],[7,8,["G4521"]],[8,9,["G5037"]],[9,10,["G3982"]],[10,12,["G2453"]],[12,13,["G2532"]],[13,15,["G1672"]]]},{"k":27562,"v":[[0,1,["G1161"]],[1,2,["G5613","(G5037)"]],[2,3,["G4609"]],[3,4,["G2532"]],[4,5,["G5095"]],[5,7,["G2718"]],[7,8,["G575"]],[8,9,["G3109"]],[9,10,["G3972"]],[10,12,["G4912"]],[12,14,["G3588"]],[14,15,["G4151"]],[15,17,["G1263"]],[17,19,["G3588"]],[19,20,["G2453"]],[20,22,["G2424"]],[22,24,["G5547"]]]},{"k":27563,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G498"]],[5,6,["G2532"]],[6,7,["G987"]],[7,9,["G1621"]],[9,11,["G2440"]],[11,13,["G2036"]],[13,14,["G4314"]],[14,15,["G846"]],[15,16,["G5216"]],[16,17,["G129"]],[17,19,["G1909"]],[19,21,["G5216"]],[21,22,["G2776"]],[22,23,["G1473"]],[23,25,["G2513"]],[25,26,["G575"]],[26,27,["G3568"]],[27,30,["G4198"]],[30,31,["G1519"]],[31,32,["G3588"]],[32,33,["G1484"]]]},{"k":27564,"v":[[0,1,["G2532"]],[1,3,["G3327"]],[3,4,["G1564"]],[4,6,["G2064"]],[6,7,["G1519"]],[7,9,["G5100"]],[9,11,["G3614"]],[11,12,["G3686"]],[12,13,["G2459"]],[13,16,["G4576"]],[16,17,["G2316"]],[17,18,["G3739"]],[18,19,["G3614"]],[19,21,["G2258","G4927"]],[21,23,["G3588"]],[23,24,["G4864"]]]},{"k":27565,"v":[[0,1,["G1161"]],[1,2,["G2921"]],[2,3,["G3588"]],[3,8,["G752"]],[8,9,["G4100"]],[9,11,["G3588"]],[11,12,["G2962"]],[12,13,["G4862"]],[13,14,["G3650"]],[14,15,["G848"]],[15,16,["G3624"]],[16,17,["G2532"]],[17,18,["G4183"]],[18,20,["G3588"]],[20,21,["G2881"]],[21,22,["G191"]],[22,23,["G4100"]],[23,24,["G2532"]],[24,26,["G907"]]]},{"k":27566,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,4,["G2962"]],[4,6,["G3972"]],[6,7,["G1722"]],[7,9,["G3571"]],[9,10,["G1223"]],[10,12,["G3705"]],[12,15,["G5399","G3361"]],[15,16,["G235"]],[16,17,["G2980"]],[17,18,["G2532"]],[18,22,["G4623","G3361"]]]},{"k":27567,"v":[[0,1,["G1360"]],[1,2,["G1473"]],[2,3,["G1510"]],[3,4,["G3326"]],[4,5,["G4675"]],[5,6,["G2532"]],[6,8,["G3762"]],[8,11,["G2007"]],[11,12,["G4671"]],[12,14,["G2559"]],[14,15,["G4571"]],[15,16,["G1360"]],[16,17,["G3427"]],[17,18,["G2076"]],[18,19,["G4183"]],[19,20,["G2992"]],[20,21,["G1722"]],[21,22,["G5026"]],[22,23,["G4172"]]]},{"k":27568,"v":[[0,1,["G5037"]],[1,3,["G2523"]],[3,6,["G1763"]],[6,7,["G2532"]],[7,8,["G1803"]],[8,9,["G3376"]],[9,10,["G1321"]],[10,11,["G3588"]],[11,12,["G3056"]],[12,14,["G2316"]],[14,15,["G1722"]],[15,16,["G846"]]]},{"k":27569,"v":[[0,1,["G1161"]],[1,3,["G1058"]],[3,6,["G445"]],[6,8,["G882"]],[8,9,["G3588"]],[9,10,["G2453"]],[10,16,["G2721","G3661"]],[16,17,["G3972"]],[17,18,["G2532"]],[18,19,["G71"]],[19,20,["G846"]],[20,21,["G1909"]],[21,22,["G3588"]],[22,24,["G968"]]]},{"k":27570,"v":[[0,1,["G3004"]],[1,2,["G3778"]],[2,4,["G374"]],[4,5,["G444"]],[5,7,["G4576"]],[7,8,["G2316"]],[8,9,["G3844"]],[9,11,["G3588"]],[11,12,["G3551"]]]},{"k":27571,"v":[[0,1,["G1161"]],[1,3,["G3972"]],[3,6,["G3195"]],[6,8,["G455"]],[8,10,["G4750"]],[10,11,["G1058"]],[11,12,["G2036"]],[12,13,["G4314"]],[13,14,["G3588"]],[14,15,["G2453"]],[15,16,["G1487"]],[16,17,["(G3303","G3767)"]],[17,18,["G2258"]],[18,19,["(G5100)"]],[19,22,["G92"]],[22,23,["G2228"]],[23,24,["G4190"]],[24,25,["G4467"]],[25,26,["G5599"]],[26,28,["G2453"]],[28,29,["G3056"]],[29,35,["G430","G302"]],[35,36,["G5216"]]]},{"k":27572,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G2076"]],[4,6,["G2213"]],[6,7,["G4012"]],[7,8,["G3056"]],[8,9,["G2532"]],[9,10,["G3686"]],[10,11,["G2532"]],[11,12,["(G2596)"]],[12,13,["G5209"]],[13,14,["G3551"]],[14,15,["G3700"]],[15,16,["G846"]],[16,19,["G1063"]],[19,20,["G1473"]],[20,21,["G1014"]],[21,22,["G1511"]],[22,23,["G3756"]],[23,24,["G2923"]],[24,26,["G5130"]],[26,27,[]]]},{"k":27573,"v":[[0,1,["G2532"]],[1,3,["G556"]],[3,4,["G846"]],[4,5,["G575"]],[5,6,["G3588"]],[6,8,["G968"]]]},{"k":27574,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G1672"]],[4,5,["G1949"]],[5,6,["G4988"]],[6,7,["G3588"]],[7,12,["G752"]],[12,14,["G5180"]],[14,16,["G1715"]],[16,17,["G3588"]],[17,19,["G968"]],[19,20,["G2532"]],[20,21,["G1058"]],[21,23,["G3199"]],[23,24,["G3762"]],[24,27,["G5130"]]]},{"k":27575,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,5,["G4357"]],[5,7,["G2089"]],[7,10,["G2425","G2250"]],[10,15,["G657"]],[15,17,["G3588"]],[17,18,["G80"]],[18,21,["G1602"]],[21,22,["G1519"]],[22,23,["G4947"]],[23,24,["G2532"]],[24,25,["G4862"]],[25,26,["G846"]],[26,27,["G4252"]],[27,28,["G2532"]],[28,29,["G207"]],[29,31,["G2751"]],[31,33,["G2776"]],[33,34,["G1722"]],[34,35,["G2747"]],[35,36,["G1063"]],[36,38,["G2192"]],[38,40,["G2171"]]]},{"k":27576,"v":[[0,1,["G1161"]],[1,3,["G2658"]],[3,4,["G1519"]],[4,5,["G2181"]],[5,8,["G2548","G2641"]],[8,9,["G847"]],[9,10,["G1161"]],[10,11,["G848"]],[11,13,["G1525"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G4864"]],[16,18,["G1256"]],[18,20,["G3588"]],[20,21,["G2453"]]]},{"k":27577,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G2065"]],[3,6,["G3306"]],[6,7,["G4119"]],[7,8,["G5550"]],[8,9,["G3844"]],[9,10,["G846"]],[10,12,["G1962"]],[12,13,["G3756"]]]},{"k":27578,"v":[[0,1,["G235"]],[1,4,["G657","G846"]],[4,5,["G2036"]],[5,6,["G3165"]],[6,7,["G1163"]],[7,10,["G3843"]],[10,11,["G4160"]],[11,13,["G1859"]],[13,15,["G2064"]],[15,16,["G1519"]],[16,17,["G2414"]],[17,18,["G1161"]],[18,21,["G344"]],[21,22,["G3825"]],[22,23,["G4314"]],[23,24,["G5209"]],[24,26,["G2316"]],[26,27,["G2309"]],[27,28,["G2532"]],[28,30,["G321"]],[30,31,["G575"]],[31,32,["G2181"]]]},{"k":27579,"v":[[0,1,["G2532"]],[1,5,["G2718"]],[5,6,["G1519"]],[6,7,["G2542"]],[7,10,["G305"]],[10,11,["G2532"]],[11,12,["G782"]],[12,13,["G3588"]],[13,14,["G1577"]],[14,17,["G2597"]],[17,18,["G1519"]],[18,19,["G490"]]]},{"k":27580,"v":[[0,1,["G2532"]],[1,5,["G4160"]],[5,6,["G5100"]],[6,7,["G5550"]],[7,10,["G1831"]],[10,13,["G1330"]],[13,15,["G3588"]],[15,16,["G5561"]],[16,18,["G1054"]],[18,19,["G2532"]],[19,20,["G5435"]],[20,22,["G2517"]],[22,23,["G1991"]],[23,24,["G3956"]],[24,25,["G3588"]],[25,26,["G3101"]]]},{"k":27581,"v":[[0,1,["G1161"]],[1,3,["G5100"]],[3,4,["G2453"]],[4,5,["G3686"]],[5,6,["G625"]],[6,7,["G1085"]],[7,9,["G221"]],[9,11,["G3052"]],[11,12,["G435"]],[12,13,["(G5607)"]],[13,14,["G1415"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G1124"]],[17,18,["G2658"]],[18,19,["G1519"]],[19,20,["G2181"]]]},{"k":27582,"v":[[0,2,["G3778"]],[2,3,["G2258"]],[3,4,["G2727"]],[4,6,["G3588"]],[6,7,["G3598"]],[7,9,["G3588"]],[9,10,["G2962"]],[10,11,["G2532"]],[11,13,["G2204"]],[13,15,["G3588"]],[15,16,["G4151"]],[16,18,["G2980"]],[18,19,["G2532"]],[19,20,["G1321"]],[20,21,["G199"]],[21,23,["G3588"]],[23,24,["G4012"]],[24,25,["G3588"]],[25,26,["G2962"]],[26,27,["G1987"]],[27,28,["G3440"]],[28,29,["G3588"]],[29,30,["G908"]],[30,32,["G2491"]]]},{"k":27583,"v":[[0,1,["G5037"]],[1,2,["G3778"]],[2,3,["G756"]],[3,6,["G3955"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G4864","(G1161)"]],[9,10,["G846"]],[10,12,["G207"]],[12,13,["G2532"]],[13,14,["G4252"]],[14,16,["G191"]],[16,20,["G4355","G846"]],[20,22,["G2532"]],[22,23,["G1620"]],[23,25,["G846"]],[25,26,["G3588"]],[26,27,["G3598"]],[27,29,["G2316"]],[29,31,["G197"]]]},{"k":27584,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G1014"]],[5,7,["G1330"]],[7,8,["G1519"]],[8,9,["G882"]],[9,10,["G3588"]],[10,11,["G80"]],[11,12,["G1125"]],[12,13,["G4389"]],[13,14,["G3588"]],[14,15,["G3101"]],[15,17,["G588"]],[17,18,["G846"]],[18,19,["G3739"]],[19,23,["G3854"]],[23,24,["G4820"]],[24,26,["G4183"]],[26,29,["G4100"]],[29,30,["G1223"]],[30,31,["G5485"]]]},{"k":27585,"v":[[0,1,["G1063"]],[1,3,["G2159"]],[3,4,["G1246"]],[4,5,["G3588"]],[5,6,["G2453"]],[6,9,["G1219"]],[9,10,["G1925"]],[10,11,["G1223"]],[11,12,["G3588"]],[12,13,["G1124"]],[13,15,["G2424"]],[15,16,["G1511"]],[16,17,["G5547"]]]},{"k":27586,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,8,["G625"]],[8,9,["G1511"]],[9,10,["G1722"]],[10,11,["G2882"]],[11,12,["G3972"]],[12,15,["G1330"]],[15,16,["G3588"]],[16,17,["G510"]],[17,18,["G3313"]],[18,19,["G2064"]],[19,20,["G1519"]],[20,21,["G2181"]],[21,22,["G2532"]],[22,23,["G2147"]],[23,24,["G5100"]],[24,25,["G3101"]]]},{"k":27587,"v":[[0,2,["G2036"]],[2,3,["G4314"]],[3,4,["G846"]],[4,5,["(G1487)"]],[5,7,["G2983"]],[7,9,["G40"]],[9,10,["G4151"]],[10,13,["G4100"]],[13,14,["G1161"]],[14,15,["G3588"]],[15,16,["G2036"]],[16,17,["G4314"]],[17,18,["G846"]],[18,24,["G235","G3761"]],[24,25,["G191"]],[25,26,["G1487"]],[26,28,["G2076"]],[28,30,["G40"]],[30,31,["G4151"]]]},{"k":27588,"v":[[0,1,["G5037"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G1519"]],[6,7,["G5101"]],[7,8,["G3767"]],[8,11,["G907"]],[11,12,["G1161"]],[12,13,["G3588"]],[13,14,["G2036"]],[14,15,["G1519"]],[15,16,["G2491"]],[16,17,["G908"]]]},{"k":27589,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G3972"]],[3,4,["G2491"]],[4,5,["G3303"]],[5,6,["G907"]],[6,9,["G908"]],[9,11,["G3341"]],[11,12,["G3004"]],[12,14,["G3588"]],[14,15,["G2992"]],[15,16,["G2443"]],[16,19,["G4100"]],[19,20,["G1519"]],[20,24,["G2064"]],[24,25,["G3326"]],[25,26,["G846"]],[26,28,["G5123"]],[28,29,["G1519"]],[29,30,["G5547"]],[30,31,["G2424"]]]},{"k":27590,"v":[[0,1,["G1161"]],[1,3,["G191"]],[3,7,["G907"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G3686"]],[10,12,["G3588"]],[12,13,["G2962"]],[13,14,["G2424"]]]},{"k":27591,"v":[[0,1,["G2532"]],[1,3,["G3972"]],[3,5,["G2007"]],[5,7,["G5495"]],[7,9,["G846"]],[9,10,["G3588"]],[10,11,["G40"]],[11,12,["G4151"]],[12,13,["G2064"]],[13,14,["G1909"]],[14,15,["G846"]],[15,16,["G5037"]],[16,18,["G2980"]],[18,20,["G1100"]],[20,21,["G2532"]],[21,22,["G4395"]]]},{"k":27592,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,4,["G435"]],[4,5,["G2258"]],[5,6,["G5616"]],[6,7,["G1177"]]]},{"k":27593,"v":[[0,1,["G1161"]],[1,3,["G1525"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G4864"]],[6,9,["G3955"]],[9,13,["G1909"]],[13,14,["G5140"]],[14,15,["G3376"]],[15,16,["G1256"]],[16,17,["G2532"]],[17,18,["G3982"]],[18,20,["G3588"]],[20,21,["G4012"]],[21,22,["G3588"]],[22,23,["G932"]],[23,25,["G2316"]]]},{"k":27594,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G5100"]],[3,5,["G4645"]],[5,6,["G2532"]],[6,8,["G544"]],[8,11,["G2551"]],[11,14,["G3598"]],[14,15,["G1799"]],[15,16,["G3588"]],[16,17,["G4128"]],[17,19,["G868"]],[19,20,["G575"]],[20,21,["G846"]],[21,23,["G873"]],[23,24,["G3588"]],[24,25,["G3101"]],[25,26,["G1256"]],[26,27,["G2596","G2250"]],[27,28,["G1722"]],[28,29,["G3588"]],[29,30,["G4981"]],[30,32,["G5100"]],[32,33,["G5181"]]]},{"k":27595,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,3,["G1096"]],[3,7,["G1909"]],[7,8,["G1417"]],[8,9,["G2094"]],[9,11,["G5620"]],[11,12,["G3956"]],[12,15,["G2730"]],[15,17,["G773"]],[17,18,["G191"]],[18,19,["G3588"]],[19,20,["G3056"]],[20,22,["G3588"]],[22,23,["G2962"]],[23,24,["G2424"]],[24,25,["G5037"]],[25,26,["G2453"]],[26,27,["G2532"]],[27,28,["G1672"]]]},{"k":27596,"v":[[0,1,["G5037"]],[1,2,["G2316"]],[2,3,["G4160"]],[3,4,["G3756","G5177"]],[4,5,["G1411"]],[5,6,["G1223"]],[6,7,["G3588"]],[7,8,["G5495"]],[8,10,["G3972"]]]},{"k":27597,"v":[[0,2,["G5620","(G2532)"]],[2,3,["G575"]],[3,4,["G846"]],[4,5,["G5559"]],[5,7,["G2018"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,10,["G770"]],[10,11,["G4676"]],[11,12,["G2228"]],[12,13,["G4612"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G3554"]],[16,17,["G525"]],[17,18,["G575"]],[18,19,["G846"]],[19,20,["G5037"]],[20,21,["G3588"]],[21,22,["G4190"]],[22,23,["G4151"]],[23,24,["G1831"]],[24,26,["G575"]],[26,27,["G846"]]]},{"k":27598,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G575"]],[3,4,["G3588"]],[4,5,["G4022"]],[5,6,["G2453"]],[6,7,["G1845"]],[7,9,["G2021"]],[9,12,["G3687"]],[12,13,["G1909"]],[13,16,["G2192"]],[16,17,["G4190"]],[17,18,["G4151"]],[18,19,["G3588"]],[19,20,["G3686"]],[20,22,["G3588"]],[22,23,["G2962"]],[23,24,["G2424"]],[24,25,["G3004"]],[25,27,["G3726"]],[27,28,["G5209"]],[28,30,["G2424"]],[30,31,["G3739"]],[31,32,["G3972"]],[32,33,["G2784"]]]},{"k":27599,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G2033"]],[4,5,["G5207"]],[5,8,["G4630"]],[8,10,["G2453"]],[10,15,["G749"]],[15,17,["G4160"]],[17,18,["G5124"]]]},{"k":27600,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4190"]],[3,4,["G4151"]],[4,5,["G611"]],[5,7,["G2036"]],[7,8,["G2424"]],[8,10,["G1097"]],[10,11,["G2532"]],[11,12,["G3972"]],[12,14,["G1987"]],[14,15,["G1161"]],[15,16,["G5101"]],[16,17,["G2075"]],[17,18,["G5210"]]]},{"k":27601,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G444"]],[3,4,["G1722"]],[4,5,["G3739"]],[5,6,["G3588"]],[6,7,["G4190"]],[7,8,["G4151"]],[8,9,["G2258"]],[9,10,["G2177"]],[10,11,["G1909"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G2634"]],[14,15,["G846"]],[15,17,["G2480"]],[17,18,["G2596"]],[18,19,["G846"]],[19,21,["G5620"]],[21,23,["G1628"]],[23,25,["G1537"]],[25,26,["G1565"]],[26,27,["G3624"]],[27,28,["G1131"]],[28,29,["G2532"]],[29,30,["G5135"]]]},{"k":27602,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,3,["G1096"]],[3,4,["G1110"]],[4,6,["G3956"]],[6,8,["G2453"]],[8,9,["G2532"]],[9,10,["G1672"]],[10,11,["G5037"]],[11,12,["G2730"]],[12,14,["G2181"]],[14,15,["G2532"]],[15,16,["G5401"]],[16,17,["G1968"]],[17,18,["G1909"]],[18,19,["G846"]],[19,20,["G3956"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G3686"]],[23,25,["G3588"]],[25,26,["G2962"]],[26,27,["G2424"]],[27,29,["G3170"]]]},{"k":27603,"v":[[0,1,["G5037"]],[1,2,["G4183"]],[2,4,["G4100"]],[4,5,["G2064"]],[5,7,["G1843"]],[7,8,["G2532"]],[8,9,["G312"]],[9,10,["G848"]],[10,11,["G4234"]]]},{"k":27604,"v":[[0,0,["(G1161)"]],[0,1,["G2425"]],[1,6,["G4238"]],[6,8,["G4021"]],[8,12,["G4851","G976"]],[12,14,["G2618"]],[14,16,["G1799"]],[16,17,["G3956"]],[17,19,["G2532"]],[19,21,["G4860"]],[21,22,["G3588"]],[22,23,["G5092"]],[23,25,["G846"]],[25,26,["G2532"]],[26,27,["G2147"]],[27,30,["G4002","G3461"]],[30,33,["G694"]]]},{"k":27605,"v":[[0,1,["G3779"]],[1,2,["G2596","G2904"]],[2,3,["G837"]],[3,4,["G3588"]],[4,5,["G3056"]],[5,7,["G2962"]],[7,8,["G2532"]],[8,9,["G2480"]]]},{"k":27606,"v":[[0,0,["(G1161)"]],[0,1,["G5613"]],[1,3,["G5023"]],[3,5,["G4137"]],[5,6,["G3972"]],[6,7,["G5087"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G4151"]],[10,15,["G1330"]],[15,16,["G3109"]],[16,17,["G2532"]],[17,18,["G882"]],[18,20,["G4198"]],[20,21,["G1519"]],[21,22,["G2419"]],[22,23,["G2036"]],[23,25,["G3165"]],[25,27,["G1096"]],[27,28,["G1563"]],[28,29,["G3165"]],[29,30,["G1163"]],[30,31,["G2532"]],[31,32,["G1492"]],[32,33,["G4516"]]]},{"k":27607,"v":[[0,1,["G1161"]],[1,3,["G649"]],[3,4,["G1519"]],[4,5,["G3109"]],[5,6,["G1417"]],[6,10,["G1247"]],[10,12,["G846"]],[12,13,["G5095"]],[13,14,["G2532"]],[14,15,["G2037"]],[15,17,["G846"]],[17,19,["G1907"]],[19,20,["G1519"]],[20,21,["G773"]],[21,24,["G5550"]]]},{"k":27608,"v":[[0,1,["G1161"]],[1,3,["G2596","G1565"]],[3,4,["G2540"]],[4,6,["G1096"]],[6,7,["G3756"]],[7,8,["G3641"]],[8,9,["G5017"]],[9,10,["G4012"]],[10,12,["G3598"]]]},{"k":27609,"v":[[0,1,["G1063"]],[1,3,["G5100"]],[3,5,["G3686"]],[5,6,["G1216"]],[6,8,["G695"]],[8,10,["G4160"]],[10,11,["G693"]],[11,12,["G3485"]],[12,14,["G735"]],[14,15,["G3930"]],[15,16,["G3756"]],[16,17,["G3641"]],[17,18,["G2039"]],[18,20,["G3588"]],[20,21,["G5079"]]]},{"k":27610,"v":[[0,1,["G3739"]],[1,4,["G4867"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G2040"]],[7,8,["G4012"]],[8,10,["G5108"]],[10,12,["G2036"]],[12,13,["G435"]],[13,15,["G1987"]],[15,16,["G3754"]],[16,17,["G1537"]],[17,18,["G5026"]],[18,19,["G2039"]],[19,21,["G2076"]],[21,22,["G2257"]],[22,23,["G2142"]]]},{"k":27611,"v":[[0,1,["G2532"]],[1,3,["G2334"]],[3,4,["G2532"]],[4,5,["G191"]],[5,6,["G3754"]],[6,7,["G3756"]],[7,8,["G3440"]],[8,10,["G2181"]],[10,11,["G235"]],[11,12,["G4975"]],[12,14,["G3956"]],[14,15,["G773"]],[15,16,["G3778"]],[16,17,["G3972"]],[17,19,["G3982"]],[19,22,["G3179"]],[22,23,["G2425"]],[23,24,["G3793"]],[24,25,["G3004"]],[25,26,["G3754"]],[26,28,["G1526"]],[28,29,["G3756"]],[29,30,["G2316"]],[30,31,["G3588"]],[31,33,["G1096"]],[33,34,["G1223"]],[34,35,["G5495"]]]},{"k":27612,"v":[[0,2,["(G1161)"]],[2,3,["G3756"]],[3,4,["G3440"]],[4,5,["G5124"]],[5,6,["G2254"]],[6,7,["G3313"]],[7,10,["G2793"]],[10,15,["G2064","G1519","G557"]],[15,16,["G235"]],[16,17,["G2532"]],[17,19,["G3588"]],[19,20,["G2411"]],[20,22,["G3588"]],[22,23,["G3173"]],[23,24,["G2299"]],[24,25,["G735"]],[25,28,["G1519","G3762","G3049"]],[28,29,["G1161"]],[29,30,["G848"]],[30,31,["G3168"]],[31,32,["G3195"]],[32,33,["(G2532)"]],[33,34,["G2507"]],[34,35,["G3739"]],[35,36,["G3650"]],[36,37,["G773"]],[37,38,["G2532"]],[38,39,["G3588"]],[39,40,["G3625"]],[40,41,["G4576"]]]},{"k":27613,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,8,["G1096"]],[8,9,["G4134"]],[9,11,["G2372"]],[11,12,["G2532"]],[12,14,["G2896"]],[14,15,["G3004"]],[15,16,["G3173"]],[16,18,["G735"]],[18,21,["G2180"]]]},{"k":27614,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3650"]],[3,4,["G4172"]],[4,6,["G4130"]],[6,8,["G4799"]],[8,9,["G5037"]],[9,11,["G4884"]],[11,12,["G1050"]],[12,13,["G2532"]],[13,14,["G708"]],[14,17,["G3110"]],[17,18,["G3972"]],[18,21,["G4898"]],[21,23,["G3729"]],[23,26,["G3661"]],[26,27,["G1519"]],[27,28,["G3588"]],[28,29,["G2302"]]]},{"k":27615,"v":[[0,1,["G1161"]],[1,3,["G3972"]],[3,4,["G1014"]],[4,7,["G1525"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G1218"]],[10,11,["G3588"]],[11,12,["G3101"]],[12,13,["G1439"]],[13,14,["G846"]],[14,15,["G3756"]]]},{"k":27616,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["(G2532)"]],[3,4,["G3588"]],[4,7,["G775"]],[7,9,["G5607"]],[9,10,["G846"]],[10,11,["G5384"]],[11,12,["G3992"]],[12,13,["G4314"]],[13,14,["G846"]],[14,15,["G3870"]],[15,20,["G3361"]],[20,21,["G1325"]],[21,22,["G1438"]],[22,23,["G1519"]],[23,24,["G3588"]],[24,25,["G2302"]]]},{"k":27617,"v":[[0,5,["G243","G3303","G3767","G2896"]],[5,7,["G243"]],[7,8,["G5100"]],[8,9,["G1063"]],[9,10,["G3588"]],[10,11,["G1577"]],[11,12,["G2258"]],[12,13,["G4797"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,17,["G4119"]],[17,18,["G1492"]],[18,19,["G3756"]],[19,20,["G5101","G1752"]],[20,24,["G4905"]]]},{"k":27618,"v":[[0,1,["G1161"]],[1,3,["G4264"]],[3,4,["G223"]],[4,6,["G1537"]],[6,7,["G3588"]],[7,8,["G3793"]],[8,9,["G3588"]],[9,10,["G2453"]],[10,13,["G4261","G846"]],[13,14,["G1161"]],[14,15,["G223"]],[15,16,["G2678"]],[16,18,["G3588"]],[18,19,["G5495"]],[19,21,["G2309"]],[21,25,["G626"]],[25,27,["G3588"]],[27,28,["G1218"]]]},{"k":27619,"v":[[0,1,["G1161"]],[1,4,["G1921"]],[4,5,["G3754"]],[5,7,["G2076"]],[7,9,["G2453"]],[9,13,["G1096","G5456","G3391","G1537","G3956"]],[13,17,["G5613","G1909"]],[17,18,["G1417"]],[18,19,["G5610"]],[19,21,["G2896"]],[21,22,["G3173"]],[22,24,["G735"]],[24,27,["G2180"]]]},{"k":27620,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1122"]],[4,6,["G2687"]],[6,7,["G3588"]],[7,8,["G3793"]],[8,10,["G5346"]],[10,12,["G435"]],[12,14,["G2180","(G1063)"]],[14,15,["G5101"]],[15,16,["G444"]],[16,17,["G2076"]],[17,19,["G3739"]],[19,20,["G1097"]],[20,21,["G3756"]],[21,24,["G3588"]],[24,25,["G4172"]],[25,28,["G2180"]],[28,29,["G5607"]],[29,31,["G3511"]],[31,33,["G3588"]],[33,34,["G3173"]],[34,35,["G2299"]],[35,36,["G735"]],[36,37,["G2532"]],[37,45,["G1356"]]]},{"k":27621,"v":[[0,2,["G3767"]],[2,5,["G5130"]],[5,9,["G5607","G368"]],[9,10,["G5209","(G2076)"]],[10,11,["G1163"]],[11,13,["G5225"]],[13,14,["G2687"]],[14,15,["G2532"]],[15,17,["G4238"]],[17,18,["G3367"]],[18,19,["G4312"]]]},{"k":27622,"v":[[0,1,["G1063"]],[1,4,["G71"]],[4,6,["G5128"]],[6,7,["G435"]],[7,10,["G3777"]],[10,13,["G2417"]],[13,14,["G3777"]],[14,16,["G987"]],[16,18,["G5216"]],[18,19,["G2299"]]]},{"k":27623,"v":[[0,1,["G3767"]],[1,2,["G1487","(G3303)"]],[2,3,["G1216"]],[3,4,["G2532"]],[4,5,["G3588"]],[5,6,["G5079"]],[6,9,["G4862"]],[9,10,["G846"]],[10,11,["G2192"]],[11,13,["G3056"]],[13,14,["G4314"]],[14,16,["G5100"]],[16,20,["G60","G71"]],[20,21,["G2532"]],[21,23,["G1526"]],[23,24,["G446"]],[24,27,["G1458"]],[27,29,["G240"]]]},{"k":27624,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G1934"]],[4,6,["G5100"]],[6,7,["G4012"]],[7,9,["G2087"]],[9,13,["G1956"]],[13,14,["G1722"]],[14,16,["G1772"]],[16,17,["G1577"]]]},{"k":27625,"v":[[0,1,["G1063"]],[1,5,["G2793"]],[5,6,["(G2532)"]],[6,10,["G1458"]],[10,11,["G4012"]],[11,13,["G4594"]],[13,14,["G4714"]],[14,16,["G5225"]],[16,17,["G3367"]],[17,18,["G158"]],[18,19,["G4012","G3739"]],[19,21,["G1410"]],[21,22,["G591"]],[22,24,["G3056"]],[24,26,["G5026"]],[26,27,["G4963"]]]},{"k":27626,"v":[[0,1,["G2532"]],[1,5,["G5023"]],[5,6,["G2036"]],[6,8,["G630"]],[8,9,["G3588"]],[9,10,["G1577"]]]},{"k":27627,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G2351"]],[4,6,["G3973"]],[6,7,["G3972"]],[7,9,["G4341"]],[9,11,["G3588"]],[11,12,["G3101"]],[12,13,["G2532"]],[13,14,["G782"]],[14,17,["G1831"]],[17,20,["G4198"]],[20,21,["G1519"]],[21,22,["G3109"]]]},{"k":27628,"v":[[0,1,["G1161"]],[1,6,["G1330"]],[6,7,["G1565"]],[7,8,["G3313"]],[8,9,["G2532"]],[9,11,["G3870"]],[11,12,["G846"]],[12,13,["G4183"]],[13,14,["G3056"]],[14,16,["G2064"]],[16,17,["G1519"]],[17,18,["G1671"]]]},{"k":27629,"v":[[0,1,["G5037"]],[1,3,["G4160"]],[3,4,["G5140"]],[4,5,["G3376"]],[5,7,["(G5259)"]],[7,8,["G3588"]],[8,9,["G2453"]],[9,12,["G1917","G1096"]],[12,13,["G846"]],[13,17,["G3195"]],[17,19,["G321"]],[19,20,["G1519"]],[20,21,["G4947"]],[21,23,["G1096","G1106"]],[23,25,["G5290"]],[25,26,["G1223"]],[26,27,["G3109"]]]},{"k":27630,"v":[[0,1,["G1161"]],[1,3,["G4902"]],[3,4,["G846"]],[4,5,["G891"]],[5,6,["G773"]],[6,7,["G4986"]],[7,9,["G961"]],[9,10,["G1161"]],[10,13,["G2331"]],[13,14,["G708"]],[14,15,["G2532"]],[15,16,["G4580"]],[16,17,["G2532"]],[17,18,["G1050"]],[18,20,["G1190"]],[20,21,["G2532"]],[21,22,["G5095"]],[22,23,["G1161"]],[23,25,["G774"]],[25,26,["G5190"]],[26,27,["G2532"]],[27,28,["G5161"]]]},{"k":27631,"v":[[0,1,["G3778"]],[1,3,["G4281"]],[3,4,["G3306"]],[4,6,["G2248"]],[6,7,["G1722"]],[7,8,["G5174"]]]},{"k":27632,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,4,["G1602"]],[4,5,["G575"]],[5,6,["G5375"]],[6,7,["G3326"]],[7,8,["G3588"]],[8,9,["G2250"]],[9,12,["G106"]],[12,13,["G2532"]],[13,14,["G2064"]],[14,15,["G4314"]],[15,16,["G846"]],[16,17,["G1519"]],[17,18,["G5174"]],[18,19,["G891"]],[19,20,["G4002"]],[20,21,["G2250"]],[21,22,["G3757"]],[22,24,["G1304"]],[24,25,["G2033"]],[25,26,["G2250"]]]},{"k":27633,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G3391"]],[4,7,["G3588"]],[7,8,["G4521"]],[8,10,["G3588"]],[10,11,["G3101"]],[11,13,["G4863"]],[13,15,["G2806"]],[15,16,["G740"]],[16,17,["G3972"]],[17,18,["G1256"]],[18,20,["G846"]],[20,21,["G3195"]],[21,23,["G1826"]],[23,25,["G3588"]],[25,26,["G1887"]],[26,27,["G5037"]],[27,28,["G3905"]],[28,30,["G3056"]],[30,31,["G3360"]],[31,32,["G3317"]]]},{"k":27634,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G2425"]],[4,5,["G2985"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,9,["G5253"]],[9,10,["G3757"]],[10,12,["G2258"]],[12,14,["G4863"]]]},{"k":27635,"v":[[0,1,["G1161"]],[1,3,["G2521"]],[3,4,["G1909"]],[4,6,["G2376"]],[6,8,["G5100"]],[8,10,["G3494"]],[10,11,["G3686"]],[11,12,["G2161"]],[12,15,["G2702"]],[15,17,["G901"]],[17,18,["G5258"]],[18,21,["G3972"]],[21,22,["(G1909)"]],[22,23,["G4119"]],[23,24,["G1256"]],[24,27,["G2702"]],[27,28,["G575"]],[28,29,["G5258"]],[29,31,["G4098"]],[31,32,["G2736"]],[32,33,["G575"]],[33,34,["G3588"]],[34,36,["G5152"]],[36,37,["G2532"]],[37,40,["G142"]],[40,41,["G3498"]]]},{"k":27636,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,4,["G2597"]],[4,7,["G1968"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G4843"]],[10,12,["G2036"]],[12,15,["G2350","G3361"]],[15,16,["G1063"]],[16,17,["G846"]],[17,18,["G5590"]],[18,19,["G2076"]],[19,20,["G1722"]],[20,21,["G846"]]]},{"k":27637,"v":[[0,1,["G1161"]],[1,7,["G305"]],[7,8,["G2532"]],[8,10,["G2806"]],[10,11,["G740"]],[11,12,["G2532"]],[12,13,["G1089"]],[13,14,["G5037"]],[14,15,["G3656"]],[15,18,["G1909","G2425"]],[18,20,["G891"]],[20,23,["G827"]],[23,24,["G3779"]],[24,26,["G1831"]]]},{"k":27638,"v":[[0,1,["G1161"]],[1,3,["G71"]],[3,4,["G3588"]],[4,6,["G3816"]],[6,7,["G2198"]],[7,8,["G2532"]],[8,10,["G3756"]],[10,12,["G3357"]],[12,13,["G3870"]]]},{"k":27639,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,4,["G4281"]],[4,5,["G1909"]],[5,6,["G4143"]],[6,8,["G321"]],[8,9,["G1519"]],[9,10,["G789"]],[10,11,["G1564"]],[11,12,["G3195"]],[12,15,["G353"]],[15,16,["G3972"]],[16,17,["G1063"]],[17,18,["G3779"]],[18,19,["G2258"]],[19,21,["G1299"]],[21,22,["G3195"]],[22,23,["G846"]],[23,26,["G3978"]]]},{"k":27640,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,4,["G4820"]],[4,6,["G2254"]],[6,7,["G1519"]],[7,8,["G789"]],[8,12,["G353","G846"]],[12,14,["G2064"]],[14,15,["G1519"]],[15,16,["G3412"]]]},{"k":27641,"v":[[0,4,["G2547","G636"]],[4,6,["G2658"]],[6,7,["G3588"]],[7,8,["G1966"]],[8,11,["G481"]],[11,12,["G5508"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G2087"]],[15,18,["G3846"]],[18,19,["G1519"]],[19,20,["G4544"]],[20,21,["G2532"]],[21,22,["G3306"]],[22,23,["G1722"]],[23,24,["G5175"]],[24,26,["G3588"]],[26,27,["G2192"]],[27,30,["G2064"]],[30,31,["G1519"]],[31,32,["G3399"]]]},{"k":27642,"v":[[0,1,["G1063"]],[1,2,["G3972"]],[2,4,["G2919"]],[4,7,["G3896"]],[7,8,["G2181"]],[8,9,["G3704"]],[9,10,["G846"]],[10,11,["G1096"]],[11,12,["G3361"]],[12,15,["G5551"]],[15,16,["G1722"]],[16,17,["G773"]],[17,18,["G1063"]],[18,20,["G4692"]],[20,21,["G1487"]],[21,23,["G2258"]],[23,24,["G1415"]],[24,26,["G846"]],[26,28,["G1096"]],[28,29,["G1519"]],[29,30,["G2414"]],[30,31,["G3588"]],[31,32,["G2250"]],[32,34,["G4005"]]]},{"k":27643,"v":[[0,1,["G1161"]],[1,2,["G575"]],[2,3,["G3399"]],[3,5,["G3992"]],[5,6,["G1519"]],[6,7,["G2181"]],[7,9,["G3333"]],[9,10,["G3588"]],[10,11,["G4245"]],[11,13,["G3588"]],[13,14,["G1577"]]]},{"k":27644,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,5,["G3854"]],[5,6,["G4314"]],[6,7,["G846"]],[7,9,["G2036"]],[9,11,["G846"]],[11,12,["G5210"]],[12,13,["G1987"]],[13,14,["G575"]],[14,16,["G4413"]],[16,17,["G2250"]],[17,18,["G575","G3739"]],[18,20,["G1910"]],[20,21,["G1519"]],[21,22,["G773"]],[22,25,["G4459"]],[25,28,["G1096"]],[28,29,["G3326"]],[29,30,["G5216"]],[30,32,["G3956"]],[32,33,["G5550"]]]},{"k":27645,"v":[[0,1,["G1398"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G3326"]],[4,5,["G3956"]],[5,8,["G5012"]],[8,9,["G2532"]],[9,11,["G4183"]],[11,12,["G1144"]],[12,13,["G2532"]],[13,14,["G3986"]],[14,16,["G4819"]],[16,17,["G3427"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,22,["G1917"]],[22,24,["G3588"]],[24,25,["G2453"]]]},{"k":27646,"v":[[0,2,["G5613"]],[2,5,["G5288"]],[5,6,["G3762"]],[6,9,["G4851"]],[9,14,["G312"]],[14,15,["G5213"]],[15,16,["G2532"]],[16,18,["G1321"]],[18,19,["G5209"]],[19,20,["G1219"]],[20,21,["G2532"]],[21,25,["G2596","G3624"]]]},{"k":27647,"v":[[0,1,["G1263"]],[1,2,["G5037"]],[2,5,["G2453"]],[5,6,["G2532"]],[6,10,["G1672"]],[10,11,["G3341"]],[11,12,["G1519"]],[12,13,["G2316"]],[13,14,["G2532"]],[14,15,["G4102"]],[15,16,["G1519"]],[16,17,["G2257"]],[17,18,["G2962"]],[18,19,["G2424"]],[19,20,["G5547"]]]},{"k":27648,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,3,["G2400"]],[3,4,["G1473"]],[4,5,["G4198"]],[5,6,["G1210"]],[6,8,["G3588"]],[8,9,["G4151"]],[9,10,["G1519"]],[10,11,["G2419"]],[11,12,["G3361"]],[12,13,["G1492"]],[13,18,["G4876"]],[18,19,["G3427"]],[19,20,["G1722","G846"]]]},{"k":27649,"v":[[0,1,["G4133"]],[1,2,["G3754"]],[2,3,["G3588"]],[3,4,["G40"]],[4,5,["G4151"]],[5,6,["G1263"]],[6,9,["G2596","G4172"]],[9,10,["G3004"]],[10,11,["G3754"]],[11,12,["G1199"]],[12,13,["G2532"]],[13,14,["G2347"]],[14,15,["G3306"]],[15,16,["G3165"]]]},{"k":27650,"v":[[0,1,["G235"]],[1,7,["G4160","G3056","G3762"]],[7,8,["G3761"]],[8,9,["G2192"]],[9,11,["G3450"]],[11,12,["G5590"]],[12,13,["G5093"]],[13,15,["G1683"]],[15,17,["G5613"]],[17,20,["G5048"]],[20,21,["G3450"]],[21,22,["G1408"]],[22,23,["G3326"]],[23,24,["G5479"]],[24,25,["G2532"]],[25,26,["G3588"]],[26,27,["G1248"]],[27,28,["G3739"]],[28,31,["G2983"]],[31,32,["G3844"]],[32,33,["G3588"]],[33,34,["G2962"]],[34,35,["G2424"]],[35,37,["G1263"]],[37,38,["G3588"]],[38,39,["G2098"]],[39,41,["G3588"]],[41,42,["G5485"]],[42,44,["G2316"]]]},{"k":27651,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,3,["G2400"]],[3,4,["G1473"]],[4,5,["G1492"]],[5,6,["G3754"]],[6,7,["G5210"]],[7,8,["G3956"]],[8,9,["G1722"]],[9,10,["G3739"]],[10,13,["G1330"]],[13,14,["G2784"]],[14,15,["G3588"]],[15,16,["G932"]],[16,18,["G2316"]],[18,20,["G3700"]],[20,21,["G3450"]],[21,22,["G4383"]],[22,24,["G3765"]]]},{"k":27652,"v":[[0,1,["G1352"]],[1,6,["G3143","G5213"]],[6,7,["G4594"]],[7,8,["G2250"]],[8,9,["G3754"]],[9,10,["G1473"]],[10,12,["G2513"]],[12,13,["G575"]],[13,14,["G3588"]],[14,15,["G129"]],[15,17,["G3956"]],[17,18,[]]]},{"k":27653,"v":[[0,1,["G1063"]],[1,4,["G3756"]],[4,5,["G5288"]],[5,6,["(G3361)"]],[6,7,["G312"]],[7,9,["G5213"]],[9,10,["G3956"]],[10,11,["G3588"]],[11,12,["G1012"]],[12,14,["G2316"]]]},{"k":27654,"v":[[0,2,["G4337"]],[2,3,["G3767"]],[3,5,["G1438"]],[5,6,["G2532"]],[6,8,["G3956"]],[8,9,["G3588"]],[9,10,["G4168"]],[10,11,["G1722"]],[11,13,["G3739"]],[13,14,["G3588"]],[14,15,["G40"]],[15,16,["G4151"]],[16,18,["G5087"]],[18,19,["G5209"]],[19,20,["G1985"]],[20,22,["G4165"]],[22,23,["G3588"]],[23,24,["G1577"]],[24,26,["G2316"]],[26,27,["G3739"]],[27,30,["G4046"]],[30,31,["G1223"]],[31,33,["G2398"]],[33,34,["G129"]]]},{"k":27655,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,3,["G1492"]],[3,4,["G5124"]],[4,5,["G3754"]],[5,6,["G3326"]],[6,7,["G3450"]],[7,8,["G867"]],[8,10,["G926"]],[10,11,["G3074"]],[11,13,["G1525"]],[13,14,["G1519"]],[14,15,["G5209"]],[15,16,["G3361"]],[16,17,["G5339"]],[17,18,["G3588"]],[18,19,["G4168"]]]},{"k":27656,"v":[[0,1,["G2532"]],[1,2,["G1537"]],[2,5,["G5216","G846"]],[5,7,["G435"]],[7,8,["G450"]],[8,9,["G2980"]],[9,11,["G1294"]],[11,14,["G645"]],[14,15,["G3101"]],[15,16,["G3694"]],[16,17,["G846"]]]},{"k":27657,"v":[[0,1,["G1352"]],[1,2,["G1127"]],[2,4,["G3421"]],[4,5,["G3754"]],[5,11,["G5148"]],[11,13,["G3973"]],[13,14,["G3756"]],[14,16,["G3560"]],[16,17,["G1538"]],[17,18,["G1520"]],[18,19,["G3571"]],[19,20,["G2532"]],[20,21,["G2250"]],[21,22,["G3326"]],[22,23,["G1144"]]]},{"k":27658,"v":[[0,1,["G2532"]],[1,2,["G3569"]],[2,3,["G80"]],[3,5,["G3908"]],[5,6,["G5209"]],[6,8,["G2316"]],[8,9,["G2532"]],[9,11,["G3588"]],[11,12,["G3056"]],[12,14,["G846"]],[14,15,["G5485"]],[15,18,["G1410"]],[18,22,["G2026"]],[22,23,["G2532"]],[23,25,["G1325"]],[25,26,["G5213"]],[26,28,["G2817"]],[28,29,["G1722"]],[29,30,["G3956"]],[30,34,["G37"]]]},{"k":27659,"v":[[0,3,["G1937"]],[3,5,["G3762"]],[5,6,["G694"]],[6,7,["G2228"]],[7,8,["G5553"]],[8,9,["G2228"]],[9,10,["G2441"]]]},{"k":27660,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,4,["G1097"]],[4,5,["G3754"]],[5,6,["G3778"]],[6,7,["G5495"]],[7,9,["G5256"]],[9,11,["G3450"]],[11,12,["G5532"]],[12,13,["G2532"]],[13,17,["G5607"]],[17,18,["G3326"]],[18,19,["G1700"]]]},{"k":27661,"v":[[0,3,["G5263"]],[3,4,["G5213"]],[4,6,["G3956"]],[6,8,["G3754"]],[8,9,["G3779"]],[9,10,["G2872"]],[10,12,["G1163"]],[12,14,["G482"]],[14,15,["G3588"]],[15,16,["G770"]],[16,17,["G5037"]],[17,19,["G3421"]],[19,20,["G3588"]],[20,21,["G3056"]],[21,23,["G3588"]],[23,24,["G2962"]],[24,25,["G2424"]],[25,26,["G3754"]],[26,27,["G848"]],[27,28,["G2036"]],[28,30,["G2076"]],[30,31,["G3123"]],[31,32,["G3107"]],[32,34,["G1325"]],[34,35,["G2228"]],[35,37,["G2983"]]]},{"k":27662,"v":[[0,1,["G2532"]],[1,5,["G5023"]],[5,6,["G2036"]],[6,9,["G5087","G846","G1119"]],[9,11,["G4336"]],[11,12,["G4862"]],[12,13,["G846"]],[13,14,["G3956"]]]},{"k":27663,"v":[[0,1,["G1161"]],[1,5,["G1096","G2425","G2805","G3956"]],[5,6,["G2532"]],[6,7,["G1968"]],[7,8,["G1909"]],[8,9,["G3972"]],[9,10,["G5137"]],[10,12,["G2705"]],[12,13,["G846"]]]},{"k":27664,"v":[[0,1,["G3600"]],[1,4,["G3122"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G3056"]],[7,8,["G3739"]],[8,10,["G2046"]],[10,11,["G3754"]],[11,13,["G3195"]],[13,14,["G2334"]],[14,15,["G848"]],[15,16,["G4383"]],[16,18,["G3765"]],[18,19,["G1161"]],[19,21,["G4311"]],[21,22,["G846"]],[22,23,["G1519"]],[23,24,["G3588"]],[24,25,["G4143"]]]},{"k":27665,"v":[[0,1,["G1161"]],[1,2,["(G5613)"]],[2,5,["G1096"]],[5,8,["G2248"]],[8,10,["G645"]],[10,11,["G575"]],[11,12,["G846"]],[12,15,["G321"]],[15,17,["G2064"]],[17,21,["G2113"]],[21,22,["G1519"]],[22,23,["G2972"]],[23,24,["G1161"]],[24,25,["G3588"]],[25,27,["G1836"]],[27,28,["G1519"]],[28,29,["G4499"]],[29,32,["G2547"]],[32,33,["G1519"]],[33,34,["G3959"]]]},{"k":27666,"v":[[0,1,["G2532"]],[1,2,["G2147"]],[2,4,["G4143"]],[4,6,["G1276"]],[6,7,["G1519"]],[7,8,["G5403"]],[8,11,["G1910"]],[11,14,["G321"]]]},{"k":27667,"v":[[0,1,["G1161"]],[1,5,["G398"]],[5,6,["G2954"]],[6,7,["(G2532)"]],[7,8,["G2641"]],[8,9,["G846"]],[9,13,["G2176"]],[13,15,["G4126"]],[15,16,["G1519"]],[16,17,["G4947"]],[17,18,["G2532"]],[18,19,["G2609"]],[19,20,["G1519"]],[20,21,["G5184"]],[21,22,["G1063"]],[22,23,["G1566"]],[23,24,["G3588"]],[24,25,["G4143"]],[25,26,["G2258"]],[26,28,["G670"]],[28,30,["G1117"]]]},{"k":27668,"v":[[0,1,["G2532"]],[1,2,["G429"]],[2,3,["G3101"]],[3,5,["G1961"]],[5,6,["G847"]],[6,7,["G2033"]],[7,8,["G2250"]],[8,9,["G3748"]],[9,10,["G3004"]],[10,12,["G3972"]],[12,13,["G1223"]],[13,14,["G3588"]],[14,15,["G4151"]],[15,19,["G3361"]],[19,21,["G305"]],[21,22,["G1519"]],[22,23,["G2419"]]]},{"k":27669,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,3,["G2248"]],[3,4,["G1096"]],[4,5,["G1822"]],[5,7,["G2250"]],[7,9,["G1831"]],[9,13,["G4198"]],[13,16,["G3956"]],[16,21,["G4311","G2248"]],[21,22,["G4862"]],[22,23,["G1135"]],[23,24,["G2532"]],[24,25,["G5043"]],[25,26,["G2193"]],[26,29,["G1854"]],[29,31,["G3588"]],[31,32,["G4172"]],[32,33,["G2532"]],[33,36,["G5087","G1119"]],[36,37,["G1909"]],[37,38,["G3588"]],[38,39,["G123"]],[39,41,["G4336"]]]},{"k":27670,"v":[[0,1,["G2532"]],[1,7,["G782"]],[7,10,["G240"]],[10,13,["G1910","G1519","G4143"]],[13,14,["G1161"]],[14,15,["G1565"]],[15,16,["G5290"]],[16,18,["G1519","G2398"]]]},{"k":27671,"v":[[0,1,["G1161"]],[1,3,["G2249"]],[3,5,["G1274"]],[5,7,["G4144"]],[7,8,["G575"]],[8,9,["G5184"]],[9,11,["G2658"]],[11,12,["G1519"]],[12,13,["G4424"]],[13,14,["G2532"]],[14,15,["G782"]],[15,16,["G3588"]],[16,17,["G80"]],[17,19,["G3306"]],[19,20,["G3844"]],[20,21,["G846"]],[21,22,["G3391"]],[22,23,["G2250"]]]},{"k":27672,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1887"]],[3,10,["G4012","G3972"]],[10,11,["G1831"]],[11,13,["G2064"]],[13,14,["G1519"]],[14,15,["G2542"]],[15,16,["G2532"]],[16,18,["G1525"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G3624"]],[21,23,["G5376"]],[23,24,["G3588"]],[24,25,["G2099"]],[25,27,["G5607"]],[27,29,["G1537"]],[29,30,["G3588"]],[30,31,["G2033"]],[31,33,["G3306"]],[33,34,["G3844"]],[34,35,["G846"]]]},{"k":27673,"v":[[0,1,["G1161"]],[1,4,["G5129"]],[4,5,["G2258"]],[5,6,["G5064"]],[6,7,["G2364"]],[7,8,["G3933"]],[8,11,["G4395"]]]},{"k":27674,"v":[[0,1,["G1161"]],[1,3,["G2257"]],[3,4,["G1961"]],[4,6,["G4119"]],[6,7,["G2250"]],[7,10,["G2718"]],[10,11,["G575"]],[11,12,["G2449"]],[12,14,["G5100"]],[14,15,["G4396"]],[15,16,["G3686"]],[16,17,["G13"]]]},{"k":27675,"v":[[0,1,["G2532"]],[1,5,["G2064"]],[5,6,["G4314"]],[6,7,["G2248"]],[7,8,["(G2532)"]],[8,9,["G142"]],[9,10,["G3972"]],[10,11,["G2223"]],[11,12,["G5037"]],[12,13,["G1210"]],[13,15,["G848"]],[15,16,["G5495"]],[16,17,["G2532"]],[17,18,["G4228"]],[18,20,["G2036"]],[20,21,["G3592"]],[21,22,["G3004"]],[22,23,["G3588"]],[23,24,["G40"]],[24,25,["G4151"]],[25,26,["G3779"]],[26,28,["G3588"]],[28,29,["G2453"]],[29,30,["G1722"]],[30,31,["G2419"]],[31,32,["G1210"]],[32,33,["G3588"]],[33,34,["G435"]],[34,35,["G3739"]],[35,36,["G2076"]],[36,37,["G3778"]],[37,38,["G2223"]],[38,39,["G2532"]],[39,41,["G3860"]],[41,43,["G1519"]],[43,45,["G5495"]],[45,48,["G1484"]]]},{"k":27676,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,4,["G191"]],[4,6,["G5023"]],[6,7,["G5037"]],[7,8,["G2249"]],[8,9,["G2532"]],[9,13,["G1786"]],[13,14,["G3870"]],[14,15,["G846"]],[15,16,["G3361"]],[16,19,["G305"]],[19,20,["G1519"]],[20,21,["G2419"]]]},{"k":27677,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,3,["G611"]],[3,4,["G5101"]],[4,5,["G4160"]],[5,8,["G2799"]],[8,9,["G2532"]],[9,11,["G4919"]],[11,12,["G3450"]],[12,13,["G2588"]],[13,14,["G1063"]],[14,15,["G1473"]],[15,16,["G2192"]],[16,17,["G2093"]],[17,18,["G3756"]],[18,21,["G1210"]],[21,22,["G3440"]],[22,23,["G235"]],[23,24,["G2532"]],[24,26,["G599"]],[26,27,["G1519"]],[27,28,["G2419"]],[28,29,["G5228"]],[29,30,["G3588"]],[30,31,["G3686"]],[31,33,["G3588"]],[33,34,["G2962"]],[34,35,["G2424"]]]},{"k":27678,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G3361"]],[5,7,["G3982"]],[7,9,["G2270"]],[9,10,["G2036"]],[10,11,["G3588"]],[11,12,["G2307"]],[12,14,["G3588"]],[14,15,["G2962"]],[15,17,["G1096"]]]},{"k":27679,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,3,["G5025"]],[3,4,["G2250"]],[4,9,["G643"]],[9,12,["G305"]],[12,13,["G1519"]],[13,14,["G2419"]]]},{"k":27680,"v":[[0,1,["(G1161)"]],[1,2,["G4905"]],[2,3,["G4862"]],[3,4,["G2254"]],[4,5,["G2532"]],[5,8,["G3588"]],[8,9,["G3101"]],[9,10,["G575"]],[10,11,["G2542"]],[11,13,["G71"]],[13,16,["G5100"]],[16,17,["G3416"]],[17,19,["G2953"]],[19,21,["G744"]],[21,22,["G3101"]],[22,23,["G3844"]],[23,24,["G3739"]],[24,27,["G3579"]]]},{"k":27681,"v":[[0,1,["G1161"]],[1,3,["G2257"]],[3,5,["G1096"]],[5,6,["G1519"]],[6,7,["G2414"]],[7,8,["G3588"]],[8,9,["G80"]],[9,10,["G1209"]],[10,11,["G2248"]],[11,12,["G780"]]]},{"k":27682,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G1966"]],[4,5,["G3972"]],[5,7,["G1524"]],[7,8,["G4862"]],[8,9,["G2254"]],[9,10,["G4314"]],[10,11,["G2385"]],[11,12,["G5037"]],[12,13,["G3956"]],[13,14,["G3588"]],[14,15,["G4245"]],[15,17,["G3854"]]]},{"k":27683,"v":[[0,1,["G2532"]],[1,5,["G782"]],[5,6,["G846"]],[6,8,["G1834"]],[8,9,["G2596","G1520","G1538"]],[9,11,["G3739"]],[11,12,["G2316"]],[12,14,["G4160"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G1484"]],[17,18,["G1223"]],[18,19,["G848"]],[19,20,["G1248"]]]},{"k":27684,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G191"]],[4,7,["G1392"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,10,["G5037"]],[10,11,["G2036"]],[11,13,["G846"]],[13,15,["G2334"]],[15,16,["G80"]],[16,18,["G4214"]],[18,19,["G3461"]],[19,21,["G2453"]],[21,23,["G1526"]],[23,25,["G4100"]],[25,26,["G2532"]],[26,28,["G5225"]],[28,29,["G3956"]],[29,30,["G2207"]],[30,32,["G3588"]],[32,33,["G3551"]]]},{"k":27685,"v":[[0,1,["G1161"]],[1,4,["G2727"]],[4,5,["G4012"]],[5,6,["G4675"]],[6,7,["G3754"]],[7,9,["G1321"]],[9,10,["G3956"]],[10,12,["G2453"]],[12,13,["G3588"]],[13,15,["G2596"]],[15,16,["G3588"]],[16,17,["G1484"]],[17,19,["G646"]],[19,20,["G3475"]],[20,21,["G3004"]],[21,23,["G846"]],[23,25,["G3361"]],[25,27,["G4059"]],[27,29,["G5043"]],[29,30,["G3366"]],[30,32,["G4043"]],[32,34,["G3588"]],[34,35,["G1485"]]]},{"k":27686,"v":[[0,1,["G5101"]],[1,2,["G2076"]],[2,4,["G3767"]],[4,6,["G4128"]],[6,7,["G1163"]],[7,8,["G3843"]],[8,10,["G4905"]],[10,11,["G1063"]],[11,14,["G191"]],[14,15,["G3754"]],[15,18,["G2064"]]]},{"k":27687,"v":[[0,1,["G4160"]],[1,2,["G3767"]],[2,3,["G5124"]],[3,4,["G3739"]],[4,6,["G3004"]],[6,8,["G4671"]],[8,9,["G2254"]],[9,10,["G1526"]],[10,11,["G5064"]],[11,12,["G435"]],[12,14,["G2192"]],[14,16,["G2171"]],[16,17,["G1909"]],[17,18,["G1438"]]]},{"k":27688,"v":[[0,1,["G5128"]],[1,2,["G3880"]],[2,4,["G48"]],[4,6,["G4862"]],[6,7,["G846"]],[7,8,["G2532"]],[8,11,["G1159"]],[11,12,["G1909"]],[12,13,["G846"]],[13,14,["G2443"]],[14,17,["G3587"]],[17,19,["G2776"]],[19,20,["G2532"]],[20,21,["G3956"]],[21,23,["G1097"]],[23,24,["G3754"]],[24,27,["G3739"]],[27,30,["G2727"]],[30,31,["G4012"]],[31,32,["G4675"]],[32,33,["G2076"]],[33,34,["G3762"]],[34,35,["G235"]],[35,37,["G848"]],[37,39,["G2532"]],[39,41,["G4748"]],[41,43,["G5442"]],[43,44,["G3588"]],[44,45,["G3551"]]]},{"k":27689,"v":[[0,0,["(G1161)"]],[0,2,["G4012"]],[2,3,["G3588"]],[3,4,["G1484"]],[4,6,["G4100"]],[6,7,["G2249"]],[7,9,["G1989"]],[9,11,["G2919"]],[11,13,["G846"]],[13,14,["G5083"]],[14,15,["G3367"]],[15,17,["G5108"]],[17,18,["G1508"]],[18,22,["G5442"]],[22,23,["G846"]],[23,24,["(G5037)"]],[24,28,["G1494"]],[28,29,["G2532"]],[29,31,["G129"]],[31,32,["G2532"]],[32,34,["G4156"]],[34,35,["G2532"]],[35,37,["G4202"]]]},{"k":27690,"v":[[0,1,["G5119"]],[1,2,["G3972"]],[2,3,["G3880"]],[3,4,["G3588"]],[4,5,["G435"]],[5,7,["G3588"]],[7,8,["G2192"]],[8,9,["G2250"]],[9,10,["G48"]],[10,12,["G4862"]],[12,13,["G846"]],[13,14,["G1524"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G2411"]],[17,19,["G1229"]],[19,20,["G3588"]],[20,21,["G1604"]],[21,23,["G3588"]],[23,24,["G2250"]],[24,26,["G49"]],[26,27,["G2193","G3757"]],[27,30,["G4376"]],[30,33,["G4374"]],[33,34,["G5228"]],[34,35,["G1538"]],[35,36,["G1520"]],[36,38,["G846"]]]},{"k":27691,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G3588"]],[3,4,["G2033"]],[4,5,["G2250"]],[5,7,["G3195"]],[7,8,["G4931"]],[8,9,["G3588"]],[9,10,["G2453"]],[10,13,["G575"]],[13,14,["G773"]],[14,17,["G2300"]],[17,18,["G846"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G2411"]],[21,23,["G4797"]],[23,24,["G3956"]],[24,25,["G3588"]],[25,26,["G3793"]],[26,27,["G2532"]],[27,28,["G1911"]],[28,29,["G5495"]],[29,30,["G1909"]],[30,31,["G846"]]]},{"k":27692,"v":[[0,2,["G2896"]],[2,3,["G435"]],[3,5,["G2475"]],[5,6,["G997"]],[6,7,["G3778"]],[7,8,["G2076"]],[8,9,["G3588"]],[9,10,["G444"]],[10,12,["G1321"]],[12,13,["G3956"]],[13,16,["G3837"]],[16,17,["G2596"]],[17,18,["G3588"]],[18,19,["G2992"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G3551"]],[22,23,["G2532"]],[23,24,["G5127"]],[24,25,["G5117"]],[25,26,["G5037"]],[26,27,["G2089"]],[27,28,["G1521"]],[28,29,["G1672"]],[29,30,["G2532"]],[30,31,["G1519"]],[31,32,["G3588"]],[32,33,["G2411"]],[33,34,["G2532"]],[34,36,["G2840"]],[36,37,["G5126"]],[37,38,["G40"]],[38,39,["G5117"]]]},{"k":27693,"v":[[0,1,["G1063"]],[1,3,["G2258"]],[3,5,["G4308"]],[5,6,["G4862"]],[6,7,["G846"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G4172"]],[10,11,["G5161"]],[11,13,["G2180"]],[13,14,["G3739"]],[14,16,["G3543"]],[16,17,["G3754"]],[17,18,["G3972"]],[18,20,["G1521"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G2411"]]]},{"k":27694,"v":[[0,1,["G5037"]],[1,2,["G3650"]],[2,3,["G3588"]],[3,4,["G4172"]],[4,6,["G2795"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G2992"]],[9,11,["G1096","G4890"]],[11,12,["G2532"]],[12,14,["G1949"]],[14,15,["G3972"]],[15,17,["G1670"]],[17,18,["G846"]],[18,19,["G1854"]],[19,21,["G3588"]],[21,22,["G2411"]],[22,23,["G2532"]],[23,24,["G2112"]],[24,25,["G3588"]],[25,26,["G2374"]],[26,28,["G2808"]]]},{"k":27695,"v":[[0,1,["G1161"]],[1,5,["G2212"]],[5,7,["G615"]],[7,8,["G846"]],[8,9,["G5334"]],[9,10,["G305"]],[10,12,["G3588"]],[12,14,["G5506"]],[14,16,["G3588"]],[16,17,["G4686"]],[17,18,["G3754"]],[18,19,["G3650"]],[19,20,["G2419"]],[20,24,["G4797"]]]},{"k":27696,"v":[[0,1,["G3739"]],[1,2,["G1824"]],[2,3,["G3880"]],[3,4,["G4757"]],[4,5,["G2532"]],[5,6,["G1543"]],[6,9,["G2701"]],[9,10,["G1909"]],[10,11,["G846"]],[11,12,["G1161"]],[12,14,["G3588"]],[14,15,["G1492"]],[15,16,["G3588"]],[16,18,["G5506"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G4757"]],[21,23,["G3973"]],[23,24,["G5180"]],[24,26,["G3972"]]]},{"k":27697,"v":[[0,1,["G5119"]],[1,2,["G3588"]],[2,4,["G5506"]],[4,6,["G1448"]],[6,8,["G1949"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G2753"]],[11,15,["G1210"]],[15,17,["G1417"]],[17,18,["G254"]],[18,19,["G2532"]],[19,20,["G4441"]],[20,21,["G5101"]],[21,23,["G1498","G302"]],[23,24,["G2532"]],[24,25,["G5101"]],[25,27,["G2076"]],[27,28,["G4160"]]]},{"k":27698,"v":[[0,1,["G1161"]],[1,7,["G243","G994","G243","G5100"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G3793"]],[10,11,["G1161"]],[11,14,["G1410"]],[14,15,["G3361"]],[15,16,["G1097"]],[16,17,["G3588"]],[17,18,["G804"]],[18,19,["G1223"]],[19,20,["G3588"]],[20,21,["G2351"]],[21,23,["G2753"]],[23,24,["G846"]],[24,27,["G71"]],[27,28,["G1519"]],[28,29,["G3588"]],[29,30,["G3925"]]]},{"k":27699,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,4,["G1096"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G304"]],[7,10,["G4819"]],[10,12,["G846"]],[12,14,["G941"]],[14,15,["G5259"]],[15,16,["G3588"]],[16,17,["G4757"]],[17,18,["G1223"]],[18,19,["G3588"]],[19,20,["G970"]],[20,22,["G3588"]],[22,23,["G3793"]]]},{"k":27700,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G4128"]],[3,5,["G3588"]],[5,6,["G2992"]],[6,8,["G190"]],[8,9,["G2896"]],[9,10,["G142"]],[10,12,["G846"]]]},{"k":27701,"v":[[0,1,["G5037"]],[1,3,["G3972"]],[3,4,["(G3195)"]],[4,7,["G1521"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G3925"]],[10,12,["G3004"]],[12,14,["G3588"]],[14,16,["G5506","(G1487)"]],[16,17,["G1832"]],[17,18,["G3427"]],[18,19,["G2036"]],[19,20,["G4314"]],[20,21,["G4571","(G1161)"]],[21,22,["G3588"]],[22,23,["G5346"]],[23,27,["G1097","G1676"]]]},{"k":27702,"v":[[0,1,["G1488"]],[1,2,["G3756"]],[2,3,["G4771"]],[3,4,["(G686)"]],[4,5,["G124"]],[5,7,["G4253"]],[7,8,["G5130"]],[8,9,["G2250"]],[9,12,["G387"]],[12,13,["G2532"]],[13,15,["G1806"]],[15,16,["G1519"]],[16,17,["G3588"]],[17,18,["G2048"]],[18,20,["G5070"]],[20,21,["G435"]],[21,24,["G4607"]]]},{"k":27703,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,3,["G2036"]],[3,4,["G1473"]],[4,5,["G1510"]],[5,7,["G444"]],[7,8,["(G3303)"]],[8,11,["G2453"]],[11,13,["G5018"]],[13,17,["G2791"]],[17,19,["G4177"]],[19,21,["G3756"]],[21,22,["G767"]],[22,23,["G4172"]],[23,24,["G1161"]],[24,26,["G1189"]],[26,27,["G4675"]],[27,28,["G2010"]],[28,29,["G3427"]],[29,31,["G2980"]],[31,32,["G4314"]],[32,33,["G3588"]],[33,34,["G2992"]]]},{"k":27704,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,7,["G2010"]],[7,8,["G3972"]],[8,9,["G2476"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G304"]],[12,14,["G2678"]],[14,16,["G3588"]],[16,17,["G5495"]],[17,19,["G3588"]],[19,20,["G2992"]],[20,21,["G1161"]],[21,25,["G1096"]],[25,27,["G4183"]],[27,28,["G4602"]],[28,31,["G4377"]],[31,34,["G3588"]],[34,35,["G1446"]],[35,36,["G1258"]],[36,37,["G3004"]]]},{"k":27705,"v":[[0,1,["G435"]],[1,2,["G80"]],[2,3,["G2532"]],[3,4,["G3962"]],[4,5,["G191"]],[5,7,["G3450"]],[7,8,["G627"]],[8,12,["G3568"]],[12,13,["G4314"]],[13,14,["G5209"]]]},{"k":27706,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,5,["G3754"]],[5,7,["G4377"]],[7,9,["G3588"]],[9,10,["G1446"]],[10,11,["G1258"]],[11,13,["G846"]],[13,15,["G3930"]],[15,17,["G3123"]],[17,18,["G2271"]],[18,19,["G2532"]],[19,21,["G5346"]]]},{"k":27707,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,3,["G3303"]],[3,5,["G435"]],[5,9,["G2453"]],[9,10,["G1080"]],[10,11,["G1722"]],[11,12,["G5019"]],[12,16,["G2791"]],[16,17,["G1161"]],[17,19,["G397"]],[19,20,["G1722"]],[20,21,["G5026"]],[21,22,["G4172"]],[22,23,["G3844"]],[23,24,["G3588"]],[24,25,["G4228"]],[25,27,["G1059"]],[27,29,["G3811"]],[29,30,["G2596"]],[30,34,["G195"]],[34,37,["G3551"]],[37,39,["G3588"]],[39,40,["G3971"]],[40,42,["G5225"]],[42,43,["G2207"]],[43,45,["G2316"]],[45,46,["G2531"]],[46,47,["G5210"]],[47,48,["G3956"]],[48,49,["G2075"]],[49,51,["G4594"]]]},{"k":27708,"v":[[0,2,["(G3739)"]],[2,3,["G1377"]],[3,4,["G5026"]],[4,5,["G3598"]],[5,6,["G891"]],[6,8,["G2288"]],[8,9,["G1195"]],[9,10,["G2532"]],[10,11,["G3860"]],[11,12,["G1519"]],[12,13,["G5438"]],[13,14,["G5037"]],[14,15,["G435"]],[15,16,["G2532"]],[16,17,["G1135"]]]},{"k":27709,"v":[[0,1,["G5613"]],[1,2,["G2532"]],[2,3,["G3588"]],[3,5,["G749"]],[5,9,["G3140","G3427"]],[9,10,["G2532"]],[10,11,["G3956"]],[11,12,["G3588"]],[12,16,["G4244"]],[16,17,["G3844"]],[17,18,["G3739"]],[18,19,["G2532"]],[19,21,["G1209"]],[21,22,["G1992"]],[22,23,["G4314"]],[23,24,["G3588"]],[24,25,["G80"]],[25,27,["G4198"]],[27,28,["G1519"]],[28,29,["G1154"]],[29,31,["G71","(G2532)"]],[31,34,["G5607"]],[34,35,["G1566"]],[35,36,["G1210"]],[36,37,["G1519"]],[37,38,["G2419"]],[38,40,["G2443"]],[40,42,["G5097"]]]},{"k":27710,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,8,["G3427"]],[8,11,["G4198"]],[11,12,["G2532"]],[12,15,["G1448"]],[15,17,["G1154"]],[17,18,["G4012"]],[18,19,["G3314"]],[19,20,["G1810"]],[20,22,["G4015"]],[22,23,["G1537"]],[23,24,["G3772"]],[24,26,["G2425"]],[26,27,["G5457"]],[27,29,["G4012"]],[29,30,["G1691"]]]},{"k":27711,"v":[[0,1,["G5037"]],[1,3,["G4098"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G1475"]],[6,7,["G2532"]],[7,8,["G191"]],[8,10,["G5456"]],[10,11,["G3004"]],[11,13,["G3427"]],[13,14,["G4549"]],[14,15,["G4549"]],[15,16,["G5101"]],[16,17,["G1377"]],[17,19,["G3165"]]]},{"k":27712,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G611"]],[3,4,["G5101"]],[4,5,["G1488"]],[5,7,["G2962"]],[7,8,["G5037"]],[8,10,["G2036"]],[10,11,["G4314"]],[11,12,["G3165"]],[12,13,["G1473"]],[13,14,["G1510"]],[14,15,["G2424"]],[15,17,["G3480"]],[17,18,["G3739"]],[18,19,["G4771"]],[19,20,["G1377"]]]},{"k":27713,"v":[[0,1,["G1161"]],[1,4,["G5607"]],[4,5,["G4862"]],[5,6,["G1698"]],[6,7,["G2300"]],[7,8,["G3303"]],[8,9,["G3588"]],[9,10,["G5457"]],[10,11,["G2532"]],[11,12,["G1096"]],[12,13,["G1719"]],[13,14,["G1161"]],[14,16,["G191"]],[16,17,["G3756"]],[17,18,["G3588"]],[18,19,["G5456"]],[19,23,["G2980"]],[23,25,["G3427"]]]},{"k":27714,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G5101"]],[4,7,["G4160"]],[7,8,["G2962"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G2962"]],[11,12,["G2036"]],[12,13,["G4314"]],[13,14,["G3165"]],[14,15,["G450"]],[15,17,["G4198"]],[17,18,["G1519"]],[18,19,["G1154"]],[19,21,["G2546"]],[21,25,["G2980"]],[25,26,["G4671"]],[26,27,["G4012"]],[27,29,["G3956"]],[29,30,["G3739"]],[30,32,["G5021"]],[32,34,["G4671"]],[34,36,["G4160"]]]},{"k":27715,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,5,["G3756"]],[5,6,["G1689"]],[6,7,["G575"]],[7,8,["G3588"]],[8,9,["G1391"]],[9,11,["G1565"]],[11,12,["G5457"]],[12,17,["G5496"]],[17,18,["G5259"]],[18,22,["G4895"]],[22,23,["G3427"]],[23,25,["G2064"]],[25,26,["G1519"]],[26,27,["G1154"]]]},{"k":27716,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G367"]],[3,5,["G2152"]],[5,6,["G435"]],[6,7,["G2596"]],[7,9,["G3588"]],[9,10,["G3551"]],[10,14,["G3140"]],[14,15,["G5259"]],[15,16,["G3956"]],[16,17,["G3588"]],[17,18,["G2453"]],[18,20,["G2730"]],[20,21,[]]]},{"k":27717,"v":[[0,1,["G2064"]],[1,2,["G4314"]],[2,3,["G3165"]],[3,4,["G2532"]],[4,5,["G2186"]],[5,7,["G2036"]],[7,9,["G3427"]],[9,10,["G80"]],[10,11,["G4549"]],[11,14,["G308"]],[14,16,["G3588"]],[16,17,["G846"]],[17,18,["G5610"]],[18,19,["G2504"]],[19,21,["G308"]],[21,22,["G1519"]],[22,23,["G846"]]]},{"k":27718,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G3588"]],[4,5,["G2316"]],[5,7,["G2257"]],[7,8,["G3962"]],[8,10,["G4400"]],[10,11,["G4571"]],[11,15,["G1097"]],[15,16,["G848"]],[16,17,["G2307"]],[17,18,["G2532"]],[18,19,["G1492"]],[19,22,["G1342"]],[22,23,["G2532"]],[23,25,["G191"]],[25,27,["G5456"]],[27,28,["G1537"]],[28,29,["G848"]],[29,30,["G4750"]]]},{"k":27719,"v":[[0,1,["G3754"]],[1,4,["G2071"]],[4,5,["G846"]],[5,6,["G3144"]],[6,7,["G4314"]],[7,8,["G3956"]],[8,9,["G444"]],[9,11,["G3739"]],[11,14,["G3708"]],[14,15,["G2532"]],[15,16,["G191"]]]},{"k":27720,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,3,["G5101"]],[3,4,["G3195"]],[4,6,["G450"]],[6,9,["G907"]],[9,10,["G2532"]],[10,12,["G628"]],[12,13,["G4675"]],[13,14,["G266"]],[14,16,["G1941"]],[16,17,["G3588"]],[17,18,["G3686"]],[18,20,["G3588"]],[20,21,["G2962"]]]},{"k":27721,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,8,["G3427"]],[8,11,["G5290"]],[11,12,["G1519"]],[12,13,["G2419"]],[13,14,["G2532"]],[14,16,["G3450"]],[16,17,["G4336"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,20,["G2411"]],[20,21,["G3165"]],[21,22,["G1096"]],[22,23,["G1722"]],[23,25,["G1611"]]]},{"k":27722,"v":[[0,1,["G2532"]],[1,2,["G1492"]],[2,3,["G846"]],[3,4,["G3004"]],[4,6,["G3427"]],[6,8,["G4692"]],[8,9,["G2532"]],[9,10,["G1831"]],[10,12,["G1722","G5034"]],[12,14,["G1537"]],[14,15,["G2419"]],[15,16,["G1360"]],[16,19,["G3756"]],[19,20,["G3858"]],[20,21,["G4675"]],[21,22,["G3141"]],[22,23,["G4012"]],[23,24,["G1700"]]]},{"k":27723,"v":[[0,2,["G2504"]],[2,3,["G2036"]],[3,4,["G2962"]],[4,5,["G846"]],[5,6,["G1987"]],[6,7,["G3754"]],[7,8,["G1473"]],[8,9,["G2252","G5439"]],[9,10,["G2532"]],[10,11,["G1194"]],[11,14,["G2596","G4864"]],[14,17,["G4100"]],[17,18,["G1909"]],[18,19,["G4571"]]]},{"k":27724,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,3,["G3588"]],[3,4,["G129"]],[4,6,["G4675"]],[6,7,["G3144"]],[7,8,["G4736"]],[8,10,["G1632"]],[10,11,["G848"]],[11,12,["G2532"]],[12,13,["G2252"]],[13,15,["G2186"]],[15,16,["G2532"]],[16,17,["G4909"]],[17,19,["G848"]],[19,20,["G336"]],[20,21,["G2532"]],[21,22,["G5442"]],[22,23,["G3588"]],[23,24,["G2440"]],[24,28,["G337"]],[28,29,["G846"]]]},{"k":27725,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G3165"]],[5,6,["G4198"]],[6,7,["G3754"]],[7,8,["G1473"]],[8,10,["G1821"]],[10,11,["G4571"]],[11,13,["G3112"]],[13,14,["G1519"]],[14,16,["G1484"]]]},{"k":27726,"v":[[0,1,["G1161"]],[1,5,["G191","G846"]],[5,6,["G891"]],[6,7,["G5127"]],[7,8,["G3056"]],[8,9,["G2532"]],[9,12,["G1869"]],[12,13,["G848"]],[13,14,["G5456"]],[14,16,["G3004"]],[16,17,["G142"]],[17,19,["G5108"]],[19,22,["G575"]],[22,23,["G3588"]],[23,24,["G1093"]],[24,25,["G1063"]],[25,29,["G2520","G3756"]],[29,31,["G846"]],[31,33,["G2198"]]]},{"k":27727,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G2905"]],[5,6,["G2532"]],[6,8,["G4495"]],[8,10,["G2440"]],[10,11,["G2532"]],[11,12,["G906"]],[12,13,["G2868"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G109"]]]},{"k":27728,"v":[[0,1,["G3588"]],[1,3,["G5506"]],[3,4,["G2753"]],[4,5,["G846"]],[5,8,["G71"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G3925"]],[11,13,["G2036"]],[13,15,["G846"]],[15,18,["G426"]],[18,20,["G3148"]],[20,21,["G2443"]],[21,24,["G1921"]],[24,25,["G1223","G3739","G156"]],[25,29,["G2019","G3779"]],[29,30,["G846"]]]},{"k":27729,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,4,["G4385"]],[4,5,["G846"]],[5,7,["G2438"]],[7,8,["G3972"]],[8,9,["G2036"]],[9,10,["G4314"]],[10,12,["G1543"]],[12,15,["G2476","(G1487)"]],[15,18,["G1832"]],[18,20,["G5213"]],[20,22,["G3147"]],[22,24,["G444"]],[24,28,["G4514"]],[28,29,["G2532"]],[29,30,["G178"]]]},{"k":27730,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1543"]],[3,4,["G191"]],[4,7,["G4334"]],[7,9,["G518"]],[9,10,["G3588"]],[10,12,["G5506"]],[12,13,["G3004"]],[13,15,["G3708"]],[15,16,["G5101"]],[16,17,["(G3195)"]],[17,18,["G4160"]],[18,19,["G1063"]],[19,20,["G3778"]],[20,21,["G444"]],[21,22,["G2076"]],[22,24,["G4514"]]]},{"k":27731,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G5506"]],[4,5,["G4334"]],[5,7,["G2036"]],[7,9,["G846"]],[9,10,["G3004"]],[10,11,["G3427","(G1487)"]],[11,12,["G1488"]],[12,13,["G4771"]],[13,15,["G4514","(G1161)"]],[15,16,["G3588"]],[16,17,["G5346"]],[17,18,["G3483"]]]},{"k":27732,"v":[[0,1,["G5037"]],[1,2,["G3588"]],[2,4,["G5506"]],[4,5,["G611"]],[5,8,["G4183"]],[8,9,["G2774"]],[9,10,["G2932"]],[10,11,["G1473"]],[11,12,["G5026"]],[12,13,["G4174"]],[13,14,["G1161"]],[14,15,["G3972"]],[15,16,["G5346"]],[16,17,["G1161"]],[17,18,["G1473"]],[18,19,["(G2532)"]],[19,21,["G1080"]]]},{"k":27733,"v":[[0,1,["G3767"]],[1,2,["G2112"]],[2,4,["G868"]],[4,5,["G575"]],[5,6,["G846"]],[6,8,["G3195"]],[8,10,["G426"]],[10,11,["G846"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,15,["G5506"]],[15,16,["G1161"]],[16,18,["G5399"]],[18,21,["G1921"]],[21,22,["G3754"]],[22,24,["G2076"]],[24,26,["G4514"]],[26,27,["G2532"]],[27,28,["G3754"]],[28,30,["G2258"]],[30,31,["G1210"]],[31,32,["G846"]]]},{"k":27734,"v":[[0,1,["(G1161)"]],[1,2,["G3588"]],[2,3,["G1887"]],[3,6,["G1014"]],[6,8,["G1097"]],[8,9,["G3588"]],[9,10,["G804"]],[10,11,["G5101"]],[11,14,["G2723"]],[14,15,["G3844"]],[15,16,["G3588"]],[16,17,["G2453"]],[17,19,["G3089"]],[19,20,["G846"]],[20,21,["G575"]],[21,23,["G1199"]],[23,24,["G2532"]],[24,25,["G2753"]],[25,26,["G3588"]],[26,28,["G749"]],[28,29,["G2532"]],[29,30,["G3650"]],[30,31,["G848"]],[31,32,["G4892"]],[32,34,["G2064"]],[34,35,["G2532"]],[35,38,["G2609","G3972"]],[38,40,["G2476"]],[40,42,["G1519"]],[42,43,["G846"]]]},{"k":27735,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,4,["G816"]],[4,5,["G3588"]],[5,6,["G4892"]],[6,7,["G2036"]],[7,8,["G435"]],[8,10,["G80"]],[10,11,["G1473"]],[11,13,["G4176"]],[13,15,["G3956"]],[15,16,["G18"]],[16,17,["G4893"]],[17,19,["G2316"]],[19,20,["G891"]],[20,21,["G5026"]],[21,22,["G2250"]]]},{"k":27736,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G367"]],[5,6,["G2004"]],[6,10,["G3936"]],[10,11,["G846"]],[11,13,["G5180"]],[13,14,["G848"]],[14,16,["G3588"]],[16,17,["G4750"]]]},{"k":27737,"v":[[0,1,["G5119"]],[1,2,["G2036"]],[2,3,["G3972"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G2316"]],[6,7,["G3195"]],[7,8,["G5180"]],[8,9,["G4571"]],[9,11,["G2867"]],[11,12,["G5109"]],[12,13,["G2532"]],[13,14,["G2521"]],[14,15,["G4771"]],[15,17,["G2919"]],[17,18,["G3165"]],[18,19,["G2596"]],[19,20,["G3588"]],[20,21,["G3551"]],[21,22,["G2532"]],[22,23,["G2753"]],[23,24,["G3165"]],[24,27,["G5180"]],[27,31,["G3891"]]]},{"k":27738,"v":[[0,1,["G1161"]],[1,5,["G3936"]],[5,6,["G2036"]],[6,7,["G3058"]],[7,9,["G2316"]],[9,11,["G749"]]]},{"k":27739,"v":[[0,1,["G5037"]],[1,2,["G5346"]],[2,3,["G3972"]],[3,5,["G1492"]],[5,6,["G3756"]],[6,7,["G80"]],[7,8,["G3754"]],[8,10,["G2076"]],[10,13,["G749"]],[13,14,["G1063"]],[14,17,["G1125"]],[17,20,["G3756"]],[20,21,["G2046"]],[21,22,["G2560"]],[22,25,["G758"]],[25,27,["G4675"]],[27,28,["G2992"]]]},{"k":27740,"v":[[0,1,["G1161"]],[1,3,["G3972"]],[3,4,["G1097"]],[4,5,["G3754"]],[5,6,["G3588"]],[6,7,["G1520"]],[7,8,["G3313"]],[8,9,["G2076"]],[9,10,["G4523"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,13,["G2087"]],[13,14,["G5330"]],[14,17,["G2896"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,20,["G4892"]],[20,21,["G435"]],[21,23,["G80"]],[23,24,["G1473"]],[24,25,["G1510"]],[25,27,["G5330"]],[27,29,["G5207"]],[29,32,["G5330"]],[32,33,["G4012"]],[33,35,["G1680"]],[35,36,["G2532"]],[36,37,["G386"]],[37,40,["G3498"]],[40,41,["G1473"]],[41,45,["G2919"]]]},{"k":27741,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G5124"]],[5,6,["G2980"]],[6,8,["G1096"]],[8,10,["G4714"]],[10,12,["G3588"]],[12,13,["G5330"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G4523"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G4128"]],[19,21,["G4977"]]]},{"k":27742,"v":[[0,1,["G1063"]],[1,2,["(G3303)"]],[2,3,["G4523"]],[3,4,["G3004"]],[4,7,["G1511"]],[7,8,["G3361"]],[8,9,["G386"]],[9,10,["G3366"]],[10,11,["G32"]],[11,12,["G3383"]],[12,13,["G4151"]],[13,14,["G1161"]],[14,16,["G5330"]],[16,17,["G3670"]],[17,18,["G297"]]]},{"k":27743,"v":[[0,1,["G1161"]],[1,3,["G1096"]],[3,5,["G3173"]],[5,6,["G2906"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G1122"]],[9,13,["G3588"]],[13,14,["G5330"]],[14,15,["G3313"]],[15,16,["G450"]],[16,18,["G1264"]],[18,19,["G3004"]],[19,21,["G2147"]],[21,22,["G3762"]],[22,23,["G2556"]],[23,24,["G1722"]],[24,25,["G5129"]],[25,26,["G444"]],[26,27,["G1161"]],[27,28,["G1487"]],[28,30,["G4151"]],[30,31,["G2228"]],[31,33,["G32"]],[33,35,["G2980"]],[35,37,["G846"]],[37,40,["G3361"]],[40,43,["G2313"]]]},{"k":27744,"v":[[0,1,["G1161"]],[1,4,["G1096"]],[4,6,["G4183"]],[6,7,["G4714"]],[7,8,["G3588"]],[8,10,["G5506"]],[10,11,["G2125"]],[11,12,["G3361"]],[12,13,["G3972"]],[13,19,["G1288"]],[19,20,["G5259"]],[20,21,["G846"]],[21,22,["G2753"]],[22,23,["G3588"]],[23,24,["G4753"]],[24,27,["G2597"]],[27,33,["G726","G846"]],[33,34,["G1537"]],[34,35,["G3319"]],[35,36,["G848"]],[36,37,["G5037"]],[37,39,["G71"]],[39,41,["G1519"]],[41,42,["G3588"]],[42,43,["G3925"]]]},{"k":27745,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3571"]],[3,4,["G1966"]],[4,5,["G3588"]],[5,6,["G2962"]],[6,8,["G2186"]],[8,9,["G846"]],[9,11,["G2036"]],[11,15,["G2293"]],[15,16,["G3972"]],[16,17,["G1063"]],[17,18,["G5613"]],[18,21,["G1263"]],[21,22,["G4012"]],[22,23,["G1700"]],[23,24,["G1722"]],[24,25,["G2419"]],[25,26,["G3779"]],[26,27,["G1163"]],[27,28,["G4571"]],[28,30,["G3140"]],[30,31,["G2532"]],[31,32,["G1519"]],[32,33,["G4516"]]]},{"k":27746,"v":[[0,1,["G1161"]],[1,4,["G1096"]],[4,5,["G2250"]],[5,6,["G5100"]],[6,8,["G3588"]],[8,9,["G2453"]],[9,11,["G4160","G4963"]],[11,17,["G332","G1438"]],[17,18,["G3004"]],[18,22,["G3383"]],[22,23,["G5315"]],[23,24,["G3383"]],[24,25,["G4095"]],[25,26,["G2193","G3757"]],[26,29,["G615"]],[29,30,["G3972"]]]},{"k":27747,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G4119"]],[4,6,["G5062"]],[6,9,["G4160"]],[9,10,["G5026"]],[10,11,["G4945"]]]},{"k":27748,"v":[[0,2,["G3748"]],[2,3,["G4334"]],[3,5,["G3588"]],[5,7,["G749"]],[7,8,["G2532"]],[8,9,["G4245"]],[9,11,["G2036"]],[11,19,["G332","G1438","G331"]],[19,23,["G1089"]],[23,24,["G3367"]],[24,25,["G2193","G3757"]],[25,28,["G615"]],[28,29,["G3972"]]]},{"k":27749,"v":[[0,1,["G3568"]],[1,2,["G3767"]],[2,3,["G5210"]],[3,4,["G4862"]],[4,5,["G3588"]],[5,6,["G4892"]],[6,7,["G1718"]],[7,9,["G3588"]],[9,11,["G5506"]],[11,12,["G3704"]],[12,16,["G2609","G846"]],[16,17,["G4314"]],[17,18,["G5209"]],[18,20,["G839"]],[20,22,["G5613"]],[22,24,["G3195"]],[24,25,["G1231"]],[25,28,["G197"]],[28,29,["G4012"]],[29,30,["G846"]],[30,31,["G1161"]],[31,32,["G2249"]],[32,34,["G4253"]],[34,35,["G846"]],[35,37,["G1448"]],[37,38,["G2070"]],[38,39,["G2092"]],[39,41,["G337"]],[41,42,["G846"]]]},{"k":27750,"v":[[0,1,["G1161"]],[1,3,["G3972"]],[3,4,["G79"]],[4,5,["G5207"]],[5,6,["G191"]],[6,11,["G1749"]],[11,13,["G3854"]],[13,14,["G2532"]],[14,15,["G1525"]],[15,16,["G1519"]],[16,17,["G3588"]],[17,18,["G3925"]],[18,20,["G518"]],[20,21,["G3972"]]]},{"k":27751,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,8,["G4341","G1520","G3588","G1543"]],[8,11,["G5346"]],[11,12,["G520"]],[12,13,["G5126"]],[13,15,["G3494"]],[15,16,["G4314"]],[16,17,["G3588"]],[17,19,["G5506"]],[19,20,["G1063"]],[20,22,["G2192"]],[22,25,["G5100"]],[25,27,["G518"]],[27,28,["G846"]]]},{"k":27752,"v":[[0,1,["G3767"]],[1,2,["G3588","(G3303)"]],[2,3,["G3880"]],[3,4,["G846"]],[4,6,["G71"]],[6,8,["G4314"]],[8,9,["G3588"]],[9,11,["G5506"]],[11,12,["G2532"]],[12,13,["G5346"]],[13,14,["G3972"]],[14,15,["G3588"]],[15,16,["G1198"]],[16,19,["G4341","G3165"]],[19,22,["G2065"]],[22,25,["G71"]],[25,26,["G5126"]],[26,28,["G3494"]],[28,29,["G4314"]],[29,30,["G4571"]],[30,32,["G2192"]],[32,33,["G5100"]],[33,35,["G2980"]],[35,37,["G4671"]]]},{"k":27753,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G5506"]],[4,5,["G1949"]],[5,6,["G848"]],[6,8,["G3588"]],[8,9,["G5495"]],[9,10,["G2532"]],[10,14,["G402"]],[14,15,["G2596","G2398"]],[15,17,["G4441"]],[17,19,["G5101"]],[19,20,["G2076"]],[20,21,["G3739"]],[21,23,["G2192"]],[23,25,["G518"]],[25,26,["G3427"]]]},{"k":27754,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G3588"]],[4,5,["G2453"]],[5,7,["G4934"]],[7,9,["G2065"]],[9,10,["G4571"]],[10,11,["G3704"]],[11,15,["G2609"]],[15,16,["G3972"]],[16,18,["G839"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G4892"]],[21,23,["G5613"]],[23,25,["G3195"]],[25,26,["G4441"]],[26,27,["G5100"]],[27,28,["G4012"]],[28,29,["G846"]],[29,31,["G197"]]]},{"k":27755,"v":[[0,1,["G3767"]],[1,3,["G3361"]],[3,4,["G4771"]],[4,5,["G3982"]],[5,7,["G846"]],[7,8,["G1063"]],[8,12,["G1748"]],[12,14,["G846"]],[14,15,["G1537"]],[15,16,["G846"]],[16,17,["G4119"]],[17,19,["G5062"]],[19,20,["G435"]],[20,21,["G3748"]],[21,27,["G332","G1438"]],[27,31,["G3383"]],[31,32,["G5315"]],[32,33,["G3383"]],[33,34,["G4095"]],[34,35,["G2193","G3757"]],[35,38,["G337"]],[38,39,["G846"]],[39,40,["G2532"]],[40,41,["G3568"]],[41,42,["G1526"]],[42,44,["G2092"]],[44,46,["G4327"]],[46,48,["G1860"]],[48,49,["G575"]],[49,50,["G4675"]]]},{"k":27756,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,4,["G5506"]],[4,5,["(G3303)"]],[5,10,["G630","G3588","G3494"]],[10,12,["G3853"]],[12,16,["G1583"]],[16,18,["G3367"]],[18,19,["G3754"]],[19,22,["G1718"]],[22,24,["G5023"]],[24,25,["G4314"]],[25,26,["G3165"]]]},{"k":27757,"v":[[0,1,["G2532"]],[1,4,["G4341"]],[4,6,["G1417"]],[6,7,["G1543"]],[7,8,["G2036"]],[8,10,["G2090"]],[10,12,["G1250"]],[12,13,["G4757"]],[13,14,["G3704"]],[14,15,["G4198"]],[15,16,["G2193"]],[16,17,["G2542"]],[17,18,["G2532"]],[18,19,["G2460"]],[19,22,["G1440"]],[22,23,["G2532"]],[23,24,["G1187"]],[24,26,["G1250"]],[26,27,["G575"]],[27,29,["G5154"]],[29,30,["G5610"]],[30,32,["G3588"]],[32,33,["G3571"]]]},{"k":27758,"v":[[0,1,["G5037"]],[1,2,["G3936"]],[2,4,["G2934"]],[4,5,["G2443"]],[5,10,["G1913","G3972"]],[10,14,["G1295"]],[14,15,["G4314"]],[15,16,["G5344"]],[16,17,["G3588"]],[17,18,["G2232"]]]},{"k":27759,"v":[[0,3,["G1125"]],[3,5,["G1992"]],[5,6,["G4023"]],[6,7,["G5126"]],[7,8,["G5179"]]]},{"k":27760,"v":[[0,1,["G2804"]],[1,2,["G3079"]],[2,4,["G3588"]],[4,6,["G2903"]],[6,7,["G2232"]],[7,8,["G5344"]],[8,10,["G5463"]]]},{"k":27761,"v":[[0,1,["G5126"]],[1,2,["G435"]],[2,4,["G4815"]],[4,5,["G5259"]],[5,6,["G3588"]],[6,7,["G2453"]],[7,8,["G2532"]],[8,9,["G3195"]],[9,12,["G337"]],[12,13,["G5259"]],[13,14,["G846"]],[14,16,["G2186"]],[16,18,["G4862"]],[18,20,["G4753"]],[20,22,["G1807"]],[22,23,["G846"]],[23,25,["G3129"]],[25,26,["G3754"]],[26,28,["G2076"]],[28,30,["G4514"]]]},{"k":27762,"v":[[0,1,["G1161"]],[1,4,["G1014"]],[4,6,["G1097"]],[6,7,["G3588"]],[7,8,["G156"]],[8,9,["G1223","G3739"]],[9,11,["G1458"]],[11,12,["G846"]],[12,16,["G2609","G846"]],[16,17,["G1519"]],[17,18,["G848"]],[18,19,["G4892"]]]},{"k":27763,"v":[[0,1,["G3739"]],[1,3,["G2147"]],[3,6,["G1458"]],[6,7,["G4012"]],[7,8,["G2213"]],[8,10,["G848"]],[10,11,["G3551"]],[11,12,["G1161"]],[12,14,["G2192"]],[14,15,["G3367"]],[15,19,["G1462"]],[19,20,["G514"]],[20,22,["G2288"]],[22,23,["G2228"]],[23,25,["G1199"]]]},{"k":27764,"v":[[0,1,["G1161"]],[1,5,["G3377"]],[5,6,["G3427"]],[6,8,["(G5259)"]],[8,9,["G3588"]],[9,10,["G2453"]],[10,12,["G1917","G3195","G1510"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G435"]],[15,17,["G3992"]],[17,18,["G1824"]],[18,19,["G4314"]],[19,20,["G4571"]],[20,23,["G3853"]],[23,26,["G2725"]],[26,27,["G2532"]],[27,29,["G3004"]],[29,30,["G1909"]],[30,31,["G4675"]],[31,32,["G3588"]],[32,35,["G4314"]],[35,36,["G846"]],[36,37,["G4517"]]]},{"k":27765,"v":[[0,1,["G3767","(G3303)"]],[1,2,["G3588"]],[2,3,["G4757"]],[3,4,["G2596"]],[4,7,["G1299"]],[7,8,["G846"]],[8,9,["G353"]],[9,10,["G3972"]],[10,12,["G71"]],[12,14,["G1223"]],[14,15,["G3571"]],[15,16,["G1519"]],[16,17,["G494"]]]},{"k":27766,"v":[[0,1,["(G1161)"]],[1,2,["G3588"]],[2,3,["G1887"]],[3,5,["G1439"]],[5,6,["G3588"]],[6,7,["G2460"]],[7,9,["G4198"]],[9,10,["G4862"]],[10,11,["G846"]],[11,13,["G5290"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G3925"]]]},{"k":27767,"v":[[0,1,["G3748"]],[1,4,["G1525"]],[4,5,["G1519"]],[5,6,["G2542"]],[6,7,["G2532"]],[7,8,["G325"]],[8,9,["G3588"]],[9,10,["G1992"]],[10,12,["G3588"]],[12,13,["G2232"]],[13,14,["G3936"]],[14,15,["G3972"]],[15,16,["G2532"]],[16,18,["G846"]]]},{"k":27768,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G2232"]],[4,6,["G314"]],[6,9,["(G2532)"]],[9,10,["G1905"]],[10,11,["G1537"]],[11,12,["G4169"]],[12,13,["G1885"]],[13,15,["G2076"]],[15,16,["G2532"]],[16,19,["G4441"]],[19,20,["G3754"]],[20,23,["G575"]],[23,24,["G2791"]]]},{"k":27769,"v":[[0,3,["G1251"]],[3,4,["G4675"]],[4,5,["G5346"]],[5,7,["G3752"]],[7,8,["G4675"]],[8,9,["G2725"]],[9,11,["G2532"]],[11,12,["G3854"]],[12,13,["G5037"]],[13,15,["G2753"]],[15,16,["G846"]],[16,19,["G5442"]],[19,20,["G1722"]],[20,21,["G2264"]],[21,23,["G4232"]]]},{"k":27770,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,3,["G4002"]],[3,4,["G2250"]],[4,5,["G367"]],[5,6,["G3588"]],[6,8,["G749"]],[8,9,["G2597"]],[9,10,["G3326"]],[10,11,["G3588"]],[11,12,["G4245"]],[12,13,["G2532"]],[13,16,["G5100"]],[16,17,["G4489"]],[17,19,["G5061"]],[19,20,["G3748"]],[20,21,["G1718"]],[21,22,["G3588"]],[22,23,["G2232"]],[23,24,["G2596"]],[24,25,["G3972"]]]},{"k":27771,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,6,["G2564"]],[6,7,["G5061"]],[7,8,["G756"]],[8,10,["G2723"]],[10,12,["G3004"]],[12,15,["G1223"]],[15,16,["G4675"]],[16,18,["G5177"]],[18,19,["G4183"]],[19,20,["G1515"]],[20,21,["G2532"]],[21,25,["G2735"]],[25,27,["G1096"]],[27,29,["G5129"]],[29,30,["G1484"]],[30,31,["G1223"]],[31,32,["G4674"]],[32,33,["G4307"]]]},{"k":27772,"v":[[0,2,["G588"]],[2,3,["(G5037)"]],[3,4,["G3839"]],[4,5,["G2532"]],[5,8,["G3837"]],[8,10,["G2903"]],[10,11,["G5344"]],[11,12,["G3326"]],[12,13,["G3956"]],[13,14,["G2169"]]]},{"k":27773,"v":[[0,1,["G1161"]],[1,2,["G2443"]],[2,7,["G1465","G3361","G1909","G4119"]],[7,9,["G4571"]],[9,11,["G3870"]],[11,14,["G4571"]],[14,16,["G191"]],[16,17,["G2257"]],[17,19,["G4674"]],[19,20,["G1932"]],[20,23,["G4935"]]]},{"k":27774,"v":[[0,1,["G1063"]],[1,4,["G2147"]],[4,5,["G5126"]],[5,6,["G435"]],[6,8,["G3061"]],[8,10,["G2532"]],[10,12,["G2795"]],[12,14,["G4714"]],[14,16,["G3956"]],[16,17,["G3588"]],[17,18,["G2453"]],[18,19,["G2596"]],[19,20,["G3588"]],[20,21,["G3625"]],[21,22,["G5037"]],[22,24,["G4414"]],[24,26,["G3588"]],[26,27,["G139"]],[27,29,["G3588"]],[29,30,["G3480"]]]},{"k":27775,"v":[[0,1,["G3739"]],[1,2,["G2532"]],[2,5,["G3985"]],[5,7,["G953"]],[7,8,["G3588"]],[8,9,["G2411"]],[9,10,["G3739"]],[10,12,["G2902"]],[12,13,["G2532"]],[13,14,["G2309"]],[14,16,["G2919"]],[16,17,["G2596"]],[17,19,["G2251"]],[19,20,["G3551"]]]},{"k":27776,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G5506"]],[4,5,["G3079"]],[5,6,["G3928"]],[6,10,["G3326"]],[10,11,["G4183"]],[11,12,["G970"]],[12,15,["G520"]],[15,17,["G1537"]],[17,18,["G2257"]],[18,19,["G5495"]]]},{"k":27777,"v":[[0,1,["G2753"]],[1,2,["G848"]],[2,3,["G2725"]],[3,5,["G2064"]],[5,6,["G1909"]],[6,7,["G4571"]],[7,9,["G350"]],[9,10,["G3844"]],[10,11,["G3739"]],[11,12,["G846"]],[12,13,["G1410"]],[13,15,["G1921"]],[15,16,["G4012"]],[16,17,["G3956"]],[17,19,["G5130"]],[19,20,["G3739"]],[20,21,["G2249"]],[21,22,["G2723"]],[22,23,["G846"]]]},{"k":27778,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,4,["G2532"]],[4,5,["G4934"]],[5,6,["G5335"]],[6,9,["G5023"]],[9,10,["G2192"]],[10,11,["G3779"]]]},{"k":27779,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,5,["G3588"]],[5,6,["G2232"]],[6,8,["G3506"]],[8,10,["G846"]],[10,12,["G3004"]],[12,13,["G611"]],[13,17,["G1987"]],[17,19,["G4571"]],[19,21,["G5607"]],[21,22,["G1537"]],[22,23,["G4183"]],[23,24,["G2094"]],[24,26,["G2923"]],[26,28,["G5129"]],[28,29,["G1484"]],[29,34,["G2115"]],[34,35,["G626"]],[35,36,["G4012"]],[36,37,["G1683"]]]},{"k":27780,"v":[[0,3,["G4675"]],[3,4,["G1410"]],[4,5,["G1097"]],[5,6,["G3754"]],[6,8,["G1526","(G3427)"]],[8,10,["G3756","G4119","G2228"]],[10,11,["G1177"]],[11,12,["G2250"]],[12,13,["G575","G3739"]],[13,16,["G305"]],[16,17,["G1722"]],[17,18,["G2419"]],[18,21,["G4352"]]]},{"k":27781,"v":[[0,1,["G2532"]],[1,3,["G3777"]],[3,4,["G2147"]],[4,5,["G3165"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G2411"]],[8,9,["G1256"]],[9,10,["G4314"]],[10,12,["G5100"]],[12,13,["G2228"]],[13,15,["G4160","G1999"]],[15,17,["G3793"]],[17,18,["G3777"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G4864"]],[21,22,["G3777"]],[22,23,["G2596"]],[23,24,["G3588"]],[24,25,["G4172"]]]},{"k":27782,"v":[[0,1,["G3777"]],[1,2,["G1410"]],[2,4,["G3936"]],[4,7,["G4012","G3739"]],[7,9,["G3568"]],[9,10,["G2723"]],[10,11,["G3450"]]]},{"k":27783,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,4,["G3670"]],[4,6,["G4671"]],[6,7,["G3754"]],[7,8,["G2596"]],[8,9,["G3588"]],[9,10,["G3598"]],[10,11,["G3739"]],[11,13,["G3004"]],[13,14,["G139"]],[14,15,["G3779"]],[15,16,["G3000"]],[16,19,["G2316"]],[19,22,["G3971"]],[22,23,["G4100"]],[23,25,["G3956"]],[25,28,["G1125"]],[28,29,["G2596"]],[29,30,["G3588"]],[30,31,["G3551"]],[31,32,["G2532"]],[32,34,["G3588"]],[34,35,["G4396"]]]},{"k":27784,"v":[[0,2,["G2192"]],[2,3,["G1680"]],[3,4,["G1519"]],[4,5,["G2316"]],[5,6,["G3739"]],[6,7,["G3778"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G4327"]],[10,13,["G3195"]],[13,14,["G1510"]],[14,16,["G386"]],[16,19,["G3498"]],[19,20,["G5037"]],[20,23,["G1342"]],[23,24,["G2532"]],[24,25,["G94"]]]},{"k":27785,"v":[[0,1,["G1161"]],[1,2,["G1722","G5129"]],[2,5,["G778"]],[5,6,["G846"]],[6,8,["G2192"]],[8,9,["G1275"]],[9,11,["G4893"]],[11,14,["G677"]],[14,15,["G4314"]],[15,16,["G2316"]],[16,17,["G2532"]],[17,19,["G444"]]]},{"k":27786,"v":[[0,1,["G1161"]],[1,2,["G1223"]],[2,3,["G4119"]],[3,4,["G2094"]],[4,6,["G3854"]],[6,8,["G4160"]],[8,9,["G1654"]],[9,10,["G1519"]],[10,11,["G3450"]],[11,12,["G1484"]],[12,13,["G2532"]],[13,14,["G4376"]]]},{"k":27787,"v":[[0,1,["G1722","G3739","(G1161)"]],[1,2,["G5100"]],[2,3,["G2453"]],[3,4,["G575"]],[4,5,["G773"]],[5,6,["G2147"]],[6,7,["G3165"]],[7,8,["G48"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2411"]],[11,12,["G3756"]],[12,13,["G3326"]],[13,14,["G3793"]],[14,15,["G3761"]],[15,16,["G3326"]],[16,17,["G2351"]]]},{"k":27788,"v":[[0,1,["G3739"]],[1,2,["G1163"]],[2,6,["G3918"]],[6,7,["G1909"]],[7,8,["G4675"]],[8,9,["G2532"]],[9,10,["G2723"]],[10,14,["G1536","G2192"]],[14,15,["G4314"]],[15,16,["G3165"]]]},{"k":27789,"v":[[0,1,["G2228"]],[1,4,["G3778"]],[4,5,["G846"]],[5,7,["G2036"]],[7,12,["G1536","G2147"]],[12,14,["G92"]],[14,15,["G1722"]],[15,16,["G1698"]],[16,18,["G3450"]],[18,19,["G2476"]],[19,20,["G1909"]],[20,21,["G3588"]],[21,22,["G4892"]]]},{"k":27790,"v":[[0,1,["G2228"]],[1,4,["G4012"]],[4,5,["G5026"]],[5,6,["G3391"]],[6,7,["G5456"]],[7,8,["G3739"]],[8,10,["G2896"]],[10,11,["G2476"]],[11,12,["G1722"]],[12,13,["G846","(G3754)"]],[13,14,["G4012"]],[14,16,["G386"]],[16,19,["G3498"]],[19,20,["G1473"]],[20,24,["G2919"]],[24,25,["G5259"]],[25,26,["G5216"]],[26,28,["G4594"]]]},{"k":27791,"v":[[0,1,["G1161"]],[1,3,["G5344"]],[3,4,["G191"]],[4,6,["G5023"]],[6,10,["G1492","G197"]],[10,11,["G4012"]],[11,13,["G3598"]],[13,15,["G306"]],[15,16,["G846"]],[16,18,["G2036"]],[18,19,["G3752"]],[19,20,["G3079"]],[20,21,["G3588"]],[21,23,["G5506"]],[23,26,["G2597"]],[26,31,["G1231"]],[31,34,["G2596","G5209"]]]},{"k":27792,"v":[[0,1,["G5037"]],[1,3,["G1299"]],[3,5,["G1543"]],[5,7,["G5083"]],[7,8,["G3972"]],[8,9,["G5037"]],[9,13,["G2192"]],[13,14,["G425"]],[14,15,["G2532"]],[15,19,["G2967"]],[19,20,["G3367"]],[20,22,["G846"]],[22,23,["G2398"]],[23,25,["G5256"]],[25,26,["G2228"]],[26,28,["G4334"]],[28,29,["G846"]]]},{"k":27793,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,3,["G5100"]],[3,4,["G2250"]],[4,6,["G5344"]],[6,7,["G3854"]],[7,8,["G4862"]],[8,9,["G848"]],[9,10,["G1135"]],[10,11,["G1409"]],[11,13,["G5607"]],[13,15,["G2453"]],[15,18,["G3343"]],[18,19,["G3972"]],[19,20,["G2532"]],[20,21,["G191"]],[21,22,["G846"]],[22,23,["G4012"]],[23,24,["G3588"]],[24,25,["G4102"]],[25,26,["G1519"]],[26,27,["G5547"]]]},{"k":27794,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G1256"]],[4,5,["G4012"]],[5,6,["G1343","(G2532)"]],[6,7,["G1466"]],[7,8,["G2532"]],[8,9,["G2917"]],[9,11,["G1510"]],[11,12,["G5344"]],[12,13,["G1096","G1719"]],[13,15,["G611"]],[15,18,["G4198"]],[18,21,["G3568","G2192"]],[21,22,["(G1161)"]],[22,24,["G3335"]],[24,27,["G2540"]],[27,31,["G3333"]],[31,32,["G4571"]]]},{"k":27795,"v":[[0,1,["(G1161)"]],[1,2,["G1679"]],[2,3,["G2532"]],[3,4,["G3754"]],[4,5,["G5536"]],[5,9,["G1325"]],[9,10,["G846"]],[10,11,["G5259"]],[11,12,["G3972"]],[12,13,["G3704"]],[13,16,["G3089"]],[16,17,["G846"]],[17,18,["G1352"]],[18,19,["(G2532)"]],[19,21,["G3343"]],[21,22,["G846"]],[22,24,["G4437"]],[24,26,["G3656"]],[26,28,["G846"]]]},{"k":27796,"v":[[0,1,["G1161"]],[1,4,["G4137","G1333"]],[4,5,["G4201"]],[5,6,["G5347"]],[6,10,["G2983","G1240","G5344"]],[10,11,["G5037"]],[11,12,["G5344"]],[12,13,["G2309"]],[13,15,["G2698"]],[15,16,["G3588"]],[16,17,["G2453"]],[17,19,["G5485"]],[19,20,["G2641"]],[20,21,["G3972"]],[21,22,["G1210"]]]},{"k":27797,"v":[[0,1,["G3767"]],[1,3,["G5347"]],[3,6,["G1910"]],[6,7,["G3588"]],[7,8,["G1885"]],[8,9,["G3326"]],[9,10,["G5140"]],[10,11,["G2250"]],[11,13,["G305"]],[13,14,["G575"]],[14,15,["G2542"]],[15,16,["G1519"]],[16,17,["G2414"]]]},{"k":27798,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G4413"]],[7,9,["G3588"]],[9,10,["G2453"]],[10,11,["G1718"]],[11,12,["G846"]],[12,13,["G2596"]],[13,14,["G3972"]],[14,15,["G2532"]],[15,16,["G3870"]],[16,17,["G846"]]]},{"k":27799,"v":[[0,2,["G154"]],[2,3,["G5485"]],[3,4,["G2596"]],[4,5,["G846"]],[5,6,["G3704"]],[6,10,["G3343"]],[10,11,["G846"]],[11,12,["G1519"]],[12,13,["G2419"]],[13,15,["G4160","G1747"]],[15,16,["G2596"]],[16,17,["G3588"]],[17,18,["G3598"]],[18,20,["G337"]],[20,21,["G846"]]]},{"k":27800,"v":[[0,1,["G3767","(G3303)"]],[1,2,["G5347"]],[2,3,["G611"]],[3,5,["G3972"]],[5,8,["G5083"]],[8,9,["G1722"]],[9,10,["G2542"]],[10,11,["G1161"]],[11,14,["G1438"]],[14,15,["G3195"]],[15,16,["G1607"]],[16,17,["G1722","G5034"]],[17,18,[]]]},{"k":27801,"v":[[0,2,["G3588"]],[2,3,["G3767"]],[3,4,["G5346"]],[4,7,["G1722"]],[7,8,["G5213"]],[8,10,["G1415"]],[10,13,["G4782"]],[13,16,["G2723"]],[16,17,["G5129"]],[17,18,["G435"]],[18,22,["G1536","G2076"]],[22,23,["G824"]],[23,24,["G1722"]],[24,25,["G846"]]]},{"k":27802,"v":[[0,1,["G1161"]],[1,5,["G1304"]],[5,6,["G1722"]],[6,7,["G846"]],[7,8,["G4119"]],[8,9,["G2228"]],[9,10,["G1176"]],[10,11,["G2250"]],[11,14,["G2597"]],[14,15,["G1519"]],[15,16,["G2542"]],[16,18,["G3588"]],[18,20,["G1887"]],[20,21,["G2523"]],[21,22,["G1909"]],[22,23,["G3588"]],[23,25,["G968"]],[25,26,["G2753"]],[26,27,["G3972"]],[27,30,["G71"]]]},{"k":27803,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G3854"]],[5,6,["G3588"]],[6,7,["G2453"]],[7,10,["G2597"]],[10,11,["G575"]],[11,12,["G2414"]],[12,15,["G4026"]],[15,17,["G5342"]],[17,18,["G4183"]],[18,19,["G2532"]],[19,20,["G926"]],[20,21,["G157"]],[21,22,["G2596"]],[22,23,["G3972"]],[23,24,["G3739"]],[24,26,["G2480"]],[26,27,["G3756"]],[27,28,["G584"]]]},{"k":27804,"v":[[0,2,["G846"]],[2,5,["G626"]],[5,6,["G3777"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G3551"]],[9,11,["G3588"]],[11,12,["G2453"]],[12,13,["G3777"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G2411"]],[16,17,["G3777"]],[17,19,["G1519"]],[19,20,["G2541"]],[20,23,["G264"]],[23,25,["G5100"]],[25,27,[]]]},{"k":27805,"v":[[0,1,["G1161"]],[1,2,["G5347"]],[2,3,["G2309"]],[3,5,["G2698"]],[5,6,["G3588"]],[6,7,["G2453"]],[7,9,["G5485"]],[9,10,["G611"]],[10,11,["G3972"]],[11,13,["G2036"]],[13,14,["G2309"]],[14,17,["G305"]],[17,18,["G1519"]],[18,19,["G2414"]],[19,21,["G1563"]],[21,23,["G2919"]],[23,24,["G4012"]],[24,26,["G5130"]],[26,27,["G1909"]],[27,28,["G1700"]]]},{"k":27806,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G3972"]],[3,5,["G1510","G2476"]],[5,6,["G1909"]],[6,7,["G2541"]],[7,9,["G968"]],[9,10,["G3757"]],[10,11,["G3165"]],[11,12,["G1163"]],[12,15,["G2919"]],[15,18,["G2453"]],[18,23,["G91","G3762"]],[23,24,["G5613","(G2532)"]],[24,25,["G4771"]],[25,27,["G2566"]],[27,28,["G1921"]]]},{"k":27807,"v":[[0,1,["G1063"]],[1,2,["G1437"]],[2,3,["(G3303)"]],[3,6,["G91"]],[6,7,["G2532"]],[7,9,["G4238"]],[9,11,["G5100"]],[11,12,["G514"]],[12,14,["G2288"]],[14,16,["G3868"]],[16,17,["G3756"]],[17,19,["G599"]],[19,20,["G1161"]],[20,21,["G1487"]],[21,23,["G2076"]],[23,24,["G3762"]],[24,28,["G3739"]],[28,29,["G3778"]],[29,30,["G2723"]],[30,31,["G3450"]],[31,33,["G3762"]],[33,34,["G1410"]],[34,35,["G5483"]],[35,36,["G3165"]],[36,38,["G846"]],[38,40,["G1941"]],[40,42,["G2541"]]]},{"k":27808,"v":[[0,0,["(G1161)"]],[0,1,["G5119"]],[1,2,["G5347"]],[2,6,["G4814"]],[6,7,["G3326"]],[7,8,["G3588"]],[8,9,["G4824"]],[9,10,["G611"]],[10,13,["G1941"]],[13,15,["G2541"]],[15,16,["G1909"]],[16,17,["G2541"]],[17,20,["G4198"]]]},{"k":27809,"v":[[0,1,["G1161"]],[1,2,["G1230"]],[2,3,["G5100"]],[3,4,["G2250"]],[4,5,["G935"]],[5,6,["G67"]],[6,7,["G2532"]],[7,8,["G959"]],[8,9,["G2658"]],[9,10,["G1519"]],[10,11,["G2542"]],[11,13,["G782"]],[13,14,["G5347"]]]},{"k":27810,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,5,["G1304"]],[5,6,["G1563"]],[6,7,["G4119"]],[7,8,["G2250"]],[8,9,["G5347"]],[9,10,["G394"]],[10,11,["G3972"]],[11,12,["G2596"]],[12,14,["G3588"]],[14,15,["G935"]],[15,16,["G3004"]],[16,18,["G2076"]],[18,20,["G5100"]],[20,21,["G435"]],[21,24,["G2641","G1198"]],[24,25,["G5259"]],[25,26,["G5344"]]]},{"k":27811,"v":[[0,1,["G4012"]],[1,2,["G3739"]],[2,4,["G3450"]],[4,5,["G1096"]],[5,6,["G1519"]],[6,7,["G2414"]],[7,8,["G3588"]],[8,10,["G749"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G4245"]],[13,15,["G3588"]],[15,16,["G2453"]],[16,17,["G1718"]],[17,19,["G154"]],[19,22,["G1349"]],[22,23,["G2596"]],[23,24,["G846"]]]},{"k":27812,"v":[[0,1,["G4314"]],[1,2,["G3739"]],[2,4,["G611"]],[4,5,["(G3754)"]],[5,6,["G2076"]],[6,7,["G3756"]],[7,9,["G1485"]],[9,12,["G4514"]],[12,14,["G5483"]],[14,15,["G5100"]],[15,16,["G444"]],[16,17,["G1519"]],[17,18,["G684"]],[18,19,["G4250"]],[19,20,["G2228"]],[20,24,["G2723"]],[24,25,["G2192"]],[25,26,["G3588"]],[26,27,["G2725"]],[27,30,["G2596","G4383"]],[30,31,["G5037"]],[31,33,["G2983","G5117"]],[33,37,["G627"]],[37,38,["G4012"]],[38,39,["G3588"]],[39,43,["G1462"]]]},{"k":27813,"v":[[0,1,["G3767"]],[1,3,["G846"]],[3,5,["G4905"]],[5,6,["G1759"]],[6,8,["G3367"]],[8,9,["G311"]],[9,11,["G3588"]],[11,12,["G1836"]],[12,14,["G2523"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,18,["G968"]],[18,20,["G2753"]],[20,21,["G3588"]],[21,22,["G435"]],[22,26,["G71"]]]},{"k":27814,"v":[[0,1,["G4012"]],[1,2,["G3739"]],[2,4,["G3588"]],[4,5,["G2725"]],[5,7,["G2476"]],[7,9,["G2018"]],[9,10,["G3762"]],[10,11,["G156"]],[11,14,["G3739"]],[14,16,["G1473"]],[16,17,["G5282"]]]},{"k":27815,"v":[[0,1,["G1161"]],[1,2,["G2192"]],[2,3,["G5100"]],[3,4,["G2213"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G4012"]],[7,9,["G2398"]],[9,10,["G1175"]],[10,11,["G2532"]],[11,12,["G4012"]],[12,13,["G5100"]],[13,14,["G2424"]],[14,17,["G2348"]],[17,18,["G3739"]],[18,19,["G3972"]],[19,20,["G5335"]],[20,23,["G2198"]]]},{"k":27816,"v":[[0,1,["G1161"]],[1,3,["G1473"]],[3,4,["G639"]],[4,5,["G1519"]],[5,9,["G2214","G4012","G5127"]],[9,11,["G3004"]],[11,13,["G1487"]],[13,15,["G1014"]],[15,16,["G4198"]],[16,17,["G1519"]],[17,18,["G2419"]],[18,20,["G2546"]],[20,22,["G2919"]],[22,23,["G4012"]],[23,25,["G5130"]]]},{"k":27817,"v":[[0,1,["G1161"]],[1,3,["G3972"]],[3,5,["G1941"]],[5,7,["(G846)"]],[7,8,["G5083"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G1233"]],[11,13,["G4575"]],[13,15,["G2753"]],[15,16,["G846"]],[16,19,["G5083"]],[19,20,["G2193","G3757"]],[20,23,["G3992"]],[23,24,["G846"]],[24,25,["G4314"]],[25,26,["G2541"]]]},{"k":27818,"v":[[0,1,["G1161"]],[1,2,["G67"]],[2,3,["G5346"]],[3,4,["G4314"]],[4,5,["G5347"]],[5,7,["G1014"]],[7,8,["G2532"]],[8,9,["G191"]],[9,10,["G3588"]],[10,11,["G444"]],[11,12,["G848","(G1161)"]],[12,14,["G839"]],[14,15,["G5346"]],[15,16,["G3588"]],[16,19,["G191"]],[19,20,["G846"]]]},{"k":27819,"v":[[0,1,["G3767"]],[1,3,["G3588"]],[3,4,["G1887"]],[4,6,["G67"]],[6,8,["G2064"]],[8,9,["G2532"]],[9,10,["G959"]],[10,11,["G3326"]],[11,12,["G4183"]],[12,13,["G5325"]],[13,14,["G2532"]],[14,16,["G1525"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,21,["G201"]],[21,22,["G4862","(G5037)"]],[22,23,["G3588"]],[23,25,["G5506"]],[25,26,["G2532"]],[26,27,["G2596","G1851"]],[27,28,["G435"]],[28,29,["(G5607)"]],[29,30,["G3588"]],[30,31,["G4172"]],[31,32,["(G2532)"]],[32,33,["G5347"]],[33,34,["G2753"]],[34,35,["G3972"]],[35,38,["G71"]]]},{"k":27820,"v":[[0,1,["G2532"]],[1,2,["G5347"]],[2,3,["G5346"]],[3,4,["G935"]],[4,5,["G67"]],[5,6,["G2532"]],[6,7,["G3956"]],[7,8,["G435"]],[8,12,["G4840"]],[12,14,["G2254"]],[14,16,["G2334"]],[16,18,["G5126"]],[18,19,["G4012"]],[19,20,["G3739"]],[20,21,["G3956"]],[21,22,["G3588"]],[22,23,["G4128"]],[23,25,["G3588"]],[25,26,["G2453"]],[26,28,["G1793"]],[28,30,["G3427"]],[30,31,["G5037"]],[31,32,["G1722"]],[32,33,["G2414"]],[33,34,["G2532"]],[34,36,["G1759"]],[36,37,["G1916"]],[37,39,["G846"]],[39,40,["G1163"]],[40,41,["G3361"]],[41,43,["G2198"]],[43,45,["G3371"]]]},{"k":27821,"v":[[0,1,["G1161"]],[1,3,["G1473"]],[3,4,["G2638"]],[4,6,["G846"]],[6,8,["G4238"]],[8,9,["G3367"]],[9,10,["G514"]],[10,12,["G2288"]],[12,13,["G1161"]],[13,15,["G5127"]],[15,16,["G848"]],[16,17,["(G2532)"]],[17,18,["G1941"]],[18,20,["G4575"]],[20,23,["G2919"]],[23,25,["G3992"]],[25,26,["G846"]]]},{"k":27822,"v":[[0,1,["G4012"]],[1,2,["G3739"]],[2,4,["G2192"]],[4,5,["G3756"]],[5,7,["G804","G5100"]],[7,9,["G1125"]],[9,12,["G2962"]],[12,13,["G1352"]],[13,18,["G4254","G846"]],[18,19,["G1909"]],[19,20,["G5216"]],[20,21,["G2532"]],[21,22,["G3122"]],[22,23,["G1909"]],[23,24,["G4675"]],[24,26,["G935"]],[26,27,["G67"]],[27,28,["G3704"]],[28,30,["G351"]],[30,31,["G1096"]],[31,34,["G2192"]],[34,35,["G5100"]],[35,37,["G1125"]]]},{"k":27823,"v":[[0,1,["G1063"]],[1,3,["G1380"]],[3,5,["G3427"]],[5,6,["G249"]],[6,8,["G3992"]],[8,10,["G1198"]],[10,11,["G2532"]],[11,12,["G3361"]],[12,13,["G2532"]],[13,15,["G4591"]],[15,16,["G3588"]],[16,17,["G156"]],[17,19,["G2596"]],[19,20,["G846"]]]},{"k":27824,"v":[[0,1,["G1161"]],[1,2,["G67"]],[2,3,["G5346"]],[3,4,["G4314"]],[4,5,["G3972"]],[5,6,["G4671"]],[6,8,["G2010"]],[8,10,["G3004"]],[10,11,["G5228"]],[11,12,["G4572"]],[12,13,["G5119"]],[13,14,["G3972"]],[14,16,["G1614"]],[16,17,["G3588"]],[17,18,["G5495"]],[18,22,["G626"]]]},{"k":27825,"v":[[0,2,["G2233"]],[2,3,["G1683"]],[3,4,["G3107"]],[4,5,["G935"]],[5,6,["G67"]],[6,9,["G3195"]],[9,12,["G626"]],[12,14,["G4594"]],[14,15,["G1909"]],[15,16,["G4675"]],[16,17,["G4012"]],[17,18,["G3956"]],[18,21,["G3739"]],[21,24,["G1458"]],[24,25,["G5259"]],[25,27,["G2453"]]]},{"k":27826,"v":[[0,1,["G3122"]],[1,4,["(G1492)"]],[4,5,["G4571"]],[5,7,["G5607"]],[7,8,["G1109"]],[8,10,["G3956"]],[10,11,["G1485"]],[11,12,["G5037","(G2532)"]],[12,13,["G2213"]],[13,16,["G2596"]],[16,18,["G2453"]],[18,19,["G1352"]],[19,21,["G1189"]],[21,22,["G4675"]],[22,24,["G191"]],[24,25,["G3450"]],[25,26,["G3116"]]]},{"k":27827,"v":[[0,1,["G3450"]],[1,4,["G981","(G3303","G3767)"]],[4,5,["G1537"]],[5,7,["G3503"]],[7,9,["G1096"]],[9,10,["G575"]],[10,12,["G746"]],[12,13,["G1722"]],[13,15,["G3450"]],[15,16,["G1484"]],[16,17,["G1722"]],[17,18,["G2414"]],[18,19,["G2467"]],[19,20,["G3956"]],[20,21,["G3588"]],[21,22,["G2453"]]]},{"k":27828,"v":[[0,2,["G4267"]],[2,3,["G3165"]],[3,6,["G509"]],[6,7,["G1437"]],[7,9,["G2309"]],[9,10,["G3140"]],[10,11,["G3754"]],[11,12,["G2596"]],[12,13,["G3588"]],[13,15,["G196"]],[15,16,["G139"]],[16,18,["G2251"]],[18,19,["G2356"]],[19,21,["G2198"]],[21,23,["G5330"]]]},{"k":27829,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,4,["G2476"]],[4,7,["G2919"]],[7,8,["G1909"]],[8,10,["G1680"]],[10,12,["G3588"]],[12,13,["G1860"]],[13,14,["G1096"]],[14,15,["G5259"]],[15,16,["G2316"]],[16,17,["G4314"]],[17,19,["G3962"]]]},{"k":27830,"v":[[0,1,["G1519"]],[1,2,["G3739"]],[2,4,["G2257"]],[4,6,["G1429"]],[6,7,["G1722","G1616"]],[7,8,["G3000"]],[8,10,["G2250"]],[10,11,["G2532"]],[11,12,["G3571"]],[12,13,["G1679"]],[13,15,["G2658"]],[15,16,["G4012"]],[16,17,["G3739"]],[17,18,["G1680"]],[18,20,["G935"]],[20,21,["G67"]],[21,24,["G1458"]],[24,25,["G5259"]],[25,26,["G3588"]],[26,27,["G2453"]]]},{"k":27831,"v":[[0,1,["G5101"]],[1,5,["G2919"]],[5,8,["G571"]],[8,9,["G3844"]],[9,10,["G5213"]],[10,11,["G1487"]],[11,12,["G2316"]],[12,14,["G1453"]],[14,16,["G3498"]]]},{"k":27832,"v":[[0,1,["G1473"]],[1,2,["G3303","(G3767)"]],[2,3,["G1380"]],[3,5,["G1683"]],[5,8,["G1163"]],[8,10,["G4238"]],[10,12,["G4183"]],[12,13,["G1727"]],[13,14,["G4314"]],[14,15,["G3588"]],[15,16,["G3686"]],[16,18,["G2424"]],[18,20,["G3480"]]]},{"k":27833,"v":[[0,2,["G3739"]],[2,4,["G2532"]],[4,5,["G4160"]],[5,6,["G1722"]],[6,7,["G2414"]],[7,8,["G2532"]],[8,9,["G4183"]],[9,11,["G3588"]],[11,12,["G40"]],[12,14,["G1473"]],[14,16,["G2623"]],[16,18,["G5438"]],[18,20,["G2983"]],[20,21,["G1849"]],[21,22,["G3844"]],[22,23,["G3588"]],[23,25,["G749"]],[25,26,["G5037"]],[26,28,["G846"]],[28,32,["G337"]],[32,37,["G2702","G5586"]],[37,38,[]]]},{"k":27834,"v":[[0,1,["G2532"]],[1,3,["G5097"]],[3,4,["G846"]],[4,5,["G4178"]],[5,7,["G2596","G3956"]],[7,8,["G4864"]],[8,10,["G315"]],[10,13,["G987"]],[13,14,["G5037"]],[14,18,["G1693","G4057"]],[18,19,["G846"]],[19,21,["G1377"]],[21,23,["G2193","(G2532)"]],[23,24,["G1519"]],[24,25,["G1854"]],[25,26,["G4172"]]]},{"k":27835,"v":[[0,1,["G1722","G3739"]],[1,2,["(G2532)"]],[2,4,["G4198"]],[4,5,["G1519"]],[5,6,["G1154"]],[6,7,["G3326"]],[7,8,["G1849"]],[8,9,["G2532"]],[9,10,["G2011"]],[10,11,["G3844"]],[11,12,["G3588"]],[12,14,["G749"]]]},{"k":27836,"v":[[0,2,["G3319","G2250"]],[2,4,["G935"]],[4,5,["G1492"]],[5,7,["G2596"]],[7,8,["G3588"]],[8,9,["G3598"]],[9,11,["G5457"]],[11,13,["G3771"]],[13,14,["G5228"]],[14,15,["G3588"]],[15,16,["G2987"]],[16,18,["G3588"]],[18,19,["G2246"]],[19,22,["G4034"]],[22,23,["G3165"]],[23,24,["G2532"]],[24,27,["G4198"]],[27,28,["G4862"]],[28,29,["G1698"]]]},{"k":27837,"v":[[0,1,["G1161"]],[1,3,["G2257"]],[3,5,["G3956"]],[5,6,["G2667"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G1093"]],[9,11,["G191"]],[11,13,["G5456"]],[13,14,["G2980"]],[14,15,["G4314"]],[15,16,["G3165"]],[16,17,["G2532"]],[17,18,["G3004"]],[18,20,["G3588"]],[20,21,["G1446"]],[21,22,["G1258"]],[22,23,["G4549"]],[23,24,["G4549"]],[24,25,["G5101"]],[25,26,["G1377"]],[26,28,["G3165"]],[28,31,["G4642"]],[31,33,["G4671"]],[33,35,["G2979"]],[35,36,["G4314"]],[36,38,["G2759"]]]},{"k":27838,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G2036"]],[3,4,["G5101"]],[4,5,["G1488"]],[5,7,["G2962"]],[7,8,["G1161"]],[8,9,["G3588"]],[9,10,["G2036"]],[10,11,["G1473"]],[11,12,["G1510"]],[12,13,["G2424"]],[13,14,["G3739"]],[14,15,["G4771"]],[15,16,["G1377"]]]},{"k":27839,"v":[[0,1,["G235"]],[1,2,["G450"]],[2,3,["G2532"]],[3,4,["G2476"]],[4,5,["G1909"]],[5,6,["G4675"]],[6,7,["G4228"]],[7,8,["G1063"]],[8,11,["G3700"]],[11,13,["G4671"]],[13,14,["G1519"]],[14,15,["G5124"]],[15,18,["G4400"]],[18,19,["G4571"]],[19,21,["G5257"]],[21,22,["G2532"]],[22,24,["G3144"]],[24,25,["G5037"]],[25,29,["G3739"]],[29,32,["G1492"]],[32,33,["G5037"]],[33,39,["G3739"]],[39,42,["G3700"]],[42,44,["G4671"]]]},{"k":27840,"v":[[0,1,["G1807"]],[1,2,["G4571"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G2992"]],[5,6,["G2532"]],[6,8,["G3588"]],[8,9,["G1484"]],[9,10,["G1519"]],[10,11,["G3739"]],[11,12,["G3568"]],[12,14,["G649"]],[14,15,["G4571"]]]},{"k":27841,"v":[[0,2,["G455"]],[2,3,["G846"]],[3,4,["G3788"]],[4,7,["G1994"]],[7,9,["G575"]],[9,10,["G4655"]],[10,11,["G1519"]],[11,12,["G5457"]],[12,13,["G2532"]],[13,15,["G3588"]],[15,16,["G1849"]],[16,18,["G4567"]],[18,19,["G1909"]],[19,20,["G2316"]],[20,21,["G3588"]],[21,22,["G846"]],[22,24,["G2983"]],[24,25,["G859"]],[25,27,["G266"]],[27,28,["G2532"]],[28,29,["G2819"]],[29,30,["G1722"]],[30,31,["G3588"]],[31,34,["G37"]],[34,36,["G4102"]],[36,37,["G3588"]],[37,39,["G1519"]],[39,40,["G1691"]]]},{"k":27842,"v":[[0,1,["G3606"]],[1,3,["G935"]],[3,4,["G67"]],[4,6,["G1096"]],[6,7,["G3756"]],[7,8,["G545"]],[8,10,["G3588"]],[10,11,["G3770"]],[11,12,["G3701"]]]},{"k":27843,"v":[[0,1,["G235"]],[1,2,["G518"]],[2,3,["G4412"]],[3,5,["G3588"]],[5,6,["G1722"]],[6,7,["G1154"]],[7,8,["G2532"]],[8,10,["G2414"]],[10,11,["G5037"]],[11,12,["G1519"]],[12,13,["G3956"]],[13,14,["G3588"]],[14,15,["G5561"]],[15,17,["G2449"]],[17,18,["G2532"]],[18,21,["G3588"]],[21,22,["G1484"]],[22,26,["G3340"]],[26,27,["G2532"]],[27,28,["G1994"]],[28,29,["G1909"]],[29,30,["G2316"]],[30,32,["G4238"]],[32,33,["G2041"]],[33,34,["G514"]],[34,36,["G3341"]]]},{"k":27844,"v":[[0,3,["G1752","G5130"]],[3,4,["G3588"]],[4,5,["G2453"]],[5,6,["G4815"]],[6,7,["G3165"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G2411"]],[10,13,["G3987"]],[13,15,["G1315"]],[15,16,[]]]},{"k":27845,"v":[[0,2,["G3767"]],[2,3,["G5177"]],[3,4,["G1947"]],[4,5,["G3844"]],[5,6,["G2316"]],[6,8,["G2476"]],[8,9,["G891"]],[9,10,["G5026"]],[10,11,["G2250"]],[11,12,["G3140"]],[12,13,["G5037"]],[13,15,["G3398"]],[15,16,["G2532"]],[16,17,["G3173"]],[17,18,["G3004"]],[18,19,["G3762"]],[19,21,["G1622"]],[21,24,["G3739","(G5037)"]],[24,25,["G3588"]],[25,26,["G4396"]],[26,27,["G2532"]],[27,28,["G3475"]],[28,30,["G2980"]],[30,31,["G3195"]],[31,32,["G1096"]]]},{"k":27846,"v":[[0,1,["(G1487)"]],[1,2,["G5547"]],[2,4,["G3805"]],[4,6,["(G1487)"]],[6,11,["G4413"]],[11,14,["G1537","G386"]],[14,17,["G3498"]],[17,19,["G3195"]],[19,20,["G2605"]],[20,21,["G5457"]],[21,23,["G3588"]],[23,24,["G2992"]],[24,25,["G2532"]],[25,27,["G3588"]],[27,28,["G1484"]]]},{"k":27847,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G5023"]],[4,7,["G626"]],[7,8,["G5347"]],[8,9,["G5346"]],[9,12,["G3173"]],[12,13,["G5456"]],[13,14,["G3972"]],[14,18,["G3105"]],[18,19,["G4183"]],[19,20,["G1121"]],[20,22,["G4062"]],[22,23,["G4571"]],[23,24,["G3130"]]]},{"k":27848,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5346"]],[3,7,["G3105","G3756"]],[7,9,["G2903"]],[9,10,["G5347"]],[10,11,["G235"]],[11,13,["G669"]],[13,15,["G4487"]],[15,17,["G225"]],[17,18,["G2532"]],[18,19,["G4997"]]]},{"k":27849,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G935"]],[3,4,["G1987"]],[4,5,["G4012"]],[5,7,["G5130"]],[7,8,["G4314"]],[8,9,["G3739"]],[9,10,["G2532"]],[10,12,["G2980"]],[12,13,["G3955"]],[13,14,["G1063"]],[14,17,["G3982"]],[17,19,["G3756","G5100"]],[19,22,["G5130"]],[22,24,["G2990"]],[24,26,["G846"]],[26,27,["G1063"]],[27,29,["G5124"]],[29,30,["G2076"]],[30,31,["G3756"]],[31,32,["G4238"]],[32,33,["G1722"]],[33,35,["G1137"]]]},{"k":27850,"v":[[0,1,["G935"]],[1,2,["G67"]],[2,3,["G4100"]],[3,5,["G3588"]],[5,6,["G4396"]],[6,8,["G1492"]],[8,9,["G3754"]],[9,11,["G4100"]]]},{"k":27851,"v":[[0,1,["G1161"]],[1,2,["G67"]],[2,3,["G5346"]],[3,4,["G4314"]],[4,5,["G3972"]],[5,6,["G1722","G3641"]],[6,8,["G3982"]],[8,9,["G3165"]],[9,11,["G1096"]],[11,13,["G5546"]]]},{"k":27852,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,3,["G2036"]],[3,5,["G2172","G302"]],[5,7,["G2316"]],[7,9,["G3756"]],[9,10,["G3440"]],[10,11,["G4571"]],[11,12,["G235"]],[12,13,["G2532"]],[13,14,["G3956"]],[14,16,["G191"]],[16,17,["G3450"]],[17,19,["G4594"]],[19,20,["G1096"]],[20,21,["G2532"]],[21,22,["G1722","G3641"]],[22,23,["G2532"]],[23,24,["G1722","G4183"]],[24,25,["G5108"]],[25,26,["G3697"]],[26,27,["G2504"]],[27,28,["G1510"]],[28,29,["G3924"]],[29,30,["G5130"]],[30,31,["G1199"]]]},{"k":27853,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G5023"]],[5,6,["G2036"]],[6,7,["G3588"]],[7,8,["G935"]],[8,10,["G450"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G2232"]],[13,14,["G5037"]],[14,15,["G959"]],[15,16,["G2532"]],[16,20,["G4775"]],[20,21,["G846"]]]},{"k":27854,"v":[[0,1,["G2532"]],[1,6,["G402"]],[6,8,["G2980"]],[8,10,["G4314","G240"]],[10,11,["G3004"]],[11,12,["G3778"]],[12,13,["G444"]],[13,14,["G4238"]],[14,15,["G3762"]],[15,16,["G514"]],[16,18,["G2288"]],[18,19,["G2228"]],[19,21,["G1199"]]]},{"k":27855,"v":[[0,1,["G1161"]],[1,2,["G5346"]],[2,3,["G67"]],[3,5,["G5347"]],[5,6,["G3778"]],[6,7,["G444"]],[7,8,["G1410"]],[8,13,["G630"]],[13,14,["G1487"]],[14,17,["G3361"]],[17,18,["G1941"]],[18,20,["G2541"]]]},{"k":27856,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,5,["G2919"]],[5,7,["G2248"]],[7,9,["G636"]],[9,10,["G1519"]],[10,11,["G2482"]],[11,13,["G3860","(G5037)"]],[13,14,["G3972"]],[14,15,["G2532"]],[15,16,["G5100"]],[16,17,["G2087"]],[17,18,["G1202"]],[18,21,["G3686"]],[21,22,["G2457"]],[22,24,["G1543"]],[24,26,["G4575"]],[26,27,["G4686"]]]},{"k":27857,"v":[[0,1,["G1161"]],[1,3,["G1910"]],[3,5,["G4143"]],[5,7,["G98"]],[7,9,["G321"]],[9,10,["G3195"]],[10,12,["G4126"]],[12,14,["G3588"]],[14,15,["G5117"]],[15,16,["G2596"]],[16,17,["G773"]],[17,19,["G708"]],[19,21,["G3110"]],[21,23,["G2331"]],[23,24,["G5607"]],[24,25,["G4862"]],[25,26,["G2254"]]]},{"k":27858,"v":[[0,1,["G5037"]],[1,2,["G3588"]],[2,3,["G2087"]],[3,6,["G2609"]],[6,7,["G1519"]],[7,8,["G4605"]],[8,9,["G5037"]],[9,10,["G2457"]],[10,11,["G5364"]],[11,12,["G5530"]],[12,13,["G3972"]],[13,17,["G2010"]],[17,19,["G4198"]],[19,20,["G4314"]],[20,22,["G5384"]],[22,25,["G5177","G1958"]]]},{"k":27859,"v":[[0,7,["G2547","G321"]],[7,10,["G5284"]],[10,11,["G2954"]],[11,13,["G3588"]],[13,14,["G417"]],[14,15,["G1511"]],[15,16,["G1727"]]]},{"k":27860,"v":[[0,1,["G5037"]],[1,6,["G1277"]],[6,7,["G3588"]],[7,8,["G3989"]],[8,9,["G2596"]],[9,10,["G2791"]],[10,11,["G2532"]],[11,12,["G3828"]],[12,14,["G2718"]],[14,15,["G1519"]],[15,16,["G3460"]],[16,20,["G3073"]]]},{"k":27861,"v":[[0,2,["G2546"]],[2,3,["G3588"]],[3,4,["G1543"]],[4,5,["G2147"]],[5,7,["G4143"]],[7,9,["G222"]],[9,10,["G4126"]],[10,11,["G1519"]],[11,12,["G2482"]],[12,15,["G1688"]],[15,16,["G2248"]],[16,17,["G1519","G846"]]]},{"k":27862,"v":[[0,1,["G1161"]],[1,6,["G1020"]],[6,7,["G2425"]],[7,8,["G2250"]],[8,9,["G2532"]],[9,10,["G3433"]],[10,12,["G1096"]],[12,14,["G2596"]],[14,15,["G2834"]],[15,16,["G3588"]],[16,17,["G417"]],[17,18,["G3361"]],[18,19,["G4330"]],[19,20,["G2248"]],[20,23,["G5284"]],[23,24,["G2914"]],[24,26,["G2596"]],[26,27,["G4534"]]]},{"k":27863,"v":[[0,1,["G5037"]],[1,2,["G3433"]],[2,3,["G3881"]],[3,4,["G846"]],[4,5,["G2064"]],[5,6,["G1519"]],[6,7,["G5100"]],[7,8,["G5117"]],[8,11,["G2564"]],[11,13,["G2568"]],[13,15,["G1451"]],[15,16,["G3739"]],[16,17,["G2258"]],[17,19,["G4172"]],[19,21,["G2996"]]]},{"k":27864,"v":[[0,1,["G1161"]],[1,3,["G2425"]],[3,4,["G5550"]],[4,6,["G1230"]],[6,7,["G2532"]],[7,9,["G4144"]],[9,10,["G5607"]],[10,11,["G2235"]],[11,12,["G2000"]],[12,13,["(G2532)"]],[13,14,["G3588"]],[14,15,["G3521"]],[15,19,["G3928","G2235"]],[19,20,["G3972"]],[20,21,["G3867"]],[21,22,[]]]},{"k":27865,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G435"]],[5,7,["G2334"]],[7,8,["G3754"]],[8,10,["G4144"]],[10,11,["G3195"]],[11,12,["G1510"]],[12,13,["G3326"]],[13,14,["G5196"]],[14,15,["G2532"]],[15,16,["G4183"]],[16,17,["G2209"]],[17,18,["G3756"]],[18,19,["G3440"]],[19,21,["G3588"]],[21,22,["G5414"]],[22,23,["G2532"]],[23,24,["G4143"]],[24,25,["G235"]],[25,26,["G2532"]],[26,28,["G2257"]],[28,29,["G5590"]]]},{"k":27866,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1543"]],[3,4,["G3982"]],[4,5,["G3588"]],[5,6,["G2942"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,12,["G3490"]],[12,13,["G3123"]],[13,14,["G2228"]],[14,19,["G3004"]],[19,20,["G5259"]],[20,21,["G3972"]]]},{"k":27867,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G3040"]],[4,5,["G5225"]],[5,7,["G428"]],[7,8,["G4314"]],[8,10,["G3915"]],[10,11,["G3588"]],[11,13,["G4119"]],[13,14,["G5087","G1012"]],[14,16,["G321"]],[16,18,["G2547"]],[18,22,["G1513"]],[22,24,["G1410"]],[24,25,["G2658"]],[25,26,["G1519"]],[26,27,["G5405"]],[27,31,["G3914"]],[31,35,["G3040"]],[35,37,["G2914"]],[37,39,["G991"]],[39,40,["G2596"]],[40,43,["G3047"]],[43,44,["G2532"]],[44,46,["G5566"]]]},{"k":27868,"v":[[0,1,["G1161"]],[1,5,["G3558"]],[5,7,["G5285"]],[7,8,["G1380"]],[8,12,["G2902"]],[12,14,["G4286"]],[14,15,["G142","G788"]],[15,20,["G3881"]],[20,21,["G2914"]]]},{"k":27869,"v":[[0,1,["G1161"]],[1,2,["G3756"]],[2,3,["G4183"]],[3,4,["G3326"]],[4,6,["G906"]],[6,7,["G2596"]],[7,8,["G846"]],[8,10,["G5189"]],[10,11,["G417"]],[11,12,["G2564"]],[12,13,["G2148"]]]},{"k":27870,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G4143"]],[4,6,["G4884"]],[6,7,["G2532"]],[7,8,["G1410"]],[8,9,["G3361"]],[9,11,["G503"]],[11,13,["G3588"]],[13,14,["G417"]],[14,18,["G1929","G5342"]]]},{"k":27871,"v":[[0,1,["G1161"]],[1,3,["G5295"]],[3,5,["G5100"]],[5,6,["G3519"]],[6,9,["G2564"]],[9,10,["G2802"]],[10,14,["G2480","G3433"]],[14,17,["G1096","G4031"]],[17,18,["G3588"]],[18,19,["G4627"]]]},{"k":27872,"v":[[0,1,["G3739"]],[1,6,["G142"]],[6,8,["G5530"]],[8,9,["G996"]],[9,10,["G5269"]],[10,11,["G3588"]],[11,12,["G4143"]],[12,13,["G5037"]],[13,14,["G5399"]],[14,15,["G3361"]],[15,18,["G1601"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G4950"]],[21,23,["G5465","G4632"]],[23,25,["G3779"]],[25,27,["G5342"]]]},{"k":27873,"v":[[0,1,["G1161"]],[1,2,["G2257"]],[2,4,["G4971"]],[4,8,["G5492"]],[8,9,["G3588"]],[9,10,["G1836"]],[10,15,["G4160","G1546"]]]},{"k":27874,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5154"]],[3,7,["G4496"]],[7,11,["G849"]],[11,12,["G3588"]],[12,13,["G4631"]],[13,15,["G3588"]],[15,16,["G4143"]]]},{"k":27875,"v":[[0,1,["G1161"]],[1,3,["G3383"]],[3,4,["G2246"]],[4,5,["G3383"]],[5,6,["G798"]],[6,7,["G1909"]],[7,8,["G4119"]],[8,9,["G2250"]],[9,10,["G2014"]],[10,11,["G5037"]],[11,12,["G3756"]],[12,13,["G3641"]],[13,14,["G5494"]],[14,16,["G1945"]],[16,18,["G3956"]],[18,19,["G1680"]],[19,21,["G2248"]],[21,24,["G4982"]],[24,26,["G3063"]],[26,28,["G4014"]]]},{"k":27876,"v":[[0,1,["G1161"]],[1,2,["(G5225)"]],[2,3,["G4183"]],[3,4,["G776"]],[4,5,["G3972"]],[5,7,["G2476"]],[7,8,["G1722"]],[8,10,["G3319"]],[10,12,["G848"]],[12,14,["G2036","(G5599)"]],[14,15,["G435"]],[15,17,["G1163"]],[17,18,["(G3303)"]],[18,19,["G3980"]],[19,21,["G3427"]],[21,23,["G3361"]],[23,25,["G321"]],[25,26,["G575"]],[26,27,["G2914"]],[27,28,["G5037"]],[28,31,["G2770"]],[31,32,["G5026"]],[32,33,["G5196"]],[33,34,["G2532"]],[34,35,["G2209"]]]},{"k":27877,"v":[[0,1,["G2532"]],[1,2,["G3569"]],[2,4,["G3867"]],[4,5,["G5209"]],[5,10,["G2114"]],[10,11,["G1063"]],[11,14,["G2071"]],[14,15,["G3762"]],[15,16,["G580"]],[16,20,["G5590"]],[20,21,["G1537"]],[21,22,["G5216"]],[22,23,["G4133"]],[23,25,["G3588"]],[25,26,["G4143"]]]},{"k":27878,"v":[[0,1,["G1063"]],[1,4,["G3936"]],[4,5,["G3427"]],[5,6,["G5026"]],[6,7,["G3571"]],[7,9,["G32"]],[9,11,["G2316"]],[11,12,["G3739"]],[12,14,["G1510"]],[14,15,["G2532"]],[15,16,["G3739"]],[16,18,["G3000"]]]},{"k":27879,"v":[[0,1,["G3004"]],[1,2,["G5399"]],[2,3,["G3361"]],[3,4,["G3972"]],[4,5,["G4571"]],[5,6,["G1163"]],[6,9,["G3936"]],[9,10,["G2541"]],[10,11,["G2532"]],[11,12,["G2400"]],[12,13,["G2316"]],[13,15,["G5483"]],[15,16,["G4671"]],[16,17,["G3956"]],[17,20,["G4126"]],[20,21,["G3326"]],[21,22,["G4675"]]]},{"k":27880,"v":[[0,1,["G1352"]],[1,2,["G435"]],[2,6,["G2114"]],[6,7,["G1063"]],[7,9,["G4100"]],[9,10,["G2316"]],[10,11,["G3754"]],[11,12,["(G3779)"]],[12,14,["G2071"]],[14,16,["G2596","G3739","G5158"]],[16,19,["G2980"]],[19,20,["G3427"]]]},{"k":27881,"v":[[0,1,["G1161"]],[1,2,["G2248"]],[2,3,["G1163"]],[3,5,["G1601"]],[5,6,["G1519"]],[6,8,["G5100"]],[8,9,["G3520"]]]},{"k":27882,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,4,["G5065"]],[4,5,["G3571"]],[5,7,["G1096"]],[7,9,["G2257"]],[9,14,["G1308"]],[14,15,["G1722"]],[15,16,["G99"]],[16,17,["G2596"]],[17,18,["G3319","G3571"]],[18,19,["G3588"]],[19,20,["G3492"]],[20,21,["G5282"]],[21,23,["G848"]],[23,25,["G4317"]],[25,27,["G5100"]],[27,28,["G5561"]]]},{"k":27883,"v":[[0,1,["G2532"]],[1,2,["G1001"]],[2,4,["G2147"]],[4,6,["G1501"]],[6,7,["G3712"]],[7,8,["G1161"]],[8,15,["G1339","G1024"]],[15,17,["G1001"]],[17,18,["G3825"]],[18,19,["G2532"]],[19,20,["G2147"]],[20,22,["G1178"]],[22,23,["G3712"]]]},{"k":27884,"v":[[0,1,["G5037"]],[1,2,["G5399"]],[2,3,["G3381"]],[3,7,["G1601"]],[7,8,["G1519"]],[8,9,["G5138","G5117"]],[9,11,["G4496"]],[11,12,["G5064"]],[12,13,["G45"]],[13,14,["G1537"]],[14,17,["G4403"]],[17,19,["G2172"]],[19,22,["G2250","(G1096)"]]]},{"k":27885,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G3492"]],[4,6,["G2212"]],[6,8,["G5343"]],[8,10,["G1537"]],[10,11,["G3588"]],[11,12,["G4143"]],[12,13,["G2532"]],[13,17,["G5465"]],[17,18,["G3588"]],[18,19,["G4627"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G2281"]],[22,24,["G4392"]],[24,26,["G5613"]],[26,28,["G3195"]],[28,30,["G1614"]],[30,31,["G45"]],[31,33,["G1537"]],[33,35,["G4408"]]]},{"k":27886,"v":[[0,1,["G3972"]],[1,2,["G2036"]],[2,4,["G3588"]],[4,5,["G1543"]],[5,6,["G2532"]],[6,8,["G3588"]],[8,9,["G4757"]],[9,10,["G3362"]],[10,11,["G3778"]],[11,12,["G3306"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G4143"]],[15,16,["G5210"]],[16,17,["G1410","G3756"]],[17,19,["G4982"]]]},{"k":27887,"v":[[0,1,["G5119"]],[1,2,["G3588"]],[2,3,["G4757"]],[3,5,["G609"]],[5,6,["G3588"]],[6,7,["G4979"]],[7,9,["G3588"]],[9,10,["G4627"]],[10,11,["G2532"]],[11,12,["G1439"]],[12,13,["G846"]],[13,15,["G1601"]]]},{"k":27888,"v":[[0,1,["G1161"]],[1,2,["G891","G3739"]],[2,4,["G2250"]],[4,5,["G3195"]],[5,7,["G1096"]],[7,8,["G3972"]],[8,9,["G3870"]],[9,11,["G537"]],[11,13,["G3335"]],[13,14,["G5160"]],[14,15,["G3004"]],[15,17,["G4594"]],[17,20,["G5065"]],[20,21,["G2250"]],[21,25,["G4328"]],[25,27,["G1300"]],[27,28,["G777"]],[28,30,["G4355"]],[30,31,["G3367"]]]},{"k":27889,"v":[[0,1,["G1352"]],[1,3,["G3870"]],[3,4,["G5209"]],[4,6,["G4355"]],[6,8,["G5160"]],[8,9,["G1063"]],[9,10,["G5124"]],[10,11,["G5225"]],[11,12,["G4314"]],[12,13,["G5212"]],[13,14,["G4991"]],[14,15,["G1063"]],[15,20,["G2359"]],[20,21,["G4098"]],[21,22,["G1537"]],[22,23,["G3588"]],[23,24,["G2776"]],[24,26,["G3762"]],[26,28,["G5216"]]]},{"k":27890,"v":[[0,1,["G1161"]],[1,5,["G5023"]],[5,6,["G2036"]],[6,7,["(G2532)"]],[7,8,["G2983"]],[8,9,["G740"]],[9,12,["G2168"]],[12,14,["G2316"]],[14,16,["G1799"]],[16,19,["G3956"]],[19,20,["G2532"]],[20,24,["G2806"]],[24,27,["G756"]],[27,29,["G2068"]]]},{"k":27891,"v":[[0,1,["G1161"]],[1,2,["G1096"]],[2,4,["G3956"]],[4,7,["G2115"]],[7,9,["G848"]],[9,10,["G2532"]],[10,11,["G4355"]],[11,13,["G5160"]]]},{"k":27892,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,5,["G3956"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G4143"]],[8,13,["G1250","G1440","G1803"]],[13,14,["G5590"]]]},{"k":27893,"v":[[0,1,["G1161"]],[1,6,["G2880","G5160"]],[6,8,["G2893"]],[8,9,["G3588"]],[9,10,["G4143"]],[10,13,["G1544"]],[13,14,["G3588"]],[14,15,["G4621"]],[15,16,["G1519"]],[16,17,["G3588"]],[17,18,["G2281"]]]},{"k":27894,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,4,["G1096"]],[4,5,["G2250"]],[5,7,["G1921"]],[7,8,["G3756"]],[8,9,["G3588"]],[9,10,["G1093"]],[10,11,["G1161"]],[11,13,["G2657"]],[13,15,["G5100"]],[15,16,["G2859"]],[16,17,["(G2192)"]],[17,19,["G123"]],[19,20,["G1519"]],[20,22,["G3739"]],[22,25,["G1011"]],[25,26,["G1487"]],[26,29,["G1410"]],[29,32,["G1856"]],[32,33,["G3588"]],[33,34,["G4143"]]]},{"k":27895,"v":[[0,1,["G2532"]],[1,6,["G4014"]],[6,7,["G3588"]],[7,8,["G45"]],[8,10,["G1439"]],[10,12,["G1519"]],[12,13,["G3588"]],[13,14,["G2281"]],[14,15,["(G260)"]],[15,16,["G447"]],[16,17,["G3588"]],[17,18,["G4079"]],[18,19,["G2202"]],[19,20,["G2532"]],[20,22,["G1869"]],[22,23,["G3588"]],[23,24,["G736"]],[24,26,["G3588"]],[26,27,["G4154"]],[27,29,["G2722"]],[29,30,["G1519"]],[30,31,["G123"]]]},{"k":27896,"v":[[0,1,["G1161"]],[1,2,["G4045"]],[2,3,["G1519"]],[3,5,["G5117"]],[5,9,["G1337"]],[9,14,["G2027","G3588","G3491"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G4408","(G3303)"]],[17,19,["G2043"]],[19,21,["G3306"]],[21,22,["G761"]],[22,23,["G1161"]],[23,24,["G3588"]],[24,26,["G4403"]],[26,28,["G3089"]],[28,29,["G5259"]],[29,30,["G3588"]],[30,31,["G970"]],[31,33,["G3588"]],[33,34,["G2949"]]]},{"k":27897,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4757"]],[3,4,["G1012"]],[4,5,["G1096"]],[5,6,["G2443"]],[6,7,["G615"]],[7,8,["G3588"]],[8,9,["G1202"]],[9,13,["G3361","G5100"]],[13,16,["G1579"]],[16,18,["G1309"]]]},{"k":27898,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1543"]],[3,4,["G1014"]],[4,6,["G1295"]],[6,7,["G3972"]],[7,8,["G2967"]],[8,9,["G846"]],[9,12,["G1013"]],[12,13,["G5037"]],[13,14,["G2753"]],[14,18,["G1410"]],[18,19,["G2860"]],[19,21,["G641"]],[21,23,["G4413"]],[23,28,["G1826"]],[28,29,["G1909"]],[29,30,["G1093"]]]},{"k":27899,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3062"]],[3,4,["G3739"]],[4,5,["G1909"]],[5,6,["G4548"]],[6,7,["G1161"]],[7,8,["G3739","(G3303)"]],[8,9,["G1909"]],[9,11,["(G5100)"]],[11,12,["G575"]],[12,13,["G3588"]],[13,14,["G4143"]],[14,15,["G2532"]],[15,16,["G3779"]],[16,20,["G1096"]],[20,25,["G1295","G3956"]],[25,26,["G1909"]],[26,27,["G1093"]]]},{"k":27900,"v":[[0,1,["G2532"]],[1,5,["G1295"]],[5,6,["G5119"]],[6,8,["G1921"]],[8,9,["G3754"]],[9,10,["G3588"]],[10,11,["G3520"]],[11,13,["G2564"]],[13,14,["G3194"]]]},{"k":27901,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G915"]],[4,5,["G3930"]],[5,6,["G2254"]],[6,7,["G3756"]],[7,8,["G5177"]],[8,9,["G5363"]],[9,10,["G1063"]],[10,12,["G381"]],[12,14,["G4443"]],[14,16,["G4355"]],[16,17,["G2248"]],[17,19,["G3956"]],[19,20,["G1223"]],[20,22,["G3588"]],[22,23,["G2186"]],[23,24,["G5205"]],[24,25,["G2532"]],[25,26,["G1223"]],[26,28,["G3588"]],[28,29,["G5592"]]]},{"k":27902,"v":[[0,1,["G1161"]],[1,3,["G3972"]],[3,5,["G4962"]],[5,7,["G4128"]],[7,9,["G5434"]],[9,10,["G2532"]],[10,11,["G2007"]],[11,13,["G1909"]],[13,14,["G3588"]],[14,15,["G4443"]],[15,17,["G1831"]],[17,19,["G2191"]],[19,21,["G1537"]],[21,22,["G3588"]],[22,23,["G2329"]],[23,25,["G2510"]],[25,27,["G848"]],[27,28,["G5495"]]]},{"k":27903,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G3588"]],[3,4,["G915"]],[4,5,["G1492"]],[5,6,["G3588"]],[6,8,["G2342"]],[8,9,["G2910"]],[9,10,["G1537"]],[10,11,["G848"]],[11,12,["G5495"]],[12,14,["G3004"]],[14,15,["G4314"]],[15,16,["G240"]],[16,18,["G3843"]],[18,19,["G3778"]],[19,20,["G444"]],[20,21,["G2076"]],[21,23,["G5406"]],[23,24,["G3739"]],[24,28,["G1295"]],[28,29,["G3588"]],[29,30,["G2281"]],[30,32,["G1349"]],[32,33,["G1439"]],[33,34,["G3756"]],[34,36,["G2198"]]]},{"k":27904,"v":[[0,1,["G3767"]],[1,2,["G3588","(G3303)"]],[2,4,["G660"]],[4,5,["G3588"]],[5,6,["G2342"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G4442"]],[9,11,["G3958"]],[11,12,["G3762"]],[12,13,["G2556"]]]},{"k":27905,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4328"]],[3,5,["G846"]],[5,6,["G3195"]],[6,8,["G4092"]],[8,9,["G2228"]],[9,11,["G2667"]],[11,12,["G3498"]],[12,13,["G869"]],[13,14,["G1161"]],[14,16,["G846"]],[16,18,["G4328"]],[18,21,["G1909","G4183"]],[21,22,["G2532"]],[22,23,["G2334"]],[23,25,["G3367","G824"]],[25,26,["G1096"]],[26,27,["G1519"]],[27,28,["G846"]],[28,32,["G3328"]],[32,34,["G3004"]],[34,36,["G846"]],[36,37,["G1511"]],[37,39,["G2316"]]]},{"k":27906,"v":[[0,0,["(G1161)"]],[0,1,["G1722"]],[1,2,["G3588"]],[2,4,["G4012","G1565","G5117"]],[4,5,["G5225"]],[5,6,["G5564"]],[6,8,["G3588"]],[8,10,["G4413"]],[10,12,["G3588"]],[12,13,["G3520"]],[13,15,["G3686"]],[15,17,["G4196"]],[17,18,["G3739"]],[18,19,["G324"]],[19,20,["G2248"]],[20,22,["G3579"]],[22,24,["G5140"]],[24,25,["G2250"]],[25,26,["G5390"]]]},{"k":27907,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,7,["G3588"]],[7,8,["G3962"]],[8,10,["G4196"]],[10,11,["G2621"]],[11,12,["G4912"]],[12,15,["G4446"]],[15,16,["G2532"]],[16,20,["G1420"]],[20,21,["G4314"]],[21,22,["G3739"]],[22,23,["G3972"]],[23,25,["G1525"]],[25,26,["G2532"]],[26,27,["G4336"]],[27,29,["G2007"]],[29,31,["G5495"]],[31,33,["G846"]],[33,35,["G2390"]],[35,36,["G846"]]]},{"k":27908,"v":[[0,1,["G3767"]],[1,3,["G5127"]],[3,5,["G1096"]],[5,6,["G3062"]],[6,7,["G2532"]],[7,9,["G2192"]],[9,10,["G769"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G3520"]],[13,14,["G4334"]],[14,15,["G2532"]],[15,17,["G2323"]]]},{"k":27909,"v":[[0,1,["G3739"]],[1,2,["G2532"]],[2,3,["G5092"]],[3,4,["G2248"]],[4,6,["G4183"]],[6,7,["G5091"]],[7,8,["G2532"]],[8,11,["G321"]],[11,13,["G2007"]],[13,20,["G4314","G5532"]]]},{"k":27910,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,3,["G5140"]],[3,4,["G3376"]],[4,6,["G321"]],[6,7,["G1722"]],[7,9,["G4143"]],[9,11,["G222"]],[11,14,["G3914"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G3520"]],[17,19,["G3902"]],[19,23,["G1359"]]]},{"k":27911,"v":[[0,1,["G2532"]],[1,2,["G2609"]],[2,3,["G1519"]],[3,4,["G4946"]],[4,6,["G1961"]],[6,8,["G5140"]],[8,9,["G2250"]]]},{"k":27912,"v":[[0,3,["G3606"]],[3,7,["G4022"]],[7,9,["G2658"]],[9,10,["G1519"]],[10,11,["G4484"]],[11,12,["G2532"]],[12,13,["G3326"]],[13,14,["G3391"]],[14,15,["G2250"]],[15,18,["G3558"]],[18,19,["G1920"]],[19,22,["G2064"]],[22,25,["G1206"]],[25,26,["G1519"]],[26,27,["G4223"]]]},{"k":27913,"v":[[0,1,["G3757"]],[1,3,["G2147"]],[3,4,["G80"]],[4,7,["G3870"]],[7,9,["G1961"]],[9,10,["G1909"]],[10,11,["G846"]],[11,12,["G2033"]],[12,13,["G2250"]],[13,14,["G2532"]],[14,15,["G3779"]],[15,17,["G2064"]],[17,18,["G1519"]],[18,19,["G4516"]]]},{"k":27914,"v":[[0,3,["G2547"]],[3,5,["G3588"]],[5,6,["G80"]],[6,7,["G191"]],[7,8,["G4012"]],[8,9,["G2257"]],[9,11,["G1831"]],[11,12,["G1519"]],[12,13,["G529"]],[13,14,["G2254"]],[14,17,["G891"]],[17,18,["G675"]],[18,19,["G5410"]],[19,20,["G2532"]],[20,22,["G5140"]],[22,23,["G4999"]],[23,24,["G3739"]],[24,26,["G3972"]],[26,27,["G1492"]],[27,29,["G2168"]],[29,30,["G2316"]],[30,32,["G2983"]],[32,33,["G2294"]]]},{"k":27915,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,4,["G2064"]],[4,5,["G1519"]],[5,6,["G4516"]],[6,7,["G3588"]],[7,8,["G1543"]],[8,9,["G3860"]],[9,10,["G3588"]],[10,11,["G1198"]],[11,13,["G3588"]],[13,17,["G4759"]],[17,18,["G1161"]],[18,19,["G3972"]],[19,21,["G2010"]],[21,23,["G3306"]],[23,24,["G2596"]],[24,25,["G1438"]],[25,26,["G4862"]],[26,28,["G4757"]],[28,30,["G5442"]],[30,31,["G846"]]]},{"k":27916,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,7,["G3326"]],[7,8,["G5140"]],[8,9,["G2250"]],[9,10,["G3972"]],[10,17,["G4779","G3588","G5607","G4413","G3588","G2453"]],[17,18,["G1161"]],[18,20,["G848"]],[20,23,["G4905"]],[23,25,["G3004"]],[25,26,["G4314"]],[26,27,["G846"]],[27,28,["G435"]],[28,30,["G80"]],[30,32,["G1473"]],[32,34,["G4160"]],[34,35,["G3762"]],[35,36,["G1727"]],[36,37,["G3588"]],[37,38,["G2992"]],[38,39,["G2228"]],[39,40,["G1485"]],[40,43,["G3971"]],[43,47,["G3860"]],[47,48,["G1198"]],[48,49,["G1537"]],[49,50,["G2414"]],[50,51,["G1519"]],[51,52,["G3588"]],[52,53,["G5495"]],[53,55,["G3588"]],[55,56,["G4514"]]]},{"k":27917,"v":[[0,1,["G3748"]],[1,5,["G350"]],[5,6,["G3165"]],[6,7,["G1014"]],[7,11,["G630"]],[11,14,["G5225"]],[14,15,["G3367"]],[15,16,["G156"]],[16,18,["G2288"]],[18,19,["G1722"]],[19,20,["G1698"]]]},{"k":27918,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G2453"]],[4,6,["G483"]],[6,10,["G315"]],[10,13,["G1941"]],[13,14,["G2541"]],[14,15,["G3756"]],[15,16,["G5613"]],[16,18,["G2192"]],[18,19,["G5100"]],[19,21,["G2723"]],[21,22,["G3450"]],[22,23,["G1484"]],[23,24,[]]]},{"k":27919,"v":[[0,1,["G1223"]],[1,2,["G5026"]],[2,3,["G156"]],[3,4,["G3767"]],[4,7,["G3870"]],[7,9,["G5209"]],[9,11,["G1492"]],[11,13,["G2532"]],[13,16,["G4354"]],[16,18,["G1752"]],[18,20,["G1063"]],[20,21,["G3588"]],[21,22,["G1680"]],[22,24,["G2474"]],[24,27,["G4029"]],[27,29,["G5026"]],[29,30,["G254"]]]},{"k":27920,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G2249"]],[6,7,["G3777"]],[7,8,["G1209"]],[8,9,["G1121"]],[9,11,["G575"]],[11,12,["G2449"]],[12,13,["G4012"]],[13,14,["G4675"]],[14,15,["G3777"]],[15,16,["G5100"]],[16,18,["G3588"]],[18,19,["G80"]],[19,21,["G3854"]],[21,22,["G518"]],[22,23,["G2228"]],[23,24,["G2980"]],[24,25,["G5100"]],[25,26,["G4190"]],[26,27,["G4012"]],[27,28,["G4675"]]]},{"k":27921,"v":[[0,1,["G1161"]],[1,3,["G515"]],[3,5,["G191"]],[5,6,["G3844"]],[6,7,["G4675"]],[7,8,["G3739"]],[8,10,["G5426"]],[10,11,["G1063"]],[11,12,["(G3303)"]],[12,13,["G4012"]],[13,14,["G5026"]],[14,15,["G139"]],[15,16,["G2254"]],[16,17,["G2076","G1110"]],[17,18,["G3754"]],[18,20,["G3837"]],[20,24,["G483"]]]},{"k":27922,"v":[[0,1,["G1161"]],[1,5,["G5021"]],[5,6,["G846"]],[6,8,["G2250"]],[8,10,["G2240"]],[10,11,["G4119"]],[11,12,["G4314"]],[12,13,["G846"]],[13,14,["G1519"]],[14,16,["G3578"]],[16,18,["G3739"]],[18,20,["G1620"]],[20,22,["G1263"]],[22,23,["G3588"]],[23,24,["G932"]],[24,26,["G2316","(G5037)"]],[26,27,["G3982"]],[27,28,["G846"]],[28,29,["G4012"]],[29,30,["G2424"]],[30,31,["G5037"]],[31,33,["G575"]],[33,34,["G3588"]],[34,35,["G3551"]],[35,37,["G3475"]],[37,38,["G2532"]],[38,41,["G3588"]],[41,42,["G4396"]],[42,43,["G575"]],[43,44,["G4404"]],[44,45,["G2193"]],[45,46,["G2073"]]]},{"k":27923,"v":[[0,1,["G2532"]],[1,2,["G3588","G3303"]],[2,3,["G3982"]],[3,8,["G3004"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,12,["G569"]]]},{"k":27924,"v":[[0,1,["G1161"]],[1,5,["G5607","G800"]],[5,6,["G4314"]],[6,7,["G240"]],[7,9,["G630"]],[9,12,["G3972"]],[12,14,["G2036"]],[14,15,["G1520"]],[15,16,["G4487"]],[16,17,["G2573"]],[17,18,["G2980"]],[18,19,["G3588"]],[19,20,["G40"]],[20,21,["G4151"]],[21,22,["G1223"]],[22,23,["G2268"]],[23,24,["G3588"]],[24,25,["G4396"]],[25,26,["G4314"]],[26,27,["G2257"]],[27,28,["G3962"]]]},{"k":27925,"v":[[0,1,["G3004"]],[1,2,["G4198"]],[2,3,["G4314"]],[3,4,["G5126"]],[4,5,["G2992"]],[5,6,["G2532"]],[6,7,["G2036"]],[7,8,["G189"]],[8,11,["G191"]],[11,12,["G2532"]],[12,14,["G3364"]],[14,15,["G4920"]],[15,16,["G2532"]],[16,17,["G991"]],[17,20,["G991"]],[20,21,["G2532"]],[21,22,["G3364"]],[22,23,["G1492"]]]},{"k":27926,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G2588"]],[3,5,["G5127"]],[5,6,["G2992"]],[6,9,["G3975"]],[9,10,["G2532"]],[10,12,["G3775"]],[12,16,["G191","G917"]],[16,17,["G2532"]],[17,18,["G848"]],[18,19,["G3788"]],[19,22,["G2576"]],[22,23,["G3379"]],[23,26,["G1492"]],[26,29,["G3788"]],[29,30,["G2532"]],[30,31,["G191"]],[31,34,["G3775"]],[34,35,["G2532"]],[35,36,["G4920"]],[36,39,["G2588"]],[39,40,["G2532"]],[40,43,["G1994"]],[43,44,["G2532"]],[44,47,["G2390"]],[47,48,["G846"]]]},{"k":27927,"v":[[0,1,["G2077"]],[1,3,["G1110"]],[3,4,["G3767"]],[4,6,["G5213"]],[6,7,["G3754"]],[7,8,["G3588"]],[8,9,["G4992"]],[9,11,["G2316"]],[11,13,["G649"]],[13,15,["G3588"]],[15,16,["G1484"]],[16,17,["G2532"]],[17,19,["G846"]],[19,21,["G191"]],[21,22,[]]]},{"k":27928,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G2036"]],[5,7,["G5023"]],[7,8,["G3588"]],[8,9,["G2453"]],[9,10,["G565"]],[10,12,["G2192"]],[12,13,["G4183"]],[13,14,["G4803"]],[14,15,["G1722"]],[15,16,["G1438"]]]},{"k":27929,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,3,["G3306"]],[3,6,["G1333","G3650"]],[6,7,["G1722"]],[7,9,["G2398"]],[9,11,["G3410"]],[11,12,["G2532"]],[12,13,["G588"]],[13,14,["G3956"]],[14,17,["G1531"]],[17,18,["G4314"]],[18,19,["G846"]]]},{"k":27930,"v":[[0,1,["G2784"]],[1,2,["G3588"]],[2,3,["G932"]],[3,5,["G2316"]],[5,6,["G2532"]],[6,7,["G1321"]],[7,9,["G3588"]],[9,11,["G4012"]],[11,12,["G3588"]],[12,13,["G2962"]],[13,14,["G2424"]],[14,15,["G5547"]],[15,16,["G3326"]],[16,17,["G3956"]],[17,18,["G3954"]],[18,22,["G209"]]]},{"k":27931,"v":[[0,1,["G3972"]],[1,3,["G1401"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,7,["G2822"]],[7,11,["G652"]],[11,12,["G873"]],[12,13,["G1519"]],[13,15,["G2098"]],[15,17,["G2316"]]]},{"k":27932,"v":[[0,1,["G3739"]],[1,5,["G4279"]],[5,6,["G1223"]],[6,7,["G848"]],[7,8,["G4396"]],[8,9,["G1722"]],[9,11,["G40"]],[11,12,["G1124"]]]},{"k":27933,"v":[[0,1,["G4012"]],[1,2,["G848"]],[2,3,["G5207"]],[3,4,["G2424"]],[4,5,["G5547"]],[5,6,["G2257"]],[6,7,["G2962"]],[7,8,["G3588"]],[8,10,["G1096"]],[10,11,["G1537"]],[11,13,["G4690"]],[13,15,["G1138"]],[15,16,["G2596"]],[16,19,["G4561"]]]},{"k":27934,"v":[[0,2,["G3724"]],[2,6,["G5207"]],[6,8,["G2316"]],[8,9,["G1722"]],[9,10,["G1411"]],[10,11,["G2596"]],[11,14,["G4151"]],[14,16,["G42"]],[16,17,["G1537"]],[17,19,["G386"]],[19,22,["G3498"]]]},{"k":27935,"v":[[0,1,["G1223"]],[1,2,["G3739"]],[2,5,["G2983"]],[5,6,["G5485"]],[6,7,["G2532"]],[7,8,["G651"]],[8,9,["G1519"]],[9,10,["G5218"]],[10,13,["G4102"]],[13,14,["G1722"]],[14,15,["G3956"]],[15,16,["G1484"]],[16,17,["G5228"]],[17,18,["G848"]],[18,19,["G3686"]]]},{"k":27936,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G2075"]],[3,4,["G5210"]],[4,5,["G2532"]],[5,7,["G2822"]],[7,9,["G2424"]],[9,10,["G5547"]]]},{"k":27937,"v":[[0,2,["G3956"]],[2,4,["G5607"]],[4,5,["G1722"]],[5,6,["G4516"]],[6,7,["G27"]],[7,9,["G2316"]],[9,10,["G2822"]],[10,13,["G40"]],[13,14,["G5485"]],[14,16,["G5213"]],[16,17,["G2532"]],[17,18,["G1515"]],[18,19,["G575"]],[19,20,["G2316"]],[20,21,["G2257"]],[21,22,["G3962"]],[22,23,["G2532"]],[23,25,["G2962"]],[25,26,["G2424"]],[26,27,["G5547"]]]},{"k":27938,"v":[[0,1,["G4412"]],[1,2,["(G3303)"]],[2,3,["G2168"]],[3,4,["G3450"]],[4,5,["G2316"]],[5,6,["G1223"]],[6,7,["G2424"]],[7,8,["G5547"]],[8,9,["G5228"]],[9,10,["G5216"]],[10,11,["G3956"]],[11,12,["G3754"]],[12,13,["G5216"]],[13,14,["G4102"]],[14,17,["G2605","G1722"]],[17,19,["G3588"]],[19,20,["G3650"]],[20,21,["G2889"]]]},{"k":27939,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,3,["G2076"]],[3,4,["G3450"]],[4,5,["G3144"]],[5,6,["G3739"]],[6,8,["G3000"]],[8,9,["G1722"]],[9,10,["G3450"]],[10,11,["G4151"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G2098"]],[14,16,["G848"]],[16,17,["G5207"]],[17,18,["G5613"]],[18,20,["G89"]],[20,22,["G4160"]],[22,23,["G3417"]],[23,25,["G5216"]],[25,26,["G3842"]],[26,27,["G1909"]],[27,28,["G3450"]],[28,29,["G4335"]]]},{"k":27940,"v":[[0,2,["G1189"]],[2,6,["G1513"]],[6,7,["G2235"]],[7,9,["G4218"]],[9,15,["G2137"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G2307"]],[18,20,["G2316"]],[20,22,["G2064"]],[22,23,["G4314"]],[23,24,["G5209"]]]},{"k":27941,"v":[[0,1,["G1063"]],[1,3,["G1971"]],[3,5,["G1492"]],[5,6,["G5209"]],[6,7,["G2443"]],[7,10,["G3330"]],[10,12,["G5213"]],[12,13,["G5100"]],[13,14,["G4152"]],[14,15,["G5486"]],[15,19,["G5209"]],[19,22,["G4741"]]]},{"k":27942,"v":[[0,0,["(G1161)"]],[0,1,["G5124"]],[1,2,["G2076"]],[2,8,["G4837"]],[8,9,["G1722"]],[9,10,["G5213"]],[10,11,["G1223"]],[11,12,["G3588"]],[12,13,["G1722","G240"]],[13,14,["G4102"]],[14,15,["G5037"]],[15,17,["G5216"]],[17,18,["G2532"]],[18,19,["G1700"]]]},{"k":27943,"v":[[0,1,["G1161"]],[1,3,["G2309"]],[3,4,["G3756"]],[4,7,["G50","G5209"]],[7,8,["G80"]],[8,9,["G3754"]],[9,10,["G4178"]],[10,12,["G4388"]],[12,14,["G2064"]],[14,15,["G4314"]],[15,16,["G5209"]],[16,17,["G2532"]],[17,19,["G2967"]],[19,20,["G891","G1204"]],[20,21,["G2443"]],[21,24,["G2192"]],[24,25,["G5100"]],[25,26,["G2590"]],[26,27,["G1722"]],[27,28,["G5213"]],[28,29,["G2532"]],[29,30,["G2532"]],[30,31,["G2531"]],[31,32,["G1722"]],[32,33,["G3062"]],[33,34,["G1484"]]]},{"k":27944,"v":[[0,2,["G1510"]],[2,3,["G3781"]],[3,4,["G5037"]],[4,7,["G1672"]],[7,8,["G2532"]],[8,11,["G915"]],[11,12,["G5037"]],[12,15,["G4680"]],[15,16,["G2532"]],[16,19,["G453"]]]},{"k":27945,"v":[[0,1,["G3779"]],[1,7,["G2596","G1691"]],[7,10,["G4289"]],[10,14,["G2097"]],[14,16,["G5213"]],[16,17,["G3588"]],[17,19,["G1722"]],[19,20,["G4516"]],[20,21,["G2532"]]]},{"k":27946,"v":[[0,1,["G1063"]],[1,4,["G3756"]],[4,5,["G1870"]],[5,7,["G3588"]],[7,8,["G2098"]],[8,10,["G5547"]],[10,11,["G1063"]],[11,13,["G2076"]],[13,15,["G1411"]],[15,17,["G2316"]],[17,18,["G1519"]],[18,19,["G4991"]],[19,22,["G3956"]],[22,24,["G4100"]],[24,27,["G2453"]],[27,28,["G4412"]],[28,29,["G2532"]],[29,30,["G5037"]],[30,33,["G1672"]]]},{"k":27947,"v":[[0,1,["G1063"]],[1,2,["G1722","G846"]],[2,5,["G1343"]],[5,7,["G2316"]],[7,8,["G601"]],[8,9,["G1537"]],[9,10,["G4102"]],[10,11,["G1519"]],[11,12,["G4102"]],[12,13,["G2531"]],[13,16,["G1125","(G1161)"]],[16,17,["G3588"]],[17,18,["G1342"]],[18,20,["G2198"]],[20,21,["G1537"]],[21,22,["G4102"]]]},{"k":27948,"v":[[0,1,["G1063"]],[1,3,["G3709"]],[3,5,["G2316"]],[5,7,["G601"]],[7,8,["G575"]],[8,9,["G3772"]],[9,10,["G1909"]],[10,11,["G3956"]],[11,12,["G763"]],[12,13,["G2532"]],[13,14,["G93"]],[14,16,["G444"]],[16,18,["G2722"]],[18,19,["G3588"]],[19,20,["G225"]],[20,21,["G1722"]],[21,22,["G93"]]]},{"k":27949,"v":[[0,1,["G1360"]],[1,6,["G1110"]],[6,8,["G2316"]],[8,9,["G2076"]],[9,10,["G5318"]],[10,11,["G1722"]],[11,12,["G846"]],[12,13,["G1063"]],[13,14,["G2316"]],[14,16,["G5319"]],[16,19,["G846"]]]},{"k":27950,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,4,["G517"]],[4,6,["G846"]],[6,7,["G575"]],[7,9,["G2937"]],[9,12,["G2889"]],[12,15,["G2529"]],[15,17,["G3539"]],[17,19,["G3588"]],[19,22,["G4161"]],[22,24,["(G5037","G3739)"]],[24,25,["G848"]],[25,26,["G126"]],[26,27,["G1411"]],[27,28,["G2532"]],[28,29,["G2305"]],[29,32,["G846"]],[32,33,["G1511"]],[33,35,["G379"]]]},{"k":27951,"v":[[0,2,["G1360"]],[2,5,["G1097"]],[5,6,["G2316"]],[6,8,["G1392"]],[8,10,["G3756"]],[10,11,["G5613"]],[11,12,["G2316"]],[12,13,["G2228"]],[13,15,["G2168"]],[15,16,["G235"]],[16,18,["G3154"]],[18,19,["G1722"]],[19,20,["G848"]],[20,21,["G1261"]],[21,22,["G2532"]],[22,23,["G848"]],[23,24,["G801"]],[24,25,["G2588"]],[25,27,["G4654"]]]},{"k":27952,"v":[[0,1,["G5335"]],[1,4,["G1511"]],[4,5,["G4680"]],[5,8,["G3471"]]]},{"k":27953,"v":[[0,1,["G2532"]],[1,2,["G236"]],[2,3,["G3588"]],[3,4,["G1391"]],[4,6,["G3588"]],[6,7,["G862"]],[7,8,["G2316"]],[8,9,["G1722"]],[9,11,["G1504"]],[11,14,["G3667"]],[14,15,["G5349"]],[15,16,["G444"]],[16,17,["G2532"]],[17,19,["G4071"]],[19,20,["G2532"]],[20,22,["G5074"]],[22,23,["G2532"]],[23,25,["G2062"]]]},{"k":27954,"v":[[0,1,["G1352"]],[1,2,["G2316"]],[2,3,["G2532"]],[3,6,["G3860","G846"]],[6,7,["G1519"]],[7,8,["G167"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G1939"]],[11,14,["G848"]],[14,15,["G2588"]],[15,17,["G818"]],[17,19,["G848"]],[19,20,["G4983"]],[20,21,["G1722"]],[21,22,["G1438"]]]},{"k":27955,"v":[[0,1,["G3748"]],[1,2,["G3337"]],[2,3,["G3588"]],[3,4,["G225"]],[4,6,["G2316"]],[6,7,["G1722"]],[7,9,["G5579"]],[9,10,["G2532"]],[10,11,["G4573"]],[11,12,["G2532"]],[12,13,["G3000"]],[13,14,["G3588"]],[14,15,["G2937"]],[15,17,["G3844"]],[17,18,["G3588"]],[18,19,["G2936"]],[19,20,["G3739"]],[20,21,["G2076"]],[21,22,["G2128"]],[22,24,["G1519","G165"]],[24,25,["G281"]]]},{"k":27956,"v":[[0,3,["G1223","G5124"]],[3,4,["G2316"]],[4,7,["G3860","G846"]],[7,8,["G1519"]],[8,9,["G819"]],[9,10,["G3806"]],[10,11,["G1063"]],[11,12,["G5037","(G3739)"]],[12,13,["G848"]],[13,14,["G2338"]],[14,16,["G3337"]],[16,17,["G3588"]],[17,18,["G5446"]],[18,19,["G5540"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,24,["G3844"]],[24,25,["G5449"]]]},{"k":27957,"v":[[0,1,["G5037"]],[1,2,["G3668"]],[2,3,["G2532"]],[3,4,["G3588"]],[4,5,["G730"]],[5,6,["G863"]],[6,7,["G3588"]],[7,8,["G5446"]],[8,9,["G5540"]],[9,11,["G3588"]],[11,12,["G2338"]],[12,13,["G1572"]],[13,14,["G1722"]],[14,15,["G848"]],[15,16,["G3715"]],[16,19,["G240","G1519"]],[19,20,["G730"]],[20,21,["G1722"]],[21,22,["G730"]],[22,23,["G2716"]],[23,27,["G808"]],[27,28,["G2532"]],[28,29,["G618"]],[29,30,["G1722"]],[30,31,["G1438"]],[31,33,["G489"]],[33,35,["G848"]],[35,36,["G4106"]],[36,37,["G3739"]],[37,39,["G1163"]]]},{"k":27958,"v":[[0,1,["G2532"]],[1,3,["G2531"]],[3,6,["G3756"]],[6,7,["G1381"]],[7,9,["G2192"]],[9,10,["G2316"]],[10,11,["G1722"]],[11,13,["G1922"]],[13,14,["G2316"]],[14,17,["G3860","G846"]],[17,18,["G1519"]],[18,20,["G96"]],[20,21,["G3563"]],[21,23,["G4160"]],[23,29,["G2520","G3361"]]]},{"k":27959,"v":[[0,2,["G4137"]],[2,4,["G3956"]],[4,5,["G93"]],[5,6,["G4202"]],[6,7,["G4189"]],[7,8,["G4124"]],[8,9,["G2549"]],[9,10,["G3324"]],[10,12,["G5355"]],[12,13,["G5408"]],[13,14,["G2054"]],[14,15,["G1388"]],[15,16,["G2550"]],[16,17,["G5588"]]]},{"k":27960,"v":[[0,1,["G2637"]],[1,4,["G2319"]],[4,5,["G5197"]],[5,6,["G5244"]],[6,7,["G213"]],[7,8,["G2182"]],[8,11,["G2556"]],[11,12,["G545"]],[12,14,["G1118"]]]},{"k":27961,"v":[[0,2,["G801"]],[2,3,["G802"]],[3,6,["G794"]],[6,7,["G786"]],[7,8,["G415"]]]},{"k":27962,"v":[[0,1,["G3748"]],[1,2,["G1921"]],[2,3,["G3588"]],[3,4,["G1345"]],[4,6,["G2316"]],[6,7,["G3754"]],[7,10,["G4238"]],[10,12,["G5108"]],[12,13,["G1526"]],[13,14,["G514"]],[14,16,["G2288"]],[16,17,["G3756"]],[17,18,["G3440"]],[18,19,["G4160"]],[19,21,["G846"]],[21,22,["G235","(G2532)"]],[22,24,["G4909"]],[24,28,["G4238"]],[28,29,[]]]},{"k":27963,"v":[[0,1,["G1352"]],[1,3,["G1488"]],[3,4,["G379"]],[4,5,["G5599"]],[5,6,["G444"]],[6,7,["G3956"]],[7,11,["G2919"]],[11,12,["G1063"]],[12,13,["G1722","G3739"]],[13,15,["G2919"]],[15,16,["G2087"]],[16,18,["G2632"]],[18,19,["G4572"]],[19,20,["G1063"]],[20,23,["G2919"]],[23,24,["G4238"]],[24,25,["G3588"]],[25,27,["G846"]]]},{"k":27964,"v":[[0,1,["G1161"]],[1,4,["G1492"]],[4,5,["G3754"]],[5,6,["G3588"]],[6,7,["G2917"]],[7,9,["G2316"]],[9,10,["G2076"]],[10,11,["G2596"]],[11,13,["G225"]],[13,14,["G1909"]],[14,17,["G4238"]],[17,19,["G5108"]]]},{"k":27965,"v":[[0,1,["G1161"]],[1,2,["G3049"]],[2,4,["G5124"]],[4,5,["G5599"]],[5,6,["G444"]],[6,8,["G2919"]],[8,11,["G4238"]],[11,13,["G5108"]],[13,14,["G2532"]],[14,15,["G4160"]],[15,17,["G846"]],[17,18,["G3754"]],[18,19,["G4771"]],[19,21,["G1628"]],[21,22,["G3588"]],[22,23,["G2917"]],[23,25,["G2316"]]]},{"k":27966,"v":[[0,1,["G2228"]],[1,2,["G2706"]],[2,4,["G3588"]],[4,5,["G4149"]],[5,7,["G848"]],[7,8,["G5544"]],[8,9,["G2532"]],[9,10,["G463"]],[10,11,["G2532"]],[11,12,["G3115"]],[12,14,["G50"]],[14,15,["G3754"]],[15,16,["G3588"]],[16,17,["G5543"]],[17,19,["G2316"]],[19,20,["G71"]],[20,21,["G4571"]],[21,22,["G1519"]],[22,23,["G3341"]]]},{"k":27967,"v":[[0,1,["G1161"]],[1,2,["G2596"]],[2,3,["G4675"]],[3,4,["G4643"]],[4,5,["G2532"]],[5,6,["G279"]],[6,7,["G2588"]],[7,9,["G2343"]],[9,11,["G4572"]],[11,12,["G3709"]],[12,13,["G1722"]],[13,15,["G2250"]],[15,17,["G3709"]],[17,18,["G2532"]],[18,19,["G602"]],[19,23,["G1341"]],[23,25,["G2316"]]]},{"k":27968,"v":[[0,1,["G3739"]],[1,3,["G591"]],[3,6,["G1538"]],[6,7,["G2596"]],[7,9,["G846"]],[9,10,["G2041"]]]},{"k":27969,"v":[[0,3,["(G3303)"]],[3,4,["G2596"]],[4,6,["G5281"]],[6,8,["G18"]],[8,9,["G2041"]],[9,11,["G2212"]],[11,12,["G1391"]],[12,13,["G2532"]],[13,14,["G5092"]],[14,15,["G2532"]],[15,16,["G861"]],[16,17,["G166"]],[17,18,["G2222"]]]},{"k":27970,"v":[[0,1,["G1161"]],[1,6,["G1537","G2052"]],[6,7,["G2532"]],[7,10,["G544","(G3303)"]],[10,11,["G3588"]],[11,12,["G225"]],[12,13,["G1161"]],[13,14,["G3982"]],[14,15,["G93"]],[15,16,["G2372"]],[16,17,["G2532"]],[17,18,["G3709"]]]},{"k":27971,"v":[[0,1,["G2347"]],[1,2,["G2532"]],[2,3,["G4730"]],[3,4,["G1909"]],[4,5,["G3956"]],[5,6,["G5590"]],[6,8,["G444"]],[8,10,["G2716"]],[10,11,["G2556"]],[11,13,["(G5037)"]],[13,14,["G2453"]],[14,15,["G4412"]],[15,16,["G2532"]],[16,20,["G1672"]]]},{"k":27972,"v":[[0,1,["G1161"]],[1,2,["G1391"]],[2,3,["G5092"]],[3,4,["G2532"]],[4,5,["G1515"]],[5,8,["G3956"]],[8,10,["G2038"]],[10,11,["G18"]],[11,13,["(G5037)"]],[13,14,["G2453"]],[14,15,["G4412"]],[15,16,["G2532"]],[16,20,["G1672"]]]},{"k":27973,"v":[[0,1,["G1063"]],[1,3,["G2076"]],[3,4,["G3756"]],[4,7,["G4382"]],[7,8,["G3844"]],[8,9,["G2316"]]]},{"k":27974,"v":[[0,1,["G1063"]],[1,4,["G3745"]],[4,6,["G264"]],[6,8,["G460"]],[8,10,["G2532"]],[10,11,["G622"]],[11,13,["G460"]],[13,14,["G2532"]],[14,17,["G3745"]],[17,19,["G264"]],[19,20,["G1722"]],[20,22,["G3551"]],[22,25,["G2919"]],[25,26,["G1223"]],[26,28,["G3551"]]]},{"k":27975,"v":[[0,1,["G1063"]],[1,2,["G3756"]],[2,3,["G3588"]],[3,4,["G202"]],[4,6,["G3588"]],[6,7,["G3551"]],[7,9,["G1342"]],[9,10,["G3844"]],[10,11,["G2316"]],[11,12,["G235"]],[12,13,["G3588"]],[13,14,["G4163"]],[14,16,["G3588"]],[16,17,["G3551"]],[17,20,["G1344"]]]},{"k":27976,"v":[[0,1,["G1063"]],[1,2,["G3752"]],[2,4,["G1484"]],[4,6,["G2192"]],[6,7,["G3361"]],[7,9,["G3551"]],[9,10,["G4160"]],[10,12,["G5449"]],[12,14,["G3588"]],[14,17,["G3588"]],[17,18,["G3551"]],[18,19,["G3778"]],[19,20,["G2192"]],[20,21,["G3361"]],[21,23,["G3551"]],[23,24,["G1526"]],[24,26,["G3551"]],[26,28,["G1438"]]]},{"k":27977,"v":[[0,1,["G3748"]],[1,2,["G1731"]],[2,3,["G3588"]],[3,4,["G2041"]],[4,6,["G3588"]],[6,7,["G3551"]],[7,8,["G1123"]],[8,9,["G1722"]],[9,10,["G848"]],[10,11,["G2588"]],[11,12,["G848"]],[12,13,["G4893"]],[13,16,["G4828"]],[16,17,["G2532"]],[17,19,["G3053"]],[19,22,["G3342"]],[22,23,["G2723"]],[23,24,["G2228"]],[24,25,["G2532"]],[25,26,["G626"]],[26,28,["G240"]]]},{"k":27978,"v":[[0,1,["G1722"]],[1,3,["G2250"]],[3,4,["G3753"]],[4,5,["G2316"]],[5,7,["G2919"]],[7,8,["G3588"]],[8,9,["G2927"]],[9,11,["G444"]],[11,12,["G1223"]],[12,13,["G2424"]],[13,14,["G5547"]],[14,15,["G2596"]],[15,17,["G3450"]],[17,18,["G2098"]]]},{"k":27979,"v":[[0,1,["G2396"]],[1,2,["G4771"]],[2,4,["G2028"]],[4,6,["G2453"]],[6,7,["G2532"]],[7,9,["G1879"]],[9,10,["G3588"]],[10,11,["G3551"]],[11,12,["G2532"]],[12,15,["G2744"]],[15,16,["G1722"]],[16,17,["G2316"]]]},{"k":27980,"v":[[0,1,["G2532"]],[1,2,["G1097"]],[2,4,["G2307"]],[4,5,["G2532"]],[5,6,["G1381"]],[6,12,["G1308"]],[12,14,["G2727"]],[14,16,["G1537"]],[16,17,["G3588"]],[17,18,["G3551"]]]},{"k":27981,"v":[[0,1,["G5037"]],[1,3,["G3982"]],[3,6,["G4572"]],[6,7,["G1511"]],[7,9,["G3595"]],[9,12,["G5185"]],[12,14,["G5457"]],[14,16,["G3588"]],[16,19,["G1722"]],[19,20,["G4655"]]]},{"k":27982,"v":[[0,2,["G3810"]],[2,5,["G878"]],[5,7,["G1320"]],[7,9,["G3516"]],[9,11,["G2192"]],[11,12,["G3588"]],[12,13,["G3446"]],[13,15,["G1108"]],[15,16,["G2532"]],[16,18,["G3588"]],[18,19,["G225"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G3551"]]]},{"k":27983,"v":[[0,4,["G1321","G3767"]],[4,5,["G2087"]],[5,6,["G1321"]],[6,8,["G3756"]],[8,9,["G4572"]],[9,12,["G2784"]],[12,16,["G3361"]],[16,17,["G2813"]],[17,20,["G2813"]]]},{"k":27984,"v":[[0,3,["G3004"]],[3,7,["G3361"]],[7,9,["G3431"]],[9,13,["G3431"]],[13,16,["G948"]],[16,17,["G1497"]],[17,21,["G2416"]]]},{"k":27985,"v":[[0,2,["G3739"]],[2,5,["G2744"]],[5,6,["G1722"]],[6,8,["G3551"]],[8,9,["G1223"]],[9,10,["G3847"]],[10,11,["G3588"]],[11,12,["G3551"]],[12,13,["G818"]],[13,15,["G2316"]]]},{"k":27986,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3686"]],[3,5,["G2316"]],[5,7,["G987"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G1484"]],[10,11,["G1223"]],[11,12,["G5209"]],[12,13,["G2531"]],[13,16,["G1125"]]]},{"k":27987,"v":[[0,1,["G1063"]],[1,2,["G4061"]],[2,3,["G3303"]],[3,4,["G5623"]],[4,5,["G1437"]],[5,7,["G4238"]],[7,9,["G3551"]],[9,10,["G1161"]],[10,11,["G1437"]],[11,15,["G3848"]],[15,18,["G3551"]],[18,19,["G4675"]],[19,20,["G4061"]],[20,22,["G1096"]],[22,23,["G203"]]]},{"k":27988,"v":[[0,1,["G3767"]],[1,2,["G1437"]],[2,3,["G3588"]],[3,4,["G203"]],[4,5,["G5442"]],[5,6,["G3588"]],[6,7,["G1345"]],[7,9,["G3588"]],[9,10,["G3551"]],[10,12,["G3780"]],[12,13,["G848"]],[13,14,["G203"]],[14,16,["G3049"]],[16,17,["G1519"]],[17,18,["G4061"]]]},{"k":27989,"v":[[0,1,["G2532"]],[1,4,["G203"]],[4,7,["G1537"]],[7,8,["G5449"]],[8,11,["G5055"]],[11,12,["G3588"]],[12,13,["G3551"]],[13,14,["G2919"]],[14,15,["G4571"]],[15,17,["G1223"]],[17,19,["G1121"]],[19,20,["G2532"]],[20,21,["G4061"]],[21,23,["G3848"]],[23,25,["G3551"]]]},{"k":27990,"v":[[0,1,["G1063"]],[1,3,["G2076"]],[3,4,["G3756"]],[4,6,["G2453"]],[6,10,["G1722","G5318"]],[10,11,["G3761"]],[11,14,["G4061"]],[14,17,["G1722","G5318"]],[17,18,["G1722"]],[18,20,["G4561"]]]},{"k":27991,"v":[[0,1,["G235"]],[1,5,["G2453"]],[5,9,["G1722","G2927"]],[9,10,["G2532"]],[10,11,["G4061"]],[11,16,["G2588"]],[16,17,["G1722"]],[17,19,["G4151"]],[19,21,["G3756"]],[21,24,["G1121"]],[24,25,["G3739"]],[25,26,["G1868"]],[26,28,["G3756"]],[28,29,["G1537"]],[29,30,["G444"]],[30,31,["G235"]],[31,32,["G1537"]],[32,33,["G2316"]]]},{"k":27992,"v":[[0,1,["G5101"]],[1,2,["G4053"]],[2,3,["G3767"]],[3,5,["G3588"]],[5,6,["G2453"]],[6,7,["G2228"]],[7,8,["G5101"]],[8,9,["G5622"]],[9,13,["G4061"]]]},{"k":27993,"v":[[0,1,["G4183"]],[1,2,["G3956"]],[2,3,["G5158"]],[3,4,["G4412","(G3303)"]],[4,5,["G1063"]],[5,6,["G3754"]],[6,10,["G4100"]],[10,11,["G3588"]],[11,12,["G3051"]],[12,14,["G2316"]]]},{"k":27994,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,3,["G1487"]],[3,4,["G5100"]],[4,7,["G569"]],[7,9,["G848"]],[9,10,["G570","(G3361)"]],[10,17,["G2673","G3588","G4102","G2316"]]]},{"k":27995,"v":[[0,2,["G1096","G3361"]],[2,5,["G2316"]],[5,6,["G1096"]],[6,7,["G227"]],[7,8,["G1161"]],[8,9,["G3956"]],[9,10,["G444"]],[10,12,["G5583"]],[12,13,["G2531"]],[13,16,["G1125"]],[16,17,["G3704"]],[17,21,["G1344","G302"]],[21,22,["G1722"]],[22,23,["G4675"]],[23,24,["G3056"]],[24,25,["G2532"]],[25,27,["G3528"]],[27,29,["G4571"]],[29,31,["G2919"]]]},{"k":27996,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G2257"]],[3,4,["G93"]],[4,5,["G4921"]],[5,7,["G1343"]],[7,9,["G2316"]],[9,10,["G5101"]],[10,13,["G2046"]],[13,15,["G2316"]],[15,16,["G94"]],[16,18,["G2018"]],[18,20,["G3709"]],[20,21,["G3004"]],[21,22,["G2596"]],[22,24,["G444"]]]},{"k":27997,"v":[[0,2,["G1096","G3361"]],[2,4,["G1893"]],[4,5,["G4459"]],[5,7,["G2316"]],[7,8,["G2919"]],[8,9,["G3588"]],[9,10,["G2889"]]]},{"k":27998,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G225"]],[4,6,["G2316"]],[6,9,["G4052"]],[9,10,["G1722"]],[10,11,["G1699"]],[11,12,["G5582"]],[12,13,["G1519"]],[13,14,["G848"]],[14,15,["G1391"]],[15,16,["G5101"]],[16,17,["G2089"]],[17,20,["G2504"]],[20,21,["G2919"]],[21,22,["G5613"]],[22,24,["G268"]]]},{"k":27999,"v":[[0,1,["G2532"]],[1,2,["G3361"]],[2,4,["G2531"]],[4,8,["G987"]],[8,9,["G2532"]],[9,10,["G2531"]],[10,11,["G5100"]],[11,12,["G5346"]],[12,14,["G2248"]],[14,15,["G3004"]],[15,18,["G4160"]],[18,19,["G2556"]],[19,20,["G2443"]],[20,21,["G18"]],[21,23,["G2064"]],[23,24,["G3739"]],[24,25,["G2917"]],[25,26,["G2076"]],[26,27,["G1738"]]]},{"k":28000,"v":[[0,1,["G5101"]],[1,2,["G3767"]],[2,5,["G4284"]],[5,8,["G3756"]],[8,11,["G3843"]],[11,12,["G1063"]],[12,16,["G4256"]],[16,17,["G5037"]],[17,18,["G2453"]],[18,19,["G2532"]],[19,20,["G1672"]],[20,23,["G1511"]],[23,24,["G3956"]],[24,25,["G5259"]],[25,26,["G266"]]]},{"k":28001,"v":[[0,1,["G2531"]],[1,4,["G1125"]],[4,6,["G2076"]],[6,7,["G3756"]],[7,8,["G1342"]],[8,10,["G3761"]],[10,11,["G1520"]]]},{"k":28002,"v":[[0,2,["G2076"]],[2,3,["G3756"]],[3,5,["G4920"]],[5,7,["G2076"]],[7,8,["G3756"]],[8,11,["G1567"]],[11,12,["G2316"]]]},{"k":28003,"v":[[0,3,["G3956"]],[3,8,["G1578"]],[8,11,["G260"]],[11,13,["G889"]],[13,15,["G2076"]],[15,16,["G3756"]],[16,18,["G4160"]],[18,19,["G5544"]],[19,20,["(G2076)"]],[20,21,["G3756","(G2193)"]],[21,22,["G1520"]]]},{"k":28004,"v":[[0,1,["G848"]],[1,2,["G2995"]],[2,5,["G455"]],[5,6,["G5028"]],[6,8,["G848"]],[8,9,["G1100"]],[9,13,["G1387"]],[13,15,["G2447"]],[15,17,["G785"]],[17,19,["G5259"]],[19,20,["G848"]],[20,21,["G5491"]]]},{"k":28005,"v":[[0,1,["G3739"]],[1,2,["G4750"]],[2,4,["G1073"]],[4,6,["G685"]],[6,7,["G2532"]],[7,8,["G4088"]]]},{"k":28006,"v":[[0,1,["G848"]],[1,2,["G4228"]],[2,4,["G3691"]],[4,6,["G1632"]],[6,7,["G129"]]]},{"k":28007,"v":[[0,1,["G4938"]],[1,2,["G2532"]],[2,3,["G5004"]],[3,5,["G1722"]],[5,6,["G848"]],[6,7,["G3598"]]]},{"k":28008,"v":[[0,1,["G2532"]],[1,3,["G3598"]],[3,5,["G1515"]],[5,8,["G3756"]],[8,9,["G1097"]]]},{"k":28009,"v":[[0,2,["G2076"]],[2,3,["G3756"]],[3,4,["G5401"]],[4,6,["G2316"]],[6,7,["G561"]],[7,8,["G848"]],[8,9,["G3788"]]]},{"k":28010,"v":[[0,1,["G1161"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,7,["G3745"]],[7,8,["G3588"]],[8,9,["G3551"]],[9,10,["G3004"]],[10,12,["G2980"]],[12,14,["G3588"]],[14,17,["G1722"]],[17,18,["G3588"]],[18,19,["G3551"]],[19,20,["G2443"]],[20,21,["G3956"]],[21,22,["G4750"]],[22,25,["G5420"]],[25,26,["G2532"]],[26,27,["G3956"]],[27,28,["G3588"]],[28,29,["G2889"]],[29,31,["G1096"]],[31,32,["G5267"]],[32,34,["G2316"]]]},{"k":28011,"v":[[0,1,["G1360"]],[1,2,["G1537"]],[2,4,["G2041"]],[4,7,["G3551"]],[7,10,["G3756","G3956"]],[10,11,["G4561"]],[11,13,["G1344"]],[13,16,["G1799","G846"]],[16,17,["G1063"]],[17,18,["G1223"]],[18,20,["G3551"]],[20,23,["G1922"]],[23,25,["G266"]]]},{"k":28012,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,4,["G1343"]],[4,6,["G2316"]],[6,7,["G5565"]],[7,9,["G3551"]],[9,11,["G5319"]],[11,13,["G3140"]],[13,14,["G5259"]],[14,15,["G3588"]],[15,16,["G3551"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G4396"]]]},{"k":28013,"v":[[0,1,["G1161"]],[1,3,["G1343"]],[3,5,["G2316"]],[5,8,["G1223"]],[8,9,["G4102"]],[9,11,["G2424"]],[11,12,["G5547"]],[12,13,["G1519"]],[13,14,["G3956"]],[14,15,["G2532"]],[15,16,["G1909"]],[16,17,["G3956"]],[17,20,["G4100"]],[20,21,["G1063"]],[21,23,["G2076"]],[23,24,["G3756"]],[24,25,["G1293"]]]},{"k":28014,"v":[[0,1,["G1063"]],[1,2,["G3956"]],[2,4,["G264"]],[4,5,["G2532"]],[5,7,["G5302"]],[7,9,["G3588"]],[9,10,["G1391"]],[10,12,["G2316"]]]},{"k":28015,"v":[[0,2,["G1344"]],[2,3,["G1432"]],[3,5,["G848"]],[5,6,["G5485"]],[6,7,["G1223"]],[7,8,["G3588"]],[8,9,["G629"]],[9,10,["G3588"]],[10,12,["G1722"]],[12,13,["G5547"]],[13,14,["G2424"]]]},{"k":28016,"v":[[0,1,["G3739"]],[1,2,["G2316"]],[2,5,["G4388"]],[5,9,["G2435"]],[9,10,["G1223"]],[10,11,["G4102"]],[11,12,["G1722"]],[12,13,["G848"]],[13,14,["G129"]],[14,16,["G1519","G1732"]],[16,17,["G848"]],[17,18,["G1343"]],[18,19,["G1223"]],[19,20,["G3588"]],[20,21,["G3929"]],[21,23,["G265"]],[23,26,["G4266"]],[26,27,["G1722"]],[27,28,["G3588"]],[28,29,["G463"]],[29,31,["G2316"]]]},{"k":28017,"v":[[0,1,["G4314"]],[1,2,["G1732"]],[2,5,["G1722"]],[5,6,["G3568"]],[6,7,["G2540"]],[7,8,["G846"]],[8,9,["G1343"]],[9,11,["G846"]],[11,13,["G1511"]],[13,14,["G1342"]],[14,15,["G2532"]],[15,17,["G1344"]],[17,19,["G3588"]],[19,21,["G1537","G4102"]],[21,23,["G2424"]]]},{"k":28018,"v":[[0,1,["G4226"]],[1,3,["G2746"]],[3,4,["G3767"]],[4,7,["G1576"]],[7,8,["G1223"]],[8,9,["G4169"]],[9,10,["G3551"]],[10,12,["G2041"]],[12,13,["G3780"]],[13,14,["G235"]],[14,15,["G1223"]],[15,17,["G3551"]],[17,19,["G4102"]]]},{"k":28019,"v":[[0,1,["G3767"]],[1,3,["G3049"]],[3,6,["G444"]],[6,8,["G1344"]],[8,10,["G4102"]],[10,11,["G5565"]],[11,13,["G2041"]],[13,16,["G3551"]]]},{"k":28020,"v":[[0,2,["(G2228)"]],[2,3,["G3588"]],[3,4,["G2316"]],[4,7,["G2453"]],[7,8,["G3440"]],[8,10,["(G1161)"]],[10,11,["G3780"]],[11,12,["G2532"]],[12,15,["G1484"]],[15,16,["G3483"]],[16,19,["G1484"]],[19,20,["G2532"]]]},{"k":28021,"v":[[0,1,["G1897"]],[1,4,["G1520"]],[4,5,["G2316"]],[5,6,["G3739"]],[6,8,["G1344"]],[8,10,["G4061"]],[10,11,["G1537"]],[11,12,["G4102"]],[12,13,["G2532"]],[13,14,["G203"]],[14,15,["G1223"]],[15,16,["G4102"]]]},{"k":28022,"v":[[0,3,["G3767"]],[3,5,["G2673"]],[5,7,["G3551"]],[7,8,["G1223"]],[8,9,["G4102"]],[9,11,["G1096","G3361"]],[11,12,["G235"]],[12,14,["G2476"]],[14,16,["G3551"]]]},{"k":28023,"v":[[0,1,["G5101"]],[1,4,["G2046"]],[4,5,["G3767"]],[5,7,["G11"]],[7,8,["G2257"]],[8,9,["G3962"]],[9,11,["G2596"]],[11,14,["G4561"]],[14,16,["G2147"]]]},{"k":28024,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G11"]],[3,5,["G1344"]],[5,6,["G1537"]],[6,7,["G2041"]],[7,9,["G2192"]],[9,12,["G2745"]],[12,13,["G235"]],[13,14,["G3756"]],[14,15,["G4314"]],[15,16,["G2316"]]]},{"k":28025,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,3,["G3004"]],[3,4,["G3588"]],[4,5,["G1124","(G1161)"]],[5,6,["G11"]],[6,7,["G4100"]],[7,8,["G2316"]],[8,9,["G2532"]],[9,12,["G3049"]],[12,14,["G846"]],[14,15,["G1519"]],[15,16,["G1343"]]]},{"k":28026,"v":[[0,1,["G1161"]],[1,5,["G2038"]],[5,7,["G3588"]],[7,8,["G3408"]],[8,9,["G3756"]],[9,10,["G3049"]],[10,11,["G2596"]],[11,12,["G5485"]],[12,13,["G235"]],[13,14,["G2596"]],[14,15,["G3783"]]]},{"k":28027,"v":[[0,1,["G1161"]],[1,5,["G2038"]],[5,6,["G3361"]],[6,7,["G1161"]],[7,8,["G4100"]],[8,9,["G1909"]],[9,12,["G1344"]],[12,13,["G3588"]],[13,14,["G765"]],[14,15,["G848"]],[15,16,["G4102"]],[16,18,["G3049"]],[18,19,["G1519"]],[19,20,["G1343"]]]},{"k":28028,"v":[[0,2,["G2509"]],[2,3,["G1138"]],[3,4,["G2532"]],[4,5,["G3004"]],[5,6,["G3588"]],[6,7,["G3108"]],[7,9,["G3588"]],[9,10,["G444"]],[10,12,["G3739"]],[12,13,["G2316"]],[13,14,["G3049"]],[14,15,["G1343"]],[15,16,["G5565"]],[16,17,["G2041"]]]},{"k":28029,"v":[[0,2,["G3107"]],[2,5,["G3739"]],[5,6,["G458"]],[6,8,["G863"]],[8,9,["G2532"]],[9,10,["G3739"]],[10,11,["G266"]],[11,13,["G1943"]]]},{"k":28030,"v":[[0,1,["G3107"]],[1,4,["G435"]],[4,6,["G3739"]],[6,8,["G2962"]],[8,10,["G3364"]],[10,11,["G3049"]],[11,12,["G266"]]]},{"k":28031,"v":[[0,2,["G3778"]],[2,3,["G3108"]],[3,4,["G3767"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G4061"]],[7,9,["G2228"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G203"]],[12,13,["G2532"]],[13,14,["G1063"]],[14,16,["G3004"]],[16,17,["G3754"]],[17,18,["G4102"]],[18,20,["G3049"]],[20,22,["G11"]],[22,23,["G1519"]],[23,24,["G1343"]]]},{"k":28032,"v":[[0,1,["G4459"]],[1,4,["G3767"]],[4,5,["G3049"]],[5,8,["G5607"]],[8,9,["G1722"]],[9,10,["G4061"]],[10,11,["G2228"]],[11,12,["G1722"]],[12,13,["G203"]],[13,14,["G3756"]],[14,15,["G1722"]],[15,16,["G4061"]],[16,17,["G235"]],[17,18,["G1722"]],[18,19,["G203"]]]},{"k":28033,"v":[[0,1,["G2532"]],[1,3,["G2983"]],[3,5,["G4592"]],[5,7,["G4061"]],[7,9,["G4973"]],[9,11,["G3588"]],[11,12,["G1343"]],[12,14,["G3588"]],[14,15,["G4102"]],[15,16,["G3588"]],[16,22,["G1722","G203"]],[22,23,["G846"]],[23,25,["G1511"]],[25,27,["G3962"]],[27,29,["G3956"]],[29,32,["G4100"]],[32,37,["G1223","G203"]],[37,39,["G1343"]],[39,42,["G3049"]],[42,44,["G846"]],[44,45,["G2532"]]]},{"k":28034,"v":[[0,1,["G2532"]],[1,3,["G3962"]],[3,5,["G4061"]],[5,7,["G3588"]],[7,10,["G3756"]],[10,11,["G1537"]],[11,13,["G4061"]],[13,14,["G3440"]],[14,15,["G235"]],[15,18,["G4748","G2532"]],[18,20,["G3588"]],[20,21,["G2487"]],[21,24,["G4102"]],[24,26,["G2257"]],[26,27,["G3962"]],[27,28,["G11"]],[28,34,["G1722","G203"]]]},{"k":28035,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G1860"]],[3,5,["G846"]],[5,7,["G1511"]],[7,8,["G3588"]],[8,9,["G2818"]],[9,11,["G3588"]],[11,12,["G2889"]],[12,14,["G3756"]],[14,16,["G11"]],[16,17,["G2228"]],[17,19,["G848"]],[19,20,["G4690"]],[20,21,["G1223"]],[21,23,["G3551"]],[23,24,["G235"]],[24,25,["G1223"]],[25,27,["G1343"]],[27,29,["G4102"]]]},{"k":28036,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,6,["G1537"]],[6,8,["G3551"]],[8,10,["G2818"]],[10,11,["G4102"]],[11,14,["G2758"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G1860"]],[17,21,["G2673"]]]},{"k":28037,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3551"]],[3,4,["G2716"]],[4,5,["G3709"]],[5,6,["G1063"]],[6,7,["G3757"]],[7,8,["G3756"]],[8,9,["G3551"]],[9,10,["G2076"]],[10,13,["G3761"]],[13,14,["G3847"]]]},{"k":28038,"v":[[0,1,["G1223","G5124"]],[1,4,["G1537"]],[4,5,["G4102"]],[5,6,["G2443"]],[6,10,["G2596"]],[10,11,["G5485"]],[11,15,["G3588"]],[15,16,["G1860"]],[16,18,["G1511"]],[18,19,["G949"]],[19,21,["G3956"]],[21,22,["G3588"]],[22,23,["G4690"]],[23,24,["G3756"]],[24,26,["G3588"]],[26,27,["G3440"]],[27,30,["G1537"]],[30,31,["G3588"]],[31,32,["G3551"]],[32,33,["G235"]],[33,35,["G3588"]],[35,36,["G2532"]],[36,39,["G1537"]],[39,41,["G4102"]],[41,43,["G11"]],[43,44,["G3739"]],[44,45,["G2076"]],[45,47,["G3962"]],[47,49,["G2257"]],[49,50,["G3956"]]]},{"k":28039,"v":[[0,1,["G2531"]],[1,4,["G1125"]],[4,7,["G5087"]],[7,8,["G4571"]],[8,10,["G3962"]],[10,12,["G4183"]],[12,13,["G1484"]],[13,14,["G2713"]],[14,16,["G3739"]],[16,18,["G4100"]],[18,20,["G2316"]],[20,22,["G2227"]],[22,23,["G3588"]],[23,24,["G3498"]],[24,25,["G2532"]],[25,26,["G2564"]],[26,30,["G5607"]],[30,31,["G3361"]],[31,33,["G5613"]],[33,35,["G5607"]]]},{"k":28040,"v":[[0,1,["G3739"]],[1,2,["G3844"]],[2,3,["G1680"]],[3,4,["G4100"]],[4,5,["G1909"]],[5,6,["G1680"]],[6,8,["G846"]],[8,10,["G1096"]],[10,12,["G3962"]],[12,14,["G4183"]],[14,15,["G1484"]],[15,16,["G2596"]],[16,21,["G2046"]],[21,22,["G3779"]],[22,24,["G4675"]],[24,25,["G4690"]],[25,26,["G2071"]]]},{"k":28041,"v":[[0,1,["G2532"]],[1,4,["G770","G3361"]],[4,6,["G4102"]],[6,8,["G2657"]],[8,9,["G3756"]],[9,11,["G1438"]],[11,12,["G4983"]],[12,13,["G2235"]],[13,14,["G3499"]],[14,17,["G5225"]],[17,18,["G4225"]],[18,22,["G1541"]],[22,23,["G2532"]],[23,25,["G3588"]],[25,26,["G3500"]],[26,28,["G4564"]],[28,29,["G3388"]]]},{"k":28042,"v":[[0,1,["(G1161)"]],[1,2,["G1252"]],[2,3,["G3756"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G1860"]],[6,8,["G2316"]],[8,10,["G570"]],[10,11,["G235"]],[11,13,["G1743"]],[13,15,["G4102"]],[15,16,["G1325"]],[16,17,["G1391"]],[17,19,["G2316"]]]},{"k":28043,"v":[[0,1,["G2532"]],[1,4,["G4135"]],[4,5,["G3754"]],[5,6,["G3739"]],[6,9,["G1861"]],[9,11,["G2076"]],[11,12,["G1415"]],[12,13,["G2532"]],[13,15,["G4160"]]]},{"k":28044,"v":[[0,1,["G2532"]],[1,2,["G1352"]],[2,5,["G3049"]],[5,7,["G846"]],[7,8,["G1519"]],[8,9,["G1343"]]]},{"k":28045,"v":[[0,1,["G1161"]],[1,4,["G3756"]],[4,5,["G1125"]],[5,8,["G1223","G846"]],[8,9,["G3440"]],[9,10,["G3754"]],[10,13,["G3049"]],[13,15,["G846"]]]},{"k":28046,"v":[[0,1,["G235"]],[1,2,["G1223"]],[2,3,["G2248"]],[3,4,["G2532"]],[4,6,["G3739"]],[6,8,["G3195"]],[8,10,["G3049"]],[10,12,["G3588"]],[12,13,["G4100"]],[13,14,["G1909"]],[14,18,["G1453"]],[18,19,["G2424"]],[19,20,["G2257"]],[20,21,["G2962"]],[21,22,["G1537"]],[22,24,["G3498"]]]},{"k":28047,"v":[[0,1,["G3739"]],[1,3,["G3860"]],[3,4,["G1223"]],[4,5,["G2257"]],[5,6,["G3900"]],[6,7,["G2532"]],[7,10,["G1453"]],[10,11,["G1223"]],[11,12,["G2257"]],[12,13,["G1347"]]]},{"k":28048,"v":[[0,1,["G3767"]],[1,3,["G1344"]],[3,4,["G1537"]],[4,5,["G4102"]],[5,7,["G2192"]],[7,8,["G1515"]],[8,9,["G4314"]],[9,10,["G2316"]],[10,11,["G1223"]],[11,12,["G2257"]],[12,13,["G2962"]],[13,14,["G2424"]],[14,15,["G5547"]]]},{"k":28049,"v":[[0,1,["G1223"]],[1,2,["G3739"]],[2,3,["G2532"]],[3,5,["G2192"]],[5,6,["G4318"]],[6,8,["G4102"]],[8,9,["G1519"]],[9,10,["G5026"]],[10,11,["G5485"]],[11,12,["G1722","G3739"]],[12,14,["G2476"]],[14,15,["G2532"]],[15,16,["G2744"]],[16,17,["G1909"]],[17,18,["G1680"]],[18,20,["G3588"]],[20,21,["G1391"]],[21,23,["G2316"]]]},{"k":28050,"v":[[0,1,["G1161"]],[1,2,["G3756"]],[2,3,["G3440"]],[3,5,["G235"]],[5,7,["G2744"]],[7,8,["G1722"]],[8,9,["G2347"]],[9,10,["G2532"]],[10,11,["G1492"]],[11,12,["G3754"]],[12,13,["G2347"]],[13,14,["G2716"]],[14,15,["G5281"]]]},{"k":28051,"v":[[0,1,["G1161"]],[1,2,["G5281"]],[2,3,["G1382"]],[3,4,["G1161"]],[4,5,["G1382"]],[5,6,["G1680"]]]},{"k":28052,"v":[[0,1,["G1161"]],[1,2,["G1680"]],[2,5,["G2617","G3756"]],[5,6,["G3754"]],[6,7,["G3588"]],[7,8,["G26"]],[8,10,["G2316"]],[10,13,["G1632"]],[13,14,["G1722"]],[14,15,["G2257"]],[15,16,["G2588"]],[16,17,["G1223"]],[17,19,["G40"]],[19,20,["G4151"]],[20,23,["G1325"]],[23,25,["G2254"]]]},{"k":28053,"v":[[0,1,["G1063"]],[1,3,["G2257"]],[3,4,["G5607"]],[4,5,["G2089"]],[5,7,["G772"]],[7,8,["G2596"]],[8,10,["G2540"]],[10,11,["G5547"]],[11,12,["G599"]],[12,13,["G5228"]],[13,15,["G765"]]]},{"k":28054,"v":[[0,1,["G1063"]],[1,2,["G3433"]],[2,3,["G5228"]],[3,6,["G1342"]],[6,8,["G5100"]],[8,9,["G599"]],[9,10,["G1063"]],[10,11,["G5029"]],[11,12,["G5228"]],[12,15,["G18"]],[15,16,["G5100"]],[16,18,["G2532"]],[18,19,["G5111"]],[19,21,["G599"]]]},{"k":28055,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,3,["G4921"]],[3,4,["G1438"]],[4,5,["G26"]],[5,6,["G1519"]],[6,7,["G2248"]],[7,9,["G3754"]],[9,11,["G2257"]],[11,12,["G5607"]],[12,13,["G2089"]],[13,14,["G268"]],[14,15,["G5547"]],[15,16,["G599"]],[16,17,["G5228"]],[17,18,["G2257"]]]},{"k":28056,"v":[[0,1,["G4183"]],[1,2,["G3123"]],[2,3,["G3767"]],[3,5,["G3568"]],[5,6,["G1344"]],[6,7,["G1722"]],[7,8,["G848"]],[8,9,["G129"]],[9,13,["G4982"]],[13,14,["G575"]],[14,15,["G3709"]],[15,16,["G1223"]],[16,17,["G846"]]]},{"k":28057,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,5,["G5607"]],[5,6,["G2190"]],[6,9,["G2644"]],[9,11,["G2316"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G2288"]],[14,16,["G848"]],[16,17,["G5207"]],[17,18,["G4183"]],[18,19,["G3123"]],[19,21,["G2644"]],[21,25,["G4982"]],[25,26,["G1722"]],[26,27,["G848"]],[27,28,["G2222"]]]},{"k":28058,"v":[[0,1,["G1161"]],[1,2,["G3756"]],[2,3,["G3440"]],[3,5,["G235"]],[5,7,["G2532"]],[7,8,["G2744"]],[8,9,["G1722"]],[9,10,["G2316"]],[10,11,["G1223"]],[11,12,["G2257"]],[12,13,["G2962"]],[13,14,["G2424"]],[14,15,["G5547"]],[15,16,["G1223"]],[16,17,["G3739"]],[17,20,["G3568"]],[20,21,["G2983"]],[21,22,["G3588"]],[22,23,["G2643"]]]},{"k":28059,"v":[[0,1,["G1223","G5124"]],[1,2,["G5618"]],[2,3,["G1223"]],[3,4,["G1520"]],[4,5,["G444"]],[5,6,["G266"]],[6,7,["G1525"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G2889"]],[10,11,["G2532"]],[11,12,["G2288"]],[12,13,["G1223"]],[13,14,["G266"]],[14,15,["G2532"]],[15,16,["G3779"]],[16,17,["G2288"]],[17,18,["G1330"]],[18,19,["G1519"]],[19,20,["G3956"]],[20,21,["G444"]],[21,22,["G1909"]],[22,23,["G3739"]],[23,24,["G3956"]],[24,26,["G264"]]]},{"k":28060,"v":[[0,1,["G1063"]],[1,2,["G891"]],[2,4,["G3551"]],[4,5,["G266"]],[5,6,["G2258"]],[6,7,["G1722"]],[7,9,["G2889"]],[9,10,["G1161"]],[10,11,["G266"]],[11,13,["G3756"]],[13,14,["G1677"]],[14,17,["G5607"]],[17,18,["G3361"]],[18,19,["G3551"]]]},{"k":28061,"v":[[0,1,["G235"]],[1,2,["G2288"]],[2,3,["G936"]],[3,4,["G575"]],[4,5,["G76"]],[5,6,["G3360"]],[6,7,["G3475"]],[7,8,["G2532"]],[8,9,["G1909"]],[9,14,["G264","G3361"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,17,["G3667"]],[17,19,["G76"]],[19,20,["G3847"]],[20,21,["G3739"]],[21,22,["G2076"]],[22,24,["G5179"]],[24,26,["G3588"]],[26,30,["G3195"]]]},{"k":28062,"v":[[0,1,["G235"]],[1,2,["G3756"]],[2,3,["G5613"]],[3,4,["G3588"]],[4,5,["G3900"]],[5,6,["G3779"]],[6,7,["G2532"]],[7,9,["G3588"]],[9,11,["G5486"]],[11,12,["G1063"]],[12,13,["G1487"]],[13,15,["G3588"]],[15,16,["G3900"]],[16,18,["G1520"]],[18,19,["G4183"]],[19,21,["G599"]],[21,22,["G4183"]],[22,23,["G3123"]],[23,24,["G3588"]],[24,25,["G5485"]],[25,27,["G2316"]],[27,28,["G2532"]],[28,29,["G3588"]],[29,30,["G1431"]],[30,31,["G1722"]],[31,32,["G5485"]],[32,33,["(G3588)"]],[33,36,["G1520"]],[36,37,["G444"]],[37,38,["G2424"]],[38,39,["G5547"]],[39,41,["G4052"]],[41,42,["G1519"]],[42,43,["G4183"]]]},{"k":28063,"v":[[0,1,["G2532"]],[1,2,["G3756"]],[2,3,["G5613"]],[3,6,["G1223"]],[6,7,["G1520"]],[7,9,["G264"]],[9,12,["G3588"]],[12,13,["G1434"]],[13,14,["G1063"]],[14,15,["G3588","(G3303)"]],[15,16,["G2917"]],[16,18,["G1537"]],[18,19,["G1520"]],[19,20,["G1519"]],[20,21,["G2631"]],[21,22,["G1161"]],[22,23,["G3588"]],[23,25,["G5486"]],[25,27,["G1537"]],[27,28,["G4183"]],[28,29,["G3900"]],[29,30,["G1519"]],[30,31,["G1345"]]]},{"k":28064,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,5,["G1520"]],[5,6,["G3900"]],[6,7,["G2288"]],[7,8,["G936"]],[8,9,["G1223"]],[9,10,["G1520"]],[10,11,["G4183"]],[11,12,["G3123"]],[12,15,["G2983"]],[15,16,["G4050"]],[16,18,["G5485"]],[18,19,["G2532"]],[19,21,["G3588"]],[21,22,["G1431"]],[22,24,["G1343"]],[24,26,["G936"]],[26,27,["G1722"]],[27,28,["G2222"]],[28,29,["G1223"]],[29,30,["G1520"]],[30,31,["G2424"]],[31,32,["G5547"]]]},{"k":28065,"v":[[0,1,["G686","G3767"]],[1,2,["G5613"]],[2,3,["G1223"]],[3,5,["G3900"]],[5,7,["G1520"]],[7,10,["G1519"]],[10,11,["G3956"]],[11,12,["G444"]],[12,13,["G1519"]],[13,14,["G2631"]],[14,15,["G2532"]],[15,16,["G3779"]],[16,17,["G1223"]],[17,19,["G1345"]],[19,21,["G1520"]],[21,26,["G1519"]],[26,27,["G3956"]],[27,28,["G444"]],[28,29,["G1519"]],[29,30,["G1347"]],[30,32,["G2222"]]]},{"k":28066,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G1223"]],[3,4,["G1520"]],[4,5,["G444"]],[5,6,["G3876"]],[6,7,["G4183"]],[7,9,["G2525"]],[9,10,["G268"]],[10,11,["G3779","(G2532)"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G5218"]],[14,16,["G1520"]],[16,18,["G4183"]],[18,20,["G2525"]],[20,21,["G1342"]]]},{"k":28067,"v":[[0,1,["G1161"]],[1,3,["G3551"]],[3,4,["G3922"]],[4,5,["G2443"]],[5,6,["G3588"]],[6,7,["G3900"]],[7,9,["G4121"]],[9,10,["G1161"]],[10,11,["G3757"]],[11,12,["G266"]],[12,13,["G4121"]],[13,14,["G5485"]],[14,18,["G5248"]]]},{"k":28068,"v":[[0,1,["G2443"]],[1,2,["G5618"]],[2,3,["G266"]],[3,5,["G936"]],[5,6,["G1722"]],[6,7,["G2288"]],[7,8,["G2532"]],[8,9,["G3779"]],[9,11,["G5485"]],[11,12,["G936"]],[12,13,["G1223"]],[13,14,["G1343"]],[14,15,["G1519"]],[15,16,["G166"]],[16,17,["G2222"]],[17,18,["G1223"]],[18,19,["G2424"]],[19,20,["G5547"]],[20,21,["G2257"]],[21,22,["G2962"]]]},{"k":28069,"v":[[0,1,["G5101"]],[1,4,["G2046"]],[4,5,["G3767"]],[5,8,["G1961"]],[8,10,["G266"]],[10,11,["G2443"]],[11,12,["G5485"]],[12,14,["G4121"]]]},{"k":28070,"v":[[0,2,["G1096","G3361"]],[2,3,["G4459"]],[3,6,["G3748"]],[6,8,["G599"]],[8,10,["G266"]],[10,11,["G2198"]],[11,13,["G2089"]],[13,14,["G1722","G846"]]]},{"k":28071,"v":[[0,0,["(G2228)"]],[0,3,["G50"]],[3,4,["G3754"]],[4,9,["G3745"]],[9,11,["G907"]],[11,12,["G1519"]],[12,13,["G2424"]],[13,14,["G5547"]],[14,16,["G907"]],[16,17,["G1519"]],[17,18,["G848"]],[18,19,["G2288"]]]},{"k":28072,"v":[[0,1,["G3767"]],[1,4,["G4916"]],[4,6,["G846"]],[6,7,["G1223"]],[7,8,["G908"]],[8,9,["G1519"]],[9,10,["G2288"]],[10,11,["G2443"]],[11,13,["G5618"]],[13,14,["G5547"]],[14,17,["G1453"]],[17,18,["G1537"]],[18,20,["G3498"]],[20,21,["G1223"]],[21,22,["G3588"]],[22,23,["G1391"]],[23,25,["G3588"]],[25,26,["G3962"]],[26,27,["G2532"]],[27,28,["G3779"]],[28,29,["G2249"]],[29,30,["G2532"]],[30,32,["G4043"]],[32,33,["G1722"]],[33,34,["G2538"]],[34,36,["G2222"]]]},{"k":28073,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,5,["G1096"]],[5,7,["G4854"]],[7,9,["G3588"]],[9,10,["G3667"]],[10,12,["G848"]],[12,13,["G2288"]],[13,16,["G2071","(G235)"]],[16,17,["G2532"]],[17,23,["G386"]]]},{"k":28074,"v":[[0,1,["G1097"]],[1,2,["G5124"]],[2,3,["G3754"]],[3,4,["G2257"]],[4,5,["G3820"]],[5,6,["G444"]],[6,9,["G4957"]],[9,11,["G2443"]],[11,12,["G3588"]],[12,13,["G4983"]],[13,15,["G266"]],[15,18,["G2673"]],[18,20,["G3371"]],[20,21,["G2248"]],[21,24,["G1398"]],[24,25,["G266"]]]},{"k":28075,"v":[[0,1,["G1063"]],[1,5,["G599"]],[5,7,["G1344"]],[7,8,["G575"]],[8,9,["G266"]]]},{"k":28076,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,5,["G599"]],[5,6,["G4862"]],[6,7,["G5547"]],[7,9,["G4100"]],[9,10,["G3754"]],[10,13,["G2532"]],[13,15,["G4800"]],[15,16,["G846"]]]},{"k":28077,"v":[[0,1,["G1492"]],[1,2,["G3754"]],[2,3,["G5547"]],[3,5,["G1453"]],[5,6,["G1537"]],[6,8,["G3498"]],[8,9,["G599"]],[9,11,["G3765"]],[11,12,["G2288"]],[12,17,["G2961","G3765"]],[17,18,["G846"]]]},{"k":28078,"v":[[0,1,["G1063"]],[1,3,["G3739"]],[3,5,["G599"]],[5,7,["G599"]],[7,9,["G266"]],[9,10,["G2178"]],[10,11,["G1161"]],[11,13,["G3739"]],[13,15,["G2198"]],[15,17,["G2198"]],[17,19,["G2316"]]]},{"k":28079,"v":[[0,1,["G3779"]],[1,2,["G3049"]],[2,3,["G5210"]],[3,4,["G2532"]],[4,5,["G1438"]],[5,7,["G1511"]],[7,8,["G3498"]],[8,9,["G3303"]],[9,11,["G266"]],[11,12,["G1161"]],[12,13,["G2198"]],[13,15,["G2316"]],[15,16,["G1722"]],[16,17,["G2424"]],[17,18,["G5547"]],[18,19,["G2257"]],[19,20,["G2962"]]]},{"k":28080,"v":[[0,2,["G3361"]],[2,3,["G266"]],[3,4,["G3767"]],[4,5,["G936"]],[5,6,["G1722"]],[6,7,["G5216"]],[7,8,["G2349"]],[8,9,["G4983"]],[9,13,["G5219"]],[13,14,["G846"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G1939"]],[17,18,["G848"]]]},{"k":28081,"v":[[0,1,["G3366"]],[1,2,["G3936"]],[2,4,["G5216"]],[4,5,["G3196"]],[5,7,["G3696"]],[7,9,["G93"]],[9,11,["G266"]],[11,12,["G235"]],[12,13,["G3936"]],[13,14,["G1438"]],[14,16,["G2316"]],[16,17,["G5613"]],[17,21,["G2198"]],[21,22,["G1537"]],[22,24,["G3498"]],[24,25,["G2532"]],[25,26,["G5216"]],[26,27,["G3196"]],[27,29,["G3696"]],[29,31,["G1343"]],[31,33,["G2316"]]]},{"k":28082,"v":[[0,1,["G1063"]],[1,2,["G266"]],[2,4,["G3756"]],[4,7,["G2961"]],[7,8,["G5216"]],[8,9,["G1063"]],[9,11,["G2075"]],[11,12,["G3756"]],[12,13,["G5259"]],[13,15,["G3551"]],[15,16,["G235"]],[16,17,["G5259"]],[17,18,["G5485"]]]},{"k":28083,"v":[[0,1,["G5101"]],[1,2,["G3767"]],[2,5,["G264"]],[5,6,["G3754"]],[6,8,["G2070"]],[8,9,["G3756"]],[9,10,["G5259"]],[10,12,["G3551"]],[12,13,["G235"]],[13,14,["G5259"]],[14,15,["G5485"]],[15,17,["G1096","G3361"]]]},{"k":28084,"v":[[0,1,["G1492"]],[1,3,["G3756"]],[3,4,["G3754"]],[4,6,["G3739"]],[6,8,["G3936"]],[8,9,["G1438"]],[9,10,["G1401"]],[10,11,["G1519"]],[11,12,["G5218"]],[12,14,["G1401"]],[14,16,["G2075"]],[16,18,["G3739"]],[18,20,["G5219"]],[20,21,["G2273"]],[21,23,["G266"]],[23,24,["G1519"]],[24,25,["G2288"]],[25,26,["G2228"]],[26,28,["G5218"]],[28,29,["G1519"]],[29,30,["G1343"]]]},{"k":28085,"v":[[0,1,["G1161"]],[1,4,["G2316","G5485"]],[4,5,["G3754"]],[5,7,["G2258"]],[7,9,["G1401"]],[9,11,["G266"]],[11,12,["G1161"]],[12,15,["G5219"]],[15,16,["G1537"]],[16,18,["G2588"]],[18,20,["G5179"]],[20,22,["G1322","(G1519)"]],[22,23,["G3739"]],[23,25,["G3860"]],[25,26,[]]]},{"k":28086,"v":[[0,2,["(G1161)"]],[2,4,["G1659"]],[4,5,["G575"]],[5,6,["G266"]],[6,10,["G1402"]],[10,12,["G1343"]]]},{"k":28087,"v":[[0,2,["G3004"]],[2,7,["G442"]],[7,8,["G1223"]],[8,10,["G3588"]],[10,11,["G769"]],[11,13,["G5216"]],[13,14,["G4561"]],[14,15,["G1063"]],[15,16,["G5618"]],[16,19,["G3936"]],[19,20,["G5216"]],[20,21,["G3196"]],[21,22,["G1400"]],[22,24,["G167"]],[24,25,["G2532"]],[25,27,["G458"]],[27,28,["G1519"]],[28,29,["G458"]],[29,31,["G3779"]],[31,32,["G3568"]],[32,33,["G3936"]],[33,34,["G5216"]],[34,35,["G3196"]],[35,36,["G1400"]],[36,38,["G1343"]],[38,39,["G1519"]],[39,40,["G38"]]]},{"k":28088,"v":[[0,1,["G1063"]],[1,2,["G3753"]],[2,4,["G2258"]],[4,6,["G1401"]],[6,8,["G266"]],[8,10,["G2258"]],[10,11,["G1658"]],[11,13,["G1343"]]]},{"k":28089,"v":[[0,1,["G5101"]],[1,2,["G2590","(G3767)"]],[2,3,["G2192"]],[3,5,["G5119"]],[5,6,["G1909"]],[6,9,["G3739"]],[9,13,["G1870","G3568"]],[13,14,["G1063"]],[14,15,["G3588"]],[15,16,["G5056"]],[16,19,["G1565"]],[19,21,["G2288"]]]},{"k":28090,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,5,["G1659"]],[5,6,["G575"]],[6,7,["G266"]],[7,8,["G1161"]],[8,10,["G1402"]],[10,12,["G2316"]],[12,14,["G2192"]],[14,15,["G5216"]],[15,16,["G2590"]],[16,17,["G1519"]],[17,18,["G38"]],[18,19,["G1161"]],[19,20,["G3588"]],[20,21,["G5056"]],[21,22,["G166"]],[22,23,["G2222"]]]},{"k":28091,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3800"]],[3,5,["G266"]],[5,7,["G2288"]],[7,8,["G1161"]],[8,9,["G3588"]],[9,10,["G5486"]],[10,12,["G2316"]],[12,14,["G166"]],[14,15,["G2222"]],[15,16,["G1722"]],[16,17,["G2424"]],[17,18,["G5547"]],[18,19,["G2257"]],[19,20,["G2962"]]]},{"k":28092,"v":[[0,0,["(G2228)"]],[0,3,["G50"]],[3,4,["G80"]],[4,5,["G1063"]],[5,7,["G2980"]],[7,11,["G1097"]],[11,13,["G3551"]],[13,15,["G3754"]],[15,16,["G3588"]],[16,17,["G3551"]],[17,20,["G2961"]],[20,22,["G444","(G1909)"]],[22,25,["G3745","G5550"]],[25,27,["G2198"]]]},{"k":28093,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G1135"]],[3,7,["G5220"]],[7,9,["G1210"]],[9,12,["G3551"]],[12,15,["G435"]],[15,20,["G2198"]],[20,21,["G1161"]],[21,22,["G1437"]],[22,23,["G3588"]],[23,24,["G435"]],[24,26,["G599"]],[26,29,["G2673"]],[29,30,["G575"]],[30,31,["G3588"]],[31,32,["G3551"]],[32,35,["G435"]]]},{"k":28094,"v":[[0,1,["G686"]],[1,2,["G3767"]],[2,3,["G1437"]],[3,6,["G435"]],[6,7,["G2198"]],[7,10,["G1096"]],[10,12,["G2087"]],[12,13,["G435"]],[13,17,["G5537"]],[17,19,["G3428"]],[19,20,["G1161"]],[20,21,["G1437"]],[21,23,["G435"]],[23,25,["G599"]],[25,27,["G2076"]],[27,28,["G1658"]],[28,29,["G575"]],[29,31,["G3551"]],[31,34,["G846"]],[34,35,["G1511"]],[35,36,["G3361"]],[36,37,["G3428"]],[37,41,["G1096"]],[41,43,["G2087"]],[43,44,["G435"]]]},{"k":28095,"v":[[0,1,["G5620"]],[1,2,["G3450"]],[2,3,["G80"]],[3,4,["G5210"]],[4,5,["G2532"]],[5,8,["G2289"]],[8,10,["G3588"]],[10,11,["G3551"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G4983"]],[14,16,["G5547"]],[16,18,["G5209"]],[18,21,["G1096"]],[21,23,["G2087"]],[23,29,["G1453"]],[29,30,["G1537"]],[30,32,["G3498"]],[32,33,["G2443"]],[33,38,["G2592"]],[38,40,["G2316"]]]},{"k":28096,"v":[[0,1,["G1063"]],[1,2,["G3753"]],[2,4,["G2258"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G4561"]],[7,8,["G3588"]],[8,9,["G3804"]],[9,11,["G266"]],[11,12,["G3588"]],[12,14,["G1223"]],[14,15,["G3588"]],[15,16,["G3551"]],[16,18,["G1754"]],[18,19,["G1722"]],[19,20,["G2257"]],[20,21,["G3196"]],[21,25,["G2592"]],[25,27,["G2288"]]]},{"k":28097,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,5,["G2673"]],[5,6,["G575"]],[6,7,["G3588"]],[7,8,["G3551"]],[8,11,["G599"]],[11,12,["G1722","G3739"]],[12,15,["G2722"]],[15,16,["G5620"]],[16,17,["G2248"]],[17,19,["G1398"]],[19,20,["G1722"]],[20,21,["G2538"]],[21,23,["G4151"]],[23,24,["G2532"]],[24,25,["G3756"]],[25,28,["G3821"]],[28,31,["G1121"]]]},{"k":28098,"v":[[0,1,["G5101"]],[1,4,["G2046"]],[4,5,["G3767"]],[5,7,["G3588"]],[7,8,["G3551"]],[8,9,["G266"]],[9,11,["G1096","G3361"]],[11,12,["G235"]],[12,15,["G3756"]],[15,16,["G1097"]],[16,17,["G266"]],[17,18,["G1508"]],[18,19,["G1223"]],[19,21,["G3551"]],[21,22,["G1063"]],[22,24,["(G5037)"]],[24,25,["G3756"]],[25,26,["G1492"]],[26,27,["G1939"]],[27,28,["G1508"]],[28,29,["G3588"]],[29,30,["G3551"]],[30,32,["G3004"]],[32,35,["G3756"]],[35,36,["G1937"]]]},{"k":28099,"v":[[0,1,["G1161"]],[1,2,["G266"]],[2,3,["G2983"]],[3,4,["G874"]],[4,5,["G1223"]],[5,6,["G3588"]],[6,7,["G1785"]],[7,8,["G2716"]],[8,9,["G1722"]],[9,10,["G1698"]],[10,12,["G3956"]],[12,14,["G1939"]],[14,15,["G1063"]],[15,16,["G5565"]],[16,18,["G3551"]],[18,19,["G266"]],[19,21,["G3498"]]]},{"k":28100,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,4,["G2198"]],[4,5,["G5565"]],[5,7,["G3551"]],[7,8,["G4218"]],[8,9,["G1161"]],[9,11,["G3588"]],[11,12,["G1785"]],[12,13,["G2064"]],[13,14,["G266"]],[14,15,["G326"]],[15,16,["G1161"]],[16,17,["G1473"]],[17,18,["G599"]]]},{"k":28101,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1785"]],[3,4,["G3588"]],[4,7,["G1519"]],[7,8,["G2222"]],[8,9,["G3427"]],[9,10,["G2147"]],[10,12,["(G3778)"]],[12,13,["G1519"]],[13,14,["G2288"]]]},{"k":28102,"v":[[0,1,["G1063"]],[1,2,["G266"]],[2,3,["G2983"]],[3,4,["G874"]],[4,5,["G1223"]],[5,6,["G3588"]],[6,7,["G1785"]],[7,8,["G1818"]],[8,9,["G3165"]],[9,10,["G2532"]],[10,11,["G1223"]],[11,12,["G846"]],[12,13,["G615"]],[13,14,[]]]},{"k":28103,"v":[[0,1,["G5620"]],[1,2,["G3588"]],[2,3,["G3551"]],[3,5,["G40"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G1785"]],[8,9,["G40"]],[9,10,["G2532"]],[10,11,["G1342"]],[11,12,["G2532"]],[12,13,["G18"]]]},{"k":28104,"v":[[0,2,["G3767"]],[2,6,["G18"]],[6,7,["G1096"]],[7,8,["G2288"]],[8,10,["G1698"]],[10,12,["G1096","G3361"]],[12,13,["G235"]],[13,14,["G266"]],[14,15,["G2443"]],[15,18,["G5316"]],[18,19,["G266"]],[19,20,["G2716"]],[20,21,["G2288"]],[21,23,["G3427"]],[23,24,["G1223"]],[24,28,["G18"]],[28,29,["G2443"]],[29,30,["G266"]],[30,31,["G1223"]],[31,32,["G3588"]],[32,33,["G1785"]],[33,35,["G1096"]],[35,36,["G2596","G5236"]],[36,37,["G268"]]]},{"k":28105,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G3588"]],[5,6,["G3551"]],[6,7,["G2076"]],[7,8,["G4152"]],[8,9,["G1161"]],[9,10,["G1473"]],[10,11,["G1510"]],[11,12,["G4559"]],[12,13,["G4097"]],[13,14,["G5259"]],[14,15,["G266"]]]},{"k":28106,"v":[[0,1,["G1063"]],[1,3,["G3739"]],[3,5,["G2716"]],[5,7,["G1097"]],[7,8,["G3756"]],[8,9,["G1063"]],[9,10,["G3739"]],[10,12,["G2309"]],[12,13,["G5124"]],[13,14,["G4238"]],[14,16,["G3756"]],[16,17,["G235"]],[17,18,["G3739"]],[18,20,["G3404"]],[20,21,["G5124"]],[21,22,["G4160"]],[22,23,[]]]},{"k":28107,"v":[[0,1,["G1487"]],[1,2,["G1161"]],[2,4,["G4160"]],[4,5,["G5124"]],[5,6,["G3739"]],[6,8,["G2309"]],[8,9,["G3756"]],[9,11,["G4852"]],[11,13,["G3588"]],[13,14,["G3551"]],[14,15,["G3754"]],[15,18,["G2570"]]]},{"k":28108,"v":[[0,1,["G3570"]],[1,2,["G1161"]],[2,6,["G3765"]],[6,7,["G1473"]],[7,9,["G2716"]],[9,10,["G846"]],[10,11,["G235"]],[11,12,["G266"]],[12,14,["G3611"]],[14,15,["G1722"]],[15,16,["G1698"]]]},{"k":28109,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G1722"]],[5,6,["G1698"]],[6,8,["G5123"]],[8,9,["G1722"]],[9,10,["G3450"]],[10,11,["G4561"]],[11,12,["G3611"]],[12,13,["G3756"]],[13,15,["G18"]],[15,16,["G1063"]],[16,18,["G2309"]],[18,20,["G3873"]],[20,22,["G3427"]],[22,23,["G1161"]],[23,26,["G2716"]],[26,30,["G2570"]],[30,32,["G2147"]],[32,33,["G3756"]]]},{"k":28110,"v":[[0,1,["G1063"]],[1,3,["G18"]],[3,4,["G3739"]],[4,6,["G2309"]],[6,8,["G4160"]],[8,9,["G3756"]],[9,10,["G235"]],[10,12,["G2556"]],[12,13,["G3739"]],[13,15,["G2309"]],[15,16,["G3756"]],[16,17,["G5124"]],[17,19,["G4238"]]]},{"k":28111,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G1473"]],[3,4,["G4160"]],[4,5,["G5124"]],[5,6,["(G3739)"]],[6,7,["G2309"]],[7,8,["G3756"]],[8,12,["G3765"]],[12,13,["G1473"]],[13,15,["G2716"]],[15,16,["G846"]],[16,17,["G235"]],[17,18,["G266"]],[18,20,["G3611"]],[20,21,["G1722"]],[21,22,["G1698"]]]},{"k":28112,"v":[[0,2,["G2147"]],[2,3,["G686"]],[3,5,["G3551"]],[5,8,["G1698"]],[8,9,["G2309"]],[9,10,["G4160"]],[10,11,["G2570","(G3754)"]],[11,12,["G2556"]],[12,14,["G3873"]],[14,16,["G1698"]]]},{"k":28113,"v":[[0,1,["G1063"]],[1,3,["G4913"]],[3,5,["G3588"]],[5,6,["G3551"]],[6,8,["G2316"]],[8,9,["G2596"]],[9,10,["G3588"]],[10,11,["G2080"]],[11,12,["G444"]]]},{"k":28114,"v":[[0,1,["G1161"]],[1,3,["G991"]],[3,4,["G2087"]],[4,5,["G3551"]],[5,6,["G1722"]],[6,7,["G3450"]],[7,8,["G3196"]],[8,10,["G497"]],[10,11,["G3588"]],[11,12,["G3551"]],[12,14,["G3450"]],[14,15,["G3563"]],[15,16,["G2532"]],[16,20,["G163","G3165"]],[20,22,["G3588"]],[22,23,["G3551"]],[23,25,["G266"]],[25,27,["G5607"]],[27,28,["G1722"]],[28,29,["G3450"]],[29,30,["G3196"]]]},{"k":28115,"v":[[0,2,["G5005"]],[2,3,["G444"]],[3,5,["G1473"]],[5,7,["G5101"]],[7,9,["G4506"]],[9,10,["G3165"]],[10,11,["G1537"]],[11,12,["G3588"]],[12,13,["G4983"]],[13,15,["G5127"]],[15,16,["G2288"]]]},{"k":28116,"v":[[0,2,["G2168"]],[2,3,["G2316"]],[3,4,["G1223"]],[4,5,["G2424"]],[5,6,["G5547"]],[6,7,["G2257"]],[7,8,["G2962"]],[8,9,["G686"]],[9,10,["G3767"]],[10,12,["G3588"]],[12,13,["G3563"]],[13,14,["G1473"]],[14,15,["G848","(G3303)"]],[15,16,["G1398"]],[16,18,["G3551"]],[18,20,["G2316"]],[20,21,["G1161"]],[21,23,["G3588"]],[23,24,["G4561"]],[24,26,["G3551"]],[26,28,["G266"]]]},{"k":28117,"v":[[0,3,["G686"]],[3,4,["G3568"]],[4,5,["G3762"]],[5,6,["G2631"]],[6,8,["G3588"]],[8,11,["G1722"]],[11,12,["G5547"]],[12,13,["G2424"]],[13,15,["G4043"]],[15,16,["G3361"]],[16,17,["G2596"]],[17,19,["G4561"]],[19,20,["G235"]],[20,21,["G2596"]],[21,23,["G4151"]]]},{"k":28118,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3551"]],[3,5,["G3588"]],[5,6,["G4151"]],[6,8,["G2222"]],[8,9,["G1722"]],[9,10,["G5547"]],[10,11,["G2424"]],[11,15,["G1659","G3165"]],[15,16,["G575"]],[16,17,["G3588"]],[17,18,["G3551"]],[18,20,["G266"]],[20,21,["G2532"]],[21,22,["G2288"]]]},{"k":28119,"v":[[0,1,["G1063"]],[1,3,["G3588"]],[3,4,["G3551"]],[4,7,["G102"]],[7,8,["G1722"]],[8,9,["G3739"]],[9,12,["G770"]],[12,13,["G1223"]],[13,14,["G3588"]],[14,15,["G4561"]],[15,16,["G2316"]],[16,17,["G3992"]],[17,19,["G1438"]],[19,20,["G5207"]],[20,21,["G1722"]],[21,23,["G3667"]],[23,25,["G266"]],[25,26,["G4561"]],[26,27,["G2532"]],[27,28,["G4012"]],[28,29,["G266"]],[29,30,["G2632"]],[30,31,["G266"]],[31,32,["G1722"]],[32,33,["G3588"]],[33,34,["G4561"]]]},{"k":28120,"v":[[0,1,["G2443"]],[1,2,["G3588"]],[2,3,["G1345"]],[3,5,["G3588"]],[5,6,["G3551"]],[6,9,["G4137"]],[9,10,["G1722"]],[10,11,["G2254"]],[11,13,["G4043"]],[13,14,["G3361"]],[14,15,["G2596"]],[15,17,["G4561"]],[17,18,["G235"]],[18,19,["G2596"]],[19,21,["G4151"]]]},{"k":28121,"v":[[0,1,["G1063"]],[1,4,["G5607"]],[4,5,["G2596"]],[5,7,["G4561"]],[7,9,["G5426"]],[9,11,["G3588"]],[11,13,["G3588"]],[13,14,["G4561"]],[14,15,["G1161"]],[15,16,["G3588"]],[16,19,["G2596"]],[19,21,["G4151"]],[21,23,["G3588"]],[23,25,["G3588"]],[25,26,["G4151"]]]},{"k":28122,"v":[[0,1,["G1063"]],[1,4,["G4561"]],[4,5,["G5427"]],[5,7,["G2288"]],[7,8,["G1161"]],[8,11,["G4151"]],[11,12,["G5427"]],[12,14,["G2222"]],[14,15,["G2532"]],[15,16,["G1515"]]]},{"k":28123,"v":[[0,1,["G1360"]],[1,2,["G3588"]],[2,3,["G4561"]],[3,4,["G5427"]],[4,6,["G2189"]],[6,7,["G1519"]],[7,8,["G2316"]],[8,9,["G1063"]],[9,13,["G5293","G3756"]],[13,15,["G3588"]],[15,16,["G3551"]],[16,18,["G2316"]],[18,19,["G3761"]],[19,20,["G1063"]],[20,21,["G1410"]],[21,22,[]]]},{"k":28124,"v":[[0,1,["G1161"]],[1,5,["G5607"]],[5,6,["G1722"]],[6,8,["G4561"]],[8,9,["G1410","G3756"]],[9,10,["G700"]],[10,11,["G2316"]]]},{"k":28125,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G2075"]],[3,4,["G3756"]],[4,5,["G1722"]],[5,7,["G4561"]],[7,8,["G235"]],[8,9,["G1722"]],[9,11,["G4151"]],[11,15,["G1512"]],[15,17,["G4151"]],[17,19,["G2316"]],[19,20,["G3611"]],[20,21,["G1722"]],[21,22,["G5213"]],[22,23,["G1161"]],[23,26,["G1536"]],[26,27,["G2192"]],[27,28,["G3756"]],[28,30,["G4151"]],[30,32,["G5547"]],[32,33,["G3778"]],[33,34,["G2076"]],[34,35,["G3756"]],[35,37,["G848"]]]},{"k":28126,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5547"]],[3,5,["G1722"]],[5,6,["G5213"]],[6,7,["G3588"]],[7,8,["G4983"]],[8,9,["(G3303)"]],[9,10,["G3498"]],[10,11,["G1223"]],[11,13,["G266"]],[13,14,["G1161"]],[14,15,["G3588"]],[15,16,["G4151"]],[16,18,["G2222"]],[18,19,["G1223"]],[19,21,["G1343"]]]},{"k":28127,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G4151"]],[4,9,["G1453"]],[9,10,["G2424"]],[10,11,["G1537"]],[11,13,["G3498"]],[13,14,["G3611"]],[14,15,["G1722"]],[15,16,["G5213"]],[16,20,["G1453"]],[20,21,["G5547"]],[21,22,["G1537"]],[22,24,["G3498"]],[24,26,["G2532"]],[26,27,["G2227"]],[27,28,["G5216"]],[28,29,["G2349"]],[29,30,["G4983"]],[30,31,["G1223"]],[31,32,["G848"]],[32,33,["G4151"]],[33,35,["G1774"]],[35,36,["G1722"]],[36,37,["G5213"]]]},{"k":28128,"v":[[0,1,["G686","G3767"]],[1,2,["G80"]],[2,4,["G2070"]],[4,5,["G3781"]],[5,6,["G3756"]],[6,8,["G3588"]],[8,9,["G4561"]],[9,11,["G2198"]],[11,12,["G2596"]],[12,13,["G3588"]],[13,14,["G4561"]]]},{"k":28129,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,4,["G2198"]],[4,5,["G2596"]],[5,7,["G4561"]],[7,9,["G3195"]],[9,10,["G599"]],[10,11,["G1161"]],[11,12,["G1487"]],[12,16,["G4151"]],[16,18,["G2289"]],[18,19,["G3588"]],[19,20,["G4234"]],[20,22,["G3588"]],[22,23,["G4983"]],[23,26,["G2198"]]]},{"k":28130,"v":[[0,1,["G1063"]],[1,4,["G3745"]],[4,6,["G71"]],[6,9,["G4151"]],[9,11,["G2316"]],[11,12,["G3778"]],[12,13,["G1526"]],[13,15,["G5207"]],[15,17,["G2316"]]]},{"k":28131,"v":[[0,1,["G1063"]],[1,4,["G3756"]],[4,5,["G2983"]],[5,7,["G4151"]],[7,9,["G1397"]],[9,10,["G3825"]],[10,11,["G1519"]],[11,12,["G5401"]],[12,13,["G235"]],[13,16,["G2983"]],[16,18,["G4151"]],[18,20,["G5206"]],[20,21,["G1722","G3739"]],[21,23,["G2896"]],[23,24,["G5"]],[24,25,["G3962"]]]},{"k":28132,"v":[[0,1,["G3588"]],[1,2,["G4151"]],[2,3,["G846"]],[3,6,["G4828"]],[6,7,["G2257"]],[7,8,["G4151"]],[8,9,["G3754"]],[9,11,["G2070"]],[11,13,["G5043"]],[13,15,["G2316"]]]},{"k":28133,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5043"]],[3,4,["G2532"]],[4,5,["G2818"]],[5,6,["G2818"]],[6,7,["(G3303)"]],[7,8,["G2316"]],[8,9,["G1161"]],[9,10,["G4789"]],[10,12,["G5547"]],[12,16,["G1512"]],[16,19,["G4841"]],[19,21,["G2443"]],[21,25,["G2532"]],[25,27,["G4888"]]]},{"k":28134,"v":[[0,1,["G1063"]],[1,3,["G3049"]],[3,4,["G3754"]],[4,5,["G3588"]],[5,6,["G3804"]],[6,9,["G3568"]],[9,10,["G2540"]],[10,12,["G3756"]],[12,13,["G514"]],[13,17,["G4314"]],[17,18,["G3588"]],[18,19,["G1391"]],[19,21,["G3195"]],[21,23,["G601"]],[23,24,["G1519"]],[24,25,["G2248"]]]},{"k":28135,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,4,["G603"]],[4,6,["G3588"]],[6,7,["G2937"]],[7,9,["G553"]],[9,10,["G3588"]],[10,11,["G602"]],[11,13,["G3588"]],[13,14,["G5207"]],[14,16,["G2316"]]]},{"k":28136,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G2937"]],[3,6,["G5293"]],[6,8,["G3153"]],[8,9,["G3756"]],[9,10,["G1635"]],[10,11,["G235"]],[11,14,["G1223"]],[14,18,["G5293"]],[18,21,["G1909"]],[21,22,["G1680"]]]},{"k":28137,"v":[[0,1,["G3754"]],[1,2,["G3588"]],[2,3,["G2937"]],[3,4,["G848"]],[4,5,["G2532"]],[5,8,["G1659"]],[8,9,["G575"]],[9,10,["G3588"]],[10,11,["G1397"]],[11,13,["G5356"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G1391"]],[16,17,["G1657"]],[17,19,["G3588"]],[19,20,["G5043"]],[20,22,["G2316"]]]},{"k":28138,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,6,["G3956"]],[6,7,["G2937"]],[7,8,["G4959"]],[8,9,["G2532"]],[9,13,["G4944"]],[13,14,["G891"]],[14,15,["G3568"]]]},{"k":28139,"v":[[0,1,["G1161"]],[1,2,["G3756"]],[2,3,["G3440"]],[3,5,["G235"]],[5,6,["G848"]],[6,7,["G2532"]],[7,9,["G2192"]],[9,10,["G3588"]],[10,11,["G536"]],[11,13,["G3588"]],[13,14,["G4151"]],[14,15,["G2532"]],[15,16,["G2249"]],[16,17,["G848"]],[17,18,["G4727"]],[18,19,["G1722"]],[19,20,["G1438"]],[20,22,["G553"]],[22,24,["G5206"]],[24,27,["G3588"]],[27,28,["G629"]],[28,30,["G2257"]],[30,31,["G4983"]]]},{"k":28140,"v":[[0,1,["G1063"]],[1,4,["G4982"]],[4,6,["G1680"]],[6,7,["G1161"]],[7,8,["G1680"]],[8,11,["G991"]],[11,12,["G2076"]],[12,13,["G3756"]],[13,14,["G1680"]],[14,15,["G1063"]],[15,16,["G3739"]],[16,18,["G5100"]],[18,19,["G991"]],[19,20,["G5101"]],[20,23,["G2532"]],[23,25,["G1679"]]]},{"k":28141,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,5,["G1679"]],[5,6,["G3739"]],[6,8,["G991"]],[8,9,["G3756"]],[9,13,["G1223"]],[13,14,["G5281"]],[14,16,["G553"]],[16,17,[]]]},{"k":28142,"v":[[0,0,["(G1161)"]],[0,1,["G5615"]],[1,2,["G3588"]],[2,3,["G4151"]],[3,4,["G2532"]],[4,5,["G4878"]],[5,6,["G2257"]],[6,7,["G769"]],[7,8,["G1063"]],[8,10,["G1492"]],[10,11,["G3756"]],[11,12,["G5101"]],[12,16,["G4336"]],[16,17,["G2526"]],[17,19,["G1163"]],[19,20,["G235"]],[20,21,["G3588"]],[21,22,["G4151"]],[22,23,["G848"]],[23,25,["G5241"]],[25,26,["G5228"]],[26,27,["G2257"]],[27,29,["G4726"]],[29,33,["G215"]]]},{"k":28143,"v":[[0,1,["G1161"]],[1,4,["G2045"]],[4,5,["G3588"]],[5,6,["G2588"]],[6,7,["G1492"]],[7,8,["G5101"]],[8,10,["G3588"]],[10,11,["G5427"]],[11,13,["G3588"]],[13,14,["G4151"]],[14,15,["G3754"]],[15,18,["G1793"]],[18,19,["G5228"]],[19,21,["G40"]],[21,22,["G2596"]],[22,27,["G2316"]]]},{"k":28144,"v":[[0,1,["G1161"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,6,["G3956"]],[6,8,["G4903"]],[8,9,["G1519"]],[9,10,["G18"]],[10,14,["G25"]],[14,15,["G2316"]],[15,19,["G5607"]],[19,20,["G3588"]],[20,21,["G2822"]],[21,22,["G2596"]],[22,25,["G4286"]]]},{"k":28145,"v":[[0,1,["G3754"]],[1,2,["G3739"]],[2,5,["G4267"]],[5,7,["G2532"]],[7,9,["G4309"]],[9,13,["G4832"]],[13,14,["G3588"]],[14,15,["G1504"]],[15,17,["G848"]],[17,18,["G5207"]],[18,20,["G846"]],[20,22,["G1511"]],[22,24,["G4416"]],[24,25,["G1722"]],[25,26,["G4183"]],[26,27,["G80"]]]},{"k":28146,"v":[[0,1,["G1161"]],[1,2,["G3739"]],[2,5,["G4309"]],[5,6,["G5128"]],[6,8,["G2532"]],[8,9,["G2564"]],[9,10,["G2532"]],[10,11,["G3739"]],[11,13,["G2564"]],[13,14,["G5128"]],[14,16,["G2532"]],[16,17,["G1344"]],[17,18,["G1161"]],[18,19,["G3739"]],[19,21,["G1344"]],[21,22,["G5128"]],[22,24,["G2532"]],[24,25,["G1392"]]]},{"k":28147,"v":[[0,1,["G5101"]],[1,4,["G3767"]],[4,5,["G2046"]],[5,6,["G4314"]],[6,7,["G5023"]],[7,9,["G1487"]],[9,10,["G2316"]],[10,12,["G5228"]],[12,13,["G2257"]],[13,14,["G5101"]],[14,17,["G2596"]],[17,18,["G2257"]]]},{"k":28148,"v":[[0,2,["G3739","(G1065)"]],[2,3,["G5339"]],[3,4,["G3756"]],[4,6,["G2398"]],[6,7,["G5207"]],[7,8,["G235"]],[8,11,["G3860","G846"]],[11,12,["G5228"]],[12,13,["G2257"]],[13,14,["G3956"]],[14,15,["G4459"]],[15,18,["G3780"]],[18,19,["G4862"]],[19,20,["G846"]],[20,21,["G2532"]],[21,23,["G5483"]],[23,24,["G2254"]],[24,26,["G3956"]]]},{"k":28149,"v":[[0,1,["G5101"]],[1,8,["G1458","G2596"]],[8,10,["G2316"]],[10,11,["G1588"]],[11,14,["G2316"]],[14,16,["G1344"]]]},{"k":28150,"v":[[0,1,["G5101"]],[1,5,["G2632"]],[5,8,["G5547"]],[8,10,["G599"]],[10,11,["G1161"]],[11,12,["G3123"]],[12,13,["(G2532)"]],[13,16,["G1453"]],[16,17,["G3739"]],[17,18,["G2076"]],[18,19,["G2532"]],[19,20,["G1722"]],[20,23,["G1188"]],[23,25,["G2316"]],[25,26,["G3739"]],[26,27,["G2532"]],[27,29,["G1793"]],[29,30,["G5228"]],[30,31,["G2257"]]]},{"k":28151,"v":[[0,1,["G5101"]],[1,3,["G5563"]],[3,4,["G2248"]],[4,5,["G575"]],[5,6,["G3588"]],[6,7,["G26"]],[7,9,["G5547"]],[9,11,["G2347"]],[11,12,["G2228"]],[12,13,["G4730"]],[13,14,["G2228"]],[14,15,["G1375"]],[15,16,["G2228"]],[16,17,["G3042"]],[17,18,["G2228"]],[18,19,["G1132"]],[19,20,["G2228"]],[20,21,["G2794"]],[21,22,["G2228"]],[22,23,["G3162"]]]},{"k":28152,"v":[[0,1,["G2531"]],[1,4,["G1125"]],[4,7,["G1752","G4675"]],[7,10,["G2289"]],[10,11,["G3650"]],[11,12,["G3588"]],[12,13,["G2250"]],[13,17,["G3049"]],[17,18,["G5613"]],[18,19,["G4263"]],[19,22,["G4967"]]]},{"k":28153,"v":[[0,1,["G235"]],[1,2,["G1722"]],[2,3,["G3956"]],[3,5,["G5125"]],[5,10,["G5245"]],[10,11,["G1223"]],[11,14,["G25"]],[14,15,["G2248"]]]},{"k":28154,"v":[[0,1,["G1063"]],[1,4,["G3982"]],[4,5,["G3754"]],[5,6,["G3777"]],[6,7,["G2288"]],[7,8,["G3777"]],[8,9,["G2222"]],[9,10,["G3777"]],[10,11,["G32"]],[11,12,["G3777"]],[12,13,["G746"]],[13,14,["G3777"]],[14,15,["G1411"]],[15,16,["G3777"]],[16,18,["G1764"]],[18,19,["G3777"]],[19,22,["G3195"]]]},{"k":28155,"v":[[0,1,["G3777"]],[1,2,["G5313"]],[2,3,["G3777"]],[3,4,["G899"]],[4,5,["G3777"]],[5,6,["G5100"]],[6,7,["G2087"]],[7,8,["G2937"]],[8,11,["G1410"]],[11,13,["G5563"]],[13,14,["G2248"]],[14,15,["G575"]],[15,16,["G3588"]],[16,17,["G26"]],[17,19,["G2316"]],[19,20,["G3588"]],[20,22,["G1722"]],[22,23,["G5547"]],[23,24,["G2424"]],[24,25,["G2257"]],[25,26,["G2962"]]]},{"k":28156,"v":[[0,2,["G3004"]],[2,4,["G225"]],[4,5,["G1722"]],[5,6,["G5547"]],[6,8,["G5574"]],[8,9,["G3756"]],[9,10,["G3450"]],[10,11,["G4893"]],[11,15,["G4828","G3427"]],[15,16,["G1722"]],[16,18,["G40"]],[18,19,["G4151"]]]},{"k":28157,"v":[[0,1,["G3754"]],[1,2,["G3427"]],[2,3,["G2076"]],[3,4,["G3173"]],[4,5,["G3077"]],[5,6,["G2532"]],[6,7,["G88"]],[7,8,["G3601"]],[8,10,["G3450"]],[10,11,["G2588"]]]},{"k":28158,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,4,["G2172"]],[4,6,["G848"]],[6,7,["G1511"]],[7,8,["G331"]],[8,9,["G575"]],[9,10,["G5547"]],[10,11,["G5228"]],[11,12,["G3450"]],[12,13,["G80"]],[13,14,["G3450"]],[14,15,["G4773"]],[15,16,["G2596"]],[16,19,["G4561"]]]},{"k":28159,"v":[[0,1,["G3748"]],[1,2,["G1526"]],[2,3,["G2475"]],[3,5,["G3739"]],[5,7,["G3588"]],[7,8,["G5206"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G1391"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G1242"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,20,["G3548"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G2999"]],[23,26,["G2532"]],[26,27,["G3588"]],[27,28,["G1860"]]]},{"k":28160,"v":[[0,1,["G3739"]],[1,3,["G3588"]],[3,4,["G3962"]],[4,5,["G2532"]],[5,6,["G1537"]],[6,7,["G3739"]],[7,9,["G2596"]],[9,11,["G4561"]],[11,12,["G5547"]],[12,15,["G5607"]],[15,16,["G1909"]],[16,17,["G3956"]],[17,18,["G2316"]],[18,19,["G2128"]],[19,21,["G1519","G165"]],[21,22,["G281"]]]},{"k":28161,"v":[[0,0,["(G1161)"]],[0,1,["G3756"]],[1,3,["G3754","(G3634)"]],[3,4,["G3588"]],[4,5,["G3056"]],[5,7,["G2316"]],[7,11,["G1601"]],[11,12,["G1063"]],[12,13,["G3778"]],[13,15,["G3756"]],[15,16,["G3956"]],[16,17,["G2474"]],[17,18,["G3588"]],[18,20,["G1537"]],[20,21,["G2474"]]]},{"k":28162,"v":[[0,1,["G3761"]],[1,2,["G3754"]],[2,4,["G1526"]],[4,6,["G4690"]],[6,8,["G11"]],[8,11,["G3956"]],[11,12,["G5043"]],[12,13,["G235"]],[13,14,["G1722"]],[14,15,["G2464"]],[15,17,["G4671"]],[17,18,["G4690"]],[18,20,["G2564"]]]},{"k":28163,"v":[[0,2,["G5123"]],[2,6,["G3588"]],[6,7,["G5043"]],[7,9,["G3588"]],[9,10,["G4561"]],[10,11,["G5023"]],[11,13,["G3756"]],[13,15,["G5043"]],[15,17,["G2316"]],[17,18,["G235"]],[18,19,["G3588"]],[19,20,["G5043"]],[20,22,["G3588"]],[22,23,["G1860"]],[23,25,["G3049"]],[25,26,["G1519"]],[26,28,["G4690"]]]},{"k":28164,"v":[[0,1,["G1063"]],[1,2,["G3778"]],[2,4,["G3588"]],[4,5,["G3056"]],[5,7,["G1860"]],[7,8,["G2596"]],[8,9,["G5126"]],[9,10,["G2540"]],[10,13,["G2064"]],[13,14,["G2532"]],[14,15,["G4564"]],[15,17,["G2071"]],[17,19,["G5207"]]]},{"k":28165,"v":[[0,1,["G1161"]],[1,2,["G3756"]],[2,3,["G3440"]],[3,5,["G235"]],[5,7,["G4479"]],[7,8,["G2532"]],[8,9,["G2192"]],[9,10,["G2845"]],[10,11,["G1537"]],[11,12,["G1520"]],[12,15,["G2257"]],[15,16,["G3962"]],[16,17,["G2464"]]]},{"k":28166,"v":[[0,1,["G1063"]],[1,6,["G3380"]],[6,7,["G1080"]],[7,8,["G3366"]],[8,10,["G4238"]],[10,11,["G5100"]],[11,12,["G18"]],[12,13,["G2228"]],[13,14,["G2556"]],[14,15,["G2443"]],[15,16,["G3588"]],[16,17,["G4286"]],[17,19,["G2316"]],[19,20,["G2596"]],[20,22,["G1589"]],[22,24,["G3306"]],[24,25,["G3756"]],[25,26,["G1537"]],[26,27,["G2041"]],[27,28,["G235"]],[28,29,["G1537"]],[29,32,["G2564"]]]},{"k":28167,"v":[[0,3,["G4483"]],[3,5,["G846"]],[5,6,["G3588"]],[6,7,["G3187"]],[7,9,["G1398"]],[9,10,["G3588"]],[10,11,["G1640"]]]},{"k":28168,"v":[[0,1,["G2531"]],[1,4,["G1125"]],[4,5,["G2384"]],[5,8,["G25"]],[8,9,["G1161"]],[9,10,["G2269"]],[10,13,["G3404"]]]},{"k":28169,"v":[[0,1,["G5101"]],[1,4,["G2046"]],[4,5,["G3767"]],[5,7,["(G3361)"]],[7,8,["G93"]],[8,9,["G3844"]],[9,10,["G2316"]],[10,12,["G1096","G3361"]]]},{"k":28170,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G3475"]],[5,9,["G1653"]],[9,11,["G3739","G302"]],[11,15,["G1653"]],[15,16,["G2532"]],[16,20,["G3627"]],[20,22,["G3739","G302"]],[22,26,["G3627"]]]},{"k":28171,"v":[[0,1,["G686"]],[1,2,["G3767"]],[2,5,["G3756"]],[5,9,["G2309"]],[9,10,["G3761"]],[10,14,["G5143"]],[14,15,["G235"]],[15,17,["G2316"]],[17,20,["G1653"]]]},{"k":28172,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G1124"]],[3,4,["G3004"]],[4,6,["G5328"]],[6,8,["G1519"]],[8,11,["G5124","G846"]],[11,16,["G1825","G4571"]],[16,17,["G3704"]],[17,20,["G1731"]],[20,21,["G3450"]],[21,22,["G1411"]],[22,23,["G1722"]],[23,24,["G4671"]],[24,25,["G2532"]],[25,26,["G3704"]],[26,27,["G3450"]],[27,28,["G3686"]],[28,31,["G1229"]],[31,32,["G1722"]],[32,33,["G3956"]],[33,34,["G3588"]],[34,35,["G1093"]]]},{"k":28173,"v":[[0,1,["G686","G3767"]],[1,4,["G1653"]],[4,6,["G3739"]],[6,8,["G2309"]],[8,11,["G1161"]],[11,12,["G3739"]],[12,14,["G2309"]],[14,16,["G4645"]]]},{"k":28174,"v":[[0,3,["G2046"]],[3,4,["G3767"]],[4,6,["G3427"]],[6,7,["G5101"]],[7,10,["G2089"]],[10,12,["G3201"]],[12,13,["G1063"]],[13,14,["G5101"]],[14,16,["G436"]],[16,17,["G846"]],[17,18,["G1013"]]]},{"k":28175,"v":[[0,2,["G3304"]],[2,3,["G5599"]],[3,4,["G444"]],[4,5,["G5101"]],[5,6,["G1488"]],[6,7,["G4771"]],[7,10,["G470"]],[10,11,["G2316"]],[11,12,["(G3361)"]],[12,13,["G3588"]],[13,15,["G4110"]],[15,16,["G2046"]],[16,20,["G4111"]],[20,22,["G5101"]],[22,25,["G4160"]],[25,26,["G3165"]],[26,27,["G3779"]]]},{"k":28176,"v":[[0,0,["(G2228)"]],[0,1,["G2192"]],[1,2,["G3756"]],[2,3,["G3588"]],[3,4,["G2763"]],[4,5,["G1849"]],[5,7,["G3588"]],[7,8,["G4081"]],[8,9,["G1537"]],[9,10,["G3588"]],[10,11,["G846"]],[11,12,["G5445"]],[12,14,["G4160"]],[14,15,["G3739","G3303"]],[15,16,["G4632"]],[16,17,["G1519"]],[17,18,["G5092"]],[18,19,["G1161"]],[19,20,["G3739"]],[20,21,["G1519"]],[21,22,["G819"]]]},{"k":28177,"v":[[0,1,["(G1161)"]],[1,2,["G1487"]],[2,3,["G2316"]],[3,4,["G2309"]],[4,6,["G1731"]],[6,8,["G3709"]],[8,9,["G2532"]],[9,14,["G1107","G848","G1415"]],[14,15,["G5342"]],[15,16,["G1722"]],[16,17,["G4183"]],[17,18,["G3115"]],[18,20,["G4632"]],[20,22,["G3709"]],[22,23,["G2675"]],[23,24,["G1519"]],[24,25,["G684"]]]},{"k":28178,"v":[[0,1,["G2532"]],[1,2,["G2443"]],[2,6,["G1107"]],[6,7,["G3588"]],[7,8,["G4149"]],[8,10,["G848"]],[10,11,["G1391"]],[11,12,["G1909"]],[12,14,["G4632"]],[14,16,["G1656"]],[16,17,["G3739"]],[17,21,["G4282"]],[21,22,["G1519"]],[22,23,["G1391"]]]},{"k":28179,"v":[[0,1,["G2532"]],[1,2,["G2248"]],[2,3,["G3739"]],[3,6,["G2564"]],[6,7,["G3756"]],[7,8,["G1537"]],[8,10,["G2453"]],[10,11,["G3440"]],[11,12,["G235"]],[12,13,["G2532"]],[13,14,["G1537"]],[14,16,["G1484"]]]},{"k":28180,"v":[[0,1,["G5613"]],[1,3,["G3004"]],[3,4,["G2532"]],[4,5,["G1722"]],[5,6,["G5617"]],[6,9,["G2564"]],[9,11,["G3450"]],[11,12,["G2992"]],[12,13,["G3588"]],[13,15,["G3756"]],[15,16,["G3450"]],[16,17,["G2992"]],[17,18,["G2532"]],[18,20,["G25"]],[20,24,["G25","G3756"]]]},{"k":28181,"v":[[0,1,["G2532"]],[1,6,["G2071"]],[6,8,["G1722"]],[8,9,["G3588"]],[9,10,["G5117"]],[10,11,["G3757"]],[11,14,["G4483"]],[14,16,["G846"]],[16,17,["G5210"]],[17,19,["G3756"]],[19,20,["G3450"]],[20,21,["G2992"]],[21,22,["G1563"]],[22,26,["G2564"]],[26,28,["G5207"]],[28,31,["G2198"]],[31,32,["G2316"]]]},{"k":28182,"v":[[0,1,["G2268"]],[1,2,["G1161"]],[2,3,["G2896"]],[3,4,["G5228"]],[4,5,["G2474"]],[5,6,["G1437"]],[6,7,["G3588"]],[7,8,["G706"]],[8,10,["G3588"]],[10,11,["G5207"]],[11,13,["G2474"]],[13,14,["G5600"]],[14,15,["G5613"]],[15,16,["G3588"]],[16,17,["G285"]],[17,19,["G3588"]],[19,20,["G2281"]],[20,22,["G2640"]],[22,25,["G4982"]]]},{"k":28183,"v":[[0,1,["G1063"]],[1,4,["G4931"]],[4,6,["G3056"]],[6,7,["G2532"]],[7,10,["G4932"]],[10,11,["G1722"]],[11,12,["G1343"]],[12,13,["G3754"]],[13,15,["G4932"]],[15,16,["G3056"]],[16,19,["G2962"]],[19,20,["G4160"]],[20,21,["G1909"]],[21,22,["G3588"]],[22,23,["G1093"]]]},{"k":28184,"v":[[0,1,["G2532"]],[1,2,["G2531"]],[2,3,["G2268"]],[3,5,["G4280"]],[5,6,["G1508"]],[6,8,["G2962"]],[8,10,["G4519"]],[10,12,["G1459"]],[12,13,["G2254"]],[13,15,["G4690"]],[15,18,["G1096","G302"]],[18,19,["G5613"]],[19,20,["G4670"]],[20,21,["G2532"]],[21,24,["G3666","G302"]],[24,25,["G5613"]],[25,26,["G1116"]]]},{"k":28185,"v":[[0,1,["G5101"]],[1,4,["G2046"]],[4,5,["G3767"]],[5,6,["G3754"]],[6,8,["G1484"]],[8,9,["G3588"]],[9,10,["G1377"]],[10,11,["G3361"]],[11,13,["G1343"]],[13,15,["G2638"]],[15,17,["G1343"]],[17,18,["G1161"]],[18,20,["G1343"]],[20,21,["G3588"]],[21,23,["G1537"]],[23,24,["G4102"]]]},{"k":28186,"v":[[0,1,["G1161"]],[1,2,["G2474"]],[2,4,["G1377"]],[4,7,["G3551"]],[7,9,["G1343"]],[9,11,["G3756"]],[11,12,["G5348"]],[12,13,["G1519"]],[13,15,["G3551"]],[15,17,["G1343"]]]},{"k":28187,"v":[[0,1,["G1302"]],[1,2,["G3754"]],[2,6,["G3756"]],[6,7,["G1537"]],[7,8,["G4102"]],[8,9,["G235"]],[9,12,["G5613"]],[12,13,["G1537"]],[13,15,["G2041"]],[15,18,["G3551"]],[18,19,["G1063"]],[19,21,["G4350"]],[21,24,["G4348","G3037"]]]},{"k":28188,"v":[[0,1,["G2531"]],[1,4,["G1125"]],[4,5,["G2400"]],[5,7,["G5087"]],[7,8,["G1722"]],[8,9,["G4622"]],[9,11,["G4348","G3037"]],[11,12,["G2532"]],[12,13,["G4073"]],[13,15,["G4625"]],[15,16,["G2532"]],[16,17,["G3956"]],[17,18,["G4100"]],[18,19,["G1909"]],[19,20,["G846"]],[20,22,["G3756"]],[22,24,["G2617"]]]},{"k":28189,"v":[[0,1,["G80"]],[1,2,["G1699"]],[2,3,["G2588"]],[3,4,["G2107","(G3303)"]],[4,5,["G2532"]],[5,6,["G1162"]],[6,7,["G4314"]],[7,8,["G2316"]],[8,9,["G5228"]],[9,10,["G2474"]],[10,11,["G2076"]],[11,16,["G1519","G4991"]]]},{"k":28190,"v":[[0,1,["G1063"]],[1,5,["G3140","G846"]],[5,6,["G3754"]],[6,8,["G2192"]],[8,10,["G2205"]],[10,12,["G2316"]],[12,13,["G235"]],[13,14,["G3756"]],[14,15,["G2596"]],[15,17,["G1922"]]]},{"k":28191,"v":[[0,1,["G1063"]],[1,4,["G50"]],[4,6,["G2316"]],[6,7,["G1343"]],[7,8,["G2532"]],[8,10,["G2212"]],[10,12,["G2476"]],[12,14,["G2398"]],[14,15,["G1343"]],[15,17,["G3756"]],[17,19,["G5293"]],[19,21,["G3588"]],[21,22,["G1343"]],[22,24,["G2316"]]]},{"k":28192,"v":[[0,1,["G1063"]],[1,2,["G5547"]],[2,5,["G5056"]],[5,8,["G3551"]],[8,9,["G1519"]],[9,10,["G1343"]],[10,13,["G3956"]],[13,15,["G4100"]]]},{"k":28193,"v":[[0,1,["G1063"]],[1,2,["G3475"]],[2,3,["G1125"]],[3,4,["G3588"]],[4,5,["G1343"]],[5,6,["G3588"]],[6,8,["G1537"]],[8,9,["G3588"]],[9,10,["G3551"]],[10,11,["G3754"]],[11,12,["G3588"]],[12,13,["G444"]],[13,15,["G4160"]],[15,17,["G846"]],[17,19,["G2198"]],[19,20,["G1722"]],[20,21,["G846"]]]},{"k":28194,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1343"]],[3,6,["G1537"]],[6,7,["G4102"]],[7,8,["G3004"]],[8,11,["G3779"]],[11,12,["G2036"]],[12,13,["G3361"]],[13,14,["G1722"]],[14,15,["G4675"]],[15,16,["G2588"]],[16,17,["G5101"]],[17,19,["G305"]],[19,20,["G1519"]],[20,21,["G3772"]],[21,23,["G5123"]],[23,27,["G2609","G5547"]],[27,29,[]]]},{"k":28195,"v":[[0,1,["G2228"]],[1,2,["G5101"]],[2,4,["G2597"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G12"]],[7,9,["G5123"]],[9,14,["G321","G5547"]],[14,15,["G1537"]],[15,17,["G3498"]]]},{"k":28196,"v":[[0,1,["G235"]],[1,2,["G5101"]],[2,3,["G3004"]],[3,5,["G3588"]],[5,6,["G4487"]],[6,7,["G2076"]],[7,8,["G1451"]],[8,9,["G4675"]],[9,11,["G1722"]],[11,12,["G4675"]],[12,13,["G4750"]],[13,14,["G2532"]],[14,15,["G1722"]],[15,16,["G4675"]],[16,17,["G2588"]],[17,19,["G5123"]],[19,20,["G3588"]],[20,21,["G4487"]],[21,23,["G4102"]],[23,24,["G3739"]],[24,26,["G2784"]]]},{"k":28197,"v":[[0,1,["G3754"]],[1,2,["G1437"]],[2,5,["G3670"]],[5,6,["G1722"]],[6,7,["G4675"]],[7,8,["G4750"]],[8,10,["G2962"]],[10,11,["G2424"]],[11,12,["G2532"]],[12,14,["G4100"]],[14,15,["G1722"]],[15,16,["G4675"]],[16,17,["G2588"]],[17,18,["G3754"]],[18,19,["G2316"]],[19,21,["G1453"]],[21,22,["G846"]],[22,23,["G1537"]],[23,25,["G3498"]],[25,29,["G4982"]]]},{"k":28198,"v":[[0,1,["G1063"]],[1,4,["G2588"]],[4,6,["G4100"]],[6,7,["G1519"]],[7,8,["G1343"]],[8,9,["G1161"]],[9,12,["G4750"]],[12,15,["G3670"]],[15,16,["G1519"]],[16,17,["G4991"]]]},{"k":28199,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G1124"]],[3,4,["G3004"]],[4,5,["G3956"]],[5,6,["G4100"]],[6,7,["G1909"]],[7,8,["G846"]],[8,10,["G3756"]],[10,12,["G2617"]]]},{"k":28200,"v":[[0,1,["G1063"]],[1,3,["G2076"]],[3,4,["G3756"]],[4,5,["G1293"]],[5,6,["(G5037)"]],[6,8,["G2453"]],[8,9,["G2532"]],[9,11,["G1672"]],[11,12,["G1063"]],[12,13,["G3588"]],[13,14,["G846"]],[14,15,["G2962"]],[15,17,["G3956"]],[17,19,["G4147"]],[19,20,["G1519"]],[20,21,["G3956"]],[21,24,["G1941"]],[24,25,["G846"]]]},{"k":28201,"v":[[0,1,["G1063"]],[1,2,["G3956","G3739","G302"]],[2,5,["G1941"]],[5,6,["G3588"]],[6,7,["G3686"]],[7,10,["G2962"]],[10,13,["G4982"]]]},{"k":28202,"v":[[0,1,["G4459"]],[1,2,["G3767"]],[2,6,["G1941"]],[6,8,["G1519"]],[8,9,["G3739"]],[9,12,["G3756"]],[12,13,["G4100"]],[13,14,["G1161"]],[14,15,["G4459"]],[15,18,["G4100"]],[18,22,["G3739"]],[22,25,["G3756"]],[25,26,["G191"]],[26,27,["G1161"]],[27,28,["G4459"]],[28,31,["G191"]],[31,32,["G5565"]],[32,34,["G2784"]]]},{"k":28203,"v":[[0,1,["G1161"]],[1,2,["G4459"]],[2,5,["G2784"]],[5,6,["G3362"]],[6,9,["G649"]],[9,11,["G2531"]],[11,13,["G1125"]],[13,14,["G5613"]],[14,15,["G5611"]],[15,17,["G3588"]],[17,18,["G4228"]],[18,24,["G2097"]],[24,26,["G1515"]],[26,30,["G2097"]],[30,33,["G18"]]]},{"k":28204,"v":[[0,1,["G235"]],[1,4,["G3756"]],[4,5,["G3956"]],[5,6,["G5219"]],[6,7,["G3588"]],[7,8,["G2098"]],[8,9,["G1063"]],[9,10,["G2268"]],[10,11,["G3004"]],[11,12,["G2962"]],[12,13,["G5101"]],[13,15,["G4100"]],[15,16,["G2257"]],[16,17,["G189"]]]},{"k":28205,"v":[[0,2,["G686"]],[2,3,["G4102"]],[3,5,["G1537"]],[5,6,["G189"]],[6,7,["G1161"]],[7,8,["G189"]],[8,9,["G1223"]],[9,11,["G4487"]],[11,13,["G2316"]]]},{"k":28206,"v":[[0,1,["G235"]],[1,3,["G3004"]],[3,6,["G3378"]],[6,7,["G191"]],[7,9,["G3304"]],[9,10,["G848"]],[10,11,["G5353"]],[11,12,["G1831"]],[12,13,["G1519"]],[13,14,["G3956"]],[14,15,["G3588"]],[15,16,["G1093"]],[16,17,["G2532"]],[17,18,["G848"]],[18,19,["G4487"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G4009"]],[22,24,["G3588"]],[24,25,["G3625"]]]},{"k":28207,"v":[[0,1,["G235"]],[1,3,["G3004"]],[3,5,["G3378"]],[5,6,["G2474"]],[6,7,["G1097"]],[7,8,["G4413"]],[8,9,["G3475"]],[9,10,["G3004"]],[10,11,["G1473"]],[11,16,["G3863","G5209"]],[16,17,["G1909"]],[17,21,["G3756"]],[21,22,["G1484"]],[22,24,["G1909"]],[24,26,["G801"]],[26,27,["G1484"]],[27,30,["G3949"]],[30,31,["G5209"]]]},{"k":28208,"v":[[0,1,["G1161"]],[1,2,["G2268"]],[2,5,["G662"]],[5,6,["G2532"]],[6,7,["G3004"]],[7,10,["G2147"]],[10,14,["G2212"]],[14,15,["G1691"]],[15,16,["G3361"]],[16,19,["G1096"]],[19,20,["G1717"]],[20,26,["G1905","G3361"]],[26,27,["G1691"]]]},{"k":28209,"v":[[0,1,["G1161"]],[1,2,["G4314"]],[2,3,["G2474"]],[3,5,["G3004"]],[5,6,["G3650"]],[6,7,["G2250"]],[7,12,["G1600"]],[12,13,["G3450"]],[13,14,["G5495"]],[14,15,["G4314"]],[15,17,["G544"]],[17,18,["G2532"]],[18,19,["G483"]],[19,20,["G2992"]]]},{"k":28210,"v":[[0,2,["G3004"]],[2,3,["G3767"]],[3,4,["(G3361)"]],[4,5,["G2316"]],[5,7,["G683"]],[7,8,["G848"]],[8,9,["G2992"]],[9,11,["G1096","G3361"]],[11,12,["G1063"]],[12,13,["G1473"]],[13,14,["G2532"]],[14,15,["G1510"]],[15,17,["G2475"]],[17,18,["G1537"]],[18,20,["G4690"]],[20,22,["G11"]],[22,25,["G5443"]],[25,27,["G958"]]]},{"k":28211,"v":[[0,1,["G2316"]],[1,3,["G3756"]],[3,5,["G683"]],[5,6,["G848"]],[6,7,["G2992"]],[7,8,["G3739"]],[8,10,["G4267","(G2228)"]],[10,11,["G1492"]],[11,13,["G3756"]],[13,14,["G5101"]],[14,15,["G3588"]],[15,16,["G1124"]],[16,17,["G3004"]],[17,18,["G1722"]],[18,19,["G2243"]],[19,20,["G5613"]],[20,23,["G1793"]],[23,25,["G2316"]],[25,26,["G2596"]],[26,27,["G2474"]],[27,28,["G3004"]]]},{"k":28212,"v":[[0,1,["G2962"]],[1,4,["G615"]],[4,5,["G4675"]],[5,6,["G4396"]],[6,7,["G2532"]],[7,9,["G2679"]],[9,10,["G4675"]],[10,11,["G2379"]],[11,13,["G2504"]],[13,15,["G5275"]],[15,16,["G3441"]],[16,17,["G2532"]],[17,19,["G2212"]],[19,20,["G3450"]],[20,21,["G5590"]]]},{"k":28213,"v":[[0,1,["G235"]],[1,2,["G5101"]],[2,3,["G3004"]],[3,4,["G3588"]],[4,7,["G5538"]],[7,9,["G846"]],[9,12,["G2641"]],[12,14,["G1683"]],[14,16,["G2035"]],[16,17,["G435"]],[17,18,["G3748"]],[18,20,["G3756"]],[20,21,["G2578"]],[21,23,["G1119"]],[23,28,["G896"]]]},{"k":28214,"v":[[0,2,["G3779"]],[2,3,["G3767"]],[3,4,["G1722"]],[4,6,["G3568"]],[6,7,["G2540"]],[7,8,["G2532"]],[8,10,["G1096"]],[10,12,["G3005"]],[12,13,["G2596"]],[13,16,["G1589"]],[16,18,["G5485"]]]},{"k":28215,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G5485"]],[4,9,["G3765"]],[9,10,["G1537"]],[10,11,["G2041"]],[11,12,["G1893"]],[12,13,["G5485"]],[13,14,["G1096"]],[14,16,["G3765"]],[16,17,["G5485"]],[17,18,["G1161"]],[18,19,["G1487"]],[19,22,["G1537"]],[22,23,["G2041"]],[23,25,["G2076"]],[25,28,["G3765"]],[28,29,["G5485"]],[29,30,["G1893"]],[30,31,["G2041"]],[31,32,["G2076"]],[32,34,["G3765"]],[34,35,["G2041"]]]},{"k":28216,"v":[[0,1,["G5101"]],[1,2,["G3767"]],[2,3,["G2474"]],[3,4,["(G5127)"]],[4,5,["G3756"]],[5,6,["G2013"]],[6,8,["G3739"]],[8,11,["G1934"]],[11,12,["G1161"]],[12,13,["G3588"]],[13,14,["G1589"]],[14,16,["G2013"]],[16,18,["G1161"]],[18,19,["G3588"]],[19,20,["G3062"]],[20,22,["G4456"]]]},{"k":28217,"v":[[0,2,["G2531"]],[2,5,["G1125"]],[5,6,["G2316"]],[6,8,["G1325"]],[8,9,["G846"]],[9,11,["G4151"]],[11,13,["G2659"]],[13,14,["G3788"]],[14,18,["G3361"]],[18,19,["G991"]],[19,20,["G2532"]],[20,21,["G3775"]],[21,25,["G3361"]],[25,26,["G191"]],[26,27,["G2193"]],[27,28,["G4594"]],[28,29,["G2250"]]]},{"k":28218,"v":[[0,1,["G2532"]],[1,2,["G1138"]],[2,3,["G3004"]],[3,5,["G848"]],[5,6,["G5132"]],[6,8,["G1096"]],[8,9,["(G1519)"]],[9,10,["G3803"]],[10,11,["G2532"]],[11,12,["(G1519)"]],[12,13,["G2339"]],[13,14,["G2532"]],[14,15,["(G1519)"]],[15,16,["G4625"]],[16,17,["G2532"]],[17,18,["(G1519)"]],[18,19,["G468"]],[19,21,["G846"]]]},{"k":28219,"v":[[0,2,["G848"]],[2,3,["G3788"]],[3,5,["G4654"]],[5,9,["G3361"]],[9,10,["G991"]],[10,11,["G2532"]],[11,13,["G4781"]],[13,14,["G848"]],[14,15,["G3577"]],[15,16,["G1275"]]]},{"k":28220,"v":[[0,2,["G3004"]],[2,3,["G3767"]],[3,5,["(G3361)"]],[5,6,["G4417"]],[6,7,["G2443"]],[7,10,["G4098"]],[10,12,["G1096","G3361"]],[12,13,["G235"]],[13,16,["G848"]],[16,17,["G3900"]],[17,18,["G4991"]],[18,22,["G3588"]],[22,23,["G1484"]],[23,29,["G3863","G846"]]]},{"k":28221,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G3900"]],[4,6,["G848"]],[6,9,["G4149"]],[9,12,["G2889"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G2275"]],[15,17,["G848"]],[17,19,["G4149"]],[19,22,["G1484"]],[22,24,["G4214"]],[24,25,["G3123"]],[25,26,["G848"]],[26,27,["G4138"]]]},{"k":28222,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G1484"]],[6,8,["G1909","G3745","G3303"]],[8,9,["G1473"]],[9,10,["G1510"]],[10,12,["G652"]],[12,15,["G1484"]],[15,17,["G1392"]],[17,18,["G3450"]],[18,19,["G1248"]]]},{"k":28223,"v":[[0,1,["G1487"]],[1,4,["G4459"]],[4,9,["G3863"]],[9,13,["G3450"]],[13,14,["G4561"]],[14,15,["G2532"]],[15,17,["G4982"]],[17,18,["G5100"]],[18,19,["G1537"]],[19,20,["G846"]]]},{"k":28224,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,5,["G580"]],[5,7,["G846"]],[7,10,["G2643"]],[10,13,["G2889"]],[13,14,["G5101"]],[14,16,["G3588"]],[16,17,["G4356"]],[17,21,["G1508"]],[21,22,["G2222"]],[22,23,["G1537"]],[23,25,["G3498"]]]},{"k":28225,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G536"]],[4,6,["G40"]],[6,7,["G3588"]],[7,8,["G5445"]],[8,10,["G2532"]],[10,12,["G2532"]],[12,13,["G1487"]],[13,14,["G3588"]],[14,15,["G4491"]],[15,17,["G40"]],[17,18,["G2532"]],[18,20,["G3588"]],[20,21,["G2798"]]]},{"k":28226,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5100"]],[3,5,["G3588"]],[5,6,["G2798"]],[6,9,["G1575"]],[9,10,["G1161"]],[10,11,["G4771"]],[11,12,["G5607"]],[12,16,["G65"]],[16,19,["G1461"]],[19,20,["G1722"]],[20,21,["G846"]],[21,22,["G2532"]],[22,24,["(G1096)"]],[24,25,["G4791"]],[25,27,["G3588"]],[27,28,["G4491"]],[28,29,["G2532"]],[29,30,["G4096"]],[30,32,["G3588"]],[32,34,["G1636"]]]},{"k":28227,"v":[[0,3,["G2620","G3361"]],[3,4,["G3588"]],[4,5,["G2798"]],[5,6,["G1161"]],[6,7,["G1487"]],[7,9,["G2620"]],[9,10,["G4771"]],[10,11,["G941"]],[11,12,["G3756"]],[12,13,["G3588"]],[13,14,["G4491"]],[14,15,["G235"]],[15,16,["G3588"]],[16,17,["G4491"]],[17,18,["G4571"]]]},{"k":28228,"v":[[0,3,["G2046"]],[3,4,["G3767"]],[4,5,["G3588"]],[5,6,["G2798"]],[6,9,["G1575"]],[9,10,["G2443"]],[10,11,["G1473"]],[11,15,["G1461"]]]},{"k":28229,"v":[[0,1,["G2573"]],[1,4,["G570"]],[4,8,["G1575"]],[8,9,["G1161"]],[9,10,["G4771"]],[10,11,["G2476"]],[11,13,["G4102"]],[13,16,["G5309","G3361"]],[16,17,["G235"]],[17,18,["G5399"]]]},{"k":28230,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G2316"]],[3,4,["G5339"]],[4,5,["G3756"]],[5,6,["G3588"]],[6,7,["G2596","G5449"]],[7,8,["G2798"]],[8,11,["G3381"]],[11,14,["G5339"]],[14,15,["G3761"]],[15,16,["G4675"]]]},{"k":28231,"v":[[0,1,["G1492"]],[1,2,["G3767"]],[2,4,["G5544"]],[4,5,["G2532"]],[5,6,["G663"]],[6,8,["G2316"]],[8,9,["G1909","(G3303)"]],[9,12,["G4098"]],[12,13,["G663"]],[13,14,["G1161"]],[14,15,["G1909"]],[15,16,["G4571"]],[16,17,["G5544"]],[17,18,["G1437"]],[18,21,["G1961"]],[21,23,["G5544"]],[23,24,["G1893"]],[24,25,["G4771"]],[25,26,["G2532"]],[26,30,["G1581"]]]},{"k":28232,"v":[[0,1,["G1161"]],[1,2,["G1565"]],[2,3,["G2532"]],[3,7,["G3362","G1961"]],[7,10,["G570"]],[10,14,["G1461"]],[14,15,["G1063"]],[15,16,["G2316"]],[16,17,["G2076"]],[17,18,["G1415"]],[18,22,["G1461","G846"]],[22,23,["G3825"]]]},{"k":28233,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G4771"]],[3,5,["G1581"]],[5,6,["G1537"]],[6,8,["G3588"]],[8,13,["G65"]],[13,14,["G2596"]],[14,15,["G5449"]],[15,16,["G2532"]],[16,18,["G1461"]],[18,19,["G3844"]],[19,21,["G5449"]],[21,22,["G1519"]],[22,26,["G2565"]],[26,28,["G4214"]],[28,29,["G3123"]],[29,31,["G3778"]],[31,32,["G3588"]],[32,35,["G2596","G5449"]],[35,39,["G1461"]],[39,41,["G2398"]],[41,43,["G1636"]]]},{"k":28234,"v":[[0,1,["G1063"]],[1,3,["G2309"]],[3,4,["G3756"]],[4,5,["G80"]],[5,7,["G5209"]],[7,10,["G50"]],[10,12,["G5124"]],[12,13,["G3466"]],[13,14,["G3363"]],[14,17,["G5600"]],[17,18,["G5429"]],[18,19,["G3844"]],[19,22,["G1438"]],[22,23,["G3754"]],[23,24,["G4457"]],[24,25,["G575"]],[25,26,["G3313"]],[26,28,["G1096"]],[28,30,["G2474"]],[30,31,["G891","G3757"]],[31,32,["G3588"]],[32,33,["G4138"]],[33,35,["G3588"]],[35,36,["G1484"]],[36,39,["G1525"]]]},{"k":28235,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,3,["G3956"]],[3,4,["G2474"]],[4,7,["G4982"]],[7,8,["G2531"]],[8,11,["G1125"]],[11,14,["G2240"]],[14,16,["G1537"]],[16,17,["G4622"]],[17,18,["G3588"]],[18,19,["G4506"]],[19,20,["G2532"]],[20,23,["G654"]],[23,24,["G763"]],[24,25,["G575"]],[25,26,["G2384"]]]},{"k":28236,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["(G3844)"]],[3,4,["G1700"]],[4,5,["G1242"]],[5,7,["G846"]],[7,8,["G3752"]],[8,12,["G851"]],[12,13,["G848"]],[13,14,["G266"]]]},{"k":28237,"v":[[0,2,["G2596","(G3303)"]],[2,3,["G3588"]],[3,4,["G2098"]],[4,7,["G2190"]],[7,10,["G1223","G5209"]],[10,11,["G1161"]],[11,13,["G2596"]],[13,14,["G3588"]],[14,15,["G1589"]],[15,18,["G27"]],[18,22,["G1223","G3588","G3962"]]]},{"k":28238,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G5486"]],[3,4,["G2532"]],[4,5,["G2821"]],[5,7,["G2316"]],[7,10,["G278"]]]},{"k":28239,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G5210"]],[3,6,["G4218"]],[6,7,["(G2532)"]],[7,9,["G544"]],[9,10,["G2316"]],[10,11,["G1161"]],[11,13,["G3568"]],[13,15,["G1653"]],[15,17,["G5130"]],[17,18,["G543"]]]},{"k":28240,"v":[[0,2,["G3779"]],[2,4,["G3778"]],[4,5,["G2532"]],[5,6,["G3568"]],[6,8,["G544"]],[8,9,["G2443"]],[9,11,["G5212"]],[11,12,["G1656"]],[12,13,["G846"]],[13,14,["G2532"]],[14,17,["G1653"]]]},{"k":28241,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,4,["G4788"]],[4,6,["G3956"]],[6,7,["G1519"]],[7,8,["G543"]],[8,9,["G2443"]],[9,13,["G1653"]],[13,15,["G3956"]]]},{"k":28242,"v":[[0,1,["G5599"]],[1,3,["G899"]],[3,6,["G4149"]],[6,7,["G2532"]],[7,10,["G4678"]],[10,11,["G2532"]],[11,12,["G1108"]],[12,14,["G2316"]],[14,15,["G5613"]],[15,16,["G419"]],[16,18,["G848"]],[18,19,["G2917"]],[19,20,["G2532"]],[20,21,["G848"]],[21,22,["G3598"]],[22,25,["G421"]]]},{"k":28243,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,4,["G1097"]],[4,6,["G3563"]],[6,9,["G2962"]],[9,10,["G2228"]],[10,11,["G5101"]],[11,13,["G1096"]],[13,14,["G848"]],[14,15,["G4825"]]]},{"k":28244,"v":[[0,1,["G2228"]],[1,2,["G5101"]],[2,5,["G4272"]],[5,7,["G846"]],[7,8,["G2532"]],[8,12,["G467"]],[12,14,["G846"]],[14,15,[]]]},{"k":28245,"v":[[0,1,["G3754"]],[1,2,["G1537"]],[2,3,["G846"]],[3,4,["G2532"]],[4,5,["G1223"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G1519"]],[8,9,["G846"]],[9,12,["G3956"]],[12,14,["G846"]],[14,16,["G1391"]],[16,18,["G1519","G165"]],[18,19,["G281"]]]},{"k":28246,"v":[[0,2,["G3870"]],[2,3,["G5209"]],[3,4,["G3767"]],[4,5,["G80"]],[5,6,["G1223"]],[6,7,["G3588"]],[7,8,["G3628"]],[8,10,["G2316"]],[10,13,["G3936"]],[13,14,["G5216"]],[14,15,["G4983"]],[15,17,["G2198"]],[17,18,["G2378"]],[18,19,["G40"]],[19,20,["G2101"]],[20,22,["G2316"]],[22,25,["G5216"]],[25,26,["G3050"]],[26,27,["G2999"]]]},{"k":28247,"v":[[0,1,["G2532"]],[1,3,["G3361"]],[3,4,["G4964"]],[4,6,["G5129"]],[6,7,["G165"]],[7,8,["G235"]],[8,11,["G3339"]],[11,13,["G3588"]],[13,14,["G342"]],[14,16,["G5216"]],[16,17,["G3563"]],[17,19,["G5209"]],[19,21,["G1381"]],[21,22,["G5101"]],[22,25,["G18"]],[25,26,["G2532"]],[26,27,["G2101"]],[27,28,["G2532"]],[28,29,["G5046"]],[29,30,["G2307"]],[30,32,["G2316"]]]},{"k":28248,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,4,["G1223"]],[4,5,["G3588"]],[5,6,["G5485"]],[6,7,["G1325"]],[7,9,["G3427"]],[9,12,["G3956"]],[12,14,["G5607"]],[14,15,["G1722"]],[15,16,["G5213"]],[16,17,["G3361"]],[17,24,["G5252","G3844","G3739"]],[24,26,["G1163"]],[26,28,["G5426"]],[28,29,["G235"]],[29,31,["G5426"]],[31,32,["G4993"]],[32,34,["G5613"]],[34,35,["G2316"]],[35,37,["G3307"]],[37,40,["G1538"]],[40,42,["G3358"]],[42,44,["G4102"]]]},{"k":28249,"v":[[0,1,["G1063"]],[1,2,["G2509"]],[2,4,["G2192"]],[4,5,["G4183"]],[5,6,["G3196"]],[6,7,["G1722"]],[7,8,["G1520"]],[8,9,["G4983"]],[9,10,["G1161"]],[10,11,["G3956"]],[11,12,["G3196"]],[12,13,["G2192"]],[13,14,["G3756"]],[14,15,["G3588"]],[15,16,["G846"]],[16,17,["G4234"]]]},{"k":28250,"v":[[0,1,["G3779"]],[1,4,["G4183"]],[4,5,["G2070"]],[5,6,["G1520"]],[6,7,["G4983"]],[7,8,["G1722"]],[8,9,["G5547"]],[9,10,["G1161"]],[10,11,["G2596"]],[11,12,["G1520"]],[12,13,["G3196"]],[13,16,["G240"]]]},{"k":28251,"v":[[0,1,["G2192"]],[1,2,["G1161"]],[2,3,["G5486"]],[3,4,["G1313"]],[4,5,["G2596"]],[5,7,["G3588"]],[7,8,["G5485"]],[8,11,["G1325"]],[11,13,["G2254"]],[13,14,["G1535"]],[14,15,["G4394"]],[15,19,["G2596"]],[19,21,["G3588"]],[21,22,["G356"]],[22,24,["G4102"]]]},{"k":28252,"v":[[0,1,["G1535"]],[1,2,["G1248"]],[2,6,["G1722"]],[6,8,["G1248"]],[8,9,["G1535"]],[9,12,["G1321"]],[12,13,["G1722"]],[13,14,["G1319"]]]},{"k":28253,"v":[[0,1,["G1535"]],[1,4,["G3870"]],[4,5,["G1722"]],[5,6,["G3874"]],[6,9,["G3330"]],[9,14,["G1722"]],[14,15,["G572"]],[15,18,["G4291"]],[18,19,["G1722"]],[19,20,["G4710"]],[20,24,["G1653"]],[24,25,["G1722"]],[25,26,["G2432"]]]},{"k":28254,"v":[[0,2,["G26"]],[2,5,["G505"]],[5,6,["G655"]],[6,10,["G4190"]],[10,11,["G2853"]],[11,16,["G18"]]]},{"k":28255,"v":[[0,3,["G5387"]],[3,6,["G240","G1519"]],[6,9,["G5360"]],[9,11,["G5092"]],[11,12,["G4285"]],[12,14,["G240"]]]},{"k":28256,"v":[[0,1,["G3361"]],[1,2,["G3636"]],[2,4,["G4710"]],[4,5,["G2204"]],[5,7,["G4151"]],[7,8,["G1398"]],[8,9,["G3588"]],[9,10,["G2962"]]]},{"k":28257,"v":[[0,1,["G5463"]],[1,3,["G1680"]],[3,4,["G5278"]],[4,6,["G2347"]],[6,8,["G4342"]],[8,10,["G4335"]]]},{"k":28258,"v":[[0,1,["G2841"]],[1,3,["G3588"]],[3,4,["G5532"]],[4,6,["G40"]],[6,8,["G1377"]],[8,9,["G5381"]]]},{"k":28259,"v":[[0,1,["G2127"]],[1,4,["G1377"]],[4,5,["G5209"]],[5,6,["G2127"]],[6,7,["G2532"]],[7,8,["G2672"]],[8,9,["G3361"]]]},{"k":28260,"v":[[0,1,["G5463"]],[1,2,["G3326"]],[2,6,["G5463"]],[6,7,["G2532"]],[7,8,["G2799"]],[8,9,["G3326"]],[9,12,["G2799"]]]},{"k":28261,"v":[[0,3,["G3588"]],[3,4,["G846"]],[4,5,["G5426"]],[5,8,["G240","G1519"]],[8,9,["G5426"]],[9,10,["G3361"]],[10,12,["G5308"]],[12,13,["G235"]],[13,14,["G4879"]],[14,19,["G5011"]],[19,20,["G1096"]],[20,21,["G3361"]],[21,22,["G5429"]],[22,23,["G3844"]],[23,26,["G1438"]]]},{"k":28262,"v":[[0,1,["G591"]],[1,4,["G3367"]],[4,5,["G2556"]],[5,6,["G473"]],[6,7,["G2556"]],[7,8,["G4306"]],[8,10,["G2570"]],[10,13,["G1799"]],[13,15,["G3956"]],[15,16,["G444"]]]},{"k":28263,"v":[[0,1,["G1487"]],[1,4,["G1415"]],[4,10,["G1537","G5216"]],[10,12,["G1514"]],[12,13,["G3326"]],[13,14,["G3956"]],[14,15,["G444"]]]},{"k":28264,"v":[[0,2,["G27"]],[2,3,["G1556"]],[3,4,["G3361"]],[4,5,["G1438"]],[5,6,["G235"]],[6,8,["G1325"]],[8,9,["G5117"]],[9,11,["G3709"]],[11,12,["G1063"]],[12,15,["G1125"]],[15,16,["G1557"]],[16,18,["G1698"]],[18,19,["G1473"]],[19,21,["G467"]],[21,22,["G3004"]],[22,24,["G2962"]]]},{"k":28265,"v":[[0,1,["G3767"]],[1,2,["G1437"]],[2,3,["G4675"]],[3,4,["G2190"]],[4,5,["G3983"]],[5,6,["G5595"]],[6,7,["G846"]],[7,8,["G1437"]],[8,10,["G1372"]],[10,13,["G4222","G846"]],[13,14,["G1063"]],[14,16,["G5124"]],[16,17,["G4160"]],[17,20,["G4987"]],[20,21,["G440"]],[21,23,["G4442"]],[23,24,["G1909"]],[24,25,["G848"]],[25,26,["G2776"]]]},{"k":28266,"v":[[0,2,["G3361"]],[2,3,["G3528"]],[3,4,["G5259"]],[4,5,["G2556"]],[5,6,["G235"]],[6,7,["G3528"]],[7,8,["G2556"]],[8,9,["G1722"]],[9,10,["G18"]]]},{"k":28267,"v":[[0,2,["G3956"]],[2,3,["G5590"]],[3,5,["G5293"]],[5,8,["G5242"]],[8,9,["G1849"]],[9,10,["G1063"]],[10,12,["G2076"]],[12,13,["G3756"]],[13,14,["G1849"]],[14,15,["G1508"]],[15,16,["G575"]],[16,17,["G2316","(G1161)"]],[17,18,["G3588"]],[18,19,["G1849"]],[19,21,["G5607"]],[21,22,["G1526"]],[22,23,["G5021"]],[23,24,["G5259"]],[24,25,["G2316"]]]},{"k":28268,"v":[[0,3,["G498","G5620"]],[3,4,["G3588"]],[4,5,["G1849"]],[5,6,["G436"]],[6,7,["G3588"]],[7,8,["G1296"]],[8,10,["G2316"]],[10,11,["G1161"]],[11,14,["G436"]],[14,16,["G2983"]],[16,18,["G1438"]],[18,19,["G2917"]]]},{"k":28269,"v":[[0,1,["G1063"]],[1,2,["G758"]],[2,3,["G1526"]],[3,4,["G3756"]],[4,6,["G5401"]],[6,8,["G18"]],[8,9,["G2041"]],[9,10,["G235"]],[10,12,["G3588"]],[12,13,["G2556"]],[13,14,["G2309"]],[14,16,["G1161"]],[16,17,["G3361"]],[17,19,["G5399"]],[19,21,["G3588"]],[21,22,["G1849"]],[22,23,["G4160"]],[23,27,["G18"]],[27,28,["G2532"]],[28,31,["G2192"]],[31,32,["G1868"]],[32,33,["G1537"]],[33,35,["G846"]]]},{"k":28270,"v":[[0,1,["G1063"]],[1,3,["G2076"]],[3,5,["G1249"]],[5,7,["G2316"]],[7,9,["G4671"]],[9,10,["G1519"]],[10,11,["G18"]],[11,12,["G1161"]],[12,13,["G1437"]],[13,15,["G4160"]],[15,19,["G2556"]],[19,21,["G5399"]],[21,22,["G1063"]],[22,24,["G5409"]],[24,25,["G3756"]],[25,26,["G3588"]],[26,27,["G3162"]],[27,29,["G1500"]],[29,30,["G1063"]],[30,32,["G2076"]],[32,34,["G1249"]],[34,36,["G2316"]],[36,38,["G1558"]],[38,39,["G1519"]],[39,41,["G3709"]],[41,45,["G4238"]],[45,46,["G2556"]]]},{"k":28271,"v":[[0,1,["G1352"]],[1,4,["G318"]],[4,6,["G5293"]],[6,7,["G3756"]],[7,8,["G3440"]],[8,9,["G1223"]],[9,10,["G3709"]],[10,11,["G235"]],[11,12,["G2532"]],[12,15,["G1223","G4893"]]]},{"k":28272,"v":[[0,1,["G1063"]],[1,4,["G1223","G5124"]],[4,5,["G5055"]],[5,7,["G5411"]],[7,8,["G2532"]],[8,9,["G1063"]],[9,11,["G1526"]],[11,12,["G2316"]],[12,13,["G3011"]],[13,15,["G4342"]],[15,16,["G1519"]],[16,19,["G5124","G846"]]]},{"k":28273,"v":[[0,1,["G591"]],[1,2,["G3767"]],[2,4,["G3956"]],[4,6,["G3782"]],[6,7,["G5411"]],[7,9,["G3588"]],[9,10,["G5411"]],[10,13,["G5056"]],[13,15,["G3588"]],[15,16,["G5056"]],[16,17,["G5401"]],[17,19,["G3588"]],[19,20,["G5401"]],[20,21,["G5092"]],[21,23,["G3588"]],[23,24,["G5092"]]]},{"k":28274,"v":[[0,1,["G3784"]],[1,3,["G3367"]],[3,5,["G3367"]],[5,6,["G1508"]],[6,8,["G25"]],[8,10,["G240"]],[10,11,["G1063"]],[11,14,["G25"]],[14,15,["G2087"]],[15,17,["G4137"]],[17,19,["G3551"]]]},{"k":28275,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,5,["G3756"]],[5,7,["G3431"]],[7,10,["G3756"]],[10,11,["G5407"]],[11,14,["G3756"]],[14,15,["G2813"]],[15,18,["G3756"]],[18,21,["G5576"]],[21,24,["G3756"]],[24,25,["G1937"]],[25,26,["G2532"]],[26,30,["G1536"]],[30,31,["G2087"]],[31,32,["G1785"]],[32,36,["G346"]],[36,37,["G1722"]],[37,38,["G5129"]],[38,39,["G3056"]],[39,40,["G1722","G3588"]],[40,43,["G25"]],[43,44,["G4675"]],[44,45,["G4139"]],[45,46,["G5613"]],[46,47,["G1438"]]]},{"k":28276,"v":[[0,1,["G26"]],[1,2,["G2038"]],[2,3,["G3756"]],[3,4,["G2556"]],[4,7,["G4139"]],[7,8,["G3767"]],[8,9,["G26"]],[9,12,["G4138"]],[12,15,["G3551"]]]},{"k":28277,"v":[[0,1,["G2532"]],[1,2,["G5124"]],[2,3,["G1492"]],[3,4,["G3588"]],[4,5,["G2540"]],[5,6,["G3754"]],[6,7,["G2235"]],[7,11,["G5610"]],[11,12,["(G2248)"]],[12,13,["G1453"]],[13,15,["G1537"]],[15,16,["G5258"]],[16,17,["G1063"]],[17,18,["G3568"]],[18,20,["G2257"]],[20,21,["G4991"]],[21,22,["G1452"]],[22,23,["G2228"]],[23,24,["G3753"]],[24,26,["G4100"]]]},{"k":28278,"v":[[0,1,["G3588"]],[1,2,["G3571"]],[2,5,["G4298","(G1161)"]],[5,6,["G3588"]],[6,7,["G2250"]],[7,10,["G1448"]],[10,13,["G3767"]],[13,15,["G659"]],[15,16,["G3588"]],[16,17,["G2041"]],[17,19,["G4655"]],[19,20,["G2532"]],[20,24,["G1746"]],[24,25,["G3588"]],[25,26,["G3696"]],[26,28,["G5457"]]]},{"k":28279,"v":[[0,3,["G4043"]],[3,4,["G2156"]],[4,5,["G5613"]],[5,6,["G1722"]],[6,8,["G2250"]],[8,9,["G3361"]],[9,11,["G2970"]],[11,12,["G2532"]],[12,13,["G3178"]],[13,14,["G3361"]],[14,16,["G2845"]],[16,17,["G2532"]],[17,18,["G766"]],[18,19,["G3361"]],[19,21,["G2054"]],[21,22,["G2532"]],[22,23,["G2205"]]]},{"k":28280,"v":[[0,1,["G235"]],[1,4,["G1746"]],[4,5,["G3588"]],[5,6,["G2962"]],[6,7,["G2424"]],[7,8,["G5547"]],[8,9,["G2532"]],[9,10,["G4160"]],[10,11,["G3361"]],[11,12,["G4307"]],[12,14,["G3588"]],[14,15,["G4561"]],[15,18,["(G1519)"]],[18,19,["G1939"]],[19,20,[]]]},{"k":28281,"v":[[0,0,["(G1161)"]],[0,4,["G770"]],[4,6,["G3588"]],[6,7,["G4102"]],[7,8,["G4355"]],[8,11,["G3361"]],[11,12,["G1519"]],[12,13,["G1261"]],[13,14,["G1253"]]]},{"k":28282,"v":[[0,2,["G3739","G3303"]],[2,3,["G4100"]],[3,7,["G5315"]],[7,9,["G3956","(G1161)"]],[9,10,["G3588"]],[10,13,["G770"]],[13,14,["G2068"]],[14,15,["G3001"]]]},{"k":28283,"v":[[0,2,["G3361"]],[2,5,["G2068"]],[5,6,["G1848"]],[6,10,["G2068","G3361"]],[10,11,["G2532"]],[11,13,["G3361"]],[13,17,["G2068","G3361"]],[17,18,["G2919"]],[18,21,["G2068"]],[21,22,["G1063"]],[22,23,["G2316"]],[23,25,["G4355"]],[25,26,["G846"]]]},{"k":28284,"v":[[0,1,["G5101"]],[1,2,["G1488"]],[2,3,["G4771"]],[3,5,["G2919"]],[5,7,["G245"]],[7,8,["G3610"]],[8,11,["G2398"]],[11,12,["G2962"]],[12,14,["G4739"]],[14,15,["G2228"]],[15,16,["G4098"]],[16,17,["G1161"]],[17,22,["G2476"]],[22,23,["G1063"]],[23,24,["G2316"]],[24,25,["G2076"]],[25,26,["G1415"]],[26,30,["G2476","G846"]]]},{"k":28285,"v":[[0,2,["G3739","G3303"]],[2,3,["G2919"]],[3,7,["G2250","G3844","G2250","(G1161)"]],[7,8,["G3739"]],[8,9,["G2919"]],[9,10,["G3956"]],[10,11,["G2250"]],[11,15,["G1538"]],[15,18,["G4135"]],[18,19,["G1722"]],[19,21,["G2398"]],[21,22,["G3563"]]]},{"k":28286,"v":[[0,3,["G5426"]],[3,4,["G3588"]],[4,5,["G2250"]],[5,6,["G5426"]],[6,10,["G2962"]],[10,11,["G2532"]],[11,15,["G5426","G3361"]],[15,16,["G3588"]],[16,17,["G2250"]],[17,20,["G2962"]],[20,23,["G3756"]],[23,24,["G5426"]],[24,28,["G2068"]],[28,29,["G2068"]],[29,32,["G2962"]],[32,33,["G1063"]],[33,37,["G2168","G2316"]],[37,38,["G2532"]],[38,42,["G2068","G3361"]],[42,45,["G2962"]],[45,47,["G2068"]],[47,48,["G3756"]],[48,49,["G2532"]],[49,52,["G2168","G2316"]]]},{"k":28287,"v":[[0,1,["G1063"]],[1,2,["G3762"]],[2,4,["G2257"]],[4,5,["G2198"]],[5,7,["G1438"]],[7,8,["G2532"]],[8,10,["G3762"]],[10,11,["G599"]],[11,13,["G1438"]]]},{"k":28288,"v":[[0,1,["G1063"]],[1,2,["G1437"]],[2,3,["(G5037)"]],[3,4,["G2198"]],[4,6,["G2198"]],[6,8,["G3588"]],[8,9,["G2962"]],[9,10,["G5037"]],[10,11,["G1437"]],[11,13,["G599"]],[13,15,["G599"]],[15,17,["G3588"]],[17,18,["G2962","(G5037)"]],[18,19,["G1437"]],[19,21,["G2198"]],[21,22,["G3767"]],[22,23,["G5037","(G1437)"]],[23,24,["G599"]],[24,26,["G2070"]],[26,27,["G3588"]],[27,28,["G2962"]]]},{"k":28289,"v":[[0,1,["G1063"]],[1,2,["G1519"]],[2,4,["G5124"]],[4,5,["G5547"]],[5,6,["G2532"]],[6,7,["G599"]],[7,8,["G2532"]],[8,9,["G450"]],[9,10,["G2532"]],[10,11,["G326"]],[11,12,["G2443"]],[12,16,["G2961"]],[16,17,["G2532"]],[17,20,["G3498"]],[20,21,["G2532"]],[21,22,["G2198"]]]},{"k":28290,"v":[[0,1,["G1161"]],[1,2,["G5101"]],[2,4,["G4771"]],[4,5,["G2919"]],[5,6,["G4675"]],[6,7,["G80"]],[7,8,["G2228","(G2532)"]],[8,9,["G5101"]],[9,11,["G4771"]],[11,14,["G1848"]],[14,15,["G4675"]],[15,16,["G80"]],[16,17,["G1063"]],[17,20,["G3956"]],[20,22,["G3936"]],[22,23,["G3588"]],[23,25,["G968"]],[25,27,["G5547"]]]},{"k":28291,"v":[[0,1,["G1063"]],[1,4,["G1125"]],[4,6,["G1473"]],[6,7,["G2198"]],[7,8,["G3004"]],[8,10,["G2962","(G3754)"]],[10,11,["G3956"]],[11,12,["G1119"]],[12,14,["G2578"]],[14,16,["G1698"]],[16,17,["G2532"]],[17,18,["G3956"]],[18,19,["G1100"]],[19,21,["G1843"]],[21,23,["G2316"]]]},{"k":28292,"v":[[0,1,["G686"]],[1,2,["G3767"]],[2,4,["G1538"]],[4,6,["G2257"]],[6,8,["G1325"]],[8,9,["G3056"]],[9,10,["G4012"]],[10,11,["G1438"]],[11,13,["G2316"]]]},{"k":28293,"v":[[0,5,["G2919","G3767"]],[5,7,["G240"]],[7,9,["G3371"]],[9,10,["G235"]],[10,11,["G2919"]],[11,12,["G5124"]],[12,13,["G3123"]],[13,16,["G3361"]],[16,17,["G5087"]],[17,19,["G4348"]],[19,20,["G2228"]],[20,24,["G4625"]],[24,27,["G80"]],[27,28,[]]]},{"k":28294,"v":[[0,2,["G1492"]],[2,3,["G2532"]],[3,5,["G3982"]],[5,6,["G1722"]],[6,8,["G2962"]],[8,9,["G2424"]],[9,10,["G3754"]],[10,13,["G3762"]],[13,14,["G2839"]],[14,15,["G1223"]],[15,16,["G1438"]],[16,17,["G1508"]],[17,21,["G3049"]],[21,23,["G5100"]],[23,25,["G1511"]],[25,26,["G2839"]],[26,28,["G1565"]],[28,31,["G2839"]]]},{"k":28295,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G4675"]],[3,4,["G80"]],[4,6,["G3076"]],[6,7,["G1223"]],[7,9,["G1033"]],[9,13,["G3765","G4043"]],[13,14,["G2596","G26"]],[14,15,["G622"]],[15,16,["G3361"]],[16,17,["G1565"]],[17,19,["G4675"]],[19,20,["G1033"]],[20,21,["G5228"]],[21,22,["G3739"]],[22,23,["G5547"]],[23,24,["G599"]]]},{"k":28296,"v":[[0,2,["G3361"]],[2,3,["G3767"]],[3,4,["G5216"]],[4,5,["G18"]],[5,9,["G987"]]]},{"k":28297,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G932"]],[3,5,["G2316"]],[5,6,["G2076"]],[6,7,["G3756"]],[7,8,["G1035"]],[8,9,["G2532"]],[9,10,["G4213"]],[10,11,["G235"]],[11,12,["G1343"]],[12,13,["G2532"]],[13,14,["G1515"]],[14,15,["G2532"]],[15,16,["G5479"]],[16,17,["G1722"]],[17,19,["G40"]],[19,20,["G4151"]]]},{"k":28298,"v":[[0,1,["G1063"]],[1,4,["G1722"]],[4,6,["G5125"]],[6,7,["G1398"]],[7,8,["G5547"]],[8,10,["G2101"]],[10,12,["G2316"]],[12,13,["G2532"]],[13,14,["G1384"]],[14,16,["G444"]]]},{"k":28299,"v":[[0,0,["(G686)"]],[0,5,["G1377","G3767"]],[5,7,["G3588"]],[7,11,["G1515"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,17,["G3619","(G1519)"]],[17,18,["G240"]]]},{"k":28300,"v":[[0,1,["G1752"]],[1,2,["G1033"]],[2,3,["G2647"]],[3,4,["G3361"]],[4,5,["G3588"]],[5,6,["G2041"]],[6,8,["G2316"]],[8,10,["G3956"]],[10,11,["G3303"]],[11,13,["G2513"]],[13,14,["G235"]],[14,17,["G2556"]],[17,20,["G444"]],[20,22,["G2068"]],[22,23,["G1223"]],[23,24,["G4348"]]]},{"k":28301,"v":[[0,3,["G2570"]],[3,4,["G3361"]],[4,6,["G5315"]],[6,7,["G2907"]],[7,8,["G3366"]],[8,10,["G4095"]],[10,11,["G3631"]],[11,12,["G3366"]],[12,15,["G1722","G3739"]],[15,16,["G4675"]],[16,17,["G80"]],[17,18,["G4350"]],[18,19,["G2228"]],[19,21,["G4624"]],[21,22,["G2228"]],[22,25,["G770"]]]},{"k":28302,"v":[[0,1,["G2192"]],[1,2,["G4771"]],[2,3,["G4102"]],[3,4,["G2192"]],[4,6,["G2596"]],[6,7,["G4572"]],[7,8,["G1799"]],[8,9,["G2316"]],[9,10,["G3107"]],[10,14,["G2919"]],[14,15,["G3361"]],[15,16,["G1438"]],[16,17,["G1722"]],[17,20,["G3739"]],[20,22,["G1381"]]]},{"k":28303,"v":[[0,1,["G1161"]],[1,4,["G1252"]],[4,6,["G2632"]],[6,7,["G1437"]],[7,9,["G5315"]],[9,10,["G3754"]],[10,13,["G3756"]],[13,14,["G1537"]],[14,15,["G4102"]],[15,16,["G1161"]],[16,17,["G3956","G3739"]],[17,19,["G3756"]],[19,20,["G1537"]],[20,21,["G4102"]],[21,22,["G2076"]],[22,23,["G266"]]]},{"k":28304,"v":[[0,1,["G2249"]],[1,2,["G1161"]],[2,5,["G1415"]],[5,6,["G3784"]],[6,8,["G941"]],[8,9,["G3588"]],[9,10,["G771"]],[10,12,["G3588"]],[12,13,["G102"]],[13,14,["G2532"]],[14,15,["G3361"]],[15,17,["G700"]],[17,18,["G1438"]]]},{"k":28305,"v":[[0,1,["(G1063)"]],[1,3,["G1538"]],[3,5,["G2257"]],[5,6,["G700"]],[6,8,["G4139"]],[8,9,["G1519"]],[9,11,["G18"]],[11,12,["G4314"]],[12,13,["G3619"]]]},{"k":28306,"v":[[0,1,["G1063"]],[1,2,["G2532"]],[2,3,["G5547"]],[3,4,["G700"]],[4,5,["G3756"]],[5,6,["G1438"]],[6,7,["G235"]],[7,8,["G2531"]],[8,11,["G1125"]],[11,12,["G3588"]],[12,13,["G3680"]],[13,17,["G3679"]],[17,18,["G4571"]],[18,19,["G1968"]],[19,20,["G1909"]],[20,21,["G1691"]]]},{"k":28307,"v":[[0,1,["G1063"]],[1,3,["G3745"]],[3,6,["G4270"]],[6,8,["G4270"]],[8,9,["G1519"]],[9,10,["G2251"]],[10,11,["G1319"]],[11,12,["G2443"]],[12,14,["G1223"]],[14,15,["G5281"]],[15,16,["G2532"]],[16,17,["G3874"]],[17,19,["G3588"]],[19,20,["G1124"]],[20,22,["G2192"]],[22,23,["G1680"]]]},{"k":28308,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2316"]],[3,5,["G5281"]],[5,6,["G2532"]],[6,7,["G3874"]],[7,8,["G1325"]],[8,9,["G5213"]],[9,12,["G5426","G846"]],[12,15,["G240","G1722"]],[15,16,["G2596"]],[16,18,["G5547"]],[18,19,["G2424"]]]},{"k":28309,"v":[[0,1,["G2443"]],[1,6,["G3661"]],[6,7,["(G1722)"]],[7,8,["G1520"]],[8,9,["G4750"]],[9,10,["G1392"]],[10,11,["G2316"]],[11,12,["G2532"]],[12,14,["G3962"]],[14,16,["G2257"]],[16,17,["G2962"]],[17,18,["G2424"]],[18,19,["G5547"]]]},{"k":28310,"v":[[0,1,["G1352"]],[1,2,["G4355"]],[2,5,["G240"]],[5,6,["G2531"]],[6,7,["G5547"]],[7,8,["G2532"]],[8,9,["G4355"]],[9,10,["G2248"]],[10,11,["G1519"]],[11,13,["G1391"]],[13,15,["G2316"]]]},{"k":28311,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,7,["G1096"]],[7,9,["G1249"]],[9,12,["G4061"]],[12,13,["G5228"]],[13,15,["G225"]],[15,17,["G2316"]],[17,19,["G950"]],[19,20,["G3588"]],[20,21,["G1860"]],[21,24,["G3588"]],[24,25,["G3962"]]]},{"k":28312,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1484"]],[4,6,["G1392"]],[6,7,["G2316"]],[7,8,["G5228"]],[8,10,["G1656"]],[10,11,["G2531"]],[11,14,["G1125"]],[14,17,["G1223","G5124"]],[17,20,["G1843"]],[20,22,["G4671"]],[22,23,["G1722"]],[23,25,["G1484"]],[25,26,["G2532"]],[26,27,["G5567"]],[27,29,["G4675"]],[29,30,["G3686"]]]},{"k":28313,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,4,["G3004"]],[4,5,["G2165"]],[5,7,["G1484"]],[7,8,["G3326"]],[8,9,["G848"]],[9,10,["G2992"]]]},{"k":28314,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,3,["G134"]],[3,4,["G3588"]],[4,5,["G2962"]],[5,6,["G3956"]],[6,8,["G1484"]],[8,9,["G2532"]],[9,10,["G1867"]],[10,11,["G846"]],[11,12,["G3956"]],[12,14,["G2992"]]]},{"k":28315,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,3,["G2268"]],[3,4,["G3004"]],[4,7,["G2071"]],[7,9,["G4491"]],[9,11,["G2421"]],[11,12,["G2532"]],[12,16,["G450"]],[16,19,["G757"]],[19,21,["G1484"]],[21,22,["G1909"]],[22,23,["G846"]],[23,26,["G1484"]],[26,27,["G1679"]]]},{"k":28316,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2316"]],[3,5,["G1680"]],[5,6,["G4137"]],[6,7,["G5209"]],[7,9,["G3956"]],[9,10,["G5479"]],[10,11,["G2532"]],[11,12,["G1515"]],[12,14,["G4100"]],[14,16,["G5209"]],[16,18,["G4052"]],[18,19,["G1722"]],[19,20,["G1680"]],[20,21,["G1722"]],[21,23,["G1411"]],[23,26,["G40"]],[26,27,["G4151"]]]},{"k":28317,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G848"]],[3,4,["G2532"]],[4,6,["G3982"]],[6,7,["G4012"]],[7,8,["G5216"]],[8,9,["G3450"]],[9,10,["G80"]],[10,11,["G3754"]],[11,12,["G848"]],[12,13,["G2532"]],[13,14,["G2075"]],[14,15,["G3324"]],[15,17,["G19"]],[17,18,["G4137"]],[18,20,["G3956"]],[20,21,["G1108"]],[21,22,["G1410"]],[22,23,["G2532"]],[23,25,["G3560"]],[25,27,["G240"]]]},{"k":28318,"v":[[0,1,["G1161"]],[1,2,["G80"]],[2,5,["G1125"]],[5,8,["G5112"]],[8,10,["G5213"]],[10,13,["G575","G3313"]],[13,14,["G5613"]],[14,18,["G1878","G5209"]],[18,19,["G1223"]],[19,21,["G3588"]],[21,22,["G5485"]],[22,25,["G1325"]],[25,27,["G3427"]],[27,28,["G5259"]],[28,29,["G2316"]]]},{"k":28319,"v":[[0,3,["G3165"]],[3,4,["G1511"]],[4,6,["G3011"]],[6,8,["G2424"]],[8,9,["G5547"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G1484"]],[12,13,["G2418"]],[13,14,["G3588"]],[14,15,["G2098"]],[15,17,["G2316"]],[17,18,["G2443"]],[18,19,["G3588"]],[19,21,["G4376"]],[21,23,["G3588"]],[23,24,["G1484"]],[24,26,["G1096"]],[26,27,["G2144"]],[27,29,["G37"]],[29,30,["G1722"]],[30,32,["G40"]],[32,33,["G4151"]]]},{"k":28320,"v":[[0,2,["G2192"]],[2,3,["G3767"]],[3,7,["G2746"]],[7,8,["G1722"]],[8,9,["G2424"]],[9,10,["G5547"]],[10,15,["G4314"]],[15,17,["G2316"]]]},{"k":28321,"v":[[0,1,["G1063"]],[1,4,["G3756"]],[4,5,["G5111"]],[5,7,["G2980"]],[7,9,["G5100"]],[9,12,["G3739"]],[12,14,["G5547"]],[14,16,["G3756"]],[16,17,["G2716"]],[17,18,["G1223"]],[18,19,["G1700"]],[19,20,["G1519"]],[20,24,["G5218","G1484"]],[24,26,["G3056"]],[26,27,["G2532"]],[27,28,["G2041"]]]},{"k":28322,"v":[[0,1,["G1722"]],[1,2,["G1411"]],[2,3,["G4592"]],[3,4,["G2532"]],[4,5,["G5059"]],[5,6,["G1722"]],[6,8,["G1411"]],[8,11,["G4151"]],[11,13,["G2316"]],[13,15,["G5620"]],[15,16,["G575"]],[16,17,["G2419"]],[17,18,["G2532"]],[18,20,["G2945"]],[20,21,["G3360"]],[21,22,["G2437"]],[22,23,["G3165"]],[23,26,["G4137"]],[26,27,["G3588"]],[27,28,["G2098"]],[28,30,["G5547"]]]},{"k":28323,"v":[[0,1,["G1161"]],[1,2,["G3779"]],[2,5,["G5389"]],[5,9,["G2097"]],[9,10,["G3756"]],[10,11,["G3699"]],[11,12,["G5547"]],[12,14,["G3687"]],[14,15,["G3363"]],[15,18,["G3618"]],[18,19,["G1909"]],[19,21,["G245"]],[21,22,["G2310"]]]},{"k":28324,"v":[[0,1,["G235"]],[1,2,["G2531"]],[2,5,["G1125"]],[5,7,["G3739"]],[7,10,["G3756"]],[10,11,["G312"]],[11,12,["G4012"]],[12,13,["(G846)"]],[13,15,["G3700"]],[15,16,["G2532"]],[16,17,["G3739"]],[17,20,["G3756"]],[20,21,["G191"]],[21,23,["G4920"]]]},{"k":28325,"v":[[0,3,["G1352"]],[3,4,["G2532"]],[4,8,["G4183"]],[8,9,["G1465"]],[9,11,["G2064"]],[11,12,["G4314"]],[12,13,["G5209"]]]},{"k":28326,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,3,["G2192"]],[3,5,["G3371"]],[5,6,["G5117"]],[6,7,["G1722"]],[7,8,["G5125"]],[8,9,["G2824"]],[9,10,["G1161"]],[10,11,["G2192"]],[11,14,["G1974"]],[14,15,["(G575)"]],[15,16,["G4183"]],[16,17,["G2094"]],[17,19,["G2064"]],[19,20,["G4314"]],[20,21,["G5209"]]]},{"k":28327,"v":[[0,1,["G5613","G1437"]],[1,5,["G4198"]],[5,6,["G1519"]],[6,7,["G4681"]],[7,10,["G2064"]],[10,11,["G4314"]],[11,12,["G5209"]],[12,13,["G1063"]],[13,15,["G1679"]],[15,17,["G2300"]],[17,18,["G5209"]],[18,21,["G1279"]],[21,22,["G2532"]],[22,28,["G4311"]],[28,29,["G1563"]],[29,30,["G5259"]],[30,31,["G5216"]],[31,32,["G1437"]],[32,33,["G4412"]],[33,36,["G575","G3313"]],[36,37,["G1705"]],[37,39,["G5216"]],[39,40,[]]]},{"k":28328,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,4,["G4198"]],[4,5,["G1519"]],[5,6,["G2419"]],[6,9,["G1247"]],[9,10,["G3588"]],[10,11,["G40"]]]},{"k":28329,"v":[[0,1,["G1063"]],[1,4,["G2106"]],[4,7,["G3109"]],[7,8,["G2532"]],[8,9,["G882"]],[9,11,["G4160"]],[11,13,["G5100"]],[13,14,["G2842"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G4434"]],[17,18,["G40"]],[18,19,["G3588"]],[19,21,["G1722"]],[21,22,["G2419"]]]},{"k":28330,"v":[[0,3,["G2106"]],[3,5,["G1063"]],[5,6,["G2532"]],[6,7,["G848"]],[7,8,["G3781"]],[8,10,["G1526"]],[10,11,["G1063"]],[11,12,["G1487"]],[12,13,["G3588"]],[13,14,["G1484"]],[14,18,["G2841"]],[18,20,["G848"]],[20,22,["G4152"]],[22,24,["G3784"]],[24,26,["G2532"]],[26,28,["G3008"]],[28,30,["G846"]],[30,33,["G4559"]]]},{"k":28331,"v":[[0,2,["G3767"]],[2,5,["G2005"]],[5,6,["G5124"]],[6,7,["G2532"]],[7,9,["G4972"]],[9,11,["G846"]],[11,12,["G5126"]],[12,13,["G2590"]],[13,16,["G565"]],[16,17,["G1223"]],[17,18,["G5216"]],[18,19,["G1519"]],[19,20,["G4681"]]]},{"k":28332,"v":[[0,1,["G1161"]],[1,4,["G1492"]],[4,5,["G3754"]],[5,8,["G2064"]],[8,9,["G4314"]],[9,10,["G5209"]],[10,13,["G2064"]],[13,14,["G1722"]],[14,16,["G4138"]],[16,19,["G2129"]],[19,21,["G3588"]],[21,22,["G2098"]],[22,24,["G5547"]]]},{"k":28333,"v":[[0,1,["G1161"]],[1,3,["G3870"]],[3,4,["G5209"]],[4,5,["G80"]],[5,11,["G1223","G2257","G2962","G2424","G5547"]],[11,12,["G2532"]],[12,13,["G1223"]],[13,14,["G3588"]],[14,15,["G26"]],[15,17,["G3588"]],[17,18,["G4151"]],[18,23,["G4865"]],[23,24,["G3427"]],[24,25,["G1722"]],[25,27,["G4335"]],[27,28,["G4314"]],[28,29,["G2316"]],[29,30,["G5228"]],[30,31,["G1700"]]]},{"k":28334,"v":[[0,1,["G2443"]],[1,5,["G4506"]],[5,6,["G575"]],[6,11,["G544"]],[11,12,["G1722"]],[12,13,["G2449"]],[13,14,["G2532"]],[14,15,["G2443"]],[15,16,["G3450"]],[16,17,["G1248"]],[17,18,["G3588"]],[18,21,["G1519"]],[21,22,["G2419"]],[22,24,["G1096"]],[24,25,["G2144"]],[25,27,["G3588"]],[27,28,["G40"]]]},{"k":28335,"v":[[0,1,["G2443"]],[1,4,["G2064"]],[4,5,["G4314"]],[5,6,["G5209"]],[6,7,["G1722"]],[7,8,["G5479"]],[8,9,["G1223"]],[9,11,["G2307"]],[11,13,["G2316"]],[13,14,["G2532"]],[14,17,["G5213"]],[17,19,["G4875"]]]},{"k":28336,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2316"]],[3,5,["G1515"]],[5,7,["G3326"]],[7,8,["G5216"]],[8,9,["G3956"]],[9,10,["G281"]]]},{"k":28337,"v":[[0,0,["(G1161)"]],[0,2,["G4921"]],[2,4,["G5213"]],[4,5,["G5402"]],[5,6,["G2257"]],[6,7,["G79"]],[7,9,["G5607"]],[9,11,["G1249"]],[11,13,["G3588"]],[13,14,["G1577"]],[14,15,["G3588"]],[15,17,["G1722"]],[17,18,["G2747"]]]},{"k":28338,"v":[[0,1,["G2443"]],[1,3,["G4327"]],[3,4,["G846"]],[4,5,["G1722"]],[5,7,["G2962"]],[7,9,["G516"]],[9,10,["G40"]],[10,11,["G2532"]],[11,14,["G3936"]],[14,15,["G846"]],[15,16,["G1722"]],[16,17,["G3739","G302"]],[17,18,["G4229"]],[18,21,["G5535"]],[21,23,["G5216"]],[23,24,["G1063"]],[24,25,["G3778"]],[25,26,["(G2532)"]],[26,27,["G1096"]],[27,29,["G4368"]],[29,31,["G4183"]],[31,32,["G2532"]],[32,33,["(G1700)"]],[33,34,["G848"]],[34,35,[]]]},{"k":28339,"v":[[0,1,["G782"]],[1,2,["G4252"]],[2,3,["G2532"]],[3,4,["G207"]],[4,5,["G3450"]],[5,6,["G4904"]],[6,7,["G1722"]],[7,8,["G5547"]],[8,9,["G2424"]]]},{"k":28340,"v":[[0,1,["G3748"]],[1,3,["G5228"]],[3,4,["G3450"]],[4,5,["G5590"]],[5,7,["G5294"]],[7,9,["G1438"]],[9,10,["G5137"]],[10,12,["G3739"]],[12,13,["G3756"]],[13,14,["G3441"]],[14,15,["G1473"]],[15,17,["G2168"]],[17,18,["G235"]],[18,19,["G2532"]],[19,20,["G3956"]],[20,21,["G3588"]],[21,22,["G1577"]],[22,24,["G3588"]],[24,25,["G1484"]]]},{"k":28341,"v":[[0,1,["(G2532)"]],[1,3,["G3588"]],[3,4,["G1577"]],[4,7,["G2596"]],[7,8,["G848"]],[8,9,["G3624"]],[9,10,["G782"]],[10,11,["G3450"]],[11,12,["G27"]],[12,13,["G1866"]],[13,14,["G3739"]],[14,15,["G2076"]],[15,17,["G536"]],[17,19,["G882"]],[19,20,["G1519"]],[20,21,["G5547"]]]},{"k":28342,"v":[[0,1,["G782"]],[1,2,["G3137"]],[2,3,["G3748"]],[3,6,["G2872","G4183"]],[6,7,["G1519"]],[7,8,["G2248"]]]},{"k":28343,"v":[[0,1,["G782"]],[1,2,["G408"]],[2,3,["G2532"]],[3,4,["G2458"]],[4,5,["G3450"]],[5,6,["G4773"]],[6,7,["G2532"]],[7,8,["G3450"]],[8,9,["G4869"]],[9,10,["G3748"]],[10,11,["G1526"]],[11,13,["G1978"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G652"]],[16,17,["G3739"]],[17,18,["G2532"]],[18,19,["G1096"]],[19,20,["G1722"]],[20,21,["G5547"]],[21,22,["G4253"]],[22,23,["G1700"]]]},{"k":28344,"v":[[0,1,["G782"]],[1,2,["G291"]],[2,3,["G3450"]],[3,4,["G27"]],[4,5,["G1722"]],[5,7,["G2962"]]]},{"k":28345,"v":[[0,1,["G782"]],[1,2,["G3773"]],[2,3,["G2257"]],[3,4,["G4904"]],[4,5,["G1722"]],[5,6,["G5547"]],[6,7,["G2532"]],[7,8,["G4720"]],[8,9,["G3450"]],[9,10,["G27"]]]},{"k":28346,"v":[[0,1,["G782"]],[1,2,["G559"]],[2,3,["G1384"]],[3,4,["G1722"]],[4,5,["G5547"]],[5,6,["G782"]],[6,7,["G3588"]],[7,10,["G1537"]],[10,11,["G711"]],[11,12,[]]]},{"k":28347,"v":[[0,1,["G782"]],[1,2,["G2267"]],[2,3,["G3450"]],[3,4,["G4773"]],[4,5,["G782"]],[5,6,["G3588"]],[6,9,["G1537"]],[9,10,["G3588"]],[10,13,["G3488"]],[13,15,["G5607"]],[15,16,["G1722"]],[16,18,["G2962"]]]},{"k":28348,"v":[[0,1,["G782"]],[1,2,["G5170"]],[2,3,["G2532"]],[3,4,["G5173"]],[4,5,["G3588"]],[5,6,["G2872"]],[6,7,["G1722"]],[7,9,["G2962"]],[9,10,["G782"]],[10,11,["G3588"]],[11,12,["G27"]],[12,13,["G4069"]],[13,14,["G3748"]],[14,15,["G2872"]],[15,16,["G4183"]],[16,17,["G1722"]],[17,19,["G2962"]]]},{"k":28349,"v":[[0,1,["G782"]],[1,2,["G4504"]],[2,3,["G1588"]],[3,4,["G1722"]],[4,6,["G2962"]],[6,7,["G2532"]],[7,8,["G848"]],[8,9,["G3384"]],[9,10,["G2532"]],[10,11,["G1700"]]]},{"k":28350,"v":[[0,1,["G782"]],[1,2,["G799"]],[2,3,["G5393"]],[3,4,["G2057"]],[4,5,["G3969"]],[5,6,["G2060"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G80"]],[9,12,["G4862"]],[12,13,["G846"]]]},{"k":28351,"v":[[0,1,["G782"]],[1,2,["G5378"]],[2,3,["G2532"]],[3,4,["G2456"]],[4,5,["G3517"]],[5,6,["G2532"]],[6,7,["G848"]],[7,8,["G79"]],[8,9,["G2532"]],[9,10,["G3652"]],[10,11,["G2532"]],[11,12,["G3956"]],[12,13,["G3588"]],[13,14,["G40"]],[14,17,["G4862"]],[17,18,["G846"]]]},{"k":28352,"v":[[0,1,["G782"]],[1,3,["G240"]],[3,4,["G1722"]],[4,6,["G40"]],[6,7,["G5370"]],[7,8,["G3588"]],[8,9,["G1577"]],[9,11,["G5547"]],[11,12,["G782"]],[12,13,["G5209"]]]},{"k":28353,"v":[[0,1,["G1161"]],[1,3,["G3870"]],[3,4,["G5209"]],[4,5,["G80"]],[5,6,["G4648"]],[6,9,["G4160"]],[9,10,["G1370"]],[10,11,["G2532"]],[11,12,["G4625"]],[12,13,["G3844"]],[13,15,["G3588"]],[15,16,["G1322"]],[16,17,["G3739"]],[17,18,["G5210"]],[18,20,["G3129"]],[20,21,["G2532"]],[21,22,["G1578","G575"]],[22,23,["G846"]]]},{"k":28354,"v":[[0,1,["G1063"]],[1,5,["G5108"]],[5,6,["G1398"]],[6,7,["G3756"]],[7,8,["G2257"]],[8,9,["G2962"]],[9,10,["G2424"]],[10,11,["G5547"]],[11,12,["G235"]],[12,14,["G1438"]],[14,15,["G2836"]],[15,16,["G2532"]],[16,17,["G1223"]],[17,19,["G5542"]],[19,20,["G2532"]],[20,22,["G2129"]],[22,23,["G1818"]],[23,24,["G3588"]],[24,25,["G2588"]],[25,27,["G3588"]],[27,28,["G172"]]]},{"k":28355,"v":[[0,1,["G1063"]],[1,2,["G5216"]],[2,3,["G5218"]],[3,6,["G864"]],[6,7,["G1519"]],[7,8,["G3956"]],[8,12,["G5463"]],[12,13,["G3767"]],[13,16,["G1909","G5213"]],[16,17,["G1161"]],[17,20,["G2309"]],[20,22,["G5209"]],[22,23,["(G1511)","G4680"]],[23,24,["(G1519)"]],[24,28,["G18"]],[28,29,["G1161"]],[29,30,["G185"]],[30,31,["G1519"]],[31,32,["G2556"]]]},{"k":28356,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2316"]],[3,5,["G1515"]],[5,7,["G4937"]],[7,8,["G4567"]],[8,9,["G5259"]],[9,10,["G2257"]],[10,11,["G4228"]],[11,12,["G1722","G5034"]],[12,13,["G3588"]],[13,14,["G5485"]],[14,16,["G2257"]],[16,17,["G2962"]],[17,18,["G2424"]],[18,19,["G5547"]],[19,21,["G3326"]],[21,22,["G5216"]],[22,23,["G281"]]]},{"k":28357,"v":[[0,1,["G5095"]],[1,2,["G3450"]],[2,3,["G4904"]],[3,4,["G2532"]],[4,5,["G3066"]],[5,6,["G2532"]],[6,7,["G2394"]],[7,8,["G2532"]],[8,9,["G4989"]],[9,10,["G3450"]],[10,11,["G4773"]],[11,12,["G782"]],[12,13,["G5209"]]]},{"k":28358,"v":[[0,1,["G1473"]],[1,2,["G5060"]],[2,4,["G1125"]],[4,6,["G1992"]],[6,7,["G782"]],[7,8,["G5209"]],[8,9,["G1722"]],[9,11,["G2962"]]]},{"k":28359,"v":[[0,1,["G1050"]],[1,2,["G3450"]],[2,3,["G3581"]],[3,4,["G2532"]],[4,6,["G3588"]],[6,7,["G3650"]],[7,8,["G1577"]],[8,9,["G782"]],[9,10,["G5209"]],[10,11,["G2037"]],[11,12,["G3588"]],[12,13,["G3623"]],[13,15,["G3588"]],[15,16,["G4172"]],[16,17,["G782"]],[17,18,["G5209"]],[18,19,["G2532"]],[19,20,["G2890"]],[20,22,["G80"]]]},{"k":28360,"v":[[0,1,["G3588"]],[1,2,["G5485"]],[2,4,["G2257"]],[4,5,["G2962"]],[5,6,["G2424"]],[6,7,["G5547"]],[7,9,["G3326"]],[9,10,["G5216"]],[10,11,["G3956"]],[11,12,["G281"]]]},{"k":28361,"v":[[0,1,["G1161"]],[1,7,["G1410"]],[7,9,["G4741"]],[9,10,["G5209"]],[10,11,["G2596"]],[11,13,["G3450"]],[13,14,["G2098"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G2782"]],[17,19,["G2424"]],[19,20,["G5547"]],[20,21,["G2596"]],[21,24,["G602"]],[24,27,["G3466"]],[27,31,["G4601"]],[31,35,["G5550","G166"]]]},{"k":28362,"v":[[0,1,["G1161"]],[1,2,["G3568"]],[2,5,["G5319"]],[5,6,["G5037"]],[6,7,["G1223"]],[7,9,["G1124"]],[9,12,["G4397"]],[12,13,["G2596"]],[13,16,["G2003"]],[16,18,["G3588"]],[18,19,["G166"]],[19,20,["G2316"]],[20,22,["G1107"]],[22,23,["G1519"]],[23,24,["G3956"]],[24,25,["G1484"]],[25,26,["G1519"]],[26,28,["G5218"]],[28,30,["G4102"]]]},{"k":28363,"v":[[0,2,["G2316"]],[2,3,["G3441"]],[3,4,["G4680"]],[4,6,["G1391"]],[6,7,["G1223"]],[7,8,["G2424"]],[8,9,["G5547"]],[9,11,["G1519","G165"]],[11,12,["G281"]]]},{"k":28364,"v":[[0,1,["G3972"]],[1,2,["G2822"]],[2,6,["G652"]],[6,8,["G2424"]],[8,9,["G5547"]],[9,10,["G1223"]],[10,12,["G2307"]],[12,14,["G2316"]],[14,15,["G2532"]],[15,16,["G4988"]],[16,18,["G80"]]]},{"k":28365,"v":[[0,2,["G3588"]],[2,3,["G1577"]],[3,5,["G2316"]],[5,7,["G5607"]],[7,8,["G1722"]],[8,9,["G2882"]],[9,14,["G37"]],[14,15,["G1722"]],[15,16,["G5547"]],[16,17,["G2424"]],[17,18,["G2822"]],[18,21,["G40"]],[21,22,["G4862"]],[22,23,["G3956"]],[23,25,["G1722"]],[25,26,["G3956"]],[26,27,["G5117"]],[27,29,["G1941"]],[29,30,["G3588"]],[30,31,["G3686"]],[31,33,["G2424"]],[33,34,["G5547"]],[34,35,["G2257"]],[35,36,["G2962"]],[36,37,["G5037"]],[37,38,["G848"]],[38,39,["G2532"]],[39,40,["G2257"]]]},{"k":28366,"v":[[0,1,["G5485"]],[1,4,["G5213"]],[4,5,["G2532"]],[5,6,["G1515"]],[6,7,["G575"]],[7,8,["G2316"]],[8,9,["G2257"]],[9,10,["G3962"]],[10,11,["G2532"]],[11,14,["G2962"]],[14,15,["G2424"]],[15,16,["G5547"]]]},{"k":28367,"v":[[0,2,["G2168"]],[2,3,["G3450"]],[3,4,["G2316"]],[4,5,["G3842"]],[5,8,["G4012","G5216"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G5485"]],[11,13,["G2316"]],[13,16,["G1325"]],[16,17,["G5213"]],[17,18,["G1722"]],[18,19,["G2424"]],[19,20,["G5547"]]]},{"k":28368,"v":[[0,1,["G3754"]],[1,2,["G1722"]],[2,4,["G3956"]],[4,7,["G4148"]],[7,8,["G1722"]],[8,9,["G846"]],[9,10,["G1722"]],[10,11,["G3956"]],[11,12,["G3056"]],[12,13,["G2532"]],[13,15,["G3956"]],[15,16,["G1108"]]]},{"k":28369,"v":[[0,2,["G2531"]],[2,3,["G3588"]],[3,4,["G3142"]],[4,6,["G5547"]],[6,8,["G950"]],[8,9,["G1722"]],[9,10,["G5213"]]]},{"k":28370,"v":[[0,2,["G5620"]],[2,3,["G5209","(G3361)"]],[3,5,["G5302"]],[5,6,["G1722"]],[6,7,["G3367"]],[7,8,["G5486"]],[8,10,["G553"]],[10,11,["G3588"]],[11,12,["G602"]],[12,14,["G2257"]],[14,15,["G2962"]],[15,16,["G2424"]],[16,17,["G5547"]]]},{"k":28371,"v":[[0,1,["G3739"]],[1,3,["G2532"]],[3,4,["G950"]],[4,5,["G5209"]],[5,6,["G2193"]],[6,8,["G5056"]],[8,13,["G410"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G2250"]],[16,18,["G2257"]],[18,19,["G2962"]],[19,20,["G2424"]],[20,21,["G5547"]]]},{"k":28372,"v":[[0,1,["G2316"]],[1,3,["G4103"]],[3,4,["G1223"]],[4,5,["G3739"]],[5,8,["G2564"]],[8,9,["G1519"]],[9,11,["G2842"]],[11,13,["G848"]],[13,14,["G5207"]],[14,15,["G2424"]],[15,16,["G5547"]],[16,17,["G2257"]],[17,18,["G2962"]]]},{"k":28373,"v":[[0,1,["G1161"]],[1,3,["G3870"]],[3,4,["G5209"]],[4,5,["G80"]],[5,6,["G1223"]],[6,7,["G3588"]],[7,8,["G3686"]],[8,10,["G2257"]],[10,11,["G2962"]],[11,12,["G2424"]],[12,13,["G5547"]],[13,14,["G2443"]],[14,16,["G3956"]],[16,17,["G3004"]],[17,18,["G3588"]],[18,20,["G846"]],[20,21,["G2532"]],[21,24,["G5600"]],[24,25,["G3361"]],[25,26,["G4978"]],[26,27,["G1722"]],[27,28,["G5213"]],[28,29,["G1161"]],[29,32,["G5600"]],[32,35,["G2675"]],[35,36,["G1722"]],[36,37,["G3588"]],[37,38,["G846"]],[38,39,["G3563"]],[39,40,["G2532"]],[40,41,["G1722"]],[41,42,["G3588"]],[42,43,["G846"]],[43,44,["G1106"]]]},{"k":28374,"v":[[0,1,["G1063"]],[1,5,["G1213"]],[5,7,["G3427"]],[7,8,["G4012"]],[8,9,["G5216"]],[9,10,["G3450"]],[10,11,["G80"]],[11,12,["G5259"]],[12,13,["G3588"]],[13,20,["G5514"]],[20,21,["G3754"]],[21,23,["G1526"]],[23,24,["G2054"]],[24,25,["G1722"]],[25,26,["G5213"]]]},{"k":28375,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,4,["G3004"]],[4,5,["G3754"]],[5,7,["G1538"]],[7,9,["G5216"]],[9,10,["G3004"]],[10,11,["G1473","(G3303)"]],[11,12,["G1510"]],[12,14,["G3972"]],[14,15,["G1161"]],[15,16,["G1473"]],[16,18,["G625"]],[18,19,["G1161"]],[19,20,["G1473"]],[20,22,["G2786"]],[22,23,["G1161"]],[23,24,["G1473"]],[24,26,["G5547"]]]},{"k":28376,"v":[[0,2,["G5547"]],[2,3,["G3307"]],[3,4,["(G3361)"]],[4,5,["G3972"]],[5,6,["G4717"]],[6,7,["G5228"]],[7,8,["G5216"]],[8,9,["G2228"]],[9,12,["G907"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G3686"]],[15,17,["G3972"]]]},{"k":28377,"v":[[0,2,["G2168"]],[2,3,["G2316"]],[3,4,["G3754"]],[4,6,["G907"]],[6,7,["G3762"]],[7,9,["G5216"]],[9,10,["G1508"]],[10,11,["G2921"]],[11,12,["G2532"]],[12,13,["G1050"]]]},{"k":28378,"v":[[0,1,["G3363"]],[1,2,["G5100"]],[2,4,["G2036"]],[4,5,["G3754"]],[5,8,["G907"]],[8,9,["G1519"]],[9,11,["G1699"]],[11,12,["G3686"]]]},{"k":28379,"v":[[0,1,["G1161"]],[1,3,["G907"]],[3,4,["G2532"]],[4,5,["G3588"]],[5,6,["G3624"]],[6,8,["G4734"]],[8,9,["G3063"]],[9,11,["G1492"]],[11,12,["G3756"]],[12,16,["G1536","G907"]],[16,17,["G243"]]]},{"k":28380,"v":[[0,1,["G1063"]],[1,2,["G5547"]],[2,3,["G649"]],[3,4,["G3165"]],[4,5,["G3756"]],[5,7,["G907"]],[7,8,["G235"]],[8,12,["G2097"]],[12,13,["G3756"]],[13,14,["G1722"]],[14,15,["G4678"]],[15,17,["G3056"]],[17,18,["G3363"]],[18,19,["G3588"]],[19,20,["G4716"]],[20,22,["G5547"]],[22,28,["G2758"]]]},{"k":28381,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,4,["(G3588)"]],[4,5,["G3588"]],[5,6,["G4716"]],[6,7,["G2076"]],[7,11,["G622","(G3303)"]],[11,12,["G3472"]],[12,13,["G1161"]],[13,15,["G2254"]],[15,16,["G3588"]],[16,18,["G4982"]],[18,20,["G2076"]],[20,22,["G1411"]],[22,24,["G2316"]]]},{"k":28382,"v":[[0,1,["G1063"]],[1,4,["G1125"]],[4,7,["G622"]],[7,8,["G3588"]],[8,9,["G4678"]],[9,11,["G3588"]],[11,12,["G4680"]],[12,13,["G2532"]],[13,17,["G114"]],[17,18,["G3588"]],[18,19,["G4907"]],[19,21,["G3588"]],[21,22,["G4908"]]]},{"k":28383,"v":[[0,1,["G4226"]],[1,4,["G4680"]],[4,5,["G4226"]],[5,8,["G1122"]],[8,9,["G4226"]],[9,12,["G4804"]],[12,14,["G5127"]],[14,15,["G165"]],[15,17,["G3780"]],[17,18,["G2316"]],[18,20,["G3471"]],[20,21,["G3588"]],[21,22,["G4678"]],[22,24,["G5127"]],[24,25,["G2889"]]]},{"k":28384,"v":[[0,1,["G1063"]],[1,3,["G1894"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G4678"]],[6,8,["G2316"]],[8,9,["G3588"]],[9,10,["G2889"]],[10,11,["G1223"]],[11,12,["G4678"]],[12,13,["G1097"]],[13,14,["G3756"]],[14,15,["G2316"]],[15,17,["G2106"]],[17,18,["G2316"]],[18,19,["G1223"]],[19,20,["G3588"]],[20,21,["G3472"]],[21,23,["G2782"]],[23,25,["G4982"]],[25,28,["G4100"]]]},{"k":28385,"v":[[0,1,["G1894"]],[1,2,["(G2532)"]],[2,3,["G2453"]],[3,4,["G154"]],[4,6,["G4592"]],[6,7,["G2532"]],[7,9,["G1672"]],[9,11,["G2212"]],[11,12,["G4678"]]]},{"k":28386,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,3,["G2784"]],[3,4,["G5547"]],[4,5,["G4717"]],[5,8,["G2453"]],[8,9,["(G3303)"]],[9,10,["G4625"]],[10,11,["G1161"]],[11,14,["G1672"]],[14,15,["G3472"]]]},{"k":28387,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,6,["G2822"]],[6,7,["G5037"]],[7,8,["G2453"]],[8,9,["G2532"]],[9,10,["G1672"]],[10,11,["G5547"]],[11,13,["G1411"]],[13,15,["G2316"]],[15,16,["G2532"]],[16,18,["G4678"]],[18,20,["G2316"]]]},{"k":28388,"v":[[0,1,["G3754"]],[1,2,["G3588"]],[2,3,["G3474"]],[3,5,["G2316"]],[5,6,["G2076"]],[6,7,["G4680"]],[7,9,["G444"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G772"]],[12,14,["G2316"]],[14,15,["G2076"]],[15,16,["G2478"]],[16,18,["G444"]]]},{"k":28389,"v":[[0,1,["G1063"]],[1,3,["G991"]],[3,4,["G5216"]],[4,5,["G2821"]],[5,6,["G80"]],[6,8,["G3754"]],[8,9,["G3756"]],[9,10,["G4183"]],[10,12,["G4680"]],[12,13,["G2596"]],[13,15,["G4561"]],[15,16,["G3756"]],[16,17,["G4183"]],[17,18,["G1415"]],[18,19,["G3756"]],[19,20,["G4183"]],[20,21,["G2104"]],[21,23,[]]]},{"k":28390,"v":[[0,1,["G235"]],[1,2,["G2316"]],[2,4,["G1586"]],[4,5,["G3588"]],[5,7,["G3474"]],[7,9,["G3588"]],[9,10,["G2889"]],[10,11,["G2443"]],[11,12,["G2617"]],[12,13,["G3588"]],[13,14,["G4680"]],[14,15,["G2532"]],[15,16,["G2316"]],[16,18,["G1586"]],[18,19,["G3588"]],[19,21,["G772"]],[21,23,["G3588"]],[23,24,["G2889"]],[24,25,["G2443"]],[25,26,["G2617"]],[26,31,["G2478"]]]},{"k":28391,"v":[[0,1,["G2532"]],[1,3,["G36"]],[3,5,["G3588"]],[5,6,["G2889"]],[6,7,["G2532"]],[7,11,["G1848"]],[11,13,["G2316"]],[13,14,["G1586"]],[14,16,["G2532"]],[16,17,["G3588"]],[17,19,["G5607"]],[19,20,["G3361"]],[20,21,["G2443"]],[21,24,["G2673"]],[24,27,["G5607"]]]},{"k":28392,"v":[[0,1,["G3704"]],[1,2,["G3956","G3361"]],[2,3,["G4561"]],[3,5,["G2744"]],[5,8,["G1799","G846"]]]},{"k":28393,"v":[[0,1,["G1161"]],[1,2,["G1537"]],[2,3,["G846"]],[3,4,["G2075"]],[4,5,["G5210"]],[5,6,["G1722"]],[6,7,["G5547"]],[7,8,["G2424"]],[8,9,["G3739"]],[9,10,["G575"]],[10,11,["G2316"]],[11,13,["G1096"]],[13,15,["G2254"]],[15,16,["G4678"]],[16,17,["G5037"]],[17,18,["G1343"]],[18,19,["G2532"]],[19,20,["G38"]],[20,21,["G2532"]],[21,22,["G629"]]]},{"k":28394,"v":[[0,1,["G2443"]],[1,3,["G2531"]],[3,6,["G1125"]],[6,7,["G3588"]],[7,9,["G2744"]],[9,12,["G2744"]],[12,13,["G1722"]],[13,15,["G2962"]]]},{"k":28395,"v":[[0,2,["G2504"]],[2,3,["G80"]],[3,6,["G2064"]],[6,7,["G4314"]],[7,8,["G5209"]],[8,9,["G2064"]],[9,10,["G3756"]],[10,11,["G2596"]],[11,12,["G5247"]],[12,14,["G3056"]],[14,15,["G2228"]],[15,17,["G4678"]],[17,18,["G2605"]],[18,20,["G5213"]],[20,21,["G3588"]],[21,22,["G3142"]],[22,24,["G2316"]]]},{"k":28396,"v":[[0,1,["G1063"]],[1,3,["G2919"]],[3,4,["G3756"]],[4,6,["G1492"]],[6,8,["G5100"]],[8,9,["G1722"]],[9,10,["G5213"]],[10,11,["G1508"]],[11,12,["G2424"]],[12,13,["G5547"]],[13,14,["G2532"]],[14,15,["G5126"]],[15,16,["G4717"]]]},{"k":28397,"v":[[0,1,["G2532"]],[1,2,["G1473"]],[2,3,["G1096"]],[3,4,["G4314"]],[4,5,["G5209"]],[5,6,["G1722"]],[6,7,["G769"]],[7,8,["G2532"]],[8,9,["G1722"]],[9,10,["G5401"]],[10,11,["G2532"]],[11,12,["G1722"]],[12,13,["G4183"]],[13,14,["G5156"]]]},{"k":28398,"v":[[0,1,["G2532"]],[1,2,["G3450"]],[2,3,["G3056"]],[3,4,["G2532"]],[4,5,["G3450"]],[5,6,["G2782"]],[6,8,["G3756"]],[8,9,["G1722"]],[9,10,["G3981"]],[10,11,["G3056"]],[11,13,["G442"]],[13,14,["G4678"]],[14,15,["G235"]],[15,16,["G1722"]],[16,17,["G585"]],[17,20,["G4151"]],[20,21,["G2532"]],[21,23,["G1411"]]]},{"k":28399,"v":[[0,1,["G2443"]],[1,2,["G5216"]],[2,3,["G4102"]],[3,5,["G3361"]],[5,6,["G5600"]],[6,7,["G1722"]],[7,9,["G4678"]],[9,11,["G444"]],[11,12,["G235"]],[12,13,["G1722"]],[13,15,["G1411"]],[15,17,["G2316"]]]},{"k":28400,"v":[[0,1,["G1161"]],[1,3,["G2980"]],[3,4,["G4678"]],[4,5,["G1722"]],[5,9,["G5046"]],[9,10,["G1161"]],[10,11,["G3756"]],[11,13,["G4678"]],[13,15,["G5127"]],[15,16,["G165"]],[16,17,["G3761"]],[17,19,["G3588"]],[19,20,["G758"]],[20,22,["G5127"]],[22,23,["G165"]],[23,27,["G2673"]]]},{"k":28401,"v":[[0,1,["G235"]],[1,3,["G2980"]],[3,5,["G4678"]],[5,7,["G2316"]],[7,8,["G1722"]],[8,10,["G3466"]],[10,12,["G3588"]],[12,13,["G613"]],[13,15,["G3739"]],[15,16,["G2316"]],[16,17,["G4309"]],[17,18,["G4253"]],[18,19,["G3588"]],[19,20,["G165"]],[20,21,["G1519"]],[21,22,["G2257"]],[22,23,["G1391"]]]},{"k":28402,"v":[[0,1,["G3739"]],[1,2,["G3762"]],[2,4,["G3588"]],[4,5,["G758"]],[5,7,["G5127"]],[7,8,["G165"]],[8,9,["G1097"]],[9,10,["G1063"]],[10,12,["(G1487)"]],[12,13,["G1097"]],[13,17,["G3756"]],[17,18,["(G302)"]],[18,19,["G4717"]],[19,20,["G3588"]],[20,21,["G2962"]],[21,23,["G1391"]]]},{"k":28403,"v":[[0,1,["G235"]],[1,2,["G2531"]],[2,5,["G1125","(G3739)"]],[5,6,["G3788"]],[6,8,["G3756"]],[8,9,["G1492"]],[9,10,["G3756"]],[10,11,["G3775"]],[11,12,["G191"]],[12,13,["G2532","G3756"]],[13,15,["G305"]],[15,16,["G1909"]],[16,18,["G2588"]],[18,20,["G444"]],[20,23,["G3739"]],[23,24,["G2316"]],[24,26,["G2090"]],[26,30,["G25"]],[30,31,["G846"]]]},{"k":28404,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,4,["G601"]],[4,7,["G2254"]],[7,8,["G1223"]],[8,9,["G848"]],[9,10,["G4151"]],[10,11,["G1063"]],[11,12,["G3588"]],[12,13,["G4151"]],[13,14,["G2045"]],[14,16,["G3956"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,20,["G899"]],[20,22,["G2316"]]]},{"k":28405,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,3,["G444"]],[3,4,["G1492"]],[4,6,["G3588"]],[6,9,["G444"]],[9,10,["G1508"]],[10,11,["G3588"]],[11,12,["G4151"]],[12,14,["G444"]],[14,15,["G3588"]],[15,17,["G1722"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G3779"]],[20,22,["G3588"]],[22,24,["G2316"]],[24,25,["G1492"]],[25,27,["G3762"]],[27,28,["G1508"]],[28,29,["G3588"]],[29,30,["G4151"]],[30,32,["G2316"]]]},{"k":28406,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,4,["G2983"]],[4,5,["G3756"]],[5,6,["G3588"]],[6,7,["G4151"]],[7,9,["G3588"]],[9,10,["G2889"]],[10,11,["G235"]],[11,12,["G3588"]],[12,13,["G4151"]],[13,14,["G3588"]],[14,16,["G1537"]],[16,17,["G2316"]],[17,18,["G2443"]],[18,21,["G1492"]],[21,23,["G3588"]],[23,27,["G5483"]],[27,29,["G2254"]],[29,30,["G5259"]],[30,31,["G2316"]]]},{"k":28407,"v":[[0,2,["G3739"]],[2,3,["G2532"]],[3,5,["G2980"]],[5,6,["G3756"]],[6,7,["G1722"]],[7,9,["G3056"]],[9,11,["G442"]],[11,12,["G4678"]],[12,13,["G1318"]],[13,14,["G235"]],[14,15,["G1722"]],[15,17,["G40"]],[17,18,["G4151"]],[18,19,["G1318"]],[19,20,["G4793"]],[20,22,["G4152"]],[22,24,["G4152"]]]},{"k":28408,"v":[[0,1,["G1161"]],[1,3,["G5591"]],[3,4,["G444"]],[4,5,["G1209"]],[5,6,["G3756"]],[6,8,["G3588"]],[8,10,["G3588"]],[10,11,["G4151"]],[11,13,["G2316"]],[13,14,["G1063"]],[14,16,["G2076"]],[16,17,["G3472"]],[17,19,["G846"]],[19,20,["G2532","G3756"]],[20,21,["G1410"]],[21,23,["G1097"]],[23,25,["G3754"]],[25,28,["G4153"]],[28,29,["G350"]]]},{"k":28409,"v":[[0,1,["G1161"]],[1,5,["G4152","(G3303)"]],[5,6,["G350"]],[6,8,["G3956"]],[8,9,["G1161"]],[9,10,["G846"]],[10,13,["G350"]],[13,14,["G5259"]],[14,16,["G3762"]]]},{"k":28410,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,4,["G1097"]],[4,6,["G3563"]],[6,9,["G2962"]],[9,10,["G3739"]],[10,13,["G4822"]],[13,14,["G846"]],[14,15,["G1161"]],[15,16,["G2249"]],[16,17,["G2192"]],[17,19,["G3563"]],[19,21,["G5547"]]]},{"k":28411,"v":[[0,1,["G2532"]],[1,2,["G1473"]],[2,3,["G80"]],[3,4,["G1410"]],[4,5,["G3756"]],[5,6,["G2980"]],[6,8,["G5213"]],[8,9,["G5613"]],[9,11,["G4152"]],[11,12,["G235"]],[12,13,["G5613"]],[13,15,["G4559"]],[15,17,["G5613"]],[17,19,["G3516"]],[19,20,["G1722"]],[20,21,["G5547"]]]},{"k":28412,"v":[[0,3,["G4222"]],[3,4,["G5209"]],[4,6,["G1051"]],[6,7,["G2532"]],[7,8,["G3756"]],[8,10,["G1033"]],[10,11,["G1063"]],[11,16,["G3768","G1410"]],[16,20,["G3777"]],[20,21,["G2089"]],[21,22,["G3568"]],[22,25,["G1410"]]]},{"k":28413,"v":[[0,1,["G1063"]],[1,3,["G2075"]],[3,4,["G2089"]],[4,5,["G4559"]],[5,6,["G1063"]],[6,7,["G3699"]],[7,10,["G1722"]],[10,11,["G5213"]],[11,12,["G2205"]],[12,13,["G2532"]],[13,14,["G2054"]],[14,15,["G2532"]],[15,16,["G1370"]],[16,17,["G2075"]],[17,19,["G3780"]],[19,20,["G4559"]],[20,21,["G2532"]],[21,22,["G4043"]],[22,23,["G2596"]],[23,24,["G444"]]]},{"k":28414,"v":[[0,1,["G1063"]],[1,2,["G3752"]],[2,3,["G5100"]],[3,4,["G3004"]],[4,5,["G1473","(G3303)"]],[5,6,["G1510"]],[6,8,["G3972"]],[8,9,["G1161"]],[9,10,["G2087"]],[10,11,["G1473"]],[11,14,["G625"]],[14,15,["G2075"]],[15,17,["G3780"]],[17,18,["G4559"]]]},{"k":28415,"v":[[0,1,["G5101"]],[1,2,["G3767"]],[2,3,["G2076"]],[3,4,["G3972"]],[4,5,["G1161"]],[5,6,["G5101"]],[6,8,["G625"]],[8,9,["G235","(G2228)"]],[9,10,["G1249"]],[10,11,["G1223"]],[11,12,["G3739"]],[12,14,["G4100"]],[14,15,["G2532"]],[15,16,["G5613"]],[16,17,["G3588"]],[17,18,["G2962"]],[18,19,["G1325"]],[19,22,["G1538"]]]},{"k":28416,"v":[[0,1,["G1473"]],[1,3,["G5452"]],[3,4,["G625"]],[4,5,["G4222"]],[5,6,["G235"]],[6,7,["G2316"]],[7,10,["G837"]]]},{"k":28417,"v":[[0,2,["G5620"]],[2,3,["G3777"]],[3,4,["G2076"]],[4,7,["G5452"]],[7,9,["G5100"]],[9,10,["G3777"]],[10,13,["G4222"]],[13,14,["G235"]],[14,15,["G2316"]],[15,19,["G837"]]]},{"k":28418,"v":[[0,1,["G1161"]],[1,4,["G5452"]],[4,5,["G2532"]],[5,8,["G4222"]],[8,9,["G1526"]],[9,10,["G1520"]],[10,11,["G1161"]],[11,13,["G1538"]],[13,15,["G2983"]],[15,17,["G2398"]],[17,18,["G3408"]],[18,19,["G2596"]],[19,22,["G2398"]],[22,23,["G2873"]]]},{"k":28419,"v":[[0,1,["G1063"]],[1,3,["G2070"]],[3,6,["G4904"]],[6,7,["G2316"]],[7,9,["G2075"]],[9,10,["G2316"]],[10,11,["G1091"]],[11,14,["G2316"]],[14,15,["G3619"]]]},{"k":28420,"v":[[0,1,["G2596"]],[1,3,["G3588"]],[3,4,["G5485"]],[4,6,["G2316"]],[6,9,["G1325"]],[9,11,["G3427"]],[11,12,["G5613"]],[12,14,["G4680"]],[14,15,["G753"]],[15,18,["G5087"]],[18,20,["G2310"]],[20,21,["G1161"]],[21,22,["G243"]],[22,24,["G2026"]],[24,25,["G1161"]],[25,28,["G1538"]],[28,30,["G991"]],[30,31,["G4459"]],[31,34,["G2026"]]]},{"k":28421,"v":[[0,1,["G1063"]],[1,2,["G243"]],[2,3,["G2310"]],[3,4,["G1410"]],[4,6,["G3762"]],[6,7,["G5087"]],[7,8,["G3844"]],[8,11,["G2749"]],[11,12,["G3739"]],[12,13,["G2076"]],[13,14,["G2424"]],[14,15,["G5547"]]]},{"k":28422,"v":[[0,1,["G1161"]],[1,4,["G1536"]],[4,5,["G2026"]],[5,6,["G1909"]],[6,7,["G5126"]],[7,8,["G2310"]],[8,9,["G5557"]],[9,10,["G696"]],[10,11,["G5093"]],[11,12,["G3037"]],[12,13,["G3586"]],[13,14,["G5528"]],[14,15,["G2562"]]]},{"k":28423,"v":[[0,2,["G1538"]],[2,3,["G2041"]],[3,6,["G1096"]],[6,7,["G5318"]],[7,8,["G1063"]],[8,9,["G3588"]],[9,10,["G2250"]],[10,12,["G1213"]],[12,14,["G3754"]],[14,18,["G601"]],[18,19,["G1722"]],[19,20,["G4442"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G4442"]],[23,25,["G1381"]],[25,27,["G1538"]],[27,28,["G2041"]],[28,31,["G3697"]],[31,33,["G2076"]]]},{"k":28424,"v":[[0,3,["G1536"]],[3,4,["G2041"]],[4,5,["G3306"]],[5,6,["G3739"]],[6,10,["G2026"]],[10,13,["G2983"]],[13,15,["G3408"]]]},{"k":28425,"v":[[0,3,["G1536"]],[3,4,["G2041"]],[4,7,["G2618"]],[7,11,["G2210"]],[11,12,["G1161"]],[12,13,["G848"]],[13,17,["G4982"]],[17,18,["G1161"]],[18,19,["G3779"]],[19,20,["G5613"]],[20,21,["G1223"]],[21,22,["G4442"]]]},{"k":28426,"v":[[0,1,["G1492"]],[1,3,["G3756"]],[3,4,["G3754"]],[4,6,["G2075"]],[6,8,["G3485"]],[8,10,["G2316"]],[10,11,["G2532"]],[11,13,["G3588"]],[13,14,["G4151"]],[14,16,["G2316"]],[16,17,["G3611"]],[17,18,["G1722"]],[18,19,["G5213"]]]},{"k":28427,"v":[[0,3,["G1536"]],[3,4,["G5351"]],[4,5,["G3588"]],[5,6,["G3485"]],[6,8,["G2316"]],[8,9,["G5126"]],[9,11,["G2316"]],[11,12,["G5351"]],[12,13,["G1063"]],[13,14,["G3588"]],[14,15,["G3485"]],[15,17,["G2316"]],[17,18,["G2076"]],[18,19,["G40"]],[19,20,["G3748"]],[20,22,["G5210"]],[22,23,["G2075"]]]},{"k":28428,"v":[[0,3,["G3367"]],[3,4,["G1818"]],[4,5,["G1438"]],[5,8,["G1536"]],[8,9,["G1722"]],[9,10,["G5213"]],[10,11,["G1380"]],[11,13,["G1511"]],[13,14,["G4680"]],[14,15,["G1722"]],[15,16,["G5129"]],[16,17,["G165"]],[17,20,["G1096"]],[20,22,["G3474"]],[22,23,["G2443"]],[23,26,["G1096"]],[26,27,["G4680"]]]},{"k":28429,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G4678"]],[3,5,["G5127"]],[5,6,["G2889"]],[6,7,["G2076"]],[7,8,["G3472"]],[8,9,["G3844"]],[9,10,["G2316"]],[10,11,["G1063"]],[11,14,["G1125"]],[14,16,["G1405"]],[16,17,["G3588"]],[17,18,["G4680"]],[18,19,["G1722"]],[19,21,["G848"]],[21,22,["G3834"]]]},{"k":28430,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,4,["G2962"]],[4,5,["G1097"]],[5,6,["G3588"]],[6,7,["G1261"]],[7,9,["G3588"]],[9,10,["G4680"]],[10,11,["G3754"]],[11,13,["G1526"]],[13,14,["G3152"]]]},{"k":28431,"v":[[0,1,["G5620"]],[1,4,["G3367"]],[4,5,["G2744"]],[5,6,["G1722"]],[6,7,["G444"]],[7,8,["G1063"]],[8,10,["G3956"]],[10,11,["G2076"]],[11,12,["G5216"]]]},{"k":28432,"v":[[0,1,["G1535"]],[1,2,["G3972"]],[2,3,["G1535"]],[3,4,["G625"]],[4,5,["G1535"]],[5,6,["G2786"]],[6,7,["G1535"]],[7,9,["G2889"]],[9,10,["G1535"]],[10,11,["G2222"]],[11,12,["G1535"]],[12,13,["G2288"]],[13,14,["G1535"]],[14,16,["G1764"]],[16,17,["G1535"]],[17,20,["G3195"]],[20,21,["G3956"]],[21,22,["G2076"]],[22,23,["G5216"]]]},{"k":28433,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,4,["G5547"]],[4,5,["G1161"]],[5,6,["G5547"]],[6,8,["G2316"]]]},{"k":28434,"v":[[0,3,["G444"]],[3,4,["G3779"]],[4,5,["G3049"]],[5,7,["G2248"]],[7,8,["G5613"]],[8,11,["G5257"]],[11,13,["G5547"]],[13,14,["G2532"]],[14,15,["G3623"]],[15,18,["G3466"]],[18,20,["G2316"]]]},{"k":28435,"v":[[0,0,["(G1161)"]],[0,1,["G3063","G3739"]],[1,4,["G2212"]],[4,5,["G1722"]],[5,6,["G3623"]],[6,7,["G2443"]],[7,9,["G5100"]],[9,11,["G2147"]],[11,12,["G4103"]]]},{"k":28436,"v":[[0,1,["G1161"]],[1,3,["G1698"]],[3,5,["G2076"]],[5,6,["(G1519)"]],[6,9,["G1646"]],[9,10,["G2443"]],[10,14,["G350"]],[14,15,["G5259"]],[15,16,["G5216"]],[16,17,["G2228"]],[17,18,["G5259"]],[18,19,["G442"]],[19,20,["G2250"]],[20,21,["G235"]],[21,23,["G350"]],[23,24,["G3761"]],[24,27,["G1683"]]]},{"k":28437,"v":[[0,1,["G1063"]],[1,3,["G4894"]],[3,4,["G3762"]],[4,6,["G1683"]],[6,7,["G235"]],[7,10,["G3756"]],[10,11,["G1722","G5129"]],[11,12,["G1344"]],[12,13,["G1161"]],[13,16,["G350"]],[16,17,["G3165"]],[17,18,["G2076"]],[18,20,["G2962"]]]},{"k":28438,"v":[[0,1,["G5620"]],[1,2,["G2919"]],[2,3,["G5100","G3361"]],[3,4,["G4253"]],[4,6,["G2540"]],[6,7,["G2193","G302"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,10,["G2064"]],[10,11,["G3739"]],[11,12,["G2532"]],[12,16,["G5461"]],[16,17,["G3588"]],[17,19,["G2927"]],[19,21,["G4655"]],[21,22,["G2532"]],[22,25,["G5319"]],[25,26,["G3588"]],[26,27,["G1012"]],[27,29,["G3588"]],[29,30,["G2588"]],[30,31,["G2532"]],[31,32,["G5119"]],[32,35,["G1538"]],[35,36,["G1096"]],[36,37,["G1868"]],[37,38,["G575"]],[38,39,["G2316"]]]},{"k":28439,"v":[[0,1,["G1161"]],[1,3,["G5023"]],[3,4,["G80"]],[4,10,["G3345"]],[10,11,["G1519"]],[11,12,["G1683"]],[12,13,["G2532"]],[13,15,["G625"]],[15,18,["G1223","G5209"]],[18,19,["G2443"]],[19,22,["G3129"]],[22,23,["G1722"]],[23,24,["G2254"]],[24,25,["G3361"]],[25,27,["G5426"]],[27,30,["G5228"]],[30,32,["G3739"]],[32,34,["G1125"]],[34,35,["G2443"]],[35,36,["G3361"]],[36,37,["G1520"]],[37,42,["G5448"]],[42,43,["G5228"]],[43,44,["G1520"]],[44,45,["G2596"]],[45,46,["G2087"]]]},{"k":28440,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,6,["G1252","G4571"]],[6,9,["G1161"]],[9,10,["G5101"]],[10,11,["G2192"]],[11,13,["G3739"]],[13,16,["G3756"]],[16,17,["G2983"]],[17,18,["G1161"]],[18,19,["G1487"]],[19,21,["(G2532)"]],[21,22,["G2983"]],[22,24,["G5101"]],[24,27,["G2744"]],[27,28,["G5613"]],[28,29,["G1487"]],[29,32,["G3361"]],[32,33,["G2983"]],[33,34,[]]]},{"k":28441,"v":[[0,1,["G2235"]],[1,3,["G2075"]],[3,4,["G2880"]],[4,5,["G2235"]],[5,8,["G4147"]],[8,13,["G936"]],[13,14,["G5565"]],[14,15,["G2257"]],[15,16,["G2532"]],[16,20,["G3785","G1065"]],[20,23,["G936"]],[23,24,["G2443"]],[24,25,["G2249"]],[25,26,["G2532"]],[26,29,["G4821"]],[29,30,["G5213"]]]},{"k":28442,"v":[[0,1,["G1063"]],[1,3,["G1380"]],[3,4,["G3754"]],[4,5,["G2316"]],[5,8,["G584"]],[8,9,["G2248"]],[9,10,["G3588"]],[10,11,["G652"]],[11,12,["G2078"]],[12,15,["G5613"]],[15,18,["G1935"]],[18,19,["G3754"]],[19,22,["G1096"]],[22,24,["G2302"]],[24,26,["G3588"]],[26,27,["G2889"]],[27,28,["G2532"]],[28,30,["G32"]],[30,31,["G2532"]],[31,33,["G444"]]]},{"k":28443,"v":[[0,1,["G2249"]],[1,3,["G3474"]],[3,6,["G1223","G5547"]],[6,7,["G1161"]],[7,8,["G5210"]],[8,10,["G5429"]],[10,11,["G1722"]],[11,12,["G5547"]],[12,13,["G2249"]],[13,15,["G772"]],[15,16,["G1161"]],[16,17,["G5210"]],[17,19,["G2478"]],[19,20,["G5210"]],[20,22,["G1741"]],[22,23,["G1161"]],[23,24,["G2249"]],[24,26,["G820"]]]},{"k":28444,"v":[[0,2,["G891"]],[2,4,["G737"]],[4,5,["G5610"]],[5,7,["G2532"]],[7,8,["G3983"]],[8,9,["G2532"]],[9,10,["G1372"]],[10,11,["G2532"]],[11,13,["G1130"]],[13,14,["G2532"]],[14,16,["G2852"]],[16,17,["G2532"]],[17,21,["G790"]]]},{"k":28445,"v":[[0,1,["G2532"]],[1,2,["G2872"]],[2,3,["G2038"]],[3,6,["G2398"]],[6,7,["G5495"]],[7,9,["G3058"]],[9,11,["G2127"]],[11,13,["G1377"]],[13,15,["G430"]],[15,16,[]]]},{"k":28446,"v":[[0,2,["G987"]],[2,4,["G3870"]],[4,7,["G1096"]],[7,8,["G5613"]],[8,10,["G4027"]],[10,12,["G3588"]],[12,13,["G2889"]],[13,17,["G4067"]],[17,20,["G3956"]],[20,21,["G2193"]],[21,23,["G737"]]]},{"k":28447,"v":[[0,2,["G1125"]],[2,3,["G3756"]],[3,5,["G5023"]],[5,7,["G1788"]],[7,8,["G5209"]],[8,9,["G235"]],[9,10,["G5613"]],[10,11,["G3450"]],[11,12,["G27"]],[12,13,["G5043"]],[13,15,["G3560"]],[15,16,[]]]},{"k":28448,"v":[[0,1,["G1063"]],[1,2,["G1437"]],[2,4,["G2192"]],[4,6,["G3463"]],[6,7,["G3807"]],[7,8,["G1722"]],[8,9,["G5547"]],[9,10,["G235"]],[10,13,["G3756"]],[13,14,["G4183"]],[14,15,["G3962"]],[15,16,["G1063"]],[16,17,["G1722"]],[17,18,["G5547"]],[18,19,["G2424"]],[19,20,["G1473"]],[20,22,["G1080"]],[22,23,["G5209"]],[23,24,["G1223"]],[24,25,["G3588"]],[25,26,["G2098"]]]},{"k":28449,"v":[[0,1,["G3767"]],[1,3,["G3870"]],[3,4,["G5209"]],[4,5,["G1096"]],[5,7,["G3402"]],[7,9,["G3450"]]]},{"k":28450,"v":[[0,3,["G1223","G5124"]],[3,6,["G3992"]],[6,8,["G5213"]],[8,9,["G5095"]],[9,10,["G3739"]],[10,11,["G2076"]],[11,12,["G3450"]],[12,13,["G27"]],[13,14,["G5043"]],[14,15,["G2532"]],[15,16,["G4103"]],[16,17,["G1722"]],[17,19,["G2962"]],[19,20,["G3739"]],[20,25,["G363","G5209"]],[25,27,["G3450"]],[27,28,["G3598"]],[28,29,["G3588"]],[29,31,["G1722"]],[31,32,["G5547"]],[32,33,["G2531"]],[33,35,["G1321"]],[35,37,["G3837"]],[37,38,["G1722"]],[38,39,["G3956"]],[39,40,["G1577"]]]},{"k":28451,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,5,["G5448"]],[5,7,["G5613"]],[7,8,["G3450"]],[8,10,["G3361"]],[10,11,["G2064"]],[11,12,["G4314"]],[12,13,["G5209"]]]},{"k":28452,"v":[[0,1,["G1161"]],[1,4,["G2064"]],[4,5,["G4314"]],[5,6,["G5209"]],[6,7,["G5030"]],[7,8,["G1437"]],[8,9,["G3588"]],[9,10,["G2962"]],[10,11,["G2309"]],[11,12,["G2532"]],[12,14,["G1097"]],[14,15,["G3756"]],[15,16,["G3588"]],[16,17,["G3056"]],[17,23,["G5448"]],[23,24,["G235"]],[24,25,["G3588"]],[25,26,["G1411"]]]},{"k":28453,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G932"]],[3,5,["G2316"]],[5,7,["G3756"]],[7,8,["G1722"]],[8,9,["G3056"]],[9,10,["G235"]],[10,11,["G1722"]],[11,12,["G1411"]]]},{"k":28454,"v":[[0,1,["G5101"]],[1,2,["G2309"]],[2,6,["G2064"]],[6,7,["G4314"]],[7,8,["G5209"]],[8,9,["G1722"]],[9,11,["G4464"]],[11,12,["G2228"]],[12,13,["G1722"]],[13,14,["G26"]],[14,15,["G5037"]],[15,18,["G4151"]],[18,20,["G4236"]]]},{"k":28455,"v":[[0,3,["G191"]],[3,4,["G3654"]],[4,8,["G4202"]],[8,9,["G1722"]],[9,10,["G5213"]],[10,11,["G2532"]],[11,12,["G5108"]],[12,13,["G4202"]],[13,14,["G3748"]],[14,19,["G3761"]],[19,20,["G3687"]],[20,21,["G1722"]],[21,22,["G3588"]],[22,23,["G1484"]],[23,24,["G5620"]],[24,25,["G5100"]],[25,27,["G2192"]],[27,29,["G3962"]],[29,30,["G1135"]]]},{"k":28456,"v":[[0,1,["G2532"]],[1,2,["G5210"]],[2,3,["G2075"]],[3,5,["G5448"]],[5,6,["G2532"]],[6,8,["G3780"]],[8,9,["G3123"]],[9,10,["G3996"]],[10,11,["G2443"]],[11,15,["G4160"]],[15,16,["G5124"]],[16,17,["G2041"]],[17,21,["G1808"]],[21,22,["G1537"]],[22,23,["G3319"]],[23,24,["G5216"]]]},{"k":28457,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,3,["G3303"]],[3,4,["G5613"]],[4,5,["G548"]],[5,7,["G4983"]],[7,8,["G1161"]],[8,9,["G3918"]],[9,11,["G4151"]],[11,13,["G2919"]],[13,14,["G2235"]],[14,16,["G5613"]],[16,19,["G3918"]],[19,25,["G2716","G3779"]],[25,27,["G5124"]]]},{"k":28458,"v":[[0,1,["G1722"]],[1,2,["G3588"]],[2,3,["G3686"]],[3,5,["G2257"]],[5,6,["G2962"]],[6,7,["G2424"]],[7,8,["G5547"]],[8,10,["G5216"]],[10,13,["G4863"]],[13,14,["G2532"]],[14,15,["G1699"]],[15,16,["G4151"]],[16,17,["G4862"]],[17,18,["G3588"]],[18,19,["G1411"]],[19,21,["G2257"]],[21,22,["G2962"]],[22,23,["G2424"]],[23,24,["G5547"]]]},{"k":28459,"v":[[0,2,["G3860"]],[2,5,["G5108"]],[5,7,["G4567"]],[7,8,["G1519"]],[8,10,["G3639"]],[10,12,["G3588"]],[12,13,["G4561"]],[13,14,["G2443"]],[14,15,["G3588"]],[15,16,["G4151"]],[16,19,["G4982"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G2250"]],[22,24,["G3588"]],[24,25,["G2962"]],[25,26,["G2424"]]]},{"k":28460,"v":[[0,1,["G5216"]],[1,2,["G2745"]],[2,4,["G3756"]],[4,5,["G2570"]],[5,6,["G1492"]],[6,8,["G3756"]],[8,9,["G3754"]],[9,11,["G3398"]],[11,12,["G2219"]],[12,13,["G2220"]],[13,14,["G3588"]],[14,15,["G3650"]],[15,16,["G5445"]]]},{"k":28461,"v":[[0,2,["G1571"]],[2,3,["G3767"]],[3,4,["G3588"]],[4,5,["G3820"]],[5,6,["G2219"]],[6,7,["G2443"]],[7,10,["G5600"]],[10,12,["G3501"]],[12,13,["G5445"]],[13,14,["G2531"]],[14,16,["G2075"]],[16,17,["G106"]],[17,18,["G1063"]],[18,19,["G2532"]],[19,20,["G5547"]],[20,21,["G2257"]],[21,22,["(G3957)"]],[22,24,["G2380"]],[24,25,["G5228"]],[25,26,["G2257"]]]},{"k":28462,"v":[[0,1,["G5620"]],[1,6,["G1858"]],[6,7,["G3361"]],[7,8,["G1722"]],[8,9,["G3820"]],[9,10,["G2219"]],[10,11,["G3366"]],[11,12,["G1722"]],[12,14,["G2219"]],[14,16,["G2549"]],[16,17,["G2532"]],[17,18,["G4189"]],[18,19,["G235"]],[19,20,["G1722"]],[20,22,["G106"]],[22,25,["G1505"]],[25,26,["G2532"]],[26,27,["G225"]]]},{"k":28463,"v":[[0,2,["G1125"]],[2,4,["G5213"]],[4,5,["G1722"]],[5,7,["G1992"]],[7,8,["G3361"]],[8,11,["G4874"]],[11,12,["G4205"]]]},{"k":28464,"v":[[0,1,["G2532"]],[1,2,["G3756"]],[2,3,["G3843"]],[3,5,["G3588"]],[5,6,["G4205"]],[6,8,["G5127"]],[8,9,["G2889"]],[9,10,["G2228"]],[10,12,["G3588"]],[12,13,["G4123"]],[13,14,["G2228"]],[14,15,["G727"]],[15,16,["G2228"]],[16,18,["G1496"]],[18,19,["G1893"]],[19,20,["G686"]],[20,23,["G3784"]],[23,24,["G1831"]],[24,26,["G1537"]],[26,27,["G3588"]],[27,28,["G2889"]]]},{"k":28465,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,5,["G1125"]],[5,7,["G5213"]],[7,8,["G3361"]],[8,11,["G4874"]],[11,12,["G1437"]],[12,14,["G5100"]],[14,17,["G3687"]],[17,19,["G80"]],[19,22,["G4205"]],[22,23,["G2228"]],[23,24,["G4123"]],[24,25,["G2228"]],[25,27,["G1496"]],[27,28,["G2228"]],[28,30,["G3060"]],[30,31,["G2228"]],[31,33,["G3183"]],[33,34,["G2228"]],[34,36,["G727"]],[36,40,["G5108"]],[40,42,["G3366"]],[42,44,["G4906"]]]},{"k":28466,"v":[[0,1,["G1063"]],[1,6,["G5101","G3427"]],[6,8,["G2919"]],[8,13,["G1854","G2532"]],[13,15,["G3780"]],[15,16,["G5210"]],[16,17,["G2919"]],[17,21,["G2080"]]]},{"k":28467,"v":[[0,1,["G1161"]],[1,5,["G1854"]],[5,6,["G2316"]],[6,7,["G2919"]],[7,8,["G2532"]],[8,10,["G1808"]],[10,11,["G1537"]],[11,13,["G5216","G848"]],[13,16,["G4190"]]]},{"k":28468,"v":[[0,1,["G5111"]],[1,2,["G5100"]],[2,4,["G5216"]],[4,5,["G2192"]],[5,7,["G4229"]],[7,8,["G4314"]],[8,9,["G2087"]],[9,12,["G2919"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G94"]],[15,16,["G2532"]],[16,17,["G3780"]],[17,18,["G1909"]],[18,19,["G3588"]],[19,20,["G40"]]]},{"k":28469,"v":[[0,3,["G3756"]],[3,4,["G1492"]],[4,5,["G3754"]],[5,6,["G3588"]],[6,7,["G40"]],[7,9,["G2919"]],[9,10,["G3588"]],[10,11,["G2889"]],[11,12,["G2532"]],[12,13,["G1487"]],[13,14,["G3588"]],[14,15,["G2889"]],[15,18,["G2919"]],[18,19,["G1722"]],[19,20,["G5213"]],[20,21,["G2075"]],[21,23,["G370"]],[23,28,["G2922","G1646"]]]},{"k":28470,"v":[[0,1,["G1492"]],[1,3,["G3756"]],[3,4,["G3754"]],[4,7,["G2919"]],[7,8,["G32"]],[8,11,["G3386"]],[11,17,["G982"]]]},{"k":28471,"v":[[0,1,["G1437"]],[1,2,["G3767"]],[2,3,["(G3303)"]],[3,4,["G2192"]],[4,5,["G2922"]],[5,11,["G982"]],[11,12,["G2523"]],[12,13,["G5128"]],[13,19,["G1848"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G1577"]]]},{"k":28472,"v":[[0,2,["G3004"]],[2,3,["G4314"]],[3,4,["G5213"]],[4,5,["G1791"]],[5,8,["G3779"]],[8,11,["G2076"]],[11,12,["G3756"]],[12,15,["G4680"]],[15,16,["G1722"]],[16,17,["G5213"]],[17,19,["G3761"]],[19,20,["G1520"]],[20,21,["G3739"]],[21,24,["G1410"]],[24,26,["G1252"]],[26,27,["G303","G3319"]],[27,28,["G848"]],[28,29,["G80"]]]},{"k":28473,"v":[[0,1,["G235"]],[1,2,["G80"]],[2,5,["G2919"]],[5,6,["G3326"]],[6,7,["G80"]],[7,8,["G2532"]],[8,9,["G5124"]],[9,10,["G1909"]],[10,12,["G571"]]]},{"k":28474,"v":[[0,1,["G2235"]],[1,3,["G3767","(G3303)"]],[3,4,["G2076"]],[4,5,["G3654"]],[5,7,["G2275"]],[7,8,["G1722"]],[8,9,["G5213"]],[9,10,["G3754"]],[10,14,["G2192","G2917"]],[14,17,["G3326","G1438"]],[17,18,["G1302"]],[18,21,["G3780"]],[21,22,["G3123"]],[22,24,["G91"]],[24,25,["G1302"]],[25,28,["G3780"]],[28,29,["G3123"]],[29,34,["G650"]]]},{"k":28475,"v":[[0,1,["G235"]],[1,2,["G5210"]],[2,4,["G91"]],[4,5,["G2532"]],[5,6,["G650"]],[6,7,["G2532"]],[7,8,["G5023"]],[8,10,["G80"]]]},{"k":28476,"v":[[0,0,["(G2228)"]],[0,1,["G1492"]],[1,3,["G3756"]],[3,4,["G3754"]],[4,6,["G94"]],[6,8,["G3756"]],[8,9,["G2816"]],[9,11,["G932"]],[11,13,["G2316"]],[13,15,["G3361"]],[15,16,["G4105"]],[16,17,["G3777"]],[17,18,["G4205"]],[18,19,["G3777"]],[19,20,["G1496"]],[20,21,["G3777"]],[21,22,["G3432"]],[22,23,["G3777"]],[23,24,["G3120"]],[24,25,["G3777"]],[25,30,["G733"]]]},{"k":28477,"v":[[0,1,["G3777"]],[1,2,["G2812"]],[2,3,["G3777"]],[3,4,["G4123"]],[4,5,["G3777"]],[5,6,["G3183"]],[6,7,["G3756"]],[7,8,["G3060"]],[8,9,["G3756"]],[9,10,["G727"]],[10,11,["(G3756)"]],[11,12,["G2816"]],[12,14,["G932"]],[14,16,["G2316"]]]},{"k":28478,"v":[[0,1,["G2532"]],[1,2,["G5023"]],[2,3,["G2258"]],[3,4,["G5100"]],[4,7,["G235"]],[7,10,["G628"]],[10,11,["G235"]],[11,14,["G37"]],[14,15,["G235"]],[15,18,["G1344"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G3686"]],[21,23,["G3588"]],[23,24,["G2962"]],[24,25,["G2424"]],[25,26,["G2532"]],[26,27,["G1722"]],[27,28,["G3588"]],[28,29,["G4151"]],[29,31,["G2257"]],[31,32,["G2316"]]]},{"k":28479,"v":[[0,2,["G3956"]],[2,4,["G1832"]],[4,6,["G3427"]],[6,7,["G235"]],[7,9,["G3956"]],[9,12,["G4851","G3756"]],[12,14,["G3956"]],[14,16,["G1832"]],[16,18,["G3427"]],[18,19,["G235"]],[19,20,["G1473"]],[20,22,["G3756"]],[22,27,["G1850"]],[27,28,["G5259"]],[28,29,["G5100"]]]},{"k":28480,"v":[[0,1,["G1033"]],[1,3,["G3588"]],[3,4,["G2836"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G2836"]],[7,9,["G1033"]],[9,10,["G1161"]],[10,11,["G2316"]],[11,13,["G2673"]],[13,14,["G2532"]],[14,15,["G5026"]],[15,16,["G2532"]],[16,17,["G5023"]],[17,18,["G1161"]],[18,19,["G3588"]],[19,20,["G4983"]],[20,22,["G3756"]],[22,24,["G4202"]],[24,25,["G235"]],[25,27,["G3588"]],[27,28,["G2962"]],[28,29,["G2532"]],[29,30,["G3588"]],[30,31,["G2962"]],[31,33,["G3588"]],[33,34,["G4983"]]]},{"k":28481,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,4,["G2532"]],[4,6,["G1453"]],[6,7,["G3588"]],[7,8,["G2962"]],[8,9,["G2532"]],[9,13,["G1825"]],[13,14,["G2248"]],[14,15,["G1223"]],[15,17,["G848"]],[17,18,["G1411"]]]},{"k":28482,"v":[[0,1,["G1492"]],[1,3,["G3756"]],[3,4,["G3754"]],[4,5,["G5216"]],[5,6,["G4983"]],[6,7,["G2076"]],[7,9,["G3196"]],[9,11,["G5547"]],[11,14,["G3767"]],[14,15,["G142"]],[15,16,["G3588"]],[16,17,["G3196"]],[17,19,["G5547"]],[19,21,["G4160"]],[21,24,["G3196"]],[24,27,["G4204"]],[27,29,["G1096","G3361"]]]},{"k":28483,"v":[[0,1,["G2228"]],[1,2,["G1492"]],[2,4,["G3756"]],[4,5,["G3754"]],[5,9,["G2853"]],[9,12,["G4204"]],[12,13,["G2076"]],[13,14,["G1520"]],[14,15,["G4983"]],[15,16,["G1063"]],[16,17,["G1417"]],[17,18,["G5346"]],[18,21,["G2071"]],[21,22,["(G3391)"]],[22,23,["G4561"]]]},{"k":28484,"v":[[0,1,["G1161"]],[1,5,["G2853"]],[5,7,["G3588"]],[7,8,["G2962"]],[8,9,["G2076"]],[9,10,["G1520"]],[10,11,["G4151"]]]},{"k":28485,"v":[[0,1,["G5343"]],[1,2,["G4202"]],[2,3,["G3956"]],[3,4,["G265"]],[4,5,["G3739"]],[5,7,["G444"]],[7,8,["G4160","G1437"]],[8,9,["G2076"]],[9,10,["G1622"]],[10,11,["G3588"]],[11,12,["G4983"]],[12,13,["G1161"]],[13,17,["G4203"]],[17,18,["G264"]],[18,19,["G1519"]],[19,21,["G2398"]],[21,22,["G4983"]]]},{"k":28486,"v":[[0,1,["G2228"]],[1,2,["G1492"]],[2,4,["G3756"]],[4,5,["G3754"]],[5,6,["G5216"]],[6,7,["G4983"]],[7,8,["G2076"]],[8,10,["G3485"]],[10,12,["G3588"]],[12,13,["G40"]],[13,14,["G4151"]],[14,17,["G1722"]],[17,18,["G5213"]],[18,19,["G3739"]],[19,21,["G2192"]],[21,22,["G575"]],[22,23,["G2316"]],[23,24,["G2532"]],[24,26,["G2075"]],[26,27,["G3756"]],[27,29,["G1438"]]]},{"k":28487,"v":[[0,1,["G1063"]],[1,4,["G59"]],[4,7,["G5092"]],[7,8,["G1211"]],[8,9,["G1392"]],[9,10,["G2316"]],[10,11,["G1722"]],[11,12,["G5216"]],[12,13,["G4983"]],[13,14,["G2532"]],[14,15,["G1722"]],[15,16,["G5216"]],[16,17,["G4151"]],[17,18,["G3748"]],[18,19,["G2076"]],[19,20,["G2316"]]]},{"k":28488,"v":[[0,1,["G1161"]],[1,2,["G4012"]],[2,5,["G3739"]],[5,7,["G1125"]],[7,9,["G3427"]],[9,12,["G2570"]],[12,15,["G444"]],[15,16,["G3361"]],[16,18,["G680"]],[18,20,["G1135"]]]},{"k":28489,"v":[[0,1,["G1161"]],[1,3,["(G1223)"]],[3,4,["G4202"]],[4,7,["G1538"]],[7,8,["G2192"]],[8,10,["G1438"]],[10,11,["G1135"]],[11,12,["G2532"]],[12,15,["G1538"]],[15,16,["G2192"]],[16,18,["G2398"]],[18,19,["G435"]]]},{"k":28490,"v":[[0,2,["G3588"]],[2,3,["G435"]],[3,4,["G591"]],[4,6,["G3588"]],[6,7,["G1135"]],[7,8,["G3784"]],[8,9,["G2133"]],[9,10,["G1161"]],[10,11,["G3668"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G1135"]],[14,16,["G3588"]],[16,17,["G435"]]]},{"k":28491,"v":[[0,1,["G3588"]],[1,2,["G1135"]],[2,5,["G1850","G3756"]],[5,8,["G2398"]],[8,9,["G4983"]],[9,10,["G235"]],[10,11,["G3588"]],[11,12,["G435"]],[12,13,["G1161"]],[13,14,["G3668"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G435"]],[17,20,["G1850","G3756"]],[20,23,["G2398"]],[23,24,["G4983"]],[24,25,["G235"]],[25,26,["G3588"]],[26,27,["G1135"]]]},{"k":28492,"v":[[0,1,["G650"]],[1,3,["G3361"]],[3,6,["G240"]],[6,7,["G1509","G302"]],[7,10,["G1537"]],[10,11,["G4859"]],[11,12,["G4314"]],[12,14,["G2540"]],[14,15,["G2443"]],[15,19,["G4980"]],[19,21,["G3521"]],[21,22,["G2532"]],[22,23,["G4335"]],[23,24,["G2532"]],[24,26,["G4905"]],[26,27,["G3825"]],[27,28,["G2443"]],[28,29,["G4567"]],[29,30,["G3985"]],[30,31,["G5209"]],[31,32,["G3361"]],[32,33,["G1223"]],[33,34,["G5216"]],[34,35,["G192"]]]},{"k":28493,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,4,["G5124"]],[4,5,["G2596"]],[5,6,["G4774"]],[6,8,["G3756"]],[8,9,["G2596"]],[9,10,["G2003"]]]},{"k":28494,"v":[[0,1,["G1063"]],[1,3,["G2309"]],[3,5,["G3956"]],[5,6,["G444"]],[6,7,["G1511"]],[7,9,["G5613","G2532"]],[9,11,["G1683"]],[11,12,["G235"]],[12,14,["G1538"]],[14,15,["G2192"]],[15,17,["G2398"]],[17,18,["G5486"]],[18,19,["G1537"]],[19,20,["G2316"]],[20,21,["G3739","G3303"]],[21,24,["G3779"]],[24,25,["G1161"]],[25,26,["G3739"]],[26,28,["G3779"]]]},{"k":28495,"v":[[0,2,["G3004"]],[2,3,["G1161"]],[3,5,["G3588"]],[5,6,["G22"]],[6,7,["G2532"]],[7,8,["G5503"]],[8,10,["G2076"]],[10,11,["G2570"]],[11,13,["G846"]],[13,14,["G1437"]],[14,16,["G3306"]],[16,19,["G2504","G5613"]]]},{"k":28496,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,5,["G1467","G3756"]],[5,8,["G1060"]],[8,9,["G1063"]],[9,11,["G2076"]],[11,12,["G2909"]],[12,14,["G1060"]],[14,15,["G2228"]],[15,17,["G4448"]]]},{"k":28497,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1060"]],[4,6,["G3853"]],[6,8,["G3756"]],[8,9,["G1473"]],[9,10,["G235"]],[10,11,["G3588"]],[11,12,["G2962"]],[12,14,["G3361"]],[14,16,["G1135"]],[16,17,["G5563"]],[17,18,["G575"]],[18,20,["G435"]]]},{"k":28498,"v":[[0,1,["G1161"]],[1,2,["G2532"]],[2,3,["G1437"]],[3,5,["G5563"]],[5,8,["G3306"]],[8,9,["G22"]],[9,10,["G2228"]],[10,12,["G2644"]],[12,15,["G435"]],[15,16,["G2532"]],[16,18,["G3361"]],[18,20,["G435"]],[20,22,["G863"]],[22,24,["G1135"]]]},{"k":28499,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G3062"]],[4,5,["G3004"]],[5,6,["G1473"]],[6,7,["G3756"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,11,["G1536"]],[11,12,["G80"]],[12,13,["G2192"]],[13,15,["G1135"]],[15,18,["G571"]],[18,19,["G2532"]],[19,20,["G846"]],[20,22,["G4909"]],[22,24,["G3611"]],[24,25,["G3326"]],[25,26,["G846"]],[26,29,["G3361"]],[29,32,["G863","G846"]]]},{"k":28500,"v":[[0,1,["G2532"]],[1,3,["G1135"]],[3,4,["G3748"]],[4,5,["G2192"]],[5,7,["G435"]],[7,10,["G571"]],[10,11,["G2532"]],[11,13,["G846"]],[13,15,["G4909"]],[15,17,["G3611"]],[17,18,["G3326"]],[18,19,["G846"]],[19,22,["G3361"]],[22,23,["G863"]],[23,24,["G846"]]]},{"k":28501,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G571"]],[3,4,["G435"]],[4,6,["G37"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G1135"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G571"]],[12,13,["G1135"]],[13,15,["G37"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G435"]],[18,19,["G1893","(G686)"]],[19,20,["G2076"]],[20,21,["G5216"]],[21,22,["G5043"]],[22,23,["G169"]],[23,24,["G1161"]],[24,25,["G3568"]],[25,26,["G2076"]],[26,28,["G40"]]]},{"k":28502,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G571"]],[4,5,["G5563"]],[5,8,["G5563"]],[8,10,["G80"]],[10,11,["G2228"]],[11,13,["G79"]],[13,15,["G3756"]],[15,17,["G1402"]],[17,18,["G1722"]],[18,19,["G5108"]],[19,21,["G1161"]],[21,22,["G2316"]],[22,24,["G2564"]],[24,25,["G2248"]],[25,26,["G1722"]],[26,27,["G1515"]]]},{"k":28503,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,3,["G1492"]],[3,6,["G1135"]],[6,7,["G1487"]],[7,10,["G4982"]],[10,12,["G435"]],[12,13,["G2228"]],[13,14,["G5101"]],[14,15,["G1492"]],[15,18,["G435"]],[18,19,["G1487"]],[19,22,["G4982"]],[22,24,["G1135"]]]},{"k":28504,"v":[[0,1,["G1508"]],[1,2,["G5613"]],[2,3,["G2316"]],[3,5,["G3307"]],[5,8,["G1538"]],[8,9,["G5613"]],[9,10,["G3588"]],[10,11,["G2962"]],[11,13,["G2564"]],[13,15,["G1538"]],[15,16,["G3779"]],[16,19,["G4043"]],[19,20,["G2532"]],[20,21,["G3779"]],[21,22,["G1299"]],[22,24,["G1722"]],[24,25,["G3956"]],[25,26,["G1577"]]]},{"k":28505,"v":[[0,3,["G5100"]],[3,4,["G2564"]],[4,6,["G4059"]],[6,9,["G3361"]],[9,11,["G1986"]],[11,13,["G5100"]],[13,14,["G2564"]],[14,15,["G1722"]],[15,16,["G203"]],[16,19,["G3361"]],[19,21,["G4059"]]]},{"k":28506,"v":[[0,1,["G4061"]],[1,2,["G2076"]],[2,3,["G3762"]],[3,4,["G2532"]],[4,5,["G203"]],[5,6,["G2076"]],[6,7,["G3762"]],[7,8,["G235"]],[8,10,["G5084"]],[10,13,["G1785"]],[13,15,["G2316"]]]},{"k":28507,"v":[[0,3,["G1538","(G1722","G5026)"]],[3,4,["G3306"]],[4,5,["G1722"]],[5,7,["G3588"]],[7,8,["G2821"]],[8,9,["G3739"]],[9,12,["G2564"]]]},{"k":28508,"v":[[0,3,["G2564"]],[3,6,["G1401"]],[6,7,["G3199"]],[7,8,["G3361"]],[8,9,["(G4671)"]],[9,11,["G235"]],[11,12,["G1487"]],[12,14,["G1410"]],[14,16,["G1096"]],[16,17,["G1658"]],[17,18,["G5530"]],[18,20,["G3123"]]]},{"k":28509,"v":[[0,1,["G1063"]],[1,5,["G2564"]],[5,6,["G1722"]],[6,8,["G2962"]],[8,11,["G1401"]],[11,12,["G2076"]],[12,14,["G2962"]],[14,15,["G558"]],[15,16,["G3668"]],[16,17,["G2532"]],[17,21,["G2564"]],[21,23,["G1658"]],[23,24,["G2076"]],[24,25,["G5547"]],[25,26,["G1401"]]]},{"k":28510,"v":[[0,3,["G59"]],[3,6,["G5092"]],[6,7,["G1096"]],[7,8,["G3361"]],[8,11,["G1401"]],[11,13,["G444"]]]},{"k":28511,"v":[[0,1,["G80"]],[1,4,["G1538"]],[4,5,["G1722","G3739"]],[5,8,["G2564"]],[8,9,["G1722","G5129"]],[9,10,["G3306"]],[10,11,["G3844"]],[11,12,["G2316"]]]},{"k":28512,"v":[[0,1,["G1161"]],[1,2,["G4012"]],[2,3,["G3933"]],[3,5,["G2192"]],[5,6,["G3756"]],[6,7,["G2003"]],[7,10,["G2962"]],[10,11,["G1161"]],[11,13,["G1325"]],[13,15,["G1106"]],[15,16,["G5613"]],[16,21,["G1653"]],[21,22,["G5259"]],[22,24,["G2962"]],[24,26,["G1511"]],[26,27,["G4103"]]]},{"k":28513,"v":[[0,2,["G3543"]],[2,3,["G3767"]],[3,5,["G5124"]],[5,6,["G5225"]],[6,7,["G2570"]],[7,8,["G1223"]],[8,9,["G3588"]],[9,10,["G1764"]],[10,11,["G318"]],[11,14,["G3754"]],[14,17,["G2570"]],[17,20,["G444"]],[20,21,["G3779"]],[21,23,["G1511"]]]},{"k":28514,"v":[[0,3,["G1210"]],[3,6,["G1135"]],[6,7,["G2212"]],[7,8,["G3361"]],[8,11,["G3080"]],[11,14,["G3089"]],[14,15,["G575"]],[15,17,["G1135"]],[17,18,["G2212"]],[18,19,["G3361"]],[19,21,["G1135"]]]},{"k":28515,"v":[[0,1,["G1161"]],[1,2,["G2532"]],[2,3,["G1437"]],[3,5,["G1060"]],[5,8,["G3756"]],[8,9,["G264"]],[9,10,["G2532"]],[10,11,["G1437"]],[11,13,["G3933"]],[13,14,["G1060"]],[14,17,["G3756"]],[17,18,["G264"]],[18,19,["G1161"]],[19,20,["G5108"]],[20,22,["G2192"]],[22,23,["G2347"]],[23,25,["G3588"]],[25,26,["G4561"]],[26,27,["G1161"]],[27,28,["G1473"]],[28,29,["G5339"]],[29,30,["G5216"]]]},{"k":28516,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,4,["G5346"]],[4,5,["G80"]],[5,6,["G3588"]],[6,7,["G2540"]],[7,9,["G4958"]],[9,11,["G2076","G3063"]],[11,12,["G2443"]],[12,13,["G2532"]],[13,16,["G2192"]],[16,17,["G1135"]],[17,18,["G5600"]],[18,20,["G5613"]],[20,22,["G2192"]],[22,23,["G3361"]]]},{"k":28517,"v":[[0,1,["G2532"]],[1,4,["G2799"]],[4,6,["G5613"]],[6,8,["G2799"]],[8,9,["G3361"]],[9,10,["G2532"]],[10,13,["G5463"]],[13,15,["G5613"]],[15,17,["G5463"]],[17,18,["G3361"]],[18,19,["G2532"]],[19,22,["G59"]],[22,24,["G5613"]],[24,26,["G2722"]],[26,27,["G3361"]]]},{"k":28518,"v":[[0,1,["G2532"]],[1,4,["G5530"]],[4,5,["G5129"]],[5,6,["G2889"]],[6,7,["G5613"]],[7,8,["G3361"]],[8,9,["G2710"]],[9,11,["G1063"]],[11,12,["G3588"]],[12,13,["G4976"]],[13,15,["G5127"]],[15,16,["G2889"]],[16,18,["G3855"]]]},{"k":28519,"v":[[0,1,["G1161"]],[1,3,["G2309"]],[3,4,["G1511"]],[4,5,["G5209"]],[5,7,["G275"]],[7,11,["G22"]],[11,13,["G3309"]],[13,15,["G3588"]],[15,19,["G3588"]],[19,20,["G2962"]],[20,21,["G4459"]],[21,24,["G700"]],[24,25,["G3588"]],[25,26,["G2962"]]]},{"k":28520,"v":[[0,1,["G1161"]],[1,5,["G1060"]],[5,7,["G3309"]],[7,9,["G3588"]],[9,13,["G3588"]],[13,14,["G2889"]],[14,15,["G4459"]],[15,18,["G700"]],[18,20,["G1135"]]]},{"k":28521,"v":[[0,5,["G3307"]],[5,7,["G1135"]],[7,8,["G2532"]],[8,10,["G3933"]],[10,11,["G3588"]],[11,13,["G22"]],[13,15,["G3309"]],[15,17,["G3588"]],[17,19,["G3588"]],[19,20,["G2962"]],[20,21,["G2443"]],[21,24,["G5600"]],[24,25,["G40"]],[25,26,["G2532"]],[26,28,["G4983"]],[28,29,["G2532"]],[29,31,["G4151"]],[31,32,["G1161"]],[32,36,["G1060"]],[36,38,["G3309"]],[38,40,["G3588"]],[40,42,["G3588"]],[42,43,["G2889"]],[43,44,["G4459"]],[44,47,["G700"]],[47,49,["G435"]]]},{"k":28522,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,4,["G3004"]],[4,5,["G4314"]],[5,7,["G5216","G846"]],[7,8,["G4851"]],[8,9,["G3756"]],[9,10,["G2443"]],[10,13,["G1911"]],[13,15,["G1029"]],[15,17,["G5213"]],[17,18,["G235"]],[18,19,["G4314"]],[19,23,["G2158"]],[23,24,["G2532"]],[24,29,["G2145"]],[29,30,["G3588"]],[30,31,["G2962"]],[31,33,["G563"]]]},{"k":28523,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G5100"]],[4,5,["G3543"]],[5,10,["G807"]],[10,11,["G1909"]],[11,12,["G848"]],[12,13,["G3933"]],[13,14,["G1437"]],[14,21,["G5600","G5230"]],[21,22,["G2532"]],[22,23,["G3784"]],[23,24,["G3779"]],[24,25,["G1096"]],[25,28,["G4160"]],[28,29,["G3739"]],[29,31,["G2309"]],[31,33,["G264"]],[33,34,["G3756"]],[34,37,["G1060"]]]},{"k":28524,"v":[[0,1,["G1161"]],[1,2,["G3739"]],[2,4,["G2476"]],[4,5,["G1476"]],[5,6,["G1722"]],[6,8,["G2588"]],[8,9,["G2192"]],[9,10,["G3361"]],[10,11,["G318"]],[11,12,["G1161"]],[12,13,["G2192"]],[13,14,["G1849"]],[14,15,["G4012"]],[15,17,["G2398"]],[17,18,["G2307"]],[18,19,["G2532"]],[19,21,["G5124"]],[21,22,["G2919"]],[22,23,["G1722"]],[23,24,["G848"]],[24,25,["G2588"]],[25,29,["G5083"]],[29,30,["G1438"]],[30,31,["G3933"]],[31,32,["G4160"]],[32,33,["G2573"]]]},{"k":28525,"v":[[0,2,["G5620","(G2532)"]],[2,8,["G1547"]],[8,9,["G4160"]],[9,10,["G2573"]],[10,11,["G1161"]],[11,18,["G1547","G3361"]],[18,19,["G4160"]],[19,20,["G2908"]]]},{"k":28526,"v":[[0,2,["G1135"]],[2,4,["G1210"]],[4,7,["G3551"]],[7,10,["G1909","G3745","G5550"]],[10,11,["G848"]],[11,12,["G435"]],[12,13,["G2198"]],[13,14,["G1161"]],[14,15,["G1437"]],[15,16,["G848"]],[16,17,["G435"]],[17,19,["G2837"]],[19,21,["G2076"]],[21,23,["G1658"]],[23,26,["G1060"]],[26,28,["G3739"]],[28,30,["G2309"]],[30,31,["G3440"]],[31,32,["G1722"]],[32,34,["G2962"]]]},{"k":28527,"v":[[0,1,["G1161"]],[1,3,["G2076"]],[3,4,["G3107"]],[4,5,["G1437"]],[5,7,["G3779"]],[7,8,["G3306"]],[8,9,["G2596"]],[9,10,["G1699"]],[10,11,["G1106"]],[11,12,["G1161"]],[12,14,["G1380"]],[14,17,["G2504"]],[17,18,["G2192"]],[18,20,["G4151"]],[20,22,["G2316"]]]},{"k":28528,"v":[[0,1,["G1161"]],[1,3,["G4012"]],[3,7,["G1494"]],[7,9,["G1492"]],[9,10,["G3754"]],[10,12,["G3956"]],[12,13,["G2192"]],[13,14,["G1108"]],[14,15,["G1108"]],[15,17,["G5448"]],[17,18,["G1161"]],[18,19,["G26"]],[19,20,["G3618"]]]},{"k":28529,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G5100"]],[4,5,["G1380"]],[5,8,["G1492"]],[8,10,["G5100"]],[10,12,["G1097"]],[12,13,["G3762"]],[13,14,["G3764"]],[14,15,["G2531"]],[15,17,["G1163"]],[17,19,["G1097"]]]},{"k":28530,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G5100"]],[4,5,["G25"]],[5,6,["G2316"]],[6,8,["G3778"]],[8,10,["G1097"]],[10,11,["G5259"]],[11,12,["G846"]]]},{"k":28531,"v":[[0,2,["G4012"]],[2,3,["G3767"]],[3,4,["G3588"]],[4,5,["G1035"]],[5,15,["G1494"]],[15,17,["G1492"]],[17,18,["G3754"]],[18,20,["G1497"]],[20,22,["G3762"]],[22,23,["G1722"]],[23,25,["G2889"]],[25,26,["G2532"]],[26,27,["G3754"]],[27,30,["G3762"]],[30,31,["G2087"]],[31,32,["G2316"]],[32,33,["G1508"]],[33,34,["G1520"]]]},{"k":28532,"v":[[0,1,["G1063"]],[1,2,["G2532","G1512"]],[2,4,["G1526"]],[4,7,["G3004"]],[7,8,["G2316"]],[8,9,["G1535"]],[9,10,["G1722"]],[10,11,["G3772"]],[11,12,["G1535"]],[12,13,["G1909"]],[13,14,["G1093"]],[14,15,["G5618"]],[15,17,["G1526"]],[17,18,["G2316"]],[18,19,["G4183"]],[19,20,["G2532"]],[20,21,["G2962"]],[21,22,["G4183"]]]},{"k":28533,"v":[[0,1,["G235"]],[1,3,["G2254"]],[3,7,["G1520"]],[7,8,["G2316"]],[8,9,["G3588"]],[9,10,["G3962"]],[10,11,["G1537"]],[11,12,["G3739"]],[12,15,["G3956"]],[15,16,["G2532"]],[16,17,["G2249"]],[17,18,["G1519"]],[18,19,["G846"]],[19,20,["G2532"]],[20,21,["G1520"]],[21,22,["G2962"]],[22,23,["G2424"]],[23,24,["G5547"]],[24,25,["G1223"]],[25,26,["G3739"]],[26,29,["G3956"]],[29,30,["G2532"]],[30,31,["G2249"]],[31,32,["G1223"]],[32,33,["G846"]]]},{"k":28534,"v":[[0,1,["G235"]],[1,4,["G3756"]],[4,5,["G1722"]],[5,7,["G3956"]],[7,9,["G1108"]],[9,10,["G1161"]],[10,11,["G5100"]],[11,13,["G4893"]],[13,15,["G3588"]],[15,16,["G1497"]],[16,17,["G2193"]],[17,19,["G737"]],[19,20,["G2068"]],[20,22,["G5613"]],[22,28,["G1494"]],[28,29,["G2532"]],[29,30,["G848"]],[30,31,["G4893"]],[31,32,["G5607"]],[32,33,["G772"]],[33,35,["G3435"]]]},{"k":28535,"v":[[0,1,["G1161"]],[1,2,["G1033"]],[2,3,["G3936"]],[3,4,["G2248"]],[4,5,["G3756"]],[5,7,["G2316"]],[7,8,["G1063"]],[8,9,["G3777"]],[9,10,["G1437"]],[10,12,["G5315"]],[12,16,["G4052"]],[16,17,["G3777"]],[17,18,["G1437"]],[18,20,["G5315"]],[20,21,["G3361"]],[21,25,["G5302"]]]},{"k":28536,"v":[[0,1,["G1161"]],[1,3,["G991"]],[3,7,["G3381"]],[7,8,["G3778"]],[8,9,["G1849"]],[9,11,["G5216"]],[11,12,["G1096"]],[12,14,["G4348"]],[14,19,["G770"]]]},{"k":28537,"v":[[0,1,["G1063"]],[1,2,["G1437"]],[2,4,["G5100"]],[4,5,["G1492"]],[5,6,["G4571"]],[6,8,["G2192"]],[8,9,["G1108"]],[9,12,["G2621"]],[12,13,["G1722"]],[13,16,["G1493"]],[16,18,["G3780"]],[18,19,["G3588"]],[19,20,["G4893"]],[20,22,["G846"]],[22,24,["G5607"]],[24,25,["G772"]],[25,27,["G3618"]],[27,29,["G2068"]],[29,36,["G1494"]]]},{"k":28538,"v":[[0,1,["G2532"]],[1,2,["G1909"]],[2,3,["G4674"]],[3,4,["G1108"]],[4,6,["G3588"]],[6,7,["G770"]],[7,8,["G80"]],[8,9,["G622"]],[9,10,["G1223"]],[10,11,["G3739"]],[11,12,["G5547"]],[12,13,["G599"]]]},{"k":28539,"v":[[0,1,["G1161"]],[1,4,["G264"]],[4,5,["G3779"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G80"]],[8,9,["G2532"]],[9,10,["G5180"]],[10,11,["G848"]],[11,12,["G770"]],[12,13,["G4893"]],[13,15,["G264"]],[15,16,["G1519"]],[16,17,["G5547"]]]},{"k":28540,"v":[[0,1,["G1355"]],[1,2,["G1487"]],[2,3,["G1033"]],[3,8,["G4624","G3450","G80"]],[8,11,["G5315"]],[11,12,["G3364"]],[12,13,["G2907"]],[13,17,["G1519","G3588","G165"]],[17,18,["G3363"]],[18,24,["G4624","G3450","G80"]]]},{"k":28541,"v":[[0,1,["G1510"]],[1,3,["G3756"]],[3,5,["G652"]],[5,6,["G1510"]],[6,8,["G3756"]],[8,9,["G1658"]],[9,12,["G3780"]],[12,13,["G3708"]],[13,14,["G2424"]],[14,15,["G5547"]],[15,16,["G2257"]],[16,17,["G2962"]],[17,18,["G2075"]],[18,19,["G3756"]],[19,20,["G5210"]],[20,21,["G3450"]],[21,22,["G2041"]],[22,23,["G1722"]],[23,25,["G2962"]]]},{"k":28542,"v":[[0,1,["G1487"]],[1,3,["G1510"]],[3,4,["G3756"]],[4,6,["G652"]],[6,8,["G243"]],[8,9,["G235"]],[9,10,["G1065"]],[10,12,["G1510"]],[12,14,["G5213"]],[14,15,["G1063"]],[15,16,["G3588"]],[16,17,["G4973"]],[17,19,["G1699"]],[19,20,["G651"]],[20,21,["G2075"]],[21,22,["G5210"]],[22,23,["G1722"]],[23,25,["G2962"]]]},{"k":28543,"v":[[0,1,["G1699"]],[1,2,["G627"]],[2,7,["G350"]],[7,8,["G1691"]],[8,9,["G2076"]],[9,10,["G3778"]]]},{"k":28544,"v":[[0,1,["G2192"]],[1,3,["G3378"]],[3,4,["G1849"]],[4,6,["G5315"]],[6,7,["G2532"]],[7,9,["G4095"]]]},{"k":28545,"v":[[0,1,["G2192"]],[1,3,["G3378"]],[3,4,["G1849"]],[4,7,["G4013"]],[7,9,["G79"]],[9,11,["G1135"]],[11,14,["G5613","G2532"]],[14,15,["G3062"]],[15,16,["G652"]],[16,17,["G2532"]],[17,19,["G3588"]],[19,20,["G80"]],[20,22,["G3588"]],[22,23,["G2962"]],[23,24,["G2532"]],[24,25,["G2786"]]]},{"k":28546,"v":[[0,1,["G2228"]],[1,2,["G1473"]],[2,3,["G3441"]],[3,4,["G2532"]],[4,5,["G921"]],[5,6,["G2192"]],[6,7,["G3756"]],[7,9,["G1849"]],[9,12,["G2038","G3361"]]]},{"k":28547,"v":[[0,1,["G5101"]],[1,4,["G4754"]],[4,6,["G4218"]],[6,9,["G2398"]],[9,10,["G3800"]],[10,11,["G5101"]],[11,12,["G5452"]],[12,14,["G290"]],[14,15,["G2532"]],[15,16,["G2068"]],[16,17,["G3756"]],[17,18,["G1537"]],[18,19,["G3588"]],[19,20,["G2590"]],[20,21,["G848"]],[21,22,["G2228"]],[22,23,["G5101"]],[23,24,["G4165"]],[24,26,["G4167"]],[26,27,["G2532"]],[27,28,["G2068"]],[28,29,["G3756"]],[29,30,["G1537"]],[30,31,["G3588"]],[31,32,["G1051"]],[32,34,["G3588"]],[34,35,["G4167"]]]},{"k":28548,"v":[[0,1,["G2980"]],[1,4,["G5023","(G3361)"]],[4,5,["G2596"]],[5,7,["G444"]],[7,8,["G2228"]],[8,9,["G3004"]],[9,10,["G3780"]],[10,11,["G3588"]],[11,12,["G3551"]],[12,14,["G5023"]],[14,15,["G2532"]]]},{"k":28549,"v":[[0,1,["G1063"]],[1,4,["G1125"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G3551"]],[7,9,["G3475"]],[9,12,["G3756"]],[12,13,["G5392"]],[13,18,["G1016"]],[18,23,["G248"]],[23,24,["(G3361)"]],[24,25,["G2316"]],[25,27,["G3199"]],[27,29,["G1016"]]]},{"k":28550,"v":[[0,1,["G2228"]],[1,2,["G3004"]],[2,5,["G3843"]],[5,8,["G1223","G2248"]],[8,11,["G1223","G2248"]],[11,13,["G1063"]],[13,16,["G1125"]],[16,17,["G3754"]],[17,20,["G722"]],[20,21,["G3784"]],[21,22,["G722"]],[22,23,["G1909"]],[23,24,["G1680"]],[24,25,["G2532"]],[25,29,["G248"]],[29,30,["G1909"]],[30,31,["G1680"]],[31,34,["G3348"]],[34,36,["G848"]],[36,37,["G1680"]]]},{"k":28551,"v":[[0,1,["G1487"]],[1,2,["G2249"]],[2,4,["G4687"]],[4,6,["G5213"]],[6,8,["G4152"]],[8,13,["G3173"]],[13,14,["G1487"]],[14,15,["G2249"]],[15,17,["G2325"]],[17,18,["G5216"]],[18,20,["G4559"]]]},{"k":28552,"v":[[0,1,["G1487"]],[1,2,["G243"]],[2,4,["G3348"]],[4,7,["G1849"]],[7,9,["G5216"]],[9,11,["G3756"]],[11,12,["G2249"]],[12,13,["G3123"]],[13,14,["G235"]],[14,17,["G3756"]],[17,18,["G5530"]],[18,19,["G5026"]],[19,20,["G1849"]],[20,21,["G235"]],[21,22,["G4722"]],[22,24,["G3956"]],[24,25,["G3363"]],[25,28,["G1325","G5100","G1464"]],[28,29,["G3588"]],[29,30,["G2098"]],[30,32,["G5547"]]]},{"k":28553,"v":[[0,3,["G3756"]],[3,4,["G1492"]],[4,5,["G3754"]],[5,8,["G2038"]],[8,11,["G2413"]],[11,12,["G2068"]],[12,16,["G1537"]],[16,17,["G3588"]],[17,18,["G2411"]],[18,22,["G4332"]],[22,24,["G3588"]],[24,25,["G2379"]],[25,28,["G4829"]],[28,29,["G3588"]],[29,30,["G2379"]]]},{"k":28554,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,4,["G3588"]],[4,5,["G2962"]],[5,6,["G1299"]],[6,10,["G2605"]],[10,11,["G3588"]],[11,12,["G2098"]],[12,14,["G2198"]],[14,15,["G1537"]],[15,16,["G3588"]],[16,17,["G2098"]]]},{"k":28555,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,4,["G5530"]],[4,5,["G3762"]],[5,8,["G5130"]],[8,9,["G1161","G3756"]],[9,12,["G1125"]],[12,14,["G5023"]],[14,15,["G2443"]],[15,19,["G3779"]],[19,20,["G1096"]],[20,21,["G1722"]],[21,22,["G1698"]],[22,23,["G1063"]],[23,26,["G2570"]],[26,28,["G3427"]],[28,29,["(G3123)"]],[29,30,["G599"]],[30,31,["G2228"]],[31,32,["G2443"]],[32,34,["G5100"]],[34,39,["G2758","G3450","G2745"]]]},{"k":28556,"v":[[0,1,["G1063"]],[1,2,["G1437"]],[2,6,["G2097"]],[6,7,["G3427"]],[7,8,["G2076"]],[8,9,["G3756"]],[9,12,["G2745"]],[12,13,["G1063"]],[13,14,["G318"]],[14,17,["G1945"]],[17,18,["G3427"]],[18,19,["G1161"]],[19,20,["G3759"]],[20,21,["G2076"]],[21,23,["G3427"]],[23,24,["G1437"]],[24,29,["G2097","G3361"]]]},{"k":28557,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,4,["G4238"]],[4,6,["G5124"]],[6,7,["G1635"]],[7,9,["G2192"]],[9,11,["G3408"]],[11,12,["G1161"]],[12,13,["G1487"]],[13,16,["G210"]],[16,18,["G3622"]],[18,23,["G4100"]],[23,25,[]]]},{"k":28558,"v":[[0,1,["G5101"]],[1,2,["G2076"]],[2,3,["G3427"]],[3,4,["G3408"]],[4,5,["G3767"]],[5,7,["G2443"]],[7,12,["G2097"]],[12,15,["G5087"]],[15,16,["G3588"]],[16,17,["G2098"]],[17,19,["G5547"]],[19,21,["G77"]],[21,24,["G2710"]],[24,25,["G3361"]],[25,26,["G3450"]],[26,27,["G1849"]],[27,28,["G1722"]],[28,29,["G3588"]],[29,30,["G2098"]]]},{"k":28559,"v":[[0,1,["G1063"]],[1,4,["G5607"]],[4,5,["G1658"]],[5,6,["G1537"]],[6,7,["G3956"]],[7,14,["G1402","G1683"]],[14,16,["G3956"]],[16,17,["G2443"]],[17,20,["G2770"]],[20,21,["G3588"]],[21,22,["G4119"]]]},{"k":28560,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G2453"]],[4,6,["G1096"]],[6,7,["G5613"]],[7,9,["G2453"]],[9,10,["G2443"]],[10,13,["G2770"]],[13,15,["G2453"]],[15,17,["G3588"]],[17,20,["G5259"]],[20,22,["G3551"]],[22,23,["G5613"]],[23,24,["G5259"]],[24,26,["G3551"]],[26,27,["G2443"]],[27,30,["G2770"]],[30,31,["G3588"]],[31,34,["G5259"]],[34,36,["G3551"]]]},{"k":28561,"v":[[0,6,["G459"]],[6,7,["G5613"]],[7,9,["G459"]],[9,10,["G5607"]],[10,11,["G3361"]],[11,13,["G459"]],[13,15,["G2316"]],[15,16,["G235"]],[16,19,["G1772"]],[19,21,["G5547"]],[21,22,["G2443"]],[22,25,["G2770"]],[25,30,["G459"]]]},{"k":28562,"v":[[0,2,["G3588"]],[2,3,["G772"]],[3,4,["G1096"]],[4,6,["G5613"]],[6,7,["G772"]],[7,8,["G2443"]],[8,11,["G2770"]],[11,12,["G3588"]],[12,13,["G772"]],[13,16,["G1096"]],[16,18,["G3956"]],[18,20,["G3956"]],[20,22,["G2443"]],[22,27,["G3843"]],[27,28,["G4982"]],[28,29,["G5100"]]]},{"k":28563,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,4,["G4160"]],[4,8,["G1223","G3588","G2098"]],[8,9,["G2443"]],[9,12,["G1096"]],[12,15,["G4791","G846"]],[15,16,[]]]},{"k":28564,"v":[[0,1,["G1492"]],[1,3,["G3756"]],[3,4,["G3754"]],[4,7,["G5143"]],[7,8,["G1722"]],[8,10,["G4712"]],[10,11,["G5143"]],[11,12,["G3956","(G3303)"]],[12,13,["G1161"]],[13,14,["G1520"]],[14,15,["G2983"]],[15,16,["G3588"]],[16,17,["G1017"]],[17,18,["G3779"]],[18,19,["G5143"]],[19,20,["G2443"]],[20,23,["G2638"]]]},{"k":28565,"v":[[0,1,["G1161"]],[1,3,["G3956"]],[3,8,["G75"]],[8,10,["G1467"]],[10,13,["G3956"]],[13,14,["G3767"]],[14,15,["G1565"]],[15,17,["(G3303)"]],[17,18,["G2443"]],[18,19,["G2983"]],[19,21,["G5349"]],[21,22,["G4735"]],[22,23,["G1161"]],[23,24,["G2249"]],[24,26,["G862"]]]},{"k":28566,"v":[[0,1,["G1473"]],[1,2,["G5106"]],[2,3,["G3779"]],[3,4,["G5143"]],[4,5,["G3756"]],[5,6,["G5613"]],[6,7,["G84"]],[7,8,["G3779"]],[8,9,["G4438"]],[9,11,["G3756"]],[11,12,["G5613"]],[12,15,["G1194"]],[15,17,["G109"]]]},{"k":28567,"v":[[0,1,["G235"]],[1,4,["G5299"]],[4,5,["G3450"]],[5,6,["G4983"]],[6,7,["G2532"]],[7,11,["G1396"]],[11,16,["G3381"]],[16,20,["G2784"]],[20,22,["G243"]],[22,24,["G848"]],[24,26,["G1096"]],[26,28,["G96"]]]},{"k":28568,"v":[[0,1,["G1161"]],[1,2,["G80"]],[2,4,["G2309"]],[4,5,["G3756"]],[5,7,["G5209"]],[7,10,["G50"]],[10,12,["G3754"]],[12,13,["G3956"]],[13,14,["G2257"]],[14,15,["G3962"]],[15,16,["G2258"]],[16,17,["G5259"]],[17,18,["G3588"]],[18,19,["G3507"]],[19,20,["G2532"]],[20,21,["G3956"]],[21,22,["G1330"]],[22,23,["G1223"]],[23,24,["G3588"]],[24,25,["G2281"]]]},{"k":28569,"v":[[0,1,["G2532"]],[1,3,["G3956"]],[3,4,["G907"]],[4,5,["G1519"]],[5,6,["G3475"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G3507"]],[9,10,["G2532"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G2281"]]]},{"k":28570,"v":[[0,1,["G2532"]],[1,3,["G3956"]],[3,4,["G5315"]],[4,5,["G3588"]],[5,6,["G846"]],[6,7,["G4152"]],[7,8,["G1033"]]]},{"k":28571,"v":[[0,1,["G2532"]],[1,3,["G3956"]],[3,4,["G4095"]],[4,5,["G3588"]],[5,6,["G846"]],[6,7,["G4152"]],[7,8,["G4188"]],[8,9,["G1063"]],[9,11,["G4095"]],[11,12,["G1537"]],[12,14,["G4152"]],[14,15,["G4073"]],[15,17,["G190"]],[17,19,["G1161"]],[19,21,["G4073"]],[21,22,["G2258"]],[22,23,["G5547"]]]},{"k":28572,"v":[[0,1,["G235"]],[1,2,["G1722"]],[2,3,["G4119"]],[3,5,["G846"]],[5,6,["G2316"]],[6,10,["G2106","G3756"]],[10,11,["G1063"]],[11,14,["G2693"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G2048"]]]},{"k":28573,"v":[[0,1,["G1161"]],[1,3,["G5023"]],[3,4,["G1096"]],[4,5,["G2257"]],[5,6,["G5179"]],[6,10,["G2248"]],[10,14,["G1511","G3361","G1938"]],[14,16,["G2556"]],[16,17,["G2531"]],[17,19,["G2548"]],[19,20,["G1937"]]]},{"k":28574,"v":[[0,1,["G3366"]],[1,2,["G1096"]],[2,4,["G1496"]],[4,5,["G2531"]],[5,7,["G5100"]],[7,9,["G846"]],[9,10,["G5613"]],[10,13,["G1125"]],[13,14,["G3588"]],[14,15,["G2992"]],[15,17,["G2523"]],[17,19,["G5315"]],[19,20,["G2532"]],[20,21,["G4095"]],[21,22,["G2532"]],[22,24,["G450"]],[24,26,["G3815"]]]},{"k":28575,"v":[[0,1,["G3366"]],[1,5,["G4203"]],[5,6,["G2531"]],[6,7,["G5100"]],[7,9,["G846"]],[9,10,["G4203"]],[10,11,["G2532"]],[11,12,["G4098"]],[12,13,["G1722"]],[13,14,["G3391"]],[14,15,["G2250"]],[15,19,["G5140","G1501","G5505"]]]},{"k":28576,"v":[[0,1,["G3366"]],[1,4,["G1598"]],[4,5,["G5547"]],[5,6,["G2531"]],[6,7,["G5100"]],[7,9,["G846"]],[9,10,["G2532"]],[10,11,["G3985"]],[11,12,["G2532"]],[12,14,["G622"]],[14,15,["G5259"]],[15,16,["G3789"]]]},{"k":28577,"v":[[0,1,["G3366"]],[1,2,["G1111"]],[2,4,["G2531"]],[4,5,["G5100"]],[5,7,["G846"]],[7,8,["G2532"]],[8,9,["G1111"]],[9,10,["G2532"]],[10,12,["G622"]],[12,13,["G5259"]],[13,14,["G3588"]],[14,15,["G3644"]]]},{"k":28578,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,4,["G5023"]],[4,5,["G4819"]],[5,7,["G1565"]],[7,9,["G5179"]],[9,10,["G1161"]],[10,13,["G1125"]],[13,14,["G4314"]],[14,15,["G2257"]],[15,16,["G3559"]],[16,17,["G1519"]],[17,18,["G3739"]],[18,19,["G3588"]],[19,20,["G5056"]],[20,22,["G3588"]],[22,23,["G165"]],[23,25,["G2658"]]]},{"k":28579,"v":[[0,1,["G5620"]],[1,5,["G1380"]],[5,7,["G2476"]],[7,9,["G991"]],[9,10,["G3361"]],[10,12,["G4098"]]]},{"k":28580,"v":[[0,3,["G3756"]],[3,4,["G3986"]],[4,5,["G2983"]],[5,6,["G5209"]],[6,7,["G1508"]],[7,13,["G442"]],[13,14,["G1161"]],[14,15,["G2316"]],[15,17,["G4103"]],[17,18,["G3739"]],[18,20,["G3756"]],[20,21,["G1439"]],[21,22,["G5209"]],[22,25,["G3985"]],[25,26,["G5228"]],[26,27,["G3739"]],[27,30,["G1410"]],[30,31,["G235"]],[31,33,["G4862"]],[33,34,["G3588"]],[34,35,["G3986"]],[35,36,["G2532"]],[36,37,["G4160"]],[37,41,["G1545"]],[41,43,["G5209"]],[43,46,["G1410"]],[46,48,["G5297"]],[48,49,[]]]},{"k":28581,"v":[[0,1,["G1355"]],[1,2,["G3450"]],[2,4,["G27"]],[4,5,["G5343"]],[5,6,["G575"]],[6,7,["G1495"]]]},{"k":28582,"v":[[0,2,["G3004"]],[2,3,["G5613"]],[3,6,["G5429"]],[6,7,["G2919"]],[7,8,["G5210"]],[8,9,["G3739"]],[9,11,["G5346"]]]},{"k":28583,"v":[[0,1,["G3588"]],[1,2,["G4221"]],[2,4,["G2129"]],[4,5,["G3739"]],[5,7,["G2127"]],[7,8,["G2076"]],[8,10,["G3780"]],[10,12,["G2842"]],[12,14,["G3588"]],[14,15,["G129"]],[15,17,["G5547"]],[17,18,["G3588"]],[18,19,["G740"]],[19,20,["G3739"]],[20,22,["G2806"]],[22,23,["G2076"]],[23,25,["G3780"]],[25,27,["G2842"]],[27,29,["G3588"]],[29,30,["G4983"]],[30,32,["G5547"]]]},{"k":28584,"v":[[0,1,["G3754"]],[1,4,["G4183"]],[4,5,["G2070"]],[5,6,["G1520"]],[6,7,["G740"]],[7,9,["G1520"]],[9,10,["G4983"]],[10,11,["G1063"]],[11,15,["G3348","G3956"]],[15,16,["G1537"]],[16,18,["G1520"]],[18,19,["G740"]]]},{"k":28585,"v":[[0,1,["G991"]],[1,2,["G2474"]],[2,3,["G2596"]],[3,5,["G4561"]],[5,6,["G1526"]],[6,7,["G3780"]],[7,10,["G2068"]],[10,12,["G3588"]],[12,13,["G2378"]],[13,14,["G2844"]],[14,16,["G3588"]],[16,17,["G2379"]]]},{"k":28586,"v":[[0,1,["G5101"]],[1,2,["G5346"]],[2,4,["G3767"]],[4,5,["G3754"]],[5,7,["G1497"]],[7,8,["G2076"]],[8,10,["G5100"]],[10,11,["G2228","(G3754)"]],[11,19,["G1494"]],[19,20,["G2076"]],[20,22,["G5100"]]]},{"k":28587,"v":[[0,1,["G235"]],[1,4,["G3754"]],[4,7,["G3739"]],[7,8,["G3588"]],[8,9,["G1484"]],[9,10,["G2380"]],[10,12,["G2380"]],[12,14,["G1140"]],[14,15,["G2532"]],[15,16,["G3756"]],[16,18,["G2316"]],[18,19,["G1161"]],[19,21,["G2309"]],[21,22,["G3756"]],[22,24,["G5209"]],[24,26,["G1096"]],[26,27,["G2844"]],[27,29,["G1140"]]]},{"k":28588,"v":[[0,2,["G1410","G3756"]],[2,3,["G4095"]],[3,5,["G4221"]],[5,8,["G2962"]],[8,9,["G2532"]],[9,11,["G4221"]],[11,13,["G1140"]],[13,15,["G1410","G3756"]],[15,17,["G3348"]],[17,20,["G2962"]],[20,21,["G5132"]],[21,22,["G2532"]],[22,25,["G5132"]],[25,27,["G1140"]]]},{"k":28589,"v":[[0,2,["(G2228)"]],[2,7,["G3863","G3588","G2962"]],[7,8,["G2070"]],[8,9,["(G3361)"]],[9,10,["G2478"]],[10,12,["G846"]]]},{"k":28590,"v":[[0,2,["G3956"]],[2,4,["G1832"]],[4,6,["G3427"]],[6,7,["G235"]],[7,9,["G3956"]],[9,12,["G4851","G3756"]],[12,14,["G3956"]],[14,16,["G1832"]],[16,18,["G3427"]],[18,19,["G235"]],[19,21,["G3956"]],[21,22,["G3618"]],[22,23,["G3756"]]]},{"k":28591,"v":[[0,3,["G3367"]],[3,4,["G2212"]],[4,6,["G1438"]],[6,7,["G235"]],[7,9,["G1538"]],[9,10,["(G2087)"]],[10,11,[]]]},{"k":28592,"v":[[0,1,["G3956"]],[1,3,["G4453"]],[3,4,["G1722"]],[4,6,["G3111"]],[6,8,["G2068"]],[8,11,["G350","G3367"]],[11,14,["G1223","G4893"]]]},{"k":28593,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G1093"]],[3,5,["G3588"]],[5,6,["G2962"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G4138"]],[9,10,["G848"]]]},{"k":28594,"v":[[0,0,["(G1161)"]],[0,1,["G1487"]],[1,2,["G5100"]],[2,7,["G571"]],[7,8,["G2564"]],[8,9,["G5209"]],[9,13,["G2532"]],[13,16,["G2309"]],[16,18,["G4198"]],[18,19,["G3956"]],[19,22,["G3908"]],[22,23,["G5213"]],[23,24,["G2068"]],[24,27,["G350","G3367"]],[27,30,["G1223","G4893"]]]},{"k":28595,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,4,["G5100"]],[4,5,["G2036"]],[5,7,["G5213"]],[7,8,["G5124"]],[8,9,["G2076"]],[9,14,["G1494"]],[14,15,["G2068"]],[15,16,["G3361"]],[16,19,["G1223","G1565"]],[19,21,["G3377"]],[21,23,["G2532"]],[23,25,["G4893"]],[25,27,["G1063"]],[27,28,["G3588"]],[28,29,["G1093"]],[29,31,["G3588"]],[31,32,["G2962"]],[32,33,["G2532"]],[33,34,["G3588"]],[34,35,["G4138"]],[35,36,["G848"]]]},{"k":28596,"v":[[0,0,["(G1161)"]],[0,1,["G4893"]],[1,3,["G3004"]],[3,4,["G3780"]],[4,6,["G1438"]],[6,7,["G235"]],[7,8,["(G3588)"]],[8,9,["G3588"]],[9,10,["G2087"]],[10,11,["G1063"]],[11,12,["G2444"]],[12,14,["G3450"]],[14,15,["G1657"]],[15,16,["G2919"]],[16,17,["G5259"]],[17,18,["G243"]],[18,20,["G4893"]]]},{"k":28597,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G1473"]],[3,5,["G5485"]],[5,8,["G3348"]],[8,9,["G5101"]],[9,14,["G987"]],[14,15,["G5228"]],[15,16,["G3739"]],[16,19,["G1473"]],[19,21,["G2168"]]]},{"k":28598,"v":[[0,1,["G1535"]],[1,2,["G3767"]],[2,4,["G2068"]],[4,5,["G1535"]],[5,6,["G4095"]],[6,7,["G1535"]],[7,8,["G5100"]],[8,10,["G4160"]],[10,11,["G4160"]],[11,12,["G3956"]],[12,14,["G1519"]],[14,15,["G1391"]],[15,17,["G2316"]]]},{"k":28599,"v":[[0,3,["G1096","G677"]],[3,4,["G2532"]],[4,7,["G2453"]],[7,8,["G2532"]],[8,11,["G1672"]],[11,12,["G2532"]],[12,14,["G3588"]],[14,15,["G1577"]],[15,17,["G2316"]]]},{"k":28600,"v":[[0,3,["G2504","G2531"]],[3,4,["G700"]],[4,5,["G3956"]],[5,8,["G3956"]],[8,10,["G3361"]],[10,11,["G2212"]],[11,13,["G1683"]],[13,14,["G4851"]],[14,15,["G235"]],[15,16,["G3588"]],[16,19,["G4183"]],[19,20,["G2443"]],[20,24,["G4982"]]]},{"k":28601,"v":[[0,1,["G1096"]],[1,3,["G3402"]],[3,5,["G3450"]],[5,7,["G2531"]],[7,9,["G2504"]],[9,12,["G5547"]]]},{"k":28602,"v":[[0,1,["G1161"]],[1,3,["G1867"]],[3,4,["G5209"]],[4,5,["G80"]],[5,6,["G3754"]],[6,8,["G3415"]],[8,9,["G3450"]],[9,12,["G3956"]],[12,13,["G2532"]],[13,14,["G2722"]],[14,15,["G3588"]],[15,16,["G3862"]],[16,17,["G2531"]],[17,19,["G3860"]],[19,22,["G5213"]]]},{"k":28603,"v":[[0,1,["G1161"]],[1,3,["G2309"]],[3,5,["G5209"]],[5,6,["G1492"]],[6,7,["G3754"]],[7,8,["G3588"]],[8,9,["G2776"]],[9,11,["G3956"]],[11,12,["G435"]],[12,13,["G2076"]],[13,14,["G5547"]],[14,15,["G1161"]],[15,17,["G2776"]],[17,20,["G1135"]],[20,22,["G3588"]],[22,23,["G435"]],[23,24,["G1161"]],[24,26,["G2776"]],[26,28,["G5547"]],[28,30,["G2316"]]]},{"k":28604,"v":[[0,1,["G3956"]],[1,2,["G435"]],[2,3,["G4336"]],[3,4,["G2228"]],[4,5,["G4395"]],[5,6,["G2192"]],[6,9,["G2596","G2776"]],[9,10,["G2617"]],[10,11,["G848"]],[11,12,["G2776"]]]},{"k":28605,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,3,["G1135"]],[3,5,["G4336"]],[5,6,["G2228"]],[6,7,["G4395"]],[7,10,["G2776"]],[10,11,["G177"]],[11,12,["G2617"]],[12,13,["G1438"]],[13,14,["G2776"]],[14,15,["G1063"]],[15,17,["G2076"]],[17,20,["G1520","G2532","G848"]],[20,25,["G3587"]]]},{"k":28606,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G1135"]],[4,6,["G3756"]],[6,7,["G2619"]],[7,10,["G2532"]],[10,12,["G2751"]],[12,13,["G1161"]],[13,14,["G1487"]],[14,18,["G149"]],[18,21,["G1135"]],[21,24,["G2751"]],[24,25,["G2228"]],[25,26,["G3587"]],[26,30,["G2619"]]]},{"k":28607,"v":[[0,1,["G1063"]],[1,3,["G435"]],[3,4,["G3303"]],[4,5,["G3784"]],[5,6,["G3756"]],[6,8,["G2619"]],[8,10,["G2776"]],[10,14,["G5225"]],[14,16,["G1504"]],[16,17,["G2532"]],[17,18,["G1391"]],[18,20,["G2316"]],[20,21,["G1161"]],[21,23,["G1135"]],[23,24,["G2076"]],[24,26,["G1391"]],[26,29,["G435"]]]},{"k":28608,"v":[[0,1,["G1063"]],[1,3,["G435"]],[3,4,["G2076"]],[4,5,["G3756"]],[5,6,["G1537"]],[6,8,["G1135"]],[8,9,["G235"]],[9,11,["G1135"]],[11,12,["G1537"]],[12,14,["G435"]]]},{"k":28609,"v":[[0,0,["(G1063)"]],[0,1,["G2532","G3756"]],[1,4,["G435"]],[4,5,["G2936"]],[5,6,["G1223"]],[6,7,["G3588"]],[7,8,["G1135"]],[8,9,["G235"]],[9,11,["G1135"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G435"]]]},{"k":28610,"v":[[0,3,["G1223","G5124"]],[3,4,["G3784"]],[4,5,["G3588"]],[5,6,["G1135"]],[6,8,["G2192"]],[8,9,["G1849"]],[9,10,["G1909"]],[10,12,["G2776"]],[12,13,["G1223"]],[13,15,["G3588"]],[15,16,["G32"]]]},{"k":28611,"v":[[0,1,["G4133"]],[1,2,["G3777"]],[2,5,["G435"]],[5,6,["G5565"]],[6,8,["G1135"]],[8,9,["G3777"]],[9,11,["G1135"]],[11,12,["G5565"]],[12,14,["G435"]],[14,15,["G1722"]],[15,17,["G2962"]]]},{"k":28612,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G3588"]],[3,4,["G1135"]],[4,6,["G1537"]],[6,7,["G3588"]],[7,8,["G435"]],[8,10,["G3779"]],[10,12,["G3588"]],[12,13,["G435"]],[13,14,["G2532"]],[14,15,["G1223"]],[15,16,["G3588"]],[16,17,["G1135"]],[17,18,["G1161"]],[18,20,["G3956"]],[20,21,["G1537"]],[21,22,["G2316"]]]},{"k":28613,"v":[[0,1,["G2919"]],[1,2,["G1722"]],[2,3,["G5213","G846"]],[3,4,["G2076"]],[4,6,["G4241"]],[6,9,["G1135"]],[9,10,["G4336"]],[10,12,["G2316"]],[12,13,["G177"]]]},{"k":28614,"v":[[0,1,["(G2228)"]],[1,3,["G3761"]],[3,4,["G5449"]],[4,5,["G846"]],[5,6,["G1321"]],[6,7,["G5209"]],[7,8,["G3754"]],[8,9,["G1437"]],[9,11,["G435"]],[11,14,["(G2863)"]],[14,16,["G2076"]],[16,18,["G819"]],[18,20,["G846"]]]},{"k":28615,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,4,["G1135"]],[4,7,["G2863"]],[7,9,["G2076"]],[9,11,["G1391"]],[11,13,["G846"]],[13,14,["G3754"]],[14,16,["G2864"]],[16,18,["G1325"]],[18,19,["G846"]],[19,20,["G473"]],[20,22,["G4018"]]]},{"k":28616,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G5100"]],[4,5,["G1380"]],[5,7,["G1511"]],[7,8,["G5380"]],[8,9,["G2249"]],[9,10,["G2192"]],[10,11,["G3756"]],[11,12,["G5108"]],[12,13,["G4914"]],[13,14,["G3761"]],[14,15,["G3588"]],[15,16,["G1577"]],[16,18,["G2316"]]]},{"k":28617,"v":[[0,1,["G1161"]],[1,3,["G5124"]],[3,6,["G3853"]],[6,10,["G1867"]],[10,12,["G3756"]],[12,13,["G3754"]],[13,16,["G4905"]],[16,17,["G3756"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G2909"]],[20,21,["G235"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G2276"]]]},{"k":28618,"v":[[0,1,["G1063"]],[1,4,["G4412"]],[4,5,["(G3303)"]],[5,6,["G5216"]],[6,8,["G4905"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G1577"]],[11,13,["G191"]],[13,16,["G5225"]],[16,17,["G4978"]],[17,18,["G1722"]],[18,19,["G5213"]],[19,20,["G2532"]],[20,22,["G3313","G5100"]],[22,23,["G4100"]],[23,24,[]]]},{"k":28619,"v":[[0,1,["G1063"]],[1,3,["G1163"]],[3,4,["G1511"]],[4,5,["G2532"]],[5,6,["G139"]],[6,7,["G1722"]],[7,8,["G5213"]],[8,9,["G2443"]],[9,13,["G1384"]],[13,16,["G1096"]],[16,17,["G5318"]],[17,18,["G1722"]],[18,19,["G5213"]]]},{"k":28620,"v":[[0,2,["G5216"]],[2,4,["G4905"]],[4,5,["G3767"]],[5,6,["G1909"]],[6,8,["G846"]],[8,10,["G2076"]],[10,11,["G3756"]],[11,13,["G5315"]],[13,15,["G2960"]],[15,16,["G1173"]]]},{"k":28621,"v":[[0,1,["G1063"]],[1,2,["G1722"]],[2,3,["G5315"]],[3,5,["G1538"]],[5,7,["G4301"]],[7,10,["G2398"]],[10,11,["G1173"]],[11,12,["G2532"]],[12,13,["G3739","G3303"]],[13,15,["G3983"]],[15,16,["G1161"]],[16,17,["G3739"]],[17,19,["G3184"]]]},{"k":28622,"v":[[0,1,["(G1063","G3361)"]],[1,2,["G2192"]],[2,4,["G3756"]],[4,5,["G3614"]],[5,7,["G2068"]],[7,8,["G2532"]],[8,10,["G4095"]],[10,12,["G2228"]],[12,13,["G2706"]],[13,15,["G3588"]],[15,16,["G1577"]],[16,18,["G2316"]],[18,19,["G2532"]],[19,20,["G2617"]],[20,23,["G2192"]],[23,24,["G3361"]],[24,25,["G5101"]],[25,28,["G2036"]],[28,30,["G5213"]],[30,33,["G1867"]],[33,34,["G5209"]],[34,35,["G1722"]],[35,36,["G5129"]],[36,38,["G1867"]],[38,40,["G3756"]]]},{"k":28623,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,4,["G3880"]],[4,5,["G575"]],[5,6,["G3588"]],[6,7,["G2962"]],[7,9,["G3739"]],[9,10,["G2532"]],[10,12,["G3860"]],[12,14,["G5213"]],[14,15,["G3754"]],[15,16,["G3588"]],[16,17,["G2962"]],[17,18,["G2424"]],[18,19,["G3588"]],[19,21,["G3571"]],[21,23,["G3739"]],[23,26,["G3860"]],[26,27,["G2983"]],[27,28,["G740"]]]},{"k":28624,"v":[[0,1,["G2532"]],[1,6,["G2168"]],[6,8,["G2806"]],[8,10,["G2532"]],[10,12,["G2036","G2983"]],[12,13,["G5315"]],[13,14,["G5124"]],[14,15,["G2076"]],[15,16,["G3450"]],[16,17,["G4983"]],[17,20,["G2806"]],[20,21,["G5228"]],[21,22,["G5216"]],[22,23,["G5124"]],[23,24,["G4160"]],[24,25,["G1519"]],[25,26,["G364"]],[26,28,["G1699"]]]},{"k":28625,"v":[[0,1,["G3326"]],[1,4,["G5615"]],[4,5,["G2532"]],[5,8,["G3588"]],[8,9,["G4221"]],[9,13,["G1172"]],[13,14,["G3004"]],[14,15,["G5124"]],[15,16,["G4221"]],[16,17,["G2076"]],[17,18,["G3588"]],[18,19,["G2537"]],[19,20,["G1242"]],[20,21,["G1722"]],[21,22,["G1699"]],[22,23,["G129"]],[23,24,["G5124"]],[24,25,["G4160"]],[25,29,["G3740"]],[29,31,["G4095","G302"]],[31,33,["G1519"]],[33,34,["G364"]],[34,36,["G1699"]]]},{"k":28626,"v":[[0,1,["G1063"]],[1,4,["G3740"]],[4,6,["G2068","G302"]],[6,7,["G5126"]],[7,8,["G740"]],[8,9,["G2532"]],[9,10,["G4095","G302"]],[10,11,["G5124"]],[11,12,["G4221"]],[12,15,["G2605"]],[15,16,["G3588"]],[16,17,["G2962"]],[17,18,["G2288"]],[18,19,["G891","G3757"]],[19,21,["G2064"]]]},{"k":28627,"v":[[0,1,["G5620"]],[1,2,["G3739","G302"]],[2,4,["G2068"]],[4,5,["G5126"]],[5,6,["G740"]],[6,7,["G2228"]],[7,8,["G4095"]],[8,10,["G4221"]],[10,12,["G3588"]],[12,13,["G2962"]],[13,14,["G371"]],[14,16,["G2071"]],[16,17,["G1777"]],[17,19,["G3588"]],[19,20,["G4983"]],[20,21,["G2532"]],[21,22,["G129"]],[22,24,["G3588"]],[24,25,["G2962"]]]},{"k":28628,"v":[[0,1,["G1161"]],[1,4,["G444"]],[4,5,["G1381"]],[5,6,["G1438"]],[6,7,["G2532"]],[7,8,["G3779"]],[8,11,["G2068"]],[11,12,["G1537"]],[12,14,["G740"]],[14,15,["G2532"]],[15,16,["G4095"]],[16,17,["G1537"]],[17,19,["G4221"]]]},{"k":28629,"v":[[0,1,["G1063"]],[1,4,["G2068"]],[4,5,["G2532"]],[5,6,["G4095"]],[6,7,["G371"]],[7,8,["G2068"]],[8,9,["G2532"]],[9,10,["G4095"]],[10,11,["G2917"]],[11,13,["G1438"]],[13,14,["G3361"]],[14,15,["G1252"]],[15,16,["G3588"]],[16,17,["G2962"]],[17,18,["G4983"]]]},{"k":28630,"v":[[0,3,["G1223","G5124"]],[3,4,["G4183"]],[4,6,["G772"]],[6,7,["G2532"]],[7,8,["G732"]],[8,9,["G1722"]],[9,10,["G5213"]],[10,11,["G2532"]],[11,12,["G2425"]],[12,13,["G2837"]]]},{"k":28631,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,5,["G1252"]],[5,6,["G1438"]],[6,9,["G3756"]],[9,11,["G2919"]]]},{"k":28632,"v":[[0,1,["G1161"]],[1,5,["G2919"]],[5,8,["G3811"]],[8,9,["G5259"]],[9,11,["G2962"]],[11,12,["G2443"]],[12,15,["G3361"]],[15,17,["G2632"]],[17,18,["G4862"]],[18,19,["G3588"]],[19,20,["G2889"]]]},{"k":28633,"v":[[0,1,["G5620"]],[1,2,["G3450"]],[2,3,["G80"]],[3,7,["G4905"]],[7,9,["G5315"]],[9,10,["G1551"]],[10,13,["G240"]]]},{"k":28634,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G5100"]],[4,5,["G3983"]],[5,8,["G2068"]],[8,9,["G1722"]],[9,10,["G3624"]],[10,11,["G2443"]],[11,15,["G4905","G3361"]],[15,16,["G1519"]],[16,17,["G2917"]],[17,18,["G1161"]],[18,19,["G3588"]],[19,20,["G3062"]],[20,25,["G1299"]],[25,26,["G5613","G302"]],[26,28,["G2064"]]]},{"k":28635,"v":[[0,1,["G1161"]],[1,2,["G4012"]],[2,3,["G4152"]],[3,5,["G80"]],[5,7,["G2309"]],[7,8,["G3756"]],[8,10,["G5209"]],[10,11,["G50"]]]},{"k":28636,"v":[[0,2,["G1492"]],[2,3,["G3754"]],[3,5,["G2258"]],[5,6,["G1484"]],[6,8,["G520"]],[8,9,["G4314"]],[9,11,["G880"]],[11,12,["G1497"]],[12,14,["G5613"]],[14,17,["G71","G302"]]]},{"k":28637,"v":[[0,1,["G1352"]],[1,6,["G1107","G5213"]],[6,7,["G3754"]],[7,9,["G3762"]],[9,10,["G2980"]],[10,11,["G1722"]],[11,13,["G4151"]],[13,15,["G2316"]],[15,16,["G3004"]],[16,17,["G2424"]],[17,18,["G331"]],[18,19,["G2532"]],[19,22,["G3762"]],[22,23,["G1410"]],[23,24,["G2036"]],[24,26,["G2424"]],[26,29,["G2962"]],[29,30,["G1508"]],[30,31,["G1722"]],[31,33,["G40"]],[33,34,["G4151"]]]},{"k":28638,"v":[[0,1,["G1161"]],[1,3,["G1526"]],[3,4,["G1243"]],[4,6,["G5486"]],[6,7,["G1161"]],[7,8,["G3588"]],[8,9,["G846"]],[9,10,["G4151"]]]},{"k":28639,"v":[[0,1,["G2532"]],[1,3,["G1526"]],[3,4,["G1243"]],[4,6,["G1248"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G846"]],[9,10,["G2962"]]]},{"k":28640,"v":[[0,1,["G2532"]],[1,3,["G1526"]],[3,4,["G1243"]],[4,6,["G1755"]],[6,7,["G1161"]],[7,9,["G2076"]],[9,10,["G3588"]],[10,11,["G846"]],[11,12,["G2316"]],[12,14,["G1754"]],[14,15,["G3956"]],[15,16,["G1722"]],[16,17,["G3956"]]]},{"k":28641,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5321"]],[3,5,["G3588"]],[5,6,["G4151"]],[6,8,["G1325"]],[8,11,["G1538"]],[11,12,["G4314"]],[12,13,["G4851"]],[13,14,[]]]},{"k":28642,"v":[[0,1,["G1063"]],[1,3,["G3739","G3303"]],[3,5,["G1325"]],[5,6,["G1223"]],[6,7,["G3588"]],[7,8,["G4151"]],[8,10,["G3056"]],[10,12,["G4678"]],[12,13,["(G1161)"]],[13,14,["G243"]],[14,16,["G3056"]],[16,18,["G1108"]],[18,19,["G2596"]],[19,20,["G3588"]],[20,21,["G846"]],[21,22,["G4151"]]]},{"k":28643,"v":[[0,1,["(G1161)"]],[1,2,["G2087"]],[2,3,["G4102"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G846"]],[6,7,["G4151"]],[7,8,["(G1161)"]],[8,9,["G243"]],[9,11,["G5486"]],[11,13,["G2386"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G846"]],[16,17,["G4151"]]]},{"k":28644,"v":[[0,1,["(G1161)"]],[1,2,["G243"]],[2,4,["G1755"]],[4,6,["G1411"]],[6,7,["(G1161)"]],[7,8,["G243"]],[8,9,["G4394"]],[9,10,["(G1161)"]],[10,11,["G243"]],[11,12,["G1253"]],[12,14,["G4151"]],[14,15,["(G1161)"]],[15,16,["G2087"]],[16,18,["G1085"]],[18,20,["G1100"]],[20,21,["(G1161)"]],[21,22,["G243"]],[22,24,["G2058"]],[24,26,["G1100"]]]},{"k":28645,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,3,["G5023"]],[3,4,["G1754"]],[4,6,["G1520"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G846"]],[9,10,["G4151"]],[10,11,["G1244"]],[11,14,["G1538"]],[14,15,["G2398"]],[15,16,["G2531"]],[16,18,["G1014"]]]},{"k":28646,"v":[[0,1,["G1063"]],[1,2,["G2509"]],[2,3,["G3588"]],[3,4,["G4983"]],[4,5,["G2076"]],[5,6,["G1520"]],[6,7,["G2532"]],[7,8,["G2192"]],[8,9,["G4183"]],[9,10,["G3196"]],[10,11,["G1161"]],[11,12,["G3956"]],[12,13,["G3588"]],[13,14,["G3196"]],[14,17,["G1520"]],[17,18,["G4983"]],[18,19,["G5607"]],[19,20,["G4183"]],[20,21,["G2076"]],[21,22,["G1520"]],[22,23,["G4983"]],[23,24,["G3779"]],[24,25,["G2532"]],[25,27,["G5547"]]]},{"k":28647,"v":[[0,1,["G1063"]],[1,2,["G1722"]],[2,3,["G1520"]],[3,4,["G4151"]],[4,6,["G2249"]],[6,7,["G3956"]],[7,8,["G907"]],[8,9,["G1519"]],[9,10,["G1520"]],[10,11,["G4983"]],[11,12,["G1535"]],[12,15,["G2453"]],[15,16,["G1535"]],[16,17,["G1672"]],[17,18,["G1535"]],[18,21,["G1401"]],[21,22,["G1535"]],[22,23,["G1658"]],[23,24,["G2532"]],[24,27,["G3956"]],[27,30,["G4222"]],[30,31,["G1519"]],[31,32,["G1520"]],[32,33,["G4151"]]]},{"k":28648,"v":[[0,1,["G1063"]],[1,2,["(G2532)","G3588"]],[2,3,["G4983"]],[3,4,["G2076"]],[4,5,["G3756"]],[5,6,["G1520"]],[6,7,["G3196"]],[7,8,["G235"]],[8,9,["G4183"]]]},{"k":28649,"v":[[0,1,["G1437"]],[1,2,["G3588"]],[2,3,["G4228"]],[3,5,["G2036"]],[5,8,["G1510"]],[8,9,["G3756"]],[9,11,["G5495"]],[11,13,["G1510"]],[13,14,["G3756"]],[14,15,["G1537"]],[15,16,["G3588"]],[16,17,["G4983"]],[17,18,["G2076"]],[18,19,["(G3756)"]],[19,20,["G3844","G5124"]],[20,21,["G3756"]],[21,22,["G1537"]],[22,23,["G3588"]],[23,24,["G4983"]]]},{"k":28650,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,3,["G3588"]],[3,4,["G3775"]],[4,6,["G2036"]],[6,7,["G3754"]],[7,9,["G1510"]],[9,10,["G3756"]],[10,12,["G3788"]],[12,14,["G1510"]],[14,15,["G3756"]],[15,16,["G1537"]],[16,17,["G3588"]],[17,18,["G4983"]],[18,19,["G2076"]],[19,20,["(G3756)"]],[20,21,["G3844","G5124"]],[21,22,["G3756"]],[22,23,["G1537"]],[23,24,["G3588"]],[24,25,["G4983"]]]},{"k":28651,"v":[[0,1,["G1487"]],[1,2,["G3588"]],[2,3,["G3650"]],[3,4,["G4983"]],[4,7,["G3788"]],[7,8,["G4226"]],[8,10,["G3588"]],[10,11,["G189"]],[11,12,["G1487"]],[12,14,["G3650"]],[14,16,["G189"]],[16,17,["G4226"]],[17,19,["G3588"]],[19,20,["G3750"]]]},{"k":28652,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,4,["G2316"]],[4,5,["G5087"]],[5,6,["G3588"]],[6,7,["G3196"]],[7,8,["G1538"]],[8,9,["G1520"]],[9,11,["G846"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G4983"]],[14,15,["G2531"]],[15,18,["G2309"]],[18,19,[]]]},{"k":28653,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G2258"]],[4,5,["G3956"]],[5,6,["G1520"]],[6,7,["G3196"]],[7,8,["G4226"]],[8,10,["G3588"]],[10,11,["G4983"]]]},{"k":28654,"v":[[0,1,["G1161"]],[1,2,["G3568"]],[2,5,["G4183"]],[5,6,["G3196"]],[6,7,["G1161"]],[7,9,["G1520"]],[9,10,["G4983"]]]},{"k":28655,"v":[[0,1,["G1161"]],[1,3,["G3788"]],[3,4,["G1410","G3756"]],[4,5,["G2036"]],[5,7,["G3588"]],[7,8,["G5495"]],[8,10,["G2192"]],[10,11,["G3756"]],[11,12,["G5532"]],[12,14,["G4675"]],[14,15,["G2228"]],[15,16,["G3825"]],[16,17,["G3588"]],[17,18,["G2776"]],[18,20,["G3588"]],[20,21,["G4228"]],[21,23,["G2192"]],[23,24,["G3756"]],[24,25,["G5532"]],[25,27,["G5216"]]]},{"k":28656,"v":[[0,1,["G235"]],[1,2,["G4183"]],[2,3,["G3123"]],[3,5,["G3196"]],[5,7,["G3588"]],[7,8,["G4983"]],[8,10,["G1380"]],[10,12,["G5225"]],[12,14,["G772"]],[14,15,["G2076"]],[15,16,["G316"]]]},{"k":28657,"v":[[0,1,["G2532"]],[1,5,["G3588"]],[5,6,["G4983"]],[6,7,["G3739"]],[7,9,["G1380"]],[9,11,["G1511"]],[11,13,["G820"]],[13,15,["G5125"]],[15,17,["G4060"]],[17,19,["G4055"]],[19,20,["G5092"]],[20,21,["G2532"]],[21,22,["G2257"]],[22,23,["G809"]],[23,25,["G2192"]],[25,27,["G4055"]],[27,28,["G2157"]]]},{"k":28658,"v":[[0,1,["G1161"]],[1,2,["G2257"]],[2,3,["G2158"]],[3,5,["G2192"]],[5,6,["G3756"]],[6,7,["G5532"]],[7,8,["G235"]],[8,9,["G2316"]],[9,14,["G4786","G3588","G4983"]],[14,16,["G1325"]],[16,18,["G4055"]],[18,19,["G5092"]],[19,24,["G5302"]]]},{"k":28659,"v":[[0,1,["G2443"]],[1,4,["G5600"]],[4,5,["G3361"]],[5,6,["G4978"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G4983"]],[9,10,["G235"]],[10,12,["G3588"]],[12,13,["G3196"]],[13,18,["G3309","G3588","G846"]],[18,21,["G240","G5228"]]]},{"k":28660,"v":[[0,1,["G2532"]],[1,2,["G1535"]],[2,3,["G1520"]],[3,4,["G3196"]],[4,5,["G3958"]],[5,6,["G3956"]],[6,7,["G3588"]],[7,8,["G3196"]],[8,10,["G4841"]],[10,12,["G1535"]],[12,13,["G1520"]],[13,14,["G3196"]],[14,16,["G1392"]],[16,17,["G3956"]],[17,18,["G3588"]],[18,19,["G3196"]],[19,21,["G4796"]],[21,22,[]]]},{"k":28661,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G2075"]],[3,5,["G4983"]],[5,7,["G5547"]],[7,8,["G2532"]],[8,9,["G3196"]],[9,10,["G1537"]],[10,11,["G3313"]]]},{"k":28662,"v":[[0,1,["G2532"]],[1,2,["G2316"]],[2,4,["G5087"]],[4,5,["G3739","G3303"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G1577"]],[8,9,["G4412"]],[9,10,["G652"]],[10,11,["G1208"]],[11,12,["G4396"]],[12,13,["G5154"]],[13,14,["G1320"]],[14,16,["G1899"]],[16,17,["G1411"]],[17,18,["G1534"]],[18,19,["G5486"]],[19,21,["G2386"]],[21,22,["G484"]],[22,23,["G2941"]],[23,24,["G1085"]],[24,26,["G1100"]]]},{"k":28663,"v":[[0,1,["(G3361)"]],[1,2,["G3956"]],[2,3,["G652"]],[3,4,["(G3361)"]],[4,5,["G3956"]],[5,6,["G4396"]],[6,7,["(G3361)"]],[7,8,["G3956"]],[8,9,["G1320"]],[9,10,["(G3361)"]],[10,11,["G3956"]],[11,14,["G1411"]]]},{"k":28664,"v":[[0,0,["(G3361)"]],[0,1,["G2192"]],[1,2,["G3956"]],[2,4,["G5486"]],[4,6,["G2386"]],[6,7,["(G3361)"]],[7,8,["G3956"]],[8,9,["G2980"]],[9,11,["G1100"]],[11,12,["(G3361)"]],[12,13,["G3956"]],[13,14,["G1329"]]]},{"k":28665,"v":[[0,1,["G1161"]],[1,3,["G2206"]],[3,4,["G3588"]],[4,5,["G2909"]],[5,6,["G5486"]],[6,7,["G2532"]],[7,8,["G2089"]],[8,9,["G1166"]],[9,12,["G5213"]],[12,15,["G2596","G5236"]],[15,16,["G3598"]]]},{"k":28666,"v":[[0,1,["G1437"]],[1,3,["G2980"]],[3,5,["G3588"]],[5,6,["G1100"]],[6,8,["G444"]],[8,9,["G2532"]],[9,11,["G32"]],[11,12,["G1161"]],[12,13,["G2192"]],[13,14,["G3361"]],[14,15,["G26"]],[15,18,["G1096"]],[18,20,["G2278"]],[20,21,["G5475"]],[21,22,["G2228"]],[22,24,["G214"]],[24,25,["G2950"]]]},{"k":28667,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G2192"]],[4,8,["G4394"]],[8,9,["G2532"]],[9,10,["G1492"]],[10,11,["G3956"]],[11,12,["G3466"]],[12,13,["G2532"]],[13,14,["G3956"]],[14,15,["G1108"]],[15,16,["G2532"]],[16,17,["G1437"]],[17,19,["G2192"]],[19,20,["G3956"]],[20,21,["G4102"]],[21,23,["G5620"]],[23,26,["G3179"]],[26,27,["G3735"]],[27,28,["G1161"]],[28,29,["G2192"]],[29,30,["G3361"]],[30,31,["G26"]],[31,33,["G1510"]],[33,34,["G3762"]]]},{"k":28668,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,9,["G5595","G3956","G3450","G5224"]],[9,12,["G2532"]],[12,13,["G1437"]],[13,15,["G3860"]],[15,16,["G3450"]],[16,17,["G4983"]],[17,18,["G2443"]],[18,20,["G2545"]],[20,21,["G2532"]],[21,22,["G2192"]],[22,23,["G3361"]],[23,24,["G26"]],[24,26,["G5623"]],[26,28,["G3762"]]]},{"k":28669,"v":[[0,1,["G26"]],[1,3,["G3114"]],[3,6,["G5541"]],[6,7,["G26"]],[7,8,["G2206"]],[8,9,["G3756"]],[9,10,["G26"]],[10,13,["G4068","G3756"]],[13,15,["G3756"]],[15,17,["G5448"]]]},{"k":28670,"v":[[0,2,["G3756"]],[2,5,["G807"]],[5,6,["G2212"]],[6,7,["G3756"]],[7,9,["G1438"]],[9,11,["G3756"]],[11,13,["G3947"]],[13,14,["G3049"]],[14,15,["G3756"]],[15,16,["G2556"]]]},{"k":28671,"v":[[0,1,["G5463"]],[1,2,["G3756"]],[2,3,["G1909"]],[3,4,["G93"]],[4,5,["G1161"]],[5,6,["G4796"]],[6,8,["G3588"]],[8,9,["G225"]]]},{"k":28672,"v":[[0,1,["G4722"]],[1,3,["G3956"]],[3,4,["G4100"]],[4,6,["G3956"]],[6,7,["G1679"]],[7,9,["G3956"]],[9,10,["G5278"]],[10,12,["G3956"]]]},{"k":28673,"v":[[0,1,["G26"]],[1,2,["G3763"]],[2,3,["G1601"]],[3,4,["G1161"]],[4,5,["G1535"]],[5,8,["G4394"]],[8,11,["G2673"]],[11,12,["G1535"]],[12,15,["G1100"]],[15,18,["G3973"]],[18,19,["G1535"]],[19,22,["G1108"]],[22,26,["G2673"]]]},{"k":28674,"v":[[0,1,["G1063"]],[1,3,["G1097"]],[3,4,["G1537"]],[4,5,["G3313"]],[5,6,["G2532"]],[6,8,["G4395"]],[8,9,["G1537"]],[9,10,["G3313"]]]},{"k":28675,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,6,["G5046"]],[6,8,["G2064"]],[8,9,["G5119"]],[9,10,["G3588"]],[10,13,["G1537"]],[13,14,["G3313"]],[14,18,["G2673"]]]},{"k":28676,"v":[[0,1,["G3753"]],[1,3,["G2252"]],[3,5,["G3516"]],[5,7,["G2980"]],[7,8,["G5613"]],[8,10,["G3516"]],[10,12,["G5426"]],[12,13,["G5613"]],[13,15,["G3516"]],[15,17,["G3049"]],[17,18,["G5613"]],[18,20,["G3516"]],[20,21,["G1161"]],[21,22,["G3753"]],[22,24,["G1096"]],[24,26,["G435"]],[26,29,["G2673"]],[29,31,["G3588","G3516"]]]},{"k":28677,"v":[[0,1,["G1063"]],[1,2,["G737"]],[2,4,["G991"]],[4,5,["G1223"]],[5,7,["G2072"]],[7,8,["G1722","G135"]],[8,9,["G1161"]],[9,10,["G5119"]],[10,11,["G4383"]],[11,12,["G4314"]],[12,13,["G4383"]],[13,14,["G737"]],[14,16,["G1097"]],[16,17,["G1537"]],[17,18,["G3313"]],[18,19,["G1161"]],[19,20,["G5119"]],[20,23,["G1921"]],[23,25,["G2531"]],[25,26,["G2532"]],[26,29,["G1921"]]]},{"k":28678,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,3,["G3306"]],[3,4,["G4102"]],[4,5,["G1680"]],[5,6,["G26"]],[6,7,["G5023"]],[7,8,["G5140"]],[8,9,["G1161"]],[9,11,["G3187"]],[11,13,["G5130"]],[13,15,["G26"]]]},{"k":28679,"v":[[0,2,["G1377"]],[2,3,["G26"]],[3,4,["G1161"]],[4,5,["G2206"]],[5,6,["G4152"]],[6,8,["G1161"]],[8,9,["G3123"]],[9,10,["G2443"]],[10,13,["G4395"]]]},{"k":28680,"v":[[0,1,["G1063"]],[1,4,["G2980"]],[4,8,["G1100"]],[8,9,["G2980"]],[9,10,["G3756"]],[10,12,["G444"]],[12,13,["G235"]],[13,15,["G2316"]],[15,16,["G1063"]],[16,18,["G3762"]],[18,19,["G191"]],[19,21,["G1161"]],[21,24,["G4151"]],[24,26,["G2980"]],[26,27,["G3466"]]]},{"k":28681,"v":[[0,1,["G1161"]],[1,4,["G4395"]],[4,5,["G2980"]],[5,7,["G444"]],[7,9,["G3619"]],[9,10,["G2532"]],[10,11,["G3874"]],[11,12,["G2532"]],[12,13,["G3889"]]]},{"k":28682,"v":[[0,3,["G2980"]],[3,7,["G1100"]],[7,8,["G3618"]],[8,9,["G1438"]],[9,10,["G1161"]],[10,13,["G4395"]],[13,14,["G3618"]],[14,16,["G1577"]]]},{"k":28683,"v":[[0,1,["(G1161)"]],[1,2,["G2309"]],[2,4,["G5209"]],[4,5,["G3956"]],[5,6,["G2980"]],[6,8,["G1100"]],[8,9,["G1161"]],[9,10,["G3123"]],[10,11,["G2443"]],[11,13,["G4395"]],[13,14,["G1063"]],[14,15,["G3187"]],[15,19,["G4395"]],[19,20,["G2228"]],[20,23,["G2980"]],[23,25,["G1100"]],[25,26,["G1622","G1508"]],[26,28,["G1329"]],[28,29,["G2443"]],[29,30,["G3588"]],[30,31,["G1577"]],[31,33,["G2983"]],[33,34,["G3619"]]]},{"k":28684,"v":[[0,0,["(G1161)"]],[0,1,["G3570"]],[1,2,["G80"]],[2,3,["G1437"]],[3,5,["G2064"]],[5,6,["G4314"]],[6,7,["G5209"]],[7,8,["G2980"]],[8,10,["G1100"]],[10,11,["G5101"]],[11,14,["G5623"]],[14,15,["G5209"]],[15,16,["G3362"]],[16,19,["G2980"]],[19,21,["G5213"]],[21,22,["G2228"]],[22,23,["G1722"]],[23,24,["G602"]],[24,25,["G2228"]],[25,26,["G1722"]],[26,27,["G1108"]],[27,28,["G2228"]],[28,29,["G1722"]],[29,30,["G4394"]],[30,31,["G2228"]],[31,32,["G1722"]],[32,33,["G1322"]]]},{"k":28685,"v":[[0,2,["G3676"]],[2,5,["G895"]],[5,6,["G1325"]],[6,7,["G5456"]],[7,8,["G1535"]],[8,9,["G836"]],[9,10,["G1535"]],[10,11,["G2788"]],[11,12,["G1437"]],[12,14,["G1325"]],[14,15,["(G3361)"]],[15,16,["G1293"]],[16,18,["G3588"]],[18,19,["G5353"]],[19,20,["G4459"]],[20,24,["G1097"]],[24,27,["G832"]],[27,28,["G2228"]],[28,29,["G2789"]]]},{"k":28686,"v":[[0,1,["G1063","(G2532)"]],[1,2,["G1437"]],[2,4,["G4536"]],[4,5,["G1325"]],[5,7,["G82"]],[7,8,["G5456"]],[8,9,["G5101"]],[9,11,["G3903"]],[11,13,["G1519"]],[13,15,["G4171"]]]},{"k":28687,"v":[[0,1,["G3779"]],[1,2,["G2532"]],[2,3,["G5210"]],[3,4,["G3362"]],[4,6,["G1325"]],[6,7,["G1223"]],[7,8,["G3588"]],[8,9,["G1100"]],[9,10,["G3056"]],[10,14,["G2154"]],[14,15,["G4459"]],[15,19,["G1097"]],[19,22,["G2980"]],[22,23,["G1063"]],[23,26,["G2071","G2980"]],[26,27,["G1519"]],[27,29,["G109"]]]},{"k":28688,"v":[[0,2,["G2076"]],[2,5,["G1487","G5177"]],[5,7,["G5118"]],[7,8,["G1085"]],[8,10,["G5456"]],[10,11,["G1722"]],[11,13,["G2889"]],[13,14,["G2532"]],[14,15,["G3762"]],[15,17,["G846"]],[17,20,["G880"]]]},{"k":28689,"v":[[0,1,["G3767"]],[1,2,["G1437"]],[2,4,["G1492"]],[4,5,["G3361"]],[5,6,["G3588"]],[6,7,["G1411"]],[7,9,["G3588"]],[9,10,["G5456"]],[10,13,["G2071"]],[13,17,["G2980"]],[17,19,["G915"]],[19,20,["G2532"]],[20,23,["G2980"]],[23,27,["G915"]],[27,28,["G1722"]],[28,29,["G1698"]]]},{"k":28690,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,3,["G5210"]],[3,5,["G1893"]],[5,7,["G2075"]],[7,8,["G2207"]],[8,10,["G4151"]],[10,12,["G2212"]],[12,13,["G2443"]],[13,16,["G4052"]],[16,17,["G4314"]],[17,18,["G3588"]],[18,19,["G3619"]],[19,21,["G3588"]],[21,22,["G1577"]]]},{"k":28691,"v":[[0,1,["G1355"]],[1,5,["G2980"]],[5,9,["G1100"]],[9,10,["G4336"]],[10,11,["G2443"]],[11,14,["G1329"]]]},{"k":28692,"v":[[0,1,["G1063"]],[1,2,["G1437"]],[2,4,["G4336"]],[4,8,["G1100"]],[8,9,["G3450"]],[9,10,["G4151"]],[10,11,["G4336"]],[11,12,["G1161"]],[12,13,["G3450"]],[13,14,["G3563"]],[14,15,["G2076"]],[15,16,["G175"]]]},{"k":28693,"v":[[0,1,["G5101"]],[1,2,["G2076"]],[2,4,["G3767"]],[4,7,["G4336"]],[7,9,["G3588"]],[9,10,["G4151"]],[10,11,["G1161"]],[11,14,["G4336"]],[14,16,["G3588"]],[16,17,["G3563"]],[17,18,["G2532"]],[18,21,["G5567"]],[21,23,["G3588"]],[23,24,["G4151"]],[24,25,["G1161"]],[25,28,["G5567"]],[28,30,["G3588"]],[30,31,["G3563"]],[31,32,["G2532"]]]},{"k":28694,"v":[[0,1,["G1893"]],[1,2,["G1437"]],[2,5,["G2127"]],[5,7,["G3588"]],[7,8,["G4151"]],[8,9,["G4459"]],[9,13,["G378"]],[13,14,["G3588"]],[14,15,["G5117"]],[15,17,["G3588"]],[17,18,["G2399"]],[18,19,["G2046"]],[19,20,["G281"]],[20,21,["G1909"]],[21,22,["G4674"]],[22,25,["G2169"]],[25,26,["G1894"]],[26,28,["G1492"]],[28,29,["G3756"]],[29,30,["G5101"]],[30,32,["G3004"]]]},{"k":28695,"v":[[0,1,["G1063"]],[1,2,["G4771"]],[2,3,["G3303"]],[3,5,["G2168"]],[5,6,["G2573"]],[6,7,["G235"]],[7,8,["G3588"]],[8,9,["G2087"]],[9,11,["G3756"]],[11,12,["G3618"]]]},{"k":28696,"v":[[0,2,["G2168"]],[2,3,["G3450"]],[3,4,["G2316"]],[4,6,["G2980"]],[6,8,["G1100"]],[8,9,["G3123"]],[9,11,["G5216"]],[11,12,["G3956"]]]},{"k":28697,"v":[[0,1,["G235"]],[1,2,["G1722"]],[2,4,["G1577"]],[4,6,["G2309"]],[6,8,["G2980"]],[8,9,["G4002"]],[9,10,["G3056"]],[10,11,["G1223"]],[11,12,["G3450"]],[12,13,["G3563"]],[13,14,["G2443"]],[14,20,["G2727"]],[20,21,["G243"]],[21,22,["G2532"]],[22,23,["G2228"]],[23,25,["G3463"]],[25,26,["G3056"]],[26,27,["G1722"]],[27,30,["G1100"]]]},{"k":28698,"v":[[0,1,["G80"]],[1,2,["G1096"]],[2,3,["G3361"]],[3,4,["G3813"]],[4,6,["G5424"]],[6,7,["G235"]],[7,9,["G2549"]],[9,12,["G3515"]],[12,13,["G1161"]],[13,15,["G5424"]],[15,16,["G1096"]],[16,17,["G5046"]]]},{"k":28699,"v":[[0,1,["G1722"]],[1,2,["G3588"]],[2,3,["G3551"]],[3,6,["G1125"]],[6,7,["G1722"]],[7,11,["G2084"]],[11,12,["G2532"]],[12,13,["(G1722)","G2087"]],[13,14,["G5491"]],[14,17,["G2980"]],[17,19,["G5129"]],[19,20,["G2992"]],[20,21,["G2532"]],[21,25,["G3779"]],[25,28,["G3761"]],[28,29,["G1522"]],[29,30,["G3450"]],[30,31,["G3004"]],[31,33,["G2962"]]]},{"k":28700,"v":[[0,1,["G5620"]],[1,2,["G1100"]],[2,3,["G1526"]],[3,4,["G1519"]],[4,6,["G4592"]],[6,7,["G3756"]],[7,11,["G4100"]],[11,12,["G235"]],[12,17,["G571"]],[17,18,["G1161"]],[18,19,["G4394"]],[19,21,["G3756"]],[21,26,["G571"]],[26,27,["G235"]],[27,31,["G4100"]]]},{"k":28701,"v":[[0,1,["G1437"]],[1,2,["G3767"]],[2,3,["G3588"]],[3,4,["G3650"]],[4,5,["G1577"]],[5,8,["G4905"]],[8,9,["G1909"]],[9,11,["G846"]],[11,12,["G2532"]],[12,13,["G3956"]],[13,14,["G2980"]],[14,16,["G1100"]],[16,17,["G1161"]],[17,20,["G1525"]],[20,24,["G2399"]],[24,25,["G2228"]],[25,26,["G571"]],[26,29,["G3756"]],[29,30,["G2046"]],[30,31,["G3754"]],[31,34,["G3105"]]]},{"k":28702,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,3,["G3956"]],[3,4,["G4395"]],[4,5,["G1161"]],[5,8,["G1525"]],[8,9,["G5100"]],[9,12,["G571"]],[12,13,["G2228"]],[13,15,["G2399"]],[15,18,["G1651"]],[18,19,["G5259"]],[19,20,["G3956"]],[20,23,["G350"]],[23,24,["G5259"]],[24,25,["G3956"]]]},{"k":28703,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,4,["G3588"]],[4,5,["G2927"]],[5,7,["G848"]],[7,8,["G2588"]],[8,9,["G1096"]],[9,10,["G5318"]],[10,11,["G2532"]],[11,12,["G3779"]],[12,14,["G4098"]],[14,15,["G1909"]],[15,17,["G4383"]],[17,20,["G4352"]],[20,21,["G2316"]],[21,23,["G518"]],[23,24,["G3754"]],[24,25,["G2316"]],[25,26,["G2076"]],[26,27,["G1722"]],[27,28,["G5213"]],[28,31,["G3689"]]]},{"k":28704,"v":[[0,1,["G5101"]],[1,2,["G2076"]],[2,4,["G3767"]],[4,5,["G80"]],[5,6,["G3752"]],[6,9,["G4905"]],[9,11,["G1538"]],[11,13,["G5216"]],[13,14,["G2192"]],[14,16,["G5568"]],[16,17,["G2192"]],[17,19,["G1322"]],[19,20,["G2192"]],[20,22,["G1100"]],[22,23,["G2192"]],[23,25,["G602"]],[25,26,["G2192"]],[26,28,["G2058"]],[28,31,["G3956"]],[31,33,["G1096"]],[33,34,["G4314"]],[34,35,["G3619"]]]},{"k":28705,"v":[[0,1,["G1535"]],[1,3,["G5100"]],[3,4,["G2980"]],[4,8,["G1100"]],[8,12,["G2596"]],[12,13,["G1417"]],[13,14,["G2228"]],[14,16,["G3588"]],[16,17,["G4118"]],[17,19,["G5140"]],[19,20,["G2532"]],[20,22,["G303"]],[22,23,["G3313"]],[23,24,["G2532"]],[24,26,["G1520"]],[26,27,["G1329"]]]},{"k":28706,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,4,["G5600"]],[4,5,["G3361"]],[5,6,["G1328"]],[6,10,["G4601"]],[10,11,["G1722"]],[11,13,["G1577"]],[13,14,["G1161"]],[14,17,["G2980"]],[17,19,["G1438"]],[19,20,["G2532"]],[20,22,["G2316"]]]},{"k":28707,"v":[[0,1,["(G1161)"]],[1,3,["G4396"]],[3,4,["G2980"]],[4,5,["G1417"]],[5,6,["G2228"]],[6,7,["G5140"]],[7,8,["G2532"]],[8,10,["G3588"]],[10,11,["G243"]],[11,12,["G1252"]]]},{"k":28708,"v":[[0,0,["(G1161)"]],[0,1,["G1437"]],[1,5,["G601"]],[5,7,["G243"]],[7,10,["G2521"]],[10,12,["G3588"]],[12,13,["G4413"]],[13,16,["G4601"]]]},{"k":28709,"v":[[0,1,["G1063"]],[1,3,["G1410"]],[3,4,["G3956"]],[4,5,["G4395"]],[5,8,["G2596","G1520"]],[8,9,["G2443"]],[9,10,["G3956"]],[10,12,["G3129"]],[12,13,["G2532"]],[13,14,["G3956"]],[14,17,["G3870"]]]},{"k":28710,"v":[[0,1,["G2532"]],[1,3,["G4151"]],[3,6,["G4396"]],[6,8,["G5293"]],[8,11,["G4396"]]]},{"k":28711,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,3,["G2076"]],[3,4,["G3756"]],[4,8,["G181"]],[8,9,["G235"]],[9,11,["G1515"]],[11,12,["G5613"]],[12,13,["G1722"]],[13,14,["G3956"]],[14,15,["G1577"]],[15,17,["G3588"]],[17,18,["G40"]]]},{"k":28712,"v":[[0,2,["G5216"]],[2,3,["G1135"]],[3,5,["G4601"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G1577"]],[8,9,["G1063"]],[9,12,["G3756"]],[12,13,["G2010"]],[13,15,["G846"]],[15,17,["G2980"]],[17,18,["G235"]],[18,25,["G5293"]],[25,26,["G2531"]],[26,27,["G2532"]],[27,28,["G3004"]],[28,29,["G3588"]],[29,30,["G3551"]]]},{"k":28713,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G2309"]],[4,5,["G3129"]],[5,7,["G5100"]],[7,10,["G1905"]],[10,11,["G2398"]],[11,12,["G435"]],[12,13,["G1722"]],[13,14,["G3624"]],[14,15,["G1063"]],[15,17,["G2076"]],[17,19,["G149"]],[19,21,["G1135"]],[21,23,["G2980"]],[23,24,["G1722"]],[24,26,["G1577"]]]},{"k":28714,"v":[[0,1,["G2228"]],[1,2,["G1831"]],[2,3,["G3588"]],[3,4,["G3056"]],[4,6,["G2316"]],[6,8,["G575"]],[8,9,["G5216"]],[9,10,["G2228"]],[10,11,["G2658"]],[11,13,["G1519"]],[13,14,["G5209"]],[14,15,["G3441"]]]},{"k":28715,"v":[[0,3,["G1536"]],[3,5,["G1380"]],[5,7,["G1511"]],[7,9,["G4396"]],[9,10,["G2228"]],[10,11,["G4152"]],[11,14,["G1921"]],[14,15,["G3754"]],[15,18,["G3739"]],[18,20,["G1125"]],[20,22,["G5213"]],[22,23,["G1526"]],[23,25,["G1785"]],[25,27,["G3588"]],[27,28,["G2962"]]]},{"k":28716,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G5100"]],[4,6,["G50"]],[6,10,["G50"]]]},{"k":28717,"v":[[0,1,["G5620"]],[1,2,["G80"]],[2,3,["G2206"]],[3,5,["G4395"]],[5,6,["G2532"]],[6,7,["G2967"]],[7,8,["G3361"]],[8,10,["G2980"]],[10,12,["G1100"]]]},{"k":28718,"v":[[0,3,["G3956"]],[3,5,["G1096"]],[5,6,["G2156"]],[6,7,["G2532"]],[7,8,["G2596"]],[8,9,["G5010"]]]},{"k":28719,"v":[[0,1,["G1161"]],[1,2,["G80"]],[2,4,["G1107"]],[4,6,["G5213"]],[6,7,["G3588"]],[7,8,["G2098"]],[8,9,["G3739"]],[9,11,["G2097"]],[11,13,["G5213"]],[13,14,["G3739"]],[14,15,["G2532"]],[15,18,["G3880"]],[18,19,["G2532"]],[19,20,["G1722","G3739"]],[20,22,["G2476"]]]},{"k":28720,"v":[[0,1,["G1223"]],[1,2,["G3739"]],[2,3,["G2532"]],[3,6,["G4982"]],[6,7,["G1487"]],[7,11,["G2722"]],[11,12,["G5101"]],[12,13,["(G3056)"]],[13,14,["G2097"]],[14,16,["G5213"]],[16,17,["G1622","G1508"]],[17,20,["G4100"]],[20,22,["G1500"]]]},{"k":28721,"v":[[0,1,["G1063"]],[1,3,["G3860"]],[3,5,["G5213"]],[5,8,["G1722","G4413"]],[8,10,["G3739"]],[10,12,["G2532"]],[12,13,["G3880"]],[13,15,["G3754"]],[15,16,["G5547"]],[16,17,["G599"]],[17,18,["G5228"]],[18,19,["G2257"]],[19,20,["G266"]],[20,21,["G2596"]],[21,23,["G3588"]],[23,24,["G1124"]]]},{"k":28722,"v":[[0,1,["G2532"]],[1,2,["G3754"]],[2,5,["G2290"]],[5,6,["G2532"]],[6,7,["G3754"]],[7,10,["G1453"]],[10,11,["G3588"]],[11,12,["G5154"]],[12,13,["G2250"]],[13,14,["G2596"]],[14,16,["G3588"]],[16,17,["G1124"]]]},{"k":28723,"v":[[0,1,["G2532"]],[1,2,["G3754"]],[2,5,["G3700"]],[5,7,["G2786"]],[7,8,["G1534"]],[8,10,["G3588"]],[10,11,["G1427"]]]},{"k":28724,"v":[[0,2,["G1899"]],[2,5,["G3700"]],[5,7,["G1883"]],[7,9,["G4001"]],[9,10,["G80"]],[10,12,["G2178"]],[12,13,["G1537"]],[13,14,["G3739"]],[14,15,["G3588"]],[15,17,["G4119"]],[17,18,["G3306"]],[18,19,["G2193"]],[19,21,["G737"]],[21,22,["G1161"]],[22,23,["G5100"]],[23,24,["(G2532)"]],[24,26,["G2837"]]]},{"k":28725,"v":[[0,2,["G1899"]],[2,5,["G3700"]],[5,7,["G2385"]],[7,8,["G1534"]],[8,10,["G3956"]],[10,11,["G3588"]],[11,12,["G652"]]]},{"k":28726,"v":[[0,1,["G1161"]],[1,2,["G2078"]],[2,4,["G3956"]],[4,7,["G3700"]],[7,10,["G2504"]],[10,11,["G5619"]],[11,18,["G1626"]]]},{"k":28727,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,3,["G1510"]],[3,4,["G3588"]],[4,5,["G1646"]],[5,7,["G3588"]],[7,8,["G652"]],[8,9,["G3739"]],[9,10,["G1510"]],[10,11,["G3756"]],[11,12,["G2425"]],[12,15,["G2564"]],[15,17,["G652"]],[17,18,["G1360"]],[18,20,["G1377"]],[20,21,["G3588"]],[21,22,["G1577"]],[22,24,["G2316"]]]},{"k":28728,"v":[[0,1,["G1161"]],[1,4,["G5485"]],[4,6,["G2316"]],[6,8,["G1510"]],[8,9,["G3739"]],[9,11,["G1510"]],[11,12,["G2532"]],[12,13,["G848"]],[13,14,["G5485"]],[14,15,["G3588"]],[15,18,["G1519"]],[18,19,["G1691"]],[19,20,["G1096"]],[20,21,["G3756"]],[21,23,["G2756"]],[23,24,["G235"]],[24,26,["G2872"]],[26,28,["G4054"]],[28,30,["G846"]],[30,31,["G3956"]],[31,32,["G1161"]],[32,33,["G3756"]],[33,34,["G1473"]],[34,35,["G235"]],[35,36,["G3588"]],[36,37,["G5485"]],[37,39,["G2316"]],[39,40,["G3588"]],[40,42,["G4862"]],[42,43,["G1698"]]]},{"k":28729,"v":[[0,1,["G3767"]],[1,2,["G1535"]],[2,5,["G1473"]],[5,7,["G1565"]],[7,8,["G3779"]],[8,10,["G2784"]],[10,11,["G2532"]],[11,12,["G3779"]],[12,14,["G4100"]]]},{"k":28730,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5547"]],[3,5,["G2784"]],[5,6,["G3754"]],[6,8,["G1453"]],[8,9,["G1537"]],[9,11,["G3498"]],[11,12,["G4459"]],[12,13,["G3004"]],[13,14,["G5100"]],[14,15,["G1722"]],[15,16,["G5213"]],[16,17,["G3754"]],[17,19,["G2076"]],[19,20,["G3756"]],[20,21,["G386"]],[21,24,["G3498"]]]},{"k":28731,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G2076"]],[4,5,["G3756"]],[5,6,["G386"]],[6,9,["G3498"]],[9,12,["G5547"]],[12,13,["G3761"]],[13,14,["G1453"]]]},{"k":28732,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5547"]],[3,5,["G3756"]],[5,6,["G1453"]],[6,7,["G686"]],[7,9,["G2257"]],[9,10,["G2782"]],[10,11,["G2756"]],[11,12,["G1161"]],[12,13,["G5216"]],[13,14,["G4102"]],[14,16,["G2532"]],[16,17,["G2756"]]]},{"k":28733,"v":[[0,1,["G1161"]],[1,2,["G2532"]],[2,5,["G2147"]],[5,7,["G5575"]],[7,9,["G2316"]],[9,10,["G3754"]],[10,13,["G3140"]],[13,14,["G2596"]],[14,15,["G2316"]],[15,16,["G3754"]],[16,19,["G1453"]],[19,20,["G5547"]],[20,21,["G3739"]],[21,25,["G1453","G3756"]],[25,29,["G1512","G686"]],[29,31,["G3498"]],[31,32,["G1453"]],[32,33,["G3756"]]]},{"k":28734,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,4,["G3498"]],[4,5,["G1453"]],[5,6,["G3756"]],[6,9,["G3761"]],[9,10,["G5547"]],[10,11,["G1453"]]]},{"k":28735,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5547"]],[3,5,["G3756"]],[5,6,["G1453"]],[6,7,["G5216"]],[7,8,["G4102"]],[8,10,["G3152"]],[10,12,["G2075"]],[12,13,["G2089"]],[13,14,["G1722"]],[14,15,["G5216"]],[15,16,["G266"]]]},{"k":28736,"v":[[0,1,["G686"]],[1,7,["G2837","G2532"]],[7,8,["G1722"]],[8,9,["G5547"]],[9,11,["G622"]]]},{"k":28737,"v":[[0,1,["G1487"]],[1,2,["G1722"]],[2,3,["G5026"]],[3,4,["G2222"]],[4,5,["G3440"]],[5,7,["G2070"]],[7,8,["G1679"]],[8,9,["G1722"]],[9,10,["G5547"]],[10,12,["G2070"]],[12,14,["G3956"]],[14,15,["G444"]],[15,17,["G1652"]]]},{"k":28738,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,4,["G5547"]],[4,5,["G1453"]],[5,6,["G1537"]],[6,8,["G3498"]],[8,10,["G1096"]],[10,12,["G536"]],[12,16,["G2837"]]]},{"k":28739,"v":[[0,1,["G1063"]],[1,2,["G1894"]],[2,3,["G1223"]],[3,4,["G444"]],[4,6,["G2288"]],[6,7,["G1223"]],[7,8,["G444"]],[8,10,["G2532"]],[10,12,["G386"]],[12,15,["G3498"]]]},{"k":28740,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G1722"]],[3,4,["G76"]],[4,5,["G3956"]],[5,6,["G599"]],[6,7,["G2532"]],[7,8,["G3779"]],[8,9,["G1722"]],[9,10,["G5547"]],[10,12,["G3956"]],[12,15,["G2227"]]]},{"k":28741,"v":[[0,1,["G1161"]],[1,3,["G1538"]],[3,4,["G1722"]],[4,6,["G2398"]],[6,7,["G5001"]],[7,8,["G5547"]],[8,10,["G536"]],[10,11,["G1899"]],[11,12,["G3588"]],[12,15,["G5547"]],[15,16,["G1722"]],[16,17,["G848"]],[17,18,["G3952"]]]},{"k":28742,"v":[[0,1,["G1534"]],[1,3,["G3588"]],[3,4,["G5056"]],[4,5,["G3752"]],[5,10,["G3860"]],[10,11,["G3588"]],[11,12,["G932"]],[12,14,["G2316"]],[14,15,["G2532"]],[15,17,["G3962"]],[17,18,["G3752"]],[18,23,["G2673"]],[23,24,["G3956"]],[24,25,["G746"]],[25,26,["G2532"]],[26,27,["G3956"]],[27,28,["G1849"]],[28,29,["G2532"]],[29,30,["G1411"]]]},{"k":28743,"v":[[0,1,["G1063"]],[1,2,["G846"]],[2,3,["G1163"]],[3,4,["G936"]],[4,5,["G891","G3757"]],[5,8,["G5087"]],[8,9,["G3956"]],[9,10,["G2190"]],[10,11,["G5259"]],[11,12,["G848"]],[12,13,["G4228"]]]},{"k":28744,"v":[[0,2,["G2078"]],[2,3,["G2190"]],[3,7,["G2673"]],[7,9,["G2288"]]]},{"k":28745,"v":[[0,1,["G1063"]],[1,4,["G5293"]],[4,6,["G3956"]],[6,7,["G5259"]],[7,8,["G848"]],[8,9,["G4228"]],[9,10,["G1161"]],[10,11,["G3752"]],[11,13,["G2036","(G3754)"]],[13,15,["G3956"]],[15,18,["G5293"]],[18,22,["G1212"]],[22,23,["G3754"]],[23,26,["G1622"]],[26,32,["G5293","G3956"]],[32,33,["G846"]]]},{"k":28746,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,4,["G3956"]],[4,8,["G5293"]],[8,9,["G846"]],[9,10,["G5119"]],[10,12,["G3588"]],[12,13,["G5207"]],[13,14,["G2532"]],[14,15,["G848"]],[15,17,["G5293"]],[17,24,["G5293","G3956"]],[24,25,["G846"]],[25,26,["G2443"]],[26,27,["G2316"]],[27,29,["G5600"]],[29,30,["G3956"]],[30,31,["G1722"]],[31,32,["G3956"]]]},{"k":28747,"v":[[0,1,["G1893"]],[1,2,["G5101"]],[2,5,["G4160"]],[5,8,["G907"]],[8,9,["G5228"]],[9,10,["G3588"]],[10,11,["G3498"]],[11,12,["G1487"]],[12,14,["G3498"]],[14,15,["G1453"]],[15,16,["G3756"]],[16,18,["G3654"]],[18,19,["G5101"]],[19,22,["G2532"]],[22,23,["G907"]],[23,24,["G5228"]],[24,25,["G3588"]],[25,26,["G3498"]]]},{"k":28748,"v":[[0,1,["G2532"]],[1,2,["G5101"]],[2,6,["G2793","G2249"]],[6,7,["G3956"]],[7,8,["G5610"]]]},{"k":28749,"v":[[0,2,["G3513"]],[2,4,["G2251"]],[4,5,["G2746"]],[5,6,["G3739"]],[6,8,["G2192"]],[8,9,["G1722"]],[9,10,["G5547"]],[10,11,["G2424"]],[11,12,["G2257"]],[12,13,["G2962"]],[13,15,["G599"]],[15,16,["G2596","G2250"]]]},{"k":28750,"v":[[0,1,["G1487"]],[1,4,["G2596"]],[4,6,["G444"]],[6,11,["G2341"]],[11,12,["G1722"]],[12,13,["G2181"]],[13,14,["G5101"]],[14,15,["G3786"]],[15,17,["G3427"]],[17,18,["G1487"]],[18,20,["G3498"]],[20,21,["G1453"]],[21,22,["G3756"]],[22,25,["G5315"]],[25,26,["G2532"]],[26,27,["G4095"]],[27,28,["G1063"]],[28,30,["G839"]],[30,32,["G599"]]]},{"k":28751,"v":[[0,2,["G3361"]],[2,3,["G4105"]],[3,4,["G2556"]],[4,5,["G3657"]],[5,6,["G5351"]],[6,7,["G5543"]],[7,8,["G2239"]]]},{"k":28752,"v":[[0,1,["G1594"]],[1,3,["G1346"]],[3,4,["G2532"]],[4,5,["G264"]],[5,6,["G3361"]],[6,7,["G1063"]],[7,8,["G5100"]],[8,12,["G2192","G56"]],[12,14,["G2316"]],[14,16,["G3004"]],[16,18,["G4314"]],[18,19,["G5213"]],[19,20,["G1791"]]]},{"k":28753,"v":[[0,1,["G235"]],[1,2,["G5100"]],[2,5,["G2046"]],[5,6,["G4459"]],[6,8,["G3588"]],[8,9,["G3498"]],[9,11,["G1453"]],[11,12,["G1161"]],[12,14,["G4169"]],[14,15,["G4983"]],[15,18,["G2064"]]]},{"k":28754,"v":[[0,2,["G878"]],[2,4,["G3739"]],[4,5,["G4771"]],[5,6,["G4687"]],[6,8,["G3756"]],[8,9,["G2227"]],[9,10,["G3362"]],[10,12,["G599"]]]},{"k":28755,"v":[[0,1,["G2532"]],[1,3,["G3739"]],[3,5,["G4687"]],[5,7,["G4687"]],[7,8,["G3756"]],[8,10,["G4983"]],[10,13,["G1096"]],[13,14,["G235"]],[14,15,["G1131"]],[15,16,["G2848","(G1487)"]],[16,19,["G5177"]],[19,21,["G4621"]],[21,22,["G2228"]],[22,24,["G5100"]],[24,25,["G3062"]],[25,26,[]]]},{"k":28756,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,3,["G1325"]],[3,4,["G846"]],[4,6,["G4983"]],[6,7,["G2531"]],[7,10,["G2309"]],[10,12,["G2532"]],[12,14,["G1538"]],[14,15,["G4690"]],[15,17,["G2398"]],[17,18,["G4983"]]]},{"k":28757,"v":[[0,1,["G3956"]],[1,2,["G4561"]],[2,4,["G3756"]],[4,5,["G3588"]],[5,6,["G846"]],[6,7,["G4561"]],[7,8,["G235"]],[8,11,["G243"]],[11,12,["(G3303)"]],[12,14,["G4561"]],[14,16,["G444","(G1161)"]],[16,17,["G243"]],[17,18,["G4561"]],[18,20,["G2934","(G1161)"]],[20,21,["G243"]],[21,23,["G2486"]],[23,24,["(G1161)"]],[24,25,["G243"]],[25,27,["G4421"]]]},{"k":28758,"v":[[0,3,["G2532"]],[3,4,["G2032"]],[4,5,["G4983"]],[5,6,["G2532"]],[6,7,["G4983"]],[7,8,["G1919"]],[8,9,["G235"]],[9,10,["G3588"]],[10,11,["G1391"]],[11,13,["G3588"]],[13,14,["G2032"]],[14,15,["(G3303)"]],[15,16,["G2087"]],[16,17,["G1161"]],[17,18,["G3588"]],[18,21,["G3588"]],[21,22,["G1919"]],[22,24,["G2087"]]]},{"k":28759,"v":[[0,3,["G243"]],[3,4,["G1391"]],[4,7,["G2246"]],[7,8,["G2532"]],[8,9,["G243"]],[9,10,["G1391"]],[10,13,["G4582"]],[13,14,["G2532"]],[14,15,["G243"]],[15,16,["G1391"]],[16,19,["G792"]],[19,20,["G1063"]],[20,22,["G792"]],[22,24,["G1308"]],[24,26,["G792"]],[26,27,["G1722"]],[27,28,["G1391"]]]},{"k":28760,"v":[[0,1,["G3779"]],[1,2,["G2532"]],[2,4,["G3588"]],[4,5,["G386"]],[5,7,["G3588"]],[7,8,["G3498"]],[8,11,["G4687"]],[11,12,["G1722"]],[12,13,["G5356"]],[13,16,["G1453"]],[16,17,["G1722"]],[17,18,["G861"]]]},{"k":28761,"v":[[0,3,["G4687"]],[3,4,["G1722"]],[4,5,["G819"]],[5,8,["G1453"]],[8,9,["G1722"]],[9,10,["G1391"]],[10,13,["G4687"]],[13,14,["G1722"]],[14,15,["G769"]],[15,18,["G1453"]],[18,19,["G1722"]],[19,20,["G1411"]]]},{"k":28762,"v":[[0,3,["G4687"]],[3,5,["G5591"]],[5,6,["G4983"]],[6,9,["G1453"]],[9,11,["G4152"]],[11,12,["G4983"]],[12,14,["G2076"]],[14,16,["G5591"]],[16,17,["G4983"]],[17,18,["G2532"]],[18,20,["G2076"]],[20,22,["G4152"]],[22,23,["G4983"]]]},{"k":28763,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,5,["G1125"]],[5,6,["G3588"]],[6,7,["G4413"]],[7,8,["G444"]],[8,9,["G76"]],[9,11,["G1096"]],[11,12,["(G1519)"]],[12,13,["G2198"]],[13,14,["G5590"]],[14,15,["G3588"]],[15,16,["G2078"]],[16,17,["G76"]],[17,21,["G2227"]],[21,22,["G4151"]]]},{"k":28764,"v":[[0,1,["G235"]],[1,4,["G3756"]],[4,5,["G4412"]],[5,8,["G4152"]],[8,9,["G235"]],[9,13,["G5591"]],[13,15,["G1899"]],[15,19,["G4152"]]]},{"k":28765,"v":[[0,1,["G3588"]],[1,2,["G4413"]],[2,3,["G444"]],[3,5,["G1537"]],[5,7,["G1093"]],[7,8,["G5517"]],[8,9,["G3588"]],[9,10,["G1208"]],[10,11,["G444"]],[11,13,["G3588"]],[13,14,["G2962"]],[14,15,["G1537"]],[15,16,["G3772"]]]},{"k":28766,"v":[[0,1,["G3634"]],[1,3,["G3588"]],[3,4,["G5517"]],[4,5,["G5108"]],[5,11,["G5517","G2532"]],[11,12,["G2532"]],[12,13,["G3634"]],[13,15,["G3588"]],[15,16,["G2032"]],[16,17,["G5108"]],[17,23,["G2032","G2532"]]]},{"k":28767,"v":[[0,1,["G2532"]],[1,2,["G2531"]],[2,5,["G5409"]],[5,6,["G3588"]],[6,7,["G1504"]],[7,9,["G3588"]],[9,10,["G5517"]],[10,13,["G2532"]],[13,14,["G5409"]],[14,15,["G3588"]],[15,16,["G1504"]],[16,18,["G3588"]],[18,19,["G2032"]]]},{"k":28768,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,4,["G5346"]],[4,5,["G80"]],[5,6,["G3754"]],[6,7,["G4561"]],[7,8,["G2532"]],[8,9,["G129"]],[9,10,["G1410","G3756"]],[10,11,["G2816"]],[11,13,["G932"]],[13,15,["G2316"]],[15,16,["G3761"]],[16,18,["G5356"]],[18,19,["G2816"]],[19,20,["G861"]]]},{"k":28769,"v":[[0,1,["G2400"]],[1,3,["G3004"]],[3,4,["G5213"]],[4,6,["G3466"]],[6,9,["G3756"]],[9,10,["G3956"]],[10,11,["(G2837)"]],[11,12,["G1161"]],[12,15,["G3956"]],[15,17,["G236"]]]},{"k":28770,"v":[[0,1,["G1722"]],[1,3,["G823"]],[3,4,["G1722"]],[4,6,["G4493"]],[6,9,["G3788"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G2078"]],[12,13,["G4536"]],[13,14,["G1063"]],[14,18,["G4537"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G3498"]],[21,24,["G1453"]],[24,25,["G862"]],[25,26,["G2532"]],[26,27,["G2249"]],[27,30,["G236"]]]},{"k":28771,"v":[[0,1,["G1063"]],[1,2,["G5124"]],[2,3,["G5349"]],[3,4,["G1163"]],[4,6,["G1746"]],[6,7,["G861"]],[7,8,["G2532"]],[8,9,["G5124"]],[9,10,["G2349"]],[10,13,["G1746"]],[13,14,["G110"]]]},{"k":28772,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,3,["G5124"]],[3,4,["G5349"]],[4,8,["G1746"]],[8,9,["G861"]],[9,10,["G2532"]],[10,11,["G5124"]],[11,12,["G2349"]],[12,16,["G1746"]],[16,17,["G110"]],[17,18,["G5119"]],[18,23,["G1096"]],[23,24,["G3588"]],[24,25,["G3056"]],[25,28,["G1125"]],[28,29,["G2288"]],[29,32,["G2666"]],[32,33,["G1519"]],[33,34,["G3534"]]]},{"k":28773,"v":[[0,2,["G2288"]],[2,3,["G4226"]],[3,5,["G4675"]],[5,6,["G2759"]],[6,8,["G86"]],[8,9,["G4226"]],[9,11,["G4675"]],[11,12,["G3534"]]]},{"k":28774,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G2759"]],[2,4,["G2288"]],[4,6,["G266"]],[6,7,["G1161"]],[7,8,["G3588"]],[8,9,["G1411"]],[9,11,["G266"]],[11,13,["G3588"]],[13,14,["G3551"]]]},{"k":28775,"v":[[0,1,["G1161"]],[1,2,["G5485"]],[2,5,["G2316"]],[5,7,["G1325"]],[7,8,["G2254"]],[8,9,["G3588"]],[9,10,["G3534"]],[10,11,["G1223"]],[11,12,["G2257"]],[12,13,["G2962"]],[13,14,["G2424"]],[14,15,["G5547"]]]},{"k":28776,"v":[[0,1,["G5620"]],[1,2,["G3450"]],[2,3,["G27"]],[3,4,["G80"]],[4,5,["G1096"]],[5,7,["G1476"]],[7,8,["G277"]],[8,9,["G3842"]],[9,10,["G4052"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G2041"]],[13,15,["G3588"]],[15,16,["G2962"]],[16,20,["G1492"]],[20,21,["G3754"]],[21,22,["G5216"]],[22,23,["G2873"]],[23,24,["G2076"]],[24,25,["G3756"]],[25,27,["G2756"]],[27,28,["G1722"]],[28,30,["G2962"]]]},{"k":28777,"v":[[0,1,["G1161"]],[1,2,["G4012"]],[2,3,["G3588"]],[3,4,["G3048"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G40"]],[7,8,["G5618"]],[8,12,["G1299"]],[12,14,["G3588"]],[14,15,["G1577"]],[15,17,["G1053"]],[17,18,["G2532"]],[18,19,["G3779"]],[19,20,["G4160"]],[20,21,["G5210"]]]},{"k":28778,"v":[[0,3,["G2596","G3391"]],[3,7,["G4521"]],[7,10,["G1538"]],[10,12,["G5216"]],[12,13,["G5087"]],[13,14,["G3844"]],[14,15,["G1438"]],[15,17,["G2343"]],[17,18,["G3748","G302"]],[18,21,["G2137"]],[21,23,["G2443"]],[23,25,["G1096"]],[25,26,["G3361"]],[26,27,["G3048"]],[27,28,["(G3752)"]],[28,30,["G2064"]]]},{"k":28779,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,4,["G3854"]],[4,5,["G3739","G1437"]],[5,8,["G1381"]],[8,9,["G1223"]],[9,11,["G1992"]],[11,12,["G5128"]],[12,15,["G3992"]],[15,17,["G667"]],[17,18,["G5216"]],[18,19,["G5485"]],[19,20,["G1519"]],[20,21,["G2419"]]]},{"k":28780,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,4,["G5600"]],[4,5,["G514"]],[5,9,["G2504","G4198"]],[9,12,["G4198"]],[12,13,["G4862"]],[13,14,["G1698"]]]},{"k":28781,"v":[[0,1,["G1161"]],[1,4,["G2064"]],[4,5,["G4314"]],[5,6,["G5209"]],[6,7,["G3752"]],[7,11,["G1330"]],[11,12,["G3109"]],[12,13,["G1063"]],[13,17,["G1330"]],[17,18,["G3109"]]]},{"k":28782,"v":[[0,1,["G1161"]],[1,4,["G5177"]],[4,8,["G3887"]],[8,9,["G2228"]],[9,10,["G2532"]],[10,11,["G3914"]],[11,12,["G4314"]],[12,13,["G5209"]],[13,14,["G2443"]],[14,15,["G5210"]],[15,21,["G4311","G3165"]],[21,22,["G3757","G1437"]],[22,24,["G4198"]]]},{"k":28783,"v":[[0,1,["G1063"]],[1,3,["G2309"]],[3,4,["G3756"]],[4,5,["G1492"]],[5,6,["G5209"]],[6,7,["G737"]],[7,10,["G1722","G3938"]],[10,11,["G1161"]],[11,13,["G1679"]],[13,15,["G1961"]],[15,17,["G5100","G5550"]],[17,18,["G4314"]],[18,19,["G5209"]],[19,20,["G1437"]],[20,21,["G3588"]],[21,22,["G2962"]],[22,23,["G2010"]]]},{"k":28784,"v":[[0,1,["G1161"]],[1,4,["G1961"]],[4,5,["G1722"]],[5,6,["G2181"]],[6,7,["G2193"]],[7,8,["G4005"]]]},{"k":28785,"v":[[0,1,["G1063"]],[1,3,["G3173"]],[3,4,["G2374"]],[4,5,["G2532"]],[5,6,["G1756"]],[6,8,["G455"]],[8,10,["G3427"]],[10,11,["G2532"]],[11,14,["G4183"]],[14,15,["G480"]]]},{"k":28786,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,3,["G5095"]],[3,4,["G2064"]],[4,5,["G991"]],[5,6,["G2443"]],[6,9,["G1096"]],[9,10,["G4314"]],[10,11,["G5209"]],[11,13,["G870"]],[13,14,["G1063"]],[14,16,["G2038"]],[16,17,["G3588"]],[17,18,["G2041"]],[18,21,["G2962"]],[21,22,["G5613"]],[22,23,["G1473"]],[23,24,["G2532"]],[24,25,[]]]},{"k":28787,"v":[[0,2,["G3361"]],[2,3,["G5100"]],[3,4,["G3767"]],[4,5,["G1848"]],[5,6,["G846"]],[6,7,["G1161"]],[7,10,["G4311","G846"]],[10,11,["G1722"]],[11,12,["G1515"]],[12,13,["G2443"]],[13,16,["G2064"]],[16,17,["G4314"]],[17,18,["G3165"]],[18,19,["G1063"]],[19,22,["G1551"]],[22,23,["G846"]],[23,24,["G3326"]],[24,25,["G3588"]],[25,26,["G80"]]]},{"k":28788,"v":[[0,0,["(G1161)"]],[0,2,["G4012"]],[2,4,["G80"]],[4,5,["G625"]],[5,7,["G4183"]],[7,8,["G3870"]],[8,9,["G846"]],[9,10,["G2443"]],[10,11,["G2064"]],[11,12,["G4314"]],[12,13,["G5209"]],[13,14,["G3326"]],[14,15,["G3588"]],[15,16,["G80"]],[16,17,["G2532"]],[17,19,["G2307"]],[19,20,["G2258"]],[20,23,["G3843","G3756"]],[23,24,["G2443"]],[24,25,["G2064"]],[25,28,["G3568"]],[28,29,["G1161"]],[29,32,["G2064"]],[32,33,["G3752"]],[33,38,["G2119"]]]},{"k":28789,"v":[[0,1,["G1127"]],[1,4,["G4739"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G4102"]],[7,11,["G407"]],[11,13,["G2901"]]]},{"k":28790,"v":[[0,4,["G3956","G5216"]],[4,6,["G1096"]],[6,7,["G1722"]],[7,8,["G26"]]]},{"k":28791,"v":[[0,0,["(G1161)"]],[0,2,["G3870"]],[2,3,["G5209"]],[3,4,["G80"]],[4,6,["G1492"]],[6,7,["G3588"]],[7,8,["G3614"]],[8,10,["G4734"]],[10,11,["G3754"]],[11,13,["G2076"]],[13,15,["G536"]],[15,17,["G882"]],[17,18,["G2532"]],[18,22,["G5021"]],[22,23,["G1438"]],[23,24,["G1519"]],[24,26,["G1248"]],[26,28,["G3588"]],[28,29,["G40"]]]},{"k":28792,"v":[[0,1,["G2443","(G2532)"]],[1,2,["G5210"]],[2,5,["G5293"]],[5,6,["G5108"]],[6,7,["G2532"]],[7,10,["G3956"]],[10,13,["G4903"]],[13,15,["G2532"]],[15,16,["G2872"]]]},{"k":28793,"v":[[0,0,["(G1161)"]],[0,3,["G5463"]],[3,4,["G1909"]],[4,5,["G3588"]],[5,6,["G3952"]],[6,8,["G4734"]],[8,9,["G2532"]],[9,10,["G5415"]],[10,11,["G2532"]],[11,12,["G883"]],[12,13,["G3754"]],[13,17,["G5303"]],[17,20,["G5216"]],[20,21,["G3778"]],[21,23,["G378"]]]},{"k":28794,"v":[[0,1,["G1063"]],[1,4,["G373"]],[4,5,["G1699"]],[5,6,["G4151"]],[6,7,["G2532"]],[7,8,["G5216"]],[8,9,["G3767"]],[9,10,["G1921"]],[10,15,["G5108"]]]},{"k":28795,"v":[[0,1,["G3588"]],[1,2,["G1577"]],[2,4,["G773"]],[4,5,["G782"]],[5,6,["G5209"]],[6,7,["G207"]],[7,8,["G2532"]],[8,9,["G4252"]],[9,10,["G782"]],[10,11,["G5209"]],[11,12,["G4183"]],[12,13,["G1722"]],[13,15,["G2962"]],[15,16,["G4862"]],[16,17,["G3588"]],[17,18,["G1577"]],[18,21,["G2596"]],[21,22,["G848"]],[22,23,["G3624"]]]},{"k":28796,"v":[[0,1,["G3956"]],[1,2,["G3588"]],[2,3,["G80"]],[3,4,["G782"]],[4,5,["G5209"]],[5,6,["G782"]],[6,9,["G240"]],[9,10,["G1722"]],[10,12,["G40"]],[12,13,["G5370"]]]},{"k":28797,"v":[[0,1,["G3588"]],[1,2,["G783"]],[2,5,["G3972"]],[5,8,["G1699"]],[8,9,["G5495"]]]},{"k":28798,"v":[[0,3,["G1536"]],[3,4,["G5368"]],[4,5,["G3756"]],[5,6,["G3588"]],[6,7,["G2962"]],[7,8,["G2424"]],[8,9,["G5547"]],[9,12,["G2277"]],[12,13,["G331"]],[13,14,["G3134"]]]},{"k":28799,"v":[[0,1,["G3588"]],[1,2,["G5485"]],[2,5,["G2962"]],[5,6,["G2424"]],[6,7,["G5547"]],[7,9,["G3326"]],[9,10,["G5216"]]]},{"k":28800,"v":[[0,1,["G3450"]],[1,2,["G26"]],[2,4,["G3326"]],[4,5,["G5216"]],[5,6,["G3956"]],[6,7,["G1722"]],[7,8,["G5547"]],[8,9,["G2424"]],[9,10,["G281"]]]},{"k":28801,"v":[[0,1,["G3972"]],[1,3,["G652"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,7,["G1223"]],[7,9,["G2307"]],[9,11,["G2316"]],[11,12,["G2532"]],[12,13,["G5095"]],[13,15,["G80"]],[15,17,["G3588"]],[17,18,["G1577"]],[18,20,["G2316"]],[20,22,["G5607"]],[22,23,["G1722"]],[23,24,["G2882"]],[24,25,["G4862"]],[25,26,["G3956"]],[26,27,["G3588"]],[27,28,["G40"]],[28,30,["G5607"]],[30,31,["G1722"]],[31,32,["G3650"]],[32,33,["G882"]]]},{"k":28802,"v":[[0,1,["G5485"]],[1,4,["G5213"]],[4,5,["G2532"]],[5,6,["G1515"]],[6,7,["G575"]],[7,8,["G2316"]],[8,9,["G2257"]],[9,10,["G3962"]],[10,11,["G2532"]],[11,14,["G2962"]],[14,15,["G2424"]],[15,16,["G5547"]]]},{"k":28803,"v":[[0,1,["G2128"]],[1,3,["G2316"]],[3,4,["G2532"]],[4,6,["G3962"]],[6,8,["G2257"]],[8,9,["G2962"]],[9,10,["G2424"]],[10,11,["G5547"]],[11,12,["G3588"]],[12,13,["G3962"]],[13,15,["G3628"]],[15,16,["G2532"]],[16,18,["G2316"]],[18,20,["G3956"]],[20,21,["G3874"]]]},{"k":28804,"v":[[0,1,["G3588"]],[1,2,["G3870"]],[2,3,["G2248"]],[3,4,["G1909"]],[4,5,["G3956"]],[5,6,["G2257"]],[6,7,["G2347"]],[7,9,["G2248"]],[9,12,["G1410"]],[12,14,["G3870"]],[14,15,["G3588"]],[15,18,["G1722"]],[18,19,["G3956"]],[19,20,["G2347"]],[20,21,["G1223"]],[21,22,["G3588"]],[22,23,["G3874"]],[23,24,["G3739"]],[24,25,["G848"]],[25,28,["G3870"]],[28,29,["G5259"]],[29,30,["G2316"]]]},{"k":28805,"v":[[0,1,["G3754"]],[1,2,["G2531"]],[2,3,["G3588"]],[3,4,["G3804"]],[4,6,["G5547"]],[6,7,["G4052"]],[7,8,["G1519"]],[8,9,["G2248"]],[9,10,["G3779"]],[10,11,["G2257"]],[11,12,["G3874"]],[12,13,["G2532"]],[13,14,["G4052"]],[14,15,["G1223"]],[15,16,["G5547"]]]},{"k":28806,"v":[[0,1,["G1161"]],[1,2,["G1535"]],[2,5,["G2346"]],[5,8,["G5228"]],[8,9,["G5216"]],[9,10,["G3874"]],[10,11,["G2532"]],[11,12,["G4991"]],[12,15,["G1754"]],[15,16,["G1722"]],[16,18,["G5281"]],[18,20,["G3588"]],[20,21,["G846"]],[21,22,["G3804"]],[22,23,["G3739"]],[23,24,["G2249"]],[24,25,["G2532"]],[25,26,["G3958"]],[26,28,["G1535"]],[28,31,["G3870"]],[31,34,["G5228"]],[34,35,["G5216"]],[35,36,["G3874"]],[36,37,["G2532"]],[37,38,["G4991"]]]},{"k":28807,"v":[[0,1,["G2532"]],[1,2,["G2257"]],[2,3,["G1680"]],[3,4,["G5228"]],[4,5,["G5216"]],[5,7,["G949"]],[7,8,["G1492"]],[8,9,["G3754"]],[9,10,["G5618"]],[10,12,["G2075"]],[12,13,["G2844"]],[13,15,["G3588"]],[15,16,["G3804"]],[16,17,["G3779"]],[17,21,["G2532"]],[21,23,["G3588"]],[23,24,["G3874"]]]},{"k":28808,"v":[[0,1,["G1063"]],[1,3,["G2309"]],[3,4,["G3756"]],[4,5,["G80"]],[5,8,["G50","G5209"]],[8,9,["G5228"]],[9,10,["G2257"]],[10,11,["G2347"]],[11,13,["G1096"]],[13,15,["G2254"]],[15,16,["G1722"]],[16,17,["G773"]],[17,18,["G3754"]],[18,21,["G916"]],[21,24,["G2596","G5236"]],[24,25,["G5228"]],[25,26,["G1411"]],[26,28,["G5620"]],[28,29,["G2248"]],[29,30,["G1820"]],[30,31,["G2532"]],[31,33,["G2198"]]]},{"k":28809,"v":[[0,1,["G235"]],[1,2,["G848"]],[2,3,["G2192"]],[3,4,["G3588"]],[4,5,["G610"]],[5,7,["G2288"]],[7,8,["G1722"]],[8,9,["G1438"]],[9,10,["G2443"]],[10,12,["G5600"]],[12,13,["G3361"]],[13,14,["G3982"]],[14,15,["G1909"]],[15,16,["G1438"]],[16,17,["G235"]],[17,18,["G1909"]],[18,19,["G2316"]],[19,21,["G1453"]],[21,22,["G3588"]],[22,23,["G3498"]]]},{"k":28810,"v":[[0,1,["G3739"]],[1,2,["G4506"]],[2,3,["G2248"]],[3,4,["G1537"]],[4,6,["G5082"]],[6,8,["G2288"]],[8,9,["G2532"]],[9,11,["G4506"]],[11,12,["G1519"]],[12,13,["G3739"]],[13,15,["G1679"]],[15,16,["G3754"]],[16,18,["(G2532)"]],[18,19,["G2089"]],[19,20,["G4506"]],[20,21,[]]]},{"k":28811,"v":[[0,1,["G5216"]],[1,2,["G2532"]],[2,4,["G4943"]],[4,6,["G1162"]],[6,7,["G5228"]],[7,8,["G2257"]],[8,9,["G2443"]],[9,12,["G5486"]],[12,14,["G1519"]],[14,15,["G2248"]],[15,19,["G1537"]],[19,20,["G4183"]],[20,21,["G4383"]],[21,25,["G2168"]],[25,26,["G1223"]],[26,27,["G4183"]],[27,30,["G5228","G2257"]]]},{"k":28812,"v":[[0,1,["G1063"]],[1,2,["G2257"]],[2,3,["G2746"]],[3,4,["G2076"]],[4,5,["G3778"]],[5,6,["G3588"]],[6,7,["G3142"]],[7,9,["G2257"]],[9,10,["G4893"]],[10,11,["G3754"]],[11,12,["G1722"]],[12,13,["G572"]],[13,14,["G2532"]],[14,15,["G2316"]],[15,16,["G1505"]],[16,17,["G3756"]],[17,18,["G1722"]],[18,19,["G4559"]],[19,20,["G4678"]],[20,21,["G235"]],[21,22,["G1722"]],[22,24,["G5485"]],[24,26,["G2316"]],[26,31,["G390"]],[31,32,["G1722"]],[32,33,["G3588"]],[33,34,["G2889"]],[34,35,["G1161"]],[35,37,["G4056"]],[37,38,["G4314"]],[38,39,["G5209"]]]},{"k":28813,"v":[[0,1,["G1063"]],[1,3,["G1125"]],[3,4,["G3756"]],[4,6,["G243"]],[6,8,["G5213"]],[8,9,["G235","G2228"]],[9,10,["G3739"]],[10,12,["G314"]],[12,13,["G2228","(G2532)"]],[13,14,["G1921"]],[14,15,["G1161"]],[15,17,["G1679"]],[17,19,["(G3754)"]],[19,20,["G1921"]],[20,21,["G2532"]],[21,22,["G2193"]],[22,24,["G5056"]]]},{"k":28814,"v":[[0,1,["G2531"]],[1,2,["G2532"]],[2,5,["G1921"]],[5,6,["G2248"]],[6,7,["G575"]],[7,8,["G3313"]],[8,9,["G3754"]],[9,11,["G2070"]],[11,12,["G5216"]],[12,13,["G2745"]],[13,15,["G2509"]],[15,16,["G5210"]],[16,17,["G2532"]],[17,19,["G2257"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G2250"]],[22,24,["G3588"]],[24,25,["G2962"]],[25,26,["G2424"]]]},{"k":28815,"v":[[0,1,["G2532"]],[1,3,["G5026"]],[3,4,["G4006"]],[4,7,["G1014"]],[7,9,["G2064"]],[9,10,["G4314"]],[10,11,["G5209"]],[11,12,["G4386"]],[12,13,["G2443"]],[13,16,["G2192"]],[16,18,["G1208"]],[18,19,["G5485"]]]},{"k":28816,"v":[[0,1,["G2532"]],[1,3,["G1330"]],[3,4,["G1223"]],[4,5,["G5216"]],[5,6,["G1519"]],[6,7,["G3109"]],[7,8,["G2532"]],[8,10,["G2064"]],[10,11,["G3825"]],[11,13,["G575"]],[13,14,["G3109"]],[14,15,["G4314"]],[15,16,["G5209"]],[16,17,["G2532"]],[17,18,["G5259"]],[18,19,["G5216"]],[19,25,["G4311"]],[25,26,["G1519"]],[26,27,["G2449"]]]},{"k":28817,"v":[[0,3,["G3767"]],[3,6,["G1011","G5124"]],[6,8,["(G3385","G686)"]],[8,9,["G5530"]],[9,10,["G1644"]],[10,11,["G2228"]],[11,14,["G3739"]],[14,16,["G1011"]],[16,19,["G1011"]],[19,20,["G2596"]],[20,23,["G4561"]],[23,24,["G2443"]],[24,25,["G3844"]],[25,26,["G1698"]],[26,29,["G5600"]],[29,30,["G3483"]],[30,31,["G3483"]],[31,32,["G2532"]],[32,33,["G3756"]],[33,34,["G3756"]]]},{"k":28818,"v":[[0,1,["G1161"]],[1,3,["G2316"]],[3,5,["G4103","(G3754)"]],[5,6,["G2257"]],[6,7,["G3056"]],[7,8,["G4314"]],[8,9,["G5209"]],[9,10,["G1096"]],[10,11,["G3756"]],[11,14,["G3483","G2532","G3756"]]]},{"k":28819,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G2316"]],[5,6,["G2424"]],[6,7,["G5547"]],[7,10,["G2784"]],[10,11,["G1722"]],[11,12,["G5213"]],[12,13,["G1223"]],[13,14,["G2257"]],[14,16,["G1223"]],[16,17,["G1700"]],[17,18,["G2532"]],[18,19,["G4610"]],[19,20,["G2532"]],[20,21,["G5095"]],[21,22,["G1096"]],[22,23,["G3756"]],[23,26,["G3483","G2532","G3756"]],[26,27,["G235"]],[27,28,["G1722"]],[28,29,["G846"]],[29,30,["G1096"]],[30,31,["G3483"]]]},{"k":28820,"v":[[0,1,["G1063"]],[1,2,["G3745"]],[2,4,["G1860"]],[4,6,["G2316"]],[6,7,["G1722"]],[7,8,["G846"]],[8,9,["(G3588)"]],[9,10,["G3483"]],[10,11,["G2532"]],[11,12,["G1722"]],[12,13,["G846","(G3588)"]],[13,14,["G281"]],[14,15,["G4314"]],[15,17,["G1391"]],[17,19,["G2316"]],[19,20,["G1223"]],[20,21,["G2257"]]]},{"k":28821,"v":[[0,1,["G1161"]],[1,4,["G950"]],[4,5,["G2248"]],[5,6,["G4862"]],[6,7,["G5213"]],[7,8,["G1519"]],[8,9,["G5547"]],[9,10,["G2532"]],[10,12,["G5548"]],[12,13,["G2248"]],[13,15,["G2316"]]]},{"k":28822,"v":[[0,4,["G4972","G2532"]],[4,5,["G2248"]],[5,6,["G2532"]],[6,7,["G1325"]],[7,8,["G3588"]],[8,9,["G728"]],[9,11,["G3588"]],[11,12,["G4151"]],[12,13,["G1722"]],[13,14,["G2257"]],[14,15,["G2588"]]]},{"k":28823,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G1941"]],[3,4,["G2316"]],[4,7,["G3144"]],[7,8,["G1909"]],[8,9,["G1699"]],[9,10,["G5590"]],[10,11,["G3754"]],[11,13,["G5339"]],[13,14,["G5216"]],[14,16,["G2064"]],[16,19,["G3765"]],[19,20,["G1519"]],[20,21,["G2882"]]]},{"k":28824,"v":[[0,1,["G3756"]],[1,3,["G3754"]],[3,7,["G2961"]],[7,8,["G5216"]],[8,9,["G4102"]],[9,10,["G235"]],[10,11,["G2070"]],[11,12,["G4904"]],[12,14,["G5216"]],[14,15,["G5479"]],[15,16,["G1063"]],[16,18,["G4102"]],[18,20,["G2476"]]]},{"k":28825,"v":[[0,1,["G1161"]],[1,3,["G2919"]],[3,4,["G5124"]],[4,6,["G1683"]],[6,10,["G3361"]],[10,11,["G2064"]],[11,12,["G3825"]],[12,13,["G4314"]],[13,14,["G5209"]],[14,15,["G1722"]],[15,16,["G3077"]]]},{"k":28826,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G1473"]],[3,6,["G3076","G5209"]],[6,7,["G5101","(G2532)"]],[7,8,["G2076"]],[8,14,["G2165","G3165"]],[14,15,["G1508"]],[15,21,["G3076"]],[21,22,["G1537"]],[22,23,["G1700"]]]},{"k":28827,"v":[[0,1,["G2532"]],[1,3,["G1125"]],[3,4,["G5124"]],[4,5,["G846"]],[5,7,["G5213"]],[7,8,["G3363"]],[8,11,["G2064"]],[11,14,["G2192"]],[14,15,["G3077"]],[15,16,["G575"]],[16,19,["G3739"]],[19,20,["G3165"]],[20,21,["G1163"]],[21,23,["G5463"]],[23,25,["G3982"]],[25,26,["G1909"]],[26,27,["G5209"]],[27,28,["G3956"]],[28,29,["G3754"]],[29,30,["G1699"]],[30,31,["G5479"]],[31,32,["G2076"]],[32,36,["G5216"]],[36,37,["G3956"]]]},{"k":28828,"v":[[0,1,["G1063"]],[1,3,["G1537"]],[3,4,["G4183"]],[4,5,["G2347"]],[5,6,["G2532"]],[6,7,["G4928"]],[7,9,["G2588"]],[9,11,["G1125"]],[11,13,["G5213"]],[13,14,["G1223"]],[14,15,["G4183"]],[15,16,["G1144"]],[16,17,["G3756"]],[17,18,["G2443"]],[18,22,["G3076"]],[22,23,["G235"]],[23,24,["G2443"]],[24,27,["G1097"]],[27,28,["G3588"]],[28,29,["G26"]],[29,30,["G3739"]],[30,32,["G2192"]],[32,34,["G4056"]],[34,35,["G1519"]],[35,36,["G5209"]]]},{"k":28829,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5100"]],[3,6,["G3076"]],[6,9,["G3756"]],[9,10,["G3076"]],[10,11,["G1691"]],[11,12,["G235"]],[12,14,["G575","G3313"]],[14,15,["G2443"]],[15,18,["G3361"]],[18,19,["G1912"]],[19,20,["G5209"]],[20,21,["G3956"]]]},{"k":28830,"v":[[0,1,["G2425"]],[1,5,["G5108"]],[5,7,["G3778"]],[7,8,["G2009"]],[8,9,["G3588"]],[9,12,["G5259"]],[12,13,["G4119"]]]},{"k":28831,"v":[[0,2,["G5620"]],[2,3,["G5121"]],[3,4,["G5209"]],[4,6,["G3123"]],[6,8,["G5483"]],[8,10,["G2532"]],[10,11,["G3870"]],[11,13,["G3381"]],[13,17,["G5108"]],[17,21,["G2666"]],[21,23,["G4055"]],[23,24,["G3077"]]]},{"k":28832,"v":[[0,1,["G1352"]],[1,3,["G3870"]],[3,4,["G5209"]],[4,8,["G2964"]],[8,10,["G26"]],[10,11,["G1519"]],[11,12,["G846"]]]},{"k":28833,"v":[[0,1,["G1063"]],[1,2,["G1519"]],[2,4,["G5124"]],[4,5,["G2532"]],[5,8,["G1125"]],[8,9,["G2443"]],[9,12,["G1097"]],[12,13,["G3588"]],[13,14,["G1382"]],[14,16,["G5216"]],[16,17,["G1487"]],[17,19,["G2075"]],[19,20,["G5255"]],[20,21,["G1519"]],[21,23,["G3956"]]]},{"k":28834,"v":[[0,0,["(G1161)"]],[0,2,["G3739"]],[2,4,["G5483"]],[4,6,["G5100"]],[6,7,["G1473"]],[7,9,["G2532"]],[9,10,["G1063"]],[10,15,["G1536","G1473","G5483","(G2532)"]],[15,17,["G3739"]],[17,19,["G5483"]],[19,23,["G1223","G5209"]],[23,27,["G1722"]],[27,29,["G4383"]],[29,31,["G5547"]]]},{"k":28835,"v":[[0,1,["G3363"]],[1,2,["G4567"]],[2,6,["G4122"]],[6,9,["G1063"]],[9,13,["G50","G3756"]],[13,15,["G846"]],[15,16,["G3540"]]]},{"k":28836,"v":[[0,4,["G2064"]],[4,5,["G1519"]],[5,6,["G5174"]],[6,7,["G1519"]],[7,9,["G5547"]],[9,10,["G2098"]],[10,11,["G2532"]],[11,13,["G2374"]],[13,15,["G455"]],[15,17,["G3427"]],[17,18,["G1722"]],[18,20,["G2962"]]]},{"k":28837,"v":[[0,2,["G2192"]],[2,3,["G3756"]],[3,4,["G425"]],[4,6,["G3450"]],[6,7,["G4151"]],[7,9,["G3165"]],[9,10,["G2147"]],[10,11,["G3361"]],[11,12,["G5103"]],[12,13,["G3450"]],[13,14,["G80"]],[14,15,["G235"]],[15,18,["G657"]],[18,20,["G846"]],[20,24,["G1831"]],[24,25,["G1519"]],[25,26,["G3109"]]]},{"k":28838,"v":[[0,1,["G1161"]],[1,2,["G5485"]],[2,5,["G2316"]],[5,11,["G2358","G3842","G2248"]],[11,12,["G1722"]],[12,13,["G5547"]],[13,14,["G2532"]],[14,16,["G5319"]],[16,17,["G3588"]],[17,18,["G3744"]],[18,20,["G848"]],[20,21,["G1108"]],[21,22,["G1223"]],[22,23,["G2257"]],[23,24,["G1722"]],[24,25,["G3956"]],[25,26,["G5117"]]]},{"k":28839,"v":[[0,1,["G3754"]],[1,3,["G2070"]],[3,5,["G2316"]],[5,8,["G2175"]],[8,10,["G5547"]],[10,11,["G1722"]],[11,15,["G4982"]],[15,16,["G2532"]],[16,17,["G1722"]],[17,20,["G622"]]]},{"k":28840,"v":[[0,3,["G3739","G3303"]],[3,7,["G3744"]],[7,9,["G2288"]],[9,10,["G1519"]],[10,11,["G2288"]],[11,12,["G1161"]],[12,15,["G3739"]],[15,17,["G3744"]],[17,19,["G2222"]],[19,20,["G1519"]],[20,21,["G2222"]],[21,22,["G2532"]],[22,23,["G5101"]],[23,25,["G2425"]],[25,26,["G4314"]],[26,28,["G5023"]]]},{"k":28841,"v":[[0,1,["G1063"]],[1,3,["G2070"]],[3,4,["G3756"]],[4,5,["G5613"]],[5,6,["G4183"]],[6,8,["G2585"]],[8,9,["G3588"]],[9,10,["G3056"]],[10,12,["G2316"]],[12,13,["G235"]],[13,14,["G5613"]],[14,15,["G1537"]],[15,16,["G1505"]],[16,17,["G235"]],[17,18,["G5613"]],[18,19,["G1537"]],[19,20,["G2316"]],[20,23,["G2714"]],[23,25,["G2316"]],[25,26,["G2980"]],[26,28,["G1722"]],[28,29,["G5547"]]]},{"k":28842,"v":[[0,3,["G756"]],[3,4,["G3825"]],[4,6,["G4921"]],[6,7,["G1438"]],[7,8,["G1508"]],[8,9,["G5535"]],[9,11,["G5613"]],[11,12,["G5100"]],[12,14,["G1992"]],[14,16,["G4956"]],[16,17,["G4314"]],[17,18,["G5209"]],[18,19,["G2228"]],[19,22,["G4956"]],[22,23,["G1537"]],[23,24,["G5216"]]]},{"k":28843,"v":[[0,1,["G5210"]],[1,2,["G2075"]],[2,3,["G2257"]],[3,4,["G1992"]],[4,5,["G1449"]],[5,6,["G1722"]],[6,7,["G2257"]],[7,8,["G2588"]],[8,9,["G1097"]],[9,10,["G2532"]],[10,11,["G314"]],[11,12,["G5259"]],[12,13,["G3956"]],[13,14,["G444"]]]},{"k":28844,"v":[[0,6,["G5319"]],[6,7,["(G3754)"]],[7,8,["G2075"]],[8,10,["G1992"]],[10,12,["G5547"]],[12,13,["G1247"]],[13,14,["G5259"]],[14,15,["G2257"]],[15,16,["G1449"]],[16,17,["G3756"]],[17,19,["G3188"]],[19,20,["G235"]],[20,23,["G4151"]],[23,26,["G2198"]],[26,27,["G2316"]],[27,28,["G3756"]],[28,29,["G1722"]],[29,30,["G4109"]],[30,32,["G3035"]],[32,33,["G235"]],[33,34,["G1722"]],[34,35,["G4560"]],[35,36,["G4109"]],[36,39,["G2588"]]]},{"k":28845,"v":[[0,1,["G1161"]],[1,2,["G5108"]],[2,3,["G4006"]],[3,4,["G2192"]],[4,6,["G1223"]],[6,7,["G5547"]],[7,8,["G4314"]],[8,9,["G2316"]]]},{"k":28846,"v":[[0,1,["G3756"]],[1,2,["G3754"]],[2,4,["G2070"]],[4,5,["G2425"]],[5,6,["G575"]],[6,7,["G1438"]],[7,9,["G3049"]],[9,11,["G5100"]],[11,12,["G5613"]],[12,13,["G1537"]],[13,14,["G1438"]],[14,15,["G235"]],[15,16,["G2257"]],[16,17,["G2426"]],[17,19,["G1537"]],[19,20,["G2316"]]]},{"k":28847,"v":[[0,1,["G3739"]],[1,2,["G2532"]],[2,6,["G2427","G2248"]],[6,7,["G1249"]],[7,10,["G2537"]],[10,11,["G1242"]],[11,12,["G3756"]],[12,15,["G1121"]],[15,16,["G235"]],[16,19,["G4151"]],[19,20,["G1063"]],[20,21,["G3588"]],[21,22,["G1121"]],[22,23,["G615"]],[23,24,["G1161"]],[24,25,["G3588"]],[25,26,["G4151"]],[26,28,["G2227"]]]},{"k":28848,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G1248"]],[4,6,["G2288"]],[6,7,["G1722","G1121"]],[7,9,["G1795"]],[9,10,["G1722"]],[10,11,["G3037"]],[11,12,["G1096"]],[12,13,["G1722","G1391"]],[13,15,["G5620"]],[15,16,["G3588"]],[16,17,["G5207"]],[17,19,["G2474"]],[19,20,["G1410"]],[20,21,["G3361"]],[21,22,["G816"]],[22,23,["(G1519)"]],[23,24,["G3588"]],[24,25,["G4383"]],[25,27,["G3475"]],[27,28,["G1223"]],[28,29,["G3588"]],[29,30,["G1391"]],[30,32,["G846"]],[32,33,["G4383"]],[33,40,["G2673"]]]},{"k":28849,"v":[[0,1,["G4459"]],[1,3,["G3780"]],[3,4,["G3588"]],[4,5,["G1248"]],[5,7,["G3588"]],[7,8,["G4151"]],[8,9,["G2071"]],[9,10,["G3123"]],[10,11,["G1722","G1391"]]]},{"k":28850,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G1248"]],[4,6,["G2633"]],[6,8,["G1391"]],[8,9,["G4183"]],[9,10,["G3123"]],[10,12,["G3588"]],[12,13,["G1248"]],[13,15,["G1343"]],[15,16,["G4052"]],[16,17,["G1722"]],[17,18,["G1391"]]]},{"k":28851,"v":[[0,1,["G1063"]],[1,2,["G2532"]],[2,7,["G1392"]],[7,10,["G1392","G3761"]],[10,11,["G1722"]],[11,12,["G5129"]],[12,13,["G3313"]],[13,16,["G1752"]],[16,17,["G3588"]],[17,18,["G1391"]],[18,20,["G5235"]]]},{"k":28852,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,7,["G2673"]],[7,9,["G1223","G1391"]],[9,10,["G4183"]],[10,11,["G3123"]],[11,14,["G3306"]],[14,16,["G1722","G1391"]]]},{"k":28853,"v":[[0,2,["G3767"]],[2,5,["G2192"]],[5,6,["G5108"]],[6,7,["G1680"]],[7,9,["G5530"]],[9,10,["G4183"]],[10,13,["G3954"]]]},{"k":28854,"v":[[0,1,["G2532"]],[1,2,["G3756"]],[2,3,["G2509"]],[3,4,["G3475"]],[4,6,["G5087"]],[6,8,["G2571"]],[8,9,["G1909"]],[9,10,["G1438"]],[10,11,["G4383"]],[11,13,["G3588"]],[13,14,["G5207"]],[14,16,["G2474"]],[16,18,["G3361"]],[18,20,["G816"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G5056"]],[23,28,["G2673"]]]},{"k":28855,"v":[[0,1,["G235"]],[1,2,["G846"]],[2,3,["G3540"]],[3,5,["G4456"]],[5,6,["G1063"]],[6,7,["G891"]],[7,9,["G4594"]],[9,10,["G3306"]],[10,11,["G3588"]],[11,12,["G846"]],[12,13,["G2571"]],[13,15,["G343","G3361"]],[15,16,["G1909"]],[16,17,["G3588"]],[17,18,["G320"]],[18,20,["G3588"]],[20,21,["G3820"]],[21,22,["G1242"]],[22,23,["G3748"]],[23,27,["G2673"]],[27,28,["G1722"]],[28,29,["G5547"]]]},{"k":28856,"v":[[0,1,["G235"]],[1,3,["G2193"]],[3,5,["G4594"]],[5,6,["G2259"]],[6,7,["G3475"]],[7,9,["G314"]],[9,11,["G2571"]],[11,12,["G2749"]],[12,13,["G1909"]],[13,14,["G846"]],[14,15,["G2588"]]]},{"k":28857,"v":[[0,1,["G1161"]],[1,2,["G2259","G302"]],[2,5,["G1994"]],[5,6,["G4314"]],[6,8,["G2962"]],[8,9,["G3588"]],[9,10,["G2571"]],[10,14,["G4014"]]]},{"k":28858,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2076"]],[4,6,["G4151"]],[6,7,["G1161"]],[7,8,["G3757"]],[8,9,["G3588"]],[9,10,["G4151"]],[10,13,["G2962"]],[13,15,["G1563"]],[15,17,["G1657"]]]},{"k":28859,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,3,["G3956"]],[3,5,["G343"]],[5,6,["G4383"]],[6,11,["G2734"]],[11,12,["G3588"]],[12,13,["G1391"]],[13,16,["G2962"]],[16,18,["G3339"]],[18,20,["G3588"]],[20,21,["G846"]],[21,22,["G1504"]],[22,23,["G575"]],[23,24,["G1391"]],[24,25,["G1519"]],[25,26,["G1391"]],[26,28,["G2509"]],[28,29,["G575"]],[29,31,["G4151"]],[31,34,["G2962"]]]},{"k":28860,"v":[[0,1,["G1223","G5124"]],[1,4,["G2192"]],[4,5,["G5026"]],[5,6,["G1248"]],[6,7,["G2531"]],[7,11,["G1653"]],[11,13,["G1573"]],[13,14,["G3756"]]]},{"k":28861,"v":[[0,1,["G235"]],[1,3,["G550"]],[3,4,["G3588"]],[4,6,["G2927"]],[6,8,["G152"]],[8,9,["G3361"]],[9,10,["G4043"]],[10,11,["G1722"]],[11,12,["G3834"]],[12,13,["G3366"]],[13,19,["G1389","G3588","G3056","G2316"]],[19,20,["G235"]],[20,22,["G5321"]],[22,24,["G3588"]],[24,25,["G225"]],[25,26,["G4921"]],[26,27,["G1438"]],[27,28,["G4314"]],[28,29,["G3956"]],[29,30,["G444"]],[30,31,["G4893"]],[31,34,["G1799"]],[34,36,["G2316"]]]},{"k":28862,"v":[[0,1,["G1161"]],[1,2,["G1487","(G2532)"]],[2,3,["G2257"]],[3,4,["G2098"]],[4,5,["G2076"]],[5,6,["G2572"]],[6,8,["G2076"]],[8,9,["G2572"]],[9,10,["G1722"]],[10,14,["G622"]]]},{"k":28863,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G3588"]],[3,4,["G2316"]],[4,6,["G5127"]],[6,7,["G165"]],[7,9,["G5186"]],[9,10,["G3588"]],[10,11,["G3540"]],[11,16,["G571"]],[16,17,["G3361"]],[17,18,["G3588"]],[18,19,["G5462"]],[19,21,["G3588"]],[21,22,["G1391"]],[22,23,["G2098"]],[23,25,["G5547"]],[25,26,["G3739"]],[26,27,["G2076"]],[27,29,["G1504"]],[29,31,["G2316"]],[31,33,["G826"]],[33,35,["G846"]]]},{"k":28864,"v":[[0,1,["G1063"]],[1,3,["G2784"]],[3,4,["G3756"]],[4,5,["G1438"]],[5,6,["G235"]],[6,7,["G5547"]],[7,8,["G2424"]],[8,10,["G2962"]],[10,11,["G1161"]],[11,12,["G1438"]],[12,13,["G5216"]],[13,14,["G1401"]],[14,17,["G1223","G2424"]]]},{"k":28865,"v":[[0,1,["G3754"]],[1,2,["G2316"]],[2,4,["G2036"]],[4,6,["G5457"]],[6,8,["G2989"]],[8,10,["G1537"]],[10,11,["G4655"]],[11,12,["(G3739)"]],[12,13,["G2989"]],[13,14,["G1722"]],[14,15,["G2257"]],[15,16,["G2588"]],[16,17,["G4314"]],[17,20,["G5462"]],[20,22,["G3588"]],[22,23,["G1108"]],[23,25,["G3588"]],[25,26,["G1391"]],[26,28,["G2316"]],[28,29,["G1722"]],[29,31,["G4383"]],[31,33,["G2424"]],[33,34,["G5547"]]]},{"k":28866,"v":[[0,1,["G1161"]],[1,3,["G2192"]],[3,4,["G5126"]],[4,5,["G2344"]],[5,6,["G1722"]],[6,7,["G3749"]],[7,8,["G4632"]],[8,9,["G2443"]],[9,10,["G3588"]],[10,11,["G5236"]],[11,13,["G3588"]],[13,14,["G1411"]],[14,16,["G5600"]],[16,18,["G2316"]],[18,19,["G2532"]],[19,20,["G3361"]],[20,21,["G1537"]],[21,22,["G2257"]]]},{"k":28867,"v":[[0,3,["G2346"]],[3,4,["G1722"]],[4,6,["G3956"]],[6,7,["G235"]],[7,8,["G3756"]],[8,9,["G4729"]],[9,12,["G639"]],[12,13,["G235"]],[13,14,["G3756"]],[14,16,["G1820"]]]},{"k":28868,"v":[[0,1,["G1377"]],[1,2,["G235"]],[2,3,["G3756"]],[3,4,["G1459"]],[4,6,["G2598"]],[6,7,["G235"]],[7,8,["G3756"]],[8,9,["G622"]]]},{"k":28869,"v":[[0,1,["G3842"]],[1,3,["G4064"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G4983"]],[6,7,["G3588"]],[7,8,["G3500"]],[8,10,["G3588"]],[10,11,["G2962"]],[11,12,["G2424"]],[12,13,["G2443"]],[13,14,["G3588"]],[14,15,["G2222"]],[15,16,["G2532"]],[16,18,["G2424"]],[18,22,["G5319"]],[22,23,["G1722"]],[23,24,["G2257"]],[24,25,["G4983"]]]},{"k":28870,"v":[[0,1,["G1063"]],[1,2,["G2249"]],[2,4,["G2198"]],[4,6,["G104"]],[6,7,["G3860"]],[7,8,["G1519"]],[8,9,["G2288"]],[9,12,["G1223","G2424"]],[12,13,["G2443"]],[13,14,["G3588"]],[14,15,["G2222"]],[15,16,["G2532"]],[16,18,["G2424"]],[18,22,["G5319"]],[22,23,["G1722"]],[23,24,["G2257"]],[24,25,["G2349"]],[25,26,["G4561"]]]},{"k":28871,"v":[[0,2,["G5620","(G3303)"]],[2,3,["G2288"]],[3,4,["G1754"]],[4,5,["G1722"]],[5,6,["G2254"]],[6,7,["G1161"]],[7,8,["G2222"]],[8,9,["G1722"]],[9,10,["G5213"]]]},{"k":28872,"v":[[0,0,["(G1161)"]],[0,2,["G2192"]],[2,3,["G3588"]],[3,4,["G846"]],[4,5,["G4151"]],[5,7,["G4102"]],[7,9,["G2596"]],[9,12,["G1125"]],[12,14,["G4100"]],[14,15,["G2532"]],[15,16,["G1352"]],[16,19,["G2980"]],[19,20,["G2249"]],[20,21,["G2532"]],[21,22,["G4100"]],[22,23,["G2532"]],[23,24,["G1352"]],[24,25,["G2980"]]]},{"k":28873,"v":[[0,1,["G1492"]],[1,2,["G3754"]],[2,6,["G1453"]],[6,7,["G3588"]],[7,8,["G2962"]],[8,9,["G2424"]],[9,12,["G1453"]],[12,13,["G2248"]],[13,14,["G2532"]],[14,15,["G1223"]],[15,16,["G2424"]],[16,17,["G2532"]],[17,19,["G3936"]],[19,21,["G4862"]],[21,22,["G5213"]]]},{"k":28874,"v":[[0,1,["G1063"]],[1,3,["G3956"]],[3,7,["G1223","G5209"]],[7,8,["G2443"]],[8,9,["G3588"]],[9,10,["G4121"]],[10,11,["G5485"]],[11,13,["G1223"]],[13,14,["G3588"]],[14,15,["G2169"]],[15,17,["G4119"]],[17,18,["G4052"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G1391"]],[21,23,["G2316"]]]},{"k":28875,"v":[[0,3,["G1352"]],[3,5,["G1573"]],[5,6,["G3756"]],[6,7,["G235"]],[7,8,["G1499"]],[8,9,["G2257"]],[9,10,["G1854"]],[10,11,["G444"]],[11,12,["G1311"]],[12,13,["G235"]],[13,14,["G3588"]],[14,15,["G2081"]],[15,18,["G341"]],[18,21,["G2250","G2532","G2250"]]]},{"k":28876,"v":[[0,1,["G1063"]],[1,2,["G2257"]],[2,3,["G1645"]],[3,4,["G2347"]],[4,10,["G3910"]],[10,11,["G2716"]],[11,13,["G2254"]],[13,17,["G2596","G5236","G1519","G5236"]],[17,19,["G166"]],[19,20,["G922"]],[20,22,["G1391"]]]},{"k":28877,"v":[[0,2,["G2257"]],[2,5,["G4648","G3361"]],[5,10,["G991"]],[10,11,["G235"]],[11,18,["G991","G3361"]],[18,19,["G1063"]],[19,24,["G991"]],[24,26,["G4340"]],[26,27,["G1161"]],[27,33,["G991","G3361"]],[33,35,["G166"]]]},{"k":28878,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G1437"]],[5,6,["G2257"]],[6,7,["G1919"]],[7,8,["G3614"]],[8,11,["G4636"]],[11,13,["G2647"]],[13,15,["G2192"]],[15,17,["G3619"]],[17,18,["G1537"]],[18,19,["G2316"]],[19,21,["G3614"]],[21,25,["G886"]],[25,26,["G166"]],[26,27,["G1722"]],[27,28,["G3588"]],[28,29,["G3772"]]]},{"k":28879,"v":[[0,1,["G1063"]],[1,2,["G1722"]],[2,3,["G5129"]],[3,4,["(G2532)"]],[4,5,["G4727"]],[5,7,["G1971"]],[7,11,["G1902"]],[11,13,["G2257"]],[13,14,["G3613"]],[14,15,["G3588"]],[15,17,["G1537"]],[17,18,["G3772"]]]},{"k":28880,"v":[[0,3,["G1489"]],[3,4,["(G2532)"]],[4,6,["G1746"]],[6,9,["G3756"]],[9,11,["G2147"]],[11,12,["G1131"]]]},{"k":28881,"v":[[0,1,["G1063","(G2532)"]],[1,4,["G5607"]],[4,5,["G1722"]],[5,7,["G4636"]],[7,9,["G4727"]],[9,11,["G916"]],[11,12,["G3756"]],[12,14,["G1909","G3739"]],[14,16,["G2309"]],[16,18,["G1562"]],[18,19,["G235"]],[19,21,["G1902"]],[21,22,["G2443"]],[22,23,["G2349"]],[23,27,["G2666"]],[27,28,["G5259"]],[28,29,["G2222"]]]},{"k":28882,"v":[[0,1,["G1161"]],[1,5,["G2716"]],[5,6,["G2248"]],[6,7,["G1519"]],[7,10,["G846","G5124"]],[10,12,["G2316"]],[12,16,["G1325","G2532"]],[16,18,["G2254"]],[18,19,["G3588"]],[19,20,["G728"]],[20,22,["G3588"]],[22,23,["G4151"]]]},{"k":28883,"v":[[0,1,["G3767"]],[1,4,["G3842"]],[4,5,["G2292"]],[5,6,["(G1492)"]],[6,7,["G3754"]],[7,12,["G1736"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G4983"]],[15,18,["G1553"]],[18,19,["G575"]],[19,20,["G3588"]],[20,21,["G2962"]]]},{"k":28884,"v":[[0,1,["G1063"]],[1,3,["G4043"]],[3,4,["G1223"]],[4,5,["G4102"]],[5,6,["G3756"]],[6,7,["G1223"]],[7,8,["G1491"]]]},{"k":28885,"v":[[0,0,["(G1161)"]],[0,3,["G2292"]],[3,6,["G2532"]],[6,7,["G2106"]],[7,8,["G3123"]],[8,11,["G1553"]],[11,12,["G1537"]],[12,13,["G3588"]],[13,14,["G4983"]],[14,15,["G2532"]],[15,18,["G1736"]],[18,19,["G4314"]],[19,20,["G3588"]],[20,21,["G2962"]]]},{"k":28886,"v":[[0,1,["G1352"]],[1,2,["(G2532)"]],[2,3,["G5389"]],[3,5,["G1535"]],[5,6,["G1736"]],[6,7,["G1535"]],[7,8,["G1553"]],[8,11,["G1511"]],[11,12,["G2101"]],[12,14,["G846"]]]},{"k":28887,"v":[[0,1,["G1063"]],[1,2,["G2248"]],[2,3,["G1163"]],[3,4,["G3956"]],[4,5,["G5319"]],[5,6,["G1715"]],[6,7,["G3588"]],[7,9,["G968"]],[9,11,["G5547"]],[11,12,["G2443"]],[12,14,["G1538"]],[14,16,["G2865"]],[16,18,["G3588"]],[18,20,["G1223"]],[20,22,["G4983"]],[22,23,["G4314"]],[23,25,["G3739"]],[25,28,["G4238"]],[28,29,["G1535"]],[29,32,["G18"]],[32,33,["G1535"]],[33,34,["G2556"]]]},{"k":28888,"v":[[0,1,["G1492"]],[1,2,["G3767"]],[2,3,["G3588"]],[3,4,["G5401"]],[4,6,["G3588"]],[6,7,["G2962"]],[7,9,["G3982"]],[9,10,["G444"]],[10,11,["G1161"]],[11,15,["G5319"]],[15,17,["G2316"]],[17,18,["G1161"]],[18,20,["G1679"]],[20,21,["G2532"]],[21,24,["G5319"]],[24,25,["G1722"]],[25,26,["G5216"]],[26,27,["G4893"]]]},{"k":28889,"v":[[0,1,["G1063"]],[1,3,["G4921"]],[3,4,["G3756"]],[4,5,["G1438"]],[5,6,["G3825"]],[6,8,["G5213"]],[8,9,["G235"]],[9,10,["G1325"]],[10,11,["G5213"]],[11,12,["G874"]],[12,14,["G2745"]],[14,17,["G5228","G2257"]],[17,18,["G2443"]],[18,21,["G2192"]],[21,23,["G4314"]],[23,27,["G2744"]],[27,28,["G1722"]],[28,29,["G4383"]],[29,30,["G2532"]],[30,31,["G3756"]],[31,33,["G2588"]]]},{"k":28890,"v":[[0,1,["G1063"]],[1,2,["G1535"]],[2,6,["G1839"]],[6,10,["G2316"]],[10,12,["G1535"]],[12,15,["G4993"]],[15,20,["G5213"]]]},{"k":28891,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G26"]],[3,5,["G5547"]],[5,6,["G4912"]],[6,7,["G2248"]],[7,10,["G5124"]],[10,11,["G2919"]],[11,12,["G3754"]],[12,13,["G1487"]],[13,14,["G1520"]],[14,15,["G599"]],[15,16,["G5228"]],[16,17,["G3956"]],[17,18,["G686"]],[18,21,["G599","G3956"]]]},{"k":28892,"v":[[0,1,["G2532"]],[1,4,["G599"]],[4,5,["G5228"]],[5,6,["G3956"]],[6,7,["G2443"]],[7,10,["G2198"]],[10,13,["G3371"]],[13,14,["G2198"]],[14,16,["G1438"]],[16,17,["G235"]],[17,21,["G599"]],[21,22,["G5228"]],[22,23,["G846"]],[23,24,["G2532"]],[24,26,["G1453"]]]},{"k":28893,"v":[[0,1,["G5620"]],[1,2,["G575","G3568"]],[2,3,["G1492"]],[3,4,["G2249"]],[4,6,["G3762"]],[6,7,["G2596"]],[7,9,["G4561"]],[9,10,["G1161"]],[10,11,["G1499"]],[11,14,["G1097"]],[14,15,["G5547"]],[15,16,["G2596"]],[16,18,["G4561"]],[18,19,["G235"]],[19,20,["G3568"]],[20,22,["G1097"]],[22,26,["G3765"]]]},{"k":28894,"v":[[0,1,["G5620"]],[1,4,["G1536"]],[4,6,["G1722"]],[6,7,["G5547"]],[7,11,["G2537"]],[11,12,["G2937"]],[12,14,["G744"]],[14,17,["G3928"]],[17,18,["G2400"]],[18,20,["G3956"]],[20,22,["G1096"]],[22,23,["G2537"]]]},{"k":28895,"v":[[0,1,["G1161"]],[1,3,["G3956"]],[3,5,["G1537"]],[5,6,["G2316"]],[6,9,["G2644"]],[9,10,["G2248"]],[10,12,["G1438"]],[12,13,["G1223"]],[13,14,["G2424"]],[14,15,["G5547"]],[15,16,["G2532"]],[16,18,["G1325"]],[18,20,["G2254"]],[20,21,["G3588"]],[21,22,["G1248"]],[22,24,["G2643"]]]},{"k":28896,"v":[[0,2,["G5613"]],[2,3,["G3754"]],[3,4,["G2316"]],[4,5,["G2258"]],[5,6,["G1722"]],[6,7,["G5547"]],[7,8,["G2644"]],[8,10,["G2889"]],[10,12,["G1438"]],[12,13,["G3361"]],[13,14,["G3049"]],[14,15,["G846"]],[15,16,["G3900"]],[16,18,["G846"]],[18,19,["G2532"]],[19,21,["G5087"]],[21,22,["G1722"]],[22,23,["G2254"]],[23,24,["G3588"]],[24,25,["G3056"]],[25,27,["G2643"]]]},{"k":28897,"v":[[0,2,["G3767"]],[2,5,["G4243"]],[5,6,["G5228"]],[6,7,["G5547"]],[7,9,["G5613"]],[9,10,["G2316"]],[10,12,["G3870"]],[12,14,["G1223"]],[14,15,["G2257"]],[15,17,["G1189"]],[17,21,["G5228","G5547"]],[21,24,["G2644"]],[24,26,["G2316"]]]},{"k":28898,"v":[[0,1,["G1063"]],[1,4,["G4160"]],[4,8,["G266"]],[8,9,["G5228"]],[9,10,["G2257"]],[10,12,["G1097"]],[12,13,["G3361"]],[13,14,["G266"]],[14,15,["G2443"]],[15,16,["G2249"]],[16,19,["G1096"]],[19,21,["G1343"]],[21,23,["G2316"]],[23,24,["G1722"]],[24,25,["G846"]]]},{"k":28899,"v":[[0,2,["G1161"]],[2,5,["G4903"]],[5,8,["G3870"]],[8,10,["G2532"]],[10,12,["G5209"]],[12,13,["G1209"]],[13,14,["G3361"]],[14,15,["G3588"]],[15,16,["G5485"]],[16,18,["G2316"]],[18,19,["G1519"]],[19,20,["G2756"]]]},{"k":28900,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,6,["G1873"]],[6,7,["G4675"]],[7,10,["G2540"]],[10,11,["G1184"]],[11,12,["G2532"]],[12,13,["G1722"]],[13,15,["G2250"]],[15,17,["G4991"]],[17,20,["G997"]],[20,21,["G4671"]],[21,22,["G2400"]],[22,23,["G3568"]],[23,26,["G2144"]],[26,27,["G2540"]],[27,28,["G2400"]],[28,29,["G3568"]],[29,32,["G2250"]],[32,34,["G4991"]]]},{"k":28901,"v":[[0,1,["G1325"]],[1,2,["G3367"]],[2,3,["G4349"]],[3,4,["G1722"]],[4,6,["G3367"]],[6,7,["G2443"]],[7,8,["G3588"]],[8,9,["G1248"]],[9,11,["G3361"]],[11,12,["G3469"]]]},{"k":28902,"v":[[0,1,["G235"]],[1,2,["G1722"]],[2,3,["G3956"]],[3,5,["G4921"]],[5,6,["G1438"]],[6,7,["G5613"]],[7,9,["G1249"]],[9,11,["G2316"]],[11,12,["G1722"]],[12,13,["G4183"]],[13,14,["G5281"]],[14,15,["G1722"]],[15,16,["G2347"]],[16,17,["G1722"]],[17,18,["G318"]],[18,19,["G1722"]],[19,20,["G4730"]]]},{"k":28903,"v":[[0,1,["G1722"]],[1,2,["G4127"]],[2,3,["G1722"]],[3,4,["G5438"]],[4,5,["G1722"]],[5,6,["G181"]],[6,7,["G1722"]],[7,8,["G2873"]],[8,9,["G1722"]],[9,10,["G70"]],[10,11,["G1722"]],[11,12,["G3521"]]]},{"k":28904,"v":[[0,1,["G1722"]],[1,2,["G54"]],[2,3,["G1722"]],[3,4,["G1108"]],[4,5,["G1722"]],[5,6,["G3115"]],[6,7,["G1722"]],[7,8,["G5544"]],[8,9,["G1722"]],[9,11,["G40"]],[11,12,["G4151"]],[12,13,["G1722"]],[13,14,["G26"]],[14,15,["G505"]]]},{"k":28905,"v":[[0,1,["G1722"]],[1,3,["G3056"]],[3,5,["G225"]],[5,6,["G1722"]],[6,8,["G1411"]],[8,10,["G2316"]],[10,11,["G1223"]],[11,12,["G3588"]],[12,13,["G3696"]],[13,15,["G1343"]],[15,17,["G3588"]],[17,19,["G1188"]],[19,20,["G2532"]],[20,23,["G710"]]]},{"k":28906,"v":[[0,1,["G1223"]],[1,2,["G1391"]],[2,3,["G2532"]],[3,4,["G819"]],[4,5,["G1223"]],[5,7,["G1426"]],[7,8,["G2532"]],[8,10,["G2162"]],[10,11,["G5613"]],[11,12,["G4108"]],[12,13,["G2532"]],[13,15,["G227"]]]},{"k":28907,"v":[[0,1,["G5613"]],[1,2,["G50"]],[2,3,["G2532"]],[3,6,["G1921"]],[6,7,["G5613"]],[7,8,["G599"]],[8,9,["G2532"]],[9,10,["G2400"]],[10,12,["G2198"]],[12,13,["G5613"]],[13,14,["G3811"]],[14,15,["G2532"]],[15,16,["G3361"]],[16,17,["G2289"]]]},{"k":28908,"v":[[0,1,["G5613"]],[1,2,["G3076"]],[2,3,["G1161"]],[3,4,["G104"]],[4,5,["G5463"]],[5,6,["G5613"]],[6,7,["G4434"]],[7,8,["G1161"]],[8,11,["G4148","G4183"]],[11,12,["G5613"]],[12,13,["G2192"]],[13,14,["G3367"]],[14,15,["G2532"]],[15,17,["G2722"]],[17,19,["G3956"]]]},{"k":28909,"v":[[0,3,["G2881"]],[3,4,["G2257"]],[4,5,["G4750"]],[5,7,["G455"]],[7,8,["G4314"]],[8,9,["G5209"]],[9,10,["G2257"]],[10,11,["G2588"]],[11,13,["G4115"]]]},{"k":28910,"v":[[0,3,["G3756"]],[3,4,["G4729"]],[4,5,["G1722"]],[5,6,["G2254"]],[6,7,["G1161"]],[7,10,["G4729"]],[10,11,["G1722"]],[11,13,["G5216"]],[13,14,["G4698"]]]},{"k":28911,"v":[[0,1,["G1161"]],[1,4,["G489"]],[4,6,["G3588"]],[6,8,["G846"]],[8,9,["G3004"]],[9,10,["G5613"]],[10,13,["G5043"]],[13,15,["G5210"]],[15,16,["G2532"]],[16,17,["G4115"]]]},{"k":28912,"v":[[0,1,["G1096"]],[1,3,["G3361"]],[3,6,["G2086"]],[6,8,["G571"]],[8,9,["G1063"]],[9,10,["G5101"]],[10,11,["G3352"]],[11,13,["G1343"]],[13,14,["G2532"]],[14,15,["G458"]],[15,16,["G1161"]],[16,17,["G5101"]],[17,18,["G2842"]],[18,20,["G5457"]],[20,21,["G4314"]],[21,22,["G4655"]]]},{"k":28913,"v":[[0,1,["G1161"]],[1,2,["G5101"]],[2,3,["G4857"]],[3,5,["G5547"]],[5,6,["G4314"]],[6,7,["G955"]],[7,8,["G2228"]],[8,10,["G3310"]],[10,14,["G4103"]],[14,15,["G3326"]],[15,17,["G571"]]]},{"k":28914,"v":[[0,1,["G1161"]],[1,2,["G5101"]],[2,3,["G4783"]],[3,6,["G3485"]],[6,8,["G2316"]],[8,9,["G3326"]],[9,10,["G1497"]],[10,11,["G1063"]],[11,12,["G5210"]],[12,13,["G2075"]],[13,15,["G3485"]],[15,18,["G2198"]],[18,19,["G2316"]],[19,20,["G2531"]],[20,21,["G2316"]],[21,23,["G2036"]],[23,26,["G1774"]],[26,27,["G1722"]],[27,28,["G846"]],[28,29,["G2532"]],[29,31,["G1704"]],[31,33,["G2532"]],[33,36,["G2071"]],[36,37,["G846"]],[37,38,["G2316"]],[38,39,["G2532"]],[39,40,["G846"]],[40,42,["G2071"]],[42,43,["G3427"]],[43,44,["G2992"]]]},{"k":28915,"v":[[0,1,["G1352"]],[1,3,["G1831"]],[3,4,["G1537"]],[4,5,["G3319"]],[5,6,["G846"]],[6,7,["G2532"]],[7,10,["G873"]],[10,11,["G3004"]],[11,13,["G2962"]],[13,14,["G2532"]],[14,15,["G680"]],[15,16,["G3361"]],[16,18,["G169"]],[18,21,["G2504"]],[21,23,["G1523"]],[23,24,["G5209"]]]},{"k":28916,"v":[[0,1,["G2532"]],[1,3,["G2071"]],[3,4,["(G1519)"]],[4,5,["G3962"]],[5,7,["G5213"]],[7,8,["G2532"]],[8,9,["G5210"]],[9,11,["G2071","(G1519)"]],[11,12,["G3427"]],[12,13,["G5207"]],[13,14,["G2532"]],[14,15,["G2364"]],[15,16,["G3004"]],[16,18,["G2962"]],[18,19,["G3841"]]]},{"k":28917,"v":[[0,1,["G2192"]],[1,2,["G3767"]],[2,3,["G5025"]],[3,4,["G1860"]],[4,6,["G27"]],[6,9,["G2511"]],[9,10,["G1438"]],[10,11,["G575"]],[11,12,["G3956"]],[12,13,["G3436"]],[13,16,["G4561"]],[16,17,["G2532"]],[17,18,["G4151"]],[18,19,["G2005"]],[19,20,["G42"]],[20,21,["G1722"]],[21,23,["G5401"]],[23,25,["G2316"]]]},{"k":28918,"v":[[0,1,["G5562"]],[1,2,["G2248"]],[2,5,["G91"]],[5,7,["G3762"]],[7,10,["G5351"]],[10,12,["G3762"]],[12,15,["G4122"]],[15,17,["G3762"]]]},{"k":28919,"v":[[0,2,["G3004"]],[2,3,["G3756"]],[3,5,["G4314"]],[5,6,["G2633"]],[6,8,["G1063"]],[8,12,["G4280"]],[12,13,["G3754"]],[13,15,["G2075"]],[15,16,["G1722"]],[16,17,["G2257"]],[17,18,["G2588"]],[18,20,["G4880"]],[20,21,["G2532"]],[21,23,["G4800"]],[23,24,[]]]},{"k":28920,"v":[[0,1,["G4183"]],[1,3,["G3427"]],[3,6,["G3954"]],[6,7,["G4314"]],[7,8,["G5209"]],[8,9,["G4183"]],[9,11,["G3427"]],[11,12,["G2746"]],[12,13,["G5228"]],[13,14,["G5216"]],[14,17,["G4137"]],[17,19,["G3874"]],[19,22,["G5248"]],[22,23,["G5479"]],[23,24,["G1909"]],[24,25,["G3956"]],[25,26,["G2257"]],[26,27,["G2347"]]]},{"k":28921,"v":[[0,1,["G1063"]],[1,2,["G2532"]],[2,3,["G2257"]],[3,5,["G2064"]],[5,6,["G1519"]],[6,7,["G3109"]],[7,8,["G2257"]],[8,9,["G4561"]],[9,10,["G2192"]],[10,11,["G3762"]],[11,12,["G425"]],[12,13,["G235"]],[13,16,["G2346"]],[16,17,["G1722"]],[17,19,["G3956"]],[19,20,["G1855"]],[20,22,["G3163"]],[22,23,["G2081"]],[23,25,["G5401"]]]},{"k":28922,"v":[[0,1,["G235"]],[1,2,["G2316"]],[2,4,["G3870"]],[4,9,["G5011"]],[9,10,["G3870"]],[10,11,["G2248"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G3952"]],[14,16,["G5103"]]]},{"k":28923,"v":[[0,1,["G1161"]],[1,2,["G3756"]],[2,3,["G1722"]],[3,4,["G846"]],[4,5,["G3952"]],[5,6,["G3440"]],[6,7,["G235","(G2532)"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G3874"]],[10,11,["G3739"]],[11,14,["G3870"]],[14,15,["G1909"]],[15,16,["G5213"]],[16,19,["G312"]],[19,20,["G2254"]],[20,21,["G5216"]],[21,23,["G1972"]],[23,24,["G5216"]],[24,25,["G3602"]],[25,26,["G5216"]],[26,28,["G2205"]],[28,29,["G5228"]],[29,30,["G1700"]],[30,32,["G5620"]],[32,33,["G3165"]],[33,34,["G5463"]],[34,36,["G3123"]]]},{"k":28924,"v":[[0,1,["G3754"]],[1,2,["G1499"]],[2,6,["G3076","G5209"]],[6,7,["G1722"]],[7,9,["G1992"]],[9,12,["G3756"]],[12,13,["G3338"]],[13,14,["G1499"]],[14,17,["G3338"]],[17,18,["G1063"]],[18,20,["G991"]],[20,21,["G3754"]],[21,22,["G3588"]],[22,23,["G1565"]],[23,24,["G1992"]],[24,28,["G3076","G5209"]],[28,29,["G1499"]],[29,33,["G4314"]],[33,35,["G5610"]]]},{"k":28925,"v":[[0,1,["G3568"]],[1,3,["G5463"]],[3,4,["G3756"]],[4,5,["G3754"]],[5,9,["G3076"]],[9,10,["G235"]],[10,11,["G3754"]],[11,13,["G3076"]],[13,14,["G1519"]],[14,15,["G3341"]],[15,16,["G1063"]],[16,20,["G3076"]],[20,24,["G2596","G2316"]],[24,25,["G2443"]],[25,29,["G2210"]],[29,30,["G1537"]],[30,31,["G2257"]],[31,32,["G1722"]],[32,33,["G3367"]]]},{"k":28926,"v":[[0,1,["G1063"]],[1,2,["G2596","G2316"]],[2,3,["G3077"]],[3,4,["G2716"]],[4,5,["G3341"]],[5,6,["G1519"]],[6,7,["G4991"]],[7,12,["G278"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G3077"]],[15,17,["G3588"]],[17,18,["G2889"]],[18,19,["G2716"]],[19,20,["G2288"]]]},{"k":28927,"v":[[0,1,["G1063"]],[1,2,["G2400"]],[2,3,["G5124"]],[3,5,["G846"]],[5,7,["G5209"]],[7,8,["G3076"]],[8,12,["G2596","G2316"]],[12,13,["G4214"]],[13,14,["G4710"]],[14,16,["G2716"]],[16,18,["G5213"]],[18,19,["G235"]],[19,23,["G627"]],[23,24,["G235"]],[24,26,["G24"]],[26,27,["G235"]],[27,29,["G5401"]],[29,30,["G235"]],[30,33,["G1972"]],[33,34,["G235"]],[34,36,["G2205"]],[36,37,["G235"]],[37,39,["G1557"]],[39,40,["G1722"]],[40,41,["G3956"]],[41,45,["G4921"]],[45,46,["G1438"]],[46,48,["G1511"]],[48,49,["G53"]],[49,50,["G1722"]],[50,52,["G4229"]]]},{"k":28928,"v":[[0,1,["G686"]],[1,2,["G1499"]],[2,4,["G1125"]],[4,6,["G5213"]],[6,10,["G3756"]],[10,13,["G1752"]],[13,18,["G91"]],[18,19,["G3761"]],[19,22,["G1752"]],[22,25,["G91"]],[25,26,["G235"]],[26,28,["G2257"]],[28,29,["G4710"]],[29,30,["G5228"]],[30,31,["G5216"]],[31,34,["G1799"]],[34,36,["G2316"]],[36,38,["G5319"]],[38,39,["G4314"]],[39,40,["G5209"]]]},{"k":28929,"v":[[0,1,["G1223","G5124"]],[1,4,["G3870"]],[4,5,["G1909"]],[5,6,["G5216"]],[6,7,["G3874"]],[7,9,["G1161"]],[9,10,["G4056"]],[10,12,["G3123"]],[12,13,["G5463"]],[13,15,["G1909"]],[15,16,["G3588"]],[16,17,["G5479"]],[17,19,["G5103"]],[19,20,["G3754"]],[20,21,["G846"]],[21,22,["G4151"]],[22,24,["G373"]],[24,25,["G575"]],[25,26,["G5216"]],[26,27,["G3956"]]]},{"k":28930,"v":[[0,1,["G3754"]],[1,7,["G1536","G2744"]],[7,9,["G846"]],[9,10,["G5228"]],[10,11,["G5216"]],[11,15,["G2617","G3756"]],[15,16,["G235"]],[16,17,["G5613"]],[17,19,["G2980"]],[19,21,["G3956"]],[21,23,["G5213"]],[23,24,["G1722"]],[24,25,["G225"]],[25,26,["G2532"]],[26,27,["G3779"]],[27,28,["G2257"]],[28,29,["G2746"]],[29,30,["G3588"]],[30,33,["G1909"]],[33,34,["G5103"]],[34,36,["G1096"]],[36,38,["G225"]]]},{"k":28931,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,4,["G4698"]],[4,5,["G2076"]],[5,7,["G4056"]],[7,8,["G1519"]],[8,9,["G5209"]],[9,12,["G363"]],[12,13,["G3588"]],[13,14,["G5218"]],[14,16,["G5216"]],[16,17,["G3956"]],[17,18,["G5613"]],[18,19,["G3326"]],[19,20,["G5401"]],[20,21,["G2532"]],[21,22,["G5156"]],[22,24,["G1209"]],[24,25,["G846"]]]},{"k":28932,"v":[[0,2,["G5463"]],[2,3,["G3767"]],[3,4,["G3754"]],[4,7,["G2292"]],[7,8,["G1722"]],[8,9,["G5213"]],[9,10,["G1722"]],[10,11,["G3956"]],[11,12,[]]]},{"k":28933,"v":[[0,1,["G1161"]],[1,2,["G80"]],[2,7,["G1107","G5213"]],[7,9,["G3588"]],[9,10,["G5485"]],[10,12,["G2316"]],[12,13,["G1325"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G1577"]],[16,18,["G3109"]]]},{"k":28934,"v":[[0,2,["G3754"]],[2,3,["G1722"]],[3,5,["G4183"]],[5,6,["G1382"]],[6,8,["G2347"]],[8,9,["G3588"]],[9,10,["G4050"]],[10,12,["G846"]],[12,13,["G5479"]],[13,14,["G2532"]],[14,15,["G846"]],[15,16,["G899"]],[16,17,["G4432"]],[17,18,["G4052"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G4149"]],[21,23,["G846"]],[23,24,["G572"]]]},{"k":28935,"v":[[0,1,["G3754"]],[1,2,["G2596"]],[2,4,["G1411"]],[4,7,["G3140"]],[7,9,["G2532"]],[9,10,["G5228"]],[10,12,["G1411"]],[12,17,["G830"]]]},{"k":28936,"v":[[0,1,["G1189"]],[1,2,["G2257"]],[2,3,["G3326"]],[3,4,["G4183"]],[4,5,["G3874"]],[5,7,["G2248"]],[7,9,["G1209"]],[9,10,["G3588"]],[10,11,["G5485"]],[11,12,["G2532"]],[12,16,["G3588"]],[16,17,["G2842"]],[17,19,["G3588"]],[19,20,["G1248"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G40"]]]},{"k":28937,"v":[[0,1,["G2532"]],[1,5,["G3756"]],[5,6,["G2531"]],[6,8,["G1679"]],[8,9,["G235"]],[9,10,["G4412"]],[10,11,["G1325"]],[11,14,["G1438"]],[14,16,["G3588"]],[16,17,["G2962"]],[17,18,["G2532"]],[18,20,["G2254"]],[20,21,["G1223"]],[21,23,["G2307"]],[23,25,["G2316"]]]},{"k":28938,"v":[[0,3,["G2248"]],[3,4,["G3870"]],[4,5,["G5103"]],[5,6,["G2443"]],[6,7,["G2531"]],[7,10,["G4278"]],[10,11,["G3779"]],[11,14,["G2532"]],[14,15,["G2005"]],[15,16,["G1519"]],[16,17,["G5209"]],[17,18,["G3588"]],[18,19,["G5026"]],[19,20,["G5485"]],[20,21,["G2532"]]]},{"k":28939,"v":[[0,1,["G235"]],[1,2,["G5618"]],[2,4,["G4052"]],[4,5,["G1722"]],[5,6,["G3956"]],[6,9,["G4102"]],[9,10,["G2532"]],[10,11,["G3056"]],[11,12,["G2532"]],[12,13,["G1108"]],[13,14,["G2532"]],[14,16,["G3956"]],[16,17,["G4710"]],[17,18,["G2532"]],[18,19,["(G1537)"]],[19,20,["G5216"]],[20,21,["G26"]],[21,22,["G1722"]],[22,23,["G2254"]],[23,25,["G2443"]],[25,27,["G4052"]],[27,28,["G1722"]],[28,29,["G5026"]],[29,30,["G5485"]],[30,31,["G2532"]]]},{"k":28940,"v":[[0,2,["G3004"]],[2,3,["G3756"]],[3,4,["G2596"]],[4,5,["G2003"]],[5,6,["G235"]],[6,9,["G1223"]],[9,10,["G3588"]],[10,11,["G4710"]],[11,13,["G2087"]],[13,14,["G2532"]],[14,16,["G1381"]],[16,17,["G3588"]],[17,18,["G1103"]],[18,20,["G5212"]],[20,21,["G26"]]]},{"k":28941,"v":[[0,1,["G1063"]],[1,3,["G1097"]],[3,4,["G3588"]],[4,5,["G5485"]],[5,7,["G2257"]],[7,8,["G2962"]],[8,9,["G2424"]],[9,10,["G5547"]],[10,11,["G3754"]],[11,14,["G5607"]],[14,15,["G4145"]],[15,19,["G1223","G5209"]],[19,22,["G4433"]],[22,23,["G2443"]],[23,24,["G5210"]],[24,26,["G1565"]],[26,27,["G4432"]],[27,30,["G4147"]]]},{"k":28942,"v":[[0,1,["G2532"]],[1,2,["G1722","G5129"]],[2,4,["G1325"]],[4,6,["G1106"]],[6,7,["G1063"]],[7,8,["G5124"]],[8,10,["G4851"]],[10,12,["G5213"]],[12,13,["G3748"]],[13,16,["G4278"]],[16,17,["G3756"]],[17,18,["G3440"]],[18,20,["G4160"]],[20,21,["G235"]],[21,22,["G2532"]],[22,25,["G2309"]],[25,28,["G575","G4070"]]]},{"k":28943,"v":[[0,0,["(G1161)"]],[0,1,["G3570"]],[1,2,["G2532"]],[2,3,["G2005"]],[3,4,["G3588"]],[4,5,["G4160"]],[5,8,["G3704"]],[8,9,["G2509"]],[9,13,["G4288"]],[13,15,["G2309"]],[15,16,["G3779"]],[16,21,["G2005"]],[21,22,["G2532"]],[22,24,["G1537"]],[24,28,["G2192"]]]},{"k":28944,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,5,["G4295"]],[5,8,["G4288"]],[8,11,["G2144"]],[11,14,["G2526"]],[14,16,["G5100"]],[16,17,["G2192","G1437"]],[17,19,["G3756"]],[19,22,["G2526"]],[22,24,["G2192"]],[24,25,["G3756"]]]},{"k":28945,"v":[[0,1,["G1063"]],[1,4,["G3756"]],[4,5,["G2443"]],[5,7,["G243"]],[7,9,["G425"]],[9,10,["G1161"]],[10,11,["G5213"]],[11,12,["G2347"]]]},{"k":28946,"v":[[0,1,["G235"]],[1,2,["G1537"]],[2,4,["G2471"]],[4,6,["G3568"]],[6,7,["G1722"]],[7,9,["G2540"]],[9,10,["G5216"]],[10,11,["G4051"]],[11,16,["G1519"]],[16,17,["G1565"]],[17,18,["G5303"]],[18,19,["G2443"]],[19,20,["G1565"]],[20,21,["G4051"]],[21,22,["G2532"]],[22,24,["G1096"]],[24,27,["G1519"]],[27,28,["G5216"]],[28,29,["G5303"]],[29,30,["G3704"]],[30,33,["G1096"]],[33,34,["G2471"]]]},{"k":28947,"v":[[0,1,["G2531"]],[1,4,["G1125"]],[4,5,["G3588"]],[5,9,["G4183"]],[9,12,["G4121","G3756"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,18,["G3641"]],[18,21,["G1641","G3756"]]]},{"k":28948,"v":[[0,1,["G1161"]],[1,2,["G5485"]],[2,5,["G2316"]],[5,7,["G1325"]],[7,8,["G3588"]],[8,9,["G846"]],[9,11,["G4710"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G2588"]],[14,16,["G5103"]],[16,17,["G5228"]],[17,18,["G5216"]]]},{"k":28949,"v":[[0,1,["G3754"]],[1,2,["G3303"]],[2,4,["G1209"]],[4,5,["G3588"]],[5,6,["G3874"]],[6,7,["G1161"]],[7,8,["G5225"]],[8,10,["G4707"]],[10,14,["G830"]],[14,16,["G1831"]],[16,17,["G4314"]],[17,18,["G5209"]]]},{"k":28950,"v":[[0,1,["G1161"]],[1,4,["G4842"]],[4,5,["G3326"]],[5,6,["G846"]],[6,7,["G3588"]],[7,8,["G80"]],[8,9,["G3739"]],[9,10,["G1868"]],[10,12,["G1722"]],[12,13,["G3588"]],[13,14,["G2098"]],[14,15,["G1223"]],[15,16,["G3956"]],[16,17,["G3588"]],[17,18,["G1577"]]]},{"k":28951,"v":[[0,1,["G1161"]],[1,2,["G3756"]],[2,4,["G3440"]],[4,5,["G235"]],[5,8,["G2532"]],[8,9,["G5500"]],[9,10,["G5259"]],[10,11,["G3588"]],[11,12,["G1577"]],[12,15,["G4898"]],[15,16,["G2257"]],[16,17,["G4862"]],[17,18,["G5026"]],[18,19,["G5485"]],[19,22,["G1247"]],[22,23,["G5259"]],[23,24,["G2257"]],[24,25,["G4314"]],[25,26,["G3588"]],[26,27,["G1391"]],[27,29,["G3588"]],[29,30,["G846"]],[30,31,["G2962"]],[31,32,["G2532"]],[32,35,["G5216"]],[35,37,["G4288"]]]},{"k":28952,"v":[[0,1,["G4724"]],[1,2,["G5124"]],[2,4,["G3361"]],[4,5,["G5100"]],[5,7,["G3469"]],[7,8,["G2248"]],[8,9,["G1722"]],[9,10,["G5026"]],[10,11,["G100"]],[11,14,["G1247"]],[14,15,["G5259"]],[15,16,["G2257"]]]},{"k":28953,"v":[[0,2,["G4306"]],[2,4,["G2570"]],[4,5,["G3756"]],[5,6,["G3440"]],[6,9,["G1799"]],[9,12,["G2962"]],[12,13,["G235"]],[13,14,["G2532"]],[14,17,["G1799"]],[17,19,["G444"]]]},{"k":28954,"v":[[0,1,["G1161"]],[1,5,["G4842"]],[5,6,["G846"]],[6,7,["G2257"]],[7,8,["G80"]],[8,9,["G3739"]],[9,12,["G4178"]],[12,13,["G1381","(G5607)"]],[13,14,["G4705"]],[14,15,["G1722"]],[15,17,["G4183"]],[17,18,["G1161"]],[18,19,["G3570"]],[19,20,["G4183"]],[20,22,["G4706"]],[22,25,["G4183"]],[25,26,["G4006"]],[26,27,["G3588"]],[27,30,["G1519"]],[30,31,["G5209"]]]},{"k":28955,"v":[[0,1,["G1535"]],[1,5,["G5228"]],[5,6,["G5103"]],[6,9,["G1699"]],[9,10,["G2844"]],[10,11,["G2532"]],[11,12,["G4904"]],[12,13,["G1519"]],[13,14,["G5209"]],[14,15,["G1535"]],[15,16,["G2257"]],[16,17,["G80"]],[17,24,["G652"]],[24,27,["G1577"]],[27,30,["G1391"]],[30,32,["G5547"]]]},{"k":28956,"v":[[0,1,["G3767"]],[1,2,["G1731"]],[2,4,["G1519"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G1519","G4383"]],[7,8,["G3588"]],[8,9,["G1577"]],[9,10,["G3588"]],[10,11,["G1732"]],[11,13,["G5216"]],[13,14,["G26"]],[14,15,["G2532"]],[15,17,["G2257"]],[17,18,["G2746"]],[18,21,["G5228","G5216"]]]},{"k":28957,"v":[[0,1,["G1063"]],[1,3,["G4012","(G3303)"]],[3,4,["G3588"]],[4,5,["G1248"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G40"]],[8,10,["G2076"]],[10,11,["G4053"]],[11,13,["G3427"]],[13,15,["G1125"]],[15,17,["G5213"]]]},{"k":28958,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,4,["G3588"]],[4,8,["G4288","G5216"]],[8,10,["G3739"]],[10,12,["G2744"]],[12,13,["G5228"]],[13,14,["G5216"]],[14,18,["G3110"]],[18,19,["G3754"]],[19,20,["G882"]],[20,22,["G3903"]],[22,25,["G575","G4070"]],[25,26,["G2532","(G1537)"]],[26,27,["G5216"]],[27,28,["G2205"]],[28,30,["G2042"]],[30,32,["G4119"]]]},{"k":28959,"v":[[0,1,["G1161"]],[1,4,["G3992"]],[4,5,["G3588"]],[5,6,["G80"]],[6,7,["G3363"]],[7,8,["G2257"]],[8,9,["G2745"]],[9,10,["G5228"]],[10,11,["G5216"]],[11,15,["G2758"]],[15,16,["G1722"]],[16,17,["G5129"]],[17,18,["G3313"]],[18,19,["G2443"]],[19,20,["G2531"]],[20,22,["G3004"]],[22,25,["G5600"]],[25,26,["G3903"]]]},{"k":28960,"v":[[0,2,["G3381"]],[2,3,["G1437"]],[3,6,["G3110"]],[6,7,["G2064"]],[7,8,["G4862"]],[8,9,["G1698"]],[9,10,["G2532"]],[10,11,["G2147"]],[11,12,["G5209"]],[12,13,["G532"]],[13,14,["G2249"]],[14,15,["G2443"]],[15,17,["G3004"]],[17,18,["G3361"]],[18,21,["G5210"]],[21,22,["G2617"]],[22,23,["G1722"]],[23,25,["G5026"]],[25,26,["G5287"]],[26,27,["G2746"]]]},{"k":28961,"v":[[0,1,["G3767"]],[1,3,["G2233"]],[3,5,["G316"]],[5,7,["G3870"]],[7,8,["G3588"]],[8,9,["G80"]],[9,10,["G2443"]],[10,14,["G4281"]],[14,15,["G1519"]],[15,16,["G5209"]],[16,17,["G2532"]],[17,20,["G4294"]],[20,21,["G5216"]],[21,22,["G2129"]],[22,27,["G4293"]],[27,30,["G5026"]],[30,32,["G1511"]],[32,33,["G2092","(G3779)"]],[33,34,["G5613"]],[34,38,["G2129"]],[38,39,["G2532"]],[39,40,["G3361"]],[40,41,["G5618"]],[41,43,["G4124"]]]},{"k":28962,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,7,["G4687"]],[7,8,["G5340"]],[8,10,["G2325"]],[10,11,["G2532"]],[11,12,["G5340"]],[12,13,["G2532"]],[13,16,["G4687"]],[16,17,["G1909","G2129"]],[17,19,["G2325"]],[19,20,["G2532"]],[20,21,["G1909","G2129"]]]},{"k":28963,"v":[[0,2,["G1538"]],[2,4,["G2531"]],[4,6,["G4255"]],[6,9,["G2588"]],[9,14,["G3361"]],[14,15,["G1537","G3077"]],[15,16,["G2228"]],[16,17,["G1537"]],[17,18,["G318"]],[18,19,["G1063"]],[19,20,["G2316"]],[20,21,["G25"]],[21,23,["G2431"]],[23,24,["G1395"]]]},{"k":28964,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,4,["G1415"]],[4,9,["G4052","G3956","G5485"]],[9,10,["G1519"]],[10,11,["G5209"]],[11,12,["G2443"]],[12,14,["G3842"]],[14,15,["G2192"]],[15,16,["G3956"]],[16,17,["G841"]],[17,18,["G1722"]],[18,19,["G3956"]],[19,22,["G4052"]],[22,23,["G1519"]],[23,24,["G3956"]],[24,25,["G18"]],[25,26,["G2041"]]]},{"k":28965,"v":[[0,1,["G2531"]],[1,4,["G1125"]],[4,8,["G4650"]],[8,11,["G1325"]],[11,13,["G3588"]],[13,14,["G3993"]],[14,15,["G846"]],[15,16,["G1343"]],[16,17,["G3306"]],[17,19,["G1519","G165"]]]},{"k":28966,"v":[[0,1,["G1161"]],[1,4,["G2023"]],[4,5,["G4690"]],[5,7,["G3588"]],[7,8,["G4687"]],[8,9,["G2532"]],[9,10,["G5524"]],[10,11,["G740"]],[11,12,["G1519"]],[12,14,["G1035"]],[14,15,["G2532"]],[15,16,["G4129"]],[16,17,["G5216"]],[17,19,["G4703"]],[19,20,["G2532"]],[20,21,["G837"]],[21,22,["G3588"]],[22,23,["G1081"]],[23,25,["G5216"]],[25,26,["G1343"]]]},{"k":28967,"v":[[0,2,["G4148"]],[2,3,["G1722"]],[3,5,["G3956"]],[5,6,["G1519"]],[6,7,["G3956"]],[7,8,["G572"]],[8,9,["G3748"]],[9,10,["G2716"]],[10,11,["G1223"]],[11,12,["G2257"]],[12,13,["G2169"]],[13,15,["G2316"]]]},{"k":28968,"v":[[0,1,["G3754"]],[1,2,["G3588"]],[2,3,["G1248"]],[3,5,["G5026"]],[5,6,["G3009"]],[6,7,["G3756"]],[7,8,["G3440"]],[8,9,["G2076","G4322"]],[9,10,["G3588"]],[10,11,["G5303"]],[11,13,["G3588"]],[13,14,["G40"]],[14,15,["G235"]],[15,17,["G4052"]],[17,18,["G2532"]],[18,19,["G1223"]],[19,20,["G4183"]],[20,21,["G2169"]],[21,23,["G2316"]]]},{"k":28969,"v":[[0,2,["G1223"]],[2,3,["G3588"]],[3,4,["G1382"]],[4,6,["G5026"]],[6,7,["G1248"]],[7,9,["G1392"]],[9,10,["G2316"]],[10,12,["G5216"]],[12,13,["G3671"]],[13,14,["G5292"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G2098"]],[17,19,["G5547"]],[19,20,["G2532"]],[20,23,["G572"]],[23,24,["G2842"]],[24,25,["G1519"]],[25,26,["G846"]],[26,27,["G2532"]],[27,28,["G1519"]],[28,29,["G3956"]],[29,30,[]]]},{"k":28970,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,4,["G1162"]],[4,5,["G5228"]],[5,6,["G5216"]],[6,9,["G1971"]],[9,10,["G5209"]],[10,11,["G1223"]],[11,12,["G3588"]],[12,13,["G5235"]],[13,14,["G5485"]],[14,16,["G2316"]],[16,17,["G1909"]],[17,18,["G5213"]]]},{"k":28971,"v":[[0,0,["(G1161)"]],[0,1,["G5485"]],[1,4,["G2316"]],[4,5,["G1909"]],[5,6,["G846"]],[6,7,["G411"]],[7,8,["G1431"]]]},{"k":28972,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G3972"]],[3,4,["G846"]],[4,5,["G3870"]],[5,6,["G5209"]],[6,7,["G1223"]],[7,8,["G3588"]],[8,9,["G4236"]],[9,10,["G2532"]],[10,11,["G1932"]],[11,13,["G5547"]],[13,14,["G3739"]],[14,15,["G2596"]],[15,16,["G4383"]],[16,17,["(G3303)"]],[17,18,["G5011"]],[18,19,["G1722"]],[19,20,["G5213"]],[20,21,["G1161"]],[21,23,["G548"]],[23,25,["G2292"]],[25,26,["G1519"]],[26,27,["G5209"]]]},{"k":28973,"v":[[0,1,["G1161"]],[1,3,["G1189"]],[3,8,["G3361"]],[8,10,["G2292"]],[10,14,["G3918"]],[14,17,["G4006"]],[17,18,["G3739"]],[18,20,["G3049"]],[20,23,["G5111"]],[23,24,["G1909"]],[24,25,["G5100"]],[25,27,["G3049"]],[27,29,["G2248"]],[29,30,["G5613"]],[30,33,["G4043"]],[33,34,["G2596"]],[34,37,["G4561"]]]},{"k":28974,"v":[[0,1,["G1063"]],[1,4,["G4043"]],[4,5,["G1722"]],[5,7,["G4561"]],[7,10,["G3756"]],[10,11,["G4754"]],[11,12,["G2596"]],[12,14,["G4561"]]]},{"k":28975,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3696"]],[3,5,["G2257"]],[5,6,["G4752"]],[6,8,["G3756"]],[8,9,["G4559"]],[9,10,["G235"]],[10,11,["G1415"]],[11,13,["G2316"]],[13,14,["G4314"]],[14,17,["G2506"]],[17,20,["G3794"]]]},{"k":28976,"v":[[0,2,["G2507"]],[2,3,["G3053"]],[3,4,["G2532"]],[4,5,["G3956"]],[5,7,["G5313"]],[7,10,["G1869"]],[10,11,["G2596"]],[11,12,["G3588"]],[12,13,["G1108"]],[13,15,["G2316"]],[15,16,["G2532"]],[16,19,["G163"]],[19,20,["G3956"]],[20,21,["G3540"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G5218"]],[24,26,["G5547"]]]},{"k":28977,"v":[[0,1,["G2532"]],[1,2,["G2192"]],[2,3,["G1722"]],[3,5,["G2092"]],[5,7,["G1556"]],[7,8,["G3956"]],[8,9,["G3876"]],[9,10,["G3752"]],[10,11,["G5216"]],[11,12,["G5218"]],[12,14,["G4137"]]]},{"k":28978,"v":[[0,4,["G991"]],[4,5,["G3588"]],[5,6,["G2596"]],[6,9,["G4383"]],[9,12,["G1536"]],[12,13,["G3982"]],[13,15,["G1438"]],[15,18,["G1511"]],[18,19,["G5547"]],[19,22,["G575"]],[22,23,["G1438"]],[23,24,["G3049"]],[24,25,["G5124"]],[25,26,["G3825"]],[26,27,["G3754"]],[27,28,["G2531"]],[28,29,["G846"]],[29,31,["G5547"]],[31,32,["G2532"]],[32,33,["G3779"]],[33,35,["G2249"]],[35,36,["G5547"]]]},{"k":28979,"v":[[0,1,["G1063"]],[1,2,["G1437","G5037"]],[2,5,["G2744","(G2532)"]],[5,6,["G5100"]],[6,7,["G4055"]],[7,8,["G4012"]],[8,9,["G2257"]],[9,10,["G1849"]],[10,11,["G3739"]],[11,12,["G3588"]],[12,13,["G2962"]],[13,15,["G1325"]],[15,16,["G2254"]],[16,17,["G1519"]],[17,18,["G3619"]],[18,19,["G2532"]],[19,20,["G3756"]],[20,21,["G1519"]],[21,22,["G5216"]],[22,23,["G2506"]],[23,26,["G3756"]],[26,28,["G153"]]]},{"k":28980,"v":[[0,1,["G2443"]],[1,4,["G3361"]],[4,5,["G1380"]],[5,6,["G5613","G302"]],[6,10,["G1629"]],[10,11,["G5209"]],[11,12,["G1223"]],[12,13,["G1992"]]]},{"k":28981,"v":[[0,1,["G3754"]],[1,3,["G1992","(G3303)"]],[3,4,["G5346"]],[4,7,["G926"]],[7,8,["G2532"]],[8,9,["G2478"]],[9,10,["G1161"]],[10,12,["G4983"]],[12,13,["G3952"]],[13,15,["G772"]],[15,16,["G2532"]],[16,18,["G3056"]],[18,19,["G1848"]]]},{"k":28982,"v":[[0,4,["G5108"]],[4,5,["G3049"]],[5,6,["G5124"]],[6,7,["G3754"]],[7,8,["G3634"]],[8,11,["G2070"]],[11,13,["G3056"]],[13,14,["G1223"]],[14,15,["G1992"]],[15,19,["G548"]],[19,20,["G5108"]],[20,24,["G2532"]],[24,26,["G2041"]],[26,30,["G3918"]]]},{"k":28983,"v":[[0,1,["G1063"]],[1,3,["G5111"]],[3,4,["G3756"]],[4,9,["G1469","G1438"]],[9,10,["G2228"]],[10,11,["G4793"]],[11,12,["G1438"]],[12,14,["G5100"]],[14,16,["G4921"]],[16,17,["G1438"]],[17,18,["G235"]],[18,19,["G846"]],[19,20,["G3354"]],[20,21,["G1438"]],[21,22,["G1722"]],[22,23,["G1438"]],[23,24,["G2532"]],[24,25,["G4793"]],[25,26,["G1438"]],[26,28,["G1438"]],[28,31,["G4920","G3756"]]]},{"k":28984,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,4,["G3780"]],[4,5,["G2744"]],[5,6,["G1519"]],[6,10,["G280"]],[10,11,["G235"]],[11,12,["G2596"]],[12,14,["G3588"]],[14,15,["G3358"]],[15,17,["G3588"]],[17,18,["G2583"]],[18,19,["G3739"]],[19,20,["G2316"]],[20,22,["G3307"]],[22,24,["G2254"]],[24,26,["G3358"]],[26,28,["G2185"]],[28,29,["G2532"]],[29,30,["G891"]],[30,31,["G5216"]]]},{"k":28985,"v":[[0,1,["G1063"]],[1,6,["G5239","G3756","G1438"]],[6,10,["G5613"]],[10,12,["G2185"]],[12,13,["G3361"]],[13,14,["G1519"]],[14,15,["G5209"]],[15,16,["G1063"]],[16,19,["G5348"]],[19,22,["G891"]],[22,24,["G5216"]],[24,25,["G2532"]],[25,26,["G1722"]],[26,28,["G3588"]],[28,29,["G2098"]],[29,31,["G5547"]]]},{"k":28986,"v":[[0,1,["G3756"]],[1,2,["G2744"]],[2,3,["G1519"]],[3,7,["G280"]],[7,10,["G1722"]],[10,12,["G245"]],[12,13,["G2873"]],[13,14,["G1161"]],[14,15,["G2192"]],[15,16,["G1680"]],[16,18,["G5216"]],[18,19,["G4102"]],[19,21,["G837"]],[21,26,["G3170"]],[26,27,["G1722"]],[27,28,["G5213"]],[28,29,["G2596"]],[29,31,["G2257"]],[31,32,["G2583"]],[32,33,["G1519","G4050"]]]},{"k":28987,"v":[[0,4,["G2097"]],[4,5,["G1519"]],[5,8,["G5238"]],[8,9,["G5216"]],[9,11,["G3756"]],[11,13,["G2744"]],[13,14,["G1722"]],[14,16,["G245"]],[16,19,["G2583"]],[19,24,["G1519","G2092"]]]},{"k":28988,"v":[[0,1,["G1161"]],[1,4,["G2744"]],[4,7,["G2744"]],[7,8,["G1722"]],[8,10,["G2962"]]]},{"k":28989,"v":[[0,1,["G1063"]],[1,2,["G3756"]],[2,3,["G1565"]],[3,5,["G4921"]],[5,6,["G1438"]],[6,7,["G2076"]],[7,8,["G1384"]],[8,9,["G235"]],[9,10,["G3739"]],[10,11,["G3588"]],[11,12,["G2962"]],[12,13,["G4921"]]]},{"k":28990,"v":[[0,3,["G3785"]],[3,7,["G430"]],[7,8,["G3450"]],[8,10,["G3397"]],[10,13,["G877"]],[13,14,["G235"]],[14,15,["G2532"]],[15,17,["G430"]],[17,18,["G3450"]]]},{"k":28991,"v":[[0,1,["G1063"]],[1,4,["G2206"]],[4,6,["G5209"]],[6,8,["G2316"]],[8,9,["G2205"]],[9,10,["G1063"]],[10,13,["G718"]],[13,14,["G5209"]],[14,16,["G1520"]],[16,17,["G435"]],[17,21,["G3936"]],[21,25,["G53"]],[25,26,["G3933"]],[26,28,["G5547"]]]},{"k":28992,"v":[[0,1,["G1161"]],[1,3,["G5399"]],[3,7,["G3381"]],[7,8,["G5613"]],[8,9,["G3588"]],[9,10,["G3789"]],[10,11,["G1818"]],[11,12,["G2096"]],[12,13,["G1722"]],[13,14,["G848"]],[14,15,["G3834"]],[15,16,["G3779"]],[16,17,["G5216"]],[17,18,["G3540"]],[18,21,["G5351"]],[21,22,["G575"]],[22,23,["G3588"]],[23,24,["G572"]],[24,25,["G3588"]],[25,27,["G1519"]],[27,28,["G5547"]]]},{"k":28993,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,5,["G2064"]],[5,6,["G2784"]],[6,7,["G243"]],[7,8,["G2424"]],[8,9,["G3739"]],[9,12,["G3756"]],[12,13,["G2784"]],[13,14,["G2228"]],[14,17,["G2983"]],[17,18,["G2087"]],[18,19,["G4151"]],[19,20,["G3739"]],[20,23,["G3756"]],[23,24,["G2983"]],[24,25,["G2228"]],[25,26,["G2087"]],[26,27,["G2098"]],[27,28,["G3739"]],[28,31,["G3756"]],[31,32,["G1209"]],[32,35,["G2573"]],[35,37,["G430"]],[37,38,[]]]},{"k":28994,"v":[[0,1,["G1063"]],[1,3,["G3049"]],[3,9,["G5302","G3367"]],[9,10,["G3588"]],[10,12,["G5228","G3029"]],[12,13,["G652"]]]},{"k":28995,"v":[[0,1,["G1161"]],[1,2,["G1487","G2532"]],[2,5,["G2399"]],[5,7,["G3056"]],[7,8,["G235"]],[8,9,["G3756"]],[9,11,["G1108"]],[11,12,["G235"]],[12,16,["G1722","G3956"]],[16,18,["G5319"]],[18,19,["G1519"]],[19,20,["G5209"]],[20,21,["G1722"]],[21,23,["G3956"]]]},{"k":28996,"v":[[0,0,["(G2228)"]],[0,3,["G4160"]],[3,5,["G266"]],[5,7,["G5013"]],[7,8,["G1683"]],[8,9,["G2443"]],[9,10,["G5210"]],[10,13,["G5312"]],[13,14,["G3754"]],[14,17,["G2097"]],[17,19,["G5213"]],[19,20,["G3588"]],[20,21,["G2098"]],[21,23,["G2316"]],[23,24,["G1432"]]]},{"k":28997,"v":[[0,2,["G4813"]],[2,3,["G243"]],[3,4,["G1577"]],[4,5,["G2983"]],[5,6,["G3800"]],[6,9,["G4314"]],[9,11,["G5216"]],[11,12,["G1248"]]]},{"k":28998,"v":[[0,1,["G2532"]],[1,5,["G3918"]],[5,6,["G4314"]],[6,7,["G5209"]],[7,8,["G2532"]],[8,9,["G5302"]],[9,10,["(G3756)"]],[10,12,["G2655"]],[12,15,["G3762"]],[15,16,["G1063"]],[16,20,["G5303"]],[20,22,["G3450"]],[22,23,["G3588"]],[23,24,["G80"]],[24,26,["G2064"]],[26,27,["G575"]],[27,28,["G3109"]],[28,29,["G4322"]],[29,30,["G2532"]],[30,31,["G1722"]],[31,32,["G3956"]],[32,36,["G5083"]],[36,37,["G1683"]],[37,40,["G4"]],[40,42,["G5213"]],[42,43,["G2532"]],[43,47,["G5083"]],[47,48,[]]]},{"k":28999,"v":[[0,3,["G225"]],[3,5,["G5547"]],[5,6,["G2076"]],[6,7,["G1722"]],[7,8,["G1698"]],[8,10,["(G3754","G3756)"]],[10,12,["G4972","(G1519)"]],[12,13,["G1691"]],[13,15,["G3778"]],[15,16,["G2746"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G2824"]],[19,21,["G882"]]]},{"k":29000,"v":[[0,1,["G1302"]],[1,2,["G3754"]],[2,4,["G25"]],[4,5,["G5209"]],[5,6,["G3756"]],[6,7,["G2316"]],[7,8,["G1492"]]]},{"k":29001,"v":[[0,1,["G1161"]],[1,2,["G3739"]],[2,4,["G4160"]],[4,6,["(G2532)"]],[6,8,["G4160"]],[8,9,["G2443"]],[9,13,["G1581"]],[13,14,["G874"]],[14,18,["G2309"]],[18,19,["G874"]],[19,20,["G2443"]],[20,21,["G1722","G3739"]],[21,23,["G2744"]],[23,27,["G2147"]],[27,28,["G2532"]],[28,29,["G2531"]],[29,30,["G2249"]]]},{"k":29002,"v":[[0,1,["G1063"]],[1,2,["G5108"]],[2,5,["G5570"]],[5,6,["G1386"]],[6,7,["G2040"]],[7,9,["G3345"]],[9,10,["G1519"]],[10,12,["G652"]],[12,14,["G5547"]]]},{"k":29003,"v":[[0,1,["G2532"]],[1,2,["G3756"]],[2,3,["G2298"]],[3,4,["G1063"]],[4,5,["G4567"]],[5,6,["G846"]],[6,8,["G3345"]],[8,9,["G1519"]],[9,11,["G32"]],[11,13,["G5457"]]]},{"k":29004,"v":[[0,1,["G3767"]],[1,4,["G3756"]],[4,6,["G3173"]],[6,7,["G1499"]],[7,8,["G846"]],[8,9,["G1249"]],[9,12,["G3345"]],[12,13,["G5613"]],[13,15,["G1249"]],[15,17,["G1343"]],[17,18,["G3739"]],[18,19,["G5056"]],[19,21,["G2071"]],[21,22,["G2596"]],[22,24,["G846"]],[24,25,["G2041"]]]},{"k":29005,"v":[[0,2,["G3004"]],[2,3,["G3825"]],[3,5,["G3361"]],[5,6,["G5100"]],[6,7,["G1380"]],[7,8,["G3165"]],[8,9,["(G1511)"]],[9,10,["G878"]],[10,12,["G1490","G1490"]],[12,13,["(G2579)"]],[13,14,["G5613"]],[14,16,["G878"]],[16,17,["G1209"]],[17,18,["G3165"]],[18,19,["G2443"]],[19,20,["G2504"]],[20,22,["G2744"]],[22,25,["G3397","G5100"]]]},{"k":29006,"v":[[0,1,["G3739"]],[1,4,["G2980"]],[4,6,["G2980"]],[6,8,["G3756"]],[8,9,["G2596"]],[9,11,["G2962"]],[11,12,["G235"]],[12,15,["G5613"]],[15,16,["G1722","G877"]],[16,17,["G1722"]],[17,18,["G5026"]],[18,19,["G5287"]],[19,21,["G2746"]]]},{"k":29007,"v":[[0,2,["G1893"]],[2,3,["G4183"]],[3,4,["G2744"]],[4,5,["G2596"]],[5,6,["G3588"]],[6,7,["G4561"]],[7,11,["G2504","G2744"]]]},{"k":29008,"v":[[0,1,["G1063"]],[1,3,["G430"]],[3,4,["G878"]],[4,5,["G2234"]],[5,9,["G5607"]],[9,10,["G5429"]]]},{"k":29009,"v":[[0,1,["G1063"]],[1,3,["G430"]],[3,6,["G1536"]],[6,10,["G2615","G5209"]],[10,13,["G1536"]],[13,14,["G2719"]],[14,18,["G1536"]],[18,19,["G2983"]],[19,24,["G1536"]],[24,26,["G1869"]],[26,29,["G1536"]],[29,30,["G1194"]],[30,31,["G5209"]],[31,32,["G1519"]],[32,34,["G4383"]]]},{"k":29010,"v":[[0,2,["G3004"]],[2,4,["G2596"]],[4,5,["G819"]],[5,6,["G5613"]],[6,7,["G3754"]],[7,8,["G2249"]],[8,11,["G770"]],[11,12,["G1161"]],[12,13,["G1722","G3739","G302"]],[13,14,["G5100"]],[14,17,["G5111"]],[17,18,["G3004"]],[18,19,["G1722","G877"]],[19,23,["G2504","G5111"]]]},{"k":29011,"v":[[0,1,["G1526"]],[1,3,["G1445"]],[3,6,["G2504"]],[6,7,["G1526"]],[7,9,["G2475"]],[9,12,["G2504"]],[12,13,["G1526"]],[13,16,["G4690"]],[16,18,["G11"]],[18,21,["G2504"]]]},{"k":29012,"v":[[0,1,["G1526"]],[1,3,["G1249"]],[3,6,["G5547"]],[6,7,["G2980"]],[7,10,["G3912"]],[10,11,["G1473"]],[11,13,["G5228"]],[13,14,["G1722"]],[14,15,["G2873"]],[15,17,["G4056"]],[17,18,["G1722"]],[18,19,["G4127"]],[19,21,["G5234"]],[21,22,["G1722"]],[22,23,["G5438"]],[23,25,["G4056"]],[25,26,["G1722"]],[26,27,["G2288"]],[27,28,["G4178"]]]},{"k":29013,"v":[[0,1,["G5259"]],[1,3,["G2453"]],[3,5,["G3999"]],[5,6,["G2983"]],[6,8,["G5062"]],[8,10,["G3844"]],[10,11,["G3391"]]]},{"k":29014,"v":[[0,1,["G5151"]],[1,6,["G4463"]],[6,7,["G530"]],[7,10,["G3034"]],[10,11,["G5151"]],[11,14,["G3489"]],[14,19,["G3574"]],[19,22,["G4160"]],[22,23,["G1722"]],[23,24,["G3588"]],[24,25,["G1037"]]]},{"k":29015,"v":[[0,2,["G3597"]],[2,3,["G4178"]],[3,5,["G2794"]],[5,7,["G4215"]],[7,9,["G2794"]],[9,11,["G3027"]],[11,13,["G2794"]],[13,14,["G1537"]],[14,17,["G1085"]],[17,19,["G2794"]],[19,20,["G1537"]],[20,22,["G1484"]],[22,24,["G2794"]],[24,25,["G1722"]],[25,27,["G4172"]],[27,29,["G2794"]],[29,30,["G1722"]],[30,32,["G2047"]],[32,34,["G2794"]],[34,35,["G1722"]],[35,37,["G2281"]],[37,39,["G2794"]],[39,40,["G1722"]],[40,42,["G5569"]]]},{"k":29016,"v":[[0,1,["G1722"]],[1,2,["G2873"]],[2,3,["G2532"]],[3,4,["G3449"]],[4,5,["G1722"]],[5,6,["G70"]],[6,7,["G4178"]],[7,8,["G1722"]],[8,9,["G3042"]],[9,10,["G2532"]],[10,11,["G1373"]],[11,12,["G1722"]],[12,13,["G3521"]],[13,14,["G4178"]],[14,15,["G1722"]],[15,16,["G5592"]],[16,17,["G2532"]],[17,18,["G1132"]]]},{"k":29017,"v":[[0,1,["G5565"]],[1,6,["G3924"]],[6,10,["G1999"]],[10,11,["G3450"]],[11,12,["G2596","G2250"]],[12,13,["G3588"]],[13,14,["G3308"]],[14,16,["G3956"]],[16,17,["G3588"]],[17,18,["G1577"]]]},{"k":29018,"v":[[0,1,["G5101"]],[1,3,["G770"]],[3,4,["G2532"]],[4,8,["G770","G3756"]],[8,9,["G5101"]],[9,11,["G4624"]],[11,12,["G2532"]],[12,13,["G1473"]],[13,14,["G4448"]],[14,15,["G3756"]]]},{"k":29019,"v":[[0,1,["G1487"]],[1,4,["G1163"]],[4,5,["G2744"]],[5,8,["G2744"]],[8,11,["G3588"]],[11,14,["G3450"]],[14,15,["G769"]]]},{"k":29020,"v":[[0,1,["G3588"]],[1,2,["G2316"]],[2,3,["G2532"]],[3,4,["G3962"]],[4,6,["G2257"]],[6,7,["G2962"]],[7,8,["G2424"]],[8,9,["G5547"]],[9,11,["G5607"]],[11,12,["G2128"]],[12,14,["G1519","G165"]],[14,15,["G1492"]],[15,16,["G3754"]],[16,18,["G5574"]],[18,19,["G3756"]]]},{"k":29021,"v":[[0,1,["G1722"]],[1,2,["G1154"]],[2,3,["G3588"]],[3,4,["G1481"]],[4,6,["G702"]],[6,7,["G3588"]],[7,8,["G935"]],[8,17,["G5432","G3588","G4172","G1153"]],[17,18,["G2309"]],[18,20,["G4084"]],[20,21,["G3165"]]]},{"k":29022,"v":[[0,1,["G2532"]],[1,2,["G1223"]],[2,4,["G2376"]],[4,5,["G1722"]],[5,7,["G4553"]],[7,11,["G5465"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G5038"]],[14,15,["G2532"]],[15,16,["G1628"]],[16,17,["G846"]],[17,18,["G5495"]]]},{"k":29023,"v":[[0,4,["G4851","G3756"]],[4,6,["G3427"]],[6,7,["G1211"]],[7,9,["G2744"]],[9,11,["(G1063)"]],[11,12,["G2064"]],[12,13,["G1519"]],[13,14,["G3701"]],[14,15,["G2532"]],[15,16,["G602"]],[16,19,["G2962"]]]},{"k":29024,"v":[[0,2,["G1492"]],[2,4,["G444"]],[4,5,["G1722"]],[5,6,["G5547"]],[6,7,["G4253"]],[7,8,["G1180"]],[8,9,["G2094"]],[9,11,["G1535"]],[11,12,["G1722"]],[12,14,["G4983"]],[14,17,["G1492","G3756"]],[17,19,["G1535"]],[19,20,["G1622"]],[20,22,["G3588"]],[22,23,["G4983"]],[23,26,["G1492","G3756"]],[26,27,["G2316"]],[27,28,["G1492"]],[28,31,["G5108"]],[31,33,["G726"]],[33,34,["G2193"]],[34,36,["G5154"]],[36,37,["G3772"]]]},{"k":29025,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G5108"]],[4,6,["G444"]],[6,7,["G1535"]],[7,8,["G1722"]],[8,10,["G4983"]],[10,11,["G1535"]],[11,12,["G1622"]],[12,14,["G3588"]],[14,15,["G4983"]],[15,18,["G1492","G3756"]],[18,19,["G2316"]],[19,20,["G1492"]]]},{"k":29026,"v":[[0,2,["G3754"]],[2,6,["G726"]],[6,7,["G1519"]],[7,8,["G3857"]],[8,9,["G2532"]],[9,10,["G191"]],[10,11,["G731"]],[11,12,["G4487"]],[12,13,["G3739"]],[13,17,["G1832","G3756"]],[17,20,["G444"]],[20,22,["G2980"]]]},{"k":29027,"v":[[0,1,["G5228"]],[1,4,["G5108"]],[4,7,["G2744"]],[7,8,["G1161"]],[8,9,["G5228"]],[9,10,["G1683"]],[10,13,["G3756"]],[13,14,["G2744"]],[14,15,["G1508"]],[15,16,["G1722"]],[16,17,["G3450"]],[17,18,["G769"]]]},{"k":29028,"v":[[0,1,["G1063"]],[1,2,["G1437"]],[2,5,["G2309"]],[5,7,["G2744"]],[7,10,["G3756"]],[10,11,["G2071"]],[11,13,["G878"]],[13,14,["G1063"]],[14,17,["G2046"]],[17,19,["G225"]],[19,20,["G1161"]],[20,23,["G5339"]],[23,24,["G3361"]],[24,26,["G5100"]],[26,28,["G3049"]],[28,29,["G1519"]],[29,30,["G1691"]],[30,31,["G5228"]],[31,32,["G3739"]],[32,35,["G991"]],[35,36,["G3165"]],[36,39,["G2228"]],[39,42,["G191","(G5100)"]],[42,43,["G1537"]],[43,44,["G1700"]]]},{"k":29029,"v":[[0,1,["G2532"]],[1,2,["G3363"]],[2,8,["G5229"]],[8,10,["G3588"]],[10,11,["G5236"]],[11,13,["G3588"]],[13,14,["G602"]],[14,17,["G1325"]],[17,19,["G3427"]],[19,21,["G4647"]],[21,23,["G3588"]],[23,24,["G4561"]],[24,26,["G32"]],[26,28,["G4566"]],[28,29,["G2443"]],[29,30,["G2852"]],[30,31,["G3165"]],[31,32,["G3363"]],[32,38,["G5229"]]]},{"k":29030,"v":[[0,1,["G5228"]],[1,3,["G5127"]],[3,5,["G3870"]],[5,6,["G3588"]],[6,7,["G2962"]],[7,8,["G5151"]],[8,9,["G2443"]],[9,12,["G868"]],[12,13,["G575"]],[13,14,["G1700"]]]},{"k":29031,"v":[[0,1,["G2532"]],[1,3,["G2046"]],[3,5,["G3427"]],[5,6,["G3450"]],[6,7,["G5485"]],[7,9,["G714"]],[9,11,["G4671"]],[11,12,["G1063"]],[12,13,["G3450"]],[13,14,["G1411"]],[14,17,["G5048"]],[17,18,["G1722"]],[18,19,["G769"]],[19,21,["G2236"]],[21,22,["G3767"]],[22,25,["G3123"]],[25,26,["G2744"]],[26,27,["G1722"]],[27,28,["G3450"]],[28,29,["G769"]],[29,30,["G2443"]],[30,31,["G3588"]],[31,32,["G1411"]],[32,34,["G5547"]],[34,36,["G1981"]],[36,37,["G1909"]],[37,38,["G1691"]]]},{"k":29032,"v":[[0,1,["G1352"]],[1,4,["G2106"]],[4,5,["G1722"]],[5,6,["G769"]],[6,7,["G1722"]],[7,8,["G5196"]],[8,9,["G1722"]],[9,10,["G318"]],[10,11,["G1722"]],[11,12,["G1375"]],[12,13,["G1722"]],[13,14,["G4730"]],[14,17,["G5228","G5547"]],[17,18,["G1063"]],[18,19,["G3752"]],[19,22,["G770"]],[22,23,["G5119"]],[23,24,["G1510"]],[24,26,["G1415"]]]},{"k":29033,"v":[[0,3,["G1096"]],[3,5,["G878"]],[5,7,["G2744"]],[7,8,["G5210"]],[8,10,["G315"]],[10,11,["G3165"]],[11,12,["G1063"]],[12,13,["G1473"]],[13,14,["G3784"]],[14,18,["G4921"]],[18,19,["G5259"]],[19,20,["G5216"]],[20,21,["G1063"]],[21,23,["G3762"]],[23,26,["G5302"]],[26,27,["G3588"]],[27,29,["G5228","G3029"]],[29,30,["G652"]],[30,31,["G1499"]],[31,33,["G1510"]],[33,34,["G3762"]]]},{"k":29034,"v":[[0,1,["G3303"]],[1,2,["G3588"]],[2,3,["G4592"]],[3,6,["G652"]],[6,8,["G2716"]],[8,9,["G1722"]],[9,10,["G5213"]],[10,11,["G1722"]],[11,12,["G3956"]],[12,13,["G5281"]],[13,14,["G1722"]],[14,15,["G4592"]],[15,16,["G2532"]],[16,17,["G5059"]],[17,18,["G2532"]],[18,20,["G1411"]]]},{"k":29035,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,3,["G2076"]],[3,5,["G3739"]],[5,8,["G2274"]],[8,9,["G5228"]],[9,10,["G3062"]],[10,11,["G1577"]],[11,12,["G1508"]],[12,15,["G3754"]],[15,16,["G1473"]],[16,17,["G846"]],[17,20,["G2655","G3756"]],[20,22,["G5216"]],[22,23,["G5483"]],[23,24,["G3427"]],[24,25,["G5026"]],[25,26,["G93"]]]},{"k":29036,"v":[[0,1,["G2400"]],[1,4,["G5154"]],[4,6,["G2192"]],[6,7,["G2093"]],[7,9,["G2064"]],[9,10,["G4314"]],[10,11,["G5209"]],[11,12,["G2532"]],[12,15,["G3756"]],[15,17,["G2655"]],[17,19,["G5216"]],[19,20,["G1063"]],[20,22,["G2212"]],[22,23,["G3756"]],[23,24,["G5216"]],[24,25,["G235"]],[25,26,["G5209"]],[26,27,["G1063"]],[27,28,["G3588"]],[28,29,["G5043"]],[29,30,["G3784"]],[30,31,["G3756"]],[31,34,["G2343"]],[34,36,["G3588"]],[36,37,["G1118"]],[37,38,["G235"]],[38,39,["G3588"]],[39,40,["G1118"]],[40,42,["G3588"]],[42,43,["G5043"]]]},{"k":29037,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,5,["G2236"]],[5,6,["G1159"]],[6,7,["G2532"]],[7,9,["G1550"]],[9,10,["G5228"]],[10,11,["G5216"]],[11,12,["G1499"]],[12,15,["G4056"]],[15,17,["G25"]],[17,18,["G5209"]],[18,20,["G2276"]],[20,23,["G25"]]]},{"k":29038,"v":[[0,1,["G1161"]],[1,2,["G2077"]],[2,5,["G1473"]],[5,7,["G3756"]],[7,8,["G2599"]],[8,9,["G5209"]],[9,10,["G235"]],[10,11,["G5225"]],[11,12,["G3835"]],[12,14,["G2983"]],[14,15,["G5209"]],[15,17,["G1388"]]]},{"k":29039,"v":[[0,2,["(G1223","G846)"]],[2,5,["G4122"]],[5,7,["G5209"]],[7,8,["(G3361)"]],[8,9,["G5100"]],[9,12,["G3739"]],[12,14,["G649"]],[14,15,["G4314"]],[15,16,["G5209"]]]},{"k":29040,"v":[[0,2,["G3870"]],[2,3,["G5103"]],[3,4,["G2532"]],[4,8,["G4882"]],[8,10,["G80"]],[10,11,["(G3387)"]],[11,12,["G5103"]],[12,15,["G4122"]],[15,17,["G5209"]],[17,18,["G4043"]],[18,20,["G3756"]],[20,22,["G3588"]],[22,23,["G846"]],[23,24,["G4151"]],[24,27,["G3756"]],[27,29,["G3588"]],[29,30,["G846"]],[30,31,["G2487"]]]},{"k":29041,"v":[[0,1,["G3825"]],[1,2,["G1380"]],[2,4,["G3754"]],[4,7,["G626"]],[7,9,["G5213"]],[9,11,["G2980"]],[11,12,["G2714"]],[12,13,["G2316"]],[13,14,["G1722"]],[14,15,["G5547"]],[15,16,["G1161"]],[16,20,["G3956"]],[20,22,["G27"]],[22,23,["G5228"]],[23,24,["G5216"]],[24,25,["G3619"]]]},{"k":29042,"v":[[0,1,["G1063"]],[1,3,["G5399"]],[3,4,["G3381"]],[4,7,["G2064"]],[7,10,["G3756"]],[10,11,["G2147"]],[11,12,["G5209"]],[12,13,["G3634"]],[13,16,["G2309"]],[16,19,["G2504"]],[19,22,["G2147"]],[22,24,["G5213"]],[24,26,["G3634"]],[26,28,["G2309"]],[28,29,["G3756"]],[29,30,["G3381"]],[30,33,["G2054"]],[33,34,["G2205"]],[34,35,["G2372"]],[35,36,["G2052"]],[36,37,["G2636"]],[37,38,["G5587"]],[38,39,["G5450"]],[39,40,["G181"]]]},{"k":29043,"v":[[0,2,["G3361"]],[2,5,["G2064"]],[5,6,["G3825"]],[6,7,["G3450"]],[7,8,["G2316"]],[8,10,["G5013"]],[10,11,["G3165"]],[11,12,["G4314"]],[12,13,["G5209"]],[13,14,["G2532"]],[14,18,["G3996"]],[18,19,["G4183"]],[19,23,["G4258"]],[23,24,["G2532"]],[24,26,["G3361"]],[26,27,["G3340"]],[27,28,["G1909"]],[28,29,["G3588"]],[29,30,["G167"]],[30,31,["G2532"]],[31,32,["G4202"]],[32,33,["G2532"]],[33,34,["G766"]],[34,35,["G3739"]],[35,38,["G4238"]]]},{"k":29044,"v":[[0,1,["G5124"]],[1,5,["G5154"]],[5,8,["G2064"]],[8,9,["G4314"]],[9,10,["G5209"]],[10,11,["G1909"]],[11,13,["G4750"]],[13,15,["G1417"]],[15,16,["G2532"]],[16,17,["G5140"]],[17,18,["G3144"]],[18,20,["G3956"]],[20,21,["G4487"]],[21,23,["G2476"]]]},{"k":29045,"v":[[0,4,["G4280"]],[4,5,["G2532"]],[5,6,["G4302"]],[6,9,["G5613"]],[9,12,["G3918"]],[12,13,["G3588"]],[13,15,["G1208"]],[15,16,["G2532"]],[16,18,["G548"]],[18,19,["G3568"]],[19,21,["G1125"]],[21,27,["G4258"]],[27,28,["G2532"]],[28,30,["G3956"]],[30,31,["G3062"]],[31,32,["G3754"]],[32,33,["G1437"]],[33,35,["G2064"]],[35,36,["G3825"]],[36,39,["G3756"]],[39,40,["G5339"]]]},{"k":29046,"v":[[0,1,["G1893"]],[1,3,["G2212"]],[3,5,["G1382"]],[5,7,["G5547"]],[7,8,["G2980"]],[8,9,["G1722"]],[9,10,["G1698"]],[10,11,["G3739"]],[11,12,["G1519"]],[12,13,["G5209"]],[13,16,["G770","G3756"]],[16,17,["G235"]],[17,19,["G1414"]],[19,20,["G1722"]],[20,21,["G5213"]]]},{"k":29047,"v":[[0,1,["G1063"]],[1,2,["G2532","G1487"]],[2,5,["G4717"]],[5,6,["G1537"]],[6,7,["G769"]],[7,8,["G235"]],[8,10,["G2198"]],[10,11,["G1537"]],[11,13,["G1411"]],[13,15,["G2316"]],[15,16,["G1063"]],[16,17,["G2249"]],[17,18,["G2532"]],[18,20,["G770"]],[20,21,["G1722"]],[21,22,["G846"]],[22,23,["G235"]],[23,26,["G2198"]],[26,27,["G4862"]],[27,28,["G846"]],[28,29,["G1537"]],[29,31,["G1411"]],[31,33,["G2316"]],[33,34,["G1519"]],[34,35,["G5209"]]]},{"k":29048,"v":[[0,1,["G3985"]],[1,2,["G1438"]],[2,3,["G1487"]],[3,5,["G2075"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G4102"]],[8,9,["G1381"]],[9,12,["G1438","(G2228)"]],[12,13,["G1921"]],[13,15,["G3756"]],[15,18,["G1438","(G2228)"]],[18,20,["G3754"]],[20,21,["G2424"]],[21,22,["G5547"]],[22,23,["G2076"]],[23,24,["G1722"]],[24,25,["G5213"]],[25,26,["G1509"]],[26,28,["G2075"]],[28,29,["G96"]]]},{"k":29049,"v":[[0,1,["G1161"]],[1,3,["G1679"]],[3,4,["G3754"]],[4,7,["G1097"]],[7,8,["G3754"]],[8,9,["G2249"]],[9,10,["G2070"]],[10,11,["G3756"]],[11,12,["G96"]]]},{"k":29050,"v":[[0,1,["G1161"]],[1,3,["G2172"]],[3,4,["G4314"]],[4,5,["G2316"]],[5,7,["G5209","(G3361)"]],[7,8,["G4160"]],[8,9,["G3367"]],[9,10,["G2556"]],[10,11,["G3756"]],[11,12,["G2443"]],[12,13,["G2249"]],[13,15,["G5316"]],[15,16,["G1384"]],[16,17,["G235"]],[17,18,["G2443"]],[18,19,["G5210"]],[19,21,["G4160"]],[21,25,["G2570"]],[25,26,["G1161"]],[26,27,["G2249"]],[27,28,["G5600"]],[28,29,["G5613"]],[29,30,["G96"]]]},{"k":29051,"v":[[0,1,["G1063"]],[1,4,["G1410"]],[4,5,["G5100","G3756"]],[5,6,["G2596"]],[6,7,["G3588"]],[7,8,["G225"]],[8,9,["G235"]],[9,10,["G5228"]],[10,11,["G3588"]],[11,12,["G225"]]]},{"k":29052,"v":[[0,1,["G1063"]],[1,4,["G5463"]],[4,5,["G3752"]],[5,6,["G2249"]],[6,8,["G770"]],[8,9,["G1161"]],[9,10,["G5210"]],[10,11,["G5600"]],[11,12,["G1415"]],[12,13,["G1161"]],[13,14,["G5124"]],[14,15,["G2532"]],[15,17,["G2172"]],[17,19,["G5216"]],[19,20,["G2676"]]]},{"k":29053,"v":[[0,1,["G1223","G5124"]],[1,3,["G1125"]],[3,5,["G5023"]],[5,7,["G548"]],[7,8,["G3363"]],[8,10,["G3918"]],[10,13,["G5530"]],[13,14,["G664"]],[14,15,["G2596"]],[15,17,["G3588"]],[17,18,["G1849"]],[18,19,["G3739"]],[19,20,["G3588"]],[20,21,["G2962"]],[21,23,["G1325"]],[23,24,["G3427"]],[24,25,["G1519"]],[25,26,["G3619"]],[26,27,["G2532"]],[27,28,["G3756"]],[28,29,["G1519"]],[29,30,["G2506"]]]},{"k":29054,"v":[[0,1,["G3063"]],[1,2,["G80"]],[2,3,["G5463"]],[3,5,["G2675"]],[5,9,["G3870"]],[9,13,["G5426","G846"]],[13,16,["G1514"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G2316"]],[19,21,["G26"]],[21,22,["G2532"]],[22,23,["G1515"]],[23,25,["G2071"]],[25,26,["G3326"]],[26,27,["G5216"]]]},{"k":29055,"v":[[0,1,["G782"]],[1,3,["G240"]],[3,4,["G1722"]],[4,6,["G40"]],[6,7,["G5370"]]]},{"k":29056,"v":[[0,1,["G3956"]],[1,2,["G3588"]],[2,3,["G40"]],[3,4,["G782"]],[4,5,["G5209"]]]},{"k":29057,"v":[[0,1,["G3588"]],[1,2,["G5485"]],[2,4,["G3588"]],[4,5,["G2962"]],[5,6,["G2424"]],[6,7,["G5547"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G26"]],[10,12,["G2316"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G2842"]],[15,17,["G3588"]],[17,18,["G40"]],[18,19,["G4151"]],[19,21,["G3326"]],[21,22,["G5216"]],[22,23,["G3956"]],[23,24,["G281"]]]},{"k":29058,"v":[[0,1,["G3972"]],[1,3,["G652"]],[3,4,["G3756"]],[4,5,["G575"]],[5,6,["G444"]],[6,7,["G3761"]],[7,8,["G1223"]],[8,9,["G444"]],[9,10,["G235"]],[10,11,["G1223"]],[11,12,["G2424"]],[12,13,["G5547"]],[13,14,["G2532"]],[14,15,["G2316"]],[15,17,["G3962"]],[17,19,["G1453"]],[19,20,["G846"]],[20,21,["G1537"]],[21,23,["G3498"]]]},{"k":29059,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G80"]],[4,7,["G4862"]],[7,8,["G1698"]],[8,10,["G3588"]],[10,11,["G1577"]],[11,13,["G1053"]]]},{"k":29060,"v":[[0,1,["G5485"]],[1,4,["G5213"]],[4,5,["G2532"]],[5,6,["G1515"]],[6,7,["G575"]],[7,8,["G2316"]],[8,10,["G3962"]],[10,11,["G2532"]],[11,13,["G2257"]],[13,14,["G2962"]],[14,15,["G2424"]],[15,16,["G5547"]]]},{"k":29061,"v":[[0,2,["G1325"]],[2,3,["G1438"]],[3,4,["G5228"]],[4,5,["G2257"]],[5,6,["G266"]],[6,7,["G3704"]],[7,10,["G1807"]],[10,11,["G2248"]],[11,12,["G1537"]],[12,14,["G1764"]],[14,15,["G4190"]],[15,16,["G165"]],[16,17,["G2596"]],[17,19,["G3588"]],[19,20,["G2307"]],[20,22,["G2316"]],[22,23,["G2532"]],[23,24,["G2257"]],[24,25,["G3962"]]]},{"k":29062,"v":[[0,2,["G3739"]],[2,4,["G1391"]],[4,8,["G1519","G165","G165"]],[8,9,["G281"]]]},{"k":29063,"v":[[0,2,["G2296"]],[2,3,["G3754"]],[3,6,["G3779"]],[6,7,["G5030"]],[7,8,["G3346"]],[8,9,["G575"]],[9,12,["G2564"]],[12,13,["G5209"]],[13,14,["G1722"]],[14,16,["G5485"]],[16,18,["G5547"]],[18,19,["G1519"]],[19,20,["G2087"]],[20,21,["G2098"]]]},{"k":29064,"v":[[0,1,["G3739"]],[1,2,["G2076"]],[2,3,["G3756"]],[3,4,["G243"]],[4,5,["G1508"]],[5,7,["G1526"]],[7,8,["G5100"]],[8,10,["G5015"]],[10,11,["G5209"]],[11,12,["G2532"]],[12,13,["G2309"]],[13,14,["G3344"]],[14,15,["G3588"]],[15,16,["G2098"]],[16,18,["G5547"]]]},{"k":29065,"v":[[0,1,["G235"]],[1,2,["G2532","G1437"]],[2,3,["G2249"]],[3,4,["G2228"]],[4,6,["G32"]],[6,7,["G1537"]],[7,8,["G3772"]],[8,12,["G2097"]],[12,14,["G5213"]],[14,15,["G3844"]],[15,16,["G3739"]],[16,20,["G2097"]],[20,22,["G5213"]],[22,25,["G2077"]],[25,26,["G331"]]]},{"k":29066,"v":[[0,1,["G5613"]],[1,4,["G4280"]],[4,5,["G2532"]],[5,6,["G3004"]],[6,8,["G737"]],[8,9,["G3825"]],[9,11,["G1536"]],[11,16,["G2097"]],[16,18,["G5209"]],[18,19,["G3844"]],[19,20,["G3739"]],[20,23,["G3880"]],[23,26,["G2077"]],[26,27,["G331"]]]},{"k":29067,"v":[[0,1,["G1063"]],[1,4,["G737"]],[4,5,["G3982"]],[5,6,["G444"]],[6,7,["G2228"]],[7,8,["G2316"]],[8,9,["G2228"]],[9,12,["G2212"]],[12,14,["G700"]],[14,15,["G444"]],[15,16,["G1063"]],[16,17,["G1487"]],[17,19,["G2089"]],[19,20,["G700"]],[20,21,["G444"]],[21,24,["G3756"]],[24,25,["G2252","G302"]],[25,27,["G1401"]],[27,29,["G5547"]]]},{"k":29068,"v":[[0,1,["G1161"]],[1,3,["G1107"]],[3,4,["G5213"]],[4,5,["G80"]],[5,7,["G3588"]],[7,8,["G2098"]],[8,11,["G2097"]],[11,12,["G5259"]],[12,13,["G1700"]],[13,14,["G2076"]],[14,15,["G3756"]],[15,16,["G2596"]],[16,17,["G444"]]]},{"k":29069,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,3,["G3761"]],[3,4,["G3880"]],[4,5,["G846"]],[5,6,["G3844"]],[6,7,["G444"]],[7,8,["G3777"]],[8,11,["G1321"]],[11,13,["G235"]],[13,14,["G1223"]],[14,16,["G602"]],[16,18,["G2424"]],[18,19,["G5547"]]]},{"k":29070,"v":[[0,1,["G1063"]],[1,4,["G191"]],[4,6,["G1699"]],[6,7,["G391"]],[7,10,["G4218"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,14,["G2454"]],[14,16,["G3754"]],[16,18,["G2596","G5236"]],[18,20,["G1377"]],[20,21,["G3588"]],[21,22,["G1577"]],[22,24,["G2316"]],[24,25,["G2532"]],[25,26,["G4199"]],[26,27,["G846"]]]},{"k":29071,"v":[[0,1,["G2532"]],[1,2,["G4298"]],[2,3,["G1722"]],[3,4,["G3588"]],[4,6,["G2454"]],[6,7,["G5228"]],[7,8,["G4183"]],[8,10,["G4915"]],[10,11,["G1722"]],[11,13,["G3450"]],[13,14,["G1085"]],[14,15,["G5225"]],[15,17,["G4056"]],[17,18,["G2207"]],[18,21,["G3862"]],[21,23,["G3450"]],[23,24,["G3967"]]]},{"k":29072,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,4,["G2106"]],[4,5,["G2316"]],[5,7,["G873"]],[7,8,["G3165"]],[8,9,["G1537"]],[9,10,["G3450"]],[10,11,["G3384"]],[11,12,["G2836"]],[12,13,["G2532"]],[13,14,["G2564"]],[14,16,["G1223"]],[16,17,["G848"]],[17,18,["G5485"]]]},{"k":29073,"v":[[0,2,["G601"]],[2,3,["G848"]],[3,4,["G5207"]],[4,5,["G1722"]],[5,6,["G1698"]],[6,7,["G2443"]],[7,10,["G2097"]],[10,11,["G846"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G1484"]],[14,15,["G2112"]],[15,17,["G4323"]],[17,18,["G3756"]],[18,20,["G4561"]],[20,21,["G2532"]],[21,22,["G129"]]]},{"k":29074,"v":[[0,1,["G3761"]],[1,4,["G424"]],[4,5,["G1519"]],[5,6,["G2414"]],[6,7,["G4314"]],[7,11,["G652"]],[11,12,["G4253"]],[12,13,["G1700"]],[13,14,["G235"]],[14,16,["G565"]],[16,17,["G1519"]],[17,18,["G688"]],[18,19,["G2532"]],[19,20,["G5290"]],[20,21,["G3825"]],[21,22,["G1519"]],[22,23,["G1154"]]]},{"k":29075,"v":[[0,1,["G1899"]],[1,2,["G3326"]],[2,3,["G5140"]],[3,4,["G2094"]],[4,7,["G424"]],[7,8,["G1519"]],[8,9,["G2414"]],[9,11,["G2477"]],[11,12,["G4074"]],[12,13,["G2532"]],[13,14,["G1961"]],[14,15,["G4314"]],[15,16,["G846"]],[16,17,["G1178"]],[17,18,["G2250"]]]},{"k":29076,"v":[[0,1,["G1161"]],[1,2,["G2087"]],[2,4,["G3588"]],[4,5,["G652"]],[5,6,["G1492"]],[6,8,["G3756"]],[8,9,["G1508"]],[9,10,["G2385"]],[10,11,["G3588"]],[11,12,["G2962"]],[12,13,["G80"]]]},{"k":29077,"v":[[0,1,["G1161"]],[1,4,["G3739"]],[4,6,["G1125"]],[6,8,["G5213"]],[8,9,["G2400"]],[9,10,["G1799"]],[10,12,["G2316","(G3754)"]],[12,13,["G5574"]],[13,14,["G3756"]]]},{"k":29078,"v":[[0,1,["G1899"]],[1,3,["G2064"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G2824"]],[6,8,["G4947"]],[8,9,["G2532"]],[9,10,["G2791"]]]},{"k":29079,"v":[[0,1,["G1161"]],[1,2,["G2252"]],[2,3,["G50"]],[3,5,["G4383"]],[5,7,["G3588"]],[7,8,["G1577"]],[8,10,["G2449"]],[10,11,["G3588"]],[11,13,["G1722"]],[13,14,["G5547"]]]},{"k":29080,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G191"]],[4,5,["G3440"]],[5,6,["G3754"]],[6,9,["G1377"]],[9,10,["G2248"]],[10,13,["G4218"]],[13,14,["G3568"]],[14,15,["G2097"]],[15,16,["G3588"]],[16,17,["G4102"]],[17,18,["G3739"]],[18,19,["G4218"]],[19,21,["G4199"]]]},{"k":29081,"v":[[0,1,["G2532"]],[1,3,["G1392"]],[3,4,["G2316"]],[4,5,["G1722"]],[5,6,["G1698"]]]},{"k":29082,"v":[[0,1,["G1899"]],[1,2,["G1180"]],[2,3,["G2094"]],[3,4,["G1223"]],[4,7,["G305"]],[7,8,["G3825"]],[8,9,["G1519"]],[9,10,["G2414"]],[10,11,["G3326"]],[11,12,["G921"]],[12,16,["G4838","G5103"]],[16,18,["G2532"]]]},{"k":29083,"v":[[0,1,["G1161"]],[1,4,["G305"]],[4,5,["G2596"]],[5,6,["G602"]],[6,7,["G2532"]],[7,8,["G394"]],[8,10,["G846"]],[10,12,["G2098"]],[12,13,["G3739"]],[13,15,["G2784"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G1484"]],[18,19,["G1161"]],[19,20,["G2596","G2398"]],[20,26,["G1380"]],[26,30,["G3381"]],[30,33,["G5143"]],[33,34,["G2228"]],[34,36,["G5143"]],[36,37,["G1519"]],[37,38,["G2756"]]]},{"k":29084,"v":[[0,1,["G235"]],[1,2,["G3761"]],[2,3,["G5103"]],[3,4,["G3588"]],[4,6,["G4862"]],[6,7,["G1698"]],[7,8,["G5607"]],[8,10,["G1672"]],[10,12,["G315"]],[12,15,["G4059"]]]},{"k":29085,"v":[[0,1,["G1161"]],[1,3,["G1223"]],[3,6,["G5569"]],[6,9,["G3920"]],[9,10,["G3748"]],[10,13,["G3922"]],[13,16,["G2684"]],[16,17,["G2257"]],[17,18,["G1657"]],[18,19,["G3739"]],[19,21,["G2192"]],[21,22,["G1722"]],[22,23,["G5547"]],[23,24,["G2424"]],[24,25,["G2443"]],[25,31,["G2615","G2248"]]]},{"k":29086,"v":[[0,2,["G3739"]],[2,5,["G1502"]],[5,7,["G5292"]],[7,9,["G3761"]],[9,10,["G4314"]],[10,12,["G5610"]],[12,13,["G2443"]],[13,14,["G3588"]],[14,15,["G225"]],[15,17,["G3588"]],[17,18,["G2098"]],[18,20,["G1265"]],[20,21,["G4314"]],[21,22,["G5209"]]]},{"k":29087,"v":[[0,1,["G1161"]],[1,2,["G575"]],[2,3,["G3588"]],[3,5,["G1380"]],[5,7,["G1511"]],[7,8,["G5100"]],[8,9,["G3697","G4218"]],[9,11,["G2258"]],[11,15,["G1308","G3762"]],[15,17,["G3427"]],[17,18,["G2316"]],[18,19,["G2983"]],[19,20,["G3756"]],[20,21,["G444"]],[21,22,["G4383"]],[22,23,["G1063"]],[23,26,["G1380"]],[26,32,["G4323"]],[32,33,["G3762"]],[33,35,["G1698"]]]},{"k":29088,"v":[[0,1,["G235"]],[1,2,["G5121"]],[2,5,["G1492"]],[5,6,["G3754"]],[6,7,["G3588"]],[7,8,["G2098"]],[8,10,["G3588"]],[10,11,["G203"]],[11,13,["G4100"]],[13,16,["G2531"]],[16,20,["G3588"]],[20,21,["G4061"]],[21,24,["G4074"]]]},{"k":29089,"v":[[0,1,["G1063"]],[1,5,["G1754"]],[5,7,["G4074"]],[7,8,["G1519"]],[8,10,["G651"]],[10,12,["G3588"]],[12,13,["G4061"]],[13,17,["G1754"]],[17,18,["(G2532)"]],[18,19,["G1698"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G1484"]]]},{"k":29090,"v":[[0,1,["G2532"]],[1,3,["G2385","(G2532)"]],[3,4,["G2786"]],[4,5,["G2532"]],[5,6,["G2491"]],[6,8,["G1380"]],[8,10,["G1511"]],[10,11,["G4769"]],[11,12,["G1097"]],[12,13,["G3588"]],[13,14,["G5485"]],[14,17,["G1325"]],[17,19,["G3427"]],[19,21,["G1325"]],[21,23,["G1698"]],[23,24,["G2532"]],[24,25,["G921"]],[25,28,["G1188"]],[28,30,["G2842"]],[30,31,["G2443"]],[31,32,["G2249"]],[32,35,["G1519"]],[35,36,["G3588"]],[36,37,["G1484"]],[37,38,["G1161"]],[38,39,["G846"]],[39,40,["G1519"]],[40,41,["G3588"]],[41,42,["G4061"]]]},{"k":29091,"v":[[0,1,["G3440"]],[1,4,["G2443"]],[4,7,["G3421"]],[7,8,["G3588"]],[8,9,["G4434"]],[9,11,["G846","G5124"]],[11,12,["G3739"]],[12,14,["G2532"]],[14,16,["G4704"]],[16,18,["G4160"]]]},{"k":29092,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,3,["G4074"]],[3,5,["G2064"]],[5,6,["G1519"]],[6,7,["G490"]],[7,9,["G436"]],[9,10,["G846"]],[10,11,["G2596"]],[11,13,["G4383"]],[13,14,["G3754"]],[14,16,["G2258"]],[16,19,["G2607"]]]},{"k":29093,"v":[[0,1,["G1063"]],[1,4,["G5100"]],[4,5,["G2064"]],[5,6,["G575"]],[6,7,["G2385"]],[7,10,["G4906"]],[10,11,["G3326"]],[11,12,["G3588"]],[12,13,["G1484"]],[13,14,["G1161"]],[14,15,["G3753"]],[15,18,["G2064"]],[18,20,["G5288"]],[20,21,["G2532"]],[21,22,["G873"]],[22,23,["G1438"]],[23,24,["G5399"]],[24,25,["G3588"]],[25,28,["G1537"]],[28,30,["G4061"]]]},{"k":29094,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3062"]],[3,4,["G2453"]],[4,7,["G4942","G2532"]],[7,8,["G846"]],[8,10,["G5620"]],[10,11,["G921"]],[11,12,["G2532"]],[12,16,["G4879"]],[16,17,["G846"]],[17,18,["G5272"]]]},{"k":29095,"v":[[0,1,["G235"]],[1,2,["G3753"]],[2,4,["G1492"]],[4,5,["G3754"]],[5,9,["G3716","G3756"]],[9,10,["G4314"]],[10,12,["G3588"]],[12,13,["G225"]],[13,15,["G3588"]],[15,16,["G2098"]],[16,18,["G2036"]],[18,20,["G4074"]],[20,21,["G1715"]],[21,23,["G3956"]],[23,24,["G1487"]],[24,25,["G4771"]],[25,26,["G5225"]],[26,28,["G2453"]],[28,29,["G2198"]],[29,34,["G1483"]],[34,35,["G2532"]],[35,36,["G3756"]],[36,40,["G2452"]],[40,41,["G5101"]],[41,42,["G315"]],[42,44,["G3588"]],[44,45,["G1484"]],[45,51,["G2450"]]]},{"k":29096,"v":[[0,1,["G2249"]],[1,4,["G2453"]],[4,6,["G5449"]],[6,7,["G2532"]],[7,8,["G3756"]],[8,9,["G268"]],[9,10,["G1537"]],[10,12,["G1484"]]]},{"k":29097,"v":[[0,1,["G1492"]],[1,2,["G3754"]],[2,4,["G444"]],[4,6,["G3756"]],[6,7,["G1344"]],[7,8,["G1537"]],[8,10,["G2041"]],[10,13,["G3551"]],[13,14,["G3362"]],[14,15,["G1223"]],[15,17,["G4102"]],[17,19,["G2424"]],[19,20,["G5547"]],[20,21,["G2532"]],[21,22,["G2249"]],[22,24,["G4100"]],[24,25,["G1519"]],[25,26,["G2424"]],[26,27,["G5547"]],[27,28,["G2443"]],[28,32,["G1344"]],[32,33,["G1537"]],[33,35,["G4102"]],[35,37,["G5547"]],[37,38,["G2532"]],[38,39,["G3756"]],[39,40,["G1537"]],[40,42,["G2041"]],[42,45,["G3551"]],[45,46,["G1360"]],[46,47,["G1537"]],[47,49,["G2041"]],[49,52,["G3551"]],[52,54,["G3756"]],[54,55,["G4561"]],[55,57,["G1344"]]]},{"k":29098,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,5,["G2212"]],[5,8,["G1344"]],[8,9,["G1722"]],[9,10,["G5547"]],[10,11,["G846"]],[11,13,["G2532"]],[13,15,["G2147"]],[15,16,["G268"]],[16,18,["G687"]],[18,19,["G5547"]],[19,21,["G1249"]],[21,23,["G266"]],[23,25,["G1096","G3361"]]]},{"k":29099,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,4,["G3618"]],[4,5,["G3825"]],[5,7,["G5023"]],[7,8,["G3739"]],[8,10,["G2647"]],[10,12,["G4921"]],[12,13,["G1683"]],[13,15,["G3848"]]]},{"k":29100,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,3,["G1223"]],[3,5,["G3551"]],[5,7,["G599"]],[7,10,["G3551"]],[10,11,["G2443"]],[11,14,["G2198"]],[14,16,["G2316"]]]},{"k":29101,"v":[[0,4,["G4957"]],[4,5,["G5547"]],[5,6,["G1161"]],[6,8,["G2198"]],[8,10,["G3765"]],[10,11,["G1473"]],[11,12,["G1161"]],[12,13,["G5547"]],[13,14,["G2198"]],[14,15,["G1722"]],[15,16,["G1698"]],[16,17,["G1161"]],[17,20,["G3739"]],[20,22,["G3568"]],[22,23,["G2198"]],[23,24,["G1722"]],[24,26,["G4561"]],[26,28,["G2198"]],[28,29,["G1722"]],[29,31,["G4102"]],[31,32,["(G3588)"]],[32,33,["G3588"]],[33,34,["G5207"]],[34,36,["G2316"]],[36,38,["G25"]],[38,39,["G3165"]],[39,40,["G2532"]],[40,41,["G3860"]],[41,42,["G1438"]],[42,43,["G5228"]],[43,44,["G1700"]]]},{"k":29102,"v":[[0,3,["G3756"]],[3,4,["G114"]],[4,5,["G3588"]],[5,6,["G5485"]],[6,8,["G2316"]],[8,9,["G1063"]],[9,10,["G1487"]],[10,11,["G1343"]],[11,13,["G1223"]],[13,15,["G3551"]],[15,16,["G686"]],[16,17,["G5547"]],[17,19,["G599"]],[19,21,["G1432"]]]},{"k":29103,"v":[[0,1,["G5599"]],[1,2,["G453"]],[2,3,["G1052"]],[3,4,["G5101"]],[4,6,["G940"]],[6,7,["G5209"]],[7,11,["G3361"]],[11,12,["G3982"]],[12,13,["G3588"]],[13,14,["G225"]],[14,15,["G2596"]],[15,16,["G3739"]],[16,17,["G3788"]],[17,18,["G2424"]],[18,19,["G5547"]],[19,24,["G4270"]],[24,25,["G4717"]],[25,26,["G1722"]],[26,27,["G5213"]]]},{"k":29104,"v":[[0,1,["G5124"]],[1,2,["G3440"]],[2,3,["G2309"]],[3,5,["G3129"]],[5,6,["G575"]],[6,7,["G5216"]],[7,8,["G2983"]],[8,10,["G3588"]],[10,11,["G4151"]],[11,12,["G1537"]],[12,14,["G2041"]],[14,17,["G3551"]],[17,18,["G2228"]],[18,19,["G1537"]],[19,21,["G189"]],[21,23,["G4102"]]]},{"k":29105,"v":[[0,1,["G2075"]],[1,3,["G3779"]],[3,4,["G453"]],[4,6,["G1728"]],[6,9,["G4151"]],[9,12,["G3568"]],[12,14,["G2005"]],[14,17,["G4561"]]]},{"k":29106,"v":[[0,3,["G3958"]],[3,6,["G5118"]],[6,8,["G1500"]],[8,9,["G1489"]],[9,12,["G2532"]],[12,14,["G1500"]]]},{"k":29107,"v":[[0,4,["G2023","G3767"]],[4,6,["G5213"]],[6,7,["G3588"]],[7,8,["G4151"]],[8,9,["G2532"]],[9,10,["G1754"]],[10,11,["G1411"]],[11,12,["G1722"]],[12,13,["G5213"]],[13,17,["G1537"]],[17,19,["G2041"]],[19,22,["G3551"]],[22,23,["G2228"]],[23,24,["G1537"]],[24,26,["G189"]],[26,28,["G4102"]]]},{"k":29108,"v":[[0,2,["G2531"]],[2,3,["G11"]],[3,4,["G4100"]],[4,5,["G2316"]],[5,6,["G2532"]],[6,9,["G3049"]],[9,11,["G846"]],[11,12,["G1519"]],[12,13,["G1343"]]]},{"k":29109,"v":[[0,1,["G1097"]],[1,3,["G686"]],[3,4,["G3754"]],[4,5,["G3588"]],[5,8,["G1537"]],[8,9,["G4102"]],[9,11,["G3778"]],[11,12,["G1526"]],[12,14,["G5207"]],[14,16,["G11"]]]},{"k":29110,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1124"]],[3,4,["G4275"]],[4,5,["G3754"]],[5,6,["G2316"]],[6,8,["G1344"]],[8,9,["G3588"]],[9,10,["G1484"]],[10,11,["G1537"]],[11,12,["G4102"]],[12,16,["G4283"]],[16,18,["G11"]],[18,20,["G1722"]],[20,21,["G4671"]],[21,23,["G3956"]],[23,24,["G1484"]],[24,26,["G1757"]]]},{"k":29111,"v":[[0,2,["G5620"]],[2,3,["G3588"]],[3,6,["G1537"]],[6,7,["G4102"]],[7,9,["G2127"]],[9,10,["G4862"]],[10,11,["G4103"]],[11,12,["G11"]]]},{"k":29112,"v":[[0,1,["G1063"]],[1,4,["G3745"]],[4,5,["G1526"]],[5,6,["G1537"]],[6,8,["G2041"]],[8,11,["G3551"]],[11,12,["G1526"]],[12,13,["G5259"]],[13,15,["G2671"]],[15,16,["G1063"]],[16,19,["G1125"]],[19,20,["G1944"]],[20,23,["G3956"]],[23,24,["G3739"]],[24,25,["G1696"]],[25,26,["G3756"]],[26,27,["G1722"]],[27,29,["G3956"]],[29,32,["G1125"]],[32,33,["G1722"]],[33,34,["G3588"]],[34,35,["G975"]],[35,37,["G3588"]],[37,38,["G3551"]],[38,40,["G4160"]],[40,41,["G846"]]]},{"k":29113,"v":[[0,1,["G1161"]],[1,2,["G3754"]],[2,4,["G3762"]],[4,6,["G1344"]],[6,7,["G1722"]],[7,9,["G3551"]],[9,12,["G3844"]],[12,14,["G2316"]],[14,17,["G1212"]],[17,18,["G3754"]],[18,19,["G3588"]],[19,20,["G1342"]],[20,22,["G2198"]],[22,23,["G1537"]],[23,24,["G4102"]]]},{"k":29114,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3551"]],[3,4,["G2076"]],[4,5,["G3756"]],[5,6,["G1537"]],[6,7,["G4102"]],[7,8,["G235"]],[8,9,["G3588"]],[9,10,["G444"]],[10,12,["G4160"]],[12,13,["G846"]],[13,15,["G2198"]],[15,16,["G1722"]],[16,17,["G846"]]]},{"k":29115,"v":[[0,1,["G5547"]],[1,3,["G1805"]],[3,4,["G2248"]],[4,5,["G1537"]],[5,6,["G3588"]],[6,7,["G2671"]],[7,9,["G3588"]],[9,10,["G3551"]],[10,12,["G1096"]],[12,14,["G2671"]],[14,15,["G5228"]],[15,16,["G2257"]],[16,17,["G1063"]],[17,20,["G1125"]],[20,21,["G1944"]],[21,24,["G3956"]],[24,26,["G2910"]],[26,27,["G1909"]],[27,29,["G3586"]]]},{"k":29116,"v":[[0,1,["G2443"]],[1,2,["G3588"]],[2,3,["G2129"]],[3,5,["G11"]],[5,7,["G1096"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G1484"]],[10,11,["G1722"]],[11,12,["G2424"]],[12,13,["G5547"]],[13,14,["G2443"]],[14,17,["G2983"]],[17,18,["G3588"]],[18,19,["G1860"]],[19,21,["G3588"]],[21,22,["G4151"]],[22,23,["G1223"]],[23,24,["G4102"]]]},{"k":29117,"v":[[0,1,["G80"]],[1,3,["G3004"]],[3,6,["G2596"]],[6,8,["G444"]],[8,9,["G3676"]],[9,14,["G444"]],[14,15,["G1242"]],[15,20,["G2964"]],[20,22,["G3762"]],[22,23,["G114"]],[23,24,["G2228"]],[24,26,["G1928"]]]},{"k":29118,"v":[[0,1,["G1161"]],[1,3,["G11"]],[3,4,["G2532"]],[4,5,["G846"]],[5,6,["G4690"]],[6,8,["G3588"]],[8,9,["G1860"]],[9,10,["G4483"]],[10,12,["G3004"]],[12,13,["G3756"]],[13,14,["G2532"]],[14,16,["G4690"]],[16,17,["G5613"]],[17,18,["G1909"]],[18,19,["G4183"]],[19,20,["G235"]],[20,21,["G5613"]],[21,22,["G1909"]],[22,23,["G1520"]],[23,24,["G2532"]],[24,26,["G4675"]],[26,27,["G4690"]],[27,28,["G3739"]],[28,29,["G2076"]],[29,30,["G5547"]]]},{"k":29119,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,4,["G3004"]],[4,7,["G1242"]],[7,11,["G4300"]],[11,12,["G5259"]],[12,13,["G2316"]],[13,14,["G1519"]],[14,15,["G5547"]],[15,16,["G3588"]],[16,17,["G3551"]],[17,19,["G1096"]],[19,21,["G5071"]],[21,22,["G2532"]],[22,23,["G5144"]],[23,24,["G2094"]],[24,25,["G3326"]],[25,27,["G208","G3756"]],[27,36,["G2673","G3588","G1860"]]]},{"k":29120,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G2817"]],[4,6,["G1537"]],[6,8,["G3551"]],[8,12,["G3765"]],[12,13,["G1537"]],[13,14,["G1860"]],[14,15,["G1161"]],[15,16,["G2316"]],[16,17,["G5483"]],[17,20,["G11"]],[20,21,["G1223"]],[21,22,["G1860"]]]},{"k":29121,"v":[[0,1,["G5101"]],[1,2,["G3767"]],[2,4,["G3588"]],[4,5,["G3551"]],[5,8,["G4369"]],[8,9,["G5484"]],[9,11,["G3847"]],[11,12,["G891","G3757"]],[12,13,["G3588"]],[13,14,["G4690"]],[14,16,["G2064"]],[16,18,["G3739"]],[18,22,["G1861"]],[22,26,["G1299"]],[26,27,["G1223"]],[27,28,["G32"]],[28,29,["G1722"]],[29,31,["G5495"]],[31,34,["G3316"]]]},{"k":29122,"v":[[0,1,["G1161"]],[1,3,["G3316"]],[3,4,["G2076"]],[4,5,["G3756"]],[5,9,["G1520"]],[9,10,["G1161"]],[10,11,["G2316"]],[11,12,["G2076"]],[12,13,["G1520"]]]},{"k":29123,"v":[[0,2,["G3588"]],[2,3,["G3551"]],[3,4,["G3767"]],[4,5,["G2596"]],[5,6,["G3588"]],[6,7,["G1860"]],[7,9,["G2316"]],[9,11,["G1096","G3361"]],[11,12,["G1063"]],[12,13,["G1487"]],[13,18,["G3551"]],[18,19,["G1325"]],[19,21,["G1410"]],[21,24,["G2227"]],[24,25,["G3689","G302"]],[25,26,["G1343"]],[26,29,["G2258"]],[29,30,["G1537"]],[30,32,["G3551"]]]},{"k":29124,"v":[[0,1,["G235"]],[1,2,["G3588"]],[2,3,["G1124"]],[3,5,["G4788"]],[5,6,["G3956"]],[6,7,["G5259"]],[7,8,["G266"]],[8,9,["G2443"]],[9,10,["G3588"]],[10,11,["G1860"]],[11,12,["G1537"]],[12,13,["G4102"]],[13,15,["G2424"]],[15,16,["G5547"]],[16,19,["G1325"]],[19,23,["G4100"]]]},{"k":29125,"v":[[0,1,["G1161"]],[1,3,["G4102"]],[3,4,["G2064"]],[4,7,["G5432"]],[7,8,["G5259"]],[8,10,["G3551"]],[10,12,["G4788"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G4102"]],[15,18,["G3195"]],[18,20,["G601"]]]},{"k":29126,"v":[[0,1,["G5620"]],[1,2,["G3588"]],[2,3,["G3551"]],[3,4,["G1096"]],[4,5,["G2257"]],[5,6,["G3807"]],[6,10,["G1519"]],[10,11,["G5547"]],[11,12,["G2443"]],[12,16,["G1344"]],[16,17,["G1537"]],[17,18,["G4102"]]]},{"k":29127,"v":[[0,1,["G1161"]],[1,4,["G4102"]],[4,6,["G2064"]],[6,8,["G2070"]],[8,10,["G3765"]],[10,11,["G5259"]],[11,13,["G3807"]]]},{"k":29128,"v":[[0,1,["G1063"]],[1,3,["G2075"]],[3,4,["G3956"]],[4,6,["G5207"]],[6,8,["G2316"]],[8,9,["G1223"]],[9,10,["G4102"]],[10,11,["G1722"]],[11,12,["G5547"]],[12,13,["G2424"]]]},{"k":29129,"v":[[0,1,["G1063"]],[1,3,["G3745"]],[3,9,["G907"]],[9,10,["G1519"]],[10,11,["G5547"]],[11,14,["G1746"]],[14,15,["G5547"]]]},{"k":29130,"v":[[0,2,["G1762"]],[2,3,["G3756"]],[3,4,["G2453"]],[4,5,["G3761"]],[5,6,["G1672"]],[6,8,["G1762"]],[8,9,["G3756"]],[9,10,["G1401"]],[10,11,["G3761"]],[11,12,["G1658"]],[12,14,["G1762"]],[14,15,["G3756"]],[15,16,["G730"]],[16,17,["G2532"]],[17,18,["G2338"]],[18,19,["G1063"]],[19,20,["G5210"]],[20,21,["G2075"]],[21,22,["G3956"]],[22,23,["G1520"]],[23,24,["G1722"]],[24,25,["G5547"]],[25,26,["G2424"]]]},{"k":29131,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5210"]],[3,5,["G5547"]],[5,6,["G686"]],[6,7,["G2075"]],[7,9,["G11"]],[9,10,["G4690"]],[10,11,["G2532"]],[11,12,["G2818"]],[12,13,["G2596"]],[13,16,["G1860"]]]},{"k":29132,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G3588"]],[5,6,["G2818"]],[6,9,["G3745"]],[9,10,["(G5550)"]],[10,11,["G2076"]],[11,13,["G3516"]],[13,14,["G1308"]],[14,15,["G3762"]],[15,18,["G1401"]],[18,21,["G5607"]],[21,22,["G2962"]],[22,24,["G3956"]]]},{"k":29133,"v":[[0,1,["G235"]],[1,2,["G2076"]],[2,3,["G5259"]],[3,4,["G2012"]],[4,5,["G2532"]],[5,6,["G3623"]],[6,7,["G891"]],[7,8,["G3588"]],[8,10,["G4287"]],[10,12,["G3588"]],[12,13,["G3962"]]]},{"k":29134,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,3,["G2249"]],[3,4,["G3753"]],[4,6,["G2258"]],[6,7,["G3516"]],[7,8,["G2258"]],[8,10,["G1402"]],[10,11,["G5259"]],[11,12,["G3588"]],[12,13,["G4747"]],[13,15,["G3588"]],[15,16,["G2889"]]]},{"k":29135,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,3,["G3588"]],[3,4,["G4138"]],[4,6,["G3588"]],[6,7,["G5550"]],[7,9,["G2064"]],[9,10,["G2316"]],[10,12,["G1821"]],[12,13,["G848"]],[13,14,["G5207"]],[14,15,["G1096"]],[15,16,["G1537"]],[16,18,["G1135"]],[18,19,["G1096"]],[19,20,["G5259"]],[20,22,["G3551"]]]},{"k":29136,"v":[[0,1,["G2443"]],[1,2,["G1805"]],[2,3,["G3588"]],[3,6,["G5259"]],[6,8,["G3551"]],[8,9,["G2443"]],[9,12,["G618"]],[12,13,["G3588"]],[13,16,["G5206"]]]},{"k":29137,"v":[[0,1,["G1161"]],[1,2,["G3754"]],[2,4,["G2075"]],[4,5,["G5207"]],[5,6,["G2316"]],[6,9,["G1821"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,13,["G848"]],[13,14,["G5207"]],[14,15,["G1519"]],[15,16,["G5216"]],[16,17,["G2588"]],[17,18,["G2896"]],[18,19,["G5"]],[19,20,["G3962"]]]},{"k":29138,"v":[[0,1,["G5620"]],[1,3,["G1488"]],[3,5,["G3765"]],[5,7,["G1401"]],[7,8,["G235"]],[8,10,["G5207"]],[10,11,["G1161"]],[11,12,["G1487"]],[12,14,["G5207"]],[14,15,["G2532"]],[15,17,["G2818"]],[17,19,["G2316"]],[19,20,["G1223"]],[20,21,["G5547"]]]},{"k":29139,"v":[[0,1,["G235"]],[1,2,["G5119"]],[2,3,["(G3303)"]],[3,5,["G1492"]],[5,6,["G3756"]],[6,7,["G2316"]],[7,10,["G1398"]],[10,15,["G5449"]],[15,16,["G5607"]],[16,17,["G3361"]],[17,18,["G2316"]]]},{"k":29140,"v":[[0,1,["G1161"]],[1,2,["G3568"]],[2,7,["G1097"]],[7,8,["G2316"]],[8,9,["G1161"]],[9,10,["G3123"]],[10,12,["G1097"]],[12,13,["G5259"]],[13,14,["G2316"]],[14,15,["G4459"]],[15,16,["G1994"]],[16,18,["G3825"]],[18,19,["G1909"]],[19,20,["G3588"]],[20,21,["G772"]],[21,22,["G2532"]],[22,23,["G4434"]],[23,24,["G4747"]],[24,25,["G3739"]],[25,26,["(G3825)"]],[26,27,["G2309"]],[27,28,["G509"]],[28,32,["G1398"]]]},{"k":29141,"v":[[0,2,["G3906"]],[2,3,["G2250"]],[3,4,["G2532"]],[4,5,["G3376"]],[5,6,["G2532"]],[6,7,["G2540"]],[7,8,["G2532"]],[8,9,["G1763"]]]},{"k":29142,"v":[[0,3,["G5399"]],[3,5,["G5209"]],[5,6,["G3381"]],[6,12,["G2872","G1519","G5209"]],[12,14,["G1500"]]]},{"k":29143,"v":[[0,1,["G80"]],[1,3,["G1189"]],[3,4,["G5216"]],[4,5,["G1096"]],[5,6,["G5613"]],[6,7,["G1473"]],[7,9,["G3754"]],[9,10,["G2504"]],[10,12,["G5613"]],[12,13,["G5210"]],[13,21,["G3762","G91","G3165"]]]},{"k":29144,"v":[[0,1,["(G1161)"]],[1,2,["G1492"]],[2,3,["G3754"]],[3,4,["G1223"]],[4,5,["G769"]],[5,7,["G3588"]],[7,8,["G4561"]],[8,12,["G2097"]],[12,14,["G5213"]],[14,17,["G4386"]]]},{"k":29145,"v":[[0,1,["G2532"]],[1,2,["G3450"]],[2,3,["G3986"]],[3,4,["G3588"]],[4,6,["G1722"]],[6,7,["G3450"]],[7,8,["G4561"]],[8,10,["G1848"]],[10,11,["G3756"]],[11,12,["G3761"]],[12,13,["G1609"]],[13,14,["G235"]],[14,15,["G1209"]],[15,16,["G3165"]],[16,17,["G5613"]],[17,19,["G32"]],[19,21,["G2316"]],[21,23,["G5613"]],[23,24,["G5547"]],[24,25,["G2424"]]]},{"k":29146,"v":[[0,1,["G5101"]],[1,2,["G2258"]],[2,3,["G3767"]],[3,4,["G3588"]],[4,5,["G3108"]],[5,6,["G5216"]],[6,9,["G1063"]],[9,13,["G3140","G5213"]],[13,14,["G3754"]],[14,15,["G1487"]],[15,19,["G1415"]],[19,24,["G1846","G302"]],[24,26,["G5216"]],[26,27,["G3788"]],[27,30,["G1325"]],[30,33,["G3427"]]]},{"k":29147,"v":[[0,3,["G5620"]],[3,4,["G1096"]],[4,5,["G5216"]],[5,6,["G2190"]],[6,12,["G226","G5213"]]]},{"k":29148,"v":[[0,3,["G2206"]],[3,4,["G5209"]],[4,6,["G3756"]],[6,7,["G2573"]],[7,8,["G235"]],[8,10,["G2309"]],[10,11,["G1576"]],[11,12,["G5209"]],[12,13,["G2443"]],[13,16,["G2206"]],[16,17,["G846"]]]},{"k":29149,"v":[[0,1,["G1161"]],[1,4,["G2570"]],[4,8,["G2206"]],[8,9,["G3842"]],[9,10,["G1722"]],[10,12,["G2570"]],[12,14,["G2532"]],[14,15,["G3361"]],[15,16,["G3440"]],[16,18,["G3165"]],[18,20,["G3918"]],[20,21,["G4314"]],[21,22,["G5209"]]]},{"k":29150,"v":[[0,1,["G3450"]],[1,3,["G5040"]],[3,5,["G3739"]],[5,9,["G5605"]],[9,10,["G3825"]],[10,11,["G891","G3757"]],[11,12,["(G5547)"]],[12,14,["G3445"]],[14,15,["G1722"]],[15,16,["G5213"]]]},{"k":29151,"v":[[0,1,["(G1161)"]],[1,2,["G2309"]],[2,5,["G3918"]],[5,6,["G4314"]],[6,7,["G5209"]],[7,8,["G737"]],[8,9,["G2532"]],[9,11,["G236"]],[11,12,["G3450"]],[12,13,["G5456"]],[13,14,["G3754"]],[14,18,["G639"]],[18,19,["G1722"]],[19,20,["G5213"]]]},{"k":29152,"v":[[0,1,["G3004"]],[1,2,["G3427"]],[2,5,["G2309"]],[5,7,["G1511"]],[7,8,["G5259"]],[8,10,["G3551"]],[10,13,["G3756"]],[13,14,["G191"]],[14,15,["G3588"]],[15,16,["G3551"]]]},{"k":29153,"v":[[0,1,["G1063"]],[1,4,["G1125"]],[4,5,["G3754"]],[5,6,["G11"]],[6,7,["G2192"]],[7,8,["G1417"]],[8,9,["G5207"]],[9,11,["G1520"]],[11,12,["G1537"]],[12,14,["G3814"]],[14,15,["(G2532)"]],[15,16,["G1520"]],[16,17,["G1537"]],[17,19,["G1658"]]]},{"k":29154,"v":[[0,1,["G235"]],[1,2,["G3588","G3303"]],[2,5,["G1537"]],[5,6,["G3588"]],[6,7,["G3814"]],[7,9,["G1080"]],[9,10,["G2596"]],[10,12,["G4561"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G1537"]],[15,16,["G3588"]],[16,17,["G1658"]],[17,19,["G1223"]],[19,20,["G1860"]]]},{"k":29155,"v":[[0,2,["G3748"]],[2,3,["G2076"]],[3,5,["G238"]],[5,6,["G1063"]],[6,7,["G3778"]],[7,8,["G1526"]],[8,9,["G3588"]],[9,10,["G1417"]],[10,11,["G1242"]],[11,13,["G3391","G3303"]],[13,14,["G575"]],[14,16,["G3735"]],[16,17,["G4614"]],[17,19,["G1080"]],[19,20,["G1519"]],[20,21,["G1397"]],[21,22,["G3748"]],[22,23,["G2076"]],[23,24,["G28"]]]},{"k":29156,"v":[[0,1,["G1063"]],[1,3,["G28"]],[3,4,["G2076"]],[4,5,["G3735"]],[5,6,["G4614"]],[6,7,["G1722"]],[7,8,["G688"]],[8,9,["G1161"]],[9,11,["G4960"]],[11,12,["G2419"]],[12,14,["G3568"]],[14,16,["G1161"]],[16,19,["G1398"]],[19,20,["G3326"]],[20,21,["G848"]],[21,22,["G5043"]]]},{"k":29157,"v":[[0,1,["G1161"]],[1,2,["G2419"]],[2,5,["G507"]],[5,6,["G2076"]],[6,7,["G1658"]],[7,8,["G3748"]],[8,9,["G2076"]],[9,11,["G3384"]],[11,13,["G2257"]],[13,14,["G3956"]]]},{"k":29158,"v":[[0,1,["G1063"]],[1,4,["G1125"]],[4,5,["G2165"]],[5,7,["G4723"]],[7,9,["G5088"]],[9,10,["G3756"]],[10,12,["G4486"]],[12,13,["G2532"]],[13,14,["G994"]],[14,17,["G5605"]],[17,18,["G3756"]],[18,19,["G3754"]],[19,20,["G3588"]],[20,21,["G2048"]],[21,22,["G2192"]],[22,23,["G4183"]],[23,24,["G3123"]],[24,25,["G5043"]],[25,26,["G2228"]],[26,29,["G2192"]],[29,31,["G435"]]]},{"k":29159,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,3,["G80"]],[3,4,["G2596"]],[4,5,["G2464"]],[5,7,["G2070"]],[7,9,["G5043"]],[9,11,["G1860"]]]},{"k":29160,"v":[[0,1,["G235"]],[1,2,["G5618"]],[2,3,["G5119"]],[3,7,["G1080"]],[7,8,["G2596"]],[8,10,["G4561"]],[10,11,["G1377"]],[11,12,["G3588"]],[12,16,["G2596"]],[16,18,["G4151"]],[18,19,["G2532"]],[19,20,["G3779"]],[20,23,["G3568"]]]},{"k":29161,"v":[[0,1,["G235"]],[1,2,["G5101"]],[2,3,["G3004"]],[3,4,["G3588"]],[4,5,["G1124"]],[5,7,["G1544"]],[7,8,["G3588"]],[8,9,["G3814"]],[9,10,["G2532"]],[10,11,["G846"]],[11,12,["G5207"]],[12,13,["G1063"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,17,["G3588"]],[17,18,["G3814"]],[18,20,["G3364"]],[20,22,["G2816"]],[22,23,["G3326"]],[23,24,["G3588"]],[24,25,["G5207"]],[25,27,["G3588"]],[27,28,["G1658"]]]},{"k":29162,"v":[[0,2,["G686"]],[2,3,["G80"]],[3,5,["G2070"]],[5,6,["G3756"]],[6,7,["G5043"]],[7,10,["G3814"]],[10,11,["G235"]],[11,13,["G3588"]],[13,14,["G1658"]]]},{"k":29163,"v":[[0,2,["G4739"]],[2,3,["G3767"]],[3,5,["G3588"]],[5,6,["G1657"]],[6,7,["G3739"]],[7,8,["G5547"]],[8,12,["G1659","G2248"]],[12,13,["G2532"]],[13,15,["G3361"]],[15,18,["G1758","G3825"]],[18,20,["G2218"]],[20,22,["G1397"]]]},{"k":29164,"v":[[0,1,["G2396"]],[1,2,["G1473"]],[2,3,["G3972"]],[3,4,["G3004"]],[4,6,["G5213"]],[6,7,["G3754"]],[7,8,["G1437"]],[8,11,["G4059"]],[11,12,["G5547"]],[12,14,["G5623"]],[14,15,["G5209"]],[15,16,["G3762"]]]},{"k":29165,"v":[[0,1,["G1161"]],[1,3,["G3143"]],[3,4,["G3825"]],[4,6,["G3956"]],[6,7,["G444"]],[7,10,["G4059"]],[10,11,["G3754"]],[11,13,["G2076"]],[13,15,["G3781"]],[15,17,["G4160"]],[17,18,["G3588"]],[18,19,["G3650"]],[19,20,["G3551"]]]},{"k":29166,"v":[[0,1,["G5547"]],[1,6,["G2673"]],[6,9,["G3748"]],[9,13,["G1344"]],[13,14,["G1722"]],[14,16,["G3551"]],[16,19,["G1601"]],[19,21,["G5485"]]]},{"k":29167,"v":[[0,1,["G1063"]],[1,2,["G2249"]],[2,5,["G4151"]],[5,7,["G553"]],[7,9,["G1680"]],[9,11,["G1343"]],[11,12,["G1537"]],[12,13,["G4102"]]]},{"k":29168,"v":[[0,1,["G1063"]],[1,2,["G1722"]],[2,3,["G2424"]],[3,4,["G5547"]],[4,5,["G3777"]],[5,6,["G4061"]],[6,7,["G2480"]],[7,9,["G5100"]],[9,10,["G3777"]],[10,11,["G203"]],[11,12,["G235"]],[12,13,["G4102"]],[13,15,["G1754"]],[15,16,["G1223"]],[16,17,["G26"]]]},{"k":29169,"v":[[0,3,["G5143"]],[3,4,["G2573"]],[4,5,["G5101"]],[5,7,["G348"]],[7,8,["G5209"]],[8,12,["G3361"]],[12,13,["G3982"]],[13,14,["G3588"]],[14,15,["G225"]]]},{"k":29170,"v":[[0,2,["G3988"]],[2,4,["G3756"]],[4,5,["G1537"]],[5,8,["G2564"]],[8,9,["G5209"]]]},{"k":29171,"v":[[0,2,["G3398"]],[2,3,["G2219"]],[3,4,["G2220"]],[4,5,["G3588"]],[5,6,["G3650"]],[6,7,["G5445"]]]},{"k":29172,"v":[[0,1,["G1473"]],[1,3,["G3982"]],[3,4,["G1519"]],[4,5,["G5209"]],[5,6,["G1722"]],[6,8,["G2962"]],[8,9,["G3754"]],[9,15,["G5426","G3762","G243"]],[15,16,["G1161"]],[16,19,["G5015"]],[19,20,["G5209"]],[20,22,["G941"]],[22,24,["G2917"]],[24,25,["G3748","G302"]],[25,27,["G5600"]]]},{"k":29173,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G80"]],[3,4,["G1487"]],[4,6,["G2089"]],[6,7,["G2784"]],[7,8,["G4061"]],[8,9,["G5101"]],[9,12,["G2089"]],[12,14,["G1377"]],[14,15,["G686"]],[15,17,["G3588"]],[17,18,["G4625"]],[18,20,["G3588"]],[20,21,["G4716"]],[21,22,["G2673"]]]},{"k":29174,"v":[[0,2,["G3785"]],[2,5,["G2532"]],[5,7,["G609"]],[7,9,["G387"]],[9,10,["G5209"]]]},{"k":29175,"v":[[0,1,["G1063"]],[1,2,["G80"]],[2,3,["G5210"]],[3,6,["G2564"]],[6,7,["G1909"]],[7,8,["G1657"]],[8,9,["G3440"]],[9,11,["G3361"]],[11,12,["G1657"]],[12,13,["G1519"]],[13,15,["G874"]],[15,17,["G3588"]],[17,18,["G4561"]],[18,19,["G235"]],[19,20,["G1223"]],[20,21,["G26"]],[21,22,["G1398"]],[22,24,["G240"]]]},{"k":29176,"v":[[0,1,["G1063"]],[1,2,["G3956"]],[2,4,["G3551"]],[4,6,["G4137"]],[6,7,["G1722"]],[7,8,["G1520"]],[8,9,["G3056"]],[9,11,["G1722"]],[11,12,["G3588"]],[12,15,["G25"]],[15,16,["G4675"]],[16,17,["G4139"]],[17,18,["G5613"]],[18,19,["G1438"]]]},{"k":29177,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G1143"]],[4,5,["G2532"]],[5,6,["G2719"]],[6,8,["G240"]],[8,10,["G991"]],[10,14,["G3361"]],[14,15,["G355"]],[15,18,["G240"]]]},{"k":29178,"v":[[0,3,["G3004"]],[3,4,["G1161"]],[4,5,["G4043"]],[5,8,["G4151"]],[8,9,["G2532"]],[9,12,["G3364"]],[12,13,["G5055"]],[13,15,["G1939"]],[15,18,["G4561"]]]},{"k":29179,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G4561"]],[3,4,["G1937"]],[4,5,["G2596"]],[5,6,["G3588"]],[6,7,["G4151"]],[7,8,["G1161"]],[8,9,["G3588"]],[9,10,["G4151"]],[10,11,["G2596"]],[11,12,["G3588"]],[12,13,["G4561"]],[13,14,["G1161"]],[14,15,["G5023"]],[15,17,["G480"]],[17,22,["G240"]],[22,24,["G2443"]],[24,26,["G3361"]],[26,27,["G4160"]],[27,29,["G5023"]],[29,30,["G3739","G302"]],[30,32,["G2309"]]]},{"k":29180,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,5,["G71"]],[5,8,["G4151"]],[8,10,["G2075"]],[10,11,["G3756"]],[11,12,["G5259"]],[12,14,["G3551"]]]},{"k":29181,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2041"]],[3,5,["G3588"]],[5,6,["G4561"]],[6,7,["G2076"]],[7,8,["G5318"]],[8,9,["G3748"]],[9,10,["G2076"]],[10,12,["G3430"]],[12,13,["G4202"]],[13,14,["G167"]],[14,15,["G766"]]]},{"k":29182,"v":[[0,1,["G1495"]],[1,2,["G5331"]],[2,3,["G2189"]],[3,4,["G2054"]],[4,5,["G2205"]],[5,6,["G2372"]],[6,7,["G2052"]],[7,8,["G1370"]],[8,9,["G139"]]]},{"k":29183,"v":[[0,1,["G5355"]],[1,2,["G5408"]],[2,3,["G3178"]],[3,4,["G2970"]],[4,5,["G2532"]],[5,6,["G5125"]],[6,7,["G3664"]],[7,10,["G3739"]],[10,14,["G4302","G5213"]],[14,15,["G2531"]],[15,18,["G2532"]],[18,23,["G4277"]],[23,24,["G3754"]],[24,27,["G4238"]],[27,29,["G5108"]],[29,31,["G3756"]],[31,32,["G2816"]],[32,34,["G932"]],[34,36,["G2316"]]]},{"k":29184,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2590"]],[3,5,["G3588"]],[5,6,["G4151"]],[6,7,["G2076"]],[7,8,["G26"]],[8,9,["G5479"]],[9,10,["G1515"]],[10,11,["G3115"]],[11,12,["G5544"]],[12,13,["G19"]],[13,14,["G4102"]]]},{"k":29185,"v":[[0,1,["G4236"]],[1,2,["G1466"]],[2,3,["G2596"]],[3,4,["G5108"]],[4,6,["G2076"]],[6,7,["G3756"]],[7,8,["G3551"]]]},{"k":29186,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,5,["G5547"]],[5,7,["G4717"]],[7,8,["G3588"]],[8,9,["G4561"]],[9,10,["G4862"]],[10,11,["G3588"]],[11,12,["G3804"]],[12,13,["G2532"]],[13,14,["G1939"]]]},{"k":29187,"v":[[0,1,["G1487"]],[1,3,["G2198"]],[3,6,["G4151"]],[6,9,["G2532"]],[9,10,["G4748"]],[10,13,["G4151"]]]},{"k":29188,"v":[[0,3,["G3361"]],[3,4,["G1096"]],[4,8,["G2755"]],[8,9,["G4292"]],[9,11,["G240"]],[11,12,["G5354"]],[12,14,["G240"]]]},{"k":29189,"v":[[0,1,["G80"]],[1,2,["G1437"]],[2,4,["G444"]],[4,5,["(G2532)"]],[5,6,["G4301"]],[6,7,["G1722"]],[7,8,["G5100"]],[8,9,["G3900"]],[9,10,["G5210"]],[10,13,["G4152"]],[13,14,["G2675"]],[14,17,["G5108"]],[17,18,["G1722"]],[18,20,["G4151"]],[20,22,["G4236"]],[22,23,["G4648"]],[23,24,["G4572"]],[24,25,["G3361"]],[25,26,["G4771"]],[26,27,["G2532"]],[27,29,["G3985"]]]},{"k":29190,"v":[[0,1,["G941"]],[1,4,["G240"]],[4,5,["G922"]],[5,6,["G2532"]],[6,7,["G3779"]],[7,8,["G378"]],[8,9,["G3588"]],[9,10,["G3551"]],[10,12,["G5547"]]]},{"k":29191,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,4,["G5100"]],[4,6,["G1380"]],[6,8,["G1511"]],[8,9,["G5100"]],[9,12,["G5607"]],[12,13,["G3367"]],[13,15,["G5422"]],[15,16,["G1438"]]]},{"k":29192,"v":[[0,1,["G1161"]],[1,4,["G1538"]],[4,5,["G1381"]],[5,7,["G1438"]],[7,8,["G2041"]],[8,9,["G2532"]],[9,10,["G5119"]],[10,13,["G2192"]],[13,14,["G2745"]],[14,15,["G1519"]],[15,16,["G1438"]],[16,17,["G3441"]],[17,18,["G2532"]],[18,19,["G3756"]],[19,20,["G1519"]],[20,21,["G2087"]]]},{"k":29193,"v":[[0,1,["G1063"]],[1,3,["G1538"]],[3,5,["G941"]],[5,7,["G2398"]],[7,8,["G5413"]]]},{"k":29194,"v":[[0,0,["(G1161)"]],[0,5,["G2727"]],[5,7,["G3588"]],[7,8,["G3056"]],[8,9,["G2841"]],[9,13,["G2727"]],[13,14,["G1722"]],[14,15,["G3956"]],[15,17,["G18"]]]},{"k":29195,"v":[[0,2,["G3361"]],[2,3,["G4105"]],[3,4,["G2316"]],[4,6,["G3756"]],[6,7,["G3456"]],[7,8,["G1063"]],[8,9,["G3739","G1437"]],[9,11,["G444"]],[11,12,["G4687"]],[12,13,["G5124"]],[13,16,["G2532"]],[16,17,["G2325"]]]},{"k":29196,"v":[[0,1,["G3754"]],[1,4,["G4687"]],[4,5,["G1519"]],[5,6,["G1438"]],[6,7,["G4561"]],[7,9,["G1537"]],[9,10,["G3588"]],[10,11,["G4561"]],[11,12,["G2325"]],[12,13,["G5356"]],[13,14,["G1161"]],[14,17,["G4687"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G4151"]],[20,22,["G1537"]],[22,23,["G3588"]],[23,24,["G4151"]],[24,25,["G2325"]],[25,26,["G2222"]],[26,27,["G166"]]]},{"k":29197,"v":[[0,1,["G1161"]],[1,4,["G3361"]],[4,6,["G1573"]],[6,8,["G2570"]],[8,9,["G4160"]],[9,10,["G1063"]],[10,12,["G2398"]],[12,13,["G2540"]],[13,16,["G2325"]],[16,19,["G1590"]],[19,20,["G3361"]]]},{"k":29198,"v":[[0,1,["G5613"]],[1,3,["G2192"]],[3,4,["G686","G3767"]],[4,5,["G2540"]],[5,8,["G2038"]],[8,9,["G18"]],[9,10,["G4314"]],[10,11,["G3956"]],[11,12,["(G1161)"]],[12,13,["G3122"]],[13,14,["G4314"]],[14,20,["G3609"]],[20,22,["G4102"]]]},{"k":29199,"v":[[0,2,["G1492"]],[2,4,["G4080"]],[4,6,["G1121"]],[6,9,["G1125"]],[9,11,["G5213"]],[11,14,["G1699"]],[14,15,["G5495"]]]},{"k":29200,"v":[[0,3,["G3745"]],[3,4,["G2309"]],[4,9,["G2146"]],[9,10,["G1722"]],[10,12,["G4561"]],[12,13,["G3778"]],[13,14,["G315"]],[14,15,["G5209"]],[15,18,["G4059"]],[18,19,["G3440"]],[19,20,["G3363"]],[20,24,["G1377"]],[24,26,["G3588"]],[26,27,["G4716"]],[27,29,["G5547"]]]},{"k":29201,"v":[[0,1,["G1063"]],[1,2,["G3761"]],[2,3,["G846"]],[3,7,["G4059"]],[7,8,["G5442"]],[8,10,["G3551"]],[10,11,["G235"]],[11,12,["G2309"]],[12,15,["G5209"]],[15,16,["G4059"]],[16,17,["G2443"]],[17,20,["G2744"]],[20,21,["G1722"]],[21,22,["G5212"]],[22,23,["G4561"]]]},{"k":29202,"v":[[0,1,["G1161"]],[1,3,["G1096","G3361"]],[3,5,["G1698"]],[5,7,["G2744"]],[7,8,["G1508"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G4716"]],[11,13,["G2257"]],[13,14,["G2962"]],[14,15,["G2424"]],[15,16,["G5547"]],[16,17,["G1223"]],[17,18,["G3739"]],[18,20,["G2889"]],[20,22,["G4717"]],[22,24,["G1698"]],[24,26,["G2504"]],[26,28,["G3588"]],[28,29,["G2889"]]]},{"k":29203,"v":[[0,1,["G1063"]],[1,2,["G1722"]],[2,3,["G5547"]],[3,4,["G2424"]],[4,5,["G3777"]],[5,6,["G4061"]],[6,7,["G2480"]],[7,9,["G5100"]],[9,10,["G3777"]],[10,11,["G203"]],[11,12,["G235"]],[12,14,["G2537"]],[14,15,["G2937"]]]},{"k":29204,"v":[[0,1,["G2532"]],[1,4,["G3745"]],[4,5,["G4748"]],[5,8,["G5129"]],[8,9,["G2583"]],[9,10,["G1515"]],[10,12,["G1909"]],[12,13,["G846"]],[13,14,["G2532"]],[14,15,["G1656"]],[15,16,["G2532"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G2474"]],[19,21,["G2316"]]]},{"k":29205,"v":[[0,2,["G3064"]],[2,5,["G3367"]],[5,6,["G3930","G2873"]],[6,7,["G3427"]],[7,8,["G1063"]],[8,9,["G1473"]],[9,10,["G941"]],[10,11,["G1722"]],[11,12,["G3450"]],[12,13,["G4983"]],[13,14,["G3588"]],[14,15,["G4742"]],[15,17,["G3588"]],[17,18,["G2962"]],[18,19,["G2424"]]]},{"k":29206,"v":[[0,1,["G80"]],[1,2,["G3588"]],[2,3,["G5485"]],[3,5,["G2257"]],[5,6,["G2962"]],[6,7,["G2424"]],[7,8,["G5547"]],[8,10,["G3326"]],[10,11,["G5216"]],[11,12,["G4151"]],[12,13,["G281"]]]},{"k":29207,"v":[[0,1,["G3972"]],[1,3,["G652"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,7,["G1223"]],[7,9,["G2307"]],[9,11,["G2316"]],[11,13,["G3588"]],[13,14,["G40"]],[14,16,["G5607"]],[16,17,["G1722"]],[17,18,["G2181"]],[18,19,["G2532"]],[19,22,["G4103"]],[22,23,["G1722"]],[23,24,["G5547"]],[24,25,["G2424"]]]},{"k":29208,"v":[[0,1,["G5485"]],[1,4,["G5213"]],[4,5,["G2532"]],[5,6,["G1515"]],[6,7,["G575"]],[7,8,["G2316"]],[8,9,["G2257"]],[9,10,["G3962"]],[10,11,["G2532"]],[11,14,["G2962"]],[14,15,["G2424"]],[15,16,["G5547"]]]},{"k":29209,"v":[[0,1,["G2128"]],[1,3,["G3588"]],[3,4,["G2316"]],[4,5,["G2532"]],[5,6,["G3962"]],[6,8,["G2257"]],[8,9,["G2962"]],[9,10,["G2424"]],[10,11,["G5547"]],[11,14,["G2127"]],[14,15,["G2248"]],[15,16,["G1722"]],[16,17,["G3956"]],[17,18,["G4152"]],[18,19,["G2129"]],[19,20,["G1722"]],[20,21,["G2032"]],[21,23,["G1722"]],[23,24,["G5547"]]]},{"k":29210,"v":[[0,2,["G2531"]],[2,5,["G1586"]],[5,6,["G2248"]],[6,7,["G1722"]],[7,8,["G846"]],[8,9,["G4253"]],[9,11,["G2602"]],[11,14,["G2889"]],[14,16,["G2248"]],[16,18,["G1511"]],[18,19,["G40"]],[19,20,["G2532"]],[20,22,["G299"]],[22,23,["G2714"]],[23,24,["G846"]],[24,25,["G1722"]],[25,26,["G26"]]]},{"k":29211,"v":[[0,2,["G4309"]],[2,3,["G2248"]],[3,4,["G1519"]],[4,8,["G5206"]],[8,9,["G1223"]],[9,10,["G2424"]],[10,11,["G5547"]],[11,12,["G1519"]],[12,13,["G848"]],[13,14,["G2596"]],[14,16,["G3588"]],[16,18,["G2107"]],[18,20,["G848"]],[20,21,["G2307"]]]},{"k":29212,"v":[[0,1,["G1519"]],[1,3,["G1868"]],[3,6,["G1391"]],[6,8,["G848"]],[8,9,["G5485"]],[9,10,["G1722","G3739"]],[10,15,["G5487","G2248"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G25"]]]},{"k":29213,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,4,["G2192"]],[4,5,["G629"]],[5,6,["G1223"]],[6,7,["G846"]],[7,8,["G129"]],[8,9,["G3588"]],[9,10,["G859"]],[10,12,["G3900"]],[12,13,["G2596"]],[13,15,["G3588"]],[15,16,["G4149"]],[16,18,["G846"]],[18,19,["G5485"]]]},{"k":29214,"v":[[0,1,["G3739"]],[1,4,["G4052"]],[4,5,["G1519"]],[5,6,["G2248"]],[6,7,["G1722"]],[7,8,["G3956"]],[8,9,["G4678"]],[9,10,["G2532"]],[10,11,["G5428"]]]},{"k":29215,"v":[[0,3,["G1107"]],[3,5,["G2254"]],[5,6,["G3588"]],[6,7,["G3466"]],[7,9,["G848"]],[9,10,["G2307"]],[10,11,["G2596"]],[11,13,["G848"]],[13,15,["G2107"]],[15,16,["G3739"]],[16,19,["G4388"]],[19,20,["G1722"]],[20,21,["G848"]]]},{"k":29216,"v":[[0,2,["G1519"]],[2,4,["G3622"]],[4,6,["G3588"]],[6,7,["G4138"]],[7,9,["G2540"]],[9,15,["G346"]],[15,17,["G3956"]],[17,18,["G1722"]],[18,19,["G5547"]],[19,20,["G5037"]],[20,21,["G3588"]],[21,23,["G1722"]],[23,24,["G3772"]],[24,25,["G2532"]],[25,26,["G3588"]],[26,28,["G1909"]],[28,29,["G1093"]],[29,31,["G1722"]],[31,32,["G846"]]]},{"k":29217,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G2532"]],[3,8,["G2820"]],[8,10,["G4309"]],[10,11,["G2596"]],[11,14,["G4286"]],[14,18,["G1754"]],[18,20,["G3956"]],[20,21,["G2596"]],[21,22,["G3588"]],[22,23,["G1012"]],[23,26,["G848"]],[26,27,["G2307"]]]},{"k":29218,"v":[[0,2,["G2248"]],[2,4,["G1511"]],[4,5,["G1519"]],[5,7,["G1868"]],[7,9,["G846"]],[9,10,["G1391"]],[10,13,["G4276"]],[13,14,["G1722"]],[14,15,["G5547"]]]},{"k":29219,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G5210"]],[3,4,["G2532"]],[4,9,["G191"]],[9,10,["G3588"]],[10,11,["G3056"]],[11,13,["G225"]],[13,14,["G3588"]],[14,15,["G2098"]],[15,17,["G5216"]],[17,18,["G4991"]],[18,19,["G1722"]],[19,20,["G3739"]],[20,21,["G2532"]],[21,25,["G4100"]],[25,28,["G4972"]],[28,31,["G40"]],[31,32,["G4151"]],[32,34,["G1860"]]]},{"k":29220,"v":[[0,1,["G3739"]],[1,2,["G2076"]],[2,4,["G728"]],[4,6,["G2257"]],[6,7,["G2817"]],[7,8,["G1519"]],[8,10,["G629"]],[10,12,["G3588"]],[12,14,["G4047"]],[14,15,["G1519"]],[15,17,["G1868"]],[17,19,["G846"]],[19,20,["G1391"]]]},{"k":29221,"v":[[0,1,["G1223","G5124"]],[1,3,["G2504"]],[3,6,["G191"]],[6,7,["G2596"]],[7,8,["G5209"]],[8,9,["G4102"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G2962"]],[12,13,["G2424"]],[13,14,["G2532"]],[14,15,["G26"]],[15,16,["G1519"]],[16,17,["G3956"]],[17,18,["G3588"]],[18,19,["G40"]]]},{"k":29222,"v":[[0,1,["G3973"]],[1,2,["G3756"]],[2,5,["G2168"]],[5,6,["G5228"]],[6,7,["G5216"]],[7,8,["G4160"]],[8,9,["G3417"]],[9,11,["G5216"]],[11,12,["G1909"]],[12,13,["G3450"]],[13,14,["G4335"]]]},{"k":29223,"v":[[0,1,["G2443"]],[1,2,["G3588"]],[2,3,["G2316"]],[3,5,["G2257"]],[5,6,["G2962"]],[6,7,["G2424"]],[7,8,["G5547"]],[8,9,["G3588"]],[9,10,["G3962"]],[10,12,["G1391"]],[12,14,["G1325"]],[14,16,["G5213"]],[16,18,["G4151"]],[18,20,["G4678"]],[20,21,["G2532"]],[21,22,["G602"]],[22,23,["G1722"]],[23,25,["G1922"]],[25,27,["G848"]]]},{"k":29224,"v":[[0,1,["G3588"]],[1,2,["G3788"]],[2,4,["G5216"]],[4,5,["G1271"]],[5,7,["G5461"]],[7,9,["G5209"]],[9,11,["G1492"]],[11,12,["G5101"]],[12,13,["G2076"]],[13,14,["G3588"]],[14,15,["G1680"]],[15,17,["G846"]],[17,18,["G2821"]],[18,19,["G2532"]],[19,20,["G5101"]],[20,21,["G3588"]],[21,22,["G4149"]],[22,24,["G3588"]],[24,25,["G1391"]],[25,27,["G846"]],[27,28,["G2817"]],[28,29,["G1722"]],[29,30,["G3588"]],[30,31,["G40"]]]},{"k":29225,"v":[[0,1,["G2532"]],[1,2,["G5101"]],[2,4,["G3588"]],[4,5,["G5235"]],[5,6,["G3174"]],[6,8,["G846"]],[8,9,["G1411"]],[9,10,["G1519"]],[10,11,["G2248"]],[11,13,["G4100"]],[13,14,["G2596"]],[14,16,["G3588"]],[16,17,["G1753"]],[17,19,["G846"]],[19,21,["G2904","G2479"]]]},{"k":29226,"v":[[0,1,["G3739"]],[1,3,["G1754"]],[3,4,["G1722"]],[4,5,["G5547"]],[5,8,["G1453"]],[8,9,["G846"]],[9,10,["G1537"]],[10,12,["G3498"]],[12,13,["G2532"]],[13,14,["G2523"]],[14,16,["G1722"]],[16,18,["G848"]],[18,20,["G1188"]],[20,21,["G1722"]],[21,22,["G3588"]],[22,23,["G2032"]],[23,24,[]]]},{"k":29227,"v":[[0,2,["G5231"]],[2,3,["G3956"]],[3,4,["G746"]],[4,5,["G2532"]],[5,6,["G1849"]],[6,7,["G2532"]],[7,8,["G1411"]],[8,9,["G2532"]],[9,10,["G2963"]],[10,11,["G2532"]],[11,12,["G3956"]],[12,13,["G3686"]],[13,16,["G3687"]],[16,17,["G3756"]],[17,18,["G3440"]],[18,19,["G1722"]],[19,20,["G5129"]],[20,21,["G165"]],[21,22,["G235"]],[22,23,["G2532"]],[23,24,["G1722"]],[24,29,["G3195"]]]},{"k":29228,"v":[[0,1,["G2532"]],[1,3,["G5293"]],[3,4,["G3956"]],[4,6,["G5259"]],[6,7,["G846"]],[7,8,["G4228"]],[8,9,["G2532"]],[9,10,["G1325"]],[10,11,["G846"]],[11,15,["G2776"]],[15,16,["G5228"]],[16,17,["G3956"]],[17,20,["G3588"]],[20,21,["G1577"]]]},{"k":29229,"v":[[0,1,["G3748"]],[1,2,["G2076"]],[2,3,["G846"]],[3,4,["G4983"]],[4,5,["G3588"]],[5,6,["G4138"]],[6,10,["G4137"]],[10,11,["G3956"]],[11,12,["G1722"]],[12,13,["G3956"]]]},{"k":29230,"v":[[0,1,["G2532"]],[1,2,["G5209"]],[2,7,["G5607"]],[7,8,["G3498"]],[8,10,["G3900"]],[10,11,["G2532"]],[11,12,["G266"]]]},{"k":29231,"v":[[0,1,["G1722","G3739"]],[1,4,["G4218"]],[4,6,["G4043"]],[6,7,["G2596"]],[7,9,["G3588"]],[9,10,["G165"]],[10,12,["G5127"]],[12,13,["G2889"]],[13,14,["G2596"]],[14,16,["G3588"]],[16,17,["G758"]],[17,19,["G3588"]],[19,20,["G1849"]],[20,22,["G3588"]],[22,23,["G109"]],[23,24,["G3588"]],[24,25,["G4151"]],[25,28,["G1754","G3568"]],[28,29,["G1722"]],[29,30,["G3588"]],[30,31,["G5207"]],[31,33,["G543"]]]},{"k":29232,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G2532"]],[3,4,["G2249"]],[4,5,["G3956"]],[5,8,["G390"]],[8,11,["G4218"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G1939"]],[14,16,["G2257"]],[16,17,["G4561"]],[17,18,["G4160"]],[18,19,["G3588"]],[19,20,["G2307"]],[20,22,["G3588"]],[22,23,["G4561"]],[23,24,["G2532"]],[24,26,["G3588"]],[26,27,["G1271"]],[27,28,["G2532"]],[28,29,["G2258"]],[29,31,["G5449"]],[31,33,["G5043"]],[33,35,["G3709"]],[35,36,["G2532"]],[36,37,["G5613"]],[37,38,["G3062"]]]},{"k":29233,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,4,["G5607"]],[4,5,["G4145"]],[5,6,["G1722"]],[6,7,["G1656"]],[7,8,["G1223"]],[8,9,["G848"]],[9,10,["G4183"]],[10,11,["G26"]],[11,12,["G3739"]],[12,14,["G25"]],[14,15,["G2248"]]]},{"k":29234,"v":[[0,1,["G2532"]],[1,3,["G2248"]],[3,4,["G5607"]],[4,5,["G3498"]],[5,7,["G3900"]],[7,11,["G4806"]],[11,14,["G5547"]],[14,15,["G5485"]],[15,17,["G2075"]],[17,18,["G4982"]]]},{"k":29235,"v":[[0,1,["G2532"]],[1,6,["G4891"]],[6,7,["G2532"]],[7,11,["G4776"]],[11,12,["G1722"]],[12,13,["G2032"]],[13,15,["G1722"]],[15,16,["G5547"]],[16,17,["G2424"]]]},{"k":29236,"v":[[0,1,["G2443"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G165"]],[4,6,["G1904"]],[6,9,["G1731"]],[9,10,["G3588"]],[10,11,["G5235"]],[11,12,["G4149"]],[12,14,["G848"]],[14,15,["G5485"]],[15,16,["G1722"]],[16,18,["G5544"]],[18,19,["G1909"]],[19,20,["G2248"]],[20,21,["G1722"]],[21,22,["G5547"]],[22,23,["G2424"]]]},{"k":29237,"v":[[0,1,["G1063"]],[1,3,["G5485"]],[3,4,["G2075"]],[4,6,["G4982"]],[6,7,["G1223"]],[7,8,["G4102"]],[8,9,["G2532"]],[9,10,["G5124"]],[10,11,["G3756"]],[11,12,["G1537"]],[12,13,["G5216"]],[13,16,["G3588"]],[16,17,["G1435"]],[17,19,["G2316"]]]},{"k":29238,"v":[[0,1,["G3756"]],[1,2,["G1537"]],[2,3,["G2041"]],[3,4,["G3363"]],[4,6,["G5100"]],[6,8,["G2744"]]]},{"k":29239,"v":[[0,1,["G1063"]],[1,3,["G2070"]],[3,4,["G846"]],[4,5,["G4161"]],[5,6,["G2936"]],[6,7,["G1722"]],[7,8,["G5547"]],[8,9,["G2424"]],[9,10,["G1909"]],[10,11,["G18"]],[11,12,["G2041"]],[12,13,["G3739"]],[13,14,["G2316"]],[14,17,["G4282"]],[17,18,["G2443"]],[18,21,["G4043"]],[21,22,["G1722"]],[22,23,["G846"]]]},{"k":29240,"v":[[0,1,["G1352"]],[1,2,["G3421"]],[2,3,["G3754"]],[3,4,["G5210"]],[4,8,["G4218"]],[8,9,["G1484"]],[9,10,["G1722"]],[10,12,["G4561"]],[12,13,["G3588"]],[13,15,["G3004"]],[15,16,["G203"]],[16,17,["G5259"]],[17,21,["G3004"]],[21,23,["G4061"]],[23,24,["G1722"]],[24,26,["G4561"]],[26,29,["G5499"]]]},{"k":29241,"v":[[0,1,["G3754"]],[1,2,["G1722"]],[2,3,["G1565"]],[3,4,["G2540"]],[4,6,["G2258"]],[6,7,["G5565"]],[7,8,["G5547"]],[8,10,["G526"]],[10,12,["G3588"]],[12,13,["G4174"]],[13,15,["G2474"]],[15,16,["G2532"]],[16,17,["G3581"]],[17,19,["G3588"]],[19,20,["G1242"]],[20,22,["G1860"]],[22,23,["G2192"]],[23,24,["G3361"]],[24,25,["G1680"]],[25,26,["G2532"]],[26,28,["G112"]],[28,29,["G1722"]],[29,30,["G3588"]],[30,31,["G2889"]]]},{"k":29242,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,3,["G1722"]],[3,4,["G5547"]],[4,5,["G2424"]],[5,6,["G5210"]],[6,9,["G5607","G4218"]],[9,11,["G3112"]],[11,13,["G1096"]],[13,14,["G1451"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G129"]],[17,19,["G5547"]]]},{"k":29243,"v":[[0,1,["G1063"]],[1,2,["G846"]],[2,3,["G2076"]],[3,4,["G2257"]],[4,5,["G1515"]],[5,8,["G4160"]],[8,9,["G297"]],[9,10,["G1520"]],[10,11,["G2532"]],[11,14,["G3089"]],[14,15,["G3588"]],[15,17,["G3320"]],[17,19,["G5418"]],[19,21,[]]]},{"k":29244,"v":[[0,2,["G2673"]],[2,3,["G1722"]],[3,4,["G848"]],[4,5,["G4561"]],[5,6,["G3588"]],[6,7,["G2189"]],[7,9,["G3588"]],[9,10,["G3551"]],[10,12,["G1785"]],[12,14,["G1722"]],[14,15,["G1378"]],[15,17,["G2443"]],[17,18,["G2936"]],[18,19,["G1722"]],[19,20,["G1438"]],[20,22,["G1417","(G1519)"]],[22,23,["G1520"]],[23,24,["G2537"]],[24,25,["G444"]],[25,27,["G4160"]],[27,28,["G1515"]]]},{"k":29245,"v":[[0,1,["G2532"]],[1,5,["G604"]],[5,6,["G297"]],[6,8,["G2316"]],[8,9,["G1722"]],[9,10,["G1520"]],[10,11,["G4983"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G4716"]],[14,16,["G615"]],[16,17,["G3588"]],[17,18,["G2189"]],[18,19,["G1722","G846"]]]},{"k":29246,"v":[[0,1,["G2532"]],[1,2,["G2064"]],[2,4,["G2097"]],[4,5,["G1515"]],[5,7,["G5213"]],[7,11,["G3112"]],[11,12,["G2532"]],[12,17,["G1451"]]]},{"k":29247,"v":[[0,1,["G3754"]],[1,2,["G1223"]],[2,3,["G846"]],[3,5,["G297"]],[5,6,["G2192"]],[6,7,["G4318"]],[7,8,["G1722"]],[8,9,["G1520"]],[9,10,["G4151"]],[10,11,["G4314"]],[11,12,["G3588"]],[12,13,["G3962"]]]},{"k":29248,"v":[[0,1,["G686"]],[1,2,["G3767"]],[2,4,["G2075"]],[4,6,["G3765"]],[6,7,["G3581"]],[7,8,["G2532"]],[8,9,["G3941"]],[9,10,["G235"]],[10,11,["G4847"]],[11,13,["G3588"]],[13,14,["G40"]],[14,15,["G2532"]],[15,18,["G3609"]],[18,20,["G2316"]]]},{"k":29249,"v":[[0,3,["G2026"]],[3,4,["G1909"]],[4,5,["G3588"]],[5,6,["G2310"]],[6,8,["G3588"]],[8,9,["G652"]],[9,10,["G2532"]],[10,11,["G4396"]],[11,12,["G2424"]],[12,13,["G5547"]],[13,14,["G846"]],[14,15,["G5607"]],[15,18,["G204"]],[18,19,[]]]},{"k":29250,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G3956"]],[3,4,["G3588"]],[4,5,["G3619"]],[5,8,["G4883"]],[8,9,["G837"]],[9,10,["G1519"]],[10,12,["G40"]],[12,13,["G3485"]],[13,14,["G1722"]],[14,16,["G2962"]]]},{"k":29251,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G5210"]],[3,4,["G2532"]],[4,7,["G4925"]],[7,8,["G1519"]],[8,10,["G2732"]],[10,12,["G2316"]],[12,13,["G1722"]],[13,15,["G4151"]]]},{"k":29252,"v":[[0,3,["G5484","G5127"]],[3,4,["G1473"]],[4,5,["G3972"]],[5,6,["G3588"]],[6,7,["G1198"]],[7,9,["G2424"]],[9,10,["G5547"]],[10,11,["G5228"]],[11,12,["G5216"]],[12,13,["G1484"]]]},{"k":29253,"v":[[0,1,["G1489"]],[1,4,["G191"]],[4,6,["G3588"]],[6,7,["G3622"]],[7,9,["G3588"]],[9,10,["G5485"]],[10,12,["G2316"]],[12,15,["G1325"]],[15,16,["G3427"]],[16,17,["G1519"]],[17,18,["G5209"]]]},{"k":29254,"v":[[0,2,["G3754"]],[2,3,["G2596"]],[3,4,["G602"]],[4,7,["G1107"]],[7,9,["G3427"]],[9,10,["G3588"]],[10,11,["G3466"]],[11,12,["G2531"]],[12,15,["G4270"]],[15,16,["G1722"]],[16,18,["G3641"]]]},{"k":29255,"v":[[0,1,["G4314","G3739"]],[1,4,["G314"]],[4,6,["G1410"]],[6,7,["G3539"]],[7,8,["G3450"]],[8,9,["G4907"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G3466"]],[12,14,["G5547"]]]},{"k":29256,"v":[[0,1,["G3739"]],[1,2,["G1722"]],[2,3,["G2087"]],[3,4,["G1074"]],[4,6,["G3756"]],[6,8,["G1107"]],[8,10,["G3588"]],[10,11,["G5207"]],[11,13,["G444"]],[13,14,["G5613"]],[14,17,["G3568"]],[17,18,["G601"]],[18,20,["G846"]],[20,21,["G40"]],[21,22,["G652"]],[22,23,["G2532"]],[23,24,["G4396"]],[24,25,["G1722"]],[25,27,["G4151"]]]},{"k":29257,"v":[[0,2,["G3588"]],[2,3,["G1484"]],[3,5,["G1511"]],[5,6,["G4789"]],[6,7,["G2532"]],[7,11,["G4954"]],[11,12,["G2532"]],[12,13,["G4830"]],[13,15,["G846"]],[15,16,["G1860"]],[16,17,["G1722"]],[17,18,["G5547"]],[18,19,["G1223"]],[19,20,["G3588"]],[20,21,["G2098"]]]},{"k":29258,"v":[[0,1,["G3739"]],[1,4,["G1096"]],[4,6,["G1249"]],[6,7,["G2596"]],[7,9,["G3588"]],[9,10,["G1431"]],[10,12,["G3588"]],[12,13,["G5485"]],[13,15,["G2316"]],[15,16,["G1325"]],[16,18,["G3427"]],[18,19,["G2596"]],[19,20,["G3588"]],[20,22,["G1753"]],[22,24,["G846"]],[24,25,["G1411"]]]},{"k":29259,"v":[[0,2,["G1698"]],[2,8,["G1647"]],[8,10,["G3956"]],[10,11,["G40"]],[11,13,["G3778"]],[13,14,["G5485"]],[14,15,["G1325"]],[15,19,["G2097"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G1484"]],[22,23,["G3588"]],[23,24,["G421"]],[24,25,["G4149"]],[25,27,["G5547"]]]},{"k":29260,"v":[[0,1,["G2532"]],[1,6,["G5461","G3956"]],[6,7,["G5101"]],[7,9,["G3588"]],[9,10,["G2842"]],[10,12,["G3588"]],[12,13,["G3466"]],[13,15,["G575"]],[15,16,["G3588"]],[16,20,["G165"]],[20,23,["G613"]],[23,24,["G1722"]],[24,25,["G2316"]],[25,27,["G2936"]],[27,29,["G3956"]],[29,30,["G1223"]],[30,31,["G2424"]],[31,32,["G5547"]]]},{"k":29261,"v":[[0,4,["G2443"]],[4,5,["G3568"]],[5,7,["G3588"]],[7,8,["G746"]],[8,9,["G2532"]],[9,10,["G1849"]],[10,11,["G1722"]],[11,12,["G2032"]],[12,16,["G1107"]],[16,17,["G1223"]],[17,18,["G3588"]],[18,19,["G1577"]],[19,20,["G3588"]],[20,21,["G4182"]],[21,22,["G4678"]],[22,24,["G2316"]]]},{"k":29262,"v":[[0,1,["G2596"]],[1,3,["G3588"]],[3,4,["G165"]],[4,5,["G4286"]],[5,6,["G3739"]],[6,8,["G4160"]],[8,9,["G1722"]],[9,10,["G5547"]],[10,11,["G2424"]],[11,12,["G2257"]],[12,13,["G2962"]]]},{"k":29263,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,4,["G2192"]],[4,5,["G3954"]],[5,6,["G2532"]],[6,7,["G4318"]],[7,8,["G1722"]],[8,9,["G4006"]],[9,10,["G1223"]],[10,11,["G3588"]],[11,12,["G4102"]],[12,14,["G846"]]]},{"k":29264,"v":[[0,1,["G1352"]],[1,3,["G154"]],[3,6,["G1573"]],[6,7,["G3361"]],[7,8,["G1722"]],[8,9,["G3450"]],[9,10,["G2347"]],[10,11,["G5228"]],[11,12,["G5216"]],[12,13,["G3748"]],[13,14,["G2076"]],[14,15,["G5216"]],[15,16,["G1391"]]]},{"k":29265,"v":[[0,3,["G5484","G5127"]],[3,5,["G2578"]],[5,6,["G3450"]],[6,7,["G1119"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,10,["G3962"]],[10,12,["G2257"]],[12,13,["G2962"]],[13,14,["G2424"]],[14,15,["G5547"]]]},{"k":29266,"v":[[0,1,["G1537"]],[1,2,["G3739"]],[2,4,["G3956"]],[4,5,["G3965"]],[5,6,["G1722"]],[6,7,["G3772"]],[7,8,["G2532"]],[8,9,["G1093"]],[9,11,["G3687"]]]},{"k":29267,"v":[[0,1,["G2443"]],[1,4,["G1325"]],[4,5,["G5213"]],[5,6,["G2596"]],[6,8,["G3588"]],[8,9,["G4149"]],[9,11,["G848"]],[11,12,["G1391"]],[12,15,["G2901"]],[15,17,["G1411"]],[17,18,["G1223"]],[18,19,["G848"]],[19,20,["G4151"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G2080"]],[23,24,["G444"]]]},{"k":29268,"v":[[0,2,["G5547"]],[2,4,["G2730"]],[4,5,["G1722"]],[5,6,["G5216"]],[6,7,["G2588"]],[7,8,["G1223"]],[8,9,["G4102"]],[9,10,["G2443"]],[10,13,["G4492"]],[13,14,["G2532"]],[14,15,["G2311"]],[15,16,["G1722"]],[16,17,["G26"]]]},{"k":29269,"v":[[0,3,["G1840"]],[3,5,["G2638"]],[5,6,["G4862"]],[6,7,["G3956"]],[7,8,["G40"]],[8,9,["G5101"]],[9,11,["G3588"]],[11,12,["G4114"]],[12,13,["G2532"]],[13,14,["G3372"]],[14,15,["G2532"]],[15,16,["G899"]],[16,17,["G2532"]],[17,18,["G5311"]]]},{"k":29270,"v":[[0,1,["G5037"]],[1,3,["G1097"]],[3,4,["G3588"]],[4,5,["G26"]],[5,7,["G5547"]],[7,9,["G5235"]],[9,10,["G1108"]],[10,11,["G2443"]],[11,15,["G4137"]],[15,16,["G1519"]],[16,17,["G3956"]],[17,18,["G3588"]],[18,19,["G4138"]],[19,21,["G2316"]]]},{"k":29271,"v":[[0,1,["G1161"]],[1,6,["G1410"]],[6,8,["G4160"]],[8,10,["G5228","G1537","G4053"]],[10,11,["G5228"]],[11,12,["G3956"]],[12,13,["G3739"]],[13,15,["G154"]],[15,16,["G2228"]],[16,17,["G3539"]],[17,18,["G2596"]],[18,20,["G3588"]],[20,21,["G1411"]],[21,23,["G1754"]],[23,24,["G1722"]],[24,25,["G2254"]]]},{"k":29272,"v":[[0,2,["G846"]],[2,4,["G1391"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G1577"]],[7,8,["G1722"]],[8,9,["G5547"]],[9,10,["G2424"]],[10,11,["G1519"]],[11,12,["G3956"]],[12,13,["G1074"]],[13,16,["G165","G165"]],[16,17,["G281"]]]},{"k":29273,"v":[[0,1,["G1473"]],[1,2,["G3767"]],[2,3,["G3588"]],[3,4,["G1198"]],[4,5,["G1722"]],[5,7,["G2962"]],[7,8,["G3870"]],[8,9,["G5209"]],[9,12,["G4043"]],[12,13,["G516"]],[13,15,["G3588"]],[15,16,["G2821"]],[16,17,["G3739"]],[17,20,["G2564"]]]},{"k":29274,"v":[[0,1,["G3326"]],[1,2,["G3956"]],[2,3,["G5012"]],[3,4,["G2532"]],[4,5,["G4236"]],[5,6,["G3326"]],[6,7,["G3115"]],[7,8,["G430"]],[8,10,["G240"]],[10,11,["G1722"]],[11,12,["G26"]]]},{"k":29275,"v":[[0,1,["G4704"]],[1,3,["G5083"]],[3,4,["G3588"]],[4,5,["G1775"]],[5,7,["G3588"]],[7,8,["G4151"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G4886"]],[11,13,["G1515"]]]},{"k":29276,"v":[[0,3,["G1520"]],[3,4,["G4983"]],[4,5,["G2532"]],[5,6,["G1520"]],[6,7,["G4151"]],[7,9,["G2531"]],[9,12,["G2564"]],[12,13,["G1722"]],[13,14,["G3391"]],[14,15,["G1680"]],[15,17,["G5216"]],[17,18,["G2821"]]]},{"k":29277,"v":[[0,1,["G1520"]],[1,2,["G2962"]],[2,3,["G3391"]],[3,4,["G4102"]],[4,5,["G1520"]],[5,6,["G908"]]]},{"k":29278,"v":[[0,1,["G1520"]],[1,2,["G2316"]],[2,3,["G2532"]],[3,4,["G3962"]],[4,6,["G3956"]],[6,7,["G3588"]],[7,9,["G1909"]],[9,10,["G3956"]],[10,11,["G2532"]],[11,12,["G1223"]],[12,13,["G3956"]],[13,14,["G2532"]],[14,15,["G1722"]],[15,16,["G5213"]],[16,17,["G3956"]]]},{"k":29279,"v":[[0,1,["G1161"]],[1,3,["G1538"]],[3,4,["G1520"]],[4,6,["G2257"]],[6,8,["G1325"]],[8,9,["G5485"]],[9,10,["G2596"]],[10,12,["G3588"]],[12,13,["G3358"]],[13,15,["G3588"]],[15,16,["G1431"]],[16,18,["G5547"]]]},{"k":29280,"v":[[0,1,["G1352"]],[1,3,["G3004"]],[3,7,["G305"]],[7,8,["G1519"]],[8,9,["G5311"]],[9,13,["G162","G161"]],[13,14,["G2532"]],[14,15,["G1325"]],[15,16,["G1390"]],[16,18,["G444"]]]},{"k":29281,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G305"]],[4,5,["G5101"]],[5,6,["G2076"]],[6,8,["G1508"]],[8,9,["G3754"]],[9,11,["G2532"]],[11,12,["G2597"]],[12,13,["G4412"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G2737"]],[16,17,["G3313"]],[17,19,["G3588"]],[19,20,["G1093"]]]},{"k":29282,"v":[[0,3,["G2597"]],[3,4,["G2076"]],[4,6,["G846"]],[6,7,["G2532"]],[7,10,["G305"]],[10,12,["G5231"]],[12,13,["G3956"]],[13,14,["G3772"]],[14,15,["G2443"]],[15,18,["G4137"]],[18,20,["G3956"]]]},{"k":29283,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G1325"]],[3,4,["G3588","G3303"]],[4,5,["G652"]],[5,6,["G1161"]],[6,7,["G3588"]],[7,8,["G4396"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G2099"]],[11,12,["G1161"]],[12,13,["G3588"]],[13,14,["G4166"]],[14,15,["G2532"]],[15,16,["G1320"]]]},{"k":29284,"v":[[0,1,["G4314"]],[1,2,["G3588"]],[2,3,["G2677"]],[3,5,["G3588"]],[5,6,["G40"]],[6,7,["G1519"]],[7,9,["G2041"]],[9,12,["G1248"]],[12,13,["G1519"]],[13,15,["G3619"]],[15,17,["G3588"]],[17,18,["G4983"]],[18,20,["G5547"]]]},{"k":29285,"v":[[0,1,["G3360"]],[1,3,["G3956"]],[3,4,["G2658"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G1775"]],[7,9,["G3588"]],[9,10,["G4102"]],[10,11,["G2532"]],[11,13,["G3588"]],[13,14,["G1922"]],[14,16,["G3588"]],[16,17,["G5207"]],[17,19,["G2316"]],[19,20,["G1519"]],[20,22,["G5046"]],[22,23,["G435"]],[23,24,["G1519"]],[24,26,["G3358"]],[26,29,["G2244"]],[29,31,["G3588"]],[31,32,["G4138"]],[32,34,["G5547"]]]},{"k":29286,"v":[[0,1,["G2443"]],[1,4,["G5600"]],[4,6,["G3371"]],[6,7,["G3516"]],[7,11,["G2831"]],[11,12,["G2532"]],[12,14,["G4064"]],[14,16,["G3956"]],[16,17,["G417"]],[17,19,["G1319"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G2940"]],[22,24,["G444"]],[24,25,["(G1722)"]],[25,27,["G3834"]],[27,28,["G4314"]],[28,34,["G3180","G4106"]]]},{"k":29287,"v":[[0,1,["G1161"]],[1,4,["G226"]],[4,5,["G1722"]],[5,6,["G26"]],[6,9,["G837"]],[9,10,["G1519"]],[10,11,["G846"]],[11,14,["G3956"]],[14,15,["G3739"]],[15,16,["G2076"]],[16,17,["G3588"]],[17,18,["G2776"]],[18,20,["G5547"]]]},{"k":29288,"v":[[0,1,["G1537"]],[1,2,["G3739"]],[2,3,["G3588"]],[3,4,["G3956"]],[4,5,["G4983"]],[5,8,["G4883"]],[8,9,["G2532"]],[9,10,["G4822"]],[10,11,["G1223"]],[11,14,["G3956"]],[14,15,["G860"]],[15,16,["G2024"]],[16,17,["G2596"]],[17,21,["G1753"]],[21,22,["G1722"]],[22,24,["G3358"]],[24,26,["G1538","G1520"]],[26,27,["G3313"]],[27,28,["G4160"]],[28,29,["G838"]],[29,31,["G3588"]],[31,32,["G4983"]],[32,33,["G1519"]],[33,35,["G3619"]],[35,37,["G1438"]],[37,38,["G1722"]],[38,39,["G26"]]]},{"k":29289,"v":[[0,1,["G5124"]],[1,3,["G3004"]],[3,4,["G3767"]],[4,5,["G2532"]],[5,6,["G3143"]],[6,7,["G1722"]],[7,9,["G2962"]],[9,11,["G5209"]],[11,14,["G3371","G4043"]],[14,15,["G2531","(G2532)"]],[15,16,["G3062"]],[16,17,["G1484"]],[17,18,["G4043"]],[18,19,["G1722"]],[19,21,["G3153"]],[21,23,["G848"]],[23,24,["G3563"]]]},{"k":29290,"v":[[0,2,["G3588"]],[2,3,["G1271"]],[3,4,["G4654"]],[4,5,["G5607"]],[5,6,["G526"]],[6,8,["G3588"]],[8,9,["G2222"]],[9,11,["G2316"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G52"]],[14,16,["G5607"]],[16,17,["G1722"]],[17,18,["G846"]],[18,19,["G1223"]],[19,21,["G3588"]],[21,22,["G4457"]],[22,24,["G846"]],[24,25,["G2588"]]]},{"k":29291,"v":[[0,1,["G3748"]],[1,4,["G524"]],[4,8,["G3860","G1438"]],[8,10,["G766"]],[10,11,["G1519"]],[11,12,["G2039"]],[12,13,["G3956"]],[13,14,["G167"]],[14,15,["G1722"]],[15,16,["G4124"]]]},{"k":29292,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,4,["G3756"]],[4,5,["G3779"]],[5,6,["G3129"]],[6,7,["G5547"]]]},{"k":29293,"v":[[0,3,["G1489"]],[3,7,["G191"]],[7,8,["G846"]],[8,9,["G2532"]],[9,12,["G1321"]],[12,13,["G1722"]],[13,14,["G846"]],[14,15,["G2531"]],[15,17,["G225"]],[17,18,["G2076"]],[18,19,["G1722"]],[19,20,["G2424"]]]},{"k":29294,"v":[[0,2,["G5209"]],[2,4,["G659"]],[4,5,["G2596"]],[5,6,["G3588"]],[6,7,["G4387"]],[7,8,["G391"]],[8,9,["G3588"]],[9,10,["G3820"]],[10,11,["G444"]],[11,14,["G5351"]],[14,15,["G2596"]],[15,17,["G3588"]],[17,18,["G539"]],[18,19,["G1939"]]]},{"k":29295,"v":[[0,1,["G1161"]],[1,3,["G365"]],[3,5,["G3588"]],[5,6,["G4151"]],[6,8,["G5216"]],[8,9,["G3563"]]]},{"k":29296,"v":[[0,1,["G2532"]],[1,5,["G1746"]],[5,6,["G3588"]],[6,7,["G2537"]],[7,8,["G444"]],[8,10,["G2596"]],[10,11,["G2316"]],[11,13,["G2936"]],[13,14,["G1722"]],[14,15,["G1343"]],[15,16,["G2532"]],[16,17,["G225"]],[17,18,["G3742"]]]},{"k":29297,"v":[[0,1,["G1352"]],[1,3,["G659"]],[3,4,["G5579"]],[4,5,["G2980"]],[5,7,["G1538"]],[7,8,["G225"]],[8,9,["G3326"]],[9,10,["G848"]],[10,11,["G4139"]],[11,12,["G3754"]],[12,14,["G2070"]],[14,15,["G3196"]],[15,18,["G240"]]]},{"k":29298,"v":[[0,3,["G3710"]],[3,4,["G2532"]],[4,5,["G264"]],[5,7,["G3361"]],[7,8,["G3361"]],[8,9,["G3588"]],[9,10,["G2246"]],[10,12,["G1931"]],[12,13,["G1909"]],[13,14,["G5216"]],[14,15,["G3950"]]]},{"k":29299,"v":[[0,1,["G3383"]],[1,2,["G1325"]],[2,3,["G5117"]],[3,5,["G3588"]],[5,6,["G1228"]]]},{"k":29300,"v":[[0,4,["G2813"]],[4,5,["G2813"]],[5,7,["G3371"]],[7,8,["G1161"]],[8,9,["G3123"]],[9,12,["G2872"]],[12,13,["G2038"]],[13,16,["G5495"]],[16,21,["G18"]],[21,22,["G2443"]],[22,25,["G2192"]],[25,27,["G3330"]],[27,31,["G2192","G5532"]]]},{"k":29301,"v":[[0,2,["G3361","(G3956)"]],[2,3,["G4550"]],[3,4,["G3056"]],[4,5,["G1607"]],[5,7,["G1537"]],[7,8,["G5216"]],[8,9,["G4750"]],[9,10,["G235"]],[10,11,["G1536"]],[11,14,["G18"]],[14,15,["G4314"]],[15,16,["G3588"]],[16,17,["G5532"]],[17,19,["G3619"]],[19,20,["G2443"]],[20,23,["G1325"]],[23,24,["G5485"]],[24,26,["G3588"]],[26,27,["G191"]]]},{"k":29302,"v":[[0,1,["G2532"]],[1,2,["G3076"]],[2,3,["G3361"]],[3,4,["G3588"]],[4,5,["G40"]],[5,6,["G4151"]],[6,8,["G2316"]],[8,9,["G1722","G3739"]],[9,12,["G4972"]],[12,13,["G1519"]],[13,15,["G2250"]],[15,17,["G629"]]]},{"k":29303,"v":[[0,2,["G3956"]],[2,3,["G4088"]],[3,4,["G2532"]],[4,5,["G2372"]],[5,6,["G2532"]],[6,7,["G3709"]],[7,8,["G2532"]],[8,9,["G2906"]],[9,10,["G2532"]],[10,12,["G988"]],[12,15,["G142"]],[15,16,["G575"]],[16,17,["G5216"]],[17,18,["G4862"]],[18,19,["G3956"]],[19,20,["G2549"]]]},{"k":29304,"v":[[0,1,["G1161"]],[1,2,["G1096"]],[2,4,["G5543"]],[4,7,["G240","G1519"]],[7,8,["G2155"]],[8,9,["G5483"]],[9,11,["G1438"]],[11,12,["G2532"]],[12,13,["G2531"]],[13,14,["G2316"]],[14,17,["G1722","G5547"]],[17,19,["G5483"]],[19,20,["G5213"]]]},{"k":29305,"v":[[0,1,["G1096"]],[1,3,["G3767"]],[3,4,["G3402"]],[4,6,["G2316"]],[6,7,["G5613"]],[7,8,["G27"]],[8,9,["G5043"]]]},{"k":29306,"v":[[0,1,["G2532"]],[1,2,["G4043"]],[2,3,["G1722"]],[3,4,["G26"]],[4,5,["G2531"]],[5,6,["G5547"]],[6,7,["G2532"]],[7,9,["G25"]],[9,10,["G2248"]],[10,11,["G2532"]],[11,13,["G3860"]],[13,14,["G1438"]],[14,15,["G5228"]],[15,16,["G2257"]],[16,18,["G4376"]],[18,19,["G2532"]],[19,21,["G2378"]],[21,23,["G2316"]],[23,24,["G1519"]],[24,26,["G2175"]],[26,27,["G3744"]]]},{"k":29307,"v":[[0,1,["G1161"]],[1,2,["G4202"]],[2,3,["G2532"]],[3,4,["G3956"]],[4,5,["G167"]],[5,6,["G2228"]],[6,7,["G4124"]],[7,13,["G3366","G3687"]],[13,14,["G1722"]],[14,15,["G5213"]],[15,16,["G2531"]],[16,17,["G4241"]],[17,18,["G40"]]]},{"k":29308,"v":[[0,1,["G2532"]],[1,2,["G151"]],[2,3,["G2532"]],[3,5,["G3473"]],[5,6,["G2228"]],[6,7,["G2160"]],[7,11,["G433","G3756"]],[11,12,["G235"]],[12,13,["G3123"]],[13,16,["G2169"]]]},{"k":29309,"v":[[0,1,["G1063"]],[1,2,["G5124"]],[2,4,["G2075","G1097"]],[4,5,["G3754"]],[5,6,["G3756"]],[6,7,["G4205"]],[7,8,["G2228"]],[8,10,["G169"]],[10,11,["G2228"]],[11,13,["G4123"]],[13,14,["G3739"]],[14,15,["G2076"]],[15,17,["G1496"]],[17,18,["G2192"]],[18,19,["G3956"]],[19,20,["G2817"]],[20,21,["G1722"]],[21,22,["G3588"]],[22,23,["G932"]],[23,25,["G5547"]],[25,26,["G2532"]],[26,28,["G2316"]]]},{"k":29310,"v":[[0,3,["G3367"]],[3,4,["G538"]],[4,5,["G5209"]],[5,7,["G2756"]],[7,8,["G3056"]],[8,9,["G1063"]],[9,10,["G1223"]],[10,13,["G5023"]],[13,14,["G2064"]],[14,15,["G3588"]],[15,16,["G3709"]],[16,18,["G2316"]],[18,19,["G1909"]],[19,20,["G3588"]],[20,21,["G5207"]],[21,23,["G543"]]]},{"k":29311,"v":[[0,1,["G1096"]],[1,2,["G3361"]],[2,4,["G3767"]],[4,5,["G4830"]],[5,7,["G846"]]]},{"k":29312,"v":[[0,1,["G1063"]],[1,3,["G2258"]],[3,4,["G4218"]],[4,5,["G4655"]],[5,6,["G1161"]],[6,7,["G3568"]],[7,10,["G5457"]],[10,11,["G1722"]],[11,13,["G2962"]],[13,14,["G4043"]],[14,15,["G5613"]],[15,16,["G5043"]],[16,18,["G5457"]]]},{"k":29313,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G2590"]],[3,5,["G3588"]],[5,6,["G4151"]],[6,8,["G1722"]],[8,9,["G3956"]],[9,10,["G19"]],[10,11,["G2532"]],[11,12,["G1343"]],[12,13,["G2532"]],[13,14,["G225"]]]},{"k":29314,"v":[[0,1,["G1381"]],[1,2,["G5101"]],[2,3,["G2076"]],[3,4,["G2101"]],[4,6,["G3588"]],[6,7,["G2962"]]]},{"k":29315,"v":[[0,1,["G2532"]],[1,4,["G4790","G3361"]],[4,6,["G3588"]],[6,7,["G175"]],[7,8,["G2041"]],[8,10,["G4655"]],[10,11,["G1161"]],[11,12,["G3123","(G2532)"]],[12,13,["G1651"]],[13,14,[]]]},{"k":29316,"v":[[0,1,["G1063"]],[1,3,["G2076"]],[3,5,["G149"]],[5,6,["G2532"]],[6,8,["G3004"]],[8,14,["G1096"]],[14,15,["G5259"]],[15,16,["G846"]],[16,18,["G2931"]]]},{"k":29317,"v":[[0,1,["G1161"]],[1,3,["G3956"]],[3,6,["G1651"]],[6,9,["G5319"]],[9,10,["G5259"]],[10,11,["G3588"]],[11,12,["G5457"]],[12,13,["G1063"]],[13,14,["G3956"]],[14,17,["G5319"]],[17,18,["G2076"]],[18,19,["G5457"]]]},{"k":29318,"v":[[0,1,["G1352"]],[1,3,["G3004"]],[3,4,["G1453"]],[4,7,["G2518"]],[7,8,["G2532"]],[8,9,["G450"]],[9,10,["G1537"]],[10,11,["G3588"]],[11,12,["G3498"]],[12,13,["G2532"]],[13,14,["G5547"]],[14,18,["G2017","G4671"]]]},{"k":29319,"v":[[0,1,["G991"]],[1,2,["G3767"]],[2,3,["G4459"]],[3,5,["G4043"]],[5,6,["G199"]],[6,7,["G3361"]],[7,8,["G5613"]],[8,9,["G781"]],[9,10,["G235"]],[10,11,["G5613"]],[11,12,["G4680"]]]},{"k":29320,"v":[[0,1,["G1805"]],[1,2,["G3588"]],[2,3,["G2540"]],[3,4,["G3754"]],[4,5,["G3588"]],[5,6,["G2250"]],[6,7,["G1526"]],[7,8,["G4190"]]]},{"k":29321,"v":[[0,1,["G1223","G5124"]],[1,2,["G1096"]],[2,4,["G3361"]],[4,5,["G878"]],[5,6,["G235"]],[6,7,["G4920"]],[7,8,["G5101"]],[8,9,["G3588"]],[9,10,["G2307"]],[10,12,["G3588"]],[12,13,["G2962"]],[13,14,[]]]},{"k":29322,"v":[[0,1,["G2532"]],[1,4,["G3182","G3361"]],[4,6,["G3631"]],[6,7,["G1722","G3739"]],[7,8,["G2076"]],[8,9,["G810"]],[9,10,["G235"]],[10,12,["G4137"]],[12,13,["G1722"]],[13,15,["G4151"]]]},{"k":29323,"v":[[0,1,["G2980"]],[1,3,["G1438"]],[3,5,["G5568"]],[5,6,["G2532"]],[6,7,["G5215"]],[7,8,["G2532"]],[8,9,["G4152"]],[9,10,["G5603"]],[10,11,["G103"]],[11,12,["G2532"]],[12,14,["G5567"]],[14,15,["G1722"]],[15,16,["G5216"]],[16,17,["G2588"]],[17,19,["G3588"]],[19,20,["G2962"]]]},{"k":29324,"v":[[0,2,["G2168"]],[2,3,["G3842"]],[3,4,["G5228"]],[4,6,["G3956"]],[6,8,["G2316"]],[8,9,["G2532"]],[9,11,["G3962"]],[11,12,["G1722"]],[12,14,["G3686"]],[14,16,["G2257"]],[16,17,["G2962"]],[17,18,["G2424"]],[18,19,["G5547"]]]},{"k":29325,"v":[[0,2,["G5293"]],[2,5,["G240"]],[5,6,["G1722"]],[6,8,["G5401"]],[8,10,["G2316"]]]},{"k":29326,"v":[[0,1,["G1135"]],[1,3,["G5293"]],[3,6,["G2398"]],[6,7,["G435"]],[7,8,["G5613"]],[8,10,["G3588"]],[10,11,["G2962"]]]},{"k":29327,"v":[[0,1,["G3754"]],[1,2,["G3588"]],[2,3,["G435"]],[3,4,["G2076"]],[4,6,["G2776"]],[6,8,["G3588"]],[8,9,["G1135"]],[9,10,["G2532"]],[10,11,["G5613"]],[11,12,["G5547"]],[12,15,["G2776"]],[15,17,["G3588"]],[17,18,["G1577"]],[18,19,["G2532"]],[19,20,["G846"]],[20,21,["G2076"]],[21,23,["G4990"]],[23,25,["G3588"]],[25,26,["G4983"]]]},{"k":29328,"v":[[0,1,["G235"]],[1,2,["G5618"]],[2,3,["G3588"]],[3,4,["G1577"]],[4,7,["G5293"]],[7,8,["G5547"]],[8,9,["G3779"]],[9,11,["G3588"]],[11,12,["G1135"]],[12,16,["G2398"]],[16,17,["G435"]],[17,18,["G1722"]],[18,20,["G3956"]]]},{"k":29329,"v":[[0,1,["G435"]],[1,2,["G25"]],[2,3,["G1438"]],[3,4,["G1135"]],[4,6,["G2531"]],[6,7,["G5547"]],[7,8,["G2532"]],[8,9,["G25"]],[9,10,["G3588"]],[10,11,["G1577"]],[11,12,["G2532"]],[12,13,["G3860"]],[13,14,["G1438"]],[14,15,["G5228"]],[15,16,["G846"]]]},{"k":29330,"v":[[0,1,["G2443"]],[1,4,["G37"]],[4,6,["G2511"]],[6,7,["G846"]],[7,9,["G3588"]],[9,10,["G3067"]],[10,12,["G5204"]],[12,13,["G1722"]],[13,15,["G4487"]]]},{"k":29331,"v":[[0,1,["G2443"]],[1,4,["G3936"]],[4,5,["G846"]],[5,7,["G1438"]],[7,9,["G1741"]],[9,10,["G1577"]],[10,11,["G3361"]],[11,12,["G2192"]],[12,13,["G4695"]],[13,14,["G2228"]],[14,15,["G4512"]],[15,16,["G2228"]],[16,17,["G5100"]],[17,19,["G5108"]],[19,20,["G235"]],[20,21,["G2443"]],[21,24,["G5600"]],[24,25,["G40"]],[25,26,["G2532"]],[26,28,["G299"]]]},{"k":29332,"v":[[0,1,["G3779"]],[1,2,["G3784"]],[2,3,["G435"]],[3,5,["G25"]],[5,6,["G1438"]],[6,7,["G1135"]],[7,8,["G5613"]],[8,10,["G1438"]],[10,11,["G4983"]],[11,14,["G25"]],[14,15,["G1438"]],[15,16,["G1135"]],[16,17,["G25"]],[17,18,["G1438"]]]},{"k":29333,"v":[[0,1,["G1063"]],[1,3,["G3762"]],[3,5,["G4218"]],[5,6,["G3404"]],[6,8,["G1438"]],[8,9,["G4561"]],[9,10,["G235"]],[10,11,["G1625"]],[11,12,["G2532"]],[12,13,["G2282"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G2531"]],[16,17,["G3588"]],[17,18,["G2962"]],[18,19,["G3588"]],[19,20,["G1577"]]]},{"k":29334,"v":[[0,1,["G3754"]],[1,3,["G2070"]],[3,4,["G3196"]],[4,6,["G846"]],[6,7,["G4983"]],[7,8,["G1537"]],[8,9,["G846"]],[9,10,["G4561"]],[10,11,["G2532"]],[11,12,["G1537"]],[12,13,["G846"]],[13,14,["G3747"]]]},{"k":29335,"v":[[0,3,["G473","G5127"]],[3,6,["G444"]],[6,7,["G2641"]],[7,8,["G848"]],[8,9,["G3962"]],[9,10,["G2532"]],[10,11,["G3384"]],[11,12,["G2532"]],[12,15,["G4347"]],[15,16,["G4314"]],[16,17,["G848"]],[17,18,["G1135"]],[18,19,["G2532"]],[19,21,["G1417"]],[21,23,["G2071"]],[23,24,["G3391"]],[24,25,["G4561"]]]},{"k":29336,"v":[[0,1,["G5124"]],[1,2,["G2076"]],[2,4,["G3173"]],[4,5,["G3466"]],[5,6,["G1161"]],[6,7,["G1473"]],[7,8,["G3004"]],[8,9,["G1519"]],[9,10,["G5547"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G1577"]]]},{"k":29337,"v":[[0,1,["G4133"]],[1,4,["G1538"]],[4,6,["G5210","(G2532)"]],[6,8,["G2596","G1520"]],[8,9,["G3779"]],[9,10,["G25"]],[10,11,["G1438"]],[11,12,["G1135"]],[12,14,["G5613"]],[14,15,["G1438"]],[15,16,["G1161"]],[16,17,["G3588"]],[17,18,["G1135"]],[18,20,["G2443"]],[20,22,["G5399"]],[22,24,["G435"]]]},{"k":29338,"v":[[0,1,["G5043"]],[1,2,["G5219"]],[2,3,["G5216"]],[3,4,["G1118"]],[4,5,["G1722"]],[5,7,["G2962"]],[7,8,["G1063"]],[8,9,["G5124"]],[9,10,["G2076"]],[10,11,["G1342"]]]},{"k":29339,"v":[[0,1,["G5091"]],[1,2,["G4675"]],[2,3,["G3962"]],[3,4,["G2532"]],[4,5,["G3384"]],[5,6,["G3748"]],[6,7,["G2076"]],[7,9,["G4413"]],[9,10,["G1785"]],[10,11,["G1722"]],[11,12,["G1860"]]]},{"k":29340,"v":[[0,1,["G2443"]],[1,4,["G1096"]],[4,5,["G2095"]],[5,7,["G4671"]],[7,8,["G2532"]],[8,10,["(G2071)"]],[10,12,["G3118"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G1093"]]]},{"k":29341,"v":[[0,1,["G2532"]],[1,3,["G3962"]],[3,9,["G3949","G3361","G5216","G5043"]],[9,10,["G235"]],[10,13,["G1625","G846"]],[13,14,["G1722"]],[14,16,["G3809"]],[16,17,["G2532"]],[17,18,["G3559"]],[18,21,["G2962"]]]},{"k":29342,"v":[[0,1,["G1401"]],[1,3,["G5219"]],[3,9,["G2962"]],[9,10,["G2596"]],[10,13,["G4561"]],[13,14,["G3326"]],[14,15,["G5401"]],[15,16,["G2532"]],[16,17,["G5156"]],[17,18,["G1722"]],[18,19,["G572"]],[19,21,["G5216"]],[21,22,["G2588"]],[22,23,["G5613"]],[23,25,["G5547"]]]},{"k":29343,"v":[[0,1,["G3361"]],[1,2,["G2596"]],[2,3,["G3787"]],[3,4,["G5613"]],[4,5,["G441"]],[5,6,["G235"]],[6,7,["G5613"]],[7,9,["G1401"]],[9,11,["G5547"]],[11,12,["G4160"]],[12,13,["G3588"]],[13,14,["G2307"]],[14,16,["G2316"]],[16,17,["G1537"]],[17,19,["G5590"]]]},{"k":29344,"v":[[0,1,["G3326"]],[1,3,["G2133"]],[3,5,["G1398"]],[5,6,["G5613"]],[6,8,["G3588"]],[8,9,["G2962"]],[9,10,["G2532"]],[10,11,["G3756"]],[11,13,["G444"]]]},{"k":29345,"v":[[0,1,["G1492"]],[1,2,["G3754"]],[2,3,["G3739","G5100","G1437"]],[3,5,["G18"]],[5,7,["G1538"]],[7,8,["G4160"]],[8,10,["G5124"]],[10,13,["G2865"]],[13,14,["G3844"]],[14,15,["G3588"]],[15,16,["G2962"]],[16,17,["G1535"]],[17,20,["G1401"]],[20,21,["G1535"]],[21,22,["G1658"]]]},{"k":29346,"v":[[0,1,["G2532"]],[1,3,["G2962"]],[3,4,["G4160"]],[4,5,["G3588"]],[5,7,["G846"]],[7,8,["G4314"]],[8,9,["G846"]],[9,10,["G447"]],[10,11,["G547"]],[11,12,["G1492"]],[12,13,["G3754"]],[13,14,["G5216"]],[14,15,["G2962"]],[15,16,["G2532"]],[16,17,["G2076"]],[17,18,["G1722"]],[18,19,["G3772"]],[19,20,["G2532","G3756"]],[20,21,["G2076"]],[21,25,["G4382"]],[25,26,["G3844"]],[26,27,["G846"]]]},{"k":29347,"v":[[0,1,["G3063"]],[1,2,["G3450"]],[2,3,["G80"]],[3,5,["G1743"]],[5,6,["G1722"]],[6,8,["G2962"]],[8,9,["G2532"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G2904"]],[12,14,["G846"]],[14,15,["G2479"]]]},{"k":29348,"v":[[0,2,["G1746"]],[2,3,["G3588"]],[3,5,["G3833"]],[5,7,["G2316"]],[7,9,["G5209"]],[9,12,["G1410"]],[12,14,["G2476"]],[14,15,["G4314"]],[15,16,["G3588"]],[16,17,["G3180"]],[17,19,["G3588"]],[19,20,["G1228"]]]},{"k":29349,"v":[[0,1,["G3754"]],[1,2,["G2254"]],[2,3,["G2076","G3823"]],[3,4,["G3756"]],[4,5,["G4314"]],[5,6,["G4561"]],[6,7,["G2532"]],[7,8,["G129"]],[8,9,["G235"]],[9,10,["G4314"]],[10,11,["G746"]],[11,12,["G4314"]],[12,13,["G1849"]],[13,14,["G4314"]],[14,15,["G3588"]],[15,16,["G2888"]],[16,18,["G3588"]],[18,19,["G4655"]],[19,21,["G5127"]],[21,22,["G165"]],[22,23,["G4314"]],[23,24,["G4152"]],[24,25,["G4189"]],[25,26,["G1722"]],[26,27,["G2032"]],[27,28,[]]]},{"k":29350,"v":[[0,1,["G1223","G5124"]],[1,3,["G353"]],[3,5,["G3588"]],[5,7,["G3833"]],[7,9,["G2316"]],[9,10,["G2443"]],[10,14,["G1410"]],[14,16,["G436"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G4190"]],[19,20,["G2250"]],[20,21,["G2532"]],[21,23,["G2716"]],[23,24,["G537"]],[24,26,["G2476"]]]},{"k":29351,"v":[[0,1,["G2476"]],[1,2,["G3767"]],[2,4,["G5216"]],[4,5,["G3751"]],[5,7,["G4024"]],[7,8,["G1722"]],[8,9,["G225"]],[9,10,["G2532"]],[10,12,["G1746"]],[12,13,["G3588"]],[13,14,["G2382"]],[14,16,["G1343"]]]},{"k":29352,"v":[[0,1,["G2532"]],[1,3,["G4228"]],[3,4,["G5265"]],[4,5,["G1722"]],[5,7,["G2091"]],[7,9,["G3588"]],[9,10,["G2098"]],[10,12,["G1515"]]]},{"k":29353,"v":[[0,1,["G1909"]],[1,2,["G3956"]],[2,3,["G353"]],[3,4,["G3588"]],[4,5,["G2375"]],[5,7,["G4102"]],[7,8,["G1722","G3739"]],[8,12,["G1410"]],[12,14,["G4570"]],[14,15,["G3956"]],[15,16,["G3588"]],[16,17,["G4448"]],[17,18,["G956"]],[18,20,["G3588"]],[20,21,["G4190"]]]},{"k":29354,"v":[[0,1,["G2532"]],[1,2,["G1209"]],[2,3,["G3588"]],[3,4,["G4030"]],[4,6,["G4992"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G3162"]],[9,11,["G3588"]],[11,12,["G4151"]],[12,14,["G3603"]],[14,16,["G4487"]],[16,18,["G2316"]]]},{"k":29355,"v":[[0,1,["G4336"]],[1,2,["G1223","G3956","G2540"]],[2,3,["G1722"]],[3,4,["G3956"]],[4,5,["G4335"]],[5,6,["G2532"]],[6,7,["G1162"]],[7,8,["G1722"]],[8,10,["G4151"]],[10,11,["G2532"]],[11,12,["G69"]],[12,13,["G1519","G846","G5124"]],[13,14,["G1722"]],[14,15,["G3956"]],[15,16,["G4343"]],[16,17,["G2532"]],[17,18,["G1162"]],[18,19,["G4012"]],[19,20,["G3956"]],[20,21,["G40"]]]},{"k":29356,"v":[[0,1,["G2532"]],[1,2,["G5228"]],[2,3,["G1700"]],[3,4,["G2443"]],[4,5,["G3056"]],[5,8,["G1325"]],[8,10,["G3427"]],[10,12,["(G1722)"]],[12,14,["G457"]],[14,15,["G3450"]],[15,16,["G4750"]],[16,17,["G1722","G3954"]],[17,20,["G1107"]],[20,21,["G3588"]],[21,22,["G3466"]],[22,24,["G3588"]],[24,25,["G2098"]]]},{"k":29357,"v":[[0,1,["G5228"]],[1,2,["G3739"]],[2,6,["G4243"]],[6,7,["G1722"]],[7,8,["G254"]],[8,9,["G2443"]],[9,10,["G1722","G846"]],[10,14,["G3955"]],[14,15,["G5613"]],[15,16,["G3165"]],[16,17,["G1163"]],[17,19,["G2980"]]]},{"k":29358,"v":[[0,1,["G1161"]],[1,2,["G2443"]],[2,3,["G5210"]],[3,4,["G2532"]],[4,6,["G1492"]],[6,8,["G2596","G1691"]],[8,10,["G5101"]],[10,12,["G4238"]],[12,13,["G5190"]],[13,15,["G27"]],[15,16,["G80"]],[16,17,["G2532"]],[17,18,["G4103"]],[18,19,["G1249"]],[19,20,["G1722"]],[20,22,["G2962"]],[22,25,["G1107"]],[25,27,["G5213"]],[27,29,["G3956"]]]},{"k":29359,"v":[[0,1,["G3739"]],[1,4,["G3992"]],[4,5,["G4314"]],[5,6,["G5209"]],[6,7,["G1519"]],[7,10,["G846","G5124"]],[10,11,["G2443"]],[11,14,["G1097"]],[14,16,["G4012","G2257"]],[16,17,["G2532"]],[17,21,["G3870"]],[21,22,["G5216"]],[22,23,["G2588"]]]},{"k":29360,"v":[[0,1,["G1515"]],[1,4,["G3588"]],[4,5,["G80"]],[5,6,["G2532"]],[6,7,["G26"]],[7,8,["G3326"]],[8,9,["G4102"]],[9,10,["G575"]],[10,11,["G2316"]],[11,13,["G3962"]],[13,14,["G2532"]],[14,16,["G2962"]],[16,17,["G2424"]],[17,18,["G5547"]]]},{"k":29361,"v":[[0,1,["G5485"]],[1,3,["G3326"]],[3,4,["G3956"]],[4,7,["G25"]],[7,8,["G2257"]],[8,9,["G2962"]],[9,10,["G2424"]],[10,11,["G5547"]],[11,12,["G1722"]],[12,13,["G861"]],[13,14,["G281"]]]},{"k":29362,"v":[[0,1,["G3972"]],[1,2,["G2532"]],[2,3,["G5095"]],[3,5,["G1401"]],[5,7,["G2424"]],[7,8,["G5547"]],[8,10,["G3956"]],[10,11,["G3588"]],[11,12,["G40"]],[12,13,["G1722"]],[13,14,["G5547"]],[14,15,["G2424"]],[15,17,["G5607"]],[17,18,["G1722"]],[18,19,["G5375"]],[19,20,["G4862"]],[20,22,["G1985"]],[22,23,["G2532"]],[23,24,["G1249"]]]},{"k":29363,"v":[[0,1,["G5485"]],[1,4,["G5213"]],[4,5,["G2532"]],[5,6,["G1515"]],[6,7,["G575"]],[7,8,["G2316"]],[8,9,["G2257"]],[9,10,["G3962"]],[10,11,["G2532"]],[11,14,["G2962"]],[14,15,["G2424"]],[15,16,["G5547"]]]},{"k":29364,"v":[[0,2,["G2168"]],[2,3,["G3450"]],[3,4,["G2316"]],[4,5,["G1909"]],[5,6,["G3956"]],[6,7,["G3417"]],[7,9,["G5216"]]]},{"k":29365,"v":[[0,1,["G3842"]],[1,2,["G1722"]],[2,3,["G3956"]],[3,4,["G1162"]],[4,6,["G3450"]],[6,7,["G5228"]],[7,8,["G5216"]],[8,9,["G3956"]],[9,10,["G4160"]],[10,11,["G1162"]],[11,12,["G3326"]],[12,13,["G5479"]]]},{"k":29366,"v":[[0,1,["G1909"]],[1,2,["G5216"]],[2,3,["G2842"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G2098"]],[6,7,["G575"]],[7,9,["G4413"]],[9,10,["G2250"]],[10,11,["G891"]],[11,12,["G3568"]]]},{"k":29367,"v":[[0,2,["G3982"]],[2,6,["G5124","G848"]],[6,7,["G3754"]],[7,11,["G1728"]],[11,13,["G18"]],[13,14,["G2041"]],[14,15,["G1722"]],[15,16,["G5213"]],[16,18,["G2005"]],[18,20,["G891"]],[20,22,["G2250"]],[22,24,["G2424"]],[24,25,["G5547"]]]},{"k":29368,"v":[[0,2,["G2531"]],[2,4,["G2076"]],[4,5,["G1342"]],[5,7,["G1698"]],[7,9,["G5426"]],[9,10,["G5124"]],[10,11,["G5228"]],[11,12,["G5216"]],[12,13,["G3956"]],[13,15,["G3165"]],[15,16,["G2192"]],[16,17,["G5209"]],[17,18,["G1722"]],[18,20,["G2588"]],[20,23,["G5037"]],[23,24,["G1722"]],[24,25,["G3450"]],[25,26,["G1199"]],[26,27,["G2532"]],[27,29,["G3588"]],[29,30,["G627"]],[30,31,["G2532"]],[31,32,["G951"]],[32,34,["G3588"]],[34,35,["G2098"]],[35,36,["G5209"]],[36,37,["G3956"]],[37,38,["G5607"]],[38,39,["G4791"]],[39,41,["G3450"]],[41,42,["G5485"]]]},{"k":29369,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,3,["G2076"]],[3,4,["G3450"]],[4,5,["G3144"]],[5,6,["G5613"]],[6,10,["G1971"]],[10,11,["G5209"]],[11,12,["G3956"]],[12,13,["G1722"]],[13,15,["G4698"]],[15,17,["G2424"]],[17,18,["G5547"]]]},{"k":29370,"v":[[0,1,["G2532"]],[1,2,["G5124"]],[2,4,["G4336"]],[4,5,["G2443"]],[5,6,["G5216"]],[6,7,["G26"]],[7,9,["G4052"]],[9,10,["G2089"]],[10,11,["G3123"]],[11,12,["G2532"]],[12,13,["G3123"]],[13,14,["G1722"]],[14,15,["G1922"]],[15,16,["G2532"]],[16,18,["G3956"]],[18,19,["G144"]]]},{"k":29371,"v":[[0,2,["G5209"]],[2,4,["G1381"]],[4,8,["G1308"]],[8,9,["G2443"]],[9,12,["G5600"]],[12,13,["G1506"]],[13,14,["G2532"]],[14,16,["G677"]],[16,17,["G1519"]],[17,19,["G2250"]],[19,21,["G5547"]]]},{"k":29372,"v":[[0,2,["G4137"]],[2,5,["G2590"]],[5,7,["G1343"]],[7,8,["G3588"]],[8,10,["G1223"]],[10,11,["G2424"]],[11,12,["G5547"]],[12,13,["G1519"]],[13,15,["G1391"]],[15,16,["G2532"]],[16,17,["G1868"]],[17,19,["G2316"]]]},{"k":29373,"v":[[0,1,["G1161"]],[1,3,["G1014"]],[3,4,["G5209"]],[4,6,["G1097"]],[6,7,["G80"]],[7,8,["G3754"]],[8,10,["G3588"]],[10,13,["G2596"]],[13,14,["G1691"]],[14,17,["G2064"]],[17,18,["G3123"]],[18,19,["G1519"]],[19,21,["G4297"]],[21,23,["G3588"]],[23,24,["G2098"]]]},{"k":29374,"v":[[0,2,["G5620"]],[2,3,["G3450"]],[3,4,["G1199"]],[4,5,["G1722"]],[5,6,["G5547"]],[6,7,["G1096"]],[7,8,["G5318"]],[8,9,["G1722"]],[9,10,["G3650"]],[10,11,["G3588"]],[11,12,["G4232"]],[12,13,["G2532"]],[13,15,["G3956"]],[15,16,["G3062"]],[16,17,[]]]},{"k":29375,"v":[[0,1,["G2532"]],[1,2,["G4119"]],[2,4,["G3588"]],[4,5,["G80"]],[5,6,["G1722"]],[6,8,["G2962"]],[8,10,["G3982"]],[10,12,["G3450"]],[12,13,["G1199"]],[13,17,["G5111","G4056"]],[17,19,["G2980"]],[19,20,["G3588"]],[20,21,["G3056"]],[21,23,["G870"]]]},{"k":29376,"v":[[0,1,["G5100"]],[1,2,["G3303"]],[2,3,["G2784"]],[3,4,["G5547"]],[4,5,["G2532"]],[5,6,["G1223"]],[6,7,["G5355"]],[7,8,["G2532"]],[8,9,["G2054"]],[9,10,["G1161"]],[10,11,["G5100"]],[11,12,["G2532"]],[12,13,["G1223"]],[13,15,["G2107"]]]},{"k":29377,"v":[[0,2,["G3588","G3303"]],[2,3,["G2605"]],[3,4,["G5547"]],[4,5,["G1537"]],[5,6,["G2052"]],[6,7,["G3756"]],[7,8,["G55"]],[8,9,["G3633"]],[9,11,["G2018"]],[11,12,["G2347"]],[12,14,["G3450"]],[14,15,["G1199"]]]},{"k":29378,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1537"]],[4,5,["G26"]],[5,6,["G1492"]],[6,7,["G3754"]],[7,10,["G2749"]],[10,11,["G1519"]],[11,13,["G627"]],[13,15,["G3588"]],[15,16,["G2098"]]]},{"k":29379,"v":[[0,1,["G5101"]],[1,2,["G1063"]],[2,3,["G4133"]],[3,4,["G3956"]],[4,5,["G5158"]],[5,6,["G1535"]],[6,8,["G4392"]],[8,9,["G1535"]],[9,11,["G225"]],[11,12,["G5547"]],[12,14,["G2605"]],[14,15,["G2532"]],[15,17,["G1722","G5129"]],[17,19,["G5463"]],[19,20,["G235"]],[20,21,["G2532"]],[21,23,["G5463"]]]},{"k":29380,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G5124"]],[5,7,["G576"]],[7,8,["G1519"]],[8,9,["G3427"]],[9,10,["G4991"]],[10,11,["G1223"]],[11,12,["G5216"]],[12,13,["G1162"]],[13,14,["G2532"]],[14,16,["G2024"]],[16,18,["G3588"]],[18,19,["G4151"]],[19,21,["G2424"]],[21,22,["G5547"]]]},{"k":29381,"v":[[0,1,["G2596"]],[1,3,["G3450"]],[3,5,["G603"]],[5,6,["G2532"]],[6,8,["G1680"]],[8,9,["G3754"]],[9,10,["G1722"]],[10,11,["G3762"]],[11,15,["G153"]],[15,16,["G235"]],[16,18,["G1722"]],[18,19,["G3956"]],[19,20,["G3954"]],[20,21,["G5613"]],[21,22,["G3842"]],[22,24,["G3568"]],[24,25,["G2532"]],[25,26,["G5547"]],[26,29,["G3170"]],[29,30,["G1722"]],[30,31,["G3450"]],[31,32,["G4983"]],[32,33,["G1535"]],[33,36,["G1223"]],[36,37,["G2222"]],[37,38,["G1535"]],[38,39,["G1223"]],[39,40,["G2288"]]]},{"k":29382,"v":[[0,1,["G1063"]],[1,3,["G1698"]],[3,5,["G2198"]],[5,7,["G5547"]],[7,8,["G2532"]],[8,10,["G599"]],[10,12,["G2771"]]]},{"k":29383,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G2198"]],[4,5,["G1722"]],[5,7,["G4561"]],[7,8,["G5124"]],[8,11,["G2590"]],[11,13,["G3427"]],[13,14,["G2041"]],[14,15,["G2532"]],[15,16,["G5101"]],[16,19,["G138"]],[19,21,["G1107"]],[21,22,["G3756"]]]},{"k":29384,"v":[[0,1,["G1063"]],[1,6,["G4912"]],[6,7,["G1537"]],[7,8,["G1417"]],[8,9,["G2192"]],[9,11,["G1939"]],[11,13,["G360"]],[13,14,["G2532"]],[14,16,["G1511"]],[16,17,["G4862"]],[17,18,["G5547"]],[18,21,["G4183","G3123"]],[21,22,["G2909"]]]},{"k":29385,"v":[[0,1,["G1161"]],[1,3,["G1961"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G4561"]],[6,9,["G316"]],[9,10,["G1223"]],[10,11,["G5209"]]]},{"k":29386,"v":[[0,1,["G2532"]],[1,4,["G3982","G5124"]],[4,6,["G1492"]],[6,7,["G3754"]],[7,10,["G3306"]],[10,11,["G2532"]],[11,13,["G4839"]],[13,14,["G5213"]],[14,15,["G3956"]],[15,16,["G1519"]],[16,17,["G5216"]],[17,18,["G4297"]],[18,19,["G2532"]],[19,20,["G5479"]],[20,22,["G4102"]]]},{"k":29387,"v":[[0,1,["G2443"]],[1,2,["G5216"]],[2,3,["G2745"]],[3,7,["G4052"]],[7,8,["G1722"]],[8,9,["G2424"]],[9,10,["G5547"]],[10,11,["G1722"]],[11,12,["G1698"]],[12,13,["G1223"]],[13,14,["G1699"]],[14,15,["G3952"]],[15,16,["G4314"]],[16,17,["G5209"]],[17,18,["G3825"]]]},{"k":29388,"v":[[0,1,["G3440"]],[1,5,["G4176"]],[5,8,["G516"]],[8,9,["G3588"]],[9,10,["G2098"]],[10,12,["G5547"]],[12,13,["G2443"]],[13,14,["G1535"]],[14,16,["G2064"]],[16,17,["G2532"]],[17,18,["G1492"]],[18,19,["G5209"]],[19,21,["G1535"]],[21,23,["G548"]],[23,26,["G191"]],[26,29,["G5216","G4012"]],[29,30,["G3754"]],[30,33,["G4739"]],[33,34,["G1722"]],[34,35,["G1520"]],[35,36,["G4151"]],[36,38,["G3391"]],[38,39,["G5590"]],[39,41,["G4866"]],[41,43,["G3588"]],[43,44,["G4102"]],[44,46,["G3588"]],[46,47,["G2098"]]]},{"k":29389,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G3367"]],[3,4,["G4426","G3361"]],[4,5,["G5259"]],[5,7,["G480"]],[7,8,["G3748"]],[8,9,["G2076"]],[9,11,["G846"]],[11,12,["(G3303)"]],[12,14,["G1732"]],[14,16,["G684"]],[16,17,["G1161"]],[17,19,["G5213"]],[19,21,["G4991"]],[21,22,["G2532"]],[22,23,["G5124"]],[23,24,["G575"]],[24,25,["G2316"]]]},{"k":29390,"v":[[0,1,["G3754"]],[1,3,["G5213"]],[3,6,["G5483"]],[6,9,["G5228"]],[9,11,["G5547"]],[11,12,["G3756"]],[12,13,["G3440"]],[13,15,["G4100"]],[15,16,["G1519"]],[16,17,["G846"]],[17,18,["G235"]],[18,19,["G2532"]],[19,21,["G3958"]],[21,24,["G5228","G846"]]]},{"k":29391,"v":[[0,1,["G2192"]],[1,2,["G3588"]],[2,3,["G846"]],[3,4,["G73"]],[4,5,["G3634"]],[5,7,["G1492"]],[7,8,["G1722"]],[8,9,["G1698"]],[9,10,["G2532"]],[10,11,["G3568"]],[11,12,["G191"]],[12,15,["G1722"]],[15,16,["G1698"]]]},{"k":29392,"v":[[0,5,["G1536","G3767"]],[5,6,["G3874"]],[6,7,["G1722"]],[7,8,["G5547"]],[8,10,["G1536"]],[10,11,["G3890"]],[11,13,["G26"]],[13,15,["G1536"]],[15,16,["G2842"]],[16,19,["G4151"]],[19,21,["G1536"]],[21,22,["G4698"]],[22,23,["G2532"]],[23,24,["G3628"]]]},{"k":29393,"v":[[0,1,["G4137"]],[1,3,["G3450"]],[3,4,["G5479"]],[4,5,["G2443"]],[5,8,["G5426","G846"]],[8,9,["G2192"]],[9,10,["G3588"]],[10,11,["G846"]],[11,12,["G26"]],[12,16,["G4861"]],[16,18,["G1520"]],[18,19,["G5426"]]]},{"k":29394,"v":[[0,2,["G3367"]],[2,5,["G2596"]],[5,6,["G2052"]],[6,7,["G2228"]],[7,8,["G2754"]],[8,9,["G235"]],[9,13,["G5012"]],[13,17,["G240","G2233"]],[17,18,["G5242"]],[18,20,["G1438"]]]},{"k":29395,"v":[[0,1,["G4648"]],[1,2,["G3361"]],[2,4,["G1538"]],[4,8,["G1438"]],[8,9,["G235"]],[9,11,["G1538"]],[11,12,["G2532"]],[12,17,["G2087"]]]},{"k":29396,"v":[[0,0,["(G1063)"]],[0,4,["G5426","G5124"]],[4,5,["G1722"]],[5,6,["G5213"]],[6,7,["G3739"]],[7,9,["G2532"]],[9,10,["G1722"]],[10,11,["G5547"]],[11,12,["G2424"]]]},{"k":29397,"v":[[0,1,["G3739"]],[1,2,["G5225"]],[2,3,["G1722"]],[3,5,["G3444"]],[5,7,["G2316"]],[7,8,["G2233"]],[8,10,["G3756"]],[10,11,["G725"]],[11,13,["G1511"]],[13,14,["G2470"]],[14,16,["G2316"]]]},{"k":29398,"v":[[0,1,["G235"]],[1,6,["G2758","G1438"]],[6,8,["G2983"]],[8,12,["G3444"]],[12,15,["G1401"]],[15,18,["G1096"]],[18,19,["G1722"]],[19,21,["G3667"]],[21,23,["G444"]]]},{"k":29399,"v":[[0,1,["G2532"]],[1,3,["G2147"]],[3,5,["G4976"]],[5,6,["G5613"]],[6,8,["G444"]],[8,10,["G5013"]],[10,11,["G1438"]],[11,13,["G1096"]],[13,14,["G5255"]],[14,15,["G3360"]],[15,16,["G2288"]],[16,17,["G1161"]],[17,19,["G2288"]],[19,22,["G4716"]]]},{"k":29400,"v":[[0,1,["G1352"]],[1,2,["G2316"]],[2,3,["G2532"]],[3,6,["G5251"]],[6,7,["G846"]],[7,8,["G2532"]],[8,9,["G5483"]],[9,10,["G846"]],[10,12,["G3686"]],[12,13,["G3588"]],[13,15,["G5228"]],[15,16,["G3956"]],[16,17,["G3686"]]]},{"k":29401,"v":[[0,1,["G2443"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G3686"]],[4,6,["G2424"]],[6,7,["G3956"]],[7,8,["G1119"]],[8,10,["G2578"]],[10,14,["G2032"]],[14,15,["G2532"]],[15,18,["G1919"]],[18,19,["G2532"]],[19,23,["G2709"]]]},{"k":29402,"v":[[0,1,["G2532"]],[1,3,["G3956"]],[3,4,["G1100"]],[4,6,["G1843"]],[6,7,["G3754"]],[7,8,["G2424"]],[8,9,["G5547"]],[9,11,["G2962"]],[11,12,["G1519"]],[12,14,["G1391"]],[14,16,["G2316"]],[16,18,["G3962"]]]},{"k":29403,"v":[[0,1,["G5620"]],[1,2,["G3450"]],[2,3,["G27"]],[3,4,["G2531"]],[4,7,["G3842"]],[7,8,["G5219"]],[8,9,["G3361"]],[9,10,["G5613"]],[10,11,["G1722"]],[11,12,["G3450"]],[12,13,["G3952"]],[13,14,["G3440"]],[14,15,["G235"]],[15,16,["G3568"]],[16,17,["G4183"]],[17,18,["G3123"]],[18,19,["G1722"]],[19,20,["G3450"]],[20,21,["G666"]],[21,23,["G2716"]],[23,25,["G1438"]],[25,26,["G4991"]],[26,27,["G3326"]],[27,28,["G5401"]],[28,29,["G2532"]],[29,30,["G5156"]]]},{"k":29404,"v":[[0,1,["G1063"]],[1,3,["G2076"]],[3,4,["G2316"]],[4,6,["G1754"]],[6,7,["G1722"]],[7,8,["G5213"]],[8,9,["G2532"]],[9,11,["G2309"]],[11,12,["G2532"]],[12,14,["G1754"]],[14,16,["G5228"]],[16,18,["G2107"]]]},{"k":29405,"v":[[0,1,["G4160"]],[1,3,["G3956"]],[3,4,["G5565"]],[4,5,["G1112"]],[5,6,["G2532"]],[6,7,["G1261"]]]},{"k":29406,"v":[[0,1,["G2443"]],[1,4,["G1096"]],[4,5,["G273"]],[5,6,["G2532"]],[6,7,["G185"]],[7,9,["G5043"]],[9,11,["G2316"]],[11,13,["G298"]],[13,14,["G1722"]],[14,16,["G3319"]],[16,19,["G4646"]],[19,20,["G2532"]],[20,21,["G1294"]],[21,22,["G1074"]],[22,23,["G1722"]],[23,24,["G3739"]],[24,26,["G5316"]],[26,27,["G5613"]],[27,28,["G5458"]],[28,29,["G1722"]],[29,31,["G2889"]]]},{"k":29407,"v":[[0,2,["G1907"]],[2,4,["G3056"]],[4,6,["G2222"]],[6,7,["G3754"]],[7,8,["G1698"]],[8,10,["G1519","G2745"]],[10,11,["G1519"]],[11,13,["G2250"]],[13,15,["G5547"]],[15,16,["G3754"]],[16,19,["G3756"]],[19,20,["G5143"]],[20,21,["G1519"]],[21,22,["G2756"]],[22,23,["G3761"]],[23,24,["G2872"]],[24,25,["G1519"]],[25,26,["G2756"]]]},{"k":29408,"v":[[0,1,["G235"]],[1,3,["G1499"]],[3,6,["G4689"]],[6,7,["G1909"]],[7,8,["G3588"]],[8,9,["G2378"]],[9,10,["G2532"]],[10,11,["G3009"]],[11,13,["G5216"]],[13,14,["G4102"]],[14,16,["G5463"]],[16,17,["G2532"]],[17,19,["G4796"]],[19,20,["G5213"]],[20,21,["G3956"]]]},{"k":29409,"v":[[0,0,["(G1161)"]],[0,2,["G3588"]],[2,4,["G846"]],[4,5,["G2532"]],[5,7,["G5210"]],[7,8,["G5463"]],[8,9,["G2532"]],[9,11,["G4796"]],[11,12,["G3427"]]]},{"k":29410,"v":[[0,1,["G1161"]],[1,3,["G1679"]],[3,4,["G1722"]],[4,6,["G2962"]],[6,7,["G2424"]],[7,9,["G3992"]],[9,10,["G5095"]],[10,11,["G5030"]],[11,13,["G5213"]],[13,14,["G2443"]],[14,16,["G2504"]],[16,21,["G2174"]],[21,24,["G1097"]],[24,26,["G4012","G5216"]]]},{"k":29411,"v":[[0,1,["G1063"]],[1,3,["G2192"]],[3,5,["G3762"]],[5,6,["G2473"]],[6,7,["G3748"]],[7,9,["G1104"]],[9,10,["G3309"]],[10,13,["G4012","G5216"]]]},{"k":29412,"v":[[0,1,["G1063"]],[1,2,["G3956"]],[2,3,["G2212"]],[3,5,["G1438"]],[5,6,["G3756"]],[6,8,["G3588"]],[8,11,["G2424"]],[11,12,["G5547"]]]},{"k":29413,"v":[[0,1,["G1161"]],[1,3,["G1097"]],[3,4,["G3588"]],[4,5,["G1382"]],[5,7,["G846"]],[7,8,["G3754"]],[8,9,["G5613"]],[9,11,["G5043"]],[11,14,["G3962"]],[14,17,["G1398"]],[17,18,["G4862"]],[18,19,["G1698"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G2098"]]]},{"k":29414,"v":[[0,1,["G5126"]],[1,2,["(G3767)"]],[2,4,["G1679"]],[4,6,["G3992"]],[6,7,["G1824"]],[7,10,["G5613"]],[10,13,["G542","G302"]],[13,18,["G4012"]],[18,19,["G1691"]]]},{"k":29415,"v":[[0,1,["G1161"]],[1,3,["G3982"]],[3,4,["G1722"]],[4,6,["G2962"]],[6,7,["G3754"]],[7,9,["G2532"]],[9,10,["G846"]],[10,12,["G2064"]],[12,13,["G5030"]]]},{"k":29416,"v":[[0,1,["G1161"]],[1,3,["G2233"]],[3,5,["G316"]],[5,7,["G3992"]],[7,8,["G4314"]],[8,9,["G5209"]],[9,10,["G1891"]],[10,11,["G3450"]],[11,12,["G80"]],[12,13,["G2532"]],[13,16,["G4904"]],[16,17,["G2532"]],[17,18,["G4961"]],[18,19,["G1161"]],[19,20,["G5216"]],[20,21,["G652"]],[21,22,["G2532"]],[22,25,["G3011"]],[25,27,["G3450"]],[27,28,["G5532"]]]},{"k":29417,"v":[[0,1,["G1894"]],[1,4,["G2258","G1971"]],[4,5,["G5209"]],[5,6,["G3956"]],[6,7,["G2532"]],[7,11,["G85"]],[11,12,["G1360"]],[12,16,["G191"]],[16,17,["G3754"]],[17,21,["G770"]]]},{"k":29418,"v":[[0,1,["G1063"]],[1,2,["G2532"]],[2,5,["G770"]],[5,7,["G3897"]],[7,8,["G2288"]],[8,9,["G235"]],[9,10,["G2316"]],[10,12,["G1653"]],[12,14,["G846"]],[14,15,["G1161"]],[15,16,["G3756"]],[16,18,["G846"]],[18,19,["G3440"]],[19,20,["G235"]],[20,22,["G1691"]],[22,23,["G2532"]],[23,24,["G3363"]],[24,27,["G2192"]],[27,28,["G3077"]],[28,29,["G1909"]],[29,30,["G3077"]]]},{"k":29419,"v":[[0,2,["G3992"]],[2,3,["G846"]],[3,4,["G3767"]],[4,7,["G4708"]],[7,8,["G2443"]],[8,11,["G1492"]],[11,12,["G846"]],[12,13,["G3825"]],[13,16,["G5463"]],[16,19,["G2504"]],[19,21,["G5600"]],[21,24,["G253"]]]},{"k":29420,"v":[[0,1,["G4327"]],[1,2,["G846"]],[2,3,["G3767"]],[3,4,["G1722"]],[4,6,["G2962"]],[6,7,["G3326"]],[7,8,["G3956"]],[8,9,["G5479"]],[9,10,["G2532"]],[10,11,["G2192"]],[11,12,["G5108"]],[12,14,["G1784"]]]},{"k":29421,"v":[[0,1,["G3754"]],[1,2,["G1223"]],[2,3,["G3588"]],[3,4,["G2041"]],[4,6,["G5547"]],[6,9,["G1448"]],[9,10,["G3360"]],[10,11,["G2288"]],[11,13,["G3851"]],[13,15,["G5590"]],[15,16,["G2443"]],[16,17,["G378"]],[17,18,["G5216"]],[18,19,["G5303"]],[19,21,["G3009"]],[21,22,["G4314"]],[22,23,["G3165"]]]},{"k":29422,"v":[[0,1,["G3063"]],[1,2,["G3450"]],[2,3,["G80"]],[3,4,["G5463"]],[4,5,["G1722"]],[5,7,["G2962"]],[7,9,["G1125"]],[9,10,["G3588"]],[10,12,["G846"]],[12,14,["G5213"]],[14,16,["G1698"]],[16,17,["G3303"]],[17,19,["G3756"]],[19,20,["G3636"]],[20,21,["G1161"]],[21,23,["G5213"]],[23,26,["G804"]]]},{"k":29423,"v":[[0,1,["G991"]],[1,3,["G2965"]],[3,4,["G991"]],[4,6,["G2556"]],[6,7,["G2040"]],[7,8,["G991"]],[8,10,["G3588"]],[10,11,["G2699"]]]},{"k":29424,"v":[[0,1,["G1063"]],[1,2,["G2249"]],[2,3,["G2070"]],[3,4,["G3588"]],[4,5,["G4061"]],[5,7,["G3000"]],[7,8,["G2316"]],[8,11,["G4151"]],[11,12,["G2532"]],[12,13,["G2744"]],[13,14,["G1722"]],[14,15,["G5547"]],[15,16,["G2424"]],[16,17,["G2532"]],[17,20,["G3982","G3756"]],[20,21,["G1722"]],[21,23,["G4561"]]]},{"k":29425,"v":[[0,1,["G2539"]],[1,2,["G1473"]],[2,4,["G2532"]],[4,5,["G2192"]],[5,6,["G4006"]],[6,7,["G1722"]],[7,9,["G4561"]],[9,11,["G1536"]],[11,13,["G243"]],[13,14,["G1380"]],[14,21,["G3982"]],[21,22,["G1722"]],[22,24,["G4561"]],[24,25,["G1473"]],[25,26,["G3123"]]]},{"k":29426,"v":[[0,1,["G4061"]],[1,4,["G3637"]],[4,5,["G1537"]],[5,7,["G1085"]],[7,9,["G2474"]],[9,12,["G5443"]],[12,14,["G958"]],[14,16,["G1445"]],[16,17,["G1537"]],[17,19,["G1445"]],[19,21,["G2596"]],[21,23,["G3551"]],[23,25,["G5330"]]]},{"k":29427,"v":[[0,1,["G2596"]],[1,2,["G2205"]],[2,3,["G1377"]],[3,4,["G3588"]],[4,5,["G1577"]],[5,6,["G2596"]],[6,8,["G1343"]],[8,9,["G3588"]],[9,11,["G1722"]],[11,13,["G3551"]],[13,14,["G273"]]]},{"k":29428,"v":[[0,1,["G235"]],[1,3,["G3748"]],[3,4,["G2258"]],[4,5,["G2771"]],[5,7,["G3427"]],[7,8,["G5023"]],[8,10,["G2233"]],[10,11,["G2209"]],[11,12,["G1223"]],[12,13,["G5547"]]]},{"k":29429,"v":[[0,1,["G235"]],[1,2,["G3304"]],[2,3,["G2532"]],[3,5,["G2233"]],[5,7,["G3956"]],[7,8,["(G1511)"]],[8,9,["G2209"]],[9,10,["G1223"]],[10,11,["G3588"]],[11,12,["G5242"]],[12,14,["G3588"]],[14,15,["G1108"]],[15,17,["G5547"]],[17,18,["G2424"]],[18,19,["G3450"]],[19,20,["G2962"]],[20,21,["G1223"]],[21,22,["G3739"]],[22,27,["G2210"]],[27,30,["G3956"]],[30,31,["G2532"]],[31,33,["G2233"]],[33,34,["(G1511)"]],[34,36,["G4657"]],[36,37,["G2443"]],[37,40,["G2770"]],[40,41,["G5547"]]]},{"k":29430,"v":[[0,1,["G2532"]],[1,3,["G2147"]],[3,4,["G1722"]],[4,5,["G846"]],[5,6,["G3361"]],[6,7,["G2192"]],[7,9,["G1699"]],[9,10,["G1343"]],[10,11,["G3588"]],[11,13,["G1537"]],[13,15,["G3551"]],[15,16,["G235"]],[16,17,["G3588"]],[17,20,["G1223"]],[20,22,["G4102"]],[22,24,["G5547"]],[24,25,["G3588"]],[25,26,["G1343"]],[26,29,["G1537"]],[29,30,["G2316"]],[30,31,["G1909"]],[31,32,["G4102"]]]},{"k":29431,"v":[[0,4,["G1097"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G1411"]],[8,10,["G846"]],[10,11,["G386"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G2842"]],[14,16,["G846"]],[16,17,["G3804"]],[17,20,["G4833"]],[20,22,["G846"]],[22,23,["G2288"]]]},{"k":29432,"v":[[0,1,["G1487"]],[1,4,["G4459"]],[4,7,["G2658"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G1815"]],[10,12,["G3588"]],[12,13,["G3498"]]]},{"k":29433,"v":[[0,1,["G3756"]],[1,3,["G3754"]],[3,6,["G2235"]],[6,7,["G2983"]],[7,8,["G2228"]],[8,11,["G5048","G2235"]],[11,12,["G1161"]],[12,15,["G1377"]],[15,17,["G1499"]],[17,20,["G2638"]],[20,22,["G1909"]],[22,23,["G3739"]],[23,24,["G2532"]],[24,27,["G2638"]],[27,28,["G5259"]],[28,29,["G5547"]],[29,30,["G2424"]]]},{"k":29434,"v":[[0,1,["G80"]],[1,2,["G1473"]],[2,3,["G3049"]],[3,4,["G3756"]],[4,5,["G1683"]],[5,8,["G2638"]],[8,9,["G1161"]],[9,12,["G1520"]],[12,15,["G1950"]],[15,20,["G3694","G3303"]],[20,21,["G1161"]],[21,23,["G1901"]],[23,29,["G1715"]]]},{"k":29435,"v":[[0,2,["G1377"]],[2,3,["G2596"]],[3,5,["G4649"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G1017"]],[8,10,["G3588"]],[10,11,["G507"]],[11,12,["G2821"]],[12,14,["G2316"]],[14,15,["G1722"]],[15,16,["G5547"]],[16,17,["G2424"]]]},{"k":29436,"v":[[0,3,["G3767"]],[3,6,["G3745"]],[6,8,["G5046"]],[8,11,["G5426","G5124"]],[11,12,["G2532"]],[12,16,["G1536"]],[16,20,["G5426","G2088"]],[20,21,["G2316"]],[21,23,["G601"]],[23,24,["G2532"]],[24,25,["G5124"]],[25,27,["G5213"]]]},{"k":29437,"v":[[0,1,["G4133"]],[1,2,["G1519","G3739"]],[2,6,["G5348"]],[6,9,["G4748"]],[9,11,["G3588"]],[11,12,["G846"]],[12,13,["G2583"]],[13,16,["G5426"]],[16,17,["G3588"]],[17,19,["G846"]]]},{"k":29438,"v":[[0,1,["G80"]],[1,2,["G1096"]],[2,4,["G4831"]],[4,6,["G3450"]],[6,7,["G2532"]],[7,8,["G4648"]],[8,11,["G4043"]],[11,12,["(G3779)"]],[12,13,["G2531"]],[13,15,["G2192"]],[15,16,["G2248"]],[16,19,["G5179"]]]},{"k":29439,"v":[[0,1,["G1063"]],[1,2,["G4183"]],[2,3,["G4043"]],[3,5,["G3739"]],[5,8,["G3004"]],[8,9,["G5213"]],[9,10,["G4178"]],[10,11,["G1161"]],[11,12,["G3568"]],[12,13,["G3004"]],[13,15,["G2532"]],[15,16,["G2799"]],[16,20,["G3588"]],[20,21,["G2190"]],[21,23,["G3588"]],[23,24,["G4716"]],[24,26,["G5547"]]]},{"k":29440,"v":[[0,1,["G3739"]],[1,2,["G5056"]],[2,4,["G684"]],[4,5,["G3739"]],[5,6,["G2316"]],[6,9,["G2836"]],[9,10,["G2532"]],[10,12,["G1391"]],[12,14,["G1722"]],[14,15,["G846"]],[15,16,["G152"]],[16,18,["G5426"]],[18,20,["G1919"]]]},{"k":29441,"v":[[0,1,["G1063"]],[1,2,["G2257"]],[2,3,["G4175"]],[3,4,["G5225"]],[4,5,["G1722"]],[5,6,["G3772"]],[6,7,["G1537"]],[7,8,["G3739"]],[8,9,["G2532"]],[9,12,["G553"]],[12,14,["G4990"]],[14,16,["G2962"]],[16,17,["G2424"]],[17,18,["G5547"]]]},{"k":29442,"v":[[0,1,["G3739"]],[1,3,["G3345"]],[3,4,["G2257"]],[4,5,["G5014"]],[5,6,["G4983"]],[6,8,["G846"]],[8,11,["G1096"]],[11,13,["G4832"]],[13,14,["G846"]],[14,15,["G1391"]],[15,16,["G4983"]],[16,17,["G2596"]],[17,19,["G3588"]],[19,20,["G1753"]],[20,21,["G3588"]],[21,22,["G846"]],[22,24,["G1410"]],[24,25,["G2532"]],[25,27,["G5293"]],[27,29,["G3956"]],[29,31,["G1438"]]]},{"k":29443,"v":[[0,1,["G5620"]],[1,2,["G3450"]],[2,3,["G80"]],[3,5,["G27"]],[5,6,["G2532"]],[6,8,["G1973"]],[8,9,["G3450"]],[9,10,["G5479"]],[10,11,["G2532"]],[11,12,["G4735"]],[12,13,["G3779"]],[13,15,["G4739"]],[15,16,["G1722"]],[16,18,["G2962"]],[18,21,["G27"]]]},{"k":29444,"v":[[0,2,["G3870"]],[2,3,["G2136"]],[3,4,["G2532"]],[4,5,["G3870"]],[5,6,["G4941"]],[6,13,["G5426","G3588","G846"]],[13,14,["G1722"]],[14,16,["G2962"]]]},{"k":29445,"v":[[0,1,["G2532"]],[1,3,["G2065"]],[3,4,["G4571"]],[4,5,["G2532"]],[5,6,["G1103"]],[6,7,["G4805"]],[7,8,["G4815"]],[8,10,["G846"]],[10,11,["G3748"]],[11,13,["G4866"]],[13,14,["G3427"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G2098"]],[17,18,["G3326"]],[18,19,["G2815"]],[19,20,["G2532"]],[20,21,["G2532"]],[21,23,["G3062"]],[23,24,["G3450"]],[24,25,["G4904"]],[25,26,["G3739"]],[26,27,["G3686"]],[27,29,["G1722"]],[29,31,["G976"]],[31,33,["G2222"]]]},{"k":29446,"v":[[0,1,["G5463"]],[1,2,["G1722"]],[2,4,["G2962"]],[4,5,["G3842"]],[5,7,["G3825"]],[7,9,["G2046"]],[9,10,["G5463"]]]},{"k":29447,"v":[[0,2,["G5216"]],[2,3,["G1933"]],[3,5,["G1097"]],[5,7,["G3956"]],[7,8,["G444"]],[8,9,["G3588"]],[9,10,["G2962"]],[10,13,["G1451"]]]},{"k":29448,"v":[[0,2,["G3309"]],[2,4,["G3367"]],[4,5,["G235"]],[5,6,["G1722"]],[6,8,["G3956"]],[8,10,["G4335"]],[10,11,["G2532"]],[11,12,["G1162"]],[12,13,["G3326"]],[13,14,["G2169"]],[14,16,["G5216"]],[16,17,["G155"]],[17,20,["G1107"]],[20,21,["G4314"]],[21,22,["G2316"]]]},{"k":29449,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1515"]],[3,5,["G2316"]],[5,7,["G5242"]],[7,8,["G3956"]],[8,9,["G3563"]],[9,11,["G5432"]],[11,12,["G5216"]],[12,13,["G2588"]],[13,14,["G2532"]],[14,15,["G3540"]],[15,16,["G1722"]],[16,17,["G5547"]],[17,18,["G2424"]]]},{"k":29450,"v":[[0,1,["G3063"]],[1,2,["G80"]],[2,4,["G3745"]],[4,5,["G2076"]],[5,6,["G227"]],[6,8,["G3745"]],[8,10,["G4586"]],[10,12,["G3745"]],[12,14,["G1342"]],[14,16,["G3745"]],[16,18,["G53"]],[18,20,["G3745"]],[20,22,["G4375"]],[22,24,["G3745"]],[24,28,["G2163"]],[28,32,["G1536"]],[32,33,["G703"]],[33,34,["G2532"]],[34,38,["G1536"]],[38,39,["G1868"]],[39,41,["G3049"]],[41,43,["G5023"]]]},{"k":29451,"v":[[0,2,["G5023"]],[2,3,["G3739"]],[3,6,["G2532"]],[6,7,["G3129"]],[7,8,["G2532"]],[8,9,["G3880"]],[9,10,["G2532"]],[10,11,["G191"]],[11,12,["G2532"]],[12,13,["G1492"]],[13,14,["G1722"]],[14,15,["G1698"]],[15,16,["G4238"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G2316"]],[19,21,["G1515"]],[21,23,["G2071"]],[23,24,["G3326"]],[24,25,["G5216"]]]},{"k":29452,"v":[[0,1,["G1161"]],[1,3,["G5463"]],[3,4,["G1722"]],[4,6,["G2962"]],[6,7,["G3171"]],[7,8,["G3754"]],[8,9,["G2235"]],[9,12,["G4218"]],[12,14,["G5426"]],[14,15,["G5228"]],[15,16,["G1700"]],[16,19,["G330"]],[19,20,["G1909","G3739"]],[20,23,["G2532"]],[23,24,["G5426"]],[24,25,["G1161"]],[25,28,["G170"]]]},{"k":29453,"v":[[0,1,["G3756"]],[1,2,["G3754"]],[2,4,["G3004"]],[4,7,["G2596"]],[7,8,["G5304"]],[8,9,["G1063"]],[9,10,["G1473"]],[10,12,["G3129"]],[12,13,["G1722"]],[13,15,["G3739"]],[15,17,["G1510"]],[17,20,["G1511"]],[20,21,["G842"]]]},{"k":29454,"v":[[0,0,["(G1161)"]],[0,2,["G1492"]],[2,7,["G5013"]],[7,8,["G2532"]],[8,10,["G1492"]],[10,13,["G4052","(G1722)"]],[13,15,["G3956"]],[15,16,["G2532"]],[16,17,["G1722"]],[17,19,["G3956"]],[19,22,["G3453"]],[22,23,["G2532"]],[23,26,["G5526"]],[26,27,["G2532"]],[27,30,["G3983"]],[30,31,["G2532"]],[31,33,["G4052"]],[33,34,["G2532"]],[34,37,["G5302"]]]},{"k":29455,"v":[[0,3,["G2480"]],[3,5,["G3956"]],[5,6,["G1722"]],[6,7,["G5547"]],[7,9,["G1743"]],[9,10,["G3165"]]]},{"k":29456,"v":[[0,1,["G4133"]],[1,4,["G2573"]],[4,5,["G4160"]],[5,10,["G4790"]],[10,11,["G3450"]],[11,12,["G2347"]]]},{"k":29457,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G5374"]],[3,4,["G1492"]],[4,5,["G2532"]],[5,6,["G3754"]],[6,7,["G1722"]],[7,9,["G746"]],[9,11,["G3588"]],[11,12,["G2098"]],[12,13,["G3753"]],[13,15,["G1831"]],[15,16,["G575"]],[16,17,["G3109"]],[17,18,["G3762"]],[18,19,["G1577"]],[19,20,["G2841"]],[20,22,["G3427"]],[22,24,["G1519","G3056"]],[24,25,["G1394"]],[25,26,["G2532"]],[26,27,["G3028"]],[27,28,["G1508"]],[28,29,["G5210"]],[29,30,["G3441"]]]},{"k":29458,"v":[[0,1,["G3754"]],[1,2,["G2532"]],[2,3,["G1722"]],[3,4,["G2332"]],[4,6,["G3992","(G2532)"]],[6,9,["G530","G2532","G1364"]],[9,10,["G1519"]],[10,11,["G3427"]],[11,12,["G5532"]]]},{"k":29459,"v":[[0,1,["G3756"]],[1,2,["G3754"]],[2,4,["G1934"]],[4,6,["G1390"]],[6,7,["G235"]],[7,9,["G1934"]],[9,10,["G2590"]],[10,13,["G4121"]],[13,14,["G1519"]],[14,15,["G5216"]],[15,16,["G3056"]]]},{"k":29460,"v":[[0,1,["G1161"]],[1,3,["G568"]],[3,4,["G3956"]],[4,5,["G2532"]],[5,6,["G4052"]],[6,9,["G4137"]],[9,11,["G1209"]],[11,12,["G3844"]],[12,13,["G1891"]],[13,15,["G3588"]],[15,19,["G3844"]],[19,20,["G5216"]],[20,22,["G3744"]],[22,26,["G2175"]],[26,28,["G2378"]],[28,29,["G1184"]],[29,30,["G2101"]],[30,32,["G2316"]]]},{"k":29461,"v":[[0,1,["G1161"]],[1,2,["G3450"]],[2,3,["G2316"]],[3,5,["G4137"]],[5,6,["G3956"]],[6,7,["G5216"]],[7,8,["G5532"]],[8,9,["G2596"]],[9,11,["G848"]],[11,12,["G4149"]],[12,13,["G1722"]],[13,14,["G1391"]],[14,15,["G1722"]],[15,16,["G5547"]],[16,17,["G2424"]]]},{"k":29462,"v":[[0,1,["G1161"]],[1,3,["G2316"]],[3,4,["G2532"]],[4,5,["G2257"]],[5,6,["G3962"]],[6,8,["G1391"]],[8,12,["G1519","G165","G165"]],[12,13,["G281"]]]},{"k":29463,"v":[[0,1,["G782"]],[1,2,["G3956"]],[2,3,["G40"]],[3,4,["G1722"]],[4,5,["G5547"]],[5,6,["G2424"]],[6,7,["G3588"]],[7,8,["G80"]],[8,11,["G4862"]],[11,12,["G1698"]],[12,13,["G782"]],[13,14,["G5209"]]]},{"k":29464,"v":[[0,1,["G3956"]],[1,2,["G3588"]],[2,3,["G40"]],[3,4,["G782"]],[4,5,["G5209","(G1161)"]],[5,6,["G3122"]],[6,7,["G3588"]],[7,10,["G1537"]],[10,11,["G2541"]],[11,12,["G3614"]]]},{"k":29465,"v":[[0,1,["G3588"]],[1,2,["G5485"]],[2,4,["G2257"]],[4,5,["G2962"]],[5,6,["G2424"]],[6,7,["G5547"]],[7,9,["G3326"]],[9,10,["G5216"]],[10,11,["G3956"]],[11,12,["G281"]]]},{"k":29466,"v":[[0,1,["G3972"]],[1,3,["G652"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,7,["G1223"]],[7,9,["G2307"]],[9,11,["G2316"]],[11,12,["G2532"]],[12,13,["G5095"]],[13,15,["G80"]]]},{"k":29467,"v":[[0,2,["G3588"]],[2,3,["G40"]],[3,4,["G2532"]],[4,5,["G4103"]],[5,6,["G80"]],[6,7,["G1722"]],[7,8,["G5547"]],[8,11,["G1722"]],[11,12,["G2857"]],[12,13,["G5485"]],[13,16,["G5213"]],[16,17,["G2532"]],[17,18,["G1515"]],[18,19,["G575"]],[19,20,["G2316"]],[20,21,["G2257"]],[21,22,["G3962"]],[22,23,["G2532"]],[23,25,["G2962"]],[25,26,["G2424"]],[26,27,["G5547"]]]},{"k":29468,"v":[[0,3,["G2168"]],[3,5,["G2316"]],[5,6,["G2532"]],[6,8,["G3962"]],[8,10,["G2257"]],[10,11,["G2962"]],[11,12,["G2424"]],[12,13,["G5547"]],[13,14,["G4336"]],[14,15,["G3842"]],[15,16,["G4012"]],[16,17,["G5216"]]]},{"k":29469,"v":[[0,3,["G191"]],[3,5,["G5216"]],[5,6,["G4102"]],[6,7,["G1722"]],[7,8,["G5547"]],[8,9,["G2424"]],[9,10,["G2532"]],[10,12,["G3588"]],[12,13,["G26"]],[13,15,["(G3588)"]],[15,17,["G1519"]],[17,18,["G3956"]],[18,19,["G3588"]],[19,20,["G40"]]]},{"k":29470,"v":[[0,1,["G1223"]],[1,2,["G3588"]],[2,3,["G1680"]],[3,7,["G606"]],[7,9,["G5213"]],[9,10,["G1722"]],[10,11,["G3772"]],[11,12,["G3739"]],[12,15,["G4257"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G3056"]],[18,20,["G3588"]],[20,21,["G225"]],[21,23,["G3588"]],[23,24,["G2098"]]]},{"k":29471,"v":[[0,3,["G3918"]],[3,4,["G1519"]],[4,5,["G5209"]],[5,6,["G2531"]],[6,7,["(G2532)"]],[7,9,["G1722"]],[9,10,["G3956"]],[10,11,["G3588"]],[11,12,["G2889"]],[12,13,["G2532","(G2076)"]],[13,16,["G2592"]],[16,17,["G2531"]],[17,20,["G2532"]],[20,21,["G1722"]],[21,22,["G5213"]],[22,23,["G575"]],[23,24,["(G3739)"]],[24,25,["G2250"]],[25,27,["G191"]],[27,30,["G2532"]],[30,31,["G1921"]],[31,32,["G3588"]],[32,33,["G5485"]],[33,35,["G2316"]],[35,36,["G1722"]],[36,37,["G225"]]]},{"k":29472,"v":[[0,1,["G2531"]],[1,3,["G2532"]],[3,4,["G3129"]],[4,5,["G575"]],[5,6,["G1889"]],[6,7,["G2257"]],[7,8,["G27"]],[8,9,["G4889"]],[9,10,["G3739"]],[10,11,["G2076"]],[11,12,["G5228"]],[12,13,["G5216"]],[13,15,["G4103"]],[15,16,["G1249"]],[16,18,["G5547"]]]},{"k":29473,"v":[[0,1,["G3588"]],[1,2,["G2532"]],[2,3,["G1213"]],[3,5,["G2254"]],[5,6,["G5216"]],[6,7,["G26"]],[7,8,["G1722"]],[8,10,["G4151"]]]},{"k":29474,"v":[[0,1,["G1223"]],[1,3,["G5124"]],[3,4,["G2249"]],[4,5,["G2532"]],[5,6,["G575"]],[6,7,["(G3739)"]],[7,8,["G2250"]],[8,10,["G191"]],[10,13,["G3756"]],[13,14,["G3973"]],[14,16,["G4336"]],[16,17,["G5228"]],[17,18,["G5216"]],[18,19,["G2532"]],[19,21,["G154"]],[21,22,["G2443"]],[22,26,["G4137"]],[26,28,["G3588"]],[28,29,["G1922"]],[29,31,["G846"]],[31,32,["G2307"]],[32,33,["G1722"]],[33,34,["G3956"]],[34,35,["G4678"]],[35,36,["G2532"]],[36,37,["G4152"]],[37,38,["G4907"]]]},{"k":29475,"v":[[0,2,["G5209"]],[2,4,["G4043"]],[4,5,["G516"]],[5,7,["G3588"]],[7,8,["G2962"]],[8,9,["G1519"]],[9,10,["G3956"]],[10,11,["G699"]],[11,13,["G2592"]],[13,14,["G1722"]],[14,15,["G3956"]],[15,16,["G18"]],[16,17,["G2041"]],[17,18,["G2532"]],[18,19,["G837"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G1922"]],[22,24,["G2316"]]]},{"k":29476,"v":[[0,1,["G1412"]],[1,2,["G1722"]],[2,3,["G3956"]],[3,4,["G1411"]],[4,5,["G2596"]],[5,7,["G846"]],[7,8,["G1391"]],[8,9,["G2904"]],[9,10,["G1519"]],[10,11,["G3956"]],[11,12,["G5281"]],[12,13,["G2532"]],[13,14,["G3115"]],[14,15,["G3326"]],[15,16,["G5479"]]]},{"k":29477,"v":[[0,2,["G2168"]],[2,4,["G3588"]],[4,5,["G3962"]],[5,10,["G2427","G2248"]],[10,13,["G1519","G3310"]],[13,15,["G3588"]],[15,16,["G2819"]],[16,18,["G3588"]],[18,19,["G40"]],[19,20,["G1722"]],[20,21,["G5457"]]]},{"k":29478,"v":[[0,1,["G3739"]],[1,3,["G4506"]],[3,4,["G2248"]],[4,5,["G1537"]],[5,6,["G3588"]],[6,7,["G1849"]],[7,9,["G4655"]],[9,10,["G2532"]],[10,12,["G3179"]],[12,14,["G1519"]],[14,15,["G3588"]],[15,16,["G932"]],[16,18,["G848"]],[18,19,["G26"]],[19,20,["G5207"]]]},{"k":29479,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,4,["G2192"]],[4,5,["G629"]],[5,6,["G1223"]],[6,7,["G846"]],[7,8,["G129"]],[8,10,["G3588"]],[10,11,["G859"]],[11,13,["G266"]]]},{"k":29480,"v":[[0,1,["G3739"]],[1,2,["G2076"]],[2,4,["G1504"]],[4,6,["G3588"]],[6,7,["G517"]],[7,8,["G2316"]],[8,10,["G4416"]],[10,12,["G3956"]],[12,13,["G2937"]]]},{"k":29481,"v":[[0,1,["G3754"]],[1,2,["G1722"]],[2,3,["G846"]],[3,6,["G3956"]],[6,7,["G2936"]],[7,8,["G3588"]],[8,10,["G1722"]],[10,11,["G3772"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,15,["G1909"]],[15,16,["G1093"]],[16,17,["G3707"]],[17,18,["G2532"]],[18,19,["G517"]],[19,20,["G1535"]],[20,23,["G2362"]],[23,24,["G1535"]],[24,25,["G2963"]],[25,26,["G1535"]],[26,27,["G746"]],[27,28,["G1535"]],[28,29,["G1849"]],[29,31,["G3956"]],[31,33,["G2936"]],[33,34,["G1223"]],[34,35,["G846"]],[35,36,["G2532"]],[36,37,["G1519"]],[37,38,["G846"]]]},{"k":29482,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G2076"]],[3,4,["G4253"]],[4,6,["G3956"]],[6,7,["G2532"]],[7,8,["G1722"]],[8,9,["G846"]],[9,11,["G3956"]],[11,12,["G4921"]]]},{"k":29483,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G2776"]],[5,7,["G3588"]],[7,8,["G4983"]],[8,9,["G3588"]],[9,10,["G1577"]],[10,11,["G3739"]],[11,12,["G2076"]],[12,14,["G746"]],[14,16,["G4416"]],[16,17,["G1537"]],[17,18,["G3588"]],[18,19,["G3498"]],[19,20,["G2443"]],[20,21,["G1722"]],[21,22,["G3956"]],[22,24,["G846"]],[24,26,["G1096"]],[26,28,["G4409"]]]},{"k":29484,"v":[[0,1,["G3754"]],[1,3,["G2106"]],[3,7,["G1722"]],[7,8,["G846"]],[8,10,["G3956"]],[10,11,["G4138"]],[11,12,["G2730"]]]},{"k":29485,"v":[[0,1,["G2532"]],[1,4,["G1517"]],[4,5,["G1223"]],[5,6,["G3588"]],[6,7,["G129"]],[7,9,["G846"]],[9,10,["G4716"]],[10,11,["G1223"]],[11,12,["G846"]],[12,14,["G604"]],[14,16,["G3956"]],[16,17,["G1519"]],[17,18,["G848"]],[18,19,["G1223"]],[19,20,["G846"]],[20,23,["G1535"]],[23,26,["G3588"]],[26,27,["G1909"]],[27,28,["G1093"]],[28,29,["G1535"]],[29,30,["G3588"]],[30,31,["G1722"]],[31,32,["G3772"]]]},{"k":29486,"v":[[0,1,["G2532"]],[1,2,["G5209"]],[2,4,["G5607"]],[4,5,["G4218"]],[5,6,["G526"]],[6,7,["G2532"]],[7,8,["G2190"]],[8,11,["G1271"]],[11,12,["G1722"]],[12,13,["G4190"]],[13,14,["G2041"]],[14,15,["G1161"]],[15,16,["G3570"]],[16,19,["G604"]]]},{"k":29487,"v":[[0,1,["G1722"]],[1,2,["G3588"]],[2,3,["G4983"]],[3,5,["G848"]],[5,6,["G4561"]],[6,7,["G1223"]],[7,8,["G2288"]],[8,10,["G3936"]],[10,11,["G5209"]],[11,12,["G40"]],[12,13,["G2532"]],[13,14,["G299"]],[14,15,["G2532"]],[15,16,["G410"]],[16,19,["G2714","G848"]]]},{"k":29488,"v":[[0,1,["G1489"]],[1,3,["G1961"]],[3,5,["G3588"]],[5,6,["G4102"]],[6,7,["G2311"]],[7,8,["G2532"]],[8,9,["G1476"]],[9,10,["G2532"]],[10,12,["G3361"]],[12,14,["G3334"]],[14,15,["G575"]],[15,16,["G3588"]],[16,17,["G1680"]],[17,19,["G3588"]],[19,20,["G2098"]],[20,21,["G3739"]],[21,24,["G191"]],[24,28,["G2784"]],[28,29,["G1722"]],[29,30,["G3956"]],[30,31,["G2937"]],[31,32,["G3588"]],[32,34,["G5259"]],[34,35,["G3772"]],[35,36,["G3739"]],[36,37,["G1473"]],[37,38,["G3972"]],[38,40,["G1096"]],[40,42,["G1249"]]]},{"k":29489,"v":[[0,1,["G3739"]],[1,2,["G3568"]],[2,3,["G5463"]],[3,4,["G1722"]],[4,5,["G3450"]],[5,6,["G3804"]],[6,7,["G5228"]],[7,8,["G5216"]],[8,9,["G2532"]],[9,11,["G466"]],[11,15,["G5303"]],[15,17,["G3588"]],[17,18,["G2347"]],[18,20,["G5547"]],[20,21,["G1722"]],[21,22,["G3450"]],[22,23,["G4561"]],[23,27,["G5228","G846","G4983"]],[27,29,["G3603"]],[29,30,["G3588"]],[30,31,["G1577"]]]},{"k":29490,"v":[[0,1,["G3739"]],[1,2,["G1473"]],[2,4,["G1096"]],[4,6,["G1249"]],[6,7,["G2596"]],[7,9,["G3588"]],[9,10,["G3622"]],[10,12,["G2316"]],[12,15,["G1325"]],[15,17,["G3427"]],[17,18,["G1519"]],[18,19,["G5209"]],[19,21,["G4137"]],[21,22,["G3588"]],[22,23,["G3056"]],[23,25,["G2316"]]]},{"k":29491,"v":[[0,2,["G3588"]],[2,3,["G3466"]],[3,7,["G613"]],[7,8,["G575"]],[8,9,["G165"]],[9,10,["G2532"]],[10,11,["G575"]],[11,12,["G1074"]],[12,13,["G1161"]],[13,14,["G3570"]],[14,17,["G5319"]],[17,19,["G846"]],[19,20,["G40"]]]},{"k":29492,"v":[[0,2,["G3739"]],[2,3,["G2316"]],[3,4,["G2309"]],[4,6,["G1107"]],[6,7,["G5101"]],[7,9,["G3588"]],[9,10,["G4149"]],[10,12,["G3588"]],[12,13,["G1391"]],[13,15,["G5127"]],[15,16,["G3466"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G1484"]],[19,20,["G3739"]],[20,21,["G2076"]],[21,22,["G5547"]],[22,23,["G1722"]],[23,24,["G5213"]],[24,25,["G3588"]],[25,26,["G1680"]],[26,28,["G1391"]]]},{"k":29493,"v":[[0,1,["G3739"]],[1,2,["G2249"]],[2,3,["G2605"]],[3,4,["G3560"]],[4,5,["G3956"]],[5,6,["G444"]],[6,7,["G2532"]],[7,8,["G1321"]],[8,9,["G3956"]],[9,10,["G444"]],[10,11,["G1722"]],[11,12,["G3956"]],[12,13,["G4678"]],[13,14,["G2443"]],[14,17,["G3936"]],[17,18,["G3956"]],[18,19,["G444"]],[19,20,["G5046"]],[20,21,["G1722"]],[21,22,["G5547"]],[22,23,["G2424"]]]},{"k":29494,"v":[[0,1,["G1519","G3739"]],[1,3,["G2532"]],[3,4,["G2872"]],[4,5,["G75"]],[5,6,["G2596"]],[6,8,["G846"]],[8,9,["G1753"]],[9,11,["G1754"]],[11,12,["G1722"]],[12,13,["G1698"]],[13,14,["G1722","G1411"]]]},{"k":29495,"v":[[0,1,["G1063"]],[1,3,["G2309"]],[3,5,["G5209"]],[5,6,["G1492"]],[6,8,["G2245"]],[8,9,["G73"]],[9,11,["G2192"]],[11,12,["G4012"]],[12,13,["G5216"]],[13,14,["G2532"]],[14,16,["G3588"]],[16,17,["G1722"]],[17,18,["G2993"]],[18,19,["G2532"]],[19,23,["G3745"]],[23,25,["G3756"]],[25,26,["G3708"]],[26,27,["G3450"]],[27,28,["G4383"]],[28,29,["G1722"]],[29,31,["G4561"]]]},{"k":29496,"v":[[0,1,["G2443"]],[1,2,["G846"]],[2,3,["G2588"]],[3,6,["G3870"]],[6,9,["G4822"]],[9,10,["G1722"]],[10,11,["G26"]],[11,12,["G2532"]],[12,13,["G1519"]],[13,14,["G3956"]],[14,15,["G4149"]],[15,17,["G3588"]],[17,19,["G4136"]],[19,21,["G4907"]],[21,22,["G1519"]],[22,24,["G1922"]],[24,26,["G3588"]],[26,27,["G3466"]],[27,29,["G2316"]],[29,30,["G2532"]],[30,33,["G3962"]],[33,34,["G2532"]],[34,36,["G5547"]]]},{"k":29497,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G1526"]],[3,4,["G614"]],[4,5,["G3956"]],[5,6,["G3588"]],[6,7,["G2344"]],[7,9,["G4678"]],[9,10,["G2532"]],[10,11,["G1108"]]]},{"k":29498,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,4,["G3004"]],[4,5,["G3363"]],[5,7,["G5100"]],[7,9,["G3884"]],[9,10,["G5209"]],[10,11,["G1722"]],[11,13,["G4086"]]]},{"k":29499,"v":[[0,1,["G1063"]],[1,2,["G1487","G2532"]],[2,5,["G548"]],[5,7,["G3588"]],[7,8,["G4561"]],[8,9,["G235"]],[9,10,["G1510"]],[10,12,["G4862"]],[12,13,["G5213"]],[13,15,["G3588"]],[15,16,["G4151"]],[16,17,["G5463"]],[17,18,["G2532"]],[18,19,["G991"]],[19,20,["G5216"]],[20,21,["G5010"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G4733"]],[24,26,["G5216"]],[26,27,["G4102"]],[27,28,["G1519"]],[28,29,["G5547"]]]},{"k":29500,"v":[[0,1,["G5613"]],[1,4,["G3767"]],[4,5,["G3880"]],[5,6,["G5547"]],[6,7,["G2424"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,11,["G4043"]],[11,13,["G1722"]],[13,14,["G846"]]]},{"k":29501,"v":[[0,1,["G4492"]],[1,2,["G2532"]],[2,4,["G2026"]],[4,5,["G1722"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G950"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G4102"]],[11,12,["G2531"]],[12,16,["G1321"]],[16,17,["G4052"]],[17,18,["G1722","G846"]],[18,19,["G1722"]],[19,20,["G2169"]]]},{"k":29502,"v":[[0,1,["G991"]],[1,2,["G3361"]],[2,4,["G5100"]],[4,5,["G4812"]],[5,6,["G5209"]],[6,7,["G1223"]],[7,8,["G5385"]],[8,9,["G2532"]],[9,10,["G2756"]],[10,11,["G539"]],[11,12,["G2596"]],[12,13,["G3588"]],[13,14,["G3862"]],[14,16,["G444"]],[16,17,["G2596"]],[17,18,["G3588"]],[18,19,["G4747"]],[19,21,["G3588"]],[21,22,["G2889"]],[22,23,["G2532"]],[23,24,["G3756"]],[24,25,["G2596"]],[25,26,["G5547"]]]},{"k":29503,"v":[[0,1,["G3754"]],[1,2,["G1722"]],[2,3,["G846"]],[3,4,["G2730"]],[4,5,["G3956"]],[5,6,["G3588"]],[6,7,["G4138"]],[7,9,["G3588"]],[9,10,["G2320"]],[10,11,["G4985"]]]},{"k":29504,"v":[[0,1,["G2532"]],[1,3,["G2075"]],[3,4,["G4137"]],[4,5,["G1722"]],[5,6,["G846"]],[6,7,["G3739"]],[7,8,["G2076"]],[8,9,["G3588"]],[9,10,["G2776"]],[10,12,["G3956"]],[12,13,["G746"]],[13,14,["G2532"]],[14,15,["G1849"]]]},{"k":29505,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G2532"]],[3,6,["G4059"]],[6,9,["G4061"]],[9,12,["G886"]],[12,13,["G1722"]],[13,15,["G555"]],[15,16,["G3588"]],[16,17,["G4983"]],[17,19,["G3588"]],[19,20,["G266"]],[20,22,["G3588"]],[22,23,["G4561"]],[23,24,["G1722"]],[24,25,["G3588"]],[25,26,["G4061"]],[26,28,["G5547"]]]},{"k":29506,"v":[[0,2,["G4916"]],[2,3,["G846"]],[3,4,["G1722"]],[4,5,["G908"]],[5,6,["G1722","G3739"]],[6,7,["G2532"]],[7,11,["G4891"]],[11,13,["G1223"]],[13,14,["G3588"]],[14,15,["G4102"]],[15,17,["G3588"]],[17,18,["G1753"]],[18,20,["G2316"]],[20,23,["G1453"]],[23,24,["G846"]],[24,25,["G1537"]],[25,26,["G3588"]],[26,27,["G3498"]]]},{"k":29507,"v":[[0,1,["G2532"]],[1,2,["G5209"]],[2,3,["G5607"]],[3,4,["G3498"]],[4,5,["G1722"]],[5,7,["G3900"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G203"]],[10,12,["G5216"]],[12,13,["G4561"]],[13,17,["G4806"]],[17,18,["G4862"]],[18,19,["G846"]],[19,21,["G5483"]],[21,22,["G5213"]],[22,23,["G3956"]],[23,24,["G3900"]]]},{"k":29508,"v":[[0,2,["G1813"]],[2,3,["G3588"]],[3,4,["G5498"]],[4,6,["G1378"]],[6,9,["G2596"]],[9,10,["G2257"]],[10,11,["G3739"]],[11,12,["G2258"]],[12,13,["G5227"]],[13,15,["G2254"]],[15,16,["G2532"]],[16,17,["G142"]],[17,18,["G846"]],[18,20,["G1537"]],[20,21,["G3588"]],[21,22,["G3319"]],[22,23,["G4338"]],[23,24,["G846"]],[24,27,["G4716"]]]},{"k":29509,"v":[[0,3,["G554"]],[3,4,["G746"]],[4,5,["G2532"]],[5,6,["G1849"]],[6,10,["G1165"]],[10,13,["G1722","G3954"]],[13,15,["G2358"]],[15,16,["G846"]],[16,17,["G1722"]],[17,18,["G848"]]]},{"k":29510,"v":[[0,2,["G3361"]],[2,3,["G5100"]],[3,4,["G3767"]],[4,5,["G2919"]],[5,6,["G5209"]],[6,7,["G1722"]],[7,8,["G1035"]],[8,9,["G2228"]],[9,10,["G1722"]],[10,11,["G4213"]],[11,12,["G2228"]],[12,13,["G1722"]],[13,14,["G3313"]],[14,17,["G1859"]],[17,18,["G2228"]],[18,22,["G3561"]],[22,23,["G2228"]],[23,26,["G4521"]],[26,27,[]]]},{"k":29511,"v":[[0,1,["G3739"]],[1,2,["G2076"]],[2,4,["G4639"]],[4,8,["G3195"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G4983"]],[11,14,["G5547"]]]},{"k":29512,"v":[[0,3,["G3367"]],[3,8,["G2603","G5209"]],[8,12,["G2309","G1722","G5012"]],[12,13,["G2532"]],[13,14,["G2356"]],[14,16,["G32"]],[16,18,["G1687"]],[18,21,["G3739"]],[21,24,["G3361"]],[24,25,["G3708"]],[25,26,["G1500"]],[26,28,["G5448"]],[28,29,["G5259"]],[29,30,["G848"]],[30,31,["G4561"]],[31,32,["G3563"]]]},{"k":29513,"v":[[0,1,["G2532"]],[1,2,["G3756"]],[2,3,["G2902"]],[3,4,["G3588"]],[4,5,["G2776"]],[5,6,["G1537"]],[6,7,["G3739"]],[7,8,["G3956"]],[8,9,["G3588"]],[9,10,["G4983"]],[10,11,["G1223"]],[11,12,["G860"]],[12,13,["G2532"]],[13,14,["G4886"]],[14,17,["G2023"]],[17,18,["G2532"]],[18,20,["G4822"]],[20,21,["G837"]],[21,23,["G3588"]],[23,24,["G838"]],[24,26,["G2316"]]]},{"k":29514,"v":[[0,1,["G3767"]],[1,2,["G1487"]],[2,5,["G599"]],[5,6,["G4862"]],[6,7,["G5547"]],[7,8,["G575"]],[8,9,["G3588"]],[9,10,["G4747"]],[10,12,["G3588"]],[12,13,["G2889"]],[13,14,["G5101"]],[14,16,["G5613"]],[16,17,["G2198"]],[17,18,["G1722"]],[18,20,["G2889"]],[20,25,["G1379"]]]},{"k":29515,"v":[[0,1,["G680"]],[1,2,["G3361"]],[2,3,["G1089"]],[3,4,["G3366"]],[4,5,["G2345"]],[5,6,["G3366"]]]},{"k":29516,"v":[[0,1,["G3739"]],[1,2,["G3956"]],[2,3,["G2076"]],[3,5,["G1519","G5356"]],[5,7,["G3588"]],[7,8,["G671"]],[8,9,["G2596"]],[9,10,["G3588"]],[10,11,["G1778"]],[11,12,["G2532"]],[12,13,["G1319"]],[13,15,["G444"]]]},{"k":29517,"v":[[0,2,["G3748"]],[2,3,["G2076","G2192"]],[3,4,["G3303"]],[4,6,["G3056"]],[6,8,["G4678"]],[8,9,["G1722"]],[9,11,["G1479"]],[11,12,["G2532"]],[12,13,["G5012"]],[13,14,["G2532"]],[14,15,["G857"]],[15,18,["G4983"]],[18,19,["G3756"]],[19,20,["G1722"]],[20,21,["G5100"]],[21,22,["G5092"]],[22,23,["G4314"]],[23,25,["G4140"]],[25,27,["G3588"]],[27,28,["G4561"]]]},{"k":29518,"v":[[0,1,["G1487"]],[1,3,["G3767"]],[3,6,["G4891"]],[6,7,["G5547"]],[7,8,["G2212"]],[8,13,["G507"]],[13,14,["G3757"]],[14,15,["G5547"]],[15,16,["G2076","G2521"]],[16,17,["G1722"]],[17,20,["G1188"]],[20,22,["G2316"]]]},{"k":29519,"v":[[0,4,["G5426"]],[4,6,["G507"]],[6,7,["G3361"]],[7,9,["G3588"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G1093"]]]},{"k":29520,"v":[[0,1,["G1063"]],[1,4,["G599"]],[4,5,["G2532"]],[5,6,["G5216"]],[6,7,["G2222"]],[7,9,["G2928"]],[9,10,["G4862"]],[10,11,["G5547"]],[11,12,["G1722"]],[12,13,["G2316"]]]},{"k":29521,"v":[[0,1,["G3752"]],[1,2,["G5547"]],[2,5,["G2257"]],[5,6,["G2222"]],[6,8,["G5319"]],[8,9,["G5119"]],[9,11,["G5210"]],[11,12,["G2532"]],[12,13,["G5319"]],[13,14,["G4862"]],[14,15,["G846"]],[15,16,["G1722"]],[16,17,["G1391"]]]},{"k":29522,"v":[[0,1,["G3499"]],[1,2,["G3767"]],[2,3,["G5216"]],[3,4,["G3196"]],[4,5,["G3588"]],[5,7,["G1909"]],[7,8,["G3588"]],[8,9,["G1093"]],[9,10,["G4202"]],[10,11,["G167"]],[11,13,["G3806"]],[13,14,["G2556"]],[14,15,["G1939"]],[15,16,["G2532"]],[16,17,["G4124"]],[17,18,["G3748"]],[18,19,["G2076"]],[19,20,["G1495"]]]},{"k":29523,"v":[[0,4,["G1223","G3739"]],[4,5,["G3588"]],[5,6,["G3709"]],[6,8,["G2316"]],[8,9,["G2064"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G5207"]],[12,14,["G543"]]]},{"k":29524,"v":[[0,1,["G1722"]],[1,3,["G3739"]],[3,4,["G5210"]],[4,5,["G2532"]],[5,6,["G4043"]],[6,8,["G4218"]],[8,9,["G3753"]],[9,11,["G2198"]],[11,12,["G1722"]],[12,13,["G846"]]]},{"k":29525,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,3,["G5210"]],[3,4,["G2532"]],[4,6,["G659"]],[6,8,["G3956"]],[8,9,["G3709"]],[9,10,["G2372"]],[10,11,["G2549"]],[11,12,["G988"]],[12,14,["G148"]],[14,16,["G1537"]],[16,17,["G5216"]],[17,18,["G4750"]]]},{"k":29526,"v":[[0,1,["G5574"]],[1,2,["G3361"]],[2,5,["G240","G1519"]],[5,11,["G554"]],[11,12,["G3588"]],[12,13,["G3820"]],[13,14,["G444"]],[14,15,["G4862"]],[15,16,["G846"]],[16,17,["G4234"]]]},{"k":29527,"v":[[0,1,["G2532"]],[1,4,["G1746"]],[4,5,["G3588"]],[5,6,["G3501"]],[6,10,["G341"]],[10,11,["G1519"]],[11,12,["G1922"]],[12,13,["G2596"]],[13,15,["G1504"]],[15,19,["G2936"]],[19,20,["G846"]]]},{"k":29528,"v":[[0,1,["G3699"]],[1,3,["G1762"]],[3,4,["G3756"]],[4,5,["G1672"]],[5,6,["G2532"]],[6,7,["G2453"]],[7,8,["G4061"]],[8,9,["G2532"]],[9,10,["G203"]],[10,11,["G915"]],[11,12,["G4658"]],[12,13,["G1401"]],[13,15,["G1658"]],[15,16,["G235"]],[16,17,["G5547"]],[17,19,["G3956"]],[19,20,["G2532"]],[20,21,["G1722"]],[21,22,["G3956"]]]},{"k":29529,"v":[[0,2,["G1746"]],[2,3,["G3767"]],[3,4,["G5613"]],[4,6,["G1588"]],[6,8,["G2316"]],[8,9,["G40"]],[9,10,["G2532"]],[10,11,["G25"]],[11,12,["G4698"]],[12,14,["G3628"]],[14,15,["G5544"]],[15,18,["G5012"]],[18,19,["G4236"]],[19,20,["G3115"]]]},{"k":29530,"v":[[0,1,["G430"]],[1,3,["G240"]],[3,4,["G2532"]],[4,5,["G5483"]],[5,7,["G1438"]],[7,8,["G1437"]],[8,10,["G5100"]],[10,11,["G2192"]],[11,13,["G3437"]],[13,14,["G4314"]],[14,15,["G5100"]],[15,16,["G2532"]],[16,17,["G2531"]],[17,18,["G5547"]],[18,19,["G5483"]],[19,20,["G5213"]],[20,21,["G3779"]],[21,22,["G2532"]],[22,24,["G5210"]]]},{"k":29531,"v":[[0,1,["G1161"]],[1,2,["G1909"]],[2,3,["G3956"]],[3,5,["G5125"]],[5,8,["G26"]],[8,9,["G3748"]],[9,10,["G2076"]],[10,12,["G4886"]],[12,14,["G5047"]]]},{"k":29532,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G1515"]],[4,6,["G2316"]],[6,7,["G1018"]],[7,8,["G1722"]],[8,9,["G5216"]],[9,10,["G2588"]],[10,11,["G1519"]],[11,13,["G3739"]],[13,14,["G2532"]],[14,17,["G2564"]],[17,18,["G1722"]],[18,19,["G1520"]],[19,20,["G4983"]],[20,21,["G2532"]],[21,22,["G1096"]],[22,24,["G2170"]]]},{"k":29533,"v":[[0,2,["G3588"]],[2,3,["G3056"]],[3,5,["G5547"]],[5,6,["G1774"]],[6,7,["G1722"]],[7,8,["G5213"]],[8,9,["G4146"]],[9,10,["G1722"]],[10,11,["G3956"]],[11,12,["G4678"]],[12,13,["G1321"]],[13,14,["G2532"]],[14,15,["G3560"]],[15,17,["G1438"]],[17,19,["G5568"]],[19,20,["G2532"]],[20,21,["G5215"]],[21,22,["G2532"]],[22,23,["G4152"]],[23,24,["G5603"]],[24,25,["G103"]],[25,26,["G1722"]],[26,27,["G5485"]],[27,28,["G1722"]],[28,29,["G5216"]],[29,30,["G2588"]],[30,32,["G3588"]],[32,33,["G2962"]]]},{"k":29534,"v":[[0,1,["G2532"]],[1,2,["G3748","G302"]],[2,4,["G4160"]],[4,5,["G1722"]],[5,6,["G3056"]],[6,7,["G2228"]],[7,8,["G2041"]],[8,10,["G3956"]],[10,11,["G1722"]],[11,13,["G3686"]],[13,16,["G2962"]],[16,17,["G2424"]],[17,19,["G2168"]],[19,21,["G2316"]],[21,22,["G2532"]],[22,24,["G3962"]],[24,25,["G1223"]],[25,26,["G846"]]]},{"k":29535,"v":[[0,1,["G1135"]],[1,3,["G5293"]],[3,6,["G2398"]],[6,7,["G435"]],[7,8,["G5613"]],[8,11,["G433"]],[11,12,["G1722"]],[12,14,["G2962"]]]},{"k":29536,"v":[[0,1,["G435"]],[1,2,["G25"]],[2,4,["G1135"]],[4,5,["G2532"]],[5,8,["G4087","G3361"]],[8,9,["G4314"]],[9,10,["G846"]]]},{"k":29537,"v":[[0,1,["G5043"]],[1,2,["G5219"]],[2,4,["G1118"]],[4,5,["G2596"]],[5,7,["G3956"]],[7,8,["G1063"]],[8,9,["G5124"]],[9,10,["G2076"]],[10,12,["G2101"]],[12,14,["G3588"]],[14,15,["G2962"]]]},{"k":29538,"v":[[0,1,["G3962"]],[1,2,["G2042"]],[2,3,["G3361"]],[3,4,["G5216"]],[4,5,["G5043"]],[5,8,["G3363"]],[8,11,["G120"]]]},{"k":29539,"v":[[0,1,["G1401"]],[1,2,["G5219"]],[2,3,["G2596"]],[3,5,["G3956"]],[5,7,["G2962"]],[7,8,["G2596"]],[8,11,["G4561"]],[11,12,["G3361"]],[12,13,["G1722"]],[13,14,["G3787"]],[14,15,["G5613"]],[15,16,["G441"]],[16,17,["G235"]],[17,18,["G1722"]],[18,19,["G572"]],[19,21,["G2588"]],[21,22,["G5399"]],[22,23,["G2316"]]]},{"k":29540,"v":[[0,1,["G2532"]],[1,2,["G3748","G1437"]],[2,4,["G4160"]],[4,5,["G2038"]],[5,7,["G1537","G5590"]],[7,8,["G5613"]],[8,10,["G3588"]],[10,11,["G2962"]],[11,12,["G2532"]],[12,13,["G3756"]],[13,15,["G444"]]]},{"k":29541,"v":[[0,1,["G1492"]],[1,2,["G3754"]],[2,3,["G575"]],[3,5,["G2962"]],[5,8,["G618"]],[8,9,["G3588"]],[9,10,["G469"]],[10,13,["G2817"]],[13,14,["G1063"]],[14,16,["G1398"]],[16,17,["G3588"]],[17,18,["G2962"]],[18,19,["G5547"]]]},{"k":29542,"v":[[0,1,["G1161"]],[1,5,["G91"]],[5,7,["G2865"]],[7,14,["G91","G3739"]],[14,15,["G2532"]],[15,17,["G2076"]],[17,18,["G3756"]],[18,21,["G4382"]]]},{"k":29543,"v":[[0,1,["G2962"]],[1,2,["G3930"]],[2,5,["G1401"]],[5,9,["G1342"]],[9,10,["G2532"]],[10,11,["G2471"]],[11,12,["G1492"]],[12,13,["G3754"]],[13,14,["G5210"]],[14,15,["G2532"]],[15,16,["G2192"]],[16,18,["G2962"]],[18,19,["G1722"]],[19,20,["G3772"]]]},{"k":29544,"v":[[0,1,["G4342"]],[1,3,["G4335"]],[3,5,["G1127"]],[5,6,["G1722"]],[6,8,["G846"]],[8,9,["G1722"]],[9,10,["G2169"]]]},{"k":29545,"v":[[0,1,["G260"]],[1,2,["G4336"]],[2,3,["G2532"]],[3,4,["G4012"]],[4,5,["G2257"]],[5,6,["G2443"]],[6,7,["G2316"]],[7,9,["G455"]],[9,11,["G2254"]],[11,13,["G2374"]],[13,15,["G3056"]],[15,17,["G2980"]],[17,18,["G3588"]],[18,19,["G3466"]],[19,21,["G5547"]],[21,22,["G1223"]],[22,23,["G3739"]],[23,28,["G1210","G2532"]]]},{"k":29546,"v":[[0,1,["G2443"]],[1,6,["G5319","G846"]],[6,7,["G5613"]],[7,8,["G3165"]],[8,9,["G1163"]],[9,11,["G2980"]]]},{"k":29547,"v":[[0,1,["G4043"]],[1,2,["G1722"]],[2,3,["G4678"]],[3,4,["G4314"]],[4,8,["G1854"]],[8,9,["G1805"]],[9,10,["G3588"]],[10,11,["G2540"]]]},{"k":29548,"v":[[0,2,["G5216"]],[2,3,["G3056"]],[3,5,["G3842"]],[5,6,["G1722"]],[6,7,["G5485"]],[7,8,["G741"]],[8,10,["G217"]],[10,14,["G1492"]],[14,15,["G4459"]],[15,16,["G5209"]],[16,17,["G1163"]],[17,19,["G611"]],[19,21,["G1520","G1538"]]]},{"k":29549,"v":[[0,1,["G3956"]],[1,3,["G2596","G1691"]],[3,5,["G5190"]],[5,6,["G1107"]],[6,8,["G5213"]],[8,12,["G27"]],[12,13,["G80"]],[13,14,["G2532"]],[14,16,["G4103"]],[16,17,["G1249"]],[17,18,["G2532"]],[18,19,["G4889"]],[19,20,["G1722"]],[20,22,["G2962"]]]},{"k":29550,"v":[[0,1,["G3739"]],[1,4,["G3992"]],[4,5,["G4314"]],[5,6,["G5209"]],[6,7,["G1519"]],[7,10,["G846","G5124"]],[10,11,["G2443"]],[11,14,["G1097"]],[14,16,["G4012","G5216"]],[16,17,["G2532"]],[17,18,["G3870"]],[18,19,["G5216"]],[19,20,["G2588"]]]},{"k":29551,"v":[[0,1,["G4862"]],[1,2,["G3682"]],[2,4,["G4103"]],[4,5,["G2532"]],[5,6,["G27"]],[6,7,["G80"]],[7,8,["G3739"]],[8,9,["G2076"]],[9,11,["G1537"]],[11,12,["G5216"]],[12,16,["G1107"]],[16,18,["G5213"]],[18,20,["G3956"]],[20,24,["G5602"]]]},{"k":29552,"v":[[0,1,["G708"]],[1,2,["G3450"]],[2,3,["G4869"]],[3,4,["G782"]],[4,5,["G5209"]],[5,6,["G2532"]],[6,7,["G3138"]],[7,9,["G431"]],[9,11,["G921"]],[11,12,["G4012"]],[12,13,["G3739"]],[13,15,["G2983"]],[15,16,["G1785"]],[16,17,["G1437"]],[17,19,["G2064"]],[19,20,["G4314"]],[20,21,["G5209"]],[21,22,["G1209"]],[22,23,["G846"]]]},{"k":29553,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,5,["G3004"]],[5,6,["G2459"]],[6,8,["G5607"]],[8,9,["G1537"]],[9,11,["G4061"]],[11,12,["G3778"]],[12,13,["G3441"]],[13,16,["G4904"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,19,["G932"]],[19,21,["G2316"]],[21,22,["G3748"]],[22,24,["G1096"]],[24,26,["G3931"]],[26,28,["G3427"]]]},{"k":29554,"v":[[0,1,["G1889"]],[1,2,["G3588"]],[2,5,["G1537"]],[5,6,["G5216"]],[6,8,["G1401"]],[8,10,["G5547"]],[10,11,["G782"]],[11,12,["G5209"]],[12,13,["G3842"]],[13,15,["G75"]],[15,16,["G5228"]],[16,17,["G5216"]],[17,18,["G1722"]],[18,19,["G4335"]],[19,20,["G2443"]],[20,23,["G2476"]],[23,24,["G5046"]],[24,25,["G2532"]],[25,26,["G4137"]],[26,27,["G1722"]],[27,28,["G3956"]],[28,30,["G2307"]],[30,32,["G2316"]]]},{"k":29555,"v":[[0,1,["G1063"]],[1,5,["G3140","G846"]],[5,6,["G3754"]],[6,8,["G2192"]],[8,10,["G4183"]],[10,11,["G2205"]],[11,12,["G5228"]],[12,13,["G5216"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,18,["G1722"]],[18,19,["G2993"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G1722"]],[22,23,["G2404"]]]},{"k":29556,"v":[[0,1,["G3065"]],[1,2,["G3588"]],[2,3,["G27"]],[3,4,["G2395"]],[4,5,["G2532"]],[5,6,["G1214"]],[6,7,["G782"]],[7,8,["G5209"]]]},{"k":29557,"v":[[0,1,["G782"]],[1,2,["G3588"]],[2,3,["G80"]],[3,6,["G1722"]],[6,7,["G2993"]],[7,8,["G2532"]],[8,9,["G3564"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G1577"]],[12,15,["G2596"]],[15,16,["G846"]],[16,17,["G3624"]]]},{"k":29558,"v":[[0,1,["G2532"]],[1,2,["G3752"]],[2,4,["G1992"]],[4,6,["G314"]],[6,7,["G3844"]],[7,8,["G5213"]],[8,9,["G4160"]],[9,10,["G2443"]],[10,13,["G314"]],[13,14,["G2532"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G1577"]],[17,20,["G2994"]],[20,21,["G2532"]],[21,23,["G5210"]],[23,24,["G2532"]],[24,25,["G314"]],[25,26,["G3588"]],[26,28,["G1537"]],[28,29,["G2993"]]]},{"k":29559,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,4,["G751"]],[4,6,["G991"]],[6,8,["G3588"]],[8,9,["G1248"]],[9,10,["G3739"]],[10,13,["G3880"]],[13,14,["G1722"]],[14,16,["G2962"]],[16,17,["G2443"]],[17,19,["G4137"]],[19,20,["G846"]]]},{"k":29560,"v":[[0,1,["G3588"]],[1,2,["G783"]],[2,5,["G5495"]],[5,7,["G1699"]],[7,8,["G3972"]],[8,9,["G3421"]],[9,10,["G3450"]],[10,11,["G1199"]],[11,12,["G5485"]],[12,14,["G3326"]],[14,15,["G5216"]],[15,16,["G281"]]]},{"k":29561,"v":[[0,1,["G3972"]],[1,2,["G2532"]],[2,3,["G4610"]],[3,4,["G2532"]],[4,5,["G5095"]],[5,7,["G3588"]],[7,8,["G1577"]],[8,11,["G2331"]],[11,14,["G1722"]],[14,15,["G2316"]],[15,17,["G3962"]],[17,18,["G2532"]],[18,21,["G2962"]],[21,22,["G2424"]],[22,23,["G5547"]],[23,24,["G5485"]],[24,27,["G5213"]],[27,28,["G2532"]],[28,29,["G1515"]],[29,30,["G575"]],[30,31,["G2316"]],[31,32,["G2257"]],[32,33,["G3962"]],[33,34,["G2532"]],[34,36,["G2962"]],[36,37,["G2424"]],[37,38,["G5547"]]]},{"k":29562,"v":[[0,3,["G2168"]],[3,5,["G2316"]],[5,6,["G3842"]],[6,7,["G4012"]],[7,8,["G5216"]],[8,9,["G3956"]],[9,10,["G4160"]],[10,11,["G3417"]],[11,13,["G5216"]],[13,14,["G1909"]],[14,15,["G2257"]],[15,16,["G4335"]]]},{"k":29563,"v":[[0,1,["G3421"]],[1,3,["G89"]],[3,4,["G5216"]],[4,5,["G2041"]],[5,7,["G4102"]],[7,8,["G2532"]],[8,9,["G2873"]],[9,11,["G26"]],[11,12,["G2532"]],[12,13,["G5281"]],[13,15,["G1680"]],[15,17,["G2257"]],[17,18,["G2962"]],[18,19,["G2424"]],[19,20,["G5547"]],[20,23,["G1715"]],[23,25,["G2316"]],[25,26,["G2532"]],[26,27,["G2257"]],[27,28,["G3962"]]]},{"k":29564,"v":[[0,1,["G1492"]],[1,2,["G80"]],[2,3,["G25"]],[3,4,["G5216"]],[4,5,["G1589"]],[5,6,["G5259"]],[6,7,["G2316"]]]},{"k":29565,"v":[[0,1,["G3754"]],[1,2,["G2257"]],[2,3,["G2098"]],[3,4,["G1096"]],[4,5,["G3756"]],[5,6,["G1519"]],[6,7,["G5209"]],[7,8,["G1722"]],[8,9,["G3056"]],[9,10,["G3440"]],[10,11,["G235"]],[11,12,["G2532"]],[12,13,["G1722"]],[13,14,["G1411"]],[14,15,["G2532"]],[15,16,["G1722"]],[16,18,["G40"]],[18,19,["G4151"]],[19,20,["G2532"]],[20,21,["G1722"]],[21,22,["G4183"]],[22,23,["G4136"]],[23,24,["G2531"]],[24,26,["G1492"]],[26,30,["G3634"]],[30,32,["G1096"]],[32,33,["G1722"]],[33,34,["G5213"]],[34,37,["G1223","G5209"]]]},{"k":29566,"v":[[0,1,["G2532"]],[1,2,["G5210"]],[2,3,["G1096"]],[3,4,["G3402"]],[4,6,["G2257"]],[6,7,["G2532"]],[7,9,["G3588"]],[9,10,["G2962"]],[10,12,["G1209"]],[12,13,["G3588"]],[13,14,["G3056"]],[14,15,["G1722"]],[15,16,["G4183"]],[16,17,["G2347"]],[17,18,["G3326"]],[18,19,["G5479"]],[19,22,["G40"]],[22,23,["G4151"]]]},{"k":29567,"v":[[0,2,["G5620"]],[2,3,["G5209"]],[3,4,["G1096"]],[4,5,["G5179"]],[5,7,["G3956"]],[7,9,["G4100"]],[9,10,["G1722"]],[10,11,["G3109"]],[11,12,["G2532"]],[12,13,["G882"]]]},{"k":29568,"v":[[0,1,["G1063"]],[1,2,["G575"]],[2,3,["G5216"]],[3,5,["G1837"]],[5,6,["G3588"]],[6,7,["G3056"]],[7,9,["G3588"]],[9,10,["G2962"]],[10,11,["G3756"]],[11,12,["G3440"]],[12,13,["G1722"]],[13,14,["G3109"]],[14,15,["G2532"]],[15,16,["G882"]],[16,17,["G235"]],[17,18,["G2532"]],[18,19,["G1722"]],[19,20,["G3956"]],[20,21,["G5117"]],[21,22,["G5216"]],[22,23,["G4102"]],[23,24,["G4314"]],[24,25,["G2316"]],[25,28,["G1831"]],[28,30,["G5620"]],[30,31,["G2248"]],[31,32,["G2192","G5532"]],[32,33,["G3361"]],[33,35,["G2980"]],[35,37,["G5100"]]]},{"k":29569,"v":[[0,1,["G1063"]],[1,2,["G846"]],[2,4,["G518"]],[4,5,["G4012"]],[5,6,["G2257"]],[6,8,["G3697"]],[8,11,["G1529"]],[11,13,["G2192"]],[13,14,["G4314"]],[14,15,["G5209"]],[15,16,["G2532"]],[16,17,["G4459"]],[17,19,["G1994"]],[19,20,["G4314"]],[20,21,["G2316"]],[21,22,["G575"]],[22,23,["G1497"]],[23,25,["G1398"]],[25,27,["G2198"]],[27,28,["G2532"]],[28,29,["G228"]],[29,30,["G2316"]]]},{"k":29570,"v":[[0,1,["G2532"]],[1,4,["G362"]],[4,5,["G846"]],[5,6,["G5207"]],[6,7,["G1537"]],[7,8,["G3772"]],[8,9,["G3739"]],[9,11,["G1453"]],[11,12,["G1537"]],[12,14,["G3498"]],[14,16,["G2424"]],[16,18,["G4506"]],[18,19,["G2248"]],[19,20,["G575"]],[20,21,["G3588"]],[21,22,["G3709"]],[22,24,["G2064"]]]},{"k":29571,"v":[[0,1,["G1063"]],[1,2,["G846"]],[2,3,["G80"]],[3,4,["G1492"]],[4,5,["G2257"]],[5,7,["G1529"]],[7,8,["G4314"]],[8,9,["G5209"]],[9,10,["G3754"]],[10,12,["G1096"]],[12,13,["G3756"]],[13,15,["G2756"]]]},{"k":29572,"v":[[0,1,["G235"]],[1,2,["G2532"]],[2,8,["G4310"]],[8,9,["G2532"]],[9,12,["G5195"]],[12,13,["G2531"]],[13,15,["G1492"]],[15,16,["G1722"]],[16,17,["G5375"]],[17,20,["G3955"]],[20,21,["G1722"]],[21,22,["G2257"]],[22,23,["G2316"]],[23,25,["G2980"]],[25,26,["G4314"]],[26,27,["G5209"]],[27,28,["G3588"]],[28,29,["G2098"]],[29,31,["G2316"]],[31,32,["G1722"]],[32,33,["G4183"]],[33,34,["G73"]]]},{"k":29573,"v":[[0,1,["G1063"]],[1,2,["G2257"]],[2,3,["G3874"]],[3,5,["G3756"]],[5,6,["G1537"]],[6,7,["G4106"]],[7,8,["G3761"]],[8,9,["G1537"]],[9,10,["G167"]],[10,11,["G3777"]],[11,12,["G1722"]],[12,13,["G1388"]]]},{"k":29574,"v":[[0,1,["G235"]],[1,2,["G2531"]],[2,5,["G1381"]],[5,6,["G5259"]],[6,7,["G2316"]],[7,12,["G4100"]],[12,14,["G3588"]],[14,15,["G2098"]],[15,17,["G3779"]],[17,19,["G2980"]],[19,20,["G3756"]],[20,21,["G5613"]],[21,22,["G700"]],[22,23,["G444"]],[23,24,["G235"]],[24,25,["G2316"]],[25,27,["G1381"]],[27,28,["G2257"]],[28,29,["G2588"]]]},{"k":29575,"v":[[0,1,["G1063"]],[1,2,["G3777"]],[2,5,["G4218"]],[5,9,["G1096","G1722","G3056","G2850"]],[9,10,["G2531"]],[10,12,["G1492"]],[12,13,["G3777"]],[13,15,["G4392"]],[15,17,["G4124"]],[17,18,["G2316"]],[18,20,["G3144"]]]},{"k":29576,"v":[[0,1,["G3777"]],[1,2,["G1537"]],[2,3,["G444"]],[3,4,["G2212"]],[4,6,["G1391"]],[6,7,["G3777"]],[7,8,["G575"]],[8,9,["G5216"]],[9,10,["G3777"]],[10,12,["G575"]],[12,13,["G243"]],[13,16,["G1410"]],[16,18,["G1511"]],[18,19,["G1722","G922"]],[19,20,["G5613"]],[20,22,["G652"]],[22,24,["G5547"]]]},{"k":29577,"v":[[0,1,["G235"]],[1,3,["G1096"]],[3,4,["G2261"]],[4,5,["G1722","G3319"]],[5,6,["G5216"]],[6,8,["G5613","G302"]],[8,10,["G5162"]],[10,11,["G2282"]],[11,12,["G1438"]],[12,13,["G5043"]]]},{"k":29578,"v":[[0,1,["G3779"]],[1,4,["G2442"]],[4,6,["G5216"]],[6,9,["G2106"]],[9,12,["G3330"]],[12,14,["G5213"]],[14,15,["G3756"]],[15,16,["G3588"]],[16,17,["G2098"]],[17,19,["G2316"]],[19,20,["G3440"]],[20,21,["G235"]],[21,22,["G2532"]],[22,24,["G1438"]],[24,25,["G5590"]],[25,26,["G1360"]],[26,28,["G1096"]],[28,29,["G27"]],[29,31,["G2254"]]]},{"k":29579,"v":[[0,1,["G1063"]],[1,3,["G3421"]],[3,4,["G80"]],[4,5,["G2257"]],[5,6,["G2873"]],[6,7,["G2532"]],[7,8,["G3449"]],[8,9,["G1063"]],[9,10,["G2038"]],[10,11,["G3571"]],[11,12,["G2532"]],[12,13,["G2250"]],[13,17,["G3361"]],[17,19,["G1912"]],[19,21,["G5100"]],[21,23,["G5216"]],[23,25,["G2784"]],[25,26,["G1519"]],[26,27,["G5209"]],[27,28,["G3588"]],[28,29,["G2098"]],[29,31,["G2316"]]]},{"k":29580,"v":[[0,1,["G5210"]],[1,3,["G3144"]],[3,4,["G2532"]],[4,5,["G2316"]],[5,7,["G5613"]],[7,8,["G3743"]],[8,9,["G2532"]],[9,10,["G1346"]],[10,11,["G2532"]],[11,12,["G274"]],[12,15,["G1096"]],[15,17,["G5213"]],[17,19,["G4100"]]]},{"k":29581,"v":[[0,1,["G2509"]],[1,3,["G1492"]],[3,4,["G5613"]],[4,6,["G3870","(G5209)"]],[6,7,["G2532"]],[7,8,["G3888"]],[8,9,["G2532"]],[9,10,["G3140"]],[10,11,["G1538"]],[11,12,["G1520"]],[12,14,["G5216"]],[14,15,["G5613"]],[15,17,["G3962"]],[17,19,["G1438"]],[19,20,["G5043"]]]},{"k":29582,"v":[[0,2,["G5209"]],[2,4,["G4043"]],[4,5,["G516"]],[5,7,["G2316"]],[7,10,["G2564"]],[10,11,["G5209"]],[11,12,["G1519"]],[12,13,["G1438"]],[13,14,["G932"]],[14,15,["G2532"]],[15,16,["G1391"]]]},{"k":29583,"v":[[0,3,["G1223","G5124"]],[3,4,["G2532"]],[4,5,["G2168"]],[5,6,["G2249"]],[6,7,["G2316"]],[7,9,["G89"]],[9,10,["G3754"]],[10,13,["G3880"]],[13,15,["G3056"]],[15,17,["G2316"]],[17,20,["G189"]],[20,21,["G3844"]],[21,22,["G2257"]],[22,24,["G1209"]],[24,26,["G3756"]],[26,29,["G3056"]],[29,31,["G444"]],[31,32,["G235"]],[32,33,["G2531"]],[33,35,["G2076"]],[35,37,["G230"]],[37,39,["G3056"]],[39,41,["G2316"]],[41,42,["G3739"]],[42,44,["G1754"]],[44,45,["G2532"]],[45,46,["G1722"]],[46,47,["G5213"]],[47,49,["G4100"]]]},{"k":29584,"v":[[0,1,["G1063"]],[1,2,["G5210"]],[2,3,["G80"]],[3,4,["G1096"]],[4,5,["G3402"]],[5,7,["G3588"]],[7,8,["G1577"]],[8,10,["G2316"]],[10,12,["G1722"]],[12,13,["G2449"]],[13,14,["G5607"]],[14,15,["G1722"]],[15,16,["G5547"]],[16,17,["G2424"]],[17,18,["G3754"]],[18,19,["G5210"]],[19,20,["G2532"]],[20,22,["G3958"]],[22,24,["G5024"]],[24,25,["G5259"]],[25,27,["G2398"]],[27,28,["G4853"]],[28,30,["G2531"]],[30,31,["G846"]],[31,32,["(G2532)"]],[32,33,["G5259"]],[33,34,["G3588"]],[34,35,["G2453"]]]},{"k":29585,"v":[[0,3,["G615","G2532"]],[3,4,["G3588"]],[4,5,["G2962"]],[5,6,["G2424"]],[6,7,["G2532"]],[7,9,["G2398"]],[9,10,["G4396"]],[10,11,["G2532"]],[11,13,["G1559"]],[13,14,["G2248"]],[14,15,["G2532"]],[15,17,["G700"]],[17,18,["G3361"]],[18,19,["G2316"]],[19,20,["G2532"]],[20,22,["G1727"]],[22,24,["G3956"]],[24,25,["G444"]]]},{"k":29586,"v":[[0,1,["G2967"]],[1,2,["G2248"]],[2,4,["G2980"]],[4,6,["G3588"]],[6,7,["G1484"]],[7,8,["G2443"]],[8,12,["G4982"]],[12,15,["G378"]],[15,16,["G848"]],[16,17,["G266"]],[17,18,["G3842"]],[18,19,["G1161"]],[19,20,["G3588"]],[20,21,["G3709"]],[21,23,["G5348"]],[23,24,["G1909"]],[24,25,["G846"]],[25,26,["G1519"]],[26,28,["G5056"]]]},{"k":29587,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,3,["G80"]],[3,5,["G642"]],[5,6,["G575"]],[6,7,["G5216"]],[7,8,["G4314"]],[8,11,["G5610","G2540"]],[11,13,["G4383"]],[13,14,["G3756"]],[14,16,["G2588"]],[16,17,["G4704"]],[17,20,["G4056"]],[20,22,["G1492"]],[22,23,["G5216"]],[23,24,["G4383"]],[24,25,["G1722"]],[25,26,["G4183"]],[26,27,["G1939"]]]},{"k":29588,"v":[[0,1,["G1352"]],[1,3,["G2309"]],[3,5,["G2064"]],[5,6,["G4314"]],[6,7,["G5209"]],[7,8,["G3303"]],[8,9,["G1473"]],[9,10,["G3972","(G2532)"]],[10,13,["G530","G2532","G1364"]],[13,14,["G2532"]],[14,15,["G4567"]],[15,16,["G1465"]],[16,17,["G2248"]]]},{"k":29589,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,4,["G2257"]],[4,5,["G1680"]],[5,6,["G2228"]],[6,7,["G5479"]],[7,8,["G2228"]],[8,9,["G4735"]],[9,11,["G2746"]],[11,12,["(G2228)"]],[12,13,["G3780"]],[13,14,["G2532"]],[14,15,["G5210"]],[15,18,["G1715"]],[18,20,["G2257"]],[20,21,["G2962"]],[21,22,["G2424"]],[22,23,["G5547"]],[23,24,["G1722"]],[24,25,["G846"]],[25,26,["G3952"]]]},{"k":29590,"v":[[0,1,["G1063"]],[1,2,["G5210"]],[2,3,["G2075"]],[3,4,["G2257"]],[4,5,["G1391"]],[5,6,["G2532"]],[6,7,["G5479"]]]},{"k":29591,"v":[[0,1,["G1352"]],[1,6,["G3371"]],[6,7,["G4722"]],[7,11,["G2106"]],[11,14,["G2641"]],[14,15,["G1722"]],[15,16,["G116"]],[16,17,["G3441"]]]},{"k":29592,"v":[[0,1,["G2532"]],[1,2,["G3992"]],[2,3,["G5095"]],[3,4,["G2257"]],[4,5,["G80"]],[5,6,["G2532"]],[6,7,["G1249"]],[7,9,["G2316"]],[9,10,["G2532"]],[10,11,["G2257"]],[11,12,["G4904"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G2098"]],[15,17,["G5547"]],[17,19,["G4741"]],[19,20,["G5209"]],[20,21,["G2532"]],[21,23,["G3870"]],[23,24,["G5209"]],[24,25,["G4012"]],[25,26,["G5216"]],[26,27,["G4102"]]]},{"k":29593,"v":[[0,3,["G3367"]],[3,6,["G4525"]],[6,7,["G1722"]],[7,8,["G5025"]],[8,9,["G2347"]],[9,10,["G1063"]],[10,11,["G846"]],[11,12,["G1492"]],[12,13,["G3754"]],[13,16,["G2749"]],[16,17,["G1519","G5124"]]]},{"k":29594,"v":[[0,1,["G1063"]],[1,2,["G2532"]],[2,3,["G3753"]],[3,5,["G2258"]],[5,6,["G4314"]],[6,7,["G5209"]],[7,11,["G4302","G5213"]],[11,12,["G3754"]],[12,14,["G3195"]],[14,16,["G2346"]],[16,17,["G2532"]],[17,18,["G2531"]],[18,22,["G1096"]],[22,23,["G2532"]],[23,25,["G1492"]]]},{"k":29595,"v":[[0,3,["G1223","G5124"]],[3,5,["G2504"]],[5,8,["G3371"]],[8,9,["G4722"]],[9,11,["G3992"]],[11,13,["G1097"]],[13,14,["G5216"]],[14,15,["G4102"]],[15,19,["G3381"]],[19,20,["G3588"]],[20,21,["G3985"]],[21,23,["G3985"]],[23,24,["G5209"]],[24,25,["G2532"]],[25,26,["G2257"]],[26,27,["G2873"]],[27,28,["G1096"]],[28,29,["G1519"]],[29,30,["G2756"]]]},{"k":29596,"v":[[0,1,["G1161"]],[1,2,["G737"]],[2,4,["G5095"]],[4,5,["G2064"]],[5,6,["G575"]],[6,7,["G5216"]],[7,8,["G4314"]],[8,9,["G2248"]],[9,10,["G2532"]],[10,14,["G2097","G2254"]],[14,16,["G5216"]],[16,17,["G4102"]],[17,18,["G2532"]],[18,19,["G26"]],[19,20,["G2532"]],[20,21,["G3754"]],[21,23,["G2192"]],[23,24,["G18"]],[24,25,["G3417"]],[25,27,["G2257"]],[27,28,["G3842"]],[28,30,["G1971"]],[30,32,["G1492"]],[32,33,["G2248"]],[33,34,["G2509"]],[34,35,["G2249"]],[35,36,["G2532"]],[36,39,["G5209"]]]},{"k":29597,"v":[[0,1,["G1223","G5124"]],[1,2,["G80"]],[2,5,["G3870"]],[5,6,["G1909"]],[6,7,["G5213"]],[7,8,["G1909"]],[8,9,["G3956"]],[9,10,["G2257"]],[10,11,["G2347"]],[11,12,["G2532"]],[12,13,["G318"]],[13,14,["G1223"]],[14,15,["G5216"]],[15,16,["G4102"]]]},{"k":29598,"v":[[0,1,["G3754"]],[1,2,["G3568"]],[2,4,["G2198"]],[4,5,["G1437"]],[5,6,["G5210"]],[6,8,["G4739"]],[8,9,["G1722"]],[9,11,["G2962"]]]},{"k":29599,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,3,["G2169"]],[3,4,["G1410"]],[4,9,["G467","G2316"]],[9,10,["G4012"]],[10,11,["G5216"]],[11,12,["G1909"]],[12,13,["G3956"]],[13,14,["G3588"]],[14,15,["G5479"]],[15,16,["G3739"]],[16,18,["G5463"]],[18,21,["G1223","G5209"]],[21,22,["G1715"]],[22,23,["G2257"]],[23,24,["G2316"]]]},{"k":29600,"v":[[0,1,["G3571"]],[1,2,["G2532"]],[2,3,["G2250"]],[3,4,["G1189"]],[4,5,["G5228","G1537","G4053"]],[5,9,["G1492"]],[9,10,["G5216"]],[10,11,["G4383"]],[11,12,["G2532"]],[12,14,["G2675"]],[14,18,["G5303"]],[18,20,["G5216"]],[20,21,["G4102"]]]},{"k":29601,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,3,["G846"]],[3,4,["G2532"]],[4,5,["G2257"]],[5,6,["G3962"]],[6,7,["G2532"]],[7,8,["G2257"]],[8,9,["G2962"]],[9,10,["G2424"]],[10,11,["G5547"]],[11,12,["G2720"]],[12,13,["G2257"]],[13,14,["G3598"]],[14,15,["G4314"]],[15,16,["G5209"]]]},{"k":29602,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,7,["G4121","G5209"]],[7,8,["G2532"]],[8,9,["G4052"]],[9,11,["G26"]],[11,14,["G240","G1519"]],[14,15,["G2532"]],[15,16,["G1519"]],[16,17,["G3956"]],[17,19,["G2532"]],[19,20,["G2509"]],[20,21,["G2249"]],[21,23,["G1519"]],[23,24,["G5209"]]]},{"k":29603,"v":[[0,6,["G4741"]],[6,7,["G5216"]],[7,8,["G2588"]],[8,9,["G273"]],[9,10,["G1722"]],[10,11,["G42"]],[11,12,["G1715"]],[12,13,["G2316"]],[13,14,["G2532"]],[14,15,["G2257"]],[15,16,["G3962"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G3952"]],[19,21,["G2257"]],[21,22,["G2962"]],[22,23,["G2424"]],[23,24,["G5547"]],[24,25,["G3326"]],[25,26,["G3956"]],[26,27,["G846"]],[27,28,["G40"]]]},{"k":29604,"v":[[0,1,["G3063"]],[1,2,["G3767"]],[2,4,["G2065"]],[4,5,["G5209"]],[5,6,["G80"]],[6,7,["G2532"]],[7,8,["G3870"]],[8,10,["G1722"]],[10,12,["G2962"]],[12,13,["G2424"]],[13,15,["G2531"]],[15,18,["G3880"]],[18,19,["G3844"]],[19,20,["G2257"]],[20,21,["G4459"]],[21,22,["G5209"]],[22,23,["G1163"]],[23,25,["G4043"]],[25,26,["G2532"]],[26,28,["G700"]],[28,29,["G2316"]],[29,32,["(G2443)"]],[32,33,["G4052"]],[33,36,["G3123"]]]},{"k":29605,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,4,["G5101"]],[4,5,["G3852"]],[5,7,["G1325"]],[7,8,["G5213"]],[8,9,["G1223"]],[9,10,["G3588"]],[10,11,["G2962"]],[11,12,["G2424"]]]},{"k":29606,"v":[[0,1,["G1063"]],[1,2,["G5124"]],[2,3,["G2076"]],[3,5,["G2307"]],[5,7,["G2316"]],[7,9,["G5216"]],[9,10,["G38"]],[10,12,["G5209"]],[12,14,["G567"]],[14,15,["G575"]],[15,16,["G4202"]]]},{"k":29607,"v":[[0,3,["G1538"]],[3,5,["G5216"]],[5,7,["G1492"]],[7,10,["G2932"]],[10,11,["G1438"]],[11,12,["G4632"]],[12,13,["G1722"]],[13,14,["G38"]],[14,15,["G2532"]],[15,16,["G5092"]]]},{"k":29608,"v":[[0,1,["G3361"]],[1,2,["G1722"]],[2,4,["G3806"]],[4,6,["G1939"]],[6,7,["G2532"]],[7,8,["G2509"]],[8,9,["G3588"]],[9,10,["G1484"]],[10,12,["G1492"]],[12,13,["G3361"]],[13,14,["G2316"]]]},{"k":29609,"v":[[0,2,["G3361"]],[2,5,["G5233"]],[5,6,["G2532"]],[6,7,["G4122"]],[7,8,["G848"]],[8,9,["G80"]],[9,10,["G1722"]],[10,12,["G4229"]],[12,14,["G1360"]],[14,15,["G3588"]],[15,16,["G2962"]],[16,19,["G1558"]],[19,20,["G4012"]],[20,21,["G3956"]],[21,22,["G5130"]],[22,23,["G2531"]],[23,25,["G2532"]],[25,27,["G4277"]],[27,28,["G5213"]],[28,29,["G2532"]],[29,30,["G1263"]]]},{"k":29610,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,4,["G3756"]],[4,5,["G2564"]],[5,6,["G2248"]],[6,7,["G1909"]],[7,8,["G167"]],[8,9,["G235"]],[9,10,["G1722"]],[10,11,["G38"]]]},{"k":29611,"v":[[0,4,["G114","G5105"]],[4,5,["G114"]],[5,6,["G3756"]],[6,7,["G444"]],[7,8,["G235"]],[8,9,["G2316"]],[9,13,["G1325","G2532"]],[13,14,["G1519"]],[14,15,["G2248"]],[15,16,["G848"]],[16,17,["G40"]],[17,18,["G4151"]]]},{"k":29612,"v":[[0,1,["G1161"]],[1,3,["G4012"]],[3,5,["G5360"]],[5,7,["G2192","G5532"]],[7,8,["G3756"]],[8,11,["G1125"]],[11,13,["G5213"]],[13,14,["G1063"]],[14,15,["G5210"]],[15,16,["G846"]],[16,17,["G2075"]],[17,20,["G2312"]],[20,21,["G1519"]],[21,22,["G25"]],[22,24,["G240"]]]},{"k":29613,"v":[[0,1,["G1063"]],[1,2,["G2532"]],[2,4,["G4160"]],[4,5,["G846"]],[5,6,["G1519"]],[6,7,["G3956"]],[7,8,["G3588"]],[8,9,["G80"]],[9,10,["G3588"]],[10,12,["G1722"]],[12,13,["G3650"]],[13,14,["G3109"]],[14,15,["G1161"]],[15,17,["G3870"]],[17,18,["G5209"]],[18,19,["G80"]],[19,22,["G4052"]],[22,25,["G3123"]]]},{"k":29614,"v":[[0,1,["G2532"]],[1,4,["G5389"]],[4,7,["G2270"]],[7,8,["G2532"]],[8,13,["G4238","G2398"]],[13,14,["G2532"]],[14,16,["G2038"]],[16,18,["G5216"]],[18,19,["G2398"]],[19,20,["G5495"]],[20,21,["G2531"]],[21,23,["G3853"]],[23,24,["G5213"]]]},{"k":29615,"v":[[0,1,["G2443"]],[1,4,["G4043"]],[4,5,["G2156"]],[5,6,["G4314"]],[6,10,["G1854"]],[10,11,["G2532"]],[11,15,["G2192"]],[15,16,["G5532"]],[16,18,["G3367"]]]},{"k":29616,"v":[[0,1,["G1161"]],[1,3,["G2309"]],[3,4,["G3756"]],[4,6,["G5209"]],[6,9,["G50"]],[9,10,["G80"]],[10,11,["G4012"]],[11,15,["G2837"]],[15,16,["G2443"]],[16,18,["G3076"]],[18,19,["G3361"]],[19,20,["G2532"]],[20,21,["G2531"]],[21,22,["G3062"]],[22,24,["G2192"]],[24,25,["G3361"]],[25,26,["G1680"]]]},{"k":29617,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,4,["G4100"]],[4,5,["G3754"]],[5,6,["G2424"]],[6,7,["G599"]],[7,8,["G2532"]],[8,10,["G450"]],[10,12,["G3779"]],[12,16,["G2837","G2532"]],[16,17,["G1223"]],[17,18,["G2424"]],[18,20,["G2316"]],[20,21,["G71"]],[21,22,["G4862"]],[22,23,["G846"]]]},{"k":29618,"v":[[0,1,["G1063"]],[1,2,["G5124"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,7,["G1722"]],[7,9,["G3056"]],[9,12,["G2962"]],[12,13,["G3754"]],[13,14,["G2249"]],[14,17,["G2198"]],[17,19,["G4035"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G3952"]],[22,24,["G3588"]],[24,25,["G2962"]],[25,27,["G3364"]],[27,28,["G5348"]],[28,32,["G2837"]]]},{"k":29619,"v":[[0,1,["G3754"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G846"]],[4,6,["G2597"]],[6,7,["G575"]],[7,8,["G3772"]],[8,9,["G1722"]],[9,11,["G2752"]],[11,12,["G1722"]],[12,14,["G5456"]],[14,17,["G743"]],[17,18,["G2532"]],[18,19,["G1722"]],[19,21,["G4536"]],[21,23,["G2316"]],[23,24,["G2532"]],[24,25,["G3588"]],[25,26,["G3498"]],[26,27,["G1722"]],[27,28,["G5547"]],[28,30,["G450"]],[30,31,["G4412"]]]},{"k":29620,"v":[[0,1,["G1899"]],[1,2,["G2249"]],[2,5,["G2198"]],[5,7,["G4035"]],[7,11,["G726"]],[11,12,["G260"]],[12,13,["G4862"]],[13,14,["G846"]],[14,15,["G1722"]],[15,17,["G3507"]],[17,19,["G1519","G529"]],[19,20,["G3588"]],[20,21,["G2962"]],[21,22,["G1519"]],[22,24,["G109"]],[24,25,["G2532"]],[25,26,["G3779"]],[26,29,["G3842"]],[29,30,["G2071"]],[30,31,["G4862"]],[31,33,["G2962"]]]},{"k":29621,"v":[[0,1,["G5620"]],[1,2,["G3870"]],[2,4,["G240"]],[4,5,["G1722"]],[5,6,["G5125"]],[6,7,["G3056"]]]},{"k":29622,"v":[[0,1,["G1161"]],[1,2,["G4012"]],[2,3,["G3588"]],[3,4,["G5550"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G2540"]],[7,8,["G80"]],[8,10,["G2192"]],[10,11,["G3756"]],[11,12,["G5532"]],[12,15,["G1125"]],[15,17,["G5213"]]]},{"k":29623,"v":[[0,1,["G1063"]],[1,2,["G846"]],[2,3,["G1492"]],[3,4,["G199"]],[4,5,["G3754"]],[5,6,["G3588"]],[6,7,["G2250"]],[7,10,["G2962"]],[10,11,["G3779"]],[11,12,["G2064"]],[12,13,["G5613"]],[13,15,["G2812"]],[15,16,["G1722"]],[16,18,["G3571"]]]},{"k":29624,"v":[[0,1,["G1063"]],[1,2,["G3752"]],[2,5,["G3004"]],[5,6,["G1515"]],[6,7,["G2532"]],[7,8,["G803"]],[8,9,["G5119"]],[9,10,["G160"]],[10,11,["G3639"]],[11,13,["G2186"]],[13,14,["G846"]],[14,15,["G5618"]],[15,16,["G5604"]],[16,21,["G2192","G1722","G1064"]],[21,22,["G2532"]],[22,25,["G3364"]],[25,26,["G1628"]]]},{"k":29625,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G80"]],[3,4,["G2075"]],[4,5,["G3756"]],[5,6,["G1722"]],[6,7,["G4655"]],[7,8,["G2443"]],[8,10,["G2250"]],[10,12,["G2638"]],[12,13,["G5209"]],[13,14,["G5613"]],[14,16,["G2812"]]]},{"k":29626,"v":[[0,1,["G5210"]],[1,2,["G2075"]],[2,3,["G3956"]],[3,5,["G5207"]],[5,7,["G5457"]],[7,8,["G2532"]],[8,10,["G5207"]],[10,13,["G2250"]],[13,15,["G2070"]],[15,16,["G3756"]],[16,19,["G3571"]],[19,20,["G3761"]],[20,22,["G4655"]]]},{"k":29627,"v":[[0,1,["G686","G3767"]],[1,4,["G3361"]],[4,5,["G2518"]],[5,6,["G5613"]],[6,7,["(G2532)"]],[7,8,["G3062"]],[8,9,["G235"]],[9,12,["G1127"]],[12,13,["G2532"]],[13,15,["G3525"]]]},{"k":29628,"v":[[0,1,["G1063"]],[1,4,["G2518"]],[4,5,["G2518"]],[5,8,["G3571"]],[8,9,["G2532"]],[9,13,["G3182"]],[13,15,["G3184"]],[15,18,["G3571"]]]},{"k":29629,"v":[[0,1,["G1161"]],[1,3,["G2249"]],[3,5,["G5607"]],[5,8,["G2250"]],[8,10,["G3525"]],[10,12,["G1746"]],[12,14,["G2382"]],[14,16,["G4102"]],[16,17,["G2532"]],[17,18,["G26"]],[18,19,["G2532"]],[19,22,["G4030"]],[22,24,["G1680"]],[24,26,["G4991"]]]},{"k":29630,"v":[[0,1,["G3754"]],[1,2,["G2316"]],[2,4,["G3756"]],[4,5,["G5087"]],[5,6,["G2248"]],[6,7,["G1519"]],[7,8,["G3709"]],[8,9,["G235"]],[9,11,["G1519","G4047"]],[11,12,["G4991"]],[12,13,["G1223"]],[13,14,["G2257"]],[14,15,["G2962"]],[15,16,["G2424"]],[16,17,["G5547"]]]},{"k":29631,"v":[[0,2,["G599"]],[2,3,["G5228"]],[3,4,["G2257"]],[4,5,["G2443"]],[5,6,["G1535"]],[6,8,["G1127"]],[8,9,["G1535"]],[9,10,["G2518"]],[10,13,["G2198"]],[13,14,["G260"]],[14,15,["G4862"]],[15,16,["G846"]]]},{"k":29632,"v":[[0,1,["G1352"]],[1,2,["G3870"]],[2,4,["G240"]],[4,5,["G2532"]],[5,6,["G3618"]],[6,8,["G1520","G1520"]],[8,10,["G2531"]],[10,11,["G2532"]],[11,13,["G4160"]]]},{"k":29633,"v":[[0,1,["G1161"]],[1,3,["G2065"]],[3,4,["G5209"]],[4,5,["G80"]],[5,7,["G1492"]],[7,10,["G2872"]],[10,11,["G1722"]],[11,12,["G5213"]],[12,13,["G2532"]],[13,15,["G4291"]],[15,16,["G5216"]],[16,17,["G1722"]],[17,19,["G2962"]],[19,20,["G2532"]],[20,21,["G3560"]],[21,22,["G5209"]]]},{"k":29634,"v":[[0,1,["G2532"]],[1,3,["G2233"]],[3,4,["G846"]],[4,6,["G5228","G1537","G4053"]],[6,7,["G1722"]],[7,8,["G26"]],[8,12,["G1223","G846","G2041"]],[12,16,["G1514"]],[16,17,["G1722"]],[17,18,["G1438"]]]},{"k":29635,"v":[[0,1,["G1161"]],[1,3,["G3870"]],[3,4,["G5209"]],[4,5,["G80"]],[5,6,["G3560"]],[6,10,["G813"]],[10,11,["G3888"]],[11,12,["G3588"]],[12,13,["G3642"]],[13,14,["G472"]],[14,15,["G3588"]],[15,16,["G772"]],[16,18,["G3114"]],[18,19,["G4314"]],[19,20,["G3956"]],[20,21,[]]]},{"k":29636,"v":[[0,1,["G3708"]],[1,3,["G5100","G3361"]],[3,4,["G591"]],[4,5,["G2556"]],[5,6,["G473"]],[6,7,["G2556"]],[7,9,["G5100"]],[9,11,["G235"]],[11,12,["G3842"]],[12,13,["G1377"]],[13,17,["G18"]],[17,18,["G2532"]],[18,19,["G1519"]],[19,20,["G240"]],[20,21,["G2532"]],[21,22,["G1519"]],[22,23,["G3956"]],[23,24,[]]]},{"k":29637,"v":[[0,1,["G5463"]],[1,2,["G3842"]]]},{"k":29638,"v":[[0,1,["G4336"]],[1,3,["G89"]]]},{"k":29639,"v":[[0,1,["G1722"]],[1,3,["G3956"]],[3,5,["G2168"]],[5,6,["G1063"]],[6,7,["G5124"]],[7,10,["G2307"]],[10,12,["G2316"]],[12,13,["G1722"]],[13,14,["G5547"]],[14,15,["G2424"]],[15,16,["G1519"]],[16,17,["G5209"]]]},{"k":29640,"v":[[0,1,["G4570"]],[1,2,["G3361"]],[2,3,["G3588"]],[3,4,["G4151"]]]},{"k":29641,"v":[[0,1,["G1848"]],[1,2,["G3361"]],[2,3,["G4394"]]]},{"k":29642,"v":[[0,1,["G1381"]],[1,3,["G3956"]],[3,5,["G2722"]],[5,9,["G2570"]]]},{"k":29643,"v":[[0,1,["G567"]],[1,2,["G575"]],[2,3,["G3956"]],[3,4,["G1491"]],[4,6,["G4190"]]]},{"k":29644,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G846"]],[3,4,["G2316"]],[4,6,["G1515"]],[6,7,["G37"]],[7,8,["G5209"]],[8,9,["G3651"]],[9,10,["G2532"]],[10,14,["G5216"]],[14,15,["G3648"]],[15,16,["G4151"]],[16,17,["G2532"]],[17,18,["G5590"]],[18,19,["G2532"]],[19,20,["G4983"]],[20,22,["G5083"]],[22,23,["G274"]],[23,24,["G1722"]],[24,25,["G3588"]],[25,26,["G3952"]],[26,28,["G2257"]],[28,29,["G2962"]],[29,30,["G2424"]],[30,31,["G5547"]]]},{"k":29645,"v":[[0,1,["G4103"]],[1,5,["G2564"]],[5,6,["G5209"]],[6,7,["G3739"]],[7,8,["G2532"]],[8,10,["G4160"]],[10,11,[]]]},{"k":29646,"v":[[0,1,["G80"]],[1,2,["G4336"]],[2,3,["G4012"]],[3,4,["G2257"]]]},{"k":29647,"v":[[0,1,["G782"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G80"]],[4,5,["G1722"]],[5,7,["G40"]],[7,8,["G5370"]]]},{"k":29648,"v":[[0,2,["G3726"]],[2,3,["G5209"]],[3,5,["G3588"]],[5,6,["G2962"]],[6,9,["G1992"]],[9,11,["G314"]],[11,13,["G3956"]],[13,14,["G3588"]],[14,15,["G40"]],[15,16,["G80"]]]},{"k":29649,"v":[[0,1,["G3588"]],[1,2,["G5485"]],[2,4,["G2257"]],[4,5,["G2962"]],[5,6,["G2424"]],[6,7,["G5547"]],[7,9,["G3326"]],[9,10,["G5216"]],[10,11,["G281"]]]},{"k":29650,"v":[[0,1,["G3972"]],[1,2,["G2532"]],[2,3,["G4610"]],[3,4,["G2532"]],[4,5,["G5095"]],[5,7,["G3588"]],[7,8,["G1577"]],[8,11,["G2331"]],[11,12,["G1722"]],[12,13,["G2316"]],[13,14,["G2257"]],[14,15,["G3962"]],[15,16,["G2532"]],[16,18,["G2962"]],[18,19,["G2424"]],[19,20,["G5547"]]]},{"k":29651,"v":[[0,1,["G5485"]],[1,3,["G5213"]],[3,4,["G2532"]],[4,5,["G1515"]],[5,6,["G575"]],[6,7,["G2316"]],[7,8,["G2257"]],[8,9,["G3962"]],[9,10,["G2532"]],[10,12,["G2962"]],[12,13,["G2424"]],[13,14,["G5547"]]]},{"k":29652,"v":[[0,3,["G3784"]],[3,5,["G2168"]],[5,6,["G2316"]],[6,7,["G3842"]],[7,8,["G4012"]],[8,9,["G5216"]],[9,10,["G80"]],[10,11,["G2531"]],[11,13,["G2076"]],[13,14,["G514"]],[14,16,["G3754"]],[16,17,["G5216"]],[17,18,["G4102"]],[18,20,["G5232"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G26"]],[23,25,["G1538"]],[25,26,["G1520"]],[26,28,["G5216"]],[28,29,["G3956"]],[29,30,["G1519"]],[30,32,["G240"]],[32,33,["G4121"]]]},{"k":29653,"v":[[0,2,["G5620"]],[2,3,["G2248"]],[3,4,["G846"]],[4,5,["G2744"]],[5,6,["G1722"]],[6,7,["G5213"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G1577"]],[10,12,["G2316"]],[12,13,["G5228"]],[13,14,["G5216"]],[14,15,["G5281"]],[15,16,["G2532"]],[16,17,["G4102"]],[17,18,["G1722"]],[18,19,["G3956"]],[19,20,["G5216"]],[20,21,["G1375"]],[21,22,["G2532"]],[22,23,["G2347"]],[23,24,["G3739"]],[24,26,["G430"]]]},{"k":29654,"v":[[0,5,["G1730"]],[5,7,["G3588"]],[7,8,["G1342"]],[8,9,["G2920"]],[9,11,["G2316"]],[11,13,["G5209"]],[13,17,["G2661"]],[17,19,["G3588"]],[19,20,["G932"]],[20,22,["G2316"]],[22,23,["G5228"]],[23,24,["G3739"]],[24,26,["G2532"]],[26,27,["G3958"]]]},{"k":29655,"v":[[0,1,["G1512"]],[1,6,["G1342"]],[6,7,["G3844"]],[7,8,["G2316"]],[8,10,["G467"]],[10,11,["G2347"]],[11,15,["G2346"]],[15,16,["G5209"]]]},{"k":29656,"v":[[0,1,["G2532"]],[1,3,["G5213"]],[3,6,["G2346"]],[6,7,["G425"]],[7,8,["G3326"]],[8,9,["G2257"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G2962"]],[12,13,["G2424"]],[13,16,["G602"]],[16,17,["G575"]],[17,18,["G3772"]],[18,19,["G3326"]],[19,20,["G848"]],[20,21,["G1411"]],[21,22,["G32"]]]},{"k":29657,"v":[[0,1,["G1722"]],[1,2,["G5395"]],[2,3,["G4442"]],[3,4,["G1325"]],[4,5,["G1557"]],[5,9,["G1492"]],[9,10,["G3361"]],[10,11,["G2316"]],[11,12,["G2532"]],[12,14,["G5219"]],[14,15,["G3361"]],[15,16,["G3588"]],[16,17,["G2098"]],[17,19,["G2257"]],[19,20,["G2962"]],[20,21,["G2424"]],[21,22,["G5547"]]]},{"k":29658,"v":[[0,1,["G3748"]],[1,4,["G5099","G1349"]],[4,6,["G166"]],[6,7,["G3639"]],[7,8,["G575"]],[8,10,["G4383"]],[10,12,["G3588"]],[12,13,["G2962"]],[13,14,["G2532"]],[14,15,["G575"]],[15,16,["G3588"]],[16,17,["G1391"]],[17,19,["G846"]],[19,20,["G2479"]]]},{"k":29659,"v":[[0,1,["G3752"]],[1,4,["G2064"]],[4,7,["G1740"]],[7,8,["G1722"]],[8,9,["G848"]],[9,10,["G40"]],[10,11,["G2532"]],[11,14,["G2296"]],[14,15,["G1722"]],[15,16,["G3956"]],[16,19,["G4100"]],[19,20,["G3754"]],[20,21,["G2257"]],[21,22,["G3142"]],[22,23,["G1909"]],[23,24,["G5209"]],[24,26,["G4100"]],[26,27,["G1722"]],[27,28,["G1565"]],[28,29,["G2250"]]]},{"k":29660,"v":[[0,1,["G1519","G3739"]],[1,2,["G2532"]],[2,4,["G4336"]],[4,5,["G3842"]],[5,6,["G4012"]],[6,7,["G5216"]],[7,8,["G2443"]],[8,9,["G2257"]],[9,10,["G2316"]],[10,14,["G515","G5209"]],[14,17,["G2821"]],[17,18,["G2532"]],[18,19,["G4137"]],[19,20,["G3956"]],[20,23,["G2107"]],[23,26,["G19"]],[26,27,["G2532"]],[27,29,["G2041"]],[29,31,["G4102"]],[31,32,["G1722"]],[32,33,["G1411"]]]},{"k":29661,"v":[[0,1,["G3704"]],[1,2,["G3588"]],[2,3,["G3686"]],[3,5,["G2257"]],[5,6,["G2962"]],[6,7,["G2424"]],[7,8,["G5547"]],[8,11,["G1740"]],[11,12,["G1722"]],[12,13,["G5213"]],[13,14,["G2532"]],[14,15,["G5210"]],[15,16,["G1722"]],[16,17,["G846"]],[17,18,["G2596"]],[18,20,["G3588"]],[20,21,["G5485"]],[21,23,["G2257"]],[23,24,["G2316"]],[24,25,["G2532"]],[25,27,["G2962"]],[27,28,["G2424"]],[28,29,["G5547"]]]},{"k":29662,"v":[[0,1,["G1161"]],[1,3,["G2065"]],[3,4,["G5209"]],[4,5,["G80"]],[5,6,["G5228"]],[6,7,["G3588"]],[7,8,["G3952"]],[8,10,["G2257"]],[10,11,["G2962"]],[11,12,["G2424"]],[12,13,["G5547"]],[13,14,["G2532"]],[14,16,["G2257"]],[16,18,["G1997"]],[18,19,["G1909"]],[19,20,["G846"]]]},{"k":29663,"v":[[0,2,["G5209"]],[2,4,["G3361"]],[4,5,["G5030"]],[5,6,["G4531"]],[6,7,["G575"]],[7,8,["G3563"]],[8,9,["G3383"]],[9,11,["G2360"]],[11,12,["G3383"]],[12,13,["G1223"]],[13,14,["G4151"]],[14,15,["G3383"]],[15,16,["G1223"]],[16,17,["G3056"]],[17,18,["G3383"]],[18,19,["G1223"]],[19,20,["G1992"]],[20,21,["G5613"]],[21,22,["G1223"]],[22,23,["G2257"]],[23,25,["G3754"]],[25,26,["G3588"]],[26,27,["G2250"]],[27,29,["G5547"]],[29,32,["G1764"]]]},{"k":29664,"v":[[0,2,["G3361"]],[2,3,["G5100"]],[3,4,["G1818"]],[4,5,["G5209"]],[5,6,["G2596"]],[6,7,["G3367"]],[7,8,["G5158"]],[8,9,["G3754"]],[9,15,["G3362"]],[15,17,["G2064"]],[17,20,["G646"]],[20,21,["G4412"]],[21,22,["G2532"]],[22,24,["G444"]],[24,26,["G266"]],[26,28,["G601"]],[28,29,["G3588"]],[29,30,["G5207"]],[30,32,["G684"]]]},{"k":29665,"v":[[0,2,["G480"]],[2,3,["G2532"]],[3,5,["G5229"]],[5,6,["G1909"]],[6,7,["G3956"]],[7,10,["G3004"]],[10,11,["G2316"]],[11,12,["G2228"]],[12,15,["G4574"]],[15,17,["G5620"]],[17,18,["G846"]],[18,19,["G5613"]],[19,20,["G2316"]],[20,21,["G2523"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G3485"]],[24,26,["G2316"]],[26,27,["G584"]],[27,28,["G1438"]],[28,29,["G3754"]],[29,31,["G2076"]],[31,32,["G2316"]]]},{"k":29666,"v":[[0,1,["G3421"]],[1,3,["G3756"]],[3,4,["G3754"]],[4,7,["G5607"]],[7,8,["G2089"]],[8,9,["G4314"]],[9,10,["G5209"]],[10,12,["G3004"]],[12,13,["G5213"]],[13,15,["G5023"]]]},{"k":29667,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,4,["G1492"]],[4,6,["G2722"]],[6,8,["G846"]],[8,11,["G601"]],[11,12,["G1722"]],[12,13,["G1438"]],[13,14,["G2540"]]]},{"k":29668,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3466"]],[3,5,["G458"]],[5,7,["G2235"]],[7,8,["G1754"]],[8,9,["G3440"]],[9,13,["G2722","G737"]],[13,16,["G2193"]],[16,19,["G1096"]],[19,21,["G1537"]],[21,23,["G3319"]]]},{"k":29669,"v":[[0,1,["G2532"]],[1,2,["G5119"]],[2,5,["G459"]],[5,7,["G601"]],[7,8,["G3739"]],[8,9,["G3588"]],[9,10,["G2962"]],[10,12,["G355"]],[12,14,["G3588"]],[14,15,["G4151"]],[15,17,["G848"]],[17,18,["G4750"]],[18,19,["G2532"]],[19,21,["G2673"]],[21,23,["G3588"]],[23,24,["G2015"]],[24,26,["G848"]],[26,27,["G3952"]]]},{"k":29670,"v":[[0,3,["G3739"]],[3,4,["G3952"]],[4,5,["G2076"]],[5,6,["G2596"]],[6,8,["G1753"]],[8,10,["G4567"]],[10,11,["G1722"]],[11,12,["G3956"]],[12,13,["G1411"]],[13,14,["G2532"]],[14,15,["G4592"]],[15,16,["G2532"]],[16,17,["G5579"]],[17,18,["G5059"]]]},{"k":29671,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G3956"]],[3,4,["G539"]],[4,6,["G93"]],[6,7,["G1722"]],[7,10,["G622"]],[10,11,["G473","G3739"]],[11,13,["G1209"]],[13,14,["G3756"]],[14,15,["G3588"]],[15,16,["G26"]],[16,18,["G3588"]],[18,19,["G225"]],[19,21,["G846"]],[21,24,["G4982"]]]},{"k":29672,"v":[[0,1,["G2532"]],[1,4,["G1223","G5124"]],[4,5,["G2316"]],[5,7,["G3992"]],[7,8,["G846"]],[8,10,["G1753","G4106"]],[10,12,["G846"]],[12,14,["G4100"]],[14,16,["G5579"]]]},{"k":29673,"v":[[0,1,["G2443"]],[1,3,["G3956"]],[3,6,["G2919"]],[6,8,["G4100"]],[8,9,["G3361"]],[9,10,["G3588"]],[10,11,["G225"]],[11,12,["G235"]],[12,14,["G2106"]],[14,15,["G1722"]],[15,16,["G93"]]]},{"k":29674,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,4,["G3784"]],[4,7,["G2168"]],[7,8,["G3842"]],[8,10,["G2316"]],[10,11,["G4012"]],[11,12,["G5216"]],[12,13,["G80"]],[13,14,["G25"]],[14,15,["G5259"]],[15,17,["G2962"]],[17,18,["G3754"]],[18,19,["G2316"]],[19,21,["G575"]],[21,23,["G746"]],[23,24,["G138"]],[24,25,["G5209"]],[25,26,["G1519"]],[26,27,["G4991"]],[27,28,["G1722"]],[28,29,["G38"]],[29,32,["G4151"]],[32,33,["G2532"]],[33,34,["G4102"]],[34,37,["G225"]]]},{"k":29675,"v":[[0,1,["G1519","G3739"]],[1,3,["G2564"]],[3,4,["G5209"]],[4,5,["G1223"]],[5,6,["G2257"]],[6,7,["G2098"]],[7,8,["G1519"]],[8,10,["G4047"]],[10,13,["G1391"]],[13,15,["G2257"]],[15,16,["G2962"]],[16,17,["G2424"]],[17,18,["G5547"]]]},{"k":29676,"v":[[0,1,["G686","G3767"]],[1,2,["G80"]],[2,4,["G4739"]],[4,5,["G2532"]],[5,6,["G2902"]],[6,7,["G3588"]],[7,8,["G3862"]],[8,9,["G3739"]],[9,13,["G1321"]],[13,14,["G1535"]],[14,15,["G1223"]],[15,16,["G3056"]],[16,17,["G1535","(G1223)"]],[17,18,["G2257"]],[18,19,["G1992"]]]},{"k":29677,"v":[[0,1,["G1161"]],[1,2,["G2257"]],[2,3,["G2962"]],[3,4,["G2424"]],[4,5,["G5547"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G2316"]],[8,9,["G2532"]],[9,10,["G2257"]],[10,11,["G3962"]],[11,14,["G25"]],[14,15,["G2248"]],[15,16,["G2532"]],[16,18,["G1325"]],[18,20,["G166"]],[20,21,["G3874"]],[21,22,["G2532"]],[22,23,["G18"]],[23,24,["G1680"]],[24,25,["G1722"]],[25,26,["G5485"]]]},{"k":29678,"v":[[0,1,["G3870"]],[1,2,["G5216"]],[2,3,["G2588"]],[3,4,["G2532"]],[4,5,["G4741"]],[5,6,["G5209"]],[6,7,["G1722"]],[7,8,["G3956"]],[8,9,["G18"]],[9,10,["G3056"]],[10,11,["G2532"]],[11,12,["G2041"]]]},{"k":29679,"v":[[0,1,["G3063"]],[1,2,["G80"]],[2,3,["G4336"]],[3,4,["G4012"]],[4,5,["G2257"]],[5,6,["G2443"]],[6,7,["G3588"]],[7,8,["G3056"]],[8,10,["G3588"]],[10,11,["G2962"]],[11,15,["G5143"]],[15,16,["G2532"]],[16,18,["G1392"]],[18,19,["G2532"]],[19,20,["G2531"]],[20,23,["G4314"]],[23,24,["G5209"]]]},{"k":29680,"v":[[0,1,["G2532"]],[1,2,["G2443"]],[2,6,["G4506"]],[6,7,["G575"]],[7,8,["G824"]],[8,9,["G2532"]],[9,10,["G4190"]],[10,11,["G444"]],[11,12,["G1063"]],[12,13,["G3956"]],[13,16,["G3756"]],[16,17,["G4102"]]]},{"k":29681,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2076"]],[4,5,["G4103"]],[5,6,["G3739"]],[6,8,["G4741"]],[8,9,["G5209"]],[9,10,["G2532"]],[10,11,["G5442"]],[11,13,["G575"]],[13,14,["G4190"]]]},{"k":29682,"v":[[0,1,["G1161"]],[1,4,["G3982"]],[4,5,["G1722"]],[5,7,["G2962"]],[7,8,["G1909"]],[8,9,["G5209"]],[9,10,["G3754"]],[10,12,["G2532"]],[12,13,["G4160"]],[13,14,["G2532"]],[14,16,["G4160"]],[16,19,["G3739"]],[19,21,["G3853"]],[21,22,["G5213"]]]},{"k":29683,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2720"]],[4,5,["G5216"]],[5,6,["G2588"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G26"]],[9,11,["G2316"]],[11,12,["G2532"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,16,["G5281"]],[16,18,["G5547"]]]},{"k":29684,"v":[[0,1,["G1161"]],[1,3,["G3853"]],[3,4,["G5213"]],[4,5,["G80"]],[5,6,["G1722"]],[6,8,["G3686"]],[8,10,["G2257"]],[10,11,["G2962"]],[11,12,["G2424"]],[12,13,["G5547"]],[13,15,["G5209"]],[15,17,["G4724"]],[17,18,["G575"]],[18,19,["G3956"]],[19,20,["G80"]],[20,22,["G4043"]],[22,23,["G814"]],[23,24,["G2532"]],[24,25,["G3361"]],[25,26,["G2596"]],[26,27,["G3588"]],[27,28,["G3862"]],[28,29,["G3739"]],[29,31,["G3880"]],[31,32,["G3844"]],[32,33,["G2257"]]]},{"k":29685,"v":[[0,1,["G1063"]],[1,2,["G846"]],[2,3,["G1492"]],[3,4,["G4459"]],[4,6,["G1163"]],[6,8,["G3401"]],[8,9,["G2248"]],[9,10,["G3754"]],[10,15,["G812","G3756"]],[15,16,["G1722"]],[16,17,["G5213"]]]},{"k":29686,"v":[[0,1,["G3761"]],[1,4,["G5315"]],[4,5,["(G3844)"]],[5,6,["G5100"]],[6,7,["G740"]],[7,9,["G1432"]],[9,10,["G235"]],[10,11,["G2038"]],[11,12,["G1722"]],[12,13,["G2873"]],[13,14,["G2532"]],[14,15,["G3449"]],[15,16,["G3571"]],[16,17,["G2532"]],[17,18,["G2250"]],[18,22,["G3361"]],[22,24,["G1912"]],[24,26,["G5100"]],[26,28,["G5216"]]]},{"k":29687,"v":[[0,1,["G3756"]],[1,2,["G3754"]],[2,4,["G2192"]],[4,5,["G3756"]],[5,6,["G1849"]],[6,7,["G235"]],[7,8,["G2443"]],[8,9,["G1325"]],[9,10,["G1438"]],[10,12,["G5179"]],[12,14,["G5213"]],[14,16,["G3401"]],[16,17,["G2248"]]]},{"k":29688,"v":[[0,1,["G1063"]],[1,2,["G2532"]],[2,3,["G3753"]],[3,5,["G2258"]],[5,6,["G4314"]],[6,7,["G5209"]],[7,8,["G5124"]],[8,10,["G3853"]],[10,11,["G5213"]],[11,12,["G3754"]],[12,14,["G1536"]],[14,15,["G2309"]],[15,16,["G3756"]],[16,17,["G2038"]],[17,18,["G3366"]],[18,21,["G2068"]]]},{"k":29689,"v":[[0,1,["G1063"]],[1,3,["G191"]],[3,7,["G5100"]],[7,9,["G4043"]],[9,10,["G1722"]],[10,11,["G5213"]],[11,12,["G814"]],[12,13,["G2038"]],[13,16,["G3367"]],[16,17,["G235"]],[17,19,["G4020"]]]},{"k":29690,"v":[[0,1,["G1161"]],[1,5,["G5108"]],[5,7,["G3853"]],[7,8,["G2532"]],[8,9,["G3870"]],[9,10,["G1223"]],[10,11,["G2257"]],[11,12,["G2962"]],[12,13,["G2424"]],[13,14,["G5547"]],[14,15,["G2443"]],[15,16,["G3326"]],[16,17,["G2271"]],[17,19,["G2038"]],[19,21,["G2068"]],[21,23,["G1438"]],[23,24,["G740"]]]},{"k":29691,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G80"]],[3,6,["G1573","G3361"]],[6,9,["G2569"]]]},{"k":29692,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G5100"]],[4,5,["G5219"]],[5,6,["G3756"]],[6,7,["G2257"]],[7,8,["G3056"]],[8,9,["G1223"]],[9,11,["G1992"]],[11,12,["G4593"]],[12,14,["G5126"]],[14,15,["G2532"]],[15,18,["G4874","G3361"]],[18,20,["G846"]],[20,21,["G2443"]],[21,25,["G1788"]]]},{"k":29693,"v":[[0,1,["G2532"]],[1,2,["G2233"]],[2,4,["G3361"]],[4,5,["G5613"]],[5,7,["G2190"]],[7,8,["G235"]],[8,9,["G3560"]],[9,11,["G5613"]],[11,13,["G80"]]]},{"k":29694,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,5,["G1515"]],[5,6,["G846"]],[6,7,["G1325"]],[7,8,["G5213"]],[8,9,["G1515"]],[9,10,["G1223","G3956"]],[10,11,["G1722"]],[11,12,["G3956"]],[12,13,["G5158"]],[13,14,["G3588"]],[14,15,["G2962"]],[15,17,["G3326"]],[17,18,["G5216"]],[18,19,["G3956"]]]},{"k":29695,"v":[[0,1,["G3588"]],[1,2,["G783"]],[2,4,["G3972"]],[4,7,["G1699"]],[7,8,["G5495"]],[8,9,["G3739"]],[9,10,["G2076"]],[10,12,["G4592"]],[12,13,["G1722"]],[13,14,["G3956"]],[14,15,["G1992"]],[15,16,["G3779"]],[16,18,["G1125"]]]},{"k":29696,"v":[[0,1,["G3588"]],[1,2,["G5485"]],[2,4,["G2257"]],[4,5,["G2962"]],[5,6,["G2424"]],[6,7,["G5547"]],[7,9,["G3326"]],[9,10,["G5216"]],[10,11,["G3956"]],[11,12,["G281"]]]},{"k":29697,"v":[[0,1,["G3972"]],[1,3,["G652"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,7,["G2596"]],[7,9,["G2003"]],[9,11,["G2316"]],[11,12,["G2257"]],[12,13,["G4990"]],[13,14,["G2532"]],[14,15,["G2962"]],[15,16,["G2424"]],[16,17,["G5547"]],[17,20,["G2257"]],[20,21,["G1680"]]]},{"k":29698,"v":[[0,2,["G5095"]],[2,4,["G1103"]],[4,5,["G5043"]],[5,6,["G1722"]],[6,8,["G4102"]],[8,9,["G5485"]],[9,10,["G1656"]],[10,12,["G1515"]],[12,13,["G575"]],[13,14,["G2316"]],[14,15,["G2257"]],[15,16,["G3962"]],[16,17,["G2532"]],[17,18,["G2424"]],[18,19,["G5547"]],[19,20,["G2257"]],[20,21,["G2962"]]]},{"k":29699,"v":[[0,1,["G2531"]],[1,3,["G3870"]],[3,4,["G4571"]],[4,7,["G4357"]],[7,8,["G1722"]],[8,9,["G2181"]],[9,12,["G4198"]],[12,13,["G1519"]],[13,14,["G3109"]],[14,15,["G2443"]],[15,18,["G3853"]],[18,19,["G5100"]],[19,25,["G2085","G3361"]]]},{"k":29700,"v":[[0,1,["G3366"]],[1,3,["G4337"]],[3,5,["G3454"]],[5,6,["G2532"]],[6,7,["G562"]],[7,8,["G1076"]],[8,9,["G3748"]],[9,10,["G3930"]],[10,11,["G2214"]],[11,12,["G3123"]],[12,13,["G2228"]],[13,14,["G2316"]],[14,15,["G3622"]],[15,16,["G3588"]],[16,18,["G1722"]],[18,19,["G4102"]],[19,21,[]]]},{"k":29701,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5056"]],[3,5,["G3588"]],[5,6,["G3852"]],[6,7,["G2076"]],[7,8,["G26"]],[8,10,["G1537"]],[10,12,["G2513"]],[12,13,["G2588"]],[13,14,["G2532"]],[14,17,["G18"]],[17,18,["G4893"]],[18,19,["G2532"]],[19,21,["G4102"]],[21,22,["G505"]]]},{"k":29702,"v":[[0,2,["G3739"]],[2,3,["G5100"]],[3,5,["G795"]],[5,8,["G1624"]],[8,9,["G1519"]],[9,11,["G3150"]]]},{"k":29703,"v":[[0,1,["G2309"]],[1,3,["G1511"]],[3,7,["G3547"]],[7,8,["(G3539)"]],[8,9,["G3383"]],[9,10,["G3739"]],[10,12,["G3004"]],[12,13,["G3383"]],[13,14,["G4012","G5101"]],[14,16,["G1226"]]]},{"k":29704,"v":[[0,1,["G1161"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G3588"]],[5,6,["G3551"]],[6,8,["G2570"]],[8,9,["G1437"]],[9,11,["G5100"]],[11,12,["G5530"]],[12,13,["G846"]],[13,14,["G3545"]]]},{"k":29705,"v":[[0,1,["G1492"]],[1,2,["G5124"]],[2,3,["G3754"]],[3,5,["G3551"]],[5,7,["G3756"]],[7,8,["G2749"]],[8,12,["G1342"]],[12,13,["G1161"]],[13,16,["G459"]],[16,17,["G2532"]],[17,18,["G506"]],[18,21,["G765"]],[21,22,["G2532"]],[22,24,["G268"]],[24,26,["G462"]],[26,27,["G2532"]],[27,28,["G952"]],[28,32,["G3964"]],[32,33,["G2532"]],[33,36,["G3389"]],[36,38,["G409"]]]},{"k":29706,"v":[[0,2,["G4205"]],[2,9,["G733"]],[9,11,["G405"]],[11,13,["G5583"]],[13,16,["G1965"]],[16,17,["G2532"]],[17,21,["G1536"]],[21,23,["G2087"]],[23,26,["G480"]],[26,28,["G5198"]],[28,29,["G1319"]]]},{"k":29707,"v":[[0,1,["G2596"]],[1,3,["G3588"]],[3,4,["G1391"]],[4,5,["G2098"]],[5,7,["G3588"]],[7,8,["G3107"]],[8,9,["G2316"]],[9,10,["G3739"]],[10,12,["G4100"]],[12,15,["G1473"]]]},{"k":29708,"v":[[0,1,["G2532"]],[1,3,["G2192","G5485"]],[3,4,["G5547"]],[4,5,["G2424"]],[5,6,["G2257"]],[6,7,["G2962"]],[7,10,["G1743"]],[10,11,["G3165"]],[11,13,["G3754"]],[13,15,["G2233"]],[15,16,["G3165"]],[16,17,["G4103"]],[17,18,["G5087"]],[18,20,["G1519"]],[20,22,["G1248"]]]},{"k":29709,"v":[[0,2,["G5607"]],[2,3,["G4386"]],[3,5,["G989"]],[5,6,["G2532"]],[6,8,["G1376"]],[8,9,["G2532"]],[9,10,["G5197"]],[10,11,["G235"]],[11,14,["G1653"]],[14,15,["G3754"]],[15,17,["G4160"]],[17,19,["G50"]],[19,20,["G1722"]],[20,21,["G570"]]]},{"k":29710,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5485"]],[3,5,["G2257"]],[5,6,["G2962"]],[6,9,["G5250"]],[9,10,["G3326"]],[10,11,["G4102"]],[11,12,["G2532"]],[12,13,["G26"]],[13,14,["G3588"]],[14,16,["G1722"]],[16,17,["G5547"]],[17,18,["G2424"]]]},{"k":29711,"v":[[0,4,["G4103"]],[4,5,["G3056"]],[5,6,["G2532"]],[6,7,["G514"]],[7,9,["G3956"]],[9,10,["G594"]],[10,11,["G3754"]],[11,12,["G5547"]],[12,13,["G2424"]],[13,14,["G2064"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G2889"]],[17,19,["G4982"]],[19,20,["G268"]],[20,22,["G3739"]],[22,23,["G1473"]],[23,24,["G1510"]],[24,25,["G4413"]]]},{"k":29712,"v":[[0,1,["G235"]],[1,4,["G1223","G5124"]],[4,7,["G1653"]],[7,8,["G2443"]],[8,9,["G1722"]],[9,10,["G1698"]],[10,11,["G4413"]],[11,12,["G2424"]],[12,13,["G5547"]],[13,16,["G1731"]],[16,17,["G3956"]],[17,18,["G3115"]],[18,19,["G4314"]],[19,21,["G5296"]],[21,26,["G3195"]],[26,27,["G4100"]],[27,28,["G1909"]],[28,29,["G846"]],[29,30,["G1519"]],[30,31,["G2222"]],[31,32,["G166"]]]},{"k":29713,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G935"]],[4,5,["G165"]],[5,6,["G862"]],[6,7,["G517"]],[7,9,["G3441"]],[9,10,["G4680"]],[10,11,["G2316"]],[11,13,["G5092"]],[13,14,["G2532"]],[14,15,["G1391"]],[15,19,["G1519","G165","G165"]],[19,20,["G281"]]]},{"k":29714,"v":[[0,1,["G5026"]],[1,2,["G3852"]],[2,4,["G3908"]],[4,6,["G4671"]],[6,7,["G5043"]],[7,8,["G5095"]],[8,9,["G2596"]],[9,11,["G3588"]],[11,12,["G4394"]],[12,15,["G4254"]],[15,16,["G1909"]],[16,17,["G4571"]],[17,18,["G2443"]],[18,20,["G1722"]],[20,21,["G846"]],[21,23,["G4754"]],[23,25,["G2570"]],[25,26,["G4752"]]]},{"k":29715,"v":[[0,1,["G2192"]],[1,2,["G4102"]],[2,3,["G2532"]],[3,5,["G18"]],[5,6,["G4893"]],[6,7,["G3739"]],[7,8,["G5100"]],[8,11,["G683"]],[11,12,["G4012"]],[12,13,["G4102"]],[13,16,["G3489"]]]},{"k":29716,"v":[[0,2,["G3739"]],[2,3,["G2076"]],[3,4,["G5211"]],[4,5,["G2532"]],[5,6,["G223"]],[6,7,["G3739"]],[7,10,["G3860"]],[10,12,["G4567"]],[12,13,["G2443"]],[13,16,["G3811"]],[16,17,["G3361"]],[17,19,["G987"]]]},{"k":29717,"v":[[0,2,["G3870"]],[2,3,["G3767"]],[3,5,["G4412"]],[5,7,["G3956"]],[7,8,["G1162"]],[8,9,["G4335"]],[9,10,["G1783"]],[10,14,["G2169"]],[14,16,["G4160"]],[16,17,["G5228"]],[17,18,["G3956"]],[18,19,["G444"]]]},{"k":29718,"v":[[0,1,["G5228"]],[1,2,["G935"]],[2,3,["G2532"]],[3,5,["G3956"]],[5,7,["G5607"]],[7,8,["G1722"]],[8,9,["G5247"]],[9,10,["G2443"]],[10,13,["G1236"]],[13,15,["G2263"]],[15,16,["G2532"]],[16,17,["G2272"]],[17,18,["G979"]],[18,19,["G1722"]],[19,20,["G3956"]],[20,21,["G2150"]],[21,22,["G2532"]],[22,23,["G4587"]]]},{"k":29719,"v":[[0,1,["G1063"]],[1,2,["G5124"]],[2,4,["G2570"]],[4,5,["G2532"]],[5,6,["G587"]],[6,9,["G1799"]],[9,11,["G2316"]],[11,12,["G2257"]],[12,13,["G4990"]]]},{"k":29720,"v":[[0,1,["G3739"]],[1,2,["G2309"]],[2,4,["G3956"]],[4,5,["G444"]],[5,8,["G4982"]],[8,9,["G2532"]],[9,11,["G2064"]],[11,12,["G1519"]],[12,14,["G1922"]],[14,17,["G225"]]]},{"k":29721,"v":[[0,1,["G1063"]],[1,4,["G1520"]],[4,5,["G2316"]],[5,6,["G2532"]],[6,7,["G1520"]],[7,8,["G3316"]],[8,10,["G2316"]],[10,11,["G2532"]],[11,12,["G444"]],[12,14,["G444"]],[14,15,["G5547"]],[15,16,["G2424"]]]},{"k":29722,"v":[[0,2,["G1325"]],[2,3,["G1438"]],[3,5,["G487"]],[5,6,["G5228"]],[6,7,["G3956"]],[7,10,["G3142"]],[10,12,["G2398"]],[12,13,["G2540"]]]},{"k":29723,"v":[[0,1,["G1519","G3739"]],[1,2,["G1473"]],[2,4,["G5087"]],[4,6,["G2783"]],[6,7,["G2532"]],[7,9,["G652"]],[9,11,["G3004"]],[11,13,["G225"]],[13,14,["G1722"]],[14,15,["G5547"]],[15,17,["G5574"]],[17,18,["G3756"]],[18,20,["G1320"]],[20,23,["G1484"]],[23,24,["G1722"]],[24,25,["G4102"]],[25,26,["G2532"]],[26,27,["G225"]]]},{"k":29724,"v":[[0,2,["G1014"]],[2,3,["G3767"]],[3,5,["G435"]],[5,6,["G4336"]],[6,7,["G3956"]],[7,8,["G5117"]],[8,10,["G1869"]],[10,11,["G3741"]],[11,12,["G5495"]],[12,13,["G5565"]],[13,14,["G3709"]],[14,15,["G2532"]],[15,16,["G1261"]]]},{"k":29725,"v":[[0,3,["G5615"]],[3,4,["G2532"]],[4,6,["G1135"]],[6,7,["G2885"]],[7,8,["G1438"]],[8,9,["G1722"]],[9,10,["G2887"]],[10,11,["G2689"]],[11,12,["G3326"]],[12,13,["G127"]],[13,14,["G2532"]],[14,15,["G4997"]],[15,16,["G3361"]],[16,17,["G1722"]],[17,19,["G4117"]],[19,20,["G2228"]],[20,21,["G5557"]],[21,22,["G2228"]],[22,23,["G3135"]],[23,24,["G2228"]],[24,25,["G4185"]],[25,26,["G2441"]]]},{"k":29726,"v":[[0,1,["G235"]],[1,2,["G3739"]],[2,3,["G4241"]],[3,4,["G1135"]],[4,5,["G1861"]],[5,6,["G2317"]],[6,7,["G1223"]],[7,8,["G18"]],[8,9,["G2041"]]]},{"k":29727,"v":[[0,3,["G1135"]],[3,4,["G3129"]],[4,5,["G1722"]],[5,6,["G2271"]],[6,7,["G1722"]],[7,8,["G3956"]],[8,9,["G5292"]]]},{"k":29728,"v":[[0,1,["G1161"]],[1,3,["G2010"]],[3,4,["G3756"]],[4,6,["G1135"]],[6,8,["G1321"]],[8,9,["G3761"]],[9,13,["G831"]],[13,15,["G435"]],[15,16,["G235"]],[16,18,["G1511"]],[18,19,["G1722"]],[19,20,["G2271"]]]},{"k":29729,"v":[[0,1,["G1063"]],[1,2,["G76"]],[2,4,["G4413"]],[4,5,["G4111"]],[5,6,["G1534"]],[6,7,["G2096"]]]},{"k":29730,"v":[[0,1,["G2532"]],[1,2,["G76"]],[2,4,["G3756"]],[4,5,["G538"]],[5,6,["G1161"]],[6,7,["G3588"]],[7,8,["G1135"]],[8,10,["G538"]],[10,11,["G1096"]],[11,12,["G1722"]],[12,14,["G3847"]]]},{"k":29731,"v":[[0,1,["G1161"]],[1,5,["G4982"]],[5,6,["G1223"]],[6,7,["G5042"]],[7,8,["G1437"]],[8,10,["G3306"]],[10,11,["G1722"]],[11,12,["G4102"]],[12,13,["G2532"]],[13,14,["G26"]],[14,15,["G2532"]],[15,16,["G38"]],[16,17,["G3326"]],[17,18,["G4997"]]]},{"k":29732,"v":[[0,4,["G4103"]],[4,5,["G3056"]],[5,8,["G1536"]],[8,9,["G3713"]],[9,14,["G1984"]],[14,16,["G1937"]],[16,18,["G2570"]],[18,19,["G2041"]]]},{"k":29733,"v":[[0,2,["G1985"]],[2,3,["G3767"]],[3,4,["G1163"]],[4,5,["G1511"]],[5,6,["G423"]],[6,8,["G435"]],[8,10,["G3391"]],[10,11,["G1135"]],[11,12,["G3524"]],[12,13,["G4998"]],[13,16,["G2887"]],[16,19,["G5382"]],[19,22,["G1317"]]]},{"k":29734,"v":[[0,1,["G3361"]],[1,4,["G3943"]],[4,5,["G3361"]],[5,6,["G4131"]],[6,7,["G3361"]],[7,11,["G146"]],[11,12,["G235"]],[12,13,["G1933"]],[13,16,["G269"]],[16,18,["G866"]]]},{"k":29735,"v":[[0,3,["G4291"]],[3,4,["G2573"]],[4,6,["G2398"]],[6,7,["G3624"]],[7,8,["G2192"]],[8,10,["G5043"]],[10,11,["G1722"]],[11,12,["G5292"]],[12,13,["G3326"]],[13,14,["G3956"]],[14,15,["G4587"]]]},{"k":29736,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G5100"]],[4,5,["G1492"]],[5,6,["G3756"]],[6,9,["G4291"]],[9,11,["G2398"]],[11,12,["G3624"]],[12,13,["G4459"]],[13,18,["G1959"]],[18,20,["G1577"]],[20,22,["G2316"]]]},{"k":29737,"v":[[0,1,["G3361"]],[1,3,["G3504"]],[3,4,["G3363"]],[4,9,["G5187"]],[9,11,["G1706"]],[11,12,["G1519"]],[12,14,["G2917"]],[14,16,["G3588"]],[16,17,["G1228"]]]},{"k":29738,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G1163","(G2532)"]],[3,4,["G2192"]],[4,6,["G2570"]],[6,7,["G3141"]],[7,8,["G575"]],[8,12,["G1855"]],[12,13,["G3363"]],[13,15,["G1706"]],[15,16,["G1519"]],[16,17,["G3680"]],[17,18,["G2532"]],[18,20,["G3803"]],[20,22,["G3588"]],[22,23,["G1228"]]]},{"k":29739,"v":[[0,1,["G5615"]],[1,4,["G1249"]],[4,6,["G4586"]],[6,7,["G3361"]],[7,8,["G1351"]],[8,9,["G3361"]],[9,10,["G4337"]],[10,12,["G4183"]],[12,13,["G3631"]],[13,14,["G3361"]],[14,18,["G146"]]]},{"k":29740,"v":[[0,1,["G2192"]],[1,2,["G3588"]],[2,3,["G3466"]],[3,5,["G3588"]],[5,6,["G4102"]],[6,7,["G1722"]],[7,9,["G2513"]],[9,10,["G4893"]]]},{"k":29741,"v":[[0,1,["G2532"]],[1,3,["G3778"]],[3,4,["G1161"]],[4,5,["G4412"]],[5,7,["G1381"]],[7,8,["G1534"]],[8,16,["G1247"]],[16,17,["G5607"]],[17,19,["G410"]]]},{"k":29742,"v":[[0,2,["G5615"]],[2,5,["G1135"]],[5,7,["G4586"]],[7,8,["G3361"]],[8,9,["G1228"]],[9,10,["G3524"]],[10,11,["G4103"]],[11,12,["G1722"]],[12,14,["G3956"]]]},{"k":29743,"v":[[0,3,["G1249"]],[3,4,["G2077"]],[4,6,["G435"]],[6,8,["G3391"]],[8,9,["G1135"]],[9,10,["G4291"]],[10,12,["G5043"]],[12,13,["G2532"]],[13,15,["G2398"]],[15,16,["G3624"]],[16,17,["G2573"]]]},{"k":29744,"v":[[0,1,["G1063"]],[1,10,["G1247"]],[10,11,["G2573"]],[11,12,["G4046"]],[12,14,["G1438"]],[14,16,["G2570"]],[16,17,["G898"]],[17,18,["G2532"]],[18,19,["G4183"]],[19,20,["G3954"]],[20,21,["G1722"]],[21,23,["G4102"]],[23,24,["G3588"]],[24,26,["G1722"]],[26,27,["G5547"]],[27,28,["G2424"]]]},{"k":29745,"v":[[0,2,["G5023"]],[2,3,["G1125"]],[3,6,["G4671"]],[6,7,["G1679"]],[7,9,["G2064"]],[9,10,["G4314"]],[10,11,["G4571"]],[11,12,["G5032"]]]},{"k":29746,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,5,["G1019"]],[5,6,["G2443"]],[6,9,["G1492"]],[9,10,["G4459"]],[10,12,["G1163"]],[12,15,["G390"]],[15,16,["G1722"]],[16,18,["G3624"]],[18,20,["G2316"]],[20,21,["G3748"]],[21,22,["G2076"]],[22,24,["G1577"]],[24,27,["G2198"]],[27,28,["G2316"]],[28,30,["G4769"]],[30,31,["G2532"]],[31,32,["G1477"]],[32,34,["G3588"]],[34,35,["G225"]]]},{"k":29747,"v":[[0,1,["G2532"]],[1,3,["G3672"]],[3,4,["G3173"]],[4,5,["G2076"]],[5,6,["G3588"]],[6,7,["G3466"]],[7,9,["G2150"]],[9,10,["G2316"]],[10,12,["G5319"]],[12,13,["G1722"]],[13,15,["G4561"]],[15,16,["G1344"]],[16,17,["G1722"]],[17,19,["G4151"]],[19,20,["G3700"]],[20,22,["G32"]],[22,23,["G2784"]],[23,24,["G1722"]],[24,26,["G1484"]],[26,28,["G4100"]],[28,29,["G1722"]],[29,31,["G2889"]],[31,33,["G353"]],[33,34,["G1722"]],[34,35,["G1391"]]]},{"k":29748,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4151"]],[3,4,["G3004"]],[4,5,["G4490"]],[5,6,["G3754"]],[6,7,["G1722"]],[7,9,["G5306"]],[9,10,["G2540"]],[10,11,["G5100"]],[11,13,["G868"]],[13,15,["G3588"]],[15,16,["G4102"]],[16,18,["G4337"]],[18,20,["G4108"]],[20,21,["G4151"]],[21,22,["G2532"]],[22,23,["G1319"]],[23,25,["G1140"]]]},{"k":29749,"v":[[0,2,["G5573"]],[2,3,["G1722"]],[3,4,["G5272"]],[4,6,["G2398"]],[6,7,["G4893"]],[7,12,["G2743"]]]},{"k":29750,"v":[[0,1,["G2967"]],[1,3,["G1060"]],[3,7,["G567"]],[7,9,["G1033"]],[9,10,["G3739"]],[10,11,["G2316"]],[11,13,["G2936"]],[13,16,["G1519","G3336"]],[16,17,["G3326"]],[17,18,["G2169"]],[18,22,["G4103"]],[22,23,["G2532"]],[23,24,["G1921"]],[24,25,["G3588"]],[25,26,["G225"]]]},{"k":29751,"v":[[0,1,["G3754"]],[1,2,["G3956"]],[2,3,["G2938"]],[3,5,["G2316"]],[5,7,["G2570"]],[7,8,["G2532"]],[8,9,["G3762"]],[9,12,["G579"]],[12,16,["G2983"]],[16,17,["G3326"]],[17,18,["G2169"]]]},{"k":29752,"v":[[0,1,["G1063"]],[1,4,["G37"]],[4,5,["G1223"]],[5,7,["G3056"]],[7,9,["G2316"]],[9,10,["G2532"]],[10,11,["G1783"]]]},{"k":29753,"v":[[0,7,["G5294","G3588","G80"]],[7,10,["G5023"]],[10,13,["G2071"]],[13,15,["G2570"]],[15,16,["G1249"]],[16,18,["G2424"]],[18,19,["G5547"]],[19,21,["G1789"]],[21,23,["G3588"]],[23,24,["G3056"]],[24,26,["G4102"]],[26,27,["G2532"]],[27,29,["G2570"]],[29,30,["G1319"]],[30,31,["G3739"]],[31,34,["G3877"]]]},{"k":29754,"v":[[0,1,["G1161"]],[1,2,["G3868"]],[2,3,["G952"]],[3,4,["G2532"]],[4,6,["G1126"]],[6,7,["G3454"]],[7,8,["G1161"]],[8,9,["G1128"]],[9,10,["G4572"]],[10,12,["G4314"]],[12,13,["G2150"]]]},{"k":29755,"v":[[0,1,["G1063"]],[1,2,["G4984"]],[2,3,["G1129"]],[3,4,["G2076","G5624"]],[4,5,["(G3641)"]],[5,6,["G1161"]],[6,7,["G2150"]],[7,8,["G2076"]],[8,9,["G5624"]],[9,10,["G4314"]],[10,12,["G3956"]],[12,13,["G2192"]],[13,14,["G1860"]],[14,17,["G2222"]],[17,20,["G3568"]],[20,21,["G2532"]],[21,27,["G3195"]]]},{"k":29756,"v":[[0,4,["G4103"]],[4,5,["G3056"]],[5,6,["G2532"]],[6,7,["G514"]],[7,9,["G3956"]],[9,10,["G594"]]]},{"k":29757,"v":[[0,1,["G1063"]],[1,2,["G1519","G5124"]],[2,4,["G2532"]],[4,5,["G2872"]],[5,6,["G2532"]],[6,8,["G3679"]],[8,9,["G3754"]],[9,11,["G1679"]],[11,12,["G1909"]],[12,14,["G2198"]],[14,15,["G2316"]],[15,16,["G3739"]],[16,17,["G2076"]],[17,19,["G4990"]],[19,21,["G3956"]],[21,22,["G444"]],[22,23,["G3122"]],[23,27,["G4103"]]]},{"k":29758,"v":[[0,2,["G5023"]],[2,3,["G3853"]],[3,4,["G2532"]],[4,5,["G1321"]]]},{"k":29759,"v":[[0,3,["G3367"]],[3,4,["G2706"]],[4,5,["G4675"]],[5,6,["G3503"]],[6,7,["G235"]],[7,8,["G1096"]],[8,11,["G5179"]],[11,13,["G3588"]],[13,14,["G4103"]],[14,15,["G1722"]],[15,16,["G3056"]],[16,17,["G1722"]],[17,18,["G391"]],[18,19,["G1722"]],[19,20,["G26"]],[20,21,["G1722"]],[21,22,["G4151"]],[22,23,["G1722"]],[23,24,["G4102"]],[24,25,["G1722"]],[25,26,["G47"]]]},{"k":29760,"v":[[0,1,["G2193"]],[1,3,["G2064"]],[3,5,["G4337"]],[5,7,["G320"]],[7,9,["G3874"]],[9,11,["G1319"]]]},{"k":29761,"v":[[0,1,["G272"]],[1,2,["G3361"]],[2,3,["G3588"]],[3,4,["G5486"]],[4,7,["G1722"]],[7,8,["G4671"]],[8,9,["G3739"]],[9,11,["G1325"]],[11,12,["G4671"]],[12,13,["G1223"]],[13,14,["G4394"]],[14,15,["G3326"]],[15,18,["G1936"]],[18,20,["G3588"]],[20,21,["G5495"]],[21,23,["G3588"]],[23,24,["G4244"]]]},{"k":29762,"v":[[0,2,["G3191"]],[2,4,["G5023"]],[4,7,["G2468"]],[7,8,["G1722"]],[8,9,["G5125"]],[9,10,["G2443"]],[10,11,["G4675"]],[11,12,["G4297"]],[12,14,["G5600","G5318"]],[14,15,["G1722"]],[15,16,["G3956"]]]},{"k":29763,"v":[[0,2,["G1907"]],[2,4,["G4572"]],[4,5,["G2532"]],[5,7,["G3588"]],[7,8,["G1319"]],[8,9,["G1961"]],[9,11,["G846"]],[11,12,["G1063"]],[12,14,["G4160"]],[14,15,["G5124"]],[15,18,["G2532"]],[18,19,["G4982"]],[19,20,["G4572"]],[20,21,["G2532"]],[21,24,["G191"]],[24,25,["G4675"]]]},{"k":29764,"v":[[0,1,["G1969"]],[1,2,["G3361"]],[2,4,["G4245"]],[4,5,["G235"]],[5,6,["G3870"]],[6,8,["G5613"]],[8,10,["G3962"]],[10,14,["G3501"]],[14,15,["G5613"]],[15,16,["G80"]]]},{"k":29765,"v":[[0,3,["G4245"]],[3,4,["G5613"]],[4,5,["G3384"]],[5,7,["G3501"]],[7,8,["G5613"]],[8,9,["G79"]],[9,10,["G1722"]],[10,11,["G3956"]],[11,12,["G47"]]]},{"k":29766,"v":[[0,1,["G5091"]],[1,2,["G5503"]],[2,5,["G5503"]],[5,6,["G3689"]]]},{"k":29767,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5100"]],[3,4,["G5503"]],[4,5,["G2192"]],[5,6,["G5043"]],[6,7,["G2228"]],[7,8,["G1549"]],[8,11,["G3129"]],[11,12,["G4412"]],[12,15,["G2151"]],[15,16,["(G2398)"]],[16,17,["G3624"]],[17,18,["G2532"]],[18,20,["G591","G287"]],[20,22,["G4269"]],[22,23,["G1063"]],[23,24,["G5124"]],[24,25,["G2076"]],[25,26,["G2570"]],[26,27,["G2532"]],[27,28,["G587"]],[28,29,["G1799"]],[29,30,["G2316"]]]},{"k":29768,"v":[[0,1,["G1161"]],[1,6,["G5503"]],[6,7,["G3689"]],[7,8,["G2532"]],[8,9,["G3443"]],[9,10,["G1679"]],[10,11,["G1909"]],[11,12,["G2316"]],[12,13,["G2532"]],[13,14,["G4357"]],[14,16,["G1162"]],[16,17,["G2532"]],[17,18,["G4335"]],[18,19,["G3571"]],[19,20,["G2532"]],[20,21,["G2250"]]]},{"k":29769,"v":[[0,1,["G1161"]],[1,6,["G4684"]],[6,8,["G2348"]],[8,11,["G2198"]]]},{"k":29770,"v":[[0,1,["G2532"]],[1,3,["G5023"]],[3,6,["G3853"]],[6,7,["G2443"]],[7,10,["G5600"]],[10,11,["G423"]]]},{"k":29771,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5100"]],[3,6,["G4306","G3756"]],[6,8,["G2398"]],[8,9,["G2532"]],[9,10,["G3122"]],[10,16,["G3609"]],[16,19,["G720"]],[19,20,["G3588"]],[20,21,["G4102"]],[21,22,["G2532"]],[22,23,["G2076"]],[23,24,["G5501"]],[24,27,["G571"]]]},{"k":29772,"v":[[0,2,["G3361"]],[2,4,["G5503"]],[4,9,["G2639"]],[9,10,["G1640"]],[10,11,["G1835"]],[11,12,["G2094"]],[12,15,["G1096"]],[15,17,["G1135"]],[17,19,["G1520"]],[19,20,["G435"]]]},{"k":29773,"v":[[0,3,["G3140"]],[3,4,["G1722"]],[4,5,["G2570"]],[5,6,["G2041"]],[6,7,["G1487"]],[7,12,["G5044"]],[12,13,["G1487"]],[13,17,["G3580"]],[17,18,["G1487"]],[18,21,["G3538"]],[21,23,["G40"]],[23,24,["G4228"]],[24,25,["G1487"]],[25,28,["G1884"]],[28,30,["G2346"]],[30,31,["G1487"]],[31,35,["G1872"]],[35,36,["G3956"]],[36,37,["G18"]],[37,38,["G2041"]]]},{"k":29774,"v":[[0,1,["G1161"]],[1,3,["G3501"]],[3,4,["G5503"]],[4,5,["G3868"]],[5,6,["G1063"]],[6,7,["G3752"]],[7,14,["G2691"]],[14,15,["G5547"]],[15,17,["G2309"]],[17,18,["G1060"]]]},{"k":29775,"v":[[0,1,["G2192"]],[1,2,["G2917"]],[2,3,["G3754"]],[3,7,["G114"]],[7,9,["G4413"]],[9,10,["G4102"]]]},{"k":29776,"v":[[0,1,["G1161"]],[1,2,["G260"]],[2,4,["G3129"]],[4,7,["G692"]],[7,13,["G4022","G3614"]],[13,14,["G1161"]],[14,15,["G3756"]],[15,16,["G3440"]],[16,17,["G692"]],[17,18,["G235"]],[18,19,["G5397"]],[19,20,["G2532"]],[20,21,["G2532"]],[21,22,["G4021"]],[22,23,["G2980"]],[23,27,["G1163"]],[27,28,["G3361"]]]},{"k":29777,"v":[[0,2,["G1014"]],[2,3,["G3767"]],[3,7,["G3501"]],[7,8,["G1060"]],[8,10,["G5041"]],[10,13,["G3616"]],[13,14,["G1325"]],[14,15,["G3367"]],[15,16,["G874"]],[16,18,["G3588"]],[18,19,["G480"]],[19,22,["G5484","G3059"]]]},{"k":29778,"v":[[0,1,["G1063"]],[1,2,["G5100"]],[2,4,["G2235"]],[4,6,["G1624"]],[6,7,["G3694"]],[7,8,["G4567"]]]},{"k":29779,"v":[[0,2,["G1536"]],[2,3,["G4103"]],[3,4,["G2228"]],[4,7,["G4103"]],[7,8,["G2192"]],[8,9,["G5503"]],[9,12,["G1884"]],[12,13,["G846"]],[13,14,["G2532"]],[14,16,["G3361"]],[16,17,["G3588"]],[17,18,["G1577"]],[18,20,["G916"]],[20,21,["G2443"]],[21,24,["G1884"]],[24,28,["G5503"]],[28,29,["G3689"]]]},{"k":29780,"v":[[0,2,["G3588"]],[2,3,["G4245"]],[3,5,["G4291"]],[5,6,["G2573"]],[6,9,["G515"]],[9,11,["G1362"]],[11,12,["G5092"]],[12,13,["G3122"]],[13,16,["G2872"]],[16,17,["G1722"]],[17,19,["G3056"]],[19,20,["G2532"]],[20,21,["G1319"]]]},{"k":29781,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G1124"]],[3,4,["G3004"]],[4,7,["G3756"]],[7,8,["G5392"]],[8,10,["G1016"]],[10,13,["G248"]],[13,16,["G2532"]],[16,17,["G3588"]],[17,18,["G2040"]],[18,20,["G514"]],[20,22,["G848"]],[22,23,["G3408"]]]},{"k":29782,"v":[[0,1,["G2596"]],[1,3,["G4245"]],[3,4,["G3858"]],[4,5,["G3361"]],[5,7,["G2724"]],[7,8,["G1622","G1508"]],[8,9,["G1909"]],[9,10,["G1417"]],[10,11,["G2228"]],[11,12,["G5140"]],[12,13,["G3144"]]]},{"k":29783,"v":[[0,3,["G264"]],[3,4,["G1651"]],[4,5,["G1799"]],[5,6,["G3956"]],[6,7,["G2443"]],[7,8,["G3062"]],[8,9,["G2532"]],[9,11,["G2192","G5401"]]]},{"k":29784,"v":[[0,2,["G1263"]],[2,4,["G1799"]],[4,5,["G2316"]],[5,6,["G2532"]],[6,8,["G2962"]],[8,9,["G2424"]],[9,10,["G5547"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G1588"]],[13,14,["G32"]],[14,15,["G2443"]],[15,17,["G5442"]],[17,19,["G5023"]],[19,20,["G5565"]],[20,24,["G4299"]],[24,25,["G4160"]],[25,26,["G3367"]],[26,27,["G2596"]],[27,28,["G4346"]]]},{"k":29785,"v":[[0,1,["G2007"]],[1,2,["G5495"]],[2,3,["G5030"]],[3,6,["G3367"]],[6,7,["G3366"]],[7,9,["G2841"]],[9,12,["G245"]],[12,13,["G266"]],[13,14,["G5083"]],[14,15,["G4572"]],[15,16,["G53"]]]},{"k":29786,"v":[[0,4,["G5202","G3371"]],[4,5,["G235"]],[5,6,["G5530"]],[6,8,["G3641"]],[8,9,["G3631"]],[9,13,["G1223","G4675","G4751"]],[13,14,["G2532"]],[14,15,["G4675"]],[15,16,["G4437"]],[16,17,["G769"]]]},{"k":29787,"v":[[0,1,["G5100"]],[1,2,["G444"]],[2,3,["G266"]],[3,4,["G1526"]],[4,6,["G4271"]],[6,8,["G4254"]],[8,9,["G1519"]],[9,10,["G2920"]],[10,11,["G1161"]],[11,12,["G5100"]],[12,14,["(G2532)"]],[14,16,["G1872"]]]},{"k":29788,"v":[[0,1,["G5615"]],[1,2,["G2532"]],[2,3,["G3588"]],[3,4,["G2570"]],[4,5,["G2041"]],[5,8,["G2076"]],[8,10,["G4271"]],[10,11,["G2532"]],[11,14,["G2192"]],[14,15,["G247"]],[15,16,["G1410","G3756"]],[16,18,["G2928"]]]},{"k":29789,"v":[[0,3,["G3745"]],[3,4,["G1401"]],[4,6,["G1526"]],[6,7,["G5259"]],[7,9,["G2218"]],[9,10,["G2233"]],[10,12,["G2398"]],[12,13,["G1203"]],[13,14,["G514"]],[14,16,["G3956"]],[16,17,["G5092"]],[17,18,["G2443"]],[18,19,["G3588"]],[19,20,["G3686"]],[20,22,["G2316"]],[22,23,["G2532"]],[23,25,["G1319"]],[25,27,["G3361"]],[27,28,["G987"]]]},{"k":29790,"v":[[0,1,["G1161"]],[1,4,["G2192"]],[4,5,["G4103"]],[5,6,["G1203"]],[6,9,["G3361"]],[9,10,["G2706"]],[10,12,["G3754"]],[12,14,["G1526"]],[14,15,["G80"]],[15,16,["G235"]],[16,17,["G3123"]],[17,20,["G1398"]],[20,21,["G3754"]],[21,23,["G1526"]],[23,24,["G4103"]],[24,25,["G2532"]],[25,26,["G27"]],[26,27,["G482"]],[27,29,["G3588"]],[29,30,["G2108"]],[30,32,["G5023"]],[32,33,["G1321"]],[33,34,["G2532"]],[34,35,["G3870"]]]},{"k":29791,"v":[[0,3,["G1536"]],[3,5,["G2085"]],[5,6,["G2532"]],[6,7,["G4334"]],[7,8,["G3361"]],[8,10,["G5198"]],[10,11,["G3056"]],[11,14,["G3588"]],[14,16,["G2257"]],[16,17,["G2962"]],[17,18,["G2424"]],[18,19,["G5547"]],[19,20,["G2532"]],[20,22,["G3588"]],[22,23,["G1319"]],[23,26,["G2596"]],[26,28,["G2150"]]]},{"k":29792,"v":[[0,3,["G5187"]],[3,4,["G1987"]],[4,5,["G3367"]],[5,6,["G235"]],[6,7,["G3552"]],[7,8,["G4012"]],[8,9,["G2214"]],[9,10,["G2532"]],[10,13,["G3055"]],[13,14,["G1537","G3739"]],[14,15,["G1096"]],[15,16,["G5355"]],[16,17,["G2054"]],[17,18,["G988"]],[18,19,["G4190"]],[19,20,["G5283"]]]},{"k":29793,"v":[[0,2,["G3859"]],[2,4,["G444"]],[4,6,["G1311"]],[6,7,["G3563"]],[7,8,["G2532"]],[8,9,["G650"]],[9,11,["G3588"]],[11,12,["G225"]],[12,13,["G3543"]],[13,15,["G4200"]],[15,16,["G1511"]],[16,17,["G2150"]],[17,18,["G575"]],[18,19,["G5108"]],[19,21,["G868"]]]},{"k":29794,"v":[[0,1,["G1161"]],[1,2,["G2150"]],[2,3,["G3326"]],[3,4,["G841"]],[4,5,["G2076"]],[5,6,["G3173"]],[6,7,["G4200"]]]},{"k":29795,"v":[[0,1,["G1063"]],[1,3,["G1533"]],[3,4,["G3762"]],[4,5,["G1519"]],[5,7,["G2889"]],[7,11,["G1212","(G3754)"]],[11,12,["(G3761)"]],[12,13,["G1410"]],[13,16,["G1627","G5100"]]]},{"k":29796,"v":[[0,1,["G1161"]],[1,2,["G2192"]],[2,3,["G1305"]],[3,4,["G2532"]],[4,5,["G4629"]],[5,10,["G714","G5125"]]]},{"k":29797,"v":[[0,1,["G1161"]],[1,4,["G1014"]],[4,6,["G4147"]],[6,7,["G1706"]],[7,8,["G1519"]],[8,9,["G3986"]],[9,10,["G2532"]],[10,12,["G3803"]],[12,13,["G2532"]],[13,15,["G4183"]],[15,16,["G453"]],[16,17,["G2532"]],[17,18,["G983"]],[18,19,["G1939"]],[19,20,["G3748"]],[20,21,["G1036"]],[21,22,["G444"]],[22,23,["G1519"]],[23,24,["G3639"]],[24,25,["G2532"]],[25,26,["G684"]]]},{"k":29798,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,5,["G5365"]],[5,6,["G2076"]],[6,8,["G4491"]],[8,10,["G3956"]],[10,11,["G2556"]],[11,12,["G3739"]],[12,14,["G5100"]],[14,16,["G3713"]],[16,19,["G635"]],[19,20,["G575"]],[20,21,["G3588"]],[21,22,["G4102"]],[22,23,["G2532"]],[23,26,["G4044","G1438"]],[26,28,["G4183"]],[28,29,["G3601"]]]},{"k":29799,"v":[[0,1,["G1161"]],[1,2,["G4771"]],[2,3,["G5599"]],[3,4,["G444"]],[4,6,["G2316"]],[6,7,["G5343"]],[7,9,["G5023"]],[9,10,["G1161"]],[10,12,["G1377"]],[12,13,["G1343"]],[13,14,["G2150"]],[14,15,["G4102"]],[15,16,["G26"]],[16,17,["G5281"]],[17,18,["G4236"]]]},{"k":29800,"v":[[0,1,["G75"]],[1,2,["G3588"]],[2,3,["G2570"]],[3,4,["G73"]],[4,6,["G4102"]],[6,9,["G1949"]],[9,10,["G166"]],[10,11,["G2222"]],[11,12,["G1519","G3739"]],[12,15,["G2532"]],[15,16,["G2564"]],[16,17,["G2532"]],[17,19,["G3670"]],[19,21,["G2570"]],[21,22,["G3671"]],[22,23,["G1799"]],[23,24,["G4183"]],[24,25,["G3144"]]]},{"k":29801,"v":[[0,4,["G3853","G4671"]],[4,7,["G1799"]],[7,9,["G2316"]],[9,11,["G2227"]],[11,13,["G3956"]],[13,14,["G2532"]],[14,16,["G5547"]],[16,17,["G2424"]],[17,19,["G1909"]],[19,20,["G4194"]],[20,21,["G4091"]],[21,22,["G3140"]],[22,24,["G2570"]],[24,25,["G3671"]]]},{"k":29802,"v":[[0,2,["G4571"]],[2,3,["G5083"]],[3,5,["G1785"]],[5,7,["G784"]],[7,8,["G423"]],[8,9,["G3360"]],[9,10,["G3588"]],[10,11,["G2015"]],[11,13,["G2257"]],[13,14,["G2962"]],[14,15,["G2424"]],[15,16,["G5547"]]]},{"k":29803,"v":[[0,1,["G3739"]],[1,3,["G2398"]],[3,4,["G2540"]],[4,7,["G1166"]],[7,10,["G3588"]],[10,11,["G3107"]],[11,12,["G2532"]],[12,13,["G3441"]],[13,14,["G1413"]],[14,15,["G3588"]],[15,16,["G935"]],[16,18,["G936"]],[18,19,["G2532"]],[19,20,["G2962"]],[20,22,["G2961"]]]},{"k":29804,"v":[[0,1,["G3588"]],[1,2,["G3441"]],[2,3,["G2192"]],[3,4,["G110"]],[4,5,["G3611"]],[5,8,["G5457"]],[8,14,["G676"]],[14,15,["G3739"]],[15,16,["G3762"]],[16,17,["G444"]],[17,19,["G1492"]],[19,20,["G3761"]],[20,21,["G1410"]],[21,22,["G1492"]],[22,24,["G3739"]],[24,26,["G5092"]],[26,27,["G2532"]],[27,28,["G2904"]],[28,29,["G166"]],[29,30,["G281"]]]},{"k":29805,"v":[[0,1,["G3853"]],[1,5,["G4145"]],[5,6,["G1722"]],[6,8,["G3568","G165"]],[8,13,["G5309","G3361"]],[13,14,["G3366"]],[14,15,["G1679"]],[15,16,["G1909"]],[16,17,["G83"]],[17,18,["G4149"]],[18,19,["G235"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G2198"]],[22,23,["G2316"]],[23,25,["G3930"]],[25,26,["G2254"]],[26,27,["G4146"]],[27,29,["G3956"]],[29,30,["G1519"]],[30,31,["G619"]]]},{"k":29806,"v":[[0,4,["G14"]],[4,8,["G4147"]],[8,9,["G1722"]],[9,10,["G2570"]],[10,11,["G2041","(G1511)"]],[11,14,["G2130"]],[14,17,["G2843"]]]},{"k":29807,"v":[[0,4,["G597"]],[4,6,["G1438"]],[6,8,["G2570"]],[8,9,["G2310"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,14,["G3195"]],[14,15,["G2443"]],[15,20,["G1949"]],[20,21,["G166"]],[21,22,["G2222"]]]},{"k":29808,"v":[[0,1,["G5599"]],[1,2,["G5095"]],[2,3,["G5442"]],[3,10,["G3872"]],[10,11,["G1624"]],[11,12,["G952"]],[12,15,["G2757"]],[15,16,["G2532"]],[16,17,["G477"]],[17,19,["G1108"]],[19,22,["G5581"]]]},{"k":29809,"v":[[0,1,["G3739"]],[1,2,["G5100"]],[2,3,["G1861"]],[3,5,["G795"]],[5,6,["G4012"]],[6,7,["G3588"]],[7,8,["G4102"]],[8,9,["G5485"]],[9,11,["G3326"]],[11,12,["G4675"]],[12,13,["G281"]]]},{"k":29810,"v":[[0,1,["G3972"]],[1,3,["G652"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,7,["G1223"]],[7,9,["G2307"]],[9,11,["G2316"]],[11,12,["G2596"]],[12,15,["G1860"]],[15,17,["G2222"]],[17,18,["G3588"]],[18,20,["G1722"]],[20,21,["G5547"]],[21,22,["G2424"]]]},{"k":29811,"v":[[0,2,["G5095"]],[2,5,["G27"]],[5,6,["G5043"]],[6,7,["G5485"]],[7,8,["G1656"]],[8,10,["G1515"]],[10,11,["G575"]],[11,12,["G2316"]],[12,14,["G3962"]],[14,15,["G2532"]],[15,16,["G5547"]],[16,17,["G2424"]],[17,18,["G2257"]],[18,19,["G2962"]]]},{"k":29812,"v":[[0,2,["G2192","G5485"]],[2,3,["G2316"]],[3,4,["G3739"]],[4,6,["G3000"]],[6,7,["G575"]],[7,9,["G4269"]],[9,10,["G1722"]],[10,11,["G2513"]],[11,12,["G4893"]],[12,13,["G5613"]],[13,15,["G88"]],[15,17,["G2192"]],[17,18,["G3417"]],[18,19,["G4012"]],[19,20,["G4675"]],[20,21,["G1722"]],[21,22,["G3450"]],[22,23,["G1162"]],[23,24,["G3571"]],[24,25,["G2532"]],[25,26,["G2250"]]]},{"k":29813,"v":[[0,2,["G1971"]],[2,4,["G1492"]],[4,5,["G4571"]],[5,7,["G3415"]],[7,9,["G4675"]],[9,10,["G1144"]],[10,11,["G2443"]],[11,15,["G4137"]],[15,17,["G5479"]]]},{"k":29814,"v":[[0,3,["G2983"]],[3,5,["G5280"]],[5,6,["G3588"]],[6,7,["G505"]],[7,8,["G4102"]],[8,9,["G3588"]],[9,11,["G1722"]],[11,12,["G4671"]],[12,13,["G3748"]],[13,14,["G1774"]],[14,15,["G4412"]],[15,16,["G1722"]],[16,17,["G4675"]],[17,18,["G3125"]],[18,19,["G3090"]],[19,20,["G2532"]],[20,21,["G4675"]],[21,22,["G3384"]],[22,23,["G2131"]],[23,24,["G1161"]],[24,27,["G3982"]],[27,28,["G3754"]],[28,29,["G1722"]],[29,30,["G4671"]],[30,31,["G2532"]]]},{"k":29815,"v":[[0,1,["G1223","G3739","G156"]],[1,6,["G363","G4671"]],[6,10,["G329"]],[10,11,["G3588"]],[11,12,["G5486"]],[12,14,["G2316"]],[14,15,["G3739"]],[15,16,["G2076"]],[16,17,["G1722"]],[17,18,["G4671"]],[18,19,["G1223"]],[19,20,["G3588"]],[20,22,["G1936"]],[22,24,["G3450"]],[24,25,["G5495"]]]},{"k":29816,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,4,["G3756"]],[4,5,["G1325"]],[5,6,["G2254"]],[6,8,["G4151"]],[8,10,["G1167"]],[10,11,["G235"]],[11,13,["G1411"]],[13,14,["G2532"]],[14,16,["G26"]],[16,17,["G2532"]],[17,21,["G4995"]]]},{"k":29817,"v":[[0,2,["G3361"]],[2,4,["G3767"]],[4,5,["G1870"]],[5,7,["G3588"]],[7,8,["G3142"]],[8,10,["G2257"]],[10,11,["G2962"]],[11,12,["G3366"]],[12,14,["G1691"]],[14,15,["G846"]],[15,16,["G1198"]],[16,17,["G235"]],[17,23,["G4777"]],[23,25,["G3588"]],[25,26,["G2098"]],[26,27,["G2596"]],[27,30,["G1411"]],[30,32,["G2316"]]]},{"k":29818,"v":[[0,3,["G4982"]],[3,4,["G2248"]],[4,5,["G2532"]],[5,6,["G2564"]],[6,10,["G40"]],[10,11,["G2821"]],[11,12,["G3756"]],[12,13,["G2596"]],[13,15,["G2257"]],[15,16,["G2041"]],[16,17,["G235"]],[17,18,["G2596"]],[18,21,["G2398"]],[21,22,["G4286"]],[22,23,["G2532"]],[23,24,["G5485"]],[24,27,["G1325"]],[27,28,["G2254"]],[28,29,["G1722"]],[29,30,["G5547"]],[30,31,["G2424"]],[31,32,["G4253"]],[32,35,["G5550","G166"]]]},{"k":29819,"v":[[0,1,["G1161"]],[1,3,["G3568"]],[3,5,["G5319"]],[5,6,["G1223"]],[6,7,["G3588"]],[7,8,["G2015"]],[8,10,["G2257"]],[10,11,["G4990"]],[11,12,["G2424"]],[12,13,["G5547"]],[13,16,["G2673","(G3303)"]],[16,17,["G2288"]],[17,18,["G1161"]],[18,25,["G5461","G2222","G2532","G861"]],[25,26,["G1223"]],[26,27,["G3588"]],[27,28,["G2098"]]]},{"k":29820,"v":[[0,1,["G1519","G3739"]],[1,2,["G1473"]],[2,4,["G5087"]],[4,6,["G2783"]],[6,7,["G2532"]],[7,9,["G652"]],[9,10,["G2532"]],[10,12,["G1320"]],[12,15,["G1484"]]]},{"k":29821,"v":[[0,1,["G1223"]],[1,3,["G3739"]],[3,4,["G156"]],[4,6,["G2532"]],[6,7,["G3958"]],[7,9,["G5023"]],[9,10,["G235"]],[10,13,["G3756"]],[13,14,["G1870"]],[14,15,["G1063"]],[15,17,["G1492"]],[17,18,["G3739"]],[18,21,["G4100"]],[21,22,["G2532"]],[22,24,["G3982"]],[24,25,["G3754"]],[25,27,["G2076"]],[27,28,["G1415"]],[28,30,["G5442"]],[30,37,["G3866","G3450"]],[37,38,["G1519"]],[38,39,["G1565"]],[39,40,["G2250"]]]},{"k":29822,"v":[[0,2,["G2192"]],[2,4,["G5296"]],[4,6,["G5198"]],[6,7,["G3056"]],[7,8,["G3739"]],[8,11,["G191"]],[11,12,["G3844"]],[12,13,["G1700"]],[13,14,["G1722"]],[14,15,["G4102"]],[15,16,["G2532"]],[16,17,["G26"]],[17,18,["G3588"]],[18,20,["G1722"]],[20,21,["G5547"]],[21,22,["G2424"]]]},{"k":29823,"v":[[0,3,["G2570"]],[3,8,["G3872"]],[8,9,["G5442"]],[9,10,["G1223"]],[10,12,["G40"]],[12,13,["G4151"]],[13,15,["G1774"]],[15,16,["G1722"]],[16,17,["G2254"]]]},{"k":29824,"v":[[0,1,["G5124"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G3956"]],[5,7,["G3588"]],[7,9,["G1722"]],[9,10,["G773"]],[10,14,["G654"]],[14,15,["G3165"]],[15,17,["G3739"]],[17,18,["G2076"]],[18,19,["G5436"]],[19,20,["G2532"]],[20,21,["G2061"]]]},{"k":29825,"v":[[0,1,["G3588"]],[1,2,["G2962"]],[2,3,["G1325"]],[3,4,["G1656"]],[4,6,["G3588"]],[6,7,["G3624"]],[7,9,["G3683"]],[9,10,["G3754"]],[10,12,["G4178"]],[12,13,["G404"]],[13,14,["G3165"]],[14,15,["G2532"]],[15,17,["G3756"]],[17,18,["G1870"]],[18,20,["G3450"]],[20,21,["G254"]]]},{"k":29826,"v":[[0,1,["G235"]],[1,4,["G1096"]],[4,5,["G1722"]],[5,6,["G4516"]],[6,10,["G2212","G3165"]],[10,12,["G4706"]],[12,13,["G2532"]],[13,14,["G2147"]],[14,15,[]]]},{"k":29827,"v":[[0,1,["G3588"]],[1,2,["G2962"]],[2,3,["G1325"]],[3,5,["G846"]],[5,9,["G2147"]],[9,10,["G1656"]],[10,11,["G3844"]],[11,13,["G2962"]],[13,14,["G1722"]],[14,15,["G1565"]],[15,16,["G2250"]],[16,17,["G2532"]],[17,21,["G3745"]],[21,24,["G1247"]],[24,26,["G1722"]],[26,27,["G2181"]],[27,28,["G4771"]],[28,29,["G1097"]],[29,31,["G957"]]]},{"k":29828,"v":[[0,1,["G4771"]],[1,2,["G3767"]],[2,3,["G3450"]],[3,4,["G5043"]],[4,6,["G1743"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G5485"]],[9,10,["G3588"]],[10,12,["G1722"]],[12,13,["G5547"]],[13,14,["G2424"]]]},{"k":29829,"v":[[0,1,["G2532"]],[1,4,["G3739"]],[4,7,["G191"]],[7,8,["G3844"]],[8,9,["G1700"]],[9,10,["G1223"]],[10,11,["G4183"]],[11,12,["G3144"]],[12,14,["G5023"]],[14,15,["G3908"]],[15,18,["G4103"]],[18,19,["G444"]],[19,20,["G3748"]],[20,22,["G2071"]],[22,23,["G2425"]],[23,25,["G1321"]],[25,26,["G2087"]],[26,27,["G2532"]]]},{"k":29830,"v":[[0,1,["G4771"]],[1,2,["G3767"]],[2,4,["G2553"]],[4,5,["G5613"]],[5,7,["G2570"]],[7,8,["G4757"]],[8,10,["G2424"]],[10,11,["G5547"]]]},{"k":29831,"v":[[0,2,["G3762"]],[2,4,["G4754"]],[4,7,["G1707"]],[7,8,["G3588"]],[8,9,["G4230"]],[9,12,["G979"]],[12,13,["G2443"]],[13,16,["G700"]],[16,25,["G4758"]]]},{"k":29832,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,4,["G5100"]],[4,5,["G2532"]],[5,8,["G118"]],[8,12,["G3756"]],[12,13,["G4737"]],[13,14,["G3362"]],[14,16,["G118"]],[16,17,["G3545"]]]},{"k":29833,"v":[[0,2,["G1092"]],[2,4,["G2872"]],[4,5,["G1163"]],[5,8,["G3335","G4413"]],[8,10,["G3588"]],[10,11,["G2590"]]]},{"k":29834,"v":[[0,1,["G3539"]],[1,2,["G3739"]],[2,4,["G3004"]],[4,5,["G1063"]],[5,6,["G3588"]],[6,7,["G2962"]],[7,8,["G1325"]],[8,9,["G4671"]],[9,10,["G4907"]],[10,11,["G1722"]],[11,13,["G3956"]]]},{"k":29835,"v":[[0,1,["G3421"]],[1,3,["G2424"]],[3,4,["G5547"]],[4,5,["G1537"]],[5,7,["G4690"]],[7,9,["G1138"]],[9,11,["G1453"]],[11,12,["G1537"]],[12,14,["G3498"]],[14,15,["G2596"]],[15,17,["G3450"]],[17,18,["G2098"]]]},{"k":29836,"v":[[0,1,["G1722","G3739"]],[1,4,["G2553"]],[4,5,["G5613"]],[5,8,["G2557"]],[8,10,["G3360"]],[10,11,["G1199"]],[11,12,["G235"]],[12,13,["G3588"]],[13,14,["G3056"]],[14,16,["G2316"]],[16,18,["G3756"]],[18,19,["G1210"]]]},{"k":29837,"v":[[0,1,["G1223","G5124"]],[1,3,["G5278"]],[3,5,["G3956"]],[5,9,["G1223","G3588","G1588"]],[9,10,["G2443"]],[10,11,["G846"]],[11,13,["G2532"]],[13,14,["G5177"]],[14,16,["G4991"]],[16,17,["G3588"]],[17,19,["G1722"]],[19,20,["G5547"]],[20,21,["G2424"]],[21,22,["G3326"]],[22,23,["G166"]],[23,24,["G1391"]]]},{"k":29838,"v":[[0,4,["G4103"]],[4,5,["G3056"]],[5,6,["G1063"]],[6,7,["G1487"]],[7,11,["G4880"]],[11,15,["G2532"]],[15,17,["G4800"]],[17,18,[]]]},{"k":29839,"v":[[0,1,["G1487"]],[1,3,["G5278"]],[3,6,["G2532"]],[6,8,["G4821"]],[8,10,["G1487"]],[10,12,["G720"]],[12,15,["G2548"]],[15,17,["G720"]],[17,18,["G2248"]]]},{"k":29840,"v":[[0,1,["G1487"]],[1,4,["G569"]],[4,6,["G1565"]],[6,7,["G3306"]],[7,8,["G4103"]],[8,10,["G1410","G3756"]],[10,11,["G720"]],[11,12,["G1438"]]]},{"k":29841,"v":[[0,3,["G5023"]],[3,7,["G5279"]],[7,8,["G1263"]],[8,10,["G1799"]],[10,11,["G3588"]],[11,12,["G2962"]],[12,18,["G3054","G3361"]],[18,21,["G1519","G3762","G5539"]],[21,23,["G1909"]],[23,25,["G2692"]],[25,27,["G3588"]],[27,28,["G191"]]]},{"k":29842,"v":[[0,1,["G4704"]],[1,3,["G3936"]],[3,4,["G4572"]],[4,5,["G1384"]],[5,7,["G2316"]],[7,9,["G2040"]],[9,15,["G422"]],[15,17,["G3718"]],[17,18,["G3588"]],[18,19,["G3056"]],[19,21,["G225"]]]},{"k":29843,"v":[[0,1,["G1161"]],[1,2,["G4026"]],[2,3,["G952"]],[3,6,["G2757"]],[6,7,["G1063"]],[7,10,["G4298"]],[10,11,["G1909"]],[11,12,["G4119"]],[12,13,["G763"]]]},{"k":29844,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3056"]],[3,5,["G2192","G3542"]],[5,6,["G5613"]],[6,9,["G1044"]],[9,11,["G3739"]],[11,12,["G2076"]],[12,13,["G5211"]],[13,14,["G2532"]],[14,15,["G5372"]]]},{"k":29845,"v":[[0,1,["G3748"]],[1,2,["G4012"]],[2,3,["G3588"]],[3,4,["G225"]],[4,6,["G795"]],[6,7,["G3004"]],[7,9,["G3588"]],[9,10,["G386"]],[10,12,["G1096"]],[12,13,["G2235"]],[13,14,["G2532"]],[14,15,["G396"]],[15,16,["G3588"]],[16,17,["G4102"]],[17,19,["G5100"]]]},{"k":29846,"v":[[0,1,["G3305"]],[1,3,["G2310"]],[3,5,["G2316"]],[5,6,["G2476"]],[6,7,["G4731"]],[7,8,["G2192"]],[8,9,["G5026"]],[9,10,["G4973"]],[10,12,["G2962"]],[12,13,["G1097"]],[13,16,["G5607"]],[16,17,["G848"]],[17,18,["G2532"]],[18,21,["G3956"]],[21,23,["G3687"]],[23,24,["G3588"]],[24,25,["G3686"]],[25,27,["G5547"]],[27,28,["G868"]],[28,29,["G575"]],[29,30,["G93"]]]},{"k":29847,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,4,["G3173"]],[4,5,["G3614"]],[5,7,["G2076"]],[7,8,["G3756"]],[8,9,["G3440"]],[9,10,["G4632"]],[10,12,["G5552"]],[12,13,["G2532"]],[13,15,["G693"]],[15,16,["G235"]],[16,17,["G2532"]],[17,19,["G3585"]],[19,20,["G2532"]],[20,22,["G3749"]],[22,23,["G2532"]],[23,24,["G3739","G3303"]],[24,25,["G1519"]],[25,26,["G5092"]],[26,27,["G1161"]],[27,28,["G3739"]],[28,29,["G1519"]],[29,30,["G819"]]]},{"k":29848,"v":[[0,1,["G1437"]],[1,3,["G5100"]],[3,4,["G3767"]],[4,5,["G1571"]],[5,6,["G1438"]],[6,7,["G575"]],[7,8,["G5130"]],[8,11,["G2071"]],[11,13,["G4632"]],[13,14,["G1519"]],[14,15,["G5092"]],[15,16,["G37"]],[16,17,["G2532"]],[17,22,["G2173","G3588","G1203"]],[22,24,["G2090"]],[24,25,["G1519"]],[25,26,["G3956"]],[26,27,["G18"]],[27,28,["G2041"]]]},{"k":29849,"v":[[0,1,["G5343"]],[1,2,["G1161"]],[2,3,["G3512"]],[3,4,["G1939"]],[4,5,["G1161"]],[5,6,["G1377"]],[6,7,["G1343"]],[7,8,["G4102"]],[8,9,["G26"]],[9,10,["G1515"]],[10,11,["G3326"]],[11,15,["G1941"]],[15,16,["G3588"]],[16,17,["G2962"]],[17,19,["G1537"]],[19,21,["G2513"]],[21,22,["G2588"]]]},{"k":29850,"v":[[0,1,["G1161"]],[1,2,["G3474"]],[2,3,["G2532"]],[3,4,["G521"]],[4,5,["G2214"]],[5,6,["G3868"]],[6,7,["G1492"]],[7,8,["G3754"]],[8,11,["G1080"]],[11,12,["G3163"]]]},{"k":29851,"v":[[0,1,["G1161"]],[1,3,["G1401"]],[3,6,["G2962"]],[6,7,["G1163"]],[7,8,["G3756"]],[8,9,["G3164"]],[9,10,["G235"]],[10,11,["G1511"]],[11,12,["G2261"]],[12,13,["G4314"]],[13,14,["G3956"]],[14,18,["G1317"]],[18,19,["G420"]]]},{"k":29852,"v":[[0,1,["G1722"]],[1,2,["G4236"]],[2,3,["G3811"]],[3,7,["G475"]],[7,10,["G3379","G2316"]],[10,12,["G1325"]],[12,13,["G846"]],[13,14,["G3341"]],[14,15,["G1519"]],[15,17,["G1922"]],[17,20,["G225"]]]},{"k":29853,"v":[[0,1,["G2532"]],[1,6,["G366"]],[6,8,["G1537"]],[8,9,["G3588"]],[9,10,["G3803"]],[10,12,["G3588"]],[12,13,["G1228"]],[13,17,["G2221"]],[17,18,["G5259"]],[18,19,["G846"]],[19,20,["G1519"]],[20,21,["G1565"]],[21,22,["G2307"]]]},{"k":29854,"v":[[0,1,["G5124"]],[1,2,["G1097"]],[2,3,["G1161"]],[3,4,["G3754"]],[4,5,["G1722"]],[5,7,["G2078"]],[7,8,["G2250"]],[8,9,["G5467"]],[9,10,["G2540"]],[10,12,["G1764"]]]},{"k":29855,"v":[[0,1,["G1063"]],[1,2,["G444"]],[2,4,["G2071"]],[4,9,["G5367"]],[9,10,["G5366"]],[10,11,["G213"]],[11,12,["G5244"]],[12,13,["G989"]],[13,14,["G545"]],[14,16,["G1118"]],[16,17,["G884"]],[17,18,["G462"]]]},{"k":29856,"v":[[0,3,["G794"]],[3,4,["G786"]],[4,6,["G1228"]],[6,7,["G193"]],[7,8,["G434"]],[8,14,["G865"]]]},{"k":29857,"v":[[0,1,["G4273"]],[1,2,["G4312"]],[2,3,["G5187"]],[3,6,["G5369"]],[6,7,["G3123"]],[7,8,["G2228"]],[8,11,["G5377"]]]},{"k":29858,"v":[[0,1,["G2192"]],[1,3,["G3446"]],[3,5,["G2150"]],[5,6,["G1161"]],[6,7,["G720"]],[7,8,["G3588"]],[8,9,["G1411"]],[9,10,["G846"]],[10,14,["G665","G5128"]]]},{"k":29859,"v":[[0,1,["G1063"]],[1,2,["G1537"]],[2,4,["G5130"]],[4,5,["G1526"]],[5,8,["G1744"]],[8,9,["G1519"]],[9,10,["G3614"]],[10,11,["G2532"]],[11,13,["G162"]],[13,15,["G1133"]],[15,16,["G4987"]],[16,18,["G266"]],[18,20,["G71"]],[20,22,["G4164"]],[22,23,["G1939"]]]},{"k":29860,"v":[[0,1,["G3842"]],[1,2,["G3129"]],[2,3,["G2532"]],[3,4,["G3368"]],[4,5,["G1410"]],[5,7,["G2064"]],[7,8,["G1519"]],[8,10,["G1922"]],[10,13,["G225"]]]},{"k":29861,"v":[[0,1,["G1161"]],[1,2,["G3739","G5158"]],[2,3,["G2389"]],[3,4,["G2532"]],[4,5,["G2387"]],[5,6,["G436"]],[6,7,["G3475"]],[7,8,["G3779"]],[8,10,["G3778"]],[10,11,["G2532"]],[11,12,["G436"]],[12,13,["G3588"]],[13,14,["G225"]],[14,15,["G444"]],[15,17,["G2704"]],[17,18,["G3563"]],[18,19,["G96"]],[19,20,["G4012"]],[20,21,["G3588"]],[21,22,["G4102"]]]},{"k":29862,"v":[[0,1,["G235"]],[1,4,["G4298"]],[4,5,["G3756"]],[5,6,["G1909","G4119"]],[6,7,["G1063"]],[7,8,["G846"]],[8,9,["G454"]],[9,11,["G2071"]],[11,12,["G1552"]],[12,14,["G3956"]],[14,16,["G5613"]],[16,17,["G1565"]],[17,18,["G2532"]],[18,19,["G1096"]]]},{"k":29863,"v":[[0,1,["G1161"]],[1,2,["G4771"]],[2,5,["G3877"]],[5,6,["G3450"]],[6,7,["G1319"]],[7,10,["G72"]],[10,11,["G4286"]],[11,12,["G4102"]],[12,13,["G3115"]],[13,14,["G26"]],[14,15,["G5281"]]]},{"k":29864,"v":[[0,1,["G1375"]],[1,2,["G3804"]],[2,3,["G3634"]],[3,4,["G1096"]],[4,6,["G3427"]],[6,7,["G1722"]],[7,8,["G490"]],[8,9,["G1722"]],[9,10,["G2430"]],[10,11,["G1722"]],[11,12,["G3082"]],[12,13,["G3634"]],[13,14,["G1375"]],[14,16,["G5297"]],[16,17,["G2532"]],[17,19,["G1537"]],[19,21,["G3956"]],[21,22,["G3588"]],[22,23,["G2962"]],[23,24,["G4506"]],[24,25,["G3165"]]]},{"k":29865,"v":[[0,1,["G1161"]],[1,2,["G2532"]],[2,3,["G3956"]],[3,5,["G2309"]],[5,6,["G2198"]],[6,7,["G2153"]],[7,8,["G1722"]],[8,9,["G5547"]],[9,10,["G2424"]],[10,13,["G1377"]]]},{"k":29866,"v":[[0,1,["G1161"]],[1,2,["G4190"]],[2,3,["G444"]],[3,4,["G2532"]],[4,5,["G1114"]],[5,10,["G4298","G1909","G5501"]],[10,11,["G4105"]],[11,12,["G2532"]],[12,14,["G4105"]]]},{"k":29867,"v":[[0,1,["G1161"]],[1,2,["G3306"]],[2,3,["G4771"]],[3,4,["G1722"]],[4,7,["G3739"]],[7,10,["G3129"]],[10,11,["G2532"]],[11,15,["G4104"]],[15,16,["G1492"]],[16,17,["G3844"]],[17,18,["G5101"]],[18,21,["G3129"]],[21,22,[]]]},{"k":29868,"v":[[0,1,["G2532"]],[1,2,["G3754"]],[2,3,["G575"]],[3,5,["G1025"]],[5,8,["G1492"]],[8,9,["G3588"]],[9,10,["G2413"]],[10,11,["G1121"]],[11,14,["G1410"]],[14,18,["G4679","G4571"]],[18,19,["G1519"]],[19,20,["G4991"]],[20,21,["G1223"]],[21,22,["G4102"]],[22,23,["G3588"]],[23,25,["G1722"]],[25,26,["G5547"]],[26,27,["G2424"]]]},{"k":29869,"v":[[0,1,["G3956"]],[1,2,["G1124"]],[2,8,["G2315"]],[8,9,["G2532"]],[9,11,["G5624"]],[11,12,["G4314"]],[12,13,["G1319"]],[13,14,["G4314"]],[14,15,["G1650"]],[15,16,["G4314"]],[16,17,["G1882"]],[17,18,["G4314"]],[18,19,["G3809"]],[19,20,["G1722"]],[20,21,["G1343"]]]},{"k":29870,"v":[[0,1,["G2443"]],[1,2,["G3588"]],[2,3,["G444"]],[3,5,["G2316"]],[5,7,["G5600"]],[7,8,["G739"]],[8,10,["G1822"]],[10,11,["G4314"]],[11,12,["G3956"]],[12,13,["G18"]],[13,14,["G2041"]]]},{"k":29871,"v":[[0,1,["G1473"]],[1,2,["G1263"]],[2,4,["G3767"]],[4,5,["G1799"]],[5,6,["G2316"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,10,["G2424"]],[10,11,["G5547"]],[11,13,["G3195"]],[13,14,["G2919"]],[14,16,["G2198"]],[16,17,["G2532"]],[17,19,["G3498"]],[19,20,["G2596"]],[20,21,["G848"]],[21,22,["G2015"]],[22,23,["G2532"]],[23,24,["G848"]],[24,25,["G932"]]]},{"k":29872,"v":[[0,1,["G2784"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,5,["G2186"]],[5,7,["G2122"]],[7,10,["G171"]],[10,11,["G1651"]],[11,12,["G2008"]],[12,13,["G3870"]],[13,14,["G1722"]],[14,15,["G3956"]],[15,16,["G3115"]],[16,17,["G2532"]],[17,18,["G1322"]]]},{"k":29873,"v":[[0,1,["G1063"]],[1,3,["G2540"]],[3,5,["G2071"]],[5,6,["G3753"]],[6,9,["G3756"]],[9,10,["G430"]],[10,11,["G5198"]],[11,12,["G1319"]],[12,13,["G235"]],[13,14,["G2596"]],[14,16,["G2398"]],[16,17,["G1939"]],[17,20,["G2002"]],[20,22,["G1438"]],[22,23,["G1320"]],[23,25,["G2833"]],[25,26,["G189"]]]},{"k":29874,"v":[[0,1,["G2532"]],[1,5,["G654"]],[5,7,["G189"]],[7,8,["G575","(G3303)"]],[8,9,["G3588"]],[9,10,["G225"]],[10,11,["G1161"]],[11,14,["G1624"]],[14,15,["G1909"]],[15,16,["G3454"]]]},{"k":29875,"v":[[0,1,["G1161"]],[1,2,["G3525"]],[2,3,["G4771"]],[3,4,["G1722"]],[4,6,["G3956"]],[6,8,["G2553"]],[8,9,["G4160"]],[9,11,["G2041"]],[11,14,["G2099"]],[14,17,["G4135"]],[17,19,["G4675"]],[19,20,["G1248"]]]},{"k":29876,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,8,["G4689","G2235"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G2540"]],[11,13,["G1699"]],[13,14,["G359"]],[14,17,["G2186"]]]},{"k":29877,"v":[[0,3,["G75"]],[3,5,["G2570"]],[5,6,["G73"]],[6,9,["G5055"]],[9,11,["G1408"]],[11,14,["G5083"]],[14,15,["G3588"]],[15,16,["G4102"]]]},{"k":29878,"v":[[0,1,["G3063"]],[1,5,["G606"]],[5,7,["G3427"]],[7,9,["G4735"]],[9,11,["G1343"]],[11,12,["G3739"]],[12,13,["G3588"]],[13,14,["G2962"]],[14,15,["G3588"]],[15,16,["G1342"]],[16,17,["G2923"]],[17,19,["G591"]],[19,20,["G3427"]],[20,21,["G1722"]],[21,22,["G1565"]],[22,23,["G2250"]],[23,24,["G1161"]],[24,25,["G3756"]],[25,27,["G1698"]],[27,28,["G3440"]],[28,29,["G235"]],[29,31,["G3956"]],[31,35,["G25","G2532"]],[35,36,["G846"]],[36,37,["G2015"]]]},{"k":29879,"v":[[0,3,["G4704"]],[3,5,["G2064"]],[5,6,["G5030"]],[6,7,["G4314"]],[7,8,["G3165"]]]},{"k":29880,"v":[[0,1,["G1063"]],[1,2,["G1214"]],[2,4,["G1459"]],[4,5,["G3165"]],[5,7,["G25"]],[7,9,["G3568"]],[9,10,["G165"]],[10,11,["G2532"]],[11,13,["G4198"]],[13,14,["G1519"]],[14,15,["G2332"]],[15,16,["G2913"]],[16,17,["G1519"]],[17,18,["G1053"]],[18,19,["G5103"]],[19,20,["G1519"]],[20,21,["G1149"]]]},{"k":29881,"v":[[0,1,["G3441"]],[1,2,["G3065"]],[2,3,["G2076"]],[3,4,["G3326"]],[4,5,["G1700"]],[5,6,["G353"]],[6,7,["G3138"]],[7,9,["G71"]],[9,11,["G3326"]],[11,12,["G4572"]],[12,13,["G1063"]],[13,15,["G2076"]],[15,16,["G2173"]],[16,18,["G3427"]],[18,19,["G1519"]],[19,21,["G1248"]]]},{"k":29882,"v":[[0,1,["G1161"]],[1,2,["G5190"]],[2,5,["G649"]],[5,6,["G1519"]],[6,7,["G2181"]]]},{"k":29883,"v":[[0,1,["G3588"]],[1,2,["G5341"]],[2,3,["G3739"]],[3,5,["G620"]],[5,6,["G1722"]],[6,7,["G5174"]],[7,8,["G3844"]],[8,9,["G2591"]],[9,12,["G2064"]],[12,13,["G5342"]],[13,16,["G2532"]],[16,17,["G3588"]],[17,18,["G975"]],[18,20,["G3122"]],[20,21,["G3588"]],[21,22,["G3200"]]]},{"k":29884,"v":[[0,1,["G223"]],[1,2,["G3588"]],[2,3,["G5471"]],[3,4,["G1731"]],[4,5,["G3427"]],[5,6,["G4183"]],[6,7,["G2556"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,10,["G591"]],[10,11,["G846"]],[11,12,["G2596"]],[12,14,["G846"]],[14,15,["G2041"]]]},{"k":29885,"v":[[0,2,["G3739"]],[2,5,["G5442","G4771"]],[5,6,["G2532"]],[6,7,["G1063"]],[7,10,["G3029"]],[10,11,["G436"]],[11,12,["G2251"]],[12,13,["G3056"]]]},{"k":29886,"v":[[0,1,["G1722"]],[1,2,["G3450"]],[2,3,["G4413"]],[3,4,["G627"]],[4,6,["G3762"]],[6,8,["G4836"]],[8,9,["G3427"]],[9,10,["G235"]],[10,11,["G3956"]],[11,13,["G1459"]],[13,14,["G3165"]],[14,21,["G3361"]],[21,26,["G3049","G846"]]]},{"k":29887,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,5,["G3936"]],[5,6,["G3427"]],[6,7,["G2532"]],[7,8,["G1743"]],[8,9,["G3165"]],[9,10,["G2443"]],[10,11,["G1223"]],[11,12,["G1700"]],[12,13,["G3588"]],[13,14,["G2782"]],[14,18,["G4135"]],[18,19,["G2532"]],[19,21,["G3956"]],[21,22,["G3588"]],[22,23,["G1484"]],[23,25,["G191"]],[25,26,["G2532"]],[26,29,["G4506"]],[29,31,["G1537"]],[31,33,["G4750"]],[33,36,["G3023"]]]},{"k":29888,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,5,["G4506"]],[5,6,["G3165"]],[6,7,["G575"]],[7,8,["G3956"]],[8,9,["G4190"]],[9,10,["G2041"]],[10,11,["G2532"]],[11,13,["G4982"]],[13,15,["G1519"]],[15,16,["G848"]],[16,17,["G2032"]],[17,18,["G932"]],[18,20,["G3739"]],[20,22,["G1391"]],[22,26,["G1519","G165","G165"]],[26,27,["G281"]]]},{"k":29889,"v":[[0,1,["G782"]],[1,2,["G4251"]],[2,3,["G2532"]],[3,4,["G207"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G3624"]],[7,9,["G3683"]]]},{"k":29890,"v":[[0,1,["G2037"]],[1,2,["G3306"]],[2,3,["G1722"]],[3,4,["G2882"]],[4,5,["G1161"]],[5,6,["G5161"]],[6,9,["G620"]],[9,10,["G1722"]],[10,11,["G3399"]],[11,12,["G770"]]]},{"k":29891,"v":[[0,3,["G4704"]],[3,5,["G2064"]],[5,6,["G4253"]],[6,7,["G5494"]],[7,8,["G2103"]],[8,9,["G782"]],[9,10,["G4571"]],[10,11,["G2532"]],[11,12,["G4227"]],[12,13,["G2532"]],[13,14,["G3044"]],[14,15,["G2532"]],[15,16,["G2803"]],[16,17,["G2532"]],[17,18,["G3956"]],[18,19,["G3588"]],[19,20,["G80"]]]},{"k":29892,"v":[[0,1,["G3588"]],[1,2,["G2962"]],[2,3,["G2424"]],[3,4,["G5547"]],[4,6,["G3326"]],[6,7,["G4675"]],[7,8,["G4151"]],[8,9,["G5485"]],[9,11,["G3326"]],[11,12,["G5216"]],[12,13,["G281"]]]},{"k":29893,"v":[[0,1,["G3972"]],[1,3,["G1401"]],[3,5,["G2316"]],[5,6,["G1161"]],[6,8,["G652"]],[8,10,["G2424"]],[10,11,["G5547"]],[11,12,["G2596"]],[12,15,["G4102"]],[15,17,["G2316"]],[17,18,["G1588"]],[18,19,["G2532"]],[19,21,["G1922"]],[21,24,["G225"]],[24,25,["G3588"]],[25,27,["G2596"]],[27,28,["G2150"]]]},{"k":29894,"v":[[0,1,["G1909"]],[1,2,["G1680"]],[2,4,["G166"]],[4,5,["G2222"]],[5,6,["G3739"]],[6,7,["G2316"]],[7,10,["G893"]],[10,11,["G1861"]],[11,12,["G4253"]],[12,15,["G166","G5550"]]]},{"k":29895,"v":[[0,1,["G1161"]],[1,4,["G2398"]],[4,5,["G2540"]],[5,6,["G5319"]],[6,7,["G848"]],[7,8,["G3056"]],[8,9,["G1722"]],[9,10,["G2782"]],[10,11,["G3739"]],[11,13,["G4100"]],[13,15,["G1473"]],[15,16,["G2596"]],[16,19,["G2003"]],[19,21,["G2316"]],[21,22,["G2257"]],[22,23,["G4990"]]]},{"k":29896,"v":[[0,2,["G5103"]],[2,4,["G1103"]],[4,5,["G5043"]],[5,6,["G2596"]],[6,8,["G2839"]],[8,9,["G4102"]],[9,10,["G5485"]],[10,11,["G1656"]],[11,13,["G1515"]],[13,14,["G575"]],[14,15,["G2316"]],[15,17,["G3962"]],[17,18,["G2532"]],[18,20,["G2962"]],[20,21,["G2424"]],[21,22,["G5547"]],[22,23,["G2257"]],[23,24,["G4990"]]]},{"k":29897,"v":[[0,3,["G5484","G5127"]],[3,4,["G2641"]],[4,6,["G4571"]],[6,7,["G1722"]],[7,8,["G2914"]],[8,9,["G2443"]],[9,14,["G1930"]],[14,19,["G3007"]],[19,20,["G2532"]],[20,21,["G2525"]],[21,22,["G4245"]],[22,25,["G2596","G4172"]],[25,26,["G5613"]],[26,27,["G1473"]],[27,29,["G1299"]],[29,30,["G4671"]]]},{"k":29898,"v":[[0,2,["G1536"]],[2,3,["G2076"]],[3,4,["G410"]],[4,6,["G435"]],[6,8,["G3391"]],[8,9,["G1135"]],[9,10,["G2192"]],[10,11,["G4103"]],[11,12,["G5043"]],[12,13,["G3361"]],[13,14,["G1722","G2724"]],[14,16,["G810"]],[16,17,["G2228"]],[17,18,["G506"]]]},{"k":29899,"v":[[0,1,["G1063"]],[1,3,["G1985"]],[3,4,["G1163"]],[4,5,["G1511"]],[5,6,["G410"]],[6,7,["G5613"]],[7,9,["G3623"]],[9,11,["G2316"]],[11,12,["G3361"]],[12,13,["G829"]],[13,14,["G3361"]],[14,16,["G3711"]],[16,17,["G3361"]],[17,20,["G3943"]],[20,21,["G3361"]],[21,22,["G4131"]],[22,23,["G3361"]],[23,27,["G146"]]]},{"k":29900,"v":[[0,1,["G235"]],[1,5,["G5382"]],[5,10,["G5358"]],[10,11,["G4998"]],[11,12,["G1342"]],[12,13,["G3741"]],[13,14,["G1468"]]]},{"k":29901,"v":[[0,2,["G472"]],[2,3,["G3588"]],[3,4,["G4103"]],[4,5,["G3056"]],[5,10,["G2596","G1322"]],[10,11,["G2443"]],[11,14,["G5600"]],[14,15,["G1415"]],[15,16,["G1722"]],[16,17,["G5198"]],[17,18,["G1319"]],[18,19,["G2532"]],[19,21,["G3870"]],[21,22,["G2532"]],[22,24,["G1651"]],[24,25,["G3588"]],[25,26,["G483"]]]},{"k":29902,"v":[[0,1,["G1063"]],[1,3,["G1526"]],[3,4,["G4183"]],[4,5,["(G2532)","G506"]],[5,8,["G3151"]],[8,9,["G2532"]],[9,10,["G5423"]],[10,11,["G3122"]],[11,12,["G3588"]],[12,13,["G1537"]],[13,15,["G4061"]]]},{"k":29903,"v":[[0,1,["G3739"]],[1,5,["G1993","G1163"]],[5,6,["G3748"]],[6,7,["G396"]],[7,8,["G3650"]],[8,9,["G3624"]],[9,10,["G1321"]],[10,12,["G3739"]],[12,14,["G1163"]],[14,15,["G3361"]],[15,19,["G5484","G150","G2771"]]]},{"k":29904,"v":[[0,1,["G5100"]],[1,2,["G1537"]],[2,3,["G846"]],[3,6,["G4396"]],[6,8,["G846"]],[8,9,["G2398"]],[9,10,["G2036"]],[10,12,["G2912"]],[12,14,["G104"]],[14,15,["G5583"]],[15,16,["G2556"]],[16,17,["G2342"]],[17,18,["G692"]],[18,19,["G1064"]]]},{"k":29905,"v":[[0,1,["G3778"]],[1,2,["G3141"]],[2,3,["G2076"]],[3,4,["G227"]],[4,5,["G1223","G3739","G156"]],[5,6,["G1651"]],[6,7,["G846"]],[7,8,["G664"]],[8,9,["G2443"]],[9,13,["G5198"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G4102"]]]},{"k":29906,"v":[[0,1,["G3361"]],[1,3,["G4337"]],[3,5,["G2451"]],[5,6,["G3454"]],[6,7,["G2532"]],[7,8,["G1785"]],[8,10,["G444"]],[10,13,["G654"]],[13,14,["G3588"]],[14,15,["G225"]]]},{"k":29907,"v":[[0,2,["G3588"]],[2,3,["G2513"]],[3,5,["G3956"]],[5,6,["(G3303)"]],[6,7,["G2513"]],[7,8,["G1161"]],[8,10,["G3588"]],[10,13,["G3392"]],[13,14,["G2532"]],[14,15,["G571"]],[15,17,["G3762"]],[17,18,["G2513"]],[18,19,["G235"]],[19,20,["G2532"]],[20,21,["G846"]],[21,22,["G3563"]],[22,23,["G2532"]],[23,24,["G4893"]],[24,26,["G3392"]]]},{"k":29908,"v":[[0,2,["G3670"]],[2,5,["G1492"]],[5,6,["G2316"]],[6,7,["G1161"]],[7,9,["G2041"]],[9,11,["G720"]],[11,13,["G5607"]],[13,14,["G947"]],[14,15,["G2532"]],[15,16,["G545"]],[16,17,["G2532"]],[17,18,["G4314"]],[18,19,["G3956"]],[19,20,["G18"]],[20,21,["G2041"]],[21,22,["G96"]]]},{"k":29909,"v":[[0,1,["G1161"]],[1,2,["G2980"]],[2,3,["G4771"]],[3,6,["G3739"]],[6,7,["G4241"]],[7,8,["G5198"]],[8,9,["G1319"]]]},{"k":29910,"v":[[0,4,["G4246"]],[4,5,["G1511"]],[5,6,["G3524"]],[6,7,["G4586"]],[7,8,["G4998"]],[8,9,["G5198"]],[9,11,["G4102"]],[11,13,["G26"]],[13,15,["G5281"]]]},{"k":29911,"v":[[0,3,["G4247"]],[3,4,["G5615"]],[4,8,["G1722"]],[8,9,["G2688"]],[9,12,["G2412"]],[12,13,["G3361"]],[13,15,["G1228"]],[15,16,["G3361"]],[16,17,["G1402"]],[17,19,["G4183"]],[19,20,["G3631"]],[20,24,["G2567"]]]},{"k":29912,"v":[[0,1,["G2443"]],[1,10,["G4994","G3588","G3501"]],[10,11,["(G1511)"]],[11,14,["G5362"]],[14,18,["G5388"]]]},{"k":29913,"v":[[0,3,["G4998"]],[3,4,["G53"]],[4,7,["G3626"]],[7,8,["G18"]],[8,9,["G5293"]],[9,12,["G2398"]],[12,13,["G435"]],[13,14,["G2443"]],[14,15,["G3588"]],[15,16,["G3056"]],[16,18,["G2316"]],[18,20,["G3361"]],[20,21,["G987"]]]},{"k":29914,"v":[[0,2,["G3501"]],[2,3,["G5615"]],[3,4,["G3870"]],[4,8,["G4993"]]]},{"k":29915,"v":[[0,1,["G4012"]],[1,3,["G3956"]],[3,4,["G3930"]],[4,5,["G4572"]],[5,7,["G5179"]],[7,9,["G2570"]],[9,10,["G2041"]],[10,11,["G1722"]],[11,12,["G1319"]],[12,14,["G90"]],[14,15,["G4587"]],[15,16,["G861"]]]},{"k":29916,"v":[[0,1,["G5199"]],[1,2,["G3056"]],[2,6,["G176"]],[6,7,["G2443"]],[7,8,["G3588"]],[8,11,["G1537"]],[11,14,["G1727"]],[14,17,["G1788"]],[17,18,["G2192"]],[18,19,["G3367"]],[19,21,["G5337"]],[21,23,["G3004"]],[23,24,["G4012"]],[24,25,["G5216"]]]},{"k":29917,"v":[[0,2,["G1401"]],[2,5,["G5293"]],[5,8,["G2398"]],[8,9,["G1203"]],[9,10,["(G1511)"]],[10,14,["G2101"]],[14,15,["G1722"]],[15,16,["G3956"]],[16,18,["G3361"]],[18,20,["G483"]]]},{"k":29918,"v":[[0,1,["G3361"]],[1,2,["G3557"]],[2,3,["G235"]],[3,4,["G1731"]],[4,5,["G3956"]],[5,6,["G18"]],[6,7,["G4102"]],[7,8,["G2443"]],[8,11,["G2885"]],[11,12,["G3588"]],[12,13,["G1319"]],[13,15,["G2316"]],[15,16,["G2257"]],[16,17,["G4990"]],[17,18,["G1722"]],[18,20,["G3956"]]]},{"k":29919,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G5485"]],[3,5,["G2316"]],[5,8,["G4992"]],[8,10,["G2014"]],[10,12,["G3956"]],[12,13,["G444"]]]},{"k":29920,"v":[[0,1,["G3811"]],[1,2,["G2248"]],[2,3,["G2443"]],[3,4,["G720"]],[4,5,["G763"]],[5,6,["G2532"]],[6,7,["G2886"]],[7,8,["G1939"]],[8,11,["G2198"]],[11,13,["G4996","(G1346)"]],[13,14,["G2532"]],[14,15,["G2153"]],[15,16,["G1722"]],[16,18,["G3568"]],[18,19,["G165"]]]},{"k":29921,"v":[[0,2,["G4327"]],[2,4,["G3107"]],[4,5,["G1680"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G1391"]],[8,9,["G2015"]],[9,11,["G3588"]],[11,12,["G3173"]],[12,13,["G2316"]],[13,14,["G2532"]],[14,15,["G2257"]],[15,16,["G4990"]],[16,17,["G2424"]],[17,18,["G5547"]]]},{"k":29922,"v":[[0,1,["G3739"]],[1,2,["G1325"]],[2,3,["G1438"]],[3,4,["G5228"]],[4,5,["G2257"]],[5,6,["G2443"]],[6,9,["G3084"]],[9,10,["G2248"]],[10,11,["G575"]],[11,12,["G3956"]],[12,13,["G458"]],[13,14,["G2532"]],[14,15,["G2511"]],[15,17,["G1438"]],[17,19,["G4041"]],[19,20,["G2992"]],[20,21,["G2207"]],[21,23,["G2570"]],[23,24,["G2041"]]]},{"k":29923,"v":[[0,2,["G5023"]],[2,3,["G2980"]],[3,4,["G2532"]],[4,5,["G3870"]],[5,6,["G2532"]],[6,7,["G1651"]],[7,8,["G3326"]],[8,9,["G3956"]],[9,10,["G2003"]],[10,13,["G3367"]],[13,14,["G4065"]],[14,15,["G4675"]]]},{"k":29924,"v":[[0,4,["G5279","G846"]],[4,7,["G5293"]],[7,9,["G746"]],[9,10,["G2532"]],[10,11,["G1849"]],[11,14,["G3980"]],[14,16,["G1511"]],[16,17,["G2092"]],[17,18,["G4314"]],[18,19,["G3956"]],[19,20,["G18"]],[20,21,["G2041"]]]},{"k":29925,"v":[[0,3,["G987"]],[3,6,["G3367"]],[6,8,["G1511"]],[8,10,["G269"]],[10,12,["G1933"]],[12,13,["G1731"]],[13,14,["G3956"]],[14,15,["G4236"]],[15,16,["G4314"]],[16,17,["G3956"]],[17,18,["G444"]]]},{"k":29926,"v":[[0,1,["G1063"]],[1,2,["G2249"]],[2,4,["G2532"]],[4,5,["G2258"]],[5,6,["G4218"]],[6,7,["G453"]],[7,8,["G545"]],[8,9,["G4105"]],[9,10,["G1398"]],[10,11,["G4164"]],[11,12,["G1939"]],[12,13,["G2532"]],[13,14,["G2237"]],[14,15,["G1236"]],[15,16,["G1722"]],[16,17,["G2549"]],[17,18,["G2532"]],[18,19,["G5355"]],[19,20,["G4767"]],[20,22,["G3404"]],[22,24,["G240"]]]},{"k":29927,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,4,["G3588"]],[4,5,["G5544"]],[5,6,["G2532"]],[6,13,["G5363","G2316","G2257","G4990"]],[13,14,["G2014"]]]},{"k":29928,"v":[[0,1,["G3756"]],[1,2,["G1537"]],[2,3,["G2041"]],[3,4,["G1722"]],[4,5,["G1343"]],[5,6,["G3739"]],[6,7,["G2249"]],[7,9,["G4160"]],[9,10,["G235"]],[10,11,["G2596"]],[11,13,["G848"]],[13,14,["G1656"]],[14,16,["G4982"]],[16,17,["G2248"]],[17,18,["G1223"]],[18,20,["G3067"]],[20,22,["G3824"]],[22,23,["G2532"]],[23,24,["G342"]],[24,27,["G40"]],[27,28,["G4151"]]]},{"k":29929,"v":[[0,1,["G3739"]],[1,3,["G1632"]],[3,4,["G1909"]],[4,5,["G2248"]],[5,6,["G4146"]],[6,7,["G1223"]],[7,8,["G2424"]],[8,9,["G5547"]],[9,10,["G2257"]],[10,11,["G4990"]]]},{"k":29930,"v":[[0,1,["G2443"]],[1,3,["G1344"]],[3,5,["G1565"]],[5,6,["G5485"]],[6,10,["G1096"]],[10,11,["G2818"]],[11,12,["G2596"]],[12,15,["G1680"]],[15,17,["G166"]],[17,18,["G2222"]]]},{"k":29931,"v":[[0,4,["G4103"]],[4,5,["G3056"]],[5,6,["G2532"]],[6,8,["(G5130)"]],[8,10,["G1014"]],[10,12,["G4571"]],[12,14,["G1226"]],[14,15,["G2443"]],[15,19,["G4100"]],[19,21,["G2316"]],[21,24,["G5431"]],[24,26,["G4291"]],[26,27,["G2570"]],[27,28,["G2041"]],[28,30,["G5023"]],[30,31,["G2076"]],[31,32,["G2570"]],[32,33,["G2532"]],[33,34,["G5624"]],[34,36,["G444"]]]},{"k":29932,"v":[[0,1,["G1161"]],[1,2,["G4026"]],[2,3,["G3474"]],[3,4,["G2214"]],[4,5,["G2532"]],[5,6,["G1076"]],[6,7,["G2532"]],[7,8,["G2054"]],[8,9,["G2532"]],[9,10,["G3163"]],[10,13,["G3544"]],[13,14,["G1063"]],[14,16,["G1526"]],[16,17,["G512"]],[17,18,["G2532"]],[18,19,["G3152"]]]},{"k":29933,"v":[[0,2,["G444"]],[2,6,["G141"]],[6,7,["G3326"]],[7,9,["G3391"]],[9,10,["G2532"]],[10,11,["G1208"]],[11,12,["G3559"]],[12,13,["G3868"]]]},{"k":29934,"v":[[0,1,["G1492"]],[1,2,["G3754"]],[2,6,["G5108"]],[6,8,["G1612"]],[8,9,["G2532"]],[9,10,["G264"]],[10,11,["G5607"]],[11,14,["G843"]]]},{"k":29935,"v":[[0,1,["G3752"]],[1,4,["G3992"]],[4,5,["G734"]],[5,6,["G4314"]],[6,7,["G4571"]],[7,8,["G2228"]],[8,9,["G5190"]],[9,11,["G4704"]],[11,13,["G2064"]],[13,14,["G4314"]],[14,15,["G3165"]],[15,16,["G1519"]],[16,17,["G3533"]],[17,18,["G1063"]],[18,21,["G2919"]],[21,22,["G1563"]],[22,24,["G3914"]]]},{"k":29936,"v":[[0,9,["G4311","G2211","G3588","G3544","G2532","G625"]],[9,10,["G4709"]],[10,11,["G2443"]],[11,12,["G3367"]],[12,14,["G3007"]],[14,16,["G846"]]]},{"k":29937,"v":[[0,1,["G1161"]],[1,3,["G2251"]],[3,4,["G2532"]],[4,5,["G3129"]],[5,7,["G4291"]],[7,8,["G2570"]],[8,9,["G2041"]],[9,10,["G1519"]],[10,11,["G316"]],[11,12,["G5532"]],[12,13,["G2443"]],[13,15,["G5600"]],[15,16,["G3361"]],[16,17,["G175"]]]},{"k":29938,"v":[[0,1,["G3956"]],[1,2,["G3588"]],[2,4,["G3326"]],[4,5,["G1700"]],[5,6,["G782"]],[6,7,["G4571"]],[7,8,["G782"]],[8,11,["G5368"]],[11,12,["G2248"]],[12,13,["G1722"]],[13,15,["G4102"]],[15,16,["G5485"]],[16,18,["G3326"]],[18,19,["G5216"]],[19,20,["G3956"]],[20,21,["G281"]]]},{"k":29939,"v":[[0,1,["G3972"]],[1,3,["G1198"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,7,["G2532"]],[7,8,["G5095"]],[8,10,["G80"]],[10,12,["G5371"]],[12,15,["G27"]],[15,16,["G2532"]],[16,17,["G4904"]]]},{"k":29940,"v":[[0,1,["G2532"]],[1,4,["G27"]],[4,5,["G682"]],[5,6,["G2532"]],[6,7,["G751"]],[7,8,["G2257"]],[8,9,["G4961"]],[9,10,["G2532"]],[10,12,["G3588"]],[12,13,["G1577"]],[13,14,["G2596"]],[14,15,["G4675"]],[15,16,["G3624"]]]},{"k":29941,"v":[[0,1,["G5485"]],[1,3,["G5213"]],[3,4,["G2532"]],[4,5,["G1515"]],[5,6,["G575"]],[6,7,["G2316"]],[7,8,["G2257"]],[8,9,["G3962"]],[9,10,["G2532"]],[10,12,["G2962"]],[12,13,["G2424"]],[13,14,["G5547"]]]},{"k":29942,"v":[[0,2,["G2168"]],[2,3,["G3450"]],[3,4,["G2316"]],[4,5,["G4160"]],[5,6,["G3417"]],[6,8,["G4675"]],[8,9,["G3842"]],[9,10,["G1909"]],[10,11,["G3450"]],[11,12,["G4335"]]]},{"k":29943,"v":[[0,1,["G191"]],[1,3,["G4675"]],[3,4,["G26"]],[4,5,["G2532"]],[5,6,["G4102"]],[6,7,["G3739"]],[7,9,["G2192"]],[9,10,["G4314"]],[10,11,["G3588"]],[11,12,["G2962"]],[12,13,["G2424"]],[13,14,["G2532"]],[14,15,["G1519"]],[15,16,["G3956"]],[16,17,["G40"]]]},{"k":29944,"v":[[0,1,["G3704"]],[1,2,["G3588"]],[2,3,["G2842"]],[3,5,["G4675"]],[5,6,["G4102"]],[6,8,["G1096"]],[8,9,["G1756"]],[9,10,["G1722"]],[10,12,["G1922"]],[12,14,["G3956"]],[14,16,["G18"]],[16,17,["G3588"]],[17,19,["G1722"]],[19,20,["G5213"]],[20,21,["G1519"]],[21,22,["G5547"]],[22,23,["G2424"]]]},{"k":29945,"v":[[0,1,["G1063"]],[1,3,["G2192"]],[3,4,["G4183"]],[4,5,["G5485"]],[5,6,["G2532"]],[6,7,["G3874"]],[7,8,["G1909"]],[8,9,["G4675"]],[9,10,["G26"]],[10,11,["G3754"]],[11,12,["G3588"]],[12,13,["G4698"]],[13,15,["G3588"]],[15,16,["G40"]],[16,18,["G373"]],[18,19,["G1223"]],[19,20,["G4675"]],[20,21,["G80"]]]},{"k":29946,"v":[[0,1,["G1352"]],[1,5,["G2192"]],[5,6,["G4183"]],[6,7,["G3954"]],[7,8,["G1722"]],[8,9,["G5547"]],[9,11,["G2004"]],[11,12,["G4671"]],[12,16,["G433"]]]},{"k":29947,"v":[[0,4,["G1223","G26"]],[4,6,["G3123"]],[6,7,["G3870"]],[7,9,["G5607"]],[9,12,["G5108"]],[12,13,["G5613"]],[13,14,["G3972"]],[14,16,["G4246"]],[16,17,["G1161"]],[17,18,["G3570"]],[18,19,["G2532"]],[19,21,["G1198"]],[21,23,["G2424"]],[23,24,["G5547"]]]},{"k":29948,"v":[[0,2,["G3870"]],[2,3,["G4571"]],[3,4,["G4012"]],[4,5,["G1699"]],[5,6,["G5043"]],[6,7,["G3682"]],[7,8,["G3739"]],[8,11,["G1080"]],[11,12,["G1722"]],[12,13,["G3450"]],[13,14,["G1199"]]]},{"k":29949,"v":[[0,1,["G3588"]],[1,4,["G4218"]],[4,7,["G4671"]],[7,8,["G890"]],[8,9,["G1161"]],[9,10,["G3570"]],[10,11,["G2173"]],[11,13,["G4671"]],[13,14,["G2532"]],[14,16,["G1698"]]]},{"k":29950,"v":[[0,1,["G3739"]],[1,5,["G375"]],[5,6,["G4771"]],[6,7,["G1161"]],[7,8,["G4355"]],[8,9,["G846"]],[9,11,["G5123"]],[11,13,["G1699"]],[13,14,["G4698"]]]},{"k":29951,"v":[[0,1,["G3739"]],[1,2,["G1473"]],[2,3,["G1014"]],[3,5,["G2722"]],[5,6,["G4314"]],[6,7,["G1683"]],[7,8,["G2443"]],[8,11,["G5228","G4675"]],[11,16,["G1247"]],[16,17,["G3427"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,20,["G1199"]],[20,22,["G3588"]],[22,23,["G2098"]]]},{"k":29952,"v":[[0,1,["G1161"]],[1,2,["G5565"]],[2,3,["G4674"]],[3,4,["G1106"]],[4,5,["G2309"]],[5,7,["G4160"]],[7,8,["G3762"]],[8,9,["G2443"]],[9,10,["G4675"]],[10,11,["G18"]],[11,13,["G3361"]],[13,14,["G5600"]],[14,17,["G5613"]],[17,18,["G2596"]],[18,19,["G318"]],[19,20,["G235"]],[20,21,["G2596","G1595"]]]},{"k":29953,"v":[[0,1,["G1063"]],[1,2,["G5029"]],[2,4,["G1223","G5124"]],[4,5,["G5563"]],[5,6,["G4314"]],[6,8,["G5610"]],[8,9,["G2443"]],[9,12,["G568"]],[12,13,["G846"]],[13,15,["G166"]]]},{"k":29954,"v":[[0,2,["G3765"]],[2,3,["G5613"]],[3,5,["G1401"]],[5,6,["G235"]],[6,7,["G5228"]],[7,9,["G1401"]],[9,11,["G80"]],[11,12,["G27"]],[12,13,["G3122"]],[13,15,["G1698"]],[15,16,["G1161"]],[16,18,["G4214"]],[18,19,["G3123"]],[19,21,["G4671"]],[21,22,["G2532"]],[22,23,["G1722"]],[23,25,["G4561"]],[25,26,["G2532"]],[26,27,["G1722"]],[27,29,["G2962"]]]},{"k":29955,"v":[[0,1,["G1487"]],[1,3,["G2192"]],[3,4,["G1691"]],[4,5,["G3767"]],[5,7,["G2844"]],[7,8,["G4355"]],[8,9,["G846"]],[9,10,["G5613"]],[10,11,["G1691"]]]},{"k":29956,"v":[[0,0,["(G1161)"]],[0,1,["G1487"]],[1,4,["G91"]],[4,5,["G4571"]],[5,6,["G2228"]],[6,7,["G3784"]],[7,9,["G5100"]],[9,14,["G1677","G5124","G1698"]]]},{"k":29957,"v":[[0,1,["G1473"]],[1,2,["G3972"]],[2,4,["G1125"]],[4,8,["G1699"]],[8,9,["G5495"]],[9,10,["G1473"]],[10,12,["G661"]],[12,14,["G2443"]],[14,17,["G3361"]],[17,18,["G3004"]],[18,20,["G4671"]],[20,21,["G3754"]],[21,23,["G4359"]],[23,25,["G3427"]],[25,26,["G2532"]],[26,29,["G4572"]],[29,30,[]]]},{"k":29958,"v":[[0,1,["G3483"]],[1,2,["G80"]],[2,4,["G1473"]],[4,6,["G3685"]],[6,8,["G4675"]],[8,9,["G1722"]],[9,11,["G2962"]],[11,12,["G373"]],[12,13,["G3450"]],[13,14,["G4698"]],[14,15,["G1722"]],[15,17,["G2962"]]]},{"k":29959,"v":[[0,2,["G3982"]],[2,4,["G4675"]],[4,5,["G5218"]],[5,7,["G1125"]],[7,9,["G4671"]],[9,10,["G1492"]],[10,11,["G3754"]],[11,14,["G2532"]],[14,15,["G4160"]],[15,17,["G5228","G3739"]],[17,19,["G3004"]]]},{"k":29960,"v":[[0,1,["G1161"]],[1,2,["G260"]],[2,3,["G2090"]],[3,4,["G3427"]],[4,5,["G2532"]],[5,7,["G3578"]],[7,8,["G1063"]],[8,10,["G1679"]],[10,11,["G3754"]],[11,12,["G1223"]],[12,13,["G5216"]],[13,14,["G4335"]],[14,18,["G5483"]],[18,20,["G5213"]]]},{"k":29961,"v":[[0,2,["G782"]],[2,3,["G4571"]],[3,4,["G1889"]],[4,5,["G3450"]],[5,6,["G4869"]],[6,7,["G1722"]],[7,8,["G5547"]],[8,9,["G2424"]]]},{"k":29962,"v":[[0,1,["G3138"]],[1,2,["G708"]],[2,3,["G1214"]],[3,4,["G3065"]],[4,5,["G3450"]],[5,6,["G4904"]]]},{"k":29963,"v":[[0,1,["G3588"]],[1,2,["G5485"]],[2,4,["G2257"]],[4,5,["G2962"]],[5,6,["G2424"]],[6,7,["G5547"]],[7,9,["G3326"]],[9,10,["G5216"]],[10,11,["G4151"]],[11,12,["G281"]]]},{"k":29964,"v":[[0,1,["G2316"]],[1,5,["G4181"]],[5,6,["G2532"]],[6,9,["G4187"]],[9,10,["G2980"]],[10,13,["G3819"]],[13,15,["G3588"]],[15,16,["G3962"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G4396"]]]},{"k":29965,"v":[[0,2,["G1909"]],[2,3,["G5130"]],[3,4,["G2078"]],[4,5,["G2250"]],[5,6,["G2980"]],[6,8,["G2254"]],[8,9,["G1722"]],[9,11,["G5207"]],[11,12,["G3739"]],[12,15,["G5087"]],[15,16,["G2818"]],[16,19,["G3956"]],[19,20,["G1223"]],[20,21,["G3739"]],[21,22,["G2532"]],[22,24,["G4160"]],[24,25,["G3588"]],[25,26,["G165"]]]},{"k":29966,"v":[[0,1,["G3739"]],[1,2,["G5607"]],[2,4,["G541"]],[4,7,["G1391"]],[7,8,["G2532"]],[8,11,["G5481"]],[11,13,["G848"]],[13,14,["G5287"]],[14,15,["G5037"]],[15,16,["G5342"]],[16,18,["G3956"]],[18,20,["G3588"]],[20,21,["G4487"]],[21,23,["G846"]],[23,24,["G1411"]],[24,28,["G1223"]],[28,29,["G1438"]],[29,30,["G4160","G2512"]],[30,31,["G2257"]],[31,32,["G266"]],[32,34,["G2523"]],[34,35,["G1722"]],[35,38,["G1188"]],[38,40,["G3588"]],[40,41,["G3172"]],[41,42,["G1722"]],[42,43,["G5308"]]]},{"k":29967,"v":[[0,2,["G1096"]],[2,4,["G5118"]],[4,5,["G2909"]],[5,7,["G3588"]],[7,8,["G32"]],[8,9,["G3745"]],[9,14,["G2816"]],[14,17,["G1313"]],[17,18,["G3686"]],[18,19,["G3844"]],[19,20,["G846"]]]},{"k":29968,"v":[[0,1,["G1063"]],[1,3,["G5101"]],[3,5,["G3588"]],[5,6,["G32"]],[6,7,["G2036"]],[7,11,["G4218"]],[11,12,["G4771"]],[12,13,["G1488"]],[13,14,["G3450"]],[14,15,["G5207"]],[15,17,["G4594"]],[17,19,["G1473"]],[19,20,["G1080"]],[20,21,["G4571"]],[21,22,["G2532"]],[22,23,["G3825"]],[23,24,["G1473"]],[24,26,["G2071"]],[26,28,["G846"]],[28,29,["(G1519)"]],[29,30,["G3962"]],[30,31,["G2532"]],[31,32,["G846"]],[32,34,["G2071"]],[34,36,["G3427"]],[36,37,["(G1519)"]],[37,38,["G5207"]]]},{"k":29969,"v":[[0,1,["G1161"]],[1,2,["G3825"]],[2,3,["G3752"]],[3,6,["G1521"]],[6,7,["G3588"]],[7,8,["G4416"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G3625"]],[11,13,["G3004"]],[13,14,["G2532"]],[14,16,["G3956"]],[16,18,["G32"]],[18,20,["G2316"]],[20,21,["G4352"]],[21,22,["G846"]]]},{"k":29970,"v":[[0,1,["G2532"]],[1,4,["G4314","(G3588)","G32"]],[4,6,["G3004"]],[6,8,["G4160"]],[8,9,["G848"]],[9,10,["G32"]],[10,11,["G4151"]],[11,12,["G2532"]],[12,13,["G848"]],[13,14,["G3011"]],[14,16,["G5395"]],[16,18,["G4442"]]]},{"k":29971,"v":[[0,1,["G1161"]],[1,2,["G4314"]],[2,3,["G3588"]],[3,4,["G5207"]],[4,7,["G4675"]],[7,8,["G2362"]],[8,10,["G2316"]],[10,15,["G1519","G165","G165"]],[15,17,["G4464"]],[17,19,["G2118"]],[19,21,["G3588"]],[21,22,["G4464"]],[22,24,["G4675"]],[24,25,["G932"]]]},{"k":29972,"v":[[0,3,["G25"]],[3,4,["G1343"]],[4,5,["G2532"]],[5,6,["G3404"]],[6,7,["G458"]],[7,8,["G1223","G5124"]],[8,9,["G2316"]],[9,11,["G4675"]],[11,12,["G2316"]],[12,14,["G5548"]],[14,15,["G4571"]],[15,18,["G1637"]],[18,20,["G20"]],[20,21,["G3844"]],[21,22,["G4675"]],[22,23,["G3353"]]]},{"k":29973,"v":[[0,1,["G2532"]],[1,2,["G4771"]],[2,3,["G2962"]],[3,4,["G2596"]],[4,6,["G746"]],[6,10,["G2311"]],[10,12,["G3588"]],[12,13,["G1093"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G3772"]],[16,17,["G1526"]],[17,19,["G2041"]],[19,21,["G4675"]],[21,22,["G5495"]]]},{"k":29974,"v":[[0,1,["G846"]],[1,3,["G622"]],[3,4,["G1161"]],[4,5,["G4771"]],[5,6,["G1265"]],[6,7,["G2532"]],[7,9,["G3956"]],[9,12,["G3822"]],[12,13,["G5613"]],[13,16,["G2440"]]]},{"k":29975,"v":[[0,1,["G2532"]],[1,2,["G5616"]],[2,4,["G4018"]],[4,9,["G1667","G846"]],[9,10,["G2532"]],[10,14,["G236"]],[14,15,["G1161"]],[15,16,["G4771"]],[16,17,["G1488"]],[17,18,["G3588"]],[18,19,["G846"]],[19,20,["G2532"]],[20,21,["G4675"]],[21,22,["G2094"]],[22,24,["G3756"]],[24,25,["G1587"]]]},{"k":29976,"v":[[0,1,["G1161"]],[1,2,["G4314"]],[2,3,["G5101"]],[3,5,["G3588"]],[5,6,["G32"]],[6,7,["G2046"]],[7,11,["G4218"]],[11,12,["G2521"]],[12,13,["G1537"]],[13,14,["G3450"]],[14,16,["G1188"]],[16,17,["G2193","G302"]],[17,19,["G5087"]],[19,20,["G4675"]],[20,21,["G2190"]],[21,23,["G5286","G4675","G4228"]]]},{"k":29977,"v":[[0,1,["G1526"]],[1,3,["G3780"]],[3,4,["G3956"]],[4,5,["G3010"]],[5,6,["G4151"]],[6,8,["G649"]],[8,10,["G1519","G1248"]],[10,11,["G1223"]],[11,15,["G3195"]],[15,16,["G2816"]],[16,18,["G4991"]]]},{"k":29978,"v":[[0,1,["G1223","G5124"]],[1,2,["G2248"]],[2,3,["G1163"]],[3,9,["G4337","G4056"]],[9,16,["G191"]],[16,20,["G3379"]],[20,25,["G3901"]]]},{"k":29979,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G3056"]],[4,5,["G2980"]],[5,6,["G1223"]],[6,7,["G32"]],[7,8,["G1096"]],[8,9,["G949"]],[9,10,["G2532"]],[10,11,["G3956"]],[11,12,["G3847"]],[12,13,["G2532"]],[13,14,["G3876"]],[14,15,["G2983"]],[15,17,["G1738"]],[17,20,["G3405"]]]},{"k":29980,"v":[[0,1,["G4459"]],[1,3,["G2249"]],[3,4,["G1628"]],[4,7,["G272"]],[7,9,["G5082"]],[9,10,["G4991"]],[10,11,["G3748"]],[11,15,["G2983","G746"]],[15,18,["G2980"]],[18,19,["G1223"]],[19,20,["G3588"]],[20,21,["G2962"]],[21,22,["G2532"]],[22,24,["G950"]],[24,25,["G1519"]],[25,26,["G2248"]],[26,27,["G5259"]],[27,30,["G191"]],[30,31,[]]]},{"k":29981,"v":[[0,1,["G2316"]],[1,5,["G4901"]],[5,6,["G5037"]],[6,8,["G4592"]],[8,9,["G2532"]],[9,10,["G5059"]],[10,11,["G2532"]],[11,13,["G4164"]],[13,14,["G1411"]],[14,15,["G2532"]],[15,16,["G3311"]],[16,19,["G40"]],[19,20,["G4151"]],[20,21,["G2596"]],[21,24,["G848"]],[24,25,["G2308"]]]},{"k":29982,"v":[[0,1,["G1063"]],[1,4,["G32"]],[4,7,["G3756"]],[7,10,["G5293"]],[10,11,["G3588"]],[11,12,["G3625"]],[12,14,["G3195"]],[14,15,["G4012","G3739"]],[15,17,["G2980"]]]},{"k":29983,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,6,["G4225"]],[6,7,["G1263"]],[7,8,["G3004"]],[8,9,["G5101"]],[9,10,["G2076"]],[10,11,["G444"]],[11,12,["G3754"]],[12,15,["G3403"]],[15,17,["G846"]],[17,18,["G2228"]],[18,20,["G5207"]],[20,22,["G444"]],[22,23,["G3754"]],[23,25,["G1980"]],[25,26,["G846"]]]},{"k":29984,"v":[[0,2,["G1642"]],[2,3,["G846"]],[3,6,["G5100","G1024"]],[6,7,["G3844"]],[7,9,["G32"]],[9,11,["G4737"]],[11,12,["G846"]],[12,14,["G1391"]],[14,15,["G2532"]],[15,16,["G5092"]],[16,17,["G2532"]],[17,19,["G2525"]],[19,20,["G846"]],[20,21,["G1909"]],[21,22,["G3588"]],[22,23,["G2041"]],[23,25,["G4675"]],[25,26,["G5495"]]]},{"k":29985,"v":[[0,7,["G5293","G3956"]],[7,8,["G5270"]],[8,9,["G846"]],[9,10,["G4228"]],[10,11,["G1063"]],[11,19,["G5293","G3956"]],[19,20,["G846"]],[20,22,["G863"]],[22,23,["G3762"]],[23,28,["G506"]],[28,29,["G846"]],[29,30,["G1161"]],[30,31,["G3568"]],[31,33,["G3708"]],[33,35,["G3768"]],[35,37,["G3956"]],[37,39,["G5293"]],[39,40,["G846"]]]},{"k":29986,"v":[[0,1,["G1161"]],[1,3,["G991"]],[3,4,["G2424"]],[4,10,["G1642","G1024","G5100"]],[10,11,["G3844"]],[11,13,["G32"]],[13,14,["G1223"]],[14,15,["G3588"]],[15,16,["G3804"]],[16,18,["G2288"]],[18,19,["G4737"]],[19,21,["G1391"]],[21,22,["G2532"]],[22,23,["G5092"]],[23,24,["G3704"]],[24,28,["G5485"]],[28,30,["G2316"]],[30,32,["G1089"]],[32,33,["G2288"]],[33,34,["G5228"]],[34,36,["G3956"]]]},{"k":29987,"v":[[0,1,["G1063"]],[1,3,["G4241"]],[3,4,["G846"]],[4,5,["G1223"]],[5,6,["G3739"]],[6,9,["G3956"]],[9,10,["G2532"]],[10,11,["G1223"]],[11,12,["G3739"]],[12,15,["G3956"]],[15,17,["G71"]],[17,18,["G4183"]],[18,19,["G5207"]],[19,20,["G1519"]],[20,21,["G1391"]],[21,29,["G5048","G3588","G747","G846","G4991"]],[29,30,["G1223"]],[30,31,["G3804"]]]},{"k":29988,"v":[[0,1,["G1063"]],[1,2,["G5037"]],[2,5,["G37"]],[5,6,["G2532"]],[6,10,["G37"]],[10,12,["G3956"]],[12,13,["G1537"]],[13,14,["G1520"]],[14,15,["G1223"]],[15,16,["G3739"]],[16,17,["G156"]],[17,20,["G3756"]],[20,21,["G1870"]],[21,23,["G2564"]],[23,24,["G846"]],[24,25,["G80"]]]},{"k":29989,"v":[[0,1,["G3004"]],[1,4,["G518"]],[4,5,["G4675"]],[5,6,["G3686"]],[6,8,["G3450"]],[8,9,["G80"]],[9,10,["G1722"]],[10,12,["G3319"]],[12,15,["G1577"]],[15,19,["G5214"]],[19,21,["G4571"]]]},{"k":29990,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,3,["G1473"]],[3,7,["G2071","G3982"]],[7,8,["G1909"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G3825"]],[11,12,["G2400"]],[12,13,["G1473"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G3813"]],[16,17,["G3739"]],[17,18,["G2316"]],[18,20,["G1325"]],[20,21,["G3427"]]]},{"k":29991,"v":[[0,1,["G1893"]],[1,2,["G3767"]],[2,4,["G3588"]],[4,5,["G3813"]],[5,7,["G2841"]],[7,9,["G4561"]],[9,10,["G2532"]],[10,11,["G129"]],[11,12,["G846"]],[12,13,["G2532"]],[13,15,["G3898"]],[15,17,["G3348"]],[17,19,["G3588"]],[19,20,["G846"]],[20,21,["G2443"]],[21,22,["G1223"]],[22,23,["G2288"]],[23,26,["G2673"]],[26,29,["G2192"]],[29,30,["G3588"]],[30,31,["G2904"]],[31,33,["G2288"]],[33,35,["G5123"]],[35,36,["G3588"]],[36,37,["G1228"]]]},{"k":29992,"v":[[0,1,["G2532"]],[1,2,["G525"]],[2,3,["G5128"]],[3,4,["G3745"]],[4,6,["G5401"]],[6,8,["G2288"]],[8,9,["G2258"]],[9,10,["G3956"]],[10,11,["(G1223)"]],[11,12,["G2198"]],[12,14,["G1777"]],[14,15,["G1397"]]]},{"k":29993,"v":[[0,1,["G1063"]],[1,2,["G1222"]],[2,6,["G1949","G3756"]],[6,11,["G32"]],[11,12,["G235"]],[12,15,["G1949"]],[15,18,["G4690"]],[18,20,["G11"]]]},{"k":29994,"v":[[0,1,["G3606"]],[1,2,["G2596"]],[2,4,["G3956"]],[4,6,["G3784"]],[6,12,["G3666"]],[12,14,["G80"]],[14,15,["G2443"]],[15,18,["G1096"]],[18,20,["G1655"]],[20,21,["G2532"]],[21,22,["G4103"]],[22,24,["G749"]],[24,26,["G4314"]],[26,29,["G2316"]],[29,33,["G2433"]],[33,34,["G3588"]],[34,35,["G266"]],[35,37,["G3588"]],[37,38,["G2992"]]]},{"k":29995,"v":[[0,1,["G1063"]],[1,2,["G1722"]],[2,3,["G3739"]],[3,4,["G846"]],[4,7,["G3958"]],[7,9,["G3985"]],[9,12,["G1410"]],[12,14,["G997"]],[14,18,["G3985"]]]},{"k":29996,"v":[[0,1,["G3606"]],[1,2,["G40"]],[2,3,["G80"]],[3,4,["G3353"]],[4,7,["G2032"]],[7,8,["G2821"]],[8,9,["G2657"]],[9,10,["G3588"]],[10,11,["G652"]],[11,12,["G2532"]],[12,14,["G749"]],[14,16,["G2257"]],[16,17,["G3671"]],[17,18,["G5547"]],[18,19,["G2424"]]]},{"k":29997,"v":[[0,2,["G5607"]],[2,3,["G4103"]],[3,7,["G4160"]],[7,8,["G846"]],[8,9,["G5613"]],[9,10,["G2532"]],[10,11,["G3475"]],[11,14,["G1722"]],[14,15,["G3650"]],[15,16,["G846"]],[16,17,["G3624"]]]},{"k":29998,"v":[[0,1,["G1063"]],[1,2,["G3778"]],[2,6,["G515"]],[6,8,["G4119"]],[8,9,["G1391"]],[9,10,["G3844"]],[10,11,["G3475"]],[11,12,["G2596","G3745"]],[12,17,["G2680"]],[17,19,["(G846)"]],[19,20,["G2192"]],[20,21,["G4119"]],[21,22,["G5092"]],[22,24,["G3588"]],[24,25,["G3624"]]]},{"k":29999,"v":[[0,1,["G1063"]],[1,2,["G3956"]],[2,3,["G3624"]],[3,5,["G2680"]],[5,6,["G5259"]],[6,7,["G5100"]],[7,9,["G1161"]],[9,12,["G2680"]],[12,14,["G3956"]],[14,16,["G2316"]]]},{"k":30000,"v":[[0,1,["G2532"]],[1,2,["G3475"]],[2,3,["G3303"]],[3,5,["G4103"]],[5,6,["G1722"]],[6,7,["G3650"]],[7,8,["G846"]],[8,9,["G3624"]],[9,10,["G5613"]],[10,12,["G2324"]],[12,13,["G1519"]],[13,15,["G3142"]],[15,24,["G2980"]]]},{"k":30001,"v":[[0,1,["G1161"]],[1,2,["G5547"]],[2,3,["G5613"]],[3,5,["G5207"]],[5,6,["G1909"]],[6,8,["G848"]],[8,9,["G3624"]],[9,10,["G3739"]],[10,11,["G3624"]],[11,12,["G2070"]],[12,13,["G2249"]],[13,14,["G1437","G4007"]],[14,17,["G2722"]],[17,18,["G3588"]],[18,19,["G3954"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G2745"]],[22,24,["G3588"]],[24,25,["G1680"]],[25,26,["G949"]],[26,27,["G3360"]],[27,29,["G5056"]]]},{"k":30002,"v":[[0,1,["G1352"]],[1,2,["G2531"]],[2,3,["G3588"]],[3,4,["G40"]],[4,5,["G4151"]],[5,6,["G3004"]],[6,8,["G4594"]],[8,9,["G1437"]],[9,12,["G191"]],[12,13,["G846"]],[13,14,["G5456"]]]},{"k":30003,"v":[[0,1,["G4645"]],[1,2,["G3361"]],[2,3,["G5216"]],[3,4,["G2588"]],[4,5,["G5613"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G3894"]],[8,9,["G2596"]],[9,10,["G3588"]],[10,11,["G2250"]],[11,13,["G3986"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G2048"]]]},{"k":30004,"v":[[0,1,["G3757"]],[1,2,["G5216"]],[2,3,["G3962"]],[3,4,["G3985"]],[4,5,["G3165"]],[5,6,["G1381"]],[6,7,["G3165"]],[7,8,["G2532"]],[8,9,["G1492"]],[9,10,["G3450"]],[10,11,["G2041"]],[11,12,["G5062"]],[12,13,["G2094"]]]},{"k":30005,"v":[[0,1,["G1352"]],[1,4,["G4360"]],[4,6,["G1565"]],[6,7,["G1074"]],[7,8,["G2532"]],[8,9,["G2036"]],[9,12,["G104"]],[12,13,["G4105"]],[13,16,["G2588"]],[16,17,["G1161"]],[17,18,["G846"]],[18,20,["G3756"]],[20,21,["G1097"]],[21,22,["G3450"]],[22,23,["G3598"]]]},{"k":30006,"v":[[0,1,["G5613"]],[1,3,["G3660"]],[3,4,["G1722"]],[4,5,["G3450"]],[5,6,["G3709"]],[6,7,["(G1487)"]],[7,10,["G1525"]],[10,11,["G1519"]],[11,12,["G3450"]],[12,13,["G2663"]]]},{"k":30007,"v":[[0,2,["G991"]],[2,3,["G80"]],[3,4,["G3379"]],[4,6,["G2071"]],[6,7,["G1722"]],[7,8,["G5100"]],[8,10,["G5216"]],[10,12,["G4190"]],[12,13,["G2588"]],[13,15,["G570"]],[15,17,["G868"]],[17,18,["G575"]],[18,20,["G2198"]],[20,21,["G2316"]]]},{"k":30008,"v":[[0,1,["G235"]],[1,2,["G3870"]],[2,4,["G1438"]],[4,5,["G2596","G1538","G2250"]],[5,6,["G891","G3757"]],[6,7,["G3588"]],[7,9,["G2564"]],[9,11,["G4594"]],[11,12,["G3363"]],[12,13,["G5100"]],[13,14,["G1537"]],[14,15,["G5216"]],[15,17,["G4645"]],[17,20,["G539"]],[20,22,["G266"]]]},{"k":30009,"v":[[0,1,["G1063"]],[1,4,["G1096"]],[4,5,["G3353"]],[5,7,["G5547"]],[7,8,["G1437","G4007"]],[8,10,["G2722"]],[10,11,["G3588"]],[11,12,["G746"]],[12,15,["G5287"]],[15,16,["G949"]],[16,17,["G3360"]],[17,19,["G5056"]]]},{"k":30010,"v":[[0,4,["G3004"]],[4,6,["G4594"]],[6,7,["G1437"]],[7,10,["G191"]],[10,11,["G846"]],[11,12,["G5456"]],[12,13,["G4645"]],[13,14,["G3361"]],[14,15,["G5216"]],[15,16,["G2588"]],[16,17,["G5613"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,20,["G3894"]]]},{"k":30011,"v":[[0,1,["G1063"]],[1,2,["G5100"]],[2,6,["G191"]],[6,8,["G3893"]],[8,9,["G235"]],[9,10,["G3756"]],[10,11,["G3956"]],[11,13,["G1831"]],[13,15,["G1537"]],[15,16,["G125"]],[16,17,["G1223"]],[17,18,["G3475"]]]},{"k":30012,"v":[[0,1,["G1161"]],[1,3,["G5101"]],[3,6,["G4360"]],[6,7,["G5062"]],[7,8,["G2094"]],[8,11,["G3780"]],[11,16,["G264"]],[16,17,["G3739"]],[17,18,["G2966"]],[18,19,["G4098"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G2048"]]]},{"k":30013,"v":[[0,1,["G1161"]],[1,3,["G5101"]],[3,4,["G3660"]],[4,9,["G3361"]],[9,10,["G1525"]],[10,11,["G1519"]],[11,12,["G848"]],[12,13,["G2663"]],[13,14,["G1508"]],[14,19,["G544"]]]},{"k":30014,"v":[[0,1,["G2532"]],[1,3,["G991"]],[3,4,["G3754"]],[4,6,["G1410"]],[6,7,["G3756"]],[7,9,["G1525"]],[9,10,["G1223"]],[10,12,["G570"]]]},{"k":30015,"v":[[0,3,["G3767"]],[3,4,["G5399"]],[4,5,["G3379"]],[5,7,["G1860"]],[7,9,["G2641"]],[9,12,["G1525"]],[12,13,["G1519"]],[13,14,["G846"]],[14,15,["G2663"]],[15,16,["G5100"]],[16,17,["G1537"]],[17,18,["G5216"]],[18,20,["G1380"]],[20,23,["G5302"]],[23,25,[]]]},{"k":30016,"v":[[0,1,["G1063"]],[1,3,["(G2532)"]],[3,7,["G2070","G2097"]],[7,10,["G2509"]],[10,12,["G2548"]],[12,13,["G235"]],[13,14,["G3588"]],[14,15,["G3056"]],[15,16,["G189"]],[16,18,["G3756"]],[18,19,["G5623"]],[19,20,["G1565"]],[20,21,["G3361"]],[21,24,["G4786"]],[24,25,["G4102"]],[25,29,["G191"]],[29,30,[]]]},{"k":30017,"v":[[0,1,["G1063"]],[1,5,["G4100"]],[5,7,["G1525"]],[7,8,["G1519"]],[8,9,["G2663"]],[9,10,["G2531"]],[10,12,["G2046"]],[12,13,["G5613"]],[13,16,["G3660"]],[16,17,["G1722"]],[17,18,["G3450"]],[18,19,["G3709"]],[19,20,["G1487"]],[20,23,["G1525"]],[23,24,["G1519"]],[24,25,["G3450"]],[25,26,["G2663"]],[26,27,["G2543"]],[27,28,["G3588"]],[28,29,["G2041"]],[29,31,["G1096"]],[31,32,["G575"]],[32,34,["G2602"]],[34,37,["G2889"]]]},{"k":30018,"v":[[0,1,["G1063"]],[1,3,["G2046"]],[3,7,["G4225"]],[7,8,["G4012"]],[8,9,["G3588"]],[9,10,["G1442"]],[10,14,["G3779"]],[14,15,["G2532"]],[15,16,["G2316"]],[16,18,["G2664"]],[18,19,["G3588"]],[19,20,["G1442"]],[20,21,["G2250"]],[21,22,["G575"]],[22,23,["G3956"]],[23,24,["G848"]],[24,25,["G2041"]]]},{"k":30019,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G5129"]],[3,5,["G3825"]],[5,6,["G1487"]],[6,9,["G1525"]],[9,10,["G1519"]],[10,11,["G3450"]],[11,12,["G2663"]]]},{"k":30020,"v":[[0,1,["G1893"]],[1,2,["G3767"]],[2,4,["G620"]],[4,6,["G5100"]],[6,8,["G1525"]],[8,9,["G1519","G846"]],[9,10,["G2532"]],[10,17,["G2097","G4386"]],[17,20,["G1525","G3756"]],[20,21,["G1223"]],[21,23,["G543"]]]},{"k":30021,"v":[[0,1,["G3825"]],[1,3,["G3724"]],[3,5,["G5100"]],[5,6,["G2250"]],[6,7,["G3004"]],[7,8,["G1722"]],[8,9,["G1138"]],[9,11,["G4594"]],[11,12,["G3326"]],[12,14,["G5118"]],[14,16,["G5550"]],[16,17,["G2531"]],[17,20,["G2046"]],[20,22,["G4594"]],[22,23,["G1437"]],[23,26,["G191"]],[26,27,["G846"]],[27,28,["G5456"]],[28,29,["G4645"]],[29,30,["G3361"]],[30,31,["G5216"]],[31,32,["G2588"]]]},{"k":30022,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G2424"]],[3,7,["G2664","G846"]],[7,11,["G3756","(G302)"]],[11,12,["G3326","G5023"]],[12,14,["G2980"]],[14,15,["G4012"]],[15,16,["G243"]],[16,17,["G2250"]]]},{"k":30023,"v":[[0,2,["G620"]],[2,3,["G686"]],[3,5,["G4520"]],[5,7,["G3588"]],[7,8,["G2992"]],[8,10,["G2316"]]]},{"k":30024,"v":[[0,1,["G1063"]],[1,5,["G1525"]],[5,6,["G1519"]],[6,7,["G846"]],[7,8,["G2663"]],[8,9,["G846"]],[9,10,["G2532"]],[10,12,["G2664"]],[12,13,["G575"]],[13,15,["G848"]],[15,16,["G2041"]],[16,17,["G5618"]],[17,18,["G2316"]],[18,20,["G575"]],[20,21,["G2398"]]]},{"k":30025,"v":[[0,3,["G4704"]],[3,4,["G3767"]],[4,6,["G1525"]],[6,7,["G1519"]],[7,8,["G1565"]],[8,9,["G2663"]],[9,10,["G3363"]],[10,12,["G5100"]],[12,13,["G4098"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G846"]],[16,17,["G5262"]],[17,19,["G543"]]]},{"k":30026,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,5,["G2316"]],[5,7,["G2198"]],[7,8,["G2532"]],[8,9,["G1756"]],[9,10,["G2532"]],[10,11,["G5114"]],[11,12,["G5228"]],[12,13,["G3956"]],[13,14,["G1366"]],[14,15,["G3162"]],[15,16,["G1338"]],[16,17,["G2532"]],[17,18,["G891"]],[18,21,["G3311"]],[21,22,["(G5037)"]],[22,23,["G5590"]],[23,24,["G2532"]],[24,25,["G4151"]],[25,26,["G5037"]],[26,29,["G719"]],[29,30,["G2532"]],[30,31,["G3452"]],[31,32,["G2532"]],[32,35,["G2924"]],[35,38,["G1761"]],[38,39,["G2532"]],[39,40,["G1771"]],[40,43,["G2588"]]]},{"k":30027,"v":[[0,1,["G2532","G3756"]],[1,2,["G2076"]],[2,5,["G2937"]],[5,9,["G852"]],[9,12,["G1799","G846"]],[12,13,["G1161"]],[13,15,["G3956"]],[15,17,["G1131"]],[17,18,["G2532"]],[18,19,["G5136"]],[19,21,["G3588"]],[21,22,["G3788"]],[22,24,["G846"]],[24,25,["G4314"]],[25,26,["G3739"]],[26,30,["G2254","G3056"]]]},{"k":30028,"v":[[0,2,["G3767"]],[2,5,["G2192"]],[5,7,["G3173"]],[7,9,["G749"]],[9,13,["G1330"]],[13,14,["G3588"]],[14,15,["G3772"]],[15,16,["G2424"]],[16,17,["G3588"]],[17,18,["G5207"]],[18,20,["G2316"]],[20,24,["G2902"]],[24,26,["G3671"]]]},{"k":30029,"v":[[0,1,["G1063"]],[1,3,["G2192"]],[3,4,["G3756"]],[4,7,["G749"]],[7,9,["G1410","G3361"]],[9,15,["G4834"]],[15,16,["G2257"]],[16,17,["G769"]],[17,18,["G1161"]],[18,20,["G2596"]],[20,22,["G3956"]],[22,23,["G3985"]],[23,25,["G2596","G3665"]],[25,29,["G5565"]],[29,30,["G266"]]]},{"k":30030,"v":[[0,3,["G3767"]],[3,4,["G4334"]],[4,5,["G3326","G3954"]],[5,7,["G3588"]],[7,8,["G2362"]],[8,10,["G5485"]],[10,11,["G2443"]],[11,14,["G2983"]],[14,15,["G1656"]],[15,16,["G2532"]],[16,17,["G2147"]],[17,18,["G5485"]],[18,24,["G1519","G2121","G996"]]]},{"k":30031,"v":[[0,1,["G1063"]],[1,2,["G3956"]],[2,4,["G749"]],[4,5,["G2983"]],[5,7,["G1537"]],[7,8,["G444"]],[8,10,["G2525"]],[10,11,["G5228"]],[11,12,["G444"]],[12,14,["G3588"]],[14,16,["G4314"]],[16,17,["G2316"]],[17,18,["G2443"]],[18,21,["G4374"]],[21,22,["G5037"]],[22,23,["G1435"]],[23,24,["G2532"]],[24,25,["G2378"]],[25,26,["G5228"]],[26,27,["G266"]]]},{"k":30032,"v":[[0,2,["G1410"]],[2,4,["G3356"]],[4,6,["G3588"]],[6,7,["G50"]],[7,8,["G2532"]],[8,16,["G4105"]],[16,18,["G1893"]],[18,19,["G846"]],[19,21,["G2532"]],[21,24,["G4029"]],[24,25,["G769"]]]},{"k":30033,"v":[[0,1,["G2532"]],[1,4,["G1223","G5026"]],[4,6,["G3784"]],[6,7,["G2531"]],[7,8,["G4012"]],[8,9,["G3588"]],[9,10,["G2992"]],[10,11,["G3779"]],[11,12,["G2532"]],[12,13,["G4012"]],[13,14,["G1438"]],[14,16,["G4374"]],[16,17,["G5228"]],[17,18,["G266"]]]},{"k":30034,"v":[[0,1,["G2532"]],[1,3,["G5100","G3756"]],[3,4,["G2983"]],[4,6,["G5092"]],[6,8,["G1438"]],[8,9,["G235"]],[9,13,["G2564"]],[13,14,["G5259"]],[14,15,["G2316"]],[15,16,["G2509"]],[16,17,["(G2532)"]],[17,18,["G2"]]]},{"k":30035,"v":[[0,1,["G3779"]],[1,2,["G2532"]],[2,3,["G5547"]],[3,4,["G1392"]],[4,5,["G3756"]],[5,6,["G1438"]],[6,9,["G1096"]],[9,12,["G749"]],[12,13,["G235"]],[13,16,["G2980"]],[16,17,["G4314"]],[17,18,["G846"]],[18,19,["G4771"]],[19,20,["G1488"]],[20,21,["G3450"]],[21,22,["G5207"]],[22,24,["G4594"]],[24,26,["G1473"]],[26,27,["G1080"]],[27,28,["G4571"]]]},{"k":30036,"v":[[0,1,["G2531"]],[1,3,["G3004"]],[3,4,["G2532"]],[4,5,["G1722"]],[5,6,["G2087"]],[6,8,["G4771"]],[8,11,["G2409"]],[11,13,["G1519","G165"]],[13,14,["G2596"]],[14,15,["G3588"]],[15,16,["G5010"]],[16,18,["G3198"]]]},{"k":30037,"v":[[0,1,["G3739"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G2250"]],[4,6,["G848"]],[6,7,["G4561"]],[7,12,["G4374","(G5037)"]],[12,13,["G1162"]],[13,14,["G2532"]],[14,15,["G2428"]],[15,16,["G3326"]],[16,17,["G2478"]],[17,18,["G2906"]],[18,19,["G2532"]],[19,20,["G1144"]],[20,21,["G4314"]],[21,25,["G1410"]],[25,27,["G4982"]],[27,28,["G846"]],[28,29,["G1537"]],[29,30,["G2288"]],[30,31,["G2532"]],[31,33,["G1522"]],[33,37,["G575","G2124"]]]},{"k":30038,"v":[[0,1,["G2539"]],[1,3,["G5607"]],[3,5,["G5207"]],[5,7,["G3129"]],[7,9,["G5218"]],[9,10,["G575"]],[10,13,["G3739"]],[13,15,["G3958"]]]},{"k":30039,"v":[[0,1,["G2532"]],[1,4,["G5048"]],[4,6,["G1096"]],[6,8,["G159"]],[8,10,["G166"]],[10,11,["G4991"]],[11,13,["G3956"]],[13,16,["G5219"]],[16,17,["G846"]]]},{"k":30040,"v":[[0,1,["G4316"]],[1,2,["G5259"]],[2,3,["G2316"]],[3,6,["G749"]],[6,7,["G2596"]],[7,8,["G3588"]],[8,9,["G5010"]],[9,11,["G3198"]]]},{"k":30041,"v":[[0,1,["G4012"]],[1,2,["G3739"]],[2,3,["G2254"]],[3,8,["G4183","G3056"]],[8,9,["G2532"]],[9,10,["G1421"]],[10,13,["G3004"]],[13,14,["G1893"]],[14,16,["G1096"]],[16,17,["G3576"]],[17,19,["G189"]]]},{"k":30042,"v":[[0,1,["G1063"]],[1,2,["G2532"]],[2,3,["G1223"]],[3,4,["G3588"]],[4,5,["G5550"]],[5,7,["G3784"]],[7,9,["G1511"]],[9,10,["G1320"]],[10,12,["G2192"]],[12,13,["G5532"]],[13,16,["G1321"]],[16,17,["G5209"]],[17,18,["G3825"]],[18,19,["G5101"]],[19,21,["G3588"]],[21,22,["G746"]],[22,23,["G4747"]],[23,25,["G3588"]],[25,26,["G3051"]],[26,28,["G2316"]],[28,29,["G2532"]],[29,31,["G1096"]],[31,34,["G2192"]],[34,35,["G5532"]],[35,37,["G1051"]],[37,38,["G2532"]],[38,39,["G3756"]],[39,42,["G4731","G5160"]]]},{"k":30043,"v":[[0,1,["G1063"]],[1,3,["G3956"]],[3,5,["G3348"]],[5,6,["G1051"]],[6,8,["G552"]],[8,11,["G3056"]],[11,13,["G1343"]],[13,14,["G1063"]],[14,16,["G2076"]],[16,18,["G3516"]]]},{"k":30044,"v":[[0,1,["G1161"]],[1,3,["G4731","G5160"]],[3,4,["G2076"]],[4,11,["G5046"]],[11,17,["G1223"]],[17,18,["G1838"]],[18,19,["G2192"]],[19,21,["G145"]],[21,22,["G1128"]],[22,23,["G4314"]],[23,24,["G1253"]],[24,25,["G5037"]],[25,26,["G2570"]],[26,27,["G2532"]],[27,28,["G2556"]]]},{"k":30045,"v":[[0,1,["G1352"]],[1,2,["G863"]],[2,3,["G3588"]],[3,4,["G746"]],[4,6,["G3588"]],[6,7,["G3056"]],[7,9,["G5547"]],[9,13,["G5342"]],[13,14,["G1909"]],[14,15,["G5047"]],[15,16,["G3361"]],[16,17,["G2598"]],[17,18,["G3825"]],[18,20,["G2310"]],[20,22,["G3341"]],[22,23,["G575"]],[23,24,["G3498"]],[24,25,["G2041"]],[25,26,["G2532"]],[26,28,["G4102"]],[28,29,["G1909"]],[29,30,["G2316"]]]},{"k":30046,"v":[[0,3,["G1322"]],[3,5,["G909"]],[5,6,["G5037"]],[6,9,["G1936"]],[9,11,["G5495"]],[11,12,["G5037"]],[12,14,["G386"]],[14,17,["G3498"]],[17,18,["G2532"]],[18,20,["G166"]],[20,21,["G2917"]]]},{"k":30047,"v":[[0,1,["G2532"]],[1,2,["G5124"]],[2,5,["G4160"]],[5,6,["G1437","G4007"]],[6,7,["G2316"]],[7,8,["G2010"]]]},{"k":30048,"v":[[0,1,["G1063"]],[1,4,["G102"]],[4,10,["G5461","G530"]],[10,11,["G5037"]],[11,13,["G1089"]],[13,15,["G3588"]],[15,16,["G2032"]],[16,17,["G1431"]],[17,18,["G2532"]],[18,20,["G1096"]],[20,21,["G3353"]],[21,24,["G40"]],[24,25,["G4151"]]]},{"k":30049,"v":[[0,1,["G2532"]],[1,3,["G1089"]],[3,5,["G2570"]],[5,6,["G4487"]],[6,8,["G2316"]],[8,9,["G5037"]],[9,11,["G1411"]],[11,14,["G165"]],[14,16,["G3195"]]]},{"k":30050,"v":[[0,2,["(G2532)"]],[2,5,["G3895"]],[5,7,["G340"]],[7,9,["G3825"]],[9,10,["G1519"]],[10,11,["G3341"]],[11,21,["G388","G1438","G3588","G5207","G2316"]],[21,22,["G2532"]],[22,28,["G3856"]]]},{"k":30051,"v":[[0,1,["G1063"]],[1,3,["G1093"]],[3,6,["G4095"]],[6,7,["G3588"]],[7,8,["G5205"]],[8,10,["G2064"]],[10,11,["G4178"]],[11,12,["G1909"]],[12,13,["G846"]],[13,14,["G2532"]],[14,16,["G5088"]],[16,17,["G1008"]],[17,18,["G2111"]],[18,20,["G1565"]],[20,21,["G1223"]],[21,22,["G3739"]],[22,24,["(G2532)"]],[24,25,["G1090"]],[25,26,["G3335"]],[26,27,["G2129"]],[27,28,["G575"]],[28,29,["G2316"]]]},{"k":30052,"v":[[0,1,["G1161"]],[1,4,["G1627"]],[4,5,["G173"]],[5,6,["G2532"]],[6,7,["G5146"]],[7,9,["G96"]],[9,10,["G2532"]],[10,13,["G1451"]],[13,14,["G2671"]],[14,15,["G3739"]],[15,16,["G5056"]],[16,20,["G1519","G2740"]]]},{"k":30053,"v":[[0,1,["G1161"]],[1,2,["G27"]],[2,5,["G3982"]],[5,7,["G2909"]],[7,8,["G4012"]],[8,9,["G5216"]],[9,10,["G2532"]],[10,13,["G2192"]],[13,14,["G4991"]],[14,15,["G1499"]],[15,17,["G3779"]],[17,18,["G2980"]]]},{"k":30054,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,4,["G3756"]],[4,5,["G94"]],[5,7,["G1950"]],[7,8,["G5216"]],[8,9,["G2041"]],[9,10,["G2532"]],[10,11,["G2873"]],[11,13,["G26"]],[13,14,["G3739"]],[14,17,["G1731"]],[17,18,["G1519"]],[18,19,["G846"]],[19,20,["G3686"]],[20,25,["G1247"]],[25,27,["G3588"]],[27,28,["G40"]],[28,29,["G2532"]],[29,31,["G1247"]]]},{"k":30055,"v":[[0,1,["G1161"]],[1,3,["G1937"]],[3,6,["G1538"]],[6,8,["G5216"]],[8,10,["G1731"]],[10,11,["G3588"]],[11,12,["G846"]],[12,13,["G4710"]],[13,14,["G4314"]],[14,15,["G3588"]],[15,17,["G4136"]],[17,19,["G1680"]],[19,20,["G891"]],[20,22,["G5056"]]]},{"k":30056,"v":[[0,1,["G2443"]],[1,3,["G1096"]],[3,4,["G3361"]],[4,5,["G3576"]],[5,6,["G1161"]],[6,7,["G3402"]],[7,11,["G1223"]],[11,12,["G4102"]],[12,13,["G2532"]],[13,14,["G3115"]],[14,15,["G2816"]],[15,16,["G3588"]],[16,17,["G1860"]]]},{"k":30057,"v":[[0,1,["G1063"]],[1,3,["G2316"]],[3,5,["G1861"]],[5,7,["G11"]],[7,8,["G1893"]],[8,10,["G2192"]],[10,11,["G3660"]],[11,12,["G2596"]],[12,13,["G3762"]],[13,14,["G3187"]],[14,16,["G3660"]],[16,17,["G2596"]],[17,18,["G1438"]]]},{"k":30058,"v":[[0,1,["G3004"]],[1,2,["G2229","G3375"]],[2,3,["G2127"]],[3,6,["G2127"]],[6,7,["G4571"]],[7,8,["G2532"]],[8,9,["G4129"]],[9,12,["G4129"]],[12,13,["G4571"]]]},{"k":30059,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,7,["G3114"]],[7,9,["G2013"]],[9,10,["G3588"]],[10,11,["G1860"]]]},{"k":30060,"v":[[0,1,["G1063"]],[1,2,["G444"]],[2,3,["G3303"]],[3,4,["G3660"]],[4,5,["G2596"]],[5,6,["G3588"]],[6,7,["G3187"]],[7,8,["G2532"]],[8,10,["G3727"]],[10,11,["G1519"]],[11,12,["G951"]],[12,15,["G846"]],[15,17,["G4009"]],[17,19,["G3956"]],[19,20,["G485"]]]},{"k":30061,"v":[[0,1,["G1722","G3739"]],[1,2,["G2316"]],[2,3,["G1014"]],[3,5,["G4054"]],[5,7,["G1925"]],[7,9,["G3588"]],[9,10,["G2818"]],[10,12,["G1860"]],[12,13,["G3588"]],[13,14,["G276"]],[14,16,["G848"]],[16,17,["G1012"]],[17,18,["G3315"]],[18,22,["G3727"]]]},{"k":30062,"v":[[0,1,["G2443"]],[1,2,["G1223"]],[2,3,["G1417"]],[3,4,["G276"]],[4,5,["G4229"]],[5,6,["G1722"]],[6,7,["G3739"]],[7,10,["G102"]],[10,12,["G2316"]],[12,14,["G5574"]],[14,17,["G2192"]],[17,19,["G2478"]],[19,20,["G3874"]],[20,25,["G2703"]],[25,29,["G2902"]],[29,31,["G1680"]],[31,33,["G4295"]],[33,34,[]]]},{"k":30063,"v":[[0,1,["G3739"]],[1,4,["G2192"]],[4,5,["G5613"]],[5,7,["G45"]],[7,9,["G3588"]],[9,10,["G5590"]],[10,11,["G5037"]],[11,12,["G804"]],[12,13,["G2532"]],[13,14,["G949"]],[14,15,["G2532"]],[15,17,["G1525"]],[17,18,["G1519"]],[18,20,["G2082"]],[20,21,["G3588"]],[21,22,["G2665"]]]},{"k":30064,"v":[[0,1,["G3699"]],[1,3,["G4274"]],[3,5,["G5228"]],[5,6,["G2257"]],[6,7,["G1525"]],[7,9,["G2424"]],[9,10,["G1096"]],[10,13,["G749"]],[13,15,["G1519","G165"]],[15,16,["G2596"]],[16,17,["G3588"]],[17,18,["G5010"]],[18,20,["G3198"]]]},{"k":30065,"v":[[0,1,["G1063"]],[1,2,["G3778"]],[2,3,["G3198"]],[3,4,["G935"]],[4,6,["G4532"]],[6,7,["G2409"]],[7,9,["G3588"]],[9,11,["G5310"]],[11,12,["G2316"]],[12,14,["G4876"]],[14,15,["G11"]],[15,16,["G5290"]],[16,17,["G575"]],[17,18,["G3588"]],[18,19,["G2871"]],[19,21,["G3588"]],[21,22,["G935"]],[22,23,["G2532"]],[23,24,["G2127"]],[24,25,["G846"]]]},{"k":30066,"v":[[0,2,["G3739"]],[2,3,["G2532"]],[3,4,["G11"]],[4,5,["G3307"]],[5,8,["G1181"]],[8,9,["G575"]],[9,10,["G3956"]],[10,11,["G4412","G3303"]],[11,14,["G2059"]],[14,15,["G935"]],[15,17,["G1343"]],[17,18,["G1161"]],[18,20,["G1899"]],[20,21,["G2532"]],[21,22,["G935"]],[22,24,["G4532"]],[24,26,["G3603"]],[26,27,["G935"]],[27,29,["G1515"]]]},{"k":30067,"v":[[0,2,["G540"]],[2,4,["G282"]],[4,6,["G35"]],[6,7,["G2192"]],[7,8,["G3383"]],[8,9,["G746"]],[9,11,["G2250"]],[11,12,["G3383"]],[12,13,["G5056"]],[13,15,["G2222"]],[15,16,["G1161"]],[16,19,["G871"]],[19,20,["G3588"]],[20,21,["G5207"]],[21,23,["G2316"]],[23,24,["G3306"]],[24,26,["G2409"]],[26,27,["G1519","G1336"]]]},{"k":30068,"v":[[0,1,["G1161"]],[1,2,["G2334"]],[2,4,["G4080"]],[4,6,["G3778"]],[6,9,["G3739"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G3966"]],[12,13,["G11"]],[13,14,["G1325"]],[14,16,["G1181"]],[16,17,["G1537"]],[17,18,["G3588"]],[18,19,["G205"]]]},{"k":30069,"v":[[0,1,["G2532"]],[1,2,["G3303"]],[2,3,["G3588"]],[3,6,["G1537"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G3017"]],[10,12,["G2983"]],[12,13,["G3588"]],[13,17,["G2405"]],[17,18,["G2192"]],[18,20,["G1785"]],[20,23,["G586"]],[23,25,["G3588"]],[25,26,["G2992"]],[26,27,["G2596"]],[27,29,["G3588"]],[29,30,["G3551"]],[30,32,["G5123"]],[32,34,["G848"]],[34,35,["G80"]],[35,36,["G2539"]],[36,38,["G1831"]],[38,40,["G1537"]],[40,41,["G3588"]],[41,42,["G3751"]],[42,44,["G11"]]]},{"k":30070,"v":[[0,1,["G1161"]],[1,7,["G1075","G3361"]],[7,8,["G1537"]],[8,9,["G846"]],[9,11,["G1183"]],[11,13,["G11"]],[13,14,["G2532"]],[14,15,["G2127"]],[15,18,["G2192"]],[18,19,["G3588"]],[19,20,["G1860"]]]},{"k":30071,"v":[[0,1,["G1161"]],[1,2,["G5565"]],[2,3,["G3956"]],[3,4,["G485"]],[4,5,["G3588"]],[5,6,["G1640"]],[6,8,["G2127"]],[8,9,["G5259"]],[9,10,["G3588"]],[10,11,["G2909"]]]},{"k":30072,"v":[[0,1,["G2532"]],[1,2,["G5602","G3303"]],[2,3,["G444"]],[3,5,["G599"]],[5,6,["G2983"]],[6,7,["G1181"]],[7,8,["G1161"]],[8,9,["G1563"]],[9,17,["G3140"]],[17,18,["G3754"]],[18,20,["G2198"]]]},{"k":30073,"v":[[0,1,["G2532"]],[1,6,["G5613","G2031","G2036"]],[6,7,["G3017"]],[7,8,["G2532"]],[8,10,["G2983"]],[10,11,["G1181"]],[11,13,["G1183"]],[13,14,["G1223"]],[14,15,["G11"]]]},{"k":30074,"v":[[0,1,["G1063"]],[1,3,["G2258"]],[3,4,["G2089"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G3751"]],[7,10,["G3962"]],[10,11,["G3753"]],[11,12,["G3198"]],[12,13,["G4876"]],[13,14,["G846"]]]},{"k":30075,"v":[[0,1,["G1487","(G3303)"]],[1,2,["G3767"]],[2,3,["G5050"]],[3,4,["G2258"]],[4,5,["G1223"]],[5,6,["G3588"]],[6,7,["G3020"]],[7,8,["G2420"]],[8,9,["G1063"]],[9,10,["G1909"]],[10,11,["G846"]],[11,12,["G3588"]],[12,13,["G2992"]],[13,16,["G3549"]],[16,17,["G5101"]],[17,18,["G2089"]],[18,19,["G5532"]],[19,23,["G2087"]],[23,24,["G2409"]],[24,26,["G450"]],[26,27,["G2596"]],[27,28,["G3588"]],[28,29,["G5010"]],[29,31,["G3198"]],[31,32,["G2532"]],[32,33,["G3756"]],[33,35,["G3004"]],[35,36,["G2596"]],[36,37,["G3588"]],[37,38,["G5010"]],[38,40,["G2"]]]},{"k":30076,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G2420"]],[3,5,["G3346"]],[5,8,["G1096"]],[8,9,["G1537"]],[9,10,["G318"]],[10,12,["G3331"]],[12,13,["G2532"]],[13,16,["G3551"]]]},{"k":30077,"v":[[0,1,["G1063"]],[1,3,["G1909"]],[3,4,["G3739"]],[4,6,["G5023"]],[6,8,["G3004"]],[8,9,["G3348"]],[9,11,["G2087"]],[11,12,["G5443"]],[12,13,["G575"]],[13,14,["G3739"]],[14,16,["G3762"]],[16,18,["G4337"]],[18,20,["G3588"]],[20,21,["G2379"]]]},{"k":30078,"v":[[0,1,["G1063"]],[1,4,["G4271"]],[4,5,["G3754"]],[5,6,["G2257"]],[6,7,["G2962"]],[7,8,["G393"]],[8,10,["G1537"]],[10,11,["G2455"]],[11,12,["G1519"]],[12,13,["G3739"]],[13,14,["G5443"]],[14,15,["G3475"]],[15,16,["G2980"]],[16,17,["G3762"]],[17,18,["G4012"]],[18,19,["G2420"]]]},{"k":30079,"v":[[0,1,["G2532"]],[1,3,["G2076"]],[3,4,["G2089"]],[4,6,["G4054"]],[6,7,["G2612"]],[7,9,["G1487"]],[9,10,["G2596"]],[10,11,["G3588"]],[11,12,["G3665"]],[12,14,["G3198"]],[14,16,["G450"]],[16,17,["G2087"]],[17,18,["G2409"]]]},{"k":30080,"v":[[0,1,["G3739"]],[1,3,["G1096"]],[3,4,["G3756"]],[4,5,["G2596"]],[5,7,["G3551"]],[7,10,["G4559"]],[10,11,["G1785"]],[11,12,["G235"]],[12,13,["G2596"]],[13,15,["G1411"]],[15,18,["G179"]],[18,19,["G2222"]]]},{"k":30081,"v":[[0,1,["G1063"]],[1,3,["G3140"]],[3,4,["G4771"]],[4,7,["G2409"]],[7,9,["G1519","G165"]],[9,10,["G2596"]],[10,11,["G3588"]],[11,12,["G5010"]],[12,14,["G3198"]]]},{"k":30082,"v":[[0,1,["G1063"]],[1,3,["G1096"]],[3,4,["G3303"]],[4,6,["G115"]],[6,9,["G1785"]],[9,11,["G4254"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G772"]],[14,15,["G2532"]],[15,16,["G512"]],[16,17,["G846"]]]},{"k":30083,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3551"]],[3,6,["G5048","G3762"]],[6,7,["G1161"]],[7,10,["G1898"]],[10,13,["G2909"]],[13,14,["G1680"]],[14,16,["G1223"]],[16,18,["G3739"]],[18,21,["G1448"]],[21,23,["G2316"]]]},{"k":30084,"v":[[0,1,["G2532"]],[1,3,["G2596","G3745"]],[3,4,["G3756"]],[4,5,["G5565"]],[5,7,["G3728"]],[7,11,[]]]},{"k":30085,"v":[[0,1,["G1063"]],[1,3,["G2409","(G3303)"]],[3,4,["G1526"]],[4,5,["G1096"]],[5,6,["G5565"]],[6,8,["G3728"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G3326"]],[11,13,["G3728"]],[13,14,["G1223"]],[14,17,["G3004"]],[17,18,["G4314"]],[18,19,["G846"]],[19,21,["G2962"]],[21,22,["G3660"]],[22,23,["G2532"]],[23,25,["G3756"]],[25,26,["G3338"]],[26,27,["G4771"]],[27,30,["G2409"]],[30,32,["G1519","G165"]],[32,33,["G2596"]],[33,34,["G3588"]],[34,35,["G5010"]],[35,37,["G3198"]]]},{"k":30086,"v":[[0,1,["G2596"]],[1,3,["G5118"]],[3,5,["G2424"]],[5,6,["G1096"]],[6,8,["G1450"]],[8,11,["G2909"]],[11,12,["G1242"]]]},{"k":30087,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3303"]],[3,4,["G1526"]],[4,5,["G4119"]],[5,6,["G2409"]],[6,11,["G2967"]],[11,13,["G3887"]],[13,17,["G2288"]]]},{"k":30088,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,5,["G846"]],[5,6,["G3306"]],[6,7,["G1519","G165"]],[7,8,["G2192"]],[8,10,["G531"]],[10,11,["G2420"]]]},{"k":30089,"v":[[0,1,["G3606"]],[1,4,["G1410"]],[4,5,["G2532"]],[5,7,["G4982"]],[7,9,["G1519"]],[9,10,["G3588"]],[10,11,["G3838"]],[11,13,["G4334"]],[13,15,["G2316"]],[15,16,["G1223"]],[16,17,["G846"]],[17,20,["G3842"]],[20,21,["G2198"]],[21,24,["G1793"]],[24,25,["G5228"]],[25,26,["G846"]]]},{"k":30090,"v":[[0,1,["G1063"]],[1,2,["G5108"]],[2,5,["G749"]],[5,6,["G4241"]],[6,7,["G2254"]],[7,10,["G3741"]],[10,11,["G172"]],[11,12,["G283"]],[12,13,["G5563"]],[13,14,["G575"]],[14,15,["G268"]],[15,16,["G2532"]],[16,17,["G1096"]],[17,18,["G5308"]],[18,20,["G3588"]],[20,21,["G3772"]]]},{"k":30091,"v":[[0,1,["G3739"]],[1,2,["G2192","G318"]],[2,3,["G3756"]],[3,4,["G2596","G2250"]],[4,5,["G5618"]],[5,8,["G749"]],[8,11,["G399"]],[11,12,["G2378"]],[12,13,["G4386"]],[13,14,["G5228"]],[14,16,["G2398"]],[16,17,["G266"]],[17,19,["G1899"]],[19,20,["(G3588)"]],[20,21,["G3588"]],[21,22,["G2992"]],[22,23,["G1063"]],[23,24,["G5124"]],[24,26,["G4160"]],[26,27,["G2178"]],[27,31,["G399"]],[31,32,["G1438"]]]},{"k":30092,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3551"]],[3,4,["G2525"]],[4,5,["G444"]],[5,7,["G749"]],[7,9,["G2192"]],[9,10,["G769"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,13,["G3056"]],[13,15,["G3588"]],[15,16,["G3728"]],[16,17,["G3588"]],[17,19,["G3326"]],[19,20,["G3588"]],[20,21,["G3551"]],[21,24,["G5207"]],[24,27,["G5048"]],[27,29,["G1519","G165"]]]},{"k":30093,"v":[[0,1,["G1161"]],[1,2,["G1909"]],[2,8,["G3004"]],[8,12,["G2774"]],[12,14,["G2192"]],[14,15,["G5108"]],[15,18,["G749"]],[18,19,["G3739"]],[19,21,["G2523"]],[21,22,["G1722"]],[22,25,["G1188"]],[25,27,["G3588"]],[27,28,["G2362"]],[28,30,["G3588"]],[30,31,["G3172"]],[31,32,["G1722"]],[32,33,["G3588"]],[33,34,["G3772"]]]},{"k":30094,"v":[[0,2,["G3011"]],[2,4,["G3588"]],[4,5,["G39"]],[5,6,["G2532"]],[6,8,["G3588"]],[8,9,["G228"]],[9,10,["G4633"]],[10,11,["G3739"]],[11,12,["G3588"]],[12,13,["G2962"]],[13,14,["G4078"]],[14,15,["G2532"]],[15,16,["G3756"]],[16,17,["G444"]]]},{"k":30095,"v":[[0,1,["G1063"]],[1,2,["G3956"]],[2,4,["G749"]],[4,6,["G2525"]],[6,8,["G4374","(G5037)"]],[8,9,["G1435"]],[9,10,["G2532"]],[10,11,["G2378"]],[11,12,["G3606"]],[12,16,["G316"]],[16,19,["G5126"]],[19,20,["G2192"]],[20,21,["G5100","G3739"]],[21,22,["G2532"]],[22,24,["G4374"]]]},{"k":30096,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["(G3303)"]],[3,4,["G2258"]],[4,5,["G1909"]],[5,6,["G1093"]],[6,9,["G3761"]],[9,10,["G2258","G302"]],[10,12,["G2409"]],[12,16,["G5607"]],[16,17,["G2409"]],[17,19,["G4374"]],[19,20,["G1435"]],[20,21,["G2596"]],[21,23,["G3588"]],[23,24,["G3551"]]]},{"k":30097,"v":[[0,1,["G3748"]],[1,2,["G3000"]],[2,5,["G5262"]],[5,6,["G2532"]],[6,7,["G4639"]],[7,10,["G2032"]],[10,11,["G2531"]],[11,12,["G3475"]],[12,16,["G5537"]],[16,20,["G3195"]],[20,22,["G2005"]],[22,23,["G3588"]],[23,24,["G4633"]],[24,25,["G1063"]],[25,26,["G3708"]],[26,27,["G5346"]],[27,31,["G4160"]],[31,33,["G3956"]],[33,34,["G2596"]],[34,36,["G3588"]],[36,37,["G5179"]],[37,38,["G1166"]],[38,40,["G4671"]],[40,41,["G1722"]],[41,42,["G3588"]],[42,43,["G3735"]]]},{"k":30098,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,5,["G5177"]],[5,8,["G1313"]],[8,9,["G3009"]],[9,12,["G3745"]],[12,13,["G2532"]],[13,15,["G2076"]],[15,17,["G3316"]],[17,20,["G2909"]],[20,21,["G1242"]],[21,22,["G3748"]],[22,24,["G3549"]],[24,25,["G1909"]],[25,26,["G2909"]],[26,27,["G1860"]]]},{"k":30099,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G1565"]],[3,4,["G4413"]],[4,7,["G2258"]],[7,8,["G273"]],[8,11,["G3756","(G302)"]],[11,12,["G5117"]],[12,15,["G2212"]],[15,18,["G1208"]]]},{"k":30100,"v":[[0,1,["G1063"]],[1,3,["G3201"]],[3,5,["G846"]],[5,7,["G3004"]],[7,8,["G2400"]],[8,10,["G2250"]],[10,11,["G2064"]],[11,12,["G3004"]],[12,14,["G2962"]],[14,15,["G2532"]],[15,18,["G4931"]],[18,20,["G2537"]],[20,21,["G1242"]],[21,22,["G1909"]],[22,23,["G3588"]],[23,24,["G3624"]],[24,26,["G2474"]],[26,27,["G2532"]],[27,28,["G1909"]],[28,29,["G3588"]],[29,30,["G3624"]],[30,32,["G2455"]]]},{"k":30101,"v":[[0,1,["G3756"]],[1,2,["G2596"]],[2,4,["G3588"]],[4,5,["G1242"]],[5,6,["G3739"]],[6,8,["G4160"]],[8,10,["G846"]],[10,11,["G3962"]],[11,12,["G1722"]],[12,14,["G2250"]],[14,16,["G3450"]],[16,17,["G1949"]],[17,18,["G846"]],[18,20,["G3588"]],[20,21,["G5495"]],[21,23,["G1806"]],[23,24,["G846"]],[24,26,["G1537"]],[26,28,["G1093"]],[28,30,["G125"]],[30,31,["G3754"]],[31,32,["G846"]],[32,33,["G1696"]],[33,34,["G3756"]],[34,35,["G1722"]],[35,36,["G3450"]],[36,37,["G1242"]],[37,39,["G2504"]],[39,42,["G272","G846"]],[42,43,["G3004"]],[43,45,["G2962"]]]},{"k":30102,"v":[[0,1,["G3754"]],[1,2,["G3778"]],[2,4,["G3588"]],[4,5,["G1242"]],[5,6,["G3739"]],[6,9,["G1303"]],[9,11,["G3588"]],[11,12,["G3624"]],[12,14,["G2474"]],[14,15,["G3326"]],[15,16,["G1565"]],[16,17,["G2250"]],[17,18,["G3004"]],[18,20,["G2962"]],[20,23,["G1325"]],[23,24,["G3450"]],[24,25,["G3551"]],[25,26,["G1519"]],[26,27,["G846"]],[27,28,["G1271"]],[28,29,["G2532"]],[29,30,["G1924"]],[30,31,["G846"]],[31,32,["G1909"]],[32,33,["G846"]],[33,34,["G2588"]],[34,35,["G2532"]],[35,38,["G2071"]],[38,40,["G846"]],[40,41,["(G1519)"]],[41,42,["G2316"]],[42,43,["G2532"]],[43,44,["G846"]],[44,46,["G2071"]],[46,48,["G3427"]],[48,49,["(G1519)"]],[49,50,["G2992"]]]},{"k":30103,"v":[[0,1,["G2532"]],[1,4,["G3364"]],[4,5,["G1321"]],[5,7,["G1538"]],[7,8,["G848"]],[8,9,["G4139"]],[9,10,["G2532"]],[10,12,["G1538"]],[12,13,["G848"]],[13,14,["G80"]],[14,15,["G3004"]],[15,16,["G1097"]],[16,17,["G3588"]],[17,18,["G2962"]],[18,19,["G3754"]],[19,20,["G3956"]],[20,22,["G1492"]],[22,23,["G3165"]],[23,24,["G575"]],[24,26,["G3398","(G846)"]],[26,27,["G2193"]],[27,29,["G3173","(G846)"]]]},{"k":30104,"v":[[0,1,["G3754"]],[1,4,["G2071"]],[4,5,["G2436"]],[5,7,["G846"]],[7,8,["G93"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G266"]],[11,12,["G2532"]],[12,13,["G846"]],[13,14,["G458"]],[14,17,["G3415"]],[17,19,["G3364","G2089"]]]},{"k":30105,"v":[[0,4,["G3004"]],[4,6,["G2537"]],[6,13,["G3822","G3588","G4413"]],[13,14,["G1161"]],[14,17,["G3822"]],[17,18,["G2532"]],[18,20,["G1095"]],[20,25,["G1451","G854"]]]},{"k":30106,"v":[[0,1,["G3767"]],[1,2,["G3303"]],[2,3,["G3588"]],[3,4,["G4413"]],[4,6,["G2192"]],[6,7,["G2532"]],[7,8,["G1345"]],[8,11,["G2999"]],[11,12,["G5037"]],[12,14,["G2886"]],[14,15,["G39"]]]},{"k":30107,"v":[[0,1,["G1063"]],[1,5,["G4633"]],[5,6,["G2680"]],[6,7,["G3588"]],[7,8,["G4413"]],[8,9,["G1722","G3739"]],[9,11,["(G5037","G3739)"]],[11,12,["G3087"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G5132"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G4286","G740"]],[18,19,["G3748"]],[19,21,["G3004"]],[21,23,["G39"]]]},{"k":30108,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,3,["G3588"]],[3,4,["G1208"]],[4,5,["G2665"]],[5,7,["G4633"]],[7,10,["G3004"]],[10,14,["G39","G39"]]]},{"k":30109,"v":[[0,2,["G2192"]],[2,4,["G5552"]],[4,5,["G2369"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G2787"]],[8,10,["G3588"]],[10,11,["G1242"]],[11,12,["G4028"]],[12,14,["G3840"]],[14,16,["G5552"]],[16,17,["G1722","G3739"]],[17,20,["G5553"]],[20,21,["G4713"]],[21,23,["G2192"]],[23,24,["G3131"]],[24,25,["G2532"]],[25,26,["G2"]],[26,27,["G4464"]],[27,29,["G985"]],[29,30,["G2532"]],[30,31,["G3588"]],[31,32,["G4109"]],[32,34,["G3588"]],[34,35,["G1242"]]]},{"k":30110,"v":[[0,1,["G1161"]],[1,2,["G5231"]],[2,3,["G846"]],[3,5,["G5502"]],[5,7,["G1391"]],[7,8,["G2683"]],[8,9,["G3588"]],[9,10,["G2435"]],[10,11,["G4012"]],[11,12,["G3739"]],[12,14,["G2076","G3756"]],[14,15,["G3568"]],[15,16,["G3004"]],[16,17,["G2596","G3313"]]]},{"k":30111,"v":[[0,1,["G1161"]],[1,4,["G5130"]],[4,6,["G3779"]],[6,7,["G2680"]],[7,8,["G3588"]],[8,9,["G2409"]],[9,10,["G1524"]],[10,11,["G1275"]],[11,12,["G1519","(G3303)"]],[12,13,["G3588"]],[13,14,["G4413"]],[14,15,["G4633"]],[15,16,["G2005"]],[16,17,["G3588"]],[17,18,["G2999"]],[18,20,[]]]},{"k":30112,"v":[[0,1,["G1161"]],[1,2,["G1519"]],[2,3,["G3588"]],[3,4,["G1208"]],[4,6,["G3588"]],[6,8,["G749"]],[8,9,["G3441"]],[9,10,["G530"]],[10,12,["G1763"]],[12,13,["G3756"]],[13,14,["G5565"]],[14,15,["G129"]],[15,16,["G3739"]],[16,18,["G4374"]],[18,19,["G5228"]],[19,20,["G1438"]],[20,21,["G2532"]],[21,23,["G3588"]],[23,24,["G51"]],[24,26,["G3588"]],[26,27,["G2992"]]]},{"k":30113,"v":[[0,1,["G3588"]],[1,2,["G40"]],[2,3,["G4151"]],[3,4,["G5124"]],[4,5,["G1213"]],[5,7,["G3588"]],[7,8,["G3598"]],[8,10,["G3588"]],[10,13,["G39"]],[13,16,["G3380"]],[16,18,["G5319"]],[18,21,["G3588"]],[21,22,["G4413"]],[22,23,["G4633"]],[23,24,["G2192"]],[24,25,["G2089"]],[25,26,["G4714"]]]},{"k":30114,"v":[[0,1,["G3748"]],[1,4,["G3850"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G2540"]],[7,9,["G1764"]],[9,10,["G2596"]],[10,11,["G3739"]],[11,13,["G4374"]],[13,14,["G5037"]],[14,15,["G1435"]],[15,16,["G2532"]],[16,17,["G2378"]],[17,19,["G1410"]],[19,20,["G3361"]],[20,27,["G5048","G3588","G3000"]],[27,29,["G2596"]],[29,32,["G4893"]]]},{"k":30115,"v":[[0,3,["G3440"]],[3,4,["G1909"]],[4,5,["G1033"]],[5,6,["G2532"]],[6,7,["G4188"]],[7,8,["G2532"]],[8,9,["G1313"]],[9,10,["G909"]],[10,11,["G2532"]],[11,12,["G4561"]],[12,13,["G1345"]],[13,14,["G1945"]],[14,17,["G3360"]],[17,19,["G2540"]],[19,21,["G1357"]]]},{"k":30116,"v":[[0,1,["G1161"]],[1,2,["G5547"]],[2,4,["G3854"]],[4,7,["G749"]],[7,10,["G18"]],[10,12,["G3195"]],[12,13,["G1223"]],[13,15,["G3187"]],[15,16,["G2532"]],[16,18,["G5046"]],[18,19,["G4633"]],[19,20,["G3756"]],[20,23,["G5499"]],[23,27,["G5123"]],[27,28,["G3756"]],[28,30,["G5026"]],[30,31,["G2937"]]]},{"k":30117,"v":[[0,1,["G3761"]],[1,2,["G1223"]],[2,4,["G129"]],[4,6,["G5131"]],[6,7,["G2532"]],[7,8,["G3448"]],[8,9,["G1161"]],[9,10,["G1223"]],[10,12,["G2398"]],[12,13,["G129"]],[13,16,["G1525"]],[16,17,["G2178"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,21,["G39"]],[21,23,["G2147"]],[23,24,["G166"]],[24,25,["G3085"]],[25,27,[]]]},{"k":30118,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G129"]],[4,6,["G5022"]],[6,7,["G2532"]],[7,9,["G5131"]],[9,10,["G2532"]],[10,12,["G4700"]],[12,15,["G1151"]],[15,16,["G4472"]],[16,17,["G3588"]],[17,18,["G2840"]],[18,19,["G37"]],[19,20,["G4314"]],[20,21,["G3588"]],[21,22,["G2514"]],[22,24,["G3588"]],[24,25,["G4561"]]]},{"k":30119,"v":[[0,2,["G4214"]],[2,3,["G3123"]],[3,5,["G3588"]],[5,6,["G129"]],[6,8,["G5547"]],[8,9,["G3739"]],[9,10,["G1223"]],[10,12,["G166"]],[12,13,["G4151"]],[13,14,["G4374"]],[14,15,["G1438"]],[15,17,["G299"]],[17,19,["G2316"]],[19,20,["G2511"]],[20,21,["G5216"]],[21,22,["G4893"]],[22,23,["G575"]],[23,24,["G3498"]],[24,25,["G2041"]],[25,27,["G3000"]],[27,29,["G2198"]],[29,30,["G2316"]]]},{"k":30120,"v":[[0,1,["G2532"]],[1,4,["G1223","G5124"]],[4,6,["G2076"]],[6,8,["G3316"]],[8,11,["G2537"]],[11,12,["G1242"]],[12,13,["G3704"]],[13,17,["G2288","G1096"]],[17,18,["G1519"]],[18,20,["G629"]],[20,22,["G3588"]],[22,23,["G3847"]],[23,26,["G1909"]],[26,27,["G3588"]],[27,28,["G4413"]],[28,29,["G1242"]],[29,33,["G2564"]],[33,35,["G2983"]],[35,36,["G3588"]],[36,37,["G1860"]],[37,39,["G166"]],[39,40,["G2817"]]]},{"k":30121,"v":[[0,1,["G1063"]],[1,2,["G3699"]],[2,4,["G1242"]],[4,10,["G318"]],[10,11,["G5342"]],[11,13,["G2288"]],[13,15,["G3588"]],[15,16,["G1303"]]]},{"k":30122,"v":[[0,1,["G1063"]],[1,3,["G1242"]],[3,6,["G949"]],[6,10,["G1909","G3498"]],[10,11,["G1893"]],[11,18,["G2480","G3379"]],[18,19,["G3753"]],[19,20,["G3588"]],[20,21,["G1303"]],[21,22,["G2198"]]]},{"k":30123,"v":[[0,1,["G3606"]],[1,2,["G3761"]],[2,3,["G3588"]],[3,4,["G4413"]],[4,7,["G1457"]],[7,8,["G5565"]],[8,9,["G129"]]]},{"k":30124,"v":[[0,1,["G1063"]],[1,2,["(G5259)"]],[2,3,["G3475"]],[3,5,["G2980"]],[5,6,["G3956"]],[6,7,["G1785"]],[7,9,["G3956"]],[9,10,["G3588"]],[10,11,["G2992"]],[11,12,["G2596"]],[12,15,["G3551"]],[15,17,["G2983"]],[17,18,["G3588"]],[18,19,["G129"]],[19,21,["G3448"]],[21,22,["G2532"]],[22,24,["G5131"]],[24,25,["G3326"]],[25,26,["G5204"]],[26,27,["G2532"]],[27,28,["G2847"]],[28,29,["G2053"]],[29,30,["G2532"]],[30,31,["G5301"]],[31,33,["G4472"]],[33,34,["G5037"]],[34,35,["G3588"]],[35,36,["G975"]],[36,37,["G2532"]],[37,38,["G3956"]],[38,39,["G3588"]],[39,40,["G2992"]]]},{"k":30125,"v":[[0,1,["G3004"]],[1,2,["G5124"]],[2,4,["G3588"]],[4,5,["G129"]],[5,7,["G3588"]],[7,8,["G1242"]],[8,9,["G3739"]],[9,10,["G2316"]],[10,12,["G1781"]],[12,13,["G4314"]],[13,14,["G5209"]]]},{"k":30126,"v":[[0,1,["G3668"]],[1,3,["G4472"]],[3,5,["G129"]],[5,6,["G1161"]],[6,7,["G3588"]],[7,8,["G4633"]],[8,9,["G2532"]],[9,10,["G3956"]],[10,11,["G3588"]],[11,12,["G4632"]],[12,14,["G3588"]],[14,15,["G3009"]]]},{"k":30127,"v":[[0,1,["G2532"]],[1,2,["G4975"]],[2,4,["G3956"]],[4,6,["G2596"]],[6,7,["G3588"]],[7,8,["G3551"]],[8,9,["G2511"]],[9,10,["G1722"]],[10,11,["G129"]],[11,12,["G2532"]],[12,13,["G5565"]],[13,16,["G130"]],[16,17,["G1096"]],[17,18,["G3756"]],[18,19,["G859"]]]},{"k":30128,"v":[[0,3,["G3767"]],[3,4,["G318"]],[4,6,["G3588","(G3303)"]],[6,7,["G5262"]],[7,9,["G3588"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G3772"]],[12,15,["G2511"]],[15,17,["G5125"]],[17,18,["G1161"]],[18,19,["G3588"]],[19,21,["G2032"]],[21,22,["G846"]],[22,24,["G2909"]],[24,25,["G2378"]],[25,26,["G3844"]],[26,27,["G5025"]]]},{"k":30129,"v":[[0,1,["G1063"]],[1,2,["G5547"]],[2,4,["G3756"]],[4,5,["G1525"]],[5,6,["G1519"]],[6,9,["G39"]],[9,12,["G5499"]],[12,16,["G499"]],[16,18,["G3588"]],[18,19,["G228"]],[19,20,["G235"]],[20,21,["G1519"]],[21,22,["G3772"]],[22,23,["G846"]],[23,24,["G3568"]],[24,26,["G1718"]],[26,28,["G3588"]],[28,29,["G4383"]],[29,31,["G2316"]],[31,32,["G5228"]],[32,33,["G2257"]]]},{"k":30130,"v":[[0,1,["G3761"]],[1,3,["G2443"]],[3,6,["G4374"]],[6,7,["G1438"]],[7,8,["G4178"]],[8,9,["G5618"]],[9,10,["G3588"]],[10,12,["G749"]],[12,13,["G1525"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,17,["G39"]],[17,19,["G2596","G1763"]],[19,20,["G1722"]],[20,21,["G129"]],[21,23,["G245"]]]},{"k":30131,"v":[[0,2,["G1893"]],[2,3,["G1163"]],[3,4,["G846"]],[4,5,["G4178"]],[5,7,["G3958"]],[7,8,["G575"]],[8,10,["G2602"]],[10,13,["G2889"]],[13,14,["G1161"]],[14,15,["G3568"]],[15,16,["G530"]],[16,17,["G1909"]],[17,19,["G4930"]],[19,21,["G3588"]],[21,22,["G165"]],[22,25,["G5319"]],[25,28,["G1519","G115"]],[28,29,["G266"]],[29,30,["G1223"]],[30,31,["G3588"]],[31,32,["G2378"]],[32,34,["G848"]]]},{"k":30132,"v":[[0,1,["G2532"]],[1,2,["G2596","G3745"]],[2,5,["G606"]],[5,7,["G444"]],[7,8,["G530"]],[8,10,["G599"]],[10,11,["G1161"]],[11,12,["G3326"]],[12,13,["G5124"]],[13,15,["G2920"]]]},{"k":30133,"v":[[0,1,["G3779"]],[1,2,["G5547"]],[2,4,["G530"]],[4,5,["G4374"]],[5,7,["G399"]],[7,9,["G266"]],[9,11,["G4183"]],[11,17,["G553"]],[17,18,["G846"]],[18,21,["G3700"]],[21,22,["(G1537)"]],[22,24,["G1208"]],[24,25,["G5565"]],[25,26,["G266"]],[26,27,["G1519"]],[27,28,["G4991"]]]},{"k":30134,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3551"]],[3,4,["G2192"]],[4,6,["G4639"]],[6,9,["G18"]],[9,11,["G3195"]],[11,13,["G3756"]],[13,14,["G3588"]],[14,15,["G846"]],[15,16,["G1504"]],[16,18,["G3588"]],[18,19,["G4229"]],[19,20,["G1410"]],[20,21,["G3763"]],[21,23,["G846"]],[23,24,["G2378"]],[24,25,["G3739"]],[25,27,["G4374"]],[27,30,["G2596","G1763"]],[30,31,["G1519","G1336"]],[31,36,["G5048","G3588","G4334"]]]},{"k":30135,"v":[[0,2,["G1893"]],[2,5,["G3756"]],[5,7,["G3973","G302"]],[7,10,["G4374"]],[10,13,["G3588"]],[13,14,["G3000"]],[14,15,["G530"]],[15,16,["G2508"]],[16,19,["G2192"]],[19,21,["G2089","G3367"]],[21,22,["G4893"]],[22,24,["G266"]]]},{"k":30136,"v":[[0,1,["G235"]],[1,2,["G1722"]],[2,3,["G846"]],[3,9,["G364"]],[9,12,["G266"]],[12,14,["G2596","G1763"]]]},{"k":30137,"v":[[0,1,["G1063"]],[1,5,["G102"]],[5,8,["G129"]],[8,10,["G5022"]],[10,11,["G2532"]],[11,13,["G5131"]],[13,16,["G851"]],[16,17,["G266"]]]},{"k":30138,"v":[[0,1,["G1352"]],[1,4,["G1525"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G2889"]],[7,9,["G3004"]],[9,10,["G2378"]],[10,11,["G2532"]],[11,12,["G4376"]],[12,14,["G2309"]],[14,15,["G3756"]],[15,16,["G1161"]],[16,18,["G4983"]],[18,21,["G2675"]],[21,22,["G3427"]]]},{"k":30139,"v":[[0,3,["G3646"]],[3,4,["G2532"]],[4,6,["G4012"]],[6,7,["G266"]],[7,12,["G2106","G3756"]]]},{"k":30140,"v":[[0,1,["G5119"]],[1,2,["G2036"]],[2,4,["G2400"]],[4,6,["G2240"]],[6,7,["G1722"]],[7,9,["G2777"]],[9,12,["G975"]],[12,15,["G1125"]],[15,16,["G4012"]],[16,18,["G1700"]],[18,19,["G4160"]],[19,20,["G4675"]],[20,21,["G2307"]],[21,23,["G2316"]]]},{"k":30141,"v":[[0,1,["G511"]],[1,4,["G3004"]],[4,5,["G2378"]],[5,6,["G2532"]],[6,7,["G4374"]],[7,8,["G2532"]],[8,10,["G3646"]],[10,11,["G2532"]],[11,13,["G4012"]],[13,14,["G266"]],[14,16,["G2309"]],[16,17,["G3756"]],[17,18,["G3761"]],[18,20,["G2106"]],[20,22,["G3748"]],[22,24,["G4376"]],[24,25,["G2596"]],[25,26,["G3588"]],[26,27,["G3551"]]]},{"k":30142,"v":[[0,1,["G5119"]],[1,2,["G2046"]],[2,4,["G2400"]],[4,6,["G2240"]],[6,8,["G4160"]],[8,9,["G4675"]],[9,10,["G2307"]],[10,12,["G2316"]],[12,15,["G337"]],[15,16,["G3588"]],[16,17,["G4413"]],[17,18,["G2443"]],[18,21,["G2476"]],[21,22,["G3588"]],[22,23,["G1208"]]]},{"k":30143,"v":[[0,1,["G1722"]],[1,3,["G3739"]],[3,4,["G2307"]],[4,6,["G2070"]],[6,7,["G37"]],[7,8,["G1223"]],[8,9,["G3588"]],[9,10,["G4376"]],[10,12,["G3588"]],[12,13,["G4983"]],[13,15,["G2424"]],[15,16,["G5547"]],[16,17,["G2178"]],[17,19,[]]]},{"k":30144,"v":[[0,1,["G2532"]],[1,2,["G3956","(G3303)"]],[2,3,["G2409"]],[3,4,["G2476"]],[4,5,["G2596","G2250"]],[5,6,["G3008"]],[6,7,["G2532"]],[7,8,["G4374"]],[8,9,["G4178"]],[9,10,["G3588"]],[10,11,["G846"]],[11,12,["G2378"]],[12,13,["G3748"]],[13,14,["G1410"]],[14,15,["G3763"]],[15,17,["G4014"]],[17,18,["G266"]]]},{"k":30145,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,7,["G4374"]],[7,8,["G3391"]],[8,9,["G2378"]],[9,10,["G5228"]],[10,11,["G266"]],[11,13,["G1519","G1336"]],[13,15,["G2523"]],[15,16,["G1722"]],[16,19,["G1188"]],[19,21,["G2316"]]]},{"k":30146,"v":[[0,2,["G3063"]],[2,3,["G1551"]],[3,4,["G2193"]],[4,5,["G846"]],[5,6,["G2190"]],[6,8,["G5087"]],[8,10,["G5286","G846","G4228"]]]},{"k":30147,"v":[[0,1,["G1063"]],[1,3,["G3391"]],[3,4,["G4376"]],[4,7,["G5048"]],[7,9,["G1519","G1336"]],[9,13,["G37"]]]},{"k":30148,"v":[[0,1,["(G1161)"]],[1,2,["G3588"]],[2,3,["G40"]],[3,4,["G4151"]],[4,5,["G2532"]],[5,8,["G3140"]],[8,10,["G2254"]],[10,11,["G1063"]],[11,12,["G3326"]],[12,17,["G4280"]]]},{"k":30149,"v":[[0,1,["G3778"]],[1,3,["G3588"]],[3,4,["G1242"]],[4,5,["G3739"]],[5,8,["G1303"]],[8,9,["G4314"]],[9,10,["G846"]],[10,11,["G3326"]],[11,12,["G1565"]],[12,13,["G2250"]],[13,14,["G3004"]],[14,16,["G2962"]],[16,19,["G1325"]],[19,20,["G3450"]],[20,21,["G3551"]],[21,22,["G1909"]],[22,23,["G846"]],[23,24,["G2588"]],[24,25,["G2532"]],[25,26,["G1909"]],[26,27,["G846"]],[27,28,["G1271"]],[28,31,["G1924"]],[31,32,["G846"]]]},{"k":30150,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G266"]],[3,4,["G2532"]],[4,5,["(G458)"]],[5,8,["G3415"]],[8,10,["G3364","G2089"]]]},{"k":30151,"v":[[0,1,["G1161"]],[1,2,["G3699"]],[2,3,["G859"]],[3,5,["G5130"]],[5,10,["G3765"]],[10,11,["G4376"]],[11,12,["G4012"]],[12,13,["G266"]]]},{"k":30152,"v":[[0,1,["G2192"]],[1,2,["G3767"]],[2,3,["G80"]],[3,4,["G3954"]],[4,7,["G1519","G1529"]],[7,8,["G3588"]],[8,9,["G39"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G129"]],[12,14,["G2424"]]]},{"k":30153,"v":[[0,3,["G4372"]],[3,4,["G2532"]],[4,5,["G2198"]],[5,6,["G3598"]],[6,7,["G3739"]],[7,10,["G1457"]],[10,12,["G2254"]],[12,13,["G1223"]],[13,14,["G3588"]],[14,15,["G2665"]],[15,19,["G5123"]],[19,20,["G848"]],[20,21,["G4561"]]]},{"k":30154,"v":[[0,1,["G2532"]],[1,4,["G3173"]],[4,5,["G2409"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G3624"]],[8,10,["G2316"]]]},{"k":30155,"v":[[0,4,["G4334"]],[4,5,["G3326"]],[5,7,["G228"]],[7,8,["G2588"]],[8,9,["G1722"]],[9,11,["G4136"]],[11,13,["G4102"]],[13,16,["G2588"]],[16,17,["G4472"]],[17,18,["G575"]],[18,20,["G4190"]],[20,21,["G4893"]],[21,22,["G2532"]],[22,24,["G4983"]],[24,25,["G3068"]],[25,27,["G2513"]],[27,28,["G5204"]]]},{"k":30156,"v":[[0,4,["G2722"]],[4,5,["G3588"]],[5,6,["G3671"]],[6,9,["G1680"]],[9,11,["G186"]],[11,12,["G1063"]],[12,15,["G4103"]],[15,17,["G1861"]]]},{"k":30157,"v":[[0,1,["G2532"]],[1,4,["G2657"]],[4,6,["G240"]],[6,9,["G1519","G3948"]],[9,10,["G26"]],[10,11,["G2532"]],[11,13,["G2570"]],[13,14,["G2041"]]]},{"k":30158,"v":[[0,1,["G3361"]],[1,2,["G1459"]],[2,3,["G3588"]],[3,7,["G1997","G1438"]],[7,8,["G2531"]],[8,10,["G1485"]],[10,12,["G5100"]],[12,14,["G235"]],[14,15,["G3870"]],[15,18,["G2532"]],[18,20,["G5118"]],[20,22,["G3123"]],[22,23,["G3745"]],[23,25,["G991"]],[25,26,["G3588"]],[26,27,["G2250"]],[27,28,["G1448"]]]},{"k":30159,"v":[[0,1,["G1063"]],[1,3,["G2257"]],[3,4,["G264"]],[4,5,["G1596"]],[5,10,["G2983"]],[10,11,["G3588"]],[11,12,["G1922"]],[12,14,["G3588"]],[14,15,["G225"]],[15,17,["G620"]],[17,19,["G3765"]],[19,20,["G2378"]],[20,21,["G4012"]],[21,22,["G266"]]]},{"k":30160,"v":[[0,1,["G1161"]],[1,3,["G5100"]],[3,4,["G5398"]],[4,6,["G1561"]],[6,8,["G2920"]],[8,9,["G2532"]],[9,10,["G4442"]],[10,11,["G2205"]],[11,13,["G3195"]],[13,14,["G2068"]],[14,15,["G3588"]],[15,16,["G5227"]]]},{"k":30161,"v":[[0,1,["G5100"]],[1,3,["G114"]],[3,4,["G3475"]],[4,5,["G3551"]],[5,6,["G599"]],[6,7,["G5565"]],[7,8,["G3628"]],[8,9,["G1909"]],[9,10,["G1417"]],[10,11,["G2228"]],[11,12,["G5140"]],[12,13,["G3144"]]]},{"k":30162,"v":[[0,3,["G4214"]],[3,4,["G5501"]],[4,5,["G5098"]],[5,6,["G1380"]],[6,12,["G515"]],[12,17,["G2662"]],[17,18,["G3588"]],[18,19,["G5207"]],[19,21,["G2316"]],[21,22,["G2532"]],[22,24,["G2233"]],[24,25,["G3588"]],[25,26,["G129"]],[26,28,["G3588"]],[28,29,["G1242"]],[29,30,["G1722","G3739"]],[30,33,["G37"]],[33,36,["G2839"]],[36,37,["G2532"]],[37,40,["G1796"]],[40,42,["G3588"]],[42,43,["G4151"]],[43,45,["G5485"]]]},{"k":30163,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,7,["G2036"]],[7,8,["G1557"]],[8,11,["G1698"]],[11,12,["G1473"]],[12,14,["G467"]],[14,15,["G3004"]],[15,17,["G2962"]],[17,18,["G2532"]],[18,19,["G3825"]],[19,21,["G2962"]],[21,23,["G2919"]],[23,24,["G848"]],[24,25,["G2992"]]]},{"k":30164,"v":[[0,5,["G5398"]],[5,7,["G1706"]],[7,8,["G1519"]],[8,10,["G5495"]],[10,13,["G2198"]],[13,14,["G2316"]]]},{"k":30165,"v":[[0,1,["G1161"]],[1,4,["G363"]],[4,5,["G3588"]],[5,6,["G4386"]],[6,7,["G2250"]],[7,8,["G1722"]],[8,9,["G3739"]],[9,13,["G5461"]],[13,15,["G5278"]],[15,17,["G4183"]],[17,18,["G119"]],[18,20,["G3804"]]]},{"k":30166,"v":[[0,1,["G5124","G3303"]],[1,7,["G2301"]],[7,8,["G5037"]],[8,10,["G3680"]],[10,11,["G2532"]],[11,12,["G2347"]],[12,13,["G1161"]],[13,14,["G5124"]],[14,17,["G1096"]],[17,18,["G2844"]],[18,24,["G390","G3779"]]]},{"k":30167,"v":[[0,1,["G1063"]],[1,4,["G4834","(G2532)"]],[4,8,["G3450"]],[8,9,["G1199"]],[9,10,["G2532"]],[10,11,["G4327"]],[11,12,["G3326","G5479"]],[12,13,["G3588"]],[13,14,["G724"]],[14,16,["G5216"]],[16,17,["G5224"]],[17,18,["G1097"]],[18,19,["G1722"]],[19,20,["G1438"]],[20,23,["G2192"]],[23,24,["G1722"]],[24,25,["G3772"]],[25,27,["G2909"]],[27,28,["G2532"]],[28,30,["G3306"]],[30,31,["G5223"]]]},{"k":30168,"v":[[0,3,["G577","G3361"]],[3,4,["G3767"]],[4,5,["G5216"]],[5,6,["G3954"]],[6,7,["G3748"]],[7,8,["G2192"]],[8,9,["G3173"]],[9,12,["G3405"]]]},{"k":30169,"v":[[0,1,["G1063"]],[1,3,["G2192"]],[3,4,["G5532"]],[4,6,["G5281"]],[6,7,["G2443"]],[7,11,["G4160"]],[11,12,["G3588"]],[12,13,["G2307"]],[13,15,["G2316"]],[15,18,["G2865"]],[18,19,["G3588"]],[19,20,["G1860"]]]},{"k":30170,"v":[[0,1,["G1063"]],[1,2,["G2089"]],[2,5,["G3397","G3745","G3745"]],[5,10,["G2064"]],[10,12,["G2240"]],[12,13,["G2532"]],[13,15,["G3756"]],[15,16,["G5549"]]]},{"k":30171,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1342"]],[3,5,["G2198"]],[5,6,["G1537"]],[6,7,["G4102"]],[7,8,["G2532"]],[8,9,["G1437"]],[9,13,["G5288"]],[13,14,["G3450"]],[14,15,["G5590"]],[15,19,["G2106","G3756"]],[19,20,["G1722"]],[20,21,["G846"]]]},{"k":30172,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,3,["G2070"]],[3,4,["G3756"]],[4,9,["G5289"]],[9,10,["G1519"]],[10,11,["G684"]],[11,12,["G235"]],[12,16,["G4102"]],[16,19,["G1519","G4047"]],[19,22,["G5590"]]]},{"k":30173,"v":[[0,1,["G1161"]],[1,2,["G4102"]],[2,3,["G2076"]],[3,5,["G5287"]],[5,9,["G1679"]],[9,11,["G1650"]],[11,13,["G4229"]],[13,14,["G3756"]],[14,15,["G991"]]]},{"k":30174,"v":[[0,1,["G1063"]],[1,2,["G1722"]],[2,3,["G5026"]],[3,4,["G3588"]],[4,5,["G4245"]],[5,9,["G3140"]]]},{"k":30175,"v":[[0,2,["G4102"]],[2,4,["G3539"]],[4,6,["G3588"]],[6,7,["G165"]],[7,9,["G2675"]],[9,12,["G4487"]],[12,14,["G2316"]],[14,20,["G991"]],[20,22,["G3361"]],[22,23,["G1096"]],[23,24,["G1537"]],[24,28,["G5316"]]]},{"k":30176,"v":[[0,2,["G4102"]],[2,3,["G6"]],[3,4,["G4374"]],[4,6,["G2316"]],[6,9,["G4119"]],[9,10,["G2378"]],[10,11,["G3844"]],[11,12,["G2535"]],[12,13,["G1223"]],[13,14,["G3739"]],[14,17,["G3140"]],[17,20,["G1511"]],[20,21,["G1342"]],[21,22,["G2316"]],[22,23,["G3140"]],[23,24,["G1909"]],[24,25,["G846"]],[25,26,["G1435"]],[26,27,["G2532"]],[27,28,["G1223"]],[28,29,["G846"]],[29,32,["G599"]],[32,33,["G2089"]],[33,34,["G2980"]]]},{"k":30177,"v":[[0,2,["G4102"]],[2,3,["G1802"]],[3,5,["G3346"]],[5,9,["G3361"]],[9,10,["G1492"]],[10,11,["G2288"]],[11,12,["G2532"]],[12,14,["G3756"]],[14,15,["G2147"]],[15,16,["G1360"]],[16,17,["G2316"]],[17,19,["G3346"]],[19,20,["G846"]],[20,21,["G1063"]],[21,22,["G4253"]],[22,23,["G846"]],[23,24,["G3331"]],[24,28,["G3140"]],[28,31,["G2100"]],[31,32,["G2316"]]]},{"k":30178,"v":[[0,1,["G1161"]],[1,2,["G5565"]],[2,3,["G4102"]],[3,6,["G102"]],[6,8,["G2100"]],[8,10,["G1063"]],[10,13,["G4334"]],[13,15,["G2316"]],[15,16,["G1163"]],[16,17,["G4100"]],[17,18,["G3754"]],[18,20,["G2076"]],[20,21,["G2532"]],[21,24,["G1096"]],[24,26,["G3406"]],[26,31,["G1567"]],[31,32,["G846"]]]},{"k":30179,"v":[[0,2,["G4102"]],[2,3,["G3575"]],[3,7,["G5537"]],[7,8,["G4012"]],[8,13,["G3369","G991"]],[13,16,["G2125"]],[16,17,["G2680"]],[17,19,["G2787"]],[19,22,["G1519","G4991"]],[22,24,["G848"]],[24,25,["G3624"]],[25,26,["G1223"]],[26,28,["G3739"]],[28,30,["G2632"]],[30,31,["G3588"]],[31,32,["G2889"]],[32,33,["G2532"]],[33,34,["G1096"]],[34,35,["G2818"]],[35,37,["G3588"]],[37,38,["G1343"]],[38,41,["G2596"]],[41,42,["G4102"]]]},{"k":30180,"v":[[0,2,["G4102"]],[2,3,["G11"]],[3,7,["G2564"]],[7,10,["G1831"]],[10,11,["G1519"]],[11,13,["G5117"]],[13,14,["G3739"]],[14,17,["G3195"]],[17,18,["G2983"]],[18,19,["G1519"]],[19,21,["G2817"]],[21,22,["G5219"]],[22,23,["G2532"]],[23,26,["G1831"]],[26,27,["G3361"]],[27,28,["G1987"]],[28,29,["G4226"]],[29,31,["G2064"]]]},{"k":30181,"v":[[0,2,["G4102"]],[2,4,["G3939"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G1093"]],[7,9,["G1860"]],[9,11,["G5613"]],[11,14,["G245"]],[14,15,["G2730"]],[15,16,["G1722"]],[16,17,["G4633"]],[17,18,["G3326"]],[18,19,["G2464"]],[19,20,["G2532"]],[20,21,["G2384"]],[21,22,["G3588"]],[22,25,["G4789"]],[25,27,["G3588"]],[27,28,["G846"]],[28,29,["G1860"]]]},{"k":30182,"v":[[0,1,["G1063"]],[1,4,["G1551"]],[4,6,["G4172"]],[6,8,["G2192"]],[8,9,["G2310"]],[9,10,["G3739"]],[10,11,["G5079"]],[11,12,["G2532"]],[12,13,["G1217"]],[13,15,["G2316"]]]},{"k":30183,"v":[[0,2,["G4102"]],[2,3,["G2532"]],[3,4,["G4564"]],[4,5,["G846"]],[5,6,["G2983"]],[6,7,["G1411"]],[7,8,["G1519"]],[8,9,["G2602"]],[9,10,["G4690"]],[10,11,["G2532"]],[11,16,["G5088"]],[16,21,["G3844","G2244","G2540"]],[21,22,["G1893"]],[22,24,["G2233"]],[24,26,["G4103"]],[26,29,["G1861"]]]},{"k":30184,"v":[[0,1,["G1352"]],[1,2,["G1080"]],[2,4,["G2532"]],[4,5,["G575"]],[5,6,["G1520"]],[6,7,["G2532"]],[7,8,["G5023"]],[8,12,["G3499"]],[12,15,["G2531"]],[15,16,["G3588"]],[16,17,["G798"]],[17,19,["G3588"]],[19,20,["G3772"]],[20,22,["G4128"]],[22,23,["G2532"]],[23,24,["G5616"]],[24,26,["G285"]],[26,27,["G3588"]],[27,29,["G3844"]],[29,30,["G3588"]],[30,32,["G5491","G2281"]],[32,33,["G382"]]]},{"k":30185,"v":[[0,1,["G3778"]],[1,2,["G3956"]],[2,3,["G599"]],[3,4,["G2596"]],[4,5,["G4102"]],[5,6,["G3361"]],[6,8,["G2983"]],[8,9,["G3588"]],[9,10,["G1860"]],[10,11,["G235"]],[11,13,["G1492"]],[13,14,["G846"]],[14,16,["G4207"]],[16,17,["G2532"]],[17,19,["G3982"]],[19,22,["G2532"]],[22,23,["G782"]],[23,25,["G2532"]],[25,26,["G3670"]],[26,27,["G3754"]],[27,29,["G1526"]],[29,30,["G3581"]],[30,31,["G2532"]],[31,32,["G3927"]],[32,33,["G1909"]],[33,34,["G3588"]],[34,35,["G1093"]]]},{"k":30186,"v":[[0,1,["G1063"]],[1,4,["G3004"]],[4,6,["G5108"]],[6,8,["G1718"]],[8,9,["G3754"]],[9,11,["G1934"]],[11,13,["G3968"]]]},{"k":30187,"v":[[0,1,["G2532"]],[1,2,["G3303"]],[2,3,["G1487"]],[3,7,["G3421"]],[7,9,["G1565"]],[9,11,["G575"]],[11,12,["G3739"]],[12,15,["G1831"]],[15,19,["G2192","G302"]],[19,20,["G2540"]],[20,23,["G344"]]]},{"k":30188,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,4,["G3713"]],[4,6,["G2909"]],[6,9,["G5123"]],[9,11,["G2032"]],[11,12,["G1352"]],[12,13,["G2316"]],[13,15,["G3756"]],[15,16,["G1870"]],[16,19,["G1941"]],[19,20,["G846"]],[20,21,["G2316"]],[21,22,["G1063"]],[22,25,["G2090"]],[25,27,["G846"]],[27,29,["G4172"]]]},{"k":30189,"v":[[0,2,["G4102"]],[2,3,["G11"]],[3,7,["G3985"]],[7,9,["G4374"]],[9,10,["G2464"]],[10,11,["G2532"]],[11,15,["G324"]],[15,16,["G3588"]],[16,17,["G1860"]],[17,19,["G4374"]],[19,22,["G3439"]],[22,23,[]]]},{"k":30190,"v":[[0,1,["G4314"]],[1,2,["G3739"]],[2,5,["G2980"]],[5,6,["G3754"]],[6,7,["G1722"]],[7,8,["G2464"]],[8,10,["G4671"]],[10,11,["G4690"]],[11,13,["G2564"]]]},{"k":30191,"v":[[0,1,["G3049"]],[1,2,["G3754"]],[2,3,["G2316"]],[3,5,["G1415"]],[5,9,["G1453"]],[9,10,["G2532"]],[10,11,["G1537"]],[11,13,["G3498"]],[13,15,["G3606"]],[15,16,["G2532"]],[16,18,["G2865"]],[18,19,["G846"]],[19,20,["G1722"]],[20,22,["G3850"]]]},{"k":30192,"v":[[0,2,["G4102"]],[2,3,["G2464"]],[3,4,["G2127"]],[4,5,["G2384"]],[5,6,["G2532"]],[6,7,["G2269"]],[7,8,["G4012"]],[8,11,["G3195"]]]},{"k":30193,"v":[[0,2,["G4102"]],[2,3,["G2384"]],[3,8,["G599"]],[8,9,["G2127"]],[9,10,["G1538"]],[10,11,["G3588"]],[11,12,["G5207"]],[12,14,["G2501"]],[14,15,["G2532"]],[15,16,["G4352"]],[16,18,["G1909"]],[18,19,["G3588"]],[19,20,["G206"]],[20,22,["G848"]],[22,23,["G4464"]]]},{"k":30194,"v":[[0,2,["G4102"]],[2,3,["G2501"]],[3,6,["G5053"]],[6,8,["G3421"]],[8,9,["G4012"]],[9,10,["G3588"]],[10,11,["G1841"]],[11,13,["G3588"]],[13,14,["G5207"]],[14,16,["G2474"]],[16,17,["G2532"]],[17,19,["G1781"]],[19,20,["G4012"]],[20,21,["G848"]],[21,22,["G3747"]]]},{"k":30195,"v":[[0,2,["G4102"]],[2,3,["G3475"]],[3,7,["G1080"]],[7,9,["G2928"]],[9,11,["G5150"]],[11,12,["G5259"]],[12,13,["G848"]],[13,14,["G3962"]],[14,15,["G1360"]],[15,17,["G1492"]],[17,21,["G791"]],[21,22,["G3813"]],[22,23,["G2532"]],[23,27,["G5399","G3756"]],[27,29,["G3588"]],[29,30,["G935"]],[30,31,["G1297"]]]},{"k":30196,"v":[[0,2,["G4102"]],[2,3,["G3475"]],[3,9,["G1096","G3173"]],[9,10,["G720"]],[10,13,["G3004"]],[13,15,["G5207"]],[15,17,["G5328"]],[17,18,["G2364"]]]},{"k":30197,"v":[[0,1,["G138"]],[1,2,["G3123"]],[2,6,["G4778"]],[6,7,["G3588"]],[7,8,["G2992"]],[8,10,["G2316"]],[10,11,["G2228"]],[11,15,["G2192","G619"]],[15,17,["G266"]],[17,20,["G4340"]]]},{"k":30198,"v":[[0,1,["G2233"]],[1,2,["G3588"]],[2,3,["G3680"]],[3,5,["G5547"]],[5,6,["G3187"]],[6,7,["G4149"]],[7,9,["G3588"]],[9,10,["G2344"]],[10,11,["G1722"]],[11,12,["G125"]],[12,13,["G1063"]],[13,16,["G578"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,22,["G3405"]]]},{"k":30199,"v":[[0,2,["G4102"]],[2,4,["G2641"]],[4,5,["G125"]],[5,6,["G3361"]],[6,7,["G5399"]],[7,8,["G3588"]],[8,9,["G2372"]],[9,11,["G3588"]],[11,12,["G935"]],[12,13,["G1063"]],[13,15,["G2594"]],[15,16,["G5613"]],[16,17,["G3708"]],[17,21,["G517"]]]},{"k":30200,"v":[[0,2,["G4102"]],[2,4,["G4160"]],[4,5,["G3588"]],[5,6,["G3957"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G4378"]],[9,11,["G129"]],[11,12,["G3363"]],[12,15,["G3645"]],[15,16,["G3588"]],[16,17,["G4416"]],[17,19,["G2345"]],[19,20,["G846"]]]},{"k":30201,"v":[[0,2,["G4102"]],[2,5,["G1224"]],[5,6,["G3588"]],[6,7,["G2063"]],[7,8,["G2281"]],[8,9,["G5613"]],[9,10,["G1223"]],[10,11,["G3584"]],[11,13,["G3739"]],[13,14,["G3588"]],[14,15,["G124"]],[15,18,["G2983","G3984"]],[18,20,["G2666"]]]},{"k":30202,"v":[[0,2,["G4102"]],[2,3,["G3588"]],[3,4,["G5038"]],[4,6,["G2410"]],[6,8,["G4098"]],[8,13,["G2944","(G1909)"]],[13,14,["G2033"]],[14,15,["G2250"]]]},{"k":30203,"v":[[0,2,["G4102"]],[2,3,["G3588"]],[3,4,["G4204"]],[4,5,["G4460"]],[5,6,["G4881"]],[6,7,["G3756"]],[7,12,["G544"]],[12,16,["G1209"]],[16,17,["G3588"]],[17,18,["G2685"]],[18,19,["G3326"]],[19,20,["G1515"]]]},{"k":30204,"v":[[0,1,["G2532"]],[1,2,["G5101"]],[2,5,["G2089"]],[5,6,["G3004"]],[6,7,["G1063"]],[7,8,["G3588"]],[8,9,["G5550"]],[9,11,["G1952"]],[11,12,["G3165"]],[12,14,["G1334"]],[14,15,["G4012"]],[15,16,["G1066"]],[16,17,["G5037"]],[17,19,["G913"]],[19,20,["G2532"]],[20,22,["G4546"]],[22,23,["G2532"]],[23,25,["G2422"]],[25,27,["G1138"]],[27,28,["G5037"]],[28,29,["G2532"]],[29,30,["G4545"]],[30,31,["G2532"]],[31,33,["G3588"]],[33,34,["G4396"]]]},{"k":30205,"v":[[0,1,["G3739"]],[1,2,["G1223"]],[2,3,["G4102"]],[3,4,["G2610"]],[4,5,["G932"]],[5,6,["G2038"]],[6,7,["G1343"]],[7,8,["G2013"]],[8,9,["G1860"]],[9,10,["G5420"]],[10,12,["G4750"]],[12,14,["G3023"]]]},{"k":30206,"v":[[0,1,["G4570"]],[1,3,["G1411"]],[3,5,["G4442"]],[5,6,["G5343"]],[6,8,["G4750"]],[8,11,["G3162"]],[11,13,["G575"]],[13,14,["G769"]],[14,17,["G1743"]],[17,18,["G1096"]],[18,19,["G2478"]],[19,20,["G1722"]],[20,21,["G4171"]],[21,24,["G2827"]],[24,26,["G3925"]],[26,29,["G245"]]]},{"k":30207,"v":[[0,1,["G1135"]],[1,2,["G2983"]],[2,3,["G848"]],[3,4,["G3498"]],[4,8,["G1537","G386"]],[8,9,["G1161"]],[9,10,["G243"]],[10,12,["G5178"]],[12,13,["G3756"]],[13,14,["G4327"]],[14,15,["G629"]],[15,16,["G2443"]],[16,19,["G5177"]],[19,21,["G2909"]],[21,22,["G386"]]]},{"k":30208,"v":[[0,1,["G1161"]],[1,2,["G2087"]],[2,3,["G2983"]],[3,4,["G3984"]],[4,7,["G1701"]],[7,8,["G2532"]],[8,9,["G3148"]],[9,10,["G1161"]],[10,11,["G2089"]],[11,13,["G1199"]],[13,14,["G2532"]],[14,15,["G5438"]]]},{"k":30209,"v":[[0,3,["G3034"]],[3,7,["G4249"]],[7,9,["G3985"]],[9,11,["G599"]],[11,12,["G1722"]],[12,13,["(G5408)"]],[13,14,["G3162"]],[14,17,["G4022"]],[17,18,["G1722"]],[18,19,["G3374"]],[19,20,["G2532"]],[20,21,["(G122)","G1192"]],[21,23,["G5302"]],[23,24,["G2346"]],[24,25,["G2558"]]]},{"k":30210,"v":[[0,2,["G3739"]],[2,3,["G3588"]],[3,4,["G2889"]],[4,5,["G2258"]],[5,6,["G3756"]],[6,8,["G514"]],[8,9,["G4105"]],[9,10,["G1722"]],[10,11,["G2047"]],[11,12,["G2532"]],[12,14,["G3735"]],[14,15,["G2532"]],[15,17,["G4693"]],[17,18,["G2532"]],[18,19,["G3692"]],[19,21,["G3588"]],[21,22,["G1093"]]]},{"k":30211,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G3956"]],[3,8,["G3140"]],[8,9,["G1223"]],[9,10,["G4102"]],[10,11,["G2865"]],[11,12,["G3756"]],[12,13,["G3588"]],[13,14,["G1860"]]]},{"k":30212,"v":[[0,1,["G2316"]],[1,3,["G4265"]],[3,4,["G5100"]],[4,6,["G2909"]],[6,7,["G4012"]],[7,8,["G2257"]],[8,9,["G2443"]],[9,11,["G5565"]],[11,12,["G2257"]],[12,14,["G3361"]],[14,17,["G5048"]]]},{"k":30213,"v":[[0,1,["G5105"]],[1,3,["G2249"]],[3,4,["G2532"]],[4,7,["(G4029)"]],[7,8,["(G2254)"]],[8,10,["G5118"]],[10,12,["G3509"]],[12,14,["G3144"]],[14,18,["G659"]],[18,19,["G3956"]],[19,20,["G3591"]],[20,21,["G2532"]],[21,23,["G266"]],[23,28,["G2139"]],[28,30,["G2532"]],[30,33,["G5143"]],[33,34,["G1223"]],[34,35,["G5281"]],[35,36,["G3588"]],[36,37,["G73"]],[37,41,["G4295"]],[41,42,["G2254"]]]},{"k":30214,"v":[[0,1,["G872"]],[1,2,["G1519"]],[2,3,["G2424"]],[3,4,["G3588"]],[4,5,["G747"]],[5,6,["G2532"]],[6,7,["G5051"]],[7,10,["G4102"]],[10,11,["G3739"]],[11,12,["G473"]],[12,13,["G3588"]],[13,14,["G5479"]],[14,18,["G4295"]],[18,19,["G848"]],[19,20,["G5278"]],[20,22,["G4716"]],[22,23,["G2706"]],[23,25,["G152"]],[25,26,["G5037"]],[26,29,["G2523"]],[29,30,["G1722"]],[30,33,["G1188"]],[33,35,["G3588"]],[35,36,["G2362"]],[36,38,["G2316"]]]},{"k":30215,"v":[[0,1,["G1063"]],[1,2,["G357"]],[2,5,["G5278"]],[5,6,["G5108"]],[6,7,["G485"]],[7,8,["G5259"]],[8,9,["G268"]],[9,10,["G1519"]],[10,11,["G848"]],[11,12,["G3363"]],[12,15,["G2577"]],[15,17,["G1590"]],[17,19,["G5216"]],[19,20,["G5590"]]]},{"k":30216,"v":[[0,4,["G3768"]],[4,5,["G478"]],[5,6,["G3360"]],[6,7,["G129"]],[7,8,["G464"]],[8,9,["G4314"]],[9,10,["G266"]]]},{"k":30217,"v":[[0,1,["G2532"]],[1,4,["G1585"]],[4,5,["G3588"]],[5,6,["G3874"]],[6,7,["G3748"]],[7,8,["G1256"]],[8,10,["G5213"]],[10,11,["G5613"]],[11,13,["G5207"]],[13,14,["G3450"]],[14,15,["G5207"]],[15,16,["G3643"]],[16,17,["G3361"]],[17,20,["G3809"]],[20,23,["G2962"]],[23,24,["G3366"]],[24,25,["G1590"]],[25,29,["G1651"]],[29,30,["G5259"]],[30,31,["G846"]]]},{"k":30218,"v":[[0,1,["G1063"]],[1,2,["G3739"]],[2,4,["G2962"]],[4,5,["G25"]],[5,7,["G3811"]],[7,8,["G1161"]],[8,9,["G3146"]],[9,10,["G3956"]],[10,11,["G5207"]],[11,12,["G3739"]],[12,14,["G3858"]]]},{"k":30219,"v":[[0,1,["G1487"]],[1,3,["G5278"]],[3,4,["G3809"]],[4,5,["G2316"]],[5,6,["G4374"]],[6,8,["G5213"]],[8,9,["G5613"]],[9,11,["G5207"]],[11,12,["G1063"]],[12,13,["G5101"]],[13,14,["G5207"]],[14,15,["G2076"]],[15,17,["G3739"]],[17,19,["G3962"]],[19,20,["G3811"]],[20,21,["G3756"]]]},{"k":30220,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G2075"]],[4,5,["G5565"]],[5,6,["G3809"]],[6,7,["G3739"]],[7,8,["G3956"]],[8,9,["G1096"]],[9,10,["G3353"]],[10,11,["G686"]],[11,12,["G2075"]],[12,14,["G3541"]],[14,15,["G2532"]],[15,16,["G3756"]],[16,17,["G5207"]]]},{"k":30221,"v":[[0,1,["G1534"]],[1,4,["G2192"]],[4,5,["G3962"]],[5,7,["G2257"]],[7,8,["G4561"]],[8,10,["(G3810)"]],[10,12,["G2532"]],[12,16,["G1788"]],[16,19,["G3756"]],[19,20,["G4183"]],[20,21,["G3123"]],[21,24,["G5293"]],[24,26,["G3588"]],[26,27,["G3962"]],[27,29,["G4151"]],[29,30,["G2532"]],[30,31,["G2198"]]]},{"k":30222,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3303"]],[3,4,["G4314"]],[4,6,["G3641"]],[6,7,["G2250"]],[7,8,["G3811"]],[8,10,["G2596"]],[10,12,["G848"]],[12,13,["G1380"]],[13,14,["G1161"]],[14,15,["G3588"]],[15,16,["G1909"]],[16,18,["G4851"]],[18,23,["G3335"]],[23,25,["G846"]],[25,26,["G41"]]]},{"k":30223,"v":[[0,1,["G1161"]],[1,2,["G3956","G3756"]],[2,3,["G3809"]],[3,4,["G4314"]],[4,5,["G3588"]],[5,6,["G3918"]],[6,7,["G1380"]],[7,9,["G1511"]],[9,10,["G5479"]],[10,11,["G235"]],[11,12,["G3077"]],[12,13,["G1161"]],[13,14,["G5305"]],[14,16,["G591"]],[16,18,["G1516"]],[18,19,["G2590"]],[19,21,["G1343"]],[21,26,["G1128"]],[26,27,["G1223","G846"]]]},{"k":30224,"v":[[0,1,["G1352"]],[1,3,["G461"]],[3,5,["G5495"]],[5,6,["G3588"]],[6,8,["G3935"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G3886"]],[11,12,["G1119"]]]},{"k":30225,"v":[[0,1,["G2532"]],[1,2,["G4160"]],[2,3,["G3717"]],[3,4,["G5163"]],[4,6,["G5216"]],[6,7,["G4228"]],[7,8,["G3363"]],[8,12,["G5560"]],[12,18,["G1624"]],[18,19,["G1161"]],[19,22,["G3123"]],[22,24,["G2390"]]]},{"k":30226,"v":[[0,1,["G1377"]],[1,2,["G1515"]],[2,3,["G3326"]],[3,4,["G3956"]],[4,6,["G2532"]],[6,7,["G38"]],[7,8,["G5565"]],[8,9,["G3739"]],[9,11,["G3762"]],[11,13,["G3700"]],[13,14,["G3588"]],[14,15,["G2962"]]]},{"k":30227,"v":[[0,2,["G1983"]],[2,3,["G3361"]],[3,5,["G5100"]],[5,6,["G5302"]],[6,7,["G575"]],[7,8,["G3588"]],[8,9,["G5485"]],[9,11,["G2316"]],[11,12,["G3361"]],[12,13,["G5100"]],[13,14,["G4491"]],[14,16,["G4088"]],[16,17,["G5453"]],[17,18,["G507"]],[18,19,["G1776"]],[19,21,["G2532"]],[21,22,["G1223","G5026"]],[22,23,["G4183"]],[23,25,["G3392"]]]},{"k":30228,"v":[[0,1,["G3361"]],[1,4,["G5100"]],[4,5,["G4205"]],[5,6,["G2228"]],[6,8,["G952"]],[8,9,["G5613"]],[9,10,["G2269"]],[10,11,["G3739"]],[11,12,["G473"]],[12,13,["G3391"]],[13,16,["G1035"]],[16,17,["G591"]],[17,18,["G848"]],[18,19,["G4415"]]]},{"k":30229,"v":[[0,1,["G1063"]],[1,3,["G2467"]],[3,5,["G3754"]],[5,6,["G3347"]],[6,9,["G2309"]],[9,11,["G2816"]],[11,12,["G3588"]],[12,13,["G2129"]],[13,16,["G593"]],[16,17,["G1063"]],[17,19,["G2147"]],[19,20,["G3756"]],[20,21,["G5117"]],[21,23,["G3341"]],[23,24,["G2539"]],[24,28,["G1567","G846"]],[28,29,["G3326"]],[29,30,["G1144"]]]},{"k":30230,"v":[[0,1,["G1063"]],[1,4,["G3756"]],[4,5,["G4334"]],[5,8,["G3735"]],[8,12,["G5584"]],[12,13,["G2532"]],[13,15,["G2545"]],[15,17,["G4442"]],[17,18,["G2532"]],[18,20,["G1105"]],[20,21,["G2532"]],[21,22,["G4655"]],[22,23,["G2532"]],[23,24,["G2366"]]]},{"k":30231,"v":[[0,1,["G2532"]],[1,3,["G2279"]],[3,6,["G4536"]],[6,7,["G2532"]],[7,9,["G5456"]],[9,11,["G4487"]],[11,12,["G3739"]],[12,16,["G191"]],[16,17,["G3868"]],[17,20,["G3056"]],[20,22,["G3361"]],[22,28,["G4369","G846"]]]},{"k":30232,"v":[[0,1,["G1063"]],[1,4,["G3756"]],[4,5,["G5342"]],[5,9,["G1291"]],[9,14,["G2579"]],[14,16,["G2342"]],[16,17,["G2345"]],[17,18,["G3588"]],[18,19,["G3735"]],[19,23,["G3036"]],[23,26,["G2700"]],[26,29,["G1002"]]]},{"k":30233,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,3,["G5398"]],[3,4,["G2258"]],[4,5,["G3588"]],[5,6,["G5324"]],[6,8,["G3475"]],[8,9,["G2036"]],[9,12,["(G1510)","G1630"]],[12,13,["G2532"]],[13,14,["G1790"]]]},{"k":30234,"v":[[0,1,["G235"]],[1,5,["G4334"]],[5,6,["G3735"]],[6,7,["G4622"]],[7,8,["G2532"]],[8,11,["G4172"]],[11,14,["G2198"]],[14,15,["G2316"]],[15,17,["G2032"]],[17,18,["G2419"]],[18,19,["G2532"]],[19,23,["G3461"]],[23,25,["G32"]]]},{"k":30235,"v":[[0,4,["G3831"]],[4,5,["G2532"]],[5,6,["G1577"]],[6,9,["G4416"]],[9,12,["G583"]],[12,13,["G1722"]],[13,14,["G3772"]],[14,15,["G2532"]],[15,17,["G2316"]],[17,19,["G2923"]],[19,21,["G3956"]],[21,22,["G2532"]],[22,25,["G4151"]],[25,28,["G1342"]],[28,30,["G5048"]]]},{"k":30236,"v":[[0,1,["G2532"]],[1,3,["G2424"]],[3,5,["G3316"]],[5,8,["G3501"]],[8,9,["G1242"]],[9,10,["G2532"]],[10,13,["G129"]],[13,15,["G4473"]],[15,17,["G2980"]],[17,19,["G2909"]],[19,20,["G3844"]],[20,23,["G6"]]]},{"k":30237,"v":[[0,1,["G991"]],[1,4,["G3868"]],[4,5,["G3361"]],[5,8,["G2980"]],[8,9,["G1063"]],[9,10,["G1487"]],[10,11,["G1565"]],[11,12,["G5343"]],[12,13,["G3756"]],[13,15,["G3868"]],[15,18,["G5537"]],[18,19,["G1909"]],[19,20,["G1093"]],[20,21,["G4183"]],[21,22,["G3123"]],[22,25,["G2249"]],[25,31,["G654"]],[31,32,["G3588"]],[32,35,["G575"]],[35,36,["G3772"]]]},{"k":30238,"v":[[0,1,["G3739"]],[1,2,["G5456"]],[2,3,["G5119"]],[3,4,["G4531"]],[4,5,["G3588"]],[5,6,["G1093"]],[6,7,["G1161"]],[7,8,["G3568"]],[8,11,["G1861"]],[11,12,["G3004"]],[12,13,["G2089"]],[13,15,["G530"]],[15,16,["G1473"]],[16,17,["G4579"]],[17,18,["G3756"]],[18,19,["G3588"]],[19,20,["G1093"]],[20,21,["G3440"]],[21,22,["G235"]],[22,23,["G2532"]],[23,24,["G3772"]]]},{"k":30239,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G2089"]],[4,6,["G530"]],[6,7,["G1213"]],[7,8,["G3588"]],[8,9,["G3331"]],[9,15,["G4531"]],[15,16,["G5613"]],[16,21,["G4160"]],[21,22,["G2443"]],[22,28,["G4531","G3361"]],[28,30,["G3306"]]]},{"k":30240,"v":[[0,1,["G1352"]],[1,3,["G3880"]],[3,5,["G932"]],[5,9,["G761"]],[9,12,["G2192"]],[12,13,["G5485"]],[13,14,["G1223","G3739"]],[14,17,["G3000"]],[17,18,["G2316"]],[18,19,["G2102"]],[19,20,["G3326"]],[20,21,["G127"]],[21,22,["G2532"]],[22,24,["G2124"]]]},{"k":30241,"v":[[0,1,["G1063","(G2532)"]],[1,2,["G2257"]],[2,3,["G2316"]],[3,6,["G2654"]],[6,7,["G4442"]]]},{"k":30242,"v":[[0,3,["G5360"]],[3,4,["G3306"]]]},{"k":30243,"v":[[0,3,["G1950","G3361"]],[3,6,["G5381"]],[6,7,["G1063"]],[7,8,["G1223","G5026"]],[8,9,["G5100"]],[9,11,["G3579"]],[11,12,["G32"]],[12,13,["G2990"]]]},{"k":30244,"v":[[0,1,["G3403"]],[1,6,["G1198"]],[6,7,["G5613"]],[7,9,["G4887"]],[9,15,["G2558"]],[15,16,["G5613"]],[16,17,["G5607"]],[17,18,["G848"]],[18,19,["G2532"]],[19,20,["G1722"]],[20,22,["G4983"]]]},{"k":30245,"v":[[0,1,["G1062"]],[1,3,["G5093"]],[3,4,["G1722"]],[4,5,["G3956"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G2845"]],[8,9,["G283"]],[9,10,["G1161"]],[10,11,["G4205"]],[11,12,["G2532"]],[12,13,["G3432"]],[13,14,["G2316"]],[14,16,["G2919"]]]},{"k":30246,"v":[[0,3,["G5158"]],[3,6,["G866"]],[6,9,["G714"]],[9,15,["G3918"]],[15,16,["G1063"]],[16,17,["G846"]],[17,19,["G2046"]],[19,22,["G3364"]],[22,23,["G447"]],[23,24,["G4571"]],[24,25,["G3761"]],[25,26,["G1459"]],[26,27,["G4571"]]]},{"k":30247,"v":[[0,2,["G5620"]],[2,3,["G2248"]],[3,5,["G2292"]],[5,6,["G3004"]],[6,8,["G2962"]],[8,10,["G1698"]],[10,11,["G998"]],[11,12,["G2532"]],[12,15,["G3756"]],[15,16,["G5399"]],[16,17,["G5101"]],[17,18,["G444"]],[18,20,["G4160"]],[20,22,["G3427"]]]},{"k":30248,"v":[[0,1,["G3421"]],[1,7,["G2233"]],[7,8,["G5216"]],[8,9,["G3748"]],[9,11,["G2980"]],[11,13,["G5213"]],[13,14,["G3588"]],[14,15,["G3056"]],[15,17,["G2316"]],[17,18,["G3739"]],[18,19,["G4102"]],[19,20,["G3401"]],[20,21,["G333"]],[21,22,["G3588"]],[22,23,["G1545"]],[23,26,["G391"]]]},{"k":30249,"v":[[0,1,["G2424"]],[1,2,["G5547"]],[2,3,["G3588"]],[3,4,["G846"]],[4,5,["G5504"]],[5,6,["G2532"]],[6,8,["G4594"]],[8,9,["G2532"]],[9,11,["G1519","G165"]]]},{"k":30250,"v":[[0,2,["G3361"]],[2,4,["G4064"]],[4,6,["G4164"]],[6,7,["G2532"]],[7,8,["G3581"]],[8,9,["G1322"]],[9,10,["G1063"]],[10,15,["G2570"]],[15,17,["G3588"]],[17,18,["G2588"]],[18,20,["G950"]],[20,22,["G5485"]],[22,23,["G3756"]],[23,25,["G1033"]],[25,26,["G3739"]],[26,28,["G3756"]],[28,29,["G5623"]],[29,35,["G4043"]]]},{"k":30251,"v":[[0,2,["G2192"]],[2,4,["G2379"]],[4,5,["G1537","G3739"]],[5,7,["G2192"]],[7,8,["G3756"]],[8,9,["G1849"]],[9,11,["G5315"]],[11,13,["G3000"]],[13,14,["G3588"]],[14,15,["G4633"]]]},{"k":30252,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G4983"]],[3,5,["G5130"]],[5,6,["G2226"]],[6,7,["G3739"]],[7,8,["G129"]],[8,10,["G1533"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G39"]],[13,14,["G1223"]],[14,15,["G3588"]],[15,17,["G749"]],[17,18,["G4012"]],[18,19,["G266"]],[19,21,["G2618"]],[21,22,["G1854"]],[22,23,["G3588"]],[23,24,["G3925"]]]},{"k":30253,"v":[[0,1,["G1352"]],[1,2,["G2424"]],[2,3,["G2532"]],[3,4,["G2443"]],[4,7,["G37"]],[7,8,["G3588"]],[8,9,["G2992"]],[9,10,["G1223"]],[10,12,["G2398"]],[12,13,["G129"]],[13,14,["G3958"]],[14,15,["G1854"]],[15,16,["G3588"]],[16,17,["G4439"]]]},{"k":30254,"v":[[0,4,["G1831"]],[4,5,["G5106"]],[5,6,["G4314"]],[6,7,["G846"]],[7,8,["G1854"]],[8,9,["G3588"]],[9,10,["G3925"]],[10,11,["G5342"]],[11,12,["G846"]],[12,13,["G3680"]]]},{"k":30255,"v":[[0,1,["G1063"]],[1,2,["G5602"]],[2,3,["G2192"]],[3,5,["G3756"]],[5,6,["G3306"]],[6,7,["G4172"]],[7,8,["G235"]],[8,10,["G1934"]],[10,13,["G3195"]]]},{"k":30256,"v":[[0,1,["G1223"]],[1,2,["G846"]],[2,3,["G3767"]],[3,6,["G399"]],[6,8,["G2378"]],[8,10,["G133"]],[10,12,["G2316"]],[12,13,["G1275"]],[13,15,["G5123"]],[15,17,["G2590"]],[17,20,["G5491"]],[20,22,["G3670"]],[22,24,["G846"]],[24,25,["G3686"]]]},{"k":30257,"v":[[0,1,["G1161"]],[1,4,["G2140"]],[4,5,["G2532"]],[5,7,["G2842"]],[7,8,["G1950"]],[8,9,["G3361"]],[9,10,["G1063"]],[10,12,["G5108"]],[12,13,["G2378"]],[13,14,["G2316"]],[14,17,["G2100"]]]},{"k":30258,"v":[[0,1,["G3982"]],[1,7,["G2233"]],[7,8,["G5216"]],[8,9,["G2532"]],[9,10,["G5226"]],[10,12,["G1063"]],[12,13,["G846"]],[13,14,["G69"]],[14,15,["G5228"]],[15,16,["G5216"]],[16,17,["G5590"]],[17,18,["G5613"]],[18,22,["G591"]],[22,23,["G3056"]],[23,24,["G2443"]],[24,27,["G4160"]],[27,28,["G5124"]],[28,29,["G3326"]],[29,30,["G5479"]],[30,31,["G2532"]],[31,32,["G3361"]],[32,34,["G4727"]],[34,35,["G1063"]],[35,36,["G5124"]],[36,38,["G255"]],[38,40,["G5213"]]]},{"k":30259,"v":[[0,1,["G4336"]],[1,2,["G4012"]],[2,3,["G2257"]],[3,4,["G1063"]],[4,6,["G3982"]],[6,7,["(G3754)"]],[7,8,["G2192"]],[8,10,["G2570"]],[10,11,["G4893"]],[11,12,["G1722"]],[12,14,["G3956"]],[14,15,["G2309"]],[15,18,["G390","G2573"]]]},{"k":30260,"v":[[0,1,["G1161"]],[1,3,["G3870"]],[3,6,["G4056"]],[6,8,["G4160"]],[8,9,["G5124"]],[9,10,["G2443"]],[10,14,["G600"]],[14,16,["G5213"]],[16,18,["G5032"]]]},{"k":30261,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2316"]],[3,5,["G1515"]],[5,8,["G321"]],[8,9,["G1537"]],[9,11,["G3498"]],[11,12,["G2257"]],[12,13,["G2962"]],[13,14,["G2424"]],[14,16,["G3173"]],[16,17,["G4166"]],[17,19,["G3588"]],[19,20,["G4263"]],[20,21,["G1722"]],[21,23,["G129"]],[23,26,["G166"]],[26,27,["G1242"]]]},{"k":30262,"v":[[0,3,["G2675","G5209"]],[3,4,["G1722"]],[4,5,["G3956"]],[5,6,["G18"]],[6,7,["G2041"]],[7,9,["G4160"]],[9,10,["G848"]],[10,11,["G2307"]],[11,12,["G4160"]],[12,13,["G1722"]],[13,14,["G5213"]],[14,18,["G2101"]],[18,21,["G1799","G848"]],[21,22,["G1223"]],[22,23,["G2424"]],[23,24,["G5547"]],[24,26,["G3739"]],[26,28,["G1391"]],[28,32,["G1519","G165","G165"]],[32,33,["G281"]]]},{"k":30263,"v":[[0,1,["G1161"]],[1,3,["G3870"]],[3,4,["G5209"]],[4,5,["G80"]],[5,6,["G430"]],[6,7,["G3588"]],[7,8,["G3056"]],[8,10,["G3874"]],[10,11,["G1063"]],[11,13,["(G2532)"]],[13,16,["G1989"]],[16,18,["G5213"]],[18,19,["G1223"]],[19,21,["G1024"]]]},{"k":30264,"v":[[0,1,["G1097"]],[1,5,["G80"]],[5,6,["G5095"]],[6,10,["G630"]],[10,11,["G3326"]],[11,12,["G3739"]],[12,13,["G1437"]],[13,15,["G2064"]],[15,16,["G5032"]],[16,19,["G3700"]],[19,20,["G5209"]]]},{"k":30265,"v":[[0,1,["G782"]],[1,2,["G3956"]],[2,8,["G2233"]],[8,9,["G5216"]],[9,10,["G2532"]],[10,11,["G3956"]],[11,12,["G3588"]],[12,13,["G40"]],[13,14,["G3588"]],[14,15,["G575"]],[15,16,["G2482"]],[16,17,["G782"]],[17,18,["G5209"]]]},{"k":30266,"v":[[0,1,["G5485"]],[1,3,["G3326"]],[3,4,["G5216"]],[4,5,["G3956"]],[5,6,["G281"]]]},{"k":30267,"v":[[0,1,["G2385"]],[1,3,["G1401"]],[3,5,["G2316"]],[5,6,["G2532"]],[6,9,["G2962"]],[9,10,["G2424"]],[10,11,["G5547"]],[11,13,["G3588"]],[13,14,["G1427"]],[14,15,["G5443"]],[15,16,["G3588"]],[16,19,["G1722","G1290"]],[19,20,["G5463"]]]},{"k":30268,"v":[[0,1,["G3450"]],[1,2,["G80"]],[2,3,["G2233"]],[3,5,["G3956"]],[5,6,["G5479"]],[6,7,["G3752"]],[7,10,["G4045"]],[10,11,["G4164"]],[11,12,["G3986"]]]},{"k":30269,"v":[[0,1,["G1097"]],[1,3,["G3754"]],[3,4,["G3588"]],[4,5,["G1383"]],[5,7,["G5216"]],[7,8,["G4102"]],[8,9,["G2716"]],[9,10,["G5281"]]]},{"k":30270,"v":[[0,1,["G1161"]],[1,3,["G5281"]],[3,4,["G2192"]],[4,6,["G5046"]],[6,7,["G2041"]],[7,8,["G2443"]],[8,11,["G5600"]],[11,12,["G5046"]],[12,13,["G2532"]],[13,14,["G3648"]],[14,15,["G3007"]],[15,16,["G3367"]]]},{"k":30271,"v":[[0,0,["(G1161)"]],[0,1,["G1487"]],[1,2,["G5100"]],[2,4,["G5216"]],[4,5,["G3007"]],[5,6,["G4678"]],[6,9,["G154"]],[9,10,["G3844"]],[10,11,["G2316"]],[11,13,["G1325"]],[13,15,["G3956"]],[15,17,["G574"]],[17,18,["G2532"]],[18,19,["G3679"]],[19,20,["G3361"]],[20,21,["G2532"]],[21,25,["G1325"]],[25,26,["G846"]]]},{"k":30272,"v":[[0,1,["G1161"]],[1,4,["G154"]],[4,5,["G1722"]],[5,6,["G4102"]],[6,7,["G3367"]],[7,8,["G1252"]],[8,9,["G1063"]],[9,12,["G1252"]],[12,14,["G1503"]],[14,16,["G2830"]],[16,19,["G2281"]],[19,23,["G416"]],[23,24,["G2532"]],[24,25,["G4494"]]]},{"k":30273,"v":[[0,1,["G1063"]],[1,3,["G3361"]],[3,4,["G1565"]],[4,5,["G444"]],[5,6,["G3633"]],[6,7,["G3754"]],[7,10,["G2983"]],[10,12,["G5100"]],[12,13,["G3844"]],[13,14,["G3588"]],[14,15,["G2962"]]]},{"k":30274,"v":[[0,3,["G1374"]],[3,4,["G435"]],[4,6,["G182"]],[6,7,["G1722"]],[7,8,["G3956"]],[8,9,["G848"]],[9,10,["G3598"]]]},{"k":30275,"v":[[0,0,["(G1161)"]],[0,2,["G3588"]],[2,3,["G80"]],[3,6,["G5011"]],[6,7,["G2744"]],[7,8,["G1722"]],[8,10,["G848"]],[10,12,["G5311"]]]},{"k":30276,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4145"]],[3,4,["G1722"]],[4,6,["G848"]],[6,9,["G5014"]],[9,10,["G3754"]],[10,11,["G5613"]],[11,13,["G438"]],[13,16,["G5528"]],[16,20,["G3928"]]]},{"k":30277,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G2246"]],[3,7,["G393"]],[7,8,["G4862"]],[8,11,["G2742"]],[11,12,["G2532"]],[12,14,["G3583"]],[14,15,["G3588"]],[15,16,["G5528"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G438"]],[19,20,["G846"]],[20,21,["G1601"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G2143"]],[24,26,["G3588"]],[26,27,["G4383"]],[27,29,["G846"]],[29,30,["G622"]],[30,31,["G3779"]],[31,32,["G2532"]],[32,34,["G3588"]],[34,36,["G4145"]],[36,38,["G3133"]],[38,39,["G1722"]],[39,40,["G848"]],[40,41,["G4197"]]]},{"k":30278,"v":[[0,1,["G3107"]],[1,4,["G435"]],[4,5,["G3739"]],[5,6,["G5278"]],[6,7,["G3986"]],[7,8,["G3754"]],[8,11,["G1096"]],[11,12,["G1384"]],[12,15,["G2983"]],[15,16,["G3588"]],[16,17,["G4735"]],[17,19,["G2222"]],[19,20,["G3739"]],[20,21,["G3588"]],[21,22,["G2962"]],[22,24,["G1861"]],[24,28,["G25"]],[28,29,["G846"]]]},{"k":30279,"v":[[0,3,["G3367"]],[3,4,["G3004"]],[4,8,["G3985"]],[8,11,["G3985"]],[11,12,["G575"]],[12,13,["G2316"]],[13,14,["G1063"]],[14,15,["G2316"]],[15,18,["G2076","G551"]],[18,20,["G2556"]],[20,21,["G1161"]],[21,22,["G3985"]],[22,23,["G848"]],[23,25,["G3762"]]]},{"k":30280,"v":[[0,1,["G1161"]],[1,3,["G1538"]],[3,5,["G3985"]],[5,10,["G1828"]],[10,11,["G5259"]],[11,13,["G2398"]],[13,14,["G1939"]],[14,15,["G2532"]],[15,16,["G1185"]]]},{"k":30281,"v":[[0,1,["G1534"]],[1,3,["G1939"]],[3,5,["G4815"]],[5,8,["G5088"]],[8,9,["G266"]],[9,10,["G1161"]],[10,11,["G266"]],[11,15,["G658"]],[15,17,["G616"]],[17,18,["G2288"]]]},{"k":30282,"v":[[0,2,["G3361"]],[2,3,["G4105"]],[3,4,["G3450"]],[4,5,["G27"]],[5,6,["G80"]]]},{"k":30283,"v":[[0,1,["G3956"]],[1,2,["G18"]],[2,3,["G1394"]],[3,4,["G2532"]],[4,5,["G3956"]],[5,6,["G5046"]],[6,7,["G1434"]],[7,8,["G2076"]],[8,10,["G509"]],[10,13,["G2597"]],[13,14,["G575"]],[14,15,["G3588"]],[15,16,["G3962"]],[16,18,["G5457"]],[18,19,["G3844"]],[19,20,["G3739"]],[20,21,["G1762"]],[21,22,["G3756"]],[22,23,["G3883"]],[23,24,["G2228"]],[24,25,["G644"]],[25,27,["G5157"]]]},{"k":30284,"v":[[0,4,["G1014"]],[4,5,["G616"]],[5,7,["G2248"]],[7,10,["G3056"]],[10,12,["G225"]],[12,14,["G2248"]],[14,16,["G1511"]],[16,18,["G5100"]],[18,20,["G536"]],[20,22,["G848"]],[22,23,["G2938"]]]},{"k":30285,"v":[[0,1,["G5620"]],[1,2,["G3450"]],[2,3,["G27"]],[3,4,["G80"]],[4,6,["G3956"]],[6,7,["G444"]],[7,8,["G2077"]],[8,9,["G5036"]],[9,11,["G191"]],[11,12,["G1021"]],[12,14,["G2980"]],[14,15,["G1021"]],[15,16,["G1519"]],[16,17,["G3709"]]]},{"k":30286,"v":[[0,1,["G1063"]],[1,3,["G3709"]],[3,5,["G435"]],[5,6,["G2716"]],[6,7,["G3756"]],[7,9,["G1343"]],[9,11,["G2316"]]]},{"k":30287,"v":[[0,1,["G1352"]],[1,3,["G659"]],[3,4,["G3956"]],[4,5,["G4507"]],[5,6,["G2532"]],[6,7,["G4050"]],[7,9,["G2549"]],[9,11,["G1209"]],[11,12,["G1722"]],[12,13,["G4240"]],[13,14,["G3588"]],[14,15,["G1721"]],[15,16,["G3056"]],[16,19,["G1410"]],[19,21,["G4982"]],[21,22,["G5216"]],[22,23,["G5590"]]]},{"k":30288,"v":[[0,1,["G1161"]],[1,2,["G1096"]],[2,4,["G4163"]],[4,7,["G3056"]],[7,8,["G2532"]],[8,9,["G3361"]],[9,10,["G202"]],[10,11,["G3440"]],[11,12,["G3884"]],[12,15,["G1438"]]]},{"k":30289,"v":[[0,1,["G3754"]],[1,3,["G1536"]],[3,4,["G2076"]],[4,6,["G202"]],[6,9,["G3056"]],[9,10,["G2532"]],[10,11,["G3756"]],[11,13,["G4163"]],[13,14,["G3778"]],[14,17,["G1503"]],[17,19,["G435"]],[19,20,["G2657"]],[20,21,["G846"]],[21,22,["G1078"]],[22,23,["G4383"]],[23,24,["G1722"]],[24,26,["G2072"]]]},{"k":30290,"v":[[0,1,["G1063"]],[1,3,["G2657"]],[3,4,["G1438"]],[4,5,["G2532"]],[5,8,["G565"]],[8,9,["G2532"]],[9,10,["G2112"]],[10,11,["G1950"]],[11,15,["G3697"]],[15,17,["G2258"]]]},{"k":30291,"v":[[0,1,["G1161"]],[1,3,["G3879"]],[3,4,["G1519"]],[4,6,["G5046"]],[6,7,["G3551"]],[7,8,["(G3588)"]],[8,9,["G1657"]],[9,10,["G2532"]],[10,11,["G3887"]],[11,13,["G3778"]],[13,14,["G1096"]],[14,15,["G3756"]],[15,17,["G1953"]],[17,18,["G202"]],[18,19,["G235"]],[19,21,["G4163"]],[21,24,["G2041"]],[24,26,["G3778"]],[26,28,["G2071"]],[28,29,["G3107"]],[29,30,["G1722"]],[30,31,["G848"]],[31,32,["G4162"]]]},{"k":30292,"v":[[0,3,["G1536"]],[3,4,["G1722"]],[4,5,["G5213"]],[5,6,["G1380"]],[6,8,["G1511"]],[8,9,["G2357"]],[9,11,["G5468"]],[11,12,["G3361"]],[12,13,["G848"]],[13,14,["G1100"]],[14,15,["G235"]],[15,16,["G538"]],[16,18,["G848"]],[18,19,["G2588"]],[19,21,["G5127"]],[21,22,["G2356"]],[22,24,["G3152"]]]},{"k":30293,"v":[[0,1,["G2513"]],[1,2,["G2356"]],[2,3,["G2532"]],[3,4,["G283"]],[4,5,["G3844"]],[5,6,["G2316"]],[6,7,["G2532"]],[7,9,["G3962"]],[9,10,["G2076"]],[10,11,["G3778"]],[11,13,["G1980"]],[13,15,["G3737"]],[15,16,["G2532"]],[16,17,["G5503"]],[17,18,["G1722"]],[18,19,["G846"]],[19,20,["G2347"]],[20,23,["G5083"]],[23,24,["G1438"]],[24,25,["G784"]],[25,26,["G575"]],[26,27,["G3588"]],[27,28,["G2889"]]]},{"k":30294,"v":[[0,1,["G3450"]],[1,2,["G80"]],[2,3,["G2192"]],[3,4,["G3361"]],[4,5,["G3588"]],[5,6,["G4102"]],[6,8,["G2257"]],[8,9,["G2962"]],[9,10,["G2424"]],[10,11,["G5547"]],[11,15,["G1391"]],[15,16,["G1722"]],[16,19,["G4382"]]]},{"k":30295,"v":[[0,1,["G1063"]],[1,2,["G1437"]],[2,4,["G1525"]],[4,5,["G1519"]],[5,6,["G5216"]],[6,7,["G4864"]],[7,9,["G435"]],[9,13,["G5554"]],[13,14,["G1722"]],[14,15,["G2986"]],[15,16,["G2066"]],[16,17,["G1161"]],[17,20,["G1525"]],[20,21,["G2532"]],[21,24,["G4434"]],[24,25,["G1722"]],[25,26,["G4508"]],[26,27,["G2066"]]]},{"k":30296,"v":[[0,1,["G2532"]],[1,4,["G1914"]],[4,5,["G1909"]],[5,8,["G5409"]],[8,9,["G3588"]],[9,10,["G2986"]],[10,11,["G2066"]],[11,12,["G2532"]],[12,13,["G2036"]],[13,15,["G846"]],[15,16,["G2521"]],[16,17,["G4771"]],[17,18,["G5602"]],[18,22,["G2573"]],[22,23,["G2532"]],[23,24,["G2036"]],[24,26,["G3588"]],[26,27,["G4434"]],[27,28,["G2476"]],[28,29,["G4771"]],[29,30,["G1563"]],[30,31,["G2228"]],[31,32,["G2521"]],[32,33,["G5602"]],[33,34,["G5259"]],[34,35,["G3450"]],[35,36,["G5286"]]]},{"k":30297,"v":[[0,5,["G1252","G3756","G2532"]],[5,6,["G1722"]],[6,7,["G1438"]],[7,8,["G2532"]],[8,10,["G1096"]],[10,11,["G2923"]],[11,13,["G4190"]],[13,14,["G1261"]]]},{"k":30298,"v":[[0,1,["G191"]],[1,2,["G3450"]],[2,3,["G27"]],[3,4,["G80"]],[4,6,["G3756"]],[6,7,["G2316"]],[7,8,["G1586"]],[8,9,["G3588"]],[9,10,["G4434"]],[10,12,["G5127"]],[12,13,["G2889"]],[13,14,["G4145"]],[14,15,["G1722"]],[15,16,["G4102"]],[16,17,["G2532"]],[17,18,["G2818"]],[18,20,["G3588"]],[20,21,["G932"]],[21,22,["G3739"]],[22,25,["G1861"]],[25,29,["G25"]],[29,30,["G846"]]]},{"k":30299,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,4,["G818"]],[4,5,["G3588"]],[5,6,["G4434"]],[6,8,["G3756"]],[8,10,["G4145"]],[10,11,["G2616"]],[11,12,["G5216"]],[12,13,["G2532"]],[13,14,["G1670"]],[14,15,["G5209"]],[15,16,["G1519"]],[16,19,["G2922"]]]},{"k":30300,"v":[[0,2,["G3756"]],[2,3,["G846"]],[3,4,["G987"]],[4,6,["G2570"]],[6,7,["G3686"]],[7,10,["G3588","(G1909)"]],[10,11,["G5209"]],[11,13,["G1941"]]]},{"k":30301,"v":[[0,1,["G1487"]],[1,2,["(G3305)"]],[2,3,["G5055"]],[3,5,["G937"]],[5,6,["G3551"]],[6,7,["G2596"]],[7,9,["G3588"]],[9,10,["G1124"]],[10,13,["G25"]],[13,14,["G4675"]],[14,15,["G4139"]],[15,16,["G5613"]],[16,17,["G4572"]],[17,19,["G4160"]],[19,20,["G2573"]]]},{"k":30302,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,7,["G4380"]],[7,9,["G2038"]],[9,10,["G266"]],[10,13,["G1651"]],[13,14,["G5259"]],[14,15,["G3588"]],[15,16,["G3551"]],[16,17,["G5613"]],[17,18,["G3848"]]]},{"k":30303,"v":[[0,1,["G1063"]],[1,2,["G3748"]],[2,4,["G5083"]],[4,5,["G3588"]],[5,6,["G3650"]],[6,7,["G3551"]],[7,8,["G1161"]],[8,10,["G4417"]],[10,11,["G1722"]],[11,12,["G1520"]],[12,15,["G1096"]],[15,16,["G1777"]],[16,18,["G3956"]]]},{"k":30304,"v":[[0,1,["G1063"]],[1,4,["G2036"]],[4,6,["G3361"]],[6,8,["G3431"]],[8,9,["G2036"]],[9,10,["G2532"]],[10,12,["G3361"]],[12,13,["G5407"]],[13,14,["G1161"]],[14,15,["G1487"]],[15,19,["G3431","G3756"]],[19,20,["G1161"]],[20,23,["G5407"]],[23,26,["G1096"]],[26,28,["G3848"]],[28,31,["G3551"]]]},{"k":30305,"v":[[0,1,["G3779"]],[1,2,["G2980"]],[2,4,["G2532"]],[4,5,["G3779"]],[5,6,["G4160"]],[6,7,["G5613"]],[7,11,["G3195"]],[11,12,["G2919"]],[12,13,["G1223"]],[13,15,["G3551"]],[15,17,["G1657"]]]},{"k":30306,"v":[[0,1,["G1063"]],[1,5,["G2920"]],[5,7,["G448"]],[7,10,["G4160"]],[10,11,["G3361"]],[11,12,["G1656"]],[12,13,["G2532"]],[13,14,["G1656"]],[14,16,["G2620"]],[16,17,["G2920"]]]},{"k":30307,"v":[[0,1,["G5101"]],[1,4,["G3786"]],[4,5,["G3450"]],[5,6,["G80"]],[6,7,["G1437"]],[7,9,["G5100"]],[9,10,["G3004"]],[10,12,["G2192"]],[12,13,["G4102"]],[13,14,["G1161"]],[14,15,["G2192"]],[15,16,["G3361"]],[16,17,["G2041","(G3361)"]],[17,18,["G1410"]],[18,19,["G4102"]],[19,20,["G4982"]],[20,21,["G846"]]]},{"k":30308,"v":[[0,0,["(G1161)"]],[0,1,["G1437"]],[1,3,["G80"]],[3,4,["G2228"]],[4,5,["G79"]],[5,6,["G5225"]],[6,7,["G1131"]],[7,8,["G2532"]],[8,9,["G5600","G3007"]],[9,11,["G2184"]],[11,12,["G5160"]]]},{"k":30309,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G1537"]],[3,4,["G5216"]],[4,5,["G2036"]],[5,7,["G846"]],[7,8,["G5217"]],[8,9,["G1722"]],[9,10,["G1515"]],[10,13,["G2328"]],[13,14,["G2532"]],[14,15,["G5526"]],[15,16,["G1161"]],[16,18,["G1325"]],[18,19,["G846"]],[19,20,["G3361"]],[20,25,["G2006"]],[25,27,["G3588"]],[27,28,["G4983"]],[28,29,["G5101"]],[29,32,["G3786"]]]},{"k":30310,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,3,["G4102"]],[3,4,["G1437"]],[4,6,["G2192"]],[6,7,["G3361"]],[7,8,["G2041"]],[8,9,["G2076"]],[9,10,["G3498"]],[10,12,["G2596","G1438"]]]},{"k":30311,"v":[[0,1,["G235"]],[1,3,["G5100"]],[3,5,["G2046"]],[5,6,["G4771"]],[6,7,["G2192"]],[7,8,["G4102"]],[8,10,["G2504"]],[10,11,["G2192"]],[11,12,["G2041"]],[12,13,["G1166"]],[13,14,["G3427"]],[14,15,["G4675"]],[15,16,["G4102"]],[16,17,["G5565"]],[17,18,["G4675"]],[18,19,["G2041"]],[19,21,["G2504"]],[21,23,["G1166"]],[23,24,["G4671"]],[24,25,["G3450"]],[25,26,["G4102"]],[26,27,["G1537"]],[27,28,["G3450"]],[28,29,["G2041"]]]},{"k":30312,"v":[[0,1,["G4771"]],[1,2,["G4100"]],[2,3,["G3754"]],[3,5,["G2076"]],[5,6,["G1520"]],[6,7,["G2316"]],[7,9,["G4160"]],[9,10,["G2573"]],[10,11,["G3588"]],[11,12,["G1140"]],[12,13,["G2532"]],[13,14,["G4100"]],[14,15,["G2532"]],[15,16,["G5425"]]]},{"k":30313,"v":[[0,1,["G1161"]],[1,2,["G2309"]],[2,4,["G1097"]],[4,5,["G5599"]],[5,6,["G2756"]],[6,7,["G444"]],[7,8,["G3754"]],[8,9,["G4102"]],[9,10,["G5565"]],[10,11,["G2041"]],[11,12,["G2076"]],[12,13,["G3498"]]]},{"k":30314,"v":[[0,2,["G3756"]],[2,3,["G11"]],[3,4,["G2257"]],[4,5,["G3962"]],[5,6,["G1344"]],[6,7,["G1537"]],[7,8,["G2041"]],[8,12,["G399"]],[12,13,["G2464"]],[13,14,["G848"]],[14,15,["G5207"]],[15,16,["G1909"]],[16,17,["G3588"]],[17,18,["G2379"]]]},{"k":30315,"v":[[0,1,["G991"]],[1,3,["G3754"]],[3,4,["G4102"]],[4,6,["G4903"]],[6,7,["G846"]],[7,8,["G2041"]],[8,9,["G2532"]],[9,10,["G1537"]],[10,11,["G2041"]],[11,13,["G4102"]],[13,15,["G5048"]]]},{"k":30316,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1124"]],[3,5,["G4137"]],[5,7,["G3004","(G1161)"]],[7,8,["G11"]],[8,9,["G4100"]],[9,10,["G2316"]],[10,11,["G2532"]],[11,14,["G3049"]],[14,16,["G846"]],[16,17,["G1519"]],[17,18,["G1343"]],[18,19,["G2532"]],[19,22,["G2564"]],[22,24,["G5384"]],[24,26,["G2316"]]]},{"k":30317,"v":[[0,2,["G3708"]],[2,3,["G5106"]],[3,4,["G3754"]],[4,6,["G1537"]],[6,7,["G2041"]],[7,9,["G444"]],[9,11,["G1344"]],[11,12,["G2532"]],[12,13,["G3756"]],[13,14,["G1537"]],[14,15,["G4102"]],[15,16,["G3440"]]]},{"k":30318,"v":[[0,1,["G3668"]],[1,2,["G2532"]],[2,4,["G3756"]],[4,5,["G4460"]],[5,6,["G3588"]],[6,7,["G4204"]],[7,8,["G1344"]],[8,9,["G1537"]],[9,10,["G2041"]],[10,14,["G5264"]],[14,15,["G3588"]],[15,16,["G32"]],[16,17,["G2532"]],[17,21,["G1544"]],[21,22,["G2087"]],[22,23,["G3598"]]]},{"k":30319,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G3588"]],[3,4,["G4983"]],[4,5,["G5565"]],[5,7,["G4151"]],[7,8,["G2076"]],[8,9,["G3498"]],[9,10,["G3779"]],[10,11,["G4102"]],[11,12,["G5565"]],[12,13,["G2041"]],[13,14,["G2076"]],[14,15,["G3498"]],[15,16,["G2532"]]]},{"k":30320,"v":[[0,1,["G3450"]],[1,2,["G80"]],[2,3,["G1096"]],[3,4,["G3361"]],[4,5,["G4183"]],[5,6,["G1320"]],[6,7,["G1492"]],[7,8,["G3754"]],[8,11,["G2983"]],[11,13,["G3187"]],[13,14,["G2917"]]]},{"k":30321,"v":[[0,1,["G1063"]],[1,4,["G4183"]],[4,6,["G4417"]],[6,7,["G537"]],[7,10,["G1536"]],[10,11,["G4417"]],[11,12,["G3756"]],[12,13,["G1722"]],[13,14,["G3056"]],[14,16,["G3778"]],[16,19,["G5046"]],[19,20,["G435"]],[20,22,["G1415"]],[22,23,["G2532"]],[23,25,["G5468"]],[25,26,["G3588"]],[26,27,["G3650"]],[27,28,["G4983"]]]},{"k":30322,"v":[[0,1,["G2400"]],[1,3,["G906"]],[3,4,["G5469"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G2462"]],[7,8,["G4750"]],[8,10,["G846"]],[10,12,["G3982"]],[12,13,["G2254"]],[13,14,["G2532"]],[14,17,["G3329"]],[17,18,["G846"]],[18,19,["G3650"]],[19,20,["G4983"]]]},{"k":30323,"v":[[0,1,["G2400"]],[1,2,["G2532"]],[2,3,["G3588"]],[3,4,["G4143"]],[4,8,["(G5607)"]],[8,10,["G5082"]],[10,11,["G2532"]],[11,13,["G1643"]],[13,14,["G5259"]],[14,15,["G4642"]],[15,16,["G417"]],[16,21,["G3329"]],[21,22,["G5259"]],[22,25,["G1646"]],[25,26,["G4079"]],[26,27,["G3699","G302"]],[27,28,["G3588"]],[28,29,["G3730","G2116"]],[29,30,["G1014"]]]},{"k":30324,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,3,["G3588"]],[3,4,["G1100"]],[4,5,["G2076"]],[5,7,["G3398"]],[7,8,["G3196"]],[8,9,["G2532"]],[9,12,["G3166"]],[12,13,["G2400"]],[13,15,["G2245"]],[15,17,["G5208"]],[17,19,["G3641"]],[19,20,["G4442"]],[20,21,["G381"]]]},{"k":30325,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1100"]],[3,6,["G4442"]],[6,8,["G2889"]],[8,10,["G93"]],[10,11,["G3779"]],[11,12,["G2525"]],[12,13,["G3588"]],[13,14,["G1100"]],[14,15,["G1722"]],[15,16,["G2257"]],[16,17,["G3196"]],[17,20,["G4695"]],[20,21,["G3588"]],[21,22,["G3650"]],[22,23,["G4983"]],[23,24,["G2532"]],[24,27,["G5394"]],[27,28,["G3588"]],[28,29,["G5164"]],[29,31,["G1078"]],[31,32,["G2532"]],[32,37,["G5394"]],[37,38,["G5259"]],[38,39,["G1067"]]]},{"k":30326,"v":[[0,1,["G1063"]],[1,2,["G3956"]],[2,3,["G5449"]],[3,5,["G2342"]],[5,6,["G2532"]],[6,8,["G4071"]],[8,9,["G5037"]],[9,11,["G2062"]],[11,12,["G2532"]],[12,17,["G1724"]],[17,19,["G1150"]],[19,20,["G2532"]],[20,23,["G1150"]],[23,25,["G442","G5449"]]]},{"k":30327,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1100"]],[3,4,["G1410"]],[4,5,["G3762"]],[5,6,["G444"]],[6,7,["G1150"]],[7,11,["G183"]],[11,12,["G2556"]],[12,13,["G3324"]],[13,15,["G2287"]],[15,16,["G2447"]]]},{"k":30328,"v":[[0,1,["G1722","G846"]],[1,2,["G2127"]],[2,4,["G2316"]],[4,5,["G2532"]],[5,7,["G3962"]],[7,8,["G2532"]],[8,9,["G1722","G846"]],[9,10,["G2672"]],[10,12,["G444"]],[12,15,["G1096"]],[15,16,["G2596"]],[16,18,["G3669"]],[18,20,["G2316"]]]},{"k":30329,"v":[[0,1,["G1537"]],[1,3,["G3588"]],[3,4,["G846"]],[4,5,["G4750"]],[5,6,["G1831"]],[6,7,["G2129"]],[7,8,["G2532"]],[8,9,["G2671"]],[9,10,["G3450"]],[10,11,["G80"]],[11,13,["G5023"]],[13,14,["G5534"]],[14,15,["G3756"]],[15,16,["G3779"]],[16,18,["G1096"]]]},{"k":30330,"v":[[0,1,["(G3385)"]],[1,3,["G4077"]],[3,5,["G1032"]],[5,6,["G1537"]],[6,7,["G3588"]],[7,8,["G846"]],[8,9,["G3692"]],[9,10,["G1099"]],[10,12,["G2532"]],[12,13,["G4089"]]]},{"k":30331,"v":[[0,0,["(G3361)"]],[0,1,["G1410"]],[1,4,["G4808"]],[4,5,["G3450"]],[5,6,["G80"]],[6,7,["G4160"]],[7,9,["G1636"]],[9,10,["G2228"]],[10,12,["G288"]],[12,13,["G4810"]],[13,14,["G3779"]],[14,16,["G3762"]],[16,17,["G4077"]],[17,19,["G4160"]],[19,20,["G252"]],[20,21,["G5204"]],[21,22,["G2532"]],[22,23,["G1099"]]]},{"k":30332,"v":[[0,1,["G5101"]],[1,5,["G4680"]],[5,6,["G2532"]],[6,9,["G1990"]],[9,10,["G1722"]],[10,11,["G5213"]],[11,14,["G1166"]],[14,16,["G1537"]],[16,18,["G2570"]],[18,19,["G391"]],[19,20,["G848"]],[20,21,["G2041"]],[21,22,["G1722"]],[22,23,["G4240"]],[23,25,["G4678"]]]},{"k":30333,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G2192"]],[4,5,["G4089"]],[5,6,["G2205"]],[6,7,["G2532"]],[7,8,["G2052"]],[8,9,["G1722"]],[9,10,["G5216"]],[10,11,["G2588"]],[11,12,["G2620"]],[12,13,["G3361"]],[13,14,["G2532"]],[14,15,["G5574"]],[15,17,["G2596"]],[17,18,["G3588"]],[18,19,["G225"]]]},{"k":30334,"v":[[0,1,["G3778"]],[1,2,["G4678"]],[2,3,["G2718"]],[3,4,["G3756"]],[4,6,["G509"]],[6,7,["G235"]],[7,9,["G1919"]],[9,10,["G5591"]],[10,11,["G1141"]]]},{"k":30335,"v":[[0,1,["G1063"]],[1,2,["G3699"]],[2,3,["G2205"]],[3,4,["G2532"]],[4,5,["G2052"]],[5,7,["G1563"]],[7,9,["G181"]],[9,10,["G2532"]],[10,11,["G3956"]],[11,12,["G5337"]],[12,13,["G4229"]]]},{"k":30336,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4678"]],[3,7,["G509"]],[7,8,["G2076"]],[8,9,["G4412","G3303"]],[9,10,["G53"]],[10,11,["G1899"]],[11,12,["G1516"]],[12,13,["G1933"]],[13,18,["G2138"]],[18,19,["G3324"]],[19,21,["G1656"]],[21,22,["G2532"]],[22,23,["G18"]],[23,24,["G2590"]],[24,26,["G87"]],[26,27,["G2532"]],[27,29,["G505"]]]},{"k":30337,"v":[[0,1,["G1161"]],[1,3,["G2590"]],[3,5,["G1343"]],[5,7,["G4687"]],[7,8,["G1722"]],[8,9,["G1515"]],[9,11,["G3588"]],[11,13,["G4160"]],[13,14,["G1515"]]]},{"k":30338,"v":[[0,2,["G4159"]],[2,4,["G4171"]],[4,5,["G2532"]],[5,6,["G3163"]],[6,7,["G1722"]],[7,8,["G5213"]],[8,11,["G3756"]],[11,12,["G1782"]],[12,14,["G1537"]],[14,15,["G5216"]],[15,16,["G2237"]],[16,18,["G4754"]],[18,19,["G1722"]],[19,20,["G5216"]],[20,21,["G3196"]]]},{"k":30339,"v":[[0,2,["G1937"]],[2,3,["G2532"]],[3,4,["G2192"]],[4,5,["G3756"]],[5,7,["G5407"]],[7,8,["G2532"]],[8,11,["G2206"]],[11,12,["G2532"]],[12,13,["G1410","G3756"]],[13,14,["G2013"]],[14,16,["G3164"]],[16,17,["G2532"]],[17,18,["G4170"]],[18,19,["G1161"]],[19,21,["G2192"]],[21,22,["G3756"]],[22,24,["G5209"]],[24,25,["G154"]],[25,26,["G3361"]]]},{"k":30340,"v":[[0,2,["G154"]],[2,3,["G2532"]],[3,4,["G2983"]],[4,5,["G3756"]],[5,6,["G1360"]],[6,8,["G154"]],[8,9,["G2560"]],[9,10,["G2443"]],[10,13,["G1159"]],[13,15,["G1722"]],[15,16,["G5216"]],[16,17,["G2237"]]]},{"k":30341,"v":[[0,2,["G3432"]],[2,3,["G2532"]],[3,4,["G3428"]],[4,5,["G1492"]],[5,7,["G3756"]],[7,8,["G3754"]],[8,9,["G3588"]],[9,10,["G5373"]],[10,12,["G3588"]],[12,13,["G2889"]],[13,14,["G2076"]],[14,15,["G2189"]],[15,17,["G2316"]],[17,18,["G3739","G302"]],[18,19,["G3767"]],[19,20,["G1014"]],[20,21,["G1511"]],[21,23,["G5384"]],[23,25,["G3588"]],[25,26,["G2889"]],[26,27,["G2525"]],[27,29,["G2190"]],[29,31,["G2316"]]]},{"k":30342,"v":[[0,2,["(G2228)"]],[2,3,["G1380"]],[3,4,["G3754"]],[4,5,["G3588"]],[5,6,["G1124"]],[6,7,["G3004"]],[7,9,["G2761"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G3739"]],[12,13,["G2730"]],[13,14,["G1722"]],[14,15,["G2254"]],[15,16,["G1971"]],[16,17,["G4314"]],[17,18,["G5355"]]]},{"k":30343,"v":[[0,1,["G1161"]],[1,3,["G1325"]],[3,4,["G3187"]],[4,5,["G5485"]],[5,6,["G1352"]],[6,8,["G3004"]],[8,9,["G2316"]],[9,10,["G498"]],[10,12,["G5244"]],[12,13,["G1161"]],[13,14,["G1325"]],[14,15,["G5485"]],[15,18,["G5011"]]]},{"k":30344,"v":[[0,1,["G5293"]],[1,3,["G3767"]],[3,5,["G2316"]],[5,6,["G436"]],[6,7,["G3588"]],[7,8,["G1228"]],[8,9,["G2532"]],[9,12,["G5343"]],[12,13,["G575"]],[13,14,["G5216"]]]},{"k":30345,"v":[[0,2,["G1448"]],[2,4,["G2316"]],[4,5,["G2532"]],[5,9,["G1448"]],[9,11,["G5213"]],[11,12,["G2511"]],[12,14,["G5495"]],[14,16,["G268"]],[16,17,["G2532"]],[17,18,["G48"]],[18,20,["G2588"]],[20,23,["G1374"]]]},{"k":30346,"v":[[0,2,["G5003"]],[2,3,["G2532"]],[3,4,["G3996"]],[4,5,["G2532"]],[5,6,["G2799"]],[6,8,["G5216"]],[8,9,["G1071"]],[9,11,["G3344"]],[11,12,["G1519"]],[12,13,["G3997"]],[13,14,["G2532"]],[14,16,["G5479"]],[16,17,["G1519"]],[17,18,["G2726"]]]},{"k":30347,"v":[[0,2,["G5013"]],[2,5,["G1799"]],[5,7,["G3588"]],[7,8,["G2962"]],[8,9,["G2532"]],[9,14,["G5312","G5209"]]]},{"k":30348,"v":[[0,3,["G2635","G3361"]],[3,6,["G240"]],[6,7,["G80"]],[7,11,["G2635"]],[11,14,["G80"]],[14,15,["G2532"]],[15,16,["G2919"]],[16,17,["G848"]],[17,18,["G80"]],[18,20,["G2635"]],[20,23,["G3551"]],[23,24,["G2532"]],[24,25,["G2919"]],[25,27,["G3551"]],[27,28,["G1161"]],[28,29,["G1487"]],[29,31,["G2919"]],[31,33,["G3551"]],[33,35,["G1488"]],[35,36,["G3756"]],[36,38,["G4163"]],[38,41,["G3551"]],[41,42,["G235"]],[42,44,["G2923"]]]},{"k":30349,"v":[[0,2,["G2076"]],[2,3,["G1520"]],[3,4,["G3550"]],[4,7,["G1410"]],[7,9,["G4982"]],[9,10,["G2532"]],[10,12,["G622"]],[12,13,["G5101"]],[13,14,["G1488"]],[14,15,["G4771"]],[15,16,["G3739"]],[16,17,["G2919"]],[17,18,["G2087"]]]},{"k":30350,"v":[[0,2,["G33"]],[2,3,["G3568"]],[3,6,["G3004"]],[6,8,["G4594"]],[8,9,["G2532"]],[9,11,["G839"]],[11,14,["G4198"]],[14,15,["G1519"]],[15,16,["G3592"]],[16,18,["G4172"]],[18,19,["G2532"]],[19,20,["G4160"]],[20,21,["G1563"]],[21,22,["G1520"]],[22,23,["G1763"]],[23,24,["G2532"]],[24,27,["G1710"]],[27,28,["G2532"]],[28,30,["G2770"]]]},{"k":30351,"v":[[0,1,["G3748"]],[1,3,["G1987"]],[3,4,["G3756"]],[4,5,["G3588"]],[5,9,["G3588"]],[9,10,["G839"]],[10,11,["G1063"]],[11,12,["G4169"]],[12,14,["G5216"]],[14,15,["G2222"]],[15,17,["G2076"]],[17,18,["G1063"]],[18,20,["G822"]],[20,22,["G5316"]],[22,23,["G4314"]],[23,26,["G3641"]],[26,27,["G1161"]],[27,28,["G1899"]],[28,30,["G853"]]]},{"k":30352,"v":[[0,1,["G473"]],[1,3,["G5209"]],[3,6,["G3004"]],[6,7,["G1437"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,10,["G2309"]],[10,12,["(G2532)"]],[12,13,["G2198"]],[13,14,["G2532"]],[14,15,["G4160"]],[15,16,["G5124"]],[16,17,["G2228"]],[17,18,["G1565"]]]},{"k":30353,"v":[[0,1,["G1161"]],[1,2,["G3568"]],[2,4,["G2744"]],[4,5,["G1722"]],[5,6,["G5216"]],[6,7,["G212"]],[7,8,["G3956"]],[8,9,["G5108"]],[9,10,["G2746"]],[10,11,["G2076"]],[11,12,["G4190"]]]},{"k":30354,"v":[[0,1,["G3767"]],[1,5,["G1492"]],[5,7,["G4160"]],[7,8,["G2570"]],[8,9,["G2532"]],[9,10,["G4160"]],[10,12,["G3361"]],[12,14,["G846"]],[14,16,["G2076"]],[16,17,["G266"]]]},{"k":30355,"v":[[0,2,["G33"]],[2,3,["G3568"]],[3,6,["G4145"]],[6,7,["G2799"]],[7,9,["G3649"]],[9,10,["G1909"]],[10,11,["G5216"]],[11,12,["G5004"]],[12,16,["G1904"]],[16,17,[]]]},{"k":30356,"v":[[0,1,["G5216"]],[1,2,["G4149"]],[2,4,["G4595"]],[4,5,["G2532"]],[5,6,["G5216"]],[6,7,["G2440"]],[7,8,["G1096"]],[8,9,["G4598"]]]},{"k":30357,"v":[[0,1,["G5216"]],[1,2,["G5557"]],[2,3,["G2532"]],[3,4,["G696"]],[4,6,["G2728"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G2447"]],[9,11,["G846"]],[11,13,["G2071"]],[13,14,["(G1519)"]],[14,15,["G3142"]],[15,17,["G5213"]],[17,18,["G2532"]],[18,20,["G5315"]],[20,21,["G5216"]],[21,22,["G4561"]],[22,25,["G5613"]],[25,26,["G4442"]],[26,31,["G2343"]],[31,32,["G1722"]],[32,34,["G2078"]],[34,35,["G2250"]]]},{"k":30358,"v":[[0,1,["G2400"]],[1,2,["G3588"]],[2,3,["G3408"]],[3,5,["G3588"]],[5,6,["G2040"]],[6,10,["G270"]],[10,11,["G5216"]],[11,12,["G5561"]],[12,15,["G575"]],[15,16,["G5216"]],[16,20,["G650"]],[20,21,["G2896"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G995"]],[24,29,["G2325"]],[29,31,["G1525"]],[31,32,["G1519"]],[32,33,["G3588"]],[33,34,["G3775"]],[34,37,["G2962"]],[37,39,["G4519"]]]},{"k":30359,"v":[[0,5,["G5171"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G1093"]],[8,9,["G2532"]],[9,11,["G4684"]],[11,14,["G5142"]],[14,15,["G5216"]],[15,16,["G2588"]],[16,18,["G1722"]],[18,20,["G2250"]],[20,22,["G4967"]]]},{"k":30360,"v":[[0,3,["G2613"]],[3,5,["G5407"]],[5,6,["G3588"]],[6,7,["G1342"]],[7,11,["G3756"]],[11,12,["G498"]],[12,13,["G5213"]]]},{"k":30361,"v":[[0,2,["G3114"]],[2,3,["G3767"]],[3,4,["G80"]],[4,5,["G2193"]],[5,6,["G3588"]],[6,7,["G3952"]],[7,9,["G3588"]],[9,10,["G2962"]],[10,11,["G2400"]],[11,12,["G3588"]],[12,13,["G1092"]],[13,15,["G1551"]],[15,16,["G3588"]],[16,17,["G5093"]],[17,18,["G2590"]],[18,20,["G3588"]],[20,21,["G1093"]],[21,22,["G2532"]],[22,25,["G3114"]],[25,26,["G1909"]],[26,27,["G846"]],[27,28,["G2193","G302"]],[28,30,["G2983"]],[30,32,["G4406"]],[32,33,["G2532"]],[33,34,["G3797"]],[34,35,["G5205"]]]},{"k":30362,"v":[[0,4,["G3114","G5210","G2532"]],[4,5,["G4741"]],[5,6,["G5216"]],[6,7,["G2588"]],[7,8,["G3754"]],[8,9,["G3588"]],[9,10,["G3952"]],[10,12,["G3588"]],[12,13,["G2962"]],[13,15,["G1448"]]]},{"k":30363,"v":[[0,1,["G4727"]],[1,2,["G3361"]],[2,5,["G240","G2596"]],[5,6,["G80"]],[6,7,["G3363"]],[7,10,["G2632"]],[10,11,["G2400"]],[11,12,["G3588"]],[12,13,["G2923"]],[13,14,["G2476"]],[14,15,["G4253"]],[15,16,["G3588"]],[16,17,["G2374"]]]},{"k":30364,"v":[[0,1,["G2983"]],[1,2,["G3450"]],[2,3,["G80"]],[3,4,["G3588"]],[4,5,["G4396"]],[5,6,["G3739"]],[6,8,["G2980"]],[8,10,["G3588"]],[10,11,["G3686"]],[11,14,["G2962"]],[14,17,["G5262"]],[17,20,["G2552"]],[20,21,["G2532"]],[21,23,["G3115"]]]},{"k":30365,"v":[[0,1,["G2400"]],[1,5,["G3106"]],[5,7,["G5278"]],[7,10,["G191"]],[10,12,["G3588"]],[12,13,["G5281"]],[13,15,["G2492"]],[15,16,["G2532"]],[16,18,["G1492"]],[18,19,["G3588"]],[19,20,["G5056"]],[20,23,["G2962"]],[23,24,["G3754"]],[24,25,["G3588"]],[25,26,["G2962"]],[26,27,["G2076"]],[27,29,["G4184"]],[29,30,["G2532"]],[30,33,["G3629"]]]},{"k":30366,"v":[[0,1,["G1161"]],[1,2,["G4253"]],[2,4,["G3956"]],[4,5,["G3450"]],[5,6,["G80"]],[6,7,["G3660"]],[7,8,["G3361"]],[8,9,["G3383"]],[9,11,["G3772"]],[11,12,["G3383"]],[12,14,["G3588"]],[14,15,["G1093"]],[15,16,["G3383"]],[16,18,["G243"]],[18,19,["G5100"]],[19,20,["G3727"]],[20,21,["G1161"]],[21,23,["G5216"]],[23,24,["G3483"]],[24,25,["G2277"]],[25,26,["G3483"]],[26,27,["G2532"]],[27,28,["(G3588)"]],[28,29,["G3756"]],[29,30,["G3756"]],[30,31,["G3363"]],[31,33,["G4098"]],[33,34,["G1519"]],[34,35,["G5272"]]]},{"k":30367,"v":[[0,5,["G2553","G5100","G1722","G5213"]],[5,8,["G4336"]],[8,11,["G2114","G5100"]],[11,15,["G5567"]]]},{"k":30368,"v":[[0,3,["G770","G5100"]],[3,4,["G1722"]],[4,5,["G5213"]],[5,9,["G4341"]],[9,10,["G3588"]],[10,11,["G4245"]],[11,13,["G3588"]],[13,14,["G1577"]],[14,15,["G2532"]],[15,18,["G4336"]],[18,19,["G1909"]],[19,20,["G846"]],[20,21,["G218"]],[21,22,["G846"]],[22,24,["G1637"]],[24,25,["G1722"]],[25,26,["G3588"]],[26,27,["G3686"]],[27,29,["G3588"]],[29,30,["G2962"]]]},{"k":30369,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2171"]],[3,5,["G4102"]],[5,7,["G4982"]],[7,8,["G3588"]],[8,9,["G2577"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G2962"]],[12,16,["G1453","G846"]],[16,18,["G2579"]],[18,20,["G5600"]],[20,21,["G4160"]],[21,22,["G266"]],[22,26,["G863"]],[26,27,["G846"]]]},{"k":30370,"v":[[0,1,["G1843"]],[1,3,["G3900"]],[3,6,["G240"]],[6,7,["G2532"]],[7,8,["G2172"]],[8,11,["G240","G5228"]],[11,12,["G3704"]],[12,16,["G2390"]],[16,19,["G1754"]],[19,20,["G1162"]],[20,24,["G1342"]],[24,25,["G2480"]],[25,26,["G4183"]]]},{"k":30371,"v":[[0,1,["G2243"]],[1,2,["G2258"]],[2,4,["G444"]],[4,8,["G3663"]],[8,10,["G2254"]],[10,12,["G2532"]],[12,15,["G4336","G4335"]],[15,19,["G3361"]],[19,20,["G1026"]],[20,21,["G2532"]],[21,23,["G1026"]],[23,24,["G3756"]],[24,25,["G1909"]],[25,26,["G3588"]],[26,27,["G1093"]],[27,32,["G5140"]],[32,33,["G1763"]],[33,34,["G2532"]],[34,35,["G1803"]],[35,36,["G3376"]]]},{"k":30372,"v":[[0,1,["G2532"]],[1,3,["G4336"]],[3,4,["G3825"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G3772"]],[7,8,["G1325"]],[8,9,["G5205"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G1093"]],[12,14,["G985"]],[14,15,["G848"]],[15,16,["G2590"]]]},{"k":30373,"v":[[0,1,["G80"]],[1,2,["G1437"]],[2,3,["G5100"]],[3,4,["G1722"]],[4,5,["G5213"]],[5,7,["G4105"]],[7,8,["G575"]],[8,9,["G3588"]],[9,10,["G225"]],[10,11,["G2532"]],[11,12,["G5100"]],[12,13,["G1994"]],[13,14,["G846"]]]},{"k":30374,"v":[[0,3,["G1097"]],[3,4,["G3754"]],[4,7,["G1994"]],[7,9,["G268"]],[9,10,["G1537"]],[10,12,["G4106"]],[12,14,["G846"]],[14,15,["G3598"]],[15,17,["G4982"]],[17,19,["G5590"]],[19,20,["G1537"]],[20,21,["G2288"]],[21,22,["G2532"]],[22,24,["G2572"]],[24,26,["G4128"]],[26,28,["G266"]]]},{"k":30375,"v":[[0,1,["G4074"]],[1,3,["G652"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,9,["G3927"]],[9,11,["G1290"]],[11,12,["G4195"]],[12,13,["G1053"]],[13,14,["G2587"]],[14,15,["G773"]],[15,16,["G2532"]],[16,17,["G978"]]]},{"k":30376,"v":[[0,1,["G1588"]],[1,2,["G2596"]],[2,5,["G4268"]],[5,7,["G2316"]],[7,9,["G3962"]],[9,10,["G1722"]],[10,11,["G38"]],[11,14,["G4151"]],[14,15,["G1519"]],[15,16,["G5218"]],[16,17,["G2532"]],[17,18,["G4473"]],[18,21,["G129"]],[21,23,["G2424"]],[23,24,["G5547"]],[24,25,["G5485"]],[25,27,["G5213"]],[27,28,["G2532"]],[28,29,["G1515"]],[29,31,["G4129"]]]},{"k":30377,"v":[[0,1,["G2128"]],[1,3,["G3588"]],[3,4,["G2316"]],[4,5,["G2532"]],[5,6,["G3962"]],[6,8,["G2257"]],[8,9,["G2962"]],[9,10,["G2424"]],[10,11,["G5547"]],[11,13,["G2596"]],[13,15,["G848"]],[15,16,["G4183"]],[16,17,["G1656"]],[17,21,["G313","G2248"]],[21,22,["G1519"]],[22,24,["G2198"]],[24,25,["G1680"]],[25,26,["G1223"]],[26,28,["G386"]],[28,30,["G2424"]],[30,31,["G5547"]],[31,32,["G1537"]],[32,34,["G3498"]]]},{"k":30378,"v":[[0,1,["G1519"]],[1,3,["G2817"]],[3,4,["G862"]],[4,5,["G2532"]],[5,6,["G283"]],[6,7,["G2532"]],[7,11,["G263"]],[11,12,["G5083"]],[12,13,["G1722"]],[13,14,["G3772"]],[14,15,["G1519"]],[15,16,["G2248"]]]},{"k":30379,"v":[[0,3,["G5432"]],[3,4,["G1722"]],[4,6,["G1411"]],[6,8,["G2316"]],[8,9,["G1223"]],[9,10,["G4102"]],[10,11,["G1519"]],[11,12,["G4991"]],[12,13,["G2092"]],[13,16,["G601"]],[16,17,["G1722"]],[17,19,["G2078"]],[19,20,["G2540"]]]},{"k":30380,"v":[[0,1,["G1722","G3739"]],[1,4,["G21"]],[4,6,["G737"]],[6,9,["G3641"]],[9,10,["G1487"]],[10,12,["G1163","G2076"]],[12,16,["G3076"]],[16,17,["G1722"]],[17,18,["G4164"]],[18,19,["G3986"]]]},{"k":30381,"v":[[0,1,["G2443"]],[1,2,["G3588"]],[2,3,["G1383"]],[3,5,["G5216"]],[5,6,["G4102"]],[6,8,["G4183"]],[8,10,["G5093"]],[10,13,["G5553"]],[13,15,["G622"]],[15,16,["G1161"]],[16,19,["G1381"]],[19,20,["G1223"]],[20,21,["G4442"]],[21,24,["G2147"]],[24,25,["G1519"]],[25,26,["G1868"]],[26,27,["G2532"]],[27,28,["G5092"]],[28,29,["G2532"]],[29,30,["G1391"]],[30,31,["G1722"]],[31,33,["G602"]],[33,35,["G2424"]],[35,36,["G5547"]]]},{"k":30382,"v":[[0,1,["G3739"]],[1,3,["G3756"]],[3,4,["G1492"]],[4,6,["G25"]],[6,7,["G1519"]],[7,8,["G3739"]],[8,10,["G737"]],[10,12,["G3708"]],[12,14,["G3361"]],[14,15,["G1161"]],[15,16,["G4100"]],[16,18,["G21"]],[18,20,["G5479"]],[20,21,["G412"]],[21,22,["G2532"]],[22,25,["G1392"]]]},{"k":30383,"v":[[0,1,["G2865"]],[1,2,["G3588"]],[2,3,["G5056"]],[3,5,["G5216"]],[5,6,["G4102"]],[6,9,["G4991"]],[9,12,["G5590"]]]},{"k":30384,"v":[[0,1,["G4012"]],[1,2,["G3739"]],[2,3,["G4991"]],[3,5,["G4396"]],[5,7,["G1567"]],[7,8,["G2532"]],[8,10,["G1830"]],[10,12,["G4395"]],[12,13,["G4012"]],[13,14,["G3588"]],[14,15,["G5485"]],[15,19,["G1519"]],[19,20,["G5209"]]]},{"k":30385,"v":[[0,1,["G2045"]],[1,2,["G5101"]],[2,3,["G2228"]],[3,5,["G4169"]],[5,7,["G2540"]],[7,8,["G3588"]],[8,9,["G4151"]],[9,11,["G5547"]],[11,14,["G1722"]],[14,15,["G846"]],[15,17,["G1213"]],[17,21,["G4303"]],[21,22,["G3588"]],[22,23,["G3804"]],[23,24,["G1519"]],[24,25,["G5547"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G1391"]],[28,31,["G3326","G5023"]]]},{"k":30386,"v":[[0,2,["G3739"]],[2,5,["G601"]],[5,6,["G3754"]],[6,7,["G3756"]],[7,9,["G1438"]],[9,10,["G1161"]],[10,12,["G2254"]],[12,15,["G1247"]],[15,17,["G846"]],[17,18,["G3739"]],[18,20,["G3568"]],[20,21,["G312"]],[21,23,["G5213"]],[23,24,["G1223"]],[24,30,["G2097"]],[30,32,["G5209"]],[32,33,["G1722"]],[33,35,["G40"]],[35,36,["G4151"]],[36,38,["G649"]],[38,39,["G575"]],[39,40,["G3772"]],[40,42,["G3739"]],[42,44,["G32"]],[44,45,["G1937"]],[45,47,["G3879"]],[47,48,["G1519"]]]},{"k":30387,"v":[[0,1,["G1352"]],[1,3,["G328"]],[3,4,["G3588"]],[4,5,["G3751"]],[5,7,["G5216"]],[7,8,["G1271"]],[8,10,["G3525"]],[10,12,["G1679"]],[12,15,["G5049"]],[15,16,["G1909"]],[16,17,["G3588"]],[17,18,["G5485"]],[18,23,["G5342"]],[23,25,["G5213"]],[25,26,["G1722"]],[26,28,["G602"]],[28,30,["G2424"]],[30,31,["G5547"]]]},{"k":30388,"v":[[0,1,["G5613"]],[1,2,["G5218"]],[2,3,["G5043"]],[3,4,["G3361"]],[4,6,["G4964"]],[6,9,["G3588"]],[9,10,["G4386"]],[10,11,["G1939"]],[11,12,["G1722"]],[12,13,["G5216"]],[13,14,["G52"]]]},{"k":30389,"v":[[0,1,["G235"]],[1,2,["G2596"]],[2,6,["G2564"]],[6,7,["G5209"]],[7,9,["G40"]],[9,10,["G2532"]],[10,11,["G1096"]],[11,12,["G846"]],[12,13,["G40"]],[13,14,["G1722"]],[14,16,["G3956"]],[16,18,["G391"]]]},{"k":30390,"v":[[0,1,["G1360"]],[1,4,["G1125"]],[4,5,["G1096"]],[5,7,["G40"]],[7,8,["G3754"]],[8,9,["G1473"]],[9,10,["G1510"]],[10,11,["G40"]]]},{"k":30391,"v":[[0,1,["G2532"]],[1,2,["G1487"]],[2,5,["G1941"]],[5,7,["G3962"]],[7,13,["G2919","G678"]],[13,14,["G2596"]],[14,17,["G1538"]],[17,18,["G2041"]],[18,19,["G390"]],[19,20,["G3588"]],[20,21,["G5550"]],[21,23,["G5216"]],[23,24,["G3940"]],[24,26,["G1722"]],[26,27,["G5401"]]]},{"k":30392,"v":[[0,4,["G1492"]],[4,5,["G3754"]],[5,8,["G3756"]],[8,9,["G3084"]],[9,12,["G5349"]],[12,14,["G694"]],[14,15,["G2228"]],[15,16,["G5553"]],[16,17,["G1537"]],[17,18,["G5216"]],[18,19,["G3152"]],[19,20,["G391"]],[20,26,["G3970"]]]},{"k":30393,"v":[[0,1,["G235"]],[1,4,["G5093"]],[4,5,["G129"]],[5,7,["G5547"]],[7,8,["G5613"]],[8,11,["G286"]],[11,13,["G299"]],[13,14,["G2532"]],[14,16,["G784"]]]},{"k":30394,"v":[[0,2,["G3303"]],[2,4,["G4267"]],[4,5,["G4253"]],[5,7,["G2602"]],[7,10,["G2889"]],[10,11,["G1161"]],[11,13,["G5319"]],[13,14,["G1909"]],[14,16,["G2078"]],[16,17,["G5550"]],[17,18,["G1223"]],[18,19,["G5209"]]]},{"k":30395,"v":[[0,2,["G1223"]],[2,3,["G846"]],[3,5,["G4100"]],[5,6,["G1519"]],[6,7,["G2316"]],[7,11,["G1453","G846"]],[11,12,["G1537"]],[12,14,["G3498"]],[14,15,["G2532"]],[15,16,["G1325"]],[16,17,["G846"]],[17,18,["G1391"]],[18,19,["G5620"]],[19,20,["G5216"]],[20,21,["G4102"]],[21,22,["G2532"]],[22,23,["G1680"]],[23,25,["G1511"]],[25,26,["G1519"]],[26,27,["G2316"]]]},{"k":30396,"v":[[0,4,["G48"]],[4,5,["G5216"]],[5,6,["G5590"]],[6,7,["G1722"]],[7,8,["G5218"]],[8,9,["G3588"]],[9,10,["G225"]],[10,11,["G1223"]],[11,13,["G4151"]],[13,14,["G1519"]],[14,15,["G505"]],[15,19,["G5360"]],[19,23,["G25"]],[23,25,["G240"]],[25,26,["G1537"]],[26,28,["G2513"]],[28,29,["G2588"]],[29,30,["G1619"]]]},{"k":30397,"v":[[0,3,["G313"]],[3,4,["G3756"]],[4,5,["G1537"]],[5,6,["G5349"]],[6,7,["G4701"]],[7,8,["G235"]],[8,10,["G862"]],[10,11,["G1223"]],[11,13,["G3056"]],[13,15,["G2316"]],[15,17,["G2198"]],[17,18,["G2532"]],[18,19,["G3306"]],[19,21,["G1519","G165"]]]},{"k":30398,"v":[[0,1,["G1360"]],[1,2,["G3956"]],[2,3,["G4561"]],[3,5,["G5613"]],[5,6,["G5528"]],[6,7,["G2532"]],[7,8,["G3956"]],[8,10,["G1391"]],[10,12,["G444"]],[12,13,["G5613"]],[13,15,["G438"]],[15,17,["G5528"]],[17,18,["G3588"]],[18,19,["G5528"]],[19,20,["G3583"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G438"]],[23,24,["G846"]],[24,26,["G1601"]]]},{"k":30399,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4487"]],[3,6,["G2962"]],[6,7,["G3306"]],[7,9,["G1519","G165"]],[9,10,["G1161"]],[10,11,["G5124"]],[11,12,["G2076"]],[12,13,["G3588"]],[13,14,["G4487"]],[14,20,["G2097"]],[20,21,["G1519"]],[21,22,["G5209"]]]},{"k":30400,"v":[[0,1,["G3767"]],[1,3,["G659"]],[3,4,["G3956"]],[4,5,["G2549"]],[5,6,["G2532"]],[6,7,["G3956"]],[7,8,["G1388"]],[8,9,["G2532"]],[9,10,["G5272"]],[10,11,["G2532"]],[11,12,["G5355"]],[12,13,["G2532"]],[13,14,["G3956"]],[14,16,["G2636"]]]},{"k":30401,"v":[[0,1,["G5613"]],[1,2,["G738"]],[2,3,["G1025"]],[3,4,["G1971"]],[4,5,["G3588"]],[5,6,["G97"]],[6,7,["G1051"]],[7,10,["G3050"]],[10,11,["G2443"]],[11,14,["G837"]],[14,15,["G1722","G846"]]]},{"k":30402,"v":[[0,3,["G1512"]],[3,6,["G1089"]],[6,7,["G3754"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,11,["G5543"]]]},{"k":30403,"v":[[0,1,["G4314"]],[1,2,["G3739"]],[2,3,["G4334"]],[3,7,["G2198"]],[7,8,["G3037"]],[8,9,["G593"]],[9,10,["G3303"]],[10,11,["G5259"]],[11,12,["G444"]],[12,13,["G1161"]],[13,14,["G1588"]],[14,15,["G3844"]],[15,16,["G2316"]],[16,18,["G1784"]]]},{"k":30404,"v":[[0,1,["G846"]],[1,2,["G2532"]],[2,3,["G5613"]],[3,4,["G2198"]],[4,5,["G3037"]],[5,8,["G3618"]],[8,10,["G4152"]],[10,11,["G3624"]],[11,13,["G40"]],[13,14,["G2406"]],[14,17,["G399"]],[17,18,["G4152"]],[18,19,["G2378"]],[19,20,["G2144"]],[20,22,["G2316"]],[22,23,["G1223"]],[23,24,["G2424"]],[24,25,["G5547"]]]},{"k":30405,"v":[[0,1,["G1352"]],[1,2,["G2532"]],[2,5,["G4023"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G1124"]],[8,9,["G2400"]],[9,11,["G5087"]],[11,12,["G1722"]],[12,13,["G4622"]],[13,17,["G204","G3037"]],[17,18,["G1588"]],[18,19,["G1784"]],[19,20,["G2532"]],[20,23,["G4100"]],[23,24,["G1909"]],[24,25,["G846"]],[25,27,["G3364"]],[27,29,["G2617"]]]},{"k":30406,"v":[[0,2,["G5213"]],[2,3,["G3767"]],[3,5,["G4100"]],[5,8,["G5092"]],[8,9,["G1161"]],[9,14,["G544"]],[14,16,["G3037"]],[16,17,["G3739"]],[17,18,["G3588"]],[18,19,["G3618"]],[19,20,["G593"]],[20,22,["G3778"]],[22,24,["G1096"]],[24,25,["(G1519)"]],[25,26,["G2776"]],[26,29,["G1137"]]]},{"k":30407,"v":[[0,1,["G2532"]],[1,3,["G3037"]],[3,5,["G4348"]],[5,6,["G2532"]],[6,8,["G4073"]],[8,10,["G4625"]],[10,14,["G3739"]],[14,15,["G4350"]],[15,17,["G3588"]],[17,18,["G3056"]],[18,20,["G544"]],[20,21,["G1519","G3739"]],[21,22,["G2532"]],[22,25,["G5087"]]]},{"k":30408,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,5,["G1588"]],[5,6,["G1085"]],[6,8,["G934"]],[8,9,["G2406"]],[9,11,["G40"]],[11,12,["G1484"]],[12,14,["G1519","G4047"]],[14,15,["G2992"]],[15,16,["G3704"]],[16,20,["G1804"]],[20,21,["G3588"]],[21,22,["G703"]],[22,24,["G3588"]],[24,27,["G2564"]],[27,28,["G5209"]],[28,30,["G1537"]],[30,31,["G4655"]],[31,32,["G1519"]],[32,33,["G846"]],[33,34,["G2298"]],[34,35,["G5457"]]]},{"k":30409,"v":[[0,1,["G3588"]],[1,4,["G4218"]],[4,6,["G3756"]],[6,8,["G2992"]],[8,9,["G1161"]],[9,11,["G3568"]],[11,13,["G2992"]],[13,15,["G2316"]],[15,20,["G1653","G3756"]],[20,21,["G1161"]],[21,22,["G3568"]],[22,25,["G1653"]]]},{"k":30410,"v":[[0,2,["G27"]],[2,4,["G3870"]],[4,6,["G5613"]],[6,7,["G3941"]],[7,8,["G2532"]],[8,9,["G3927"]],[9,10,["G567"]],[10,12,["G4559"]],[12,13,["G1939"]],[13,14,["G3748"]],[14,15,["G4754"]],[15,16,["G2596"]],[16,17,["G3588"]],[17,18,["G5590"]]]},{"k":30411,"v":[[0,1,["G2192"]],[1,2,["G5216"]],[2,3,["G391"]],[3,4,["G2570"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G1484"]],[7,8,["G2443"]],[8,9,["G1722","G3739"]],[9,12,["G2635"]],[12,13,["G5216"]],[13,14,["G5613"]],[14,15,["G2555"]],[15,18,["G1537"]],[18,20,["G2570"]],[20,21,["G2041"]],[21,25,["G2029"]],[25,26,["G1392"]],[26,27,["G2316"]],[27,28,["G1722"]],[28,30,["G2250"]],[30,32,["G1984"]]]},{"k":30412,"v":[[0,2,["G5293"]],[2,3,["(G3767)"]],[3,4,["G3956"]],[4,5,["G2937"]],[5,7,["G442"]],[7,11,["G1223","G3588","G2962"]],[11,12,["G1535"]],[12,17,["G935"]],[17,18,["G5613"]],[18,19,["G5242"]]]},{"k":30413,"v":[[0,1,["G1535"]],[1,3,["G2232"]],[3,4,["G5613"]],[4,9,["G3992"]],[9,10,["G1223"]],[10,11,["G846"]],[11,12,["G1519"]],[12,14,["G1557"]],[14,15,["(G3303)"]],[15,16,["G2555"]],[16,17,["G1161"]],[17,20,["G1868"]],[20,25,["G17"]]]},{"k":30414,"v":[[0,1,["G3754"]],[1,2,["G3779"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G2307"]],[5,7,["G2316"]],[7,11,["G15"]],[11,16,["G5392"]],[16,17,["G3588"]],[17,18,["G56"]],[18,20,["G878"]],[20,21,["G444"]]]},{"k":30415,"v":[[0,1,["G5613"]],[1,2,["G1658"]],[2,3,["G2532"]],[3,4,["G3361"]],[4,5,["G2192"]],[5,7,["G1657"]],[7,8,["G5613"]],[8,10,["G1942"]],[10,12,["G2549"]],[12,13,["G235"]],[13,14,["G5613"]],[14,16,["G1401"]],[16,18,["G2316"]]]},{"k":30416,"v":[[0,1,["G5091"]],[1,2,["G3956"]],[2,4,["G25"]],[4,5,["G3588"]],[5,6,["G81"]],[6,7,["G5399"]],[7,8,["G2316"]],[8,9,["G5091"]],[9,10,["G3588"]],[10,11,["G935"]]]},{"k":30417,"v":[[0,1,["G3610"]],[1,4,["G5293"]],[4,6,["G1203"]],[6,7,["G1722"]],[7,8,["G3956"]],[8,9,["G5401"]],[9,10,["G3756"]],[10,11,["G3440"]],[11,13,["G3588"]],[13,14,["G18"]],[14,15,["G2532"]],[15,16,["G1933"]],[16,17,["G235"]],[17,18,["G2532"]],[18,20,["G3588"]],[20,21,["G4646"]]]},{"k":30418,"v":[[0,1,["G1063"]],[1,2,["G5124"]],[2,4,["G5485"]],[4,5,["G1487"]],[5,7,["G5100"]],[7,8,["G1223"]],[8,9,["G4893"]],[9,11,["G2316"]],[11,12,["G5297"]],[12,13,["G3077"]],[13,14,["G3958"]],[14,15,["G95"]]]},{"k":30419,"v":[[0,1,["G1063"]],[1,2,["G4169"]],[2,3,["G2811"]],[3,6,["G1487"]],[6,10,["G2852","(G2532)"]],[10,13,["G264"]],[13,18,["G5278"]],[18,19,["G235"]],[19,20,["G1487"]],[20,24,["G15"]],[24,25,["G2532"]],[25,26,["G3958"]],[26,32,["G5278"]],[32,33,["G5124"]],[33,35,["G5485"]],[35,36,["G3844"]],[36,37,["G2316"]]]},{"k":30420,"v":[[0,1,["G1063"]],[1,3,["G1519","G5124"]],[3,6,["G2564"]],[6,7,["G3754"]],[7,8,["G5547"]],[8,9,["G2532"]],[9,10,["G3958"]],[10,11,["G5228"]],[11,12,["G2257"]],[12,13,["G5277"]],[13,14,["G2254"]],[14,16,["G5261"]],[16,17,["G2443"]],[17,20,["G1872"]],[20,21,["G846"]],[21,22,["G2487"]]]},{"k":30421,"v":[[0,1,["G3739"]],[1,2,["G4160"]],[2,3,["G3756"]],[3,4,["G266"]],[4,5,["G3761"]],[5,7,["G1388"]],[7,8,["G2147"]],[8,9,["G1722"]],[9,10,["G846"]],[10,11,["G4750"]]]},{"k":30422,"v":[[0,1,["G3739"]],[1,5,["G3058"]],[5,8,["G486","G3756"]],[8,11,["G3958"]],[11,13,["G546"]],[13,14,["G3756"]],[14,15,["G1161"]],[15,16,["G3860"]],[16,21,["G2919"]],[21,22,["G1346"]]]},{"k":30423,"v":[[0,1,["G3739"]],[1,4,["G848"]],[4,5,["G399"]],[5,6,["G2257"]],[6,7,["G266"]],[7,8,["G1722"]],[8,10,["G848"]],[10,11,["G4983"]],[11,12,["G1909"]],[12,13,["G3588"]],[13,14,["G3586"]],[14,15,["G2443"]],[15,18,["G581"]],[18,20,["G266"]],[20,22,["G2198"]],[22,24,["G1343"]],[24,26,["G3739"]],[26,27,["G3468"]],[27,30,["G2390"]]]},{"k":30424,"v":[[0,1,["G1063"]],[1,3,["G2258"]],[3,4,["G5613"]],[4,5,["G4263"]],[5,7,["G4105"]],[7,8,["G235"]],[8,10,["G3568"]],[10,11,["G1994"]],[11,12,["G1909"]],[12,13,["G3588"]],[13,14,["G4166"]],[14,15,["G2532"]],[15,16,["G1985"]],[16,18,["G5216"]],[18,19,["G5590"]]]},{"k":30425,"v":[[0,1,["G3668"]],[1,3,["G1135"]],[3,6,["G5293"]],[6,9,["G2398"]],[9,10,["G435"]],[10,11,["G2443"]],[11,13,["G1536"]],[13,15,["G544"]],[15,16,["G3588"]],[16,17,["G3056"]],[17,19,["G2532"]],[19,21,["G427"]],[21,23,["G3056"]],[23,25,["G2770"]],[25,26,["G1223"]],[26,27,["G3588"]],[27,28,["G391"]],[28,30,["G3588"]],[30,31,["G1135"]]]},{"k":30426,"v":[[0,3,["G2029"]],[3,4,["G5216"]],[4,5,["G53"]],[5,6,["G391"]],[6,8,["G1722"]],[8,9,["G5401"]]]},{"k":30427,"v":[[0,1,["G3739"]],[1,2,["G2889"]],[2,5,["G3756"]],[5,6,["G2077"]],[6,7,["G3588"]],[7,8,["G1855"]],[8,11,["G1708"]],[11,13,["G2359"]],[13,14,["G2532"]],[14,16,["G4025"]],[16,18,["G5553"]],[18,19,["G2228"]],[19,22,["G1745"]],[22,24,["G2440"]]]},{"k":30428,"v":[[0,1,["G235"]],[1,5,["G3588"]],[5,6,["G2927"]],[6,7,["G444"]],[7,9,["G3588"]],[9,10,["G2588"]],[10,11,["G1722"]],[11,16,["G862"]],[16,22,["G4239"]],[22,23,["G2532"]],[23,24,["G2272"]],[24,25,["G4151"]],[25,26,["G3739"]],[26,27,["G2076"]],[27,30,["G1799"]],[30,32,["G2316"]],[32,35,["G4185"]]]},{"k":30429,"v":[[0,1,["G1063"]],[1,4,["G3779"]],[4,8,["G4218"]],[8,9,["G3588"]],[9,10,["G40"]],[10,11,["G1135"]],[11,12,["G2532"]],[12,14,["G1679"]],[14,15,["G1909"]],[15,16,["G2316"]],[16,17,["G2885"]],[17,18,["G1438"]],[18,21,["G5293"]],[21,24,["G2398"]],[24,25,["G435"]]]},{"k":30430,"v":[[0,2,["G5613"]],[2,3,["G4564"]],[3,4,["G5219"]],[4,5,["G11"]],[5,6,["G2564"]],[6,7,["G846"]],[7,8,["G2962"]],[8,9,["G3739"]],[9,10,["G5043"]],[10,12,["G1096"]],[12,18,["G15"]],[18,19,["G2532"]],[19,22,["G5399","G3361"]],[22,24,["G3367"]],[24,25,["G4423"]]]},{"k":30431,"v":[[0,1,["G3668"]],[1,3,["G435"]],[3,5,["G4924"]],[5,7,["G2596"]],[7,9,["G1108"]],[9,10,["G632"]],[10,11,["G5092"]],[11,13,["G3588"]],[13,14,["G1134"]],[14,15,["G5613"]],[15,18,["G772"]],[18,19,["G4632"]],[19,20,["G2532"]],[20,21,["G5613"]],[21,24,["G4789"]],[24,27,["G5485"]],[27,29,["G2222"]],[29,31,["G5216"]],[31,32,["G4335"]],[32,34,["G3361"]],[34,35,["G1581"]]]},{"k":30432,"v":[[0,1,["G5056"]],[1,4,["G3956"]],[4,7,["G3675"]],[7,12,["G4835"]],[12,15,["G5361"]],[15,17,["G2155"]],[17,19,["G5391"]]]},{"k":30433,"v":[[0,1,["G3361"]],[1,2,["G591"]],[2,3,["G2556"]],[3,4,["G473"]],[4,5,["G2556"]],[5,6,["G2228"]],[6,7,["G3059"]],[7,8,["G473"]],[8,9,["G3059"]],[9,10,["G1161"]],[10,11,["G5121"]],[11,12,["G2127"]],[12,13,["G1492"]],[13,14,["G3754"]],[14,17,["G1519","G5124"]],[17,18,["G2564"]],[18,19,["G2443"]],[19,22,["G2816"]],[22,24,["G2129"]]]},{"k":30434,"v":[[0,1,["G1063"]],[1,4,["G2309"]],[4,5,["G25"]],[5,6,["G2222"]],[6,7,["G2532"]],[7,8,["G1492"]],[8,9,["G18"]],[9,10,["G2250"]],[10,13,["G3973"]],[13,14,["G848"]],[14,15,["G1100"]],[15,16,["G575"]],[16,17,["G2556"]],[17,18,["G2532"]],[18,19,["G848"]],[19,20,["G5491"]],[20,23,["G2980"]],[23,24,["G3361"]],[24,25,["G1388"]]]},{"k":30435,"v":[[0,3,["G1578"]],[3,4,["G2556"]],[4,5,["G2532"]],[5,6,["G4160"]],[6,7,["G18"]],[7,10,["G2212"]],[10,11,["G1515"]],[11,12,["G2532"]],[12,13,["G1377"]],[13,14,["G846"]]]},{"k":30436,"v":[[0,1,["G3754"]],[1,2,["G3588"]],[2,3,["G3788"]],[3,6,["G2962"]],[6,8,["G1909"]],[8,10,["G1342"]],[10,11,["G2532"]],[11,12,["G846"]],[12,13,["G3775"]],[13,16,["G1519"]],[16,17,["G846"]],[17,18,["G1162"]],[18,19,["G1161"]],[19,21,["G4383"]],[21,24,["G2962"]],[24,26,["G1909"]],[26,29,["G4160"]],[29,30,["G2556"]]]},{"k":30437,"v":[[0,1,["G2532"]],[1,2,["G5101"]],[2,7,["G2559"]],[7,8,["G5209"]],[8,9,["G1437"]],[9,11,["G1096"]],[11,12,["G3402"]],[12,17,["G18"]]]},{"k":30438,"v":[[0,1,["G235"]],[1,2,["G2532"]],[2,3,["G1487"]],[3,5,["G3958"]],[5,8,["G1223","G1343"]],[8,9,["G3107"]],[9,12,["G1161"]],[12,15,["G5399","G3361"]],[15,17,["G846"]],[17,18,["G5401"]],[18,19,["G3366"]],[19,21,["G5015"]]]},{"k":30439,"v":[[0,1,["G1161"]],[1,2,["G37"]],[2,4,["G2962"]],[4,5,["G2316"]],[5,6,["G1722"]],[6,7,["G5216"]],[7,8,["G2588"]],[8,9,["G1161"]],[9,11,["G2092"]],[11,12,["G104"]],[12,16,["G4314","G627"]],[16,19,["G3956"]],[19,21,["G154"]],[21,22,["G5209"]],[22,24,["G3056"]],[24,25,["G4012"]],[25,26,["G3588"]],[26,27,["G1680"]],[27,30,["G1722"]],[30,31,["G5213"]],[31,32,["G3326"]],[32,33,["G4240"]],[33,34,["G2532"]],[34,35,["G5401"]]]},{"k":30440,"v":[[0,1,["G2192"]],[1,3,["G18"]],[3,4,["G4893"]],[4,5,["G2443"]],[5,6,["G1722","G3739"]],[6,10,["G2635"]],[10,11,["G5216"]],[11,12,["G5613"]],[12,14,["G2555"]],[14,18,["G2617"]],[18,21,["G1908"]],[21,22,["G5216"]],[22,23,["G18"]],[23,24,["G391"]],[24,25,["G1722"]],[25,26,["G5547"]]]},{"k":30441,"v":[[0,1,["G1063"]],[1,4,["G2909"]],[4,5,["G1487"]],[5,6,["G3588"]],[6,7,["G2307"]],[7,9,["G2316"]],[9,10,["G2309"]],[10,14,["G3958"]],[14,17,["G15"]],[17,18,["G2228"]],[18,21,["G2554"]]]},{"k":30442,"v":[[0,1,["G3754"]],[1,2,["G5547"]],[2,3,["G2532"]],[3,5,["G530"]],[5,6,["G3958"]],[6,7,["G4012"]],[7,8,["G266"]],[8,10,["G1342"]],[10,11,["G5228"]],[11,13,["G94"]],[13,14,["G2443"]],[14,17,["G4317"]],[17,18,["G2248"]],[18,20,["G2316"]],[20,24,["G2289"]],[24,26,["(G3303)"]],[26,27,["G4561"]],[27,28,["G1161"]],[28,29,["G2227"]],[29,31,["G3588"]],[31,32,["G4151"]]]},{"k":30443,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G2532"]],[3,5,["G4198"]],[5,7,["G2784"]],[7,9,["G3588"]],[9,10,["G4151"]],[10,11,["G1722"]],[11,12,["G5438"]]]},{"k":30444,"v":[[0,2,["G4218"]],[2,4,["G544"]],[4,5,["G3753"]],[5,6,["G530"]],[6,7,["G3588"]],[7,8,["G3115"]],[8,10,["G2316"]],[10,11,["G1551"]],[11,12,["G1722"]],[12,14,["G2250"]],[14,16,["G3575"]],[16,19,["G2787"]],[19,22,["G2680"]],[22,23,["G1519","G3739"]],[23,24,["G3641"]],[24,26,["G5123"]],[26,27,["G3638"]],[27,28,["G5590"]],[28,30,["G1295"]],[30,31,["G1223"]],[31,32,["G5204"]]]},{"k":30445,"v":[[0,3,["G499"]],[3,4,["G3739"]],[4,6,["G908"]],[6,8,["G2532"]],[8,9,["G3568"]],[9,10,["G4982"]],[10,11,["G2248"]],[11,12,["G3756"]],[12,15,["G595"]],[15,18,["G4509"]],[18,21,["G4561"]],[21,22,["G235"]],[22,24,["G1906"]],[24,27,["G18"]],[27,28,["G4893"]],[28,29,["G1519"]],[29,30,["G2316"]],[30,31,["G1223"]],[31,33,["G386"]],[33,35,["G2424"]],[35,36,["G5547"]]]},{"k":30446,"v":[[0,1,["G3739"]],[1,3,["G4198"]],[3,4,["G1519"]],[4,5,["G3772"]],[5,7,["G2076"]],[7,8,["G1722"]],[8,11,["G1188"]],[11,13,["G2316"]],[13,14,["G32"]],[14,15,["G2532"]],[15,16,["G1849"]],[16,17,["G2532"]],[17,18,["G1411"]],[18,22,["G5293"]],[22,23,["G846"]]]},{"k":30447,"v":[[0,2,["G3767"]],[2,4,["G5547"]],[4,6,["G3958"]],[6,7,["G5228"]],[7,8,["G2257"]],[8,11,["G4561"]],[11,12,["G3695"]],[12,13,["G5210"]],[13,14,["G2532"]],[14,16,["G3588"]],[16,17,["G846"]],[17,18,["G1771"]],[18,19,["G3754"]],[19,23,["G3958"]],[23,24,["G1722"]],[24,26,["G4561"]],[26,28,["G3973"]],[28,30,["G266"]]]},{"k":30448,"v":[[0,4,["G3371"]],[4,6,["G980"]],[6,7,["G3588"]],[7,8,["G1954"]],[8,11,["G5550"]],[11,12,["G1722"]],[12,14,["G4561"]],[14,17,["G1939"]],[17,19,["G444"]],[19,20,["G235"]],[20,23,["G2307"]],[23,25,["G2316"]]]},{"k":30449,"v":[[0,1,["G1063"]],[1,3,["G5550"]],[3,4,["G3928"]],[4,7,["G979"]],[7,9,["G713"]],[9,10,["G2254"]],[10,13,["G2716"]],[13,14,["G3588"]],[14,15,["G2307"]],[15,17,["G3588"]],[17,18,["G1484"]],[18,21,["G4198"]],[21,22,["G1722"]],[22,23,["G766"]],[23,24,["G1939"]],[24,27,["G3632"]],[27,28,["G2970"]],[28,29,["G4224"]],[29,30,["G2532"]],[30,31,["G111"]],[31,32,["G1495"]]]},{"k":30450,"v":[[0,1,["G1722","G3739"]],[1,5,["G3579"]],[5,7,["G5216"]],[7,10,["G4936","G3361"]],[10,12,["G1519"]],[12,13,["G3588"]],[13,14,["G846"]],[14,15,["G401"]],[15,17,["G810"]],[17,20,["G987"]],[20,21,[]]]},{"k":30451,"v":[[0,1,["G3739"]],[1,3,["G591"]],[3,4,["G3056"]],[4,8,["G2192"]],[8,9,["G2093"]],[9,11,["G2919"]],[11,13,["G2198"]],[13,14,["G2532"]],[14,16,["G3498"]]]},{"k":30452,"v":[[0,1,["G1063"]],[1,2,["G1519"]],[2,4,["G5124"]],[4,8,["G2097"]],[8,9,["G2532"]],[9,14,["G3498"]],[14,15,["G2443"]],[15,19,["G2919","(G3303)"]],[19,20,["G2596"]],[20,22,["G444"]],[22,25,["G4561"]],[25,26,["G1161"]],[26,27,["G2198"]],[27,28,["G2596"]],[28,30,["G2316"]],[30,33,["G4151"]]]},{"k":30453,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5056"]],[3,6,["G3956"]],[6,9,["G1448"]],[9,13,["G4993","G3767"]],[13,14,["G2532"]],[14,15,["G3525"]],[15,16,["G1519"]],[16,17,["G4335"]]]},{"k":30454,"v":[[0,1,["G1161"]],[1,2,["G4253"]],[2,4,["G3956"]],[4,5,["G2192"]],[5,6,["G1618"]],[6,7,["G26"]],[7,8,["G1519"]],[8,9,["G1438"]],[9,10,["G3754"]],[10,11,["G26"]],[11,13,["G2572"]],[13,15,["G4128"]],[15,17,["G266"]]]},{"k":30455,"v":[[0,2,["G5382"]],[2,5,["G240","G1519"]],[5,6,["G427"]],[6,7,["G1112"]]]},{"k":30456,"v":[[0,1,["G2531"]],[1,3,["G1538"]],[3,5,["G2983"]],[5,7,["G5486"]],[7,10,["G1247"]],[10,12,["G846"]],[12,15,["G1519","G1438"]],[15,16,["G5613"]],[16,17,["G2570"]],[17,18,["G3623"]],[18,21,["G4164"]],[21,22,["G5485"]],[22,24,["G2316"]]]},{"k":30457,"v":[[0,3,["G1536"]],[3,4,["G2980"]],[4,8,["G5613"]],[8,10,["G3051"]],[10,12,["G2316"]],[12,15,["G1536"]],[15,16,["G1247"]],[16,21,["G5613"]],[21,22,["G1537"]],[22,24,["G2479"]],[24,25,["G3739"]],[25,26,["G2316"]],[26,27,["G5524"]],[27,28,["G2443"]],[28,29,["G2316"]],[29,30,["G1722"]],[30,32,["G3956"]],[32,35,["G1392"]],[35,36,["G1223"]],[36,37,["G2424"]],[37,38,["G5547"]],[38,40,["G3739"]],[40,41,["G2076"]],[41,42,["G1391"]],[42,43,["G2532"]],[43,44,["G2904"]],[44,48,["G1519","G165","G165"]],[48,49,["G281"]]]},{"k":30458,"v":[[0,1,["G27"]],[1,5,["G3579","G3361"]],[5,7,["G3588"]],[7,9,["G4451"]],[9,10,["(G1722","G5213)"]],[10,11,["G1096"]],[11,13,["G4314","G3986"]],[13,14,["G5213"]],[14,15,["G5613"]],[15,19,["G3581"]],[19,20,["G4819"]],[20,22,["G5213"]]]},{"k":30459,"v":[[0,1,["G235"]],[1,2,["G5463"]],[2,4,["G2526"]],[4,7,["G2841"]],[7,9,["G5547"]],[9,10,["G3804"]],[10,11,["G2443"]],[11,12,["G1722"]],[12,13,["G846"]],[13,14,["G1391"]],[14,17,["G602"]],[17,21,["G5463"]],[21,22,["G2532"]],[22,25,["G21"]]]},{"k":30460,"v":[[0,1,["G1487"]],[1,4,["G3679"]],[4,5,["G1722"]],[5,7,["G3686"]],[7,9,["G5547"]],[9,10,["G3107"]],[10,13,["G3754"]],[13,14,["G3588"]],[14,15,["G4151"]],[15,17,["G1391"]],[17,18,["G2532"]],[18,20,["G2316"]],[20,21,["G373"]],[21,22,["G1909"]],[22,23,["G5209"]],[23,26,["G2596","G846"]],[26,27,["(G3303)"]],[27,31,["G987"]],[31,32,["G1161"]],[32,35,["G2596","G5209"]],[35,38,["G1392"]]]},{"k":30461,"v":[[0,1,["G1063"]],[1,3,["G5100","G3361"]],[3,5,["G5216"]],[5,6,["G3958"]],[6,7,["G5613"]],[7,9,["G5406"]],[9,10,["G2228"]],[10,13,["G2812"]],[13,14,["G2228"]],[14,17,["G2555"]],[17,18,["G2228"]],[18,19,["G5613"]],[19,25,["G244"]]]},{"k":30462,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,6,["G5613"]],[6,8,["G5546"]],[8,11,["G3361"]],[11,13,["G153"]],[13,14,["G1161"]],[14,17,["G1392"]],[17,18,["G2316"]],[18,19,["G1722"]],[19,20,["G5129"]],[20,21,["G3313"]]]},{"k":30463,"v":[[0,1,["G3754"]],[1,2,["G3588"]],[2,3,["G2540"]],[3,7,["G2917"]],[7,9,["G756"]],[9,10,["G575"]],[10,11,["G3588"]],[11,12,["G3624"]],[12,14,["G2316"]],[14,15,["G1161"]],[15,16,["G1487"]],[16,18,["G4412"]],[18,20,["G575"]],[20,21,["G2257"]],[21,22,["G5101"]],[22,24,["G3588"]],[24,25,["G5056"]],[25,31,["G544"]],[31,32,["G3588"]],[32,33,["G2098"]],[33,35,["G2316"]]]},{"k":30464,"v":[[0,1,["G2532"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G1342"]],[4,5,["G3433"]],[5,7,["G4982"]],[7,8,["G4226"]],[8,10,["G3588"]],[10,11,["G765"]],[11,12,["G2532"]],[12,14,["G268"]],[14,15,["G5316"]]]},{"k":30465,"v":[[0,1,["G5620"]],[1,2,["(G2532)"]],[2,5,["G3958"]],[5,6,["G2596"]],[6,8,["G3588"]],[8,9,["G2307"]],[9,11,["G2316"]],[11,15,["G3908"]],[15,16,["G1438"]],[16,17,["G5590"]],[17,20,["G1722"]],[20,22,["G16"]],[22,23,["G5613"]],[23,26,["G4103"]],[26,27,["G2939"]]]},{"k":30466,"v":[[0,2,["G4245"]],[2,3,["G3588"]],[3,5,["G1722"]],[5,6,["G5213"]],[6,8,["G3870"]],[8,13,["G4850"]],[13,14,["G2532"]],[14,16,["G3144"]],[16,18,["G3588"]],[18,19,["G3804"]],[19,21,["G5547"]],[21,22,["G2532"]],[22,25,["G2844"]],[25,28,["G1391"]],[28,30,["G3195"]],[30,32,["G601"]]]},{"k":30467,"v":[[0,1,["G4165"]],[1,2,["G3588"]],[2,3,["G4168"]],[3,5,["G2316"]],[5,8,["G1722"]],[8,9,["G5213"]],[9,12,["G1983"]],[12,14,["G3361"]],[14,16,["G317"]],[16,17,["G235"]],[17,18,["G1596"]],[18,19,["G3366"]],[19,22,["G147"]],[22,23,["G235"]],[23,27,["G4290"]]]},{"k":30468,"v":[[0,1,["G3366"]],[1,2,["G5613"]],[2,5,["G2634"]],[5,7,["G2819"]],[7,8,["G235"]],[8,9,["G1096"]],[9,10,["G5179"]],[10,12,["G3588"]],[12,13,["G4168"]]]},{"k":30469,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,5,["G750"]],[5,7,["G5319"]],[7,10,["G2865"]],[10,12,["G4735"]],[12,14,["G1391"]],[14,18,["G262"]]]},{"k":30470,"v":[[0,1,["G3668"]],[1,3,["G3501"]],[3,5,["G5293"]],[5,8,["G4245"]],[8,9,["G1161"]],[9,10,["G3956"]],[10,14,["G5293"]],[14,17,["G240"]],[17,18,["G2532"]],[18,21,["G1463"]],[21,22,["G5012"]],[22,23,["G3754"]],[23,24,["G2316"]],[24,25,["G498"]],[25,27,["G5244"]],[27,28,["G1161"]],[28,29,["G1325"]],[29,30,["G5485"]],[30,33,["G5011"]]]},{"k":30471,"v":[[0,2,["G5013"]],[2,3,["G3767"]],[3,4,["G5259"]],[4,5,["G3588"]],[5,6,["G2900"]],[6,7,["G5495"]],[7,9,["G2316"]],[9,10,["G2443"]],[10,13,["G5312"]],[13,14,["G5209"]],[14,15,["G1722"]],[15,17,["G2540"]]]},{"k":30472,"v":[[0,1,["G1977"]],[1,2,["G3956"]],[2,3,["G5216"]],[3,4,["G3308"]],[4,5,["G1909"]],[5,6,["G846"]],[6,7,["G3754"]],[7,8,["G846"]],[8,9,["G3199"]],[9,10,["G4012"]],[10,11,["G5216"]]]},{"k":30473,"v":[[0,2,["G3525"]],[2,4,["G1127"]],[4,5,["G3754"]],[5,6,["G5216"]],[6,7,["G476"]],[7,9,["G1228"]],[9,10,["G5613"]],[10,12,["G5612"]],[12,13,["G3023"]],[13,15,["G4043"]],[15,16,["G2212"]],[16,17,["G5101"]],[17,20,["G2666"]]]},{"k":30474,"v":[[0,1,["G3739"]],[1,2,["G436"]],[2,3,["G4731"]],[3,5,["G3588"]],[5,6,["G4102"]],[6,7,["G1492"]],[7,9,["G3588"]],[9,10,["G846"]],[10,11,["G3804"]],[11,13,["G2005"]],[13,15,["G5216"]],[15,16,["G81"]],[16,19,["G1722"]],[19,21,["G2889"]]]},{"k":30475,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2316"]],[3,5,["G3956"]],[5,6,["G5485"]],[6,9,["G2564"]],[9,10,["G2248"]],[10,11,["G1519"]],[11,12,["G848"]],[12,13,["G166"]],[13,14,["G1391"]],[14,15,["G1722"]],[15,16,["G5547"]],[16,17,["G2424"]],[17,22,["G3958"]],[22,24,["G3641"]],[24,27,["G2675","G5209"]],[27,28,["G4741"]],[28,29,["G4599"]],[29,30,["G2311"]],[30,31,[]]]},{"k":30476,"v":[[0,2,["G846"]],[2,4,["G1391"]],[4,5,["G2532"]],[5,6,["G2904"]],[6,10,["G1519","G165","G165"]],[10,11,["G281"]]]},{"k":30477,"v":[[0,1,["G1223"]],[1,2,["G4610"]],[2,4,["G4103"]],[4,5,["G80"]],[5,7,["G5213"]],[7,8,["G5613"]],[8,10,["G3049"]],[10,13,["G1125"]],[13,14,["G1223","G3641"]],[14,15,["G3870"]],[15,16,["G2532"]],[16,17,["G1957"]],[17,19,["G5026"]],[19,20,["G1511"]],[20,22,["G227"]],[22,23,["G5485"]],[23,25,["G2316"]],[25,26,["G1519","G3739"]],[26,28,["G2476"]]]},{"k":30478,"v":[[0,1,["G3588"]],[1,5,["G1722"]],[5,6,["G897"]],[6,9,["G4899"]],[9,11,["G782"]],[11,12,["G5209"]],[12,13,["G2532"]],[13,16,["G3138"]],[16,17,["G3450"]],[17,18,["G5207"]]]},{"k":30479,"v":[[0,1,["G782"]],[1,4,["G240"]],[4,5,["G1722"]],[5,7,["G5370"]],[7,9,["G26"]],[9,10,["G1515"]],[10,13,["G5213"]],[13,14,["G3956"]],[14,15,["G3588"]],[15,17,["G1722"]],[17,18,["G5547"]],[18,19,["G2424"]],[19,20,["G281"]]]},{"k":30480,"v":[[0,1,["G4826"]],[1,2,["G4074"]],[2,4,["G1401"]],[4,5,["G2532"]],[5,7,["G652"]],[7,9,["G2424"]],[9,10,["G5547"]],[10,15,["G2975"]],[15,17,["G2472"]],[17,18,["G4102"]],[18,20,["G2254"]],[20,21,["G1722"]],[21,23,["G1343"]],[23,25,["G2316"]],[25,26,["G2532"]],[26,27,["G2257"]],[27,28,["G4990"]],[28,29,["G2424"]],[29,30,["G5547"]]]},{"k":30481,"v":[[0,1,["G5485"]],[1,2,["G2532"]],[2,3,["G1515"]],[3,5,["G4129"]],[5,7,["G5213"]],[7,8,["G1722"]],[8,10,["G1922"]],[10,12,["G2316"]],[12,13,["G2532"]],[13,15,["G2424"]],[15,16,["G2257"]],[16,17,["G2962"]]]},{"k":30482,"v":[[0,2,["G5613"]],[2,3,["G846"]],[3,4,["G2304"]],[4,5,["G1411"]],[5,7,["G1433"]],[7,9,["G2254"]],[9,11,["G3956"]],[11,12,["G3588"]],[12,14,["G4314"]],[14,15,["G2222"]],[15,16,["G2532"]],[16,17,["G2150"]],[17,18,["G1223"]],[18,19,["G3588"]],[19,20,["G1922"]],[20,25,["G2564"]],[25,26,["G2248"]],[26,27,["G1223"]],[27,28,["G1391"]],[28,29,["G2532"]],[29,30,["G703"]]]},{"k":30483,"v":[[0,1,["G1223","G3739"]],[1,3,["G1433"]],[3,5,["G2254"]],[5,7,["G3176"]],[7,8,["G2532"]],[8,9,["G5093"]],[9,10,["G1862"]],[10,11,["G2443"]],[11,12,["G1223"]],[12,13,["G5130"]],[13,16,["G1096"]],[16,17,["G2844"]],[17,20,["G2304"]],[20,21,["G5449"]],[21,23,["G668"]],[23,24,["G3588"]],[24,25,["G5356"]],[25,28,["G1722"]],[28,30,["G2889"]],[30,31,["G1722"]],[31,32,["G1939"]]]},{"k":30484,"v":[[0,1,["G1161"]],[1,3,["G846","G5124","(G2532)"]],[3,4,["G3923"]],[4,5,["G3956"]],[5,6,["G4710"]],[6,7,["G2023"]],[7,8,["G1722"]],[8,9,["G5216"]],[9,10,["G4102"]],[10,11,["G703"]],[11,12,["G1161"]],[12,13,["G1722"]],[13,14,["G703"]],[14,15,["G1108"]]]},{"k":30485,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,3,["G1108"]],[3,4,["G1466"]],[4,5,["G1161"]],[5,6,["G1722"]],[6,7,["G1466"]],[7,8,["G5281"]],[8,9,["G1161"]],[9,10,["G1722"]],[10,11,["G5281"]],[11,12,["G2150"]]]},{"k":30486,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,3,["G2150"]],[3,5,["G5360"]],[5,6,["G1161"]],[6,7,["G1722"]],[7,9,["G5360"]],[9,10,["G26"]]]},{"k":30487,"v":[[0,1,["G1063"]],[1,4,["G5023"]],[4,5,["G5225"]],[5,7,["G5213"]],[7,8,["G2532"]],[8,9,["G4121"]],[9,11,["G2525"]],[11,16,["G3756"]],[16,18,["G692"]],[18,19,["G3761"]],[19,20,["G175"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G1922"]],[23,25,["G2257"]],[25,26,["G2962"]],[26,27,["G2424"]],[27,28,["G5547"]]]},{"k":30488,"v":[[0,1,["G1063"]],[1,2,["G3739"]],[2,4,["G3918","G3361"]],[4,6,["G5023"]],[6,7,["G2076"]],[7,8,["G5185"]],[8,13,["G3467"]],[13,16,["G2983","G3024"]],[16,20,["G2512"]],[20,22,["G848"]],[22,23,["G3819"]],[23,24,["G266"]]]},{"k":30489,"v":[[0,1,["G1352"]],[1,3,["G3123"]],[3,4,["G80"]],[4,6,["G4704"]],[6,8,["G4160"]],[8,9,["G5216"]],[9,10,["G2821"]],[10,11,["G2532"]],[11,12,["G1589"]],[12,13,["G949"]],[13,14,["G1063"]],[14,17,["G4160"]],[17,19,["G5023"]],[19,22,["G3364","G4218"]],[22,23,["G4417"]]]},{"k":30490,"v":[[0,1,["G1063"]],[1,2,["G3779"]],[2,4,["G1529"]],[4,8,["G2023"]],[8,9,["G5213"]],[9,10,["G4146"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G166"]],[13,14,["G932"]],[14,16,["G2257"]],[16,17,["G2962"]],[17,18,["G2532"]],[18,19,["G4990"]],[19,20,["G2424"]],[20,21,["G5547"]]]},{"k":30491,"v":[[0,1,["G1352"]],[1,4,["G3756"]],[4,6,["G272"]],[6,12,["G5279","G5209","G104"]],[12,13,["G4012"]],[13,15,["G5130"]],[15,16,["G2539"]],[16,18,["G1492"]],[18,20,["G2532"]],[20,22,["G4741"]],[22,23,["G1722"]],[23,24,["G3588"]],[24,25,["G3918"]],[25,26,["G225"]]]},{"k":30492,"v":[[0,1,["G1161"]],[1,3,["G2233"]],[3,5,["G1342"]],[5,8,["G1909","G3745"]],[8,10,["G1510"]],[10,11,["G1722"]],[11,12,["G5129"]],[12,13,["G4638"]],[13,17,["G1326","G5209"]],[17,22,["G1722","G5280"]]]},{"k":30493,"v":[[0,1,["G1492"]],[1,2,["G3754"]],[2,3,["G5031"]],[3,5,["G2076"]],[5,7,["G595"]],[7,9,["G3450"]],[9,10,["G4638"]],[10,11,["G2532"]],[11,12,["G2531"]],[12,13,["G2257"]],[13,14,["G2962"]],[14,15,["G2424"]],[15,16,["G5547"]],[16,18,["G1213"]],[18,19,["G3427"]]]},{"k":30494,"v":[[0,1,["G1161"]],[1,4,["G4704"]],[4,5,["(G2532)"]],[5,6,["G5209"]],[6,10,["G3326"]],[10,11,["G1699"]],[11,12,["G1841"]],[12,14,["G2192"]],[14,16,["G5130"]],[16,17,["G1539"]],[17,19,["G4160","G3420"]]]},{"k":30495,"v":[[0,1,["G1063"]],[1,4,["G3756"]],[4,5,["G1811"]],[5,7,["G4679"]],[7,8,["G3454"]],[8,12,["G1107"]],[12,14,["G5213"]],[14,15,["G3588"]],[15,16,["G1411"]],[16,17,["G2532"]],[17,18,["G3952"]],[18,20,["G2257"]],[20,21,["G2962"]],[21,22,["G2424"]],[22,23,["G5547"]],[23,24,["G235"]],[24,25,["G1096"]],[25,26,["G2030"]],[26,28,["G1565"]],[28,29,["G3168"]]]},{"k":30496,"v":[[0,1,["G1063"]],[1,3,["G2983"]],[3,4,["G3844"]],[4,5,["G2316"]],[5,7,["G3962"]],[7,8,["G5092"]],[8,9,["G2532"]],[9,10,["G1391"]],[10,13,["G5342"]],[13,14,["G5107"]],[14,16,["G5456"]],[16,18,["G846"]],[18,19,["G5259"]],[19,20,["G3588"]],[20,21,["G3169"]],[21,22,["G1391"]],[22,23,["G3778"]],[23,24,["G2076"]],[24,25,["G3450"]],[25,26,["G27"]],[26,27,["G5207"]],[27,28,["G1519"]],[28,29,["G3739"]],[29,30,["G1473"]],[30,33,["G2106"]]]},{"k":30497,"v":[[0,1,["G2532"]],[1,2,["G5026"]],[2,3,["G5456"]],[3,5,["G5342"]],[5,6,["G1537"]],[6,7,["G3772"]],[7,8,["G2249"]],[8,9,["G191"]],[9,12,["G5607"]],[12,13,["G4862"]],[13,14,["G846"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G40"]],[17,18,["G3735"]]]},{"k":30498,"v":[[0,2,["G2192"]],[2,3,["G2532"]],[3,6,["G949"]],[6,7,["G3056"]],[7,9,["G4397"]],[9,10,["G3739"]],[10,12,["G4160"]],[12,13,["G2573"]],[13,17,["G4337"]],[17,18,["G5613"]],[18,21,["G3088"]],[21,23,["G5316"]],[23,24,["G1722"]],[24,26,["G850"]],[26,27,["G5117"]],[27,28,["G2193","G3757"]],[28,30,["G2250"]],[30,31,["G1306"]],[31,32,["G2532"]],[32,35,["G5459"]],[35,36,["G393"]],[36,37,["G1722"]],[37,38,["G5216"]],[38,39,["G2588"]]]},{"k":30499,"v":[[0,1,["G1097"]],[1,2,["G5124"]],[2,3,["G4412"]],[3,4,["G3754"]],[4,5,["G3956","G3756"]],[5,6,["G4394"]],[6,9,["G1124"]],[9,10,["G1096"]],[10,13,["G2398"]],[13,14,["G1955"]]]},{"k":30500,"v":[[0,1,["G1063"]],[1,3,["G4394"]],[3,4,["G5342"]],[4,5,["G3756"]],[5,8,["G4218"]],[8,11,["G2307"]],[11,13,["G444"]],[13,14,["G235"]],[14,15,["G40"]],[15,16,["G444"]],[16,18,["G2316"]],[18,19,["G2980"]],[19,23,["G5342"]],[23,24,["G5259"]],[24,26,["G40"]],[26,27,["G4151"]]]},{"k":30501,"v":[[0,1,["G1161"]],[1,3,["G1096"]],[3,5,["G5578"]],[5,6,["G2532"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G2992"]],[9,10,["G2532"]],[10,11,["G5613"]],[11,14,["G2071"]],[14,16,["G5572"]],[16,17,["G1722"]],[17,18,["G5213"]],[18,19,["G3748"]],[19,23,["G3919"]],[23,24,["G684"]],[24,25,["G139"]],[25,26,["G2532"]],[26,27,["G720"]],[27,28,["G3588"]],[28,29,["G1203"]],[29,31,["G59"]],[31,32,["G846"]],[32,35,["G1863"]],[35,36,["G1438"]],[36,37,["G5031"]],[37,38,["G684"]]]},{"k":30502,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,4,["G1811"]],[4,5,["G846"]],[5,7,["G684"]],[7,10,["G1223"]],[10,11,["G3739"]],[11,12,["G3588"]],[12,13,["G3598"]],[13,15,["G225"]],[15,20,["G987"]]]},{"k":30503,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G4124"]],[3,7,["G4112"]],[7,8,["G3056"]],[8,10,["G1710"]],[10,12,["G5209"]],[12,13,["G3739"]],[13,14,["G2917"]],[14,19,["G1597"]],[19,20,["G691"]],[20,21,["G3756"]],[21,22,["G2532"]],[22,23,["G846"]],[23,24,["G684"]],[24,25,["G3573"]],[25,26,["G3756"]]]},{"k":30504,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G2316"]],[3,4,["G5339"]],[4,5,["G3756"]],[5,7,["G32"]],[7,9,["G264"]],[9,10,["G235"]],[10,15,["G5020"]],[15,17,["G3860"]],[17,20,["G4577"]],[20,22,["G2217"]],[22,25,["G5083"]],[25,26,["G1519"]],[26,27,["G2920"]]]},{"k":30505,"v":[[0,1,["G2532"]],[1,2,["G5339"]],[2,3,["G3756"]],[3,5,["G744"]],[5,6,["G2889"]],[6,7,["G235"]],[7,8,["G5442"]],[8,9,["G3575"]],[9,11,["G3590"]],[11,14,["G2783"]],[14,16,["G1343"]],[16,18,["G1863"]],[18,20,["G2627"]],[20,23,["G2889"]],[23,26,["G765"]]]},{"k":30506,"v":[[0,1,["G2532"]],[1,10,["G5077","G4172","G4670","G2532","G1116"]],[10,11,["G2632"]],[11,15,["G2692"]],[15,16,["G5087"]],[16,19,["G5262"]],[19,24,["G3195"]],[24,26,["G764"]]]},{"k":30507,"v":[[0,1,["G2532"]],[1,2,["G4506"]],[2,3,["G1342"]],[3,4,["G3091"]],[4,5,["G2669"]],[5,6,["G5259"]],[6,7,["G3588"]],[7,9,["G1722","G766","G391"]],[9,11,["G3588"]],[11,12,["G113"]]]},{"k":30508,"v":[[0,1,["G1063"]],[1,4,["G1342"]],[4,5,["G1460"]],[5,6,["G1722"]],[6,7,["G846"]],[7,9,["G990"]],[9,10,["G2532"]],[10,11,["G189"]],[11,12,["G928"]],[12,14,["G1342"]],[14,15,["G5590"]],[15,17,["G2250"]],[17,18,["G1537"]],[18,19,["G2250"]],[19,22,["G459"]],[22,23,["G2041"]]]},{"k":30509,"v":[[0,2,["G2962"]],[2,3,["G1492"]],[3,6,["G4506"]],[6,8,["G2152"]],[8,10,["G1537"]],[10,11,["G3986"]],[11,12,["G1161"]],[12,14,["G5083"]],[14,16,["G94"]],[16,17,["G1519"]],[17,19,["G2250"]],[19,21,["G2920"]],[21,24,["G2849"]]]},{"k":30510,"v":[[0,1,["G1161"]],[1,2,["G3122"]],[2,5,["G4198"]],[5,6,["G3694"]],[6,8,["G4561"]],[8,9,["G1722"]],[9,11,["G1939"]],[11,13,["G3394"]],[13,14,["G2532"]],[14,15,["G2706"]],[15,16,["G2963"]],[16,17,["G5113"]],[17,20,["G829"]],[20,23,["G3756"]],[23,24,["G5141"]],[24,27,["G987"]],[27,29,["G1391"]]]},{"k":30511,"v":[[0,1,["G3699"]],[1,2,["G32"]],[2,4,["G5607"]],[4,5,["G3187"]],[5,7,["G2479"]],[7,8,["G2532"]],[8,9,["G1411"]],[9,10,["G5342"]],[10,11,["G3756"]],[11,12,["G989"]],[12,13,["G2920"]],[13,14,["G2596"]],[14,15,["G846"]],[15,16,["G3844"]],[16,18,["G2962"]]]},{"k":30512,"v":[[0,1,["G1161"]],[1,2,["G3778"]],[2,3,["G5613"]],[3,4,["G5446"]],[4,5,["G249"]],[5,6,["G2226"]],[6,7,["G1080"]],[7,10,["G1519","G259"]],[10,11,["G2532"]],[11,12,["G5356"]],[12,14,["G987"]],[14,15,["G1722"]],[15,18,["G3739"]],[18,21,["G50"]],[21,25,["G2704"]],[25,26,["G1722"]],[26,28,["G848"]],[28,29,["G5356"]]]},{"k":30513,"v":[[0,3,["G2865"]],[3,5,["G3408"]],[5,7,["G93"]],[7,11,["G2233"]],[11,13,["G2237"]],[13,15,["G5172"]],[15,16,["G1722"]],[16,19,["G2250"]],[19,20,["G4695"]],[20,23,["G2532"]],[23,24,["G3470"]],[24,26,["G1792"]],[26,27,["G1722"]],[27,29,["G848"]],[29,30,["G539"]],[30,33,["G4910"]],[33,35,["G5213"]]]},{"k":30514,"v":[[0,1,["G2192"]],[1,2,["G3788"]],[2,3,["G3324"]],[3,5,["G3428"]],[5,6,["G2532"]],[6,9,["G180"]],[9,11,["G266"]],[11,12,["G1185"]],[12,13,["G793"]],[13,14,["G5590"]],[14,16,["G2588"]],[16,18,["G2192"]],[18,19,["G1128"]],[19,22,["G4124"]],[22,23,["G2671"]],[23,24,["G5043"]]]},{"k":30515,"v":[[0,3,["G2641"]],[3,4,["G3588"]],[4,5,["G2117"]],[5,6,["G3598"]],[6,10,["G4105"]],[10,11,["G1811"]],[11,12,["G3588"]],[12,13,["G3598"]],[13,15,["G903"]],[15,19,["G1007"]],[19,20,["G3739"]],[20,21,["G25"]],[21,23,["G3408"]],[23,25,["G93"]]]},{"k":30516,"v":[[0,1,["G1161"]],[1,3,["G2192","G1649"]],[3,5,["G2398"]],[5,6,["G3892"]],[6,8,["G880"]],[8,9,["G5268"]],[9,10,["G5350"]],[10,11,["G1722"]],[11,12,["G444"]],[12,13,["G5456"]],[13,14,["G2967"]],[14,15,["G3588"]],[15,16,["G3913"]],[16,18,["G3588"]],[18,19,["G4396"]]]},{"k":30517,"v":[[0,1,["G3778"]],[1,2,["G1526"]],[2,3,["G4077"]],[3,5,["G504"]],[5,6,["G3507"]],[6,9,["G1643"]],[9,10,["G5259"]],[10,12,["G2978"]],[12,14,["G3739"]],[14,15,["G3588"]],[15,16,["G2217"]],[16,18,["G4655"]],[18,20,["G5083"]],[20,22,["G1519","G165"]]]},{"k":30518,"v":[[0,1,["G1063"]],[1,4,["G5350"]],[4,6,["G5246"]],[6,9,["G3153"]],[9,11,["G1185"]],[11,12,["G1722"]],[12,14,["G1939"]],[14,17,["G4561"]],[17,20,["G766"]],[20,25,["G668","G3689"]],[25,29,["G390"]],[29,30,["G1722"]],[30,31,["G4106"]]]},{"k":30519,"v":[[0,3,["G1861"]],[3,4,["G846"]],[4,5,["G1657"]],[5,6,["G846"]],[6,8,["G5225"]],[8,10,["G1401"]],[10,12,["G5356"]],[12,13,["G1063"]],[13,15,["G3739"]],[15,17,["G5100"]],[17,19,["G2274"]],[19,22,["G5129"]],[22,24,["(G2532)"]],[24,27,["G1402"]]]},{"k":30520,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,6,["G668"]],[6,7,["G3588"]],[7,8,["G3393"]],[8,10,["G3588"]],[10,11,["G2889"]],[11,12,["G1722"]],[12,14,["G1922"]],[14,16,["G3588"]],[16,17,["G2962"]],[17,18,["G2532"]],[18,19,["G4990"]],[19,20,["G2424"]],[20,21,["G5547"]],[21,23,["(G1161)"]],[23,24,["G3825"]],[24,25,["G1707"]],[25,26,["G5125"]],[26,27,["G2532"]],[27,28,["G2274"]],[28,29,["G3588"]],[29,31,["G2078"]],[31,32,["G1096"]],[32,33,["G5501"]],[33,35,["G846"]],[35,37,["G3588"]],[37,38,["G4413"]]]},{"k":30521,"v":[[0,1,["G1063"]],[1,4,["G2258"]],[4,5,["G2909"]],[5,7,["G846"]],[7,8,["G3361"]],[8,11,["G1921"]],[11,12,["G3588"]],[12,13,["G3598"]],[13,15,["G1343"]],[15,16,["G2228"]],[16,20,["G1921"]],[20,23,["G1994"]],[23,24,["G1537"]],[24,25,["G3588"]],[25,26,["G40"]],[26,27,["G1785"]],[27,28,["G3860"]],[28,30,["G846"]]]},{"k":30522,"v":[[0,1,["G1161"]],[1,4,["G4819"]],[4,6,["G846"]],[6,7,["(G3588)"]],[7,9,["G3588"]],[9,10,["G227"]],[10,11,["G3942"]],[11,13,["G2965"]],[13,20,["G1994","G1909","G2398","G1829"]],[20,21,["G2532"]],[21,23,["G5300"]],[23,26,["G3068"]],[26,27,["G1519"]],[27,29,["G2946"]],[29,32,["G1004"]]]},{"k":30523,"v":[[0,1,["G5026"]],[1,2,["G1208"]],[2,3,["G1992"]],[3,4,["G27"]],[4,6,["G2235"]],[6,7,["G1125"]],[7,9,["G5213"]],[9,10,["G1722"]],[10,12,["G3739"]],[12,15,["G1326"]],[15,16,["G5216"]],[16,17,["G1506"]],[17,18,["G1271"]],[18,21,["G1722"]],[21,22,["G5280"]]]},{"k":30524,"v":[[0,5,["G3415"]],[5,7,["G3588"]],[7,8,["G4487"]],[8,12,["G4280"]],[12,13,["G5259"]],[13,14,["G3588"]],[14,15,["G40"]],[15,16,["G4396"]],[16,17,["G2532"]],[17,19,["G3588"]],[19,20,["G1785"]],[20,22,["G2257"]],[22,23,["G3588"]],[23,24,["G652"]],[24,26,["G3588"]],[26,27,["G2962"]],[27,28,["G2532"]],[28,29,["G4990"]]]},{"k":30525,"v":[[0,1,["G1097"]],[1,2,["G5124"]],[2,3,["G4412"]],[3,4,["G3754"]],[4,7,["G2064"]],[7,8,["G1909"]],[8,10,["G2078"]],[10,11,["G2250"]],[11,12,["G1703"]],[12,13,["G4198"]],[13,14,["G2596"]],[14,15,["G848"]],[15,16,["G2398"]],[16,17,["G1939"]]]},{"k":30526,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,3,["G4226"]],[3,4,["G2076"]],[4,5,["G3588"]],[5,6,["G1860"]],[6,8,["G846"]],[8,9,["G3952"]],[9,10,["G1063"]],[10,11,["G575","G3739"]],[11,12,["G3588"]],[12,13,["G3962"]],[13,15,["G2837"]],[15,17,["G3956"]],[17,18,["G1265"]],[18,19,["G3779"]],[19,22,["G575"]],[22,24,["G746"]],[24,27,["G2937"]]]},{"k":30527,"v":[[0,1,["G1063"]],[1,2,["G5124"]],[2,3,["G846"]],[3,4,["G2309"]],[4,7,["G2990"]],[7,8,["G3754"]],[8,10,["G3588"]],[10,11,["G3056"]],[11,13,["G2316"]],[13,15,["G3772"]],[15,16,["G2258"]],[16,18,["G1597"]],[18,19,["G2532"]],[19,21,["G1093"]],[21,22,["G4921"]],[22,24,["G1537"]],[24,26,["G5204"]],[26,27,["G2532"]],[27,28,["G1223"]],[28,30,["G5204"]]]},{"k":30528,"v":[[0,1,["G1223","G3739"]],[1,2,["G3588"]],[2,3,["G2889"]],[3,5,["G5119"]],[5,8,["G2626"]],[8,10,["G5204"]],[10,11,["G622"]]]},{"k":30529,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3772"]],[3,4,["G2532"]],[4,5,["G3588"]],[5,6,["G1093"]],[6,9,["G3568"]],[9,11,["G3588"]],[11,12,["G846"]],[12,13,["G3056"]],[13,14,["G1526"]],[14,17,["G2343"]],[17,18,["G5083"]],[18,20,["G4442"]],[20,21,["G1519"]],[21,23,["G2250"]],[23,25,["G2920"]],[25,26,["G2532"]],[26,27,["G684"]],[27,29,["G765"]],[29,30,["G444"]]]},{"k":30530,"v":[[0,1,["G1161"]],[1,2,["G27"]],[2,5,["G2990","G3361"]],[5,7,["G5124"]],[7,9,["G1520"]],[9,10,["G3754"]],[10,11,["G3391"]],[11,12,["G2250"]],[12,14,["G3844"]],[14,16,["G2962"]],[16,17,["G5613"]],[17,19,["G5507"]],[19,20,["G2094"]],[20,21,["G2532"]],[21,23,["G5507"]],[23,24,["G2094"]],[24,25,["G5613"]],[25,26,["G3391"]],[26,27,["G2250"]]]},{"k":30531,"v":[[0,1,["G3588"]],[1,2,["G2962"]],[2,5,["G1019","G3756"]],[5,8,["G1860"]],[8,9,["G5613"]],[9,11,["G5100"]],[11,12,["G2233"]],[12,13,["G1022"]],[13,14,["G235"]],[14,16,["G3114"]],[16,17,["G1519"]],[17,18,["G2248"]],[18,19,["G3361"]],[19,20,["G1014"]],[20,22,["G5100"]],[22,24,["G622"]],[24,25,["G235"]],[25,27,["G3956"]],[27,29,["G5562"]],[29,30,["G1519"]],[30,31,["G3341"]]]},{"k":30532,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2250"]],[3,6,["G2962"]],[6,8,["G2240"]],[8,9,["G5613"]],[9,11,["G2812"]],[11,12,["G1722"]],[12,14,["G3571"]],[14,15,["G1722"]],[15,17,["G3739"]],[17,18,["G3588"]],[18,19,["G3772"]],[19,22,["G3928"]],[22,26,["G4500"]],[26,27,["G1161"]],[27,29,["G4747"]],[29,31,["G3089"]],[31,34,["G2741"]],[34,36,["G1093"]],[36,37,["G2532"]],[37,38,["G2532"]],[38,39,["G3588"]],[39,40,["G2041"]],[40,43,["G1722","G846"]],[43,47,["G2618"]]]},{"k":30533,"v":[[0,2,["G3767"]],[2,4,["G3956"]],[4,6,["G5130"]],[6,9,["G3089"]],[9,11,["G4217"]],[11,14,["G1163"]],[14,15,["G5209"]],[15,17,["G5225"]],[17,18,["G1722"]],[18,20,["G40"]],[20,21,["G391"]],[21,22,["G2532"]],[22,23,["G2150"]]]},{"k":30534,"v":[[0,2,["G4328"]],[2,3,["G2532"]],[3,4,["G4692"]],[4,6,["G3588"]],[6,7,["G3952"]],[7,9,["G3588"]],[9,10,["G2250"]],[10,12,["G2316"]],[12,13,["G1223","G3739"]],[13,15,["G3772"]],[15,18,["G4448"]],[18,21,["G3089"]],[21,22,["G2532"]],[22,24,["G4747"]],[24,26,["G5080"]],[26,29,["G2741"]]]},{"k":30535,"v":[[0,1,["G1161"]],[1,3,["G2596"]],[3,5,["G846"]],[5,6,["G1862"]],[6,8,["G4328"]],[8,9,["G2537"]],[9,10,["G3772"]],[10,11,["G2532"]],[11,13,["G2537"]],[13,14,["G1093"]],[14,15,["G1722","G3739"]],[15,16,["G2730"]],[16,17,["G1343"]]]},{"k":30536,"v":[[0,1,["G1352"]],[1,2,["G27"]],[2,7,["G4328"]],[7,9,["G5023"]],[9,11,["G4704"]],[11,16,["G2147"]],[16,18,["G846"]],[18,19,["G1722"]],[19,20,["G1515"]],[20,22,["G784"]],[22,23,["G2532"]],[23,24,["G298"]]]},{"k":30537,"v":[[0,1,["G2532"]],[1,2,["G2233"]],[2,4,["G3588"]],[4,5,["G3115"]],[5,7,["G2257"]],[7,8,["G2962"]],[8,10,["G4991"]],[10,12,["G2532"]],[12,13,["G2257"]],[13,14,["G27"]],[14,15,["G80"]],[15,16,["G3972"]],[16,17,["G2532"]],[17,18,["G2596"]],[18,20,["G3588"]],[20,21,["G4678"]],[21,22,["G1325"]],[22,24,["G846"]],[24,26,["G1125"]],[26,28,["G5213"]]]},{"k":30538,"v":[[0,1,["G5613"]],[1,2,["G2532"]],[2,3,["G1722"]],[3,4,["G3956"]],[4,6,["G1992"]],[6,7,["G2980"]],[7,8,["G1722"]],[8,9,["G846"]],[9,10,["G4012"]],[10,12,["G5130"]],[12,13,["G1722"]],[13,14,["G3739"]],[14,15,["G2076"]],[15,17,["G5100"]],[17,21,["G1425"]],[21,22,["G3739"]],[22,26,["G261"]],[26,27,["G2532"]],[27,28,["G793"]],[28,29,["G4761"]],[29,30,["G5613"]],[30,33,["G2532"]],[33,34,["G3588"]],[34,35,["G3062"]],[35,36,["G1124"]],[36,37,["G4314"]],[37,38,["G848"]],[38,39,["G2398"]],[39,40,["G684"]]]},{"k":30539,"v":[[0,1,["G5210"]],[1,2,["G3767"]],[2,3,["G27"]],[3,9,["G4267"]],[9,10,["G5442"]],[10,11,["G3363"]],[11,17,["G4879"]],[17,18,["G3588"]],[18,19,["G4106"]],[19,21,["G3588"]],[21,22,["G113"]],[22,24,["G1601"]],[24,26,["G2398"]],[26,27,["G4740"]]]},{"k":30540,"v":[[0,1,["G1161"]],[1,2,["G837"]],[2,3,["G1722"]],[3,4,["G5485"]],[4,5,["G2532"]],[5,8,["G1108"]],[8,10,["G2257"]],[10,11,["G2962"]],[11,12,["G2532"]],[12,13,["G4990"]],[13,14,["G2424"]],[14,15,["G5547"]],[15,17,["G846"]],[17,19,["G1391"]],[19,20,["G2532"]],[20,21,["G3568"]],[21,22,["G2532"]],[22,24,["G1519","G2250","G165"]],[24,25,["G281"]]]},{"k":30541,"v":[[0,2,["G3739"]],[2,3,["G2258"]],[3,4,["G575"]],[4,6,["G746"]],[6,7,["G3739"]],[7,10,["G191"]],[10,11,["G3739"]],[11,14,["G3708"]],[14,16,["G2257"]],[16,17,["G3788"]],[17,18,["G3739"]],[18,22,["G2300"]],[22,23,["G2532"]],[23,24,["G2257"]],[24,25,["G5495"]],[25,27,["G5584"]],[27,28,["G4012"]],[28,29,["G3588"]],[29,30,["G3056"]],[30,32,["G2222"]]]},{"k":30542,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2222"]],[3,5,["G5319"]],[5,6,["G2532"]],[6,9,["G3708"]],[9,11,["G2532"]],[11,13,["G3140"]],[13,14,["G2532"]],[14,15,["G518"]],[15,17,["G5213"]],[17,19,["G166"]],[19,20,["G2222"]],[20,21,["G3748"]],[21,22,["G2258"]],[22,23,["G4314"]],[23,24,["G3588"]],[24,25,["G3962"]],[25,26,["G2532"]],[26,28,["G5319"]],[28,30,["G2254"]]]},{"k":30543,"v":[[0,2,["G3739"]],[2,5,["G3708"]],[5,6,["G2532"]],[6,7,["G191"]],[7,8,["G518"]],[8,11,["G5213"]],[11,12,["G2443"]],[12,13,["G5210"]],[13,14,["G2532"]],[14,16,["G2192"]],[16,17,["G2842"]],[17,18,["G3326"]],[18,19,["G2257"]],[19,20,["G2532"]],[20,21,["G1161"]],[21,22,["G2251"]],[22,23,["G2842"]],[23,25,["G3326"]],[25,26,["G3588"]],[26,27,["G3962"]],[27,28,["G2532"]],[28,29,["G3326"]],[29,30,["G848"]],[30,31,["G5207"]],[31,32,["G2424"]],[32,33,["G5547"]]]},{"k":30544,"v":[[0,1,["G2532"]],[1,3,["G5023"]],[3,4,["G1125"]],[4,7,["G5213"]],[7,8,["G2443"]],[8,9,["G5216"]],[9,10,["G5479"]],[10,12,["G5600"]],[12,13,["G4137"]]]},{"k":30545,"v":[[0,1,["G3778"]],[1,2,["G2532"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G1860"]],[5,6,["G3739"]],[6,9,["G191"]],[9,10,["G575"]],[10,11,["G846"]],[11,12,["G2532"]],[12,13,["G312"]],[13,15,["G5213"]],[15,16,["G3754"]],[16,17,["G2316"]],[17,18,["G2076"]],[18,19,["G5457"]],[19,20,["G2532"]],[20,21,["G1722"]],[21,22,["G846"]],[22,23,["G2076"]],[23,24,["G3756"]],[24,25,["G4653"]],[25,27,["G3762"]]]},{"k":30546,"v":[[0,1,["G1437"]],[1,3,["G2036"]],[3,4,["G3754"]],[4,6,["G2192"]],[6,7,["G2842"]],[7,8,["G3326"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G4043"]],[11,12,["G1722"]],[12,13,["G4655"]],[13,15,["G5574"]],[15,16,["G2532"]],[16,17,["G4160"]],[17,18,["G3756"]],[18,19,["G3588"]],[19,20,["G225"]]]},{"k":30547,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,4,["G4043"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G5457"]],[7,8,["G5613"]],[8,9,["G846"]],[9,10,["G2076"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G5457"]],[13,15,["G2192"]],[15,16,["G2842"]],[16,19,["G240","G3326"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G129"]],[22,24,["G2424"]],[24,25,["G5547"]],[25,26,["G846"]],[26,27,["G5207"]],[27,28,["G2511"]],[28,29,["G2248"]],[29,30,["G575"]],[30,31,["G3956"]],[31,32,["G266"]]]},{"k":30548,"v":[[0,1,["G1437"]],[1,3,["G2036"]],[3,4,["G3754"]],[4,6,["G2192"]],[6,7,["G3756"]],[7,8,["G266"]],[8,10,["G4105"]],[10,11,["G1438"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G225"]],[14,15,["G2076"]],[15,16,["G3756"]],[16,17,["G1722"]],[17,18,["G2254"]]]},{"k":30549,"v":[[0,1,["G1437"]],[1,3,["G3670"]],[3,4,["G2257"]],[4,5,["G266"]],[5,7,["G2076"]],[7,8,["G4103"]],[8,9,["G2532"]],[9,10,["G1342"]],[10,11,["G2443"]],[11,12,["G863"]],[12,13,["G2254"]],[13,15,["G266"]],[15,16,["G2532"]],[16,18,["G2511"]],[18,19,["G2248"]],[19,20,["G575"]],[20,21,["G3956"]],[21,22,["G93"]]]},{"k":30550,"v":[[0,1,["G1437"]],[1,3,["G2036"]],[3,4,["G3754"]],[4,7,["G3756"]],[7,8,["G264"]],[8,10,["G4160"]],[10,11,["G846"]],[11,13,["G5583"]],[13,14,["G2532"]],[14,15,["G848"]],[15,16,["G3056"]],[16,17,["G2076"]],[17,18,["G3756"]],[18,19,["G1722"]],[19,20,["G2254"]]]},{"k":30551,"v":[[0,1,["G3450"]],[1,3,["G5040"]],[3,5,["G5023"]],[5,6,["G1125"]],[6,9,["G5213"]],[9,10,["G2443"]],[10,12,["G264"]],[12,13,["G3361"]],[13,14,["G2532"]],[14,15,["G1437"]],[15,17,["G5100"]],[17,18,["G264"]],[18,20,["G2192"]],[20,22,["G3875"]],[22,23,["G4314"]],[23,24,["G3588"]],[24,25,["G3962"]],[25,26,["G2424"]],[26,27,["G5547"]],[27,29,["G1342"]]]},{"k":30552,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G2076"]],[3,5,["G2434"]],[5,6,["G4012"]],[6,7,["G2257"]],[7,8,["G266"]],[8,9,["G1161"]],[9,10,["G3756"]],[10,11,["G4012"]],[11,12,["G2251"]],[12,13,["G3440"]],[13,14,["G235"]],[14,15,["G2532"]],[15,16,["G4012"]],[16,20,["G3588"]],[20,21,["G3650"]],[21,22,["G2889"]]]},{"k":30553,"v":[[0,1,["G2532"]],[1,2,["G1722","G5129"]],[2,5,["G1097"]],[5,6,["G3754"]],[6,8,["G1097"]],[8,9,["G846"]],[9,10,["G1437"]],[10,12,["G5083"]],[12,13,["G848"]],[13,14,["G1785"]]]},{"k":30554,"v":[[0,3,["G3004"]],[3,5,["G1097"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G5083"]],[8,9,["G3361"]],[9,10,["G848"]],[10,11,["G1785"]],[11,12,["G2076"]],[12,14,["G5583"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G225"]],[17,18,["G2076"]],[18,19,["G3756"]],[19,20,["G1722"]],[20,21,["G5129"]]]},{"k":30555,"v":[[0,1,["G1161"]],[1,2,["G3739","G302"]],[2,3,["G5083"]],[3,4,["G848"]],[4,5,["G3056"]],[5,6,["G1722"]],[6,7,["G5129"]],[7,8,["G230"]],[8,10,["G3588"]],[10,11,["G26"]],[11,13,["G2316"]],[13,14,["G5048"]],[14,15,["G1722","G5129"]],[15,16,["G1097"]],[16,18,["G3754"]],[18,20,["G2070"]],[20,21,["G1722"]],[21,22,["G846"]]]},{"k":30556,"v":[[0,3,["G3004"]],[3,5,["G3306"]],[5,6,["G1722"]],[6,7,["G846"]],[7,8,["G3784"]],[8,9,["G848"]],[9,10,["G2532"]],[10,11,["G3779"]],[11,13,["G4043"]],[13,15,["G2531"]],[15,16,["G1565"]],[16,17,["G4043"]]]},{"k":30557,"v":[[0,1,["G80"]],[1,3,["G1125"]],[3,4,["G3756"]],[4,5,["G2537"]],[5,6,["G1785"]],[6,8,["G5213"]],[8,9,["G235"]],[9,11,["G3820"]],[11,12,["G1785"]],[12,13,["G3739"]],[13,15,["G2192"]],[15,16,["G575"]],[16,18,["G746"]],[18,19,["G3588"]],[19,20,["G3820"]],[20,21,["G1785"]],[21,22,["G2076"]],[22,23,["G3588"]],[23,24,["G3056"]],[24,25,["G3739"]],[25,28,["G191"]],[28,29,["G575"]],[29,31,["G746"]]]},{"k":30558,"v":[[0,1,["G3825"]],[1,3,["G2537"]],[3,4,["G1785"]],[4,6,["G1125"]],[6,8,["G5213"]],[8,10,["G3739"]],[10,11,["G2076"]],[11,12,["G227"]],[12,13,["G1722"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G1722"]],[16,17,["G5213"]],[17,18,["G3754"]],[18,19,["G3588"]],[19,20,["G4653"]],[20,22,["G3855"]],[22,23,["G2532"]],[23,24,["G3588"]],[24,25,["G228"]],[25,26,["G5457"]],[26,27,["G2235"]],[27,28,["G5316"]]]},{"k":30559,"v":[[0,3,["G3004"]],[3,5,["G1511"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G5457"]],[8,9,["G2532"]],[9,10,["G3404"]],[10,11,["G848"]],[11,12,["G80"]],[12,13,["G2076"]],[13,14,["G1722"]],[14,15,["G4653"]],[15,17,["G2193"]],[17,18,["G737"]]]},{"k":30560,"v":[[0,3,["G25"]],[3,4,["G848"]],[4,5,["G80"]],[5,6,["G3306"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G5457"]],[9,10,["G2532"]],[10,12,["G2076"]],[12,13,["G3756"]],[13,16,["G4625"]],[16,17,["G1722"]],[17,18,["G846"]]]},{"k":30561,"v":[[0,1,["G1161"]],[1,4,["G3404"]],[4,5,["G848"]],[5,6,["G80"]],[6,7,["G2076"]],[7,8,["G1722"]],[8,9,["G4653"]],[9,10,["G2532"]],[10,11,["G4043"]],[11,12,["G1722"]],[12,13,["G4653"]],[13,14,["G2532"]],[14,15,["G1492"]],[15,16,["G3756"]],[16,17,["G4226"]],[17,19,["G5217"]],[19,20,["G3754"]],[20,22,["G4653"]],[22,24,["G5186"]],[24,25,["G848"]],[25,26,["G3788"]]]},{"k":30562,"v":[[0,2,["G1125"]],[2,4,["G5213"]],[4,6,["G5040"]],[6,7,["G3754"]],[7,9,["G266"]],[9,11,["G863"]],[11,12,["G5213"]],[12,16,["G1223","G848","G3686"]]]},{"k":30563,"v":[[0,2,["G1125"]],[2,4,["G5213"]],[4,5,["G3962"]],[5,6,["G3754"]],[6,9,["G1097"]],[9,10,["G3588"]],[10,13,["G575"]],[13,15,["G746"]],[15,17,["G1125"]],[17,19,["G5213"]],[19,21,["G3495"]],[21,22,["G3754"]],[22,25,["G3528"]],[25,26,["G3588"]],[26,28,["G4190"]],[28,30,["G1125"]],[30,32,["G5213"]],[32,34,["G3813"]],[34,35,["G3754"]],[35,38,["G1097"]],[38,39,["G3588"]],[39,40,["G3962"]]]},{"k":30564,"v":[[0,3,["G1125"]],[3,5,["G5213"]],[5,6,["G3962"]],[6,7,["G3754"]],[7,10,["G1097"]],[10,11,["G3588"]],[11,14,["G575"]],[14,16,["G746"]],[16,19,["G1125"]],[19,21,["G5213"]],[21,23,["G3495"]],[23,24,["G3754"]],[24,26,["G2075"]],[26,27,["G2478"]],[27,28,["G2532"]],[28,29,["G3588"]],[29,30,["G3056"]],[30,32,["G2316"]],[32,33,["G3306"]],[33,34,["G1722"]],[34,35,["G5213"]],[35,36,["G2532"]],[36,39,["G3528"]],[39,40,["G3588"]],[40,42,["G4190"]]]},{"k":30565,"v":[[0,1,["G25"]],[1,2,["G3361"]],[2,3,["G3588"]],[3,4,["G2889"]],[4,5,["G3366"]],[5,7,["G3588"]],[7,10,["G1722"]],[10,11,["G3588"]],[11,12,["G2889"]],[12,13,["G1437"]],[13,15,["G5100"]],[15,16,["G25"]],[16,17,["G3588"]],[17,18,["G2889"]],[18,19,["G3588"]],[19,20,["G26"]],[20,22,["G3588"]],[22,23,["G3962"]],[23,24,["G2076"]],[24,25,["G3756"]],[25,26,["G1722"]],[26,27,["G846"]]]},{"k":30566,"v":[[0,1,["G3754"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,5,["G1722"]],[5,6,["G3588"]],[6,7,["G2889"]],[7,8,["G3588"]],[8,9,["G1939"]],[9,11,["G3588"]],[11,12,["G4561"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G1939"]],[15,17,["G3588"]],[17,18,["G3788"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G212"]],[21,23,["G979"]],[23,24,["G2076"]],[24,25,["G3756"]],[25,26,["G1537"]],[26,27,["G3588"]],[27,28,["G3962"]],[28,29,["G235"]],[29,30,["G2076"]],[30,31,["G1537"]],[31,32,["G3588"]],[32,33,["G2889"]]]},{"k":30567,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2889"]],[3,5,["G3855"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G1939"]],[8,9,["G848"]],[9,10,["G1161"]],[10,13,["G4160"]],[13,14,["G3588"]],[14,15,["G2307"]],[15,17,["G2316"]],[17,18,["G3306"]],[18,20,["G1519","G165"]]]},{"k":30568,"v":[[0,2,["G3813"]],[2,4,["G2076"]],[4,6,["G2078"]],[6,7,["G5610"]],[7,8,["G2532"]],[8,9,["G2531"]],[9,12,["G191"]],[12,13,["G3754"]],[13,14,["G500"]],[14,16,["G2064"]],[16,17,["G2532"]],[17,18,["G3568"]],[18,19,["G1096"]],[19,21,["G4183"]],[21,22,["G500"]],[22,23,["G3606"]],[23,25,["G1097"]],[25,26,["G3754"]],[26,28,["G2076"]],[28,30,["G2078"]],[30,31,["G5610"]]]},{"k":30569,"v":[[0,3,["G1831"]],[3,4,["G1537"]],[4,5,["G2257"]],[5,6,["G235"]],[6,8,["G2258"]],[8,9,["G3756"]],[9,10,["G1537"]],[10,11,["G2257"]],[11,12,["G1063"]],[12,13,["G1487"]],[13,16,["G2258"]],[16,17,["G1537"]],[17,18,["G2257"]],[18,24,["G3306","G302"]],[24,25,["G3326"]],[25,26,["G2257"]],[26,27,["G235"]],[27,31,["G2443"]],[31,36,["G5319"]],[36,37,["G3754"]],[37,39,["G1526"]],[39,40,["G3756"]],[40,41,["G3956"]],[41,42,["G1537"]],[42,43,["G2257"]]]},{"k":30570,"v":[[0,1,["G2532"]],[1,2,["G5210"]],[2,3,["G2192"]],[3,5,["G5545"]],[5,6,["G575"]],[6,7,["G3588"]],[7,9,["G40"]],[9,10,["G2532"]],[10,12,["G1492"]],[12,14,["G3956"]]]},{"k":30571,"v":[[0,3,["G3756"]],[3,4,["G1125"]],[4,6,["G5213"]],[6,7,["G3754"]],[7,9,["G1492"]],[9,10,["G3756"]],[10,11,["G3588"]],[11,12,["G225"]],[12,13,["G235"]],[13,14,["G3754"]],[14,16,["G1492"]],[16,17,["G846"]],[17,18,["G2532"]],[18,19,["G3754"]],[19,20,["G3956","G3756"]],[20,21,["G5579"]],[21,22,["G2076"]],[22,23,["G1537"]],[23,24,["G3588"]],[24,25,["G225"]]]},{"k":30572,"v":[[0,1,["G5101"]],[1,2,["G2076"]],[2,4,["G5583"]],[4,5,["G1508"]],[5,8,["G720"]],[8,9,["G3754"]],[9,10,["G2424"]],[10,11,["G2076","(G3756)"]],[11,12,["G3588"]],[12,13,["G5547"]],[13,14,["G3778"]],[14,15,["G2076"]],[15,16,["G500"]],[16,18,["G720"]],[18,19,["G3588"]],[19,20,["G3962"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G5207"]]]},{"k":30573,"v":[[0,1,["G3956"]],[1,2,["G720"]],[2,3,["G3588"]],[3,4,["G5207"]],[4,7,["G2192"]],[7,8,["G3761"]],[8,9,["G3588"]],[9,10,["G3962"]],[10,14,["G3670"]],[14,15,["G3588"]],[15,16,["G5207"]],[16,17,["G2192"]],[17,18,["G3588"]],[18,19,["G3962"]],[19,20,["G2532"]]]},{"k":30574,"v":[[0,3,["G3767"]],[3,4,["G3306"]],[4,5,["G1722"]],[5,6,["G5213"]],[6,8,["G5210"]],[8,10,["G191"]],[10,11,["G575"]],[11,13,["G746"]],[13,14,["G1437"]],[14,16,["G3739"]],[16,19,["G191"]],[19,20,["G575"]],[20,22,["G746"]],[22,24,["G3306"]],[24,25,["G1722"]],[25,26,["G5213"]],[26,27,["G5210"]],[27,28,["G2532"]],[28,30,["G3306"]],[30,31,["G1722"]],[31,32,["G3588"]],[32,33,["G5207"]],[33,34,["G2532"]],[34,35,["G1722"]],[35,36,["G3588"]],[36,37,["G3962"]]]},{"k":30575,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G1860"]],[5,6,["G3739"]],[6,7,["G846"]],[7,9,["G1861"]],[9,10,["G2254"]],[10,12,["G166"]],[12,13,["G2222"]]]},{"k":30576,"v":[[0,1,["G5023"]],[1,5,["G1125"]],[5,7,["G5213"]],[7,8,["G4012"]],[8,11,["G4105"]],[11,12,["G5209"]]]},{"k":30577,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5545"]],[3,4,["G3739"]],[4,5,["G5210"]],[5,7,["G2983"]],[7,8,["G575"]],[8,9,["G846"]],[9,10,["G3306"]],[10,11,["G1722"]],[11,12,["G5213"]],[12,13,["G2532"]],[13,15,["G2192","G5532"]],[15,16,["G3756"]],[16,17,["G2443"]],[17,19,["G5100"]],[19,20,["G1321"]],[20,21,["G5209"]],[21,22,["G235"]],[22,23,["G5613"]],[23,24,["G3588"]],[24,25,["G846"]],[25,26,["G5545"]],[26,27,["G1321"]],[27,28,["G5209"]],[28,29,["G4012"]],[29,31,["G3956"]],[31,32,["G2532"]],[32,33,["G2076"]],[33,34,["G227"]],[34,35,["G2532"]],[35,36,["G2076"]],[36,37,["G3756"]],[37,38,["G5579"]],[38,39,["G2532"]],[39,41,["G2531"]],[41,44,["G1321"]],[44,45,["G5209"]],[45,48,["G3306"]],[48,49,["G1722"]],[49,50,["G846"]]]},{"k":30578,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,4,["G5040"]],[4,5,["G3306"]],[5,6,["G1722"]],[6,7,["G846"]],[7,8,["G2443"]],[8,9,["G3752"]],[9,12,["G5319"]],[12,15,["G2192"]],[15,16,["G3954"]],[16,17,["G2532"]],[17,18,["G3361"]],[18,20,["G153"]],[20,21,["G575"]],[21,22,["G846"]],[22,23,["G1722"]],[23,24,["G848"]],[24,25,["G3952"]]]},{"k":30579,"v":[[0,1,["G1437"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,6,["G2076"]],[6,7,["G1342"]],[7,9,["G1097"]],[9,10,["G3754"]],[10,12,["G3956"]],[12,14,["G4160"]],[14,15,["G1343"]],[15,17,["G1080"]],[17,18,["G1537"]],[18,19,["G846"]]]},{"k":30580,"v":[[0,1,["G1492"]],[1,3,["G4217"]],[3,5,["G26"]],[5,6,["G3588"]],[6,7,["G3962"]],[7,9,["G1325"]],[9,11,["G2254"]],[11,12,["G2443"]],[12,16,["G2564"]],[16,18,["G5043"]],[18,20,["G2316"]],[20,21,["G1223","G5124"]],[21,22,["G3588"]],[22,23,["G2889"]],[23,24,["G1097"]],[24,25,["G2248"]],[25,26,["G3756"]],[26,27,["G3754"]],[27,29,["G1097"]],[29,30,["G846"]],[30,31,["G3756"]]]},{"k":30581,"v":[[0,1,["G27"]],[1,2,["G3568"]],[2,3,["G2070"]],[3,6,["G5043"]],[6,8,["G2316"]],[8,9,["G2532"]],[9,13,["G3768"]],[13,14,["G5319"]],[14,15,["G5101"]],[15,18,["G2071"]],[18,19,["G1161"]],[19,21,["G1492"]],[21,22,["G3754"]],[22,23,["G1437"]],[23,26,["G5319"]],[26,29,["G2071"]],[29,30,["G3664"]],[30,31,["G846"]],[31,32,["G3754"]],[32,35,["G3700"]],[35,36,["G846"]],[36,37,["G2531"]],[37,39,["G2076"]]]},{"k":30582,"v":[[0,1,["G2532"]],[1,3,["G3956"]],[3,5,["G2192"]],[5,6,["G5026"]],[6,7,["G1680"]],[7,8,["G1909"]],[8,9,["G846"]],[9,10,["G48"]],[10,11,["G1438"]],[11,13,["G2531"]],[13,14,["G1565"]],[14,15,["G2076"]],[15,16,["G53"]]]},{"k":30583,"v":[[0,1,["G3956"]],[1,2,["G4160"]],[2,3,["G266"]],[3,7,["G4160","G2532","G458"]],[7,8,["G2532"]],[8,9,["G266"]],[9,10,["G2076"]],[10,11,["G3588"]],[11,15,["G458"]]]},{"k":30584,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G1565"]],[5,7,["G5319"]],[7,8,["G2443"]],[8,10,["G142"]],[10,11,["G2257"]],[11,12,["G266"]],[12,13,["G2532"]],[13,14,["G1722"]],[14,15,["G846"]],[15,16,["G2076"]],[16,17,["G3756"]],[17,18,["G266"]]]},{"k":30585,"v":[[0,1,["G3956"]],[1,2,["G3306"]],[2,3,["G1722"]],[3,4,["G846"]],[4,5,["G264"]],[5,6,["G3756"]],[6,7,["G3956"]],[7,8,["G264"]],[8,10,["G3756"]],[10,11,["G3708"]],[11,12,["G846"]],[12,13,["G3761"]],[13,14,["G1097"]],[14,15,["G846"]]]},{"k":30586,"v":[[0,2,["G5040"]],[2,5,["G3367"]],[5,6,["G4105"]],[6,7,["G5209"]],[7,10,["G4160"]],[10,11,["G1343"]],[11,12,["G2076"]],[12,13,["G1342"]],[13,15,["G2531"]],[15,16,["G1565"]],[16,17,["G2076"]],[17,18,["G1342"]]]},{"k":30587,"v":[[0,3,["G4160"]],[3,4,["G266"]],[4,5,["G2076"]],[5,6,["G1537"]],[6,7,["G3588"]],[7,8,["G1228"]],[8,9,["G3754"]],[9,10,["G3588"]],[10,11,["G1228"]],[11,12,["G264"]],[12,13,["G575"]],[13,15,["G746"]],[15,16,["G1519"]],[16,18,["G5124"]],[18,19,["G3588"]],[19,20,["G5207"]],[20,22,["G2316"]],[22,24,["G5319"]],[24,25,["G2443"]],[25,28,["G3089"]],[28,29,["G3588"]],[29,30,["G2041"]],[30,32,["G3588"]],[32,33,["G1228"]]]},{"k":30588,"v":[[0,1,["G3956"]],[1,3,["G1080"]],[3,4,["G1537"]],[4,5,["G2316"]],[5,7,["G3756"]],[7,8,["G4160"]],[8,9,["G266"]],[9,10,["G3754"]],[10,11,["G848"]],[11,12,["G4690"]],[12,13,["G3306"]],[13,14,["G1722"]],[14,15,["G846"]],[15,16,["G2532"]],[16,18,["G1410","G3756"]],[18,19,["G264"]],[19,20,["G3754"]],[20,23,["G1080"]],[23,24,["G1537"]],[24,25,["G2316"]]]},{"k":30589,"v":[[0,1,["G1722"]],[1,2,["G5129"]],[2,3,["G3588"]],[3,4,["G5043"]],[4,6,["G2316"]],[6,7,["G2076"]],[7,8,["G5318"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G5043"]],[11,13,["G3588"]],[13,14,["G1228"]],[14,15,["G3956"]],[15,16,["G4160"]],[16,17,["G3361"]],[17,18,["G1343"]],[18,19,["G2076"]],[19,20,["G3756"]],[20,21,["G1537"]],[21,22,["G2316"]],[22,23,["G2532"]],[23,26,["G25"]],[26,27,["G3361"]],[27,28,["G848"]],[28,29,["G80"]]]},{"k":30590,"v":[[0,1,["G3754"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G31"]],[5,6,["G3739"]],[6,8,["G191"]],[8,9,["G575"]],[9,11,["G746"]],[11,12,["G2443"]],[12,15,["G25"]],[15,17,["G240"]]]},{"k":30591,"v":[[0,1,["G3756"]],[1,2,["G2531"]],[2,3,["G2535"]],[3,5,["G2258"]],[5,6,["G1537"]],[6,9,["G4190"]],[9,10,["G2532"]],[10,11,["G4969"]],[11,12,["G848"]],[12,13,["G80"]],[13,14,["G2532"]],[14,15,["G5484","G5101"]],[15,16,["G4969"]],[16,18,["G846"]],[18,19,["G3754"]],[19,21,["G848"]],[21,22,["G2041"]],[22,23,["G2258"]],[23,24,["G4190"]],[24,25,["G1161"]],[25,26,["G848"]],[26,27,["G80"]],[27,28,["G1342"]]]},{"k":30592,"v":[[0,1,["G2296"]],[1,2,["G3361"]],[2,3,["G3450"]],[3,4,["G80"]],[4,5,["G1487"]],[5,6,["G3588"]],[6,7,["G2889"]],[7,8,["G3404"]],[8,9,["G5209"]]]},{"k":30593,"v":[[0,1,["G2249"]],[1,2,["G1492"]],[2,3,["G3754"]],[3,6,["G3327"]],[6,7,["G1537"]],[7,8,["G2288"]],[8,9,["G1519"]],[9,10,["G2222"]],[10,11,["G3754"]],[11,13,["G25"]],[13,14,["G3588"]],[14,15,["G80"]],[15,18,["G25"]],[18,19,["G3361"]],[19,21,["G80"]],[21,22,["G3306"]],[22,23,["G1722"]],[23,24,["G2288"]]]},{"k":30594,"v":[[0,1,["G3956"]],[1,2,["G3404"]],[2,3,["G848"]],[3,4,["G80"]],[4,5,["G2076"]],[5,7,["G443"]],[7,8,["G2532"]],[8,10,["G1492"]],[10,11,["G3754"]],[11,12,["G3956","G3756"]],[12,13,["G443"]],[13,14,["G2192"]],[14,15,["G166"]],[15,16,["G2222"]],[16,17,["G3306"]],[17,18,["G1722"]],[18,19,["G846"]]]},{"k":30595,"v":[[0,1,["G1722","G5129"]],[1,2,["G1097"]],[2,4,["G3588"]],[4,5,["G26"]],[5,7,["(G2316)"]],[7,8,["G3754"]],[8,9,["G1565"]],[9,11,["G5087"]],[11,12,["G848"]],[12,13,["G5590"]],[13,14,["G5228"]],[14,15,["G2257"]],[15,16,["G2532"]],[16,17,["G2249"]],[17,18,["G3784"]],[18,21,["G5087"]],[21,23,["G5590"]],[23,24,["G5228"]],[24,25,["G3588"]],[25,26,["G80"]]]},{"k":30596,"v":[[0,1,["G1161"]],[1,2,["G3739","G302"]],[2,3,["G2192"]],[3,5,["G2889"]],[5,6,["G979"]],[6,7,["G2532"]],[7,8,["G2334"]],[8,9,["G848"]],[9,10,["G80"]],[10,11,["G2192"]],[11,12,["G5532"]],[12,13,["G2532"]],[13,15,["G2808"]],[15,16,["G848"]],[16,17,["G4698"]],[17,20,["G575"]],[20,21,["G846"]],[21,22,["G4459"]],[22,23,["G3306"]],[23,24,["G3588"]],[24,25,["G26"]],[25,27,["G2316"]],[27,28,["G1722"]],[28,29,["G846"]]]},{"k":30597,"v":[[0,1,["G3450"]],[1,3,["G5040"]],[3,6,["G3361"]],[6,7,["G25"]],[7,9,["G3056"]],[9,10,["G3366"]],[10,12,["G1100"]],[12,13,["G235"]],[13,15,["G2041"]],[15,16,["G2532"]],[16,18,["G225"]]]},{"k":30598,"v":[[0,1,["G2532"]],[1,2,["G1722","G5129"]],[2,4,["G1097"]],[4,5,["G3754"]],[5,7,["G2070"]],[7,8,["G1537"]],[8,9,["G3588"]],[9,10,["G225"]],[10,11,["G2532"]],[11,13,["G3982"]],[13,14,["G2257"]],[14,15,["G2588"]],[15,16,["G1715"]],[16,17,["G846"]]]},{"k":30599,"v":[[0,1,["G3754"]],[1,2,["G1437"]],[2,3,["G2257"]],[3,4,["G2588"]],[4,5,["G2607"]],[5,6,["(G3754)"]],[6,7,["G2316"]],[7,8,["G2076"]],[8,9,["G3187"]],[9,11,["G2257"]],[11,12,["G2588"]],[12,13,["G2532"]],[13,14,["G1097"]],[14,16,["G3956"]]]},{"k":30600,"v":[[0,1,["G27"]],[1,2,["G1437"]],[2,3,["G2257"]],[3,4,["G2588"]],[4,5,["G2607"]],[5,6,["G2257"]],[6,7,["G3361"]],[7,9,["G2192"]],[9,11,["G3954"]],[11,12,["G4314"]],[12,13,["G2316"]]]},{"k":30601,"v":[[0,1,["G2532"]],[1,2,["G3739","G1437"]],[2,4,["G154"]],[4,6,["G2983"]],[6,7,["G3844"]],[7,8,["G846"]],[8,9,["G3754"]],[9,11,["G5083"]],[11,12,["G848"]],[12,13,["G1785"]],[13,14,["G2532"]],[14,15,["G4160"]],[15,20,["G701"]],[20,23,["G1799","G846"]]]},{"k":30602,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,4,["G848"]],[4,5,["G1785"]],[5,6,["G2443"]],[6,9,["G4100"]],[9,11,["G3588"]],[11,12,["G3686"]],[12,14,["G848"]],[14,15,["G5207"]],[15,16,["G2424"]],[16,17,["G5547"]],[17,18,["G2532"]],[18,19,["G25"]],[19,21,["G240"]],[21,22,["G2531"]],[22,24,["G1325"]],[24,25,["G2254"]],[25,26,["G1785"]]]},{"k":30603,"v":[[0,1,["G2532"]],[1,4,["G5083"]],[4,5,["G848"]],[5,6,["G1785"]],[6,7,["G3306"]],[7,8,["G1722"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G846"]],[11,12,["G1722"]],[12,13,["G846"]],[13,14,["G2532"]],[14,15,["G1722","G5129"]],[15,17,["G1097"]],[17,18,["G3754"]],[18,20,["G3306"]],[20,21,["G1722"]],[21,22,["G2254"]],[22,23,["G1537"]],[23,24,["G3588"]],[24,25,["G4151"]],[25,26,["G3739"]],[26,29,["G1325"]],[29,30,["G2254"]]]},{"k":30604,"v":[[0,1,["G27"]],[1,2,["G4100"]],[2,3,["G3361"]],[3,4,["G3956"]],[4,5,["G4151"]],[5,6,["G235"]],[6,7,["G1381"]],[7,8,["G3588"]],[8,9,["G4151"]],[9,10,["G1487"]],[10,12,["G2076"]],[12,13,["G1537"]],[13,14,["G2316"]],[14,15,["G3754"]],[15,16,["G4183"]],[16,18,["G5578"]],[18,21,["G1831"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G2889"]]]},{"k":30605,"v":[[0,1,["G1722","G5129"]],[1,2,["G1097"]],[2,4,["G3588"]],[4,5,["G4151"]],[5,7,["G2316"]],[7,8,["G3956"]],[8,9,["G4151"]],[9,10,["G3739"]],[10,11,["G3670"]],[11,13,["G2424"]],[13,14,["G5547"]],[14,16,["G2064"]],[16,17,["G1722"]],[17,19,["G4561"]],[19,20,["G2076"]],[20,21,["G1537"]],[21,22,["G2316"]]]},{"k":30606,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G4151"]],[3,4,["G3739"]],[4,5,["G3670"]],[5,6,["G3361"]],[6,8,["G2424"]],[8,9,["G5547"]],[9,11,["G2064"]],[11,12,["G1722"]],[12,14,["G4561"]],[14,15,["G2076"]],[15,16,["G3756"]],[16,17,["G1537"]],[17,18,["G2316"]],[18,19,["G2532"]],[19,20,["G5124"]],[20,21,["G2076"]],[21,22,["G3588"]],[22,25,["G500"]],[25,26,["G3739"]],[26,29,["G191"]],[29,30,["G3754"]],[30,33,["G2064"]],[33,34,["G2532"]],[34,36,["G3568"]],[36,37,["G2235"]],[37,38,["G2076"]],[38,40,["G1722"]],[40,41,["G3588"]],[41,42,["G2889"]]]},{"k":30607,"v":[[0,1,["G5210"]],[1,2,["G2075"]],[2,3,["G1537"]],[3,4,["G2316"]],[4,6,["G5040"]],[6,7,["G2532"]],[7,9,["G3528"]],[9,10,["G846"]],[10,11,["G3754"]],[11,12,["G3187"]],[12,13,["G2076"]],[13,14,["G3588"]],[14,17,["G1722"]],[17,18,["G5213"]],[18,19,["G2228"]],[19,20,["G3588"]],[20,23,["G1722"]],[23,24,["G3588"]],[24,25,["G2889"]]]},{"k":30608,"v":[[0,1,["G846"]],[1,2,["G1526"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G2889"]],[5,6,["G1223","G5124"]],[6,7,["G2980"]],[7,9,["G1537"]],[9,10,["G3588"]],[10,11,["G2889"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G2889"]],[14,15,["G191"]],[15,16,["G846"]]]},{"k":30609,"v":[[0,1,["G2249"]],[1,2,["G2070"]],[2,3,["G1537"]],[3,4,["G2316"]],[4,7,["G1097"]],[7,8,["G2316"]],[8,9,["G191"]],[9,10,["G2257"]],[10,12,["G3739"]],[12,13,["G2076"]],[13,14,["G3756"]],[14,15,["G1537"]],[15,16,["G2316"]],[16,17,["G191"]],[17,18,["G3756"]],[18,19,["G2257"]],[19,20,["G1537","G5127"]],[20,21,["G1097"]],[21,23,["G3588"]],[23,24,["G4151"]],[24,26,["G225"]],[26,27,["G2532"]],[27,28,["G3588"]],[28,29,["G4151"]],[29,31,["G4106"]]]},{"k":30610,"v":[[0,1,["G27"]],[1,4,["G25"]],[4,6,["G240"]],[6,7,["G3754"]],[7,8,["G26"]],[8,9,["G2076"]],[9,10,["G1537"]],[10,11,["G2316"]],[11,12,["G2532"]],[12,14,["G3956"]],[14,16,["G25"]],[16,18,["G1080"]],[18,19,["G1537"]],[19,20,["G2316"]],[20,21,["G2532"]],[21,22,["G1097"]],[22,23,["G2316"]]]},{"k":30611,"v":[[0,3,["G25"]],[3,4,["G3361"]],[4,5,["G1097"]],[5,6,["G3756"]],[6,7,["G2316"]],[7,8,["G3754"]],[8,9,["G2316"]],[9,10,["G2076"]],[10,11,["G26"]]]},{"k":30612,"v":[[0,1,["G1722"]],[1,2,["G5129"]],[2,4,["G5319"]],[4,5,["G3588"]],[5,6,["G26"]],[6,8,["G2316"]],[8,9,["G1722"]],[9,10,["G2254"]],[10,11,["G3754"]],[11,13,["G2316"]],[13,14,["G649"]],[14,15,["G848"]],[15,17,["G3439"]],[17,18,["G5207"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G2889"]],[21,22,["G2443"]],[22,25,["G2198"]],[25,26,["G1223"]],[26,27,["G846"]]]},{"k":30613,"v":[[0,1,["G1722","G5129"]],[1,2,["G2076"]],[2,3,["G26"]],[3,4,["G3756"]],[4,5,["G3754"]],[5,6,["G2249"]],[6,7,["G25"]],[7,8,["G2316"]],[8,9,["G235"]],[9,10,["G3754"]],[10,11,["G846"]],[11,12,["G25"]],[12,13,["G2248"]],[13,14,["G2532"]],[14,15,["G649"]],[15,16,["G848"]],[16,17,["G5207"]],[17,21,["G2434"]],[21,22,["G4012"]],[22,23,["G2257"]],[23,24,["G266"]]]},{"k":30614,"v":[[0,1,["G27"]],[1,2,["G1487"]],[2,3,["G2316"]],[3,4,["G3779"]],[4,5,["G25"]],[5,6,["G2248"]],[6,7,["G2249"]],[7,8,["G3784"]],[8,9,["G2532"]],[9,11,["G25"]],[11,13,["G240"]]]},{"k":30615,"v":[[0,2,["G3762"]],[2,4,["G2300"]],[4,5,["G2316"]],[5,8,["G4455"]],[8,9,["G1437"]],[9,11,["G25"]],[11,13,["G240"]],[13,14,["G2316"]],[14,15,["G3306"]],[15,16,["G1722"]],[16,17,["G2254"]],[17,18,["G2532"]],[18,19,["G848"]],[19,20,["G26"]],[20,21,["G2076"]],[21,22,["G5048"]],[22,23,["G1722"]],[23,24,["G2254"]]]},{"k":30616,"v":[[0,1,["G1722","G5129"]],[1,2,["G1097"]],[2,4,["G3754"]],[4,6,["G3306"]],[6,7,["G1722"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G1722"]],[11,12,["G2254"]],[12,13,["G3754"]],[13,16,["G1325"]],[16,17,["G2254"]],[17,18,["G1537"]],[18,19,["G848"]],[19,20,["G4151"]]]},{"k":30617,"v":[[0,1,["G2532"]],[1,2,["G2249"]],[2,4,["G2300"]],[4,5,["G2532"]],[5,7,["G3140"]],[7,8,["G3754"]],[8,9,["G3588"]],[9,10,["G3962"]],[10,11,["G649"]],[11,12,["G3588"]],[12,13,["G5207"]],[13,17,["G4990"]],[17,19,["G3588"]],[19,20,["G2889"]]]},{"k":30618,"v":[[0,1,["G3739","G302"]],[1,3,["G3670"]],[3,4,["G3754"]],[4,5,["G2424"]],[5,6,["G2076"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G2316"]],[10,11,["G2316"]],[11,12,["G3306"]],[12,13,["G1722"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G846"]],[16,17,["G1722"]],[17,18,["G2316"]]]},{"k":30619,"v":[[0,1,["G2532"]],[1,2,["G2249"]],[2,4,["G1097"]],[4,5,["G2532"]],[5,6,["G4100"]],[6,7,["G3588"]],[7,8,["G26"]],[8,9,["G3739"]],[9,10,["G2316"]],[10,11,["G2192"]],[11,12,["G1722"]],[12,13,["G2254"]],[13,14,["G2316"]],[14,15,["G2076"]],[15,16,["G26"]],[16,17,["G2532"]],[17,20,["G3306"]],[20,21,["G1722"]],[21,22,["G26"]],[22,23,["G3306"]],[23,24,["G1722"]],[24,25,["G2316"]],[25,26,["G2532"]],[26,27,["G2316"]],[27,28,["G1722"]],[28,29,["G846"]]]},{"k":30620,"v":[[0,1,["G1722","G5129"]],[1,2,["(G3326)"]],[2,3,["G2257"]],[3,4,["G26"]],[4,6,["G5048"]],[6,7,["G2443"]],[7,10,["G2192"]],[10,11,["G3954"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G2250"]],[14,16,["G2920"]],[16,17,["G3754"]],[17,18,["G2531"]],[18,19,["G1565"]],[19,20,["G2076"]],[20,21,["G2532"]],[21,22,["G2070"]],[22,23,["G2249"]],[23,24,["G1722"]],[24,25,["G5129"]],[25,26,["G2889"]]]},{"k":30621,"v":[[0,2,["G2076"]],[2,3,["G3756"]],[3,4,["G5401"]],[4,5,["G1722"]],[5,6,["G26"]],[6,7,["G235"]],[7,8,["G5046"]],[8,9,["G26"]],[9,10,["G906"]],[10,11,["G1854"]],[11,12,["G5401"]],[12,13,["G3754"]],[13,14,["G5401"]],[14,15,["G2192"]],[15,16,["G2851","(G1161)"]],[16,19,["G5399"]],[19,21,["G3756"]],[21,23,["G5048"]],[23,24,["G1722"]],[24,25,["G26"]]]},{"k":30622,"v":[[0,1,["G2249"]],[1,2,["G25"]],[2,3,["G846"]],[3,4,["G3754"]],[4,5,["G846"]],[5,6,["G4413"]],[6,7,["G25"]],[7,8,["G2248"]]]},{"k":30623,"v":[[0,1,["G1437"]],[1,3,["G5100"]],[3,4,["G2036"]],[4,6,["G25"]],[6,7,["G2316"]],[7,8,["G2532"]],[8,9,["G3404"]],[9,10,["G848"]],[10,11,["G80"]],[11,13,["G2076"]],[13,15,["G5583"]],[15,16,["G1063"]],[16,19,["G25"]],[19,20,["G3361"]],[20,21,["G848"]],[21,22,["G80"]],[22,23,["G3739"]],[23,26,["G3708"]],[26,27,["G4459"]],[27,28,["G1410"]],[28,30,["G25"]],[30,31,["G2316"]],[31,32,["G3739"]],[32,35,["G3756"]],[35,36,["G3708"]]]},{"k":30624,"v":[[0,1,["G2532"]],[1,2,["G5026"]],[2,3,["G1785"]],[3,4,["G2192"]],[4,6,["G575"]],[6,7,["G846"]],[7,8,["G2443"]],[8,11,["G25"]],[11,12,["G2316"]],[12,13,["G25"]],[13,14,["G848"]],[14,15,["G80"]],[15,16,["G2532"]]]},{"k":30625,"v":[[0,1,["G3956"]],[1,2,["G4100"]],[2,3,["G3754"]],[3,4,["G2424"]],[4,5,["G2076"]],[5,6,["G3588"]],[6,7,["G5547"]],[7,9,["G1080"]],[9,10,["G1537"]],[10,11,["G2316"]],[11,12,["G2532"]],[12,14,["G3956"]],[14,16,["G25"]],[16,19,["G1080"]],[19,20,["G25"]],[20,25,["G1080","G2532"]],[25,26,["G1537"]],[26,27,["G846"]]]},{"k":30626,"v":[[0,1,["G1722"]],[1,2,["G5129"]],[2,4,["G1097"]],[4,5,["G3754"]],[5,7,["G25"]],[7,8,["G3588"]],[8,9,["G5043"]],[9,11,["G2316"]],[11,12,["G3752"]],[12,14,["G25"]],[14,15,["G2316"]],[15,16,["G2532"]],[16,17,["G5083"]],[17,18,["G848"]],[18,19,["G1785"]]]},{"k":30627,"v":[[0,1,["G1063"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G26"]],[5,7,["G2316"]],[7,8,["G2443"]],[8,10,["G5083"]],[10,11,["G848"]],[11,12,["G1785"]],[12,13,["G2532"]],[13,14,["G848"]],[14,15,["G1785"]],[15,16,["G1526"]],[16,17,["G3756"]],[17,18,["G926"]]]},{"k":30628,"v":[[0,1,["G3754"]],[1,2,["G3956"]],[2,4,["G1080"]],[4,5,["G1537"]],[5,6,["G2316"]],[6,7,["G3528"]],[7,8,["G3588"]],[8,9,["G2889"]],[9,10,["G2532"]],[10,11,["G3778"]],[11,12,["G2076"]],[12,13,["G3588"]],[13,14,["G3529"]],[14,16,["G3528"]],[16,17,["G3588"]],[17,18,["G2889"]],[18,20,["G2257"]],[20,21,["G4102"]]]},{"k":30629,"v":[[0,1,["G5101"]],[1,2,["G2076"]],[2,5,["G3528"]],[5,6,["G3588"]],[6,7,["G2889"]],[7,8,["G1508"]],[8,11,["G4100"]],[11,12,["G3754"]],[12,13,["G2424"]],[13,14,["G2076"]],[14,15,["G3588"]],[15,16,["G5207"]],[16,18,["G2316"]]]},{"k":30630,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,5,["G2064"]],[5,6,["G1223"]],[6,7,["G5204"]],[7,8,["G2532"]],[8,9,["G129"]],[9,11,["G2424"]],[11,12,["G5547"]],[12,13,["G3756"]],[13,14,["G1722"]],[14,15,["G5204"]],[15,16,["G3440"]],[16,17,["G235"]],[17,18,["G1722"]],[18,19,["G5204"]],[19,20,["G2532"]],[20,21,["G129"]],[21,22,["G2532"]],[22,24,["G2076"]],[24,25,["G3588"]],[25,26,["G4151"]],[26,29,["G3140"]],[29,30,["G3754"]],[30,31,["G3588"]],[31,32,["G4151"]],[32,33,["G2076"]],[33,34,["G225"]]]},{"k":30631,"v":[[0,1,["G3754"]],[1,3,["G1526"]],[3,4,["G5140"]],[4,7,["G3140"]],[7,8,["G1722"]],[8,9,["G3772"]],[9,10,["G3588"]],[10,11,["G3962"]],[11,12,["G3588"]],[12,13,["G3056"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G40"]],[16,17,["G4151"]],[17,18,["G2532"]],[18,19,["G3778"]],[19,20,["G5140"]],[20,21,["G1526"]],[21,22,["G1520"]]]},{"k":30632,"v":[[0,1,["G2532"]],[1,3,["G1526"]],[3,4,["G5140"]],[4,7,["G3140"]],[7,8,["G1722"]],[8,9,["G1093"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G5204"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G129"]],[17,18,["G2532"]],[18,20,["G5140"]],[20,21,["G1526"]],[21,22,["G1519"]],[22,23,["G1520"]]]},{"k":30633,"v":[[0,1,["G1487"]],[1,3,["G2983"]],[3,4,["G3588"]],[4,5,["G3141"]],[5,7,["G444"]],[7,8,["G3588"]],[8,9,["G3141"]],[9,11,["G2316"]],[11,12,["G2076"]],[12,13,["G3187"]],[13,14,["G3754"]],[14,15,["G3778"]],[15,16,["G2076"]],[16,17,["G3588"]],[17,18,["G3141"]],[18,20,["G2316"]],[20,21,["G3739"]],[21,24,["G3140"]],[24,25,["G4012"]],[25,26,["G848"]],[26,27,["G5207"]]]},{"k":30634,"v":[[0,3,["G4100"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G5207"]],[6,8,["G2316"]],[8,9,["G2192"]],[9,10,["G3588"]],[10,11,["G3141"]],[11,12,["G1722"]],[12,13,["G1438"]],[13,16,["G4100"]],[16,17,["G3361"]],[17,18,["G2316"]],[18,20,["G4160"]],[20,21,["G846"]],[21,23,["G5583"]],[23,24,["G3754"]],[24,26,["G4100"]],[26,27,["G3756"]],[27,28,["G3588"]],[28,29,["G3141"]],[29,30,["G3739"]],[30,31,["G2316"]],[31,32,["G3140"]],[32,33,["G4012"]],[33,34,["G848"]],[34,35,["G5207"]]]},{"k":30635,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G3141"]],[5,6,["G3754"]],[6,7,["G2316"]],[7,9,["G1325"]],[9,11,["G2254"]],[11,12,["G166"]],[12,13,["G2222"]],[13,14,["G2532"]],[14,15,["G3778"]],[15,16,["G2222"]],[16,17,["G2076"]],[17,18,["G1722"]],[18,19,["G848"]],[19,20,["G5207"]]]},{"k":30636,"v":[[0,3,["G2192"]],[3,4,["G3588"]],[4,5,["G5207"]],[5,6,["G2192"]],[6,7,["G2222"]],[7,11,["G2192"]],[11,12,["G3361"]],[12,13,["G3588"]],[13,14,["G5207"]],[14,16,["G2316"]],[16,17,["G2192"]],[17,18,["G3756"]],[18,19,["G2222"]]]},{"k":30637,"v":[[0,2,["G5023"]],[2,5,["G1125"]],[5,7,["G5213"]],[7,9,["G4100"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G3686"]],[12,14,["G3588"]],[14,15,["G5207"]],[15,17,["G2316"]],[17,18,["G2443"]],[18,21,["G1492"]],[21,22,["G3754"]],[22,24,["G2192"]],[24,25,["G166"]],[25,26,["G2222"]],[26,27,["G2532"]],[27,28,["G2443"]],[28,31,["G4100"]],[31,32,["G1519"]],[32,33,["G3588"]],[33,34,["G3686"]],[34,36,["G3588"]],[36,37,["G5207"]],[37,39,["G2316"]]]},{"k":30638,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G3954"]],[5,6,["G3739"]],[6,8,["G2192"]],[8,9,["G4314"]],[9,10,["G846"]],[10,11,["G3754"]],[11,12,["G1437"]],[12,14,["G154"]],[14,16,["G5100"]],[16,17,["G2596"]],[17,19,["G848"]],[19,20,["G2307"]],[20,22,["G191"]],[22,23,["G2257"]]]},{"k":30639,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G1492"]],[4,5,["G3754"]],[5,7,["G191"]],[7,8,["G2257"]],[8,9,["G3739","G302"]],[9,11,["G154"]],[11,13,["G1492"]],[13,14,["G3754"]],[14,16,["G2192"]],[16,17,["G3588"]],[17,18,["G155"]],[18,19,["G3739"]],[19,21,["G154"]],[21,22,["G3844"]],[22,23,["G846"]]]},{"k":30640,"v":[[0,1,["G1437"]],[1,3,["G5100"]],[3,4,["G1492"]],[4,5,["G848"]],[5,6,["G80"]],[6,7,["G264"]],[7,9,["G266"]],[9,12,["G3361"]],[12,13,["G4314"]],[13,14,["G2288"]],[14,17,["G154"]],[17,18,["G2532"]],[18,21,["G1325"]],[21,22,["G846"]],[22,23,["G2222"]],[23,27,["G264"]],[27,28,["G3361"]],[28,29,["G4314"]],[29,30,["G2288"]],[30,32,["G2076"]],[32,34,["G266"]],[34,35,["G4314"]],[35,36,["G2288"]],[36,39,["G3756"]],[39,40,["G3004"]],[40,41,["G2443"]],[41,44,["G2065"]],[44,45,["G4012"]],[45,46,["G1565"]]]},{"k":30641,"v":[[0,1,["G3956"]],[1,2,["G93"]],[2,3,["G2076"]],[3,4,["G266"]],[4,5,["G2532"]],[5,7,["G2076"]],[7,9,["G266"]],[9,10,["G3756"]],[10,11,["G4314"]],[11,12,["G2288"]]]},{"k":30642,"v":[[0,2,["G1492"]],[2,3,["G3754"]],[3,4,["G3956"]],[4,6,["G1080"]],[6,7,["G1537"]],[7,8,["G2316"]],[8,9,["G264"]],[9,10,["G3756"]],[10,11,["G235"]],[11,15,["G1080"]],[15,16,["G1537"]],[16,17,["G2316"]],[17,18,["G5083"]],[18,19,["G1438"]],[19,20,["G2532"]],[20,23,["G4190"]],[23,24,["G680"]],[24,25,["G846"]],[25,26,["G3756"]]]},{"k":30643,"v":[[0,3,["G1492"]],[3,4,["G3754"]],[4,6,["G2070"]],[6,7,["G1537"]],[7,8,["G2316"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G3650"]],[11,12,["G2889"]],[12,13,["G2749"]],[13,14,["G1722"]],[14,15,["G4190"]]]},{"k":30644,"v":[[0,1,["G1161"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G3588"]],[5,6,["G5207"]],[6,8,["G2316"]],[8,10,["G2240"]],[10,11,["G2532"]],[11,13,["G1325"]],[13,14,["G2254"]],[14,16,["G1271"]],[16,17,["G2443"]],[17,20,["G1097"]],[20,24,["G228"]],[24,25,["G2532"]],[25,27,["G2070"]],[27,28,["G1722"]],[28,32,["G228"]],[32,34,["G1722"]],[34,35,["G848"]],[35,36,["G5207"]],[36,37,["G2424"]],[37,38,["G5547"]],[38,39,["G3778"]],[39,40,["G2076"]],[40,41,["G3588"]],[41,42,["G228"]],[42,43,["G2316"]],[43,44,["G2532"]],[44,45,["G166"]],[45,46,["G2222"]]]},{"k":30645,"v":[[0,2,["G5040"]],[2,3,["G5442"]],[3,4,["G1438"]],[4,5,["G575"]],[5,6,["G1497"]],[6,7,["G281"]]]},{"k":30646,"v":[[0,1,["G3588"]],[1,2,["G4245"]],[2,5,["G1588"]],[5,6,["G2959"]],[6,7,["G2532"]],[7,8,["G848"]],[8,9,["G5043"]],[9,10,["G3739"]],[10,11,["G1473"]],[11,12,["G25"]],[12,13,["G1722"]],[13,15,["G225"]],[15,16,["G2532"]],[16,17,["G3756"]],[17,18,["G1473"]],[18,19,["G3441"]],[19,20,["G235"]],[20,21,["G2532"]],[21,22,["G3956"]],[22,26,["G1097"]],[26,27,["G3588"]],[27,28,["G225"]]]},{"k":30647,"v":[[0,4,["G1223","G3588","G225"]],[4,6,["G3306"]],[6,7,["G1722"]],[7,8,["G2254"]],[8,9,["G2532"]],[9,11,["G2071"]],[11,12,["G3326"]],[12,13,["G2257"]],[13,15,["G1519","G165"]]]},{"k":30648,"v":[[0,1,["G5485"]],[1,2,["G2071"]],[2,3,["G3326"]],[3,4,["G5216"]],[4,5,["G1656"]],[5,7,["G1515"]],[7,8,["G3844"]],[8,9,["G2316"]],[9,11,["G3962"]],[11,12,["G2532"]],[12,13,["G3844"]],[13,15,["G2962"]],[15,16,["G2424"]],[16,17,["G5547"]],[17,18,["G3588"]],[18,19,["G5207"]],[19,21,["G3588"]],[21,22,["G3962"]],[22,23,["G1722"]],[23,24,["G225"]],[24,25,["G2532"]],[25,26,["G26"]]]},{"k":30649,"v":[[0,2,["G5463"]],[2,3,["G3029"]],[3,4,["G3754"]],[4,6,["G2147"]],[6,7,["G1537"]],[7,8,["G4675"]],[8,9,["G5043"]],[9,10,["G4043"]],[10,11,["G1722"]],[11,12,["G225"]],[12,13,["G2531"]],[13,16,["G2983"]],[16,18,["G1785"]],[18,19,["G3844"]],[19,20,["G3588"]],[20,21,["G3962"]]]},{"k":30650,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,4,["G2065"]],[4,5,["G4571"]],[5,6,["G2959"]],[6,7,["G3756"]],[7,9,["G5613"]],[9,11,["G1125"]],[11,13,["G2537"]],[13,14,["G1785"]],[14,16,["G4671"]],[16,17,["G235"]],[17,19,["G3739"]],[19,21,["G2192"]],[21,22,["G575"]],[22,24,["G746"]],[24,25,["G2443"]],[25,27,["G25"]],[27,29,["G240"]]]},{"k":30651,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,4,["G26"]],[4,5,["G2443"]],[5,7,["G4043"]],[7,8,["G2596"]],[8,9,["G848"]],[9,10,["G1785"]],[10,11,["G3778"]],[11,12,["G2076"]],[12,13,["G3588"]],[13,14,["G1785"]],[14,15,["(G2443)"]],[15,16,["G2531"]],[16,19,["G191"]],[19,20,["G575"]],[20,22,["G746"]],[22,25,["G4043"]],[25,26,["G1722"]],[26,27,["G846"]]]},{"k":30652,"v":[[0,1,["G3754"]],[1,2,["G4183"]],[2,3,["G4108"]],[3,5,["G1525"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G2889"]],[8,10,["G3670"]],[10,11,["G3361"]],[11,13,["G2424"]],[13,14,["G5547"]],[14,16,["G2064"]],[16,17,["G1722"]],[17,19,["G4561"]],[19,20,["G3778"]],[20,21,["G2076"]],[21,23,["G4108"]],[23,24,["G2532"]],[24,26,["G500"]]]},{"k":30653,"v":[[0,2,["G991"]],[2,3,["G1438"]],[3,4,["G2443"]],[4,6,["G622"]],[6,7,["G3361"]],[7,10,["G3739"]],[10,13,["G2038"]],[13,14,["G235"]],[14,17,["G618"]],[17,19,["G4134"]],[19,20,["G3408"]]]},{"k":30654,"v":[[0,1,["G3956"]],[1,2,["G3845"]],[2,3,["G2532"]],[3,4,["G3306"]],[4,5,["G3361"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G1322"]],[8,10,["G5547"]],[10,11,["G2192"]],[11,12,["G3756"]],[12,13,["G2316"]],[13,16,["G3306"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G1322"]],[19,21,["G5547"]],[21,22,["G3778"]],[22,23,["G2192"]],[23,24,["G2532"]],[24,25,["G3588"]],[25,26,["G3962"]],[26,27,["G2532"]],[27,28,["G3588"]],[28,29,["G5207"]]]},{"k":30655,"v":[[0,4,["G1536","G2064"]],[4,5,["G4314"]],[5,6,["G5209"]],[6,7,["G2532"]],[7,8,["G5342"]],[8,9,["G3756"]],[9,10,["G5026"]],[10,11,["G1322"]],[11,12,["G2983"]],[12,13,["G846"]],[13,14,["G3361"]],[14,15,["G1519"]],[15,17,["G3614"]],[17,18,["G2532","G3361"]],[18,19,["G3004"]],[19,20,["G846"]],[20,22,["G5463"]]]},{"k":30656,"v":[[0,1,["G1063"]],[1,4,["G3004"]],[4,5,["G846"]],[5,7,["G5463"]],[7,9,["G2841"]],[9,11,["G848"]],[11,12,["G4190"]],[12,13,["G2041"]]]},{"k":30657,"v":[[0,1,["G2192"]],[1,3,["G4183"]],[3,5,["G1125"]],[5,7,["G5213"]],[7,9,["G1014"]],[9,10,["G3756"]],[10,12,["G1223"]],[12,13,["G5489"]],[13,14,["G2532"]],[14,15,["G3188"]],[15,16,["G235"]],[16,18,["G1679"]],[18,20,["G2064"]],[20,21,["G4314"]],[21,22,["G5209"]],[22,23,["G2532"]],[23,24,["G2980"]],[24,27,["G4750","G4314","G4750"]],[27,28,["G2443"]],[28,29,["G2257"]],[29,30,["G5479"]],[30,32,["G5600"]],[32,33,["G4137"]]]},{"k":30658,"v":[[0,1,["G3588"]],[1,2,["G5043"]],[2,4,["G4675"]],[4,5,["G1588"]],[5,6,["G79"]],[6,7,["G782"]],[7,8,["G4571"]],[8,9,["G281"]]]},{"k":30659,"v":[[0,1,["G3588"]],[1,2,["G4245"]],[2,4,["G3588"]],[4,5,["G27"]],[5,6,["G1050"]],[6,7,["G3739"]],[7,8,["G1473"]],[8,9,["G25"]],[9,10,["G1722"]],[10,12,["G225"]]]},{"k":30660,"v":[[0,1,["G27"]],[1,3,["G2172"]],[3,4,["G4012"]],[4,6,["G3956"]],[6,8,["G4571"]],[8,10,["G2137"]],[10,11,["G2532"]],[11,14,["G5198"]],[14,16,["G2531"]],[16,17,["G4675"]],[17,18,["G5590"]],[18,19,["G2137"]]]},{"k":30661,"v":[[0,1,["G1063"]],[1,3,["G5463"]],[3,4,["G3029"]],[4,7,["G80"]],[7,8,["G2064"]],[8,9,["G2532"]],[9,10,["G3140"]],[10,12,["G3588"]],[12,13,["G225"]],[13,17,["G4675"]],[17,19,["G2531"]],[19,20,["G4771"]],[20,21,["G4043"]],[21,22,["G1722"]],[22,24,["G225"]]]},{"k":30662,"v":[[0,2,["G2192"]],[2,3,["G3756"]],[3,4,["G3186"]],[4,5,["G5479"]],[5,6,["(G5130)"]],[6,7,["G2443"]],[7,8,["G191"]],[8,10,["G1699"]],[10,11,["G5043"]],[11,12,["G4043"]],[12,13,["G1722"]],[13,14,["G225"]]]},{"k":30663,"v":[[0,1,["G27"]],[1,3,["G4160"]],[3,4,["G4103"]],[4,5,["G3739","G1437"]],[5,7,["G2038"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G80"]],[10,11,["G2532"]],[11,12,["G1519"]],[12,13,["G3581"]]]},{"k":30664,"v":[[0,1,["G3739"]],[1,4,["G3140"]],[4,6,["G4675"]],[6,7,["G26"]],[7,8,["G1799"]],[8,10,["G1577"]],[10,11,["G3739"]],[11,18,["G4311"]],[18,22,["G516","G2316"]],[22,25,["G4160"]],[25,26,["G2573"]]]},{"k":30665,"v":[[0,1,["G1063"]],[1,6,["G5228","G846","G3686"]],[6,9,["G1831"]],[9,10,["G2983"]],[10,11,["G3367"]],[11,12,["G575"]],[12,13,["G3588"]],[13,14,["G1484"]]]},{"k":30666,"v":[[0,1,["G2249"]],[1,2,["G3767"]],[2,3,["G3784"]],[3,5,["G618"]],[5,6,["G5108"]],[6,7,["G2443"]],[7,10,["G1096"]],[10,11,["G4904"]],[11,13,["G3588"]],[13,14,["G225"]]]},{"k":30667,"v":[[0,2,["G1125"]],[2,4,["G3588"]],[4,5,["G1577"]],[5,6,["G235"]],[6,7,["G1361"]],[7,13,["G5383"]],[13,15,["G848"]],[15,16,["G1926"]],[16,17,["G2248"]],[17,18,["G3756"]]]},{"k":30668,"v":[[0,1,["G1223","G5124"]],[1,2,["G1437"]],[2,4,["G2064"]],[4,7,["G5279"]],[7,8,["G846"]],[8,9,["G2041"]],[9,10,["G3739"]],[10,12,["G4160"]],[12,14,["G5396"]],[14,15,["G2248"]],[15,17,["G4190"]],[17,18,["G3056"]],[18,19,["G2532"]],[19,20,["G3361"]],[20,21,["G714"]],[21,22,["G1909","G5125"]],[22,23,["G3777"]],[23,25,["G848"]],[25,27,["G1926"]],[27,28,["G3588"]],[28,29,["G80"]],[29,30,["G2532"]],[30,31,["G2967"]],[31,34,["G1014"]],[34,35,["G2532"]],[35,36,["G1544"]],[36,39,["G1537"]],[39,40,["G3588"]],[40,41,["G1577"]]]},{"k":30669,"v":[[0,1,["G27"]],[1,2,["G3401"]],[2,3,["G3361"]],[3,7,["G2556"]],[7,8,["G235"]],[8,12,["G18"]],[12,16,["G15"]],[16,17,["G2076"]],[17,18,["G1537"]],[18,19,["G2316"]],[19,20,["G1161"]],[20,24,["G2554"]],[24,26,["G3756"]],[26,27,["G3708"]],[27,28,["G2316"]]]},{"k":30670,"v":[[0,1,["G1216"]],[1,4,["G3140"]],[4,5,["G5259"]],[5,6,["G3956"]],[6,8,["G2532"]],[8,9,["G5259"]],[9,10,["G3588"]],[10,11,["G225"]],[11,12,["G846"]],[12,13,["G1161"]],[13,14,["G2532"]],[14,15,["G2249"]],[15,18,["G3140"]],[18,19,["G2532"]],[19,21,["G1492"]],[21,22,["G3754"]],[22,23,["G2257"]],[23,24,["G3141"]],[24,25,["G2076"]],[25,26,["G227"]]]},{"k":30671,"v":[[0,2,["G2192"]],[2,4,["G4183"]],[4,6,["G1125"]],[6,7,["G235"]],[7,9,["G2309"]],[9,10,["G3756"]],[10,11,["G1223"]],[11,12,["G3188"]],[12,13,["G2532"]],[13,14,["G2563"]],[14,15,["G1125"]],[15,17,["G4671"]]]},{"k":30672,"v":[[0,1,["G1161"]],[1,3,["G1679"]],[3,6,["G2112"]],[6,7,["G1492"]],[7,8,["G4571"]],[8,9,["G2532"]],[9,12,["G2980"]],[12,15,["G4750","G4314","G4750"]],[15,16,["G1515"]],[16,19,["G4671"]],[19,21,["G5384"]],[21,22,["G782"]],[22,23,["G4571"]],[23,24,["G782"]],[24,25,["G3588"]],[25,26,["G5384"]],[26,27,["G2596"]],[27,28,["G3686"]]]},{"k":30673,"v":[[0,1,["G2455"]],[1,3,["G1401"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,7,["G1161"]],[7,8,["G80"]],[8,10,["G2385"]],[10,15,["G37"]],[15,16,["G1722"]],[16,17,["G2316"]],[17,19,["G3962"]],[19,20,["G2532"]],[20,21,["G5083"]],[21,23,["G2424"]],[23,24,["G5547"]],[24,26,["G2822"]]]},{"k":30674,"v":[[0,1,["G1656"]],[1,3,["G5213"]],[3,4,["G2532"]],[4,5,["G1515"]],[5,6,["G2532"]],[6,7,["G26"]],[7,9,["G4129"]]]},{"k":30675,"v":[[0,1,["G27"]],[1,4,["G4160"]],[4,5,["G3956"]],[5,6,["G4710"]],[6,8,["G1125"]],[8,10,["G5213"]],[10,11,["G4012"]],[11,12,["G3588"]],[12,13,["G2839"]],[13,14,["G4991"]],[14,17,["G2192","G318"]],[17,21,["G1125"]],[21,23,["G5213"]],[23,25,["G3870"]],[25,32,["G1864"]],[32,33,["G3588"]],[33,34,["G4102"]],[34,37,["G530"]],[37,38,["G3860"]],[38,40,["G3588"]],[40,41,["G40"]]]},{"k":30676,"v":[[0,1,["G1063"]],[1,4,["G5100"]],[4,5,["G444"]],[5,8,["G3921"]],[8,14,["G4270","G3819"]],[14,15,["G1519"]],[15,16,["G5124"]],[16,17,["G2917"]],[17,19,["G765"]],[19,20,["G3346"]],[20,21,["G3588"]],[21,22,["G5485"]],[22,24,["G2257"]],[24,25,["G2316"]],[25,26,["G1519"]],[26,27,["G766"]],[27,28,["G2532"]],[28,29,["G720"]],[29,30,["G3588"]],[30,31,["G3441"]],[31,32,["G1203"]],[32,33,["G2316"]],[33,34,["G2532"]],[34,35,["G2257"]],[35,36,["G2962"]],[36,37,["G2424"]],[37,38,["G5547"]]]},{"k":30677,"v":[[0,1,["(G1161)"]],[1,2,["G1014"]],[2,7,["G5279","G5209"]],[7,9,["G5209"]],[9,10,["G530"]],[10,11,["G1492"]],[11,12,["G5124"]],[12,14,["G3754"]],[14,15,["G3588"]],[15,16,["G2962"]],[16,18,["G4982"]],[18,20,["G2992"]],[20,22,["G1537"]],[22,24,["G1093"]],[24,26,["G125"]],[26,27,["G1208"]],[27,28,["G622"]],[28,31,["G4100"]],[31,32,["G3361"]]]},{"k":30678,"v":[[0,1,["G5037"]],[1,3,["G32"]],[3,5,["G5083"]],[5,6,["G3361"]],[6,7,["G1438"]],[7,9,["G746"]],[9,10,["G235"]],[10,11,["G620"]],[11,13,["G2398"]],[13,14,["G3613"]],[14,17,["G5083"]],[17,19,["G126"]],[19,20,["G1199"]],[20,21,["G5259"]],[21,22,["G2217"]],[22,23,["G1519"]],[23,25,["G2920"]],[25,28,["G3173"]],[28,29,["G2250"]]]},{"k":30679,"v":[[0,2,["G5613"]],[2,3,["G4670"]],[3,4,["G2532"]],[4,5,["G1116"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G4172"]],[8,9,["G4012"]],[9,10,["G846"]],[10,13,["G3664","G5158"]],[13,18,["G1608"]],[18,19,["G2532"]],[19,20,["G565"]],[20,21,["G3694"]],[21,22,["G2087"]],[22,23,["G4561"]],[23,26,["G4295"]],[26,29,["G1164"]],[29,30,["G5254"]],[30,32,["G1349"]],[32,34,["G166"]],[34,35,["G4442"]]]},{"k":30680,"v":[[0,1,["G3668"]],[1,2,["G2532"]],[2,3,["G3778"]],[3,5,["G1797"]],[5,6,["G3392"]],[6,8,["G4561","(G3303)"]],[8,9,["G114"]],[9,10,["G2963"]],[10,11,["G1161"]],[11,14,["G987"]],[14,15,["G1391"]]]},{"k":30681,"v":[[0,1,["G1161"]],[1,2,["G3413"]],[2,3,["G3588"]],[3,4,["G743"]],[4,5,["G3753"]],[5,6,["G1252"]],[6,8,["G3588"]],[8,9,["G1228"]],[9,11,["G1256"]],[11,12,["G4012"]],[12,13,["G3588"]],[13,14,["G4983"]],[14,16,["G3475"]],[16,17,["G5111"]],[17,18,["G3756"]],[18,20,["G2018"]],[20,23,["G988"]],[23,24,["G2920"]],[24,25,["G235"]],[25,26,["G2036"]],[26,28,["G2962"]],[28,29,["G2008"]],[29,30,["G4671"]]]},{"k":30682,"v":[[0,1,["G1161"]],[1,2,["G3778"]],[2,5,["G987"]],[5,7,["G3745"]],[7,9,["(G3303)"]],[9,10,["G1492"]],[10,11,["G3756"]],[11,12,["G1161"]],[12,13,["G3745"]],[13,15,["G1987"]],[15,16,["G5447"]],[16,17,["G5613"]],[17,18,["G249"]],[18,19,["G2226"]],[19,20,["G1722"]],[20,22,["G5125"]],[22,25,["G5351"]]]},{"k":30683,"v":[[0,1,["G3759"]],[1,3,["G846"]],[3,4,["G3754"]],[4,7,["G4198"]],[7,9,["G3588"]],[9,10,["G3598"]],[10,12,["G2535"]],[12,13,["G2532"]],[13,16,["G1632"]],[16,17,["G3588"]],[17,18,["G4106"]],[18,20,["G903"]],[20,22,["G3408"]],[22,23,["G2532"]],[23,24,["G622"]],[24,26,["G3588"]],[26,27,["G485"]],[27,29,["G2879"]]]},{"k":30684,"v":[[0,1,["G3778"]],[1,2,["G1526"]],[2,3,["G4694"]],[3,4,["G1722"]],[4,5,["G5216"]],[5,8,["G26"]],[8,12,["G4910"]],[12,13,["G5213"]],[13,14,["G4165"]],[14,15,["G1438"]],[15,17,["G870"]],[17,18,["G3507"]],[18,22,["G504"]],[22,24,["G4064"]],[24,25,["G5259"]],[25,26,["G417"]],[26,27,["G1186"]],[27,30,["G5352"]],[30,32,["G175"]],[32,33,["G1364"]],[33,34,["G599"]],[34,39,["G1610"]]]},{"k":30685,"v":[[0,1,["G66"]],[1,2,["G2949"]],[2,5,["G2281"]],[5,7,["G1890"]],[7,9,["G1438"]],[9,10,["G152"]],[10,11,["G4107"]],[11,12,["G792"]],[12,14,["G3739"]],[14,16,["G5083"]],[16,17,["G3588"]],[17,18,["G2217"]],[18,20,["G4655"]],[20,22,["G1519","G165"]]]},{"k":30686,"v":[[0,1,["G1161"]],[1,2,["G1802"]],[2,3,["G2532"]],[3,5,["G1442"]],[5,6,["G575"]],[6,7,["G76"]],[7,8,["G4395"]],[8,10,["G5125"]],[10,11,["G3004"]],[11,12,["G2400"]],[12,14,["G2962"]],[14,15,["G2064"]],[15,16,["G1722"]],[16,18,["G3461"]],[18,20,["G848"]],[20,21,["G40"]]]},{"k":30687,"v":[[0,2,["G4160"]],[2,3,["G2920"]],[3,4,["G2596"]],[4,5,["G3956"]],[5,6,["G2532"]],[6,8,["G1827"]],[8,9,["G3956"]],[9,12,["G765"]],[12,14,["G846"]],[14,15,["G4012"]],[15,16,["G3956"]],[16,17,["G848"]],[17,18,["G763"]],[18,19,["G2041"]],[19,20,["G3739"]],[20,24,["G764"]],[24,25,["G2532"]],[25,26,["G4012"]],[26,27,["G3956"]],[27,29,["G4642"]],[29,31,["G3739"]],[31,32,["G765"]],[32,33,["G268"]],[33,35,["G2980"]],[35,36,["G2596"]],[36,37,["G846"]]]},{"k":30688,"v":[[0,1,["G3778"]],[1,2,["G1526"]],[2,3,["G1113"]],[3,4,["G3202"]],[4,5,["G4198"]],[5,6,["G2596"]],[6,8,["G848"]],[8,9,["G1939"]],[9,10,["G2532"]],[10,11,["G848"]],[11,12,["G4750"]],[12,13,["G2980"]],[13,15,["G5246"]],[15,21,["G2296","G4383"]],[21,23,["G5484"]],[23,24,["G5622"]]]},{"k":30689,"v":[[0,1,["G1161"]],[1,2,["G27"]],[2,3,["G3415"]],[3,4,["G5210"]],[4,5,["G3588"]],[5,6,["G4487"]],[6,10,["G4280"]],[10,11,["G5259"]],[11,12,["G3588"]],[12,13,["G652"]],[13,15,["G2257"]],[15,16,["G2962"]],[16,17,["G2424"]],[17,18,["G5547"]]]},{"k":30690,"v":[[0,2,["G3754"]],[2,4,["G3004"]],[4,5,["G5213"]],[5,7,["(G3754)"]],[7,8,["G2071"]],[8,9,["G1703"]],[9,10,["G1722"]],[10,12,["G2078"]],[12,13,["G5550"]],[13,16,["G4198"]],[16,17,["G2596"]],[17,19,["G1438"]],[19,20,["G763"]],[20,21,["G1939"]]]},{"k":30691,"v":[[0,1,["G3778"]],[1,2,["G1526"]],[2,5,["G592"]],[5,6,["G1438"]],[6,7,["G5591"]],[7,8,["G2192"]],[8,9,["G3361"]],[9,11,["G4151"]]]},{"k":30692,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G27"]],[3,5,["G2026"]],[5,6,["G1438"]],[6,8,["G5216"]],[8,10,["G40"]],[10,11,["G4102"]],[11,12,["G4336"]],[12,13,["G1722"]],[13,15,["G40"]],[15,16,["G4151"]]]},{"k":30693,"v":[[0,1,["G5083"]],[1,2,["G1438"]],[2,3,["G1722"]],[3,5,["G26"]],[5,7,["G2316"]],[7,9,["G4327"]],[9,10,["G3588"]],[10,11,["G1656"]],[11,13,["G2257"]],[13,14,["G2962"]],[14,15,["G2424"]],[15,16,["G5547"]],[16,17,["G1519"]],[17,18,["G166"]],[18,19,["G2222"]]]},{"k":30694,"v":[[0,1,["G2532"]],[1,3,["G3739","G3303"]],[3,5,["G1653"]],[5,8,["G1252"]]]},{"k":30695,"v":[[0,1,["G1161"]],[1,2,["G3739"]],[2,3,["G4982"]],[3,4,["G1722"]],[4,5,["G5401"]],[5,6,["G726"]],[6,9,["G1537"]],[9,10,["G3588"]],[10,11,["G4442"]],[11,12,["G3404"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G5509"]],[15,16,["G4696"]],[16,17,["G575"]],[17,18,["G3588"]],[18,19,["G4561"]]]},{"k":30696,"v":[[0,1,["G1161"]],[1,6,["G1410"]],[6,8,["G5442"]],[8,9,["G5209"]],[9,11,["G679"]],[11,12,["G2532"]],[12,14,["G2476"]],[14,16,["G299"]],[16,19,["G2714"]],[19,21,["G848"]],[21,22,["G1391"]],[22,23,["G1722"]],[23,25,["G20"]]]},{"k":30697,"v":[[0,3,["G3441"]],[3,4,["G4680"]],[4,5,["G2316"]],[5,6,["G2257"]],[6,7,["G4990"]],[7,9,["G1391"]],[9,10,["G2532"]],[10,11,["G3172"]],[11,12,["G2904"]],[12,13,["G2532"]],[13,14,["G1849"]],[14,15,["G2532"]],[15,16,["G3568"]],[16,17,["G2532"]],[17,18,["G1519","G3956","G165"]],[18,19,["G281"]]]},{"k":30698,"v":[[0,2,["G602"]],[2,4,["G2424"]],[4,5,["G5547"]],[5,6,["G3739"]],[6,7,["G2316"]],[7,8,["G1325"]],[8,10,["G846"]],[10,12,["G1166"]],[12,14,["G848"]],[14,15,["G1401"]],[15,17,["G3739"]],[17,18,["G1163"]],[18,19,["G1722","G5034"]],[19,22,["G1096"]],[22,23,["G2532"]],[23,25,["G649"]],[25,27,["G4591"]],[27,29,["G1223"]],[29,30,["G848"]],[30,31,["G32"]],[31,33,["G848"]],[33,34,["G1401"]],[34,35,["G2491"]]]},{"k":30699,"v":[[0,1,["G3739"]],[1,3,["G3140"]],[3,5,["G3588"]],[5,6,["G3056"]],[6,8,["G2316"]],[8,9,["G2532"]],[9,11,["G3588"]],[11,12,["G3141"]],[12,14,["G2424"]],[14,15,["G5547"]],[15,16,["G5037"]],[16,20,["G3745"]],[20,22,["G1492"]]]},{"k":30700,"v":[[0,1,["G3107"]],[1,5,["G314"]],[5,6,["G2532"]],[6,9,["G191"]],[9,10,["G3588"]],[10,11,["G3056"]],[11,14,["G4394"]],[14,15,["G2532"]],[15,16,["G5083"]],[16,21,["G1125"]],[21,22,["G1722","G846"]],[22,23,["G1063"]],[23,24,["G3588"]],[24,25,["G2540"]],[25,28,["G1451"]]]},{"k":30701,"v":[[0,1,["G2491"]],[1,3,["G3588"]],[3,4,["G2033"]],[4,5,["G1577"]],[5,6,["G3588"]],[6,8,["G1722"]],[8,9,["G773"]],[9,10,["G5485"]],[10,13,["G5213"]],[13,14,["G2532"]],[14,15,["G1515"]],[15,16,["G575"]],[16,27,["G3801"]],[27,28,["G2532"]],[28,29,["G575"]],[29,30,["G3588"]],[30,31,["G2033"]],[31,32,["G4151"]],[32,33,["G3739"]],[33,34,["G2076"]],[34,35,["G1799"]],[35,36,["G848"]],[36,37,["G2362"]]]},{"k":30702,"v":[[0,1,["G2532"]],[1,2,["G575"]],[2,3,["G2424"]],[3,4,["G5547"]],[4,7,["G3588"]],[7,8,["G4103"]],[8,9,["G3144"]],[9,11,["G3588"]],[11,13,["G4416"]],[13,14,["G1537"]],[14,15,["G3588"]],[15,16,["G3498"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G758"]],[19,21,["G3588"]],[21,22,["G935"]],[22,24,["G3588"]],[24,25,["G1093"]],[25,29,["G25"]],[29,30,["G2248"]],[30,31,["G2532"]],[31,32,["G3068"]],[32,33,["G2248"]],[33,34,["G575"]],[34,35,["G2257"]],[35,36,["G266"]],[36,37,["G1722"]],[37,39,["G848"]],[39,40,["G129"]]]},{"k":30703,"v":[[0,1,["G2532"]],[1,3,["G4160"]],[3,4,["G2248"]],[4,5,["G935"]],[5,6,["G2532"]],[6,7,["G2409"]],[7,9,["G2316"]],[9,10,["G2532"]],[10,11,["G848"]],[11,12,["G3962"]],[12,14,["G846"]],[14,16,["G1391"]],[16,17,["G2532"]],[17,18,["G2904"]],[18,22,["G1519","G165","G165"]],[22,23,["G281"]]]},{"k":30704,"v":[[0,1,["G2400"]],[1,3,["G2064"]],[3,4,["G3326"]],[4,5,["G3507"]],[5,6,["G2532"]],[6,7,["G3956"]],[7,8,["G3788"]],[8,10,["G3700"]],[10,11,["G846"]],[11,12,["G2532"]],[12,15,["G3748"]],[15,16,["G1574"]],[16,17,["G846"]],[17,18,["G2532"]],[18,19,["G3956"]],[19,20,["G5443"]],[20,22,["G3588"]],[22,23,["G1093"]],[23,25,["G2875"]],[25,27,["G1909"]],[27,28,["G846"]],[28,30,["G3483"]],[30,31,["G281"]]]},{"k":30705,"v":[[0,1,["G1473"]],[1,2,["G1510","(G3588)"]],[2,3,["G1"]],[3,4,["G2532","(G3588)"]],[4,5,["G5598"]],[5,7,["G746"]],[7,8,["G2532"]],[8,10,["G5056"]],[10,11,["G3004"]],[11,12,["G3588"]],[12,13,["G2962"]],[13,23,["G3801"]],[23,24,["G3588"]],[24,25,["G3841"]]]},{"k":30706,"v":[[0,1,["G1473"]],[1,2,["G2491"]],[2,4,["G2532"]],[4,6,["G5216"]],[6,7,["G80"]],[7,8,["G2532"]],[8,9,["G4791"]],[9,10,["G1722"]],[10,11,["G2347"]],[11,12,["G2532"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G932"]],[15,16,["G2532"]],[16,17,["G5281"]],[17,19,["G2424"]],[19,20,["G5547"]],[20,21,["G1096"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G3520"]],[24,27,["G2564"]],[27,28,["G3963"]],[28,29,["G1223"]],[29,30,["G3588"]],[30,31,["G3056"]],[31,33,["G2316"]],[33,34,["G2532"]],[34,35,["G1223"]],[35,36,["G3588"]],[36,37,["G3141"]],[37,39,["G2424"]],[39,40,["G5547"]]]},{"k":30707,"v":[[0,2,["G1096"]],[2,3,["G1722"]],[3,5,["G4151"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G2960"]],[8,9,["G2250"]],[9,10,["G2532"]],[10,11,["G191"]],[11,12,["G3694"]],[12,13,["G3450"]],[13,15,["G3173"]],[15,16,["G5456"]],[16,17,["G5613"]],[17,20,["G4536"]]]},{"k":30708,"v":[[0,1,["G3004"]],[1,2,["G1473"]],[2,3,["G1510","(G3588)"]],[3,4,["G1"]],[4,5,["G2532","(G3588)"]],[5,6,["G5598"]],[6,7,["G3588"]],[7,8,["G4413"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G2078"]],[11,12,["G2532"]],[12,13,["G3739"]],[13,15,["G991"]],[15,16,["G1125"]],[16,17,["G1519"]],[17,19,["G975"]],[19,20,["G2532"]],[20,21,["G3992"]],[21,24,["G3588"]],[24,25,["G2033"]],[25,26,["G1577"]],[26,27,["G3588"]],[27,29,["G1722"]],[29,30,["G773"]],[30,31,["G1519"]],[31,32,["G2181"]],[32,33,["G2532"]],[33,34,["G1519"]],[34,35,["G4667"]],[35,36,["G2532"]],[36,37,["G1519"]],[37,38,["G4010"]],[38,39,["G2532"]],[39,40,["G1519"]],[40,41,["G2363"]],[41,42,["G2532"]],[42,43,["G1519"]],[43,44,["G4554"]],[44,45,["G2532"]],[45,46,["G1519"]],[46,47,["G5359"]],[47,48,["G2532"]],[48,49,["G1519"]],[49,50,["G2993"]]]},{"k":30709,"v":[[0,1,["G2532"]],[1,3,["G1994"]],[3,5,["G991"]],[5,6,["G3588"]],[6,7,["G5456"]],[7,8,["G3748"]],[8,9,["G2980"]],[9,10,["G3326"]],[10,11,["G1700"]],[11,12,["G2532"]],[12,14,["G1994"]],[14,16,["G1492"]],[16,17,["G2033"]],[17,18,["G5552"]],[18,19,["G3087"]]]},{"k":30710,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,4,["G3319"]],[4,6,["G3588"]],[6,7,["G2033"]],[7,8,["G3087"]],[8,11,["G3664"]],[11,13,["G5207"]],[13,15,["G444"]],[15,17,["G1746"]],[17,23,["G4158"]],[23,24,["G2532"]],[24,26,["G4024","(G4314)"]],[26,27,["G3588"]],[27,28,["G3149"]],[28,31,["G5552"]],[31,32,["G2223"]]]},{"k":30711,"v":[[0,0,["(G1161)"]],[0,1,["G848"]],[1,2,["G2776"]],[2,3,["G2532"]],[3,5,["G2359"]],[5,7,["G3022"]],[7,8,["G5616"]],[8,9,["G2053"]],[9,11,["G3022"]],[11,12,["G5613"]],[12,13,["G5510"]],[13,14,["G2532"]],[14,15,["G848"]],[15,16,["G3788"]],[16,18,["G5613"]],[18,20,["G5395"]],[20,22,["G4442"]]]},{"k":30712,"v":[[0,1,["G2532"]],[1,2,["G848"]],[2,3,["G4228"]],[3,5,["G3664"]],[5,7,["G5474"]],[7,8,["G5613"]],[8,11,["G4448"]],[11,12,["G1722"]],[12,14,["G2575"]],[14,15,["G2532"]],[15,16,["G848"]],[16,17,["G5456"]],[17,18,["G5613"]],[18,20,["G5456"]],[20,22,["G4183"]],[22,23,["G5204"]]]},{"k":30713,"v":[[0,1,["G2532"]],[1,3,["G2192"]],[3,4,["G1722"]],[4,5,["G848"]],[5,6,["G1188"]],[6,7,["G5495"]],[7,8,["G2033"]],[8,9,["G792"]],[9,10,["G2532"]],[10,12,["G1537"]],[12,13,["G848"]],[13,14,["G4750"]],[14,15,["G1607"]],[15,17,["G3691"]],[17,18,["G1366"]],[18,19,["G4501"]],[19,20,["G2532"]],[20,21,["G848"]],[21,22,["G3799"]],[22,24,["G5613"]],[24,25,["G3588"]],[25,26,["G2246"]],[26,27,["G5316"]],[27,28,["G1722"]],[28,29,["G848"]],[29,30,["G1411"]]]},{"k":30714,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,4,["G1492"]],[4,5,["G846"]],[5,7,["G4098"]],[7,8,["G4314"]],[8,9,["G848"]],[9,10,["G4228"]],[10,11,["G5613"]],[11,12,["G3498"]],[12,13,["G2532"]],[13,15,["G2007"]],[15,16,["G848"]],[16,17,["G1188"]],[17,18,["G5495"]],[18,19,["G1909"]],[19,20,["G1691"]],[20,21,["G3004"]],[21,23,["G3427"]],[23,24,["G5399"]],[24,25,["G3361"]],[25,26,["G1473"]],[26,27,["G1510"]],[27,28,["G3588"]],[28,29,["G4413"]],[29,30,["G2532"]],[30,31,["G3588"]],[31,32,["G2078"]]]},{"k":30715,"v":[[0,0,["(G2532)"]],[0,5,["G2198"]],[5,6,["G2532"]],[6,7,["G1096"]],[7,8,["G3498"]],[8,9,["G2532"]],[9,10,["G2400"]],[10,12,["G1510"]],[12,13,["G2198"]],[13,15,["G1519","G165","G165"]],[15,16,["G281"]],[16,17,["G2532"]],[17,18,["G2192"]],[18,19,["G3588"]],[19,20,["G2807"]],[20,22,["G86"]],[22,23,["G2532"]],[23,25,["G2288"]]]},{"k":30716,"v":[[0,1,["G1125"]],[1,4,["G3739"]],[4,7,["G1492"]],[7,8,["G2532"]],[8,11,["G3739"]],[11,12,["G1526"]],[12,13,["G2532"]],[13,16,["G3739"]],[16,17,["G3195"]],[17,18,["G1096"]],[18,19,["G3326","G5023"]]]},{"k":30717,"v":[[0,1,["G3588"]],[1,2,["G3466"]],[2,4,["G3588"]],[4,5,["G2033"]],[5,6,["G792"]],[6,7,["G3739"]],[7,9,["G1492"]],[9,10,["G1909"]],[10,11,["G3450"]],[11,13,["G1188"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G2033"]],[16,17,["G5552"]],[17,18,["G3087"]],[18,19,["G3588"]],[19,20,["G2033"]],[20,21,["G792"]],[21,22,["G1526"]],[22,24,["G32"]],[24,26,["G3588"]],[26,27,["G2033"]],[27,28,["G1577"]],[28,29,["G2532"]],[29,30,["G3588"]],[30,31,["G2033"]],[31,32,["G3087"]],[32,33,["G3739"]],[33,35,["G1492"]],[35,36,["G1526"]],[36,38,["G2033"]],[38,39,["G1577"]]]},{"k":30718,"v":[[0,2,["G3588"]],[2,3,["G32"]],[3,5,["G3588"]],[5,6,["G1577"]],[6,8,["G2179"]],[8,9,["G1125"]],[9,11,["G3592"]],[11,12,["G3004"]],[12,15,["G2902"]],[15,16,["G3588"]],[16,17,["G2033"]],[17,18,["G792"]],[18,19,["G1722"]],[19,20,["G848"]],[20,22,["G1188"]],[22,24,["G4043"]],[24,25,["G1722"]],[25,27,["G3319"]],[27,29,["G3588"]],[29,30,["G2033"]],[30,31,["G5552"]],[31,32,["G3087"]]]},{"k":30719,"v":[[0,2,["G1492"]],[2,3,["G4675"]],[3,4,["G2041"]],[4,5,["G2532"]],[5,6,["G4675"]],[6,7,["G2873"]],[7,8,["G2532"]],[8,9,["G4675"]],[9,10,["G5281"]],[10,11,["G2532"]],[11,12,["G3754"]],[12,14,["G1410"]],[14,15,["G3756"]],[15,16,["G941"]],[16,20,["G2556"]],[20,21,["G2532"]],[21,24,["G3985"]],[24,27,["G5335"]],[27,29,["G1511"]],[29,30,["G652"]],[30,31,["G2532"]],[31,32,["G1526"]],[32,33,["G3756"]],[33,34,["G2532"]],[34,36,["G2147"]],[36,37,["G846"]],[37,38,["G5571"]]]},{"k":30720,"v":[[0,1,["G2532"]],[1,3,["G941"]],[3,4,["G2532"]],[4,5,["G2192"]],[5,6,["G5281"]],[6,7,["G2532"]],[7,11,["G1223","G3450","G3686"]],[11,13,["G2872"]],[13,14,["G2532"]],[14,16,["G3756"]],[16,17,["G2577"]]]},{"k":30721,"v":[[0,1,["G235"]],[1,3,["G2192"]],[3,5,["G2596"]],[5,6,["G4675"]],[6,7,["G3754"]],[7,10,["G863"]],[10,11,["G4675"]],[11,12,["G4413"]],[12,13,["G26"]]]},{"k":30722,"v":[[0,1,["G3421"]],[1,2,["G3767"]],[2,4,["G4159"]],[4,7,["G1601"]],[7,8,["G2532"]],[8,9,["G3340"]],[9,10,["G2532"]],[10,11,["G4160"]],[11,12,["G3588"]],[12,13,["G4413"]],[13,14,["G2041"]],[14,16,["G1490"]],[16,19,["G2064"]],[19,21,["G4671"]],[21,22,["G5034"]],[22,23,["G2532"]],[23,25,["G2795"]],[25,26,["G4675"]],[26,27,["G3087"]],[27,29,["G1537"]],[29,30,["G848"]],[30,31,["G5117"]],[31,32,["G3362"]],[32,34,["G3340"]]]},{"k":30723,"v":[[0,1,["G235"]],[1,2,["G5124"]],[2,4,["G2192"]],[4,5,["G3754"]],[5,7,["G3404"]],[7,8,["G3588"]],[8,9,["G2041"]],[9,11,["G3588"]],[11,12,["G3531"]],[12,13,["G3739"]],[13,15,["G2504"]],[15,16,["G3404"]]]},{"k":30724,"v":[[0,3,["G2192"]],[3,5,["G3775"]],[5,8,["G191"]],[8,9,["G5101"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G3004"]],[12,14,["G3588"]],[14,15,["G1577"]],[15,17,["G846"]],[17,19,["G3528"]],[19,22,["G1325"]],[22,24,["G5315"]],[24,25,["G1537"]],[25,26,["G3588"]],[26,27,["G3586"]],[27,29,["G2222"]],[29,30,["G3739"]],[30,31,["G2076"]],[31,32,["G1722"]],[32,34,["G3319"]],[34,36,["G3588"]],[36,37,["G3857"]],[37,39,["G2316"]]]},{"k":30725,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G32"]],[4,6,["G3588"]],[6,7,["G1577"]],[7,9,["G4668"]],[9,10,["G1125"]],[10,12,["G3592"]],[12,13,["G3004"]],[13,14,["G3588"]],[14,15,["G4413"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G2078"]],[18,19,["G3739"]],[19,20,["G1096"]],[20,21,["G3498"]],[21,22,["G2532"]],[22,24,["G2198"]]]},{"k":30726,"v":[[0,2,["G1492"]],[2,3,["G4675"]],[3,4,["G2041"]],[4,5,["G2532"]],[5,6,["G2347"]],[6,7,["G2532"]],[7,8,["G4432"]],[8,9,["G1161"]],[9,11,["G1488"]],[11,12,["G4145"]],[12,13,["G2532"]],[13,16,["G3588"]],[16,17,["G988"]],[17,21,["G3004"]],[21,22,["G1438"]],[22,23,["G1511"]],[23,24,["G2453"]],[24,25,["G2532"]],[25,26,["G1526"]],[26,27,["G3756"]],[27,28,["G235"]],[28,31,["G4864"]],[31,33,["G4567"]]]},{"k":30727,"v":[[0,1,["G5399"]],[1,2,["G3367"]],[2,6,["G3739"]],[6,8,["G3195"]],[8,9,["G3958"]],[9,10,["G2400"]],[10,11,["G3588"]],[11,12,["G1228"]],[12,13,["G3195"]],[13,14,["G906"]],[14,16,["G1537"]],[16,17,["G5216"]],[17,18,["G1519"]],[18,19,["G5438"]],[19,20,["G2443"]],[20,24,["G3985"]],[24,25,["G2532"]],[25,28,["G2192"]],[28,29,["G2347"]],[29,30,["G1176"]],[30,31,["G2250"]],[31,32,["G1096"]],[32,34,["G4103"]],[34,35,["G891"]],[35,36,["G2288"]],[36,37,["G2532"]],[37,40,["G1325"]],[40,41,["G4671"]],[41,43,["G4735"]],[43,45,["G2222"]]]},{"k":30728,"v":[[0,3,["G2192"]],[3,5,["G3775"]],[5,8,["G191"]],[8,9,["G5101"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G3004"]],[12,14,["G3588"]],[14,15,["G1577"]],[15,18,["G3528"]],[18,20,["G3364"]],[20,22,["G91"]],[22,23,["G1537"]],[23,24,["G3588"]],[24,25,["G1208"]],[25,26,["G2288"]]]},{"k":30729,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G32"]],[4,6,["G3588"]],[6,7,["G1577"]],[7,8,["G1722"]],[8,9,["G4010"]],[9,10,["G1125"]],[10,12,["G3592"]],[12,13,["G3004"]],[13,16,["G2192"]],[16,17,["G3588"]],[17,18,["G3691"]],[18,19,["G4501"]],[19,22,["G1366"]]]},{"k":30730,"v":[[0,2,["G1492"]],[2,3,["G4675"]],[3,4,["G2041"]],[4,5,["G2532"]],[5,6,["G4226"]],[6,8,["G2730"]],[8,10,["G3699"]],[10,11,["G4567"]],[11,12,["G2362"]],[12,14,["G2532"]],[14,17,["G2902"]],[17,18,["G3450"]],[18,19,["G3686"]],[19,20,["G2532"]],[20,22,["G3756"]],[22,23,["G720"]],[23,24,["G3450"]],[24,25,["G4102"]],[25,26,["G2532"]],[26,27,["G1722"]],[27,29,["G2250"]],[29,30,["G1722","G3739"]],[30,31,["G493"]],[31,33,["G3450"]],[33,34,["G4103"]],[34,35,["G3144"]],[35,36,["G3739"]],[36,38,["G615"]],[38,39,["G3844"]],[39,40,["G5213"]],[40,41,["G3699"]],[41,42,["G4567"]],[42,43,["G2730"]]]},{"k":30731,"v":[[0,1,["G235"]],[1,3,["G2192"]],[3,6,["G3641"]],[6,7,["G2596"]],[7,8,["G4675"]],[8,9,["G3754"]],[9,11,["G2192"]],[11,12,["G1563"]],[12,15,["G2902"]],[15,16,["G3588"]],[16,17,["G1322"]],[17,19,["G903"]],[19,20,["G3739"]],[20,21,["G1321"]],[21,22,["G904"]],[22,24,["G906"]],[24,26,["G4625"]],[26,27,["G1799"]],[27,28,["G3588"]],[28,29,["G5207"]],[29,31,["G2474"]],[31,33,["G5315"]],[33,37,["G1494"]],[37,38,["G2532"]],[38,41,["G4203"]]]},{"k":30732,"v":[[0,1,["G3779"]],[1,2,["G2192"]],[2,3,["G4771"]],[3,4,["G2532"]],[4,7,["G2902"]],[7,8,["G3588"]],[8,9,["G1322"]],[9,11,["G3588"]],[11,12,["G3531"]],[12,14,["G3739"]],[14,16,["G3404"]]]},{"k":30733,"v":[[0,1,["G3340"]],[1,3,["G1490"]],[3,6,["G2064"]],[6,8,["G4671"]],[8,9,["G5035"]],[9,10,["G2532"]],[10,12,["G4170"]],[12,13,["G3326"]],[13,14,["G846"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G4501"]],[17,19,["G3450"]],[19,20,["G4750"]]]},{"k":30734,"v":[[0,3,["G2192"]],[3,5,["G3775"]],[5,8,["G191"]],[8,9,["G5101"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G3004"]],[12,14,["G3588"]],[14,15,["G1577"]],[15,17,["G846"]],[17,19,["G3528"]],[19,22,["G1325"]],[22,24,["G5315"]],[24,25,["G575"]],[25,26,["G3588"]],[26,27,["G2928","(G3588)"]],[27,28,["G3131"]],[28,29,["G2532"]],[29,31,["G1325"]],[31,32,["G846"]],[32,34,["G3022"]],[34,35,["G5586"]],[35,36,["G2532"]],[36,37,["G1909"]],[37,38,["G3588"]],[38,39,["G5586"]],[39,41,["G2537"]],[41,42,["G3686"]],[42,43,["G1125"]],[43,44,["G3739"]],[44,46,["G3762"]],[46,47,["G1097"]],[47,48,["G1508"]],[48,51,["G2983"]],[51,52,[]]]},{"k":30735,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G32"]],[4,6,["G3588"]],[6,7,["G1577"]],[7,8,["G1722"]],[8,9,["G2363"]],[9,10,["G1125"]],[10,12,["G3592"]],[12,13,["G3004"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,17,["G2316"]],[17,19,["G2192"]],[19,20,["G848"]],[20,21,["G3788"]],[21,23,["G5613"]],[23,25,["G5395"]],[25,27,["G4442"]],[27,28,["G2532"]],[28,29,["G848"]],[29,30,["G4228"]],[30,32,["G3664"]],[32,34,["G5474"]]]},{"k":30736,"v":[[0,2,["G1492"]],[2,3,["G4675"]],[3,4,["G2041"]],[4,5,["G2532"]],[5,6,["G26"]],[6,7,["G2532"]],[7,8,["G1248"]],[8,9,["G2532"]],[9,10,["G4102"]],[10,11,["G2532"]],[11,12,["G4675"]],[12,13,["G5281"]],[13,14,["G2532"]],[14,15,["G4675"]],[15,16,["G2041"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G2078"]],[19,22,["G4119"]],[22,24,["G3588"]],[24,25,["G4413"]]]},{"k":30737,"v":[[0,1,["G235"]],[1,3,["G2192"]],[3,6,["G3641"]],[6,7,["G2596"]],[7,8,["G4675"]],[8,9,["G3754"]],[9,11,["G1439"]],[11,13,["G1135"]],[13,14,["G2403"]],[14,16,["G3004"]],[16,17,["G1438"]],[17,19,["G4398"]],[19,21,["G1321"]],[21,22,["G2532"]],[22,24,["G4105"]],[24,25,["G1699"]],[25,26,["G1401"]],[26,29,["G4203"]],[29,30,["G2532"]],[30,32,["G5315"]],[32,36,["G1494"]]]},{"k":30738,"v":[[0,1,["G2532"]],[1,3,["G1325"]],[3,4,["G846"]],[4,5,["G5550"]],[5,6,["G2443"]],[6,7,["G3340"]],[7,8,["G1537"]],[8,9,["G848"]],[9,10,["G4202"]],[10,11,["G2532"]],[11,13,["G3340"]],[13,14,["G3756"]]]},{"k":30739,"v":[[0,1,["G2400"]],[1,2,["G1473"]],[2,4,["G906"]],[4,5,["G846"]],[5,6,["G1519"]],[6,8,["G2825"]],[8,9,["G2532"]],[9,13,["G3431"]],[13,14,["G3326"]],[14,15,["G846"]],[15,16,["G1519"]],[16,17,["G3173"]],[17,18,["G2347"]],[18,19,["G3362"]],[19,21,["G3340"]],[21,22,["G1537"]],[22,23,["G848"]],[23,24,["G2041"]]]},{"k":30740,"v":[[0,1,["G2532"]],[1,4,["G615"]],[4,5,["G848"]],[5,6,["G5043"]],[6,7,["G1722"]],[7,8,["G2288"]],[8,9,["G2532"]],[9,10,["G3956"]],[10,11,["G3588"]],[11,12,["G1577"]],[12,14,["G1097"]],[14,15,["G3754"]],[15,16,["G1473"]],[16,17,["G1510"]],[17,20,["G2045"]],[20,22,["G3510"]],[22,23,["G2532"]],[23,24,["G2588"]],[24,25,["G2532"]],[25,28,["G1325"]],[28,31,["G1538"]],[31,33,["G5213"]],[33,34,["G2596"]],[34,36,["G5216"]],[36,37,["G2041"]]]},{"k":30741,"v":[[0,1,["G1161"]],[1,3,["G5213"]],[3,5,["G3004"]],[5,6,["G2532"]],[6,9,["G3062"]],[9,10,["G1722"]],[10,11,["G2363"]],[11,14,["G3745"]],[14,15,["G2192"]],[15,16,["G3756"]],[16,17,["G5026"]],[17,18,["G1322"]],[18,19,["G2532"]],[19,20,["G3748"]],[20,22,["G3756"]],[22,23,["G1097"]],[23,24,["G3588"]],[24,25,["G899"]],[25,27,["G4567"]],[27,28,["G5613"]],[28,30,["G3004"]],[30,33,["G906"]],[33,34,["G1909"]],[34,35,["G5209"]],[35,36,["G3756"]],[36,37,["G243"]],[37,38,["G922"]]]},{"k":30742,"v":[[0,1,["G4133"]],[1,3,["G3739"]],[3,5,["G2192"]],[5,8,["G2902"]],[8,9,["G891","G3757"]],[9,11,["G2240","G302"]]]},{"k":30743,"v":[[0,1,["G2532"]],[1,4,["G3528"]],[4,5,["G2532"]],[5,6,["G5083"]],[6,7,["G3450"]],[7,8,["G2041"]],[8,9,["G891"]],[9,11,["G5056"]],[11,13,["G846"]],[13,16,["G1325"]],[16,17,["G1849"]],[17,18,["G1909"]],[18,19,["G3588"]],[19,20,["G1484"]]]},{"k":30744,"v":[[0,1,["G2532"]],[1,4,["G4165"]],[4,5,["G846"]],[5,6,["G1722"]],[6,8,["G4464"]],[8,10,["G4603"]],[10,11,["G5613"]],[11,12,["G3588"]],[12,13,["G4632"]],[13,16,["G2764"]],[16,22,["G4937"]],[22,24,["G5613"]],[24,25,["G2504"]],[25,26,["G2983"]],[26,27,["G3844"]],[27,28,["G3450"]],[28,29,["G3962"]]]},{"k":30745,"v":[[0,1,["G2532"]],[1,4,["G1325"]],[4,5,["G846"]],[5,6,["G3588"]],[6,7,["G4407"]],[7,8,["G792"]]]},{"k":30746,"v":[[0,3,["G2192"]],[3,5,["G3775"]],[5,8,["G191"]],[8,9,["G5101"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G3004"]],[12,14,["G3588"]],[14,15,["G1577"]]]},{"k":30747,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G32"]],[4,6,["G3588"]],[6,7,["G1577"]],[7,8,["G1722"]],[8,9,["G4554"]],[9,10,["G1125"]],[10,12,["G3592"]],[12,13,["G3004"]],[13,16,["G2192"]],[16,17,["G3588"]],[17,18,["G2033"]],[18,19,["G4151"]],[19,21,["G2316"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G2033"]],[24,25,["G792"]],[25,27,["G1492"]],[27,28,["G4675"]],[28,29,["G2041"]],[29,30,["G3754"]],[30,32,["G2192"]],[32,34,["G3686"]],[34,35,["G3754"]],[35,37,["G2198"]],[37,38,["G2532"]],[38,39,["G1488"]],[39,40,["G3498"]]]},{"k":30748,"v":[[0,1,["G1096"]],[1,2,["G1127"]],[2,3,["G2532"]],[3,4,["G4741"]],[4,8,["G3062"]],[8,9,["G3739"]],[9,11,["G3195"]],[11,13,["G599"]],[13,14,["G1063"]],[14,17,["G3756"]],[17,18,["G2147"]],[18,19,["G4675"]],[19,20,["G2041"]],[20,21,["G4137"]],[21,22,["G1799"]],[22,23,["G2316"]]]},{"k":30749,"v":[[0,1,["G3421"]],[1,2,["G3767"]],[2,3,["G4459"]],[3,6,["G2983"]],[6,7,["G2532"]],[7,8,["G191"]],[8,9,["G2532"]],[9,11,["G5083"]],[11,12,["G2532"]],[12,13,["G3340"]],[13,14,["G1437"]],[14,15,["G3767"]],[15,18,["G3361"]],[18,19,["G1127"]],[19,22,["G2240"]],[22,23,["G1909"]],[23,24,["G4571"]],[24,25,["G5613"]],[25,27,["G2812"]],[27,28,["G2532"]],[28,31,["G3364"]],[31,32,["G1097"]],[32,33,["G4169"]],[33,34,["G5610"]],[34,37,["G2240"]],[37,38,["G1909"]],[38,39,["G4571"]]]},{"k":30750,"v":[[0,2,["G2192"]],[2,4,["G3641"]],[4,5,["G3686"]],[5,6,["G2532"]],[6,7,["G1722"]],[7,8,["G4554"]],[8,9,["G3739"]],[9,11,["G3756"]],[11,12,["G3435"]],[12,13,["G848"]],[13,14,["G2440"]],[14,15,["G2532"]],[15,18,["G4043"]],[18,19,["G3326"]],[19,20,["G1700"]],[20,21,["G1722"]],[21,22,["G3022"]],[22,23,["G3754"]],[23,25,["G1526"]],[25,26,["G514"]]]},{"k":30751,"v":[[0,3,["G3528"]],[3,5,["G3778"]],[5,8,["G4016"]],[8,9,["G1722"]],[9,10,["G3022"]],[10,11,["G2440"]],[11,12,["G2532"]],[12,15,["G3364"]],[15,17,["G1813"]],[17,18,["G848"]],[18,19,["G3686"]],[19,20,["G1537"]],[20,22,["G3588"]],[22,23,["G976"]],[23,25,["G2222"]],[25,26,["G2532"]],[26,29,["G1843"]],[29,30,["G848"]],[30,31,["G3686"]],[31,32,["G1799"]],[32,33,["G3450"]],[33,34,["G3962"]],[34,35,["G2532"]],[35,36,["G1799"]],[36,37,["G848"]],[37,38,["G32"]]]},{"k":30752,"v":[[0,3,["G2192"]],[3,5,["G3775"]],[5,8,["G191"]],[8,9,["G5101"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G3004"]],[12,14,["G3588"]],[14,15,["G1577"]]]},{"k":30753,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G32"]],[4,6,["G3588"]],[6,7,["G1577"]],[7,8,["G1722"]],[8,9,["G5359"]],[9,10,["G1125"]],[10,12,["G3592"]],[12,13,["G3004"]],[13,17,["G40"]],[17,21,["G228"]],[21,24,["G2192"]],[24,25,["G3588"]],[25,26,["G2807"]],[26,28,["G1138"]],[28,31,["G455"]],[31,32,["G2532"]],[32,34,["G3762"]],[34,35,["G2808"]],[35,36,["G2532"]],[36,37,["G2808"]],[37,38,["G2532"]],[38,40,["G3762"]],[40,41,["G455"]]]},{"k":30754,"v":[[0,2,["G1492"]],[2,3,["G4675"]],[3,4,["G2041"]],[4,5,["G2400"]],[5,8,["G1325"]],[8,9,["G1799"]],[9,10,["G4675"]],[10,12,["G455"]],[12,13,["G2374"]],[13,14,["G2532"]],[14,16,["G3762"]],[16,17,["G1410"]],[17,18,["G2808"]],[18,19,["G846"]],[19,20,["G3754"]],[20,22,["G2192"]],[22,24,["G3398"]],[24,25,["G1411"]],[25,26,["G2532"]],[26,28,["G5083"]],[28,29,["G3450"]],[29,30,["G3056"]],[30,31,["G2532"]],[31,33,["G3756"]],[33,34,["G720"]],[34,35,["G3450"]],[35,36,["G3686"]]]},{"k":30755,"v":[[0,1,["G2400"]],[1,4,["G1325"]],[4,5,["G3588"]],[5,6,["G1537"]],[6,7,["G3588"]],[7,8,["G4864"]],[8,10,["G4567"]],[10,12,["G3004"]],[12,13,["G1438"]],[13,14,["G1511"]],[14,15,["G2453"]],[15,16,["G2532"]],[16,17,["G1526"]],[17,18,["G3756"]],[18,19,["G235"]],[19,21,["G5574"]],[21,22,["G2400"]],[22,25,["G4160"]],[25,26,["G846"]],[26,27,["G2443"]],[27,28,["G2240"]],[28,29,["G2532"]],[29,30,["G4352"]],[30,31,["G1799"]],[31,32,["G4675"]],[32,33,["G4228"]],[33,34,["G2532"]],[34,36,["G1097"]],[36,37,["G3754"]],[37,38,["G1473"]],[38,40,["G25"]],[40,41,["G4571"]]]},{"k":30756,"v":[[0,1,["G3754"]],[1,4,["G5083"]],[4,5,["G3588"]],[5,6,["G3056"]],[6,8,["G3450"]],[8,9,["G5281"]],[9,11,["G2504"]],[11,13,["G5083"]],[13,14,["G4571"]],[14,15,["G1537"]],[15,16,["G3588"]],[16,17,["G5610"]],[17,19,["G3986"]],[19,21,["G3195"]],[21,22,["G2064"]],[22,23,["G1909"]],[23,24,["G3650"]],[24,25,["G3588"]],[25,26,["G3625"]],[26,28,["G3985"]],[28,29,["G3588"]],[29,31,["G2730"]],[31,32,["G1909"]],[32,33,["G3588"]],[33,34,["G1093"]]]},{"k":30757,"v":[[0,1,["G2400"]],[1,3,["G2064"]],[3,4,["G5035"]],[4,7,["G2902"]],[7,8,["G3739"]],[8,10,["G2192"]],[10,11,["G2443"]],[11,13,["G3367"]],[13,14,["G2983"]],[14,15,["G4675"]],[15,16,["G4735"]]]},{"k":30758,"v":[[0,1,["G846"]],[1,3,["G3528"]],[3,6,["G4160"]],[6,8,["G4769"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G3485"]],[11,13,["G3450"]],[13,14,["G2316"]],[14,15,["G2532"]],[15,18,["G1831"]],[18,19,["G3364"]],[19,20,["G2089"]],[20,21,["G1854"]],[21,22,["G2532"]],[22,25,["G1125"]],[25,26,["G1909"]],[26,27,["G846"]],[27,28,["G3588"]],[28,29,["G3686"]],[29,31,["G3450"]],[31,32,["G2316"]],[32,33,["G2532"]],[33,34,["G3588"]],[34,35,["G3686"]],[35,37,["G3588"]],[37,38,["G4172"]],[38,40,["G3450"]],[40,41,["G2316"]],[41,44,["G2537"]],[44,45,["G2419"]],[45,46,["G3739"]],[46,48,["G2597"]],[48,50,["G1537"]],[50,51,["G3772"]],[51,52,["G575"]],[52,53,["G3450"]],[53,54,["G2316"]],[54,55,["G2532"]],[55,61,["G3450"]],[61,62,["G2537"]],[62,63,["G3686"]]]},{"k":30759,"v":[[0,3,["G2192"]],[3,5,["G3775"]],[5,8,["G191"]],[8,9,["G5101"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G3004"]],[12,14,["G3588"]],[14,15,["G1577"]]]},{"k":30760,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G32"]],[4,6,["G3588"]],[6,7,["G1577"]],[7,10,["G2994"]],[10,11,["G1125"]],[11,13,["G3592"]],[13,14,["G3004"]],[14,15,["G3588"]],[15,16,["G281"]],[16,17,["G3588"]],[17,18,["G4103"]],[18,19,["G2532"]],[19,20,["G228"]],[20,21,["G3144"]],[21,22,["G3588"]],[22,23,["G746"]],[23,25,["G3588"]],[25,26,["G2937"]],[26,28,["G2316"]]]},{"k":30761,"v":[[0,2,["G1492"]],[2,3,["G4675"]],[3,4,["G2041"]],[4,5,["G3754"]],[5,7,["G1488"]],[7,8,["G3777"]],[8,9,["G5593"]],[9,10,["G3777"]],[10,11,["G2200"]],[11,13,["G3785"]],[13,15,["G1498"]],[15,16,["G5593"]],[16,17,["G2228"]],[17,18,["G2200"]]]},{"k":30762,"v":[[0,2,["G3779"]],[2,3,["G3754"]],[3,5,["G1488"]],[5,6,["G5513"]],[6,7,["G2532"]],[7,8,["G3777"]],[8,9,["G5593"]],[9,10,["G3777"]],[10,11,["G2200"]],[11,13,["G3195"]],[13,14,["G1692"]],[14,15,["G4571"]],[15,17,["G1537"]],[17,18,["G3450"]],[18,19,["G4750"]]]},{"k":30763,"v":[[0,1,["G3754"]],[1,3,["G3004"]],[3,5,["G1510"]],[5,6,["G4145"]],[6,7,["G2532"]],[7,10,["G4147"]],[10,11,["G2532"]],[11,12,["G2192"]],[12,13,["G5532"]],[13,15,["G3762"]],[15,16,["G2532"]],[16,17,["G1492"]],[17,18,["G3756"]],[18,19,["G3754"]],[19,20,["G4771"]],[20,21,["G1488"]],[21,22,["G5005"]],[22,23,["G2532"]],[23,24,["G1652"]],[24,25,["G2532"]],[25,26,["G4434"]],[26,27,["G2532"]],[27,28,["G5185"]],[28,29,["G2532"]],[29,30,["G1131"]]]},{"k":30764,"v":[[0,2,["G4823"]],[2,3,["G4671"]],[3,5,["G59"]],[5,6,["G3844"]],[6,7,["G1700"]],[7,8,["G5553"]],[8,9,["G4448"]],[9,10,["G1537"]],[10,12,["G4442"]],[12,13,["G2443"]],[13,17,["G4147"]],[17,18,["G2532"]],[18,19,["G3022"]],[19,20,["G2440"]],[20,21,["G2443"]],[21,25,["G4016"]],[25,26,["G2532"]],[26,28,["G3588"]],[28,29,["G152"]],[29,31,["G4675"]],[31,32,["G1132"]],[32,34,["G3361"]],[34,35,["G5319"]],[35,36,["G2532"]],[36,37,["G1472"]],[37,38,["G4675"]],[38,39,["G3788"]],[39,41,["G2854"]],[41,42,["G2443"]],[42,45,["G991"]]]},{"k":30765,"v":[[0,3,["G3745","(G1437)"]],[3,4,["G1473"]],[4,5,["G5368"]],[5,7,["G1651"]],[7,8,["G2532"]],[8,9,["G3811"]],[9,11,["G2206"]],[11,12,["G3767"]],[12,13,["G2532"]],[13,14,["G3340"]]]},{"k":30766,"v":[[0,1,["G2400"]],[1,3,["G2476"]],[3,4,["G1909"]],[4,5,["G3588"]],[5,6,["G2374"]],[6,7,["G2532"]],[7,8,["G2925"]],[8,9,["G1437"]],[9,11,["G5100"]],[11,12,["G191"]],[12,13,["G3450"]],[13,14,["G5456"]],[14,15,["G2532"]],[15,16,["G455"]],[16,17,["G3588"]],[17,18,["G2374"]],[18,22,["G1525"]],[22,23,["G4314"]],[23,24,["G846"]],[24,25,["G2532"]],[25,27,["G1172"]],[27,28,["G3326"]],[28,29,["G846"]],[29,30,["G2532"]],[30,31,["G846"]],[31,32,["G3326"]],[32,33,["G1700"]]]},{"k":30767,"v":[[0,2,["G846"]],[2,4,["G3528"]],[4,7,["G1325"]],[7,9,["G2523"]],[9,10,["G3326"]],[10,11,["G1700"]],[11,12,["G1722"]],[12,13,["G3450"]],[13,14,["G2362"]],[14,16,["G5613"]],[16,18,["G2504"]],[18,19,["G3528"]],[19,20,["G2532"]],[20,23,["G2523"]],[23,24,["G3326"]],[24,25,["G3450"]],[25,26,["G3962"]],[26,27,["G1722"]],[27,28,["G848"]],[28,29,["G2362"]]]},{"k":30768,"v":[[0,3,["G2192"]],[3,5,["G3775"]],[5,8,["G191"]],[8,9,["G5101"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G3004"]],[12,14,["G3588"]],[14,15,["G1577"]]]},{"k":30769,"v":[[0,1,["G3326"]],[1,2,["G5023"]],[2,4,["G1492"]],[4,5,["G2532"]],[5,6,["G2400"]],[6,8,["G2374"]],[8,10,["G455"]],[10,11,["G1722"]],[11,12,["G3772"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G4413"]],[15,16,["G5456"]],[16,17,["G3739"]],[17,19,["G191"]],[19,23,["G5613"]],[23,26,["G4536"]],[26,27,["G2980"]],[27,28,["G3326"]],[28,29,["G1700"]],[29,31,["G3004"]],[31,33,["G305"]],[33,34,["G5602"]],[34,35,["G2532"]],[35,38,["G1166"]],[38,39,["G4671"]],[39,41,["G3739"]],[41,42,["G1163"]],[42,43,["G1096"]],[43,44,["G3326","G5023"]]]},{"k":30770,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G1096"]],[4,5,["G1722"]],[5,7,["G4151"]],[7,8,["G2532"]],[8,9,["G2400"]],[9,11,["G2362"]],[11,13,["G2749"]],[13,14,["G1722"]],[14,15,["G3772"]],[15,16,["G2532"]],[16,18,["G2521"]],[18,19,["G1909"]],[19,20,["G3588"]],[20,21,["G2362"]]]},{"k":30771,"v":[[0,1,["G2532"]],[1,4,["G2521"]],[4,5,["G2258"]],[5,8,["G3706"]],[8,9,["G3664"]],[9,11,["G2393"]],[11,12,["G2532"]],[12,14,["G4555"]],[14,15,["G3037"]],[15,16,["G2532"]],[16,20,["G2463"]],[20,22,["G2943"]],[22,23,["G3588"]],[23,24,["G2362"]],[24,26,["G3706"]],[26,28,["G3664"]],[28,30,["G4664"]]]},{"k":30772,"v":[[0,1,["G2532"]],[1,3,["G2943"]],[3,4,["G3588"]],[4,5,["G2362"]],[5,9,["G5064","G2532","G1501"]],[9,10,["G2362"]],[10,11,["G2532"]],[11,12,["G1909"]],[12,13,["G3588"]],[13,14,["G2362"]],[14,16,["G1492"]],[16,19,["G5064","G2532","G1501"]],[19,20,["G4245"]],[20,21,["G2521"]],[21,22,["G4016"]],[22,23,["G1722"]],[23,24,["G3022"]],[24,25,["G2440"]],[25,26,["G2532"]],[26,28,["G2192"]],[28,29,["G1909"]],[29,30,["G848"]],[30,31,["G2776"]],[31,32,["G4735"]],[32,34,["G5552"]]]},{"k":30773,"v":[[0,1,["G2532"]],[1,2,["G1537"]],[2,4,["G3588"]],[4,5,["G2362"]],[5,6,["G1607"]],[6,7,["G796"]],[7,8,["G2532"]],[8,9,["G1027"]],[9,10,["G2532"]],[10,11,["G5456"]],[11,12,["G2532"]],[12,15,["G2033"]],[15,16,["G2985"]],[16,18,["G4442"]],[18,19,["G2545"]],[19,20,["G1799"]],[20,21,["G3588"]],[21,22,["G2362"]],[22,23,["G3739"]],[23,24,["G1526"]],[24,25,["G3588"]],[25,26,["G2033"]],[26,27,["G4151"]],[27,29,["G2316"]]]},{"k":30774,"v":[[0,1,["G2532"]],[1,2,["G1799"]],[2,3,["G3588"]],[3,4,["G2362"]],[4,8,["G2281"]],[8,10,["G5193"]],[10,12,["G3664"]],[12,13,["G2930"]],[13,14,["G2532"]],[14,15,["G1722"]],[15,17,["G3319"]],[17,19,["G3588"]],[19,20,["G2362"]],[20,21,["G2532"]],[21,23,["G2945"]],[23,24,["G3588"]],[24,25,["G2362"]],[25,27,["G5064"]],[27,28,["G2226"]],[28,29,["G1073"]],[29,31,["G3788"]],[31,32,["G1715"]],[32,33,["G2532"]],[33,34,["G3693"]]]},{"k":30775,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4413"]],[3,4,["G2226"]],[4,6,["G3664"]],[6,8,["G3023"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G1208"]],[11,12,["G2226"]],[12,13,["G3664"]],[13,15,["G3448"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G5154"]],[18,19,["G2226"]],[19,20,["G2192"]],[20,22,["G4383"]],[22,23,["G5613"]],[23,25,["G444"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G5067"]],[28,29,["G2226"]],[29,31,["G3664"]],[31,33,["G4072"]],[33,34,["G105"]]]},{"k":30776,"v":[[0,1,["G2532"]],[1,3,["G5064"]],[3,4,["G2226"]],[4,5,["G2192"]],[5,8,["G303","G1520","G2596","G1438"]],[8,9,["G1803"]],[9,10,["G4420"]],[10,11,["G2943"]],[11,13,["G2532"]],[13,16,["G1073"]],[16,18,["G3788"]],[18,19,["G2081"]],[19,20,["G2532"]],[20,22,["G2192","G372"]],[22,23,["G3756"]],[23,24,["G2250"]],[24,25,["G2532"]],[25,26,["G3571"]],[26,27,["G3004"]],[27,28,["G40"]],[28,29,["G40"]],[29,30,["G40"]],[30,31,["G2962"]],[31,32,["G2316"]],[32,33,["G3841"]],[33,41,["G3801"]]]},{"k":30777,"v":[[0,1,["G2532"]],[1,2,["G3752"]],[2,4,["G2226"]],[4,5,["G1325"]],[5,6,["G1391"]],[6,7,["G2532"]],[7,8,["G5092"]],[8,9,["G2532"]],[9,10,["G2169"]],[10,14,["G2521"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,17,["G2362"]],[17,19,["G2198"]],[19,23,["G1519","G165","G165"]]]},{"k":30778,"v":[[0,1,["G3588"]],[1,4,["G5064","G2532","G1501"]],[4,5,["G4245"]],[5,7,["G4098"]],[7,8,["G1799"]],[8,11,["G2521"]],[11,12,["G1909"]],[12,13,["G3588"]],[13,14,["G2362"]],[14,15,["G2532"]],[15,16,["G4352"]],[16,19,["G2198"]],[19,23,["G1519","G165","G165"]],[23,24,["G2532"]],[24,25,["G906"]],[25,26,["G848"]],[26,27,["G4735"]],[27,28,["G1799"]],[28,29,["G3588"]],[29,30,["G2362"]],[30,31,["G3004"]]]},{"k":30779,"v":[[0,2,["G1488"]],[2,3,["G514"]],[3,5,["G2962"]],[5,7,["G2983"]],[7,8,["G1391"]],[8,9,["G2532"]],[9,10,["G5092"]],[10,11,["G2532"]],[11,12,["G1411"]],[12,13,["G3754"]],[13,14,["G4771"]],[14,16,["G2936"]],[16,18,["G3956"]],[18,19,["G2532"]],[19,20,["G1223"]],[20,21,["G4675"]],[21,22,["G2307"]],[22,24,["G1526"]],[24,25,["G2532"]],[25,27,["G2936"]]]},{"k":30780,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G1909"]],[4,5,["G3588"]],[5,7,["G1188"]],[7,11,["G2521"]],[11,12,["G1909"]],[12,13,["G3588"]],[13,14,["G2362"]],[14,16,["G975"]],[16,17,["G1125"]],[17,18,["G2081"]],[18,19,["G2532"]],[19,22,["G3693"]],[22,23,["G2696"]],[23,25,["G2033"]],[25,26,["G4973"]]]},{"k":30781,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,5,["G2478"]],[5,6,["G32"]],[6,7,["G2784"]],[7,10,["G3173"]],[10,11,["G5456"]],[11,12,["G5101"]],[12,13,["G2076"]],[13,14,["G514"]],[14,16,["G455"]],[16,17,["G3588"]],[17,18,["G975"]],[18,19,["G2532"]],[19,21,["G3089"]],[21,22,["G3588"]],[22,23,["G4973"]],[23,24,["G848"]]]},{"k":30782,"v":[[0,1,["G2532"]],[1,3,["G3762"]],[3,4,["G1722"]],[4,5,["G3772"]],[5,6,["G3761"]],[6,7,["G1909"]],[7,8,["G1093"]],[8,9,["G3761"]],[9,10,["G5270"]],[10,11,["G3588"]],[11,12,["G1093"]],[12,14,["G1410"]],[14,16,["G455"]],[16,17,["G3588"]],[17,18,["G975"]],[18,19,["G3761"]],[19,21,["G991"]],[21,22,["G846"]]]},{"k":30783,"v":[[0,1,["G2532"]],[1,2,["G1473"]],[2,3,["G2799"]],[3,4,["G4183"]],[4,5,["G3754"]],[5,7,["G3762"]],[7,9,["G2147"]],[9,10,["G514"]],[10,12,["G455"]],[12,13,["G2532"]],[13,15,["G314"]],[15,16,["G3588"]],[16,17,["G975"]],[17,18,["G3777"]],[18,20,["G991"]],[20,21,["G846"]]]},{"k":30784,"v":[[0,1,["G2532"]],[1,2,["G1520"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G4245"]],[5,6,["G3004"]],[6,8,["G3427"]],[8,9,["G2799"]],[9,10,["G3361"]],[10,11,["G2400"]],[11,12,["G3588"]],[12,13,["G3023","(G5607)"]],[13,14,["G1537"]],[14,15,["G3588"]],[15,16,["G5443"]],[16,18,["G2455"]],[18,19,["G3588"]],[19,20,["G4491"]],[20,22,["G1138"]],[22,24,["G3528"]],[24,26,["G455"]],[26,27,["G3588"]],[27,28,["G975"]],[28,29,["G2532"]],[29,31,["G3089"]],[31,32,["G3588"]],[32,33,["G2033"]],[33,34,["G4973"]],[34,35,["G848"]]]},{"k":30785,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G2532"]],[4,5,["G2400"]],[5,6,["G1722"]],[6,8,["G3319"]],[8,10,["G3588"]],[10,11,["G2362"]],[11,12,["G2532"]],[12,14,["G3588"]],[14,15,["G5064"]],[15,16,["G2226"]],[16,17,["G2532"]],[17,18,["G1722"]],[18,20,["G3319"]],[20,22,["G3588"]],[22,23,["G4245"]],[23,24,["G2476"]],[24,26,["G721"]],[26,27,["G5613"]],[27,31,["G4969"]],[31,32,["G2192"]],[32,33,["G2033"]],[33,34,["G2768"]],[34,35,["G2532"]],[35,36,["G2033"]],[36,37,["G3788"]],[37,38,["G3739"]],[38,39,["G1526"]],[39,40,["G3588"]],[40,41,["G2033"]],[41,42,["G4151"]],[42,44,["G2316"]],[44,46,["G649"]],[46,47,["G1519"]],[47,48,["G3956"]],[48,49,["G3588"]],[49,50,["G1093"]]]},{"k":30786,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G2532"]],[4,5,["G2983"]],[5,6,["G3588"]],[6,7,["G975"]],[7,9,["G1537"]],[9,10,["G3588"]],[10,12,["G1188"]],[12,16,["G2521"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G2362"]]]},{"k":30787,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G2983"]],[5,6,["G3588"]],[6,7,["G975"]],[7,8,["G3588"]],[8,9,["G5064"]],[9,10,["G2226"]],[10,11,["G2532"]],[11,14,["G1501","G5064"]],[14,15,["G4245"]],[15,17,["G4098"]],[17,18,["G1799"]],[18,19,["G3588"]],[19,20,["G721"]],[20,21,["G2192"]],[21,25,["G1538"]],[25,26,["G2788"]],[26,27,["G2532"]],[27,28,["G5552"]],[28,29,["G5357"]],[29,30,["G1073"]],[30,32,["G2368"]],[32,33,["G3739"]],[33,34,["G1526"]],[34,35,["G3588"]],[35,36,["G4335"]],[36,38,["G40"]]]},{"k":30788,"v":[[0,1,["G2532"]],[1,3,["G103"]],[3,5,["G2537"]],[5,6,["G5603"]],[6,7,["G3004"]],[7,9,["G1488"]],[9,10,["G514"]],[10,12,["G2983"]],[12,13,["G3588"]],[13,14,["G975"]],[14,15,["G2532"]],[15,17,["G455"]],[17,18,["G3588"]],[18,19,["G4973"]],[19,20,["G848"]],[20,21,["G3754"]],[21,24,["G4969"]],[24,25,["G2532"]],[25,27,["G59"]],[27,28,["G2248"]],[28,30,["G2316"]],[30,31,["G1722"]],[31,32,["G4675"]],[32,33,["G129"]],[33,35,["G1537"]],[35,36,["G3956"]],[36,37,["G5443"]],[37,38,["G2532"]],[38,39,["G1100"]],[39,40,["G2532"]],[40,41,["G2992"]],[41,42,["G2532"]],[42,43,["G1484"]]]},{"k":30789,"v":[[0,1,["G2532"]],[1,3,["G4160"]],[3,4,["G2248"]],[4,6,["G2257"]],[6,7,["G2316"]],[7,8,["G935"]],[8,9,["G2532"]],[9,10,["G2409"]],[10,11,["G2532"]],[11,14,["G936"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,17,["G1093"]]]},{"k":30790,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G2532"]],[4,6,["G191"]],[6,8,["G5456"]],[8,10,["G4183"]],[10,11,["G32"]],[11,13,["G2943"]],[13,14,["G3588"]],[14,15,["G2362"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G2226"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G4245"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G706"]],[24,26,["G846"]],[26,27,["G2258"]],[27,32,["G3461","G3461"]],[32,33,["G2532"]],[33,36,["G5505","G5505"]]]},{"k":30791,"v":[[0,1,["G3004"]],[1,4,["G3173"]],[4,5,["G5456"]],[5,6,["G514"]],[6,7,["G2076"]],[7,8,["G3588"]],[8,9,["G721"]],[9,12,["G4969"]],[12,14,["G2983"]],[14,15,["G1411"]],[15,16,["G2532"]],[16,17,["G4149"]],[17,18,["G2532"]],[18,19,["G4678"]],[19,20,["G2532"]],[20,21,["G2479"]],[21,22,["G2532"]],[22,23,["G5092"]],[23,24,["G2532"]],[24,25,["G1391"]],[25,26,["G2532"]],[26,27,["G2129"]]]},{"k":30792,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G2938"]],[3,4,["G3739"]],[4,5,["G2076"]],[5,6,["G1722"]],[6,7,["G3772"]],[7,8,["G2532"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G1093"]],[11,12,["G2532"]],[12,13,["G5270"]],[13,14,["G3588"]],[14,15,["G1093"]],[15,16,["G2532"]],[16,18,["G3739"]],[18,19,["G2076"]],[19,20,["G1909"]],[20,21,["G3588"]],[21,22,["G2281"]],[22,23,["G2532"]],[23,24,["G3956"]],[24,25,["G3588"]],[25,27,["G1722"]],[27,28,["G846"]],[28,29,["G191"]],[29,31,["G3004"]],[31,32,["G2129"]],[32,33,["G2532"]],[33,34,["G5092"]],[34,35,["G2532"]],[35,36,["G1391"]],[36,37,["G2532"]],[37,38,["G2904"]],[38,43,["G2521"]],[43,44,["G1909"]],[44,45,["G3588"]],[45,46,["G2362"]],[46,47,["G2532"]],[47,49,["G3588"]],[49,50,["G721"]],[50,54,["G1519","G165","G165"]]]},{"k":30793,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5064"]],[3,4,["G2226"]],[4,5,["G3004"]],[5,6,["G281"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,11,["G1501","G5064"]],[11,12,["G4245"]],[12,14,["G4098"]],[14,15,["G2532"]],[15,16,["G4352"]],[16,19,["G2198"]],[19,23,["G1519","G165","G165"]]]},{"k":30794,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3753"]],[4,5,["G3588"]],[5,6,["G721"]],[6,7,["G455"]],[7,8,["G3391"]],[8,9,["G1537"]],[9,10,["G3588"]],[10,11,["G4973"]],[11,12,["G2532"]],[12,14,["G191"]],[14,17,["G5613"]],[17,19,["G5456"]],[19,21,["G1027"]],[21,22,["G1520"]],[22,23,["G1537"]],[23,24,["G3588"]],[24,25,["G5064"]],[25,26,["G2226"]],[26,27,["G3004"]],[27,28,["G2064"]],[28,29,["G2532"]],[29,30,["G991"]]]},{"k":30795,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G2532"]],[4,5,["G2400"]],[5,7,["G3022"]],[7,8,["G2462"]],[8,9,["G2532"]],[9,12,["G2521"]],[12,13,["G1909"]],[13,14,["G846"]],[14,15,["G2192"]],[15,17,["G5115"]],[17,18,["G2532"]],[18,20,["G4735"]],[20,22,["G1325"]],[22,24,["G846"]],[24,25,["G2532"]],[25,28,["G1831"]],[28,29,["G3528"]],[29,30,["G2532"]],[30,31,["G2443"]],[31,32,["G3528"]]]},{"k":30796,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G455"]],[5,6,["G3588"]],[6,7,["G1208"]],[7,8,["G4973"]],[8,10,["G191"]],[10,11,["G3588"]],[11,12,["G1208"]],[12,13,["G2226"]],[13,14,["G3004"]],[14,15,["G2064"]],[15,16,["G2532"]],[16,17,["G991"]]]},{"k":30797,"v":[[0,1,["G2532"]],[1,4,["G1831"]],[4,5,["G243"]],[5,6,["G2462"]],[6,9,["G4450"]],[9,10,["G2532"]],[10,13,["G1325"]],[13,15,["G846"]],[15,17,["G2521"]],[17,18,["G1909","G846"]],[18,20,["G2983"]],[20,21,["G1515"]],[21,22,["G575"]],[22,23,["G3588"]],[23,24,["G1093"]],[24,25,["G2532"]],[25,26,["G2443"]],[26,29,["G4969"]],[29,31,["G240"]],[31,32,["G2532"]],[32,35,["G1325"]],[35,37,["G846"]],[37,39,["G3173"]],[39,40,["G3162"]]]},{"k":30798,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G455"]],[5,6,["G3588"]],[6,7,["G5154"]],[7,8,["G4973"]],[8,10,["G191"]],[10,11,["G3588"]],[11,12,["G5154"]],[12,13,["G2226"]],[13,14,["G3004"]],[14,15,["G2064"]],[15,16,["G2532"]],[16,17,["G991"]],[17,18,["G2532"]],[18,20,["G1492"]],[20,21,["G2532"]],[21,22,["G2400"]],[22,24,["G3189"]],[24,25,["G2462"]],[25,26,["G2532"]],[26,29,["G2521"]],[29,30,["G1909"]],[30,31,["G846"]],[31,32,["G2192"]],[32,36,["G2218"]],[36,37,["G1722"]],[37,38,["G848"]],[38,39,["G5495"]]]},{"k":30799,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,5,["G5456"]],[5,6,["G1722"]],[6,8,["G3319"]],[8,10,["G3588"]],[10,11,["G5064"]],[11,12,["G2226"]],[12,13,["G3004"]],[13,15,["G5518"]],[15,17,["G4621"]],[17,20,["G1220"]],[20,21,["G2532"]],[21,22,["G5140"]],[22,23,["G5518"]],[23,25,["G2915"]],[25,28,["G1220"]],[28,29,["G2532"]],[29,32,["G91"]],[32,33,["G3361"]],[33,34,["G3588"]],[34,35,["G1637"]],[35,36,["G2532"]],[36,37,["G3588"]],[37,38,["G3631"]]]},{"k":30800,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G455"]],[5,6,["G3588"]],[6,7,["G5067"]],[7,8,["G4973"]],[8,10,["G191"]],[10,12,["G5456"]],[12,14,["G3588"]],[14,15,["G5067"]],[15,16,["G2226"]],[16,17,["G3004"]],[17,18,["G2064"]],[18,19,["G2532"]],[19,20,["G991"]]]},{"k":30801,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G2532"]],[4,5,["G2400"]],[5,7,["G5515"]],[7,8,["G2462"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G3686"]],[11,13,["G2521"]],[13,14,["G1883"]],[14,15,["G846"]],[15,17,["G2288"]],[17,18,["G2532"]],[18,19,["G86"]],[19,20,["G190"]],[20,21,["G3326"]],[21,22,["G846"]],[22,23,["G2532"]],[23,24,["G1849"]],[24,26,["G1325"]],[26,28,["G846"]],[28,29,["G1909"]],[29,30,["G3588"]],[30,32,["G5067"]],[32,34,["G3588"]],[34,35,["G1093"]],[35,37,["G615"]],[37,38,["G1722"]],[38,39,["G4501"]],[39,40,["G2532"]],[40,41,["G1722"]],[41,42,["G3042"]],[42,43,["G2532"]],[43,44,["G1722"]],[44,45,["G2288"]],[45,46,["G2532"]],[46,47,["G5259"]],[47,48,["G3588"]],[48,49,["G2342"]],[49,51,["G3588"]],[51,52,["G1093"]]]},{"k":30802,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G455"]],[5,6,["G3588"]],[6,7,["G3991"]],[7,8,["G4973"]],[8,10,["G1492"]],[10,11,["G5270"]],[11,12,["G3588"]],[12,13,["G2379"]],[13,14,["G3588"]],[14,15,["G5590"]],[15,20,["G4969"]],[20,21,["G1223"]],[21,22,["G3588"]],[22,23,["G3056"]],[23,25,["G2316"]],[25,26,["G2532"]],[26,27,["G1223"]],[27,28,["G3588"]],[28,29,["G3141"]],[29,30,["G3739"]],[30,32,["G2192"]]]},{"k":30803,"v":[[0,1,["G2532"]],[1,3,["G2896"]],[3,6,["G3173"]],[6,7,["G5456"]],[7,8,["G3004"]],[8,10,["G2193","G4219"]],[10,12,["G1203"]],[12,13,["G40"]],[13,14,["G2532"]],[14,15,["G228"]],[15,18,["G3756"]],[18,19,["G2919"]],[19,20,["G2532"]],[20,21,["G1556"]],[21,22,["G2257"]],[22,23,["G129"]],[23,24,["G575"]],[24,27,["G2730"]],[27,28,["G1909"]],[28,29,["G3588"]],[29,30,["G1093"]]]},{"k":30804,"v":[[0,1,["G2532"]],[1,2,["G3022"]],[2,3,["G4749"]],[3,5,["G1325"]],[5,10,["G1538"]],[10,11,["G2532"]],[11,14,["G4483"]],[14,16,["G846"]],[16,17,["G2443"]],[17,20,["G373"]],[20,21,["G2089"]],[21,24,["G3398"]],[24,25,["G5550"]],[25,26,["G2193","G3757"]],[26,27,["G848"]],[27,28,["G4889"]],[28,29,["G2532"]],[29,30,["G2532"]],[30,31,["G848"]],[31,32,["G80"]],[32,34,["G3195"]],[34,36,["G615"]],[36,37,["G5613"]],[37,39,["(G2532)","G848"]],[39,42,["G4137"]]]},{"k":30805,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3753"]],[4,7,["G455"]],[7,8,["G3588"]],[8,9,["G1623"]],[9,10,["G4973"]],[10,11,["G2532"]],[11,12,["G2400"]],[12,14,["G1096"]],[14,16,["G3173"]],[16,17,["G4578"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G2246"]],[20,21,["G1096"]],[21,22,["G3189"]],[22,23,["G5613"]],[23,24,["G4526"]],[24,26,["G5155"]],[26,27,["G2532"]],[27,28,["G3588"]],[28,29,["G4582"]],[29,30,["G1096"]],[30,31,["G5613"]],[31,32,["G129"]]]},{"k":30806,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G792"]],[3,5,["G3772"]],[5,6,["G4098"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G1093"]],[9,11,["G5613"]],[11,14,["G4808"]],[14,15,["G906"]],[15,16,["G848"]],[16,18,["G3653"]],[18,22,["G4579"]],[22,23,["G5259"]],[23,25,["G3173"]],[25,26,["G417"]]]},{"k":30807,"v":[[0,1,["G2532"]],[1,3,["G3772"]],[3,4,["G673"]],[4,5,["G5613"]],[5,7,["G975"]],[7,12,["G1507"]],[12,13,["G2532"]],[13,14,["G3956"]],[14,15,["G3735"]],[15,16,["G2532"]],[16,17,["G3520"]],[17,19,["G2795"]],[19,21,["G1537"]],[21,22,["G848"]],[22,23,["G5117"]]]},{"k":30808,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G935"]],[3,5,["G3588"]],[5,6,["G1093"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,10,["G3175"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,14,["G4145"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,18,["G5506"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,22,["G1415"]],[22,23,["G2532"]],[23,24,["G3956"]],[24,25,["G1401"]],[25,26,["G2532"]],[26,27,["G3956"]],[27,29,["G1658"]],[29,30,["G2928"]],[30,31,["G1438"]],[31,32,["G1519"]],[32,33,["G3588"]],[33,34,["G4693"]],[34,35,["G2532"]],[35,36,["G1519"]],[36,37,["G3588"]],[37,38,["G4073"]],[38,40,["G3588"]],[40,41,["G3735"]]]},{"k":30809,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,4,["G3588"]],[4,5,["G3735"]],[5,6,["G2532"]],[6,7,["G4073"]],[7,8,["G4098"]],[8,9,["G1909"]],[9,10,["G2248"]],[10,11,["G2532"]],[11,12,["G2928"]],[12,13,["G2248"]],[13,14,["G575"]],[14,16,["G4383"]],[16,20,["G2521"]],[20,21,["G1909"]],[21,22,["G3588"]],[22,23,["G2362"]],[23,24,["G2532"]],[24,25,["G575"]],[25,26,["G3588"]],[26,27,["G3709"]],[27,29,["G3588"]],[29,30,["G721"]]]},{"k":30810,"v":[[0,1,["G3754"]],[1,2,["G3588"]],[2,3,["G3173"]],[3,4,["G2250"]],[4,6,["G848"]],[6,7,["G3709"]],[7,9,["G2064"]],[9,10,["G2532"]],[10,11,["G5101"]],[11,14,["G1410"]],[14,16,["G2476"]]]},{"k":30811,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,4,["G5023"]],[4,6,["G1492"]],[6,7,["G5064"]],[7,8,["G32"]],[8,9,["G2476"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G5064"]],[12,13,["G1137"]],[13,15,["G3588"]],[15,16,["G1093"]],[16,17,["G2902"]],[17,18,["G3588"]],[18,19,["G5064"]],[19,20,["G417"]],[20,22,["G3588"]],[22,23,["G1093"]],[23,24,["G2443"]],[24,26,["G417"]],[26,28,["G3361"]],[28,29,["G4154"]],[29,30,["G1909"]],[30,31,["G3588"]],[31,32,["G1093"]],[32,33,["G3383"]],[33,34,["G1909"]],[34,35,["G3588"]],[35,36,["G2281"]],[36,37,["G3383"]],[37,38,["G1909"]],[38,39,["G3956"]],[39,40,["G1186"]]]},{"k":30812,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G243"]],[4,5,["G32"]],[5,6,["G305"]],[6,7,["G575"]],[7,9,["G395","G2246"]],[9,10,["G2192"]],[10,12,["G4973"]],[12,15,["G2198"]],[15,16,["G2316"]],[16,17,["G2532"]],[17,19,["G2896"]],[19,22,["G3173"]],[22,23,["G5456"]],[23,25,["G3588"]],[25,26,["G5064"]],[26,27,["G32"]],[27,29,["G3739"]],[29,32,["G1325"]],[32,33,["(G846)"]],[33,34,["G91"]],[34,35,["G3588"]],[35,36,["G1093"]],[36,37,["G2532"]],[37,38,["G3588"]],[38,39,["G2281"]]]},{"k":30813,"v":[[0,1,["G3004"]],[1,2,["G91"]],[2,3,["G3361"]],[3,4,["G3588"]],[4,5,["G1093"]],[5,6,["G3383"]],[6,7,["G3588"]],[7,8,["G2281"]],[8,9,["G3383"]],[9,10,["G3588"]],[10,11,["G1186"]],[11,12,["G891","G3757"]],[12,15,["G4972"]],[15,16,["G3588"]],[16,17,["G1401"]],[17,19,["G2257"]],[19,20,["G2316"]],[20,21,["G1909"]],[21,22,["G848"]],[22,23,["G3359"]]]},{"k":30814,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,4,["G3588"]],[4,5,["G706"]],[5,10,["G4972"]],[10,14,["G4972"]],[14,21,["G1540","G5062","G5064","G5505"]],[21,22,["G1537"]],[22,23,["G3956"]],[23,25,["G5443"]],[25,28,["G5207"]],[28,30,["G2474"]]]},{"k":30815,"v":[[0,1,["G1537"]],[1,3,["G5443"]],[3,5,["G2455"]],[5,7,["G4972"]],[7,8,["G1427"]],[8,9,["G5505"]],[9,10,["G1537"]],[10,12,["G5443"]],[12,14,["G4502"]],[14,16,["G4972"]],[16,17,["G1427"]],[17,18,["G5505"]],[18,19,["G1537"]],[19,21,["G5443"]],[21,23,["G1045"]],[23,25,["G4972"]],[25,26,["G1427"]],[26,27,["G5505"]]]},{"k":30816,"v":[[0,1,["G1537"]],[1,3,["G5443"]],[3,5,["G768"]],[5,7,["G4972"]],[7,8,["G1427"]],[8,9,["G5505"]],[9,10,["G1537"]],[10,12,["G5443"]],[12,14,["G3508"]],[14,16,["G4972"]],[16,17,["G1427"]],[17,18,["G5505"]],[18,19,["G1537"]],[19,21,["G5443"]],[21,23,["G3128"]],[23,25,["G4972"]],[25,26,["G1427"]],[26,27,["G5505"]]]},{"k":30817,"v":[[0,1,["G1537"]],[1,3,["G5443"]],[3,5,["G4826"]],[5,7,["G4972"]],[7,8,["G1427"]],[8,9,["G5505"]],[9,10,["G1537"]],[10,12,["G5443"]],[12,14,["G3017"]],[14,16,["G4972"]],[16,17,["G1427"]],[17,18,["G5505"]],[18,19,["G1537"]],[19,21,["G5443"]],[21,23,["G2466"]],[23,25,["G4972"]],[25,26,["G1427"]],[26,27,["G5505"]]]},{"k":30818,"v":[[0,1,["G1537"]],[1,3,["G5443"]],[3,5,["G2194"]],[5,7,["G4972"]],[7,8,["G1427"]],[8,9,["G5505"]],[9,10,["G1537"]],[10,12,["G5443"]],[12,14,["G2501"]],[14,16,["G4972"]],[16,17,["G1427"]],[17,18,["G5505"]],[18,19,["G1537"]],[19,21,["G5443"]],[21,23,["G958"]],[23,25,["G4972"]],[25,26,["G1427"]],[26,27,["G5505"]]]},{"k":30819,"v":[[0,1,["G3326"]],[1,2,["G5023"]],[2,4,["G1492"]],[4,5,["G2532"]],[5,6,["G2400"]],[6,8,["G4183"]],[8,9,["G3793"]],[9,10,["G3739"]],[10,12,["G3762"]],[12,13,["G1410"]],[13,14,["G705","(G846)"]],[14,15,["G1537"]],[15,16,["G3956"]],[16,17,["G1484"]],[17,18,["G2532"]],[18,19,["G5443"]],[19,20,["G2532"]],[20,21,["G2992"]],[21,22,["G2532"]],[22,23,["G1100"]],[23,24,["G2476"]],[24,25,["G1799"]],[25,26,["G3588"]],[26,27,["G2362"]],[27,28,["G2532"]],[28,29,["G1799"]],[29,30,["G3588"]],[30,31,["G721"]],[31,32,["G4016"]],[32,34,["G3022"]],[34,35,["G4749"]],[35,36,["G2532"]],[36,37,["G5404"]],[37,38,["G1722"]],[38,39,["G848"]],[39,40,["G5495"]]]},{"k":30820,"v":[[0,1,["G2532"]],[1,2,["G2896"]],[2,5,["G3173"]],[5,6,["G5456"]],[6,7,["G3004"]],[7,8,["G4991"]],[8,10,["G2257"]],[10,11,["G2316"]],[11,13,["G2521"]],[13,14,["G1909"]],[14,15,["G3588"]],[15,16,["G2362"]],[16,17,["G2532"]],[17,19,["G3588"]],[19,20,["G721"]]]},{"k":30821,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G32"]],[4,5,["G2476"]],[5,7,["G2945"]],[7,8,["G3588"]],[8,9,["G2362"]],[9,10,["G2532"]],[10,12,["G3588"]],[12,13,["G4245"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G5064"]],[16,17,["G2226"]],[17,18,["G2532"]],[18,19,["G4098"]],[19,20,["G1799"]],[20,21,["G3588"]],[21,22,["G2362"]],[22,23,["G1909"]],[23,24,["G848"]],[24,25,["G4383"]],[25,26,["G2532"]],[26,27,["G4352"]],[27,28,["G2316"]]]},{"k":30822,"v":[[0,1,["G3004"]],[1,2,["G281"]],[2,3,["G2129"]],[3,4,["G2532"]],[4,5,["G1391"]],[5,6,["G2532"]],[6,7,["G4678"]],[7,8,["G2532"]],[8,9,["G2169"]],[9,10,["G2532"]],[10,11,["G5092"]],[11,12,["G2532"]],[12,13,["G1411"]],[13,14,["G2532"]],[14,15,["G2479"]],[15,18,["G2257"]],[18,19,["G2316"]],[19,23,["G1519","G165","G165"]],[23,24,["G281"]]]},{"k":30823,"v":[[0,1,["G2532"]],[1,2,["G1520"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G4245"]],[5,6,["G611"]],[6,7,["G3004"]],[7,9,["G3427"]],[9,10,["G5101"]],[10,11,["G1526"]],[11,12,["G3778"]],[12,15,["G4016"]],[15,17,["G3022"]],[17,18,["G4749"]],[18,19,["G2532"]],[19,20,["G4159"]],[20,21,["G2064"]],[21,22,[]]]},{"k":30824,"v":[[0,1,["G2532"]],[1,3,["G2046"]],[3,5,["G846"]],[5,6,["G2962"]],[6,7,["G4771"]],[7,8,["G1492"]],[8,9,["G2532"]],[9,11,["G2036"]],[11,13,["G3427"]],[13,14,["G3778"]],[14,15,["G1526"]],[15,18,["G2064"]],[18,20,["G1537"]],[20,21,["G3173"]],[21,22,["G2347"]],[22,23,["G2532"]],[23,25,["G4150"]],[25,26,["G848"]],[26,27,["G4749"]],[27,28,["G2532"]],[28,31,["G3021","G848"]],[31,32,["G1722"]],[32,33,["G3588"]],[33,34,["G129"]],[34,36,["G3588"]],[36,37,["G721"]]]},{"k":30825,"v":[[0,1,["G1223","G5124"]],[1,2,["G1526"]],[2,4,["G1799"]],[4,5,["G3588"]],[5,6,["G2362"]],[6,8,["G2316"]],[8,9,["G2532"]],[9,10,["G3000"]],[10,11,["G846"]],[11,12,["G2250"]],[12,13,["G2532"]],[13,14,["G3571"]],[14,15,["G1722"]],[15,16,["G848"]],[16,17,["G3485"]],[17,18,["G2532"]],[18,21,["G2521"]],[21,22,["G1909"]],[22,23,["G3588"]],[23,24,["G2362"]],[24,26,["G4637"]],[26,27,["G1909"]],[27,28,["G846"]]]},{"k":30826,"v":[[0,3,["G3983"]],[3,4,["G3756"]],[4,5,["G2089"]],[5,6,["G3761"]],[6,7,["G1372"]],[7,9,["G2089"]],[9,10,["G3761","G3361"]],[10,12,["G3588"]],[12,13,["G2246"]],[13,14,["G4098"]],[14,15,["G1909"]],[15,16,["G846"]],[16,17,["G3761"]],[17,18,["G3956"]],[18,19,["G2738"]]]},{"k":30827,"v":[[0,1,["G3754"]],[1,2,["G3588"]],[2,3,["G721"]],[3,4,["G3588"]],[4,6,["G303"]],[6,8,["G3319"]],[8,10,["G3588"]],[10,11,["G2362"]],[11,13,["G4165"]],[13,14,["G846"]],[14,15,["G2532"]],[15,17,["G3594"]],[17,18,["G846"]],[18,19,["G1909"]],[19,20,["G2198"]],[20,21,["G4077"]],[21,23,["G5204"]],[23,24,["G2532"]],[24,25,["G2316"]],[25,28,["G1813"]],[28,29,["G3956"]],[29,30,["G1144"]],[30,31,["G575"]],[31,32,["G848"]],[32,33,["G3788"]]]},{"k":30828,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G455"]],[5,6,["G3588"]],[6,7,["G1442"]],[7,8,["G4973"]],[8,10,["G1096"]],[10,11,["G4602"]],[11,12,["G1722"]],[12,13,["G3772"]],[13,14,["G5613"]],[14,20,["G2256"]]]},{"k":30829,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3588"]],[4,5,["G2033"]],[5,6,["G32"]],[6,7,["G3739"]],[7,8,["G2476"]],[8,9,["G1799"]],[9,10,["G2316"]],[10,11,["G2532"]],[11,13,["G846"]],[13,15,["G1325"]],[15,16,["G2033"]],[16,17,["G4536"]]]},{"k":30830,"v":[[0,1,["G2532"]],[1,2,["G243"]],[2,3,["G32"]],[3,4,["G2064"]],[4,5,["G2532"]],[5,6,["G2476"]],[6,7,["G1909"]],[7,8,["G3588"]],[8,9,["G2379"]],[9,10,["G2192"]],[10,12,["G5552"]],[12,13,["G3031"]],[13,14,["G2532"]],[14,17,["G1325"]],[17,19,["G846"]],[19,20,["G4183"]],[20,21,["G2368"]],[21,22,["G2443"]],[22,25,["G1325"]],[25,28,["G3588"]],[28,29,["G4335"]],[29,31,["G3956"]],[31,32,["G40"]],[32,33,["G1909"]],[33,34,["G3588"]],[34,35,["G5552"]],[35,36,["G2379"]],[36,37,["G3588"]],[37,39,["G1799"]],[39,40,["G3588"]],[40,41,["G2362"]]]},{"k":30831,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2586"]],[3,5,["G3588"]],[5,6,["G2368"]],[6,10,["G3588"]],[10,11,["G4335"]],[11,13,["G3588"]],[13,14,["G40"]],[14,16,["G305"]],[16,17,["G1799"]],[17,18,["G2316"]],[18,20,["G1537"]],[20,21,["G3588"]],[21,22,["G32"]],[22,23,["G5495"]]]},{"k":30832,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G32"]],[3,4,["G2983"]],[4,5,["G3588"]],[5,6,["G3031"]],[6,7,["G2532"]],[7,8,["G1072"]],[8,9,["G846"]],[9,10,["G1537"]],[10,11,["G4442"]],[11,13,["G3588"]],[13,14,["G2379"]],[14,15,["G2532"]],[15,16,["G906"]],[16,18,["G1519"]],[18,19,["G3588"]],[19,20,["G1093"]],[20,21,["G2532"]],[21,23,["G1096"]],[23,24,["G5456"]],[24,25,["G2532"]],[25,26,["G1027"]],[26,27,["G2532"]],[27,28,["G796"]],[28,29,["G2532"]],[29,31,["G4578"]]]},{"k":30833,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2033"]],[3,4,["G32"]],[4,6,["G2192"]],[6,7,["G3588"]],[7,8,["G2033"]],[8,9,["G4536"]],[9,10,["G2090"]],[10,11,["G1438"]],[11,12,["G2443"]],[12,13,["G4537"]]]},{"k":30834,"v":[[0,0,["(G2532)"]],[0,1,["G3588"]],[1,2,["G4413"]],[2,3,["G32"]],[3,4,["G4537"]],[4,5,["G2532"]],[5,7,["G1096"]],[7,8,["G5464"]],[8,9,["G2532"]],[9,10,["G4442"]],[10,11,["G3396"]],[11,13,["G129"]],[13,14,["G2532"]],[14,17,["G906"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G1093"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,24,["G5154"]],[24,26,["G1186"]],[26,29,["G2618"]],[29,30,["G2532"]],[30,31,["G3956"]],[31,32,["G5515"]],[32,33,["G5528"]],[33,36,["G2618"]]]},{"k":30835,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1208"]],[3,4,["G32"]],[4,5,["G4537"]],[5,6,["G2532"]],[6,9,["G5613"]],[9,11,["G3173"]],[11,12,["G3735"]],[12,13,["G2545"]],[13,15,["G4442"]],[15,17,["G906"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G2281"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,24,["G5154"]],[24,26,["G3588"]],[26,27,["G2281"]],[27,28,["G1096"]],[28,29,["G129"]]]},{"k":30836,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,4,["G5154"]],[4,6,["G3588"]],[6,7,["G2938"]],[7,8,["G3588"]],[8,10,["G1722"]],[10,11,["G3588"]],[11,12,["G2281"]],[12,13,["G2532"]],[13,14,["G2192"]],[14,15,["G5590"]],[15,16,["G599"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,20,["G5154"]],[20,22,["G3588"]],[22,23,["G4143"]],[23,25,["G1311"]]]},{"k":30837,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5154"]],[3,4,["G32"]],[4,5,["G4537"]],[5,6,["G2532"]],[6,8,["G4098"]],[8,10,["G3173"]],[10,11,["G792"]],[11,12,["G1537"]],[12,13,["G3772"]],[13,14,["G2545"]],[14,17,["G5613"]],[17,19,["G2985"]],[19,20,["G2532"]],[20,22,["G4098"]],[22,23,["G1909"]],[23,24,["G3588"]],[24,26,["G5154"]],[26,28,["G3588"]],[28,29,["G4215"]],[29,30,["G2532"]],[30,31,["G1909"]],[31,32,["G3588"]],[32,33,["G4077"]],[33,35,["G5204"]]]},{"k":30838,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3686"]],[3,5,["G3588"]],[5,6,["G792"]],[6,8,["G3004"]],[8,9,["G894"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,13,["G5154"]],[13,15,["G3588"]],[15,16,["G5204"]],[16,17,["G1096"]],[17,18,["(G1519)","G894"]],[18,19,["G2532"]],[19,20,["G4183"]],[20,21,["G444"]],[21,22,["G599"]],[22,23,["G1537"]],[23,24,["G3588"]],[24,25,["G5204"]],[25,26,["G3754"]],[26,30,["G4087"]]]},{"k":30839,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5067"]],[3,4,["G32"]],[4,5,["G4537"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,9,["G5154"]],[9,11,["G3588"]],[11,12,["G2246"]],[12,14,["G4141"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,18,["G5154"]],[18,20,["G3588"]],[20,21,["G4582"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,25,["G5154"]],[25,27,["G3588"]],[27,28,["G792"]],[28,30,["G2443"]],[30,31,["G3588"]],[31,33,["G5154"]],[33,35,["G846"]],[35,37,["G4654"]],[37,38,["G2532"]],[38,39,["G3588"]],[39,40,["G2250"]],[40,41,["G5316"]],[41,42,["G3361"]],[42,46,["G5154"]],[46,48,["G848"]],[48,49,["G2532"]],[49,50,["G3588"]],[50,51,["G3571"]],[51,52,["G3668"]]]},{"k":30840,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G2532"]],[4,5,["G191"]],[5,6,["G1520"]],[6,7,["G32"]],[7,8,["G4072"]],[8,9,["G1722"]],[9,13,["G3321"]],[13,14,["G3004"]],[14,17,["G3173"]],[17,18,["G5456"]],[18,19,["G3759"]],[19,20,["G3759"]],[20,21,["G3759"]],[21,23,["G3588"]],[23,24,["G2730"]],[24,25,["G1909"]],[25,26,["G3588"]],[26,27,["G1093"]],[27,30,["G1537"]],[30,31,["G3588"]],[31,32,["G3062"]],[32,33,["G5456"]],[33,35,["G3588"]],[35,36,["G4536"]],[36,38,["G3588"]],[38,39,["G5140"]],[39,40,["G32"]],[40,43,["G3195"]],[43,45,["G4537"]]]},{"k":30841,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3991"]],[3,4,["G32"]],[4,5,["G4537"]],[5,6,["G2532"]],[6,8,["G1492"]],[8,10,["G792"]],[10,11,["G4098"]],[11,12,["G1537"]],[12,13,["G3772"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G1093"]],[16,17,["G2532"]],[17,19,["G846"]],[19,21,["G1325"]],[21,22,["G3588"]],[22,23,["G2807"]],[23,25,["G3588"]],[25,26,["G12"]],[26,27,["G5421"]]]},{"k":30842,"v":[[0,1,["G2532"]],[1,3,["G455"]],[3,4,["G3588"]],[4,5,["G12"]],[5,6,["G5421"]],[6,7,["G2532"]],[7,9,["G305"]],[9,11,["G2586"]],[11,13,["G1537"]],[13,14,["G3588"]],[14,15,["G5421"]],[15,16,["G5613"]],[16,18,["G2586"]],[18,21,["G3173"]],[21,22,["G2575"]],[22,23,["G2532"]],[23,24,["G3588"]],[24,25,["G2246"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G109"]],[28,30,["G4654"]],[30,33,["G1537"]],[33,34,["G3588"]],[34,35,["G2586"]],[35,37,["G3588"]],[37,38,["G5421"]]]},{"k":30843,"v":[[0,1,["G2532"]],[1,3,["G1831"]],[3,5,["G1537"]],[5,6,["G3588"]],[6,7,["G2586"]],[7,8,["G200"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G1093"]],[11,12,["G2532"]],[12,14,["G846"]],[14,16,["G1325"]],[16,17,["G1849"]],[17,18,["G5613"]],[18,19,["G3588"]],[19,20,["G4651"]],[20,22,["G3588"]],[22,23,["G1093"]],[23,24,["G2192"]],[24,25,["G1849"]]]},{"k":30844,"v":[[0,1,["G2532"]],[1,4,["G4483"]],[4,5,["G846"]],[5,6,["G2443"]],[6,9,["G3361"]],[9,10,["G91"]],[10,11,["G3588"]],[11,12,["G5528"]],[12,14,["G3588"]],[14,15,["G1093"]],[15,16,["G3761"]],[16,17,["G3956"]],[17,19,["G5515"]],[19,20,["G3761"]],[20,21,["G3956"]],[21,22,["G1186"]],[22,23,["G1508"]],[23,24,["G3441"]],[24,26,["G444"]],[26,27,["G3748"]],[27,28,["G2192"]],[28,29,["G3756"]],[29,30,["G3588"]],[30,31,["G4973"]],[31,33,["G2316"]],[33,34,["G1909"]],[34,35,["G848"]],[35,36,["G3359"]]]},{"k":30845,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,6,["G1325"]],[6,7,["G2443"]],[7,10,["G3361"]],[10,11,["G615"]],[11,12,["G846"]],[12,13,["G235"]],[13,14,["G2443"]],[14,18,["G928"]],[18,19,["G4002"]],[19,20,["G3376"]],[20,21,["G2532"]],[21,22,["G848"]],[22,23,["G929"]],[23,27,["G929"]],[27,30,["G4651"]],[30,31,["G3752"]],[31,33,["G3817"]],[33,35,["G444"]]]},{"k":30846,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G1565"]],[3,4,["G2250"]],[4,6,["G444"]],[6,7,["G2212"]],[7,8,["G2288"]],[8,9,["G2532"]],[9,11,["G3756"]],[11,12,["G2147"]],[12,13,["G846"]],[13,14,["G2532"]],[14,16,["G1937"]],[16,18,["G599"]],[18,19,["G2532"]],[19,20,["G2288"]],[20,22,["G5343"]],[22,23,["G575"]],[23,24,["G846"]]]},{"k":30847,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3667"]],[3,5,["G3588"]],[5,6,["G200"]],[6,9,["G3664"]],[9,10,["G2462"]],[10,11,["G2090"]],[11,12,["G1519"]],[12,13,["G4171"]],[13,14,["G2532"]],[14,15,["G1909"]],[15,16,["G848"]],[16,17,["G2776"]],[17,21,["G5613"]],[21,22,["G4735"]],[22,23,["G3664"]],[23,24,["G5557"]],[24,25,["G2532"]],[25,26,["G848"]],[26,27,["G4383"]],[27,29,["G5613"]],[29,31,["G4383"]],[31,33,["G444"]]]},{"k":30848,"v":[[0,1,["G2532"]],[1,3,["G2192"]],[3,4,["G2359"]],[4,5,["G5613"]],[5,7,["G2359"]],[7,9,["G1135"]],[9,10,["G2532"]],[10,11,["G848"]],[11,12,["G3599"]],[12,13,["G2258"]],[13,14,["G5613"]],[14,18,["G3023"]]]},{"k":30849,"v":[[0,1,["G2532"]],[1,3,["G2192"]],[3,4,["G2382"]],[4,7,["G5613"]],[7,8,["G2382"]],[8,10,["G4603"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G5456"]],[13,15,["G848"]],[15,16,["G4420"]],[16,18,["G5613"]],[18,20,["G5456"]],[20,22,["G716"]],[22,24,["G4183"]],[24,25,["G2462"]],[25,26,["G5143"]],[26,27,["G1519"]],[27,28,["G4171"]]]},{"k":30850,"v":[[0,1,["G2532"]],[1,3,["G2192"]],[3,4,["G3769"]],[4,6,["G3664"]],[6,7,["G4651"]],[7,8,["G2532"]],[8,10,["G2258"]],[10,11,["G2759"]],[11,12,["G1722"]],[12,13,["G848"]],[13,14,["G3769"]],[14,15,["G2532"]],[15,16,["G848"]],[16,17,["G1849"]],[17,20,["G91"]],[20,21,["G444"]],[21,22,["G4002"]],[22,23,["G3376"]]]},{"k":30851,"v":[[0,1,["G2532"]],[1,3,["G2192"]],[3,5,["G935"]],[5,6,["G1909"]],[6,7,["G846"]],[7,10,["G3588"]],[10,11,["G32"]],[11,13,["G3588"]],[13,15,["G12"]],[15,16,["G846"]],[16,17,["G3686"]],[17,21,["G1447"]],[21,23,["G3"]],[23,24,["G2532"]],[24,25,["G1722"]],[25,26,["G3588"]],[26,28,["G1673"]],[28,29,["G2192"]],[29,31,["G3686"]],[31,32,["G623"]]]},{"k":30852,"v":[[0,1,["G3391"]],[1,2,["G3759"]],[2,4,["G565"]],[4,6,["G2400"]],[6,8,["G2064"]],[8,9,["G1417"]],[9,10,["G3759"]],[10,11,["G2089"]],[11,12,["G3326","G5023"]]]},{"k":30853,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1623"]],[3,4,["G32"]],[4,5,["G4537"]],[5,6,["G2532"]],[6,8,["G191"]],[8,9,["G3391"]],[9,10,["G5456"]],[10,11,["G1537"]],[11,12,["G3588"]],[12,13,["G5064"]],[13,14,["G2768"]],[14,16,["G3588"]],[16,17,["G5552"]],[17,18,["G2379"]],[18,19,["G3588"]],[19,21,["G1799"]],[21,22,["G2316"]]]},{"k":30854,"v":[[0,1,["G3004"]],[1,3,["G3588"]],[3,4,["G1623"]],[4,5,["G32"]],[5,6,["G3739"]],[6,7,["G2192"]],[7,8,["G3588"]],[8,9,["G4536"]],[9,10,["G3089"]],[10,11,["G3588"]],[11,12,["G5064"]],[12,13,["G32"]],[13,16,["G1210"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G3173"]],[19,20,["G4215"]],[20,21,["G2166"]]]},{"k":30855,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5064"]],[3,4,["G32"]],[4,6,["G3089"]],[6,9,["G2090"]],[9,10,["G1519"]],[10,12,["G5610"]],[12,13,["G2532"]],[13,15,["G2250"]],[15,16,["G2532"]],[16,18,["G3376"]],[18,19,["G2532"]],[19,21,["G1763"]],[21,23,["G2443"]],[23,24,["G615"]],[24,25,["G3588"]],[25,27,["G5154"]],[27,29,["G444"]]]},{"k":30856,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G706"]],[3,6,["G4753"]],[6,8,["G3588"]],[8,9,["G2461"]],[9,14,["G1417","G3461","G3461"]],[14,15,["G2532"]],[15,17,["G191"]],[17,18,["G3588"]],[18,19,["G706"]],[19,21,["G846"]]]},{"k":30857,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,4,["G1492"]],[4,5,["G3588"]],[5,6,["G2462"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G3706"]],[9,10,["G2532"]],[10,13,["G2521"]],[13,14,["G1909"]],[14,15,["G846"]],[15,16,["G2192"]],[16,17,["G2382"]],[17,19,["G4447"]],[19,20,["G2532"]],[20,22,["G5191"]],[22,23,["G2532"]],[23,24,["G2306"]],[24,25,["G2532"]],[25,26,["G3588"]],[26,27,["G2776"]],[27,29,["G3588"]],[29,30,["G2462"]],[30,32,["G5613"]],[32,34,["G2776"]],[34,36,["G3023"]],[36,37,["G2532"]],[37,39,["G1537"]],[39,40,["G848"]],[40,41,["G4750"]],[41,42,["G1607"]],[42,43,["G4442"]],[43,44,["G2532"]],[44,45,["G2586"]],[45,46,["G2532"]],[46,47,["G2303"]]]},{"k":30858,"v":[[0,1,["G5259"]],[1,2,["G5130"]],[2,3,["G5140"]],[3,5,["G3588"]],[5,7,["G5154"]],[7,9,["G444"]],[9,10,["G615"]],[10,11,["G1537"]],[11,12,["G3588"]],[12,13,["G4442"]],[13,14,["G2532"]],[14,15,["G1537"]],[15,16,["G3588"]],[16,17,["G2586"]],[17,18,["G2532"]],[18,19,["G1537"]],[19,20,["G3588"]],[20,21,["G2303"]],[21,23,["G1607"]],[23,25,["G1537"]],[25,26,["G848"]],[26,27,["G4750"]]]},{"k":30859,"v":[[0,1,["G1063"]],[1,2,["G848"]],[2,3,["G1849"]],[3,4,["G1526"]],[4,5,["G1722"]],[5,6,["G848"]],[6,7,["G4750"]],[7,8,["G2532"]],[8,9,["G1722"]],[9,10,["G848"]],[10,11,["G3769"]],[11,12,["G1063"]],[12,13,["G848"]],[13,14,["G3769"]],[14,17,["G3664"]],[17,18,["G3789"]],[18,20,["G2192"]],[20,21,["G2776"]],[21,22,["G2532"]],[22,23,["G1722"]],[23,24,["G846"]],[24,27,["G91"]]]},{"k":30860,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3062"]],[3,5,["G3588"]],[5,6,["G444"]],[6,7,["G3739"]],[7,9,["G3756"]],[9,10,["G615"]],[10,11,["G1722"]],[11,12,["G5025"]],[12,13,["G4127"]],[13,16,["G3777","G3340"]],[16,17,["G1537"]],[17,18,["G3588"]],[18,19,["G2041"]],[19,21,["G848"]],[21,22,["G5495"]],[22,23,["G2443"]],[23,26,["G3361"]],[26,27,["G4352"]],[27,28,["G1140"]],[28,29,["G2532"]],[29,30,["G1497"]],[30,32,["G5552"]],[32,33,["G2532"]],[33,34,["G693"]],[34,35,["G2532"]],[35,36,["G5470"]],[36,37,["G2532"]],[37,38,["G3035"]],[38,39,["G2532"]],[39,41,["G3585"]],[41,42,["G3739"]],[42,43,["G3777"]],[43,44,["G1410"]],[44,45,["G991"]],[45,46,["G3777"]],[46,47,["G191"]],[47,48,["G3777"]],[48,49,["G4043"]]]},{"k":30861,"v":[[0,1,["G2532","G3756"]],[1,2,["G3340"]],[2,4,["G1537"]],[4,5,["G848"]],[5,6,["G5408"]],[6,7,["G3777"]],[7,8,["G1537"]],[8,9,["G848"]],[9,10,["G5331"]],[10,11,["G3777"]],[11,12,["G1537"]],[12,13,["G848"]],[13,14,["G4202"]],[14,15,["G3777"]],[15,16,["G1537"]],[16,17,["G848"]],[17,18,["G2809"]]]},{"k":30862,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G243"]],[4,5,["G2478"]],[5,6,["G32"]],[6,8,["G2597"]],[8,9,["G1537"]],[9,10,["G3772"]],[10,12,["G4016"]],[12,14,["G3507"]],[14,15,["G2532"]],[15,17,["G2463"]],[17,19,["G1909"]],[19,21,["G2776"]],[21,22,["G2532"]],[22,23,["G848"]],[23,24,["G4383"]],[24,28,["G5613"]],[28,29,["G3588"]],[29,30,["G2246"]],[30,31,["G2532"]],[31,32,["G848"]],[32,33,["G4228"]],[33,34,["G5613"]],[34,35,["G4769"]],[35,37,["G4442"]]]},{"k":30863,"v":[[0,1,["G2532"]],[1,3,["G2192"]],[3,4,["G1722"]],[4,5,["G848"]],[5,6,["G5495"]],[6,9,["G974"]],[9,10,["G455"]],[10,11,["G2532"]],[11,13,["G5087"]],[13,14,["G848"]],[14,15,["G1188"]],[15,16,["G4228"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G2281"]],[19,20,["G1161"]],[20,22,["G2176"]],[22,24,["G1909"]],[24,25,["G3588"]],[25,26,["G1093"]]]},{"k":30864,"v":[[0,1,["G2532"]],[1,2,["G2896"]],[2,5,["G3173"]],[5,6,["G5456"]],[6,7,["G5618"]],[7,10,["G3023"]],[10,11,["G3455"]],[11,12,["G2532"]],[12,13,["G3753"]],[13,16,["G2896"]],[16,17,["G2033"]],[17,18,["G1027"]],[18,19,["G2980"]],[19,20,["G1438"]],[20,21,["G5456"]]]},{"k":30865,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,3,["G3588"]],[3,4,["G2033"]],[4,5,["G1027"]],[5,7,["G2980"]],[7,8,["G1438"]],[8,9,["G5456"]],[9,12,["G3195"]],[12,14,["G1125"]],[14,15,["G2532"]],[15,17,["G191"]],[17,19,["G5456"]],[19,20,["G1537"]],[20,21,["G3772"]],[21,22,["G3004"]],[22,24,["G3427"]],[24,26,["G4972"]],[26,29,["G3739"]],[29,30,["G3588"]],[30,31,["G2033"]],[31,32,["G1027"]],[32,33,["G2980"]],[33,34,["G2532"]],[34,35,["G1125"]],[35,36,["G5023"]],[36,37,["G3361"]]]},{"k":30866,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G32"]],[3,4,["G3739"]],[4,6,["G1492"]],[6,7,["G2476"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,10,["G2281"]],[10,11,["G2532"]],[11,12,["G1909"]],[12,13,["G3588"]],[13,14,["G1093"]],[14,16,["G142"]],[16,17,["G848"]],[17,18,["G5495"]],[18,19,["G1519"]],[19,20,["G3772"]]]},{"k":30867,"v":[[0,1,["G2532"]],[1,2,["G3660"]],[2,3,["G1722"]],[3,6,["G2198"]],[6,10,["G1519","G165","G165"]],[10,11,["G3739"]],[11,12,["G2936"]],[12,13,["G3772"]],[13,14,["G2532"]],[14,16,["G3588"]],[16,18,["G1722","G846"]],[18,20,["G2532"]],[20,21,["G3588"]],[21,22,["G1093"]],[22,23,["G2532"]],[23,25,["G3588"]],[25,27,["G1722","G846"]],[27,29,["G2532"]],[29,30,["G3588"]],[30,31,["G2281"]],[31,32,["G2532"]],[32,34,["G3588"]],[34,37,["G1722","G846"]],[37,38,["G3754"]],[38,41,["G2071"]],[41,42,["G5550"]],[42,43,["G3756"]],[43,44,["G2089"]]]},{"k":30868,"v":[[0,1,["G235"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G2250"]],[4,6,["G3588"]],[6,7,["G5456"]],[7,9,["G3588"]],[9,10,["G1442"]],[10,11,["G32"]],[11,12,["G3752"]],[12,15,["G3195"]],[15,17,["G4537"]],[17,18,["G3588"]],[18,19,["G3466"]],[19,21,["G2316"]],[21,24,["G5055"]],[24,25,["G5613"]],[25,28,["G2097"]],[28,30,["G1438"]],[30,31,["G1401"]],[31,32,["G3588"]],[32,33,["G4396"]]]},{"k":30869,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5456"]],[3,4,["G3739"]],[4,6,["G191"]],[6,7,["G1537"]],[7,8,["G3772"]],[8,9,["G2980"]],[9,10,["G3326"]],[10,11,["G1700"]],[11,12,["G3825"]],[12,13,["G2532"]],[13,14,["G3004"]],[14,15,["G5217"]],[15,17,["G2983"]],[17,18,["G3588"]],[18,20,["G974"]],[20,23,["G455"]],[23,24,["G1722"]],[24,25,["G3588"]],[25,26,["G5495"]],[26,29,["G32"]],[29,31,["G2476"]],[31,32,["G1909"]],[32,33,["G3588"]],[33,34,["G2281"]],[34,35,["G2532"]],[35,36,["G1909"]],[36,37,["G3588"]],[37,38,["G1093"]]]},{"k":30870,"v":[[0,1,["G2532"]],[1,3,["G565"]],[3,4,["G4314"]],[4,5,["G3588"]],[5,6,["G32"]],[6,8,["G3004"]],[8,10,["G846"]],[10,11,["G1325"]],[11,12,["G3427"]],[12,13,["G3588"]],[13,15,["G974"]],[15,16,["G2532"]],[16,18,["G3004"]],[18,20,["G3427"]],[20,21,["G2983"]],[21,23,["G2532"]],[23,26,["G2719","G846"]],[26,27,["G2532"]],[27,33,["G4087","G4675","G2836"]],[33,34,["G235"]],[34,37,["G2071"]],[37,38,["G1722"]],[38,39,["G4675"]],[39,40,["G4750"]],[40,41,["G1099"]],[41,42,["G5613"]],[42,43,["G3192"]]]},{"k":30871,"v":[[0,1,["G2532"]],[1,3,["G2983"]],[3,4,["G3588"]],[4,6,["G974"]],[6,8,["G1537"]],[8,9,["G3588"]],[9,10,["G32"]],[10,11,["G5495"]],[11,12,["G2532"]],[12,15,["G2719","G846"]],[15,16,["G2532"]],[16,18,["G2258"]],[18,19,["G1722"]],[19,20,["G3450"]],[20,21,["G4750"]],[21,22,["G1099"]],[22,23,["G5613"]],[23,24,["G3192"]],[24,25,["G2532"]],[25,28,["G3753"]],[28,31,["G5315"]],[31,32,["G846"]],[32,33,["G3450"]],[33,34,["G2836"]],[34,36,["G4087"]]]},{"k":30872,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G3427"]],[5,6,["G4571"]],[6,7,["G1163"]],[7,8,["G4395"]],[8,9,["G3825"]],[9,10,["G1909"]],[10,11,["G4183"]],[11,12,["G2992"]],[12,13,["G2532"]],[13,14,["G1484"]],[14,15,["G2532"]],[15,16,["G1100"]],[16,17,["G2532"]],[17,18,["G935"]]]},{"k":30873,"v":[[0,1,["G2532"]],[1,4,["G1325"]],[4,5,["G3427"]],[5,7,["G2563"]],[7,9,["G3664"]],[9,11,["G4464"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G32"]],[14,15,["G2476"]],[15,16,["G3004"]],[16,17,["G1453"]],[17,18,["G2532"]],[18,19,["G3354"]],[19,20,["G3588"]],[20,21,["G3485"]],[21,23,["G2316"]],[23,24,["G2532"]],[24,25,["G3588"]],[25,26,["G2379"]],[26,27,["G2532"]],[27,30,["G4352"]],[30,31,["G1722","G846"]]]},{"k":30874,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G833"]],[3,6,["G1855"]],[6,7,["G3588"]],[7,8,["G3485"]],[8,9,["G1544"]],[9,10,["G1854"]],[10,11,["G2532"]],[11,12,["G3354"]],[12,13,["G846"]],[13,14,["G3361"]],[14,15,["G3754"]],[15,18,["G1325"]],[18,20,["G3588"]],[20,21,["G1484"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G40"]],[24,25,["G4172"]],[25,30,["G3961"]],[30,33,["G5062","G1417"]],[33,34,["G3376"]]]},{"k":30875,"v":[[0,1,["G2532"]],[1,4,["G1325"]],[4,7,["G3450"]],[7,8,["G1417"]],[8,9,["G3144"]],[9,10,["G2532"]],[10,13,["G4395"]],[13,19,["G5507","G1250","G1835"]],[19,20,["G2250"]],[20,21,["G4016"]],[21,23,["G4526"]]]},{"k":30876,"v":[[0,1,["G3778"]],[1,2,["G1526"]],[2,3,["G3588"]],[3,4,["G1417"]],[4,6,["G1636"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G1417"]],[9,10,["G3087"]],[10,11,["G2476"]],[11,12,["G1799"]],[12,13,["G3588"]],[13,14,["G2316"]],[14,16,["G3588"]],[16,17,["G1093"]]]},{"k":30877,"v":[[0,1,["G2532"]],[1,4,["G1536"]],[4,5,["G2309"]],[5,6,["G91"]],[6,7,["G846"]],[7,8,["G4442"]],[8,9,["G1607"]],[9,11,["G1537"]],[11,12,["G848"]],[12,13,["G4750"]],[13,14,["G2532"]],[14,15,["G2719"]],[15,16,["G848"]],[16,17,["G2190"]],[17,18,["G2532"]],[18,21,["G1536"]],[21,22,["G2309"]],[22,23,["G91"]],[23,24,["G846"]],[24,25,["G846"]],[25,26,["G1163"]],[26,29,["G3779"]],[29,31,["G615"]]]},{"k":30878,"v":[[0,1,["G3778"]],[1,2,["G2192"]],[2,3,["G1849"]],[3,5,["G2808"]],[5,6,["G3772"]],[6,7,["G2443"]],[7,10,["G1026","G3361","G5205"]],[10,11,["G1722"]],[11,13,["G2250"]],[13,15,["G848"]],[15,16,["G4394"]],[16,17,["G2532"]],[17,18,["G2192"]],[18,19,["G1849"]],[19,20,["G1909"]],[20,21,["G5204"]],[21,23,["G4762"]],[23,24,["G846"]],[24,25,["G1519"]],[25,26,["G129"]],[26,27,["G2532"]],[27,29,["G3960"]],[29,30,["G3588"]],[30,31,["G1093"]],[31,33,["G3956"]],[33,34,["G4127"]],[34,37,["G3740"]],[37,39,["G2309","G1437"]]]},{"k":30879,"v":[[0,1,["G2532"]],[1,2,["G3752"]],[2,6,["G5055"]],[6,7,["G848"]],[7,8,["G3141"]],[8,9,["G3588"]],[9,10,["G2342"]],[10,12,["G305"]],[12,14,["G1537"]],[14,15,["G3588"]],[15,17,["G12"]],[17,19,["G4160"]],[19,20,["G4171"]],[20,21,["G3326"]],[21,22,["G846"]],[22,23,["G2532"]],[23,25,["G3528"]],[25,26,["G846"]],[26,27,["G2532"]],[27,28,["G615"]],[28,29,["G846"]]]},{"k":30880,"v":[[0,1,["G2532"]],[1,2,["G848"]],[2,4,["G4430"]],[4,7,["G1909"]],[7,8,["G3588"]],[8,9,["G4113"]],[9,11,["G3588"]],[11,12,["G3173"]],[12,13,["G4172"]],[13,14,["G3748"]],[14,15,["G4153"]],[15,17,["G2564"]],[17,18,["G4670"]],[18,19,["G2532"]],[19,20,["G125"]],[20,21,["G3699"]],[21,22,["G2532"]],[22,23,["G2257"]],[23,24,["G2962"]],[24,26,["G4717"]]]},{"k":30881,"v":[[0,1,["G2532"]],[1,3,["G1537"]],[3,4,["G3588"]],[4,5,["G2992"]],[5,6,["G2532"]],[6,7,["G5443"]],[7,8,["G2532"]],[8,9,["G1100"]],[9,10,["G2532"]],[10,11,["G1484"]],[11,13,["G991"]],[13,14,["G848"]],[14,16,["G4430"]],[16,17,["G5140"]],[17,18,["G2250"]],[18,19,["G2532"]],[19,21,["G2255"]],[21,22,["G2532"]],[22,24,["G3756"]],[24,25,["G863"]],[25,26,["G848"]],[26,28,["G4430"]],[28,31,["G5087"]],[31,32,["G1519"]],[32,33,["G3418"]]]},{"k":30882,"v":[[0,1,["G2532"]],[1,4,["G2730"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G1093"]],[7,9,["G5463"]],[9,10,["G1909"]],[10,11,["G846"]],[11,12,["G2532"]],[12,14,["G2165"]],[14,15,["G2532"]],[15,17,["G3992"]],[17,18,["G1435"]],[18,21,["G240"]],[21,22,["G3754"]],[22,23,["G3778"]],[23,24,["G1417"]],[24,25,["G4396"]],[25,26,["G928"]],[26,29,["G2730"]],[29,30,["G1909"]],[30,31,["G3588"]],[31,32,["G1093"]]]},{"k":30883,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,3,["G5140"]],[3,4,["G2250"]],[4,5,["G2532"]],[5,7,["G2255"]],[7,9,["G4151"]],[9,11,["G2222"]],[11,12,["G1537"]],[12,13,["G2316"]],[13,14,["G1525"]],[14,15,["G1909"]],[15,16,["G846"]],[16,17,["G2532"]],[17,19,["G2476"]],[19,20,["G1909"]],[20,21,["G848"]],[21,22,["G4228"]],[22,23,["G2532"]],[23,24,["G3173"]],[24,25,["G5401"]],[25,26,["G4098"]],[26,27,["G1909"]],[27,30,["G2334"]],[30,31,["G846"]]]},{"k":30884,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,5,["G3173"]],[5,6,["G5456"]],[6,7,["G1537"]],[7,8,["G3772"]],[8,9,["G3004"]],[9,11,["G846"]],[11,13,["G305"]],[13,14,["G5602"]],[14,15,["G2532"]],[15,18,["G305"]],[18,19,["G1519"]],[19,20,["G3772"]],[20,21,["G1722"]],[21,23,["G3507"]],[23,24,["G2532"]],[24,25,["G848"]],[25,26,["G2190"]],[26,27,["G2334"]],[27,28,["G846"]]]},{"k":30885,"v":[[0,1,["G2532"]],[1,3,["G1565"]],[3,4,["G5610"]],[4,5,["G1096"]],[5,8,["G3173"]],[8,9,["G4578"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,13,["G1182"]],[13,15,["G3588"]],[15,16,["G4172"]],[16,17,["G4098"]],[17,18,["G2532"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G4578"]],[21,23,["G615"]],[23,24,["(G3686)"]],[24,25,["G444"]],[25,26,["G2033"]],[26,27,["G5505"]],[27,28,["G2532"]],[28,29,["G3588"]],[29,30,["G3062"]],[30,31,["G1096"]],[31,32,["G1719"]],[32,33,["G2532"]],[33,34,["G1325"]],[34,35,["G1391"]],[35,37,["G3588"]],[37,38,["G2316"]],[38,40,["G3772"]]]},{"k":30886,"v":[[0,1,["G3588"]],[1,2,["G1208"]],[2,3,["(G3759)"]],[3,5,["G565"]],[5,7,["G2400"]],[7,8,["G3588"]],[8,9,["G5154"]],[9,10,["(G3759)"]],[10,11,["G2064"]],[11,12,["G5035"]]]},{"k":30887,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1442"]],[3,4,["G32"]],[4,5,["G4537"]],[5,6,["G2532"]],[6,8,["G1096"]],[8,9,["G3173"]],[9,10,["G5456"]],[10,11,["G1722"]],[11,12,["G3772"]],[12,13,["G3004"]],[13,14,["G3588"]],[14,15,["G932"]],[15,18,["G2889"]],[18,20,["G1096"]],[20,24,["G2257"]],[24,25,["G2962"]],[25,26,["G2532"]],[26,28,["G848"]],[28,29,["G5547"]],[29,30,["G2532"]],[30,33,["G936"]],[33,37,["G1519","G165","G165"]]]},{"k":30888,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,5,["G5064","G2532","G1501"]],[5,6,["G4245"]],[6,8,["G2521"]],[8,9,["G1799"]],[9,10,["G2316"]],[10,11,["G1909"]],[11,12,["G848"]],[12,13,["G2362"]],[13,14,["G4098"]],[14,15,["G1909"]],[15,16,["G848"]],[16,17,["G4383"]],[17,18,["G2532"]],[18,19,["G4352"]],[19,20,["G2316"]]]},{"k":30889,"v":[[0,1,["G3004"]],[1,5,["G2168","G4671"]],[5,7,["G2962"]],[7,8,["G2316"]],[8,9,["G3841"]],[9,17,["G3801"]],[17,18,["G3754"]],[18,21,["G2983"]],[21,24,["G4675"]],[24,25,["G3173"]],[25,26,["G1411"]],[26,27,["G2532"]],[27,29,["G936"]]]},{"k":30890,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1484"]],[3,5,["G3710"]],[5,6,["G2532"]],[6,7,["G4675"]],[7,8,["G3709"]],[8,10,["G2064"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G2540"]],[13,15,["G3588"]],[15,16,["G3498"]],[16,21,["G2919"]],[21,22,["G2532"]],[22,26,["G1325"]],[26,27,["G3408"]],[27,29,["G4675"]],[29,30,["G1401"]],[30,31,["G3588"]],[31,32,["G4396"]],[32,33,["G2532"]],[33,35,["G3588"]],[35,36,["G40"]],[36,37,["G2532"]],[37,40,["G5399"]],[40,41,["G4675"]],[41,42,["G3686"]],[42,43,["G3398"]],[43,44,["G2532"]],[44,45,["G3173"]],[45,46,["G2532"]],[46,48,["G1311"]],[48,51,["G1311"]],[51,52,["G3588"]],[52,53,["G1093"]]]},{"k":30891,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3485"]],[3,5,["G2316"]],[5,7,["G455"]],[7,8,["G1722"]],[8,9,["G3772"]],[9,10,["G2532"]],[10,13,["G3700"]],[13,14,["G1722"]],[14,15,["G848"]],[15,16,["G3485"]],[16,17,["G3588"]],[17,18,["G2787"]],[18,20,["G848"]],[20,21,["G1242"]],[21,22,["G2532"]],[22,24,["G1096"]],[24,25,["G796"]],[25,26,["G2532"]],[26,27,["G5456"]],[27,28,["G2532"]],[28,29,["G1027"]],[29,30,["G2532"]],[30,32,["G4578"]],[32,33,["G2532"]],[33,34,["G3173"]],[34,35,["G5464"]]]},{"k":30892,"v":[[0,1,["G2532"]],[1,3,["G3700"]],[3,5,["G3173"]],[5,6,["G4592"]],[6,7,["G1722"]],[7,8,["G3772"]],[8,10,["G1135"]],[10,12,["G4016"]],[12,13,["G3588"]],[13,14,["G2246"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G4582"]],[17,18,["G5270"]],[18,19,["G848"]],[19,20,["G4228"]],[20,21,["G2532"]],[21,22,["G1909"]],[22,23,["G848"]],[23,24,["G2776"]],[24,26,["G4735"]],[26,28,["G1427"]],[28,29,["G792"]]]},{"k":30893,"v":[[0,1,["G2532"]],[1,5,["G2192","G1722","G1064"]],[5,6,["G2896"]],[6,9,["G5605"]],[9,10,["G2532"]],[10,11,["G928"]],[11,14,["G5088"]]]},{"k":30894,"v":[[0,1,["G2532"]],[1,3,["G3700"]],[3,4,["G243"]],[4,5,["G4592"]],[5,6,["G1722"]],[6,7,["G3772"]],[7,8,["G2532"]],[8,9,["G2400"]],[9,11,["G3173"]],[11,12,["G4450"]],[12,13,["G1404"]],[13,14,["G2192"]],[14,15,["G2033"]],[15,16,["G2776"]],[16,17,["G2532"]],[17,18,["G1176"]],[18,19,["G2768"]],[19,20,["G2532"]],[20,21,["G2033"]],[21,22,["G1238"]],[22,23,["G1909"]],[23,24,["G848"]],[24,25,["G2776"]]]},{"k":30895,"v":[[0,1,["G2532"]],[1,2,["G848"]],[2,3,["G3769"]],[3,4,["G4951"]],[4,5,["G3588"]],[5,7,["G5154"]],[7,9,["G3588"]],[9,10,["G792"]],[10,12,["G3772"]],[12,13,["G2532"]],[13,15,["G906"]],[15,16,["G846"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,19,["G1093"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G1404"]],[22,23,["G2476"]],[23,24,["G1799"]],[24,25,["G3588"]],[25,26,["G1135"]],[26,29,["G3195"]],[29,32,["G5088"]],[32,34,["G2443"]],[34,35,["G2719"]],[35,36,["G848"]],[36,37,["G5043"]],[37,40,["G3752"]],[40,43,["G5088"]]]},{"k":30896,"v":[[0,1,["G2532"]],[1,4,["G5088"]],[4,6,["G730"]],[6,7,["G5207"]],[7,8,["G3739"]],[8,9,["G3195"]],[9,11,["G4165"]],[11,12,["G3956"]],[12,13,["G1484"]],[13,14,["G1722"]],[14,16,["G4464"]],[16,18,["G4603"]],[18,19,["G2532"]],[19,20,["G848"]],[20,21,["G5043"]],[21,24,["G726"]],[24,25,["G4314"]],[25,26,["G2316"]],[26,27,["G2532"]],[27,29,["G848"]],[29,30,["G2362"]]]},{"k":30897,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1135"]],[3,4,["G5343"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G2048"]],[7,8,["G3699"]],[8,10,["G2192"]],[10,12,["G5117"]],[12,13,["G2090"]],[13,14,["G575"]],[14,15,["G2316"]],[15,16,["G2443"]],[16,19,["G5142"]],[19,20,["G846"]],[20,21,["G1563"]],[21,27,["G5507","G1250","G1835"]],[27,28,["G2250"]]]},{"k":30898,"v":[[0,1,["G2532"]],[1,3,["G1096"]],[3,4,["G4171"]],[4,5,["G1722"]],[5,6,["G3772"]],[6,7,["G3413"]],[7,8,["G2532"]],[8,9,["G848"]],[9,10,["G32"]],[10,11,["G4170"]],[11,12,["G2596"]],[12,13,["G3588"]],[13,14,["G1404"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G1404"]],[17,18,["G4170"]],[18,19,["G2532"]],[19,20,["G848"]],[20,21,["G32"]]]},{"k":30899,"v":[[0,1,["G2532"]],[1,2,["G2480"]],[2,3,["G3756"]],[3,4,["G3777"]],[4,6,["G848"]],[6,7,["G5117"]],[7,8,["G2147"]],[8,10,["G2089"]],[10,11,["G1722"]],[11,12,["G3772"]]]},{"k":30900,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3173"]],[3,4,["G1404"]],[4,7,["G906"]],[7,9,["G744"]],[9,10,["G3789"]],[10,11,["G2564"]],[11,13,["G1228"]],[13,14,["G2532"]],[14,15,["G4567"]],[15,17,["G4105"]],[17,18,["G3588"]],[18,19,["G3650"]],[19,20,["G3625"]],[20,24,["G906"]],[24,25,["G1519"]],[25,26,["G3588"]],[26,27,["G1093"]],[27,28,["G2532"]],[28,29,["G848"]],[29,30,["G32"]],[30,33,["G906"]],[33,34,["G3326"]],[34,35,["G846"]]]},{"k":30901,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,5,["G3173"]],[5,6,["G5456"]],[6,7,["G3004"]],[7,8,["G1722"]],[8,9,["G3772"]],[9,10,["G737"]],[10,12,["G1096"]],[12,13,["G4991"]],[13,14,["G2532"]],[14,15,["G1411"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G932"]],[18,20,["G2257"]],[20,21,["G2316"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G1849"]],[24,26,["G848"]],[26,27,["G5547"]],[27,28,["G3754"]],[28,29,["G3588"]],[29,30,["G2725"]],[30,32,["G2257"]],[32,33,["G80"]],[33,36,["G2598"]],[36,38,["G2723"]],[38,39,["G846"]],[39,40,["G1799"]],[40,41,["G2257"]],[41,42,["G2316"]],[42,43,["G2250"]],[43,44,["G2532"]],[44,45,["G3571"]]]},{"k":30902,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3528"]],[3,4,["G846"]],[4,5,["G1223"]],[5,6,["G3588"]],[6,7,["G129"]],[7,9,["G3588"]],[9,10,["G721"]],[10,11,["G2532"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G3056"]],[14,16,["G848"]],[16,17,["G3141"]],[17,18,["G2532"]],[18,20,["G25"]],[20,21,["G3756"]],[21,22,["G848"]],[22,23,["G5590"]],[23,24,["G891"]],[24,26,["G2288"]]]},{"k":30903,"v":[[0,1,["G1223","G5124"]],[1,2,["G2165"]],[2,4,["G3772"]],[4,5,["G2532"]],[5,8,["G4637"]],[8,9,["G1722"]],[9,10,["G846"]],[10,11,["G3759"]],[11,13,["G3588"]],[13,14,["G2730"]],[14,16,["G3588"]],[16,17,["G1093"]],[17,18,["G2532"]],[18,20,["G3588"]],[20,21,["G2281"]],[21,22,["G3754"]],[22,23,["G3588"]],[23,24,["G1228"]],[24,27,["G2597"]],[27,28,["G4314"]],[28,29,["G5209"]],[29,30,["G2192"]],[30,31,["G3173"]],[31,32,["G2372"]],[32,35,["G1492"]],[35,36,["G3754"]],[36,38,["G2192"]],[38,41,["G3641"]],[41,42,["G2540"]]]},{"k":30904,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,3,["G3588"]],[3,4,["G1404"]],[4,5,["G1492"]],[5,6,["G3754"]],[6,9,["G906"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G1093"]],[12,14,["G1377"]],[14,15,["G3588"]],[15,16,["G1135"]],[16,17,["G3748"]],[17,19,["G5088"]],[19,20,["G3588"]],[20,21,["G730"]],[21,22,[]]]},{"k":30905,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G1135"]],[4,6,["G1325"]],[6,7,["G1417"]],[7,8,["G4420"]],[8,11,["G3173"]],[11,12,["G105"]],[12,13,["G2443"]],[13,16,["G4072"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,19,["G2048"]],[19,20,["G1519"]],[20,21,["G848"]],[21,22,["G5117"]],[22,23,["G3699"]],[23,26,["G5142"]],[26,27,["(G1563)"]],[27,29,["G2540"]],[29,30,["G2532"]],[30,31,["G2540"]],[31,32,["G2532"]],[32,33,["G2255"]],[33,35,["G2540"]],[35,36,["G575"]],[36,38,["G4383"]],[38,40,["G3588"]],[40,41,["G3789"]]]},{"k":30906,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3789"]],[3,4,["G906"]],[4,6,["G1537"]],[6,7,["G848"]],[7,8,["G4750"]],[8,9,["G5204"]],[9,10,["G5613"]],[10,12,["G4215"]],[12,13,["G3694"]],[13,14,["G3588"]],[14,15,["G1135"]],[15,16,["G2443"]],[16,19,["G4160"]],[19,20,["G5026"]],[20,27,["G4216"]]]},{"k":30907,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1093"]],[3,4,["G997"]],[4,5,["G3588"]],[5,6,["G1135"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G1093"]],[9,10,["G455"]],[10,11,["G848"]],[11,12,["G4750"]],[12,13,["G2532"]],[13,15,["G2666"]],[15,16,["G3588"]],[16,17,["G4215"]],[17,18,["G3739"]],[18,19,["G3588"]],[19,20,["G1404"]],[20,21,["G906"]],[21,23,["G1537"]],[23,24,["G848"]],[24,25,["G4750"]]]},{"k":30908,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1404"]],[3,5,["G3710"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G1135"]],[8,9,["G2532"]],[9,10,["G565"]],[10,12,["G4160"]],[12,13,["G4171"]],[13,14,["G3326"]],[14,15,["G3588"]],[15,16,["G3062"]],[16,18,["G848"]],[18,19,["G4690"]],[19,21,["G5083"]],[21,22,["G3588"]],[22,23,["G1785"]],[23,25,["G2316"]],[25,26,["G2532"]],[26,27,["G2192"]],[27,28,["G3588"]],[28,29,["G3141"]],[29,31,["G2424"]],[31,32,["G5547"]]]},{"k":30909,"v":[[0,1,["G2532"]],[1,3,["G2476"]],[3,4,["G1909"]],[4,5,["G3588"]],[5,6,["G285"]],[6,8,["G3588"]],[8,9,["G2281"]],[9,10,["G2532"]],[10,11,["G1492"]],[11,13,["G2342"]],[13,15,["G305"]],[15,17,["G1537"]],[17,18,["G3588"]],[18,19,["G2281"]],[19,20,["G2192"]],[20,21,["G2033"]],[21,22,["G2776"]],[22,23,["G2532"]],[23,24,["G1176"]],[24,25,["G2768"]],[25,26,["G2532"]],[26,27,["G1909"]],[27,28,["G848"]],[28,29,["G2768"]],[29,30,["G1176"]],[30,31,["G1238"]],[31,32,["G2532"]],[32,33,["G1909"]],[33,34,["G848"]],[34,35,["G2776"]],[35,37,["G3686"]],[37,39,["G988"]]]},{"k":30910,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2342"]],[3,4,["G3739"]],[4,6,["G1492"]],[6,7,["G2258"]],[7,9,["G3664"]],[9,11,["G3917"]],[11,12,["G2532"]],[12,13,["G848"]],[13,14,["G4228"]],[14,16,["G5613"]],[16,21,["G715"]],[21,22,["G2532"]],[22,23,["G848"]],[23,24,["G4750"]],[24,25,["G5613"]],[25,27,["G4750"]],[27,30,["G3023"]],[30,31,["G2532"]],[31,32,["G3588"]],[32,33,["G1404"]],[33,34,["G1325"]],[34,35,["G846"]],[35,36,["G848"]],[36,37,["G1411"]],[37,38,["G2532"]],[38,39,["G848"]],[39,40,["G2362"]],[40,41,["G2532"]],[41,42,["G3173"]],[42,43,["G1849"]]]},{"k":30911,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3391"]],[4,6,["G848"]],[6,7,["G2776"]],[7,10,["G5613"]],[10,11,["G4969"]],[11,12,["G1519"]],[12,13,["G2288"]],[13,14,["G2532"]],[14,15,["G848"]],[15,16,["G2288"]],[16,17,["G4127"]],[17,19,["G2323"]],[19,20,["G2532"]],[20,21,["G3650"]],[21,22,["G3588"]],[22,23,["G1093"]],[23,24,["G2296"]],[24,25,["G3694"]],[25,26,["G3588"]],[26,27,["G2342"]]]},{"k":30912,"v":[[0,1,["G2532"]],[1,3,["G4352"]],[3,4,["G3588"]],[4,5,["G1404"]],[5,6,["G3739"]],[6,7,["G1325"]],[7,8,["G1849"]],[8,10,["G3588"]],[10,11,["G2342"]],[11,12,["G2532"]],[12,14,["G4352"]],[14,15,["G3588"]],[15,16,["G2342"]],[16,17,["G3004"]],[17,18,["G5101"]],[18,21,["G3664"]],[21,22,["G3588"]],[22,23,["G2342"]],[23,24,["G5101"]],[24,26,["G1410"]],[26,29,["G4170"]],[29,30,["G3326"]],[30,31,["G846"]]]},{"k":30913,"v":[[0,1,["G2532"]],[1,4,["G1325"]],[4,6,["G846"]],[6,8,["G4750"]],[8,9,["G2980"]],[9,11,["G3173"]],[11,12,["G2532"]],[12,13,["G988"]],[13,14,["G2532"]],[14,15,["G1849"]],[15,17,["G1325"]],[17,19,["G846"]],[19,21,["G4160"]],[21,24,["G5062","G1417"]],[24,25,["G3376"]]]},{"k":30914,"v":[[0,1,["G2532"]],[1,3,["G455"]],[3,4,["G848"]],[4,5,["G4750"]],[5,6,["G1519"]],[6,7,["G988"]],[7,8,["G4314"]],[8,9,["G2316"]],[9,11,["G987"]],[11,12,["G848"]],[12,13,["G3686"]],[13,14,["G2532"]],[14,15,["G848"]],[15,16,["G4633"]],[16,17,["G2532"]],[17,20,["G4637"]],[20,21,["G1722"]],[21,22,["G3772"]]]},{"k":30915,"v":[[0,1,["G2532"]],[1,4,["G1325"]],[4,6,["G846"]],[6,8,["G4160"]],[8,9,["G4171"]],[9,10,["G3326"]],[10,11,["G3588"]],[11,12,["G40"]],[12,13,["G2532"]],[13,15,["G3528"]],[15,16,["G846"]],[16,17,["G2532"]],[17,18,["G1849"]],[18,20,["G1325"]],[20,21,["G846"]],[21,22,["G1909"]],[22,23,["G3956"]],[23,24,["G5443"]],[24,25,["G2532"]],[25,26,["G1100"]],[26,27,["G2532"]],[27,28,["G1484"]]]},{"k":30916,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,4,["G2730"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G1093"]],[7,9,["G4352"]],[9,10,["G846"]],[10,11,["G3739"]],[11,12,["G3686"]],[12,14,["G3756"]],[14,15,["G1125"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G976"]],[18,20,["G2222"]],[20,22,["G3588"]],[22,23,["G721"]],[23,24,["G4969"]],[24,25,["G575"]],[25,27,["G2602"]],[27,30,["G2889"]]]},{"k":30917,"v":[[0,3,["G1536"]],[3,4,["G2192"]],[4,6,["G3775"]],[6,9,["G191"]]]},{"k":30918,"v":[[0,2,["G1536"]],[2,4,["G4863"]],[4,5,["G161"]],[5,7,["G5217"]],[7,8,["G1519"]],[8,9,["G161"]],[9,11,["G1536"]],[11,12,["G615"]],[12,13,["G1722"]],[13,15,["G3162"]],[15,16,["G1163"]],[16,17,["(G846)"]],[17,18,["G615"]],[18,19,["G1722"]],[19,21,["G3162"]],[21,22,["G5602"]],[22,23,["G2076"]],[23,24,["G3588"]],[24,25,["G5281"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G4102"]],[28,30,["G3588"]],[30,31,["G40"]]]},{"k":30919,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G243"]],[4,5,["G2342"]],[5,7,["G305"]],[7,9,["G1537"]],[9,10,["G3588"]],[10,11,["G1093"]],[11,12,["G2532"]],[12,14,["G2192"]],[14,15,["G1417"]],[15,16,["G2768"]],[16,17,["G3664"]],[17,19,["G721"]],[19,20,["G2532"]],[20,22,["G2980"]],[22,23,["G5613"]],[23,25,["G1404"]]]},{"k":30920,"v":[[0,1,["G2532"]],[1,3,["G4160"]],[3,4,["G3956"]],[4,5,["G3588"]],[5,6,["G1849"]],[6,8,["G3588"]],[8,9,["G4413"]],[9,10,["G2342"]],[10,11,["G1799"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G4160"]],[14,15,["G3588"]],[15,16,["G1093"]],[16,17,["G2532"]],[17,20,["G2730"]],[20,21,["G1722","G846"]],[21,22,["G2443"]],[22,23,["G4352"]],[23,24,["G3588"]],[24,25,["G4413"]],[25,26,["G2342"]],[26,27,["G3739"]],[27,29,["G848","G2288","G4127"]],[29,31,["G2323"]]]},{"k":30921,"v":[[0,1,["G2532"]],[1,3,["G4160"]],[3,4,["G3173"]],[4,5,["G4592"]],[5,7,["G2443"]],[7,8,["(G2532)"]],[8,9,["G4160"]],[9,10,["G4442"]],[10,12,["G2597"]],[12,13,["G1537"]],[13,14,["G3772"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G1093"]],[17,20,["G1799"]],[20,22,["G444"]]]},{"k":30922,"v":[[0,1,["G2532"]],[1,2,["G4105"]],[2,5,["G2730"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G1093"]],[8,9,["G1223"]],[9,14,["G4592"]],[14,15,["G3739"]],[15,18,["G1325","G846"]],[18,20,["G4160"]],[20,23,["G1799"]],[23,25,["G3588"]],[25,26,["G2342"]],[26,27,["G3004"]],[27,31,["G2730"]],[31,32,["G1909"]],[32,33,["G3588"]],[33,34,["G1093"]],[34,38,["G4160"]],[38,40,["G1504"]],[40,42,["G3588"]],[42,43,["G2342"]],[43,44,["G3739"]],[44,45,["G2192"]],[45,46,["G3588"]],[46,47,["G4127"]],[47,50,["G3162"]],[50,51,["G2532"]],[51,53,["G2198"]]]},{"k":30923,"v":[[0,1,["G2532"]],[1,4,["G1325","G846"]],[4,6,["G1325"]],[6,7,["G4151"]],[7,9,["G3588"]],[9,10,["G1504"]],[10,12,["G3588"]],[12,13,["G2342"]],[13,14,["G2443"]],[14,15,["G3588"]],[15,16,["G1504"]],[16,18,["G3588"]],[18,19,["G2342"]],[19,21,["G2532"]],[21,22,["G2980"]],[22,23,["G2532"]],[23,24,["G4160"]],[24,28,["G3745","G302"]],[28,30,["G3361"]],[30,31,["G4352"]],[31,32,["G3588"]],[32,33,["G1504"]],[33,35,["G3588"]],[35,36,["G2342"]],[36,37,["(G2443)"]],[37,39,["G615"]]]},{"k":30924,"v":[[0,1,["G2532"]],[1,3,["G4160"]],[3,4,["G3956"]],[4,6,["G3398"]],[6,7,["G2532"]],[7,8,["G3173","(G2532)"]],[8,9,["G4145"]],[9,10,["G2532"]],[10,11,["G4434","(G2532)"]],[11,12,["G1658"]],[12,13,["G2532"]],[13,14,["G1401"]],[14,15,["G2443"]],[15,16,["G1325","G846"]],[16,18,["G5480"]],[18,19,["G1909"]],[19,20,["G848"]],[20,21,["G1188"]],[21,22,["G5495"]],[22,23,["G2228"]],[23,24,["G1909"]],[24,25,["G848"]],[25,26,["G3359"]]]},{"k":30925,"v":[[0,1,["G2532"]],[1,2,["G2443"]],[2,3,["G3361"]],[3,4,["G5100"]],[4,5,["G1410"]],[5,6,["G59"]],[6,7,["G2228"]],[7,8,["G4453"]],[8,9,["G1508"]],[9,12,["G2192"]],[12,13,["G3588"]],[13,14,["G5480"]],[14,15,["G2228"]],[15,16,["G3588"]],[16,17,["G3686"]],[17,19,["G3588"]],[19,20,["G2342"]],[20,21,["G2228"]],[21,22,["G3588"]],[22,23,["G706"]],[23,25,["G848"]],[25,26,["G3686"]]]},{"k":30926,"v":[[0,1,["G5602"]],[1,2,["G2076"]],[2,3,["G4678"]],[3,7,["G2192"]],[7,8,["G3563"]],[8,9,["G5585"]],[9,10,["G3588"]],[10,11,["G706"]],[11,13,["G3588"]],[13,14,["G2342"]],[14,15,["G1063"]],[15,17,["G2076"]],[17,19,["G706"]],[19,22,["G444"]],[22,23,["G2532"]],[23,24,["G848"]],[24,25,["G706"]],[25,31,["G5516"]]]},{"k":30927,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G2532"]],[4,5,["G2400"]],[5,7,["G721"]],[7,8,["G2476"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G3735"]],[11,12,["G4622"]],[12,13,["G2532"]],[13,14,["G3326"]],[14,15,["G846"]],[15,21,["G1540","G5062","G5064","G5505"]],[21,22,["G2192"]],[22,23,["G848"]],[23,24,["G3962"]],[24,25,["G3686"]],[25,26,["G1125"]],[26,27,["G1909"]],[27,28,["G848"]],[28,29,["G3359"]]]},{"k":30928,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,5,["G5456"]],[5,6,["G1537"]],[6,7,["G3772"]],[7,8,["G5613"]],[8,10,["G5456"]],[10,12,["G4183"]],[12,13,["G5204"]],[13,14,["G2532"]],[14,15,["G5613"]],[15,17,["G5456"]],[17,20,["G3173"]],[20,21,["G1027"]],[21,22,["G2532"]],[22,24,["G191"]],[24,26,["G5456"]],[26,28,["G2790"]],[28,29,["G2789"]],[29,30,["G1722"]],[30,31,["G848"]],[31,32,["G2788"]]]},{"k":30929,"v":[[0,1,["G2532"]],[1,3,["G103"]],[3,6,["G5613"]],[6,8,["G2537"]],[8,9,["G5603"]],[9,10,["G1799"]],[10,11,["G3588"]],[11,12,["G2362"]],[12,13,["G2532"]],[13,14,["G1799"]],[14,15,["G3588"]],[15,16,["G5064"]],[16,17,["G2226"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G4245"]],[20,21,["G2532"]],[21,23,["G3762"]],[23,24,["G1410"]],[24,25,["G3129"]],[25,27,["G5603"]],[27,28,["G1508"]],[28,29,["G3588"]],[29,35,["G1540","G5062","G5064","G5505"]],[35,38,["G59"]],[38,39,["G575"]],[39,40,["G3588"]],[40,41,["G1093"]]]},{"k":30930,"v":[[0,1,["G3778"]],[1,2,["G1526"]],[2,4,["G3739"]],[4,6,["G3756"]],[6,7,["G3435"]],[7,8,["G3326"]],[8,9,["G1135"]],[9,10,["G1063"]],[10,12,["G1526"]],[12,13,["G3933"]],[13,14,["G3778"]],[14,15,["G1526"]],[15,18,["G190"]],[18,19,["G3588"]],[19,20,["G721"]],[20,21,["G3699","G302"]],[21,23,["G5217"]],[23,24,["G3778"]],[24,26,["G59"]],[26,27,["G575"]],[27,29,["G444"]],[29,32,["G536"]],[32,34,["G2316"]],[34,35,["G2532"]],[35,37,["G3588"]],[37,38,["G721"]]]},{"k":30931,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G848"]],[3,4,["G4750"]],[4,6,["G2147"]],[6,7,["G3756"]],[7,8,["G1388"]],[8,9,["G1063"]],[9,11,["G1526"]],[11,13,["G299"]],[13,14,["G1799"]],[14,15,["G3588"]],[15,16,["G2362"]],[16,18,["G2316"]]]},{"k":30932,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G243"]],[4,5,["G32"]],[5,6,["G4072"]],[6,7,["G1722"]],[7,11,["G3321"]],[11,12,["G2192"]],[12,14,["G166"]],[14,15,["G2098"]],[15,17,["G2097"]],[17,21,["G2730"]],[21,22,["G1909"]],[22,23,["G3588"]],[23,24,["G1093"]],[24,25,["G2532"]],[25,27,["G3956"]],[27,28,["G1484"]],[28,29,["G2532"]],[29,30,["G5443"]],[30,31,["G2532"]],[31,32,["G1100"]],[32,33,["G2532"]],[33,34,["G2992"]]]},{"k":30933,"v":[[0,1,["G3004"]],[1,2,["G1722"]],[2,4,["G3173"]],[4,5,["G5456"]],[5,6,["G5399"]],[6,7,["G2316"]],[7,8,["G2532"]],[8,9,["G1325"]],[9,10,["G1391"]],[10,12,["G846"]],[12,13,["G3754"]],[13,14,["G3588"]],[14,15,["G5610"]],[15,17,["G848"]],[17,18,["G2920"]],[18,20,["G2064"]],[20,21,["G2532"]],[21,22,["G4352"]],[22,25,["G4160"]],[25,26,["G3772"]],[26,27,["G2532"]],[27,28,["G1093"]],[28,29,["G2532"]],[29,30,["G3588"]],[30,31,["G2281"]],[31,32,["G2532"]],[32,34,["G4077"]],[34,36,["G5204"]]]},{"k":30934,"v":[[0,1,["G2532"]],[1,3,["G190"]],[3,4,["G243"]],[4,5,["G32"]],[5,6,["G3004"]],[6,7,["G897"]],[7,9,["G4098"]],[9,11,["G4098"]],[11,13,["G3173"]],[13,14,["G4172"]],[14,15,["G3754"]],[15,20,["G4222","G1484"]],[20,21,["G1537"]],[21,22,["G3588"]],[22,23,["G3631"]],[23,25,["G3588"]],[25,26,["G2372"]],[26,28,["G848"]],[28,29,["G4202"]]]},{"k":30935,"v":[[0,1,["G2532"]],[1,3,["G5154"]],[3,4,["G32"]],[4,5,["G190"]],[5,6,["G846"]],[6,7,["G3004"]],[7,8,["G1722"]],[8,10,["G3173"]],[10,11,["G5456"]],[11,14,["G1536"]],[14,15,["G4352"]],[15,16,["G3588"]],[16,17,["G2342"]],[17,18,["G2532"]],[18,19,["G848"]],[19,20,["G1504"]],[20,21,["G2532"]],[21,22,["G2983"]],[22,24,["G5480"]],[24,25,["G1909"]],[25,26,["G848"]],[26,27,["G3359"]],[27,28,["G2228"]],[28,29,["G1909"]],[29,30,["G848"]],[30,31,["G5495"]]]},{"k":30936,"v":[[0,2,["G846"]],[2,3,["(G2532)"]],[3,4,["G4095"]],[4,5,["G1537"]],[5,6,["G3588"]],[6,7,["G3631"]],[7,9,["G3588"]],[9,10,["G2372"]],[10,12,["G2316"]],[12,16,["G2767"]],[16,18,["G194"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G4221"]],[21,23,["G848"]],[23,24,["G3709"]],[24,25,["G2532"]],[25,29,["G928"]],[29,30,["G1722"]],[30,31,["G4442"]],[31,32,["G2532"]],[32,33,["G2303"]],[33,36,["G1799"]],[36,38,["G3588"]],[38,39,["G40"]],[39,40,["G32"]],[40,41,["G2532"]],[41,44,["G1799"]],[44,46,["G3588"]],[46,47,["G721"]]]},{"k":30937,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2586"]],[3,5,["G848"]],[5,6,["G929"]],[6,8,["G305"]],[8,12,["G1519","G165","G165"]],[12,13,["G2532"]],[13,15,["G2192"]],[15,16,["G3756"]],[16,17,["G372"]],[17,18,["G2250"]],[18,19,["G2532"]],[19,20,["G3571"]],[20,22,["G4352"]],[22,23,["G3588"]],[23,24,["G2342"]],[24,25,["G2532"]],[25,26,["G848"]],[26,27,["G1504"]],[27,28,["G2532"]],[28,29,["G1536"]],[29,30,["G2983"]],[30,31,["G3588"]],[31,32,["G5480"]],[32,34,["G848"]],[34,35,["G3686"]]]},{"k":30938,"v":[[0,1,["G5602"]],[1,2,["G2076"]],[2,4,["G5281"]],[4,6,["G3588"]],[6,7,["G40"]],[7,8,["G5602"]],[8,12,["G5083"]],[12,13,["G3588"]],[13,14,["G1785"]],[14,16,["G2316"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G4102"]],[19,21,["G2424"]]]},{"k":30939,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,5,["G5456"]],[5,6,["G1537"]],[6,7,["G3772"]],[7,8,["G3004"]],[8,10,["G3427"]],[10,11,["G1125"]],[11,12,["G3107"]],[12,14,["G3588"]],[14,15,["G3498"]],[15,17,["G599"]],[17,18,["G1722"]],[18,20,["G2962"]],[20,22,["G534"]],[22,23,["G3483"]],[23,24,["G3004"]],[24,25,["G3588"]],[25,26,["G4151"]],[26,27,["G2443"]],[27,30,["G373"]],[30,31,["G1537"]],[31,32,["G848"]],[32,33,["G2873"]],[33,34,["G1161"]],[34,35,["G848"]],[35,36,["G2041"]],[36,38,["G190","(G3326)"]],[38,39,["G846"]]]},{"k":30940,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G2532"]],[4,5,["G2400"]],[5,7,["G3022"]],[7,8,["G3507"]],[8,9,["G2532"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G3507"]],[12,14,["G2521"]],[14,16,["G3664"]],[16,18,["G5207"]],[18,20,["G444"]],[20,21,["G2192"]],[21,22,["G1909"]],[22,23,["G848"]],[23,24,["G2776"]],[24,26,["G5552"]],[26,27,["G4735"]],[27,28,["G2532"]],[28,29,["G1722"]],[29,30,["G848"]],[30,31,["G5495"]],[31,33,["G3691"]],[33,34,["G1407"]]]},{"k":30941,"v":[[0,1,["G2532"]],[1,2,["G243"]],[2,3,["G32"]],[3,4,["G1831"]],[4,6,["G1537"]],[6,7,["G3588"]],[7,8,["G3485"]],[8,9,["G2896"]],[9,10,["G1722"]],[10,12,["G3173"]],[12,13,["G5456"]],[13,17,["G2521"]],[17,18,["G1909"]],[18,19,["G3588"]],[19,20,["G3507"]],[20,22,["G3992"]],[22,23,["G4675"]],[23,24,["G1407"]],[24,25,["G2532"]],[25,26,["G2325"]],[26,27,["G3754"]],[27,28,["G3588"]],[28,29,["G5610"]],[29,31,["G2064"]],[31,33,["G4671"]],[33,35,["G2325"]],[35,36,["G3754"]],[36,37,["G3588"]],[37,38,["G2326"]],[38,40,["G3588"]],[40,41,["G1093"]],[41,43,["G3583"]]]},{"k":30942,"v":[[0,1,["G2532"]],[1,4,["G2521"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G3507"]],[7,9,["G906"]],[9,10,["G848"]],[10,11,["G1407"]],[11,12,["G1909"]],[12,13,["G3588"]],[13,14,["G1093"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G1093"]],[17,19,["G2325"]]]},{"k":30943,"v":[[0,1,["G2532"]],[1,2,["G243"]],[2,3,["G32"]],[3,4,["G1831"]],[4,6,["G1537"]],[6,7,["G3588"]],[7,8,["G3485"]],[8,9,["G3588"]],[9,11,["G1722"]],[11,12,["G3772"]],[12,13,["G846"]],[13,14,["G2532"]],[14,15,["G2192"]],[15,17,["G3691"]],[17,18,["G1407"]]]},{"k":30944,"v":[[0,1,["G2532"]],[1,2,["G243"]],[2,3,["G32"]],[3,4,["G1831"]],[4,6,["G1537"]],[6,7,["G3588"]],[7,8,["G2379"]],[8,10,["G2192"]],[10,11,["G1849"]],[11,12,["G1909"]],[12,13,["G4442"]],[13,14,["G2532"]],[14,15,["G5455"]],[15,18,["G3173"]],[18,19,["G2906"]],[19,23,["G2192"]],[23,24,["G3588"]],[24,25,["G3691"]],[25,26,["G1407"]],[26,27,["G3004"]],[27,29,["G3992"]],[29,30,["G4675"]],[30,31,["G3691"]],[31,32,["G1407"]],[32,33,["G2532"]],[33,34,["G5166"]],[34,35,["G3588"]],[35,36,["G1009"]],[36,38,["G3588"]],[38,39,["G288"]],[39,41,["G3588"]],[41,42,["G1093"]],[42,43,["G3754"]],[43,44,["G848"]],[44,45,["G4718"]],[45,48,["G187"]]]},{"k":30945,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G32"]],[3,5,["G906"]],[5,6,["G848"]],[6,7,["G1407"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G1093"]],[10,11,["G2532"]],[11,12,["G5166"]],[12,13,["G3588"]],[13,14,["G288"]],[14,16,["G3588"]],[16,17,["G1093"]],[17,18,["G2532"]],[18,19,["G906"]],[19,21,["G1519"]],[21,22,["G3588"]],[22,23,["G3173"]],[23,24,["G3025"]],[24,26,["G3588"]],[26,27,["G2372"]],[27,29,["G2316"]]]},{"k":30946,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3025"]],[3,5,["G3961"]],[5,6,["G1854"]],[6,7,["G3588"]],[7,8,["G4172"]],[8,9,["G2532"]],[9,10,["G129"]],[10,11,["G1831"]],[11,13,["G1537"]],[13,14,["G3588"]],[14,15,["G3025"]],[15,17,["G891"]],[17,18,["G3588"]],[18,19,["G2462"]],[19,20,["G5469"]],[20,24,["G575"]],[24,29,["G5507","G1812"]],[29,30,["G4712"]]]},{"k":30947,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G243"]],[4,5,["G4592"]],[5,6,["G1722"]],[6,7,["G3772"]],[7,8,["G3173"]],[8,9,["G2532"]],[9,10,["G2298"]],[10,11,["G2033"]],[11,12,["G32"]],[12,13,["G2192"]],[13,14,["G3588"]],[14,15,["G2033"]],[15,16,["G2078"]],[16,17,["G4127"]],[17,18,["G3754"]],[18,19,["G1722"]],[19,20,["G846"]],[20,23,["G5055"]],[23,24,["G3588"]],[24,25,["G2372"]],[25,27,["G2316"]]]},{"k":30948,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,6,["G5613"]],[6,8,["G2281"]],[8,10,["G5193"]],[10,11,["G3396"]],[11,13,["G4442"]],[13,14,["G2532"]],[14,20,["G3528"]],[20,21,["G1537"]],[21,22,["G3588"]],[22,23,["G2342"]],[23,24,["G2532"]],[24,25,["G1537"]],[25,26,["G848"]],[26,27,["G1504"]],[27,28,["G2532"]],[28,29,["G1537"]],[29,30,["G848"]],[30,31,["G5480"]],[31,33,["G1537"]],[33,34,["G3588"]],[34,35,["G706"]],[35,37,["G848"]],[37,38,["G3686"]],[38,39,["G2476"]],[39,40,["G1909"]],[40,41,["G3588"]],[41,42,["G2281"]],[42,44,["G5193"]],[44,45,["G2192"]],[45,47,["G2788"]],[47,49,["G2316"]]]},{"k":30949,"v":[[0,1,["G2532"]],[1,3,["G103"]],[3,4,["G3588"]],[4,5,["G5603"]],[5,7,["G3475"]],[7,8,["G3588"]],[8,9,["G1401"]],[9,11,["G2316"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G5603"]],[14,16,["G3588"]],[16,17,["G721"]],[17,18,["G3004"]],[18,19,["G3173"]],[19,20,["G2532"]],[20,21,["G2298"]],[21,23,["G4675"]],[23,24,["G2041"]],[24,25,["G2962"]],[25,26,["G2316"]],[26,27,["G3841"]],[27,28,["G1342"]],[28,29,["G2532"]],[29,30,["G228"]],[30,32,["G4675"]],[32,33,["G3598"]],[33,35,["G935"]],[35,37,["G40"]]]},{"k":30950,"v":[[0,1,["G5101"]],[1,3,["G3364"]],[3,4,["G5399"]],[4,5,["G4571"]],[5,7,["G2962"]],[7,8,["G2532"]],[8,9,["G1392"]],[9,10,["G4675"]],[10,11,["G3686"]],[11,12,["G3754"]],[12,14,["G3441"]],[14,16,["G3741"]],[16,17,["G3754"]],[17,18,["G3956"]],[18,19,["G1484"]],[19,21,["G2240"]],[21,22,["G2532"]],[22,23,["G4352"]],[23,24,["G1799"]],[24,25,["G4675"]],[25,26,["G3754"]],[26,27,["G4675"]],[27,28,["G1345"]],[28,31,["G5319"]]]},{"k":30951,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,3,["G5023"]],[3,5,["G1492"]],[5,6,["G2532"]],[6,7,["G2400"]],[7,8,["G3588"]],[8,9,["G3485"]],[9,11,["G3588"]],[11,12,["G4633"]],[12,14,["G3588"]],[14,15,["G3142"]],[15,16,["G1722"]],[16,17,["G3772"]],[17,19,["G455"]]]},{"k":30952,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2033"]],[3,4,["G32"]],[4,5,["G1831"]],[5,7,["G1537"]],[7,8,["G3588"]],[8,9,["G3485"]],[9,10,["G2192"]],[10,11,["G3588"]],[11,12,["G2033"]],[12,13,["G4127"]],[13,14,["G1746"]],[14,16,["G2513"]],[16,17,["G2532"]],[17,18,["G2986"]],[18,19,["G3043"]],[19,20,["G2532"]],[20,22,["(G4012)"]],[22,23,["G4738"]],[23,24,["G4024"]],[24,26,["G5552"]],[26,27,["G2223"]]]},{"k":30953,"v":[[0,1,["G2532"]],[1,2,["G1520"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G5064"]],[5,6,["G2226"]],[6,7,["G1325"]],[7,9,["G3588"]],[9,10,["G2033"]],[10,11,["G32"]],[11,12,["G2033"]],[12,13,["G5552"]],[13,14,["G5357"]],[14,15,["G1073"]],[15,17,["G3588"]],[17,18,["G2372"]],[18,20,["G2316"]],[20,22,["G2198"]],[22,26,["G1519","G165","G165"]]]},{"k":30954,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3485"]],[3,5,["G1072"]],[5,7,["G2586"]],[7,8,["G1537"]],[8,9,["G3588"]],[9,10,["G1391"]],[10,12,["G2316"]],[12,13,["G2532"]],[13,14,["G1537"]],[14,15,["G848"]],[15,16,["G1411"]],[16,17,["G2532"]],[17,19,["G3762"]],[19,21,["G1410"]],[21,23,["G1525"]],[23,24,["G1519"]],[24,25,["G3588"]],[25,26,["G3485"]],[26,27,["G891"]],[27,28,["G3588"]],[28,29,["G2033"]],[29,30,["G4127"]],[30,32,["G3588"]],[32,33,["G2033"]],[33,34,["G32"]],[34,36,["G5055"]]]},{"k":30955,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,5,["G3173"]],[5,6,["G5456"]],[6,8,["G1537"]],[8,9,["G3588"]],[9,10,["G3485"]],[10,11,["G3004"]],[11,13,["G3588"]],[13,14,["G2033"]],[14,15,["G32"]],[15,18,["G5217"]],[18,19,["G2532"]],[19,21,["G1632"]],[21,22,["G3588"]],[22,23,["G5357"]],[23,25,["G3588"]],[25,26,["G2372"]],[26,28,["G2316"]],[28,29,["G1519"]],[29,30,["G3588"]],[30,31,["G1093"]]]},{"k":30956,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4413"]],[3,4,["G565"]],[4,5,["G2532"]],[5,7,["G1632"]],[7,8,["G848"]],[8,9,["G5357"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G1093"]],[12,13,["G2532"]],[13,15,["G1096"]],[15,17,["G2556"]],[17,18,["G2532"]],[18,19,["G4190"]],[19,20,["G1668"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G444"]],[23,25,["G2192"]],[25,26,["G3588"]],[26,27,["G5480"]],[27,29,["G3588"]],[29,30,["G2342"]],[30,31,["G2532"]],[31,35,["G4352"]],[35,36,["G848"]],[36,37,["G1504"]]]},{"k":30957,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1208"]],[3,4,["G32"]],[4,6,["G1632"]],[6,7,["G848"]],[7,8,["G5357"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G2281"]],[11,12,["G2532"]],[12,14,["G1096"]],[14,15,["G5613"]],[15,17,["G129"]],[17,20,["G3498"]],[20,22,["G2532"]],[22,23,["G3956"]],[23,24,["G2198"]],[24,25,["G5590"]],[25,26,["G599"]],[26,27,["G1722"]],[27,28,["G3588"]],[28,29,["G2281"]]]},{"k":30958,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5154"]],[3,4,["G32"]],[4,6,["G1632"]],[6,7,["G848"]],[7,8,["G5357"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G4215"]],[11,12,["G2532","(G1519)"]],[12,13,["G4077"]],[13,15,["G5204"]],[15,16,["G2532"]],[16,18,["G1096"]],[18,19,["G129"]]]},{"k":30959,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,4,["G3588"]],[4,5,["G32"]],[5,7,["G3588"]],[7,8,["G5204"]],[8,9,["G3004"]],[9,11,["G1488"]],[11,12,["G1342"]],[12,14,["G2962"]],[14,16,["G5607"]],[16,17,["G2532"]],[17,18,["G2258"]],[18,19,["G2532"]],[19,21,["G2071"]],[21,22,["G3754"]],[22,25,["G2919"]],[25,26,["G5023"]]]},{"k":30960,"v":[[0,1,["G3754"]],[1,4,["G1632"]],[4,6,["G129"]],[6,8,["G40"]],[8,9,["G2532"]],[9,10,["G4396"]],[10,11,["G2532"]],[11,14,["G1325"]],[14,15,["G846"]],[15,16,["G129"]],[16,18,["G4095"]],[18,19,["G1063"]],[19,21,["G1526"]],[21,22,["G514"]]]},{"k":30961,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,4,["G243"]],[4,6,["G1537"]],[6,7,["G3588"]],[7,8,["G2379"]],[8,9,["G3004"]],[9,11,["G3483"]],[11,12,["G2962"]],[12,13,["G2316"]],[13,14,["G3841"]],[14,15,["G228"]],[15,16,["G2532"]],[16,17,["G1342"]],[17,19,["G4675"]],[19,20,["G2920"]]]},{"k":30962,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5067"]],[3,4,["G32"]],[4,6,["G1632"]],[6,7,["G848"]],[7,8,["G5357"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G2246"]],[11,12,["G2532"]],[12,15,["G1325"]],[15,17,["G846"]],[17,19,["G2739"]],[19,20,["G444"]],[20,21,["G1722"]],[21,22,["G4442"]]]},{"k":30963,"v":[[0,1,["G2532"]],[1,2,["G444"]],[2,4,["G2739"]],[4,6,["G3173"]],[6,7,["G2738"]],[7,8,["G2532"]],[8,9,["G987"]],[9,10,["G3588"]],[10,11,["G3686"]],[11,13,["G2316"]],[13,15,["G2192"]],[15,16,["G1849"]],[16,17,["G1909"]],[17,18,["G5025"]],[18,19,["G4127"]],[19,20,["G2532"]],[20,22,["G3340"]],[22,23,["G3756"]],[23,25,["G1325"]],[25,26,["G846"]],[26,27,["G1391"]]]},{"k":30964,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3991"]],[3,4,["G32"]],[4,6,["G1632"]],[6,7,["G848"]],[7,8,["G5357"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G2362"]],[11,13,["G3588"]],[13,14,["G2342"]],[14,15,["G2532"]],[15,16,["G848"]],[16,17,["G932"]],[17,18,["G1096"]],[18,21,["G4656"]],[21,22,["G2532"]],[22,24,["G3145"]],[24,25,["G848"]],[25,26,["G1100"]],[26,27,["G1537"]],[27,28,["G4192"]]]},{"k":30965,"v":[[0,1,["G2532"]],[1,2,["G987"]],[2,3,["G3588"]],[3,4,["G2316"]],[4,6,["G3772"]],[6,8,["G1537"]],[8,9,["G848"]],[9,10,["G4192"]],[10,11,["G2532","(G1537)"]],[11,12,["G848"]],[12,13,["G1668"]],[13,14,["G2532"]],[14,15,["G3340"]],[15,16,["G3756"]],[16,17,["G1537"]],[17,18,["G848"]],[18,19,["G2041"]]]},{"k":30966,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1623"]],[3,4,["G32"]],[4,6,["G1632"]],[6,7,["G848"]],[7,8,["G5357"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G3173"]],[11,12,["G4215"]],[12,13,["G2166"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G5204"]],[16,17,["G848"]],[17,20,["G3583"]],[20,21,["G2443"]],[21,22,["G3588"]],[22,23,["G3598"]],[23,25,["G3588"]],[25,26,["G935"]],[26,27,["G575"]],[27,29,["G395","G2246"]],[29,32,["G2090"]]]},{"k":30967,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G5140"]],[4,5,["G169"]],[5,6,["G4151"]],[6,7,["G3664"]],[7,8,["G944"]],[8,11,["G1537"]],[11,12,["G3588"]],[12,13,["G4750"]],[13,15,["G3588"]],[15,16,["G1404"]],[16,17,["G2532"]],[17,19,["G1537"]],[19,20,["G3588"]],[20,21,["G4750"]],[21,23,["G3588"]],[23,24,["G2342"]],[24,25,["G2532"]],[25,27,["G1537"]],[27,28,["G3588"]],[28,29,["G4750"]],[29,31,["G3588"]],[31,33,["G5578"]]]},{"k":30968,"v":[[0,1,["G1063"]],[1,3,["G1526"]],[3,5,["G4151"]],[5,7,["G1142"]],[7,8,["G4160"]],[8,9,["G4592"]],[9,10,["(G3739)"]],[10,12,["G1607"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G935"]],[15,17,["G3588"]],[17,18,["G1093"]],[18,19,["G2532"]],[19,21,["G3588"]],[21,22,["G3650"]],[22,23,["G3625"]],[23,25,["G4863"]],[25,26,["G846"]],[26,27,["G1519"]],[27,28,["G3588"]],[28,29,["G4171"]],[29,31,["G1565"]],[31,32,["G3173"]],[32,33,["G2250"]],[33,35,["G2316"]],[35,36,["G3841"]]]},{"k":30969,"v":[[0,1,["G2400"]],[1,3,["G2064"]],[3,4,["G5613"]],[4,6,["G2812"]],[6,7,["G3107"]],[7,11,["G1127"]],[11,12,["G2532"]],[12,13,["G5083"]],[13,14,["G848"]],[14,15,["G2440"]],[15,16,["G3363"]],[16,18,["G4043"]],[18,19,["G1131"]],[19,20,["G2532"]],[20,22,["G991"]],[22,23,["G848"]],[23,24,["G808"]]]},{"k":30970,"v":[[0,1,["G2532"]],[1,5,["G4863","G846"]],[5,6,["G1519"]],[6,8,["G5117"]],[8,9,["G2564"]],[9,13,["G1447"]],[13,14,["G717"]]]},{"k":30971,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1442"]],[3,4,["G32"]],[4,6,["G1632"]],[6,7,["G848"]],[7,8,["G5357"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G109"]],[11,12,["G2532"]],[12,14,["G1831"]],[14,16,["G3173"]],[16,17,["G5456"]],[17,19,["G575"]],[19,20,["G3588"]],[20,21,["G3485"]],[21,23,["G3772"]],[23,24,["G575"]],[24,25,["G3588"]],[25,26,["G2362"]],[26,27,["G3004"]],[27,30,["G1096"]]]},{"k":30972,"v":[[0,1,["G2532"]],[1,3,["G1096"]],[3,4,["G5456"]],[4,5,["G2532"]],[5,6,["G1027"]],[6,7,["G2532"]],[7,8,["G796"]],[8,9,["G2532"]],[9,11,["G1096"]],[11,13,["G3173"]],[13,14,["G4578"]],[14,16,["G3634"]],[16,17,["G1096"]],[17,18,["G3756"]],[18,19,["G575","G3739"]],[19,20,["G444"]],[20,21,["G1096"]],[21,22,["G1909"]],[22,23,["G3588"]],[23,24,["G1093"]],[24,26,["G5082"]],[26,28,["G4578"]],[28,30,["G3779"]],[30,31,["G3173"]]]},{"k":30973,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3173"]],[3,4,["G4172"]],[4,6,["G1096"]],[6,7,["G1519"]],[7,8,["G5140"]],[8,9,["G3313"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G4172"]],[12,14,["G3588"]],[14,15,["G1484"]],[15,16,["G4098"]],[16,17,["G2532"]],[17,18,["G3173"]],[18,19,["G897"]],[19,22,["G3415"]],[22,23,["G1799"]],[23,24,["G2316"]],[24,26,["G1325"]],[26,28,["G846"]],[28,29,["G3588"]],[29,30,["G4221"]],[30,32,["G3588"]],[32,33,["G3631"]],[33,36,["G2372"]],[36,38,["G848"]],[38,39,["G3709"]]]},{"k":30974,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G3520"]],[3,5,["G5343"]],[5,6,["G2532"]],[6,8,["G3735"]],[8,10,["G3756"]],[10,11,["G2147"]]]},{"k":30975,"v":[[0,1,["G2532"]],[1,3,["G2597"]],[3,4,["G1909"]],[4,5,["G444"]],[5,7,["G3173"]],[7,8,["G5464"]],[8,10,["G1537"]],[10,11,["G3772"]],[11,14,["G5613"]],[14,19,["G5006"]],[19,20,["G2532"]],[20,21,["G444"]],[21,22,["G987"]],[22,23,["G2316"]],[23,25,["G1537"]],[25,26,["G3588"]],[26,27,["G4127"]],[27,29,["G3588"]],[29,30,["G5464"]],[30,31,["G3754"]],[31,32,["G3588"]],[32,33,["G4127"]],[33,34,["G848"]],[34,35,["G2076"]],[35,36,["G4970"]],[36,37,["G3173"]]]},{"k":30976,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G1520"]],[4,5,["G1537"]],[5,6,["G3588"]],[6,7,["G2033"]],[7,8,["G32"]],[8,10,["G2192"]],[10,11,["G3588"]],[11,12,["G2033"]],[12,13,["G5357"]],[13,14,["G2532"]],[14,15,["G2980"]],[15,16,["G3326"]],[16,17,["G1700"]],[17,18,["G3004"]],[18,20,["G3427"]],[20,22,["G1204"]],[22,25,["G1166"]],[25,27,["G4671"]],[27,28,["G3588"]],[28,29,["G2917"]],[29,31,["G3588"]],[31,32,["G3173"]],[32,33,["G4204"]],[33,35,["G2521"]],[35,36,["G1909"]],[36,37,["G4183"]],[37,38,["G5204"]]]},{"k":30977,"v":[[0,1,["G3326"]],[1,2,["G3739"]],[2,3,["G3588"]],[3,4,["G935"]],[4,6,["G3588"]],[6,7,["G1093"]],[7,10,["G4203"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G2730"]],[13,15,["G3588"]],[15,16,["G1093"]],[16,20,["G3184"]],[20,21,["G1537"]],[21,22,["G3588"]],[22,23,["G3631"]],[23,25,["G848"]],[25,26,["G4202"]]]},{"k":30978,"v":[[0,1,["G2532"]],[1,5,["G667","G3165"]],[5,6,["G1722"]],[6,8,["G4151"]],[8,9,["G1519"]],[9,11,["G2048"]],[11,12,["G2532"]],[12,14,["G1492"]],[14,16,["G1135"]],[16,17,["G2521"]],[17,18,["G1909"]],[18,21,["G2847"]],[21,22,["G2342"]],[22,23,["G1073"]],[23,25,["G3686"]],[25,27,["G988"]],[27,28,["G2192"]],[28,29,["G2033"]],[29,30,["G2776"]],[30,31,["G2532"]],[31,32,["G1176"]],[32,33,["G2768"]]]},{"k":30979,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1135"]],[3,4,["G2258"]],[4,5,["G4016"]],[5,7,["G4209"]],[7,8,["G2532"]],[8,10,["G2847"]],[10,11,["G2532"]],[11,12,["G5558"]],[12,14,["G5557"]],[14,15,["G2532"]],[15,16,["G5093"]],[16,17,["G3037"]],[17,18,["G2532"]],[18,19,["G3135"]],[19,20,["G2192"]],[20,22,["G5552"]],[22,23,["G4221"]],[23,24,["G1722"]],[24,25,["G848"]],[25,26,["G5495"]],[26,27,["G1073"]],[27,29,["G946"]],[29,30,["G2532"]],[30,31,["G168"]],[31,33,["G848"]],[33,34,["G4202"]]]},{"k":30980,"v":[[0,1,["G2532"]],[1,2,["G1909"]],[2,3,["G848"]],[3,4,["G3359"]],[4,7,["G3686"]],[7,8,["G1125"]],[8,9,["G3466"]],[9,10,["G897"]],[10,11,["G3588"]],[11,12,["G3173"]],[12,13,["G3588"]],[13,14,["G3384"]],[14,16,["G4204"]],[16,17,["G2532"]],[17,18,["G946"]],[18,20,["G3588"]],[20,21,["G1093"]]]},{"k":30981,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3588"]],[4,5,["G1135"]],[5,6,["G3184"]],[6,7,["G1537"]],[7,8,["G3588"]],[8,9,["G129"]],[9,11,["G3588"]],[11,12,["G40"]],[12,13,["G2532"]],[13,14,["G1537"]],[14,15,["G3588"]],[15,16,["G129"]],[16,18,["G3588"]],[18,19,["G3144"]],[19,21,["G2424"]],[21,22,["G2532"]],[22,25,["G1492"]],[25,26,["G846"]],[26,28,["G2296"]],[28,30,["G3173"]],[30,31,["G2295"]]]},{"k":30982,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G32"]],[3,4,["G2036"]],[4,6,["G3427"]],[6,7,["G1302"]],[7,10,["G2296"]],[10,11,["G1473"]],[11,13,["G2046"]],[13,14,["G4671"]],[14,15,["G3588"]],[15,16,["G3466"]],[16,18,["G3588"]],[18,19,["G1135"]],[19,20,["G2532"]],[20,22,["G3588"]],[22,23,["G2342"]],[23,25,["G941"]],[25,26,["G846"]],[26,28,["G2192"]],[28,29,["G3588"]],[29,30,["G2033"]],[30,31,["G2776"]],[31,32,["G2532"]],[32,33,["G1176"]],[33,34,["G2768"]]]},{"k":30983,"v":[[0,1,["G3588"]],[1,2,["G2342"]],[2,3,["G3739"]],[3,5,["G1492"]],[5,6,["G2258"]],[6,7,["G2532"]],[7,8,["G2076"]],[8,9,["G3756"]],[9,10,["G2532"]],[10,11,["G3195"]],[11,12,["G305"]],[12,14,["G1537"]],[14,15,["G3588"]],[15,17,["G12"]],[17,18,["G2532"]],[18,19,["G5217"]],[19,20,["G1519"]],[20,21,["G684"]],[21,22,["G2532"]],[22,25,["G2730"]],[25,26,["G1909"]],[26,27,["G3588"]],[27,28,["G1093"]],[28,30,["G2296"]],[30,31,["G3739"]],[31,32,["G3686"]],[32,34,["G3756"]],[34,35,["G1125"]],[35,36,["G1909"]],[36,37,["G3588"]],[37,38,["G975"]],[38,40,["G2222"]],[40,41,["G575"]],[41,43,["G2602"]],[43,46,["G2889"]],[46,49,["G991"]],[49,50,["G3588"]],[50,51,["G2342"]],[51,52,["G3748"]],[52,53,["G2258"]],[53,54,["G2532"]],[54,55,["G2076"]],[55,56,["G3756"]],[56,58,["G2539"]],[58,59,["G2076"]]]},{"k":30984,"v":[[0,2,["G5602"]],[2,4,["G3588"]],[4,5,["G3563"]],[5,7,["G2192"]],[7,8,["G4678"]],[8,9,["G3588"]],[9,10,["G2033"]],[10,11,["G2776"]],[11,12,["G1526"]],[12,13,["G2033"]],[13,14,["G3735","(G3699)"]],[14,15,["G1909"]],[15,16,["G846"]],[16,17,["G3588"]],[17,18,["G1135"]],[18,19,["G2521"]]]},{"k":30985,"v":[[0,1,["G2532"]],[1,3,["G1526"]],[3,4,["G2033"]],[4,5,["G935"]],[5,6,["G4002"]],[6,8,["G4098"]],[8,9,["G2532"]],[9,10,["G1520"]],[10,11,["G2076"]],[11,13,["G3588"]],[13,14,["G243"]],[14,17,["G3768"]],[17,18,["G2064"]],[18,19,["G2532"]],[19,20,["G3752"]],[20,22,["G2064"]],[22,23,["G846"]],[23,24,["G1163"]],[24,25,["G3306"]],[25,28,["G3641"]]]},{"k":30986,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2342"]],[3,4,["G3739"]],[4,5,["G2258"]],[5,6,["G2532"]],[6,7,["G2076"]],[7,8,["G3756"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G2076"]],[11,13,["G3590"]],[13,14,["G2532"]],[14,15,["G2076"]],[15,16,["G1537"]],[16,17,["G3588"]],[17,18,["G2033"]],[18,19,["G2532"]],[19,20,["G5217"]],[20,21,["G1519"]],[21,22,["G684"]]]},{"k":30987,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1176"]],[3,4,["G2768"]],[4,5,["G3739"]],[5,7,["G1492"]],[7,8,["G1526"]],[8,9,["G1176"]],[9,10,["G935"]],[10,11,["G3748"]],[11,13,["G2983"]],[13,17,["G3768","G932"]],[17,18,["G235"]],[18,19,["G2983"]],[19,20,["G1849"]],[20,21,["G5613"]],[21,22,["G935"]],[22,23,["G3391"]],[23,24,["G5610"]],[24,25,["G3326"]],[25,26,["G3588"]],[26,27,["G2342"]]]},{"k":30988,"v":[[0,1,["G3778"]],[1,2,["G2192"]],[2,3,["G3391"]],[3,4,["G1106"]],[4,5,["G2532"]],[5,7,["G1239"]],[7,8,["G1438"]],[8,9,["G1411"]],[9,10,["G2532"]],[10,11,["G1849"]],[11,13,["G3588"]],[13,14,["G2342"]]]},{"k":30989,"v":[[0,1,["G3778"]],[1,4,["G4170"]],[4,5,["G3326"]],[5,6,["G3588"]],[6,7,["G721"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G721"]],[10,12,["G3528"]],[12,13,["G846"]],[13,14,["G3754"]],[14,16,["G2076"]],[16,17,["G2962"]],[17,19,["G2962"]],[19,20,["G2532"]],[20,21,["G935"]],[21,23,["G935"]],[23,24,["G2532"]],[24,25,["G3588"]],[25,28,["G3326"]],[28,29,["G846"]],[29,31,["G2822"]],[31,32,["G2532"]],[32,33,["G1588"]],[33,34,["G2532"]],[34,35,["G4103"]]]},{"k":30990,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G3427"]],[5,6,["G3588"]],[6,7,["G5204"]],[7,8,["G3739"]],[8,10,["G1492"]],[10,11,["G3757"]],[11,12,["G3588"]],[12,13,["G4204"]],[13,14,["G2521"]],[14,15,["G1526"]],[15,16,["G2992"]],[16,17,["G2532"]],[17,18,["G3793"]],[18,19,["G2532"]],[19,20,["G1484"]],[20,21,["G2532"]],[21,22,["G1100"]]]},{"k":30991,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1176"]],[3,4,["G2768"]],[4,5,["G3739"]],[5,7,["G1492"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,10,["G2342"]],[10,11,["G3778"]],[11,13,["G3404"]],[13,14,["G3588"]],[14,15,["G4204"]],[15,16,["G2532"]],[16,18,["G4160"]],[18,19,["G846"]],[19,20,["G2049"]],[20,21,["G2532"]],[21,22,["G1131"]],[22,23,["G2532"]],[23,25,["G5315"]],[25,26,["G848"]],[26,27,["G4561"]],[27,28,["G2532"]],[28,29,["G2618"]],[29,30,["G846"]],[30,31,["G1722"]],[31,32,["G4442"]]]},{"k":30992,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,4,["G1325"]],[4,5,["G1519"]],[5,6,["G848"]],[6,7,["G2588"]],[7,9,["G4160"]],[9,10,["G848"]],[10,11,["G1106"]],[11,12,["G2532"]],[12,14,["G4160","G3391","G1106"]],[14,15,["G2532"]],[15,16,["G1325"]],[16,17,["G848"]],[17,18,["G932"]],[18,20,["G3588"]],[20,21,["G2342"]],[21,22,["G891"]],[22,23,["G3588"]],[23,24,["G4487"]],[24,26,["G2316"]],[26,29,["G5055"]]]},{"k":30993,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1135"]],[3,4,["G3739"]],[4,6,["G1492"]],[6,7,["G2076"]],[7,9,["G3173"]],[9,10,["G4172"]],[10,12,["G2192","G932"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G935"]],[15,17,["G3588"]],[17,18,["G1093"]]]},{"k":30994,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,4,["G5023"]],[4,6,["G1492"]],[6,7,["G243"]],[7,8,["G32"]],[8,10,["G2597"]],[10,11,["G1537"]],[11,12,["G3772"]],[12,13,["G2192"]],[13,14,["G3173"]],[14,15,["G1849"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G1093"]],[18,20,["G5461"]],[20,21,["G1537"]],[21,22,["G848"]],[22,23,["G1391"]]]},{"k":30995,"v":[[0,1,["G2532"]],[1,3,["G2896"]],[3,4,["G1722","G2479"]],[4,7,["G3173"]],[7,8,["G5456"]],[8,9,["G3004"]],[9,10,["G897"]],[10,11,["G3588"]],[11,12,["G3173"]],[12,14,["G4098"]],[14,16,["G4098"]],[16,17,["G2532"]],[17,19,["G1096"]],[19,21,["G2732"]],[21,23,["G1142"]],[23,24,["G2532"]],[24,26,["G5438"]],[26,28,["G3956"]],[28,29,["G169"]],[29,30,["G4151"]],[30,31,["G2532"]],[31,33,["G5438"]],[33,35,["G3956"]],[35,36,["G169"]],[36,37,["G2532"]],[37,38,["G3404"]],[38,39,["G3732"]]]},{"k":30996,"v":[[0,1,["G3754"]],[1,2,["G3956"]],[2,3,["G1484"]],[3,5,["G4095"]],[5,6,["G1537"]],[6,7,["G3588"]],[7,8,["G3631"]],[8,10,["G3588"]],[10,11,["G2372"]],[11,13,["G848"]],[13,14,["G4202"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G935"]],[17,19,["G3588"]],[19,20,["G1093"]],[20,23,["G4203"]],[23,24,["G3326"]],[24,25,["G846"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G1713"]],[28,30,["G3588"]],[30,31,["G1093"]],[31,34,["G4147"]],[34,35,["G1537"]],[35,36,["G3588"]],[36,37,["G1411"]],[37,39,["G846"]],[39,40,["G4764"]]]},{"k":30997,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,4,["G243"]],[4,5,["G5456"]],[5,6,["G1537"]],[6,7,["G3772"]],[7,8,["G3004"]],[8,9,["G1831"]],[9,11,["G1537"]],[11,12,["G846"]],[12,13,["G3450"]],[13,14,["G2992"]],[14,15,["G2443"]],[15,19,["G4790","G3361"]],[19,21,["G848"]],[21,22,["G266"]],[22,23,["G2532"]],[23,24,["G2443"]],[24,26,["G2983"]],[26,27,["G3361"]],[27,28,["G1537"]],[28,29,["G848"]],[29,30,["G4127"]]]},{"k":30998,"v":[[0,1,["G3754"]],[1,2,["G848"]],[2,3,["G266"]],[3,5,["G190"]],[5,6,["G891"]],[6,7,["G3772"]],[7,8,["G2532"]],[8,9,["G2316"]],[9,11,["G3421"]],[11,12,["G848"]],[12,13,["G92"]]]},{"k":30999,"v":[[0,1,["G591"]],[1,2,["G846"]],[2,3,["G2532"]],[3,4,["G5613"]],[4,5,["G846"]],[5,6,["G591"]],[6,7,["G5213"]],[7,8,["G2532"]],[8,9,["G1363"]],[9,11,["G846"]],[11,12,["G1362"]],[12,13,["G2596"]],[13,15,["G848"]],[15,16,["G2041"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G4221"]],[19,20,["G3739"]],[20,23,["G2767"]],[23,24,["G2767"]],[24,26,["G846"]],[26,27,["G1362"]]]},{"k":31000,"v":[[0,2,["G3745"]],[2,5,["G1392"]],[5,6,["G1438"]],[6,7,["G2532"]],[7,9,["G4763"]],[9,11,["G5118"]],[11,12,["G929"]],[12,13,["G2532"]],[13,14,["G3997"]],[14,15,["G1325"]],[15,16,["G846"]],[16,17,["G3754"]],[17,19,["G3004"]],[19,20,["G1722"]],[20,21,["G848"]],[21,22,["G2588"]],[22,24,["G2521"]],[24,26,["G938"]],[26,27,["G2532"]],[27,28,["G1510"]],[28,29,["G3756"]],[29,30,["G5503"]],[30,31,["G2532"]],[31,33,["G1492"]],[33,34,["G3364"]],[34,35,["G3997"]]]},{"k":31001,"v":[[0,1,["G1223","G5124"]],[1,3,["G848"]],[3,4,["G4127"]],[4,5,["G2240"]],[5,6,["G1722"]],[6,7,["G3391"]],[7,8,["G2250"]],[8,9,["G2288"]],[9,10,["G2532"]],[10,11,["G3997"]],[11,12,["G2532"]],[12,13,["G3042"]],[13,14,["G2532"]],[14,19,["G2618"]],[19,20,["G1722"]],[20,21,["G4442"]],[21,22,["G3754"]],[22,23,["G2478"]],[23,26,["G2962"]],[26,27,["G2316"]],[27,29,["G2919"]],[29,30,["G846"]]]},{"k":31002,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G935"]],[3,5,["G3588"]],[5,6,["G1093"]],[6,10,["G4203"]],[10,11,["G2532"]],[11,13,["G4763"]],[13,14,["G3326"]],[14,15,["G846"]],[15,17,["G2799"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G2875"]],[20,21,["G1909"]],[21,22,["G846"]],[22,23,["G3752"]],[23,26,["G991"]],[26,27,["G3588"]],[27,28,["G2586"]],[28,30,["G848"]],[30,31,["G4451"]]]},{"k":31003,"v":[[0,1,["G2476"]],[1,3,["G575","G3113"]],[3,4,["G1223"]],[4,5,["G3588"]],[5,6,["G5401"]],[6,8,["G848"]],[8,9,["G929"]],[9,10,["G3004"]],[10,11,["G3759"]],[11,12,["G3759"]],[12,14,["G3173"]],[14,15,["G4172"]],[15,16,["G897"]],[16,18,["G2478"]],[18,19,["G4172"]],[19,20,["G3754"]],[20,21,["G1722"]],[21,22,["G3391"]],[22,23,["G5610"]],[23,25,["G4675"]],[25,26,["G2920"]],[26,27,["G2064"]]]},{"k":31004,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1713"]],[3,5,["G3588"]],[5,6,["G1093"]],[6,8,["G2799"]],[8,9,["G2532"]],[9,10,["G3996"]],[10,11,["G1909"]],[11,12,["G846"]],[12,13,["G3754"]],[13,15,["G3762"]],[15,16,["G59"]],[16,17,["G848"]],[17,18,["G1117"]],[18,20,["G3765"]]]},{"k":31005,"v":[[0,2,["G1117"]],[2,4,["G5557"]],[4,5,["G2532"]],[5,6,["G696"]],[6,7,["G2532"]],[7,8,["G5093"]],[8,9,["G3037"]],[9,10,["G2532"]],[10,12,["G3135"]],[12,13,["G2532"]],[13,15,["G1040"]],[15,16,["G2532"]],[16,17,["G4209"]],[17,18,["G2532"]],[18,19,["G4596"]],[19,20,["G2532"]],[20,21,["G2847"]],[21,22,["G2532"]],[22,23,["G3956"]],[23,24,["G2367"]],[24,25,["G3586"]],[25,26,["G2532"]],[26,28,["G3956"]],[28,29,["G4632"]],[29,31,["G1661"]],[31,32,["G2532"]],[32,34,["G3956"]],[34,35,["G4632"]],[35,36,["G1537"]],[36,38,["G5093"]],[38,39,["G3586"]],[39,40,["G2532"]],[40,42,["G5475"]],[42,43,["G2532"]],[43,44,["G4604"]],[44,45,["G2532"]],[45,46,["G3139"]]]},{"k":31006,"v":[[0,1,["G2532"]],[1,2,["G2792"]],[2,3,["G2532"]],[3,4,["G2368"]],[4,5,["G2532"]],[5,6,["G3464"]],[6,7,["G2532"]],[7,8,["G3030"]],[8,9,["G2532"]],[9,10,["G3631"]],[10,11,["G2532"]],[11,12,["G1637"]],[12,13,["G2532"]],[13,15,["G4585"]],[15,16,["G2532"]],[16,17,["G4621"]],[17,18,["G2532"]],[18,19,["G2934"]],[19,20,["G2532"]],[20,21,["G4263"]],[21,22,["G2532"]],[22,23,["G2462"]],[23,24,["G2532"]],[24,25,["G4480"]],[25,26,["G2532"]],[26,27,["G4983"]],[27,28,["G2532"]],[28,29,["G5590"]],[29,31,["G444"]]]},{"k":31007,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3703"]],[3,5,["G4675"]],[5,6,["G5590"]],[6,8,["G1939"]],[8,10,["G565"]],[10,11,["G575"]],[11,12,["G4675"]],[12,13,["G2532"]],[13,15,["G3956"]],[15,18,["G3045"]],[18,19,["G2532"]],[19,20,["G2986"]],[20,22,["G565"]],[22,23,["G575"]],[23,24,["G4675"]],[24,25,["G2532"]],[25,28,["G2147"]],[28,29,["G846"]],[29,33,["G3765","G3364"]]]},{"k":31008,"v":[[0,1,["G3588"]],[1,2,["G1713"]],[2,5,["G5130"]],[5,9,["G4147"]],[9,10,["G575"]],[10,11,["G846"]],[11,13,["G2476"]],[13,15,["G575","G3113"]],[15,16,["G1223"]],[16,17,["G3588"]],[17,18,["G5401"]],[18,20,["G848"]],[20,21,["G929"]],[21,22,["G2799"]],[22,23,["G2532"]],[23,24,["G3996"]]]},{"k":31009,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,3,["G3759"]],[3,4,["G3759"]],[4,6,["G3173"]],[6,7,["G4172"]],[7,10,["G4016"]],[10,13,["G1039"]],[13,14,["G2532"]],[14,15,["G4210"]],[15,16,["G2532"]],[16,17,["G2847"]],[17,18,["G2532"]],[18,19,["G5558"]],[19,20,["G1722"]],[20,21,["G5557"]],[21,22,["G2532"]],[22,23,["G5093"]],[23,24,["G3037"]],[24,25,["G2532"]],[25,26,["G3135"]]]},{"k":31010,"v":[[0,1,["G3754"]],[1,3,["G3391"]],[3,4,["G5610"]],[4,6,["G5118"]],[6,7,["G4149"]],[7,11,["G2049"]],[11,12,["G2532"]],[12,13,["G3956"]],[13,14,["G2942"]],[14,15,["G2532"]],[15,16,["G3956"]],[16,17,["G3588"]],[17,18,["G3658"]],[18,19,["G1909"]],[19,20,["G4143"]],[20,21,["G2532"]],[21,22,["G3492"]],[22,23,["G2532"]],[23,26,["G3745"]],[26,27,["G2038"]],[27,29,["G2281"]],[29,30,["G2476"]],[30,32,["G575","G3113"]]]},{"k":31011,"v":[[0,1,["G2532"]],[1,2,["G2896"]],[2,5,["G3708"]],[5,6,["G3588"]],[6,7,["G2586"]],[7,9,["G848"]],[9,10,["G4451"]],[10,11,["G3004"]],[11,12,["G5101"]],[12,16,["G3664"]],[16,18,["G3173"]],[18,19,["G4172"]]]},{"k":31012,"v":[[0,1,["G2532"]],[1,3,["G906"]],[3,4,["G5522"]],[4,5,["G1909"]],[5,6,["G848"]],[6,7,["G2776"]],[7,8,["G2532"]],[8,9,["G2896"]],[9,10,["G2799"]],[10,11,["G2532"]],[11,12,["G3996"]],[12,13,["G3004"]],[13,14,["G3759"]],[14,15,["G3759"]],[15,17,["G3173"]],[17,18,["G4172"]],[18,19,["G1722","G3739"]],[19,22,["G4147"]],[22,23,["G3956"]],[23,25,["G2192"]],[25,26,["G4143"]],[26,27,["G1722"]],[27,28,["G3588"]],[28,29,["G2281"]],[29,32,["G1537"]],[32,33,["G848"]],[33,34,["G5094"]],[34,35,["G3754"]],[35,37,["G3391"]],[37,38,["G5610"]],[38,42,["G2049"]]]},{"k":31013,"v":[[0,1,["G2165"]],[1,2,["G1909"]],[2,3,["G846"]],[3,5,["G3772"]],[5,6,["G2532"]],[6,8,["G40"]],[8,9,["G652"]],[9,10,["G2532"]],[10,11,["G4396"]],[11,12,["G3754"]],[12,13,["G2316"]],[13,15,["G2919","G2917"]],[15,16,["G5216"]],[16,17,["G1537"]],[17,18,["G846"]]]},{"k":31014,"v":[[0,1,["G2532"]],[1,2,["G1520"]],[2,3,["G2478"]],[3,4,["G32"]],[4,6,["G142"]],[6,8,["G3037"]],[8,9,["G5613"]],[9,11,["G3173"]],[11,12,["G3458"]],[12,13,["G2532"]],[13,14,["G906"]],[14,16,["G1519"]],[16,17,["G3588"]],[17,18,["G2281"]],[18,19,["G3004"]],[19,20,["G3779"]],[20,22,["G3731"]],[22,25,["G3173"]],[25,26,["G4172"]],[26,27,["G897"]],[27,30,["G906"]],[30,31,["G2532"]],[31,34,["G2147"]],[34,38,["G2089","G3364"]]]},{"k":31015,"v":[[0,1,["G2532"]],[1,3,["G5456"]],[3,5,["G2790"]],[5,6,["G2532"]],[6,7,["G3451"]],[7,8,["G2532"]],[8,10,["G834"]],[10,11,["G2532"]],[11,12,["G4538"]],[12,15,["G191"]],[15,19,["G2089","G3364"]],[19,20,["G1722"]],[20,21,["G4671"]],[21,23,["G3956"]],[23,24,["G5079"]],[24,26,["G3956"]],[26,27,["G5078"]],[27,32,["G2147"]],[32,34,["G2089","G3364"]],[34,35,["G1722"]],[35,36,["G4671"]],[36,37,["G2532"]],[37,39,["G5456"]],[39,42,["G3458"]],[42,45,["G191"]],[45,49,["G2089","G3364"]],[49,50,["G1722"]],[50,51,["G4671"]]]},{"k":31016,"v":[[0,1,["G2532"]],[1,3,["G5457"]],[3,6,["G3088"]],[6,8,["G5316"]],[8,12,["G2089","G3364"]],[12,13,["G1722"]],[13,14,["G4671"]],[14,15,["G2532"]],[15,17,["G5456"]],[17,20,["G3566"]],[20,21,["G2532"]],[21,24,["G3565"]],[24,27,["G191"]],[27,31,["G2089","G3364"]],[31,32,["G1722"]],[32,33,["G4671"]],[33,34,["G3754"]],[34,35,["G4675"]],[35,36,["G1713"]],[36,37,["G2258"]],[37,38,["G3588"]],[38,40,["G3175"]],[40,42,["G3588"]],[42,43,["G1093"]],[43,44,["G3754"]],[44,45,["G1722"]],[45,46,["G4675"]],[46,47,["G5331"]],[47,49,["G3956"]],[49,50,["G1484"]],[50,51,["G4105"]]]},{"k":31017,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G846"]],[3,5,["G2147"]],[5,7,["G129"]],[7,9,["G4396"]],[9,10,["G2532"]],[10,12,["G40"]],[12,13,["G2532"]],[13,15,["G3956"]],[15,18,["G4969"]],[18,19,["G1909"]],[19,20,["G3588"]],[20,21,["G1093"]]]},{"k":31018,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,4,["G5023"]],[4,6,["G191"]],[6,8,["G3173"]],[8,9,["G5456"]],[9,11,["G4183"]],[11,12,["G3793"]],[12,13,["G1722"]],[13,14,["G3772"]],[14,15,["G3004"]],[15,16,["G239"]],[16,17,["G4991"]],[17,18,["G2532"]],[18,19,["G1391"]],[19,20,["G2532"]],[20,21,["G5092"]],[21,22,["G2532"]],[22,23,["G1411"]],[23,26,["G2962"]],[26,27,["G2257"]],[27,28,["G2316"]]]},{"k":31019,"v":[[0,1,["G3754"]],[1,2,["G228"]],[2,3,["G2532"]],[3,4,["G1342"]],[4,6,["G848"]],[6,7,["G2920"]],[7,8,["G3754"]],[8,11,["G2919"]],[11,12,["G3588"]],[12,13,["G3173"]],[13,14,["G4204"]],[14,15,["G3748"]],[15,17,["G5351"]],[17,18,["G3588"]],[18,19,["G1093"]],[19,20,["G1722"]],[20,21,["G848"]],[21,22,["G4202"]],[22,23,["G2532"]],[23,25,["G1556"]],[25,26,["G3588"]],[26,27,["G129"]],[27,29,["G848"]],[29,30,["G1401"]],[30,31,["G1537"]],[31,32,["G848"]],[32,33,["G5495"]]]},{"k":31020,"v":[[0,1,["G2532"]],[1,2,["G1208"]],[2,4,["G2046"]],[4,5,["G239"]],[5,6,["G2532"]],[6,7,["G848"]],[7,8,["G2586"]],[8,10,["G305"]],[10,14,["G1519","G165","G165"]]]},{"k":31021,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,5,["G5064","G2532","G1501"]],[5,6,["G4245"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G5064"]],[9,10,["G2226"]],[10,12,["G4098"]],[12,13,["G2532"]],[13,14,["G4352"]],[14,15,["G2316"]],[15,17,["G2521"]],[17,18,["G1909"]],[18,19,["G3588"]],[19,20,["G2362"]],[20,21,["G3004"]],[21,22,["G281"]],[22,23,["G239"]]]},{"k":31022,"v":[[0,1,["G2532"]],[1,3,["G5456"]],[3,4,["G1831"]],[4,6,["G1537"]],[6,7,["G3588"]],[7,8,["G2362"]],[8,9,["G3004"]],[9,10,["G134"]],[10,11,["G2257"]],[11,12,["G2316"]],[12,13,["G3956"]],[13,15,["G848"]],[15,16,["G1401"]],[16,17,["G2532"]],[17,20,["G5399"]],[20,21,["G846"]],[21,22,["G2532"]],[22,23,["G3398"]],[23,24,["G2532"]],[24,25,["G3173"]]]},{"k":31023,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,6,["G5613"]],[6,8,["G5456"]],[8,11,["G4183"]],[11,12,["G3793"]],[12,13,["G2532"]],[13,14,["G5613"]],[14,16,["G5456"]],[16,18,["G4183"]],[18,19,["G5204"]],[19,20,["G2532"]],[20,21,["G5613"]],[21,23,["G5456"]],[23,25,["G2478"]],[25,26,["G1027"]],[26,27,["G3004"]],[27,28,["G239"]],[28,29,["G3754"]],[29,31,["G2962"]],[31,32,["G2316"]],[32,33,["G3841"]],[33,34,["G936"]]]},{"k":31024,"v":[[0,4,["G5463"]],[4,5,["G2532"]],[5,6,["G21"]],[6,7,["G2532"]],[7,8,["G1325"]],[8,9,["G1391"]],[9,11,["G846"]],[11,12,["G3754"]],[12,13,["G3588"]],[13,14,["G1062"]],[14,16,["G3588"]],[16,17,["G721"]],[17,19,["G2064"]],[19,20,["G2532"]],[20,21,["G848"]],[21,22,["G1135"]],[22,26,["G2090","G1438"]]]},{"k":31025,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G1325"]],[5,6,["G2443"]],[6,10,["G4016"]],[10,13,["G1039"]],[13,14,["G2513"]],[14,15,["G2532"]],[15,16,["G2986"]],[16,17,["G1063"]],[17,18,["G3588"]],[18,20,["G1039"]],[20,21,["G2076"]],[21,22,["G3588"]],[22,23,["G1345"]],[23,25,["G40"]]]},{"k":31026,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G3427"]],[5,6,["G1125"]],[6,7,["G3107"]],[7,12,["G2564"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G1062"]],[15,16,["G1173"]],[16,18,["G3588"]],[18,19,["G721"]],[19,20,["G2532"]],[20,22,["G3004"]],[22,24,["G3427"]],[24,25,["G3778"]],[25,26,["G1526"]],[26,27,["G3588"]],[27,28,["G228"]],[28,29,["G3056"]],[29,31,["G2316"]]]},{"k":31027,"v":[[0,1,["G2532"]],[1,3,["G4098"]],[3,4,["G1715"]],[4,5,["G848"]],[5,6,["G4228"]],[6,8,["G4352"]],[8,9,["G846"]],[9,10,["G2532"]],[10,12,["G3004"]],[12,14,["G3427"]],[14,15,["G3708"]],[15,19,["G3361"]],[19,21,["G1510"]],[21,22,["G4675"]],[22,23,["G4889"]],[23,24,["G2532"]],[24,26,["G4675"]],[26,27,["G80"]],[27,29,["G2192"]],[29,30,["G3588"]],[30,31,["G3141"]],[31,33,["G2424"]],[33,34,["G4352"]],[34,35,["G2316"]],[35,36,["G1063"]],[36,37,["G3588"]],[37,38,["G3141"]],[38,40,["G2424"]],[40,42,["G3588"]],[42,43,["G4151"]],[43,45,["G4394"]]]},{"k":31028,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3772"]],[4,5,["G455"]],[5,6,["G2532"]],[6,7,["G2400"]],[7,9,["G3022"]],[9,10,["G2462"]],[10,11,["G2532"]],[11,14,["G2521"]],[14,15,["G1909"]],[15,16,["G846"]],[16,18,["G2564"]],[18,19,["G4103"]],[19,20,["G2532"]],[20,21,["G228"]],[21,22,["G2532"]],[22,23,["G1722"]],[23,24,["G1343"]],[24,27,["G2919"]],[27,28,["G2532"]],[28,30,["G4170"]]]},{"k":31029,"v":[[0,0,["(G1161)"]],[0,1,["G848"]],[1,2,["G3788"]],[2,4,["G5613"]],[4,6,["G5395"]],[6,8,["G4442"]],[8,9,["G2532"]],[9,10,["G1909"]],[10,11,["G848"]],[11,12,["G2776"]],[12,14,["G4183"]],[14,15,["G1238"]],[15,18,["G2192"]],[18,20,["G3686"]],[20,21,["G1125"]],[21,22,["G3739"]],[22,24,["G3762"]],[24,25,["G1492"]],[25,26,["G1508"]],[26,28,["G848"]]]},{"k":31030,"v":[[0,1,["G2532"]],[1,5,["G4016"]],[5,7,["G2440"]],[7,8,["G911"]],[8,10,["G129"]],[10,11,["G2532"]],[11,12,["G848"]],[12,13,["G3686"]],[13,15,["G2564"]],[15,16,["G3588"]],[16,17,["G3056"]],[17,19,["G2316"]]]},{"k":31031,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4753"]],[3,6,["G1722"]],[6,7,["G3772"]],[7,8,["G190"]],[8,9,["G846"]],[9,10,["G1909"]],[10,11,["G3022"]],[11,12,["G2462"]],[12,14,["G1746"]],[14,16,["G1039"]],[16,17,["G3022"]],[17,18,["G2532"]],[18,19,["G2513"]]]},{"k":31032,"v":[[0,1,["G2532"]],[1,3,["G1537"]],[3,4,["G848"]],[4,5,["G4750"]],[5,6,["G1607"]],[6,8,["G3691"]],[8,9,["G4501"]],[9,10,["G2443"]],[10,11,["G1722"]],[11,12,["G846"]],[12,15,["G3960"]],[15,16,["G3588"]],[16,17,["G1484"]],[17,18,["G2532"]],[18,19,["G846"]],[19,21,["G4165"]],[21,22,["G846"]],[22,23,["G1722"]],[23,25,["G4464"]],[25,27,["G4603"]],[27,28,["G2532"]],[28,29,["G846"]],[29,30,["G3961"]],[30,31,["G3588"]],[31,32,["G3025","G3631"]],[32,34,["G3588"]],[34,35,["G2372"]],[35,36,["G2532"]],[36,37,["G3709"]],[37,39,["G3841"]],[39,40,["G2316"]]]},{"k":31033,"v":[[0,1,["G2532"]],[1,3,["G2192"]],[3,4,["G1909"]],[4,6,["G2440"]],[6,7,["G2532"]],[7,8,["G1909"]],[8,9,["G848"]],[9,10,["G3382"]],[10,12,["G3686"]],[12,13,["G1125"]],[13,14,["G935"]],[14,16,["G935"]],[16,17,["G2532"]],[17,18,["G2962"]],[18,20,["G2962"]]]},{"k":31034,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G1520"]],[4,5,["G32"]],[5,6,["G2476"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G2246"]],[9,10,["G2532"]],[10,12,["G2896"]],[12,15,["G3173"]],[15,16,["G5456"]],[16,17,["G3004"]],[17,19,["G3956"]],[19,20,["G3588"]],[20,21,["G3732"]],[21,23,["G4072"]],[23,24,["G1722"]],[24,28,["G3321"]],[28,29,["G1205"]],[29,30,["G2532"]],[30,33,["G4863"]],[33,34,["G1519"]],[34,35,["G3588"]],[35,36,["G1173"]],[36,38,["G3588"]],[38,39,["G3173"]],[39,40,["G2316"]]]},{"k":31035,"v":[[0,1,["G2443"]],[1,4,["G5315"]],[4,6,["G4561"]],[6,8,["G935"]],[8,9,["G2532"]],[9,11,["G4561"]],[11,13,["G5506"]],[13,14,["G2532"]],[14,16,["G4561"]],[16,19,["G2478"]],[19,20,["G2532"]],[20,22,["G4561"]],[22,24,["G2462"]],[24,25,["G2532"]],[25,29,["G2521"]],[29,30,["G1909"]],[30,31,["G846"]],[31,32,["G2532"]],[32,34,["G4561"]],[34,36,["G3956"]],[36,39,["G1658"]],[39,40,["G2532"]],[40,41,["G1401"]],[41,42,["G2532"]],[42,43,["G3398"]],[43,44,["G2532"]],[44,45,["G3173"]]]},{"k":31036,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3588"]],[4,5,["G2342"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G935"]],[8,10,["G3588"]],[10,11,["G1093"]],[11,12,["G2532"]],[12,13,["G848"]],[13,14,["G4753"]],[14,16,["G4863"]],[16,18,["G4160"]],[18,19,["G4171"]],[19,20,["G3326"]],[20,23,["G2521"]],[23,24,["G1909"]],[24,25,["G3588"]],[25,26,["G2462"]],[26,27,["G2532"]],[27,28,["G3326"]],[28,29,["G848"]],[29,30,["G4753"]]]},{"k":31037,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2342"]],[3,5,["G4084"]],[5,6,["G2532"]],[6,7,["G3326"]],[7,8,["G5127"]],[8,9,["G3588"]],[9,11,["G5578"]],[11,13,["G4160"]],[13,14,["G4592"]],[14,15,["G1799"]],[15,16,["G846"]],[16,17,["G1722"]],[17,18,["G3739"]],[18,20,["G4105"]],[20,24,["G2983"]],[24,25,["G3588"]],[25,26,["G5480"]],[26,28,["G3588"]],[28,29,["G2342"]],[29,30,["G2532"]],[30,33,["G4352"]],[33,34,["G848"]],[34,35,["G1504"]],[35,37,["G1417"]],[37,39,["G906"]],[39,40,["G2198"]],[40,41,["G1519"]],[41,43,["G3041"]],[43,45,["G4442"]],[45,46,["G2545"]],[46,47,["G1722"]],[47,48,["G2303"]]]},{"k":31038,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3062"]],[3,5,["G615"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G4501"]],[8,12,["G2521"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G2462"]],[15,18,["G1607"]],[18,20,["G1537"]],[20,21,["G848"]],[21,22,["G4750"]],[22,23,["G2532"]],[23,24,["G3956"]],[24,25,["G3588"]],[25,26,["G3732"]],[26,28,["G5526"]],[28,29,["G1537"]],[29,30,["G848"]],[30,31,["G4561"]]]},{"k":31039,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,5,["G32"]],[5,7,["G2597"]],[7,8,["G1537"]],[8,9,["G3772"]],[9,10,["G2192"]],[10,11,["G3588"]],[11,12,["G2807"]],[12,14,["G3588"]],[14,16,["G12"]],[16,17,["G2532"]],[17,19,["G3173"]],[19,20,["G254"]],[20,21,["G1909"]],[21,22,["G848"]],[22,23,["G5495"]]]},{"k":31040,"v":[[0,1,["G2532"]],[1,5,["G2902"]],[5,6,["G3588"]],[6,7,["G1404"]],[7,9,["G744"]],[9,10,["G3789"]],[10,11,["G3739"]],[11,12,["G2076"]],[12,14,["G1228"]],[14,15,["G2532"]],[15,16,["G4567"]],[16,17,["G2532"]],[17,18,["G1210"]],[18,19,["G846"]],[19,21,["G5507"]],[21,22,["G2094"]]]},{"k":31041,"v":[[0,1,["G2532"]],[1,2,["G906"]],[2,3,["G846"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,7,["G12"]],[7,8,["G2532"]],[8,11,["G2808","G846"]],[11,12,["G2532"]],[12,15,["G4972"]],[15,16,["G1883"]],[16,17,["G846"]],[17,18,["G2443"]],[18,21,["G4105"]],[21,22,["G3588"]],[22,23,["G1484"]],[23,24,["G3361"]],[24,25,["G2089"]],[25,26,["G891"]],[26,27,["G3588"]],[27,28,["G5507"]],[28,29,["G2094"]],[29,32,["G5055"]],[32,33,["G2532"]],[33,34,["G3326"]],[34,35,["G5023"]],[35,36,["G846"]],[36,37,["G1163"]],[37,39,["G3089"]],[39,41,["G3398"]],[41,42,["G5550"]]]},{"k":31042,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G2362"]],[4,5,["G2532"]],[5,7,["G2523"]],[7,8,["G1909"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G2917"]],[11,13,["G1325"]],[13,15,["G846"]],[15,16,["G2532"]],[16,19,["G3588"]],[19,20,["G5590"]],[20,25,["G3990"]],[25,26,["G1223"]],[26,27,["G3588"]],[27,28,["G3141"]],[28,30,["G2424"]],[30,31,["G2532"]],[31,32,["G1223"]],[32,33,["G3588"]],[33,34,["G3056"]],[34,36,["G2316"]],[36,37,["G2532"]],[37,38,["G3748"]],[38,40,["G3756"]],[40,41,["G4352"]],[41,42,["G3588"]],[42,43,["G2342"]],[43,44,["G3777"]],[44,45,["G846"]],[45,46,["G1504"]],[46,47,["G2532","G3756"]],[47,49,["G2983"]],[49,51,["G5480"]],[51,52,["G1909"]],[52,53,["G848"]],[53,54,["G3359"]],[54,55,["G2532"]],[55,56,["G1909"]],[56,57,["G848"]],[57,58,["G5495"]],[58,59,["G2532"]],[59,61,["G2198"]],[61,62,["G2532"]],[62,63,["G936"]],[63,64,["G3326"]],[64,65,["G5547"]],[65,67,["G5507"]],[67,68,["G2094"]]]},{"k":31043,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3062"]],[3,5,["G3588"]],[5,6,["G3498"]],[6,9,["G326","G3756"]],[9,10,["G2193"]],[10,11,["G3588"]],[11,12,["G5507"]],[12,13,["G2094"]],[13,15,["G5055"]],[15,16,["G3778"]],[16,18,["G3588"]],[18,19,["G4413"]],[19,20,["G386"]]]},{"k":31044,"v":[[0,1,["G3107"]],[1,2,["G2532"]],[2,3,["G40"]],[3,7,["G2192"]],[7,8,["G3313"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G4413"]],[11,12,["G386"]],[12,13,["G1909"]],[13,14,["G5130"]],[14,15,["G3588"]],[15,16,["G1208"]],[16,17,["G2288"]],[17,18,["G2192"]],[18,19,["G3756"]],[19,20,["G1849"]],[20,21,["G235"]],[21,24,["G2071"]],[24,25,["G2409"]],[25,27,["G2316"]],[27,28,["G2532"]],[28,30,["G5547"]],[30,31,["G2532"]],[31,33,["G936"]],[33,34,["G3326"]],[34,35,["G846"]],[35,37,["G5507"]],[37,38,["G2094"]]]},{"k":31045,"v":[[0,1,["G2532"]],[1,2,["G3752"]],[2,3,["G3588"]],[3,4,["G5507"]],[4,5,["G2094"]],[5,7,["G5055"]],[7,8,["G4567"]],[8,11,["G3089"]],[11,13,["G1537"]],[13,14,["G846"]],[14,15,["G5438"]]]},{"k":31046,"v":[[0,1,["G2532"]],[1,4,["G1831"]],[4,6,["G4105"]],[6,7,["G3588"]],[7,8,["G1484"]],[8,9,["G3588"]],[9,11,["G1722"]],[11,12,["G3588"]],[12,13,["G5064"]],[13,14,["G1137"]],[14,16,["G3588"]],[16,17,["G1093"]],[17,18,["G1136"]],[18,19,["G2532"]],[19,20,["G3098"]],[20,24,["G4863","G846"]],[24,25,["G1519"]],[25,26,["G4171"]],[26,27,["G3588"]],[27,28,["G706"]],[28,30,["G3739"]],[30,32,["G5613"]],[32,33,["G3588"]],[33,34,["G285"]],[34,36,["G3588"]],[36,37,["G2281"]]]},{"k":31047,"v":[[0,1,["G2532"]],[1,4,["G305"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G4114"]],[7,9,["G3588"]],[9,10,["G1093"]],[10,11,["G2532"]],[11,18,["G2944","G3588","G3925","G3588","G40"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G25"]],[21,22,["G4172"]],[22,23,["G2532"]],[23,24,["G4442"]],[24,26,["G2597"]],[26,27,["G575"]],[27,28,["G2316"]],[28,30,["G1537"]],[30,31,["G3772"]],[31,32,["G2532"]],[32,33,["G2719"]],[33,34,["G846"]]]},{"k":31048,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1228"]],[3,5,["G4105"]],[5,6,["G846"]],[6,8,["G906"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G3041"]],[11,13,["G4442"]],[13,14,["G2532"]],[14,15,["G2303"]],[15,16,["G3699"]],[16,17,["G3588"]],[17,18,["G2342"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,22,["G5578"]],[22,24,["G2532"]],[24,27,["G928"]],[27,28,["G2250"]],[28,29,["G2532"]],[29,30,["G3571"]],[30,34,["G1519","G165","G165"]]]},{"k":31049,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,5,["G3173"]],[5,6,["G3022"]],[6,7,["G2362"]],[7,8,["G2532"]],[8,11,["G2521"]],[11,12,["G1909"]],[12,13,["G846"]],[13,14,["G575"]],[14,15,["G3739"]],[15,16,["G4383"]],[16,17,["G3588"]],[17,18,["G1093"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G3772"]],[21,23,["G5343"]],[23,24,["G2532"]],[24,27,["G2147"]],[27,28,["G3756"]],[28,29,["G5117"]],[29,31,["G846"]]]},{"k":31050,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3588"]],[4,5,["G3498"]],[5,6,["G3398"]],[6,7,["G2532"]],[7,8,["G3173"]],[8,9,["G2476"]],[9,10,["G1799"]],[10,11,["G2316"]],[11,12,["G2532"]],[12,14,["G975"]],[14,16,["G455"]],[16,17,["G2532"]],[17,18,["G243"]],[18,19,["G975"]],[19,21,["G455"]],[21,23,["G3603"]],[23,27,["G2222"]],[27,28,["G2532"]],[28,29,["G3588"]],[29,30,["G3498"]],[30,32,["G2919"]],[32,34,["G1537"]],[34,39,["G1125"]],[39,40,["G1722"]],[40,41,["G3588"]],[41,42,["G975"]],[42,43,["G2596"]],[43,45,["G848"]],[45,46,["G2041"]]]},{"k":31051,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2281"]],[3,5,["G1325"]],[5,6,["G3588"]],[6,7,["G3498"]],[7,10,["G1722"]],[10,11,["G846"]],[11,12,["G2532"]],[12,13,["G2288"]],[13,14,["G2532"]],[14,15,["G86"]],[15,17,["G1325"]],[17,18,["G3588"]],[18,19,["G3498"]],[19,22,["G1722"]],[22,23,["G846"]],[23,24,["G2532"]],[24,27,["G2919"]],[27,29,["G1538"]],[29,30,["G2596"]],[30,32,["G848"]],[32,33,["G2041"]]]},{"k":31052,"v":[[0,1,["G2532"]],[1,2,["G2288"]],[2,3,["G2532"]],[3,4,["G86"]],[4,6,["G906"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G3041"]],[9,11,["G4442"]],[11,12,["G3778"]],[12,13,["G2076"]],[13,14,["G3588"]],[14,15,["G1208"]],[15,16,["G2288"]]]},{"k":31053,"v":[[0,1,["G2532"]],[1,2,["G1536"]],[2,4,["G3756"]],[4,5,["G2147"]],[5,6,["G1125"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G976"]],[9,11,["G2222"]],[11,13,["G906"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G3041"]],[16,18,["G4442"]]]},{"k":31054,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,5,["G2537"]],[5,6,["G3772"]],[6,7,["G2532"]],[7,9,["G2537"]],[9,10,["G1093"]],[10,11,["G1063"]],[11,12,["G3588"]],[12,13,["G4413"]],[13,14,["G3772"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G4413"]],[17,18,["G1093"]],[18,21,["G3928"]],[21,22,["G2532"]],[22,24,["G2076"]],[24,25,["G3756"]],[25,26,["G2089"]],[26,27,["G2281"]]]},{"k":31055,"v":[[0,1,["G2532"]],[1,2,["G1473"]],[2,3,["G2491"]],[3,4,["G1492"]],[4,5,["G3588"]],[5,6,["G40"]],[6,7,["G4172"]],[7,8,["G2537"]],[8,9,["G2419"]],[9,11,["G2597"]],[11,12,["G575"]],[12,13,["G2316"]],[13,15,["G1537"]],[15,16,["G3772"]],[16,17,["G2090"]],[17,18,["G5613"]],[18,20,["G3565"]],[20,21,["G2885"]],[21,23,["G848"]],[23,24,["G435"]]]},{"k":31056,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,5,["G3173"]],[5,6,["G5456"]],[6,8,["G1537"]],[8,9,["G3772"]],[9,10,["G3004"]],[10,11,["G2400"]],[11,12,["G3588"]],[12,13,["G4633"]],[13,15,["G2316"]],[15,17,["G3326"]],[17,18,["G444"]],[18,19,["G2532"]],[19,22,["G4637"]],[22,23,["G3326"]],[23,24,["G846"]],[24,25,["G2532"]],[25,26,["G846"]],[26,28,["G2071"]],[28,29,["G848"]],[29,30,["G2992"]],[30,31,["G2532"]],[31,32,["G2316"]],[32,33,["G848"]],[33,35,["G2071"]],[35,36,["G3326"]],[36,37,["G846"]],[37,40,["G848"]],[40,41,["G2316"]]]},{"k":31057,"v":[[0,1,["G2532"]],[1,2,["G2316"]],[2,5,["G1813"]],[5,6,["G3956"]],[6,7,["G1144"]],[7,8,["G575"]],[8,9,["G848"]],[9,10,["G3788"]],[10,11,["G2532"]],[11,14,["G2071"]],[14,15,["G3756"]],[15,16,["G2089"]],[16,17,["G2288"]],[17,18,["G3777"]],[18,19,["G3997"]],[19,20,["G3777"]],[20,21,["G2906"]],[21,22,["G3777"]],[22,25,["G2071","(G3756)"]],[25,27,["G2089"]],[27,28,["G4192"]],[28,29,["G3754"]],[29,30,["G3588"]],[30,32,["G4413"]],[32,35,["G565"]]]},{"k":31058,"v":[[0,1,["G2532"]],[1,4,["G2521"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G2362"]],[7,8,["G2036"]],[8,9,["G2400"]],[9,11,["G4160"]],[11,13,["G3956"]],[13,14,["G2537"]],[14,15,["G2532"]],[15,17,["G3004"]],[17,19,["G3427"]],[19,20,["G1125"]],[20,21,["G3754"]],[21,22,["G3778"]],[22,23,["G3056"]],[23,24,["G1526"]],[24,25,["G228"]],[25,26,["G2532"]],[26,27,["G4103"]]]},{"k":31059,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G3427"]],[5,8,["G1096"]],[8,9,["G1473"]],[9,10,["G1510","(G3588)"]],[10,11,["G1"]],[11,12,["G2532","(G3588)"]],[12,13,["G5598"]],[13,14,["G3588"]],[14,15,["G746"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G5056"]],[18,19,["G1473"]],[19,21,["G1325"]],[21,26,["G1372"]],[26,27,["G1537"]],[27,28,["G3588"]],[28,29,["G4077"]],[29,31,["G3588"]],[31,32,["G5204"]],[32,34,["G2222"]],[34,35,["G1432"]]]},{"k":31060,"v":[[0,3,["G3528"]],[3,5,["G2816"]],[5,7,["G3956"]],[7,8,["G2532"]],[8,11,["G2071"]],[11,12,["G848"]],[12,13,["G2316"]],[13,14,["G2532"]],[14,15,["G846"]],[15,17,["G2071"]],[17,18,["G3427"]],[18,19,["G5207"]]]},{"k":31061,"v":[[0,1,["G1161"]],[1,3,["G1169"]],[3,4,["G2532"]],[4,5,["G571"]],[5,6,["G2532"]],[6,8,["G948"]],[8,9,["G2532"]],[9,10,["G5406"]],[10,11,["G2532"]],[11,12,["G4205"]],[12,13,["G2532"]],[13,14,["G5332"]],[14,15,["G2532"]],[15,16,["G1496"]],[16,17,["G2532"]],[17,18,["G3956"]],[18,19,["G5571"]],[19,22,["G848"]],[22,23,["G3313"]],[23,24,["G1722"]],[24,25,["G3588"]],[25,26,["G3041"]],[26,28,["G2545"]],[28,30,["G4442"]],[30,31,["G2532"]],[31,32,["G2303"]],[32,34,["G3603"]],[34,36,["G1208"]],[36,37,["G2288"]]]},{"k":31062,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G4314"]],[4,5,["G3165"]],[5,6,["G1520"]],[6,8,["G3588"]],[8,9,["G2033"]],[9,10,["G32"]],[10,12,["G2192"]],[12,13,["G3588"]],[13,14,["G2033"]],[14,15,["G5357"]],[15,16,["G1073"]],[16,18,["G3588"]],[18,19,["G2033"]],[19,20,["G2078"]],[20,21,["G4127"]],[21,22,["G2532"]],[22,23,["G2980"]],[23,24,["G3326"]],[24,25,["G1700"]],[25,26,["G3004"]],[26,28,["G1204"]],[28,31,["G1166"]],[31,32,["G4671"]],[32,33,["G3588"]],[33,34,["G3565"]],[34,35,["G3588"]],[35,36,["G721"]],[36,37,["G1135"]]]},{"k":31063,"v":[[0,1,["G2532"]],[1,5,["G667","G3165"]],[5,6,["G1722"]],[6,8,["G4151"]],[8,9,["G1909"]],[9,11,["G3173"]],[11,12,["G2532"]],[12,13,["G5308"]],[13,14,["G3735"]],[14,15,["G2532"]],[15,16,["G1166"]],[16,17,["G3427"]],[17,19,["G3173"]],[19,20,["G4172"]],[20,21,["G3588"]],[21,22,["G40"]],[22,23,["G2419"]],[23,24,["G2597"]],[24,26,["G1537"]],[26,27,["G3772"]],[27,28,["G575"]],[28,29,["G2316"]]]},{"k":31064,"v":[[0,1,["G2192"]],[1,2,["G3588"]],[2,3,["G1391"]],[3,5,["G2316"]],[5,6,["G2532"]],[6,7,["G848"]],[7,8,["G5458"]],[8,11,["G3664"]],[11,13,["G3037"]],[13,15,["G5093"]],[15,17,["G5613"]],[17,19,["G2393"]],[19,20,["G3037"]],[20,23,["G2929"]]]},{"k":31065,"v":[[0,1,["G5037"]],[1,2,["G2192"]],[2,4,["G5038"]],[4,5,["G3173"]],[5,6,["G2532"]],[6,7,["G5308"]],[7,9,["G2192"]],[9,10,["G1427"]],[10,11,["G4440"]],[11,12,["G2532"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G4440"]],[15,16,["G1427"]],[16,17,["G32"]],[17,18,["G2532"]],[18,19,["G3686"]],[19,21,["G1924"]],[21,22,["G3739"]],[22,23,["G2076"]],[23,27,["G3588"]],[27,28,["G1427"]],[28,29,["G5443"]],[29,31,["G3588"]],[31,32,["G5207"]],[32,34,["G2474"]]]},{"k":31066,"v":[[0,1,["G575"]],[1,3,["G395"]],[3,4,["G5140"]],[4,5,["G4440"]],[5,6,["G575"]],[6,8,["G1005"]],[8,9,["G5140"]],[9,10,["G4440"]],[10,11,["G575"]],[11,13,["G3558"]],[13,14,["G5140"]],[14,15,["G4440"]],[15,17,["G575"]],[17,19,["G1424"]],[19,20,["G5140"]],[20,21,["G4440"]]]},{"k":31067,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5038"]],[3,5,["G3588"]],[5,6,["G4172"]],[6,7,["G2192"]],[7,8,["G1427"]],[8,9,["G2310"]],[9,10,["G2532"]],[10,11,["G1722"]],[11,12,["G846"]],[12,14,["G3686"]],[14,16,["G3588"]],[16,17,["G1427"]],[17,18,["G652"]],[18,20,["G3588"]],[20,21,["G721"]]]},{"k":31068,"v":[[0,1,["G2532"]],[1,4,["G2980"]],[4,5,["G3326"]],[5,6,["G1700"]],[6,7,["G2192"]],[7,9,["G5552"]],[9,10,["G2563"]],[10,11,["G2443"]],[11,12,["G3354"]],[12,13,["G3588"]],[13,14,["G4172"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G4440"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G5038"]],[21,22,["G846"]]]},{"k":31069,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4172"]],[3,4,["G2749"]],[4,5,["G5068"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G3372","(G848)"]],[8,9,["G2076"]],[9,11,["G5118"]],[11,12,["G3745"]],[12,13,["G3588"]],[13,14,["G4114"]],[14,15,["G2532"]],[15,17,["G3354"]],[17,18,["G3588"]],[18,19,["G4172"]],[19,21,["G3588"]],[21,22,["G2563"]],[22,23,["G1427"]],[23,24,["G5505","(G1909)"]],[24,25,["G4712"]],[25,26,["G3588"]],[26,27,["G3372"]],[27,28,["G2532"]],[28,29,["G3588"]],[29,30,["G4114"]],[30,31,["G2532"]],[31,32,["G3588"]],[32,33,["G5311"]],[33,35,["G846"]],[35,36,["G2076"]],[36,37,["G2470"]]]},{"k":31070,"v":[[0,1,["G2532"]],[1,3,["G3354"]],[3,4,["G3588"]],[4,5,["G5038"]],[5,6,["G846"]],[6,12,["G1540","G5062","G5064"]],[12,13,["G4083"]],[13,17,["G3358"]],[17,20,["G444"]],[20,22,["G3603"]],[22,25,["G32"]]]},{"k":31071,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1739"]],[3,5,["G3588"]],[5,6,["G5038"]],[6,8,["G846"]],[8,9,["G2258"]],[9,11,["G2393"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G4172"]],[14,16,["G2513"]],[16,17,["G5553"]],[17,19,["G3664"]],[19,20,["G2513"]],[20,21,["G5194"]]]},{"k":31072,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2310"]],[3,5,["G3588"]],[5,6,["G5038"]],[6,8,["G3588"]],[8,9,["G4172"]],[9,11,["G2885"]],[11,14,["G3956"]],[14,16,["G5093"]],[16,17,["G3037"]],[17,18,["G3588"]],[18,19,["G4413"]],[19,20,["G2310"]],[20,22,["G2393"]],[22,23,["G3588"]],[23,24,["G1208"]],[24,25,["G4552"]],[25,26,["G3588"]],[26,27,["G5154"]],[27,29,["G5472"]],[29,30,["G3588"]],[30,31,["G5067"]],[31,33,["G4665"]]]},{"k":31073,"v":[[0,1,["G3588"]],[1,2,["G3991"]],[2,3,["G4557"]],[3,4,["G3588"]],[4,5,["G1623"]],[5,6,["G4556"]],[6,7,["G3588"]],[7,8,["G1442"]],[8,9,["G5555"]],[9,10,["G3588"]],[10,11,["G3590"]],[11,12,["G969"]],[12,13,["G3588"]],[13,14,["G1766"]],[14,16,["G5116"]],[16,17,["G3588"]],[17,18,["G1182"]],[18,20,["G5556"]],[20,21,["G3588"]],[21,22,["G1734"]],[22,24,["G5192"]],[24,25,["G3588"]],[25,26,["G1428"]],[26,28,["G271"]]]},{"k":31074,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1427"]],[3,4,["G4440"]],[4,6,["G1427"]],[6,7,["G3135"]],[7,9,["G303","G1538","G1520"]],[9,10,["G4440"]],[10,11,["G2258"]],[11,12,["G1537"]],[12,13,["G1520"]],[13,14,["G3135"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G4113"]],[17,19,["G3588"]],[19,20,["G4172"]],[20,22,["G2513"]],[22,23,["G5553"]],[23,26,["G5613"]],[26,27,["G1307"]],[27,28,["G5194"]]]},{"k":31075,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3756"]],[4,5,["G3485"]],[5,6,["G1722","G846"]],[6,7,["G1063"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,10,["G2316"]],[10,11,["G3841"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G721"]],[14,15,["G2076"]],[15,17,["G3485"]],[17,19,["G846"]]]},{"k":31076,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4172"]],[3,4,["G2192"]],[4,5,["G3756"]],[5,6,["G5532"]],[6,8,["G3588"]],[8,9,["G2246"]],[9,10,["G3761"]],[10,12,["G3588"]],[12,13,["G4582"]],[13,14,["G2443"]],[14,15,["G5316"]],[15,16,["G1722"]],[16,17,["G846"]],[17,18,["G1063"]],[18,19,["G3588"]],[19,20,["G1391"]],[20,22,["G2316"]],[22,24,["G5461"]],[24,25,["G846"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G721"]],[28,30,["G3588"]],[30,31,["G3088"]],[31,32,["G846"]]]},{"k":31077,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1484"]],[3,8,["G4982"]],[8,10,["G4043"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G5457"]],[13,15,["G846"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G935"]],[18,20,["G3588"]],[20,21,["G1093"]],[21,23,["G5342"]],[23,24,["G848"]],[24,25,["G1391"]],[25,26,["G2532"]],[26,27,["G5092"]],[27,28,["G1519"]],[28,29,["G846"]]]},{"k":31078,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4440"]],[3,5,["G846"]],[5,11,["G3364","G2808"]],[11,13,["G2250"]],[13,14,["G1063"]],[14,17,["G2071"]],[17,18,["G3756"]],[18,19,["G3571"]],[19,20,["G1563"]]]},{"k":31079,"v":[[0,1,["G2532"]],[1,4,["G5342"]],[4,5,["G3588"]],[5,6,["G1391"]],[6,7,["G2532"]],[7,8,["G5092"]],[8,10,["G3588"]],[10,11,["G1484"]],[11,12,["G1519"]],[12,13,["G846"]]]},{"k":31080,"v":[[0,1,["G2532"]],[1,6,["G3364"]],[6,7,["G1525"]],[7,8,["G1519"]],[8,9,["G846"]],[9,11,["G3956"]],[11,13,["G2840"]],[13,14,["G2532"]],[14,16,["G4160"]],[16,17,["G946"]],[17,18,["G2532"]],[18,21,["G5579"]],[21,26,["G1125"]],[26,27,["G1722"]],[27,28,["G3588"]],[28,29,["G721"]],[29,30,["G975"]],[30,32,["G2222"]]]},{"k":31081,"v":[[0,1,["G2532"]],[1,3,["G1166"]],[3,4,["G3427"]],[4,6,["G2513"]],[6,7,["G4215"]],[7,9,["G5204"]],[9,11,["G2222"]],[11,12,["G2986"]],[12,13,["G5613"]],[13,14,["G2930"]],[14,15,["G1607"]],[15,17,["G1537"]],[17,18,["G3588"]],[18,19,["G2362"]],[19,21,["G2316"]],[21,22,["G2532"]],[22,24,["G3588"]],[24,25,["G721"]]]},{"k":31082,"v":[[0,1,["G1722"]],[1,3,["G3319"]],[3,5,["G3588"]],[5,6,["G4113"]],[6,8,["G846"]],[8,9,["G2532"]],[9,12,["G1782","G2532","G1782"]],[12,14,["G3588"]],[14,15,["G4215"]],[15,19,["G3586"]],[19,21,["G2222"]],[21,23,["G4160"]],[23,24,["G1427"]],[24,27,["G2590"]],[27,29,["G591"]],[29,30,["G848"]],[30,31,["G2590"]],[31,32,["G2596","G1538","G1520"]],[32,33,["G3376"]],[33,34,["G2532"]],[34,35,["G3588"]],[35,36,["G5444"]],[36,38,["G3588"]],[38,39,["G3586"]],[39,41,["G1519"]],[41,43,["G2322"]],[43,45,["G3588"]],[45,46,["G1484"]]]},{"k":31083,"v":[[0,1,["G2532"]],[1,4,["G2071"]],[4,6,["G3756","G3956","G2089"]],[6,7,["G2652"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G2362"]],[10,12,["G2316"]],[12,13,["G2532"]],[13,15,["G3588"]],[15,16,["G721"]],[16,18,["G2071"]],[18,19,["G1722"]],[19,20,["G846"]],[20,21,["G2532"]],[21,22,["G848"]],[22,23,["G1401"]],[23,25,["G3000"]],[25,26,["G846"]]]},{"k":31084,"v":[[0,1,["G2532"]],[1,4,["G3700"]],[4,5,["G846"]],[5,6,["G4383"]],[6,7,["G2532"]],[7,8,["G846"]],[8,9,["G3686"]],[9,12,["G1909"]],[12,13,["G848"]],[13,14,["G3359"]]]},{"k":31085,"v":[[0,1,["G2532"]],[1,4,["G2071"]],[4,5,["G3756"]],[5,6,["G3571"]],[6,7,["G1563"]],[7,8,["G2532"]],[8,10,["G2192","G5532"]],[10,11,["G3756"]],[11,12,["G3088"]],[12,13,["G2532"]],[13,14,["G5457"]],[14,17,["G2246"]],[17,20,["G2962"]],[20,21,["G2316"]],[21,24,["G5461","G846"]],[24,25,["G2532"]],[25,28,["G936"]],[28,32,["G1519","G165","G165"]]]},{"k":31086,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G3427"]],[5,6,["G3778"]],[6,7,["G3056"]],[7,9,["G4103"]],[9,10,["G2532"]],[10,11,["G228"]],[11,12,["G2532"]],[12,14,["G2962"]],[14,15,["G2316"]],[15,17,["G3588"]],[17,18,["G40"]],[18,19,["G4396"]],[19,20,["G649"]],[20,21,["G848"]],[21,22,["G32"]],[22,24,["G1166"]],[24,26,["G848"]],[26,27,["G1401"]],[27,30,["G3739"]],[30,31,["G1163"]],[31,32,["G1722","G5034"]],[32,34,["G1096"]]]},{"k":31087,"v":[[0,1,["G2400"]],[1,3,["G2064"]],[3,4,["G5035"]],[4,5,["G3107"]],[5,9,["G5083"]],[9,10,["G3588"]],[10,11,["G3056"]],[11,13,["G3588"]],[13,14,["G4394"]],[14,16,["G5127"]],[16,17,["G975"]]]},{"k":31088,"v":[[0,1,["G2532"]],[1,2,["G1473"]],[2,3,["G2491"]],[3,4,["G991"]],[4,6,["G5023"]],[6,7,["G2532"]],[7,8,["G191"]],[8,10,["G2532"]],[10,11,["G3753"]],[11,14,["G191"]],[14,15,["G2532"]],[15,16,["G991"]],[16,19,["G4098"]],[19,21,["G4352"]],[21,22,["G1715"]],[22,23,["G3588"]],[23,24,["G4228"]],[24,26,["G3588"]],[26,27,["G32"]],[27,29,["G1166"]],[29,30,["G3427"]],[30,32,["G5023"]]]},{"k":31089,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,5,["G3427"]],[5,6,["G3708"]],[6,10,["G3361"]],[10,11,["G1063"]],[11,13,["G1510"]],[13,14,["G4675"]],[14,15,["G4889"]],[15,16,["G2532"]],[16,18,["G4675"]],[18,19,["G80"]],[19,20,["G3588"]],[20,21,["G4396"]],[21,22,["G2532"]],[22,26,["G5083"]],[26,27,["G3588"]],[27,28,["G3056"]],[28,30,["G5127"]],[30,31,["G975"]],[31,32,["G4352"]],[32,33,["G2316"]]]},{"k":31090,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G3427"]],[5,6,["G4972"]],[6,7,["G3361"]],[7,8,["G3588"]],[8,9,["G3056"]],[9,11,["G3588"]],[11,12,["G4394"]],[12,14,["G5127"]],[14,15,["G975"]],[15,16,["G3754"]],[16,17,["G3588"]],[17,18,["G2540"]],[18,19,["G2076"]],[19,21,["G1451"]]]},{"k":31091,"v":[[0,4,["G91"]],[4,8,["G91"]],[8,9,["G2089"]],[9,10,["G2532"]],[10,14,["G4510"]],[14,18,["G4510"]],[18,19,["G2089"]],[19,20,["G2532"]],[20,24,["G1342"]],[24,28,["G1344"]],[28,29,["G2089"]],[29,30,["G2532"]],[30,34,["G40"]],[34,38,["G37"]],[38,39,["G2089"]]]},{"k":31092,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G2064"]],[4,5,["G5035"]],[5,6,["G2532"]],[6,7,["G3450"]],[7,8,["G3408"]],[8,10,["G3326"]],[10,11,["G1700"]],[11,13,["G591"]],[13,15,["G1538"]],[15,17,["G5613"]],[17,18,["G848"]],[18,19,["G2041"]],[19,21,["G2071"]]]},{"k":31093,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,3,["G1"]],[3,4,["G2532"]],[4,5,["G5598"]],[5,7,["G746"]],[7,8,["G2532"]],[8,10,["G5056"]],[10,11,["G3588"]],[11,12,["G4413"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G2078"]]]},{"k":31094,"v":[[0,1,["G3107"]],[1,5,["G4160"]],[5,6,["G848"]],[6,7,["G1785"]],[7,8,["G2443"]],[8,9,["G846"]],[9,11,["G2071"]],[11,12,["G1849"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G3586"]],[15,17,["G2222"]],[17,18,["G2532"]],[18,21,["G1525"]],[21,23,["G3588"]],[23,24,["G4440"]],[24,25,["G1519"]],[25,26,["G3588"]],[26,27,["G4172"]]]},{"k":31095,"v":[[0,1,["G1161"]],[1,2,["G1854"]],[2,4,["G2965"]],[4,5,["G2532"]],[5,6,["G5333"]],[6,7,["G2532"]],[7,8,["G4205"]],[8,9,["G2532"]],[9,10,["G5406"]],[10,11,["G2532"]],[11,12,["G1496"]],[12,13,["G2532"]],[13,14,["G3956"]],[14,15,["G5368"]],[15,16,["G2532"]],[16,17,["G4160"]],[17,19,["G5579"]]]},{"k":31096,"v":[[0,1,["G1473"]],[1,2,["G2424"]],[2,4,["G3992"]],[4,5,["G3450"]],[5,6,["G32"]],[6,8,["G3140"]],[8,10,["G5213"]],[10,12,["G5023"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G1577"]],[15,16,["G1473"]],[16,17,["G1510"]],[17,18,["G3588"]],[18,19,["G4491"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G1085"]],[22,24,["G1138"]],[24,26,["G3588"]],[26,27,["G2986"]],[27,28,["G2532"]],[28,29,["G3720"]],[29,30,["G792"]]]},{"k":31097,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4151"]],[3,4,["G2532"]],[4,5,["G3588"]],[5,6,["G3565"]],[6,7,["G3004"]],[7,8,["G2064"]],[8,9,["G2532"]],[9,13,["G191"]],[13,14,["G2036"]],[14,15,["G2064"]],[15,16,["G2532"]],[16,21,["G1372"]],[21,22,["G2064"]],[22,23,["G2532"]],[23,24,["G3588"]],[24,25,["G2309"]],[25,28,["G2983"]],[28,29,["G3588"]],[29,30,["G5204"]],[30,32,["G2222"]],[32,33,["G1432"]]]},{"k":31098,"v":[[0,1,["G1063"]],[1,3,["G4828"]],[3,6,["G3956"]],[6,8,["G191"]],[8,9,["G3588"]],[9,10,["G3056"]],[10,12,["G3588"]],[12,13,["G4394"]],[13,15,["G5127"]],[15,16,["G975"]],[16,17,["G1437"]],[17,19,["G5100"]],[19,21,["G2007"]],[21,22,["G4314"]],[22,24,["G5023"]],[24,25,["G2316"]],[25,27,["G2007"]],[27,28,["G1909"]],[28,29,["G846"]],[29,30,["G3588"]],[30,31,["G4127"]],[31,34,["G1125"]],[34,35,["G1722"]],[35,36,["G5129"]],[36,37,["G975"]]]},{"k":31099,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G5100"]],[4,7,["G851"]],[7,8,["G575"]],[8,9,["G3588"]],[9,10,["G3056"]],[10,13,["G976"]],[13,15,["G5026"]],[15,16,["G4394"]],[16,17,["G2316"]],[17,20,["G851"]],[20,21,["G846"]],[21,22,["G3313"]],[22,24,["G575"]],[24,26,["G976"]],[26,28,["G2222"]],[28,29,["G2532"]],[29,31,["G1537"]],[31,32,["G3588"]],[32,33,["G40"]],[33,34,["G4172"]],[34,35,["G2532"]],[35,41,["G1125"]],[41,42,["G1722"]],[42,43,["G5129"]],[43,44,["G975"]]]},{"k":31100,"v":[[0,3,["G3140"]],[3,5,["G5023"]],[5,6,["G3004"]],[6,7,["G3483"]],[7,9,["G2064"]],[9,10,["G5035"]],[10,11,["G281"]],[11,13,["G3483"]],[13,14,["G2064"]],[14,15,["G2962"]],[15,16,["G2424"]]]},{"k":31101,"v":[[0,1,["G3588"]],[1,2,["G5485"]],[2,4,["G2257"]],[4,5,["G2962"]],[5,6,["G2424"]],[6,7,["G5547"]],[7,9,["G3326"]],[9,10,["G5216"]],[10,11,["G3956"]],[11,12,["G281"]]]}],"words":[{"k":"H1","v":[["*",[1214,1060,[[0,208,170,0,170,[[1,1,1,0,1],[3,2,2,1,3],[8,5,3,3,6],[9,1,1,6,7],[10,3,2,7,9],[11,1,1,9,10],[14,1,1,10,11],[16,2,2,11,13],[18,11,8,13,21],[19,2,2,21,23],[21,3,2,23,25],[23,4,4,25,29],[25,6,4,29,33],[26,24,16,33,49],[27,5,5,49,54],[28,3,2,54,56],[30,18,15,56,71],[31,2,1,71,72],[32,1,1,72,73],[33,5,5,73,78],[34,3,3,78,81],[35,3,3,81,84],[36,11,9,84,93],[37,2,1,93,94],[40,1,1,94,95],[41,7,6,95,101],[42,7,7,101,108],[43,15,11,108,119],[44,11,9,119,128],[45,7,6,128,134],[46,10,9,134,143],[47,10,8,143,151],[48,7,7,151,158],[49,14,12,158,170]]],[1,24,22,170,192,[[51,2,2,170,172],[52,4,4,172,176],[53,1,1,176,177],[55,2,2,177,179],[59,3,1,179,180],[61,1,1,180,181],[62,2,2,181,183],[64,1,1,183,184],[67,1,1,184,185],[69,2,2,185,187],[70,2,2,187,189],[71,1,1,189,190],[83,1,1,190,191],[89,1,1,191,192]]],[2,25,19,192,211,[[105,1,1,192,193],[107,9,6,193,199],[108,1,1,199,200],[109,6,4,200,204],[110,3,3,204,207],[111,2,1,207,208],[114,1,1,208,209],[115,2,2,209,211]]],[3,85,75,211,286,[[117,19,19,211,230],[118,3,3,230,233],[119,6,6,233,239],[120,8,8,239,247],[122,1,1,247,248],[123,1,1,248,249],[127,1,1,249,250],[128,1,1,250,251],[129,1,1,251,252],[130,2,2,252,254],[133,4,3,254,257],[134,2,2,257,259],[136,2,1,259,260],[141,2,2,260,262],[142,2,2,262,264],[143,7,5,264,269],[146,7,4,269,273],[147,1,1,273,274],[148,3,3,274,277],[149,1,1,277,278],[150,2,1,278,279],[152,9,7,279,286]]],[4,71,65,286,351,[[153,4,4,286,290],[156,3,3,290,293],[157,3,3,293,296],[158,4,4,296,300],[159,3,3,300,303],[160,4,4,303,307],[161,1,1,307,308],[162,3,3,308,311],[163,2,2,311,313],[164,1,1,313,314],[165,2,2,314,316],[170,1,1,316,317],[171,2,1,317,318],[173,3,3,318,321],[174,8,6,321,327],[176,2,1,327,328],[178,4,4,328,332],[179,5,4,332,336],[180,3,3,336,339],[181,2,2,339,341],[182,4,3,341,344],[183,3,3,344,347],[184,3,3,347,350],[185,1,1,350,351]]],[5,35,29,351,380,[[187,1,1,351,352],[188,4,3,352,355],[190,1,1,355,356],[191,1,1,356,357],[192,2,2,357,359],[200,1,1,359,360],[201,2,2,360,362],[203,2,2,362,364],[204,1,1,364,365],[205,2,2,365,367],[207,5,4,367,371],[208,3,2,371,373],[210,10,7,373,380]]],[6,54,50,380,430,[[211,1,1,380,381],[212,7,7,381,388],[213,1,1,388,389],[216,5,4,389,393],[218,1,1,393,394],[219,6,6,394,400],[221,5,5,400,405],[224,11,10,405,415],[225,3,3,415,418],[226,2,1,418,419],[227,1,1,419,420],[228,2,2,420,422],[229,8,7,422,429],[231,1,1,429,430]]],[7,3,2,430,432,[[233,1,1,430,431],[235,2,1,431,432]]],[8,54,48,432,480,[[237,5,5,432,437],[244,3,3,437,440],[245,2,2,440,442],[247,5,4,442,446],[249,6,5,446,451],[252,3,3,451,454],[253,2,2,454,456],[254,4,3,456,459],[255,14,12,459,471],[257,6,6,471,477],[258,2,1,477,478],[259,2,2,478,480]]],[9,28,24,480,504,[[268,1,1,480,481],[269,3,3,481,484],[272,1,1,484,485],[273,2,2,485,487],[275,2,1,487,488],[276,3,2,488,490],[279,1,1,490,491],[280,1,1,491,492],[281,1,1,492,493],[282,5,4,493,497],[283,4,3,497,500],[285,2,2,500,502],[287,1,1,502,503],[290,1,1,503,504]]],[10,95,80,504,584,[[291,2,2,504,506],[292,8,7,506,513],[293,4,4,513,517],[295,3,3,517,520],[296,1,1,520,521],[297,2,2,521,523],[298,15,15,523,538],[299,3,3,538,541],[301,9,8,541,549],[302,10,6,549,555],[303,3,3,555,558],[304,5,4,558,562],[305,12,8,562,570],[306,2,2,570,572],[308,1,1,572,573],[309,2,2,573,575],[310,3,1,575,576],[311,2,2,576,578],[312,8,6,578,584]]],[11,70,59,584,643,[[314,2,1,584,585],[315,3,2,585,587],[316,2,2,587,589],[317,1,1,589,590],[318,1,1,590,591],[320,2,1,591,592],[321,2,2,592,594],[322,2,2,594,596],[324,2,2,596,598],[325,5,4,598,602],[326,10,8,602,610],[327,9,6,610,616],[328,3,2,616,618],[329,4,4,618,622],[330,1,1,622,623],[331,1,1,623,624],[332,3,3,624,627],[333,8,7,627,634],[334,3,3,634,637],[335,4,4,637,641],[336,2,2,641,643]]],[12,106,87,643,730,[[339,16,12,643,655],[341,16,11,655,666],[342,6,5,666,671],[343,1,1,671,672],[344,9,9,672,681],[345,5,5,681,686],[346,8,6,686,692],[349,3,3,692,695],[352,1,1,695,696],[354,2,2,696,698],[356,3,2,698,700],[358,1,1,700,701],[359,1,1,701,702],[360,4,3,702,705],[361,9,6,705,711],[362,2,2,711,713],[363,7,7,713,720],[364,1,1,720,721],[365,5,3,721,724],[366,6,6,724,730]]],[13,124,110,730,840,[[367,3,3,730,733],[368,6,5,733,738],[369,1,1,738,739],[370,1,1,739,740],[371,2,2,740,742],[372,9,9,742,751],[373,3,3,751,754],[374,1,1,754,755],[375,2,1,755,756],[376,10,6,756,762],[377,1,1,762,763],[378,1,1,763,764],[379,2,2,764,766],[380,2,2,766,768],[381,2,2,768,770],[382,3,2,770,772],[383,4,4,772,776],[385,2,2,776,778],[386,3,3,778,781],[387,9,7,781,788],[388,1,1,788,789],[389,1,1,789,790],[390,3,3,790,793],[391,5,4,793,797],[392,6,5,797,802],[393,2,2,802,804],[394,5,5,804,809],[395,4,4,809,813],[396,5,4,813,817],[397,1,1,817,818],[398,4,4,818,822],[399,7,6,822,828],[400,6,6,828,834],[401,5,4,834,838],[402,2,2,838,840]]],[14,14,13,840,853,[[403,1,1,840,841],[404,2,2,841,843],[405,1,1,843,844],[406,2,2,844,846],[409,1,1,846,847],[410,3,3,847,850],[411,1,1,850,851],[412,3,2,851,853]]],[15,20,20,853,873,[[413,1,1,853,854],[414,2,2,854,856],[419,3,3,856,859],[420,1,1,859,860],[421,7,7,860,867],[422,1,1,867,868],[423,1,1,868,869],[424,3,3,869,872],[425,1,1,872,873]]],[16,3,2,873,875,[[427,2,1,873,874],[429,1,1,874,875]]],[17,9,9,875,884,[[443,1,1,875,876],[450,2,2,876,878],[452,1,1,878,879],[464,1,1,879,880],[465,1,1,880,881],[466,1,1,881,882],[473,1,1,882,883],[477,1,1,883,884]]],[18,19,19,884,903,[[499,1,1,884,885],[504,1,1,885,886],[516,1,1,886,887],[521,1,1,887,888],[522,2,2,888,890],[526,1,1,890,891],[545,1,1,891,892],[555,5,5,892,897],[566,1,1,897,898],[572,1,1,898,899],[580,1,1,899,900],[583,2,2,900,902],[586,1,1,902,903]]],[19,26,26,903,929,[[628,1,1,903,904],[630,1,1,904,905],[631,2,2,905,907],[633,1,1,907,908],[637,1,1,908,909],[640,1,1,909,910],[642,2,2,910,912],[644,3,3,912,915],[646,3,3,915,918],[647,1,1,918,919],[649,1,1,919,920],[650,3,3,920,923],[654,1,1,923,924],[655,2,2,924,926],[656,1,1,926,927],[657,2,2,927,929]]],[22,21,20,929,949,[[681,1,1,929,930],[685,1,1,930,931],[686,1,1,931,932],[687,1,1,932,933],[692,1,1,933,934],[700,3,3,934,937],[715,1,1,937,938],[716,2,2,938,940],[717,1,1,940,941],[721,1,1,941,942],[723,1,1,942,943],[729,1,1,943,944],[736,1,1,944,945],[741,2,1,945,946],[742,2,2,946,948],[743,1,1,948,949]]],[23,63,62,949,1011,[[746,2,2,949,951],[747,5,5,951,956],[750,1,1,956,957],[751,6,6,957,963],[753,2,2,963,965],[755,5,4,965,969],[756,1,1,969,970],[757,1,1,970,971],[758,1,1,971,972],[760,7,7,972,979],[761,1,1,979,980],[763,1,1,980,981],[764,1,1,981,982],[766,2,2,982,984],[767,2,2,984,986],[768,1,1,986,987],[769,1,1,987,988],[774,1,1,988,989],[775,3,3,989,992],[776,2,2,992,994],[778,3,3,994,997],[779,7,7,997,1004],[788,5,5,1004,1009],[791,1,1,1009,1010],[794,1,1,1010,1011]]],[24,2,2,1011,1013,[[801,2,2,1011,1013]]],[25,27,25,1013,1038,[[803,1,1,1013,1014],[806,2,1,1014,1015],[817,2,2,1015,1017],[819,8,7,1017,1024],[821,7,7,1024,1031],[823,3,3,1031,1034],[837,1,1,1034,1035],[838,1,1,1035,1036],[845,1,1,1036,1037],[848,1,1,1037,1038]]],[26,8,6,1038,1044,[[858,3,3,1038,1041],[860,5,3,1041,1044]]],[27,1,1,1044,1045,[[870,1,1,1044,1045]]],[28,1,1,1045,1046,[[876,1,1,1045,1046]]],[29,2,2,1046,1048,[[880,2,2,1046,1048]]],[32,2,2,1048,1050,[[899,2,2,1048,1050]]],[37,7,6,1050,1056,[[911,4,4,1050,1054],[918,1,1,1054,1055],[923,2,1,1055,1056]]],[38,7,4,1056,1060,[[925,2,1,1056,1057],[926,2,1,1057,1058],[927,1,1,1058,1059],[928,2,1,1059,1060]]]],[54,99,100,223,227,228,255,294,295,299,375,401,402,488,489,490,491,492,493,494,495,507,508,554,568,598,614,629,631,695,707,710,716,733,736,737,739,741,745,746,749,753,757,758,759,761,765,766,768,775,780,781,786,794,804,807,874,876,878,879,880,882,887,889,891,892,902,903,908,915,926,937,979,984,986,991,993,999,1029,1033,1038,1049,1064,1083,1084,1085,1087,1093,1094,1095,1105,1115,1118,1130,1246,1265,1281,1284,1287,1288,1289,1292,1297,1298,1301,1313,1317,1318,1341,1343,1344,1346,1348,1349,1351,1354,1355,1356,1358,1361,1366,1367,1371,1376,1377,1381,1383,1385,1387,1389,1391,1415,1417,1420,1421,1423,1425,1426,1427,1429,1431,1432,1450,1452,1460,1466,1467,1468,1469,1470,1472,1475,1477,1481,1498,1499,1501,1502,1507,1508,1511,1512,1513,1514,1516,1520,1521,1522,1523,1528,1570,1572,1585,1592,1594,1595,1606,1669,1680,1783,1819,1872,1878,1922,2003,2056,2063,2092,2094,2130,2503,2722,3233,3258,3259,3260,3262,3263,3265,3284,3327,3329,3335,3337,3347,3354,3356,3382,3510,3563,3564,3606,3608,3620,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3648,3649,3651,3660,3690,3692,3696,3707,3712,3716,3722,3727,3745,3765,3772,3777,3781,3783,3785,3789,3830,3852,4036,4073,4077,4126,4131,4246,4247,4250,4258,4259,4326,4485,4486,4491,4544,4557,4558,4561,4564,4565,4651,4652,4653,4664,4690,4726,4732,4746,4814,4830,4880,4882,4883,4885,4886,4887,4891,4900,4903,4913,4927,5005,5035,5041,5056,5062,5069,5089,5096,5104,5109,5119,5123,5124,5138,5140,5153,5155,5162,5197,5201,5208,5217,5229,5241,5278,5289,5392,5414,5460,5465,5466,5485,5486,5489,5491,5499,5500,5541,5569,5571,5573,5581,5588,5601,5605,5607,5622,5647,5675,5692,5704,5713,5717,5728,5735,5744,5748,5764,5765,5775,5819,5857,5881,5882,5887,5931,5940,5972,5974,6188,6215,6220,6276,6279,6296,6368,6372,6382,6392,6424,6425,6440,6454,6478,6479,6482,6490,6491,6493,6508,6523,6546,6555,6557,6562,6564,6565,6567,6572,6667,6669,6679,6681,6751,6755,6759,6771,6772,6782,6810,6831,6836,6865,6866,6868,6911,6912,6913,6914,6915,6918,6919,6924,6925,6928,6930,6931,6935,6980,6990,7012,7022,7026,7027,7028,7029,7030,7032,7033,7124,7160,7207,7265,7267,7268,7270,7271,7394,7396,7411,7420,7430,7466,7467,7468,7475,7509,7535,7536,7537,7559,7633,7643,7652,7678,7694,7708,7709,7710,7731,7732,7733,7736,7738,7739,7740,7742,7743,7762,7763,7764,7788,7790,7798,7802,7803,7809,7827,7850,7860,8081,8088,8089,8110,8178,8192,8194,8234,8242,8243,8322,8365,8423,8429,8445,8447,8448,8457,8459,8472,8539,8548,8594,8709,8723,8738,8780,8782,8794,8796,8801,8802,8814,8819,8822,8823,8830,8879,8881,8883,8908,8948,8985,8986,9000,9002,9003,9005,9006,9009,9010,9011,9019,9025,9033,9038,9042,9043,9055,9056,9060,9112,9114,9120,9125,9129,9135,9141,9151,9155,9157,9160,9161,9162,9165,9195,9196,9206,9233,9238,9240,9249,9252,9257,9260,9261,9264,9268,9273,9275,9289,9311,9359,9391,9407,9442,9454,9455,9520,9523,9526,9530,9532,9533,9563,9578,9589,9621,9622,9660,9695,9751,9781,9784,9796,9828,9868,9871,9880,9884,9885,9896,9899,9901,9902,9912,9916,9917,9918,9925,9928,9932,9934,9947,9959,9963,9965,9983,9996,9997,9998,10024,10027,10073,10103,10115,10119,10122,10127,10134,10137,10139,10140,10141,10147,10158,10165,10195,10197,10199,10202,10208,10211,10323,10327,10329,10330,10348,10350,10351,10355,10356,10357,10358,10361,10388,10389,10390,10396,10397,10399,10402,10403,10404,10406,10423,10429,10441,10443,10452,10453,10473,10537,10539,10542,10544,10546,10549,10557,10566,10575,10581,10585,10588,10603,10604,10624,10628,10634,10648,10649,10650,10737,10748,10750,10803,10874,10876,10909,10910,10951,10974,10992,10994,11007,11017,11019,11021,11034,11045,11046,11049,11052,11083,11087,11090,11098,11103,11108,11109,11110,11147,11149,11152,11170,11174,11179,11182,11184,11187,11196,11202,11203,11214,11218,11224,11225,11228,11230,11262,11269,11270,11286,11289,11290,11292,11297,11298,11307,11313,11320,11341,11342,11346,11360,11395,11399,11401,11404,11405,11406,11409,11430,11453,11465,11471,11476,11479,11502,11508,11512,11522,11525,11526,11527,11537,11580,11584,11593,11619,11620,11625,11627,11628,11634,11636,11637,11643,11648,11658,11695,11699,11701,11707,11708,11709,11732,11733,11734,11736,11744,11755,11757,11764,11765,11770,11773,11789,11791,11793,11796,11797,11800,11834,11835,11846,11849,11871,11888,11889,11890,11908,11911,11916,11920,11928,11930,11931,11935,11936,11954,11961,11965,11966,11970,11971,11978,11990,11994,12008,12021,12086,12095,12109,12112,12113,12200,12202,12229,12230,12244,12263,12268,12302,12310,12312,12481,12490,12491,12506,12513,12520,12527,12534,12543,12545,12547,12583,12601,12636,12646,12647,12689,12731,12776,13037,13213,13221,13274,13548,13558,13606,13821,13937,14208,14295,14524,14572,14607,14613,14667,14905,15116,15118,15121,15125,15170,15352,15463,15562,15657,15658,15769,16408,16467,16491,16493,16560,16657,16748,16812,16827,16879,16894,16898,16938,16939,16951,16974,17043,17066,17068,17069,17179,17203,17220,17227,17262,17268,17713,17799,17811,17835,17949,18073,18075,18076,18364,18395,18409,18418,18532,18571,18675,18800,18882,18893,18896,18904,18970,18992,19006,19020,19021,19026,19027,19110,19126,19133,19137,19141,19144,19145,19189,19191,19230,19231,19233,19236,19255,19280,19313,19339,19343,19347,19348,19349,19351,19355,19379,19411,19437,19465,19469,19511,19523,19534,19539,19670,19700,19720,19723,19749,19753,19806,19814,19815,19829,19831,19833,19837,19838,19839,19841,20013,20019,20020,20027,20031,20076,20173,20445,20449,20495,20556,20765,20807,20851,20853,20863,20866,20867,20868,20869,20899,20913,20919,20922,20925,20931,20937,20983,20986,20987,21387,21422,21624,21693,21994,21996,22004,22060,22073,22074,22218,22293,22383,22386,22670,22684,22880,22882,22883,22884,22990,23062,23095,23113,23127,23144]]],["+",[37,37,[[0,8,8,0,8,[[11,1,1,0,1],[18,3,3,1,4],[19,1,1,4,5],[23,2,2,5,7],[30,1,1,7,8]]],[2,2,2,8,10,[[105,1,1,8,9],[111,1,1,9,10]]],[3,1,1,10,11,[[148,1,1,10,11]]],[4,1,1,11,12,[[182,1,1,11,12]]],[5,2,2,12,14,[[210,2,2,12,14]]],[6,1,1,14,15,[[212,1,1,14,15]]],[8,2,2,15,17,[[237,1,1,15,16],[259,1,1,16,17]]],[9,1,1,17,18,[[272,1,1,17,18]]],[10,5,5,18,23,[[298,2,2,18,20],[301,2,2,20,22],[309,1,1,22,23]]],[11,1,1,23,24,[[335,1,1,23,24]]],[13,6,6,24,30,[[372,2,2,24,26],[374,1,1,26,27],[401,2,2,27,29],[402,1,1,29,30]]],[17,2,2,30,32,[[450,2,2,30,32]]],[19,1,1,32,33,[[630,1,1,32,33]]],[23,3,3,33,36,[[751,1,1,33,34],[755,1,1,34,35],[760,1,1,35,36]]],[24,1,1,36,37,[[801,1,1,36,37]]]],[299,489,491,493,508,598,631,889,3233,3382,4732,5713,6479,6482,6564,7268,7860,8178,9009,9010,9120,9125,9391,10195,11297,11298,11360,11971,11978,11994,13213,13221,16467,19145,19236,19348,20445]]],["Father",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17835]]],["chief",[2,2,[[3,2,2,0,2,[[141,2,2,0,2]]]],[4485,4486]]],["father",[578,500,[[0,162,136,0,136,[[1,1,1,0,1],[3,2,2,1,3],[8,4,3,3,6],[9,1,1,6,7],[10,3,2,7,9],[16,2,2,9,11],[18,8,7,11,18],[19,1,1,18,19],[21,3,2,19,21],[25,5,4,21,25],[26,24,16,25,41],[27,4,4,41,45],[28,1,1,45,46],[30,10,9,46,55],[31,2,1,55,56],[32,1,1,56,57],[33,5,5,57,62],[34,2,2,62,64],[35,3,3,64,67],[36,9,8,67,75],[41,7,6,75,81],[42,7,7,81,88],[43,15,11,88,99],[44,11,9,99,108],[45,4,4,108,112],[46,6,6,112,118],[47,6,5,118,123],[48,4,4,123,127],[49,11,9,127,136]]],[1,8,8,136,144,[[51,1,1,136,137],[52,1,1,137,138],[67,1,1,138,139],[69,1,1,139,140],[70,2,2,140,142],[71,1,1,142,143],[89,1,1,143,144]]],[2,9,8,144,152,[[107,3,3,144,147],[108,1,1,147,148],[109,2,1,148,149],[110,3,3,149,152]]],[3,20,17,152,169,[[119,4,4,152,156],[122,1,1,156,157],[128,1,1,157,158],[134,1,1,158,159],[143,5,4,159,163],[146,5,3,163,166],[152,3,3,166,169]]],[4,14,14,169,183,[[157,1,1,169,170],[173,3,3,170,173],[174,4,4,173,177],[178,1,1,177,178],[179,2,2,178,180],[184,2,2,180,182],[185,1,1,182,183]]],[5,12,11,183,194,[[188,2,2,183,185],[192,1,1,185,186],[201,2,2,186,188],[203,2,2,188,190],[205,1,1,190,191],[207,1,1,191,192],[210,3,2,192,194]]],[6,33,31,194,225,[[211,1,1,194,195],[216,1,1,195,196],[218,1,1,196,197],[219,4,4,197,201],[221,3,3,201,204],[224,9,8,204,212],[225,3,3,212,215],[226,2,1,215,216],[227,1,1,216,217],[228,2,2,217,219],[229,6,6,219,225]]],[7,3,2,225,227,[[233,1,1,225,226],[235,2,1,226,227]]],[8,36,31,227,258,[[237,3,3,227,230],[244,2,2,230,232],[245,2,2,232,234],[249,6,5,234,239],[254,4,3,239,242],[255,14,12,242,254],[257,2,2,254,256],[258,2,1,256,257],[259,1,1,257,258]]],[9,16,14,258,272,[[268,1,1,258,259],[269,1,1,259,260],[273,1,1,260,261],[275,1,1,261,262],[276,3,2,262,264],[279,1,1,264,265],[282,2,2,265,267],[283,4,3,267,270],[285,1,1,270,271],[287,1,1,271,272]]],[10,58,50,272,322,[[291,1,1,272,273],[292,7,6,273,279],[293,4,4,279,283],[295,3,3,283,286],[296,1,1,286,287],[297,2,2,287,289],[298,5,5,289,294],[299,2,2,294,296],[301,5,5,296,301],[302,9,6,301,307],[303,2,2,307,309],[305,8,6,309,315],[309,1,1,315,316],[310,3,1,316,317],[312,5,5,317,322]]],[11,30,25,322,347,[[314,2,1,322,323],[315,3,2,323,325],[316,2,2,325,327],[317,1,1,327,328],[318,1,1,328,329],[321,1,1,329,330],[325,3,2,330,332],[326,4,3,332,335],[327,3,3,335,338],[328,1,1,338,339],[330,1,1,339,340],[332,1,1,340,341],[333,4,3,341,344],[334,1,1,344,345],[335,1,1,345,346],[336,1,1,346,347]]],[12,55,43,347,390,[[339,16,12,347,359],[341,15,10,359,369],[344,3,3,369,372],[345,1,1,372,373],[346,2,2,373,375],[354,1,1,375,376],[356,3,2,376,378],[359,1,1,378,379],[361,2,2,379,381],[362,2,2,381,383],[363,2,2,383,385],[365,5,3,385,388],[366,2,2,388,390]]],[13,51,44,390,434,[[367,2,2,390,392],[368,5,4,392,396],[369,1,1,396,397],[370,1,1,397,398],[371,1,1,398,399],[372,4,4,399,403],[373,2,2,403,405],[375,1,1,405,406],[376,9,6,406,412],[381,1,1,412,413],[382,2,1,413,414],[383,3,3,414,417],[386,1,1,417,418],[387,4,3,418,421],[388,1,1,421,422],[390,1,1,422,423],[391,1,1,423,424],[392,2,2,424,426],[393,1,1,426,427],[394,1,1,427,428],[395,1,1,428,429],[399,4,3,429,432],[400,2,2,432,434]]],[16,2,1,434,435,[[427,2,1,434,435]]],[17,5,5,435,440,[[452,1,1,435,436],[464,1,1,436,437],[466,1,1,437,438],[473,1,1,438,439],[477,1,1,439,440]]],[18,4,4,440,444,[[504,1,1,440,441],[545,1,1,441,442],[566,1,1,442,443],[580,1,1,443,444]]],[19,17,17,444,461,[[628,1,1,444,445],[631,1,1,445,446],[637,1,1,446,447],[642,1,1,447,448],[644,2,2,448,450],[646,2,2,450,452],[647,1,1,452,453],[650,3,3,453,456],[655,2,2,456,458],[656,1,1,458,459],[657,2,2,459,461]]],[22,12,11,461,472,[[681,1,1,461,462],[686,1,1,462,463],[700,1,1,463,464],[716,2,2,464,466],[721,1,1,466,467],[723,1,1,467,468],[729,1,1,468,469],[736,1,1,469,470],[741,2,1,470,471],[742,1,1,471,472]]],[23,14,14,472,486,[[746,1,1,472,473],[747,2,2,473,475],[756,1,1,475,476],[760,1,1,476,477],[764,1,1,477,478],[766,2,2,478,480],[775,1,1,480,481],[779,5,5,481,486]]],[25,10,9,486,495,[[817,2,2,486,488],[819,6,5,488,493],[823,1,1,493,494],[845,1,1,494,495]]],[29,1,1,495,496,[[880,1,1,495,496]]],[32,1,1,496,497,[[899,1,1,496,497]]],[37,2,1,497,498,[[923,2,1,497,498]]],[38,3,2,498,500,[[925,2,1,498,499],[926,1,1,499,500]]]],[54,99,100,223,227,228,255,294,295,401,402,488,489,490,491,492,494,495,507,554,568,695,707,710,716,733,736,737,739,741,745,746,749,753,757,758,759,761,765,766,768,775,780,781,786,807,878,879,880,882,891,902,908,915,926,937,979,984,986,991,993,999,1029,1038,1049,1064,1083,1084,1085,1087,1093,1094,1105,1115,1118,1265,1281,1284,1287,1288,1289,1292,1297,1298,1301,1313,1317,1318,1341,1343,1344,1346,1348,1349,1351,1354,1355,1356,1358,1361,1366,1367,1371,1376,1377,1381,1383,1385,1387,1389,1391,1415,1421,1425,1426,1427,1431,1432,1452,1460,1468,1469,1470,1475,1498,1499,1501,1508,1511,1512,1513,1516,1520,1521,1522,1523,1572,1585,2003,2063,2092,2094,2130,2722,3258,3260,3262,3284,3327,3347,3354,3356,3696,3716,3722,3727,3830,4073,4259,4557,4558,4561,4565,4652,4653,4664,4885,4887,4891,5069,5460,5465,5466,5485,5486,5489,5499,5571,5601,5607,5764,5765,5819,5882,5887,5972,6215,6220,6276,6279,6368,6392,6478,6508,6523,6679,6751,6755,6771,6782,6810,6865,6866,6868,6911,6912,6913,6914,6915,6918,6919,6925,6930,6931,6935,6980,6990,7012,7022,7027,7028,7029,7030,7032,7033,7160,7207,7265,7267,7270,7394,7396,7420,7430,7509,7535,7536,7537,7559,7708,7709,7710,7731,7732,7733,7736,7738,7739,7740,7742,7743,7762,7763,7764,7790,7802,7827,7850,8081,8089,8194,8234,8242,8243,8322,8429,8447,8457,8459,8472,8548,8594,8723,8782,8794,8796,8801,8802,8814,8819,8822,8823,8830,8879,8881,8883,8908,8948,8985,9000,9002,9003,9005,9011,9055,9056,9112,9114,9135,9141,9151,9155,9157,9160,9161,9162,9165,9195,9196,9252,9260,9264,9268,9273,9275,9407,9442,9523,9526,9530,9532,9533,9563,9578,9589,9621,9622,9660,9695,9781,9885,9896,9899,9901,9917,9928,9959,9963,9965,10027,10103,10122,10139,10140,10147,10199,10211,10323,10327,10329,10330,10348,10350,10351,10355,10356,10357,10358,10361,10388,10389,10390,10396,10397,10399,10402,10403,10404,10406,10549,10557,10566,10604,10634,10650,10876,10909,10910,10974,11017,11034,11049,11052,11083,11087,11147,11149,11152,11174,11187,11202,11203,11214,11218,11225,11228,11230,11262,11269,11286,11289,11290,11292,11341,11342,11395,11399,11401,11404,11405,11406,11409,11508,11512,11525,11526,11527,11619,11627,11628,11636,11648,11699,11707,11733,11736,11757,11765,11793,11911,11930,11931,11935,11936,12731,13274,13548,13606,13821,13937,14295,14905,15352,15562,16408,16491,16657,16827,16894,16898,16938,16951,16974,17066,17068,17069,17203,17220,17227,17262,17268,17713,17811,18073,18395,18409,18532,18571,18675,18800,18882,18893,18992,19006,19021,19255,19343,19437,19465,19469,19700,19829,19831,19833,19839,19841,20765,20807,20853,20866,20867,20868,20869,20983,21624,22386,22670,23062,23095,23113]]],["father's",[116,107,[[0,28,25,0,25,[[8,1,1,0,1],[23,2,2,1,3],[25,1,1,3,4],[27,1,1,4,5],[28,2,2,5,7],[30,6,5,7,12],[34,1,1,12,13],[36,2,2,13,15],[37,2,1,15,16],[40,1,1,16,17],[45,2,1,17,18],[46,1,1,18,19],[47,1,1,19,20],[48,2,2,20,22],[49,3,3,22,25]]],[1,2,2,25,27,[[51,1,1,25,26],[64,1,1,26,27]]],[2,11,8,27,35,[[107,6,4,27,31],[109,4,3,31,34],[111,1,1,34,35]]],[3,6,6,35,41,[[118,1,1,35,36],[134,1,1,36,37],[143,2,2,37,39],[146,2,2,39,41]]],[4,6,3,41,44,[[174,4,2,41,43],[179,2,1,43,44]]],[5,3,3,44,47,[[188,2,2,44,46],[192,1,1,46,47]]],[6,11,11,47,58,[[216,3,3,47,50],[219,2,2,50,52],[221,2,2,52,54],[224,2,2,54,56],[229,2,2,56,58]]],[8,11,11,58,69,[[237,1,1,58,59],[244,1,1,59,60],[252,3,3,60,63],[253,2,2,63,65],[257,4,4,65,69]]],[9,10,10,69,79,[[269,2,2,69,71],[275,1,1,71,72],[280,1,1,72,73],[281,1,1,73,74],[282,3,3,74,77],[285,1,1,77,78],[290,1,1,78,79]]],[10,2,2,79,81,[[302,1,1,79,80],[308,1,1,80,81]]],[11,1,1,81,82,[[322,1,1,81,82]]],[12,6,6,82,88,[[342,1,1,82,83],[344,2,2,83,85],[349,1,1,85,86],[358,1,1,86,87],[360,1,1,87,88]]],[13,3,3,88,91,[[368,1,1,88,89],[376,1,1,89,90],[387,1,1,90,91]]],[14,1,1,91,92,[[404,1,1,91,92]]],[15,2,2,92,94,[[413,1,1,92,93],[419,1,1,93,94]]],[16,1,1,94,95,[[429,1,1,94,95]]],[18,1,1,95,96,[[522,1,1,95,96]]],[19,5,5,96,101,[[631,1,1,96,97],[633,1,1,97,98],[640,1,1,98,99],[642,1,1,99,100],[654,1,1,100,101]]],[22,3,3,101,104,[[685,1,1,101,102],[700,2,2,102,104]]],[23,1,1,104,105,[[779,1,1,104,105]]],[25,2,2,105,107,[[819,1,1,105,106],[823,1,1,106,107]]]],[228,614,629,707,794,804,807,874,878,887,892,903,1033,1085,1095,1130,1246,1417,1432,1468,1477,1481,1507,1514,1528,1570,1922,3259,3262,3263,3265,3329,3335,3337,3382,3660,4258,4561,4564,4651,4664,5491,5500,5605,5881,5887,5974,6669,6679,6681,6759,6772,6831,6836,6924,6928,7026,7027,7271,7411,7633,7643,7652,7678,7694,7788,7798,7803,7809,8088,8110,8234,8365,8423,8445,8447,8448,8539,8709,9161,9359,9796,10429,10537,10575,10748,10951,10994,11224,11405,11637,12086,12302,12481,12776,14607,16493,16560,16748,16812,17179,17799,18075,18076,19837,20863,20987]]],["fathers",[468,438,[[0,10,10,0,10,[[14,1,1,0,1],[30,1,1,1,2],[45,1,1,2,3],[46,3,3,3,6],[47,3,3,6,9],[48,1,1,9,10]]],[1,12,11,10,21,[[52,3,3,10,13],[53,1,1,13,14],[55,1,1,14,15],[59,2,1,15,16],[61,1,1,16,17],[62,2,2,17,19],[69,1,1,19,20],[83,1,1,20,21]]],[2,3,3,21,24,[[114,1,1,21,22],[115,2,2,22,24]]],[3,54,50,24,74,[[117,19,19,24,43],[118,2,2,43,45],[119,2,2,45,47],[120,8,8,47,55],[123,1,1,55,56],[127,1,1,56,57],[129,1,1,57,58],[130,2,2,58,60],[133,3,2,60,62],[136,2,1,62,63],[142,1,1,63,64],[147,1,1,64,65],[148,2,2,65,67],[149,1,1,67,68],[150,2,1,68,69],[152,6,5,69,74]]],[4,49,47,74,121,[[153,4,4,74,78],[156,3,3,78,81],[157,2,2,81,83],[158,4,4,83,87],[159,3,3,87,90],[160,4,4,90,94],[161,1,1,94,95],[162,3,3,95,98],[163,2,2,98,100],[164,1,1,100,101],[165,2,2,101,103],[171,2,1,103,104],[176,2,1,104,105],[178,3,3,105,108],[179,1,1,108,109],[180,3,3,109,112],[181,2,2,112,114],[182,3,3,114,117],[183,3,3,117,120],[184,1,1,120,121]]],[5,17,16,121,137,[[187,1,1,121,122],[190,1,1,122,123],[191,1,1,123,124],[200,1,1,124,125],[204,1,1,125,126],[205,1,1,126,127],[207,4,3,127,130],[208,2,2,130,132],[210,5,5,132,137]]],[6,9,9,137,146,[[212,6,6,137,143],[213,1,1,143,144],[216,1,1,144,145],[231,1,1,145,146]]],[8,5,4,146,150,[[247,5,4,146,150]]],[9,1,1,150,151,[[273,1,1,150,151]]],[10,30,27,151,178,[[291,1,1,151,152],[292,1,1,152,153],[298,8,8,153,161],[299,1,1,161,162],[301,2,2,162,164],[303,1,1,164,165],[304,5,4,165,169],[305,4,3,169,172],[306,2,2,172,174],[311,2,2,174,176],[312,3,2,176,178]]],[11,38,33,178,211,[[320,2,1,178,179],[321,1,1,179,180],[322,1,1,180,181],[324,2,2,181,183],[325,2,2,183,185],[326,6,5,185,190],[327,6,4,190,194],[328,2,1,194,195],[329,4,4,195,199],[331,1,1,199,200],[332,2,2,200,202],[333,4,4,202,206],[334,2,2,206,208],[335,2,2,208,210],[336,1,1,210,211]]],[12,44,39,211,250,[[341,1,1,211,212],[342,5,4,212,216],[343,1,1,216,217],[344,4,4,217,221],[345,4,4,221,225],[346,6,5,225,230],[349,2,2,230,232],[352,1,1,232,233],[354,1,1,233,234],[360,3,2,234,236],[361,6,4,236,240],[363,5,5,240,245],[364,1,1,245,246],[366,4,4,246,250]]],[13,64,60,250,310,[[367,1,1,250,251],[371,1,1,251,252],[372,3,3,252,255],[373,1,1,255,256],[375,1,1,256,257],[377,1,1,257,258],[378,1,1,258,259],[379,2,2,259,261],[380,2,2,261,263],[381,1,1,263,264],[382,1,1,264,265],[383,1,1,265,266],[385,2,2,266,268],[386,2,2,268,270],[387,4,3,270,273],[389,1,1,273,274],[390,2,2,274,276],[391,4,3,276,279],[392,4,3,279,282],[393,1,1,282,283],[394,4,4,283,287],[395,3,3,287,290],[396,5,4,290,294],[397,1,1,294,295],[398,4,4,295,299],[399,3,3,299,302],[400,4,4,302,306],[401,3,3,306,309],[402,1,1,309,310]]],[14,13,12,310,322,[[403,1,1,310,311],[404,1,1,311,312],[405,1,1,312,313],[406,2,2,313,315],[409,1,1,315,316],[410,3,3,316,319],[411,1,1,319,320],[412,3,2,320,322]]],[15,16,16,322,338,[[419,2,2,322,324],[420,1,1,324,325],[421,7,7,325,332],[422,1,1,332,333],[423,1,1,333,334],[424,3,3,334,337],[425,1,1,337,338]]],[17,2,2,338,340,[[443,1,1,338,339],[465,1,1,339,340]]],[18,14,14,340,354,[[499,1,1,340,341],[516,1,1,341,342],[521,1,1,342,343],[522,1,1,343,344],[526,1,1,344,345],[555,5,5,345,350],[572,1,1,350,351],[583,2,2,351,353],[586,1,1,353,354]]],[19,3,3,354,357,[[644,1,1,354,355],[646,1,1,355,356],[649,1,1,356,357]]],[22,5,5,357,362,[[692,1,1,357,358],[715,1,1,358,359],[717,1,1,359,360],[742,1,1,360,361],[743,1,1,361,362]]],[23,45,45,362,407,[[746,1,1,362,363],[747,3,3,363,366],[750,1,1,366,367],[751,5,5,367,372],[753,2,2,372,374],[755,4,4,374,378],[757,1,1,378,379],[758,1,1,379,380],[760,5,5,380,385],[761,1,1,385,386],[763,1,1,386,387],[767,2,2,387,389],[768,1,1,389,390],[769,1,1,390,391],[774,1,1,391,392],[775,2,2,392,394],[776,2,2,394,396],[778,3,3,396,399],[779,1,1,399,400],[788,5,5,400,405],[791,1,1,405,406],[794,1,1,406,407]]],[24,1,1,407,408,[[801,1,1,407,408]]],[25,13,12,408,420,[[803,1,1,408,409],[806,2,1,409,410],[819,1,1,410,411],[821,6,6,411,417],[837,1,1,417,418],[838,1,1,418,419],[848,1,1,419,420]]],[26,7,6,420,426,[[858,3,3,420,423],[860,4,3,423,426]]],[27,1,1,426,427,[[870,1,1,426,427]]],[28,1,1,427,428,[[876,1,1,427,428]]],[29,1,1,428,429,[[880,1,1,428,429]]],[32,1,1,429,430,[[899,1,1,429,430]]],[37,5,5,430,435,[[911,4,4,430,434],[918,1,1,434,435]]],[38,4,3,435,438,[[926,1,1,435,436],[927,1,1,436,437],[928,2,1,437,438]]]],[375,876,1420,1423,1429,1450,1466,1467,1472,1502,1592,1594,1595,1606,1680,1783,1819,1872,1878,2056,2503,3510,3563,3564,3606,3608,3620,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3648,3649,3651,3690,3692,3707,3712,3745,3765,3772,3777,3781,3783,3785,3789,3852,4036,4077,4126,4131,4246,4247,4326,4544,4690,4726,4746,4814,4830,4880,4882,4883,4886,4887,4900,4903,4913,4927,5005,5035,5041,5056,5062,5089,5096,5104,5109,5119,5123,5124,5138,5140,5153,5155,5162,5197,5201,5208,5217,5229,5241,5278,5289,5414,5541,5569,5573,5581,5588,5622,5647,5675,5692,5704,5713,5717,5728,5735,5744,5748,5775,5857,5931,5940,6188,6296,6372,6382,6424,6425,6440,6454,6478,6482,6490,6491,6493,6546,6555,6557,6562,6565,6567,6572,6667,7124,7466,7467,7468,7475,8192,8738,8780,8986,9006,9019,9025,9033,9038,9042,9043,9060,9129,9151,9206,9233,9238,9240,9249,9257,9261,9273,9289,9311,9454,9455,9520,9530,9751,9784,9828,9868,9871,9880,9884,9902,9912,9916,9918,9925,9932,9934,9947,9963,9983,9996,9997,9998,10024,10073,10115,10119,10127,10134,10137,10141,10158,10165,10197,10202,10208,10423,10441,10443,10452,10453,10473,10539,10542,10544,10546,10581,10585,10588,10603,10624,10628,10634,10648,10649,10737,10750,10803,10874,10992,11007,11019,11021,11045,11046,11090,11098,11103,11108,11109,11110,11170,11179,11182,11184,11196,11270,11307,11313,11320,11346,11395,11430,11453,11465,11471,11476,11479,11502,11522,11537,11580,11584,11593,11620,11625,11634,11643,11658,11695,11701,11708,11709,11732,11734,11744,11755,11764,11770,11773,11789,11791,11796,11797,11800,11834,11835,11846,11849,11871,11888,11889,11890,11908,11916,11920,11928,11954,11961,11965,11966,11970,11971,11990,12008,12021,12095,12109,12112,12113,12200,12202,12229,12230,12244,12263,12268,12490,12491,12506,12513,12520,12527,12534,12543,12545,12547,12583,12601,12636,12646,12647,12689,13037,13558,14208,14524,14572,14613,14667,15116,15118,15121,15125,15170,15463,15657,15658,15769,16879,16939,17043,17949,18364,18418,18896,18904,18970,19020,19026,19027,19110,19126,19133,19137,19141,19144,19189,19191,19230,19231,19233,19236,19280,19313,19339,19347,19349,19351,19355,19379,19411,19511,19523,19534,19539,19670,19720,19723,19749,19753,19806,19814,19815,19838,20013,20019,20020,20027,20031,20076,20173,20449,20495,20556,20851,20899,20913,20922,20925,20931,20937,21387,21422,21693,21994,21996,22004,22060,22073,22074,22218,22293,22383,22684,22880,22882,22883,22884,22990,23113,23127,23144]]],["fathers'",[9,9,[[1,2,2,0,2,[[55,1,1,0,1],[59,1,1,1,2]]],[3,2,2,2,4,[[133,1,1,2,3],[142,1,1,3,4]]],[15,2,2,4,6,[[414,2,2,4,6]]],[25,2,2,6,8,[[821,1,1,6,7],[823,1,1,7,8]]],[26,1,1,8,9,[[860,1,1,8,9]]]],[1669,1783,4250,4491,12310,12312,20919,20986,22060]]],["patrimony",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5392]]],["prince",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6440]]],["principal",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11021]]]]},{"k":"H2","v":[["*",[9,7,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,7,5,2,7,[[851,1,1,2,3],[854,6,4,3,7]]]],[12125,12146,21781,21876,21885,21887,21892]]],["father",[6,4,[[26,6,4,0,4,[[854,6,4,0,4]]]],[21876,21885,21887,21892]]],["fathers",[3,3,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,1,1,2,3,[[851,1,1,2,3]]]],[12125,12146,21781]]]]},{"k":"H3","v":[["*",[2,2,[[17,1,1,0,1,[[443,1,1,0,1]]],[21,1,1,1,2,[[676,1,1,1,2]]]],[13041,17625]]],["fruits",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17625]]],["greenness",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13041]]]]},{"k":"H4","v":[["fruit",[3,3,[[26,3,3,0,3,[[853,3,3,0,3]]]],[21849,21851,21858]]]]},{"k":"H5","v":[["Abagtha",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12712]]]]},{"k":"H6","v":[["*",[184,174,[[1,1,1,0,1,[[59,1,1,0,1]]],[2,2,2,1,3,[[112,1,1,1,2],[115,1,1,2,3]]],[3,8,6,3,9,[[132,1,1,3,4],[133,2,1,4,5],[137,2,2,5,7],[140,1,1,7,8],[149,2,1,8,9]]],[4,24,19,9,28,[[156,2,1,9,10],[159,3,3,10,13],[160,4,2,13,15],[161,1,1,15,16],[163,2,2,16,18],[164,3,2,18,20],[174,1,1,20,21],[178,1,1,21,22],[180,4,4,22,26],[182,2,1,26,27],[184,1,1,27,28]]],[5,3,3,28,31,[[193,1,1,28,29],[209,2,2,29,31]]],[6,1,1,31,32,[[215,1,1,31,32]]],[8,2,2,32,34,[[244,2,2,32,34]]],[9,1,1,34,35,[[267,1,1,34,35]]],[11,7,7,35,42,[[321,1,1,35,36],[322,1,1,36,37],[323,1,1,37,38],[325,1,1,38,39],[331,1,1,39,40],[333,1,1,40,41],[336,1,1,41,42]]],[16,13,11,42,53,[[428,2,2,42,44],[429,4,3,44,47],[432,1,1,47,48],[433,2,2,48,50],[434,4,3,50,53]]],[17,15,15,53,68,[[438,1,1,53,54],[439,4,4,54,58],[441,1,1,58,59],[443,1,1,59,60],[446,1,1,60,61],[447,1,1,61,62],[449,1,1,62,63],[453,1,1,63,64],[455,1,1,64,65],[464,1,1,65,66],[465,1,1,66,67],[466,1,1,67,68]]],[18,26,26,68,94,[[478,1,1,68,69],[479,1,1,69,70],[482,1,1,70,71],[486,4,4,71,75],[487,1,1,75,76],[498,1,1,76,77],[508,1,1,77,78],[514,1,1,78,79],[518,1,1,79,80],[526,1,1,80,81],[545,1,1,81,82],[550,1,1,82,83],[557,1,1,83,84],[560,1,1,84,85],[569,1,1,85,86],[579,1,1,86,87],[589,1,1,87,88],[596,3,3,88,91],[619,1,1,91,92],[620,1,1,92,93],[623,1,1,93,94]]],[19,10,9,94,103,[[628,1,1,94,95],[637,1,1,95,96],[638,3,2,96,98],[646,1,1,98,99],[648,1,1,99,100],[655,1,1,100,101],[656,1,1,101,102],[658,1,1,102,103]]],[20,6,6,103,109,[[661,1,1,103,104],[663,1,1,104,105],[665,2,2,105,107],[667,2,2,107,109]]],[22,7,7,109,116,[[704,1,1,109,110],[705,1,1,110,111],[707,1,1,111,112],[715,1,1,112,113],[719,1,1,113,114],[735,1,1,114,115],[738,1,1,115,116]]],[23,26,26,116,142,[[745,1,1,116,117],[748,1,1,117,118],[750,1,1,118,119],[751,1,1,119,120],[753,1,1,120,121],[754,1,1,121,122],[756,1,1,122,123],[759,1,1,123,124],[762,2,2,124,126],[767,1,1,126,127],[769,2,2,127,129],[771,2,2,129,131],[775,1,1,131,132],[784,1,1,132,133],[790,1,1,133,134],[792,3,3,134,137],[793,2,2,137,139],[794,1,1,139,140],[795,2,2,140,142]]],[24,2,2,142,144,[[798,1,1,142,143],[799,1,1,143,144]]],[25,14,14,144,158,[[807,1,1,144,145],[808,1,1,145,146],[813,1,1,146,147],[820,1,1,147,148],[823,1,1,148,149],[826,2,2,149,151],[827,1,1,151,152],[829,1,1,152,153],[831,1,1,153,154],[833,1,1,154,155],[835,2,2,155,157],[838,1,1,157,158]]],[28,1,1,158,159,[[876,1,1,158,159]]],[29,3,3,159,162,[[879,1,1,159,160],[880,1,1,160,161],[881,1,1,161,162]]],[30,2,2,162,164,[[888,2,2,162,164]]],[31,4,4,164,168,[[889,2,2,164,166],[891,1,1,166,167],[892,1,1,167,168]]],[32,3,3,168,171,[[896,1,1,168,169],[897,1,1,169,170],[899,1,1,170,171]]],[35,2,2,171,173,[[907,2,2,171,173]]],[37,1,1,173,174,[[919,1,1,173,174]]]],[1784,3432,3562,4227,4256,4369,4370,4465,4812,5030,5121,5131,5135,5156,5157,5160,5212,5225,5242,5243,5473,5571,5631,5633,5662,5674,5726,5786,5983,6473,6476,6654,7394,7411,8049,9764,9812,9830,9878,10079,10122,10204,12756,12760,12769,12776,12778,12811,12822,12828,12840,12846,12858,12907,12937,12939,12941,12950,12996,13042,13128,13151,13200,13293,13333,13545,13559,13607,13945,13957,13979,14024,14026,14027,14039,14057,14201,14343,14470,14547,14658,14902,15047,15214,15258,15420,15547,15813,15990,15993,16074,16290,16305,16345,16432,16684,16695,16698,16934,17012,17224,17227,17290,17365,17411,17436,17444,17481,17493,18144,18164,18207,18371,18462,18766,18833,18956,19036,19110,19147,19187,19216,19266,19322,19391,19402,19485,19544,19569,19606,19611,19719,19956,20053,20088,20116,20126,20134,20165,20172,20230,20267,20341,20372,20566,20603,20702,20886,21003,21090,21099,21117,21173,21217,21261,21317,21329,21408,22302,22372,22393,22410,22518,22522,22537,22545,22567,22578,22629,22643,22666,22810,22818,23004]]],["+",[24,20,[[3,1,1,0,1,[[149,1,1,0,1]]],[4,10,6,1,7,[[156,2,1,1,2],[159,1,1,2,3],[160,2,1,3,4],[164,3,2,4,6],[182,2,1,6,7]]],[11,2,2,7,9,[[322,1,1,7,8],[323,1,1,8,9]]],[16,3,3,9,12,[[428,1,1,9,10],[433,2,2,10,12]]],[17,1,1,12,13,[[446,1,1,12,13]]],[18,1,1,13,14,[[619,1,1,13,14]]],[20,1,1,14,15,[[665,1,1,14,15]]],[23,3,3,15,18,[[756,1,1,15,16],[759,1,1,16,17],[769,1,1,17,18]]],[25,1,1,18,19,[[826,1,1,18,19]]],[35,1,1,19,20,[[907,1,1,19,20]]]],[4812,5030,5135,5156,5242,5243,5726,9812,9830,12760,12822,12828,13128,16290,17436,19266,19322,19569,21099,22818]]],["broken",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14343]]],["destroy",[30,29,[[2,1,1,0,1,[[112,1,1,0,1]]],[3,2,2,1,3,[[140,1,1,1,2],[149,1,1,2,3]]],[4,3,3,3,6,[[159,1,1,3,4],[161,1,1,4,5],[180,1,1,5,6]]],[5,1,1,6,7,[[193,1,1,6,7]]],[11,1,1,7,8,[[336,1,1,7,8]]],[16,3,2,8,10,[[429,1,1,8,9],[434,2,1,9,10]]],[18,4,4,10,14,[[482,1,1,10,11],[498,1,1,11,12],[596,1,1,12,13],[620,1,1,13,14]]],[19,1,1,14,15,[[628,1,1,14,15]]],[23,6,6,15,21,[[745,1,1,15,16],[762,1,1,16,17],[767,1,1,17,18],[775,1,1,18,19],[790,1,1,19,20],[793,1,1,20,21]]],[25,5,5,21,26,[[807,1,1,21,22],[823,1,1,22,23],[829,1,1,23,24],[831,1,1,24,25],[833,1,1,25,26]]],[30,1,1,26,27,[[888,1,1,26,27]]],[32,1,1,27,28,[[897,1,1,27,28]]],[35,1,1,28,29,[[907,1,1,28,29]]]],[3432,4465,4812,5121,5160,5674,5983,10204,12769,12858,13979,14201,15993,16305,16432,18956,19391,19485,19719,20053,20165,20566,21003,21173,21217,21261,22518,22643,22810]]],["destroyed",[16,16,[[1,1,1,0,1,[[59,1,1,0,1]]],[4,3,3,1,4,[[159,1,1,1,2],[163,1,1,2,3],[180,1,1,3,4]]],[11,3,3,4,7,[[325,1,1,4,5],[331,1,1,5,6],[333,1,1,6,7]]],[16,4,4,7,11,[[428,1,1,7,8],[429,1,1,8,9],[434,2,2,9,11]]],[18,1,1,11,12,[[486,1,1,11,12]]],[22,1,1,12,13,[[715,1,1,12,13]]],[23,1,1,13,14,[[795,1,1,13,14]]],[24,1,1,14,15,[[798,1,1,14,15]]],[25,1,1,15,16,[[827,1,1,15,16]]]],[1784,5131,5212,5662,9878,10079,10122,12756,12776,12840,12846,14026,18371,20267,20341,21117]]],["destroyest",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13200]]],["destroyeth",[3,3,[[4,1,1,0,1,[[160,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[20,1,1,2,3,[[667,1,1,2,3]]]],[5157,13151,17493]]],["destruction",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22522]]],["faileth",[1,1,[[25,1,1,0,1,[[813,1,1,0,1]]]],[20702]]],["lose",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17365]]],["lost",[9,9,[[4,1,1,0,1,[[174,1,1,0,1]]],[8,2,2,1,3,[[244,2,2,1,3]]],[18,1,1,3,4,[[596,1,1,3,4]]],[23,1,1,4,5,[[794,1,1,4,5]]],[25,4,4,5,9,[[820,1,1,5,6],[835,2,2,6,8],[838,1,1,8,9]]]],[5473,7394,7411,16074,20172,20886,21317,21329,21408]]],["perish",[70,68,[[2,1,1,0,1,[[115,1,1,0,1]]],[3,2,1,1,2,[[133,2,1,1,2]]],[4,5,5,2,7,[[160,1,1,2,3],[163,1,1,3,4],[178,1,1,4,5],[180,2,2,5,7]]],[5,2,2,7,9,[[209,2,2,7,9]]],[6,1,1,9,10,[[215,1,1,9,10]]],[11,1,1,10,11,[[321,1,1,10,11]]],[16,3,2,11,13,[[429,2,1,11,12],[432,1,1,12,13]]],[17,9,9,13,22,[[438,1,1,13,14],[439,2,2,14,16],[441,1,1,16,17],[443,1,1,17,18],[453,1,1,18,19],[455,1,1,19,20],[464,1,1,20,21],[466,1,1,21,22]]],[18,15,15,22,37,[[478,1,1,22,23],[479,1,1,23,24],[486,2,2,24,26],[514,1,1,26,27],[518,1,1,27,28],[526,1,1,28,29],[545,1,1,29,30],[550,1,1,30,31],[557,1,1,31,32],[560,1,1,32,33],[569,1,1,33,34],[579,1,1,34,35],[589,1,1,35,36],[623,1,1,36,37]]],[19,7,7,37,44,[[637,1,1,37,38],[638,2,2,38,40],[646,1,1,40,41],[648,1,1,41,42],[655,1,1,42,43],[658,1,1,43,44]]],[20,1,1,44,45,[[663,1,1,44,45]]],[22,5,5,45,50,[[704,1,1,45,46],[705,1,1,46,47],[707,1,1,47,48],[719,1,1,48,49],[738,1,1,49,50]]],[23,9,9,50,59,[[748,1,1,50,51],[750,1,1,51,52],[754,1,1,52,53],[762,1,1,53,54],[771,2,2,54,56],[784,1,1,56,57],[792,1,1,57,58],[795,1,1,58,59]]],[25,2,2,59,61,[[808,1,1,59,60],[826,1,1,60,61]]],[29,3,3,61,64,[[879,1,1,61,62],[880,1,1,62,63],[881,1,1,63,64]]],[31,3,3,64,67,[[889,2,2,64,66],[891,1,1,66,67]]],[37,1,1,67,68,[[919,1,1,67,68]]]],[3562,4256,5157,5225,5571,5631,5633,6473,6476,6654,9764,12778,12811,12907,12939,12950,12996,13042,13293,13333,13545,13607,13945,13957,14024,14039,14470,14547,14658,14902,15047,15214,15258,15420,15547,15813,16345,16684,16695,16698,16934,17012,17224,17290,17411,18144,18164,18207,18462,18833,19036,19110,19216,19402,19606,19611,19956,20088,20230,20603,21090,22372,22393,22410,22537,22545,22567,23004]]],["perished",[17,17,[[3,2,2,0,2,[[132,1,1,0,1],[137,1,1,1,2]]],[9,1,1,2,3,[[267,1,1,2,3]]],[17,2,2,3,5,[[439,1,1,3,4],[465,1,1,4,5]]],[18,3,3,5,8,[[486,1,1,5,6],[487,1,1,6,7],[596,1,1,7,8]]],[20,1,1,8,9,[[667,1,1,8,9]]],[23,3,3,9,12,[[751,1,1,9,10],[792,1,1,10,11],[793,1,1,11,12]]],[24,1,1,12,13,[[799,1,1,12,13]]],[28,1,1,13,14,[[876,1,1,13,14]]],[31,1,1,14,15,[[892,1,1,14,15]]],[32,2,2,15,17,[[896,1,1,15,16],[899,1,1,16,17]]]],[4227,4370,8049,12937,13559,14027,14057,15990,17481,19147,20116,20134,20372,22302,22578,22629,22666]]],["perisheth",[6,6,[[17,1,1,0,1,[[439,1,1,0,1]]],[19,1,1,1,2,[[638,1,1,1,2]]],[20,1,1,2,3,[[665,1,1,2,3]]],[22,1,1,3,4,[[735,1,1,3,4]]],[23,2,2,4,6,[[753,1,1,4,5],[792,1,1,5,6]]]],[12941,16695,17444,18766,19187,20126]]],["spendeth",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17227]]],["take",[1,1,[[23,1,1,0,1,[[769,1,1,0,1]]]],[19544]]],["undone",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4369]]],["void",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5786]]]]},{"k":"H7","v":[["*",[7,6,[[23,1,1,0,1,[[754,1,1,0,1]]],[26,6,5,1,6,[[851,4,3,1,4],[856,2,2,4,6]]]],[19212,21770,21776,21782,21944,21959]]],["Destroy",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21782]]],["destroy",[3,3,[[26,3,3,0,3,[[851,2,2,0,2],[856,1,1,2,3]]]],[21770,21782,21959]]],["destroyed",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21944]]],["perish",[2,2,[[23,1,1,0,1,[[754,1,1,0,1]]],[26,1,1,1,2,[[851,1,1,1,2]]]],[19212,21776]]]]},{"k":"H8","v":[["perish",[2,2,[[3,2,2,0,2,[[140,2,2,0,2]]]],[4466,4470]]]]},{"k":"H9","v":[["*",[4,4,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,2,2,1,3,[[95,2,2,1,3]]],[4,1,1,3,4,[[174,1,1,3,4]]]],[2122,2852,2853,5473]]],["lost",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2852]]],["thing",[3,3,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,1,1,1,2,[[95,1,1,1,2]]],[4,1,1,2,3,[[174,1,1,2,3]]]],[2122,2853,5473]]]]},{"k":"H10","v":[["destruction",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17189]]]]},{"k":"H11","v":[["*",[5,5,[[17,3,3,0,3,[[461,1,1,0,1],[463,1,1,1,2],[466,1,1,2,3]]],[18,1,1,3,4,[[565,1,1,3,4]]],[19,1,1,4,5,[[642,1,1,4,5]]]],[13473,13526,13600,15319,16818]]],["Destruction",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13526]]],["destruction",[4,4,[[17,2,2,0,2,[[461,1,1,0,1],[466,1,1,1,2]]],[18,1,1,2,3,[[565,1,1,2,3]]],[19,1,1,3,4,[[642,1,1,3,4]]]],[13473,13600,15319,16818]]]]},{"k":"H12","v":[["destruction",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12839]]]]},{"k":"H13","v":[["destruction",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12823]]]]},{"k":"H14","v":[["*",[54,52,[[0,2,2,0,2,[[23,2,2,0,2]]],[1,1,1,2,3,[[59,1,1,2,3]]],[2,1,1,3,4,[[115,1,1,3,4]]],[4,7,7,4,11,[[153,1,1,4,5],[154,1,1,5,6],[162,1,1,6,7],[165,1,1,7,8],[175,1,1,8,9],[177,1,1,9,10],[181,1,1,10,11]]],[5,1,1,11,12,[[210,1,1,11,12]]],[6,4,4,12,16,[[221,1,1,12,13],[229,2,2,13,15],[230,1,1,15,16]]],[8,4,4,16,20,[[250,1,1,16,17],[257,1,1,17,18],[261,1,1,18,19],[266,1,1,19,20]]],[9,10,9,20,29,[[268,1,1,20,21],[272,1,1,21,22],[278,1,1,22,23],[279,3,3,23,26],[280,2,1,26,27],[289,2,2,27,29]]],[10,2,2,29,31,[[310,1,1,29,30],[312,1,1,30,31]]],[11,3,3,31,34,[[320,1,1,31,32],[325,1,1,32,33],[336,1,1,33,34]]],[12,4,4,34,38,[[347,1,1,34,35],[348,2,2,35,37],[356,1,1,37,38]]],[13,1,1,38,39,[[387,1,1,38,39]]],[17,1,1,39,40,[[474,1,1,39,40]]],[18,1,1,40,41,[[558,1,1,40,41]]],[19,4,4,41,45,[[628,3,3,41,44],[633,1,1,44,45]]],[22,5,5,45,50,[[679,1,1,45,46],[706,1,1,46,47],[708,2,2,47,49],[720,1,1,49,50]]],[25,3,2,50,52,[[804,2,1,50,51],[821,1,1,51,52]]]],[596,599,1804,3545,4918,4968,5196,5280,5505,5554,5699,6486,6846,7034,7049,7067,7569,7804,7928,8013,8070,8167,8303,8331,8333,8342,8385,8669,8670,9416,9529,9746,9894,10206,10663,10691,10692,10926,11631,13843,15228,16410,16425,16430,16575,17673,18176,18226,18232,18504,20509,20903]]],["consent",[3,3,[[4,1,1,0,1,[[165,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[19,1,1,2,3,[[628,1,1,2,3]]]],[5280,9416,16410]]],["content",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16575]]],["will",[6,5,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,2,2,1,3,[[177,1,1,1,2],[181,1,1,2,3]]],[22,1,1,3,4,[[708,1,1,3,4]]],[25,2,1,4,5,[[804,2,1,4,5]]]],[3545,5554,5699,18226,20509]]],["willing",[4,4,[[0,2,2,0,2,[[23,2,2,0,2]]],[17,1,1,2,3,[[474,1,1,2,3]]],[22,1,1,3,4,[[679,1,1,3,4]]]],[596,599,13843,17673]]],["would",[40,39,[[1,1,1,0,1,[[59,1,1,0,1]]],[4,4,4,1,5,[[153,1,1,1,2],[154,1,1,2,3],[162,1,1,3,4],[175,1,1,4,5]]],[5,1,1,5,6,[[210,1,1,5,6]]],[6,4,4,6,10,[[221,1,1,6,7],[229,2,2,7,9],[230,1,1,9,10]]],[8,4,4,10,14,[[250,1,1,10,11],[257,1,1,11,12],[261,1,1,12,13],[266,1,1,13,14]]],[9,10,9,14,23,[[268,1,1,14,15],[272,1,1,15,16],[278,1,1,16,17],[279,3,3,17,20],[280,2,1,20,21],[289,2,2,21,23]]],[10,1,1,23,24,[[312,1,1,23,24]]],[11,3,3,24,27,[[320,1,1,24,25],[325,1,1,25,26],[336,1,1,26,27]]],[12,4,4,27,31,[[347,1,1,27,28],[348,2,2,28,30],[356,1,1,30,31]]],[13,1,1,31,32,[[387,1,1,31,32]]],[18,1,1,32,33,[[558,1,1,32,33]]],[19,2,2,33,35,[[628,2,2,33,35]]],[22,3,3,35,38,[[706,1,1,35,36],[708,1,1,36,37],[720,1,1,37,38]]],[25,1,1,38,39,[[821,1,1,38,39]]]],[1804,4918,4968,5196,5505,6486,6846,7034,7049,7067,7569,7804,7928,8013,8070,8167,8303,8331,8333,8342,8385,8669,8670,9529,9746,9894,10206,10663,10691,10692,10926,11631,15228,16425,16430,18176,18232,18504,20903]]]]},{"k":"H15","v":[["desire",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13719]]]]},{"k":"H16","v":[["swift",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13077]]]]},{"k":"H17","v":[["sorrow",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17073]]]]},{"k":"H18","v":[["*",[4,4,[[9,1,1,0,1,[[271,1,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]],[19,1,1,2,3,[[641,1,1,2,3]]],[22,1,1,3,4,[[679,1,1,3,4]]]],[8143,13843,16776,17657]]],["+",[1,1,[[9,1,1,0,1,[[271,1,1,0,1]]]],[8143]]],["crib",[3,3,[[17,1,1,0,1,[[474,1,1,0,1]]],[19,1,1,1,2,[[641,1,1,1,2]]],[22,1,1,2,3,[[679,1,1,2,3]]]],[13843,16776,17657]]]]},{"k":"H19","v":[["point",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20959]]]]},{"k":"H20","v":[["melons",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4029]]]]},{"k":"H21","v":[["Abi",[1,1,[[11,1,1,0,1,[[330,1,1,0,1]]]],[10026]]]]},{"k":"H22","v":[["Abiel",[3,3,[[8,2,2,0,2,[[244,1,1,0,1],[249,1,1,1,2]]],[12,1,1,2,3,[[348,1,1,2,3]]]],[7392,7559,10705]]]]},{"k":"H23","v":[["Abiasaph",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1679]]]]},{"k":"H24","v":[["*",[8,6,[[1,5,4,0,4,[[58,1,1,0,1],[62,1,1,1,2],[72,1,1,2,3],[83,2,1,3,4]]],[2,1,1,4,5,[[91,1,1,4,5]]],[4,2,1,5,6,[[168,2,1,5,6]]]],[1773,1871,2159,2514,2776,5343]]],["Abib",[6,4,[[1,4,3,0,3,[[62,1,1,0,1],[72,1,1,1,2],[83,2,1,2,3]]],[4,2,1,3,4,[[168,2,1,3,4]]]],[1871,2159,2514,5343]]],["corn",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2776]]],["ear",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1773]]]]},{"k":"H25","v":[]},{"k":"H26","v":[["Abigail",[17,17,[[8,11,11,0,11,[[260,9,9,0,9],[262,1,1,9,10],[265,1,1,10,11]]],[9,3,3,11,14,[[268,1,1,11,12],[269,1,1,12,13],[283,1,1,13,14]]],[12,3,3,14,17,[[339,2,2,14,16],[340,1,1,16,17]]]],[7864,7875,7879,7884,7893,7897,7900,7901,7903,7933,7983,8051,8084,8474,10322,10323,10362]]]]},{"k":"H27","v":[["Abidan",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3615,3680,3910,3915,4012]]]]},{"k":"H28","v":[["Abida",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[662,10285]]]]},{"k":"H29","v":[["*",[25,25,[[8,1,1,0,1,[[243,1,1,0,1]]],[10,1,1,1,2,[[304,1,1,1,2]]],[12,5,5,2,7,[[339,1,1,2,3],[340,1,1,3,4],[343,1,1,4,5],[344,1,1,5,6],[361,1,1,6,7]]],[13,15,15,7,22,[[377,2,2,7,9],[378,1,1,9,10],[379,10,10,10,20],[380,1,1,20,21],[395,1,1,21,22]]],[15,3,3,22,25,[[422,1,1,22,23],[424,2,2,23,25]]]],[7371,9219,10330,10371,10482,10543,11025,11434,11436,11453,11454,11455,11456,11457,11468,11470,11472,11473,11474,11475,11476,11792,12556,12628,12641]]],["Abia",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10371]]],["Abiah",[4,4,[[8,1,1,0,1,[[243,1,1,0,1]]],[12,3,3,1,4,[[339,1,1,1,2],[343,1,1,2,3],[344,1,1,3,4]]]],[7371,10330,10482,10543]]],["Abijah",[20,20,[[10,1,1,0,1,[[304,1,1,0,1]]],[12,1,1,1,2,[[361,1,1,1,2]]],[13,15,15,2,17,[[377,2,2,2,4],[378,1,1,4,5],[379,10,10,5,15],[380,1,1,15,16],[395,1,1,16,17]]],[15,3,3,17,20,[[422,1,1,17,18],[424,2,2,18,20]]]],[9219,11025,11434,11436,11453,11454,11455,11456,11457,11468,11470,11472,11473,11474,11475,11476,11792,12556,12628,12641]]]]},{"k":"H30","v":[["*",[12,12,[[1,4,4,0,4,[[55,1,1,0,1],[73,2,2,1,3],[77,1,1,3,4]]],[2,1,1,4,5,[[99,1,1,4,5]]],[3,4,4,5,9,[[119,2,2,5,7],[142,2,2,7,9]]],[12,3,3,9,12,[[343,1,1,9,10],[361,2,2,10,12]]]],[1678,2178,2186,2294,2978,3694,3696,4549,4550,10457,11016,11017]]],["+",[2,2,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1678,4549]]],["Abihu",[10,10,[[1,3,3,0,3,[[73,2,2,0,2],[77,1,1,2,3]]],[2,1,1,3,4,[[99,1,1,3,4]]],[3,3,3,4,7,[[119,2,2,4,6],[142,1,1,6,7]]],[12,3,3,7,10,[[343,1,1,7,8],[361,2,2,8,10]]]],[2178,2186,2294,2978,3694,3696,4550,10457,11016,11017]]]]},{"k":"H31","v":[["Abihud",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10578]]]]},{"k":"H32","v":[["Abihail",[6,6,[[3,1,1,0,1,[[119,1,1,0,1]]],[12,2,2,1,3,[[339,1,1,1,2],[342,1,1,2,3]]],[13,1,1,3,4,[[377,1,1,3,4]]],[16,2,2,4,6,[[427,1,1,4,5],[434,1,1,5,6]]]],[3727,10335,10442,11432,12739,12863]]]]},{"k":"H33","v":[["*",[3,3,[[6,3,3,0,3,[[216,2,2,0,2],[218,1,1,2,3]]]],[6665,6678,6751]]],["Abiezrite",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6665]]],["Abiezrites",[2,2,[[6,2,2,0,2,[[216,1,1,0,1],[218,1,1,1,2]]]],[6678,6751]]]]},{"k":"H34","v":[["*",[61,58,[[1,2,2,0,2,[[72,2,2,0,2]]],[4,7,5,2,7,[[167,6,4,2,6],[176,1,1,6,7]]],[8,1,1,7,8,[[237,1,1,7,8]]],[16,1,1,8,9,[[434,1,1,8,9]]],[17,6,6,9,15,[[440,1,1,9,10],[459,2,2,10,12],[464,1,1,12,13],[465,1,1,13,14],[466,1,1,14,15]]],[18,23,22,15,37,[[486,1,1,15,16],[489,1,1,16,17],[512,1,1,17,18],[514,1,1,18,19],[517,1,1,19,20],[526,1,1,20,21],[546,1,1,21,22],[547,1,1,22,23],[549,4,3,23,26],[551,1,1,26,27],[559,1,1,27,28],[563,1,1,28,29],[584,1,1,29,30],[586,3,3,30,33],[589,1,1,33,34],[590,1,1,34,35],[609,1,1,35,36],[617,1,1,36,37]]],[19,4,4,37,41,[[641,1,1,37,38],[657,1,1,38,39],[658,2,2,39,41]]],[22,5,5,41,46,[[692,1,1,41,42],[703,1,1,42,43],[707,1,1,43,44],[710,1,1,44,45],[719,1,1,45,46]]],[23,4,4,46,50,[[746,1,1,46,47],[749,1,1,47,48],[764,1,1,48,49],[766,1,1,49,50]]],[25,3,3,50,53,[[817,1,1,50,51],[819,1,1,51,52],[823,1,1,52,53]]],[29,5,5,53,58,[[880,1,1,53,54],[882,1,1,54,55],[883,1,1,55,56],[886,2,2,56,58]]]],[2150,2155,5323,5326,5328,5330,5539,7248,12856,12966,13440,13450,13548,13582,13607,14039,14071,14420,14464,14542,14650,14968,14976,15004,15012,15013,15069,15237,15285,15740,15771,15777,15786,15812,15820,16166,16275,16803,17265,17293,17304,17958,18122,18212,18266,18468,18999,19086,19435,19470,20811,20861,21005,22385,22411,22435,22485,22487]]],["+",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15740]]],["beggar",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7248]]],["man",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5326]]],["needy",[35,34,[[4,2,2,0,2,[[167,1,1,0,1],[176,1,1,1,2]]],[17,2,2,2,4,[[459,2,2,2,4]]],[18,16,15,4,19,[[486,1,1,4,5],[489,1,1,5,6],[512,1,1,6,7],[514,1,1,7,8],[517,1,1,8,9],[547,1,1,9,10],[549,4,3,10,13],[551,1,1,13,14],[559,1,1,14,15],[563,1,1,15,16],[586,2,2,16,18],[590,1,1,18,19]]],[19,3,3,19,22,[[657,1,1,19,20],[658,2,2,20,22]]],[22,4,4,22,26,[[692,1,1,22,23],[703,1,1,23,24],[710,1,1,24,25],[719,1,1,25,26]]],[23,2,2,26,28,[[749,1,1,26,27],[766,1,1,27,28]]],[25,3,3,28,31,[[817,1,1,28,29],[819,1,1,29,30],[823,1,1,30,31]]],[29,3,3,31,34,[[882,1,1,31,32],[886,2,2,32,34]]]],[5330,5539,13440,13450,14039,14071,14420,14464,14542,14976,15004,15012,15013,15069,15237,15285,15771,15777,15820,17265,17293,17304,17958,18122,18266,18468,19086,19470,20811,20861,21005,22411,22485,22487]]],["poor",[23,23,[[1,2,2,0,2,[[72,2,2,0,2]]],[4,4,4,2,6,[[167,4,4,2,6]]],[16,1,1,6,7,[[434,1,1,6,7]]],[17,4,4,7,11,[[440,1,1,7,8],[464,1,1,8,9],[465,1,1,9,10],[466,1,1,10,11]]],[18,6,6,11,17,[[526,1,1,11,12],[546,1,1,12,13],[586,1,1,13,14],[589,1,1,14,15],[609,1,1,15,16],[617,1,1,16,17]]],[19,1,1,17,18,[[641,1,1,17,18]]],[22,1,1,18,19,[[707,1,1,18,19]]],[23,2,2,19,21,[[746,1,1,19,20],[764,1,1,20,21]]],[29,2,2,21,23,[[880,1,1,21,22],[883,1,1,22,23]]]],[2150,2155,5323,5326,5328,5330,12856,12966,13548,13582,13607,14650,14968,15786,15812,16166,16275,16803,18212,18999,19435,22385,22435]]]]},{"k":"H35","v":[["desire",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17528]]]]},{"k":"H36","v":[["Abitub",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10586]]]]},{"k":"H37","v":[["Abital",[2,2,[[9,1,1,0,1,[[269,1,1,0,1]]],[12,1,1,1,2,[[340,1,1,1,2]]]],[8085,10364]]]]},{"k":"H38","v":[["Abijam",[5,4,[[10,5,4,0,4,[[304,1,1,0,1],[305,4,3,1,4]]]],[9249,9250,9256,9257]]]]},{"k":"H39","v":[["Abimael",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[262,10274]]]]},{"k":"H40","v":[["*",[66,61,[[0,24,23,0,23,[[19,10,10,0,10],[20,7,6,10,16],[25,7,7,16,23]]],[6,40,36,23,59,[[218,1,1,23,24],[219,38,34,24,58],[220,1,1,58,59]]],[9,1,1,59,60,[[277,1,1,59,60]]],[12,1,1,60,61,[[355,1,1,60,61]]]],[497,498,499,503,504,505,509,510,512,513,535,538,539,540,542,545,693,700,701,702,703,708,718,6750,6755,6757,6758,6760,6770,6772,6773,6774,6775,6776,6777,6778,6779,6781,6782,6783,6785,6788,6789,6792,6793,6794,6795,6796,6798,6799,6801,6802,6803,6804,6806,6807,6809,6810,6812,8280,10906]]],["+",[2,2,[[6,2,2,0,2,[[219,2,2,0,2]]]],[6770,6774]]],["Abimelech",[62,59,[[0,23,23,0,23,[[19,10,10,0,10],[20,6,6,10,16],[25,7,7,16,23]]],[6,37,34,23,57,[[218,1,1,23,24],[219,35,32,24,56],[220,1,1,56,57]]],[9,1,1,57,58,[[277,1,1,57,58]]],[12,1,1,58,59,[[355,1,1,58,59]]]],[497,498,499,503,504,505,509,510,512,513,535,538,539,540,542,545,693,700,701,702,703,708,718,6750,6755,6757,6758,6760,6772,6773,6774,6775,6776,6777,6778,6779,6781,6782,6783,6785,6788,6789,6792,6793,6794,6795,6796,6798,6799,6801,6802,6803,6804,6806,6809,6810,6812,8280,10906]]],["Abimelech's",[2,2,[[0,1,1,0,1,[[20,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]]],[538,6807]]]]},{"k":"H41","v":[["Abinadab",[12,11,[[8,4,4,0,4,[[242,1,1,0,1],[251,1,1,1,2],[252,1,1,2,3],[266,1,1,3,4]]],[9,3,2,4,6,[[272,3,2,4,6]]],[12,5,5,6,11,[[339,1,1,6,7],[345,1,1,7,8],[346,1,1,8,9],[347,1,1,9,10],[350,1,1,10,11]]]],[7353,7603,7631,8011,8160,8161,10319,10608,10654,10661,10767]]]]},{"k":"H42","v":[["Abinoam",[4,4,[[6,4,4,0,4,[[214,2,2,0,2],[215,2,2,2,4]]]],[6605,6611,6624,6635]]]]},{"k":"H43","v":[["Ebiasaph",[3,3,[[12,3,3,0,3,[[343,2,2,0,2],[346,1,1,2,3]]]],[10477,10491,10634]]]]},{"k":"H44","v":[["Abiezer",[7,7,[[5,1,1,0,1,[[203,1,1,0,1]]],[6,2,2,1,3,[[216,1,1,1,2],[218,1,1,2,3]]],[9,1,1,3,4,[[289,1,1,3,4]]],[12,3,3,4,7,[[344,1,1,4,5],[348,1,1,5,6],[364,1,1,6,7]]]],[6277,6688,6721,8680,10553,10701,11121]]]]},{"k":"H45","v":[["Abialbon",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8684]]]]},{"k":"H46","v":[["*",[6,6,[[0,1,1,0,1,[[48,1,1,0,1]]],[18,2,2,1,3,[[609,2,2,1,3]]],[22,3,3,3,6,[[679,1,1,3,4],[727,1,1,4,5],[738,1,1,5,6]]]],[1497,16153,16156,17678,18662,18837]]],["One",[3,3,[[22,3,3,0,3,[[679,1,1,0,1],[727,1,1,1,2],[738,1,1,2,3]]]],[17678,18662,18837]]],["mighty",[3,3,[[0,1,1,0,1,[[48,1,1,0,1]]],[18,2,2,1,3,[[609,2,2,1,3]]]],[1497,16153,16156]]]]},{"k":"H47","v":[["*",[17,17,[[6,1,1,0,1,[[215,1,1,0,1]]],[8,1,1,1,2,[[256,1,1,1,2]]],[17,2,2,2,4,[[459,1,1,2,3],[469,1,1,3,4]]],[18,5,5,4,9,[[499,1,1,4,5],[527,1,1,5,6],[545,1,1,6,7],[553,1,1,7,8],[555,1,1,8,9]]],[22,3,3,9,12,[[688,1,1,9,10],[712,1,1,10,11],[724,1,1,11,12]]],[23,4,4,12,16,[[752,1,1,12,13],[790,1,1,13,14],[791,1,1,14,15],[794,1,1,15,16]]],[24,1,1,16,17,[[797,1,1,16,17]]]],[6645,7779,13458,13703,14216,14681,14930,15086,15138,17863,18310,18598,19169,20060,20076,20177,20325]]],["+",[2,2,[[18,1,1,0,1,[[553,1,1,0,1]]],[22,1,1,1,2,[[724,1,1,1,2]]]],[15086,18598]]],["angels'",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15138]]],["bulls",[4,4,[[18,2,2,0,2,[[527,1,1,0,1],[545,1,1,1,2]]],[22,1,1,2,3,[[712,1,1,2,3]]],[23,1,1,3,4,[[794,1,1,3,4]]]],[14681,14930,18310,20177]]],["chiefest",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7779]]],["mighty",[3,3,[[17,2,2,0,2,[[459,1,1,0,1],[469,1,1,1,2]]],[24,1,1,2,3,[[797,1,1,2,3]]]],[13458,13703,20325]]],["ones",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[23,1,1,1,2,[[752,1,1,1,2]]]],[6645,19169]]],["strong",[2,2,[[18,1,1,0,1,[[499,1,1,0,1]]],[23,1,1,1,2,[[791,1,1,1,2]]]],[14216,20076]]],["valiant",[2,2,[[22,1,1,0,1,[[688,1,1,0,1]]],[23,1,1,1,2,[[790,1,1,1,2]]]],[17863,20060]]]]},{"k":"H48","v":[["Abiram",[11,9,[[3,8,6,0,6,[[132,6,5,0,5],[142,2,1,5,6]]],[4,1,1,6,7,[[163,1,1,6,7]]],[10,1,1,7,8,[[306,1,1,7,8]]],[18,1,1,8,9,[[583,1,1,8,9]]]],[4195,4206,4218,4219,4221,4498,5214,9317,15668]]]]},{"k":"H49","v":[["Abishag",[5,5,[[10,5,5,0,5,[[291,2,2,0,2],[292,3,3,2,5]]]],[8720,8732,8787,8791,8792]]]]},{"k":"H50","v":[["Abishua",[5,5,[[12,4,4,0,4,[[343,3,3,0,3],[345,1,1,3,4]]],[14,1,1,4,5,[[409,1,1,4,5]]]],[10458,10459,10504,10579,12178]]]]},{"k":"H51","v":[["Abishur",[2,2,[[12,2,2,0,2,[[339,2,2,0,2]]]],[10334,10335]]]]},{"k":"H52","v":[["Abishai",[25,24,[[8,5,4,0,4,[[261,5,4,0,4]]],[9,15,15,4,19,[[268,2,2,4,6],[269,1,1,6,7],[276,2,2,7,9],[282,2,2,9,11],[284,3,3,11,14],[285,1,1,14,15],[286,2,2,15,17],[287,1,1,17,18],[289,1,1,18,19]]],[12,5,5,19,24,[[339,1,1,19,20],[348,1,1,20,21],[355,1,1,21,22],[356,2,2,22,24]]]],[7911,7912,7913,7914,8067,8073,8111,8250,8254,8435,8437,8480,8483,8490,8532,8560,8564,8597,8671,10322,10693,10902,10918,10922]]]]},{"k":"H53","v":[["*",[110,91,[[9,102,83,0,83,[[269,1,1,0,1],[279,21,17,1,18],[280,13,12,18,30],[281,18,14,30,44],[282,11,9,44,53],[283,15,13,53,66],[284,16,11,66,77],[285,6,5,77,82],[286,1,1,82,83]]],[10,5,5,83,88,[[291,1,1,83,84],[292,2,2,84,86],[305,2,2,86,88]]],[12,1,1,88,89,[[340,1,1,88,89]]],[13,2,2,89,91,[[377,2,2,89,91]]]],[8084,8318,8321,8337,8339,8340,8341,8342,8343,8344,8345,8346,8347,8349,8351,8354,8355,8356,8357,8377,8379,8380,8381,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8395,8396,8399,8400,8401,8402,8403,8420,8423,8426,8434,8441,8442,8443,8444,8446,8447,8448,8449,8450,8453,8454,8455,8456,8458,8463,8464,8467,8469,8473,8474,8475,8483,8487,8488,8490,8492,8493,8495,8496,8507,8510,8511,8512,8515,8517,8520,8521,8560,8723,8777,8798,9251,9259,10363,11434,11435]]],["Abishalom",[2,2,[[10,2,2,0,2,[[305,2,2,0,2]]]],[9251,9259]]],["Absalom",[103,86,[[9,97,80,0,80,[[269,1,1,0,1],[279,19,16,1,17],[280,12,11,17,28],[281,18,14,28,42],[282,11,9,42,51],[283,14,12,51,63],[284,15,11,63,74],[285,6,5,74,79],[286,1,1,79,80]]],[10,3,3,80,83,[[291,1,1,80,81],[292,2,2,81,83]]],[12,1,1,83,84,[[340,1,1,83,84]]],[13,2,2,84,86,[[377,2,2,84,86]]]],[8084,8318,8337,8339,8340,8341,8342,8343,8344,8345,8346,8347,8349,8351,8354,8355,8356,8357,8377,8379,8380,8381,8383,8384,8385,8387,8388,8389,8390,8391,8392,8393,8395,8396,8399,8400,8401,8402,8403,8420,8423,8426,8434,8441,8442,8443,8444,8446,8447,8448,8449,8450,8453,8454,8455,8456,8458,8463,8464,8467,8473,8474,8475,8483,8487,8488,8490,8492,8493,8495,8496,8507,8510,8511,8512,8515,8517,8520,8521,8560,8723,8777,8798,10363,11434,11435]]],["Absalom's",[5,5,[[9,5,5,0,5,[[279,2,2,0,2],[280,1,1,2,3],[283,1,1,3,4],[284,1,1,4,5]]]],[8321,8337,8386,8469,8496]]]]},{"k":"H54","v":[["*",[30,28,[[8,7,6,0,6,[[257,3,3,0,3],[258,2,2,3,5],[265,2,1,5,6]]],[9,10,9,6,15,[[274,1,1,6,7],[281,6,5,7,12],[283,1,1,12,13],[285,1,1,13,14],[286,1,1,14,15]]],[10,9,9,15,24,[[291,4,4,15,19],[292,4,4,19,23],[294,1,1,23,24]]],[12,4,4,24,28,[[352,1,1,24,25],[355,1,1,25,26],[361,1,1,26,27],[364,1,1,27,28]]]],[7807,7808,7809,7816,7819,7985,8226,8413,8416,8418,8424,8425,8464,8522,8579,8724,8736,8742,8759,8792,8796,8797,8805,8848,10802,10906,11021,11143]]],["Abiathar",[29,27,[[8,7,6,0,6,[[257,3,3,0,3],[258,2,2,3,5],[265,2,1,5,6]]],[9,9,8,6,14,[[274,1,1,6,7],[281,5,4,7,11],[283,1,1,11,12],[285,1,1,12,13],[286,1,1,13,14]]],[10,9,9,14,23,[[291,4,4,14,18],[292,4,4,18,22],[294,1,1,22,23]]],[12,4,4,23,27,[[352,1,1,23,24],[355,1,1,24,25],[361,1,1,25,26],[364,1,1,26,27]]]],[7807,7808,7809,7816,7819,7985,8226,8413,8416,8418,8424,8464,8522,8579,8724,8736,8742,8759,8792,8796,8797,8805,8848,10802,10906,11021,11143]]],["Abiathar's",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8425]]]]},{"k":"H55","v":[["up",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17847]]]]},{"k":"H56","v":[["*",[39,38,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,1,1,1,2,[[82,1,1,1,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[8,3,3,3,6,[[241,1,1,3,4],[250,1,1,4,5],[251,1,1,5,6]]],[9,4,3,6,9,[[279,1,1,6,7],[280,2,1,7,8],[285,1,1,8,9]]],[12,1,1,9,10,[[344,1,1,9,10]]],[13,1,1,10,11,[[401,1,1,10,11]]],[14,1,1,11,12,[[412,1,1,11,12]]],[15,2,2,12,14,[[413,1,1,12,13],[420,1,1,13,14]]],[17,1,1,14,15,[[449,1,1,14,15]]],[22,6,6,15,21,[[681,1,1,15,16],[697,1,1,16,17],[702,2,2,17,19],[711,1,1,19,20],[744,1,1,20,21]]],[23,5,5,21,26,[[748,1,1,21,22],[756,2,2,22,24],[758,1,1,24,25],[767,1,1,25,26]]],[24,1,1,26,27,[[798,1,1,26,27]]],[25,3,3,27,30,[[808,2,2,27,29],[832,1,1,29,30]]],[26,1,1,30,31,[[859,1,1,30,31]]],[27,2,2,31,33,[[865,1,1,31,32],[871,1,1,32,33]]],[28,2,2,33,35,[[876,2,2,33,35]]],[29,3,3,35,38,[[879,1,1,35,36],[886,1,1,36,37],[887,1,1,37,38]]]],[1117,2477,4147,7350,7595,7596,8354,8358,8512,10557,11990,12258,12300,12502,13203,17733,18012,18099,18102,18288,18932,19055,19253,19260,19295,19494,20340,20589,20604,21245,22017,22136,22230,22300,22301,22366,22489,22500]]],["lament",[2,2,[[22,1,1,0,1,[[697,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]]],[18012,20340]]],["lamented",[1,1,[[8,1,1,0,1,[[241,1,1,0,1]]]],[7350]]],["mourn",[15,15,[[8,1,1,0,1,[[251,1,1,0,1]]],[15,1,1,1,2,[[420,1,1,1,2]]],[17,1,1,2,3,[[449,1,1,2,3]]],[22,2,2,3,5,[[681,1,1,3,4],[744,1,1,4,5]]],[23,2,2,5,7,[[748,1,1,5,6],[756,1,1,6,7]]],[25,2,2,7,9,[[808,2,2,7,9]]],[27,2,2,9,11,[[865,1,1,9,10],[871,1,1,10,11]]],[28,1,1,11,12,[[876,1,1,11,12]]],[29,3,3,12,15,[[879,1,1,12,13],[886,1,1,13,14],[887,1,1,14,15]]]],[7596,12502,13203,17733,18932,19055,19253,20589,20604,22136,22230,22300,22366,22489,22500]]],["mourned",[10,10,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,1,1,1,2,[[82,1,1,1,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[8,1,1,3,4,[[250,1,1,3,4]]],[9,2,2,4,6,[[279,1,1,4,5],[280,1,1,5,6]]],[12,1,1,6,7,[[344,1,1,6,7]]],[13,1,1,7,8,[[401,1,1,7,8]]],[14,1,1,8,9,[[412,1,1,8,9]]],[15,1,1,9,10,[[413,1,1,9,10]]]],[1117,2477,4147,7595,8354,8358,10557,11990,12258,12300]]],["mourner",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8358]]],["mourneth",[8,8,[[9,1,1,0,1,[[285,1,1,0,1]]],[22,3,3,1,4,[[702,2,2,1,3],[711,1,1,3,4]]],[23,3,3,4,7,[[756,1,1,4,5],[758,1,1,5,6],[767,1,1,6,7]]],[28,1,1,7,8,[[876,1,1,7,8]]]],[8512,18099,18102,18288,19260,19295,19494,22301]]],["mourning",[2,2,[[25,1,1,0,1,[[832,1,1,0,1]]],[26,1,1,1,2,[[859,1,1,1,2]]]],[21245,22017]]]]},{"k":"H57","v":[["*",[8,8,[[0,1,1,0,1,[[36,1,1,0,1]]],[16,1,1,1,2,[[431,1,1,1,2]]],[17,1,1,2,3,[[464,1,1,2,3]]],[18,1,1,3,4,[[512,1,1,3,4]]],[22,3,3,4,7,[[735,1,1,4,5],[739,2,2,5,7]]],[24,1,1,7,8,[[797,1,1,7,8]]]],[1118,12805,13557,14424,18783,18845,18846,20314]]],["mourn",[3,3,[[22,2,2,0,2,[[739,2,2,0,2]]],[24,1,1,2,3,[[797,1,1,2,3]]]],[18845,18846,20314]]],["mourners",[2,2,[[17,1,1,0,1,[[464,1,1,0,1]]],[22,1,1,1,2,[[735,1,1,1,2]]]],[13557,18783]]],["mourneth",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14424]]],["mourning",[2,2,[[0,1,1,0,1,[[36,1,1,0,1]]],[16,1,1,1,2,[[431,1,1,1,2]]]],[1118,12805]]]]},{"k":"H58","v":[["plain",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6862]]]]},{"k":"H59","v":[["Abel",[3,3,[[8,1,1,0,1,[[241,1,1,0,1]]],[9,2,2,1,3,[[286,2,2,1,3]]]],[7349,8568,8572]]]]},{"k":"H60","v":[["*",[24,22,[[0,4,3,0,3,[[26,1,1,0,1],[49,3,2,1,3]]],[4,1,1,3,4,[[186,1,1,3,4]]],[9,3,3,4,7,[[277,1,1,4,5],[280,1,1,5,6],[285,1,1,6,7]]],[16,2,2,7,9,[[429,1,1,7,8],[434,1,1,8,9]]],[17,1,1,9,10,[[465,1,1,9,10]]],[20,2,2,10,12,[[665,2,2,10,12]]],[22,2,2,12,14,[[738,1,1,12,13],[739,1,1,13,14]]],[23,3,3,14,17,[[750,1,1,14,15],[760,1,1,15,16],[775,1,1,16,17]]],[24,1,1,17,18,[[801,1,1,17,18]]],[25,1,1,18,19,[[825,1,1,18,19]]],[29,3,2,19,21,[[883,1,1,19,20],[886,2,1,20,21]]],[32,1,1,21,22,[[893,1,1,21,22]]]],[768,1516,1517,5847,8286,8358,8513,12765,12856,13588,17431,17433,18841,18846,19115,19343,19704,20457,21073,22439,22491,22587]]],["+",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12856]]],["mourning",[23,21,[[0,4,3,0,3,[[26,1,1,0,1],[49,3,2,1,3]]],[4,1,1,3,4,[[186,1,1,3,4]]],[9,3,3,4,7,[[277,1,1,4,5],[280,1,1,5,6],[285,1,1,6,7]]],[16,1,1,7,8,[[429,1,1,7,8]]],[17,1,1,8,9,[[465,1,1,8,9]]],[20,2,2,9,11,[[665,2,2,9,11]]],[22,2,2,11,13,[[738,1,1,11,12],[739,1,1,12,13]]],[23,3,3,13,16,[[750,1,1,13,14],[760,1,1,14,15],[775,1,1,15,16]]],[24,1,1,16,17,[[801,1,1,16,17]]],[25,1,1,17,18,[[825,1,1,17,18]]],[29,3,2,18,20,[[883,1,1,18,19],[886,2,1,19,20]]],[32,1,1,20,21,[[893,1,1,20,21]]]],[768,1516,1517,5847,8286,8358,8513,12765,13588,17431,17433,18841,18846,19115,19343,19704,20457,21073,22439,22491,22587]]]]},{"k":"H61","v":[["*",[11,11,[[0,2,2,0,2,[[16,1,1,0,1],[41,1,1,1,2]]],[9,1,1,2,3,[[280,1,1,2,3]]],[10,1,1,3,4,[[291,1,1,3,4]]],[11,1,1,4,5,[[316,1,1,4,5]]],[13,3,3,5,8,[[367,1,1,5,6],[385,1,1,6,7],[399,1,1,7,8]]],[14,1,1,8,9,[[412,1,1,8,9]]],[26,2,2,9,11,[[859,2,2,9,11]]]],[416,1273,8361,8760,9617,11198,11579,11925,12265,22022,22036]]],["But",[3,3,[[13,1,1,0,1,[[367,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]],[26,1,1,2,3,[[859,1,1,2,3]]]],[11198,12265,22036]]],["Nevertheless",[2,2,[[13,2,2,0,2,[[385,1,1,0,1],[399,1,1,1,2]]]],[11579,11925]]],["Verily",[2,2,[[10,1,1,0,1,[[291,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]]],[8760,9617]]],["but",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22022]]],["indeed",[2,2,[[0,1,1,0,1,[[16,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]]],[416,8361]]],["verily",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1273]]]]},{"k":"H62","v":[["*",[3,3,[[9,1,1,0,1,[[286,1,1,0,1]]],[10,1,1,1,2,[[305,1,1,1,2]]],[11,1,1,2,3,[[327,1,1,2,3]]]],[8569,9269,9954]]],["Abelbethmaachah",[2,2,[[10,1,1,0,1,[[305,1,1,0,1]]],[11,1,1,1,2,[[327,1,1,1,2]]]],[9269,9954]]],["Bethmaachah",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8569]]]]},{"k":"H63","v":[["Abelshittim",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4809]]]]},{"k":"H64","v":[]},{"k":"H65","v":[["*",[3,3,[[6,1,1,0,1,[[217,1,1,0,1]]],[10,2,2,1,3,[[294,1,1,1,2],[309,1,1,2,3]]]],[6716,8856,9403]]],["+",[1,1,[[10,1,1,0,1,[[309,1,1,0,1]]]],[9403]]],["Abelmeholah",[2,2,[[6,1,1,0,1,[[217,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]]],[6716,8856]]]]},{"k":"H66","v":[["Abelmaim",[1,1,[[13,1,1,0,1,[[382,1,1,0,1]]]],[11513]]]]},{"k":"H67","v":[["Abelmizraim",[1,1,[[0,1,1,0,1,[[49,1,1,0,1]]]],[1517]]]]},{"k":"H68","v":[["*",[272,238,[[0,15,13,0,13,[[1,1,1,0,1],[10,1,1,1,2],[27,3,3,2,5],[28,5,4,5,9],[30,3,2,9,11],[34,1,1,11,12],[48,1,1,12,13]]],[1,33,25,13,38,[[56,1,1,13,14],[64,2,2,14,16],[66,1,1,16,17],[69,1,1,17,18],[70,1,1,18,19],[73,1,1,19,20],[74,2,1,20,21],[77,10,6,21,27],[80,2,2,27,29],[83,3,2,29,31],[84,5,3,31,34],[88,4,4,34,38]]],[2,10,9,38,47,[[103,5,4,38,42],[108,1,1,42,43],[109,2,2,43,45],[113,1,1,45,46],[115,1,1,46,47]]],[3,5,5,47,52,[[130,1,1,47,48],[131,2,2,48,50],[151,2,2,50,52]]],[4,25,24,52,76,[[156,2,2,52,54],[157,1,1,54,55],[160,1,1,55,56],[161,3,3,56,59],[162,2,2,59,61],[165,1,1,61,62],[169,1,1,62,63],[173,1,1,63,64],[174,2,2,64,66],[177,3,2,66,68],[179,5,5,68,73],[180,2,2,73,75],[181,1,1,75,76]]],[5,22,20,76,96,[[190,8,8,76,84],[193,3,2,84,86],[194,3,3,86,89],[196,4,3,89,92],[201,1,1,92,93],[204,1,1,93,94],[210,2,2,94,96]]],[6,3,3,96,99,[[219,2,2,96,98],[230,1,1,98,99]]],[8,10,9,99,108,[[241,2,2,99,101],[242,1,1,101,102],[249,1,1,102,103],[252,4,3,103,106],[255,1,1,106,107],[260,1,1,107,108]]],[9,6,6,108,114,[[278,1,1,108,109],[280,1,1,109,110],[282,2,2,110,112],[284,1,1,112,113],[286,1,1,113,114]]],[10,24,19,114,133,[[291,1,1,114,115],[295,4,2,115,117],[296,2,2,117,119],[297,6,3,119,122],[298,1,1,122,123],[300,4,4,123,127],[302,1,1,127,128],[305,1,1,128,129],[308,3,3,129,132],[311,1,1,132,133]]],[11,8,6,133,139,[[315,3,2,133,135],[324,2,1,135,136],[328,1,1,136,137],[331,1,1,137,138],[334,1,1,138,139]]],[12,10,7,139,146,[[349,1,1,139,140],[357,1,1,140,141],[359,3,3,141,144],[366,5,2,144,146]]],[13,14,14,146,160,[[367,1,1,146,147],[368,1,1,147,148],[369,1,1,148,149],[375,4,4,149,153],[376,1,1,153,154],[382,1,1,154,155],[390,1,1,155,156],[392,2,2,156,158],[398,1,1,158,159],[400,1,1,159,160]]],[15,3,3,160,163,[[416,2,2,160,162],[421,1,1,162,163]]],[17,11,11,163,174,[[440,1,1,163,164],[441,1,1,164,165],[443,1,1,165,166],[449,1,1,166,167],[463,3,3,167,170],[473,2,2,170,172],[476,2,2,172,174]]],[18,3,3,174,177,[[568,1,1,174,175],[579,1,1,175,176],[595,1,1,176,177]]],[19,11,9,177,186,[[638,1,1,177,178],[643,1,1,178,179],[644,1,1,179,180],[647,4,2,180,182],[651,1,1,182,183],[653,2,2,183,185],[654,1,1,185,186]]],[20,3,2,186,188,[[661,2,1,186,187],[668,1,1,187,188]]],[22,14,11,188,199,[[686,1,1,188,189],[692,1,1,189,190],[705,2,1,190,191],[706,2,1,191,192],[708,1,1,192,193],[712,1,1,193,194],[715,1,1,194,195],[732,3,2,195,197],[738,1,1,197,198],[740,1,1,198,199]]],[23,7,6,199,205,[[746,1,1,199,200],[747,1,1,200,201],[787,2,2,201,203],[795,3,2,203,205]]],[24,2,2,205,207,[[799,1,1,205,206],[800,1,1,206,207]]],[25,17,17,207,224,[[802,1,1,207,208],[811,2,2,208,210],[812,1,1,210,211],[814,2,2,211,213],[817,1,1,213,214],[821,1,1,214,215],[824,1,1,215,216],[827,1,1,216,217],[828,1,1,217,218],[829,3,3,218,221],[837,1,1,221,222],[839,1,1,222,223],[841,1,1,223,224]]],[26,1,1,224,225,[[860,1,1,224,225]]],[32,2,2,225,227,[[893,1,1,225,226],[898,1,1,226,227]]],[34,2,2,227,229,[[904,2,2,227,229]]],[36,2,1,229,230,[[910,2,1,229,230]]],[37,9,8,230,238,[[913,2,1,230,231],[914,2,2,231,233],[915,2,2,233,235],[919,2,2,235,237],[922,1,1,237,238]]]],[42,269,784,791,795,797,798,803,805,918,919,1025,1497,1704,1925,1936,1995,2076,2095,2189,2202,2302,2303,2304,2305,2310,2314,2425,2438,2497,2500,2540,2558,2564,2670,2671,2674,2678,3151,3153,3154,3156,3317,3320,3345,3469,3525,4118,4188,4189,4862,4868,5017,5032,5075,5146,5166,5167,5168,5187,5189,5282,5369,5468,5491,5494,5560,5562,5587,5589,5590,5591,5593,5647,5675,5696,5913,5915,5916,5917,5918,5919,5930,5931,6001,6002,6031,6033,6034,6075,6082,6091,6208,6310,6502,6503,6759,6772,7070,7345,7346,7364,7541,7658,7667,7668,7749,7898,8316,8382,8432,8439,8495,8562,8726,8895,8896,8903,8914,8943,8944,8945,8994,9081,9089,9090,9106,9169,9271,9372,9373,9379,9464,9595,9601,9862,9980,10079,10151,10722,10928,10966,10978,10979,11166,11172,11209,11225,11235,11365,11373,11374,11391,11413,11515,11698,11746,11747,11902,11944,12361,12362,12522,12974,12990,13046,13200,13506,13507,13510,13799,13823,13912,13916,15407,15535,15891,16689,16851,16881,16964,16977,17110,17149,17168,17172,17364,17502,17821,17947,18160,18180,18247,18314,18371,18734,18735,18838,18864,18992,19011,20006,20007,20238,20275,20407,20421,20490,20634,20642,20674,20719,20721,20802,20927,21054,21112,21143,21170,21171,21173,21385,21447,21519,22074,22585,22659,22759,22767,22870,22921,22929,22932,22940,22944,23014,23015,23048]]],["+",[22,19,[[0,1,1,0,1,[[27,1,1,0,1]]],[4,3,2,1,3,[[177,2,1,1,2],[179,1,1,2,3]]],[5,2,2,3,5,[[194,1,1,3,4],[196,1,1,4,5]]],[17,1,1,5,6,[[476,1,1,5,6]]],[19,4,2,6,8,[[647,4,2,6,8]]],[20,1,1,8,9,[[661,1,1,8,9]]],[22,4,4,9,13,[[705,1,1,9,10],[708,1,1,10,11],[732,1,1,11,12],[740,1,1,12,13]]],[25,3,3,13,16,[[814,2,2,13,15],[839,1,1,15,16]]],[37,3,3,16,19,[[914,2,2,16,18],[919,1,1,18,19]]]],[784,5560,5593,6034,6075,13916,16964,16977,17364,18160,18247,18735,18864,20719,20721,21447,22929,22932,23014]]],["stone",[105,96,[[0,12,11,0,11,[[1,1,1,0,1],[10,1,1,1,2],[27,2,2,2,4],[28,5,4,4,8],[30,1,1,8,9],[34,1,1,9,10],[48,1,1,10,11]]],[1,14,12,11,23,[[56,1,1,11,12],[64,2,2,12,14],[66,1,1,14,15],[69,1,1,15,16],[70,1,1,16,17],[73,1,1,17,18],[77,3,2,18,20],[80,1,1,20,21],[83,3,2,21,23]]],[2,1,1,23,24,[[115,1,1,23,24]]],[3,2,2,24,26,[[151,2,2,24,26]]],[4,11,11,26,37,[[156,2,2,26,28],[157,1,1,28,29],[161,3,3,29,32],[162,2,2,32,34],[180,2,2,34,36],[181,1,1,36,37]]],[5,5,5,37,42,[[190,1,1,37,38],[201,1,1,38,39],[204,1,1,39,40],[210,2,2,40,42]]],[6,2,2,42,44,[[219,2,2,42,44]]],[8,9,8,44,52,[[241,2,2,44,46],[242,1,1,46,47],[249,1,1,47,48],[252,3,2,48,50],[255,1,1,50,51],[260,1,1,51,52]]],[9,1,1,52,53,[[286,1,1,52,53]]],[10,4,4,53,57,[[291,1,1,53,54],[296,2,2,54,56],[298,1,1,56,57]]],[11,5,4,57,61,[[315,1,1,57,58],[324,2,1,58,59],[331,1,1,59,60],[334,1,1,60,61]]],[12,2,2,61,63,[[359,2,2,61,63]]],[13,2,2,63,65,[[368,1,1,63,64],[400,1,1,64,65]]],[15,2,2,65,67,[[416,1,1,65,66],[421,1,1,66,67]]],[17,4,4,67,71,[[463,1,1,67,68],[473,2,2,68,70],[476,1,1,70,71]]],[18,2,2,71,73,[[568,1,1,71,72],[595,1,1,72,73]]],[19,5,5,73,78,[[644,1,1,73,74],[651,1,1,74,75],[653,2,2,75,77],[654,1,1,77,78]]],[22,4,3,78,81,[[686,1,1,78,79],[706,2,1,79,80],[715,1,1,80,81]]],[23,4,3,81,84,[[746,1,1,81,82],[795,3,2,82,84]]],[24,1,1,84,85,[[799,1,1,84,85]]],[25,6,6,85,91,[[802,1,1,85,86],[811,2,2,86,88],[821,1,1,88,89],[829,1,1,89,90],[841,1,1,90,91]]],[34,2,2,91,93,[[904,2,2,91,93]]],[36,2,1,93,94,[[910,2,1,93,94]]],[37,3,2,94,96,[[913,2,1,94,95],[922,1,1,95,96]]]],[42,269,791,795,797,798,803,805,918,1025,1497,1704,1925,1936,1995,2076,2095,2189,2303,2304,2438,2497,2500,3525,4862,4868,5017,5032,5075,5166,5167,5168,5187,5189,5647,5675,5696,5915,6208,6310,6502,6503,6759,6772,7345,7346,7364,7541,7667,7668,7749,7898,8562,8726,8903,8914,8994,9601,9862,10079,10151,10978,10979,11225,11944,12362,12522,13506,13799,13823,13912,15407,15891,16881,17110,17149,17168,17172,17821,18180,18371,18992,20238,20275,20407,20490,20634,20642,20927,21170,21519,22759,22767,22870,22921,23048]]],["stones",[136,120,[[0,2,1,0,1,[[30,2,1,0,1]]],[1,19,14,1,15,[[74,2,1,1,2],[77,7,5,2,7],[80,1,1,7,8],[84,5,3,8,11],[88,4,4,11,15]]],[2,8,7,15,22,[[103,5,4,15,19],[109,2,2,19,21],[113,1,1,21,22]]],[3,3,3,22,25,[[130,1,1,22,23],[131,2,2,23,25]]],[4,10,10,25,35,[[160,1,1,25,26],[165,1,1,26,27],[169,1,1,27,28],[173,1,1,28,29],[174,2,2,29,31],[179,4,4,31,35]]],[5,15,14,35,49,[[190,7,7,35,42],[193,3,2,42,44],[194,2,2,44,46],[196,3,3,46,49]]],[6,1,1,49,50,[[230,1,1,49,50]]],[8,1,1,50,51,[[252,1,1,50,51]]],[9,4,4,51,55,[[278,1,1,51,52],[282,2,2,52,54],[284,1,1,54,55]]],[10,20,15,55,70,[[295,4,2,55,57],[297,6,3,57,60],[300,4,4,60,64],[302,1,1,64,65],[305,1,1,65,66],[308,3,3,66,69],[311,1,1,69,70]]],[11,3,3,70,73,[[315,2,2,70,72],[328,1,1,72,73]]],[12,8,5,73,78,[[349,1,1,73,74],[357,1,1,74,75],[359,1,1,75,76],[366,5,2,76,78]]],[13,12,12,78,90,[[367,1,1,78,79],[369,1,1,79,80],[375,4,4,80,84],[376,1,1,84,85],[382,1,1,85,86],[390,1,1,86,87],[392,2,2,87,89],[398,1,1,89,90]]],[15,1,1,90,91,[[416,1,1,90,91]]],[17,6,6,91,97,[[440,1,1,91,92],[441,1,1,92,93],[443,1,1,93,94],[449,1,1,94,95],[463,2,2,95,97]]],[18,1,1,97,98,[[579,1,1,97,98]]],[20,2,2,98,100,[[661,1,1,98,99],[668,1,1,99,100]]],[22,6,6,100,106,[[692,1,1,100,101],[705,1,1,101,102],[712,1,1,102,103],[732,2,2,103,105],[738,1,1,105,106]]],[23,3,3,106,109,[[747,1,1,106,107],[787,2,2,107,109]]],[24,1,1,109,110,[[800,1,1,109,110]]],[25,6,6,110,116,[[817,1,1,110,111],[824,1,1,111,112],[827,1,1,112,113],[828,1,1,113,114],[829,2,2,114,116]]],[26,1,1,116,117,[[860,1,1,116,117]]],[32,1,1,117,118,[[893,1,1,117,118]]],[37,2,2,118,120,[[915,1,1,118,119],[919,1,1,119,120]]]],[919,2202,2302,2304,2305,2310,2314,2425,2540,2558,2564,2670,2671,2674,2678,3151,3153,3154,3156,3320,3345,3469,4118,4188,4189,5146,5282,5369,5468,5491,5494,5587,5589,5590,5591,5913,5916,5917,5918,5919,5930,5931,6001,6002,6031,6033,6075,6082,6091,7070,7658,8316,8432,8439,8495,8895,8896,8943,8944,8945,9081,9089,9090,9106,9169,9271,9372,9373,9379,9464,9595,9601,9980,10722,10928,10966,11166,11172,11209,11235,11365,11373,11374,11391,11413,11515,11698,11746,11747,11902,12361,12974,12990,13046,13200,13507,13510,15535,17364,17502,17947,18160,18314,18734,18735,18838,19011,20006,20007,20421,20802,21054,21112,21143,21171,21173,22074,22585,22940,23015]]],["stony",[2,2,[[25,2,2,0,2,[[812,1,1,0,1],[837,1,1,1,2]]]],[20674,21385]]],["weight",[4,4,[[4,1,1,0,1,[[177,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]],[19,1,1,2,3,[[638,1,1,2,3]]],[37,1,1,3,4,[[915,1,1,3,4]]]],[5562,8382,16689,22944]]],["weights",[3,3,[[2,1,1,0,1,[[108,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]],[32,1,1,2,3,[[898,1,1,2,3]]]],[3317,16851,22659]]]]},{"k":"H69","v":[["*",[8,8,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]],[26,6,6,2,8,[[851,3,3,2,5],[854,2,2,5,7],[855,1,1,7,8]]]],[12142,12155,21792,21793,21803,21878,21897,21922]]],["stone",[6,6,[[26,6,6,0,6,[[851,3,3,0,3],[854,2,2,3,5],[855,1,1,5,6]]]],[21792,21793,21803,21878,21897,21922]]],["stones",[2,2,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]]],[12142,12155]]]]},{"k":"H70","v":[["*",[2,2,[[1,1,1,0,1,[[50,1,1,0,1]]],[23,1,1,1,2,[[762,1,1,1,2]]]],[1548,19387]]],["stools",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1548]]],["wheels",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19387]]]]},{"k":"H71","v":[["Abana",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9659]]]]},{"k":"H72","v":[["*",[3,3,[[8,3,3,0,3,[[239,1,1,0,1],[240,1,1,1,2],[242,1,1,2,3]]]],[7298,7320,7364]]],["+",[1,1,[[8,1,1,0,1,[[240,1,1,0,1]]]],[7320]]],["Ebenezer",[2,2,[[8,2,2,0,2,[[239,1,1,0,1],[242,1,1,1,2]]]],[7298,7364]]]]},{"k":"H73","v":[["*",[9,9,[[1,5,5,0,5,[[77,3,3,0,3],[78,1,1,3,4],[88,1,1,4,5]]],[2,3,3,5,8,[[97,2,2,5,7],[105,1,1,7,8]]],[22,1,1,8,9,[[700,1,1,8,9]]]],[2297,2332,2333,2345,2693,2924,2930,3205,18073]]],["girdle",[6,6,[[1,3,3,0,3,[[77,2,2,0,2],[88,1,1,2,3]]],[2,2,2,3,5,[[97,1,1,3,4],[105,1,1,4,5]]],[22,1,1,5,6,[[700,1,1,5,6]]]],[2297,2332,2693,2924,3205,18073]]],["girdles",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[78,1,1,1,2]]],[2,1,1,2,3,[[97,1,1,2,3]]]],[2333,2345,2930]]]]},{"k":"H74","v":[["*",[63,53,[[8,13,9,0,9,[[249,2,2,0,2],[252,4,2,2,4],[255,1,1,4,5],[261,6,4,5,9]]],[9,46,40,9,49,[[268,16,15,9,24],[269,28,23,24,47],[270,2,2,47,49]]],[10,2,2,49,51,[[292,2,2,49,51]]],[12,2,2,51,53,[[363,1,1,51,52],[364,1,1,52,53]]]],[7558,7559,7673,7675,7755,7910,7912,7919,7920,8057,8061,8063,8066,8068,8069,8070,8071,8072,8073,8074,8075,8078,8079,8080,8087,8088,8089,8090,8092,8093,8097,8098,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8111,8112,8113,8114,8118,8121,8132,8775,8802,11105,11130]]],["Abner",[62,52,[[8,13,9,0,9,[[249,2,2,0,2],[252,4,2,2,4],[255,1,1,4,5],[261,6,4,5,9]]],[9,45,39,9,48,[[268,15,14,9,23],[269,28,23,23,46],[270,2,2,46,48]]],[10,2,2,48,50,[[292,2,2,48,50]]],[12,2,2,50,52,[[363,1,1,50,51],[364,1,1,51,52]]]],[7558,7559,7673,7675,7755,7910,7912,7919,7920,8057,8061,8063,8066,8068,8069,8070,8071,8072,8073,8074,8075,8078,8079,8087,8088,8089,8090,8092,8093,8097,8098,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8111,8112,8113,8114,8118,8121,8132,8775,8802,11105,11130]]],["Abner's",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8080]]]]},{"k":"H75","v":[["*",[2,2,[[10,1,1,0,1,[[294,1,1,0,1]]],[19,1,1,1,2,[[642,1,1,1,2]]]],[8867,16824]]],["fatted",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8867]]],["stalled",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16824]]]]},{"k":"H76","v":[["blains",[2,2,[[1,2,2,0,2,[[58,2,2,0,2]]]],[1751,1752]]]]},{"k":"H77","v":[["Abez",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6341]]]]},{"k":"H78","v":[["Ibzan",[2,2,[[6,2,2,0,2,[[222,2,2,0,2]]]],[6877,6879]]]]},{"k":"H79","v":[["wrestled",[2,2,[[0,2,2,0,2,[[31,2,2,0,2]]]],[952,953]]]]},{"k":"H80","v":[["*",[6,6,[[1,1,1,0,1,[[58,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[22,2,2,2,4,[[683,1,1,2,3],[707,1,1,3,4]]],[25,1,1,4,5,[[827,1,1,4,5]]],[33,1,1,5,6,[[900,1,1,5,6]]]],[1751,5635,17763,18198,21110,22687]]],["dust",[5,5,[[1,1,1,0,1,[[58,1,1,0,1]]],[22,2,2,1,3,[[683,1,1,1,2],[707,1,1,2,3]]],[25,1,1,3,4,[[827,1,1,3,4]]],[33,1,1,4,5,[[900,1,1,4,5]]]],[1751,17763,18198,21110,22687]]],["powder",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5635]]]]},{"k":"H81","v":[["powders",[1,1,[[21,1,1,0,1,[[673,1,1,0,1]]]],[17577]]]]},{"k":"H82","v":[["fly",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13860]]]]},{"k":"H83","v":[["*",[3,3,[[18,1,1,0,1,[[532,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]],[25,1,1,2,3,[[818,1,1,2,3]]]],[14738,18451,20828]]],["+",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20828]]],["wings",[2,2,[[18,1,1,0,1,[[532,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[14738,18451]]]]},{"k":"H84","v":[["*",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]],[18,2,2,2,4,[[545,1,1,2,3],[568,1,1,3,4]]]],[5769,13847,14913,15399]]],["feathers",[2,2,[[18,2,2,0,2,[[545,1,1,0,1],[568,1,1,1,2]]]],[14913,15399]]],["wings",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]]],[5769,13847]]]]},{"k":"H85","v":[["*",[175,159,[[0,133,117,0,117,[[16,10,9,0,9],[17,13,12,9,21],[18,2,2,21,23],[19,8,8,23,31],[20,18,18,31,49],[21,20,16,49,65],[22,12,11,65,76],[23,14,12,76,88],[24,13,9,88,97],[25,8,6,97,103],[27,4,3,103,106],[30,2,2,106,108],[31,1,1,108,109],[34,2,2,109,111],[47,2,2,111,113],[48,2,2,113,115],[49,2,2,115,117]]],[1,9,9,117,126,[[51,1,1,117,118],[52,3,3,118,121],[53,1,1,121,122],[55,2,2,122,124],[81,1,1,124,125],[82,1,1,125,126]]],[2,1,1,126,127,[[115,1,1,126,127]]],[3,1,1,127,128,[[148,1,1,127,128]]],[4,7,7,128,135,[[153,1,1,128,129],[158,1,1,129,130],[161,2,2,130,132],[181,1,1,132,133],[182,1,1,133,134],[186,1,1,134,135]]],[5,2,2,135,137,[[210,2,2,135,137]]],[10,1,1,137,138,[[308,1,1,137,138]]],[11,1,1,138,139,[[325,1,1,138,139]]],[12,6,6,139,145,[[338,4,4,139,143],[353,1,1,143,144],[366,1,1,144,145]]],[13,2,2,145,147,[[386,1,1,145,146],[396,1,1,146,147]]],[15,1,1,147,148,[[421,1,1,147,148]]],[18,4,4,148,152,[[524,1,1,148,149],[582,3,3,149,152]]],[22,4,4,152,156,[[707,1,1,152,153],[719,1,1,153,154],[729,1,1,154,155],[741,1,1,155,156]]],[23,1,1,156,157,[[777,1,1,156,157]]],[25,1,1,157,158,[[834,1,1,157,158]]],[32,1,1,158,159,[[899,1,1,158,159]]]],[402,406,412,414,415,419,420,421,423,430,431,435,437,440,441,442,443,446,447,451,457,484,486,496,497,504,505,506,509,512,513,515,516,517,518,520,521,522,523,524,525,527,535,537,538,540,541,542,547,548,550,551,552,553,554,555,556,557,558,560,561,562,566,567,570,573,574,576,578,581,583,585,587,589,590,591,592,593,597,600,603,606,618,625,633,639,643,650,659,663,664,665,666,668,669,670,677,693,695,697,707,710,716,777,782,786,915,926,937,1023,1038,1466,1467,1503,1504,1519,1530,1578,1585,1594,1595,1606,1658,1663,2451,2474,3566,4729,4900,5096,5162,5184,5692,5728,5843,6478,6479,9377,9894,10279,10280,10284,10286,10836,11182,11594,11833,12518,14634,15612,15615,15648,18215,18459,18675,18882,19801,21304,22684]]],["+",[2,2,[[0,2,2,0,2,[[17,2,2,0,2]]]],[441,443]]],["Abraham",[159,147,[[0,118,106,0,106,[[16,9,9,0,9],[17,11,10,9,19],[18,2,2,19,21],[19,7,7,21,28],[20,17,17,28,45],[21,19,15,45,60],[22,12,11,60,71],[23,10,8,71,79],[24,10,8,79,87],[25,7,6,87,93],[27,3,2,93,95],[30,2,2,95,97],[31,1,1,97,98],[34,2,2,98,100],[47,2,2,100,102],[48,2,2,102,104],[49,2,2,104,106]]],[1,9,9,106,115,[[51,1,1,106,107],[52,3,3,107,110],[53,1,1,110,111],[55,2,2,111,113],[81,1,1,113,114],[82,1,1,114,115]]],[2,1,1,115,116,[[115,1,1,115,116]]],[3,1,1,116,117,[[148,1,1,116,117]]],[4,7,7,117,124,[[153,1,1,117,118],[158,1,1,118,119],[161,2,2,119,121],[181,1,1,121,122],[182,1,1,122,123],[186,1,1,123,124]]],[5,2,2,124,126,[[210,2,2,124,126]]],[10,1,1,126,127,[[308,1,1,126,127]]],[11,1,1,127,128,[[325,1,1,127,128]]],[12,5,5,128,133,[[338,3,3,128,131],[353,1,1,131,132],[366,1,1,132,133]]],[13,2,2,133,135,[[386,1,1,133,134],[396,1,1,134,135]]],[15,1,1,135,136,[[421,1,1,135,136]]],[18,4,4,136,140,[[524,1,1,136,137],[582,3,3,137,140]]],[22,4,4,140,144,[[707,1,1,140,141],[719,1,1,141,142],[729,1,1,142,143],[741,1,1,143,144]]],[23,1,1,144,145,[[777,1,1,144,145]]],[25,1,1,145,146,[[834,1,1,145,146]]],[32,1,1,146,147,[[899,1,1,146,147]]]],[402,406,412,414,415,419,420,421,423,430,431,435,437,440,442,446,447,451,457,484,486,496,497,504,505,506,509,512,515,516,517,518,520,521,522,523,525,527,535,537,538,540,541,542,547,548,550,551,552,553,554,555,556,557,558,560,561,562,566,567,573,574,576,578,581,583,585,587,589,590,591,592,593,597,600,603,618,633,639,659,663,664,666,668,669,670,677,693,695,697,707,710,716,777,786,915,926,937,1023,1038,1466,1467,1503,1504,1519,1530,1578,1585,1594,1595,1606,1658,1663,2451,2474,3566,4729,4900,5096,5162,5184,5692,5728,5843,6478,6479,9377,9894,10279,10280,10286,10836,11182,11594,11833,12518,14634,15612,15615,15648,18215,18459,18675,18882,19801,21304,22684]]],["Abraham's",[14,14,[[0,13,13,0,13,[[16,1,1,0,1],[19,1,1,1,2],[20,1,1,2,3],[21,1,1,3,4],[23,4,4,4,8],[24,3,3,8,11],[25,1,1,11,12],[27,1,1,12,13]]],[12,1,1,13,14,[[338,1,1,13,14]]]],[420,513,524,570,606,625,643,650,665,670,677,716,782,10284]]]]},{"k":"H86","v":[["knee",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1238]]]]},{"k":"H87","v":[["*",[61,50,[[0,59,48,0,48,[[10,6,4,0,4],[11,12,11,4,15],[12,9,9,15,24],[13,8,7,24,31],[14,8,7,31,38],[15,12,7,38,45],[16,4,3,45,48]]],[12,1,1,48,49,[[338,1,1,48,49]]],[15,1,1,49,50,[[421,1,1,49,50]]]],[292,293,295,297,299,302,303,304,305,307,308,312,314,315,316,319,320,322,323,325,326,330,332,336,348,349,350,355,357,358,359,361,362,363,371,372,373,378,382,383,384,386,387,396,397,398,400,402,10279,12518]]],["+",[4,4,[[0,4,4,0,4,[[10,2,2,0,2],[11,1,1,2,3],[13,1,1,3,4]]]],[292,293,314,359]]],["Abram",[50,42,[[0,48,40,0,40,[[10,2,2,0,2],[11,10,9,2,11],[12,8,8,11,19],[13,6,5,19,24],[14,8,7,24,31],[15,10,6,31,37],[16,4,3,37,40]]],[12,1,1,40,41,[[338,1,1,40,41]]],[15,1,1,41,42,[[421,1,1,41,42]]]],[295,297,299,302,303,304,305,307,308,312,316,319,320,322,323,326,330,332,336,349,350,355,357,358,361,362,363,371,372,373,378,383,384,386,387,396,397,398,400,402,10279,12518]]],["Abram's",[7,7,[[0,7,7,0,7,[[10,2,2,0,2],[11,1,1,2,3],[12,1,1,3,4],[13,1,1,4,5],[15,2,2,5,7]]]],[295,297,315,325,348,382,384]]]]},{"k":"H88","v":[["*",[4,4,[[3,4,4,0,4,[[137,2,2,0,2],[149,2,2,2,4]]]],[4350,4351,4803,4804]]],["+",[2,2,[[3,2,2,0,2,[[137,1,1,0,1],[149,1,1,1,2]]]],[4351,4804]]],["Oboth",[2,2,[[3,2,2,0,2,[[137,1,1,0,1],[149,1,1,1,2]]]],[4350,4803]]]]},{"k":"H89","v":[["Agee",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8664]]]]},{"k":"H90","v":[["*",[8,6,[[3,1,1,0,1,[[140,1,1,0,1]]],[8,7,5,1,6,[[250,7,5,1,6]]]],[4453,7568,7569,7580,7592,7593]]],["+",[2,2,[[3,1,1,0,1,[[140,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]]],[4453,7593]]],["Agag",[6,4,[[8,6,4,0,4,[[250,6,4,0,4]]]],[7568,7569,7580,7592]]]]},{"k":"H91","v":[["Agagite",[5,5,[[16,5,5,0,5,[[428,2,2,0,2],[433,2,2,2,4],[434,1,1,4,5]]]],[12748,12757,12820,12822,12858]]]]},{"k":"H92","v":[["*",[4,4,[[1,1,1,0,1,[[61,1,1,0,1]]],[9,1,1,1,2,[[268,1,1,1,2]]],[22,1,1,2,3,[[736,1,1,2,3]]],[29,1,1,3,4,[[887,1,1,3,4]]]],[1838,8074,18792,22501]]],["bunch",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1838]]],["burdens",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18792]]],["troop",[2,2,[[9,1,1,0,1,[[268,1,1,0,1]]],[29,1,1,1,2,[[887,1,1,1,2]]]],[8074,22501]]]]},{"k":"H93","v":[["nuts",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17625]]]]},{"k":"H94","v":[["Agur",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17252]]]]},{"k":"H95","v":[["piece",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7276]]]]},{"k":"H96","v":[["drops",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13821]]]]},{"k":"H97","v":[["Eglaim",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17968]]]]},{"k":"H98","v":[["*",[9,9,[[1,2,2,0,2,[[56,1,1,0,1],[57,1,1,1,2]]],[18,2,2,2,4,[[584,1,1,2,3],[591,1,1,3,4]]],[22,4,4,4,8,[[692,1,1,4,5],[713,1,1,5,6],[719,1,1,6,7],[720,1,1,7,8]]],[23,1,1,8,9,[[795,1,1,8,9]]]],[1704,1715,15734,15830,17951,18327,18469,18495,20244]]],["ponds",[2,2,[[1,2,2,0,2,[[56,1,1,0,1],[57,1,1,1,2]]]],[1704,1715]]],["pool",[2,2,[[22,2,2,0,2,[[713,1,1,0,1],[719,1,1,1,2]]]],[18327,18469]]],["pools",[2,2,[[22,2,2,0,2,[[692,1,1,0,1],[720,1,1,1,2]]]],[17951,18495]]],["reeds",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20244]]],["standing",[2,2,[[18,2,2,0,2,[[584,1,1,0,1],[591,1,1,1,2]]]],[15734,15830]]]]},{"k":"H99","v":[["ponds",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18014]]]]},{"k":"H100","v":[["*",[5,5,[[17,2,2,0,2,[[476,2,2,0,2]]],[22,3,3,2,5,[[687,1,1,2,3],[697,1,1,3,4],[736,1,1,4,5]]]],[13890,13908,17843,18019,18791]]],["bulrush",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18791]]],["caldron",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13908]]],["hook",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13890]]],["rush",[2,2,[[22,2,2,0,2,[[687,1,1,0,1],[697,1,1,1,2]]]],[17843,18019]]]]},{"k":"H101","v":[["*",[3,3,[[1,1,1,0,1,[[73,1,1,0,1]]],[21,1,1,1,2,[[677,1,1,1,2]]],[22,1,1,2,3,[[700,1,1,2,3]]]],[2183,17629,18076]]],["basons",[1,1,[[1,1,1,0,1,[[73,1,1,0,1]]]],[2183]]],["cups",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18076]]],["goblet",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17629]]]]},{"k":"H102","v":[["bands",[7,6,[[25,7,6,0,6,[[813,1,1,0,1],[818,1,1,1,2],[839,4,3,2,5],[840,1,1,5,6]]]],[20694,20846,21431,21434,21447,21452]]]]},{"k":"H103","v":[["*",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[19,2,2,1,3,[[633,1,1,1,2],[637,1,1,2,3]]]],[5650,16548,16661]]],["gather",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5650]]],["gathereth",[2,2,[[19,2,2,0,2,[[633,1,1,0,1],[637,1,1,1,2]]]],[16548,16661]]]]},{"k":"H104","v":[["letter",[3,3,[[14,3,3,0,3,[[406,2,2,0,2],[407,1,1,2,3]]]],[12118,12121,12140]]]]},{"k":"H105","v":[["chargers",[2,1,[[14,2,1,0,1,[[403,2,1,0,1]]]],[12025]]]]},{"k":"H106","v":[["fist",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[22,1,1,1,2,[[736,1,1,1,2]]]],[2095,18790]]]]},{"k":"H107","v":[["*",[10,10,[[13,2,2,0,2,[[396,2,2,0,2]]],[15,6,6,2,8,[[414,3,3,2,5],[418,3,3,5,8]]],[16,2,2,8,10,[[434,2,2,8,10]]]],[11828,11833,12314,12315,12316,12406,12418,12420,12860,12863]]],["letter",[4,4,[[15,2,2,0,2,[[414,1,1,0,1],[418,1,1,1,2]]],[16,2,2,2,4,[[434,2,2,2,4]]]],[12315,12406,12860,12863]]],["letters",[6,6,[[13,2,2,0,2,[[396,2,2,0,2]]],[15,4,4,2,6,[[414,2,2,2,4],[418,2,2,4,6]]]],[11828,11833,12314,12316,12418,12420]]]]},{"k":"H108","v":[["*",[2,2,[[0,1,1,0,1,[[1,1,1,0,1]]],[17,1,1,1,2,[[471,1,1,1,2]]]],[36,13763]]],["mist",[1,1,[[0,1,1,0,1,[[1,1,1,0,1]]]],[36]]],["vapour",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13763]]]]},{"k":"H109","v":[["+",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7273]]]]},{"k":"H110","v":[["Adbeel",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[671,10281]]]]},{"k":"H111","v":[["Hadad",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9125]]]]},{"k":"H112","v":[["Iddo",[2,1,[[14,2,1,0,1,[[410,2,1,0,1]]]],[12218]]]]},{"k":"H113","v":[["*",[335,287,[[0,71,59,0,59,[[17,1,1,0,1],[18,1,1,1,2],[22,3,3,2,5],[23,24,18,5,23],[30,1,1,23,24],[31,3,3,24,27],[32,5,4,27,31],[38,8,7,31,38],[39,2,2,38,40],[41,3,3,40,43],[42,1,1,43,44],[43,13,11,44,55],[44,2,2,55,57],[46,4,2,57,59]]],[1,10,8,59,67,[[70,7,5,59,64],[72,1,1,64,65],[81,1,1,65,66],[83,1,1,66,67]]],[3,6,5,67,72,[[127,1,1,67,68],[128,1,1,68,69],[148,2,2,69,71],[152,2,1,71,72]]],[4,4,2,72,74,[[162,2,1,72,73],[175,2,1,73,74]]],[5,3,3,74,77,[[189,2,2,74,76],[191,1,1,76,77]]],[6,7,7,77,84,[[213,1,1,77,78],[214,1,1,78,79],[216,1,1,79,80],[229,4,4,80,84]]],[7,1,1,84,85,[[233,1,1,84,85]]],[8,38,30,85,115,[[236,3,2,85,87],[251,1,1,87,88],[255,1,1,88,89],[257,1,1,89,90],[259,3,3,90,93],[260,18,12,93,105],[261,6,5,105,110],[264,3,3,110,113],[265,2,2,113,115]]],[9,52,43,115,158,[[267,1,1,115,116],[268,2,2,116,118],[269,1,1,118,119],[270,1,1,119,120],[275,4,3,120,123],[276,1,1,123,124],[277,4,3,124,127],[278,2,1,127,128],[279,2,2,128,130],[280,10,8,130,138],[281,3,2,138,140],[282,3,3,140,143],[284,3,3,143,146],[285,10,8,146,154],[286,1,1,154,155],[290,4,3,155,158]]],[10,34,30,158,188,[[291,19,15,158,173],[292,1,1,173,174],[293,2,2,174,176],[301,1,1,176,177],[302,1,1,177,178],[306,1,1,178,179],[308,6,6,179,185],[310,2,2,185,187],[312,1,1,187,188]]],[11,37,35,188,223,[[314,4,4,188,192],[316,2,2,192,194],[317,7,7,194,201],[318,7,7,201,208],[320,3,3,208,211],[321,3,3,211,214],[322,5,4,214,218],[330,4,3,218,221],[331,2,2,221,223]]],[12,5,3,223,226,[[349,1,1,223,224],[358,4,2,224,226]]],[13,4,4,226,230,[[368,2,2,226,228],[379,1,1,228,229],[384,1,1,229,230]]],[15,3,3,230,233,[[415,1,1,230,231],[420,1,1,231,232],[422,1,1,232,233]]],[17,1,1,233,234,[[438,1,1,233,234]]],[18,13,12,234,246,[[485,2,2,234,236],[489,1,1,236,237],[522,1,1,237,238],[574,1,1,238,239],[582,1,1,239,240],[587,1,1,240,241],[591,1,1,241,242],[600,1,1,242,243],[612,1,1,243,244],[613,2,1,244,245],[624,1,1,245,246]]],[19,3,3,246,249,[[652,1,1,246,247],[654,1,1,247,248],[657,1,1,248,249]]],[22,17,15,249,264,[[679,1,1,249,250],[681,1,1,250,251],[688,2,2,251,253],[697,2,1,253,254],[699,1,1,254,255],[700,1,1,255,256],[702,1,1,256,257],[704,1,1,257,258],[714,4,3,258,261],[715,2,2,261,263],[729,1,1,263,264]]],[23,6,5,264,269,[[766,1,1,264,265],[771,2,1,265,266],[778,1,1,266,267],[781,1,1,267,268],[782,1,1,268,269]]],[26,6,5,269,274,[[850,1,1,269,270],[859,4,3,270,273],[861,1,1,273,274]]],[27,1,1,274,275,[[873,1,1,274,275]]],[29,1,1,275,276,[[882,1,1,275,276]]],[32,1,1,276,277,[[896,1,1,276,277]]],[35,1,1,277,278,[[906,1,1,277,278]]],[37,7,7,278,285,[[911,1,1,278,279],[914,4,4,279,283],[916,2,2,283,285]]],[38,3,2,285,287,[[925,2,1,285,286],[927,1,1,286,287]]]],[436,459,577,582,586,600,601,603,605,609,618,626,627,628,630,633,635,639,640,642,645,647,656,908,932,933,946,968,973,974,975,1151,1152,1156,1157,1165,1168,1169,1173,1179,1262,1282,1285,1310,1329,1331,1332,1333,1340,1342,1343,1344,1346,1348,1357,1366,1367,1438,1445,2081,2082,2083,2085,2109,2161,2460,2519,4052,4070,4743,4745,4881,5203,5515,5904,5906,5948,6593,6617,6667,7035,7036,7050,7051,7162,7227,7238,7611,7768,7799,7845,7847,7849,7871,7875,7878,7885,7886,7887,7888,7889,7890,7891,7892,7902,7920,7921,7922,7923,7924,7971,7975,7977,7991,7993,8032,8054,8056,8102,8128,8236,8237,8238,8243,8268,8270,8272,8294,8349,8350,8365,8368,8371,8373,8374,8375,8376,8378,8404,8410,8429,8430,8435,8506,8509,8510,8530,8531,8537,8538,8539,8541,8546,8548,8560,8695,8713,8714,8719,8728,8730,8734,8735,8737,8738,8741,8744,8748,8750,8753,8754,8760,8764,8808,8833,8842,9131,9178,9307,9348,9349,9351,9352,9354,9355,9412,9417,9497,9554,9556,9567,9570,9619,9631,9648,9650,9651,9665,9667,9669,9672,9679,9686,9689,9696,9697,9700,9706,9732,9739,9741,9763,9767,9787,9795,9796,9799,9802,10047,10048,10051,10065,10067,10739,10937,10957,11225,11226,11459,11558,12332,12503,12578,12923,14013,14021,14070,14608,15483,15627,15787,15829,16100,16180,16199,16356,17126,17187,17261,17678,17708,17866,17883,18008,18043,18070,18097,18143,18338,18339,18342,18356,18358,18695,19472,19600,19806,19894,19904,21747,22031,22032,22034,22089,22266,22411,22633,22796,22887,22926,22927,22935,22936,22951,22952,23095,23121]]],["+",[5,5,[[0,1,1,0,1,[[43,1,1,0,1]]],[1,1,1,1,2,[[70,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[11,1,1,3,4,[[322,1,1,3,4]]],[17,1,1,4,5,[[438,1,1,4,5]]]],[1332,2082,9354,9796,12923]]],["Lord",[30,30,[[1,2,2,0,2,[[72,1,1,0,1],[83,1,1,1,2]]],[4,1,1,2,3,[[162,1,1,2,3]]],[5,2,2,3,5,[[189,2,2,3,5]]],[6,1,1,5,6,[[216,1,1,5,6]]],[15,3,3,6,9,[[415,1,1,6,7],[420,1,1,7,8],[422,1,1,8,9]]],[18,9,9,9,18,[[485,2,2,9,11],[522,1,1,11,12],[574,1,1,12,13],[587,1,1,13,14],[591,1,1,14,15],[612,1,1,15,16],[613,1,1,16,17],[624,1,1,17,18]]],[22,6,6,18,24,[[679,1,1,18,19],[681,1,1,19,20],[688,2,2,20,22],[697,1,1,22,23],[729,1,1,23,24]]],[26,1,1,24,25,[[861,1,1,24,25]]],[27,1,1,25,26,[[873,1,1,25,26]]],[32,1,1,26,27,[[896,1,1,26,27]]],[37,2,2,27,29,[[914,1,1,27,28],[916,1,1,28,29]]],[38,1,1,29,30,[[927,1,1,29,30]]]],[2161,2519,5203,5904,5906,6667,12332,12503,12578,14013,14021,14608,15483,15787,15829,16180,16199,16356,17678,17708,17866,17883,18008,18695,22089,22266,22633,22936,22952,23121]]],["lord",[185,160,[[0,34,31,0,31,[[17,1,1,0,1],[22,3,3,1,4],[23,1,1,4,5],[30,1,1,5,6],[31,3,3,6,9],[32,5,4,9,13],[38,1,1,13,14],[39,1,1,14,15],[41,3,3,15,18],[43,9,9,18,27],[44,2,2,27,29],[46,4,2,29,31]]],[1,1,1,31,32,[[81,1,1,31,32]]],[3,6,5,32,37,[[127,1,1,32,33],[128,1,1,33,34],[148,2,2,34,36],[152,2,1,36,37]]],[5,1,1,37,38,[[191,1,1,37,38]]],[6,4,4,38,42,[[213,1,1,38,39],[214,1,1,39,40],[229,2,2,40,42]]],[7,1,1,42,43,[[233,1,1,42,43]]],[8,28,20,43,63,[[236,3,2,43,45],[251,1,1,45,46],[257,1,1,46,47],[259,2,2,47,49],[260,15,9,49,58],[261,5,4,58,62],[264,1,1,62,63]]],[9,44,37,63,100,[[267,1,1,63,64],[268,1,1,64,65],[269,1,1,65,66],[270,1,1,66,67],[275,1,1,67,68],[276,1,1,68,69],[277,4,3,69,72],[279,2,2,72,74],[280,10,8,74,82],[281,3,2,82,84],[282,2,2,84,86],[284,3,3,86,89],[285,10,8,89,97],[290,4,3,97,100]]],[10,31,27,100,127,[[291,19,15,100,115],[292,1,1,115,116],[293,2,2,116,118],[301,1,1,118,119],[302,1,1,119,120],[308,5,5,120,125],[310,2,2,125,127]]],[11,11,11,127,138,[[314,1,1,127,128],[316,2,2,128,130],[317,2,2,130,132],[318,2,2,132,134],[320,2,2,134,136],[321,1,1,136,137],[330,1,1,137,138]]],[12,3,2,138,140,[[358,3,2,138,140]]],[13,3,3,140,143,[[368,2,2,140,142],[379,1,1,142,143]]],[18,2,2,143,145,[[489,1,1,143,144],[582,1,1,144,145]]],[22,2,2,145,147,[[697,1,1,145,146],[699,1,1,146,147]]],[23,4,4,147,151,[[766,1,1,147,148],[778,1,1,148,149],[781,1,1,149,150],[782,1,1,150,151]]],[26,5,4,151,155,[[850,1,1,151,152],[859,4,3,152,155]]],[37,5,5,155,160,[[911,1,1,155,156],[914,3,3,156,159],[916,1,1,159,160]]]],[436,577,582,586,609,908,932,933,946,968,973,974,975,1165,1173,1262,1282,1285,1329,1331,1340,1342,1343,1344,1346,1348,1357,1366,1367,1438,1445,2460,4052,4070,4743,4745,4881,5948,6593,6617,7050,7051,7162,7227,7238,7611,7799,7847,7849,7885,7886,7887,7888,7889,7890,7891,7892,7902,7920,7922,7923,7924,7975,8032,8054,8102,8128,8238,8243,8268,8270,8272,8349,8350,8365,8368,8371,8373,8374,8375,8376,8378,8404,8410,8430,8435,8506,8509,8510,8530,8531,8537,8538,8539,8541,8546,8548,8695,8713,8714,8719,8728,8730,8734,8735,8737,8738,8741,8744,8748,8750,8753,8754,8760,8764,8808,8833,8842,9131,9178,9348,9349,9351,9352,9355,9412,9417,9570,9619,9631,9650,9651,9686,9700,9732,9739,9767,10047,10937,10957,11225,11226,11459,14070,15627,18008,18043,19472,19806,19894,19904,21747,22031,22032,22034,22887,22926,22927,22935,22951]]],["lord's",[7,7,[[0,4,4,0,4,[[39,1,1,0,1],[43,3,3,1,4]]],[9,1,1,4,5,[[286,1,1,4,5]]],[12,1,1,5,6,[[358,1,1,5,6]]],[22,1,1,6,7,[[700,1,1,6,7]]]],[1179,1333,1340,1342,8560,10937,18070]]],["lords",[4,4,[[0,1,1,0,1,[[18,1,1,0,1]]],[4,1,1,1,2,[[162,1,1,1,2]]],[18,1,1,2,3,[[613,1,1,2,3]]],[22,1,1,3,4,[[704,1,1,3,4]]]],[459,5203,16199,18143]]],["master",[75,67,[[0,23,20,0,20,[[23,18,15,0,15],[38,5,5,15,20]]],[1,5,4,20,24,[[70,5,4,20,24]]],[4,2,1,24,25,[[175,2,1,24,25]]],[6,2,2,25,27,[[229,2,2,25,27]]],[8,9,9,27,36,[[255,1,1,27,28],[259,1,1,28,29],[260,3,3,29,32],[261,1,1,32,33],[264,1,1,33,34],[265,2,2,34,36]]],[9,1,1,36,37,[[268,1,1,36,37]]],[10,1,1,37,38,[[312,1,1,37,38]]],[11,20,19,38,57,[[314,3,3,38,41],[317,5,5,41,46],[318,4,4,46,50],[320,1,1,50,51],[321,2,2,51,53],[322,1,1,53,54],[330,2,1,54,55],[331,2,2,55,57]]],[12,1,1,57,58,[[349,1,1,57,58]]],[13,1,1,58,59,[[384,1,1,58,59]]],[19,2,2,59,61,[[654,1,1,59,60],[657,1,1,60,61]]],[22,6,5,61,66,[[702,1,1,61,62],[714,3,2,62,64],[715,2,2,64,66]]],[38,2,1,66,67,[[925,2,1,66,67]]]],[600,601,603,605,618,626,627,628,630,633,639,640,645,647,656,1151,1152,1157,1168,1169,2081,2083,2085,2109,5515,7035,7036,7768,7845,7871,7875,7878,7921,7971,7991,7993,8056,9497,9554,9556,9567,9648,9665,9667,9669,9672,9679,9689,9696,9697,9741,9763,9787,9802,10051,10065,10067,10739,11558,17187,17261,18097,18338,18342,18356,18358,23095]]],["master's",[21,19,[[0,7,7,0,7,[[23,5,5,0,5],[38,2,2,5,7]]],[1,1,1,7,8,[[70,1,1,7,8]]],[8,1,1,8,9,[[264,1,1,8,9]]],[9,6,4,9,13,[[275,3,2,9,11],[278,2,1,11,12],[282,1,1,12,13]]],[11,5,5,13,18,[[318,1,1,13,14],[322,3,3,14,17],[330,1,1,17,18]]],[22,1,1,18,19,[[714,1,1,18,19]]]],[618,627,635,639,642,1156,1157,2081,7977,8236,8237,8294,8429,9706,9795,9796,9799,10048,18339]]],["masters",[5,4,[[18,1,1,0,1,[[600,1,1,0,1]]],[19,1,1,1,2,[[652,1,1,1,2]]],[23,2,1,2,3,[[771,2,1,2,3]]],[29,1,1,3,4,[[882,1,1,3,4]]]],[16100,17126,19600,22411]]],["masters'",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22796]]],["owner",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9307]]],["sir",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1310]]]]},{"k":"H114","v":[["Addon",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12481]]]]},{"k":"H115","v":[["Adoraim",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11423]]]]},{"k":"H116","v":[["*",[57,53,[[14,11,10,0,10,[[406,3,3,0,3],[407,6,5,3,8],[408,2,2,8,10]]],[26,46,43,10,53,[[851,9,8,10,18],[852,9,7,18,25],[853,2,2,25,27],[854,8,8,27,35],[855,15,15,35,50],[856,3,3,50,53]]]],[12119,12133,12134,12136,12138,12139,12143,12150,12152,12164,21772,21773,21775,21777,21783,21793,21804,21806,21810,21820,21826,21828,21831,21833,21837,21844,21856,21877,21880,21882,21883,21887,21891,21898,21903,21908,21909,21910,21911,21916,21917,21918,21919,21920,21921,21923,21924,21926,21928,21930,21934,21944,21952]]],["Now",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12133]]],["Then",[52,49,[[14,8,8,0,8,[[406,2,2,0,2],[407,4,4,2,6],[408,2,2,6,8]]],[26,44,41,8,49,[[851,9,8,8,16],[852,9,7,16,23],[853,2,2,23,25],[854,8,8,25,33],[855,15,15,33,48],[856,1,1,48,49]]]],[12119,12134,12136,12138,12143,12150,12152,12164,21772,21773,21775,21777,21783,21793,21804,21806,21810,21820,21826,21828,21831,21833,21837,21844,21856,21877,21880,21882,21883,21887,21891,21898,21903,21908,21909,21910,21911,21916,21917,21918,21919,21920,21921,21923,21924,21926,21928,21930,21952]]],["then",[3,3,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,2,2,1,3,[[856,2,2,1,3]]]],[12139,21934,21944]]],["time",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12150]]]]},{"k":"H117","v":[["*",[27,25,[[1,1,1,0,1,[[64,1,1,0,1]]],[6,2,2,1,3,[[215,2,2,1,3]]],[8,1,1,3,4,[[239,1,1,3,4]]],[13,1,1,4,5,[[389,1,1,4,5]]],[15,2,2,5,7,[[415,1,1,5,6],[422,1,1,6,7]]],[18,7,6,7,13,[[485,2,2,7,9],[493,1,1,9,10],[553,1,1,10,11],[570,2,1,11,12],[613,1,1,12,13]]],[22,3,2,13,15,[[688,1,1,13,14],[711,2,1,14,15]]],[23,5,5,15,20,[[758,1,1,15,16],[769,3,3,16,19],[774,1,1,19,20]]],[25,2,2,20,22,[[818,1,1,20,21],[833,1,1,21,22]]],[33,2,2,22,24,[[901,1,1,22,23],[902,1,1,23,24]]],[37,1,1,24,25,[[921,1,1,24,25]]]],[1930,6636,6648,7305,11676,12332,12578,14013,14021,14095,15085,15430,16214,17884,18300,19296,19568,19569,19570,19688,20848,21266,22704,22730,23030]]],["+",[1,1,[[23,1,1,0,1,[[769,1,1,0,1]]]],[19569]]],["excellent",[4,4,[[18,4,4,0,4,[[485,2,2,0,2],[493,1,1,2,3],[553,1,1,3,4]]]],[14013,14021,14095,15085]]],["famous",[2,2,[[18,1,1,0,1,[[613,1,1,0,1]]],[25,1,1,1,2,[[833,1,1,1,2]]]],[16214,21266]]],["gallant",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18300]]],["glorious",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18300]]],["goodly",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20848]]],["lordly",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6648]]],["mightier",[1,1,[[18,1,1,0,1,[[570,1,1,0,1]]]],[15430]]],["mighty",[4,4,[[1,1,1,0,1,[[64,1,1,0,1]]],[8,1,1,1,2,[[239,1,1,1,2]]],[18,1,1,2,3,[[570,1,1,2,3]]],[37,1,1,3,4,[[921,1,1,3,4]]]],[1930,7305,15430,23030]]],["nobles",[7,7,[[6,1,1,0,1,[[215,1,1,0,1]]],[13,1,1,1,2,[[389,1,1,1,2]]],[15,2,2,2,4,[[415,1,1,2,3],[422,1,1,3,4]]],[23,2,2,4,6,[[758,1,1,4,5],[774,1,1,5,6]]],[33,1,1,6,7,[[902,1,1,6,7]]]],[6636,11676,12332,12578,19296,19688,22730]]],["one",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17884]]],["principal",[2,2,[[23,2,2,0,2,[[769,2,2,0,2]]]],[19568,19570]]],["worthies",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22704]]]]},{"k":"H118","v":[["Adalia",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12842]]]]},{"k":"H119","v":[["*",[10,10,[[1,6,6,0,6,[[74,1,1,0,1],[75,1,1,1,2],[84,2,2,2,4],[85,1,1,4,5],[88,1,1,5,6]]],[19,1,1,6,7,[[650,1,1,6,7]]],[22,1,1,7,8,[[679,1,1,7,8]]],[24,1,1,8,9,[[800,1,1,8,9]]],[33,1,1,9,10,[[901,1,1,9,10]]]],[2200,2249,2538,2554,2585,2698,17075,17672,20427,22702]]],["red",[9,9,[[1,6,6,0,6,[[74,1,1,0,1],[75,1,1,1,2],[84,2,2,2,4],[85,1,1,4,5],[88,1,1,5,6]]],[19,1,1,6,7,[[650,1,1,6,7]]],[22,1,1,7,8,[[679,1,1,7,8]]],[33,1,1,8,9,[[901,1,1,8,9]]]],[2200,2249,2538,2554,2585,2698,17075,17672,22702]]],["ruddy",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20427]]]]},{"k":"H120","v":[["*",[541,517,[[0,35,28,0,28,[[0,2,2,0,2],[1,10,8,2,10],[2,3,3,10,13],[4,1,1,13,14],[5,8,7,14,21],[6,2,2,21,23],[7,2,1,23,24],[8,5,2,24,26],[10,1,1,26,27],[15,1,1,27,28]]],[1,14,14,28,42,[[53,1,1,28,29],[57,2,2,29,31],[58,5,5,31,36],[61,1,1,36,37],[62,3,3,37,40],[79,1,1,40,41],[82,1,1,41,42]]],[2,15,15,42,57,[[90,1,1,42,43],[94,2,2,43,45],[95,1,1,45,46],[96,1,1,46,47],[102,2,2,47,49],[105,1,1,49,50],[107,1,1,50,51],[111,1,1,51,52],[113,3,3,52,55],[116,2,2,55,57]]],[3,24,22,57,79,[[119,1,1,57,58],[121,1,1,58,59],[124,1,1,59,60],[125,2,2,60,62],[128,1,1,62,63],[132,3,2,63,65],[134,2,1,65,66],[135,4,4,66,70],[139,1,1,70,71],[147,8,8,71,79]]],[4,7,6,79,85,[[156,2,2,79,81],[157,1,1,81,82],[160,2,1,82,83],[172,1,1,83,84],[184,1,1,84,85]]],[5,2,2,85,87,[[197,1,1,85,86],[200,1,1,86,87]]],[6,5,5,87,92,[[226,3,3,87,90],[228,2,2,90,92]]],[8,7,6,92,98,[[250,1,1,92,93],[251,2,1,93,94],[252,1,1,94,95],[259,1,1,95,96],[260,1,1,96,97],[261,1,1,97,98]]],[9,4,4,98,102,[[273,2,2,98,100],[289,1,1,100,101],[290,1,1,101,102]]],[10,5,5,102,107,[[294,1,1,102,103],[298,3,3,103,106],[303,1,1,106,107]]],[11,4,4,107,111,[[319,1,1,107,108],[331,1,1,108,109],[335,2,2,109,111]]],[12,4,4,111,115,[[342,1,1,111,112],[354,1,1,112,113],[358,1,1,113,114],[366,1,1,114,115]]],[13,6,6,115,121,[[372,4,4,115,119],[385,1,1,119,120],[398,1,1,120,121]]],[15,3,3,121,124,[[414,2,2,121,123],[421,1,1,123,124]]],[17,26,26,124,150,[[440,1,1,124,125],[442,1,1,125,126],[446,1,1,126,127],[449,2,2,127,129],[450,1,1,129,130],[451,1,1,130,131],[455,2,2,131,133],[456,2,2,133,135],[460,1,1,135,136],[462,1,1,136,137],[463,1,1,137,138],[467,1,1,138,139],[468,2,2,139,141],[469,4,4,141,145],[470,1,1,145,146],[471,2,2,146,148],[472,1,1,148,149],[473,1,1,149,150]]],[18,62,62,150,212,[[485,1,1,150,151],[488,1,1,151,152],[489,2,2,152,154],[491,1,1,154,155],[494,1,1,155,156],[498,1,1,156,157],[499,1,1,157,158],[508,1,1,158,159],[509,1,1,159,160],[510,1,1,160,161],[513,2,2,161,163],[516,2,2,163,165],[522,1,1,165,166],[526,3,3,166,169],[530,1,1,169,170],[533,1,1,170,171],[534,1,1,171,172],[535,2,2,172,174],[537,1,1,174,175],[539,1,1,175,176],[541,1,1,176,177],[543,1,1,177,178],[545,1,1,178,179],[550,1,1,179,180],[553,1,1,180,181],[555,1,1,181,182],[557,1,1,182,183],[559,1,1,183,184],[561,2,2,184,186],[566,1,1,186,187],[567,1,1,187,188],[571,2,2,188,190],[581,2,2,190,192],[582,1,1,192,193],[584,4,4,193,197],[585,1,1,197,198],[592,2,2,198,200],[593,1,1,200,201],[595,2,2,201,203],[596,1,1,203,204],[601,1,1,204,205],[612,2,2,205,207],[617,1,1,207,208],[621,2,2,208,210],[622,1,1,210,211],[623,1,1,211,212]]],[19,45,43,212,255,[[630,4,3,212,215],[633,1,1,215,216],[635,3,3,216,219],[638,1,1,219,220],[639,4,4,220,224],[642,2,2,224,226],[643,2,2,226,228],[644,1,1,228,229],[645,1,1,229,230],[646,3,3,230,233],[647,4,4,233,237],[648,2,2,237,239],[650,1,1,239,240],[651,3,3,240,243],[654,3,2,243,245],[655,6,6,245,251],[656,2,2,251,253],[657,2,2,253,255]]],[20,49,43,255,298,[[659,2,2,255,257],[660,9,8,257,265],[661,8,7,265,272],[663,1,1,272,273],[664,6,5,273,278],[665,5,5,278,283],[666,9,7,283,290],[667,5,4,290,294],[668,1,1,294,295],[669,1,1,295,296],[670,2,2,296,298]]],[22,27,27,298,325,[[680,5,5,298,303],[683,1,1,303,304],[684,2,2,304,306],[691,1,1,306,307],[695,1,1,307,308],[700,1,1,308,309],[707,2,2,309,311],[709,2,2,311,313],[715,1,1,313,314],[716,1,1,314,315],[721,1,1,315,316],[722,3,3,316,319],[723,1,1,319,320],[725,1,1,320,321],[729,1,1,321,322],[730,1,1,322,323],[734,1,1,323,324],[736,1,1,324,325]]],[23,30,29,325,354,[[746,1,1,325,326],[748,1,1,326,327],[751,1,1,327,328],[753,1,1,328,329],[754,2,2,329,331],[760,1,1,331,332],[761,1,1,332,333],[765,1,1,333,334],[771,1,1,334,335],[775,2,2,335,337],[776,3,3,337,340],[777,4,3,340,343],[780,1,1,343,344],[791,1,1,344,345],[793,3,3,345,348],[794,2,2,348,350],[795,4,4,350,354]]],[24,2,2,354,356,[[799,2,2,354,356]]],[25,132,130,356,486,[[802,4,4,356,360],[803,4,4,360,364],[804,6,6,364,370],[805,4,4,370,374],[806,1,1,374,375],[807,1,1,375,376],[808,1,1,376,377],[809,6,6,377,383],[811,3,3,383,386],[812,3,3,386,389],[813,6,6,389,395],[814,2,2,395,397],[815,6,5,397,402],[816,1,1,402,403],[817,1,1,403,404],[818,1,1,404,405],[820,2,2,405,407],[821,7,7,407,414],[822,7,7,414,421],[823,3,3,421,424],[824,3,3,424,427],[825,3,3,427,430],[826,2,2,430,432],[827,1,1,432,433],[828,2,2,433,435],[829,5,4,435,439],[830,4,4,439,443],[831,2,2,443,445],[832,2,2,445,447],[833,3,3,447,450],[834,6,6,450,456],[835,2,2,456,458],[836,1,1,458,459],[837,9,9,459,468],[838,4,4,468,472],[839,3,3,472,475],[840,3,3,475,478],[841,1,1,478,479],[842,1,1,479,480],[844,3,3,480,483],[845,2,2,483,485],[848,1,1,485,486]]],[26,4,4,486,490,[[857,2,2,486,488],[859,2,2,488,490]]],[27,4,4,490,494,[[867,1,1,490,491],[870,1,1,491,492],[872,1,1,492,493],[874,1,1,493,494]]],[28,1,1,494,495,[[876,1,1,494,495]]],[29,1,1,495,496,[[882,1,1,495,496]]],[31,3,3,496,499,[[891,2,2,496,498],[892,1,1,498,499]]],[32,5,5,499,504,[[894,1,1,499,500],[897,2,2,500,502],[898,1,1,502,503],[899,1,1,503,504]]],[34,3,3,504,507,[[903,1,1,504,505],[904,2,2,505,507]]],[35,3,2,507,509,[[906,3,2,507,509]]],[36,1,1,509,510,[[909,1,1,509,510]]],[37,7,6,510,516,[[912,1,1,510,511],[918,2,1,511,512],[919,1,1,512,513],[921,1,1,513,514],[922,1,1,514,515],[923,1,1,515,516]]],[38,1,1,516,517,[[927,1,1,516,517]]]],[25,26,35,37,38,45,46,48,52,55,67,77,79,106,138,139,140,141,142,143,144,180,182,204,210,211,271,393,1612,1727,1728,1751,1752,1761,1764,1767,1828,1869,1880,1882,2414,2493,2747,2833,2834,2852,2900,3054,3061,3218,3256,3374,3463,3466,3467,3598,3599,3705,3798,3956,3971,3972,4062,4223,4226,4272,4300,4302,4303,4305,4435,4675,4690,4692,4694,4699,4704,4710,4711,5032,5036,5077,5140,5446,5766,6121,6202,6956,6960,6966,7000,7021,7589,7602,7650,7848,7890,7924,8194,8199,8656,8706,8875,9023,9024,9031,9186,9717,10079,10179,10185,10449,10880,10947,11165,11300,11311,11312,11318,11582,11894,12317,12319,12540,12958,13028,13120,13182,13191,13210,13259,13330,13355,13359,13388,13467,13494,13532,13649,13667,13673,13694,13698,13712,13713,13728,13761,13764,13776,13819,14016,14063,14067,14074,14082,14107,14201,14210,14350,14357,14379,14444,14445,14517,14523,14599,14650,14660,14668,14721,14766,14772,14780,14790,14818,14836,14859,14878,14918,15025,15091,15173,15215,15240,15264,15271,15373,15381,15441,15442,15585,15594,15620,15707,15714,15720,15730,15754,15834,15846,15859,15875,15877,16032,16104,16183,16190,16264,16308,16309,16332,16344,16459,16468,16485,16552,16606,16633,16636,16695,16722,16733,16742,16746,16818,16827,16841,16849,16891,16917,16928,16936,16947,16960,16978,16979,16981,17000,17004,17072,17088,17091,17109,17188,17189,17198,17208,17210,17213,17219,17224,17247,17249,17253,17265,17318,17328,17336,17341,17345,17351,17354,17355,17357,17359,17369,17370,17372,17377,17378,17380,17381,17416,17418,17424,17427,17428,17429,17431,17443,17449,17457,17458,17459,17464,17466,17467,17469,17473,17475,17476,17478,17487,17490,17507,17521,17528,17536,17694,17696,17702,17705,17707,17754,17780,17781,17918,17990,18058,18212,18214,18253,18258,18371,18401,18509,18544,18546,18548,18573,18602,18685,18710,18755,18791,18971,19052,19139,19197,19215,19224,19356,19362,19446,19601,19718,19721,19750,19751,19774,19780,19785,19787,19871,20075,20142,20145,20160,20169,20206,20226,20229,20255,20274,20390,20393,20469,20472,20474,20490,20493,20495,20498,20500,20503,20505,20506,20512,20519,20527,20530,20541,20544,20545,20547,20565,20579,20609,20610,20612,20616,20619,20621,20641,20647,20654,20657,20659,20670,20682,20683,20689,20698,20702,20707,20710,20725,20734,20744,20748,20750,20752,20756,20764,20827,20884,20887,20898,20899,20906,20908,20916,20922,20941,20946,20950,20953,20956,20958,20963,20972,20978,20994,21000,21009,21043,21049,21058,21072,21081,21085,21096,21102,21123,21134,21159,21166,21169,21178,21185,21191,21194,21201,21206,21225,21232,21244,21250,21261,21266,21282,21287,21290,21292,21304,21310,21315,21344,21346,21360,21369,21370,21371,21372,21373,21376,21396,21397,21400,21406,21408,21413,21427,21439,21445,21449,21463,21465,21481,21545,21579,21582,21590,21604,21624,21685,21977,21978,22031,22033,22174,22220,22244,22268,22303,22423,22565,22566,22579,22607,22638,22640,22656,22666,22745,22756,22765,22790,22804,22851,22903,22986,23000,23034,23046,23064,23128]]],["+",[30,30,[[0,3,3,0,3,[[5,1,1,0,1],[6,1,1,1,2],[7,1,1,2,3]]],[1,2,2,3,5,[[58,1,1,3,4],[61,1,1,4,5]]],[2,2,2,5,7,[[113,1,1,5,6],[116,1,1,6,7]]],[3,4,4,7,11,[[119,1,1,7,8],[147,3,3,8,11]]],[12,1,1,11,12,[[342,1,1,11,12]]],[17,2,2,12,14,[[451,1,1,12,13],[469,1,1,13,14]]],[18,4,4,14,18,[[539,1,1,14,15],[566,1,1,15,16],[612,1,1,16,17],[617,1,1,17,18]]],[19,1,1,18,19,[[657,1,1,18,19]]],[20,1,1,19,20,[[661,1,1,19,20]]],[22,3,3,20,23,[[684,1,1,20,21],[707,1,1,21,22],[722,1,1,22,23]]],[23,2,2,23,25,[[794,1,1,23,24],[795,1,1,24,25]]],[25,3,3,25,28,[[804,1,1,25,26],[824,1,1,26,27],[844,1,1,27,28]]],[27,1,1,28,29,[[870,1,1,28,29]]],[32,1,1,29,30,[[894,1,1,29,30]]]],[144,182,204,1767,1828,3463,3598,3705,4699,4704,4710,10449,13259,13713,14836,15373,16183,16264,17265,17372,17781,18214,18544,20169,20274,20512,21049,21579,22220,22607]]],["Adam",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5766]]],["Man",[4,4,[[17,1,1,0,1,[[449,1,1,0,1]]],[18,3,3,1,4,[[526,1,1,1,2],[581,1,1,2,3],[621,1,1,3,4]]]],[13182,14668,15594,16309]]],["another",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17467]]],["low",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14650]]],["man",[371,356,[[0,26,22,0,22,[[0,2,2,0,2],[1,10,8,2,10],[2,3,3,10,13],[4,1,1,13,14],[5,4,4,14,18],[6,1,1,18,19],[8,4,2,19,21],[15,1,1,21,22]]],[1,10,10,22,32,[[57,2,2,22,24],[58,4,4,24,28],[62,3,3,28,31],[82,1,1,31,32]]],[2,12,12,32,44,[[90,1,1,32,33],[94,2,2,33,35],[95,1,1,35,36],[96,1,1,36,37],[102,2,2,37,39],[105,1,1,39,40],[107,1,1,40,41],[111,1,1,41,42],[113,2,2,42,44]]],[3,11,11,44,55,[[124,1,1,44,45],[125,2,2,45,47],[134,1,1,47,48],[135,4,4,48,52],[139,1,1,52,53],[147,2,2,53,55]]],[4,4,3,55,58,[[156,1,1,55,56],[157,1,1,56,57],[160,2,1,57,58]]],[5,2,2,58,60,[[197,1,1,58,59],[200,1,1,59,60]]],[6,5,5,60,65,[[226,3,3,60,63],[228,2,2,63,65]]],[8,4,3,65,68,[[250,1,1,65,66],[251,2,1,66,67],[260,1,1,67,68]]],[9,2,2,68,70,[[273,1,1,68,69],[290,1,1,69,70]]],[10,2,2,70,72,[[298,2,2,70,72]]],[11,1,1,72,73,[[319,1,1,72,73]]],[12,3,3,73,76,[[354,1,1,73,74],[358,1,1,74,75],[366,1,1,75,76]]],[13,4,4,76,80,[[372,2,2,76,78],[385,1,1,78,79],[398,1,1,79,80]]],[15,3,3,80,83,[[414,2,2,80,82],[421,1,1,82,83]]],[17,22,22,83,105,[[440,1,1,83,84],[446,1,1,84,85],[449,1,1,85,86],[450,1,1,86,87],[455,2,2,87,89],[456,2,2,89,91],[460,1,1,91,92],[462,1,1,92,93],[463,1,1,93,94],[467,1,1,94,95],[468,2,2,95,97],[469,3,3,97,100],[470,1,1,100,101],[471,2,2,101,103],[472,1,1,103,104],[473,1,1,104,105]]],[18,23,23,105,128,[[485,1,1,105,106],[509,1,1,106,107],[513,1,1,107,108],[516,2,2,108,110],[526,1,1,110,111],[533,1,1,111,112],[535,1,1,112,113],[537,1,1,113,114],[553,1,1,114,115],[557,1,1,115,116],[561,2,2,116,118],[571,2,2,118,120],[581,1,1,120,121],[582,1,1,121,122],[585,1,1,122,123],[595,2,2,123,125],[596,1,1,125,126],[621,1,1,126,127],[623,1,1,127,128]]],[19,33,31,128,159,[[630,4,3,128,131],[635,2,2,131,133],[638,1,1,133,134],[639,3,3,134,137],[642,1,1,137,138],[643,1,1,138,139],[644,1,1,139,140],[646,3,3,140,143],[647,3,3,143,146],[648,2,2,146,148],[651,2,2,148,150],[654,3,2,150,152],[655,5,5,152,157],[656,1,1,157,158],[657,1,1,158,159]]],[20,36,33,159,192,[[659,2,2,159,161],[660,7,6,161,167],[661,4,4,167,171],[663,1,1,171,172],[664,5,4,172,176],[665,4,4,176,180],[666,6,5,180,185],[667,3,3,185,188],[668,1,1,188,189],[669,1,1,189,190],[670,2,2,190,192]]],[22,18,18,192,210,[[680,5,5,192,197],[683,1,1,197,198],[684,1,1,198,199],[691,1,1,199,200],[695,1,1,200,201],[709,1,1,201,202],[716,1,1,202,203],[722,2,2,203,205],[723,1,1,205,206],[725,1,1,206,207],[729,1,1,207,208],[734,1,1,208,209],[736,1,1,209,210]]],[23,21,20,210,230,[[746,1,1,210,211],[748,1,1,211,212],[751,1,1,212,213],[754,2,2,213,215],[760,1,1,215,216],[761,1,1,216,217],[765,1,1,217,218],[771,1,1,218,219],[775,2,2,219,221],[776,1,1,221,222],[777,3,2,222,224],[780,1,1,224,225],[793,2,2,225,227],[794,1,1,227,228],[795,2,2,228,230]]],[24,2,2,230,232,[[799,2,2,230,232]]],[25,113,111,232,343,[[802,4,4,232,236],[803,4,4,236,240],[804,5,5,240,245],[805,3,3,245,248],[806,1,1,248,249],[807,1,1,249,250],[808,1,1,250,251],[809,6,6,251,257],[811,2,2,257,259],[812,3,3,259,262],[813,6,6,262,268],[814,2,2,268,270],[815,6,5,270,275],[816,1,1,275,276],[817,1,1,276,277],[818,1,1,277,278],[821,7,7,278,285],[822,7,7,285,292],[823,3,3,292,295],[824,2,2,295,297],[825,3,3,297,300],[826,2,2,300,302],[827,1,1,302,303],[828,1,1,303,304],[829,5,4,304,308],[830,4,4,308,312],[831,2,2,312,314],[832,1,1,314,315],[833,3,3,315,318],[834,6,6,318,324],[835,1,1,324,325],[836,1,1,325,326],[837,3,3,326,329],[838,4,4,329,333],[839,2,2,333,335],[840,2,2,335,337],[841,1,1,337,338],[842,1,1,338,339],[844,2,2,339,341],[845,1,1,341,342],[848,1,1,342,343]]],[26,2,2,343,345,[[857,1,1,343,344],[859,1,1,344,345]]],[27,1,1,345,346,[[872,1,1,345,346]]],[29,1,1,346,347,[[882,1,1,346,347]]],[31,2,2,347,349,[[891,2,2,347,349]]],[32,1,1,349,350,[[898,1,1,349,350]]],[35,2,1,350,351,[[906,2,1,350,351]]],[37,4,4,351,355,[[918,1,1,351,352],[919,1,1,352,353],[922,1,1,353,354],[923,1,1,354,355]]],[38,1,1,355,356,[[927,1,1,355,356]]]],[25,26,35,37,38,45,46,48,52,55,67,77,79,106,140,142,143,144,180,210,211,393,1727,1728,1751,1752,1761,1764,1869,1880,1882,2493,2747,2833,2834,2852,2900,3054,3061,3218,3256,3374,3466,3467,3956,3971,3972,4272,4300,4302,4303,4305,4435,4690,4711,5036,5077,5140,6121,6202,6956,6960,6966,7000,7021,7589,7602,7890,8199,8706,9023,9031,9717,10880,10947,11165,11311,11318,11582,11894,12317,12319,12540,12958,13120,13191,13210,13330,13355,13359,13388,13467,13494,13532,13649,13667,13673,13694,13698,13712,13728,13761,13764,13776,13819,14016,14357,14444,14517,14523,14660,14766,14790,14818,15091,15215,15264,15271,15441,15442,15585,15620,15754,15875,15877,16032,16308,16344,16459,16468,16485,16606,16636,16695,16722,16742,16746,16827,16841,16891,16928,16936,16947,16978,16979,16981,17000,17004,17091,17109,17188,17189,17198,17208,17210,17213,17219,17249,17253,17318,17328,17345,17351,17354,17355,17357,17359,17370,17378,17380,17381,17416,17424,17427,17428,17429,17443,17449,17457,17458,17464,17466,17467,17473,17475,17476,17487,17490,17507,17521,17528,17536,17694,17696,17702,17705,17707,17754,17780,17918,17990,18258,18401,18546,18548,18573,18602,18685,18755,18791,18971,19052,19139,19215,19224,19356,19362,19446,19601,19718,19721,19774,19785,19787,19871,20145,20160,20206,20229,20255,20390,20393,20469,20472,20474,20490,20493,20495,20498,20500,20503,20505,20506,20519,20527,20530,20541,20545,20547,20565,20579,20609,20610,20612,20616,20619,20621,20647,20654,20657,20659,20670,20682,20683,20689,20698,20702,20707,20710,20725,20734,20744,20748,20750,20752,20756,20764,20827,20898,20899,20906,20908,20916,20922,20941,20946,20950,20953,20956,20958,20963,20972,20978,20994,21000,21009,21043,21058,21072,21081,21085,21096,21102,21123,21159,21166,21169,21178,21185,21191,21194,21201,21206,21225,21232,21250,21261,21266,21282,21287,21290,21292,21304,21310,21315,21346,21360,21370,21376,21400,21406,21408,21413,21427,21439,21449,21465,21481,21545,21582,21590,21604,21685,21978,22033,22244,22423,22565,22566,22656,22790,22986,23000,23046,23064,23128]]],["man's",[15,15,[[0,2,2,0,2,[[7,1,1,0,1],[8,1,1,1,2]]],[1,2,2,2,4,[[53,1,1,2,3],[79,1,1,3,4]]],[4,1,1,4,5,[[172,1,1,4,5]]],[8,1,1,5,6,[[252,1,1,5,6]]],[19,4,4,6,10,[[639,1,1,6,7],[643,1,1,7,8],[645,1,1,8,9],[656,1,1,9,10]]],[20,1,1,10,11,[[666,1,1,10,11]]],[25,3,3,11,14,[[805,1,1,11,12],[811,1,1,12,13],[840,1,1,13,14]]],[26,1,1,14,15,[[857,1,1,14,15]]]],[204,211,1612,2414,5446,7650,16733,16849,16917,17247,17459,20544,20641,21463,21977]]],["men",[103,102,[[0,4,4,0,4,[[5,3,3,0,3],[10,1,1,3,4]]],[2,1,1,4,5,[[116,1,1,4,5]]],[3,7,6,5,11,[[121,1,1,5,6],[128,1,1,6,7],[132,3,2,7,9],[134,1,1,9,10],[147,1,1,10,11]]],[8,1,1,11,12,[[261,1,1,11,12]]],[9,2,2,12,14,[[273,1,1,12,13],[289,1,1,13,14]]],[10,2,2,14,16,[[294,1,1,14,15],[298,1,1,15,16]]],[11,1,1,16,17,[[335,1,1,16,17]]],[13,2,2,17,19,[[372,2,2,17,19]]],[17,1,1,19,20,[[442,1,1,19,20]]],[18,29,29,20,49,[[488,1,1,20,21],[489,2,2,21,23],[491,1,1,23,24],[494,1,1,24,25],[498,1,1,25,26],[499,1,1,26,27],[508,1,1,27,28],[510,1,1,28,29],[513,1,1,29,30],[522,1,1,30,31],[530,1,1,31,32],[534,1,1,32,33],[535,1,1,33,34],[541,1,1,34,35],[543,1,1,35,36],[545,1,1,36,37],[550,1,1,37,38],[555,1,1,38,39],[559,1,1,39,40],[567,1,1,40,41],[584,4,4,41,45],[592,1,1,45,46],[593,1,1,46,47],[601,1,1,47,48],[622,1,1,48,49]]],[19,6,6,49,55,[[635,1,1,49,50],[642,1,1,50,51],[647,1,1,51,52],[650,1,1,52,53],[651,1,1,53,54],[655,1,1,54,55]]],[20,10,10,55,65,[[660,2,2,55,57],[661,3,3,57,60],[664,1,1,60,61],[665,1,1,61,62],[666,1,1,62,63],[667,2,2,63,65]]],[22,5,5,65,70,[[700,1,1,65,66],[707,1,1,66,67],[709,1,1,67,68],[721,1,1,68,69],[730,1,1,69,70]]],[23,7,7,70,77,[[753,1,1,70,71],[776,2,2,71,73],[777,1,1,73,74],[791,1,1,74,75],[793,1,1,75,76],[795,1,1,76,77]]],[25,12,12,77,89,[[820,2,2,77,79],[828,1,1,79,80],[832,1,1,80,81],[835,1,1,81,82],[837,6,6,82,88],[839,1,1,88,89]]],[26,1,1,89,90,[[859,1,1,89,90]]],[27,2,2,90,92,[[867,1,1,90,91],[874,1,1,91,92]]],[28,1,1,92,93,[[876,1,1,92,93]]],[32,3,3,93,96,[[897,2,2,93,95],[899,1,1,95,96]]],[34,1,1,96,97,[[903,1,1,96,97]]],[35,1,1,97,98,[[906,1,1,97,98]]],[36,1,1,98,99,[[909,1,1,98,99]]],[37,3,3,99,102,[[912,1,1,99,100],[918,1,1,100,101],[921,1,1,101,102]]]],[138,139,141,271,3599,3798,4062,4223,4226,4272,4675,7924,8194,8656,8875,9024,10179,11300,11312,13028,14063,14067,14074,14082,14107,14201,14210,14350,14379,14445,14599,14721,14772,14780,14859,14878,14918,15025,15173,15240,15381,15707,15714,15720,15730,15846,15859,16104,16332,16633,16818,16960,17072,17088,17224,17336,17341,17369,17377,17378,17418,17431,17469,17478,17487,18058,18212,18253,18509,18710,19197,19750,19751,19780,20075,20142,20226,20884,20887,21134,21244,21344,21369,21371,21372,21373,21396,21397,21445,22031,22174,22268,22303,22638,22640,22666,22745,22804,22851,22903,22986,23034]]],["men's",[10,10,[[4,1,1,0,1,[[156,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]],[10,1,1,2,3,[[303,1,1,2,3]]],[11,2,2,3,5,[[331,1,1,3,4],[335,1,1,4,5]]],[18,2,2,5,7,[[592,1,1,5,6],[612,1,1,6,7]]],[22,1,1,7,8,[[715,1,1,7,8]]],[34,2,2,8,10,[[904,2,2,8,10]]]],[5032,7848,9186,10079,10185,15834,16190,18371,22756,22765]]],["person",[2,2,[[19,1,1,0,1,[[633,1,1,0,1]]],[25,1,1,1,2,[[845,1,1,1,2]]]],[16552,21624]]],["persons",[3,3,[[3,2,2,0,2,[[147,2,2,0,2]]],[31,1,1,2,3,[[892,1,1,2,3]]]],[4692,4694,22579]]]]},{"k":"H121","v":[["*",[21,19,[[0,18,16,0,16,[[1,6,4,0,4],[2,5,5,4,9],[3,2,2,9,11],[4,5,5,11,16]]],[5,1,1,16,17,[[189,1,1,16,17]]],[12,1,1,17,18,[[338,1,1,17,18]]],[17,1,1,18,19,[[466,1,1,18,19]]]],[49,50,51,53,63,64,72,75,76,80,104,106,107,108,109,110,5909,10253,13621]]],["+",[1,1,[[5,1,1,0,1,[[189,1,1,0,1]]]],[5909]]],["Adam",[20,18,[[0,18,16,0,16,[[1,6,4,0,4],[2,5,5,4,9],[3,2,2,9,11],[4,5,5,11,16]]],[12,1,1,16,17,[[338,1,1,16,17]]],[17,1,1,17,18,[[466,1,1,17,18]]]],[49,50,51,53,63,64,72,75,76,80,104,106,107,108,109,110,10253,13621]]]]},{"k":"H122","v":[["*",[8,7,[[0,1,1,0,1,[[24,1,1,0,1]]],[3,1,1,1,2,[[135,1,1,1,2]]],[11,1,1,2,3,[[315,1,1,2,3]]],[21,1,1,3,4,[[675,1,1,3,4]]],[22,1,1,4,5,[[741,1,1,4,5]]],[37,3,2,5,7,[[911,2,1,5,6],[916,1,1,6,7]]]],[688,4291,9598,17608,18868,22886,22949]]],["red",[7,6,[[0,1,1,0,1,[[24,1,1,0,1]]],[3,1,1,1,2,[[135,1,1,1,2]]],[11,1,1,2,3,[[315,1,1,2,3]]],[22,1,1,3,4,[[741,1,1,3,4]]],[37,3,2,4,6,[[911,2,1,4,5],[916,1,1,5,6]]]],[688,4291,9598,18868,22886,22949]]],["ruddy",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17608]]]]},{"k":"H123","v":[["*",[99,92,[[0,13,12,0,12,[[24,1,1,0,1],[31,1,1,1,2],[35,11,10,2,12]]],[1,1,1,12,13,[[64,1,1,12,13]]],[3,9,9,13,22,[[136,5,5,13,18],[137,1,1,18,19],[140,1,1,19,20],[149,1,1,20,21],[150,1,1,21,22]]],[5,2,2,22,24,[[201,2,2,22,24]]],[6,4,3,24,27,[[215,1,1,24,25],[221,3,2,25,27]]],[8,1,1,27,28,[[249,1,1,27,28]]],[9,3,1,28,29,[[274,3,1,28,29]]],[10,6,5,29,34,[[299,1,1,29,30],[301,4,3,30,33],[312,1,1,33,34]]],[11,10,10,34,44,[[315,5,5,34,39],[320,3,3,39,42],[326,2,2,42,44]]],[12,7,6,44,50,[[338,3,3,44,47],[355,4,3,47,50]]],[13,6,6,50,56,[[374,1,1,50,51],[387,3,3,51,54],[391,2,2,54,56]]],[18,6,6,56,62,[[537,2,2,56,58],[560,1,1,58,59],[585,2,2,59,61],[614,1,1,61,62]]],[22,4,4,62,66,[[689,1,1,62,63],[712,2,2,63,65],[741,1,1,65,66]]],[23,8,8,66,74,[[753,1,1,66,67],[769,1,1,67,68],[771,1,1,68,69],[784,1,1,69,70],[793,4,4,70,74]]],[24,2,2,74,76,[[800,2,2,74,76]]],[25,7,6,76,82,[[826,4,3,76,79],[833,1,1,79,80],[836,1,1,80,81],[837,1,1,81,82]]],[26,1,1,82,83,[[860,1,1,82,83]]],[28,1,1,83,84,[[878,1,1,83,84]]],[29,5,5,84,89,[[879,3,3,84,87],[880,1,1,87,88],[887,1,1,88,89]]],[30,2,2,89,91,[[888,2,2,89,91]]],[38,1,1,91,92,[[925,1,1,91,92]]]],[688,931,1041,1048,1049,1056,1057,1059,1061,1071,1072,1083,1935,4325,4329,4331,4332,4334,4344,4464,4797,4819,6203,6223,6627,6846,6847,7555,8223,9077,9122,9123,9124,9527,9584,9585,9588,9596,9602,9747,9748,9749,9903,9906,10295,10303,10306,10901,10902,10903,11363,11632,11633,11634,11723,11724,14815,14816,15247,15751,15752,16229,17898,18308,18309,18867,19201,19555,19599,19952,20134,20144,20147,20149,20441,20442,21095,21096,21097,21277,21359,21364,22077,22362,22370,22373,22375,22380,22507,22511,22518,23093]]],["+",[4,4,[[12,1,1,0,1,[[355,1,1,0,1]]],[18,1,1,1,2,[[614,1,1,1,2]]],[22,1,1,2,3,[[741,1,1,2,3]]],[30,1,1,3,4,[[888,1,1,3,4]]]],[10901,16229,18867,22518]]],["Edom",[82,77,[[0,11,11,0,11,[[24,1,1,0,1],[31,1,1,1,2],[35,9,9,2,11]]],[1,1,1,11,12,[[64,1,1,11,12]]],[3,9,9,12,21,[[136,5,5,12,17],[137,1,1,17,18],[140,1,1,18,19],[149,1,1,19,20],[150,1,1,20,21]]],[5,2,2,21,23,[[201,2,2,21,23]]],[6,4,3,23,26,[[215,1,1,23,24],[221,3,2,24,26]]],[8,1,1,26,27,[[249,1,1,26,27]]],[9,3,1,27,28,[[274,3,1,27,28]]],[10,6,5,28,33,[[299,1,1,28,29],[301,4,3,29,32],[312,1,1,32,33]]],[11,9,9,33,42,[[315,5,5,33,38],[320,2,2,38,40],[326,2,2,40,42]]],[12,4,4,42,46,[[338,3,3,42,45],[355,1,1,45,46]]],[13,2,2,46,48,[[374,1,1,46,47],[391,1,1,47,48]]],[18,5,5,48,53,[[537,2,2,48,50],[560,1,1,50,51],[585,2,2,51,53]]],[22,1,1,53,54,[[689,1,1,53,54]]],[23,8,8,54,62,[[753,1,1,54,55],[769,1,1,55,56],[771,1,1,56,57],[784,1,1,57,58],[793,4,4,58,62]]],[24,2,2,62,64,[[800,2,2,62,64]]],[25,5,4,64,68,[[826,4,3,64,67],[833,1,1,67,68]]],[26,1,1,68,69,[[860,1,1,68,69]]],[28,1,1,69,70,[[878,1,1,69,70]]],[29,5,5,70,75,[[879,3,3,70,73],[880,1,1,73,74],[887,1,1,74,75]]],[30,1,1,75,76,[[888,1,1,75,76]]],[38,1,1,76,77,[[925,1,1,76,77]]]],[688,931,1041,1048,1056,1057,1059,1061,1071,1072,1083,1935,4325,4329,4331,4332,4334,4344,4464,4797,4819,6203,6223,6627,6846,6847,7555,8223,9077,9122,9123,9124,9527,9584,9585,9588,9596,9602,9747,9749,9903,9906,10295,10303,10306,10903,11363,11724,14815,14816,15247,15751,15752,17898,19201,19555,19599,19952,20134,20144,20147,20149,20441,20442,21095,21096,21097,21277,22077,22362,22370,22373,22375,22380,22507,22511,23093]]],["Edomites",[9,9,[[0,2,2,0,2,[[35,2,2,0,2]]],[11,1,1,2,3,[[320,1,1,2,3]]],[12,2,2,3,5,[[355,2,2,3,5]]],[13,4,4,5,9,[[387,3,3,5,8],[391,1,1,8,9]]]],[1049,1083,9748,10902,10903,11632,11633,11634,11723]]],["Idumea",[4,4,[[22,2,2,0,2,[[712,2,2,0,2]]],[25,2,2,2,4,[[836,1,1,2,3],[837,1,1,3,4]]]],[18308,18309,21359,21364]]]]},{"k":"H124","v":[["sardius",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[25,1,1,2,3,[[829,1,1,2,3]]]],[2310,2674,21170]]]]},{"k":"H125","v":[["reddish",[6,6,[[2,6,6,0,6,[[102,5,5,0,5],[103,1,1,5,6]]]],[3071,3076,3094,3095,3101,3148]]]]},{"k":"H126","v":[["Admah",[5,5,[[0,3,3,0,3,[[9,1,1,0,1],[13,2,2,1,3]]],[4,1,1,3,4,[[181,1,1,3,4]]],[27,1,1,4,5,[[872,1,1,4,5]]]],[253,338,344,5702,22248]]]]},{"k":"H127","v":[["*",[225,211,[[0,43,37,0,37,[[0,1,1,0,1],[1,5,5,1,6],[2,3,3,6,9],[3,6,6,9,15],[4,1,1,15,16],[5,3,3,16,19],[6,3,3,19,22],[7,3,3,22,25],[8,2,2,25,27],[11,1,1,27,28],[18,1,1,28,29],[27,2,2,29,31],[46,12,6,31,37]]],[1,9,9,37,46,[[52,1,1,37,38],[57,1,1,38,39],[59,1,1,39,40],[69,2,2,40,42],[72,1,1,42,43],[81,1,1,43,44],[82,1,1,44,45],[83,1,1,45,46]]],[2,2,2,46,48,[[109,2,2,46,48]]],[3,5,5,48,53,[[127,1,1,48,49],[128,1,1,49,50],[132,2,2,50,52],[148,1,1,52,53]]],[4,37,35,53,88,[[156,3,3,53,56],[157,1,1,56,57],[158,1,1,57,58],[159,3,2,58,60],[163,3,3,60,63],[164,2,2,63,65],[166,1,1,65,66],[173,2,2,66,68],[177,1,1,68,69],[178,3,3,69,72],[180,9,8,72,80],[181,1,1,80,81],[182,3,3,81,84],[183,2,2,84,86],[184,2,2,86,88]]],[5,2,2,88,90,[[209,2,2,88,90]]],[8,3,3,90,93,[[239,1,1,90,91],[255,2,2,91,93]]],[9,5,5,93,98,[[267,1,1,93,94],[275,1,1,94,95],[280,1,1,95,96],[281,1,1,96,97],[283,1,1,97,98]]],[10,8,8,98,106,[[297,1,1,98,99],[298,2,2,99,101],[299,1,1,101,102],[303,1,1,102,103],[304,1,1,103,104],[307,1,1,104,105],[308,1,1,105,106]]],[11,4,4,106,110,[[317,1,1,106,107],[329,1,1,107,108],[333,1,1,108,109],[337,1,1,109,110]]],[12,1,1,110,111,[[364,1,1,110,111]]],[13,6,6,111,117,[[370,1,1,111,112],[372,2,2,112,114],[373,1,1,114,115],[392,1,1,115,116],[399,1,1,116,117]]],[15,4,4,117,121,[[421,2,2,117,119],[422,2,2,119,121]]],[17,2,2,121,123,[[440,1,1,121,122],[466,1,1,122,123]]],[18,6,6,123,129,[[526,1,1,123,124],[560,1,1,124,125],[581,1,1,125,126],[582,1,1,126,127],[614,1,1,127,128],[623,1,1,128,129]]],[19,2,2,129,131,[[639,1,1,129,130],[655,1,1,130,131]]],[22,16,14,131,145,[[679,1,1,131,132],[684,1,1,132,133],[685,1,1,133,134],[692,2,2,134,136],[693,1,1,136,137],[697,1,1,137,138],[701,1,1,138,139],[702,2,1,139,140],[706,1,1,140,141],[708,3,2,141,143],[710,1,1,143,144],[723,1,1,144,145]]],[23,18,18,145,163,[[751,1,1,145,146],[752,1,1,146,147],[756,1,1,147,148],[758,1,1,148,149],[760,2,2,149,151],[767,1,1,151,152],[768,1,1,152,153],[769,3,3,153,156],[771,2,2,156,158],[772,1,1,158,159],[779,2,2,159,161],[786,1,1,161,162],[796,1,1,162,163]]],[25,28,27,163,190,[[808,1,1,163,164],[812,1,1,164,165],[813,2,2,165,167],[814,1,1,167,168],[819,1,1,168,169],[821,2,2,169,171],[822,2,2,171,173],[826,2,2,173,175],[829,1,1,175,176],[834,1,1,176,177],[835,2,2,177,179],[837,3,3,179,182],[838,3,3,182,185],[839,4,3,185,188],[840,2,2,188,190]]],[26,3,3,190,193,[[860,2,2,190,192],[861,1,1,192,193]]],[27,1,1,193,194,[[863,1,1,193,194]]],[28,2,2,194,196,[[876,1,1,194,195],[877,1,1,195,196]]],[29,10,7,196,203,[[881,2,2,196,198],[883,1,1,198,199],[885,4,2,199,201],[887,3,2,201,203]]],[31,1,1,203,204,[[892,1,1,203,204]]],[35,2,2,204,206,[[906,2,2,204,206]]],[36,1,1,206,207,[[909,1,1,206,207]]],[37,3,3,207,210,[[912,1,1,207,208],[919,1,1,208,209],[923,1,1,209,210]]],[38,1,1,210,211,[[927,1,1,210,211]]]],[24,35,36,37,39,49,72,74,78,81,82,89,90,91,93,134,138,144,157,163,167,182,191,196,204,207,225,301,482,787,788,1438,1439,1440,1442,1443,1446,1584,1731,1783,2063,2075,2163,2450,2489,2522,3342,3343,4036,4062,4224,4225,4729,5014,5022,5044,5069,5101,5117,5124,5217,5225,5229,5241,5259,5292,5448,5470,5562,5568,5576,5581,5615,5622,5629,5632,5644,5653,5662,5674,5707,5717,5726,5728,5741,5748,5801,5805,6473,6475,7309,7745,7761,8024,8237,8363,8421,8461,8980,9019,9025,9058,9218,9233,9331,9342,9664,10006,10127,10243,11135,11263,11307,11313,11344,11742,11916,12512,12536,12584,12586,12957,13626,14659,15251,15601,15641,16226,16345,16730,17215,17661,17780,17798,17929,17930,17969,18021,18094,18116,18188,18240,18241,18272,18570,19139,19155,19263,19297,19340,19351,19492,19534,19539,19560,19567,19606,19607,19634,19830,19838,19987,20303,20579,20672,20699,20702,20717,20851,20933,20937,20946,20947,21086,21089,21182,21304,21326,21340,21365,21376,21383,21409,21411,21418,21443,21444,21445,21474,21476,22045,22075,22083,22123,22301,22332,22397,22400,22425,22475,22481,22503,22510,22570,22789,22790,22851,22911,23015,23064,23131]]],["+",[3,3,[[0,1,1,0,1,[[8,1,1,0,1]]],[17,1,1,1,2,[[440,1,1,1,2]]],[37,1,1,2,3,[[923,1,1,2,3]]]],[225,12957,23064]]],["country",[1,1,[[31,1,1,0,1,[[892,1,1,0,1]]]],[22570]]],["earth",[53,51,[[0,11,11,0,11,[[0,1,1,0,1],[3,2,2,1,3],[5,3,3,3,6],[6,2,2,6,8],[8,1,1,8,9],[11,1,1,9,10],[27,1,1,10,11]]],[1,4,4,11,15,[[59,1,1,11,12],[69,1,1,12,13],[81,1,1,13,14],[82,1,1,14,15]]],[3,2,2,15,17,[[128,1,1,15,16],[132,1,1,16,17]]],[4,8,8,17,25,[[156,2,2,17,19],[158,1,1,19,20],[159,1,1,20,21],[164,2,2,21,23],[166,1,1,23,24],[178,1,1,24,25]]],[8,2,2,25,27,[[239,1,1,25,26],[255,1,1,26,27]]],[9,3,3,27,30,[[267,1,1,27,28],[280,1,1,28,29],[281,1,1,29,30]]],[10,3,3,30,33,[[303,1,1,30,31],[307,1,1,31,32],[308,1,1,32,33]]],[11,1,1,33,34,[[317,1,1,33,34]]],[15,1,1,34,35,[[421,1,1,34,35]]],[18,3,3,35,38,[[560,1,1,35,36],[581,1,1,36,37],[623,1,1,37,38]]],[22,5,4,38,42,[[701,1,1,38,39],[702,2,1,39,40],[708,1,1,40,41],[723,1,1,41,42]]],[23,4,4,42,46,[[752,1,1,42,43],[760,1,1,43,44],[769,1,1,44,45],[772,1,1,45,46]]],[25,2,1,46,47,[[839,2,1,46,47]]],[26,1,1,47,48,[[861,1,1,47,48]]],[29,3,3,48,51,[[881,2,2,48,50],[887,1,1,50,51]]]],[24,90,93,138,144,157,163,167,207,301,787,1783,2075,2450,2489,4062,4224,5014,5044,5101,5117,5241,5259,5292,5568,7309,7745,8024,8363,8421,9218,9331,9342,9664,12512,15251,15601,16345,18094,18116,18240,18570,19155,19340,19560,19634,21445,22083,22397,22400,22503]]],["ground",[42,42,[[0,18,18,0,18,[[1,5,5,0,5],[2,3,3,5,8],[3,4,4,8,12],[4,1,1,12,13],[6,1,1,13,14],[7,3,3,14,17],[18,1,1,17,18]]],[1,2,2,18,20,[[52,1,1,18,19],[57,1,1,19,20]]],[2,1,1,20,21,[[109,1,1,20,21]]],[3,1,1,21,22,[[132,1,1,21,22]]],[4,3,3,22,25,[[156,1,1,22,23],[180,2,2,23,25]]],[8,1,1,25,26,[[255,1,1,25,26]]],[9,1,1,26,27,[[283,1,1,26,27]]],[10,1,1,27,28,[[297,1,1,27,28]]],[12,1,1,28,29,[[364,1,1,28,29]]],[13,1,1,29,30,[[370,1,1,29,30]]],[15,2,2,30,32,[[422,2,2,30,32]]],[18,1,1,32,33,[[582,1,1,32,33]]],[22,3,3,33,36,[[706,1,1,33,34],[708,2,2,34,36]]],[23,3,3,36,39,[[751,1,1,36,37],[758,1,1,37,38],[769,1,1,38,39]]],[27,1,1,39,40,[[863,1,1,39,40]]],[36,1,1,40,41,[[909,1,1,40,41]]],[38,1,1,41,42,[[927,1,1,41,42]]]],[35,36,37,39,49,72,74,78,81,82,89,91,134,182,191,196,204,482,1584,1731,3343,4225,5022,5615,5622,7761,8461,8980,11135,11263,12584,12586,15641,18188,18240,18241,19139,19297,19567,22123,22851,23131]]],["husbandry",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11742]]],["land",[122,113,[[0,11,6,0,6,[[27,1,1,0,1],[46,10,5,1,6]]],[1,3,3,6,9,[[69,1,1,6,7],[72,1,1,7,8],[83,1,1,8,9]]],[2,1,1,9,10,[[109,1,1,9,10]]],[3,2,2,10,12,[[127,1,1,10,11],[148,1,1,11,12]]],[4,26,25,12,37,[[157,1,1,12,13],[159,2,1,13,14],[163,3,3,14,17],[173,2,2,17,19],[177,1,1,19,20],[178,2,2,20,22],[180,7,7,22,29],[181,1,1,29,30],[182,3,3,30,33],[183,2,2,33,35],[184,2,2,35,37]]],[5,2,2,37,39,[[209,2,2,37,39]]],[9,1,1,39,40,[[275,1,1,39,40]]],[10,4,4,40,44,[[298,2,2,40,42],[299,1,1,42,43],[304,1,1,43,44]]],[11,3,3,44,47,[[329,1,1,44,45],[333,1,1,45,46],[337,1,1,46,47]]],[13,4,4,47,51,[[372,2,2,47,49],[373,1,1,49,50],[399,1,1,50,51]]],[15,1,1,51,52,[[421,1,1,51,52]]],[17,1,1,52,53,[[466,1,1,52,53]]],[18,1,1,53,54,[[614,1,1,53,54]]],[19,2,2,54,56,[[639,1,1,54,55],[655,1,1,55,56]]],[22,8,8,56,64,[[679,1,1,56,57],[684,1,1,57,58],[685,1,1,58,59],[692,2,2,59,61],[693,1,1,61,62],[697,1,1,62,63],[710,1,1,63,64]]],[23,11,11,64,75,[[756,1,1,64,65],[760,1,1,65,66],[767,1,1,66,67],[768,1,1,67,68],[769,1,1,68,69],[771,2,2,69,71],[779,2,2,71,73],[786,1,1,73,74],[796,1,1,74,75]]],[25,26,26,75,101,[[808,1,1,75,76],[812,1,1,76,77],[813,2,2,77,79],[814,1,1,79,80],[819,1,1,80,81],[821,2,2,81,83],[822,2,2,83,85],[826,2,2,85,87],[829,1,1,87,88],[834,1,1,88,89],[835,2,2,89,91],[837,3,3,91,94],[838,3,3,94,97],[839,2,2,97,99],[840,2,2,99,101]]],[26,2,2,101,103,[[860,2,2,101,103]]],[28,2,2,103,105,[[876,1,1,103,104],[877,1,1,104,105]]],[29,7,4,105,109,[[883,1,1,105,106],[885,4,2,106,108],[887,2,1,108,109]]],[35,2,2,109,111,[[906,2,2,109,111]]],[37,2,2,111,113,[[912,1,1,111,112],[919,1,1,112,113]]]],[788,1439,1440,1442,1443,1446,2063,2163,2522,3342,4036,4729,5069,5124,5217,5225,5229,5448,5470,5562,5576,5581,5622,5629,5632,5644,5653,5662,5674,5707,5717,5726,5728,5741,5748,5801,5805,6473,6475,8237,9019,9025,9058,9233,10006,10127,10243,11307,11313,11344,11916,12536,13626,16226,16730,17215,17661,17780,17798,17929,17930,17969,18021,18272,19263,19351,19492,19534,19539,19606,19607,19830,19838,19987,20303,20579,20672,20699,20702,20717,20851,20933,20937,20946,20947,21086,21089,21182,21304,21326,21340,21365,21376,21383,21409,21411,21418,21443,21444,21474,21476,22045,22075,22301,22332,22425,22475,22481,22510,22789,22790,22911,23015]]],["lands",[3,3,[[0,2,2,0,2,[[46,2,2,0,2]]],[18,1,1,2,3,[[526,1,1,2,3]]]],[1438,1442,14659]]]]},{"k":"H128","v":[["Adamah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6357]]]]},{"k":"H129","v":[["*",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[10,1,1,1,2,[[301,1,1,1,2]]]],[6354,9125]]],["Adami",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6354]]],["Edomites",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9125]]]]},{"k":"H130","v":[["*",[9,9,[[4,1,1,0,1,[[175,1,1,0,1]]],[8,4,4,1,5,[[256,1,1,1,2],[257,3,3,2,5]]],[10,2,2,5,7,[[301,2,2,5,7]]],[13,2,2,7,9,[[391,1,1,7,8],[394,1,1,8,9]]]],[5507,7779,7796,7805,7809,9109,9122,11718,11781]]],["Edomite",[6,6,[[4,1,1,0,1,[[175,1,1,0,1]]],[8,4,4,1,5,[[256,1,1,1,2],[257,3,3,2,5]]],[10,1,1,5,6,[[301,1,1,5,6]]]],[5507,7779,7796,7805,7809,9122]]],["Edomites",[3,3,[[10,1,1,0,1,[[301,1,1,0,1]]],[13,2,2,1,3,[[391,1,1,1,2],[394,1,1,2,3]]]],[9109,11718,11781]]]]},{"k":"H131","v":[["Adummim",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[204,1,1,1,2]]]],[6209,6310]]]]},{"k":"H132","v":[["*",[3,3,[[0,1,1,0,1,[[24,1,1,0,1]]],[8,2,2,1,3,[[251,1,1,1,2],[252,1,1,2,3]]]],[683,7607,7660]]],["red",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[683]]],["ruddy",[2,2,[[8,2,2,0,2,[[251,1,1,0,1],[252,1,1,1,2]]]],[7607,7660]]]]},{"k":"H133","v":[["Admatha",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12716]]]]},{"k":"H134","v":[["*",[56,39,[[1,50,33,0,33,[[75,12,5,0,5],[76,8,8,5,13],[84,2,2,13,15],[85,11,5,15,20],[87,14,10,20,30],[88,2,2,30,32],[89,1,1,32,33]]],[3,4,4,33,37,[[119,2,2,33,35],[120,2,2,35,37]]],[17,1,1,37,38,[[473,1,1,37,38]]],[21,1,1,38,39,[[675,1,1,38,39]]]],[2254,2256,2260,2267,2272,2282,2283,2284,2286,2287,2288,2289,2290,2542,2548,2590,2592,2596,2602,2604,2643,2644,2645,2647,2648,2650,2652,2660,2663,2664,2697,2704,2725,3728,3729,3774,3775,13799,17613]]],["foundations",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13799]]],["socket",[1,1,[[1,1,1,0,1,[[87,1,1,0,1]]]],[2660]]],["sockets",[54,38,[[1,49,33,0,33,[[75,12,5,0,5],[76,8,8,5,13],[84,2,2,13,15],[85,11,5,15,20],[87,13,10,20,30],[88,2,2,30,32],[89,1,1,32,33]]],[3,4,4,33,37,[[119,2,2,33,35],[120,2,2,35,37]]],[21,1,1,37,38,[[675,1,1,37,38]]]],[2254,2256,2260,2267,2272,2282,2283,2284,2286,2287,2288,2289,2290,2542,2548,2590,2592,2596,2602,2604,2643,2644,2645,2647,2648,2650,2652,2660,2663,2664,2697,2704,2725,3728,3729,3774,3775,17613]]]]},{"k":"H135","v":[["Addan",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12086]]]]},{"k":"H136","v":[["*",[438,423,[[0,9,9,0,9,[[14,2,2,0,2],[17,5,5,2,7],[18,1,1,7,8],[19,1,1,8,9]]],[1,6,5,9,14,[[53,2,2,9,11],[54,1,1,11,12],[64,1,1,12,13],[83,2,1,13,14]]],[3,1,1,14,15,[[130,1,1,14,15]]],[4,2,2,15,17,[[155,1,1,15,16],[161,1,1,16,17]]],[5,2,2,17,19,[[193,2,2,17,19]]],[6,4,4,19,23,[[216,2,2,19,21],[223,1,1,21,22],[226,1,1,22,23]]],[9,7,6,23,29,[[273,7,6,23,29]]],[10,5,5,29,34,[[292,1,1,29,30],[293,2,2,30,32],[298,1,1,32,33],[312,1,1,33,34]]],[11,2,2,34,36,[[319,1,1,34,35],[331,1,1,35,36]]],[14,1,1,36,37,[[412,1,1,36,37]]],[15,2,2,37,39,[[413,1,1,37,38],[416,1,1,38,39]]],[17,1,1,39,40,[[463,1,1,39,40]]],[18,54,54,40,94,[[479,1,1,40,41],[493,1,1,41,42],[499,1,1,42,43],[507,1,1,43,44],[512,3,3,44,47],[514,1,1,47,48],[515,3,3,48,51],[516,1,1,51,52],[517,1,1,52,53],[521,1,1,53,54],[528,1,1,54,55],[531,1,1,55,56],[532,1,1,56,57],[534,1,1,57,58],[536,1,1,58,59],[539,1,1,59,60],[543,1,1,60,61],[545,6,6,61,67],[546,1,1,67,68],[548,2,2,68,70],[550,2,2,70,72],[554,2,2,72,74],[555,1,1,74,75],[556,1,1,75,76],[563,7,7,76,83],[566,2,2,83,85],[567,2,2,85,87],[586,1,1,87,88],[587,1,1,88,89],[607,3,3,89,92],[617,1,1,92,93],[618,1,1,93,94]]],[22,47,47,94,141,[[681,3,3,94,97],[682,1,1,97,98],[684,3,3,98,101],[685,3,3,101,104],[686,1,1,104,105],[687,2,2,105,107],[688,3,3,107,110],[689,1,1,110,111],[699,2,2,111,113],[700,4,4,113,117],[703,1,1,117,118],[706,3,3,118,121],[707,1,1,121,122],[708,2,2,122,124],[715,1,1,124,125],[716,2,2,125,127],[718,1,1,127,128],[726,1,1,128,129],[727,2,2,129,131],[728,4,4,131,135],[730,1,1,135,136],[734,1,1,136,137],[739,2,2,137,139],[743,2,2,139,141]]],[23,14,13,141,154,[[745,1,1,141,142],[746,2,2,142,144],[748,1,1,144,145],[751,1,1,145,146],[758,1,1,146,147],[776,2,2,147,149],[788,1,1,149,150],[790,2,1,150,151],[793,1,1,151,152],[794,2,2,152,154]]],[24,14,13,154,167,[[797,3,2,154,156],[798,7,7,156,163],[799,4,4,163,167]]],[25,222,215,167,382,[[803,1,1,167,168],[804,2,2,168,170],[805,1,1,170,171],[806,4,4,171,175],[807,3,2,175,177],[808,2,2,177,179],[809,1,1,179,180],[810,1,1,180,181],[812,6,6,181,187],[813,6,5,187,192],[814,8,7,192,199],[815,9,9,199,208],[816,2,2,208,210],[817,11,11,210,221],[818,5,5,221,226],[819,7,7,226,233],[821,13,12,233,245],[822,6,6,245,251],[823,5,5,251,256],[824,7,7,256,263],[825,6,6,263,269],[826,9,8,269,277],[827,7,7,277,284],[828,1,1,284,285],[829,7,7,285,292],[830,6,6,292,298],[831,5,5,298,303],[832,3,3,303,306],[833,7,7,306,313],[834,5,5,313,318],[835,9,9,318,327],[836,4,4,327,331],[837,15,14,331,345],[838,6,6,345,351],[839,6,6,351,357],[840,9,9,357,366],[844,3,3,366,369],[845,5,5,369,374],[846,4,3,374,377],[847,2,2,377,379],[848,2,2,379,381],[849,1,1,381,382]]],[26,11,9,382,391,[[850,1,1,382,383],[858,10,8,383,391]]],[29,25,24,391,415,[[879,1,1,391,392],[881,4,4,392,396],[882,2,2,396,398],[883,2,2,398,400],[884,1,1,400,401],[885,8,7,401,408],[886,4,4,408,412],[887,3,3,412,415]]],[30,1,1,415,416,[[888,1,1,415,416]]],[32,2,1,416,417,[[893,2,1,416,417]]],[34,1,1,417,418,[[905,1,1,417,418]]],[35,1,1,418,419,[[906,1,1,418,419]]],[37,2,2,419,421,[[919,2,2,419,421]]],[38,2,2,421,423,[[925,2,2,421,423]]]],[362,368,427,451,454,455,456,475,499,1611,1614,1654,1937,2505,4125,4999,5183,5983,5984,6669,6676,6892,6977,8198,8199,8200,8202,8208,8209,8796,8826,8831,9038,9486,9713,10084,12255,12307,12373,13532,13949,14094,14234,14327,14427,14432,14433,14463,14499,14505,14512,14519,14542,14594,14706,14729,14741,14777,14801,14839,14891,14911,14917,14919,14920,14922,14932,14941,14981,14992,15040,15048,15095,15100,15178,15197,15287,15288,15289,15292,15293,15296,15299,15375,15376,15379,15395,15776,15791,16142,16143,16146,16270,16284,17722,17724,17725,17737,17770,17777,17780,17789,17796,17802,17814,17837,17846,17862,17873,17874,17895,18041,18051,18057,18064,18066,18067,18126,18166,18180,18186,18206,18232,18237,18376,18404,18406,18430,18630,18650,18658,18666,18667,18669,18671,18700,18761,18844,18854,18910,18912,18952,18984,18987,19037,19139,19306,19748,19756,20036,20055,20132,20191,20197,20324,20325,20333,20334,20337,20339,20350,20351,20352,20385,20390,20391,20412,20496,20513,20529,20543,20551,20553,20554,20557,20566,20574,20579,20582,20605,20630,20662,20663,20668,20671,20672,20676,20690,20699,20703,20705,20708,20711,20716,20717,20721,20724,20726,20728,20735,20737,20742,20745,20747,20749,20751,20752,20754,20760,20762,20765,20770,20776,20781,20785,20792,20798,20805,20810,20821,20825,20828,20834,20841,20844,20847,20852,20858,20872,20874,20878,20879,20881,20898,20900,20922,20925,20926,20928,20931,20934,20935,20939,20942,20944,20951,20953,20957,20968,20970,20972,20979,20988,20995,21004,21007,21029,21035,21039,21041,21042,21053,21056,21059,21062,21065,21070,21077,21080,21086,21089,21091,21095,21096,21097,21098,21099,21103,21105,21107,21114,21115,21119,21121,21124,21159,21163,21167,21169,21179,21181,21182,21186,21191,21196,21199,21202,21203,21206,21210,21214,21217,21226,21240,21245,21248,21251,21256,21259,21262,21264,21279,21280,21291,21297,21300,21305,21307,21315,21321,21323,21324,21328,21330,21333,21343,21344,21347,21350,21355,21358,21361,21362,21363,21364,21365,21366,21372,21373,21374,21381,21382,21391,21392,21396,21400,21402,21406,21409,21416,21418,21428,21435,21439,21442,21443,21446,21449,21453,21456,21458,21461,21465,21468,21473,21477,21590,21591,21599,21605,21608,21611,21614,21626,21639,21645,21648,21656,21671,21692,21702,21731,21739,21991,21992,21995,21997,22003,22004,22005,22007,22372,22402,22403,22406,22408,22412,22415,22426,22439,22458,22465,22466,22468,22469,22470,22471,22472,22482,22484,22490,22492,22496,22500,22503,22511,22581,22787,22794,23003,23013,23101,23103]]],["+",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22005]]],["God",[2,2,[[9,1,1,0,1,[[273,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[8202,22787]]],["LORD",[6,6,[[10,1,1,0,1,[[293,1,1,0,1]]],[18,2,2,1,3,[[507,1,1,1,2],[567,1,1,2,3]]],[22,1,1,3,4,[[716,1,1,3,4]]],[25,1,1,4,5,[[822,1,1,4,5]]],[38,1,1,5,6,[[925,1,1,5,6]]]],[8831,14327,15395,18404,20953,23101]]],["Lord",[428,413,[[0,9,9,0,9,[[14,2,2,0,2],[17,5,5,2,7],[18,1,1,7,8],[19,1,1,8,9]]],[1,6,5,9,14,[[53,2,2,9,11],[54,1,1,11,12],[64,1,1,12,13],[83,2,1,13,14]]],[3,1,1,14,15,[[130,1,1,14,15]]],[4,2,2,15,17,[[155,1,1,15,16],[161,1,1,16,17]]],[5,2,2,17,19,[[193,2,2,17,19]]],[6,4,4,19,23,[[216,2,2,19,21],[223,1,1,21,22],[226,1,1,22,23]]],[9,6,5,23,28,[[273,6,5,23,28]]],[10,4,4,28,32,[[292,1,1,28,29],[293,1,1,29,30],[298,1,1,30,31],[312,1,1,31,32]]],[11,2,2,32,34,[[319,1,1,32,33],[331,1,1,33,34]]],[15,2,2,34,36,[[413,1,1,34,35],[416,1,1,35,36]]],[17,1,1,36,37,[[463,1,1,36,37]]],[18,52,52,37,89,[[479,1,1,37,38],[493,1,1,38,39],[499,1,1,39,40],[512,3,3,40,43],[514,1,1,43,44],[515,3,3,44,47],[516,1,1,47,48],[517,1,1,48,49],[521,1,1,49,50],[528,1,1,50,51],[531,1,1,51,52],[532,1,1,52,53],[534,1,1,53,54],[536,1,1,54,55],[539,1,1,55,56],[543,1,1,56,57],[545,6,6,57,63],[546,1,1,63,64],[548,2,2,64,66],[550,2,2,66,68],[554,2,2,68,70],[555,1,1,70,71],[556,1,1,71,72],[563,7,7,72,79],[566,2,2,79,81],[567,1,1,81,82],[586,1,1,82,83],[587,1,1,83,84],[607,3,3,84,87],[617,1,1,87,88],[618,1,1,88,89]]],[22,46,46,89,135,[[681,3,3,89,92],[682,1,1,92,93],[684,3,3,93,96],[685,3,3,96,99],[686,1,1,99,100],[687,2,2,100,102],[688,3,3,102,105],[689,1,1,105,106],[699,2,2,106,108],[700,4,4,108,112],[703,1,1,112,113],[706,3,3,113,116],[707,1,1,116,117],[708,2,2,117,119],[715,1,1,119,120],[716,1,1,120,121],[718,1,1,121,122],[726,1,1,122,123],[727,2,2,123,125],[728,4,4,125,129],[730,1,1,129,130],[734,1,1,130,131],[739,2,2,131,133],[743,2,2,133,135]]],[23,14,13,135,148,[[745,1,1,135,136],[746,2,2,136,138],[748,1,1,138,139],[751,1,1,139,140],[758,1,1,140,141],[776,2,2,141,143],[788,1,1,143,144],[790,2,1,144,145],[793,1,1,145,146],[794,2,2,146,148]]],[24,14,13,148,161,[[797,3,2,148,150],[798,7,7,150,157],[799,4,4,157,161]]],[25,221,214,161,375,[[803,1,1,161,162],[804,2,2,162,164],[805,1,1,164,165],[806,4,4,165,169],[807,3,2,169,171],[808,2,2,171,173],[809,1,1,173,174],[810,1,1,174,175],[812,6,6,175,181],[813,6,5,181,186],[814,8,7,186,193],[815,9,9,193,202],[816,2,2,202,204],[817,11,11,204,215],[818,5,5,215,220],[819,7,7,220,227],[821,13,12,227,239],[822,5,5,239,244],[823,5,5,244,249],[824,7,7,249,256],[825,6,6,256,262],[826,9,8,262,270],[827,7,7,270,277],[828,1,1,277,278],[829,7,7,278,285],[830,6,6,285,291],[831,5,5,291,296],[832,3,3,296,299],[833,7,7,299,306],[834,5,5,306,311],[835,9,9,311,320],[836,4,4,320,324],[837,15,14,324,338],[838,6,6,338,344],[839,6,6,344,350],[840,9,9,350,359],[844,3,3,359,362],[845,5,5,362,367],[846,4,3,367,370],[847,2,2,370,372],[848,2,2,372,374],[849,1,1,374,375]]],[26,10,8,375,383,[[850,1,1,375,376],[858,9,7,376,383]]],[29,25,24,383,407,[[879,1,1,383,384],[881,4,4,384,388],[882,2,2,388,390],[883,2,2,390,392],[884,1,1,392,393],[885,8,7,393,400],[886,4,4,400,404],[887,3,3,404,407]]],[30,1,1,407,408,[[888,1,1,407,408]]],[32,2,1,408,409,[[893,2,1,408,409]]],[35,1,1,409,410,[[906,1,1,409,410]]],[37,2,2,410,412,[[919,2,2,410,412]]],[38,1,1,412,413,[[925,1,1,412,413]]]],[362,368,427,451,454,455,456,475,499,1611,1614,1654,1937,2505,4125,4999,5183,5983,5984,6669,6676,6892,6977,8198,8199,8200,8208,8209,8796,8826,9038,9486,9713,10084,12307,12373,13532,13949,14094,14234,14427,14432,14433,14463,14499,14505,14512,14519,14542,14594,14706,14729,14741,14777,14801,14839,14891,14911,14917,14919,14920,14922,14932,14941,14981,14992,15040,15048,15095,15100,15178,15197,15287,15288,15289,15292,15293,15296,15299,15375,15376,15379,15776,15791,16142,16143,16146,16270,16284,17722,17724,17725,17737,17770,17777,17780,17789,17796,17802,17814,17837,17846,17862,17873,17874,17895,18041,18051,18057,18064,18066,18067,18126,18166,18180,18186,18206,18232,18237,18376,18406,18430,18630,18650,18658,18666,18667,18669,18671,18700,18761,18844,18854,18910,18912,18952,18984,18987,19037,19139,19306,19748,19756,20036,20055,20132,20191,20197,20324,20325,20333,20334,20337,20339,20350,20351,20352,20385,20390,20391,20412,20496,20513,20529,20543,20551,20553,20554,20557,20566,20574,20579,20582,20605,20630,20662,20663,20668,20671,20672,20676,20690,20699,20703,20705,20708,20711,20716,20717,20721,20724,20726,20728,20735,20737,20742,20745,20747,20749,20751,20752,20754,20760,20762,20765,20770,20776,20781,20785,20792,20798,20805,20810,20821,20825,20828,20834,20841,20844,20847,20852,20858,20872,20874,20878,20879,20881,20898,20900,20922,20925,20926,20928,20931,20934,20935,20939,20942,20944,20951,20957,20968,20970,20972,20979,20988,20995,21004,21007,21029,21035,21039,21041,21042,21053,21056,21059,21062,21065,21070,21077,21080,21086,21089,21091,21095,21096,21097,21098,21099,21103,21105,21107,21114,21115,21119,21121,21124,21159,21163,21167,21169,21179,21181,21182,21186,21191,21196,21199,21202,21203,21206,21210,21214,21217,21226,21240,21245,21248,21251,21256,21259,21262,21264,21279,21280,21291,21297,21300,21305,21307,21315,21321,21323,21324,21328,21330,21333,21343,21344,21347,21350,21355,21358,21361,21362,21363,21364,21365,21366,21372,21373,21374,21381,21382,21391,21392,21396,21400,21402,21406,21409,21416,21418,21428,21435,21439,21442,21443,21446,21449,21453,21456,21458,21461,21465,21468,21473,21477,21590,21591,21599,21605,21608,21611,21614,21626,21639,21645,21648,21656,21671,21692,21702,21731,21739,21991,21992,21995,21997,22003,22004,22007,22372,22402,22403,22406,22408,22412,22415,22426,22439,22458,22465,22466,22468,22469,22470,22471,22472,22482,22484,22490,22492,22496,22500,22503,22511,22581,22794,23003,23013,23103]]],["lord",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12255]]]]},{"k":"H137","v":[["Adonibezek",[3,3,[[6,3,3,0,3,[[211,3,3,0,3]]]],[6514,6515,6516]]]]},{"k":"H138","v":[["Adonijah",[26,26,[[9,1,1,0,1,[[269,1,1,0,1]]],[10,22,22,1,23,[[291,15,15,1,16],[292,7,7,16,23]]],[12,1,1,23,24,[[340,1,1,23,24]]],[13,1,1,24,25,[[383,1,1,24,25]]],[15,1,1,25,26,[[422,1,1,25,26]]]],[8085,8722,8724,8725,8726,8728,8730,8735,8741,8742,8758,8759,8760,8766,8767,8768,8783,8789,8791,8792,8793,8794,8798,10363,11531,12565]]]]},{"k":"H139","v":[["Adonizedek",[2,2,[[5,2,2,0,2,[[196,2,2,0,2]]]],[6065,6067]]]]},{"k":"H140","v":[["Adonikam",[3,3,[[14,2,2,0,2,[[404,1,1,0,1],[410,1,1,1,2]]],[15,1,1,2,3,[[419,1,1,2,3]]]],[12040,12214,12438]]]]},{"k":"H141","v":[["Adoniram",[2,2,[[10,2,2,0,2,[[294,1,1,0,1],[295,1,1,1,2]]]],[8850,8892]]]]},{"k":"H142","v":[["*",[3,3,[[1,2,2,0,2,[[64,2,2,0,2]]],[22,1,1,2,3,[[720,1,1,2,3]]]],[1926,1931,18501]]],["glorious",[2,2,[[1,2,2,0,2,[[64,2,2,0,2]]]],[1926,1931]]],["honourable",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18501]]]]},{"k":"H143","v":[["Adar",[8,8,[[16,8,8,0,8,[[428,2,2,0,2],[433,1,1,2,3],[434,5,5,3,8]]]],[12754,12760,12829,12835,12849,12851,12853,12855]]]]},{"k":"H144","v":[["Adar",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12166]]]]},{"k":"H145","v":[["*",[2,2,[[32,1,1,0,1,[[894,1,1,0,1]]],[37,1,1,1,2,[[921,1,1,1,2]]]],[22603,23041]]],["goodly",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23041]]],["robe",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22603]]]]},{"k":"H146","v":[["*",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[12,1,1,1,2,[[345,1,1,1,2]]]],[6205,10578]]],["Adar",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6205]]],["Addar",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10578]]]]},{"k":"H147","v":[["threshingfloors",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21793]]]]},{"k":"H148","v":[["judges",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21809,21810]]]]},{"k":"H149","v":[["diligently",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12196]]]]},{"k":"H150","v":[["drams",[2,2,[[12,1,1,0,1,[[366,1,1,0,1]]],[14,1,1,1,2,[[410,1,1,1,2]]]],[11171,12228]]]]},{"k":"H151","v":[["Adoram",[2,2,[[9,1,1,0,1,[[286,1,1,0,1]]],[10,1,1,1,2,[[302,1,1,1,2]]]],[8578,9169]]]]},{"k":"H152","v":[["Adrammelech",[3,3,[[11,2,2,0,2,[[329,1,1,0,1],[331,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]]],[10014,10098,18390]]]]},{"k":"H153","v":[["force",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12133]]]]},{"k":"H154","v":[["Edrei",[8,8,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,3,3,1,4,[[153,1,1,1,2],[155,2,2,2,4]]],[5,4,4,4,8,[[198,1,1,4,5],[199,2,2,5,7],[205,1,1,7,8]]]],[4373,4896,4976,4985,6134,6166,6185,6358]]]]},{"k":"H155","v":[["*",[12,12,[[0,1,1,0,1,[[24,1,1,0,1]]],[5,2,2,1,3,[[193,2,2,1,3]]],[10,2,2,3,5,[[309,2,2,3,5]]],[11,3,3,5,8,[[314,3,3,5,8]]],[25,1,1,8,9,[[818,1,1,8,9]]],[31,1,1,9,10,[[891,1,1,9,10]]],[37,2,2,10,12,[[921,1,1,10,11],[923,1,1,11,12]]]],[683,5997,6000,9400,9406,9559,9564,9565,20833,22564,23031,23063]]],["garment",[4,4,[[0,1,1,0,1,[[24,1,1,0,1]]],[5,2,2,1,3,[[193,2,2,1,3]]],[37,1,1,3,4,[[923,1,1,3,4]]]],[683,5997,6000,23063]]],["glory",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23031]]],["goodly",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20833]]],["mantle",[5,5,[[10,2,2,0,2,[[309,2,2,0,2]]],[11,3,3,2,5,[[314,3,3,2,5]]]],[9400,9406,9559,9564,9565]]],["robe",[1,1,[[31,1,1,0,1,[[891,1,1,0,1]]]],[22564]]]]},{"k":"H156","v":[]},{"k":"H157","v":[["*",[212,199,[[0,14,13,0,13,[[21,1,1,0,1],[23,1,1,1,2],[24,2,1,2,3],[26,3,3,3,6],[28,3,3,6,9],[33,1,1,9,10],[36,2,2,10,12],[43,1,1,12,13]]],[1,2,2,13,15,[[69,1,1,13,14],[70,1,1,14,15]]],[2,2,2,15,17,[[108,2,2,15,17]]],[4,22,21,17,38,[[156,1,1,17,18],[157,1,1,18,19],[158,1,1,19,20],[159,2,2,20,22],[162,4,4,22,26],[163,3,3,26,29],[165,1,1,29,30],[167,1,1,30,31],[171,1,1,31,32],[173,3,2,32,34],[175,1,1,34,35],[182,3,3,35,38]]],[5,2,2,38,40,[[208,1,1,38,39],[209,1,1,39,40]]],[6,4,4,40,44,[[215,1,1,40,41],[224,1,1,41,42],[226,2,2,42,44]]],[7,1,1,44,45,[[235,1,1,44,45]]],[8,9,9,45,54,[[236,1,1,45,46],[251,1,1,46,47],[253,6,6,47,53],[255,1,1,53,54]]],[9,7,6,54,60,[[267,1,1,54,55],[278,1,1,55,56],[279,3,3,56,59],[285,2,1,59,60]]],[10,5,5,60,65,[[293,1,1,60,61],[295,1,1,61,62],[300,1,1,62,63],[301,2,2,63,65]]],[13,4,4,65,69,[[377,1,1,65,66],[385,1,1,66,67],[386,1,1,67,68],[392,1,1,68,69]]],[15,2,2,69,71,[[413,1,1,69,70],[425,1,1,70,71]]],[16,4,4,71,75,[[427,1,1,71,72],[430,2,2,72,74],[431,1,1,74,75]]],[17,1,1,75,76,[[454,1,1,75,76]]],[18,39,39,76,115,[[481,1,1,76,77],[482,1,1,77,78],[488,2,2,78,80],[503,1,1,80,81],[508,1,1,81,82],[510,1,1,82,83],[511,1,1,83,84],[514,1,1,84,85],[515,1,1,85,86],[517,1,1,86,87],[522,1,1,87,88],[524,1,1,88,89],[529,2,2,89,91],[546,1,1,91,92],[547,1,1,92,93],[555,1,1,93,94],[564,1,1,94,95],[565,1,1,95,96],[574,1,1,96,97],[576,1,1,97,98],[586,1,1,98,99],[593,1,1,99,100],[596,12,12,100,112],[599,1,1,112,113],[622,1,1,113,114],[623,1,1,114,115]]],[19,27,23,115,138,[[628,1,1,115,116],[630,1,1,116,117],[631,1,1,117,118],[635,4,3,118,121],[636,1,1,121,122],[639,2,1,122,123],[640,1,1,123,124],[641,1,1,124,125],[642,2,2,125,127],[643,1,1,127,128],[644,3,2,128,130],[645,2,2,130,132],[646,1,1,132,133],[647,1,1,133,134],[648,2,1,134,135],[649,1,1,135,136],[654,1,1,136,137],[656,1,1,137,138]]],[20,4,3,138,141,[[661,1,1,138,139],[663,2,1,139,140],[667,1,1,140,141]]],[21,7,7,141,148,[[671,3,3,141,144],[673,4,4,144,148]]],[22,9,9,148,157,[[679,1,1,148,149],[719,1,1,149,150],[721,1,1,150,151],[726,1,1,151,152],[734,2,2,152,154],[735,1,1,154,155],[739,1,1,155,156],[744,1,1,156,157]]],[23,10,10,157,167,[[746,1,1,157,158],[749,1,1,158,159],[752,1,1,159,160],[758,1,1,160,161],[764,2,2,161,163],[766,2,2,163,165],[774,1,1,165,166],[775,1,1,166,167]]],[24,2,2,167,169,[[797,2,2,167,169]]],[25,7,6,169,175,[[817,4,3,169,172],[824,3,3,172,175]]],[26,1,1,175,176,[[858,1,1,175,176]]],[27,16,14,176,190,[[863,5,5,176,181],[864,3,1,181,182],[865,1,1,182,183],[870,3,3,183,186],[871,1,1,186,187],[872,1,1,187,188],[873,1,1,188,189],[875,1,1,189,190]]],[29,2,2,190,192,[[882,1,1,190,191],[883,1,1,191,192]]],[32,2,2,192,194,[[895,1,1,192,193],[898,1,1,193,194]]],[37,3,3,194,197,[[918,2,2,194,196],[923,1,1,196,197]]],[38,4,2,197,199,[[925,3,1,197,198],[926,1,1,198,199]]]],[549,658,686,731,736,741,813,825,827,983,1086,1087,1344,2057,2082,3299,3315,5041,5063,5091,5120,5124,5198,5201,5204,5205,5209,5221,5230,5275,5335,5415,5462,5463,5505,5714,5724,5728,6431,6471,6654,6925,6953,6964,7205,7217,7616,7677,7679,7692,7696,7698,7704,7747,8045,8310,8318,8321,8332,8517,8819,8879,9088,9109,9110,11435,11578,11594,11742,12301,12697,12741,12789,12793,12806,13316,13967,13984,14064,14066,14281,14354,14371,14400,14478,14501,14541,14604,14629,14713,14714,14971,14975,15181,15303,15326,15488,15503,15772,15849,15945,15946,15995,16011,16017,16025,16030,16038,16057,16061,16063,16065,16095,16340,16349,16422,16467,16496,16619,16623,16638,16646,16720,16771,16792,16816,16819,16853,16890,16892,16922,16925,16933,16967,17001,17026,17175,17227,17367,17407,17484,17540,17541,17544,17572,17573,17574,17575,17677,18459,18509,18628,18759,18763,18773,18851,18932,18990,19089,19155,19303,19426,19428,19474,19476,19681,19694,20312,20329,20795,20798,20799,21012,21016,21029,21992,22110,22112,22115,22117,22118,22129,22151,22209,22218,22223,22236,22241,22259,22286,22415,22438,22610,22656,22993,22995,23065,23091,23114]]],["+",[37,36,[[0,5,4,0,4,[[24,2,1,0,1],[28,1,1,1,2],[33,1,1,2,3],[36,1,1,3,4]]],[1,1,1,4,5,[[70,1,1,4,5]]],[4,10,10,5,15,[[156,1,1,5,6],[158,1,1,6,7],[163,3,3,7,10],[165,1,1,10,11],[171,1,1,11,12],[182,3,3,12,15]]],[5,2,2,15,17,[[208,1,1,15,16],[209,1,1,16,17]]],[8,3,3,17,20,[[236,1,1,17,18],[253,2,2,18,20]]],[9,2,2,20,22,[[279,1,1,20,21],[285,1,1,21,22]]],[10,2,2,22,24,[[293,1,1,22,23],[300,1,1,23,24]]],[13,2,2,24,26,[[377,1,1,24,25],[392,1,1,25,26]]],[16,2,2,26,28,[[427,1,1,26,27],[431,1,1,27,28]]],[18,1,1,28,29,[[508,1,1,28,29]]],[21,5,5,29,34,[[671,1,1,29,30],[673,4,4,30,34]]],[22,1,1,34,35,[[734,1,1,34,35]]],[38,1,1,35,36,[[925,1,1,35,36]]]],[686,813,983,1086,2082,5041,5091,5209,5221,5230,5275,5415,5714,5724,5728,6431,6471,7217,7692,7696,8321,8517,8819,9088,11435,11742,12741,12806,14354,17544,17572,17573,17574,17575,18759,23091]]],["Love",[2,2,[[4,1,1,0,1,[[162,1,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]]],[5205,16967]]],["Lover",[1,1,[[18,1,1,0,1,[[565,1,1,0,1]]]],[15326]]],["beloved",[5,4,[[4,3,2,0,2,[[173,3,2,0,2]]],[15,1,1,2,3,[[425,1,1,2,3]]],[27,1,1,3,4,[[864,1,1,3,4]]]],[5462,5463,12697,22129]]],["friend",[4,4,[[13,1,1,0,1,[[386,1,1,0,1]]],[19,2,2,1,3,[[645,1,1,1,2],[654,1,1,2,3]]],[22,1,1,3,4,[[719,1,1,3,4]]]],[11594,16925,17175,18459]]],["friends",[7,7,[[9,1,1,0,1,[[285,1,1,0,1]]],[16,2,2,1,3,[[430,2,2,1,3]]],[19,1,1,3,4,[[641,1,1,3,4]]],[23,2,2,4,6,[[764,2,2,4,6]]],[37,1,1,6,7,[[923,1,1,6,7]]]],[8517,12789,12793,16792,19426,19428,23065]]],["liketh",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22415]]],["love",[60,58,[[0,2,2,0,2,[[26,1,1,0,1],[28,1,1,1,2]]],[1,1,1,2,3,[[69,1,1,2,3]]],[2,2,2,3,5,[[108,2,2,3,5]]],[4,5,5,5,10,[[157,1,1,5,6],[159,2,2,6,8],[162,2,2,8,10]]],[6,2,2,10,12,[[215,1,1,10,11],[226,1,1,11,12]]],[8,1,1,12,13,[[253,1,1,12,13]]],[10,1,1,13,14,[[301,1,1,13,14]]],[13,1,1,14,15,[[385,1,1,14,15]]],[15,1,1,15,16,[[413,1,1,15,16]]],[18,18,18,16,34,[[481,1,1,16,17],[482,1,1,17,18],[517,1,1,18,19],[546,1,1,19,20],[547,1,1,20,21],[574,1,1,21,22],[593,1,1,22,23],[596,9,9,23,32],[599,1,1,32,33],[622,1,1,33,34]]],[19,9,8,34,42,[[628,1,1,34,35],[631,1,1,35,36],[635,4,3,36,39],[636,1,1,39,40],[643,1,1,40,41],[645,1,1,41,42]]],[20,1,1,42,43,[[661,1,1,42,43]]],[21,2,2,43,45,[[671,2,2,43,45]]],[22,2,2,45,47,[[739,1,1,45,46],[744,1,1,46,47]]],[23,1,1,47,48,[[749,1,1,47,48]]],[26,1,1,48,49,[[858,1,1,48,49]]],[27,5,4,49,53,[[864,2,1,49,50],[865,1,1,50,51],[870,1,1,51,52],[875,1,1,52,53]]],[29,1,1,53,54,[[883,1,1,53,54]]],[32,2,2,54,56,[[895,1,1,54,55],[898,1,1,55,56]]],[37,2,2,56,58,[[918,2,2,56,58]]]],[731,827,2057,3299,3315,5063,5120,5124,5198,5201,6654,6964,7698,9110,11578,12301,13967,13984,14541,14971,14975,15488,15849,15995,16011,16017,16025,16030,16057,16061,16063,16065,16095,16340,16422,16496,16619,16623,16638,16646,16853,16922,17367,17540,17541,18851,18932,19089,21992,22129,22151,22223,22286,22438,22610,22656,22993,22995]]],["loved",[35,34,[[0,4,4,0,4,[[23,1,1,0,1],[26,1,1,1,2],[28,1,1,2,3],[36,1,1,3,4]]],[4,1,1,4,5,[[175,1,1,4,5]]],[6,1,1,5,6,[[226,1,1,5,6]]],[8,5,5,6,11,[[251,1,1,6,7],[253,3,3,7,10],[255,1,1,10,11]]],[9,3,3,11,14,[[278,1,1,11,12],[279,2,2,12,14]]],[10,1,1,14,15,[[301,1,1,14,15]]],[17,1,1,15,16,[[454,1,1,15,16]]],[18,6,6,16,22,[[503,1,1,16,17],[524,1,1,17,18],[555,1,1,18,19],[586,1,1,19,20],[596,2,2,20,22]]],[22,2,2,22,24,[[721,1,1,22,23],[726,1,1,23,24]]],[23,4,4,24,28,[[746,1,1,24,25],[752,1,1,25,26],[758,1,1,26,27],[775,1,1,27,28]]],[25,1,1,28,29,[[817,1,1,28,29]]],[27,3,3,29,32,[[870,2,2,29,31],[872,1,1,31,32]]],[38,3,2,32,34,[[925,2,1,32,33],[926,1,1,33,34]]]],[658,741,825,1087,5505,6953,7616,7677,7679,7704,7747,8310,8318,8332,9109,13316,14281,14629,15181,15772,15945,15946,18509,18628,18990,19155,19303,19694,20799,22209,22218,22241,23091,23114]]],["lovedst",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18773]]],["lovely",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8045]]],["lover",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8879]]],["lovers",[17,17,[[18,1,1,0,1,[[515,1,1,0,1]]],[23,3,3,1,4,[[766,2,2,1,3],[774,1,1,3,4]]],[24,2,2,4,6,[[797,2,2,4,6]]],[25,6,6,6,12,[[817,3,3,6,9],[824,3,3,9,12]]],[27,5,5,12,17,[[863,5,5,12,17]]]],[14501,19474,19476,19681,20312,20329,20795,20798,20799,21012,21016,21029,22110,22112,22115,22117,22118]]],["lovest",[6,6,[[0,1,1,0,1,[[21,1,1,0,1]]],[6,1,1,1,2,[[224,1,1,1,2]]],[18,3,3,2,5,[[522,1,1,2,3],[529,2,2,3,5]]],[20,1,1,5,6,[[667,1,1,5,6]]]],[549,6925,14604,14713,14714,17484]]],["loveth",[33,29,[[0,2,2,0,2,[[26,1,1,0,1],[43,1,1,1,2]]],[4,2,2,2,4,[[162,1,1,2,3],[167,1,1,3,4]]],[7,1,1,4,5,[[235,1,1,4,5]]],[18,9,9,5,14,[[488,2,2,5,7],[510,1,1,7,8],[511,1,1,8,9],[514,1,1,9,10],[564,1,1,10,11],[576,1,1,11,12],[596,1,1,12,13],[623,1,1,13,14]]],[19,14,11,14,25,[[630,1,1,14,15],[639,2,1,15,16],[640,1,1,16,17],[642,2,2,17,19],[644,3,2,19,21],[646,1,1,21,22],[648,2,1,22,23],[649,1,1,23,24],[656,1,1,24,25]]],[20,2,1,25,26,[[663,2,1,25,26]]],[22,1,1,26,27,[[679,1,1,26,27]]],[27,2,2,27,29,[[871,1,1,27,28],[873,1,1,28,29]]]],[736,1344,5204,5335,7205,14064,14066,14371,14400,14478,15303,15503,16038,16349,16467,16720,16771,16816,16819,16890,16892,16933,17001,17026,17227,17407,17677,22236,22259]]],["loving",[1,1,[[22,1,1,0,1,[[734,1,1,0,1]]]],[18763]]]]},{"k":"H158","v":[["*",[2,2,[[19,1,1,0,1,[[632,1,1,0,1]]],[27,1,1,1,2,[[869,1,1,1,2]]]],[16536,22203]]],["lovers",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22203]]],["loving",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16536]]]]},{"k":"H159","v":[["loves",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16593]]]]},{"k":"H160","v":[["*",[36,33,[[0,1,1,0,1,[[28,1,1,0,1]]],[4,1,1,1,2,[[159,1,1,1,2]]],[8,2,1,2,3,[[255,2,1,2,3]]],[9,3,2,3,5,[[267,2,1,3,4],[279,1,1,4,5]]],[13,2,2,5,7,[[368,1,1,5,6],[375,1,1,6,7]]],[18,2,2,7,9,[[586,2,2,7,9]]],[19,5,5,9,14,[[632,1,1,9,10],[637,1,1,10,11],[642,1,1,11,12],[644,1,1,12,13],[654,1,1,13,14]]],[20,2,2,14,16,[[667,2,2,14,16]]],[21,11,10,16,26,[[672,3,3,16,19],[673,2,2,19,21],[675,1,1,21,22],[677,1,1,22,23],[678,4,3,23,26]]],[22,1,1,26,27,[[741,1,1,26,27]]],[23,3,3,27,30,[[746,2,2,27,29],[775,1,1,29,30]]],[27,2,2,30,32,[[864,1,1,30,31],[872,1,1,31,32]]],[35,1,1,32,33,[[908,1,1,32,33]]]],[815,5119,7747,8048,8332,11222,11372,15759,15760,16536,16668,16824,16882,17174,17476,17481,17558,17559,17561,17576,17581,17606,17633,17644,17646,17647,18875,18967,18998,19694,22129,22244,22837]]],["+",[6,6,[[4,1,1,0,1,[[159,1,1,0,1]]],[9,2,2,1,3,[[267,1,1,1,2],[279,1,1,2,3]]],[13,2,2,3,5,[[368,1,1,3,4],[375,1,1,4,5]]],[19,1,1,5,6,[[654,1,1,5,6]]]],[5119,8048,8332,11222,11372,17174]]],["love",[28,27,[[0,1,1,0,1,[[28,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]],[18,2,2,2,4,[[586,2,2,2,4]]],[19,4,4,4,8,[[632,1,1,4,5],[637,1,1,5,6],[642,1,1,6,7],[644,1,1,7,8]]],[20,2,2,8,10,[[667,2,2,8,10]]],[21,11,10,10,20,[[672,3,3,10,13],[673,2,2,13,15],[675,1,1,15,16],[677,1,1,16,17],[678,4,3,17,20]]],[22,1,1,20,21,[[741,1,1,20,21]]],[23,3,3,21,24,[[746,2,2,21,23],[775,1,1,23,24]]],[27,2,2,24,26,[[864,1,1,24,25],[872,1,1,25,26]]],[35,1,1,26,27,[[908,1,1,26,27]]]],[815,8048,15759,15760,16536,16668,16824,16882,17476,17481,17558,17559,17561,17576,17581,17606,17633,17644,17646,17647,18875,18967,18998,19694,22129,22244,22837]]],["loved",[2,1,[[8,2,1,0,1,[[255,2,1,0,1]]]],[7747]]]]},{"k":"H161","v":[["Ohad",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]]],[1396,1670]]]]},{"k":"H162","v":[["*",[15,15,[[5,1,1,0,1,[[193,1,1,0,1]]],[6,2,2,1,3,[[216,1,1,1,2],[221,1,1,2,3]]],[11,3,3,3,6,[[315,1,1,3,4],[318,2,2,4,6]]],[23,4,4,6,10,[[745,1,1,6,7],[748,1,1,7,8],[758,1,1,8,9],[776,1,1,9,10]]],[25,4,4,10,14,[[805,1,1,10,11],[810,1,1,11,12],[812,1,1,12,13],[821,1,1,13,14]]],[28,1,1,14,15,[[876,1,1,14,15]]]],[5983,6676,6864,9586,9679,9689,18952,19037,19306,19748,20543,20630,20668,20944,22306]]],["Ah",[8,8,[[23,4,4,0,4,[[745,1,1,0,1],[748,1,1,1,2],[758,1,1,2,3],[776,1,1,3,4]]],[25,4,4,4,8,[[805,1,1,4,5],[810,1,1,5,6],[812,1,1,6,7],[821,1,1,7,8]]]],[18952,19037,19306,19748,20543,20630,20668,20944]]],["Alas",[7,7,[[5,1,1,0,1,[[193,1,1,0,1]]],[6,2,2,1,3,[[216,1,1,1,2],[221,1,1,2,3]]],[11,3,3,3,6,[[315,1,1,3,4],[318,2,2,4,6]]],[28,1,1,6,7,[[876,1,1,6,7]]]],[5983,6676,6864,9586,9679,9689,22306]]]]},{"k":"H163","v":[["Ahava",[3,3,[[14,3,3,0,3,[[410,3,3,0,3]]]],[12216,12222,12232]]]]},{"k":"H164","v":[["Ehud",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10545]]]]},{"k":"H165","v":[["be",[3,2,[[27,3,2,0,2,[[874,3,2,0,2]]]],[22276,22280]]]]},{"k":"H166","v":[["shineth",[1,1,[[17,1,1,0,1,[[460,1,1,0,1]]]],[13466]]]]},{"k":"H167","v":[["*",[4,4,[[0,2,2,0,2,[[12,2,2,0,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[22,1,1,3,4,[[691,1,1,3,4]]]],[330,336,7706,17926]]],["+",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7706]]],["tent",[3,3,[[0,2,2,0,2,[[12,2,2,0,2]]],[22,1,1,2,3,[[691,1,1,2,3]]]],[330,336,17926]]]]},{"k":"H168","v":[["*",[345,314,[[0,23,19,0,19,[[3,1,1,0,1],[8,2,2,1,3],[11,1,1,3,4],[12,2,2,4,6],[17,5,5,6,11],[23,1,1,11,12],[24,1,1,12,13],[25,1,1,13,14],[30,7,3,14,17],[32,1,1,17,18],[34,1,1,18,19]]],[1,62,54,19,73,[[65,1,1,19,20],[67,1,1,20,21],[75,7,7,21,28],[76,1,1,28,29],[77,1,1,29,30],[78,7,7,30,37],[79,5,5,37,42],[80,2,1,42,43],[82,11,5,43,48],[84,2,2,48,50],[85,4,4,50,54],[87,2,2,54,56],[88,4,4,56,60],[89,14,13,60,73]]],[2,44,42,73,115,[[90,3,3,73,76],[92,3,3,76,79],[93,8,6,79,85],[95,3,3,85,88],[97,5,5,88,93],[98,2,2,93,95],[99,2,2,95,97],[101,1,1,97,98],[103,3,3,98,101],[104,2,2,101,103],[105,6,6,103,109],[106,4,4,109,113],[108,1,1,113,114],[113,1,1,114,115]]],[3,76,70,115,185,[[117,1,1,115,116],[118,2,2,116,118],[119,6,4,118,122],[120,16,15,122,137],[122,3,3,137,140],[123,2,2,140,142],[124,6,6,142,148],[125,2,2,148,150],[126,1,1,150,151],[127,4,4,151,155],[128,3,3,155,158],[130,1,1,158,159],[132,7,7,159,166],[133,3,3,166,169],[134,9,8,169,177],[135,5,3,177,180],[136,1,1,180,181],[140,1,1,181,182],[141,1,1,182,183],[143,1,1,183,184],[147,1,1,184,185]]],[4,9,7,185,192,[[153,1,1,185,186],[157,1,1,186,187],[163,1,1,187,188],[168,1,1,188,189],[183,4,2,189,191],[185,1,1,191,192]]],[5,12,11,192,203,[[189,1,1,192,193],[193,5,4,193,197],[204,1,1,197,198],[205,1,1,198,199],[208,4,4,199,203]]],[6,13,12,203,215,[[214,5,5,203,208],[215,1,1,208,209],[216,1,1,209,210],[217,3,2,210,212],[218,1,1,212,213],[229,1,1,213,214],[230,1,1,214,215]]],[8,4,4,215,219,[[237,1,1,215,216],[239,1,1,216,217],[248,1,1,217,218],[252,1,1,218,219]]],[9,7,7,219,226,[[272,1,1,219,220],[273,1,1,220,221],[282,1,1,221,222],[284,1,1,222,223],[285,1,1,223,224],[286,2,2,224,226]]],[10,9,7,226,233,[[291,1,1,226,227],[292,3,3,227,230],[298,3,2,230,232],[302,2,1,232,233]]],[11,7,6,233,239,[[319,4,3,233,236],[320,1,1,236,237],[325,1,1,237,238],[326,1,1,238,239]]],[12,11,10,239,249,[[341,1,1,239,240],[342,1,1,240,241],[343,1,1,241,242],[346,3,3,242,245],[352,1,1,245,246],[353,1,1,246,247],[354,2,1,247,248],[360,1,1,248,249]]],[13,12,10,249,259,[[367,4,4,249,253],[371,2,1,253,254],[373,1,1,254,255],[376,2,1,255,256],[380,1,1,256,257],[390,1,1,257,258],[391,1,1,258,259]]],[17,14,14,259,273,[[440,1,1,259,260],[443,1,1,260,261],[446,1,1,261,262],[447,1,1,262,263],[450,1,1,263,264],[453,3,3,264,267],[454,1,1,267,268],[455,1,1,268,269],[456,1,1,269,270],[457,1,1,270,271],[464,1,1,271,272],[466,1,1,272,273]]],[18,18,18,273,291,[[492,1,1,273,274],[496,1,1,274,275],[504,2,2,275,277],[529,1,1,277,278],[538,1,1,278,279],[546,1,1,279,280],[555,4,4,280,284],[560,1,1,284,285],[561,1,1,285,286],[568,1,1,286,287],[583,1,1,287,288],[595,1,1,288,289],[597,1,1,289,290],[609,1,1,290,291]]],[19,1,1,291,292,[[641,1,1,291,292]]],[21,1,1,292,293,[[671,1,1,292,293]]],[22,5,5,293,298,[[694,1,1,293,294],[711,1,1,294,295],[716,1,1,295,296],[718,1,1,296,297],[732,1,1,297,298]]],[23,9,8,298,306,[[748,1,1,298,299],[750,1,1,299,300],[754,2,1,300,301],[774,1,1,301,302],[779,2,2,302,304],[781,1,1,304,305],[793,1,1,305,306]]],[24,1,1,306,307,[[798,1,1,306,307]]],[25,1,1,307,308,[[842,1,1,307,308]]],[26,1,1,308,309,[[860,1,1,308,309]]],[27,2,2,309,311,[[870,1,1,309,310],[873,1,1,310,311]]],[34,1,1,311,312,[[905,1,1,311,312]]],[37,1,1,312,313,[[922,1,1,312,313]]],[38,1,1,313,314,[[926,1,1,313,314]]]],[99,226,232,306,321,323,425,426,430,433,434,658,685,717,898,906,907,979,1032,1963,2006,2242,2244,2246,2247,2248,2249,2271,2293,2336,2340,2346,2347,2366,2368,2378,2380,2398,2400,2402,2408,2418,2427,2480,2481,2482,2483,2484,2542,2552,2580,2584,2585,2603,2641,2663,2696,2697,2702,2704,2709,2713,2714,2719,2726,2729,2731,2733,2736,2737,2739,2741,2742,2746,2748,2750,2780,2786,2791,2799,2800,2802,2809,2811,2813,2865,2875,2879,2920,2921,2948,2950,2952,2958,2976,2984,2986,3050,3119,3122,3134,3182,3197,3208,3217,3218,3221,3224,3234,3239,3240,3241,3244,3302,3449,3605,3660,3675,3699,3700,3717,3730,3746,3747,3758,3766,3768,3771,3773,3774,3776,3778,3780,3782,3784,3786,3790,3833,3836,3841,3855,3939,3948,3954,3958,3961,3963,3965,3980,3982,3991,4034,4040,4048,4050,4063,4064,4069,4118,4212,4213,4220,4221,4236,4237,4244,4248,4251,4252,4259,4260,4261,4263,4278,4279,4280,4288,4293,4303,4307,4317,4451,4477,4556,4718,4919,5083,5214,5349,5742,5743,5828,5907,5997,5998,5999,6000,6294,6372,6430,6432,6433,6434,6610,6616,6617,6619,6620,6647,6659,6702,6707,6730,7033,7062,7262,7307,7487,7672,8174,8186,8448,8495,8519,8555,8576,8756,8798,8799,8800,8989,9051,9167,9714,9715,9717,9748,9876,9908,10426,10438,10486,10634,10636,10638,10792,10821,10868,11015,11197,11198,11200,11207,11273,11334,11411,11490,11683,11726,12975,13051,13122,13134,13237,13282,13290,13291,13309,13352,13383,13412,13536,13619,14088,14172,14290,14291,14715,14823,14960,15164,15168,15173,15180,15247,15269,15405,15676,15884,16079,16154,16783,17542,17974,18299,18402,18442,18725,19047,19092,19221,19685,19830,19833,19884,20156,20336,21527,22081,22214,22261,22775,23052,23115]]],["+",[11,11,[[0,2,2,0,2,[[17,1,1,0,1],[30,1,1,1,2]]],[1,2,2,2,4,[[75,1,1,2,3],[85,1,1,3,4]]],[2,1,1,4,5,[[90,1,1,4,5]]],[5,1,1,5,6,[[189,1,1,5,6]]],[12,1,1,6,7,[[354,1,1,6,7]]],[17,2,2,7,9,[[453,1,1,7,8],[457,1,1,8,9]]],[18,1,1,9,10,[[529,1,1,9,10]]],[38,1,1,10,11,[[926,1,1,10,11]]]],[426,906,2246,2584,2746,5907,10868,13290,13412,14715,23115]]],["Tabernacle",[1,1,[[1,1,1,0,1,[[82,1,1,0,1]]]],[2480]]],["covering",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2242]]],["dwelling",[1,1,[[18,1,1,0,1,[[568,1,1,0,1]]]],[15405]]],["home",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7033]]],["place",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13051]]],["places",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13383]]],["tabernacle",[184,171,[[1,31,27,0,27,[[75,1,1,0,1],[76,1,1,1,2],[77,1,1,2,3],[78,7,7,3,10],[79,5,5,10,15],[80,2,1,15,16],[82,8,5,16,21],[84,1,1,21,22],[85,1,1,22,23],[87,2,2,23,25],[88,1,1,25,26],[89,1,1,26,27]]],[2,42,40,27,67,[[90,2,2,27,29],[92,3,3,29,32],[93,8,6,32,38],[95,3,3,38,41],[97,5,5,41,46],[98,2,2,46,48],[99,2,2,48,50],[101,1,1,50,51],[103,2,2,51,53],[104,2,2,53,55],[105,6,6,55,61],[106,4,4,61,65],[108,1,1,65,66],[113,1,1,66,67]]],[3,66,63,67,130,[[117,1,1,67,68],[118,2,2,68,70],[119,5,4,70,74],[120,16,15,74,89],[122,3,3,89,92],[123,2,2,92,94],[124,6,6,94,100],[125,1,1,100,101],[126,1,1,101,102],[127,3,3,102,105],[128,3,3,105,108],[130,1,1,108,109],[132,5,5,109,114],[133,3,3,114,117],[134,9,8,117,125],[135,1,1,125,126],[136,1,1,126,127],[141,1,1,127,128],[143,1,1,128,129],[147,1,1,129,130]]],[4,4,2,130,132,[[183,4,2,130,132]]],[5,2,2,132,134,[[204,1,1,132,133],[205,1,1,133,134]]],[8,1,1,134,135,[[237,1,1,134,135]]],[9,1,1,135,136,[[272,1,1,135,136]]],[10,6,5,136,141,[[291,1,1,136,137],[292,3,3,137,140],[298,2,1,140,141]]],[12,5,5,141,146,[[343,1,1,141,142],[346,3,3,142,145],[360,1,1,145,146]]],[13,6,5,146,151,[[367,3,3,146,149],[371,2,1,149,150],[390,1,1,150,151]]],[17,7,7,151,158,[[440,1,1,151,152],[453,2,2,152,154],[454,1,1,154,155],[455,1,1,155,156],[464,1,1,156,157],[466,1,1,157,158]]],[18,7,7,158,165,[[492,1,1,158,159],[496,1,1,159,160],[504,2,2,160,162],[538,1,1,162,163],[555,1,1,163,164],[609,1,1,164,165]]],[19,1,1,165,166,[[641,1,1,165,166]]],[22,2,2,166,168,[[694,1,1,166,167],[711,1,1,167,168]]],[23,1,1,168,169,[[754,1,1,168,169]]],[24,1,1,169,170,[[798,1,1,169,170]]],[25,1,1,170,171,[[842,1,1,170,171]]]],[2244,2293,2336,2340,2346,2347,2366,2368,2378,2380,2398,2400,2402,2408,2418,2427,2480,2481,2482,2483,2484,2552,2603,2641,2663,2702,2719,2748,2750,2780,2786,2791,2799,2800,2802,2809,2811,2813,2865,2875,2879,2920,2921,2948,2950,2952,2958,2976,2984,2986,3050,3122,3134,3182,3197,3208,3217,3218,3221,3224,3234,3239,3240,3241,3244,3302,3449,3605,3660,3675,3699,3700,3717,3730,3746,3747,3758,3766,3768,3771,3773,3774,3776,3778,3780,3782,3784,3786,3790,3833,3836,3841,3855,3939,3948,3954,3958,3961,3963,3965,3982,3991,4040,4048,4050,4063,4064,4069,4118,4212,4213,4236,4237,4244,4248,4251,4252,4259,4260,4261,4263,4278,4279,4280,4288,4293,4317,4477,4556,4718,5742,5743,6294,6372,7262,8174,8756,8798,8799,8800,8989,10486,10634,10636,10638,11015,11197,11200,11207,11273,11683,12975,13282,13291,13309,13352,13536,13619,14088,14172,14290,14291,14823,15180,16154,16783,17974,18299,19221,20336,21527]]],["tabernacles",[9,9,[[17,3,3,0,3,[[446,1,1,0,1],[447,1,1,1,2],[450,1,1,2,3]]],[18,3,3,3,6,[[555,1,1,3,4],[560,1,1,4,5],[595,1,1,5,6]]],[26,1,1,6,7,[[860,1,1,6,7]]],[27,2,2,7,9,[[870,1,1,7,8],[873,1,1,8,9]]]],[13122,13134,13237,15164,15247,15884,22081,22214,22261]]],["tent",[86,78,[[0,16,14,0,14,[[8,1,1,0,1],[11,1,1,1,2],[12,1,1,2,3],[17,4,4,3,7],[23,1,1,7,8],[25,1,1,8,9],[30,5,3,9,12],[32,1,1,12,13],[34,1,1,13,14]]],[1,26,25,14,39,[[67,1,1,14,15],[75,4,4,15,19],[82,2,2,19,21],[84,1,1,21,22],[85,2,2,22,24],[88,3,3,24,27],[89,13,12,27,39]]],[2,1,1,39,40,[[103,1,1,39,40]]],[3,7,5,40,45,[[119,1,1,40,41],[125,1,1,41,42],[127,1,1,42,43],[135,4,2,43,45]]],[5,5,4,45,49,[[193,5,4,45,49]]],[6,10,9,49,58,[[214,5,5,49,54],[215,1,1,54,55],[217,3,2,55,57],[230,1,1,57,58]]],[8,3,3,58,61,[[239,1,1,58,59],[248,1,1,59,60],[252,1,1,60,61]]],[9,5,5,61,66,[[273,1,1,61,62],[282,1,1,62,63],[284,1,1,63,64],[285,1,1,64,65],[286,1,1,65,66]]],[11,2,1,66,67,[[319,2,1,66,67]]],[12,3,3,67,70,[[352,1,1,67,68],[353,1,1,68,69],[354,1,1,69,70]]],[13,2,2,70,72,[[367,1,1,70,71],[391,1,1,71,72]]],[18,1,1,72,73,[[555,1,1,72,73]]],[22,3,3,73,76,[[716,1,1,73,74],[718,1,1,74,75],[732,1,1,75,76]]],[23,2,2,76,78,[[754,1,1,76,77],[781,1,1,77,78]]]],[226,306,321,425,430,433,434,658,717,898,906,907,979,1032,2006,2247,2248,2249,2271,2481,2483,2542,2580,2585,2696,2697,2704,2709,2713,2714,2726,2729,2731,2733,2736,2737,2739,2741,2742,3119,3717,3980,4034,4303,4307,5997,5998,5999,6000,6610,6616,6617,6619,6620,6647,6702,6707,7062,7307,7487,7672,8186,8448,8495,8519,8576,9715,10792,10821,10868,11198,11726,15173,18402,18442,18725,19221,19884]]],["tents",[49,47,[[0,5,5,0,5,[[3,1,1,0,1],[8,1,1,1,2],[12,1,1,2,3],[24,1,1,3,4],[30,1,1,4,5]]],[1,1,1,5,6,[[65,1,1,5,6]]],[3,3,3,6,9,[[132,2,2,6,8],[140,1,1,8,9]]],[4,5,5,9,14,[[153,1,1,9,10],[157,1,1,10,11],[163,1,1,11,12],[168,1,1,12,13],[185,1,1,13,14]]],[5,4,4,14,18,[[208,4,4,14,18]]],[6,2,2,18,20,[[216,1,1,18,19],[218,1,1,19,20]]],[9,1,1,20,21,[[286,1,1,20,21]]],[10,3,2,21,23,[[298,1,1,21,22],[302,2,1,22,23]]],[11,5,5,23,28,[[319,2,2,23,25],[320,1,1,25,26],[325,1,1,26,27],[326,1,1,27,28]]],[12,2,2,28,30,[[341,1,1,28,29],[342,1,1,29,30]]],[13,4,3,30,33,[[373,1,1,30,31],[376,2,1,31,32],[380,1,1,32,33]]],[18,5,5,33,38,[[546,1,1,33,34],[555,1,1,34,35],[561,1,1,35,36],[583,1,1,36,37],[597,1,1,37,38]]],[21,1,1,38,39,[[671,1,1,38,39]]],[23,6,6,39,45,[[748,1,1,39,40],[750,1,1,40,41],[774,1,1,41,42],[779,2,2,42,44],[793,1,1,44,45]]],[34,1,1,45,46,[[905,1,1,45,46]]],[37,1,1,46,47,[[922,1,1,46,47]]]],[99,232,323,685,906,1963,4220,4221,4451,4919,5083,5214,5349,5828,6430,6432,6433,6434,6659,6730,8555,9051,9167,9714,9717,9748,9876,9908,10426,10438,11334,11411,11490,14960,15168,15269,15676,16079,17542,19047,19092,19685,19830,19833,20156,22775,23052]]]]},{"k":"H169","v":[["Ohel",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10381]]]]},{"k":"H170","v":[["Aholah",[5,4,[[25,5,4,0,4,[[824,5,4,0,4]]]],[21011,21012,21043,21051]]]]},{"k":"H171","v":[["Aholiab",[5,5,[[1,5,5,0,5,[[80,1,1,0,1],[84,1,1,1,2],[85,2,2,2,4],[87,1,1,4,5]]]],[2426,2565,2567,2568,2656]]]]},{"k":"H172","v":[["Aholibah",[6,5,[[25,6,5,0,5,[[824,6,5,0,5]]]],[21011,21018,21029,21043,21051]]]]},{"k":"H173","v":[["Aholibamah",[8,7,[[0,7,6,0,6,[[35,7,6,0,6]]],[12,1,1,6,7,[[338,1,1,6,7]]]],[1042,1045,1054,1058,1065,1081,10304]]]]},{"k":"H174","v":[["aloes",[4,4,[[3,1,1,0,1,[[140,1,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]],[19,1,1,2,3,[[634,1,1,2,3]]],[21,1,1,3,4,[[674,1,1,3,4]]]],[4452,14605,16592,17596]]]]},{"k":"H175","v":[["*",[347,328,[[1,116,109,0,109,[[53,5,5,0,5],[54,3,3,5,8],[55,6,6,8,14],[56,11,10,14,24],[57,7,7,24,31],[58,2,2,31,33],[59,3,3,33,36],[60,1,1,36,37],[61,5,5,37,42],[64,1,1,42,43],[65,6,6,43,49],[66,2,2,49,51],[67,1,1,51,52],[68,1,1,52,53],[73,3,3,53,56],[76,1,1,56,57],[77,16,12,57,69],[78,17,16,69,85],[79,5,5,85,90],[80,1,1,90,91],[81,9,8,91,99],[83,2,2,99,101],[84,1,1,101,102],[87,1,1,102,103],[88,3,3,103,106],[89,3,3,106,109]]],[2,80,77,109,186,[[90,4,4,109,113],[91,3,3,113,116],[92,4,4,116,120],[95,6,6,120,126],[96,5,5,126,131],[97,15,13,131,144],[98,10,10,144,154],[99,9,8,154,162],[100,1,1,162,163],[102,2,2,163,165],[103,1,1,165,166],[104,1,1,166,167],[105,9,9,167,176],[106,1,1,176,177],[110,4,4,177,181],[111,3,3,181,184],[113,2,2,184,186]]],[3,101,97,186,283,[[117,3,3,186,189],[118,1,1,189,190],[119,12,12,190,202],[120,14,14,202,216],[122,1,1,216,217],[123,1,1,217,218],[124,9,8,218,226],[125,1,1,226,227],[126,1,1,227,228],[128,5,5,228,233],[129,1,1,233,234],[130,3,3,234,237],[131,1,1,237,238],[132,14,14,238,252],[133,4,4,252,256],[134,4,4,256,260],[135,1,1,260,261],[136,14,11,261,272],[141,2,2,272,274],[142,5,5,274,279],[143,1,1,279,280],[149,3,3,280,283]]],[4,4,3,283,286,[[161,2,1,283,284],[162,1,1,284,285],[184,1,1,285,286]]],[5,6,6,286,292,[[207,4,4,286,290],[210,2,2,290,292]]],[6,1,1,292,293,[[230,1,1,292,293]]],[8,2,2,293,295,[[247,2,2,293,295]]],[12,17,14,295,309,[[343,6,5,295,300],[349,1,1,300,301],[352,1,1,301,302],[360,4,3,302,305],[361,4,3,305,308],[364,1,1,308,309]]],[13,7,6,309,315,[[379,2,2,309,311],[392,1,1,311,312],[395,1,1,312,313],[397,1,1,313,314],[401,2,1,314,315]]],[14,1,1,315,316,[[409,1,1,315,316]]],[15,2,2,316,318,[[422,1,1,316,317],[424,1,1,317,318]]],[18,9,9,318,327,[[554,1,1,318,319],[576,1,1,319,320],[582,1,1,320,321],[583,1,1,321,322],[592,2,2,322,324],[595,1,1,324,325],[610,1,1,325,326],[612,1,1,326,327]]],[32,1,1,327,328,[[898,1,1,327,328]]]],[1615,1628,1629,1630,1631,1633,1636,1652,1668,1675,1678,1680,1681,1682,1686,1687,1691,1692,1693,1694,1695,1697,1704,1705,1715,1716,1718,1722,1726,1727,1735,1750,1769,1780,1785,1793,1816,1817,1844,1847,1859,1866,1940,1949,1953,1956,1957,1980,1981,1993,1995,2011,2050,2178,2186,2191,2293,2294,2295,2296,2297,2305,2322,2323,2328,2331,2333,2334,2336,2340,2341,2345,2346,2351,2355,2356,2357,2360,2362,2363,2364,2365,2368,2371,2380,2389,2390,2392,2401,2412,2430,2439,2440,2441,2443,2459,2460,2463,2473,2526,2527,2550,2654,2665,2691,2705,2719,2720,2738,2750,2752,2753,2756,2764,2765,2772,2780,2783,2786,2791,2858,2863,2865,2867,2869,2874,2889,2910,2912,2913,2914,2919,2923,2929,2930,2931,2935,2939,2940,2941,2944,2947,2948,2953,2954,2955,2960,2961,2962,2965,2971,2974,2975,2976,2978,2980,2981,2983,2985,2989,2993,2996,2998,3053,3054,3144,3169,3202,3203,3204,3207,3209,3210,3212,3222,3224,3237,3346,3362,3366,3369,3371,3373,3387,3449,3455,3607,3621,3648,3659,3693,3694,3695,3696,3698,3701,3702,3724,3730,3731,3740,3743,3744,3748,3758,3759,3760,3762,3770,3771,3776,3777,3780,3784,3788,3789,3846,3858,3941,3942,3950,3952,3958,3959,3960,3961,3971,3996,4060,4063,4064,4069,4070,4101,4110,4113,4134,4186,4197,4205,4210,4211,4212,4214,4231,4234,4235,4236,4237,4240,4241,4244,4247,4250,4252,4254,4258,4265,4277,4285,4290,4313,4317,4319,4321,4323,4334,4335,4336,4337,4339,4340,4478,4482,4490,4498,4548,4549,4553,4567,4761,4798,4799,5177,5192,5808,6385,6391,6394,6400,6481,6509,7082,7466,7468,10457,10503,10504,10508,10511,10747,10795,10996,11011,11015,11016,11034,11046,11126,11462,11463,11750,11812,11873,11980,12178,12587,12671,15113,15505,15632,15667,15840,15842,15872,16171,16194,22652]]],["+",[4,4,[[1,2,2,0,2,[[53,1,1,0,1],[78,1,1,1,2]]],[3,2,2,2,4,[[136,2,2,2,4]]]],[1629,2341,4337,4339]]],["Aaron",[311,297,[[1,105,101,0,101,[[53,4,4,0,4],[54,3,3,4,7],[55,5,5,7,12],[56,10,9,12,21],[57,7,7,21,28],[58,2,2,28,30],[59,3,3,30,33],[60,1,1,33,34],[61,5,5,34,39],[64,1,1,39,40],[65,6,6,40,46],[66,2,2,46,48],[67,1,1,48,49],[68,1,1,49,50],[73,3,3,50,53],[76,1,1,53,54],[77,11,10,54,64],[78,14,13,64,77],[79,5,5,77,82],[80,1,1,82,83],[81,9,8,83,91],[83,2,2,91,93],[84,1,1,93,94],[87,1,1,94,95],[88,3,3,95,98],[89,3,3,98,101]]],[2,62,59,101,160,[[90,1,1,101,102],[92,1,1,102,103],[95,6,6,103,109],[96,4,4,109,113],[97,10,8,113,121],[98,8,8,121,129],[99,9,8,129,137],[100,1,1,137,138],[102,2,2,138,140],[103,1,1,140,141],[104,1,1,141,142],[105,9,9,142,151],[106,1,1,151,152],[110,4,4,152,156],[111,3,3,156,159],[113,1,1,159,160]]],[3,97,95,160,255,[[117,3,3,160,163],[118,1,1,163,164],[119,12,12,164,176],[120,14,14,176,190],[122,1,1,190,191],[123,1,1,191,192],[124,9,8,192,200],[125,1,1,200,201],[126,1,1,201,202],[128,5,5,202,207],[129,1,1,207,208],[130,3,3,208,211],[131,1,1,211,212],[132,14,14,212,226],[133,2,2,226,228],[134,4,4,228,232],[135,1,1,232,233],[136,12,11,233,244],[141,2,2,244,246],[142,5,5,246,251],[143,1,1,251,252],[149,3,3,252,255]]],[4,4,3,255,258,[[161,2,1,255,256],[162,1,1,256,257],[184,1,1,257,258]]],[5,6,6,258,264,[[207,4,4,258,262],[210,2,2,262,264]]],[6,1,1,264,265,[[230,1,1,264,265]]],[8,2,2,265,267,[[247,2,2,265,267]]],[12,15,12,267,279,[[343,6,5,267,272],[352,1,1,272,273],[360,4,3,273,276],[361,4,3,276,279]]],[13,7,6,279,285,[[379,2,2,279,281],[392,1,1,281,282],[395,1,1,282,283],[397,1,1,283,284],[401,2,1,284,285]]],[14,1,1,285,286,[[409,1,1,285,286]]],[15,2,2,286,288,[[422,1,1,286,287],[424,1,1,287,288]]],[18,8,8,288,296,[[554,1,1,288,289],[576,1,1,289,290],[582,1,1,290,291],[583,1,1,291,292],[592,2,2,292,294],[595,1,1,294,295],[612,1,1,295,296]]],[32,1,1,296,297,[[898,1,1,296,297]]]],[1615,1628,1630,1631,1633,1636,1652,1668,1675,1678,1681,1682,1686,1687,1691,1692,1693,1694,1695,1704,1705,1715,1716,1718,1722,1726,1727,1735,1750,1769,1780,1785,1793,1816,1817,1844,1847,1859,1866,1940,1949,1953,1956,1957,1980,1981,1993,1995,2011,2050,2178,2186,2191,2293,2294,2295,2297,2305,2322,2323,2328,2331,2334,2336,2340,2345,2346,2351,2355,2356,2357,2360,2363,2365,2368,2371,2380,2389,2390,2392,2401,2412,2430,2439,2440,2441,2443,2459,2460,2463,2473,2526,2527,2550,2654,2665,2691,2705,2719,2720,2738,2752,2791,2858,2863,2865,2867,2869,2874,2889,2912,2913,2914,2919,2923,2931,2935,2939,2947,2948,2953,2954,2955,2960,2961,2962,2974,2975,2976,2978,2980,2981,2983,2985,2989,2993,2996,2998,3053,3054,3144,3169,3202,3203,3204,3207,3209,3210,3212,3222,3224,3237,3346,3362,3366,3369,3371,3373,3387,3449,3607,3621,3648,3659,3693,3694,3695,3696,3698,3701,3702,3724,3730,3731,3740,3743,3744,3748,3758,3759,3760,3762,3770,3771,3776,3777,3780,3784,3788,3789,3846,3858,3941,3942,3950,3952,3958,3959,3960,3961,3971,3996,4060,4063,4064,4069,4070,4101,4110,4113,4134,4186,4197,4205,4210,4211,4212,4214,4231,4234,4235,4236,4237,4240,4241,4244,4250,4252,4258,4265,4277,4285,4290,4313,4317,4319,4321,4323,4334,4335,4336,4337,4339,4340,4478,4482,4490,4498,4548,4549,4553,4567,4761,4798,4799,5177,5192,5808,6385,6391,6394,6400,6481,6509,7082,7466,7468,10457,10503,10504,10508,10511,10795,10996,11011,11015,11016,11034,11046,11462,11463,11750,11812,11873,11980,12178,12587,12671,15113,15505,15632,15667,15840,15842,15872,16194,22652]]],["Aaron's",[30,30,[[1,9,9,0,9,[[55,1,1,0,1],[56,1,1,1,2],[77,5,5,2,7],[78,2,2,7,9]]],[2,18,18,9,27,[[90,3,3,9,12],[91,3,3,12,15],[92,3,3,15,18],[96,1,1,18,19],[97,5,5,19,24],[98,2,2,24,26],[113,1,1,26,27]]],[3,2,2,27,29,[[133,2,2,27,29]]],[18,1,1,29,30,[[610,1,1,29,30]]]],[1680,1697,2294,2296,2323,2331,2333,2362,2364,2750,2753,2756,2764,2765,2772,2780,2783,2786,2910,2929,2930,2940,2941,2944,2965,2971,3455,4247,4254,16171]]],["Aaronites",[2,2,[[12,2,2,0,2,[[349,1,1,0,1],[364,1,1,1,2]]]],[10747,11126]]]]},{"k":"H176","v":[["*",[320,218,[[0,6,6,0,6,[[23,3,3,0,3],[30,1,1,3,4],[43,2,2,4,6]]],[1,35,25,6,31,[[53,4,1,6,7],[54,1,1,7,8],[68,1,1,8,9],[70,15,13,9,22],[71,11,6,22,28],[72,1,1,28,29],[77,1,1,29,30],[79,1,1,30,31]]],[2,136,72,31,103,[[90,2,2,31,33],[92,1,1,33,34],[93,2,2,34,36],[94,12,7,36,43],[95,8,4,43,47],[96,3,2,47,49],[100,3,1,49,50],[101,4,3,50,53],[102,48,20,53,73],[103,3,3,73,76],[104,5,5,76,81],[106,5,3,81,84],[107,3,2,84,86],[108,1,1,86,87],[109,3,2,87,89],[110,11,3,89,92],[111,14,6,92,98],[114,6,3,98,101],[115,1,1,101,102],[116,1,1,102,103]]],[3,44,30,103,133,[[121,3,3,103,106],[122,2,2,106,108],[125,6,3,108,111],[127,1,1,111,112],[130,1,1,112,113],[131,12,6,113,119],[134,2,1,119,120],[135,6,2,120,122],[138,1,1,122,123],[140,1,1,123,124],[146,4,4,124,128],[151,5,5,128,133]]],[4,34,24,133,157,[[156,3,3,133,136],[165,9,5,136,141],[166,1,1,141,142],[167,2,2,142,144],[169,7,5,144,149],[171,1,1,149,150],[174,5,3,150,153],[176,2,2,153,155],[179,1,1,155,156],[181,3,1,156,157]]],[5,1,1,157,158,[[193,1,1,157,158]]],[6,4,4,158,162,[[221,1,1,158,159],[228,1,1,159,160],[229,1,1,160,161],[231,1,1,161,162]]],[8,13,10,162,172,[[237,3,1,162,163],[248,1,1,163,164],[249,1,1,164,165],[255,2,2,165,167],[256,2,2,167,169],[257,1,1,169,170],[261,2,1,170,171],[264,1,1,171,172]]],[9,4,4,172,176,[[268,1,1,172,173],[269,1,1,173,174],[283,1,1,174,175],[284,1,1,175,176]]],[10,3,3,176,179,[[298,1,1,176,177],[310,1,1,177,178],[311,1,1,178,179]]],[11,4,4,179,183,[[314,1,1,179,180],[316,1,1,180,181],[318,1,1,181,182],[325,1,1,182,183]]],[13,1,1,183,184,[[372,1,1,183,184]]],[17,12,12,184,196,[[438,2,2,184,186],[447,1,1,186,187],[448,1,1,187,188],[451,1,1,188,189],[457,1,1,189,190],[470,1,1,190,191],[473,5,5,191,196]]],[19,2,2,196,198,[[657,1,1,196,197],[658,1,1,197,198]]],[20,2,2,198,200,[[660,1,1,198,199],[669,1,1,199,200]]],[21,5,5,200,205,[[672,3,3,200,203],[673,1,1,203,204],[678,1,1,204,205]]],[22,4,4,205,209,[[685,1,1,205,206],[705,1,1,206,207],[719,1,1,207,208],[728,1,1,208,209]]],[23,3,2,209,211,[[767,2,1,209,210],[784,1,1,210,211]]],[25,4,4,211,215,[[815,2,2,211,213],[822,1,1,213,214],[847,1,1,214,215]]],[29,1,1,215,216,[[881,1,1,215,216]]],[38,2,2,216,218,[[925,1,1,216,217],[926,1,1,217,218]]]],[640,641,646,916,1332,1343,1612,1635,2039,2081,2083,2095,2097,2098,2103,2104,2105,2106,2108,2109,2110,2113,2114,2118,2119,2120,2123,2127,2148,2336,2402,2755,2759,2784,2818,2823,2831,2832,2833,2834,2836,2837,2841,2851,2852,2853,2854,2895,2900,3029,3050,3051,3052,3054,3068,3071,3076,3081,3082,3090,3094,3095,3099,3100,3101,3103,3104,3105,3107,3108,3109,3110,3111,3133,3141,3148,3171,3182,3191,3193,3197,3238,3243,3248,3260,3261,3301,3335,3345,3363,3364,3365,3373,3374,3390,3391,3396,3397,3483,3516,3518,3565,3580,3798,3806,3822,3825,3833,3975,3986,3987,4032,4110,4156,4158,4159,4161,4164,4167,4274,4305,4307,4393,4459,4650,4654,4658,4662,4863,4865,4866,4867,4868,5020,5036,5038,5273,5275,5277,5278,5279,5311,5331,5340,5366,5367,5369,5370,5376,5421,5471,5474,5476,5528,5539,5607,5697,5979,6863,7012,7037,7124,7254,7504,7514,7732,7740,7775,7780,7802,7915,7970,8070,8116,8458,8491,9031,9447,9457,9567,9616,9701,9890,11318,12919,12920,13136,13175,13241,13400,13727,13798,13799,13821,13824,13829,17282,17288,17352,17519,17561,17563,17571,17576,17654,17793,18156,18473,18663,19517,19946,20748,20750,20954,21667,22407,23097,23120]]],["+",[13,9,[[1,3,3,0,3,[[70,3,3,0,3]]],[2,7,3,3,6,[[95,3,1,3,4],[102,3,1,4,5],[108,1,1,5,6]]],[3,1,1,6,7,[[146,1,1,6,7]]],[4,2,2,7,9,[[169,1,1,7,8],[174,1,1,8,9]]]],[2097,2103,2105,2853,3104,3301,4662,5369,5471]]],["Either",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3518]]],["Or",[27,27,[[1,1,1,0,1,[[70,1,1,0,1]]],[2,12,12,1,13,[[93,2,2,1,3],[94,3,3,3,6],[95,2,2,6,8],[102,2,2,8,10],[110,2,2,10,12],[111,1,1,12,13]]],[3,6,6,13,19,[[121,1,1,13,14],[125,1,1,14,15],[131,1,1,15,16],[151,3,3,16,19]]],[4,1,1,19,20,[[156,1,1,19,20]]],[17,4,4,20,24,[[438,2,2,20,22],[447,1,1,22,23],[457,1,1,23,24]]],[22,1,1,24,25,[[705,1,1,24,25]]],[25,2,2,25,27,[[815,2,2,25,27]]]],[2113,2818,2823,2832,2833,2834,2852,2854,3068,3076,3364,3365,3374,3822,3987,4159,4863,4866,4868,5038,12919,12920,13136,13400,18156,20748,20750]]],["Otherwise",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8491]]],["Whether",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[2,1,1,1,2,[[102,1,1,1,2]]]],[2108,3100]]],["also",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17282]]],["and",[2,2,[[21,2,2,0,2,[[672,1,1,0,1],[673,1,1,1,2]]]],[17561,17576]]],["either",[6,6,[[2,6,6,0,6,[[102,6,6,0,6]]]],[3101,3103,3105,3109,3110,3111]]],["if",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3565]]],["least",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[646]]],["nor",[2,2,[[6,1,1,0,1,[[221,1,1,0,1]]],[19,1,1,1,2,[[658,1,1,1,2]]]],[6863,17288]]],["or",[258,181,[[0,5,5,0,5,[[23,2,2,0,2],[30,1,1,2,3],[43,2,2,3,5]]],[1,30,21,5,26,[[53,4,1,5,6],[54,1,1,6,7],[68,1,1,7,8],[70,10,9,8,17],[71,11,6,17,23],[72,1,1,23,24],[77,1,1,24,25],[79,1,1,25,26]]],[2,105,63,26,89,[[90,2,2,26,28],[92,1,1,28,29],[94,7,6,29,35],[95,3,1,35,36],[96,3,2,36,38],[100,3,1,38,39],[101,4,3,39,42],[102,35,19,42,61],[103,3,3,61,64],[104,5,5,64,69],[106,5,3,69,72],[107,3,2,72,74],[109,3,2,74,76],[110,9,3,76,79],[111,13,6,79,85],[114,5,3,85,88],[116,1,1,88,89]]],[3,36,23,89,112,[[121,2,2,89,91],[122,2,2,91,93],[125,4,2,93,95],[127,1,1,95,96],[130,1,1,96,97],[131,11,5,97,102],[134,2,1,102,103],[135,6,2,103,105],[138,1,1,105,106],[140,1,1,106,107],[146,3,3,107,110],[151,2,2,110,112]]],[4,31,22,112,134,[[156,2,2,112,114],[165,9,5,114,119],[166,1,1,119,120],[167,2,2,120,122],[169,6,5,122,127],[171,1,1,127,128],[174,4,2,128,130],[176,2,2,130,132],[179,1,1,132,133],[181,3,1,133,134]]],[5,1,1,134,135,[[193,1,1,134,135]]],[6,3,3,135,138,[[228,1,1,135,136],[229,1,1,136,137],[231,1,1,137,138]]],[8,13,10,138,148,[[237,3,1,138,139],[248,1,1,139,140],[249,1,1,140,141],[255,2,2,141,143],[256,2,2,143,145],[257,1,1,145,146],[261,2,1,146,147],[264,1,1,147,148]]],[9,3,3,148,151,[[268,1,1,148,149],[269,1,1,149,150],[283,1,1,150,151]]],[10,3,3,151,154,[[298,1,1,151,152],[310,1,1,152,153],[311,1,1,153,154]]],[11,4,4,154,158,[[314,1,1,154,155],[316,1,1,155,156],[318,1,1,156,157],[325,1,1,157,158]]],[13,1,1,158,159,[[372,1,1,158,159]]],[17,8,8,159,167,[[448,1,1,159,160],[451,1,1,160,161],[470,1,1,161,162],[473,5,5,162,167]]],[20,2,2,167,169,[[660,1,1,167,168],[669,1,1,168,169]]],[21,3,3,169,172,[[672,2,2,169,171],[678,1,1,171,172]]],[22,3,3,172,175,[[685,1,1,172,173],[719,1,1,173,174],[728,1,1,174,175]]],[23,3,2,175,177,[[767,2,1,175,176],[784,1,1,176,177]]],[25,1,1,177,178,[[847,1,1,177,178]]],[29,1,1,178,179,[[881,1,1,178,179]]],[38,2,2,179,181,[[925,1,1,179,180],[926,1,1,180,181]]]],[640,641,916,1332,1343,1612,1635,2039,2081,2083,2095,2098,2104,2106,2108,2109,2110,2114,2118,2119,2120,2123,2127,2148,2336,2402,2755,2759,2784,2831,2832,2834,2836,2837,2841,2851,2895,2900,3029,3050,3051,3052,3054,3071,3076,3081,3082,3090,3094,3095,3099,3100,3101,3103,3104,3105,3107,3108,3109,3110,3111,3133,3141,3148,3171,3182,3191,3193,3197,3238,3243,3248,3260,3261,3335,3345,3363,3364,3365,3373,3374,3390,3391,3396,3397,3483,3516,3518,3580,3798,3806,3825,3833,3975,3987,4032,4110,4156,4158,4161,4164,4167,4274,4305,4307,4393,4459,4650,4654,4658,4865,4867,5020,5036,5273,5275,5277,5278,5279,5311,5331,5340,5366,5367,5369,5370,5376,5421,5474,5476,5528,5539,5607,5697,5979,7012,7037,7124,7254,7504,7514,7732,7740,7775,7780,7802,7915,7970,8070,8116,8458,9031,9447,9457,9567,9616,9701,9890,11318,13175,13241,13727,13798,13799,13821,13824,13829,17352,17519,17563,17571,17654,17793,18473,18663,19517,19946,21667,22407,23097,23120]]],["then",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20954]]],["whether",[4,4,[[2,3,3,0,3,[[94,2,2,0,2],[102,1,1,2,3]]],[3,1,1,3,4,[[125,1,1,3,4]]]],[2831,2832,3100,3986]]]]},{"k":"H177","v":[["Uel",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12286]]]]},{"k":"H178","v":[["*",[17,16,[[2,3,3,0,3,[[108,1,1,0,1],[109,2,2,1,3]]],[4,1,1,3,4,[[170,1,1,3,4]]],[8,5,4,4,8,[[263,5,4,4,8]]],[11,2,2,8,10,[[333,1,1,8,9],[335,1,1,9,10]]],[12,1,1,10,11,[[347,1,1,10,11]]],[13,1,1,11,12,[[399,1,1,11,12]]],[17,1,1,12,13,[[467,1,1,12,13]]],[22,3,3,13,16,[[686,1,1,13,14],[697,1,1,14,15],[707,1,1,15,16]]]],[3312,3324,3345,5395,7945,7949,7950,7951,10125,10189,10672,11914,13647,17826,18007,18197]]],["bottles",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13647]]],["spirit",[7,6,[[2,1,1,0,1,[[109,1,1,0,1]]],[8,3,2,1,3,[[263,3,2,1,3]]],[12,1,1,3,4,[[347,1,1,3,4]]],[13,1,1,4,5,[[399,1,1,4,5]]],[22,1,1,5,6,[[707,1,1,5,6]]]],[3345,7949,7950,10672,11914,18197]]],["spirits",[9,9,[[2,2,2,0,2,[[108,1,1,0,1],[109,1,1,1,2]]],[4,1,1,2,3,[[170,1,1,2,3]]],[8,2,2,3,5,[[263,2,2,3,5]]],[11,2,2,5,7,[[333,1,1,5,6],[335,1,1,6,7]]],[22,2,2,7,9,[[686,1,1,7,8],[697,1,1,8,9]]]],[3312,3324,5395,7945,7951,10125,10189,17826,18007]]]]},{"k":"H179","v":[["Obil",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11139]]]]},{"k":"H180","v":[["river",[3,3,[[26,3,3,0,3,[[857,3,3,0,3]]]],[21963,21964,21967]]]]},{"k":"H181","v":[["*",[3,3,[[22,1,1,0,1,[[685,1,1,0,1]]],[29,1,1,1,2,[[882,1,1,1,2]]],[37,1,1,2,3,[[913,1,1,2,3]]]],[17786,22421,22914]]],["brand",[1,1,[[37,1,1,0,1,[[913,1,1,0,1]]]],[22914]]],["firebrand",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22421]]],["firebrands",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17786]]]]},{"k":"H182","v":[["*",[10,10,[[0,3,3,0,3,[[20,2,2,0,2],[25,1,1,2,3]]],[1,1,1,3,4,[[67,1,1,3,4]]],[3,2,2,4,6,[[128,1,1,4,5],[129,1,1,5,6]]],[5,1,1,6,7,[[200,1,1,6,7]]],[6,1,1,7,8,[[216,1,1,7,8]]],[9,1,1,8,9,[[279,1,1,8,9]]],[23,1,1,9,10,[[747,1,1,9,10]]]],[524,538,724,2007,4060,4099,6193,6661,8333,19010]]],["+",[7,7,[[0,3,3,0,3,[[20,2,2,0,2],[25,1,1,2,3]]],[3,2,2,3,5,[[128,1,1,3,4],[129,1,1,4,5]]],[5,1,1,5,6,[[200,1,1,5,6]]],[6,1,1,6,7,[[216,1,1,6,7]]]],[524,538,724,4060,4099,6193,6661]]],["cause",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8333]]],["causes",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19010]]],["sake",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2007]]]]},{"k":"H183","v":[["*",[26,26,[[3,2,2,0,2,[[127,2,2,0,2]]],[4,3,3,2,5,[[157,1,1,2,3],[164,1,1,3,4],[166,1,1,4,5]]],[8,1,1,5,6,[[237,1,1,5,6]]],[9,2,2,6,8,[[269,1,1,6,7],[289,1,1,7,8]]],[10,1,1,8,9,[[301,1,1,8,9]]],[12,1,1,9,10,[[348,1,1,9,10]]],[17,1,1,10,11,[[458,1,1,10,11]]],[18,4,4,11,15,[[522,1,1,11,12],[583,1,1,12,13],[609,2,2,13,15]]],[19,6,6,15,21,[[640,1,1,15,16],[648,2,2,16,18],[650,2,2,18,20],[651,1,1,20,21]]],[20,1,1,21,22,[[664,1,1,21,22]]],[22,1,1,22,23,[[704,1,1,22,23]]],[23,1,1,23,24,[[761,1,1,23,24]]],[29,1,1,24,25,[[883,1,1,24,25]]],[32,1,1,25,26,[[899,1,1,25,26]]]],[4028,4058,5074,5260,5316,7256,8102,8668,9145,10690,13432,14608,15665,16164,16165,16751,16994,17010,17047,17050,17080,17419,18139,19373,22441,22665]]],["+",[3,3,[[3,1,1,0,1,[[127,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]],[29,1,1,2,3,[[883,1,1,2,3]]]],[4028,15665,22441]]],["after",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5316]]],["covet",[1,1,[[4,1,1,0,1,[[157,1,1,0,1]]]],[5074]]],["coveteth",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17010]]],["desire",[3,3,[[18,1,1,0,1,[[522,1,1,0,1]]],[19,2,2,1,3,[[650,1,1,1,2],[651,1,1,2,3]]]],[14608,17050,17080]]],["desired",[5,5,[[18,2,2,0,2,[[609,2,2,0,2]]],[22,1,1,2,3,[[704,1,1,2,3]]],[23,1,1,3,4,[[761,1,1,3,4]]],[32,1,1,4,5,[[899,1,1,4,5]]]],[16164,16165,18139,19373,22665]]],["desireth",[7,7,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]],[10,1,1,2,3,[[301,1,1,2,3]]],[17,1,1,3,4,[[458,1,1,3,4]]],[19,2,2,4,6,[[640,1,1,4,5],[648,1,1,5,6]]],[20,1,1,6,7,[[664,1,1,6,7]]]],[7256,8102,9145,13432,16751,16994,17419]]],["desirous",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17047]]],["longed",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8668,10690]]],["longeth",[1,1,[[4,1,1,0,1,[[164,1,1,0,1]]]],[5260]]],["lusted",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4058]]]]},{"k":"H184","v":[["out",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4826]]]]},{"k":"H185","v":[["*",[7,7,[[4,4,4,0,4,[[164,3,3,0,3],[170,1,1,3,4]]],[8,1,1,4,5,[[258,1,1,4,5]]],[23,1,1,5,6,[[746,1,1,5,6]]],[27,1,1,6,7,[[871,1,1,6,7]]]],[5255,5260,5261,5390,7830,18989,22235]]],["+",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18989]]],["after",[3,3,[[4,3,3,0,3,[[164,3,3,0,3]]]],[5255,5260,5261]]],["desire",[3,3,[[4,1,1,0,1,[[170,1,1,0,1]]],[8,1,1,1,2,[[258,1,1,1,2]]],[27,1,1,2,3,[[871,1,1,2,3]]]],[5390,7830,22235]]]]},{"k":"H186","v":[["Uzai",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12352]]]]},{"k":"H187","v":[["Uzal",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[261,10273]]]]},{"k":"H188","v":[["*",[24,23,[[3,2,2,0,2,[[137,1,1,0,1],[140,1,1,1,2]]],[8,2,2,2,4,[[239,2,2,2,4]]],[19,1,1,4,5,[[650,1,1,4,5]]],[22,4,4,5,9,[[681,2,2,5,7],[684,1,1,7,8],[702,1,1,8,9]]],[23,8,8,9,17,[[748,2,2,9,11],[750,1,1,11,12],[754,1,1,12,13],[757,1,1,13,14],[759,1,1,14,15],[789,1,1,15,16],[792,1,1,16,17]]],[24,1,1,17,18,[[801,1,1,17,18]]],[25,4,3,18,21,[[817,2,1,18,19],[825,2,2,19,21]]],[27,2,2,21,23,[[868,1,1,21,22],[870,1,1,22,23]]]],[4369,4469,7304,7305,17073,17716,17718,17774,18111,19040,19058,19093,19220,19293,19325,20043,20126,20458,20785,21062,21065,22191,22220]]],["Alas",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4469]]],["Woe",[17,17,[[3,1,1,0,1,[[137,1,1,0,1]]],[8,2,2,1,3,[[239,2,2,1,3]]],[22,3,3,3,6,[[681,2,2,3,5],[684,1,1,5,6]]],[23,8,8,6,14,[[748,2,2,6,8],[750,1,1,8,9],[754,1,1,9,10],[757,1,1,10,11],[759,1,1,11,12],[789,1,1,12,13],[792,1,1,13,14]]],[25,2,2,14,16,[[825,2,2,14,16]]],[27,1,1,16,17,[[868,1,1,16,17]]]],[4369,7304,7305,17716,17718,17774,19040,19058,19093,19220,19293,19325,20043,20126,21062,21065,22191]]],["woe",[6,5,[[19,1,1,0,1,[[650,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]],[24,1,1,2,3,[[801,1,1,2,3]]],[25,2,1,3,4,[[817,2,1,3,4]]],[27,1,1,4,5,[[870,1,1,4,5]]]],[17073,18111,20458,20785,22220]]]]},{"k":"H189","v":[["Evi",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]]],[4672,6175]]]]},{"k":"H190","v":[["Woe",[1,1,[[18,1,1,0,1,[[597,1,1,0,1]]]],[16079]]]]},{"k":"H191","v":[["*",[26,26,[[17,2,2,0,2,[[440,2,2,0,2]]],[18,1,1,2,3,[[584,1,1,2,3]]],[19,19,19,3,22,[[628,1,1,3,4],[634,1,1,4,5],[637,4,4,5,9],[638,1,1,9,10],[639,2,2,10,12],[641,2,2,12,14],[642,1,1,14,15],[643,1,1,15,16],[644,1,1,16,17],[647,1,1,17,18],[651,1,1,18,19],[654,2,2,19,21],[656,1,1,21,22]]],[22,2,2,22,24,[[697,1,1,22,23],[713,1,1,23,24]]],[23,1,1,24,25,[[748,1,1,24,25]]],[27,1,1,25,26,[[870,1,1,25,26]]]],[12953,12954,15716,16407,16597,16664,16666,16670,16677,16717,16734,16735,16775,16781,16812,16862,16901,16957,17086,17172,17191,17233,18015,18328,19049,22215]]],["Fools",[2,2,[[18,1,1,0,1,[[584,1,1,0,1]]],[19,1,1,1,2,[[641,1,1,1,2]]]],[15716,16781]]],["fool",[11,11,[[19,10,10,0,10,[[634,1,1,0,1],[637,2,2,1,3],[638,1,1,3,4],[639,1,1,4,5],[642,1,1,5,6],[644,1,1,6,7],[647,1,1,7,8],[651,1,1,8,9],[654,1,1,9,10]]],[27,1,1,10,11,[[870,1,1,10,11]]]],[16597,16664,16666,16717,16734,16812,16901,16957,17086,17191,22215]]],["fool's",[2,2,[[19,2,2,0,2,[[639,1,1,0,1],[654,1,1,1,2]]]],[16735,17172]]],["foolish",[6,6,[[17,2,2,0,2,[[440,2,2,0,2]]],[19,3,3,2,5,[[637,1,1,2,3],[641,1,1,3,4],[656,1,1,4,5]]],[23,1,1,5,6,[[748,1,1,5,6]]]],[12953,12954,16670,16775,17233,19049]]],["fools",[5,5,[[19,3,3,0,3,[[628,1,1,0,1],[637,1,1,1,2],[643,1,1,2,3]]],[22,2,2,3,5,[[697,1,1,3,4],[713,1,1,4,5]]]],[16407,16677,16862,18015,18328]]]]},{"k":"H192","v":[["Evilmerodach",[2,2,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,1,1,1,2,[[796,1,1,1,2]]]],[10249,20307]]]]},{"k":"H193","v":[["strength",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15024]]]]},{"k":"H194","v":[["*",[45,44,[[0,12,12,0,12,[[15,1,1,0,1],[17,6,6,1,7],[23,2,2,7,9],[26,1,1,9,10],[31,1,1,10,11],[42,1,1,11,12]]],[1,1,1,12,13,[[81,1,1,12,13]]],[3,5,5,13,18,[[138,3,3,13,16],[139,2,2,16,18]]],[5,2,2,18,20,[[195,1,1,18,19],[200,1,1,19,20]]],[8,3,3,20,23,[[241,1,1,20,21],[244,1,1,21,22],[249,1,1,22,23]]],[9,2,2,23,25,[[280,1,1,23,24],[282,1,1,24,25]]],[10,3,3,25,28,[[308,2,2,25,27],[310,1,1,27,28]]],[11,1,1,28,29,[[331,1,1,28,29]]],[17,1,1,29,30,[[436,1,1,29,30]]],[22,3,2,30,32,[[715,1,1,30,31],[725,2,1,31,32]]],[23,6,6,32,38,[[764,1,1,32,33],[765,1,1,33,34],[770,1,1,34,35],[780,2,2,35,37],[795,1,1,37,38]]],[24,1,1,38,39,[[799,1,1,38,39]]],[25,1,1,39,40,[[813,1,1,39,40]]],[27,1,1,40,41,[[869,1,1,40,41]]],[29,1,1,41,42,[[883,1,1,41,42]]],[31,1,1,42,43,[[889,1,1,42,43]]],[35,1,1,43,44,[[907,1,1,43,44]]]],[383,448,452,453,454,455,456,596,630,739,948,1302,2468,4381,4386,4408,4419,4443,6044,6199,7336,7397,7514,8371,8438,9346,9368,9439,10065,12874,18356,18611,19432,19442,19575,19845,19849,20220,20383,20683,22201,22438,22537,22808]]],["Peradventure",[10,10,[[0,8,8,0,8,[[17,6,6,0,6],[23,2,2,6,8]]],[5,1,1,8,9,[[195,1,1,8,9]]],[23,1,1,9,10,[[764,1,1,9,10]]]],[448,452,453,454,455,456,596,630,6044,19432]]],["be",[18,17,[[0,1,1,0,1,[[15,1,1,0,1]]],[9,2,2,1,3,[[280,1,1,1,2],[282,1,1,2,3]]],[11,1,1,3,4,[[331,1,1,3,4]]],[17,1,1,4,5,[[436,1,1,4,5]]],[22,3,2,5,7,[[715,1,1,5,6],[725,2,1,6,7]]],[23,4,4,7,11,[[765,1,1,7,8],[770,1,1,8,9],[780,1,1,9,10],[795,1,1,10,11]]],[24,1,1,11,12,[[799,1,1,11,12]]],[25,1,1,12,13,[[813,1,1,12,13]]],[27,1,1,13,14,[[869,1,1,13,14]]],[29,1,1,14,15,[[883,1,1,14,15]]],[31,1,1,15,16,[[889,1,1,15,16]]],[35,1,1,16,17,[[907,1,1,16,17]]]],[383,8371,8438,10065,12874,18356,18611,19442,19575,19849,20220,20383,20683,22201,22438,22537,22808]]],["if",[1,1,[[5,1,1,0,1,[[200,1,1,0,1]]]],[6199]]],["peradventure",[13,13,[[0,3,3,0,3,[[26,1,1,0,1],[31,1,1,1,2],[42,1,1,2,3]]],[1,1,1,3,4,[[81,1,1,3,4]]],[3,4,4,4,8,[[138,2,2,4,6],[139,2,2,6,8]]],[8,2,2,8,10,[[241,1,1,8,9],[244,1,1,9,10]]],[10,3,3,10,13,[[308,2,2,10,12],[310,1,1,12,13]]]],[739,948,1302,2468,4381,4386,4419,4443,7336,7397,9346,9368,9439]]],["that",[2,2,[[8,1,1,0,1,[[249,1,1,0,1]]],[23,1,1,1,2,[[780,1,1,1,2]]]],[7514,19845]]],["unless",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4408]]]]},{"k":"H195","v":[["Ulai",[2,2,[[26,2,2,0,2,[[857,2,2,0,2]]]],[21963,21977]]]]},{"k":"H196","v":[["foolish",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23043]]]]},{"k":"H197","v":[["*",[34,29,[[10,10,7,0,7,[[296,1,1,0,1],[297,9,6,1,7]]],[12,1,1,7,8,[[365,1,1,7,8]]],[13,5,5,8,13,[[369,1,1,8,9],[374,1,1,9,10],[381,1,1,10,11],[395,2,2,11,13]]],[25,17,15,13,28,[[809,1,1,13,14],[841,10,8,14,22],[842,3,3,22,25],[845,1,1,25,26],[847,2,2,26,28]]],[28,1,1,28,29,[[877,1,1,28,29]]]],[8899,8940,8941,8942,8946,8953,8955,11154,11233,11358,11498,11798,11808,20620,21484,21485,21486,21492,21516,21517,21525,21526,21541,21551,21552,21602,21657,21663,22328]]],["porch",[33,28,[[10,10,7,0,7,[[296,1,1,0,1],[297,9,6,1,7]]],[12,1,1,7,8,[[365,1,1,7,8]]],[13,5,5,8,13,[[369,1,1,8,9],[374,1,1,9,10],[381,1,1,10,11],[395,2,2,11,13]]],[25,16,14,13,27,[[809,1,1,13,14],[841,10,8,14,22],[842,2,2,22,24],[845,1,1,24,25],[847,2,2,25,27]]],[28,1,1,27,28,[[877,1,1,27,28]]]],[8899,8940,8941,8942,8946,8953,8955,11154,11233,11358,11498,11798,11808,20620,21484,21485,21486,21492,21516,21517,21525,21526,21551,21552,21602,21657,21663,22328]]],["porches",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21541]]]]},{"k":"H198","v":[["Ulam",[4,4,[[12,4,4,0,4,[[344,2,2,0,2],[345,2,2,2,4]]]],[10551,10552,10614,10615]]]]},{"k":"H199","v":[["*",[18,18,[[0,2,2,0,2,[[27,1,1,0,1],[47,1,1,1,2]]],[1,1,1,2,3,[[58,1,1,2,3]]],[3,1,1,3,4,[[130,1,1,3,4]]],[6,1,1,4,5,[[228,1,1,4,5]]],[8,2,2,5,7,[[255,1,1,5,6],[260,1,1,6,7]]],[10,1,1,7,8,[[310,1,1,7,8]]],[17,9,9,8,17,[[436,1,1,8,9],[437,1,1,9,10],[446,1,1,10,11],[447,1,1,11,12],[448,2,2,12,14],[449,1,1,14,15],[452,1,1,15,16],[468,1,1,16,17]]],[32,1,1,17,18,[[895,1,1,17,18]]]],[792,1470,1758,4129,7022,7733,7895,9431,12880,12896,13113,13135,13156,13157,13199,13270,13651,22616]]],["But",[6,6,[[17,6,6,0,6,[[436,1,1,0,1],[437,1,1,1,2],[446,1,1,2,3],[447,1,1,3,4],[448,1,1,4,5],[452,1,1,5,6]]]],[12880,12896,13113,13135,13157,13270]]],["Surely",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13156]]],["Wherefore",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13651]]],["but",[2,2,[[0,1,1,0,1,[[27,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]]],[792,9431]]],["deed",[2,2,[[1,1,1,0,1,[[58,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]]],[1758,7895]]],["howbeit",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7022]]],["surely",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13199]]],["truly",[4,4,[[0,1,1,0,1,[[47,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[32,1,1,3,4,[[895,1,1,3,4]]]],[1470,4129,7733,22616]]]]},{"k":"H200","v":[["*",[25,24,[[18,2,2,0,2,[[515,1,1,0,1],[546,1,1,1,2]]],[19,23,22,2,24,[[632,1,1,2,3],[639,1,1,3,4],[640,1,1,4,5],[641,7,6,5,11],[642,3,3,11,14],[643,1,1,14,15],[644,1,1,15,16],[645,1,1,16,17],[646,1,1,17,18],[649,1,1,18,19],[651,1,1,19,20],[653,3,3,20,23],[654,1,1,23,24]]]],[14495,14940,16540,16742,16763,16773,16780,16789,16790,16796,16801,16809,16821,16828,16862,16885,16914,16928,17030,17088,17145,17146,17152,17191]]],["Folly",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16828]]],["Foolishness",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17030]]],["folly",[12,12,[[19,12,12,0,12,[[632,1,1,0,1],[640,1,1,1,2],[641,4,4,2,6],[643,1,1,6,7],[644,1,1,7,8],[645,1,1,8,9],[653,3,3,9,12]]]],[16540,16763,16780,16790,16796,16801,16862,16885,16914,17145,17146,17152]]],["foolish",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16773]]],["foolishly",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16789]]],["foolishness",[9,9,[[18,2,2,0,2,[[515,1,1,0,1],[546,1,1,1,2]]],[19,7,7,2,9,[[639,1,1,2,3],[641,1,1,3,4],[642,2,2,4,6],[646,1,1,6,7],[651,1,1,7,8],[654,1,1,8,9]]]],[14495,14940,16742,16796,16809,16821,16928,17088,17191]]]]},{"k":"H201","v":[["Omar",[3,3,[[0,2,2,0,2,[[35,2,2,0,2]]],[12,1,1,2,3,[[338,1,1,2,3]]]],[1051,1055,10288]]]]},{"k":"H202","v":[["*",[12,12,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[173,1,1,1,2]]],[17,4,4,2,6,[[453,2,2,2,4],[455,1,1,4,5],[475,1,1,5,6]]],[18,2,2,6,8,[[555,1,1,6,7],[582,1,1,7,8]]],[22,2,2,8,10,[[718,2,2,8,10]]],[27,2,2,10,12,[[873,2,2,10,12]]]],[1476,5464,13283,13288,13336,13880,15164,15642,18446,18449,22255,22260]]],["force",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13880]]],["goods",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13336]]],["might",[2,2,[[22,2,2,0,2,[[718,2,2,0,2]]]],[18446,18449]]],["strength",[7,7,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[173,1,1,1,2]]],[17,2,2,2,4,[[453,2,2,2,4]]],[18,2,2,4,6,[[555,1,1,4,5],[582,1,1,5,6]]],[27,1,1,6,7,[[873,1,1,6,7]]]],[1476,5464,13283,13288,15164,15642,22255]]],["substance",[1,1,[[27,1,1,0,1,[[873,1,1,0,1]]]],[22260]]]]},{"k":"H203","v":[["On",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4195]]]]},{"k":"H204","v":[["On",[3,3,[[0,3,3,0,3,[[40,2,2,0,2],[45,1,1,2,3]]]],[1240,1245,1406]]]]},{"k":"H205","v":[["*",[79,79,[[3,1,1,0,1,[[139,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]],[8,1,1,2,3,[[250,1,1,2,3]]],[17,13,13,3,16,[[439,1,1,3,4],[440,1,1,4,5],[446,2,2,5,7],[450,1,1,7,8],[456,1,1,8,9],[457,1,1,9,10],[466,1,1,10,11],[469,3,3,11,14],[471,2,2,14,16]]],[18,29,29,16,45,[[482,1,1,16,17],[483,1,1,17,18],[484,1,1,18,19],[487,1,1,19,20],[491,1,1,20,21],[505,1,1,21,22],[513,3,3,22,25],[518,1,1,25,26],[530,1,1,26,27],[532,2,2,27,29],[533,1,1,29,30],[536,2,2,30,32],[541,1,1,32,33],[543,1,1,33,34],[567,1,1,34,35],[569,2,2,35,37],[571,3,3,37,40],[578,1,1,40,41],[596,1,1,41,42],[602,1,1,42,43],[618,2,2,43,45]]],[19,10,10,45,55,[[633,2,2,45,47],[637,1,1,47,48],[638,1,1,48,49],[639,1,1,49,50],[644,1,1,50,51],[646,1,1,51,52],[648,1,1,52,53],[649,1,1,53,54],[657,1,1,54,55]]],[22,12,12,55,67,[[679,1,1,55,56],[688,1,1,56,57],[707,1,1,57,58],[709,1,1,58,59],[710,1,1,59,60],[719,1,1,60,61],[733,1,1,61,62],[736,1,1,62,63],[737,3,3,63,66],[744,1,1,66,67]]],[23,2,2,67,69,[[748,2,2,67,69]]],[25,2,2,69,71,[[812,1,1,69,70],[831,1,1,70,71]]],[27,3,3,71,74,[[867,1,1,71,72],[870,1,1,72,73],[873,1,1,73,74]]],[29,1,1,74,75,[[883,1,1,74,75]]],[32,1,1,75,76,[[894,1,1,75,76]]],[34,2,2,76,78,[[903,1,1,76,77],[905,1,1,77,78]]],[37,1,1,78,79,[[920,1,1,78,79]]]],[4437,5580,7583,12938,12957,13119,13122,13238,13374,13404,13591,13691,13705,13719,13746,13757,13978,13993,14009,14048,14084,14302,14441,14442,14450,14548,14723,14735,14742,14762,14792,14795,14852,14891,15388,15418,15420,15435,15447,15454,15521,16031,16115,16280,16285,16552,16558,16685,16695,16740,16877,16953,16999,17023,17271,17667,17851,18213,18252,18265,18480,18747,18795,18804,18806,18807,18925,19041,19042,20657,21221,22175,22212,22263,22428,22596,22734,22775,23018]]],["+",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13746]]],["Aven",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21221]]],["affliction",[3,3,[[17,1,1,0,1,[[440,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]],[34,1,1,2,3,[[905,1,1,2,3]]]],[12957,19042,22775]]],["evil",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16740]]],["false",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16877]]],["idol",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18925]]],["iniquity",[46,46,[[3,1,1,0,1,[[139,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]],[17,7,7,2,9,[[439,1,1,2,3],[446,1,1,3,4],[456,1,1,4,5],[466,1,1,5,6],[469,2,2,6,8],[471,1,1,8,9]]],[18,23,23,9,32,[[482,1,1,9,10],[483,1,1,10,11],[484,1,1,11,12],[491,1,1,12,13],[505,1,1,13,14],[513,2,2,14,16],[518,1,1,16,17],[530,1,1,17,18],[532,1,1,18,19],[533,1,1,19,20],[536,1,1,20,21],[541,1,1,21,22],[543,1,1,22,23],[569,2,2,23,25],[571,3,3,25,28],[596,1,1,28,29],[602,1,1,29,30],[618,2,2,30,32]]],[19,3,3,32,35,[[637,1,1,32,33],[646,1,1,33,34],[648,1,1,34,35]]],[22,7,7,35,42,[[679,1,1,35,36],[707,1,1,36,37],[709,1,1,37,38],[710,1,1,38,39],[737,3,3,39,42]]],[27,2,2,42,44,[[867,1,1,42,43],[873,1,1,43,44]]],[32,1,1,44,45,[[894,1,1,44,45]]],[34,1,1,45,46,[[903,1,1,45,46]]]],[4437,7583,12938,13122,13374,13591,13691,13705,13757,13978,13993,14009,14084,14302,14441,14450,14548,14723,14735,14762,14792,14852,14891,15418,15420,15435,15447,15454,16031,16115,16280,16285,16685,16953,16999,17667,18213,18252,18265,18804,18806,18807,22175,22263,22596,22734]]],["mischief",[3,3,[[18,2,2,0,2,[[513,1,1,0,1],[532,1,1,1,2]]],[25,1,1,2,3,[[812,1,1,2,3]]]],[14442,14742,20657]]],["mourners",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22212]]],["mourning",[1,1,[[4,1,1,0,1,[[178,1,1,0,1]]]],[5580]]],["nought",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22428]]],["sorrow",[1,1,[[18,1,1,0,1,[[567,1,1,0,1]]]],[15388]]],["unjust",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16695]]],["unrighteous",[2,2,[[22,2,2,0,2,[[688,1,1,0,1],[733,1,1,1,2]]]],[17851,18747]]],["vain",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19041]]],["vanity",[6,6,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,1,1,1,2,[[487,1,1,1,2]]],[19,1,1,2,3,[[649,1,1,2,3]]],[22,2,2,3,5,[[719,1,1,3,4],[736,1,1,4,5]]],[37,1,1,5,6,[[920,1,1,5,6]]]],[13238,14048,17023,18480,18795,23018]]],["wicked",[6,6,[[17,2,2,0,2,[[457,1,1,0,1],[469,1,1,1,2]]],[18,2,2,2,4,[[536,1,1,2,3],[578,1,1,3,4]]],[19,2,2,4,6,[[633,2,2,4,6]]]],[13404,13719,14795,15521,16552,16558]]],["wickedness",[2,2,[[17,1,1,0,1,[[446,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[13119,17271]]]]},{"k":"H206","v":[["Aven",[2,2,[[27,1,1,0,1,[[871,1,1,0,1]]],[29,1,1,1,2,[[879,1,1,1,2]]]],[22233,22369]]]]},{"k":"H207","v":[["Ono",[5,5,[[12,1,1,0,1,[[345,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,3,3,2,5,[[418,1,1,2,3],[419,1,1,3,4],[423,1,1,4,5]]]],[10587,12060,12403,12457,12623]]]]},{"k":"H208","v":[["Onam",[4,4,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,3,3,1,4,[[338,1,1,1,2],[339,2,2,2,4]]]],[1063,10292,10332,10334]]]]},{"k":"H209","v":[["Onan",[8,6,[[0,5,4,0,4,[[37,3,3,0,3],[45,2,1,3,4]]],[3,2,1,4,5,[[142,2,1,4,5]]],[12,1,1,5,6,[[339,1,1,5,6]]]],[1123,1127,1128,1398,4508,10309]]]]},{"k":"H210","v":[["*",[2,2,[[23,1,1,0,1,[[754,1,1,0,1]]],[26,1,1,1,2,[[859,1,1,1,2]]]],[19210,22020]]],["+",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19210]]],["Uphaz",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22020]]]]},{"k":"H211","v":[["*",[13,12,[[0,1,1,0,1,[[9,1,1,0,1]]],[10,4,3,1,4,[[299,1,1,1,2],[300,2,1,2,3],[312,1,1,3,4]]],[12,2,2,4,6,[[338,1,1,4,5],[366,1,1,5,6]]],[13,2,2,6,8,[[374,1,1,6,7],[375,1,1,7,8]]],[17,2,2,8,10,[[457,1,1,8,9],[463,1,1,9,10]]],[18,1,1,10,11,[[522,1,1,10,11]]],[22,1,1,11,12,[[691,1,1,11,12]]]],[263,9079,9090,9528,10275,11168,11364,11374,13413,13520,14606,17918]]],["+",[3,2,[[10,2,1,0,1,[[300,2,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9090,11374]]],["Ophir",[10,10,[[0,1,1,0,1,[[9,1,1,0,1]]],[10,2,2,1,3,[[299,1,1,1,2],[312,1,1,2,3]]],[12,2,2,3,5,[[338,1,1,3,4],[366,1,1,4,5]]],[13,1,1,5,6,[[374,1,1,5,6]]],[17,2,2,6,8,[[457,1,1,6,7],[463,1,1,7,8]]],[18,1,1,8,9,[[522,1,1,8,9]]],[22,1,1,9,10,[[691,1,1,9,10]]]],[263,9079,9528,10275,11168,11364,13413,13520,14606,17918]]]]},{"k":"H212","v":[["*",[35,21,[[1,1,1,0,1,[[63,1,1,0,1]]],[10,6,3,1,4,[[297,6,3,1,4]]],[19,1,1,4,5,[[647,1,1,4,5]]],[22,1,1,5,6,[[706,1,1,5,6]]],[25,25,14,6,20,[[802,10,5,6,11],[804,1,1,11,12],[811,13,7,12,19],[812,1,1,19,20]]],[33,1,1,20,21,[[902,1,1,20,21]]]],[1914,8964,8966,8967,16980,18191,20479,20480,20483,20484,20485,20515,20639,20642,20643,20645,20646,20649,20652,20677,22714]]],["wheel",[11,8,[[10,2,2,0,2,[[297,2,2,0,2]]],[19,1,1,2,3,[[647,1,1,2,3]]],[22,1,1,3,4,[[706,1,1,3,4]]],[25,7,4,4,8,[[802,3,2,4,6],[811,4,2,6,8]]]],[8966,8967,16980,18191,20479,20480,20642,20643]]],["wheels",[24,17,[[1,1,1,0,1,[[63,1,1,0,1]]],[10,4,3,1,4,[[297,4,3,1,4]]],[25,18,12,4,16,[[802,7,4,4,8],[804,1,1,8,9],[811,9,6,9,15],[812,1,1,15,16]]],[33,1,1,16,17,[[902,1,1,16,17]]]],[1914,8964,8966,8967,20480,20483,20484,20485,20515,20639,20642,20645,20646,20649,20652,20677,22714]]]]},{"k":"H213","v":[["*",[10,10,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,1,1,1,2,[[54,1,1,1,2]]],[5,2,2,2,4,[[196,1,1,2,3],[203,1,1,3,4]]],[19,4,4,4,8,[[646,1,1,4,5],[648,1,1,5,6],[655,1,1,6,7],[656,1,1,7,8]]],[22,1,1,8,9,[[700,1,1,8,9]]],[23,1,1,9,10,[[761,1,1,9,10]]]],[472,1645,6077,6290,16927,16989,17216,17244,18056,19373]]],["haste",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17216]]],["hasted",[2,2,[[1,1,1,0,1,[[54,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]]],[1645,6077]]],["hastened",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[23,1,1,1,2,[[761,1,1,1,2]]]],[472,19373]]],["hasteth",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16927]]],["hasty",[2,2,[[19,2,2,0,2,[[648,1,1,0,1],[656,1,1,1,2]]]],[16989,17244]]],["labour",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18056]]],["narrow",[1,1,[[5,1,1,0,1,[[203,1,1,0,1]]]],[6290]]]]},{"k":"H214","v":[["*",[79,70,[[4,2,2,0,2,[[180,1,1,0,1],[184,1,1,1,2]]],[5,2,2,2,4,[[192,2,2,2,4]]],[10,5,3,4,7,[[297,1,1,4,5],[304,2,1,5,6],[305,2,1,6,7]]],[11,8,7,7,14,[[324,1,1,7,8],[326,1,1,8,9],[328,1,1,9,10],[330,1,1,10,11],[332,2,2,11,13],[336,2,1,13,14]]],[12,13,10,14,24,[[346,1,1,14,15],[363,5,4,15,19],[364,4,3,19,22],[365,2,1,22,23],[366,1,1,23,24]]],[13,10,8,24,32,[[371,1,1,24,25],[374,1,1,25,26],[377,1,1,26,27],[378,2,1,27,28],[382,1,1,28,29],[391,1,1,29,30],[398,1,1,30,31],[402,2,1,31,32]]],[14,1,1,32,33,[[404,1,1,32,33]]],[15,6,6,33,39,[[419,2,2,33,35],[422,1,1,35,36],[424,1,1,36,37],[425,2,2,37,39]]],[17,2,1,39,40,[[473,2,1,39,40]]],[18,2,2,40,42,[[510,1,1,40,41],[612,1,1,41,42]]],[19,5,5,42,47,[[635,1,1,42,43],[637,1,1,43,44],[642,1,1,44,45],[648,2,2,45,47]]],[22,6,6,47,53,[[680,1,1,47,48],[708,1,1,48,49],[711,1,1,49,50],[717,2,2,50,52],[723,1,1,52,53]]],[23,11,11,53,64,[[754,1,1,53,54],[759,1,1,54,55],[761,1,1,55,56],[764,1,1,56,57],[782,1,1,57,58],[792,1,1,58,59],[793,1,1,59,60],[794,2,2,60,62],[795,2,2,62,64]]],[25,1,1,64,65,[[829,1,1,64,65]]],[26,1,1,65,66,[[850,1,1,65,66]]],[27,1,1,66,67,[[874,1,1,66,67]]],[28,1,1,67,68,[[876,1,1,67,68]]],[32,1,1,68,69,[[898,1,1,68,69]]],[38,1,1,69,70,[[927,1,1,69,70]]]],[5623,5792,5968,5973,8985,9244,9267,9868,9910,9971,10039,10111,10113,10215,10641,11097,11099,11101,11103,11134,11136,11137,11155,11172,11269,11361,11425,11446,11511,11728,11902,12011,12096,12490,12491,12587,12668,12683,12684,13815,14373,16182,16623,16658,16823,16990,17004,17692,18223,18285,18414,18416,18564,19214,19328,19360,19427,19906,20087,20131,20191,20203,20225,20228,21161,21739,22281,22308,22658,23130]]],["+",[7,7,[[4,1,1,0,1,[[180,1,1,0,1]]],[13,1,1,1,2,[[382,1,1,1,2]]],[18,1,1,2,3,[[612,1,1,2,3]]],[19,1,1,3,4,[[642,1,1,3,4]]],[23,2,2,4,6,[[754,1,1,4,5],[795,1,1,5,6]]],[38,1,1,6,7,[[927,1,1,6,7]]]],[5623,11511,16182,16823,19214,20228,23130]]],["Treasures",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16658]]],["armoury",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20191]]],["cellars",[2,2,[[12,2,2,0,2,[[364,2,2,0,2]]]],[11136,11137]]],["garners",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22308]]],["store",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11425]]],["storehouses",[2,2,[[12,1,1,0,1,[[364,1,1,0,1]]],[18,1,1,1,2,[[510,1,1,1,2]]]],[11134,14373]]],["treasure",[9,9,[[12,1,1,0,1,[[366,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,3,3,2,5,[[419,2,2,2,4],[422,1,1,4,5]]],[19,1,1,5,6,[[648,1,1,5,6]]],[22,1,1,6,7,[[711,1,1,6,7]]],[26,1,1,7,8,[[850,1,1,7,8]]],[27,1,1,8,9,[[874,1,1,8,9]]]],[11172,12096,12490,12491,12587,17004,18285,21739,22281]]],["treasures",[46,39,[[4,1,1,0,1,[[184,1,1,0,1]]],[10,5,3,1,4,[[297,1,1,1,2],[304,2,1,2,3],[305,2,1,3,4]]],[11,8,7,4,11,[[324,1,1,4,5],[326,1,1,5,6],[328,1,1,6,7],[330,1,1,7,8],[332,2,2,8,10],[336,2,1,10,11]]],[12,6,5,11,16,[[363,5,4,11,15],[364,1,1,15,16]]],[13,7,5,16,21,[[371,1,1,16,17],[374,1,1,17,18],[378,2,1,18,19],[391,1,1,19,20],[402,2,1,20,21]]],[15,1,1,21,22,[[424,1,1,21,22]]],[17,2,1,22,23,[[473,2,1,22,23]]],[19,2,2,23,25,[[635,1,1,23,24],[648,1,1,24,25]]],[22,5,5,25,30,[[680,1,1,25,26],[708,1,1,26,27],[717,2,2,27,29],[723,1,1,29,30]]],[23,7,7,30,37,[[759,1,1,30,31],[761,1,1,31,32],[764,1,1,32,33],[792,1,1,33,34],[793,1,1,34,35],[794,1,1,35,36],[795,1,1,36,37]]],[25,1,1,37,38,[[829,1,1,37,38]]],[32,1,1,38,39,[[898,1,1,38,39]]]],[5792,8985,9244,9267,9868,9910,9971,10039,10111,10113,10215,11097,11099,11101,11103,11134,11269,11361,11446,11728,12011,12668,13815,16623,16990,17692,18223,18414,18416,18564,19328,19360,19427,20087,20131,20203,20225,21161,22658]]],["treasuries",[6,5,[[12,3,2,0,2,[[346,1,1,0,1],[365,2,1,1,2]]],[13,1,1,2,3,[[398,1,1,2,3]]],[15,2,2,3,5,[[425,2,2,3,5]]]],[10641,11155,11902,12683,12684]]],["treasury",[3,3,[[5,2,2,0,2,[[192,2,2,0,2]]],[23,1,1,2,3,[[782,1,1,2,3]]]],[5968,5973,19906]]]]},{"k":"H215","v":[["*",[42,42,[[0,3,3,0,3,[[0,2,2,0,2],[43,1,1,2,3]]],[1,3,3,3,6,[[62,1,1,3,4],[63,1,1,4,5],[74,1,1,5,6]]],[3,2,2,6,8,[[122,1,1,6,7],[124,1,1,7,8]]],[8,2,2,8,10,[[249,2,2,8,10]]],[9,1,1,10,11,[[268,1,1,10,11]]],[14,1,1,11,12,[[411,1,1,11,12]]],[15,2,2,12,14,[[421,2,2,12,14]]],[17,2,2,14,16,[[468,1,1,14,15],[476,1,1,15,16]]],[18,16,16,16,32,[[490,1,1,16,17],[495,1,1,17,18],[496,1,1,18,19],[508,1,1,19,20],[544,1,1,20,21],[553,1,1,21,22],[554,1,1,22,23],[557,3,3,23,26],[574,1,1,26,27],[582,1,1,27,28],[595,1,1,28,29],[596,2,2,29,31],[616,1,1,31,32]]],[19,2,2,32,34,[[631,1,1,32,33],[656,1,1,33,34]]],[20,1,1,34,35,[[666,1,1,34,35]]],[22,3,3,35,38,[[705,1,1,35,36],[738,2,2,36,38]]],[25,2,2,38,40,[[833,1,1,38,39],[844,1,1,39,40]]],[26,1,1,40,41,[[858,1,1,40,41]]],[38,1,1,41,42,[[925,1,1,41,42]]]],[14,16,1327,1888,1909,2232,3848,3941,7535,7537,8081,12245,12523,12530,13680,13920,14077,14146,14176,14347,14894,15085,15111,15201,15205,15217,15482,15645,15896,16028,16033,16251,16508,17237,17459,18162,18822,18840,21255,21574,22005,23099]]],["+",[2,2,[[1,1,1,0,1,[[63,1,1,0,1]]],[22,1,1,1,2,[[705,1,1,1,2]]]],[1909,18162]]],["day",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8081]]],["enlightened",[4,4,[[8,2,2,0,2,[[249,2,2,0,2]]],[17,1,1,2,3,[[468,1,1,2,3]]],[18,1,1,3,4,[[574,1,1,3,4]]]],[7535,7537,13680,15482]]],["enlightening",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14176]]],["give",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21255]]],["glorious",[1,1,[[18,1,1,0,1,[[553,1,1,0,1]]]],[15085]]],["kindle",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23099]]],["light",[13,13,[[0,3,3,0,3,[[0,2,2,0,2],[43,1,1,2,3]]],[1,2,2,3,5,[[62,1,1,3,4],[74,1,1,4,5]]],[3,1,1,5,6,[[124,1,1,5,6]]],[15,2,2,6,8,[[421,2,2,6,8]]],[18,4,4,8,12,[[495,1,1,8,9],[582,1,1,9,10],[595,1,1,10,11],[596,1,1,11,12]]],[22,1,1,12,13,[[738,1,1,12,13]]]],[14,16,1327,1888,2232,3941,12523,12530,14146,15645,15896,16028,18840]]],["lighten",[2,2,[[14,1,1,0,1,[[411,1,1,0,1]]],[18,1,1,1,2,[[490,1,1,1,2]]]],[12245,14077]]],["lightened",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15111]]],["lighteneth",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17237]]],["shine",[11,11,[[3,1,1,0,1,[[122,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[18,6,6,2,8,[[508,1,1,2,3],[544,1,1,3,4],[557,3,3,4,7],[596,1,1,7,8]]],[20,1,1,8,9,[[666,1,1,8,9]]],[22,1,1,9,10,[[738,1,1,9,10]]],[26,1,1,10,11,[[858,1,1,10,11]]]],[3848,13920,14347,14894,15201,15205,15217,16033,17459,18822,22005]]],["shined",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21574]]],["shineth",[2,2,[[18,1,1,0,1,[[616,1,1,0,1]]],[19,1,1,1,2,[[631,1,1,1,2]]]],[16251,16508]]]]},{"k":"H216","v":[["*",[122,111,[[0,6,4,0,4,[[0,6,4,0,4]]],[1,1,1,4,5,[[59,1,1,4,5]]],[6,2,2,5,7,[[226,1,1,5,6],[229,1,1,6,7]]],[8,4,4,7,11,[[249,1,1,7,8],[260,2,2,8,10],[264,1,1,10,11]]],[9,2,2,11,13,[[283,1,1,11,12],[289,1,1,12,13]]],[11,1,1,13,14,[[319,1,1,13,14]]],[15,1,1,14,15,[[420,1,1,14,15]]],[17,32,32,15,47,[[438,3,3,15,18],[447,2,2,18,20],[452,1,1,20,21],[453,3,3,21,24],[457,1,1,24,25],[459,3,3,25,28],[460,1,1,28,29],[461,1,1,29,30],[463,1,1,30,31],[464,2,2,31,33],[465,1,1,33,34],[466,1,1,34,35],[468,2,2,35,37],[471,2,2,37,39],[472,4,4,39,43],[473,3,3,43,46],[476,1,1,46,47]]],[18,19,18,47,65,[[481,1,1,47,48],[504,1,1,48,49],[513,2,1,49,50],[514,1,1,50,51],[515,1,1,51,52],[520,1,1,52,53],[521,1,1,53,54],[526,1,1,54,55],[533,1,1,55,56],[555,1,1,56,57],[566,1,1,57,58],[574,1,1,58,59],[581,1,1,59,60],[589,1,1,60,61],[596,1,1,61,62],[613,1,1,62,63],[616,1,1,63,64],[625,1,1,64,65]]],[19,4,4,65,69,[[631,1,1,65,66],[633,1,1,66,67],[640,1,1,67,68],[643,1,1,68,69]]],[20,3,3,69,72,[[660,1,1,69,70],[669,1,1,70,71],[670,1,1,71,72]]],[22,27,20,72,92,[[680,1,1,72,73],[683,3,2,73,75],[687,2,1,75,76],[688,1,1,76,77],[691,2,1,77,78],[696,1,1,78,79],[708,4,1,79,80],[720,2,2,80,82],[723,1,1,82,83],[727,1,1,83,84],[729,1,1,84,85],[736,2,2,85,87],[737,1,1,87,88],[738,5,4,88,92]]],[23,5,4,92,96,[[748,1,1,92,93],[757,1,1,93,94],[769,1,1,94,95],[775,2,1,95,96]]],[24,1,1,96,97,[[799,1,1,96,97]]],[25,2,2,97,99,[[833,2,2,97,99]]],[27,1,1,99,100,[[867,1,1,99,100]]],[29,3,3,100,103,[[883,2,2,100,102],[886,1,1,102,103]]],[32,3,3,103,106,[[894,1,1,103,104],[899,2,2,104,106]]],[34,2,2,106,108,[[905,2,2,106,108]]],[35,1,1,108,109,[[908,1,1,108,109]]],[37,2,2,109,111,[[924,2,2,109,111]]]],[2,3,4,17,1800,6951,7050,7544,7895,7897,7977,8471,8657,9716,12496,12913,12920,12924,13150,13153,13272,13281,13282,13294,13417,13449,13450,13452,13464,13477,13515,13535,13556,13583,13614,13678,13680,13766,13768,13772,13780,13784,13790,13808,13812,13817,13906,13971,14286,14447,14456,14500,14569,14574,14667,14768,15127,15341,15489,15573,15807,16003,16203,16250,16374,16508,16563,16756,16855,17346,17520,17525,17690,17759,17769,17831,17867,17916,18001,18243,18486,18496,18568,18642,18677,18794,18796,18809,18822,18824,18840,18841,19050,19282,19544,19726,20356,21255,21256,22172,22441,22443,22490,22596,22672,22673,22772,22779,22825,23074,23075]]],["+",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13294]]],["Light",[1,1,[[18,1,1,0,1,[[574,1,1,0,1]]]],[15489]]],["bright",[2,2,[[17,1,1,0,1,[[472,1,1,0,1]]],[25,1,1,1,2,[[833,1,1,1,2]]]],[13780,21256]]],["clear",[1,1,[[29,1,1,0,1,[[886,1,1,0,1]]]],[22490]]],["day",[2,2,[[6,1,1,0,1,[[226,1,1,0,1]]],[17,1,1,1,2,[[461,1,1,1,2]]]],[6951,13477]]],["herbs",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18001]]],["light",[110,99,[[0,6,4,0,4,[[0,6,4,0,4]]],[1,1,1,4,5,[[59,1,1,4,5]]],[6,1,1,5,6,[[229,1,1,5,6]]],[8,4,4,6,10,[[249,1,1,6,7],[260,2,2,7,9],[264,1,1,9,10]]],[9,2,2,10,12,[[283,1,1,10,11],[289,1,1,11,12]]],[11,1,1,12,13,[[319,1,1,12,13]]],[17,27,27,13,40,[[438,3,3,13,16],[447,2,2,16,18],[452,1,1,18,19],[453,2,2,19,21],[457,1,1,21,22],[459,3,3,22,25],[460,1,1,25,26],[463,1,1,26,27],[464,2,2,27,29],[465,1,1,29,30],[468,2,2,30,32],[471,2,2,32,34],[472,2,2,34,36],[473,3,3,36,39],[476,1,1,39,40]]],[18,17,16,40,56,[[481,1,1,40,41],[504,1,1,41,42],[513,2,1,42,43],[514,1,1,43,44],[515,1,1,44,45],[520,1,1,45,46],[521,1,1,46,47],[526,1,1,47,48],[533,1,1,48,49],[555,1,1,49,50],[566,1,1,50,51],[581,1,1,51,52],[589,1,1,52,53],[596,1,1,53,54],[616,1,1,54,55],[625,1,1,55,56]]],[19,4,4,56,60,[[631,1,1,56,57],[633,1,1,57,58],[640,1,1,58,59],[643,1,1,59,60]]],[20,3,3,60,63,[[660,1,1,60,61],[669,1,1,61,62],[670,1,1,62,63]]],[22,26,19,63,82,[[680,1,1,63,64],[683,3,2,64,66],[687,2,1,66,67],[688,1,1,67,68],[691,2,1,68,69],[708,4,1,69,70],[720,2,2,70,72],[723,1,1,72,73],[727,1,1,73,74],[729,1,1,74,75],[736,2,2,75,77],[737,1,1,77,78],[738,5,4,78,82]]],[23,5,4,82,86,[[748,1,1,82,83],[757,1,1,83,84],[769,1,1,84,85],[775,2,1,85,86]]],[24,1,1,86,87,[[799,1,1,86,87]]],[25,1,1,87,88,[[833,1,1,87,88]]],[27,1,1,88,89,[[867,1,1,88,89]]],[29,2,2,89,91,[[883,2,2,89,91]]],[32,3,3,91,94,[[894,1,1,91,92],[899,2,2,92,94]]],[34,2,2,94,96,[[905,2,2,94,96]]],[35,1,1,96,97,[[908,1,1,96,97]]],[37,2,2,97,99,[[924,2,2,97,99]]]],[2,3,4,17,1800,7050,7544,7895,7897,7977,8471,8657,9716,12913,12920,12924,13150,13153,13272,13281,13282,13417,13449,13450,13452,13464,13515,13535,13556,13583,13678,13680,13766,13768,13784,13790,13808,13812,13817,13906,13971,14286,14447,14456,14500,14569,14574,14667,14768,15127,15341,15573,15807,16003,16250,16374,16508,16563,16756,16855,17346,17520,17525,17690,17759,17769,17831,17867,17916,18243,18486,18496,18568,18642,18677,18794,18796,18809,18822,18824,18840,18841,19050,19282,19544,19726,20356,21255,22172,22441,22443,22596,22672,22673,22772,22779,22825,23074,23075]]],["lightning",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13772]]],["lights",[1,1,[[18,1,1,0,1,[[613,1,1,0,1]]]],[16203]]],["morning",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12496]]],["sun",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13614]]]]},{"k":"H217","v":[["*",[6,6,[[22,5,5,0,5,[[702,1,1,0,1],[709,1,1,1,2],[722,1,1,2,3],[725,1,1,3,4],[728,1,1,4,5]]],[25,1,1,5,6,[[806,1,1,5,6]]]],[18110,18259,18549,18613,18673,20548]]],["fire",[4,4,[[22,3,3,0,3,[[709,1,1,0,1],[722,1,1,1,2],[725,1,1,2,3]]],[25,1,1,3,4,[[806,1,1,3,4]]]],[18259,18549,18613,20548]]],["fires",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18110]]],["light",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18673]]]]},{"k":"H218","v":[["*",[5,5,[[0,3,3,0,3,[[10,2,2,0,2],[14,1,1,2,3]]],[12,1,1,3,4,[[348,1,1,3,4]]],[15,1,1,4,5,[[421,1,1,4,5]]]],[294,297,367,10708,12518]]],["+",[3,3,[[0,2,2,0,2,[[10,1,1,0,1],[14,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]]],[297,367,12518]]],["Ur",[2,2,[[0,1,1,0,1,[[10,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[294,10708]]]]},{"k":"H219","v":[["*",[4,4,[[11,1,1,0,1,[[316,1,1,0,1]]],[16,1,1,1,2,[[433,1,1,1,2]]],[18,1,1,2,3,[[616,1,1,2,3]]],[22,1,1,3,4,[[704,1,1,3,4]]]],[9642,12833,16251,18149]]],["herbs",[2,2,[[11,1,1,0,1,[[316,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]]],[9642,18149]]],["light",[2,2,[[16,1,1,0,1,[[433,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]]],[12833,16251]]]]},{"k":"H220","v":[["cotes",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11903]]]]},{"k":"H221","v":[["Uri",[8,7,[[1,3,3,0,3,[[80,1,1,0,1],[84,1,1,1,2],[87,1,1,2,3]]],[10,1,1,3,4,[[294,1,1,3,4]]],[12,2,1,4,5,[[339,2,1,4,5]]],[13,1,1,5,6,[[367,1,1,5,6]]],[14,1,1,6,7,[[412,1,1,6,7]]]],[2422,2561,2655,8863,10326,11199,12276]]]]},{"k":"H222","v":[["Uriel",[4,4,[[12,3,3,0,3,[[343,1,1,0,1],[352,2,2,1,3]]],[13,1,1,3,4,[[379,1,1,3,4]]]],[10478,10796,10802,11455]]]]},{"k":"H223","v":[["*",[39,33,[[9,24,19,0,19,[[277,20,15,0,15],[278,3,3,15,18],[289,1,1,18,19]]],[10,1,1,19,20,[[305,1,1,19,20]]],[11,5,4,20,24,[[328,5,4,20,24]]],[12,1,1,24,25,[[348,1,1,24,25]]],[14,1,1,25,26,[[410,1,1,25,26]]],[15,3,3,26,29,[[415,2,2,26,28],[420,1,1,28,29]]],[22,1,1,29,30,[[686,1,1,29,30]]],[23,3,3,30,33,[[770,3,3,30,33]]]],[8262,8265,8266,8267,8268,8269,8270,8271,8273,8274,8275,8276,8280,8283,8285,8295,8296,8301,8692,9254,9973,9974,9978,9979,10714,12234,12331,12348,12497,17809,19592,19593,19595]]],["Uriah",[27,22,[[9,23,18,0,18,[[277,20,15,0,15],[278,2,2,15,17],[289,1,1,17,18]]],[10,1,1,18,19,[[305,1,1,18,19]]],[12,1,1,19,20,[[348,1,1,19,20]]],[14,1,1,20,21,[[410,1,1,20,21]]],[22,1,1,21,22,[[686,1,1,21,22]]]],[8262,8265,8266,8267,8268,8269,8270,8271,8273,8274,8275,8276,8280,8283,8285,8295,8296,8692,9254,10714,12234,17809]]],["Uriah's",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8301]]],["Urijah",[11,10,[[11,5,4,0,4,[[328,5,4,0,4]]],[15,3,3,4,7,[[415,2,2,4,6],[420,1,1,6,7]]],[23,3,3,7,10,[[770,3,3,7,10]]]],[9973,9974,9978,9979,12331,12348,12497,19592,19593,19595]]]]},{"k":"H224","v":[["Urim",[7,7,[[1,1,1,0,1,[[77,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]],[3,1,1,2,3,[[143,1,1,2,3]]],[4,1,1,3,4,[[185,1,1,3,4]]],[8,1,1,4,5,[[263,1,1,4,5]]],[14,1,1,5,6,[[404,1,1,5,6]]],[15,1,1,6,7,[[419,1,1,6,7]]]],[2323,2925,4575,5818,7948,12090,12485]]]]},{"k":"H225","v":[["*",[4,4,[[0,3,3,0,3,[[33,3,3,0,3]]],[11,1,1,3,4,[[324,1,1,3,4]]]],[995,1002,1003,9858]]],["consent",[3,3,[[0,3,3,0,3,[[33,3,3,0,3]]]],[995,1002,1003]]],["consented",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9858]]]]},{"k":"H226","v":[["*",[79,77,[[0,6,6,0,6,[[0,1,1,0,1],[3,1,1,1,2],[8,3,3,2,5],[16,1,1,5,6]]],[1,16,15,6,21,[[52,1,1,6,7],[53,6,5,7,12],[56,1,1,12,13],[57,1,1,13,14],[59,2,2,14,16],[61,1,1,16,17],[62,2,2,17,19],[80,2,2,19,21]]],[3,5,5,21,26,[[118,1,1,21,22],[130,2,2,22,24],[132,1,1,24,25],[133,1,1,25,26]]],[4,12,12,26,38,[[156,1,1,26,27],[158,2,2,27,29],[159,1,1,29,30],[163,2,2,30,32],[165,2,2,32,34],[178,1,1,34,35],[180,1,1,35,36],[181,1,1,36,37],[186,1,1,37,38]]],[5,3,3,38,41,[[188,1,1,38,39],[190,1,1,39,40],[210,1,1,40,41]]],[6,1,1,41,42,[[216,1,1,41,42]]],[8,4,4,42,46,[[237,1,1,42,43],[245,2,2,43,45],[249,1,1,45,46]]],[11,3,3,46,49,[[331,1,1,46,47],[332,2,2,47,49]]],[15,1,1,49,50,[[421,1,1,49,50]]],[17,1,1,50,51,[[456,1,1,50,51]]],[18,8,7,51,58,[[542,1,1,51,52],[551,3,2,52,54],[555,1,1,54,55],[563,1,1,55,56],[582,1,1,56,57],[612,1,1,57,58]]],[22,11,11,58,69,[[685,2,2,58,60],[686,1,1,60,61],[697,1,1,61,62],[698,1,1,62,63],[715,1,1,63,64],[716,2,2,64,66],[722,1,1,66,67],[733,1,1,67,68],[744,1,1,68,69]]],[23,4,4,69,73,[[754,1,1,69,70],[776,2,2,70,72],[788,1,1,72,73]]],[25,4,4,73,77,[[805,1,1,73,74],[815,1,1,74,75],[821,2,2,75,77]]]],[13,94,217,218,222,408,1591,1609,1610,1618,1629,1631,1688,1733,1778,1779,1829,1876,1883,2433,2437,3660,4119,4130,4232,4254,5038,5094,5108,5130,5211,5226,5273,5274,5574,5657,5682,5850,5881,5916,6493,6671,7274,7425,7427,7518,10090,10106,10107,12521,13384,14868,15052,15057,15156,15301,15633,16184,17793,17796,17825,18024,18032,18382,18397,18412,18558,18753,18941,19203,19751,19752,20039,20532,20739,20907,20915]]],["+",[3,3,[[18,2,2,0,2,[[542,1,1,0,1],[582,1,1,1,2]]],[23,1,1,2,3,[[754,1,1,2,3]]]],[14868,15633,19203]]],["ensign",[1,1,[[3,1,1,0,1,[[118,1,1,0,1]]]],[3660]]],["ensigns",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15052]]],["mark",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[94]]],["miracles",[2,2,[[3,1,1,0,1,[[130,1,1,0,1]]],[4,1,1,1,2,[[163,1,1,1,2]]]],[4130,5211]]],["sign",[33,32,[[1,6,5,0,5,[[53,2,1,0,1],[57,1,1,1,2],[62,1,1,2,3],[80,2,2,3,5]]],[3,1,1,5,6,[[132,1,1,5,6]]],[4,5,5,6,11,[[158,1,1,6,7],[163,1,1,7,8],[165,2,2,8,10],[180,1,1,10,11]]],[5,1,1,11,12,[[190,1,1,11,12]]],[6,1,1,12,13,[[216,1,1,12,13]]],[8,2,2,13,15,[[237,1,1,13,14],[249,1,1,14,15]]],[11,3,3,15,18,[[331,1,1,15,16],[332,2,2,16,18]]],[22,9,9,18,27,[[685,2,2,18,20],[697,1,1,20,21],[698,1,1,21,22],[715,1,1,22,23],[716,2,2,23,25],[733,1,1,25,26],[744,1,1,26,27]]],[23,1,1,27,28,[[788,1,1,27,28]]],[25,4,4,28,32,[[805,1,1,28,29],[815,1,1,29,30],[821,2,2,30,32]]]],[1609,1733,1876,2433,2437,4232,5094,5226,5273,5274,5657,5916,6671,7274,7518,10090,10106,10107,17793,17796,18024,18032,18382,18397,18412,18753,18941,20039,20532,20739,20907,20915]]],["signs",[25,25,[[0,1,1,0,1,[[0,1,1,0,1]]],[1,7,7,1,8,[[53,4,4,1,5],[56,1,1,5,6],[59,2,2,6,8]]],[3,1,1,8,9,[[130,1,1,8,9]]],[4,6,6,9,15,[[156,1,1,9,10],[158,1,1,10,11],[159,1,1,11,12],[178,1,1,12,13],[181,1,1,13,14],[186,1,1,14,15]]],[5,1,1,15,16,[[210,1,1,15,16]]],[8,2,2,16,18,[[245,2,2,16,18]]],[15,1,1,18,19,[[421,1,1,18,19]]],[18,3,3,19,22,[[551,2,2,19,21],[555,1,1,21,22]]],[22,1,1,22,23,[[686,1,1,22,23]]],[23,2,2,23,25,[[776,2,2,23,25]]]],[13,1610,1618,1629,1631,1688,1778,1779,4119,5038,5108,5130,5574,5682,5850,6493,7425,7427,12521,15052,15057,15156,17825,19751,19752]]],["token",[10,10,[[0,4,4,0,4,[[8,3,3,0,3],[16,1,1,3,4]]],[1,3,3,4,7,[[52,1,1,4,5],[61,1,1,5,6],[62,1,1,6,7]]],[3,1,1,7,8,[[133,1,1,7,8]]],[5,1,1,8,9,[[188,1,1,8,9]]],[18,1,1,9,10,[[563,1,1,9,10]]]],[217,218,222,408,1591,1829,1883,4254,5881,15301]]],["tokens",[3,3,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,1,1,1,2,[[612,1,1,1,2]]],[22,1,1,2,3,[[722,1,1,2,3]]]],[13384,16184,18558]]]]},{"k":"H227","v":[["*",[141,133,[[0,6,6,0,6,[[3,1,1,0,1],[11,1,1,1,2],[12,1,1,2,3],[23,1,1,3,4],[38,1,1,4,5],[48,1,1,5,6]]],[1,8,8,6,14,[[53,2,2,6,8],[54,1,1,8,9],[58,1,1,9,10],[61,2,2,10,12],[64,2,2,12,14]]],[2,4,2,14,16,[[115,4,2,14,16]]],[3,1,1,16,17,[[137,1,1,16,17]]],[4,2,2,17,19,[[156,1,1,17,18],[181,1,1,18,19]]],[5,10,9,19,28,[[187,2,1,19,20],[194,1,1,20,21],[196,2,2,21,23],[200,2,2,23,25],[206,1,1,25,26],[208,2,2,26,28]]],[6,7,7,28,35,[[215,5,5,28,33],[218,1,1,33,34],[223,1,1,34,35]]],[7,1,1,35,36,[[233,1,1,35,36]]],[8,2,2,36,38,[[241,1,1,36,37],[255,1,1,37,38]]],[9,9,7,38,45,[[268,1,1,38,39],[271,2,1,39,40],[281,1,1,40,41],[285,1,1,41,42],[287,2,2,42,44],[289,2,1,44,45]]],[10,8,8,45,53,[[293,1,1,45,46],[298,2,2,46,48],[299,2,2,48,50],[301,1,1,50,51],[306,1,1,51,52],[312,1,1,52,53]]],[11,7,7,53,60,[[317,1,1,53,54],[320,1,1,54,55],[324,1,1,55,56],[325,1,1,56,57],[326,1,1,57,58],[327,1,1,58,59],[328,1,1,59,60]]],[12,8,7,60,67,[[348,2,1,60,61],[351,1,1,61,62],[352,1,1,62,63],[353,2,2,63,65],[357,1,1,65,66],[359,1,1,66,67]]],[13,5,5,67,72,[[371,1,1,67,68],[372,1,1,68,69],[374,2,2,69,71],[390,1,1,71,72]]],[17,8,8,72,80,[[438,1,1,72,73],[444,1,1,73,74],[446,1,1,74,75],[448,1,1,75,76],[457,1,1,76,77],[463,1,1,77,78],[468,1,1,78,79],[473,1,1,79,80]]],[18,15,13,80,93,[[479,1,1,80,81],[496,1,1,81,82],[517,1,1,82,83],[528,2,1,83,84],[533,1,1,84,85],[546,1,1,85,86],[553,1,1,86,87],[566,1,1,87,88],[570,1,1,88,89],[573,1,1,89,90],[596,2,2,90,92],[603,2,1,92,93]]],[19,6,6,93,99,[[628,1,1,93,94],[629,2,2,94,96],[630,1,1,96,97],[635,1,1,97,98],[647,1,1,98,99]]],[20,1,1,99,100,[[660,1,1,99,100]]],[21,1,1,100,101,[[678,1,1,100,101]]],[22,16,16,101,117,[[692,1,1,101,102],[694,1,1,102,103],[711,1,1,103,104],[713,2,2,104,106],[719,1,1,106,107],[722,1,1,107,108],[723,1,1,108,109],[726,4,4,109,113],[736,3,3,113,116],[738,1,1,116,117]]],[23,9,9,117,126,[[755,2,2,117,119],[766,3,3,119,122],[775,1,1,122,123],[776,1,1,123,124],[783,1,1,124,125],[788,1,1,125,126]]],[25,1,1,126,127,[[833,1,1,126,127]]],[27,1,1,127,128,[[863,1,1,127,128]]],[32,1,1,128,129,[[895,1,1,128,129]]],[34,1,1,129,130,[[903,1,1,129,130]]],[35,2,2,130,132,[[908,2,2,130,132]]],[38,1,1,132,133,[[927,1,1,132,133]]]],[105,304,325,632,1154,1477,1611,1627,1655,1766,1860,1864,1921,1935,3558,3565,4357,5045,5699,5859,6032,6076,6097,6197,6198,6378,6427,6457,6631,6634,6636,6642,6645,6722,6905,7156,7334,7742,8076,8156,8423,8517,8597,8598,8667,8832,8986,8997,9062,9075,9115,9304,9529,9650,9749,9867,9890,9904,9941,9968,10689,10789,10793,10827,10853,10930,10977,11270,11283,11358,11363,11694,12917,13082,13123,13173,13415,13531,13666,13814,13950,14181,14532,14710,14764,14939,15088,15345,15428,15477,15904,15990,16117,16428,16438,16442,16478,16624,16968,17348,17650,17936,17982,18302,18325,18326,18452,18541,18582,18617,18619,18621,18622,18794,18795,18800,18826,19241,19244,19469,19470,19476,19704,19733,19932,20028,21262,22112,22612,22742,22829,22831,23136]]],["+",[19,19,[[0,1,1,0,1,[[38,1,1,0,1]]],[1,3,3,1,4,[[53,1,1,1,2],[54,1,1,2,3],[58,1,1,3,4]]],[5,1,1,4,5,[[200,1,1,4,5]]],[7,1,1,5,6,[[233,1,1,5,6]]],[9,1,1,6,7,[[281,1,1,6,7]]],[18,2,2,7,9,[[553,1,1,7,8],[570,1,1,8,9]]],[19,1,1,9,10,[[635,1,1,9,10]]],[22,8,8,10,18,[[692,1,1,10,11],[694,1,1,11,12],[722,1,1,12,13],[723,1,1,13,14],[726,4,4,14,18]]],[23,1,1,18,19,[[788,1,1,18,19]]]],[1154,1611,1655,1766,6197,7156,8423,15088,15428,16624,17936,17982,18541,18582,18617,18619,18621,18622,20028]]],["Then",[59,59,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,2,2,1,3,[[64,2,2,1,3]]],[2,1,1,3,4,[[115,1,1,3,4]]],[3,1,1,4,5,[[137,1,1,4,5]]],[4,1,1,5,6,[[156,1,1,5,6]]],[5,4,4,6,10,[[194,1,1,6,7],[196,2,2,7,9],[208,1,1,9,10]]],[6,4,4,10,14,[[215,2,2,10,12],[218,1,1,12,13],[223,1,1,13,14]]],[9,1,1,14,15,[[287,1,1,14,15]]],[10,6,6,15,21,[[293,1,1,15,16],[298,2,2,16,18],[301,1,1,18,19],[306,1,1,19,20],[312,1,1,20,21]]],[11,5,5,21,26,[[320,1,1,21,22],[324,1,1,22,23],[326,1,1,23,24],[327,1,1,24,25],[328,1,1,25,26]]],[12,4,4,26,30,[[352,1,1,26,27],[353,2,2,27,29],[359,1,1,29,30]]],[13,5,5,30,35,[[371,1,1,30,31],[372,1,1,31,32],[374,2,2,32,34],[390,1,1,34,35]]],[17,2,2,35,37,[[463,1,1,35,36],[468,1,1,36,37]]],[18,6,6,37,43,[[479,1,1,37,38],[517,1,1,38,39],[528,1,1,39,40],[566,1,1,40,41],[596,1,1,41,42],[603,1,1,42,43]]],[19,4,4,43,47,[[628,1,1,43,44],[629,2,2,44,46],[630,1,1,46,47]]],[22,6,6,47,53,[[713,2,2,47,49],[736,3,3,49,52],[738,1,1,52,53]]],[23,2,2,53,55,[[775,1,1,53,54],[783,1,1,54,55]]],[25,1,1,55,56,[[833,1,1,55,56]]],[32,1,1,56,57,[[895,1,1,56,57]]],[34,1,1,57,58,[[903,1,1,57,58]]],[38,1,1,58,59,[[927,1,1,58,59]]]],[632,1921,1935,3558,4357,5045,6032,6076,6097,6427,6636,6645,6722,6905,8597,8832,8986,8997,9115,9304,9529,9749,9867,9904,9941,9968,10793,10827,10853,10977,11270,11283,11358,11363,11694,13531,13666,13950,14532,14710,15345,15904,16117,16428,16438,16442,16478,18325,18326,18794,18795,18800,18826,19704,19932,21262,22612,22742,23136]]],["Yet",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13082]]],["for",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9650]]],["now",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6457]]],["then",[59,54,[[0,4,4,0,4,[[3,1,1,0,1],[11,1,1,1,2],[12,1,1,2,3],[48,1,1,3,4]]],[1,3,3,4,7,[[53,1,1,4,5],[61,2,2,5,7]]],[2,3,2,7,9,[[115,3,2,7,9]]],[4,1,1,9,10,[[181,1,1,9,10]]],[5,4,3,10,13,[[187,2,1,10,11],[200,1,1,11,12],[206,1,1,12,13]]],[6,3,3,13,16,[[215,3,3,13,16]]],[8,2,2,16,18,[[241,1,1,16,17],[255,1,1,17,18]]],[9,7,5,18,23,[[268,1,1,18,19],[271,2,1,19,20],[285,1,1,20,21],[287,1,1,21,22],[289,2,1,22,23]]],[10,2,2,23,25,[[299,2,2,23,25]]],[11,1,1,25,26,[[325,1,1,25,26]]],[12,3,2,26,28,[[348,2,1,26,27],[351,1,1,27,28]]],[17,5,5,28,33,[[438,1,1,28,29],[446,1,1,29,30],[448,1,1,30,31],[457,1,1,31,32],[473,1,1,32,33]]],[18,7,7,33,40,[[496,1,1,33,34],[528,1,1,34,35],[533,1,1,35,36],[546,1,1,36,37],[573,1,1,37,38],[596,1,1,38,39],[603,1,1,39,40]]],[19,1,1,40,41,[[647,1,1,40,41]]],[20,1,1,41,42,[[660,1,1,41,42]]],[21,1,1,42,43,[[678,1,1,42,43]]],[22,2,2,43,45,[[711,1,1,43,44],[719,1,1,44,45]]],[23,6,6,45,51,[[755,2,2,45,47],[766,3,3,47,50],[776,1,1,50,51]]],[27,1,1,51,52,[[863,1,1,51,52]]],[35,2,2,52,54,[[908,2,2,52,54]]]],[105,304,325,1477,1627,1860,1864,3558,3565,5699,5859,6198,6378,6631,6634,6642,7334,7742,8076,8156,8517,8598,8667,9062,9075,9890,10689,10789,12917,13123,13173,13415,13814,14181,14710,14764,14939,15477,15990,16117,16968,17348,17650,18302,18452,19241,19244,19469,19470,19476,19733,22112,22829,22831]]],["time",[1,1,[[12,1,1,0,1,[[357,1,1,0,1]]]],[10930]]]]},{"k":"H228","v":[["*",[3,2,[[26,3,2,0,2,[[852,3,2,0,2]]]],[21826,21829]]],["heat",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21826]]],["heated",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21826]]],["hot",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21829]]]]},{"k":"H229","v":[["Ezbai",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10710]]]]},{"k":"H230","v":[["gone",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21763,21766]]]]},{"k":"H231","v":[["hyssop",[10,10,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,5,5,1,6,[[103,5,5,1,6]]],[3,2,2,6,8,[[135,2,2,6,8]]],[10,1,1,8,9,[[294,1,1,8,9]]],[18,1,1,9,10,[[528,1,1,9,10]]]],[1838,3115,3117,3160,3162,3163,4295,4307,8877,14698]]]]},{"k":"H232","v":[["*",[14,12,[[11,1,1,0,1,[[313,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[22,3,2,2,4,[[683,1,1,2,3],[689,2,1,3,4]]],[23,8,7,4,11,[[757,8,7,4,11]]],[25,1,1,11,12,[[824,1,1,11,12]]]],[9541,13146,17766,17889,19267,19268,19270,19272,19273,19276,19277,21022]]],["girdle",[13,11,[[11,1,1,0,1,[[313,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[22,3,2,2,4,[[683,1,1,2,3],[689,2,1,3,4]]],[23,8,7,4,11,[[757,8,7,4,11]]]],[9541,13146,17766,17889,19267,19268,19270,19272,19273,19276,19277]]],["girdles",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21022]]]]},{"k":"H233","v":[["Then",[3,3,[[18,3,3,0,3,[[601,3,3,0,3]]]],[16105,16106,16107]]]]},{"k":"H234","v":[["memorial",[7,7,[[2,6,6,0,6,[[91,3,3,0,3],[94,1,1,3,4],[95,1,1,4,5],[113,1,1,5,6]]],[3,1,1,6,7,[[121,1,1,6,7]]]],[2764,2771,2778,2842,2864,3453,3818]]]]},{"k":"H235","v":[["*",[6,6,[[4,1,1,0,1,[[184,1,1,0,1]]],[8,1,1,1,2,[[244,1,1,1,2]]],[17,1,1,2,3,[[449,1,1,2,3]]],[19,1,1,3,4,[[647,1,1,3,4]]],[23,1,1,4,5,[[746,1,1,4,5]]],[25,1,1,5,6,[[828,1,1,5,6]]]],[5794,7398,13192,16968,19001,21140]]],["fail",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13192]]],["fro",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21140]]],["gaddest",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[19001]]],["gone",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5794]]],["spent",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7398]]],["way",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16968]]]]},{"k":"H236","v":[["*",[7,7,[[14,3,3,0,3,[[406,1,1,0,1],[407,2,2,1,3]]],[26,4,4,3,7,[[851,2,2,3,5],[855,2,2,5,7]]]],[12133,12142,12149,21775,21782,21923,21924]]],["go",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12149]]],["up",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12133]]],["went",[5,5,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,4,4,1,5,[[851,2,2,1,3],[855,2,2,3,5]]]],[12142,21775,21782,21923,21924]]]]},{"k":"H237","v":[["Ezel",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7749]]]]},{"k":"H238","v":[["*",[42,42,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[3,1,1,2,3,[[139,1,1,2,3]]],[4,2,2,3,5,[[153,1,1,3,4],[184,1,1,4,5]]],[6,1,1,5,6,[[215,1,1,5,6]]],[13,1,1,6,7,[[390,1,1,6,7]]],[15,1,1,7,8,[[421,1,1,7,8]]],[17,6,6,8,14,[[444,1,1,8,9],[467,1,1,9,10],[468,1,1,10,11],[469,2,2,11,13],[472,1,1,13,14]]],[18,15,15,14,29,[[482,1,1,14,15],[494,1,1,15,16],[516,1,1,16,17],[526,1,1,17,18],[531,1,1,18,19],[532,1,1,19,20],[554,1,1,20,21],[555,1,1,21,22],[557,1,1,22,23],[561,1,1,23,24],[563,1,1,24,25],[612,1,1,25,26],[617,1,1,26,27],[618,1,1,27,28],[620,1,1,28,29]]],[19,1,1,29,30,[[644,1,1,29,30]]],[20,1,1,30,31,[[670,1,1,30,31]]],[22,8,8,31,39,[[679,2,2,31,33],[686,1,1,33,34],[706,1,1,34,35],[710,1,1,35,36],[720,1,1,36,37],[729,1,1,37,38],[742,1,1,38,39]]],[23,1,1,39,40,[[757,1,1,39,40]]],[27,1,1,40,41,[[866,1,1,40,41]]],[28,1,1,41,42,[[876,1,1,41,42]]]],[102,1946,4434,4937,5759,6626,11696,12541,13067,13639,13651,13685,13699,13783,13974,14104,14524,14649,14727,14733,15094,15114,15199,15267,15290,16192,16269,16277,16294,16877,17532,17656,17664,17816,18187,18268,18503,18677,18889,19281,22153,22293]]],["Hearken",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13783]]],["ear",[33,33,[[1,1,1,0,1,[[64,1,1,0,1]]],[4,2,2,1,3,[[153,1,1,1,2],[184,1,1,2,3]]],[6,1,1,3,4,[[215,1,1,3,4]]],[13,1,1,4,5,[[390,1,1,4,5]]],[15,1,1,5,6,[[421,1,1,5,6]]],[17,2,2,6,8,[[467,1,1,6,7],[469,1,1,7,8]]],[18,13,13,8,21,[[482,1,1,8,9],[494,1,1,9,10],[516,1,1,10,11],[526,1,1,11,12],[531,1,1,12,13],[532,1,1,13,14],[554,1,1,14,15],[555,1,1,15,16],[557,1,1,16,17],[561,1,1,17,18],[563,1,1,18,19],[618,1,1,19,20],[620,1,1,20,21]]],[19,1,1,21,22,[[644,1,1,21,22]]],[22,8,8,22,30,[[679,2,2,22,24],[686,1,1,24,25],[706,1,1,25,26],[710,1,1,26,27],[720,1,1,27,28],[729,1,1,28,29],[742,1,1,29,30]]],[23,1,1,30,31,[[757,1,1,30,31]]],[27,1,1,31,32,[[866,1,1,31,32]]],[28,1,1,32,33,[[876,1,1,32,33]]]],[1946,4937,5759,6626,11696,12541,13639,13685,13974,14104,14524,14649,14727,14733,15094,15114,15199,15267,15290,16277,16294,16877,17656,17664,17816,18187,18268,18503,18677,18889,19281,22153,22293]]],["hear",[2,2,[[18,2,2,0,2,[[612,1,1,0,1],[617,1,1,1,2]]]],[16192,16269]]],["hearken",[4,4,[[0,1,1,0,1,[[3,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[17,2,2,2,4,[[468,1,1,2,3],[469,1,1,3,4]]]],[102,4434,13651,13699]]],["hearkened",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13067]]],["heed",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17532]]]]},{"k":"H239","v":[]},{"k":"H240","v":[["weapon",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5513]]]]},{"k":"H241","v":[["*",[187,179,[[0,7,7,0,7,[[19,1,1,0,1],[22,3,3,1,4],[34,1,1,4,5],[43,1,1,5,6],[49,1,1,6,7]]],[1,9,8,7,15,[[59,1,1,7,8],[60,1,1,8,9],[66,1,1,9,10],[70,1,1,10,11],[73,1,1,11,12],[78,2,1,12,13],[81,2,2,13,15]]],[2,6,6,15,21,[[97,2,2,15,17],[103,4,4,17,21]]],[3,3,3,21,24,[[127,2,2,21,23],[130,1,1,23,24]]],[4,7,7,24,31,[[157,1,1,24,25],[167,1,1,25,26],[181,1,1,26,27],[183,3,3,27,30],[184,1,1,30,31]]],[5,1,1,31,32,[[206,1,1,31,32]]],[6,4,4,32,36,[[217,1,1,32,33],[219,2,2,33,35],[227,1,1,35,36]]],[7,1,1,36,37,[[235,1,1,36,37]]],[8,13,12,37,49,[[238,1,1,37,38],[243,1,1,38,39],[244,1,1,39,40],[246,1,1,40,41],[250,1,1,41,42],[253,1,1,42,43],[255,3,3,43,46],[257,3,2,46,48],[260,1,1,48,49]]],[9,7,6,49,55,[[269,2,1,49,50],[273,2,2,50,52],[284,1,1,52,53],[288,2,2,53,55]]],[11,5,5,55,60,[[330,1,1,55,56],[331,2,2,56,58],[333,1,1,58,59],[335,1,1,59,60]]],[12,3,3,60,63,[[354,2,2,60,62],[365,1,1,62,63]]],[13,3,3,63,66,[[372,1,1,63,64],[373,1,1,64,65],[400,1,1,65,66]]],[15,4,4,66,70,[[413,2,2,66,68],[420,1,1,68,69],[425,1,1,69,70]]],[17,13,13,70,83,[[439,1,1,70,71],[447,1,1,71,72],[448,2,2,72,74],[450,1,1,74,75],[463,1,1,75,76],[464,1,1,76,77],[468,2,2,77,79],[469,1,1,79,80],[471,2,2,80,82],[477,1,1,82,83]]],[18,22,22,83,105,[[487,1,1,83,84],[494,1,1,84,85],[495,2,2,85,87],[508,1,1,87,88],[511,1,1,88,89],[517,1,1,89,90],[521,1,1,90,91],[522,1,1,91,92],[526,1,1,92,93],[535,1,1,93,94],[548,1,1,94,95],[555,1,1,95,96],[563,1,1,96,97],[565,1,1,97,98],[569,1,1,98,99],[571,1,1,99,100],[579,1,1,100,101],[592,1,1,101,102],[593,1,1,102,103],[607,1,1,103,104],[612,1,1,104,105]]],[19,14,14,105,119,[[629,1,1,105,106],[631,1,1,106,107],[632,2,2,107,109],[642,1,1,109,110],[645,1,1,110,111],[647,1,1,111,112],[648,1,1,112,113],[649,1,1,113,114],[650,2,2,114,116],[652,1,1,116,117],[653,1,1,117,118],[655,1,1,118,119]]],[20,1,1,119,120,[[659,1,1,119,120]]],[22,20,19,120,139,[[683,1,1,120,121],[684,2,1,121,122],[689,1,1,122,123],[700,1,1,123,124],[708,1,1,124,125],[710,1,1,125,126],[711,1,1,126,127],[713,1,1,127,128],[714,1,1,128,129],[715,2,2,129,131],[720,1,1,131,132],[721,1,1,132,133],[726,1,1,133,134],[727,1,1,134,135],[728,2,2,135,137],[733,1,1,137,138],[737,1,1,138,139]]],[23,28,24,139,163,[[746,1,1,139,140],[749,1,1,140,141],[750,1,1,141,142],[751,2,2,142,144],[753,1,1,144,145],[755,1,1,145,146],[761,1,1,146,147],[763,1,1,147,148],[769,1,1,148,149],[770,2,2,149,151],[772,2,1,151,152],[773,1,1,152,153],[778,1,1,153,154],[779,1,1,154,155],[780,10,7,155,162],[788,1,1,162,163]]],[24,1,1,163,164,[[799,1,1,163,164]]],[25,11,11,164,175,[[804,1,1,164,165],[809,1,1,165,166],[810,2,2,166,168],[811,1,1,168,169],[813,1,1,169,170],[817,1,1,170,171],[824,1,1,171,172],[825,1,1,172,173],[841,1,1,173,174],[845,1,1,174,175]]],[26,1,1,175,176,[[858,1,1,175,176]]],[29,1,1,176,177,[[881,1,1,176,177]]],[32,1,1,177,178,[[899,1,1,177,178]]],[37,1,1,178,179,[[917,1,1,178,179]]]],[503,581,584,587,1015,1342,1510,1779,1808,1997,2083,2184,2356,2440,2441,2940,2941,3125,3128,3136,3139,4025,4042,4136,5054,5336,5683,5739,5756,5758,5802,6376,6697,6756,6757,6982,7194,7287,7390,7406,7449,7574,7699,7732,7742,7743,7795,7804,7885,8100,8202,8207,8490,8609,8647,10050,10077,10089,10131,10167,10883,10888,11151,11322,11339,11963,12302,12307,12496,12672,12942,13139,13154,13170,13224,13526,13543,13658,13666,13686,13746,13751,13927,14058,14109,14124,14162,14333,14403,14531,14572,14607,14652,14783,14978,15114,15285,15310,15422,15440,15523,15836,15850,16142,16192,16435,16510,16518,16530,16838,16916,16966,16997,17032,17053,17056,17125,17158,17205,17323,17748,17779,17887,18066,18238,18262,18294,18325,18341,18369,18381,18500,18513,18622,18656,18666,18667,18743,18801,18967,19079,19099,19143,19145,19195,19234,19380,19410,19538,19583,19587,19625,19664,19815,19838,19848,19852,19855,19856,19857,19862,19863,20015,20410,20512,20622,20623,20627,20646,20682,20774,21032,21082,21481,21604,22006,22407,22680,22973]]],["+",[14,13,[[1,1,1,0,1,[[70,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[7,1,1,2,3,[[235,1,1,2,3]]],[8,4,3,3,6,[[255,2,2,3,5],[257,2,1,5,6]]],[9,2,2,6,8,[[273,1,1,6,7],[288,1,1,7,8]]],[11,1,1,8,9,[[335,1,1,8,9]]],[12,1,1,9,10,[[354,1,1,9,10]]],[13,1,1,10,11,[[400,1,1,10,11]]],[18,1,1,11,12,[[495,1,1,11,12]]],[25,1,1,12,13,[[845,1,1,12,13]]]],[2083,4025,7194,7742,7743,7795,8207,8647,10167,10888,11963,14162,21604]]],["audience",[7,7,[[0,3,3,0,3,[[22,3,3,0,3]]],[1,1,1,3,4,[[73,1,1,3,4]]],[8,1,1,4,5,[[260,1,1,4,5]]],[12,1,1,5,6,[[365,1,1,5,6]]],[15,1,1,6,7,[[425,1,1,6,7]]]],[581,584,587,2184,7885,11151,12672]]],["ear",[62,61,[[1,2,1,0,1,[[78,2,1,0,1]]],[2,6,6,1,7,[[97,2,2,1,3],[103,4,4,3,7]]],[4,1,1,7,8,[[167,1,1,7,8]]],[8,1,1,8,9,[[244,1,1,8,9]]],[11,1,1,9,10,[[331,1,1,9,10]]],[15,2,2,10,12,[[413,2,2,10,12]]],[17,7,7,12,19,[[439,1,1,12,13],[447,1,1,13,14],[448,1,1,14,15],[464,1,1,15,16],[469,1,1,16,17],[471,1,1,17,18],[477,1,1,18,19]]],[18,12,12,19,31,[[487,1,1,19,20],[494,1,1,20,21],[508,1,1,21,22],[522,1,1,22,23],[526,1,1,23,24],[535,1,1,24,25],[548,1,1,25,26],[563,1,1,26,27],[565,1,1,27,28],[571,1,1,28,29],[579,1,1,29,30],[593,1,1,30,31]]],[19,10,10,31,41,[[629,1,1,31,32],[631,1,1,32,33],[632,2,2,33,35],[642,1,1,35,36],[645,1,1,36,37],[647,1,1,37,38],[649,1,1,38,39],[652,1,1,39,40],[655,1,1,40,41]]],[20,1,1,41,42,[[659,1,1,41,42]]],[22,6,6,42,48,[[715,1,1,42,43],[726,1,1,43,44],[728,2,2,44,46],[733,1,1,46,47],[737,1,1,47,48]]],[23,10,10,48,58,[[750,1,1,48,49],[751,2,2,49,51],[753,1,1,51,52],[755,1,1,52,53],[761,1,1,53,54],[769,1,1,54,55],[778,1,1,55,56],[779,1,1,56,57],[788,1,1,57,58]]],[24,1,1,58,59,[[799,1,1,58,59]]],[26,1,1,59,60,[[858,1,1,59,60]]],[29,1,1,60,61,[[881,1,1,60,61]]]],[2356,2940,2941,3125,3128,3136,3139,5336,7406,10077,12302,12307,12942,13139,13154,13543,13686,13746,13927,14058,14109,14333,14607,14652,14783,14978,15285,15310,15440,15523,15850,16435,16510,16518,16530,16838,16916,16966,17032,17125,17205,17323,18369,18622,18666,18667,18743,18801,19099,19143,19145,19195,19234,19380,19538,19815,19838,20015,20410,22006,22407]]],["ears",[97,91,[[0,4,4,0,4,[[19,1,1,0,1],[34,1,1,1,2],[43,1,1,2,3],[49,1,1,3,4]]],[1,5,5,4,9,[[59,1,1,4,5],[60,1,1,5,6],[66,1,1,6,7],[81,2,2,7,9]]],[3,2,2,9,11,[[127,1,1,9,10],[130,1,1,10,11]]],[4,5,5,11,16,[[157,1,1,11,12],[181,1,1,12,13],[183,2,2,13,15],[184,1,1,15,16]]],[5,1,1,16,17,[[206,1,1,16,17]]],[6,4,4,17,21,[[217,1,1,17,18],[219,2,2,18,20],[227,1,1,20,21]]],[8,5,5,21,26,[[238,1,1,21,22],[243,1,1,22,23],[246,1,1,23,24],[250,1,1,24,25],[253,1,1,25,26]]],[9,4,3,26,29,[[269,2,1,26,27],[273,1,1,27,28],[288,1,1,28,29]]],[11,3,3,29,32,[[330,1,1,29,30],[331,1,1,30,31],[333,1,1,31,32]]],[12,1,1,32,33,[[354,1,1,32,33]]],[13,2,2,33,35,[[372,1,1,33,34],[373,1,1,34,35]]],[15,1,1,35,36,[[420,1,1,35,36]]],[17,5,5,36,41,[[448,1,1,36,37],[450,1,1,37,38],[463,1,1,38,39],[468,1,1,39,40],[471,1,1,40,41]]],[18,9,9,41,50,[[495,1,1,41,42],[511,1,1,42,43],[517,1,1,43,44],[521,1,1,44,45],[555,1,1,45,46],[569,1,1,46,47],[592,1,1,47,48],[607,1,1,48,49],[612,1,1,49,50]]],[19,4,4,50,54,[[648,1,1,50,51],[650,2,2,51,53],[653,1,1,53,54]]],[22,14,13,54,67,[[683,1,1,54,55],[684,2,1,55,56],[689,1,1,56,57],[700,1,1,57,58],[708,1,1,58,59],[710,1,1,59,60],[711,1,1,60,61],[713,1,1,61,62],[714,1,1,62,63],[715,1,1,63,64],[720,1,1,64,65],[721,1,1,65,66],[727,1,1,66,67]]],[23,18,14,67,81,[[746,1,1,67,68],[749,1,1,68,69],[763,1,1,69,70],[770,2,2,70,72],[772,2,1,72,73],[773,1,1,73,74],[780,10,7,74,81]]],[25,8,8,81,89,[[804,1,1,81,82],[809,1,1,82,83],[810,1,1,83,84],[813,1,1,84,85],[817,1,1,85,86],[824,1,1,86,87],[825,1,1,87,88],[841,1,1,88,89]]],[32,1,1,89,90,[[899,1,1,89,90]]],[37,1,1,90,91,[[917,1,1,90,91]]]],[503,1015,1342,1510,1779,1808,1997,2440,2441,4042,4136,5054,5683,5756,5758,5802,6376,6697,6756,6757,6982,7287,7390,7449,7574,7699,8100,8202,8609,10050,10089,10131,10883,11322,11339,12496,13170,13224,13526,13666,13751,14124,14403,14531,14572,15114,15422,15836,16142,16192,16997,17053,17056,17158,17748,17779,17887,18066,18238,18262,18294,18325,18341,18381,18500,18513,18656,18967,19079,19410,19583,19587,19625,19664,19848,19852,19855,19856,19857,19862,19863,20512,20622,20623,20682,20774,21032,21082,21481,22680,22973]]],["hearing",[5,5,[[4,1,1,0,1,[[183,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[17,1,1,2,3,[[468,1,1,2,3]]],[25,2,2,3,5,[[810,1,1,3,4],[811,1,1,4,5]]]],[5739,8490,13658,20627,20646]]],["me",[2,2,[[8,2,2,0,2,[[255,1,1,0,1],[257,1,1,1,2]]]],[7732,7804]]]]},{"k":"H242","v":[["Uzzensherah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10559]]]]},{"k":"H243","v":[["Aznothtabor",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6355]]]]},{"k":"H244","v":[["*",[2,1,[[3,2,1,0,1,[[142,2,1,0,1]]]],[4505]]],["Ozni",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4505]]],["Oznites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4505]]]]},{"k":"H245","v":[["Azaniah",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12558]]]]},{"k":"H246","v":[["chains",[2,2,[[23,2,2,0,2,[[784,2,2,0,2]]]],[19942,19945]]]]},{"k":"H247","v":[["*",[16,15,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[11,1,1,2,3,[[313,1,1,2,3]]],[17,3,3,3,6,[[465,1,1,3,4],[473,1,1,4,5],[475,1,1,5,6]]],[18,5,5,6,11,[[495,2,2,6,8],[507,1,1,8,9],[542,1,1,9,10],[570,1,1,10,11]]],[22,4,3,11,14,[[686,2,1,11,12],[723,1,1,12,13],[728,1,1,13,14]]],[23,1,1,14,15,[[745,1,1,14,15]]]],[7244,8642,9541,13575,13796,13871,14150,14157,14330,14866,15427,17816,18566,18673,18963]]],["about",[2,2,[[17,1,1,0,1,[[465,1,1,0,1]]],[22,1,1,1,2,[[728,1,1,1,2]]]],[13575,18673]]],["girded",[6,6,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,3,3,2,5,[[495,1,1,2,3],[507,1,1,3,4],[542,1,1,4,5]]],[22,1,1,5,6,[[723,1,1,5,6]]]],[7244,8642,14157,14330,14866,18566]]],["girdeth",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14150]]],["girt",[1,1,[[11,1,1,0,1,[[313,1,1,0,1]]]],[9541]]],["himself",[1,1,[[18,1,1,0,1,[[570,1,1,0,1]]]],[15427]]],["up",[3,3,[[17,2,2,0,2,[[473,1,1,0,1],[475,1,1,1,2]]],[23,1,1,2,3,[[745,1,1,2,3]]]],[13796,13871,18963]]],["yourselves",[2,1,[[22,2,1,0,1,[[686,2,1,0,1]]]],[17816]]]]},{"k":"H248","v":[["arm",[2,2,[[17,1,1,0,1,[[466,1,1,0,1]]],[23,1,1,1,2,[[776,1,1,1,2]]]],[13610,19752]]]]},{"k":"H249","v":[["*",[17,17,[[1,3,3,0,3,[[61,3,3,0,3]]],[2,7,7,3,10,[[105,1,1,3,4],[106,1,1,4,5],[107,1,1,5,6],[108,1,1,6,7],[112,1,1,7,8],[113,2,2,8,10]]],[3,4,4,10,14,[[125,1,1,10,11],[131,3,3,11,14]]],[5,1,1,14,15,[[194,1,1,14,15]]],[18,1,1,15,16,[[514,1,1,15,16]]],[25,1,1,16,17,[[848,1,1,16,17]]]],[1835,1864,1865,3230,3250,3277,3315,3444,3462,3468,3979,4166,4182,4183,6035,14485,21701]]],["+",[2,2,[[2,1,1,0,1,[[108,1,1,0,1]]],[3,1,1,1,2,[[131,1,1,1,2]]]],[3315,4183]]],["born",[4,4,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[3,2,2,2,4,[[125,1,1,2,3],[131,1,1,3,4]]]],[1835,3444,3979,4182]]],["country",[5,5,[[2,3,3,0,3,[[105,1,1,0,1],[106,1,1,1,2],[113,1,1,2,3]]],[3,1,1,3,4,[[131,1,1,3,4]]],[25,1,1,4,5,[[848,1,1,4,5]]]],[3230,3250,3468,4166,21701]]],["homeborn",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1865]]],["in",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1864]]],["land",[1,1,[[2,1,1,0,1,[[113,1,1,0,1]]]],[3462]]],["nation",[1,1,[[2,1,1,0,1,[[107,1,1,0,1]]]],[3277]]],["them",[1,1,[[5,1,1,0,1,[[194,1,1,0,1]]]],[6035]]],["tree",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14485]]]]},{"k":"H250","v":[["Ezrahite",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8875]]]]},{"k":"H251","v":[["*",[629,572,[[0,178,155,0,155,[[3,8,6,0,6],[8,3,3,6,9],[9,2,2,9,11],[11,1,1,11,12],[12,2,2,12,14],[13,5,4,14,18],[15,1,1,18,19],[18,1,1,19,20],[19,3,3,20,23],[21,3,3,23,26],[23,6,6,26,32],[24,2,2,32,34],[25,1,1,34,35],[26,13,13,35,48],[27,2,2,48,50],[28,6,4,50,54],[30,7,6,54,60],[31,5,5,60,65],[32,2,2,65,67],[33,2,2,67,69],[34,2,2,69,71],[35,1,1,71,72],[36,21,17,72,89],[37,8,6,89,95],[41,20,16,95,111],[42,11,9,111,120],[43,7,6,120,126],[44,12,9,126,135],[45,2,1,135,136],[46,7,7,136,143],[47,3,3,143,146],[48,3,3,146,149],[49,6,6,149,155]]],[1,17,16,155,171,[[50,1,1,155,156],[51,2,1,156,157],[53,2,2,157,159],[56,2,2,159,161],[59,1,1,161,162],[65,1,1,162,163],[74,1,1,163,164],[77,4,4,164,168],[81,2,2,168,170],[86,1,1,170,171]]],[2,23,19,171,190,[[96,1,1,171,172],[99,2,2,172,174],[105,1,1,174,175],[107,3,2,175,177],[108,1,1,177,178],[109,2,1,178,179],[110,2,2,179,181],[114,10,8,181,189],[115,1,1,189,190]]],[3,19,18,190,208,[[122,1,1,190,191],[124,1,1,191,192],[130,1,1,192,193],[132,1,1,193,194],[134,2,2,194,196],[136,3,3,196,199],[141,1,1,199,200],[143,7,6,200,206],[148,1,1,206,207],[152,1,1,207,208]]],[4,48,43,208,251,[[153,3,2,208,210],[154,2,2,210,212],[155,2,2,212,214],[162,1,1,214,215],[165,1,1,215,216],[167,7,6,216,222],[169,3,2,222,224],[170,4,4,224,228],[171,2,2,228,230],[172,1,1,230,231],[174,6,4,231,235],[175,3,3,235,238],[176,2,2,238,240],[177,6,6,240,246],[180,1,1,246,247],[184,1,1,247,248],[185,3,3,248,251]]],[5,13,12,251,263,[[187,2,2,251,253],[188,2,2,253,255],[192,1,1,255,256],[200,1,1,256,257],[201,1,1,257,258],[203,2,1,258,259],[208,4,4,259,263]]],[6,29,26,263,289,[[211,3,3,263,266],[213,1,1,266,267],[218,1,1,267,268],[219,12,10,268,278],[221,1,1,278,279],[224,1,1,279,280],[226,1,1,280,281],[228,3,2,281,283],[229,1,1,283,284],[230,3,3,284,287],[231,2,2,287,289]]],[7,2,2,289,291,[[235,2,2,289,291]]],[8,12,10,291,301,[[249,1,1,291,292],[251,1,1,292,293],[252,5,4,293,297],[255,2,1,297,298],[257,1,1,298,299],[261,1,1,299,300],[265,1,1,300,301]]],[9,34,29,301,330,[[267,1,1,301,302],[268,3,3,302,305],[269,4,3,305,308],[270,2,2,308,310],[276,1,1,310,311],[279,12,9,311,320],[280,2,1,320,321],[281,1,1,321,322],[284,1,1,322,323],[285,2,2,323,325],[286,2,2,325,327],[287,1,1,327,328],[289,2,2,328,330]]],[10,11,11,330,341,[[291,2,2,330,332],[292,4,4,332,336],[299,1,1,336,337],[302,1,1,337,338],[303,1,1,338,339],[310,2,2,339,341]]],[11,5,4,341,345,[[319,1,1,341,342],[321,1,1,342,343],[322,2,1,343,344],[335,1,1,344,345]]],[12,98,95,345,440,[[338,1,1,345,346],[339,2,2,346,348],[341,3,3,348,351],[342,3,3,351,354],[343,3,3,354,357],[344,4,4,357,361],[345,2,2,361,363],[346,9,8,363,371],[348,4,4,371,375],[349,4,4,375,379],[350,1,1,379,380],[352,11,10,380,390],[353,4,4,390,394],[356,2,2,394,396],[357,2,2,396,398],[360,2,2,398,400],[361,3,2,400,402],[362,24,24,402,426],[363,11,11,426,437],[364,2,2,437,439],[365,1,1,439,440]]],[13,26,24,440,464,[[371,1,1,440,441],[377,2,2,441,443],[385,2,1,443,444],[387,3,3,444,447],[388,1,1,447,448],[394,3,3,448,451],[395,2,2,451,453],[396,2,2,453,455],[397,3,3,455,458],[401,4,4,458,462],[402,3,2,462,464]]],[14,11,9,464,473,[[405,5,3,464,467],[408,1,1,467,468],[410,4,4,468,472],[412,1,1,472,473]]],[15,28,27,473,500,[[413,1,1,473,474],[415,2,2,474,476],[416,4,4,476,480],[417,7,6,480,486],[419,1,1,486,487],[422,2,2,487,489],[423,5,5,489,494],[424,5,5,494,499],[425,1,1,499,500]]],[16,1,1,500,501,[[435,1,1,500,501]]],[17,9,9,501,510,[[436,2,2,501,503],[441,1,1,503,504],[454,1,1,504,505],[457,1,1,505,506],[465,1,1,506,507],[476,1,1,507,508],[477,2,2,508,510]]],[18,7,7,510,517,[[499,1,1,510,511],[512,1,1,511,512],[526,1,1,512,513],[527,1,1,513,514],[546,1,1,514,515],[599,1,1,515,516],[610,1,1,516,517]]],[19,9,8,517,525,[[633,1,1,517,518],[644,2,2,518,520],[645,3,3,520,523],[646,1,1,523,524],[654,2,1,524,525]]],[20,1,1,525,526,[[662,1,1,525,526]]],[21,1,1,526,527,[[678,1,1,526,527]]],[22,6,6,527,533,[[681,1,1,527,528],[687,1,1,528,529],[697,1,1,529,530],[719,1,1,530,531],[744,2,2,531,533]]],[23,16,15,533,548,[[751,1,1,533,534],[753,2,1,534,535],[756,1,1,535,536],[757,1,1,536,537],[766,1,1,537,538],[767,1,1,538,539],[769,1,1,539,540],[773,1,1,540,541],[775,1,1,541,542],[778,3,3,542,545],[779,1,1,545,546],[785,1,1,546,547],[793,1,1,547,548]]],[25,10,9,548,557,[[805,1,1,548,549],[812,2,1,549,550],[819,2,2,550,552],[825,1,1,552,553],[834,1,1,553,554],[839,1,1,554,555],[845,1,1,555,556],[848,1,1,556,557]]],[27,3,3,557,560,[[863,1,1,557,558],[873,1,1,558,559],[874,1,1,559,560]]],[28,1,1,560,561,[[877,1,1,560,561]]],[29,2,2,561,563,[[879,2,2,561,563]]],[30,2,2,563,565,[[888,2,2,563,565]]],[32,2,2,565,567,[[897,1,1,565,566],[899,1,1,566,567]]],[36,1,1,567,568,[[910,1,1,567,568]]],[37,2,2,568,570,[[917,2,2,568,570]]],[38,2,2,570,572,[[925,1,1,570,571],[926,1,1,571,572]]]],[81,87,88,89,90,100,210,227,230,255,259,303,326,329,348,349,350,352,393,464,500,508,511,567,568,570,606,618,620,639,644,646,676,684,723,733,738,750,756,757,762,764,767,768,769,770,771,772,775,778,799,805,807,810,896,898,905,910,919,927,931,934,939,941,945,963,969,991,1005,1012,1018,1046,1085,1087,1088,1091,1092,1093,1094,1095,1096,1097,1099,1100,1102,1106,1109,1110,1113,1120,1127,1128,1130,1148,1149,1255,1256,1258,1259,1260,1265,1267,1268,1271,1272,1273,1280,1284,1285,1286,1290,1293,1294,1295,1296,1297,1303,1304,1319,1320,1338,1343,1344,1347,1350,1357,1359,1361,1362,1370,1372,1373,1374,1375,1382,1417,1421,1422,1423,1425,1426,1431,1432,1457,1470,1473,1478,1481,1499,1514,1520,1521,1523,1524,1530,1538,1565,1615,1619,1686,1687,1800,1962,2215,2294,2295,2297,2334,2465,2467,2613,2889,2981,2983,3203,3265,3267,3298,3339,3347,3355,3483,3494,3504,3505,3508,3515,3516,3517,3561,3830,3965,4112,4204,4259,4263,4314,4319,4325,4477,4558,4561,4563,4564,4565,4567,4724,4881,4908,4920,4942,4946,4993,4995,5195,5278,5321,5322,5326,5328,5330,5331,5379,5384,5386,5391,5399,5402,5424,5425,5435,5471,5472,5473,5474,5507,5519,5520,5532,5539,5550,5552,5553,5554,5556,5558,5665,5808,5819,5826,5834,5865,5866,5882,5887,5972,6195,6219,6279,6429,6430,6433,6434,6512,6522,6526,6577,6738,6755,6757,6759,6772,6775,6778,6780,6785,6795,6810,6832,6912,6980,7001,7007,7047,7067,7077,7082,7108,7124,7193,7200,7511,7608,7635,7636,7640,7646,7759,7788,7911,8001,8048,8071,8075,8076,8089,8108,8111,8126,8129,8250,8320,8321,8324,8325,8327,8329,8337,8343,8349,8363,8409,8480,8523,8552,8563,8564,8601,8671,8677,8726,8727,8777,8785,8791,8792,9064,9175,9214,9440,9441,9713,9758,9806,10174,10271,10338,10348,10394,10396,10412,10430,10435,10441,10493,10498,10502,10540,10551,10557,10570,10607,10614,10621,10624,10628,10632,10634,10640,10647,10653,10693,10699,10711,10718,10722,10749,10752,10759,10762,10796,10797,10798,10799,10800,10801,10803,10807,10808,10809,10827,10857,10858,10859,10918,10922,10931,10933,11005,11015,11040,11046,11053,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11084,11085,11086,11088,11089,11099,11102,11103,11105,11107,11109,11116,11127,11145,11280,11418,11436,11586,11626,11628,11637,11652,11772,11775,11779,11806,11825,11834,11836,11866,11867,11869,11971,11972,11975,11981,11997,12003,12099,12105,12106,12171,12218,12219,12220,12225,12270,12298,12328,12345,12361,12373,12378,12382,12383,12387,12389,12390,12392,12396,12422,12559,12578,12600,12601,12602,12605,12607,12631,12632,12633,12648,12660,12684,12869,12882,12887,12993,13310,13395,13586,13905,13933,13937,14226,14424,14655,14688,14943,16097,16170,16559,16875,16890,16910,16920,16925,16932,17179,17389,17641,17713,17848,18006,18457,18927,18942,19134,19179,19255,19280,19472,19519,19560,19651,19725,19810,19815,19818,19826,19965,20137,20546,20670,20859,20867,21079,21310,21446,21624,21693,22106,22255,22281,22319,22373,22375,22520,22522,22636,22666,22877,22971,22972,23091,23113]]],["+",[32,32,[[0,5,5,0,5,[[3,2,2,0,2],[13,1,1,2,3],[42,2,2,3,5]]],[1,1,1,5,6,[[51,1,1,5,6]]],[2,3,3,6,9,[[110,1,1,6,7],[114,2,2,7,9]]],[3,1,1,9,10,[[141,1,1,9,10]]],[4,5,5,10,15,[[167,1,1,10,11],[169,1,1,11,12],[170,1,1,12,13],[176,2,2,13,15]]],[9,1,1,15,16,[[269,1,1,15,16]]],[12,4,4,16,20,[[341,1,1,16,17],[349,1,1,17,18],[363,1,1,18,19],[364,1,1,19,20]]],[13,3,3,20,23,[[385,1,1,20,21],[394,2,2,21,23]]],[14,1,1,23,24,[[410,1,1,23,24]]],[15,3,3,24,27,[[413,1,1,24,25],[416,1,1,25,26],[423,1,1,26,27]]],[17,1,1,27,28,[[454,1,1,27,28]]],[19,2,2,28,30,[[645,1,1,28,29],[654,1,1,29,30]]],[23,1,1,30,31,[[751,1,1,30,31]]],[27,1,1,31,32,[[873,1,1,31,32]]]],[81,90,352,1297,1319,1565,3355,3494,3517,4477,5326,5384,5399,5532,5539,8111,10394,10722,11089,11127,11586,11772,11775,12225,12298,12378,12605,13310,16925,17179,19134,22255]]],["another",[22,22,[[0,4,4,0,4,[[25,1,1,0,1],[36,1,1,1,2],[41,2,2,2,4]]],[1,4,4,4,8,[[59,1,1,4,5],[65,1,1,5,6],[74,1,1,6,7],[86,1,1,7,8]]],[2,4,4,8,12,[[96,1,1,8,9],[114,2,2,9,11],[115,1,1,11,12]]],[3,1,1,12,13,[[130,1,1,12,13]]],[4,1,1,13,14,[[177,1,1,13,14]]],[11,1,1,14,15,[[319,1,1,14,15]]],[17,1,1,15,16,[[476,1,1,15,16]]],[23,2,2,16,18,[[757,1,1,16,17],[769,1,1,17,18]]],[25,3,3,18,21,[[805,1,1,18,19],[825,1,1,19,20],[848,1,1,20,21]]],[28,1,1,21,22,[[877,1,1,21,22]]]],[723,1102,1273,1280,1800,1962,2215,2613,2889,3483,3515,3561,4112,5558,9713,13905,19280,19560,20546,21079,21693,22319]]],["brethren",[312,294,[[0,80,74,0,74,[[8,2,2,0,2],[12,1,1,2,3],[15,1,1,3,4],[18,1,1,4,5],[23,1,1,5,6],[24,1,1,6,7],[26,2,2,7,9],[28,1,1,9,10],[30,7,6,10,16],[33,2,2,16,18],[36,18,16,18,34],[37,2,2,34,36],[41,10,10,36,46],[43,2,2,46,48],[44,9,7,48,55],[45,2,1,55,56],[46,7,7,56,63],[47,2,2,63,65],[48,3,3,65,68],[49,6,6,68,74]]],[1,3,3,74,77,[[50,1,1,74,75],[51,1,1,75,76],[53,1,1,76,77]]],[2,3,3,77,80,[[99,2,2,77,79],[114,1,1,79,80]]],[3,12,11,80,91,[[124,1,1,80,81],[132,1,1,81,82],[134,2,2,82,84],[136,1,1,84,85],[143,6,5,85,90],[148,1,1,90,91]]],[4,16,16,91,107,[[153,2,2,91,93],[154,2,2,93,95],[155,2,2,95,97],[162,1,1,97,98],[167,1,1,98,99],[169,1,1,99,100],[170,3,3,100,103],[177,1,1,103,104],[185,3,3,104,107]]],[5,12,11,107,118,[[187,2,2,107,109],[188,2,2,109,111],[192,1,1,111,112],[200,1,1,112,113],[203,2,1,113,114],[208,4,4,114,118]]],[6,18,17,118,135,[[218,1,1,118,119],[219,8,8,119,127],[221,1,1,127,128],[224,1,1,128,129],[226,1,1,129,130],[228,3,2,130,132],[229,1,1,132,133],[230,1,1,133,134],[231,1,1,134,135]]],[7,1,1,135,136,[[235,1,1,135,136]]],[8,8,7,136,143,[[251,1,1,136,137],[252,4,3,137,140],[255,1,1,140,141],[257,1,1,141,142],[265,1,1,142,143]]],[9,5,5,143,148,[[268,1,1,143,144],[269,1,1,144,145],[281,1,1,145,146],[285,2,2,146,148]]],[10,2,2,148,150,[[291,1,1,148,149],[302,1,1,149,150]]],[11,4,3,150,153,[[321,1,1,150,151],[322,2,1,151,152],[335,1,1,152,153]]],[12,74,71,153,224,[[341,1,1,153,154],[342,3,3,154,157],[343,2,2,157,159],[344,2,2,159,161],[345,1,1,161,162],[346,9,8,162,170],[349,2,2,170,172],[350,1,1,172,173],[352,11,10,173,183],[353,4,4,183,187],[360,2,2,187,189],[361,2,1,189,190],[362,24,24,190,214],[363,9,9,214,223],[365,1,1,223,224]]],[13,18,18,224,242,[[371,1,1,224,225],[377,2,2,225,227],[385,1,1,227,228],[387,3,3,228,231],[388,1,1,231,232],[394,1,1,232,233],[395,2,2,233,235],[396,2,2,235,237],[397,1,1,237,238],[401,4,4,238,242]]],[14,10,8,242,250,[[405,5,3,242,245],[408,1,1,245,246],[410,3,3,246,249],[412,1,1,249,250]]],[15,23,22,250,272,[[415,2,2,250,252],[416,3,3,252,255],[417,6,5,255,260],[422,2,2,260,262],[423,4,4,262,266],[424,5,5,266,271],[425,1,1,271,272]]],[16,1,1,272,273,[[435,1,1,272,273]]],[17,3,3,273,276,[[441,1,1,273,274],[477,2,2,274,276]]],[18,4,4,276,280,[[499,1,1,276,277],[546,1,1,277,278],[599,1,1,278,279],[610,1,1,279,280]]],[19,3,3,280,283,[[633,1,1,280,281],[644,1,1,281,282],[646,1,1,282,283]]],[22,2,2,283,285,[[744,2,2,283,285]]],[23,5,5,285,290,[[756,1,1,285,286],[773,1,1,286,287],[779,1,1,287,288],[785,1,1,288,289],[793,1,1,289,290]]],[25,2,1,290,291,[[812,2,1,290,291]]],[27,2,2,291,293,[[863,1,1,291,292],[874,1,1,292,293]]],[32,1,1,293,294,[[897,1,1,293,294]]]],[227,230,326,393,464,618,676,756,764,799,896,898,905,910,919,927,991,1005,1085,1087,1088,1091,1092,1093,1094,1095,1096,1097,1099,1100,1106,1109,1110,1113,1120,1130,1255,1256,1258,1259,1260,1265,1271,1280,1284,1285,1338,1357,1359,1361,1362,1373,1374,1375,1382,1417,1421,1422,1423,1425,1426,1431,1432,1457,1473,1478,1481,1499,1514,1520,1521,1523,1524,1530,1538,1565,1619,2981,2983,3515,3965,4204,4259,4263,4314,4558,4561,4563,4564,4565,4724,4908,4920,4942,4946,4993,4995,5195,5326,5379,5386,5391,5402,5552,5819,5826,5834,5865,5866,5882,5887,5972,6195,6279,6429,6430,6433,6434,6738,6755,6757,6759,6778,6780,6785,6795,6810,6832,6912,6980,7001,7007,7047,7067,7124,7200,7608,7635,7636,7640,7759,7788,8001,8075,8089,8409,8523,8552,8726,9175,9758,9806,10174,10412,10430,10435,10441,10498,10502,10540,10557,10607,10621,10624,10628,10632,10634,10640,10647,10653,10752,10759,10762,10796,10797,10798,10799,10800,10801,10803,10807,10808,10809,10827,10857,10858,10859,11005,11015,11046,11053,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11084,11085,11086,11088,11102,11103,11105,11107,11109,11145,11280,11418,11436,11586,11626,11628,11637,11652,11779,11806,11825,11834,11836,11869,11971,11972,11975,11981,12099,12105,12106,12171,12218,12219,12220,12270,12328,12345,12361,12373,12382,12383,12387,12390,12392,12396,12559,12578,12600,12601,12602,12607,12631,12632,12633,12648,12660,12684,12869,12993,13933,13937,14226,14943,16097,16170,16559,16875,16932,18927,18942,19255,19651,19826,19965,20137,20670,22106,22281,22636]]],["brethren's",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5435]]],["brother",[234,221,[[0,77,71,0,71,[[3,3,2,0,2],[8,1,1,2,3],[9,1,1,3,4],[13,3,2,4,6],[19,3,3,6,9],[21,3,3,9,12],[23,4,4,12,16],[24,1,1,16,17],[26,9,9,17,26],[27,2,2,26,28],[28,5,3,28,31],[31,5,5,31,36],[32,2,2,36,38],[34,2,2,38,40],[35,1,1,40,41],[36,2,2,41,43],[37,4,4,43,47],[41,8,7,47,54],[42,9,9,54,63],[43,5,4,63,67],[44,3,3,67,70],[47,1,1,70,71]]],[1,9,9,71,80,[[53,1,1,71,72],[56,2,2,72,74],[77,4,4,74,78],[81,2,2,78,80]]],[2,9,9,80,89,[[105,1,1,80,81],[107,1,1,81,82],[108,1,1,82,83],[110,1,1,83,84],[114,5,5,84,89]]],[3,5,5,89,94,[[122,1,1,89,90],[136,2,2,90,92],[143,1,1,92,93],[152,1,1,93,94]]],[4,21,20,94,114,[[153,1,1,94,95],[165,1,1,95,96],[167,5,5,96,101],[169,1,1,101,102],[171,2,2,102,104],[174,3,2,104,106],[175,3,3,106,109],[177,3,3,109,112],[180,1,1,112,113],[184,1,1,113,114]]],[5,1,1,114,115,[[201,1,1,114,115]]],[6,11,11,115,126,[[211,3,3,115,118],[213,1,1,118,119],[219,4,4,119,123],[230,2,2,123,125],[231,1,1,125,126]]],[7,1,1,126,127,[[235,1,1,126,127]]],[8,4,4,127,131,[[249,1,1,127,128],[252,1,1,128,129],[255,1,1,129,130],[261,1,1,130,131]]],[9,28,24,131,155,[[267,1,1,131,132],[268,2,2,132,134],[269,2,2,134,136],[270,2,2,136,138],[276,1,1,138,139],[279,12,9,139,148],[280,2,1,148,149],[284,1,1,149,150],[286,2,2,150,152],[287,1,1,152,153],[289,2,2,153,155]]],[10,8,8,155,163,[[291,1,1,155,156],[292,3,3,156,159],[299,1,1,159,160],[303,1,1,160,161],[310,2,2,161,163]]],[12,18,18,163,181,[[339,2,2,163,165],[341,1,1,165,166],[343,1,1,166,167],[344,2,2,167,169],[345,1,1,169,170],[348,4,4,170,174],[356,2,2,174,176],[357,2,2,176,178],[361,1,1,178,179],[363,1,1,179,180],[364,1,1,180,181]]],[13,5,4,181,185,[[397,2,2,181,183],[402,3,2,183,185]]],[15,2,2,185,187,[[417,1,1,185,186],[419,1,1,186,187]]],[17,2,2,187,189,[[457,1,1,187,188],[465,1,1,188,189]]],[18,3,3,189,192,[[512,1,1,189,190],[526,1,1,190,191],[527,1,1,191,192]]],[19,3,3,192,195,[[644,1,1,192,193],[645,2,2,193,195]]],[20,1,1,195,196,[[662,1,1,195,196]]],[21,1,1,196,197,[[678,1,1,196,197]]],[22,4,4,197,201,[[681,1,1,197,198],[687,1,1,198,199],[697,1,1,199,200],[719,1,1,200,201]]],[23,8,7,201,208,[[753,2,1,201,202],[766,1,1,202,203],[767,1,1,203,204],[775,1,1,204,205],[778,3,3,205,208]]],[25,4,4,208,212,[[819,1,1,208,209],[834,1,1,209,210],[839,1,1,210,211],[845,1,1,211,212]]],[29,1,1,212,213,[[879,1,1,212,213]]],[30,2,2,213,215,[[888,2,2,213,215]]],[32,1,1,215,216,[[899,1,1,215,216]]],[36,1,1,216,217,[[910,1,1,216,217]]],[37,2,2,217,219,[[917,2,2,217,219]]],[38,2,2,219,221,[[925,1,1,219,220],[926,1,1,220,221]]]],[87,88,210,255,349,350,500,508,511,567,568,570,606,620,644,646,684,733,738,750,757,762,767,768,769,770,775,778,805,807,810,931,934,939,941,945,963,969,1012,1018,1046,1109,1110,1127,1128,1148,1149,1256,1267,1268,1272,1273,1286,1290,1293,1294,1295,1296,1297,1303,1304,1319,1320,1343,1344,1347,1350,1362,1370,1372,1470,1615,1686,1687,2294,2295,2297,2334,2465,2467,3203,3265,3298,3347,3494,3504,3505,3508,3516,3830,4319,4325,4567,4881,4908,5278,5321,5322,5328,5330,5331,5379,5424,5425,5471,5472,5507,5519,5520,5550,5553,5554,5665,5808,6219,6512,6522,6526,6577,6757,6772,6775,6778,7077,7082,7108,7193,7511,7646,7759,7911,8048,8071,8076,8108,8111,8126,8129,8250,8320,8321,8324,8325,8327,8329,8337,8343,8349,8363,8480,8563,8564,8601,8671,8677,8727,8777,8791,8792,9064,9214,9440,9441,10338,10348,10396,10493,10551,10570,10614,10693,10699,10711,10718,10918,10922,10931,10933,11040,11099,11116,11866,11867,11997,12003,12389,12422,13395,13586,14424,14655,14688,16890,16910,16920,17389,17641,17713,17848,18006,18457,19179,19472,19519,19725,19810,19815,19818,20867,21310,21446,21624,22375,22520,22522,22666,22877,22971,22972,23091,23113]]],["brother's",[24,22,[[0,11,11,0,11,[[3,3,3,0,3],[9,1,1,3,4],[11,1,1,4,5],[13,1,1,5,6],[23,1,1,6,7],[26,2,2,7,9],[37,2,2,9,11]]],[2,4,2,11,13,[[107,2,1,11,12],[109,2,1,12,13]]],[4,4,4,13,17,[[174,3,3,13,16],[177,1,1,16,17]]],[10,1,1,17,18,[[292,1,1,17,18]]],[12,1,1,18,19,[[338,1,1,18,19]]],[17,2,2,19,21,[[436,2,2,19,21]]],[19,1,1,21,22,[[654,1,1,21,22]]]],[88,89,100,259,303,348,639,771,772,1127,1128,3267,3339,5471,5473,5474,5556,8785,10271,12882,12887,17179]]],["brotherly",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22373]]],["kindred",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10749]]],["like",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20859]]],["other",[1,1,[[0,1,1,0,1,[[12,1,1,0,1]]]],[329]]]]},{"k":"H252","v":[["brethren",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12191]]]]},{"k":"H253","v":[["*",[2,2,[[25,2,2,0,2,[[807,1,1,0,1],[822,1,1,1,2]]]],[20574,20959]]],["Alas",[1,1,[[25,1,1,0,1,[[807,1,1,0,1]]]],[20574]]],["ah",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20959]]]]},{"k":"H254","v":[["hearth",[3,2,[[23,3,2,0,2,[[780,3,2,0,2]]]],[19864,19865]]]]},{"k":"H255","v":[["creatures",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17927]]]]},{"k":"H256","v":[["*",[93,81,[[10,49,44,0,44,[[306,6,4,0,4],[307,1,1,4,5],[308,17,15,5,20],[309,1,1,20,21],[310,3,3,21,24],[311,15,14,24,38],[312,6,6,38,44]]],[11,27,22,44,66,[[313,1,1,44,45],[315,2,2,45,47],[320,9,6,47,53],[321,6,5,53,58],[322,7,6,58,64],[333,2,2,64,66]]],[13,14,12,66,78,[[384,5,4,66,70],[387,3,2,70,72],[388,6,6,72,78]]],[23,2,2,78,80,[[773,2,2,78,80]]],[32,1,1,80,81,[[898,1,1,80,81]]]],[9311,9312,9313,9316,9318,9342,9343,9344,9346,9347,9350,9353,9357,9358,9361,9382,9383,9385,9386,9387,9388,9410,9421,9422,9452,9453,9454,9455,9459,9466,9467,9469,9471,9472,9475,9476,9478,9480,9500,9519,9520,9521,9529,9531,9534,9577,9581,9743,9745,9752,9754,9755,9756,9763,9764,9765,9781,9785,9794,9803,9804,9810,9811,9823,10122,10132,11543,11544,11545,11561,11630,11637,11647,11648,11649,11650,11651,11652,19656,19657,22664]]],["Ahab",[91,80,[[10,48,43,0,43,[[306,6,4,0,4],[307,1,1,4,5],[308,17,15,5,20],[309,1,1,20,21],[310,3,3,21,24],[311,14,13,24,37],[312,6,6,37,43]]],[11,26,22,43,65,[[313,1,1,43,44],[315,2,2,44,46],[320,9,6,46,52],[321,6,5,52,57],[322,6,6,57,63],[333,2,2,63,65]]],[13,14,12,65,77,[[384,5,4,65,69],[387,3,2,69,71],[388,6,6,71,77]]],[23,2,2,77,79,[[773,2,2,77,79]]],[32,1,1,79,80,[[898,1,1,79,80]]]],[9311,9312,9313,9316,9318,9342,9343,9344,9346,9347,9350,9353,9357,9358,9361,9382,9383,9385,9386,9387,9388,9410,9421,9422,9452,9453,9454,9455,9466,9467,9469,9471,9472,9475,9476,9478,9480,9500,9519,9520,9521,9529,9531,9534,9577,9581,9743,9745,9752,9754,9755,9756,9763,9764,9765,9781,9785,9794,9803,9804,9810,9811,9823,10122,10132,11543,11544,11545,11561,11630,11637,11647,11648,11649,11650,11651,11652,19656,19657,22664]]],["Ahab's",[2,2,[[10,1,1,0,1,[[311,1,1,0,1]]],[11,1,1,1,2,[[322,1,1,1,2]]]],[9459,9794]]]]},{"k":"H257","v":[["Ahban",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10335]]]]},{"k":"H258","v":[["other",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20960]]]]},{"k":"H259","v":[["*",[968,739,[[0,47,43,0,43,[[0,2,2,0,2],[1,3,3,2,5],[2,1,1,5,6],[3,1,1,6,7],[7,3,2,7,9],[9,1,1,9,10],[10,4,2,10,12],[18,1,1,12,13],[20,1,1,13,14],[21,1,1,14,15],[25,1,1,15,16],[26,3,3,16,19],[28,1,1,19,20],[31,2,2,20,22],[32,1,1,22,23],[33,2,2,23,25],[36,2,2,25,27],[39,1,1,27,28],[40,5,5,28,33],[41,8,7,33,40],[43,1,1,40,41],[47,1,1,41,42],[48,1,1,42,43]]],[1,99,69,43,112,[[50,1,1,43,44],[57,1,1,44,45],[58,2,2,45,47],[59,1,1,47,48],[60,1,1,48,49],[61,3,3,49,52],[63,1,1,52,53],[65,2,2,53,55],[66,2,1,55,56],[67,2,2,56,58],[72,1,1,58,59],[73,1,1,59,60],[74,7,5,60,65],[75,21,14,65,79],[76,1,1,79,80],[77,2,2,80,82],[78,8,6,82,88],[79,2,1,88,89],[82,1,1,89,90],[85,29,14,90,104],[86,7,5,104,109],[88,1,1,109,110],[89,2,2,110,112]]],[2,49,37,112,149,[[93,5,4,112,116],[94,6,5,116,121],[95,2,2,121,123],[96,2,2,123,125],[97,3,1,125,126],[101,2,1,126,127],[102,1,1,127,128],[103,12,8,128,136],[104,4,2,136,138],[105,4,3,138,141],[111,1,1,141,142],[112,3,3,142,145],[113,2,2,145,147],[114,1,1,147,148],[115,1,1,148,149]]],[3,178,122,149,271,[[117,4,4,149,153],[118,2,2,153,155],[122,7,3,155,158],[123,89,51,158,209],[124,2,1,209,210],[125,1,1,210,211],[126,1,1,211,212],[127,2,2,212,214],[129,2,2,214,216],[130,1,1,216,217],[131,11,8,217,225],[132,3,2,225,227],[133,3,2,227,229],[144,15,13,229,242],[145,24,19,242,261],[147,5,5,261,266],[149,1,1,266,267],[150,2,1,267,268],[151,1,1,268,269],[152,2,2,269,271]]],[4,26,24,271,295,[[153,3,3,271,274],[156,1,1,274,275],[158,1,1,275,276],[164,1,1,276,277],[165,1,1,277,278],[167,2,1,278,279],[168,1,1,279,280],[169,2,2,280,282],[170,1,1,282,283],[171,3,3,283,286],[173,2,1,286,287],[175,1,1,287,288],[176,1,1,288,289],[177,2,2,289,291],[180,3,3,291,294],[184,1,1,294,295]]],[5,60,37,295,332,[[189,4,3,295,298],[190,5,3,298,301],[192,3,3,301,304],[193,2,1,304,305],[195,1,1,305,306],[196,2,2,306,308],[198,32,16,308,324],[201,1,1,324,325],[203,3,2,325,327],[206,1,1,327,328],[208,3,2,328,330],[209,3,2,330,332]]],[6,27,25,332,357,[[214,1,1,332,333],[216,1,1,333,334],[218,1,1,334,335],[219,5,5,335,340],[223,1,1,340,341],[225,1,1,341,342],[226,5,4,342,346],[227,2,2,346,348],[228,1,1,348,349],[229,1,1,349,350],[230,5,4,350,354],[231,3,3,354,357]]],[7,2,2,357,359,[[232,1,1,357,358],[233,1,1,358,359]]],[8,43,33,359,392,[[236,4,4,359,363],[237,2,2,363,365],[241,8,4,365,369],[242,2,2,369,371],[244,2,2,371,373],[245,3,1,373,374],[246,1,1,374,375],[248,3,2,375,377],[249,6,3,377,380],[251,2,2,380,382],[252,1,1,382,383],[257,1,1,383,384],[259,1,1,384,385],[260,1,1,385,386],[261,4,4,386,390],[262,2,2,390,392]]],[9,35,27,392,419,[[267,1,1,392,393],[268,5,4,393,397],[269,1,1,397,398],[270,1,1,398,399],[272,4,2,399,401],[273,2,2,401,403],[275,1,1,403,404],[278,4,2,404,406],[279,2,2,406,408],[280,3,2,408,410],[281,1,1,410,411],[283,5,3,411,414],[284,2,2,414,416],[285,1,1,416,417],[289,1,1,417,418],[290,1,1,418,419]]],[10,63,51,419,470,[[292,2,2,419,421],[293,4,2,421,423],[294,3,3,423,426],[296,7,6,426,432],[297,17,12,432,444],[298,1,1,444,445],[300,4,4,445,449],[301,3,3,449,452],[302,3,2,452,454],[303,1,1,454,455],[304,1,1,455,456],[305,1,1,456,457],[306,1,1,457,458],[308,5,3,458,461],[309,3,3,461,464],[310,3,3,464,467],[312,4,3,467,470]]],[11,33,29,470,499,[[314,2,1,470,471],[315,1,1,471,472],[316,6,4,472,476],[318,5,5,476,481],[319,2,2,481,483],[320,2,2,483,485],[321,2,2,485,487],[324,1,1,487,488],[326,1,1,488,489],[327,1,1,489,490],[329,2,2,490,492],[330,1,1,492,493],[334,1,1,493,494],[335,1,1,494,495],[336,2,1,495,496],[337,3,3,496,499]]],[12,13,13,499,512,[[338,1,1,499,500],[348,1,1,500,501],[349,2,2,501,503],[354,2,2,503,505],[358,1,1,505,506],[360,1,1,506,507],[361,2,2,507,509],[362,1,1,509,510],[364,1,1,510,511],[366,1,1,511,512]]],[13,29,25,512,537,[[369,4,3,512,515],[370,2,2,515,517],[371,2,1,517,518],[375,4,4,518,522],[378,1,1,522,523],[382,1,1,523,524],[384,4,3,524,527],[388,1,1,527,528],[390,1,1,528,529],[394,1,1,529,530],[395,1,1,530,531],[396,1,1,531,532],[398,1,1,532,533],[400,1,1,533,534],[402,4,3,534,537]]],[14,12,11,537,548,[[403,1,1,537,538],[404,2,2,538,540],[405,3,3,540,543],[408,1,1,543,544],[409,2,1,544,545],[412,3,3,545,548]]],[15,11,9,548,557,[[413,1,1,548,549],[416,2,1,549,550],[417,2,1,550,551],[419,3,3,551,554],[420,2,2,554,556],[423,1,1,556,557]]],[16,5,5,557,562,[[428,2,2,557,559],[429,1,1,559,560],[432,1,1,560,561],[433,1,1,561,562]]],[17,14,12,562,574,[[437,1,1,562,563],[444,2,2,563,565],[449,1,1,565,566],[458,1,1,566,567],[466,1,1,567,568],[468,2,2,568,570],[475,1,1,570,571],[476,2,1,571,572],[477,3,2,572,574]]],[18,9,9,574,583,[[491,1,1,574,575],[504,1,1,575,576],[511,1,1,576,577],[530,1,1,577,578],[539,1,1,578,579],[559,1,1,579,580],[566,1,1,580,581],[583,1,1,581,582],[616,1,1,582,583]]],[19,2,2,583,585,[[628,1,1,583,584],[655,1,1,584,585]]],[20,19,16,585,601,[[660,1,1,585,586],[661,3,2,586,588],[662,6,5,588,593],[664,1,1,593,594],[665,3,2,594,596],[667,3,3,596,599],[669,1,1,599,600],[670,1,1,600,601]]],[21,4,2,601,603,[[674,2,1,601,602],[676,2,1,602,603]]],[22,20,17,603,620,[[682,1,1,603,604],[683,1,1,604,605],[684,2,2,605,607],[687,1,1,607,608],[688,1,1,608,609],[697,1,1,609,610],[701,1,1,610,611],[705,2,1,611,612],[708,2,1,612,613],[712,1,1,613,614],[714,1,1,614,615],[725,1,1,615,616],[729,1,1,616,617],[743,1,1,617,618],[744,3,2,618,620]]],[23,13,11,620,631,[[747,1,1,620,621],[754,1,1,621,622],[768,2,1,622,623],[776,2,1,623,624],[779,1,1,624,625],[795,1,1,625,626],[796,5,5,626,631]]],[25,107,74,631,705,[[802,4,3,631,634],[805,1,1,634,635],[808,1,1,635,636],[809,2,2,636,638],[810,1,1,638,639],[811,9,4,639,643],[812,1,1,643,644],[817,1,1,644,645],[818,1,1,645,646],[819,1,1,646,647],[820,2,2,647,649],[822,1,1,649,650],[824,2,2,650,652],[827,1,1,652,653],[830,1,1,653,654],[831,1,1,654,655],[832,2,1,655,656],[833,1,1,656,657],[834,3,3,657,660],[835,1,1,660,661],[838,11,5,661,666],[841,22,11,666,677],[842,3,2,677,679],[843,1,1,679,680],[844,2,2,680,682],[846,4,4,682,686],[847,2,2,686,688],[849,25,17,688,705]]],[26,19,14,705,719,[[850,1,1,705,706],[857,6,3,706,709],[858,3,3,709,712],[859,4,3,712,715],[860,3,3,715,718],[861,2,1,718,719]]],[27,1,1,719,720,[[862,1,1,719,720]]],[29,5,3,720,723,[[882,4,2,720,722],[884,1,1,722,723]]],[30,1,1,723,724,[[888,1,1,723,724]]],[31,1,1,724,725,[[891,1,1,724,725]]],[35,1,1,725,726,[[908,1,1,725,726]]],[36,3,3,726,729,[[909,1,1,726,727],[910,2,2,727,729]]],[37,13,8,729,737,[[913,2,1,729,730],[914,2,1,730,731],[915,1,1,731,732],[918,2,1,732,733],[921,3,2,733,735],[924,3,2,735,737]]],[38,4,2,737,739,[[926,4,2,737,739]]]],[4,8,41,51,54,77,98,188,196,259,267,272,466,528,549,702,765,771,772,815,936,950,973,996,1002,1092,1103,1177,1200,1206,1217,1220,1221,1263,1265,1268,1271,1279,1284,1285,1352,1473,1489,1547,1741,1748,1749,1796,1807,1834,1862,1865,1917,1969,1980,1995,2002,2003,2173,2180,2207,2214,2227,2228,2231,2237,2239,2240,2241,2243,2245,2246,2251,2252,2254,2256,2259,2260,2261,2281,2303,2310,2337,2339,2351,2359,2375,2376,2392,2478,2575,2576,2577,2578,2579,2581,2584,2587,2588,2590,2592,2595,2596,2597,2607,2612,2622,2623,2626,2674,2709,2724,2797,2808,2817,2822,2834,2835,2837,2843,2847,2852,2856,2886,2893,2943,3052,3054,3116,3121,3123,3132,3133,3141,3142,3161,3183,3198,3206,3209,3235,3397,3420,3421,3426,3451,3468,3517,3550,3605,3622,3645,3648,3674,3686,3834,3837,3842,3853,3861,3863,3864,3865,3866,3869,3870,3871,3872,3875,3876,3877,3878,3881,3882,3883,3884,3887,3888,3889,3890,3893,3894,3895,3896,3899,3900,3901,3902,3905,3906,3907,3908,3911,3912,3913,3914,3917,3918,3919,3920,3923,3924,3925,3926,3929,3930,3931,3932,3935,3951,3979,3992,4043,4050,4077,4098,4123,4158,4164,4165,4168,4169,4177,4180,4182,4209,4216,4247,4250,4581,4584,4588,4589,4590,4592,4596,4598,4599,4604,4605,4606,4607,4609,4610,4612,4613,4616,4617,4618,4619,4622,4623,4624,4627,4630,4633,4636,4639,4642,4644,4646,4692,4694,4698,4703,4711,4798,4834,4875,4882,4887,4894,4895,4915,5046,5090,5254,5284,5326,5347,5366,5370,5390,5411,5417,5421,5462,5516,5530,5552,5558,5618,5636,5666,5788,5905,5906,5909,5912,5914,5915,5952,5960,5963,5997,6039,6066,6106,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6253,6289,6292,6376,6440,6446,6470,6474,6615,6670,6737,6756,6759,6772,6791,6807,6886,6933,6956,6960,6977,6978,6985,6991,7012,7037,7055,7062,7065,7085,7105,7108,7110,7131,7162,7213,7214,7217,7236,7274,7276,7335,7338,7343,7348,7361,7364,7394,7406,7421,7452,7502,7503,7512,7513,7548,7613,7615,7654,7807,7853,7875,7913,7920,7925,7927,7931,7935,8037,8050,8067,8070,8074,8094,8122,8176,8177,8187,8203,8238,8287,8289,8330,8347,8362,8383,8391,8458,8461,8471,8488,8489,8525,8661,8704,8786,8790,8833,8841,8851,8863,8866,8920,8921,8922,8923,8930,8934,8949,8950,8951,8952,8961,8964,8966,8968,8971,8972,8976,8978,9041,9093,9095,9096,9101,9121,9140,9144,9180,9181,9195,9239,9259,9306,9347,9364,9366,9389,9391,9392,9421,9437,9443,9488,9489,9493,9567,9587,9604,9625,9638,9642,9676,9677,9679,9684,9686,9715,9720,9733,9753,9757,9785,9859,9919,9945,10010,10011,10048,10146,10201,10220,10238,10239,10241,10271,10684,10734,10758,10869,10884,10944,10994,11021,11032,11074,11110,11165,11240,11241,11246,11259,11261,11281,11377,11379,11380,11385,11450,11522,11549,11550,11554,11646,11685,11770,11808,11839,11887,11934,11998,12004,12015,12017,12053,12091,12098,12103,12106,12171,12182,12265,12268,12269,12298,12376,12400,12450,12457,12486,12494,12495,12589,12755,12760,12773,12816,12829,12901,13054,13073,13185,13432,13603,13664,13673,13869,13904,13933,13936,14083,14289,14408,14722,14838,15240,15361,15662,16255,16414,17214,17347,17378,17379,17389,17390,17391,17392,17393,17423,17456,17457,17477,17478,17493,17519,17534,17591,17623,17734,17749,17771,17775,17843,17867,18022,18092,18163,18234,18319,18339,18608,18675,18922,18930,18939,19016,19209,19526,19770,19825,20272,20277,20296,20297,20298,20301,20470,20479,20480,20538,20582,20611,20612,20624,20642,20643,20647,20654,20674,20767,20832,20859,20884,20886,20963,21009,21020,21101,21200,21224,21231,21249,21282,21304,21310,21336,21413,21414,21416,21419,21421,21482,21483,21484,21485,21487,21489,21503,21519,21520,21521,21526,21537,21550,21556,21585,21586,21637,21641,21645,21648,21672,21677,21703,21704,21705,21706,21707,21708,21709,21710,21725,21726,21727,21728,21729,21733,21734,21735,21736,21758,21964,21970,21974,21989,21990,22015,22020,22028,22036,22037,22056,22063,22086,22105,22417,22418,22459,22521,22562,22829,22841,22856,22861,22921,22925,22943,22997,23035,23036,23075,23077,23113,23118]]],["+",[55,49,[[0,2,2,0,2,[[31,1,1,0,1],[36,1,1,1,2]]],[1,3,3,2,5,[[74,1,1,2,3],[86,1,1,3,4],[89,1,1,4,5]]],[2,4,4,5,9,[[93,3,3,5,8],[94,1,1,8,9]]],[3,5,4,9,13,[[123,1,1,9,10],[133,1,1,10,11],[147,1,1,11,12],[150,2,1,12,13]]],[4,3,3,13,16,[[153,1,1,13,14],[167,1,1,14,15],[170,1,1,15,16]]],[5,12,8,16,24,[[189,2,1,16,17],[190,4,2,17,19],[192,3,3,19,22],[201,1,1,22,23],[208,2,1,23,24]]],[6,1,1,24,25,[[226,1,1,24,25]]],[8,2,2,25,27,[[260,1,1,25,26],[261,1,1,26,27]]],[9,1,1,27,28,[[281,1,1,27,28]]],[10,3,3,28,31,[[296,1,1,28,29],[297,1,1,29,30],[303,1,1,30,31]]],[11,5,4,31,35,[[316,2,1,31,32],[321,1,1,32,33],[335,1,1,33,34],[336,1,1,34,35]]],[13,2,2,35,37,[[402,2,2,35,37]]],[14,1,1,37,38,[[405,1,1,37,38]]],[15,1,1,38,39,[[417,1,1,38,39]]],[17,1,1,39,40,[[477,1,1,39,40]]],[18,1,1,40,41,[[616,1,1,40,41]]],[20,2,2,41,43,[[660,1,1,41,42],[670,1,1,42,43]]],[22,1,1,43,44,[[744,1,1,43,44]]],[25,4,4,44,48,[[819,1,1,44,45],[822,1,1,45,46],[831,1,1,46,47],[832,1,1,47,48]]],[26,1,1,48,49,[[859,1,1,48,49]]]],[950,1092,2227,2622,2709,2797,2808,2817,2843,3861,4250,4711,4834,4894,5326,5390,5905,5912,5914,5952,5960,5963,6253,6440,6977,7875,7913,8391,8934,8949,9195,9638,9785,10201,10220,11998,12004,12103,12400,13933,16255,17347,17534,18930,20859,20963,21224,21231,22036]]],["Each",[1,1,[[3,1,1,0,1,[[123,1,1,0,1]]]],[3935]]],["Once",[2,2,[[17,1,1,0,1,[[475,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]]],[13869,15361]]],["One",[49,49,[[1,3,3,0,3,[[61,1,1,0,1],[85,1,1,1,2],[86,1,1,2,3]]],[3,39,39,3,42,[[123,36,36,3,39],[131,2,2,39,41],[145,1,1,41,42]]],[4,1,1,42,43,[[171,1,1,42,43]]],[5,1,1,43,44,[[209,1,1,43,44]]],[13,1,1,44,45,[[370,1,1,44,45]]],[17,1,1,45,46,[[476,1,1,45,46]]],[18,1,1,46,47,[[504,1,1,46,47]]],[22,1,1,47,48,[[708,1,1,47,48]]],[23,1,1,48,49,[[768,1,1,48,49]]]],[1865,2588,2612,3864,3865,3866,3870,3871,3872,3876,3877,3878,3882,3883,3884,3888,3889,3890,3894,3895,3896,3900,3901,3902,3906,3907,3908,3912,3913,3914,3918,3919,3920,3924,3925,3926,3930,3931,3932,4168,4169,4619,5421,6470,11261,13904,14289,18234,19526]]],["a",[51,48,[[1,3,3,0,3,[[65,1,1,0,1],[82,1,1,1,2],[85,1,1,2,3]]],[2,1,1,3,4,[[97,1,1,3,4]]],[3,2,2,4,6,[[123,1,1,4,5],[129,1,1,5,6]]],[5,3,2,6,8,[[190,1,1,6,7],[193,2,1,7,8]]],[6,1,1,8,9,[[225,1,1,8,9]]],[8,7,7,9,16,[[236,1,1,9,10],[241,1,1,10,11],[242,2,2,11,13],[244,1,1,13,14],[251,1,1,14,15],[259,1,1,15,16]]],[9,5,3,16,19,[[268,1,1,16,17],[272,3,1,17,18],[284,1,1,18,19]]],[10,4,4,19,23,[[297,1,1,19,20],[309,2,2,20,22],[310,1,1,22,23]]],[11,2,2,23,25,[[318,1,1,23,24],[324,1,1,24,25]]],[13,1,1,25,26,[[390,1,1,25,26]]],[23,1,1,26,27,[[795,1,1,26,27]]],[25,17,17,27,44,[[809,2,2,27,29],[834,1,1,29,30],[841,1,1,30,31],[844,1,1,31,32],[849,12,12,32,44]]],[26,2,2,44,46,[[857,2,2,44,46]]],[31,1,1,46,47,[[891,1,1,46,47]]],[37,1,1,47,48,[[915,1,1,47,48]]]],[1980,2478,2587,2943,3893,4077,5915,5997,6933,7217,7338,7361,7364,7406,7615,7853,8067,8176,8489,8966,9391,9392,9421,9676,9859,11685,20272,20611,20612,21282,21519,21585,21703,21704,21705,21706,21707,21708,21709,21725,21726,21727,21728,21729,21964,21970,22562,22943]]],["alike",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17519]]],["alone",[4,4,[[5,1,1,0,1,[[208,1,1,0,1]]],[12,1,1,1,2,[[366,1,1,1,2]]],[20,1,1,2,3,[[662,1,1,2,3]]],[22,1,1,3,4,[[729,1,1,3,4]]]],[6446,11165,17391,18675]]],["altogether",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19209]]],["an",[9,9,[[5,2,2,0,2,[[189,2,2,0,2]]],[9,1,1,2,3,[[268,1,1,2,3]]],[10,1,1,3,4,[[312,1,1,3,4]]],[11,1,1,4,5,[[337,1,1,4,5]]],[17,1,1,5,6,[[477,1,1,5,6]]],[23,1,1,6,7,[[796,1,1,6,7]]],[25,2,2,7,9,[[841,2,2,7,9]]]],[5906,5909,8074,9489,10241,13933,20301,21519,21520]]],["another",[35,31,[[1,12,11,0,11,[[75,3,3,0,3],[85,7,6,3,9],[86,2,2,9,11]]],[4,1,1,11,12,[[173,1,1,11,12]]],[6,3,3,12,15,[[219,1,1,12,13],[226,2,2,13,15]]],[8,4,2,15,17,[[245,2,1,15,16],[248,2,1,16,17]]],[10,1,1,17,18,[[308,1,1,17,18]]],[17,1,1,18,19,[[476,1,1,18,19]]],[25,10,9,19,28,[[811,2,1,19,20],[818,1,1,20,21],[820,1,1,21,22],[834,1,1,22,23],[838,2,2,23,25],[841,2,2,25,27],[842,1,1,27,28]]],[26,1,1,28,29,[[857,1,1,28,29]]],[29,1,1,29,30,[[882,1,1,29,30]]],[37,1,1,30,31,[[918,1,1,30,31]]]],[2254,2256,2260,2576,2578,2579,2588,2590,2592,2612,2623,5462,6791,6956,6960,7421,7503,9347,13904,20642,20832,20886,21310,21413,21414,21503,21526,21537,21974,22417,22997]]],["any",[14,13,[[2,4,3,0,3,[[93,2,1,0,1],[94,1,1,1,2],[95,1,1,2,3]]],[3,2,2,3,5,[[131,1,1,3,4],[152,1,1,4,5]]],[4,4,4,5,9,[[167,1,1,5,6],[168,1,1,6,7],[169,1,1,7,8],[180,1,1,8,9]]],[9,2,2,9,11,[[268,1,1,9,10],[273,1,1,10,11]]],[12,1,1,11,12,[[354,1,1,11,12]]],[25,1,1,12,13,[[817,1,1,12,13]]]],[2822,2847,2852,4180,4882,5326,5347,5366,5666,8050,8187,10869,20767]]],["certain",[9,9,[[6,2,2,0,2,[[219,1,1,0,1],[223,1,1,1,2]]],[8,1,1,2,3,[[236,1,1,2,3]]],[9,1,1,3,4,[[284,1,1,3,4]]],[10,1,1,4,5,[[310,1,1,4,5]]],[11,2,2,5,7,[[316,1,1,5,6],[320,1,1,6,7]]],[16,1,1,7,8,[[428,1,1,7,8]]],[26,1,1,8,9,[[859,1,1,8,9]]]],[6807,6886,7213,8488,9443,9604,9733,12755,22020]]],["each",[6,6,[[3,4,4,0,4,[[123,2,2,0,2],[145,2,2,2,4]]],[11,1,1,4,5,[[327,1,1,4,5]]],[13,1,1,5,6,[[370,1,1,5,6]]]],[3861,3935,4622,4623,9945,11259]]],["every",[6,6,[[1,1,1,0,1,[[85,1,1,0,1]]],[3,2,2,1,3,[[144,1,1,1,2],[145,1,1,2,3]]],[10,2,2,3,5,[[297,2,2,3,5]]],[12,1,1,5,6,[[364,1,1,5,6]]]],[2596,4598,4622,8964,8972,11110]]],["few",[3,3,[[0,2,2,0,2,[[26,1,1,0,1],[28,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[771,815,22056]]],["first",[35,33,[[0,5,4,0,4,[[0,1,1,0,1],[1,1,1,1,2],[7,3,2,2,4]]],[1,3,3,4,7,[[77,1,1,4,5],[88,1,1,5,6],[89,1,1,6,7]]],[2,1,1,7,8,[[112,1,1,7,8]]],[3,4,4,8,12,[[117,2,2,8,10],[145,1,1,10,11],[149,1,1,11,12]]],[4,1,1,12,13,[[153,1,1,12,13]]],[10,1,1,13,14,[[306,1,1,13,14]]],[13,2,2,14,16,[[395,1,1,14,15],[402,1,1,15,16]]],[14,5,4,16,20,[[403,1,1,16,17],[409,2,1,17,18],[412,2,2,18,20]]],[15,1,1,20,21,[[420,1,1,20,21]]],[17,1,1,21,22,[[477,1,1,21,22]]],[25,6,6,22,28,[[811,1,1,22,23],[827,1,1,23,24],[830,1,1,24,25],[832,1,1,25,26],[833,1,1,26,27],[846,1,1,27,28]]],[26,4,4,28,32,[[850,1,1,28,29],[858,2,2,29,31],[860,1,1,31,32]]],[36,1,1,32,33,[[909,1,1,32,33]]]],[4,41,188,196,2310,2674,2724,3426,3605,3622,4609,4798,4895,9306,11808,12015,12017,12182,12268,12269,12495,13936,20647,21101,21200,21231,21249,21648,21758,21989,21990,22037,22841]]],["man",[2,2,[[6,1,1,0,1,[[214,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]]],[6615,8851]]],["once",[10,9,[[1,2,1,0,1,[[79,2,1,0,1]]],[2,1,1,1,2,[[105,1,1,1,2]]],[10,1,1,2,3,[[300,1,1,2,3]]],[11,1,1,3,4,[[318,1,1,3,4]]],[13,1,1,4,5,[[375,1,1,4,5]]],[17,1,1,5,6,[[468,1,1,5,6]]],[18,1,1,6,7,[[539,1,1,6,7]]],[19,1,1,7,8,[[655,1,1,7,8]]],[36,1,1,8,9,[[910,1,1,8,9]]]],[2392,3235,9101,9684,11385,13664,14838,17214,22861]]],["one",[627,508,[[0,37,34,0,34,[[0,1,1,0,1],[1,2,2,1,3],[2,1,1,3,4],[3,1,1,4,5],[9,1,1,5,6],[10,4,2,6,8],[18,1,1,8,9],[20,1,1,9,10],[21,1,1,10,11],[25,1,1,11,12],[26,2,2,12,14],[31,1,1,14,15],[32,1,1,15,16],[33,2,2,16,18],[39,1,1,18,19],[40,5,5,19,24],[41,8,7,24,31],[43,1,1,31,32],[47,1,1,32,33],[48,1,1,33,34]]],[1,68,55,34,89,[[50,1,1,34,35],[57,1,1,35,36],[58,2,2,36,38],[59,1,1,38,39],[60,1,1,39,40],[61,2,2,40,42],[63,1,1,42,43],[65,1,1,43,44],[66,1,1,44,45],[67,1,1,45,46],[72,1,1,46,47],[73,1,1,47,48],[74,4,4,48,52],[75,18,14,52,66],[76,1,1,66,67],[77,1,1,67,68],[78,8,6,68,74],[85,19,12,74,86],[86,3,3,86,89]]],[2,30,27,89,116,[[94,3,3,89,92],[96,2,2,92,94],[97,2,1,94,95],[101,1,1,95,96],[102,1,1,96,97],[103,10,8,97,105],[104,2,2,105,107],[105,2,2,107,109],[111,1,1,109,110],[112,2,2,110,112],[113,2,2,112,114],[114,1,1,114,115],[115,1,1,115,116]]],[3,117,82,116,198,[[117,2,2,116,118],[118,2,2,118,120],[122,6,3,120,123],[123,48,25,123,148],[124,1,1,148,149],[125,1,1,149,150],[126,1,1,150,151],[127,2,2,151,153],[129,1,1,153,154],[130,1,1,154,155],[131,8,6,155,161],[132,3,2,161,163],[133,2,2,163,165],[144,14,12,165,177],[145,19,15,177,192],[147,4,4,192,196],[151,1,1,196,197],[152,1,1,197,198]]],[4,16,16,198,214,[[153,1,1,198,199],[156,1,1,199,200],[158,1,1,200,201],[164,1,1,201,202],[165,1,1,202,203],[169,1,1,203,204],[171,2,2,204,206],[173,1,1,206,207],[175,1,1,207,208],[176,1,1,208,209],[177,2,2,209,211],[180,2,2,211,213],[184,1,1,213,214]]],[5,41,23,214,237,[[195,1,1,214,215],[196,2,2,215,217],[198,32,16,217,233],[203,3,2,233,235],[206,1,1,235,236],[209,2,1,236,237]]],[6,17,17,237,254,[[216,1,1,237,238],[218,1,1,238,239],[219,3,3,239,242],[226,1,1,242,243],[227,2,2,243,245],[228,1,1,245,246],[229,1,1,246,247],[230,4,4,247,251],[231,3,3,251,254]]],[7,2,2,254,256,[[232,1,1,254,255],[233,1,1,255,256]]],[8,24,20,256,276,[[236,2,2,256,258],[237,2,2,258,260],[241,6,2,260,262],[244,1,1,262,263],[245,1,1,263,264],[246,1,1,264,265],[248,1,1,265,266],[249,3,3,266,269],[251,1,1,269,270],[252,1,1,270,271],[257,1,1,271,272],[261,3,3,272,275],[262,1,1,275,276]]],[9,20,19,276,295,[[267,1,1,276,277],[268,2,2,277,279],[269,1,1,279,280],[270,1,1,280,281],[272,1,1,281,282],[273,1,1,282,283],[275,1,1,283,284],[278,3,2,284,286],[279,2,2,286,288],[280,2,2,288,290],[283,2,2,290,292],[285,1,1,292,293],[289,1,1,293,294],[290,1,1,294,295]]],[10,44,37,295,332,[[292,2,2,295,297],[293,3,2,297,299],[294,1,1,299,300],[296,6,5,300,305],[297,13,9,305,314],[298,1,1,314,315],[300,3,3,315,318],[301,3,3,318,321],[302,2,2,321,323],[304,1,1,323,324],[305,1,1,324,325],[308,3,3,325,328],[309,1,1,328,329],[310,1,1,329,330],[312,3,2,330,332]]],[11,19,18,332,350,[[315,1,1,332,333],[316,3,2,333,335],[318,3,3,335,338],[319,2,2,338,340],[320,1,1,340,341],[321,1,1,341,342],[326,1,1,342,343],[329,2,2,343,345],[330,1,1,345,346],[334,1,1,346,347],[336,1,1,347,348],[337,2,2,348,350]]],[12,10,10,350,360,[[338,1,1,350,351],[348,1,1,351,352],[349,2,2,352,354],[354,1,1,354,355],[358,1,1,355,356],[360,1,1,356,357],[361,2,2,357,359],[362,1,1,359,360]]],[13,19,17,360,377,[[369,2,2,360,362],[371,2,1,362,363],[375,3,3,363,366],[378,1,1,366,367],[382,1,1,367,368],[384,4,3,368,371],[388,1,1,371,372],[394,1,1,372,373],[396,1,1,373,374],[398,1,1,374,375],[400,1,1,375,376],[402,1,1,376,377]]],[14,3,3,377,380,[[404,1,1,377,378],[405,1,1,378,379],[412,1,1,379,380]]],[15,7,7,380,387,[[413,1,1,380,381],[416,1,1,381,382],[417,1,1,382,383],[419,2,2,383,385],[420,1,1,385,386],[423,1,1,386,387]]],[16,4,4,387,391,[[428,1,1,387,388],[429,1,1,388,389],[432,1,1,389,390],[433,1,1,390,391]]],[17,7,7,391,398,[[437,1,1,391,392],[444,2,2,392,394],[449,1,1,394,395],[458,1,1,395,396],[466,1,1,396,397],[468,1,1,397,398]]],[18,5,5,398,403,[[491,1,1,398,399],[511,1,1,399,400],[530,1,1,400,401],[559,1,1,401,402],[583,1,1,402,403]]],[19,1,1,403,404,[[628,1,1,403,404]]],[20,14,13,404,417,[[661,2,2,404,406],[662,5,5,406,411],[664,1,1,411,412],[665,3,2,412,414],[667,3,3,414,417]]],[21,4,2,417,419,[[674,2,1,417,418],[676,2,1,418,419]]],[22,16,15,419,434,[[682,1,1,419,420],[683,1,1,420,421],[684,2,2,421,423],[687,1,1,423,424],[688,1,1,424,425],[697,1,1,425,426],[701,1,1,426,427],[705,2,1,427,428],[708,1,1,428,429],[712,1,1,429,430],[714,1,1,430,431],[725,1,1,431,432],[744,2,2,432,434]]],[23,8,7,434,441,[[747,1,1,434,435],[776,2,1,435,436],[779,1,1,436,437],[796,4,4,437,441]]],[25,65,44,441,485,[[802,4,3,441,444],[805,1,1,444,445],[810,1,1,445,446],[811,6,4,446,450],[812,1,1,450,451],[820,1,1,451,452],[824,2,2,452,454],[834,1,1,454,455],[835,1,1,455,456],[838,9,5,456,461],[841,16,10,461,471],[842,2,2,471,473],[843,1,1,473,474],[844,1,1,474,475],[846,3,3,475,478],[847,2,2,478,480],[849,13,5,480,485]]],[26,8,7,485,492,[[857,3,3,485,488],[858,1,1,488,489],[859,2,1,489,490],[860,1,1,490,491],[861,1,1,491,492]]],[27,1,1,492,493,[[862,1,1,492,493]]],[29,4,3,493,496,[[882,3,2,493,495],[884,1,1,495,496]]],[30,1,1,496,497,[[888,1,1,496,497]]],[35,1,1,497,498,[[908,1,1,497,498]]],[36,1,1,498,499,[[910,1,1,498,499]]],[37,9,7,499,506,[[913,2,1,499,500],[914,1,1,500,501],[918,1,1,501,502],[921,2,2,502,504],[924,3,2,504,506]]],[38,4,2,506,508,[[926,4,2,506,508]]]],[8,51,54,77,98,259,267,272,466,528,549,702,765,772,936,973,996,1002,1177,1200,1206,1217,1220,1221,1263,1265,1268,1271,1279,1284,1285,1352,1473,1489,1547,1741,1748,1749,1796,1807,1834,1862,1917,1969,1995,2002,2173,2180,2207,2214,2228,2231,2237,2239,2240,2241,2243,2245,2246,2251,2252,2254,2256,2259,2260,2261,2281,2303,2337,2339,2351,2359,2375,2376,2575,2576,2577,2578,2579,2581,2584,2588,2590,2592,2595,2597,2607,2623,2626,2834,2835,2837,2886,2893,2943,3052,3054,3116,3121,3123,3132,3133,3141,3142,3161,3183,3198,3206,3209,3397,3420,3421,3451,3468,3517,3550,3645,3648,3674,3686,3834,3837,3842,3853,3863,3865,3869,3871,3875,3877,3881,3883,3887,3889,3893,3895,3899,3901,3905,3907,3911,3913,3917,3919,3923,3925,3929,3931,3951,3979,3992,4043,4050,4098,4123,4158,4164,4165,4169,4177,4182,4209,4216,4247,4250,4581,4584,4588,4589,4590,4592,4596,4599,4604,4605,4606,4607,4610,4612,4613,4616,4617,4618,4624,4627,4630,4633,4636,4639,4642,4644,4646,4692,4694,4698,4703,4875,4887,4915,5046,5090,5254,5284,5370,5411,5417,5462,5516,5530,5552,5558,5618,5636,5788,6039,6066,6106,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6289,6292,6376,6474,6670,6737,6756,6759,6772,6978,6985,6991,7012,7037,7055,7062,7065,7085,7105,7108,7110,7131,7162,7214,7236,7274,7276,7335,7348,7394,7421,7452,7502,7512,7513,7548,7613,7654,7807,7920,7925,7927,7931,8037,8070,8074,8094,8122,8177,8203,8238,8287,8289,8330,8347,8362,8383,8461,8471,8525,8661,8704,8786,8790,8833,8841,8866,8920,8921,8922,8923,8930,8950,8951,8952,8961,8968,8971,8972,8976,8978,9041,9093,9095,9096,9121,9140,9144,9180,9181,9239,9259,9347,9364,9366,9389,9437,9488,9493,9587,9625,9642,9677,9679,9686,9715,9720,9753,9757,9919,10010,10011,10048,10146,10220,10238,10239,10271,10684,10734,10758,10884,10944,10994,11021,11032,11074,11240,11246,11281,11377,11379,11380,11450,11522,11549,11550,11554,11646,11770,11839,11887,11934,12004,12053,12098,12265,12298,12376,12400,12450,12457,12494,12589,12760,12773,12816,12829,12901,13054,13073,13185,13432,13603,13673,14083,14408,14722,15240,15662,16414,17378,17379,17389,17390,17391,17392,17393,17423,17456,17457,17477,17478,17493,17591,17623,17734,17749,17771,17775,17843,17867,18022,18092,18163,18234,18319,18339,18608,18930,18939,19016,19770,19825,20277,20296,20297,20298,20470,20479,20480,20538,20624,20642,20643,20647,20654,20674,20884,21009,21020,21304,21336,21413,21414,21416,21419,21421,21482,21483,21484,21485,21487,21489,21503,21519,21521,21526,21537,21550,21556,21586,21637,21641,21645,21672,21677,21710,21733,21734,21735,21736,21964,21970,21974,22015,22028,22063,22086,22105,22417,22418,22459,22521,22829,22856,22921,22925,22997,23035,23036,23075,23077,23113,23118]]],["only",[2,2,[[10,1,1,0,1,[[294,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]]],[8863,20582]]],["other",[31,31,[[1,4,4,0,4,[[66,1,1,0,1],[67,1,1,1,2],[74,2,2,2,4]]],[2,7,7,4,11,[[94,1,1,4,5],[101,1,1,5,6],[103,2,2,6,8],[104,2,2,8,10],[105,1,1,10,11]]],[3,2,2,11,13,[[122,1,1,11,12],[124,1,1,12,13]]],[6,2,2,13,15,[[226,1,1,13,14],[230,1,1,14,15]]],[8,3,3,15,18,[[249,3,3,15,18]]],[9,2,2,18,20,[[278,1,1,18,19],[280,1,1,19,20]]],[10,3,3,20,23,[[293,1,1,20,21],[302,1,1,21,22],[308,1,1,22,23]]],[13,2,2,23,25,[[369,2,2,23,25]]],[15,1,1,25,26,[[416,1,1,25,26]]],[23,1,1,26,27,[[768,1,1,26,27]]],[25,1,1,27,28,[[841,1,1,27,28]]],[26,1,1,28,29,[[861,1,1,28,29]]],[37,2,2,29,31,[[914,1,1,29,30],[921,1,1,30,31]]]],[1995,2003,2214,2228,2837,3052,3133,3142,3183,3198,3209,3834,3951,6978,7085,7512,7513,7548,8287,8362,8841,9180,9364,11241,11246,12376,19526,21483,22086,22925,23035]]],["some",[7,5,[[0,1,1,0,1,[[36,1,1,0,1]]],[8,1,1,1,2,[[262,1,1,1,2]]],[9,3,2,2,4,[[283,3,2,2,4]]],[11,2,1,4,5,[[314,2,1,4,5]]]],[1103,7935,8458,8461,9567]]],["the",[1,1,[[8,1,1,0,1,[[241,1,1,0,1]]]],[7343]]],["thing",[2,2,[[2,1,1,0,1,[[95,1,1,0,1]]],[20,1,1,1,2,[[661,1,1,1,2]]]],[2856,17378]]],["together",[5,5,[[14,3,3,0,3,[[404,1,1,0,1],[405,1,1,1,2],[408,1,1,2,3]]],[15,1,1,3,4,[[419,1,1,3,4]]],[22,1,1,4,5,[[743,1,1,4,5]]]],[12091,12106,12171,12486,18922]]]]},{"k":"H260","v":[["*",[3,3,[[0,2,2,0,2,[[40,2,2,0,2]]],[17,1,1,2,3,[[443,1,1,2,3]]]],[1197,1213,13040]]],["flag",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13040]]],["meadow",[2,2,[[0,2,2,0,2,[[40,2,2,0,2]]]],[1197,1213]]]]},{"k":"H261","v":[["Ehud",[9,8,[[6,8,7,0,7,[[213,7,6,0,6],[214,1,1,6,7]]],[12,1,1,7,8,[[345,1,1,7,8]]]],[6583,6584,6588,6589,6591,6594,6600,10581]]]]},{"k":"H262","v":[["declaration",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13170]]]]},{"k":"H263","v":[["shewing",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21886]]]]},{"k":"H264","v":[["brotherhood",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23042]]]]},{"k":"H265","v":[["Ahoah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10579]]]]},{"k":"H266","v":[["*",[5,5,[[9,2,2,0,2,[[289,2,2,0,2]]],[12,3,3,2,5,[[348,2,2,2,4],[364,1,1,4,5]]]],[8662,8681,10685,10702,11113]]],["+",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8662]]],["Ahohite",[4,4,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,3,3,1,4,[[348,2,2,1,3],[364,1,1,3,4]]]],[8681,10685,10702,11113]]]]},{"k":"H267","v":[["Ahumai",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10387]]]]},{"k":"H268","v":[["*",[41,41,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[75,1,1,1,2],[82,1,1,2,3]]],[9,2,2,3,5,[[267,1,1,3,4],[276,1,1,4,5]]],[10,1,1,5,6,[[297,1,1,5,6]]],[12,1,1,6,7,[[356,1,1,6,7]]],[13,2,2,7,9,[[370,1,1,7,8],[379,1,1,8,9]]],[17,1,1,9,10,[[458,1,1,9,10]]],[18,12,12,10,22,[[486,1,1,10,11],[512,1,1,11,12],[517,1,1,12,13],[521,2,2,13,15],[533,1,1,15,16],[547,1,1,16,17],[555,1,1,17,18],[591,2,2,18,20],[606,1,1,20,21],[616,1,1,21,22]]],[19,1,1,22,23,[[656,1,1,22,23]]],[22,9,9,23,32,[[679,1,1,23,24],[687,1,1,24,25],[706,1,1,25,26],[719,1,1,26,27],[720,2,2,27,29],[722,1,1,29,30],[728,1,1,30,31],[737,1,1,31,32]]],[23,4,4,32,36,[[751,1,1,32,33],[759,1,1,33,34],[782,1,1,34,35],[790,1,1,35,36]]],[24,3,3,36,39,[[797,2,2,36,38],[798,1,1,38,39]]],[25,2,2,39,41,[[803,1,1,39,40],[809,1,1,40,41]]]],[1490,2247,2496,8044,8249,8959,10917,11250,11467,13427,14024,14414,14539,14581,14589,14764,14973,15179,15825,15827,16137,16244,17235,17658,17841,18177,18474,18497,18503,18558,18667,18814,19143,19321,19917,20050,20318,20323,20335,20502,20620]]],["+",[2,2,[[9,1,1,0,1,[[276,1,1,0,1]]],[22,1,1,1,2,[[687,1,1,1,2]]]],[8249,17841]]],["afterwards",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17235]]],["back",[15,15,[[9,1,1,0,1,[[267,1,1,0,1]]],[18,8,8,1,9,[[486,1,1,1,2],[512,1,1,2,3],[521,2,2,3,5],[533,1,1,5,6],[591,2,2,6,8],[606,1,1,8,9]]],[22,2,2,9,11,[[720,1,1,9,10],[728,1,1,10,11]]],[23,2,2,11,13,[[782,1,1,11,12],[790,1,1,12,13]]],[24,2,2,13,15,[[797,1,1,13,14],[798,1,1,14,15]]]],[8044,14024,14414,14581,14589,14764,15825,15827,16137,18497,18667,19917,20050,20323,20335]]],["backs",[1,1,[[25,1,1,0,1,[[809,1,1,0,1]]]],[20620]]],["backside",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2247]]],["backward",[11,11,[[0,1,1,0,1,[[48,1,1,0,1]]],[17,1,1,1,2,[[458,1,1,1,2]]],[18,2,2,2,4,[[517,1,1,2,3],[547,1,1,3,4]]],[22,4,4,4,8,[[679,1,1,4,5],[706,1,1,5,6],[722,1,1,6,7],[737,1,1,7,8]]],[23,2,2,8,10,[[751,1,1,8,9],[759,1,1,9,10]]],[24,1,1,10,11,[[797,1,1,10,11]]]],[1490,13427,14539,14973,17658,18177,18558,18814,19143,19321,20318]]],["behind",[3,3,[[12,1,1,0,1,[[356,1,1,0,1]]],[13,1,1,1,2,[[379,1,1,1,2]]],[18,1,1,2,3,[[616,1,1,2,3]]]],[10917,11467,16244]]],["come",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18503]]],["hereafter",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18474]]],["parts",[4,4,[[1,1,1,0,1,[[82,1,1,0,1]]],[10,1,1,1,2,[[297,1,1,1,2]]],[13,1,1,2,3,[[370,1,1,2,3]]],[18,1,1,3,4,[[555,1,1,3,4]]]],[2496,8959,11250,15179]]],["without",[1,1,[[25,1,1,0,1,[[803,1,1,0,1]]]],[20502]]]]},{"k":"H269","v":[["*",[114,104,[[0,24,23,0,23,[[3,1,1,0,1],[11,2,2,1,3],[19,3,3,3,6],[23,4,3,6,9],[24,1,1,9,10],[25,2,2,10,12],[27,1,1,12,13],[28,1,1,13,14],[29,2,2,14,16],[33,4,4,16,20],[35,2,2,20,22],[45,1,1,22,23]]],[1,9,8,23,31,[[51,2,2,23,25],[55,1,1,25,26],[64,1,1,26,27],[75,5,4,27,31]]],[2,10,8,31,39,[[107,5,5,31,36],[109,4,2,36,38],[110,1,1,38,39]]],[3,3,3,39,42,[[122,1,1,39,40],[141,1,1,40,41],[142,1,1,41,42]]],[4,1,1,42,43,[[179,1,1,42,43]]],[5,1,1,43,44,[[188,1,1,43,44]]],[6,1,1,44,45,[[225,1,1,44,45]]],[9,10,10,45,55,[[279,9,9,45,54],[283,1,1,54,55]]],[10,3,2,55,57,[[301,3,2,55,57]]],[11,1,1,57,58,[[323,1,1,57,58]]],[12,10,10,58,68,[[338,1,1,58,59],[339,1,1,59,60],[340,2,2,60,62],[341,2,2,62,64],[344,4,4,64,68]]],[13,1,1,68,69,[[388,1,1,68,69]]],[17,3,3,69,72,[[436,1,1,69,70],[452,1,1,70,71],[477,1,1,71,72]]],[19,1,1,72,73,[[634,1,1,72,73]]],[21,7,6,73,79,[[674,3,3,73,76],[675,2,2,76,78],[678,2,1,78,79]]],[23,4,4,79,83,[[747,3,3,79,82],[766,1,1,82,83]]],[25,24,20,83,103,[[802,2,2,83,85],[804,1,1,85,86],[817,12,9,86,95],[823,1,1,95,96],[824,7,6,96,102],[845,1,1,102,103]]],[27,1,1,103,104,[[863,1,1,103,104]]]],[101,311,317,497,500,507,621,650,651,678,699,701,782,808,831,838,993,994,1007,1011,1043,1062,1403,1558,1561,1678,1940,2238,2240,2241,2252,3260,3262,3263,3264,3269,3335,3337,3348,3830,4489,4548,5607,5882,6931,8318,8319,8321,8322,8323,8328,8337,8339,8349,8474,9127,9128,9831,10291,10322,10370,10380,10388,10404,10550,10553,10565,10567,11655,12873,13274,13933,16579,17591,17592,17594,17599,17600,17648,19009,19010,19012,19472,20473,20487,20515,20807,20808,20810,20811,20813,20814,20817,20818,20823,20987,21011,21018,21025,21038,21039,21040,21624,22106]]],["+",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2241]]],["another",[6,5,[[1,4,3,0,3,[[75,4,3,0,3]]],[25,2,2,3,5,[[802,1,1,3,4],[804,1,1,4,5]]]],[2238,2240,2252,20473,20515]]],["other",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20487]]],["sister",[90,85,[[0,22,22,0,22,[[3,1,1,0,1],[11,2,2,1,3],[19,3,3,3,6],[23,3,3,6,9],[24,1,1,9,10],[25,2,2,10,12],[27,1,1,12,13],[29,2,2,13,15],[33,4,4,15,19],[35,2,2,19,21],[45,1,1,21,22]]],[1,4,4,22,26,[[51,2,2,22,24],[55,1,1,24,25],[64,1,1,25,26]]],[2,9,8,26,34,[[107,5,5,26,31],[109,3,2,31,33],[110,1,1,33,34]]],[3,3,3,34,37,[[122,1,1,34,35],[141,1,1,35,36],[142,1,1,36,37]]],[4,1,1,37,38,[[179,1,1,37,38]]],[6,1,1,38,39,[[225,1,1,38,39]]],[9,10,10,39,49,[[279,9,9,39,48],[283,1,1,48,49]]],[10,3,2,49,51,[[301,3,2,49,51]]],[11,1,1,51,52,[[323,1,1,51,52]]],[12,8,8,52,60,[[338,1,1,52,53],[340,2,2,53,55],[341,2,2,55,57],[344,3,3,57,60]]],[13,1,1,60,61,[[388,1,1,60,61]]],[17,1,1,61,62,[[452,1,1,61,62]]],[19,1,1,62,63,[[634,1,1,62,63]]],[21,7,6,63,69,[[674,3,3,63,66],[675,2,2,66,68],[678,2,1,68,69]]],[23,4,4,69,73,[[747,3,3,69,72],[766,1,1,72,73]]],[25,14,12,73,85,[[817,6,5,73,78],[823,1,1,78,79],[824,6,5,79,84],[845,1,1,84,85]]]],[101,311,317,497,500,507,621,650,651,678,699,701,782,831,838,993,994,1007,1011,1043,1062,1403,1558,1561,1678,1940,3260,3262,3263,3264,3269,3335,3337,3348,3830,4489,4548,5607,6931,8318,8319,8321,8322,8323,8328,8337,8339,8349,8474,9127,9128,9831,10291,10370,10380,10388,10404,10553,10565,10567,11655,13274,16579,17591,17592,17594,17599,17600,17648,19009,19010,19012,19472,20807,20808,20810,20811,20818,20987,21011,21018,21025,21038,21040,21624]]],["sister's",[5,5,[[0,2,2,0,2,[[23,1,1,0,1],[28,1,1,1,2]]],[2,1,1,2,3,[[109,1,1,2,3]]],[12,1,1,3,4,[[344,1,1,3,4]]],[25,1,1,4,5,[[824,1,1,4,5]]]],[621,808,3335,10550,21039]]],["sisters",[11,10,[[5,1,1,0,1,[[188,1,1,0,1]]],[12,1,1,1,2,[[339,1,1,1,2]]],[17,2,2,2,4,[[436,1,1,2,3],[477,1,1,3,4]]],[25,6,5,4,9,[[817,6,5,4,9]]],[27,1,1,9,10,[[863,1,1,9,10]]]],[5882,10322,12873,13933,20807,20813,20814,20817,20823,22106]]]]},{"k":"H270","v":[["*",[65,61,[[0,4,4,0,4,[[21,1,1,0,1],[24,1,1,1,2],[33,1,1,2,3],[46,1,1,3,4]]],[1,3,3,4,7,[[53,1,1,4,5],[64,2,2,5,7]]],[3,3,3,7,10,[[147,2,2,7,9],[148,1,1,9,10]]],[4,1,1,10,11,[[184,1,1,10,11]]],[5,2,2,11,13,[[208,2,2,11,13]]],[6,5,5,13,18,[[211,1,1,13,14],[222,1,1,14,15],[226,2,2,15,17],[230,1,1,17,18]]],[7,2,1,18,19,[[234,2,1,18,19]]],[9,5,5,19,24,[[267,1,1,19,20],[268,1,1,20,21],[270,1,1,21,22],[272,1,1,22,23],[286,1,1,23,24]]],[10,3,3,24,27,[[291,1,1,24,25],[296,2,2,25,27]]],[12,3,2,27,29,[[350,1,1,27,28],[361,2,1,28,29]]],[13,2,2,29,31,[[375,1,1,29,30],[391,1,1,30,31]]],[15,1,1,31,32,[[419,1,1,31,32]]],[16,1,1,32,33,[[426,1,1,32,33]]],[17,8,8,33,41,[[451,1,1,33,34],[452,1,1,34,35],[453,1,1,35,36],[456,1,1,36,37],[458,1,1,37,38],[461,1,1,38,39],[465,1,1,39,40],[473,1,1,40,41]]],[18,6,6,41,47,[[525,1,1,41,42],[550,1,1,42,43],[554,1,1,43,44],[596,1,1,44,45],[614,1,1,45,46],[616,1,1,46,47]]],[20,4,3,47,50,[[660,1,1,47,48],[665,1,1,48,49],[667,2,1,49,50]]],[21,4,4,50,54,[[672,1,1,50,51],[673,2,2,51,53],[677,1,1,53,54]]],[22,4,4,54,58,[[683,1,1,54,55],[691,1,1,55,56],[699,1,1,56,57],[711,1,1,57,58]]],[23,2,2,58,60,[[757,1,1,58,59],[793,1,1,59,60]]],[25,2,1,60,61,[[842,2,1,60,61]]]],[560,684,990,1447,1605,1934,1935,4694,4711,4748,5799,6435,6445,6515,6875,6952,6970,7060,7187,8031,8070,8130,8163,8563,8768,8902,8906,10769,11021,11382,11709,12423,12708,13250,13269,13285,13361,13430,13476,13573,13806,14640,15043,15097,15951,16231,16249,17336,17447,17487,17569,17575,17579,17635,17768,17914,18038,18293,19287,20151,21532]]],["+",[4,4,[[10,1,1,0,1,[[296,1,1,0,1]]],[12,1,1,1,2,[[350,1,1,1,2]]],[18,1,1,2,3,[[614,1,1,2,3]]],[20,1,1,3,4,[[667,1,1,3,4]]]],[8906,10769,16231,17487]]],["Take",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17569]]],["back",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13476]]],["bar",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12423]]],["caught",[3,3,[[0,1,1,0,1,[[21,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]],[20,1,1,2,3,[[667,1,1,2,3]]]],[560,6515,17487]]],["come",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8031]]],["fastened",[3,3,[[10,1,1,0,1,[[296,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]],[16,1,1,2,3,[[426,1,1,2,3]]]],[8902,11382,12708]]],["handle",[1,1,[[13,1,1,0,1,[[391,1,1,0,1]]]],[11709]]],["held",[3,3,[[7,1,1,0,1,[[234,1,1,0,1]]],[17,1,1,1,2,[[458,1,1,1,2]]],[21,1,1,2,3,[[673,1,1,2,3]]]],[7187,13430,17575]]],["hold",[21,20,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[7,1,1,3,4,[[234,1,1,3,4]]],[9,3,3,4,7,[[268,1,1,4,5],[270,1,1,5,6],[272,1,1,6,7]]],[10,1,1,7,8,[[291,1,1,7,8]]],[17,3,3,8,11,[[452,1,1,8,9],[456,1,1,9,10],[473,1,1,10,11]]],[18,1,1,11,12,[[616,1,1,11,12]]],[20,2,2,12,14,[[660,1,1,12,13],[665,1,1,13,14]]],[21,2,2,14,16,[[673,1,1,14,15],[677,1,1,15,16]]],[22,3,3,16,19,[[683,1,1,16,17],[691,1,1,17,18],[699,1,1,18,19]]],[25,2,1,19,20,[[842,2,1,19,20]]]],[684,1934,5799,7187,8070,8130,8163,8768,13269,13361,13806,16249,17336,17447,17579,17635,17768,17914,18038,21532]]],["holden",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15043]]],["holdest",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15097]]],["portion",[2,2,[[3,2,2,0,2,[[147,2,2,0,2]]]],[4694,4711]]],["possessed",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6435]]],["possession",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6445]]],["possessions",[3,3,[[0,2,2,0,2,[[33,1,1,0,1],[46,1,1,1,2]]],[3,1,1,2,3,[[148,1,1,2,3]]]],[990,1447,4748]]],["surprised",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18293]]],["take",[3,3,[[1,1,1,0,1,[[53,1,1,0,1]]],[17,1,1,1,2,[[453,1,1,1,2]]],[23,1,1,2,3,[[757,1,1,2,3]]]],[1605,13285,19287]]],["taken",[4,3,[[12,2,1,0,1,[[361,2,1,0,1]]],[17,1,1,1,2,[[451,1,1,1,2]]],[23,1,1,2,3,[[793,1,1,2,3]]]],[11021,13250,20151]]],["took",[5,5,[[6,4,4,0,4,[[222,1,1,0,1],[226,2,2,1,3],[230,1,1,3,4]]],[9,1,1,4,5,[[286,1,1,4,5]]]],[6875,6952,6970,7060,8563]]],["upon",[4,4,[[1,1,1,0,1,[[64,1,1,0,1]]],[17,1,1,1,2,[[465,1,1,1,2]]],[18,2,2,2,4,[[525,1,1,2,3],[596,1,1,3,4]]]],[1935,13573,14640,15951]]]]},{"k":"H271","v":[["Ahaz",[41,39,[[11,19,17,0,17,[[327,1,1,0,1],[328,14,12,1,13],[329,1,1,13,14],[330,1,1,14,15],[332,1,1,15,16],[335,1,1,16,17]]],[12,4,4,17,21,[[340,1,1,17,18],[345,2,2,18,20],[346,1,1,20,21]]],[13,9,9,21,30,[[393,1,1,21,22],[394,7,7,22,29],[395,1,1,29,30]]],[22,7,7,30,37,[[679,1,1,30,31],[685,4,4,31,35],[692,1,1,35,36],[716,1,1,36,37]]],[27,1,1,37,38,[[862,1,1,37,38]]],[32,1,1,38,39,[[893,1,1,38,39]]]],[9963,9964,9965,9968,9970,9971,9973,9974,9978,9979,9980,9982,9983,9984,10025,10109,10177,10374,10610,10611,10657,11764,11765,11780,11783,11785,11786,11788,11791,11810,17655,17783,17785,17792,17794,17956,18398,22095,22580]]]]},{"k":"H272","v":[["*",[66,58,[[0,9,9,0,9,[[16,1,1,0,1],[22,3,3,1,4],[35,1,1,4,5],[46,1,1,5,6],[47,1,1,6,7],[48,1,1,7,8],[49,1,1,8,9]]],[2,20,18,9,27,[[103,2,1,9,10],[114,13,12,10,22],[116,5,5,22,27]]],[3,9,9,27,36,[[143,2,2,27,29],[148,4,4,29,33],[151,3,3,33,36]]],[4,1,1,36,37,[[184,1,1,36,37]]],[5,6,5,37,42,[[207,2,2,37,39],[208,4,3,39,42]]],[12,2,2,42,44,[[344,1,1,42,43],[346,1,1,43,44]]],[13,2,2,44,46,[[377,1,1,44,45],[397,1,1,45,46]]],[15,1,1,46,47,[[423,1,1,46,47]]],[18,1,1,47,48,[[479,1,1,47,48]]],[25,15,10,48,58,[[845,2,1,48,49],[846,5,4,49,53],[847,4,2,53,55],[849,4,3,55,58]]]],[405,575,580,591,1083,1431,1455,1503,1519,3145,3479,3482,3493,3494,3496,3497,3501,3502,3503,3510,3514,3515,3586,3591,3592,3594,3598,4558,4561,4723,4740,4747,4750,4847,4853,4873,5807,6393,6422,6430,6435,6445,10563,10617,11428,11855,12591,13953,21627,21635,21636,21637,21638,21671,21673,21722,21723,21724]]],["+",[7,4,[[2,1,1,0,1,[[114,1,1,0,1]]],[3,1,1,1,2,[[151,1,1,1,2]]],[25,5,2,2,4,[[847,3,1,2,3],[849,2,1,3,4]]]],[3494,4853,21673,21724]]],["possession",[57,52,[[0,9,9,0,9,[[16,1,1,0,1],[22,3,3,1,4],[35,1,1,4,5],[46,1,1,5,6],[47,1,1,6,7],[48,1,1,7,8],[49,1,1,8,9]]],[2,19,17,9,26,[[103,2,1,9,10],[114,12,11,10,21],[116,5,5,21,26]]],[3,8,8,26,34,[[143,2,2,26,28],[148,4,4,28,32],[151,2,2,32,34]]],[4,1,1,34,35,[[184,1,1,34,35]]],[5,6,5,35,40,[[207,2,2,35,37],[208,4,3,37,40]]],[13,2,2,40,42,[[377,1,1,40,41],[397,1,1,41,42]]],[15,1,1,42,43,[[423,1,1,42,43]]],[18,1,1,43,44,[[479,1,1,43,44]]],[25,10,8,44,52,[[845,2,1,44,45],[846,5,4,45,49],[847,1,1,49,50],[849,2,2,50,52]]]],[405,575,580,591,1083,1431,1455,1503,1519,3145,3479,3482,3493,3496,3497,3501,3502,3503,3510,3514,3515,3586,3591,3592,3594,3598,4558,4561,4723,4740,4747,4750,4847,4873,5807,6393,6422,6430,6435,6445,11428,11855,12591,13953,21627,21635,21636,21637,21638,21671,21722,21723]]],["possessions",[2,2,[[12,2,2,0,2,[[344,1,1,0,1],[346,1,1,1,2]]]],[10563,10617]]]]},{"k":"H273","v":[["Ahasai",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12601]]]]},{"k":"H274","v":[["Ahaziah",[37,30,[[10,3,3,0,3,[[312,3,3,0,3]]],[11,20,17,3,20,[[313,2,2,3,5],[320,4,4,5,9],[321,6,5,9,14],[322,2,1,14,15],[323,3,2,15,17],[324,1,1,17,18],[325,1,1,18,19],[326,1,1,19,20]]],[12,1,1,20,21,[[340,1,1,20,21]]],[13,13,9,21,30,[[386,2,2,21,23],[388,11,7,23,30]]]],[9520,9529,9531,9535,9551,9751,9752,9753,9756,9772,9777,9779,9783,9785,9806,9830,9831,9868,9872,9909,10372,11622,11624,11645,11646,11651,11652,11653,11654,11655]]]]},{"k":"H275","v":[["Ahuzam",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10391]]]]},{"k":"H276","v":[["Ahuzzath",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[718]]]]},{"k":"H277","v":[["Ahi",[2,2,[[12,2,2,0,2,[[342,1,1,0,1],[344,1,1,1,2]]]],[10443,10569]]]]},{"k":"H278","v":[["Ehi",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1407]]]]},{"k":"H279","v":[["Ahiam",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8686,10708]]]]},{"k":"H280","v":[["sentences",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21886]]]]},{"k":"H281","v":[["*",[24,23,[[8,2,2,0,2,[[249,2,2,0,2]]],[10,14,13,2,15,[[294,1,1,2,3],[301,2,2,3,5],[302,1,1,5,6],[304,6,5,6,11],[305,3,3,11,14],[311,1,1,14,15]]],[11,1,1,15,16,[[321,1,1,15,16]]],[12,4,4,16,20,[[339,1,1,16,17],[345,1,1,17,18],[348,1,1,18,19],[363,1,1,19,20]]],[13,2,2,20,22,[[375,1,1,20,21],[376,1,1,21,22]]],[15,1,1,22,23,[[422,1,1,22,23]]]],[7511,7526,8847,9137,9138,9166,9220,9222,9223,9224,9236,9276,9278,9282,9473,9765,10331,10582,10709,11097,11393,11410,12575]]],["Ahiah",[4,4,[[8,2,2,0,2,[[249,2,2,0,2]]],[10,1,1,2,3,[[294,1,1,2,3]]],[12,1,1,3,4,[[345,1,1,3,4]]]],[7511,7526,8847,10582]]],["Ahijah",[20,19,[[10,13,12,0,12,[[301,2,2,0,2],[302,1,1,2,3],[304,6,5,3,8],[305,3,3,8,11],[311,1,1,11,12]]],[11,1,1,12,13,[[321,1,1,12,13]]],[12,3,3,13,16,[[339,1,1,13,14],[348,1,1,14,15],[363,1,1,15,16]]],[13,2,2,16,18,[[375,1,1,16,17],[376,1,1,17,18]]],[15,1,1,18,19,[[422,1,1,18,19]]]],[9137,9138,9166,9220,9222,9223,9224,9236,9276,9278,9282,9473,9765,10331,10709,11097,11393,11410,12575]]]]},{"k":"H282","v":[["Ahihud",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4843]]]]},{"k":"H283","v":[["Ahio",[6,6,[[9,2,2,0,2,[[272,2,2,0,2]]],[12,4,4,2,6,[[345,2,2,2,4],[346,1,1,4,5],[350,1,1,5,6]]]],[8160,8161,10589,10606,10652,10767]]]]},{"k":"H284","v":[["Ahihud",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10582]]]]},{"k":"H285","v":[["Ahitub",[15,15,[[8,5,5,0,5,[[249,1,1,0,1],[257,4,4,1,5]]],[9,1,1,5,6,[[274,1,1,5,6]]],[12,7,7,6,13,[[343,5,5,6,11],[346,1,1,11,12],[355,1,1,12,13]]],[14,1,1,13,14,[[409,1,1,13,14]]],[15,1,1,14,15,[[423,1,1,14,15]]]],[7511,7796,7798,7799,7807,8226,10461,10462,10465,10466,10506,10626,10906,12175,12599]]]]},{"k":"H286","v":[["Ahilud",[5,5,[[9,2,2,0,2,[[274,1,1,0,1],[286,1,1,1,2]]],[10,2,2,2,4,[[294,2,2,2,4]]],[12,1,1,4,5,[[355,1,1,4,5]]]],[8225,8578,8847,8856,10905]]]]},{"k":"H287","v":[["Ahimoth",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10479]]]]},{"k":"H288","v":[["*",[16,15,[[8,12,11,0,11,[[256,4,3,0,3],[257,5,5,3,8],[258,1,1,8,9],[261,1,1,9,10],[265,1,1,10,11]]],[9,1,1,11,12,[[274,1,1,11,12]]],[12,3,3,12,15,[[361,3,3,12,15]]]],[7773,7774,7780,7796,7798,7801,7803,7807,7816,7911,7985,8226,11018,11021,11046]]],["Ahimelech",[15,14,[[8,11,10,0,10,[[256,4,3,0,3],[257,5,5,3,8],[258,1,1,8,9],[261,1,1,9,10]]],[9,1,1,10,11,[[274,1,1,10,11]]],[12,3,3,11,14,[[361,3,3,11,14]]]],[7773,7774,7780,7796,7798,7801,7803,7807,7816,7911,8226,11018,11021,11046]]],["Ahimelech's",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7985]]]]},{"k":"H289","v":[["Ahiman",[4,4,[[3,1,1,0,1,[[129,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]],[6,1,1,2,3,[[211,1,1,2,3]]],[12,1,1,3,4,[[346,1,1,3,4]]]],[4097,6216,6519,10632]]]]},{"k":"H290","v":[["Ahimaaz",[15,15,[[8,1,1,0,1,[[249,1,1,0,1]]],[9,10,10,1,11,[[281,2,2,1,3],[283,2,2,3,5],[284,6,6,5,11]]],[10,1,1,11,12,[[294,1,1,11,12]]],[12,3,3,12,15,[[343,3,3,12,15]]]],[7558,8416,8425,8466,8469,8497,8500,8501,8505,8506,8507,8859,10462,10463,10507]]]]},{"k":"H291","v":[["Ahian",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10554]]]]},{"k":"H292","v":[["Ahinadab",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8858]]]]},{"k":"H293","v":[["Ahinoam",[7,7,[[8,4,4,0,4,[[249,1,1,0,1],[260,1,1,1,2],[262,1,1,2,3],[265,1,1,3,4]]],[9,2,2,4,6,[[268,1,1,4,5],[269,1,1,5,6]]],[12,1,1,6,7,[[340,1,1,6,7]]]],[7558,7904,7933,7983,8051,8083,10362]]]]},{"k":"H294","v":[["Ahisamach",[3,3,[[1,3,3,0,3,[[80,1,1,0,1],[84,1,1,1,2],[87,1,1,2,3]]]],[2426,2565,2656]]]]},{"k":"H295","v":[["Ahiezer",[6,6,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]],[12,1,1,5,6,[[349,1,1,5,6]]]],[3616,3683,3916,3921,4013,10723]]]]},{"k":"H296","v":[["Ahikam",[20,20,[[11,3,3,0,3,[[334,2,2,0,2],[337,1,1,2,3]]],[13,1,1,3,4,[[400,1,1,3,4]]],[23,16,16,4,20,[[770,1,1,4,5],[783,1,1,5,6],[784,7,7,6,13],[785,6,6,13,19],[787,1,1,19,20]]]],[10157,10159,10244,11953,19596,19937,19946,19947,19948,19950,19952,19955,19957,19958,19959,19963,19967,19973,19975,20003]]]]},{"k":"H297","v":[["Ahiram",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4527]]]]},{"k":"H298","v":[["Ahiramites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4527]]]]},{"k":"H299","v":[["Ahira",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3619,3687,3928,3933,4015]]]]},{"k":"H300","v":[["Ahishahar",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10545]]]]},{"k":"H301","v":[["Ahishar",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8850]]]]},{"k":"H302","v":[["Ahithophel",[20,17,[[9,18,15,0,15,[[281,4,3,0,3],[282,5,4,3,7],[283,8,7,7,14],[289,1,1,14,15]]],[12,2,2,15,17,[[364,2,2,15,17]]]],[8401,8420,8423,8441,8446,8447,8449,8450,8455,8456,8463,8464,8470,8472,8687,11142,11143]]]]},{"k":"H303","v":[["Ahlab",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6540]]]]},{"k":"H304","v":[["Ahlai",[2,2,[[12,2,2,0,2,[[339,1,1,0,1],[348,1,1,1,2]]]],[10337,10714]]]]},{"k":"H305","v":[["*",[2,2,[[11,1,1,0,1,[[317,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[9650,15903]]],["God",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9650]]],["that",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15903]]]]},{"k":"H306","v":[["amethyst",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2312,2676]]]]},{"k":"H307","v":[["Achmetha",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12153]]]]},{"k":"H308","v":[["Ahasbai",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8687]]]]},{"k":"H309","v":[["*",[16,16,[[0,3,3,0,3,[[23,1,1,0,1],[31,1,1,1,2],[33,1,1,2,3]]],[1,1,1,3,4,[[71,1,1,3,4]]],[4,2,2,4,6,[[159,1,1,4,5],[175,1,1,5,6]]],[6,1,1,6,7,[[215,1,1,6,7]]],[18,3,3,7,10,[[517,1,1,7,8],[547,1,1,8,9],[604,1,1,9,10]]],[19,1,1,10,11,[[650,1,1,10,11]]],[20,1,1,11,12,[[663,1,1,11,12]]],[22,2,2,12,14,[[683,1,1,12,13],[724,1,1,13,14]]],[26,1,1,14,15,[[858,1,1,14,15]]],[34,1,1,15,16,[[904,1,1,15,16]]]],[647,932,999,2142,5121,5521,6651,14542,14976,16123,17074,17401,17750,18599,22007,22751]]],["Hinder",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[647]]],["continue",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17750]]],["defer",[2,2,[[20,1,1,0,1,[[663,1,1,0,1]]],[26,1,1,1,2,[[858,1,1,1,2]]]],[17401,22007]]],["deferred",[1,1,[[0,1,1,0,1,[[33,1,1,0,1]]]],[999]]],["delay",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2142]]],["late",[1,1,[[18,1,1,0,1,[[604,1,1,0,1]]]],[16123]]],["long",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17074]]],["slack",[2,2,[[4,2,2,0,2,[[159,1,1,0,1],[175,1,1,1,2]]]],[5121,5521]]],["tarry",[3,3,[[6,1,1,0,1,[[215,1,1,0,1]]],[22,1,1,1,2,[[724,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[6651,18599,22751]]],["tarrying",[2,2,[[18,2,2,0,2,[[517,1,1,0,1],[547,1,1,1,2]]]],[14542,14976]]],["there",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[932]]]]},{"k":"H310","v":[["*",[714,664,[[0,85,83,0,83,[[4,9,9,0,9],[5,1,1,9,10],[8,2,2,10,12],[9,3,3,12,15],[10,9,9,15,24],[12,1,1,24,25],[13,1,1,25,26],[14,2,2,26,28],[15,1,1,28,29],[16,6,5,29,34],[17,4,4,34,38],[18,3,3,38,41],[21,3,3,41,44],[22,1,1,44,45],[23,7,7,45,52],[24,2,2,52,54],[25,1,1,54,55],[29,1,1,55,56],[30,2,2,56,58],[31,4,3,58,61],[32,1,1,61,62],[34,2,2,62,64],[36,1,1,64,65],[37,1,1,65,66],[38,1,1,66,67],[39,1,1,67,68],[40,8,8,68,76],[43,1,1,76,77],[44,1,1,77,78],[45,1,1,78,79],[47,3,3,79,82],[49,1,1,82,83]]],[1,28,25,83,108,[[52,2,2,83,85],[54,1,1,85,86],[56,1,1,86,87],[59,1,1,87,88],[60,3,3,88,91],[63,9,8,91,99],[64,1,1,99,100],[67,1,1,100,101],[72,2,1,101,102],[77,1,1,102,103],[78,1,1,103,104],[82,1,1,104,105],[83,4,3,105,108]]],[2,25,22,108,130,[[102,4,4,108,112],[103,7,5,112,117],[104,1,1,117,118],[105,3,3,118,121],[106,1,1,121,122],[109,3,2,122,124],[111,1,1,124,125],[114,3,3,125,128],[115,1,1,128,129],[116,1,1,129,130]]],[3,28,27,130,157,[[119,1,1,130,131],[120,1,1,131,132],[121,1,1,132,133],[122,2,2,133,135],[123,1,1,135,136],[124,2,2,136,138],[125,1,1,138,139],[128,2,2,139,141],[130,2,2,141,143],[131,2,1,143,144],[132,1,1,144,145],[135,1,1,145,146],[141,2,2,146,148],[142,1,1,148,149],[146,1,1,149,150],[147,2,2,150,152],[148,4,4,152,156],[151,1,1,156,157]]],[4,31,30,157,187,[[153,3,3,157,160],[156,3,3,160,163],[158,1,1,163,164],[159,1,1,164,165],[160,1,1,165,166],[162,1,1,166,167],[163,3,3,167,170],[164,4,3,170,173],[165,2,2,173,175],[171,1,1,175,176],[173,1,1,176,177],[175,1,1,177,178],[176,3,3,178,181],[177,1,1,181,182],[180,1,1,182,183],[181,1,1,183,184],[183,3,3,184,187]]],[5,40,36,187,223,[[187,1,1,187,188],[188,5,3,188,191],[189,1,1,191,192],[192,3,3,192,195],[193,1,1,195,196],[194,10,8,196,204],[195,1,1,204,205],[196,3,3,205,208],[200,3,3,208,211],[206,1,1,211,212],[208,5,5,212,217],[209,1,1,217,218],[210,5,5,218,223]]],[6,42,40,223,263,[[211,3,3,223,226],[212,5,5,226,231],[213,4,3,231,234],[214,3,2,234,236],[215,1,1,236,237],[216,2,2,237,239],[217,2,2,239,241],[218,4,4,241,245],[219,3,3,245,248],[220,2,2,248,250],[221,1,1,250,251],[222,3,3,251,254],[223,1,1,254,255],[225,1,1,255,256],[226,1,1,256,257],[228,1,1,257,258],[229,3,3,258,261],[230,2,2,261,263]]],[7,9,9,263,272,[[232,2,2,263,265],[233,5,5,265,270],[234,1,1,270,271],[235,1,1,271,272]]],[8,53,45,272,317,[[236,2,1,272,273],[240,1,1,273,274],[241,2,2,274,276],[242,1,1,276,277],[243,1,1,277,278],[244,1,1,278,279],[245,1,1,279,280],[246,3,2,280,282],[247,3,3,282,285],[248,2,2,285,287],[249,7,6,287,293],[250,2,2,293,295],[252,4,4,295,299],[255,2,2,299,301],[256,1,1,301,302],[257,1,1,302,303],[258,2,2,303,305],[259,10,5,305,310],[260,3,3,310,313],[261,2,2,313,315],[265,2,2,315,317]]],[9,59,54,317,371,[[267,3,3,317,320],[268,15,13,320,333],[269,4,4,333,337],[271,2,2,337,339],[273,2,2,339,341],[274,1,1,341,342],[276,1,1,342,343],[277,2,2,343,345],[279,4,4,345,349],[281,2,2,349,351],[283,3,3,351,354],[284,2,2,354,356],[285,1,1,356,357],[286,10,7,357,364],[287,3,3,364,367],[289,3,3,367,370],[290,1,1,370,371]]],[10,56,46,371,417,[[291,11,11,371,382],[292,2,1,382,383],[293,1,1,383,384],[299,2,2,384,386],[300,1,1,386,387],[301,6,5,387,392],[302,1,1,392,393],[303,5,4,393,397],[304,3,3,397,400],[305,1,1,400,401],[306,6,3,401,404],[307,1,1,404,405],[308,3,2,405,407],[309,7,4,407,411],[310,2,2,411,413],[311,3,3,413,416],[312,1,1,416,417]]],[11,31,29,417,446,[[313,1,1,417,418],[314,1,1,418,419],[316,1,1,419,420],[317,3,2,420,422],[318,3,3,422,425],[319,2,2,425,427],[321,4,4,427,431],[322,1,1,431,432],[323,2,2,432,434],[325,1,1,434,435],[326,3,3,435,438],[329,3,2,438,440],[330,2,2,440,442],[331,1,1,442,443],[335,2,2,443,445],[337,1,1,445,446]]],[12,15,14,446,460,[[339,2,2,446,448],[342,1,1,448,449],[347,2,1,449,450],[348,1,1,450,451],[351,1,1,451,452],[354,2,2,452,454],[355,1,1,454,455],[356,1,1,455,456],[357,1,1,456,457],[364,2,2,457,459],[365,1,1,459,460]]],[13,30,28,460,488,[[367,1,1,460,461],[368,1,1,461,462],[374,1,1,462,463],[377,2,2,463,465],[379,3,2,465,467],[384,1,1,467,468],[386,2,2,468,470],[387,1,1,470,471],[388,1,1,471,472],[389,1,1,472,473],[390,2,2,473,475],[391,4,3,475,478],[392,2,2,478,480],[398,3,3,480,483],[399,1,1,483,484],[400,2,2,484,486],[401,2,2,486,488]]],[14,4,4,488,492,[[405,1,1,488,489],[409,1,1,489,490],[411,2,2,490,492]]],[15,25,22,492,514,[[415,16,13,492,505],[416,3,3,505,508],[417,1,1,508,509],[421,1,1,509,510],[423,1,1,510,511],[424,2,2,511,513],[425,1,1,513,514]]],[16,2,2,514,516,[[427,1,1,514,515],[428,1,1,515,516]]],[17,15,15,516,531,[[438,1,1,516,517],[453,1,1,517,518],[454,1,1,518,519],[456,3,3,519,522],[464,1,1,522,523],[466,1,1,523,524],[469,1,1,524,525],[472,1,1,525,526],[474,2,2,526,528],[476,1,1,528,529],[477,2,2,529,531]]],[18,9,9,531,540,[[522,1,1,531,532],[526,2,2,532,534],[527,1,1,534,535],[540,1,1,535,536],[545,1,1,536,537],[550,1,1,537,538],[555,1,1,538,539],[571,1,1,539,540]]],[19,6,6,540,546,[[634,1,1,540,541],[647,3,3,541,544],[651,1,1,544,545],[655,1,1,545,546]]],[20,8,8,546,554,[[660,2,2,546,548],[661,1,1,548,549],[664,1,1,549,550],[665,1,1,550,551],[667,1,1,551,552],[668,1,1,552,553],[670,1,1,553,554]]],[21,2,2,554,556,[[671,1,1,554,555],[672,1,1,555,556]]],[22,10,10,556,566,[[679,1,1,556,557],[708,1,1,557,558],[715,1,1,558,559],[716,1,1,559,560],[721,1,1,560,561],[723,1,1,561,562],[735,1,1,562,563],[737,1,1,563,564],[743,1,1,564,565],[744,1,1,565,566]]],[23,54,52,566,618,[[746,5,5,566,571],[747,3,3,571,574],[751,2,2,574,576],[752,1,1,576,577],[753,4,3,577,580],[755,1,1,580,581],[756,2,2,581,583],[757,2,2,583,585],[760,3,3,585,588],[761,1,1,588,589],[762,1,1,589,590],[765,1,1,590,591],[768,1,1,591,592],[769,2,2,592,594],[772,1,1,594,595],[773,2,2,595,597],[775,3,2,597,599],[776,4,4,599,603],[778,2,2,603,605],[779,1,1,605,606],[780,1,1,606,607],[783,1,1,607,608],[784,1,1,608,609],[785,1,1,609,610],[786,1,1,610,611],[790,1,1,611,612],[792,1,1,612,613],[793,2,2,613,615],[794,1,1,615,616],[795,1,1,616,617],[796,1,1,617,618]]],[25,25,25,618,643,[[804,1,1,618,619],[806,2,2,619,621],[807,1,1,621,622],[810,1,1,622,623],[811,1,1,623,624],[813,1,1,624,625],[814,1,1,625,626],[815,2,2,626,628],[817,2,2,628,630],[821,4,4,630,634],[824,2,2,634,636],[830,1,1,636,637],[834,1,1,637,638],[841,1,1,638,639],[842,1,1,639,640],[845,2,2,640,642],[847,1,1,642,643]]],[26,2,2,643,645,[[857,1,1,643,644],[858,1,1,644,645]]],[27,7,7,645,652,[[862,1,1,645,646],[863,2,2,646,648],[864,1,1,648,649],[866,2,2,649,651],[872,1,1,651,652]]],[28,5,4,652,656,[[877,5,4,652,656]]],[29,3,3,656,659,[[880,1,1,656,657],[885,2,2,657,659]]],[35,1,1,659,660,[[906,1,1,659,660]]],[37,4,4,660,664,[[911,1,1,660,661],[912,1,1,661,662],[916,1,1,662,663],[917,1,1,663,664]]]],[109,112,115,118,121,124,127,131,135,141,214,233,235,252,266,276,277,279,281,283,285,287,289,291,332,353,361,374,394,404,405,406,407,416,429,434,436,443,463,474,483,548,560,567,590,596,599,627,630,646,652,658,669,684,710,851,896,909,946,947,948,967,1016,1023,1100,1149,1156,1173,1198,1201,1214,1218,1222,1225,1226,1234,1328,1373,1416,1452,1455,1457,1520,1580,1599,1633,1710,1791,1807,1811,1814,1893,1897,1898,1899,1906,1908,1912,1917,1940,2001,2146,2336,2365,2481,2511,2512,2528,3059,3087,3107,3108,3119,3130,3147,3154,3159,3196,3202,3227,3229,3242,3323,3324,3376,3484,3515,3517,3557,3588,3715,3758,3818,3842,3843,3938,3954,3961,3982,4073,4075,4132,4151,4192,4219,4296,4479,4484,4490,4663,4666,4688,4729,4730,4733,4740,4873,4896,4900,4928,5007,5041,5044,5100,5115,5156,5201,5212,5236,5238,5265,5268,5270,5274,5276,5412,5460,5514,5529,5545,5546,5565,5625,5701,5744,5755,5757,5852,5874,5876,5885,5896,5957,5958,5962,5984,6004,6006,6008,6016,6018,6019,6022,6036,6053,6078,6083,6090,6195,6196,6201,6377,6442,6444,6449,6453,6455,6461,6481,6482,6496,6505,6507,6510,6515,6518,6552,6555,6557,6562,6564,6590,6596,6599,6613,6615,6637,6688,6689,6705,6717,6724,6731,6746,6752,6757,6758,6803,6812,6814,6865,6877,6880,6882,6895,6936,6953,7005,7027,7029,7047,7094,7099,7142,7143,7151,7152,7156,7158,7160,7182,7194,7221,7328,7338,7343,7354,7372,7404,7423,7450,7452,7474,7480,7481,7489,7492,7520,7521,7530,7544,7545,7554,7571,7591,7631,7632,7653,7671,7767,7768,7781,7807,7835,7838,7840,7844,7847,7853,7860,7874,7880,7903,7908,7923,7986,7999,8023,8029,8032,8050,8059,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8079,8097,8107,8109,8112,8145,8155,8188,8192,8210,8241,8267,8274,8318,8334,8335,8351,8390,8402,8450,8458,8470,8494,8500,8541,8556,8560,8561,8564,8565,8567,8568,8581,8594,8598,8662,8663,8664,8702,8723,8724,8730,8731,8734,8737,8741,8744,8747,8752,8757,8798,8828,9057,9072,9098,9110,9112,9113,9114,9118,9171,9198,9207,9215,9217,9226,9227,9228,9253,9286,9304,9305,9334,9359,9362,9398,9399,9407,9408,9423,9427,9452,9472,9477,9513,9534,9575,9633,9667,9668,9693,9698,9706,9721,9722,9774,9775,9781,9783,9822,9835,9844,9873,9913,9915,9918,9998,10004,10029,10030,10082,10168,10190,10227,10327,10330,10453,10661,10685,10788,10870,10874,10891,10908,10930,11116,11143,11151,11206,11228,11354,11430,11434,11466,11472,11574,11588,11622,11642,11648,11670,11681,11694,11718,11729,11731,11734,11749,11876,11884,11898,11922,11964,11966,11980,11986,12102,12174,12247,12250,12343,12344,12345,12347,12348,12349,12350,12351,12352,12354,12356,12357,12358,12372,12375,12382,12397,12537,12596,12656,12662,12690,12725,12748,12905,13278,13323,13358,13376,13388,13554,13595,13710,13773,13842,13844,13920,13929,13938,14611,14661,14665,14685,14847,14925,15044,15184,15446,16597,16961,16971,16979,17106,17219,17345,17351,17381,17429,17443,17478,17507,17525,17541,17563,17680,18238,18374,18407,18515,18575,18773,18813,18899,18939,18967,18970,18973,18988,18990,19009,19019,19021,19125,19128,19155,19189,19191,19197,19236,19255,19264,19276,19293,19347,19348,19352,19373,19396,19447,19525,19540,19560,19630,19637,19653,19710,19724,19747,19749,19770,19771,19809,19812,19838,19869,19928,19942,19973,19991,20071,20082,20133,20164,20187,20258,20284,20514,20548,20558,20572,20627,20644,20694,20711,20738,20742,20785,20796,20911,20919,20925,20934,21037,21042,21199,21311,21478,21541,21609,21625,21667,21962,22014,22096,22110,22118,22133,22160,22163,22250,22313,22314,22325,22339,22383,22465,22479,22793,22886,22907,22953,22976]]],["+",[140,137,[[0,10,10,0,10,[[14,1,1,0,1],[18,1,1,1,2],[23,4,4,2,6],[24,1,1,6,7],[31,2,2,7,9],[40,1,1,9,10]]],[1,6,5,10,15,[[60,1,1,10,11],[63,3,2,11,13],[72,1,1,13,14],[83,1,1,14,15]]],[2,4,4,15,19,[[103,2,2,15,17],[105,2,2,17,19]]],[3,5,5,19,24,[[122,1,1,19,20],[130,2,2,20,22],[132,1,1,22,23],[148,1,1,23,24]]],[4,6,6,24,30,[[156,1,1,24,25],[159,1,1,25,26],[171,1,1,26,27],[175,1,1,27,28],[176,1,1,28,29],[181,1,1,29,30]]],[5,14,14,30,44,[[188,1,1,30,31],[192,1,1,31,32],[193,1,1,32,33],[194,4,4,33,37],[195,1,1,37,38],[196,1,1,38,39],[208,4,4,39,43],[210,1,1,43,44]]],[6,9,9,44,53,[[212,3,3,44,47],[219,3,3,47,50],[221,1,1,50,51],[226,1,1,51,52],[229,1,1,52,53]]],[7,3,3,53,56,[[232,1,1,53,54],[233,1,1,54,55],[234,1,1,55,56]]],[8,12,12,56,68,[[241,1,1,56,57],[244,1,1,57,58],[245,1,1,58,59],[247,1,1,59,60],[249,1,1,60,61],[250,1,1,61,62],[252,2,2,62,64],[259,3,3,64,67],[265,1,1,67,68]]],[9,16,16,68,84,[[268,8,8,68,76],[269,1,1,76,77],[273,1,1,77,78],[277,2,2,78,80],[281,1,1,80,81],[285,1,1,81,82],[286,1,1,82,83],[287,1,1,83,84]]],[10,11,10,84,94,[[299,1,1,84,85],[300,1,1,85,86],[304,1,1,86,87],[306,1,1,87,88],[308,3,2,88,90],[309,2,2,90,92],[311,1,1,92,93],[312,1,1,93,94]]],[11,10,10,94,104,[[316,1,1,94,95],[318,1,1,95,96],[321,2,2,96,98],[322,1,1,98,99],[323,1,1,99,100],[325,1,1,100,101],[329,2,2,101,103],[330,1,1,103,104]]],[13,7,6,104,110,[[379,2,1,104,105],[384,1,1,105,106],[389,1,1,106,107],[391,1,1,107,108],[398,1,1,108,109],[400,1,1,109,110]]],[15,1,1,110,111,[[416,1,1,110,111]]],[17,1,1,111,112,[[469,1,1,111,112]]],[18,1,1,112,113,[[555,1,1,112,113]]],[20,1,1,113,114,[[668,1,1,113,114]]],[22,3,3,114,117,[[679,1,1,114,115],[708,1,1,115,116],[737,1,1,116,117]]],[23,10,10,117,127,[[747,1,1,117,118],[753,1,1,118,119],[760,1,1,119,120],[765,1,1,120,121],[773,1,1,121,122],[776,1,1,122,123],[778,1,1,123,124],[790,1,1,124,125],[792,1,1,125,126],[793,1,1,126,127]]],[25,5,5,127,132,[[811,1,1,127,128],[814,1,1,128,129],[815,2,2,129,131],[842,1,1,131,132]]],[27,1,1,132,133,[[862,1,1,132,133]]],[28,1,1,133,134,[[877,1,1,133,134]]],[29,1,1,134,135,[[885,1,1,134,135]]],[35,1,1,135,136,[[906,1,1,135,136]]],[37,1,1,136,137,[[916,1,1,136,137]]]],[374,483,596,599,630,652,684,947,948,1226,1807,1906,1908,2146,2528,3147,3159,3227,3229,3842,4132,4151,4219,4733,5007,5115,5412,5514,5529,5701,5876,5957,5984,6004,6006,6016,6036,6053,6090,6442,6444,6449,6455,6507,6552,6557,6564,6757,6758,6803,6865,6953,7047,7143,7151,7182,7338,7404,7423,7480,7554,7571,7631,7632,7840,7844,7847,7999,8059,8068,8070,8071,8072,8075,8076,8079,8109,8188,8267,8274,8390,8541,8556,8594,9057,9098,9226,9304,9359,9362,9407,9408,9477,9513,9633,9693,9774,9775,9822,9844,9873,9998,10004,10030,11466,11574,11670,11731,11898,11966,12372,13710,15184,17507,17680,18238,18813,19021,19197,19352,19447,19653,19771,19812,20071,20082,20133,20644,20711,20738,20742,21541,22096,22339,22479,22793,22953]]],["After",[31,28,[[0,2,2,0,2,[[14,1,1,0,1],[17,1,1,1,2]]],[4,1,1,2,3,[[153,1,1,2,3]]],[8,1,1,3,4,[[259,1,1,3,4]]],[10,1,1,4,5,[[303,1,1,4,5]]],[13,3,3,5,8,[[398,2,2,5,7],[401,1,1,7,8]]],[15,15,12,8,20,[[415,15,12,8,20]]],[16,2,2,20,22,[[427,1,1,20,21],[428,1,1,21,22]]],[17,4,4,22,26,[[438,1,1,22,23],[464,1,1,23,24],[472,1,1,24,25],[477,1,1,25,26]]],[23,1,1,26,27,[[775,1,1,26,27]]],[37,1,1,27,28,[[912,1,1,27,28]]]],[361,436,4896,7853,9217,11876,11884,11986,12343,12344,12345,12347,12348,12350,12351,12352,12354,12356,12357,12358,12725,12748,12905,13554,13773,13938,19724,22907]]],["Afterward",[1,1,[[27,1,1,0,1,[[864,1,1,0,1]]]],[22133]]],["Behind",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18773]]],["Forasmuch",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1234]]],["after",[406,383,[[0,59,58,0,58,[[4,9,9,0,9],[5,1,1,9,10],[8,2,2,10,12],[9,2,2,12,14],[10,9,9,14,23],[13,1,1,23,24],[15,1,1,24,25],[16,6,5,25,30],[17,1,1,30,31],[18,1,1,31,32],[21,2,2,32,34],[22,1,1,34,35],[23,1,1,35,36],[24,1,1,36,37],[25,1,1,37,38],[30,2,2,38,40],[32,1,1,40,41],[34,2,2,41,43],[36,1,1,43,44],[38,1,1,44,45],[39,1,1,45,46],[40,6,6,46,52],[43,1,1,52,53],[44,1,1,53,54],[47,3,3,54,57],[49,1,1,57,58]]],[1,19,18,58,76,[[52,1,1,58,59],[56,1,1,59,60],[59,1,1,60,61],[60,1,1,61,62],[63,6,6,62,68],[64,1,1,68,69],[67,1,1,69,70],[72,1,1,70,71],[77,1,1,71,72],[78,1,1,72,73],[82,1,1,73,74],[83,3,2,74,76]]],[2,12,11,76,87,[[102,2,2,76,78],[103,2,1,78,79],[105,1,1,79,80],[106,1,1,80,81],[109,2,2,81,83],[114,2,2,83,85],[115,1,1,85,86],[116,1,1,86,87]]],[3,10,9,87,96,[[120,1,1,87,88],[124,2,2,88,90],[125,1,1,90,91],[131,2,1,91,92],[141,2,2,92,94],[142,1,1,94,95],[151,1,1,95,96]]],[4,17,17,96,113,[[153,1,1,96,97],[156,2,2,97,99],[158,1,1,99,100],[160,1,1,100,101],[162,1,1,101,102],[163,2,2,102,104],[164,2,2,104,106],[165,2,2,106,108],[173,1,1,108,109],[180,1,1,109,110],[183,3,3,110,113]]],[5,20,17,113,130,[[187,1,1,113,114],[188,3,2,114,116],[189,1,1,116,117],[192,2,2,117,119],[194,5,3,119,122],[196,2,2,122,124],[206,1,1,124,125],[208,1,1,125,126],[209,1,1,126,127],[210,3,3,127,130]]],[6,27,25,130,155,[[211,2,2,130,132],[212,2,2,132,134],[213,4,3,134,137],[214,3,2,137,139],[215,1,1,139,140],[216,2,2,140,142],[217,1,1,142,143],[218,4,4,143,147],[220,2,2,147,149],[222,3,3,149,152],[223,1,1,152,153],[229,1,1,153,154],[230,1,1,154,155]]],[7,5,5,155,160,[[232,1,1,155,156],[233,3,3,156,159],[235,1,1,159,160]]],[8,36,31,160,191,[[236,2,1,160,161],[240,1,1,161,162],[241,1,1,162,163],[242,1,1,163,164],[243,1,1,164,165],[246,3,2,165,167],[247,1,1,167,168],[248,1,1,168,169],[249,6,5,169,174],[250,1,1,174,175],[252,2,2,175,177],[255,2,2,177,179],[257,1,1,179,180],[258,2,2,180,182],[259,5,3,182,185],[260,3,3,185,188],[261,2,2,188,190],[265,1,1,190,191]]],[9,33,31,191,222,[[267,1,1,191,192],[268,5,5,192,197],[269,1,1,197,198],[271,1,1,198,199],[273,1,1,199,200],[274,1,1,200,201],[276,1,1,201,202],[279,3,3,202,205],[281,1,1,205,206],[283,2,2,206,208],[284,2,2,208,210],[286,8,6,210,216],[287,2,2,216,218],[289,3,3,218,221],[290,1,1,221,222]]],[10,33,29,222,251,[[291,10,10,222,232],[292,2,1,232,233],[293,1,1,233,234],[299,1,1,234,235],[301,6,5,235,240],[303,4,3,240,243],[305,1,1,243,244],[307,1,1,244,245],[309,5,4,245,249],[310,1,1,249,250],[311,1,1,250,251]]],[11,16,15,251,266,[[313,1,1,251,252],[317,3,2,252,254],[318,1,1,254,255],[319,2,2,255,257],[321,2,2,257,259],[326,2,2,259,261],[329,1,1,261,262],[330,1,1,262,263],[335,2,2,263,265],[337,1,1,265,266]]],[12,12,11,266,277,[[342,1,1,266,267],[347,2,1,267,268],[348,1,1,268,269],[351,1,1,269,270],[354,1,1,270,271],[355,1,1,271,272],[356,1,1,272,273],[357,1,1,273,274],[364,2,2,274,276],[365,1,1,276,277]]],[13,17,17,277,294,[[367,1,1,277,278],[368,1,1,278,279],[374,1,1,279,280],[377,2,2,280,282],[379,1,1,282,283],[386,2,2,283,285],[387,1,1,285,286],[388,1,1,286,287],[390,2,2,287,289],[391,2,2,289,291],[392,1,1,291,292],[399,1,1,292,293],[400,1,1,293,294]]],[14,3,3,294,297,[[409,1,1,294,295],[411,2,2,295,297]]],[15,5,5,297,302,[[415,1,1,297,298],[423,1,1,298,299],[424,2,2,299,301],[425,1,1,301,302]]],[17,8,8,302,310,[[454,1,1,302,303],[456,2,2,303,305],[466,1,1,305,306],[474,2,2,306,308],[476,1,1,308,309],[477,1,1,309,310]]],[18,3,3,310,313,[[526,1,1,310,311],[540,1,1,311,312],[545,1,1,312,313]]],[19,3,3,313,316,[[634,1,1,313,314],[647,2,2,314,316]]],[20,7,7,316,323,[[660,2,2,316,318],[661,1,1,318,319],[664,1,1,319,320],[665,1,1,320,321],[667,1,1,321,322],[670,1,1,322,323]]],[21,1,1,323,324,[[671,1,1,323,324]]],[22,3,3,324,327,[[721,1,1,324,325],[723,1,1,325,326],[743,1,1,326,327]]],[23,31,30,327,357,[[746,5,5,327,332],[747,2,2,332,334],[751,2,2,334,336],[752,1,1,336,337],[753,3,2,337,339],[755,1,1,339,340],[756,1,1,340,341],[757,1,1,341,342],[760,2,2,342,344],[762,1,1,344,345],[769,2,2,345,347],[776,2,2,347,349],[779,1,1,349,350],[783,1,1,350,351],[785,1,1,351,352],[786,1,1,352,353],[793,1,1,353,354],[794,1,1,354,355],[795,1,1,355,356],[796,1,1,356,357]]],[25,16,16,357,373,[[806,2,2,357,359],[807,1,1,359,360],[810,1,1,360,361],[813,1,1,361,362],[817,1,1,362,363],[821,3,3,363,366],[824,1,1,366,367],[830,1,1,367,368],[834,1,1,368,369],[841,1,1,369,370],[845,2,2,370,372],[847,1,1,372,373]]],[26,1,1,373,374,[[858,1,1,373,374]]],[27,5,5,374,379,[[863,2,2,374,376],[866,2,2,376,378],[872,1,1,378,379]]],[28,1,1,379,380,[[877,1,1,379,380]]],[29,2,2,380,382,[[880,1,1,380,381],[885,1,1,381,382]]],[37,1,1,382,383,[[917,1,1,382,383]]]],[109,112,115,118,121,124,127,131,135,141,214,233,235,266,276,277,279,281,283,285,287,289,291,353,394,404,405,406,407,416,443,463,548,567,590,658,669,710,896,909,967,1016,1023,1100,1156,1173,1198,1201,1214,1218,1222,1225,1328,1373,1452,1455,1457,1520,1599,1710,1791,1814,1893,1897,1898,1899,1912,1917,1940,2001,2146,2336,2365,2481,2511,2512,3087,3108,3154,3202,3242,3323,3324,3484,3515,3557,3588,3758,3954,3961,3982,4192,4479,4484,4490,4873,4900,5041,5044,5100,5156,5201,5212,5236,5265,5268,5274,5276,5460,5625,5744,5755,5757,5852,5874,5876,5896,5958,5962,6008,6018,6019,6078,6083,6377,6453,6461,6482,6496,6505,6510,6515,6555,6562,6590,6596,6599,6613,6615,6637,6688,6689,6717,6724,6731,6746,6752,6812,6814,6877,6880,6882,6895,7027,7099,7142,7152,7156,7158,7194,7221,7328,7343,7354,7372,7450,7452,7481,7489,7520,7521,7530,7544,7545,7591,7653,7671,7767,7768,7807,7835,7838,7847,7853,7860,7874,7880,7903,7908,7923,7986,8023,8050,8068,8073,8074,8077,8107,8145,8192,8210,8241,8318,8334,8335,8402,8450,8470,8494,8500,8560,8561,8564,8565,8567,8568,8581,8598,8662,8663,8664,8702,8723,8730,8731,8734,8737,8741,8744,8747,8752,8757,8798,8828,9072,9110,9112,9113,9114,9118,9198,9207,9215,9253,9334,9398,9399,9407,9408,9423,9452,9534,9667,9668,9698,9721,9722,9781,9783,9913,9915,9998,10029,10168,10190,10227,10453,10661,10685,10788,10874,10891,10908,10930,11116,11143,11151,11206,11228,11354,11430,11434,11472,11588,11622,11642,11648,11681,11694,11729,11731,11749,11922,11964,12174,12247,12250,12349,12596,12656,12662,12690,13323,13376,13388,13595,13842,13844,13920,13929,14665,14847,14925,16597,16961,16979,17345,17351,17381,17429,17443,17478,17525,17541,18515,18575,18899,18967,18970,18973,18988,18990,19009,19019,19125,19128,19155,19189,19191,19236,19255,19276,19347,19348,19396,19540,19560,19749,19770,19838,19928,19973,19991,20164,20187,20258,20284,20548,20558,20572,20627,20694,20785,20911,20919,20925,21037,21199,21311,21478,21609,21625,21667,22014,22110,22118,22160,22163,22250,22313,22383,22465,22976]]],["afterward",[21,21,[[0,2,2,0,2,[[9,1,1,0,1],[37,1,1,1,2]]],[1,1,1,2,3,[[54,1,1,2,3]]],[2,2,2,3,5,[[103,1,1,3,4],[111,1,1,4,5]]],[3,6,6,5,11,[[121,1,1,5,6],[128,1,1,6,7],[135,1,1,7,8],[147,2,2,8,10],[148,1,1,10,11]]],[4,1,1,11,12,[[176,1,1,11,12]]],[5,2,2,12,14,[[188,1,1,12,13],[210,1,1,13,14]]],[6,3,3,14,17,[[211,1,1,14,15],[217,1,1,15,16],[229,1,1,16,17]]],[12,1,1,17,18,[[339,1,1,17,18]]],[13,1,1,18,19,[[401,1,1,18,19]]],[14,1,1,19,20,[[405,1,1,19,20]]],[18,1,1,20,21,[[550,1,1,20,21]]]],[252,1149,1633,3130,3376,3818,4075,4296,4666,4688,4740,5546,5885,6481,6518,6705,7029,10327,11980,12102,15044]]],["afterwards",[5,5,[[0,1,1,0,1,[[29,1,1,0,1]]],[17,1,1,1,2,[[453,1,1,1,2]]],[19,3,3,2,5,[[647,1,1,2,3],[651,1,1,3,4],[655,1,1,4,5]]]],[851,13278,16971,17106,17219]]],["again",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5545]]],["at",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10082,18374]]],["back",[1,1,[[11,1,1,0,1,[[314,1,1,0,1]]]],[9575]]],["backside",[1,1,[[1,1,1,0,1,[[52,1,1,0,1]]]],[1580]]],["behind",[33,32,[[0,5,5,0,5,[[17,1,1,0,1],[18,1,1,1,2],[21,1,1,2,3],[31,2,2,3,5]]],[1,1,1,5,6,[[60,1,1,5,6]]],[3,1,1,6,7,[[119,1,1,6,7]]],[4,1,1,7,8,[[177,1,1,7,8]]],[5,1,1,8,9,[[194,1,1,8,9]]],[6,2,2,9,11,[[228,1,1,9,10],[230,1,1,10,11]]],[8,2,2,11,13,[[256,1,1,11,12],[259,1,1,12,13]]],[9,5,5,13,18,[[267,1,1,13,14],[268,1,1,14,15],[269,1,1,15,16],[271,1,1,16,17],[279,1,1,17,18]]],[10,1,1,18,19,[[304,1,1,18,19]]],[11,2,2,19,21,[[318,1,1,19,20],[323,1,1,20,21]]],[15,2,2,21,23,[[416,1,1,21,22],[421,1,1,22,23]]],[18,1,1,23,24,[[527,1,1,23,24]]],[21,1,1,24,25,[[672,1,1,24,25]]],[22,2,2,25,27,[[716,1,1,25,26],[744,1,1,26,27]]],[25,2,2,27,29,[[804,1,1,27,28],[824,1,1,28,29]]],[28,3,2,29,31,[[877,3,2,29,31]]],[37,1,1,31,32,[[911,1,1,31,32]]]],[434,474,560,946,948,1811,3715,5565,6022,7005,7094,7781,7847,8029,8069,8097,8155,8351,9227,9706,9835,12375,12537,14685,17563,18407,18939,20514,21042,22314,22325,22886]]],["beside",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12397]]],["by",[1,1,[[4,1,1,0,1,[[163,1,1,0,1]]]],[5238]]],["follow",[4,4,[[9,1,1,0,1,[[283,1,1,0,1]]],[18,2,2,1,3,[[522,1,1,1,2],[571,1,1,2,3]]],[23,1,1,3,4,[[761,1,1,3,4]]]],[8458,14611,15446,19373]]],["followed",[15,14,[[3,2,2,0,2,[[148,2,2,0,2]]],[4,1,1,2,3,[[153,1,1,2,3]]],[5,3,3,3,6,[[200,3,3,3,6]]],[8,1,1,6,7,[[248,1,1,6,7]]],[9,2,2,7,9,[[269,1,1,7,8],[286,1,1,8,9]]],[10,5,4,9,13,[[302,1,1,9,10],[306,3,2,10,12],[310,1,1,12,13]]],[15,1,1,13,14,[[416,1,1,13,14]]]],[4729,4730,4928,6195,6196,6201,7492,8112,8556,9171,9304,9305,9427,12382]]],["followeth",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20796]]],["following",[4,4,[[4,1,1,0,1,[[164,1,1,0,1]]],[8,1,1,1,2,[[247,1,1,1,2]]],[10,1,1,2,3,[[291,1,1,2,3]]],[12,1,1,3,4,[[354,1,1,3,4]]]],[5270,7474,8724,10870]]],["hereafter",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20934]]],["of",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8072]]],["posterity",[4,3,[[10,3,2,0,2,[[306,2,1,0,1],[311,1,1,1,2]]],[18,1,1,2,3,[[526,1,1,2,3]]]],[9286,9472,14661]]],["remnant",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9228]]],["since",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]]],[1416,7160]]],["that",[31,30,[[0,3,3,0,3,[[12,1,1,0,1],[17,1,1,1,2],[23,1,1,2,3]]],[2,6,6,3,9,[[102,2,2,3,5],[103,2,2,5,7],[104,1,1,7,8],[114,1,1,8,9]]],[3,4,4,9,13,[[122,1,1,9,10],[123,1,1,10,11],[128,1,1,11,12],[146,1,1,12,13]]],[4,1,1,13,14,[[164,1,1,13,14]]],[6,1,1,14,15,[[225,1,1,14,15]]],[9,1,1,15,16,[[267,1,1,15,16]]],[11,1,1,16,17,[[326,1,1,16,17]]],[12,1,1,17,18,[[339,1,1,17,18]]],[13,2,2,18,20,[[391,1,1,18,19],[392,1,1,19,20]]],[17,1,1,20,21,[[456,1,1,20,21]]],[23,9,8,21,29,[[756,1,1,21,22],[768,1,1,22,23],[772,1,1,23,24],[773,1,1,24,25],[775,2,1,25,26],[778,1,1,26,27],[780,1,1,27,28],[784,1,1,28,29]]],[26,1,1,29,30,[[857,1,1,29,30]]]],[332,429,646,3059,3107,3119,3154,3196,3517,3843,3938,4073,4663,5270,6936,8032,9918,10330,11718,11734,13358,19264,19525,19630,19637,19710,19809,19869,19942,21962]]],["when",[3,3,[[0,1,1,0,1,[[23,1,1,0,1]]],[23,2,2,1,3,[[757,1,1,1,2],[776,1,1,2,3]]]],[627,19293,19747]]],["with",[1,1,[[2,1,1,0,1,[[109,1,1,0,1]]]],[3323]]]]},{"k":"H311","v":[["*",[3,3,[[26,3,3,0,3,[[851,2,2,0,2],[856,1,1,2,3]]]],[21787,21803,21957]]],["+",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21787,21803]]],["after",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21957]]]]},{"k":"H312","v":[["*",[166,161,[[0,15,15,0,15,[[3,1,1,0,1],[7,2,2,1,3],[16,1,1,3,4],[25,2,2,4,6],[28,3,3,6,9],[29,1,1,9,10],[36,1,1,10,11],[40,2,2,11,13],[42,2,2,13,15]]],[1,5,5,15,20,[[69,1,1,15,16],[70,1,1,16,17],[71,1,1,17,18],[72,1,1,18,19],[83,1,1,19,20]]],[2,4,3,20,23,[[95,1,1,20,21],[103,2,1,21,22],[116,1,1,22,23]]],[3,4,4,23,27,[[130,1,1,23,24],[139,2,2,24,26],[152,1,1,26,27]]],[4,25,25,27,52,[[157,1,1,27,28],[158,1,1,28,29],[159,1,1,29,30],[160,1,1,30,31],[163,2,2,31,33],[165,3,3,33,36],[169,1,1,36,37],[170,1,1,37,38],[172,3,3,38,41],[176,1,1,41,42],[180,5,5,42,47],[181,2,2,47,49],[182,1,1,49,50],[183,2,2,50,52]]],[5,3,3,52,55,[[209,1,1,52,53],[210,2,2,53,55]]],[6,6,6,55,61,[[212,4,4,55,59],[220,1,1,59,60],[221,1,1,60,61]]],[7,2,2,61,63,[[233,2,2,61,63]]],[8,8,8,63,71,[[243,1,1,63,64],[245,2,2,64,66],[252,1,1,66,67],[254,1,1,67,68],[256,1,1,68,69],[261,1,1,69,70],[263,1,1,70,71]]],[9,3,3,71,74,[[279,1,1,71,72],[284,2,2,72,74]]],[10,9,9,74,83,[[293,1,1,74,75],[297,1,1,75,76],[299,2,2,76,78],[301,2,2,78,80],[303,1,1,80,81],[304,1,1,81,82],[310,1,1,82,83]]],[11,9,9,83,92,[[313,1,1,83,84],[317,1,1,84,85],[318,1,1,85,86],[319,1,1,86,87],[329,4,4,87,91],[334,1,1,91,92]]],[12,3,3,92,95,[[339,1,1,92,93],[353,1,1,93,94],[360,1,1,94,95]]],[13,10,8,95,103,[[369,4,2,95,97],[373,2,2,97,99],[394,1,1,99,100],[396,1,1,100,101],[398,1,1,101,102],[400,1,1,102,103]]],[14,2,2,103,105,[[403,1,1,103,104],[404,1,1,104,105]]],[15,3,3,105,108,[[417,1,1,105,106],[419,2,2,106,108]]],[16,1,1,108,109,[[429,1,1,108,109]]],[17,5,4,109,113,[[443,1,1,109,110],[466,3,2,110,112],[469,1,1,112,113]]],[18,5,5,113,118,[[493,1,1,113,114],[526,1,1,114,115],[582,1,1,115,116],[586,2,2,116,118]]],[19,2,2,118,120,[[632,1,1,118,119],[652,1,1,119,120]]],[20,1,1,120,121,[[665,1,1,120,121]]],[22,6,5,121,126,[[706,1,1,121,122],[720,1,1,122,123],[726,1,1,123,124],[743,3,2,124,126]]],[23,25,25,126,151,[[745,1,1,126,127],[747,1,1,127,128],[750,1,1,128,129],[751,3,3,129,132],[752,1,1,132,133],[755,1,1,133,134],[757,1,1,134,135],[760,2,2,135,137],[762,1,1,137,138],[763,2,2,138,140],[766,2,2,140,142],[769,1,1,142,143],[776,1,1,143,144],[779,1,1,144,145],[780,2,2,145,147],[788,4,4,147,151]]],[25,5,5,151,156,[[813,1,1,151,152],[841,1,1,152,153],[842,1,1,153,154],[843,1,1,154,155],[845,1,1,155,156]]],[26,2,2,156,158,[[860,1,1,156,157],[861,1,1,157,158]]],[27,1,1,158,159,[[864,1,1,158,159]]],[28,1,1,159,160,[[876,1,1,159,160]]],[37,1,1,160,161,[[912,1,1,160,161]]]],[104,193,195,418,713,714,814,822,825,854,1092,1198,1214,1304,1312,2054,2087,2118,2157,2510,2860,3153,3590,4132,4429,4443,4888,5060,5100,5115,5156,5224,5236,5274,5278,5285,5367,5404,5432,5433,5434,5527,5625,5641,5643,5647,5675,5705,5707,5725,5746,5748,6476,6478,6492,6555,6557,6562,6564,6824,6831,7157,7171,7377,7424,7427,7648,7727,7781,7924,7950,8333,8498,8504,8838,8942,9057,9060,9112,9118,9194,9227,9445,9544,9664,9703,9715,9990,10018,10020,10021,10162,10332,10840,11000,11240,11241,11343,11346,11789,11850,11880,11958,12026,12058,12387,12453,12454,12776,13048,13596,13598,13707,14096,14658,15619,15763,15768,16526,17122,17451,18175,18488,18625,18912,18919,18962,19003,19101,19125,19128,19137,19163,19236,19276,19347,19349,19388,19411,19420,19463,19480,19540,19760,19838,19870,19874,20013,20015,20018,20025,20683,21517,21550,21566,21618,22040,22086,22129,22294,22902]]],["+",[3,3,[[8,1,1,0,1,[[252,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[16,1,1,2,3,[[429,1,1,2,3]]]],[7648,8333,12776]]],["another",[53,52,[[0,6,6,0,6,[[3,1,1,0,1],[25,2,2,1,3],[28,1,1,3,4],[29,1,1,4,5],[36,1,1,5,6]]],[1,1,1,6,7,[[70,1,1,6,7]]],[2,1,1,7,8,[[116,1,1,7,8]]],[3,4,4,8,12,[[130,1,1,8,9],[139,2,2,9,11],[152,1,1,11,12]]],[4,7,7,12,19,[[172,3,3,12,15],[176,1,1,15,16],[180,2,2,16,18],[181,1,1,18,19]]],[6,1,1,19,20,[[212,1,1,19,20]]],[7,1,1,20,21,[[233,1,1,20,21]]],[8,2,2,21,23,[[245,2,2,21,23]]],[9,2,2,23,25,[[284,2,2,23,25]]],[10,3,3,25,28,[[297,1,1,25,26],[303,1,1,26,27],[310,1,1,27,28]]],[11,2,2,28,30,[[313,1,1,28,29],[319,1,1,29,30]]],[12,2,2,30,32,[[339,1,1,30,31],[353,1,1,31,32]]],[13,1,1,32,33,[[398,1,1,32,33]]],[17,2,2,33,35,[[466,2,2,33,35]]],[18,3,3,35,38,[[493,1,1,35,36],[582,1,1,36,37],[586,1,1,37,38]]],[19,1,1,38,39,[[652,1,1,38,39]]],[22,6,5,39,44,[[706,1,1,39,40],[720,1,1,40,41],[726,1,1,41,42],[743,3,2,42,44]]],[23,5,5,44,49,[[747,1,1,44,45],[762,1,1,45,46],[766,1,1,46,47],[780,2,2,47,49]]],[25,1,1,49,50,[[813,1,1,49,50]]],[28,1,1,50,51,[[876,1,1,50,51]]],[37,1,1,51,52,[[912,1,1,51,52]]]],[104,713,714,814,854,1092,2087,3590,4132,4429,4443,4888,5432,5433,5434,5527,5641,5643,5707,6555,7157,7424,7427,8498,8504,8942,9194,9445,9544,9715,10332,10840,11880,13596,13598,14096,15619,15763,17122,18175,18488,18625,18912,18919,19003,19388,19480,19870,19874,20683,22294,22902]]],["following",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15768]]],["man's",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2118]]],["next",[2,2,[[0,1,1,0,1,[[16,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]]],[418,9703]]],["other",[96,93,[[0,8,8,0,8,[[7,2,2,0,2],[28,2,2,2,4],[40,2,2,4,6],[42,2,2,6,8]]],[1,3,3,8,11,[[69,1,1,8,9],[72,1,1,9,10],[83,1,1,10,11]]],[2,3,2,11,13,[[95,1,1,11,12],[103,2,1,12,13]]],[4,18,18,13,31,[[157,1,1,13,14],[158,1,1,14,15],[159,1,1,15,16],[160,1,1,16,17],[163,2,2,17,19],[165,3,3,19,22],[169,1,1,22,23],[170,1,1,23,24],[180,3,3,24,27],[181,1,1,27,28],[182,1,1,28,29],[183,2,2,29,31]]],[5,3,3,31,34,[[209,1,1,31,32],[210,2,2,32,34]]],[6,4,4,34,38,[[212,3,3,34,37],[220,1,1,37,38]]],[7,1,1,38,39,[[233,1,1,38,39]]],[8,5,5,39,44,[[243,1,1,39,40],[254,1,1,40,41],[256,1,1,41,42],[261,1,1,42,43],[263,1,1,43,44]]],[10,6,6,44,50,[[293,1,1,44,45],[299,2,2,45,47],[301,2,2,47,49],[304,1,1,49,50]]],[11,6,6,50,56,[[317,1,1,50,51],[329,4,4,51,55],[334,1,1,55,56]]],[12,1,1,56,57,[[360,1,1,56,57]]],[13,9,7,57,64,[[369,4,2,57,59],[373,2,2,59,61],[394,1,1,61,62],[396,1,1,62,63],[400,1,1,63,64]]],[14,2,2,64,66,[[403,1,1,64,65],[404,1,1,65,66]]],[15,3,3,66,69,[[417,1,1,66,67],[419,2,2,67,69]]],[23,18,18,69,87,[[745,1,1,69,70],[751,3,3,70,73],[755,1,1,73,74],[757,1,1,74,75],[760,2,2,75,77],[763,2,2,77,79],[766,1,1,79,80],[769,1,1,80,81],[776,1,1,81,82],[779,1,1,82,83],[788,4,4,83,87]]],[25,4,4,87,91,[[841,1,1,87,88],[842,1,1,88,89],[843,1,1,89,90],[845,1,1,90,91]]],[26,1,1,91,92,[[861,1,1,91,92]]],[27,1,1,92,93,[[864,1,1,92,93]]]],[193,195,822,825,1198,1214,1304,1312,2054,2157,2510,2860,3153,5060,5100,5115,5156,5224,5236,5274,5278,5285,5367,5404,5625,5647,5675,5705,5725,5746,5748,6476,6478,6492,6557,6562,6564,6824,7171,7377,7727,7781,7924,7950,8838,9057,9060,9112,9118,9227,9664,9990,10018,10020,10021,10162,11000,11240,11241,11343,11346,11789,11850,11958,12026,12058,12387,12453,12454,18962,19125,19128,19137,19236,19276,19347,19349,19411,19420,19463,19540,19760,19838,20013,20015,20018,20025,21517,21550,21566,21618,22086,22129]]],["others",[9,9,[[17,3,3,0,3,[[443,1,1,0,1],[466,1,1,1,2],[469,1,1,2,3]]],[18,1,1,3,4,[[526,1,1,3,4]]],[19,1,1,4,5,[[632,1,1,4,5]]],[20,1,1,5,6,[[665,1,1,5,6]]],[23,2,2,6,8,[[750,1,1,6,7],[752,1,1,7,8]]],[26,1,1,8,9,[[860,1,1,8,9]]]],[13048,13598,13707,14658,16526,17451,19101,19163,22040]]],["strange",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6831]]]]},{"k":"H313","v":[["Aher",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10547]]]]},{"k":"H314","v":[["*",[50,48,[[0,2,1,0,1,[[32,2,1,0,1]]],[1,1,1,1,2,[[53,1,1,1,2]]],[3,1,1,2,3,[[118,1,1,2,3]]],[4,7,6,3,9,[[163,1,1,3,4],[165,1,1,4,5],[169,1,1,5,6],[176,2,1,6,7],[181,1,1,7,8],[186,1,1,8,9]]],[7,1,1,9,10,[[234,1,1,9,10]]],[8,1,1,10,11,[[264,1,1,10,11]]],[9,4,4,11,15,[[268,1,1,11,12],[285,2,2,12,14],[289,1,1,14,15]]],[10,1,1,15,16,[[307,1,1,15,16]]],[12,2,2,16,18,[[360,1,1,16,17],[366,1,1,17,18]]],[13,8,8,18,26,[[375,1,1,18,19],[378,1,1,19,20],[382,1,1,20,21],[386,1,1,21,22],[391,1,1,22,23],[392,1,1,23,24],[394,1,1,24,25],[401,1,1,25,26]]],[14,1,1,26,27,[[410,1,1,26,27]]],[15,1,1,27,28,[[420,1,1,27,28]]],[17,2,2,28,30,[[453,1,1,28,29],[454,1,1,29,30]]],[18,4,4,30,34,[[525,1,1,30,31],[555,2,2,31,33],[579,1,1,33,34]]],[19,1,1,34,35,[[658,1,1,34,35]]],[20,2,2,35,37,[[659,1,1,35,36],[662,1,1,36,37]]],[22,5,5,37,42,[[687,1,1,37,38],[708,1,1,38,39],[719,1,1,39,40],[722,1,1,40,41],[726,1,1,41,42]]],[23,1,1,42,43,[[794,1,1,42,43]]],[26,2,2,43,45,[[857,1,1,43,44],[860,1,1,44,45]]],[28,1,1,45,46,[[877,1,1,45,46]]],[36,1,1,46,47,[[910,1,1,46,47]]],[37,1,1,47,48,[[924,1,1,47,48]]]],[962,1609,3689,5232,5281,5371,5528,5701,5841,7182,7969,8075,8522,8523,8654,9330,11010,11193,11393,11452,11520,11621,11730,11754,11790,11993,12214,12511,13296,13322,14647,15117,15119,15539,17309,17326,17397,17830,18225,18455,18539,18626,20183,21964,22065,22331,22864,23076]]],["+",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12214]]],["after",[5,5,[[0,1,1,0,1,[[32,1,1,0,1]]],[10,1,1,1,2,[[307,1,1,1,2]]],[17,1,1,2,3,[[453,1,1,2,3]]],[20,2,2,3,5,[[659,1,1,3,4],[662,1,1,4,5]]]],[962,9330,13296,17326,17397]]],["afterward",[2,2,[[4,1,1,0,1,[[169,1,1,0,1]]],[22,1,1,1,2,[[687,1,1,1,2]]]],[5371,17830]]],["afterwards",[1,1,[[4,1,1,0,1,[[165,1,1,0,1]]]],[5281]]],["come",[6,6,[[4,1,1,0,1,[[181,1,1,0,1]]],[18,3,3,1,4,[[555,2,2,1,3],[579,1,1,3,4]]],[19,1,1,4,5,[[658,1,1,4,5]]],[22,1,1,5,6,[[708,1,1,5,6]]]],[5701,15117,15119,15539,17309,18225]]],["end",[2,2,[[7,1,1,0,1,[[234,1,1,0,1]]],[9,1,1,1,2,[[268,1,1,1,2]]]],[7182,8075]]],["following",[1,1,[[18,1,1,0,1,[[525,1,1,0,1]]]],[14647]]],["hinder",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23076]]],["hindermost",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[962]]],["hindmost",[1,1,[[3,1,1,0,1,[[118,1,1,0,1]]]],[3689]]],["last",[19,19,[[9,3,3,0,3,[[285,2,2,0,2],[289,1,1,2,3]]],[12,2,2,3,5,[[360,1,1,3,4],[366,1,1,4,5]]],[13,8,8,5,13,[[375,1,1,5,6],[378,1,1,6,7],[382,1,1,7,8],[386,1,1,8,9],[391,1,1,9,10],[392,1,1,10,11],[394,1,1,11,12],[401,1,1,12,13]]],[15,1,1,13,14,[[420,1,1,13,14]]],[22,3,3,14,17,[[719,1,1,14,15],[722,1,1,15,16],[726,1,1,16,17]]],[23,1,1,17,18,[[794,1,1,17,18]]],[26,1,1,18,19,[[857,1,1,18,19]]]],[8522,8523,8654,11010,11193,11393,11452,11520,11621,11730,11754,11790,11993,12511,18455,18539,18626,20183,21964]]],["latter",[6,5,[[1,1,1,0,1,[[53,1,1,0,1]]],[4,2,1,1,2,[[176,2,1,1,2]]],[17,1,1,2,3,[[454,1,1,2,3]]],[26,1,1,3,4,[[860,1,1,3,4]]],[36,1,1,4,5,[[910,1,1,4,5]]]],[1609,5528,13322,22065,22864]]],["rereward",[1,1,[[8,1,1,0,1,[[264,1,1,0,1]]]],[7969]]],["utmost",[2,2,[[4,1,1,0,1,[[186,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[5841,22331]]],["uttermost",[1,1,[[4,1,1,0,1,[[163,1,1,0,1]]]],[5232]]]]},{"k":"H315","v":[["Aharah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10576]]]]},{"k":"H316","v":[["Aharhel",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10393]]]]},{"k":"H317","v":[["*",[6,5,[[26,6,5,0,5,[[851,2,1,0,1],[856,4,4,1,5]]]],[21797,21938,21939,21941,21953]]],["another",[5,4,[[26,5,4,0,4,[[851,2,1,0,1],[856,3,3,1,4]]]],[21797,21938,21939,21941]]],["other",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21953]]]]},{"k":"H318","v":[["last",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21845]]]]},{"k":"H319","v":[["*",[61,60,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,3,3,1,4,[[139,1,1,1,2],[140,2,2,2,4]]],[4,6,6,4,10,[[156,1,1,4,5],[160,1,1,5,6],[163,1,1,6,7],[183,1,1,7,8],[184,2,2,8,10]]],[17,2,2,10,12,[[443,1,1,10,11],[477,1,1,11,12]]],[18,5,5,12,17,[[514,2,2,12,14],[550,1,1,14,15],[586,1,1,15,16],[616,1,1,16,17]]],[19,13,13,17,30,[[632,2,2,17,19],[641,2,2,19,21],[643,1,1,21,22],[646,1,1,22,23],[647,1,1,23,24],[650,2,2,24,26],[651,2,2,26,28],[652,1,1,28,29],[656,1,1,29,30]]],[20,2,2,30,32,[[665,1,1,30,31],[668,1,1,31,32]]],[22,4,4,32,36,[[680,1,1,32,33],[719,1,1,33,34],[724,1,1,34,35],[725,1,1,35,36]]],[23,10,10,36,46,[[749,1,1,36,37],[756,1,1,37,38],[761,1,1,38,39],[767,1,1,39,40],[773,1,1,40,41],[774,1,1,41,42],[775,1,1,42,43],[792,1,1,43,44],[793,1,1,44,45],[794,1,1,45,46]]],[24,1,1,46,47,[[797,1,1,46,47]]],[25,4,3,47,50,[[824,2,1,47,48],[839,2,2,48,50]]],[26,5,5,50,55,[[857,2,2,50,52],[859,1,1,52,53],[860,1,1,53,54],[861,1,1,54,55]]],[27,1,1,55,56,[[864,1,1,55,56]]],[29,3,3,56,59,[[882,1,1,56,57],[886,1,1,57,58],[887,1,1,58,59]]],[32,1,1,59,60,[[896,1,1,59,60]]]],[1474,4426,4460,4466,5034,5153,5220,5757,5778,5787,13036,13934,14487,14488,15037,15768,16248,16521,16528,16784,16785,16865,16945,16975,17062,17076,17093,17099,17121,17245,17437,17506,17687,18473,18596,18606,19089,19253,19368,19504,19646,19691,19708,20127,20166,20178,20319,21032,21433,21441,21980,21984,22029,22040,22089,22133,22412,22491,22496,22621]]],["end",[32,32,[[3,2,2,0,2,[[139,1,1,0,1],[140,1,1,1,2]]],[4,4,4,2,6,[[160,1,1,2,3],[163,1,1,3,4],[184,2,2,4,6]]],[17,2,2,6,8,[[443,1,1,6,7],[477,1,1,7,8]]],[18,3,3,8,11,[[514,2,2,8,10],[550,1,1,10,11]]],[19,7,7,11,18,[[632,1,1,11,12],[641,2,2,12,14],[643,1,1,14,15],[647,1,1,15,16],[650,1,1,16,17],[652,1,1,17,18]]],[20,2,2,18,20,[[665,1,1,18,19],[668,1,1,19,20]]],[22,3,3,20,23,[[719,1,1,20,21],[724,1,1,21,22],[725,1,1,22,23]]],[23,5,5,23,28,[[749,1,1,23,24],[756,1,1,24,25],[761,1,1,25,26],[773,1,1,26,27],[775,1,1,27,28]]],[24,1,1,28,29,[[797,1,1,28,29]]],[26,2,2,29,31,[[857,1,1,29,30],[861,1,1,30,31]]],[29,1,1,31,32,[[886,1,1,31,32]]]],[4426,4466,5153,5220,5778,5787,13036,13934,14487,14488,15037,16521,16784,16785,16865,16975,17062,17121,17437,17506,18473,18596,18606,19089,19253,19368,19646,19708,20319,21980,22089,22491]]],["hindermost",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20178]]],["last",[6,6,[[0,1,1,0,1,[[48,1,1,0,1]]],[19,2,2,1,3,[[632,1,1,1,2],[650,1,1,2,3]]],[22,1,1,3,4,[[680,1,1,3,4]]],[29,1,1,4,5,[[887,1,1,4,5]]],[32,1,1,5,6,[[896,1,1,5,6]]]],[1474,16528,17076,17687,22496,22621]]],["latter",[12,12,[[3,1,1,0,1,[[140,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[183,1,1,2,3]]],[19,1,1,3,4,[[646,1,1,3,4]]],[23,4,4,4,8,[[767,1,1,4,5],[774,1,1,5,6],[792,1,1,6,7],[793,1,1,7,8]]],[25,2,2,8,10,[[839,2,2,8,10]]],[26,1,1,10,11,[[859,1,1,10,11]]],[27,1,1,11,12,[[864,1,1,11,12]]]],[4460,5034,5757,16945,19504,19691,20127,20166,21433,21441,22029,22133]]],["length",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17245]]],["parts",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16248]]],["posterity",[3,3,[[18,1,1,0,1,[[586,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]],[29,1,1,2,3,[[882,1,1,2,3]]]],[15768,22040,22412]]],["remnant",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21032]]],["residue",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21032]]],["reward",[2,2,[[19,2,2,0,2,[[651,2,2,0,2]]]],[17093,17099]]],["time",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21984]]]]},{"k":"H320","v":[["latter",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21786]]]]},{"k":"H321","v":[["*",[5,5,[[26,5,5,0,5,[[851,2,2,0,2],[852,1,1,2,3],[854,1,1,3,4],[856,1,1,4,5]]]],[21769,21802,21836,21891,21957]]],["another",[2,2,[[26,2,2,0,2,[[854,1,1,0,1],[856,1,1,1,2]]]],[21891,21957]]],["other",[3,3,[[26,3,3,0,3,[[851,2,2,0,2],[852,1,1,2,3]]]],[21769,21802,21836]]]]},{"k":"H322","v":[["*",[7,6,[[0,2,1,0,1,[[8,2,1,0,1]]],[8,1,1,1,2,[[239,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[11,2,2,3,5,[[332,2,2,3,5]]],[22,1,1,5,6,[[716,1,1,5,6]]]],[228,7315,9378,10108,10109,18398]]],["again",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9378]]],["backward",[6,5,[[0,2,1,0,1,[[8,2,1,0,1]]],[8,1,1,1,2,[[239,1,1,1,2]]],[11,2,2,2,4,[[332,2,2,2,4]]],[22,1,1,4,5,[[716,1,1,4,5]]]],[228,7315,10108,10109,18398]]]]},{"k":"H323","v":[["lieutenants",[4,4,[[14,1,1,0,1,[[410,1,1,0,1]]],[16,3,3,1,4,[[428,1,1,1,2],[433,1,1,2,3],[434,1,1,3,4]]]],[12237,12759,12826,12837]]]]},{"k":"H324","v":[["princes",[9,9,[[26,9,9,0,9,[[852,3,3,0,3],[855,6,6,3,9]]]],[21809,21810,21834,21906,21907,21908,21909,21911,21912]]]]},{"k":"H325","v":[["*",[31,30,[[14,1,1,0,1,[[406,1,1,0,1]]],[16,29,28,1,29,[[426,9,8,1,9],[427,4,4,9,13],[428,5,5,13,18],[431,1,1,18,19],[432,1,1,19,20],[433,4,4,20,24],[434,3,3,24,27],[435,2,2,27,29]]],[26,1,1,29,30,[[858,1,1,29,30]]]],[12116,12703,12704,12711,12712,12717,12718,12719,12721,12725,12736,12740,12745,12748,12753,12754,12755,12759,12795,12812,12818,12824,12827,12829,12836,12854,12864,12867,12869,21989]]],["Ahasuerus",[30,29,[[14,1,1,0,1,[[406,1,1,0,1]]],[16,28,27,1,28,[[426,9,8,1,9],[427,4,4,9,13],[428,5,5,13,18],[431,1,1,18,19],[432,1,1,19,20],[433,3,3,20,23],[434,3,3,23,26],[435,2,2,26,28]]],[26,1,1,28,29,[[858,1,1,28,29]]]],[12116,12703,12704,12711,12712,12717,12718,12719,12721,12725,12736,12740,12745,12748,12753,12754,12755,12759,12795,12812,12818,12824,12829,12836,12854,12864,12867,12869,21989]]],["Ahasuerus'",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12827]]]]},{"k":"H326","v":[["Haahashtari",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10391]]]]},{"k":"H327","v":[["camels",[2,2,[[16,2,2,0,2,[[433,2,2,0,2]]]],[12827,12831]]]]},{"k":"H328","v":[["*",[6,6,[[0,1,1,0,1,[[32,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[10,1,1,2,3,[[311,1,1,2,3]]],[17,1,1,3,4,[[450,1,1,3,4]]],[22,2,2,4,6,[[686,1,1,4,5],[697,1,1,5,6]]]],[974,8483,9478,13214,17813,18007]]],["charmers",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18007]]],["gently",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8483]]],["secret",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13214]]],["softly",[3,3,[[0,1,1,0,1,[[32,1,1,0,1]]],[10,1,1,1,2,[[311,1,1,1,2]]],[22,1,1,2,3,[[686,1,1,2,3]]]],[974,9478,17813]]]]},{"k":"H329","v":[["*",[6,5,[[0,2,2,0,2,[[49,2,2,0,2]]],[6,3,2,2,4,[[219,3,2,2,4]]],[18,1,1,4,5,[[535,1,1,4,5]]]],[1516,1517,6768,6769,14788]]],["Atad",[2,2,[[0,2,2,0,2,[[49,2,2,0,2]]]],[1516,1517]]],["bramble",[3,2,[[6,3,2,0,2,[[219,3,2,0,2]]]],[6768,6769]]],["thorns",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14788]]]]},{"k":"H330","v":[["linen",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16591]]]]},{"k":"H331","v":[["*",[8,8,[[10,1,1,0,1,[[296,1,1,0,1]]],[18,1,1,1,2,[[535,1,1,1,2]]],[19,2,2,2,4,[[644,1,1,2,3],[648,1,1,3,4]]],[22,1,1,4,5,[[711,1,1,4,5]]],[25,3,3,5,8,[[841,1,1,5,6],[842,2,2,6,8]]]],[8900,14783,16901,16997,18294,21493,21542,21552]]],["narrow",[4,4,[[10,1,1,0,1,[[296,1,1,0,1]]],[25,3,3,1,4,[[841,1,1,1,2],[842,2,2,2,4]]]],[8900,21493,21542,21552]]],["shutteth",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16901]]],["stoppeth",[3,3,[[18,1,1,0,1,[[535,1,1,0,1]]],[19,1,1,1,2,[[648,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]]],[14783,16997,18294]]]]},{"k":"H332","v":[["shut",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14950]]]]},{"k":"H333","v":[["Ater",[5,5,[[14,2,2,0,2,[[404,2,2,0,2]]],[15,3,3,2,5,[[419,2,2,2,4],[422,1,1,4,5]]]],[12043,12069,12441,12465,12566]]]]},{"k":"H334","v":[["+",[2,2,[[6,2,2,0,2,[[213,1,1,0,1],[230,1,1,1,2]]]],[6583,7070]]]]},{"k":"H335","v":[["*",[34,32,[[0,3,3,0,3,[[2,1,1,0,1],[3,1,1,1,2],[15,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[6,1,1,4,5,[[223,1,1,4,5]]],[8,4,4,5,9,[[244,1,1,5,6],[260,1,1,6,7],[261,1,1,7,8],[265,1,1,8,9]]],[9,3,3,9,12,[[267,2,2,9,11],[281,1,1,11,12]]],[10,2,2,12,14,[[303,1,1,12,13],[312,1,1,13,14]]],[11,1,1,14,15,[[315,1,1,14,15]]],[13,1,1,15,16,[[384,1,1,15,16]]],[16,1,1,16,17,[[432,1,1,16,17]]],[17,7,6,17,23,[[437,1,1,17,18],[455,1,1,18,19],[463,2,2,19,21],[473,3,2,21,23]]],[20,2,2,23,25,[[660,1,1,23,24],[669,1,1,24,25]]],[22,4,3,25,28,[[697,1,1,25,26],[728,1,1,26,27],[744,2,1,27,28]]],[23,2,2,28,30,[[749,1,1,28,29],[750,1,1,29,30]]],[31,1,1,30,31,[[889,1,1,30,31]]],[33,1,1,31,32,[[902,1,1,31,32]]]],[64,88,389,5795,6890,7409,7872,7921,7991,8025,8035,8391,9196,9504,9584,11565,12812,12893,13333,13516,13524,13812,13817,17336,17519,18016,18663,18923,19065,19105,22539,22729]]],["+",[19,18,[[0,1,1,0,1,[[15,1,1,0,1]]],[6,1,1,1,2,[[223,1,1,1,2]]],[8,3,3,2,5,[[244,1,1,2,3],[260,1,1,3,4],[265,1,1,4,5]]],[9,2,2,5,7,[[267,2,2,5,7]]],[10,1,1,7,8,[[303,1,1,7,8]]],[11,1,1,8,9,[[315,1,1,8,9]]],[13,1,1,9,10,[[384,1,1,9,10]]],[17,6,5,10,15,[[437,1,1,10,11],[463,2,2,11,13],[473,3,2,13,15]]],[20,1,1,15,16,[[669,1,1,15,16]]],[23,1,1,16,17,[[750,1,1,16,17]]],[31,1,1,17,18,[[889,1,1,17,18]]]],[389,6890,7409,7872,7991,8025,8035,9196,9584,11565,12893,13516,13524,13812,13817,17519,19105,22539]]],["How",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19065]]],["Where",[6,6,[[0,2,2,0,2,[[2,1,1,0,1],[3,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[17,1,1,3,4,[[455,1,1,3,4]]],[22,2,2,4,6,[[697,1,1,4,5],[728,1,1,5,6]]]],[64,88,5795,13333,18016,18663]]],["Which",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9504]]],["what",[2,2,[[9,1,1,0,1,[[281,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[8391,17336]]],["where",[5,4,[[8,1,1,0,1,[[261,1,1,0,1]]],[16,1,1,1,2,[[432,1,1,1,2]]],[22,2,1,2,3,[[744,2,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[7921,12812,18923,22729]]]]},{"k":"H336","v":[["island",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13419]]]]},{"k":"H337","v":[["*",[2,2,[[20,2,2,0,2,[[662,1,1,0,1],[668,1,1,1,2]]]],[17391,17509]]],["Woe",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17509]]],["woe",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17391]]]]},{"k":"H338","v":[["*",[3,3,[[22,2,2,0,2,[[691,1,1,0,1],[712,1,1,1,2]]],[23,1,1,2,3,[[794,1,1,2,3]]]],[17928,18317,20205]]],["island",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18317]]],["islands",[2,2,[[22,1,1,0,1,[[691,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]]],[17928,20205]]]]},{"k":"H339","v":[["*",[36,35,[[0,1,1,0,1,[[9,1,1,0,1]]],[16,1,1,1,2,[[435,1,1,1,2]]],[18,2,2,2,4,[[549,1,1,2,3],[574,1,1,3,4]]],[22,17,17,4,21,[[689,1,1,4,5],[698,1,1,5,6],[701,2,2,6,8],[702,1,1,8,9],[718,1,1,9,10],[719,2,2,10,12],[720,4,4,12,16],[727,1,1,16,17],[729,1,1,17,18],[737,1,1,18,19],[738,1,1,19,20],[744,1,1,20,21]]],[23,4,4,21,25,[[746,1,1,21,22],[769,1,1,22,23],[775,1,1,23,24],[791,1,1,24,25]]],[25,9,8,25,33,[[827,3,2,25,27],[828,5,5,27,32],[840,1,1,32,33]]],[26,1,1,33,34,[[860,1,1,33,34]]],[35,1,1,34,35,[[907,1,1,34,35]]]],[239,12867,15010,15479,17895,18035,18079,18083,18110,18435,18452,18456,18484,18490,18492,18495,18637,18678,18818,18830,18941,18975,19556,19701,20077,21115,21118,21124,21127,21128,21136,21156,21454,22054,22816]]],["+",[3,3,[[22,1,1,0,1,[[689,1,1,0,1]]],[25,2,2,1,3,[[828,2,2,1,3]]]],[17895,21127,21128]]],["country",[1,1,[[23,1,1,0,1,[[791,1,1,0,1]]]],[20077]]],["islands",[4,4,[[22,4,4,0,4,[[719,1,1,0,1],[720,2,2,1,3],[737,1,1,3,4]]]],[18452,18492,18495,18818]]],["isle",[3,3,[[22,3,3,0,3,[[698,1,1,0,1],[701,2,2,1,3]]]],[18035,18079,18083]]],["isles",[25,24,[[0,1,1,0,1,[[9,1,1,0,1]]],[16,1,1,1,2,[[435,1,1,1,2]]],[18,2,2,2,4,[[549,1,1,2,3],[574,1,1,3,4]]],[22,9,9,4,13,[[702,1,1,4,5],[718,1,1,5,6],[719,1,1,6,7],[720,2,2,7,9],[727,1,1,9,10],[729,1,1,10,11],[738,1,1,11,12],[744,1,1,12,13]]],[23,3,3,13,16,[[746,1,1,13,14],[769,1,1,14,15],[775,1,1,15,16]]],[25,7,6,16,22,[[827,3,2,16,18],[828,3,3,18,21],[840,1,1,21,22]]],[26,1,1,22,23,[[860,1,1,22,23]]],[35,1,1,23,24,[[907,1,1,23,24]]]],[239,12867,15010,15479,18110,18435,18456,18484,18490,18637,18678,18830,18941,18975,19556,19701,21115,21118,21124,21136,21156,21454,22054,22816]]]]},{"k":"H340","v":[["+",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2166]]]]},{"k":"H341","v":[["*",[281,274,[[0,2,2,0,2,[[21,1,1,0,1],[48,1,1,1,2]]],[1,5,5,2,7,[[64,2,2,2,4],[72,3,3,4,7]]],[2,13,13,7,20,[[115,13,13,7,20]]],[3,8,8,20,28,[[126,2,2,20,22],[130,1,1,22,23],[139,1,1,23,24],[140,2,2,24,26],[148,1,1,26,27],[151,1,1,27,28]]],[4,25,25,28,53,[[153,1,1,28,29],[158,1,1,29,30],[164,1,1,30,31],[172,4,4,31,35],[173,1,1,35,36],[175,2,2,36,38],[177,1,1,38,39],[180,8,8,39,47],[182,1,1,47,48],[184,3,3,48,51],[185,2,2,51,53]]],[5,11,9,53,62,[[193,4,3,53,56],[196,3,3,56,59],[207,2,1,59,60],[208,1,1,60,61],[209,1,1,61,62]]],[6,9,8,62,70,[[212,3,2,62,64],[213,1,1,64,65],[215,1,1,65,66],[218,1,1,66,67],[221,1,1,67,68],[226,2,2,68,70]]],[8,20,20,70,90,[[237,1,1,70,71],[239,1,1,71,72],[247,2,2,72,74],[249,3,3,74,77],[253,2,2,77,79],[254,1,1,79,80],[255,2,2,80,82],[259,2,2,82,84],[260,3,3,84,87],[261,1,1,87,88],[264,1,1,88,89],[265,1,1,89,90]]],[9,16,16,90,106,[[269,1,1,90,91],[270,1,1,91,92],[271,1,1,92,93],[273,3,3,93,96],[278,1,1,96,97],[284,2,2,97,99],[285,1,1,99,100],[288,6,6,100,106]]],[10,8,7,106,113,[[293,1,1,106,107],[298,6,5,107,112],[311,1,1,112,113]]],[11,3,2,113,115,[[329,1,1,113,114],[333,2,1,114,115]]],[12,5,5,115,120,[[351,1,1,115,116],[354,2,2,116,118],[358,1,1,118,119],[359,1,1,119,120]]],[13,8,8,120,128,[[372,4,4,120,124],[386,2,2,124,126],[391,1,1,126,127],[392,1,1,127,128]]],[14,2,2,128,130,[[410,2,2,128,130]]],[15,5,5,130,135,[[416,1,1,130,131],[417,1,1,131,132],[418,2,2,132,134],[421,1,1,134,135]]],[16,6,6,135,141,[[432,1,1,135,136],[433,1,1,136,137],[434,4,4,137,141]]],[17,3,3,141,144,[[448,1,1,141,142],[462,1,1,142,143],[468,1,1,143,144]]],[18,73,72,144,216,[[480,1,1,144,145],[483,1,1,145,146],[484,1,1,146,147],[485,1,1,147,148],[486,2,2,148,150],[490,2,2,150,152],[494,1,1,152,153],[495,5,5,153,158],[498,1,1,158,159],[502,2,2,159,161],[504,2,2,161,163],[507,1,1,163,164],[508,2,2,164,166],[512,1,1,166,167],[514,1,1,167,168],[515,1,1,168,169],[518,3,3,169,172],[519,1,1,172,173],[520,1,1,173,174],[521,1,1,174,175],[522,1,1,175,176],[531,1,1,176,177],[532,2,2,177,179],[533,1,1,179,180],[536,1,1,180,181],[538,1,1,181,182],[541,1,1,182,183],[543,1,1,183,184],[545,3,3,184,187],[546,2,2,187,189],[548,1,1,189,190],[549,1,1,190,191],[551,3,3,191,194],[555,1,1,194,195],[557,1,1,195,196],[558,1,1,196,197],[560,1,1,197,198],[566,4,4,198,202],[569,2,1,202,203],[579,1,1,203,204],[583,2,2,204,206],[587,2,2,206,208],[596,1,1,208,209],[604,1,1,209,210],[609,1,1,210,211],[615,1,1,211,212],[616,1,1,212,213],[620,3,3,213,216]]],[19,2,2,216,218,[[643,1,1,216,217],[651,1,1,217,218]]],[22,8,8,218,226,[[679,1,1,218,219],[687,1,1,219,220],[720,1,1,220,221],[737,1,1,221,222],[740,1,1,222,223],[741,1,1,223,224],[744,2,2,224,226]]],[23,19,18,226,244,[[750,1,1,226,227],[756,1,1,227,228],[759,3,3,228,231],[761,1,1,231,232],[762,1,1,232,233],[763,2,2,233,235],[764,2,2,235,237],[765,1,1,237,238],[774,1,1,238,239],[775,1,1,239,240],[778,2,2,240,242],[788,2,1,242,243],[793,1,1,243,244]]],[24,15,15,244,259,[[797,5,5,244,249],[798,7,7,249,256],[799,2,2,256,258],[800,1,1,258,259]]],[25,2,2,259,261,[[837,1,1,259,260],[840,1,1,260,261]]],[27,1,1,261,262,[[869,1,1,261,262]]],[29,1,1,262,263,[[887,1,1,262,263]]],[32,6,6,263,269,[[894,1,1,263,264],[896,1,1,264,265],[897,1,1,265,266],[899,3,3,266,269]]],[33,4,4,269,273,[[900,2,2,269,271],[902,2,2,271,273]]],[35,1,1,273,274,[[908,1,1,273,274]]]],[564,1481,1926,1929,2148,2166,2171,3531,3532,3540,3541,3549,3556,3558,3560,3561,3562,3563,3565,3568,3997,4023,4150,4427,4456,4464,4739,4868,4934,5105,5250,5428,5430,5431,5441,5457,5509,5514,5566,5618,5636,5642,5659,5664,5666,5668,5679,5715,5785,5789,5800,5837,5839,5984,5988,5989,6077,6083,6089,6425,6434,6461,6559,6563,6596,6654,6753,6865,6972,6973,7241,7300,7470,7471,7532,7538,7555,7701,7705,7723,7745,7746,7843,7858,7883,7887,7890,7913,7975,8004,8099,8128,8152,8181,8189,8191,8300,8497,8510,8520,8603,8606,8620,8640,8643,8651,8827,9018,9022,9029,9031,9033,9471,10022,10133,10785,10871,10873,10946,10973,11306,11310,11316,11318,11614,11616,11712,11745,12223,12232,12374,12391,12402,12417,12539,12813,12830,12835,12839,12850,12856,13177,13488,13660,13964,13995,14000,14014,14024,14027,14076,14078,14112,14121,14135,14155,14158,14166,14199,14253,14270,14287,14291,14320,14339,14346,14429,14470,14509,14544,14547,14553,14564,14568,14587,14602,14732,14735,14744,14764,14791,14822,14851,14876,14901,14921,14923,14939,14953,14986,15009,15051,15058,15066,15166,15204,15231,15243,15336,15348,15368,15377,15420,15529,15661,15693,15787,15788,15996,16126,16169,16238,16261,16296,16302,16305,16847,17096,17678,17840,18493,18818,18862,18876,18928,18936,19114,19256,19324,19326,19329,19361,19401,19414,19416,19426,19427,19447,19681,19707,19821,19822,20040,20164,20312,20315,20319,20326,20331,20335,20336,20337,20339,20348,20349,20354,20400,20406,20432,21361,21475,22197,22499,22603,22630,22642,22670,22672,22674,22686,22692,22723,22725,22835]]],["+",[21,21,[[3,1,1,0,1,[[126,1,1,0,1]]],[6,2,2,1,3,[[213,1,1,1,2],[221,1,1,2,3]]],[8,1,1,3,4,[[249,1,1,3,4]]],[9,3,3,4,7,[[288,3,3,4,7]]],[13,1,1,7,8,[[386,1,1,7,8]]],[14,1,1,8,9,[[410,1,1,8,9]]],[16,3,3,9,12,[[433,1,1,9,10],[434,2,2,10,12]]],[18,6,6,12,18,[[495,2,2,12,14],[536,1,1,14,15],[545,1,1,15,16],[596,1,1,16,17],[620,1,1,17,18]]],[22,2,2,18,20,[[679,1,1,18,19],[687,1,1,19,20]]],[33,1,1,20,21,[[902,1,1,20,21]]]],[3997,6596,6865,7532,8606,8620,8651,11614,12223,12830,12850,12856,14135,14166,14791,14923,15996,16302,17678,17840,22723]]],["enemies",[181,176,[[0,2,2,0,2,[[21,1,1,0,1],[48,1,1,1,2]]],[1,2,2,2,4,[[72,2,2,2,4]]],[2,10,10,4,14,[[115,10,10,4,14]]],[3,6,6,14,20,[[126,1,1,14,15],[130,1,1,15,16],[139,1,1,16,17],[140,2,2,17,19],[148,1,1,19,20]]],[4,21,21,20,41,[[153,1,1,20,21],[158,1,1,21,22],[164,1,1,22,23],[172,4,4,23,27],[173,1,1,27,28],[175,2,2,28,30],[177,1,1,30,31],[180,7,7,31,38],[182,1,1,38,39],[184,1,1,39,40],[185,1,1,40,41]]],[5,11,9,41,50,[[193,4,3,41,44],[196,3,3,44,47],[207,2,1,47,48],[208,1,1,48,49],[209,1,1,49,50]]],[6,5,4,50,54,[[212,3,2,50,52],[215,1,1,52,53],[218,1,1,53,54]]],[8,14,14,54,68,[[237,1,1,54,55],[239,1,1,55,56],[247,2,2,56,58],[249,2,2,58,60],[253,1,1,60,61],[255,2,2,61,63],[260,3,3,63,66],[264,1,1,66,67],[265,1,1,67,68]]],[9,12,12,68,80,[[269,1,1,68,69],[271,1,1,69,70],[273,3,3,70,73],[278,1,1,73,74],[284,2,2,74,76],[285,1,1,76,77],[288,3,3,77,80]]],[10,2,2,80,82,[[293,1,1,80,81],[298,1,1,81,82]]],[11,3,2,82,84,[[329,1,1,82,83],[333,2,1,83,84]]],[12,5,5,84,89,[[351,1,1,84,85],[354,2,2,85,87],[358,1,1,87,88],[359,1,1,88,89]]],[13,4,4,89,93,[[372,3,3,89,92],[386,1,1,92,93]]],[15,5,5,93,98,[[416,1,1,93,94],[417,1,1,94,95],[418,2,2,95,97],[421,1,1,97,98]]],[16,2,2,98,100,[[434,2,2,98,100]]],[18,45,44,100,144,[[480,1,1,100,101],[483,1,1,101,102],[486,1,1,102,103],[494,1,1,103,104],[495,3,3,104,107],[498,1,1,107,108],[502,2,2,108,110],[504,1,1,110,111],[508,1,1,111,112],[512,1,1,112,113],[514,1,1,113,114],[515,1,1,114,115],[518,2,2,115,117],[522,1,1,117,118],[531,1,1,118,119],[533,1,1,119,120],[543,1,1,120,121],[545,2,2,121,123],[546,2,2,123,125],[548,1,1,125,126],[549,1,1,126,127],[555,1,1,127,128],[557,1,1,128,129],[558,1,1,129,130],[560,1,1,130,131],[566,3,3,131,134],[569,2,1,134,135],[579,1,1,135,136],[583,1,1,136,137],[587,2,2,137,139],[604,1,1,139,140],[609,1,1,140,141],[615,1,1,141,142],[616,1,1,142,143],[620,1,1,143,144]]],[19,1,1,144,145,[[643,1,1,144,145]]],[22,5,5,145,150,[[720,1,1,145,146],[737,1,1,146,147],[740,1,1,147,148],[744,2,2,148,150]]],[23,13,13,150,163,[[756,1,1,150,151],[759,2,2,151,153],[761,1,1,153,154],[763,2,2,154,156],[764,2,2,156,158],[765,1,1,158,159],[778,2,2,159,161],[788,1,1,161,162],[793,1,1,162,163]]],[24,6,6,163,169,[[797,3,3,163,166],[798,1,1,166,167],[799,2,2,167,169]]],[29,1,1,169,170,[[887,1,1,169,170]]],[32,3,3,170,173,[[896,1,1,170,171],[897,1,1,171,172],[899,1,1,172,173]]],[33,3,3,173,176,[[900,2,2,173,175],[902,1,1,175,176]]]],[564,1481,2166,2171,3531,3532,3540,3541,3556,3560,3561,3562,3565,3568,4023,4150,4427,4456,4464,4739,4934,5105,5250,5428,5430,5431,5441,5457,5509,5514,5566,5618,5636,5642,5659,5664,5666,5679,5715,5789,5839,5984,5988,5989,6077,6083,6089,6425,6434,6461,6559,6563,6654,6753,7241,7300,7470,7471,7538,7555,7701,7745,7746,7883,7887,7890,7975,8004,8099,8152,8181,8189,8191,8300,8497,8510,8520,8603,8640,8643,8827,9033,10022,10133,10785,10871,10873,10946,10973,11310,11316,11318,11616,12374,12391,12402,12417,12539,12835,12839,13964,13995,14024,14112,14121,14155,14158,14199,14253,14270,14291,14346,14429,14470,14509,14544,14547,14602,14732,14764,14876,14901,14921,14939,14953,14986,15009,15166,15204,15231,15243,15336,15368,15377,15420,15529,15693,15787,15788,16126,16169,16238,16261,16305,16847,18493,18818,18862,18928,18936,19256,19324,19329,19361,19414,19416,19426,19427,19447,19821,19822,20040,20164,20312,20315,20331,20348,20400,20406,22499,22630,22642,22670,22686,22692,22725]]],["enemies'",[3,3,[[2,2,2,0,2,[[115,2,2,0,2]]],[25,1,1,2,3,[[840,1,1,2,3]]]],[3558,3563,21475]]],["enemy",[73,72,[[1,2,2,0,2,[[64,2,2,0,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[3,1,1,3,4,[[151,1,1,3,4]]],[4,4,4,4,8,[[180,1,1,4,5],[184,2,2,5,7],[185,1,1,7,8]]],[6,2,2,8,10,[[226,2,2,8,10]]],[8,5,5,10,15,[[253,1,1,10,11],[254,1,1,11,12],[259,2,2,12,14],[261,1,1,14,15]]],[9,1,1,15,16,[[270,1,1,15,16]]],[10,6,5,16,21,[[298,5,4,16,20],[311,1,1,20,21]]],[13,3,3,21,24,[[372,1,1,21,22],[391,1,1,22,23],[392,1,1,23,24]]],[14,1,1,24,25,[[410,1,1,24,25]]],[16,1,1,25,26,[[432,1,1,25,26]]],[17,3,3,26,29,[[448,1,1,26,27],[462,1,1,27,28],[468,1,1,28,29]]],[18,20,20,29,49,[[484,1,1,29,30],[485,1,1,30,31],[486,1,1,31,32],[490,2,2,32,34],[508,1,1,34,35],[518,1,1,35,36],[519,1,1,36,37],[520,1,1,37,38],[521,1,1,38,39],[532,2,2,39,41],[538,1,1,41,42],[541,1,1,42,43],[551,3,3,43,46],[566,1,1,46,47],[583,1,1,47,48],[620,1,1,48,49]]],[19,1,1,49,50,[[651,1,1,49,50]]],[22,1,1,50,51,[[741,1,1,50,51]]],[23,6,6,51,57,[[750,1,1,51,52],[759,1,1,52,53],[762,1,1,53,54],[774,1,1,54,55],[775,1,1,55,56],[788,1,1,56,57]]],[24,9,9,57,66,[[797,2,2,57,59],[798,6,6,59,65],[800,1,1,65,66]]],[25,1,1,66,67,[[837,1,1,66,67]]],[27,1,1,67,68,[[869,1,1,67,68]]],[32,3,3,68,71,[[894,1,1,68,69],[899,2,2,69,71]]],[35,1,1,71,72,[[908,1,1,71,72]]]],[1926,1929,3549,4868,5668,5785,5800,5837,6972,6973,7705,7723,7843,7858,7913,8128,9018,9022,9029,9031,9471,11306,11712,11745,12232,12813,13177,13488,13660,14000,14014,14027,14076,14078,14339,14553,14564,14568,14587,14735,14744,14822,14851,15051,15058,15066,15348,15661,16296,17096,18876,19114,19326,19401,19681,19707,20040,20319,20326,20335,20336,20337,20339,20349,20354,20432,21361,22197,22603,22672,22674,22835]]],["enemy's",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2148]]],["foes",[2,2,[[18,2,2,0,2,[[504,1,1,0,1],[507,1,1,1,2]]]],[14287,14320]]]]},{"k":"H342","v":[["*",[5,5,[[0,1,1,0,1,[[2,1,1,0,1]]],[3,2,2,1,3,[[151,2,2,1,3]]],[25,2,2,3,5,[[826,1,1,3,4],[836,1,1,4,5]]]],[70,4866,4867,21098,21349]]],["enmity",[3,3,[[0,1,1,0,1,[[2,1,1,0,1]]],[3,2,2,1,3,[[151,2,2,1,3]]]],[70,4866,4867]]],["hatred",[2,2,[[25,2,2,0,2,[[826,1,1,0,1],[836,1,1,1,2]]]],[21098,21349]]]]},{"k":"H343","v":[["*",[24,22,[[4,1,1,0,1,[[184,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,6,6,2,8,[[453,1,1,2,3],[456,2,2,3,5],[465,1,1,5,6],[466,2,2,6,8]]],[18,1,1,8,9,[[495,1,1,8,9]]],[19,6,6,9,15,[[628,2,2,9,11],[633,1,1,11,12],[644,1,1,12,13],[651,1,1,13,14],[654,1,1,14,15]]],[23,5,5,15,20,[[762,1,1,15,16],[790,1,1,16,17],[792,1,1,17,18],[793,2,2,18,20]]],[25,1,1,20,21,[[836,1,1,20,21]]],[30,3,1,21,22,[[888,3,1,21,22]]]],[5793,8621,13288,13372,13385,13569,13591,13611,14136,16426,16427,16555,16878,17101,17179,19401,20066,20096,20135,20159,21349,22523]]],["calamities",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16878]]],["calamity",[16,14,[[4,1,1,0,1,[[184,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]],[19,4,4,3,7,[[628,1,1,3,4],[633,1,1,4,5],[651,1,1,5,6],[654,1,1,6,7]]],[23,5,5,7,12,[[762,1,1,7,8],[790,1,1,8,9],[792,1,1,9,10],[793,2,2,10,12]]],[25,1,1,12,13,[[836,1,1,12,13]]],[30,3,1,13,14,[[888,3,1,13,14]]]],[5793,8621,14136,16426,16555,17101,17179,19401,20066,20096,20135,20159,21349,22523]]],["destruction",[7,7,[[17,6,6,0,6,[[453,1,1,0,1],[456,2,2,1,3],[465,1,1,3,4],[466,2,2,4,6]]],[19,1,1,6,7,[[628,1,1,6,7]]]],[13288,13372,13385,13569,13591,13611,16427]]]]},{"k":"H344","v":[["*",[3,3,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[17,1,1,2,3,[[463,1,1,2,3]]]],[3011,5303,13511]]],["kite",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3011,5303]]],["vulture's",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13511]]]]},{"k":"H345","v":[["*",[6,6,[[0,1,1,0,1,[[35,1,1,0,1]]],[9,4,4,1,5,[[269,1,1,1,2],[287,3,3,2,5]]],[12,1,1,5,6,[[338,1,1,5,6]]]],[1064,8088,8588,8590,8591,10292]]],["Aiah",[5,5,[[9,4,4,0,4,[[269,1,1,0,1],[287,3,3,1,4]]],[12,1,1,4,5,[[338,1,1,4,5]]]],[8088,8588,8590,8591,10292]]],["Ajah",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1064]]]]},{"k":"H346","v":[["*",[49,42,[[0,4,4,0,4,[[17,1,1,0,1],[18,1,1,1,2],[21,1,1,2,3],[37,1,1,3,4]]],[1,1,1,4,5,[[51,1,1,4,5]]],[6,2,2,5,7,[[216,1,1,5,6],[219,1,1,6,7]]],[9,2,2,7,9,[[282,1,1,7,8],[283,1,1,8,9]]],[11,4,3,9,12,[[314,1,1,9,10],[330,2,1,10,11],[331,1,1,11,12]]],[17,6,5,12,17,[[449,1,1,12,13],[450,1,1,13,14],[452,1,1,14,15],[456,2,1,15,16],[470,1,1,16,17]]],[18,5,5,17,22,[[519,2,2,17,19],[556,1,1,19,20],[566,1,1,20,21],[592,1,1,21,22]]],[22,10,6,22,28,[[711,3,1,22,23],[714,2,1,23,24],[715,1,1,24,25],[729,1,1,25,26],[741,3,2,26,28]]],[23,6,6,28,34,[[746,3,3,28,31],[757,1,1,31,32],[761,1,1,32,33],[781,1,1,33,34]]],[24,1,1,34,35,[[798,1,1,34,35]]],[25,1,1,35,36,[[814,1,1,35,36]]],[28,1,1,36,37,[[877,1,1,36,37]]],[32,1,1,37,38,[[899,1,1,37,38]]],[33,1,1,38,39,[[901,1,1,38,39]]],[37,1,1,39,40,[[911,1,1,39,40]]],[38,3,2,40,42,[[925,2,1,40,41],[926,1,1,41,42]]]],[433,462,554,1140,1574,6667,6792,8429,8469,9565,10058,10074,13191,13226,13275,13383,13730,14558,14565,15195,15375,15832,18297,18349,18365,18686,18877,18881,18971,18973,18993,19286,19372,19893,20344,20720,22328,22674,22710,22883,23095,23120]]],["Where",[29,29,[[0,3,3,0,3,[[17,1,1,0,1],[18,1,1,1,2],[37,1,1,2,3]]],[6,1,1,3,4,[[219,1,1,3,4]]],[9,1,1,4,5,[[283,1,1,4,5]]],[11,3,3,5,8,[[314,1,1,5,6],[330,1,1,6,7],[331,1,1,7,8]]],[17,3,3,8,11,[[450,1,1,8,9],[456,1,1,9,10],[470,1,1,10,11]]],[18,4,4,11,15,[[519,2,2,11,13],[556,1,1,13,14],[592,1,1,14,15]]],[22,4,4,15,19,[[711,1,1,15,16],[714,1,1,16,17],[715,1,1,17,18],[741,1,1,18,19]]],[23,4,4,19,23,[[746,2,2,19,21],[761,1,1,21,22],[781,1,1,22,23]]],[24,1,1,23,24,[[798,1,1,23,24]]],[25,1,1,24,25,[[814,1,1,24,25]]],[28,1,1,25,26,[[877,1,1,25,26]]],[32,1,1,26,27,[[899,1,1,26,27]]],[33,1,1,27,28,[[901,1,1,27,28]]],[38,1,1,28,29,[[926,1,1,28,29]]]],[433,462,1140,6792,8469,9565,10058,10074,13226,13383,13730,14558,14565,15195,15832,18297,18349,18365,18877,18971,18973,19372,19893,20344,20720,22328,22674,22710,23120]]],["where",[20,18,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]],[6,1,1,2,3,[[216,1,1,2,3]]],[9,1,1,3,4,[[282,1,1,3,4]]],[11,1,1,4,5,[[330,1,1,4,5]]],[17,3,3,5,8,[[449,1,1,5,6],[452,1,1,6,7],[456,1,1,7,8]]],[18,1,1,8,9,[[566,1,1,8,9]]],[22,6,5,9,14,[[711,2,1,9,10],[714,1,1,10,11],[729,1,1,11,12],[741,2,2,12,14]]],[23,2,2,14,16,[[746,1,1,14,15],[757,1,1,15,16]]],[37,1,1,16,17,[[911,1,1,16,17]]],[38,2,1,17,18,[[925,2,1,17,18]]]],[554,1574,6667,8429,10058,13191,13275,13383,15375,18297,18349,18686,18877,18881,18993,19286,22883,23095]]]]},{"k":"H347","v":[["*",[58,52,[[17,56,50,0,50,[[436,9,7,0,7],[437,4,4,7,11],[438,2,2,11,13],[441,1,1,13,14],[444,1,1,14,15],[447,1,1,15,16],[451,1,1,16,17],[454,1,1,17,18],[456,1,1,18,19],[458,1,1,19,20],[461,1,1,20,21],[462,1,1,21,22],[464,1,1,22,23],[466,1,1,23,24],[467,5,5,24,29],[468,2,2,29,31],[469,4,4,31,35],[470,1,1,35,36],[472,1,1,36,37],[473,1,1,37,38],[475,3,3,38,41],[477,13,9,41,50]]],[25,2,2,50,52,[[815,2,2,50,52]]]],[12870,12874,12877,12878,12883,12889,12891,12894,12898,12901,12902,12905,12906,12979,13052,13129,13239,13298,13356,13420,13468,13482,13533,13628,13629,13630,13631,13632,13640,13651,13681,13688,13690,13718,13719,13736,13783,13794,13865,13867,13870,13923,13929,13930,13931,13932,13934,13937,13938,13939,20745,20751]]],["+",[2,2,[[17,2,2,0,2,[[438,1,1,0,1],[477,1,1,1,2]]]],[12905,13932]]],["Job",[55,50,[[17,53,48,0,48,[[436,9,7,0,7],[437,3,3,7,10],[438,1,1,10,11],[441,1,1,11,12],[444,1,1,12,13],[447,1,1,13,14],[451,1,1,14,15],[454,1,1,15,16],[456,1,1,16,17],[458,1,1,17,18],[461,1,1,18,19],[462,1,1,19,20],[464,1,1,20,21],[466,1,1,21,22],[467,5,5,22,27],[468,2,2,27,29],[469,4,4,29,33],[470,1,1,33,34],[472,1,1,34,35],[473,1,1,35,36],[475,3,3,36,39],[477,12,9,39,48]]],[25,2,2,48,50,[[815,2,2,48,50]]]],[12870,12874,12877,12878,12883,12889,12891,12894,12898,12901,12906,12979,13052,13129,13239,13298,13356,13420,13468,13482,13533,13628,13629,13630,13631,13632,13640,13651,13681,13688,13690,13718,13719,13736,13783,13794,13865,13867,13870,13923,13929,13930,13931,13932,13934,13937,13938,13939,20745,20751]]],["Job's",[1,1,[[17,1,1,0,1,[[437,1,1,0,1]]]],[12902]]]]},{"k":"H348","v":[["*",[22,19,[[10,15,13,0,13,[[306,1,1,0,1],[308,3,3,1,4],[309,2,2,4,6],[311,9,7,6,13]]],[11,7,6,13,19,[[321,7,6,13,19]]]],[9314,9345,9354,9360,9388,9389,9456,9458,9462,9465,9466,9474,9476,9763,9766,9778,9786,9792,9793]]],["+",[1,1,[[10,1,1,0,1,[[309,1,1,0,1]]]],[9388]]],["Jezebel",[20,17,[[10,13,11,0,11,[[306,1,1,0,1],[308,2,2,1,3],[309,1,1,3,4],[311,9,7,4,11]]],[11,7,6,11,17,[[321,7,6,11,17]]]],[9314,9345,9354,9389,9456,9458,9462,9465,9466,9474,9476,9763,9766,9778,9786,9792,9793]]],["Jezebel's",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9360]]]]},{"k":"H349","v":[["*",[82,74,[[0,4,4,0,4,[[25,1,1,0,1],[38,1,1,1,2],[43,2,2,2,4]]],[1,2,2,4,6,[[55,2,2,4,6]]],[4,5,5,6,11,[[153,1,1,6,7],[159,1,1,7,8],[164,1,1,8,9],[170,1,1,9,10],[184,1,1,10,11]]],[5,1,1,11,12,[[195,1,1,11,12]]],[6,2,2,12,14,[[226,1,1,12,13],[230,1,1,13,14]]],[7,1,1,14,15,[[234,1,1,14,15]]],[8,1,1,15,16,[[251,1,1,15,16]]],[9,8,8,16,24,[[267,5,5,16,21],[268,1,1,21,22],[272,1,1,22,23],[278,1,1,23,24]]],[10,1,1,24,25,[[302,1,1,24,25]]],[11,4,4,25,29,[[318,1,1,25,26],[322,1,1,26,27],[329,1,1,27,28],[330,1,1,28,29]]],[13,1,1,29,30,[[376,1,1,29,30]]],[16,2,1,30,31,[[433,2,1,30,31]]],[17,1,1,31,32,[[456,1,1,31,32]]],[18,4,4,32,36,[[488,1,1,32,33],[550,2,2,33,35],[614,1,1,35,36]]],[19,1,1,36,37,[[632,1,1,36,37]]],[20,2,2,37,39,[[660,1,1,37,38],[662,1,1,38,39]]],[21,4,2,39,41,[[671,2,1,39,40],[675,2,1,40,41]]],[22,7,7,41,48,[[679,1,1,41,42],[692,2,2,42,44],[697,1,1,44,45],[698,1,1,45,46],[714,1,1,46,47],[726,1,1,47,48]]],[23,19,15,48,63,[[746,2,2,48,50],[747,1,1,50,51],[752,1,1,51,52],[753,2,2,52,54],[756,2,1,54,55],[780,1,1,55,56],[791,1,1,56,57],[792,4,3,57,60],[793,1,1,60,61],[794,2,1,61,62],[795,2,1,62,63]]],[24,4,4,63,67,[[797,1,1,63,64],[798,1,1,64,65],[800,2,2,65,67]]],[25,2,2,67,69,[[827,1,1,67,68],[834,1,1,68,69]]],[27,2,1,69,70,[[872,2,1,69,70]]],[30,2,2,70,72,[[888,2,2,70,72]]],[32,1,1,72,73,[[894,1,1,72,73]]],[35,1,1,73,74,[[907,1,1,73,74]]]],[701,1158,1332,1358,1667,1685,4904,5128,5270,5405,5788,6044,6964,7057,7190,7597,8027,8036,8041,8047,8049,8071,8166,8304,9157,9689,9797,10011,10048,11401,12823,13389,14060,15031,15039,16226,16529,17349,17392,17544,17601,17675,17932,17940,18015,18035,18339,18625,18986,18988,19021,19161,19182,19194,19254,19859,20080,20094,20097,20119,20152,20189,20253,20311,20333,20421,20422,21117,21290,22248,22515,22516,22599,22820]]],["How",[40,40,[[4,4,4,0,4,[[153,1,1,0,1],[164,1,1,1,2],[170,1,1,2,3],[184,1,1,3,4]]],[6,1,1,4,5,[[226,1,1,4,5]]],[8,1,1,5,6,[[251,1,1,5,6]]],[9,5,5,6,11,[[267,4,4,6,10],[272,1,1,10,11]]],[10,1,1,11,12,[[302,1,1,11,12]]],[11,1,1,12,13,[[330,1,1,12,13]]],[17,1,1,13,14,[[456,1,1,13,14]]],[18,3,3,14,17,[[550,2,2,14,16],[614,1,1,16,17]]],[19,1,1,17,18,[[632,1,1,17,18]]],[22,4,4,18,22,[[679,1,1,18,19],[692,2,2,19,21],[714,1,1,21,22]]],[23,12,12,22,34,[[746,1,1,22,23],[747,1,1,23,24],[752,1,1,24,25],[753,1,1,25,26],[780,1,1,26,27],[791,1,1,27,28],[792,3,3,28,31],[793,1,1,31,32],[794,1,1,32,33],[795,1,1,33,34]]],[24,3,3,34,37,[[797,1,1,34,35],[798,1,1,35,36],[800,1,1,36,37]]],[25,1,1,37,38,[[827,1,1,37,38]]],[27,1,1,38,39,[[872,1,1,38,39]]],[30,1,1,39,40,[[888,1,1,39,40]]]],[4904,5270,5405,5788,6964,7597,8027,8036,8047,8049,8166,9157,10048,13389,15031,15039,16226,16529,17675,17932,17940,18339,18988,19021,19161,19194,19859,20080,20094,20097,20119,20152,20189,20253,20311,20333,20421,21117,22248,22516]]],["What",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11401]]],["how",[39,36,[[0,4,4,0,4,[[25,1,1,0,1],[38,1,1,1,2],[43,2,2,2,4]]],[1,2,2,4,6,[[55,2,2,4,6]]],[4,1,1,6,7,[[159,1,1,6,7]]],[5,1,1,7,8,[[195,1,1,7,8]]],[6,1,1,8,9,[[230,1,1,8,9]]],[7,1,1,9,10,[[234,1,1,9,10]]],[9,3,3,10,13,[[267,1,1,10,11],[268,1,1,11,12],[278,1,1,12,13]]],[11,3,3,13,16,[[318,1,1,13,14],[322,1,1,14,15],[329,1,1,15,16]]],[16,2,1,16,17,[[433,2,1,16,17]]],[18,1,1,17,18,[[488,1,1,17,18]]],[20,2,2,18,20,[[660,1,1,18,19],[662,1,1,19,20]]],[21,2,1,20,21,[[675,2,1,20,21]]],[22,3,3,21,24,[[697,1,1,21,22],[698,1,1,22,23],[726,1,1,23,24]]],[23,7,6,24,30,[[746,1,1,24,25],[753,1,1,25,26],[756,2,1,26,27],[792,1,1,27,28],[794,1,1,28,29],[795,1,1,29,30]]],[24,1,1,30,31,[[800,1,1,30,31]]],[25,1,1,31,32,[[834,1,1,31,32]]],[27,1,1,32,33,[[872,1,1,32,33]]],[30,1,1,33,34,[[888,1,1,33,34]]],[32,1,1,34,35,[[894,1,1,34,35]]],[35,1,1,35,36,[[907,1,1,35,36]]]],[701,1158,1332,1358,1667,1685,5128,6044,7057,7190,8041,8071,8304,9689,9797,10011,12823,14060,17349,17392,17601,18015,18035,18625,18986,19182,19254,20119,20189,20253,20422,21290,22248,22515,22599,22820]]],["where",[2,1,[[21,2,1,0,1,[[671,2,1,0,1]]]],[17544]]]]},{"k":"H350","v":[["*",[2,2,[[8,2,2,0,2,[[239,1,1,0,1],[249,1,1,1,2]]]],[7318,7511]]],["Ichabod",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7318]]],["Ichabod's",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7511]]]]},{"k":"H351","v":[["where",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9687]]]]},{"k":"H352","v":[["*",[185,171,[[0,5,4,0,4,[[14,1,1,0,1],[21,2,1,1,2],[30,1,1,2,3],[31,1,1,3,4]]],[1,23,20,4,24,[[64,1,1,4,5],[74,1,1,5,6],[75,1,1,6,7],[78,16,13,7,20],[84,2,2,20,22],[85,1,1,22,23],[88,1,1,23,24]]],[2,22,19,24,43,[[94,3,3,24,27],[95,1,1,27,28],[97,9,6,28,34],[98,4,4,34,38],[105,2,2,38,40],[108,2,2,40,42],[112,1,1,42,43]]],[3,66,65,43,108,[[121,1,1,43,44],[122,3,3,44,47],[123,26,26,47,73],[131,2,2,73,75],[139,6,6,75,81],[144,7,7,81,88],[145,21,20,88,108]]],[4,1,1,108,109,[[184,1,1,108,109]]],[8,1,1,109,110,[[250,1,1,109,110]]],[10,1,1,110,111,[[296,1,1,110,111]]],[11,2,2,111,113,[[315,1,1,111,112],[336,1,1,112,113]]],[12,2,2,113,115,[[352,1,1,113,114],[366,1,1,114,115]]],[13,5,5,115,120,[[379,1,1,115,116],[383,1,1,116,117],[395,3,3,117,120]]],[14,2,2,120,122,[[410,1,1,120,121],[412,1,1,121,122]]],[17,1,1,122,123,[[477,1,1,122,123]]],[18,3,3,123,126,[[543,1,1,123,124],[591,2,2,124,126]]],[22,5,5,126,131,[[679,2,2,126,128],[712,1,1,128,129],[738,1,1,129,130],[739,1,1,130,131]]],[23,1,1,131,132,[[795,1,1,131,132]]],[25,36,33,132,165,[[818,1,1,132,133],[828,1,1,133,134],[832,2,2,134,136],[835,1,1,136,137],[840,1,1,137,138],[841,19,16,138,154],[842,2,2,154,156],[844,2,2,156,158],[846,2,2,158,160],[847,5,5,160,165]]],[26,8,5,165,170,[[857,8,5,165,170]]],[32,1,1,170,171,[[898,1,1,170,171]]]],[369,560,911,942,1935,2200,2249,2337,2339,2351,2352,2353,2354,2355,2356,2358,2362,2363,2367,2368,2538,2554,2585,2698,2845,2846,2848,2855,2919,2935,2937,2938,2939,2946,2955,2957,2971,2972,3204,3206,3302,3303,3420,3800,3837,3840,3842,3865,3867,3871,3873,3877,3879,3883,3885,3889,3891,3895,3897,3901,3903,3907,3909,3913,3915,3919,3921,3925,3927,3931,3933,3937,3938,4159,4164,4417,4418,4420,4430,4445,4446,4588,4589,4591,4596,4597,4604,4605,4610,4611,4616,4617,4621,4622,4625,4626,4628,4629,4631,4632,4634,4635,4637,4638,4640,4641,4644,4645,5772,7582,8927,9580,10217,10817,11185,11462,11534,11812,11813,11823,12236,12271,13930,14888,15826,15828,17665,17683,18309,18828,18846,20252,20838,21142,21241,21244,21330,21466,21486,21487,21491,21493,21498,21501,21503,21506,21508,21510,21511,21513,21514,21515,21525,21526,21527,21529,21595,21597,21653,21654,21659,21660,21661,21662,21666,21964,21965,21967,21968,21981,22655]]],["+",[4,4,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,1,1,2,3,[[97,1,1,2,3]]],[22,1,1,3,4,[[679,1,1,3,4]]]],[2362,2363,2946,17683]]],["lintel",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8927]]],["men",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1935]]],["mighty",[2,2,[[11,1,1,0,1,[[336,1,1,0,1]]],[25,1,1,1,2,[[818,1,1,1,2]]]],[10217,20838]]],["one",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21241]]],["post",[4,4,[[25,4,4,0,4,[[841,3,3,0,3],[842,1,1,3,4]]]],[21491,21493,21525,21529]]],["posts",[17,16,[[25,17,16,0,16,[[841,16,15,0,15],[842,1,1,15,16]]]],[21486,21487,21491,21493,21498,21501,21503,21506,21508,21510,21511,21513,21514,21515,21526,21527]]],["ram",[87,77,[[0,3,2,0,2,[[14,1,1,0,1],[21,2,1,1,2]]],[1,12,9,2,11,[[78,12,9,2,11]]],[2,19,16,11,27,[[94,3,3,11,14],[95,1,1,14,15],[97,7,4,15,19],[98,4,4,19,23],[105,2,2,23,25],[108,2,2,25,27]]],[3,36,36,27,63,[[121,1,1,27,28],[122,3,3,28,31],[123,12,12,31,43],[131,2,2,43,45],[139,4,4,45,49],[144,7,7,49,56],[145,7,7,56,63]]],[14,1,1,63,64,[[412,1,1,63,64]]],[25,8,8,64,72,[[844,2,2,64,66],[846,1,1,66,67],[847,5,5,67,72]]],[26,8,5,72,77,[[857,8,5,72,77]]]],[369,560,2351,2352,2353,2354,2355,2356,2358,2367,2368,2845,2846,2848,2855,2935,2937,2938,2939,2955,2957,2971,2972,3204,3206,3302,3303,3800,3837,3840,3842,3865,3871,3877,3883,3889,3895,3901,3907,3913,3919,3925,3931,4159,4164,4418,4420,4430,4446,4588,4589,4591,4596,4597,4604,4605,4610,4611,4616,4617,4622,4644,4645,12271,21595,21597,21654,21659,21660,21661,21662,21666,21964,21965,21967,21968,21981]]],["rams",[61,61,[[0,2,2,0,2,[[30,1,1,0,1],[31,1,1,1,2]]],[1,3,3,2,5,[[78,2,2,2,4],[84,1,1,4,5]]],[2,2,2,5,7,[[97,1,1,5,6],[112,1,1,6,7]]],[3,30,30,7,37,[[123,14,14,7,21],[139,2,2,21,23],[145,14,14,23,37]]],[4,1,1,37,38,[[184,1,1,37,38]]],[8,1,1,38,39,[[250,1,1,38,39]]],[11,1,1,39,40,[[315,1,1,39,40]]],[12,2,2,40,42,[[352,1,1,40,41],[366,1,1,41,42]]],[13,5,5,42,47,[[379,1,1,42,43],[383,1,1,43,44],[395,3,3,44,47]]],[14,1,1,47,48,[[410,1,1,47,48]]],[17,1,1,48,49,[[477,1,1,48,49]]],[18,3,3,49,52,[[543,1,1,49,50],[591,2,2,50,52]]],[22,3,3,52,55,[[679,1,1,52,53],[712,1,1,53,54],[738,1,1,54,55]]],[23,1,1,55,56,[[795,1,1,55,56]]],[25,4,4,56,60,[[828,1,1,56,57],[835,1,1,57,58],[840,1,1,58,59],[846,1,1,59,60]]],[32,1,1,60,61,[[898,1,1,60,61]]]],[911,942,2337,2339,2554,2919,3420,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3937,3938,4417,4445,4621,4622,4625,4626,4628,4629,4631,4632,4634,4635,4637,4638,4640,4641,5772,7582,9580,10817,11185,11462,11534,11812,11813,11823,12236,13930,14888,15826,15828,17665,18309,18828,20252,21142,21330,21466,21653,22655]]],["rams'",[5,5,[[1,5,5,0,5,[[74,1,1,0,1],[75,1,1,1,2],[84,1,1,2,3],[85,1,1,3,4],[88,1,1,4,5]]]],[2200,2249,2538,2585,2698]]],["trees",[2,2,[[22,1,1,0,1,[[739,1,1,0,1]]],[25,1,1,1,2,[[832,1,1,1,2]]]],[18846,21244]]]]},{"k":"H353","v":[["strength",[1,1,[[18,1,1,0,1,[[565,1,1,0,1]]]],[15312]]]]},{"k":"H354","v":[["*",[11,11,[[4,4,4,0,4,[[164,2,2,0,2],[166,1,1,2,3],[167,1,1,3,4]]],[10,1,1,4,5,[[294,1,1,4,5]]],[18,1,1,5,6,[[519,1,1,5,6]]],[21,3,3,6,9,[[672,2,2,6,8],[678,1,1,8,9]]],[22,1,1,9,10,[[713,1,1,9,10]]],[24,1,1,10,11,[[797,1,1,10,11]]]],[5255,5262,5295,5341,8867,14556,17563,17571,17654,18326,20316]]],["+",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8867]]],["hart",[9,9,[[4,4,4,0,4,[[164,2,2,0,2],[166,1,1,2,3],[167,1,1,3,4]]],[18,1,1,4,5,[[519,1,1,4,5]]],[21,3,3,5,8,[[672,2,2,5,7],[678,1,1,7,8]]],[22,1,1,8,9,[[713,1,1,8,9]]]],[5255,5262,5295,5341,14556,17563,17571,17654,18326]]],["harts",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20316]]]]},{"k":"H355","v":[["*",[8,8,[[0,1,1,0,1,[[48,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,1,1,2,3,[[474,1,1,2,3]]],[18,2,2,3,5,[[495,1,1,3,4],[506,1,1,4,5]]],[21,2,2,5,7,[[672,1,1,5,6],[673,1,1,6,7]]],[34,1,1,7,8,[[905,1,1,7,8]]]],[1494,8636,13835,14151,14317,17561,17576,22787]]],["hind",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1494]]],["hinds",[4,4,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,1,1,1,2,[[506,1,1,1,2]]],[21,2,2,2,4,[[672,1,1,2,3],[673,1,1,3,4]]]],[13835,14317,17561,17576]]],["hinds'",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]],[34,1,1,2,3,[[905,1,1,2,3]]]],[8636,14151,22787]]]]},{"k":"H356","v":[["Elon",[7,7,[[0,3,3,0,3,[[25,1,1,0,1],[35,1,1,1,2],[45,1,1,2,3]]],[3,1,1,3,4,[[142,1,1,3,4]]],[5,1,1,4,5,[[205,1,1,4,5]]],[6,2,2,5,7,[[222,2,2,5,7]]]],[726,1042,1400,4515,6364,6880,6881]]]]},{"k":"H357","v":[["*",[10,10,[[5,3,3,0,3,[[196,1,1,0,1],[205,1,1,1,2],[207,1,1,2,3]]],[6,2,2,3,5,[[211,1,1,3,4],[222,1,1,4,5]]],[8,1,1,5,6,[[249,1,1,5,6]]],[12,2,2,6,8,[[343,1,1,6,7],[345,1,1,7,8]]],[13,2,2,8,10,[[377,1,1,8,9],[394,1,1,9,10]]]],[6076,6363,6405,6544,6881,7539,10523,10588,11424,11782]]],["Aijalon",[7,7,[[5,1,1,0,1,[[207,1,1,0,1]]],[6,2,2,1,3,[[211,1,1,1,2],[222,1,1,2,3]]],[8,1,1,3,4,[[249,1,1,3,4]]],[12,2,2,4,6,[[343,1,1,4,5],[345,1,1,5,6]]],[13,1,1,6,7,[[377,1,1,6,7]]]],[6405,6544,6881,7539,10523,10588,11424]]],["Ajalon",[3,3,[[5,2,2,0,2,[[196,1,1,0,1],[205,1,1,1,2]]],[13,1,1,2,3,[[394,1,1,2,3]]]],[6076,6363,11782]]]]},{"k":"H358","v":[["Elonbethhanan",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8853]]]]},{"k":"H359","v":[["*",[8,6,[[4,1,1,0,1,[[154,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[11,4,2,2,4,[[326,1,1,2,3],[328,3,1,3,4]]],[13,2,2,4,6,[[374,1,1,4,5],[392,1,1,5,6]]]],[4946,9077,9918,9969,11363,11734]]],["+",[2,2,[[4,1,1,0,1,[[154,1,1,0,1]]],[11,1,1,1,2,[[328,1,1,1,2]]]],[4946,9969]]],["Elath",[3,2,[[11,3,2,0,2,[[326,1,1,0,1],[328,2,1,1,2]]]],[9918,9969]]],["Eloth",[3,3,[[10,1,1,0,1,[[299,1,1,0,1]]],[13,2,2,1,3,[[374,1,1,1,2],[392,1,1,2,3]]]],[9077,11363,11734]]]]},{"k":"H360","v":[["strength",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14223]]]]},{"k":"H361","v":[["arches",[15,12,[[25,15,12,0,12,[[841,15,12,0,12]]]],[21493,21498,21499,21501,21502,21503,21506,21507,21508,21510,21511,21513]]]]},{"k":"H362","v":[["*",[6,4,[[1,3,2,0,2,[[64,1,1,0,1],[65,2,1,1,2]]],[3,3,2,2,4,[[149,3,2,2,4]]]],[1947,1948,4769,4770]]],["+",[2,2,[[1,1,1,0,1,[[65,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]]],[1948,4770]]],["Elim",[4,3,[[1,2,2,0,2,[[64,1,1,0,1],[65,1,1,1,2]]],[3,2,1,2,3,[[149,2,1,2,3]]]],[1947,1948,4769]]]]},{"k":"H363","v":[["*",[6,6,[[26,6,6,0,6,[[853,6,6,0,6]]]],[21847,21848,21851,21857,21860,21863]]],["+",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21860]]],["tree",[5,5,[[26,5,5,0,5,[[853,5,5,0,5]]]],[21847,21848,21851,21857,21863]]]]},{"k":"H364","v":[["Elparan",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[342]]]]},{"k":"H365","v":[["hind",[2,2,[[19,1,1,0,1,[[632,1,1,0,1]]],[23,1,1,1,2,[[758,1,1,1,2]]]],[16536,19298]]]]},{"k":"H366","v":[["terrible",[3,3,[[21,2,2,0,2,[[676,2,2,0,2]]],[34,1,1,2,3,[[903,1,1,2,3]]]],[17618,17624,22738]]]]},{"k":"H367","v":[["*",[17,17,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,2,2,1,3,[[64,1,1,1,2],[72,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[5,1,1,4,5,[[188,1,1,4,5]]],[14,1,1,5,6,[[405,1,1,5,6]]],[17,6,6,6,12,[[444,1,1,6,7],[448,1,1,7,8],[455,1,1,8,9],[468,1,1,9,10],[474,1,1,10,11],[476,1,1,11,12]]],[18,2,2,12,14,[[532,1,1,12,13],[565,1,1,13,14]]],[19,1,1,14,15,[[647,1,1,14,15]]],[22,1,1,15,16,[[711,1,1,15,16]]],[23,1,1,16,17,[[794,1,1,16,17]]]],[372,1936,2171,5783,5878,12100,13085,13174,13351,13657,13854,13902,14736,15323,16956,18297,20204]]],["Fear",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1936]]],["dread",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13174]]],["fear",[4,4,[[1,1,1,0,1,[[72,1,1,0,1]]],[14,1,1,1,2,[[405,1,1,1,2]]],[17,1,1,2,3,[[444,1,1,2,3]]],[19,1,1,3,4,[[647,1,1,3,4]]]],[2171,12100,13085,16956]]],["horror",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[372]]],["idols",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20204]]],["terrible",[2,2,[[17,2,2,0,2,[[474,1,1,0,1],[476,1,1,1,2]]]],[13854,13902]]],["terror",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]],[17,1,1,2,3,[[468,1,1,2,3]]],[22,1,1,3,4,[[711,1,1,3,4]]]],[5783,5878,13657,18297]]],["terrors",[3,3,[[17,1,1,0,1,[[455,1,1,0,1]]],[18,2,2,1,3,[[532,1,1,1,2],[565,1,1,2,3]]]],[13351,14736,15323]]]]},{"k":"H368","v":[["Emims",[3,3,[[0,1,1,0,1,[[13,1,1,0,1]]],[4,2,2,1,3,[[154,2,2,1,3]]]],[341,4948,4949]]]]},{"k":"H369","v":[["*",[787,686,[[0,37,36,0,36,[[1,1,1,0,1],[4,1,1,1,2],[6,1,1,2,3],[10,1,1,3,4],[18,1,1,4,5],[19,2,2,5,7],[27,1,1,7,8],[29,2,2,8,10],[30,3,3,10,13],[36,3,3,13,16],[38,3,3,16,19],[39,1,1,19,20],[40,5,5,20,25],[41,4,3,25,28],[42,1,1,28,29],[43,4,4,29,33],[44,1,1,33,34],[46,2,2,34,36]]],[1,22,20,36,56,[[51,1,1,36,37],[52,1,1,37,38],[54,3,3,38,41],[57,2,2,41,43],[58,1,1,43,44],[61,2,1,44,45],[63,1,1,45,46],[66,2,2,46,48],[70,1,1,48,49],[71,4,4,49,53],[81,3,2,53,55],[82,1,1,55,56]]],[2,21,17,56,73,[[100,5,4,56,60],[102,9,6,60,66],[103,1,1,66,67],[111,1,1,67,68],[114,1,1,68,69],[115,4,4,69,73]]],[3,19,18,73,91,[[121,2,2,73,75],[127,1,1,75,76],[129,1,1,76,77],[130,1,1,77,78],[135,2,2,78,80],[136,2,2,80,82],[137,2,1,82,83],[138,1,1,83,84],[143,6,6,84,90],[151,1,1,90,91]]],[4,30,29,91,120,[[153,2,2,91,93],[156,4,4,93,97],[160,1,1,97,98],[164,1,1,98,99],[166,3,3,99,102],[171,1,1,102,103],[173,2,2,103,105],[174,2,2,105,107],[177,1,1,107,108],[180,5,5,108,113],[181,1,1,113,114],[183,1,1,114,115],[184,5,4,115,119],[185,1,1,119,120]]],[5,5,4,120,124,[[192,2,1,120,121],[204,1,1,121,122],[208,2,2,122,124]]],[6,27,25,124,149,[[213,1,1,124,125],[214,1,1,125,126],[216,1,1,126,127],[217,2,2,127,129],[219,2,2,129,131],[221,1,1,131,132],[222,1,1,132,133],[223,1,1,133,134],[224,2,2,134,136],[226,1,1,136,137],[227,1,1,137,138],[228,6,4,138,142],[229,5,5,142,147],[231,2,2,147,149]]],[7,1,1,149,150,[[235,1,1,149,150]]],[8,33,27,150,177,[[236,1,1,150,151],[237,3,1,151,152],[238,1,1,152,153],[244,3,3,153,156],[245,2,2,156,158],[246,2,2,158,160],[249,4,4,160,164],[252,1,1,164,165],[253,1,1,165,166],[254,1,1,166,167],[255,2,2,167,169],[256,4,3,169,172],[257,2,1,172,173],[259,1,1,173,174],[261,3,1,174,175],[262,1,1,175,176],[265,1,1,176,177]]],[9,15,13,177,190,[[269,1,1,177,178],[273,2,1,178,179],[278,1,1,179,180],[280,1,1,180,181],[281,1,1,181,182],[283,1,1,182,183],[284,2,2,183,185],[285,2,2,185,187],[286,1,1,187,188],[287,2,1,188,189],[288,1,1,189,190]]],[10,25,21,190,211,[[293,1,1,190,191],[295,3,2,191,193],[296,1,1,193,194],[298,4,4,194,198],[300,1,1,198,199],[305,1,1,199,200],[308,7,4,200,204],[310,1,1,204,205],[311,2,2,205,207],[312,4,4,207,211]]],[11,20,18,211,229,[[313,3,3,211,214],[314,1,1,214,215],[315,1,1,215,216],[316,5,4,216,220],[317,1,1,220,221],[319,2,2,221,223],[321,1,1,223,224],[324,1,1,224,225],[326,1,1,225,226],[329,3,2,226,228],[331,1,1,228,229]]],[12,9,8,229,237,[[341,1,1,229,230],[354,2,1,230,231],[359,4,4,231,235],[360,1,1,235,236],[366,1,1,236,237]]],[13,25,24,237,261,[[371,2,2,237,239],[372,2,2,239,241],[375,1,1,241,242],[378,1,1,242,243],[380,4,3,243,246],[381,1,1,246,247],[384,3,3,247,250],[385,1,1,250,251],[386,4,4,251,255],[387,1,1,255,256],[388,1,1,256,257],[391,1,1,257,258],[401,2,2,258,260],[402,1,1,260,261]]],[14,4,4,261,265,[[405,1,1,261,262],[411,2,2,262,264],[412,1,1,264,265]]],[15,11,9,265,274,[[414,5,4,265,269],[416,2,1,269,270],[417,1,1,270,271],[419,1,1,271,272],[420,1,1,272,273],[425,1,1,273,274]]],[16,10,9,274,283,[[426,1,1,274,275],[427,2,2,275,277],[428,3,2,277,279],[429,1,1,279,280],[430,1,1,280,281],[432,1,1,281,282],[433,1,1,282,283]]],[17,37,34,283,317,[[436,1,1,283,284],[437,2,2,284,286],[438,2,2,286,288],[440,3,2,288,290],[441,1,1,290,291],[442,2,2,291,293],[443,1,1,293,294],[444,2,1,294,295],[445,1,1,295,296],[446,2,2,296,298],[447,1,1,298,299],[453,1,1,299,300],[454,1,1,300,301],[455,1,1,301,302],[456,1,1,302,303],[457,1,1,303,304],[458,1,1,304,305],[459,2,2,305,307],[461,1,1,307,308],[462,1,1,308,309],[463,1,1,309,310],[466,1,1,310,311],[467,2,2,311,313],[468,1,1,313,314],[469,2,1,314,315],[470,1,1,315,316],[476,1,1,316,317]]],[18,67,56,317,373,[[480,1,1,317,318],[482,1,1,318,319],[483,1,1,319,320],[484,1,1,320,321],[487,1,1,321,322],[491,4,2,322,324],[495,1,1,324,325],[496,3,2,325,327],[499,1,1,327,328],[509,2,2,328,330],[510,1,1,330,331],[511,1,1,331,332],[513,1,1,332,333],[514,3,2,333,335],[515,5,4,335,339],[516,2,2,339,341],[517,2,2,341,343],[527,1,1,343,344],[530,4,2,344,346],[532,1,1,346,347],[536,1,1,347,348],[546,2,2,348,350],[548,1,1,350,351],[549,1,1,351,352],[550,3,3,352,355],[551,1,1,355,356],[556,1,1,356,357],[563,2,1,357,358],[565,1,1,358,359],[580,1,1,359,360],[581,2,2,360,362],[582,2,2,362,364],[584,1,1,364,365],[596,1,1,365,366],[612,1,1,366,367],[616,1,1,367,368],[619,2,1,368,369],[621,3,1,369,370],[622,1,1,370,371],[623,1,1,371,372],[624,1,1,372,373]]],[19,38,34,373,407,[[628,1,1,373,374],[632,2,2,374,376],[633,2,2,376,378],[634,1,1,378,379],[635,3,2,379,381],[637,1,1,381,382],[638,1,1,382,383],[639,1,1,383,384],[640,2,2,384,386],[641,2,2,386,388],[642,1,1,388,389],[644,1,1,389,390],[647,1,1,390,391],[648,3,1,391,392],[649,1,1,392,393],[650,1,1,393,394],[652,4,3,394,397],[653,1,1,397,398],[655,4,4,398,402],[656,4,4,402,406],[657,1,1,406,407]]],[20,44,37,407,444,[[659,3,3,407,410],[660,3,3,410,413],[661,5,4,413,417],[662,7,4,417,421],[663,4,4,421,425],[664,1,1,425,426],[665,1,1,426,427],[666,8,6,427,433],[667,7,6,433,439],[668,1,1,439,440],[669,2,2,440,442],[670,2,2,442,444]]],[21,5,5,444,449,[[674,2,2,444,446],[676,2,2,446,448],[678,1,1,448,449]]],[22,92,72,449,521,[[679,4,4,449,453],[680,2,1,453,454],[681,2,1,454,455],[683,4,3,455,458],[684,2,1,458,459],[686,1,1,459,460],[687,1,1,460,461],[691,1,1,461,462],[692,1,1,462,463],[695,2,2,463,465],[697,1,1,465,466],[700,2,1,466,467],[701,1,1,467,468],[705,1,1,468,469],[711,1,1,469,470],[712,2,2,470,472],[715,1,1,472,473],[718,6,5,473,478],[719,9,6,478,484],[720,2,1,484,485],[721,3,3,485,488],[722,3,3,488,491],[723,9,7,491,498],[724,1,1,498,499],[725,4,4,499,503],[726,1,1,503,504],[728,5,2,504,506],[729,2,1,506,507],[733,1,1,507,508],[735,3,2,508,510],[737,8,6,510,516],[738,1,1,516,517],[741,3,2,517,519],[742,1,1,519,520],[744,1,1,520,521]]],[23,89,77,521,598,[[746,1,1,521,522],[748,5,5,522,527],[749,2,2,527,529],[750,1,1,529,530],[751,4,4,530,534],[752,10,7,534,541],[753,1,1,541,542],[754,5,4,542,546],[755,1,1,546,547],[756,2,2,547,549],[757,1,1,549,550],[758,6,4,550,554],[759,1,1,554,555],[760,1,1,555,556],[763,1,1,556,557],[765,1,1,557,558],[766,2,2,558,560],[770,2,2,560,562],[774,6,5,562,567],[775,1,1,567,568],[776,2,2,568,570],[777,6,2,570,572],[778,1,1,572,573],[781,1,1,573,574],[782,4,4,574,578],[783,1,1,578,579],[788,3,3,579,582],[790,4,4,582,586],[792,3,3,586,589],[793,6,5,589,594],[794,2,2,594,596],[795,2,2,596,598]]],[24,11,11,598,609,[[797,5,5,598,603],[798,1,1,603,604],[799,1,1,604,605],[800,1,1,605,606],[801,3,3,606,609]]],[25,23,21,609,630,[[804,1,1,609,610],[808,2,2,610,612],[809,1,1,612,613],[810,1,1,613,614],[814,4,3,614,617],[821,1,1,617,618],[827,1,1,618,619],[828,1,1,619,620],[829,1,1,620,621],[834,2,2,621,623],[835,3,3,623,626],[838,1,1,626,627],[839,2,1,627,628],[840,1,1,628,629],[843,1,1,629,630]]],[26,9,9,630,639,[[850,1,1,630,631],[857,3,3,631,634],[858,1,1,634,635],[859,1,1,635,636],[860,3,3,636,639]]],[27,15,9,639,648,[[864,5,1,639,640],[865,3,1,640,641],[866,1,1,641,642],[868,2,2,642,644],[869,2,2,644,646],[871,1,1,646,647],[874,1,1,647,648]]],[28,3,3,648,651,[[876,2,2,648,650],[877,1,1,650,651]]],[29,5,5,651,656,[[880,1,1,651,652],[881,2,2,652,654],[883,2,2,654,656]]],[30,1,1,656,657,[[888,1,1,656,657]]],[32,6,6,657,663,[[895,1,1,657,658],[896,2,2,658,660],[897,1,1,660,661],[899,2,2,661,663]]],[33,7,7,663,670,[[901,3,3,663,666],[902,4,4,666,670]]],[34,3,2,670,672,[[904,1,1,670,671],[905,2,1,671,672]]],[35,3,3,672,675,[[907,1,1,672,673],[908,2,2,673,675]]],[36,5,3,675,678,[[909,3,1,675,676],[910,2,2,676,678]]],[37,4,3,678,681,[[918,2,1,678,679],[919,1,1,679,680],[920,1,1,680,681]]],[38,6,5,681,686,[[925,3,2,681,683],[926,3,3,683,686]]]],[35,129,167,296,488,502,506,790,831,863,875,878,923,1107,1112,1113,1158,1160,1172,1180,1203,1210,1219,1234,1244,1265,1284,1288,1295,1350,1354,1355,1358,1364,1424,1433,1566,1581,1642,1643,1648,1720,1731,1756,1846,1900,1984,1990,2088,2115,2116,2123,2127,2456,2470,2488,3001,3007,3009,3023,3056,3073,3078,3083,3084,3086,3132,3382,3500,3530,3541,3560,3561,3800,3805,4030,4095,4150,4291,4304,4316,4330,4345,4401,4558,4562,4563,4564,4565,4571,4872,4924,4934,5016,5026,5039,5043,5152,5252,5300,5317,5319,5412,5465,5467,5496,5497,5552,5637,5640,5642,5643,5679,5694,5745,5762,5770,5786,5797,5836,5950,6300,6451,6453,6593,6619,6659,6706,6708,6769,6774,6863,6872,6893,6912,6915,6964,6986,6994,7000,7003,7021,7025,7039,7042,7043,7052,7111,7127,7194,7214,7242,7277,7393,7395,7398,7432,7442,7448,7452,7514,7525,7534,7547,7668,7701,7717,7732,7751,7773,7776,7781,7795,7850,7917,7931,7982,8103,8202,8289,8362,8392,8455,8496,8500,8517,8518,8555,8584,8644,8834,8882,8884,8914,8994,9008,9031,9045,9100,9271,9351,9367,9370,9384,9448,9456,9466,9481,9487,9497,9527,9536,9539,9549,9561,9587,9605,9609,9617,9634,9662,9712,9717,9766,9857,9922,10009,10017,10064,10412,10883,10967,10968,10978,10980,11009,11179,11278,11279,11296,11318,11384,11440,11481,11486,11488,11495,11548,11549,11558,11583,11593,11599,11611,11612,11642,11653,11711,11969,11981,12009,12110,12251,12252,12265,12309,12319,12321,12327,12382,12387,12424,12503,12695,12710,12731,12744,12752,12755,12764,12792,12811,12825,12877,12894,12904,12913,12925,12955,12960,12991,13016,13029,13051,13061,13093,13111,13127,13131,13295,13304,13347,13388,13394,13427,13443,13460,13473,13500,13518,13607,13633,13640,13683,13705,13735,13921,13959,13982,13990,13997,14045,14081,14083,14159,14171,14174,14215,14357,14364,14382,14397,14439,14460,14486,14493,14497,14500,14504,14517,14525,14530,14537,14690,14720,14722,14751,14803,14937,14955,14987,15012,15022,15024,15025,15057,15188,15292,15312,15565,15596,15606,15640,15643,15711,16063,16192,16243,16290,16319,16323,16344,16356,16424,16534,16540,16547,16555,16594,16610,16626,16681,16702,16726,16751,16754,16776,16778,16829,16889,16958,17014,17042,17049,17116,17127,17141,17161,17197,17199,17220,17223,17225,17233,17242,17243,17278,17322,17324,17326,17344,17349,17357,17371,17373,17378,17381,17382,17389,17391,17397,17398,17401,17409,17411,17419,17449,17465,17466,17469,17471,17473,17474,17476,17477,17480,17481,17485,17491,17504,17518,17519,17524,17535,17584,17589,17620,17622,17648,17660,17669,17684,17685,17692,17714,17748,17766,17768,17780,17827,17836,17920,17959,17985,17997,18011,18074,18087,18155,18298,18313,18315,18355,18436,18437,18443,18448,18449,18462,18463,18468,18475,18477,18479,18502,18516,18517,18518,18539,18541,18545,18566,18567,18570,18575,18579,18582,18583,18595,18600,18609,18613,18614,18636,18664,18672,18691,18741,18766,18786,18804,18808,18810,18811,18815,18816,18836,18869,18871,18892,18926,18997,19031,19034,19050,19052,19056,19071,19079,19103,19135,19136,19151,19152,19159,19164,19166,19168,19170,19172,19175,19197,19206,19207,19208,19221,19240,19260,19261,19285,19299,19305,19309,19312,19316,19355,19418,19452,19471,19482,19581,19588,19672,19674,19677,19680,19684,19706,19764,19774,19785,19787,19823,19888,19899,19900,19901,19904,19933,20012,20026,20032,20056,20064,20068,20072,20082,20089,20118,20128,20132,20134,20137,20139,20186,20198,20241,20249,20312,20317,20319,20327,20331,20341,20403,20424,20445,20449,20450,20509,20591,20602,20616,20631,20718,20723,20724,20934,21121,21157,21176,21308,21312,21319,21321,21341,21405,21436,21474,21558,21741,21965,21966,21988,22014,22036,22051,22052,22081,22132,22134,22166,22185,22189,22201,22202,22228,22270,22297,22309,22338,22390,22399,22400,22425,22429,22517,22615,22624,22629,22641,22665,22666,22707,22708,22710,22715,22721,22730,22731,22767,22785,22810,22826,22833,22846,22858,22872,22986,23010,23018,23097,23099,23105,23112,23116]]],["+",[72,63,[[0,1,1,0,1,[[38,1,1,0,1]]],[2,1,1,1,2,[[103,1,1,1,2]]],[6,2,2,2,4,[[224,1,1,2,3],[231,1,1,3,4]]],[8,2,2,4,6,[[246,1,1,4,5],[254,1,1,5,6]]],[9,2,2,6,8,[[278,1,1,6,7],[285,1,1,7,8]]],[10,1,1,8,9,[[308,1,1,8,9]]],[11,3,3,9,12,[[324,1,1,9,10],[329,2,2,10,12]]],[12,1,1,12,13,[[359,1,1,12,13]]],[13,1,1,13,14,[[387,1,1,13,14]]],[17,6,4,14,18,[[440,2,1,14,15],[444,2,1,15,16],[456,1,1,16,17],[457,1,1,17,18]]],[18,6,6,18,24,[[517,1,1,18,19],[581,1,1,19,20],[612,1,1,20,21],[622,1,1,21,22],[623,1,1,22,23],[624,1,1,23,24]]],[19,2,2,24,26,[[640,1,1,24,25],[652,1,1,25,26]]],[20,2,2,26,28,[[659,1,1,26,27],[663,1,1,27,28]]],[22,6,5,28,33,[[683,1,1,28,29],[684,2,1,29,30],[719,1,1,30,31],[728,1,1,31,32],[741,1,1,32,33]]],[23,23,19,33,52,[[748,1,1,33,34],[751,1,1,34,35],[754,2,2,35,37],[756,1,1,37,38],[763,1,1,38,39],[770,1,1,39,40],[774,1,1,40,41],[776,1,1,41,42],[777,6,2,42,44],[778,1,1,44,45],[783,1,1,45,46],[788,1,1,46,47],[790,2,2,47,49],[792,1,1,49,50],[795,2,2,50,52]]],[24,2,2,52,54,[[799,1,1,52,53],[801,1,1,53,54]]],[25,2,2,54,56,[[834,1,1,54,55],[835,1,1,55,56]]],[26,2,2,56,58,[[850,1,1,56,57],[859,1,1,57,58]]],[33,1,1,58,59,[[902,1,1,58,59]]],[35,2,2,59,61,[[907,1,1,59,60],[908,1,1,60,61]]],[36,3,1,61,62,[[909,3,1,61,62]]],[38,1,1,62,63,[[926,1,1,62,63]]]],[1160,3132,6915,7111,7452,7717,8289,8518,9384,9857,10009,10017,10968,11642,12960,13061,13388,13394,14537,15596,16192,16323,16344,16356,16754,17116,17324,17411,17748,17780,18475,18664,18869,19034,19151,19207,19208,19261,19418,19581,19674,19774,19785,19787,19823,19933,20032,20064,20068,20089,20241,20249,20403,20445,21308,21321,21741,22036,22721,22810,22826,22846,23116]]],["No",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6619]]],["None",[3,3,[[22,3,3,0,3,[[683,1,1,0,1],[725,1,1,1,2],[737,1,1,2,3]]]],[17766,18609,18804]]],["Without",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16829]]],["cannot",[2,2,[[14,1,1,0,1,[[411,1,1,0,1]]],[18,1,1,1,2,[[517,1,1,1,2]]]],[12252,14530]]],["else",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]]],[831,6708]]],["except",[1,1,[[0,1,1,0,1,[[43,1,1,0,1]]]],[1350]]],["faileth",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18545]]],["gone",[4,4,[[10,1,1,0,1,[[310,1,1,0,1]]],[17,1,1,1,2,[[459,1,1,1,2]]],[18,2,2,2,4,[[515,1,1,2,3],[580,1,1,3,4]]]],[9448,13460,14500,15565]]],["man",[12,11,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,3,3,1,4,[[180,3,3,1,4]]],[8,2,2,4,6,[[246,1,1,4,5],[249,1,1,5,6]]],[18,2,1,6,7,[[619,2,1,6,7]]],[19,1,1,7,8,[[628,1,1,7,8]]],[22,1,1,8,9,[[738,1,1,8,9]]],[24,1,1,9,10,[[800,1,1,9,10]]],[33,1,1,10,11,[[902,1,1,10,11]]]],[2123,5637,5640,5679,7448,7547,16290,16424,18836,20424,22730]]],["more",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7982]]],["neither",[42,41,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,1,1,1,2,[[81,1,1,1,2]]],[3,2,2,2,4,[[136,1,1,2,3],[137,1,1,3,4]]],[4,2,2,4,6,[[184,2,2,4,6]]],[6,1,1,6,7,[[221,1,1,6,7]]],[8,3,3,7,10,[[237,1,1,7,8],[259,1,1,8,9],[261,1,1,9,10]]],[9,3,3,10,13,[[273,1,1,10,11],[285,1,1,11,12],[287,1,1,12,13]]],[10,2,2,13,15,[[295,1,1,13,14],[308,1,1,14,15]]],[11,2,2,15,17,[[316,1,1,15,16],[329,1,1,16,17]]],[12,1,1,17,18,[[354,1,1,17,18]]],[15,3,3,18,21,[[414,1,1,18,19],[416,1,1,19,20],[417,1,1,20,21]]],[16,2,2,21,23,[[427,1,1,21,22],[428,1,1,22,23]]],[17,1,1,23,24,[[440,1,1,23,24]]],[18,2,2,24,26,[[515,1,1,24,25],[563,1,1,25,26]]],[20,5,5,26,31,[[662,1,1,26,27],[666,2,2,27,29],[667,2,2,29,31]]],[22,4,3,31,34,[[680,2,1,31,32],[681,1,1,32,33],[729,1,1,33,34]]],[23,1,1,34,35,[[754,1,1,34,35]]],[25,2,2,35,37,[[814,1,1,35,36],[839,1,1,36,37]]],[26,2,2,37,39,[[857,1,1,37,38],[860,1,1,38,39]]],[34,1,1,39,40,[[905,1,1,39,40]]],[37,1,1,40,41,[[918,1,1,40,41]]]],[1364,2456,4316,4345,5786,5797,6863,7242,7850,7917,8202,8517,8584,8882,9370,9634,10017,10883,12319,12382,12387,12731,12755,12955,14493,15292,17389,17466,17474,17480,17481,17692,17714,18691,19206,20723,21436,21965,22051,22785,22986]]],["never",[4,4,[[6,1,1,0,1,[[224,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]],[25,2,2,2,4,[[828,1,1,2,3],[829,1,1,3,4]]]],[6912,11549,21157,21176]]],["nigh",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15022]]],["no",[246,233,[[0,6,6,0,6,[[10,1,1,0,1],[30,1,1,1,2],[36,1,1,2,3],[39,1,1,3,4],[46,2,2,4,6]]],[1,5,5,6,11,[[51,1,1,6,7],[54,1,1,7,8],[63,1,1,8,9],[66,1,1,9,10],[71,1,1,10,11]]],[2,7,6,11,17,[[100,1,1,11,12],[102,4,3,12,15],[111,1,1,15,16],[114,1,1,16,17]]],[3,12,12,17,29,[[121,2,2,17,19],[135,2,2,19,21],[137,1,1,21,22],[138,1,1,22,23],[143,6,6,23,29]]],[4,10,10,29,39,[[156,1,1,29,30],[160,1,1,30,31],[164,1,1,31,32],[166,2,2,32,34],[174,1,1,34,35],[177,1,1,35,36],[180,1,1,36,37],[184,2,2,37,39]]],[5,3,3,39,42,[[204,1,1,39,40],[208,2,2,40,42]]],[6,12,10,42,52,[[227,1,1,42,43],[228,6,4,43,47],[229,4,4,47,51],[231,1,1,51,52]]],[8,10,10,52,62,[[236,1,1,52,53],[238,1,1,53,54],[249,2,2,54,56],[252,1,1,56,57],[255,1,1,57,58],[256,3,3,58,61],[261,1,1,61,62]]],[9,5,5,62,67,[[281,1,1,62,63],[284,2,2,63,65],[286,1,1,65,66],[287,1,1,66,67]]],[10,7,7,67,74,[[293,1,1,67,68],[296,1,1,68,69],[298,2,2,69,71],[308,1,1,71,72],[311,1,1,72,73],[312,1,1,73,74]]],[11,5,5,74,79,[[313,1,1,74,75],[316,1,1,75,76],[317,1,1,76,77],[319,2,2,77,79]]],[12,2,2,79,81,[[359,1,1,79,80],[360,1,1,80,81]]],[13,10,10,81,91,[[372,2,2,81,83],[380,2,2,83,85],[381,1,1,85,86],[384,1,1,86,87],[385,1,1,87,88],[386,1,1,88,89],[388,1,1,89,90],[402,1,1,90,91]]],[14,1,1,91,92,[[411,1,1,91,92]]],[15,2,2,92,94,[[414,2,2,92,94]]],[16,1,1,94,95,[[433,1,1,94,95]]],[17,6,6,95,101,[[446,1,1,95,96],[454,1,1,96,97],[459,1,1,97,98],[461,1,1,98,99],[467,1,1,99,100],[469,1,1,100,101]]],[18,26,25,101,126,[[480,1,1,101,102],[482,1,1,102,103],[483,1,1,103,104],[491,2,2,104,106],[496,1,1,106,107],[509,2,2,107,109],[510,1,1,109,110],[511,1,1,110,111],[513,1,1,111,112],[515,3,3,112,115],[516,1,1,115,116],[530,2,2,116,118],[532,1,1,118,119],[546,1,1,119,120],[549,1,1,120,121],[550,1,1,121,122],[551,1,1,122,123],[565,1,1,123,124],[581,1,1,124,125],[621,2,1,125,126]]],[19,16,15,126,141,[[633,1,1,126,127],[635,2,1,127,128],[637,1,1,128,129],[638,1,1,129,130],[641,1,1,130,131],[644,1,1,131,132],[648,1,1,132,133],[652,1,1,133,134],[653,1,1,134,135],[655,3,3,135,138],[656,2,2,138,140],[657,1,1,140,141]]],[20,18,16,141,157,[[659,1,1,141,142],[660,2,2,142,144],[661,2,2,144,146],[662,4,3,146,149],[663,1,1,149,150],[666,3,2,150,152],[667,2,2,152,154],[668,1,1,154,155],[670,2,2,155,157]]],[21,2,2,157,159,[[674,1,1,157,158],[678,1,1,158,159]]],[22,31,28,159,187,[[679,2,2,159,161],[686,1,1,161,162],[687,1,1,162,163],[691,1,1,163,164],[697,1,1,164,165],[701,1,1,165,166],[718,2,2,166,168],[719,2,1,168,169],[721,2,2,169,171],[722,2,2,171,173],[723,3,3,173,176],[725,1,1,176,177],[726,1,1,177,178],[728,3,2,178,180],[733,1,1,180,181],[735,2,2,181,183],[737,5,4,183,187]]],[23,25,22,187,209,[[748,2,2,187,189],[750,1,1,189,190],[752,6,5,190,195],[756,1,1,195,196],[758,3,2,196,198],[760,1,1,198,199],[766,1,1,199,200],[774,2,2,200,202],[782,2,2,202,204],[788,1,1,204,205],[792,2,2,205,207],[793,3,2,207,209]]],[24,2,2,209,211,[[797,1,1,209,210],[798,1,1,210,211]]],[25,5,5,211,216,[[814,3,3,211,214],[827,1,1,214,215],[838,1,1,215,216]]],[27,5,5,216,221,[[865,1,1,216,217],[869,2,2,217,219],[871,1,1,219,220],[874,1,1,220,221]]],[28,1,1,221,222,[[876,1,1,221,222]]],[29,2,2,222,224,[[881,2,2,222,224]]],[32,3,3,224,227,[[895,1,1,224,225],[896,1,1,225,226],[899,1,1,226,227]]],[33,1,1,227,228,[[902,1,1,227,228]]],[34,2,2,228,230,[[904,1,1,228,229],[905,1,1,229,230]]],[37,2,2,230,232,[[919,1,1,230,231],[920,1,1,231,232]]],[38,1,1,232,233,[[925,1,1,232,233]]]],[296,923,1107,1180,1424,1433,1566,1648,1900,1984,2115,3009,3073,3078,3083,3382,3500,3800,3805,4291,4304,4345,4401,4558,4562,4563,4564,4565,4571,5016,5152,5252,5317,5319,5496,5552,5643,5770,5797,6300,6451,6453,6986,6994,7000,7003,7021,7025,7039,7042,7043,7127,7214,7277,7514,7534,7668,7751,7773,7776,7781,7917,8392,8496,8500,8555,8584,8834,8914,9008,9031,9367,9456,9527,9549,9617,9662,9712,9717,10980,11009,11296,11318,11481,11486,11495,11558,11583,11599,11653,12009,12251,12321,12327,12825,13111,13304,13443,13473,13633,13705,13959,13982,13990,14081,14083,14171,14357,14364,14382,14397,14439,14493,14497,14504,14525,14720,14722,14751,14937,15012,15024,15057,15312,15606,16319,16547,16626,16681,16702,16776,16889,17014,17141,17161,17197,17199,17220,17233,17242,17278,17326,17344,17349,17371,17378,17382,17389,17397,17401,17466,17473,17476,17485,17504,17524,17535,17589,17648,17660,17684,17827,17836,17920,18011,18087,18448,18449,18479,18516,18517,18539,18541,18566,18570,18582,18600,18636,18664,18672,18741,18766,18786,18808,18810,18815,18816,19050,19052,19103,19159,19164,19166,19168,19175,19260,19299,19312,19355,19482,19680,19684,19901,19904,20012,20082,20118,20128,20134,20319,20341,20718,20723,20724,21121,21405,22134,22201,22202,22228,22270,22309,22399,22400,22615,22629,22665,22731,22767,22785,23010,23018,23099]]],["none",[135,127,[[0,6,6,0,6,[[27,1,1,0,1],[38,1,1,1,2],[40,4,4,2,6]]],[1,2,2,6,8,[[57,1,1,6,7],[58,1,1,7,8]]],[2,4,4,8,12,[[115,4,4,8,12]]],[4,5,5,12,17,[[156,2,2,12,14],[174,1,1,14,15],[180,1,1,15,16],[185,1,1,16,17]]],[5,2,1,17,18,[[192,2,1,17,18]]],[6,1,1,18,19,[[229,1,1,18,19]]],[7,1,1,19,20,[[235,1,1,19,20]]],[8,6,4,20,24,[[237,2,1,20,21],[245,1,1,21,22],[256,1,1,22,23],[257,2,1,23,24]]],[9,3,3,24,27,[[273,1,1,24,25],[280,1,1,25,26],[288,1,1,26,27]]],[10,3,3,27,30,[[298,1,1,27,28],[300,1,1,28,29],[305,1,1,29,30]]],[11,1,1,30,31,[[321,1,1,30,31]]],[12,2,2,31,33,[[354,1,1,31,32],[366,1,1,32,33]]],[13,3,3,33,36,[[375,1,1,33,34],[386,2,2,34,36]]],[15,1,1,36,37,[[416,1,1,36,37]]],[16,2,2,37,39,[[426,1,1,37,38],[429,1,1,38,39]]],[17,8,8,39,47,[[436,1,1,39,40],[437,2,2,40,42],[438,1,1,42,43],[445,1,1,43,44],[446,1,1,44,45],[455,1,1,45,46],[467,1,1,46,47]]],[18,13,13,47,60,[[484,1,1,47,48],[491,2,2,48,50],[495,1,1,50,51],[499,1,1,51,52],[527,1,1,52,53],[530,2,2,53,55],[546,1,1,55,56],[548,1,1,56,57],[556,1,1,57,58],[563,1,1,58,59],[584,1,1,59,60]]],[21,1,1,60,61,[[674,1,1,60,61]]],[22,31,26,61,87,[[679,1,1,61,62],[683,1,1,62,63],[692,1,1,63,64],[695,1,1,64,65],[700,2,1,65,66],[712,2,2,66,68],[719,4,2,68,70],[720,2,1,70,71],[721,1,1,71,72],[723,6,6,72,78],[724,1,1,78,79],[725,1,1,79,80],[728,1,1,80,81],[729,1,1,81,82],[735,1,1,82,83],[737,1,1,83,84],[741,2,1,84,85],[742,1,1,85,86],[744,1,1,86,87]]],[23,13,13,87,100,[[748,1,1,87,88],[751,1,1,88,89],[753,1,1,89,90],[754,1,1,90,91],[757,1,1,91,92],[758,1,1,92,93],[765,1,1,93,94],[774,2,2,94,96],[790,1,1,96,97],[793,1,1,97,98],[794,2,2,98,100]]],[24,5,5,100,105,[[797,4,4,100,104],[801,1,1,104,105]]],[25,5,5,105,110,[[808,2,2,105,107],[835,2,2,107,109],[840,1,1,109,110]]],[26,3,3,110,113,[[857,1,1,110,111],[860,2,2,111,113]]],[27,2,2,113,115,[[866,1,1,113,114],[868,1,1,114,115]]],[28,1,1,115,116,[[877,1,1,115,116]]],[29,2,2,116,118,[[883,2,2,116,118]]],[30,1,1,118,119,[[888,1,1,118,119]]],[32,3,3,119,122,[[896,1,1,119,120],[897,1,1,120,121],[899,1,1,121,122]]],[33,4,4,122,126,[[901,3,3,122,125],[902,1,1,125,126]]],[35,1,1,126,127,[[908,1,1,126,127]]]],[790,1158,1203,1210,1219,1234,1720,1756,3530,3541,3560,3561,5039,5043,5497,5642,5836,5950,7052,7194,7242,7442,7781,7795,8202,8362,8644,9045,9100,9271,9766,10883,11179,11384,11593,11611,12382,12710,12764,12877,12894,12904,12913,13093,13127,13347,13640,13997,14081,14083,14159,14215,14690,14720,14722,14955,14987,15188,15292,15711,17584,17685,17768,17959,17985,18074,18313,18315,18468,18477,18502,18518,18566,18567,18575,18579,18582,18583,18595,18614,18664,18691,18766,18811,18871,18892,18926,19031,19152,19197,19221,19285,19309,19452,19677,19680,20072,20132,20186,20198,20312,20317,20327,20331,20450,20591,20602,21319,21341,21474,21988,22052,22081,22166,22185,22338,22425,22429,22517,22624,22641,22666,22707,22708,22710,22715,22833]]],["nor",[24,21,[[2,2,2,0,2,[[100,1,1,0,1],[102,1,1,1,2]]],[8,1,1,2,3,[[261,1,1,2,3]]],[10,4,3,3,6,[[295,1,1,3,4],[308,3,2,4,6]]],[11,2,2,6,8,[[316,1,1,6,7],[326,1,1,7,8]]],[17,2,2,8,10,[[453,1,1,8,9],[469,1,1,9,10]]],[18,2,2,10,12,[[496,1,1,10,11],[621,1,1,11,12]]],[19,2,1,12,13,[[648,2,1,12,13]]],[20,1,1,13,14,[[661,1,1,13,14]]],[22,4,4,14,18,[[681,1,1,14,15],[683,1,1,15,16],[718,1,1,16,17],[737,1,1,17,18]]],[23,1,1,18,19,[[752,1,1,18,19]]],[27,2,1,19,20,[[865,2,1,19,20]]],[37,1,1,20,21,[[918,1,1,20,21]]]],[3023,3086,7917,8882,9367,9370,9634,9922,13295,13705,14171,16319,17014,17373,17714,17766,18436,18804,19166,22134,22986]]],["not",[179,173,[[0,20,19,0,19,[[1,1,1,0,1],[4,1,1,1,2],[6,1,1,2,3],[18,1,1,3,4],[19,2,2,4,6],[29,1,1,6,7],[30,2,2,7,9],[36,2,2,9,11],[38,1,1,11,12],[41,4,3,12,15],[42,1,1,15,16],[43,3,3,16,19]]],[1,11,10,19,29,[[52,1,1,19,20],[54,2,2,20,22],[57,1,1,22,23],[61,2,1,23,24],[66,1,1,24,25],[71,1,1,25,26],[81,2,2,26,28],[82,1,1,28,29]]],[2,7,7,29,36,[[100,3,3,29,32],[102,4,4,32,36]]],[3,3,3,36,39,[[129,1,1,36,37],[130,1,1,37,38],[151,1,1,38,39]]],[4,9,9,39,48,[[153,2,2,39,41],[156,1,1,41,42],[166,1,1,42,43],[171,1,1,43,44],[173,2,2,44,46],[181,1,1,46,47],[183,1,1,47,48]]],[6,6,6,48,54,[[213,1,1,48,49],[219,2,2,49,51],[222,1,1,51,52],[223,1,1,52,53],[226,1,1,53,54]]],[8,6,6,54,60,[[244,3,3,54,57],[249,1,1,57,58],[253,1,1,58,59],[255,1,1,59,60]]],[9,2,2,60,62,[[269,1,1,60,61],[283,1,1,61,62]]],[10,5,5,62,67,[[295,1,1,62,63],[308,1,1,63,64],[311,1,1,64,65],[312,2,2,65,67]]],[11,7,7,67,74,[[313,2,2,67,69],[314,1,1,69,70],[315,1,1,70,71],[316,2,2,71,73],[331,1,1,73,74]]],[12,1,1,74,75,[[341,1,1,74,75]]],[13,6,6,75,81,[[371,1,1,75,76],[380,1,1,76,77],[384,1,1,77,78],[391,1,1,78,79],[401,2,2,79,81]]],[14,2,2,81,83,[[405,1,1,81,82],[412,1,1,82,83]]],[15,3,3,83,86,[[414,1,1,83,84],[419,1,1,84,85],[425,1,1,85,86]]],[16,4,4,86,90,[[427,1,1,86,87],[428,2,2,87,89],[432,1,1,89,90]]],[17,11,11,90,101,[[438,1,1,90,91],[441,1,1,91,92],[442,2,2,92,94],[447,1,1,94,95],[458,1,1,95,96],[462,1,1,96,97],[463,1,1,97,98],[468,1,1,98,99],[470,1,1,99,100],[476,1,1,100,101]]],[18,8,7,101,108,[[487,1,1,101,102],[514,3,2,102,104],[536,1,1,104,105],[550,1,1,105,106],[582,1,1,106,107],[616,1,1,107,108]]],[19,7,7,108,115,[[632,1,1,108,109],[634,1,1,109,110],[639,1,1,110,111],[641,1,1,111,112],[650,1,1,112,113],[655,1,1,113,114],[656,1,1,114,115]]],[20,14,14,115,129,[[659,1,1,115,116],[662,2,2,116,118],[663,2,2,118,120],[665,1,1,120,121],[666,3,3,121,124],[667,3,3,124,127],[669,2,2,127,129]]],[21,1,1,129,130,[[676,1,1,129,130]]],[22,7,7,130,137,[[679,1,1,130,131],[695,1,1,131,132],[705,1,1,132,133],[711,1,1,133,134],[715,1,1,134,135],[718,1,1,135,136],[725,1,1,136,137]]],[23,24,22,137,159,[[748,1,1,137,138],[749,1,1,138,139],[751,2,2,139,141],[752,3,2,141,143],[754,1,1,143,144],[755,1,1,144,145],[758,2,1,145,146],[759,1,1,146,147],[766,1,1,147,148],[770,1,1,148,149],[774,1,1,149,150],[775,1,1,150,151],[776,1,1,151,152],[781,1,1,152,153],[782,2,2,153,155],[788,1,1,155,156],[790,1,1,156,157],[793,2,2,157,159]]],[24,1,1,159,160,[[801,1,1,159,160]]],[25,6,6,160,166,[[804,1,1,160,161],[809,1,1,161,162],[810,1,1,162,163],[821,1,1,163,164],[834,1,1,164,165],[843,1,1,165,166]]],[26,2,2,166,168,[[857,1,1,166,167],[858,1,1,167,168]]],[29,1,1,168,169,[[880,1,1,168,169]]],[36,1,1,169,170,[[910,1,1,169,170]]],[38,4,3,170,173,[[925,2,1,170,171],[926,2,2,171,173]]]],[35,129,167,488,502,506,863,875,878,1112,1113,1172,1265,1284,1288,1295,1354,1355,1358,1581,1642,1643,1731,1846,1990,2127,2456,2470,2488,3001,3007,3023,3056,3073,3083,3084,4095,4150,4872,4924,4934,5026,5300,5412,5465,5467,5694,5745,6593,6769,6774,6872,6893,6964,7393,7395,7398,7525,7701,7732,8103,8455,8884,9351,9466,9487,9497,9536,9539,9561,9587,9605,9609,10064,10412,11279,11488,11548,11711,11969,11981,12110,12265,12309,12424,12695,12744,12752,12755,12811,12925,12991,13016,13029,13131,13427,13500,13518,13683,13735,13921,14045,14460,14486,14803,15025,15643,16243,16534,16594,16726,16778,17049,17223,17243,17322,17389,17391,17398,17409,17449,17465,17469,17471,17477,17480,17491,17518,17519,17620,17669,17997,18155,18298,18355,18436,18613,19056,19071,19135,19136,19170,19172,19221,19240,19305,19316,19471,19588,19672,19706,19764,19888,19899,19900,20026,20056,20137,20139,20449,20509,20616,20631,20934,21312,21558,21966,22014,22390,22872,23097,23105,23112]]],["nothing",[25,25,[[1,1,1,0,1,[[71,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[8,1,1,2,3,[[262,1,1,2,3]]],[10,1,1,3,4,[[298,1,1,3,4]]],[13,2,2,4,6,[[371,1,1,4,5],[380,1,1,5,6]]],[15,2,2,6,8,[[414,1,1,6,7],[420,1,1,7,8]]],[16,1,1,8,9,[[430,1,1,8,9]]],[18,3,3,9,12,[[496,1,1,9,10],[516,1,1,10,11],[596,1,1,11,12]]],[19,4,4,12,16,[[635,1,1,12,13],[640,1,1,13,14],[647,1,1,14,15],[649,1,1,15,16]]],[20,4,4,16,20,[[660,1,1,16,17],[661,2,2,17,19],[664,1,1,19,20]]],[22,4,4,20,24,[[718,2,2,20,22],[719,2,2,22,24]]],[36,1,1,24,25,[[910,1,1,24,25]]]],[2116,4030,7931,8994,11278,11486,12309,12503,12792,14174,14517,16063,16610,16751,16958,17042,17357,17373,17381,17419,18437,18443,18462,18463,22858]]],["nought",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13051]]],["than",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11612]]],["where",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7432]]],["without",[28,24,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,1,1,1,2,[[70,1,1,1,2]]],[3,1,1,2,3,[[136,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[6,2,2,4,6,[[216,1,1,4,5],[217,1,1,5,6]]],[10,1,1,6,7,[[312,1,1,6,7]]],[12,2,2,7,9,[[359,2,2,7,9]]],[13,1,1,9,10,[[378,1,1,9,10]]],[17,1,1,10,11,[[466,1,1,10,11]]],[18,1,1,11,12,[[582,1,1,11,12]]],[19,5,5,12,17,[[632,1,1,12,13],[633,1,1,13,14],[652,2,2,14,16],[656,1,1,16,17]]],[21,1,1,17,18,[[676,1,1,17,18]]],[23,2,2,18,20,[[746,1,1,18,19],[749,1,1,19,20]]],[25,1,1,20,21,[[839,1,1,20,21]]],[27,6,2,21,23,[[864,5,1,21,22],[868,1,1,22,23]]],[28,1,1,23,24,[[876,1,1,23,24]]]],[1244,2088,4330,5762,6659,6706,9481,10967,10978,11440,13607,15640,16540,16555,17127,17141,17225,17622,18997,19079,21436,22132,22189,22297]]]]},{"k":"H370","v":[["+",[17,17,[[0,2,2,0,2,[[28,1,1,0,1],[41,1,1,1,2]]],[3,1,1,2,3,[[127,1,1,2,3]]],[5,2,2,3,5,[[188,1,1,3,4],[195,1,1,4,5]]],[6,2,2,5,7,[[227,1,1,5,6],[229,1,1,6,7]]],[11,3,3,7,10,[[317,1,1,7,8],[318,1,1,8,9],[332,1,1,9,10]]],[17,3,3,10,13,[[436,1,1,10,11],[463,2,2,11,13]]],[18,1,1,13,14,[[598,1,1,13,14]]],[22,1,1,14,15,[[717,1,1,14,15]]],[31,1,1,15,16,[[889,1,1,15,16]]],[33,1,1,16,17,[[902,1,1,16,17]]]],[799,1259,4037,5873,6045,6989,7041,9672,9701,10112,12876,13516,13524,16082,18415,22539,22719]]]]},{"k":"H371","v":[["not",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7780]]]]},{"k":"H372","v":[["Jeezer",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4519]]]]},{"k":"H373","v":[["Jeezerites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4519]]]]},{"k":"H374","v":[["*",[40,29,[[1,1,1,0,1,[[65,1,1,0,1]]],[2,3,3,1,4,[[94,1,1,1,2],[95,1,1,2,3],[108,1,1,3,4]]],[3,2,2,4,6,[[121,1,1,4,5],[144,1,1,5,6]]],[4,3,2,6,8,[[177,3,2,6,8]]],[6,1,1,8,9,[[216,1,1,8,9]]],[7,1,1,9,10,[[233,1,1,9,10]]],[8,2,2,10,12,[[236,1,1,10,11],[252,1,1,11,12]]],[19,2,1,12,13,[[647,2,1,12,13]]],[22,1,1,13,14,[[683,1,1,13,14]]],[25,17,8,14,22,[[846,8,4,14,18],[847,9,4,18,22]]],[29,1,1,22,23,[[886,1,1,22,23]]],[32,1,1,23,24,[[898,1,1,23,24]]],[37,5,5,24,29,[[915,5,5,24,29]]]],[1983,2841,2869,3317,3807,4582,5561,5562,6673,7166,7236,7635,16964,17749,21640,21641,21643,21654,21660,21662,21666,21669,22486,22658,22942,22943,22944,22945,22946]]],["+",[5,3,[[4,2,1,0,1,[[177,2,1,0,1]]],[19,2,1,1,2,[[647,2,1,1,2]]],[29,1,1,2,3,[[886,1,1,2,3]]]],[5561,16964,22486]]],["ephah",[33,24,[[1,1,1,0,1,[[65,1,1,0,1]]],[2,3,3,1,4,[[94,1,1,1,2],[95,1,1,2,3],[108,1,1,3,4]]],[3,2,2,4,6,[[121,1,1,4,5],[144,1,1,5,6]]],[6,1,1,6,7,[[216,1,1,6,7]]],[7,1,1,7,8,[[233,1,1,7,8]]],[8,2,2,8,10,[[236,1,1,8,9],[252,1,1,9,10]]],[22,1,1,10,11,[[683,1,1,10,11]]],[25,17,8,11,19,[[846,8,4,11,15],[847,9,4,15,19]]],[37,5,5,19,24,[[915,5,5,19,24]]]],[1983,2841,2869,3317,3807,4582,6673,7166,7236,7635,17749,21640,21641,21643,21654,21660,21662,21666,21669,22942,22943,22944,22945,22946]]],["measure",[2,2,[[4,1,1,0,1,[[177,1,1,0,1]]],[32,1,1,1,2,[[898,1,1,1,2]]]],[5562,22658]]]]},{"k":"H375","v":[["*",[11,10,[[0,1,1,0,1,[[36,1,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]],[7,2,1,2,3,[[233,2,1,2,3]]],[8,1,1,3,4,[[254,1,1,3,4]]],[9,1,1,4,5,[[275,1,1,4,5]]],[17,2,2,5,7,[[439,1,1,5,6],[473,1,1,6,7]]],[22,1,1,7,8,[[727,1,1,7,8]]],[23,2,2,8,10,[[747,1,1,8,9],[780,1,1,9,10]]]],[1099,6737,7168,7728,8231,12937,13797,18657,19004,19861]]],["Where",[4,4,[[7,1,1,0,1,[[233,1,1,0,1]]],[8,1,1,1,2,[[254,1,1,1,2]]],[9,1,1,2,3,[[275,1,1,2,3]]],[17,1,1,3,4,[[473,1,1,3,4]]]],[7168,7728,8231,13797]]],["manner",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6737]]],["where",[6,6,[[0,1,1,0,1,[[36,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[17,1,1,2,3,[[439,1,1,2,3]]],[22,1,1,3,4,[[727,1,1,3,4]]],[23,2,2,4,6,[[747,1,1,4,5],[780,1,1,5,6]]]],[1099,7168,12937,18657,19004,19861]]]]},{"k":"H376","v":[["*",[2162,1842,[[0,155,135,0,135,[[1,2,2,0,2],[2,2,2,2,4],[3,2,2,4,6],[5,2,2,6,8],[6,2,1,8,9],[8,2,2,9,11],[9,1,1,11,12],[10,2,2,12,14],[11,1,1,14,15],[12,3,3,15,18],[13,1,1,18,19],[14,1,1,19,20],[15,1,1,20,21],[16,2,2,21,23],[17,3,3,23,26],[18,9,8,26,34],[19,2,2,34,36],[22,1,1,36,37],[23,15,13,37,50],[24,2,1,50,51],[25,5,4,51,55],[26,2,1,55,56],[28,4,4,56,60],[29,4,4,60,64],[30,2,2,64,66],[31,3,3,66,69],[32,1,1,69,70],[33,6,6,70,76],[36,5,4,76,80],[37,5,5,80,85],[38,6,4,85,89],[39,2,1,89,90],[40,5,5,90,95],[41,8,8,95,103],[42,20,15,103,118],[43,10,8,118,126],[44,3,2,126,128],[45,3,2,128,130],[46,3,3,130,133],[48,2,2,133,135]]],[1,95,81,135,216,[[50,1,1,135,136],[51,8,7,136,143],[53,2,2,143,145],[54,1,1,145,146],[56,1,1,146,147],[59,3,2,147,149],[60,3,3,149,152],[61,4,4,152,156],[64,1,1,156,157],[65,9,7,157,164],[66,1,1,164,165],[67,5,4,165,169],[68,1,1,169,170],[70,14,12,170,182],[71,8,7,182,189],[74,2,2,189,191],[77,1,1,191,192],[79,3,3,192,195],[81,8,5,195,200],[82,4,4,200,204],[83,3,2,204,206],[84,5,4,206,210],[85,5,4,210,214],[86,1,1,214,215],[88,1,1,215,216]]],[2,94,76,216,292,[[96,2,2,216,218],[99,1,1,218,219],[102,4,4,219,223],[103,1,1,223,224],[104,7,6,224,230],[105,1,1,230,231],[106,11,6,231,237],[107,3,2,237,239],[108,4,3,239,242],[109,19,16,242,258],[110,8,7,258,265],[111,10,7,265,272],[113,6,4,272,276],[114,9,8,276,284],[115,1,1,284,285],[116,7,7,285,292]]],[3,128,105,292,397,[[117,9,5,292,297],[118,3,3,297,300],[120,4,2,300,302],[121,17,11,302,313],[122,1,1,313,314],[123,1,1,314,315],[125,6,4,315,319],[127,5,5,319,324],[128,1,1,324,325],[129,6,5,325,330],[130,6,6,330,336],[131,2,2,336,338],[132,13,10,338,348],[133,3,3,348,351],[135,3,3,351,354],[137,1,1,354,355],[138,3,3,355,358],[139,1,1,358,359],[141,5,4,359,363],[142,4,4,363,367],[143,3,3,367,370],[146,12,10,370,380],[147,10,8,380,388],[148,3,3,388,391],[150,2,2,391,393],[151,1,1,393,394],[152,3,3,394,397]]],[4,90,77,397,474,[[153,10,9,397,406],[154,2,2,406,408],[155,2,2,408,410],[156,1,1,410,411],[159,1,1,411,412],[160,1,1,412,413],[163,1,1,413,414],[164,1,1,414,415],[165,1,1,415,416],[168,1,1,416,417],[169,6,4,417,421],[170,1,1,421,422],[171,4,4,422,426],[172,7,4,426,430],[173,4,4,430,434],[174,16,12,434,446],[175,1,1,446,447],[176,9,8,447,455],[177,7,5,455,460],[179,2,2,460,462],[180,3,3,462,465],[181,3,3,465,468],[183,1,1,468,469],[184,2,2,469,471],[185,2,2,471,473],[186,1,1,473,474]]],[5,71,58,474,532,[[187,2,2,474,476],[188,13,11,476,487],[189,3,1,487,488],[190,7,3,488,491],[191,3,3,491,494],[192,6,6,494,500],[193,7,4,500,504],[194,8,7,504,511],[195,3,3,511,514],[196,8,7,514,521],[200,1,1,521,522],[203,1,1,522,523],[204,3,3,523,526],[207,1,1,526,527],[208,2,2,527,529],[209,2,2,529,531],[210,1,1,531,532]]],[6,194,152,532,684,[[211,4,4,532,536],[212,2,2,536,538],[213,7,5,538,543],[214,6,5,543,548],[216,6,5,548,553],[217,13,11,553,564],[218,18,15,564,579],[219,15,12,579,591],[220,3,2,591,593],[221,2,2,593,595],[222,5,4,595,599],[223,9,6,599,605],[224,3,3,605,608],[225,4,4,608,612],[226,4,3,612,615],[227,5,5,615,620],[228,11,9,620,629],[229,23,17,629,646],[230,43,29,646,675],[231,11,9,675,684]]],[7,21,19,684,703,[[232,9,8,684,692],[233,5,4,692,696],[234,5,5,696,701],[235,2,2,701,703]]],[8,209,168,703,871,[[236,7,7,703,710],[237,13,10,710,720],[239,11,10,720,730],[240,3,3,730,733],[241,5,4,733,737],[242,2,2,737,739],[243,2,1,739,740],[244,12,10,740,750],[245,7,7,750,757],[246,10,9,757,766],[247,1,1,766,767],[248,5,5,767,772],[249,15,11,772,783],[250,2,2,783,785],[251,4,3,785,788],[252,21,15,788,803],[253,4,3,803,806],[255,3,2,806,808],[256,4,4,808,812],[257,7,4,812,816],[258,11,8,816,824],[259,8,7,824,831],[260,14,9,831,840],[261,3,3,840,843],[262,6,5,843,848],[263,3,3,848,851],[264,4,3,851,854],[265,16,12,854,866],[266,6,5,866,871]]],[9,137,110,871,981,[[267,3,3,871,874],[268,13,10,874,884],[269,5,4,884,888],[270,3,2,888,890],[271,2,2,890,892],[272,3,1,892,893],[273,1,1,893,894],[274,2,2,894,896],[275,1,1,896,897],[276,3,2,897,899],[277,4,4,899,903],[278,7,4,903,907],[279,4,3,907,910],[280,4,4,910,914],[281,10,10,914,924],[282,8,7,924,931],[283,9,8,931,939],[284,10,9,939,948],[285,18,11,948,959],[286,11,9,959,968],[287,5,5,968,973],[288,1,1,973,974],[289,6,5,974,979],[290,4,2,979,981]]],[10,85,75,981,1056,[[291,4,4,981,985],[292,5,5,985,990],[293,1,1,990,991],[294,3,3,991,994],[295,2,2,994,996],[297,3,3,996,999],[298,5,5,999,1004],[299,3,3,1004,1007],[300,3,3,1007,1010],[301,4,4,1010,1014],[302,2,2,1014,1016],[303,16,14,1016,1030],[307,2,2,1030,1032],[308,6,5,1032,1037],[310,15,10,1037,1047],[311,4,3,1047,1050],[312,7,6,1050,1056]]],[11,126,102,1056,1158,[[313,8,8,1056,1064],[314,4,4,1064,1068],[315,3,3,1068,1071],[316,21,14,1071,1085],[317,9,8,1085,1093],[318,7,7,1093,1100],[319,10,9,1100,1109],[320,5,5,1109,1114],[321,3,3,1114,1117],[322,12,8,1117,1125],[323,4,3,1125,1128],[324,4,4,1128,1132],[325,4,2,1132,1134],[326,2,2,1134,1136],[327,2,2,1136,1138],[329,3,1,1138,1139],[330,6,4,1139,1143],[332,1,1,1143,1144],[334,1,1,1144,1145],[335,8,7,1145,1152],[336,1,1,1152,1153],[337,8,5,1153,1158]]],[12,41,35,1158,1193,[[341,3,3,1158,1161],[342,3,2,1161,1163],[344,2,2,1163,1165],[345,1,1,1165,1166],[346,1,1,1166,1167],[347,3,3,1167,1170],[348,4,3,1170,1173],[349,3,3,1173,1176],[353,5,3,1176,1179],[355,3,3,1179,1182],[356,3,2,1182,1184],[357,1,1,1184,1185],[358,3,2,1185,1187],[359,1,1,1187,1188],[360,1,1,1188,1189],[362,1,1,1189,1190],[363,1,1,1190,1191],[364,1,1,1191,1192],[365,1,1,1192,1193]]],[13,56,51,1193,1244,[[368,6,5,1193,1198],[371,1,1,1198,1199],[372,5,5,1199,1204],[373,1,1,1204,1205],[374,2,2,1205,1207],[375,3,3,1207,1210],[376,1,1,1210,1211],[377,2,2,1211,1213],[379,6,4,1213,1217],[381,1,1,1217,1218],[383,1,1,1218,1219],[384,5,5,1219,1224],[386,2,2,1224,1226],[389,4,3,1226,1229],[390,1,1,1229,1230],[391,5,4,1230,1234],[394,2,2,1234,1236],[396,2,2,1236,1238],[397,3,3,1238,1241],[400,3,3,1241,1244]]],[14,14,14,1244,1258,[[403,1,1,1244,1245],[404,6,6,1245,1251],[405,2,2,1251,1253],[410,1,1,1253,1254],[412,4,4,1254,1258]]],[15,44,42,1258,1300,[[413,2,2,1258,1260],[414,1,1,1260,1261],[415,4,4,1261,1265],[416,6,5,1265,1270],[417,3,3,1270,1273],[418,1,1,1273,1274],[419,13,12,1274,1286],[420,4,4,1286,1290],[423,4,4,1290,1294],[424,3,3,1294,1297],[425,3,3,1297,1300]]],[16,19,16,1300,1316,[[426,3,2,1300,1302],[427,1,1,1302,1303],[429,1,1,1303,1304],[431,6,4,1304,1308],[432,1,1,1308,1309],[434,7,7,1309,1316]]],[17,42,40,1316,1356,[[436,5,4,1316,1320],[437,4,4,1320,1324],[439,1,1,1324,1325],[444,1,1,1325,1326],[446,2,2,1326,1328],[447,2,2,1328,1330],[449,1,1,1330,1331],[450,1,1,1331,1332],[457,1,1,1332,1333],[466,1,1,1333,1334],[467,4,4,1334,1338],[468,3,3,1338,1341],[469,7,7,1341,1348],[470,1,1,1348,1349],[471,1,1,1349,1350],[472,3,3,1350,1353],[473,1,1,1353,1354],[476,1,1,1354,1355],[477,2,1,1355,1356]]],[18,43,41,1356,1397,[[478,1,1,1356,1357],[481,1,1,1357,1358],[482,1,1,1358,1359],[489,1,1,1359,1360],[495,1,1,1360,1361],[499,1,1,1361,1362],[502,1,1,1362,1363],[503,1,1,1363,1364],[508,1,1,1364,1365],[511,1,1,1365,1366],[514,2,2,1366,1368],[515,1,1,1368,1369],[516,2,2,1369,1371],[518,1,1,1371,1372],[520,1,1,1372,1373],[526,2,2,1373,1375],[532,1,1,1375,1376],[536,1,1,1376,1377],[539,3,3,1377,1380],[541,1,1,1380,1381],[553,1,1,1381,1382],[555,1,1,1382,1383],[557,1,1,1383,1384],[564,2,1,1384,1385],[569,1,1,1385,1386],[582,1,1,1386,1387],[586,1,1,1387,1388],[589,2,2,1388,1390],[596,1,1,1390,1391],[616,1,1,1391,1392],[617,4,3,1392,1395],[618,1,1,1395,1396],[624,1,1,1396,1397]]],[19,91,88,1397,1485,[[629,1,1,1397,1398],[630,1,1,1398,1399],[632,1,1,1399,1400],[633,5,5,1400,1405],[634,1,1,1405,1406],[635,1,1,1406,1407],[637,1,1,1407,1408],[638,2,2,1408,1410],[639,4,4,1410,1414],[640,2,2,1414,1416],[641,4,4,1416,1420],[642,3,3,1420,1423],[643,7,7,1423,1430],[644,2,2,1430,1432],[645,5,5,1432,1437],[646,3,3,1437,1440],[647,6,4,1440,1444],[648,5,5,1444,1449],[649,3,3,1449,1452],[651,5,5,1452,1457],[652,4,4,1457,1461],[653,3,3,1461,1464],[654,3,3,1464,1467],[655,5,5,1467,1472],[656,13,12,1472,1484],[657,1,1,1484,1485]]],[20,10,8,1485,1493,[[659,1,1,1485,1486],[662,1,1,1486,1487],[664,3,2,1487,1489],[665,1,1,1489,1490],[667,3,2,1490,1492],[670,1,1,1492,1493]]],[21,3,3,1493,1496,[[673,1,1,1493,1494],[678,2,2,1494,1496]]],[22,63,54,1496,1550,[[680,3,3,1496,1499],[681,5,3,1499,1502],[682,1,1,1502,1503],[683,4,4,1503,1507],[684,1,1,1507,1508],[685,2,2,1508,1510],[687,2,2,1510,1512],[691,3,2,1512,1514],[692,2,2,1514,1516],[697,2,1,1516,1517],[699,1,1,1517,1518],[706,1,1,1518,1519],[707,1,1,1519,1520],[709,2,2,1520,1522],[710,1,1,1522,1523],[714,6,4,1523,1527],[718,2,2,1527,1529],[719,5,4,1529,1533],[720,1,1,1533,1534],[722,1,1,1534,1535],[723,1,1,1535,1536],[724,1,1,1536,1537],[725,1,1,1537,1538],[728,1,1,1538,1539],[730,1,1,1539,1540],[731,3,2,1540,1542],[733,1,1,1542,1543],[734,1,1,1543,1544],[735,2,1,1544,1545],[737,1,1,1545,1546],[741,1,1,1546,1547],[744,3,3,1547,1550]]],[23,161,140,1550,1690,[[745,1,1,1550,1551],[746,1,1,1551,1552],[747,2,1,1552,1553],[748,3,3,1553,1556],[749,3,3,1556,1559],[750,3,3,1559,1562],[751,1,1,1562,1563],[752,1,1,1563,1564],[753,4,4,1564,1568],[754,1,1,1568,1569],[755,6,6,1569,1575],[756,3,2,1575,1577],[757,2,2,1577,1579],[758,1,1,1579,1580],[759,2,1,1580,1581],[760,1,1,1581,1582],[761,2,2,1582,1584],[762,4,3,1584,1587],[763,2,2,1587,1589],[764,2,2,1589,1591],[766,5,4,1591,1595],[767,9,8,1595,1603],[769,2,2,1603,1605],[770,7,6,1605,1611],[773,3,3,1611,1614],[775,3,2,1614,1616],[776,2,2,1616,1618],[777,2,2,1618,1620],[778,12,7,1620,1627],[779,4,4,1627,1631],[780,5,5,1631,1636],[781,2,1,1636,1637],[782,10,8,1637,1645],[783,2,2,1645,1647],[784,5,4,1647,1651],[785,12,11,1651,1662],[786,1,1,1662,1663],[787,2,2,1663,1665],[788,5,5,1665,1670],[790,1,1,1670,1671],[792,3,3,1671,1674],[793,4,4,1674,1678],[794,5,4,1678,1682],[795,6,6,1682,1688],[796,4,2,1688,1690]]],[24,1,1,1690,1691,[[799,1,1,1690,1691]]],[25,89,77,1691,1768,[[802,6,4,1691,1695],[804,1,1,1695,1696],[805,1,1,1696,1697],[808,2,2,1697,1699],[809,4,3,1699,1702],[810,9,6,1702,1708],[811,4,4,1708,1712],[812,3,3,1712,1715],[813,1,1,1715,1716],[815,10,8,1716,1724],[817,3,2,1724,1726],[819,6,5,1726,1731],[821,4,4,1731,1735],[822,1,1,1735,1736],[823,6,4,1736,1740],[824,4,4,1740,1744],[825,3,3,1744,1747],[828,2,2,1747,1749],[833,1,1,1749,1750],[834,4,4,1750,1754],[839,1,1,1754,1755],[840,2,2,1755,1757],[841,3,3,1757,1760],[844,1,1,1760,1761],[845,2,2,1761,1763],[846,1,1,1763,1764],[847,2,2,1764,1766],[848,2,2,1766,1768]]],[26,8,8,1768,1776,[[858,2,2,1768,1770],[859,4,4,1770,1774],[861,2,2,1774,1776]]],[27,10,9,1776,1785,[[863,4,4,1776,1780],[864,1,1,1780,1781],[865,2,1,1781,1782],[867,1,1,1782,1783],[870,1,1,1783,1784],[872,1,1,1784,1785]]],[28,4,3,1785,1788,[[877,3,2,1785,1787],[878,1,1,1787,1788]]],[29,3,3,1788,1791,[[880,1,1,1788,1789],[883,1,1,1789,1790],[884,1,1,1790,1791]]],[30,3,2,1791,1793,[[888,3,2,1791,1793]]],[31,9,8,1793,1801,[[889,7,6,1793,1799],[891,2,2,1799,1801]]],[32,8,7,1801,1808,[[894,2,2,1801,1803],[896,2,2,1803,1805],[897,1,1,1805,1806],[899,3,2,1806,1808]]],[33,1,1,1808,1809,[[901,1,1,1808,1809]]],[35,4,4,1809,1813,[[906,1,1,1809,1810],[907,1,1,1810,1811],[908,2,2,1811,1813]]],[36,3,3,1813,1816,[[909,1,1,1813,1814],[910,2,2,1814,1816]]],[37,23,22,1816,1838,[[911,3,3,1816,1819],[912,1,1,1819,1820],[913,2,2,1820,1822],[914,1,1,1822,1823],[916,1,1,1823,1824],[917,3,3,1824,1827],[918,6,5,1827,1832],[920,1,1,1832,1833],[921,1,1,1833,1834],[923,3,3,1834,1837],[924,1,1,1837,1838]]],[38,4,4,1838,1842,[[926,2,2,1838,1840],[927,2,2,1840,1842]]]],[53,54,61,71,80,102,141,146,161,210,225,239,269,273,318,329,331,334,360,370,384,420,424,426,440,446,462,465,466,467,468,469,473,488,502,503,577,604,607,612,613,617,620,621,623,645,649,650,652,656,685,699,703,705,723,738,814,817,827,829,845,848,850,873,922,923,934,952,956,961,987,994,1000,1001,1002,1005,1098,1100,1102,1111,1120,1121,1140,1141,1144,1150,1151,1160,1163,1177,1206,1207,1228,1233,1239,1263,1265,1273,1277,1280,1282,1285,1287,1293,1295,1296,1297,1301,1303,1304,1305,1306,1307,1308,1309,1311,1314,1323,1325,1327,1328,1335,1337,1339,1341,1350,1359,1380,1418,1420,1422,1426,1440,1479,1501,1533,1555,1565,1566,1567,1573,1574,1575,1611,1620,1641,1697,1784,1800,1808,1809,1813,1819,1820,1838,1860,1923,1962,1963,1965,1966,1967,1968,1976,1992,2006,2015,2020,2024,2039,2084,2089,2091,2093,2095,2097,2099,2103,2105,2106,2110,2112,2114,2118,2120,2123,2127,2129,2144,2197,2215,2314,2394,2415,2420,2439,2461,2465,2466,2467,2477,2481,2483,2484,2499,2520,2552,2553,2554,2560,2567,2568,2570,2572,2613,2678,2887,2889,2978,3081,3090,3092,3096,3122,3170,3173,3184,3186,3192,3201,3222,3238,3239,3243,3244,3245,3248,3257,3278,3284,3292,3301,3320,3321,3322,3323,3327,3328,3329,3330,3331,3332,3333,3335,3336,3338,3339,3345,3348,3352,3354,3362,3363,3364,3366,3372,3373,3374,3381,3383,3387,3390,3456,3461,3463,3465,3479,3482,3483,3486,3495,3496,3498,3515,3561,3572,3584,3586,3590,3596,3598,3601,3608,3609,3621,3648,3656,3660,3675,3692,3762,3792,3798,3800,3802,3804,3805,3807,3811,3812,3819,3821,3823,3825,3855,3971,3972,3975,3978,4034,4040,4048,4049,4050,4062,4077,4078,4091,4106,4107,4112,4123,4130,4144,4145,4146,4185,4188,4196,4201,4208,4211,4212,4216,4220,4224,4229,4234,4246,4249,4253,4298,4307,4309,4349,4384,4395,4410,4435,4476,4477,4479,4485,4499,4543,4553,4554,4562,4570,4572,4650,4654,4655,4656,4658,4659,4660,4661,4662,4664,4667,4681,4685,4692,4706,4713,4714,4717,4729,4732,4736,4833,4835,4853,4886,4887,4888,4905,4907,4908,4909,4914,4915,4923,4927,4933,4952,4954,4986,4995,5007,5135,5142,5233,5248,5285,5359,5366,5369,5376,5379,5403,5417,5421,5422,5423,5432,5433,5434,5435,5462,5465,5468,5469,5483,5486,5488,5491,5492,5493,5494,5495,5496,5498,5499,5500,5510,5526,5527,5528,5530,5532,5536,5537,5541,5548,5552,5554,5556,5558,5599,5600,5641,5665,5667,5689,5697,5699,5740,5783,5784,5811,5818,5845,5856,5869,5870,5871,5872,5873,5874,5876,5878,5880,5883,5886,5892,5905,5912,5914,5915,5938,5940,5947,5952,5954,5969,5970,5971,5975,5978,5979,5980,5981,6005,6014,6016,6019,6022,6023,6027,6043,6044,6051,6066,6070,6072,6078,6082,6085,6088,6193,6276,6297,6301,6302,6425,6440,6446,6469,6470,6504,6513,6533,6534,6535,6551,6566,6583,6585,6596,6597,6599,6605,6609,6613,6619,6621,6670,6681,6682,6683,6684,6700,6701,6702,6707,6708,6710,6713,6715,6716,6717,6718,6720,6723,6724,6727,6728,6729,6733,6734,6735,6736,6737,6740,6741,6743,6744,6756,6758,6759,6763,6767,6772,6782,6790,6803,6805,6809,6811,6812,6829,6832,6868,6870,6871,6873,6874,6886,6890,6892,6893,6894,6895,6924,6927,6928,6939,6940,6944,6945,6954,6968,6976,6981,6985,6986,6988,6991,6995,7000,7004,7007,7009,7010,7012,7015,7018,7025,7027,7030,7031,7033,7034,7039,7040,7041,7042,7044,7046,7047,7048,7049,7050,7052,7055,7056,7058,7062,7064,7065,7066,7067,7069,7070,7071,7074,7075,7076,7079,7085,7087,7088,7089,7090,7092,7093,7095,7096,7098,7099,7100,7101,7102,7103,7110,7111,7112,7114,7123,7124,7126,7127,7128,7129,7130,7132,7136,7138,7139,7140,7150,7160,7168,7169,7175,7180,7186,7188,7190,7192,7197,7213,7215,7220,7223,7233,7234,7235,7249,7253,7255,7256,7257,7259,7265,7266,7267,7273,7299,7306,7307,7309,7310,7311,7313,7315,7316,7318,7326,7328,7331,7341,7346,7350,7351,7353,7363,7391,7392,7393,7397,7398,7399,7400,7401,7407,7408,7413,7420,7421,7424,7429,7430,7440,7443,7446,7450,7452,7453,7454,7455,7457,7458,7460,7464,7487,7491,7499,7500,7505,7510,7516,7520,7522,7528,7530,7532,7536,7542,7544,7560,7563,7564,7611,7612,7613,7620,7622,7626,7628,7630,7637,7641,7642,7643,7644,7645,7646,7651,7659,7670,7681,7699,7703,7745,7771,7773,7774,7779,7786,7789,7793,7805,7806,7813,7815,7818,7822,7823,7834,7835,7836,7841,7842,7843,7845,7846,7858,7861,7863,7864,7871,7872,7874,7876,7880,7881,7886,7907,7920,7928,7932,7933,7938,7939,7941,7943,7950,7956,7969,7971,7978,7979,7980,7981,7984,7987,7988,7989,7991,7995,7999,8000,8009,8010,8012,8015,8016,8021,8024,8033,8035,8052,8053,8054,8065,8066,8076,8078,8079,8080,8081,8096,8097,8101,8120,8122,8131,8138,8153,8176,8194,8213,8214,8230,8245,8246,8275,8276,8282,8285,8287,8290,8291,8293,8320,8326,8346,8361,8363,8372,8381,8390,8391,8393,8394,8395,8400,8402,8407,8411,8419,8431,8433,8434,8439,8441,8444,8449,8450,8452,8457,8461,8463,8467,8473,8474,8488,8489,8490,8495,8498,8502,8504,8505,8506,8518,8519,8525,8527,8528,8533,8539,8543,8552,8553,8554,8555,8556,8558,8561,8565,8566,8567,8575,8576,8584,8585,8586,8597,8600,8651,8660,8662,8670,8673,8674,8701,8707,8722,8726,8759,8766,8772,8774,8779,8796,8802,8829,8869,8871,8872,8884,8891,8948,8964,8970,8987,9010,9016,9023,9024,9056,9073,9078,9087,9094,9104,9125,9126,9132,9136,9173,9175,9185,9188,9189,9190,9191,9192,9195,9196,9198,9205,9209,9210,9213,9215,9335,9341,9345,9354,9363,9381,9385,9425,9428,9432,9436,9438,9441,9443,9445,9447,9450,9461,9462,9464,9486,9488,9490,9497,9514,9516,9539,9540,9541,9542,9543,9544,9545,9546,9558,9567,9568,9570,9599,9601,9602,9604,9610,9612,9617,9619,9624,9625,9628,9629,9630,9632,9643,9645,9646,9648,9654,9655,9661,9662,9667,9671,9673,9676,9680,9683,9684,9689,9693,9706,9709,9710,9712,9713,9716,9717,9724,9725,9726,9729,9731,9734,9735,9738,9767,9769,9777,9798,9799,9800,9807,9812,9814,9817,9818,9837,9838,9840,9854,9855,9859,9865,9890,9892,9902,9908,9945,9950,10013,10045,10051,10055,10057,10112,10160,10167,10173,10175,10181,10182,10183,10200,10218,10226,10241,10245,10246,10247,10397,10407,10427,10446,10452,10556,10575,10615,10624,10660,10666,10671,10692,10695,10696,10728,10750,10758,10823,10841,10863,10894,10895,10900,10912,10925,10932,10939,10948,10973,10997,11047,11085,11141,11146,11213,11218,11224,11225,11228,11271,11287,11298,11304,11311,11312,11342,11355,11360,11371,11378,11388,11411,11416,11418,11456,11460,11468,11470,11503,11536,11547,11549,11551,11558,11575,11610,11614,11663,11664,11666,11701,11708,11711,11713,11726,11776,11779,11838,11843,11855,11856,11873,11945,11956,11963,12020,12028,12029,12049,12050,12054,12055,12098,12099,12219,12253,12261,12268,12269,12298,12307,12319,12329,12334,12349,12355,12374,12377,12378,12381,12382,12389,12395,12399,12412,12422,12423,12426,12427,12446,12447,12448,12449,12450,12451,12452,12453,12494,12495,12496,12509,12590,12591,12594,12608,12648,12660,12668,12681,12696,12701,12710,12724,12729,12773,12799,12800,12802,12804,12813,12836,12838,12840,12846,12849,12853,12856,12870,12872,12873,12877,12894,12895,12902,12903,12943,13083,13110,13120,13138,13142,13193,13219,13397,13623,13629,13633,13641,13649,13665,13666,13677,13691,13693,13694,13704,13706,13717,13719,13728,13760,13776,13789,13793,13819,13905,13933,13940,13967,13979,14068,14166,14210,14263,14282,14351,14400,14457,14487,14504,14518,14523,14551,14567,14650,14664,14755,14792,14830,14836,14839,14856,15086,15138,15215,15306,15417,15623,15771,15804,15808,15922,16258,16264,16267,16274,16280,16361,16445,16486,16538,16551,16552,16566,16567,16568,16594,16606,16679,16700,16705,16721,16727,16733,16744,16749,16755,16779,16784,16786,16789,16825,16828,16830,16842,16847,16854,16865,16867,16868,16869,16885,16900,16905,16913,16915,16921,16925,16931,16946,16947,16957,16959,16960,16971,16986,16992,17001,17012,17013,17022,17039,17044,17080,17084,17108,17109,17113,17114,17127,17131,17141,17153,17160,17162,17177,17186,17190,17201,17207,17216,17218,17220,17225,17227,17228,17230,17232,17233,17234,17237,17244,17246,17250,17251,17253,17323,17385,17419,17420,17434,17489,17490,17526,17579,17647,17651,17694,17696,17702,17709,17712,17713,17734,17742,17746,17754,17761,17774,17795,17803,17848,17849,17914,17920,17944,17946,18006,18044,18178,18206,18257,18258,18261,18336,18342,18346,18348,18433,18446,18457,18462,18463,18479,18493,18546,18575,18597,18614,18664,18710,18714,18717,18747,18764,18766,18816,18869,18925,18935,18946,18961,18971,19003,19030,19031,19056,19059,19066,19084,19092,19100,19112,19124,19159,19179,19180,19185,19187,19224,19228,19229,19234,19235,19247,19249,19260,19264,19277,19280,19302,19325,19348,19367,19382,19395,19396,19405,19416,19417,19437,19438,19461,19462,19482,19484,19493,19498,19508,19511,19514,19518,19519,19520,19539,19560,19575,19583,19588,19589,19592,19594,19641,19661,19667,19721,19725,19750,19763,19792,19793,19810,19811,19815,19816,19817,19818,19819,19827,19836,19838,19842,19845,19849,19858,19861,19873,19884,19899,19902,19904,19905,19906,19911,19917,19919,19927,19940,19948,19949,19950,19956,19958,19959,19960,19961,19962,19964,19965,19966,19969,19972,19973,19992,19999,20006,20017,20025,20029,20036,20037,20061,20094,20111,20116,20132,20145,20153,20160,20182,20196,20206,20208,20218,20221,20234,20244,20255,20257,20283,20301,20387,20473,20475,20476,20487,20528,20546,20590,20593,20615,20616,20620,20623,20624,20625,20626,20628,20633,20635,20636,20639,20655,20656,20657,20670,20696,20732,20734,20735,20738,20739,20745,20747,20749,20794,20807,20854,20856,20857,20865,20879,20896,20902,20903,20934,20975,20982,20985,20987,21006,21021,21047,21049,21052,21073,21078,21079,21131,21148,21258,21282,21300,21306,21310,21446,21462,21468,21480,21481,21482,21578,21601,21624,21650,21671,21673,21682,21693,21995,22009,22020,22022,22026,22034,22087,22088,22107,22112,22115,22121,22131,22137,22176,22215,22249,22318,22319,22352,22386,22442,22459,22517,22519,22536,22538,22541,22544,22545,22547,22563,22566,22597,22606,22624,22625,22640,22666,22670,22702,22799,22816,22824,22826,22849,22867,22877,22886,22888,22899,22900,22920,22922,22923,22959,22964,22971,22972,22980,22986,22992,22993,22999,23017,23034,23062,23063,23064,23081,23113,23115,23136,23137]]],["+",[200,168,[[0,11,10,0,10,[[1,1,1,0,1],[8,1,1,1,2],[22,1,1,2,3],[36,1,1,3,4],[38,4,3,4,7],[42,1,1,7,8],[43,1,1,8,9],[48,1,1,9,10]]],[1,15,11,10,21,[[51,3,2,10,12],[53,1,1,12,13],[59,1,1,13,14],[60,1,1,14,15],[61,1,1,15,16],[71,1,1,16,17],[79,2,2,17,19],[81,3,1,19,20],[85,2,1,20,21]]],[2,33,22,21,43,[[104,3,2,21,23],[106,8,4,23,27],[107,2,1,27,28],[108,1,1,28,29],[109,5,3,29,32],[110,2,2,32,34],[111,8,6,34,40],[113,3,2,40,42],[114,1,1,42,43]]],[3,12,8,43,51,[[120,4,2,43,45],[121,3,2,45,47],[125,2,1,47,48],[127,1,1,48,49],[132,1,1,49,50],[141,1,1,50,51]]],[4,5,5,51,56,[[153,1,1,51,52],[169,1,1,52,53],[170,1,1,53,54],[177,1,1,54,55],[184,1,1,55,56]]],[5,9,6,56,62,[[187,1,1,56,57],[189,2,1,57,58],[190,4,2,58,60],[192,1,1,60,61],[194,1,1,61,62]]],[6,7,7,62,69,[[218,1,1,62,63],[222,1,1,63,64],[230,3,3,64,67],[231,2,2,67,69]]],[7,1,1,69,70,[[232,1,1,69,70]]],[8,19,17,70,87,[[247,1,1,70,71],[248,1,1,71,72],[250,1,1,72,73],[252,3,3,73,76],[255,1,1,76,77],[257,1,1,77,78],[258,1,1,78,79],[260,2,1,79,80],[261,1,1,80,81],[264,1,1,81,82],[265,5,4,82,86],[266,1,1,86,87]]],[9,9,9,87,96,[[267,1,1,87,88],[268,1,1,88,89],[272,1,1,89,90],[274,1,1,90,91],[278,1,1,91,92],[280,1,1,92,93],[284,1,1,93,94],[288,1,1,94,95],[289,1,1,95,96]]],[10,4,4,96,100,[[299,1,1,96,97],[300,1,1,97,98],[308,2,2,98,100]]],[11,5,5,100,105,[[313,1,1,100,101],[322,3,3,101,104],[323,1,1,104,105]]],[12,8,7,105,112,[[348,1,1,105,106],[349,1,1,106,107],[353,2,1,107,108],[355,2,2,108,110],[356,1,1,110,111],[362,1,1,111,112]]],[13,5,5,112,117,[[368,2,2,112,114],[375,1,1,114,115],[381,1,1,115,116],[389,1,1,116,117]]],[15,3,3,117,120,[[417,1,1,117,118],[418,1,1,118,119],[420,1,1,119,120]]],[16,3,2,120,122,[[426,2,1,120,121],[432,1,1,121,122]]],[17,2,2,122,124,[[447,1,1,122,123],[466,1,1,123,124]]],[18,9,9,124,133,[[495,1,1,124,125],[518,1,1,125,126],[520,1,1,126,127],[536,1,1,127,128],[539,1,1,128,129],[596,1,1,129,130],[617,3,3,130,133]]],[19,10,10,133,143,[[629,1,1,133,134],[630,1,1,134,135],[633,1,1,135,136],[646,2,2,136,138],[649,1,1,138,139],[651,1,1,139,140],[655,1,1,140,141],[656,1,1,141,142],[657,1,1,142,143]]],[20,2,2,143,145,[[664,1,1,143,144],[665,1,1,144,145]]],[22,4,4,145,149,[[718,1,1,145,146],[719,1,1,146,147],[730,1,1,147,148],[741,1,1,148,149]]],[23,12,9,149,158,[[753,1,1,149,150],[767,1,1,150,151],[775,2,1,151,152],[778,6,4,152,156],[782,1,1,156,157],[795,1,1,157,158]]],[25,7,5,158,163,[[804,1,1,158,159],[815,4,2,159,161],[834,1,1,161,162],[846,1,1,162,163]]],[27,1,1,163,164,[[863,1,1,163,164]]],[32,1,1,164,165,[[899,1,1,164,165]]],[37,3,3,165,168,[[917,1,1,165,166],[918,1,1,166,167],[923,1,1,167,168]]]],[53,225,577,1111,1150,1160,1163,1309,1335,1501,1565,1573,1611,1800,1813,1838,2120,2415,2420,2465,2570,3170,3173,3238,3243,3245,3248,3257,3301,3320,3322,3327,3352,3362,3372,3373,3374,3381,3387,3390,3456,3461,3483,3762,3792,3802,3804,3975,4049,4234,4485,4933,5379,5403,5552,5784,5869,5905,5912,5914,5970,6027,6733,6871,7056,7058,7098,7110,7111,7132,7464,7505,7563,7622,7630,7641,7771,7806,7823,7874,7928,7971,7988,7989,7991,8000,8012,8035,8080,8176,8213,8290,8381,8498,8651,8674,9078,9094,9345,9354,9541,9798,9812,9818,9838,10696,10750,10823,10894,10900,10925,11047,11213,11228,11378,11503,11664,12399,12412,12495,12710,12813,13138,13623,14166,14551,14567,14792,14836,15922,16264,16267,16274,16445,16486,16566,16931,16947,17022,17109,17220,17234,17253,17419,17434,18433,18457,18710,18869,19185,19498,19725,19810,19811,19815,19817,19917,20257,20528,20735,20738,21306,21650,22115,22666,22972,22993,23064]]],["He",[3,3,[[19,3,3,0,3,[[652,1,1,0,1],[655,1,1,1,2],[656,1,1,2,3]]]],[17141,17218,17225]]],["Ishi",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22121]]],["Man",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15138]]],["Men",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13793]]],["This",[1,1,[[18,1,1,0,1,[[564,1,1,0,1]]]],[15306]]],["Whoso",[2,2,[[19,2,2,0,2,[[652,1,1,0,1],[656,1,1,1,2]]]],[17127,17227]]],["age",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7273]]],["another",[6,5,[[8,1,1,0,1,[[237,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]],[25,3,2,2,4,[[802,1,1,2,3],[823,2,1,3,4]]],[27,1,1,4,5,[[865,1,1,4,5]]]],[7265,17712,20475,20987,22137]]],["any",[22,21,[[1,1,1,0,1,[[59,1,1,0,1]]],[2,1,1,1,2,[[110,1,1,1,2]]],[5,1,1,2,3,[[196,1,1,2,3]]],[6,4,3,3,6,[[212,1,1,3,4],[230,2,1,4,5],[231,1,1,5,6]]],[8,1,1,6,7,[[265,1,1,6,7]]],[9,1,1,7,8,[[275,1,1,7,8]]],[10,2,2,8,10,[[293,1,1,8,9],[295,1,1,9,10]]],[11,4,4,10,14,[[316,1,1,10,11],[322,2,2,11,13],[330,1,1,13,14]]],[22,1,1,14,15,[[714,1,1,14,15]]],[23,1,1,15,16,[[767,1,1,15,16]]],[25,4,4,16,20,[[808,1,1,16,17],[819,2,2,17,19],[847,1,1,19,20]]],[37,1,1,20,21,[[923,1,1,20,21]]]],[1800,3354,6085,6566,7062,7103,7980,8230,8829,8884,9632,9807,9817,10057,18348,19508,20590,20856,20865,21671,23062]]],["certain",[14,14,[[0,2,2,0,2,[[37,2,2,0,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[6,2,2,3,5,[[229,2,2,3,5]]],[10,1,1,5,6,[[301,1,1,5,6]]],[13,1,1,6,7,[[394,1,1,6,7]]],[14,1,1,7,8,[[412,1,1,7,8]]],[15,1,1,8,9,[[425,1,1,8,9]]],[16,1,1,9,10,[[427,1,1,9,10]]],[23,2,2,10,12,[[770,1,1,10,11],[785,1,1,11,12]]],[25,2,2,12,14,[[815,1,1,12,13],[821,1,1,13,14]]]],[1120,1121,4196,7025,7046,9125,11776,12268,12696,12729,19589,19962,20732,20896]]],["consent",[1,1,[[8,1,1,0,1,[[246,1,1,0,1]]]],[7452]]],["divers",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11838]]],["each",[6,6,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,1,1,1,2,[[67,1,1,1,2]]],[3,2,2,2,4,[[117,1,1,2,3],[132,1,1,3,4]]],[10,1,1,4,5,[[312,1,1,4,5]]],[11,1,1,5,6,[[321,1,1,5,6]]]],[370,2006,3648,4211,9490,9777]]],["either",[2,2,[[2,1,1,0,1,[[99,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[2978,11551]]],["every",[2,2,[[3,1,1,0,1,[[117,1,1,0,1]]],[10,1,1,1,2,[[297,1,1,1,2]]]],[3608,8964]]],["fellows",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7018]]],["goodman",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16594]]],["he",[2,2,[[2,1,1,0,1,[[113,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]]],[3463,17228]]],["high",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14650]]],["him",[2,2,[[2,1,1,0,1,[[104,1,1,0,1]]],[37,1,1,1,2,[[918,1,1,1,2]]]],[3201,22999]]],["husband",[64,59,[[0,8,8,0,8,[[2,2,2,0,2],[15,1,1,2,3],[28,2,2,3,5],[29,3,3,5,8]]],[2,2,2,8,10,[[108,1,1,8,9],[110,1,1,9,10]]],[3,15,12,10,22,[[121,6,5,10,15],[146,9,7,15,22]]],[4,5,4,22,26,[[174,1,1,22,23],[176,2,1,23,24],[177,1,1,24,25],[180,1,1,25,26]]],[6,6,6,26,32,[[223,3,3,26,29],[224,1,1,29,30],[229,1,1,30,31],[230,1,1,31,32]]],[7,5,4,32,36,[[232,4,3,32,35],[233,1,1,35,36]]],[8,7,7,36,43,[[236,3,3,36,39],[237,1,1,39,40],[239,2,2,40,42],[260,1,1,42,43]]],[9,5,5,43,48,[[269,2,2,43,45],[277,1,1,45,46],[280,2,2,46,48]]],[11,5,5,48,53,[[316,5,5,48,53]]],[23,1,1,53,54,[[750,1,1,53,54]]],[25,3,3,54,57,[[817,2,2,54,56],[845,1,1,56,57]]],[27,2,2,57,59,[[863,2,2,57,59]]]],[61,71,384,827,829,845,848,850,3301,3348,3805,3811,3812,3819,3821,4654,4655,4656,4659,4660,4661,4662,5493,5528,5558,5667,6890,6893,6894,6924,7027,7058,7130,7136,7139,7160,7220,7234,7235,7259,7316,7318,7880,8096,8097,8285,8361,8363,9604,9612,9617,9625,9629,19100,20794,20807,21624,22107,22112]]],["husband's",[2,2,[[3,1,1,0,1,[[146,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]]],[4658,7150]]],["husbands",[4,4,[[7,2,2,0,2,[[232,2,2,0,2]]],[23,1,1,2,3,[[773,1,1,2,3]]],[25,1,1,3,4,[[817,1,1,3,4]]]],[7138,7140,19641,20807]]],["male",[2,1,[[0,2,1,0,1,[[6,2,1,0,1]]]],[161]]],["man",[909,840,[[0,65,58,0,58,[[1,1,1,0,1],[3,2,2,1,3],[5,1,1,3,4],[12,1,1,4,5],[18,3,3,5,8],[19,1,1,8,9],[23,11,10,9,19],[24,2,1,19,20],[25,2,2,20,22],[26,2,1,22,23],[28,1,1,23,24],[29,1,1,24,25],[30,1,1,25,26],[31,1,1,26,27],[33,1,1,27,28],[36,3,2,28,30],[37,1,1,30,31],[38,1,1,31,32],[39,2,1,32,33],[40,5,5,33,38],[41,3,3,38,41],[42,10,9,41,50],[43,4,4,50,54],[44,3,2,54,56],[46,1,1,56,57],[48,1,1,57,58]]],[1,54,50,58,108,[[50,1,1,58,59],[51,4,4,59,63],[56,1,1,63,64],[60,2,2,64,66],[61,2,2,66,68],[64,1,1,68,69],[65,7,5,69,74],[68,1,1,74,75],[70,10,9,75,84],[71,6,6,84,90],[74,1,1,90,91],[79,1,1,91,92],[81,4,4,92,96],[82,4,4,96,100],[83,3,2,100,102],[84,3,3,102,105],[85,3,3,105,108]]],[2,46,43,108,151,[[102,4,4,108,112],[103,1,1,112,113],[104,2,2,113,115],[105,1,1,115,116],[106,3,2,116,118],[108,1,1,118,119],[109,13,13,119,132],[110,4,3,132,135],[111,2,2,135,137],[113,2,2,137,139],[114,6,5,139,144],[116,7,7,144,151]]],[3,48,44,151,195,[[117,3,2,151,153],[118,2,2,153,155],[121,8,8,155,163],[122,1,1,163,164],[123,1,1,164,165],[125,2,1,165,166],[127,1,1,166,167],[128,1,1,167,168],[129,1,1,168,169],[130,1,1,169,170],[131,2,2,170,172],[132,5,4,172,176],[133,1,1,176,177],[135,2,2,177,179],[137,1,1,179,180],[139,1,1,180,181],[141,2,1,181,182],[142,2,2,182,184],[143,3,3,184,187],[146,2,2,187,189],[147,4,4,189,193],[148,1,1,193,194],[152,1,1,194,195]]],[4,59,51,195,246,[[153,3,3,195,198],[155,2,2,198,200],[159,1,1,200,201],[160,1,1,201,202],[163,1,1,202,203],[164,1,1,203,204],[168,1,1,204,205],[169,5,3,205,208],[171,3,3,208,211],[172,7,4,211,215],[173,3,3,215,218],[174,14,11,218,229],[175,1,1,229,230],[176,6,6,230,236],[177,2,2,236,238],[179,1,1,238,239],[180,2,2,239,241],[181,2,2,241,243],[184,1,1,243,244],[185,1,1,244,245],[186,1,1,245,246]]],[5,17,17,246,263,[[187,1,1,246,247],[188,1,1,247,248],[190,1,1,248,249],[191,1,1,249,250],[192,3,3,250,253],[194,1,1,253,254],[196,2,2,254,256],[200,1,1,256,257],[203,1,1,257,258],[207,1,1,258,259],[208,1,1,259,260],[209,2,2,260,262],[210,1,1,262,263]]],[6,65,60,263,323,[[211,3,3,263,266],[212,1,1,266,267],[213,4,4,267,271],[214,3,2,271,273],[216,1,1,273,274],[217,5,5,274,279],[218,3,3,279,282],[219,4,4,282,286],[220,2,2,286,288],[221,1,1,288,289],[223,6,5,289,294],[226,1,1,294,295],[227,5,5,295,300],[228,1,1,300,301],[229,16,14,301,315],[230,3,3,315,318],[231,6,5,318,323]]],[7,9,9,323,332,[[232,2,2,323,325],[233,2,2,325,327],[234,4,4,327,331],[235,1,1,331,332]]],[8,74,66,332,398,[[236,4,4,332,336],[237,8,7,336,343],[239,6,6,343,349],[243,1,1,349,350],[244,10,8,350,358],[245,3,3,358,361],[246,1,1,361,362],[248,2,2,362,364],[249,7,5,364,369],[251,3,3,369,372],[252,10,9,372,381],[253,1,1,381,382],[256,4,4,382,386],[259,1,1,386,387],[260,6,4,387,391],[261,1,1,391,392],[262,3,3,392,395],[263,1,1,395,396],[265,2,2,396,398]]],[9,45,40,398,438,[[267,1,1,398,399],[268,1,1,399,400],[278,5,3,400,403],[279,3,3,403,406],[280,1,1,406,407],[281,4,4,407,411],[282,5,4,411,415],[283,2,2,415,417],[284,7,6,417,423],[285,4,4,423,427],[286,6,5,427,432],[287,3,3,432,435],[289,3,3,435,438]]],[10,51,44,438,482,[[291,2,2,438,440],[292,3,3,440,443],[294,3,3,443,446],[297,1,1,446,447],[298,4,4,447,451],[299,1,1,451,452],[300,1,1,452,453],[301,1,1,453,454],[302,2,2,454,456],[303,15,13,456,469],[307,2,2,469,471],[310,11,7,471,478],[312,5,4,478,482]]],[11,67,61,482,543,[[313,7,7,482,489],[315,1,1,489,490],[316,13,10,490,500],[317,8,7,500,507],[318,7,7,507,514],[319,6,6,514,520],[320,5,5,520,525],[321,2,2,525,527],[322,1,1,527,528],[323,2,2,528,530],[324,1,1,530,531],[325,4,2,531,533],[326,2,2,533,535],[327,1,1,535,536],[330,2,2,536,538],[334,1,1,538,539],[335,4,4,539,543]]],[12,9,9,543,552,[[348,2,2,543,545],[353,2,2,545,547],[357,1,1,547,548],[359,1,1,548,549],[360,1,1,549,550],[364,1,1,550,551],[365,1,1,551,552]]],[13,28,27,552,579,[[368,3,3,552,555],[372,4,4,555,559],[373,1,1,559,560],[374,1,1,560,561],[375,1,1,561,562],[376,1,1,562,563],[377,2,2,563,565],[384,3,3,565,568],[386,1,1,568,569],[389,2,2,569,571],[391,5,4,571,575],[396,1,1,575,576],[397,2,2,576,578],[400,1,1,578,579]]],[14,3,3,579,582,[[405,2,2,579,581],[410,1,1,581,582]]],[15,6,6,582,588,[[413,1,1,582,583],[417,1,1,583,584],[419,1,1,584,585],[420,1,1,585,586],[424,2,2,586,588]]],[16,9,8,588,596,[[426,1,1,588,589],[429,1,1,589,590],[431,5,4,590,594],[434,2,2,594,596]]],[17,21,20,596,616,[[436,4,3,596,599],[437,2,2,599,601],[444,1,1,601,602],[446,2,2,602,604],[447,1,1,604,605],[449,1,1,605,606],[450,1,1,606,607],[457,1,1,607,608],[467,1,1,608,609],[469,3,3,609,612],[470,1,1,612,613],[472,1,1,613,614],[473,1,1,614,615],[477,1,1,615,616]]],[18,22,22,616,638,[[478,1,1,616,617],[482,1,1,617,618],[499,1,1,618,619],[502,1,1,619,620],[508,1,1,620,621],[511,1,1,621,622],[514,2,2,622,624],[515,1,1,624,625],[516,2,2,625,627],[539,2,2,627,629],[557,1,1,629,630],[564,1,1,630,631],[569,1,1,631,632],[582,1,1,632,633],[586,1,1,633,634],[589,2,2,634,636],[617,1,1,636,637],[624,1,1,637,638]]],[19,61,59,638,697,[[632,1,1,638,639],[633,3,3,639,642],[637,1,1,642,643],[638,2,2,643,645],[639,4,4,645,649],[640,1,1,649,650],[641,4,4,650,654],[642,3,3,654,657],[643,6,6,657,663],[644,2,2,663,665],[645,3,3,665,668],[647,5,4,668,672],[648,5,5,672,677],[649,2,2,677,679],[651,3,3,679,682],[652,1,1,682,683],[653,3,3,683,686],[654,3,3,686,689],[655,2,2,689,691],[656,7,6,691,697]]],[20,6,5,697,702,[[659,1,1,697,698],[662,1,1,698,699],[664,2,2,699,701],[667,2,1,701,702]]],[21,2,2,702,704,[[673,1,1,702,703],[678,1,1,703,704]]],[22,25,25,704,729,[[680,1,1,704,705],[681,2,2,705,707],[682,1,1,707,708],[683,1,1,708,709],[684,1,1,709,710],[685,1,1,710,711],[687,2,2,711,713],[691,1,1,713,714],[692,1,1,714,715],[709,2,2,715,717],[710,1,1,717,718],[714,1,1,718,719],[719,1,1,719,720],[720,1,1,720,721],[722,1,1,721,722],[724,1,1,722,723],[728,1,1,723,724],[731,1,1,724,725],[733,1,1,725,726],[735,1,1,726,727],[737,1,1,727,728],[744,1,1,728,729]]],[23,58,54,729,783,[[746,1,1,729,730],[747,1,1,730,731],[748,1,1,731,732],[749,1,1,732,733],[751,1,1,733,734],[752,1,1,734,735],[753,1,1,735,736],[754,1,1,736,737],[755,1,1,737,738],[756,3,2,738,740],[757,1,1,740,741],[758,1,1,741,742],[759,2,1,742,743],[761,1,1,743,744],[764,2,2,744,746],[766,4,3,746,749],[767,3,3,749,752],[770,4,4,752,756],[773,2,2,756,758],[777,2,2,758,760],[778,3,3,760,763],[779,3,3,763,766],[780,2,2,766,768],[781,1,1,768,769],[782,3,2,769,771],[784,1,1,771,772],[785,1,1,772,773],[788,2,2,773,775],[793,3,3,775,778],[794,2,2,778,780],[795,3,3,780,783]]],[25,26,24,783,807,[[809,2,2,783,785],[810,6,5,785,790],[811,3,3,790,793],[815,1,1,793,794],[819,3,2,794,796],[821,2,2,796,798],[823,1,1,798,799],[833,1,1,799,800],[834,1,1,800,801],[841,2,2,801,803],[844,1,1,803,804],[845,1,1,804,805],[847,1,1,805,806],[848,1,1,806,807]]],[26,6,6,807,813,[[858,1,1,807,808],[859,3,3,808,811],[861,2,2,811,813]]],[27,5,5,813,818,[[864,1,1,813,814],[865,1,1,814,815],[867,1,1,815,816],[870,1,1,816,817],[872,1,1,817,818]]],[29,2,2,818,820,[[880,1,1,818,819],[883,1,1,819,820]]],[31,1,1,820,821,[[889,1,1,820,821]]],[32,4,4,821,825,[[894,2,2,821,823],[896,1,1,823,824],[897,1,1,824,825]]],[35,1,1,825,826,[[908,1,1,825,826]]],[36,1,1,826,827,[[909,1,1,826,827]]],[37,10,10,827,837,[[911,3,3,827,830],[912,1,1,830,831],[913,1,1,831,832],[914,1,1,832,833],[916,1,1,833,834],[917,1,1,834,835],[918,2,2,835,837]]],[38,3,3,837,840,[[926,2,2,837,839],[927,1,1,839,840]]]],[54,80,102,146,334,465,466,488,502,607,612,613,617,620,621,623,649,652,656,685,703,705,738,814,873,923,952,1005,1098,1100,1144,1151,1177,1206,1207,1228,1233,1239,1265,1282,1285,1293,1295,1296,1297,1301,1303,1304,1307,1314,1335,1337,1339,1341,1359,1380,1440,1479,1533,1555,1566,1574,1575,1697,1808,1809,1819,1820,1923,1963,1965,1966,1968,1976,2039,2084,2089,2091,2093,2097,2103,2105,2106,2110,2114,2118,2120,2123,2127,2129,2197,2394,2439,2461,2465,2467,2477,2481,2483,2484,2499,2520,2553,2554,2560,2567,2568,2572,3081,3090,3092,3096,3122,3186,3192,3222,3239,3244,3284,3321,3323,3328,3329,3330,3331,3332,3333,3335,3336,3338,3339,3345,3363,3364,3366,3373,3383,3456,3465,3479,3482,3495,3496,3498,3572,3584,3586,3590,3596,3598,3601,3608,3656,3660,3675,3798,3800,3802,3805,3807,3811,3812,3823,3825,3855,3978,4034,4062,4077,4123,4185,4188,4201,4211,4212,4216,4253,4298,4309,4349,4435,4479,4553,4554,4562,4570,4572,4650,4664,4681,4713,4714,4717,4736,4887,4908,4909,4923,4986,4995,5135,5142,5233,5248,5359,5366,5369,5376,5417,5421,5422,5432,5433,5434,5435,5462,5465,5469,5483,5486,5488,5492,5493,5494,5495,5496,5498,5499,5500,5510,5526,5530,5532,5536,5537,5541,5554,5556,5600,5641,5665,5697,5699,5783,5811,5845,5856,5880,5915,5947,5954,5969,5975,6019,6072,6078,6193,6276,6425,6446,6469,6470,6504,6533,6534,6535,6551,6583,6585,6596,6597,6619,6621,6670,6701,6702,6707,6708,6715,6740,6743,6744,6763,6767,6803,6809,6812,6829,6868,6886,6890,6892,6894,6895,6968,6981,6985,6986,6988,6991,7012,7030,7031,7033,7034,7039,7040,7041,7042,7044,7046,7047,7048,7049,7052,7055,7062,7065,7114,7123,7124,7126,7127,7128,7129,7150,7169,7175,7180,7188,7190,7197,7213,7215,7223,7233,7249,7253,7255,7256,7265,7267,7273,7307,7309,7310,7311,7313,7315,7391,7392,7397,7398,7399,7400,7401,7407,7408,7424,7440,7443,7458,7487,7499,7532,7536,7542,7544,7560,7611,7612,7613,7626,7628,7630,7642,7643,7644,7645,7651,7659,7699,7773,7774,7779,7786,7858,7863,7864,7871,7886,7920,7933,7939,7941,7956,7984,7995,8024,8052,8290,8291,8293,8320,8326,8346,8372,8391,8393,8394,8419,8431,8433,8434,8449,8452,8457,8488,8489,8490,8502,8504,8505,8519,8525,8533,8543,8555,8556,8566,8575,8576,8584,8585,8600,8660,8673,8674,8759,8766,8772,8774,8779,8869,8871,8872,8948,9010,9016,9023,9024,9056,9104,9136,9173,9175,9185,9188,9189,9190,9191,9192,9195,9196,9198,9205,9210,9213,9215,9335,9341,9428,9432,9436,9443,9445,9447,9450,9488,9497,9514,9516,9539,9540,9542,9543,9544,9545,9546,9601,9610,9612,9619,9624,9625,9628,9630,9632,9643,9645,9648,9654,9655,9661,9662,9667,9673,9676,9680,9683,9684,9689,9693,9706,9709,9712,9717,9724,9725,9726,9729,9731,9734,9735,9738,9767,9769,9814,9837,9840,9855,9890,9892,9902,9908,9945,10045,10055,10160,10175,10181,10182,10183,10695,10696,10841,10863,10932,10973,10997,11141,11146,11218,11224,11225,11287,11298,11304,11312,11342,11360,11388,11411,11416,11418,11549,11558,11575,11614,11663,11666,11708,11711,11713,11726,11843,11855,11856,11956,12098,12099,12219,12307,12395,12422,12494,12648,12660,12724,12773,12799,12800,12802,12804,12836,12838,12870,12872,12877,12894,12895,13083,13110,13120,13142,13193,13219,13397,13641,13694,13704,13706,13728,13789,13819,13933,13940,13979,14210,14263,14351,14400,14457,14487,14504,14518,14523,14830,14839,15215,15306,15417,15623,15771,15804,15808,16274,16361,16538,16551,16552,16567,16679,16700,16705,16721,16727,16733,16744,16749,16779,16784,16786,16789,16825,16828,16830,16842,16854,16865,16867,16868,16869,16885,16900,16913,16915,16925,16957,16959,16960,16971,16986,16992,17001,17012,17013,17039,17044,17084,17108,17113,17131,17153,17160,17162,17177,17186,17190,17207,17216,17230,17233,17237,17244,17246,17251,17323,17385,17419,17420,17490,17579,17647,17694,17709,17713,17734,17754,17774,17803,17848,17849,17920,17944,18257,18258,18261,18336,18479,18493,18546,18597,18664,18714,18747,18766,18816,18925,18971,19003,19056,19059,19124,19159,19187,19224,19229,19260,19264,19277,19302,19325,19367,19437,19438,19462,19482,19484,19493,19511,19518,19575,19583,19588,19592,19661,19667,19792,19793,19810,19816,19818,19827,19838,19842,19845,19861,19884,19899,19919,19956,19961,20017,20036,20132,20145,20160,20206,20208,20218,20234,20255,20615,20616,20623,20624,20625,20628,20633,20635,20636,20639,20739,20854,20857,20902,20903,21006,21258,21282,21480,21481,21578,21601,21673,21682,22009,22020,22026,22034,22087,22088,22131,22137,22176,22215,22249,22386,22442,22536,22597,22606,22624,22640,22826,22849,22886,22888,22899,22900,22922,22923,22959,22971,22980,22992,23113,23115,23137]]],["man's",[37,37,[[0,7,7,0,7,[[8,1,1,0,1],[41,3,3,1,4],[42,1,1,4,5],[43,2,2,5,7]]],[1,2,2,7,9,[[61,1,1,7,8],[70,1,1,8,9]]],[2,3,3,9,12,[[96,1,1,9,10],[104,1,1,10,11],[109,1,1,11,12]]],[3,2,2,12,14,[[133,2,2,12,14]]],[4,1,1,14,15,[[176,1,1,14,15]]],[6,2,2,15,17,[[217,1,1,15,16],[229,1,1,16,17]]],[7,1,1,17,18,[[233,1,1,17,18]]],[8,1,1,18,19,[[249,1,1,18,19]]],[9,2,2,19,21,[[283,2,2,19,21]]],[10,1,1,21,22,[[308,1,1,21,22]]],[11,2,2,22,24,[[324,1,1,22,23],[335,1,1,23,24]]],[17,1,1,24,25,[[467,1,1,24,25]]],[19,6,6,25,31,[[640,1,1,25,26],[643,1,1,26,27],[645,2,2,27,29],[646,1,1,29,30],[656,1,1,30,31]]],[23,2,2,31,33,[[747,1,1,31,32],[767,1,1,32,33]]],[25,2,2,33,35,[[839,1,1,33,34],[841,1,1,34,35]]],[31,1,1,35,36,[[889,1,1,35,36]]],[32,1,1,36,37,[[899,1,1,36,37]]]],[210,1263,1277,1287,1311,1325,1350,1860,2112,2887,3184,3328,4246,4249,5527,6716,7050,7168,7528,8467,8474,9385,9854,10173,13649,16755,16847,16905,16921,16946,17250,19003,19520,21446,21482,22545,22670]]],["men",[671,607,[[0,44,42,0,42,[[5,1,1,0,1],[11,1,1,1,2],[12,1,1,2,3],[13,1,1,3,4],[16,2,2,4,6],[17,3,3,6,9],[18,6,6,9,15],[19,1,1,15,16],[23,3,3,16,19],[25,2,1,19,20],[28,1,1,20,21],[31,2,2,21,23],[32,1,1,23,24],[33,4,4,24,28],[37,2,2,28,30],[38,1,1,30,31],[42,7,6,31,37],[43,2,2,37,39],[45,1,1,39,40],[46,2,2,40,42]]],[1,13,12,42,54,[[51,1,1,42,43],[53,1,1,43,44],[54,1,1,44,45],[59,1,1,45,46],[66,1,1,46,47],[67,3,2,47,49],[70,2,2,49,51],[71,1,1,51,52],[81,1,1,52,53],[84,1,1,53,54]]],[2,1,1,54,55,[[107,1,1,54,55]]],[3,35,35,55,90,[[117,3,3,55,58],[125,2,2,58,60],[127,3,3,60,63],[129,5,5,63,68],[130,4,4,68,72],[132,5,5,72,77],[138,3,3,77,80],[142,1,1,80,81],[147,5,5,81,86],[148,2,2,86,88],[150,2,2,88,90]]],[4,17,17,90,107,[[153,5,5,90,95],[154,2,2,95,97],[156,1,1,97,98],[165,1,1,98,99],[171,1,1,99,100],[173,1,1,100,101],[174,1,1,101,102],[177,2,2,102,104],[179,1,1,104,105],[181,1,1,105,106],[183,1,1,106,107]]],[5,43,37,107,144,[[188,12,10,107,117],[189,1,1,117,118],[190,2,2,118,120],[191,2,2,120,122],[192,2,2,122,124],[193,7,4,124,128],[194,6,6,128,134],[195,3,3,134,137],[196,5,4,137,141],[204,3,3,141,144]]],[6,99,82,144,226,[[211,1,1,144,145],[213,3,2,145,147],[214,3,3,147,150],[216,4,3,150,153],[217,7,7,153,160],[218,14,12,160,172],[219,7,6,172,178],[221,1,1,178,179],[222,4,3,179,182],[224,2,2,182,184],[225,4,4,184,188],[226,2,1,188,189],[228,9,7,189,196],[229,3,3,196,199],[230,33,25,199,224],[231,2,2,224,226]]],[7,1,1,226,227,[[235,1,1,226,227]]],[8,91,82,227,309,[[237,2,2,227,229],[239,3,2,229,231],[240,3,3,231,234],[241,5,4,234,238],[242,2,2,238,240],[243,1,1,240,241],[245,2,2,241,243],[246,8,7,243,250],[248,2,2,250,252],[249,6,6,252,258],[250,1,1,258,259],[252,8,8,259,267],[253,3,2,267,269],[257,2,2,269,271],[258,10,8,271,279],[259,6,5,279,284],[260,5,4,284,288],[261,1,1,288,289],[262,3,3,289,292],[263,2,2,292,294],[264,3,3,294,297],[265,8,8,297,305],[266,5,4,305,309]]],[9,66,55,309,364,[[267,1,1,309,310],[268,9,8,310,318],[269,3,2,318,320],[270,2,2,320,322],[271,2,2,322,324],[273,1,1,324,325],[274,1,1,325,326],[276,3,2,326,328],[277,3,3,328,331],[278,1,1,331,332],[279,1,1,332,333],[281,6,6,333,339],[282,3,3,339,342],[283,5,5,342,347],[284,1,1,347,348],[285,13,7,348,355],[286,3,3,355,358],[287,2,2,358,360],[289,2,2,360,362],[290,4,2,362,364]]],[10,20,19,364,383,[[291,2,2,364,366],[292,1,1,366,367],[295,1,1,367,368],[298,1,1,368,369],[299,1,1,369,370],[300,1,1,370,371],[301,2,2,371,373],[303,1,1,373,374],[308,2,2,374,376],[310,3,3,376,379],[311,4,3,379,382],[312,1,1,382,383]]],[11,32,26,383,409,[[314,4,4,383,387],[315,1,1,387,388],[316,2,2,388,390],[317,1,1,390,391],[319,1,1,391,392],[322,4,3,392,395],[323,1,1,395,396],[324,1,1,396,397],[327,1,1,397,398],[329,3,1,398,399],[330,1,1,399,400],[332,1,1,400,401],[335,2,2,401,403],[336,1,1,403,404],[337,8,5,404,409]]],[12,23,20,409,429,[[341,3,3,409,412],[342,3,2,412,414],[344,2,2,414,416],[345,1,1,416,417],[346,1,1,417,418],[347,3,3,418,421],[348,1,1,421,422],[349,2,2,422,424],[355,1,1,424,425],[356,2,1,425,426],[358,3,2,426,428],[363,1,1,428,429]]],[13,18,16,429,445,[[368,1,1,429,430],[371,1,1,430,431],[374,1,1,431,432],[375,1,1,432,433],[379,6,4,433,437],[383,1,1,437,438],[384,1,1,438,439],[389,1,1,439,440],[390,1,1,440,441],[394,1,1,441,442],[397,1,1,442,443],[400,2,2,443,445]]],[14,9,9,445,454,[[403,1,1,445,446],[404,5,5,446,451],[412,3,3,451,454]]],[15,18,18,454,472,[[413,1,1,454,455],[414,1,1,455,456],[415,3,3,456,459],[416,1,1,459,460],[419,9,9,460,469],[420,1,1,469,470],[423,2,2,470,472]]],[16,3,3,472,475,[[434,3,3,472,475]]],[17,12,12,475,487,[[439,1,1,475,476],[467,2,2,476,478],[468,3,3,478,481],[469,4,4,481,485],[471,1,1,485,486],[472,1,1,486,487]]],[18,6,6,487,493,[[481,1,1,487,488],[503,1,1,488,489],[532,1,1,489,490],[553,1,1,490,491],[616,1,1,491,492],[618,1,1,492,493]]],[19,5,5,493,498,[[635,1,1,493,494],[651,1,1,494,495],[652,1,1,495,496],[655,1,1,496,497],[656,1,1,497,498]]],[20,2,2,498,500,[[667,1,1,498,499],[670,1,1,499,500]]],[22,14,14,500,514,[[680,2,2,500,502],[683,3,3,502,505],[685,1,1,505,506],[699,1,1,506,507],[706,1,1,507,508],[707,1,1,508,509],[714,1,1,509,510],[723,1,1,510,511],[731,1,1,511,512],[735,1,1,512,513],[744,1,1,513,514]]],[23,56,52,514,566,[[748,2,2,514,516],[749,1,1,516,517],[750,1,1,517,518],[755,4,4,518,522],[761,1,1,522,523],[762,2,2,523,525],[763,1,1,525,526],[770,2,1,526,527],[776,1,1,527,528],[778,1,1,528,529],[779,1,1,529,530],[780,1,1,530,531],[781,1,1,531,532],[782,5,5,532,537],[783,2,2,537,539],[784,4,3,539,542],[785,10,10,542,552],[786,1,1,552,553],[787,2,2,553,555],[788,3,3,555,558],[792,3,3,558,561],[793,1,1,561,562],[794,1,1,562,563],[795,1,1,563,564],[796,4,2,564,566]]],[24,1,1,566,567,[[799,1,1,566,567]]],[25,25,25,567,592,[[809,2,2,567,569],[810,3,3,569,572],[812,3,3,572,575],[813,1,1,575,576],[815,4,4,576,580],[822,1,1,580,581],[823,1,1,581,582],[824,4,4,582,586],[825,2,2,586,588],[828,2,2,588,590],[840,2,2,590,592]]],[26,2,2,592,594,[[858,1,1,592,593],[859,1,1,593,594]]],[28,2,2,594,596,[[877,1,1,594,595],[878,1,1,595,596]]],[29,1,1,596,597,[[884,1,1,596,597]]],[30,2,1,597,598,[[888,2,1,597,598]]],[31,4,3,598,601,[[889,4,3,598,601]]],[32,1,1,601,602,[[899,1,1,601,602]]],[33,1,1,602,603,[[901,1,1,602,603]]],[35,1,1,603,604,[[906,1,1,603,604]]],[37,3,3,604,607,[[913,1,1,604,605],[917,1,1,605,606],[918,1,1,606,607]]]],[141,318,331,360,420,424,426,440,446,462,465,467,468,469,473,503,604,645,650,699,817,934,956,961,987,1000,1001,1002,1140,1141,1163,1305,1306,1307,1308,1314,1323,1327,1328,1418,1422,1426,1567,1620,1641,1784,1992,2020,2024,2095,2099,2144,2466,2553,3278,3609,3621,3648,3971,3972,4040,4048,4050,4077,4078,4091,4106,4107,4130,4144,4145,4146,4196,4208,4220,4224,4229,4384,4395,4410,4499,4685,4692,4706,4713,4717,4729,4732,4833,4835,4905,4907,4914,4915,4927,4952,4954,5007,5285,5423,5468,5491,5548,5558,5599,5689,5740,5870,5871,5872,5873,5874,5876,5878,5883,5886,5892,5905,5912,5914,5938,5940,5952,5971,5978,5979,5980,5981,6005,6014,6016,6022,6023,6027,6043,6044,6051,6066,6070,6082,6088,6297,6301,6302,6513,6597,6599,6605,6609,6613,6681,6682,6684,6700,6701,6702,6710,6713,6717,6718,6720,6723,6724,6727,6728,6729,6733,6734,6735,6736,6737,6741,6782,6790,6803,6805,6809,6811,6832,6870,6873,6874,6927,6928,6939,6940,6944,6945,6976,6995,7000,7004,7007,7009,7010,7015,7040,7046,7049,7064,7065,7066,7067,7069,7070,7071,7074,7075,7076,7079,7085,7087,7088,7089,7090,7092,7093,7095,7096,7098,7099,7100,7101,7102,7103,7112,7192,7257,7266,7299,7306,7326,7328,7331,7341,7346,7350,7351,7353,7363,7391,7420,7421,7446,7450,7453,7454,7455,7457,7460,7491,7500,7510,7516,7520,7522,7530,7532,7564,7620,7630,7637,7642,7643,7644,7646,7670,7681,7703,7789,7793,7813,7815,7818,7822,7823,7834,7835,7836,7841,7842,7843,7845,7861,7872,7874,7876,7881,7907,7932,7933,7938,7943,7950,7969,7971,7978,7979,7981,7987,7988,7995,7999,8000,8009,8010,8015,8016,8021,8033,8052,8053,8054,8066,8078,8079,8080,8081,8101,8120,8122,8131,8138,8153,8194,8214,8245,8246,8275,8276,8282,8287,8326,8390,8395,8400,8402,8407,8411,8439,8441,8444,8450,8457,8461,8463,8473,8506,8525,8527,8528,8539,8552,8553,8554,8556,8558,8561,8586,8597,8662,8670,8701,8707,8722,8726,8802,8891,8987,9073,9087,9126,9132,9209,9354,9363,9425,9438,9441,9461,9462,9464,9486,9558,9567,9568,9570,9602,9643,9646,9671,9710,9799,9807,9817,9838,9865,9950,10013,10051,10112,10167,10182,10218,10226,10241,10245,10246,10247,10397,10407,10427,10446,10452,10556,10575,10615,10624,10660,10666,10671,10692,10728,10758,10895,10912,10939,10948,11085,11213,11271,11355,11371,11456,11460,11468,11470,11536,11547,11664,11701,11779,11873,11945,11963,12020,12029,12049,12050,12054,12055,12253,12261,12269,12298,12319,12329,12334,12349,12382,12427,12446,12447,12448,12449,12450,12451,12452,12453,12496,12590,12594,12840,12846,12849,12943,13629,13633,13665,13666,13677,13691,13693,13717,13719,13760,13776,13967,14282,14755,15086,16258,16280,16606,17080,17114,17201,17232,17489,17526,17696,17702,17742,17746,17761,17795,18044,18178,18206,18342,18575,18714,18766,18946,19030,19031,19084,19112,19228,19235,19247,19249,19382,19395,19405,19417,19594,19763,19819,19836,19873,19884,19899,19904,19905,19906,19911,19927,19940,19948,19949,19950,19958,19959,19960,19962,19964,19965,19966,19969,19972,19973,19992,19999,20006,20025,20029,20037,20094,20111,20116,20153,20196,20244,20283,20301,20387,20615,20620,20624,20626,20628,20656,20657,20670,20696,20734,20745,20747,20749,20975,20985,21021,21047,21049,21052,21073,21078,21131,21148,21462,21468,21995,22022,22318,22352,22459,22517,22541,22544,22547,22670,22702,22799,22920,22964,22999]]],["men's",[2,2,[[0,2,2,0,2,[[23,1,1,0,1],[43,1,1,1,2]]]],[623,1325]]],["one",[174,162,[[0,11,11,0,11,[[9,1,1,0,1],[10,2,2,1,3],[12,1,1,3,4],[25,1,1,4,5],[30,1,1,5,6],[33,1,1,6,7],[36,1,1,7,8],[41,2,2,8,10],[42,1,1,10,11]]],[1,8,8,11,19,[[65,1,1,11,12],[67,1,1,12,13],[70,1,1,13,14],[74,1,1,14,15],[77,1,1,15,16],[84,1,1,16,17],[86,1,1,17,18],[88,1,1,18,19]]],[2,5,5,19,24,[[96,1,1,19,20],[108,1,1,20,21],[114,2,2,21,23],[115,1,1,23,24]]],[3,9,9,24,33,[[117,1,1,24,25],[118,1,1,25,26],[130,1,1,26,27],[141,2,2,27,29],[142,1,1,29,30],[151,1,1,30,31],[152,2,2,31,33]]],[4,3,3,33,36,[[153,1,1,33,34],[177,1,1,34,35],[185,1,1,35,36]]],[5,1,1,36,37,[[208,1,1,36,37]]],[6,3,3,37,40,[[216,1,1,37,38],[220,1,1,38,39],[226,1,1,39,40]]],[7,1,1,40,41,[[234,1,1,40,41]]],[8,8,6,41,47,[[245,2,2,41,43],[249,1,1,43,44],[255,2,2,44,46],[257,3,1,46,47]]],[9,7,6,47,53,[[268,2,2,47,49],[272,2,1,49,50],[284,1,1,50,51],[285,1,1,51,52],[286,1,1,52,53]]],[10,3,3,53,56,[[297,1,1,53,54],[308,1,1,54,55],[310,1,1,55,56]]],[11,8,7,56,63,[[315,1,1,56,57],[319,3,3,57,60],[324,1,1,60,61],[330,2,1,61,62],[335,1,1,62,63]]],[12,1,1,63,64,[[353,1,1,63,64]]],[13,2,2,64,66,[[372,1,1,64,65],[386,1,1,65,66]]],[14,1,1,66,67,[[404,1,1,66,67]]],[15,15,14,67,81,[[415,1,1,67,68],[416,5,5,68,73],[417,1,1,73,74],[419,3,2,74,76],[420,1,1,76,77],[423,2,2,77,79],[425,2,2,79,81]]],[16,3,3,81,84,[[431,1,1,81,82],[434,2,2,82,84]]],[17,5,5,84,89,[[436,1,1,84,85],[437,2,2,85,87],[476,1,1,87,88],[477,1,1,88,89]]],[18,3,3,89,92,[[489,1,1,89,90],[526,1,1,90,91],[541,1,1,91,92]]],[19,2,2,92,94,[[633,1,1,92,93],[647,1,1,93,94]]],[21,1,1,94,95,[[678,1,1,94,95]]],[22,15,11,95,106,[[681,2,1,95,96],[691,2,2,96,98],[692,1,1,98,99],[697,2,1,99,100],[714,3,1,100,101],[718,1,1,101,102],[725,1,1,102,103],[731,1,1,103,104],[734,1,1,104,105],[744,1,1,105,106]]],[23,28,26,106,132,[[745,1,1,106,107],[749,1,1,107,108],[750,1,1,108,109],[753,2,2,109,111],[755,1,1,111,112],[757,1,1,112,113],[760,1,1,113,114],[762,2,2,114,116],[763,1,1,116,117],[766,1,1,117,118],[767,3,2,118,120],[769,2,2,120,122],[775,1,1,122,123],[776,1,1,123,124],[778,2,2,124,126],[780,2,2,126,128],[782,1,1,128,129],[790,1,1,129,130],[794,2,1,130,131],[795,1,1,131,132]]],[25,16,15,132,147,[[802,5,4,132,136],[805,1,1,136,137],[808,1,1,137,138],[811,1,1,138,139],[819,1,1,139,140],[821,1,1,140,141],[823,2,2,141,143],[825,1,1,143,144],[834,2,2,144,146],[848,1,1,146,147]]],[28,2,2,147,149,[[877,2,2,147,149]]],[30,1,1,149,150,[[888,1,1,149,150]]],[31,2,2,150,152,[[889,1,1,150,151],[891,1,1,151,152]]],[32,1,1,152,153,[[896,1,1,152,153]]],[35,1,1,153,154,[[907,1,1,153,154]]],[36,2,2,154,156,[[910,2,2,154,156]]],[37,5,5,156,161,[[918,1,1,156,157],[920,1,1,157,158],[921,1,1,158,159],[923,1,1,159,160],[924,1,1,160,161]]],[38,1,1,161,162,[[927,1,1,161,162]]]],[239,269,273,329,723,922,994,1102,1273,1280,1323,1962,2015,2095,2215,2314,2552,2613,2678,2889,3292,3486,3515,3561,3608,3692,4112,4476,4477,4543,4853,4886,4888,4927,5558,5818,6440,6683,6829,6954,7186,7429,7430,7536,7745,7771,7789,8065,8076,8176,8495,8518,8565,8970,9381,9428,9599,9710,9713,9716,9859,10055,10200,10823,11311,11610,12028,12355,12374,12377,12378,12381,12382,12389,12423,12426,12509,12591,12608,12681,12701,12802,12853,12856,12873,12902,12903,13905,13933,14068,14664,14856,16568,16960,17651,17712,17914,17920,17946,18006,18346,18446,18614,18717,18764,18935,18961,19066,19092,19179,19180,19234,19280,19348,19395,19396,19416,19461,19514,19519,19539,19560,19721,19750,19811,19818,19849,19858,19902,20061,20182,20221,20473,20475,20476,20487,20546,20593,20655,20879,20934,20982,20987,21079,21300,21310,21693,22318,22319,22519,22538,22566,22625,22816,22867,22877,22986,23017,23034,23063,23081,23136]]],["people",[2,2,[[9,1,1,0,1,[[286,1,1,0,1]]],[31,1,1,1,2,[[891,1,1,1,2]]]],[8567,22563]]],["person",[4,4,[[3,1,1,0,1,[[135,1,1,0,1]]],[8,2,2,1,3,[[244,1,1,1,2],[251,1,1,2,3]]],[9,1,1,3,4,[[270,1,1,3,4]]]],[4307,7393,7613,8131]]],["persons",[10,10,[[6,5,5,0,5,[[219,4,4,0,4],[230,1,1,4,5]]],[8,2,2,5,7,[[244,1,1,5,6],[257,1,1,6,7]]],[11,2,2,7,9,[[322,2,2,7,9]]],[35,1,1,9,10,[[908,1,1,9,10]]]],[6756,6758,6759,6772,7093,7413,7805,9799,9800,22824]]],["servants",[1,1,[[8,1,1,0,1,[[259,1,1,0,1]]]],[7846]]],["some",[3,3,[[1,1,1,0,1,[[65,1,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]],[15,1,1,2,3,[[424,1,1,2,3]]]],[1967,4667,12668]]],["them",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18463]]],["they",[2,2,[[22,2,2,0,2,[[719,2,2,0,2]]]],[18462,18463]]],["trade",[2,2,[[0,2,2,0,2,[[45,2,2,0,2]]]],[1418,1420]]],["worthy",[1,1,[[10,1,1,0,1,[[292,1,1,0,1]]]],[8796]]]]},{"k":"H377","v":[["men",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18594]]]]},{"k":"H378","v":[["Ishbosheth",[11,10,[[9,11,10,0,10,[[268,4,4,0,4],[269,3,3,4,7],[270,4,3,7,10]]]],[8057,8059,8061,8064,8089,8095,8096,8125,8128,8132]]]]},{"k":"H379","v":[["Ishod",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10553]]]]},{"k":"H380","v":[["*",[5,5,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,1,1,1,2,[[494,1,1,1,2]]],[19,3,3,2,5,[[634,2,2,2,4],[647,1,1,4,5]]]],[5768,14111,16577,16584,16974]]],["+",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14111]]],["apple",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]]],[5768,16577]]],["black",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16584]]],["obscure",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16974]]]]},{"k":"H381","v":[]},{"k":"H382","v":[["Ishtob",[2,2,[[9,2,2,0,2,[[276,2,2,0,2]]]],[8246,8248]]]]},{"k":"H383","v":[["*",[17,16,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,15,14,2,16,[[851,6,5,2,7],[852,7,7,7,14],[853,1,1,14,15],[854,1,1,15,16]]]],[12126,12151,21768,21769,21784,21786,21788,21819,21821,21822,21824,21825,21832,21836,21872,21885]]],["Art",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21784]]],["are",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21819]]],["be",[3,3,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,2,2,1,3,[[852,2,2,1,3]]]],[12151,21822,21824]]],["can",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21872]]],["do",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21821]]],["have",[3,3,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,2,2,1,3,[[851,1,1,1,2],[852,1,1,2,3]]]],[12126,21788,21832]]],["is",[6,5,[[26,6,5,0,5,[[851,4,3,0,3],[852,1,1,3,4],[854,1,1,4,5]]]],[21768,21769,21786,21836,21885]]],["will",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21825]]]]},{"k":"H384","v":[["Ithiel",[3,2,[[15,1,1,0,1,[[423,1,1,0,1]]],[19,2,1,1,2,[[657,2,1,1,2]]]],[12595,17252]]]]},{"k":"H385","v":[["Ithamar",[21,20,[[1,3,3,0,3,[[55,1,1,0,1],[77,1,1,1,2],[87,1,1,2,3]]],[2,3,3,3,6,[[99,3,3,3,6]]],[3,6,6,6,12,[[119,2,2,6,8],[120,2,2,8,10],[123,1,1,10,11],[142,1,1,11,12]]],[12,8,7,12,19,[[343,1,1,12,13],[361,7,6,13,19]]],[14,1,1,19,20,[[410,1,1,19,20]]]],[1678,2294,2654,2983,2989,2993,3694,3696,3771,3776,3858,4549,10457,11016,11017,11018,11019,11020,11021,12203]]]]},{"k":"H386","v":[["*",[13,13,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[3,1,1,2,3,[[140,1,1,2,3]]],[4,1,1,3,4,[[173,1,1,3,4]]],[17,2,2,4,6,[[447,1,1,4,5],[468,1,1,5,6]]],[18,1,1,6,7,[[551,1,1,6,7]]],[19,1,1,7,8,[[640,1,1,7,8]]],[23,3,3,8,11,[[749,1,1,8,9],[793,1,1,9,10],[794,1,1,10,11]]],[29,1,1,11,12,[[883,1,1,11,12]]],[32,1,1,12,13,[[898,1,1,12,13]]]],[1497,1916,4467,5451,13147,13669,15063,16762,19073,20146,20210,22447,22650]]],["Strong",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4467]]],["hard",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16762]]],["mighty",[4,4,[[17,1,1,0,1,[[447,1,1,0,1]]],[18,1,1,1,2,[[551,1,1,1,2]]],[23,1,1,2,3,[[749,1,1,2,3]]],[29,1,1,3,4,[[883,1,1,3,4]]]],[13147,15063,19073,22447]]],["rough",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5451]]],["strength",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]]],[1497,1916]]],["strong",[4,4,[[17,1,1,0,1,[[468,1,1,0,1]]],[23,2,2,1,3,[[793,1,1,1,2],[794,1,1,2,3]]],[32,1,1,3,4,[[898,1,1,3,4]]]],[13669,20146,20210,22650]]]]},{"k":"H387","v":[["*",[7,7,[[10,1,1,0,1,[[294,1,1,0,1]]],[12,6,6,1,7,[[339,2,2,1,3],[343,2,2,3,5],[352,2,2,5,7]]]],[8875,10312,10314,10496,10498,10808,10810]]],["+",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8875]]],["Ethan",[6,6,[[12,6,6,0,6,[[339,2,2,0,2],[343,2,2,2,4],[352,2,2,4,6]]]],[10312,10314,10496,10498,10808,10810]]]]},{"k":"H388","v":[["Ethanim",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[8987]]]]},{"k":"H389","v":[["*",[160,156,[[0,14,14,0,14,[[6,1,1,0,1],[8,2,2,1,3],[17,1,1,3,4],[19,1,1,4,5],[22,1,1,5,6],[25,1,1,6,7],[26,2,2,7,9],[28,1,1,9,10],[33,3,3,10,13],[43,1,1,13,14]]],[1,5,5,14,19,[[59,1,1,14,15],[61,2,2,15,17],[70,1,1,17,18],[80,1,1,18,19]]],[2,8,8,19,27,[[100,3,3,19,22],[110,1,1,22,23],[112,2,2,23,25],[116,2,2,25,27]]],[3,11,11,27,38,[[117,1,1,27,28],[128,1,1,28,29],[130,1,1,29,30],[134,3,3,30,33],[138,1,1,33,34],[142,1,1,34,35],[147,2,2,35,37],[152,1,1,37,38]]],[4,5,5,38,43,[[164,1,1,38,39],[166,1,1,39,40],[168,1,1,40,41],[170,1,1,41,42],[180,1,1,42,43]]],[5,2,2,43,45,[[189,1,1,43,44],[208,1,1,44,45]]],[6,6,6,45,51,[[213,1,1,45,46],[216,1,1,46,47],[217,1,1,47,48],[220,1,1,48,49],[226,1,1,49,50],[230,1,1,50,51]]],[8,11,11,51,62,[[236,1,1,51,52],[243,1,1,52,53],[247,2,2,53,55],[251,1,1,55,56],[253,2,2,56,58],[255,1,1,58,59],[256,1,1,59,60],[260,1,1,60,61],[264,1,1,61,62]]],[9,3,3,62,65,[[268,1,1,62,63],[269,1,1,63,64],[289,1,1,64,65]]],[10,6,6,65,71,[[299,1,1,65,66],[301,2,2,66,68],[307,1,1,68,69],[312,2,2,69,71]]],[11,9,9,71,80,[[317,1,1,71,72],[324,1,1,72,73],[325,1,1,73,74],[330,1,1,74,75],[334,1,1,75,76],[335,3,3,76,79],[336,1,1,79,80]]],[12,1,1,80,81,[[359,1,1,80,81]]],[13,2,2,81,83,[[386,1,1,81,82],[396,1,1,82,83]]],[14,1,1,83,84,[[412,1,1,83,84]]],[17,11,11,84,95,[[437,1,1,84,85],[448,2,2,85,87],[449,1,1,87,88],[451,1,1,88,89],[453,1,1,89,90],[454,1,1,90,91],[458,1,1,91,92],[465,1,1,92,93],[468,1,1,93,94],[470,1,1,94,95]]],[18,24,22,95,117,[[500,1,1,95,96],[514,1,1,96,97],[516,4,3,97,100],[526,1,1,100,101],[535,2,1,101,102],[539,6,6,102,108],[545,2,2,108,110],[550,3,3,110,113],[552,1,1,113,114],[562,1,1,114,115],[616,1,1,115,116],[617,1,1,116,117]]],[19,6,5,117,122,[[638,1,1,117,118],[641,1,1,118,119],[644,1,1,119,120],[648,2,1,120,121],[649,1,1,121,122]]],[22,10,10,122,132,[[692,1,1,122,123],[694,1,1,123,124],[697,1,1,124,125],[712,2,2,125,127],[714,1,1,127,128],[721,1,1,128,129],[723,2,2,129,131],[741,1,1,131,132]]],[23,15,14,132,146,[[746,1,1,132,133],[747,1,1,133,134],[749,2,2,134,136],[754,2,2,136,138],[756,1,1,138,139],[760,1,1,139,140],[770,2,2,140,142],[772,1,1,142,143],[774,1,1,143,144],[776,2,1,144,145],[778,1,1,145,146]]],[24,2,2,146,148,[[798,1,1,146,147],[799,1,1,147,148]]],[25,1,1,148,149,[[847,1,1,148,149]]],[27,3,3,149,152,[[865,1,1,149,150],[873,2,2,150,152]]],[31,1,1,152,153,[[890,1,1,152,153]]],[35,2,2,153,155,[[906,1,1,153,154],[908,1,1,154,155]]],[37,1,1,155,156,[[911,1,1,155,156]]]],[182,209,210,456,507,584,701,740,757,809,995,1002,1003,1352,1794,1831,1832,2098,2433,3001,3018,3033,3368,3429,3441,3596,3598,3653,4061,4117,4260,4272,4274,4395,4544,4686,4687,4885,5262,5297,5357,5404,5640,5897,6445,6592,6693,6713,6826,6977,7093,7235,7378,7480,7484,7601,7684,7693,7769,7776,7882,7976,8059,8094,8663,9075,9120,9147,9330,9512,9523,9654,9863,9877,10044,10152,10174,10191,10200,10205,10976,11620,11838,12267,12897,13168,13173,13203,13245,13297,13310,13425,13581,13658,13733,14241,14458,14517,14518,14523,14663,14790,14828,14829,14831,14832,14833,14836,14906,14921,15021,15033,15038,15079,15280,16250,16276,16711,16795,16884,16989,17031,17943,17976,18015,18317,18318,18335,18529,18575,18585,18874,19000,19015,19062,19063,19220,19225,19250,19355,19587,19596,19625,19678,19761,19805,20348,20357,21672,22137,22260,22263,22552,22805,22827,22884]]],["+",[10,10,[[0,1,1,0,1,[[8,1,1,0,1]]],[1,1,1,1,2,[[80,1,1,1,2]]],[2,2,2,2,4,[[100,2,2,2,4]]],[3,4,4,4,8,[[134,1,1,4,5],[138,1,1,5,6],[142,1,1,6,7],[147,1,1,7,8]]],[4,1,1,8,9,[[166,1,1,8,9]]],[11,1,1,9,10,[[317,1,1,9,10]]]],[210,2433,3001,3018,4272,4395,4544,4686,5297,9654]]],["Also",[2,2,[[2,2,2,0,2,[[112,2,2,0,2]]]],[3429,3441]]],["But",[13,13,[[0,3,3,0,3,[[8,1,1,0,1],[22,1,1,1,2],[33,1,1,2,3]]],[3,1,1,3,4,[[134,1,1,3,4]]],[4,1,1,4,5,[[170,1,1,4,5]]],[9,1,1,5,6,[[268,1,1,5,6]]],[10,1,1,6,7,[[299,1,1,6,7]]],[17,2,2,7,9,[[449,1,1,7,8],[451,1,1,8,9]]],[18,2,2,9,11,[[526,1,1,9,10],[545,1,1,10,11]]],[23,1,1,11,12,[[770,1,1,11,12]]],[37,1,1,12,13,[[911,1,1,12,13]]]],[209,584,995,4274,5404,8059,9075,13203,13245,14663,14921,19587,22884]]],["Even",[1,1,[[4,1,1,0,1,[[164,1,1,0,1]]]],[5262]]],["Howbeit",[4,4,[[11,2,2,0,2,[[324,1,1,0,1],[334,1,1,1,2]]],[13,1,1,2,3,[[386,1,1,2,3]]],[17,1,1,3,4,[[465,1,1,3,4]]]],[9863,10152,11620,13581]]],["Nevertheless",[6,6,[[2,1,1,0,1,[[100,1,1,0,1]]],[11,2,2,1,3,[[325,1,1,1,2],[335,1,1,2,3]]],[13,1,1,3,4,[[396,1,1,3,4]]],[23,2,2,4,6,[[770,1,1,4,5],[772,1,1,5,6]]]],[3033,9877,10174,11838,19596,19625]]],["Notwithstanding",[5,5,[[1,1,1,0,1,[[70,1,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]],[5,1,1,2,3,[[208,1,1,2,3]]],[10,1,1,3,4,[[301,1,1,3,4]]],[11,1,1,4,5,[[335,1,1,4,5]]]],[2098,3598,6445,9120,10191]]],["Only",[10,10,[[0,1,1,0,1,[[33,1,1,0,1]]],[2,2,2,1,3,[[110,1,1,1,2],[116,1,1,2,3]]],[3,2,2,3,5,[[117,1,1,3,4],[130,1,1,4,5]]],[8,1,1,5,6,[[247,1,1,5,6]]],[12,1,1,6,7,[[359,1,1,6,7]]],[14,1,1,7,8,[[412,1,1,7,8]]],[17,1,1,8,9,[[448,1,1,8,9]]],[23,1,1,9,10,[[747,1,1,9,10]]]],[1002,3368,3596,3653,4117,7484,10976,12267,13173,19015]]],["Surely",[26,26,[[0,2,2,0,2,[[28,1,1,0,1],[43,1,1,1,2]]],[6,2,2,2,4,[[213,1,1,2,3],[230,1,1,3,4]]],[8,2,2,4,6,[[251,1,1,4,5],[260,1,1,5,6]]],[10,1,1,6,7,[[312,1,1,6,7]]],[11,1,1,7,8,[[336,1,1,7,8]]],[17,3,3,8,11,[[453,1,1,8,9],[468,1,1,9,10],[470,1,1,10,11]]],[18,7,7,11,18,[[500,1,1,11,12],[516,1,1,12,13],[539,1,1,13,14],[550,1,1,14,15],[562,1,1,15,16],[616,1,1,16,17],[617,1,1,17,18]]],[22,4,4,18,22,[[697,1,1,18,19],[723,2,2,19,21],[741,1,1,21,22]]],[23,2,2,22,24,[[749,1,1,22,23],[760,1,1,23,24]]],[24,1,1,24,25,[[799,1,1,24,25]]],[35,1,1,25,26,[[908,1,1,25,26]]]],[809,1352,6592,7093,7601,7882,9512,10205,13297,13658,13733,14241,14518,14836,15038,15280,16250,16276,18015,18575,18585,18874,19062,19355,20357,22827]]],["Truly",[3,3,[[18,2,2,0,2,[[539,1,1,0,1],[550,1,1,1,2]]],[23,1,1,2,3,[[754,1,1,2,3]]]],[14828,15021,19220]]],["Verily",[2,2,[[18,2,2,0,2,[[535,1,1,0,1],[550,1,1,1,2]]]],[14790,15033]]],["Yet",[5,5,[[5,1,1,0,1,[[189,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]],[23,1,1,2,3,[[778,1,1,2,3]]],[27,2,2,3,5,[[865,1,1,3,4],[873,1,1,4,5]]]],[5897,17943,19805,22137,22260]]],["also",[2,2,[[22,2,2,0,2,[[712,2,2,0,2]]]],[18317,18318]]],["but",[18,18,[[0,1,1,0,1,[[19,1,1,0,1]]],[6,2,2,1,3,[[216,1,1,1,2],[217,1,1,2,3]]],[8,1,1,3,4,[[253,1,1,3,4]]],[9,1,1,4,5,[[269,1,1,4,5]]],[10,2,2,5,7,[[301,1,1,5,6],[307,1,1,6,7]]],[11,2,2,7,9,[[330,1,1,7,8],[335,1,1,8,9]]],[17,3,3,9,12,[[437,1,1,9,10],[448,1,1,10,11],[458,1,1,11,12]]],[18,2,2,12,14,[[545,1,1,12,13],[552,1,1,13,14]]],[22,2,2,14,16,[[714,1,1,14,15],[721,1,1,15,16]]],[23,1,1,16,17,[[749,1,1,16,17]]],[25,1,1,17,18,[[847,1,1,17,18]]]],[507,6693,6713,7684,8094,9147,9330,10044,10200,12897,13168,13425,14906,15079,18335,18529,19063,21672]]],["certainly",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20348]]],["even",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]]],[1831,22805]]],["howbeit",[1,1,[[8,1,1,0,1,[[243,1,1,0,1]]]],[7378]]],["indeed",[1,1,[[3,1,1,0,1,[[128,1,1,0,1]]]],[4061]]],["least",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7776]]],["nevertheless",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]]],[4687,9523]]],["notwithstanding",[1,1,[[8,1,1,0,1,[[264,1,1,0,1]]]],[7976]]],["only",[24,22,[[0,3,3,0,3,[[6,1,1,0,1],[26,1,1,1,2],[33,1,1,2,3]]],[1,1,1,3,4,[[59,1,1,3,4]]],[3,2,2,4,6,[[134,1,1,4,5],[152,1,1,5,6]]],[4,1,1,6,7,[[180,1,1,6,7]]],[6,2,2,7,9,[[220,1,1,7,8],[226,1,1,8,9]]],[8,3,3,9,12,[[236,1,1,9,10],[253,1,1,10,11],[255,1,1,11,12]]],[9,1,1,12,13,[[289,1,1,12,13]]],[18,4,4,13,17,[[539,4,4,13,17]]],[19,5,4,17,21,[[638,1,1,17,18],[641,1,1,18,19],[644,1,1,19,20],[648,2,1,20,21]]],[23,2,1,21,22,[[776,2,1,21,22]]]],[182,740,1003,1794,4260,4885,5640,6826,6977,7235,7693,7769,8663,14829,14831,14832,14833,16711,16795,16884,16989,19761]]],["save",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1832]]],["surely",[7,7,[[4,1,1,0,1,[[168,1,1,0,1]]],[18,2,2,1,3,[[516,2,2,1,3]]],[19,1,1,3,4,[[649,1,1,3,4]]],[22,1,1,4,5,[[694,1,1,4,5]]],[23,1,1,5,6,[[746,1,1,5,6]]],[27,1,1,6,7,[[873,1,1,6,7]]]],[5357,14518,14523,17031,17976,19000,22263]]],["surety",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[701]]],["verily",[3,3,[[17,1,1,0,1,[[454,1,1,0,1]]],[18,2,2,1,3,[[516,1,1,1,2],[535,1,1,2,3]]]],[13310,14517,14790]]],["wise",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14458]]],["with",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19225]]],["yet",[6,6,[[0,2,2,0,2,[[17,1,1,0,1],[26,1,1,1,2]]],[8,1,1,2,3,[[247,1,1,2,3]]],[23,2,2,3,5,[[756,1,1,3,4],[774,1,1,4,5]]],[31,1,1,5,6,[[890,1,1,5,6]]]],[456,757,7480,19250,19678,22552]]]]},{"k":"H390","v":[["Accad",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[244]]]]},{"k":"H391","v":[["*",[2,2,[[23,1,1,0,1,[[759,1,1,0,1]]],[32,1,1,1,2,[[893,1,1,1,2]]]],[19333,22593]]],["liar",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19333]]],["lie",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22593]]]]},{"k":"H392","v":[["Achzib",[4,4,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]],[6,1,1,2,3,[[211,1,1,2,3]]],[32,1,1,3,4,[[893,1,1,3,4]]]],[6246,6350,6540,22593]]]]},{"k":"H393","v":[["*",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,2,2,1,3,[[465,1,1,1,2],[476,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]]],[5791,13578,13898,20423]]],["cruel",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[465,1,1,1,2]]],[24,1,1,2,3,[[800,1,1,2,3]]]],[5791,13578,20423]]],["fierce",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13898]]]]},{"k":"H394","v":[["cruel",[8,8,[[19,4,4,0,4,[[632,1,1,0,1],[638,1,1,1,2],[639,1,1,2,3],[644,1,1,3,4]]],[22,1,1,4,5,[[691,1,1,4,5]]],[23,3,3,5,8,[[750,1,1,5,6],[774,1,1,6,7],[794,1,1,7,8]]]],[16526,16705,16729,16884,17915,19112,19681,20208]]]]},{"k":"H395","v":[["cruel",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17173]]]]},{"k":"H396","v":[["meat",[1,1,[[10,1,1,0,1,[[309,1,1,0,1]]]],[9395]]]]},{"k":"H397","v":[["Achish",[21,20,[[8,19,18,0,18,[[256,4,4,0,4],[262,7,7,4,11],[263,3,2,11,13],[264,5,5,13,18]]],[10,2,2,18,20,[[292,2,2,18,20]]]],[7782,7783,7784,7786,7932,7933,7935,7936,7939,7940,7942,7943,7944,7969,7970,7973,7975,7976,8809,8810]]]]},{"k":"H398","v":[["*",[809,700,[[0,65,54,0,54,[[1,4,2,0,2],[2,17,13,2,15],[5,1,1,15,16],[8,1,1,16,17],[13,1,1,17,18],[17,1,1,18,19],[18,1,1,19,20],[23,3,2,20,22],[24,1,1,22,23],[25,1,1,23,24],[26,8,7,24,31],[27,1,1,31,32],[30,7,5,32,37],[31,1,1,37,38],[36,3,3,38,41],[38,1,1,41,42],[39,2,2,42,44],[40,2,2,44,46],[42,5,4,46,50],[44,1,1,50,51],[46,2,2,51,53],[48,1,1,53,54]]],[1,52,44,54,98,[[51,1,1,54,55],[52,1,1,55,56],[59,4,3,56,59],[61,18,14,59,73],[62,3,3,73,76],[64,1,1,76,77],[65,7,6,77,83],[67,1,1,83,84],[70,1,1,84,85],[71,2,2,85,87],[72,3,2,87,89],[73,2,2,89,91],[78,4,3,91,94],[81,1,1,94,95],[83,3,3,95,98]]],[2,104,81,98,179,[[92,1,1,98,99],[95,10,7,99,106],[96,19,12,106,118],[97,2,1,118,119],[98,1,1,119,120],[99,8,7,120,127],[100,16,14,127,141],[103,1,1,141,142],[106,8,5,142,147],[108,7,6,147,153],[110,1,1,153,154],[111,14,11,154,165],[112,2,2,165,167],[113,1,1,167,168],[114,6,5,168,173],[115,7,6,173,179]]],[3,27,24,179,203,[[122,2,2,179,181],[125,1,1,181,182],[127,9,7,182,189],[128,1,1,189,190],[129,1,1,190,191],[131,1,1,191,192],[132,1,1,192,193],[134,5,4,193,197],[137,1,1,197,198],[139,1,1,198,199],[140,1,1,199,200],[141,1,1,200,201],[142,1,1,201,202],[144,1,1,202,203]]],[4,80,71,203,274,[[154,2,2,203,205],[156,2,2,205,207],[157,1,1,207,208],[158,1,1,208,209],[159,1,1,209,210],[160,5,5,210,215],[161,3,3,215,218],[163,1,1,218,219],[164,18,12,219,231],[166,17,15,231,246],[167,3,3,246,249],[168,4,3,249,252],[170,2,2,252,254],[172,2,2,254,256],[175,1,1,256,257],[178,2,2,257,259],[179,1,1,259,260],[180,7,7,260,267],[181,1,1,267,268],[183,2,2,268,270],[184,4,4,270,274]]],[5,4,3,274,277,[[191,3,2,274,276],[210,1,1,276,277]]],[6,17,14,277,291,[[216,1,1,277,278],[219,4,3,278,281],[223,5,4,281,285],[224,3,2,285,287],[229,4,4,287,291]]],[7,4,3,291,294,[[233,2,1,291,292],[234,2,2,292,294]]],[8,30,24,294,318,[[236,4,4,294,298],[237,1,1,298,299],[244,6,3,299,302],[249,8,6,302,308],[255,3,3,308,311],[263,4,4,311,315],[265,4,3,315,318]]],[9,24,21,318,339,[[268,1,1,318,319],[275,5,4,319,323],[277,3,3,323,326],[278,3,3,326,329],[279,3,3,329,332],[282,1,1,332,333],[283,1,1,333,334],[284,2,1,334,335],[285,4,3,335,338],[288,1,1,338,339]]],[10,37,33,339,372,[[291,2,2,339,341],[292,1,1,341,342],[294,1,1,342,343],[303,11,10,343,353],[304,2,1,353,354],[306,2,1,354,355],[307,2,2,355,357],[308,4,4,357,361],[309,5,5,361,366],[311,6,5,366,371],[312,1,1,371,372]]],[11,33,24,372,396,[[313,5,3,372,375],[316,10,6,375,381],[318,6,4,381,385],[319,3,3,385,388],[321,3,3,388,391],[330,2,2,391,393],[331,2,1,393,394],[335,1,1,394,395],[337,1,1,395,396]]],[12,2,2,396,398,[[349,1,1,396,397],[366,1,1,397,398]]],[13,7,7,398,405,[[373,2,2,398,400],[384,1,1,400,401],[394,1,1,401,402],[396,2,2,402,404],[397,1,1,404,405]]],[14,4,4,405,409,[[404,1,1,405,406],[408,1,1,406,407],[411,1,1,407,408],[412,1,1,408,409]]],[15,9,9,409,418,[[414,2,2,409,411],[417,2,2,411,413],[419,1,1,413,414],[420,2,2,414,416],[421,2,2,416,418]]],[16,1,1,418,419,[[429,1,1,418,419]]],[17,21,19,419,438,[[436,4,4,419,423],[440,1,1,423,424],[441,1,1,424,425],[448,1,1,425,426],[450,1,1,426,427],[453,2,1,427,428],[455,1,1,428,429],[456,1,1,429,430],[457,1,1,430,431],[466,5,4,431,435],[469,1,1,435,436],[475,1,1,436,437],[477,1,1,437,438]]],[18,30,27,438,465,[[491,2,1,438,439],[495,1,1,439,440],[498,1,1,440,441],[499,2,2,441,443],[504,1,1,443,444],[518,1,1,444,445],[527,2,2,445,447],[530,2,1,447,448],[536,1,1,448,449],[546,1,1,449,450],[555,5,5,450,455],[556,1,1,455,456],[557,1,1,456,457],[558,1,1,457,458],[579,2,2,458,460],[582,2,1,460,461],[583,2,2,461,463],[604,1,1,463,464],[605,1,1,464,465]]],[19,15,15,465,480,[[628,1,1,465,466],[640,2,2,466,468],[645,1,1,468,469],[650,2,2,469,471],[651,1,1,471,472],[652,3,3,472,475],[654,1,1,475,476],[657,3,3,476,479],[658,1,1,479,480]]],[20,15,14,480,494,[[660,2,2,480,482],[661,1,1,482,483],[662,1,1,483,484],[663,5,5,484,489],[664,2,1,489,490],[666,1,1,490,491],[667,1,1,491,492],[668,2,2,492,494]]],[21,3,2,494,496,[[674,1,1,494,495],[675,2,1,495,496]]],[22,54,49,496,545,[[679,3,3,496,499],[681,1,1,499,500],[682,1,1,500,501],[683,2,2,501,503],[685,3,2,503,505],[687,4,3,505,508],[688,1,1,508,509],[689,1,1,509,510],[699,1,1,510,511],[700,2,1,511,512],[701,1,1,512,513],[702,1,1,513,514],[704,1,1,514,515],[707,2,2,515,517],[708,3,3,517,520],[709,1,1,520,521],[711,2,2,521,523],[714,2,2,523,525],[715,2,1,525,526],[722,2,2,526,528],[727,1,1,528,529],[728,1,1,529,530],[729,2,1,530,531],[733,3,3,531,534],[734,1,1,534,535],[736,1,1,535,536],[737,1,1,536,537],[739,1,1,537,538],[740,1,1,538,539],[743,5,5,539,544],[744,1,1,544,545]]],[23,44,38,545,583,[[746,3,3,545,548],[747,1,1,548,549],[749,5,2,549,551],[751,1,1,551,552],[752,1,1,552,553],[753,1,1,553,554],[754,2,1,554,555],[756,1,1,555,556],[759,2,2,556,558],[760,1,1,558,559],[761,1,1,559,560],[763,2,1,560,561],[765,1,1,561,562],[766,1,1,562,563],[767,1,1,563,564],[768,3,3,564,567],[773,3,3,567,570],[774,2,1,570,571],[775,2,2,571,573],[785,1,1,573,574],[790,2,2,574,576],[792,1,1,576,577],[793,1,1,577,578],[794,3,3,578,581],[795,1,1,581,582],[796,1,1,582,583]]],[24,4,4,583,587,[[798,2,2,583,585],[800,2,2,585,587]]],[25,55,51,587,638,[[803,1,1,587,588],[804,5,3,588,591],[805,7,6,591,597],[806,2,1,597,598],[808,1,1,598,599],[813,2,2,599,601],[816,3,3,601,604],[817,3,3,604,607],[819,4,4,607,611],[820,4,4,611,615],[821,1,1,615,616],[823,2,2,616,618],[824,1,1,618,619],[825,2,2,619,621],[826,1,1,621,622],[829,1,1,622,623],[834,2,2,623,625],[835,2,2,625,627],[837,2,2,627,629],[840,3,3,629,632],[843,1,1,632,633],[844,1,1,633,634],[845,3,3,634,637],[846,1,1,637,638]]],[26,5,5,638,643,[[850,3,3,638,641],[859,1,1,641,642],[860,1,1,642,643]]],[27,14,14,643,657,[[863,1,1,643,644],[865,2,2,644,646],[866,1,1,646,647],[868,2,2,647,649],[869,2,2,649,651],[870,2,2,651,653],[871,1,1,653,654],[872,2,2,654,656],[874,1,1,656,657]]],[28,10,7,657,664,[[876,5,3,657,660],[877,5,4,660,664]]],[29,15,14,664,678,[[879,5,5,664,669],[880,2,2,669,671],[882,1,1,671,672],[883,1,1,672,673],[884,1,1,673,674],[885,4,3,674,677],[887,1,1,677,678]]],[30,1,1,678,679,[[888,1,1,678,679]]],[32,3,3,679,682,[[895,1,1,679,680],[898,1,1,680,681],[899,1,1,681,682]]],[33,6,5,682,687,[[900,1,1,682,683],[901,1,1,683,684],[902,4,3,684,687]]],[34,2,2,687,689,[[903,1,1,687,688],[905,1,1,688,689]]],[35,2,2,689,691,[[906,1,1,689,690],[908,1,1,690,691]]],[36,1,1,691,692,[[909,1,1,691,692]]],[37,8,7,692,699,[[917,2,1,692,693],[919,2,2,693,695],[921,3,3,695,698],[922,1,1,698,699]]],[38,1,1,699,700,[[927,1,1,699,700]]]],[46,47,56,57,58,60,61,66,67,68,69,72,73,74,77,158,209,360,432,460,624,645,692,722,731,734,737,746,752,758,760,793,888,911,913,919,927,960,1103,1108,1116,1155,1189,1191,1199,1215,1292,1306,1315,1322,1376,1442,1444,1500,1574,1581,1782,1789,1792,1823,1824,1825,1827,1831,1832,1834,1835,1836,1859,1860,1861,1862,1864,1870,1873,1874,1927,1950,1955,1959,1972,1979,1982,2011,2105,2119,2144,2155,2159,2188,2194,2368,2369,2370,2444,2511,2514,2524,2795,2859,2865,2867,2872,2875,2878,2879,2885,2894,2895,2897,2898,2899,2900,2902,2903,2904,2905,2906,2948,2977,2979,2989,2990,2991,2994,2995,2996,2999,3000,3001,3005,3006,3008,3010,3018,3019,3031,3037,3038,3039,3044,3158,3245,3247,3248,3249,3250,3287,3288,3289,3304,3306,3307,3367,3373,3375,3376,3377,3379,3380,3381,3382,3383,3385,3399,3408,3416,3455,3476,3481,3488,3489,3491,3529,3534,3540,3550,3553,3562,3826,3827,3976,4025,4028,4029,4037,4042,4043,4045,4071,4107,4172,4229,4267,4268,4270,4288,4368,4440,4454,4473,4499,4594,4944,4966,5028,5032,5078,5097,5127,5140,5146,5147,5149,5153,5160,5166,5175,5223,5247,5255,5256,5257,5258,5260,5261,5262,5263,5264,5265,5267,5293,5294,5296,5297,5298,5299,5300,5301,5302,5309,5310,5311,5313,5316,5319,5339,5341,5342,5345,5349,5350,5385,5392,5441,5446,5524,5578,5580,5592,5642,5644,5650,5662,5664,5666,5668,5685,5745,5748,5771,5780,5796,5800,5945,5946,6489,6675,6769,6774,6781,6888,6891,6898,6900,6918,6923,7028,7030,7032,7045,7163,7175,7179,7219,7220,7221,7230,7276,7404,7410,7415,7532,7536,7538,7540,7541,7542,7735,7754,7764,7962,7964,7965,7967,7989,7990,7994,8075,8234,8237,8238,8240,8270,8272,8284,8289,8306,8307,8322,8326,8328,8428,8478,8486,8539,8546,8553,8611,8742,8758,8777,8864,9192,9193,9199,9200,9201,9202,9203,9206,9207,9212,9229,9287,9329,9332,9360,9379,9382,9383,9392,9393,9394,9395,9408,9455,9456,9458,9474,9475,9507,9543,9545,9547,9611,9643,9644,9645,9646,9647,9696,9697,9702,9703,9709,9715,9726,9766,9790,9792,10051,10055,10090,10174,10251,10759,11186,11325,11337,11568,11779,11845,11849,11864,12090,12172,12249,12258,12310,12320,12384,12396,12485,12503,12505,12536,12547,12778,12873,12882,12885,12887,12956,12984,13181,13237,13289,13352,13380,13409,13596,13600,13605,13627,13686,13879,13933,14084,14126,14200,14230,14233,14287,14551,14671,14681,14723,14805,14944,15137,15138,15142,15158,15176,15192,15203,15233,15525,15530,15641,15671,15679,16123,16128,16431,16749,16772,16922,17051,17052,17092,17129,17134,17140,17187,17265,17268,17271,17311,17357,17358,17372,17386,17408,17409,17414,17415,17416,17419,17473,17482,17509,17510,17598,17599,17661,17673,17674,17717,17734,17756,17763,17797,17804,17841,17847,17849,17867,17891,18040,18065,18095,18101,18141,18199,18201,18241,18244,18247,18258,18290,18293,18342,18346,18382,18549,18552,18662,18671,18681,18741,18742,18750,18762,18800,18805,18849,18863,18901,18910,18918,18919,18922,18939,18968,18972,18995,19026,19072,19075,19140,19169,19190,19226,19261,19318,19331,19344,19384,19416,19454,19469,19499,19526,19527,19532,19640,19652,19663,19683,19720,19721,19958,20055,20059,20125,20154,20173,20183,20198,20246,20309,20335,20352,20425,20431,20500,20503,20504,20505,20538,20539,20541,20542,20543,20545,20556,20592,20698,20699,20758,20759,20761,20775,20781,20782,20851,20855,20860,20864,20884,20887,20893,20895,20942,20985,21001,21032,21073,21078,21087,21175,21305,21307,21316,21341,21372,21373,21465,21466,21467,21565,21580,21602,21628,21630,21651,21749,21750,21752,22018,22062,22117,22141,22143,22159,22185,22187,22207,22208,22211,22212,22238,22244,22246,22274,22295,22310,22311,22314,22316,22336,22337,22368,22371,22374,22376,22378,22381,22384,22419,22429,22454,22466,22468,22476,22509,22528,22611,22662,22665,22694,22712,22724,22725,22727,22739,22782,22805,22828,22846,22968,23003,23014,23029,23037,23044,23051,23131]]],["+",[85,72,[[0,11,9,0,9,[[1,2,1,0,1],[2,1,1,1,2],[30,2,1,2,3],[39,1,1,3,4],[40,2,2,4,6],[42,1,1,6,7],[44,1,1,7,8],[46,1,1,8,9]]],[1,9,7,9,16,[[59,4,3,9,12],[61,1,1,12,13],[62,1,1,13,14],[65,2,1,14,15],[78,1,1,15,16]]],[2,15,11,16,27,[[96,4,2,16,18],[99,3,2,18,20],[100,1,1,20,21],[106,1,1,21,22],[108,3,2,22,24],[111,1,1,24,25],[114,1,1,25,26],[115,1,1,26,27]]],[4,3,3,27,30,[[159,1,1,27,28],[167,1,1,28,29],[172,1,1,29,30]]],[6,5,4,30,34,[[216,1,1,30,31],[219,3,2,31,33],[224,1,1,33,34]]],[8,2,1,34,35,[[249,2,1,34,35]]],[9,2,1,35,36,[[285,2,1,35,36]]],[10,3,3,36,39,[[303,1,1,36,37],[308,1,1,37,38],[311,1,1,38,39]]],[11,3,3,39,42,[[313,1,1,39,40],[321,1,1,40,41],[330,1,1,41,42]]],[13,1,1,42,43,[[396,1,1,42,43]]],[14,1,1,43,44,[[411,1,1,43,44]]],[15,1,1,44,45,[[421,1,1,44,45]]],[18,3,3,45,48,[[504,1,1,45,46],[556,1,1,46,47],[579,1,1,47,48]]],[20,3,3,48,51,[[660,1,1,48,49],[661,1,1,49,50],[662,1,1,50,51]]],[22,3,3,51,54,[[687,1,1,51,52],[714,1,1,52,53],[727,1,1,53,54]]],[23,5,5,54,59,[[747,1,1,54,55],[754,1,1,55,56],[763,1,1,56,57],[773,2,2,57,59]]],[25,5,5,59,64,[[803,1,1,59,60],[804,2,2,60,62],[816,1,1,62,63],[835,1,1,63,64]]],[26,2,2,64,66,[[850,2,2,64,66]]],[27,1,1,66,67,[[868,1,1,66,67]]],[28,2,1,67,68,[[877,2,1,67,68]]],[29,4,3,68,71,[[885,3,2,68,70],[887,1,1,70,71]]],[37,1,1,71,72,[[922,1,1,71,72]]]],[46,73,888,1191,1199,1215,1292,1376,1442,1782,1789,1792,1824,1874,1982,2368,2897,2903,2994,2995,3019,3245,3288,3306,3385,3481,3562,5127,5342,5441,6675,6769,6774,6923,7538,8553,9212,9379,9474,9547,9792,10051,11845,12249,12547,14287,15192,15525,17357,17372,17386,17841,18342,18662,19026,19226,19416,19640,19663,20500,20503,20504,20758,21316,21750,21752,22185,22337,22466,22468,22509,23051]]],["Eat",[5,5,[[1,2,2,0,2,[[61,1,1,0,1],[65,1,1,1,2]]],[10,2,2,2,4,[[303,2,2,2,4]]],[19,1,1,4,5,[[650,1,1,4,5]]]],[1825,1972,9193,9206,17051]]],["ate",[2,2,[[18,1,1,0,1,[[583,1,1,0,1]]],[26,1,1,1,2,[[859,1,1,1,2]]]],[15679,22018]]],["consume",[7,7,[[4,2,2,0,2,[[157,1,1,0,1],[184,1,1,1,2]]],[11,2,2,2,4,[[313,2,2,2,4]]],[17,2,2,4,6,[[450,1,1,4,5],[455,1,1,5,6]]],[23,1,1,6,7,[[793,1,1,6,7]]]],[5078,5780,9543,9545,13237,13352,20154]]],["consumed",[19,19,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,3,3,1,4,[[52,1,1,1,2],[64,1,1,2,3],[71,1,1,3,4]]],[2,2,2,4,6,[[95,1,1,4,5],[98,1,1,5,6]]],[3,4,4,6,10,[[127,1,1,6,7],[128,1,1,7,8],[132,1,1,8,9],[137,1,1,9,10]]],[11,2,2,10,12,[[313,2,2,10,12]]],[13,1,1,12,13,[[373,1,1,12,13]]],[15,2,2,13,15,[[414,2,2,13,15]]],[17,1,1,15,16,[[436,1,1,15,16]]],[18,1,1,16,17,[[555,1,1,16,17]]],[25,2,2,17,19,[[820,1,1,17,18],[844,1,1,18,19]]]],[913,1581,1927,2119,2859,2977,4025,4071,4229,4368,9543,9545,11325,12310,12320,12885,15176,20893,21580]]],["consumeth",[2,2,[[17,2,2,0,2,[[457,1,1,0,1],[466,1,1,1,2]]]],[13409,13600]]],["consuming",[2,2,[[4,2,2,0,2,[[156,1,1,0,1],[161,1,1,1,2]]]],[5028,5160]]],["devour",[52,51,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[9,1,1,2,3,[[268,1,1,2,3]]],[13,1,1,3,4,[[373,1,1,3,4]]],[17,2,1,4,5,[[453,2,1,4,5]]],[18,2,2,5,7,[[498,1,1,5,6],[527,1,1,6,7]]],[19,1,1,7,8,[[657,1,1,7,8]]],[22,7,7,8,15,[[679,1,1,8,9],[687,1,1,9,10],[688,1,1,10,11],[704,1,1,11,12],[709,1,1,12,13],[711,1,1,13,14],[734,1,1,14,15]]],[23,11,11,15,26,[[746,1,1,15,16],[749,1,1,16,17],[756,1,1,17,18],[759,1,1,18,19],[761,1,1,19,20],[765,1,1,20,21],[774,1,1,21,22],[790,2,2,22,24],[792,1,1,24,25],[794,1,1,25,26]]],[25,6,6,26,32,[[808,1,1,26,27],[816,1,1,27,28],[821,1,1,28,29],[829,1,1,29,30],[835,1,1,30,31],[837,1,1,31,32]]],[27,4,4,32,36,[[866,1,1,32,33],[869,1,1,33,34],[872,1,1,34,35],[874,1,1,35,36]]],[29,8,8,36,44,[[879,5,5,36,41],[880,2,2,41,43],[883,1,1,43,44]]],[30,1,1,44,45,[[888,1,1,44,45]]],[33,3,3,45,48,[[901,1,1,45,46],[902,2,2,46,48]]],[34,1,1,48,49,[[905,1,1,48,49]]],[37,2,2,49,51,[[919,1,1,49,50],[921,1,1,50,51]]]],[1500,5800,8075,11337,13289,14200,14671,17265,17661,17847,17867,18141,18258,18290,18762,18968,19072,19261,19318,19384,19454,19683,20055,20059,20125,20198,20592,20761,20942,21175,21341,21373,22159,22208,22246,22274,22368,22371,22374,22376,22378,22381,22384,22429,22528,22712,22725,22727,22782,23014,23029]]],["devoured",[37,36,[[0,2,2,0,2,[[36,2,2,0,2]]],[2,1,1,2,3,[[99,1,1,2,3]]],[3,1,1,3,4,[[142,1,1,3,4]]],[4,1,1,4,5,[[183,1,1,4,5]]],[9,3,2,5,7,[[284,2,1,5,6],[288,1,1,6,7]]],[18,3,3,7,10,[[495,1,1,7,8],[555,1,1,8,9],[582,1,1,9,10]]],[22,2,2,10,12,[[679,1,1,10,11],[702,1,1,11,12]]],[23,7,7,12,19,[[746,1,1,12,13],[752,1,1,13,14],[754,1,1,14,15],[774,1,1,15,16],[794,2,2,16,18],[795,1,1,18,19]]],[24,1,1,19,20,[[800,1,1,19,20]]],[25,8,8,20,28,[[816,1,1,20,21],[817,1,1,21,22],[820,3,3,22,25],[823,1,1,25,26],[824,1,1,26,27],[834,1,1,27,28]]],[27,1,1,28,29,[[868,1,1,28,29]]],[28,2,2,29,31,[[876,2,2,29,31]]],[29,1,1,31,32,[[882,1,1,31,32]]],[33,1,1,32,33,[[900,1,1,32,33]]],[35,2,2,33,35,[[906,1,1,33,34],[908,1,1,34,35]]],[37,1,1,35,36,[[919,1,1,35,36]]]],[1103,1116,2979,4499,5745,8486,8611,14126,15158,15641,17674,18101,18995,19169,19226,19683,20173,20183,20246,20431,20759,20782,20884,20887,20895,21001,21032,21307,22187,22310,22311,22419,22694,22805,22828,23003]]],["devourer",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23131]]],["devoureth",[5,5,[[9,1,1,0,1,[[277,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]],[28,2,2,3,5,[[877,2,2,3,5]]]],[8284,17763,20335,22314,22316]]],["devouring",[5,5,[[1,1,1,0,1,[[73,1,1,0,1]]],[22,4,4,1,5,[[707,1,1,1,2],[708,2,2,2,4],[711,1,1,4,5]]]],[2194,18199,18244,18247,18293]]],["dine",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1306]]],["eat",[434,382,[[0,41,35,0,35,[[1,1,1,0,1],[2,14,12,1,13],[8,1,1,13,14],[17,1,1,14,15],[18,1,1,15,16],[23,3,2,16,18],[24,1,1,18,19],[25,1,1,19,20],[26,7,6,20,26],[27,1,1,26,27],[30,3,2,27,29],[31,1,1,29,30],[36,1,1,30,31],[38,1,1,31,32],[39,1,1,32,33],[42,3,2,33,35]]],[1,30,26,35,61,[[51,1,1,35,36],[61,13,11,36,47],[62,1,1,47,48],[65,3,3,48,51],[67,1,1,51,52],[71,1,1,52,53],[72,3,2,53,55],[73,1,1,55,56],[78,2,1,56,57],[81,1,1,57,58],[83,3,3,58,61]]],[2,55,46,61,107,[[92,1,1,61,62],[95,5,4,62,66],[96,5,5,66,71],[97,2,1,71,72],[99,3,3,72,75],[100,9,8,75,83],[106,3,2,83,85],[108,1,1,85,86],[110,1,1,86,87],[111,12,9,87,96],[112,2,2,96,98],[113,1,1,98,99],[114,4,3,99,102],[115,6,5,102,107]]],[3,19,16,107,123,[[122,2,2,107,109],[125,1,1,109,110],[127,8,6,110,116],[131,1,1,116,117],[134,5,4,117,121],[139,1,1,121,122],[141,1,1,122,123]]],[4,60,52,123,175,[[154,2,2,123,125],[156,1,1,125,126],[160,1,1,126,127],[161,2,2,127,129],[163,1,1,129,130],[164,17,12,130,142],[166,16,14,142,156],[167,2,2,156,158],[168,4,3,158,161],[170,2,2,161,163],[172,1,1,163,164],[175,1,1,164,165],[178,1,1,165,166],[179,1,1,166,167],[180,6,6,167,173],[184,2,2,173,175]]],[5,3,3,175,178,[[191,2,2,175,177],[210,1,1,177,178]]],[6,11,10,178,188,[[219,1,1,178,179],[223,5,4,179,183],[224,1,1,183,184],[229,4,4,184,188]]],[7,2,1,188,189,[[233,2,1,188,189]]],[8,18,15,189,204,[[236,2,2,189,191],[237,1,1,191,192],[244,6,3,192,195],[249,3,3,195,198],[255,2,2,198,200],[263,3,3,200,203],[265,1,1,203,204]]],[9,17,16,204,220,[[275,5,4,204,208],[277,2,2,208,210],[278,3,3,210,213],[279,3,3,213,216],[282,1,1,216,217],[283,1,1,217,218],[285,2,2,218,220]]],[10,26,23,220,243,[[291,1,1,220,221],[292,1,1,221,222],[303,6,6,222,228],[304,2,1,228,229],[306,2,1,229,230],[307,2,2,230,232],[308,3,3,232,235],[309,5,5,235,240],[311,4,3,240,243]]],[11,24,18,243,261,[[316,9,6,243,249],[318,5,3,249,252],[319,3,3,252,255],[321,2,2,255,257],[330,1,1,257,258],[331,2,1,258,259],[335,1,1,259,260],[337,1,1,260,261]]],[12,1,1,261,262,[[366,1,1,261,262]]],[13,3,3,262,265,[[394,1,1,262,263],[396,1,1,263,264],[397,1,1,264,265]]],[14,3,3,265,268,[[404,1,1,265,266],[408,1,1,266,267],[412,1,1,267,268]]],[15,5,5,268,273,[[417,1,1,268,269],[419,1,1,269,270],[420,2,2,270,272],[421,1,1,272,273]]],[16,1,1,273,274,[[429,1,1,273,274]]],[17,3,3,274,277,[[436,1,1,274,275],[466,1,1,275,276],[477,1,1,276,277]]],[18,11,11,277,288,[[491,1,1,277,278],[499,2,2,278,280],[518,1,1,280,281],[527,1,1,281,282],[530,1,1,282,283],[555,3,3,283,286],[604,1,1,286,287],[605,1,1,287,288]]],[19,9,9,288,297,[[628,1,1,288,289],[640,1,1,289,290],[645,1,1,290,291],[651,1,1,291,292],[652,3,3,292,295],[654,1,1,295,296],[657,1,1,296,297]]],[20,10,10,297,307,[[660,1,1,297,298],[663,4,4,298,302],[664,1,1,302,303],[666,1,1,303,304],[667,1,1,304,305],[668,2,2,305,307]]],[21,2,2,307,309,[[674,1,1,307,308],[675,1,1,308,309]]],[22,27,24,309,333,[[679,1,1,309,310],[681,1,1,310,311],[682,1,1,311,312],[683,1,1,312,313],[685,3,2,313,315],[687,2,1,315,316],[689,1,1,316,317],[699,1,1,317,318],[700,1,1,318,319],[701,1,1,319,320],[708,1,1,320,321],[714,1,1,321,322],[715,2,1,322,323],[729,1,1,323,324],[733,2,2,324,326],[739,1,1,326,327],[740,1,1,327,328],[743,5,5,328,333]]],[23,9,9,333,342,[[746,1,1,333,334],[749,1,1,334,335],[751,1,1,335,336],[759,1,1,336,337],[760,1,1,337,338],[763,1,1,338,339],[766,1,1,339,340],[785,1,1,340,341],[796,1,1,341,342]]],[24,1,1,342,343,[[798,1,1,342,343]]],[25,26,23,343,366,[[804,3,2,343,345],[805,6,5,345,350],[806,2,1,350,351],[813,2,2,351,353],[817,1,1,353,354],[823,1,1,354,355],[825,2,2,355,357],[826,1,1,357,358],[834,1,1,358,359],[840,3,3,359,362],[843,1,1,362,363],[845,3,3,363,366]]],[26,1,1,366,367,[[850,1,1,366,367]]],[27,5,5,367,372,[[863,1,1,367,368],[865,1,1,368,369],[869,1,1,369,370],[870,2,2,370,372]]],[29,2,2,372,374,[[884,1,1,372,373],[885,1,1,373,374]]],[32,3,3,374,377,[[895,1,1,374,375],[898,1,1,375,376],[899,1,1,376,377]]],[34,1,1,377,378,[[903,1,1,377,378]]],[36,1,1,378,379,[[909,1,1,378,379]]],[37,4,3,379,382,[[917,2,1,379,380],[921,2,2,380,382]]]],[47,56,57,58,60,61,66,67,68,69,72,74,77,209,432,460,624,645,692,722,731,734,737,746,752,758,793,919,927,960,1108,1155,1189,1315,1322,1574,1823,1824,1827,1831,1832,1834,1836,1859,1860,1861,1864,1873,1950,1955,1959,2011,2144,2155,2159,2188,2369,2444,2511,2514,2524,2795,2865,2867,2875,2878,2885,2898,2900,2902,2905,2948,2989,2990,2991,2999,3000,3001,3005,3006,3008,3018,3039,3247,3249,3307,3367,3373,3375,3376,3377,3379,3380,3381,3382,3383,3408,3416,3455,3488,3489,3491,3529,3534,3540,3550,3553,3826,3827,3976,4028,4029,4037,4042,4043,4045,4172,4267,4268,4270,4288,4440,4473,4944,4966,5032,5146,5166,5175,5223,5247,5255,5256,5257,5258,5260,5261,5262,5263,5264,5265,5267,5293,5294,5296,5297,5298,5299,5300,5301,5302,5310,5311,5313,5316,5319,5339,5341,5345,5349,5350,5385,5392,5446,5524,5578,5592,5642,5650,5662,5664,5666,5668,5771,5796,5945,5946,6489,6781,6888,6891,6898,6900,6918,7028,7030,7032,7045,7163,7219,7230,7276,7404,7410,7415,7540,7541,7542,7754,7764,7964,7965,7967,7989,8234,8237,8238,8240,8270,8272,8289,8306,8307,8322,8326,8328,8428,8478,8539,8546,8742,8777,9192,9199,9200,9201,9202,9203,9229,9287,9329,9332,9360,9382,9383,9392,9393,9394,9395,9408,9455,9458,9475,9611,9643,9644,9645,9646,9647,9696,9702,9703,9709,9715,9726,9766,9790,10055,10090,10174,10251,11186,11779,11849,11864,12090,12172,12258,12384,12485,12503,12505,12536,12778,12873,13596,13933,14084,14230,14233,14551,14681,14723,15137,15138,15142,16123,16128,16431,16749,16922,17092,17129,17134,17140,17187,17268,17358,17408,17409,17415,17416,17419,17473,17482,17509,17510,17598,17599,17673,17717,17734,17756,17797,17804,17849,17891,18040,18065,18095,18241,18346,18382,18681,18741,18742,18849,18863,18901,18910,18918,18919,18922,18972,19075,19140,19331,19344,19416,19469,19958,20309,20352,20503,20505,20538,20539,20541,20542,20545,20556,20698,20699,20775,20985,21073,21078,21087,21305,21465,21466,21467,21565,21602,21628,21630,21749,22117,22143,22207,22211,22212,22454,22476,22611,22662,22665,22739,22846,22968,23037,23044]]],["eaten",[72,66,[[0,6,6,0,6,[[2,2,2,0,2],[5,1,1,2,3],[13,1,1,3,4],[26,1,1,4,5],[30,1,1,5,6]]],[1,4,4,6,10,[[61,1,1,6,7],[62,1,1,7,8],[70,1,1,8,9],[78,1,1,9,10]]],[2,18,16,10,26,[[95,4,4,10,14],[96,5,4,14,18],[99,1,1,18,19],[100,5,4,19,23],[106,1,1,23,24],[108,2,2,24,26]]],[3,1,1,26,27,[[144,1,1,26,27]]],[4,8,8,27,35,[[158,1,1,27,28],[160,2,2,28,30],[164,1,1,30,31],[166,1,1,31,32],[178,1,1,32,33],[181,1,1,33,34],[183,1,1,34,35]]],[5,1,1,35,36,[[191,1,1,35,36]]],[7,1,1,36,37,[[234,1,1,36,37]]],[8,4,3,37,40,[[236,1,1,37,38],[263,1,1,38,39],[265,2,1,39,40]]],[10,2,2,40,42,[[303,2,2,40,42]]],[11,1,1,42,43,[[318,1,1,42,43]]],[15,1,1,43,44,[[417,1,1,43,44]]],[17,5,4,44,48,[[441,1,1,44,45],[448,1,1,45,46],[466,3,2,46,48]]],[18,1,1,48,49,[[579,1,1,48,49]]],[19,1,1,49,50,[[650,1,1,49,50]]],[21,1,1,50,51,[[675,1,1,50,51]]],[22,1,1,51,52,[[722,1,1,51,52]]],[23,5,5,52,57,[[768,3,3,52,55],[773,1,1,55,56],[775,1,1,56,57]]],[25,6,6,57,63,[[805,1,1,57,58],[819,4,4,58,62],[846,1,1,62,63]]],[27,1,1,63,64,[[871,1,1,63,64]]],[28,4,2,64,66,[[876,3,1,64,65],[877,1,1,65,66]]]],[66,72,158,360,760,911,1862,1870,2105,2370,2865,2872,2875,2879,2885,2894,2895,2898,2996,3010,3031,3038,3044,3248,3287,3304,4594,5097,5147,5149,5262,5309,5580,5685,5748,5946,7179,7221,7962,7990,9206,9207,9697,12396,12984,13181,13605,13627,15530,17052,17599,18552,19526,19527,19532,19652,19720,20543,20851,20855,20860,20864,21651,22238,22295,22336]]],["eater",[2,2,[[22,1,1,0,1,[[733,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[18750,22724]]],["eatest",[3,3,[[0,1,1,0,1,[[1,1,1,0,1]]],[8,1,1,1,2,[[236,1,1,1,2]]],[10,1,1,2,3,[[311,1,1,2,3]]]],[47,7220,9456]]],["eateth",[27,26,[[1,2,2,0,2,[[61,2,2,0,2]]],[2,11,10,2,12,[[96,5,4,2,6],[100,1,1,6,7],[103,1,1,7,8],[106,3,3,8,11],[108,1,1,11,12]]],[8,2,2,12,14,[[249,2,2,12,14]]],[17,2,2,14,16,[[456,1,1,14,15],[475,1,1,15,16]]],[18,1,1,16,17,[[583,1,1,16,17]]],[19,3,3,17,20,[[640,1,1,17,18],[657,1,1,18,19],[658,1,1,19,20]]],[20,2,2,20,22,[[663,1,1,20,21],[664,1,1,21,22]]],[22,3,3,22,25,[[707,1,1,22,23],[722,1,1,23,24],[737,1,1,24,25]]],[23,1,1,25,26,[[775,1,1,25,26]]]],[1831,1835,2897,2899,2904,2906,3037,3158,3245,3249,3250,3289,7532,7536,13380,13879,15671,16772,17271,17311,17414,17419,18201,18549,18805,19721]]],["eating",[12,12,[[6,1,1,0,1,[[224,1,1,0,1]]],[7,1,1,1,2,[[234,1,1,1,2]]],[8,2,2,2,4,[[249,1,1,2,3],[265,1,1,3,4]]],[10,2,2,4,6,[[291,1,1,4,5],[294,1,1,5,6]]],[11,1,1,6,7,[[316,1,1,6,7]]],[12,1,1,7,8,[[349,1,1,7,8]]],[17,2,2,8,10,[[436,2,2,8,10]]],[22,2,2,10,12,[[700,1,1,10,11],[744,1,1,11,12]]]],[6918,7175,7542,7994,8758,8864,9643,10759,12882,12887,18065,18939]]],["fed",[5,5,[[1,1,1,0,1,[[65,1,1,0,1]]],[4,2,2,1,3,[[160,2,2,1,3]]],[18,1,1,3,4,[[558,1,1,3,4]]],[25,1,1,4,5,[[817,1,1,4,5]]]],[1979,5140,5153,15233,20781]]],["feed",[7,7,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]],[22,1,1,2,3,[[736,1,1,2,3]]],[23,2,2,3,5,[[753,1,1,3,4],[767,1,1,4,5]]],[24,1,1,5,6,[[800,1,1,5,6]]],[26,1,1,6,7,[[860,1,1,6,7]]]],[9507,11568,18800,19190,19499,20425,22062]]],["feedest",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15203]]],["food",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1444]]],["meat",[5,5,[[2,1,1,0,1,[[114,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[17,1,1,2,3,[[469,1,1,2,3]]],[18,1,1,3,4,[[536,1,1,3,4]]],[27,1,1,4,5,[[872,1,1,4,5]]]],[3476,7735,13686,14805,22244]]],["up",[17,15,[[2,1,1,0,1,[[111,1,1,0,1]]],[3,2,2,1,3,[[129,1,1,1,2],[140,1,1,2,3]]],[4,1,1,3,4,[[180,1,1,3,4]]],[17,1,1,4,5,[[440,1,1,4,5]]],[18,4,4,5,9,[[491,1,1,5,6],[530,1,1,6,7],[546,1,1,7,8],[582,1,1,8,9]]],[22,2,2,9,11,[[728,1,1,9,10],[729,1,1,10,11]]],[23,3,1,11,12,[[749,3,1,11,12]]],[25,1,1,12,13,[[837,1,1,12,13]]],[27,1,1,13,14,[[865,1,1,13,14]]],[33,1,1,14,15,[[902,1,1,14,15]]]],[3399,4107,4454,5644,12956,14084,14723,14944,15641,18671,18681,19075,21372,22141,22727]]]]},{"k":"H399","v":[["*",[7,7,[[26,7,7,0,7,[[852,1,1,0,1],[853,1,1,1,2],[855,1,1,2,3],[856,4,4,3,7]]]],[21815,21870,21929,21938,21940,21952,21956]]],["+",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[855,1,1,1,2]]]],[21815,21929]]],["devour",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21938,21956]]],["devoured",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21940,21952]]],["eat",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21870]]]]},{"k":"H400","v":[["*",[44,41,[[0,16,13,0,13,[[13,1,1,0,1],[40,6,3,1,4],[41,2,2,4,6],[42,4,4,6,10],[43,2,2,10,12],[46,1,1,12,13]]],[1,4,4,13,17,[[61,1,1,13,14],[65,3,3,14,17]]],[2,2,2,17,19,[[100,1,1,17,18],[114,1,1,18,19]]],[4,3,3,19,22,[[154,2,2,19,21],[175,1,1,21,22]]],[7,1,1,22,23,[[233,1,1,22,23]]],[17,6,6,23,29,[[444,1,1,23,24],[447,1,1,24,25],[455,1,1,25,26],[471,1,1,26,27],[473,1,1,27,28],[474,1,1,28,29]]],[18,6,6,29,35,[[555,2,2,29,31],[581,2,2,31,33],[584,1,1,33,34],[622,1,1,34,35]]],[19,1,1,35,36,[[640,1,1,35,36]]],[24,2,2,36,38,[[797,2,2,36,38]]],[28,1,1,38,39,[[876,1,1,38,39]]],[34,1,1,39,40,[[905,1,1,39,40]]],[38,1,1,40,41,[[925,1,1,40,41]]]],[347,1230,1231,1243,1259,1262,1292,1294,1310,1312,1325,1349,1444,1820,1963,1965,1968,3031,3506,4944,4966,5519,7163,13077,13139,13347,13767,13834,13863,15131,15143,15592,15598,15717,16335,16770,20321,20329,22307,22785,23101]]],["+",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7163]]],["eating",[4,4,[[1,4,4,0,4,[[61,1,1,0,1],[65,3,3,1,4]]]],[1820,1963,1965,1968]]],["food",[16,13,[[0,15,12,0,12,[[40,6,3,0,3],[41,2,2,3,5],[42,4,4,5,9],[43,2,2,9,11],[46,1,1,11,12]]],[19,1,1,12,13,[[640,1,1,12,13]]]],[1230,1231,1243,1259,1262,1292,1294,1310,1312,1325,1349,1444,16770]]],["meat",[18,18,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,2,2,1,3,[[154,2,2,1,3]]],[17,4,4,3,7,[[447,1,1,3,4],[455,1,1,4,5],[471,1,1,5,6],[473,1,1,6,7]]],[18,6,6,7,13,[[555,2,2,7,9],[581,2,2,9,11],[584,1,1,11,12],[622,1,1,12,13]]],[24,2,2,13,15,[[797,2,2,13,15]]],[28,1,1,15,16,[[876,1,1,15,16]]],[34,1,1,16,17,[[905,1,1,16,17]]],[38,1,1,17,18,[[925,1,1,17,18]]]],[3031,4944,4966,13139,13347,13767,13834,15131,15143,15592,15598,15717,16335,20321,20329,22307,22785,23101]]],["prey",[2,2,[[17,2,2,0,2,[[444,1,1,0,1],[474,1,1,1,2]]]],[13077,13863]]],["victuals",[3,3,[[0,1,1,0,1,[[13,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[4,1,1,2,3,[[175,1,1,2,3]]]],[347,3506,5519]]]]},{"k":"H401","v":[["Ucal",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17252]]]]},{"k":"H402","v":[["*",[18,18,[[0,4,4,0,4,[[0,2,2,0,2],[5,1,1,2,3],[8,1,1,3,4]]],[1,1,1,4,5,[[65,1,1,4,5]]],[2,2,2,5,7,[[100,1,1,5,6],[114,1,1,6,7]]],[23,1,1,7,8,[[756,1,1,7,8]]],[25,10,10,8,18,[[816,2,2,8,10],[822,1,1,10,11],[824,1,1,11,12],[830,1,1,12,13],[835,3,3,13,16],[836,1,1,16,17],[840,1,1,17,18]]]],[28,29,158,208,1962,3036,3475,19258,20758,20760,20976,21044,21188,21318,21321,21323,21356,21452]]],["consume",[1,1,[[25,1,1,0,1,[[836,1,1,0,1]]]],[21356]]],["devour",[2,2,[[23,1,1,0,1,[[756,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[19258,21044]]],["devoured",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21452]]],["eat",[2,2,[[1,1,1,0,1,[[65,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]]],[1962,3036]]],["food",[1,1,[[0,1,1,0,1,[[5,1,1,0,1]]]],[158]]],["fuel",[3,3,[[25,3,3,0,3,[[816,2,2,0,2],[822,1,1,2,3]]]],[20758,20760,20976]]],["meat",[8,8,[[0,3,3,0,3,[[0,2,2,0,2],[8,1,1,2,3]]],[2,1,1,3,4,[[114,1,1,3,4]]],[25,4,4,4,8,[[830,1,1,4,5],[835,3,3,5,8]]]],[28,29,208,3475,21188,21318,21321,21323]]]]},{"k":"H403","v":[["*",[18,17,[[0,1,1,0,1,[[27,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]],[8,1,1,2,3,[[250,1,1,2,3]]],[10,1,1,3,4,[[301,1,1,3,4]]],[17,1,1,4,5,[[467,1,1,4,5]]],[18,3,3,5,8,[[508,1,1,5,6],[543,1,1,6,7],[559,1,1,7,8]]],[22,4,4,8,12,[[718,1,1,8,9],[723,1,1,9,10],[727,1,1,10,11],[731,1,1,11,12]]],[23,5,4,12,16,[[747,3,2,12,14],[748,1,1,14,15],[752,1,1,15,16]]],[35,1,1,16,17,[[908,1,1,16,17]]]],[789,1568,7592,9110,13636,14353,14892,15240,18427,18576,18640,18715,19022,19025,19037,19161,22827]]],["But",[2,2,[[17,1,1,0,1,[[467,1,1,0,1]]],[18,1,1,1,2,[[559,1,1,1,2]]]],[13636,15240]]],["Surely",[5,5,[[0,1,1,0,1,[[27,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]],[8,1,1,2,3,[[250,1,1,2,3]]],[22,1,1,3,4,[[731,1,1,3,4]]],[23,1,1,4,5,[[747,1,1,4,5]]]],[789,1568,7592,18715,19022]]],["Truly",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19025]]],["Verily",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18576]]],["but",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22827]]],["certainly",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19161]]],["nevertheless",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14353]]],["surely",[4,4,[[10,1,1,0,1,[[301,1,1,0,1]]],[22,2,2,1,3,[[718,1,1,1,2],[727,1,1,2,3]]],[23,1,1,3,4,[[748,1,1,3,4]]]],[9110,18427,18640,19037]]],["truly",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19025]]],["verily",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14892]]]]},{"k":"H404","v":[["craveth",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16866]]]]},{"k":"H405","v":[["hand",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13657]]]]},{"k":"H406","v":[["*",[7,7,[[13,1,1,0,1,[[392,1,1,0,1]]],[22,1,1,1,2,[[739,1,1,1,2]]],[23,3,3,2,5,[[758,1,1,2,3],[775,1,1,3,4],[795,1,1,4,5]]],[28,1,1,5,6,[[876,1,1,5,6]]],[29,1,1,6,7,[[883,1,1,6,7]]]],[11742,18848,19297,19715,20235,22302,22439]]],["husbandman",[2,2,[[23,1,1,0,1,[[795,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[20235,22439]]],["husbandmen",[3,3,[[13,1,1,0,1,[[392,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]],[28,1,1,2,3,[[876,1,1,2,3]]]],[11742,19715,22302]]],["plowmen",[2,2,[[22,1,1,0,1,[[739,1,1,0,1]]],[23,1,1,1,2,[[758,1,1,1,2]]]],[18848,19297]]]]},{"k":"H407","v":[["Achshaph",[3,3,[[5,3,3,0,3,[[197,1,1,0,1],[198,1,1,1,2],[205,1,1,2,3]]]],[6108,6150,6346]]]]},{"k":"H408","v":[["*",[726,573,[[0,39,34,0,34,[[12,1,1,0,1],[14,1,1,1,2],[17,3,3,2,5],[18,5,4,5,9],[20,3,3,9,12],[21,2,1,12,13],[23,1,1,13,14],[25,2,2,14,16],[30,1,1,16,17],[32,1,1,17,18],[34,1,1,18,19],[36,3,2,19,21],[41,1,1,21,22],[42,1,1,22,23],[43,1,1,23,24],[44,5,4,24,28],[45,1,1,28,29],[46,1,1,29,30],[48,3,2,30,32],[49,2,2,32,34]]],[1,20,19,34,53,[[52,1,1,34,35],[54,1,1,35,36],[57,1,1,36,37],[59,1,1,37,38],[61,1,1,38,39],[63,1,1,39,40],[65,2,2,40,42],[68,2,2,42,44],[69,2,2,44,46],[72,3,3,46,49],[81,1,1,49,50],[82,1,1,50,51],[83,2,1,51,52],[85,1,1,52,53]]],[2,11,10,53,63,[[99,2,2,53,55],[100,1,1,55,56],[105,1,1,56,57],[107,1,1,57,58],[108,4,3,58,61],[114,2,2,61,63]]],[3,14,12,63,75,[[120,1,1,63,64],[126,1,1,64,65],[127,1,1,65,66],[128,2,2,66,68],[130,4,2,68,70],[132,2,2,70,72],[137,1,1,72,73],[138,1,1,73,74],[148,1,1,74,75]]],[4,21,14,75,89,[[153,2,1,75,76],[154,5,3,76,79],[155,2,2,79,81],[161,4,4,81,85],[172,4,1,85,86],[173,1,1,86,87],[183,2,1,87,88],[185,1,1,88,89]]],[5,20,14,89,103,[[187,3,2,89,91],[189,1,1,91,92],[193,3,2,92,94],[194,3,2,94,96],[196,6,4,96,100],[197,1,1,100,101],[208,3,2,101,103]]],[6,16,11,103,114,[[214,1,1,103,104],[216,3,3,104,107],[223,6,3,107,110],[228,2,2,110,112],[229,4,2,112,114]]],[7,8,8,114,122,[[232,3,3,114,117],[233,1,1,117,118],[234,4,4,118,122]]],[8,26,25,122,147,[[236,1,1,122,123],[237,2,2,123,125],[238,1,1,125,126],[239,1,1,126,127],[241,1,1,127,128],[242,1,1,128,129],[244,1,1,129,130],[247,3,2,130,132],[251,1,1,132,133],[252,1,1,133,134],[253,1,1,134,135],[254,1,1,135,136],[255,2,2,136,138],[256,1,1,138,139],[257,2,2,139,141],[258,1,1,141,142],[260,1,1,142,143],[261,2,2,143,145],[262,1,1,145,146],[263,1,1,146,147]]],[9,23,17,147,164,[[267,4,2,147,149],[269,1,1,149,150],[275,1,1,150,151],[277,1,1,151,152],[279,10,7,152,159],[280,2,2,159,161],[283,1,1,161,162],[285,2,1,162,163],[290,1,1,163,164]]],[10,13,11,164,175,[[292,3,3,164,167],[293,1,1,167,168],[298,2,1,168,169],[303,2,1,169,170],[307,1,1,170,171],[308,1,1,171,172],[310,2,2,172,174],[312,1,1,174,175]]],[11,23,22,175,197,[[313,1,1,175,176],[314,1,1,176,177],[315,1,1,177,178],[316,4,3,178,181],[318,2,2,181,183],[321,1,1,183,184],[322,2,2,184,186],[323,1,1,186,187],[324,1,1,187,188],[330,5,5,188,193],[331,2,2,193,195],[335,1,1,195,196],[337,1,1,196,197]]],[12,7,4,197,201,[[353,2,1,197,198],[358,1,1,198,199],[359,2,1,199,200],[365,2,1,200,201]]],[13,20,15,201,216,[[372,1,1,201,202],[379,1,1,202,203],[380,1,1,203,204],[381,1,1,204,205],[384,1,1,205,206],[386,4,2,206,208],[389,1,1,208,209],[391,1,1,209,210],[395,1,1,210,211],[396,2,2,211,213],[398,5,2,213,215],[401,1,1,215,216]]],[14,2,1,216,217,[[411,2,1,216,217]]],[15,9,7,217,224,[[416,3,2,217,219],[420,4,3,219,222],[421,1,1,222,223],[425,1,1,223,224]]],[16,4,3,224,227,[[429,3,2,224,226],[431,1,1,226,227]]],[17,25,22,227,249,[[436,1,1,227,228],[438,6,4,228,232],[440,2,2,232,234],[441,1,1,234,235],[444,1,1,235,236],[445,1,1,236,237],[446,1,1,237,238],[448,2,2,238,240],[450,1,1,240,241],[451,2,1,241,242],[455,1,1,242,243],[459,1,1,243,244],[467,1,1,244,245],[471,3,3,245,248],[476,1,1,248,249]]],[18,115,90,249,339,[[481,1,1,249,250],[483,2,1,250,251],[486,1,1,251,252],[487,1,1,252,253],[496,1,1,253,254],[499,2,2,254,256],[502,4,3,256,259],[503,1,1,259,260],[504,5,2,260,262],[505,2,2,262,264],[508,2,2,264,266],[509,1,1,266,267],[511,1,1,267,268],[512,6,4,268,272],[513,2,1,272,273],[514,4,3,273,276],[515,3,2,276,278],[516,2,2,278,280],[517,1,1,280,281],[518,1,1,281,282],[521,1,1,282,283],[526,1,1,283,284],[527,1,1,284,285],[528,2,1,285,286],[532,1,1,286,287],[536,2,2,287,289],[539,3,1,289,290],[543,1,1,290,291],[546,10,7,291,298],[547,1,1,298,299],[548,5,4,299,303],[551,4,3,303,306],[552,3,2,306,308],[556,2,2,308,310],[560,3,1,310,311],[562,1,1,311,312],[572,1,1,312,313],[579,2,2,313,315],[580,1,1,315,316],[582,2,1,316,317],[586,4,3,317,320],[596,9,9,320,329],[598,2,1,329,330],[609,1,1,330,331],[615,1,1,331,332],[617,2,1,332,333],[618,3,3,333,336],[620,2,2,336,338],[623,1,1,338,339]]],[19,90,74,339,413,[[628,3,3,339,342],[630,14,12,342,354],[631,10,8,354,362],[632,2,2,362,364],[633,4,3,364,367],[634,2,1,367,368],[635,2,2,368,370],[636,1,1,370,371],[639,1,1,371,372],[644,1,1,372,373],[646,1,1,373,374],[647,2,2,374,376],[649,5,4,376,380],[650,13,11,380,391],[651,11,7,391,398],[652,4,3,398,401],[653,2,2,401,403],[654,4,3,403,406],[655,1,1,406,407],[657,4,4,407,411],[658,3,2,411,413]]],[20,21,15,413,428,[[663,6,4,413,417],[665,8,6,417,423],[666,2,1,423,424],[667,1,1,424,425],[668,3,2,425,427],[669,1,1,427,428]]],[21,2,2,428,430,[[671,1,1,428,429],[677,1,1,429,430]]],[22,44,36,430,466,[[680,1,1,430,431],[684,1,1,431,432],[685,2,1,432,433],[688,1,1,433,434],[692,1,1,434,435],[694,1,1,435,436],[700,1,1,436,437],[706,1,1,437,438],[713,1,1,438,439],[714,4,4,439,443],[715,2,2,443,445],[718,1,1,445,446],[719,4,3,446,449],[721,5,4,449,453],[722,3,2,453,455],[729,2,1,455,456],[730,1,1,456,457],[732,3,2,457,459],[734,2,1,459,460],[736,1,1,460,461],[740,2,2,461,463],[742,2,1,463,464],[743,2,2,464,466]]],[23,88,67,466,533,[[745,3,3,466,469],[748,2,2,469,471],[749,1,1,471,472],[750,2,1,472,473],[751,5,3,473,476],[753,4,2,476,478],[754,4,3,478,481],[755,2,1,481,482],[756,1,1,482,483],[757,1,1,483,484],[758,6,4,484,488],[759,1,1,488,489],[760,3,1,489,490],[761,4,3,490,493],[762,3,2,493,495],[764,1,1,495,496],[766,5,2,496,498],[767,1,1,498,499],[769,1,1,499,500],[770,1,1,500,501],[771,4,4,501,505],[773,3,2,505,507],[774,2,1,507,508],[779,1,1,508,509],[780,1,1,509,510],[781,2,2,510,512],[782,3,3,512,515],[783,1,1,515,516],[784,2,2,516,518],[785,1,1,518,519],[786,3,2,519,521],[788,1,1,521,522],[789,1,1,522,523],[790,5,3,523,526],[794,4,4,526,530],[795,3,3,530,533]]],[24,5,4,533,537,[[798,2,1,533,534],[799,2,2,534,536],[800,1,1,536,537]]],[25,14,7,537,544,[[803,5,2,537,539],[808,2,1,539,540],[810,3,2,540,542],[821,4,2,542,544]]],[26,3,3,544,547,[[858,1,1,544,545],[859,2,2,545,547]]],[27,7,3,547,550,[[865,6,2,547,549],[870,1,1,549,550]]],[28,4,4,550,554,[[877,4,4,550,554]]],[29,2,2,554,556,[[883,2,2,554,556]]],[30,8,3,556,559,[[888,8,3,556,559]]],[31,5,2,559,561,[[889,2,1,559,560],[891,3,1,560,561]]],[32,6,4,561,565,[[893,2,1,561,562],[894,1,1,562,563],[899,3,2,563,565]]],[35,2,1,565,566,[[908,2,1,565,566]]],[36,1,1,566,567,[[910,1,1,566,567]]],[37,7,5,567,572,[[911,1,1,567,568],[917,2,1,568,569],[918,4,3,569,572]]],[38,1,1,572,573,[[926,1,1,572,573]]]],[326,361,427,454,456,464,465,474,475,525,529,530,559,647,694,716,908,970,1028,1105,1110,1274,1313,1342,1363,1367,1378,1382,1389,1449,1477,1479,1525,1527,1584,1641,1739,1805,1825,1902,1966,1976,2041,2050,2070,2071,2145,2151,2165,2460,2488,2499,2572,2983,2986,3040,3203,3275,3285,3310,3312,3483,3505,3761,4019,4039,4070,4071,4117,4150,4209,4220,4374,4391,4723,4913,4943,4947,4957,4977,5001,5161,5164,5183,5184,5430,5455,5734,5816,5858,5860,5897,5979,5995,6003,6006,6070,6072,6083,6089,6113,6445,6448,6617,6672,6677,6693,6888,6891,6898,7002,7018,7044,7047,7140,7143,7147,7157,7175,7183,7186,7189,7228,7243,7264,7293,7317,7334,7360,7411,7479,7480,7602,7650,7693,7710,7733,7768,7774,7802,7810,7827,7886,7914,7925,7940,7955,8042,8043,8110,8234,8284,8329,8333,8337,8342,8345,8349,8350,8358,8374,8465,8530,8706,8779,8786,8790,8842,9042,9206,9330,9381,9416,9419,9488,9548,9569,9589,9606,9619,9627,9690,9701,9771,9812,9818,9844,9857,10050,10053,10054,10055,10056,10067,10071,10183,10246,10842,10947,10977,11163,11324,11465,11486,11497,11549,11602,11604,11662,11711,11802,11834,11835,11882,11890,11987,12249,12364,12373,12502,12503,12504,12543,12685,12775,12778,12803,12881,12908,12910,12911,12913,12968,12973,13007,13085,13088,13122,13173,13174,13234,13256,13343,13461,13649,13754,13756,13757,13896,13969,13986,14040,14053,14181,14215,14223,14253,14258,14271,14282,14294,14297,14300,14302,14332,14348,14364,14393,14429,14432,14434,14435,14449,14451,14457,14458,14491,14511,14520,14524,14542,14544,14594,14664,14671,14702,14733,14795,14801,14837,14880,14941,14949,14950,14952,14960,14962,14963,14976,14977,14985,14988,14994,15067,15069,15071,15075,15076,15191,15193,15242,15279,15462,15523,15545,15551,15621,15756,15767,15769,15906,15908,15917,15929,15934,15941,16014,16020,16031,16084,16161,16239,16271,16280,16281,16284,16295,16300,16344,16408,16410,16415,16456,16458,16460,16462,16466,16476,16480,16482,16483,16484,16485,16486,16492,16495,16496,16503,16504,16505,16511,16517,16524,16525,16544,16560,16565,16600,16612,16635,16646,16747,16885,16943,16967,16976,17037,17039,17041,17043,17047,17048,17050,17053,17054,17057,17061,17064,17066,17067,17075,17080,17094,17096,17098,17100,17107,17108,17119,17121,17122,17145,17166,17170,17171,17179,17213,17257,17258,17259,17261,17287,17288,17399,17401,17403,17405,17438,17439,17445,17446,17447,17450,17461,17483,17497,17513,17519,17543,17629,17694,17778,17786,17874,17957,17972,18056,18186,18324,18341,18344,18345,18346,18358,18362,18429,18461,18464,18465,18506,18510,18511,18523,18535,18541,18680,18707,18725,18727,18756,18787,18860,18861,18894,18902,18905,18953,18954,18963,19030,19033,19068,19114,19123,19125,19135,19179,19198,19203,19206,19225,19240,19255,19281,19302,19304,19310,19314,19330,19341,19374,19375,19378,19402,19407,19436,19457,19464,19500,19540,19574,19605,19610,19612,19613,19641,19643,19677,19838,19861,19883,19894,19909,19919,19920,19935,19950,19957,19965,19986,19994,20014,20045,20051,20072,20073,20168,20180,20192,20195,20215,20218,20262,20350,20410,20411,20435,20498,20500,20589,20627,20628,20902,20913,22007,22027,22034,22137,22148,22209,22324,22328,22332,22333,22428,22437,22522,22523,22524,22545,22565,22589,22601,22669,22672,22836,22860,22882,22972,22989,22991,22993,23118]]],["+",[92,87,[[0,5,5,0,5,[[17,1,1,0,1],[18,2,2,1,3],[25,1,1,3,4],[44,1,1,4,5]]],[1,4,3,5,8,[[52,1,1,5,6],[82,1,1,6,7],[83,2,1,7,8]]],[2,1,1,8,9,[[107,1,1,8,9]]],[3,4,4,9,13,[[120,1,1,9,10],[130,1,1,10,11],[132,1,1,11,12],[148,1,1,12,13]]],[4,2,2,13,15,[[154,1,1,13,14],[161,1,1,14,15]]],[5,3,3,15,18,[[187,1,1,15,16],[189,1,1,16,17],[193,1,1,17,18]]],[6,3,2,18,20,[[228,1,1,18,19],[229,2,1,19,20]]],[7,1,1,20,21,[[234,1,1,20,21]]],[8,3,3,21,24,[[236,1,1,21,22],[244,1,1,22,23],[247,1,1,23,24]]],[9,1,1,24,25,[[277,1,1,24,25]]],[10,2,2,25,27,[[292,2,2,25,27]]],[11,6,6,27,33,[[313,1,1,27,28],[316,2,2,28,30],[322,2,2,30,32],[331,1,1,32,33]]],[13,4,4,33,37,[[372,1,1,33,34],[386,1,1,34,35],[396,1,1,35,36],[398,1,1,36,37]]],[15,2,2,37,39,[[421,1,1,37,38],[425,1,1,38,39]]],[16,1,1,39,40,[[431,1,1,39,40]]],[17,2,2,40,42,[[436,1,1,40,41],[471,1,1,41,42]]],[18,17,15,42,57,[[504,1,1,42,43],[508,1,1,43,44],[514,3,3,44,47],[516,1,1,47,48],[532,1,1,48,49],[539,1,1,49,50],[548,2,2,50,52],[552,3,2,52,54],[560,2,1,54,55],[609,1,1,55,56],[618,1,1,56,57]]],[19,9,9,57,66,[[630,1,1,57,58],[632,1,1,58,59],[634,1,1,59,60],[650,1,1,60,61],[651,2,2,61,63],[652,2,2,63,65],[654,1,1,65,66]]],[20,2,2,66,68,[[663,1,1,66,67],[665,1,1,67,68]]],[22,7,7,68,75,[[706,1,1,68,69],[715,1,1,69,70],[718,1,1,70,71],[721,1,1,71,72],[740,1,1,72,73],[742,1,1,73,74],[743,1,1,74,75]]],[23,5,5,75,80,[[750,1,1,75,76],[782,1,1,76,77],[783,1,1,77,78],[788,1,1,78,79],[795,1,1,79,80]]],[25,4,3,80,83,[[803,2,1,80,81],[810,1,1,81,82],[821,1,1,82,83]]],[28,1,1,83,84,[[877,1,1,83,84]]],[32,2,2,84,86,[[893,1,1,84,85],[899,1,1,85,86]]],[37,1,1,86,87,[[918,1,1,86,87]]]],[427,464,465,694,1382,1584,2488,2499,3275,3761,4150,4220,4723,4947,5164,5860,5897,5979,7002,7047,7175,7228,7411,7480,8284,8779,8790,9548,9606,9619,9812,9818,10067,11324,11602,11835,11882,12543,12685,12803,12881,13757,14294,14332,14451,14457,14458,14524,14733,14837,14977,14985,15075,15076,15242,16161,16284,16486,16525,16600,17050,17094,17098,17119,17121,17170,17403,17447,18186,18358,18429,18511,18860,18894,18902,19114,19909,19935,20014,20262,20498,20628,20902,22333,22589,22669,22993]]],["Nay",[7,7,[[0,1,1,0,1,[[32,1,1,0,1]]],[6,1,1,1,2,[[229,1,1,1,2]]],[8,1,1,2,3,[[237,1,1,2,3]]],[9,2,2,3,5,[[279,2,2,3,5]]],[11,2,2,5,7,[[315,1,1,5,6],[316,1,1,6,7]]]],[970,7047,7264,8329,8342,9589,9619]]],["Neither",[4,4,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,2,2,1,3,[[714,1,1,1,2],[734,1,1,2,3]]],[30,1,1,3,4,[[888,1,1,3,4]]]],[10054,18345,18756,22524]]],["Whither",[1,1,[[8,1,1,0,1,[[262,1,1,0,1]]]],[7940]]],["cannot",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13754]]],["nay",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7140]]],["neither",[64,62,[[0,2,2,0,2,[[18,1,1,0,1],[21,1,1,1,2]]],[1,1,1,2,3,[[85,1,1,2,3]]],[2,1,1,3,4,[[108,1,1,3,4]]],[3,1,1,4,5,[[130,1,1,4,5]]],[4,3,3,5,8,[[153,1,1,5,6],[154,1,1,6,7],[172,1,1,7,8]]],[5,2,2,8,10,[[187,1,1,8,9],[194,1,1,9,10]]],[6,2,2,10,12,[[223,2,2,10,12]]],[9,2,2,12,14,[[267,1,1,12,13],[285,1,1,13,14]]],[13,1,1,14,15,[[398,1,1,14,15]]],[14,1,1,15,16,[[411,1,1,15,16]]],[15,2,2,16,18,[[420,2,2,16,18]]],[16,1,1,18,19,[[429,1,1,18,19]]],[17,3,3,19,22,[[438,2,2,19,21],[440,1,1,21,22]]],[18,5,5,22,27,[[483,1,1,22,23],[504,1,1,23,24],[514,1,1,24,25],[546,1,1,25,26],[586,1,1,26,27]]],[19,9,9,27,36,[[630,1,1,27,28],[631,1,1,28,29],[633,1,1,29,30],[649,1,1,30,31],[650,1,1,31,32],[651,2,2,32,34],[654,1,1,34,35],[657,1,1,35,36]]],[20,3,3,36,39,[[663,1,1,36,37],[665,2,2,37,39]]],[22,7,7,39,46,[[685,1,1,39,40],[721,1,1,40,41],[722,1,1,41,42],[729,1,1,42,43],[732,1,1,43,44],[734,1,1,44,45],[742,1,1,45,46]]],[23,10,9,46,55,[[751,2,1,46,47],[753,1,1,47,48],[755,1,1,48,49],[760,1,1,49,50],[762,1,1,50,51],[766,2,2,51,53],[773,1,1,53,54],[774,1,1,54,55]]],[25,3,3,55,58,[[803,1,1,55,56],[810,1,1,56,57],[821,1,1,57,58]]],[27,1,1,58,59,[[865,1,1,58,59]]],[30,3,2,59,61,[[888,3,2,59,61]]],[31,1,1,61,62,[[891,1,1,61,62]]]],[474,559,2572,3312,4117,4913,4947,5430,5860,6003,6891,6898,8043,8530,11890,12249,12503,12504,12778,12908,12913,12973,13986,14294,14451,14950,15767,16466,16495,16565,17037,17050,17080,17098,17179,17259,17403,17445,17446,17786,18523,18541,18680,18727,18756,18894,19135,19198,19240,19341,19407,19457,19464,19643,19677,20498,20627,20913,22148,22522,22524,22565]]],["no",[42,39,[[0,3,2,0,2,[[12,1,1,0,1],[36,2,1,1,2]]],[1,3,3,2,5,[[59,1,1,2,3],[65,2,2,3,5]]],[2,1,1,5,6,[[114,1,1,5,6]]],[4,1,1,6,7,[[155,1,1,6,7]]],[6,1,1,7,8,[[223,1,1,7,8]]],[8,3,3,8,11,[[237,1,1,8,9],[252,1,1,9,10],[256,1,1,10,11]]],[9,2,2,11,13,[[267,1,1,11,12],[279,1,1,12,13]]],[10,3,2,13,15,[[293,1,1,13,14],[303,2,1,14,15]]],[11,2,2,15,17,[[324,1,1,15,16],[335,1,1,16,17]]],[12,1,1,17,18,[[353,1,1,17,18]]],[17,3,3,18,21,[[438,1,1,18,19],[451,1,1,19,20],[476,1,1,20,21]]],[18,3,3,21,24,[[517,1,1,21,22],[547,1,1,22,23],[582,1,1,23,24]]],[19,3,3,24,27,[[639,1,1,24,25],[649,1,1,25,26],[655,1,1,26,27]]],[20,2,2,27,29,[[665,1,1,27,28],[667,1,1,28,29]]],[22,2,2,29,31,[[730,1,1,29,30],[740,1,1,30,31]]],[23,6,5,31,36,[[761,1,1,31,32],[766,2,1,32,33],[780,1,1,33,34],[782,1,1,34,35],[794,1,1,35,36]]],[24,1,1,36,37,[[798,1,1,36,37]]],[27,1,1,37,38,[[865,1,1,37,38]]],[37,1,1,38,39,[[918,1,1,38,39]]]],[326,1105,1805,1966,1976,3505,5001,6891,7243,7650,7774,8043,8333,8842,9206,9857,10183,10842,12911,13256,13896,14542,14976,15621,16747,17039,17213,17450,17483,18707,18861,19378,19457,19861,19919,20180,20350,22137,22993]]],["none",[7,7,[[11,1,1,0,1,[[321,1,1,0,1]]],[13,1,1,1,2,[[389,1,1,1,2]]],[18,2,2,2,4,[[546,1,1,2,3],[586,1,1,3,4]]],[23,1,1,4,5,[[794,1,1,4,5]]],[37,1,1,5,6,[[917,1,1,5,6]]],[38,1,1,6,7,[[926,1,1,6,7]]]],[9771,11662,14960,15767,20195,22972,23118]]],["nor",[25,25,[[0,1,1,0,1,[[44,1,1,0,1]]],[4,2,2,1,3,[[154,1,1,1,2],[183,1,1,2,3]]],[5,2,2,3,5,[[196,1,1,3,4],[208,1,1,4,5]]],[6,1,1,5,6,[[223,1,1,5,6]]],[10,1,1,6,7,[[298,1,1,6,7]]],[12,2,2,7,9,[[359,1,1,7,8],[365,1,1,8,9]]],[13,4,4,9,13,[[386,2,2,9,11],[398,2,2,11,13]]],[15,1,1,13,14,[[420,1,1,13,14]]],[16,1,1,14,15,[[429,1,1,14,15]]],[23,3,3,15,18,[[750,1,1,15,16],[760,1,1,16,17],[790,1,1,17,18]]],[25,3,3,18,21,[[803,1,1,18,19],[808,1,1,19,20],[821,1,1,20,21]]],[27,2,2,21,23,[[865,2,2,21,23]]],[30,1,1,23,24,[[888,1,1,23,24]]],[31,1,1,24,25,[[891,1,1,24,25]]]],[1363,4957,5734,6089,6445,6898,9042,10977,11163,11602,11604,11882,11890,12502,12778,19114,19341,20051,20498,20589,20913,22137,22148,22523,22565]]],["not",[478,436,[[0,27,26,0,26,[[14,1,1,0,1],[17,2,2,1,3],[18,2,2,3,5],[20,3,3,5,8],[21,1,1,8,9],[23,1,1,9,10],[25,1,1,10,11],[30,1,1,11,12],[34,1,1,12,13],[36,1,1,13,14],[41,1,1,14,15],[42,1,1,15,16],[43,1,1,16,17],[44,3,3,17,20],[45,1,1,20,21],[46,1,1,21,22],[48,3,2,22,24],[49,2,2,24,26]]],[1,12,12,26,38,[[54,1,1,26,27],[57,1,1,27,28],[61,1,1,28,29],[63,1,1,29,30],[68,2,2,30,32],[69,2,2,32,34],[72,3,3,34,37],[81,1,1,37,38]]],[2,8,8,38,46,[[99,2,2,38,40],[100,1,1,40,41],[105,1,1,41,42],[108,3,3,42,45],[114,1,1,45,46]]],[3,8,7,46,53,[[126,1,1,46,47],[127,1,1,47,48],[128,2,2,48,50],[130,2,1,50,51],[132,1,1,51,52],[137,1,1,52,53]]],[4,13,11,53,64,[[153,1,1,53,54],[154,2,2,54,56],[155,1,1,56,57],[161,3,3,57,60],[172,3,1,60,61],[173,1,1,61,62],[183,1,1,62,63],[185,1,1,63,64]]],[5,13,12,64,76,[[187,1,1,64,65],[193,2,2,65,67],[194,2,2,67,69],[196,5,4,69,73],[197,1,1,73,74],[208,2,2,74,76]]],[6,8,7,76,83,[[214,1,1,76,77],[216,3,3,77,80],[223,2,1,80,81],[228,1,1,81,82],[229,1,1,82,83]]],[7,6,6,83,89,[[232,2,2,83,85],[233,1,1,85,86],[234,3,3,86,89]]],[8,18,18,89,107,[[238,1,1,89,90],[239,1,1,90,91],[241,1,1,91,92],[242,1,1,92,93],[247,2,2,93,95],[251,1,1,95,96],[253,1,1,96,97],[254,1,1,97,98],[255,2,2,98,100],[257,2,2,100,102],[258,1,1,102,103],[260,1,1,103,104],[261,2,2,104,106],[263,1,1,106,107]]],[9,16,14,107,121,[[267,2,1,107,108],[269,1,1,108,109],[275,1,1,109,110],[279,7,6,110,116],[280,2,2,116,118],[283,1,1,118,119],[285,1,1,119,120],[290,1,1,120,121]]],[10,7,7,121,128,[[292,1,1,121,122],[298,1,1,122,123],[307,1,1,123,124],[308,1,1,124,125],[310,2,2,125,127],[312,1,1,127,128]]],[11,11,11,128,139,[[314,1,1,128,129],[316,1,1,129,130],[318,2,2,130,132],[323,1,1,132,133],[330,4,4,133,137],[331,1,1,137,138],[337,1,1,138,139]]],[12,4,4,139,143,[[353,1,1,139,140],[358,1,1,140,141],[359,1,1,141,142],[365,1,1,142,143]]],[13,10,10,143,153,[[379,1,1,143,144],[380,1,1,144,145],[381,1,1,145,146],[384,1,1,146,147],[386,1,1,147,148],[391,1,1,148,149],[395,1,1,149,150],[396,1,1,150,151],[398,1,1,151,152],[401,1,1,152,153]]],[14,1,1,153,154,[[411,1,1,153,154]]],[15,4,3,154,157,[[416,3,2,154,156],[420,1,1,156,157]]],[16,1,1,157,158,[[429,1,1,157,158]]],[17,15,14,158,172,[[438,3,2,158,160],[440,1,1,160,161],[441,1,1,161,162],[444,1,1,162,163],[445,1,1,163,164],[446,1,1,164,165],[448,2,2,165,167],[450,1,1,167,168],[451,1,1,168,169],[455,1,1,169,170],[467,1,1,170,171],[471,1,1,171,172]]],[18,88,75,172,247,[[481,1,1,172,173],[483,1,1,173,174],[486,1,1,174,175],[487,1,1,175,176],[496,1,1,176,177],[499,2,2,177,179],[502,4,3,179,182],[503,1,1,182,183],[504,3,2,183,185],[505,2,2,185,187],[508,1,1,187,188],[509,1,1,188,189],[511,1,1,189,190],[512,6,4,190,194],[513,2,1,194,195],[515,3,2,195,197],[516,1,1,197,198],[518,1,1,198,199],[521,1,1,199,200],[526,1,1,200,201],[527,1,1,201,202],[528,2,1,202,203],[536,2,2,203,205],[539,2,1,205,206],[543,1,1,206,207],[546,8,6,207,213],[548,3,3,213,216],[551,4,3,216,219],[556,2,2,219,221],[560,1,1,221,222],[562,1,1,222,223],[572,1,1,223,224],[579,2,2,224,226],[580,1,1,226,227],[582,1,1,227,228],[586,2,2,228,230],[596,9,9,230,239],[598,2,1,239,240],[615,1,1,240,241],[617,2,1,241,242],[618,2,2,242,244],[620,2,2,244,246],[623,1,1,246,247]]],[19,68,64,247,311,[[628,3,3,247,250],[630,12,12,250,262],[631,9,8,262,270],[632,1,1,270,271],[633,3,3,271,274],[634,1,1,274,275],[635,2,2,275,277],[636,1,1,277,278],[646,1,1,278,279],[647,2,2,279,281],[649,3,3,281,284],[650,11,10,284,294],[651,7,6,294,300],[652,2,2,300,302],[653,2,2,302,304],[654,2,2,304,306],[657,3,3,306,309],[658,3,2,309,311]]],[20,14,11,311,322,[[663,4,3,311,314],[665,4,4,314,318],[666,2,1,318,319],[668,3,2,319,321],[669,1,1,321,322]]],[21,2,2,322,324,[[671,1,1,322,323],[677,1,1,323,324]]],[22,26,25,324,349,[[680,1,1,324,325],[684,1,1,325,326],[685,1,1,326,327],[688,1,1,327,328],[692,1,1,328,329],[694,1,1,329,330],[700,1,1,330,331],[713,1,1,331,332],[714,3,3,332,335],[715,1,1,335,336],[719,4,3,336,339],[721,3,3,339,342],[722,2,2,342,344],[729,1,1,344,345],[732,2,2,345,347],[736,1,1,347,348],[743,1,1,348,349]]],[23,62,55,349,404,[[745,3,3,349,352],[748,2,2,352,354],[749,1,1,354,355],[751,3,3,355,358],[753,3,2,358,360],[754,4,3,360,363],[755,1,1,363,364],[756,1,1,364,365],[757,1,1,365,366],[758,6,4,366,370],[759,1,1,370,371],[760,1,1,371,372],[761,3,2,372,374],[762,2,2,374,376],[764,1,1,376,377],[766,1,1,377,378],[767,1,1,378,379],[769,1,1,379,380],[770,1,1,380,381],[771,4,4,381,385],[773,2,2,385,387],[774,1,1,387,388],[779,1,1,388,389],[781,2,2,389,391],[782,1,1,391,392],[784,2,2,392,394],[785,1,1,394,395],[786,3,2,395,397],[789,1,1,397,398],[790,4,3,398,401],[794,1,1,401,402],[795,2,2,402,404]]],[24,4,4,404,408,[[798,1,1,404,405],[799,2,2,405,407],[800,1,1,407,408]]],[25,4,4,408,412,[[803,1,1,408,409],[808,1,1,409,410],[810,1,1,410,411],[821,1,1,411,412]]],[26,3,3,412,415,[[858,1,1,412,413],[859,2,2,413,415]]],[27,3,2,415,417,[[865,2,1,415,416],[870,1,1,416,417]]],[28,3,3,417,420,[[877,3,3,417,420]]],[29,2,2,420,422,[[883,2,2,420,422]]],[30,3,2,422,424,[[888,3,2,422,424]]],[31,3,2,424,426,[[889,2,1,424,425],[891,1,1,425,426]]],[32,4,4,426,430,[[893,1,1,426,427],[894,1,1,427,428],[899,2,2,428,430]]],[35,2,1,430,431,[[908,2,1,430,431]]],[36,1,1,431,432,[[910,1,1,431,432]]],[37,4,4,432,436,[[911,1,1,432,433],[917,1,1,433,434],[918,2,2,434,436]]]],[361,454,456,474,475,525,529,530,559,647,716,908,1028,1110,1274,1313,1342,1363,1367,1378,1389,1449,1477,1479,1525,1527,1641,1739,1825,1902,2041,2050,2070,2071,2145,2151,2165,2460,2983,2986,3040,3203,3285,3310,3312,3483,4019,4039,4070,4071,4117,4209,4374,4913,4943,4957,4977,5161,5183,5184,5430,5455,5734,5816,5858,5979,5995,6003,6006,6070,6072,6083,6089,6113,6445,6448,6617,6672,6677,6693,6888,7018,7044,7143,7147,7157,7183,7186,7189,7293,7317,7334,7360,7479,7480,7602,7693,7710,7733,7768,7802,7810,7827,7886,7914,7925,7955,8042,8110,8234,8329,8337,8342,8345,8349,8350,8358,8374,8465,8530,8706,8786,9042,9330,9381,9416,9419,9488,9569,9627,9690,9701,9844,10050,10053,10055,10056,10071,10246,10842,10947,10977,11163,11465,11486,11497,11549,11604,11711,11802,11834,11890,11987,12249,12364,12373,12502,12775,12908,12910,12968,13007,13085,13088,13122,13173,13174,13234,13256,13343,13649,13756,13969,13986,14040,14053,14181,14215,14223,14253,14258,14271,14282,14294,14297,14300,14302,14348,14364,14393,14429,14432,14434,14435,14449,14491,14511,14520,14544,14594,14664,14671,14702,14795,14801,14837,14880,14941,14949,14950,14952,14962,14963,14985,14988,14994,15067,15069,15071,15191,15193,15242,15279,15462,15523,15545,15551,15621,15756,15769,15906,15908,15917,15929,15934,15941,16014,16020,16031,16084,16239,16271,16280,16281,16295,16300,16344,16408,16410,16415,16456,16458,16460,16462,16466,16476,16480,16482,16483,16484,16485,16486,16492,16495,16496,16503,16504,16505,16511,16517,16524,16544,16560,16565,16600,16612,16635,16646,16943,16967,16976,17037,17041,17043,17047,17048,17053,17054,17057,17061,17064,17066,17067,17075,17080,17094,17096,17100,17107,17108,17119,17122,17145,17166,17171,17179,17257,17258,17261,17287,17288,17399,17401,17405,17438,17439,17445,17446,17461,17497,17513,17519,17543,17629,17694,17778,17786,17874,17957,17972,18056,18324,18341,18344,18346,18362,18461,18464,18465,18506,18510,18523,18535,18541,18680,18725,18727,18787,18905,18953,18954,18963,19030,19033,19068,19123,19125,19135,19179,19198,19203,19206,19225,19240,19255,19281,19302,19304,19310,19314,19330,19341,19374,19375,19402,19407,19436,19464,19500,19540,19574,19605,19610,19612,19613,19641,19643,19677,19838,19883,19894,19920,19950,19957,19965,19986,19994,20045,20051,20072,20073,20168,20215,20218,20350,20410,20411,20435,20500,20589,20627,20913,22007,22027,22034,22148,22209,22324,22328,22332,22428,22437,22522,22523,22545,22565,22589,22601,22669,22672,22836,22860,22882,22972,22989,22991]]],["nothing",[3,3,[[3,1,1,0,1,[[138,1,1,0,1]]],[17,1,1,1,2,[[459,1,1,1,2]]],[23,1,1,2,3,[[794,1,1,2,3]]]],[4391,13461,20192]]],["rather",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16885]]]]},{"k":"H409","v":[["*",[4,3,[[26,4,3,0,3,[[851,1,1,0,1],[853,1,1,1,2],[854,2,1,2,3]]]],[21782,21856,21884]]],["nor",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21884]]],["not",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[853,1,1,1,2],[854,1,1,2,3]]]],[21782,21856,21884]]]]},{"k":"H410","v":[["*",[242,232,[[0,17,17,0,17,[[13,4,4,0,4],[15,1,1,4,5],[16,1,1,5,6],[20,1,1,6,7],[27,1,1,7,8],[30,2,2,8,10],[34,3,3,10,13],[42,1,1,13,14],[45,1,1,14,15],[47,1,1,15,16],[48,1,1,16,17]]],[1,7,6,17,23,[[55,1,1,17,18],[64,2,2,18,20],[69,1,1,20,21],[83,3,2,21,23]]],[3,10,10,23,33,[[128,1,1,23,24],[132,1,1,24,25],[139,4,4,25,29],[140,4,4,29,33]]],[4,14,14,33,47,[[155,1,1,33,34],[156,2,2,34,36],[157,1,1,36,37],[158,1,1,37,38],[159,2,2,38,40],[162,1,1,40,41],[180,1,1,41,42],[184,4,4,42,46],[185,1,1,46,47]]],[5,4,3,47,50,[[189,1,1,47,48],[208,2,1,48,49],[210,1,1,49,50]]],[6,1,1,50,51,[[219,1,1,50,51]]],[8,1,1,51,52,[[237,1,1,51,52]]],[9,5,5,52,57,[[288,4,4,52,56],[289,1,1,56,57]]],[15,4,4,57,61,[[413,1,1,57,58],[417,1,1,58,59],[421,2,2,59,61]]],[17,56,56,61,117,[[440,1,1,61,62],[443,4,4,62,66],[444,1,1,66,67],[447,1,1,67,68],[448,3,3,68,71],[450,4,4,71,75],[451,1,1,75,76],[453,1,1,76,77],[454,1,1,77,78],[455,2,2,78,80],[456,2,2,80,82],[457,3,3,82,85],[458,1,1,85,86],[460,1,1,86,87],[462,4,4,87,91],[466,3,3,91,94],[467,1,1,94,95],[468,4,4,95,99],[469,6,6,99,105],[470,2,2,105,107],[471,3,3,107,110],[472,3,3,110,113],[473,1,1,113,114],[475,2,2,114,116],[476,1,1,116,117]]],[18,77,73,117,190,[[482,1,1,117,118],[484,1,1,118,119],[487,2,2,119,121],[493,1,1,121,122],[494,1,1,122,123],[495,4,4,123,127],[496,1,1,127,128],[499,3,2,128,130],[506,2,2,130,132],[508,1,1,132,133],[513,1,1,133,134],[519,3,3,134,137],[520,1,1,137,138],[521,1,1,138,139],[527,1,1,139,140],[529,2,2,140,142],[532,1,1,142,143],[534,1,1,143,144],[540,1,1,144,145],[545,5,4,145,149],[550,2,2,149,151],[551,1,1,151,152],[554,3,3,152,155],[555,7,7,155,162],[557,1,1,162,163],[558,2,1,163,164],[559,1,1,164,165],[560,1,1,165,166],[561,1,1,166,167],[562,1,1,167,168],[563,1,1,168,169],[566,3,3,169,172],[567,1,1,172,173],[571,2,1,173,174],[572,1,1,174,175],[576,1,1,175,176],[579,1,1,176,177],[581,1,1,177,178],[583,2,2,178,180],[584,1,1,180,181],[595,2,2,181,183],[613,1,1,183,184],[616,2,2,184,186],[617,1,1,186,187],[623,1,1,187,188],[626,1,1,188,189],[627,1,1,189,190]]],[19,1,1,190,191,[[630,1,1,190,191]]],[22,23,22,191,213,[[683,1,1,191,192],[686,1,1,192,193],[687,1,1,193,194],[688,1,1,194,195],[690,1,1,195,196],[692,1,1,196,197],[709,1,1,197,198],[718,1,1,198,199],[720,1,1,199,200],[721,2,2,200,202],[722,4,3,202,205],[723,5,5,205,210],[724,2,2,210,212],[735,1,1,212,213]]],[23,2,2,213,215,[[776,1,1,213,214],[795,1,1,214,215]]],[24,1,1,215,216,[[799,1,1,215,216]]],[25,5,4,216,220,[[811,1,1,216,217],[829,3,2,217,219],[833,1,1,219,220]]],[26,4,2,220,222,[[858,1,1,220,221],[860,3,1,221,222]]],[27,3,3,222,225,[[862,1,1,222,223],[872,2,2,223,225]]],[31,1,1,225,226,[[892,1,1,225,226]]],[32,2,2,226,228,[[894,1,1,226,227],[899,1,1,227,228]]],[33,1,1,228,229,[[900,1,1,228,229]]],[38,3,3,229,232,[[925,1,1,229,230],[926,2,2,230,232]]]],[354,355,356,358,394,398,546,776,886,902,1012,1014,1022,1304,1389,1454,1498,1658,1922,1931,2056,2502,2510,4072,4216,4424,4435,4438,4439,4450,4454,4462,4469,4999,5028,5035,5062,5101,5120,5132,5203,5643,5762,5770,5776,5779,5836,5903,6448,6495,6800,7243,8633,8634,8635,8650,8658,12301,12387,12542,12543,12959,13032,13034,13042,13049,13053,13134,13156,13160,13161,13207,13214,13216,13228,13249,13297,13319,13341,13355,13369,13377,13391,13402,13406,13435,13465,13483,13490,13492,13494,13602,13611,13616,13641,13654,13656,13664,13679,13688,13693,13695,13706,13714,13720,13722,13733,13741,13758,13762,13774,13779,13783,13834,13873,13883,13913,13977,14006,14052,14053,14093,14109,14120,14148,14150,14165,14169,14205,14214,14309,14311,14336,14444,14557,14563,14564,14570,14591,14669,14711,14715,14751,14770,14840,14919,14920,14924,14935,15031,15037,15056,15102,15106,15107,15120,15121,15131,15132,15147,15148,15154,15208,15226,15234,15242,15261,15279,15299,15332,15333,15352,15380,15432,15457,15507,15545,15592,15665,15672,15710,15896,15897,16222,16256,16262,16269,16346,16391,16395,16482,17755,17817,17835,17871,17902,17941,18253,18438,18485,18515,18517,18543,18548,18550,18575,18576,18581,18582,18583,18592,18595,18770,19749,20268,20395,20638,21159,21166,21269,21992,22072,22104,22249,22252,22570,22596,22682,22686,23098,23113,23114]]],["+",[8,8,[[0,1,1,0,1,[[48,1,1,0,1]]],[15,1,1,1,2,[[417,1,1,1,2]]],[17,3,3,2,5,[[443,1,1,2,3],[455,1,1,3,4],[470,1,1,4,5]]],[18,3,3,5,8,[[506,1,1,5,6],[581,1,1,6,7],[623,1,1,7,8]]]],[1498,12387,13034,13355,13722,14309,15592,16346]]],["God",[205,200,[[0,15,15,0,15,[[13,4,4,0,4],[15,1,1,4,5],[16,1,1,5,6],[20,1,1,6,7],[27,1,1,7,8],[30,1,1,8,9],[34,3,3,9,12],[42,1,1,12,13],[45,1,1,13,14],[47,1,1,14,15]]],[1,5,5,15,20,[[55,1,1,15,16],[64,1,1,16,17],[69,1,1,17,18],[83,2,2,18,20]]],[3,10,10,20,30,[[128,1,1,20,21],[132,1,1,21,22],[139,4,4,22,26],[140,4,4,26,30]]],[4,12,12,30,42,[[155,1,1,30,31],[156,2,2,31,33],[157,1,1,33,34],[158,1,1,34,35],[159,2,2,35,37],[162,1,1,37,38],[184,3,3,38,41],[185,1,1,41,42]]],[5,4,3,42,45,[[189,1,1,42,43],[208,2,1,43,44],[210,1,1,44,45]]],[8,1,1,45,46,[[237,1,1,45,46]]],[9,5,5,46,51,[[288,4,4,46,50],[289,1,1,50,51]]],[15,3,3,51,54,[[413,1,1,51,52],[421,2,2,52,54]]],[17,51,51,54,105,[[440,1,1,54,55],[443,3,3,55,58],[444,1,1,58,59],[447,1,1,59,60],[448,3,3,60,63],[450,4,4,63,67],[451,1,1,67,68],[453,1,1,68,69],[454,1,1,69,70],[455,1,1,70,71],[456,2,2,71,73],[457,3,3,73,76],[458,1,1,76,77],[460,1,1,77,78],[462,4,4,78,82],[466,3,3,82,85],[467,1,1,85,86],[468,3,3,86,89],[469,6,6,89,95],[470,1,1,95,96],[471,3,3,96,99],[472,3,3,99,102],[473,1,1,102,103],[475,2,2,103,105]]],[18,66,63,105,168,[[482,1,1,105,106],[484,1,1,106,107],[487,2,2,107,109],[493,1,1,109,110],[494,1,1,110,111],[495,4,4,111,115],[496,1,1,115,116],[499,3,2,116,118],[506,1,1,118,119],[508,1,1,119,120],[519,3,3,120,123],[520,1,1,123,124],[529,2,2,124,126],[532,1,1,126,127],[534,1,1,127,128],[540,1,1,128,129],[545,5,4,129,133],[550,2,2,133,135],[551,1,1,135,136],[554,3,3,136,139],[555,7,7,139,146],[560,1,1,146,147],[561,1,1,147,148],[562,1,1,148,149],[563,1,1,149,150],[566,2,2,150,152],[567,1,1,152,153],[571,2,1,153,154],[572,1,1,154,155],[576,1,1,155,156],[579,1,1,156,157],[583,2,2,157,159],[584,1,1,159,160],[595,2,2,160,162],[613,1,1,162,163],[616,2,2,163,165],[617,1,1,165,166],[626,1,1,166,167],[627,1,1,167,168]]],[22,16,16,168,184,[[683,1,1,168,169],[686,1,1,169,170],[687,1,1,170,171],[688,1,1,171,172],[690,1,1,172,173],[692,1,1,173,174],[709,1,1,174,175],[718,1,1,175,176],[720,1,1,176,177],[721,2,2,177,179],[723,4,4,179,183],[724,1,1,183,184]]],[23,2,2,184,186,[[776,1,1,184,185],[795,1,1,185,186]]],[24,1,1,186,187,[[799,1,1,186,187]]],[25,4,3,187,190,[[811,1,1,187,188],[829,3,2,188,190]]],[26,2,2,190,192,[[858,1,1,190,191],[860,1,1,191,192]]],[27,3,3,192,195,[[862,1,1,192,193],[872,2,2,193,195]]],[31,1,1,195,196,[[892,1,1,195,196]]],[32,1,1,196,197,[[899,1,1,196,197]]],[33,1,1,197,198,[[900,1,1,197,198]]],[38,2,2,198,200,[[925,1,1,198,199],[926,1,1,199,200]]]],[354,355,356,358,394,398,546,776,886,1012,1014,1022,1304,1389,1454,1658,1922,2056,2502,2510,4072,4216,4424,4435,4438,4439,4450,4454,4462,4469,4999,5028,5035,5062,5101,5120,5132,5203,5762,5776,5779,5836,5903,6448,6495,7243,8633,8634,8635,8650,8658,12301,12542,12543,12959,13032,13042,13049,13053,13134,13156,13160,13161,13207,13214,13216,13228,13249,13297,13319,13341,13369,13377,13391,13402,13406,13435,13465,13483,13490,13492,13494,13602,13611,13616,13641,13654,13664,13679,13688,13693,13695,13706,13714,13720,13733,13741,13758,13762,13774,13779,13783,13834,13873,13883,13977,14006,14052,14053,14093,14109,14120,14148,14150,14165,14169,14205,14214,14311,14336,14557,14563,14564,14570,14711,14715,14751,14770,14840,14919,14920,14924,14935,15031,15037,15056,15102,15106,15107,15120,15121,15131,15132,15147,15148,15154,15242,15261,15279,15299,15333,15352,15380,15432,15457,15507,15545,15665,15672,15710,15896,15897,16222,16256,16262,16269,16391,16395,17755,17817,17835,17871,17902,17941,18253,18438,18485,18515,18517,18575,18576,18582,18583,18595,19749,20268,20395,20638,21159,21166,21992,22072,22104,22249,22252,22570,22682,22686,23098,23113]]],["God's",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13656]]],["god",[14,12,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[6,1,1,2,3,[[219,1,1,2,3]]],[18,3,2,3,5,[[521,1,1,3,4],[558,2,1,4,5]]],[22,6,5,5,10,[[722,4,3,5,8],[723,1,1,8,9],[724,1,1,9,10]]],[26,1,1,10,11,[[860,1,1,10,11]]],[38,1,1,11,12,[[926,1,1,11,12]]]],[2510,5770,6800,14591,15226,18543,18548,18550,18581,18592,22072,23114]]],["gods",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[1931,22072]]],["goodly",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15208]]],["great",[1,1,[[18,1,1,0,1,[[513,1,1,0,1]]]],[14444]]],["idols",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18770]]],["might",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5643]]],["mighty",[4,4,[[17,1,1,0,1,[[476,1,1,0,1]]],[18,3,3,1,4,[[527,1,1,1,2],[559,1,1,2,3],[566,1,1,3,4]]]],[13913,14669,15234,15332]]],["power",[3,3,[[0,1,1,0,1,[[30,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]],[32,1,1,2,3,[[894,1,1,2,3]]]],[902,16482,22596]]],["strong",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21269]]]]},{"k":"H411","v":[["*",[9,9,[[0,4,4,0,4,[[18,2,2,0,2],[25,2,2,2,4]]],[2,1,1,4,5,[[107,1,1,4,5]]],[4,3,3,5,8,[[156,1,1,5,6],[159,1,1,6,7],[171,1,1,7,8]]],[12,1,1,8,9,[[357,1,1,8,9]]]],[465,482,695,696,3278,5046,5133,5417,10934]]],["These",[1,1,[[12,1,1,0,1,[[357,1,1,0,1]]]],[10934]]],["these",[6,6,[[0,3,3,0,3,[[18,1,1,0,1],[25,2,2,1,3]]],[2,1,1,3,4,[[107,1,1,3,4]]],[4,2,2,4,6,[[156,1,1,4,5],[171,1,1,5,6]]]],[465,695,696,3278,5046,5417]]],["those",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[4,1,1,1,2,[[159,1,1,1,2]]]],[482,5133]]]]},{"k":"H412","v":[]},{"k":"H413","v":[["*",[5441,4180,[[0,471,376,0,376,[[0,1,1,0,1],[1,2,2,1,3],[2,9,7,3,10],[3,11,8,10,18],[5,7,7,18,25],[6,7,5,25,30],[7,8,5,30,35],[8,3,2,35,37],[10,1,1,37,38],[11,7,5,38,43],[12,3,3,43,46],[13,6,5,46,51],[14,5,5,51,56],[15,8,7,56,63],[16,5,4,63,67],[17,13,12,67,79],[18,16,13,79,92],[19,8,7,92,99],[20,8,6,99,105],[21,13,10,105,115],[22,4,4,115,119],[23,33,24,119,143],[24,6,5,143,148],[25,9,7,148,155],[26,19,16,155,171],[27,6,6,171,177],[28,8,6,177,183],[29,14,12,183,195],[30,15,13,195,208],[31,9,8,208,216],[32,2,2,216,218],[33,13,9,218,227],[34,9,7,227,234],[35,1,1,234,235],[36,18,14,235,249],[37,10,7,249,256],[38,11,9,256,265],[39,7,6,265,271],[40,16,14,271,285],[41,27,19,285,304],[42,15,14,304,318],[43,16,15,318,333],[44,16,11,333,344],[45,7,4,344,348],[46,12,9,348,357],[47,13,10,357,367],[48,8,4,367,371],[49,6,5,371,376]]],[1,391,297,376,673,[[50,4,3,376,379],[51,5,5,379,384],[52,26,14,384,398],[53,19,16,398,414],[54,7,7,414,421],[55,22,13,421,434],[56,18,14,434,448],[57,18,12,448,460],[58,17,11,460,471],[59,12,9,471,480],[60,4,3,480,483],[61,9,9,483,492],[62,5,5,492,497],[63,13,11,497,508],[64,4,3,508,511],[65,20,15,511,526],[66,4,4,526,530],[67,11,9,530,539],[68,24,14,539,553],[69,6,5,553,558],[70,3,1,558,559],[71,5,5,559,564],[72,5,5,564,569],[73,13,9,569,578],[74,9,6,578,584],[75,8,7,584,591],[76,1,1,591,592],[77,13,12,592,604],[78,4,4,604,608],[79,7,6,608,614],[80,4,4,614,618],[81,17,14,618,632],[82,15,9,632,641],[83,10,8,641,649],[84,3,3,649,652],[85,12,9,652,661],[86,2,1,661,662],[87,1,1,662,663],[88,4,4,663,667],[89,7,6,667,673]]],[2,240,180,673,853,[[90,7,5,673,678],[91,4,3,678,681],[93,15,14,681,695],[94,5,5,695,700],[95,11,9,700,709],[96,4,4,709,713],[97,9,8,713,721],[98,16,13,721,734],[99,14,10,734,744],[100,5,3,744,747],[101,5,4,747,751],[102,8,6,751,757],[103,23,17,757,774],[104,8,4,774,778],[105,14,10,778,788],[106,10,6,788,794],[107,8,7,794,801],[108,7,6,801,807],[109,5,4,807,811],[110,12,7,811,818],[111,12,7,818,825],[112,14,10,825,835],[113,8,7,835,842],[114,10,6,842,848],[115,2,2,848,850],[116,4,3,850,853]]],[3,355,275,853,1128,[[117,2,2,853,855],[118,2,1,855,856],[119,5,5,856,861],[120,9,7,861,868],[121,15,13,868,881],[122,11,8,881,889],[123,7,5,889,894],[124,8,6,894,900],[125,6,6,900,906],[126,8,5,906,911],[127,12,10,911,921],[128,10,7,921,928],[129,10,7,928,935],[130,19,17,935,952],[131,17,11,952,963],[132,31,22,963,985],[133,9,8,985,993],[134,10,9,993,1002],[135,11,8,1002,1010],[136,17,14,1010,1024],[137,6,5,1024,1029],[138,32,21,1029,1050],[139,19,14,1050,1064],[140,7,4,1064,1068],[141,8,7,1068,1075],[142,3,2,1075,1077],[143,8,7,1077,1084],[144,2,2,1084,1086],[145,1,1,1086,1087],[146,2,2,1087,1089],[147,15,12,1089,1101],[148,14,12,1101,1113],[149,6,4,1113,1117],[150,4,3,1117,1120],[151,7,6,1120,1126],[152,2,2,1126,1128]]],[4,205,170,1128,1298,[[153,16,14,1128,1142],[154,8,8,1142,1150],[155,5,3,1150,1153],[156,11,9,1153,1162],[157,11,6,1162,1168],[158,1,1,1168,1169],[159,4,3,1169,1172],[160,1,1,1172,1173],[161,11,9,1173,1182],[162,6,4,1182,1186],[163,4,4,1186,1190],[164,4,3,1190,1193],[165,6,6,1193,1199],[166,1,1,1199,1200],[167,2,2,1200,1202],[168,1,1,1202,1203],[169,7,5,1203,1208],[170,9,8,1208,1216],[171,2,2,1216,1218],[172,9,7,1218,1225],[173,9,8,1225,1233],[174,8,7,1233,1240],[175,7,5,1240,1245],[176,4,3,1245,1248],[177,4,4,1248,1252],[178,7,5,1252,1257],[179,4,4,1257,1261],[180,5,5,1261,1266],[181,4,3,1266,1269],[182,5,5,1269,1274],[183,15,11,1274,1285],[184,8,7,1285,1292],[185,2,2,1292,1294],[186,4,4,1294,1298]]],[5,216,158,1298,1456,[[187,6,5,1298,1303],[188,8,7,1303,1310],[189,5,5,1310,1315],[190,11,10,1315,1325],[191,7,6,1325,1331],[192,6,5,1331,1336],[193,7,5,1336,1341],[194,11,8,1341,1349],[195,18,13,1349,1362],[196,25,16,1362,1378],[197,8,6,1378,1384],[199,2,2,1384,1386],[200,4,2,1386,1388],[201,15,10,1388,1398],[202,2,2,1398,1400],[203,6,5,1400,1405],[204,17,13,1405,1418],[205,3,3,1418,1421],[206,8,4,1421,1425],[207,6,4,1425,1429],[208,29,15,1429,1444],[209,2,2,1444,1446],[210,10,10,1446,1456]]],[6,227,180,1456,1636,[[211,2,2,1456,1458],[212,5,4,1458,1462],[213,6,5,1462,1467],[214,16,13,1467,1480],[216,23,19,1480,1499],[217,16,11,1499,1510],[218,9,9,1510,1519],[219,17,13,1519,1532],[220,5,5,1532,1537],[221,22,17,1537,1554],[222,4,3,1554,1557],[223,19,12,1557,1569],[224,4,3,1569,1572],[225,4,4,1572,1576],[226,18,15,1576,1591],[227,1,1,1591,1592],[228,11,11,1592,1603],[229,17,11,1603,1614],[230,17,15,1614,1629],[231,11,7,1629,1636]]],[7,21,18,1636,1654,[[232,6,5,1636,1641],[233,7,7,1641,1648],[234,5,3,1648,1651],[235,3,3,1651,1654]]],[8,354,273,1654,1927,[[236,5,5,1654,1659],[237,7,4,1659,1663],[238,13,11,1663,1674],[239,8,6,1674,1680],[240,4,4,1680,1684],[241,7,6,1684,1690],[242,9,6,1690,1696],[243,8,6,1696,1702],[244,8,8,1702,1710],[245,14,11,1710,1721],[246,7,6,1721,1727],[247,10,9,1727,1736],[248,7,5,1736,1741],[249,28,18,1741,1759],[250,16,14,1759,1773],[251,20,14,1773,1787],[252,28,20,1787,1807],[253,6,6,1807,1813],[254,16,12,1813,1825],[255,18,15,1825,1840],[256,10,8,1840,1848],[257,10,8,1848,1856],[258,16,14,1856,1870],[259,7,6,1870,1876],[260,11,8,1876,1884],[261,17,11,1884,1895],[262,7,6,1895,1901],[263,15,10,1901,1911],[264,9,6,1911,1917],[265,11,8,1917,1925],[266,2,2,1925,1927]]],[9,307,232,1927,2159,[[267,12,12,1927,1939],[268,12,7,1939,1946],[269,22,16,1946,1962],[270,4,3,1962,1965],[271,9,8,1965,1973],[272,5,5,1973,1978],[273,9,9,1978,1987],[274,2,2,1987,1989],[275,9,7,1989,1996],[276,4,3,1996,1999],[277,28,18,1999,2017],[278,17,13,2017,2030],[279,15,15,2030,2045],[280,30,17,2045,2062],[281,11,10,2062,2072],[282,13,10,2072,2082],[283,18,13,2082,2095],[284,14,10,2095,2105],[285,21,13,2105,2118],[286,15,10,2118,2128],[287,6,5,2128,2133],[288,2,2,2133,2135],[289,8,5,2135,2140],[290,21,19,2140,2159]]],[10,288,214,2159,2373,[[291,5,4,2159,2163],[292,15,13,2163,2176],[293,6,6,2176,2182],[294,2,2,2182,2184],[295,6,5,2184,2189],[296,7,5,2189,2194],[297,4,4,2194,2198],[298,40,23,2198,2221],[299,5,4,2221,2225],[300,5,4,2225,2229],[301,8,7,2229,2236],[302,24,14,2236,2250],[303,25,19,2250,2269],[304,9,6,2269,2275],[305,2,2,2275,2277],[306,6,5,2277,2282],[307,14,11,2282,2293],[308,22,17,2293,2310],[309,8,6,2310,2316],[310,24,21,2316,2337],[311,23,17,2337,2354],[312,28,19,2354,2373]]],[11,293,203,2373,2576,[[313,24,13,2373,2386],[314,15,10,2386,2396],[315,9,6,2396,2402],[316,37,23,2402,2425],[317,21,14,2425,2439],[318,23,17,2439,2456],[319,14,11,2456,2467],[320,12,9,2467,2476],[321,25,15,2476,2491],[322,18,12,2491,2503],[323,8,7,2503,2510],[324,2,2,2510,2512],[325,4,4,2512,2516],[326,3,2,2516,2518],[327,1,1,2518,2519],[328,4,3,2519,2522],[329,2,2,2522,2524],[330,19,12,2524,2536],[331,16,12,2536,2548],[332,14,10,2548,2558],[333,2,1,2558,2559],[334,11,8,2559,2567],[335,7,7,2567,2574],[337,2,2,2574,2576]]],[12,65,56,2576,2632,[[339,1,1,2576,2577],[344,1,1,2577,2578],[345,1,1,2578,2579],[346,1,1,2579,2580],[347,1,1,2580,2581],[348,7,6,2581,2587],[349,7,7,2587,2594],[350,7,5,2594,2599],[351,1,1,2599,2600],[352,3,2,2600,2602],[353,3,2,2602,2604],[354,7,7,2604,2611],[355,1,1,2611,2612],[356,6,4,2612,2616],[358,15,13,2616,2629],[365,1,1,2629,2630],[366,2,2,2630,2632]]],[13,163,119,2632,2751,[[368,2,2,2632,2634],[370,1,1,2634,2635],[371,6,3,2635,2638],[372,21,13,2638,2651],[373,2,2,2651,2653],[374,3,3,2653,2656],[375,3,3,2656,2659],[376,14,8,2659,2667],[377,4,3,2667,2670],[378,4,3,2670,2673],[380,2,2,2673,2675],[382,7,5,2675,2680],[384,22,14,2680,2694],[385,5,4,2694,2698],[386,6,6,2698,2704],[387,2,2,2704,2706],[388,3,2,2706,2708],[389,6,5,2708,2713],[390,6,5,2713,2718],[391,7,6,2718,2724],[392,2,2,2724,2726],[393,1,1,2726,2727],[395,1,1,2727,2728],[396,4,3,2728,2731],[397,1,1,2731,2732],[398,5,4,2732,2736],[399,7,4,2736,2740],[400,11,7,2740,2747],[401,3,2,2747,2749],[402,2,2,2749,2751]]],[14,20,18,2751,2769,[[405,3,3,2751,2754],[406,2,1,2754,2755],[408,1,1,2755,2756],[409,2,2,2756,2758],[410,4,3,2758,2761],[411,5,5,2761,2766],[412,3,3,2766,2769]]],[15,61,48,2769,2817,[[413,5,3,2769,2772],[414,14,10,2772,2782],[416,12,7,2782,2789],[417,2,2,2789,2791],[418,9,8,2791,2799],[419,1,1,2799,2800],[420,4,3,2800,2803],[421,7,7,2803,2810],[422,4,4,2810,2814],[423,1,1,2814,2815],[425,2,2,2815,2817]]],[16,59,38,2817,2855,[[426,4,2,2817,2819],[427,15,7,2819,2826],[428,7,4,2826,2830],[429,11,8,2830,2838],[430,6,6,2838,2844],[431,5,4,2844,2848],[432,3,2,2848,2850],[433,3,1,2850,2851],[434,5,4,2851,2855]]],[17,77,65,2855,2920,[[436,5,4,2855,2859],[437,8,6,2859,2865],[438,1,1,2865,2866],[439,3,3,2866,2869],[440,5,4,2869,2873],[442,1,1,2873,2874],[443,2,1,2874,2875],[444,2,2,2875,2877],[445,3,3,2877,2880],[446,1,1,2880,2881],[448,3,2,2881,2883],[450,6,5,2883,2888],[451,2,2,2888,2890],[453,1,1,2890,2891],[456,2,2,2891,2893],[457,2,2,2893,2895],[464,2,2,2895,2897],[465,2,2,2897,2899],[466,1,1,2899,2900],[467,2,2,2900,2902],[468,2,2,2902,2904],[469,5,4,2904,2908],[471,1,1,2908,2909],[473,3,3,2909,2912],[474,1,1,2912,2913],[475,1,1,2913,2914],[476,3,2,2914,2916],[477,7,4,2916,2920]]],[18,142,123,2920,3043,[[479,3,2,2920,2922],[480,1,1,2922,2923],[481,2,2,2923,2925],[482,2,2,2925,2927],[484,1,1,2927,2928],[495,1,1,2928,2929],[499,4,4,2929,2933],[502,3,3,2933,2936],[504,2,1,2936,2937],[505,4,3,2937,2940],[507,4,3,2940,2943],[508,3,3,2943,2946],[509,3,2,2946,2948],[510,3,3,2948,2951],[511,3,2,2951,2953],[513,1,1,2953,2954],[514,1,1,2954,2955],[516,1,1,2955,2956],[517,4,3,2956,2959],[518,1,1,2959,2960],[519,4,4,2960,2964],[520,4,2,2964,2966],[527,2,1,2966,2967],[528,1,1,2967,2968],[532,1,1,2968,2969],[533,1,1,2969,2970],[536,2,2,2970,2972],[538,1,1,2972,2973],[539,1,1,2973,2974],[543,1,1,2974,2975],[546,4,4,2975,2979],[548,1,1,2979,2980],[550,1,1,2980,2981],[554,3,1,2981,2982],[555,1,1,2982,2983],[556,2,2,2983,2985],[557,1,1,2985,2986],[561,3,2,2986,2988],[562,2,1,2988,2989],[563,4,4,2989,2993],[565,2,2,2993,2995],[567,1,1,2995,2996],[568,2,2,2996,2998],[572,1,1,2998,2999],[576,2,2,2999,3001],[578,1,1,3001,3002],[579,4,4,3002,3006],[581,4,4,3006,3010],[582,2,1,3010,3011],[584,6,6,3011,3017],[586,1,1,3017,3018],[596,7,6,3018,3024],[597,1,1,3024,3025],[598,1,1,3025,3026],[600,4,2,3026,3028],[606,1,1,3028,3029],[607,1,1,3029,3030],[608,1,1,3030,3031],[614,1,1,3031,3032],[615,1,1,3032,3033],[618,1,1,3033,3034],[619,4,3,3034,3037],[620,4,4,3037,3041],[621,1,1,3041,3042],[622,1,1,3042,3043]]],[19,23,19,3043,3062,[[629,2,1,3043,3044],[630,2,1,3044,3045],[632,1,1,3045,3046],[633,2,2,3046,3048],[634,5,4,3048,3052],[635,2,1,3052,3053],[642,1,1,3053,3054],[643,1,1,3054,3055],[644,1,1,3055,3056],[646,2,2,3056,3058],[653,2,2,3058,3060],[657,1,1,3060,3061],[658,1,1,3061,3062]]],[20,23,17,3062,3079,[[659,5,3,3062,3065],[661,2,1,3065,3066],[663,1,1,3066,3067],[664,1,1,3067,3068],[665,3,1,3068,3069],[666,2,1,3069,3070],[667,5,5,3070,3075],[668,1,1,3075,3076],[670,3,3,3076,3079]]],[21,7,5,3079,3084,[[672,1,1,3079,3080],[673,2,1,3080,3081],[674,2,1,3081,3082],[676,1,1,3082,3083],[678,1,1,3083,3084]]],[22,179,140,3084,3224,[[679,1,1,3084,3085],[680,4,3,3085,3088],[681,1,1,3088,3089],[684,2,2,3089,3091],[685,6,4,3091,3095],[686,11,6,3095,3101],[687,1,1,3101,3102],[688,1,1,3102,3103],[689,1,1,3103,3104],[691,3,2,3104,3106],[692,6,5,3106,3111],[694,3,3,3111,3114],[695,2,2,3114,3116],[696,4,3,3116,3119],[697,7,4,3119,3123],[699,3,3,3123,3126],[700,5,5,3126,3131],[701,1,1,3131,3132],[702,1,1,3132,3133],[706,2,2,3133,3135],[707,2,2,3135,3137],[708,1,1,3137,3138],[709,1,1,3138,3139],[710,1,1,3139,3140],[714,18,11,3140,3151],[715,18,14,3151,3165],[716,8,6,3165,3171],[717,7,4,3171,3175],[718,3,3,3175,3178],[719,1,1,3178,3179],[722,3,3,3179,3182],[723,4,3,3182,3185],[724,3,3,3185,3188],[726,3,3,3188,3191],[727,4,3,3191,3194],[728,1,1,3194,3195],[729,11,6,3195,3201],[732,1,1,3201,3202],[733,6,5,3202,3207],[734,2,2,3207,3209],[738,4,4,3209,3213],[740,1,1,3213,3214],[741,1,1,3214,3215],[743,4,4,3215,3219],[744,6,5,3219,3224]]],[23,513,378,3224,3602,[[745,9,9,3224,3233],[746,7,7,3233,3240],[747,8,7,3240,3247],[748,3,3,3247,3250],[749,3,3,3250,3253],[750,3,3,3253,3256],[751,11,9,3256,3265],[752,2,2,3265,3267],[753,3,3,3267,3270],[755,12,10,3270,3280],[756,2,2,3280,3282],[757,10,8,3282,3290],[758,7,6,3290,3296],[759,7,4,3296,3300],[760,5,5,3300,3305],[761,5,5,3305,3310],[762,5,5,3310,3315],[763,5,4,3315,3319],[764,2,2,3319,3321],[765,7,5,3321,3326],[766,4,4,3326,3330],[767,5,5,3330,3335],[768,3,3,3335,3338],[769,15,11,3338,3349],[770,26,16,3349,3365],[771,25,12,3365,3377],[772,10,10,3377,3387],[773,27,16,3387,3403],[774,8,5,3403,3408],[775,4,4,3408,3412],[776,16,13,3412,3425],[777,8,7,3425,3432],[778,14,9,3432,3441],[779,17,11,3441,3452],[780,21,15,3452,3467],[781,13,8,3467,3475],[782,33,22,3475,3497],[783,6,6,3497,3503],[784,16,12,3503,3515],[785,10,8,3515,3523],[786,15,10,3523,3533],[787,5,4,3533,3537],[788,9,6,3537,3543],[789,2,2,3543,3545],[790,7,5,3545,3550],[791,7,5,3550,3555],[792,14,9,3555,3564],[793,11,8,3564,3572],[794,28,16,3572,3588],[795,15,11,3588,3599],[796,3,3,3599,3602]]],[24,11,9,3602,3611,[[797,1,1,3602,3603],[798,3,3,3603,3606],[799,3,2,3606,3608],[800,3,2,3608,3610],[801,1,1,3610,3611]]],[25,493,382,3611,3993,[[802,4,4,3611,3615],[803,14,9,3615,3624],[804,29,15,3624,3639],[805,5,5,3639,3644],[806,2,1,3644,3645],[807,7,6,3645,3651],[808,10,9,3651,3660],[809,15,12,3660,3672],[810,5,4,3672,3676],[811,7,5,3676,3681],[812,8,8,3681,3689],[813,14,12,3689,3701],[814,12,11,3701,3712],[815,12,9,3712,3721],[816,1,1,3721,3722],[817,8,8,3722,3730],[818,9,8,3730,3738],[819,7,5,3738,3743],[820,6,4,3743,3747],[821,24,20,3747,3767],[822,19,14,3767,3781],[823,7,7,3781,3788],[824,16,12,3788,3800],[825,12,10,3800,3810],[826,6,4,3810,3814],[827,4,4,3814,3818],[828,6,5,3818,3823],[829,4,4,3823,3827],[830,5,4,3827,3831],[831,4,4,3831,3835],[832,17,11,3835,3846],[833,6,6,3846,3852],[834,14,11,3852,3863],[835,8,7,3863,3870],[836,2,2,3870,3872],[837,8,7,3872,3879],[838,16,11,3879,3890],[839,5,5,3890,3895],[840,3,3,3895,3898],[841,34,26,3898,3924],[842,15,10,3924,3934],[843,13,8,3934,3942],[844,15,12,3942,3954],[845,23,16,3954,3970],[846,8,5,3970,3975],[847,7,4,3975,3979],[848,10,8,3979,3987],[849,7,6,3987,3993]]],[26,30,23,3993,4016,[[850,1,1,3993,3994],[857,9,6,3994,4000],[858,7,5,4000,4005],[859,7,5,4005,4010],[860,5,5,4010,4015],[861,1,1,4015,4016]]],[27,29,25,4016,4041,[[862,3,3,4016,4019],[863,1,1,4019,4020],[864,5,3,4020,4023],[865,1,1,4023,4024],[866,4,3,4024,4027],[867,1,1,4027,4028],[868,4,4,4028,4032],[869,1,1,4032,4033],[870,2,2,4033,4035],[872,3,3,4035,4038],[873,2,2,4038,4040],[875,2,1,4040,4041]]],[28,12,10,4041,4051,[[876,4,4,4041,4045],[877,4,2,4045,4047],[878,4,4,4047,4051]]],[29,14,10,4051,4061,[[880,1,1,4051,4052],[881,1,1,4052,4053],[882,1,1,4053,4054],[883,2,1,4054,4055],[885,7,5,4055,4060],[886,2,1,4060,4061]]],[31,34,27,4061,4088,[[889,18,14,4061,4075],[890,6,5,4075,4080],[891,7,5,4080,4085],[892,3,3,4085,4088]]],[32,7,6,4088,4094,[[893,1,1,4088,4089],[895,1,1,4089,4090],[896,3,2,4090,4092],[899,2,2,4092,4094]]],[33,3,3,4094,4097,[[900,1,1,4094,4095],[901,1,1,4095,4096],[902,1,1,4096,4097]]],[34,4,3,4097,4100,[[903,2,2,4097,4099],[904,2,1,4099,4100]]],[35,3,3,4100,4103,[[906,1,1,4100,4101],[908,2,2,4101,4103]]],[36,15,11,4103,4114,[[909,4,3,4103,4106],[910,11,8,4106,4114]]],[37,76,57,4114,4171,[[911,12,8,4114,4122],[912,6,4,4122,4126],[913,5,3,4126,4129],[914,10,9,4129,4138],[915,9,7,4138,4145],[916,10,7,4145,4152],[917,7,5,4152,4157],[918,3,3,4157,4160],[920,1,1,4160,4161],[921,5,3,4161,4164],[922,1,1,4164,4165],[923,2,2,4165,4167],[924,5,4,4167,4171]]],[38,10,9,4171,4180,[[925,1,1,4171,4172],[926,4,4,4172,4176],[927,5,4,4176,4180]]]],[8,49,52,56,57,59,64,69,71,74,83,84,85,86,87,88,89,92,141,143,153,155,156,157,158,160,166,168,172,174,192,194,195,198,204,213,222,269,299,302,305,309,313,322,326,332,339,343,353,357,358,361,364,367,369,375,383,385,386,387,390,392,394,398,406,412,415,425,430,431,433,434,437,438,445,451,453,455,457,459,460,462,463,465,467,469,471,475,478,484,488,491,497,498,499,501,505,508,512,525,527,530,535,542,545,548,549,550,552,554,556,558,559,562,566,574,584,587,590,593,595,596,597,601,602,605,611,615,616,620,621,629,630,631,632,633,634,635,636,641,647,649,656,664,666,667,675,688,693,694,701,708,716,718,719,728,732,733,736,738,745,746,747,748,749,753,765,766,769,770,773,774,778,780,782,788,794,808,816,818,820,825,829,831,833,834,844,846,847,852,855,857,859,869,870,876,877,878,884,886,889,891,897,902,908,912,916,925,931,934,936,937,944,947,955,958,973,974,984,986,991,992,994,997,1000,1004,1010,1012,1013,1015,1018,1020,1038,1040,1046,1085,1089,1093,1096,1101,1102,1105,1106,1109,1112,1113,1115,1118,1119,1121,1127,1128,1135,1137,1141,1144,1156,1157,1159,1163,1165,1166,1168,1169,1170,1175,1178,1180,1183,1186,1188,1209,1210,1212,1216,1219,1220,1223,1227,1233,1234,1236,1239,1250,1252,1259,1261,1262,1264,1266,1269,1270,1272,1273,1274,1276,1277,1280,1281,1283,1285,1286,1288,1289,1292,1293,1295,1298,1299,1301,1303,1309,1311,1313,1319,1320,1323,1324,1328,1330,1331,1332,1341,1342,1344,1345,1346,1347,1348,1351,1354,1356,1358,1359,1361,1362,1367,1368,1370,1375,1376,1382,1383,1385,1414,1415,1416,1417,1423,1424,1425,1428,1429,1435,1437,1438,1443,1453,1454,1455,1456,1460,1461,1462,1464,1469,1472,1474,1475,1502,1506,1510,1522,1523,1525,1530,1541,1549,1551,1561,1565,1572,1574,1577,1580,1581,1583,1585,1587,1588,1589,1590,1592,1593,1594,1595,1596,1597,1602,1603,1605,1606,1608,1611,1612,1616,1617,1619,1620,1622,1623,1624,1628,1631,1633,1636,1642,1647,1653,1654,1655,1656,1657,1658,1663,1664,1665,1666,1667,1668,1682,1683,1684,1685,1686,1687,1689,1692,1693,1694,1695,1698,1699,1700,1701,1704,1707,1708,1711,1715,1718,1722,1725,1726,1729,1730,1735,1737,1739,1740,1743,1750,1754,1755,1756,1762,1764,1769,1770,1771,1775,1778,1780,1784,1785,1787,1789,1795,1798,1801,1807,1814,1815,1817,1819,1820,1837,1838,1839,1841,1842,1859,1868,1870,1872,1878,1881,1890,1891,1894,1899,1900,1901,1902,1904,1912,1913,1915,1933,1942,1945,1948,1950,1951,1953,1956,1957,1958,1959,1962,1967,1970,1975,1980,1981,1982,1987,1988,1992,1997,2004,2005,2014,2015,2016,2018,2021,2025,2026,2029,2030,2032,2034,2035,2036,2040,2041,2046,2047,2048,2049,2050,2051,2070,2071,2072,2073,2075,2083,2120,2121,2123,2136,2140,2157,2161,2164,2167,2171,2178,2179,2188,2189,2190,2191,2192,2193,2195,2196,2197,2211,2215,2216,2217,2238,2240,2241,2244,2252,2259,2263,2292,2294,2296,2300,2317,2318,2319,2321,2322,2323,2328,2330,2336,2340,2348,2366,2378,2393,2399,2402,2404,2413,2416,2421,2432,2433,2438,2439,2440,2441,2445,2447,2451,2455,2457,2459,2464,2468,2469,2471,2472,2474,2476,2478,2480,2481,2484,2485,2488,2490,2497,2498,2499,2500,2523,2526,2527,2530,2532,2535,2561,2568,2569,2571,2576,2578,2579,2588,2595,2599,2613,2647,2682,2683,2685,2697,2708,2719,2727,2728,2739,2742,2746,2747,2748,2760,2761,2764,2770,2774,2796,2797,2799,2800,2802,2807,2811,2813,2816,2818,2820,2823,2825,2829,2838,2839,2842,2844,2848,2850,2855,2857,2860,2863,2868,2873,2874,2879,2901,2902,2907,2908,2918,2920,2921,2922,2925,2926,2932,2948,2955,2956,2957,2958,2959,2960,2961,2962,2965,2966,2971,2975,2976,2980,2981,2982,2983,2985,2986,2988,2989,2995,2996,2998,2999,3030,3045,3046,3048,3050,3053,3054,3059,3061,3068,3071,3112,3113,3114,3116,3119,3134,3144,3145,3149,3151,3152,3153,3156,3157,3161,3162,3164,3169,3170,3182,3197,3202,3203,3204,3216,3219,3223,3224,3227,3228,3229,3236,3237,3239,3240,3243,3244,3252,3253,3257,3265,3269,3270,3271,3282,3283,3285,3302,3304,3312,3319,3320,3324,3334,3346,3347,3348,3361,3362,3368,3369,3370,3371,3372,3382,3386,3387,3395,3403,3404,3411,3412,3425,3426,3428,3435,3436,3446,3447,3448,3457,3459,3460,3461,3469,3470,3471,3479,3482,3494,3510,3533,3549,3571,3572,3604,3605,3652,3659,3697,3703,3706,3732,3736,3744,3753,3755,3758,3760,3762,3764,3793,3795,3796,3797,3798,3800,3803,3804,3807,3809,3811,3815,3817,3824,3825,3833,3836,3845,3846,3848,3849,3854,3855,3856,3861,3939,3940,3941,3942,3944,3958,3962,3966,3969,3972,3973,3974,3975,3989,3991,3992,4017,4018,4026,4030,4035,4036,4040,4042,4047,4048,4049,4054,4063,4065,4067,4069,4070,4072,4073,4076,4092,4101,4102,4105,4106,4107,4110,4111,4112,4115,4116,4118,4119,4121,4122,4124,4132,4134,4136,4138,4147,4148,4152,4154,4155,4170,4171,4175,4176,4186,4188,4189,4190,4191,4197,4199,4202,4203,4208,4209,4210,4212,4213,4214,4217,4218,4219,4220,4230,4231,4236,4237,4238,4240,4241,4244,4245,4246,4250,4252,4253,4254,4256,4257,4258,4260,4261,4265,4277,4279,4282,4283,4287,4290,4291,4292,4293,4295,4296,4303,4306,4315,4316,4317,4318,4319,4321,4323,4325,4327,4329,4330,4334,4335,4338,4347,4348,4349,4361,4374,4379,4380,4382,4383,4384,4385,4387,4388,4389,4391,4392,4393,4395,4400,4405,4407,4409,4410,4411,4412,4413,4417,4420,4421,4422,4427,4429,4430,4431,4432,4433,4441,4442,4443,4445,4447,4456,4457,4458,4472,4475,4476,4477,4479,4481,4487,4490,4541,4560,4562,4565,4566,4567,4569,4572,4578,4579,4648,4649,4662,4665,4666,4667,4676,4677,4679,4685,4688,4689,4712,4713,4718,4720,4725,4727,4732,4734,4735,4736,4737,4738,4743,4747,4749,4798,4810,4811,4814,4817,4818,4832,4846,4854,4855,4870,4873,4877,4886,4892,4893,4895,4898,4899,4901,4909,4912,4914,4917,4921,4933,4934,4935,4937,4939,4940,4947,4955,4964,4967,4969,4975,4977,4998,5001,5005,5011,5014,5016,5019,5025,5043,5046,5049,5054,5075,5076,5080,5081,5084,5096,5112,5121,5137,5144,5167,5168,5169,5170,5176,5178,5183,5184,5185,5187,5190,5196,5197,5221,5235,5236,5237,5245,5249,5266,5273,5274,5275,5279,5280,5288,5315,5328,5335,5348,5369,5372,5373,5376,5378,5390,5393,5395,5398,5399,5401,5402,5403,5411,5417,5429,5430,5432,5435,5436,5437,5446,5449,5450,5451,5453,5460,5465,5466,5467,5472,5483,5484,5485,5486,5491,5494,5505,5510,5511,5515,5524,5535,5536,5540,5548,5554,5555,5556,5567,5568,5569,5573,5575,5587,5588,5594,5599,5618,5624,5636,5643,5647,5681,5686,5707,5709,5713,5718,5721,5722,5729,5730,5735,5737,5742,5744,5746,5748,5749,5751,5756,5798,5803,5804,5806,5807,5808,5810,5817,5838,5840,5843,5848,5849,5852,5853,5854,5867,5868,5872,5873,5878,5886,5887,5892,5893,5897,5898,5899,5900,5902,5911,5914,5915,5918,5920,5922,5923,5925,5928,5931,5936,5937,5943,5947,5948,5949,5951,5955,5956,5957,5965,5978,5979,5986,5995,5999,6003,6007,6011,6020,6022,6025,6031,6035,6038,6043,6044,6045,6046,6048,6049,6053,6054,6056,6058,6059,6064,6067,6068,6070,6072,6073,6079,6082,6083,6084,6085,6086,6087,6088,6089,6091,6107,6108,6109,6112,6113,6126,6130,6155,6176,6193,6197,6203,6205,6209,6210,6211,6212,6213,6215,6217,6223,6267,6268,6279,6282,6283,6290,6292,6296,6297,6299,6301,6302,6305,6306,6307,6308,6309,6310,6311,6312,6332,6333,6348,6373,6374,6376,6378,6382,6383,6384,6426,6428,6430,6432,6433,6434,6435,6436,6437,6439,6441,6444,6445,6454,6457,6458,6462,6475,6478,6483,6484,6487,6495,6497,6498,6499,6500,6503,6510,6520,6546,6549,6555,6562,6577,6581,6583,6588,6596,6602,6604,6605,6606,6607,6612,6613,6616,6617,6618,6619,6620,6621,6660,6661,6662,6666,6667,6668,6669,6670,6671,6672,6673,6674,6676,6681,6683,6684,6690,6693,6694,6696,6698,6699,6700,6701,6703,6704,6705,6709,6711,6719,6720,6721,6727,6733,6734,6737,6741,6742,6743,6755,6761,6768,6769,6785,6787,6790,6792,6800,6802,6804,6808,6811,6821,6823,6825,6826,6829,6832,6836,6837,6838,6839,6841,6842,6843,6846,6848,6857,6861,6863,6864,6865,6866,6868,6871,6872,6875,6887,6890,6892,6893,6894,6895,6897,6899,6900,6901,6905,6906,6912,6918,6919,6930,6933,6940,6947,6950,6952,6954,6955,6956,6958,6959,6960,6961,6962,6963,6964,6967,6975,6977,6989,6995,6997,7001,7003,7007,7008,7011,7016,7017,7018,7019,7026,7029,7030,7035,7036,7042,7046,7047,7049,7052,7053,7055,7065,7070,7074,7077,7078,7083,7084,7086,7090,7091,7096,7099,7101,7102,7107,7108,7110,7114,7115,7124,7125,7134,7142,7143,7145,7147,7151,7157,7158,7159,7160,7170,7171,7177,7188,7189,7201,7203,7204,7226,7231,7237,7238,7239,7256,7267,7274,7276,7280,7281,7282,7283,7284,7285,7287,7288,7291,7293,7297,7300,7302,7303,7304,7313,7318,7323,7325,7327,7329,7339,7342,7345,7346,7351,7352,7353,7355,7357,7359,7360,7361,7373,7374,7375,7376,7379,7391,7394,7401,7407,7408,7412,7414,7417,7418,7420,7421,7426,7429,7432,7434,7435,7436,7440,7442,7443,7446,7447,7448,7455,7457,7459,7461,7465,7466,7468,7470,7477,7478,7479,7480,7494,7497,7498,7502,7508,7509,7514,7516,7517,7519,7520,7527,7534,7535,7540,7541,7542,7544,7548,7549,7551,7553,7560,7561,7566,7570,7571,7573,7576,7579,7580,7584,7586,7588,7592,7594,7595,7596,7598,7602,7603,7605,7606,7608,7610,7612,7614,7615,7616,7617,7618,7621,7626,7638,7644,7646,7648,7650,7651,7652,7655,7657,7658,7659,7661,7662,7663,7667,7669,7673,7676,7677,7686,7693,7694,7697,7698,7707,7709,7710,7713,7715,7717,7719,7721,7722,7723,7724,7729,7734,7735,7740,7741,7742,7743,7749,7755,7757,7759,7761,7762,7764,7768,7770,7773,7774,7776,7782,7783,7785,7786,7787,7788,7789,7790,7792,7796,7798,7800,7801,7812,7813,7816,7818,7819,7820,7826,7827,7829,7832,7833,7834,7836,7837,7842,7843,7846,7855,7856,7861,7862,7866,7870,7878,7886,7887,7897,7901,7906,7907,7909,7910,7911,7912,7913,7914,7919,7920,7930,7931,7932,7935,7938,7939,7940,7943,7944,7949,7950,7951,7954,7955,7957,7963,7965,7970,7971,7973,7975,7976,7978,7979,7981,7985,7989,7990,7993,7999,8004,8012,8020,8024,8025,8026,8027,8029,8030,8031,8032,8035,8036,8038,8046,8050,8054,8058,8063,8071,8072,8075,8088,8089,8093,8095,8097,8099,8101,8102,8104,8105,8108,8110,8112,8113,8114,8119,8125,8126,8128,8133,8135,8138,8140,8143,8149,8151,8155,8160,8163,8166,8167,8178,8182,8183,8184,8185,8197,8199,8200,8207,8208,8216,8219,8229,8230,8231,8233,8235,8236,8238,8242,8243,8249,8263,8265,8266,8268,8269,8270,8271,8272,8273,8274,8275,8278,8279,8280,8282,8283,8284,8286,8287,8290,8291,8293,8299,8301,8304,8305,8306,8307,8309,8310,8313,8322,8323,8324,8327,8328,8330,8337,8341,8342,8345,8347,8350,8352,8354,8356,8358,8359,8360,8364,8365,8366,8368,8371,8374,8377,8378,8380,8385,8386,8387,8388,8389,8391,8392,8395,8396,8402,8404,8408,8411,8416,8425,8428,8429,8435,8437,8442,8443,8444,8446,8447,8448,8450,8452,8455,8456,8461,8462,8463,8464,8467,8469,8470,8472,8474,8480,8481,8482,8490,8495,8500,8502,8504,8506,8510,8516,8522,8525,8530,8534,8538,8539,8541,8544,8545,8546,8552,8553,8557,8558,8560,8564,8569,8570,8571,8575,8576,8577,8581,8582,8583,8585,8590,8609,8644,8663,8666,8669,8674,8676,8694,8695,8696,8697,8698,8699,8701,8702,8703,8704,8705,8706,8708,8709,8710,8713,8714,8715,8716,8728,8730,8732,8750,8777,8783,8784,8786,8788,8789,8798,8799,8800,8809,8810,8812,8814,8817,8821,8827,8832,8837,8842,8871,8872,8879,8880,8883,8886,8887,8904,8907,8908,8914,8923,8938,8939,8948,8968,8986,8987,8991,8992,9003,9013,9014,9015,9018,9019,9020,9023,9026,9027,9028,9029,9031,9032,9033,9037,9039,9043,9044,9053,9054,9075,9079,9081,9085,9086,9098,9110,9117,9118,9126,9129,9130,9148,9154,9156,9158,9160,9161,9163,9165,9166,9167,9171,9173,9174,9178,9179,9185,9188,9190,9191,9192,9194,9195,9196,9197,9198,9199,9201,9202,9204,9205,9206,9211,9213,9215,9221,9223,9224,9228,9231,9246,9267,9269,9284,9290,9295,9296,9301,9318,9319,9325,9327,9328,9330,9335,9336,9337,9338,9341,9342,9343,9344,9346,9356,9358,9360,9361,9362,9363,9371,9372,9381,9383,9384,9385,9387,9389,9390,9396,9400,9402,9406,9410,9413,9414,9415,9416,9417,9418,9420,9421,9430,9431,9436,9438,9439,9440,9441,9442,9443,9447,9448,9450,9453,9454,9455,9456,9457,9458,9459,9462,9465,9466,9467,9468,9470,9471,9472,9473,9479,9482,9483,9484,9485,9486,9488,9489,9493,9494,9495,9496,9497,9498,9502,9506,9510,9515,9516,9529,9535,9536,9538,9539,9540,9541,9542,9543,9544,9545,9546,9548,9549,9553,9554,9556,9560,9567,9569,9570,9571,9572,9576,9583,9588,9589,9590,9600,9602,9604,9605,9608,9609,9611,9612,9613,9614,9615,9616,9620,9621,9622,9623,9625,9626,9627,9628,9630,9636,9639,9642,9644,9650,9652,9653,9654,9655,9657,9658,9660,9662,9669,9670,9671,9672,9673,9675,9679,9682,9683,9684,9685,9689,9692,9693,9695,9696,9697,9700,9702,9703,9706,9707,9710,9711,9712,9713,9714,9715,9716,9717,9719,9724,9725,9728,9730,9731,9732,9735,9736,9737,9741,9748,9759,9761,9762,9767,9768,9769,9770,9774,9775,9776,9779,9781,9783,9788,9789,9794,9795,9798,9799,9800,9802,9807,9808,9810,9811,9812,9823,9833,9836,9837,9838,9842,9843,9844,9854,9857,9875,9885,9886,9894,9904,9905,9937,9970,9972,9973,9987,9996,10038,10041,10042,10043,10046,10049,10050,10051,10054,10055,10056,10061,10063,10064,10066,10067,10070,10071,10081,10088,10089,10093,10094,10095,10099,10100,10102,10103,10106,10109,10110,10112,10114,10117,10126,10149,10153,10154,10159,10160,10161,10163,10165,10166,10171,10174,10176,10177,10182,10190,10228,10245,10327,10558,10581,10640,10663,10674,10676,10688,10691,10696,10698,10721,10728,10737,10739,10740,10743,10760,10762,10763,10766,10772,10773,10775,10794,10803,10840,10843,10864,10865,10866,10867,10868,10878,10881,10900,10909,10910,10917,10924,10936,10939,10942,10943,10944,10945,10947,10951,10952,10956,10957,10960,10961,11144,11182,11187,11214,11222,11248,11270,11271,11275,11290,11301,11302,11303,11307,11308,11311,11314,11315,11316,11318,11319,11320,11326,11336,11357,11363,11364,11365,11369,11376,11398,11400,11402,11404,11405,11407,11409,11410,11416,11417,11418,11442,11444,11448,11484,11486,11511,11513,11516,11518,11519,11544,11545,11546,11547,11549,11550,11554,11556,11557,11559,11562,11567,11570,11571,11577,11578,11580,11582,11596,11608,11611,11614,11615,11624,11633,11636,11651,11653,11658,11663,11668,11670,11671,11688,11689,11694,11696,11700,11711,11714,11719,11720,11721,11722,11748,11752,11757,11809,11833,11836,11847,11864,11876,11881,11894,11899,11915,11918,11921,11926,11942,11948,11949,11955,11956,11959,11961,11987,11988,12006,12013,12098,12104,12105,12112,12172,12180,12182,12216,12218,12229,12238,12241,12242,12243,12248,12253,12258,12262,12302,12305,12307,12311,12312,12314,12315,12316,12318,12319,12320,12321,12324,12363,12368,12370,12373,12374,12378,12379,12383,12399,12403,12404,12405,12406,12409,12411,12412,12418,12425,12494,12496,12506,12515,12527,12534,12537,12538,12540,12545,12577,12586,12587,12588,12613,12677,12692,12716,12724,12727,12732,12736,12737,12738,12739,12740,12751,12756,12759,12760,12764,12768,12770,12772,12773,12775,12777,12778,12783,12784,12787,12789,12791,12793,12798,12800,12805,12807,12814,12815,12826,12854,12857,12860,12864,12876,12877,12881,12883,12893,12894,12896,12897,12901,12904,12926,12932,12935,12942,12952,12956,12959,12977,13025,13034,13055,13063,13088,13095,13107,13121,13156,13168,13211,13216,13225,13228,13229,13249,13258,13294,13360,13374,13415,13416,13551,13556,13577,13579,13611,13642,13649,13663,13676,13697,13701,13706,13714,13757,13813,13815,13834,13845,13887,13891,13897,13929,13930,13931,13933,13950,13952,13961,13968,13970,13975,13980,14001,14124,14209,14212,14228,14231,14252,14266,14267,14299,14300,14301,14304,14321,14327,14328,14333,14337,14353,14361,14364,14380,14381,14384,14393,14403,14440,14484,14524,14526,14529,14530,14543,14556,14558,14562,14565,14569,14570,14672,14704,14748,14758,14799,14807,14821,14828,14890,14951,14953,14961,14968,14978,15037,15094,15167,15191,15197,15209,15261,15266,15279,15286,15287,15288,15300,15317,15321,15394,15402,15405,15465,15505,15506,15515,15522,15523,15538,15540,15579,15593,15598,15600,15619,15705,15706,15712,15718,15727,15729,15769,15904,15918,15934,15946,15957,16030,16075,16082,16099,16100,16140,16147,16151,16231,16233,16284,16287,16291,16292,16294,16299,16301,16302,16318,16335,16451,16460,16525,16546,16569,16597,16598,16600,16602,16606,16819,16843,16881,16943,16949,17156,17168,17261,17292,17320,17321,17322,17379,17398,17423,17431,17472,17476,17478,17479,17488,17489,17508,17528,17529,17530,17558,17575,17588,17625,17642,17677,17687,17688,17689,17715,17772,17775,17785,17786,17788,17792,17808,17810,17812,17818,17826,17829,17848,17871,17894,17914,17920,17930,17938,17943,17944,17947,17970,17981,17982,17990,17991,17999,18001,18004,18007,18015,18021,18024,18041,18046,18051,18057,18060,18063,18067,18070,18088,18113,18175,18176,18204,18215,18246,18254,18265,18332,18333,18334,18337,18340,18341,18342,18345,18346,18347,18352,18354,18355,18357,18358,18359,18361,18362,18367,18373,18375,18380,18381,18385,18386,18391,18392,18394,18395,18408,18409,18413,18415,18417,18420,18422,18438,18445,18452,18550,18552,18555,18575,18581,18583,18589,18593,18598,18626,18627,18630,18637,18641,18658,18670,18674,18675,18677,18678,18679,18680,18737,18742,18743,18745,18747,18751,18756,18760,18829,18832,18834,18835,18865,18881,18898,18899,18902,18904,18924,18927,18934,18939,18941,18950,18953,18955,18957,18958,18959,18960,18963,18965,18966,18968,18972,18984,18992,18994,18996,19003,19008,19009,19010,19012,19013,19019,19028,19030,19032,19063,19066,19077,19092,19108,19110,19120,19123,19131,19132,19139,19144,19145,19146,19147,19157,19167,19178,19187,19192,19227,19228,19229,19232,19235,19237,19238,19240,19246,19249,19250,19255,19267,19269,19272,19274,19277,19278,19279,19280,19294,19304,19305,19307,19310,19311,19316,19317,19334,19335,19337,19346,19347,19348,19355,19372,19376,19377,19381,19384,19385,19389,19395,19402,19403,19409,19418,19421,19422,19425,19434,19441,19443,19444,19448,19453,19462,19465,19472,19475,19505,19517,19519,19521,19522,19527,19528,19531,19536,19537,19538,19541,19549,19551,19560,19561,19562,19564,19566,19574,19575,19576,19577,19580,19581,19583,19584,19585,19587,19588,19589,19590,19591,19594,19595,19597,19598,19599,19600,19605,19608,19609,19610,19612,19613,19615,19618,19619,19621,19622,19623,19624,19626,19630,19631,19633,19634,19636,19638,19642,19643,19645,19647,19649,19651,19654,19656,19659,19660,19661,19663,19665,19666,19668,19669,19670,19671,19688,19697,19700,19703,19712,19732,19737,19738,19739,19743,19747,19749,19756,19757,19764,19767,19768,19773,19776,19778,19779,19789,19794,19798,19801,19802,19803,19807,19808,19809,19813,19815,19818,19823,19824,19825,19827,19828,19834,19835,19836,19837,19838,19839,19840,19843,19844,19846,19849,19856,19857,19858,19860,19861,19862,19865,19867,19869,19873,19874,19876,19877,19880,19881,19887,19888,19890,19892,19896,19897,19899,19901,19902,19903,19904,19906,19907,19909,19910,19911,19912,19913,19914,19915,19917,19918,19919,19920,19921,19922,19924,19928,19935,19937,19938,19939,19942,19943,19945,19946,19947,19949,19951,19953,19954,19955,19956,19957,19958,19963,19964,19965,19967,19969,19971,19972,19977,19979,19980,19982,19983,19984,19985,19987,19995,19996,19998,19999,20005,20007,20011,20014,20017,20026,20030,20034,20041,20044,20046,20055,20058,20061,20070,20074,20076,20078,20079,20080,20081,20088,20091,20099,20101,20111,20116,20120,20124,20129,20131,20146,20147,20155,20158,20161,20163,20167,20171,20172,20180,20182,20184,20185,20187,20195,20197,20201,20202,20203,20204,20210,20211,20213,20215,20221,20224,20237,20247,20256,20272,20273,20274,20275,20285,20291,20302,20322,20344,20350,20351,20375,20395,20424,20437,20463,20467,20473,20474,20487,20493,20494,20495,20496,20498,20499,20500,20501,20502,20503,20505,20506,20507,20508,20509,20512,20513,20517,20518,20524,20525,20526,20528,20529,20532,20536,20537,20544,20545,20550,20564,20565,20572,20573,20574,20576,20578,20583,20584,20589,20590,20591,20593,20595,20603,20607,20609,20610,20611,20612,20613,20616,20617,20618,20619,20620,20621,20625,20626,20629,20631,20634,20635,20640,20644,20655,20656,20657,20660,20666,20669,20676,20679,20680,20681,20683,20688,20689,20690,20692,20697,20699,20701,20703,20706,20708,20709,20710,20716,20717,20719,20720,20722,20724,20725,20727,20728,20732,20733,20735,20737,20738,20743,20750,20752,20753,20755,20763,20767,20787,20788,20790,20791,20795,20799,20826,20827,20828,20829,20831,20833,20836,20837,20850,20855,20860,20861,20864,20882,20885,20890,20892,20897,20898,20900,20901,20902,20903,20904,20905,20910,20913,20922,20923,20924,20925,20930,20933,20934,20937,20940,20941,20945,20946,20947,20948,20951,20952,20956,20958,20961,20962,20965,20972,20973,20974,20977,20985,20989,20993,20995,20996,20999,21008,21012,21019,21021,21023,21024,21034,21043,21046,21047,21049,21051,21057,21058,21059,21060,21071,21074,21075,21076,21079,21082,21084,21085,21086,21089,21101,21102,21107,21120,21122,21124,21150,21152,21153,21158,21168,21177,21178,21184,21193,21200,21201,21205,21224,21226,21229,21231,21232,21234,21237,21238,21240,21242,21243,21244,21247,21248,21249,21250,21254,21265,21266,21272,21281,21282,21290,21291,21292,21301,21302,21303,21305,21307,21311,21314,21315,21323,21326,21327,21333,21334,21345,21347,21360,21368,21374,21375,21379,21383,21388,21400,21401,21404,21406,21408,21409,21412,21414,21415,21416,21418,21426,21427,21428,21433,21437,21449,21463,21476,21479,21481,21483,21491,21493,21494,21495,21500,21503,21504,21505,21508,21509,21511,21512,21514,21516,21517,21518,21519,21520,21521,21522,21523,21525,21526,21527,21530,21532,21538,21541,21543,21545,21548,21551,21552,21553,21554,21555,21559,21562,21565,21566,21571,21573,21575,21576,21577,21578,21579,21585,21588,21589,21590,21591,21592,21601,21603,21604,21605,21606,21608,21610,21612,21614,21615,21616,21618,21620,21624,21626,21629,21632,21637,21641,21646,21649,21674,21675,21676,21679,21680,21681,21685,21686,21687,21688,21695,21698,21703,21714,21722,21723,21730,21734,21748,21962,21967,21968,21970,21975,21978,21990,21991,21994,22005,22009,22018,22026,22027,22031,22035,22042,22043,22045,22052,22059,22088,22095,22096,22098,22112,22129,22131,22133,22141,22156,22165,22167,22168,22185,22188,22192,22193,22195,22209,22221,22244,22245,22247,22256,22258,22284,22292,22305,22310,22311,22324,22331,22345,22346,22351,22355,22386,22402,22418,22439,22472,22474,22476,22478,22479,22483,22532,22533,22535,22536,22537,22538,22539,22540,22541,22542,22543,22544,22545,22546,22549,22550,22552,22555,22558,22559,22560,22561,22564,22566,22569,22570,22577,22580,22612,22622,22623,22674,22681,22693,22712,22717,22733,22744,22753,22788,22822,22829,22841,22846,22849,22857,22865,22867,22870,22871,22872,22875,22876,22879,22881,22882,22885,22887,22892,22897,22899,22901,22903,22907,22910,22914,22916,22922,22924,22926,22927,22928,22930,22931,22933,22934,22935,22938,22939,22940,22941,22944,22946,22947,22951,22952,22953,22955,22956,22959,22962,22963,22965,22966,22967,22970,22979,22994,22997,23026,23040,23041,23043,23055,23062,23065,23070,23073,23076,23085,23090,23104,23106,23107,23116,23121,23125,23127,23130]]],["+",[293,284,[[0,14,13,0,13,[[15,1,1,0,1],[19,2,2,1,3],[20,1,1,3,4],[23,1,1,4,5],[26,1,1,5,6],[27,2,2,6,8],[38,2,2,8,10],[40,2,1,10,11],[41,1,1,11,12],[44,1,1,12,13]]],[1,24,24,13,37,[[50,1,1,13,14],[54,1,1,14,15],[57,4,4,15,19],[58,2,2,19,21],[59,1,1,21,22],[61,1,1,22,23],[63,1,1,23,24],[65,1,1,24,25],[72,1,1,25,26],[73,1,1,26,27],[74,2,2,27,29],[75,2,2,29,31],[76,1,1,31,32],[77,1,1,32,33],[83,2,2,33,35],[85,1,1,35,36],[88,1,1,36,37]]],[2,24,23,37,60,[[93,4,4,37,41],[95,2,2,41,43],[98,1,1,43,44],[99,4,3,44,47],[100,1,1,47,48],[103,6,6,48,54],[105,3,3,54,57],[113,2,2,57,59],[114,1,1,59,60]]],[3,26,26,60,86,[[120,1,1,60,61],[121,2,2,61,63],[124,2,2,63,65],[127,2,2,65,67],[131,3,3,67,70],[132,2,2,70,72],[133,1,1,72,73],[134,2,2,73,75],[135,3,3,75,78],[136,1,1,78,79],[137,1,1,79,80],[139,3,3,80,83],[145,1,1,83,84],[147,1,1,84,85],[149,1,1,85,86]]],[4,14,13,86,99,[[155,2,2,86,88],[157,1,1,88,89],[161,1,1,89,90],[163,2,2,90,92],[165,1,1,92,93],[170,1,1,93,94],[172,1,1,94,95],[174,1,1,95,96],[175,3,2,96,98],[182,1,1,98,99]]],[5,7,7,99,106,[[187,1,1,99,100],[190,1,1,100,101],[192,1,1,101,102],[203,1,1,102,103],[206,1,1,103,104],[208,1,1,104,105],[209,1,1,105,106]]],[6,7,7,106,113,[[216,1,1,106,107],[217,1,1,107,108],[221,1,1,108,109],[223,1,1,109,110],[226,2,2,110,112],[230,1,1,112,113]]],[7,1,1,113,114,[[232,1,1,113,114]]],[8,23,23,114,137,[[238,3,3,114,117],[244,1,1,117,118],[245,1,1,118,119],[246,1,1,119,120],[249,1,1,120,121],[251,1,1,121,122],[252,1,1,122,123],[254,1,1,123,124],[255,1,1,124,125],[256,1,1,125,126],[258,3,3,126,129],[259,1,1,129,130],[260,1,1,130,131],[261,2,2,131,133],[262,1,1,133,134],[264,1,1,134,135],[265,1,1,135,136],[266,1,1,136,137]]],[9,10,10,137,147,[[269,1,1,137,138],[271,1,1,138,139],[273,1,1,139,140],[277,3,3,140,143],[278,1,1,143,144],[280,1,1,144,145],[283,1,1,145,146],[287,1,1,146,147]]],[10,14,13,147,160,[[293,1,1,147,148],[295,1,1,148,149],[296,1,1,149,150],[298,2,2,150,152],[300,1,1,152,153],[301,1,1,153,154],[303,2,1,154,155],[308,1,1,155,156],[312,4,4,156,160]]],[11,17,16,160,176,[[313,3,3,160,163],[316,3,2,163,165],[317,1,1,165,166],[318,1,1,166,167],[320,1,1,167,168],[321,2,2,168,170],[322,2,2,170,172],[323,1,1,172,173],[331,1,1,173,174],[332,1,1,174,175],[335,1,1,175,176]]],[12,5,5,176,181,[[349,1,1,176,177],[354,1,1,177,178],[358,2,2,178,180],[366,1,1,180,181]]],[13,9,9,181,190,[[371,1,1,181,182],[372,1,1,182,183],[374,1,1,183,184],[376,1,1,184,185],[384,1,1,185,186],[385,1,1,186,187],[387,1,1,187,188],[389,1,1,188,189],[397,1,1,189,190]]],[15,4,4,190,194,[[413,1,1,190,191],[414,1,1,191,192],[418,1,1,192,193],[420,1,1,193,194]]],[16,4,4,194,198,[[429,2,2,194,196],[430,1,1,196,197],[431,1,1,197,198]]],[17,10,10,198,208,[[437,2,2,198,200],[438,1,1,200,201],[443,1,1,201,202],[445,1,1,202,203],[448,1,1,203,204],[456,2,2,204,206],[471,1,1,206,207],[477,1,1,207,208]]],[18,13,13,208,221,[[479,1,1,208,209],[505,1,1,209,210],[510,1,1,210,211],[513,1,1,211,212],[517,1,1,212,213],[518,1,1,213,214],[546,1,1,214,215],[568,2,2,215,217],[579,2,2,217,219],[620,1,1,219,220],[621,1,1,220,221]]],[19,3,3,221,224,[[632,1,1,221,222],[644,1,1,222,223],[646,1,1,223,224]]],[20,2,2,224,226,[[661,1,1,224,225],[666,1,1,225,226]]],[22,4,4,226,230,[[684,1,1,226,227],[687,1,1,227,228],[716,1,1,228,229],[732,1,1,229,230]]],[23,16,15,230,245,[[747,1,1,230,231],[749,1,1,231,232],[758,1,1,232,233],[759,1,1,233,234],[763,1,1,234,235],[769,1,1,235,236],[772,1,1,236,237],[778,1,1,237,238],[780,2,2,238,240],[782,1,1,240,241],[784,1,1,241,242],[786,1,1,242,243],[790,1,1,243,244],[794,2,1,244,245]]],[25,30,28,245,273,[[803,1,1,245,246],[804,2,2,246,248],[807,1,1,248,249],[811,2,2,249,251],[813,1,1,251,252],[822,2,2,252,254],[824,1,1,254,255],[825,1,1,255,256],[832,4,4,256,260],[835,1,1,260,261],[842,3,3,261,264],[843,5,4,264,268],[845,1,1,268,269],[846,3,2,269,271],[848,1,1,271,272],[849,1,1,272,273]]],[26,2,2,273,275,[[858,2,2,273,275]]],[27,1,1,275,276,[[864,1,1,275,276]]],[31,2,2,276,278,[[891,1,1,276,277],[892,1,1,277,278]]],[36,1,1,278,279,[[910,1,1,278,279]]],[37,5,4,279,283,[[911,1,1,279,280],[913,2,1,280,281],[914,1,1,281,282],[916,1,1,282,283]]],[38,1,1,283,284,[[926,1,1,283,284]]]],[392,499,501,530,605,746,774,780,1165,1170,1216,1273,1385,1549,1633,1718,1737,1739,1740,1743,1770,1795,1838,1901,1981,2161,2179,2211,2216,2241,2244,2292,2318,2499,2526,2568,2682,2807,2816,2818,2823,2860,2863,2958,2981,2982,2995,3030,3114,3151,3152,3156,3162,3164,3203,3216,3228,3460,3469,3494,3758,3795,3796,3941,3942,4030,4048,4176,4189,4191,4209,4237,4250,4260,4279,4291,4292,4293,4321,4349,4420,4432,4442,4648,4677,4814,4998,5001,5054,5168,5235,5236,5273,5395,5446,5472,5510,5511,5721,5867,5914,5955,6290,6376,6437,6475,6673,6719,6857,6892,6959,6962,7083,7143,7280,7285,7291,7417,7443,7447,7542,7603,7648,7723,7743,7776,7818,7832,7836,7861,7886,7909,7920,7938,7973,7979,8020,8108,8155,8185,8265,8275,8280,8304,8388,8472,8585,8837,8887,8923,8991,9032,9086,9118,9190,9344,9489,9495,9496,9498,9540,9541,9546,9609,9639,9660,9685,9748,9774,9775,9798,9800,9844,10095,10103,10182,10760,10867,10944,10952,11187,11275,11319,11357,11409,11559,11578,11633,11670,11864,12302,12320,12411,12506,12775,12777,12789,12800,12894,12896,12926,13034,13095,13168,13360,13374,13757,13931,13952,14304,14381,14440,14529,14543,14968,15402,15405,15538,15540,16302,16318,16525,16881,16949,17379,17472,17772,17848,18409,18737,19010,19077,19305,19317,19409,19549,19631,19803,19844,19867,19906,19946,19983,20070,20184,20500,20505,20513,20573,20635,20655,20703,20958,20961,21021,21076,21232,21238,21240,21244,21334,21530,21538,21541,21554,21555,21562,21565,21603,21637,21646,21688,21723,22005,22009,22133,22560,22569,22867,22897,22922,22935,22953,23116]]],["Against",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20215]]],["For",[3,3,[[8,1,1,0,1,[[236,1,1,0,1]]],[10,1,1,1,2,[[306,1,1,1,2]]],[25,1,1,2,3,[[822,1,1,2,3]]]],[7239,9296,20951]]],["In",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9682]]],["To",[5,5,[[11,1,1,0,1,[[321,1,1,0,1]]],[22,3,3,1,4,[[706,1,1,1,2],[718,2,2,2,4]]],[25,1,1,4,5,[[832,1,1,4,5]]]],[9761,18176,18438,18445,21248]]],["Unto",[9,9,[[0,2,2,0,2,[[2,1,1,0,1],[12,1,1,1,2]]],[1,1,1,2,3,[[82,1,1,2,3]]],[11,1,1,3,4,[[321,1,1,3,4]]],[18,4,4,4,8,[[502,1,1,4,5],[505,1,1,5,6],[536,1,1,6,7],[600,1,1,7,8]]],[19,1,1,8,9,[[635,1,1,8,9]]]],[71,322,2476,9761,14252,14300,14807,16099,16606]]],["about",[1,1,[[11,1,1,0,1,[[323,1,1,0,1]]]],[9836]]],["according",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[203,1,1,1,2]]]],[6215,6279]]],["after",[7,6,[[2,3,2,0,2,[[108,1,1,0,1],[109,2,1,1,2]]],[18,1,1,2,3,[[519,1,1,2,3]]],[23,1,1,3,4,[[749,1,1,3,4]]],[25,2,2,4,6,[[812,1,1,4,5],[846,1,1,5,6]]]],[3312,3324,14556,19066,20676,21641]]],["against",[147,132,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,2,2,1,3,[[63,1,1,1,2],[75,1,1,2,3]]],[3,3,3,3,6,[[129,1,1,3,4],[138,1,1,4,5],[140,1,1,5,6]]],[4,2,2,6,8,[[180,2,2,6,8]]],[5,1,1,8,9,[[196,1,1,8,9]]],[6,10,9,9,18,[[211,2,2,9,11],[219,1,1,11,12],[221,1,1,12,13],[222,1,1,13,14],[230,5,4,14,18]]],[8,9,9,18,27,[[238,1,1,18,19],[242,1,1,19,20],[252,1,1,20,21],[257,1,1,21,22],[258,1,1,22,23],[259,1,1,23,24],[260,1,1,24,25],[262,1,1,25,26],[266,1,1,26,27]]],[9,5,5,27,32,[[276,1,1,27,28],[277,1,1,28,29],[284,1,1,29,30],[286,1,1,30,31],[290,1,1,31,32]]],[10,6,5,32,37,[[297,2,2,32,34],[306,3,2,34,36],[312,1,1,36,37]]],[11,6,6,37,43,[[315,1,1,37,38],[321,1,1,38,39],[328,1,1,39,40],[331,3,3,40,43]]],[12,2,2,43,45,[[356,2,2,43,45]]],[13,6,6,45,51,[[377,1,1,45,46],[380,1,1,46,47],[382,1,1,47,48],[388,1,1,48,49],[398,1,1,49,50],[401,1,1,50,51]]],[15,1,1,51,52,[[417,1,1,51,52]]],[16,1,1,52,53,[[432,1,1,52,53]]],[17,6,5,53,58,[[444,1,1,53,54],[450,3,2,54,56],[467,1,1,56,57],[468,1,1,57,58]]],[18,1,1,58,59,[[614,1,1,58,59]]],[20,1,1,59,60,[[667,1,1,59,60]]],[22,9,9,60,69,[[680,1,1,60,61],[681,1,1,61,62],[701,1,1,62,63],[710,1,1,63,64],[714,1,1,64,65],[715,4,4,65,69]]],[23,41,32,69,101,[[745,1,1,69,70],[757,1,1,70,71],[759,1,1,71,72],[765,1,1,72,73],[769,2,1,73,74],[770,4,3,74,77],[771,1,1,77,78],[772,2,2,78,80],[778,2,1,80,81],[780,2,2,81,83],[783,1,1,83,84],[788,1,1,84,85],[791,3,2,85,87],[793,4,3,87,90],[794,9,5,90,95],[795,6,6,95,101]]],[25,26,23,101,124,[[805,1,1,101,102],[807,1,1,102,103],[814,4,4,103,107],[821,1,1,107,108],[822,3,3,108,111],[825,1,1,111,112],[826,5,3,112,115],[829,1,1,115,116],[830,3,2,116,118],[831,1,1,118,119],[835,1,1,119,120],[836,1,1,120,121],[839,2,2,121,123],[840,1,1,123,124]]],[26,2,2,124,126,[[857,1,1,124,125],[860,1,1,125,126]]],[27,1,1,126,127,[[868,1,1,126,127]]],[32,1,1,127,128,[[896,1,1,127,128]]],[33,3,3,128,131,[[900,1,1,128,129],[901,1,1,129,130],[902,1,1,130,131]]],[37,1,1,131,132,[[924,1,1,131,132]]]],[87,1894,2252,4106,4400,4456,5618,5636,6070,6510,6520,6787,6841,6872,7065,7077,7078,7084,7288,7359,7651,7800,7813,7846,7878,7940,8012,8249,8284,8490,8569,8696,8938,8939,9290,9295,9495,9583,9770,9972,10081,10088,10089,10917,10924,11418,11484,11513,11651,11894,11987,12383,12814,13055,13216,13228,13642,13663,16231,17489,17689,17715,18088,18265,18340,18373,18375,18380,18381,18965,19280,19335,19453,19564,19581,19583,19584,19609,19626,19634,19808,19849,19873,19924,20017,20074,20080,20146,20147,20161,20167,20187,20195,20197,20211,20213,20215,20224,20237,20272,20274,20532,20565,20710,20716,20725,20728,20941,20946,20947,20948,21058,21085,21086,21089,21178,21193,21201,21226,21323,21347,21427,21428,21449,21968,22052,22193,22623,22693,22712,22717,23070]]],["among",[6,6,[[5,1,1,0,1,[[199,1,1,0,1]]],[8,1,1,1,2,[[245,1,1,1,2]]],[23,1,1,2,3,[[748,1,1,2,3]]],[25,3,3,3,6,[[803,1,1,3,4],[814,1,1,4,5],[840,1,1,5,6]]]],[6176,7440,19030,20498,20727,21476]]],["at",[54,52,[[0,4,4,0,4,[[5,1,1,0,1],[13,1,1,1,2],[19,1,1,2,3],[42,1,1,3,4]]],[1,3,3,4,7,[[68,1,1,4,5],[77,1,1,5,6],[85,1,1,6,7]]],[2,9,9,7,16,[[90,1,1,7,8],[93,5,5,8,13],[94,1,1,13,14],[97,1,1,14,15],[98,1,1,15,16]]],[3,2,2,16,18,[[126,1,1,16,17],[147,1,1,17,18]]],[4,1,1,18,19,[[168,1,1,18,19]]],[5,9,8,19,27,[[191,1,1,19,20],[194,1,1,20,21],[197,1,1,21,22],[201,1,1,22,23],[204,3,2,23,25],[207,1,1,25,26],[208,1,1,26,27]]],[6,3,3,27,30,[[222,1,1,27,28],[230,2,2,28,30]]],[8,1,1,30,31,[[257,1,1,30,31]]],[9,1,1,31,32,[[269,1,1,31,32]]],[10,1,1,32,33,[[303,1,1,32,33]]],[11,1,1,33,34,[[322,1,1,33,34]]],[17,1,1,34,35,[[476,1,1,34,35]]],[18,1,1,35,36,[[516,1,1,35,36]]],[20,1,1,36,37,[[670,1,1,36,37]]],[22,3,3,37,40,[[685,1,1,37,38],[691,1,1,38,39],[744,1,1,39,40]]],[23,1,1,40,41,[[794,1,1,40,41]]],[25,12,11,41,52,[[817,1,1,41,42],[822,1,1,42,43],[823,1,1,43,44],[841,3,2,44,46],[845,3,3,46,49],[848,1,1,49,50],[849,2,2,50,52]]]],[143,353,508,1323,2041,2300,2595,2748,2802,2813,2820,2825,2829,2839,2932,2962,3991,4676,5348,5937,6031,6112,6209,6307,6312,6384,6437,6875,7070,7074,7801,8113,9204,9807,13897,14524,17529,17785,17914,18927,20180,20787,20965,20989,21517,21521,21610,21616,21624,21686,21730,21734]]],["because",[2,1,[[8,2,1,0,1,[[239,2,1,0,1]]]],[7318]]],["before",[8,8,[[0,2,2,0,2,[[11,1,1,0,1],[29,1,1,1,2]]],[3,2,2,2,4,[[129,1,1,2,3],[130,1,1,3,4]]],[11,1,1,4,5,[[317,1,1,4,5]]],[18,1,1,5,6,[[561,1,1,5,6]]],[22,1,1,6,7,[[719,1,1,6,7]]],[23,1,1,7,8,[[750,1,1,7,8]]]],[313,869,4105,4118,9672,15266,18452,19110]]],["beside",[2,2,[[1,1,1,0,1,[[78,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]]],[2348,7090]]],["both",[1,1,[[23,1,1,0,1,[[780,1,1,0,1]]]],[19858]]],["by",[27,26,[[0,2,2,0,2,[[23,1,1,0,1],[37,1,1,1,2]]],[2,1,1,2,3,[[90,1,1,2,3]]],[9,1,1,3,4,[[284,1,1,3,4]]],[10,1,1,4,5,[[309,1,1,4,5]]],[11,2,2,5,7,[[323,1,1,5,6],[335,1,1,6,7]]],[17,1,1,7,8,[[464,1,1,7,8]]],[22,1,1,8,9,[[743,1,1,8,9]]],[23,6,5,9,14,[[775,1,1,9,10],[777,2,1,10,11],[785,1,1,11,12],[790,1,1,12,13],[792,1,1,13,14]]],[25,11,11,14,25,[[804,1,1,14,15],[818,1,1,15,16],[832,1,1,16,17],[841,2,2,17,19],[842,1,1,19,20],[844,2,2,20,22],[847,1,1,22,23],[848,1,1,23,24],[849,1,1,24,25]]],[36,1,1,25,26,[[910,1,1,25,26]]]],[602,1135,2761,8482,9406,9843,10176,13551,18902,19700,19779,19969,20055,20099,20517,20833,21237,21495,21526,21543,21575,21585,21676,21695,21714,22865]]],["concerning",[17,15,[[8,1,1,0,1,[[238,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[13,1,1,3,4,[[372,1,1,3,4]]],[22,3,3,4,7,[[694,1,1,4,5],[707,1,1,5,6],[715,1,1,6,7]]],[23,7,6,7,13,[[766,1,1,7,8],[771,1,1,8,9],[773,1,1,9,10],[774,2,1,10,11],[776,1,1,11,12],[788,1,1,12,13]]],[25,3,2,13,15,[[814,1,1,13,14],[822,2,1,14,15]]]],[7288,9026,10093,11314,17982,18215,18385,19472,19615,19666,19671,19767,20011,20724,20972]]],["for",[54,49,[[1,1,1,0,1,[[57,1,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[5,1,1,3,4,[[196,1,1,3,4]]],[6,1,1,4,5,[[231,1,1,4,5]]],[8,3,3,5,8,[[250,1,1,5,6],[251,1,1,6,7],[255,1,1,7,8]]],[9,7,5,8,13,[[276,1,1,8,9],[280,2,2,9,11],[284,2,1,11,12],[287,2,1,12,13]]],[10,3,3,13,16,[[304,1,1,13,14],[309,1,1,14,15],[311,1,1,15,16]]],[11,5,4,16,20,[[316,1,1,16,17],[318,1,1,17,18],[319,1,1,18,19],[320,2,1,19,20]]],[13,3,3,20,23,[[384,1,1,20,21],[398,1,1,21,22],[400,1,1,22,23]]],[15,1,1,23,24,[[423,1,1,23,24]]],[18,2,2,24,26,[[484,1,1,24,25],[561,1,1,25,26]]],[19,1,1,26,27,[[646,1,1,26,27]]],[22,2,2,27,29,[[685,1,1,27,28],[716,1,1,28,29]]],[23,3,3,29,32,[[753,1,1,29,30],[792,2,2,30,32]]],[24,2,1,32,33,[[800,2,1,32,33]]],[25,12,11,33,44,[[807,2,2,33,35],[808,1,1,35,36],[820,2,2,36,38],[828,4,3,38,41],[837,2,2,41,43],[846,1,1,43,44]]],[27,2,2,44,46,[[864,1,1,44,45],[870,1,1,45,46]]],[28,1,1,46,47,[[878,1,1,46,47]]],[36,1,1,47,48,[[909,1,1,47,48]]],[38,1,1,48,49,[[926,1,1,48,49]]]],[1735,3604,5643,6088,7108,7595,7596,7764,8242,8385,8389,8481,8581,9223,9390,9473,9616,9685,9714,9730,11550,11876,11959,12613,14001,15261,16943,17788,18408,19192,20111,20116,20437,20572,20574,20583,20882,20892,21124,21152,21153,21368,21388,21632,22131,22209,22346,22849,23104]]],["from",[1,1,[[1,1,1,0,1,[[85,1,1,0,1]]]],[2588]]],["hath",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1438]]],["him",[3,3,[[0,1,1,0,1,[[43,1,1,0,1]]],[5,1,1,1,2,[[191,1,1,1,2]]],[9,1,1,2,3,[[267,1,1,2,3]]]],[1342,5947,8030]]],["in",[83,80,[[0,8,7,0,7,[[5,1,1,0,1],[7,1,1,1,2],[13,1,1,2,3],[22,1,1,3,4],[23,1,1,4,5],[24,2,1,5,6],[48,1,1,6,7]]],[1,3,3,7,10,[[74,1,1,7,8],[77,2,2,8,10]]],[2,4,4,10,14,[[97,1,1,10,11],[103,3,3,11,14]]],[3,3,3,14,17,[[120,1,1,14,15],[132,1,1,15,16],[135,1,1,16,17]]],[4,2,2,17,19,[[156,1,1,17,18],[175,1,1,18,19]]],[5,2,2,19,21,[[195,1,1,19,20],[208,1,1,20,21]]],[6,1,1,21,22,[[224,1,1,21,22]]],[8,5,4,22,26,[[252,2,1,22,23],[254,2,2,23,25],[262,1,1,25,26]]],[9,3,3,26,29,[[277,1,1,26,27],[286,1,1,27,28],[289,1,1,28,29]]],[10,3,3,29,32,[[296,2,2,29,31],[298,1,1,31,32]]],[11,3,3,32,35,[[321,1,1,32,33],[330,2,2,33,35]]],[13,3,3,35,38,[[372,2,2,35,37],[398,1,1,37,38]]],[15,3,3,38,41,[[414,1,1,38,39],[416,1,1,39,40],[418,1,1,40,41]]],[18,6,6,41,47,[[481,1,1,41,42],[508,1,1,42,43],[533,1,1,43,44],[581,1,1,44,45],[607,1,1,45,46],[608,1,1,46,47]]],[19,2,2,47,49,[[630,1,1,47,48],[658,1,1,48,49]]],[20,1,1,49,50,[[667,1,1,49,50]]],[22,6,6,50,56,[[685,1,1,50,51],[697,1,1,51,52],[714,2,2,52,54],[722,1,1,54,55],[744,1,1,55,56]]],[23,11,10,56,66,[[746,1,1,56,57],[751,1,1,57,58],[773,2,1,58,59],[774,1,1,59,60],[776,1,1,60,61],[779,1,1,61,62],[781,1,1,62,63],[782,1,1,63,64],[793,1,1,64,65],[795,1,1,65,66]]],[25,13,13,66,79,[[811,1,1,66,67],[812,1,1,67,68],[815,2,2,68,70],[817,2,2,70,72],[818,1,1,72,73],[837,1,1,73,74],[840,1,1,74,75],[844,2,2,75,77],[845,2,2,77,79]]],[26,1,1,79,80,[[859,1,1,79,80]]]],[153,204,339,590,636,667,1502,2216,2319,2323,2925,3116,3153,3161,3755,4212,4306,5043,5524,6064,6437,6918,7667,7719,7722,7931,8274,8564,8666,8904,8923,9015,9783,10046,10054,11311,11314,11881,12319,12370,12411,13970,14337,14758,15593,16147,16151,16460,17292,17476,17785,18021,18337,18345,18552,18939,18984,19123,19661,19669,19739,19838,19892,19902,20129,20272,20634,20666,20735,20738,20767,20791,20833,21374,21463,21588,21589,21612,21629,22018]]],["into",[306,290,[[0,24,23,0,23,[[5,2,2,0,2],[6,5,5,2,7],[7,2,1,7,8],[18,2,2,8,10],[20,1,1,10,11],[21,1,1,11,12],[23,1,1,12,13],[27,1,1,13,14],[35,1,1,14,15],[36,2,2,15,17],[38,1,1,17,18],[39,2,2,18,20],[41,2,2,20,22],[48,1,1,22,23]]],[1,23,22,23,45,[[53,2,1,23,24],[56,1,1,24,25],[58,1,1,25,26],[62,2,2,26,28],[64,2,2,28,30],[65,1,1,30,31],[67,2,2,31,33],[72,1,1,33,34],[73,3,3,34,37],[74,1,1,37,38],[78,1,1,38,39],[79,1,1,39,40],[82,1,1,40,41],[89,4,4,41,45]]],[2,20,19,45,64,[[95,1,1,45,46],[98,1,1,46,47],[99,1,1,47,48],[101,1,1,48,49],[103,7,7,49,56],[105,6,5,56,61],[108,1,1,61,62],[112,1,1,62,63],[114,1,1,63,64]]],[3,31,31,64,95,[[121,1,1,64,65],[123,1,1,65,66],[127,1,1,66,67],[130,5,5,67,72],[131,2,2,72,74],[132,2,2,74,76],[133,1,1,76,77],[135,3,3,77,80],[136,4,4,80,84],[138,1,1,84,85],[141,1,1,85,86],[143,1,1,86,87],[147,2,2,87,89],[148,2,2,89,91],[149,2,2,91,93],[150,1,1,93,94],[151,1,1,94,95]]],[4,20,20,95,115,[[153,1,1,95,96],[154,1,1,96,97],[158,1,1,97,98],[159,2,2,98,100],[160,1,1,100,101],[161,2,2,101,103],[165,1,1,103,104],[169,1,1,104,105],[170,1,1,105,106],[171,1,1,106,107],[176,1,1,107,108],[178,1,1,108,109],[181,1,1,109,110],[182,1,1,110,111],[183,3,3,111,114],[184,1,1,114,115]]],[5,6,6,115,121,[[190,1,1,115,116],[196,3,3,116,119],[208,1,1,119,120],[210,1,1,120,121]]],[6,8,8,121,129,[[214,1,1,121,122],[217,1,1,122,123],[219,1,1,123,124],[229,5,5,124,129]]],[7,1,1,129,130,[[235,1,1,129,130]]],[8,11,11,130,141,[[237,1,1,130,131],[239,4,4,131,135],[241,1,1,135,136],[242,1,1,136,137],[249,1,1,137,138],[256,1,1,138,139],[262,1,1,139,140],[264,1,1,140,141]]],[9,4,4,141,145,[[271,1,1,141,142],[277,1,1,142,143],[283,1,1,143,144],[284,1,1,144,145]]],[10,11,10,145,155,[[293,1,1,145,146],[296,1,1,146,147],[298,1,1,147,148],[303,1,1,148,149],[304,1,1,149,150],[306,1,1,150,151],[307,1,1,151,152],[310,2,1,152,153],[311,1,1,153,154],[312,1,1,154,155]]],[11,13,11,155,166,[[316,4,3,155,158],[318,1,1,158,159],[319,3,2,159,161],[322,1,1,161,162],[331,2,2,162,164],[334,1,1,164,165],[335,1,1,165,166]]],[12,4,4,166,170,[[348,1,1,166,167],[350,1,1,167,168],[356,1,1,168,169],[358,1,1,169,170]]],[13,6,6,170,176,[[371,1,1,170,171],[373,1,1,171,172],[378,1,1,172,173],[389,1,1,173,174],[392,1,1,174,175],[393,1,1,175,176]]],[14,1,1,176,177,[[412,1,1,176,177]]],[15,6,6,177,183,[[414,2,2,177,179],[418,1,1,179,180],[419,1,1,180,181],[420,1,1,181,182],[421,1,1,182,183]]],[16,10,9,183,192,[[426,2,1,183,184],[427,2,2,184,186],[428,2,2,186,188],[429,2,2,188,190],[432,2,2,190,192]]],[17,3,3,192,195,[[453,1,1,192,193],[473,1,1,193,194],[475,1,1,194,195]]],[18,3,3,195,198,[[550,1,1,195,196],[556,1,1,196,197],[572,1,1,197,198]]],[20,1,1,198,199,[[659,1,1,198,199]]],[21,4,3,199,202,[[673,2,1,199,200],[676,1,1,200,201],[678,1,1,201,202]]],[22,6,6,202,208,[[691,1,1,202,203],[700,1,1,203,204],[702,1,1,204,205],[715,2,2,205,207],[743,1,1,207,208]]],[23,26,24,208,232,[[746,1,1,208,209],[748,1,1,209,210],[752,1,1,210,211],[758,1,1,211,212],[765,1,1,212,213],[770,2,2,213,215],[772,2,2,215,217],[773,1,1,217,218],[776,1,1,218,219],[779,3,3,219,222],[780,1,1,222,223],[781,2,1,223,224],[782,4,4,224,228],[785,2,1,228,229],[791,1,1,229,230],[792,1,1,230,231],[795,1,1,231,232]]],[24,1,1,232,233,[[798,1,1,232,233]]],[25,45,41,233,274,[[804,2,2,233,235],[806,2,1,235,236],[809,1,1,236,237],[811,1,1,237,238],[814,1,1,238,239],[815,1,1,239,240],[818,1,1,240,241],[821,8,7,241,248],[822,1,1,248,249],[823,2,2,249,251],[824,1,1,251,252],[825,1,1,252,253],[833,1,1,253,254],[837,1,1,254,255],[838,2,2,255,257],[839,1,1,257,258],[841,3,3,258,261],[843,3,2,261,263],[844,2,2,263,265],[845,6,5,265,270],[847,3,3,270,273],[848,1,1,273,274]]],[26,1,1,274,275,[[860,1,1,274,275]]],[27,1,1,275,276,[[872,1,1,275,276]]],[28,2,2,276,278,[[877,1,1,276,277],[878,1,1,277,278]]],[29,1,1,278,279,[[885,1,1,278,279]]],[31,6,5,279,284,[[889,5,4,279,283],[890,1,1,283,284]]],[36,1,1,284,285,[[909,1,1,284,285]]],[37,5,4,285,289,[[915,3,2,285,287],[916,1,1,287,288],[920,1,1,288,289]]],[38,1,1,289,290,[[927,1,1,289,290]]]],[155,156,160,166,168,172,174,192,459,460,545,549,611,788,1046,1105,1119,1169,1175,1183,1269,1277,1506,1608,1708,1762,1872,1878,1942,1945,1950,2004,2026,2164,2190,2192,2195,2211,2366,2402,2484,2727,2728,2739,2742,2879,2976,2986,3048,3119,3145,3151,3152,3156,3157,3164,3203,3204,3224,3227,3229,3304,3412,3471,3809,3939,4054,4116,4124,4132,4138,4148,4155,4171,4208,4241,4252,4295,4296,4303,4315,4323,4335,4338,4388,4479,4566,4688,4718,4725,4727,4798,4811,4818,4873,4914,4967,5096,5112,5137,5144,5178,5185,5288,5372,5393,5417,5535,5575,5707,5713,5748,5749,5751,5807,5915,6083,6084,6091,6439,6484,6621,6709,6800,7035,7036,7046,7047,7053,7201,7276,7300,7302,7303,7304,7345,7353,7534,7787,7931,7978,8140,8270,8462,8495,8817,8904,8991,9202,9246,9301,9336,9438,9455,9515,9614,9642,9644,9679,9715,9719,9808,10093,10094,10165,10177,10688,10773,10909,10961,11275,11326,11448,11663,11748,11757,12258,12314,12315,12412,12425,12494,12534,12724,12738,12740,12756,12760,12764,12773,12814,12815,13294,13815,13887,15037,15197,15465,17322,17575,17625,17642,17920,18070,18113,18385,18386,18904,18972,19032,19167,19311,19444,19594,19595,19621,19624,19649,19749,19825,19827,19834,19865,19890,19901,19904,19906,19909,19964,20079,20124,20275,20344,20524,20525,20550,20620,20640,20717,20750,20829,20901,20905,20910,20923,20930,20933,20937,20974,20995,20996,21046,21060,21272,21383,21409,21418,21433,21479,21494,21509,21553,21566,21576,21577,21608,21615,21618,21620,21626,21674,21675,21676,21687,22045,22245,22331,22345,22476,22535,22536,22543,22546,22555,22846,22940,22944,22953,23026,23130]]],["me",[2,2,[[8,1,1,0,1,[[244,1,1,0,1]]],[25,1,1,1,2,[[839,1,1,1,2]]]],[7407,21426]]],["near",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8386]]],["of",[31,28,[[0,3,3,0,3,[[19,1,1,0,1],[21,1,1,1,2],[25,1,1,2,3]]],[1,2,2,3,5,[[75,1,1,3,4],[87,1,1,4,5]]],[2,2,1,5,6,[[102,2,1,5,6]]],[9,3,3,6,9,[[269,1,1,6,7],[273,1,1,7,8],[290,1,1,8,9]]],[10,1,1,9,10,[[296,1,1,9,10]]],[11,1,1,10,11,[[331,1,1,10,11]]],[17,4,4,11,15,[[440,1,1,11,12],[450,1,1,12,13],[477,2,2,13,15]]],[23,9,7,15,22,[[770,3,3,15,18],[773,4,2,18,20],[784,1,1,20,21],[786,1,1,21,22]]],[25,5,5,22,27,[[813,1,1,22,23],[820,1,1,23,24],[822,1,1,24,25],[845,1,1,25,26],[847,1,1,26,27]]],[32,1,1,27,28,[[899,1,1,27,28]]]],[497,549,694,2240,2647,3059,8099,8199,8708,8914,10070,12956,13225,13929,13930,19575,19585,19591,19651,19656,19957,19985,20699,20885,20956,21606,21674,22681]]],["on",[45,40,[[1,3,3,0,3,[[68,1,1,0,1],[77,1,1,1,2],[88,1,1,2,3]]],[2,1,1,3,4,[[91,1,1,3,4]]],[5,3,3,4,7,[[191,1,1,4,5],[203,2,2,5,7]]],[6,1,1,7,8,[[225,1,1,7,8]]],[8,7,5,8,13,[[237,1,1,8,9],[241,1,1,9,10],[251,2,1,10,11],[252,2,1,11,12],[258,1,1,12,13]]],[9,4,4,13,17,[[269,1,1,13,14],[274,1,1,14,15],[280,2,2,15,17]]],[10,2,2,17,19,[[300,1,1,17,18],[308,1,1,18,19]]],[11,4,3,19,22,[[321,4,3,19,22]]],[17,1,1,22,23,[[464,1,1,22,23]]],[18,4,3,23,26,[[499,1,1,23,24],[504,2,1,24,25],[514,1,1,25,26]]],[22,1,1,26,27,[[729,1,1,26,27]]],[23,2,2,27,29,[[780,1,1,27,28],[792,1,1,28,29]]],[25,9,8,29,37,[[802,1,1,29,30],[808,1,1,30,31],[824,1,1,31,32],[841,1,1,32,33],[842,3,2,33,35],[843,1,1,35,36],[844,1,1,36,37]]],[27,2,2,37,39,[[865,1,1,37,38],[873,1,1,38,39]]],[34,1,1,39,40,[[903,1,1,39,40]]]],[2046,2317,2683,2774,5948,6282,6283,6947,7274,7346,7602,7621,7834,8110,8216,8359,8378,9098,9387,9762,9769,9789,13556,14212,14299,14484,18678,19865,20091,20474,20593,21012,21517,21551,21552,21559,21592,22141,22258,22744]]],["over",[23,19,[[5,3,2,0,2,[[194,2,1,0,1],[195,1,1,1,2]]],[9,7,5,2,7,[[267,1,1,2,3],[268,3,1,3,4],[269,1,1,4,5],[286,1,1,5,6],[289,1,1,6,7]]],[10,1,1,7,8,[[298,1,1,7,8]]],[11,5,4,8,12,[[317,1,1,8,9],[321,4,3,9,12]]],[23,4,4,12,16,[[777,1,1,12,13],[792,1,1,13,14],[793,1,1,14,15],[794,1,1,15,16]]],[25,1,1,16,17,[[842,1,1,16,17]]],[27,1,1,17,18,[[873,1,1,17,18]]],[37,1,1,18,19,[[911,1,1,18,19]]]],[6035,6038,8046,8058,8114,8577,8676,8992,9658,9759,9762,9768,19801,20120,20146,20210,21532,22256,22899]]],["thee",[5,5,[[18,5,5,0,5,[[509,1,1,0,1],[517,1,1,1,2],[563,1,1,2,3],[565,1,1,3,4],[620,1,1,4,5]]]],[14364,14530,15286,15317,16299]]],["their",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6053]]],["therein",[1,1,[[25,1,1,0,1,[[803,1,1,0,1]]]],[20502]]],["thereon",[2,2,[[3,1,1,0,1,[[132,1,1,0,1]]],[25,1,1,1,2,[[841,1,1,1,2]]]],[4212,21516]]],["through",[2,2,[[3,1,1,0,1,[[141,1,1,0,1]]],[25,1,1,1,2,[[842,1,1,1,2]]]],[4479,21545]]],["to",[1174,1013,[[0,73,70,0,70,[[2,1,1,0,1],[3,2,2,1,3],[5,1,1,3,4],[7,1,1,4,5],[8,1,1,5,6],[10,1,1,6,7],[13,2,2,7,9],[14,1,1,9,10],[15,1,1,10,11],[16,1,1,11,12],[18,3,3,12,15],[19,1,1,15,16],[20,1,1,16,17],[21,3,3,17,20],[23,6,6,20,26],[24,2,2,26,28],[25,2,2,28,30],[26,5,5,30,35],[27,1,1,35,36],[28,3,3,36,39],[29,2,2,39,41],[30,4,4,41,45],[31,5,4,45,49],[33,1,1,49,50],[34,1,1,50,51],[36,5,4,51,55],[37,2,2,55,57],[38,1,1,57,58],[40,2,2,58,60],[41,5,4,60,64],[42,2,2,64,66],[43,2,2,66,68],[44,2,2,68,70]]],[1,28,26,70,96,[[51,2,2,70,72],[52,1,1,72,73],[53,2,2,73,75],[54,2,2,75,77],[55,1,1,77,78],[61,1,1,78,79],[63,1,1,79,80],[65,2,2,80,82],[68,3,3,82,85],[70,1,1,85,86],[73,1,1,86,87],[74,1,1,87,88],[75,3,2,88,90],[79,1,1,90,91],[82,1,1,91,92],[85,3,3,92,95],[86,2,1,95,96]]],[2,19,19,96,115,[[91,1,1,96,97],[93,2,2,97,99],[94,1,1,99,100],[95,1,1,100,101],[97,1,1,101,102],[100,1,1,102,103],[102,1,1,103,104],[103,1,1,104,105],[104,2,2,105,107],[107,3,3,107,110],[109,1,1,110,111],[110,1,1,111,112],[111,2,2,112,114],[113,1,1,114,115]]],[3,26,22,115,137,[[120,1,1,115,116],[122,2,1,116,117],[126,3,2,117,119],[128,1,1,119,120],[129,3,1,120,121],[130,2,2,121,123],[132,1,1,123,124],[137,1,1,124,125],[138,1,1,125,126],[139,2,2,126,128],[140,2,2,128,130],[143,1,1,130,131],[146,1,1,131,132],[148,2,2,132,134],[151,2,2,134,136],[152,1,1,136,137]]],[4,12,9,137,146,[[159,2,1,137,138],[161,2,1,138,139],[164,2,1,139,140],[174,2,2,140,142],[182,1,1,142,143],[184,2,2,143,145],[186,1,1,145,146]]],[5,48,37,146,183,[[188,2,2,146,148],[190,1,1,148,149],[193,1,1,149,150],[194,2,2,150,152],[195,3,2,152,154],[196,4,2,154,156],[197,4,2,156,158],[201,5,5,158,163],[202,1,1,163,164],[204,11,9,164,173],[205,3,3,173,176],[206,1,1,176,177],[208,10,6,177,183]]],[6,33,30,183,213,[[212,1,1,183,184],[214,4,4,184,188],[216,2,2,188,190],[217,3,3,190,193],[219,2,2,193,195],[220,2,2,195,197],[221,2,2,197,199],[223,3,2,199,201],[224,1,1,201,202],[225,3,3,202,205],[226,2,2,205,207],[228,1,1,207,208],[229,2,2,208,210],[231,5,3,210,213]]],[7,2,2,213,215,[[234,2,2,213,215]]],[8,125,108,215,323,[[236,2,2,215,217],[238,4,4,217,221],[240,1,1,221,222],[241,3,2,222,224],[242,1,1,224,225],[243,2,2,225,227],[244,4,4,227,231],[245,6,5,231,236],[246,2,2,236,238],[248,3,3,238,241],[249,7,7,241,248],[250,4,4,248,252],[251,4,4,252,256],[252,13,10,256,266],[253,2,2,266,268],[254,6,5,268,273],[255,4,4,273,277],[256,4,4,277,281],[257,4,3,281,284],[258,6,6,284,290],[259,2,2,290,292],[260,7,7,292,299],[261,14,9,299,308],[262,1,1,308,309],[263,7,5,309,314],[264,2,2,314,316],[265,10,7,316,323]]],[9,103,88,323,411,[[267,1,1,323,324],[268,5,4,324,328],[269,10,8,328,336],[270,2,2,336,338],[271,5,5,338,343],[272,2,2,343,345],[273,1,1,345,346],[275,1,1,346,347],[277,7,6,347,353],[278,7,6,353,359],[279,6,6,359,365],[280,11,8,365,373],[281,5,5,373,378],[282,4,3,378,381],[283,8,7,381,388],[284,2,2,388,390],[285,9,5,390,395],[286,5,5,395,400],[288,1,1,400,401],[289,4,4,401,405],[290,7,6,405,411]]],[10,77,71,411,482,[[291,1,1,411,412],[292,5,5,412,417],[293,1,1,417,418],[295,3,2,418,420],[296,1,1,420,421],[297,2,2,421,423],[298,6,5,423,428],[299,2,2,428,430],[300,2,2,430,432],[301,3,2,432,434],[302,7,6,434,440],[303,7,7,440,447],[304,3,3,447,450],[305,1,1,450,451],[306,1,1,451,452],[307,4,3,452,455],[308,5,5,455,460],[309,1,1,460,461],[310,6,6,461,467],[311,10,10,467,477],[312,6,5,477,482]]],[11,118,99,482,581,[[313,3,3,482,485],[314,5,5,485,490],[315,5,4,490,494],[316,17,12,494,506],[317,9,7,506,513],[318,7,6,513,519],[319,6,6,519,525],[320,3,3,525,528],[321,9,7,528,535],[322,10,8,535,543],[323,3,3,543,546],[324,1,1,546,547],[326,3,2,547,549],[328,2,2,549,551],[329,2,2,551,553],[330,12,10,553,563],[331,6,5,563,568],[332,3,3,568,571],[333,2,1,571,572],[334,6,5,572,577],[335,2,2,577,579],[337,2,2,579,581]]],[12,36,32,581,613,[[339,1,1,581,582],[344,1,1,582,583],[345,1,1,583,584],[346,1,1,584,585],[347,1,1,585,586],[348,6,6,586,592],[349,4,4,592,596],[350,5,4,596,600],[351,1,1,600,601],[352,1,1,601,602],[353,3,2,602,604],[354,4,4,604,608],[355,1,1,608,609],[356,1,1,609,610],[358,5,3,610,613]]],[13,79,65,613,678,[[368,2,2,613,615],[370,1,1,615,616],[371,1,1,616,617],[372,5,4,617,621],[373,1,1,621,622],[374,2,2,622,624],[375,2,2,624,626],[376,6,5,626,631],[377,2,2,631,633],[378,3,2,633,635],[382,2,2,635,637],[384,13,8,637,645],[385,3,3,645,648],[386,2,2,648,650],[387,1,1,650,651],[388,2,2,651,653],[389,3,3,653,656],[390,3,3,656,659],[391,5,4,659,663],[395,1,1,663,664],[396,2,2,664,666],[398,1,1,666,667],[399,5,3,667,670],[400,9,6,670,676],[401,1,1,676,677],[402,1,1,677,678]]],[14,10,8,678,686,[[405,2,2,678,680],[406,2,1,680,681],[409,1,1,681,682],[410,2,1,682,683],[411,3,3,683,686]]],[15,18,14,686,700,[[413,2,1,686,687],[414,6,5,687,692],[416,5,3,692,695],[418,1,1,695,696],[421,2,2,696,698],[422,2,2,698,700]]],[16,16,12,700,712,[[426,1,1,700,701],[427,5,4,701,705],[428,2,1,705,706],[429,1,1,706,707],[430,2,2,707,709],[431,2,1,709,710],[433,2,1,710,711],[434,1,1,711,712]]],[17,16,16,712,728,[[437,1,1,712,713],[439,1,1,713,714],[440,2,2,714,716],[443,1,1,716,717],[445,1,1,717,718],[448,1,1,718,719],[450,1,1,719,720],[451,1,1,720,721],[465,1,1,721,722],[466,1,1,722,723],[469,1,1,723,724],[473,1,1,724,725],[474,1,1,725,726],[477,2,2,726,728]]],[18,17,15,728,743,[[507,2,2,728,730],[508,1,1,730,731],[517,1,1,731,732],[520,1,1,732,733],[527,2,1,733,734],[546,1,1,734,735],[555,1,1,735,736],[561,1,1,736,737],[562,1,1,737,738],[581,1,1,738,739],[582,2,1,739,740],[584,1,1,740,741],[596,1,1,741,742],[620,1,1,742,743]]],[19,9,8,743,751,[[633,2,2,743,745],[634,5,4,745,749],[635,1,1,749,750],[653,1,1,750,751]]],[20,11,9,751,760,[[659,1,1,751,752],[663,1,1,752,753],[664,1,1,753,754],[665,3,1,754,755],[666,1,1,755,756],[667,2,2,756,758],[668,1,1,758,759],[670,1,1,759,760]]],[21,3,2,760,762,[[672,1,1,760,761],[674,2,1,761,762]]],[22,59,48,762,810,[[680,2,1,762,763],[686,3,3,763,766],[689,1,1,766,767],[691,1,1,767,768],[692,4,3,768,771],[694,1,1,771,772],[695,2,2,772,774],[696,3,2,774,776],[697,4,1,776,777],[699,1,1,777,778],[700,2,2,778,780],[706,1,1,780,781],[707,1,1,781,782],[708,1,1,782,783],[714,9,7,783,790],[715,5,5,790,795],[716,2,2,795,797],[717,3,3,797,800],[727,3,2,800,802],[728,1,1,802,803],[729,2,1,803,804],[733,1,1,804,805],[734,2,2,805,807],[738,1,1,807,808],[744,3,2,808,810]]],[23,116,98,810,908,[[746,1,1,810,811],[747,1,1,811,812],[751,2,2,812,814],[753,2,2,814,816],[755,1,1,816,817],[757,1,1,817,818],[758,1,1,818,819],[762,5,5,819,824],[763,1,1,824,825],[765,1,1,825,826],[766,1,1,826,827],[767,3,3,827,830],[769,2,2,830,832],[770,7,6,832,838],[771,15,6,838,844],[772,1,1,844,845],[773,10,7,845,852],[774,2,2,852,854],[775,2,2,854,856],[776,2,2,856,858],[777,1,1,858,859],[778,6,4,859,863],[779,1,1,863,864],[780,3,3,864,867],[781,5,4,867,871],[782,7,7,871,878],[783,1,1,878,879],[784,6,6,879,885],[785,3,3,885,888],[786,3,2,888,890],[787,1,1,890,891],[788,2,2,891,893],[790,4,3,893,896],[791,2,2,896,898],[792,1,1,898,899],[793,2,2,899,901],[794,4,4,901,905],[795,1,1,905,906],[796,2,2,906,908]]],[24,3,3,908,911,[[797,1,1,908,909],[799,1,1,909,910],[800,1,1,910,911]]],[25,64,56,911,967,[[802,1,1,911,912],[803,2,1,912,913],[804,7,5,913,918],[805,1,1,918,919],[808,1,1,919,920],[809,4,4,920,924],[810,2,1,924,925],[812,1,1,925,926],[813,3,3,926,929],[814,1,1,929,930],[815,3,3,930,933],[819,4,3,933,936],[820,1,1,936,937],[821,1,1,937,938],[824,1,1,938,939],[832,2,2,939,941],[833,1,1,941,942],[834,2,2,942,944],[835,1,1,944,945],[838,3,3,945,948],[841,9,8,948,956],[842,1,1,956,957],[843,2,2,957,959],[844,2,2,959,961],[845,5,4,961,965],[848,1,1,965,966],[849,2,1,966,967]]],[26,5,4,967,971,[[850,1,1,967,968],[858,3,2,968,970],[860,1,1,970,971]]],[27,11,10,971,981,[[862,1,1,971,972],[863,1,1,972,973],[864,1,1,973,974],[866,3,2,974,976],[868,1,1,976,977],[869,1,1,977,978],[870,1,1,978,979],[872,1,1,979,980],[875,1,1,980,981]]],[28,4,4,981,985,[[876,2,2,981,983],[878,2,2,983,985]]],[29,4,3,985,988,[[883,2,1,985,986],[885,2,2,986,988]]],[31,5,5,988,993,[[889,4,4,988,992],[892,1,1,992,993]]],[32,3,2,993,995,[[893,1,1,993,994],[896,2,1,994,995]]],[35,2,2,995,997,[[908,2,2,995,997]]],[36,8,5,997,1002,[[909,1,1,997,998],[910,7,4,998,1002]]],[37,8,8,1002,1010,[[912,2,2,1002,1004],[914,1,1,1004,1005],[915,1,1,1005,1006],[917,2,2,1006,1008],[918,1,1,1008,1009],[921,1,1,1009,1010]]],[38,3,3,1010,1013,[[925,1,1,1010,1011],[927,2,2,1011,1013]]]],[71,83,84,158,194,213,269,343,358,375,390,398,462,467,484,498,530,552,556,566,595,601,629,632,634,635,666,688,718,719,732,736,738,770,773,794,808,818,820,844,852,891,897,908,925,931,934,936,958,1010,1013,1093,1102,1105,1115,1141,1144,1159,1250,1252,1273,1276,1280,1289,1309,1311,1354,1358,1362,1367,1561,1572,1580,1619,1628,1642,1655,1682,1841,1912,1962,1982,2046,2048,2049,2083,2189,2215,2238,2263,2402,2484,2578,2595,2599,2613,2764,2800,2811,2842,2874,2948,2998,3071,3149,3169,3197,3257,3265,3269,3320,3369,3371,3387,3469,3762,3833,3991,4018,4067,4101,4112,4122,4203,4347,4391,4430,4433,4457,4458,4565,4662,4720,4737,4870,4877,4886,5121,5184,5249,5484,5491,5709,5798,5803,5849,5872,5892,5923,5979,6011,6025,6043,6048,6070,6085,6108,6109,6203,6205,6210,6211,6217,6268,6297,6299,6301,6302,6305,6306,6308,6309,6312,6332,6333,6348,6374,6435,6439,6441,6454,6457,6458,6546,6604,6606,6616,6617,6676,6683,6700,6704,6719,6790,6804,6823,6829,6832,6837,6895,6905,6918,6930,6933,6940,6952,6955,7008,7026,7046,7107,7110,7115,7188,7189,7231,7237,7282,7284,7287,7297,7329,7351,7352,7360,7373,7391,7394,7408,7412,7418,7421,7426,7429,7432,7442,7448,7459,7494,7498,7508,7509,7514,7517,7520,7534,7535,7551,7573,7576,7592,7594,7596,7612,7616,7617,7626,7638,7644,7650,7651,7658,7661,7662,7663,7676,7693,7697,7707,7713,7721,7724,7729,7740,7749,7757,7768,7773,7774,7782,7786,7788,7796,7798,7816,7819,7820,7826,7829,7833,7842,7856,7862,7866,7870,7878,7887,7897,7901,7907,7910,7911,7912,7913,7914,7919,7920,7930,7939,7944,7949,7950,7954,7957,7971,7976,7981,7985,7989,7990,7993,7999,8004,8024,8063,8071,8072,8075,8088,8089,8093,8095,8101,8104,8105,8112,8125,8128,8133,8135,8143,8149,8151,8163,8166,8183,8236,8265,8268,8271,8272,8273,8286,8290,8291,8293,8306,8309,8313,8324,8341,8342,8347,8350,8354,8359,8360,8366,8380,8385,8387,8388,8389,8391,8395,8402,8408,8411,8437,8443,8446,8455,8462,8464,8467,8469,8472,8474,8500,8502,8516,8522,8530,8552,8553,8557,8558,8560,8575,8576,8609,8666,8669,8674,8676,8694,8698,8699,8705,8710,8713,8750,8777,8783,8800,8810,8814,8821,8880,8886,8907,8948,8968,8991,9013,9015,9018,9028,9053,9079,9081,9085,9129,9130,9156,9158,9160,9163,9165,9178,9188,9194,9201,9206,9211,9213,9215,9221,9224,9231,9267,9284,9327,9328,9341,9342,9360,9381,9383,9384,9396,9410,9417,9430,9439,9440,9441,9454,9455,9456,9459,9465,9466,9467,9468,9471,9479,9482,9484,9495,9506,9516,9536,9542,9543,9554,9556,9569,9571,9576,9583,9588,9589,9600,9608,9611,9613,9615,9616,9621,9622,9623,9626,9627,9628,9630,9653,9655,9658,9660,9662,9669,9671,9684,9692,9693,9696,9697,9706,9710,9713,9716,9717,9724,9725,9732,9736,9741,9761,9767,9768,9775,9779,9781,9788,9794,9795,9798,9799,9800,9802,9808,9810,9833,9838,9842,9854,9904,9905,9970,9973,9987,9996,10038,10041,10042,10043,10049,10050,10051,10055,10056,10061,10063,10066,10067,10071,10081,10099,10100,10102,10126,10149,10153,10154,10160,10163,10174,10190,10228,10245,10327,10558,10581,10640,10663,10674,10676,10688,10691,10696,10698,10721,10739,10740,10743,10763,10766,10772,10773,10775,10794,10840,10843,10864,10866,10868,10881,10900,10909,10936,10945,10956,11214,11222,11248,11275,11290,11301,11315,11320,11336,11363,11364,11365,11369,11398,11402,11404,11407,11410,11416,11417,11442,11444,11511,11516,11544,11547,11554,11556,11557,11559,11567,11570,11577,11578,11582,11614,11624,11636,11651,11653,11658,11668,11671,11688,11689,11700,11711,11714,11721,11722,11809,11833,11847,11881,11915,11918,11926,11942,11948,11949,11955,11956,11961,11987,12013,12098,12104,12112,12182,12216,12238,12243,12248,12307,12311,12316,12318,12320,12321,12373,12374,12378,12404,12527,12537,12586,12587,12724,12727,12732,12736,12738,12759,12768,12784,12787,12805,12826,12864,12896,12942,12952,12977,13034,13107,13156,13211,13249,13579,13611,13701,13813,13845,13929,13930,14327,14328,14333,14530,14569,14672,14961,15167,15266,15279,15600,15619,15706,15934,16294,16546,16569,16597,16598,16600,16602,16606,17156,17320,17398,17423,17431,17472,17478,17479,17508,17528,17558,17588,17688,17810,17818,17826,17894,17920,17930,17943,17947,17981,17990,17991,17999,18004,18007,18046,18057,18060,18175,18204,18246,18334,18337,18341,18342,18346,18347,18352,18357,18359,18361,18362,18373,18394,18395,18413,18417,18420,18641,18658,18670,18674,18747,18756,18760,18829,18924,18934,18966,19003,19120,19146,19178,19187,19227,19277,19294,19385,19389,19395,19402,19403,19421,19443,19462,19505,19519,19521,19536,19566,19576,19583,19584,19588,19589,19590,19598,19599,19605,19608,19612,19618,19622,19636,19638,19643,19645,19654,19659,19660,19668,19670,19703,19712,19732,19739,19798,19803,19813,19818,19823,19836,19862,19869,19874,19877,19881,19887,19888,19897,19903,19906,19913,19914,19917,19918,19928,19942,19946,19949,19953,19954,19956,19963,19967,19972,19980,19987,19998,20011,20034,20046,20058,20061,20074,20076,20091,20155,20161,20171,20172,20182,20185,20273,20291,20302,20322,20375,20424,20473,20495,20507,20508,20513,20517,20528,20537,20590,20607,20611,20618,20621,20625,20679,20683,20697,20706,20722,20735,20738,20743,20855,20861,20864,20890,20930,21024,21232,21244,21254,21282,21302,21326,21404,21406,21414,21493,21500,21504,21505,21512,21523,21525,21526,21527,21566,21571,21573,21591,21605,21614,21615,21618,21698,21703,21748,21990,21994,22042,22096,22112,22129,22165,22167,22188,22195,22221,22247,22284,22292,22310,22351,22355,22439,22474,22478,22533,22537,22538,22544,22577,22580,22622,22822,22829,22841,22857,22871,22872,22876,22903,22910,22926,22946,22965,22967,22997,23041,23090,23121,23125]]],["touching",[2,2,[[23,1,1,0,1,[[766,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]]],[19465,20590]]],["toward",[66,56,[[0,2,2,0,2,[[29,1,1,0,1],[30,1,1,1,2]]],[1,2,2,2,4,[[65,1,1,2,3],[74,1,1,3,4]]],[2,1,1,4,5,[[98,1,1,4,5]]],[3,3,3,5,8,[[132,1,1,5,6],[140,1,1,6,7],[148,1,1,7,8]]],[5,7,5,8,13,[[194,2,1,8,9],[201,3,2,9,11],[204,2,2,11,13]]],[8,1,1,13,14,[[255,1,1,13,14]]],[9,1,1,14,15,[[290,1,1,14,15]]],[10,8,6,15,21,[[298,7,5,15,20],[304,1,1,20,21]]],[11,1,1,21,22,[[315,1,1,21,22]]],[13,4,4,22,26,[[372,3,3,22,25],[382,1,1,25,26]]],[17,1,1,26,27,[[446,1,1,26,27]]],[18,4,4,27,31,[[482,1,1,27,28],[502,1,1,28,29],[505,1,1,29,30],[615,1,1,30,31]]],[20,1,1,31,32,[[659,1,1,31,32]]],[22,2,2,32,34,[[716,1,1,32,33],[741,1,1,33,34]]],[23,1,1,34,35,[[759,1,1,34,35]]],[24,1,1,35,36,[[798,1,1,35,36]]],[25,16,14,36,50,[[802,1,1,36,37],[805,1,1,37,38],[807,1,1,38,39],[809,2,2,39,41],[818,1,1,41,42],[821,1,1,42,43],[822,2,1,43,44],[825,1,1,44,45],[834,1,1,45,46],[841,1,1,46,47],[842,2,1,47,48],[843,1,1,48,49],[848,1,1,49,50]]],[26,3,1,50,51,[[857,3,1,50,51]]],[28,2,1,51,52,[[877,2,1,51,52]]],[31,1,1,52,53,[[890,1,1,52,53]]],[37,4,3,53,56,[[916,2,2,53,55],[924,2,1,55,56]]]],[870,878,1957,2215,2975,4236,4447,4732,6020,6209,6223,6310,6311,7742,8697,9014,9015,9020,9023,9027,9231,9590,11302,11303,11308,11518,13121,13980,14266,14301,16233,17321,18392,18881,19316,20351,20487,20536,20565,20618,20620,20831,20941,20946,21079,21305,21508,21545,21553,21687,21970,22331,22552,22953,22955,23076]]],["under",[2,2,[[9,2,2,0,2,[[268,1,1,0,1],[270,1,1,1,2]]]],[8072,8126]]],["unto",[2832,2429,[[0,324,283,0,283,[[0,1,1,0,1],[1,2,2,1,3],[2,7,6,3,9],[3,7,7,9,16],[5,2,2,16,18],[6,2,2,18,20],[7,4,3,20,23],[8,2,2,23,25],[11,6,4,25,29],[12,2,2,29,31],[13,2,2,31,33],[14,4,4,33,37],[15,6,5,37,42],[16,4,4,42,46],[17,12,11,46,57],[18,11,10,57,67],[19,3,3,67,70],[20,5,4,70,74],[21,7,7,74,81],[22,3,3,81,84],[23,23,19,84,103],[24,2,2,103,105],[25,6,6,105,111],[26,13,11,111,122],[27,2,2,122,124],[28,5,4,124,128],[29,10,9,128,137],[30,10,9,137,146],[31,4,4,146,150],[32,2,2,150,152],[33,11,8,152,160],[34,8,7,160,167],[36,11,10,167,177],[37,7,5,177,182],[38,6,5,182,187],[39,5,4,187,191],[40,12,12,191,203],[41,17,15,203,218],[42,10,10,218,228],[43,13,12,228,240],[44,13,11,240,251],[45,7,4,251,255],[46,11,9,255,264],[47,13,10,264,274],[48,5,4,274,278],[49,6,5,278,283]]],[1,292,224,283,507,[[50,3,2,283,285],[51,3,3,285,288],[52,24,12,288,300],[53,15,14,300,314],[54,4,4,314,318],[55,21,12,318,330],[56,17,13,330,343],[57,13,7,343,350],[58,13,8,350,358],[59,11,8,358,366],[60,4,3,366,369],[61,7,7,369,376],[62,3,3,376,379],[63,10,8,379,387],[64,2,2,387,389],[65,15,14,389,403],[66,4,4,403,407],[67,9,8,407,415],[68,19,12,415,427],[69,6,5,427,432],[70,2,1,432,433],[71,5,5,433,438],[72,3,3,438,441],[73,7,4,441,445],[74,3,3,445,448],[75,1,1,448,449],[77,7,6,449,455],[78,2,2,455,457],[79,5,5,457,462],[80,4,4,462,466],[81,17,14,466,480],[82,12,8,480,488],[83,7,6,488,494],[84,3,3,494,497],[85,6,5,497,502],[88,2,2,502,504],[89,3,3,504,507]]],[2,152,118,507,625,[[90,5,3,507,510],[91,2,1,510,511],[93,4,4,511,515],[94,3,3,515,518],[95,7,7,518,525],[96,4,4,525,529],[97,5,5,529,534],[98,12,11,534,545],[99,9,7,545,552],[100,3,2,552,554],[101,4,3,554,557],[102,5,4,557,561],[103,6,4,561,565],[104,6,4,565,569],[105,5,4,569,573],[106,10,6,573,579],[107,4,3,579,582],[108,5,4,582,586],[109,2,2,586,588],[110,11,7,588,595],[111,10,7,595,602],[112,13,10,602,612],[113,5,5,612,617],[114,8,5,617,622],[115,1,1,622,623],[116,3,2,623,625]]],[3,250,206,625,831,[[117,2,2,625,627],[118,2,1,627,628],[119,5,5,628,633],[120,5,3,633,636],[121,10,9,636,645],[122,7,5,645,650],[123,6,5,650,655],[124,6,5,655,660],[125,6,6,660,666],[126,4,4,666,670],[127,9,7,670,677],[128,8,5,677,682],[129,5,5,682,687],[130,11,10,687,697],[131,12,9,697,706],[132,23,16,706,722],[133,7,7,722,729],[134,8,7,729,736],[135,4,3,736,739],[136,12,11,739,750],[137,4,4,750,754],[138,29,21,754,775],[139,14,12,775,787],[140,3,2,787,789],[141,5,5,789,794],[142,3,2,794,796],[143,6,6,796,802],[144,2,2,802,804],[146,1,1,804,805],[147,11,9,805,814],[148,9,8,814,822],[149,3,2,822,824],[150,3,3,824,827],[151,4,3,827,830],[152,1,1,830,831]]],[4,150,127,831,958,[[153,15,14,831,845],[154,7,7,845,852],[155,3,2,852,854],[156,9,8,854,862],[157,10,6,862,868],[161,6,6,868,874],[162,6,4,874,878],[163,2,2,878,880],[164,2,2,880,882],[165,4,4,882,886],[166,1,1,886,887],[167,2,2,887,889],[169,6,4,889,893],[170,7,6,893,899],[171,1,1,899,900],[172,8,6,900,906],[173,9,8,906,914],[174,5,5,914,919],[175,3,2,919,921],[176,2,2,921,923],[177,4,4,923,927],[178,6,4,927,931],[179,4,4,931,935],[180,2,2,935,937],[181,3,2,937,939],[182,2,2,939,941],[183,12,9,941,950],[184,5,4,950,954],[185,1,1,954,955],[186,3,3,955,958]]],[5,120,102,958,1060,[[187,5,4,958,962],[188,6,6,962,968],[189,5,5,968,973],[190,8,7,973,980],[191,4,4,980,984],[192,5,5,984,989],[193,6,5,989,994],[194,3,3,994,997],[195,12,10,997,1007],[196,15,11,1007,1018],[197,2,2,1018,1020],[199,1,1,1020,1021],[200,4,2,1021,1023],[201,5,4,1023,1027],[202,1,1,1027,1028],[203,2,2,1028,1030],[204,1,1,1030,1031],[206,6,4,1031,1035],[207,5,3,1035,1038],[208,14,12,1038,1050],[209,1,1,1050,1051],[210,9,9,1051,1060]]],[6,153,136,1060,1196,[[212,4,4,1060,1064],[213,6,5,1064,1069],[214,11,10,1069,1079],[216,16,15,1079,1094],[217,11,7,1094,1101],[218,9,9,1101,1110],[219,10,9,1110,1119],[220,3,3,1119,1122],[221,18,16,1122,1138],[222,2,2,1138,1140],[223,15,11,1140,1151],[224,2,2,1151,1153],[226,14,13,1153,1166],[227,1,1,1166,1167],[228,10,10,1167,1177],[229,10,9,1177,1186],[230,6,6,1186,1192],[231,5,4,1192,1196]]],[7,17,15,1196,1211,[[232,5,4,1196,1200],[233,7,7,1200,1207],[234,3,2,1207,1209],[235,2,2,1209,1211]]],[8,142,121,1211,1332,[[236,2,2,1211,1213],[237,4,2,1213,1215],[238,4,3,1215,1218],[239,2,2,1218,1220],[240,1,1,1220,1221],[242,6,4,1221,1225],[243,6,5,1225,1230],[244,2,2,1230,1232],[245,6,6,1232,1238],[246,4,4,1238,1242],[247,10,9,1242,1251],[248,2,1,1251,1252],[249,17,13,1252,1265],[250,10,10,1265,1275],[251,10,9,1275,1284],[252,8,8,1284,1292],[253,2,2,1292,1294],[254,5,3,1294,1297],[255,10,9,1297,1306],[256,3,3,1306,1309],[257,4,4,1309,1313],[258,4,4,1313,1317],[259,3,2,1317,1319],[260,2,1,1319,1320],[261,1,1,1320,1321],[262,2,2,1321,1323],[263,7,5,1323,1328],[264,5,4,1328,1332]]],[9,147,130,1332,1462,[[267,9,9,1332,1341],[268,3,2,1341,1343],[269,7,6,1343,1349],[270,1,1,1349,1350],[271,2,2,1350,1352],[272,2,2,1352,1354],[273,6,6,1354,1360],[274,1,1,1360,1361],[275,7,6,1361,1367],[276,2,1,1367,1368],[277,14,9,1368,1377],[278,9,7,1377,1384],[279,9,9,1384,1393],[280,13,12,1393,1405],[281,6,6,1405,1411],[282,9,7,1411,1418],[283,6,6,1418,1424],[284,7,7,1424,1431],[285,12,11,1431,1442],[286,6,5,1442,1447],[287,2,2,1447,1449],[288,1,1,1449,1450],[289,2,2,1450,1452],[290,11,10,1452,1462]]],[10,152,130,1462,1592,[[291,4,3,1462,1465],[292,10,9,1465,1474],[293,3,3,1474,1477],[294,2,2,1477,1479],[295,2,2,1479,1481],[296,1,1,1481,1482],[298,21,16,1482,1498],[299,3,3,1498,1501],[301,4,4,1501,1505],[302,17,12,1505,1517],[303,13,13,1517,1530],[304,2,1,1530,1531],[305,1,1,1531,1532],[307,9,8,1532,1540],[308,15,12,1540,1552],[309,4,4,1552,1556],[310,16,15,1556,1571],[311,10,7,1571,1578],[312,15,14,1578,1592]]],[11,103,92,1592,1684,[[313,18,11,1592,1603],[314,9,8,1603,1611],[315,2,2,1611,1613],[316,12,11,1613,1624],[317,8,8,1624,1632],[318,11,11,1632,1643],[319,4,4,1643,1647],[320,4,4,1647,1651],[321,2,2,1651,1653],[322,4,4,1653,1657],[323,1,1,1657,1658],[324,1,1,1658,1659],[325,4,4,1659,1663],[327,1,1,1663,1664],[328,1,1,1664,1665],[330,5,5,1665,1670],[331,2,2,1670,1672],[332,10,8,1672,1680],[334,2,2,1680,1682],[335,2,2,1682,1684]]],[12,16,16,1684,1700,[[349,2,2,1684,1686],[350,1,1,1686,1687],[352,2,2,1687,1689],[354,2,2,1689,1691],[356,1,1,1691,1692],[358,6,6,1692,1698],[365,1,1,1698,1699],[366,1,1,1699,1700]]],[13,46,44,1700,1744,[[371,3,3,1700,1703],[372,7,7,1703,1710],[375,1,1,1710,1711],[376,7,5,1711,1716],[377,1,1,1716,1717],[380,1,1,1717,1718],[382,2,2,1718,1720],[384,7,7,1720,1727],[385,1,1,1727,1728],[386,3,3,1728,1731],[389,1,1,1731,1732],[390,3,3,1732,1735],[391,1,1,1735,1736],[396,2,2,1736,1738],[398,1,1,1738,1739],[399,2,2,1739,1741],[400,1,1,1741,1742],[401,1,1,1742,1743],[402,1,1,1743,1744]]],[14,9,9,1744,1753,[[405,1,1,1744,1745],[408,1,1,1745,1746],[409,1,1,1746,1747],[410,2,2,1747,1749],[411,2,2,1749,1751],[412,2,2,1751,1753]]],[15,27,25,1753,1778,[[413,2,1,1753,1754],[414,4,3,1754,1757],[416,5,5,1757,1762],[417,1,1,1762,1763],[418,5,5,1763,1768],[420,2,2,1768,1770],[421,4,4,1770,1774],[422,2,2,1774,1776],[425,2,2,1776,1778]]],[16,28,24,1778,1802,[[426,1,1,1778,1779],[427,8,6,1779,1785],[428,3,2,1785,1787],[429,6,5,1787,1792],[430,3,3,1792,1795],[431,2,2,1795,1797],[433,1,1,1797,1798],[434,4,4,1798,1802]]],[17,26,24,1802,1826,[[436,4,4,1802,1806],[437,5,5,1806,1811],[440,2,1,1811,1812],[444,1,1,1812,1813],[445,1,1,1813,1814],[451,1,1,1814,1815],[457,2,2,1815,1817],[465,1,1,1817,1818],[467,1,1,1818,1819],[468,1,1,1819,1820],[469,2,2,1820,1822],[473,1,1,1822,1823],[476,2,1,1823,1824],[477,2,2,1824,1826]]],[18,66,60,1826,1886,[[479,2,2,1826,1828],[480,1,1,1828,1829],[481,1,1,1829,1830],[482,1,1,1830,1831],[495,1,1,1831,1832],[499,3,3,1832,1835],[502,1,1,1835,1836],[505,1,1,1836,1837],[507,2,2,1837,1839],[508,1,1,1839,1840],[509,2,1,1840,1841],[511,2,2,1841,1843],[517,1,1,1843,1844],[519,3,3,1844,1847],[520,3,2,1847,1849],[528,1,1,1849,1850],[538,1,1,1850,1851],[543,1,1,1851,1852],[546,2,2,1852,1854],[548,1,1,1854,1855],[554,3,1,1855,1856],[557,1,1,1856,1857],[562,1,1,1857,1858],[563,3,3,1858,1861],[565,1,1,1861,1862],[567,1,1,1862,1863],[576,1,1,1863,1864],[578,1,1,1864,1865],[579,2,2,1865,1867],[581,1,1,1867,1868],[584,5,5,1868,1873],[596,5,5,1873,1878],[597,1,1,1878,1879],[598,1,1,1879,1880],[600,2,1,1880,1881],[618,1,1,1881,1882],[619,4,3,1882,1885],[620,1,1,1885,1886]]],[19,6,5,1886,1891,[[629,2,1,1886,1887],[630,1,1,1887,1888],[642,1,1,1888,1889],[643,1,1,1889,1890],[657,1,1,1890,1891]]],[20,5,5,1891,1896,[[659,2,2,1891,1893],[661,1,1,1893,1894],[667,1,1,1894,1895],[670,1,1,1895,1896]]],[22,76,64,1896,1960,[[679,1,1,1896,1897],[680,1,1,1897,1898],[684,1,1,1898,1899],[685,3,3,1899,1902],[686,8,5,1902,1907],[688,1,1,1907,1908],[692,1,1,1908,1909],[694,1,1,1909,1910],[696,1,1,1910,1911],[697,2,2,1911,1913],[699,2,2,1913,1915],[700,2,2,1915,1917],[709,1,1,1917,1918],[714,6,5,1918,1923],[715,6,5,1923,1928],[716,3,2,1928,1930],[717,4,1,1930,1931],[718,1,1,1931,1932],[722,2,2,1932,1934],[723,4,3,1934,1937],[724,3,3,1937,1940],[726,3,3,1940,1943],[727,1,1,1943,1944],[729,6,4,1944,1948],[733,5,5,1948,1953],[738,3,3,1953,1956],[740,1,1,1956,1957],[743,2,2,1957,1959],[744,1,1,1959,1960]]],[23,223,195,1960,2155,[[745,8,8,1960,1968],[746,2,2,1968,1970],[747,6,6,1970,1976],[748,1,1,1976,1977],[749,1,1,1977,1978],[750,1,1,1978,1979],[751,7,6,1979,1985],[752,1,1,1985,1986],[755,9,8,1986,1994],[756,1,1,1994,1995],[757,8,7,1995,2002],[758,4,3,2002,2005],[759,4,3,2005,2008],[760,5,5,2008,2013],[761,5,5,2013,2018],[763,2,2,2018,2020],[764,2,2,2020,2022],[765,4,3,2022,2025],[766,1,1,2025,2026],[767,2,2,2026,2028],[768,3,3,2028,2031],[769,9,8,2031,2039],[770,8,8,2039,2047],[771,8,6,2047,2053],[772,4,4,2053,2057],[773,8,7,2057,2064],[774,3,2,2064,2066],[775,1,1,2066,2067],[776,10,9,2067,2076],[777,4,4,2076,2080],[778,5,5,2080,2085],[779,10,8,2085,2093],[780,10,8,2093,2101],[781,5,5,2101,2106],[782,20,13,2106,2119],[783,3,3,2119,2122],[784,6,6,2122,2128],[785,4,4,2128,2132],[786,10,6,2132,2138],[787,4,4,2138,2142],[788,5,4,2142,2146],[789,2,2,2146,2148],[792,1,1,2148,2149],[793,2,2,2149,2151],[794,1,1,2151,2152],[795,2,2,2152,2154],[796,1,1,2154,2155]]],[24,3,3,2155,2158,[[798,1,1,2155,2156],[799,1,1,2156,2157],[801,1,1,2157,2158]]],[25,185,170,2158,2328,[[802,1,1,2158,2159],[803,9,7,2159,2166],[804,17,11,2166,2177],[805,2,2,2177,2179],[807,1,1,2179,2180],[808,2,2,2180,2182],[809,8,8,2182,2190],[810,3,3,2190,2193],[811,2,2,2193,2195],[812,5,5,2195,2200],[813,8,8,2200,2208],[814,3,3,2208,2211],[815,5,5,2211,2216],[816,1,1,2216,2217],[817,3,3,2217,2220],[818,4,4,2220,2224],[819,1,1,2224,2225],[820,1,1,2225,2226],[821,13,12,2226,2238],[822,4,4,2238,2242],[823,3,3,2242,2245],[824,9,6,2245,2251],[825,8,7,2251,2258],[826,1,1,2258,2259],[827,2,2,2259,2261],[828,1,1,2261,2262],[829,3,3,2262,2265],[830,2,2,2265,2267],[831,2,2,2267,2269],[832,6,6,2269,2275],[833,4,4,2275,2279],[834,10,10,2279,2289],[835,3,3,2289,2292],[836,1,1,2292,2293],[837,4,4,2293,2297],[838,11,9,2297,2306],[841,4,4,2306,2310],[842,2,2,2310,2312],[843,1,1,2312,2313],[844,4,4,2313,2317],[845,4,4,2317,2321],[846,1,1,2321,2322],[847,2,2,2322,2324],[848,4,4,2324,2328]]],[26,14,11,2328,2339,[[857,5,4,2328,2332],[858,2,2,2332,2334],[859,6,4,2334,2338],[861,1,1,2338,2339]]],[27,10,10,2339,2349,[[862,2,2,2339,2341],[864,2,2,2341,2343],[866,1,1,2343,2344],[867,1,1,2344,2345],[868,2,2,2345,2347],[872,1,1,2347,2348],[875,1,1,2348,2349]]],[28,3,3,2349,2352,[[876,2,2,2349,2351],[877,1,1,2351,2352]]],[29,8,7,2352,2359,[[880,1,1,2352,2353],[881,1,1,2353,2354],[882,1,1,2354,2355],[885,4,3,2355,2358],[886,1,1,2358,2359]]],[31,18,17,2359,2376,[[889,8,8,2359,2367],[890,3,3,2367,2370],[891,6,5,2370,2375],[892,1,1,2375,2376]]],[32,2,2,2376,2378,[[895,1,1,2376,2377],[899,1,1,2377,2378]]],[34,3,2,2378,2380,[[903,1,1,2378,2379],[904,2,1,2379,2380]]],[35,1,1,2380,2381,[[906,1,1,2380,2381]]],[36,2,2,2381,2383,[[909,1,1,2381,2382],[910,1,1,2382,2383]]],[37,50,44,2383,2427,[[911,10,7,2383,2390],[912,4,4,2390,2394],[913,3,2,2394,2396],[914,8,7,2396,2403],[915,4,4,2403,2407],[916,6,6,2407,2413],[917,5,5,2413,2418],[918,2,2,2418,2420],[921,4,3,2420,2423],[923,2,2,2423,2425],[924,2,2,2425,2427]]],[38,3,2,2427,2429,[[926,1,1,2427,2428],[927,2,1,2428,2429]]]],[8,49,52,56,57,59,64,69,74,83,84,85,86,88,89,92,141,157,168,174,192,195,198,213,222,299,302,305,309,326,332,357,358,361,364,367,369,383,385,386,387,394,398,406,412,415,425,430,431,433,434,437,438,445,451,453,455,460,462,463,465,469,471,475,478,488,491,501,505,512,525,527,535,542,548,550,552,554,558,562,566,574,584,587,593,595,596,597,601,611,615,616,620,621,629,630,631,633,636,641,647,649,656,664,675,693,694,701,708,716,719,728,733,745,746,747,748,749,753,765,766,769,778,782,816,818,825,829,831,833,834,844,846,847,855,857,859,876,877,884,886,889,902,912,916,925,937,944,947,955,973,974,984,986,991,992,994,997,1000,1004,1012,1013,1015,1018,1020,1038,1040,1085,1089,1096,1101,1105,1106,1109,1112,1113,1118,1121,1127,1128,1135,1137,1157,1159,1163,1166,1168,1178,1180,1186,1188,1209,1210,1212,1219,1220,1223,1227,1233,1234,1236,1239,1250,1259,1261,1262,1264,1266,1270,1272,1274,1280,1281,1283,1285,1286,1288,1289,1292,1293,1295,1298,1299,1301,1303,1313,1319,1324,1328,1330,1331,1332,1341,1344,1345,1346,1347,1348,1351,1356,1359,1361,1362,1367,1368,1370,1375,1376,1382,1383,1385,1414,1415,1416,1417,1423,1424,1425,1428,1429,1435,1437,1438,1443,1453,1454,1455,1456,1460,1461,1462,1464,1469,1472,1474,1475,1502,1506,1510,1522,1523,1525,1530,1541,1551,1565,1574,1577,1581,1583,1587,1588,1589,1590,1592,1593,1594,1595,1596,1597,1602,1603,1605,1606,1611,1612,1616,1617,1619,1620,1622,1623,1624,1631,1636,1647,1653,1654,1656,1657,1658,1663,1664,1665,1666,1667,1668,1683,1684,1685,1686,1687,1689,1692,1693,1694,1695,1698,1699,1700,1701,1704,1707,1711,1715,1722,1725,1726,1729,1730,1743,1750,1754,1755,1764,1769,1771,1775,1778,1780,1784,1785,1787,1789,1798,1801,1807,1814,1815,1817,1819,1820,1837,1839,1842,1859,1868,1870,1881,1890,1891,1899,1900,1902,1904,1913,1915,1933,1945,1948,1950,1951,1953,1956,1957,1958,1959,1962,1967,1970,1975,1980,1982,1987,1988,1992,1997,2004,2005,2014,2015,2016,2018,2021,2025,2029,2030,2032,2034,2035,2036,2040,2041,2047,2049,2050,2051,2070,2071,2072,2073,2075,2083,2120,2121,2123,2136,2140,2157,2167,2171,2178,2189,2191,2193,2196,2197,2217,2259,2294,2296,2321,2322,2328,2336,2340,2378,2393,2399,2404,2413,2416,2421,2432,2433,2438,2439,2440,2441,2445,2447,2451,2455,2457,2459,2464,2468,2469,2471,2472,2474,2478,2480,2481,2484,2485,2488,2490,2497,2498,2500,2523,2527,2530,2532,2535,2561,2568,2569,2571,2576,2579,2685,2697,2708,2719,2739,2746,2747,2760,2770,2796,2797,2799,2807,2838,2844,2848,2850,2855,2857,2860,2868,2873,2874,2901,2902,2907,2908,2918,2920,2921,2922,2948,2955,2956,2957,2959,2960,2961,2962,2965,2966,2971,2976,2980,2981,2983,2985,2988,2989,2996,2998,2999,3045,3046,3050,3053,3054,3061,3068,3112,3113,3134,3144,3169,3170,3182,3197,3202,3203,3219,3223,3236,3237,3239,3240,3243,3244,3252,3253,3270,3282,3283,3285,3302,3319,3334,3346,3347,3348,3361,3362,3368,3369,3370,3371,3372,3382,3386,3387,3395,3403,3404,3411,3412,3425,3426,3428,3435,3436,3446,3447,3448,3457,3459,3461,3470,3471,3479,3482,3510,3533,3571,3572,3605,3652,3659,3697,3703,3706,3732,3736,3744,3760,3764,3793,3796,3797,3798,3800,3803,3804,3807,3811,3824,3825,3836,3845,3846,3854,3855,3856,3861,3939,3940,3941,3944,3958,3962,3966,3969,3972,3973,3974,3975,3989,3992,4017,4018,4026,4035,4036,4040,4042,4047,4049,4063,4065,4070,4072,4073,4076,4092,4101,4102,4107,4110,4111,4115,4119,4121,4134,4136,4147,4148,4152,4154,4155,4170,4171,4175,4186,4188,4190,4191,4197,4199,4202,4209,4210,4213,4214,4217,4218,4219,4220,4230,4231,4238,4240,4244,4245,4246,4250,4253,4254,4256,4257,4258,4261,4265,4277,4282,4283,4287,4290,4291,4292,4316,4317,4318,4319,4323,4325,4327,4329,4330,4334,4335,4347,4348,4361,4374,4379,4380,4382,4383,4384,4385,4387,4388,4389,4391,4392,4393,4395,4400,4405,4407,4409,4410,4411,4412,4413,4417,4420,4421,4422,4427,4429,4431,4432,4441,4442,4443,4445,4456,4458,4475,4476,4477,4481,4487,4490,4541,4560,4562,4566,4567,4569,4572,4578,4579,4649,4665,4666,4667,4676,4679,4685,4689,4712,4713,4720,4734,4735,4736,4738,4743,4747,4749,4810,4811,4817,4818,4832,4846,4854,4855,4892,4893,4895,4898,4899,4901,4909,4912,4914,4917,4921,4933,4934,4935,4937,4939,4940,4947,4955,4964,4969,4975,4977,5001,5005,5011,5014,5016,5019,5025,5046,5049,5054,5075,5076,5080,5081,5084,5167,5169,5170,5176,5183,5184,5187,5190,5196,5197,5221,5237,5245,5266,5274,5275,5279,5280,5315,5328,5335,5369,5373,5376,5378,5390,5398,5399,5401,5402,5403,5411,5429,5430,5432,5435,5436,5437,5449,5450,5451,5453,5460,5465,5466,5467,5472,5483,5485,5486,5494,5505,5515,5536,5540,5548,5554,5555,5556,5567,5568,5569,5573,5587,5588,5594,5599,5624,5647,5681,5686,5718,5722,5729,5730,5735,5737,5742,5744,5746,5748,5756,5804,5806,5808,5810,5817,5840,5843,5848,5852,5853,5854,5868,5872,5873,5878,5886,5887,5893,5897,5898,5899,5900,5902,5911,5918,5920,5922,5925,5928,5931,5936,5943,5948,5949,5951,5955,5956,5957,5965,5978,5979,5986,5995,5999,6003,6007,6020,6043,6044,6045,6046,6048,6049,6054,6056,6058,6059,6067,6068,6070,6072,6073,6079,6086,6087,6088,6089,6107,6113,6130,6155,6193,6197,6210,6211,6212,6213,6267,6282,6292,6296,6373,6374,6376,6378,6382,6383,6426,6428,6430,6432,6433,6434,6435,6436,6439,6441,6445,6457,6458,6462,6478,6483,6487,6495,6497,6498,6499,6500,6503,6546,6549,6555,6562,6577,6581,6583,6588,6596,6602,6605,6606,6607,6612,6613,6617,6618,6619,6620,6660,6661,6662,6666,6667,6669,6670,6671,6672,6673,6674,6681,6684,6690,6693,6696,6698,6699,6701,6703,6705,6711,6720,6721,6727,6733,6734,6737,6741,6742,6743,6755,6761,6768,6769,6785,6790,6792,6802,6808,6821,6825,6826,6836,6837,6838,6839,6841,6842,6843,6846,6848,6857,6861,6863,6864,6865,6866,6868,6871,6872,6887,6890,6892,6893,6894,6895,6897,6899,6900,6901,6906,6912,6919,6950,6954,6956,6958,6959,6960,6961,6962,6963,6964,6967,6975,6977,6989,6995,6997,7001,7003,7007,7011,7016,7017,7018,7019,7026,7029,7030,7035,7036,7042,7047,7049,7052,7055,7086,7090,7096,7099,7101,7107,7114,7124,7125,7134,7142,7145,7147,7151,7157,7158,7159,7160,7170,7171,7177,7189,7203,7204,7226,7238,7256,7267,7281,7283,7293,7300,7313,7327,7355,7357,7360,7361,7374,7375,7376,7379,7391,7401,7414,7420,7426,7432,7434,7435,7436,7446,7448,7455,7457,7461,7465,7466,7468,7470,7477,7478,7479,7480,7502,7509,7514,7516,7517,7519,7520,7527,7541,7544,7548,7549,7553,7560,7561,7566,7570,7571,7576,7580,7584,7586,7588,7592,7596,7598,7602,7605,7606,7610,7612,7614,7615,7626,7646,7652,7655,7657,7659,7661,7673,7677,7694,7710,7717,7723,7734,7735,7741,7742,7757,7759,7761,7762,7770,7774,7783,7786,7789,7790,7792,7800,7812,7813,7827,7837,7843,7855,7901,7906,7932,7935,7943,7950,7951,7955,7963,7970,7971,7973,7975,8025,8026,8027,8029,8031,8032,8035,8036,8038,8050,8054,8088,8093,8097,8102,8105,8119,8128,8138,8151,8167,8178,8182,8184,8197,8200,8207,8208,8219,8229,8230,8231,8233,8236,8238,8243,8263,8266,8269,8270,8275,8278,8279,8282,8284,8287,8299,8301,8304,8305,8307,8310,8322,8323,8327,8328,8330,8337,8345,8352,8356,8358,8359,8364,8365,8366,8368,8371,8374,8377,8386,8387,8388,8391,8392,8396,8404,8416,8425,8428,8429,8435,8442,8444,8447,8448,8450,8452,8455,8456,8464,8470,8480,8482,8490,8502,8504,8506,8510,8522,8525,8530,8534,8538,8539,8541,8544,8545,8546,8552,8557,8570,8571,8575,8576,8582,8583,8644,8663,8666,8695,8701,8702,8703,8704,8706,8709,8714,8715,8716,8728,8730,8732,8784,8786,8788,8789,8798,8799,8800,8809,8812,8827,8832,8842,8871,8872,8879,8883,8908,8986,8987,8991,9003,9013,9014,9018,9019,9029,9031,9032,9033,9037,9039,9043,9044,9053,9054,9075,9110,9117,9126,9148,9154,9156,9158,9160,9161,9166,9167,9171,9173,9174,9178,9179,9185,9190,9191,9192,9195,9196,9197,9198,9199,9202,9204,9205,9206,9223,9269,9318,9319,9325,9330,9335,9336,9337,9338,9342,9343,9346,9356,9358,9360,9361,9362,9363,9371,9372,9385,9389,9396,9400,9402,9413,9414,9415,9416,9418,9420,9421,9431,9436,9439,9442,9443,9447,9448,9450,9453,9456,9457,9458,9459,9462,9470,9483,9484,9485,9486,9488,9493,9494,9495,9496,9498,9502,9506,9510,9529,9535,9536,9538,9539,9540,9542,9544,9545,9546,9548,9549,9553,9554,9556,9560,9567,9569,9570,9572,9589,9602,9604,9605,9609,9612,9616,9620,9622,9625,9628,9636,9639,9650,9652,9653,9654,9657,9660,9672,9673,9675,9683,9685,9689,9692,9693,9695,9700,9702,9703,9707,9711,9712,9717,9719,9728,9730,9735,9737,9767,9776,9794,9811,9812,9823,9844,9857,9875,9885,9886,9894,9937,9972,10043,10046,10050,10051,10056,10064,10070,10099,10100,10106,10109,10110,10112,10114,10117,10159,10160,10166,10171,10728,10737,10762,10794,10803,10865,10878,10910,10939,10942,10943,10947,10951,10957,11144,11182,11270,11271,11275,11301,11302,11303,11307,11316,11318,11319,11376,11400,11402,11404,11405,11410,11417,11486,11513,11516,11545,11546,11547,11549,11556,11562,11571,11580,11596,11611,11615,11670,11688,11694,11696,11719,11833,11836,11899,11921,11926,11959,11988,12006,12105,12172,12180,12218,12229,12241,12242,12253,12262,12305,12312,12315,12324,12368,12373,12374,12378,12379,12399,12403,12405,12406,12409,12418,12496,12506,12515,12538,12540,12545,12577,12588,12677,12692,12716,12727,12732,12737,12738,12739,12740,12751,12759,12768,12770,12772,12773,12778,12783,12791,12793,12798,12807,12826,12854,12857,12860,12864,12876,12877,12881,12883,12893,12894,12897,12901,12904,12959,13063,13088,13258,13415,13416,13577,13649,13676,13697,13714,13834,13891,13929,13933,13950,13952,13961,13968,13975,14124,14209,14228,14231,14267,14301,14321,14327,14353,14361,14393,14403,14526,14558,14562,14565,14569,14570,14704,14821,14890,14951,14953,14978,15094,15209,15279,15287,15288,15300,15321,15394,15506,15515,15522,15523,15579,15705,15712,15718,15727,15729,15904,15918,15934,15946,15957,16075,16082,16100,16284,16287,16291,16292,16301,16451,16460,16819,16843,17261,17321,17322,17379,17488,17530,17677,17687,17775,17785,17786,17792,17808,17810,17812,17826,17829,17871,17938,17970,18001,18015,18024,18041,18051,18063,18067,18254,18332,18333,18334,18340,18341,18354,18355,18358,18367,18373,18391,18392,18415,18422,18550,18555,18575,18581,18583,18589,18593,18598,18626,18627,18630,18637,18674,18675,18677,18680,18742,18743,18745,18747,18751,18832,18834,18835,18865,18898,18899,18941,18950,18953,18955,18957,18958,18959,18960,18963,18992,18996,19003,19008,19009,19012,19013,19019,19028,19063,19092,19131,19132,19144,19145,19146,19147,19157,19228,19229,19232,19235,19237,19238,19240,19246,19255,19267,19269,19272,19274,19277,19278,19279,19304,19307,19310,19316,19317,19334,19337,19346,19347,19348,19355,19372,19376,19377,19381,19384,19409,19418,19425,19434,19441,19443,19448,19475,19517,19522,19527,19528,19531,19537,19538,19541,19549,19551,19561,19562,19564,19574,19576,19577,19580,19583,19584,19588,19595,19597,19599,19600,19605,19610,19613,19619,19623,19630,19633,19636,19642,19647,19654,19660,19663,19665,19669,19688,19697,19737,19738,19739,19743,19747,19756,19757,19764,19768,19776,19778,19789,19794,19802,19807,19809,19815,19818,19824,19825,19828,19835,19837,19838,19839,19840,19843,19844,19846,19856,19857,19858,19860,19861,19876,19877,19880,19881,19892,19896,19899,19907,19909,19910,19911,19912,19914,19915,19919,19920,19921,19922,19935,19937,19938,19943,19947,19951,19955,19956,19957,19958,19963,19965,19971,19977,19979,19982,19984,19995,19996,19998,19999,20005,20007,20014,20026,20030,20034,20041,20044,20081,20131,20158,20210,20221,20256,20285,20350,20395,20463,20467,20493,20494,20495,20496,20499,20500,20501,20503,20505,20506,20508,20509,20512,20513,20518,20524,20526,20529,20544,20545,20564,20578,20584,20609,20610,20612,20613,20616,20617,20619,20621,20626,20629,20631,20635,20640,20656,20657,20660,20669,20680,20681,20688,20689,20690,20699,20701,20703,20708,20709,20719,20720,20732,20733,20735,20737,20753,20755,20763,20795,20799,20826,20827,20828,20836,20850,20885,20897,20898,20900,20902,20903,20904,20913,20922,20924,20925,20934,20940,20945,20951,20952,20962,20977,20993,20999,21008,21023,21034,21043,21047,21051,21057,21059,21071,21074,21075,21076,21082,21084,21101,21102,21122,21158,21168,21177,21184,21200,21205,21224,21231,21232,21234,21238,21247,21248,21249,21250,21265,21266,21281,21282,21290,21291,21292,21301,21303,21305,21307,21311,21314,21315,21333,21345,21360,21368,21375,21379,21400,21401,21406,21408,21409,21412,21415,21416,21418,21481,21483,21491,21522,21530,21548,21565,21578,21579,21590,21591,21601,21604,21612,21626,21637,21675,21679,21680,21681,21685,21687,21962,21967,21975,21978,21991,21994,22026,22027,22031,22035,22088,22095,22098,22129,22131,22156,22168,22185,22192,22244,22284,22305,22311,22324,22386,22402,22418,22472,22476,22479,22483,22532,22536,22539,22540,22541,22542,22543,22545,22549,22550,22555,22559,22560,22561,22564,22566,22570,22612,22674,22733,22753,22788,22841,22875,22879,22881,22882,22885,22887,22892,22897,22901,22903,22907,22910,22914,22916,22924,22927,22928,22930,22931,22933,22934,22938,22939,22941,22947,22951,22952,22955,22956,22959,22962,22963,22965,22966,22967,22970,22979,22994,23040,23041,23043,23062,23065,23073,23085,23107,23127]]],["upon",[168,155,[[0,4,4,0,4,[[21,1,1,0,1],[38,1,1,1,2],[41,1,1,2,3],[42,1,1,3,4]]],[1,4,4,4,8,[[52,1,1,4,5],[58,1,1,5,6],[73,1,1,6,7],[77,1,1,7,8]]],[2,1,1,8,9,[[97,1,1,8,9]]],[3,4,4,9,13,[[121,1,1,9,10],[122,2,2,10,12],[128,1,1,12,13]]],[4,3,3,13,16,[[156,1,1,13,14],[176,1,1,14,15],[185,1,1,15,16]]],[5,2,2,16,18,[[194,1,1,16,17],[196,1,1,17,18]]],[6,7,7,18,25,[[216,4,4,18,22],[219,1,1,22,23],[230,2,2,23,25]]],[8,17,17,25,42,[[237,1,1,25,26],[240,2,2,26,28],[241,2,2,28,30],[248,2,2,30,32],[249,1,1,32,33],[250,1,1,33,34],[251,2,2,34,36],[252,1,1,36,37],[253,1,1,37,38],[254,1,1,38,39],[255,1,1,39,40],[256,1,1,40,41],[263,1,1,41,42]]],[9,6,6,42,48,[[272,1,1,42,43],[275,1,1,43,44],[277,1,1,44,45],[283,2,2,45,47],[287,1,1,47,48]]],[10,5,5,48,53,[[303,1,1,48,49],[304,1,1,49,50],[309,1,1,50,51],[311,1,1,51,52],[312,1,1,52,53]]],[11,4,4,53,57,[[314,1,1,53,54],[317,1,1,54,55],[320,1,1,55,56],[334,1,1,56,57]]],[12,2,2,57,59,[[356,1,1,57,58],[358,1,1,58,59]]],[13,3,2,59,61,[[372,2,1,59,60],[392,1,1,60,61]]],[15,1,1,61,62,[[416,1,1,61,62]]],[17,5,5,62,67,[[436,1,1,62,63],[439,1,1,63,64],[442,1,1,64,65],[450,1,1,65,66],[469,1,1,66,67]]],[18,13,13,67,80,[[510,2,2,67,69],[511,1,1,69,70],[532,1,1,70,71],[536,1,1,71,72],[539,1,1,72,73],[556,1,1,73,74],[576,1,1,74,75],[581,1,1,75,76],[596,1,1,76,77],[600,1,1,77,78],[606,1,1,78,79],[622,1,1,79,80]]],[19,1,1,80,81,[[653,1,1,80,81]]],[22,3,3,81,84,[[692,1,1,81,82],[729,2,2,82,84]]],[23,37,26,84,110,[[746,1,1,84,85],[750,1,1,85,86],[751,1,1,86,87],[755,2,2,87,89],[763,1,1,89,90],[770,2,1,90,91],[773,1,1,91,92],[776,1,1,92,93],[779,2,1,93,94],[780,1,1,94,95],[783,1,1,95,96],[784,1,1,96,97],[790,1,1,97,98],[791,1,1,98,99],[792,6,3,99,102],[793,1,1,102,103],[794,10,4,103,107],[795,3,3,107,110]]],[25,40,39,110,149,[[807,1,1,110,111],[808,4,4,111,115],[811,1,1,115,116],[813,1,1,116,117],[814,1,1,117,118],[815,1,1,118,119],[819,2,2,119,121],[820,1,1,121,122],[822,2,2,122,124],[823,1,1,124,125],[824,2,2,125,127],[827,1,1,127,128],[828,1,1,128,129],[831,1,1,129,130],[832,2,2,130,132],[834,1,1,132,133],[835,2,2,133,135],[839,1,1,135,136],[841,8,8,136,144],[842,1,1,144,145],[844,2,2,145,147],[845,1,1,147,148],[846,2,1,148,149]]],[29,1,1,149,150,[[886,1,1,149,150]]],[31,2,2,150,152,[[889,1,1,150,151],[890,1,1,151,152]]],[36,1,1,152,153,[[910,1,1,152,153]]],[37,2,2,153,155,[[915,1,1,153,154],[922,1,1,154,155]]]],[559,1156,1273,1320,1585,1756,2188,2330,2926,3817,3848,3849,4069,5011,5540,5838,6022,6082,6668,6674,6693,6694,6811,7091,7102,7274,7323,7325,7339,7342,7497,7498,7540,7579,7608,7618,7669,7686,7715,7755,7785,7965,8160,8235,8283,8461,8463,8590,9213,9228,9406,9472,9497,9560,9670,9728,10161,10924,10960,11302,11752,12363,12881,12935,13025,13229,13697,14380,14384,14403,14748,14799,14828,15191,15505,15598,16030,16100,16140,16335,17168,17944,18678,18679,18968,19108,19139,19237,19249,19422,19587,19651,19773,19840,19873,19939,19943,20061,20078,20088,20101,20124,20163,20201,20202,20203,20204,20224,20247,20272,20576,20589,20591,20595,20603,20644,20692,20717,20752,20855,20860,20890,20956,20973,20985,21019,21049,21107,21150,21229,21242,21243,21302,21326,21327,21437,21479,21493,21494,21503,21508,21511,21514,21520,21551,21575,21592,21603,21649,22483,22537,22558,22870,22944,23055]]],["whereupon",[2,2,[[25,2,2,0,2,[[841,2,2,0,2]]]],[21518,21519]]],["whither",[1,1,[[23,1,1,0,1,[[784,1,1,0,1]]]],[19945]]],["with",[44,43,[[0,6,6,0,6,[[3,1,1,0,1],[17,1,1,1,2],[33,1,1,2,3],[41,1,1,3,4],[42,1,1,4,5],[48,1,1,5,6]]],[1,1,1,6,7,[[83,1,1,6,7]]],[2,1,1,7,8,[[107,1,1,7,8]]],[3,2,2,8,10,[[121,1,1,8,9],[141,1,1,9,10]]],[5,2,2,10,12,[[197,1,1,10,11],[208,1,1,11,12]]],[6,2,1,12,13,[[219,2,1,12,13]]],[8,4,4,13,17,[[249,1,1,13,14],[253,1,1,14,15],[254,1,1,15,16],[258,1,1,16,17]]],[9,1,1,17,18,[[286,1,1,17,18]]],[10,1,1,18,19,[[300,1,1,18,19]]],[11,3,3,19,22,[[318,1,1,19,20],[320,1,1,20,21],[334,1,1,21,22]]],[13,3,3,22,25,[[382,1,1,22,23],[386,1,1,23,24],[391,1,1,24,25]]],[17,3,3,25,28,[[439,1,1,25,26],[448,1,1,26,27],[469,1,1,27,28]]],[18,1,1,28,29,[[586,1,1,28,29]]],[23,3,3,29,32,[[746,1,1,29,30],[756,1,1,30,31],[769,1,1,31,32]]],[24,1,1,32,33,[[799,1,1,32,33]]],[25,7,7,33,40,[[817,2,2,33,35],[818,1,1,35,36],[824,1,1,36,37],[827,1,1,37,38],[832,1,1,38,39],[849,1,1,39,40]]],[26,2,2,40,42,[[860,2,2,40,42]]],[38,1,1,42,43,[[926,1,1,42,43]]]],[87,457,1000,1276,1309,1502,2527,3271,3815,4472,6126,6444,6755,7542,7698,7709,7833,8570,9081,9682,9731,10159,11519,11608,11720,12932,13156,13706,15769,18994,19250,19560,20395,20788,20790,20837,21049,21120,21244,21722,22043,22059,23106]]],["within",[3,3,[[2,1,1,0,1,[[115,1,1,0,1]]],[3,1,1,1,2,[[120,1,1,1,2]]],[11,1,1,2,3,[[323,1,1,2,3]]]],[3549,3753,9837]]]]},{"k":"H414","v":[["Elah",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8862]]]]},{"k":"H415","v":[["EleloheIsrael",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[980]]]]},{"k":"H416","v":[["Elbethel",[1,1,[[0,1,1,0,1,[[34,1,1,0,1]]]],[1018]]]]},{"k":"H417","v":[["+",[3,3,[[25,3,3,0,3,[[814,2,2,0,2],[839,1,1,2,3]]]],[20719,20721,21447]]]]},{"k":"H418","v":[["*",[3,3,[[13,3,3,0,3,[[368,1,1,0,1],[375,2,2,1,3]]]],[11219,11374,11375]]],["algum",[2,2,[[13,2,2,0,2,[[375,2,2,0,2]]]],[11374,11375]]],["trees",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11219]]]]},{"k":"H419","v":[["Eldad",[2,2,[[3,2,2,0,2,[[127,2,2,0,2]]]],[4050,4051]]]]},{"k":"H420","v":[["Eldaah",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[662,10285]]]]},{"k":"H421","v":[["Lament",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22299]]]]},{"k":"H422","v":[["*",[7,6,[[6,1,1,0,1,[[227,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[10,2,1,2,3,[[298,2,1,2,3]]],[13,1,1,3,4,[[372,1,1,3,4]]],[27,2,2,4,6,[[865,1,1,4,5],[871,1,1,5,6]]]],[6982,7532,9016,11304,22135,22229]]],["+",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7532]]],["cursedst",[1,1,[[6,1,1,0,1,[[227,1,1,0,1]]]],[6982]]],["oath",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9016]]],["swear",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]]],[9016,11304]]],["swearing",[2,2,[[27,2,2,0,2,[[865,1,1,0,1],[871,1,1,1,2]]]],[22135,22229]]]]},{"k":"H423","v":[["*",[35,32,[[0,3,2,0,2,[[23,2,1,0,1],[25,1,1,1,2]]],[2,1,1,2,3,[[94,1,1,2,3]]],[3,4,3,3,6,[[121,4,3,3,6]]],[4,6,6,6,12,[[181,5,5,6,11],[182,1,1,11,12]]],[10,1,1,12,13,[[298,1,1,12,13]]],[13,3,2,13,15,[[372,2,1,13,14],[400,1,1,14,15]]],[15,1,1,15,16,[[422,1,1,15,16]]],[17,1,1,16,17,[[466,1,1,16,17]]],[18,2,2,17,19,[[487,1,1,17,18],[536,1,1,18,19]]],[19,1,1,19,20,[[656,1,1,19,20]]],[22,1,1,20,21,[[702,1,1,20,21]]],[23,4,4,21,25,[[767,1,1,21,22],[773,1,1,22,23],[786,1,1,23,24],[788,1,1,24,25]]],[25,5,5,25,30,[[817,1,1,25,26],[818,4,4,26,30]]],[26,1,1,30,31,[[858,1,1,30,31]]],[37,1,1,31,32,[[915,1,1,31,32]]]],[632,720,2831,3813,3815,3819,5691,5693,5698,5699,5700,5715,9016,11304,11957,12578,13618,14048,14802,17248,18101,19494,19653,19993,20022,20821,20838,20841,20843,20844,21999,22939]]],["+",[3,2,[[0,2,1,0,1,[[23,2,1,0,1]]],[18,1,1,1,2,[[536,1,1,1,2]]]],[632,14802]]],["curse",[9,9,[[3,2,2,0,2,[[121,2,2,0,2]]],[4,1,1,2,3,[[181,1,1,2,3]]],[15,1,1,3,4,[[422,1,1,3,4]]],[17,1,1,4,5,[[466,1,1,4,5]]],[22,1,1,5,6,[[702,1,1,5,6]]],[23,1,1,6,7,[[773,1,1,6,7]]],[26,1,1,7,8,[[858,1,1,7,8]]],[37,1,1,8,9,[[915,1,1,8,9]]]],[3813,3819,5698,12578,13618,18101,19653,21999,22939]]],["curses",[5,5,[[3,1,1,0,1,[[121,1,1,0,1]]],[4,3,3,1,4,[[181,2,2,1,3],[182,1,1,3,4]]],[13,1,1,4,5,[[400,1,1,4,5]]]],[3815,5699,5700,5715,11957]]],["cursing",[3,3,[[3,1,1,0,1,[[121,1,1,0,1]]],[18,1,1,1,2,[[487,1,1,1,2]]],[19,1,1,2,3,[[656,1,1,2,3]]]],[3813,14048,17248]]],["execration",[2,2,[[23,2,2,0,2,[[786,1,1,0,1],[788,1,1,1,2]]]],[19993,20022]]],["oath",[11,10,[[0,1,1,0,1,[[25,1,1,0,1]]],[4,2,2,1,3,[[181,2,2,1,3]]],[10,1,1,3,4,[[298,1,1,3,4]]],[13,2,1,4,5,[[372,2,1,4,5]]],[25,5,5,5,10,[[817,1,1,5,6],[818,4,4,6,10]]]],[720,5691,5693,9016,11304,20821,20838,20841,20843,20844]]],["swearing",[2,2,[[2,1,1,0,1,[[94,1,1,0,1]]],[23,1,1,1,2,[[767,1,1,1,2]]]],[2831,19494]]]]},{"k":"H424","v":[["*",[13,12,[[0,1,1,0,1,[[34,1,1,0,1]]],[6,2,2,1,3,[[216,2,2,1,3]]],[9,4,3,3,6,[[284,4,3,3,6]]],[10,1,1,6,7,[[303,1,1,6,7]]],[12,1,1,7,8,[[347,1,1,7,8]]],[22,2,2,8,10,[[679,1,1,8,9],[684,1,1,9,10]]],[25,1,1,10,11,[[807,1,1,10,11]]],[27,1,1,11,12,[[865,1,1,11,12]]]],[1015,6665,6673,8487,8488,8492,9198,10671,17684,17782,20576,22146]]],["elms",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22146]]],["oak",[11,10,[[0,1,1,0,1,[[34,1,1,0,1]]],[6,2,2,1,3,[[216,2,2,1,3]]],[9,4,3,3,6,[[284,4,3,3,6]]],[10,1,1,6,7,[[303,1,1,6,7]]],[12,1,1,7,8,[[347,1,1,7,8]]],[22,1,1,8,9,[[679,1,1,8,9]]],[25,1,1,9,10,[[807,1,1,9,10]]]],[1015,6665,6673,8487,8488,8492,9198,10671,17684,20576]]],["tree",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17782]]]]},{"k":"H425","v":[["Elah",[16,15,[[0,1,1,0,1,[[35,1,1,0,1]]],[8,3,3,1,4,[[252,2,2,1,3],[256,1,1,3,4]]],[10,4,4,4,8,[[306,4,4,4,8]]],[11,4,4,8,12,[[327,1,1,8,9],[329,1,1,9,10],[330,2,2,10,12]]],[12,4,3,12,15,[[338,1,1,12,13],[341,2,1,13,14],[346,1,1,14,15]]]],[1081,7620,7637,7781,9289,9291,9296,9297,9955,9984,10025,10033,10304,10400,10623]]]]},{"k":"H426","v":[["*",[95,78,[[14,43,36,0,36,[[406,1,1,0,1],[407,12,11,1,12],[408,14,11,12,23],[409,16,13,23,36]]],[23,1,1,36,37,[[754,1,1,36,37]]],[26,51,41,37,78,[[851,12,10,37,47],[852,12,9,47,56],[853,5,4,56,60],[854,10,8,60,68],[855,12,10,68,78]]]],[12134,12135,12136,12139,12142,12145,12146,12147,12148,12149,12150,12151,12154,12156,12158,12159,12160,12161,12163,12165,12167,12168,12169,12185,12187,12188,12189,12190,12191,12192,12193,12194,12196,12197,12198,12199,19212,21769,21776,21777,21778,21781,21786,21795,21802,21803,21805,21819,21821,21822,21824,21825,21832,21833,21835,21836,21839,21845,21846,21855,21877,21878,21885,21888,21892,21895,21897,21900,21910,21912,21915,21916,21917,21921,21925,21927,21928,21931]]],["+",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12146]]],["God",[78,66,[[14,42,35,0,35,[[406,1,1,0,1],[407,11,10,1,11],[408,14,11,11,22],[409,16,13,22,35]]],[26,36,31,35,66,[[851,10,9,35,44],[852,8,6,44,50],[853,1,1,50,51],[854,5,5,51,56],[855,12,10,56,66]]]],[12134,12135,12136,12139,12142,12145,12147,12148,12149,12150,12151,12154,12156,12158,12159,12160,12161,12163,12165,12167,12168,12169,12185,12187,12188,12189,12190,12191,12192,12193,12194,12196,12197,12198,12199,21776,21777,21778,21781,21786,21795,21802,21803,21805,21822,21824,21832,21833,21835,21836,21839,21877,21892,21895,21897,21900,21910,21912,21915,21916,21917,21921,21925,21927,21928,21931]]],["god",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[853,1,1,1,2]]]],[21835,21845]]],["gods",[14,13,[[23,1,1,0,1,[[754,1,1,0,1]]],[26,13,12,1,13,[[851,2,2,1,3],[852,3,3,3,6],[853,3,3,6,9],[854,5,4,9,13]]]],[19212,21769,21805,21819,21821,21825,21845,21846,21855,21878,21885,21888,21897]]]]},{"k":"H427","v":[["oak",[1,1,[[5,1,1,0,1,[[210,1,1,0,1]]]],[6502]]]]},{"k":"H428","v":[["*",[746,697,[[0,90,78,0,78,[[1,1,1,0,1],[5,1,1,1,2],[8,2,1,2,3],[9,7,6,3,9],[10,2,2,9,11],[13,1,1,11,12],[14,3,3,12,15],[19,1,1,15,16],[20,1,1,16,17],[21,3,3,17,20],[23,1,1,20,21],[24,8,7,21,28],[26,1,1,28,29],[28,1,1,29,30],[30,1,1,30,31],[31,1,1,31,32],[32,1,1,32,33],[33,1,1,33,34],[34,1,1,34,35],[35,31,25,35,60],[36,1,1,60,61],[37,2,1,61,62],[38,3,3,62,65],[39,1,1,65,66],[40,1,1,66,67],[42,1,1,67,68],[43,2,2,68,70],[45,7,5,70,75],[47,2,2,75,77],[48,1,1,77,78]]],[1,26,24,78,102,[[50,1,1,78,79],[53,1,1,79,80],[55,7,6,80,86],[59,1,1,86,87],[60,2,2,87,89],[68,2,2,89,91],[69,1,1,91,92],[70,2,2,92,94],[73,1,1,94,95],[74,1,1,95,96],[77,1,1,96,97],[81,2,2,97,99],[83,2,1,99,100],[84,1,1,100,101],[87,1,1,101,102]]],[2,26,25,102,127,[[91,1,1,102,103],[94,3,3,103,106],[99,1,1,106,107],[100,4,4,107,111],[107,4,3,111,114],[109,1,1,114,115],[110,1,1,115,116],[111,2,2,116,118],[112,3,3,118,121],[114,1,1,121,122],[115,4,4,122,126],[116,1,1,126,127]]],[3,73,71,127,198,[[117,4,4,127,131],[118,1,1,131,132],[119,9,9,132,141],[120,4,4,141,145],[121,3,3,145,148],[126,1,1,148,149],[129,2,2,149,151],[130,1,1,151,152],[131,2,2,152,154],[132,6,6,154,160],[137,1,1,160,161],[138,2,2,161,163],[142,23,21,163,184],[143,1,1,184,185],[144,2,2,185,187],[145,1,1,187,188],[146,1,1,188,189],[149,2,2,189,191],[150,3,3,191,194],[151,3,3,194,197],[152,1,1,197,198]]],[4,49,48,198,246,[[153,2,2,198,200],[155,2,2,200,202],[156,3,3,202,205],[157,2,2,205,207],[158,2,2,207,209],[159,2,2,209,211],[161,2,2,211,213],[162,1,1,213,214],[163,2,2,214,216],[164,3,3,216,219],[168,1,1,219,220],[169,1,1,220,221],[170,3,2,221,223],[171,2,2,223,225],[172,2,2,225,227],[174,2,2,227,229],[177,2,2,229,231],[178,1,1,231,232],[179,3,3,232,235],[180,3,3,235,238],[181,1,1,238,239],[182,2,2,239,241],[183,4,4,241,245],[184,1,1,245,246]]],[5,51,44,246,290,[[190,4,4,246,250],[194,3,1,250,251],[195,2,1,251,252],[196,6,5,252,257],[197,5,5,257,262],[198,2,2,262,264],[199,1,1,264,265],[200,1,1,265,266],[203,4,4,266,270],[205,5,5,270,275],[206,2,2,275,277],[207,6,5,277,282],[209,7,5,282,287],[210,3,3,287,290]]],[6,11,11,290,301,[[212,2,2,290,292],[213,1,1,292,293],[219,1,1,293,294],[223,1,1,294,295],[228,2,2,295,297],[230,4,4,297,301]]],[7,2,2,301,303,[[234,1,1,301,302],[235,1,1,302,303]]],[8,27,25,303,328,[[237,2,1,303,304],[239,2,1,304,305],[241,1,1,305,306],[242,1,1,306,307],[245,2,2,307,309],[246,1,1,309,310],[249,1,1,310,311],[251,1,1,311,312],[252,4,4,312,316],[253,3,3,316,319],[254,1,1,319,320],[256,1,1,320,321],[258,1,1,321,322],[259,1,1,322,323],[260,3,3,323,326],[264,1,1,326,327],[266,1,1,327,328]]],[9,15,14,328,342,[[268,2,1,328,329],[269,2,2,329,331],[271,1,1,331,332],[273,1,1,332,333],[279,1,1,333,334],[280,1,1,334,335],[282,1,1,335,336],[287,1,1,336,337],[289,4,4,337,341],[290,1,1,341,342]]],[10,20,19,342,361,[[294,3,3,342,345],[297,2,2,345,347],[298,1,1,347,348],[299,2,2,348,350],[300,1,1,350,351],[307,2,2,351,353],[308,1,1,353,354],[310,3,2,354,356],[311,2,2,356,358],[312,3,3,358,361]]],[11,17,17,361,378,[[313,2,2,361,363],[314,1,1,363,364],[315,2,2,364,366],[316,1,1,366,367],[318,1,1,367,368],[319,1,1,368,369],[322,1,1,369,370],[329,1,1,370,371],[330,1,1,371,372],[332,1,1,372,373],[333,1,1,373,374],[335,2,2,374,376],[337,2,2,376,378]]],[12,84,77,378,455,[[338,6,6,378,384],[339,6,6,384,390],[340,2,2,390,392],[341,10,10,392,402],[342,2,2,402,404],[343,7,7,404,411],[344,6,6,411,417],[345,8,5,417,422],[346,7,5,422,427],[347,1,1,427,428],[348,5,4,428,432],[349,5,5,432,437],[351,1,1,437,438],[354,1,1,438,439],[358,1,1,439,440],[360,4,4,440,444],[361,4,3,444,447],[362,2,2,447,449],[363,3,3,449,452],[364,2,2,452,454],[366,1,1,454,455]]],[13,20,20,455,475,[[369,2,2,455,457],[370,1,1,457,458],[374,1,1,458,459],[375,1,1,459,460],[380,3,3,460,463],[381,1,1,463,464],[383,2,2,464,466],[384,3,3,466,469],[387,1,1,469,470],[390,1,1,470,471],[395,1,1,471,472],[398,2,2,472,474],[401,1,1,474,475]]],[14,11,11,475,486,[[403,1,1,475,476],[404,4,4,476,480],[409,1,1,480,481],[410,2,2,481,483],[411,2,2,483,485],[412,1,1,485,486]]],[15,17,17,486,503,[[413,1,1,486,487],[417,1,1,487,488],[418,4,4,488,492],[419,4,4,492,496],[422,1,1,496,497],[423,2,2,497,499],[424,3,3,499,502],[425,1,1,502,503]]],[16,10,9,503,512,[[426,1,1,503,504],[427,1,1,504,505],[428,1,1,505,506],[434,7,6,506,512]]],[17,10,10,512,522,[[443,1,1,512,513],[445,1,1,513,514],[447,2,2,514,516],[451,1,1,516,517],[453,1,1,517,518],[461,1,1,518,519],[467,1,1,519,520],[468,1,1,520,521],[477,1,1,521,522]]],[18,8,7,522,529,[[492,1,1,522,523],[497,2,1,523,524],[519,1,1,524,525],[527,1,1,525,526],[550,1,1,526,527],[584,1,1,527,528],[603,1,1,528,529]]],[19,2,2,529,531,[[651,1,1,529,530],[652,1,1,530,531]]],[20,3,3,531,534,[[665,2,2,531,533],[669,1,1,533,534]]],[22,27,22,534,556,[[685,1,1,534,535],[706,1,1,535,536],[714,2,2,536,538],[717,1,1,538,539],[718,1,1,539,540],[719,1,1,540,541],[720,1,1,541,542],[722,1,1,542,543],[723,1,1,543,544],[725,2,2,544,546],[726,1,1,546,547],[727,7,3,547,550],[735,1,1,550,551],[738,1,1,551,552],[742,1,1,552,553],[743,1,1,553,554],[744,3,2,554,556]]],[23,60,60,556,616,[[746,1,1,556,557],[747,2,2,557,559],[748,2,2,559,561],[749,4,4,561,565],[751,4,4,565,569],[753,2,2,569,571],[754,1,1,571,572],[755,1,1,572,573],[757,1,1,573,574],[758,1,1,574,575],[760,1,1,575,576],[761,1,1,576,577],[762,1,1,577,578],[764,1,1,578,579],[766,2,2,579,581],[768,1,1,581,582],[769,3,3,582,585],[770,3,3,585,588],[771,2,2,588,590],[772,1,1,590,591],[773,1,1,591,592],[774,2,2,592,594],[775,2,2,594,596],[776,1,1,596,597],[778,1,1,597,598],[780,4,4,598,602],[782,5,5,602,607],[787,2,2,607,609],[789,1,1,609,610],[793,1,1,610,611],[795,3,3,611,614],[796,2,2,614,616]]],[24,2,2,616,618,[[797,1,1,616,617],[801,1,1,617,618]]],[25,46,46,618,664,[[805,1,1,618,619],[809,1,1,619,620],[810,1,1,620,621],[812,1,1,621,622],[815,4,4,622,626],[817,3,3,626,629],[818,3,3,629,632],[819,3,3,632,635],[824,1,1,635,636],[825,1,1,636,637],[834,1,1,637,638],[837,1,1,638,639],[838,6,6,639,645],[841,7,7,645,652],[843,1,1,652,653],[844,2,2,653,655],[846,1,1,655,656],[847,1,1,656,657],[848,2,2,657,659],[849,5,5,659,664]]],[26,9,8,664,672,[[850,1,1,664,665],[859,2,2,665,667],[860,2,2,667,669],[861,4,3,669,672]]],[27,1,1,672,673,[[875,1,1,672,673]]],[29,1,1,673,674,[[884,1,1,673,674]]],[32,2,2,674,676,[[894,2,2,674,676]]],[34,1,1,676,677,[[904,1,1,676,677]]],[36,1,1,677,678,[[910,1,1,677,678]]],[37,24,19,678,697,[[911,8,4,678,682],[913,1,1,682,683],[914,6,6,683,689],[916,2,2,689,691],[918,6,5,691,696],[923,1,1,696,697]]]],[34,146,224,235,239,254,263,265,266,276,293,339,361,370,377,503,542,548,567,570,619,662,665,670,671,674,675,677,773,808,916,945,965,1001,1037,1041,1045,1049,1050,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1063,1064,1065,1066,1067,1068,1069,1070,1071,1080,1083,1085,1144,1156,1166,1168,1173,1230,1297,1330,1331,1394,1401,1404,1408,1411,1452,1459,1501,1533,1610,1669,1670,1671,1674,1679,1680,1778,1814,1816,2032,2033,2052,2078,2088,2185,2234,2297,2442,2446,2523,2532,2654,2770,2834,2835,2843,2996,3010,3019,3021,3028,3275,3277,3280,3341,3359,3391,3394,3404,3406,3439,3523,3538,3542,3547,3570,3604,3609,3620,3621,3648,3690,3693,3694,3695,3709,3710,3712,3713,3719,3725,3758,3780,3784,3788,3811,3814,3815,4016,4079,4091,4147,4166,4175,4220,4222,4223,4224,4225,4232,4365,4384,4390,4496,4503,4507,4511,4514,4516,4519,4523,4524,4525,4526,4530,4531,4536,4539,4540,4542,4546,4547,4552,4553,4555,4600,4601,4647,4664,4761,4762,4833,4835,4845,4860,4869,4874,4892,4893,4927,4980,4996,5010,5034,5049,5056,5075,5092,5110,5123,5128,5161,5162,5207,5226,5231,5241,5268,5270,5354,5383,5396,5398,5411,5415,5442,5443,5475,5487,5550,5563,5582,5589,5597,5598,5613,5626,5656,5680,5709,5715,5729,5731,5745,5756,5803,5916,5917,5930,5931,6024,6050,6080,6086,6087,6088,6106,6112,6117,6119,6121,6125,6131,6137,6186,6188,6277,6278,6284,6287,6329,6337,6352,6369,6372,6376,6381,6384,6389,6390,6397,6423,6463,6464,6467,6472,6473,6493,6502,6505,6549,6568,6569,6757,6907,7007,7011,7079,7089,7098,7100,7189,7208,7263,7305,7348,7368,7425,7427,7451,7514,7605,7629,7636,7641,7657,7699,7700,7702,7713,7784,7812,7855,7870,7873,7898,7970,8013,8062,8086,8120,8146,8197,8338,8375,8428,8602,8654,8661,8670,8675,8709,8846,8852,8871,8943,8979,9044,9064,9074,9087,9318,9334,9377,9427,9437,9452,9478,9491,9497,9503,9540,9546,9572,9586,9589,9607,9694,9715,9802,10024,10051,10112,10130,10181,10182,10238,10239,10275,10281,10283,10285,10295,10306,10307,10324,10329,10339,10356,10359,10362,10366,10387,10388,10389,10391,10397,10403,10416,10418,10423,10426,10442,10452,10471,10473,10485,10487,10504,10508,10519,10543,10546,10552,10564,10568,10575,10581,10585,10603,10613,10615,10624,10640,10648,10649,10659,10663,10683,10684,10692,10697,10721,10734,10735,10743,10758,10778,10878,10951,10987,10992,10993,11007,11020,11034,11045,11051,11052,11085,11089,11096,11131,11140,11181,11232,11242,11264,11356,11371,11481,11482,11483,11498,11537,11542,11552,11558,11564,11626,11703,11823,11876,11889,11973,12025,12028,12086,12089,12092,12174,12202,12214,12238,12251,12296,12300,12388,12407,12408,12409,12415,12426,12481,12484,12487,12557,12591,12595,12625,12631,12650,12697,12707,12725,12748,12854,12860,12861,12862,12865,12866,13031,13099,13131,13137,13240,13297,13481,13629,13679,13929,14092,14189,14559,14689,15032,15742,16117,17102,17114,17439,17457,17522,17786,18171,18342,18350,18415,18446,18479,18496,18554,18568,18606,18608,18628,18648,18651,18657,18771,18829,18897,18902,18924,18930,18999,19009,19014,19039,19045,19067,19077,19083,19087,19121,19129,19132,19146,19184,19199,19217,19232,19288,19315,19346,19377,19397,19423,19456,19459,19529,19543,19545,19564,19579,19582,19587,19602,19608,19632,19636,19671,19682,19712,19727,19745,19807,19858,19859,19860,19866,19899,19904,19911,19919,19922,19998,20007,20041,20163,20231,20272,20273,20296,20298,20326,20459,20535,20619,20627,20657,20734,20745,20747,20749,20767,20792,20805,20837,20840,20843,20859,20860,20862,21037,21075,21304,21379,21400,21401,21402,21406,21408,21415,21501,21502,21505,21506,21509,21510,21512,21561,21585,21590,21655,21679,21687,21688,21703,21712,21718,21731,21732,21754,22030,22036,22040,22077,22083,22088,22089,22291,22452,22601,22602,22754,22868,22887,22888,22897,22899,22919,22926,22927,22932,22933,22935,22936,22951,22952,22985,22988,22991,22992,22993,23065]]],["+",[21,21,[[0,3,3,0,3,[[8,1,1,0,1],[9,2,2,1,3]]],[2,5,5,3,8,[[91,1,1,3,4],[94,3,3,4,7],[107,1,1,7,8]]],[3,2,2,8,10,[[121,1,1,8,9],[138,1,1,9,10]]],[5,1,1,10,11,[[210,1,1,10,11]]],[9,1,1,11,12,[[287,1,1,11,12]]],[12,2,2,12,14,[[339,1,1,12,13],[360,1,1,13,14]]],[17,1,1,14,15,[[447,1,1,14,15]]],[20,1,1,15,16,[[665,1,1,15,16]]],[22,1,1,16,17,[[719,1,1,16,17]]],[23,1,1,17,18,[[748,1,1,17,18]]],[25,3,3,18,21,[[809,1,1,18,19],[817,1,1,19,20],[819,1,1,20,21]]]],[224,239,266,2770,2834,2835,2843,3277,3815,4390,6502,8602,10359,10987,13131,17439,18479,19039,20619,20767,20859]]],["Some",[1,1,[[18,1,1,0,1,[[497,1,1,0,1]]]],[14189]]],["These",[137,134,[[0,19,19,0,19,[[1,1,1,0,1],[5,1,1,1,2],[8,1,1,2,3],[9,3,3,3,6],[10,1,1,6,7],[24,1,1,7,8],[33,1,1,8,9],[35,5,5,9,14],[36,1,1,14,15],[45,4,4,15,19]]],[1,5,5,19,24,[[55,1,1,19,20],[68,1,1,20,21],[81,2,2,21,23],[84,1,1,23,24]]],[2,5,5,24,29,[[100,1,1,24,25],[112,2,2,25,27],[115,1,1,27,28],[116,1,1,28,29]]],[3,37,35,29,64,[[117,2,2,29,31],[118,1,1,31,32],[119,3,3,32,35],[120,4,4,35,39],[129,1,1,39,40],[142,19,17,40,57],[145,1,1,57,58],[146,1,1,58,59],[149,1,1,59,60],[150,2,2,60,62],[151,1,1,62,63],[152,1,1,63,64]]],[4,7,7,64,71,[[153,1,1,64,65],[156,1,1,65,66],[157,1,1,66,67],[159,1,1,67,68],[164,1,1,68,69],[179,1,1,69,70],[181,1,1,70,71]]],[5,4,4,71,75,[[199,1,1,71,72],[205,1,1,72,73],[206,1,1,73,74],[207,1,1,74,75]]],[7,1,1,75,76,[[234,1,1,75,76]]],[9,4,4,76,80,[[269,1,1,76,77],[289,3,3,77,80]]],[10,2,2,80,82,[[299,1,1,80,81],[312,1,1,81,82]]],[12,30,29,82,111,[[338,3,3,82,85],[339,3,3,85,88],[341,6,6,88,94],[342,1,1,94,95],[344,2,2,95,97],[345,3,2,97,99],[346,1,1,99,100],[348,2,2,100,102],[349,2,2,102,104],[360,3,3,104,107],[361,2,2,107,109],[363,1,1,109,110],[364,1,1,110,111]]],[13,2,2,111,113,[[383,1,1,111,112],[384,1,1,112,113]]],[14,2,2,113,115,[[404,1,1,113,114],[410,1,1,114,115]]],[15,4,4,115,119,[[419,2,2,115,117],[424,2,2,117,119]]],[18,1,1,119,120,[[527,1,1,119,120]]],[19,2,2,120,122,[[651,1,1,120,121],[652,1,1,121,122]]],[22,2,2,122,124,[[720,1,1,122,123],[743,1,1,123,124]]],[25,4,4,124,128,[[837,1,1,124,125],[844,1,1,125,126],[847,1,1,126,127],[848,1,1,127,128]]],[37,6,6,128,134,[[911,3,3,128,131],[914,1,1,131,132],[916,1,1,132,133],[918,1,1,133,134]]]],[34,146,224,254,265,266,276,674,1001,1050,1055,1059,1060,1069,1085,1401,1404,1408,1411,1669,2032,2442,2446,2532,3028,3406,3439,3570,3604,3620,3648,3690,3693,3695,3712,3758,3780,3784,3788,4091,4496,4503,4507,4511,4514,4516,4519,4523,4524,4526,4530,4531,4536,4539,4540,4547,4552,4647,4664,4761,4833,4845,4860,4892,4893,5049,5075,5128,5241,5597,5680,6186,6372,6381,6423,7189,8086,8661,8670,8675,9074,9497,10281,10283,10306,10307,10339,10356,10387,10389,10391,10397,10416,10423,10442,10552,10568,10585,10603,10649,10683,10697,10734,10735,10992,10993,11007,11034,11045,11096,11131,11542,11558,12089,12202,12426,12484,12631,12650,14689,17102,17114,18496,18902,21379,21590,21679,21687,22888,22897,22899,22936,22952,22992]]],["This",[1,1,[[1,1,1,0,1,[[87,1,1,0,1]]]],[2654]]],["Thus",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[4016]]],["another",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11020]]],["like",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21655]]],["manner",[1,1,[[3,1,1,0,1,[[144,1,1,0,1]]]],[4601]]],["one",[2,2,[[9,1,1,0,1,[[268,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]]],[8062,9437]]],["other",[3,3,[[5,1,1,0,1,[[194,1,1,0,1]]],[9,1,1,1,2,[[268,1,1,1,2]]],[10,1,1,2,3,[[310,1,1,2,3]]]],[6024,8062,9437]]],["others",[1,1,[[25,1,1,0,1,[[810,1,1,0,1]]]],[20627]]],["same",[3,3,[[0,1,1,0,1,[[43,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[12,1,1,2,3,[[341,1,1,2,3]]]],[1330,7641,10418]]],["so",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5475]]],["some",[5,3,[[5,2,1,0,1,[[194,2,1,0,1]]],[18,1,1,1,2,[[497,1,1,1,2]]],[26,2,1,2,3,[[861,2,1,2,3]]]],[6024,14189,22083]]],["sort",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11020]]],["such",[7,7,[[8,1,1,0,1,[[237,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]],[17,1,1,2,3,[[453,1,1,2,3]]],[23,2,2,3,5,[[762,1,1,3,4],[782,1,1,4,5]]],[25,1,1,5,6,[[818,1,1,5,6]]],[26,1,1,6,7,[[859,1,1,6,7]]]],[7263,12409,13297,19397,19899,20840,22030]]],["them",[7,7,[[12,1,1,0,1,[[346,1,1,0,1]]],[18,1,1,1,2,[[603,1,1,1,2]]],[23,2,2,2,4,[[754,1,1,2,3],[795,1,1,3,4]]],[25,2,2,4,6,[[805,1,1,4,5],[849,1,1,5,6]]],[32,1,1,6,7,[[894,1,1,6,7]]]],[10640,16117,19217,20231,20535,21712,22601]]],["these",[485,463,[[0,63,57,0,57,[[9,2,2,0,2],[10,1,1,2,3],[13,1,1,3,4],[14,2,2,4,6],[19,1,1,6,7],[20,1,1,7,8],[21,3,3,8,11],[23,1,1,11,12],[24,7,7,12,19],[26,1,1,19,20],[28,1,1,20,21],[30,1,1,21,22],[31,1,1,22,23],[34,1,1,23,24],[35,26,21,24,45],[37,2,1,45,46],[38,2,2,46,48],[39,1,1,48,49],[42,1,1,49,50],[43,1,1,50,51],[45,3,3,51,54],[47,2,2,54,56],[48,1,1,56,57]]],[1,20,19,57,76,[[50,1,1,57,58],[53,1,1,58,59],[55,6,6,59,65],[59,1,1,65,66],[60,2,2,66,68],[68,1,1,68,69],[69,1,1,69,70],[70,2,2,70,72],[73,1,1,72,73],[74,1,1,73,74],[77,1,1,74,75],[83,2,1,75,76]]],[2,11,11,76,87,[[100,3,3,76,79],[107,2,2,79,81],[110,1,1,81,82],[111,2,2,82,84],[112,1,1,84,85],[114,1,1,85,86],[115,1,1,86,87]]],[3,29,29,87,116,[[117,2,2,87,89],[119,6,6,89,95],[129,1,1,95,96],[130,1,1,96,97],[131,1,1,97,98],[132,6,6,98,104],[137,1,1,104,105],[138,1,1,105,106],[142,4,4,106,110],[143,1,1,110,111],[144,1,1,111,112],[149,1,1,112,113],[150,1,1,113,114],[151,2,2,114,116]]],[4,37,37,116,153,[[153,1,1,116,117],[155,2,2,117,119],[156,2,2,119,121],[158,2,2,121,123],[159,1,1,123,124],[161,2,2,124,126],[162,1,1,126,127],[163,2,2,127,129],[164,2,2,129,131],[168,1,1,131,132],[169,1,1,132,133],[170,2,2,133,135],[171,1,1,135,136],[172,2,2,136,138],[174,1,1,138,139],[177,1,1,139,140],[178,1,1,140,141],[179,2,2,141,143],[180,3,3,143,146],[182,2,2,146,148],[183,4,4,148,152],[184,1,1,152,153]]],[5,32,29,153,182,[[190,3,3,153,156],[195,2,1,156,157],[196,3,3,157,160],[197,2,2,160,162],[198,2,2,162,164],[200,1,1,164,165],[203,3,3,165,168],[205,4,4,168,172],[207,4,4,172,176],[209,7,5,176,181],[210,1,1,181,182]]],[6,10,10,182,192,[[212,1,1,182,183],[213,1,1,183,184],[219,1,1,184,185],[223,1,1,185,186],[228,2,2,186,188],[230,4,4,188,192]]],[7,1,1,192,193,[[235,1,1,192,193]]],[8,15,14,193,207,[[239,2,1,193,194],[241,1,1,194,195],[245,1,1,195,196],[249,1,1,196,197],[251,1,1,197,198],[252,2,2,198,200],[253,1,1,200,201],[256,1,1,201,202],[258,1,1,202,203],[259,1,1,203,204],[260,1,1,204,205],[264,1,1,205,206],[266,1,1,206,207]]],[9,8,8,207,215,[[269,1,1,207,208],[271,1,1,208,209],[273,1,1,209,210],[279,1,1,210,211],[280,1,1,211,212],[282,1,1,212,213],[289,1,1,213,214],[290,1,1,214,215]]],[10,14,14,215,229,[[294,2,2,215,217],[297,2,2,217,219],[298,1,1,219,220],[299,1,1,220,221],[300,1,1,221,222],[307,2,2,222,224],[308,1,1,224,225],[310,1,1,225,226],[311,1,1,226,227],[312,2,2,227,229]]],[11,16,16,229,245,[[313,2,2,229,231],[314,1,1,231,232],[315,2,2,232,234],[318,1,1,234,235],[319,1,1,235,236],[322,1,1,236,237],[329,1,1,237,238],[330,1,1,238,239],[332,1,1,239,240],[333,1,1,240,241],[335,2,2,241,243],[337,2,2,243,245]]],[12,45,42,245,287,[[338,3,3,245,248],[339,2,2,248,250],[340,2,2,250,252],[341,3,3,252,255],[342,1,1,255,256],[343,7,7,256,263],[344,4,4,263,267],[345,5,3,267,270],[346,5,4,270,274],[347,1,1,274,275],[348,1,1,275,276],[349,3,3,276,279],[351,1,1,279,280],[354,1,1,280,281],[358,1,1,281,282],[362,2,2,282,284],[363,2,2,284,286],[364,1,1,286,287]]],[13,16,16,287,303,[[369,2,2,287,289],[370,1,1,289,290],[374,1,1,290,291],[375,1,1,291,292],[380,2,2,292,294],[381,1,1,294,295],[383,1,1,295,296],[384,2,2,296,298],[387,1,1,298,299],[390,1,1,299,300],[395,1,1,300,301],[398,1,1,301,302],[401,1,1,302,303]]],[14,6,6,303,309,[[404,2,2,303,305],[409,1,1,305,306],[410,1,1,306,307],[411,1,1,307,308],[412,1,1,308,309]]],[15,10,10,309,319,[[413,1,1,309,310],[417,1,1,310,311],[418,3,3,311,314],[419,1,1,314,315],[422,1,1,315,316],[423,2,2,316,318],[424,1,1,318,319]]],[16,10,9,319,328,[[426,1,1,319,320],[427,1,1,320,321],[428,1,1,321,322],[434,7,6,322,328]]],[17,7,7,328,335,[[443,1,1,328,329],[445,1,1,329,330],[447,1,1,330,331],[461,1,1,331,332],[467,1,1,332,333],[468,1,1,333,334],[477,1,1,334,335]]],[18,4,4,335,339,[[492,1,1,335,336],[519,1,1,336,337],[550,1,1,337,338],[584,1,1,338,339]]],[20,1,1,339,340,[[669,1,1,339,340]]],[22,19,15,340,355,[[685,1,1,340,341],[714,2,2,341,343],[717,1,1,343,344],[718,1,1,344,345],[722,1,1,345,346],[723,1,1,346,347],[725,2,2,347,349],[726,1,1,349,350],[727,6,2,350,352],[735,1,1,352,353],[738,1,1,353,354],[742,1,1,354,355]]],[23,52,52,355,407,[[746,1,1,355,356],[747,2,2,356,358],[748,1,1,358,359],[749,4,4,359,363],[751,4,4,363,367],[753,2,2,367,369],[755,1,1,369,370],[758,1,1,370,371],[760,1,1,371,372],[761,1,1,372,373],[764,1,1,373,374],[766,2,2,374,376],[768,1,1,376,377],[769,3,3,377,380],[770,3,3,380,383],[771,2,2,383,385],[772,1,1,385,386],[773,1,1,386,387],[774,2,2,387,389],[775,1,1,389,390],[776,1,1,390,391],[778,1,1,391,392],[780,4,4,392,396],[782,4,4,396,400],[787,2,2,400,402],[789,1,1,402,403],[795,2,2,403,405],[796,2,2,405,407]]],[24,2,2,407,409,[[797,1,1,407,408],[801,1,1,408,409]]],[25,31,31,409,440,[[812,1,1,409,410],[815,4,4,410,414],[817,2,2,414,416],[818,2,2,416,418],[819,1,1,418,419],[824,1,1,419,420],[825,1,1,420,421],[838,6,6,421,427],[841,6,6,427,433],[843,1,1,433,434],[844,1,1,434,435],[848,1,1,435,436],[849,4,4,436,440]]],[26,4,4,440,444,[[850,1,1,440,441],[860,1,1,441,442],[861,2,2,442,444]]],[27,1,1,444,445,[[875,1,1,444,445]]],[29,1,1,445,446,[[884,1,1,445,446]]],[32,1,1,446,447,[[894,1,1,446,447]]],[34,1,1,447,448,[[904,1,1,447,448]]],[36,1,1,448,449,[[910,1,1,448,449]]],[37,17,14,449,463,[[911,5,3,449,452],[913,1,1,452,453],[914,4,4,453,457],[916,1,1,457,458],[918,5,4,458,462],[923,1,1,462,463]]]],[235,263,293,339,361,370,503,542,548,567,570,619,662,665,670,671,674,675,677,773,808,916,945,1037,1041,1045,1049,1052,1053,1054,1056,1057,1058,1059,1061,1063,1064,1065,1066,1067,1068,1070,1071,1080,1083,1144,1156,1166,1173,1297,1331,1394,1404,1411,1452,1459,1501,1533,1610,1669,1670,1671,1674,1679,1680,1778,1814,1816,2033,2052,2078,2088,2185,2234,2297,2523,3010,3019,3021,3275,3280,3359,3391,3394,3404,3523,3538,3609,3621,3694,3709,3710,3713,3719,3725,4079,4147,4175,4220,4222,4223,4224,4225,4232,4365,4384,4525,4542,4546,4553,4555,4600,4762,4835,4869,4874,4927,4980,4996,5010,5034,5092,5110,5123,5161,5162,5207,5226,5231,5268,5270,5354,5383,5396,5398,5415,5442,5443,5487,5550,5582,5589,5598,5613,5626,5656,5709,5715,5729,5731,5745,5756,5803,5916,5917,5931,6050,6080,6088,6106,6112,6121,6131,6137,6188,6277,6278,6284,6329,6337,6352,6369,6384,6389,6390,6423,6463,6464,6467,6472,6473,6505,6549,6569,6757,6907,7007,7011,7079,7089,7098,7100,7208,7305,7348,7425,7514,7605,7636,7657,7702,7784,7812,7855,7898,7970,8013,8120,8146,8197,8338,8375,8428,8654,8709,8846,8852,8943,8979,9044,9064,9087,9318,9334,9377,9427,9452,9491,9503,9540,9546,9572,9586,9589,9694,9715,9802,10024,10051,10112,10130,10181,10182,10238,10239,10275,10285,10295,10324,10329,10362,10366,10388,10403,10426,10452,10471,10473,10485,10487,10504,10508,10519,10543,10546,10564,10575,10581,10613,10615,10624,10648,10649,10659,10663,10692,10721,10743,10758,10778,10878,10951,11051,11052,11085,11089,11140,11232,11242,11264,11356,11371,11482,11483,11498,11537,11552,11564,11626,11703,11823,11876,11973,12028,12086,12174,12214,12251,12296,12300,12388,12407,12408,12415,12481,12557,12591,12595,12625,12707,12725,12748,12854,12860,12861,12862,12865,12866,13031,13099,13137,13481,13629,13679,13929,14092,14559,15032,15742,17522,17786,18342,18350,18415,18446,18554,18568,18606,18608,18628,18648,18657,18771,18829,18897,18999,19009,19014,19045,19067,19077,19083,19087,19121,19129,19132,19146,19184,19199,19232,19315,19346,19377,19423,19456,19459,19529,19543,19545,19564,19579,19582,19587,19602,19608,19632,19636,19671,19682,19712,19745,19807,19858,19859,19860,19866,19904,19911,19919,19922,19998,20007,20041,20272,20273,20296,20298,20326,20459,20657,20734,20745,20747,20749,20792,20805,20837,20843,20862,21037,21075,21400,21401,21402,21406,21408,21415,21501,21505,21506,21509,21510,21512,21561,21585,21688,21703,21718,21731,21732,21754,22077,22088,22089,22291,22452,22602,22754,22868,22887,22897,22899,22919,22926,22927,22933,22935,22951,22985,22988,22991,22993,23065]]],["they",[2,2,[[22,2,2,0,2,[[706,1,1,0,1],[727,1,1,1,2]]]],[18171,18651]]],["things",[15,15,[[2,4,4,0,4,[[99,1,1,0,1],[107,1,1,1,2],[109,1,1,2,3],[115,1,1,3,4]]],[3,1,1,4,5,[[131,1,1,4,5]]],[4,2,2,5,7,[[170,1,1,5,6],[177,1,1,6,7]]],[12,2,2,7,9,[[348,1,1,7,8],[366,1,1,8,9]]],[14,1,1,9,10,[[411,1,1,9,10]]],[15,1,1,10,11,[[425,1,1,10,11]]],[17,1,1,11,12,[[451,1,1,11,12]]],[22,1,1,12,13,[[744,1,1,12,13]]],[23,1,1,13,14,[[757,1,1,13,14]]],[26,1,1,14,15,[[859,1,1,14,15]]]],[2996,3275,3341,3547,4166,5396,5563,10692,11181,12238,12697,13240,18930,19288,22036]]],["this",[8,8,[[0,1,1,0,1,[[38,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,2,2,2,4,[[121,2,2,2,4]]],[8,2,2,4,6,[[237,1,1,4,5],[253,1,1,5,6]]],[12,1,1,6,7,[[348,1,1,6,7]]],[14,1,1,7,8,[[403,1,1,7,8]]]],[1168,3542,3811,3814,7263,7700,10684,12025]]],["those",[39,38,[[0,3,3,0,3,[[14,1,1,0,1],[32,1,1,1,2],[40,1,1,2,3]]],[4,1,1,3,4,[[171,1,1,3,4]]],[5,11,11,4,15,[[190,1,1,4,5],[196,3,3,5,8],[197,3,3,8,11],[203,1,1,11,12],[206,1,1,12,13],[207,1,1,13,14],[210,1,1,14,15]]],[6,1,1,15,16,[[212,1,1,15,16]]],[8,8,8,16,24,[[242,1,1,16,17],[245,1,1,17,18],[246,1,1,18,19],[252,1,1,19,20],[253,1,1,20,21],[254,1,1,21,22],[260,2,2,22,24]]],[10,2,2,24,26,[[294,1,1,24,25],[311,1,1,25,26]]],[11,1,1,26,27,[[316,1,1,26,27]]],[13,2,2,27,29,[[380,1,1,27,28],[398,1,1,28,29]]],[20,1,1,29,30,[[665,1,1,29,30]]],[22,2,1,30,31,[[744,2,1,30,31]]],[23,2,2,31,33,[[775,1,1,31,32],[793,1,1,32,33]]],[25,3,3,33,36,[[819,1,1,33,34],[834,1,1,34,35],[841,1,1,35,36]]],[26,1,1,36,37,[[860,1,1,36,37]]],[37,1,1,37,38,[[914,1,1,37,38]]]],[377,965,1230,5411,5930,6086,6087,6088,6117,6119,6125,6287,6376,6397,6493,6568,7368,7427,7451,7629,7699,7713,7870,7873,8871,9478,9607,11481,11889,17457,18924,19727,20163,20860,21304,21502,22040,22932]]],["who",[1,1,[[4,1,1,0,1,[[157,1,1,0,1]]]],[5056]]],["whom",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12092,12487]]]]},{"k":"H429","v":[["these",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[23,1,1,1,2,[[754,1,1,1,2]]]],[12149,19212]]]]},{"k":"H430","v":[["*",[2600,2246,[[0,218,189,0,189,[[0,32,26,0,26],[1,14,13,26,39],[2,13,10,39,49],[3,1,1,49,50],[4,5,3,50,53],[5,7,7,53,60],[6,2,2,60,62],[7,3,2,62,64],[8,8,8,64,72],[16,9,9,72,81],[18,2,1,81,82],[19,6,5,82,87],[20,11,9,87,96],[21,5,5,96,101],[22,1,1,101,102],[23,7,6,102,108],[24,1,1,108,109],[25,1,1,109,110],[26,2,2,110,112],[27,8,7,112,119],[29,9,8,119,127],[30,17,12,127,139],[31,6,5,139,144],[32,3,3,144,147],[34,10,10,147,157],[38,1,1,157,158],[39,1,1,158,159],[40,9,8,159,167],[41,2,2,167,169],[42,3,2,169,171],[43,1,1,171,172],[44,4,4,172,176],[45,3,3,176,179],[47,6,5,179,184],[49,5,5,184,189]]],[1,139,111,189,300,[[50,3,3,189,192],[51,5,3,192,195],[52,21,10,195,205],[53,7,4,205,209],[54,4,3,209,212],[55,3,2,212,214],[56,2,2,214,216],[57,6,6,216,222],[58,4,4,222,226],[59,7,7,226,233],[61,1,1,233,234],[62,4,3,234,237],[63,1,1,237,238],[64,2,2,238,240],[65,1,1,240,241],[66,1,1,241,242],[67,13,10,242,252],[68,3,3,252,255],[69,12,11,255,266],[70,2,2,266,268],[71,5,4,268,272],[72,6,6,272,278],[73,3,3,278,281],[78,3,2,281,283],[80,2,2,283,285],[81,9,8,285,293],[83,8,6,293,299],[84,1,1,299,300]]],[2,53,47,300,347,[[91,1,1,300,301],[93,1,1,301,302],[100,2,2,302,304],[107,4,4,304,308],[108,12,11,308,319],[109,2,2,319,321],[110,10,7,321,328],[111,2,2,328,330],[112,5,5,330,335],[113,2,2,335,337],[114,7,5,337,342],[115,5,5,342,347]]],[3,27,23,347,370,[[122,1,1,347,348],[126,3,2,348,350],[131,4,2,350,352],[132,2,2,352,354],[137,1,1,354,355],[138,7,7,355,362],[139,3,3,362,365],[140,1,1,365,366],[141,3,2,366,368],[143,1,1,368,369],[149,1,1,369,370]]],[4,374,312,370,682,[[153,14,13,370,383],[154,7,6,383,389],[155,5,5,389,394],[156,25,22,394,416],[157,19,15,416,431],[158,16,14,431,445],[159,19,14,445,459],[160,11,10,459,469],[161,8,8,469,477],[162,11,7,477,484],[163,13,11,484,495],[164,26,19,495,514],[165,14,11,514,525],[166,10,8,525,533],[167,11,11,533,544],[168,19,15,544,559],[169,10,8,559,567],[170,10,9,567,576],[171,8,7,576,583],[172,8,7,583,590],[173,5,4,590,594],[174,1,1,594,595],[175,10,6,595,601],[176,5,5,601,606],[177,5,4,606,610],[178,15,13,610,623],[179,9,7,623,630],[180,16,15,630,645],[181,12,9,645,654],[182,16,12,654,666],[183,10,10,666,676],[184,4,4,676,680],[185,2,2,680,682]]],[5,76,65,682,747,[[187,5,5,682,687],[188,2,1,687,688],[189,2,2,688,690],[190,4,3,690,693],[193,3,3,693,696],[194,2,2,696,698],[195,5,5,698,703],[196,3,3,703,706],[199,2,2,706,708],[200,4,4,708,712],[204,2,2,712,714],[208,11,10,714,724],[209,15,10,724,734],[210,16,13,734,747]]],[6,73,61,747,808,[[211,1,1,747,748],[212,6,4,748,752],[213,3,3,752,755],[214,2,2,755,757],[215,3,3,757,760],[216,9,8,760,768],[217,1,1,768,769],[218,3,3,769,772],[219,7,7,772,779],[220,9,5,779,784],[221,4,3,784,787],[223,8,6,787,793],[225,1,1,793,794],[226,6,4,794,798],[227,1,1,798,799],[228,4,4,799,803],[230,3,3,803,806],[231,2,2,806,808]]],[7,4,3,808,811,[[232,3,2,808,810],[233,1,1,810,811]]],[8,100,90,811,901,[[236,1,1,811,812],[237,4,4,812,816],[238,3,2,816,818],[239,11,10,818,828],[240,12,6,828,834],[241,4,3,834,837],[242,2,2,837,839],[243,1,1,839,840],[244,6,6,840,846],[245,8,8,846,854],[246,1,1,854,855],[247,4,4,855,859],[248,1,1,859,860],[249,8,7,860,867],[250,3,3,867,870],[251,3,3,870,873],[252,5,5,873,878],[253,1,1,878,879],[254,2,2,879,881],[255,1,1,881,882],[257,3,3,882,885],[258,5,5,885,890],[260,4,4,890,894],[261,2,2,894,896],[263,2,2,896,898],[264,1,1,898,899],[265,2,2,899,901]]],[9,54,48,901,949,[[268,1,1,901,902],[269,2,2,902,904],[271,1,1,904,905],[272,8,6,905,911],[273,9,8,911,919],[275,1,1,919,920],[276,1,1,920,921],[278,2,2,921,923],[280,7,6,923,929],[281,5,4,929,933],[282,1,1,933,934],[284,1,1,934,935],[285,2,2,935,937],[287,1,1,937,938],[288,6,6,938,944],[289,3,2,944,946],[290,3,3,946,949]]],[10,107,90,949,1039,[[291,5,5,949,954],[292,2,2,954,956],[293,4,4,956,960],[294,1,1,960,961],[295,3,3,961,964],[298,14,13,964,977],[299,3,2,977,979],[300,2,2,979,981],[301,12,9,981,990],[302,3,2,990,992],[303,17,13,992,1005],[304,3,3,1005,1008],[305,3,3,1008,1011],[306,3,3,1011,1014],[307,7,7,1014,1021],[308,12,8,1021,1029],[309,4,4,1029,1033],[310,6,3,1033,1036],[311,2,2,1036,1038],[312,1,1,1038,1039]]],[11,98,83,1039,1122,[[313,13,9,1039,1048],[314,1,1,1048,1049],[316,11,9,1049,1058],[317,8,7,1058,1065],[318,5,5,1065,1070],[319,4,4,1070,1074],[320,5,5,1074,1079],[321,1,1,1079,1080],[322,1,1,1080,1081],[325,1,1,1081,1082],[326,1,1,1082,1083],[328,1,1,1083,1084],[329,16,14,1084,1098],[330,7,6,1098,1104],[331,14,9,1104,1113],[332,1,1,1113,1114],[333,2,2,1114,1116],[334,3,3,1116,1119],[335,3,3,1119,1122]]],[12,119,101,1122,1223,[[341,2,1,1122,1123],[342,6,4,1123,1127],[343,2,2,1127,1129],[346,4,4,1129,1133],[347,1,1,1133,1134],[348,2,2,1134,1136],[349,3,3,1136,1139],[350,10,9,1139,1148],[351,7,6,1148,1154],[352,9,8,1154,1162],[353,10,9,1162,1171],[354,12,10,1171,1181],[356,1,1,1181,1182],[358,6,5,1182,1187],[359,10,8,1187,1195],[360,3,3,1195,1198],[361,2,2,1198,1200],[362,3,2,1200,1202],[363,3,3,1202,1205],[365,10,8,1205,1213],[366,13,10,1213,1223]]],[13,203,167,1223,1390,[[367,7,7,1223,1230],[368,5,3,1230,1233],[369,1,1,1233,1234],[370,2,2,1234,1236],[371,2,2,1236,1238],[372,13,11,1238,1249],[373,4,3,1249,1252],[374,1,1,1252,1253],[375,4,2,1253,1255],[376,1,1,1255,1256],[377,3,2,1256,1258],[379,10,9,1258,1267],[380,6,4,1267,1271],[381,8,8,1271,1279],[382,1,1,1279,1280],[383,1,1,1280,1281],[384,3,3,1281,1284],[385,3,3,1284,1287],[386,10,9,1287,1296],[387,2,2,1296,1298],[388,2,2,1298,1300],[389,2,2,1300,1302],[390,10,9,1302,1311],[391,12,8,1311,1319],[392,6,4,1319,1323],[393,1,1,1323,1324],[394,10,7,1324,1331],[395,5,5,1331,1336],[396,11,10,1336,1346],[397,6,5,1346,1351],[398,15,11,1351,1362],[399,10,7,1362,1369],[400,11,9,1369,1378],[401,5,4,1378,1382],[402,10,8,1382,1390]]],[14,55,45,1390,1435,[[403,7,5,1390,1395],[404,1,1,1395,1396],[405,4,3,1396,1399],[406,4,3,1399,1402],[408,3,2,1402,1404],[409,5,4,1404,1408],[410,12,12,1408,1420],[411,11,8,1420,1428],[412,8,7,1428,1435]]],[15,70,64,1435,1499,[[413,2,2,1435,1437],[414,5,5,1437,1442],[416,4,4,1442,1446],[417,4,4,1446,1450],[418,4,4,1450,1454],[419,2,2,1454,1456],[420,5,5,1456,1461],[421,7,6,1461,1467],[422,12,9,1467,1476],[423,3,3,1476,1479],[424,6,6,1479,1485],[425,16,14,1485,1499]]],[17,17,17,1499,1516,[[436,7,7,1499,1506],[437,4,4,1506,1510],[440,1,1,1510,1511],[455,1,1,1511,1512],[463,1,1,1512,1513],[467,1,1,1513,1514],[469,1,1,1514,1515],[473,1,1,1515,1516]]],[18,364,324,1516,1840,[[480,2,2,1516,1518],[481,1,1,1518,1519],[482,2,2,1519,1521],[484,5,5,1521,1526],[485,1,1,1526,1527],[486,1,1,1527,1528],[487,2,2,1528,1530],[490,1,1,1530,1531],[491,3,3,1531,1534],[495,6,6,1534,1540],[497,3,3,1540,1543],[499,1,1,1543,1544],[501,1,1,1544,1545],[502,3,3,1545,1548],[504,1,1,1548,1549],[507,2,2,1549,1551],[508,1,1,1551,1552],[510,1,1,1552,1553],[512,2,2,1553,1555],[513,2,2,1555,1557],[514,1,1,1557,1558],[515,2,2,1558,1560],[517,4,4,1560,1564],[518,1,1,1564,1565],[519,10,8,1565,1573],[520,7,4,1573,1577],[521,5,5,1577,1582],[522,4,3,1582,1585],[523,7,6,1585,1591],[524,8,6,1591,1597],[525,8,6,1597,1603],[526,2,2,1603,1605],[527,9,8,1605,1613],[528,6,4,1613,1617],[529,3,2,1617,1619],[530,7,5,1619,1624],[531,4,4,1624,1628],[532,5,5,1628,1633],[533,9,8,1633,1641],[534,6,6,1641,1647],[535,2,2,1647,1649],[536,9,6,1649,1655],[537,5,4,1655,1659],[538,3,3,1659,1662],[539,7,5,1662,1667],[540,2,2,1667,1669],[541,3,3,1669,1672],[542,3,3,1672,1675],[543,8,8,1675,1683],[544,6,5,1683,1688],[545,26,22,1688,1710],[546,9,9,1710,1719],[547,3,3,1719,1722],[548,9,7,1722,1729],[549,3,2,1729,1731],[550,3,3,1731,1734],[551,4,4,1734,1738],[552,3,3,1738,1741],[553,4,4,1741,1745],[554,6,4,1745,1749],[555,8,8,1749,1757],[556,3,3,1757,1760],[557,5,5,1760,1765],[558,4,3,1765,1768],[559,4,3,1768,1771],[560,3,3,1771,1774],[561,7,6,1774,1780],[562,1,1,1780,1781],[563,5,5,1781,1786],[564,1,1,1786,1787],[565,1,1,1787,1788],[566,1,1,1788,1789],[567,1,1,1789,1790],[568,1,1,1790,1791],[569,1,1,1791,1792],[571,3,3,1792,1795],[572,2,2,1795,1797],[573,2,2,1797,1799],[574,2,2,1799,1801],[575,1,1,1801,1802],[576,4,3,1802,1805],[577,1,1,1805,1806],[581,2,2,1806,1808],[582,1,1,1808,1809],[583,2,2,1809,1811],[585,6,5,1811,1816],[586,2,2,1816,1818],[590,1,1,1818,1819],[592,2,2,1819,1821],[593,1,1,1821,1822],[595,1,1,1822,1823],[596,1,1,1823,1824],[599,1,1,1824,1825],[600,1,1,1825,1826],[612,2,2,1826,1828],[613,2,1,1828,1829],[615,1,1,1829,1830],[620,1,1,1830,1831],[621,2,2,1831,1833],[622,1,1,1833,1834],[623,3,3,1834,1837],[624,3,3,1837,1840]]],[19,5,5,1840,1845,[[629,2,2,1840,1842],[630,1,1,1842,1843],[652,1,1,1843,1844],[657,1,1,1844,1845]]],[20,40,36,1845,1881,[[659,1,1,1845,1846],[660,2,2,1846,1848],[661,8,7,1848,1855],[663,10,8,1855,1863],[664,2,1,1863,1864],[665,5,5,1864,1869],[666,5,5,1869,1874],[667,2,2,1874,1876],[669,2,2,1876,1878],[670,3,3,1878,1881]]],[22,94,86,1881,1967,[[679,1,1,1881,1882],[680,1,1,1882,1883],[685,2,2,1883,1885],[686,2,2,1885,1887],[691,1,1,1887,1888],[695,2,2,1888,1890],[699,3,3,1890,1893],[702,1,1,1893,1894],[703,2,2,1894,1896],[704,1,1,1896,1897],[706,1,1,1897,1898],[707,1,1,1898,1899],[708,1,1,1899,1900],[713,3,2,1900,1902],[714,5,4,1902,1906],[715,13,9,1906,1915],[716,1,1,1915,1916],[718,6,6,1916,1922],[719,4,4,1922,1926],[720,1,1,1926,1927],[721,1,1,1927,1928],[722,1,1,1928,1929],[723,6,6,1929,1935],[724,1,1,1935,1936],[726,3,3,1936,1939],[727,2,2,1939,1941],[728,1,1,1941,1942],[729,3,3,1942,1945],[730,3,3,1945,1948],[731,1,1,1948,1949],[732,2,2,1949,1951],[733,2,2,1951,1953],[735,1,1,1953,1954],[736,2,1,1954,1955],[737,2,2,1955,1957],[738,2,2,1957,1959],[739,3,3,1959,1962],[740,2,2,1962,1964],[742,1,1,1964,1965],[743,2,1,1965,1966],[744,1,1,1966,1967]]],[23,145,128,1967,2095,[[745,1,1,1967,1968],[746,6,4,1968,1972],[747,6,5,1972,1977],[749,7,6,1977,1983],[751,7,7,1983,1990],[752,1,1,1990,1991],[753,1,1,1991,1992],[754,2,1,1992,1993],[755,5,5,1993,1998],[757,3,3,1998,2001],[758,1,1,2001,2002],[759,1,1,2002,2003],[760,6,5,2003,2008],[763,4,4,2008,2012],[765,1,1,2012,2013],[766,2,1,2013,2014],[767,5,3,2014,2017],[768,2,2,2017,2019],[769,3,3,2019,2022],[770,2,2,2022,2024],[771,2,2,2024,2026],[772,2,2,2026,2028],[773,4,4,2028,2032],[774,3,3,2032,2035],[775,5,5,2035,2040],[776,6,6,2040,2046],[777,1,1,2046,2047],[778,2,2,2047,2049],[779,7,6,2049,2055],[781,2,2,2055,2057],[782,2,1,2057,2058],[783,1,1,2058,2059],[784,1,1,2059,2060],[786,14,11,2060,2071],[787,6,5,2071,2076],[788,9,8,2076,2084],[789,1,1,2084,2085],[790,2,1,2085,2086],[792,2,2,2086,2088],[794,4,4,2088,2092],[795,3,3,2092,2095]]],[25,36,34,2095,2129,[[802,1,1,2095,2096],[809,2,2,2096,2098],[810,1,1,2098,2099],[811,2,2,2099,2101],[812,3,3,2101,2104],[815,1,1,2104,2105],[821,4,4,2105,2109],[829,8,7,2109,2116],[832,3,2,2116,2118],[835,3,3,2118,2121],[837,1,1,2121,2122],[838,2,2,2122,2124],[840,2,2,2124,2126],[841,1,1,2126,2127],[844,1,1,2127,2128],[845,1,1,2128,2129]]],[26,22,19,2129,2148,[[850,5,3,2129,2132],[858,13,12,2132,2144],[859,1,1,2144,2145],[860,3,3,2145,2148]]],[27,26,23,2148,2171,[[862,1,1,2148,2149],[863,1,1,2149,2150],[864,2,2,2150,2152],[865,3,3,2152,2155],[866,1,1,2155,2156],[867,1,1,2156,2157],[868,1,1,2157,2158],[869,2,2,2158,2160],[870,4,3,2160,2163],[873,5,4,2163,2167],[874,3,2,2167,2169],[875,2,2,2169,2171]]],[28,11,10,2171,2181,[[876,4,3,2171,2174],[877,6,6,2174,2180],[878,1,1,2180,2181]]],[29,14,14,2181,2195,[[880,1,1,2181,2182],[881,1,1,2182,2183],[882,3,3,2183,2186],[883,5,5,2186,2191],[884,2,2,2191,2193],[886,1,1,2193,2194],[887,1,1,2194,2195]]],[31,16,14,2195,2209,[[889,4,3,2195,2198],[890,2,2,2198,2200],[891,6,5,2200,2205],[892,4,4,2205,2209]]],[32,11,9,2209,2218,[[895,1,1,2209,2210],[896,3,2,2210,2212],[897,1,1,2212,2213],[898,2,2,2213,2215],[899,4,3,2215,2218]]],[33,1,1,2218,2219,[[900,1,1,2218,2219]]],[34,2,2,2219,2221,[[903,1,1,2219,2220],[905,1,1,2220,2221]]],[35,5,5,2221,2226,[[907,3,3,2221,2224],[908,2,2,2224,2226]]],[36,3,2,2226,2228,[[909,3,2,2226,2228]]],[37,11,11,2228,2239,[[916,1,1,2228,2229],[918,2,2,2229,2231],[919,2,2,2231,2233],[920,1,1,2233,2234],[921,1,1,2234,2235],[922,2,2,2235,2237],[923,1,1,2237,2238],[924,1,1,2238,2239]]],[38,7,7,2239,2246,[[926,3,3,2239,2242],[927,4,4,2242,2246]]]],[0,1,2,3,4,5,6,7,8,9,10,11,13,15,16,17,19,20,21,23,24,25,26,27,28,30,32,33,34,35,37,38,39,45,46,48,49,51,52,56,58,60,63,64,68,69,76,77,78,104,106,127,129,139,141,146,148,149,150,159,168,175,184,198,206,211,213,217,221,222,231,232,400,404,405,406,412,415,416,419,420,486,498,501,506,508,512,515,517,519,525,530,532,533,535,536,548,550,555,556,559,577,594,598,603,618,633,639,669,716,747,755,777,785,786,790,793,794,795,832,836,838,847,848,850,852,853,878,880,882,884,889,897,902,903,905,915,923,926,929,930,937,956,958,965,970,971,1012,1013,1015,1016,1018,1020,1021,1022,1024,1026,1158,1180,1211,1220,1223,1227,1233,1234,1246,1247,1270,1280,1313,1319,1340,1363,1365,1366,1367,1387,1388,1389,1460,1462,1466,1471,1472,1523,1525,1526,1530,1531,1549,1552,1553,1577,1578,1579,1580,1583,1585,1590,1591,1592,1593,1594,1595,1597,1606,1617,1621,1628,1633,1635,1640,1657,1662,1686,1701,1720,1729,1735,1736,1737,1738,1743,1755,1770,1772,1780,1784,1785,1793,1794,1802,1803,1828,1884,1885,1886,1908,1922,1946,1959,1992,2000,2003,2004,2010,2011,2014,2015,2018,2020,2022,2029,2043,2045,2052,2053,2054,2056,2058,2061,2063,2070,2071,2072,2074,2083,2090,2121,2122,2133,2141,2157,2163,2168,2169,2176,2177,2187,2188,2190,2381,2382,2423,2438,2439,2442,2446,2449,2454,2461,2465,2469,2511,2512,2513,2519,2520,2522,2562,2775,2817,3041,3042,3253,3255,3272,3281,3283,3284,3285,3291,3293,3295,3306,3312,3313,3315,3317,3325,3342,3351,3352,3353,3357,3362,3366,3367,3394,3402,3416,3424,3430,3442,3445,3461,3468,3486,3505,3507,3512,3524,3525,3536,3537,3568,3569,3830,3997,3998,4193,4194,4203,4216,4345,4384,4385,4387,4393,4395,4397,4413,4420,4437,4443,4448,4473,4484,4570,4764,4898,4902,4903,4909,4911,4912,4913,4917,4918,4922,4923,4924,4933,4945,4967,4968,4971,4974,4975,4978,4993,4995,4996,4997,5005,5006,5007,5008,5009,5011,5014,5023,5025,5027,5028,5029,5032,5033,5034,5035,5036,5037,5038,5039,5043,5044,5055,5059,5060,5062,5064,5065,5067,5068,5069,5077,5078,5079,5080,5085,5086,5087,5088,5089,5090,5091,5096,5099,5100,5101,5102,5103,5106,5110,5111,5112,5113,5115,5117,5120,5123,5127,5129,5130,5131,5132,5133,5134,5136,5139,5142,5143,5144,5147,5148,5151,5155,5156,5157,5160,5161,5162,5163,5164,5167,5173,5180,5195,5198,5200,5203,5206,5207,5208,5209,5210,5220,5221,5224,5230,5233,5235,5236,5237,5239,5241,5242,5243,5244,5245,5247,5249,5250,5251,5252,5255,5258,5260,5261,5267,5268,5269,5270,5271,5274,5275,5276,5277,5278,5279,5282,5284,5285,5288,5290,5291,5292,5311,5313,5314,5315,5316,5319,5323,5324,5325,5326,5329,5333,5334,5337,5338,5339,5340,5343,5344,5347,5348,5349,5350,5352,5353,5357,5358,5359,5360,5362,5363,5364,5365,5366,5367,5372,5376,5378,5379,5383,5389,5391,5393,5396,5397,5398,5399,5400,5404,5407,5408,5409,5414,5415,5416,5420,5428,5431,5440,5441,5443,5444,5445,5448,5452,5457,5470,5475,5505,5514,5518,5520,5521,5523,5529,5534,5538,5543,5544,5562,5563,5565,5566,5567,5568,5569,5570,5571,5573,5576,5577,5579,5580,5582,5583,5585,5587,5588,5590,5591,5592,5594,5595,5612,5613,5619,5620,5624,5625,5626,5647,5656,5658,5663,5664,5669,5673,5675,5685,5689,5691,5692,5694,5697,5704,5705,5708,5709,5710,5711,5712,5713,5714,5715,5717,5718,5724,5725,5728,5731,5734,5739,5740,5741,5744,5745,5746,5748,5754,5761,5775,5795,5797,5811,5837,5860,5862,5864,5866,5868,5880,5896,5902,5915,5933,5934,5989,5995,5996,6009,6032,6046,6055,6056,6060,6061,6083,6104,6106,6168,6187,6193,6195,6196,6201,6296,6299,6429,6430,6431,6442,6445,6448,6450,6455,6459,6460,6463,6465,6467,6468,6470,6471,6473,6474,6475,6476,6477,6478,6490,6491,6492,6493,6494,6495,6496,6499,6500,6502,6503,6516,6548,6557,6562,6564,6574,6575,6588,6605,6622,6626,6628,6631,6662,6664,6674,6680,6685,6690,6693,6694,6708,6722,6752,6753,6761,6763,6767,6777,6781,6810,6811,6817,6821,6824,6825,6827,6850,6852,6853,6889,6890,6891,6892,6893,6906,6948,6966,6972,6973,6977,6985,6998,7003,7017,7024,7056,7072,7081,7104,7105,7142,7143,7161,7229,7242,7265,7267,7270,7279,7293,7301,7304,7305,7308,7310,7314,7315,7316,7318,7319,7320,7321,7326,7327,7329,7330,7334,7336,7351,7355,7360,7377,7397,7398,7399,7400,7401,7418,7421,7423,7425,7427,7428,7436,7437,7444,7451,7469,7472,7474,7479,7498,7523,7526,7544,7545,7549,7552,7553,7575,7581,7590,7610,7611,7618,7644,7654,7661,7663,7664,7686,7726,7729,7742,7790,7800,7802,7817,7820,7821,7824,7826,7883,7890,7893,7895,7913,7924,7955,7957,7976,7984,7993,8076,8090,8116,8142,8159,8160,8161,8163,8164,8169,8182,8202,8203,8204,8205,8206,8207,8208,8230,8252,8293,8302,8367,8369,8370,8372,8373,8376,8413,8414,8418,8421,8449,8506,8524,8538,8594,8605,8609,8624,8632,8634,8649,8654,8656,8695,8715,8716,8734,8747,8753,8764,8765,8773,8793,8821,8823,8827,8844,8873,8881,8882,8883,9000,9002,9005,9008,9010,9011,9012,9013,9042,9044,9045,9046,9050,9057,9060,9088,9103,9110,9112,9113,9116,9117,9118,9131,9139,9141,9173,9179,9185,9188,9189,9190,9191,9192,9195,9196,9198,9205,9210,9213,9215,9225,9227,9231,9252,9253,9279,9296,9309,9316,9318,9329,9331,9335,9337,9338,9341,9351,9362,9365,9366,9368,9377,9378,9380,9389,9395,9397,9401,9418,9431,9436,9461,9464,9533,9535,9536,9539,9542,9543,9544,9545,9546,9549,9565,9610,9612,9619,9624,9625,9628,9630,9643,9645,9654,9655,9658,9661,9662,9664,9667,9680,9683,9684,9689,9705,9709,9724,9725,9726,9729,9731,9734,9735,9738,9762,9824,9890,9921,9965,9990,9992,9997,9999,10002,10009,10010,10012,10014,10016,10018,10020,10021,10022,10029,10036,10046,10057,10058,10059,10065,10071,10073,10076,10077,10079,10080,10081,10098,10103,10131,10141,10160,10162,10163,10181,10182,10186,10395,10448,10450,10453,10454,10502,10503,10626,10628,10641,10642,10669,10675,10692,10737,10738,10742,10762,10763,10765,10766,10767,10768,10770,10772,10774,10784,10785,10786,10788,10789,10790,10792,10793,10803,10804,10805,10806,10815,10817,10821,10824,10826,10834,10845,10846,10855,10856,10862,10865,10866,10879,10880,10883,10884,10885,10887,10888,10889,10920,10941,10942,10949,10951,10964,10965,10966,10970,10971,10975,10976,10982,10983,10997,11008,11011,11020,11034,11051,11052,11082,11097,11109,11145,11146,11147,11151,11152,11155,11163,11164,11165,11166,11167,11171,11174,11177,11180,11181,11182,11184,11195,11197,11198,11201,11202,11203,11205,11215,11216,11223,11232,11257,11265,11269,11282,11286,11289,11292,11296,11298,11299,11300,11301,11322,11323,11324,11329,11343,11346,11360,11372,11387,11410,11416,11430,11458,11461,11462,11463,11464,11465,11468,11469,11471,11477,11479,11482,11486,11491,11493,11494,11496,11499,11502,11503,11508,11516,11527,11547,11555,11573,11579,11580,11583,11593,11594,11599,11602,11606,11607,11616,11617,11620,11634,11636,11651,11656,11659,11665,11682,11684,11686,11690,11693,11695,11697,11701,11704,11711,11712,11713,11718,11719,11720,11724,11728,11737,11739,11748,11750,11761,11769,11770,11773,11774,11787,11788,11789,11796,11797,11798,11801,11827,11828,11832,11833,11834,11835,11836,11839,11843,11846,11849,11860,11867,11868,11874,11875,11883,11886,11888,11889,11890,11891,11892,11894,11896,11904,11906,11915,11920,11921,11923,11924,11925,11926,11936,11941,11942,11956,11958,11959,11960,11965,11966,11969,11974,11987,11988,11998,12005,12006,12008,12009,12011,12012,12016,12018,12019,12020,12021,12023,12095,12099,12105,12106,12111,12112,12113,12172,12173,12179,12182,12200,12201,12218,12219,12222,12223,12224,12226,12229,12231,12232,12234,12236,12237,12241,12242,12243,12245,12246,12247,12250,12252,12253,12254,12255,12258,12261,12263,12266,12300,12301,12311,12315,12319,12325,12327,12363,12368,12374,12379,12391,12395,12397,12401,12411,12413,12415,12417,12422,12425,12499,12501,12502,12509,12511,12514,12515,12516,12518,12529,12543,12577,12578,12581,12582,12583,12585,12586,12587,12588,12599,12604,12610,12648,12660,12664,12667,12669,12670,12672,12673,12675,12678,12680,12682,12685,12689,12693,12696,12697,12698,12700,12702,12870,12874,12875,12877,12878,12885,12891,12892,12894,12900,12901,12959,13355,13527,13630,13692,13800,13959,13964,13966,13975,13983,13996,13998,14004,14005,14006,14017,14038,14045,14054,14077,14081,14082,14085,14124,14139,14146,14147,14149,14164,14183,14187,14189,14206,14246,14253,14256,14273,14294,14321,14331,14345,14378,14433,14434,14439,14445,14481,14505,14511,14528,14530,14533,14542,14555,14556,14557,14558,14559,14560,14561,14565,14566,14567,14568,14570,14571,14572,14575,14579,14591,14592,14599,14603,14604,14615,14618,14619,14621,14624,14625,14626,14630,14631,14632,14633,14634,14635,14637,14642,14643,14644,14648,14655,14663,14669,14670,14671,14674,14675,14682,14684,14691,14692,14701,14705,14708,14717,14718,14720,14721,14723,14724,14725,14726,14727,14728,14729,14733,14746,14748,14751,14755,14756,14759,14762,14764,14765,14766,14767,14768,14769,14770,14771,14773,14775,14779,14785,14790,14791,14795,14799,14800,14803,14807,14808,14813,14817,14819,14820,14824,14826,14828,14832,14834,14835,14838,14840,14850,14851,14857,14859,14861,14865,14869,14874,14876,14878,14881,14883,14889,14892,14893,14894,14896,14898,14899,14900,14901,14902,14903,14904,14905,14906,14907,14908,14909,14910,14915,14916,14917,14918,14921,14924,14926,14928,14931,14932,14934,14935,14936,14938,14940,14941,14948,14964,14965,14967,14970,14972,14975,14976,14980,14987,14988,14993,14994,14995,14998,15001,15018,15021,15046,15048,15049,15058,15060,15070,15072,15078,15080,15082,15087,15090,15092,15094,15096,15106,15109,15120,15123,15132,15135,15144,15148,15169,15172,15186,15194,15195,15201,15202,15205,15212,15217,15218,15221,15227,15234,15239,15241,15242,15253,15254,15262,15266,15267,15268,15269,15270,15275,15286,15292,15294,15296,15298,15304,15309,15334,15395,15397,15424,15438,15453,15454,15457,15461,15469,15470,15485,15487,15493,15504,15507,15508,15511,15572,15604,15613,15698,15699,15743,15747,15749,15753,15755,15756,15781,15818,15832,15833,15853,15897,16013,16098,16100,16177,16180,16198,16232,16303,16314,16320,16321,16343,16346,16351,16352,16358,16363,16438,16450,16459,17115,17260,17328,17357,17359,17369,17370,17372,17373,17374,17376,17377,17398,17399,17401,17403,17404,17415,17416,17417,17419,17442,17443,17447,17455,17458,17460,17470,17471,17473,17475,17476,17482,17518,17522,17530,17536,17537,17664,17688,17793,17795,17826,17828,17925,17989,17993,18044,18045,18052,18110,18119,18127,18143,18190,18216,18235,18322,18324,18337,18348,18349,18350,18356,18362,18364,18368,18369,18371,18372,18373,18390,18395,18421,18423,18428,18429,18447,18448,18461,18464,18468,18474,18497,18508,18539,18564,18566,18575,18576,18579,18582,18595,18615,18616,18631,18640,18641,18672,18688,18693,18695,18703,18706,18708,18715,18728,18729,18745,18747,18786,18788,18802,18813,18830,18840,18845,18849,18853,18857,18859,18889,18913,18931,18962,18976,18982,18984,18993,19015,19023,19024,19025,19027,19062,19063,19065,19072,19077,19082,19122,19125,19128,19137,19140,19142,19147,19167,19190,19211,19229,19230,19236,19238,19239,19276,19278,19282,19315,19331,19345,19346,19347,19349,19356,19410,19411,19420,19422,19444,19463,19486,19507,19520,19529,19531,19540,19549,19561,19585,19588,19600,19617,19620,19632,19639,19643,19656,19660,19669,19676,19689,19692,19697,19709,19714,19724,19745,19746,19758,19760,19767,19769,19779,19803,19814,19827,19836,19838,19840,19841,19842,19877,19881,19912,19939,19943,19977,19978,19979,19980,19981,19984,19988,19990,19993,19995,19996,19998,19999,20007,20009,20010,20012,20013,20015,20017,20018,20021,20025,20035,20042,20070,20081,20115,20170,20184,20194,20206,20217,20222,20245,20465,20607,20608,20625,20652,20653,20675,20677,20679,20742,20900,20902,20914,20915,21159,21163,21166,21170,21171,21173,21183,21238,21239,21337,21343,21344,21387,21420,21424,21470,21476,21479,21574,21601,21739,21746,21754,21991,21992,21997,21998,21999,22001,22002,22003,22005,22006,22007,22008,22027,22044,22068,22073,22101,22128,22129,22133,22134,22139,22145,22156,22173,22188,22196,22200,22209,22216,22225,22255,22257,22258,22261,22270,22282,22283,22285,22304,22305,22307,22324,22325,22328,22334,22337,22338,22360,22387,22408,22421,22422,22423,22437,22438,22439,22449,22450,22458,22464,22495,22510,22536,22537,22540,22549,22554,22561,22563,22566,22567,22568,22574,22575,22576,22577,22615,22622,22625,22637,22654,22656,22671,22674,22681,22698,22743,22786,22812,22814,22816,22822,22837,22852,22854,22962,22984,22999,23006,23015,23022,23032,23050,23053,23068,23073,23118,23119,23120,23128,23134,23135,23138]]],["+",[27,27,[[1,1,1,0,1,[[67,1,1,0,1]]],[2,5,5,1,6,[[108,2,2,1,3],[114,3,3,3,6]]],[4,3,3,6,9,[[158,1,1,6,7],[163,1,1,7,8],[165,1,1,8,9]]],[5,1,1,9,10,[[199,1,1,9,10]]],[6,1,1,10,11,[[212,1,1,10,11]]],[9,1,1,11,12,[[288,1,1,11,12]]],[12,2,2,12,14,[[342,1,1,12,13],[348,1,1,13,14]]],[13,4,4,14,18,[[381,1,1,14,15],[388,1,1,15,16],[391,1,1,16,17],[401,1,1,17,18]]],[14,1,1,18,19,[[410,1,1,18,19]]],[17,2,2,19,21,[[455,1,1,19,20],[467,1,1,20,21]]],[18,3,3,21,24,[[485,1,1,21,22],[495,1,1,22,23],[501,1,1,23,24]]],[22,1,1,24,25,[[718,1,1,24,25]]],[23,2,2,25,27,[[749,1,1,25,26],[795,1,1,26,27]]]],[2018,3295,3313,3486,3505,3512,5100,5210,5279,6168,6557,8624,10450,10692,11508,11651,11724,11987,12224,13355,13630,14017,14139,14246,18447,19077,20217]]],["GOD",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5669]]],["God",[2309,2033,[[0,208,180,0,180,[[0,32,26,0,26],[1,14,13,26,39],[2,12,10,39,49],[3,1,1,49,50],[4,5,3,50,53],[5,7,7,53,60],[6,2,2,60,62],[7,3,2,62,64],[8,8,8,64,72],[16,9,9,72,81],[18,2,1,81,82],[19,6,5,82,87],[20,11,9,87,96],[21,5,5,96,101],[23,7,6,101,107],[24,1,1,107,108],[25,1,1,108,109],[26,2,2,109,111],[27,7,6,111,117],[29,7,6,117,123],[30,15,10,123,133],[31,5,4,133,137],[32,3,3,137,140],[34,8,8,140,148],[38,1,1,148,149],[39,1,1,149,150],[40,9,8,150,158],[41,2,2,158,160],[42,3,2,160,162],[43,1,1,162,163],[44,4,4,163,167],[45,3,3,167,170],[47,6,5,170,175],[49,5,5,175,180]]],[1,111,88,180,268,[[50,3,3,180,183],[51,5,3,183,186],[52,21,10,186,196],[53,7,4,196,200],[54,4,3,200,203],[55,3,2,203,205],[56,1,1,205,206],[57,6,6,206,212],[58,3,3,212,215],[59,7,7,215,222],[62,4,3,222,225],[63,1,1,225,226],[64,2,2,226,228],[65,1,1,228,229],[66,1,1,229,230],[67,11,9,230,239],[68,3,3,239,242],[69,9,9,242,251],[70,1,1,251,252],[72,2,2,252,254],[73,3,3,254,257],[78,3,2,257,259],[80,2,2,259,261],[81,4,3,261,264],[83,3,3,264,267],[84,1,1,267,268]]],[2,47,43,268,311,[[91,1,1,268,269],[93,1,1,269,270],[100,2,2,270,272],[107,4,4,272,276],[108,9,9,276,285],[109,2,2,285,287],[110,10,7,287,294],[111,2,2,294,296],[112,5,5,296,301],[113,2,2,301,303],[114,4,3,303,306],[115,5,5,306,311]]],[3,23,20,311,331,[[122,1,1,311,312],[126,3,2,312,314],[131,4,2,314,316],[132,2,2,316,318],[137,1,1,318,319],[138,6,6,319,325],[139,3,3,325,328],[140,1,1,328,329],[141,1,1,329,330],[143,1,1,330,331]]],[4,334,284,331,615,[[153,13,12,331,343],[154,7,6,343,349],[155,5,5,349,354],[156,24,21,354,375],[157,18,14,375,389],[158,14,13,389,402],[159,16,13,402,415],[160,10,10,415,425],[161,8,8,425,433],[162,10,7,433,440],[163,10,9,440,449],[164,20,16,449,465],[165,10,7,465,472],[166,10,8,472,480],[167,11,11,480,491],[168,19,15,491,506],[169,9,7,506,513],[170,9,8,513,521],[171,8,7,521,528],[172,7,7,528,535],[173,5,4,535,539],[174,1,1,539,540],[175,10,6,540,546],[176,5,5,546,551],[177,5,4,551,555],[178,15,13,555,568],[179,9,7,568,575],[180,12,11,575,586],[181,9,8,586,594],[182,15,11,594,605],[183,7,7,605,612],[184,1,1,612,613],[185,2,2,613,615]]],[5,64,58,615,673,[[187,5,5,615,620],[188,2,1,620,621],[189,2,2,621,623],[190,4,3,623,626],[193,3,3,626,629],[194,2,2,629,631],[195,5,5,631,636],[196,3,3,636,639],[199,1,1,639,640],[200,4,4,640,644],[204,2,2,644,646],[208,9,9,646,655],[209,13,9,655,664],[210,9,9,664,673]]],[6,47,45,673,718,[[211,1,1,673,674],[212,1,1,674,675],[213,2,2,675,677],[214,2,2,677,679],[215,2,2,679,681],[216,7,7,681,688],[217,1,1,688,689],[218,2,2,689,691],[219,6,6,691,697],[220,1,1,697,698],[221,3,3,698,701],[223,8,6,701,707],[225,1,1,707,708],[226,2,2,708,710],[228,3,3,710,713],[230,3,3,713,716],[231,2,2,716,718]]],[7,3,2,718,720,[[232,2,1,718,719],[233,1,1,719,720]]],[8,89,82,720,802,[[236,1,1,720,721],[237,3,3,721,724],[238,3,2,724,726],[239,9,9,726,735],[240,11,6,735,741],[241,3,3,741,744],[242,1,1,744,745],[244,6,6,745,751],[245,8,8,751,759],[246,1,1,759,760],[247,4,4,760,764],[248,1,1,764,765],[249,7,6,765,771],[250,3,3,771,774],[251,3,3,774,777],[252,4,4,777,781],[253,1,1,781,782],[254,2,2,782,784],[255,1,1,784,785],[257,3,3,785,788],[258,5,5,788,793],[260,4,4,793,797],[261,1,1,797,798],[263,1,1,798,799],[264,1,1,799,800],[265,2,2,800,802]]],[9,52,47,802,849,[[268,1,1,802,803],[269,2,2,803,805],[271,1,1,805,806],[272,8,6,806,812],[273,8,8,812,820],[275,1,1,820,821],[276,1,1,821,822],[278,2,2,822,824],[280,7,6,824,830],[281,5,4,830,834],[282,1,1,834,835],[284,1,1,835,836],[285,2,2,836,838],[287,1,1,838,839],[288,5,5,839,844],[289,3,2,844,846],[290,3,3,846,849]]],[10,88,77,849,926,[[291,5,5,849,854],[292,2,2,854,856],[293,4,4,856,860],[294,1,1,860,861],[295,3,3,861,864],[298,14,13,864,877],[299,1,1,877,878],[300,2,2,878,880],[301,4,4,880,884],[302,2,1,884,885],[303,17,13,885,898],[304,2,2,898,900],[305,3,3,900,903],[306,3,3,903,906],[307,7,7,906,913],[308,9,6,913,919],[309,3,3,919,922],[310,3,1,922,923],[311,2,2,923,925],[312,1,1,925,926]]],[11,77,68,926,994,[[313,9,8,926,934],[314,1,1,934,935],[316,11,9,935,944],[317,7,6,944,950],[318,5,5,950,955],[319,4,4,955,959],[320,5,5,959,964],[321,1,1,964,965],[322,1,1,965,966],[325,1,1,966,967],[326,1,1,967,968],[328,1,1,968,969],[329,9,8,969,977],[330,3,3,977,980],[331,10,6,980,986],[332,1,1,986,987],[333,2,2,987,989],[334,2,2,989,991],[335,3,3,991,994]]],[12,112,95,994,1089,[[341,2,1,994,995],[342,4,3,995,998],[343,2,2,998,1000],[346,4,4,1000,1004],[348,1,1,1004,1005],[349,3,3,1005,1008],[350,10,9,1008,1017],[351,6,5,1017,1022],[352,9,8,1022,1030],[353,8,7,1030,1037],[354,12,10,1037,1047],[356,1,1,1047,1048],[358,6,5,1048,1053],[359,10,8,1053,1061],[360,3,3,1061,1064],[361,2,2,1064,1066],[362,3,2,1066,1068],[363,3,3,1068,1071],[365,10,8,1071,1079],[366,13,10,1079,1089]]],[13,179,153,1089,1242,[[367,7,7,1089,1096],[368,4,3,1096,1099],[369,1,1,1099,1100],[370,2,2,1100,1102],[371,2,2,1102,1104],[372,13,11,1104,1115],[373,2,2,1115,1117],[374,1,1,1117,1118],[375,4,2,1118,1120],[376,1,1,1120,1121],[377,3,2,1121,1123],[379,8,7,1123,1130],[380,6,4,1130,1134],[381,7,7,1134,1141],[382,1,1,1141,1142],[383,1,1,1142,1143],[384,3,3,1143,1146],[385,3,3,1146,1149],[386,9,8,1149,1157],[387,2,2,1157,1159],[388,1,1,1159,1160],[389,2,2,1160,1162],[390,10,9,1162,1171],[391,7,5,1171,1176],[392,6,4,1176,1180],[393,1,1,1180,1181],[394,7,6,1181,1187],[395,5,5,1187,1192],[396,11,10,1192,1202],[397,6,5,1202,1207],[398,10,9,1207,1216],[399,9,6,1216,1222],[400,10,8,1222,1230],[401,4,4,1230,1234],[402,10,8,1234,1242]]],[14,53,43,1242,1285,[[403,6,4,1242,1246],[404,1,1,1246,1247],[405,4,3,1247,1250],[406,4,3,1250,1253],[408,3,2,1253,1255],[409,5,4,1255,1259],[410,11,11,1259,1270],[411,11,8,1270,1278],[412,8,7,1278,1285]]],[15,69,64,1285,1349,[[413,2,2,1285,1287],[414,5,5,1287,1292],[416,4,4,1292,1296],[417,4,4,1296,1300],[418,4,4,1300,1304],[419,2,2,1304,1306],[420,5,5,1306,1311],[421,7,6,1311,1317],[422,11,9,1317,1326],[423,3,3,1326,1329],[424,6,6,1329,1335],[425,16,14,1335,1349]]],[17,15,15,1349,1364,[[436,7,7,1349,1356],[437,4,4,1356,1360],[440,1,1,1360,1361],[463,1,1,1361,1362],[469,1,1,1362,1363],[473,1,1,1363,1364]]],[18,350,312,1364,1676,[[480,2,2,1364,1366],[481,1,1,1366,1367],[482,2,2,1367,1369],[484,5,5,1369,1374],[486,1,1,1374,1375],[487,2,2,1375,1377],[490,1,1,1377,1378],[491,3,3,1378,1381],[495,5,5,1381,1386],[497,3,3,1386,1389],[499,1,1,1389,1390],[502,3,3,1390,1393],[504,1,1,1393,1394],[507,2,2,1394,1396],[508,1,1,1396,1397],[510,1,1,1397,1398],[512,2,2,1398,1400],[513,2,2,1400,1402],[514,1,1,1402,1403],[515,2,2,1403,1405],[517,4,4,1405,1409],[518,1,1,1409,1410],[519,10,8,1410,1418],[520,7,4,1418,1422],[521,5,5,1422,1427],[522,4,3,1427,1430],[523,7,6,1430,1436],[524,8,6,1436,1442],[525,8,6,1442,1448],[526,2,2,1448,1450],[527,9,8,1450,1458],[528,6,4,1458,1462],[529,3,2,1462,1464],[530,7,5,1464,1469],[531,4,4,1469,1473],[532,5,5,1473,1478],[533,9,8,1478,1486],[534,6,6,1486,1492],[535,2,2,1492,1494],[536,9,6,1494,1500],[537,5,4,1500,1504],[538,3,3,1504,1507],[539,7,5,1507,1512],[540,2,2,1512,1514],[541,3,3,1514,1517],[542,3,3,1517,1520],[543,8,8,1520,1528],[544,6,5,1528,1533],[545,26,22,1533,1555],[546,9,9,1555,1564],[547,3,3,1564,1567],[548,9,7,1567,1574],[549,3,2,1574,1576],[550,3,3,1576,1579],[551,4,4,1579,1583],[552,3,3,1583,1586],[553,4,4,1586,1590],[554,6,4,1590,1594],[555,8,8,1594,1602],[556,3,3,1602,1605],[557,5,5,1605,1610],[558,4,3,1610,1613],[559,2,2,1613,1615],[560,3,3,1615,1618],[561,7,6,1618,1624],[562,1,1,1624,1625],[563,4,4,1625,1629],[564,1,1,1629,1630],[565,1,1,1630,1631],[566,1,1,1631,1632],[567,1,1,1632,1633],[568,1,1,1633,1634],[569,1,1,1634,1635],[571,3,3,1635,1638],[572,1,1,1638,1639],[575,1,1,1639,1640],[576,4,3,1640,1643],[577,1,1,1643,1644],[581,2,2,1644,1646],[582,1,1,1646,1647],[583,2,2,1647,1649],[585,6,5,1649,1654],[586,2,2,1654,1656],[590,1,1,1656,1657],[592,2,2,1657,1659],[593,1,1,1659,1660],[595,1,1,1660,1661],[596,1,1,1661,1662],[599,1,1,1662,1663],[600,1,1,1663,1664],[612,1,1,1664,1665],[613,1,1,1665,1666],[620,1,1,1666,1667],[621,2,2,1667,1669],[622,1,1,1669,1670],[623,3,3,1670,1673],[624,3,3,1673,1676]]],[19,5,5,1676,1681,[[629,2,2,1676,1678],[630,1,1,1678,1679],[652,1,1,1679,1680],[657,1,1,1680,1681]]],[20,40,36,1681,1717,[[659,1,1,1681,1682],[660,2,2,1682,1684],[661,8,7,1684,1691],[663,10,8,1691,1699],[664,2,1,1699,1700],[665,5,5,1700,1705],[666,5,5,1705,1710],[667,2,2,1710,1712],[669,2,2,1712,1714],[670,3,3,1714,1717]]],[22,82,76,1717,1793,[[679,1,1,1717,1718],[680,1,1,1718,1719],[685,2,2,1719,1721],[686,2,2,1721,1723],[691,1,1,1723,1724],[695,2,2,1724,1726],[699,2,2,1726,1728],[702,1,1,1728,1729],[703,2,2,1729,1731],[704,1,1,1731,1732],[706,1,1,1732,1733],[707,1,1,1733,1734],[708,1,1,1734,1735],[713,3,2,1735,1737],[714,1,1,1737,1738],[715,9,6,1738,1744],[716,1,1,1744,1745],[718,5,5,1745,1750],[719,3,3,1750,1753],[721,1,1,1753,1754],[722,1,1,1754,1755],[723,6,6,1755,1761],[724,1,1,1761,1762],[726,3,3,1762,1765],[727,2,2,1765,1767],[728,1,1,1767,1768],[729,3,3,1768,1771],[730,3,3,1771,1774],[731,1,1,1774,1775],[732,2,2,1775,1777],[733,2,2,1777,1779],[735,1,1,1779,1780],[736,2,1,1780,1781],[737,2,2,1781,1783],[738,2,2,1783,1785],[739,3,3,1785,1788],[740,2,2,1788,1790],[742,1,1,1790,1791],[743,2,1,1791,1792],[744,1,1,1792,1793]]],[23,111,100,1793,1893,[[746,2,2,1793,1795],[747,6,5,1795,1800],[749,4,4,1800,1804],[751,4,4,1804,1808],[752,1,1,1808,1809],[753,1,1,1809,1810],[754,2,1,1810,1811],[755,2,2,1811,1813],[757,2,2,1813,1815],[758,1,1,1815,1816],[759,1,1,1816,1817],[760,2,2,1817,1819],[763,2,2,1819,1821],[765,1,1,1821,1822],[766,1,1,1822,1823],[767,5,3,1823,1826],[768,2,2,1826,1828],[769,2,2,1828,1830],[770,2,2,1830,1832],[771,2,2,1832,1834],[772,2,2,1834,1836],[773,4,4,1836,1840],[774,3,3,1840,1843],[775,5,5,1843,1848],[776,5,5,1848,1853],[777,1,1,1853,1854],[778,2,2,1854,1856],[779,6,5,1856,1861],[781,2,2,1861,1863],[782,2,1,1863,1864],[783,1,1,1864,1865],[784,1,1,1865,1866],[786,14,11,1866,1877],[787,4,3,1877,1880],[788,5,4,1880,1884],[789,1,1,1884,1885],[790,1,1,1885,1886],[792,1,1,1886,1887],[794,4,4,1887,1891],[795,2,2,1891,1893]]],[25,36,34,1893,1927,[[802,1,1,1893,1894],[809,2,2,1894,1896],[810,1,1,1896,1897],[811,2,2,1897,1899],[812,3,3,1899,1902],[815,1,1,1902,1903],[821,4,4,1903,1907],[829,8,7,1907,1914],[832,3,2,1914,1916],[835,3,3,1916,1919],[837,1,1,1919,1920],[838,2,2,1920,1922],[840,2,2,1922,1924],[841,1,1,1924,1925],[844,1,1,1925,1926],[845,1,1,1926,1927]]],[26,19,18,1927,1945,[[850,3,3,1927,1930],[858,13,12,1930,1942],[859,1,1,1942,1943],[860,2,2,1943,1945]]],[27,23,21,1945,1966,[[862,1,1,1945,1946],[863,1,1,1946,1947],[864,1,1,1947,1948],[865,3,3,1948,1951],[866,1,1,1951,1952],[867,1,1,1952,1953],[868,1,1,1953,1954],[869,2,2,1954,1956],[870,4,3,1956,1959],[873,5,4,1959,1963],[874,2,2,1963,1965],[875,1,1,1965,1966]]],[28,11,10,1966,1976,[[876,4,3,1966,1969],[877,6,6,1969,1975],[878,1,1,1975,1976]]],[29,11,11,1976,1987,[[881,1,1,1976,1977],[882,3,3,1977,1980],[883,4,4,1980,1984],[884,2,2,1984,1986],[887,1,1,1986,1987]]],[31,14,12,1987,1999,[[889,3,2,1987,1989],[890,2,2,1989,1991],[891,5,4,1991,1995],[892,4,4,1995,1999]]],[32,10,9,1999,2008,[[895,1,1,1999,2000],[896,2,2,2000,2002],[897,1,1,2002,2003],[898,2,2,2003,2005],[899,4,3,2005,2008]]],[34,2,2,2008,2010,[[903,1,1,2008,2009],[905,1,1,2009,2010]]],[35,4,4,2010,2014,[[907,2,2,2010,2012],[908,2,2,2012,2014]]],[36,3,2,2014,2016,[[909,3,2,2014,2016]]],[37,11,11,2016,2027,[[916,1,1,2016,2017],[918,2,2,2017,2019],[919,2,2,2019,2021],[920,1,1,2021,2022],[921,1,1,2022,2023],[922,2,2,2023,2025],[923,1,1,2025,2026],[924,1,1,2026,2027]]],[38,6,6,2027,2033,[[926,2,2,2027,2029],[927,4,4,2029,2033]]]],[0,1,2,3,4,5,6,7,8,9,10,11,13,15,16,17,19,20,21,23,24,25,26,27,28,30,32,33,34,35,37,38,39,45,46,48,49,51,52,56,58,60,63,64,68,69,76,77,78,104,106,127,129,139,141,146,148,149,150,159,168,175,184,198,206,211,213,217,221,222,231,232,400,404,405,406,412,415,416,419,420,486,498,501,506,508,512,515,517,519,525,530,532,533,535,536,548,550,555,556,559,594,598,603,618,633,639,669,716,747,755,777,785,786,790,793,794,836,847,848,850,852,853,878,880,882,884,889,897,902,915,923,926,929,937,956,958,965,970,971,1012,1016,1018,1020,1021,1022,1024,1026,1158,1180,1211,1220,1223,1227,1233,1234,1246,1247,1270,1280,1313,1319,1340,1363,1365,1366,1367,1387,1388,1389,1460,1462,1466,1471,1472,1523,1525,1526,1530,1531,1549,1552,1553,1577,1578,1579,1580,1583,1585,1590,1591,1592,1593,1594,1595,1597,1606,1617,1621,1628,1633,1635,1640,1657,1662,1701,1720,1729,1735,1736,1737,1738,1743,1755,1772,1780,1784,1785,1793,1794,1802,1803,1884,1885,1886,1908,1922,1946,1959,1992,2000,2003,2004,2011,2014,2015,2018,2020,2022,2029,2043,2045,2052,2053,2056,2058,2061,2063,2070,2071,2072,2090,2163,2169,2187,2188,2190,2381,2382,2423,2438,2449,2454,2465,2519,2520,2522,2562,2775,2817,3041,3042,3253,3255,3272,3281,3283,3284,3285,3291,3293,3306,3312,3315,3317,3325,3342,3351,3352,3353,3357,3362,3366,3367,3394,3402,3416,3424,3430,3442,3445,3461,3468,3486,3507,3524,3525,3536,3537,3568,3569,3830,3997,3998,4193,4194,4203,4216,4345,4384,4385,4387,4393,4395,4413,4420,4437,4443,4448,4484,4570,4898,4902,4903,4911,4912,4913,4917,4918,4922,4923,4924,4933,4945,4967,4968,4971,4974,4975,4978,4993,4995,4996,4997,5005,5006,5007,5008,5009,5011,5014,5023,5025,5027,5028,5029,5033,5034,5035,5036,5037,5038,5039,5043,5044,5055,5059,5062,5064,5065,5067,5068,5069,5077,5078,5079,5080,5085,5086,5087,5088,5089,5090,5091,5096,5099,5101,5102,5103,5106,5110,5111,5112,5113,5117,5120,5123,5127,5129,5130,5131,5132,5133,5134,5136,5139,5142,5143,5144,5147,5148,5151,5155,5156,5157,5160,5161,5162,5163,5164,5167,5173,5180,5195,5198,5200,5203,5206,5207,5208,5209,5220,5221,5230,5233,5235,5236,5237,5239,5241,5244,5245,5247,5249,5250,5251,5252,5255,5258,5260,5261,5267,5268,5269,5271,5275,5276,5277,5282,5284,5288,5290,5291,5292,5311,5313,5314,5315,5316,5319,5323,5324,5325,5326,5329,5333,5334,5337,5338,5339,5340,5343,5344,5347,5348,5349,5350,5352,5353,5357,5358,5359,5360,5362,5363,5364,5365,5366,5372,5376,5378,5379,5383,5389,5391,5393,5396,5397,5398,5399,5400,5407,5408,5409,5414,5415,5416,5420,5428,5431,5440,5441,5443,5444,5445,5448,5452,5457,5470,5475,5505,5514,5518,5520,5521,5523,5529,5534,5538,5543,5544,5562,5563,5565,5566,5567,5568,5569,5570,5571,5573,5576,5577,5579,5580,5582,5583,5585,5587,5588,5590,5591,5592,5594,5595,5612,5613,5619,5620,5624,5626,5656,5658,5663,5664,5673,5685,5689,5691,5692,5694,5697,5704,5708,5709,5710,5711,5712,5713,5714,5715,5717,5718,5724,5728,5731,5734,5739,5740,5741,5745,5754,5761,5811,5837,5860,5862,5864,5866,5868,5880,5896,5902,5915,5933,5934,5989,5995,5996,6009,6032,6046,6055,6056,6060,6061,6083,6104,6106,6187,6193,6195,6196,6201,6296,6299,6429,6430,6431,6442,6445,6450,6455,6459,6460,6463,6465,6468,6470,6471,6473,6474,6475,6476,6477,6478,6493,6494,6495,6499,6500,6502,6503,6516,6557,6575,6588,6605,6622,6626,6628,6662,6664,6674,6680,6690,6693,6694,6708,6722,6753,6761,6763,6767,6777,6810,6811,6821,6850,6852,6853,6889,6890,6891,6892,6893,6906,6948,6966,6977,6998,7003,7024,7056,7072,7081,7104,7105,7143,7161,7229,7242,7267,7270,7279,7293,7301,7304,7308,7310,7314,7315,7316,7318,7319,7320,7321,7326,7327,7329,7330,7334,7336,7351,7360,7397,7398,7399,7400,7401,7418,7421,7423,7425,7427,7428,7436,7437,7444,7451,7469,7472,7474,7479,7498,7526,7544,7545,7549,7552,7553,7575,7581,7590,7610,7611,7618,7644,7654,7663,7664,7686,7726,7729,7742,7790,7800,7802,7817,7820,7821,7824,7826,7883,7890,7893,7895,7913,7957,7976,7984,7993,8076,8090,8116,8142,8159,8160,8161,8163,8164,8169,8182,8202,8203,8204,8205,8206,8207,8208,8230,8252,8293,8302,8367,8369,8370,8372,8373,8376,8413,8414,8418,8421,8449,8506,8524,8538,8594,8605,8609,8632,8634,8649,8654,8656,8695,8715,8716,8734,8747,8753,8764,8765,8773,8793,8821,8823,8827,8844,8873,8881,8882,8883,9000,9002,9005,9008,9010,9011,9012,9013,9042,9044,9045,9046,9050,9060,9088,9103,9112,9117,9131,9139,9173,9185,9188,9189,9190,9191,9192,9195,9196,9198,9205,9210,9213,9215,9225,9231,9252,9253,9279,9296,9309,9316,9318,9329,9331,9335,9337,9338,9341,9351,9362,9365,9377,9378,9380,9395,9397,9401,9436,9461,9464,9533,9536,9539,9542,9543,9544,9545,9546,9549,9565,9610,9612,9619,9624,9625,9628,9630,9643,9645,9654,9655,9658,9661,9662,9667,9680,9683,9684,9689,9705,9709,9724,9725,9726,9729,9731,9734,9735,9738,9762,9824,9890,9921,9965,9990,9992,9997,9999,10002,10009,10010,10022,10029,10036,10046,10065,10071,10076,10077,10080,10081,10103,10131,10141,10160,10163,10181,10182,10186,10395,10448,10453,10454,10502,10503,10626,10628,10641,10642,10675,10737,10738,10742,10762,10763,10765,10766,10767,10768,10770,10772,10774,10784,10785,10788,10789,10790,10792,10793,10803,10804,10805,10806,10815,10817,10821,10824,10826,10834,10855,10856,10862,10865,10866,10879,10880,10883,10884,10885,10887,10888,10889,10920,10941,10942,10949,10951,10964,10965,10966,10970,10971,10975,10976,10982,10983,10997,11008,11011,11020,11034,11051,11052,11082,11097,11109,11145,11146,11147,11151,11152,11155,11163,11164,11165,11166,11167,11171,11174,11177,11180,11181,11182,11184,11195,11197,11198,11201,11202,11203,11205,11215,11216,11223,11232,11257,11265,11269,11282,11286,11289,11292,11296,11298,11299,11300,11301,11322,11323,11324,11329,11346,11360,11372,11387,11410,11416,11430,11458,11463,11464,11465,11468,11469,11471,11477,11479,11482,11486,11491,11493,11494,11496,11499,11502,11503,11516,11527,11547,11555,11573,11579,11580,11583,11593,11594,11599,11606,11607,11616,11617,11620,11634,11636,11656,11659,11665,11682,11684,11686,11690,11693,11695,11697,11701,11704,11711,11712,11713,11720,11728,11737,11739,11748,11750,11761,11769,11770,11773,11774,11788,11789,11796,11797,11798,11801,11827,11828,11832,11833,11834,11835,11836,11839,11843,11846,11849,11860,11867,11868,11874,11875,11883,11886,11889,11890,11891,11892,11894,11904,11906,11915,11920,11921,11924,11925,11926,11936,11941,11942,11956,11959,11960,11965,11966,11969,11974,11987,11988,11998,12005,12006,12008,12009,12011,12012,12016,12018,12019,12020,12021,12095,12099,12105,12106,12111,12112,12113,12172,12173,12179,12182,12200,12201,12218,12219,12222,12223,12226,12229,12231,12232,12234,12236,12237,12241,12242,12243,12245,12246,12247,12250,12252,12253,12254,12255,12258,12261,12263,12266,12300,12301,12311,12315,12319,12325,12327,12363,12368,12374,12379,12391,12395,12397,12401,12411,12413,12415,12417,12422,12425,12499,12501,12502,12509,12511,12514,12515,12516,12518,12529,12543,12577,12578,12581,12582,12583,12585,12586,12587,12588,12599,12604,12610,12648,12660,12664,12667,12669,12670,12672,12673,12675,12678,12680,12682,12685,12689,12693,12696,12697,12698,12700,12702,12870,12874,12875,12877,12878,12885,12891,12892,12894,12900,12901,12959,13527,13692,13800,13959,13964,13966,13975,13983,13996,13998,14004,14005,14006,14038,14045,14054,14077,14081,14082,14085,14124,14146,14147,14149,14164,14183,14187,14189,14206,14253,14256,14273,14294,14321,14331,14345,14378,14433,14434,14439,14445,14481,14505,14511,14528,14530,14533,14542,14555,14556,14557,14558,14559,14560,14561,14565,14566,14567,14568,14570,14571,14572,14575,14579,14591,14592,14599,14603,14604,14615,14618,14619,14621,14624,14625,14626,14630,14631,14632,14633,14634,14635,14637,14642,14643,14644,14648,14655,14663,14669,14670,14671,14674,14675,14682,14684,14691,14692,14701,14705,14708,14717,14718,14720,14721,14723,14724,14725,14726,14727,14728,14729,14733,14746,14748,14751,14755,14756,14759,14762,14764,14765,14766,14767,14768,14769,14770,14771,14773,14775,14779,14785,14790,14791,14795,14799,14800,14803,14807,14808,14813,14817,14819,14820,14824,14826,14828,14832,14834,14835,14838,14840,14850,14851,14857,14859,14861,14865,14869,14874,14876,14878,14881,14883,14889,14892,14893,14894,14896,14898,14899,14900,14901,14902,14903,14904,14905,14906,14907,14908,14909,14910,14915,14916,14917,14918,14921,14924,14926,14928,14931,14932,14934,14935,14936,14938,14940,14941,14948,14964,14965,14967,14970,14972,14975,14976,14980,14987,14988,14993,14994,14995,14998,15001,15018,15021,15046,15048,15049,15058,15060,15070,15072,15078,15080,15082,15087,15090,15092,15094,15096,15106,15109,15120,15123,15132,15135,15144,15148,15169,15172,15186,15194,15195,15201,15202,15205,15212,15217,15218,15221,15227,15234,15241,15242,15253,15254,15262,15266,15267,15268,15269,15270,15275,15286,15294,15296,15298,15304,15309,15334,15395,15397,15424,15438,15453,15454,15461,15493,15504,15507,15508,15511,15572,15604,15613,15698,15699,15743,15747,15749,15753,15755,15756,15781,15818,15832,15833,15853,15897,16013,16098,16100,16177,16198,16303,16314,16320,16321,16343,16346,16351,16352,16358,16363,16438,16450,16459,17115,17260,17328,17357,17359,17369,17370,17372,17373,17374,17376,17377,17398,17399,17401,17403,17404,17415,17416,17417,17419,17442,17443,17447,17455,17458,17460,17470,17471,17473,17475,17476,17482,17518,17522,17530,17536,17537,17664,17688,17793,17795,17826,17828,17925,17989,17993,18045,18052,18110,18119,18127,18143,18190,18216,18235,18322,18324,18337,18356,18362,18368,18369,18372,18373,18395,18421,18423,18428,18429,18448,18461,18464,18468,18508,18539,18564,18566,18575,18576,18579,18582,18595,18615,18616,18631,18640,18641,18672,18688,18693,18695,18703,18706,18708,18715,18728,18729,18745,18747,18786,18788,18802,18813,18830,18840,18845,18849,18853,18857,18859,18889,18913,18931,18982,18984,19015,19023,19024,19025,19027,19062,19063,19072,19082,19122,19140,19142,19147,19167,19190,19211,19229,19230,19278,19282,19315,19331,19345,19346,19410,19422,19444,19463,19486,19507,19520,19529,19531,19549,19561,19585,19588,19600,19617,19620,19632,19639,19643,19656,19660,19669,19676,19689,19692,19697,19709,19714,19724,19745,19746,19758,19767,19769,19779,19803,19814,19827,19836,19840,19841,19842,19877,19881,19912,19939,19943,19977,19978,19979,19980,19981,19984,19988,19990,19993,19995,19996,19998,19999,20007,20012,20017,20021,20035,20042,20070,20081,20170,20184,20194,20206,20222,20245,20465,20607,20608,20625,20652,20653,20675,20677,20679,20742,20900,20902,20914,20915,21159,21163,21166,21170,21171,21173,21183,21238,21239,21337,21343,21344,21387,21420,21424,21470,21476,21479,21574,21601,21739,21746,21754,21991,21992,21997,21998,21999,22001,22002,22003,22005,22006,22007,22008,22027,22068,22073,22101,22128,22133,22134,22139,22145,22156,22173,22188,22196,22200,22209,22216,22225,22255,22257,22258,22261,22270,22282,22283,22304,22305,22307,22324,22325,22328,22334,22337,22338,22360,22408,22421,22422,22423,22437,22438,22439,22450,22458,22464,22510,22537,22540,22549,22554,22563,22566,22567,22568,22574,22575,22576,22577,22615,22622,22625,22637,22654,22656,22671,22674,22681,22743,22786,22812,22814,22822,22837,22852,22854,22962,22984,22999,23006,23015,23022,23032,23050,23053,23068,23073,23119,23120,23128,23134,23135,23138]]],["God's",[7,7,[[0,3,3,0,3,[[27,1,1,0,1],[29,1,1,1,2],[31,1,1,2,3]]],[3,1,1,3,4,[[138,1,1,3,4]]],[4,1,1,4,5,[[153,1,1,4,5]]],[13,1,1,5,6,[[386,1,1,5,6]]],[15,1,1,6,7,[[422,1,1,6,7]]]],[795,832,930,4397,4909,11602,12578]]],["Gods",[2,1,[[8,2,1,0,1,[[239,2,1,0,1]]]],[7305]]],["exceeding",[1,1,[[31,1,1,0,1,[[891,1,1,0,1]]]],[22561]]],["god",[30,26,[[1,2,2,0,2,[[56,1,1,0,1],[71,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[6,8,6,3,9,[[216,1,1,3,4],[218,1,1,4,5],[219,1,1,5,6],[221,1,1,6,7],[226,4,2,7,9]]],[8,1,1,9,10,[[240,1,1,9,10]]],[10,3,2,10,12,[[301,2,1,10,11],[308,1,1,11,12]]],[11,5,5,12,17,[[313,4,4,12,16],[331,1,1,16,17]]],[13,1,1,17,18,[[398,1,1,17,18]]],[22,1,1,18,19,[[715,1,1,18,19]]],[26,2,1,19,20,[[850,2,1,19,20]]],[27,1,1,20,21,[[874,1,1,20,21]]],[29,3,3,21,24,[[880,1,1,21,22],[883,1,1,22,23],[886,1,1,23,24]]],[31,1,1,24,25,[[889,1,1,24,25]]],[32,1,1,25,26,[[896,1,1,25,26]]]],[1686,2133,5797,6685,6752,6781,6853,6972,6973,7326,9141,9368,9535,9536,9539,9549,10098,11896,18390,21739,22270,22387,22449,22495,22536,22625]]],["goddess",[2,2,[[10,2,2,0,2,[[301,2,2,0,2]]]],[9113,9141]]],["godly",[1,1,[[38,1,1,0,1,[[926,1,1,0,1]]]],[23118]]],["gods",[211,188,[[0,5,5,0,5,[[2,1,1,0,1],[30,2,2,1,3],[34,2,2,3,5]]],[1,20,17,5,22,[[61,1,1,5,6],[67,1,1,6,7],[69,3,2,7,9],[71,1,1,9,10],[72,4,4,10,14],[81,5,5,14,19],[83,5,3,19,22]]],[2,1,1,22,23,[[108,1,1,22,23]]],[3,3,2,23,25,[[141,2,1,23,24],[149,1,1,24,25]]],[4,34,31,25,56,[[156,1,1,25,26],[157,1,1,26,27],[158,1,1,27,28],[159,3,3,28,31],[160,1,1,31,32],[162,1,1,32,33],[163,2,2,33,35],[164,6,4,35,39],[165,3,3,39,42],[169,1,1,42,43],[170,1,1,43,44],[172,1,1,44,45],[180,3,3,45,48],[181,3,2,48,50],[182,1,1,50,51],[183,3,3,51,54],[184,2,2,54,56]]],[5,11,9,56,65,[[208,2,1,56,57],[209,2,2,57,59],[210,7,6,59,65]]],[6,17,13,65,78,[[212,4,4,65,69],[213,1,1,69,70],[215,1,1,70,71],[216,1,1,71,72],[220,8,4,72,76],[227,1,1,76,77],[228,1,1,77,78]]],[7,1,1,78,79,[[232,1,1,78,79]]],[8,6,6,79,85,[[241,1,1,79,80],[242,1,1,80,81],[243,1,1,81,82],[252,1,1,82,83],[261,1,1,83,84],[263,1,1,84,85]]],[9,1,1,85,86,[[273,1,1,85,86]]],[10,14,13,86,99,[[299,2,2,86,88],[301,4,4,88,92],[302,1,1,92,93],[304,1,1,93,94],[308,2,2,94,96],[309,1,1,96,97],[310,3,2,97,99]]],[11,16,14,99,113,[[317,1,1,99,100],[329,7,7,100,107],[330,4,3,107,110],[331,3,2,110,112],[334,1,1,112,113]]],[12,5,5,113,118,[[342,1,1,113,114],[347,1,1,114,115],[351,1,1,115,116],[353,2,2,116,118]]],[13,18,16,118,134,[[368,1,1,118,119],[373,2,2,119,121],[379,2,2,121,123],[391,4,3,123,126],[394,3,2,126,128],[398,4,4,128,132],[399,1,1,132,133],[400,1,1,133,134]]],[14,1,1,134,135,[[403,1,1,134,135]]],[18,11,11,135,146,[[559,2,2,135,137],[563,1,1,137,138],[572,1,1,138,139],[573,2,2,139,141],[574,2,2,141,143],[612,1,1,143,144],[613,1,1,144,145],[615,1,1,145,146]]],[22,10,8,146,154,[[699,1,1,146,147],[714,4,3,147,150],[715,3,2,150,152],[719,1,1,152,153],[720,1,1,153,154]]],[23,32,29,154,183,[[745,1,1,154,155],[746,4,2,155,157],[749,2,2,157,159],[751,3,3,159,162],[755,3,3,162,165],[757,1,1,165,166],[760,4,3,166,169],[763,2,2,169,171],[766,1,1,171,172],[769,1,1,172,173],[776,1,1,173,174],[779,1,1,174,175],[787,2,2,175,177],[788,4,4,177,181],[790,1,1,181,182],[792,1,1,182,183]]],[26,1,1,183,184,[[860,1,1,183,184]]],[27,2,2,184,186,[[864,1,1,184,185],[875,1,1,185,186]]],[33,1,1,186,187,[[900,1,1,186,187]]],[35,1,1,187,188,[[907,1,1,187,188]]]],[60,903,905,1013,1015,1828,2010,2054,2074,2141,2157,2168,2176,2177,2439,2442,2446,2461,2469,2511,2512,2513,3285,4473,4764,5032,5060,5100,5115,5127,5136,5156,5203,5224,5236,5242,5243,5270,5271,5274,5278,5285,5367,5404,5445,5625,5647,5675,5697,5705,5725,5744,5746,5748,5775,5795,6448,6467,6476,6478,6490,6491,6492,6496,6499,6548,6557,6562,6564,6574,6631,6664,6817,6824,6825,6827,6985,7017,7142,7336,7355,7377,7661,7924,7955,8203,9057,9060,9110,9112,9116,9118,9179,9227,9365,9366,9389,9418,9431,9664,9990,10012,10014,10016,10018,10020,10021,10057,10058,10059,10073,10079,10162,10453,10669,10786,10845,10846,11216,11343,11346,11461,11462,11718,11719,11724,11787,11789,11888,11889,11892,11894,11923,11958,12023,15234,15239,15292,15457,15469,15470,15485,15487,16180,16198,16232,18044,18348,18349,18350,18364,18371,18474,18497,18962,18976,18993,19065,19077,19125,19128,19137,19236,19238,19239,19276,19347,19349,19356,19411,19420,19463,19540,19760,19838,20009,20010,20013,20015,20018,20025,20070,20115,22044,22129,22285,22698,22816]]],["great",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]]],[838,7523]]],["judge",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7265]]],["judges",[4,3,[[1,4,3,0,3,[[70,1,1,0,1],[71,3,2,1,3]]]],[2083,2121,2122]]],["mighty",[2,2,[[0,1,1,0,1,[[22,1,1,0,1]]],[1,1,1,1,2,[[58,1,1,1,2]]]],[577,1770]]]]},{"k":"H431","v":[["behold",[5,4,[[26,5,4,0,4,[[851,1,1,0,1],[853,2,2,1,3],[856,2,1,3,4]]]],[21789,21847,21850,21941]]]]},{"k":"H432","v":[["*",[2,2,[[16,1,1,0,1,[[432,1,1,0,1]]],[20,1,1,1,2,[[664,1,1,1,2]]]],[12811,17423]]],["Yea",[1,1,[[20,1,1,0,1,[[664,1,1,0,1]]]],[17423]]],["if",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12811]]]]},{"k":"H433","v":[["*",[57,56,[[4,2,2,0,2,[[184,2,2,0,2]]],[13,1,1,2,3,[[398,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[17,41,41,4,45,[[438,2,2,4,6],[439,2,2,6,8],[440,1,1,8,9],[441,3,3,9,12],[444,1,1,12,13],[445,1,1,13,14],[446,3,3,14,17],[447,2,2,17,19],[450,1,1,19,20],[451,2,2,20,22],[454,3,3,22,25],[456,2,2,25,27],[457,2,2,27,29],[459,1,1,29,30],[462,3,3,30,33],[464,2,2,33,35],[466,2,2,35,37],[468,2,2,37,39],[470,1,1,39,40],[471,1,1,40,41],[472,2,2,41,43],[474,1,1,43,44],[475,1,1,44,45]]],[18,4,4,45,49,[[495,1,1,45,46],[527,1,1,46,47],[591,1,1,47,48],[616,1,1,48,49]]],[19,1,1,49,50,[[657,1,1,49,50]]],[22,1,1,50,51,[[722,1,1,50,51]]],[26,4,3,51,54,[[860,4,3,51,54]]],[34,2,2,54,56,[[903,1,1,54,55],[905,1,1,55,56]]]],[5773,5775,11890,12528,12908,12927,12939,12947,12968,12982,12986,12987,13064,13088,13113,13114,13115,13132,13134,13211,13258,13259,13303,13318,13323,13364,13374,13401,13415,13448,13484,13489,13491,13534,13536,13590,13594,13662,13676,13730,13738,13784,13791,13851,13866,14149,14690,15829,16258,17256,18541,22073,22074,22075,22742,22771]]],["+",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12947]]],["God",[50,50,[[4,2,2,0,2,[[184,2,2,0,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[17,39,39,3,42,[[438,2,2,3,5],[439,1,1,5,6],[440,1,1,6,7],[441,3,3,7,10],[444,1,1,10,11],[445,1,1,11,12],[446,3,3,12,15],[447,2,2,15,17],[450,1,1,17,18],[451,2,2,18,20],[454,3,3,20,23],[456,2,2,23,25],[457,2,2,25,27],[459,1,1,27,28],[462,3,3,28,31],[464,2,2,31,33],[466,2,2,33,35],[468,2,2,35,37],[470,1,1,37,38],[472,2,2,38,40],[474,1,1,40,41],[475,1,1,41,42]]],[18,4,4,42,46,[[495,1,1,42,43],[527,1,1,43,44],[591,1,1,44,45],[616,1,1,45,46]]],[19,1,1,46,47,[[657,1,1,46,47]]],[22,1,1,47,48,[[722,1,1,47,48]]],[26,1,1,48,49,[[860,1,1,48,49]]],[34,1,1,49,50,[[905,1,1,49,50]]]],[5773,5775,12528,12908,12927,12939,12968,12982,12986,12987,13064,13088,13113,13114,13115,13132,13134,13211,13258,13259,13303,13318,13323,13364,13374,13401,13415,13448,13484,13489,13491,13534,13536,13590,13594,13662,13676,13730,13784,13791,13851,13866,14149,14690,15829,16258,17256,18541,22074,22771]]],["God's",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13738]]],["god",[5,5,[[13,1,1,0,1,[[398,1,1,0,1]]],[26,3,3,1,4,[[860,3,3,1,4]]],[34,1,1,4,5,[[903,1,1,4,5]]]],[11890,22073,22074,22075,22742]]]]},{"k":"H434","v":[["nought",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19307]]]]},{"k":"H435","v":[["Elul",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12416]]]]},{"k":"H436","v":[["*",[10,10,[[0,4,4,0,4,[[11,1,1,0,1],[12,1,1,1,2],[13,1,1,2,3],[17,1,1,3,4]]],[4,1,1,4,5,[[163,1,1,4,5]]],[5,1,1,5,6,[[205,1,1,5,6]]],[6,3,3,6,9,[[214,1,1,6,7],[219,2,2,7,9]]],[8,1,1,9,10,[[245,1,1,9,10]]]],[304,336,349,425,5238,6354,6610,6760,6791,7421]]],["+",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6354]]],["plain",[7,7,[[0,3,3,0,3,[[11,1,1,0,1],[12,1,1,1,2],[13,1,1,2,3]]],[6,3,3,3,6,[[214,1,1,3,4],[219,2,2,4,6]]],[8,1,1,6,7,[[245,1,1,6,7]]]],[304,336,349,6610,6760,6791,7421]]],["plains",[2,2,[[0,1,1,0,1,[[17,1,1,0,1]]],[4,1,1,1,2,[[163,1,1,1,2]]]],[425,5238]]]]},{"k":"H437","v":[["*",[8,8,[[0,1,1,0,1,[[34,1,1,0,1]]],[22,3,3,1,4,[[680,1,1,1,2],[684,1,1,2,3],[722,1,1,3,4]]],[25,1,1,4,5,[[828,1,1,4,5]]],[27,1,1,5,6,[[865,1,1,5,6]]],[29,1,1,6,7,[[880,1,1,6,7]]],[37,1,1,7,8,[[921,1,1,7,8]]]],[1019,17698,17782,18547,21127,22146,22388,23030]]],["oak",[3,3,[[0,1,1,0,1,[[34,1,1,0,1]]],[22,2,2,1,3,[[684,1,1,1,2],[722,1,1,2,3]]]],[1019,17782,18547]]],["oaks",[5,5,[[22,1,1,0,1,[[680,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]],[27,1,1,2,3,[[865,1,1,2,3]]],[29,1,1,3,4,[[880,1,1,3,4]]],[37,1,1,4,5,[[921,1,1,4,5]]]],[17698,21127,22146,22388,23030]]]]},{"k":"H438","v":[["Allon",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10422]]]]},{"k":"H439","v":[["Allonbachuth",[1,1,[[0,1,1,0,1,[[34,1,1,0,1]]]],[1019]]]]},{"k":"H440","v":[["Elonites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4515]]]]},{"k":"H441","v":[["*",[69,29,[[0,43,12,0,12,[[35,43,12,0,12]]],[1,1,1,12,13,[[64,1,1,12,13]]],[12,13,4,13,17,[[338,13,4,13,17]]],[18,2,2,17,19,[[532,1,1,17,18],[621,1,1,18,19]]],[19,3,3,19,22,[[629,1,1,19,20],[643,1,1,20,21],[644,1,1,21,22]]],[23,3,3,22,25,[[747,1,1,22,23],[755,1,1,23,24],[757,1,1,24,25]]],[32,1,1,25,26,[[899,1,1,25,26]]],[37,3,3,26,29,[[919,1,1,26,27],[922,2,2,27,29]]]],[1055,1056,1057,1058,1059,1061,1069,1070,1080,1081,1082,1083,1935,10303,10304,10305,10306,14745,16319,16450,16868,16882,19006,19245,19287,22669,23006,23050,23051]]],["Duke",[8,8,[[0,5,5,0,5,[[35,5,5,0,5]]],[12,3,3,5,8,[[338,3,3,5,8]]]],[1056,1070,1081,1082,1083,10304,10305,10306]]],["captains",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19287]]],["duke",[35,14,[[0,27,10,0,10,[[35,27,10,0,10]]],[12,8,4,10,14,[[338,8,4,10,14]]]],[1055,1056,1057,1058,1069,1070,1080,1081,1082,1083,10303,10304,10305,10306]]],["dukes",[14,13,[[0,11,10,0,10,[[35,11,10,0,10]]],[1,1,1,10,11,[[64,1,1,10,11]]],[12,2,2,11,13,[[338,2,2,11,13]]]],[1055,1056,1057,1058,1059,1061,1069,1070,1080,1083,1935,10303,10306]]],["friends",[2,2,[[19,2,2,0,2,[[643,1,1,0,1],[644,1,1,1,2]]]],[16868,16882]]],["governor",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23006]]],["governors",[2,2,[[37,2,2,0,2,[[922,2,2,0,2]]]],[23050,23051]]],["guide",[4,4,[[18,1,1,0,1,[[532,1,1,0,1]]],[19,1,1,1,2,[[629,1,1,1,2]]],[23,1,1,2,3,[[747,1,1,2,3]]],[32,1,1,3,4,[[899,1,1,3,4]]]],[14745,16450,19006,22669]]],["ox",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19245]]],["oxen",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16319]]]]},{"k":"H442","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4773,4774]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4774]]],["Alush",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4773]]]]},{"k":"H443","v":[["Elzabad",[2,2,[[12,2,2,0,2,[[349,1,1,0,1],[363,1,1,1,2]]]],[10732,11084]]]]},{"k":"H444","v":[["filthy",[3,3,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,2,2,1,3,[[491,1,1,1,2],[530,1,1,2,3]]]],[13219,14083,14722]]]]},{"k":"H445","v":[["Elhanan",[4,4,[[9,2,2,0,2,[[287,1,1,0,1],[289,1,1,1,2]]],[12,2,2,2,4,[[348,1,1,2,3],[357,1,1,3,4]]]],[8599,8677,10699,10931]]]]},{"k":"H446","v":[["*",[21,20,[[3,9,9,0,9,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5],[132,2,2,5,7],[142,2,2,7,9]]],[4,1,1,9,10,[[163,1,1,9,10]]],[8,4,3,10,13,[[251,1,1,10,11],[252,3,2,11,13]]],[12,6,6,13,19,[[339,1,1,13,14],[343,1,1,14,15],[349,1,1,15,16],[352,2,2,16,18],[353,1,1,18,19]]],[13,1,1,19,20,[[377,1,1,19,20]]]],[3613,3665,3874,3879,4004,4195,4206,4497,4498,5214,7601,7631,7646,10319,10481,10729,10809,10811,10825,11432]]],["Eliab",[20,20,[[3,9,9,0,9,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5],[132,2,2,5,7],[142,2,2,7,9]]],[4,1,1,9,10,[[163,1,1,9,10]]],[8,3,3,10,13,[[251,1,1,10,11],[252,2,2,11,13]]],[12,6,6,13,19,[[339,1,1,13,14],[343,1,1,14,15],[349,1,1,15,16],[352,2,2,16,18],[353,1,1,18,19]]],[13,1,1,19,20,[[377,1,1,19,20]]]],[3613,3665,3874,3879,4004,4195,4206,4497,4498,5214,7601,7631,7646,10319,10481,10729,10809,10811,10825,11432]]],["Eliab's",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7646]]]]},{"k":"H447","v":[["Eliel",[10,10,[[12,9,9,0,9,[[342,1,1,0,1],[343,1,1,1,2],[345,2,2,2,4],[348,2,2,4,6],[349,1,1,6,7],[352,2,2,7,9]]],[13,1,1,9,10,[[397,1,1,9,10]]]],[10452,10488,10595,10597,10719,10720,10731,10800,10802,11867]]]]},{"k":"H448","v":[["Eliathah",[2,2,[[12,2,2,0,2,[[362,2,2,0,2]]]],[11050,11073]]]]},{"k":"H449","v":[["Elidad",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4837]]]]},{"k":"H450","v":[["*",[4,4,[[9,1,1,0,1,[[271,1,1,0,1]]],[10,1,1,1,2,[[301,1,1,1,2]]],[12,1,1,2,3,[[340,1,1,2,3]]],[13,1,1,3,4,[[383,1,1,3,4]]]],[8148,9131,10369,11540]]],["Eliada",[3,3,[[9,1,1,0,1,[[271,1,1,0,1]]],[12,1,1,1,2,[[340,1,1,1,2]]],[13,1,1,2,3,[[383,1,1,2,3]]]],[8148,10369,11540]]],["Eliadah",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9131]]]]},{"k":"H451","v":[["rump",[5,5,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,4,4,1,5,[[92,1,1,1,2],[96,1,1,2,3],[97,1,1,3,4],[98,1,1,4,5]]]],[2358,2787,2882,2942,2972]]]]},{"k":"H452","v":[["*",[71,65,[[10,42,38,0,38,[[307,9,8,0,8],[308,22,20,8,28],[309,8,7,28,35],[311,3,3,35,38]]],[11,24,22,38,60,[[313,8,8,38,46],[314,12,10,46,56],[315,1,1,56,57],[321,1,1,57,58],[322,2,2,58,60]]],[12,1,1,60,61,[[345,1,1,60,61]]],[13,1,1,61,62,[[387,1,1,61,62]]],[14,2,2,62,64,[[412,2,2,62,64]]],[38,1,1,64,65,[[928,1,1,64,65]]]],[9318,9330,9332,9333,9335,9339,9340,9341,9342,9343,9348,9349,9352,9355,9356,9357,9358,9362,9363,9366,9368,9371,9372,9377,9381,9382,9383,9387,9388,9389,9396,9400,9406,9407,9408,9468,9471,9479,9536,9537,9541,9543,9545,9546,9548,9550,9552,9553,9555,9557,9559,9560,9562,9564,9565,9566,9587,9792,9803,9810,10602,11636,12273,12278,23143]]],["+",[1,1,[[13,1,1,0,1,[[387,1,1,0,1]]]],[11636]]],["Eliah",[2,2,[[12,1,1,0,1,[[345,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]]],[10602,12278]]],["Elijah",[68,62,[[10,42,38,0,38,[[307,9,8,0,8],[308,22,20,8,28],[309,8,7,28,35],[311,3,3,35,38]]],[11,24,22,38,60,[[313,8,8,38,46],[314,12,10,46,56],[315,1,1,56,57],[321,1,1,57,58],[322,2,2,58,60]]],[14,1,1,60,61,[[412,1,1,60,61]]],[38,1,1,61,62,[[928,1,1,61,62]]]],[9318,9330,9332,9333,9335,9339,9340,9341,9342,9343,9348,9349,9352,9355,9356,9357,9358,9362,9363,9366,9368,9371,9372,9377,9381,9382,9383,9387,9388,9389,9396,9400,9406,9407,9408,9468,9471,9479,9536,9537,9541,9543,9545,9546,9548,9550,9552,9553,9555,9557,9559,9560,9562,9564,9565,9566,9587,9792,9803,9810,12273,23143]]]]},{"k":"H453","v":[["Elihu",[11,11,[[8,1,1,0,1,[[236,1,1,0,1]]],[12,3,3,1,4,[[349,1,1,1,2],[363,1,1,2,3],[364,1,1,3,4]]],[17,7,7,4,11,[[467,4,4,4,8],[469,1,1,8,9],[470,1,1,9,10],[471,1,1,10,11]]]],[7213,10740,11084,11127,13630,13632,13633,13634,13684,13721,13737]]]]},{"k":"H454","v":[["*",[9,9,[[12,5,5,0,5,[[340,2,2,0,2],[341,1,1,2,3],[344,1,1,3,4],[363,1,1,4,5]]],[14,3,3,5,8,[[410,1,1,5,6],[412,2,2,6,8]]],[15,1,1,8,9,[[424,1,1,8,9]]]],[10384,10385,10421,10543,11080,12205,12274,12279,12665]]],["Elihoenai",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12205]]],["Elioenai",[8,8,[[12,5,5,0,5,[[340,2,2,0,2],[341,1,1,2,3],[344,1,1,3,4],[363,1,1,4,5]]],[14,2,2,5,7,[[412,2,2,5,7]]],[15,1,1,7,8,[[424,1,1,7,8]]]],[10384,10385,10421,10543,11080,12274,12279,12665]]]]},{"k":"H455","v":[["Eliahba",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8685,10706]]]]},{"k":"H456","v":[["Elihoreph",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8847]]]]},{"k":"H457","v":[["*",[19,17,[[2,2,2,0,2,[[108,1,1,0,1],[115,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[17,1,1,3,4,[[448,1,1,3,4]]],[18,2,2,4,6,[[573,1,1,4,5],[574,1,1,5,6]]],[22,10,8,6,14,[[680,4,3,6,9],[688,2,2,9,11],[697,2,2,11,13],[709,2,1,13,14]]],[25,1,1,14,15,[[831,1,1,14,15]]],[34,1,1,15,16,[[904,1,1,15,16]]],[37,1,1,16,17,[[921,1,1,16,17]]]],[3285,3525,10846,13157,15470,15485,17693,17703,17705,17860,17861,18005,18007,18257,21217,22766,23045]]],["idol",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23045]]],["idols",[16,14,[[2,2,2,0,2,[[108,1,1,0,1],[115,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[18,2,2,3,5,[[573,1,1,3,4],[574,1,1,4,5]]],[22,10,8,5,13,[[680,4,3,5,8],[688,2,2,8,10],[697,2,2,10,12],[709,2,1,12,13]]],[34,1,1,13,14,[[904,1,1,13,14]]]],[3285,3525,10846,15470,15485,17693,17703,17705,17860,17861,18005,18007,18257,22766]]],["images",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21217]]],["value",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13157]]]]},{"k":"H458","v":[["*",[6,6,[[7,6,6,0,6,[[232,2,2,0,2],[233,2,2,2,4],[235,2,2,4,6]]]],[7129,7130,7150,7152,7193,7199]]],["Elimelech",[4,4,[[7,4,4,0,4,[[232,2,2,0,2],[233,2,2,2,4]]]],[7129,7130,7150,7152]]],["Elimelech's",[2,2,[[7,2,2,0,2,[[235,2,2,0,2]]]],[7193,7199]]]]},{"k":"H459","v":[["*",[5,5,[[26,5,5,0,5,[[851,2,2,0,2],[855,2,2,2,4],[856,1,1,4,5]]]],[21798,21802,21907,21911,21950]]],["These",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21950]]],["the",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21907]]],["these",[3,3,[[26,3,3,0,3,[[851,2,2,0,2],[855,1,1,2,3]]]],[21798,21802,21911]]]]},{"k":"H460","v":[["Eliasaph",[6,6,[[3,6,6,0,6,[[117,1,1,0,1],[118,1,1,1,2],[119,1,1,2,3],[123,2,2,3,5],[126,1,1,5,6]]]],[3618,3672,3716,3892,3897,4008]]]]},{"k":"H461","v":[["Eliezer",[14,13,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,1,1,1,2,[[67,1,1,1,2]]],[12,7,6,2,8,[[344,1,1,2,3],[352,1,1,3,4],[360,3,2,4,6],[363,1,1,6,7],[364,1,1,7,8]]],[13,1,1,8,9,[[386,1,1,8,9]]],[14,4,4,9,13,[[410,1,1,9,10],[412,3,3,10,13]]]],[362,2003,10543,10815,10998,11000,11102,11125,11624,12217,12270,12275,12283]]]]},{"k":"H462","v":[["Elienai",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10595]]]]},{"k":"H463","v":[["Eliam",[2,2,[[9,2,2,0,2,[[277,1,1,0,1],[289,1,1,1,2]]]],[8262,8687]]]]},{"k":"H464","v":[["*",[15,14,[[0,7,6,0,6,[[35,7,6,0,6]]],[12,2,2,6,8,[[338,2,2,6,8]]],[17,6,6,8,14,[[437,1,1,8,9],[439,1,1,9,10],[450,1,1,10,11],[457,1,1,11,12],[477,2,2,12,14]]]],[1044,1050,1051,1052,1055,1056,10287,10288,12902,12931,13204,13390,13929,13931]]],["+",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1052]]],["Eliphaz",[14,14,[[0,6,6,0,6,[[35,6,6,0,6]]],[12,2,2,6,8,[[338,2,2,6,8]]],[17,6,6,8,14,[[437,1,1,8,9],[439,1,1,9,10],[450,1,1,10,11],[457,1,1,11,12],[477,2,2,12,14]]]],[1044,1050,1051,1052,1055,1056,10287,10288,12902,12931,13204,13390,13929,13931]]]]},{"k":"H465","v":[["Eliphal",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10708]]]]},{"k":"H466","v":[["Elipheleh",[2,2,[[12,2,2,0,2,[[352,2,2,0,2]]]],[10809,10812]]]]},{"k":"H467","v":[["*",[9,9,[[9,2,2,0,2,[[271,1,1,0,1],[289,1,1,1,2]]],[12,5,5,2,7,[[340,2,2,2,4],[345,1,1,4,5],[351,2,2,5,7]]],[14,2,2,7,9,[[410,1,1,7,8],[412,1,1,8,9]]]],[8148,8687,10367,10369,10614,10779,10781,12214,12285]]],["Eliphalet",[2,2,[[9,1,1,0,1,[[271,1,1,0,1]]],[12,1,1,1,2,[[351,1,1,1,2]]]],[8148,10781]]],["Eliphelet",[6,6,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,3,3,1,4,[[340,2,2,1,3],[345,1,1,3,4]]],[14,2,2,4,6,[[410,1,1,4,5],[412,1,1,5,6]]]],[8687,10367,10369,10614,12214,12285]]],["Elpalet",[1,1,[[12,1,1,0,1,[[351,1,1,0,1]]]],[10779]]]]},{"k":"H468","v":[["Elizur",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3609,3668,3880,3885,4006]]]]},{"k":"H469","v":[["*",[6,6,[[1,1,1,0,1,[[55,1,1,0,1]]],[2,1,1,1,2,[[99,1,1,1,2]]],[3,2,2,2,4,[[119,1,1,2,3],[150,1,1,3,4]]],[12,1,1,4,5,[[352,1,1,4,5]]],[13,1,1,5,6,[[395,1,1,5,6]]]],[1677,2981,3722,4841,10799,11804]]],["Elizaphan",[4,4,[[3,2,2,0,2,[[119,1,1,0,1],[150,1,1,1,2]]],[12,1,1,2,3,[[352,1,1,2,3]]],[13,1,1,3,4,[[395,1,1,3,4]]]],[3722,4841,10799,11804]]],["Elzaphan",[2,2,[[1,1,1,0,1,[[55,1,1,0,1]]],[2,1,1,1,2,[[99,1,1,1,2]]]],[1677,2981]]]]},{"k":"H470","v":[["Elika",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8678]]]]},{"k":"H471","v":[["Eliakim",[12,12,[[11,5,5,0,5,[[330,3,3,0,3],[331,1,1,3,4],[335,1,1,4,5]]],[13,1,1,5,6,[[402,1,1,5,6]]],[15,1,1,6,7,[[424,1,1,6,7]]],[22,5,5,7,12,[[700,1,1,7,8],[714,3,3,8,11],[715,1,1,11,12]]]],[10042,10050,10061,10063,10199,11997,12665,18072,18333,18341,18352,18354]]]]},{"k":"H472","v":[["Elisheba",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1678]]]]},{"k":"H473","v":[["Elishah",[3,3,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[25,1,1,2,3,[[828,1,1,2,3]]]],[238,10259,21128]]]]},{"k":"H474","v":[["Elishua",[2,2,[[9,1,1,0,1,[[271,1,1,0,1]]],[12,1,1,1,2,[[351,1,1,1,2]]]],[8147,10779]]]]},{"k":"H475","v":[["Eliashib",[17,15,[[12,2,2,0,2,[[340,1,1,0,1],[361,1,1,1,2]]],[14,4,4,2,6,[[412,4,4,2,6]]],[15,11,9,6,15,[[415,4,3,6,9],[424,4,3,9,12],[425,3,3,12,15]]]],[10385,11027,12258,12276,12279,12288,12328,12347,12348,12634,12646,12647,12675,12678,12699]]]]},{"k":"H476","v":[["Elishama",[17,17,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]],[9,1,1,5,6,[[271,1,1,5,6]]],[11,1,1,6,7,[[337,1,1,6,7]]],[12,5,5,7,12,[[339,1,1,7,8],[340,2,2,8,10],[344,1,1,10,11],[351,1,1,11,12]]],[13,1,1,12,13,[[383,1,1,12,13]]],[23,4,4,13,17,[[780,3,3,13,16],[785,1,1,16,17]]]],[3614,3676,3898,3903,4010,8148,10247,10347,10367,10369,10561,10781,11531,19854,19862,19863,19958]]]]},{"k":"H477","v":[["Elisha",[58,52,[[10,3,3,0,3,[[309,3,3,0,3]]],[11,55,49,3,52,[[314,13,11,3,14],[315,3,3,14,17],[316,6,6,17,23],[317,5,5,23,28],[318,11,9,28,37],[319,1,1,37,38],[320,8,7,38,45],[321,1,1,45,46],[325,7,6,46,52]]]],[9403,9404,9406,9552,9553,9554,9555,9556,9560,9563,9565,9566,9570,9573,9587,9589,9590,9604,9605,9611,9620,9635,9641,9655,9656,9657,9667,9672,9675,9686,9691,9692,9693,9694,9695,9705,9706,9708,9728,9731,9732,9734,9737,9740,9741,9757,9885,9886,9887,9888,9891,9892]]]]},{"k":"H478","v":[["Elishaphat",[1,1,[[13,1,1,0,1,[[389,1,1,0,1]]]],[11657]]]]},{"k":"H479","v":[["*",[14,13,[[14,4,3,0,3,[[406,1,1,0,1],[407,1,1,1,2],[408,2,1,2,3]]],[26,10,10,3,13,[[852,6,6,3,9],[855,4,4,9,13]]]],[12131,12143,12159,21819,21820,21828,21829,21830,21834,21910,21916,21920,21929]]],["these",[11,10,[[14,3,2,0,2,[[406,1,1,0,1],[408,2,1,1,2]]],[26,8,8,2,10,[[852,5,5,2,7],[855,3,3,7,10]]]],[12131,12159,21819,21820,21828,21830,21834,21910,21916,21920]]],["those",[3,3,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,2,2,1,3,[[852,1,1,1,2],[855,1,1,2,3]]]],[12143,21829,21929]]]]},{"k":"H480","v":[["*",[2,2,[[17,1,1,0,1,[[445,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]]],[13101,22665]]],["Woe",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22665]]],["woe",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13101]]]]},{"k":"H481","v":[["*",[9,9,[[0,1,1,0,1,[[36,1,1,0,1]]],[18,3,3,1,4,[[508,1,1,1,2],[516,2,2,2,4]]],[22,1,1,4,5,[[731,1,1,4,5]]],[25,3,3,5,8,[[804,1,1,5,6],[825,1,1,6,7],[834,1,1,7,8]]],[26,1,1,8,9,[[859,1,1,8,9]]]],[1090,14349,14514,14521,18718,20528,21083,21302,22030]]],["+",[2,2,[[25,2,2,0,2,[[825,1,1,0,1],[834,1,1,1,2]]]],[21083,21302]]],["binding",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1090]]],["dumb",[5,5,[[18,2,2,0,2,[[516,2,2,0,2]]],[22,1,1,2,3,[[731,1,1,2,3]]],[25,1,1,3,4,[[804,1,1,3,4]]],[26,1,1,4,5,[[859,1,1,4,5]]]],[14514,14521,18718,20528,22030]]],["silence",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14349]]]]},{"k":"H482","v":[["congregation",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14780]]]]},{"k":"H483","v":[["*",[6,6,[[1,1,1,0,1,[[53,1,1,0,1]]],[18,1,1,1,2,[[515,1,1,1,2]]],[19,1,1,2,3,[[658,1,1,2,3]]],[22,2,2,3,5,[[713,1,1,3,4],[734,1,1,4,5]]],[34,1,1,5,6,[[904,1,1,5,6]]]],[1612,14503,17292,18326,18763,22766]]],["dumb",[5,5,[[1,1,1,0,1,[[53,1,1,0,1]]],[19,1,1,1,2,[[658,1,1,1,2]]],[22,2,2,2,4,[[713,1,1,2,3],[734,1,1,3,4]]],[34,1,1,4,5,[[904,1,1,4,5]]]],[1612,17292,18326,18763,22766]]],["man",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14503]]]]},{"k":"H484","v":[["almug",[3,2,[[10,3,2,0,2,[[300,3,2,0,2]]]],[9090,9091]]]]},{"k":"H485","v":[["*",[5,2,[[0,4,1,0,1,[[36,4,1,0,1]]],[18,1,1,1,2,[[603,1,1,1,2]]]],[1090,16121]]],["sheaf",[2,1,[[0,2,1,0,1,[[36,2,1,0,1]]]],[1090]]],["sheaves",[3,2,[[0,2,1,0,1,[[36,2,1,0,1]]],[18,1,1,1,2,[[603,1,1,1,2]]]],[1090,16121]]]]},{"k":"H486","v":[["Almodad",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[260,10272]]]]},{"k":"H487","v":[["Alammelech",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6347]]]]},{"k":"H488","v":[["forsaken",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20217]]]]},{"k":"H489","v":[["widowhood",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18608]]]]},{"k":"H490","v":[["*",[54,53,[[0,1,1,0,1,[[37,1,1,0,1]]],[1,2,2,1,3,[[71,2,2,1,3]]],[2,2,2,3,5,[[110,1,1,3,4],[111,1,1,4,5]]],[3,1,1,5,6,[[146,1,1,5,6]]],[4,11,11,6,17,[[162,1,1,6,7],[166,1,1,7,8],[168,2,2,8,10],[176,4,4,10,14],[178,2,2,14,16],[179,1,1,16,17]]],[9,1,1,17,18,[[280,1,1,17,18]]],[10,5,5,18,23,[[297,1,1,18,19],[301,1,1,19,20],[307,3,3,20,23]]],[17,6,6,23,29,[[457,1,1,23,24],[459,2,2,24,26],[462,1,1,26,27],[464,1,1,27,28],[466,1,1,28,29]]],[18,5,5,29,34,[[545,1,1,29,30],[555,1,1,30,31],[571,1,1,31,32],[586,1,1,32,33],[623,1,1,33,34]]],[19,1,1,34,35,[[642,1,1,34,35]]],[22,6,6,35,41,[[679,2,2,35,37],[687,1,1,37,38],[688,1,1,38,39],[691,1,1,39,40],[725,1,1,40,41]]],[23,5,5,41,46,[[751,1,1,41,42],[759,1,1,42,43],[762,1,1,43,44],[766,1,1,44,45],[793,1,1,45,46]]],[24,2,2,46,48,[[797,1,1,46,47],[801,1,1,47,48]]],[25,4,3,48,51,[[823,2,2,48,50],[845,2,1,50,51]]],[37,1,1,51,52,[[917,1,1,51,52]]],[38,1,1,52,53,[[927,1,1,52,53]]]],[1130,2135,2137,3359,3382,4657,5204,5319,5353,5356,5542,5544,5545,5546,5578,5579,5604,8361,8948,9134,9326,9327,9337,13398,13439,13457,13496,13545,13604,14905,15177,15437,15764,16350,16832,17671,17677,17846,17852,17928,18607,19125,19323,19405,19457,20138,20311,20445,20983,21001,21621,22972,23125]]],["+",[2,2,[[17,2,2,0,2,[[457,1,1,0,1],[459,1,1,1,2]]]],[13398,13439]]],["houses",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17928]]],["widow",[37,36,[[0,1,1,0,1,[[37,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[2,2,2,2,4,[[110,1,1,2,3],[111,1,1,3,4]]],[3,1,1,4,5,[[146,1,1,4,5]]],[4,10,10,5,15,[[162,1,1,5,6],[166,1,1,6,7],[168,2,2,7,9],[176,3,3,9,12],[178,2,2,12,14],[179,1,1,14,15]]],[9,1,1,15,16,[[280,1,1,15,16]]],[10,4,4,16,20,[[301,1,1,16,17],[307,3,3,17,20]]],[17,2,2,20,22,[[459,1,1,20,21],[466,1,1,21,22]]],[18,3,3,22,25,[[571,1,1,22,23],[586,1,1,23,24],[623,1,1,24,25]]],[19,1,1,25,26,[[642,1,1,25,26]]],[22,3,3,26,29,[[679,2,2,26,28],[725,1,1,28,29]]],[23,2,2,29,31,[[751,1,1,29,30],[766,1,1,30,31]]],[24,1,1,31,32,[[797,1,1,31,32]]],[25,3,2,32,34,[[823,1,1,32,33],[845,2,1,33,34]]],[37,1,1,34,35,[[917,1,1,34,35]]],[38,1,1,35,36,[[927,1,1,35,36]]]],[1130,2135,3359,3382,4657,5204,5319,5353,5356,5544,5545,5546,5578,5579,5604,8361,9134,9326,9327,9337,13457,13604,15437,15764,16350,16832,17671,17677,18607,19125,19457,20311,20983,21621,22972,23125]]],["widow's",[3,3,[[4,1,1,0,1,[[176,1,1,0,1]]],[10,1,1,1,2,[[297,1,1,1,2]]],[17,1,1,2,3,[[464,1,1,2,3]]]],[5542,8948,13545]]],["widows",[11,11,[[1,1,1,0,1,[[71,1,1,0,1]]],[17,1,1,1,2,[[462,1,1,1,2]]],[18,2,2,2,4,[[545,1,1,2,3],[555,1,1,3,4]]],[22,2,2,4,6,[[687,1,1,4,5],[688,1,1,5,6]]],[23,3,3,6,9,[[759,1,1,6,7],[762,1,1,7,8],[793,1,1,8,9]]],[24,1,1,9,10,[[801,1,1,9,10]]],[25,1,1,10,11,[[823,1,1,10,11]]]],[2137,13496,14905,15177,17846,17852,19323,19405,20138,20445,21001]]]]},{"k":"H491","v":[["*",[4,4,[[0,2,2,0,2,[[37,2,2,0,2]]],[9,1,1,2,3,[[286,1,1,2,3]]],[22,1,1,3,4,[[732,1,1,3,4]]]],[1133,1138,8557,18727]]],["widow's",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1133]]],["widowhood",[3,3,[[0,1,1,0,1,[[37,1,1,0,1]]],[9,1,1,1,2,[[286,1,1,1,2]]],[22,1,1,2,3,[[732,1,1,2,3]]]],[1138,8557,18727]]]]},{"k":"H492","v":[["*",[3,3,[[7,1,1,0,1,[[235,1,1,0,1]]],[8,1,1,1,2,[[256,1,1,1,2]]],[11,1,1,2,3,[[318,1,1,2,3]]]],[7191,7774,9682]]],["+",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9682]]],["one",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7191]]],["such",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7774]]]]},{"k":"H493","v":[["Elnaam",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10719]]]]},{"k":"H494","v":[["Elnathan",[7,5,[[11,1,1,0,1,[[336,1,1,0,1]]],[14,3,1,1,2,[[410,3,1,1,2]]],[23,3,3,2,5,[[770,1,1,2,3],[780,2,2,3,5]]]],[10210,12217,19594,19854,19867]]]]},{"k":"H495","v":[["Ellasar",[2,2,[[0,2,2,0,2,[[13,2,2,0,2]]]],[337,345]]]]},{"k":"H496","v":[["Elead",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10556]]]]},{"k":"H497","v":[["Eladah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10555]]]]},{"k":"H498","v":[["Eluzai",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10725]]]]},{"k":"H499","v":[["Eleazar",[72,70,[[1,3,3,0,3,[[55,2,2,0,2],[77,1,1,2,3]]],[2,3,3,3,6,[[99,3,3,3,6]]],[3,35,34,6,40,[[119,3,3,6,9],[120,1,1,9,10],[132,2,2,10,12],[135,2,2,12,14],[136,4,3,14,17],[141,2,2,17,19],[142,4,4,19,23],[143,4,4,23,27],[147,10,10,27,37],[148,2,2,37,39],[150,1,1,39,40]]],[4,1,1,40,41,[[162,1,1,40,41]]],[5,8,8,41,49,[[200,1,1,41,42],[203,1,1,42,43],[205,1,1,43,44],[207,1,1,44,45],[208,3,3,45,48],[210,1,1,48,49]]],[6,1,1,49,50,[[230,1,1,49,50]]],[8,1,1,50,51,[[242,1,1,50,51]]],[9,1,1,51,52,[[289,1,1,51,52]]],[12,15,14,52,66,[[343,3,3,52,55],[346,1,1,55,56],[348,1,1,56,57],[360,2,2,57,59],[361,8,7,59,66]]],[14,3,3,66,69,[[409,1,1,66,67],[410,1,1,67,68],[412,1,1,68,69]]],[15,1,1,69,70,[[424,1,1,69,70]]]],[1678,1680,2294,2983,2989,2993,3694,3696,3724,3759,4231,4233,4292,4293,4336,4337,4339,4478,4482,4490,4492,4549,4552,4556,4573,4575,4576,4670,4676,4677,4685,4690,4693,4695,4705,4715,4718,4720,4746,4833,5192,6188,6279,6372,6382,6439,6457,6458,6509,7082,7353,8662,10457,10458,10504,10635,10685,11004,11005,11016,11017,11018,11019,11020,11021,11043,12178,12234,12277,12666]]]]},{"k":"H500","v":[["Elealeh",[5,5,[[3,2,2,0,2,[[148,2,2,0,2]]],[22,2,2,2,4,[[693,1,1,2,3],[694,1,1,3,4]]],[23,1,1,4,5,[[792,1,1,4,5]]]],[4721,4755,17964,17978,20114]]]]},{"k":"H501","v":[["*",[6,6,[[12,4,4,0,4,[[339,2,2,0,2],[345,1,1,2,3],[346,1,1,3,4]]],[14,1,1,4,5,[[412,1,1,4,5]]],[23,1,1,5,6,[[773,1,1,5,6]]]],[10345,10346,10612,10658,12274,19638]]],["Elasah",[2,2,[[14,1,1,0,1,[[412,1,1,0,1]]],[23,1,1,1,2,[[773,1,1,1,2]]]],[12274,19638]]],["Eleasah",[4,4,[[12,4,4,0,4,[[339,2,2,0,2],[345,1,1,2,3],[346,1,1,3,4]]]],[10345,10346,10612,10658]]]]},{"k":"H502","v":[["*",[4,4,[[17,3,3,0,3,[[450,1,1,0,1],[468,1,1,1,2],[470,1,1,2,3]]],[19,1,1,3,4,[[649,1,1,3,4]]]],[13208,13683,13731,17040]]],["learn",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17040]]],["teach",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13683]]],["teacheth",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13731]]],["uttereth",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13208]]]]},{"k":"H503","v":[["thousands",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16318]]]]},{"k":"H504","v":[["*",[8,8,[[4,4,4,0,4,[[159,1,1,0,1],[180,3,3,1,4]]],[6,1,1,4,5,[[216,1,1,4,5]]],[18,1,1,5,6,[[485,1,1,5,6]]],[19,1,1,6,7,[[641,1,1,6,7]]],[22,1,1,7,8,[[708,1,1,7,8]]]],[5124,5615,5629,5662,6669,14019,16776,18241]]],["family",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6669]]],["kine",[4,4,[[4,4,4,0,4,[[159,1,1,0,1],[180,3,3,1,4]]]],[5124,5615,5629,5662]]],["oxen",[3,3,[[18,1,1,0,1,[[485,1,1,0,1]]],[19,1,1,1,2,[[641,1,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]]],[14019,16776,18241]]]]},{"k":"H505","v":[["*",[503,389,[[0,2,2,0,2,[[19,1,1,0,1],[23,1,1,1,2]]],[1,11,10,2,12,[[61,1,1,2,3],[67,2,2,3,5],[69,1,1,5,6],[81,1,1,6,7],[83,1,1,7,8],[87,5,4,8,12]]],[3,103,82,12,94,[[117,15,14,12,26],[118,23,17,26,43],[119,6,6,43,49],[120,4,4,49,53],[123,1,1,53,54],[126,2,2,54,56],[127,1,1,56,57],[132,1,1,57,58],[141,1,1,58,59],[142,15,14,59,73],[147,29,19,73,92],[151,5,2,92,94]]],[4,6,6,94,100,[[153,2,2,94,96],[157,1,1,96,97],[159,1,1,97,98],[184,1,1,98,99],[185,1,1,99,100]]],[5,12,11,100,111,[[189,1,1,100,101],[190,1,1,101,102],[193,3,2,102,104],[194,3,3,104,107],[208,3,3,107,110],[209,1,1,110,111]]],[6,34,30,111,141,[[211,1,1,111,112],[213,1,1,112,113],[214,3,3,113,116],[215,1,1,116,117],[217,2,1,117,118],[218,3,2,118,120],[219,1,1,120,121],[222,1,1,121,122],[225,3,3,122,125],[226,2,2,125,127],[227,2,2,127,129],[230,13,11,129,140],[231,1,1,140,141]]],[8,28,22,141,163,[[239,2,2,141,143],[241,1,1,143,144],[243,1,1,144,145],[245,1,1,145,146],[246,2,1,146,147],[248,5,2,147,149],[250,2,1,149,150],[252,2,2,150,152],[253,3,3,152,155],[256,1,1,155,156],[257,1,1,156,157],[258,1,1,157,158],[259,1,1,158,159],[260,2,1,159,160],[261,1,1,160,161],[264,2,2,161,163]]],[9,19,15,163,178,[[272,1,1,163,164],[274,4,3,164,167],[276,4,2,167,169],[283,1,1,169,170],[284,5,5,170,175],[285,1,1,175,176],[290,3,2,176,178]]],[10,21,16,178,194,[[293,1,1,178,179],[294,4,2,179,181],[295,6,5,181,186],[297,1,1,186,187],[298,2,1,187,188],[300,2,1,188,189],[302,1,1,189,190],[309,1,1,190,191],[310,3,3,191,194]]],[11,11,9,194,203,[[315,2,1,194,195],[317,1,1,195,196],[325,1,1,196,197],[326,1,1,197,198],[327,1,1,198,199],[330,1,1,199,200],[331,1,1,200,201],[336,3,2,201,203]]],[12,81,60,203,263,[[342,5,2,203,205],[344,7,7,205,212],[346,1,1,212,213],[349,15,14,213,227],[350,1,1,227,228],[352,1,1,228,229],[353,1,1,229,230],[355,5,3,230,233],[356,4,3,233,236],[358,5,2,236,238],[359,3,1,238,239],[360,5,3,239,242],[363,3,3,242,245],[364,14,13,245,258],[365,1,1,258,259],[366,10,4,259,263]]],[13,62,38,263,301,[[367,4,3,263,266],[368,12,4,266,270],[370,1,1,270,271],[373,2,1,271,272],[375,2,1,272,273],[377,1,1,273,274],[378,2,1,274,275],[379,3,2,275,277],[380,4,2,277,279],[381,1,1,279,280],[383,8,6,280,286],[391,6,5,286,291],[392,3,2,291,293],[393,2,1,293,294],[394,2,2,294,296],[395,1,1,296,297],[396,4,1,297,298],[401,4,3,298,301]]],[14,19,18,301,319,[[403,3,3,301,304],[404,15,14,304,318],[410,1,1,318,319]]],[15,17,17,319,336,[[415,1,1,319,320],[419,16,16,320,336]]],[16,2,2,336,338,[[428,1,1,336,337],[434,1,1,337,338]]],[17,8,4,338,342,[[436,2,1,338,339],[444,1,1,339,340],[468,1,1,340,341],[477,4,1,341,342]]],[18,7,7,342,349,[[527,1,1,342,343],[545,1,1,343,344],[561,1,1,344,345],[567,1,1,345,346],[568,1,1,346,347],[582,1,1,347,348],[596,1,1,348,349]]],[20,2,2,349,351,[[664,1,1,349,350],[665,1,1,350,351]]],[21,3,3,351,354,[[674,1,1,351,352],[678,2,2,352,354]]],[22,6,5,354,359,[[685,2,1,354,355],[708,1,1,355,356],[714,1,1,356,357],[715,1,1,357,358],[738,1,1,358,359]]],[23,3,3,359,362,[[776,1,1,359,360],[796,2,2,360,362]]],[25,40,21,362,383,[[846,8,4,362,366],[848,4,3,366,369],[849,28,14,369,383]]],[26,3,3,383,386,[[857,1,1,383,384],[861,2,2,384,386]]],[29,1,1,386,387,[[883,1,1,386,387]]],[32,2,2,387,389,[[897,1,1,387,388],[898,1,1,388,389]]]],[511,651,1853,2020,2024,2057,2466,2503,2658,2659,2661,2662,3620,3625,3627,3629,3631,3633,3635,3637,3639,3641,3643,3645,3647,3650,3662,3664,3666,3667,3669,3671,3673,3674,3677,3679,3681,3682,3684,3686,3688,3689,3690,3714,3720,3726,3731,3735,3742,3779,3783,3787,3791,3935,3992,4024,4045,4243,4480,4496,4503,4507,4511,4514,4516,4523,4526,4530,4532,4536,4539,4540,4551,4668,4669,4670,4678,4696,4697,4698,4699,4700,4702,4703,4704,4707,4708,4709,4710,4712,4716,4718,4849,4850,4903,4907,5063,5120,5788,5827,5897,5923,5979,5980,6005,6014,6027,6440,6447,6456,6470,6513,6597,6605,6609,6613,6631,6697,6729,6745,6803,6875,6940,6944,6945,6954,6976,6982,6983,7056,7064,7069,7071,7075,7079,7088,7089,7098,7099,7100,7112,7299,7307,7350,7381,7437,7453,7487,7490,7564,7623,7636,7683,7684,7689,7783,7794,7833,7841,7863,7907,7969,7972,8158,8213,8214,8222,8246,8258,8450,8479,8481,8482,8485,8490,8528,8701,8707,8820,8870,8876,8889,8891,8892,8893,8894,8960,9048,9105,9172,9405,9423,9437,9438,9580,9652,9878,9903,9944,10047,10096,10216,10218,10446,10449,10537,10539,10540,10542,10544,10546,10575,10628,10734,10740,10744,10745,10746,10747,10749,10750,10751,10753,10754,10755,10756,10757,10761,10816,10835,10894,10895,10902,10913,10914,10925,10939,10948,10978,10986,10987,10988,11103,11107,11109,11110,11111,11113,11114,11116,11117,11118,11119,11120,11121,11122,11123,11124,11144,11168,11170,11171,11185,11196,11200,11208,11213,11221,11228,11229,11251,11329,11389,11415,11440,11456,11470,11483,11484,11501,11534,11537,11538,11539,11540,11541,11709,11710,11715,11716,11717,11744,11745,11760,11770,11772,11824,11851,11973,11974,11975,12025,12026,12027,12030,12033,12034,12039,12041,12058,12062,12064,12065,12066,12091,12092,12094,12096,12228,12340,12428,12431,12432,12437,12439,12454,12458,12460,12461,12462,12486,12487,12489,12490,12491,12492,12756,12850,12872,13054,13673,13934,14678,14917,15269,15382,15402,15614,15970,17423,17457,17586,17651,17652,17805,18234,18338,18388,18843,19749,20304,20306,21631,21633,21635,21636,21682,21683,21684,21710,21711,21712,21715,21717,21718,21720,21722,21723,21732,21734,21735,21736,21737,21975,22092,22093,22426,22635,22655]]],["+",[13,12,[[3,3,2,0,2,[[147,3,2,0,2]]],[6,3,3,2,5,[[226,1,1,2,3],[227,2,2,3,5]]],[8,1,1,5,6,[[250,1,1,5,6]]],[12,1,1,6,7,[[366,1,1,6,7]]],[13,2,2,7,9,[[368,1,1,7,8],[378,1,1,8,9]]],[18,2,2,9,11,[[561,1,1,9,10],[596,1,1,10,11]]],[20,1,1,11,12,[[665,1,1,11,12]]]],[4668,4669,6954,6982,6983,7564,11171,11213,11440,15269,15970,17457]]],["thousand",[445,343,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,7,6,1,7,[[61,1,1,1,2],[81,1,1,2,3],[87,5,4,3,7]]],[3,92,75,7,82,[[117,14,13,7,20],[118,23,17,20,37],[119,6,6,37,43],[120,4,4,43,47],[123,1,1,47,48],[127,1,1,48,49],[132,1,1,49,50],[141,1,1,50,51],[142,15,14,51,65],[147,21,15,65,80],[151,5,2,80,82]]],[4,3,3,82,85,[[153,1,1,82,83],[159,1,1,83,84],[184,1,1,84,85]]],[5,8,8,85,93,[[189,1,1,85,86],[190,1,1,86,87],[193,2,2,87,89],[194,3,3,89,92],[209,1,1,92,93]]],[6,31,27,93,120,[[211,1,1,93,94],[213,1,1,94,95],[214,3,3,95,98],[215,1,1,98,99],[217,2,1,99,100],[218,3,2,100,102],[219,1,1,102,103],[222,1,1,103,104],[225,3,3,104,107],[226,1,1,107,108],[230,13,11,108,119],[231,1,1,119,120]]],[8,18,13,120,133,[[239,2,2,120,122],[241,1,1,122,123],[246,2,1,123,124],[248,5,2,124,126],[250,1,1,126,127],[252,2,2,127,129],[253,1,1,129,130],[259,1,1,130,131],[260,2,1,131,132],[261,1,1,132,133]]],[9,17,13,133,146,[[272,1,1,133,134],[274,4,3,134,137],[276,4,2,137,139],[283,1,1,139,140],[284,3,3,140,143],[285,1,1,143,144],[290,3,2,144,146]]],[10,21,16,146,162,[[293,1,1,146,147],[294,4,2,147,149],[295,6,5,149,154],[297,1,1,154,155],[298,2,1,155,156],[300,2,1,156,157],[302,1,1,157,158],[309,1,1,158,159],[310,3,3,159,162]]],[11,11,9,162,171,[[315,2,1,162,163],[317,1,1,163,164],[325,1,1,164,165],[326,1,1,165,166],[327,1,1,166,167],[330,1,1,167,168],[331,1,1,168,169],[336,3,2,169,171]]],[12,73,54,171,225,[[342,5,2,171,173],[344,7,7,173,180],[346,1,1,180,181],[349,14,13,181,194],[353,1,1,194,195],[355,5,3,195,198],[356,4,3,198,201],[358,5,2,201,203],[359,3,1,203,204],[360,5,3,204,207],[363,2,2,207,209],[364,13,13,209,222],[366,8,3,222,225]]],[13,57,37,225,262,[[367,3,2,225,227],[368,11,4,227,231],[370,1,1,231,232],[373,2,1,232,233],[375,2,1,233,234],[377,1,1,234,235],[378,1,1,235,236],[379,3,2,236,238],[380,4,2,238,240],[381,1,1,240,241],[383,7,6,241,247],[391,5,5,247,252],[392,3,2,252,254],[393,2,1,254,255],[394,2,2,255,257],[395,1,1,257,258],[396,4,1,258,259],[401,4,3,259,262]]],[14,19,18,262,280,[[403,3,3,262,265],[404,15,14,265,279],[410,1,1,279,280]]],[15,17,17,280,297,[[415,1,1,280,281],[419,16,16,281,297]]],[16,2,2,297,299,[[428,1,1,297,298],[434,1,1,298,299]]],[17,8,4,299,303,[[436,2,1,299,300],[444,1,1,300,301],[468,1,1,301,302],[477,4,1,302,303]]],[18,4,4,303,307,[[527,1,1,303,304],[567,1,1,304,305],[568,1,1,305,306],[582,1,1,306,307]]],[20,1,1,307,308,[[664,1,1,307,308]]],[21,3,3,308,311,[[674,1,1,308,309],[678,2,2,309,311]]],[22,6,5,311,316,[[685,2,1,311,312],[708,1,1,312,313],[714,1,1,313,314],[715,1,1,314,315],[738,1,1,315,316]]],[23,2,2,316,318,[[796,2,2,316,318]]],[25,40,21,318,339,[[846,8,4,318,322],[848,4,3,322,325],[849,28,14,325,339]]],[26,3,3,339,342,[[857,1,1,339,340],[861,2,2,340,342]]],[29,1,1,342,343,[[883,1,1,342,343]]]],[511,1853,2466,2658,2659,2661,2662,3625,3627,3629,3631,3633,3635,3637,3639,3641,3643,3645,3647,3650,3662,3664,3666,3667,3669,3671,3673,3674,3677,3679,3681,3682,3684,3686,3688,3689,3690,3714,3720,3726,3731,3735,3742,3779,3783,3787,3791,3935,4045,4243,4480,4496,4503,4507,4511,4514,4516,4523,4526,4530,4532,4536,4539,4540,4551,4669,4670,4696,4697,4698,4699,4700,4702,4703,4704,4707,4708,4709,4710,4716,4849,4850,4903,5120,5788,5897,5923,5979,5980,6005,6014,6027,6470,6513,6597,6605,6609,6613,6631,6697,6729,6745,6803,6875,6940,6944,6945,6976,7056,7064,7069,7071,7075,7079,7088,7089,7098,7099,7100,7112,7299,7307,7350,7453,7487,7490,7564,7623,7636,7689,7841,7863,7907,8158,8213,8214,8222,8246,8258,8450,8481,8485,8490,8528,8701,8707,8820,8870,8876,8889,8891,8892,8893,8894,8960,9048,9105,9172,9405,9423,9437,9438,9580,9652,9878,9903,9944,10047,10096,10216,10218,10446,10449,10537,10539,10540,10542,10544,10546,10575,10628,10734,10744,10745,10746,10747,10749,10750,10751,10753,10754,10755,10756,10757,10835,10894,10895,10902,10913,10914,10925,10939,10948,10978,10986,10987,10988,11107,11109,11110,11111,11113,11114,11116,11117,11118,11119,11120,11121,11122,11123,11124,11168,11171,11185,11200,11208,11213,11221,11228,11229,11251,11329,11389,11415,11440,11456,11470,11483,11484,11501,11534,11537,11538,11539,11540,11541,11709,11710,11715,11716,11717,11744,11745,11760,11770,11772,11824,11851,11973,11974,11975,12025,12026,12027,12030,12033,12034,12039,12041,12058,12062,12064,12065,12066,12091,12092,12094,12096,12228,12340,12428,12431,12432,12437,12439,12454,12458,12460,12461,12462,12486,12487,12489,12490,12491,12492,12756,12850,12872,13054,13673,13934,14678,15382,15402,15614,17423,17586,17651,17652,17805,18234,18338,18388,18843,20304,20306,21631,21633,21635,21636,21682,21683,21684,21710,21711,21712,21715,21717,21718,21720,21722,21723,21732,21734,21735,21736,21737,21975,22092,22093,22426]]],["thousands",[44,43,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,4,4,1,5,[[67,2,2,1,3],[69,1,1,3,4],[83,1,1,4,5]]],[3,8,7,5,12,[[117,1,1,5,6],[126,2,2,6,8],[147,5,4,8,12]]],[4,3,3,12,15,[[153,1,1,12,13],[157,1,1,13,14],[185,1,1,14,15]]],[5,3,3,15,18,[[208,3,3,15,18]]],[8,9,9,18,27,[[243,1,1,18,19],[245,1,1,19,20],[253,2,2,20,22],[256,1,1,22,23],[257,1,1,23,24],[258,1,1,24,25],[264,2,2,25,27]]],[9,2,2,27,29,[[284,2,2,27,29]]],[12,7,7,29,36,[[349,1,1,29,30],[350,1,1,30,31],[352,1,1,31,32],[363,1,1,32,33],[364,1,1,33,34],[365,1,1,34,35],[366,1,1,35,36]]],[13,3,3,36,39,[[367,1,1,36,37],[383,1,1,37,38],[391,1,1,38,39]]],[18,1,1,39,40,[[545,1,1,39,40]]],[23,1,1,40,41,[[776,1,1,40,41]]],[32,2,2,41,43,[[897,1,1,41,42],[898,1,1,42,43]]]],[651,2020,2024,2057,2503,3620,3992,4024,4678,4712,4716,4718,4907,5063,5827,6440,6447,6456,7381,7437,7683,7684,7783,7794,7833,7969,7972,8479,8482,10740,10761,10816,11103,11110,11144,11170,11196,11537,11709,14917,19749,22635,22655]]],["two",[1,1,[[5,1,1,0,1,[[193,1,1,0,1]]]],[5979]]]]},{"k":"H506","v":[["*",[4,2,[[26,4,2,0,2,[[854,2,1,0,1],[856,2,1,1,2]]]],[21875,21943]]],["thousand",[3,2,[[26,3,2,0,2,[[854,2,1,0,1],[856,1,1,1,2]]]],[21875,21943]]],["thousands",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21943]]]]},{"k":"H507","v":[["Eleph",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6321]]]]},{"k":"H508","v":[["Elpaal",[3,3,[[12,3,3,0,3,[[345,3,3,0,3]]]],[10586,10587,10593]]]]},{"k":"H509","v":[["urged",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6965]]]]},{"k":"H510","v":[["up",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17282]]]]},{"k":"H511","v":[["Elkanah",[21,20,[[1,1,1,0,1,[[55,1,1,0,1]]],[8,8,8,1,9,[[236,6,6,1,7],[237,2,2,7,9]]],[12,11,10,9,19,[[343,8,7,9,16],[346,1,1,16,17],[349,1,1,17,18],[352,1,1,18,19]]],[13,1,1,19,20,[[394,1,1,19,20]]]],[1679,7213,7216,7220,7231,7233,7235,7251,7260,10477,10479,10480,10481,10488,10489,10490,10631,10726,10814,11771]]]]},{"k":"H512","v":[["Elkoshite",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22685]]]]},{"k":"H513","v":[["Eltolad",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]]],[6232,6325]]]]},{"k":"H514","v":[["Eltekeh",[2,2,[[5,2,2,0,2,[[205,1,1,0,1],[207,1,1,1,2]]]],[6365,6404]]]]},{"k":"H515","v":[["Eltekon",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6261]]]]},{"k":"H516","v":[]},{"k":"H517","v":[["*",[220,202,[[0,26,21,0,21,[[1,1,1,0,1],[2,1,1,1,2],[19,1,1,2,3],[20,1,1,3,4],[23,5,4,4,8],[26,5,4,8,12],[27,4,3,12,15],[28,3,1,15,16],[29,1,1,16,17],[31,1,1,17,18],[36,1,1,18,19],[42,1,1,19,20],[43,1,1,20,21]]],[1,7,7,21,28,[[51,1,1,21,22],[69,1,1,22,23],[70,2,2,23,25],[71,1,1,25,26],[72,1,1,26,27],[83,1,1,27,28]]],[2,15,12,28,40,[[107,5,3,28,31],[108,1,1,31,32],[109,5,4,32,36],[110,2,2,36,38],[111,1,1,38,39],[113,1,1,39,40]]],[3,2,2,40,42,[[122,1,1,40,41],[128,1,1,41,42]]],[4,13,12,42,54,[[157,1,1,42,43],[165,1,1,43,44],[166,1,1,44,45],[173,3,3,45,48],[174,4,3,48,51],[179,2,2,51,53],[185,1,1,53,54]]],[5,3,3,54,57,[[188,2,2,54,56],[192,1,1,56,57]]],[6,20,16,57,73,[[215,2,2,57,59],[218,1,1,59,60],[219,3,2,60,62],[224,7,7,62,69],[226,1,1,69,70],[227,6,3,70,73]]],[7,2,2,73,75,[[232,1,1,73,74],[233,1,1,74,75]]],[8,4,4,75,79,[[237,1,1,75,76],[250,1,1,76,77],[255,1,1,77,78],[257,1,1,78,79]]],[9,3,3,79,82,[[283,1,1,79,80],[285,1,1,80,81],[286,1,1,81,82]]],[10,16,16,82,98,[[291,1,1,82,83],[292,4,4,83,87],[293,1,1,87,88],[301,1,1,88,89],[304,2,2,89,91],[305,3,3,91,94],[307,1,1,94,95],[309,1,1,95,96],[312,2,2,96,98]]],[11,22,22,98,120,[[315,2,2,98,100],[316,3,3,100,103],[320,1,1,103,104],[321,1,1,104,105],[323,1,1,105,106],[324,1,1,106,107],[326,1,1,107,108],[327,2,2,108,110],[330,1,1,110,111],[333,2,2,111,113],[334,1,1,113,114],[335,2,2,114,116],[336,4,4,116,120]]],[12,2,2,120,122,[[339,1,1,120,121],[341,1,1,121,122]]],[13,12,12,122,134,[[378,1,1,122,123],[379,1,1,123,124],[381,1,1,124,125],[386,1,1,125,126],[388,3,3,126,129],[390,1,1,129,130],[391,1,1,130,131],[392,1,1,131,132],[393,1,1,132,133],[395,1,1,133,134]]],[16,2,1,134,135,[[427,2,1,134,135]]],[17,3,3,135,138,[[436,1,1,135,136],[452,1,1,136,137],[466,1,1,137,138]]],[18,12,12,138,150,[[499,2,2,138,140],[504,1,1,140,141],[512,1,1,141,142],[527,1,1,142,143],[528,1,1,143,144],[546,1,1,144,145],[548,1,1,145,146],[586,1,1,146,147],[590,1,1,147,148],[608,1,1,148,149],[616,1,1,149,150]]],[19,14,14,150,164,[[628,1,1,150,151],[631,1,1,151,152],[633,1,1,152,153],[637,1,1,153,154],[642,1,1,154,155],[646,1,1,155,156],[647,1,1,156,157],[650,2,2,157,159],[655,1,1,159,160],[656,1,1,160,161],[657,2,2,161,163],[658,1,1,163,164]]],[20,1,1,164,165,[[663,1,1,164,165]]],[21,7,7,165,172,[[671,1,1,165,166],[673,2,2,166,168],[676,1,1,168,169],[678,3,3,169,172]]],[22,5,4,172,176,[[686,1,1,172,173],[727,1,1,173,174],[728,2,1,174,175],[744,1,1,175,176]]],[23,9,9,176,185,[[759,2,2,176,178],[760,2,2,178,180],[764,2,2,180,182],[766,1,1,182,183],[794,1,1,183,184],[796,1,1,184,185]]],[24,3,2,185,187,[[798,2,1,185,186],[801,1,1,186,187]]],[25,10,9,187,196,[[817,4,3,187,190],[820,2,2,190,192],[822,1,1,192,193],[823,1,1,193,194],[824,1,1,194,195],[845,1,1,195,196]]],[27,4,4,196,200,[[863,2,2,196,198],[865,1,1,198,199],[871,1,1,199,200]]],[32,1,1,200,201,[[899,1,1,200,201]]],[37,2,1,201,202,[[923,2,1,201,202]]]],[54,75,507,534,619,644,646,658,738,740,741,756,775,778,780,805,844,939,1093,1319,1344,1562,2063,2092,2094,2143,2163,2522,3258,3260,3264,3284,3327,3332,3335,3337,3347,3356,3396,3457,3830,4071,5069,5278,5311,5460,5465,5466,5476,5477,5485,5601,5607,5819,5882,5887,5972,6630,6651,6738,6755,6757,6911,6912,6913,6914,6915,6918,6925,6966,6982,6983,6984,7135,7160,7259,7593,7760,7790,8474,8548,8573,8728,8783,8789,8790,8792,8843,9134,9239,9249,9251,9259,9262,9340,9407,9522,9532,9578,9589,9622,9623,9633,9753,9778,9830,9851,9898,9927,9958,10026,10120,10138,10146,10196,10201,10210,10214,10217,10220,10332,10394,11450,11455,11506,11618,11646,11647,11654,11678,11705,11735,11756,11792,12731,12890,13274,13606,14213,14214,14295,14424,14688,14696,14943,14982,15769,15822,16150,16252,16408,16493,16560,16657,16827,16951,16974,17066,17069,17220,17239,17262,17268,17285,17412,17543,17575,17582,17623,17641,17642,17645,17811,18637,18663,18935,19323,19325,19339,19343,19436,19439,19480,20178,20277,20344,20445,20765,20806,20807,20883,20891,20965,20983,21009,21624,22107,22110,22138,22239,22670,23062]]],["+",[3,3,[[6,1,1,0,1,[[224,1,1,0,1]]],[17,1,1,1,2,[[436,1,1,1,2]]],[22,1,1,2,3,[[686,1,1,2,3]]]],[6915,12890,17811]]],["dam",[5,4,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,1,1,1,2,[[111,1,1,1,2]]],[4,3,2,2,4,[[174,3,2,2,4]]]],[2143,3396,5476,5477]]],["mother",[141,133,[[0,17,16,0,16,[[1,1,1,0,1],[2,1,1,1,2],[19,1,1,2,3],[20,1,1,3,4],[23,3,3,4,7],[26,4,3,7,10],[27,2,2,10,12],[29,1,1,12,13],[31,1,1,13,14],[36,1,1,14,15],[43,1,1,15,16]]],[1,4,4,16,20,[[51,1,1,16,17],[69,1,1,17,18],[70,2,2,18,20]]],[2,9,7,20,27,[[107,3,2,20,22],[108,1,1,22,23],[109,3,2,23,25],[110,2,2,25,27]]],[3,1,1,27,28,[[122,1,1,27,28]]],[4,9,9,28,37,[[157,1,1,28,29],[165,1,1,29,30],[173,3,3,30,33],[174,1,1,33,34],[179,2,2,34,36],[185,1,1,36,37]]],[5,3,3,37,40,[[188,2,2,37,39],[192,1,1,39,40]]],[6,15,12,40,52,[[215,2,2,40,42],[218,1,1,42,43],[224,6,6,43,49],[227,6,3,49,52]]],[7,1,1,52,53,[[233,1,1,52,53]]],[8,3,3,53,56,[[237,1,1,53,54],[250,1,1,54,55],[257,1,1,55,56]]],[9,3,3,56,59,[[283,1,1,56,57],[285,1,1,57,58],[286,1,1,58,59]]],[10,10,10,59,69,[[291,1,1,59,60],[292,4,4,60,64],[293,1,1,64,65],[305,1,1,65,66],[307,1,1,66,67],[309,1,1,67,68],[312,1,1,68,69]]],[11,9,9,69,78,[[315,2,2,69,71],[316,3,3,71,74],[321,1,1,74,75],[323,1,1,75,76],[336,2,2,76,78]]],[12,2,2,78,80,[[339,1,1,78,79],[341,1,1,79,80]]],[13,3,3,80,83,[[381,1,1,80,81],[388,2,2,81,83]]],[16,2,1,83,84,[[427,2,1,83,84]]],[17,1,1,84,85,[[452,1,1,84,85]]],[18,6,6,85,91,[[504,1,1,85,86],[512,1,1,86,87],[528,1,1,87,88],[586,1,1,88,89],[590,1,1,89,90],[608,1,1,90,91]]],[19,14,14,91,105,[[628,1,1,91,92],[631,1,1,92,93],[633,1,1,93,94],[637,1,1,94,95],[642,1,1,95,96],[646,1,1,96,97],[647,1,1,97,98],[650,2,2,98,100],[655,1,1,100,101],[656,1,1,101,102],[657,2,2,102,104],[658,1,1,104,105]]],[21,4,4,105,109,[[673,1,1,105,106],[676,1,1,106,107],[678,2,2,107,109]]],[22,3,3,109,112,[[727,1,1,109,110],[728,1,1,110,111],[744,1,1,111,112]]],[23,7,7,112,119,[[759,2,2,112,114],[760,1,1,114,115],[764,2,2,115,117],[766,1,1,117,118],[794,1,1,118,119]]],[25,8,8,119,127,[[817,3,3,119,122],[820,2,2,122,124],[823,1,1,124,125],[824,1,1,125,126],[845,1,1,126,127]]],[27,4,4,127,131,[[863,2,2,127,129],[865,1,1,129,130],[871,1,1,130,131]]],[32,1,1,131,132,[[899,1,1,131,132]]],[37,2,1,132,133,[[923,2,1,132,133]]]],[54,75,507,534,644,646,658,738,740,741,778,780,844,939,1093,1344,1562,2063,2092,2094,3258,3260,3284,3327,3332,3347,3356,3830,5069,5278,5460,5465,5466,5485,5601,5607,5819,5882,5887,5972,6630,6651,6738,6911,6912,6913,6914,6918,6925,6982,6983,6984,7160,7259,7593,7790,8474,8548,8573,8728,8783,8789,8790,8792,8843,9262,9340,9407,9532,9578,9589,9622,9623,9633,9778,9830,10214,10217,10332,10394,11506,11647,11654,12731,13274,14295,14424,14696,15769,15822,16150,16408,16493,16560,16657,16827,16951,16974,17066,17069,17220,17239,17262,17268,17285,17582,17623,17641,17645,18637,18663,18935,19323,19325,19343,19436,19439,19480,20178,20765,20806,20807,20883,20891,20983,21009,21624,22107,22110,22138,22239,22670,23062]]],["mother's",[66,61,[[0,9,6,0,6,[[23,2,2,0,2],[26,1,1,2,3],[27,2,1,3,4],[28,3,1,4,5],[42,1,1,5,6]]],[1,2,2,6,8,[[72,1,1,6,7],[83,1,1,7,8]]],[2,5,4,8,12,[[107,2,1,8,9],[109,2,2,9,11],[113,1,1,11,12]]],[3,1,1,12,13,[[128,1,1,12,13]]],[4,1,1,13,14,[[166,1,1,13,14]]],[6,4,3,14,17,[[219,3,2,14,16],[226,1,1,16,17]]],[7,1,1,17,18,[[232,1,1,17,18]]],[8,1,1,18,19,[[255,1,1,18,19]]],[10,6,6,19,25,[[301,1,1,19,20],[304,2,2,20,22],[305,2,2,22,24],[312,1,1,24,25]]],[11,13,13,25,38,[[320,1,1,25,26],[324,1,1,26,27],[326,1,1,27,28],[327,2,2,28,30],[330,1,1,30,31],[333,2,2,31,33],[334,1,1,33,34],[335,2,2,34,36],[336,2,2,36,38]]],[13,9,9,38,47,[[378,1,1,38,39],[379,1,1,39,40],[386,1,1,40,41],[388,1,1,41,42],[390,1,1,42,43],[391,1,1,43,44],[392,1,1,44,45],[393,1,1,45,46],[395,1,1,46,47]]],[17,1,1,47,48,[[466,1,1,47,48]]],[18,6,6,48,54,[[499,2,2,48,50],[527,1,1,50,51],[546,1,1,51,52],[548,1,1,52,53],[616,1,1,53,54]]],[20,1,1,54,55,[[663,1,1,54,55]]],[21,3,3,55,58,[[671,1,1,55,56],[673,1,1,56,57],[678,1,1,57,58]]],[22,1,1,58,59,[[728,1,1,58,59]]],[23,1,1,59,60,[[796,1,1,59,60]]],[25,1,1,60,61,[[817,1,1,60,61]]]],[619,658,756,775,805,1319,2163,2522,3264,3335,3337,3457,4071,5311,6755,6757,6966,7135,7760,9134,9239,9249,9251,9259,9522,9753,9851,9898,9927,9958,10026,10120,10138,10146,10196,10201,10210,10220,11450,11455,11618,11646,11678,11705,11735,11756,11792,13606,14213,14214,14688,14943,14982,16252,17412,17543,17575,17642,18663,20277,20807]]],["mothers",[3,3,[[23,1,1,0,1,[[760,1,1,0,1]]],[24,2,2,1,3,[[798,1,1,1,2],[801,1,1,2,3]]]],[19339,20344,20445]]],["mothers'",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20344]]],["parting",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20965]]]]},{"k":"H518","v":[["*",[999,871,[[0,72,64,0,64,[[3,2,1,0,1],[12,3,2,1,3],[13,2,1,3,4],[14,2,2,4,6],[17,5,5,6,11],[19,1,1,11,12],[22,2,2,12,14],[23,9,8,14,22],[24,1,1,22,23],[25,1,1,23,24],[26,2,2,24,26],[27,3,3,26,29],[29,3,3,29,32],[30,6,3,32,35],[31,3,3,35,38],[32,1,1,38,39],[33,2,2,39,41],[34,1,1,41,42],[36,2,2,42,44],[37,1,1,44,45],[38,2,2,45,47],[39,1,1,47,48],[41,4,4,48,52],[42,4,4,52,56],[43,3,3,56,59],[46,5,4,59,63],[49,1,1,63,64]]],[1,59,52,64,116,[[50,2,1,64,65],[53,2,2,65,67],[57,2,2,67,69],[58,1,1,69,70],[59,1,1,70,71],[61,2,2,71,73],[62,1,1,73,74],[64,1,1,74,75],[65,1,1,75,76],[66,1,1,76,77],[67,1,1,77,78],[68,3,2,78,80],[69,1,1,80,81],[70,15,14,81,95],[71,16,13,95,108],[72,1,1,108,109],[78,1,1,109,110],[81,2,1,110,111],[82,2,2,111,113],[83,2,2,113,115],[89,1,1,115,116]]],[2,90,82,116,198,[[90,3,3,116,119],[91,3,3,119,122],[92,7,4,122,126],[93,4,4,126,130],[94,4,4,130,134],[95,1,1,134,135],[96,3,3,135,138],[101,2,2,138,140],[102,14,14,140,154],[103,3,3,154,157],[104,3,3,157,160],[106,1,1,160,161],[108,1,1,161,162],[109,1,1,162,163],[110,2,2,163,165],[111,1,1,165,166],[114,5,5,166,171],[115,8,7,171,178],[116,24,20,178,198]]],[3,63,57,198,255,[[121,5,4,198,202],[126,2,2,202,204],[127,4,3,204,207],[128,1,1,207,208],[129,5,3,208,211],[130,5,4,211,215],[131,2,2,215,217],[132,2,2,217,219],[135,1,1,219,220],[136,1,1,220,221],[137,2,2,221,223],[138,3,3,223,226],[140,2,2,226,228],[142,2,2,228,230],[143,3,3,230,233],[146,7,7,233,240],[148,8,7,240,247],[149,1,1,247,248],[151,6,6,248,254],[152,1,1,254,255]]],[4,34,33,255,288,[[153,1,1,255,256],[157,1,1,256,257],[159,1,1,257,258],[160,2,2,258,260],[162,1,1,260,261],[163,3,3,261,264],[164,3,3,264,267],[167,1,1,267,268],[168,1,1,268,269],[170,2,1,269,270],[171,1,1,270,271],[172,2,2,271,273],[173,1,1,273,274],[174,3,3,274,277],[176,2,2,277,279],[177,2,2,279,281],[180,3,3,281,284],[182,2,2,284,286],[184,2,2,286,288]]],[5,20,16,288,304,[[188,3,3,288,291],[191,1,1,291,292],[193,1,1,292,293],[200,2,2,293,295],[203,2,2,295,297],[208,6,4,297,301],[209,2,2,301,303],[210,3,1,303,304]]],[6,34,29,304,333,[[212,1,1,304,305],[214,3,2,305,307],[216,5,5,307,312],[217,2,2,312,314],[219,7,5,314,319],[221,4,4,319,323],[223,2,1,323,324],[224,2,2,324,326],[225,2,1,326,327],[226,4,4,327,331],[230,1,1,331,332],[231,1,1,332,333]]],[7,9,6,333,339,[[233,1,1,333,334],[234,6,4,334,338],[235,2,1,338,339]]],[8,56,48,339,387,[[236,1,1,339,340],[237,4,3,340,343],[238,3,3,343,346],[241,3,2,346,348],[242,1,1,348,349],[243,1,1,349,350],[246,1,1,350,351],[247,3,3,351,354],[249,4,4,354,358],[250,1,1,358,359],[252,3,2,359,361],[254,2,2,361,363],[255,9,8,363,371],[256,5,4,371,375],[258,1,1,375,376],[259,3,2,376,378],[260,2,2,378,380],[261,3,2,380,382],[262,1,1,382,383],[263,1,1,383,384],[265,4,3,384,387]]],[9,36,29,387,416,[[269,2,2,387,389],[271,1,1,389,390],[276,2,1,390,391],[277,1,1,391,392],[278,2,2,392,394],[279,1,1,394,395],[280,3,3,395,398],[281,8,6,398,404],[283,2,2,404,406],[284,3,2,406,408],[285,6,5,408,413],[286,2,1,413,414],[287,1,1,414,415],[290,2,1,415,416]]],[10,38,33,416,449,[[291,3,2,416,418],[292,2,2,418,420],[293,1,1,420,421],[296,1,1,421,422],[298,2,2,422,424],[299,2,2,424,426],[301,1,1,426,427],[302,2,2,427,429],[303,1,1,429,430],[307,4,2,430,432],[308,4,3,432,435],[310,7,6,435,441],[311,2,2,441,443],[312,6,6,443,449]]],[11,38,34,449,483,[[313,3,3,449,452],[314,5,4,452,456],[315,1,1,456,457],[316,3,3,457,460],[317,3,3,460,463],[318,1,1,463,464],[319,5,2,464,466],[321,3,3,466,469],[322,2,2,469,471],[325,1,1,471,472],[326,1,1,472,473],[329,3,3,473,476],[330,1,1,476,477],[331,1,1,477,478],[332,2,2,478,480],[333,1,1,480,481],[335,2,2,481,483]]],[12,16,11,483,494,[[339,1,1,483,484],[341,1,1,484,485],[349,2,1,485,486],[350,1,1,486,487],[352,1,1,487,488],[356,2,1,488,489],[358,3,1,489,490],[359,1,1,490,491],[360,1,1,491,492],[365,3,2,492,494]]],[13,20,19,494,513,[[368,1,1,494,495],[372,2,2,495,497],[373,3,3,497,500],[376,1,1,500,501],[381,2,1,501,502],[384,5,5,502,507],[386,1,1,507,508],[387,1,1,508,509],[389,1,1,509,510],[391,1,1,510,511],[396,1,1,511,512],[399,1,1,512,513]]],[14,1,1,513,514,[[404,1,1,513,514]]],[15,11,9,514,523,[[413,1,1,514,515],[414,5,4,515,519],[416,1,1,519,520],[419,1,1,520,521],[425,3,2,521,523]]],[16,16,12,523,535,[[426,1,1,523,524],[427,2,2,524,526],[428,1,1,526,527],[429,2,1,527,528],[430,4,3,528,531],[431,1,1,531,532],[432,2,1,532,533],[433,2,1,533,534],[434,1,1,534,535]]],[17,93,89,535,624,[[436,1,1,535,536],[437,1,1,536,537],[441,3,3,537,540],[442,2,2,540,542],[443,5,5,542,547],[444,10,9,547,556],[445,3,3,556,559],[446,4,4,559,563],[448,2,2,563,565],[449,4,4,565,569],[451,1,1,569,570],[452,2,2,570,572],[454,1,1,572,573],[455,2,2,573,575],[456,2,2,575,577],[457,3,3,577,580],[459,1,1,580,581],[462,5,4,581,585],[465,1,1,585,586],[466,17,17,586,603],[468,4,4,603,607],[469,3,3,607,610],[470,2,2,610,612],[471,4,4,612,616],[472,4,2,616,618],[473,2,2,618,620],[474,3,3,620,623],[477,1,1,623,624]]],[18,41,36,624,660,[[478,2,2,624,626],[484,4,3,626,629],[504,2,1,629,630],[518,1,1,630,631],[521,1,1,631,632],[527,2,2,632,634],[536,1,1,634,635],[540,1,1,635,636],[543,1,1,636,637],[545,1,1,637,638],[550,1,1,638,639],[555,1,1,639,640],[558,1,1,640,641],[566,3,3,641,644],[567,1,1,644,645],[571,1,1,645,646],[572,2,2,646,648],[604,2,1,648,649],[607,1,1,649,650],[608,1,1,650,651],[609,4,3,651,654],[614,3,2,654,656],[615,1,1,656,657],[616,3,3,657,660]]],[19,30,26,660,686,[[628,2,2,660,662],[629,3,3,662,665],[630,3,3,665,668],[631,3,2,668,670],[633,2,2,670,672],[636,1,1,672,673],[645,1,1,673,674],[646,1,1,674,675],[647,2,1,675,676],[649,1,1,676,677],[650,3,3,677,680],[651,2,2,680,682],[652,2,1,682,683],[654,2,2,683,685],[657,2,1,685,686]]],[20,21,17,686,703,[[661,1,1,686,687],[662,3,3,687,690],[663,4,3,690,693],[664,1,1,693,694],[666,2,2,694,696],[668,3,3,696,699],[669,5,3,699,702],[670,2,1,702,703]]],[21,10,7,703,710,[[671,1,1,703,704],[672,2,1,704,705],[673,2,1,705,706],[675,1,1,706,707],[677,1,1,707,708],[678,3,2,708,710]]],[22,32,30,710,740,[[679,4,3,710,713],[682,1,1,713,714],[683,1,1,714,715],[685,1,1,715,716],[686,1,1,716,717],[688,1,1,717,718],[692,1,1,718,719],[699,1,1,719,720],[700,1,1,720,721],[702,1,1,721,722],[706,1,1,722,723],[707,1,1,723,724],[708,1,1,724,725],[711,1,1,725,726],[714,1,1,726,727],[715,1,1,727,728],[720,1,1,728,729],[727,1,1,729,730],[728,1,1,730,731],[731,1,1,731,732],[733,2,2,732,734],[736,2,2,734,736],[737,1,1,736,737],[740,2,1,737,738],[743,2,2,738,740]]],[23,77,64,740,804,[[746,2,2,740,742],[747,1,1,742,743],[748,2,1,743,744],[749,4,3,744,747],[751,4,3,747,750],[753,1,1,750,751],[756,2,2,751,753],[757,1,1,753,754],[758,4,3,754,757],[759,5,3,757,760],[760,1,1,760,761],[761,2,2,761,763],[763,1,1,763,764],[764,1,1,764,765],[766,5,5,765,770],[767,4,4,770,774],[770,2,2,774,776],[771,2,1,776,777],[774,1,1,777,778],[775,3,3,778,781],[777,2,2,781,783],[781,1,1,783,784],[782,7,6,784,790],[783,1,1,790,791],[784,2,1,791,792],[786,6,5,792,797],[788,2,2,797,799],[792,1,1,799,800],[793,4,2,800,802],[794,2,1,802,803],[795,1,1,803,804]]],[24,3,3,804,807,[[797,1,1,804,805],[799,1,1,805,806],[801,1,1,806,807]]],[25,37,31,807,838,[[803,4,2,807,809],[804,3,2,809,811],[806,1,1,811,812],[813,1,1,812,813],[815,4,2,813,815],[816,1,1,815,816],[817,1,1,816,817],[818,2,2,817,819],[819,1,1,819,820],[821,4,4,820,824],[822,1,1,824,825],[823,1,1,825,826],[834,3,2,826,828],[835,1,1,828,829],[836,1,1,829,830],[837,3,3,830,833],[839,1,1,833,834],[844,1,1,834,835],[845,3,3,835,838]]],[26,1,1,838,839,[[859,1,1,838,839]]],[27,2,2,839,841,[[865,1,1,839,840],[870,1,1,840,841]]],[28,2,2,841,843,[[876,1,1,841,842],[878,1,1,842,843]]],[29,14,12,843,855,[[881,3,3,843,846],[883,1,1,846,847],[884,2,2,847,849],[885,1,1,849,850],[886,2,2,850,852],[887,5,3,852,855]]],[30,5,2,855,857,[[888,5,2,855,857]]],[32,2,2,857,859,[[897,1,1,857,858],[898,1,1,858,859]]],[33,2,2,859,861,[[900,1,1,859,860],[902,1,1,860,861]]],[34,1,1,861,862,[[904,1,1,861,862]]],[36,1,1,862,863,[[910,1,1,862,863]]],[37,7,5,863,868,[[913,2,1,863,864],[914,1,1,864,865],[916,1,1,865,866],[921,2,1,866,867],[924,1,1,867,868]]],[38,5,3,868,871,[[925,2,1,868,869],[926,2,1,869,870],[927,1,1,870,871]]]],[86,327,334,359,364,365,427,445,450,452,454,502,579,584,599,610,612,624,629,632,633,640,680,721,748,773,788,790,793,831,857,861,881,923,925,936,954,956,970,995,997,1021,1091,1115,1128,1155,1158,1186,1267,1268,1271,1289,1294,1295,1299,1301,1347,1350,1356,1426,1436,1438,1449,1510,1548,1609,1610,1712,1731,1744,1781,1820,1825,1880,1946,1951,1990,2022,2031,2039,2076,2080,2081,2082,2085,2086,2087,2088,2096,2098,2100,2104,2106,2107,2109,2115,2116,2117,2120,2121,2124,2125,2126,2128,2130,2136,2138,2139,2166,2370,2470,2486,2488,2505,2516,2744,2748,2755,2759,2767,2769,2776,2779,2784,2785,2790,2798,2808,2822,2827,2831,2837,2841,2847,2877,2891,2895,2897,3049,3052,3056,3059,3064,3073,3074,3075,3078,3079,3080,3087,3089,3105,3108,3109,3132,3154,3159,3191,3192,3196,3251,3288,3322,3347,3359,3375,3497,3499,3520,3521,3523,3527,3538,3539,3542,3545,3547,3551,3574,3575,3576,3577,3578,3579,3580,3581,3583,3585,3586,3587,3588,3589,3590,3592,3596,3597,3601,3603,3800,3811,3819,3820,3992,4018,4039,4046,4047,4065,4093,4094,4095,4116,4131,4138,4143,4177,4180,4223,4224,4301,4330,4342,4349,4393,4395,4409,4459,4468,4522,4554,4563,4564,4565,4653,4654,4656,4658,4660,4662,4663,4723,4729,4735,4738,4741,4747,4748,4815,4861,4862,4865,4867,4871,4878,4883,4927,5078,5116,5139,5156,5198,5221,5230,5236,5245,5254,5258,5324,5348,5387,5414,5438,5439,5461,5472,5490,5495,5526,5537,5549,5554,5612,5626,5669,5712,5725,5788,5799,5883,5888,5889,5947,5988,6191,6196,6278,6290,6445,6448,6449,6450,6468,6472,6491,6567,6607,6619,6657,6671,6685,6690,6691,6704,6708,6756,6769,6770,6773,6774,6838,6839,6854,6859,6900,6921,6922,6936,6956,6960,6962,6966,7082,7123,7170,7182,7184,7185,7190,7194,7223,7255,7256,7265,7285,7290,7293,7334,7340,7355,7388,7448,7474,7475,7485,7517,7518,7547,7553,7577,7627,7673,7712,7717,7736,7737,7738,7739,7744,7751,7752,7759,7776,7777,7778,7781,7833,7845,7860,7883,7895,7915,7924,7935,7952,7993,7995,8000,8094,8116,8138,8251,8279,8289,8294,8350,8367,8375,8388,8397,8410,8414,8415,8422,8423,8455,8462,8481,8503,8518,8524,8539,8546,8553,8574,8582,8705,8768,8769,8774,8778,8830,8908,9004,9010,9055,9057,9146,9158,9178,9192,9318,9329,9351,9359,9362,9414,9418,9426,9431,9433,9447,9453,9457,9486,9488,9495,9498,9508,9511,9535,9543,9545,9553,9555,9557,9561,9590,9605,9627,9633,9662,9664,9667,9705,9711,9717,9771,9782,9791,9799,9816,9878,9902,10019,10022,10023,10047,10079,10107,10117,10127,10174,10188,10340,10395,10737,10762,10793,10919,10946,10977,11005,11150,11152,11217,11304,11306,11337,11341,11343,11402,11492,11547,11556,11559,11569,11572,11596,11641,11662,11712,11836,11916,12086,12305,12309,12312,12314,12319,12362,12481,12692,12696,12721,12738,12739,12756,12776,12783,12787,12791,12806,12810,12822,12847,12880,12896,12983,12984,13006,13012,13020,13032,13033,13034,13035,13047,13054,13066,13067,13070,13071,13074,13075,13078,13081,13090,13100,13101,13110,13118,13121,13122,13162,13163,13186,13188,13189,13195,13244,13273,13276,13302,13332,13338,13359,13361,13392,13409,13412,13461,13485,13486,13495,13497,13581,13593,13595,13597,13601,13604,13607,13608,13609,13612,13613,13614,13617,13619,13621,13624,13626,13627,13655,13673,13682,13683,13697,13699,13715,13726,13727,13744,13747,13748,13765,13782,13789,13797,13811,13843,13844,13847,13930,13941,13943,13998,13999,14007,14288,14548,14591,14680,14686,14805,14845,14891,14913,15035,15147,15225,15356,15357,15361,15388,15449,15461,15465,16122,16143,16150,16154,16155,16163,16227,16228,16238,16247,16258,16263,16410,16411,16434,16436,16437,16479,16485,16489,16502,16506,16541,16568,16650,16903,16944,16965,17042,17046,17059,17062,17090,17093,17134,17191,17193,17283,17371,17391,17392,17393,17405,17408,17409,17420,17473,17475,17497,17503,17504,17516,17519,17521,17537,17545,17561,17576,17606,17639,17647,17649,17672,17673,17674,17737,17748,17791,17827,17872,17952,18047,18066,18108,18189,18209,18234,18300,18338,18371,18499,18660,18664,18721,18750,18751,18795,18799,18802,18862,18903,18915,18987,18993,19012,19028,19059,19060,19067,19124,19142,19151,19199,19265,19266,19283,19300,19311,19315,19316,19326,19334,19351,19381,19384,19413,19425,19458,19459,19460,19471,19478,19492,19506,19508,19522,19576,19587,19614,19673,19721,19727,19728,19795,19800,19884,19899,19901,19911,19912,19913,19916,19935,19945,19980,19981,19985,19988,19990,20024,20036,20107,20136,20147,20211,20226,20322,20386,20464,20497,20499,20508,20513,20557,20703,20747,20751,20757,20810,20841,20844,20852,20898,20926,20928,20934,20957,20990,21291,21307,21321,21350,21364,21366,21381,21444,21583,21609,21621,21624,22036,22148,22220,22293,22347,22398,22399,22402,22445,22452,22459,22466,22488,22492,22497,22498,22499,22514,22515,22641,22656,22696,22724,22751,22868,22919,22928,22962,23040,23086,23095,23105,23130]]],["+",[180,172,[[0,17,16,0,16,[[14,1,1,0,1],[23,3,3,1,4],[27,2,2,4,6],[31,2,2,6,8],[34,1,1,8,9],[38,2,2,9,11],[39,1,1,11,12],[41,2,2,12,14],[43,1,1,14,15],[46,2,1,15,16]]],[1,2,2,16,18,[[61,1,1,16,17],[71,1,1,17,18]]],[2,3,3,18,21,[[110,2,2,18,20],[111,1,1,20,21]]],[3,8,8,21,29,[[127,1,1,21,22],[130,2,2,22,24],[140,1,1,24,25],[142,2,2,25,27],[148,1,1,27,28],[151,1,1,28,29]]],[4,7,7,29,36,[[159,1,1,29,30],[162,1,1,30,31],[164,3,3,31,34],[168,1,1,34,35],[184,1,1,35,36]]],[5,7,6,36,42,[[193,1,1,36,37],[200,2,2,37,39],[203,1,1,39,40],[209,1,1,40,41],[210,2,1,41,42]]],[6,2,2,42,44,[[217,1,1,42,43],[225,1,1,43,44]]],[7,3,3,44,47,[[233,1,1,44,45],[234,2,2,45,47]]],[8,9,9,47,56,[[237,1,1,47,48],[243,1,1,48,49],[249,1,1,49,50],[256,3,3,50,53],[261,1,1,53,54],[265,2,2,54,56]]],[9,9,9,56,65,[[269,2,2,56,58],[271,1,1,58,59],[278,1,1,59,60],[279,1,1,60,61],[280,1,1,61,62],[281,1,1,62,63],[285,1,1,63,64],[287,1,1,64,65]]],[10,8,8,65,73,[[298,1,1,65,66],[307,2,2,66,68],[308,1,1,68,69],[310,1,1,69,70],[312,3,3,70,73]]],[11,17,17,73,90,[[316,2,2,73,75],[317,3,3,75,78],[319,1,1,78,79],[321,2,2,79,81],[322,1,1,81,82],[325,1,1,82,83],[326,1,1,83,84],[329,3,3,84,87],[331,1,1,87,88],[335,2,2,88,90]]],[12,3,3,90,93,[[339,1,1,90,91],[352,1,1,91,92],[360,1,1,92,93]]],[13,6,6,93,99,[[368,1,1,93,94],[384,2,2,94,96],[387,1,1,96,97],[389,1,1,97,98],[399,1,1,98,99]]],[15,2,2,99,101,[[414,2,2,99,101]]],[16,3,3,101,104,[[427,2,2,101,103],[430,1,1,103,104]]],[17,2,2,104,106,[[471,1,1,104,105],[477,1,1,105,106]]],[18,5,4,106,110,[[478,2,2,106,108],[604,2,1,108,109],[608,1,1,109,110]]],[19,3,2,110,112,[[631,2,1,110,111],[645,1,1,111,112]]],[20,2,2,112,114,[[663,1,1,112,113],[666,1,1,113,114]]],[21,2,2,114,116,[[672,1,1,114,115],[673,1,1,115,116]]],[22,11,11,116,127,[[683,1,1,116,117],[692,1,1,117,118],[708,1,1,118,119],[711,1,1,119,120],[715,1,1,120,121],[720,1,1,121,122],[733,2,2,122,124],[737,1,1,124,125],[743,2,2,125,127]]],[23,23,20,127,147,[[747,1,1,127,128],[751,2,2,128,130],[753,1,1,130,131],[759,2,1,131,132],[760,1,1,132,133],[763,1,1,133,134],[764,1,1,134,135],[766,3,3,135,138],[767,1,1,138,139],[775,1,1,139,140],[782,2,2,140,142],[783,1,1,142,143],[788,1,1,143,144],[793,2,1,144,145],[794,2,1,145,146],[795,1,1,146,147]]],[24,1,1,147,148,[[801,1,1,147,148]]],[25,17,16,148,164,[[804,1,1,148,149],[806,1,1,149,150],[813,1,1,150,151],[818,2,2,151,153],[821,1,1,153,154],[834,3,2,154,156],[835,1,1,156,157],[837,3,3,157,160],[839,1,1,160,161],[845,3,3,161,164]]],[26,1,1,164,165,[[859,1,1,164,165]]],[27,1,1,165,166,[[870,1,1,165,166]]],[29,4,4,166,170,[[881,2,2,166,168],[883,1,1,168,169],[886,1,1,169,170]]],[32,1,1,170,171,[[898,1,1,170,171]]],[37,1,1,171,172,[[914,1,1,171,172]]]],[364,610,624,629,788,790,954,956,1021,1155,1158,1186,1267,1268,1347,1438,1825,2121,3347,3359,3375,4046,4138,4143,4468,4522,4554,4735,4878,5116,5198,5245,5254,5258,5348,5788,5988,6191,6196,6278,6468,6491,6708,6936,7170,7184,7190,7255,7388,7547,7776,7777,7778,7915,7995,8000,8094,8116,8138,8289,8350,8375,8410,8539,8582,9004,9318,9329,9359,9433,9488,9498,9511,9605,9627,9662,9664,9667,9717,9782,9791,9816,9878,9902,10019,10022,10023,10079,10174,10188,10340,10793,11005,11217,11559,11572,11641,11662,11916,12309,12319,12738,12739,12791,13765,13930,13941,13943,16122,16150,16506,16903,17408,17473,17561,17576,17748,17952,18234,18300,18371,18499,18750,18751,18802,18903,18915,19012,19142,19151,19199,19326,19351,19413,19425,19460,19471,19478,19492,19721,19899,19901,19935,20024,20147,20211,20226,20464,20508,20557,20703,20841,20844,20928,21291,21307,21321,21364,21366,21381,21444,21609,21621,21624,22036,22220,22398,22402,22445,22492,22656,22928]]],["Can",[2,2,[[19,1,1,0,1,[[633,1,1,0,1]]],[23,1,1,1,2,[[767,1,1,1,2]]]],[16568,19508]]],["Doubtless",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4138]]],["Either",[1,1,[[12,1,1,0,1,[[358,1,1,0,1]]]],[10946]]],["For",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20107]]],["I",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[4018]]],["If",[208,208,[[0,16,16,0,16,[[3,1,1,0,1],[17,2,2,1,3],[22,1,1,3,4],[24,1,1,4,5],[27,1,1,5,6],[30,2,2,6,8],[31,1,1,8,9],[33,1,1,9,10],[41,1,1,10,11],[42,2,2,11,13],[43,1,1,13,14],[46,1,1,14,15],[49,1,1,15,16]]],[1,20,20,16,36,[[64,1,1,16,17],[67,1,1,17,18],[70,7,7,18,25],[71,9,9,25,34],[82,1,1,34,35],[83,1,1,35,36]]],[2,8,8,36,44,[[90,1,1,36,37],[92,1,1,37,38],[93,1,1,38,39],[96,1,1,39,40],[102,1,1,40,41],[114,1,1,41,42],[115,1,1,42,43],[116,1,1,43,44]]],[3,10,10,44,54,[[121,1,1,44,45],[128,1,1,45,46],[130,1,1,46,47],[132,1,1,47,48],[137,1,1,48,49],[138,2,2,49,51],[140,1,1,51,52],[148,2,2,52,54]]],[4,3,3,54,57,[[180,1,1,54,55],[182,1,1,55,56],[184,1,1,56,57]]],[5,1,1,57,58,[[203,1,1,57,58]]],[6,10,10,58,68,[[214,1,1,58,59],[216,2,2,59,61],[219,2,2,61,63],[221,2,2,63,65],[226,3,3,65,68]]],[7,1,1,68,69,[[235,1,1,68,69]]],[8,12,12,69,81,[[237,1,1,69,70],[241,1,1,70,71],[242,1,1,71,72],[247,1,1,72,73],[249,1,1,73,74],[252,1,1,74,75],[254,1,1,75,76],[255,3,3,76,79],[261,1,1,79,80],[262,1,1,80,81]]],[9,4,4,81,85,[[276,1,1,81,82],[281,2,2,82,84],[284,1,1,84,85]]],[10,6,6,85,91,[[291,1,1,85,86],[292,1,1,86,87],[302,2,2,87,89],[303,1,1,89,90],[312,1,1,90,91]]],[11,5,5,91,96,[[313,2,2,91,93],[319,1,1,93,94],[321,1,1,94,95],[322,1,1,95,96]]],[12,3,3,96,99,[[349,1,1,96,97],[350,1,1,97,98],[356,1,1,98,99]]],[13,4,4,99,103,[[372,1,1,99,100],[376,1,1,100,101],[384,1,1,101,102],[386,1,1,102,103]]],[15,2,2,103,105,[[414,2,2,103,105]]],[16,8,8,105,113,[[426,1,1,105,106],[428,1,1,106,107],[430,2,2,107,109],[431,1,1,109,110],[432,1,1,110,111],[433,1,1,111,112],[434,1,1,112,113]]],[17,46,46,113,159,[[443,4,4,113,117],[444,7,7,117,124],[445,2,2,124,126],[446,3,3,126,129],[449,1,1,129,130],[452,1,1,130,131],[454,1,1,131,132],[457,1,1,132,133],[462,1,1,133,134],[466,16,16,134,150],[468,4,4,150,154],[469,2,2,154,156],[470,2,2,156,158],[471,1,1,158,159]]],[18,13,13,159,172,[[484,2,2,159,161],[521,1,1,161,162],[527,1,1,162,163],[543,1,1,163,164],[550,1,1,164,165],[566,2,2,165,167],[607,1,1,167,168],[609,1,1,168,169],[614,2,2,169,171],[616,1,1,171,172]]],[19,7,7,172,179,[[628,1,1,172,173],[629,1,1,173,174],[636,1,1,174,175],[649,1,1,175,176],[651,1,1,176,177],[652,1,1,177,178],[657,1,1,178,179]]],[20,5,5,179,184,[[663,1,1,179,180],[664,1,1,180,181],[668,2,2,181,183],[669,1,1,183,184]]],[21,2,2,184,186,[[671,1,1,184,185],[678,1,1,185,186]]],[22,4,4,186,190,[[679,1,1,186,187],[685,1,1,187,188],[736,2,2,188,190]]],[23,13,13,190,203,[[748,1,1,190,191],[758,1,1,191,192],[759,1,1,192,193],[770,1,1,193,194],[775,2,2,194,196],[777,2,2,196,198],[782,1,1,198,199],[784,1,1,199,200],[786,2,2,200,202],[793,1,1,202,203]]],[30,1,1,203,204,[[888,1,1,203,204]]],[36,1,1,204,205,[[910,1,1,204,205]]],[37,2,2,205,207,[[913,1,1,205,206],[921,1,1,206,207]]],[38,1,1,207,208,[[926,1,1,207,208]]]],[86,450,452,579,680,793,881,923,936,995,1271,1294,1301,1356,1449,1510,1946,2022,2080,2081,2085,2087,2096,2107,2109,2115,2116,2117,2121,2126,2130,2136,2138,2139,2488,2505,2748,2785,2798,2891,3056,3520,3527,3587,3811,4065,4116,4223,4342,4393,4395,4459,4738,4747,5669,5712,5799,6290,6607,6671,6690,6769,6773,6838,6859,6956,6960,6962,7194,7265,7334,7355,7474,7517,7627,7717,7736,7737,7751,7924,7935,8251,8397,8422,8503,8769,8774,9158,9178,9192,9508,9543,9545,9711,9771,9799,10737,10762,10919,11304,11402,11569,11596,12312,12314,12721,12756,12783,12787,12806,12810,12822,12847,13033,13034,13035,13047,13054,13067,13070,13071,13074,13078,13081,13100,13101,13118,13121,13122,13195,13273,13302,13412,13495,13593,13595,13597,13601,13604,13607,13608,13609,13612,13613,13614,13617,13619,13621,13626,13627,13655,13673,13682,13683,13697,13699,13726,13727,13747,13999,14007,14591,14680,14891,15035,15356,15357,16143,16163,16227,16228,16247,16411,16437,16650,17042,17090,17134,17283,17405,17420,17497,17503,17516,17545,17649,17673,17791,18795,18799,19028,19311,19334,19576,19727,19728,19795,19800,19912,19945,19985,19990,20136,22515,22868,22919,23040,23105]]],["Seeing",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13186]]],["Surely",[11,11,[[3,2,2,0,2,[[130,1,1,0,1],[148,1,1,1,2]]],[4,1,1,2,3,[[153,1,1,2,3]]],[17,1,1,3,4,[[466,1,1,3,4]]],[18,2,2,4,6,[[609,1,1,4,5],[616,1,1,5,6]]],[19,1,1,6,7,[[630,1,1,6,7]]],[20,1,1,7,8,[[668,1,1,7,8]]],[22,2,2,8,10,[[700,1,1,8,9],[707,1,1,9,10]]],[29,1,1,10,11,[[886,1,1,10,11]]]],[4131,4729,4927,13624,16154,16258,16489,17504,18066,18209,22488]]],["That",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[721]]],["Though",[16,16,[[6,2,2,0,2,[[223,1,1,0,1],[225,1,1,1,2]]],[17,5,5,2,7,[[449,1,1,2,3],[451,1,1,3,4],[455,2,2,4,6],[462,1,1,6,7]]],[18,3,3,7,10,[[504,1,1,7,8],[545,1,1,8,9],[615,1,1,9,10]]],[19,1,1,10,11,[[654,1,1,10,11]]],[23,1,1,11,12,[[759,1,1,11,12]]],[27,1,1,12,13,[[865,1,1,12,13]]],[29,1,1,13,14,[[887,1,1,13,14]]],[30,1,1,14,15,[[888,1,1,14,15]]],[33,1,1,15,16,[[900,1,1,15,16]]]],[6900,6936,13189,13244,13332,13338,13497,14288,14913,16238,17191,19316,22148,22497,22514,22696]]],["When",[9,9,[[8,1,1,0,1,[[250,1,1,0,1]]],[17,1,1,1,2,[[442,1,1,1,2]]],[18,4,4,2,6,[[527,1,1,2,3],[540,1,1,3,4],[555,1,1,4,5],[571,1,1,5,6]]],[19,1,1,6,7,[[630,1,1,6,7]]],[22,2,2,7,9,[[682,1,1,7,8],[706,1,1,8,9]]]],[7577,13012,14686,14845,15147,15449,16479,17737,18189]]],["Whereas",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13409]]],["Whether",[2,2,[[10,1,1,0,1,[[310,1,1,0,1]]],[23,1,1,1,2,[[786,1,1,1,2]]]],[9426,19981]]],["about",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9414]]],["and",[3,3,[[17,2,2,0,2,[[436,1,1,0,1],[437,1,1,1,2]]],[23,1,1,2,3,[[749,1,1,2,3]]]],[12880,12896,19067]]],["but",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17371]]],["can",[2,1,[[9,2,1,0,1,[[285,2,1,0,1]]]],[8546]]],["cannot",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7673]]],["doth",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17193]]],["else",[1,1,[[12,1,1,0,1,[[358,1,1,0,1]]]],[10946]]],["even",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22293]]],["if",[381,352,[[0,28,26,0,26,[[3,1,1,0,1],[12,3,2,1,3],[14,1,1,3,4],[17,3,3,4,7],[19,1,1,7,8],[22,1,1,8,9],[23,5,4,9,13],[26,1,1,13,14],[29,2,2,14,16],[30,2,2,16,18],[32,1,1,18,19],[33,1,1,19,20],[41,1,1,20,21],[42,2,2,21,23],[43,1,1,23,24],[46,2,2,24,26]]],[1,32,29,26,55,[[50,2,1,26,27],[53,2,2,27,29],[57,2,2,29,31],[58,1,1,31,32],[59,1,1,32,33],[61,1,1,33,34],[62,1,1,34,35],[68,1,1,35,36],[69,1,1,36,37],[70,8,8,37,45],[71,5,4,45,49],[72,1,1,49,50],[78,1,1,50,51],[81,2,1,51,52],[82,1,1,52,53],[83,1,1,53,54],[89,1,1,54,55]]],[2,75,70,55,125,[[90,2,2,55,57],[91,3,3,57,60],[92,4,3,60,63],[93,3,3,63,66],[94,4,4,66,70],[95,1,1,70,71],[96,2,2,71,73],[101,2,2,73,75],[102,13,13,75,88],[103,3,3,88,91],[104,3,3,91,94],[106,1,1,94,95],[108,1,1,95,96],[109,1,1,96,97],[114,4,4,97,101],[115,7,6,101,107],[116,21,18,107,125]]],[3,34,33,125,158,[[121,4,4,125,129],[126,1,1,129,130],[127,2,1,130,131],[131,2,2,131,133],[132,1,1,133,134],[135,1,1,134,135],[136,1,1,135,136],[137,1,1,136,137],[138,1,1,137,138],[143,3,3,138,141],[146,7,7,141,148],[148,4,4,148,152],[149,1,1,152,153],[151,5,5,153,158]]],[4,19,19,158,177,[[157,1,1,158,159],[160,1,1,159,160],[163,3,3,160,163],[167,1,1,163,164],[171,1,1,164,165],[172,2,2,165,167],[173,1,1,167,168],[174,3,3,168,171],[176,1,1,171,172],[177,2,2,172,174],[180,2,2,174,176],[182,1,1,176,177]]],[5,11,9,177,186,[[188,3,3,177,180],[208,6,4,180,184],[209,1,1,184,185],[210,1,1,185,186]]],[6,14,13,186,199,[[214,1,1,186,187],[216,2,2,187,189],[217,1,1,189,190],[219,4,3,190,193],[221,1,1,193,194],[223,1,1,194,195],[224,2,2,195,197],[226,1,1,197,198],[231,1,1,198,199]]],[7,3,2,199,201,[[234,2,1,199,200],[235,1,1,200,201]]],[8,22,21,201,222,[[236,1,1,201,202],[237,2,2,202,204],[238,2,2,204,206],[241,2,1,206,207],[246,1,1,207,208],[247,2,2,208,210],[249,1,1,210,211],[252,1,1,211,212],[255,5,5,212,217],[256,2,2,217,219],[258,1,1,219,220],[260,1,1,220,221],[261,1,1,221,222]]],[9,12,11,222,233,[[276,1,1,222,223],[277,1,1,223,224],[278,1,1,224,225],[280,1,1,225,226],[281,3,3,226,229],[283,2,2,229,231],[284,2,1,231,232],[285,1,1,232,233]]],[10,12,11,233,244,[[291,1,1,233,234],[293,1,1,234,235],[296,1,1,235,236],[299,2,2,236,238],[301,1,1,238,239],[308,2,1,239,240],[310,2,2,240,242],[311,2,2,242,244]]],[11,9,6,244,250,[[314,2,1,244,245],[318,1,1,245,246],[319,3,1,246,247],[330,1,1,247,248],[332,1,1,248,249],[333,1,1,249,250]]],[12,6,5,250,255,[[349,1,1,250,251],[356,1,1,251,252],[359,1,1,252,253],[365,3,2,253,255]]],[13,8,7,255,262,[[372,1,1,255,256],[373,3,3,256,259],[381,2,1,259,260],[391,1,1,260,261],[396,1,1,261,262]]],[15,3,3,262,265,[[414,1,1,262,263],[416,1,1,263,264],[425,1,1,264,265]]],[16,4,4,265,269,[[429,1,1,265,266],[430,1,1,266,267],[432,1,1,267,268],[433,1,1,268,269]]],[17,13,13,269,282,[[441,1,1,269,270],[444,2,2,270,272],[448,1,1,272,273],[449,1,1,273,274],[456,1,1,274,275],[459,1,1,275,276],[469,1,1,276,277],[471,2,2,277,279],[472,1,1,279,280],[473,2,2,280,282]]],[18,9,8,282,290,[[484,2,1,282,283],[518,1,1,283,284],[536,1,1,284,285],[558,1,1,285,286],[567,1,1,286,287],[572,1,1,287,288],[614,1,1,288,289],[616,1,1,289,290]]],[19,10,10,290,300,[[628,1,1,290,291],[629,2,2,291,293],[630,1,1,293,294],[633,1,1,294,295],[646,1,1,295,296],[650,2,2,296,298],[652,1,1,298,299],[657,1,1,299,300]]],[20,5,5,300,305,[[662,3,3,300,303],[669,2,2,303,305]]],[21,4,4,305,309,[[675,1,1,305,306],[677,1,1,306,307],[678,2,2,307,309]]],[22,4,4,309,313,[[679,1,1,309,310],[686,1,1,310,311],[699,1,1,311,312],[714,1,1,312,313]]],[23,25,22,313,335,[[746,1,1,313,314],[748,1,1,314,315],[749,2,1,315,316],[751,2,1,316,317],[756,2,2,317,319],[757,1,1,319,320],[758,1,1,320,321],[759,1,1,321,322],[761,2,2,322,324],[766,2,2,324,326],[767,1,1,326,327],[770,1,1,327,328],[771,2,1,328,329],[782,2,2,329,331],[784,1,1,331,332],[786,2,2,332,334],[793,1,1,334,335]]],[24,1,1,335,336,[[797,1,1,335,336]]],[25,3,3,336,339,[[821,1,1,336,337],[822,1,1,337,338],[844,1,1,338,339]]],[28,1,1,339,340,[[878,1,1,339,340]]],[29,2,2,340,342,[[881,1,1,340,341],[884,1,1,341,342]]],[30,2,1,342,343,[[888,2,1,342,343]]],[32,1,1,343,344,[[897,1,1,343,344]]],[33,1,1,344,345,[[902,1,1,344,345]]],[37,4,4,345,349,[[913,1,1,345,346],[916,1,1,346,347],[921,1,1,347,348],[924,1,1,348,349]]],[38,4,3,349,352,[[925,2,1,349,350],[926,1,1,350,351],[927,1,1,351,352]]]],[86,327,334,365,427,445,454,502,584,599,632,633,640,773,857,861,881,923,970,997,1289,1295,1299,1350,1426,1436,1548,1609,1610,1712,1731,1744,1781,1820,1880,2031,2076,2080,2082,2086,2088,2098,2100,2104,2106,2116,2120,2125,2128,2166,2370,2470,2486,2516,2744,2755,2759,2767,2769,2776,2779,2784,2790,2808,2822,2827,2831,2837,2841,2847,2877,2895,2897,3049,3052,3059,3064,3073,3074,3075,3078,3079,3080,3087,3089,3105,3108,3109,3132,3154,3159,3191,3192,3196,3251,3288,3322,3497,3499,3521,3523,3538,3539,3542,3545,3547,3551,3574,3575,3576,3577,3578,3579,3580,3581,3583,3585,3586,3588,3589,3590,3592,3597,3601,3603,3800,3811,3819,3820,3992,4039,4177,4180,4224,4301,4330,4349,4409,4563,4564,4565,4653,4654,4656,4658,4660,4662,4663,4723,4738,4741,4748,4815,4861,4862,4865,4867,4871,5078,5156,5221,5230,5236,5324,5414,5438,5439,5461,5472,5490,5495,5537,5549,5554,5612,5626,5725,5883,5888,5889,6445,6448,6449,6450,6472,6491,6607,6685,6691,6704,6769,6770,6774,6839,6900,6921,6922,6966,7123,7185,7194,7223,7256,7265,7285,7293,7340,7448,7475,7485,7518,7627,7737,7738,7739,7752,7759,7776,7781,7833,7883,7924,8251,8279,8294,8388,8414,8415,8423,8455,8462,8481,8524,8769,8830,8908,9055,9057,9146,9362,9418,9447,9453,9457,9561,9705,9711,10047,10117,10127,10737,10919,10977,11150,11152,11306,11337,11341,11343,11492,11712,11836,12312,12362,12692,12776,12787,12810,12822,13006,13070,13075,13163,13188,13359,13461,13715,13744,13748,13789,13797,13811,13998,14548,14805,15225,15388,15461,16228,16263,16410,16434,16436,16485,16541,16944,17046,17059,17134,17283,17391,17392,17393,17516,17521,17606,17639,17647,17649,17674,17827,18047,18338,18993,19028,19059,19124,19265,19266,19283,19311,19334,19381,19384,19458,19459,19506,19587,19614,19913,19916,19945,19980,19988,20136,20322,20934,20957,21583,22347,22399,22459,22515,22641,22724,22919,22962,23040,23086,23095,23105,23130]]],["neither",[4,4,[[8,1,1,0,1,[[265,1,1,0,1]]],[23,1,1,1,2,[[782,1,1,1,2]]],[25,2,2,2,4,[[815,2,2,2,4]]]],[7993,19911,20747,20751]]],["no",[4,4,[[8,1,1,0,1,[[263,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]],[22,1,1,2,3,[[740,1,1,2,3]]],[23,1,1,3,4,[[788,1,1,3,4]]]],[7952,9351,18862,20036]]],["nor",[9,9,[[8,1,1,0,1,[[265,1,1,0,1]]],[11,1,1,1,2,[[315,1,1,1,2]]],[15,1,1,2,3,[[425,1,1,2,3]]],[17,1,1,3,4,[[462,1,1,3,4]]],[18,1,1,4,5,[[609,1,1,4,5]]],[21,2,2,5,7,[[672,1,1,5,6],[673,1,1,6,7]]],[25,2,2,7,9,[[815,2,2,7,9]]]],[7993,9590,12696,13485,16154,17561,17576,20747,20751]]],["not",[26,25,[[0,2,1,0,1,[[13,2,1,0,1]]],[8,4,4,1,5,[[238,1,1,1,2],[249,1,1,2,3],[254,1,1,3,4],[260,1,1,4,5]]],[9,2,2,5,7,[[280,1,1,5,6],[285,1,1,6,7]]],[10,4,4,7,11,[[291,1,1,7,8],[292,1,1,8,9],[307,2,2,9,11]]],[11,4,4,11,15,[[314,3,3,11,14],[316,1,1,14,15]]],[15,1,1,15,16,[[425,1,1,15,16]]],[17,1,1,16,17,[[462,1,1,16,17]]],[18,2,2,17,19,[[566,1,1,17,18],[609,1,1,18,19]]],[22,1,1,19,20,[[740,1,1,19,20]]],[23,1,1,20,21,[[782,1,1,20,21]]],[25,4,4,21,25,[[817,1,1,21,22],[819,1,1,22,23],[821,2,2,23,25]]]],[359,7290,7553,7712,7895,8367,8518,8768,8778,9318,9329,9553,9555,9557,9633,12696,13485,15361,16155,18862,19911,20810,20852,20898,20926]]],["or",[55,51,[[0,5,5,0,5,[[23,1,1,0,1],[26,1,1,1,2],[29,1,1,2,3],[36,2,2,3,5]]],[1,3,3,5,8,[[65,1,1,5,6],[66,1,1,6,7],[68,1,1,7,8]]],[2,2,2,8,10,[[92,1,1,8,9],[116,1,1,9,10]]],[3,6,4,10,14,[[127,1,1,10,11],[129,5,3,11,14]]],[4,2,2,14,16,[[160,1,1,14,15],[170,1,1,15,16]]],[5,1,1,16,17,[[191,1,1,16,17]]],[6,4,4,17,21,[[212,1,1,17,18],[219,1,1,18,19],[221,1,1,19,20],[230,1,1,20,21]]],[7,1,1,21,22,[[234,1,1,21,22]]],[9,5,4,22,26,[[281,1,1,22,23],[285,1,1,23,24],[286,1,1,24,25],[290,2,1,25,26]]],[10,2,2,26,28,[[312,2,2,26,28]]],[11,1,1,28,29,[[332,1,1,28,29]]],[12,1,1,29,30,[[358,1,1,29,30]]],[13,2,2,30,32,[[384,2,2,30,32]]],[17,12,11,32,43,[[441,2,2,32,34],[442,1,1,34,35],[443,1,1,35,36],[445,1,1,36,37],[448,1,1,37,38],[457,1,1,38,39],[472,2,1,39,40],[474,3,3,40,43]]],[20,2,2,43,45,[[663,1,1,43,44],[669,1,1,44,45]]],[22,2,2,45,47,[[727,1,1,45,46],[728,1,1,46,47]]],[23,1,1,47,48,[[758,1,1,47,48]]],[25,2,2,48,50,[[816,1,1,48,49],[823,1,1,49,50]]],[29,1,1,50,51,[[884,1,1,50,51]]]],[612,748,831,1091,1115,1951,1990,2039,2779,3596,4047,4093,4094,4095,5139,5387,5947,6567,6756,6854,7082,7182,8410,8553,8574,8705,9486,9495,10107,10946,11547,11556,12983,12984,13020,13032,13090,13162,13392,13782,13843,13844,13847,17409,17516,18660,18664,19315,20757,20990,22452]]],["should",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13110]]],["since",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19522]]],["sith",[1,1,[[25,1,1,0,1,[[836,1,1,0,1]]]],[21350]]],["surely",[2,2,[[10,1,1,0,1,[[310,1,1,0,1]]],[19,1,1,1,2,[[650,1,1,1,2]]]],[9431,17062]]],["that",[12,10,[[0,2,1,0,1,[[30,2,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[4,1,1,2,3,[[176,1,1,2,3]]],[8,3,2,3,5,[[259,3,2,3,5]]],[9,1,1,5,6,[[286,1,1,5,6]]],[10,1,1,6,7,[[298,1,1,6,7]]],[12,1,1,7,8,[[341,1,1,7,8]]],[17,1,1,8,9,[[462,1,1,8,9]]],[18,1,1,9,10,[[572,1,1,9,10]]]],[925,2124,5526,7845,7860,8574,9010,10395,13486,15465]]],["though",[19,17,[[15,1,1,0,1,[[413,1,1,0,1]]],[17,2,2,1,3,[[444,1,1,1,2],[465,1,1,2,3]]],[18,1,1,3,4,[[504,1,1,3,4]]],[20,1,1,4,5,[[666,1,1,4,5]]],[22,3,2,5,7,[[679,2,1,5,6],[688,1,1,6,7]]],[23,4,4,7,11,[[746,1,1,7,8],[749,1,1,8,9],[758,1,1,9,10],[781,1,1,10,11]]],[24,1,1,11,12,[[799,1,1,11,12]]],[29,4,3,12,15,[[887,4,3,12,15]]],[30,1,1,15,16,[[888,1,1,15,16]]],[34,1,1,16,17,[[904,1,1,16,17]]]],[12305,13066,13581,14288,17475,17672,17872,18987,19060,19300,19884,20386,22497,22498,22499,22514,22751]]],["when",[11,11,[[0,1,1,0,1,[[37,1,1,0,1]]],[3,1,1,1,2,[[152,1,1,1,2]]],[6,2,2,2,4,[[214,1,1,2,3],[216,1,1,3,4]]],[17,2,2,4,6,[[452,1,1,4,5],[456,1,1,5,6]]],[19,2,2,6,8,[[631,1,1,6,7],[651,1,1,7,8]]],[22,2,2,8,10,[[702,1,1,8,9],[731,1,1,9,10]]],[29,1,1,10,11,[[885,1,1,10,11]]]],[1128,4883,6619,6657,13276,13361,16502,17093,18108,18721,22466]]],["whether",[26,21,[[1,1,1,0,1,[[68,1,1,0,1]]],[2,2,2,1,3,[[92,1,1,1,2],[116,1,1,2,3]]],[4,1,1,3,4,[[170,1,1,3,4]]],[7,1,1,4,5,[[234,1,1,4,5]]],[9,1,1,5,6,[[281,1,1,5,6]]],[10,1,1,6,7,[[310,1,1,6,7]]],[11,1,1,7,8,[[313,1,1,7,8]]],[14,1,1,8,9,[[404,1,1,8,9]]],[15,1,1,9,10,[[419,1,1,9,10]]],[16,1,1,10,11,[[429,1,1,10,11]]],[17,1,1,11,12,[[472,1,1,11,12]]],[19,2,1,12,13,[[647,2,1,12,13]]],[20,4,3,13,16,[[663,1,1,13,14],[669,1,1,14,15],[670,2,1,15,16]]],[23,2,2,16,18,[[774,1,1,16,17],[786,1,1,17,18]]],[25,6,3,18,21,[[803,4,2,18,20],[804,2,1,20,21]]]],[2039,2779,3596,5387,7182,8410,9426,9535,12086,12481,12776,13782,16965,17409,17519,17537,19673,19981,20497,20499,20513]]],["while",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7744]]]]},{"k":"H519","v":[["*",[56,49,[[0,7,6,0,6,[[19,1,1,0,1],[20,4,3,1,4],[29,1,1,4,5],[30,1,1,5,6]]],[1,9,9,6,15,[[51,1,1,6,7],[69,2,2,7,9],[70,5,5,9,14],[72,1,1,14,15]]],[2,3,2,15,17,[[114,3,2,15,17]]],[4,8,7,17,24,[[157,3,2,17,19],[164,2,2,19,21],[167,1,1,21,22],[168,2,2,22,24]]],[6,2,2,24,26,[[219,1,1,24,25],[229,1,1,25,26]]],[7,2,1,26,27,[[234,2,1,26,27]]],[8,10,7,27,34,[[236,4,2,27,29],[260,6,5,29,34]]],[9,5,5,34,39,[[272,2,2,34,36],[280,2,2,36,38],[286,1,1,38,39]]],[10,3,3,39,42,[[291,2,2,39,41],[293,1,1,41,42]]],[14,1,1,42,43,[[404,1,1,42,43]]],[15,1,1,43,44,[[419,1,1,43,44]]],[17,2,2,44,46,[[454,1,1,44,45],[466,1,1,45,46]]],[18,2,2,46,48,[[563,1,1,46,47],[593,1,1,47,48]]],[33,1,1,48,49,[[901,1,1,48,49]]]],[512,523,525,526,833,906,1559,2061,2068,2084,2097,2103,2104,2109,2156,3475,3513,5067,5074,5252,5258,5336,5353,5356,6772,7043,7181,7223,7228,7885,7886,7889,7892,7902,8177,8179,8371,8372,8571,8730,8734,8836,12092,12487,13312,13601,15300,15864,22706]]],["bondmaids",[2,1,[[2,2,1,0,1,[[114,2,1,0,1]]]],[3513]]],["bondwoman",[4,3,[[0,4,3,0,3,[[20,4,3,0,3]]]],[523,525,526]]],["handmaid",[22,18,[[1,1,1,0,1,[[72,1,1,0,1]]],[6,1,1,1,2,[[229,1,1,1,2]]],[7,2,1,2,3,[[234,2,1,2,3]]],[8,10,7,3,10,[[236,4,2,3,5],[260,6,5,5,10]]],[9,3,3,10,13,[[280,2,2,10,12],[286,1,1,12,13]]],[10,3,3,13,16,[[291,2,2,13,15],[293,1,1,15,16]]],[18,2,2,16,18,[[563,1,1,16,17],[593,1,1,17,18]]]],[2156,7043,7181,7223,7228,7885,7886,7889,7892,7902,8371,8372,8571,8730,8734,8836,15300,15864]]],["handmaids",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8177]]],["maid",[5,5,[[0,1,1,0,1,[[29,1,1,0,1]]],[1,3,3,1,4,[[51,1,1,1,2],[70,2,2,2,4]]],[2,1,1,4,5,[[114,1,1,4,5]]]],[833,1559,2097,2103,3475]]],["maids",[3,3,[[14,1,1,0,1,[[404,1,1,0,1]]],[17,1,1,1,2,[[454,1,1,1,2]]],[33,1,1,2,3,[[901,1,1,2,3]]]],[12092,13312,22706]]],["maidservant",[13,12,[[1,4,4,0,4,[[69,2,2,0,2],[70,2,2,2,4]]],[4,7,6,4,10,[[157,3,2,4,6],[164,1,1,6,7],[167,1,1,7,8],[168,2,2,8,10]]],[6,1,1,10,11,[[219,1,1,10,11]]],[17,1,1,11,12,[[466,1,1,11,12]]]],[2061,2068,2084,2109,5067,5074,5258,5336,5353,5356,6772,13601]]],["maidservant's",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2104]]],["maidservants",[4,4,[[0,1,1,0,1,[[19,1,1,0,1]]],[4,1,1,1,2,[[164,1,1,1,2]]],[9,1,1,2,3,[[272,1,1,2,3]]],[15,1,1,3,4,[[419,1,1,3,4]]]],[512,5252,8179,12487]]],["maidservants'",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[906]]]]},{"k":"H520","v":[["*",[245,131,[[0,5,3,0,3,[[5,4,2,0,2],[6,1,1,2,3]]],[1,57,30,3,33,[[74,8,3,3,6],[75,8,4,6,10],[76,10,7,10,17],[79,3,1,17,18],[85,6,3,18,21],[86,11,4,21,25],[87,11,8,25,33]]],[3,6,3,33,36,[[127,1,1,33,34],[151,5,2,34,36]]],[4,3,1,36,37,[[155,3,1,36,37]]],[5,1,1,37,38,[[189,1,1,37,38]]],[8,1,1,38,39,[[252,1,1,38,39]]],[10,45,24,39,63,[[296,19,11,39,50],[297,26,13,50,63]]],[11,3,2,63,65,[[326,1,1,63,64],[337,2,1,64,65]]],[12,1,1,65,66,[[348,1,1,65,66]]],[13,25,12,66,78,[[369,14,7,66,73],[370,7,3,73,76],[372,3,1,76,77],[391,1,1,77,78]]],[15,1,1,78,79,[[415,1,1,78,79]]],[16,2,2,79,81,[[430,1,1,79,80],[432,1,1,80,81]]],[22,1,1,81,82,[[684,1,1,81,82]]],[23,4,3,82,85,[[795,1,1,82,83],[796,3,2,83,85]]],[25,88,45,85,130,[[841,40,21,85,106],[842,27,14,106,120],[843,7,4,120,124],[844,12,4,124,128],[846,1,1,128,129],[848,1,1,129,130]]],[37,2,1,130,131,[[915,2,1,130,131]]]],[152,153,179,2205,2212,2218,2237,2243,2248,2251,2273,2281,2284,2285,2286,2288,2290,2384,2575,2581,2587,2605,2610,2614,2629,2634,2642,2644,2645,2646,2647,2648,2651,4055,4849,4850,4986,5897,7622,8898,8899,8902,8906,8912,8913,8916,8919,8920,8921,8922,8936,8940,8944,8949,8950,8953,8957,8958,8961,8965,8966,8969,8972,9909,10239,10696,11232,11233,11237,11240,11241,11242,11244,11247,11248,11249,11295,11727,12340,12793,12816,17773,20225,20297,20298,21482,21484,21486,21488,21489,21490,21491,21492,21496,21498,21500,21502,21504,21506,21507,21510,21513,21519,21524,21525,21526,21527,21528,21529,21530,21531,21534,21535,21536,21537,21538,21539,21540,21541,21548,21554,21556,21559,21560,21585,21586,21587,21589,21632,21682,22938]]],["+",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8965]]],["cubit",[42,25,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,18,11,1,12,[[74,5,3,1,4],[75,3,2,4,6],[79,2,1,6,7],[85,1,1,7,8],[86,7,4,8,12]]],[4,1,1,12,13,[[155,1,1,12,13]]],[10,6,4,13,17,[[297,6,4,13,17]]],[13,1,1,17,18,[[370,1,1,17,18]]],[25,15,7,18,25,[[841,6,3,18,21],[843,1,1,21,22],[844,8,3,22,25]]]],[153,2205,2212,2218,2248,2251,2384,2587,2605,2610,2614,2629,4986,8958,8965,8966,8969,11249,21482,21489,21519,21556,21585,21586,21589]]],["cubits",[200,120,[[0,4,2,0,2,[[5,3,1,0,1],[6,1,1,1,2]]],[1,39,29,2,31,[[74,3,3,2,5],[75,5,3,5,8],[76,10,7,8,15],[79,1,1,15,16],[85,5,3,16,19],[86,4,4,19,23],[87,11,8,23,31]]],[3,6,3,31,34,[[127,1,1,31,32],[151,5,2,32,34]]],[4,2,1,34,35,[[155,2,1,34,35]]],[5,1,1,35,36,[[189,1,1,35,36]]],[8,1,1,36,37,[[252,1,1,36,37]]],[10,38,20,37,57,[[296,19,11,37,48],[297,19,9,48,57]]],[11,3,2,57,59,[[326,1,1,57,58],[337,2,1,58,59]]],[12,1,1,59,60,[[348,1,1,59,60]]],[13,24,11,60,71,[[369,14,7,60,67],[370,6,2,67,69],[372,3,1,69,70],[391,1,1,70,71]]],[15,1,1,71,72,[[415,1,1,71,72]]],[16,2,2,72,74,[[430,1,1,72,73],[432,1,1,73,74]]],[23,3,2,74,76,[[796,3,2,74,76]]],[25,73,43,76,119,[[841,34,20,76,96],[842,27,14,96,110],[843,6,4,110,114],[844,4,3,114,117],[846,1,1,117,118],[848,1,1,118,119]]],[37,2,1,119,120,[[915,2,1,119,120]]]],[152,179,2205,2212,2218,2237,2243,2251,2273,2281,2284,2285,2286,2288,2290,2384,2575,2581,2587,2605,2610,2614,2629,2634,2642,2644,2645,2646,2647,2648,2651,4055,4849,4850,4986,5897,7622,8898,8899,8902,8906,8912,8913,8916,8919,8920,8921,8922,8936,8940,8944,8949,8950,8953,8957,8961,8972,9909,10239,10696,11232,11233,11237,11240,11241,11242,11244,11247,11248,11295,11727,12340,12793,12816,20297,20298,21482,21484,21486,21488,21489,21490,21491,21492,21496,21498,21500,21502,21504,21506,21507,21510,21513,21524,21525,21526,21527,21528,21529,21530,21531,21534,21535,21536,21537,21538,21539,21540,21541,21548,21554,21556,21559,21560,21585,21586,21587,21632,21682,22938]]],["measure",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20225]]],["posts",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17773]]]]},{"k":"H521","v":[["cubits",[4,2,[[14,2,1,0,1,[[408,2,1,0,1]]],[26,2,1,1,2,[[852,2,1,1,2]]]],[12154,21808]]]]},{"k":"H522","v":[["Ammah",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8073]]]]},{"k":"H523","v":[["*",[3,3,[[0,1,1,0,1,[[24,1,1,0,1]]],[3,1,1,1,2,[[141,1,1,1,2]]],[18,1,1,2,3,[[594,1,1,2,3]]]],[674,4486,15868]]],["nations",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[674]]],["people",[2,2,[[3,1,1,0,1,[[141,1,1,0,1]]],[18,1,1,1,2,[[594,1,1,1,2]]]],[4486,15868]]]]},{"k":"H524","v":[["*",[8,8,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,7,7,1,8,[[852,3,3,1,4],[853,1,1,4,5],[854,1,1,5,6],[855,1,1,6,7],[856,1,1,7,8]]]],[12120,21811,21814,21836,21838,21893,21930,21947]]],["nation",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21836]]],["nations",[7,7,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,6,6,1,7,[[852,2,2,1,3],[853,1,1,3,4],[854,1,1,4,5],[855,1,1,5,6],[856,1,1,6,7]]]],[12120,21811,21814,21838,21893,21930,21947]]]]},{"k":"H525","v":[["up",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16632]]]]},{"k":"H526","v":[["Amon",[17,17,[[10,1,1,0,1,[[312,1,1,0,1]]],[11,5,5,1,6,[[333,5,5,1,6]]],[12,1,1,6,7,[[340,1,1,6,7]]],[13,6,6,7,13,[[384,1,1,7,8],[399,5,5,8,13]]],[15,1,1,13,14,[[419,1,1,13,14]]],[23,2,2,14,16,[[745,1,1,14,15],[769,1,1,15,16]]],[35,1,1,16,17,[[906,1,1,16,17]]]],[9506,10137,10138,10142,10143,10144,10375,11567,11928,11929,11930,11931,11933,12479,18948,19537,22788]]]]},{"k":"H527","v":[["multitude",[1,1,[[23,1,1,0,1,[[796,1,1,0,1]]]],[20291]]]]},{"k":"H528","v":[["*",[2,2,[[23,1,1,0,1,[[790,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[20070,22720]]],["multitude",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20070]]],["populous",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22720]]]]},{"k":"H529","v":[["*",[5,5,[[4,1,1,0,1,[[184,1,1,0,1]]],[19,3,3,1,4,[[640,1,1,1,2],[641,1,1,2,3],[647,1,1,3,4]]],[22,1,1,4,5,[[704,1,1,4,5]]]],[5778,16764,16777,16960,18132]]],["faith",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5778]]],["faithful",[3,3,[[19,3,3,0,3,[[640,1,1,0,1],[641,1,1,1,2],[647,1,1,2,3]]]],[16764,16777,16960]]],["truth",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18132]]]]},{"k":"H530","v":[["*",[49,49,[[1,1,1,0,1,[[66,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[8,1,1,2,3,[[261,1,1,2,3]]],[11,2,2,3,5,[[324,1,1,3,4],[334,1,1,4,5]]],[12,3,3,5,8,[[346,3,3,5,8]]],[13,5,5,8,13,[[385,1,1,8,9],[397,3,3,9,12],[400,1,1,12,13]]],[18,22,22,13,35,[[510,1,1,13,14],[513,1,1,14,15],[514,1,1,15,16],[517,1,1,16,17],[565,1,1,17,18],[566,7,7,18,25],[569,1,1,25,26],[573,1,1,26,27],[575,1,1,27,28],[577,1,1,28,29],[596,5,5,29,34],[620,1,1,34,35]]],[19,3,3,35,38,[[639,2,2,35,37],[655,1,1,37,38]]],[22,4,4,38,42,[[689,1,1,38,39],[703,1,1,39,40],[711,1,1,40,41],[737,1,1,41,42]]],[23,4,4,42,46,[[749,2,2,42,44],[751,1,1,44,45],[753,1,1,45,46]]],[24,1,1,46,47,[[799,1,1,46,47]]],[27,1,1,47,48,[[863,1,1,47,48]]],[34,1,1,48,49,[[904,1,1,48,49]]]],[1995,5762,7928,9865,10152,10637,10641,10646,11585,11866,11869,11872,11945,14370,14443,14453,14535,15319,15327,15328,15331,15334,15350,15359,15375,15413,15478,15493,15513,15928,15973,15984,15988,16036,16294,16736,16741,17216,17889,18119,18285,18804,19059,19061,19147,19178,20377,22125,22752]]],["+",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15359]]],["faith",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22752]]],["faithful",[3,3,[[18,2,2,0,2,[[596,2,2,0,2]]],[19,1,1,2,3,[[655,1,1,2,3]]]],[15984,16036,17216]]],["faithfully",[5,5,[[11,2,2,0,2,[[324,1,1,0,1],[334,1,1,1,2]]],[13,3,3,2,5,[[385,1,1,2,3],[397,1,1,3,4],[400,1,1,4,5]]]],[9865,10152,11585,11866,11945]]],["faithfulness",[17,17,[[8,1,1,0,1,[[261,1,1,0,1]]],[18,12,12,1,13,[[513,1,1,1,2],[517,1,1,2,3],[565,1,1,3,4],[566,5,5,4,9],[569,1,1,9,10],[596,2,2,10,12],[620,1,1,12,13]]],[22,2,2,13,15,[[689,1,1,13,14],[703,1,1,14,15]]],[24,1,1,15,16,[[799,1,1,15,16]]],[27,1,1,16,17,[[863,1,1,16,17]]]],[7928,14443,14535,15319,15327,15328,15331,15334,15350,15413,15973,15988,16294,17889,18119,20377,22125]]],["office",[5,5,[[12,3,3,0,3,[[346,3,3,0,3]]],[13,2,2,3,5,[[397,2,2,3,5]]]],[10637,10641,10646,11869,11872]]],["stability",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18285]]],["steady",[1,1,[[1,1,1,0,1,[[66,1,1,0,1]]]],[1995]]],["truly",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16741]]],["truth",[13,13,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,6,6,1,7,[[510,1,1,1,2],[566,1,1,2,3],[573,1,1,3,4],[575,1,1,4,5],[577,1,1,5,6],[596,1,1,6,7]]],[19,1,1,7,8,[[639,1,1,7,8]]],[22,1,1,8,9,[[737,1,1,8,9]]],[23,4,4,9,13,[[749,2,2,9,11],[751,1,1,11,12],[753,1,1,12,13]]]],[5762,14370,15375,15478,15493,15513,15928,16736,18804,19059,19061,19147,19178]]],["verily",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14453]]]]},{"k":"H531","v":[["Amoz",[13,13,[[11,3,3,0,3,[[331,2,2,0,2],[332,1,1,2,3]]],[13,3,3,3,6,[[392,1,1,3,4],[398,2,2,4,6]]],[22,7,7,6,13,[[679,1,1,6,7],[680,1,1,7,8],[691,1,1,8,9],[698,1,1,9,10],[715,2,2,10,12],[716,1,1,12,13]]]],[10063,10081,10099,11754,11895,11907,17655,17686,17907,18031,18354,18373,18391]]]]},{"k":"H532","v":[["Ami",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12084]]]]},{"k":"H533","v":[["*",[6,6,[[9,1,1,0,1,[[281,1,1,0,1]]],[17,2,2,1,3,[[444,2,2,1,3]]],[22,2,2,3,5,[[706,1,1,3,4],[718,1,1,4,5]]],[29,1,1,5,6,[[880,1,1,5,6]]]],[8401,13055,13070,18166,18446,22395]]],["+",[1,1,[[29,1,1,0,1,[[880,1,1,0,1]]]],[22395]]],["mighty",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13055]]],["one",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18166]]],["strong",[3,3,[[9,1,1,0,1,[[281,1,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]]],[8401,13070,18446]]]]},{"k":"H534","v":[["*",[2,2,[[22,2,2,0,2,[[695,2,2,0,2]]]],[17989,17992]]],["bough",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17989]]],["branch",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17992]]]]},{"k":"H535","v":[["*",[16,14,[[8,1,1,0,1,[[237,1,1,0,1]]],[22,6,5,1,6,[[694,1,1,1,2],[697,1,1,2,3],[702,3,2,3,5],[711,1,1,5,6]]],[23,2,2,6,8,[[758,1,1,6,7],[759,1,1,7,8]]],[24,1,1,8,9,[[798,1,1,8,9]]],[25,1,1,9,10,[[817,1,1,9,10]]],[27,1,1,10,11,[[865,1,1,10,11]]],[28,2,2,11,13,[[876,2,2,11,13]]],[33,2,1,13,14,[[900,2,1,13,14]]]],[7245,17977,18012,18099,18102,18288,19295,19324,20340,20792,22136,22301,22303,22688]]],["feeble",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7245]]],["languish",[5,5,[[22,3,3,0,3,[[694,1,1,0,1],[697,1,1,1,2],[702,1,1,2,3]]],[23,1,1,3,4,[[758,1,1,3,4]]],[27,1,1,4,5,[[865,1,1,4,5]]]],[17977,18012,18099,19295,22136]]],["languished",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20340]]],["languisheth",[8,7,[[22,3,3,0,3,[[702,2,2,0,2],[711,1,1,2,3]]],[23,1,1,3,4,[[759,1,1,3,4]]],[28,2,2,4,6,[[876,2,2,4,6]]],[33,2,1,6,7,[[900,2,1,6,7]]]],[18099,18102,18288,19324,22301,22303,22688]]],["weak",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20792]]]]},{"k":"H536","v":[["weak",[1,1,[[18,1,1,0,1,[[483,1,1,0,1]]]],[13987]]]]},{"k":"H537","v":[["feeble",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12361]]]]},{"k":"H538","v":[["Amam",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6228]]]]},{"k":"H539","v":[["*",[108,102,[[0,3,3,0,3,[[14,1,1,0,1],[41,1,1,1,2],[44,1,1,2,3]]],[1,8,7,3,10,[[53,6,5,3,8],[63,1,1,8,9],[68,1,1,9,10]]],[3,4,4,10,14,[[127,1,1,10,11],[128,1,1,11,12],[130,1,1,12,13],[136,1,1,13,14]]],[4,6,5,14,19,[[153,1,1,14,15],[159,1,1,15,16],[161,1,1,16,17],[180,3,2,17,19]]],[6,1,1,19,20,[[221,1,1,19,20]]],[7,1,1,20,21,[[235,1,1,20,21]]],[8,6,5,21,26,[[237,2,1,21,22],[238,1,1,22,23],[257,1,1,23,24],[260,1,1,24,25],[262,1,1,25,26]]],[9,3,3,26,29,[[270,1,1,26,27],[273,1,1,27,28],[286,1,1,28,29]]],[10,3,3,29,32,[[298,1,1,29,30],[300,1,1,30,31],[301,1,1,31,32]]],[11,3,3,32,35,[[322,2,2,32,34],[329,1,1,34,35]]],[12,2,2,35,37,[[354,2,2,35,37]]],[13,7,5,37,42,[[367,1,1,37,38],[372,1,1,38,39],[375,1,1,39,40],[386,3,1,40,41],[398,1,1,41,42]]],[15,2,2,42,44,[[421,1,1,42,43],[425,1,1,43,44]]],[16,1,1,44,45,[[427,1,1,44,45]]],[17,10,10,45,55,[[439,1,1,45,46],[444,1,1,46,47],[447,1,1,47,48],[450,3,3,48,51],[459,1,1,51,52],[464,1,1,52,53],[474,2,2,53,55]]],[18,17,17,55,72,[[489,1,1,55,56],[496,1,1,56,57],[504,1,1,57,58],[508,1,1,58,59],[555,4,4,59,63],[566,2,2,63,65],[570,1,1,65,66],[578,1,1,66,67],[583,2,2,67,69],[588,1,1,69,70],[593,1,1,70,71],[596,1,1,71,72]]],[19,5,5,72,77,[[638,1,1,72,73],[641,1,1,73,74],[652,1,1,74,75],[653,1,1,75,76],[654,1,1,76,77]]],[22,15,14,77,91,[[679,2,2,77,79],[685,2,1,79,80],[686,1,1,80,81],[700,2,2,81,83],[706,1,1,83,84],[711,1,1,84,85],[721,1,1,85,86],[727,2,2,86,88],[731,1,1,88,89],[733,1,1,89,90],[738,1,1,90,91]]],[23,4,4,91,95,[[756,1,1,91,92],[759,1,1,92,93],[784,1,1,93,94],[786,1,1,94,95]]],[24,2,2,95,97,[[800,2,2,95,97]]],[27,2,2,97,99,[[866,1,1,97,98],[872,1,1,98,99]]],[31,1,1,99,100,[[891,1,1,99,100]]],[32,1,1,100,101,[[899,1,1,100,101]]],[34,1,1,101,102,[[903,1,1,101,102]]]],[366,1272,1384,1602,1606,1609,1610,1632,1920,2035,4036,4066,4119,4323,4924,5120,5180,5670,5677,6849,7206,7275,7296,7801,7889,7942,8124,8196,8573,9011,9086,9146,9794,9798,9997,10886,10887,11203,11299,11370,11607,11890,12519,12684,12731,12948,13067,13148,13218,13225,13234,13458,13556,13846,13858,14067,14175,14298,14354,15121,15135,15145,15150,15354,15363,15431,15519,15663,15675,15800,15858,15964,16701,16787,17126,17166,17175,17675,17680,17791,17809,18075,18077,18180,18295,18515,18643,18659,18712,18743,18825,19255,19333,19955,19980,20425,20432,22161,22252,22563,22669,22736]]],["+",[5,5,[[4,1,1,0,1,[[180,1,1,0,1]]],[16,1,1,1,2,[[427,1,1,1,2]]],[17,2,2,2,4,[[439,1,1,2,3],[450,1,1,3,4]]],[23,1,1,4,5,[[759,1,1,4,5]]]],[5677,12731,12948,13218,19333]]],["Believe",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11607]]],["Faithful",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17175]]],["Trust",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22669]]],["be",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22161]]],["believe",[18,17,[[1,6,5,0,5,[[53,5,4,0,4],[68,1,1,4,5]]],[3,1,1,5,6,[[130,1,1,5,6]]],[4,1,1,6,7,[[153,1,1,6,7]]],[11,1,1,7,8,[[329,1,1,7,8]]],[13,2,2,8,10,[[386,1,1,8,9],[398,1,1,9,10]]],[17,2,2,10,12,[[444,1,1,10,11],[474,1,1,11,12]]],[19,1,1,12,13,[[653,1,1,12,13]]],[22,2,2,13,15,[[685,1,1,13,14],[721,1,1,14,15]]],[23,1,1,15,16,[[756,1,1,15,16]]],[34,1,1,16,17,[[903,1,1,16,17]]]],[1602,1606,1609,1610,2035,4119,4924,9997,11607,11890,13067,13846,17166,17791,18515,19255,22736]]],["believed",[21,21,[[0,2,2,0,2,[[14,1,1,0,1],[44,1,1,1,2]]],[1,2,2,2,4,[[53,1,1,2,3],[63,1,1,3,4]]],[3,1,1,4,5,[[136,1,1,4,5]]],[4,1,1,5,6,[[161,1,1,5,6]]],[8,1,1,6,7,[[262,1,1,6,7]]],[10,1,1,7,8,[[300,1,1,7,8]]],[13,1,1,8,9,[[375,1,1,8,9]]],[17,1,1,9,10,[[464,1,1,9,10]]],[18,7,7,10,17,[[504,1,1,10,11],[555,2,2,11,13],[583,2,2,13,15],[593,1,1,15,16],[596,1,1,16,17]]],[22,1,1,17,18,[[731,1,1,17,18]]],[23,1,1,18,19,[[784,1,1,18,19]]],[24,1,1,19,20,[[800,1,1,19,20]]],[31,1,1,20,21,[[891,1,1,20,21]]]],[366,1384,1632,1920,4323,5180,7942,9086,11370,13556,14298,15135,15145,15663,15675,15858,15964,18712,19955,20432,22563]]],["believeth",[4,4,[[17,2,2,0,2,[[450,1,1,0,1],[474,1,1,1,2]]],[19,1,1,2,3,[[641,1,1,2,3]]],[22,1,1,3,4,[[706,1,1,3,4]]]],[13225,13858,16787,18180]]],["continuance",[2,1,[[4,2,1,0,1,[[180,2,1,0,1]]]],[5670]]],["established",[7,7,[[8,1,1,0,1,[[238,1,1,0,1]]],[9,1,1,1,2,[[273,1,1,1,2]]],[12,2,2,2,4,[[354,2,2,2,4]]],[13,2,2,4,6,[[367,1,1,4,5],[386,1,1,5,6]]],[22,1,1,6,7,[[685,1,1,6,7]]]],[7296,8196,10886,10887,11203,11607,17791]]],["faithful",[19,19,[[3,1,1,0,1,[[128,1,1,0,1]]],[4,1,1,1,2,[[159,1,1,1,2]]],[8,2,2,2,4,[[237,1,1,2,3],[257,1,1,3,4]]],[9,1,1,4,5,[[286,1,1,4,5]]],[15,2,2,5,7,[[421,1,1,5,6],[425,1,1,6,7]]],[18,4,4,7,11,[[489,1,1,7,8],[508,1,1,8,9],[566,1,1,9,10],[578,1,1,10,11]]],[19,2,2,11,13,[[638,1,1,11,12],[652,1,1,12,13]]],[22,4,4,13,17,[[679,2,2,13,15],[686,1,1,15,16],[727,1,1,16,17]]],[23,1,1,17,18,[[786,1,1,17,18]]],[27,1,1,18,19,[[872,1,1,18,19]]]],[4066,5120,7275,7801,8573,12519,12684,14067,14354,15363,15519,16701,17126,17675,17680,17809,18643,19980,22252]]],["fast",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15354]]],["father",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4036]]],["fathers",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18659]]],["nurse",[2,2,[[7,1,1,0,1,[[235,1,1,0,1]]],[9,1,1,1,2,[[270,1,1,1,2]]]],[7206,8124]]],["nursed",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18825]]],["stedfast",[2,2,[[18,2,2,0,2,[[555,2,2,0,2]]]],[15121,15150]]],["sure",[11,11,[[8,2,2,0,2,[[237,1,1,0,1],[260,1,1,1,2]]],[10,1,1,2,3,[[301,1,1,2,3]]],[17,1,1,3,4,[[459,1,1,3,4]]],[18,3,3,4,7,[[496,1,1,4,5],[570,1,1,5,6],[588,1,1,6,7]]],[22,4,4,7,11,[[700,2,2,7,9],[711,1,1,9,10],[733,1,1,10,11]]]],[7275,7889,9146,13458,14175,15431,15800,18075,18077,18295,18743]]],["trust",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13234]]],["trusted",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6849]]],["trusty",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13148]]],["up",[3,3,[[11,2,2,0,2,[[322,2,2,0,2]]],[24,1,1,2,3,[[800,1,1,2,3]]]],[9794,9798,20425]]],["verified",[3,3,[[0,1,1,0,1,[[41,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[13,1,1,2,3,[[372,1,1,2,3]]]],[1272,9011,11299]]]]},{"k":"H540","v":[["*",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[855,2,2,1,3]]]],[21803,21909,21928]]],["believed",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21928]]],["faithful",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21909]]],["sure",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21803]]]]},{"k":"H541","v":[["hand",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18238]]]]},{"k":"H542","v":[["workman",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17628]]]]},{"k":"H543","v":[["*",[30,24,[[3,2,1,0,1,[[121,2,1,0,1]]],[4,12,12,1,13,[[179,12,12,1,13]]],[10,1,1,13,14,[[291,1,1,13,14]]],[12,1,1,14,15,[[353,1,1,14,15]]],[15,3,2,15,17,[[417,1,1,15,16],[420,2,1,16,17]]],[18,7,4,17,21,[[518,2,1,17,18],[549,2,1,18,19],[566,2,1,19,20],[583,1,1,20,21]]],[22,2,1,21,22,[[743,2,1,21,22]]],[23,2,2,22,24,[[755,1,1,22,23],[772,1,1,23,24]]]],[3814,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,8753,10856,12395,12499,14555,15019,15378,15699,18913,19231,19624]]],["Amen",[26,22,[[3,1,1,0,1,[[121,1,1,0,1]]],[4,12,12,1,13,[[179,12,12,1,13]]],[10,1,1,13,14,[[291,1,1,13,14]]],[12,1,1,14,15,[[353,1,1,14,15]]],[15,3,2,15,17,[[417,1,1,15,16],[420,2,1,16,17]]],[18,7,4,17,21,[[518,2,1,17,18],[549,2,1,18,19],[566,2,1,19,20],[583,1,1,20,21]]],[23,1,1,21,22,[[772,1,1,21,22]]]],[3814,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,8753,10856,12395,12499,14555,15019,15378,15699,19624]]],["amen",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3814]]],["it",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19231]]],["truth",[2,1,[[22,2,1,0,1,[[743,2,1,0,1]]]],[18913]]]]},{"k":"H544","v":[["truth",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18119]]]]},{"k":"H545","v":[["up",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12744]]]]},{"k":"H546","v":[["*",[3,3,[[0,1,1,0,1,[[19,1,1,0,1]]],[5,1,1,1,2,[[193,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]]],[507,5996,10078]]],["Indeed",[1,1,[[5,1,1,0,1,[[193,1,1,0,1]]]],[5996]]],["indeed",[1,1,[[0,1,1,0,1,[[19,1,1,0,1]]]],[507]]],["truth",[1,1,[[11,1,1,0,1,[[331,1,1,0,1]]]],[10078]]]]},{"k":"H547","v":[["pillars",[1,1,[[11,1,1,0,1,[[330,1,1,0,1]]]],[10040]]]]},{"k":"H548","v":[["*",[2,2,[[15,2,2,0,2,[[421,1,1,0,1],[423,1,1,1,2]]]],[12549,12611]]],["portion",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12611]]],["sure",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12549]]]]},{"k":"H549","v":[["Amana",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17590]]]]},{"k":"H550","v":[["*",[28,22,[[9,26,20,0,20,[[269,1,1,0,1],[279,25,19,1,20]]],[12,2,2,20,22,[[340,1,1,20,21],[341,1,1,21,22]]]],[8083,8318,8319,8320,8321,8323,8324,8325,8326,8327,8332,8337,8339,8343,8344,8345,8346,8349,8350,8356,10362,10405]]],["Amnon",[25,20,[[9,23,18,0,18,[[269,1,1,0,1],[279,22,17,1,18]]],[12,2,2,18,20,[[340,1,1,18,19],[341,1,1,19,20]]]],[8083,8318,8319,8320,8321,8323,8326,8327,8332,8337,8339,8343,8344,8345,8346,8349,8350,8356,10362,10405]]],["Amnon's",[3,3,[[9,3,3,0,3,[[279,3,3,0,3]]]],[8324,8325,8345]]]]},{"k":"H551","v":[["*",[8,8,[[7,1,1,0,1,[[234,1,1,0,1]]],[17,6,6,1,7,[[444,1,1,1,2],[447,1,1,2,3],[454,2,2,3,5],[469,1,1,5,6],[471,1,1,6,7]]],[22,1,1,7,8,[[715,1,1,7,8]]]],[7184,13053,13130,13301,13302,13695,13740,18370]]],["doubt",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13130]]],["indeed",[2,2,[[17,2,2,0,2,[[454,2,2,0,2]]]],[13301,13302]]],["surely",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13695]]],["true",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7184]]],["truly",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13740]]],["truth",[2,2,[[17,1,1,0,1,[[444,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[13053,18370]]]]},{"k":"H552","v":[["*",[5,5,[[0,1,1,0,1,[[17,1,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]],[10,1,1,2,3,[[298,1,1,2,3]]],[13,1,1,3,4,[[372,1,1,3,4]]],[18,1,1,4,5,[[535,1,1,4,5]]]],[437,4412,9012,11300,14780]]],["+",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[437]]],["deed",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11300]]],["indeed",[3,3,[[3,1,1,0,1,[[138,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[18,1,1,2,3,[[535,1,1,2,3]]]],[4412,9012,14780]]]]},{"k":"H553","v":[["*",[41,41,[[0,1,1,0,1,[[24,1,1,0,1]]],[4,6,6,1,7,[[154,1,1,1,2],[155,1,1,2,3],[167,1,1,3,4],[183,3,3,4,7]]],[5,5,5,7,12,[[187,4,4,7,11],[196,1,1,11,12]]],[7,1,1,12,13,[[232,1,1,12,13]]],[9,1,1,13,14,[[288,1,1,13,14]]],[10,1,1,14,15,[[302,1,1,14,15]]],[12,2,2,15,17,[[359,1,1,15,16],[365,1,1,16,17]]],[13,7,7,17,24,[[376,1,1,17,18],[377,1,1,18,19],[379,2,2,19,21],[390,1,1,21,22],[398,1,1,22,23],[402,1,1,23,24]]],[17,2,2,24,26,[[439,1,1,24,25],[451,1,1,25,26]]],[18,7,7,26,33,[[495,1,1,26,27],[504,1,1,27,28],[508,1,1,28,29],[557,2,2,29,31],[566,1,1,31,32],[619,1,1,32,33]]],[19,3,3,33,36,[[635,1,1,33,34],[651,1,1,34,35],[658,1,1,35,36]]],[22,3,3,36,39,[[713,1,1,36,37],[719,1,1,37,38],[722,1,1,38,39]]],[29,1,1,39,40,[[880,1,1,39,40]]],[33,1,1,40,41,[[901,1,1,40,41]]]],[681,4968,5003,5326,5734,5735,5751,5857,5858,5860,5869,6089,7145,8620,9169,10977,11163,11413,11431,11460,11471,11690,11882,12006,12934,13243,14135,14299,14355,15213,15215,15347,16292,16630,17084,17301,18323,18461,18547,22393,22700]]],["+",[3,3,[[4,2,2,0,2,[[154,1,1,0,1],[167,1,1,1,2]]],[13,1,1,2,3,[[402,1,1,2,3]]]],[4968,5326,12006]]],["confirm",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18323]]],["courage",[9,9,[[4,3,3,0,3,[[183,3,3,0,3]]],[5,4,4,3,7,[[187,3,3,3,6],[196,1,1,6,7]]],[12,2,2,7,9,[[359,1,1,7,8],[365,1,1,8,9]]]],[5734,5735,5751,5857,5860,5869,6089,10977,11163]]],["courageous",[2,2,[[5,1,1,0,1,[[187,1,1,0,1]]],[13,1,1,1,2,[[398,1,1,1,2]]]],[5858,11882]]],["established",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16630]]],["fortify",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22700]]],["increaseth",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17084]]],["minded",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7145]]],["prevailed",[1,1,[[13,1,1,0,1,[[379,1,1,0,1]]]],[11471]]],["speed",[2,2,[[10,1,1,0,1,[[302,1,1,0,1]]],[13,1,1,1,2,[[376,1,1,1,2]]]],[9169,11413]]],["strengthen",[7,7,[[4,1,1,0,1,[[155,1,1,0,1]]],[17,1,1,1,2,[[451,1,1,1,2]]],[18,3,3,2,5,[[504,1,1,2,3],[508,1,1,3,4],[566,1,1,4,5]]],[22,1,1,5,6,[[719,1,1,5,6]]],[29,1,1,6,7,[[880,1,1,6,7]]]],[5003,13243,14299,14355,15347,18461,22393]]],["strengthened",[2,2,[[13,1,1,0,1,[[390,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]]],[11690,12934]]],["strengtheneth",[2,2,[[19,1,1,0,1,[[658,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[17301,18547]]],["strong",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[13,1,1,1,2,[[377,1,1,1,2]]],[18,3,3,2,5,[[495,1,1,2,3],[557,2,2,3,5]]]],[8620,11431,14135,15213,15215]]],["stronger",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[18,1,1,1,2,[[619,1,1,1,2]]]],[681,16292]]],["themselves",[1,1,[[13,1,1,0,1,[[379,1,1,0,1]]]],[11460]]]]},{"k":"H554","v":[["bay",[2,2,[[37,2,2,0,2,[[916,2,2,0,2]]]],[22950,22954]]]]},{"k":"H555","v":[["+",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13269]]]]},{"k":"H556","v":[["strength",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23050]]]]},{"k":"H557","v":[["Amzi",[2,2,[[12,1,1,0,1,[[343,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[10500,12600]]]]},{"k":"H558","v":[["Amaziah",[40,39,[[11,15,14,0,14,[[324,1,1,0,1],[325,1,1,1,2],[326,11,10,2,12],[327,2,2,12,14]]],[12,3,3,14,17,[[340,1,1,14,15],[341,1,1,15,16],[343,1,1,16,17]]],[13,19,19,17,36,[[390,1,1,17,18],[391,16,16,18,34],[392,2,2,34,36]]],[29,3,3,36,39,[[885,3,3,36,39]]]],[9871,9883,9897,9904,9905,9907,9909,9911,9913,9914,9917,9919,9926,9928,10373,10419,10499,11704,11705,11709,11713,11714,11715,11717,11718,11719,11721,11722,11724,11725,11727,11729,11730,11731,11733,11736,22474,22476,22478]]]]},{"k":"H559","v":[["*",[5305,4335,[[0,606,496,0,496,[[0,11,11,0,11],[1,3,3,11,14],[2,16,13,14,27],[3,9,8,27,35],[4,1,1,35,36],[5,3,3,36,39],[6,1,1,39,40],[7,2,2,40,42],[8,7,6,42,48],[9,1,1,48,49],[10,3,3,49,52],[11,7,7,52,59],[12,2,2,59,61],[13,4,4,61,65],[14,11,10,65,75],[15,9,8,75,83],[16,7,7,83,90],[17,25,18,90,108],[18,14,12,108,120],[19,14,11,120,131],[20,14,12,131,143],[21,18,12,143,155],[22,6,6,155,161],[23,39,34,161,195],[24,6,6,195,201],[25,18,12,201,213],[26,34,26,213,239],[27,6,6,239,245],[28,19,16,245,261],[29,22,20,261,281],[30,23,19,281,300],[31,24,15,300,315],[32,10,7,315,322],[33,10,8,322,330],[34,5,5,330,335],[36,20,18,335,353],[37,22,14,353,367],[38,7,6,367,373],[39,7,6,373,379],[40,13,11,379,390],[41,25,19,390,409],[42,23,16,409,425],[43,20,18,425,443],[44,11,8,443,451],[45,9,6,451,457],[46,16,14,457,471],[47,14,12,471,483],[48,2,2,483,485],[49,13,11,485,496]]],[1,299,246,496,742,[[50,6,6,496,502],[51,13,11,502,513],[52,21,13,513,526],[53,22,18,526,544],[54,20,16,544,560],[55,8,8,560,568],[56,11,7,568,575],[57,20,13,575,588],[58,10,7,588,595],[59,14,13,595,608],[60,5,4,608,612],[61,9,8,612,620],[62,7,6,620,626],[63,9,9,626,635],[64,5,4,635,639],[65,16,14,639,653],[66,10,9,653,662],[67,7,7,662,669],[68,12,10,669,679],[69,5,4,679,683],[70,2,1,683,684],[71,1,1,684,685],[72,1,1,685,686],[73,6,6,686,692],[74,1,1,692,693],[79,5,5,693,698],[80,4,3,698,701],[81,23,21,701,722],[82,13,10,722,732],[83,4,4,732,736],[84,5,3,736,739],[85,3,2,739,741],[89,1,1,741,742]]],[2,80,75,742,817,[[90,2,2,742,744],[93,2,2,744,746],[94,1,1,746,747],[95,6,6,747,753],[96,4,4,753,757],[97,4,3,757,760],[98,4,4,760,764],[99,6,5,764,769],[100,2,2,769,771],[101,2,2,771,773],[102,1,1,773,774],[103,3,3,774,777],[104,2,2,777,779],[105,1,1,779,780],[106,6,5,780,785],[107,2,2,785,787],[108,2,2,787,789],[109,3,3,789,792],[110,5,3,792,795],[111,5,5,795,800],[112,9,9,800,809],[113,3,3,809,812],[114,3,3,812,815],[116,2,2,815,817]]],[3,246,225,817,1042,[[117,2,2,817,819],[118,1,1,819,820],[119,5,5,820,825],[120,3,3,825,828],[121,7,7,828,835],[122,5,4,835,839],[123,3,2,839,841],[124,4,4,841,845],[125,5,5,845,850],[126,7,6,850,856],[127,14,12,856,868],[128,6,6,868,874],[129,6,6,874,880],[130,18,15,880,895],[131,8,7,895,902],[132,18,18,902,920],[133,4,3,920,923],[134,6,6,923,929],[135,2,2,929,931],[136,11,9,931,940],[137,8,8,940,948],[138,22,20,948,968],[139,20,19,968,987],[140,9,8,987,995],[141,5,5,995,1000],[142,5,4,1000,1004],[143,7,6,1004,1010],[144,3,3,1010,1013],[145,1,1,1013,1014],[146,1,1,1014,1015],[147,7,6,1015,1021],[148,11,9,1021,1030],[149,2,2,1030,1032],[150,4,4,1032,1036],[151,3,3,1036,1039],[152,3,3,1039,1042]]],[4,142,134,1042,1176,[[153,18,16,1042,1058],[154,7,6,1058,1064],[155,5,5,1064,1069],[156,2,2,1069,1071],[157,6,6,1071,1077],[158,2,2,1077,1079],[159,1,1,1079,1080],[160,1,1,1080,1081],[161,9,7,1081,1088],[162,2,2,1088,1090],[164,2,2,1090,1092],[165,4,4,1092,1096],[167,3,3,1096,1099],[169,3,3,1099,1102],[170,3,3,1102,1105],[171,1,1,1105,1106],[172,3,3,1106,1109],[173,2,2,1109,1111],[174,3,3,1111,1114],[177,3,3,1114,1117],[178,5,5,1117,1122],[179,16,16,1122,1138],[180,3,2,1138,1140],[181,5,5,1140,1145],[182,2,2,1145,1147],[183,9,8,1147,1155],[184,8,8,1155,1163],[185,12,12,1163,1175],[186,2,1,1175,1176]]],[5,137,113,1176,1289,[[187,8,6,1176,1182],[188,11,10,1182,1192],[189,8,7,1192,1199],[190,13,9,1199,1208],[191,6,5,1208,1213],[192,9,8,1213,1221],[193,11,9,1221,1230],[194,4,4,1230,1234],[195,13,9,1234,1243],[196,9,9,1243,1252],[197,2,2,1252,1254],[199,1,1,1254,1255],[200,2,2,1255,1257],[201,3,3,1257,1260],[203,6,5,1260,1265],[204,2,2,1265,1267],[206,2,2,1267,1269],[207,1,1,1269,1270],[208,16,11,1270,1281],[209,1,1,1281,1282],[210,9,7,1282,1289]]],[6,269,221,1289,1510,[[211,8,8,1289,1297],[212,4,3,1297,1300],[213,5,4,1300,1304],[214,10,8,1304,1312],[215,2,2,1312,1314],[216,22,19,1314,1333],[217,15,12,1333,1345],[218,18,15,1345,1360],[219,22,19,1360,1379],[220,4,4,1379,1383],[221,17,16,1383,1399],[222,9,5,1399,1404],[223,17,14,1404,1418],[224,11,8,1418,1426],[225,18,11,1426,1437],[226,24,20,1437,1457],[227,8,5,1457,1462],[228,14,13,1462,1475],[229,15,14,1475,1489],[230,13,9,1489,1498],[231,13,12,1498,1510]]],[7,54,44,1510,1554,[[232,8,8,1510,1518],[233,20,15,1518,1533],[234,13,10,1533,1543],[235,13,11,1543,1554]]],[8,422,337,1554,1891,[[236,9,9,1554,1563],[237,11,8,1563,1571],[238,14,10,1571,1581],[239,10,8,1581,1589],[240,5,4,1589,1593],[241,6,5,1593,1598],[242,6,5,1598,1603],[243,9,7,1603,1610],[244,21,18,1610,1628],[245,18,12,1628,1640],[246,12,10,1640,1650],[247,10,8,1650,1658],[248,8,7,1658,1665],[249,32,24,1665,1689],[250,21,19,1689,1708],[251,22,18,1708,1726],[252,25,20,1726,1746],[253,13,10,1746,1756],[254,12,9,1756,1765],[255,27,23,1765,1788],[256,11,8,1788,1796],[257,12,11,1796,1807],[258,16,14,1807,1821],[259,12,9,1821,1830],[260,13,13,1830,1843],[261,17,13,1843,1856],[262,7,5,1856,1861],[263,22,14,1861,1875],[264,8,6,1875,1881],[265,12,9,1881,1890],[266,1,1,1890,1891]]],[9,334,258,1891,2149,[[267,17,12,1891,1903],[268,15,9,1903,1912],[269,19,16,1912,1928],[270,3,3,1928,1931],[271,12,7,1931,1938],[272,5,5,1938,1943],[273,11,9,1943,1952],[275,13,9,1952,1961],[276,4,4,1961,1965],[277,14,12,1965,1977],[278,15,10,1977,1987],[279,25,20,1987,2007],[280,28,20,2007,2027],[281,22,19,2027,2046],[282,19,12,2046,2058],[283,14,12,2058,2070],[284,30,23,2070,2093],[285,22,19,2093,2112],[286,15,10,2112,2122],[287,10,8,2122,2130],[288,1,1,2130,2131],[289,3,3,2131,2134],[290,17,15,2134,2149]]],[10,326,244,2149,2393,[[291,32,27,2149,2176],[292,32,22,2176,2198],[293,15,10,2198,2208],[295,6,5,2208,2213],[296,1,1,2213,2214],[298,10,8,2214,2222],[299,5,5,2222,2227],[300,1,1,2227,2228],[301,8,6,2228,2234],[302,18,14,2234,2248],[303,20,15,2248,2263],[304,5,4,2263,2267],[305,1,1,2267,2268],[306,2,2,2268,2270],[307,14,14,2270,2284],[308,35,27,2284,2311],[309,12,11,2311,2322],[310,44,26,2322,2348],[311,20,15,2348,2363],[312,45,30,2363,2393]]],[11,345,244,2393,2637,[[313,10,7,2393,2400],[314,25,16,2400,2416],[315,15,10,2416,2426],[316,43,28,2426,2454],[317,23,19,2454,2473],[318,31,27,2473,2500],[319,16,12,2500,2512],[320,20,12,2512,2524],[321,41,23,2524,2547],[322,21,17,2547,2564],[323,4,3,2564,2567],[324,2,2,2567,2569],[325,9,6,2569,2575],[326,4,3,2575,2578],[327,1,1,2578,2579],[328,2,2,2579,2581],[329,6,5,2581,2586],[330,16,13,2586,2599],[331,15,8,2599,2607],[332,19,13,2607,2620],[333,4,4,2620,2624],[334,11,8,2624,2632],[335,6,4,2632,2636],[337,1,1,2636,2637]]],[12,72,65,2637,2702,[[341,2,2,2637,2639],[347,1,1,2639,2640],[348,6,6,2640,2646],[349,2,2,2646,2648],[350,3,3,2648,2651],[351,5,4,2651,2655],[352,3,3,2655,2658],[353,4,4,2658,2662],[354,10,8,2662,2670],[356,4,4,2670,2674],[358,18,14,2674,2688],[359,5,5,2688,2693],[360,1,1,2693,2694],[364,1,1,2694,2695],[365,4,4,2695,2699],[366,3,3,2699,2702]]],[13,184,145,2702,2847,[[367,4,4,2702,2706],[368,5,5,2706,2711],[372,9,7,2711,2718],[373,4,4,2718,2722],[374,1,1,2722,2723],[375,1,1,2723,2724],[376,13,9,2724,2733],[377,4,3,2733,2736],[378,4,3,2736,2739],[379,2,2,2739,2741],[380,3,3,2741,2744],[381,1,1,2744,2745],[382,2,2,2745,2747],[384,43,27,2747,2774],[385,3,3,2774,2777],[386,8,7,2777,2784],[387,3,2,2784,2786],[388,1,1,2786,2787],[389,5,4,2787,2791],[390,6,5,2791,2796],[391,11,8,2796,2804],[392,2,2,2804,2806],[394,5,4,2806,2810],[395,7,7,2810,2817],[396,2,2,2817,2819],[397,4,3,2819,2822],[398,11,9,2822,2831],[399,3,3,2831,2834],[400,10,7,2834,2841],[401,5,4,2841,2845],[402,2,2,2845,2847]]],[14,15,14,2847,2861,[[403,2,2,2847,2849],[404,1,1,2849,2850],[406,2,2,2850,2852],[410,3,2,2852,2854],[411,4,4,2854,2858],[412,3,3,2858,2861]]],[15,61,55,2861,2916,[[413,3,3,2861,2864],[414,11,10,2864,2874],[416,9,8,2874,2882],[417,10,8,2882,2890],[418,10,9,2890,2899],[419,2,2,2899,2901],[420,5,5,2901,2906],[421,4,4,2906,2910],[425,7,6,2910,2916]]],[16,52,44,2916,2960,[[426,6,5,2916,2921],[427,4,4,2921,2925],[428,4,4,2925,2929],[429,4,4,2929,2933],[430,8,7,2933,2940],[431,12,8,2940,2948],[432,8,6,2948,2954],[433,2,2,2954,2956],[434,4,4,2956,2960]]],[17,97,94,2960,3054,[[436,11,10,2960,2970],[437,7,6,2970,2976],[438,2,2,2976,2978],[439,1,1,2978,2979],[441,2,2,2979,2981],[442,2,2,2981,2983],[443,2,2,2983,2985],[444,5,5,2985,2990],[445,1,1,2990,2991],[446,2,2,2991,2993],[447,1,1,2993,2994],[450,1,1,2994,2995],[451,1,1,2995,2996],[453,1,1,2996,2997],[454,2,2,2997,2999],[455,2,2,2999,3001],[456,3,3,3001,3004],[457,4,4,3004,3008],[458,2,2,3008,3010],[459,1,1,3010,3011],[460,1,1,3011,3012],[461,1,1,3012,3013],[462,1,1,3013,3014],[463,4,3,3014,3017],[464,2,2,3017,3019],[466,2,2,3019,3021],[467,4,4,3021,3025],[468,3,3,3025,3028],[469,6,6,3028,3034],[470,5,5,3034,3039],[471,3,3,3039,3042],[472,3,3,3042,3045],[473,3,3,3045,3048],[474,1,1,3048,3049],[475,3,3,3049,3052],[477,2,2,3052,3054]]],[18,98,97,3054,3151,[[479,1,1,3054,3055],[480,1,1,3055,3056],[481,2,2,3056,3058],[487,3,3,3058,3061],[488,1,1,3061,3062],[489,2,2,3062,3064],[490,1,1,3064,3065],[491,1,1,3065,3066],[493,1,1,3066,3067],[504,1,1,3067,3068],[506,1,1,3068,3069],[507,1,1,3069,3070],[508,2,2,3070,3072],[509,1,1,3072,3073],[510,1,1,3073,3074],[512,6,5,3074,3079],[515,1,1,3079,3080],[516,1,1,3080,3081],[517,4,4,3081,3085],[518,2,2,3085,3087],[519,3,3,3087,3090],[522,1,1,3090,3091],[527,2,2,3091,3093],[530,1,1,3093,3094],[532,1,1,3094,3095],[535,1,1,3095,3096],[541,1,1,3096,3097],[543,1,1,3097,3098],[545,1,1,3098,3099],[547,2,2,3099,3101],[548,2,2,3101,3103],[550,2,2,3103,3105],[551,1,1,3105,3106],[552,1,1,3106,3107],[554,1,1,3107,3108],[555,1,1,3108,3109],[556,1,1,3109,3110],[559,1,1,3110,3111],[560,2,2,3111,3113],[564,1,1,3113,3114],[566,2,2,3114,3116],[567,1,1,3116,3117],[568,1,1,3117,3118],[571,3,3,3118,3121],[572,1,1,3121,3122],[573,1,1,3122,3123],[579,1,1,3123,3124],[582,3,3,3124,3127],[583,3,3,3127,3130],[584,2,2,3130,3132],[592,1,1,3132,3133],[593,1,1,3133,3134],[595,3,3,3134,3137],[596,2,2,3137,3139],[599,1,1,3139,3140],[601,1,1,3140,3141],[603,1,1,3141,3142],[606,2,2,3142,3144],[614,1,1,3144,3145],[616,2,2,3145,3147],[617,1,1,3147,3148],[619,1,1,3148,3149],[622,2,2,3149,3151]]],[19,25,25,3151,3176,[[628,2,2,3151,3153],[630,1,1,3153,3154],[631,1,1,3154,3155],[632,1,1,3155,3156],[634,2,2,3156,3158],[636,2,2,3158,3160],[647,3,3,3160,3163],[649,1,1,3163,3164],[650,1,1,3164,3165],[651,3,3,3165,3168],[652,1,1,3168,3169],[653,2,2,3169,3171],[655,1,1,3171,3172],[657,4,4,3172,3176]]],[20,20,20,3176,3196,[[659,3,3,3176,3179],[660,3,3,3179,3182],[661,2,2,3182,3184],[663,1,1,3184,3185],[664,1,1,3185,3186],[665,3,3,3186,3189],[666,3,3,3189,3192],[667,1,1,3192,3193],[668,1,1,3193,3194],[670,2,2,3194,3196]]],[21,2,2,3196,3198,[[672,1,1,3196,3197],[677,1,1,3197,3198]]],[22,247,212,3198,3410,[[679,2,2,3198,3200],[680,1,1,3200,3201],[681,3,3,3201,3204],[682,2,2,3204,3206],[683,2,2,3206,3208],[684,9,6,3208,3214],[685,8,8,3214,3222],[686,9,7,3222,3229],[687,1,1,3229,3230],[688,3,3,3230,3233],[690,2,2,3233,3235],[692,4,4,3235,3239],[694,1,1,3239,3240],[696,1,1,3240,3241],[697,3,3,3241,3244],[698,3,3,3244,3247],[699,4,4,3247,3251],[700,3,3,3251,3254],[701,3,2,3254,3256],[702,1,1,3256,3257],[703,1,1,3257,3258],[706,3,3,3258,3261],[707,9,6,3261,3267],[708,6,6,3267,3273],[709,1,1,3273,3274],[710,1,1,3274,3275],[711,2,2,3275,3277],[713,1,1,3277,3278],[714,15,12,3278,3290],[715,15,8,3290,3298],[716,11,9,3298,3307],[717,9,5,3307,3312],[718,6,5,3312,3317],[719,7,6,3317,3323],[720,3,3,3323,3326],[721,5,5,3326,3331],[722,12,11,3331,3342],[723,9,9,3342,3351],[724,1,1,3351,3352],[725,4,3,3352,3355],[726,5,5,3355,3360],[727,12,12,3360,3372],[728,1,1,3372,3373],[729,3,3,3373,3376],[730,3,3,3376,3379],[732,4,4,3379,3383],[734,5,3,3383,3386],[735,5,5,3386,3391],[736,1,1,3391,3392],[737,2,1,3392,3393],[739,1,1,3393,3394],[740,3,2,3394,3396],[741,1,1,3396,3397],[743,7,6,3397,3403],[744,8,7,3403,3410]]],[23,478,379,3410,3789,[[745,11,8,3410,3418],[746,14,11,3418,3429],[747,8,7,3429,3436],[748,7,5,3436,3441],[749,8,7,3441,3448],[750,9,8,3448,3456],[751,10,10,3456,3466],[752,6,5,3466,3471],[753,5,5,3471,3476],[754,3,3,3476,3479],[755,13,10,3479,3489],[756,2,2,3489,3491],[757,13,10,3491,3501],[758,8,6,3501,3507],[759,6,4,3507,3511],[760,8,8,3511,3519],[761,5,5,3519,3524],[762,9,7,3524,3531],[763,7,5,3531,3536],[764,4,4,3536,3540],[765,8,6,3540,3546],[766,11,11,3546,3557],[767,19,11,3557,3568],[768,5,4,3568,3572],[769,10,8,3572,3580],[770,16,10,3580,3590],[771,15,9,3590,3599],[772,16,10,3599,3609],[773,19,15,3609,3624],[774,7,6,3624,3630],[775,12,10,3630,3640],[776,18,14,3640,3654],[777,15,13,3654,3667],[778,10,6,3667,3673],[779,13,10,3673,3683],[780,14,11,3683,3694],[781,13,9,3694,3703],[782,19,18,3703,3721],[783,5,3,3721,3724],[784,6,5,3724,3729],[785,2,2,3729,3731],[786,11,9,3731,3740],[787,6,3,3740,3743],[788,15,11,3743,3754],[789,5,4,3754,3758],[790,4,4,3758,3762],[791,1,1,3762,3763],[792,6,6,3763,3769],[793,8,8,3769,3777],[794,4,4,3777,3781],[795,9,8,3781,3789]]],[24,10,10,3789,3799,[[798,3,3,3789,3792],[799,5,5,3792,3797],[800,2,2,3797,3799]]],[25,363,280,3799,4079,[[803,4,3,3799,3802],[804,12,10,3802,3812],[805,4,4,3812,3816],[806,3,3,3816,3819],[807,5,3,3819,3822],[808,3,3,3822,3825],[809,9,8,3825,3833],[810,8,7,3833,3840],[811,3,2,3840,3842],[812,14,9,3842,3851],[813,17,13,3851,3864],[814,15,13,3864,3877],[815,8,6,3877,3883],[816,2,2,3883,3885],[817,8,6,3885,3891],[818,10,7,3891,3898],[819,5,5,3898,3903],[820,1,1,3903,3904],[821,23,16,3904,3920],[822,15,9,3920,3929],[823,9,7,3929,3936],[824,8,8,3936,3944],[825,11,8,3944,3952],[826,11,8,3952,3960],[827,7,7,3960,3967],[828,4,2,3967,3969],[829,14,9,3969,3978],[830,9,7,3978,3985],[831,8,7,3985,3992],[832,4,4,3992,3996],[833,5,5,3996,4001],[834,21,16,4001,4017],[835,7,6,4017,4023],[836,7,5,4023,4028],[837,19,14,4028,4042],[838,17,10,4042,4052],[839,9,7,4052,4059],[840,5,3,4059,4062],[842,1,1,4062,4063],[843,1,1,4063,4064],[844,3,2,4064,4066],[845,5,4,4066,4070],[846,2,2,4070,4072],[847,4,4,4072,4076],[848,3,3,4076,4079]]],[26,23,22,4079,4101,[[850,4,4,4079,4083],[851,2,2,4083,4085],[857,6,6,4085,4091],[858,2,2,4091,4093],[859,6,5,4093,4098],[861,3,3,4098,4101]]],[27,22,20,4101,4121,[[862,6,5,4101,4106],[863,6,5,4106,4111],[864,2,2,4111,4113],[868,1,1,4113,4114],[871,2,2,4114,4116],[873,1,1,4116,4117],[874,2,2,4117,4119],[875,2,2,4119,4121]]],[28,5,4,4121,4125,[[877,4,3,4121,4124],[878,1,1,4124,4125]]],[29,52,45,4125,4170,[[879,9,9,4125,4134],[880,5,5,4134,4139],[881,4,4,4139,4143],[882,1,1,4143,4144],[883,7,6,4144,4150],[884,4,2,4150,4152],[885,14,12,4152,4164],[886,5,3,4164,4167],[887,3,3,4167,4170]]],[30,2,2,4170,4172,[[888,2,2,4170,4172]]],[31,22,20,4172,4192,[[889,9,9,4172,4181],[890,3,3,4181,4184],[891,4,3,4184,4187],[892,6,5,4187,4192]]],[32,10,10,4192,4202,[[894,3,3,4192,4195],[895,3,3,4195,4198],[896,2,2,4198,4200],[898,1,1,4200,4201],[899,1,1,4201,4202]]],[33,2,2,4202,4204,[[900,1,1,4202,4203],[902,1,1,4203,4204]]],[34,3,3,4204,4207,[[904,3,3,4204,4207]]],[35,5,5,4207,4212,[[906,1,1,4207,4208],[907,1,1,4208,4209],[908,3,3,4209,4212]]],[36,26,19,4212,4231,[[909,10,7,4212,4219],[910,16,12,4219,4231]]],[37,109,74,4231,4305,[[911,24,14,4231,4245],[912,5,3,4245,4248],[913,7,5,4248,4253],[914,17,9,4253,4262],[915,10,7,4262,4269],[916,9,6,4269,4275],[917,9,6,4275,4281],[918,15,13,4281,4294],[921,6,6,4294,4300],[922,1,1,4300,4301],[923,6,4,4301,4305]]],[38,40,30,4305,4335,[[925,18,12,4305,4317],[926,8,6,4317,4323],[927,12,10,4323,4333],[928,2,2,4333,4335]]]],[2,5,8,10,13,19,21,23,25,27,28,46,48,53,56,57,58,59,64,65,66,67,68,69,71,72,77,80,85,87,88,89,92,94,102,134,140,144,150,160,198,204,206,213,217,222,230,231,243,269,270,272,299,305,309,310,311,316,317,326,332,355,357,358,359,361,362,363,364,365,367,368,369,373,378,383,386,387,389,390,391,392,394,398,400,406,412,414,415,416,427,429,430,433,434,436,437,439,441,444,447,450,451,452,453,454,455,456,459,462,464,466,469,471,472,474,475,478,488,491,497,498,499,500,501,504,505,506,508,510,511,514,519,520,523,525,529,530,535,537,539,542,543,548,549,550,552,554,555,556,558,559,561,563,567,574,576,579,581,584,585,593,596,597,598,603,605,608,609,610,614,615,616,618,621,622,624,625,628,630,631,633,634,635,636,637,638,641,645,646,647,648,649,651,656,680,681,688,689,690,691,694,699,701,702,703,708,712,714,716,719,720,724,728,729,733,738,740,745,746,747,748,749,751,752,753,754,758,759,760,761,762,763,764,765,766,768,769,773,774,779,786,789,790,793,799,800,801,802,803,809,810,813,814,816,820,821,827,828,829,830,831,832,833,836,838,841,843,844,845,846,848,850,853,854,855,857,858,859,861,864,874,876,878,881,884,885,887,889,897,899,902,904,908,909,916,919,921,922,924,930,932,934,936,937,940,944,945,946,947,948,954,955,956,957,965,968,969,970,972,973,975,984,988,991,992,994,1000,1010,1011,1012,1013,1021,1022,1028,1089,1091,1092,1093,1096,1097,1098,1099,1100,1102,1103,1104,1105,1109,1113,1115,1116,1118,1127,1130,1132,1135,1136,1137,1140,1141,1142,1143,1144,1145,1147,1148,1156,1157,1161,1163,1166,1168,1179,1180,1181,1184,1188,1190,1204,1210,1211,1219,1220,1233,1234,1236,1239,1249,1250,1253,1254,1256,1259,1261,1262,1264,1265,1266,1270,1273,1274,1280,1281,1283,1285,1288,1289,1290,1292,1293,1295,1296,1297,1298,1301,1306,1307,1308,1310,1313,1317,1318,1319,1321,1325,1328,1331,1334,1339,1340,1341,1342,1343,1344,1345,1346,1347,1349,1350,1351,1352,1356,1361,1362,1367,1374,1375,1382,1384,1386,1388,1389,1416,1417,1419,1420,1421,1423,1424,1425,1428,1429,1435,1436,1438,1443,1445,1449,1450,1451,1452,1453,1454,1455,1459,1460,1462,1466,1469,1470,1471,1472,1474,1502,1510,1511,1512,1517,1521,1522,1523,1524,1525,1530,1531,1541,1547,1548,1550,1551,1554,1560,1561,1562,1563,1564,1567,1568,1572,1573,1574,1576,1582,1583,1584,1585,1586,1590,1591,1592,1593,1594,1595,1596,1597,1602,1603,1604,1605,1607,1608,1611,1612,1614,1615,1619,1620,1622,1623,1624,1626,1627,1628,1633,1634,1635,1636,1637,1638,1640,1642,1645,1646,1647,1648,1649,1651,1653,1654,1656,1657,1661,1665,1667,1681,1684,1685,1686,1693,1694,1699,1701,1702,1704,1711,1715,1718,1719,1720,1726,1729,1730,1735,1736,1737,1738,1739,1743,1747,1750,1755,1764,1769,1771,1778,1780,1784,1785,1786,1787,1789,1793,1798,1801,1802,1805,1806,1807,1810,1814,1815,1817,1819,1837,1842,1843,1847,1849,1859,1868,1870,1875,1881,1884,1886,1890,1892,1894,1900,1901,1902,1904,1914,1915,1921,1929,1944,1946,1950,1951,1953,1955,1956,1958,1959,1962,1966,1970,1972,1975,1979,1980,1985,1986,1987,1988,1990,1992,1993,1997,1999,2002,2005,2009,2013,2014,2016,2023,2029,2034,2035,2036,2038,2041,2047,2049,2050,2051,2052,2070,2071,2073,2082,2122,2157,2178,2180,2184,2185,2189,2191,2196,2393,2399,2404,2413,2416,2421,2432,2433,2439,2440,2442,2443,2446,2447,2449,2450,2451,2455,2456,2459,2460,2461,2462,2464,2465,2467,2468,2469,2471,2474,2478,2485,2487,2488,2490,2491,2492,2493,2494,2497,2505,2506,2523,2532,2535,2561,2571,2572,2708,2746,2747,2796,2797,2844,2850,2857,2858,2868,2873,2874,2901,2902,2907,2908,2918,2922,2948,2955,2956,2959,2960,2980,2981,2983,2985,2993,2998,2999,3045,3046,3053,3112,3144,3146,3169,3170,3203,3236,3237,3243,3247,3249,3252,3253,3282,3283,3319,3320,3342,3346,3361,3362,3370,3372,3386,3387,3395,3403,3404,3411,3412,3425,3426,3428,3435,3436,3447,3459,3461,3470,3471,3489,3571,3572,3605,3652,3659,3697,3703,3706,3732,3736,3744,3760,3764,3793,3797,3803,3804,3811,3813,3814,3824,3825,3845,3846,3854,3861,3940,3941,3944,3962,3966,3972,3973,3974,3975,3989,4017,4018,4019,4023,4024,4028,4035,4036,4037,4040,4042,4044,4045,4047,4051,4052,4053,4061,4063,4065,4070,4072,4073,4076,4092,4102,4105,4106,4107,4110,4112,4115,4118,4119,4121,4122,4123,4125,4128,4134,4136,4139,4148,4149,4154,4155,4170,4171,4188,4190,4191,4197,4199,4202,4206,4209,4210,4214,4216,4217,4218,4220,4222,4228,4230,4231,4235,4238,4240,4245,4254,4256,4258,4277,4281,4282,4283,4287,4290,4291,4314,4318,4321,4323,4325,4329,4330,4331,4334,4342,4347,4348,4354,4356,4361,4367,4374,4379,4380,4383,4384,4385,4387,4388,4389,4391,4392,4393,4395,4403,4404,4405,4407,4409,4410,4412,4413,4417,4419,4420,4421,4423,4427,4428,4429,4431,4432,4433,4434,4435,4439,4441,4442,4443,4445,4446,4449,4456,4457,4458,4461,4466,4467,4469,4475,4476,4481,4483,4487,4490,4492,4541,4554,4556,4560,4562,4566,4569,4572,4578,4579,4580,4648,4649,4665,4667,4679,4685,4689,4713,4720,4723,4724,4728,4734,4738,4743,4747,4749,4810,4811,4817,4818,4829,4832,4846,4854,4855,4881,4884,4885,4897,4898,4901,4906,4908,4912,4914,4917,4919,4920,4921,4926,4929,4931,4933,4934,4940,4942,4947,4955,4964,4969,4977,4993,4996,4998,5001,5010,5014,5054,5058,5077,5080,5081,5083,5106,5107,5128,5154,5161,5169,5170,5180,5182,5183,5185,5187,5197,5260,5270,5274,5278,5284,5285,5328,5330,5335,5375,5378,5380,5400,5401,5405,5413,5430,5432,5435,5454,5467,5484,5486,5487,5554,5555,5556,5569,5571,5579,5583,5584,5586,5594,5596,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5678,5679,5681,5698,5701,5703,5704,5720,5721,5730,5735,5738,5742,5744,5745,5751,5753,5765,5778,5784,5785,5795,5798,5804,5806,5812,5817,5818,5819,5822,5823,5828,5830,5832,5833,5834,5837,5843,5852,5861,5862,5863,5864,5867,5870,5871,5872,5873,5878,5883,5885,5886,5890,5893,5896,5898,5899,5900,5901,5902,5903,5911,5913,5915,5916,5917,5925,5927,5931,5932,5936,5943,5947,5948,5949,5951,5955,5956,5957,5959,5965,5971,5975,5978,5979,5983,5984,5986,5989,5995,5996,6001,6003,6006,6008,6020,6043,6044,6045,6046,6048,6056,6058,6059,6061,6067,6070,6072,6076,6081,6082,6086,6088,6089,6113,6116,6155,6193,6196,6218,6220,6221,6279,6289,6290,6291,6292,6296,6301,6373,6374,6383,6428,6434,6437,6441,6442,6450,6452,6453,6454,6457,6459,6462,6478,6492,6495,6497,6498,6500,6503,6510,6511,6512,6516,6521,6523,6524,6533,6546,6548,6565,6587,6588,6592,6596,6605,6607,6608,6613,6617,6618,6619,6621,6624,6646,6662,6664,6666,6667,6668,6669,6670,6671,6672,6674,6676,6677,6679,6683,6684,6685,6686,6690,6693,6696,6697,6698,6699,6701,6703,6707,6708,6709,6711,6712,6718,6720,6721,6724,6725,6726,6728,6734,6737,6738,6739,6740,6741,6742,6743,6744,6755,6757,6761,6762,6763,6764,6765,6766,6767,6768,6769,6782,6783,6785,6790,6791,6792,6802,6808,6821,6822,6826,6829,6831,6835,6836,6837,6838,6839,6841,6842,6844,6846,6848,6859,6864,6865,6866,6867,6870,6871,6873,6874,6875,6887,6890,6891,6892,6894,6895,6896,6897,6899,6900,6901,6902,6906,6907,6911,6912,6921,6922,6923,6924,6925,6927,6930,6931,6932,6935,6936,6939,6940,6941,6942,6945,6947,6951,6954,6955,6956,6958,6959,6960,6961,6962,6963,6964,6966,6967,6969,6972,6973,6974,6975,6977,6979,6982,6983,6989,6990,6993,6995,6996,6997,6998,6999,7001,7002,7007,7011,7012,7016,7017,7018,7029,7030,7032,7033,7035,7036,7037,7041,7042,7044,7046,7047,7052,7054,7057,7058,7062,7066,7072,7077,7082,7086,7093,7103,7105,7107,7108,7110,7112,7118,7119,7120,7121,7122,7124,7135,7137,7138,7139,7142,7143,7146,7147,7151,7153,7154,7155,7156,7157,7159,7160,7162,7163,7164,7168,7169,7170,7171,7173,7177,7181,7182,7183,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7198,7199,7201,7204,7207,7220,7223,7226,7227,7229,7230,7234,7235,7238,7241,7255,7256,7260,7263,7267,7270,7276,7280,7281,7282,7284,7285,7286,7287,7292,7293,7294,7300,7303,7304,7311,7313,7314,7318,7319,7326,7327,7329,7330,7333,7334,7335,7351,7352,7355,7357,7358,7360,7364,7374,7375,7376,7379,7380,7388,7391,7394,7396,7397,7398,7399,7400,7401,7402,7403,7406,7408,7409,7410,7412,7414,7415,7417,7418,7419,7420,7429,7430,7432,7433,7434,7436,7437,7440,7442,7445,7446,7447,7448,7450,7452,7454,7455,7457,7458,7459,7461,7464,7465,7466,7470,7472,7479,7480,7488,7489,7494,7496,7497,7498,7504,7509,7514,7515,7516,7517,7518,7519,7520,7525,7526,7527,7532,7536,7537,7541,7542,7544,7546,7548,7549,7550,7551,7552,7553,7561,7562,7566,7570,7572,7573,7574,7575,7576,7577,7578,7580,7582,7584,7586,7588,7590,7592,7593,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7610,7611,7612,7613,7614,7617,7626,7628,7635,7643,7644,7645,7646,7647,7648,7650,7651,7652,7655,7657,7661,7662,7663,7673,7674,7676,7683,7684,7687,7693,7694,7697,7698,7699,7700,7701,7708,7710,7717,7720,7721,7723,7725,7728,7730,7731,7732,7733,7734,7735,7736,7737,7739,7740,7741,7742,7748,7751,7752,7756,7757,7759,7760,7762,7766,7767,7770,7772,7773,7774,7776,7777,7780,7781,7783,7786,7790,7792,7794,7796,7799,7800,7801,7803,7804,7805,7809,7811,7812,7813,7814,7817,7819,7820,7821,7822,7827,7829,7831,7832,7837,7840,7843,7845,7847,7848,7849,7852,7855,7856,7866,7867,7871,7874,7875,7880,7882,7885,7893,7896,7900,7901,7902,7906,7911,7913,7914,7915,7919,7920,7922,7923,7924,7926,7927,7930,7931,7935,7940,7941,7942,7943,7944,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7963,7965,7970,7971,7972,7973,7975,7976,7984,7985,7986,7991,7993,7998,8000,8001,8004,8013,8025,8026,8027,8028,8029,8030,8031,8035,8036,8037,8038,8040,8050,8053,8054,8063,8069,8070,8071,8075,8076,8088,8089,8093,8094,8095,8097,8098,8099,8102,8104,8105,8109,8112,8114,8116,8119,8128,8129,8130,8133,8134,8138,8140,8151,8152,8155,8166,8169,8177,8178,8179,8182,8183,8184,8185,8187,8188,8198,8206,8207,8228,8229,8230,8231,8233,8234,8235,8236,8238,8242,8243,8245,8251,8262,8264,8267,8269,8270,8271,8274,8278,8279,8280,8282,8284,8287,8291,8293,8297,8299,8304,8305,8307,8308,8313,8321,8322,8323,8324,8326,8327,8328,8329,8332,8333,8334,8337,8341,8342,8343,8345,8347,8349,8350,8352,8358,8360,8361,8363,8364,8365,8366,8367,8368,8369,8371,8373,8374,8375,8377,8378,8380,8386,8387,8388,8391,8392,8393,8396,8397,8398,8399,8402,8403,8404,8408,8410,8411,8414,8415,8416,8420,8422,8423,8428,8429,8430,8433,8435,8436,8437,8442,8443,8444,8446,8447,8450,8454,8455,8456,8457,8458,8463,8464,8465,8469,8470,8478,8480,8481,8482,8483,8488,8489,8490,8492,8496,8497,8498,8499,8500,8501,8503,8504,8505,8506,8507,8508,8509,8510,8511,8513,8516,8519,8520,8522,8524,8530,8532,8533,8534,8536,8537,8540,8541,8544,8545,8549,8552,8554,8555,8558,8560,8563,8565,8570,8571,8572,8574,8575,8581,8582,8583,8584,8585,8586,8596,8597,8604,8656,8668,8670,8693,8694,8695,8702,8703,8704,8705,8706,8708,8709,8710,8713,8714,8715,8716,8719,8722,8723,8728,8730,8733,8734,8740,8741,8742,8745,8746,8747,8748,8749,8750,8751,8753,8756,8758,8759,8760,8764,8765,8768,8769,8770,8771,8774,8778,8783,8784,8785,8786,8787,8788,8790,8791,8792,8793,8796,8799,8800,8801,8806,8808,8809,8812,8814,8821,8822,8827,8833,8838,8839,8840,8841,8842,8843,8880,8883,8884,8885,8886,8907,8997,9000,9003,9008,9010,9014,9032,9040,9054,9056,9059,9060,9064,9085,9110,9119,9126,9129,9130,9139,9154,9156,9157,9158,9160,9161,9163,9165,9167,9173,9174,9175,9177,9179,9186,9187,9188,9190,9192,9193,9197,9198,9199,9200,9202,9205,9210,9211,9215,9220,9223,9224,9225,9267,9284,9299,9318,9319,9325,9327,9328,9329,9330,9331,9335,9336,9337,9338,9340,9341,9342,9346,9348,9349,9350,9351,9352,9355,9356,9358,9359,9362,9363,9365,9366,9367,9368,9371,9372,9374,9375,9377,9380,9381,9382,9384,9385,9389,9391,9392,9394,9396,9397,9398,9400,9401,9402,9407,9410,9412,9413,9415,9416,9417,9418,9419,9420,9421,9422,9425,9426,9430,9431,9436,9439,9440,9441,9442,9443,9444,9445,9447,9448,9450,9453,9454,9455,9457,9458,9460,9461,9464,9465,9466,9468,9470,9471,9474,9479,9483,9484,9485,9486,9487,9488,9489,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9504,9505,9506,9507,9508,9510,9511,9512,9514,9516,9529,9535,9537,9538,9539,9541,9544,9549,9553,9554,9555,9556,9557,9560,9561,9565,9566,9567,9568,9569,9570,9571,9572,9574,9583,9584,9586,9587,9588,9589,9590,9592,9593,9599,9604,9605,9606,9609,9610,9612,9615,9616,9617,9618,9619,9622,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9639,9641,9643,9644,9645,9646,9650,9651,9652,9653,9654,9655,9657,9658,9660,9662,9663,9664,9666,9667,9668,9669,9670,9672,9673,9675,9676,9677,9679,9680,9681,9682,9683,9684,9685,9686,9687,9689,9690,9691,9692,9693,9694,9695,9696,9700,9701,9702,9703,9705,9706,9707,9708,9709,9710,9711,9713,9716,9717,9719,9720,9721,9725,9726,9728,9731,9732,9733,9734,9735,9736,9737,9739,9740,9741,9746,9757,9759,9761,9762,9767,9768,9769,9771,9773,9774,9775,9776,9777,9778,9779,9781,9783,9787,9788,9789,9790,9792,9793,9794,9797,9798,9799,9801,9802,9806,9807,9808,9809,9811,9813,9815,9816,9817,9818,9823,9834,9841,9844,9854,9857,9885,9886,9887,9888,9889,9890,9902,9904,9905,9937,9970,9978,9995,9996,10009,10010,10018,10038,10043,10044,10046,10049,10050,10051,10052,10053,10054,10055,10056,10060,10064,10067,10070,10071,10076,10081,10084,10093,10099,10100,10102,10103,10105,10106,10107,10108,10112,10113,10114,10115,10117,10123,10126,10129,10131,10148,10153,10154,10155,10157,10160,10161,10163,10182,10183,10186,10192,10246,10394,10395,10663,10674,10675,10678,10679,10690,10692,10737,10739,10762,10764,10772,10784,10785,10786,10788,10793,10803,10807,10838,10851,10855,10856,10864,10865,10866,10867,10869,10870,10879,10887,10909,10910,10912,10919,10936,10937,10942,10943,10944,10945,10947,10949,10951,10952,10956,10957,10958,10961,10965,10966,10969,10971,10972,11008,11132,11145,11146,11149,11163,11165,11174,11184,11196,11201,11202,11205,11212,11214,11222,11223,11226,11283,11286,11290,11296,11298,11302,11319,11336,11342,11345,11346,11357,11369,11398,11400,11401,11402,11404,11405,11407,11409,11411,11416,11417,11418,11442,11443,11444,11457,11461,11479,11482,11486,11492,11511,11516,11545,11546,11547,11548,11549,11550,11552,11553,11554,11555,11556,11557,11558,11559,11560,11561,11562,11563,11565,11566,11567,11568,11569,11571,11572,11573,11575,11578,11582,11585,11589,11593,11595,11602,11607,11608,11624,11631,11636,11653,11659,11667,11669,11670,11682,11683,11685,11697,11699,11708,11711,11713,11719,11720,11721,11722,11723,11750,11755,11773,11774,11777,11787,11796,11809,11812,11815,11818,11821,11822,11833,11845,11858,11864,11865,11876,11879,11881,11884,11885,11886,11887,11892,11899,11912,11915,11924,11948,11949,11951,11953,11956,11957,11959,11969,11987,11989,11991,12015,12016,12017,12018,12090,12112,12113,12223,12229,12238,12243,12247,12248,12254,12262,12264,12299,12301,12304,12309,12310,12311,12312,12313,12314,12324,12325,12326,12327,12361,12362,12369,12370,12371,12373,12378,12381,12384,12385,12386,12389,12390,12391,12394,12395,12403,12404,12407,12408,12409,12410,12411,12412,12420,12423,12485,12494,12502,12503,12504,12508,12516,12526,12529,12534,12680,12682,12688,12690,12692,12693,12712,12715,12718,12719,12720,12726,12737,12739,12746,12750,12751,12755,12758,12769,12772,12775,12777,12782,12783,12784,12785,12786,12791,12793,12794,12796,12797,12798,12799,12800,12803,12806,12809,12810,12812,12813,12815,12816,12822,12824,12846,12847,12848,12859,12874,12876,12877,12878,12881,12883,12885,12886,12887,12890,12893,12894,12895,12897,12900,12901,12906,12907,12931,12979,13000,13012,13021,13030,13039,13052,13058,13063,13073,13078,13088,13109,13112,13129,13204,13239,13277,13298,13325,13327,13333,13356,13369,13383,13390,13402,13406,13418,13420,13424,13451,13462,13468,13482,13518,13526,13532,13533,13550,13612,13619,13634,13635,13638,13641,13658,13674,13677,13684,13688,13692,13701,13714,13717,13721,13722,13723,13730,13734,13737,13746,13759,13775,13788,13789,13794,13804,13828,13859,13865,13867,13870,13923,13929,13952,13959,13969,13971,14047,14052,14054,14060,14070,14071,14078,14081,14094,14293,14317,14325,14345,14353,14360,14375,14413,14420,14431,14435,14437,14506,14513,14532,14535,14540,14541,14546,14547,14558,14564,14565,14598,14680,14684,14720,14738,14790,14855,14876,14922,14974,14975,14986,14987,15031,15035,15056,15075,15103,15132,15195,15239,15245,15253,15306,15328,15345,15381,15397,15435,15438,15449,15464,15475,15545,15617,15637,15640,15674,15685,15699,15701,15724,15832,15859,15871,15872,15873,15955,15980,16090,16103,16117,16133,16140,16229,16250,16259,16269,16291,16326,16331,16411,16421,16483,16494,16529,16579,16588,16642,16654,16963,16968,16976,17028,17051,17091,17103,17108,17120,17154,17160,17220,17260,17266,17267,17271,17317,17325,17331,17334,17335,17348,17376,17377,17403,17420,17439,17452,17456,17462,17472,17475,17491,17496,17524,17531,17564,17635,17665,17672,17688,17714,17717,17723,17734,17736,17758,17759,17772,17774,17776,17777,17778,17780,17784,17785,17786,17787,17789,17792,17794,17795,17808,17810,17812,17818,17819,17826,17827,17838,17858,17863,17874,17901,17904,17932,17938,17941,17952,17983,18001,18015,18022,18029,18031,18032,18035,18041,18044,18047,18051,18056,18066,18067,18081,18089,18111,18127,18176,18179,18180,18204,18205,18206,18208,18209,18215,18227,18229,18232,18233,18238,18239,18254,18264,18289,18303,18324,18334,18335,18337,18340,18341,18342,18343,18344,18345,18346,18348,18351,18355,18358,18361,18362,18367,18373,18376,18385,18391,18393,18394,18395,18400,18401,18405,18411,18412,18415,18416,18417,18418,18420,18421,18426,18429,18445,18447,18457,18458,18460,18464,18472,18477,18485,18497,18502,18506,18511,18514,18519,18521,18535,18538,18539,18549,18550,18552,18553,18557,18559,18560,18561,18562,18570,18571,18572,18574,18575,18579,18580,18585,18596,18606,18607,18609,18619,18621,18631,18634,18636,18639,18640,18641,18642,18643,18644,18645,18650,18656,18657,18658,18661,18663,18689,18695,18696,18699,18700,18703,18724,18729,18731,18733,18754,18756,18757,18775,18779,18780,18784,18786,18795,18821,18849,18858,18865,18874,18898,18902,18904,18905,18910,18922,18923,18927,18931,18934,18942,18943,18945,18950,18952,18953,18955,18957,18958,18959,18960,18966,18967,18970,18971,18973,18985,18988,18990,18992,18996,19000,19003,19008,19009,19013,19014,19018,19021,19030,19032,19037,19038,19054,19060,19062,19070,19072,19077,19078,19082,19095,19098,19103,19104,19105,19106,19110,19111,19120,19121,19122,19123,19129,19139,19140,19142,19147,19151,19157,19159,19161,19164,19165,19182,19188,19190,19192,19198,19203,19219,19220,19227,19229,19230,19231,19232,19233,19235,19237,19247,19248,19253,19263,19267,19269,19272,19274,19275,19278,19279,19284,19287,19288,19303,19304,19306,19307,19308,19310,19316,19317,19326,19334,19337,19339,19341,19345,19346,19347,19350,19355,19362,19372,19376,19377,19378,19385,19389,19394,19395,19396,19397,19402,19408,19410,19418,19421,19422,19425,19426,19431,19437,19441,19443,19444,19448,19452,19453,19455,19456,19457,19460,19462,19463,19465,19468,19472,19475,19484,19486,19491,19499,19500,19501,19509,19517,19518,19519,19521,19522,19527,19528,19529,19532,19536,19539,19542,19549,19561,19562,19564,19566,19573,19574,19576,19580,19581,19583,19584,19588,19589,19590,19597,19598,19600,19605,19608,19610,19612,19615,19617,19619,19620,19623,19624,19629,19630,19631,19632,19633,19634,19638,19639,19643,19645,19650,19651,19652,19656,19657,19659,19660,19663,19665,19666,19667,19668,19669,19670,19672,19679,19685,19693,19698,19701,19706,19707,19714,19720,19725,19726,19728,19734,19737,19738,19739,19744,19745,19746,19747,19756,19757,19759,19767,19773,19774,19776,19777,19779,19785,19786,19787,19788,19792,19794,19795,19798,19799,19800,19802,19803,19805,19813,19814,19818,19824,19828,19829,19834,19835,19836,19838,19840,19841,19842,19843,19847,19856,19857,19858,19859,19860,19861,19869,19871,19872,19877,19880,19881,19883,19887,19888,19891,19892,19893,19896,19897,19898,19899,19900,19903,19905,19907,19909,19910,19911,19912,19914,19915,19917,19919,19920,19921,19934,19938,19939,19943,19950,19955,19956,19957,19963,19965,19977,19979,19980,19984,19988,19989,19990,19993,19995,19999,20005,20007,20011,20012,20014,20017,20021,20025,20030,20034,20035,20036,20040,20041,20042,20043,20044,20053,20059,20061,20070,20075,20081,20088,20094,20097,20099,20120,20128,20129,20134,20139,20145,20155,20161,20162,20168,20173,20184,20199,20213,20245,20247,20248,20270,20273,20274,20276,20344,20347,20348,20372,20378,20391,20408,20411,20435,20440,20493,20495,20496,20503,20505,20506,20512,20513,20518,20520,20524,20526,20529,20542,20543,20544,20545,20551,20553,20554,20564,20566,20574,20578,20579,20582,20609,20610,20612,20613,20616,20617,20619,20621,20623,20626,20627,20629,20630,20631,20633,20635,20639,20657,20658,20660,20662,20668,20669,20670,20671,20672,20681,20688,20689,20690,20691,20697,20699,20701,20702,20703,20706,20707,20708,20709,20710,20711,20714,20715,20716,20718,20719,20720,20721,20723,20726,20728,20733,20735,20737,20743,20748,20752,20755,20760,20763,20765,20768,20798,20806,20821,20826,20828,20834,20836,20837,20844,20847,20850,20851,20868,20874,20878,20883,20897,20898,20900,20902,20903,20908,20913,20916,20922,20924,20925,20927,20934,20940,20942,20944,20945,20947,20951,20952,20953,20962,20968,20970,20972,20977,20979,20993,20995,20999,21000,21004,21008,21029,21035,21039,21042,21043,21050,21053,21057,21059,21062,21065,21071,21075,21076,21077,21084,21086,21089,21091,21095,21096,21098,21099,21101,21102,21103,21107,21115,21117,21119,21122,21124,21158,21159,21163,21166,21168,21169,21177,21179,21182,21184,21186,21191,21192,21196,21200,21202,21205,21206,21210,21214,21217,21224,21226,21231,21232,21240,21245,21249,21250,21251,21259,21265,21281,21282,21288,21290,21291,21292,21293,21294,21297,21300,21301,21303,21304,21305,21307,21310,21314,21315,21323,21324,21330,21333,21345,21347,21354,21356,21358,21360,21361,21362,21363,21364,21365,21366,21372,21375,21379,21381,21392,21394,21396,21400,21401,21402,21406,21408,21409,21412,21415,21416,21418,21426,21428,21435,21436,21438,21439,21442,21449,21465,21473,21530,21565,21579,21590,21601,21604,21605,21608,21639,21648,21656,21671,21675,21679,21685,21687,21692,21740,21747,21748,21755,21760,21761,21974,21975,21977,21978,21980,21987,21992,22010,22026,22027,22031,22034,22035,22087,22089,22090,22096,22098,22100,22103,22104,22106,22110,22112,22117,22128,22129,22131,22180,22228,22233,22260,22268,22276,22284,22285,22328,22330,22343,22353,22366,22367,22369,22370,22372,22373,22375,22377,22379,22380,22382,22383,22385,22391,22396,22404,22406,22407,22411,22426,22427,22437,22439,22440,22450,22460,22463,22466,22467,22469,22470,22472,22474,22475,22476,22478,22479,22480,22481,22483,22486,22495,22496,22505,22510,22511,22513,22532,22537,22538,22539,22540,22541,22542,22543,22545,22550,22552,22558,22559,22562,22565,22570,22572,22576,22577,22578,22598,22599,22602,22609,22613,22619,22622,22631,22649,22674,22696,22719,22750,22754,22767,22799,22820,22827,22836,22840,22841,22842,22843,22845,22847,22848,22853,22856,22857,22861,22862,22864,22865,22866,22867,22868,22869,22875,22876,22879,22881,22882,22884,22885,22887,22888,22889,22890,22892,22894,22895,22897,22899,22901,22903,22907,22914,22916,22917,22918,22919,22924,22926,22927,22928,22930,22933,22934,22935,22936,22938,22939,22941,22942,22944,22946,22947,22951,22952,22954,22955,22956,22959,22965,22966,22967,22970,22971,22975,22977,22978,22979,22980,22982,22983,22985,22990,22994,22995,22996,22997,22999,23032,23033,23037,23040,23041,23043,23050,23062,23064,23065,23068,23091,23093,23094,23095,23096,23097,23098,23099,23100,23101,23102,23103,23105,23107,23111,23117,23119,23120,23121,23125,23127,23128,23130,23131,23132,23133,23134,23137,23139,23141]]],["+",[56,51,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,4,3,1,4,[[54,1,1,1,2],[57,1,1,2,3],[70,2,1,3,4]]],[3,3,3,4,7,[[131,1,1,4,5],[145,1,1,5,6],[148,1,1,6,7]]],[4,1,1,7,8,[[178,1,1,7,8]]],[5,1,1,8,9,[[203,1,1,8,9]]],[6,2,1,9,10,[[225,2,1,9,10]]],[8,5,4,10,14,[[246,1,1,10,11],[254,1,1,11,12],[255,2,1,12,13],[258,1,1,13,14]]],[9,4,4,14,18,[[273,1,1,14,15],[278,1,1,15,16],[280,1,1,16,17],[287,1,1,17,18]]],[10,2,2,18,20,[[312,2,2,18,20]]],[11,5,5,20,25,[[313,1,1,20,21],[322,1,1,21,22],[332,2,2,22,24],[335,1,1,24,25]]],[12,2,2,25,27,[[354,1,1,25,26],[358,1,1,26,27]]],[13,2,2,27,29,[[384,1,1,27,28],[397,1,1,28,29]]],[15,1,1,29,30,[[418,1,1,29,30]]],[16,2,2,30,32,[[426,1,1,30,31],[431,1,1,31,32]]],[20,1,1,32,33,[[659,1,1,32,33]]],[22,2,2,33,35,[[684,1,1,33,34],[717,1,1,34,35]]],[23,9,8,35,43,[[749,1,1,35,36],[758,1,1,36,37],[759,1,1,37,38],[767,3,2,38,40],[772,1,1,40,41],[775,1,1,41,42],[778,1,1,42,43]]],[24,1,1,43,44,[[798,1,1,43,44]]],[25,6,5,44,49,[[804,1,1,44,45],[813,1,1,45,46],[825,1,1,46,47],[829,2,1,47,48],[836,1,1,48,49]]],[37,2,2,49,51,[[911,1,1,49,50],[914,1,1,50,51]]]],[605,1633,1737,2082,4191,4648,4749,5583,6290,6931,7447,7723,7751,7832,8185,8304,8388,8585,9495,9498,9541,9798,10103,10113,10182,10867,10952,11559,11864,12420,12719,12800,17325,17777,18416,19077,19310,19317,19501,19522,19631,19714,19803,20347,20513,20703,21076,21166,21354,22897,22935]]],["Bid",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7418]]],["Said",[1,1,[[0,1,1,0,1,[[19,1,1,0,1]]]],[500]]],["Say",[35,35,[[0,2,2,0,2,[[11,1,1,0,1],[44,1,1,1,2]]],[1,5,5,2,7,[[56,1,1,2,3],[57,2,2,3,5],[65,1,1,5,6],[82,1,1,6,7]]],[2,1,1,7,8,[[111,1,1,7,8]]],[3,1,1,8,9,[[130,1,1,8,9]]],[4,1,1,9,10,[[153,1,1,9,10]]],[6,1,1,10,11,[[222,1,1,10,11]]],[11,1,1,11,12,[[316,1,1,11,12]]],[18,2,2,12,14,[[543,1,1,12,13],[573,1,1,13,14]]],[19,4,4,14,18,[[630,1,1,14,15],[634,1,1,15,16],[647,1,1,16,17],[651,1,1,17,18]]],[20,1,1,18,19,[[665,1,1,18,19]]],[22,5,5,19,24,[[681,1,1,19,20],[686,1,1,20,21],[713,1,1,21,22],[714,1,1,22,23],[740,1,1,23,24]]],[23,2,2,24,26,[[745,1,1,24,25],[757,1,1,25,26]]],[25,8,8,26,34,[[813,2,2,26,28],[814,1,1,28,29],[818,2,2,29,31],[822,1,1,31,32],[834,2,2,32,34]]],[27,1,1,34,35,[[863,1,1,34,35]]]],[311,1375,1704,1715,1726,1956,2478,3372,4136,4934,6875,9616,14876,15475,16483,16579,16976,17108,17439,17717,17819,18324,18334,18865,18953,19284,20690,20691,20719,20834,20837,20953,21291,21307,22106]]],["Saying",[6,6,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,2,2,1,3,[[548,1,1,1,2],[582,1,1,2,3]]],[23,2,2,3,5,[[746,1,1,3,4],[786,1,1,4,5]]],[29,1,1,5,6,[[886,1,1,5,6]]]],[10838,14987,15617,18992,19989,22486]]],["Spake",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1274]]],["Speak",[13,13,[[2,1,1,0,1,[[110,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[4,1,1,2,3,[[161,1,1,2,3]]],[10,2,2,3,5,[[292,1,1,3,4],[302,1,1,4,5]]],[11,1,1,5,6,[[330,1,1,5,6]]],[13,1,1,6,7,[[377,1,1,6,7]]],[25,3,3,7,10,[[812,1,1,7,8],[825,1,1,8,9],[840,1,1,9,10]]],[36,2,2,10,12,[[910,2,2,10,12]]],[37,1,1,12,13,[[917,1,1,12,13]]]],[3346,4231,5161,8787,9174,10043,11417,20660,21077,21465,22857,22876,22967]]],["Tell",[3,3,[[10,1,1,0,1,[[310,1,1,0,1]]],[11,1,1,1,2,[[334,1,1,1,2]]],[13,1,1,2,3,[[400,1,1,2,3]]]],[9417,10160,11956]]],["answer",[7,7,[[5,1,1,0,1,[[190,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[10,1,1,2,3,[[299,1,1,2,3]]],[13,1,1,3,4,[[376,1,1,3,4]]],[23,1,1,4,5,[[766,1,1,4,5]]],[25,1,1,5,6,[[822,1,1,5,6]]],[37,1,1,6,7,[[923,1,1,6,7]]]],[5917,7256,9060,11405,19463,20951,23065]]],["answered",[77,76,[[0,1,1,0,1,[[42,1,1,0,1]]],[5,2,2,1,3,[[188,1,1,1,2],[201,1,1,2,3]]],[6,5,5,3,8,[[218,2,2,3,5],[221,1,1,5,6],[225,2,2,6,8]]],[7,2,2,8,10,[[233,1,1,8,9],[234,1,1,9,10]]],[8,14,14,10,24,[[238,4,4,10,14],[240,1,1,14,15],[241,1,1,15,16],[245,1,1,16,17],[247,1,1,17,18],[249,1,1,18,19],[252,2,2,19,21],[257,1,1,21,22],[263,1,1,22,23],[265,1,1,23,24]]],[9,16,15,24,39,[[267,4,4,24,28],[268,1,1,28,29],[275,1,1,29,30],[279,1,1,30,31],[280,1,1,31,32],[284,3,3,32,35],[285,2,2,35,37],[286,2,1,37,38],[287,1,1,38,39]]],[10,6,6,39,45,[[301,1,1,39,40],[308,2,2,40,42],[310,1,1,42,43],[311,2,2,43,45]]],[11,18,18,45,63,[[314,1,1,45,46],[315,1,1,46,47],[316,3,3,47,50],[318,5,5,50,55],[320,3,3,55,58],[321,2,2,58,60],[322,2,2,60,62],[332,1,1,62,63]]],[12,1,1,63,64,[[358,1,1,63,64]]],[13,5,5,64,69,[[368,1,1,64,65],[373,1,1,65,66],[384,1,1,66,67],[391,1,1,67,68],[400,1,1,68,69]]],[16,3,3,69,72,[[426,1,1,69,70],[430,1,1,70,71],[432,1,1,71,72]]],[22,1,1,72,73,[[684,1,1,72,73]]],[23,1,1,73,74,[[780,1,1,73,74]]],[25,1,1,74,75,[[838,1,1,74,75]]],[37,1,1,75,76,[[915,1,1,75,76]]]],[1318,5883,6221,6737,6744,6842,6935,6939,7153,7181,7280,7282,7286,7292,7327,7335,7440,7465,7552,7645,7676,7799,7957,7986,8026,8029,8030,8035,8069,8233,8329,8361,8481,8507,8510,8537,8549,8571,8581,9130,9349,9359,9422,9457,9471,9556,9584,9616,9617,9629,9676,9677,9690,9696,9702,9739,9740,9741,9775,9778,9806,9808,10108,10937,11222,11346,11545,11713,11956,12718,12783,12812,17780,19860,21400,22938]]],["appoint",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8884]]],["appointed",[2,2,[[10,1,1,0,1,[[301,1,1,0,1]]],[16,1,1,1,2,[[427,1,1,1,2]]]],[9126,12739]]],["avouched",[1,1,[[4,1,1,0,1,[[178,1,1,0,1]]]],[5584]]],["bade",[6,6,[[0,1,1,0,1,[[42,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[5,1,1,2,3,[[197,1,1,2,3]]],[8,1,1,3,4,[[259,1,1,3,4]]],[9,1,1,4,5,[[267,1,1,4,5]]],[16,1,1,5,6,[[429,1,1,5,6]]]],[1307,4118,6116,7849,8040,12777]]],["bid",[3,3,[[5,1,1,0,1,[[192,1,1,0,1]]],[9,1,1,1,2,[[268,1,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]]],[5959,8075,9627]]],["bidden",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8437]]],["call",[2,2,[[22,2,2,0,2,[[683,1,1,0,1],[739,1,1,1,2]]]],[17759,18849]]],["called",[4,4,[[0,1,1,0,1,[[31,1,1,0,1]]],[22,2,2,1,3,[[682,1,1,1,2],[697,1,1,2,3]]],[23,1,1,3,4,[[751,1,1,3,4]]]],[956,17736,18022,19151]]],["certified",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12746]]],["challengeth",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2122]]],["charged",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12690]]],["command",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7611]]],["commanded",[23,23,[[12,3,3,0,3,[[358,2,2,0,2],[359,1,1,2,3]]],[13,10,10,3,13,[[380,1,1,3,4],[395,4,4,4,8],[397,2,2,8,10],[398,1,1,10,11],[399,1,1,11,12],[401,1,1,12,13]]],[15,3,3,13,16,[[425,3,3,13,16]]],[16,5,5,16,21,[[426,1,1,16,17],[429,1,1,17,18],[431,1,1,18,19],[434,2,2,19,21]]],[18,1,1,21,22,[[583,1,1,21,22]]],[26,1,1,22,23,[[851,1,1,22,23]]]],[10951,10961,10966,11479,11812,11815,11818,11821,11858,11865,11887,11924,11987,12680,12690,12693,12712,12775,12794,12848,12859,15685,21760]]],["commandeth",[3,3,[[17,2,2,0,2,[[444,1,1,0,1],[471,1,1,1,2]]],[18,1,1,2,3,[[584,1,1,2,3]]]],[13058,13746,15724]]],["commandment",[2,2,[[12,1,1,0,1,[[351,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]]],[10786,11685]]],["commune",[1,1,[[18,1,1,0,1,[[481,1,1,0,1]]]],[13969]]],["consider",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22180]]],["declared",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14535]]],["demanded",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1646]]],["desired",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12737]]],["desireth",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7734]]],["determined",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11212]]],["indeed",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7270]]],["intend",[2,2,[[5,1,1,0,1,[[208,1,1,0,1]]],[13,1,1,1,2,[[394,1,1,1,2]]]],[6459,11777]]],["intendest",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1568]]],["is",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8094]]],["name",[2,2,[[8,2,2,0,2,[[251,1,1,0,1],[263,1,1,1,2]]]],[7598,7950]]],["named",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22602]]],["of",[1,1,[[18,1,1,0,1,[[506,1,1,0,1]]]],[14317]]],["promised",[5,5,[[3,1,1,0,1,[[130,1,1,0,1]]],[11,1,1,1,2,[[320,1,1,1,2]]],[13,1,1,2,3,[[387,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[16,1,1,4,5,[[429,1,1,4,5]]]],[4148,9746,11631,12534,12769]]],["promisedst",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12526]]],["published",[1,1,[[31,1,1,0,1,[[891,1,1,0,1]]]],[22565]]],["purpose",[2,2,[[10,1,1,0,1,[[295,1,1,0,1]]],[13,1,1,1,2,[[394,1,1,1,2]]]],[8883,11774]]],["reported",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12719]]],["requirest",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7183]]],["said",[2771,2492,[[0,467,411,0,411,[[0,10,10,0,10],[1,2,2,10,12],[2,15,13,12,25],[3,8,7,25,32],[5,3,3,32,35],[6,1,1,35,36],[7,1,1,36,37],[8,5,5,37,42],[9,1,1,42,43],[10,3,3,43,46],[11,4,4,46,50],[12,2,2,50,52],[13,3,3,52,55],[14,8,7,55,62],[15,9,8,62,70],[16,6,6,70,76],[17,22,17,76,93],[18,13,11,93,104],[19,11,11,104,115],[20,12,11,115,126],[21,13,9,126,135],[23,32,28,135,163],[24,6,6,163,169],[25,13,10,169,179],[26,31,25,179,204],[27,4,4,204,208],[28,19,16,208,224],[29,22,20,224,244],[30,19,17,244,261],[31,12,9,261,270],[32,10,7,270,277],[33,4,4,277,281],[34,5,5,281,286],[36,17,16,286,302],[37,17,12,302,314],[38,2,2,314,316],[39,6,5,316,321],[40,8,8,321,329],[41,17,16,329,345],[42,14,13,345,358],[43,13,13,358,371],[44,6,5,371,376],[45,5,4,376,380],[46,14,13,380,393],[47,11,10,393,403],[48,2,2,403,405],[49,6,6,405,411]]],[1,188,179,411,590,[[50,4,4,411,415],[51,12,11,415,426],[52,13,11,426,437],[53,18,16,437,453],[54,8,8,453,461],[55,4,4,461,465],[56,2,2,465,467],[57,11,10,467,477],[58,6,6,477,483],[59,13,13,483,496],[60,3,3,496,499],[61,4,4,499,503],[62,2,2,503,505],[63,6,6,505,511],[64,2,2,511,513],[65,12,11,513,524],[66,8,7,524,531],[67,7,7,531,538],[68,7,7,538,545],[69,3,3,545,548],[72,1,1,548,549],[73,6,6,549,555],[79,1,1,555,556],[81,19,19,556,575],[82,10,9,575,584],[83,4,4,584,588],[84,2,2,588,590]]],[2,13,13,590,603,[[97,2,2,590,592],[98,3,3,592,595],[99,3,3,595,598],[105,1,1,598,599],[106,2,2,599,601],[109,1,1,601,602],[110,1,1,602,603]]],[3,115,112,603,715,[[119,1,1,603,604],[123,1,1,604,605],[125,2,2,605,607],[126,6,5,607,612],[127,9,8,612,620],[128,4,4,620,624],[129,4,4,624,628],[130,7,7,628,635],[131,1,1,635,636],[132,9,9,636,645],[133,1,1,645,646],[134,2,2,646,648],[136,4,4,648,652],[137,5,5,652,657],[138,19,18,657,675],[139,19,19,675,694],[140,7,7,694,701],[141,2,2,701,703],[142,1,1,703,704],[143,2,2,704,706],[147,3,3,706,709],[148,5,5,709,714],[152,1,1,714,715]]],[4,46,45,715,760,[[153,9,9,715,724],[154,2,2,724,726],[155,2,2,726,728],[156,1,1,728,729],[157,3,3,729,732],[161,3,3,732,735],[162,2,2,735,737],[169,1,1,737,738],[170,1,1,738,739],[181,1,1,739,740],[183,6,5,740,745],[184,3,3,745,748],[185,11,11,748,759],[186,1,1,759,760]]],[5,64,61,760,821,[[188,6,6,760,766],[189,4,4,766,770],[190,1,1,770,771],[191,6,5,771,776],[192,5,5,776,781],[193,6,6,781,787],[194,2,2,787,789],[195,8,7,789,796],[196,6,6,796,802],[197,1,1,802,803],[199,1,1,803,804],[200,1,1,804,805],[201,2,2,805,807],[203,1,1,807,808],[204,1,1,808,809],[208,4,4,809,813],[209,1,1,813,814],[210,8,7,814,821]]],[6,215,195,821,1016,[[211,7,7,821,828],[212,4,3,828,831],[213,5,4,831,835],[214,8,8,835,843],[215,1,1,843,844],[216,19,18,844,862],[217,9,9,862,871],[218,13,13,871,884],[219,18,17,884,901],[220,3,3,901,904],[221,13,13,904,917],[222,8,5,917,922],[223,15,13,922,935],[224,11,8,935,943],[225,12,10,943,953],[226,20,18,953,971],[227,7,5,971,976],[228,13,13,976,989],[229,13,13,989,1002],[230,9,7,1002,1009],[231,7,7,1009,1016]]],[7,45,40,1016,1056,[[232,7,7,1016,1023],[233,18,14,1023,1037],[234,10,9,1037,1046],[235,10,10,1046,1056]]],[8,316,272,1056,1328,[[236,9,9,1056,1065],[237,7,7,1065,1072],[238,9,8,1072,1080],[239,9,7,1080,1087],[240,3,3,1087,1090],[241,3,3,1090,1093],[242,3,3,1093,1096],[243,7,6,1096,1102],[244,16,14,1102,1116],[245,13,10,1116,1126],[246,9,8,1126,1134],[247,9,8,1134,1142],[248,6,5,1142,1147],[249,25,20,1147,1167],[250,18,16,1167,1183],[251,18,15,1183,1198],[252,19,17,1198,1215],[253,10,8,1215,1223],[254,6,4,1223,1227],[255,18,18,1227,1245],[256,10,8,1245,1253],[257,11,11,1253,1264],[258,11,10,1264,1274],[259,7,6,1274,1280],[260,10,10,1280,1290],[261,13,11,1290,1301],[262,4,3,1301,1304],[263,17,12,1304,1316],[264,7,5,1316,1321],[265,8,6,1321,1327],[266,1,1,1327,1328]]],[9,234,202,1328,1530,[[267,11,10,1328,1338],[268,11,8,1338,1346],[269,10,10,1346,1356],[270,2,2,1356,1358],[271,6,5,1358,1363],[272,3,3,1363,1366],[273,3,3,1366,1369],[275,12,9,1369,1378],[276,4,4,1378,1382],[277,8,8,1382,1390],[278,12,9,1390,1399],[279,17,15,1399,1414],[280,23,19,1414,1433],[281,15,14,1433,1447],[282,17,12,1447,1459],[283,10,9,1459,1468],[284,25,21,1468,1489],[285,14,13,1489,1502],[286,9,8,1502,1510],[287,5,4,1510,1514],[288,1,1,1514,1515],[289,3,3,1515,1518],[290,13,12,1518,1530]]],[10,199,171,1530,1701,[[291,18,17,1530,1547],[292,21,17,1547,1564],[293,12,10,1564,1574],[295,1,1,1574,1575],[298,5,5,1575,1580],[299,2,2,1580,1582],[300,1,1,1582,1583],[301,5,5,1583,1588],[302,5,5,1588,1593],[303,10,9,1593,1602],[304,3,3,1602,1605],[307,11,11,1605,1616],[308,24,20,1616,1636],[309,11,10,1636,1646],[310,30,24,1646,1670],[311,6,6,1670,1676],[312,34,25,1676,1701]]],[11,211,175,1701,1876,[[313,6,5,1701,1706],[314,22,16,1706,1722],[315,11,9,1722,1731],[316,33,25,1731,1756],[317,16,15,1756,1771],[318,21,20,1771,1791],[319,10,8,1791,1799],[320,8,7,1799,1806],[321,25,19,1806,1825],[322,14,14,1825,1839],[323,3,2,1839,1841],[324,2,2,1841,1843],[325,9,6,1843,1849],[329,1,1,1849,1850],[330,5,5,1850,1855],[331,4,4,1855,1859],[332,11,8,1859,1867],[333,2,2,1867,1869],[334,3,3,1869,1872],[335,4,3,1872,1875],[337,1,1,1875,1876]]],[12,43,43,1876,1919,[[347,1,1,1876,1877],[348,5,5,1877,1882],[349,1,1,1882,1883],[350,2,2,1883,1885],[351,3,3,1885,1888],[352,2,2,1888,1890],[353,1,1,1890,1891],[354,3,3,1891,1894],[356,4,4,1894,1898],[358,9,9,1898,1907],[359,3,3,1907,1910],[360,1,1,1910,1911],[364,1,1,1911,1912],[365,4,4,1912,1916],[366,3,3,1916,1919]]],[13,85,75,1919,1994,[[367,3,3,1919,1922],[368,1,1,1922,1923],[372,6,5,1923,1928],[373,1,1,1928,1929],[374,1,1,1929,1930],[375,1,1,1930,1931],[376,2,2,1931,1933],[378,2,2,1933,1935],[379,1,1,1935,1936],[380,2,2,1936,1938],[381,1,1,1938,1939],[382,1,1,1939,1940],[384,30,23,1940,1963],[385,2,2,1963,1965],[386,3,3,1965,1968],[388,1,1,1968,1969],[389,5,4,1969,1973],[390,4,4,1973,1977],[391,4,3,1977,1980],[392,2,2,1980,1982],[394,3,3,1982,1985],[395,3,3,1985,1988],[397,1,1,1988,1989],[399,2,2,1989,1991],[400,1,1,1991,1992],[401,2,2,1992,1994]]],[14,8,8,1994,2002,[[404,1,1,1994,1995],[406,2,2,1995,1997],[410,1,1,1997,1998],[411,1,1,1998,1999],[412,3,3,1999,2002]]],[15,40,39,2002,2041,[[413,2,2,2002,2004],[414,10,10,2004,2014],[416,8,8,2014,2022],[417,9,8,2022,2030],[418,2,2,2030,2032],[419,2,2,2032,2034],[420,2,2,2034,2036],[421,2,2,2036,2038],[425,3,3,2038,2041]]],[16,30,27,2041,2068,[[426,1,1,2041,2042],[427,1,1,2042,2043],[428,3,3,2043,2046],[430,6,6,2046,2052],[431,8,6,2052,2058],[432,7,6,2058,2064],[433,2,2,2064,2066],[434,2,2,2066,2068]]],[17,61,59,2068,2127,[[436,11,10,2068,2078],[437,7,6,2078,2084],[438,2,2,2084,2086],[439,1,1,2086,2087],[441,1,1,2087,2088],[443,1,1,2088,2089],[444,2,2,2089,2091],[446,2,2,2091,2093],[447,1,1,2093,2094],[450,1,1,2094,2095],[451,1,1,2095,2096],[453,1,1,2096,2097],[454,1,1,2097,2098],[455,1,1,2098,2099],[456,1,1,2099,2100],[457,2,2,2100,2102],[458,1,1,2102,2103],[460,1,1,2103,2104],[461,1,1,2104,2105],[462,1,1,2105,2106],[463,1,1,2106,2107],[464,2,2,2107,2109],[466,2,2,2109,2111],[467,3,3,2111,2114],[469,4,4,2114,2118],[470,1,1,2118,2119],[471,1,1,2119,2120],[473,2,2,2120,2122],[475,3,3,2122,2125],[477,2,2,2125,2127]]],[18,40,40,2127,2167,[[479,1,1,2127,2128],[487,3,3,2128,2131],[489,1,1,2131,2132],[491,1,1,2132,2133],[493,1,1,2133,2134],[504,1,1,2134,2135],[507,1,1,2135,2136],[508,2,2,2136,2138],[509,1,1,2138,2139],[512,1,1,2139,2140],[515,1,1,2140,2141],[516,1,1,2141,2142],[517,1,1,2142,2143],[518,1,1,2143,2144],[530,1,1,2144,2145],[532,1,1,2145,2146],[545,1,1,2146,2147],[551,1,1,2147,2148],[552,1,1,2148,2149],[554,1,1,2149,2150],[555,1,1,2150,2151],[559,1,1,2151,2152],[560,2,2,2152,2154],[564,1,1,2154,2155],[566,1,1,2155,2156],[571,1,1,2156,2157],[572,1,1,2157,2158],[579,1,1,2158,2159],[583,1,1,2159,2160],[593,1,1,2160,2161],[596,1,1,2161,2162],[599,1,1,2162,2163],[603,1,1,2163,2164],[614,1,1,2164,2165],[617,1,1,2165,2166],[619,1,1,2166,2167]]],[19,3,3,2167,2170,[[631,1,1,2167,2168],[634,1,1,2168,2169],[652,1,1,2169,2170]]],[20,8,8,2170,2178,[[660,3,3,2170,2173],[661,2,2,2173,2175],[665,1,1,2175,2176],[666,1,1,2176,2177],[667,1,1,2177,2178]]],[21,2,2,2178,2180,[[672,1,1,2178,2179],[677,1,1,2179,2180]]],[22,64,59,2180,2239,[[684,6,6,2180,2186],[685,3,3,2186,2189],[686,2,2,2189,2191],[692,1,1,2191,2192],[696,1,1,2192,2193],[698,1,1,2193,2194],[699,4,4,2194,2198],[700,1,1,2198,2199],[701,1,1,2199,2200],[702,1,1,2200,2201],[703,1,1,2201,2202],[706,2,2,2202,2204],[707,1,1,2204,2205],[708,1,1,2205,2206],[710,1,1,2206,2207],[714,6,6,2207,2213],[715,3,3,2213,2216],[716,6,6,2216,2222],[717,7,4,2222,2226],[718,2,1,2226,2227],[719,2,2,2227,2229],[723,1,1,2229,2230],[725,2,1,2230,2231],[727,4,4,2231,2235],[729,1,1,2235,2236],[741,1,1,2236,2237],[743,1,1,2237,2238],[744,1,1,2238,2239]]],[23,89,85,2239,2324,[[745,7,7,2239,2246],[746,2,2,2246,2248],[747,5,4,2248,2252],[748,3,3,2252,2255],[749,2,2,2255,2257],[750,3,3,2257,2260],[754,1,1,2260,2261],[755,3,3,2261,2264],[756,1,1,2264,2265],[757,1,1,2265,2266],[758,3,3,2266,2269],[759,2,2,2269,2271],[760,1,1,2271,2272],[761,1,1,2272,2273],[762,3,3,2273,2276],[763,1,1,2276,2277],[764,2,2,2277,2279],[765,1,1,2279,2280],[767,1,1,2280,2281],[768,2,1,2281,2282],[769,1,1,2282,2283],[770,1,1,2283,2284],[772,3,3,2284,2287],[773,1,1,2287,2288],[776,3,3,2288,2291],[779,4,4,2291,2295],[780,3,3,2295,2298],[781,5,3,2298,2301],[782,9,9,2301,2310],[784,3,3,2310,2313],[785,2,2,2313,2315],[786,4,4,2315,2319],[788,2,2,2319,2321],[790,1,1,2321,2322],[794,1,1,2322,2323],[795,1,1,2323,2324]]],[24,4,4,2324,2328,[[799,2,2,2324,2326],[800,2,2,2326,2328]]],[25,66,64,2328,2392,[[803,2,2,2328,2330],[804,6,6,2330,2336],[805,4,4,2336,2340],[809,8,8,2340,2348],[810,5,5,2348,2353],[811,1,1,2353,2354],[812,5,4,2354,2358],[813,1,1,2358,2359],[814,1,1,2359,2360],[817,2,1,2360,2361],[821,7,7,2361,2368],[824,2,2,2368,2370],[825,1,1,2370,2371],[827,1,1,2371,2372],[828,1,1,2372,2373],[829,1,1,2373,2374],[830,2,2,2374,2376],[837,2,2,2376,2378],[838,4,4,2378,2382],[842,1,1,2382,2383],[843,1,1,2383,2384],[844,2,2,2384,2386],[845,2,2,2386,2388],[847,2,2,2388,2390],[848,2,2,2390,2392]]],[26,20,19,2392,2411,[[850,3,3,2392,2395],[851,1,1,2395,2396],[857,5,5,2396,2401],[858,2,2,2401,2403],[859,6,5,2403,2408],[861,3,3,2408,2411]]],[27,11,10,2411,2421,[[862,6,5,2411,2416],[863,2,2,2416,2418],[864,2,2,2418,2420],[873,1,1,2420,2421]]],[28,1,1,2421,2422,[[877,1,1,2421,2422]]],[29,13,9,2422,2431,[[879,1,1,2422,2423],[885,8,6,2423,2429],[886,3,1,2429,2430],[887,1,1,2430,2431]]],[31,17,16,2431,2447,[[889,8,8,2431,2439],[890,2,2,2439,2441],[891,1,1,2441,2442],[892,6,5,2442,2447]]],[32,2,2,2447,2449,[[895,1,1,2447,2448],[899,1,1,2448,2449]]],[34,1,1,2449,2450,[[904,1,1,2449,2450]]],[35,3,3,2450,2453,[[907,1,1,2450,2451],[908,2,2,2451,2453]]],[36,4,3,2453,2456,[[910,4,3,2453,2456]]],[37,40,33,2456,2489,[[911,9,8,2456,2464],[912,3,2,2464,2466],[913,3,3,2466,2469],[914,9,6,2469,2475],[915,9,7,2475,2482],[916,3,3,2482,2485],[921,4,4,2485,2489]]],[38,3,3,2489,2492,[[925,1,1,2489,2490],[927,2,2,2490,2492]]]],[2,5,8,10,13,19,23,25,27,28,48,53,56,57,58,59,64,65,66,67,68,69,71,72,77,80,85,88,89,92,94,102,140,144,150,160,204,206,217,222,230,231,243,269,270,272,299,305,309,316,326,332,355,357,358,362,363,365,367,368,369,373,383,386,387,389,390,391,392,394,398,406,412,414,415,416,427,429,430,433,434,437,439,441,444,447,450,451,452,453,454,455,456,459,462,464,466,469,471,474,475,478,488,491,497,498,499,500,501,504,505,506,508,510,511,514,519,520,523,525,529,530,537,539,542,543,548,549,552,554,555,558,559,561,563,593,596,597,603,608,609,610,614,615,616,618,622,624,625,630,631,633,636,637,638,641,645,646,647,648,649,651,656,680,681,688,689,690,691,694,699,701,702,708,714,716,719,720,724,728,729,738,740,745,746,747,748,749,751,752,753,754,758,759,760,761,762,763,764,765,766,768,769,773,774,786,789,790,799,800,801,802,803,809,810,813,814,816,820,821,827,828,829,830,831,832,833,836,838,841,843,844,845,846,848,850,853,854,855,857,858,859,861,864,876,878,881,884,885,887,889,897,899,904,908,909,916,919,921,922,924,930,936,937,944,948,954,955,956,957,965,968,969,970,972,973,975,991,994,1010,1011,1012,1013,1021,1022,1028,1089,1091,1092,1093,1096,1097,1099,1100,1102,1104,1105,1109,1113,1115,1116,1118,1127,1130,1135,1136,1137,1140,1141,1142,1143,1144,1145,1148,1156,1157,1180,1181,1184,1188,1190,1210,1220,1233,1234,1236,1239,1249,1250,1253,1254,1256,1259,1261,1262,1264,1265,1266,1270,1273,1280,1283,1285,1288,1290,1292,1295,1296,1297,1298,1301,1306,1308,1310,1313,1317,1319,1321,1328,1331,1334,1339,1340,1341,1342,1344,1346,1349,1350,1351,1352,1361,1362,1375,1382,1386,1388,1389,1416,1417,1421,1423,1424,1428,1429,1435,1436,1438,1443,1445,1449,1450,1451,1453,1454,1455,1459,1460,1462,1466,1469,1470,1472,1474,1502,1512,1517,1521,1524,1525,1530,1541,1548,1550,1551,1560,1561,1562,1563,1564,1567,1568,1572,1573,1574,1576,1582,1583,1584,1585,1586,1590,1591,1592,1593,1594,1596,1602,1603,1604,1605,1607,1608,1611,1612,1614,1615,1619,1620,1622,1626,1627,1628,1634,1635,1636,1637,1649,1651,1653,1654,1656,1657,1681,1685,1686,1699,1718,1719,1720,1726,1729,1730,1735,1736,1738,1739,1743,1750,1755,1764,1769,1771,1778,1780,1784,1785,1786,1787,1789,1793,1798,1801,1802,1805,1806,1807,1810,1815,1837,1847,1849,1859,1870,1884,1894,1900,1902,1904,1914,1915,1929,1946,1950,1951,1953,1955,1962,1966,1970,1972,1975,1979,1980,1985,1986,1988,1992,1993,1997,1999,2002,2005,2009,2013,2014,2016,2023,2034,2035,2036,2041,2047,2049,2050,2070,2071,2073,2157,2178,2180,2184,2185,2189,2191,2416,2439,2440,2442,2443,2446,2447,2449,2455,2456,2459,2460,2461,2462,2464,2465,2467,2468,2469,2471,2478,2485,2487,2488,2490,2491,2492,2493,2494,2497,2505,2506,2523,2532,2561,2922,2948,2955,2959,2960,2980,2981,2983,3203,3247,3249,3342,3346,3732,3861,3972,3973,4017,4018,4019,4023,4024,4028,4035,4040,4045,4047,4051,4052,4053,4061,4065,4070,4073,4092,4102,4105,4106,4110,4112,4119,4121,4128,4139,4149,4188,4197,4202,4206,4209,4210,4216,4222,4228,4240,4254,4258,4281,4321,4329,4330,4331,4342,4347,4348,4354,4374,4379,4383,4384,4385,4387,4388,4389,4391,4393,4395,4403,4404,4405,4407,4409,4410,4412,4413,4417,4419,4420,4421,4423,4427,4428,4429,4431,4432,4433,4434,4435,4439,4441,4442,4443,4445,4446,4449,4456,4458,4461,4466,4467,4469,4475,4476,4554,4566,4572,4679,4685,4713,4723,4724,4734,4738,4747,4881,4906,4912,4914,4917,4919,4921,4931,4933,4934,4947,4969,4977,5001,5014,5054,5077,5081,5169,5182,5183,5187,5197,5380,5401,5681,5730,5735,5742,5744,5751,5778,5784,5804,5812,5817,5818,5819,5822,5823,5828,5830,5832,5833,5834,5843,5873,5878,5885,5886,5890,5893,5898,5900,5902,5903,5915,5936,5943,5947,5948,5949,5951,5955,5956,5965,5971,5979,5983,5986,5995,5996,6001,6003,6020,6043,6044,6045,6046,6056,6058,6061,6072,6076,6082,6086,6088,6089,6113,6155,6193,6218,6220,6291,6296,6428,6452,6454,6457,6462,6478,6492,6495,6497,6498,6500,6503,6511,6512,6516,6521,6523,6524,6533,6546,6548,6565,6587,6588,6592,6596,6605,6607,6608,6613,6617,6618,6619,6621,6646,6662,6664,6666,6667,6668,6669,6670,6671,6672,6674,6676,6677,6679,6683,6684,6685,6690,6693,6696,6698,6699,6701,6703,6707,6708,6709,6711,6720,6721,6724,6725,6726,6734,6737,6738,6739,6740,6741,6742,6743,6757,6761,6762,6763,6764,6765,6766,6767,6768,6769,6782,6783,6790,6791,6792,6802,6808,6822,6826,6829,6831,6835,6836,6837,6838,6839,6844,6848,6859,6864,6865,6866,6867,6870,6871,6873,6874,6875,6887,6891,6892,6894,6895,6896,6897,6899,6900,6901,6902,6906,6907,6911,6912,6921,6922,6923,6924,6925,6927,6930,6931,6932,6935,6936,6939,6940,6941,6945,6947,6954,6955,6956,6958,6959,6960,6961,6962,6963,6964,6966,6969,6972,6973,6974,6975,6977,6979,6982,6983,6989,6990,6993,6995,6996,6997,6998,6999,7001,7002,7007,7011,7012,7016,7017,7018,7029,7030,7032,7033,7035,7036,7037,7041,7042,7044,7047,7052,7054,7057,7058,7072,7077,7082,7086,7093,7105,7107,7108,7110,7118,7119,7121,7135,7137,7138,7142,7143,7146,7147,7151,7153,7154,7155,7156,7157,7159,7160,7162,7163,7168,7169,7170,7171,7173,7177,7181,7182,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7198,7199,7201,7204,7220,7223,7226,7227,7229,7230,7234,7235,7238,7241,7255,7256,7260,7263,7267,7270,7281,7282,7284,7285,7287,7292,7293,7294,7300,7303,7304,7311,7313,7314,7319,7326,7327,7330,7334,7335,7351,7357,7358,7360,7374,7375,7376,7380,7388,7391,7394,7396,7397,7398,7399,7401,7402,7403,7409,7410,7412,7414,7415,7418,7419,7429,7430,7432,7433,7434,7436,7437,7442,7445,7446,7448,7450,7454,7455,7457,7458,7459,7461,7464,7465,7466,7470,7472,7479,7480,7494,7496,7497,7498,7504,7509,7514,7515,7516,7519,7520,7525,7526,7527,7536,7537,7541,7542,7544,7546,7548,7549,7550,7551,7553,7561,7566,7573,7574,7575,7576,7577,7578,7580,7582,7584,7586,7588,7590,7592,7593,7596,7597,7599,7600,7601,7602,7603,7604,7605,7606,7607,7610,7612,7613,7614,7626,7628,7635,7643,7646,7647,7650,7651,7652,7655,7657,7661,7662,7663,7673,7674,7676,7683,7684,7687,7693,7694,7697,7699,7701,7710,7720,7723,7728,7731,7732,7733,7734,7735,7739,7740,7741,7742,7748,7757,7759,7760,7762,7766,7767,7770,7772,7773,7774,7776,7777,7780,7781,7783,7786,7790,7792,7794,7796,7799,7800,7801,7803,7804,7805,7809,7812,7813,7814,7817,7819,7820,7821,7822,7827,7831,7843,7845,7848,7849,7855,7856,7866,7871,7874,7880,7882,7885,7893,7896,7900,7902,7911,7913,7914,7915,7919,7920,7922,7923,7926,7927,7930,7931,7935,7940,7943,7944,7949,7950,7951,7953,7955,7956,7957,7958,7963,7965,7970,7971,7973,7975,7976,7985,7991,7993,7998,8000,8001,8013,8025,8026,8027,8028,8030,8031,8035,8036,8037,8038,8050,8054,8063,8069,8070,8071,8075,8076,8088,8089,8094,8097,8102,8105,8109,8112,8114,8119,8128,8129,8134,8140,8151,8152,8155,8166,8177,8178,8182,8183,8198,8228,8229,8230,8231,8233,8234,8235,8236,8238,8242,8243,8245,8251,8262,8264,8267,8269,8270,8271,8282,8284,8287,8291,8293,8299,8304,8305,8307,8308,8313,8321,8322,8323,8326,8327,8328,8332,8333,8334,8337,8341,8342,8343,8349,8352,8358,8360,8361,8363,8364,8365,8366,8367,8368,8369,8371,8373,8374,8375,8377,8378,8380,8386,8387,8391,8392,8393,8396,8398,8403,8404,8408,8410,8411,8414,8416,8420,8422,8428,8429,8430,8433,8435,8436,8437,8442,8443,8444,8446,8447,8450,8454,8456,8457,8463,8464,8469,8470,8478,8480,8482,8488,8489,8490,8492,8496,8497,8498,8499,8500,8501,8503,8504,8505,8506,8507,8508,8509,8510,8511,8516,8530,8532,8533,8534,8536,8537,8540,8541,8544,8545,8552,8554,8555,8558,8560,8563,8565,8571,8574,8575,8582,8583,8584,8586,8604,8656,8668,8670,8694,8695,8702,8705,8706,8708,8709,8710,8713,8714,8715,8716,8719,8733,8734,8741,8745,8746,8748,8749,8750,8753,8756,8758,8759,8760,8765,8769,8770,8774,8783,8784,8785,8786,8787,8788,8790,8791,8792,8796,8800,8801,8806,8808,8812,8814,8821,8822,8827,8833,8838,8839,8840,8841,8842,8843,8885,8997,9000,9003,9008,9014,9054,9064,9085,9110,9119,9129,9130,9139,9156,9157,9160,9177,9179,9186,9190,9192,9197,9198,9199,9200,9202,9210,9220,9223,9224,9318,9327,9328,9329,9330,9335,9336,9337,9338,9340,9341,9346,9348,9350,9351,9356,9358,9362,9363,9365,9366,9368,9371,9374,9375,9377,9380,9381,9382,9384,9385,9391,9392,9394,9396,9397,9398,9400,9401,9402,9407,9410,9412,9413,9415,9416,9417,9418,9419,9420,9422,9426,9430,9431,9436,9439,9440,9441,9442,9443,9444,9445,9447,9448,9450,9454,9455,9457,9458,9466,9471,9483,9484,9485,9486,9487,9488,9489,9491,9494,9495,9496,9497,9498,9499,9500,9501,9502,9504,9505,9506,9508,9510,9512,9514,9529,9535,9538,9539,9541,9544,9553,9554,9555,9556,9557,9560,9561,9565,9566,9567,9568,9569,9570,9571,9572,9574,9583,9584,9586,9587,9588,9589,9590,9592,9599,9605,9606,9609,9610,9612,9615,9616,9617,9618,9619,9622,9625,9626,9627,9628,9630,9631,9632,9633,9639,9641,9643,9644,9645,9646,9650,9652,9654,9658,9660,9662,9663,9664,9666,9667,9668,9669,9670,9672,9673,9675,9677,9679,9680,9681,9685,9686,9687,9689,9691,9692,9693,9694,9695,9701,9702,9703,9705,9706,9707,9708,9709,9710,9713,9716,9719,9720,9726,9732,9735,9736,9737,9739,9740,9741,9757,9761,9762,9767,9768,9771,9773,9774,9775,9777,9778,9779,9781,9783,9787,9788,9789,9790,9792,9797,9801,9802,9806,9807,9808,9809,9811,9813,9815,9816,9817,9818,9823,9841,9844,9854,9857,9885,9886,9887,9888,9889,9890,9995,10043,10046,10049,10050,10051,10064,10067,10076,10084,10099,10105,10106,10107,10112,10113,10114,10117,10123,10126,10153,10154,10160,10182,10183,10192,10246,10663,10675,10678,10679,10690,10692,10737,10762,10764,10784,10785,10788,10793,10803,10856,10864,10865,10879,10909,10910,10912,10919,10936,10942,10945,10947,10949,10951,10956,10957,10958,10965,10969,10971,11008,11132,11145,11146,11149,11163,11165,11174,11184,11201,11202,11205,11223,11283,11286,11290,11296,11302,11336,11357,11369,11400,11404,11442,11443,11457,11482,11486,11492,11516,11545,11546,11547,11548,11549,11550,11552,11555,11556,11557,11558,11559,11560,11561,11562,11563,11565,11566,11567,11569,11571,11573,11575,11578,11582,11593,11602,11607,11653,11659,11667,11669,11670,11682,11683,11697,11699,11713,11719,11720,11750,11755,11773,11777,11787,11796,11809,11822,11864,11912,11915,11948,11969,11989,12090,12112,12113,12229,12243,12254,12262,12264,12299,12301,12309,12310,12311,12312,12313,12314,12324,12325,12326,12327,12361,12362,12369,12370,12371,12373,12378,12381,12384,12385,12386,12389,12390,12391,12394,12395,12411,12412,12423,12485,12502,12503,12516,12529,12682,12688,12692,12715,12726,12750,12755,12758,12782,12784,12785,12786,12791,12793,12796,12797,12798,12799,12803,12806,12809,12810,12812,12813,12815,12816,12822,12824,12846,12847,12874,12876,12877,12878,12881,12883,12885,12886,12887,12890,12893,12894,12895,12897,12900,12901,12906,12907,12931,12979,13030,13052,13073,13109,13112,13129,13204,13239,13277,13298,13327,13356,13390,13406,13420,13462,13468,13482,13532,13533,13550,13612,13619,13634,13635,13638,13684,13688,13692,13714,13721,13737,13794,13804,13865,13867,13870,13923,13929,13952,14047,14052,14054,14070,14081,14094,14293,14325,14345,14353,14360,14431,14506,14513,14532,14546,14720,14738,14922,15056,15075,15103,15132,15239,15245,15253,15306,15328,15449,15464,15545,15674,15859,15955,16090,16117,16229,16269,16291,16494,16588,17120,17334,17335,17348,17376,17377,17452,17472,17491,17564,17635,17772,17774,17776,17777,17778,17780,17785,17794,17795,17808,17810,17941,18001,18032,18041,18044,18047,18051,18056,18089,18111,18127,18176,18179,18206,18233,18264,18334,18337,18340,18341,18342,18343,18355,18358,18376,18391,18393,18400,18401,18411,18412,18415,18416,18417,18420,18426,18457,18460,18580,18609,18639,18640,18642,18650,18696,18874,18898,18927,18952,18953,18955,18957,18958,18959,18960,18971,18973,19008,19009,19013,19021,19037,19038,19054,19062,19070,19095,19105,19106,19220,19231,19232,19235,19253,19272,19304,19306,19307,19316,19326,19350,19376,19394,19396,19402,19421,19425,19431,19443,19509,19527,19539,19588,19623,19624,19633,19650,19737,19739,19756,19828,19829,19834,19841,19857,19858,19861,19888,19891,19892,19899,19900,19907,19909,19910,19912,19914,19915,19919,19943,19955,19957,19963,19965,19977,19979,19980,19984,20030,20034,20061,20173,20273,20372,20408,20435,20440,20493,20495,20503,20505,20506,20512,20524,20526,20542,20543,20544,20545,20609,20610,20612,20613,20616,20617,20619,20621,20626,20627,20629,20630,20631,20635,20657,20660,20668,20670,20689,20720,20768,20902,20903,20908,20913,20916,20924,20944,21043,21050,21075,21102,21124,21159,21186,21192,21361,21379,21400,21401,21406,21408,21530,21565,21579,21590,21601,21604,21675,21679,21685,21687,21747,21748,21755,21761,21974,21975,21977,21978,21980,21992,22010,22026,22027,22031,22034,22035,22087,22089,22090,22096,22098,22100,22103,22104,22110,22117,22129,22131,22260,22343,22366,22466,22469,22472,22476,22478,22479,22483,22496,22537,22538,22539,22540,22541,22542,22543,22545,22550,22552,22562,22570,22572,22576,22577,22578,22609,22674,22750,22820,22827,22836,22867,22868,22869,22884,22887,22888,22889,22890,22892,22897,22899,22901,22903,22914,22916,22917,22924,22927,22933,22934,22935,22936,22938,22939,22941,22942,22944,22946,22947,22951,22952,22954,23037,23040,23041,23043,23102,23127,23134]]],["saidst",[19,19,[[0,6,6,0,6,[[11,1,1,0,1],[25,1,1,1,2],[31,2,2,2,4],[43,2,2,4,6]]],[6,1,1,6,7,[[219,1,1,6,7]]],[10,1,1,7,8,[[292,1,1,7,8]]],[17,2,2,8,10,[[470,2,2,8,10]]],[18,1,1,10,11,[[566,1,1,10,11]]],[22,2,2,11,13,[[725,1,1,11,12],[735,1,1,12,13]]],[23,3,3,13,16,[[746,2,2,13,15],[766,1,1,15,16]]],[24,1,1,16,17,[[799,1,1,16,17]]],[25,1,1,17,18,[[826,1,1,17,18]]],[27,1,1,18,19,[[874,1,1,18,19]]]],[317,701,937,940,1345,1347,6792,8812,13722,13723,15345,18606,18775,18985,18990,19475,20411,21086,22276]]],["saith",[580,567,[[0,3,3,0,3,[[31,1,1,0,1],[40,1,1,1,2],[44,1,1,2,3]]],[1,11,11,3,14,[[53,1,1,3,4],[54,2,2,4,6],[56,1,1,6,7],[57,2,2,7,9],[58,2,2,9,11],[59,1,1,11,12],[60,1,1,12,13],[81,1,1,13,14]]],[3,2,2,14,16,[[136,1,1,14,15],[138,1,1,15,16]]],[5,3,3,16,19,[[193,1,1,16,17],[208,1,1,17,18],[210,1,1,18,19]]],[6,2,2,19,21,[[216,1,1,19,20],[221,1,1,20,21]]],[8,5,5,21,26,[[237,1,1,21,22],[245,1,1,22,23],[250,1,1,23,24],[255,1,1,24,25],[259,1,1,25,26]]],[9,4,4,26,30,[[273,2,2,26,28],[278,2,2,28,30]]],[10,20,18,30,48,[[292,1,1,30,31],[293,2,1,31,32],[301,1,1,32,33],[302,1,1,33,34],[303,2,2,34,36],[304,1,1,36,37],[307,1,1,37,38],[310,6,6,38,44],[311,2,1,44,45],[312,3,3,45,48]]],[11,28,28,48,76,[[313,3,3,48,51],[314,1,1,51,52],[315,2,2,52,54],[316,1,1,54,55],[317,1,1,55,56],[319,1,1,56,57],[321,5,5,57,62],[330,3,3,62,65],[331,4,4,65,69],[332,3,3,69,72],[333,1,1,72,73],[334,3,3,73,76]]],[12,4,4,76,80,[[354,2,2,76,78],[358,2,2,78,80]]],[13,13,13,80,93,[[377,1,1,80,81],[378,1,1,81,82],[384,3,3,82,85],[386,1,1,85,86],[387,1,1,86,87],[390,1,1,87,88],[398,1,1,88,89],[400,3,3,89,92],[402,1,1,92,93]]],[14,1,1,93,94,[[403,1,1,93,94]]],[15,1,1,94,95,[[418,1,1,94,95]]],[17,6,5,95,100,[[463,2,1,95,96],[468,1,1,96,97],[470,1,1,97,98],[472,1,1,98,99],[474,1,1,99,100]]],[18,2,2,100,102,[[489,1,1,100,101],[527,1,1,101,102]]],[19,11,11,102,113,[[636,2,2,102,104],[647,1,1,104,105],[649,1,1,105,106],[650,1,1,106,107],[651,1,1,107,108],[653,2,2,108,110],[655,1,1,110,111],[657,2,2,111,113]]],[20,4,4,113,117,[[659,1,1,113,114],[665,1,1,114,115],[668,1,1,115,116],[670,1,1,116,117]]],[22,84,80,117,197,[[679,2,2,117,119],[681,1,1,119,120],[685,1,1,120,121],[688,3,3,121,124],[700,2,2,124,126],[706,1,1,126,127],[707,3,3,127,130],[708,2,2,130,132],[711,1,1,132,133],[714,3,3,133,136],[715,4,4,136,140],[716,2,2,140,142],[717,1,1,142,143],[718,2,2,143,145],[719,2,1,145,146],[720,2,2,146,148],[721,3,3,148,151],[722,8,8,151,159],[723,6,6,159,165],[726,2,2,165,167],[727,5,5,167,172],[728,1,1,172,173],[729,1,1,173,174],[730,3,3,174,177],[732,4,4,177,181],[734,2,2,181,183],[735,3,3,183,186],[737,2,1,186,187],[743,5,4,187,191],[744,7,6,191,197]]],[23,160,159,197,356,[[746,2,2,197,199],[748,1,1,199,200],[749,1,1,200,201],[750,5,5,201,206],[751,3,3,206,209],[752,2,2,209,211],[753,5,5,211,216],[754,2,2,216,218],[755,4,4,218,222],[756,1,1,222,223],[757,4,4,223,227],[758,2,2,227,229],[759,2,2,229,231],[760,3,3,231,234],[761,2,2,234,236],[762,2,2,236,238],[763,4,4,238,242],[764,1,1,242,243],[765,3,3,243,246],[766,7,7,246,253],[767,4,4,253,257],[768,2,2,257,259],[769,5,5,259,264],[770,3,3,264,267],[771,5,5,267,272],[772,4,4,272,276],[773,8,8,276,284],[774,4,4,284,288],[775,7,7,288,295],[776,6,6,295,301],[777,9,9,301,310],[778,5,4,310,314],[779,4,4,314,318],[780,2,2,318,320],[781,2,2,320,322],[782,3,3,322,325],[783,1,1,325,326],[786,3,3,326,329],[787,1,1,329,330],[788,6,6,330,336],[789,2,2,336,338],[790,2,2,338,340],[791,1,1,340,341],[792,2,2,341,343],[793,7,7,343,350],[794,2,2,350,352],[795,4,4,352,356]]],[24,2,2,356,358,[[799,2,2,356,358]]],[25,127,127,358,485,[[803,1,1,358,359],[804,2,2,359,361],[806,3,3,361,364],[807,2,2,364,366],[808,2,2,366,368],[812,4,4,368,372],[813,4,4,372,376],[814,5,5,376,381],[815,3,3,381,384],[816,1,1,384,385],[817,3,3,385,388],[818,4,4,388,392],[819,1,1,392,393],[821,6,6,393,399],[822,5,5,399,404],[823,3,3,404,407],[824,5,5,407,412],[825,4,4,412,416],[826,7,7,416,423],[827,4,4,423,427],[828,1,1,427,428],[829,5,5,428,433],[830,4,4,433,437],[831,5,5,437,442],[832,2,2,442,444],[833,2,2,444,446],[834,2,2,446,448],[835,5,5,448,453],[836,2,2,453,455],[837,10,10,455,465],[838,5,5,465,470],[839,4,4,470,474],[840,3,3,474,477],[844,1,1,477,478],[845,2,2,478,480],[846,2,2,480,482],[847,2,2,482,484],[848,1,1,484,485]]],[29,24,24,485,509,[[879,8,8,485,493],[880,4,4,493,497],[881,2,2,497,499],[883,5,5,499,504],[885,4,4,504,508],[887,1,1,508,509]]],[30,2,2,509,511,[[888,2,2,509,511]]],[32,3,3,511,514,[[894,1,1,511,512],[895,1,1,512,513],[898,1,1,513,514]]],[33,1,1,514,515,[[900,1,1,514,515]]],[34,1,1,515,516,[[904,1,1,515,516]]],[35,1,1,516,517,[[908,1,1,516,517]]],[36,7,7,517,524,[[909,3,3,517,520],[910,4,4,520,524]]],[37,22,20,524,544,[[911,6,5,524,529],[912,1,1,529,530],[913,1,1,530,531],[914,1,1,531,532],[917,1,1,532,533],[918,11,10,533,543],[921,1,1,543,544]]],[38,26,23,544,567,[[925,11,9,544,553],[926,5,4,553,557],[927,8,8,557,565],[928,2,2,565,567]]]],[932,1250,1367,1623,1633,1642,1702,1711,1730,1743,1755,1780,1810,2465,4325,4391,5989,6442,6478,6662,6844,7267,7436,7562,7733,7852,8185,8188,8293,8297,8800,8839,9139,9175,9186,9205,9225,9331,9410,9421,9422,9436,9440,9450,9470,9491,9494,9507,9537,9539,9549,9572,9592,9593,9646,9660,9708,9759,9762,9768,9774,9775,10043,10053,10055,10064,10067,10081,10093,10099,10103,10115,10131,10160,10161,10163,10867,10870,10944,10945,11418,11442,11552,11555,11568,11602,11636,11697,11885,11956,11957,11959,12016,12018,12407,13518,13674,13730,13775,13859,14071,14684,16642,16654,16968,17028,17051,17103,17154,17160,17220,17267,17271,17317,17456,17496,17531,17665,17672,17723,17789,17858,17863,17874,18066,18067,18180,18204,18205,18215,18229,18232,18289,18334,18344,18346,18355,18358,18373,18385,18391,18395,18418,18421,18445,18472,18485,18502,18506,18519,18521,18535,18539,18549,18550,18557,18559,18560,18561,18562,18571,18572,18574,18575,18579,18631,18636,18641,18643,18644,18658,18661,18663,18695,18699,18700,18703,18724,18729,18731,18733,18754,18757,18780,18784,18786,18821,18904,18905,18910,18922,18923,18931,18934,18942,18943,18945,18967,18970,19030,19072,19098,19104,19105,19110,19111,19122,19139,19140,19157,19165,19182,19188,19190,19192,19198,19203,19219,19229,19237,19247,19248,19263,19267,19275,19278,19279,19303,19308,19317,19334,19339,19341,19345,19362,19378,19395,19397,19408,19410,19418,19422,19426,19444,19448,19452,19455,19457,19460,19465,19468,19472,19484,19486,19499,19500,19522,19529,19532,19542,19549,19561,19562,19566,19574,19576,19590,19598,19600,19612,19615,19617,19629,19631,19632,19634,19639,19643,19645,19651,19652,19656,19666,19667,19670,19672,19679,19685,19693,19698,19706,19707,19714,19726,19728,19734,19745,19746,19759,19767,19773,19777,19779,19785,19786,19787,19788,19792,19795,19800,19803,19805,19814,19818,19836,19840,19841,19842,19871,19872,19881,19883,19897,19898,19912,19939,19984,19990,19993,20007,20012,20017,20021,20035,20036,20040,20042,20044,20053,20070,20075,20081,20120,20128,20129,20134,20139,20145,20155,20162,20184,20199,20213,20245,20248,20270,20378,20391,20496,20513,20529,20551,20553,20554,20566,20574,20579,20582,20660,20662,20671,20672,20690,20699,20703,20708,20711,20716,20721,20726,20728,20735,20737,20752,20760,20765,20798,20821,20828,20834,20844,20847,20878,20898,20900,20922,20925,20934,20942,20947,20953,20968,20970,20972,20979,20995,21004,21029,21035,21039,21042,21053,21059,21062,21065,21077,21086,21089,21091,21095,21096,21098,21099,21103,21107,21115,21119,21124,21159,21163,21169,21179,21182,21186,21191,21196,21202,21206,21210,21214,21217,21226,21240,21245,21251,21259,21305,21307,21315,21323,21324,21330,21333,21347,21358,21361,21362,21363,21364,21365,21366,21372,21381,21392,21396,21402,21406,21409,21416,21418,21428,21435,21439,21442,21449,21465,21473,21590,21605,21608,21639,21648,21656,21671,21692,22367,22369,22370,22372,22373,22375,22377,22379,22380,22382,22383,22385,22406,22407,22426,22427,22439,22440,22450,22467,22470,22475,22481,22510,22511,22513,22598,22613,22649,22696,22767,22840,22845,22847,22848,22861,22862,22864,22866,22881,22882,22892,22894,22895,22907,22919,22928,22975,22978,22979,22980,22982,22983,22985,22990,22995,22996,22999,23032,23091,23093,23095,23097,23098,23099,23100,23102,23103,23105,23107,23111,23119,23121,23125,23127,23130,23131,23132,23133,23137,23139,23141]]],["say",[523,503,[[0,22,22,0,22,[[11,1,1,0,1],[13,1,1,1,2],[19,1,1,2,3],[23,3,3,3,6],[25,1,1,6,7],[31,2,2,7,9],[33,2,2,9,11],[36,2,2,11,13],[40,1,1,13,14],[42,1,1,14,15],[43,2,2,15,17],[44,1,1,17,18],[45,3,3,18,21],[49,1,1,21,22]]],[1,25,23,22,45,[[52,7,5,22,27],[53,3,3,27,30],[54,2,2,30,32],[55,1,1,32,33],[56,2,2,33,35],[57,2,2,35,37],[58,1,1,37,38],[61,2,2,38,40],[62,1,1,40,41],[63,1,1,41,42],[68,1,1,42,43],[69,1,1,43,44],[81,1,1,44,45]]],[2,14,14,45,59,[[90,1,1,45,46],[104,1,1,46,47],[106,2,2,47,49],[107,1,1,49,50],[108,1,1,50,51],[109,1,1,51,52],[110,1,1,52,53],[111,1,1,53,54],[112,2,2,54,56],[114,2,2,56,58],[116,1,1,58,59]]],[3,19,19,59,78,[[121,4,4,59,63],[122,1,1,63,64],[124,1,1,64,65],[127,2,2,65,67],[131,2,2,67,69],[134,2,2,69,71],[137,1,1,71,72],[141,1,1,72,73],[144,2,2,73,75],[149,1,1,75,76],[150,1,1,76,77],[151,1,1,77,78]]],[4,48,47,78,125,[[156,1,1,78,79],[157,2,2,79,81],[158,1,1,81,82],[159,1,1,82,83],[160,1,1,83,84],[161,1,1,84,85],[164,1,1,85,86],[167,1,1,86,87],[169,1,1,87,88],[170,1,1,88,89],[172,2,2,89,91],[173,2,2,91,93],[174,2,2,93,95],[177,3,3,95,98],[178,3,3,98,101],[179,13,13,101,114],[180,2,1,114,115],[181,3,3,115,118],[182,2,2,118,120],[183,1,1,120,121],[184,3,3,121,124],[185,1,1,124,125]]],[5,8,7,125,132,[[193,2,2,125,127],[194,1,1,127,128],[195,1,1,128,129],[208,4,3,129,132]]],[6,9,7,132,139,[[214,2,1,132,133],[217,3,2,133,135],[219,1,1,135,136],[226,1,1,136,137],[228,1,1,137,138],[231,1,1,138,139]]],[7,1,1,139,140,[[232,1,1,139,140]]],[8,17,17,140,157,[[237,1,1,140,141],[238,1,1,141,142],[243,1,1,142,143],[245,1,1,143,144],[246,1,1,144,145],[248,1,1,145,146],[249,3,3,146,149],[251,1,1,149,150],[253,2,2,150,152],[254,1,1,152,153],[255,3,3,153,156],[260,1,1,156,157]]],[9,18,18,157,175,[[273,1,1,157,158],[277,3,3,158,161],[279,2,2,161,163],[280,1,1,163,164],[281,3,3,164,167],[282,1,1,167,168],[283,1,1,168,169],[285,2,2,169,171],[286,1,1,171,172],[287,1,1,172,173],[290,2,2,173,175]]],[10,9,9,175,184,[[291,4,4,175,179],[299,1,1,179,180],[306,1,1,180,181],[308,1,1,181,182],[312,2,2,182,184]]],[11,12,12,184,196,[[314,1,1,184,185],[316,2,2,185,187],[319,1,1,187,188],[320,1,1,188,189],[321,3,3,189,192],[330,1,1,192,193],[331,2,2,193,195],[334,1,1,195,196]]],[12,4,4,196,200,[[353,2,2,196,198],[354,1,1,198,199],[358,1,1,199,200]]],[13,6,6,200,206,[[373,1,1,200,201],[376,1,1,201,202],[384,2,2,202,204],[386,1,1,204,205],[400,1,1,205,206]]],[14,1,1,206,207,[[411,1,1,206,207]]],[16,1,1,207,208,[[426,1,1,207,208]]],[17,19,19,208,227,[[441,1,1,208,209],[442,2,2,209,211],[444,2,2,211,213],[445,1,1,213,214],[454,1,1,214,215],[455,1,1,215,216],[456,2,2,216,218],[457,1,1,218,219],[458,1,1,219,220],[463,1,1,220,221],[467,1,1,221,222],[468,1,1,222,223],[469,1,1,223,224],[471,1,1,224,225],[472,1,1,225,226],[473,1,1,226,227]]],[18,33,32,227,259,[[480,1,1,227,228],[481,1,1,228,229],[488,1,1,229,230],[490,1,1,230,231],[512,5,4,231,235],[517,2,2,235,237],[519,3,3,237,240],[535,1,1,240,241],[541,1,1,241,242],[547,2,2,242,244],[550,2,2,244,246],[556,1,1,246,247],[568,1,1,247,248],[571,1,1,248,249],[583,1,1,249,250],[584,1,1,250,251],[592,1,1,251,252],[595,3,3,252,255],[601,1,1,255,256],[606,2,2,256,258],[616,1,1,258,259]]],[19,5,5,259,264,[[628,1,1,259,260],[632,1,1,260,261],[647,1,1,261,262],[657,2,2,262,264]]],[20,4,4,264,268,[[663,1,1,264,265],[664,1,1,265,266],[666,1,1,266,267],[670,1,1,267,268]]],[22,44,43,268,311,[[680,1,1,268,269],[683,1,1,269,270],[685,1,1,270,271],[686,2,2,271,273],[687,1,1,273,274],[690,2,2,274,276],[692,2,2,276,278],[697,1,1,278,279],[698,1,1,279,280],[707,3,2,280,282],[708,2,2,282,284],[711,1,1,284,285],[714,2,2,285,287],[715,2,2,287,289],[716,1,1,289,290],[718,1,1,290,291],[719,1,1,291,292],[720,1,1,292,293],[721,2,2,293,295],[722,3,3,295,298],[723,2,2,298,300],[726,3,3,300,303],[727,3,3,303,306],[729,1,1,306,307],[734,1,1,307,308],[735,1,1,308,309],[736,1,1,309,310],[743,1,1,310,311]]],[23,78,74,311,385,[[746,3,3,311,314],[747,3,3,314,317],[748,2,1,317,318],[749,3,3,318,321],[751,3,3,321,324],[752,2,2,324,326],[755,1,1,326,327],[757,4,4,327,331],[758,2,2,331,333],[759,1,1,333,334],[760,3,3,334,337],[761,2,2,337,339],[763,2,2,339,341],[765,3,3,341,344],[766,2,2,344,346],[767,8,7,346,353],[769,3,3,353,356],[770,1,1,356,357],[771,2,1,357,358],[775,3,3,358,361],[776,3,3,361,364],[777,2,2,364,366],[780,1,1,366,367],[781,1,1,367,368],[782,3,3,368,371],[786,2,2,371,373],[787,2,2,373,375],[789,2,2,375,377],[790,1,1,377,378],[792,3,3,378,381],[794,1,1,381,382],[795,4,3,382,385]]],[24,2,2,385,387,[[798,2,2,385,387]]],[25,76,75,387,462,[[803,1,1,387,388],[804,2,2,388,390],[807,2,2,390,392],[809,1,1,392,393],[810,1,1,393,394],[812,3,3,394,397],[813,3,3,397,400],[814,4,4,400,404],[815,3,3,404,407],[817,1,1,407,408],[818,1,1,408,409],[819,2,2,409,411],[820,1,1,411,412],[821,7,7,412,419],[822,5,4,419,423],[823,2,2,423,425],[825,1,1,425,426],[826,2,2,426,428],[827,1,1,428,429],[828,1,1,429,430],[829,3,3,430,433],[830,1,1,433,434],[831,1,1,434,435],[833,1,1,435,436],[834,8,8,436,444],[835,1,1,444,445],[836,1,1,445,446],[837,6,6,446,452],[838,4,4,452,456],[839,4,4,456,460],[840,1,1,460,461],[845,1,1,461,462]]],[27,8,7,462,469,[[863,3,2,462,464],[871,2,2,464,466],[874,1,1,466,467],[875,2,2,467,469]]],[28,4,3,469,472,[[877,3,2,469,471],[878,1,1,471,472]]],[29,9,7,472,479,[[881,1,1,472,473],[882,1,1,473,474],[883,1,1,474,475],[884,4,2,475,477],[886,1,1,477,478],[887,1,1,478,479]]],[32,4,4,479,483,[[894,1,1,479,480],[895,1,1,480,481],[896,2,2,481,483]]],[33,1,1,483,484,[[902,1,1,483,484]]],[34,1,1,484,485,[[904,1,1,484,485]]],[35,1,1,485,486,[[906,1,1,485,486]]],[36,1,1,486,487,[[909,1,1,486,487]]],[37,8,7,487,494,[[911,1,1,487,488],[921,1,1,488,489],[922,1,1,489,490],[923,5,4,490,494]]],[38,11,9,494,503,[[925,6,5,494,499],[926,3,2,499,501],[927,2,2,501,503]]]],[310,359,508,605,634,635,699,946,948,991,992,1100,1103,1210,1297,1328,1340,1367,1417,1419,1420,1523,1592,1593,1594,1595,1597,1602,1623,1624,1648,1649,1661,1694,1701,1711,1730,1755,1842,1843,1881,1892,2029,2073,2450,2747,3170,3237,3243,3253,3283,3320,3346,3387,3404,3412,3471,3489,3572,3804,3811,3813,3814,3825,3941,4036,4042,4155,4171,4283,4287,4367,4483,4579,4580,4811,4818,4855,5010,5080,5083,5107,5128,5154,5185,5260,5335,5378,5405,5430,5435,5454,5467,5484,5486,5554,5555,5556,5569,5571,5579,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5678,5701,5703,5704,5720,5721,5745,5785,5795,5798,5837,5984,5989,6008,6048,6437,6453,6454,6619,6698,6712,6808,6964,7017,7124,7139,7276,7285,7376,7420,7454,7489,7517,7518,7542,7597,7698,7701,7730,7736,7737,7752,7867,8188,8279,8280,8284,8322,8345,8388,8399,8415,8423,8436,8458,8513,8524,8570,8584,8693,8704,8730,8742,8751,8753,9059,9299,9385,9488,9507,9569,9629,9631,9711,9737,9759,9773,9793,10046,10067,10070,10163,10851,10855,10870,10952,11345,11405,11549,11568,11608,11959,12247,12720,13000,13012,13021,13063,13078,13088,13325,13333,13369,13383,13418,13424,13526,13641,13677,13701,13759,13788,13828,13959,13971,14060,14078,14413,14420,14435,14437,14540,14541,14558,14564,14565,14790,14855,14974,14975,15031,15035,15195,15397,15438,15699,15701,15832,15871,15872,15873,16103,16133,16140,16250,16411,16529,16963,17260,17266,17403,17420,17462,17524,17688,17758,17786,17819,17826,17838,17901,17904,17932,17938,18015,18035,18208,18209,18227,18239,18303,18335,18337,18358,18361,18395,18429,18477,18497,18511,18514,18538,18552,18553,18570,18585,18619,18621,18634,18645,18656,18657,18689,18756,18779,18795,18902,18988,18992,18996,19003,19014,19018,19032,19060,19077,19082,19121,19129,19147,19157,19161,19229,19278,19279,19287,19288,19306,19308,19317,19346,19347,19355,19372,19377,19410,19418,19443,19448,19453,19456,19462,19491,19501,19517,19518,19519,19521,19522,19561,19562,19564,19576,19600,19698,19701,19720,19734,19767,19774,19785,19786,19871,19881,19917,19920,19921,19988,19995,19999,20007,20043,20044,20059,20094,20097,20099,20168,20247,20274,20276,20344,20348,20496,20520,20529,20566,20574,20616,20631,20658,20671,20672,20699,20707,20708,20710,20715,20723,20726,20735,20737,20748,20765,20828,20868,20874,20883,20898,20900,20922,20925,20927,20942,20944,20947,20951,20953,20972,20979,21000,21059,21086,21091,21117,21124,21159,21169,21179,21186,21206,21250,21282,21288,21292,21293,21294,21297,21300,21305,21315,21347,21360,21362,21365,21372,21381,21394,21401,21406,21408,21409,21428,21436,21438,21439,21449,21605,22112,22128,22228,22233,22268,22284,22285,22328,22330,22353,22404,22411,22439,22460,22463,22495,22505,22599,22619,22622,22631,22719,22754,22799,22842,22881,23033,23050,23062,23064,23065,23068,23091,23094,23095,23096,23101,23117,23120,23128,23133]]],["sayest",[18,17,[[1,1,1,0,1,[[82,1,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[10,2,2,3,5,[[308,2,2,3,5]]],[11,1,1,5,6,[[330,1,1,5,6]]],[13,1,1,6,7,[[391,1,1,6,7]]],[15,2,2,7,9,[[417,1,1,7,8],[418,1,1,8,9]]],[17,2,2,9,11,[[457,1,1,9,10],[470,1,1,10,11]]],[18,1,1,11,12,[[567,1,1,11,12]]],[19,1,1,12,13,[[651,1,1,12,13]]],[22,2,2,13,15,[[718,1,1,13,14],[725,1,1,14,15]]],[23,2,1,15,16,[[746,2,1,15,16]]],[29,1,1,16,17,[[885,1,1,16,17]]]],[2485,4392,7177,9352,9355,10044,11723,12394,12409,13402,13734,15381,17091,18447,18607,19000,22480]]],["saying",[907,874,[[0,77,70,0,70,[[0,1,1,0,1],[1,1,1,1,2],[2,1,1,2,3],[4,1,1,3,4],[7,1,1,4,5],[8,1,1,5,6],[14,3,3,6,9],[16,1,1,9,10],[17,3,3,10,13],[18,1,1,13,14],[20,1,1,14,15],[21,1,1,15,16],[22,6,6,16,22],[23,3,3,22,25],[25,2,2,25,27],[26,2,1,27,28],[27,2,2,28,30],[30,2,2,30,32],[31,5,4,32,36],[33,3,3,36,39],[36,1,1,39,40],[37,5,5,40,45],[38,4,4,45,49],[39,1,1,49,50],[40,2,2,50,52],[41,6,5,52,57],[42,3,2,57,59],[43,3,3,59,62],[44,2,2,62,64],[46,1,1,64,65],[47,2,1,65,66],[49,6,4,66,70]]],[1,47,46,70,116,[[50,1,1,70,71],[52,1,1,71,72],[54,5,5,72,77],[55,3,3,77,80],[56,3,3,80,83],[58,1,1,83,84],[60,1,1,84,85],[61,2,2,85,87],[62,4,4,87,91],[63,2,2,91,93],[64,2,2,93,95],[65,2,2,95,97],[66,2,2,97,99],[68,3,3,99,102],[69,1,1,102,103],[74,1,1,103,104],[79,4,4,104,108],[80,3,3,108,111],[82,1,1,111,112],[84,2,1,112,113],[85,2,2,113,115],[89,1,1,115,116]]],[2,51,51,116,167,[[90,1,1,116,117],[93,2,2,117,119],[94,1,1,119,120],[95,6,6,120,126],[96,4,4,126,130],[97,2,2,130,132],[98,1,1,132,133],[99,3,3,133,136],[100,2,2,136,138],[101,2,2,138,140],[102,1,1,140,141],[103,3,3,141,144],[104,1,1,144,145],[106,2,2,145,147],[107,1,1,147,148],[108,1,1,148,149],[109,1,1,149,150],[110,2,2,150,152],[111,3,3,152,155],[112,7,7,155,162],[113,3,3,162,165],[114,1,1,165,166],[116,1,1,166,167]]],[3,84,83,167,250,[[117,2,2,167,169],[118,1,1,169,170],[119,4,4,170,174],[120,3,3,174,177],[121,3,3,177,180],[122,4,3,180,183],[123,1,1,183,184],[124,3,3,184,187],[125,3,3,187,190],[126,1,1,190,191],[127,3,3,191,194],[128,1,1,194,195],[129,2,2,195,197],[130,5,5,197,202],[131,3,3,202,205],[132,8,8,205,213],[133,2,2,213,215],[134,1,1,215,216],[135,2,2,216,218],[136,3,3,218,221],[137,1,1,221,222],[138,1,1,222,223],[139,1,1,223,224],[140,1,1,224,225],[141,2,2,225,227],[142,3,3,227,230],[143,4,4,230,234],[144,1,1,234,235],[146,1,1,235,236],[147,3,3,236,239],[148,3,3,239,242],[149,1,1,242,243],[150,3,3,243,246],[151,2,2,246,248],[152,2,2,248,250]]],[4,38,38,250,288,[[153,7,7,250,257],[154,4,4,257,261],[155,3,3,261,264],[157,1,1,264,265],[158,1,1,265,266],[161,3,3,266,269],[164,1,1,269,270],[165,4,4,270,274],[167,2,2,274,276],[170,1,1,276,277],[171,1,1,277,278],[172,1,1,278,279],[174,1,1,279,280],[179,3,3,280,283],[181,1,1,283,284],[183,2,2,284,286],[184,1,1,286,287],[186,1,1,287,288]]],[5,42,39,288,327,[[187,6,6,288,294],[188,3,3,294,297],[189,3,3,297,300],[190,8,7,300,307],[192,2,2,307,309],[193,1,1,309,310],[194,1,1,310,311],[195,3,2,311,313],[196,3,3,313,316],[200,1,1,316,317],[203,3,3,317,320],[204,1,1,320,321],[206,2,2,321,323],[207,1,1,323,324],[208,4,3,324,327]]],[6,29,28,327,355,[[211,1,1,327,328],[215,1,1,328,329],[216,2,2,329,331],[217,3,3,331,334],[218,2,2,334,336],[219,2,2,336,338],[220,1,1,338,339],[221,2,2,339,341],[223,1,1,341,342],[225,1,1,342,343],[226,3,2,343,345],[229,1,1,345,346],[230,4,4,346,350],[231,5,5,350,355]]],[7,3,3,355,358,[[233,1,1,355,356],[235,2,2,356,358]]],[8,47,46,358,404,[[239,1,1,358,359],[240,1,1,359,360],[241,2,2,360,362],[242,2,2,362,364],[244,2,2,364,366],[245,1,1,366,367],[246,1,1,367,368],[248,1,1,368,369],[249,3,3,369,372],[250,2,2,372,374],[251,1,1,374,375],[252,2,2,375,377],[253,1,1,377,378],[254,4,4,378,382],[255,1,1,382,383],[256,1,1,383,384],[258,4,4,384,388],[259,3,3,388,391],[260,2,2,391,393],[261,4,4,393,397],[262,3,2,397,399],[263,2,2,399,401],[264,1,1,401,402],[265,2,2,402,404]]],[9,42,39,404,443,[[267,1,1,404,405],[268,2,2,405,407],[269,7,6,407,413],[270,1,1,413,414],[271,3,3,414,417],[272,1,1,417,418],[273,4,4,418,422],[277,3,3,422,425],[279,3,3,425,428],[280,1,1,428,429],[281,4,4,429,433],[283,2,2,433,435],[284,2,2,435,437],[285,4,3,437,440],[286,2,1,440,441],[287,1,1,441,442],[290,1,1,442,443]]],[10,69,65,443,508,[[291,9,8,443,451],[292,8,8,451,459],[295,3,3,459,462],[296,1,1,462,463],[298,4,4,463,467],[299,1,1,467,468],[302,10,9,468,477],[303,7,7,477,484],[305,1,1,484,485],[306,1,1,485,486],[307,2,2,486,488],[308,3,3,488,491],[309,1,1,491,492],[310,4,3,492,495],[311,10,9,495,504],[312,4,4,504,508]]],[11,59,57,508,565,[[315,1,1,508,509],[316,2,2,509,511],[317,5,5,511,516],[318,4,4,516,520],[319,4,4,520,524],[320,6,6,524,530],[321,5,5,530,535],[322,4,4,535,539],[323,1,1,539,540],[326,4,3,540,543],[327,1,1,543,544],[328,2,2,544,546],[329,4,4,546,550],[330,5,5,550,555],[331,4,3,555,558],[332,2,2,558,560],[333,1,1,560,561],[334,3,3,561,564],[335,1,1,564,565]]],[12,12,12,565,577,[[341,2,2,565,567],[348,1,1,567,568],[349,1,1,568,569],[350,1,1,569,570],[351,1,1,570,571],[354,3,3,571,574],[358,2,2,574,576],[359,1,1,576,577]]],[13,46,43,577,620,[[368,1,1,577,578],[372,3,3,578,581],[373,1,1,581,582],[376,9,8,582,590],[377,2,2,590,592],[378,1,1,592,593],[382,1,1,593,594],[384,5,4,594,598],[385,1,1,598,599],[386,3,3,599,602],[387,1,1,602,603],[391,5,4,603,607],[396,2,2,607,609],[398,6,6,609,615],[400,3,3,615,618],[401,1,1,618,619],[402,1,1,619,620]]],[14,4,4,620,624,[[403,1,1,620,621],[410,1,1,621,622],[411,2,2,622,624]]],[15,8,8,624,632,[[413,1,1,624,625],[418,5,5,625,630],[420,2,2,630,632]]],[17,1,1,632,633,[[459,1,1,632,633]]],[18,1,1,633,634,[[596,1,1,633,634]]],[20,1,1,634,635,[[659,1,1,634,635]]],[22,29,28,635,663,[[681,1,1,635,636],[682,1,1,636,637],[685,3,3,637,640],[686,2,2,640,642],[692,1,1,642,643],[694,1,1,643,644],[697,1,1,644,645],[698,1,1,645,646],[701,1,1,646,647],[707,2,2,647,649],[708,1,1,649,650],[714,3,3,650,653],[715,5,4,653,657],[716,1,1,657,658],[719,2,2,658,660],[722,1,1,660,661],[724,1,1,661,662],[734,1,1,662,663]]],[23,110,106,663,769,[[745,3,3,663,666],[746,2,2,666,668],[748,1,1,668,669],[749,1,1,669,670],[750,1,1,670,671],[751,3,3,671,674],[752,2,2,674,676],[755,5,5,676,681],[757,2,2,681,683],[760,1,1,683,684],[762,3,3,684,687],[764,1,1,687,688],[765,1,1,688,689],[767,3,3,689,692],[768,1,1,692,693],[769,1,1,693,694],[770,7,7,694,701],[771,6,5,701,706],[772,5,5,706,711],[773,8,7,711,718],[774,2,2,718,720],[775,1,1,720,721],[776,6,6,721,727],[777,4,4,727,731],[778,3,3,731,734],[779,4,4,734,738],[780,7,6,738,744],[781,5,5,744,749],[782,4,4,749,753],[783,3,3,753,756],[784,2,2,756,758],[786,1,1,758,759],[787,2,2,759,761],[788,7,6,761,767],[789,1,1,767,768],[793,1,1,768,769]]],[25,65,65,769,834,[[804,1,1,769,770],[807,1,1,770,771],[808,1,1,771,772],[810,2,2,772,774],[811,1,1,774,775],[812,1,1,775,776],[813,6,6,776,782],[814,3,3,782,785],[815,2,2,785,787],[816,1,1,787,788],[817,2,2,788,790],[818,2,2,790,792],[819,2,2,792,794],[821,3,3,794,797],[822,3,3,797,800],[823,4,4,800,804],[824,1,1,804,805],[825,3,3,805,808],[826,1,1,808,809],[827,1,1,809,810],[828,1,1,810,811],[829,3,3,811,814],[830,2,2,814,816],[831,2,2,816,818],[832,1,1,818,819],[833,2,2,819,821],[834,6,6,821,827],[835,1,1,827,828],[836,2,2,828,830],[837,1,1,830,831],[838,2,2,831,833],[839,1,1,833,834]]],[29,3,3,834,837,[[880,1,1,834,835],[881,1,1,835,836],[885,1,1,836,837]]],[31,3,3,837,840,[[889,1,1,837,838],[891,2,2,838,840]]],[36,10,10,840,850,[[909,4,4,840,844],[910,6,6,844,850]]],[37,26,24,850,874,[[911,6,6,850,856],[912,1,1,856,857],[913,2,2,857,859],[914,4,3,859,862],[916,4,3,862,865],[917,5,5,865,870],[918,4,4,870,874]]]],[21,46,72,134,198,213,361,364,378,400,436,437,439,472,535,567,574,576,579,581,584,585,598,621,628,703,712,733,779,793,874,902,932,934,945,947,984,988,1000,1098,1132,1140,1143,1144,1147,1161,1163,1166,1168,1179,1204,1211,1266,1274,1280,1281,1289,1293,1297,1325,1343,1356,1374,1384,1425,1471,1510,1511,1522,1531,1554,1595,1638,1640,1642,1645,1647,1665,1667,1684,1693,1694,1701,1747,1814,1817,1819,1868,1875,1881,1886,1890,1901,1921,1944,1958,1959,1987,1990,2029,2038,2049,2052,2196,2393,2399,2404,2413,2421,2432,2433,2474,2535,2571,2572,2708,2746,2796,2797,2844,2850,2857,2858,2868,2873,2874,2901,2902,2907,2908,2918,2948,2956,2980,2985,2993,2998,2999,3045,3046,3053,3112,3144,3146,3169,3236,3237,3252,3282,3319,3361,3362,3370,3386,3395,3403,3411,3425,3426,3428,3435,3436,3447,3459,3461,3470,3571,3605,3652,3659,3697,3703,3706,3736,3744,3760,3764,3793,3797,3803,3824,3845,3846,3854,3940,3944,3962,3966,3974,3975,3989,4037,4042,4044,4072,4076,4107,4115,4123,4125,4134,4148,4154,4170,4190,4199,4214,4217,4218,4220,4230,4235,4238,4245,4256,4282,4290,4291,4314,4318,4334,4361,4380,4442,4458,4481,4487,4490,4492,4541,4556,4560,4562,4569,4578,4649,4665,4667,4689,4720,4728,4743,4810,4817,4829,4832,4846,4854,4884,4885,4897,4898,4901,4908,4920,4926,4929,4940,4942,4955,4964,4993,4996,4998,5058,5106,5161,5170,5180,5270,5274,5278,5284,5285,5328,5330,5400,5413,5432,5487,5586,5594,5596,5698,5738,5753,5806,5843,5852,5861,5862,5863,5864,5867,5870,5871,5872,5896,5899,5901,5911,5913,5916,5925,5927,5931,5932,5959,5975,5978,6006,6048,6059,6067,6070,6081,6196,6279,6289,6292,6301,6373,6374,6383,6434,6441,6450,6510,6624,6667,6686,6696,6697,6718,6728,6734,6755,6785,6821,6841,6846,6890,6942,6951,6967,7046,7062,7066,7077,7082,7103,7107,7112,7120,7122,7164,7194,7207,7318,7329,7333,7352,7355,7364,7406,7417,7420,7452,7488,7532,7536,7541,7570,7572,7617,7644,7645,7700,7708,7717,7721,7725,7772,7783,7811,7812,7829,7837,7840,7847,7848,7875,7901,7906,7911,7919,7924,7941,7942,7952,7954,7972,7986,8004,8038,8050,8053,8093,8095,8098,8099,8104,8116,8130,8133,8138,8151,8169,8184,8187,8206,8207,8269,8274,8278,8324,8345,8347,8388,8397,8399,8402,8420,8455,8465,8483,8490,8519,8520,8522,8572,8597,8703,8722,8723,8728,8730,8740,8747,8764,8768,8771,8774,8778,8793,8799,8800,8809,8812,8880,8883,8886,8907,9000,9010,9032,9040,9056,9154,9158,9160,9161,9163,9165,9167,9173,9174,9187,9188,9193,9202,9205,9211,9215,9267,9284,9319,9325,9342,9367,9372,9389,9413,9421,9425,9453,9460,9461,9464,9465,9468,9470,9474,9479,9492,9493,9511,9516,9583,9604,9634,9651,9653,9655,9657,9669,9682,9683,9687,9700,9717,9719,9721,9725,9728,9731,9733,9734,9735,9736,9768,9769,9774,9776,9792,9794,9798,9799,9801,9834,9902,9904,9905,9937,9970,9978,9996,10009,10010,10018,10038,10052,10054,10056,10060,10070,10071,10081,10100,10102,10129,10148,10155,10157,10186,10394,10395,10674,10739,10772,10784,10866,10869,10887,10943,10944,10972,11214,11286,11298,11319,11342,11398,11401,11402,11404,11405,11407,11409,11411,11416,11417,11444,11511,11553,11554,11561,11572,11585,11589,11595,11624,11636,11708,11711,11721,11722,11833,11845,11879,11881,11884,11886,11887,11892,11949,11951,11953,11987,12015,12017,12223,12238,12248,12304,12403,12404,12408,12409,12410,12504,12508,13451,15980,17331,17714,17734,17784,17787,17792,17812,17818,17952,17983,18029,18031,18081,18204,18205,18238,18345,18348,18351,18361,18362,18367,18373,18394,18458,18464,18561,18596,18756,18950,18957,18959,18966,18967,19037,19078,19103,19120,19123,19142,19159,19164,19227,19230,19232,19233,19247,19269,19274,19337,19385,19389,19395,19437,19441,19509,19517,19522,19528,19536,19573,19580,19581,19583,19584,19589,19590,19597,19605,19608,19610,19612,19619,19620,19629,19630,19631,19638,19657,19659,19660,19663,19665,19666,19668,19669,19725,19734,19737,19738,19744,19747,19757,19776,19794,19798,19799,19802,19813,19814,19824,19829,19835,19838,19843,19847,19856,19859,19869,19871,19877,19880,19883,19887,19893,19896,19903,19905,19911,19934,19938,19939,19950,19956,19995,19999,20005,20011,20014,20025,20030,20035,20036,20041,20161,20518,20564,20578,20623,20633,20639,20669,20681,20688,20697,20701,20702,20706,20709,20714,20718,20733,20743,20755,20763,20806,20826,20836,20850,20851,20897,20900,20940,20945,20952,20962,20977,20993,20999,21004,21008,21057,21071,21076,21084,21101,21122,21158,21168,21177,21184,21200,21205,21224,21231,21249,21265,21281,21290,21301,21303,21304,21310,21314,21345,21356,21375,21412,21415,21426,22391,22396,22474,22532,22559,22565,22841,22842,22843,22853,22856,22857,22865,22866,22875,22876,22879,22882,22885,22892,22895,22899,22903,22916,22918,22926,22928,22930,22955,22956,22959,22965,22966,22967,22970,22971,22977,22994,22997,22999]]],["spake",[109,109,[[0,14,14,0,14,[[8,1,1,0,1],[20,1,1,1,2],[21,1,1,2,3],[26,1,1,3,4],[30,2,2,4,6],[33,1,1,6,7],[38,1,1,7,8],[41,1,1,8,9],[42,3,3,9,12],[45,1,1,12,13],[46,1,1,13,14]]],[1,13,13,14,27,[[50,1,1,14,15],[54,1,1,15,16],[56,2,2,16,18],[57,2,2,18,20],[61,1,1,20,21],[64,1,1,21,22],[65,1,1,22,23],[68,1,1,23,24],[80,1,1,24,25],[84,1,1,25,26],[85,1,1,26,27]]],[3,15,15,27,42,[[123,1,1,27,28],[128,1,1,28,29],[130,1,1,29,30],[131,1,1,30,31],[133,1,1,31,32],[134,1,1,32,33],[136,3,3,33,36],[137,1,1,36,37],[142,1,1,37,38],[143,1,1,38,39],[147,1,1,39,40],[148,2,2,40,42]]],[4,4,4,42,46,[[153,1,1,42,43],[154,1,1,43,44],[161,1,1,44,45],[180,1,1,45,46]]],[5,10,10,46,56,[[187,2,2,46,48],[189,1,1,48,49],[190,3,3,49,52],[193,1,1,52,53],[195,1,1,53,54],[203,1,1,54,55],[208,1,1,55,56]]],[6,3,3,56,59,[[218,1,1,56,57],[225,1,1,57,58],[229,1,1,58,59]]],[8,8,8,59,67,[[242,1,1,59,60],[244,2,2,60,62],[245,1,1,62,63],[252,2,2,63,65],[263,1,1,65,66],[265,1,1,66,67]]],[9,6,6,67,73,[[271,2,2,67,69],[280,1,1,69,70],[283,1,1,70,71],[286,1,1,71,72],[290,1,1,72,73]]],[10,5,5,73,78,[[291,1,1,73,74],[293,1,1,74,75],[298,1,1,75,76],[303,1,1,76,77],[310,1,1,77,78]]],[11,2,2,78,80,[[321,1,1,78,79],[329,1,1,79,80]]],[12,1,1,80,81,[[352,1,1,80,81]]],[13,4,4,81,85,[[367,1,1,81,82],[384,1,1,82,83],[398,1,1,83,84],[401,1,1,84,85]]],[15,2,2,85,87,[[416,1,1,85,86],[420,1,1,86,87]]],[16,2,2,87,89,[[428,1,1,87,88],[429,1,1,88,89]]],[18,3,3,89,92,[[510,1,1,89,90],[582,2,2,90,92]]],[22,1,1,92,93,[[686,1,1,92,93]]],[23,8,8,93,101,[[770,4,4,93,97],[772,2,2,97,99],[784,1,1,99,100],[787,1,1,100,101]]],[25,1,1,101,102,[[811,1,1,101,102]]],[26,1,1,102,103,[[850,1,1,102,103]]],[31,1,1,103,104,[[890,1,1,103,104]]],[36,1,1,104,105,[[909,1,1,104,105]]],[37,4,4,105,109,[[911,1,1,105,106],[913,1,1,106,107],[914,2,2,107,109]]]],[213,535,554,733,884,902,984,1163,1289,1293,1317,1319,1388,1425,1547,1642,1693,1704,1711,1715,1817,1921,1956,2051,2432,2535,2571,3854,4063,4115,4190,4256,4277,4314,4323,4334,4356,4490,4560,4689,4720,4743,4901,4940,5170,5679,5852,5863,5899,5911,5925,5931,5978,6048,6292,6434,6728,6942,7046,7355,7400,7408,7434,7644,7648,7954,7984,8133,8138,8360,8455,8572,8709,8728,8842,8997,9215,9436,9768,10009,10807,11196,11561,11899,11991,12361,12494,12751,12772,14375,15637,15640,17818,19583,19584,19589,19590,19619,19629,19956,19999,20635,21740,22558,22853,22899,22916,22926,22928]]],["spakest",[1,1,[[6,1,1,0,1,[[227,1,1,0,1]]]],[6982]]],["speak",[33,32,[[0,1,1,0,1,[[31,1,1,0,1]]],[1,1,1,1,2,[[81,1,1,1,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[5,1,1,3,4,[[208,1,1,3,4]]],[10,1,1,4,5,[[302,1,1,4,5]]],[11,1,1,5,6,[[331,1,1,5,6]]],[13,1,1,6,7,[[398,1,1,6,7]]],[16,2,2,7,9,[[430,1,1,7,8],[431,1,1,8,9]]],[17,1,1,9,10,[[472,1,1,9,10]]],[18,6,6,10,16,[[518,1,1,10,11],[522,1,1,11,12],[548,1,1,12,13],[616,1,1,13,14],[622,2,2,14,16]]],[22,3,3,16,19,[[686,1,1,16,17],[715,1,1,17,18],[734,1,1,18,19]]],[23,7,7,19,26,[[757,1,1,19,20],[762,1,1,20,21],[771,2,2,21,23],[773,1,1,23,24],[778,1,1,24,25],[783,1,1,25,26]]],[25,5,4,26,30,[[832,1,1,26,27],[834,3,2,27,29],[838,1,1,29,30]]],[37,2,2,30,32,[[916,1,1,30,31],[917,1,1,31,32]]]],[932,2450,4123,6450,9161,10071,11892,12793,12797,13789,14547,14598,14986,16259,16326,16331,17827,18362,18756,19278,19395,19605,19610,19659,19803,19939,21232,21290,21304,21415,22959,22965]]],["speaketh",[7,7,[[10,1,1,0,1,[[310,1,1,0,1]]],[23,3,3,1,4,[[772,1,1,1,2],[773,1,1,2,3],[774,1,1,3,4]]],[36,1,1,4,5,[[909,1,1,4,5]]],[37,2,2,5,7,[[916,1,1,5,6],[917,1,1,6,7]]]],[9413,19620,19660,19669,22842,22959,22971]]],["spoken",[15,15,[[1,1,1,0,1,[[81,1,1,0,1]]],[5,1,1,1,2,[[192,1,1,1,2]]],[9,2,2,2,4,[[269,1,1,2,3],[272,1,1,3,4]]],[13,1,1,4,5,[[368,1,1,4,5]]],[14,1,1,5,6,[[410,1,1,5,6]]],[15,1,1,6,7,[[414,1,1,6,7]]],[17,1,1,7,8,[[468,1,1,7,8]]],[22,3,3,8,11,[[701,1,1,8,9],[709,1,1,9,10],[716,1,1,10,11]]],[23,1,1,11,12,[[792,1,1,11,12]]],[25,2,2,12,14,[[814,1,1,12,13],[836,1,1,13,14]]],[29,1,1,14,15,[[883,1,1,14,15]]]],[2451,5957,8099,8179,11226,12223,12325,13658,18081,18254,18405,20088,20715,21356,22437]]],["suppose",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8349]]],["talked",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[87]]],["tell",[15,15,[[0,2,2,0,2,[[21,1,1,0,1],[25,1,1,1,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[4,2,2,3,5,[[169,1,1,3,4],[184,1,1,4,5]]],[10,4,4,5,9,[[304,1,1,5,6],[308,3,3,6,9]]],[17,2,2,9,11,[[443,1,1,9,10],[469,1,1,10,11]]],[18,1,1,11,12,[[527,1,1,11,12]]],[22,1,1,12,13,[[684,1,1,12,13]]],[23,1,1,13,14,[[779,1,1,13,14]]],[25,1,1,14,15,[[818,1,1,14,15]]]],[549,694,4122,5375,5765,9225,9349,9352,9355,13039,13717,14680,17778,19836,20837]]],["termed",[2,1,[[22,2,1,0,1,[[740,2,1,0,1]]]],[18858]]],["themselves",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15435]]],["think",[3,3,[[9,1,1,0,1,[[279,1,1,0,1]]],[13,1,1,1,2,[[379,1,1,1,2]]],[20,1,1,2,3,[[666,1,1,2,3]]]],[8350,11461,17475]]],["thinking",[1,1,[[9,1,1,0,1,[[271,1,1,0,1]]]],[8138]]],["thought",[8,8,[[0,1,1,0,1,[[19,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[7,1,1,2,3,[[235,1,1,2,3]]],[8,1,1,3,4,[[255,1,1,3,4]]],[9,1,1,4,5,[[287,1,1,4,5]]],[11,1,1,5,6,[[317,1,1,5,6]]],[13,1,1,6,7,[[398,1,1,6,7]]],[16,1,1,7,8,[[431,1,1,7,8]]]],[506,4457,7194,7756,8596,9658,11876,12799]]],["told",[10,10,[[0,4,4,0,4,[[21,2,2,0,2],[40,1,1,2,3],[47,1,1,3,4]]],[5,1,1,4,5,[[188,1,1,4,5]]],[6,1,1,5,6,[[223,1,1,5,6]]],[8,1,1,6,7,[[243,1,1,6,7]]],[11,2,2,7,9,[[318,1,1,7,8],[320,1,1,8,9]]],[26,1,1,9,10,[[857,1,1,9,10]]]],[550,556,1219,1452,5871,6890,7379,9684,9741,21987]]],["uttereth",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16421]]]]},{"k":"H560","v":[["*",[71,65,[[14,5,5,0,5,[[407,5,5,0,5]]],[23,1,1,5,6,[[754,1,1,5,6]]],[26,65,59,6,65,[[851,18,16,6,22],[852,13,12,22,34],[853,12,11,34,45],[854,6,6,45,51],[855,11,9,51,60],[856,5,5,60,65]]]],[12137,12138,12143,12145,12149,19212,21762,21763,21765,21766,21767,21768,21770,21773,21778,21782,21783,21784,21785,21794,21804,21805,21811,21816,21820,21821,21823,21826,21827,21831,21832,21833,21835,21836,21844,21845,21846,21851,21855,21856,21860,21863,21867,21868,21872,21876,21881,21884,21887,21891,21903,21910,21911,21917,21918,21920,21921,21925,21928,21929,21934,21935,21938,21949,21956]]],["commanded",[12,12,[[26,12,12,0,12,[[851,2,2,0,2],[852,4,4,2,6],[853,1,1,6,7],[854,2,2,7,9],[855,3,3,9,12]]]],[21770,21804,21811,21820,21826,21827,21863,21876,21903,21921,21928,21929]]],["declare",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21855]]],["said",[41,39,[[14,4,4,0,4,[[407,4,4,0,4]]],[26,37,35,4,39,[[851,11,11,4,15],[852,8,7,15,22],[853,4,3,22,25],[854,4,4,25,29],[855,7,7,29,36],[856,3,3,36,39]]]],[12137,12138,12143,12149,21763,21765,21766,21768,21773,21778,21782,21783,21784,21785,21805,21816,21821,21823,21831,21832,21833,21835,21851,21856,21867,21881,21884,21887,21891,21910,21911,21917,21918,21920,21921,21925,21935,21938,21956]]],["say",[2,2,[[23,1,1,0,1,[[754,1,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[19212,21872]]],["saying",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[12145,21860]]],["spake",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21917]]],["speak",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21767,21836]]],["spoken",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21868]]],["tell",[5,5,[[26,5,5,0,5,[[851,4,4,0,4],[853,1,1,4,5]]]],[21762,21765,21767,21794,21846]]],["told",[4,4,[[26,4,4,0,4,[[853,2,2,0,2],[856,2,2,2,4]]]],[21844,21845,21934,21949]]]]},{"k":"H561","v":[["*",[49,47,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,2,2,1,3,[[140,2,2,1,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[5,1,1,4,5,[[210,1,1,4,5]]],[6,1,1,5,6,[[215,1,1,5,6]]],[17,11,11,6,17,[[441,3,3,6,9],[443,1,1,9,10],[455,1,1,10,11],[457,1,1,11,12],[458,1,1,12,13],[467,2,2,13,15],[468,1,1,15,16],[469,1,1,16,17]]],[18,7,7,17,24,[[482,1,1,17,18],[496,1,1,18,19],[531,1,1,19,20],[555,1,1,20,21],[584,1,1,21,22],[615,1,1,22,23],[618,1,1,23,24]]],[19,22,20,24,44,[[628,2,2,24,26],[629,2,2,26,28],[631,3,3,28,31],[632,1,1,31,32],[633,2,1,32,33],[634,3,3,33,36],[635,1,1,36,37],[642,1,1,37,38],[643,1,1,38,39],[644,1,1,39,40],[646,2,2,40,42],[649,2,1,42,43],[650,1,1,43,44]]],[22,2,2,44,46,[[710,1,1,44,45],[719,1,1,45,46]]],[27,1,1,46,47,[[867,1,1,46,47]]]],[1494,4450,4462,5759,6503,6652,12988,13003,13004,13031,13355,13411,13431,13640,13642,13653,13720,13974,14182,14727,15114,15710,16235,16282,16402,16421,16434,16449,16495,16500,16510,16524,16542,16576,16580,16599,16610,16833,16864,16900,16932,16952,17036,17056,18266,18477,22172]]],["+",[3,3,[[19,3,3,0,3,[[631,1,1,0,1],[632,1,1,1,2],[646,1,1,2,3]]]],[16495,16524,16952]]],["answer",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6652]]],["appointed",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13355]]],["sayings",[2,2,[[19,2,2,0,2,[[631,2,2,0,2]]]],[16500,16510]]],["speeches",[2,2,[[17,2,2,0,2,[[441,1,1,0,1],[467,1,1,1,2]]]],[13004,13642]]],["words",[40,38,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,2,2,1,3,[[140,2,2,1,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[5,1,1,4,5,[[210,1,1,4,5]]],[17,8,8,5,13,[[441,2,2,5,7],[443,1,1,7,8],[457,1,1,8,9],[458,1,1,9,10],[467,1,1,10,11],[468,1,1,11,12],[469,1,1,12,13]]],[18,7,7,13,20,[[482,1,1,13,14],[496,1,1,14,15],[531,1,1,15,16],[555,1,1,16,17],[584,1,1,17,18],[615,1,1,18,19],[618,1,1,19,20]]],[19,17,15,20,35,[[628,2,2,20,22],[629,2,2,22,24],[633,2,1,24,25],[634,3,3,25,28],[635,1,1,28,29],[642,1,1,29,30],[643,1,1,30,31],[644,1,1,31,32],[646,1,1,32,33],[649,2,1,33,34],[650,1,1,34,35]]],[22,2,2,35,37,[[710,1,1,35,36],[719,1,1,36,37]]],[27,1,1,37,38,[[867,1,1,37,38]]]],[1494,4450,4462,5759,6503,12988,13003,13031,13411,13431,13640,13653,13720,13974,14182,14727,15114,15710,16235,16282,16402,16421,16434,16449,16542,16576,16580,16599,16610,16833,16864,16900,16932,17036,17056,18266,18477,22172]]]]},{"k":"H562","v":[["*",[6,6,[[17,1,1,0,1,[[457,1,1,0,1]]],[18,4,4,1,5,[[496,2,2,1,3],[545,1,1,3,4],[554,1,1,4,5]]],[34,1,1,5,6,[[905,1,1,5,6]]]],[13417,14170,14171,14911,15101,22777]]],["promise",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15101]]],["speech",[2,2,[[18,2,2,0,2,[[496,2,2,0,2]]]],[14170,14171]]],["thing",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13417]]],["word",[2,2,[[18,1,1,0,1,[[545,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[14911,22777]]]]},{"k":"H563","v":[["lambs",[3,3,[[14,3,3,0,3,[[408,2,2,0,2],[409,1,1,2,3]]]],[12160,12168,12190]]]]},{"k":"H564","v":[["Immer",[10,10,[[12,2,2,0,2,[[346,1,1,0,1],[361,1,1,1,2]]],[14,3,3,2,5,[[404,2,2,2,4],[412,1,1,4,5]]],[15,4,4,5,9,[[415,1,1,5,6],[419,2,2,6,8],[423,1,1,8,9]]],[23,1,1,9,10,[[764,1,1,9,10]]]],[10627,11029,12064,12086,12272,12356,12460,12481,12601,19423]]]]},{"k":"H565","v":[["*",[37,35,[[0,1,1,0,1,[[3,1,1,0,1]]],[4,2,2,1,3,[[184,1,1,1,2],[185,1,1,2,3]]],[9,1,1,3,4,[[288,1,1,3,4]]],[18,26,25,4,29,[[489,2,1,4,5],[494,1,1,5,6],[495,1,1,6,7],[582,1,1,7,8],[596,19,19,8,27],[615,1,1,27,28],[624,1,1,28,29]]],[19,1,1,29,30,[[657,1,1,29,30]]],[22,5,4,30,34,[[683,1,1,30,31],[706,1,1,31,32],[707,2,1,32,33],[710,1,1,33,34]]],[24,1,1,34,35,[[798,1,1,34,35]]]],[102,5760,5819,8633,14072,14109,14148,15625,15909,15936,15939,15948,15956,15965,15974,15980,16001,16014,16021,16031,16038,16046,16052,16056,16060,16068,16070,16233,16366,17256,17763,18187,18197,18268,20349]]],["commandment",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16366]]],["speech",[7,6,[[0,1,1,0,1,[[3,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[18,1,1,2,3,[[494,1,1,2,3]]],[22,4,3,3,6,[[706,1,1,3,4],[707,2,1,4,5],[710,1,1,5,6]]]],[102,5760,14109,18187,18197,18268]]],["word",[26,26,[[4,1,1,0,1,[[185,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,21,21,2,23,[[495,1,1,2,3],[582,1,1,3,4],[596,18,18,4,22],[615,1,1,22,23]]],[19,1,1,23,24,[[657,1,1,23,24]]],[22,1,1,24,25,[[683,1,1,24,25]]],[24,1,1,25,26,[[798,1,1,25,26]]]],[5819,8633,14148,15625,15909,15936,15939,15948,15956,15965,15974,15980,16014,16021,16031,16038,16046,16052,16056,16060,16068,16070,16233,17256,17763,20349]]],["words",[3,2,[[18,3,2,0,2,[[489,2,1,0,1],[596,1,1,1,2]]]],[14072,16001]]]]},{"k":"H566","v":[["Imri",[2,2,[[12,1,1,0,1,[[346,1,1,0,1]]],[15,1,1,1,2,[[415,1,1,1,2]]]],[10619,12329]]]]},{"k":"H567","v":[["*",[87,86,[[0,6,6,0,6,[[9,1,1,0,1],[13,2,2,1,3],[14,2,2,3,5],[47,1,1,5,6]]],[1,6,6,6,12,[[52,2,2,6,8],[62,1,1,8,9],[72,1,1,9,10],[82,1,1,10,11],[83,1,1,11,12]]],[3,13,12,12,24,[[129,1,1,12,13],[137,9,8,13,21],[138,1,1,21,22],[148,2,2,22,24]]],[4,15,15,24,39,[[153,6,6,24,30],[154,1,1,30,31],[155,3,3,31,34],[156,2,2,34,36],[159,1,1,36,37],[172,1,1,37,38],[183,1,1,38,39]]],[5,20,20,39,59,[[188,1,1,39,40],[189,1,1,40,41],[191,1,1,41,42],[193,1,1,42,43],[195,2,2,43,45],[196,3,3,45,48],[197,1,1,48,49],[198,2,2,49,51],[199,3,3,51,54],[210,5,5,54,59]]],[6,11,11,59,70,[[211,3,3,59,62],[213,1,1,62,63],[216,1,1,63,64],[220,2,2,64,66],[221,4,4,66,70]]],[8,1,1,70,71,[[242,1,1,70,71]]],[9,1,1,71,72,[[287,1,1,71,72]]],[10,3,3,72,75,[[294,1,1,72,73],[299,1,1,73,74],[311,1,1,74,75]]],[11,1,1,75,76,[[333,1,1,75,76]]],[12,1,1,76,77,[[338,1,1,76,77]]],[13,1,1,77,78,[[374,1,1,77,78]]],[14,1,1,78,79,[[411,1,1,78,79]]],[15,1,1,79,80,[[421,1,1,79,80]]],[18,2,2,80,82,[[612,1,1,80,81],[613,1,1,81,82]]],[25,2,2,82,84,[[817,2,2,82,84]]],[29,2,2,84,86,[[880,2,2,84,86]]]],[250,343,349,376,381,1473,1587,1596,1872,2167,2475,2507,4104,4353,4361,4365,4366,4369,4371,4372,4374,4377,4751,4757,4896,4899,4911,4912,4919,4936,4962,4977,4983,4984,5050,5051,5112,5444,5732,5879,5903,5935,5983,6038,6047,6069,6070,6076,6110,6132,6138,6158,6164,6175,6484,6487,6488,6491,6494,6543,6544,6545,6573,6664,6819,6822,6848,6850,6851,6852,7366,8582,8863,9071,9477,10130,10266,11353,12238,12519,16186,16215,20765,20807,22388,22389]]],["+",[1,1,[[4,1,1,0,1,[[155,1,1,0,1]]]],[4983]]],["Amorite",[14,14,[[0,3,3,0,3,[[9,1,1,0,1],[13,1,1,1,2],[47,1,1,2,3]]],[1,2,2,3,5,[[82,1,1,3,4],[83,1,1,4,5]]],[3,1,1,5,6,[[148,1,1,5,6]]],[4,1,1,6,7,[[154,1,1,6,7]]],[5,2,2,7,9,[[195,1,1,7,8],[197,1,1,8,9]]],[12,1,1,9,10,[[338,1,1,9,10]]],[25,2,2,10,12,[[817,2,2,10,12]]],[29,2,2,12,14,[[880,2,2,12,14]]]],[250,349,1473,2475,2507,4757,4962,6038,6110,10266,20765,20807,22388,22389]]],["Amorites",[72,71,[[0,3,3,0,3,[[13,1,1,0,1],[14,2,2,1,3]]],[1,4,4,3,7,[[52,2,2,3,5],[62,1,1,5,6],[72,1,1,6,7]]],[3,12,11,7,18,[[129,1,1,7,8],[137,9,8,8,16],[138,1,1,16,17],[148,1,1,17,18]]],[4,13,13,18,31,[[153,6,6,18,24],[155,2,2,24,26],[156,2,2,26,28],[159,1,1,28,29],[172,1,1,29,30],[183,1,1,30,31]]],[5,18,18,31,49,[[188,1,1,31,32],[189,1,1,32,33],[191,1,1,33,34],[193,1,1,34,35],[195,1,1,35,36],[196,3,3,36,39],[198,2,2,39,41],[199,3,3,41,44],[210,5,5,44,49]]],[6,11,11,49,60,[[211,3,3,49,52],[213,1,1,52,53],[216,1,1,53,54],[220,2,2,54,56],[221,4,4,56,60]]],[8,1,1,60,61,[[242,1,1,60,61]]],[9,1,1,61,62,[[287,1,1,61,62]]],[10,3,3,62,65,[[294,1,1,62,63],[299,1,1,63,64],[311,1,1,64,65]]],[11,1,1,65,66,[[333,1,1,65,66]]],[13,1,1,66,67,[[374,1,1,66,67]]],[14,1,1,67,68,[[411,1,1,67,68]]],[15,1,1,68,69,[[421,1,1,68,69]]],[18,2,2,69,71,[[612,1,1,69,70],[613,1,1,70,71]]]],[343,376,381,1587,1596,1872,2167,4104,4353,4361,4365,4366,4369,4371,4372,4374,4377,4751,4896,4899,4911,4912,4919,4936,4977,4984,5050,5051,5112,5444,5732,5879,5903,5935,5983,6047,6069,6070,6076,6132,6138,6158,6164,6175,6484,6487,6488,6491,6494,6543,6544,6545,6573,6664,6819,6822,6848,6850,6851,6852,7366,8582,8863,9071,9477,10130,11353,12238,12519,16186,16215]]]]},{"k":"H568","v":[["Amariah",[16,14,[[12,7,5,0,5,[[343,5,3,0,3],[360,1,1,3,4],[361,1,1,4,5]]],[13,2,2,5,7,[[385,1,1,5,6],[397,1,1,6,7]]],[14,2,2,7,9,[[409,1,1,7,8],[412,1,1,8,9]]],[15,4,4,9,13,[[422,1,1,9,10],[423,1,1,10,11],[424,2,2,11,13]]],[35,1,1,13,14,[[906,1,1,13,14]]]],[10461,10465,10506,11002,11038,11587,11869,12176,12294,12552,12592,12626,12637,22788]]]]},{"k":"H569","v":[["Amraphel",[2,2,[[0,2,2,0,2,[[13,2,2,0,2]]]],[337,345]]]]},{"k":"H570","v":[["*",[5,5,[[0,3,3,0,3,[[18,1,1,0,1],[30,2,2,1,3]]],[11,1,1,3,4,[[321,1,1,3,4]]],[17,1,1,4,5,[[465,1,1,4,5]]]],[491,902,915,9782,13560]]],["+",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9782]]],["time",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13560]]],["yesternight",[3,3,[[0,3,3,0,3,[[18,1,1,0,1],[30,2,2,1,3]]]],[491,902,915]]]]},{"k":"H571","v":[["*",[127,125,[[0,6,6,0,6,[[23,3,3,0,3],[31,1,1,3,4],[41,1,1,4,5],[46,1,1,5,6]]],[1,2,2,6,8,[[67,1,1,6,7],[83,1,1,7,8]]],[4,3,3,8,11,[[165,1,1,8,9],[169,1,1,9,10],[174,1,1,10,11]]],[5,3,3,11,14,[[188,2,2,11,13],[210,1,1,13,14]]],[6,3,3,14,17,[[219,3,3,14,17]]],[8,1,1,17,18,[[247,1,1,17,18]]],[9,3,3,18,21,[[268,1,1,18,19],[273,1,1,19,20],[281,1,1,20,21]]],[10,5,5,21,26,[[292,1,1,21,22],[293,1,1,22,23],[300,1,1,23,24],[307,1,1,24,25],[312,1,1,25,26]]],[11,2,2,26,28,[[332,2,2,26,28]]],[13,5,5,28,33,[[375,1,1,28,29],[381,1,1,29,30],[384,1,1,30,31],[397,1,1,31,32],[398,1,1,32,33]]],[15,3,3,33,36,[[419,1,1,33,34],[421,2,2,34,36]]],[16,1,1,36,37,[[434,1,1,36,37]]],[18,37,37,37,74,[[492,1,1,37,38],[496,1,1,38,39],[502,2,2,39,41],[503,1,1,41,42],[507,1,1,42,43],[508,1,1,43,44],[517,2,2,44,46],[520,1,1,46,47],[522,1,1,47,48],[528,1,1,48,49],[531,1,1,49,50],[534,2,2,50,52],[538,1,1,52,53],[546,1,1,53,54],[548,1,1,54,55],[562,2,2,55,57],[563,2,2,57,59],[566,1,1,59,60],[568,1,1,60,61],[585,1,1,61,62],[588,2,2,62,64],[592,1,1,64,65],[594,1,1,65,66],[596,4,4,66,70],[609,1,1,70,71],[615,1,1,71,72],[622,1,1,72,73],[623,1,1,73,74]]],[19,12,11,74,85,[[630,1,1,74,75],[635,1,1,75,76],[638,1,1,76,77],[639,1,1,77,78],[641,2,2,78,80],[643,1,1,80,81],[647,1,1,81,82],[649,2,1,82,83],[650,1,1,83,84],[656,1,1,84,85]]],[20,1,1,85,86,[[670,1,1,85,86]]],[22,12,12,86,98,[[688,1,1,86,87],[694,1,1,87,88],[716,3,3,88,91],[717,1,1,91,92],[720,1,1,92,93],[721,1,1,93,94],[726,1,1,94,95],[737,2,2,95,97],[739,1,1,97,98]]],[23,11,11,98,109,[[746,1,1,98,99],[748,1,1,99,100],[753,1,1,100,101],[754,1,1,101,102],[758,1,1,102,103],[767,1,1,103,104],[770,1,1,104,105],[772,1,1,105,106],[776,1,1,106,107],[777,1,1,107,108],[786,1,1,108,109]]],[25,2,2,109,111,[[819,2,2,109,111]]],[26,6,6,111,117,[[857,2,2,111,113],[858,1,1,113,114],[859,2,2,114,116],[860,1,1,116,117]]],[27,1,1,117,118,[[865,1,1,117,118]]],[32,1,1,118,119,[[899,1,1,118,119]]],[37,6,5,119,124,[[917,1,1,119,120],[918,5,4,120,124]]],[38,1,1,124,125,[[926,1,1,124,125]]]],[618,639,640,938,1268,1449,2020,2502,5286,5368,5490,5881,5883,6490,6769,6770,6773,7484,8055,8208,8409,8774,8822,9085,9341,9496,10101,10117,11369,11493,11557,11874,11876,12422,12524,12544,12864,14089,14177,14256,14261,14276,14328,14336,14535,14536,14569,14601,14697,14730,14771,14778,14826,14948,14998,15281,15282,15295,15299,15340,15399,15746,15800,15801,15831,15869,15941,16040,16049,16058,16162,16233,16338,16347,16458,16609,16706,16738,16794,16797,16846,16982,17036,17067,17238,17533,17870,17974,18393,18408,18409,18420,18483,18514,18615,18814,18815,18851,18986,19029,19180,19211,19306,19512,19587,19627,19772,19781,19980,20857,20858,21973,21987,22001,22016,22036,22038,22134,22684,22971,22979,22984,22992,22995,23109]]],["Truth",[1,1,[[18,1,1,0,1,[[562,1,1,0,1]]]],[15282]]],["assured",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19306]]],["assuredly",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19772]]],["establishment",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11876]]],["faithful",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12422]]],["faithfully",[2,2,[[19,1,1,0,1,[[656,1,1,0,1]]],[23,1,1,1,2,[[767,1,1,1,2]]]],[17238,19512]]],["right",[3,3,[[0,1,1,0,1,[[23,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[23,1,1,2,3,[[746,1,1,2,3]]]],[639,12544,18986]]],["sure",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16706]]],["true",[18,18,[[4,2,2,0,2,[[169,1,1,0,1],[174,1,1,1,2]]],[5,1,1,2,3,[[188,1,1,2,3]]],[9,1,1,3,4,[[273,1,1,3,4]]],[10,2,2,4,6,[[300,1,1,4,5],[312,1,1,5,6]]],[13,2,2,6,8,[[375,1,1,6,7],[381,1,1,7,8]]],[15,1,1,8,9,[[421,1,1,8,9]]],[18,2,2,9,11,[[496,1,1,9,10],[596,1,1,10,11]]],[19,1,1,11,12,[[641,1,1,11,12]]],[23,2,2,12,14,[[754,1,1,12,13],[786,1,1,13,14]]],[25,1,1,14,15,[[819,1,1,14,15]]],[26,2,2,15,17,[[857,1,1,15,16],[859,1,1,16,17]]],[37,1,1,17,18,[[917,1,1,17,18]]]],[5368,5490,5881,8208,9085,9496,11369,11493,12524,14177,16058,16797,19211,19980,20857,21987,22016,22971]]],["truly",[7,7,[[0,2,2,0,2,[[23,1,1,0,1],[46,1,1,1,2]]],[5,1,1,2,3,[[188,1,1,2,3]]],[6,2,2,3,5,[[219,2,2,3,5]]],[23,1,1,5,6,[[772,1,1,5,6]]],[25,1,1,6,7,[[819,1,1,6,7]]]],[640,1449,5883,6770,6773,19627,20858]]],["truth",[89,87,[[0,3,3,0,3,[[23,1,1,0,1],[31,1,1,1,2],[41,1,1,2,3]]],[1,2,2,3,5,[[67,1,1,3,4],[83,1,1,4,5]]],[4,1,1,5,6,[[165,1,1,5,6]]],[5,1,1,6,7,[[210,1,1,6,7]]],[6,1,1,7,8,[[219,1,1,7,8]]],[8,1,1,8,9,[[247,1,1,8,9]]],[9,2,2,9,11,[[268,1,1,9,10],[281,1,1,10,11]]],[10,3,3,11,14,[[292,1,1,11,12],[293,1,1,12,13],[307,1,1,13,14]]],[11,2,2,14,16,[[332,2,2,14,16]]],[13,2,2,16,18,[[384,1,1,16,17],[397,1,1,17,18]]],[16,1,1,18,19,[[434,1,1,18,19]]],[18,32,32,19,51,[[492,1,1,19,20],[502,2,2,20,22],[503,1,1,22,23],[507,1,1,23,24],[508,1,1,24,25],[517,2,2,25,27],[520,1,1,27,28],[522,1,1,28,29],[528,1,1,29,30],[531,1,1,30,31],[534,2,2,31,33],[538,1,1,33,34],[546,1,1,34,35],[548,1,1,35,36],[562,1,1,36,37],[563,2,2,37,39],[566,1,1,39,40],[568,1,1,40,41],[585,1,1,41,42],[588,1,1,42,43],[594,1,1,43,44],[596,3,3,44,47],[609,1,1,47,48],[615,1,1,48,49],[622,1,1,49,50],[623,1,1,50,51]]],[19,9,8,51,59,[[630,1,1,51,52],[635,1,1,52,53],[639,1,1,53,54],[641,1,1,54,55],[643,1,1,55,56],[647,1,1,56,57],[649,2,1,57,58],[650,1,1,58,59]]],[20,1,1,59,60,[[670,1,1,59,60]]],[22,12,12,60,72,[[688,1,1,60,61],[694,1,1,61,62],[716,3,3,62,65],[717,1,1,65,66],[720,1,1,66,67],[721,1,1,67,68],[726,1,1,68,69],[737,2,2,69,71],[739,1,1,71,72]]],[23,4,4,72,76,[[748,1,1,72,73],[753,1,1,73,74],[770,1,1,74,75],[777,1,1,75,76]]],[26,4,4,76,80,[[857,1,1,76,77],[858,1,1,77,78],[859,1,1,78,79],[860,1,1,79,80]]],[27,1,1,80,81,[[865,1,1,80,81]]],[32,1,1,81,82,[[899,1,1,81,82]]],[37,5,4,82,86,[[918,5,4,82,86]]],[38,1,1,86,87,[[926,1,1,86,87]]]],[618,938,1268,2020,2502,5286,6490,6769,7484,8055,8409,8774,8822,9341,10101,10117,11557,11874,12864,14089,14256,14261,14276,14328,14336,14535,14536,14569,14601,14697,14730,14771,14778,14826,14948,14998,15281,15295,15299,15340,15399,15746,15801,15869,15941,16040,16049,16162,16233,16338,16347,16458,16609,16738,16794,16846,16982,17036,17067,17533,17870,17974,18393,18408,18409,18420,18483,18514,18615,18814,18815,18851,19029,19180,19587,19781,21973,22001,22036,22038,22134,22684,22979,22984,22992,22995,23109]]],["truth's",[1,1,[[18,1,1,0,1,[[592,1,1,0,1]]]],[15831]]],["verity",[1,1,[[18,1,1,0,1,[[588,1,1,0,1]]]],[15800]]]]},{"k":"H572","v":[["*",[15,12,[[0,15,12,0,12,[[41,2,2,0,2],[42,6,5,2,7],[43,7,5,7,12]]]],[1279,1280,1302,1308,1311,1312,1313,1325,1326,1332,1335,1336]]],["sack",[5,4,[[0,5,4,0,4,[[41,1,1,0,1],[42,1,1,1,2],[43,3,2,2,4]]]],[1280,1311,1335,1336]]],["sack's",[3,3,[[0,3,3,0,3,[[41,1,1,0,1],[43,2,2,1,3]]]],[1279,1325,1326]]],["sacks",[6,6,[[0,6,6,0,6,[[42,5,5,0,5],[43,1,1,5,6]]]],[1302,1308,1311,1312,1313,1325]]],["sacks'",[1,1,[[0,1,1,0,1,[[43,1,1,0,1]]]],[1332]]]]},{"k":"H573","v":[["Amittai",[2,2,[[11,1,1,0,1,[[326,1,1,0,1]]],[31,1,1,1,2,[[889,1,1,1,2]]]],[9921,22532]]]]},{"k":"H574","v":[["terrible",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21940]]]]},{"k":"H575","v":[["*",[40,32,[[0,3,3,0,3,[[15,1,1,0,1],[31,1,1,1,2],[36,1,1,2,3]]],[1,1,1,3,4,[[65,1,1,3,4]]],[3,2,1,4,5,[[130,2,1,4,5]]],[4,1,1,5,6,[[153,1,1,5,6]]],[5,2,2,6,8,[[188,1,1,6,7],[204,1,1,7,8]]],[6,1,1,8,9,[[229,1,1,8,9]]],[8,1,1,9,10,[[245,1,1,9,10]]],[9,2,2,10,12,[[268,1,1,10,11],[279,1,1,11,12]]],[10,4,2,12,14,[[292,4,2,12,14]]],[11,3,2,14,16,[[317,2,1,14,15],[318,1,1,15,16]]],[15,1,1,16,17,[[414,1,1,16,17]]],[17,3,3,17,20,[[443,1,1,17,18],[453,1,1,18,19],[454,1,1,19,20]]],[18,7,4,20,24,[[490,4,2,20,22],[539,1,1,22,23],[616,2,1,23,24]]],[21,2,1,24,25,[[676,2,1,24,25]]],[22,1,1,25,26,[[688,1,1,25,26]]],[23,2,2,26,28,[[759,1,1,26,27],[791,1,1,27,28]]],[25,1,1,28,29,[[822,1,1,28,29]]],[34,1,1,29,30,[[903,1,1,29,30]]],[37,2,2,30,32,[[912,1,1,30,31],[915,1,1,31,32]]]],[389,945,1113,1975,4119,4920,5874,6296,7041,7432,8050,8330,8806,8812,9672,9680,12323,13031,13278,13299,14075,14076,14830,16246,17615,17853,19317,20079,20960,22733,22901,22946]]],["+",[17,13,[[1,1,1,0,1,[[65,1,1,0,1]]],[3,2,1,1,2,[[130,2,1,1,2]]],[5,1,1,2,3,[[204,1,1,2,3]]],[6,1,1,3,4,[[229,1,1,3,4]]],[11,2,1,4,5,[[317,2,1,4,5]]],[17,3,3,5,8,[[443,1,1,5,6],[453,1,1,6,7],[454,1,1,7,8]]],[18,5,3,8,11,[[490,4,2,8,10],[539,1,1,10,11]]],[23,1,1,11,12,[[791,1,1,11,12]]],[34,1,1,12,13,[[903,1,1,12,13]]]],[1975,4119,6296,7041,9672,13031,13278,13299,14075,14076,14830,20079,22733]]],["Where",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9680]]],["Whither",[8,8,[[4,1,1,0,1,[[153,1,1,0,1]]],[8,1,1,1,2,[[245,1,1,1,2]]],[9,1,1,2,3,[[268,1,1,2,3]]],[18,1,1,3,4,[[616,1,1,3,4]]],[21,1,1,4,5,[[676,1,1,4,5]]],[23,1,1,5,6,[[759,1,1,5,6]]],[37,2,2,6,8,[[912,1,1,6,7],[915,1,1,7,8]]]],[4920,7432,8050,16246,17615,19317,22901,22946]]],["any",[2,2,[[10,2,2,0,2,[[292,2,2,0,2]]]],[8806,8812]]],["where",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17853]]],["whither",[10,10,[[0,3,3,0,3,[[15,1,1,0,1],[31,1,1,1,2],[36,1,1,2,3]]],[5,1,1,3,4,[[188,1,1,3,4]]],[9,1,1,4,5,[[279,1,1,4,5]]],[10,2,2,5,7,[[292,2,2,5,7]]],[15,1,1,7,8,[[414,1,1,7,8]]],[18,1,1,8,9,[[616,1,1,8,9]]],[21,1,1,9,10,[[676,1,1,9,10]]]],[389,945,1113,5874,8330,8806,8812,12323,16246,17615]]],["whithersoever",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20960]]]]},{"k":"H576","v":[["*",[16,16,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]],[26,14,14,2,16,[[851,3,3,2,5],[852,1,1,5,6],[853,7,7,6,13],[854,1,1,13,14],[856,2,2,14,16]]]],[12163,12194,21766,21781,21788,21832,21841,21844,21846,21855,21867,21871,21874,21890,21948,21961]]],["I",[14,14,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]],[26,12,12,2,14,[[851,2,2,2,4],[852,1,1,4,5],[853,7,7,5,12],[854,1,1,12,13],[856,1,1,13,14]]]],[12163,12194,21766,21781,21832,21841,21844,21846,21855,21867,21871,21874,21890,21948]]],["me",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[856,1,1,1,2]]]],[21788,21961]]]]},{"k":"H577","v":[["*",[13,12,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,1,1,1,2,[[81,1,1,1,2]]],[11,1,1,2,3,[[332,1,1,2,3]]],[15,2,2,3,5,[[413,2,2,3,5]]],[18,4,3,5,8,[[593,2,2,5,7],[595,2,1,7,8]]],[22,1,1,8,9,[[716,1,1,8,9]]],[26,1,1,9,10,[[858,1,1,9,10]]],[31,2,2,10,12,[[889,1,1,10,11],[892,1,1,11,12]]]],[1523,2469,10101,12301,12307,15852,15864,15894,18393,21992,22545,22570]]],["+",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18393]]],["O",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[21992]]],["Oh",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2469]]],["beseech",[5,4,[[15,2,2,0,2,[[413,2,2,0,2]]],[18,3,2,2,4,[[593,1,1,2,3],[595,2,1,3,4]]]],[12301,12307,15852,15894]]],["thee",[4,4,[[0,1,1,0,1,[[49,1,1,0,1]]],[11,1,1,1,2,[[332,1,1,1,2]]],[31,2,2,2,4,[[889,1,1,2,3],[892,1,1,3,4]]]],[1523,10101,22545,22570]]],["truly",[1,1,[[18,1,1,0,1,[[593,1,1,0,1]]]],[15864]]]]},{"k":"H578","v":[["*",[2,2,[[22,2,2,0,2,[[681,1,1,0,1],[697,1,1,1,2]]]],[17733,18012]]],["lament",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17733]]],["mourn",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18012]]]]},{"k":"H579","v":[["*",[4,4,[[1,1,1,0,1,[[70,1,1,0,1]]],[11,1,1,1,2,[[317,1,1,1,2]]],[18,1,1,2,3,[[568,1,1,2,3]]],[19,1,1,3,4,[[639,1,1,3,4]]]],[2090,9654,15405,16740]]],["+",[1,1,[[18,1,1,0,1,[[568,1,1,0,1]]]],[15405]]],["deliver",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2090]]],["happen",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16740]]],["quarrel",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9654]]]]},{"k":"H580","v":[["we",[1,1,[[23,1,1,0,1,[[786,1,1,0,1]]]],[19981]]]]},{"k":"H581","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[855,1,1,1,2]]]],[21802,21929]]],["them",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21929]]],["these",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21802]]]]},{"k":"H582","v":[["*",[45,43,[[0,2,1,0,1,[[18,2,1,0,1]]],[3,1,1,1,2,[[141,1,1,1,2]]],[13,1,1,2,3,[[380,1,1,2,3]]],[17,18,18,3,21,[[439,1,1,3,4],[440,1,1,4,5],[442,2,2,5,7],[444,1,1,7,8],[445,2,2,8,10],[448,1,1,10,11],[449,1,1,11,12],[450,1,1,12,13],[460,2,2,13,15],[463,2,2,15,17],[467,1,1,17,18],[468,2,2,18,20],[471,1,1,20,21]]],[18,13,12,21,33,[[485,1,1,21,22],[486,2,2,22,24],[487,1,1,24,25],[532,1,1,25,26],[533,1,1,26,27],[543,1,1,27,28],[550,1,1,28,29],[567,1,1,29,30],[580,1,1,30,31],[581,2,1,31,32],[621,1,1,32,33]]],[22,9,9,33,42,[[686,1,1,33,34],[691,2,2,34,36],[702,1,1,36,37],[711,1,1,37,38],[717,1,1,38,39],[729,2,2,39,41],[734,1,1,41,42]]],[23,1,1,42,43,[[764,1,1,42,43]]]],[461,4476,11486,12947,12968,13009,13025,13053,13090,13091,13162,13200,13217,13465,13467,13508,13517,13636,13662,13676,13761,14016,14040,14041,14059,14745,14756,14885,15025,15381,15564,15586,16308,17808,17913,17918,18101,18287,18415,18680,18685,18755,19432]]],["+",[4,4,[[17,2,2,0,2,[[463,1,1,0,1],[468,1,1,1,2]]],[22,1,1,2,3,[[729,1,1,2,3]]],[23,1,1,3,4,[[764,1,1,3,4]]]],[13508,13662,18685,19432]]],["Man",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13517]]],["man",[28,28,[[13,1,1,0,1,[[380,1,1,0,1]]],[17,15,15,1,16,[[439,1,1,1,2],[440,1,1,2,3],[442,2,2,3,5],[444,1,1,5,6],[445,2,2,6,8],[448,1,1,8,9],[449,1,1,9,10],[450,1,1,10,11],[460,2,2,11,13],[467,1,1,13,14],[468,1,1,14,15],[471,1,1,15,16]]],[18,9,9,16,25,[[485,1,1,16,17],[486,1,1,17,18],[487,1,1,18,19],[532,1,1,19,20],[533,1,1,20,21],[567,1,1,21,22],[580,1,1,22,23],[581,1,1,23,24],[621,1,1,24,25]]],[22,3,3,25,28,[[691,1,1,25,26],[711,1,1,26,27],[734,1,1,27,28]]]],[11486,12947,12968,13009,13025,13053,13090,13091,13162,13200,13217,13465,13467,13636,13676,13761,14016,14040,14059,14745,14756,15381,15564,15586,16308,17918,18287,18755]]],["man's",[3,3,[[18,1,1,0,1,[[581,1,1,0,1]]],[22,2,2,1,3,[[686,1,1,1,2],[691,1,1,2,3]]]],[15586,17808,17913]]],["men",[9,8,[[0,2,1,0,1,[[18,2,1,0,1]]],[3,1,1,1,2,[[141,1,1,1,2]]],[18,3,3,2,5,[[486,1,1,2,3],[543,1,1,3,4],[550,1,1,4,5]]],[22,3,3,5,8,[[702,1,1,5,6],[717,1,1,6,7],[729,1,1,7,8]]]],[461,4476,14041,14885,15025,18101,18415,18680]]]]},{"k":"H583","v":[["*",[7,7,[[0,6,6,0,6,[[3,1,1,0,1],[4,5,5,1,6]]],[12,1,1,6,7,[[338,1,1,6,7]]]],[105,111,112,114,115,116,10253]]],["Enos",[6,6,[[0,6,6,0,6,[[3,1,1,0,1],[4,5,5,1,6]]]],[105,111,112,114,115,116]]],["Enosh",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10253]]]]},{"k":"H584","v":[["*",[12,11,[[1,1,1,0,1,[[51,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]],[22,1,1,2,3,[[702,1,1,2,3]]],[24,4,4,3,7,[[797,4,4,3,7]]],[25,4,3,7,10,[[810,1,1,7,8],[822,3,2,8,10]]],[28,1,1,10,11,[[876,1,1,10,11]]]],[1577,17226,18102,20314,20318,20321,20331,20626,20950,20951,22309]]],["Sigh",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20950]]],["groan",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22309]]],["mourn",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17226]]],["sigh",[6,6,[[22,1,1,0,1,[[702,1,1,0,1]]],[24,3,3,1,4,[[797,3,3,1,4]]],[25,2,2,4,6,[[810,1,1,4,5],[822,1,1,5,6]]]],[18102,20314,20321,20331,20626,20950]]],["sighed",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1577]]],["sighest",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20951]]],["sigheth",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20318]]]]},{"k":"H585","v":[["*",[11,11,[[17,2,2,0,2,[[438,1,1,0,1],[458,1,1,1,2]]],[18,4,4,2,6,[[483,1,1,2,3],[508,1,1,3,4],[515,1,1,4,5],[579,1,1,5,6]]],[22,3,3,6,9,[[699,1,1,6,7],[713,1,1,7,8],[729,1,1,8,9]]],[23,1,1,9,10,[[789,1,1,9,10]]],[24,1,1,10,11,[[797,1,1,10,11]]]],[12928,13421,13991,14341,14499,15526,18037,18330,18684,20043,20332]]],["groaning",[4,4,[[17,1,1,0,1,[[458,1,1,0,1]]],[18,3,3,1,4,[[483,1,1,1,2],[515,1,1,2,3],[579,1,1,3,4]]]],[13421,13991,14499,15526]]],["mourning",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18684]]],["sighing",[5,5,[[17,1,1,0,1,[[438,1,1,0,1]]],[18,1,1,1,2,[[508,1,1,1,2]]],[22,2,2,2,4,[[699,1,1,2,3],[713,1,1,3,4]]],[23,1,1,4,5,[[789,1,1,4,5]]]],[12928,14341,18037,18330,20043]]],["sighs",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20332]]]]},{"k":"H586","v":[["*",[4,4,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,2,2,2,4,[[852,2,2,2,4]]]],[12126,12145,21823,21824]]],["We",[2,2,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]]],[12126,12145]]],["we",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21823,21824]]]]},{"k":"H587","v":[["*",[118,113,[[0,16,15,0,15,[[12,1,1,0,1],[18,1,1,1,2],[28,1,1,2,3],[36,1,1,3,4],[41,4,4,4,8],[42,2,2,8,10],[43,2,2,10,12],[45,1,1,12,13],[46,3,2,13,15]]],[1,1,1,15,16,[[59,1,1,15,16]]],[3,5,5,16,21,[[125,1,1,16,17],[126,1,1,17,18],[136,2,2,18,20],[148,1,1,20,21]]],[4,5,5,21,26,[[153,2,2,21,23],[157,2,2,23,25],[164,1,1,25,26]]],[5,8,8,26,34,[[188,3,3,26,29],[195,4,4,29,33],[210,1,1,33,34]]],[6,6,6,34,40,[[219,1,1,34,35],[226,1,1,35,36],[228,1,1,36,37],[229,1,1,37,38],[231,2,2,38,40]]],[8,5,5,40,45,[[243,1,1,40,41],[249,1,1,41,42],[255,1,1,42,43],[258,1,1,43,44],[265,1,1,44,45]]],[9,1,1,45,46,[[271,1,1,45,46]]],[10,3,2,46,48,[[293,2,1,46,47],[312,1,1,47,48]]],[11,9,8,48,56,[[318,1,1,48,49],[319,4,3,49,52],[322,3,3,52,55],[330,1,1,55,56]]],[12,3,3,56,59,[[348,1,1,56,57],[366,2,2,57,59]]],[13,4,4,59,63,[[368,1,1,59,60],[379,2,2,60,62],[386,1,1,62,63]]],[14,7,6,63,69,[[406,2,2,63,65],[411,3,2,65,67],[412,2,2,67,69]]],[15,16,15,69,84,[[414,2,2,69,71],[416,5,5,71,76],[417,4,4,76,80],[421,5,4,80,84]]],[17,1,1,84,85,[[443,1,1,84,85]]],[18,8,8,85,93,[[497,2,2,85,87],[556,1,1,87,88],[572,1,1,88,89],[577,1,1,89,90],[580,1,1,90,91],[592,1,1,91,92],[601,1,1,92,93]]],[22,4,4,93,97,[[698,1,1,93,94],[714,1,1,94,95],[731,1,1,95,96],[742,1,1,96,97]]],[23,9,9,97,106,[[747,1,1,97,98],[752,3,3,98,101],[770,1,1,101,102],[779,1,1,102,103],[788,2,2,103,105],[792,1,1,105,106]]],[24,1,1,106,107,[[801,1,1,106,107]]],[25,3,3,107,110,[[812,1,1,107,108],[834,2,2,108,110]]],[26,1,1,110,111,[[858,1,1,110,111]]],[32,1,1,111,112,[[896,1,1,111,112]]],[38,1,1,112,113,[[927,1,1,112,113]]]],[326,470,799,1090,1263,1273,1283,1284,1298,1308,1333,1340,1420,1423,1439,1803,3972,4017,4315,4327,4735,4920,4933,5056,5078,5248,5886,5887,5888,6045,6048,6056,6059,6494,6782,6954,6998,7042,7109,7120,7389,7516,7772,7813,7992,8133,8834,9483,9675,9710,9716,9719,9797,9798,9806,10050,10674,11177,11179,11227,11463,11464,11599,12112,12113,12244,12246,12254,12256,12324,12327,12360,12369,12378,12380,12382,12384,12385,12387,12390,12544,12547,12548,12549,13038,14189,14190,15198,15461,15511,15563,15848,16109,18035,18341,18715,18893,19027,19161,19167,19173,19591,19831,20027,20029,20094,20449,20658,21290,21304,22006,22625,23135]]],["We",[21,21,[[0,3,3,0,3,[[41,3,3,0,3]]],[3,2,2,3,5,[[125,1,1,3,4],[126,1,1,4,5]]],[5,5,5,5,10,[[188,1,1,5,6],[195,4,4,6,10]]],[6,1,1,10,11,[[229,1,1,10,11]]],[8,1,1,11,12,[[265,1,1,11,12]]],[11,3,3,12,15,[[319,1,1,12,13],[322,2,2,13,15]]],[14,1,1,15,16,[[412,1,1,15,16]]],[15,3,3,16,19,[[417,3,3,16,19]]],[23,2,2,19,21,[[752,1,1,19,20],[792,1,1,20,21]]]],[1273,1283,1284,3972,4017,5886,6045,6048,6056,6059,7042,7992,9716,9798,9806,12254,12384,12385,12390,19161,20094]]],["ourselves",[2,2,[[14,1,1,0,1,[[406,1,1,0,1]]],[18,1,1,1,2,[[577,1,1,1,2]]]],[12113,15511]]],["us",[4,4,[[4,1,1,0,1,[[157,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[13,1,1,2,3,[[379,1,1,2,3]]],[15,1,1,3,4,[[416,1,1,3,4]]]],[5056,7772,11463,12382]]],["we",[91,87,[[0,13,12,0,12,[[12,1,1,0,1],[18,1,1,1,2],[28,1,1,2,3],[36,1,1,3,4],[41,1,1,4,5],[42,2,2,5,7],[43,2,2,7,9],[45,1,1,9,10],[46,3,2,10,12]]],[1,1,1,12,13,[[59,1,1,12,13]]],[3,3,3,13,16,[[136,2,2,13,15],[148,1,1,15,16]]],[4,4,4,16,20,[[153,2,2,16,18],[157,1,1,18,19],[164,1,1,19,20]]],[5,3,3,20,23,[[188,2,2,20,22],[210,1,1,22,23]]],[6,5,5,23,28,[[219,1,1,23,24],[226,1,1,24,25],[228,1,1,25,26],[231,2,2,26,28]]],[8,3,3,28,31,[[243,1,1,28,29],[249,1,1,29,30],[258,1,1,30,31]]],[9,1,1,31,32,[[271,1,1,31,32]]],[10,3,2,32,34,[[293,2,1,32,33],[312,1,1,33,34]]],[11,6,6,34,40,[[318,1,1,34,35],[319,3,3,35,38],[322,1,1,38,39],[330,1,1,39,40]]],[12,3,3,40,43,[[348,1,1,40,41],[366,2,2,41,43]]],[13,3,3,43,46,[[368,1,1,43,44],[379,1,1,44,45],[386,1,1,45,46]]],[14,5,4,46,50,[[406,1,1,46,47],[411,3,2,47,49],[412,1,1,49,50]]],[15,12,11,50,61,[[414,2,2,50,52],[416,4,4,52,56],[417,1,1,56,57],[421,5,4,57,61]]],[17,1,1,61,62,[[443,1,1,61,62]]],[18,7,7,62,69,[[497,2,2,62,64],[556,1,1,64,65],[572,1,1,65,66],[580,1,1,66,67],[592,1,1,67,68],[601,1,1,68,69]]],[22,4,4,69,73,[[698,1,1,69,70],[714,1,1,70,71],[731,1,1,71,72],[742,1,1,72,73]]],[23,7,7,73,80,[[747,1,1,73,74],[752,2,2,74,76],[770,1,1,76,77],[779,1,1,77,78],[788,2,2,78,80]]],[24,1,1,80,81,[[801,1,1,80,81]]],[25,3,3,81,84,[[812,1,1,81,82],[834,2,2,82,84]]],[26,1,1,84,85,[[858,1,1,84,85]]],[32,1,1,85,86,[[896,1,1,85,86]]],[38,1,1,86,87,[[927,1,1,86,87]]]],[326,470,799,1090,1263,1298,1308,1333,1340,1420,1423,1439,1803,4315,4327,4735,4920,4933,5078,5248,5887,5888,6494,6782,6954,6998,7109,7120,7389,7516,7813,8133,8834,9483,9675,9710,9716,9719,9797,10050,10674,11177,11179,11227,11464,11599,12112,12244,12246,12256,12324,12327,12360,12369,12378,12380,12387,12544,12547,12548,12549,13038,14189,14190,15198,15461,15563,15848,16109,18035,18341,18715,18893,19027,19167,19173,19591,19831,20027,20029,20449,20658,21290,21304,22006,22625,23135]]]]},{"k":"H588","v":[["Anaharath",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6340]]]]},{"k":"H589","v":[["*",[874,805,[[0,41,38,0,38,[[5,1,1,0,1],[8,2,2,1,3],[13,1,1,3,4],[14,1,1,4,5],[16,2,2,5,7],[17,3,2,7,9],[21,1,1,9,10],[23,1,1,10,11],[26,5,5,11,16],[27,1,1,16,17],[30,2,2,17,19],[32,1,1,19,20],[33,2,1,20,21],[34,1,1,21,22],[36,3,2,22,24],[39,1,1,24,25],[40,4,4,25,29],[41,2,2,29,31],[42,1,1,31,32],[44,2,2,32,34],[47,2,2,34,36],[48,1,1,36,37],[49,1,1,37,38]]],[1,39,36,38,74,[[51,1,1,38,39],[52,1,1,39,40],[53,1,1,40,41],[55,9,8,41,49],[56,3,3,49,52],[57,1,1,52,53],[58,2,2,53,55],[59,2,2,55,57],[60,1,1,57,58],[61,1,1,58,59],[62,1,1,59,60],[63,3,3,60,63],[64,1,1,63,64],[65,1,1,64,65],[67,1,1,65,66],[71,1,1,66,67],[74,1,1,67,68],[78,2,1,68,69],[80,2,2,69,71],[82,3,2,71,73],[83,1,1,73,74]]],[2,70,67,74,141,[[100,4,2,74,76],[103,1,1,76,77],[106,1,1,77,78],[107,8,8,78,86],[108,16,16,86,102],[109,9,8,102,110],[110,4,4,110,114],[111,9,9,114,123],[112,3,3,123,126],[113,1,1,126,127],[114,4,4,127,131],[115,10,10,131,141]]],[3,21,19,141,160,[[119,4,4,141,145],[121,1,1,145,146],[122,1,1,146,147],[126,1,1,147,148],[129,1,1,148,149],[130,3,3,149,152],[131,4,3,152,155],[134,3,3,155,158],[136,1,1,158,159],[151,2,1,159,160]]],[4,9,6,160,166,[[164,1,1,160,161],[181,1,1,161,162],[184,7,4,162,166]]],[5,4,4,166,170,[[191,1,1,166,167],[194,1,1,167,168],[203,1,1,168,169],[209,1,1,169,170]]],[6,12,12,170,182,[[211,1,1,170,171],[212,1,1,171,172],[216,1,1,172,173],[218,1,1,173,174],[219,1,1,174,175],[222,1,1,175,176],[223,1,1,176,177],[225,1,1,177,178],[226,1,1,178,179],[227,1,1,179,180],[229,1,1,180,181],[230,1,1,181,182]]],[7,2,2,182,184,[[232,1,1,182,183],[235,1,1,183,184]]],[8,20,18,184,202,[[236,1,1,184,185],[238,1,1,185,186],[239,1,1,186,187],[247,2,1,187,188],[249,1,1,188,189],[251,1,1,189,190],[252,3,3,190,193],[254,2,1,193,194],[255,2,2,194,196],[256,1,1,196,197],[258,1,1,197,198],[259,1,1,198,199],[260,2,2,199,201],[261,1,1,201,202]]],[9,30,26,202,228,[[269,1,1,202,203],[273,2,2,203,205],[277,1,1,205,206],[278,4,3,206,209],[279,2,2,209,211],[280,3,3,211,214],[281,5,2,214,216],[282,1,1,216,217],[283,1,1,217,218],[284,4,4,218,222],[285,4,4,222,226],[286,1,1,226,227],[287,1,1,227,228]]],[10,30,28,228,256,[[291,4,4,228,232],[293,1,1,232,233],[295,2,2,233,235],[302,4,2,235,237],[303,2,2,237,239],[307,1,1,239,240],[308,6,6,240,246],[309,2,2,246,248],[310,4,4,248,252],[311,1,1,252,253],[312,3,3,253,256]]],[11,16,16,256,272,[[313,2,2,256,258],[314,2,2,258,260],[315,1,1,260,261],[317,1,1,261,262],[318,1,1,262,263],[321,2,2,263,265],[322,2,2,265,267],[328,1,1,267,268],[331,2,2,268,270],[334,1,1,270,271],[335,1,1,271,272]]],[12,12,11,272,283,[[354,3,3,272,275],[358,3,2,275,277],[359,2,2,277,279],[365,2,2,279,281],[366,2,2,281,283]]],[13,18,16,283,299,[[368,5,5,283,288],[372,1,1,288,289],[373,1,1,289,290],[376,4,2,290,292],[378,1,1,292,293],[384,3,3,293,296],[398,1,1,296,297],[400,2,2,297,299]]],[14,2,2,299,301,[[409,1,1,299,300],[411,1,1,300,301]]],[15,15,14,301,315,[[413,4,4,301,305],[414,3,2,305,307],[416,1,1,307,308],[417,3,3,308,311],[418,2,2,311,313],[424,2,2,313,315]]],[16,6,6,315,321,[[429,2,2,315,317],[430,2,2,317,319],[432,1,1,319,320],[433,1,1,320,321]]],[17,29,27,321,348,[[436,4,4,321,325],[440,2,2,325,327],[441,1,1,327,328],[442,2,2,328,330],[444,2,2,330,332],[448,4,4,332,336],[450,1,1,336,337],[454,2,2,337,339],[464,1,1,339,340],[467,4,3,340,343],[468,3,2,343,345],[469,1,1,345,346],[470,1,1,346,347],[475,1,1,347,348]]],[18,70,69,348,417,[[479,2,2,348,350],[480,1,1,350,351],[482,1,1,351,352],[483,1,1,352,353],[490,1,1,353,354],[494,3,3,354,357],[502,1,1,357,358],[503,2,2,358,360],[504,1,1,360,361],[507,1,1,361,362],[508,3,3,362,365],[512,2,2,365,367],[515,2,2,367,369],[516,2,2,369,371],[517,1,1,371,372],[518,2,2,372,374],[522,1,1,374,375],[528,1,1,375,376],[529,1,1,376,377],[532,2,2,377,379],[533,1,1,379,380],[536,1,1,380,381],[546,2,2,381,383],[547,1,1,383,384],[548,2,2,384,386],[550,4,4,386,390],[552,2,2,390,392],[559,1,1,392,393],[563,2,2,393,395],[565,2,2,395,397],[566,2,2,397,399],[579,1,1,399,400],[586,2,2,400,402],[593,4,3,402,405],[595,1,1,405,406],[596,8,8,406,414],[597,1,1,414,415],[612,1,1,415,416],[620,1,1,416,417]]],[19,7,7,417,424,[[628,1,1,417,418],[635,4,4,418,422],[650,1,1,422,423],[653,1,1,423,424]]],[20,28,25,424,449,[[659,3,2,424,426],[660,11,9,426,435],[661,2,2,435,437],[662,5,5,437,442],[663,1,1,442,443],[665,2,2,443,445],[666,3,3,445,448],[667,1,1,448,449]]],[21,12,12,449,461,[[671,2,2,449,451],[672,3,3,451,454],[675,4,4,454,458],[676,1,1,458,459],[677,1,1,459,460],[678,1,1,460,461]]],[22,81,66,461,527,[[683,1,1,461,462],[684,2,1,462,463],[688,1,1,463,464],[691,1,1,464,465],[697,1,1,465,466],[705,1,1,466,467],[715,2,2,467,469],[716,1,1,469,470],[719,8,5,470,475],[720,3,3,475,478],[721,8,8,478,486],[722,3,2,486,488],[723,11,11,488,499],[724,5,1,499,500],[725,2,2,500,502],[726,8,5,502,507],[727,6,5,507,512],[730,1,1,512,513],[734,1,1,513,514],[735,3,3,514,517],[737,1,1,517,518],[738,2,2,518,520],[739,1,1,520,521],[741,1,1,521,522],[743,3,2,522,524],[744,4,3,524,527]]],[23,55,52,527,579,[[745,6,6,527,533],[747,1,1,533,534],[748,1,1,534,535],[749,1,1,535,536],[753,1,1,536,537],[754,1,1,537,538],[755,2,2,538,540],[757,1,1,540,541],[758,1,1,541,542],[759,1,1,542,543],[761,4,3,543,546],[765,1,1,546,547],[766,1,1,547,548],[767,4,3,548,551],[768,1,1,551,552],[769,1,1,552,553],[770,1,1,553,554],[772,2,2,554,556],[773,2,2,556,558],[774,1,1,558,559],[775,1,1,559,560],[776,2,2,560,562],[778,1,1,562,563],[780,2,2,563,565],[782,4,4,565,569],[784,1,1,569,570],[786,2,2,570,572],[788,1,1,572,573],[789,2,1,573,574],[790,2,2,574,576],[792,1,1,576,577],[793,2,2,577,579]]],[24,4,4,579,583,[[797,2,2,579,581],[799,2,2,581,583]]],[25,168,155,583,738,[[802,1,1,583,584],[803,4,3,584,587],[804,1,1,587,588],[805,1,1,588,589],[806,7,5,589,594],[807,5,5,594,599],[808,3,3,599,602],[809,2,2,602,604],[810,2,2,604,606],[812,4,4,606,610],[813,5,5,610,615],[814,6,6,615,621],[815,8,8,621,629],[816,1,1,629,630],[817,5,4,630,634],[818,6,5,634,639],[819,1,1,639,640],[821,17,16,640,656],[822,4,3,656,659],[823,4,3,659,662],[824,2,2,662,664],[825,4,4,664,668],[826,4,4,668,672],[827,3,3,672,675],[828,1,1,675,676],[829,7,7,676,683],[830,6,5,683,688],[831,5,5,688,693],[833,1,1,693,694],[834,3,3,694,697],[835,10,8,697,705],[836,7,7,705,712],[837,8,7,712,719],[838,9,9,719,728],[839,1,1,728,729],[840,6,6,729,735],[841,1,1,735,736],[845,3,2,736,738]]],[26,23,22,738,760,[[850,1,1,738,739],[857,6,5,739,744],[858,4,4,744,748],[859,9,9,748,757],[860,1,1,757,758],[861,2,2,758,760]]],[27,12,10,760,770,[[864,1,1,760,761],[865,1,1,761,762],[866,5,4,762,766],[868,1,1,766,767],[871,1,1,767,768],[874,1,1,768,769],[875,2,1,769,770]]],[28,4,3,770,773,[[877,2,1,770,771],[878,2,2,771,773]]],[29,1,1,773,774,[[882,1,1,773,774]]],[31,5,5,774,779,[[889,2,2,774,776],[890,2,2,776,778],[892,1,1,778,779]]],[32,2,2,779,781,[[898,1,1,779,780],[899,1,1,780,781]]],[34,1,1,781,782,[[905,1,1,781,782]]],[35,2,2,782,784,[[907,2,2,782,784]]],[36,4,4,784,788,[[909,1,1,784,785],[910,3,3,785,788]]],[37,11,10,788,798,[[911,3,2,788,790],[912,1,1,790,791],[915,1,1,791,792],[917,1,1,792,793],[918,3,3,793,796],[920,1,1,796,797],[923,1,1,797,798]]],[38,8,7,798,805,[[925,4,3,798,801],[926,1,1,801,802],[927,2,2,802,804],[928,1,1,804,805]]]],[154,214,217,359,367,398,401,437,441,552,636,735,751,759,761,765,786,917,925,974,1010,1022,1093,1113,1188,1204,1206,1210,1239,1270,1289,1304,1361,1362,1458,1473,1502,1525,1563,1598,1622,1657,1660,1661,1662,1663,1667,1684,1685,1688,1690,1702,1732,1756,1769,1778,1779,1810,1828,1882,1893,1906,1907,1946,1959,2005,2140,2204,2382,2426,2433,2489,2492,2506,3041,3042,3145,3246,3253,3254,3255,3256,3257,3272,3275,3281,3283,3284,3285,3291,3293,3295,3297,3299,3306,3309,3311,3312,3313,3315,3317,3318,3321,3323,3325,3326,3340,3341,3342,3344,3353,3357,3360,3368,3371,3372,3377,3378,3385,3399,3400,3401,3402,3412,3424,3445,3468,3471,3486,3507,3524,3525,3526,3537,3540,3548,3552,3556,3565,3568,3569,3704,3705,3733,3737,3795,3850,3998,4077,4129,4136,4143,4155,4171,4194,4263,4265,4277,4330,4879,5270,5685,5779,5797,5807,5810,5948,6007,6289,6462,6512,6566,6664,6742,6756,6871,6895,6932,6966,6982,7042,7058,7148,7194,7238,7289,7313,7462,7548,7596,7627,7628,7646,7709,7750,7753,7787,7814,7856,7885,7886,7911,8094,8188,8194,8270,8298,8309,8314,8321,8330,8361,8364,8388,8409,8423,8445,8464,8480,8500,8505,8511,8531,8533,8549,8554,8571,8586,8722,8731,8738,8743,8833,8886,8887,9162,9165,9198,9202,9337,9349,9353,9363,9364,9365,9377,9397,9401,9412,9421,9436,9442,9458,9488,9496,9501,9543,9545,9554,9556,9590,9654,9677,9773,9781,9802,9817,9970,10084,10085,10165,10182,10870,10876,10879,10944,10951,10971,10974,11145,11149,11178,11181,11215,11216,11217,11219,11220,11284,11338,11406,11409,11442,11549,11557,11562,11888,11960,11961,12201,12241,12297,12302,12304,12307,12319,12323,12382,12392,12396,12397,12404,12411,12662,12664,12773,12778,12791,12792,12811,12822,12884,12885,12886,12888,12954,12959,13002,13019,13020,13071,13072,13155,13156,13166,13171,13209,13322,13324,13547,13634,13638,13645,13656,13659,13716,13724,13878,13951,13952,13962,13980,13987,14079,14107,14109,14118,14267,14274,14284,14288,14325,14337,14345,14353,14413,14423,14503,14507,14516,14522,14542,14546,14554,14598,14694,14718,14748,14755,14758,14806,14948,14964,14976,14990,14998,15022,15042,15043,15048,15073,15080,15239,15285,15286,15321,15323,15353,15373,15532,15759,15780,15858,15859,15864,15876,15961,15965,15967,15968,15976,15985,15992,16023,16081,16180,16305,16426,16614,16616,16619,16629,17059,17160,17327,17331,17334,17344,17345,17346,17347,17348,17351,17353,17357,17376,17377,17382,17383,17385,17388,17389,17415,17454,17455,17460,17470,17473,17491,17542,17543,17555,17559,17570,17600,17603,17604,17606,17617,17637,17650,17744,17774,17864,17909,18015,18154,18376,18377,18400,18455,18461,18464,18465,18468,18486,18488,18489,18507,18508,18509,18510,18515,18517,18518,18520,18538,18539,18563,18564,18566,18567,18568,18569,18573,18579,18580,18582,18583,18590,18607,18609,18626,18627,18629,18630,18631,18640,18654,18657,18659,18662,18702,18756,18776,18777,18781,18821,18837,18843,18851,18867,18915,18921,18926,18931,18944,18954,18957,18958,18959,18964,18965,19014,19039,19062,19199,19220,19240,19245,19292,19308,19335,19367,19373,19375,19445,19478,19487,19507,19508,19531,19563,19586,19621,19622,19666,19667,19678,19728,19758,19769,19806,19847,19860,19909,19914,19915,19921,19951,19986,19992,20039,20044,20063,20073,20110,20137,20138,20326,20331,20355,20417,20465,20495,20496,20500,20505,20534,20554,20557,20559,20561,20563,20566,20570,20573,20576,20577,20581,20586,20604,20605,20622,20630,20632,20660,20665,20667,20675,20691,20695,20696,20700,20705,20715,20717,20722,20729,20730,20731,20735,20738,20739,20740,20742,20747,20749,20751,20761,20805,20810,20822,20824,20841,20844,20846,20847,20849,20852,20898,20900,20902,20907,20910,20914,20915,20918,20920,20921,20926,20928,20933,20937,20939,20943,20949,20961,20976,20990,20992,20998,21041,21056,21065,21070,21080,21083,21088,21090,21094,21100,21105,21106,21114,21124,21159,21166,21167,21179,21180,21181,21183,21186,21189,21192,21199,21204,21212,21216,21223,21229,21230,21263,21291,21307,21309,21321,21324,21328,21333,21337,21340,21343,21344,21348,21350,21353,21355,21356,21357,21359,21366,21370,21381,21382,21391,21395,21397,21402,21403,21409,21410,21411,21416,21418,21420,21425,21448,21453,21454,21455,21465,21470,21476,21481,21604,21627,21747,21962,21963,21966,21976,21988,21990,22008,22009,22011,22017,22019,22022,22023,22024,22027,22028,22032,22035,22037,22086,22089,22131,22139,22154,22155,22164,22166,22193,22236,22271,22290,22338,22353,22360,22416,22540,22543,22552,22557,22579,22661,22671,22786,22814,22820,22853,22859,22861,22876,22887,22893,22904,22938,22967,22984,22987,22997,23022,23068,23093,23095,23103,23112,23126,23137,23141]]],["+",[2,2,[[20,1,1,0,1,[[660,1,1,0,1]]],[21,1,1,1,2,[[671,1,1,1,2]]]],[17351,17543]]],["For",[1,1,[[23,1,1,0,1,[[745,1,1,0,1]]]],[18964]]],["I",[837,770,[[0,36,33,0,33,[[5,1,1,0,1],[8,2,2,1,3],[13,1,1,3,4],[14,1,1,4,5],[16,1,1,5,6],[17,2,1,6,7],[21,1,1,7,8],[23,1,1,8,9],[26,3,3,9,12],[27,1,1,12,13],[30,2,2,13,15],[32,1,1,15,16],[33,2,1,16,17],[34,1,1,17,18],[36,3,2,18,20],[39,1,1,20,21],[40,4,4,21,25],[41,2,2,25,27],[42,1,1,27,28],[44,2,2,28,30],[47,1,1,30,31],[48,1,1,31,32],[49,1,1,32,33]]],[1,38,35,33,68,[[51,1,1,33,34],[52,1,1,34,35],[53,1,1,35,36],[55,8,7,36,43],[56,3,3,43,46],[57,1,1,46,47],[58,2,2,47,49],[59,2,2,49,51],[60,1,1,51,52],[61,1,1,52,53],[62,1,1,53,54],[63,3,3,54,57],[64,1,1,57,58],[65,1,1,58,59],[67,1,1,59,60],[71,1,1,60,61],[74,1,1,61,62],[78,2,1,62,63],[80,2,2,63,65],[82,3,2,65,67],[83,1,1,67,68]]],[2,70,67,68,135,[[100,4,2,68,70],[103,1,1,70,71],[106,1,1,71,72],[107,8,8,72,80],[108,16,16,80,96],[109,9,8,96,104],[110,4,4,104,108],[111,9,9,108,117],[112,3,3,117,120],[113,1,1,120,121],[114,4,4,121,125],[115,10,10,125,135]]],[3,21,19,135,154,[[119,4,4,135,139],[121,1,1,139,140],[122,1,1,140,141],[126,1,1,141,142],[129,1,1,142,143],[130,3,3,143,146],[131,4,3,146,149],[134,3,3,149,152],[136,1,1,152,153],[151,2,1,153,154]]],[4,9,6,154,160,[[164,1,1,154,155],[181,1,1,155,156],[184,7,4,156,160]]],[5,4,4,160,164,[[191,1,1,160,161],[194,1,1,161,162],[203,1,1,162,163],[209,1,1,163,164]]],[6,12,12,164,176,[[211,1,1,164,165],[212,1,1,165,166],[216,1,1,166,167],[218,1,1,167,168],[219,1,1,168,169],[222,1,1,169,170],[223,1,1,170,171],[225,1,1,171,172],[226,1,1,172,173],[227,1,1,173,174],[229,1,1,174,175],[230,1,1,175,176]]],[7,2,2,176,178,[[232,1,1,176,177],[235,1,1,177,178]]],[8,19,17,178,195,[[236,1,1,178,179],[238,1,1,179,180],[239,1,1,180,181],[247,2,1,181,182],[249,1,1,182,183],[251,1,1,183,184],[252,3,3,184,187],[254,2,1,187,188],[255,2,2,188,190],[256,1,1,190,191],[258,1,1,191,192],[259,1,1,192,193],[260,1,1,193,194],[261,1,1,194,195]]],[9,27,23,195,218,[[269,1,1,195,196],[273,2,2,196,198],[277,1,1,198,199],[278,4,3,199,202],[279,2,2,202,204],[280,3,3,204,207],[281,5,2,207,209],[282,1,1,209,210],[283,1,1,210,211],[284,2,2,211,213],[285,3,3,213,216],[286,1,1,216,217],[287,1,1,217,218]]],[10,29,27,218,245,[[291,3,3,218,221],[293,1,1,221,222],[295,2,2,222,224],[302,4,2,224,226],[303,2,2,226,228],[307,1,1,228,229],[308,6,6,229,235],[309,2,2,235,237],[310,4,4,237,241],[311,1,1,241,242],[312,3,3,242,245]]],[11,16,16,245,261,[[313,2,2,245,247],[314,2,2,247,249],[315,1,1,249,250],[317,1,1,250,251],[318,1,1,251,252],[321,2,2,252,254],[322,2,2,254,256],[328,1,1,256,257],[331,2,2,257,259],[334,1,1,259,260],[335,1,1,260,261]]],[12,10,9,261,270,[[354,3,3,261,264],[358,3,2,264,266],[359,1,1,266,267],[365,2,2,267,269],[366,1,1,269,270]]],[13,18,16,270,286,[[368,5,5,270,275],[372,1,1,275,276],[373,1,1,276,277],[376,4,2,277,279],[378,1,1,279,280],[384,3,3,280,283],[398,1,1,283,284],[400,2,2,284,286]]],[14,2,2,286,288,[[409,1,1,286,287],[411,1,1,287,288]]],[15,15,14,288,302,[[413,4,4,288,292],[414,3,2,292,294],[416,1,1,294,295],[417,3,3,295,298],[418,2,2,298,300],[424,2,2,300,302]]],[16,6,6,302,308,[[429,2,2,302,304],[430,2,2,304,306],[432,1,1,306,307],[433,1,1,307,308]]],[17,29,27,308,335,[[436,4,4,308,312],[440,2,2,312,314],[441,1,1,314,315],[442,2,2,315,317],[444,2,2,317,319],[448,4,4,319,323],[450,1,1,323,324],[454,2,2,324,326],[464,1,1,326,327],[467,4,3,327,330],[468,3,2,330,332],[469,1,1,332,333],[470,1,1,333,334],[475,1,1,334,335]]],[18,61,60,335,395,[[479,2,2,335,337],[480,1,1,337,338],[483,1,1,338,339],[490,1,1,339,340],[494,2,2,340,342],[502,1,1,342,343],[503,1,1,343,344],[504,1,1,344,345],[507,1,1,345,346],[508,3,3,346,349],[512,1,1,349,350],[515,2,2,350,352],[516,2,2,352,354],[517,1,1,354,355],[518,1,1,355,356],[522,1,1,356,357],[528,1,1,357,358],[529,1,1,358,359],[532,2,2,359,361],[533,1,1,361,362],[536,1,1,362,363],[546,1,1,363,364],[547,1,1,364,365],[548,2,2,365,367],[550,2,2,367,369],[552,2,2,369,371],[559,1,1,371,372],[563,2,2,372,374],[565,2,2,374,376],[566,1,1,376,377],[579,1,1,377,378],[586,2,2,378,380],[593,4,3,380,383],[595,1,1,383,384],[596,8,8,384,392],[597,1,1,392,393],[612,1,1,393,394],[620,1,1,394,395]]],[19,6,6,395,401,[[628,1,1,395,396],[635,4,4,396,400],[653,1,1,400,401]]],[20,26,24,401,425,[[659,3,2,401,403],[660,9,8,403,411],[661,2,2,411,413],[662,5,5,413,418],[663,1,1,418,419],[665,2,2,419,421],[666,3,3,421,424],[667,1,1,424,425]]],[21,11,11,425,436,[[671,1,1,425,426],[672,3,3,426,429],[675,4,4,429,433],[676,1,1,433,434],[677,1,1,434,435],[678,1,1,435,436]]],[22,80,65,436,501,[[683,1,1,436,437],[684,2,1,437,438],[688,1,1,438,439],[691,1,1,439,440],[697,1,1,440,441],[705,1,1,441,442],[715,2,2,442,444],[716,1,1,444,445],[719,8,5,445,450],[720,3,3,450,453],[721,8,8,453,461],[722,3,2,461,463],[723,11,11,463,474],[724,5,1,474,475],[725,2,2,475,477],[726,8,5,477,482],[727,6,5,482,487],[730,1,1,487,488],[734,1,1,488,489],[735,3,3,489,492],[738,2,2,492,494],[739,1,1,494,495],[741,1,1,495,496],[743,3,2,496,498],[744,4,3,498,501]]],[23,49,47,501,548,[[745,5,5,501,506],[747,1,1,506,507],[748,1,1,507,508],[749,1,1,508,509],[753,1,1,509,510],[754,1,1,510,511],[755,2,2,511,513],[757,1,1,513,514],[758,1,1,514,515],[759,1,1,515,516],[761,2,2,516,518],[766,1,1,518,519],[767,4,3,519,522],[768,1,1,522,523],[769,1,1,523,524],[772,2,2,524,526],[773,2,2,526,528],[774,1,1,528,529],[775,1,1,529,530],[776,2,2,530,532],[778,1,1,532,533],[780,2,2,533,535],[782,4,4,535,539],[786,2,2,539,541],[788,1,1,541,542],[789,2,1,542,543],[790,2,2,543,545],[792,1,1,545,546],[793,2,2,546,548]]],[24,4,4,548,552,[[797,2,2,548,550],[799,2,2,550,552]]],[25,167,154,552,706,[[802,1,1,552,553],[803,4,3,553,556],[804,1,1,556,557],[805,1,1,557,558],[806,7,5,558,563],[807,5,5,563,568],[808,3,3,568,571],[809,2,2,571,573],[810,1,1,573,574],[812,4,4,574,578],[813,5,5,578,583],[814,6,6,583,589],[815,8,8,589,597],[816,1,1,597,598],[817,5,4,598,602],[818,6,5,602,607],[819,1,1,607,608],[821,17,16,608,624],[822,4,3,624,627],[823,4,3,627,630],[824,2,2,630,632],[825,4,4,632,636],[826,4,4,636,640],[827,3,3,640,643],[828,1,1,643,644],[829,7,7,644,651],[830,6,5,651,656],[831,5,5,656,661],[833,1,1,661,662],[834,3,3,662,665],[835,10,8,665,673],[836,7,7,673,680],[837,8,7,680,687],[838,9,9,687,696],[839,1,1,696,697],[840,6,6,697,703],[841,1,1,703,704],[845,3,2,704,706]]],[26,21,20,706,726,[[850,1,1,706,707],[857,5,4,707,711],[858,4,4,711,715],[859,8,8,715,723],[860,1,1,723,724],[861,2,2,724,726]]],[27,12,10,726,736,[[864,1,1,726,727],[865,1,1,727,728],[866,5,4,728,732],[868,1,1,732,733],[871,1,1,733,734],[874,1,1,734,735],[875,2,1,735,736]]],[28,4,3,736,739,[[877,2,1,736,737],[878,2,2,737,739]]],[29,1,1,739,740,[[882,1,1,739,740]]],[31,5,5,740,745,[[889,2,2,740,742],[890,2,2,742,744],[892,1,1,744,745]]],[32,2,2,745,747,[[898,1,1,745,746],[899,1,1,746,747]]],[34,1,1,747,748,[[905,1,1,747,748]]],[35,2,2,748,750,[[907,2,2,748,750]]],[36,4,4,750,754,[[909,1,1,750,751],[910,3,3,751,754]]],[37,10,9,754,763,[[911,3,2,754,756],[912,1,1,756,757],[915,1,1,757,758],[918,3,3,758,761],[920,1,1,761,762],[923,1,1,762,763]]],[38,8,7,763,770,[[925,4,3,763,766],[926,1,1,766,767],[927,2,2,767,769],[928,1,1,769,770]]]],[154,214,217,359,367,398,441,552,636,735,751,759,786,917,925,974,1010,1022,1093,1113,1188,1204,1206,1210,1239,1270,1289,1304,1361,1362,1473,1502,1525,1563,1598,1622,1657,1660,1661,1662,1663,1684,1685,1688,1690,1702,1732,1756,1769,1778,1779,1810,1828,1882,1893,1906,1907,1946,1959,2005,2140,2204,2382,2426,2433,2489,2492,2506,3041,3042,3145,3246,3253,3254,3255,3256,3257,3272,3275,3281,3283,3284,3285,3291,3293,3295,3297,3299,3306,3309,3311,3312,3313,3315,3317,3318,3321,3323,3325,3326,3340,3341,3342,3344,3353,3357,3360,3368,3371,3372,3377,3378,3385,3399,3400,3401,3402,3412,3424,3445,3468,3471,3486,3507,3524,3525,3526,3537,3540,3548,3552,3556,3565,3568,3569,3704,3705,3733,3737,3795,3850,3998,4077,4129,4136,4143,4155,4171,4194,4263,4265,4277,4330,4879,5270,5685,5779,5797,5807,5810,5948,6007,6289,6462,6512,6566,6664,6742,6756,6871,6895,6932,6966,6982,7042,7058,7148,7194,7238,7289,7313,7462,7548,7596,7627,7628,7646,7709,7750,7753,7787,7814,7856,7886,7911,8094,8188,8194,8270,8298,8309,8314,8321,8330,8361,8364,8388,8409,8423,8445,8464,8500,8511,8531,8533,8549,8571,8586,8722,8731,8738,8833,8886,8887,9162,9165,9198,9202,9337,9349,9353,9363,9364,9365,9377,9397,9401,9412,9421,9436,9442,9458,9488,9496,9501,9543,9545,9554,9556,9590,9654,9677,9773,9781,9802,9817,9970,10084,10085,10165,10182,10870,10876,10879,10944,10951,10974,11145,11149,11178,11215,11216,11217,11219,11220,11284,11338,11406,11409,11442,11549,11557,11562,11888,11960,11961,12201,12241,12297,12302,12304,12307,12319,12323,12382,12392,12396,12397,12404,12411,12662,12664,12773,12778,12791,12792,12811,12822,12884,12885,12886,12888,12954,12959,13002,13019,13020,13071,13072,13155,13156,13166,13171,13209,13322,13324,13547,13634,13638,13645,13656,13659,13716,13724,13878,13951,13952,13962,13987,14079,14107,14109,14267,14274,14288,14325,14337,14345,14353,14413,14503,14507,14516,14522,14542,14546,14598,14694,14718,14748,14755,14758,14806,14964,14976,14990,14998,15042,15043,15073,15080,15239,15285,15286,15321,15323,15353,15532,15759,15780,15858,15859,15864,15876,15961,15965,15967,15968,15976,15985,15992,16023,16081,16180,16305,16426,16614,16616,16619,16629,17160,17327,17331,17334,17344,17345,17346,17348,17351,17353,17357,17376,17377,17382,17383,17385,17388,17389,17415,17454,17455,17460,17470,17473,17491,17542,17555,17559,17570,17600,17603,17604,17606,17617,17637,17650,17744,17774,17864,17909,18015,18154,18376,18377,18400,18455,18461,18464,18465,18468,18486,18488,18489,18507,18508,18509,18510,18515,18517,18518,18520,18538,18539,18563,18564,18566,18567,18568,18569,18573,18579,18580,18582,18583,18590,18607,18609,18626,18627,18629,18630,18631,18640,18654,18657,18659,18662,18702,18756,18776,18777,18781,18837,18843,18851,18867,18915,18921,18926,18931,18944,18954,18957,18958,18959,18965,19014,19039,19062,19199,19220,19240,19245,19292,19308,19335,19367,19373,19478,19487,19507,19508,19531,19563,19621,19622,19666,19667,19678,19728,19758,19769,19806,19847,19860,19909,19914,19915,19921,19986,19992,20039,20044,20063,20073,20110,20137,20138,20326,20331,20355,20417,20465,20495,20496,20500,20505,20534,20554,20557,20559,20561,20563,20566,20570,20573,20576,20577,20581,20586,20604,20605,20622,20630,20660,20665,20667,20675,20691,20695,20696,20700,20705,20715,20717,20722,20729,20730,20731,20735,20738,20739,20740,20742,20747,20749,20751,20761,20805,20810,20822,20824,20841,20844,20846,20847,20849,20852,20898,20900,20902,20907,20910,20914,20915,20918,20920,20921,20926,20928,20933,20937,20939,20943,20949,20961,20976,20990,20992,20998,21041,21056,21065,21070,21080,21083,21088,21090,21094,21100,21105,21106,21114,21124,21159,21166,21167,21179,21180,21181,21183,21186,21189,21192,21199,21204,21212,21216,21223,21229,21230,21263,21291,21307,21309,21321,21324,21328,21333,21337,21340,21343,21344,21348,21350,21353,21355,21356,21357,21359,21366,21370,21381,21382,21391,21395,21397,21402,21403,21409,21410,21411,21416,21418,21420,21425,21448,21453,21454,21455,21465,21470,21476,21481,21604,21627,21747,21963,21966,21976,21988,21990,22008,22009,22011,22017,22019,22022,22023,22024,22027,22028,22035,22037,22086,22089,22131,22139,22154,22155,22164,22166,22193,22236,22271,22290,22338,22353,22360,22416,22540,22543,22552,22557,22579,22661,22671,22786,22814,22820,22853,22859,22861,22876,22887,22893,22904,22938,22984,22987,22997,23022,23068,23093,23095,23103,23112,23126,23137,23141]]],["Me",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8505]]],["me",[25,24,[[0,4,4,0,4,[[16,1,1,0,1],[26,2,2,1,3],[47,1,1,3,4]]],[8,1,1,4,5,[[260,1,1,4,5]]],[10,1,1,5,6,[[291,1,1,5,6]]],[12,2,2,6,8,[[359,1,1,6,7],[366,1,1,7,8]]],[18,8,8,8,16,[[482,1,1,8,9],[494,1,1,9,10],[503,1,1,10,11],[512,1,1,11,12],[518,1,1,12,13],[546,1,1,13,14],[550,2,2,14,16]]],[22,1,1,16,17,[[737,1,1,16,17]]],[23,4,3,17,20,[[761,2,1,17,18],[770,1,1,18,19],[784,1,1,19,20]]],[25,1,1,20,21,[[810,1,1,20,21]]],[26,2,2,21,23,[[857,1,1,21,22],[859,1,1,22,23]]],[37,1,1,23,24,[[917,1,1,23,24]]]],[401,761,765,1458,7885,8743,10971,11181,13980,14118,14284,14423,14554,14948,15022,15048,18821,19375,19586,19951,20632,21962,22032,22967]]],["mine",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17059]]],["my",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15373]]],["myself",[3,3,[[9,1,1,0,1,[[284,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]],[23,1,1,2,3,[[765,1,1,2,3]]]],[8480,17347,19445]]],["we",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8554]]],["which",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[437]]],["who",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1667]]]]},{"k":"H590","v":[["*",[7,5,[[10,6,4,0,4,[[299,2,2,0,2],[300,4,2,2,4]]],[22,1,1,4,5,[[711,1,1,4,5]]]],[9077,9078,9090,9101,18300]]],["+",[1,1,[[10,1,1,0,1,[[299,1,1,0,1]]]],[9078]]],["galley",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18300]]],["navy",[4,2,[[10,4,2,0,2,[[300,4,2,0,2]]]],[9090,9101]]],["ships",[1,1,[[10,1,1,0,1,[[299,1,1,0,1]]]],[9077]]]]},{"k":"H591","v":[["*",[31,28,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[10,4,3,3,6,[[299,1,1,3,4],[312,3,2,4,6]]],[13,6,4,6,10,[[374,1,1,6,7],[375,2,1,7,8],[386,3,2,8,10]]],[17,1,1,10,11,[[444,1,1,10,11]]],[18,3,3,11,14,[[525,1,1,11,12],[581,1,1,12,13],[584,1,1,13,14]]],[19,2,2,14,16,[[657,1,1,14,15],[658,1,1,15,16]]],[22,5,5,16,21,[[680,1,1,16,17],[701,2,2,17,19],[721,1,1,19,20],[738,1,1,20,21]]],[25,3,3,21,24,[[828,3,3,21,24]]],[26,1,1,24,25,[[860,1,1,24,25]]],[31,3,3,25,28,[[889,3,3,25,28]]]],[1486,5679,6640,9078,9528,9529,11364,11385,11623,11624,13077,14641,15597,15722,17270,17298,17701,18078,18091,18519,18830,21130,21146,21150,22076,22534,22535,22536]]],["+",[2,2,[[10,1,1,0,1,[[299,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[9078,21150]]],["ship",[4,4,[[19,1,1,0,1,[[657,1,1,0,1]]],[31,3,3,1,4,[[889,3,3,1,4]]]],[17270,22534,22535,22536]]],["ships",[25,22,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[10,3,2,3,5,[[312,3,2,3,5]]],[13,6,4,5,9,[[374,1,1,5,6],[375,2,1,6,7],[386,3,2,7,9]]],[17,1,1,9,10,[[444,1,1,9,10]]],[18,3,3,10,13,[[525,1,1,10,11],[581,1,1,11,12],[584,1,1,12,13]]],[19,1,1,13,14,[[658,1,1,13,14]]],[22,5,5,14,19,[[680,1,1,14,15],[701,2,2,15,17],[721,1,1,17,18],[738,1,1,18,19]]],[25,2,2,19,21,[[828,2,2,19,21]]],[26,1,1,21,22,[[860,1,1,21,22]]]],[1486,5679,6640,9528,9529,11364,11385,11623,11624,13077,14641,15597,15722,17298,17701,18078,18091,18519,18830,21130,21146,22076]]]]},{"k":"H592","v":[["*",[2,2,[[22,1,1,0,1,[[707,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]]],[18195,20337]]],["lamentation",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20337]]],["sorrow",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18195]]]]},{"k":"H593","v":[["Aniam",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10554]]]]},{"k":"H594","v":[["plumbline",[4,2,[[29,4,2,0,2,[[885,4,2,0,2]]]],[22471,22472]]]]},{"k":"H595","v":[["*",[355,332,[[0,56,53,0,53,[[2,1,1,0,1],[3,1,1,1,2],[6,1,1,2,3],[14,3,3,3,6],[15,2,2,6,8],[17,1,1,8,9],[18,1,1,9,10],[19,2,1,10,11],[20,2,2,11,13],[22,1,1,13,14],[23,9,9,14,23],[24,3,3,23,26],[25,2,1,26,27],[26,2,2,27,29],[27,3,3,29,32],[28,1,1,32,33],[29,4,4,33,37],[30,4,4,37,41],[31,1,1,41,42],[36,1,1,42,43],[37,2,2,43,45],[42,1,1,45,46],[45,3,2,46,48],[46,1,1,48,49],[47,1,1,49,50],[49,3,3,50,53]]],[1,22,21,53,74,[[52,4,4,53,57],[53,6,5,57,62],[56,1,1,62,63],[57,3,3,63,66],[66,1,1,66,67],[68,1,1,67,68],[69,2,2,68,70],[72,1,1,70,71],[81,1,1,71,72],[83,2,2,72,74]]],[3,7,6,74,80,[[127,4,3,74,77],[138,2,2,77,79],[139,1,1,79,80]]],[4,56,55,80,135,[[156,6,5,80,85],[157,5,5,85,90],[158,2,2,90,92],[159,1,1,92,93],[160,2,2,93,95],[162,2,2,95,97],[163,7,7,97,104],[164,4,4,104,108],[165,1,1,108,109],[167,3,3,109,112],[170,1,1,112,113],[171,2,2,113,115],[176,2,2,115,117],[179,3,3,117,120],[180,4,4,120,124],[181,1,1,124,125],[182,4,4,125,129],[183,4,4,129,133],[184,2,2,133,135]]],[5,9,9,135,144,[[187,1,1,135,136],[193,1,1,136,137],[197,1,1,137,138],[199,1,1,138,139],[200,3,3,139,142],[209,1,1,142,143],[210,1,1,143,144]]],[6,17,15,144,159,[[215,2,1,144,145],[216,4,4,145,149],[217,2,2,149,151],[218,1,1,151,152],[221,4,4,152,156],[227,3,2,156,158],[229,1,1,158,159]]],[7,7,6,159,165,[[233,2,2,159,161],[234,3,3,161,164],[235,2,1,164,165]]],[8,26,26,165,191,[[236,3,3,165,168],[237,2,2,168,170],[238,1,1,170,171],[239,1,1,171,172],[244,2,2,172,174],[245,2,2,174,176],[247,1,1,176,177],[250,1,1,177,178],[251,1,1,178,179],[252,3,3,179,182],[253,2,2,182,184],[255,2,2,184,186],[256,1,1,186,187],[257,1,1,187,188],[258,1,1,188,189],[259,1,1,189,190],[265,1,1,190,191]]],[9,24,22,191,213,[[267,3,3,191,194],[268,2,2,194,196],[269,4,4,196,200],[273,2,2,200,202],[277,1,1,202,203],[278,2,1,203,204],[279,1,1,204,205],[280,1,1,205,206],[281,1,1,206,207],[284,1,1,207,208],[285,1,1,208,209],[286,2,2,209,211],[290,3,2,211,213]]],[10,7,7,213,220,[[292,4,4,213,217],[293,1,1,217,218],[304,1,1,218,219],[309,1,1,219,220]]],[11,2,2,220,222,[[316,1,1,220,221],[334,1,1,221,222]]],[12,1,1,222,223,[[354,1,1,222,223]]],[15,1,1,223,224,[[413,1,1,223,224]]],[17,13,13,224,237,[[444,2,2,224,226],[447,1,1,226,227],[448,2,2,227,229],[449,1,1,229,230],[451,1,1,230,231],[456,2,2,231,233],[464,1,1,233,234],[468,2,2,234,236],[477,1,1,236,237]]],[18,13,13,237,250,[[499,1,1,237,238],[516,1,1,238,239],[523,1,1,239,240],[527,1,1,240,241],[552,1,1,241,242],[558,1,1,242,243],[568,1,1,243,244],[581,1,1,244,245],[586,1,1,245,246],[596,3,3,246,249],[618,1,1,249,250]]],[19,2,2,250,252,[[651,1,1,250,251],[657,1,1,251,252]]],[22,24,18,252,270,[[686,1,1,252,253],[699,2,1,253,254],[721,5,3,254,257],[722,1,1,257,258],[723,2,2,258,260],[724,1,1,260,261],[727,3,2,261,263],[728,1,1,263,264],[729,3,2,264,266],[732,3,2,266,268],[744,2,2,268,270]]],[23,36,33,270,303,[[745,3,3,270,273],[746,1,1,273,274],[747,2,2,274,276],[748,1,1,276,277],[750,1,1,277,278],[751,1,1,278,279],[755,1,1,279,280],[758,1,1,280,281],[762,1,1,281,282],[767,1,1,282,283],[768,1,1,283,284],[769,3,3,284,287],[770,2,2,287,289],[771,2,2,289,291],[772,1,1,291,292],[773,3,2,292,294],[774,1,1,294,295],[775,1,1,295,296],[776,2,1,296,297],[777,2,1,297,298],[778,1,1,298,299],[779,1,1,299,300],[780,1,1,300,301],[794,1,1,301,302],[795,1,1,302,303]]],[25,1,1,303,304,[[837,1,1,303,304]]],[26,1,1,304,305,[[859,1,1,304,305]]],[27,11,11,305,316,[[862,1,1,305,306],[863,3,3,306,309],[866,1,1,309,310],[868,1,1,310,311],[872,2,2,311,313],[873,2,2,313,315],[874,1,1,315,316]]],[29,10,8,316,324,[[880,3,3,316,319],[882,1,1,319,320],[883,1,1,320,321],[884,1,1,321,322],[885,3,1,322,323],[887,1,1,323,324]]],[31,2,2,324,326,[[889,1,1,324,325],[891,1,1,325,326]]],[32,1,1,326,327,[[895,1,1,326,327]]],[37,5,4,327,331,[[921,2,2,327,329],[922,1,1,329,330],[923,2,1,330,331]]],[38,1,1,331,332,[[928,1,1,331,332]]]],[65,88,163,361,362,374,386,389,451,476,501,537,539,575,594,604,615,618,622,625,628,633,634,680,688,690,716,738,746,788,789,793,828,831,832,833,860,878,886,911,912,939,1099,1136,1144,1299,1389,1390,1450,1472,1511,1527,1530,1585,1590,1591,1592,1611,1612,1613,1616,1624,1702,1712,1738,1739,1992,2035,2053,2056,2164,2456,2506,2507,4036,4038,4045,4405,4407,4431,5005,5006,5012,5026,5044,5054,5058,5059,5062,5084,5088,5092,5122,5138,5148,5196,5199,5216,5221,5230,5234,5235,5236,5240,5251,5254,5268,5272,5290,5324,5330,5334,5403,5413,5415,5543,5547,5586,5589,5595,5612,5624,5625,5626,5693,5710,5716,5719,5724,5730,5746,5751,5755,5798,5804,5853,5996,6113,6160,6194,6195,6197,6474,6491,6626,6662,6669,6672,6691,6711,6712,6724,6838,6856,6864,6866,6989,6990,7042,7159,7162,7181,7184,7185,7194,7220,7227,7240,7263,7264,7287,7313,7410,7412,7426,7436,7483,7574,7598,7626,7661,7663,7694,7699,7735,7766,7774,7809,7827,7843,7991,8030,8035,8038,8055,8069,8089,8094,8109,8120,8182,8198,8264,8293,8345,8374,8417,8490,8546,8571,8573,8704,8709,8772,8786,8788,8790,8823,9224,9391,9616,10164,10864,12302,13065,13080,13131,13155,13175,13196,13242,13358,13359,13548,13659,13681,13926,14210,14524,14624,14675,15074,15227,15410,15605,15777,15917,16039,16060,16286,17111,17253,17825,18043,18516,18517,18530,18557,18573,18574,18595,18651,18661,18667,18685,18688,18734,18739,18935,18940,18952,18953,18963,18986,19016,19021,19033,19108,19130,19230,19305,19395,19516,19531,19549,19561,19563,19575,19577,19601,19602,19625,19646,19658,19689,19723,19773,19784,19814,19837,19845,20175,20276,21387,22026,22103,22107,22113,22119,22166,22191,22243,22249,22261,22262,22270,22388,22389,22392,22417,22424,22458,22478,22504,22540,22560,22616,23034,23044,23047,23064,23143]]],["+",[1,1,[[29,1,1,0,1,[[880,1,1,0,1]]]],[22388]]],["I",[350,327,[[0,55,52,0,52,[[2,1,1,0,1],[3,1,1,1,2],[6,1,1,2,3],[14,3,3,3,6],[15,2,2,6,8],[18,1,1,8,9],[19,2,1,9,10],[20,2,2,10,12],[22,1,1,12,13],[23,9,9,13,22],[24,3,3,22,25],[25,2,1,25,26],[26,2,2,26,28],[27,3,3,28,31],[28,1,1,31,32],[29,4,4,32,36],[30,4,4,36,40],[31,1,1,40,41],[36,1,1,41,42],[37,2,2,42,44],[42,1,1,44,45],[45,3,2,45,47],[46,1,1,47,48],[47,1,1,48,49],[49,3,3,49,52]]],[1,22,21,52,73,[[52,4,4,52,56],[53,6,5,56,61],[56,1,1,61,62],[57,3,3,62,65],[66,1,1,65,66],[68,1,1,66,67],[69,2,2,67,69],[72,1,1,69,70],[81,1,1,70,71],[83,2,2,71,73]]],[3,7,6,73,79,[[127,4,3,73,76],[138,2,2,76,78],[139,1,1,78,79]]],[4,56,55,79,134,[[156,6,5,79,84],[157,5,5,84,89],[158,2,2,89,91],[159,1,1,91,92],[160,2,2,92,94],[162,2,2,94,96],[163,7,7,96,103],[164,4,4,103,107],[165,1,1,107,108],[167,3,3,108,111],[170,1,1,111,112],[171,2,2,112,114],[176,2,2,114,116],[179,3,3,116,119],[180,4,4,119,123],[181,1,1,123,124],[182,4,4,124,128],[183,4,4,128,132],[184,2,2,132,134]]],[5,8,8,134,142,[[187,1,1,134,135],[193,1,1,135,136],[197,1,1,136,137],[199,1,1,137,138],[200,3,3,138,141],[209,1,1,141,142]]],[6,17,15,142,157,[[215,2,1,142,143],[216,4,4,143,147],[217,2,2,147,149],[218,1,1,149,150],[221,4,4,150,154],[227,3,2,154,156],[229,1,1,156,157]]],[7,7,6,157,163,[[233,2,2,157,159],[234,3,3,159,162],[235,2,1,162,163]]],[8,25,25,163,188,[[236,3,3,163,166],[237,2,2,166,168],[238,1,1,168,169],[239,1,1,169,170],[244,2,2,170,172],[245,2,2,172,174],[250,1,1,174,175],[251,1,1,175,176],[252,3,3,176,179],[253,2,2,179,181],[255,2,2,181,183],[256,1,1,183,184],[257,1,1,184,185],[258,1,1,185,186],[259,1,1,186,187],[265,1,1,187,188]]],[9,24,22,188,210,[[267,3,3,188,191],[268,2,2,191,193],[269,4,4,193,197],[273,2,2,197,199],[277,1,1,199,200],[278,2,1,200,201],[279,1,1,201,202],[280,1,1,202,203],[281,1,1,203,204],[284,1,1,204,205],[285,1,1,205,206],[286,2,2,206,208],[290,3,2,208,210]]],[10,7,7,210,217,[[292,4,4,210,214],[293,1,1,214,215],[304,1,1,215,216],[309,1,1,216,217]]],[11,2,2,217,219,[[316,1,1,217,218],[334,1,1,218,219]]],[12,1,1,219,220,[[354,1,1,219,220]]],[15,1,1,220,221,[[413,1,1,220,221]]],[17,12,12,221,233,[[444,2,2,221,223],[447,1,1,223,224],[448,2,2,224,226],[449,1,1,226,227],[451,1,1,227,228],[456,1,1,228,229],[464,1,1,229,230],[468,2,2,230,232],[477,1,1,232,233]]],[18,13,13,233,246,[[499,1,1,233,234],[516,1,1,234,235],[523,1,1,235,236],[527,1,1,236,237],[552,1,1,237,238],[558,1,1,238,239],[568,1,1,239,240],[581,1,1,240,241],[586,1,1,241,242],[596,3,3,242,245],[618,1,1,245,246]]],[19,2,2,246,248,[[651,1,1,246,247],[657,1,1,247,248]]],[22,24,18,248,266,[[686,1,1,248,249],[699,2,1,249,250],[721,5,3,250,253],[722,1,1,253,254],[723,2,2,254,256],[724,1,1,256,257],[727,3,2,257,259],[728,1,1,259,260],[729,3,2,260,262],[732,3,2,262,264],[744,2,2,264,266]]],[23,36,33,266,299,[[745,3,3,266,269],[746,1,1,269,270],[747,2,2,270,272],[748,1,1,272,273],[750,1,1,273,274],[751,1,1,274,275],[755,1,1,275,276],[758,1,1,276,277],[762,1,1,277,278],[767,1,1,278,279],[768,1,1,279,280],[769,3,3,280,283],[770,2,2,283,285],[771,2,2,285,287],[772,1,1,287,288],[773,3,2,288,290],[774,1,1,290,291],[775,1,1,291,292],[776,2,1,292,293],[777,2,1,293,294],[778,1,1,294,295],[779,1,1,295,296],[780,1,1,296,297],[794,1,1,297,298],[795,1,1,298,299]]],[25,1,1,299,300,[[837,1,1,299,300]]],[26,1,1,300,301,[[859,1,1,300,301]]],[27,11,11,301,312,[[862,1,1,301,302],[863,3,3,302,305],[866,1,1,305,306],[868,1,1,306,307],[872,2,2,307,309],[873,2,2,309,311],[874,1,1,311,312]]],[29,9,7,312,319,[[880,2,2,312,314],[882,1,1,314,315],[883,1,1,315,316],[884,1,1,316,317],[885,3,1,317,318],[887,1,1,318,319]]],[31,2,2,319,321,[[889,1,1,319,320],[891,1,1,320,321]]],[32,1,1,321,322,[[895,1,1,321,322]]],[37,5,4,322,326,[[921,2,2,322,324],[922,1,1,324,325],[923,2,1,325,326]]],[38,1,1,326,327,[[928,1,1,326,327]]]],[65,88,163,361,362,374,386,389,476,501,537,539,575,594,604,615,618,622,625,628,633,634,680,688,690,716,738,746,788,789,793,828,831,832,833,860,878,886,911,912,939,1099,1136,1144,1299,1389,1390,1450,1472,1511,1527,1530,1585,1590,1591,1592,1611,1612,1613,1616,1624,1702,1712,1738,1739,1992,2035,2053,2056,2164,2456,2506,2507,4036,4038,4045,4405,4407,4431,5005,5006,5012,5026,5044,5054,5058,5059,5062,5084,5088,5092,5122,5138,5148,5196,5199,5216,5221,5230,5234,5235,5236,5240,5251,5254,5268,5272,5290,5324,5330,5334,5403,5413,5415,5543,5547,5586,5589,5595,5612,5624,5625,5626,5693,5710,5716,5719,5724,5730,5746,5751,5755,5798,5804,5853,5996,6113,6160,6194,6195,6197,6474,6626,6662,6669,6672,6691,6711,6712,6724,6838,6856,6864,6866,6989,6990,7042,7159,7162,7181,7184,7185,7194,7220,7227,7240,7263,7264,7287,7313,7410,7412,7426,7436,7574,7598,7626,7661,7663,7694,7699,7735,7766,7774,7809,7827,7843,7991,8030,8035,8038,8055,8069,8089,8094,8109,8120,8182,8198,8264,8293,8345,8374,8417,8490,8546,8571,8573,8704,8709,8772,8786,8788,8790,8823,9224,9391,9616,10164,10864,12302,13065,13080,13131,13155,13175,13196,13242,13358,13548,13659,13681,13926,14210,14524,14624,14675,15074,15227,15410,15605,15777,15917,16039,16060,16286,17111,17253,17825,18043,18516,18517,18530,18557,18573,18574,18595,18651,18661,18667,18685,18688,18734,18739,18935,18940,18952,18953,18963,18986,19016,19021,19033,19108,19130,19230,19305,19395,19516,19531,19549,19561,19563,19575,19577,19601,19602,19625,19646,19658,19689,19723,19773,19784,19814,19837,19845,20175,20276,21387,22026,22103,22107,22113,22119,22166,22191,22243,22249,22261,22262,22270,22389,22392,22417,22424,22458,22478,22504,22540,22560,22616,23034,23044,23047,23064,23143]]],["me",[3,3,[[5,1,1,0,1,[[210,1,1,0,1]]],[8,1,1,1,2,[[247,1,1,1,2]]],[17,1,1,2,3,[[456,1,1,2,3]]]],[6491,7483,13359]]],["which",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[451]]]]},{"k":"H596","v":[["*",[2,2,[[3,1,1,0,1,[[127,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]]],[4025,20393]]],["complain",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20393]]],["complained",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4025]]]]},{"k":"H597","v":[["compel",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12710]]]]},{"k":"H598","v":[["troubleth",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21846]]]]},{"k":"H599","v":[["*",[14,14,[[4,4,4,0,4,[[153,1,1,0,1],[156,1,1,1,2],[161,2,2,2,4]]],[10,2,2,4,6,[[298,1,1,4,5],[301,1,1,5,6]]],[11,1,1,6,7,[[329,1,1,6,7]]],[13,1,1,7,8,[[372,1,1,7,8]]],[14,1,1,8,9,[[411,1,1,8,9]]],[18,4,4,9,13,[[479,1,1,9,10],[537,1,1,10,11],[556,1,1,11,12],[562,1,1,12,13]]],[22,1,1,13,14,[[690,1,1,13,14]]]],[4929,5025,5165,5177,9031,9117,10001,11318,12251,13957,14808,15190,15276,17901]]],["+",[2,2,[[4,1,1,0,1,[[161,1,1,0,1]]],[11,1,1,1,2,[[329,1,1,1,2]]]],[5177,10001]]],["angry",[11,11,[[4,3,3,0,3,[[153,1,1,0,1],[156,1,1,1,2],[161,1,1,2,3]]],[10,2,2,3,5,[[298,1,1,3,4],[301,1,1,4,5]]],[13,1,1,5,6,[[372,1,1,5,6]]],[14,1,1,6,7,[[411,1,1,6,7]]],[18,3,3,7,10,[[479,1,1,7,8],[556,1,1,8,9],[562,1,1,9,10]]],[22,1,1,10,11,[[690,1,1,10,11]]]],[4929,5025,5165,9031,9117,11318,12251,13957,15190,15276,17901]]],["displeased",[1,1,[[18,1,1,0,1,[[537,1,1,0,1]]]],[14808]]]]},{"k":"H600","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21804,21826]]],["face",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21804]]],["visage",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21826]]]]},{"k":"H601","v":[["heron",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3016,5308]]]]},{"k":"H602","v":[["*",[4,4,[[23,1,1,0,1,[[795,1,1,0,1]]],[25,3,3,1,4,[[810,1,1,1,2],[825,1,1,2,3],[827,1,1,3,4]]]],[20264,20626,21073,21115]]],["cry",[3,3,[[25,3,3,0,3,[[810,1,1,0,1],[825,1,1,1,2],[827,1,1,2,3]]]],[20626,21073,21115]]],["groan",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20264]]]]},{"k":"H603","v":[["*",[4,4,[[18,3,3,0,3,[[489,1,1,0,1],[556,1,1,1,2],[579,1,1,2,3]]],[38,1,1,3,4,[[926,1,1,3,4]]]],[14071,15196,15541,23116]]],["+",[1,1,[[18,1,1,0,1,[[489,1,1,0,1]]]],[14071]]],["groaning",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15541]]],["out",[1,1,[[38,1,1,0,1,[[926,1,1,0,1]]]],[23116]]],["sighing",[1,1,[[18,1,1,0,1,[[556,1,1,0,1]]]],[15196]]]]},{"k":"H604","v":[["ferret",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3027]]]]},{"k":"H605","v":[["*",[9,9,[[9,1,1,0,1,[[278,1,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[22,1,1,2,3,[[695,1,1,2,3]]],[23,5,5,3,8,[[759,1,1,3,4],[761,2,2,4,6],[774,2,2,6,8]]],[32,1,1,8,9,[[893,1,1,8,9]]]],[8301,13689,17994,19333,19366,19373,19679,19682,22588]]],["desperate",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17994]]],["incurable",[5,5,[[17,1,1,0,1,[[469,1,1,0,1]]],[23,3,3,1,4,[[759,1,1,1,2],[774,2,2,2,4]]],[32,1,1,4,5,[[893,1,1,4,5]]]],[13689,19333,19679,19682,22588]]],["sick",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8301]]],["wicked",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19366]]],["woeful",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19373]]]]},{"k":"H606","v":[["*",[25,19,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]],[26,23,17,2,19,[[851,3,3,2,5],[852,1,1,5,6],[853,8,5,6,11],[854,4,3,11,14],[855,3,2,14,16],[856,4,3,16,19]]]],[12121,12162,21768,21796,21801,21817,21853,21854,21862,21869,21870,21879,21881,21895,21912,21917,21937,21941,21946]]],["+",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[854,1,1,1,2]]]],[12162,21881]]],["man",[8,7,[[26,8,7,0,7,[[851,1,1,0,1],[852,1,1,1,2],[855,3,2,2,4],[856,3,3,4,7]]]],[21768,21817,21912,21917,21937,21941,21946]]],["man's",[3,3,[[26,3,3,0,3,[[853,1,1,0,1],[854,1,1,1,2],[856,1,1,2,3]]]],[21853,21879,21937]]],["men",[12,8,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,11,7,1,8,[[851,2,2,1,3],[853,7,4,3,7],[854,2,1,7,8]]]],[12121,21796,21801,21854,21862,21869,21870,21895]]]]},{"k":"H607","v":[["*",[15,14,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,14,13,1,14,[[851,4,4,1,5],[852,1,1,5,6],[853,3,2,6,8],[854,4,4,8,12],[855,2,2,12,14]]]],[12198,21787,21789,21795,21796,21817,21855,21859,21887,21892,21896,21897,21921,21925]]],["Thou",[4,4,[[26,4,4,0,4,[[851,3,3,0,3],[852,1,1,3,4]]]],[21789,21795,21796,21817]]],["thee",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21787]]],["thou",[10,9,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,9,8,1,9,[[853,3,2,1,3],[854,4,4,3,7],[855,2,2,7,9]]]],[12198,21855,21859,21887,21892,21896,21897,21921,21925]]]]},{"k":"H608","v":[["ye",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21766]]]]},{"k":"H609","v":[["*",[58,52,[[10,26,24,0,24,[[305,18,16,0,16],[306,5,5,16,21],[312,3,3,21,24]]],[12,2,2,24,26,[[340,1,1,24,25],[346,1,1,25,26]]],[13,29,25,26,51,[[380,7,7,26,33],[381,8,6,33,39],[382,11,9,39,48],[383,1,1,48,49],[386,1,1,49,50],[387,1,1,50,51]]],[23,1,1,51,52,[[785,1,1,51,52]]]],[9257,9258,9260,9262,9263,9265,9266,9267,9269,9271,9272,9273,9274,9277,9281,9282,9291,9293,9298,9306,9312,9521,9523,9526,10371,10631,11476,11477,11483,11485,11486,11487,11488,11492,11498,11500,11506,11507,11509,11510,11511,11513,11515,11516,11519,11520,11521,11522,11525,11619,11636,19966]]],["Asa",[57,51,[[10,25,23,0,23,[[305,17,15,0,15],[306,5,5,15,20],[312,3,3,20,23]]],[12,2,2,23,25,[[340,1,1,23,24],[346,1,1,24,25]]],[13,29,25,25,50,[[380,7,7,25,32],[381,8,6,32,38],[382,11,9,38,47],[383,1,1,47,48],[386,1,1,48,49],[387,1,1,49,50]]],[23,1,1,50,51,[[785,1,1,50,51]]]],[9257,9258,9260,9262,9265,9266,9267,9269,9271,9272,9273,9274,9277,9281,9282,9291,9293,9298,9306,9312,9521,9523,9526,10371,10631,11476,11477,11483,11485,11486,11487,11488,11492,11498,11500,11506,11507,11509,11510,11511,11513,11515,11516,11519,11520,11521,11522,11525,11619,11636,19966]]],["Asa's",[1,1,[[10,1,1,0,1,[[305,1,1,0,1]]]],[9263]]]]},{"k":"H610","v":[["pot",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9605]]]]},{"k":"H611","v":[["mischief",[5,5,[[0,3,3,0,3,[[41,2,2,0,2],[43,1,1,2,3]]],[1,2,2,3,5,[[70,2,2,3,5]]]],[1256,1290,1353,2099,2100]]]]},{"k":"H612","v":[["*",[3,3,[[6,1,1,0,1,[[225,1,1,0,1]]],[20,1,1,1,2,[[665,1,1,1,2]]],[23,1,1,2,3,[[781,1,1,2,3]]]],[6943,17455,19889]]],["+",[1,1,[[23,1,1,0,1,[[781,1,1,0,1]]]],[19889]]],["bands",[2,2,[[6,1,1,0,1,[[225,1,1,0,1]]],[20,1,1,1,2,[[665,1,1,1,2]]]],[6943,17455]]]]},{"k":"H613","v":[["*",[3,3,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,2,2,1,3,[[853,2,2,1,3]]]],[12199,21852,21860]]],["band",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21852,21860]]],["imprisonment",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12199]]]]},{"k":"H614","v":[["ingathering",[2,2,[[1,2,2,0,2,[[72,1,1,0,1],[83,1,1,1,2]]]],[2160,2518]]]]},{"k":"H615","v":[["*",[14,14,[[0,2,2,0,2,[[38,2,2,0,2]]],[6,2,2,2,4,[[226,2,2,2,4]]],[17,1,1,4,5,[[438,1,1,4,5]]],[18,5,5,5,10,[[545,1,1,5,6],[546,1,1,6,7],[556,1,1,7,8],[579,1,1,8,9],[584,1,1,9,10]]],[22,1,1,10,11,[[692,1,1,10,11]]],[24,1,1,11,12,[[799,1,1,11,12]]],[37,2,2,12,14,[[919,2,2,12,14]]]],[1169,1171,6970,6974,12922,14906,14968,15196,15541,15709,17945,20388,23010,23011]]],["+",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6974]]],["bound",[2,2,[[18,2,2,0,2,[[545,1,1,0,1],[584,1,1,1,2]]]],[14906,15709]]],["prison",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6970]]],["prisoner",[2,2,[[18,2,2,0,2,[[556,1,1,0,1],[579,1,1,1,2]]]],[15196,15541]]],["prisoners",[8,8,[[0,2,2,0,2,[[38,2,2,0,2]]],[17,1,1,2,3,[[438,1,1,2,3]]],[18,1,1,3,4,[[546,1,1,3,4]]],[22,1,1,4,5,[[692,1,1,4,5]]],[24,1,1,5,6,[[799,1,1,5,6]]],[37,2,2,6,8,[[919,2,2,6,8]]]],[1169,1171,12922,14968,17945,20388,23010,23011]]]]},{"k":"H616","v":[["prisoners",[3,3,[[22,3,3,0,3,[[688,1,1,0,1],[702,1,1,1,2],[720,1,1,2,3]]]],[17854,18117,18487]]]]},{"k":"H617","v":[["Assir",[5,5,[[1,1,1,0,1,[[55,1,1,0,1]]],[12,4,4,1,5,[[340,1,1,1,2],[343,3,3,2,5]]]],[1679,10378,10476,10477,10491]]]]},{"k":"H618","v":[["*",[2,2,[[4,1,1,0,1,[[180,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]]],[5619,16465]]],["barns",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16465]]],["storehouses",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5619]]]]},{"k":"H619","v":[["Asnah",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12077]]]]},{"k":"H620","v":[["Asnappar",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12120]]]]},{"k":"H621","v":[["Asenath",[3,3,[[0,3,3,0,3,[[40,2,2,0,2],[45,1,1,2,3]]]],[1240,1245,1406]]]]},{"k":"H622","v":[["*",[199,186,[[0,15,14,0,14,[[5,1,1,0,1],[24,2,2,1,3],[28,4,4,3,7],[29,1,1,7,8],[33,1,1,8,9],[34,1,1,9,10],[41,1,1,10,11],[48,4,3,11,14]]],[1,6,6,14,20,[[52,1,1,14,15],[53,1,1,15,16],[58,1,1,16,17],[72,2,2,17,19],[81,1,1,19,20]]],[2,4,4,20,24,[[112,1,1,20,21],[114,2,2,21,23],[115,1,1,23,24]]],[3,18,16,24,40,[[126,1,1,24,25],[127,6,5,25,30],[128,2,2,30,32],[135,2,2,32,34],[136,2,2,34,36],[137,2,2,36,38],[143,2,1,38,39],[147,1,1,39,40]]],[4,7,6,40,46,[[163,1,1,40,41],[168,1,1,41,42],[174,1,1,42,43],[180,1,1,43,44],[184,2,1,44,45],[185,1,1,45,46]]],[5,6,6,46,52,[[188,1,1,46,47],[192,2,2,47,49],[196,1,1,49,50],[206,1,1,50,51],[210,1,1,51,52]]],[6,12,12,52,64,[[212,1,1,52,53],[213,1,1,53,54],[216,1,1,54,55],[219,1,1,55,56],[220,1,1,56,57],[221,1,1,57,58],[226,1,1,58,59],[228,1,1,59,60],[229,2,2,60,62],[230,2,2,62,64]]],[7,1,1,64,65,[[233,1,1,64,65]]],[8,10,9,65,74,[[240,2,2,65,67],[248,2,2,67,69],[249,2,2,69,71],[250,1,1,71,72],[252,3,2,72,74]]],[9,13,12,74,86,[[272,1,1,74,75],[276,2,2,75,77],[277,1,1,77,78],[278,2,2,78,80],[280,1,1,80,81],[283,3,2,81,83],[287,1,1,83,84],[289,2,2,84,86]]],[10,1,1,86,87,[[300,1,1,86,87]]],[11,8,7,87,94,[[317,4,4,87,91],[334,3,2,91,93],[335,1,1,93,94]]],[12,5,5,94,99,[[348,1,1,94,95],[352,1,1,95,96],[356,2,2,96,98],[360,1,1,98,99]]],[13,13,12,99,111,[[367,1,1,99,100],[378,1,1,100,101],[390,1,1,101,102],[394,1,1,102,103],[395,3,3,103,106],[396,2,2,106,108],[400,4,3,108,111]]],[14,2,2,111,113,[[405,1,1,111,112],[411,1,1,112,113]]],[15,4,4,113,117,[[420,2,2,113,115],[421,1,1,115,116],[424,1,1,116,117]]],[17,3,3,117,120,[[462,1,1,117,118],[469,1,1,118,119],[474,1,1,119,120]]],[18,10,9,120,129,[[503,1,1,120,121],[504,1,1,121,122],[512,2,1,122,123],[516,1,1,123,124],[524,1,1,124,125],[527,1,1,125,126],[562,1,1,126,127],[581,2,2,127,129]]],[19,2,2,129,131,[[654,1,1,129,130],[657,1,1,130,131]]],[20,1,1,131,132,[[660,1,1,131,132]]],[22,17,15,132,147,[[682,1,1,132,133],[688,2,1,133,134],[689,1,1,134,135],[691,1,1,135,136],[694,1,1,136,137],[695,1,1,137,138],[702,1,1,138,139],[711,1,1,139,140],[721,1,1,140,141],[727,1,1,141,142],[730,1,1,142,143],[735,2,1,143,144],[736,1,1,144,145],[738,1,1,145,146],[740,1,1,146,147]]],[23,13,13,147,160,[[748,1,1,147,148],[752,2,2,148,150],[753,1,1,150,151],[754,1,1,151,152],[756,1,1,152,153],[760,1,1,153,154],[765,1,1,154,155],[769,1,1,155,156],[784,2,2,156,158],[791,1,1,158,159],[792,1,1,159,160]]],[25,6,6,160,166,[[812,1,1,160,161],[825,1,1,161,162],[830,1,1,162,163],[835,1,1,163,164],[839,1,1,164,165],[840,1,1,165,166]]],[26,1,1,166,167,[[860,1,1,166,167]]],[27,2,2,167,169,[[865,1,1,167,168],[871,1,1,168,169]]],[28,5,4,169,173,[[876,1,1,169,170],[877,3,2,170,172],[878,1,1,172,173]]],[29,1,1,173,174,[[881,1,1,173,174]]],[32,4,3,174,177,[[894,2,1,174,175],[896,2,2,175,177]]],[34,3,3,177,180,[[903,2,2,177,179],[904,1,1,179,180]]],[35,3,3,180,183,[[906,1,1,180,181],[908,2,2,181,183]]],[37,3,3,183,186,[[922,1,1,183,184],[924,2,2,184,186]]]],[158,666,675,798,802,803,817,853,1010,1040,1269,1474,1502,1506,1595,1630,1761,2154,2160,2464,3441,3472,3489,3549,4013,4040,4046,4048,4054,4056,4073,4074,4298,4299,4335,4337,4356,4363,4567,4666,5222,5355,5472,5649,5808,5815,5887,5958,5962,6069,6376,6477,6555,6581,6687,6760,6828,6849,6972,7018,7039,7042,7065,7068,7156,7327,7330,7490,7496,7527,7560,7566,7619,7620,8158,8255,8257,8286,8314,8315,8370,8460,8462,8593,8662,8664,9105,9650,9653,9654,9658,10149,10165,10166,10686,10795,10914,10924,10985,11208,11442,11688,11788,11795,11806,11811,11830,11840,11942,11961,11962,12098,12241,12494,12506,12512,12652,13500,13697,13846,14282,14295,14425,14518,14634,14673,15274,15593,15600,17194,17255,17359,17734,17864,17896,17910,17979,17988,18117,18283,18514,18641,18708,18766,18794,18841,18863,19032,19155,19167,19197,19218,19258,19341,19444,19567,19951,19953,20079,20113,20672,21060,21188,21342,21437,21465,22046,22136,22235,22305,22321,22327,22358,22404,22607,22626,22631,22740,22746,22753,22789,22828,22838,23048,23070,23082]]],["+",[39,38,[[0,3,3,0,3,[[28,1,1,0,1],[29,1,1,1,2],[41,1,1,2,3]]],[1,4,4,3,7,[[52,1,1,3,4],[53,1,1,4,5],[72,2,2,5,7]]],[2,3,3,7,10,[[112,1,1,7,8],[114,2,2,8,10]]],[3,5,5,10,15,[[127,1,1,10,11],[135,2,2,11,13],[137,2,2,13,15]]],[4,1,1,15,16,[[180,1,1,15,16]]],[5,1,1,16,17,[[210,1,1,16,17]]],[6,1,1,17,18,[[221,1,1,17,18]]],[8,3,3,18,21,[[240,2,2,18,20],[252,1,1,20,21]]],[9,5,5,21,26,[[272,1,1,21,22],[276,1,1,22,23],[278,2,2,23,25],[287,1,1,25,26]]],[12,3,3,26,29,[[352,1,1,26,27],[356,1,1,27,28],[360,1,1,28,29]]],[13,4,4,29,33,[[394,1,1,29,30],[395,2,2,30,32],[400,1,1,32,33]]],[18,1,1,33,34,[[527,1,1,33,34]]],[23,1,1,34,35,[[760,1,1,34,35]]],[32,2,1,35,36,[[894,2,1,35,36]]],[35,1,1,36,37,[[906,1,1,36,37]]],[37,1,1,37,38,[[924,1,1,37,38]]]],[817,853,1269,1595,1630,2154,2160,3441,3472,3489,4056,4298,4299,4356,4363,5649,6477,6849,7327,7330,7619,8158,8257,8314,8315,8593,10795,10924,10985,11788,11806,11811,11962,14673,19341,22607,22789,23070]]],["Gather",[4,4,[[3,1,1,0,1,[[127,1,1,0,1]]],[18,1,1,1,2,[[503,1,1,1,2]]],[25,1,1,2,3,[[825,1,1,2,3]]],[28,1,1,3,4,[[877,1,1,3,4]]]],[4040,14282,21060,22327]]],["Withdraw",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7527]]],["assemble",[6,6,[[22,1,1,0,1,[[689,1,1,0,1]]],[23,2,2,1,3,[[756,1,1,1,2],[765,1,1,2,3]]],[25,1,1,3,4,[[812,1,1,3,4]]],[26,1,1,4,5,[[860,1,1,4,5]]],[32,1,1,5,6,[[896,1,1,5,6]]]],[17896,19258,19444,20672,22046,22626]]],["assembled",[4,4,[[13,1,1,0,1,[[396,1,1,0,1]]],[14,1,1,1,2,[[411,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[22,1,1,3,4,[[721,1,1,3,4]]]],[11840,12241,12512,18514]]],["away",[6,5,[[18,2,2,0,2,[[562,1,1,0,1],[581,1,1,1,2]]],[22,3,2,2,4,[[694,1,1,2,3],[735,2,1,3,4]]],[27,1,1,4,5,[[865,1,1,4,5]]]],[15274,15600,17979,18766,22136]]],["bring",[2,2,[[4,1,1,0,1,[[174,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]]],[5472,5887]]],["brought",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1761]]],["consumed",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21342]]],["destroy",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7566]]],["fetched",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8286]]],["gat",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4054]]],["gather",[16,16,[[0,1,1,0,1,[[5,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[11,1,1,2,3,[[334,1,1,2,3]]],[13,1,1,3,4,[[400,1,1,3,4]]],[17,2,2,4,6,[[469,1,1,4,5],[474,1,1,5,6]]],[18,1,1,6,7,[[516,1,1,6,7]]],[20,1,1,7,8,[[660,1,1,7,8]]],[23,2,2,8,10,[[753,1,1,8,9],[784,1,1,9,10]]],[28,2,2,10,12,[[876,1,1,10,11],[877,1,1,11,12]]],[34,2,2,12,14,[[903,2,2,12,14]]],[35,2,2,14,16,[[908,2,2,14,16]]]],[158,7156,10165,11961,13697,13846,14518,17359,19197,19951,22305,22327,22740,22746,22828,22838]]],["gathered",[42,40,[[0,6,6,0,6,[[24,2,2,0,2],[28,1,1,2,3],[34,1,1,3,4],[48,2,2,4,6]]],[3,7,6,6,12,[[127,2,2,6,8],[136,2,2,8,10],[143,2,1,10,11],[147,1,1,11,12]]],[4,4,3,12,15,[[168,1,1,12,13],[184,2,1,13,14],[185,1,1,14,15]]],[6,4,4,15,19,[[212,1,1,15,16],[213,1,1,16,17],[216,1,1,17,18],[230,1,1,18,19]]],[9,1,1,19,20,[[283,1,1,19,20]]],[11,3,3,20,23,[[334,2,2,20,22],[335,1,1,22,23]]],[13,4,4,23,27,[[367,1,1,23,24],[390,1,1,24,25],[400,2,2,25,27]]],[17,1,1,27,28,[[462,1,1,27,28]]],[19,2,2,28,30,[[654,1,1,28,29],[657,1,1,29,30]]],[22,4,4,30,34,[[688,1,1,30,31],[711,1,1,31,32],[727,1,1,32,33],[740,1,1,33,34]]],[23,3,3,34,37,[[752,1,1,34,35],[769,1,1,35,36],[784,1,1,36,37]]],[25,1,1,37,38,[[839,1,1,37,38]]],[27,1,1,38,39,[[871,1,1,38,39]]],[32,1,1,39,40,[[896,1,1,39,40]]]],[666,675,798,1040,1502,1506,4048,4056,4335,4337,4567,4666,5355,5808,5815,6555,6581,6687,7065,8460,10149,10165,10166,11208,11688,11942,11961,13500,17194,17255,17864,18283,18641,18863,19155,19567,19953,21437,22235,22631]]],["gathereth",[3,3,[[22,2,2,0,2,[[688,1,1,0,1],[695,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[17864,17988,22753]]],["generally",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8460]]],["gotten",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8462]]],["in",[3,3,[[3,2,2,0,2,[[128,2,2,0,2]]],[4,1,1,2,3,[[163,1,1,2,3]]]],[4073,4074,5222]]],["itself",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18841]]],["lose",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7018]]],["receiveth",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7042]]],["recover",[4,4,[[11,4,4,0,4,[[317,4,4,0,4]]]],[9650,9653,9654,9658]]],["rereward",[5,5,[[3,1,1,0,1,[[126,1,1,0,1]]],[5,2,2,1,3,[[192,2,2,1,3]]],[22,2,2,3,5,[[730,1,1,3,4],[736,1,1,4,5]]]],[4013,5958,5962,18708,18794]]],["take",[2,2,[[5,1,1,0,1,[[206,1,1,0,1]]],[22,1,1,1,2,[[682,1,1,1,2]]]],[6376,17734]]],["taken",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20113]]],["themselves",[1,1,[[9,1,1,0,1,[[276,1,1,0,1]]]],[8255]]],["thyself",[1,1,[[23,1,1,0,1,[[791,1,1,0,1]]]],[20079]]],["together",[37,36,[[0,4,4,0,4,[[28,2,2,0,2],[33,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[81,1,1,4,5]]],[2,1,1,5,6,[[115,1,1,5,6]]],[3,1,1,6,7,[[127,1,1,6,7]]],[5,1,1,7,8,[[196,1,1,7,8]]],[6,4,4,8,12,[[219,1,1,8,9],[220,1,1,9,10],[226,1,1,10,11],[230,1,1,11,12]]],[8,4,4,12,16,[[248,2,2,12,14],[252,2,2,14,16]]],[9,2,2,16,18,[[289,2,2,16,18]]],[10,1,1,18,19,[[300,1,1,18,19]]],[12,2,2,19,21,[[348,1,1,19,20],[356,1,1,20,21]]],[13,3,3,21,24,[[378,1,1,21,22],[395,1,1,22,23],[396,1,1,23,24]]],[14,1,1,24,25,[[405,1,1,24,25]]],[15,3,3,25,28,[[420,2,2,25,27],[424,1,1,27,28]]],[18,4,3,28,31,[[512,2,1,28,29],[524,1,1,29,30],[581,1,1,30,31]]],[22,2,2,31,33,[[691,1,1,31,32],[702,1,1,32,33]]],[25,1,1,33,34,[[830,1,1,33,34]]],[37,2,2,34,36,[[922,1,1,34,35],[924,1,1,35,36]]]],[802,803,1010,1474,2464,3549,4046,6069,6760,6828,6972,7068,7490,7496,7619,7620,8662,8664,9105,10686,10914,11442,11795,11830,12098,12494,12506,12652,14425,14634,15593,17910,18117,21188,23048,23082]]],["took",[2,2,[[6,1,1,0,1,[[229,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]]],[7039,7560]]],["up",[4,4,[[0,1,1,0,1,[[48,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]],[18,1,1,2,3,[[504,1,1,2,3]]],[23,1,1,3,4,[[754,1,1,3,4]]]],[1506,8370,14295,19218]]],["withdraw",[2,2,[[28,2,2,0,2,[[877,1,1,0,1],[878,1,1,1,2]]]],[22321,22358]]],["yourselves",[4,4,[[23,2,2,0,2,[[748,1,1,0,1],[752,1,1,1,2]]],[25,1,1,2,3,[[840,1,1,2,3]]],[29,1,1,3,4,[[881,1,1,3,4]]]],[19032,19167,21465,22404]]]]},{"k":"H623","v":[["*",[34,29,[[11,2,2,0,2,[[330,2,2,0,2]]],[12,16,12,2,14,[[343,2,1,2,3],[346,1,1,3,4],[352,2,2,4,6],[353,4,3,6,9],[362,6,4,9,13],[363,1,1,13,14]]],[13,6,5,14,19,[[371,1,1,14,15],[386,1,1,15,16],[395,2,2,16,18],[401,2,1,18,19]]],[14,2,2,19,21,[[404,1,1,19,20],[405,1,1,20,21]]],[15,6,6,21,27,[[414,1,1,21,22],[419,1,1,22,23],[423,2,2,23,25],[424,2,2,25,27]]],[22,2,2,27,29,[[714,2,2,27,29]]]],[10042,10061,10493,10630,10808,10810,10825,10827,10857,11047,11048,11052,11055,11078,11280,11601,11804,11821,11981,12068,12107,12315,12464,12605,12610,12659,12670,18333,18352]]],["Asaph",[33,28,[[11,2,2,0,2,[[330,2,2,0,2]]],[12,16,12,2,14,[[343,2,1,2,3],[346,1,1,3,4],[352,2,2,4,6],[353,4,3,6,9],[362,6,4,9,13],[363,1,1,13,14]]],[13,6,5,14,19,[[371,1,1,14,15],[386,1,1,15,16],[395,2,2,16,18],[401,2,1,18,19]]],[14,2,2,19,21,[[404,1,1,19,20],[405,1,1,20,21]]],[15,6,6,21,27,[[414,1,1,21,22],[419,1,1,22,23],[423,2,2,23,25],[424,2,2,25,27]]],[22,1,1,27,28,[[714,1,1,27,28]]]],[10042,10061,10493,10630,10808,10810,10825,10827,10857,11047,11048,11052,11055,11078,11280,11601,11804,11821,11981,12068,12107,12315,12464,12605,12610,12659,12670,18352]]],["Asaph's",[1,1,[[22,1,1,0,1,[[714,1,1,0,1]]]],[18333]]]]},{"k":"H624","v":[["*",[3,3,[[12,2,2,0,2,[[363,2,2,0,2]]],[15,1,1,2,3,[[424,1,1,2,3]]]],[11092,11094,12649]]],["Asuppim",[2,2,[[12,2,2,0,2,[[363,2,2,0,2]]]],[11092,11094]]],["thresholds",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12649]]]]},{"k":"H625","v":[["*",[3,3,[[22,2,2,0,2,[[710,1,1,0,1],[711,1,1,1,2]]],[32,1,1,2,3,[[899,1,1,2,3]]]],[18269,18283,22665]]],["gathered",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22665]]],["gathering",[2,2,[[22,2,2,0,2,[[710,1,1,0,1],[711,1,1,1,2]]]],[18269,18283]]]]},{"k":"H626","v":[["gathered",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18117]]]]},{"k":"H627","v":[["assemblies",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17534]]]]},{"k":"H628","v":[["multitude",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4028]]]]},{"k":"H629","v":[["*",[7,7,[[14,7,7,0,7,[[407,1,1,0,1],[408,3,3,1,4],[409,3,3,4,7]]]],[12142,12159,12163,12164,12190,12194,12199]]],["forthwith",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12159]]],["on",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12142]]],["speed",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12163]]],["speedily",[4,4,[[14,4,4,0,4,[[408,1,1,0,1],[409,3,3,1,4]]]],[12164,12190,12194,12199]]]]},{"k":"H630","v":[["Aspatha",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12841]]]]},{"k":"H631","v":[["*",[70,63,[[0,8,8,0,8,[[38,1,1,0,1],[39,2,2,1,3],[41,3,3,3,6],[45,1,1,6,7],[48,1,1,7,8]]],[1,1,1,8,9,[[63,1,1,8,9]]],[3,11,10,9,19,[[146,11,10,9,19]]],[6,15,12,19,31,[[225,5,3,19,22],[226,10,9,22,31]]],[8,2,2,31,33,[[241,2,2,31,33]]],[9,1,1,33,34,[[269,1,1,33,34]]],[10,2,2,34,36,[[308,1,1,34,35],[310,1,1,35,36]]],[11,7,5,36,41,[[319,2,1,36,37],[321,2,1,37,38],[329,1,1,38,39],[335,1,1,39,40],[337,1,1,40,41]]],[13,3,3,41,44,[[379,1,1,41,42],[399,1,1,42,43],[402,1,1,43,44]]],[15,1,1,44,45,[[416,1,1,44,45]]],[17,3,3,45,48,[[447,1,1,45,46],[471,2,2,46,48]]],[18,4,4,48,52,[[582,1,1,48,49],[595,1,1,49,50],[623,1,1,50,51],[626,1,1,51,52]]],[20,1,1,52,53,[[662,1,1,52,53]]],[21,1,1,53,54,[[677,1,1,53,54]]],[22,4,3,54,57,[[700,2,1,54,55],[727,1,1,55,56],[739,1,1,56,57]]],[23,4,4,57,61,[[783,1,1,57,58],[784,1,1,58,59],[790,1,1,59,60],[796,1,1,60,61]]],[25,1,1,61,62,[[804,1,1,61,62]]],[27,1,1,62,63,[[871,1,1,62,63]]]],[1169,1175,1177,1268,1271,1276,1415,1484,1895,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,6939,6941,6942,6954,6955,6956,6957,6959,6960,6961,6962,6970,7338,7341,8115,9385,9422,9717,9777,9987,10198,10229,11456,11919,11999,12377,13146,13744,13749,15628,15896,16348,16393,17395,17632,18055,18645,18844,19930,19942,20049,20287,20527,22235]]],["+",[19,16,[[1,1,1,0,1,[[63,1,1,0,1]]],[3,10,9,1,10,[[146,10,9,1,10]]],[6,5,3,10,13,[[225,3,2,10,12],[226,2,1,12,13]]],[8,1,1,13,14,[[241,1,1,13,14]]],[13,1,1,14,15,[[379,1,1,14,15]]],[20,1,1,15,16,[[662,1,1,15,16]]]],[1895,4650,4652,4653,4654,4655,4656,4657,4658,4659,6939,6942,6960,7338,11456,17395]]],["Binding",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1484]]],["Harness",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20049]]],["Prepare",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9385]]],["bands",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10198]]],["bind",[9,9,[[3,1,1,0,1,[[146,1,1,0,1]]],[6,3,3,1,4,[[225,1,1,1,2],[226,2,2,2,4]]],[18,3,3,4,7,[[582,1,1,4,5],[595,1,1,5,6],[626,1,1,6,7]]],[25,1,1,7,8,[[804,1,1,7,8]]],[27,1,1,8,9,[[871,1,1,8,9]]]],[4651,6941,6954,6956,15628,15896,16393,20527,22235]]],["bindeth",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13749]]],["bound",[24,23,[[0,5,5,0,5,[[38,1,1,0,1],[39,2,2,1,3],[41,2,2,3,5]]],[6,7,7,5,12,[[225,1,1,5,6],[226,6,6,6,12]]],[9,1,1,12,13,[[269,1,1,12,13]]],[11,2,2,13,15,[[329,1,1,13,14],[337,1,1,14,15]]],[13,2,2,15,17,[[399,1,1,15,16],[402,1,1,16,17]]],[17,1,1,17,18,[[471,1,1,17,18]]],[22,3,2,18,20,[[700,2,1,18,19],[739,1,1,19,20]]],[23,3,3,20,23,[[783,1,1,20,21],[784,1,1,21,22],[796,1,1,22,23]]]],[1169,1175,1177,1271,1276,6942,6955,6957,6959,6961,6962,6970,8115,9987,10229,11919,11999,13744,18055,18844,19930,19942,20287]]],["girded",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12377]]],["girdeth",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13146]]],["held",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17632]]],["order",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9422]]],["prison",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1268]]],["prisoners",[2,2,[[18,1,1,0,1,[[623,1,1,0,1]]],[22,1,1,1,2,[[727,1,1,1,2]]]],[16348,18645]]],["ready",[3,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[11,2,1,1,2,[[321,2,1,1,2]]]],[1415,9777]]],["tied",[3,2,[[8,1,1,0,1,[[241,1,1,0,1]]],[11,2,1,1,2,[[319,2,1,1,2]]]],[7341,9717]]]]},{"k":"H632","v":[["*",[11,10,[[3,11,10,0,10,[[146,11,10,0,10]]]],[4650,4651,4652,4653,4655,4658,4659,4660,4661,4662]]],["binding",[1,1,[[3,1,1,0,1,[[146,1,1,0,1]]]],[4661]]],["bond",[7,6,[[3,7,6,0,6,[[146,7,6,0,6]]]],[4650,4651,4652,4658,4659,4660]]],["bonds",[3,3,[[3,3,3,0,3,[[146,3,3,0,3]]]],[4653,4655,4662]]]]},{"k":"H633","v":[["decree",[7,6,[[26,7,6,0,6,[[855,7,6,0,6]]]],[21912,21913,21914,21917,21918,21920]]]]},{"k":"H634","v":[["Esarhaddon",[3,3,[[11,1,1,0,1,[[331,1,1,0,1]]],[14,1,1,1,2,[[406,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]]],[10098,12112,18390]]]]},{"k":"H635","v":[["*",[55,45,[[16,55,45,0,45,[[427,13,10,0,10],[429,9,9,10,19],[430,11,8,19,27],[431,1,1,27,28],[432,8,7,28,35],[433,8,5,35,40],[434,5,5,40,45]]]],[12731,12732,12734,12735,12739,12740,12741,12742,12744,12746,12766,12767,12770,12771,12772,12774,12775,12777,12779,12780,12781,12782,12783,12784,12785,12786,12791,12807,12808,12809,12810,12812,12813,12814,12815,12818,12819,12820,12821,12824,12846,12847,12863,12865,12866]]],["+",[3,3,[[16,3,3,0,3,[[429,1,1,0,1],[430,1,1,1,2],[432,1,1,2,3]]]],[12771,12781,12814]]],["Esther",[49,40,[[16,49,40,0,40,[[427,12,9,0,9],[429,6,6,9,15],[430,10,8,15,23],[431,1,1,23,24],[432,7,6,24,30],[433,8,5,30,35],[434,5,5,35,40]]]],[12731,12732,12734,12735,12739,12740,12741,12744,12746,12767,12770,12772,12775,12777,12779,12780,12781,12782,12783,12784,12785,12786,12791,12807,12808,12809,12810,12812,12813,12815,12818,12819,12820,12821,12824,12846,12847,12863,12865,12866]]],["Esther's",[3,3,[[16,3,3,0,3,[[427,1,1,0,1],[429,2,2,1,3]]]],[12742,12766,12774]]]]},{"k":"H636","v":[["*",[5,5,[[14,3,3,0,3,[[407,1,1,0,1],[408,2,2,1,3]]],[26,2,2,3,5,[[854,2,2,3,5]]]],[12142,12155,12162,21878,21897]]],["timber",[3,3,[[14,3,3,0,3,[[407,1,1,0,1],[408,2,2,1,3]]]],[12142,12155,12162]]],["wood",[2,2,[[26,2,2,0,2,[[854,2,2,0,2]]]],[21878,21897]]]]},{"k":"H637","v":[["*",[134,123,[[0,5,5,0,5,[[2,1,1,0,1],[17,3,3,1,4],[39,1,1,4,5]]],[2,9,8,5,13,[[115,9,8,5,13]]],[3,1,1,13,14,[[132,1,1,13,14]]],[4,7,7,14,21,[[154,2,2,14,16],[167,1,1,16,17],[183,1,1,17,18],[185,3,3,18,21]]],[6,1,1,21,22,[[215,1,1,21,22]]],[8,4,4,22,26,[[237,1,1,22,23],[249,1,1,23,24],[256,1,1,24,25],[258,1,1,25,26]]],[9,3,3,26,29,[[270,1,1,26,27],[282,1,1,27,28],[286,1,1,28,29]]],[10,1,1,29,30,[[298,1,1,29,30]]],[11,2,2,30,32,[[314,1,1,30,31],[317,1,1,31,32]]],[12,3,3,32,35,[[345,1,1,32,33],[346,1,1,33,34],[353,1,1,34,35]]],[13,3,3,35,38,[[372,1,1,35,36],[378,1,1,36,37],[398,1,1,37,38]]],[15,3,3,38,41,[[414,1,1,38,39],[421,1,1,39,40],[425,1,1,40,41]]],[16,1,1,41,42,[[430,1,1,41,42]]],[17,20,19,42,61,[[439,1,1,42,43],[441,1,1,43,44],[444,1,1,44,45],[449,1,1,45,46],[450,2,2,46,48],[454,1,1,48,49],[460,1,1,49,50],[467,3,2,50,52],[469,2,2,52,54],[470,1,1,54,55],[471,3,3,55,58],[472,2,2,58,60],[475,1,1,60,61]]],[18,23,23,61,84,[[493,3,3,61,64],[495,1,1,64,65],[521,1,1,65,66],[535,1,1,66,67],[542,1,1,67,68],[545,3,3,68,71],[551,1,1,71,72],[554,2,2,72,74],[566,5,5,74,79],[570,1,1,79,80],[573,1,1,80,81],[585,1,1,81,82],[596,1,1,82,83],[612,1,1,83,84]]],[19,9,9,84,93,[[636,1,1,84,85],[638,1,1,85,86],[642,1,1,86,87],[644,1,1,87,88],[646,2,2,88,90],[648,1,1,90,91],[649,1,1,91,92],[650,1,1,92,93]]],[20,1,1,93,94,[[660,1,1,93,94]]],[21,2,1,94,95,[[671,2,1,94,95]]],[22,30,22,95,117,[[704,3,3,95,98],[711,1,1,98,99],[713,1,1,99,100],[718,3,1,100,101],[719,6,3,101,104],[720,1,1,104,105],[721,2,2,105,107],[722,4,3,107,110],[723,1,1,110,111],[724,5,3,111,114],[726,3,3,114,117]]],[25,3,3,117,120,[[815,1,1,117,118],[816,1,1,118,119],[824,1,1,119,120]]],[29,1,1,120,121,[[880,1,1,120,121]]],[34,2,2,121,123,[[904,2,2,121,123]]]],[56,437,447,448,1188,3540,3548,3552,3563,3564,3565,3566,3568,4208,4949,4958,5336,5755,5813,5830,5838,6652,7247,7538,7777,7813,8131,8437,8568,9012,9565,9660,10607,10653,10850,11300,11442,11890,12325,12529,12686,12791,12949,13005,13065,13184,13207,13219,13301,13467,13638,13645,13695,13700,13734,13752,13765,13769,13770,13780,13872,14098,14099,14101,14166,14580,14781,14873,14908,14916,14918,15064,15109,15110,15331,15337,15347,15353,15369,15427,15475,15743,15901,16192,16640,16719,16818,16880,16932,16935,17011,17034,17072,17342,17553,18138,18139,18141,18281,18322,18444,18461,18474,18477,18493,18512,18524,18548,18549,18552,18582,18592,18593,18597,18626,18627,18629,20752,20759,21047,22390,22753,22763]]],["+",[19,18,[[0,2,2,0,2,[[2,1,1,0,1],[17,1,1,1,2]]],[2,2,1,2,3,[[115,2,1,2,3]]],[8,1,1,3,4,[[249,1,1,3,4]]],[9,1,1,4,5,[[282,1,1,4,5]]],[10,1,1,5,6,[[298,1,1,5,6]]],[13,1,1,6,7,[[398,1,1,6,7]]],[17,5,5,7,12,[[444,1,1,7,8],[450,1,1,8,9],[460,1,1,9,10],[470,1,1,10,11],[471,1,1,11,12]]],[18,1,1,12,13,[[612,1,1,12,13]]],[19,5,5,13,18,[[638,1,1,13,14],[642,1,1,14,15],[644,1,1,15,16],[646,1,1,16,17],[648,1,1,17,18]]]],[56,437,3566,7538,8437,9012,11890,13065,13219,13467,13734,13765,16192,16719,16818,16880,16932,17011]]],["Also",[2,2,[[17,1,1,0,1,[[472,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]]],[13780,15353]]],["And",[2,2,[[17,2,2,0,2,[[449,1,1,0,1],[454,1,1,1,2]]]],[13184,13301]]],["But",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14580]]],["Moreover",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4208]]],["Yea",[9,9,[[4,1,1,0,1,[[185,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[17,3,3,2,5,[[441,1,1,2,3],[450,1,1,3,4],[469,1,1,4,5]]],[18,1,1,5,6,[[535,1,1,5,6]]],[22,2,2,6,8,[[704,1,1,6,7],[718,1,1,7,8]]],[34,1,1,8,9,[[904,1,1,8,9]]]],[5813,12529,13005,13207,13695,14781,18138,18444,22753]]],["also",[51,49,[[0,3,3,0,3,[[17,2,2,0,2],[39,1,1,2,3]]],[2,5,5,3,8,[[115,5,5,3,8]]],[4,4,4,8,12,[[154,2,2,8,10],[167,1,1,10,11],[185,1,1,11,12]]],[9,1,1,12,13,[[286,1,1,12,13]]],[11,1,1,13,14,[[314,1,1,13,14]]],[12,3,3,14,17,[[345,1,1,14,15],[346,1,1,15,16],[353,1,1,16,17]]],[13,1,1,17,18,[[378,1,1,17,18]]],[15,2,2,18,20,[[414,1,1,18,19],[425,1,1,19,20]]],[17,6,5,20,25,[[467,3,2,20,22],[471,1,1,22,23],[472,1,1,23,24],[475,1,1,24,25]]],[18,15,15,25,40,[[493,2,2,25,27],[542,1,1,27,28],[545,2,2,28,30],[551,1,1,30,31],[554,2,2,31,33],[566,4,4,33,37],[570,1,1,37,38],[573,1,1,38,39],[596,1,1,39,40]]],[19,2,2,40,42,[[636,1,1,40,41],[650,1,1,41,42]]],[20,1,1,42,43,[[660,1,1,42,43]]],[21,1,1,43,44,[[671,1,1,43,44]]],[22,5,4,44,48,[[711,1,1,44,45],[724,2,1,45,46],[726,2,2,46,48]]],[34,1,1,48,49,[[904,1,1,48,49]]]],[447,448,1188,3540,3548,3563,3564,3565,4949,4958,5336,5838,8568,9565,10607,10653,10850,11442,12325,12686,13638,13645,13769,13770,13872,14099,14101,14873,14908,14918,15064,15109,15110,15331,15337,15347,15369,15427,15475,15901,16640,17072,17342,17553,18281,18597,18626,18627,22763]]],["and",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7247]]],["even",[7,7,[[2,1,1,0,1,[[115,1,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[18,1,1,2,3,[[585,1,1,2,3]]],[19,1,1,3,4,[[649,1,1,3,4]]],[22,2,2,4,6,[[713,1,1,4,5],[721,1,1,5,6]]],[29,1,1,6,7,[[880,1,1,6,7]]]],[3552,13700,15743,17034,18322,18524,22390]]],["furthermore",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21047]]],["less",[4,4,[[13,1,1,0,1,[[372,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]],[19,1,1,2,3,[[646,1,1,2,3]]],[25,1,1,3,4,[[816,1,1,3,4]]]],[11300,12949,16935,20759]]],["more",[3,3,[[4,1,1,0,1,[[183,1,1,0,1]]],[9,1,1,1,2,[[270,1,1,1,2]]],[25,1,1,2,3,[[815,1,1,2,3]]]],[5755,8131,20752]]],["moreover",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12791]]],["much",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7813]]],["rather",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9660]]],["so",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13752]]],["with",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5830]]],["yea",[27,22,[[6,1,1,0,1,[[215,1,1,0,1]]],[8,1,1,1,2,[[256,1,1,1,2]]],[18,3,3,2,5,[[493,1,1,2,3],[495,1,1,3,4],[545,1,1,4,5]]],[21,1,1,5,6,[[671,1,1,5,6]]],[22,21,16,6,22,[[704,2,2,6,8],[718,2,1,8,9],[719,6,3,9,12],[720,1,1,12,13],[721,1,1,13,14],[722,4,3,14,17],[723,1,1,17,18],[724,3,3,18,21],[726,1,1,21,22]]]],[6652,7777,14098,14166,14916,17553,18139,18141,18444,18461,18474,18477,18493,18512,18548,18549,18552,18582,18592,18593,18597,18629]]],["yet",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3568]]]]},{"k":"H638","v":[["also",[4,4,[[14,3,3,0,3,[[407,2,2,0,2],[408,1,1,2,3]]],[26,1,1,3,4,[[855,1,1,3,4]]]],[12144,12148,12156,21927]]]]},{"k":"H639","v":[["*",[276,269,[[0,13,13,0,13,[[1,1,1,0,1],[2,1,1,1,2],[6,1,1,2,3],[18,1,1,3,4],[23,1,1,4,5],[26,1,1,5,6],[29,1,1,6,7],[38,1,1,7,8],[41,1,1,8,9],[43,1,1,9,10],[47,1,1,10,11],[48,2,2,11,13]]],[1,10,10,13,23,[[53,1,1,13,14],[60,1,1,14,15],[64,1,1,15,16],[71,1,1,16,17],[81,5,5,17,22],[83,1,1,22,23]]],[3,15,15,23,38,[[127,4,4,23,27],[128,1,1,27,28],[130,1,1,28,29],[138,3,3,29,32],[140,1,1,32,33],[141,2,2,33,35],[148,3,3,35,38]]],[4,13,13,38,51,[[158,1,1,38,39],[159,1,1,39,40],[161,1,1,40,41],[163,1,1,41,42],[165,1,1,42,43],[181,5,5,43,48],[183,1,1,48,49],[184,1,1,49,50],[185,1,1,50,51]]],[5,3,3,51,54,[[193,2,2,51,53],[209,1,1,53,54]]],[6,7,7,54,61,[[212,2,2,54,56],[213,1,1,56,57],[216,1,1,57,58],[219,1,1,58,59],[220,1,1,59,60],[224,1,1,60,61]]],[8,11,11,61,72,[[236,1,1,61,62],[246,1,1,62,63],[252,1,1,63,64],[255,3,3,64,67],[259,1,1,67,68],[260,2,2,68,70],[263,2,2,70,72]]],[9,9,9,72,81,[[272,1,1,72,73],[278,1,1,73,74],[280,2,2,74,76],[284,1,1,76,77],[288,2,2,77,79],[290,2,2,79,81]]],[10,2,2,81,83,[[291,2,2,81,83]]],[11,5,4,83,87,[[325,1,1,83,84],[331,1,1,84,85],[335,2,1,85,86],[336,1,1,86,87]]],[12,2,2,87,89,[[350,1,1,87,88],[358,1,1,88,89]]],[13,10,9,89,98,[[373,1,1,89,90],[378,1,1,90,91],[386,1,1,91,92],[391,3,2,92,94],[394,2,2,94,96],[395,1,1,96,97],[396,1,1,97,98]]],[14,2,2,98,100,[[410,1,1,98,99],[412,1,1,99,100]]],[15,2,2,100,102,[[420,1,1,100,101],[421,1,1,101,102]]],[17,21,20,102,122,[[439,1,1,102,103],[444,2,2,103,105],[449,1,1,105,106],[451,1,1,106,107],[453,1,1,107,108],[454,1,1,108,109],[455,2,2,109,111],[456,1,1,111,112],[462,1,1,112,113],[467,4,3,113,116],[470,1,1,116,117],[471,1,1,117,118],[475,2,2,118,120],[476,1,1,120,121],[477,1,1,121,122]]],[18,35,35,122,157,[[479,2,2,122,124],[483,1,1,124,125],[484,1,1,125,126],[487,1,1,126,127],[495,2,2,127,129],[498,1,1,129,130],[504,1,1,130,131],[507,1,1,131,132],[514,1,1,132,133],[532,1,1,133,134],[533,1,1,134,135],[546,1,1,135,136],[551,1,1,136,137],[553,1,1,137,138],[554,1,1,138,139],[555,5,5,139,144],[562,2,2,144,146],[563,1,1,146,147],[567,2,2,147,149],[572,1,1,149,150],[580,1,1,150,151],[583,1,1,151,152],[587,1,1,152,153],[592,1,1,153,154],[601,1,1,154,155],[615,1,1,155,156],[622,1,1,156,157]]],[19,16,15,157,172,[[638,1,1,157,158],[641,2,2,158,160],[642,2,2,160,162],[643,1,1,162,163],[646,1,1,163,164],[648,1,1,164,165],[649,1,1,165,166],[651,1,1,166,167],[652,1,1,167,168],[654,1,1,168,169],[656,2,2,169,171],[657,2,1,171,172]]],[21,2,2,172,174,[[677,2,2,172,174]]],[22,26,25,174,199,[[680,1,1,174,175],[681,1,1,175,176],[683,2,1,176,177],[685,1,1,177,178],[687,3,3,178,181],[688,3,3,181,184],[690,1,1,184,185],[691,3,3,185,188],[692,1,1,188,189],[708,2,2,189,191],[715,1,1,191,192],[720,1,1,192,193],[726,1,1,193,194],[727,1,1,194,195],[741,2,2,195,197],[743,1,1,197,198],[744,1,1,198,199]]],[23,24,24,199,223,[[746,1,1,199,200],[748,2,2,200,202],[751,1,1,202,203],[754,1,1,203,204],[756,1,1,204,205],[759,2,2,205,207],[761,1,1,207,208],[762,1,1,208,209],[765,1,1,209,210],[767,1,1,210,211],[769,2,2,211,213],[774,1,1,213,214],[776,2,2,214,216],[777,1,1,216,217],[780,1,1,217,218],[786,1,1,218,219],[788,1,1,219,220],[793,1,1,220,221],[795,1,1,221,222],[796,1,1,222,223]]],[24,11,10,223,233,[[797,1,1,223,224],[798,6,5,224,229],[799,2,2,229,231],[800,2,2,231,233]]],[25,15,15,233,248,[[806,2,2,233,235],[808,2,2,235,237],[809,1,1,237,238],[814,1,1,238,239],[817,1,1,239,240],[821,2,2,240,242],[823,1,1,242,243],[824,1,1,243,244],[826,1,1,244,245],[836,1,1,245,246],[839,1,1,246,247],[844,1,1,247,248]]],[26,2,2,248,250,[[858,1,1,248,249],[860,1,1,249,250]]],[27,4,4,250,254,[[869,1,1,250,251],[872,1,1,251,252],[874,1,1,252,253],[875,1,1,253,254]]],[28,1,1,254,255,[[877,1,1,254,255]]],[29,2,2,255,257,[[879,1,1,255,256],[882,1,1,256,257]]],[31,2,2,257,259,[[891,1,1,257,258],[892,1,1,258,259]]],[32,2,2,259,261,[[897,1,1,259,260],[899,1,1,260,261]]],[33,2,2,261,263,[[900,2,2,261,263]]],[34,2,2,263,265,[[905,2,2,263,265]]],[35,4,3,265,268,[[907,3,2,265,267],[908,1,1,267,268]]],[37,1,1,268,269,[[920,1,1,268,269]]]],[37,74,181,458,638,772,832,1168,1258,1342,1463,1479,1480,1615,1814,1928,2137,2448,2449,2450,2457,2460,2502,4025,4034,4044,4057,4068,4126,4397,4402,4406,4456,4474,4475,4728,4731,4732,5101,5115,5176,5225,5289,5699,5702,5703,5706,5707,5745,5780,5820,5977,6002,6476,6559,6565,6576,6693,6784,6818,6928,7217,7451,7646,7760,7764,7771,7847,7884,7902,7956,7960,8164,8291,8360,8389,8506,8611,8618,8693,8712,8740,8748,9874,10089,10191,10222,10770,10955,11327,11449,11605,11714,11719,11775,11777,11801,11835,12223,12266,12499,12528,12939,13056,13064,13194,13247,13280,13308,13349,13354,13372,13484,13630,13631,13633,13735,13749,13875,13888,13890,13929,13950,13957,13986,14001,14045,14126,14133,14200,14294,14324,14458,14735,14762,14959,15049,15088,15102,15134,15144,15151,15162,15163,15274,15276,15299,15385,15389,15465,15557,15691,15791,15836,16105,16238,16328,16710,16789,16801,16808,16825,16872,16936,16998,17039,17097,17128,17173,17232,17246,17284,17631,17635,17707,17728,17764,17786,17841,17846,17850,17854,17855,17875,17901,17909,17915,17919,17934,18244,18247,18381,18505,18623,18659,18869,18872,18902,18937,19000,19035,19053,19139,19225,19262,19329,19330,19361,19407,19445,19504,19571,19572,19691,19762,19768,19780,19849,19993,20016,20164,20257,20279,20322,20333,20335,20338,20353,20354,20397,20420,20431,20440,20559,20561,20580,20585,20621,20721,20774,20903,20916,20996,21032,21097,21355,21443,21580,22004,22056,22199,22249,22277,22286,22324,22375,22420,22567,22570,22648,22682,22687,22690,22776,22780,22807,22808,22828,23019]]],["+",[8,8,[[1,2,2,0,2,[[81,1,1,0,1],[83,1,1,1,2]]],[3,2,2,2,4,[[127,1,1,2,3],[130,1,1,3,4]]],[18,3,3,4,7,[[514,1,1,4,5],[555,1,1,5,6],[563,1,1,6,7]]],[23,1,1,7,8,[[759,1,1,7,8]]]],[2450,2502,4044,4126,14458,15151,15299,19330]]],["anger",[170,166,[[0,5,5,0,5,[[26,1,1,0,1],[29,1,1,1,2],[43,1,1,2,3],[48,2,2,3,5]]],[1,4,4,5,9,[[53,1,1,5,6],[60,1,1,6,7],[81,2,2,7,9]]],[3,11,11,9,20,[[127,2,2,9,11],[128,1,1,11,12],[138,2,2,12,14],[140,1,1,14,15],[141,2,2,15,17],[148,3,3,17,20]]],[4,11,11,20,31,[[158,1,1,20,21],[159,1,1,21,22],[161,1,1,22,23],[165,1,1,23,24],[181,5,5,24,29],[183,1,1,29,30],[184,1,1,30,31]]],[5,3,3,31,34,[[193,2,2,31,33],[209,1,1,33,34]]],[6,7,7,34,41,[[212,2,2,34,36],[213,1,1,36,37],[216,1,1,37,38],[219,1,1,38,39],[220,1,1,39,40],[224,1,1,40,41]]],[8,4,4,41,45,[[246,1,1,41,42],[252,1,1,42,43],[255,2,2,43,45]]],[9,3,3,45,48,[[272,1,1,45,46],[278,1,1,46,47],[290,1,1,47,48]]],[11,3,3,48,51,[[325,1,1,48,49],[335,1,1,49,50],[336,1,1,50,51]]],[12,1,1,51,52,[[350,1,1,51,52]]],[13,3,2,52,54,[[391,3,2,52,54]]],[15,1,1,54,55,[[421,1,1,54,55]]],[17,5,5,55,60,[[444,2,2,55,57],[453,1,1,57,58],[456,1,1,58,59],[470,1,1,59,60]]],[18,17,17,60,77,[[483,1,1,60,61],[484,1,1,61,62],[504,1,1,62,63],[507,1,1,63,64],[533,1,1,64,65],[546,1,1,65,66],[551,1,1,66,67],[554,1,1,67,68],[555,3,3,68,71],[562,2,2,71,73],[567,2,2,73,75],[580,1,1,75,76],[622,1,1,76,77]]],[19,6,6,77,83,[[642,2,2,77,79],[643,1,1,79,80],[646,1,1,80,81],[648,1,1,81,82],[654,1,1,82,83]]],[22,21,20,83,103,[[683,2,1,83,84],[685,1,1,84,85],[687,3,3,85,88],[688,3,3,88,91],[690,1,1,91,92],[691,3,3,92,95],[692,1,1,95,96],[708,2,2,96,98],[720,1,1,98,99],[726,1,1,99,100],[741,2,2,100,102],[744,1,1,102,103]]],[23,23,23,103,126,[[746,1,1,103,104],[748,2,2,104,106],[751,1,1,106,107],[754,1,1,107,108],[756,1,1,108,109],[759,1,1,109,110],[761,1,1,110,111],[762,1,1,111,112],[765,1,1,112,113],[767,1,1,113,114],[769,2,2,114,116],[774,1,1,116,117],[776,2,2,117,119],[777,1,1,119,120],[780,1,1,120,121],[786,1,1,121,122],[788,1,1,122,123],[793,1,1,123,124],[795,1,1,124,125],[796,1,1,125,126]]],[24,10,9,126,135,[[797,1,1,126,127],[798,6,5,127,132],[799,2,2,132,134],[800,1,1,134,135]]],[25,11,11,135,146,[[806,2,2,135,137],[808,2,2,137,139],[814,1,1,139,140],[821,2,2,140,142],[823,1,1,142,143],[826,1,1,143,144],[836,1,1,144,145],[844,1,1,145,146]]],[26,2,2,146,148,[[858,1,1,146,147],[860,1,1,147,148]]],[27,4,4,148,152,[[869,1,1,148,149],[872,1,1,149,150],[874,1,1,150,151],[875,1,1,151,152]]],[28,1,1,152,153,[[877,1,1,152,153]]],[29,1,1,153,154,[[879,1,1,153,154]]],[31,2,2,154,156,[[891,1,1,154,155],[892,1,1,155,156]]],[32,2,2,156,158,[[897,1,1,156,157],[899,1,1,157,158]]],[33,2,2,158,160,[[900,2,2,158,160]]],[34,2,2,160,162,[[905,2,2,160,162]]],[35,4,3,162,165,[[907,3,2,162,164],[908,1,1,164,165]]],[37,1,1,165,166,[[920,1,1,165,166]]]],[772,832,1342,1479,1480,1615,1814,2457,2460,4025,4034,4068,4397,4402,4456,4474,4475,4728,4731,4732,5101,5115,5176,5289,5699,5702,5703,5706,5707,5745,5780,5977,6002,6476,6559,6565,6576,6693,6784,6818,6928,7451,7646,7760,7764,8164,8291,8693,9874,10191,10222,10770,11714,11719,12528,13056,13064,13280,13372,13735,13986,14001,14294,14324,14762,14959,15049,15102,15134,15162,15163,15274,15276,15385,15389,15557,16328,16808,16825,16872,16936,16998,17173,17764,17786,17841,17846,17850,17854,17855,17875,17901,17909,17915,17919,17934,18244,18247,18505,18623,18869,18872,18937,19000,19035,19053,19139,19225,19262,19329,19361,19407,19445,19504,19571,19572,19691,19762,19768,19780,19849,19993,20016,20164,20257,20279,20322,20333,20335,20338,20353,20354,20397,20420,20431,20559,20561,20580,20585,20721,20903,20916,20996,21097,21355,21580,22004,22056,22199,22249,22277,22286,22324,22375,22567,22570,22648,22682,22687,22690,22776,22780,22807,22808,22828,23019]]],["angry",[4,4,[[18,1,1,0,1,[[553,1,1,0,1]]],[19,3,3,1,4,[[641,1,1,1,2],[649,1,1,2,3],[656,1,1,3,4]]]],[15088,16789,17039,17246]]],["before",[2,2,[[4,1,1,0,1,[[185,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]]],[5820,7884]]],["countenance",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14045]]],["face",[19,19,[[0,4,4,0,4,[[2,1,1,0,1],[18,1,1,1,2],[23,1,1,2,3],[47,1,1,3,4]]],[3,1,1,4,5,[[138,1,1,4,5]]],[8,4,4,5,9,[[255,1,1,5,6],[259,1,1,6,7],[260,1,1,7,8],[263,1,1,8,9]]],[9,4,4,9,13,[[280,2,2,9,11],[284,1,1,11,12],[290,1,1,12,13]]],[10,2,2,13,15,[[291,2,2,13,15]]],[12,1,1,15,16,[[358,1,1,15,16]]],[13,1,1,16,17,[[386,1,1,16,17]]],[22,1,1,17,18,[[727,1,1,17,18]]],[25,1,1,18,19,[[839,1,1,18,19]]]],[74,458,638,1463,4406,7771,7847,7902,7956,8360,8389,8506,8712,8740,8748,10955,11605,18659,21443]]],["faces",[3,3,[[0,1,1,0,1,[[41,1,1,0,1]]],[13,1,1,1,2,[[373,1,1,1,2]]],[15,1,1,2,3,[[420,1,1,2,3]]]],[1258,11327,12499]]],["forbearing",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17128]]],["forehead",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20774]]],["nose",[11,11,[[11,1,1,0,1,[[331,1,1,0,1]]],[17,2,2,1,3,[[475,1,1,1,2],[476,1,1,2,3]]],[19,1,1,3,4,[[657,1,1,3,4]]],[21,2,2,4,6,[[677,2,2,4,6]]],[22,3,3,6,9,[[681,1,1,6,7],[715,1,1,7,8],[743,1,1,8,9]]],[25,2,2,9,11,[[809,1,1,9,10],[824,1,1,10,11]]]],[10089,13888,13890,17284,17631,17635,17728,18381,18902,20621,21032]]],["noses",[1,1,[[18,1,1,0,1,[[592,1,1,0,1]]]],[15836]]],["nostrils",[12,12,[[0,2,2,0,2,[[1,1,1,0,1],[6,1,1,1,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[9,2,2,3,5,[[288,2,2,3,5]]],[17,2,2,5,7,[[439,1,1,5,6],[462,1,1,6,7]]],[18,2,2,7,9,[[495,2,2,7,9]]],[22,1,1,9,10,[[680,1,1,9,10]]],[24,1,1,10,11,[[800,1,1,10,11]]],[29,1,1,11,12,[[882,1,1,11,12]]]],[37,181,1928,8611,8618,12939,13484,14126,14133,17707,20440,22420]]],["snout",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16710]]],["worthy",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7217]]],["wrath",[41,40,[[0,1,1,0,1,[[38,1,1,0,1]]],[1,3,3,1,4,[[71,1,1,1,2],[81,2,2,2,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[4,1,1,5,6,[[163,1,1,5,6]]],[8,1,1,6,7,[[263,1,1,6,7]]],[11,1,1,7,8,[[335,1,1,7,8]]],[13,5,5,8,13,[[378,1,1,8,9],[394,2,2,9,11],[395,1,1,11,12],[396,1,1,12,13]]],[14,2,2,13,15,[[410,1,1,13,14],[412,1,1,14,15]]],[17,12,11,15,26,[[449,1,1,15,16],[451,1,1,16,17],[454,1,1,17,18],[455,2,2,18,20],[467,4,3,20,23],[471,1,1,23,24],[475,1,1,24,25],[477,1,1,25,26]]],[18,10,10,26,36,[[479,2,2,26,28],[498,1,1,28,29],[532,1,1,29,30],[555,1,1,30,31],[572,1,1,31,32],[583,1,1,32,33],[587,1,1,33,34],[601,1,1,34,35],[615,1,1,35,36]]],[19,4,4,36,40,[[641,1,1,36,37],[651,1,1,37,38],[656,1,1,38,39],[657,1,1,39,40]]]],[1168,2137,2448,2449,4057,5225,7960,10191,11449,11775,11777,11801,11835,12223,12266,13194,13247,13308,13349,13354,13630,13631,13633,13749,13875,13929,13950,13957,14200,14735,15144,15465,15691,15791,16105,16238,16801,17097,17232,17284]]]]},{"k":"H640","v":[["*",[2,2,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]]],[2341,2924]]],["bound",[1,1,[[2,1,1,0,1,[[97,1,1,0,1]]]],[2924]]],["gird",[1,1,[[1,1,1,0,1,[[78,1,1,0,1]]]],[2341]]]]},{"k":"H641","v":[["Ephod",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4839]]]]},{"k":"H642","v":[["*",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]]],[2301,2669,18239]]],["ephod",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2301,2669]]],["ornament",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18239]]]]},{"k":"H643","v":[["palace",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22081]]]]},{"k":"H644","v":[["*",[25,24,[[0,9,9,0,9,[[18,1,1,0,1],[39,7,7,1,8],[40,1,1,8,9]]],[1,3,2,9,11,[[61,1,1,9,10],[65,2,1,10,11]]],[2,5,5,11,16,[[95,1,1,11,12],[96,1,1,12,13],[112,1,1,13,14],[113,1,1,14,15],[115,1,1,15,16]]],[8,2,2,16,18,[[243,1,1,16,17],[263,1,1,17,18]]],[22,2,2,18,20,[[722,2,2,18,20]]],[23,1,1,20,21,[[781,1,1,20,21]]],[25,1,1,21,22,[[847,1,1,21,22]]],[27,2,2,22,24,[[868,2,2,22,24]]]],[460,1173,1174,1177,1188,1189,1192,1194,1205,1855,1970,2866,2888,3419,3451,3550,7382,7966,18548,18552,19895,21675,22182,22184]]],["+",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1189]]],["bake",[7,6,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,2,1,1,2,[[65,2,1,1,2]]],[2,2,2,2,4,[[113,1,1,2,3],[115,1,1,3,4]]],[8,1,1,4,5,[[263,1,1,4,5]]],[25,1,1,5,6,[[847,1,1,5,6]]]],[460,1970,3451,3550,7966,21675]]],["baked",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[1855,18552]]],["baken",[3,3,[[2,3,3,0,3,[[95,1,1,0,1],[96,1,1,1,2],[112,1,1,2,3]]]],[2866,2888,3419]]],["baker",[8,8,[[0,6,6,0,6,[[39,5,5,0,5],[40,1,1,5,6]]],[27,2,2,6,8,[[868,2,2,6,8]]]],[1173,1177,1188,1192,1194,1205,22182,22184]]],["bakers",[2,2,[[0,1,1,0,1,[[39,1,1,0,1]]],[8,1,1,1,2,[[243,1,1,1,2]]]],[1174,7382]]],["bakers'",[1,1,[[23,1,1,0,1,[[781,1,1,0,1]]]],[19895]]],["baketh",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18548]]]]},{"k":"H645","v":[["*",[15,15,[[0,3,3,0,3,[[26,2,2,0,2],[42,1,1,2,3]]],[1,1,1,3,4,[[82,1,1,3,4]]],[6,1,1,4,5,[[219,1,1,4,5]]],[11,1,1,5,6,[[322,1,1,5,6]]],[17,5,5,6,11,[[444,1,1,6,7],[452,1,1,7,8],[454,2,2,8,10],[459,1,1,10,11]]],[19,1,1,11,12,[[633,1,1,11,12]]],[22,2,2,12,14,[[697,1,1,12,13],[700,1,1,13,14]]],[27,1,1,14,15,[[874,1,1,14,15]]]],[760,764,1301,2489,6792,9803,13075,13275,13303,13320,13461,16543,18016,18053,22276]]],["here",[1,1,[[1,1,1,0,1,[[82,1,1,0,1]]]],[2489]]],["now",[10,10,[[0,2,2,0,2,[[26,1,1,0,1],[42,1,1,1,2]]],[6,1,1,2,3,[[219,1,1,2,3]]],[11,1,1,3,4,[[322,1,1,3,4]]],[17,4,4,4,8,[[452,1,1,4,5],[454,2,2,5,7],[459,1,1,7,8]]],[19,1,1,8,9,[[633,1,1,8,9]]],[22,1,1,9,10,[[700,1,1,9,10]]]],[764,1301,6792,9803,13275,13303,13320,13461,16543,18053]]],["where",[4,4,[[0,1,1,0,1,[[26,1,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]],[22,1,1,2,3,[[697,1,1,2,3]]],[27,1,1,3,4,[[874,1,1,3,4]]]],[760,13075,18016,22276]]]]},{"k":"H646","v":[["ephod",[49,39,[[1,29,21,0,21,[[74,1,1,0,1],[77,12,9,1,10],[78,3,1,10,11],[84,2,2,11,13],[88,11,8,13,21]]],[2,2,1,21,22,[[97,2,1,21,22]]],[6,6,6,22,28,[[218,1,1,22,23],[227,1,1,23,24],[228,4,4,24,28]]],[8,9,8,28,36,[[237,2,2,28,30],[249,1,1,30,31],[256,1,1,31,32],[257,1,1,32,33],[258,2,2,33,35],[265,2,1,35,36]]],[9,1,1,36,37,[[272,1,1,36,37]]],[12,1,1,37,38,[[352,1,1,37,38]]],[27,1,1,38,39,[[864,1,1,38,39]]]],[2202,2297,2299,2305,2308,2318,2319,2320,2321,2324,2341,2540,2558,2666,2671,2672,2682,2683,2684,2685,2686,2924,6746,6985,7007,7010,7011,7013,7258,7268,7511,7781,7805,7816,7819,7985,8171,10818,22132]]]]},{"k":"H647","v":[["Aphiah",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7392]]]]},{"k":"H648","v":[["up",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1774]]]]},{"k":"H649","v":[["Appaim",[2,2,[[12,2,2,0,2,[[339,2,2,0,2]]]],[10336,10337]]]]},{"k":"H650","v":[["*",[19,19,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,4,4,1,5,[[441,1,1,1,2],[447,1,1,2,3],[475,1,1,3,4],[476,1,1,4,5]]],[18,3,3,5,8,[[495,1,1,5,6],[519,1,1,6,7],[603,1,1,7,8]]],[21,1,1,8,9,[[675,1,1,8,9]]],[22,1,1,9,10,[[686,1,1,9,10]]],[25,7,7,10,17,[[807,1,1,10,11],[832,1,1,11,12],[833,1,1,12,13],[835,1,1,13,14],[836,1,1,14,15],[837,2,2,15,17]]],[28,2,2,17,19,[[876,1,1,17,18],[878,1,1,18,19]]]],[8618,12993,13149,13882,13903,14133,14556,16119,17610,17814,20566,21242,21254,21326,21352,21363,21365,22311,22361]]],["+",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13903]]],["brooks",[1,1,[[18,1,1,0,1,[[519,1,1,0,1]]]],[14556]]],["channels",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]],[22,1,1,2,3,[[686,1,1,2,3]]]],[8618,14133,17814]]],["mighty",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13149]]],["pieces",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13882]]],["rivers",[10,10,[[21,1,1,0,1,[[675,1,1,0,1]]],[25,7,7,1,8,[[807,1,1,1,2],[832,1,1,2,3],[833,1,1,3,4],[835,1,1,4,5],[836,1,1,5,6],[837,2,2,6,8]]],[28,2,2,8,10,[[876,1,1,8,9],[878,1,1,9,10]]]],[17610,20566,21242,21254,21326,21352,21363,21365,22311,22361]]],["stream",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12993]]],["streams",[1,1,[[18,1,1,0,1,[[603,1,1,0,1]]]],[16119]]]]},{"k":"H651","v":[["dark",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22443]]]]},{"k":"H652","v":[["*",[9,8,[[17,6,5,0,5,[[438,1,1,0,1],[445,2,1,1,2],[458,1,1,2,3],[463,1,1,3,4],[465,1,1,4,5]]],[18,2,2,5,7,[[488,1,1,5,6],[568,1,1,6,7]]],[22,1,1,7,8,[[707,1,1,7,8]]]],[12910,13108,13436,13507,13583,14061,15401,18211]]],["+",[2,2,[[18,1,1,0,1,[[488,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]]],[14061,18211]]],["darkness",[7,6,[[17,6,5,0,5,[[438,1,1,0,1],[445,2,1,1,2],[458,1,1,2,3],[463,1,1,3,4],[465,1,1,4,5]]],[18,1,1,5,6,[[568,1,1,5,6]]]],[12910,13108,13436,13507,13583,15401]]]]},{"k":"H653","v":[["*",[10,10,[[1,1,1,0,1,[[59,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[19,2,2,2,4,[[631,1,1,2,3],[634,1,1,3,4]]],[22,3,3,4,7,[[686,1,1,4,5],[736,1,1,5,6],[737,1,1,6,7]]],[23,1,1,7,8,[[767,1,1,7,8]]],[28,1,1,8,9,[[877,1,1,8,9]]],[35,1,1,9,10,[[906,1,1,9,10]]]],[1799,5640,16509,16584,17829,18796,18809,19496,22313,22802]]],["dark",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16584]]],["darkness",[6,6,[[4,1,1,0,1,[[180,1,1,0,1]]],[19,1,1,1,2,[[631,1,1,1,2]]],[22,3,3,2,5,[[686,1,1,2,3],[736,1,1,3,4],[737,1,1,4,5]]],[23,1,1,5,6,[[767,1,1,5,6]]]],[5640,16509,17829,18796,18809,19496]]],["gloominess",[2,2,[[28,1,1,0,1,[[877,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]]],[22313,22802]]],["thick",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1799]]]]},{"k":"H654","v":[["Ephlal",[2,1,[[12,2,1,0,1,[[339,2,1,0,1]]]],[10343]]]]},{"k":"H655","v":[["+",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17124]]]]},{"k":"H656","v":[["*",[5,5,[[0,2,2,0,2,[[46,2,2,0,2]]],[18,1,1,2,3,[[554,1,1,2,3]]],[22,2,2,3,5,[[694,1,1,3,4],[707,1,1,4,5]]]],[1435,1436,15101,17973,18213]]],["end",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17973]]],["fail",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1436]]],["faileth",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1435]]],["gone",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15101]]],["nought",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18213]]]]},{"k":"H657","v":[["*",[44,43,[[3,3,3,0,3,[[129,1,1,0,1],[138,1,1,1,2],[139,1,1,2,3]]],[4,3,3,3,6,[[167,1,1,3,4],[184,1,1,4,5],[185,1,1,5,6]]],[6,1,1,6,7,[[214,1,1,6,7]]],[8,1,1,7,8,[[237,1,1,7,8]]],[9,2,2,8,10,[[275,1,1,8,9],[278,1,1,9,10]]],[11,2,1,10,11,[[326,2,1,10,11]]],[17,1,1,11,12,[[442,1,1,11,12]]],[18,6,6,12,18,[[479,1,1,12,13],[499,1,1,13,14],[536,1,1,14,15],[544,1,1,15,16],[549,1,1,16,17],[575,1,1,17,18]]],[19,3,3,18,21,[[641,1,1,18,19],[653,1,1,19,20],[657,1,1,20,21]]],[22,14,14,21,35,[[683,1,1,21,22],[712,1,1,22,23],[718,1,1,23,24],[719,2,2,24,26],[723,3,3,26,29],[724,1,1,29,30],[725,2,2,30,32],[730,2,2,32,34],[732,1,1,34,35]]],[23,1,1,35,36,[[760,1,1,35,36]]],[25,1,1,36,37,[[848,1,1,36,37]]],[26,1,1,37,38,[[857,1,1,37,38]]],[29,2,2,38,40,[[884,1,1,38,39],[887,1,1,39,40]]],[32,1,1,40,41,[[897,1,1,40,41]]],[35,1,1,41,42,[[907,1,1,41,42]]],[37,1,1,42,43,[[919,1,1,42,43]]]],[4103,4410,4429,5323,5794,5827,6608,7250,8230,8300,9922,13014,13953,14231,14803,14900,15008,15493,16800,17161,17255,17747,18315,18437,18463,18480,18567,18575,18583,18595,18607,18609,18700,18706,18738,19355,21682,21986,22460,22503,22637,22820,23009]]],["+",[6,6,[[3,2,2,0,2,[[129,1,1,0,1],[138,1,1,1,2]]],[22,3,3,2,5,[[718,1,1,2,3],[725,2,2,3,5]]],[23,1,1,5,6,[[760,1,1,5,6]]]],[4103,4410,18437,18607,18609,19355]]],["Howbeit",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8300]]],["No",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22460]]],["Save",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5323]]],["ankles",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21682]]],["any",[2,1,[[11,2,1,0,1,[[326,2,1,0,1]]]],[9922]]],["but",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4429]]],["cause",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18700]]],["ends",[12,12,[[4,1,1,0,1,[[185,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[18,5,5,2,7,[[499,1,1,2,3],[536,1,1,3,4],[544,1,1,4,5],[549,1,1,5,6],[575,1,1,6,7]]],[19,1,1,7,8,[[657,1,1,7,8]]],[22,2,2,8,10,[[723,1,1,8,9],[730,1,1,9,10]]],[32,1,1,10,11,[[897,1,1,10,11]]],[37,1,1,11,12,[[919,1,1,11,12]]]],[5827,7250,14231,14803,14900,15008,15493,17255,18583,18706,22637,23009]]],["no",[3,3,[[19,1,1,0,1,[[653,1,1,0,1]]],[22,2,2,1,3,[[683,1,1,1,2],[723,1,1,2,3]]]],[17161,17747,18575]]],["none",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[22,2,2,1,3,[[723,1,1,1,2],[724,1,1,2,3]]],[35,1,1,3,4,[[907,1,1,3,4]]]],[5794,18567,18595,22820]]],["not",[2,2,[[9,1,1,0,1,[[275,1,1,0,1]]],[22,1,1,1,2,[[732,1,1,1,2]]]],[8230,18738]]],["nothing",[2,2,[[22,2,2,0,2,[[712,1,1,0,1],[719,1,1,1,2]]]],[18315,18480]]],["notwithstanding",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6608]]],["nought",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18463]]],["parts",[1,1,[[18,1,1,0,1,[[479,1,1,0,1]]]],[13953]]],["saving",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22503]]],["want",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16800]]],["without",[2,2,[[17,1,1,0,1,[[442,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]]],[13014,21986]]]]},{"k":"H658","v":[["Ephesdammim",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7619]]]]},{"k":"H659","v":[["+",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18475]]]]},{"k":"H660","v":[["*",[3,3,[[17,1,1,0,1,[[455,1,1,0,1]]],[22,2,2,1,3,[[708,1,1,1,2],[737,1,1,2,3]]]],[13342,18223,18805]]],["viper",[2,2,[[22,2,2,0,2,[[708,1,1,0,1],[737,1,1,1,2]]]],[18223,18805]]],["viper's",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13342]]]]},{"k":"H661","v":[["*",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,3,3,1,4,[[495,1,1,1,2],[517,1,1,2,3],[593,1,1,3,4]]],[31,1,1,4,5,[[890,1,1,4,5]]]],[8607,14122,14537,15851,22553]]],["+",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14537]]],["about",[1,1,[[31,1,1,0,1,[[890,1,1,0,1]]]],[22553]]],["compassed",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,2,2,1,3,[[495,1,1,1,2],[593,1,1,2,3]]]],[8607,14122,15851]]]]},{"k":"H662","v":[["*",[7,7,[[0,2,2,0,2,[[42,1,1,0,1],[44,1,1,1,2]]],[8,1,1,2,3,[[248,1,1,2,3]]],[16,1,1,3,4,[[430,1,1,3,4]]],[22,3,3,4,7,[[720,1,1,4,5],[741,1,1,5,6],[742,1,1,6,7]]]],[1321,1359,7497,12789,18494,18881,18897]]],["himself",[3,3,[[0,2,2,0,2,[[42,1,1,0,1],[44,1,1,1,2]]],[16,1,1,2,3,[[430,1,1,2,3]]]],[1321,1359,12789]]],["myself",[2,2,[[8,1,1,0,1,[[248,1,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]]],[7497,18494]]],["restrained",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18881]]],["thyself",[1,1,[[22,1,1,0,1,[[742,1,1,0,1]]]],[18897]]]]},{"k":"H663","v":[["*",[9,9,[[5,3,3,0,3,[[198,1,1,0,1],[199,1,1,1,2],[205,1,1,2,3]]],[6,1,1,3,4,[[211,1,1,3,4]]],[8,2,2,4,6,[[239,1,1,4,5],[264,1,1,5,6]]],[10,2,2,6,8,[[310,2,2,6,8]]],[11,1,1,8,9,[[325,1,1,8,9]]]],[6148,6158,6351,6540,7298,7968,9434,9438,9888]]],["Aphek",[8,8,[[5,3,3,0,3,[[198,1,1,0,1],[199,1,1,1,2],[205,1,1,2,3]]],[8,2,2,3,5,[[239,1,1,3,4],[264,1,1,4,5]]],[10,2,2,5,7,[[310,2,2,5,7]]],[11,1,1,7,8,[[325,1,1,7,8]]]],[6148,6158,6351,7298,7968,9434,9438,9888]]],["Aphik",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6540]]]]},{"k":"H664","v":[["Aphekah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6255]]]]},{"k":"H665","v":[["ashes",[22,22,[[0,1,1,0,1,[[17,1,1,0,1]]],[3,2,2,1,3,[[135,2,2,1,3]]],[9,1,1,3,4,[[279,1,1,3,4]]],[16,2,2,4,6,[[429,2,2,4,6]]],[17,4,4,6,10,[[437,1,1,6,7],[448,1,1,7,8],[465,1,1,8,9],[477,1,1,9,10]]],[18,2,2,10,12,[[579,1,1,10,11],[624,1,1,11,12]]],[22,3,3,12,15,[[722,1,1,12,13],[736,1,1,13,14],[739,1,1,14,15]]],[23,1,1,15,16,[[750,1,1,15,16]]],[24,1,1,16,17,[[799,1,1,16,17]]],[25,2,2,17,19,[[828,1,1,17,18],[829,1,1,18,19]]],[26,1,1,19,20,[[858,1,1,19,20]]],[31,1,1,20,21,[[891,1,1,20,21]]],[38,1,1,21,22,[[928,1,1,21,22]]]],[451,4298,4299,8336,12763,12765,12899,13165,13576,13928,15530,16367,18553,18791,18846,19115,20370,21151,21175,21991,22564,23141]]]]},{"k":"H666","v":[["ashes",[2,2,[[10,2,2,0,2,[[310,2,2,0,2]]]],[9446,9449]]]]},{"k":"H667","v":[["*",[4,3,[[4,2,1,0,1,[[174,2,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]],[18,1,1,2,3,[[561,1,1,2,3]]]],[5476,13864,15262]]],["ones",[2,2,[[4,1,1,0,1,[[174,1,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]]],[5476,13864]]],["young",[2,2,[[4,1,1,0,1,[[174,1,1,0,1]]],[18,1,1,1,2,[[561,1,1,1,2]]]],[5476,15262]]]]},{"k":"H668","v":[["chariot",[1,1,[[21,1,1,0,1,[[673,1,1,0,1]]]],[17580]]]]},{"k":"H669","v":[["*",[180,164,[[0,11,9,0,9,[[40,1,1,0,1],[45,1,1,1,2],[47,8,6,2,8],[49,1,1,8,9]]],[3,13,12,9,21,[[117,3,3,9,12],[118,3,2,12,14],[123,1,1,14,15],[126,1,1,15,16],[129,1,1,16,17],[142,3,3,17,20],[150,1,1,20,21]]],[4,2,2,21,23,[[185,1,1,21,22],[186,1,1,22,23]]],[5,18,18,23,41,[[200,1,1,23,24],[202,5,5,24,29],[203,5,5,29,34],[205,1,1,34,35],[206,1,1,35,36],[207,3,3,36,39],[210,2,2,39,41]]],[6,27,22,41,63,[[211,1,1,41,42],[212,1,1,42,43],[213,1,1,43,44],[214,1,1,44,45],[215,1,1,45,46],[217,2,1,46,47],[218,2,2,47,49],[220,2,2,49,51],[222,9,5,51,56],[227,2,2,56,58],[228,2,2,58,60],[229,3,3,60,63]]],[8,3,3,63,66,[[236,1,1,63,64],[244,1,1,64,65],[249,1,1,65,66]]],[9,4,4,66,70,[[268,1,1,66,67],[279,1,1,67,68],[284,1,1,68,69],[286,1,1,69,70]]],[10,2,2,70,72,[[294,1,1,70,71],[302,1,1,71,72]]],[11,2,2,72,74,[[317,1,1,72,73],[326,1,1,73,74]]],[12,9,9,74,83,[[343,2,2,74,76],[344,2,2,76,78],[346,1,1,78,79],[349,1,1,79,80],[364,3,3,80,83]]],[13,16,16,83,99,[[379,1,1,83,84],[381,2,2,84,86],[383,1,1,86,87],[385,1,1,87,88],[391,3,3,88,91],[394,2,2,91,93],[396,3,3,93,96],[397,1,1,96,97],[400,2,2,97,99]]],[15,2,2,99,101,[[420,1,1,99,100],[424,1,1,100,101]]],[18,5,5,101,106,[[537,1,1,101,102],[555,2,2,102,104],[557,1,1,104,105],[585,1,1,105,106]]],[22,14,11,106,117,[[685,5,5,106,111],[687,3,2,111,113],[689,3,1,113,114],[695,1,1,114,115],[706,2,2,115,117]]],[23,7,7,117,124,[[748,1,1,117,118],[751,1,1,118,119],[775,4,4,119,123],[794,1,1,123,124]]],[25,4,4,124,128,[[838,2,2,124,126],[849,2,2,126,128]]],[27,37,32,128,160,[[865,1,1,128,129],[866,9,7,129,136],[867,2,2,136,138],[868,4,3,138,141],[869,2,2,141,143],[870,6,5,143,148],[871,3,2,148,150],[872,4,4,150,154],[873,3,3,154,157],[874,2,2,157,159],[875,1,1,159,160]]],[30,1,1,160,161,[[888,1,1,160,161]]],[37,3,3,161,164,[[919,2,2,161,163],[920,1,1,163,164]]]],[1247,1406,1452,1456,1464,1465,1468,1471,1529,3614,3636,3637,3676,3682,3898,4010,4083,4517,4524,4526,4840,5827,5841,6191,6269,6270,6273,6274,6275,6283,6284,6285,6290,6292,6371,6379,6386,6401,6402,6506,6509,6538,6554,6595,6604,6637,6718,6720,6721,6812,6820,6870,6873,6874,6875,6884,6981,6988,6995,7006,7025,7040,7042,7213,7395,7530,8058,8340,8484,8575,8852,9176,9669,9909,10520,10521,10555,10557,10618,10750,11119,11123,11129,11457,11498,11499,11525,11580,11711,11714,11727,11771,11776,11828,11837,11845,11855,11939,11942,12509,12663,14814,15122,15180,15200,15750,17784,17787,17790,17791,17799,17838,17850,17897,17986,18165,18167,19042,19134,19697,19700,19709,19711,20185,21413,21416,21707,21708,22150,22155,22157,22161,22163,22164,22165,22166,22171,22177,22179,22186,22189,22203,22205,22211,22216,22219,22221,22224,22231,22236,22243,22248,22249,22252,22253,22260,22266,22267,22278,22290,22529,23009,23012,23023]]],["+",[8,8,[[6,1,1,0,1,[[222,1,1,0,1]]],[13,3,3,1,4,[[381,1,1,1,2],[391,1,1,2,3],[396,1,1,3,4]]],[22,2,2,4,6,[[687,1,1,4,5],[695,1,1,5,6]]],[27,1,1,6,7,[[872,1,1,6,7]]],[37,1,1,7,8,[[919,1,1,7,8]]]],[6875,11499,11714,11845,17850,17986,22243,23009]]],["Ephraim",[164,152,[[0,8,7,0,7,[[40,1,1,0,1],[45,1,1,1,2],[47,6,5,2,7]]],[3,13,12,7,19,[[117,3,3,7,10],[118,3,2,10,12],[123,1,1,12,13],[126,1,1,13,14],[129,1,1,14,15],[142,3,3,15,18],[150,1,1,18,19]]],[4,2,2,19,21,[[185,1,1,19,20],[186,1,1,20,21]]],[5,16,16,21,37,[[200,1,1,21,22],[202,4,4,22,26],[203,4,4,26,30],[205,1,1,30,31],[206,1,1,31,32],[207,3,3,32,35],[210,2,2,35,37]]],[6,23,20,37,57,[[211,1,1,37,38],[212,1,1,38,39],[213,1,1,39,40],[214,1,1,40,41],[215,1,1,41,42],[217,2,1,42,43],[218,2,2,43,45],[220,2,2,45,47],[222,5,3,47,50],[227,2,2,50,52],[228,2,2,52,54],[229,3,3,54,57]]],[8,3,3,57,60,[[236,1,1,57,58],[244,1,1,58,59],[249,1,1,59,60]]],[9,4,4,60,64,[[268,1,1,60,61],[279,1,1,61,62],[284,1,1,62,63],[286,1,1,63,64]]],[10,2,2,64,66,[[294,1,1,64,65],[302,1,1,65,66]]],[11,2,2,66,68,[[317,1,1,66,67],[326,1,1,67,68]]],[12,9,9,68,77,[[343,2,2,68,70],[344,2,2,70,72],[346,1,1,72,73],[349,1,1,73,74],[364,3,3,74,77]]],[13,13,13,77,90,[[379,1,1,77,78],[381,1,1,78,79],[383,1,1,79,80],[385,1,1,80,81],[391,2,2,81,83],[394,2,2,83,85],[396,2,2,85,87],[397,1,1,87,88],[400,2,2,88,90]]],[15,2,2,90,92,[[420,1,1,90,91],[424,1,1,91,92]]],[18,5,5,92,97,[[537,1,1,92,93],[555,2,2,93,95],[557,1,1,95,96],[585,1,1,96,97]]],[22,12,10,97,107,[[685,5,5,97,102],[687,2,2,102,104],[689,3,1,104,105],[706,2,2,105,107]]],[23,7,7,107,114,[[748,1,1,107,108],[751,1,1,108,109],[775,4,4,109,113],[794,1,1,113,114]]],[25,4,4,114,118,[[838,2,2,114,116],[849,2,2,116,118]]],[27,36,31,118,149,[[865,1,1,118,119],[866,9,7,119,126],[867,2,2,126,128],[868,4,3,128,131],[869,2,2,131,133],[870,6,5,133,138],[871,3,2,138,140],[872,3,3,140,143],[873,3,3,143,146],[874,2,2,146,148],[875,1,1,148,149]]],[30,1,1,149,150,[[888,1,1,149,150]]],[37,2,2,150,152,[[919,1,1,150,151],[920,1,1,151,152]]]],[1247,1406,1452,1456,1464,1468,1471,3614,3636,3637,3676,3682,3898,4010,4083,4517,4524,4526,4840,5827,5841,6191,6269,6270,6273,6274,6283,6284,6290,6292,6371,6379,6386,6401,6402,6506,6509,6538,6554,6595,6604,6637,6718,6720,6721,6812,6820,6870,6873,6884,6981,6988,6995,7006,7025,7040,7042,7213,7395,7530,8058,8340,8484,8575,8852,9176,9669,9909,10520,10521,10555,10557,10618,10750,11119,11123,11129,11457,11498,11525,11580,11711,11727,11771,11776,11828,11837,11855,11939,11942,12509,12663,14814,15122,15180,15200,15750,17784,17787,17790,17791,17799,17838,17850,17897,18165,18167,19042,19134,19697,19700,19709,19711,20185,21413,21416,21707,21708,22150,22155,22157,22161,22163,22164,22165,22166,22171,22177,22179,22186,22189,22203,22205,22211,22216,22219,22221,22224,22231,22236,22248,22249,22252,22253,22260,22266,22267,22278,22290,22529,23012,23023]]],["Ephraim's",[4,4,[[0,3,3,0,3,[[47,2,2,0,2],[49,1,1,2,3]]],[5,1,1,3,4,[[203,1,1,3,4]]]],[1465,1468,1529,6285]]],["Ephraimites",[4,3,[[5,1,1,0,1,[[202,1,1,0,1]]],[6,3,2,1,3,[[222,3,2,1,3]]]],[6275,6873,6874]]]]},{"k":"H670","v":[["Apharsites",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12119]]]]},{"k":"H671","v":[["*",[3,3,[[14,3,3,0,3,[[406,1,1,0,1],[407,1,1,1,2],[408,1,1,2,3]]]],[12119,12140,12157]]],["Apharsachites",[2,2,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]]],[12140,12157]]],["Apharsathchites",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12119]]]]},{"k":"H672","v":[["*",[10,9,[[0,4,3,0,3,[[34,2,2,0,2],[47,2,1,2,3]]],[7,1,1,3,4,[[235,1,1,3,4]]],[12,3,3,4,7,[[339,2,2,4,6],[341,1,1,6,7]]],[18,1,1,7,8,[[609,1,1,7,8]]],[32,1,1,8,9,[[897,1,1,8,9]]]],[1027,1030,1458,7201,10325,10356,10389,16157,22635]]],["Ephratah",[5,5,[[7,1,1,0,1,[[235,1,1,0,1]]],[12,2,2,1,3,[[339,1,1,1,2],[341,1,1,2,3]]],[18,1,1,3,4,[[609,1,1,3,4]]],[32,1,1,4,5,[[897,1,1,4,5]]]],[7201,10356,10389,16157,22635]]],["Ephrath",[5,4,[[0,4,3,0,3,[[34,2,2,0,2],[47,2,1,2,3]]],[12,1,1,3,4,[[339,1,1,3,4]]]],[1027,1030,1458,10325]]]]},{"k":"H673","v":[["*",[5,5,[[6,1,1,0,1,[[222,1,1,0,1]]],[7,1,1,1,2,[[232,1,1,1,2]]],[8,2,2,2,4,[[236,1,1,2,3],[252,1,1,3,4]]],[10,1,1,4,5,[[301,1,1,4,5]]]],[6874,7129,7213,7630,9134]]],["+",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7630]]],["Ephraimite",[1,1,[[6,1,1,0,1,[[222,1,1,0,1]]]],[6874]]],["Ephrathite",[2,2,[[8,1,1,0,1,[[236,1,1,0,1]]],[10,1,1,1,2,[[301,1,1,1,2]]]],[7213,9134]]],["Ephrathites",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7129]]]]},{"k":"H674","v":[["revenue",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12123]]]]},{"k":"H675","v":[["Ezbon",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]]],[1402,10542]]]]},{"k":"H676","v":[["*",[31,28,[[1,3,3,0,3,[[57,1,1,0,1],[78,1,1,1,2],[80,1,1,2,3]]],[2,13,11,3,14,[[93,5,5,3,8],[97,1,1,8,9],[98,1,1,9,10],[103,3,2,10,12],[105,3,2,12,14]]],[3,1,1,14,15,[[135,1,1,14,15]]],[4,1,1,15,16,[[161,1,1,15,16]]],[9,2,1,16,17,[[287,2,1,16,17]]],[12,1,1,17,18,[[357,1,1,17,18]]],[18,2,2,18,20,[[485,1,1,18,19],[621,1,1,19,20]]],[19,2,2,20,22,[[633,1,1,20,21],[634,1,1,21,22]]],[21,1,1,22,23,[[675,1,1,22,23]]],[22,4,4,23,27,[[680,1,1,23,24],[695,1,1,24,25],[736,1,1,25,26],[737,1,1,26,27]]],[23,1,1,27,28,[[796,1,1,27,28]]]],[1729,2348,2438,2801,2812,2820,2825,2829,2932,2962,3127,3138,3215,3220,4293,5167,8600,10932,14015,16306,16553,16578,17603,17693,17991,18795,18803,20297]]],["finger",[19,17,[[1,3,3,0,3,[[57,1,1,0,1],[78,1,1,1,2],[80,1,1,2,3]]],[2,13,11,3,14,[[93,5,5,3,8],[97,1,1,8,9],[98,1,1,9,10],[103,3,2,10,12],[105,3,2,12,14]]],[3,1,1,14,15,[[135,1,1,14,15]]],[4,1,1,15,16,[[161,1,1,15,16]]],[22,1,1,16,17,[[736,1,1,16,17]]]],[1729,2348,2438,2801,2812,2820,2825,2829,2932,2962,3127,3138,3215,3220,4293,5167,18795]]],["fingers",[10,10,[[9,1,1,0,1,[[287,1,1,0,1]]],[18,2,2,1,3,[[485,1,1,1,2],[621,1,1,2,3]]],[19,2,2,3,5,[[633,1,1,3,4],[634,1,1,4,5]]],[21,1,1,5,6,[[675,1,1,5,6]]],[22,3,3,6,9,[[680,1,1,6,7],[695,1,1,7,8],[737,1,1,8,9]]],[23,1,1,9,10,[[796,1,1,9,10]]]],[8600,14015,16306,16553,16578,17603,17693,17991,18803,20297]]],["toes",[2,2,[[9,1,1,0,1,[[287,1,1,0,1]]],[12,1,1,1,2,[[357,1,1,1,2]]]],[8600,10932]]]]},{"k":"H677","v":[["*",[3,3,[[26,3,3,0,3,[[851,2,2,0,2],[854,1,1,2,3]]]],[21799,21800,21879]]],["fingers",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21879]]],["toes",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21799,21800]]]]},{"k":"H678","v":[["*",[2,2,[[1,1,1,0,1,[[73,1,1,0,1]]],[22,1,1,1,2,[[719,1,1,1,2]]]],[2188,18460]]],["+",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18460]]],["nobles",[1,1,[[1,1,1,0,1,[[73,1,1,0,1]]]],[2188]]]]},{"k":"H679","v":[["*",[3,3,[[23,1,1,0,1,[[782,1,1,0,1]]],[25,2,2,1,3,[[814,1,1,1,2],[842,1,1,2,3]]]],[19907,20726,21534]]],["+",[2,2,[[23,1,1,0,1,[[782,1,1,0,1]]],[25,1,1,1,2,[[814,1,1,1,2]]]],[19907,20726]]],["great",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21534]]]]},{"k":"H680","v":[["*",[5,5,[[0,1,1,0,1,[[26,1,1,0,1]]],[3,2,2,1,3,[[127,2,2,1,3]]],[20,1,1,3,4,[[660,1,1,3,4]]],[25,1,1,4,5,[[843,1,1,4,5]]]],[763,4041,4049,17343,21558]]],["kept",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17343]]],["reserved",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[763]]],["straitened",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21558]]],["take",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4041]]],["took",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4049]]]]},{"k":"H681","v":[["*",[61,57,[[0,5,5,0,5,[[38,4,4,0,4],[40,1,1,4,5]]],[2,3,3,5,8,[[90,1,1,5,6],[95,1,1,6,7],[99,1,1,7,8]]],[4,2,2,8,10,[[163,1,1,8,9],[168,1,1,9,10]]],[6,1,1,10,11,[[229,1,1,10,11]]],[8,4,4,11,15,[[240,1,1,11,12],[252,1,1,12,13],[255,2,2,13,15]]],[10,13,12,15,27,[[291,1,1,15,16],[292,1,1,16,17],[293,1,1,17,18],[294,1,1,18,19],[300,1,1,19,20],[303,5,4,20,24],[310,1,1,24,25],[311,2,2,25,27]]],[11,1,1,27,28,[[324,1,1,27,28]]],[13,2,2,28,30,[[375,1,1,28,29],[394,1,1,29,30]]],[15,6,6,30,36,[[414,1,1,30,31],[415,1,1,31,32],[416,3,3,32,35],[420,1,1,35,36]]],[19,3,3,36,39,[[634,2,2,36,38],[635,1,1,38,39]]],[22,1,1,39,40,[[697,1,1,39,40]]],[23,2,2,40,42,[[779,1,1,40,41],[785,1,1,41,42]]],[25,14,11,42,53,[[802,2,2,42,44],[810,1,1,44,45],[811,6,3,45,48],[834,1,1,48,49],[840,1,1,49,50],[841,1,1,50,51],[844,2,2,51,53]]],[26,3,3,53,56,[[857,2,2,53,55],[859,1,1,55,56]]],[29,1,1,56,57,[[880,1,1,56,57]]]],[1159,1164,1165,1167,1198,2761,2859,2989,5238,5363,7038,7321,7648,7749,7771,8726,8799,8836,8856,9098,9208,9209,9212,9215,9444,9452,9453,9859,11382,11779,12313,12350,12362,12371,12377,12497,16583,16587,16632,18023,19827,19974,20479,20483,20624,20639,20642,20649,21310,21463,21484,21578,21580,21968,21978,22028,22387]]],["+",[7,7,[[8,2,2,0,2,[[252,1,1,0,1],[255,1,1,1,2]]],[10,3,3,2,5,[[293,1,1,2,3],[310,1,1,3,4],[311,1,1,4,5]]],[25,2,2,5,7,[[811,1,1,5,6],[841,1,1,6,7]]]],[7648,7771,8836,9444,9453,20649,21484]]],["at",[2,2,[[19,1,1,0,1,[[634,1,1,0,1]]],[22,1,1,1,2,[[697,1,1,1,2]]]],[16587,18023]]],["beside",[10,10,[[2,3,3,0,3,[[90,1,1,0,1],[95,1,1,1,2],[99,1,1,2,3]]],[4,1,1,3,4,[[163,1,1,3,4]]],[10,2,2,4,6,[[300,1,1,4,5],[303,1,1,5,6]]],[11,1,1,6,7,[[324,1,1,6,7]]],[15,1,1,7,8,[[420,1,1,7,8]]],[25,2,2,8,10,[[810,1,1,8,9],[811,1,1,9,10]]]],[2761,2859,2989,5238,9098,9215,9859,12497,20624,20639]]],["by",[33,30,[[0,3,3,0,3,[[38,2,2,0,2],[40,1,1,2,3]]],[6,1,1,3,4,[[229,1,1,3,4]]],[8,2,2,4,6,[[240,1,1,4,5],[255,1,1,5,6]]],[10,7,6,6,12,[[291,1,1,6,7],[292,1,1,7,8],[294,1,1,8,9],[303,4,3,9,12]]],[13,1,1,12,13,[[375,1,1,12,13]]],[15,5,5,13,18,[[414,1,1,13,14],[415,1,1,14,15],[416,3,3,15,18]]],[19,1,1,18,19,[[635,1,1,18,19]]],[23,2,2,19,21,[[779,1,1,19,20],[785,1,1,20,21]]],[25,10,8,21,29,[[802,2,2,21,23],[811,4,2,23,25],[834,1,1,25,26],[840,1,1,26,27],[844,2,2,27,29]]],[29,1,1,29,30,[[880,1,1,29,30]]]],[1159,1165,1198,7038,7321,7749,8726,8799,8856,9208,9209,9212,11382,12313,12350,12362,12371,12377,16632,19827,19974,20479,20483,20642,20649,21310,21463,21578,21580,22387]]],["hard",[1,1,[[10,1,1,0,1,[[311,1,1,0,1]]]],[9452]]],["near",[3,3,[[4,1,1,0,1,[[168,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]],[26,1,1,2,3,[[857,1,1,2,3]]]],[5363,16583,21978]]],["to",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11779]]],["unto",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21968]]],["with",[3,3,[[0,2,2,0,2,[[38,2,2,0,2]]],[26,1,1,2,3,[[859,1,1,2,3]]]],[1164,1167,22028]]]]},{"k":"H682","v":[["*",[7,5,[[12,6,4,0,4,[[345,3,2,0,2],[346,3,2,2,4]]],[37,1,1,4,5,[[924,1,1,4,5]]]],[10612,10613,10658,10659,23073]]],["Azal",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23073]]],["Azel",[6,4,[[12,6,4,0,4,[[345,3,2,0,2],[346,3,2,2,4]]]],[10612,10613,10658,10659]]]]},{"k":"H683","v":[["Azaliah",[2,2,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]]],[10148,11941]]]]},{"k":"H684","v":[["Ozem",[2,2,[[12,2,2,0,2,[[339,2,2,0,2]]]],[10321,10331]]]]},{"k":"H685","v":[["*",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]]],[4714,8032]]],["bracelet",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8032]]],["chains",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4714]]]]},{"k":"H686","v":[["*",[5,5,[[11,1,1,0,1,[[332,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]],[22,2,2,2,4,[[701,1,1,2,3],[717,1,1,3,4]]],[29,1,1,4,5,[[881,1,1,4,5]]]],[10115,12684,18095,18418,22405]]],["store",[2,2,[[11,1,1,0,1,[[332,1,1,0,1]]],[22,1,1,1,2,[[717,1,1,1,2]]]],[10115,18418]]],["treasured",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18095]]],["treasurers",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12684]]],["up",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22405]]]]},{"k":"H687","v":[["Ezer",[5,5,[[0,3,3,0,3,[[35,3,3,0,3]]],[12,2,2,3,5,[[338,2,2,3,5]]]],[1061,1067,1070,10290,10294]]]]},{"k":"H688","v":[["+",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18735]]]]},{"k":"H689","v":[["goat",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5295]]]]},{"k":"H690","v":[["Ara",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10573]]]]},{"k":"H691","v":[["ones",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18286]]]]},{"k":"H692","v":[["*",[3,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,2,1,1,2,[[142,2,1,1,2]]]],[1402,4506]]],["Areli",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1402,4506]]],["Arelites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4506]]]]},{"k":"H693","v":[["*",[42,40,[[4,1,1,0,1,[[171,1,1,0,1]]],[5,7,7,1,8,[[194,7,7,1,8]]],[6,14,13,8,21,[[219,4,4,8,12],[226,3,3,12,15],[230,6,5,15,20],[231,1,1,20,21]]],[8,3,3,21,24,[[250,1,1,21,22],[257,2,2,22,24]]],[13,1,1,24,25,[[386,1,1,24,25]]],[14,1,1,25,26,[[410,1,1,25,26]]],[17,1,1,26,27,[[466,1,1,26,27]]],[18,3,2,27,29,[[487,2,1,27,28],[536,1,1,28,29]]],[19,6,6,29,35,[[628,2,2,29,31],[634,1,1,31,32],[639,1,1,32,33],[650,1,1,33,34],[651,1,1,34,35]]],[23,1,1,35,36,[[795,1,1,35,36]]],[24,2,2,36,38,[[799,1,1,36,37],[800,1,1,37,38]]],[27,1,1,38,39,[[868,1,1,38,39]]],[32,1,1,39,40,[[899,1,1,39,40]]]],[5417,6004,6006,6009,6014,6016,6021,6023,6779,6786,6788,6797,6951,6958,6961,7083,7087,7090,7091,7092,7122,7565,7795,7800,11609,12232,13597,14050,14793,16411,16418,16587,16725,17072,17094,20224,20364,20439,22184,22666]]],["+",[2,2,[[5,1,1,0,1,[[194,1,1,0,1]]],[19,1,1,1,2,[[651,1,1,1,2]]]],[6009,17094]]],["ambush",[5,5,[[5,5,5,0,5,[[194,5,5,0,5]]]],[6004,6014,6016,6021,6023]]],["ambushes",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20224]]],["ambushments",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11609]]],["wait",[33,31,[[4,1,1,0,1,[[171,1,1,0,1]]],[5,1,1,1,2,[[194,1,1,1,2]]],[6,14,13,2,15,[[219,4,4,2,6],[226,3,3,6,9],[230,6,5,9,14],[231,1,1,14,15]]],[8,3,3,15,18,[[250,1,1,15,16],[257,2,2,16,18]]],[14,1,1,18,19,[[410,1,1,18,19]]],[17,1,1,19,20,[[466,1,1,19,20]]],[18,3,2,20,22,[[487,2,1,20,21],[536,1,1,21,22]]],[19,5,5,22,27,[[628,2,2,22,24],[634,1,1,24,25],[639,1,1,25,26],[650,1,1,26,27]]],[24,2,2,27,29,[[799,1,1,27,28],[800,1,1,28,29]]],[27,1,1,29,30,[[868,1,1,29,30]]],[32,1,1,30,31,[[899,1,1,30,31]]]],[5417,6006,6779,6786,6788,6797,6951,6958,6961,7083,7087,7090,7091,7092,7122,7565,7795,7800,12232,13597,14050,14793,16411,16418,16587,16725,17072,20364,20439,22184,22666]]]]},{"k":"H694","v":[["Arab",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6254]]]]},{"k":"H695","v":[["*",[2,2,[[17,2,2,0,2,[[472,1,1,0,1],[473,1,1,1,2]]]],[13777,13833]]],["+",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13833]]],["dens",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13777]]]]},{"k":"H696","v":[["wait",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19183]]]]},{"k":"H697","v":[["*",[24,21,[[1,7,5,0,5,[[59,7,5,0,5]]],[2,1,1,5,6,[[100,1,1,5,6]]],[4,1,1,6,7,[[180,1,1,6,7]]],[6,2,2,7,9,[[216,1,1,7,8],[217,1,1,8,9]]],[10,1,1,9,10,[[298,1,1,9,10]]],[13,1,1,10,11,[[372,1,1,10,11]]],[17,1,1,11,12,[[474,1,1,11,12]]],[18,3,3,12,15,[[555,1,1,12,13],[582,1,1,13,14],[586,1,1,14,15]]],[19,1,1,15,16,[[657,1,1,15,16]]],[23,1,1,16,17,[[790,1,1,16,17]]],[28,3,2,17,19,[[876,2,1,17,18],[877,1,1,18,19]]],[33,2,2,19,21,[[902,2,2,19,21]]]],[1781,1789,1790,1791,1796,3019,5649,6659,6706,9022,11310,13854,15159,15640,15778,17278,20068,22295,22336,22727,22729]]],["+",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20068]]],["grasshopper",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13854]]],["grasshoppers",[2,2,[[6,2,2,0,2,[[216,1,1,0,1],[217,1,1,1,2]]]],[6659,6706]]],["locust",[9,8,[[1,1,1,0,1,[[59,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[10,1,1,3,4,[[298,1,1,3,4]]],[18,2,2,4,6,[[555,1,1,4,5],[586,1,1,5,6]]],[28,3,2,6,8,[[876,2,1,6,7],[877,1,1,7,8]]]],[1796,3019,5649,9022,15159,15778,22295,22336]]],["locusts",[11,10,[[1,6,5,0,5,[[59,6,5,0,5]]],[13,1,1,5,6,[[372,1,1,5,6]]],[18,1,1,6,7,[[582,1,1,6,7]]],[19,1,1,7,8,[[657,1,1,7,8]]],[33,2,2,8,10,[[902,2,2,8,10]]]],[1781,1789,1790,1791,1796,11310,15640,17278,22727,22729]]]]},{"k":"H698","v":[["spoils",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18129]]]]},{"k":"H699","v":[["*",[9,9,[[0,2,2,0,2,[[6,1,1,0,1],[7,1,1,1,2]]],[11,2,2,2,4,[[319,2,2,2,4]]],[20,1,1,4,5,[[670,1,1,4,5]]],[22,2,2,5,7,[[702,1,1,5,6],[738,1,1,6,7]]],[27,1,1,7,8,[[874,1,1,7,8]]],[38,1,1,8,9,[[927,1,1,8,9]]]],[170,185,9709,9726,17526,18113,18829,22269,23130]]],["+",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22269]]],["windows",[8,8,[[0,2,2,0,2,[[6,1,1,0,1],[7,1,1,1,2]]],[11,2,2,2,4,[[319,2,2,2,4]]],[20,1,1,4,5,[[670,1,1,4,5]]],[22,2,2,5,7,[[702,1,1,5,6],[738,1,1,6,7]]],[38,1,1,7,8,[[927,1,1,7,8]]]],[170,185,9709,9726,17526,18113,18829,23130]]]]},{"k":"H700","v":[["Aruboth",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8854]]]]},{"k":"H701","v":[["Arbite",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8688]]]]},{"k":"H702","v":[["*",[318,277,[[0,15,15,0,15,[[1,1,1,0,1],[10,4,4,1,5],[13,2,2,5,7],[14,1,1,7,8],[22,2,2,8,10],[30,1,1,10,11],[31,1,1,11,12],[32,1,1,12,13],[45,1,1,13,14],[46,1,1,14,15]]],[1,38,26,15,41,[[61,4,4,15,19],[71,1,1,19,20],[74,6,3,20,23],[75,4,3,23,26],[76,5,3,26,29],[77,1,1,29,30],[85,4,3,30,33],[86,6,3,33,36],[87,6,4,36,40],[88,1,1,40,41]]],[2,6,6,41,47,[[100,5,5,41,46],[112,1,1,46,47]]],[3,37,34,47,81,[[117,6,5,47,52],[118,8,7,52,59],[123,4,4,59,63],[125,3,3,63,66],[132,1,1,66,67],[141,1,1,67,68],[142,5,4,68,72],[144,1,1,72,73],[145,8,8,73,81]]],[4,2,2,81,83,[[155,1,1,81,82],[174,1,1,82,83]]],[5,12,12,83,95,[[191,1,1,83,84],[201,1,1,84,85],[204,1,1,85,86],[205,1,1,86,87],[207,8,8,87,95]]],[6,7,7,95,102,[[219,1,1,95,96],[221,1,1,96,97],[229,1,1,97,98],[230,3,3,98,101],[231,1,1,101,102]]],[8,6,6,102,108,[[239,1,1,102,103],[257,1,1,103,104],[260,1,1,104,105],[262,1,1,105,106],[265,2,2,106,108]]],[9,2,2,108,110,[[287,2,2,108,110]]],[10,22,18,110,128,[[296,1,1,110,111],[297,11,8,111,119],[298,1,1,119,120],[299,1,1,120,121],[300,1,1,121,122],[305,1,1,122,123],[308,4,3,123,126],[312,2,2,126,128]]],[11,3,3,128,131,[[319,1,1,128,129],[326,1,1,129,130],[330,1,1,130,131]]],[12,36,34,131,165,[[340,1,1,131,132],[342,1,1,132,133],[344,2,2,133,135],[346,2,2,135,137],[349,1,1,137,138],[357,1,1,138,139],[358,2,2,139,141],[360,5,4,141,145],[361,2,2,145,147],[362,3,3,147,150],[363,3,2,150,152],[364,13,13,152,165]]],[13,11,11,165,176,[[367,1,1,165,166],[369,1,1,166,167],[370,1,1,167,168],[374,1,1,168,169],[375,1,1,169,170],[379,2,2,170,172],[384,1,1,172,173],[391,1,1,173,174],[396,1,1,174,175],[401,1,1,175,176]]],[14,10,9,176,185,[[403,2,2,176,178],[404,7,6,178,184],[408,1,1,184,185]]],[15,10,10,185,195,[[418,1,1,185,186],[419,6,6,186,192],[421,1,1,192,193],[423,2,2,193,195]]],[16,5,5,195,200,[[434,5,5,195,200]]],[17,3,3,200,203,[[436,1,1,200,201],[477,2,2,201,203]]],[19,5,5,203,208,[[657,5,5,203,208]]],[22,3,3,208,211,[[689,1,1,208,209],[695,1,1,209,210],[714,1,1,210,211]]],[23,6,5,211,216,[[759,1,1,211,212],[780,1,1,212,213],[793,2,1,213,214],[796,2,2,214,216]]],[25,52,37,216,253,[[802,12,8,216,224],[808,1,1,224,225],[811,8,6,225,231],[815,1,1,231,232],[838,1,1,232,233],[841,4,3,233,236],[842,1,1,236,237],[843,1,1,237,238],[844,9,5,238,243],[846,2,2,243,245],[847,4,3,245,248],[849,8,5,248,253]]],[26,7,5,253,258,[[850,1,1,253,254],[857,4,2,254,256],[859,1,1,256,257],[860,1,1,257,258]]],[29,8,8,258,266,[[879,5,5,258,263],[880,3,3,263,266]]],[36,4,4,266,270,[[909,1,1,266,267],[910,3,3,267,270]]],[37,8,7,270,277,[[911,3,3,270,273],[912,1,1,273,274],[916,2,2,274,276],[917,2,1,276,277]]]],[40,279,281,282,283,341,345,373,586,587,914,934,961,1408,1444,1822,1834,1856,1857,2114,2207,2221,2229,2237,2243,2267,2274,2276,2288,2310,2575,2581,2602,2607,2617,2624,2635,2638,2652,2662,2674,3017,3018,3020,3024,3039,3407,3631,3633,3635,3641,3647,3662,3664,3666,3667,3674,3681,3688,3857,3858,3935,3938,3968,3970,3976,4243,4480,4514,4532,4536,4539,4593,4621,4623,4625,4628,4631,4634,4637,4640,4986,5482,5944,6238,6321,6328,6399,6403,6405,6410,6412,6416,6418,6420,6788,6869,7026,7056,7071,7101,7114,7299,7789,7874,7937,7988,7995,8600,8602,8897,8936,8953,8961,8964,8966,8968,8972,8976,9050,9079,9105,9282,9360,9363,9374,9486,9521,9710,9909,10037,10366,10446,10536,10542,10639,10641,10746,10932,10939,10954,10987,10988,10993,10995,11028,11033,11051,11067,11077,11094,11095,11110,11111,11113,11114,11116,11117,11118,11119,11120,11121,11122,11123,11124,11208,11231,11259,11364,11389,11456,11474,11547,11727,11842,11967,12026,12027,12034,12042,12058,12067,12091,12094,12170,12405,12432,12443,12454,12463,12486,12489,12512,12594,12606,12849,12851,12852,12853,12855,12888,13934,13938,17266,17269,17272,17275,17280,17896,17989,18331,19318,19865,20163,20297,20306,20469,20470,20472,20474,20479,20480,20481,20482,20579,20642,20643,20644,20645,20647,20654,20752,21406,21478,21518,21519,21531,21572,21586,21587,21588,21589,21592,21649,21651,21676,21677,21678,21718,21732,21734,21735,21736,21754,21969,21983,22019,22040,22367,22370,22373,22375,22377,22380,22383,22385,22855,22865,22873,22875,22885,22896,22898,22905,22948,22952,22963]]],["+",[52,50,[[0,3,3,0,3,[[13,1,1,0,1],[30,1,1,1,2],[45,1,1,2,3]]],[1,2,2,3,5,[[61,2,2,3,5]]],[2,1,1,5,6,[[112,1,1,5,6]]],[3,15,15,6,21,[[117,1,1,6,7],[118,1,1,7,8],[125,3,3,8,11],[132,1,1,11,12],[144,1,1,12,13],[145,8,8,13,21]]],[5,3,3,21,24,[[191,1,1,21,22],[201,1,1,22,23],[204,1,1,23,24]]],[10,1,1,24,25,[[298,1,1,24,25]]],[11,1,1,25,26,[[330,1,1,25,26]]],[12,3,3,26,29,[[361,1,1,26,27],[362,2,2,27,29]]],[13,3,3,29,32,[[379,1,1,29,30],[396,1,1,30,31],[401,1,1,31,32]]],[14,2,2,32,34,[[404,1,1,32,33],[408,1,1,33,34]]],[15,1,1,34,35,[[419,1,1,34,35]]],[16,5,5,35,40,[[434,5,5,35,40]]],[17,1,1,40,41,[[477,1,1,40,41]]],[22,2,2,41,43,[[689,1,1,41,42],[714,1,1,42,43]]],[23,1,1,43,44,[[793,1,1,43,44]]],[25,7,5,44,49,[[811,2,1,44,45],[838,1,1,45,46],[841,1,1,46,47],[844,2,1,47,48],[846,1,1,48,49]]],[37,1,1,49,50,[[916,1,1,49,50]]]],[341,914,1408,1822,1834,3407,3631,3662,3968,3970,3976,4243,4593,4621,4623,4625,4628,4631,4634,4637,4640,5944,6238,6321,9050,10037,11028,11051,11067,11474,11842,11967,12091,12170,12486,12849,12851,12852,12853,12855,13934,17896,18331,20163,20654,21406,21478,21589,21651,22948]]],["Four",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21518]]],["four",[260,226,[[0,12,12,0,12,[[1,1,1,0,1],[10,4,4,1,5],[13,1,1,5,6],[14,1,1,6,7],[22,2,2,7,9],[31,1,1,9,10],[32,1,1,10,11],[46,1,1,11,12]]],[1,36,24,12,36,[[61,2,2,12,14],[71,1,1,14,15],[74,6,3,15,18],[75,4,3,18,21],[76,5,3,21,24],[77,1,1,24,25],[85,4,3,25,28],[86,6,3,28,31],[87,6,4,31,35],[88,1,1,35,36]]],[2,5,5,36,41,[[100,5,5,36,41]]],[3,22,19,41,60,[[117,5,4,41,45],[118,7,6,45,51],[123,4,4,51,55],[141,1,1,55,56],[142,5,4,56,60]]],[4,2,2,60,62,[[155,1,1,60,61],[174,1,1,61,62]]],[5,9,9,62,71,[[205,1,1,62,63],[207,8,8,63,71]]],[6,7,7,71,78,[[219,1,1,71,72],[221,1,1,72,73],[229,1,1,73,74],[230,3,3,74,77],[231,1,1,77,78]]],[8,6,6,78,84,[[239,1,1,78,79],[257,1,1,79,80],[260,1,1,80,81],[262,1,1,81,82],[265,2,2,82,84]]],[9,2,2,84,86,[[287,2,2,84,86]]],[10,20,16,86,102,[[296,1,1,86,87],[297,11,8,87,95],[299,1,1,95,96],[300,1,1,96,97],[305,1,1,97,98],[308,4,3,98,101],[312,1,1,101,102]]],[11,2,2,102,104,[[319,1,1,102,103],[326,1,1,103,104]]],[12,33,31,104,135,[[340,1,1,104,105],[342,1,1,105,106],[344,2,2,106,108],[346,2,2,108,110],[349,1,1,110,111],[357,1,1,111,112],[358,2,2,112,114],[360,5,4,114,118],[361,1,1,118,119],[362,1,1,119,120],[363,3,2,120,122],[364,13,13,122,135]]],[13,7,7,135,142,[[367,1,1,135,136],[370,1,1,136,137],[374,1,1,137,138],[375,1,1,138,139],[379,1,1,139,140],[384,1,1,140,141],[391,1,1,141,142]]],[14,8,7,142,149,[[403,2,2,142,144],[404,6,5,144,149]]],[15,8,8,149,157,[[418,1,1,149,150],[419,5,5,150,155],[423,2,2,155,157]]],[17,2,2,157,159,[[436,1,1,157,158],[477,1,1,158,159]]],[19,5,5,159,164,[[657,5,5,159,164]]],[22,1,1,164,165,[[695,1,1,164,165]]],[23,5,5,165,170,[[759,1,1,165,166],[780,1,1,166,167],[793,1,1,167,168],[796,2,2,168,170]]],[25,44,34,170,204,[[802,12,8,170,178],[808,1,1,178,179],[811,6,6,179,185],[815,1,1,185,186],[841,2,2,186,188],[842,1,1,188,189],[843,1,1,189,190],[844,7,5,190,195],[846,1,1,195,196],[847,4,3,196,199],[849,8,5,199,204]]],[26,7,5,204,209,[[850,1,1,204,205],[857,4,2,205,207],[859,1,1,207,208],[860,1,1,208,209]]],[29,8,8,209,217,[[879,5,5,209,214],[880,3,3,214,217]]],[36,4,4,217,221,[[909,1,1,217,218],[910,3,3,218,221]]],[37,5,5,221,226,[[911,3,3,221,224],[912,1,1,224,225],[916,1,1,225,226]]]],[40,279,281,282,283,345,373,586,587,934,961,1444,1856,1857,2114,2207,2221,2229,2237,2243,2267,2274,2276,2288,2310,2575,2581,2602,2607,2617,2624,2635,2638,2652,2662,2674,3017,3018,3020,3024,3039,3633,3635,3641,3647,3664,3666,3667,3674,3681,3688,3857,3858,3935,3938,4480,4514,4532,4536,4539,4986,5482,6328,6399,6403,6405,6410,6412,6416,6418,6420,6788,6869,7026,7056,7071,7101,7114,7299,7789,7874,7937,7988,7995,8600,8602,8897,8936,8953,8961,8964,8966,8968,8972,8976,9079,9105,9282,9360,9363,9374,9486,9710,9909,10366,10446,10536,10542,10639,10641,10746,10932,10939,10954,10987,10988,10993,10995,11033,11077,11094,11095,11110,11111,11113,11114,11116,11117,11118,11119,11120,11121,11122,11123,11124,11208,11259,11364,11389,11456,11547,11727,12026,12027,12034,12042,12058,12067,12094,12405,12432,12443,12454,12463,12489,12594,12606,12888,13938,17266,17269,17272,17275,17280,17989,19318,19865,20163,20297,20306,20469,20470,20472,20474,20479,20480,20481,20482,20579,20642,20643,20644,20645,20647,20654,20752,21518,21519,21531,21572,21586,21587,21588,21589,21592,21649,21676,21677,21678,21718,21732,21734,21735,21736,21754,21969,21983,22019,22040,22367,22370,22373,22375,22377,22380,22383,22385,22855,22865,22873,22875,22885,22896,22898,22905,22952]]],["fourth",[5,4,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[369,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[37,2,1,3,4,[[917,2,1,3,4]]]],[9521,11231,12512,22963]]]]},{"k":"H703","v":[["four",[8,6,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,7,5,1,6,[[852,1,1,1,2],[856,6,4,2,6]]]],[12168,21832,21935,21936,21939,21950]]]]},{"k":"H704","v":[["Arba",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[207,1,1,1,2]]]],[6215,6392]]]]},{"k":"H705","v":[["*",[136,124,[[0,15,12,0,12,[[4,1,1,0,1],[6,5,3,1,4],[7,1,1,4,5],[17,3,2,5,7],[24,1,1,7,8],[25,1,1,8,9],[31,1,1,9,10],[46,1,1,10,11],[49,1,1,11,12]]],[1,9,7,12,19,[[65,1,1,12,13],[73,2,1,13,14],[75,2,2,14,16],[83,2,1,16,17],[85,2,2,17,19]]],[2,1,1,19,20,[[114,1,1,19,20]]],[3,20,19,20,39,[[117,4,4,20,24],[118,4,4,24,28],[129,1,1,28,29],[130,3,2,29,31],[142,4,4,31,35],[148,1,1,35,36],[149,1,1,36,37],[151,2,2,37,39]]],[4,16,11,39,50,[[153,1,1,39,40],[154,1,1,40,41],[160,2,2,41,43],[161,8,4,43,47],[162,2,1,47,48],[177,1,1,48,49],[181,1,1,49,50]]],[5,5,5,50,55,[[190,1,1,50,51],[191,1,1,51,52],[200,2,2,52,54],[207,1,1,54,55]]],[6,7,7,55,62,[[213,1,1,55,56],[215,2,2,56,58],[218,1,1,58,59],[222,2,2,59,61],[223,1,1,61,62]]],[8,2,2,62,64,[[239,1,1,62,63],[252,1,1,63,64]]],[9,4,4,64,68,[[268,1,1,64,65],[271,1,1,65,66],[276,1,1,66,67],[281,1,1,67,68]]],[10,10,9,68,77,[[292,1,1,68,69],[294,1,1,69,70],[296,1,1,70,71],[297,2,2,71,73],[301,1,1,73,74],[304,1,1,74,75],[305,1,1,75,76],[309,2,1,76,77]]],[11,5,5,77,82,[[314,1,1,77,78],[320,1,1,78,79],[322,1,1,79,80],[324,1,1,80,81],[326,1,1,81,82]]],[12,5,5,82,87,[[342,1,1,82,83],[349,1,1,83,84],[356,1,1,84,85],[363,1,1,85,86],[366,1,1,86,87]]],[13,5,5,87,92,[[375,1,1,87,88],[378,1,1,88,89],[382,1,1,89,90],[388,1,1,90,91],[390,1,1,91,92]]],[14,7,7,92,99,[[404,7,7,92,99]]],[15,13,13,99,112,[[417,1,1,99,100],[419,10,10,100,110],[421,1,1,110,111],[423,1,1,111,112]]],[17,1,1,112,113,[[477,1,1,112,113]]],[18,1,1,113,114,[[572,1,1,113,114]]],[23,1,1,114,115,[[796,1,1,114,115]]],[25,6,6,115,121,[[805,1,1,115,116],[830,3,3,116,119],[842,1,1,119,120],[847,1,1,120,121]]],[29,2,2,121,123,[[880,1,1,121,122],[883,1,1,122,123]]],[31,1,1,123,124,[[891,1,1,123,124]]]],[118,163,171,176,189,452,453,678,726,943,1448,1509,1982,2195,2254,2256,2524,2590,2592,3477,3625,3629,3637,3645,3669,3673,3677,3686,4100,4141,4142,4496,4507,4530,4539,4731,4798,4851,4852,4895,4945,5139,5141,5166,5168,5175,5182,5196,5550,5684,5923,5940,6194,6197,6422,6579,6631,6654,6747,6875,6883,6885,7315,7634,8059,8136,8258,8396,8781,8870,8913,8937,8972,9150,9239,9259,9395,9575,9736,9807,9851,9919,10446,10756,10925,11108,11191,11394,11450,11522,11646,11678,12035,12037,12051,12052,12061,12065,12093,12397,12433,12435,12448,12449,12456,12461,12464,12482,12487,12488,12532,12601,13938,15464,20306,20535,21194,21195,21196,21528,21677,22389,22448,22562]]],["+",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[453]]],["Forty",[4,4,[[4,1,1,0,1,[[177,1,1,0,1]]],[5,1,1,1,2,[[200,1,1,1,2]]],[13,1,1,2,3,[[388,1,1,2,3]]],[18,1,1,3,4,[[572,1,1,3,4]]]],[5550,6194,11646,15464]]],["fortieth",[4,4,[[3,1,1,0,1,[[149,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[12,1,1,2,3,[[363,1,1,2,3]]],[13,1,1,3,4,[[382,1,1,3,4]]]],[4798,4895,11108,11522]]],["forty",[127,116,[[0,14,12,0,12,[[4,1,1,0,1],[6,5,3,1,4],[7,1,1,4,5],[17,2,2,5,7],[24,1,1,7,8],[25,1,1,8,9],[31,1,1,9,10],[46,1,1,10,11],[49,1,1,11,12]]],[1,9,7,12,19,[[65,1,1,12,13],[73,2,1,13,14],[75,2,2,14,16],[83,2,1,16,17],[85,2,2,17,19]]],[2,1,1,19,20,[[114,1,1,19,20]]],[3,19,18,20,38,[[117,4,4,20,24],[118,4,4,24,28],[129,1,1,28,29],[130,3,2,29,31],[142,4,4,31,35],[148,1,1,35,36],[151,2,2,36,38]]],[4,14,9,38,47,[[154,1,1,38,39],[160,2,2,39,41],[161,8,4,41,45],[162,2,1,45,46],[181,1,1,46,47]]],[5,4,4,47,51,[[190,1,1,47,48],[191,1,1,48,49],[200,1,1,49,50],[207,1,1,50,51]]],[6,7,7,51,58,[[213,1,1,51,52],[215,2,2,52,54],[218,1,1,54,55],[222,2,2,55,57],[223,1,1,57,58]]],[8,2,2,58,60,[[239,1,1,58,59],[252,1,1,59,60]]],[9,4,4,60,64,[[268,1,1,60,61],[271,1,1,61,62],[276,1,1,62,63],[281,1,1,63,64]]],[10,10,9,64,73,[[292,1,1,64,65],[294,1,1,65,66],[296,1,1,66,67],[297,2,2,67,69],[301,1,1,69,70],[304,1,1,70,71],[305,1,1,71,72],[309,2,1,72,73]]],[11,5,5,73,78,[[314,1,1,73,74],[320,1,1,74,75],[322,1,1,75,76],[324,1,1,76,77],[326,1,1,77,78]]],[12,4,4,78,82,[[342,1,1,78,79],[349,1,1,79,80],[356,1,1,80,81],[366,1,1,81,82]]],[13,3,3,82,85,[[375,1,1,82,83],[378,1,1,83,84],[390,1,1,84,85]]],[14,7,7,85,92,[[404,7,7,85,92]]],[15,13,13,92,105,[[417,1,1,92,93],[419,10,10,93,103],[421,1,1,103,104],[423,1,1,104,105]]],[17,1,1,105,106,[[477,1,1,105,106]]],[23,1,1,106,107,[[796,1,1,106,107]]],[25,6,6,107,113,[[805,1,1,107,108],[830,3,3,108,111],[842,1,1,111,112],[847,1,1,112,113]]],[29,2,2,113,115,[[880,1,1,113,114],[883,1,1,114,115]]],[31,1,1,115,116,[[891,1,1,115,116]]]],[118,163,171,176,189,452,453,678,726,943,1448,1509,1982,2195,2254,2256,2524,2590,2592,3477,3625,3629,3637,3645,3669,3673,3677,3686,4100,4141,4142,4496,4507,4530,4539,4731,4851,4852,4945,5139,5141,5166,5168,5175,5182,5196,5684,5923,5940,6197,6422,6579,6631,6654,6747,6875,6883,6885,7315,7634,8059,8136,8258,8396,8781,8870,8913,8937,8972,9150,9239,9259,9395,9575,9736,9807,9851,9919,10446,10756,10925,11191,11394,11450,11678,12035,12037,12051,12052,12061,12065,12093,12397,12433,12435,12448,12449,12456,12461,12464,12482,12487,12488,12532,12601,13938,20306,20535,21194,21195,21196,21528,21677,22389,22448,22562]]]]},{"k":"H706","v":[["fourfold",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8292]]]]},{"k":"H707","v":[["*",[13,13,[[1,4,4,0,4,[[77,1,1,0,1],[84,1,1,1,2],[88,2,2,2,4]]],[6,1,1,4,5,[[226,1,1,4,5]]],[8,1,1,5,6,[[252,1,1,5,6]]],[9,1,1,6,7,[[287,1,1,6,7]]],[11,1,1,7,8,[[335,1,1,7,8]]],[12,2,2,8,10,[[348,1,1,8,9],[357,1,1,9,10]]],[22,3,3,10,13,[[697,1,1,10,11],[716,1,1,11,12],[737,1,1,12,13]]]],[2325,2566,2686,2691,6962,7625,8599,10172,10696,10931,18013,18402,18805]]],["+",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6962]]],["weave",[2,2,[[22,2,2,0,2,[[697,1,1,0,1],[737,1,1,1,2]]]],[18013,18805]]],["weaver",[2,2,[[1,1,1,0,1,[[84,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]]],[2566,18402]]],["weaver's",[4,4,[[8,1,1,0,1,[[252,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]],[12,2,2,2,4,[[348,1,1,2,3],[357,1,1,3,4]]]],[7625,8599,10696,10931]]],["wove",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10172]]],["woven",[3,3,[[1,3,3,0,3,[[77,1,1,0,1],[88,2,2,1,3]]]],[2325,2686,2691]]]]},{"k":"H708","v":[["*",[2,2,[[6,1,1,0,1,[[226,1,1,0,1]]],[17,1,1,1,2,[[442,1,1,1,2]]]],[6963,13014]]],["beam",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6963]]],["shuttle",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13014]]]]},{"k":"H709","v":[["Argob",[5,5,[[4,3,3,0,3,[[155,3,3,0,3]]],[10,1,1,3,4,[[294,1,1,3,4]]],[11,1,1,4,5,[[327,1,1,4,5]]]],[4979,4988,4989,8857,9950]]]]},{"k":"H710","v":[["purple",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11218]]]]},{"k":"H711","v":[["scarlet",[3,3,[[26,3,3,0,3,[[854,3,3,0,3]]]],[21881,21890,21903]]]]},{"k":"H712","v":[["coffer",[3,3,[[8,3,3,0,3,[[241,3,3,0,3]]]],[7339,7342,7346]]]]},{"k":"H713","v":[["purple",[38,38,[[1,26,26,0,26,[[74,1,1,0,1],[75,3,3,1,4],[76,1,1,4,5],[77,5,5,5,10],[84,4,4,10,14],[85,3,3,14,17],[87,2,2,17,19],[88,7,7,19,26]]],[3,1,1,26,27,[[120,1,1,26,27]]],[6,1,1,27,28,[[218,1,1,27,28]]],[13,2,2,28,30,[[368,1,1,28,29],[369,1,1,29,30]]],[16,2,2,30,32,[[426,1,1,30,31],[433,1,1,31,32]]],[19,1,1,32,33,[[658,1,1,32,33]]],[21,2,2,33,35,[[673,1,1,33,34],[677,1,1,34,35]]],[23,1,1,35,36,[[754,1,1,35,36]]],[25,2,2,36,38,[[828,2,2,36,38]]]],[2199,2236,2266,2271,2288,2298,2299,2301,2308,2326,2537,2554,2556,2566,2574,2601,2603,2651,2656,2665,2666,2667,2669,2672,2688,2693,3756,6745,11225,11243,12708,12832,17306,17581,17632,19210,21128,21137]]]]},{"k":"H714","v":[["Ard",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1407,4529]]]]},{"k":"H715","v":[["Ardon",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10324]]]]},{"k":"H716","v":[["Ardites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4529]]]]},{"k":"H717","v":[["*",[2,2,[[18,1,1,0,1,[[557,1,1,0,1]]],[21,1,1,1,2,[[675,1,1,1,2]]]],[15210,17599]]],["gathered",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17599]]],["pluck",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15210]]]]},{"k":"H718","v":[["*",[5,5,[[26,5,5,0,5,[[856,5,5,0,5]]]],[21935,21938,21939,21940,21946]]],["behold",[4,4,[[26,4,4,0,4,[[856,4,4,0,4]]]],[21935,21938,21940,21946]]],["lo",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21939]]]]},{"k":"H719","v":[["Arvad",[2,2,[[25,2,2,0,2,[[828,2,2,0,2]]]],[21129,21132]]]]},{"k":"H720","v":[["Arod",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4506]]]]},{"k":"H721","v":[["Arvadite",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[252,10268]]]]},{"k":"H722","v":[["*",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1402,4506]]],["Arodi",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1402]]],["Arodites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4506]]]]},{"k":"H723","v":[["stalls",[3,3,[[10,1,1,0,1,[[294,1,1,0,1]]],[13,2,2,1,3,[[375,1,1,1,2],[398,1,1,2,3]]]],[8870,11389,11903]]]]},{"k":"H724","v":[["*",[6,6,[[13,1,1,0,1,[[390,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]],[22,1,1,2,3,[[736,1,1,2,3]]],[23,3,3,3,6,[[752,1,1,3,4],[774,1,1,4,5],[777,1,1,5,6]]]],[11690,12366,18794,19175,19684,19781]]],["+",[2,2,[[13,1,1,0,1,[[390,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]]],[11690,12366]]],["health",[4,4,[[22,1,1,0,1,[[736,1,1,0,1]]],[23,3,3,1,4,[[752,1,1,1,2],[774,1,1,2,3],[777,1,1,3,4]]]],[18794,19175,19684,19781]]]]},{"k":"H725","v":[["Arumah",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6795]]]]},{"k":"H726","v":[["Syrians",[1,1,[[11,1,1,0,1,[[328,1,1,0,1]]]],[9969]]]]},{"k":"H727","v":[["*",[202,174,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,26,19,1,20,[[74,8,6,1,7],[75,2,2,7,9],[79,2,2,9,11],[80,1,1,11,12],[84,1,1,12,13],[86,3,2,13,15],[88,1,1,15,16],[89,8,4,16,20]]],[2,1,1,20,21,[[105,1,1,20,21]]],[3,6,6,21,27,[[119,1,1,21,22],[120,1,1,22,23],[123,1,1,23,24],[126,2,2,24,26],[130,1,1,26,27]]],[4,8,8,27,35,[[162,5,5,27,32],[183,3,3,32,35]]],[5,30,25,35,60,[[189,10,8,35,43],[190,7,7,43,50],[192,10,8,50,58],[193,1,1,58,59],[194,2,1,59,60]]],[6,1,1,60,61,[[230,1,1,60,61]]],[8,40,33,61,94,[[238,1,1,61,62],[239,12,11,62,73],[240,12,8,73,81],[241,10,10,81,91],[242,3,2,91,93],[249,2,1,93,94]]],[9,21,18,94,112,[[272,15,13,94,107],[273,1,1,107,108],[277,1,1,108,109],[281,4,3,109,112]]],[10,12,11,112,123,[[292,1,1,112,113],[293,1,1,113,114],[296,1,1,114,115],[298,9,8,115,123]]],[11,2,2,123,125,[[324,2,2,123,125]]],[12,34,31,125,156,[[343,1,1,125,126],[350,9,9,126,135],[352,15,13,135,148],[353,5,4,148,152],[354,1,1,152,153],[359,1,1,153,154],[365,2,2,154,156]]],[13,18,16,156,172,[[367,1,1,156,157],[371,9,8,157,165],[372,2,2,165,167],[374,1,1,167,168],[390,4,3,168,171],[401,1,1,171,172]]],[18,1,1,172,173,[[609,1,1,172,173]]],[23,1,1,173,174,[[747,1,1,173,174]]]],[1532,2205,2209,2210,2211,2216,2217,2268,2269,2388,2408,2427,2543,2605,2609,2699,2710,2712,2727,2728,3203,3723,3748,3939,4021,4023,4152,5187,5188,5189,5191,5194,5737,5753,5754,5896,5899,5901,5904,5906,5907,5908,5910,5915,5917,5919,5920,5921,5926,5928,5953,5955,5956,5957,5958,5960,5961,5962,5982,6035,7081,7279,7300,7301,7302,7303,7308,7310,7314,7315,7316,7318,7319,7320,7321,7322,7323,7326,7327,7329,7330,7332,7333,7334,7339,7342,7344,7346,7349,7350,7352,7353,7354,7526,8159,8160,8161,8163,8164,8166,8167,8168,8169,8170,8172,8173,8174,8182,8270,8413,8414,8418,8796,8831,8915,8986,8988,8989,8990,8991,8992,8994,9006,9859,9860,10485,10763,10765,10766,10767,10769,10770,10772,10773,10774,10792,10793,10794,10803,10805,10806,10814,10815,10816,10817,10818,10819,10820,10821,10824,10826,10857,10864,10983,11145,11161,11198,11270,11272,11273,11274,11275,11276,11277,11278,11293,11323,11357,11685,11687,11688,11969,16159,19018]]],["+",[2,2,[[1,1,1,0,1,[[74,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]]],[2211,10485]]],["ark",[193,166,[[1,25,18,0,18,[[74,7,5,0,5],[75,2,2,5,7],[79,2,2,7,9],[80,1,1,9,10],[84,1,1,10,11],[86,3,2,11,13],[88,1,1,13,14],[89,8,4,14,18]]],[2,1,1,18,19,[[105,1,1,18,19]]],[3,6,6,19,25,[[119,1,1,19,20],[120,1,1,20,21],[123,1,1,21,22],[126,2,2,22,24],[130,1,1,24,25]]],[4,8,8,25,33,[[162,5,5,25,30],[183,3,3,30,33]]],[5,30,25,33,58,[[189,10,8,33,41],[190,7,7,41,48],[192,10,8,48,56],[193,1,1,56,57],[194,2,1,57,58]]],[6,1,1,58,59,[[230,1,1,58,59]]],[8,40,33,59,92,[[238,1,1,59,60],[239,12,11,60,71],[240,12,8,71,79],[241,10,10,79,89],[242,3,2,89,91],[249,2,1,91,92]]],[9,21,18,92,110,[[272,15,13,92,105],[273,1,1,105,106],[277,1,1,106,107],[281,4,3,107,110]]],[10,12,11,110,121,[[292,1,1,110,111],[293,1,1,111,112],[296,1,1,112,113],[298,9,8,113,121]]],[12,33,30,121,151,[[350,9,9,121,130],[352,15,13,130,143],[353,5,4,143,147],[354,1,1,147,148],[359,1,1,148,149],[365,2,2,149,151]]],[13,14,13,151,164,[[367,1,1,151,152],[371,9,8,152,160],[372,2,2,160,162],[374,1,1,162,163],[401,1,1,163,164]]],[18,1,1,164,165,[[609,1,1,164,165]]],[23,1,1,165,166,[[747,1,1,165,166]]]],[2205,2209,2210,2216,2217,2268,2269,2388,2408,2427,2543,2605,2609,2699,2710,2712,2727,2728,3203,3723,3748,3939,4021,4023,4152,5187,5188,5189,5191,5194,5737,5753,5754,5896,5899,5901,5904,5906,5907,5908,5910,5915,5917,5919,5920,5921,5926,5928,5953,5955,5956,5957,5958,5960,5961,5962,5982,6035,7081,7279,7300,7301,7302,7303,7308,7310,7314,7315,7316,7318,7319,7320,7321,7322,7323,7326,7327,7329,7330,7332,7333,7334,7339,7342,7344,7346,7349,7350,7352,7353,7354,7526,8159,8160,8161,8163,8164,8166,8167,8168,8169,8170,8172,8173,8174,8182,8270,8413,8414,8418,8796,8831,8915,8986,8988,8989,8990,8991,8992,8994,9006,10763,10765,10766,10767,10769,10770,10772,10773,10774,10792,10793,10794,10803,10805,10806,10814,10815,10816,10817,10818,10819,10820,10821,10824,10826,10857,10864,10983,11145,11161,11198,11270,11272,11273,11274,11275,11276,11277,11278,11293,11323,11357,11969,16159,19018]]],["chest",[6,5,[[11,2,2,0,2,[[324,2,2,0,2]]],[13,4,3,2,5,[[390,4,3,2,5]]]],[9859,9860,11685,11687,11688]]],["coffin",[1,1,[[0,1,1,0,1,[[49,1,1,0,1]]]],[1532]]]]},{"k":"H728","v":[["Araunah",[9,7,[[9,9,7,0,7,[[290,9,7,0,7]]]],[8708,8710,8712,8713,8714,8715,8716]]]]},{"k":"H729","v":[["cedar",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21145]]]]},{"k":"H730","v":[["*",[73,69,[[2,5,5,0,5,[[103,5,5,0,5]]],[3,2,2,5,7,[[135,1,1,5,6],[140,1,1,6,7]]],[6,1,1,7,8,[[219,1,1,7,8]]],[9,3,3,8,11,[[271,1,1,8,9],[273,2,2,9,11]]],[10,20,18,11,29,[[294,1,1,11,12],[295,3,3,12,15],[296,8,7,15,22],[297,6,5,22,27],[299,1,1,27,28],[300,1,1,28,29]]],[11,2,2,29,31,[[326,1,1,29,30],[331,1,1,30,31]]],[12,5,4,31,35,[[351,1,1,31,32],[354,2,2,32,34],[359,2,1,34,35]]],[13,5,5,35,40,[[367,1,1,35,36],[368,2,2,36,38],[375,1,1,38,39],[391,1,1,39,40]]],[14,1,1,40,41,[[405,1,1,40,41]]],[17,1,1,41,42,[[475,1,1,41,42]]],[18,6,5,42,47,[[506,2,1,42,43],[557,1,1,43,44],[569,1,1,44,45],[581,1,1,45,46],[625,1,1,46,47]]],[21,3,3,47,50,[[671,1,1,47,48],[675,1,1,48,49],[678,1,1,49,50]]],[22,6,6,50,56,[[680,1,1,50,51],[687,1,1,51,52],[692,1,1,52,53],[715,1,1,53,54],[719,1,1,54,55],[722,1,1,55,56]]],[23,4,4,56,60,[[766,4,4,56,60]]],[25,6,6,60,66,[[818,3,3,60,63],[828,1,1,63,64],[832,2,2,64,66]]],[29,1,1,66,67,[[880,1,1,66,67]]],[37,2,2,67,69,[[921,2,2,67,69]]]],[3115,3117,3160,3162,3163,4295,4452,6769,8143,8182,8187,8877,8884,8886,8888,8905,8906,8911,8912,8914,8916,8932,8936,8937,8941,8945,8946,9062,9106,9905,10084,10775,10864,10869,10968,11209,11214,11219,11391,11722,12104,13881,14313,15208,15423,15587,16380,17554,17613,17649,17698,17839,17936,18376,18470,18547,19461,19468,19469,19477,20828,20847,20848,21126,21233,21238,22388,23029,23030]]],["cedar",[43,40,[[2,5,5,0,5,[[103,5,5,0,5]]],[3,1,1,5,6,[[135,1,1,5,6]]],[9,3,3,6,9,[[271,1,1,6,7],[273,2,2,7,9]]],[10,16,14,9,23,[[295,2,2,9,11],[296,8,7,11,18],[297,5,4,18,22],[299,1,1,22,23]]],[11,1,1,23,24,[[326,1,1,23,24]]],[12,2,1,24,25,[[359,2,1,24,25]]],[13,2,2,25,27,[[368,1,1,25,26],[391,1,1,26,27]]],[14,1,1,27,28,[[405,1,1,27,28]]],[17,1,1,28,29,[[475,1,1,28,29]]],[18,1,1,29,30,[[569,1,1,29,30]]],[21,2,2,30,32,[[671,1,1,30,31],[678,1,1,31,32]]],[22,1,1,32,33,[[719,1,1,32,33]]],[23,2,2,33,35,[[766,2,2,33,35]]],[25,4,4,35,39,[[818,3,3,35,38],[832,1,1,38,39]]],[37,1,1,39,40,[[921,1,1,39,40]]]],[3115,3117,3160,3162,3163,4295,8143,8182,8187,8886,8888,8905,8906,8911,8912,8914,8916,8932,8936,8937,8941,8946,9062,9905,10968,11219,11722,12104,13881,15423,17554,17649,18470,19468,19469,20828,20847,20848,21233,23030]]],["cedars",[24,23,[[6,1,1,0,1,[[219,1,1,0,1]]],[10,2,2,1,3,[[297,1,1,1,2],[300,1,1,2,3]]],[12,3,3,3,6,[[351,1,1,3,4],[354,2,2,4,6]]],[13,1,1,6,7,[[368,1,1,6,7]]],[18,5,4,7,11,[[506,2,1,7,8],[557,1,1,8,9],[581,1,1,9,10],[625,1,1,10,11]]],[21,1,1,11,12,[[675,1,1,11,12]]],[22,5,5,12,17,[[680,1,1,12,13],[687,1,1,13,14],[692,1,1,14,15],[715,1,1,15,16],[722,1,1,16,17]]],[23,2,2,17,19,[[766,2,2,17,19]]],[25,2,2,19,21,[[828,1,1,19,20],[832,1,1,20,21]]],[29,1,1,21,22,[[880,1,1,21,22]]],[37,1,1,22,23,[[921,1,1,22,23]]]],[6769,8945,9106,10775,10864,10869,11214,14313,15208,15587,16380,17613,17698,17839,17936,18376,18547,19461,19477,21126,21238,22388,23029]]],["tree",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8877]]],["trees",[5,5,[[3,1,1,0,1,[[140,1,1,0,1]]],[10,1,1,1,2,[[295,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[13,2,2,3,5,[[367,1,1,3,4],[375,1,1,4,5]]]],[4452,8884,10084,11209,11391]]]]},{"k":"H731","v":[["work",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22819]]]]},{"k":"H732","v":[["*",[5,5,[[6,1,1,0,1,[[229,1,1,0,1]]],[9,1,1,1,2,[[278,1,1,1,2]]],[17,1,1,2,3,[[469,1,1,2,3]]],[23,2,2,3,5,[[753,1,1,3,4],[758,1,1,4,5]]]],[7041,8290,13691,19177,19301]]],["goeth",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13691]]],["man",[2,2,[[9,1,1,0,1,[[278,1,1,0,1]]],[23,1,1,1,2,[[758,1,1,1,2]]]],[8290,19301]]],["men",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19177]]],["wayfaring",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7041]]]]},{"k":"H733","v":[["Arah",[4,4,[[12,1,1,0,1,[[344,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,2,2,2,4,[[418,1,1,2,3],[419,1,1,3,4]]]],[10574,12032,12419,12430]]]]},{"k":"H734","v":[["*",[59,58,[[0,2,2,0,2,[[17,1,1,0,1],[48,1,1,1,2]]],[6,2,1,2,3,[[215,2,1,2,3]]],[17,11,11,3,14,[[441,2,2,3,5],[443,1,1,5,6],[448,1,1,6,7],[451,1,1,7,8],[454,1,1,8,9],[457,1,1,9,10],[465,1,1,10,11],[466,1,1,11,12],[468,1,1,12,13],[469,1,1,13,14]]],[18,15,15,14,29,[[485,1,1,14,15],[493,1,1,15,16],[494,1,1,16,17],[496,1,1,17,18],[502,2,2,18,20],[504,1,1,20,21],[521,1,1,21,22],[596,5,5,22,27],[616,1,1,27,28],[619,1,1,28,29]]],[19,19,19,29,48,[[628,1,1,29,30],[629,5,5,30,35],[630,1,1,35,36],[631,2,2,36,38],[632,1,1,38,39],[635,1,1,39,40],[636,1,1,40,41],[637,1,1,41,42],[639,1,1,42,43],[642,3,3,43,46],[644,1,1,46,47],[649,1,1,47,48]]],[22,8,8,48,56,[[680,1,1,48,49],[681,1,1,49,50],[704,2,2,50,52],[708,1,1,52,53],[711,1,1,53,54],[718,1,1,54,55],[719,1,1,55,56]]],[28,1,1,56,57,[[877,1,1,56,57]]],[32,1,1,57,58,[[896,1,1,57,58]]]],[435,1490,6629,12996,12997,13042,13180,13260,13305,13404,13569,13620,13661,13694,14020,14103,14107,14173,14255,14261,14296,14589,15907,15913,15999,16002,16026,16242,16289,16419,16441,16446,16448,16452,16453,16461,16504,16508,16523,16622,16653,16673,16747,16817,16826,16831,16896,17040,17688,17719,18137,18138,18228,18287,18434,18454,22318,22622]]],["+",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[22,1,1,1,2,[[711,1,1,1,2]]]],[6629,18287]]],["highways",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6629]]],["manner",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[435]]],["path",[9,9,[[0,1,1,0,1,[[48,1,1,0,1]]],[18,3,3,1,4,[[493,1,1,1,2],[504,1,1,2,3],[616,1,1,3,4]]],[19,3,3,4,7,[[631,2,2,4,6],[632,1,1,6,7]]],[22,2,2,7,9,[[708,1,1,7,8],[718,1,1,8,9]]]],[1490,14103,14296,16242,16504,16508,16523,18228,18434]]],["paths",[16,16,[[17,4,4,0,4,[[441,1,1,0,1],[443,1,1,1,2],[448,1,1,2,3],[468,1,1,3,4]]],[18,4,4,4,8,[[485,1,1,4,5],[494,1,1,5,6],[502,2,2,6,8]]],[19,5,5,8,13,[[629,4,4,8,12],[630,1,1,12,13]]],[22,2,2,13,15,[[680,1,1,13,14],[681,1,1,14,15]]],[32,1,1,15,16,[[896,1,1,15,16]]]],[12996,13042,13180,13661,14020,14107,14255,14261,16441,16446,16452,16453,16461,17688,17719,22622]]],["race",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14173]]],["ranks",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22318]]],["traveller",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13620]]],["troops",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12997]]],["way",[18,18,[[17,3,3,0,3,[[451,1,1,0,1],[454,1,1,1,2],[457,1,1,2,3]]],[18,6,6,3,9,[[521,1,1,3,4],[596,4,4,4,8],[619,1,1,8,9]]],[19,6,6,9,15,[[635,1,1,9,10],[637,1,1,10,11],[639,1,1,11,12],[642,3,3,12,15]]],[22,3,3,15,18,[[704,2,2,15,17],[719,1,1,17,18]]]],[13260,13305,13404,14589,15907,15999,16002,16026,16289,16622,16673,16747,16817,16826,16831,18137,18138,18454]]],["ways",[8,8,[[17,2,2,0,2,[[465,1,1,0,1],[469,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[19,5,5,3,8,[[628,1,1,3,4],[629,1,1,4,5],[636,1,1,5,6],[644,1,1,6,7],[649,1,1,7,8]]]],[13569,13694,15913,16419,16448,16653,16896,17040]]]]},{"k":"H735","v":[["ways",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[854,1,1,1,2]]]],[21874,21897]]]]},{"k":"H736","v":[["*",[2,2,[[0,1,1,0,1,[[36,1,1,0,1]]],[22,1,1,1,2,[[699,1,1,1,2]]]],[1108,18048]]],["companies",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18048]]],["company",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1108]]]]},{"k":"H737","v":[["*",[6,4,[[11,2,1,0,1,[[337,2,1,0,1]]],[19,1,1,1,2,[[642,1,1,1,2]]],[23,3,2,2,4,[[784,1,1,2,3],[796,2,1,3,4]]]],[10252,16824,19946,20310]]],["allowance",[2,1,[[11,2,1,0,1,[[337,2,1,0,1]]]],[10252]]],["diet",[2,1,[[23,2,1,0,1,[[796,2,1,0,1]]]],[20310]]],["dinner",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16824]]],["victuals",[1,1,[[23,1,1,0,1,[[784,1,1,0,1]]]],[19946]]]]},{"k":"H738","v":[["*",[80,72,[[0,2,1,0,1,[[48,2,1,0,1]]],[3,2,2,1,3,[[139,1,1,1,2],[140,1,1,2,3]]],[4,1,1,3,4,[[185,1,1,3,4]]],[6,5,4,4,8,[[224,5,4,4,8]]],[8,3,3,8,11,[[252,3,3,8,11]]],[9,3,3,11,14,[[267,1,1,11,12],[283,1,1,12,13],[289,1,1,13,14]]],[10,13,9,14,23,[[297,3,2,14,16],[300,2,2,16,18],[303,6,4,18,22],[310,2,1,22,23]]],[11,2,2,23,25,[[329,2,2,23,25]]],[12,2,2,25,27,[[348,1,1,25,26],[349,1,1,26,27]]],[13,2,2,27,29,[[375,2,2,27,29]]],[17,1,1,29,30,[[439,1,1,29,30]]],[18,6,6,30,36,[[484,1,1,30,31],[487,1,1,31,32],[494,1,1,32,33],[499,3,3,33,36]]],[19,3,3,36,39,[[649,1,1,36,37],[653,1,1,37,38],[655,1,1,38,39]]],[20,1,1,39,40,[[667,1,1,39,40]]],[21,1,1,40,41,[[674,1,1,40,41]]],[22,7,7,41,48,[[689,1,1,41,42],[693,1,1,42,43],[699,1,1,43,44],[709,1,1,44,45],[713,1,1,45,46],[716,1,1,46,47],[743,1,1,47,48]]],[23,8,8,48,56,[[746,1,1,48,49],[748,1,1,49,50],[749,1,1,50,51],[756,1,1,51,52],[793,1,1,52,53],[794,2,2,53,55],[795,1,1,55,56]]],[24,1,1,56,57,[[799,1,1,56,57]]],[25,5,5,57,62,[[802,1,1,57,58],[811,1,1,58,59],[820,2,2,59,61],[823,1,1,61,62]]],[27,1,1,62,63,[[872,1,1,62,63]]],[28,1,1,63,64,[[876,1,1,63,64]]],[29,4,4,64,68,[[881,3,3,64,67],[883,1,1,67,68]]],[32,1,1,68,69,[[897,1,1,68,69]]],[33,4,2,69,71,[[901,4,2,69,71]]],[35,1,1,71,72,[[908,1,1,71,72]]]],[1482,4440,4455,5832,6914,6917,6918,6927,7652,7654,7655,8045,8459,8673,8963,8970,9098,9099,9208,9209,9210,9212,9444,10008,10009,10695,10728,11382,11383,12940,13997,14050,14115,14217,14220,14225,17028,17154,17211,17479,17590,17891,17969,18043,18254,18329,18403,18922,18995,19034,19064,19257,20146,20183,20210,20250,20364,20474,20647,20883,20887,21001,22250,22297,22399,22403,22407,22442,22641,22710,22711,22823]]],["+",[2,2,[[6,1,1,0,1,[[224,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]]],[6927,8045]]],["lion",[55,51,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,2,2,1,3,[[139,1,1,1,2],[140,1,1,2,3]]],[6,4,3,3,6,[[224,4,3,3,6]]],[8,3,3,6,9,[[252,3,3,6,9]]],[9,2,2,9,11,[[283,1,1,9,10],[289,1,1,10,11]]],[10,8,5,11,16,[[303,6,4,11,15],[310,2,1,15,16]]],[12,1,1,16,17,[[348,1,1,16,17]]],[17,1,1,17,18,[[439,1,1,17,18]]],[18,4,4,18,22,[[484,1,1,18,19],[487,1,1,19,20],[494,1,1,20,21],[499,1,1,21,22]]],[19,3,3,22,25,[[649,1,1,22,23],[653,1,1,23,24],[655,1,1,24,25]]],[20,1,1,25,26,[[667,1,1,25,26]]],[22,6,6,26,32,[[689,1,1,26,27],[699,1,1,27,28],[709,1,1,28,29],[713,1,1,29,30],[716,1,1,30,31],[743,1,1,31,32]]],[23,6,6,32,38,[[746,1,1,32,33],[748,1,1,33,34],[749,1,1,34,35],[756,1,1,35,36],[793,1,1,36,37],[794,1,1,37,38]]],[24,1,1,38,39,[[799,1,1,38,39]]],[25,3,3,39,42,[[802,1,1,39,40],[811,1,1,40,41],[823,1,1,41,42]]],[27,1,1,42,43,[[872,1,1,42,43]]],[28,1,1,43,44,[[876,1,1,43,44]]],[29,4,4,44,48,[[881,3,3,44,47],[883,1,1,47,48]]],[32,1,1,48,49,[[897,1,1,48,49]]],[33,2,2,49,51,[[901,2,2,49,51]]]],[1482,4440,4455,6914,6917,6918,7652,7654,7655,8459,8673,9208,9209,9210,9212,9444,10695,12940,13997,14050,14115,14217,17028,17154,17211,17479,17891,18043,18254,18329,18403,18922,18995,19034,19064,19257,20146,20210,20364,20474,20647,21001,22250,22297,22399,22403,22407,22442,22641,22710,22711]]],["lion's",[4,4,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[18,1,1,2,3,[[499,1,1,2,3]]],[33,1,1,3,4,[[901,1,1,3,4]]]],[1482,5832,14225,22710]]],["lions",[16,15,[[10,5,4,0,4,[[297,3,2,0,2],[300,2,2,2,4]]],[11,2,2,4,6,[[329,2,2,4,6]]],[12,1,1,6,7,[[349,1,1,6,7]]],[13,2,2,7,9,[[375,2,2,7,9]]],[22,1,1,9,10,[[693,1,1,9,10]]],[23,1,1,10,11,[[794,1,1,10,11]]],[25,2,2,11,13,[[820,2,2,11,13]]],[33,1,1,13,14,[[901,1,1,13,14]]],[35,1,1,14,15,[[908,1,1,14,15]]]],[8963,8970,9098,9099,10008,10009,10728,11382,11383,17969,20183,20883,20887,22710,22823]]],["lions'",[2,2,[[21,1,1,0,1,[[674,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[17590,20250]]],["pierced",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14220]]]]},{"k":"H739","v":[["men",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8673,10695]]]]},{"k":"H740","v":[["Ariel",[6,4,[[14,1,1,0,1,[[410,1,1,0,1]]],[22,5,3,1,4,[[707,5,3,1,4]]]],[12217,18194,18195,18200]]]]},{"k":"H741","v":[["*",[2,2,[[25,2,2,0,2,[[844,2,2,0,2]]]],[21587,21588]]],["+",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21587]]],["altar",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21588]]]]},{"k":"H742","v":[["Aridai",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12843]]]]},{"k":"H743","v":[["Aridatha",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12842]]]]},{"k":"H744","v":[["*",[10,9,[[26,10,9,0,9,[[855,9,8,0,8],[856,1,1,8,9]]]],[21912,21917,21921,21924,21925,21927,21929,21932,21937]]],["lion",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21937]]],["lions",[8,7,[[26,8,7,0,7,[[855,8,7,0,7]]]],[21912,21917,21921,21924,21925,21929,21932]]],["lions'",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21927]]]]},{"k":"H745","v":[["*",[2,2,[[11,1,1,0,1,[[327,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]]],[9950,17828]]],["Arieh",[1,1,[[11,1,1,0,1,[[327,1,1,0,1]]]],[9950]]],["hungry",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17828]]]]},{"k":"H746","v":[["Arioch",[7,6,[[0,2,2,0,2,[[13,2,2,0,2]]],[26,5,4,2,6,[[851,5,4,2,6]]]],[337,345,21772,21773,21782,21783]]]]},{"k":"H747","v":[["Arisai",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12843]]]]},{"k":"H748","v":[["*",[34,34,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,1,1,1,2,[[69,1,1,1,2]]],[3,2,2,2,4,[[125,2,2,2,4]]],[4,11,11,4,15,[[156,2,2,4,6],[157,2,2,6,8],[158,1,1,8,9],[163,1,1,9,10],[169,1,1,10,11],[174,1,1,11,12],[177,1,1,12,13],[182,1,1,13,14],[184,1,1,14,15]]],[5,1,1,15,16,[[210,1,1,15,16]]],[6,1,1,16,17,[[212,1,1,16,17]]],[10,2,2,17,19,[[293,1,1,17,18],[298,1,1,18,19]]],[13,1,1,19,20,[[371,1,1,19,20]]],[17,1,1,20,21,[[441,1,1,20,21]]],[18,1,1,21,22,[[606,1,1,21,22]]],[19,3,3,22,25,[[646,1,1,22,23],[655,2,2,23,25]]],[20,3,3,25,28,[[665,1,1,25,26],[666,2,2,26,28]]],[22,4,4,28,32,[[726,1,1,28,29],[731,1,1,29,30],[732,1,1,30,31],[735,1,1,31,32]]],[25,2,2,32,34,[[813,1,1,32,33],[832,1,1,33,34]]]],[700,2063,3984,3987,5030,5044,5069,5086,5088,5217,5384,5477,5562,5726,5805,6507,6552,8830,8993,11277,12989,16135,16936,17198,17212,17444,17470,17471,18623,18721,18725,18769,20702,21235]]],["+",[3,3,[[5,1,1,0,1,[[210,1,1,0,1]]],[6,1,1,1,2,[[212,1,1,1,2]]],[10,1,1,2,3,[[293,1,1,2,3]]]],[6507,6552,8830]]],["defer",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18623]]],["deferreth",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16936]]],["lengthen",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18725]]],["lengthened",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5562]]],["long",[5,5,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,1,1,1,2,[[69,1,1,1,2]]],[3,1,1,2,3,[[125,1,1,2,3]]],[18,1,1,3,4,[[606,1,1,3,4]]],[25,1,1,4,5,[[832,1,1,4,5]]]],[700,2063,3984,16135,21235]]],["out",[3,3,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[371,1,1,1,2]]],[22,1,1,2,3,[[735,1,1,2,3]]]],[8993,11277,18769]]],["prolong",[12,12,[[4,8,8,0,8,[[156,2,2,0,2],[157,1,1,2,3],[163,1,1,3,4],[169,1,1,4,5],[174,1,1,5,6],[182,1,1,6,7],[184,1,1,7,8]]],[17,1,1,8,9,[[441,1,1,8,9]]],[19,1,1,9,10,[[655,1,1,9,10]]],[20,1,1,10,11,[[666,1,1,10,11]]],[22,1,1,11,12,[[731,1,1,11,12]]]],[5030,5044,5086,5217,5384,5477,5726,5805,12989,17212,17471,18721]]],["prolonged",[5,5,[[4,2,2,0,2,[[157,1,1,0,1],[158,1,1,1,2]]],[19,1,1,2,3,[[655,1,1,2,3]]],[20,1,1,3,4,[[666,1,1,3,4]]],[25,1,1,4,5,[[813,1,1,4,5]]]],[5069,5088,17198,17470,20702]]],["prolongeth",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17444]]],["tarried",[1,1,[[3,1,1,0,1,[[125,1,1,0,1]]]],[3987]]]]},{"k":"H749","v":[["meet",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12124]]]]},{"k":"H750","v":[["*",[15,15,[[1,1,1,0,1,[[83,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[18,3,3,3,6,[[563,1,1,3,4],[580,1,1,4,5],[622,1,1,5,6]]],[19,3,3,6,9,[[641,1,1,6,7],[642,1,1,7,8],[643,1,1,8,9]]],[20,1,1,9,10,[[665,1,1,9,10]]],[23,1,1,10,11,[[759,1,1,10,11]]],[25,1,1,11,12,[[818,1,1,11,12]]],[28,1,1,12,13,[[877,1,1,12,13]]],[31,1,1,13,14,[[892,1,1,13,14]]],[33,1,1,14,15,[[900,1,1,14,15]]]],[2502,4126,12528,15299,15557,16328,16801,16825,16872,17437,19330,20828,22324,22570,22687]]],["+",[5,5,[[1,1,1,0,1,[[83,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[18,1,1,2,3,[[563,1,1,2,3]]],[23,1,1,3,4,[[759,1,1,3,4]]],[25,1,1,4,5,[[818,1,1,4,5]]]],[2502,4126,15299,19330,20828]]],["patient",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17437]]],["slow",[9,9,[[15,1,1,0,1,[[421,1,1,0,1]]],[18,2,2,1,3,[[580,1,1,1,2],[622,1,1,2,3]]],[19,3,3,3,6,[[641,1,1,3,4],[642,1,1,4,5],[643,1,1,5,6]]],[28,1,1,6,7,[[877,1,1,6,7]]],[31,1,1,7,8,[[892,1,1,7,8]]],[33,1,1,8,9,[[900,1,1,8,9]]]],[12528,15557,16328,16801,16825,16872,22324,22570,22687]]]]},{"k":"H751","v":[["Erech",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[244]]]]},{"k":"H752","v":[["*",[3,3,[[9,1,1,0,1,[[269,1,1,0,1]]],[17,1,1,1,2,[[446,1,1,1,2]]],[23,1,1,2,3,[[773,1,1,2,3]]]],[8082,13117,19663]]],["long",[2,2,[[9,1,1,0,1,[[269,1,1,0,1]]],[23,1,1,1,2,[[773,1,1,1,2]]]],[8082,19663]]],["longer",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13117]]]]},{"k":"H753","v":[["*",[95,90,[[0,2,2,0,2,[[5,1,1,0,1],[12,1,1,1,2]]],[1,24,23,2,25,[[74,3,3,2,5],[75,4,4,5,9],[76,5,4,9,13],[77,1,1,13,14],[79,1,1,14,15],[85,3,3,15,18],[86,4,4,18,22],[87,2,2,22,24],[88,1,1,24,25]]],[4,2,2,25,27,[[155,1,1,25,26],[182,1,1,26,27]]],[6,1,1,27,28,[[213,1,1,27,28]]],[10,6,6,28,34,[[296,3,3,28,31],[297,3,3,31,34]]],[13,7,7,34,41,[[369,5,5,34,39],[370,1,1,39,40],[372,1,1,40,41]]],[17,1,1,41,42,[[447,1,1,41,42]]],[18,4,4,42,46,[[498,1,1,42,43],[500,1,1,43,44],[568,1,1,44,45],[570,1,1,45,46]]],[19,3,3,46,49,[[630,2,2,46,48],[652,1,1,48,49]]],[24,1,1,49,50,[[801,1,1,49,50]]],[25,42,38,50,88,[[832,1,1,50,51],[841,13,13,51,64],[842,8,6,64,70],[843,5,5,70,75],[844,2,2,75,77],[846,6,5,77,82],[847,1,1,82,83],[849,6,5,83,88]]],[37,2,2,88,90,[[912,1,1,88,89],[915,1,1,89,90]]]],[152,335,2205,2212,2218,2237,2243,2248,2251,2273,2281,2283,2290,2309,2384,2575,2581,2587,2605,2610,2614,2629,2634,2651,2673,4986,5728,6584,8898,8899,8916,8936,8940,8961,11232,11233,11237,11240,11244,11247,11295,13140,14195,14241,15411,15431,16457,16471,17128,20462,21237,21484,21488,21495,21497,21498,21502,21506,21507,21510,21513,21519,21524,21526,21528,21530,21538,21539,21541,21548,21554,21559,21560,21563,21572,21588,21589,21631,21633,21635,21636,21637,21677,21710,21711,21712,21715,21720,22901,22938]]],["+",[2,2,[[18,2,2,0,2,[[500,1,1,0,1],[570,1,1,1,2]]]],[14241,15431]]],["Length",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16471]]],["high",[1,1,[[13,1,1,0,1,[[369,1,1,0,1]]]],[11244]]],["length",[69,66,[[0,2,2,0,2,[[5,1,1,0,1],[12,1,1,1,2]]],[1,21,21,2,23,[[74,3,3,2,5],[75,4,4,5,9],[76,2,2,9,11],[77,1,1,11,12],[79,1,1,12,13],[85,3,3,13,16],[86,4,4,16,20],[87,2,2,20,22],[88,1,1,22,23]]],[4,2,2,23,25,[[155,1,1,23,24],[182,1,1,24,25]]],[6,1,1,25,26,[[213,1,1,25,26]]],[10,6,6,26,32,[[296,3,3,26,29],[297,3,3,29,32]]],[13,4,4,32,36,[[369,3,3,32,35],[370,1,1,35,36]]],[17,1,1,36,37,[[447,1,1,36,37]]],[18,1,1,37,38,[[498,1,1,37,38]]],[19,1,1,38,39,[[630,1,1,38,39]]],[25,28,25,39,64,[[832,1,1,39,40],[841,7,7,40,47],[842,6,5,47,52],[843,3,3,52,55],[846,5,4,55,59],[849,6,5,59,64]]],[37,2,2,64,66,[[912,1,1,64,65],[915,1,1,65,66]]]],[152,335,2205,2212,2218,2237,2243,2248,2251,2283,2290,2309,2384,2575,2581,2587,2605,2610,2614,2629,2634,2651,2673,4986,5728,6584,8898,8899,8916,8936,8940,8961,11232,11233,11237,11247,13140,14195,16457,21237,21488,21495,21497,21498,21502,21513,21526,21528,21530,21538,21541,21548,21554,21559,21560,21631,21633,21635,21637,21710,21711,21712,21715,21720,22901,22938]]],["long",[22,21,[[1,3,3,0,3,[[76,3,3,0,3]]],[13,2,2,3,5,[[369,1,1,3,4],[372,1,1,4,5]]],[18,1,1,5,6,[[568,1,1,5,6]]],[19,1,1,6,7,[[652,1,1,6,7]]],[24,1,1,7,8,[[801,1,1,7,8]]],[25,14,13,8,21,[[841,6,6,8,14],[842,2,1,14,15],[843,2,2,15,17],[844,2,2,17,19],[846,1,1,19,20],[847,1,1,20,21]]]],[2273,2281,2283,11240,11295,15411,17128,20462,21484,21506,21507,21510,21519,21524,21539,21563,21572,21588,21589,21636,21677]]]]},{"k":"H754","v":[["*",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[856,1,1,1,2]]]],[21864,21945]]],["+",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21945]]],["lengthening",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]]]},{"k":"H755","v":[["knees",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21880]]]]},{"k":"H756","v":[["Archevites",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12119]]]]},{"k":"H757","v":[["*",[6,6,[[5,1,1,0,1,[[202,1,1,0,1]]],[9,4,4,1,5,[[281,1,1,1,2],[282,1,1,2,3],[283,2,2,3,5]]],[12,1,1,5,6,[[364,1,1,5,6]]]],[6267,8421,8442,8454,8463,11142]]],["Archi",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6267]]],["Archite",[5,5,[[9,4,4,0,4,[[281,1,1,0,1],[282,1,1,1,2],[283,2,2,2,4]]],[12,1,1,4,5,[[364,1,1,4,5]]]],[8421,8442,8454,8463,11142]]]]},{"k":"H758","v":[["*",[132,117,[[0,3,3,0,3,[[9,2,2,0,2],[21,1,1,2,3]]],[3,1,1,3,4,[[139,1,1,3,4]]],[6,1,1,4,5,[[220,1,1,4,5]]],[9,20,16,5,21,[[274,6,4,5,9],[276,13,11,9,20],[281,1,1,20,21]]],[10,19,18,21,39,[[300,1,1,21,22],[301,1,1,22,23],[305,1,1,23,24],[309,1,1,24,25],[310,10,9,25,34],[312,5,5,34,39]]],[11,43,38,39,77,[[317,4,3,39,42],[318,5,5,42,47],[319,9,8,47,55],[320,5,5,55,60],[321,2,2,60,62],[324,2,2,62,64],[325,10,8,64,72],[327,1,1,72,73],[328,4,3,73,76],[336,1,1,76,77]]],[12,18,14,77,91,[[338,1,1,77,78],[339,1,1,78,79],[344,1,1,79,80],[355,4,2,80,82],[356,11,9,82,91]]],[13,14,13,91,104,[[367,1,1,91,92],[382,3,2,92,94],[384,3,3,94,97],[386,1,1,97,98],[388,2,2,98,100],[390,2,2,100,102],[394,2,2,102,104]]],[22,7,7,104,111,[[685,5,5,104,109],[687,1,1,109,110],[695,1,1,110,111]]],[23,1,1,111,112,[[779,1,1,111,112]]],[25,2,2,112,114,[[817,1,1,112,113],[828,1,1,113,114]]],[27,1,1,114,115,[[873,1,1,114,115]]],[29,2,2,115,117,[[879,1,1,115,116],[887,1,1,116,117]]]],[256,257,568,4423,6817,8214,8215,8221,8222,8246,8248,8249,8251,8253,8254,8255,8256,8257,8258,8259,8397,9108,9133,9267,9402,9409,9428,9429,9430,9431,9434,9435,9436,9437,9481,9483,9491,9511,9515,9648,9649,9652,9682,9683,9685,9697,9698,9711,9712,9713,9717,9719,9721,9722,9723,9734,9736,9740,9755,9756,9770,9771,9867,9868,9874,9875,9876,9878,9888,9890,9893,9895,9962,9968,9969,9970,10204,10269,10329,10569,10895,10896,10913,10917,10919,10921,10922,10923,10924,10925,10926,11211,11511,11516,11552,11572,11576,11589,11649,11650,11700,11701,11769,11787,17783,17784,17786,17787,17790,17841,17986,19834,20819,21137,22264,22369,22502]]],["+",[6,6,[[9,2,2,0,2,[[274,1,1,0,1],[276,1,1,1,2]]],[12,3,3,2,5,[[355,1,1,2,3],[356,2,2,3,5]]],[13,1,1,5,6,[[386,1,1,5,6]]]],[8221,8258,10896,10913,10925,11589]]],["Aram",[7,7,[[0,3,3,0,3,[[9,2,2,0,2],[21,1,1,2,3]]],[3,1,1,3,4,[[139,1,1,3,4]]],[12,3,3,4,7,[[338,1,1,4,5],[339,1,1,5,6],[344,1,1,6,7]]]],[256,257,568,4423,10269,10329,10569]]],["Syria",[65,61,[[6,1,1,0,1,[[220,1,1,0,1]]],[9,2,2,1,3,[[274,1,1,1,2],[281,1,1,2,3]]],[10,11,11,3,14,[[300,1,1,3,4],[301,1,1,4,5],[305,1,1,5,6],[309,1,1,6,7],[310,4,4,7,11],[312,3,3,11,14]]],[11,30,27,14,41,[[317,3,2,14,16],[318,4,4,16,20],[319,1,1,20,21],[320,5,5,21,26],[321,2,2,26,28],[324,2,2,28,30],[325,8,7,30,37],[327,1,1,37,38],[328,4,3,38,41]]],[13,11,10,41,51,[[367,1,1,41,42],[382,3,2,42,44],[384,2,2,44,46],[388,2,2,46,48],[390,1,1,48,49],[394,2,2,49,51]]],[22,6,6,51,57,[[685,5,5,51,56],[695,1,1,56,57]]],[25,2,2,57,59,[[817,1,1,57,58],[828,1,1,58,59]]],[27,1,1,59,60,[[873,1,1,59,60]]],[29,1,1,60,61,[[879,1,1,60,61]]]],[6817,8215,8397,9108,9133,9267,9402,9409,9428,9430,9431,9481,9483,9511,9648,9652,9682,9685,9697,9698,9712,9734,9736,9740,9755,9756,9770,9771,9867,9868,9874,9875,9878,9888,9890,9893,9895,9962,9968,9969,9970,11211,11511,11516,11552,11572,11649,11650,11700,11769,11787,17783,17784,17786,17787,17790,17986,20819,21137,22264,22369]]],["Syrians",[54,50,[[9,16,14,0,14,[[274,4,3,0,3],[276,12,11,3,14]]],[10,8,8,14,22,[[310,6,6,14,20],[312,2,2,20,22]]],[11,13,13,22,35,[[317,1,1,22,23],[318,1,1,23,24],[319,8,8,24,32],[325,2,2,32,34],[336,1,1,34,35]]],[12,12,10,35,45,[[355,3,2,35,37],[356,9,8,37,45]]],[13,2,2,45,47,[[384,1,1,45,46],[390,1,1,46,47]]],[22,1,1,47,48,[[687,1,1,47,48]]],[23,1,1,48,49,[[779,1,1,48,49]]],[29,1,1,49,50,[[887,1,1,49,50]]]],[8214,8215,8222,8246,8248,8249,8251,8253,8254,8255,8256,8257,8258,8259,9428,9429,9434,9435,9436,9437,9491,9515,9649,9683,9711,9712,9713,9717,9719,9721,9722,9723,9876,9888,10204,10895,10896,10917,10919,10921,10922,10923,10924,10925,10926,11576,11701,17841,19834,22502]]]]},{"k":"H759","v":[["*",[33,32,[[10,1,1,0,1,[[306,1,1,0,1]]],[11,1,1,1,2,[[327,1,1,1,2]]],[13,1,1,2,3,[[402,1,1,2,3]]],[18,3,3,3,6,[[525,2,2,3,5],[599,1,1,5,6]]],[19,1,1,6,7,[[645,1,1,6,7]]],[22,4,4,7,11,[[701,1,1,7,8],[703,1,1,8,9],[710,1,1,9,10],[712,1,1,10,11]]],[23,5,5,11,16,[[750,1,1,11,12],[753,1,1,12,13],[761,1,1,13,14],[774,1,1,14,15],[793,1,1,15,16]]],[24,2,2,16,18,[[798,2,2,16,18]]],[25,1,1,18,19,[[820,1,1,18,19]]],[27,1,1,19,20,[[869,1,1,19,20]]],[29,12,11,20,31,[[879,5,5,20,25],[880,2,2,25,27],[881,4,3,27,30],[884,1,1,30,31]]],[32,1,1,31,32,[[897,1,1,31,32]]]],[9301,9950,12012,14637,14647,16096,16920,18090,18120,18273,18316,19094,19196,19384,19685,20154,20337,20339,20888,22208,22368,22371,22374,22376,22378,22381,22384,22404,22405,22406,22458,22638]]],["castle",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16920]]],["palace",[4,4,[[10,1,1,0,1,[[306,1,1,0,1]]],[11,1,1,1,2,[[327,1,1,1,2]]],[22,1,1,2,3,[[703,1,1,2,3]]],[23,1,1,3,4,[[774,1,1,3,4]]]],[9301,9950,18120,19685]]],["palaces",[28,27,[[13,1,1,0,1,[[402,1,1,0,1]]],[18,3,3,1,4,[[525,2,2,1,3],[599,1,1,3,4]]],[22,3,3,4,7,[[701,1,1,4,5],[710,1,1,5,6],[712,1,1,6,7]]],[23,4,4,7,11,[[750,1,1,7,8],[753,1,1,8,9],[761,1,1,9,10],[793,1,1,10,11]]],[24,2,2,11,13,[[798,2,2,11,13]]],[25,1,1,13,14,[[820,1,1,13,14]]],[27,1,1,14,15,[[869,1,1,14,15]]],[29,12,11,15,26,[[879,5,5,15,20],[880,2,2,20,22],[881,4,3,22,25],[884,1,1,25,26]]],[32,1,1,26,27,[[897,1,1,26,27]]]],[12012,14637,14647,16096,18090,18273,18316,19094,19196,19384,20154,20337,20339,20888,22208,22368,22371,22374,22376,22378,22381,22384,22404,22405,22406,22458,22638]]]]},{"k":"H760","v":[]},{"k":"H761","v":[["*",[12,11,[[0,5,4,0,4,[[24,2,1,0,1],[27,1,1,1,2],[30,2,2,2,4]]],[4,1,1,4,5,[[178,1,1,4,5]]],[11,4,4,5,9,[[317,1,1,5,6],[320,2,2,6,8],[321,1,1,8,9]]],[12,1,1,9,10,[[344,1,1,9,10]]],[13,1,1,10,11,[[388,1,1,10,11]]]],[678,778,893,897,5571,9667,9755,9756,9771,10549,11649]]],["Aramitess",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10549]]],["Syrian",[7,6,[[0,5,4,0,4,[[24,2,1,0,1],[27,1,1,1,2],[30,2,2,2,4]]],[4,1,1,4,5,[[178,1,1,4,5]]],[11,1,1,5,6,[[317,1,1,5,6]]]],[678,778,893,897,5571,9667]]],["Syrians",[4,4,[[11,3,3,0,3,[[320,2,2,0,2],[321,1,1,2,3]]],[13,1,1,3,4,[[388,1,1,3,4]]]],[9755,9756,9771,11649]]]]},{"k":"H762","v":[["*",[5,4,[[11,1,1,0,1,[[330,1,1,0,1]]],[14,2,1,1,2,[[406,2,1,1,2]]],[22,1,1,2,3,[[714,1,1,2,3]]],[26,1,1,3,4,[[851,1,1,3,4]]]],[10050,12117,18341,21762]]],["Syriack",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21762]]],["language",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]]],[10050,18341]]],["tongue",[2,1,[[14,2,1,0,1,[[406,2,1,0,1]]]],[12117]]]]},{"k":"H763","v":[["Mesopotamia",[5,5,[[0,1,1,0,1,[[23,1,1,0,1]]],[4,1,1,1,2,[[175,1,1,1,2]]],[6,2,2,2,4,[[213,2,2,2,4]]],[12,1,1,4,5,[[356,1,1,4,5]]]],[601,5504,6576,6578,10913]]]]},{"k":"H764","v":[["Armoni",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8588]]]]},{"k":"H765","v":[["Aran",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1068,10294]]]]},{"k":"H766","v":[["ash",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18547]]]]},{"k":"H767","v":[["Oren",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10331]]]]},{"k":"H768","v":[["hare",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3003,5297]]]]},{"k":"H769","v":[["*",[25,23,[[3,7,6,0,6,[[137,6,5,0,5],[138,1,1,5,6]]],[4,6,6,6,12,[[154,2,2,6,8],[155,3,3,8,11],[156,1,1,11,12]]],[5,4,4,12,16,[[198,2,2,12,14],[199,2,2,14,16]]],[6,5,4,16,20,[[221,5,4,16,20]]],[11,1,1,20,21,[[322,1,1,20,21]]],[22,1,1,21,22,[[694,1,1,21,22]]],[23,1,1,22,23,[[792,1,1,22,23]]]],[4353,4354,4364,4366,4368,4411,4962,4974,4983,4987,4991,5052,6131,6132,6163,6170,6842,6847,6851,6855,9826,17971,20100]]],["+",[3,3,[[3,1,1,0,1,[[137,1,1,0,1]]],[6,2,2,1,3,[[221,2,2,1,3]]]],[4364,6842,6851]]],["Arnon",[22,20,[[3,6,5,0,5,[[137,5,4,0,4],[138,1,1,4,5]]],[4,6,6,5,11,[[154,2,2,5,7],[155,3,3,7,10],[156,1,1,10,11]]],[5,4,4,11,15,[[198,2,2,11,13],[199,2,2,13,15]]],[6,3,2,15,17,[[221,3,2,15,17]]],[11,1,1,17,18,[[322,1,1,17,18]]],[22,1,1,18,19,[[694,1,1,18,19]]],[23,1,1,19,20,[[792,1,1,19,20]]]],[4353,4354,4366,4368,4411,4962,4974,4983,4987,4991,5052,6131,6132,6163,6170,6847,6855,9826,17971,20100]]]]},{"k":"H770","v":[["Arnan",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10382]]]]},{"k":"H771","v":[["Ornan",[12,10,[[12,11,9,0,9,[[358,11,9,0,9]]],[13,1,1,9,10,[[369,1,1,9,10]]]],[10949,10952,10954,10955,10956,10957,10958,10959,10962,11230]]]]},{"k":"H772","v":[["*",[21,17,[[14,1,1,0,1,[[407,1,1,0,1]]],[23,1,1,1,2,[[754,1,1,1,2]]],[26,19,15,2,17,[[851,3,2,2,4],[853,10,8,4,12],[855,2,2,12,14],[856,4,3,14,17]]]],[12145,19212,21793,21797,21838,21847,21848,21852,21857,21859,21860,21872,21930,21932,21937,21950,21956]]],["+",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19212]]],["earth",[19,16,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,18,15,1,16,[[851,2,2,1,3],[853,10,8,3,11],[855,2,2,11,13],[856,4,3,13,16]]]],[12145,21793,21797,21838,21847,21848,21852,21857,21859,21860,21872,21930,21932,21937,21950,21956]]],["inferior",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21797]]]]},{"k":"H773","v":[["bottom",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21929]]]]},{"k":"H774","v":[["*",[6,6,[[11,2,2,0,2,[[330,1,1,0,1],[331,1,1,1,2]]],[22,3,3,2,5,[[688,1,1,2,3],[714,1,1,3,4],[715,1,1,4,5]]],[23,1,1,5,6,[[793,1,1,5,6]]]],[10058,10074,17859,18349,18365,20150]]],["Arpad",[4,4,[[11,2,2,0,2,[[330,1,1,0,1],[331,1,1,1,2]]],[22,1,1,2,3,[[688,1,1,2,3]]],[23,1,1,3,4,[[793,1,1,3,4]]]],[10058,10074,17859,20150]]],["Arphad",[2,2,[[22,2,2,0,2,[[714,1,1,0,1],[715,1,1,1,2]]]],[18349,18365]]]]},{"k":"H775","v":[["Arphaxad",[9,9,[[0,6,6,0,6,[[9,2,2,0,2],[10,4,4,2,6]]],[12,3,3,6,9,[[338,3,3,6,9]]]],[256,258,276,277,278,279,10269,10270,10276]]]]},{"k":"H776","v":[["*",[2505,2191,[[0,311,252,0,252,[[0,20,15,0,15],[1,9,7,15,22],[3,3,3,22,25],[5,11,7,25,32],[6,14,12,32,44],[7,12,10,44,54],[8,11,10,54,64],[9,8,8,64,72],[10,8,7,72,79],[11,9,5,79,84],[12,9,8,84,92],[13,2,2,92,94],[14,3,3,94,97],[15,1,1,97,98],[16,2,1,98,99],[17,3,3,99,102],[18,6,4,102,106],[19,2,2,106,108],[20,4,4,108,112],[21,2,2,112,114],[22,6,6,114,120],[23,9,7,120,127],[24,1,1,127,128],[25,8,6,128,134],[26,3,3,134,137],[27,4,4,137,141],[28,1,1,141,142],[29,1,1,142,143],[30,4,3,143,146],[31,2,2,146,148],[32,2,2,148,150],[33,6,5,150,155],[34,5,4,155,159],[35,12,11,159,170],[36,3,2,170,172],[37,1,1,172,173],[39,1,1,173,174],[40,27,20,174,194],[41,14,11,194,205],[42,3,3,205,208],[43,3,3,208,211],[44,11,10,211,221],[45,6,6,221,227],[46,22,10,227,237],[47,8,7,237,244],[48,2,2,244,246],[49,7,6,246,252]]],[1,136,111,252,363,[[50,2,2,252,254],[51,2,2,254,256],[52,5,2,256,258],[53,3,2,258,260],[54,2,2,260,262],[55,8,7,262,269],[56,5,5,269,274],[57,14,9,274,283],[58,15,12,283,295],[59,14,7,295,302],[60,5,5,302,307],[61,13,12,307,319],[62,6,5,319,324],[63,1,1,324,325],[64,1,1,325,326],[65,7,6,326,332],[67,2,2,332,334],[68,2,2,334,336],[69,4,3,336,339],[71,1,1,339,340],[72,7,7,340,347],[78,1,1,347,348],[80,1,1,348,349],[81,7,7,349,356],[82,3,2,356,358],[83,5,5,358,363]]],[2,82,67,363,430,[[93,1,1,363,364],[100,8,8,364,372],[103,2,1,372,373],[105,1,1,373,374],[107,7,4,374,378],[108,7,6,378,384],[109,4,4,384,388],[111,2,2,388,390],[112,4,4,390,394],[114,20,16,394,410],[115,23,18,410,428],[116,3,2,428,430]]],[3,123,104,430,534,[[117,1,1,430,431],[119,1,1,431,432],[124,1,1,432,433],[125,2,2,433,435],[126,2,2,435,437],[127,1,1,437,438],[129,16,13,438,451],[130,20,17,451,468],[131,4,4,468,472],[132,5,5,472,477],[134,2,2,477,479],[136,4,4,479,483],[137,7,7,483,490],[138,5,4,490,494],[142,5,5,494,499],[143,1,1,499,500],[148,18,12,500,512],[149,11,9,512,521],[150,8,6,521,527],[151,8,6,527,533],[152,1,1,533,534]]],[4,197,171,534,705,[[153,11,9,534,543],[154,11,10,543,553],[155,9,9,553,562],[156,19,16,562,578],[157,6,5,578,583],[158,6,6,583,589],[159,1,1,589,590],[160,9,6,590,596],[161,7,6,596,602],[162,4,4,602,606],[163,16,14,606,620],[164,5,5,620,625],[165,4,3,625,628],[167,6,5,628,633],[168,3,2,633,635],[169,1,1,635,636],[170,1,1,636,637],[171,6,6,637,643],[172,1,1,643,644],[174,1,1,644,645],[175,2,2,645,647],[176,3,3,647,650],[177,1,1,650,651],[178,6,5,651,656],[179,3,2,656,658],[180,14,12,658,670],[181,12,10,670,680],[182,3,3,680,683],[183,6,6,683,689],[184,8,6,689,695],[185,4,4,695,699],[186,8,6,699,705]]],[5,107,91,705,796,[[187,8,7,705,712],[188,10,8,712,720],[189,2,2,720,722],[190,1,1,722,723],[191,6,4,723,727],[192,2,2,727,729],[193,5,4,729,733],[194,1,1,733,734],[195,5,4,734,738],[196,3,3,738,741],[197,6,4,741,745],[198,3,2,745,747],[199,7,7,747,754],[200,6,6,754,760],[201,1,1,760,761],[203,6,6,761,767],[204,8,7,767,774],[205,2,2,774,776],[207,2,2,776,778],[208,13,9,778,787],[209,3,3,787,790],[210,7,6,790,796]]],[6,60,53,796,849,[[211,6,6,796,802],[212,4,4,802,806],[213,3,3,806,809],[214,1,1,809,810],[215,2,2,810,812],[216,7,7,812,819],[218,1,1,819,820],[219,1,1,820,821],[220,2,2,821,823],[221,13,9,823,832],[222,2,2,832,834],[223,1,1,834,835],[226,1,1,835,836],[228,10,7,836,843],[229,1,1,843,844],[230,3,3,844,847],[231,2,2,847,849]]],[7,4,4,849,853,[[232,2,2,849,851],[233,2,2,851,853]]],[8,52,45,853,898,[[237,2,2,853,855],[238,1,1,855,856],[239,1,1,856,857],[240,2,2,857,859],[241,2,1,859,860],[244,5,3,860,863],[247,1,1,863,864],[248,4,4,864,868],[249,5,5,868,873],[252,3,2,873,875],[255,1,1,875,876],[256,1,1,876,877],[257,1,1,877,878],[258,2,2,878,880],[259,1,1,880,881],[260,2,2,881,883],[261,3,3,883,886],[262,4,3,886,889],[263,6,6,889,895],[264,1,1,895,896],[265,3,1,896,897],[266,1,1,897,898]]],[9,40,37,898,935,[[267,1,1,898,899],[268,1,1,899,900],[269,1,1,900,901],[270,1,1,901,902],[271,1,1,902,903],[273,3,2,903,905],[274,1,1,905,906],[276,1,1,906,907],[278,3,3,907,910],[279,1,1,910,911],[280,6,6,911,917],[281,2,2,917,919],[283,1,1,919,920],[284,4,4,920,924],[285,1,1,924,925],[286,1,1,925,926],[287,2,1,926,927],[288,2,2,927,929],[289,1,1,929,930],[290,6,5,930,935]]],[10,56,51,935,986,[[291,4,4,935,939],[292,1,1,939,940],[294,6,4,940,944],[296,1,1,944,945],[298,16,13,945,958],[299,8,8,958,966],[300,5,5,966,971],[301,3,3,971,974],[302,1,1,974,975],[304,1,1,975,976],[305,2,2,976,978],[307,1,1,978,979],[308,3,3,979,982],[310,2,2,982,984],[312,2,2,984,986]]],[11,71,59,986,1045,[[314,2,2,986,988],[315,2,2,988,990],[316,2,2,990,992],[317,4,4,992,996],[318,1,1,996,997],[320,4,4,997,1001],[322,2,2,1001,1003],[323,5,5,1003,1008],[325,2,2,1008,1010],[327,4,4,1010,1014],[328,1,1,1014,1015],[329,6,5,1015,1020],[330,9,4,1020,1024],[331,8,6,1024,1030],[332,1,1,1030,1031],[333,2,1,1031,1032],[335,6,4,1032,1036],[336,3,3,1036,1039],[337,7,6,1039,1045]]],[12,39,38,1045,1083,[[338,4,4,1045,1049],[339,1,1,1049,1050],[341,1,1,1050,1051],[342,4,4,1051,1055],[343,1,1,1055,1056],[344,1,1,1056,1057],[347,1,1,1057,1058],[348,1,1,1058,1059],[350,1,1,1059,1060],[351,1,1,1060,1061],[353,6,6,1061,1067],[354,2,2,1067,1069],[356,2,2,1069,1071],[357,1,1,1071,1072],[358,3,3,1072,1075],[359,5,4,1075,1079],[365,1,1,1079,1080],[366,3,3,1080,1083]]],[13,75,69,1083,1152,[[367,1,1,1083,1084],[368,2,2,1084,1086],[372,13,10,1086,1096],[373,5,5,1096,1101],[374,3,3,1101,1104],[375,8,8,1104,1112],[377,1,1,1112,1113],[378,1,1,1113,1114],[379,1,1,1114,1115],[380,3,3,1115,1118],[381,2,2,1118,1120],[382,1,1,1120,1121],[383,2,2,1121,1123],[385,2,2,1123,1125],[386,5,5,1125,1130],[388,1,1,1130,1131],[389,3,3,1131,1134],[392,1,1,1134,1135],[396,3,3,1135,1138],[398,8,6,1138,1144],[399,2,1,1144,1145],[400,3,3,1145,1148],[402,4,4,1148,1152]]],[14,13,11,1152,1163,[[403,1,1,1152,1153],[405,1,1,1153,1154],[406,1,1,1154,1155],[408,1,1,1155,1156],[411,7,5,1156,1161],[412,2,2,1161,1163]]],[15,20,16,1163,1179,[[416,1,1,1163,1164],[417,1,1,1164,1165],[420,1,1,1165,1166],[421,14,10,1166,1176],[422,3,3,1176,1179]]],[16,2,2,1179,1181,[[433,1,1,1179,1180],[435,1,1,1180,1181]]],[17,57,57,1181,1238,[[436,5,5,1181,1186],[437,3,3,1186,1189],[438,1,1,1189,1190],[440,3,3,1190,1193],[442,1,1,1193,1194],[443,1,1,1194,1195],[444,2,2,1195,1197],[445,2,2,1197,1199],[446,1,1,1199,1200],[447,3,3,1200,1203],[449,2,2,1203,1205],[450,2,2,1205,1207],[451,2,2,1207,1209],[453,3,3,1209,1212],[455,2,2,1212,1214],[457,1,1,1214,1215],[459,2,2,1215,1217],[461,1,1,1217,1218],[463,3,3,1218,1221],[465,1,1,1221,1222],[469,1,1,1222,1223],[470,1,1,1223,1224],[472,5,5,1224,1229],[473,6,6,1229,1235],[474,2,2,1235,1237],[477,1,1,1237,1238]]],[18,190,188,1238,1426,[[479,3,3,1238,1241],[484,1,1,1241,1242],[485,2,2,1242,1244],[487,2,2,1244,1246],[489,1,1,1246,1247],[493,1,1,1247,1248],[494,1,1,1248,1249],[495,1,1,1249,1250],[496,1,1,1250,1251],[498,1,1,1251,1252],[499,2,2,1252,1254],[501,1,1,1254,1255],[502,1,1,1255,1256],[504,1,1,1256,1257],[510,3,3,1257,1260],[511,1,1,1260,1261],[512,1,1,1261,1262],[514,6,6,1262,1268],[518,1,1,1268,1269],[519,1,1,1269,1270],[521,2,2,1270,1272],[522,1,1,1272,1273],[523,5,5,1273,1278],[524,3,3,1278,1281],[525,2,2,1281,1283],[527,2,2,1283,1285],[529,1,1,1285,1286],[534,2,2,1286,1288],[535,2,2,1288,1290],[536,1,1,1290,1291],[537,1,1,1291,1292],[538,1,1,1292,1293],[540,2,2,1293,1295],[542,2,2,1295,1297],[543,2,2,1297,1299],[544,4,4,1299,1303],[545,2,2,1303,1305],[546,1,1,1305,1306],[548,1,1,1306,1307],[549,5,4,1307,1311],[550,2,2,1311,1313],[551,5,5,1313,1318],[552,2,2,1318,1320],[553,3,3,1320,1323],[554,1,1,1323,1324],[555,2,2,1324,1326],[556,1,1,1326,1327],[557,1,1,1327,1328],[558,2,2,1328,1330],[559,2,2,1330,1332],[560,1,1,1332,1333],[562,4,4,1333,1337],[565,1,1,1337,1338],[566,4,4,1338,1342],[567,1,1,1342,1343],[571,1,1,1343,1344],[572,1,1,1344,1345],[573,4,4,1345,1349],[574,4,4,1349,1353],[575,3,3,1353,1356],[576,1,1,1356,1357],[577,1,1,1357,1358],[578,2,2,1358,1360],[579,3,3,1360,1363],[580,1,1,1363,1364],[581,7,7,1364,1371],[582,10,10,1371,1381],[583,5,5,1381,1386],[584,3,3,1386,1389],[585,1,1,1389,1390],[586,1,1,1390,1391],[587,1,1,1391,1392],[589,1,1,1392,1393],[590,1,1,1393,1394],[591,1,1,1394,1395],[592,2,2,1395,1397],[593,1,1,1397,1398],[596,5,5,1398,1403],[598,1,1,1403,1404],[601,1,1,1404,1405],[611,1,1,1405,1406],[612,3,3,1406,1409],[613,2,2,1409,1411],[615,1,1,1411,1412],[616,1,1,1412,1413],[617,1,1,1413,1414],[618,1,1,1414,1415],[619,1,1,1415,1416],[620,3,3,1416,1419],[623,1,1,1419,1420],[624,3,3,1420,1423],[625,4,3,1423,1426]]],[19,22,22,1426,1448,[[629,2,2,1426,1428],[630,1,1,1428,1429],[635,5,5,1429,1434],[637,1,1,1434,1435],[638,1,1,1435,1436],[644,1,1,1436,1437],[648,1,1,1437,1438],[652,2,2,1438,1440],[655,1,1,1440,1441],[656,1,1,1441,1442],[657,5,5,1442,1447],[658,1,1,1447,1448]]],[20,13,13,1448,1461,[[659,1,1,1448,1449],[661,1,1,1449,1450],[663,2,2,1450,1452],[665,1,1,1452,1453],[666,2,2,1453,1455],[668,3,3,1455,1458],[669,2,2,1458,1460],[670,1,1,1460,1461]]],[21,2,1,1461,1462,[[672,2,1,1461,1462]]],[22,190,166,1462,1628,[[679,3,3,1462,1465],[680,5,4,1465,1469],[681,1,1,1469,1470],[682,1,1,1470,1471],[683,3,3,1471,1474],[684,2,2,1474,1476],[685,3,3,1476,1479],[686,3,3,1479,1482],[687,4,3,1482,1485],[688,2,2,1485,1487],[689,5,4,1487,1491],[690,1,1,1491,1492],[691,5,4,1492,1496],[692,8,8,1496,1504],[694,2,2,1504,1506],[696,6,5,1506,1511],[697,4,4,1511,1515],[699,3,3,1515,1518],[700,1,1,1518,1519],[701,6,6,1519,1525],[702,16,12,1525,1537],[703,2,2,1537,1539],[704,9,8,1539,1547],[705,2,1,1547,1548],[706,2,2,1548,1550],[707,2,1,1550,1551],[708,1,1,1551,1552],[710,1,1,1552,1553],[711,2,2,1553,1555],[712,4,4,1555,1559],[714,9,4,1559,1563],[715,9,6,1563,1569],[716,1,1,1569,1570],[717,1,1,1570,1571],[718,6,6,1571,1577],[719,3,3,1577,1580],[720,3,3,1580,1583],[721,1,1,1583,1584],[722,2,2,1584,1586],[723,5,5,1586,1591],[724,1,1,1591,1592],[725,1,1,1592,1593],[726,2,2,1593,1595],[727,6,6,1595,1601],[729,5,4,1601,1605],[730,1,1,1605,1606],[731,2,2,1606,1608],[732,2,2,1608,1610],[733,2,2,1610,1612],[735,1,1,1612,1613],[736,1,1,1613,1614],[738,3,3,1614,1617],[739,2,2,1617,1619],[740,5,3,1619,1622],[741,1,1,1622,1623],[743,3,2,1623,1625],[744,3,3,1625,1628]]],[23,271,236,1628,1864,[[745,4,3,1628,1631],[746,9,5,1631,1636],[747,7,6,1636,1642],[748,7,7,1642,1649],[749,3,2,1649,1651],[750,6,5,1651,1656],[751,5,5,1656,1661],[752,3,2,1661,1663],[753,4,4,1663,1667],[754,6,6,1667,1673],[755,4,4,1673,1677],[756,6,5,1677,1682],[757,1,1,1682,1683],[758,5,5,1683,1688],[759,5,5,1688,1693],[760,10,8,1693,1701],[761,4,4,1701,1705],[762,1,1,1705,1706],[763,1,1,1706,1707],[766,8,6,1707,1713],[767,9,7,1713,1720],[768,5,4,1720,1724],[769,14,12,1724,1736],[770,3,3,1736,1739],[771,4,3,1739,1742],[772,1,1,1742,1743],[773,1,1,1743,1744],[774,2,2,1744,1746],[775,7,6,1746,1752],[776,11,10,1752,1762],[777,5,5,1762,1767],[778,5,5,1767,1772],[779,1,1,1772,1773],[780,1,1,1773,1774],[781,5,5,1774,1779],[783,2,2,1779,1781],[784,7,6,1781,1787],[785,2,2,1787,1789],[786,4,4,1789,1793],[787,6,6,1793,1799],[788,20,13,1799,1812],[789,1,1,1812,1813],[790,6,6,1813,1819],[791,2,1,1819,1820],[792,3,3,1820,1823],[793,1,1,1823,1824],[794,16,16,1824,1840],[795,22,19,1840,1859],[796,6,5,1859,1864]]],[24,11,10,1864,1874,[[798,8,7,1864,1871],[799,1,1,1871,1872],[800,2,2,1872,1874]]],[25,198,173,1874,2047,[[802,4,4,1874,1878],[806,2,2,1878,1880],[807,2,2,1880,1882],[808,5,5,1882,1887],[809,3,3,1887,1890],[810,2,1,1890,1891],[811,2,2,1891,1893],[812,4,3,1893,1896],[813,7,6,1896,1902],[814,1,1,1902,1903],[815,6,5,1903,1908],[816,1,1,1908,1909],[817,2,2,1909,1911],[818,3,3,1911,1914],[820,4,4,1914,1918],[821,18,15,1918,1933],[822,3,3,1933,1936],[823,5,5,1936,1941],[824,4,4,1941,1945],[825,1,1,1945,1946],[826,2,2,1946,1948],[827,4,3,1948,1951],[828,3,3,1951,1954],[829,2,2,1954,1956],[830,10,7,1956,1963],[831,11,8,1963,1971],[832,5,4,1971,1975],[833,15,12,1975,1987],[834,9,7,1987,1994],[835,7,6,1994,2000],[836,2,2,2000,2002],[837,8,8,2002,2010],[838,2,2,2010,2012],[839,8,7,2012,2019],[840,8,7,2019,2026],[841,1,1,2026,2027],[842,2,2,2027,2029],[843,1,1,2029,2030],[844,2,2,2030,2032],[846,7,5,2032,2037],[847,2,2,2037,2039],[848,5,5,2039,2044],[849,3,3,2044,2047]]],[26,20,17,2047,2064,[[850,1,1,2047,2048],[857,6,5,2048,2053],[858,3,3,2053,2056],[859,2,2,2056,2058],[860,8,6,2058,2064]]],[27,20,19,2064,2083,[[862,2,2,2064,2066],[863,6,6,2066,2072],[865,3,2,2072,2074],[867,1,1,2074,2075],[868,1,1,2075,2076],[870,1,1,2076,2077],[871,1,1,2077,2078],[872,2,2,2078,2080],[873,1,1,2080,2081],[874,2,2,2081,2083]]],[28,12,12,2083,2095,[[876,3,3,2083,2086],[877,6,6,2086,2092],[878,3,3,2092,2095]]],[29,23,21,2095,2116,[[880,3,2,2095,2097],[881,5,5,2097,2102],[882,1,1,2102,2103],[883,2,2,2103,2105],[885,3,3,2105,2108],[886,4,4,2108,2112],[887,5,4,2112,2116]]],[30,1,1,2116,2117,[[888,1,1,2116,2117]]],[31,2,2,2117,2119,[[889,1,1,2117,2118],[890,1,1,2118,2119]]],[32,15,13,2119,2132,[[893,2,2,2119,2121],[896,1,1,2121,2122],[897,6,4,2122,2126],[898,2,2,2126,2128],[899,4,4,2128,2132]]],[33,3,3,2132,2135,[[900,1,1,2132,2133],[901,1,1,2133,2134],[902,1,1,2134,2135]]],[34,10,10,2135,2145,[[903,1,1,2135,2136],[904,4,4,2136,2140],[905,5,5,2140,2145]]],[35,8,7,2145,2152,[[906,2,1,2145,2146],[907,3,3,2146,2149],[908,3,3,2149,2152]]],[36,5,5,2152,2157,[[909,2,2,2152,2154],[910,3,3,2154,2157]]],[37,42,32,2157,2189,[[911,4,3,2157,2160],[912,1,1,2160,2161],[913,1,1,2161,2162],[914,2,2,2162,2164],[915,4,4,2164,2168],[916,8,4,2168,2172],[917,3,2,2172,2174],[918,3,2,2174,2176],[919,2,2,2176,2178],[920,2,1,2178,2179],[921,3,2,2179,2181],[922,3,3,2181,2184],[923,3,2,2184,2186],[924,3,3,2186,2189]]],[38,2,2,2189,2191,[[927,1,1,2189,2190],[928,1,1,2190,2191]]]],[0,1,9,10,11,14,16,19,21,23,24,25,27,28,29,31,34,35,36,41,42,43,91,93,95,141,142,143,148,149,150,154,162,163,165,169,171,173,176,177,178,180,182,183,184,186,190,192,194,196,197,200,202,205,206,207,212,215,216,218,219,221,222,224,239,242,244,245,254,259,265,266,267,268,270,274,275,294,297,299,303,304,305,308,324,325,327,328,330,333,334,335,355,358,367,373,378,384,405,426,442,449,458,480,485,488,496,510,534,536,545,547,549,565,573,578,583,584,586,590,594,595,596,598,628,643,653,664,693,694,695,696,704,714,755,766,773,777,785,786,787,796,855,876,886,891,931,937,963,978,981,982,990,1001,1010,1017,1023,1027,1033,1045,1046,1047,1056,1057,1060,1061,1070,1071,1074,1083,1084,1093,1128,1187,1214,1224,1225,1226,1228,1229,1231,1236,1238,1239,1240,1241,1242,1243,1247,1248,1249,1250,1251,1252,1257,1258,1259,1261,1264,1265,1281,1282,1284,1285,1286,1291,1301,1316,1332,1335,1338,1364,1365,1366,1368,1375,1376,1377,1378,1383,1384,1392,1398,1406,1414,1417,1420,1421,1424,1426,1431,1433,1434,1435,1440,1447,1448,1454,1455,1456,1458,1463,1467,1472,1488,1503,1511,1513,1514,1517,1519,1530,1539,1542,1569,1576,1587,1596,1604,1621,1637,1644,1656,1659,1663,1666,1668,1681,1683,1687,1688,1689,1704,1706,1715,1716,1717,1724,1726,1727,1732,1734,1735,1747,1751,1756,1757,1758,1764,1765,1766,1767,1768,1771,1775,1782,1789,1790,1791,1792,1798,1799,1809,1811,1812,1815,1816,1817,1828,1829,1833,1835,1841,1845,1849,1857,1858,1864,1867,1872,1878,1882,1884,1885,1892,1932,1948,1950,1953,1961,1979,1982,2002,2026,2027,2031,2053,2055,2062,2134,2153,2154,2170,2173,2174,2175,2177,2382,2437,2439,2442,2445,2446,2449,2451,2461,2474,2476,2504,2506,2508,2511,2520,2822,2999,3018,3026,3038,3039,3041,3042,3043,3145,3223,3254,3276,3278,3279,3290,3304,3310,3314,3315,3317,3320,3322,3340,3342,3393,3402,3412,3424,3441,3445,3471,3473,3474,3475,3476,3478,3479,3487,3488,3492,3493,3500,3507,3511,3514,3524,3525,3528,3529,3530,3537,3543,3544,3556,3557,3558,3560,3562,3563,3565,3566,3567,3568,3569,3594,3600,3605,3705,3956,3966,3979,3997,4018,4055,4077,4091,4092,4093,4094,4095,4096,4100,4101,4102,4103,4104,4107,4110,4111,4114,4115,4116,4117,4122,4124,4129,4131,4132,4138,4139,4142,4144,4145,4146,4155,4171,4172,4194,4207,4208,4226,4227,4228,4270,4277,4323,4328,4334,4335,4344,4362,4364,4366,4371,4374,4375,4380,4381,4386,4388,4493,4499,4508,4542,4544,4566,4719,4722,4723,4725,4726,4727,4735,4740,4747,4748,4750,4751,4761,4797,4798,4800,4811,4812,4813,4814,4815,4818,4828,4829,4833,4834,4845,4855,4859,4873,4877,4878,4879,4881,4897,4899,4900,4913,4914,4917,4919,4927,4928,4943,4947,4950,4957,4958,4962,4965,4967,4969,4975,4977,4983,4987,4988,4993,4995,4999,5000,5003,5005,5009,5018,5021,5022,5025,5026,5029,5030,5036,5040,5042,5043,5047,5050,5051,5059,5061,5068,5084,5086,5087,5089,5096,5098,5104,5109,5112,5138,5144,5145,5146,5147,5151,5161,5162,5163,5164,5180,5185,5193,5197,5200,5205,5211,5214,5216,5217,5218,5219,5220,5222,5225,5229,5233,5237,5238,5239,5241,5250,5256,5264,5269,5277,5279,5282,5323,5326,5330,5334,5342,5345,5362,5378,5393,5407,5408,5409,5414,5416,5420,5428,5476,5507,5520,5529,5539,5547,5566,5567,5568,5569,5575,5581,5587,5588,5612,5619,5621,5623,5634,5635,5636,5637,5660,5663,5667,5675,5680,5681,5687,5695,5701,5702,5703,5704,5706,5707,5713,5724,5727,5732,5735,5744,5749,5751,5756,5759,5768,5771,5780,5807,5810,5823,5826,5827,5838,5840,5841,5843,5844,5845,5850,5853,5855,5857,5862,5864,5865,5866,5870,5871,5872,5878,5880,5883,5887,5893,5904,5906,5934,5940,5945,5946,5948,5971,5976,5978,5982,5985,5997,6003,6043,6046,6048,6061,6104,6105,6106,6110,6123,6129,6130,6131,6137,6155,6156,6158,6159,6161,6175,6179,6188,6191,6192,6194,6196,6202,6221,6280,6281,6283,6287,6290,6291,6294,6296,6297,6299,6301,6302,6303,6370,6372,6383,6424,6430,6435,6436,6437,6439,6441,6445,6458,6459,6465,6474,6476,6479,6484,6489,6491,6493,6494,6511,6524,6535,6536,6541,6542,6546,6547,6551,6557,6579,6593,6598,6620,6627,6654,6658,6659,6663,6664,6691,6693,6694,6747,6791,6815,6819,6832,6834,6841,6842,6844,6846,6847,6848,6850,6881,6884,6904,6973,6995,7000,7002,7003,7007,7010,7023,7054,7055,7075,7079,7114,7123,7128,7134,7159,7160,7248,7250,7295,7302,7322,7323,7336,7395,7396,7407,7466,7488,7492,7502,7504,7523,7533,7537,7540,7553,7664,7667,7771,7783,7792,7833,7837,7847,7884,7902,7912,7913,7925,7931,7938,7939,7945,7951,7955,7956,7962,7965,7978,7994,8018,8024,8071,8093,8131,8138,8189,8203,8211,8242,8302,8303,8306,8348,8360,8367,8370,8376,8378,8389,8393,8412,8475,8486,8487,8489,8506,8520,8564,8594,8610,8645,8657,8698,8700,8705,8712,8717,8740,8748,8757,8769,8772,8854,8863,8865,8878,8897,8994,9006,9008,9012,9021,9022,9026,9028,9031,9032,9033,9038,9045,9059,9060,9062,9064,9069,9070,9072,9077,9085,9092,9094,9102,9103,9126,9129,9130,9179,9242,9261,9269,9324,9346,9347,9383,9415,9435,9516,9526,9566,9570,9596,9603,9640,9641,9649,9651,9662,9666,9697,9728,9729,9730,9733,9803,9826,9832,9843,9847,9848,9849,9889,9891,9930,9944,9945,9954,9978,9988,9990,10009,10010,10019,10049,10056,10057,10059,10068,10072,10076,10078,10080,10098,10112,10143,10189,10195,10198,10200,10209,10216,10217,10225,10234,10241,10243,10244,10246,10262,10271,10295,10297,10328,10425,10437,10439,10451,10453,10509,10556,10668,10677,10762,10791,10834,10838,10843,10850,10851,10853,10871,10884,10909,10910,10927,10946,10950,10955,10966,10969,10972,10982,11151,11175,11179,11194,11203,11223,11228,11287,11296,11300,11309,11310,11314,11315,11318,11319,11320,11327,11337,11338,11345,11346,11352,11354,11363,11369,11375,11376,11378,11386,11387,11390,11392,11437,11445,11462,11476,11481,11482,11495,11498,11518,11525,11533,11579,11581,11594,11597,11605,11611,11616,11656,11669,11676,11677,11753,11836,11837,11852,11879,11888,11892,11894,11896,11906,11933,11940,11941,11966,11994,11996,12014,12016,12018,12100,12114,12172,12238,12239,12244,12248,12249,12254,12263,12363,12396,12499,12517,12519,12521,12526,12533,12534,12535,12541,12546,12547,12577,12579,12580,12834,12867,12870,12876,12877,12879,12889,12893,12894,12904,12918,12961,12973,12976,13009,13038,13057,13075,13107,13108,13117,13136,13143,13152,13189,13200,13222,13232,13251,13256,13280,13286,13293,13330,13353,13397,13440,13454,13474,13509,13517,13528,13565,13696,13731,13772,13775,13781,13782,13786,13797,13806,13811,13817,13819,13826,13848,13858,13937,13947,13953,13955,14000,14013,14021,14057,14059,14072,14095,14114,14125,14172,14201,14231,14233,14242,14264,14298,14371,14374,14380,14404,14430,14453,14459,14461,14472,14479,14484,14544,14561,14574,14596,14613,14616,14620,14622,14623,14624,14627,14632,14634,14636,14644,14669,14672,14715,14773,14779,14781,14790,14803,14809,14821,14840,14848,14865,14869,14874,14877,14895,14897,14899,14900,14908,14932,14969,14996,15006,15008,15016,15019,15029,15045,15055,15056,15060,15065,15068,15074,15079,15089,15090,15093,15111,15125,15182,15187,15207,15222,15227,15238,15241,15259,15272,15280,15282,15283,15320,15337,15353,15365,15370,15380,15433,15458,15466,15474,15476,15478,15479,15482,15483,15487,15493,15494,15499,15500,15509,15519,15521,15536,15540,15546,15560,15576,15580,15584,15585,15595,15603,15606,15613,15617,15622,15629,15633,15636,15638,15641,15642,15650,15668,15673,15675,15678,15689,15702,15733,15734,15747,15770,15792,15805,15819,15829,15845,15846,15857,15917,15962,15985,15988,16017,16083,16110,16175,16181,16182,16187,16202,16217,16235,16254,16274,16283,16291,16296,16299,16303,16347,16357,16359,16366,16378,16382,16384,16454,16455,16474,16618,16625,16628,16631,16633,16686,16719,16897,17003,17116,17138,17198,17228,17255,17265,17267,17272,17275,17307,17319,17380,17399,17406,17449,17472,17474,17500,17509,17510,17515,17516,17530,17566,17656,17661,17673,17692,17693,17704,17706,17733,17735,17747,17765,17769,17772,17781,17800,17804,17806,17815,17816,17829,17830,17831,17848,17864,17873,17888,17893,17896,17900,17905,17911,17915,17919,17920,17935,17937,17940,17944,17948,17949,17953,17954,17970,17973,17998,17999,18000,18003,18004,18022,18023,18024,18028,18036,18044,18049,18070,18078,18085,18086,18087,18090,18094,18096,18098,18099,18100,18101,18106,18108,18111,18112,18113,18114,18115,18126,18130,18131,18135,18139,18140,18145,18148,18149,18151,18164,18166,18186,18197,18223,18261,18288,18296,18304,18309,18310,18312,18340,18347,18348,18350,18359,18363,18368,18370,18372,18390,18401,18415,18432,18441,18442,18443,18444,18448,18456,18460,18469,18484,18485,18490,18511,18556,18557,18569,18573,18579,18580,18583,18597,18600,18627,18634,18642,18644,18648,18649,18655,18659,18679,18686,18689,18696,18706,18713,18719,18728,18732,18749,18750,18778,18800,18823,18839,18842,18850,18854,18858,18861,18865,18872,18913,18914,18923,18930,18944,18947,18960,18964,18967,18971,18972,18980,18996,19003,19004,19011,19018,19020,19021,19032,19034,19043,19047,19050,19054,19055,19077,19088,19097,19101,19108,19109,19111,19126,19141,19144,19152,19153,19169,19172,19178,19187,19194,19199,19211,19213,19214,19218,19219,19223,19230,19231,19233,19245,19253,19254,19260,19261,19264,19279,19295,19297,19301,19308,19311,19318,19319,19322,19325,19329,19339,19340,19342,19349,19350,19351,19354,19355,19361,19363,19370,19383,19400,19414,19464,19466,19480,19481,19482,19483,19487,19489,19491,19492,19494,19499,19508,19529,19530,19532,19533,19543,19545,19546,19547,19554,19560,19563,19564,19565,19566,19567,19572,19578,19589,19592,19601,19602,19603,19626,19653,19670,19677,19699,19707,19713,19714,19723,19728,19739,19746,19748,19751,19752,19753,19768,19772,19774,19775,19784,19786,19788,19790,19800,19802,19814,19818,19820,19821,19834,19871,19875,19876,19881,19886,19893,19928,19933,19945,19947,19948,19950,19952,19953,19959,19975,19985,19988,19989,19991,20001,20002,20004,20008,20009,20010,20011,20018,20019,20022,20023,20024,20025,20031,20032,20034,20036,20037,20038,20044,20053,20055,20057,20058,20061,20072,20075,20101,20104,20113,20148,20167,20169,20174,20175,20182,20184,20187,20188,20189,20191,20194,20200,20204,20207,20211,20212,20214,20216,20217,20219,20221,20227,20228,20237,20239,20240,20241,20253,20255,20258,20259,20260,20261,20264,20266,20282,20285,20292,20301,20303,20333,20334,20341,20342,20343,20347,20353,20388,20432,20441,20467,20479,20483,20485,20551,20552,20571,20577,20579,20584,20598,20600,20604,20607,20616,20621,20631,20649,20652,20670,20671,20672,20686,20692,20693,20695,20699,20700,20722,20744,20746,20747,20748,20750,20762,20765,20791,20829,20830,20838,20885,20888,20893,20894,20900,20901,20903,20904,20905,20910,20918,20923,20927,20929,20931,20933,20935,20936,20937,20963,20974,20976,20980,20991,21000,21005,21006,21022,21026,21034,21055,21063,21090,21092,21111,21116,21120,21138,21150,21154,21174,21175,21188,21192,21193,21195,21197,21202,21203,21209,21211,21215,21216,21217,21227,21229,21230,21242,21244,21246,21248,21252,21254,21256,21257,21263,21266,21271,21272,21273,21274,21275,21280,21282,21283,21304,21305,21306,21308,21309,21319,21326,21338,21340,21341,21342,21354,21358,21364,21377,21378,21379,21383,21387,21393,21394,21419,21422,21427,21433,21434,21436,21437,21441,21445,21460,21461,21462,21463,21464,21466,21475,21479,21542,21546,21558,21574,21586,21631,21634,21638,21646,21652,21658,21664,21692,21693,21694,21697,21700,21714,21716,21731,21739,21966,21968,21971,21973,21979,21994,21995,22003,22024,22030,22052,22055,22064,22076,22077,22078,22096,22105,22108,22120,22123,22126,22127,22128,22134,22136,22170,22194,22211,22226,22245,22251,22261,22270,22271,22293,22297,22305,22312,22314,22321,22329,22331,22341,22345,22359,22362,22386,22389,22396,22400,22404,22406,22409,22423,22430,22431,22466,22474,22476,22485,22489,22490,22492,22500,22501,22502,22504,22513,22539,22554,22581,22582,22633,22637,22638,22639,22644,22650,22652,22666,22677,22679,22681,22689,22712,22725,22737,22756,22762,22765,22768,22771,22774,22775,22777,22780,22805,22808,22810,22816,22828,22839,22840,22850,22851,22859,22861,22876,22888,22889,22899,22905,22921,22932,22936,22939,22942,22945,22947,22952,22953,22954,22955,22967,22976,22983,22988,23000,23009,23026,23034,23044,23046,23048,23057,23061,23067,23077,23078,23085,23132,23144]]],["+",[201,196,[[0,12,11,0,11,[[11,1,1,0,1],[20,1,1,1,2],[23,1,1,2,3],[34,1,1,3,4],[35,1,1,4,5],[39,1,1,5,6],[41,1,1,6,7],[43,1,1,7,8],[44,1,1,8,9],[46,3,2,9,11]]],[1,27,27,11,38,[[55,4,4,11,15],[56,2,2,15,17],[60,1,1,17,18],[61,4,4,18,22],[62,1,1,22,23],[65,3,3,23,26],[68,1,1,26,27],[69,2,2,27,29],[72,1,1,29,30],[78,1,1,30,31],[81,6,6,31,37],[82,1,1,37,38]]],[2,11,11,38,49,[[93,1,1,38,39],[100,1,1,39,40],[108,1,1,40,41],[111,1,1,41,42],[112,1,1,42,43],[114,3,3,43,46],[115,3,3,46,49]]],[3,8,8,49,57,[[117,1,1,49,50],[125,1,1,50,51],[131,1,1,51,52],[132,1,1,52,53],[142,1,1,53,54],[149,2,2,54,56],[150,1,1,56,57]]],[4,18,17,57,74,[[153,1,1,57,58],[154,3,3,58,61],[157,1,1,61,62],[158,1,1,62,63],[160,1,1,63,64],[161,1,1,64,65],[165,2,2,65,67],[168,2,1,67,68],[172,1,1,68,69],[178,1,1,69,70],[180,1,1,70,71],[181,2,2,71,73],[186,1,1,73,74]]],[5,6,6,74,80,[[195,2,2,74,76],[203,1,1,76,77],[205,1,1,77,78],[208,1,1,78,79],[210,1,1,79,80]]],[6,3,3,80,83,[[212,1,1,80,81],[221,1,1,81,82],[229,1,1,82,83]]],[8,6,5,83,88,[[244,1,1,83,84],[247,1,1,84,85],[263,2,2,85,87],[265,2,1,87,88]]],[9,2,2,88,90,[[278,1,1,88,89],[289,1,1,89,90]]],[10,6,6,90,96,[[296,1,1,90,91],[298,3,3,91,94],[299,1,1,94,95],[302,1,1,95,96]]],[11,8,8,96,104,[[317,3,3,96,99],[320,1,1,99,100],[329,2,2,100,102],[332,1,1,102,103],[336,1,1,103,104]]],[12,1,1,104,105,[[338,1,1,104,105]]],[13,5,5,105,110,[[372,2,2,105,107],[373,1,1,107,108],[386,1,1,108,109],[396,1,1,109,110]]],[17,1,1,110,111,[[446,1,1,110,111]]],[18,11,11,111,122,[[487,1,1,111,112],[498,1,1,112,113],[511,1,1,113,114],[519,1,1,114,115],[529,1,1,115,116],[558,1,1,116,117],[562,1,1,117,118],[579,1,1,118,119],[584,1,1,119,120],[586,1,1,120,121],[623,1,1,121,122]]],[19,4,4,122,126,[[629,1,1,122,123],[648,1,1,123,124],[652,1,1,124,125],[657,1,1,125,126]]],[22,13,12,126,138,[[689,1,1,126,127],[691,1,1,127,128],[699,1,1,128,129],[701,1,1,129,130],[702,1,1,130,131],[707,2,1,131,132],[717,1,1,132,133],[724,1,1,133,134],[727,1,1,134,135],[731,2,2,135,137],[733,1,1,137,138]]],[23,32,32,138,170,[[746,1,1,138,139],[747,1,1,139,140],[748,1,1,140,141],[750,2,2,141,143],[751,2,2,143,145],[752,1,1,145,146],[754,2,2,146,148],[755,3,3,148,151],[760,2,2,151,153],[761,1,1,153,154],[767,2,2,154,156],[769,1,1,156,157],[771,1,1,157,158],[774,1,1,158,159],[775,3,3,159,162],[776,1,1,162,163],[778,1,1,163,164],[790,1,1,164,165],[792,1,1,165,166],[794,3,3,166,169],[795,1,1,169,170]]],[25,12,12,170,182,[[817,1,1,170,171],[821,4,4,171,175],[822,1,1,175,176],[824,1,1,176,177],[831,2,2,177,179],[837,1,1,179,180],[840,1,1,180,181],[843,1,1,181,182]]],[26,1,1,182,183,[[858,1,1,182,183]]],[27,4,4,183,187,[[863,1,1,183,184],[872,1,1,184,185],[873,1,1,185,186],[874,1,1,186,187]]],[29,3,3,187,190,[[880,1,1,187,188],[881,1,1,188,189],[887,1,1,189,190]]],[32,2,2,190,192,[[898,1,1,190,191],[899,1,1,191,192]]],[33,1,1,192,193,[[901,1,1,192,193]]],[37,4,3,193,196,[[912,1,1,193,194],[918,2,1,194,195],[920,1,1,195,196]]]],[299,534,598,1027,1074,1187,1259,1332,1377,1421,1435,1656,1666,1668,1681,1687,1689,1816,1833,1857,1858,1867,1885,1948,1953,1979,2027,2053,2062,2170,2382,2439,2442,2445,2446,2449,2461,2474,2822,3042,3317,3402,3445,3507,3511,3524,3537,3556,3569,3605,3966,4194,4207,4493,4761,4798,4834,4919,4943,4947,4957,5059,5098,5151,5164,5277,5282,5345,5428,5568,5675,5701,5704,5840,6043,6046,6280,6370,6458,6493,6557,6834,7054,7407,7466,7945,7965,7994,8306,8657,8897,8994,9006,9026,9060,9179,9649,9651,9666,9730,9990,10019,10112,10209,10297,11287,11314,11346,11597,11852,13117,14057,14201,14404,14561,14715,15227,15282,15536,15702,15770,16347,16455,17003,17138,17265,17900,17911,18036,18078,18096,18197,18415,18597,18648,18713,18719,18749,18971,19020,19043,19109,19111,19141,19144,19172,19218,19223,19230,19233,19245,19350,19351,19383,19491,19492,19547,19601,19677,19699,19707,19723,19752,19814,20072,20113,20174,20175,20194,20266,20765,20901,20904,20905,20933,20963,21034,21216,21217,21379,21475,21558,22003,22120,22251,22261,22270,22389,22396,22502,22652,22679,22712,22905,22983,23026]]],["Earth",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[9]]],["countries",[48,46,[[0,4,4,0,4,[[9,1,1,0,1],[25,2,2,1,3],[40,1,1,3,4]]],[11,1,1,4,5,[[330,1,1,4,5]]],[12,2,2,5,7,[[359,1,1,5,6],[366,1,1,6,7]]],[13,5,5,7,12,[[377,1,1,7,8],[378,1,1,8,9],[381,1,1,9,10],[386,1,1,10,11],[400,1,1,11,12]]],[14,1,1,12,13,[[405,1,1,12,13]]],[18,1,1,13,14,[[587,1,1,13,14]]],[22,2,2,14,16,[[686,1,1,14,15],[715,1,1,15,16]]],[23,5,5,16,21,[[767,2,2,16,18],[772,1,1,18,19],[776,1,1,19,20],[784,1,1,20,21]]],[25,24,22,21,43,[[806,2,2,21,23],[807,1,1,23,24],[812,3,2,24,26],[813,1,1,26,27],[821,4,4,27,31],[823,2,2,31,33],[826,1,1,33,34],[830,2,1,34,35],[831,3,3,35,38],[833,1,1,38,39],[835,1,1,39,40],[836,1,1,40,41],[837,2,2,41,43]]],[26,3,3,43,46,[[858,1,1,43,44],[860,2,2,44,46]]]],[254,695,696,1252,10059,10969,11194,11437,11445,11495,11616,11966,12100,15792,17816,18370,19487,19492,19626,19768,19952,20551,20552,20571,20671,20672,20695,20918,20927,20929,20936,20980,20991,21090,21195,21211,21227,21230,21257,21326,21354,21378,21383,21995,22076,22078]]],["country",[71,68,[[0,12,12,0,12,[[18,1,1,0,1],[19,1,1,1,2],[23,2,2,2,4],[24,1,1,4,5],[29,1,1,5,6],[31,1,1,6,7],[33,1,1,7,8],[35,1,1,8,9],[41,2,2,9,11],[46,1,1,11,12]]],[2,1,1,12,13,[[114,1,1,12,13]]],[3,3,3,13,16,[[136,1,1,13,14],[148,2,2,14,16]]],[4,2,2,16,18,[[156,1,1,16,17],[178,1,1,17,18]]],[5,13,13,18,31,[[188,3,3,18,21],[192,2,2,21,23],[193,1,1,23,24],[195,1,1,24,25],[196,2,2,25,27],[198,1,1,27,28],[199,1,1,28,29],[205,1,1,29,30],[208,1,1,30,31]]],[6,5,5,31,36,[[218,1,1,31,32],[221,1,1,32,33],[222,1,1,33,34],[226,1,1,34,35],[228,1,1,35,36]]],[9,3,3,36,39,[[281,1,1,36,37],[284,1,1,37,38],[287,1,1,38,39]]],[10,8,7,39,46,[[294,2,1,39,40],[300,2,2,40,42],[301,2,2,42,44],[310,1,1,44,45],[312,1,1,45,46]]],[11,2,2,46,48,[[315,1,1,46,47],[330,1,1,47,48]]],[12,1,1,48,49,[[357,1,1,48,49]]],[13,2,2,49,51,[[375,1,1,49,50],[396,1,1,50,51]]],[22,2,2,51,53,[[679,1,1,51,52],[700,1,1,52,53]]],[23,8,8,53,61,[[746,1,1,53,54],[766,2,2,54,56],[776,1,1,56,57],[788,1,1,57,58],[790,1,1,58,59],[792,1,1,59,60],[795,1,1,60,61]]],[25,4,4,61,65,[[821,1,1,61,62],[826,1,1,62,63],[833,1,1,63,64],[835,1,1,64,65]]],[31,1,1,65,66,[[889,1,1,65,66]]],[37,4,2,66,68,[[916,4,2,66,68]]]],[485,496,595,653,664,855,937,982,1046,1282,1285,1447,3500,4328,4722,4751,5047,5569,5871,5872,5893,5971,5976,5978,6048,6104,6105,6137,6175,6372,6435,6747,6850,6881,6973,7007,8412,8486,8594,8863,9092,9094,9129,9130,9435,9516,9596,10059,10927,11378,11837,17661,18070,18972,19464,19480,19739,20011,20055,20101,20221,20937,21092,21263,21326,22539,22953,22955]]],["earth",[694,650,[[0,108,89,0,89,[[0,19,14,0,14],[1,6,4,14,18],[3,2,2,18,20],[5,11,7,20,27],[6,14,12,27,39],[7,12,10,39,49],[8,11,10,49,59],[9,3,3,59,62],[10,5,4,62,66],[12,2,1,66,67],[13,2,2,67,69],[17,2,2,69,71],[18,3,2,71,73],[21,1,1,73,74],[23,2,2,74,76],[25,1,1,76,77],[26,2,2,77,79],[27,2,2,79,81],[36,1,1,81,82],[40,2,2,82,84],[41,1,1,84,85],[42,1,1,85,86],[44,1,1,86,87],[47,2,2,87,89]]],[1,17,15,89,104,[[57,2,2,89,91],[58,5,5,91,96],[59,3,2,96,98],[64,1,1,98,99],[68,1,1,99,100],[69,2,1,100,101],[80,1,1,101,102],[83,2,2,102,104]]],[2,8,8,104,112,[[100,7,7,104,111],[115,1,1,111,112]]],[3,8,8,112,120,[[127,1,1,112,113],[130,1,1,113,114],[132,3,3,114,117],[138,2,2,117,119],[142,1,1,119,120]]],[4,30,28,120,148,[[155,1,1,120,121],[156,6,6,121,127],[157,2,1,127,128],[162,1,1,128,129],[163,2,2,129,131],[164,2,2,131,133],[165,2,1,133,134],[180,7,7,134,141],[182,1,1,141,142],[183,1,1,142,143],[184,3,3,143,146],[185,2,2,146,148]]],[5,9,9,148,157,[[188,1,1,148,149],[189,2,2,149,151],[190,1,1,151,152],[191,1,1,152,153],[193,3,3,153,156],[209,1,1,156,157]]],[6,5,5,157,162,[[213,1,1,157,158],[215,1,1,158,159],[216,2,2,159,161],[228,1,1,161,162]]],[8,15,14,162,176,[[237,2,2,162,164],[239,1,1,164,165],[240,1,1,165,166],[249,1,1,166,167],[252,3,2,167,169],[259,1,1,169,170],[260,1,1,170,171],[261,2,2,171,173],[263,2,2,173,175],[265,1,1,175,176]]],[9,13,13,176,189,[[267,1,1,176,177],[270,1,1,177,178],[273,2,2,178,180],[278,2,2,180,182],[279,1,1,182,183],[280,2,2,183,185],[284,2,2,185,187],[288,2,2,187,189]]],[10,13,13,189,202,[[291,3,3,189,192],[292,1,1,192,193],[294,1,1,193,194],[298,5,5,194,199],[300,2,2,199,201],[308,1,1,201,202]]],[11,5,4,202,206,[[317,1,1,202,203],[322,1,1,203,204],[331,3,2,204,206]]],[12,13,13,206,219,[[338,2,2,206,208],[353,5,5,208,213],[354,2,2,213,215],[358,1,1,215,216],[359,1,1,216,217],[366,2,2,217,219]]],[13,11,11,219,230,[[367,1,1,219,220],[368,1,1,220,221],[372,3,3,221,224],[375,2,2,224,226],[382,1,1,226,227],[386,1,1,227,228],[398,1,1,228,229],[402,1,1,229,230]]],[14,1,1,230,231,[[403,1,1,230,231]]],[15,1,1,231,232,[[421,1,1,231,232]]],[17,44,44,232,276,[[436,2,2,232,234],[437,2,2,234,236],[438,1,1,236,237],[440,3,3,237,240],[442,1,1,240,241],[443,1,1,241,242],[444,2,2,242,244],[447,3,3,244,247],[449,2,2,247,249],[450,2,2,249,251],[451,1,1,251,252],[453,2,2,252,254],[455,2,2,254,256],[457,1,1,256,257],[459,2,2,257,259],[461,1,1,259,260],[463,2,2,260,262],[465,1,1,262,263],[469,1,1,263,264],[470,1,1,264,265],[472,4,4,265,269],[473,6,6,269,275],[474,1,1,275,276]]],[18,132,130,276,406,[[479,3,3,276,279],[484,1,1,279,280],[485,2,2,280,282],[487,1,1,282,283],[489,1,1,283,284],[493,1,1,284,285],[494,1,1,285,286],[495,1,1,286,287],[496,1,1,287,288],[499,1,1,288,289],[501,1,1,289,290],[502,1,1,290,291],[510,3,3,291,294],[514,3,3,294,297],[518,1,1,297,298],[521,1,1,298,299],[522,1,1,299,300],[523,5,5,300,305],[524,3,3,305,308],[525,2,2,308,310],[527,2,2,310,312],[534,2,2,312,314],[535,2,2,314,316],[536,1,1,316,317],[537,1,1,317,318],[538,1,1,318,319],[540,1,1,319,320],[542,2,2,320,322],[543,1,1,322,323],[544,4,4,323,327],[545,2,2,327,329],[546,1,1,329,330],[548,1,1,330,331],[549,5,4,331,335],[550,2,2,335,337],[551,3,3,337,340],[552,2,2,340,342],[553,3,3,342,345],[554,1,1,345,346],[555,1,1,346,347],[556,1,1,347,348],[559,2,2,348,350],[560,1,1,350,351],[566,2,2,351,353],[567,1,1,353,354],[571,1,1,354,355],[572,1,1,355,356],[573,4,4,356,360],[574,4,4,360,364],[575,3,3,364,367],[576,1,1,367,368],[579,2,2,368,370],[580,1,1,370,371],[581,7,7,371,378],[582,1,1,378,379],[583,1,1,379,380],[585,1,1,380,381],[589,1,1,381,382],[590,1,1,382,383],[591,1,1,383,384],[592,2,2,384,386],[596,5,5,386,391],[598,1,1,391,392],[601,1,1,392,393],[611,1,1,393,394],[612,2,2,394,396],[613,1,1,396,397],[615,1,1,397,398],[616,1,1,398,399],[617,1,1,399,400],[618,1,1,400,401],[624,2,2,401,403],[625,4,3,403,406]]],[19,14,14,406,420,[[630,1,1,406,407],[635,5,5,407,412],[637,1,1,412,413],[638,1,1,413,414],[644,1,1,414,415],[652,1,1,415,416],[657,4,4,416,420]]],[20,11,11,420,431,[[659,1,1,420,421],[661,1,1,421,422],[663,2,2,422,424],[665,1,1,424,425],[666,2,2,425,427],[668,1,1,427,428],[669,2,2,428,430],[670,1,1,430,431]]],[21,1,1,431,432,[[672,1,1,431,432]]],[22,94,84,432,516,[[679,1,1,432,433],[680,2,2,433,435],[682,1,1,435,436],[683,2,2,436,438],[684,1,1,438,439],[686,1,1,439,440],[688,1,1,440,441],[689,4,3,441,444],[690,1,1,444,445],[691,1,1,445,446],[692,4,4,446,450],[696,3,2,450,452],[701,2,2,452,454],[702,12,8,454,462],[703,1,1,462,463],[704,6,5,463,468],[706,2,2,468,470],[711,1,1,470,471],[712,1,1,471,472],[715,3,2,472,474],[718,6,6,474,480],[719,2,2,480,482],[720,3,3,482,485],[721,1,1,485,486],[722,2,2,486,488],[723,5,5,488,493],[726,2,2,493,495],[727,4,4,495,499],[729,4,3,499,502],[730,1,1,502,503],[732,2,2,503,505],[733,1,1,505,506],[736,1,1,506,507],[738,1,1,507,508],[739,1,1,508,509],[740,1,1,509,510],[741,1,1,510,511],[743,3,2,511,513],[744,3,3,513,516]]],[23,54,51,516,567,[[748,2,2,516,518],[750,2,2,518,520],[751,1,1,520,521],[753,2,2,521,523],[754,3,3,523,526],[758,1,1,526,527],[759,3,3,527,530],[760,2,2,530,532],[761,1,1,532,533],[763,1,1,533,534],[766,3,1,534,535],[767,2,2,535,537],[768,1,1,537,538],[769,6,5,538,543],[770,1,1,543,544],[773,1,1,544,545],[775,3,3,545,548],[776,1,1,548,549],[777,2,2,549,551],[778,3,3,551,554],[788,1,1,554,555],[790,1,1,555,556],[793,1,1,556,557],[794,3,3,557,560],[795,7,7,560,567]]],[24,5,5,567,572,[[798,3,3,567,570],[799,1,1,570,571],[800,1,1,571,572]]],[25,25,25,572,597,[[802,3,3,572,575],[808,1,1,575,576],[809,2,2,576,578],[810,1,1,578,579],[811,2,2,579,581],[827,1,1,581,582],[828,1,1,582,583],[829,1,1,583,584],[832,4,4,584,588],[833,3,3,588,591],[835,2,2,591,593],[836,1,1,593,594],[840,2,2,594,596],[844,1,1,596,597]]],[26,1,1,597,598,[[857,1,1,597,598]]],[27,5,5,598,603,[[863,4,4,598,602],[867,1,1,602,603]]],[28,3,3,603,606,[[877,2,2,603,605],[878,1,1,605,606]]],[29,9,8,606,614,[[880,1,1,606,607],[881,1,1,607,608],[882,1,1,608,609],[883,2,2,609,611],[886,1,1,611,612],[887,3,2,612,614]]],[31,1,1,614,615,[[890,1,1,614,615]]],[32,7,7,615,622,[[893,2,2,615,617],[896,1,1,617,618],[897,1,1,618,619],[898,1,1,619,620],[899,2,2,620,622]]],[33,1,1,622,623,[[900,1,1,622,623]]],[34,5,5,623,628,[[904,2,2,623,625],[905,3,3,625,628]]],[35,4,4,628,632,[[907,2,2,628,630],[908,2,2,630,632]]],[36,3,3,632,635,[[909,1,1,632,633],[910,2,2,633,635]]],[37,17,14,635,649,[[911,3,2,635,637],[914,2,2,637,639],[915,3,3,639,642],[916,4,2,642,644],[919,1,1,644,645],[922,2,2,645,647],[924,2,2,647,649]]],[38,1,1,649,650,[[928,1,1,649,650]]]],[0,1,10,11,14,16,19,21,23,24,25,27,28,29,31,34,35,36,91,93,141,142,143,148,149,150,154,162,163,165,169,171,173,176,177,178,180,182,183,184,186,190,192,194,196,197,200,202,205,206,207,212,215,216,218,219,221,222,224,242,259,266,267,270,274,275,334,355,358,442,449,480,488,565,594,643,696,755,766,785,787,1093,1242,1251,1258,1316,1365,1463,1467,1727,1732,1756,1757,1758,1771,1775,1782,1792,1932,2031,2055,2437,2504,2506,2999,3018,3026,3038,3039,3041,3043,3543,4055,4129,4226,4227,4228,4380,4386,4499,4999,5021,5022,5030,5036,5040,5043,5061,5200,5214,5229,5256,5264,5279,5612,5621,5634,5636,5637,5660,5675,5727,5756,5759,5771,5780,5826,5827,5880,5904,5906,5934,5948,5982,5985,5997,6474,6593,6627,6658,6691,7003,7248,7250,7302,7322,7523,7664,7667,7847,7902,7913,7925,7955,7962,7994,8024,8131,8189,8203,8302,8303,8348,8367,8376,8487,8506,8610,8645,8748,8757,8769,8772,8878,9008,9012,9028,9038,9045,9102,9103,9383,9662,9803,10076,10080,10262,10271,10834,10843,10850,10851,10853,10871,10884,10950,10972,11175,11179,11203,11223,11296,11300,11315,11386,11387,11518,11611,11894,12016,12018,12517,12876,12877,12893,12894,12918,12961,12973,12976,13009,13038,13057,13075,13136,13143,13152,13189,13200,13222,13232,13256,13280,13293,13330,13353,13397,13440,13454,13474,13509,13528,13565,13696,13731,13772,13775,13781,13786,13797,13806,13811,13817,13819,13826,13848,13947,13953,13955,14000,14013,14021,14059,14072,14095,14114,14125,14172,14233,14242,14264,14371,14374,14380,14459,14461,14472,14544,14596,14613,14616,14620,14622,14623,14624,14627,14632,14634,14636,14644,14669,14672,14773,14779,14781,14790,14803,14809,14821,14848,14865,14869,14877,14895,14897,14899,14900,14908,14932,14969,14996,15006,15008,15016,15019,15029,15045,15060,15065,15068,15074,15079,15089,15090,15093,15111,15182,15187,15238,15241,15259,15337,15353,15380,15433,15458,15466,15474,15476,15478,15479,15482,15483,15487,15493,15494,15499,15500,15540,15546,15560,15576,15580,15584,15585,15595,15603,15606,15613,15668,15747,15805,15819,15829,15845,15846,15917,15962,15985,15988,16017,16083,16110,16175,16181,16182,16202,16235,16254,16274,16283,16359,16366,16378,16382,16384,16474,16618,16625,16628,16631,16633,16686,16719,16897,17116,17255,17267,17272,17275,17319,17380,17399,17406,17449,17472,17474,17500,17515,17516,17530,17566,17656,17704,17706,17735,17747,17765,17772,17829,17864,17888,17893,17896,17905,17919,17935,17937,17944,17954,18000,18003,18085,18086,18099,18100,18101,18111,18112,18113,18114,18115,18126,18139,18145,18148,18149,18151,18166,18186,18288,18304,18368,18372,18432,18441,18442,18443,18444,18448,18456,18460,18484,18485,18490,18511,18556,18557,18569,18573,18579,18580,18583,18627,18634,18642,18644,18649,18659,18679,18686,18689,18706,18728,18732,18750,18800,18823,18854,18861,18872,18913,18914,18923,18930,18944,19050,19055,19108,19111,19152,19178,19199,19211,19213,19214,19297,19318,19319,19325,19340,19355,19370,19414,19483,19489,19508,19533,19563,19564,19565,19566,19567,19578,19653,19699,19713,19728,19748,19784,19800,19802,19818,19821,20018,20053,20148,20189,20207,20212,20219,20227,20228,20237,20253,20260,20261,20333,20343,20347,20388,20432,20479,20483,20485,20598,20607,20616,20631,20649,20652,21120,21154,21175,21242,21244,21246,21248,21252,21266,21272,21319,21340,21358,21462,21466,21574,21966,22123,22126,22127,22128,22170,22321,22341,22359,22386,22400,22423,22430,22431,22490,22501,22504,22554,22581,22582,22633,22637,22650,22666,22681,22689,22762,22768,22771,22774,22777,22808,22816,22828,22840,22850,22861,22876,22888,22889,22932,22936,22939,22942,22945,22952,22954,23009,23046,23048,23077,23085,23144]]],["field",[1,1,[[25,1,1,0,1,[[830,1,1,0,1]]]],[21188]]],["ground",[94,92,[[0,6,6,0,6,[[17,1,1,0,1],[18,1,1,1,2],[32,1,1,2,3],[37,1,1,3,4],[43,2,2,4,6]]],[1,4,3,6,9,[[53,2,1,6,7],[58,1,1,7,8],[65,1,1,8,9]]],[4,3,3,9,12,[[167,1,1,9,10],[174,1,1,10,11],[180,1,1,11,12]]],[6,6,6,12,18,[[214,1,1,12,13],[216,2,2,13,15],[223,1,1,15,16],[230,2,2,16,18]]],[7,1,1,18,19,[[233,1,1,18,19]]],[8,8,8,19,27,[[238,1,1,19,20],[240,1,1,20,21],[249,2,2,21,23],[255,1,1,23,24],[260,1,1,24,25],[261,1,1,25,26],[263,1,1,26,27]]],[9,9,9,27,36,[[268,1,1,27,28],[274,1,1,28,29],[280,4,4,29,33],[284,1,1,33,34],[286,1,1,34,35],[290,1,1,35,36]]],[10,1,1,36,37,[[291,1,1,36,37]]],[11,4,4,37,41,[[314,2,2,37,39],[316,1,1,39,40],[325,1,1,40,41]]],[12,1,1,41,42,[[358,1,1,41,42]]],[13,2,2,42,44,[[373,1,1,42,43],[386,1,1,43,44]]],[15,1,1,44,45,[[420,1,1,44,45]]],[17,5,5,45,50,[[436,1,1,45,46],[437,1,1,46,47],[451,1,1,47,48],[453,1,1,48,49],[474,1,1,49,50]]],[18,6,6,50,56,[[551,1,1,50,51],[566,2,2,51,53],[584,1,1,53,54],[620,1,1,54,55],[624,1,1,55,56]]],[22,7,7,56,63,[[681,1,1,56,57],[692,1,1,57,58],[699,1,1,58,59],[703,1,1,59,60],[704,1,1,60,61],[725,1,1,61,62],[729,1,1,62,63]]],[23,2,2,63,65,[[758,1,1,63,64],[771,1,1,64,65]]],[24,5,4,65,69,[[798,5,4,65,69]]],[25,13,13,69,82,[[813,2,2,69,71],[814,1,1,71,72],[820,2,2,72,74],[825,1,1,74,75],[827,2,2,75,77],[829,1,1,77,78],[839,1,1,78,79],[842,2,2,79,81],[844,1,1,81,82]]],[26,7,7,82,89,[[857,5,5,82,87],[859,2,2,87,89]]],[29,1,1,89,90,[[881,1,1,89,90]]],[30,1,1,90,91,[[888,1,1,90,91]]],[37,1,1,91,92,[[918,1,1,91,92]]]],[426,458,963,1128,1335,1338,1604,1765,1961,5342,5476,5667,6620,6693,6694,6904,7075,7079,7159,7295,7323,7540,7553,7771,7884,7912,7956,8071,8211,8360,8370,8378,8389,8489,8564,8712,8740,9566,9570,9640,9889,10955,11327,11605,12499,12889,12904,13251,13286,13858,15055,15365,15370,15734,16296,16357,17733,17940,18044,18130,18135,18600,18696,19295,19601,20334,20341,20342,20353,20686,20692,20722,20893,20894,21063,21111,21116,21174,21445,21542,21546,21586,21966,21968,21971,21973,21979,22024,22030,22409,22513,22988]]],["land",[1357,1171,[[0,163,138,0,138,[[1,3,3,0,3],[3,1,1,3,4],[9,2,2,4,6],[10,3,3,6,9],[11,8,5,9,14],[12,7,7,14,21],[14,3,3,21,24],[15,1,1,24,25],[16,2,1,25,26],[18,1,1,26,27],[19,1,1,27,28],[20,3,3,28,31],[21,1,1,31,32],[22,6,6,32,38],[23,4,3,38,41],[25,5,5,41,46],[26,1,1,46,47],[27,2,2,47,49],[28,1,1,49,50],[30,4,3,50,53],[31,1,1,53,54],[32,1,1,54,55],[33,5,4,55,59],[34,4,3,59,62],[35,10,10,62,72],[36,2,1,72,73],[40,22,18,73,91],[41,10,9,91,100],[42,2,2,100,102],[44,9,8,102,110],[45,6,6,110,116],[46,18,9,116,125],[47,5,5,125,130],[48,2,2,130,132],[49,7,6,132,138]]],[1,88,71,138,209,[[50,2,2,138,140],[51,2,2,140,142],[52,5,2,142,144],[53,1,1,144,145],[54,2,2,145,147],[55,4,3,147,150],[56,3,3,150,153],[57,12,9,153,162],[58,9,7,162,169],[59,11,6,169,175],[60,4,4,175,179],[61,9,8,179,187],[62,5,4,187,191],[63,1,1,191,192],[65,3,2,192,194],[67,2,2,194,196],[71,1,1,196,197],[72,6,6,197,203],[81,1,1,203,204],[82,2,2,204,206],[83,3,3,206,209]]],[2,60,46,209,255,[[103,2,1,209,210],[105,1,1,210,211],[107,7,4,211,215],[108,6,5,215,220],[109,4,4,220,224],[111,1,1,224,225],[112,3,3,225,228],[114,16,13,228,241],[115,17,12,241,253],[116,3,2,253,255]]],[3,104,88,255,343,[[119,1,1,255,256],[124,1,1,256,257],[125,1,1,257,258],[126,2,2,258,260],[129,16,13,260,273],[130,19,16,273,289],[131,3,3,289,292],[132,1,1,292,293],[134,2,2,293,295],[136,3,3,295,298],[137,7,7,298,305],[138,3,3,305,308],[142,3,3,308,311],[143,1,1,311,312],[148,16,12,312,324],[149,9,7,324,331],[150,7,5,331,336],[151,8,6,336,342],[152,1,1,342,343]]],[4,144,124,343,467,[[153,10,8,343,351],[154,8,7,351,358],[155,8,8,358,366],[156,12,10,366,376],[157,3,3,376,379],[158,5,5,379,384],[159,1,1,384,385],[160,8,5,385,390],[161,6,5,390,395],[162,3,3,395,398],[163,14,12,398,410],[164,3,3,410,413],[167,5,4,413,417],[168,1,1,417,418],[169,1,1,418,419],[170,1,1,419,420],[171,6,6,420,426],[175,2,2,426,428],[176,3,3,428,431],[177,1,1,431,432],[178,4,3,432,435],[179,3,2,435,437],[180,5,4,437,441],[181,10,9,441,450],[182,2,2,450,452],[183,5,5,452,457],[184,5,3,457,460],[185,2,2,460,462],[186,7,5,462,467]]],[5,79,67,467,534,[[187,8,7,467,474],[188,6,5,474,479],[191,5,3,479,482],[193,1,1,482,483],[194,1,1,483,484],[195,2,1,484,485],[196,1,1,485,486],[197,6,4,486,490],[198,2,1,490,491],[199,6,6,491,497],[200,6,6,497,503],[201,1,1,503,504],[203,5,5,504,509],[204,8,7,509,516],[207,2,2,516,518],[208,11,9,518,527],[209,2,2,527,529],[210,6,5,529,534]]],[6,41,36,534,570,[[211,6,6,534,540],[212,3,3,540,543],[213,2,2,543,545],[215,1,1,545,546],[216,3,3,546,549],[219,1,1,549,550],[220,2,2,550,552],[221,11,8,552,560],[222,1,1,560,561],[228,8,6,561,567],[230,1,1,567,568],[231,2,2,568,570]]],[7,3,3,570,573,[[232,2,2,570,572],[233,1,1,572,573]]],[8,23,19,573,592,[[241,2,1,573,574],[244,4,2,574,576],[248,4,4,576,580],[249,2,2,580,582],[256,1,1,582,583],[257,1,1,583,584],[258,2,2,584,586],[262,4,3,586,589],[263,1,1,589,590],[264,1,1,590,591],[266,1,1,591,592]]],[9,13,12,592,604,[[269,1,1,592,593],[271,1,1,593,594],[273,1,1,594,595],[276,1,1,595,596],[281,1,1,596,597],[283,1,1,597,598],[285,1,1,598,599],[287,1,1,599,600],[290,5,4,600,604]]],[10,28,25,604,629,[[294,3,3,604,607],[298,8,5,607,612],[299,7,7,612,619],[300,1,1,619,620],[301,1,1,620,621],[304,1,1,621,622],[305,2,2,622,624],[307,1,1,624,625],[308,2,2,625,627],[310,1,1,627,628],[312,1,1,628,629]]],[11,49,39,629,668,[[315,1,1,629,630],[316,1,1,630,631],[318,1,1,631,632],[320,3,3,632,635],[322,1,1,635,636],[323,5,5,636,641],[325,1,1,641,642],[327,4,4,642,646],[328,1,1,646,647],[329,4,3,647,650],[330,7,3,650,653],[331,3,2,653,655],[333,2,1,655,656],[335,6,4,656,660],[336,2,2,660,662],[337,7,6,662,668]]],[12,20,19,668,687,[[338,1,1,668,669],[339,1,1,669,670],[341,1,1,670,671],[342,4,4,671,675],[343,1,1,675,676],[344,1,1,676,677],[347,1,1,677,678],[348,1,1,678,679],[350,1,1,679,680],[353,1,1,680,681],[356,2,2,681,683],[358,1,1,683,684],[359,3,2,684,686],[365,1,1,686,687]]],[13,43,39,687,726,[[368,1,1,687,688],[372,8,5,688,693],[373,3,3,693,696],[374,3,3,696,699],[375,4,4,699,703],[380,3,3,703,706],[381,1,1,706,707],[383,1,1,707,708],[385,2,2,708,710],[386,1,1,710,711],[388,1,1,711,712],[389,3,3,712,715],[392,1,1,715,716],[396,1,1,716,717],[398,3,3,717,720],[399,2,1,720,721],[400,2,2,721,723],[402,3,3,723,726]]],[14,7,6,726,732,[[406,1,1,726,727],[408,1,1,727,728],[411,3,2,728,730],[412,2,2,730,732]]],[15,16,12,732,744,[[416,1,1,732,733],[417,1,1,733,734],[421,12,8,734,742],[422,2,2,742,744]]],[16,2,2,744,746,[[433,1,1,744,745],[435,1,1,745,746]]],[17,7,7,746,753,[[436,2,2,746,748],[445,2,2,748,750],[463,1,1,750,751],[472,1,1,751,752],[477,1,1,752,753]]],[18,35,35,753,788,[[504,1,1,753,754],[512,1,1,754,755],[514,3,3,755,758],[521,1,1,758,759],[540,1,1,759,760],[551,1,1,760,761],[555,1,1,761,762],[557,1,1,762,763],[558,1,1,763,764],[562,3,3,764,767],[565,1,1,767,768],[578,2,2,768,770],[582,8,8,770,778],[583,3,3,778,781],[584,1,1,781,782],[593,1,1,782,783],[612,1,1,783,784],[613,1,1,784,785],[619,1,1,785,786],[620,2,2,786,788]]],[19,4,4,788,792,[[629,1,1,788,789],[655,1,1,789,790],[656,1,1,790,791],[658,1,1,791,792]]],[20,2,2,792,794,[[668,2,2,792,794]]],[21,1,1,794,795,[[672,1,1,794,795]]],[22,67,57,795,852,[[679,1,1,795,796],[680,3,2,796,798],[683,1,1,798,799],[684,1,1,799,800],[685,3,3,800,803],[686,1,1,803,804],[687,4,3,804,807],[688,1,1,807,808],[691,3,3,808,811],[692,3,3,811,814],[694,2,2,814,816],[696,3,3,816,819],[697,4,4,819,823],[699,1,1,823,824],[701,2,2,824,826],[702,3,3,826,829],[704,2,2,829,831],[705,2,1,831,832],[708,1,1,832,833],[710,1,1,833,834],[711,1,1,834,835],[712,3,3,835,838],[714,8,4,838,842],[715,3,2,842,844],[716,1,1,844,845],[719,1,1,845,846],[727,1,1,846,847],[735,1,1,847,848],[738,2,2,848,850],[739,1,1,850,851],[740,3,1,851,852]]],[23,167,145,852,997,[[745,4,3,852,855],[746,7,5,855,860],[747,6,6,860,866],[748,4,4,866,870],[749,3,2,870,872],[750,2,2,872,874],[751,2,2,874,876],[752,2,1,876,877],[753,2,2,877,879],[754,1,1,879,880],[755,1,1,880,881],[756,6,5,881,886],[757,1,1,886,887],[758,3,3,887,890],[759,2,2,890,892],[760,5,4,892,896],[761,2,2,896,898],[762,1,1,898,899],[766,3,3,899,902],[767,3,2,902,904],[768,4,3,904,907],[769,6,5,907,912],[770,2,2,912,914],[771,1,1,914,915],[774,1,1,915,916],[775,1,1,916,917],[776,7,6,917,923],[777,3,3,923,926],[778,1,1,926,927],[779,1,1,927,928],[780,1,1,928,929],[781,5,5,929,934],[783,2,2,934,936],[784,6,5,936,941],[785,2,2,941,943],[786,4,4,943,947],[787,6,6,947,953],[788,18,13,953,966],[789,1,1,966,967],[790,3,3,967,970],[791,2,1,970,971],[792,1,1,971,972],[794,10,10,972,982],[795,13,10,982,992],[796,6,5,992,997]]],[24,1,1,997,998,[[800,1,1,997,998]]],[25,117,108,998,1106,[[802,1,1,998,999],[807,1,1,999,1000],[808,4,4,1000,1004],[809,1,1,1004,1005],[810,1,1,1005,1006],[812,1,1,1006,1007],[813,4,3,1007,1010],[815,6,5,1010,1015],[816,1,1,1015,1016],[817,1,1,1016,1017],[818,3,3,1017,1020],[820,2,2,1020,1022],[821,7,7,1022,1029],[822,2,2,1029,1031],[823,3,3,1031,1034],[824,3,3,1034,1037],[827,1,1,1037,1038],[828,2,2,1038,1040],[830,7,6,1040,1046],[831,6,5,1046,1051],[832,1,1,1051,1052],[833,10,10,1052,1062],[834,9,7,1062,1069],[835,3,3,1069,1072],[837,5,5,1072,1077],[838,2,2,1077,1079],[839,7,6,1079,1085],[840,5,5,1085,1090],[841,1,1,1090,1091],[846,7,5,1091,1096],[847,2,2,1096,1098],[848,5,5,1098,1103],[849,3,3,1103,1106]]],[26,8,7,1106,1113,[[850,1,1,1106,1107],[858,1,1,1107,1108],[860,6,5,1108,1113]]],[27,11,10,1113,1123,[[862,2,2,1113,1115],[863,1,1,1115,1116],[865,3,2,1116,1118],[868,1,1,1118,1119],[870,1,1,1119,1120],[871,1,1,1120,1121],[872,1,1,1121,1122],[874,1,1,1122,1123]]],[28,9,9,1123,1132,[[876,3,3,1123,1126],[877,4,4,1126,1130],[878,2,2,1130,1132]]],[29,10,10,1132,1142,[[880,1,1,1132,1133],[881,2,2,1133,1135],[885,3,3,1135,1138],[886,3,3,1138,1141],[887,1,1,1141,1142]]],[32,6,4,1142,1146,[[897,5,3,1142,1145],[899,1,1,1145,1146]]],[33,1,1,1146,1147,[[902,1,1,1146,1147]]],[34,5,5,1147,1152,[[903,1,1,1147,1148],[904,2,2,1148,1150],[905,2,2,1150,1152]]],[35,4,3,1152,1155,[[906,2,1,1152,1153],[907,1,1,1153,1154],[908,1,1,1154,1155]]],[36,2,2,1155,1157,[[909,1,1,1155,1156],[910,1,1,1156,1157]]],[37,16,13,1157,1170,[[911,1,1,1157,1158],[913,1,1,1158,1159],[915,1,1,1159,1160],[917,3,2,1160,1162],[919,1,1,1162,1163],[920,1,1,1163,1164],[921,3,2,1164,1166],[922,1,1,1166,1167],[923,3,2,1167,1169],[924,1,1,1169,1170]]],[38,1,1,1170,1171,[[927,1,1,1170,1171]]]],[41,42,43,95,244,245,268,294,297,299,303,304,305,308,324,325,327,328,330,333,335,367,373,378,384,405,485,510,536,545,547,549,573,578,583,584,586,590,596,598,628,693,694,695,704,714,773,777,786,796,876,886,891,931,978,981,990,1001,1010,1017,1023,1033,1045,1046,1047,1056,1057,1060,1061,1070,1071,1083,1084,1214,1224,1225,1226,1228,1229,1231,1236,1238,1239,1240,1241,1243,1247,1248,1249,1250,1251,1257,1258,1261,1264,1265,1281,1282,1284,1286,1291,1301,1364,1366,1368,1375,1376,1378,1383,1384,1392,1398,1406,1414,1417,1420,1421,1424,1426,1431,1433,1434,1440,1447,1448,1454,1455,1456,1458,1472,1488,1503,1511,1513,1514,1517,1519,1530,1539,1542,1569,1576,1587,1596,1621,1637,1644,1659,1663,1683,1688,1704,1706,1715,1716,1717,1724,1726,1727,1732,1734,1735,1747,1751,1764,1765,1766,1767,1768,1789,1790,1791,1792,1798,1799,1809,1811,1812,1815,1817,1828,1829,1835,1841,1845,1849,1864,1872,1878,1882,1884,1892,1950,1982,2002,2026,2134,2153,2154,2173,2174,2175,2177,2451,2474,2476,2508,2511,2520,3145,3223,3254,3276,3278,3279,3290,3304,3310,3314,3315,3320,3322,3340,3342,3393,3412,3424,3441,3471,3473,3474,3475,3476,3478,3479,3487,3488,3492,3493,3507,3514,3525,3528,3529,3530,3544,3557,3558,3562,3565,3566,3567,3568,3594,3600,3705,3956,3979,3997,4018,4077,4091,4092,4093,4094,4095,4096,4100,4101,4102,4103,4104,4107,4110,4111,4114,4115,4116,4117,4122,4124,4131,4132,4138,4139,4142,4144,4145,4146,4155,4171,4172,4208,4270,4277,4323,4334,4335,4344,4362,4364,4366,4371,4374,4375,4380,4381,4388,4508,4542,4544,4566,4719,4722,4723,4725,4726,4727,4735,4740,4747,4748,4750,4751,4797,4800,4811,4812,4813,4814,4815,4818,4828,4829,4833,4845,4855,4859,4873,4877,4878,4879,4881,4897,4899,4900,4913,4914,4917,4927,4928,4950,4958,4962,4965,4967,4969,4975,4977,4983,4987,4988,4993,4995,5000,5003,5005,5009,5018,5025,5026,5029,5030,5042,5050,5051,5068,5084,5086,5087,5089,5096,5104,5109,5112,5138,5144,5145,5146,5147,5161,5162,5163,5180,5185,5193,5197,5205,5211,5216,5217,5218,5219,5220,5222,5225,5233,5237,5238,5239,5241,5250,5269,5323,5326,5330,5334,5362,5378,5393,5407,5408,5409,5414,5416,5420,5507,5520,5529,5539,5547,5566,5567,5575,5581,5587,5588,5619,5623,5635,5663,5680,5681,5687,5695,5701,5702,5703,5706,5707,5713,5724,5732,5735,5744,5749,5751,5768,5807,5810,5823,5838,5841,5843,5844,5845,5850,5853,5855,5857,5862,5864,5865,5866,5870,5878,5883,5887,5893,5940,5945,5946,5985,6003,6061,6106,6110,6123,6129,6130,6131,6155,6156,6158,6159,6161,6179,6188,6191,6192,6194,6196,6202,6221,6281,6283,6287,6290,6291,6294,6296,6297,6299,6301,6302,6303,6383,6424,6430,6435,6436,6437,6439,6441,6445,6458,6459,6465,6476,6479,6484,6489,6491,6494,6511,6524,6535,6536,6541,6542,6546,6547,6551,6579,6598,6654,6659,6663,6664,6791,6815,6819,6832,6841,6842,6844,6846,6847,6848,6850,6884,6995,7000,7002,7003,7010,7023,7055,7114,7123,7128,7134,7160,7336,7395,7396,7488,7492,7502,7504,7533,7537,7783,7792,7833,7837,7931,7938,7939,7951,7978,8018,8093,8138,8203,8242,8393,8475,8520,8594,8698,8700,8705,8717,8854,8863,8865,9021,9022,9031,9032,9033,9059,9062,9064,9069,9070,9072,9077,9085,9126,9242,9261,9269,9324,9346,9347,9415,9526,9603,9641,9697,9728,9729,9733,9826,9832,9843,9847,9848,9849,9891,9930,9944,9945,9954,9978,9988,10009,10010,10049,10056,10057,10068,10098,10143,10189,10195,10198,10200,10216,10217,10225,10234,10241,10243,10244,10246,10295,10328,10425,10437,10439,10451,10453,10509,10556,10668,10677,10762,10838,10909,10910,10946,10966,10982,11151,11228,11309,11310,11318,11319,11320,11337,11338,11345,11352,11354,11363,11369,11375,11376,11390,11476,11481,11482,11498,11525,11579,11581,11594,11656,11669,11676,11677,11753,11836,11879,11896,11906,11933,11940,11941,11994,11996,12014,12114,12172,12248,12249,12254,12263,12363,12396,12519,12521,12526,12533,12534,12535,12546,12547,12579,12580,12834,12867,12870,12879,13107,13108,13517,13782,13937,14298,14430,14453,14479,14484,14574,14840,15056,15125,15207,15222,15272,15280,15283,15320,15519,15521,15617,15622,15629,15633,15636,15638,15641,15642,15673,15675,15689,15733,15857,16187,16217,16291,16299,16303,16454,17198,17228,17307,17509,17510,17566,17673,17692,17693,17769,17781,17800,17804,17806,17815,17830,17831,17848,17873,17911,17915,17920,17948,17949,17953,17970,17973,17998,17999,18004,18022,18023,18024,18028,18049,18087,18090,18098,18106,18108,18131,18140,18164,18223,18261,18296,18309,18310,18312,18340,18347,18348,18350,18359,18390,18401,18469,18655,18778,18839,18842,18850,18858,18947,18960,18964,18967,18971,18972,18980,18996,19003,19004,19011,19018,19020,19021,19032,19034,19047,19054,19077,19088,19097,19101,19126,19153,19169,19187,19194,19219,19231,19253,19254,19260,19261,19264,19279,19301,19308,19311,19322,19329,19339,19342,19349,19354,19361,19363,19400,19466,19481,19482,19494,19499,19529,19530,19532,19543,19545,19546,19554,19572,19589,19592,19603,19670,19714,19746,19751,19753,19772,19774,19775,19786,19788,19790,19820,19834,19871,19875,19876,19881,19886,19893,19928,19933,19945,19947,19948,19950,19953,19959,19975,19985,19988,19989,19991,20001,20002,20004,20008,20009,20010,20011,20018,20019,20022,20023,20024,20025,20031,20032,20034,20036,20037,20038,20044,20057,20058,20061,20075,20104,20167,20169,20182,20184,20187,20188,20191,20200,20204,20211,20214,20216,20217,20239,20240,20241,20255,20258,20259,20264,20282,20285,20292,20301,20303,20441,20467,20577,20579,20584,20600,20604,20621,20631,20670,20693,20699,20700,20744,20746,20747,20748,20750,20762,20791,20829,20830,20838,20885,20888,20900,20901,20903,20910,20923,20931,20935,20974,20976,21000,21005,21006,21022,21026,21055,21120,21138,21150,21192,21193,21195,21197,21202,21203,21209,21215,21216,21217,21229,21242,21252,21254,21256,21263,21271,21272,21273,21274,21275,21280,21282,21283,21304,21305,21306,21308,21309,21338,21341,21342,21364,21377,21387,21393,21394,21419,21422,21427,21433,21434,21436,21437,21441,21460,21461,21462,21463,21464,21479,21631,21634,21638,21646,21652,21658,21664,21692,21693,21694,21697,21700,21714,21716,21731,21739,21994,22052,22055,22064,22077,22078,22096,22105,22108,22134,22136,22194,22211,22226,22245,22271,22293,22297,22305,22312,22314,22329,22331,22345,22362,22389,22404,22406,22466,22474,22476,22485,22489,22492,22500,22638,22639,22644,22677,22725,22737,22756,22765,22775,22780,22805,22810,22839,22851,22859,22899,22921,22947,22967,22976,23000,23026,23034,23044,23057,23061,23067,23078,23132]]],["lands",[32,30,[[0,4,4,0,4,[[9,2,2,0,2],[40,2,2,2,4]]],[2,2,2,4,6,[[115,2,2,4,6]]],[11,2,2,6,8,[[331,2,2,6,8]]],[12,1,1,8,9,[[351,1,1,8,9]]],[13,7,5,9,14,[[375,1,1,9,10],[379,1,1,10,11],[383,1,1,11,12],[398,4,2,12,14]]],[14,4,4,14,18,[[411,4,4,14,18]]],[15,2,2,18,20,[[421,1,1,18,19],[422,1,1,19,20]]],[18,4,4,20,24,[[543,1,1,20,21],[577,1,1,21,22],[582,1,1,22,23],[583,1,1,23,24]]],[22,2,2,24,26,[[714,1,1,24,25],[715,1,1,25,26]]],[23,2,2,26,28,[[760,1,1,26,27],[771,1,1,27,28]]],[25,2,2,28,30,[[821,2,2,28,30]]]],[239,265,1249,1252,3560,3563,10072,10078,10791,11392,11462,11533,11888,11892,12238,12239,12244,12248,12541,12577,14874,15509,15650,15678,18350,18363,19351,19602,20901,20910]]],["nations",[1,1,[[22,1,1,0,1,[[715,1,1,0,1]]]],[18370]]],["way",[1,1,[[0,1,1,0,1,[[47,1,1,0,1]]]],[1458]]],["world",[4,4,[[18,1,1,0,1,[[499,1,1,0,1]]],[22,2,2,1,3,[[701,1,1,1,2],[740,1,1,2,3]]],[23,1,1,3,4,[[769,1,1,3,4]]]],[14231,18094,18865,19560]]]]},{"k":"H777","v":[["Arza",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9292]]]]},{"k":"H778","v":[["earth",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19212]]]]},{"k":"H779","v":[["*",[63,52,[[0,9,8,0,8,[[2,2,2,0,2],[3,1,1,2,3],[4,1,1,3,4],[8,1,1,4,5],[11,1,1,5,6],[26,2,1,6,7],[48,1,1,7,8]]],[1,1,1,8,9,[[71,1,1,8,9]]],[3,13,9,9,18,[[121,6,5,9,14],[138,4,2,14,16],[139,1,1,16,17],[140,2,1,17,18]]],[4,18,16,18,34,[[179,12,12,18,30],[180,6,4,30,34]]],[5,2,2,34,36,[[192,1,1,34,35],[195,1,1,35,36]]],[6,4,2,36,38,[[215,3,1,36,37],[231,1,1,37,38]]],[8,3,3,38,41,[[249,2,2,38,40],[261,1,1,40,41]]],[11,1,1,41,42,[[321,1,1,41,42]]],[17,1,1,42,43,[[438,1,1,42,43]]],[18,1,1,43,44,[[596,1,1,43,44]]],[23,6,5,44,49,[[755,1,1,44,45],[761,1,1,45,46],[764,2,2,46,48],[792,2,1,48,49]]],[38,4,3,49,52,[[925,1,1,49,50],[926,2,1,50,51],[927,1,1,51,52]]]],[69,72,90,134,230,301,756,1480,2141,3810,3811,3814,3816,3819,4381,4387,4423,4455,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5627,5628,5629,5630,5975,6060,6646,7120,7532,7536,7924,9790,12912,15919,19229,19362,19436,19437,20090,23103,23105,23129]]],["+",[4,3,[[3,1,1,0,1,[[138,1,1,0,1]]],[6,2,1,1,2,[[215,2,1,1,2]]],[38,1,1,2,3,[[926,1,1,2,3]]]],[4387,6646,23105]]],["Curse",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6646]]],["Cursed",[27,27,[[0,2,2,0,2,[[8,1,1,0,1],[48,1,1,1,2]]],[4,16,16,2,18,[[179,12,12,2,14],[180,4,4,14,18]]],[5,1,1,18,19,[[192,1,1,18,19]]],[6,1,1,19,20,[[231,1,1,19,20]]],[8,2,2,20,22,[[249,2,2,20,22]]],[23,5,5,22,27,[[755,1,1,22,23],[761,1,1,23,24],[764,2,2,24,26],[792,1,1,26,27]]]],[230,1480,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5627,5628,5629,5630,5975,7120,7532,7536,19229,19362,19436,19437,20090]]],["curse",[11,10,[[0,1,1,0,1,[[11,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[3,8,7,2,9,[[121,6,5,2,7],[138,1,1,7,8],[139,1,1,8,9]]],[17,1,1,9,10,[[438,1,1,9,10]]]],[301,2141,3810,3811,3814,3816,3819,4381,4423,12912]]],["cursed",[17,17,[[0,5,5,0,5,[[2,2,2,0,2],[3,1,1,2,3],[4,1,1,3,4],[26,1,1,4,5]]],[3,2,2,5,7,[[138,1,1,5,6],[140,1,1,6,7]]],[4,2,2,7,9,[[180,2,2,7,9]]],[5,1,1,9,10,[[195,1,1,9,10]]],[8,1,1,10,11,[[261,1,1,10,11]]],[11,1,1,11,12,[[321,1,1,11,12]]],[18,1,1,12,13,[[596,1,1,12,13]]],[23,1,1,13,14,[[792,1,1,13,14]]],[38,3,3,14,17,[[925,1,1,14,15],[926,1,1,15,16],[927,1,1,16,17]]]],[69,72,90,134,756,4381,4455,5627,5630,6060,7924,9790,15919,20090,23103,23105,23129]]],["cursest",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4381]]],["curseth",[2,2,[[0,1,1,0,1,[[26,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]]],[756,4455]]]]},{"k":"H780","v":[["*",[4,4,[[0,1,1,0,1,[[7,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]]],[187,10098,18390,20239]]],["Ararat",[2,2,[[0,1,1,0,1,[[7,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[187,20239]]],["Armenia",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10098,18390]]]]},{"k":"H781","v":[["*",[11,10,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,6,6,1,7,[[172,1,1,1,2],[174,4,4,2,6],[180,1,1,6,7]]],[9,1,1,7,8,[[269,1,1,7,8]]],[27,3,2,8,10,[[863,3,2,8,10]]]],[2129,5434,5493,5495,5497,5498,5641,8095,22124,22125]]],["betroth",[4,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[27,3,2,1,3,[[863,3,2,1,3]]]],[5641,22124,22125]]],["betrothed",[6,6,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,5,5,1,6,[[172,1,1,1,2],[174,4,4,2,6]]]],[2129,5434,5493,5495,5497,5498]]],["espoused",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8095]]]]},{"k":"H782","v":[["request",[1,1,[[18,1,1,0,1,[[498,1,1,0,1]]]],[14193]]]]},{"k":"H783","v":[["*",[15,14,[[14,12,11,0,11,[[406,5,4,0,4],[408,1,1,4,5],[409,5,5,5,10],[410,1,1,10,11]]],[15,3,3,11,14,[[414,1,1,11,12],[417,1,1,12,13],[425,1,1,13,14]]]],[12117,12118,12121,12133,12165,12174,12180,12184,12185,12194,12202,12308,12396,12677]]],["Artaxerxes",[14,13,[[14,11,10,0,10,[[406,4,3,0,3],[408,1,1,3,4],[409,5,5,4,9],[410,1,1,9,10]]],[15,3,3,10,13,[[414,1,1,10,11],[417,1,1,11,12],[425,1,1,12,13]]]],[12117,12118,12121,12165,12174,12180,12184,12185,12194,12202,12308,12396,12677]]],["Artaxerxes'",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12133]]]]},{"k":"H784","v":[["*",[377,347,[[0,4,4,0,4,[[14,1,1,0,1],[18,1,1,1,2],[21,2,2,2,4]]],[1,19,18,4,22,[[52,2,1,4,5],[58,2,2,5,7],[61,3,3,7,10],[62,2,2,10,12],[63,1,1,12,13],[68,1,1,13,14],[71,1,1,14,15],[73,1,1,15,16],[78,2,2,16,18],[81,2,2,18,20],[84,1,1,20,21],[89,1,1,21,22]]],[2,32,30,22,52,[[90,5,4,22,26],[91,1,1,26,27],[92,1,1,27,28],[93,1,1,28,29],[95,5,5,29,34],[96,2,2,34,36],[97,2,2,36,38],[98,2,2,38,40],[99,3,2,40,42],[102,4,4,42,46],[105,3,3,46,49],[108,1,1,49,50],[109,1,1,50,51],[110,1,1,51,52]]],[3,21,19,52,71,[[119,1,1,52,53],[122,1,1,53,54],[125,2,2,54,56],[127,3,3,56,59],[130,1,1,59,60],[132,5,5,60,65],[134,1,1,65,66],[137,1,1,66,67],[142,2,2,67,69],[147,4,2,69,71]]],[4,28,27,71,98,[[153,1,1,71,72],[156,7,6,72,78],[157,7,7,78,85],[159,2,2,85,87],[161,4,4,87,91],[162,1,1,91,92],[164,2,2,92,94],[165,1,1,94,95],[170,2,2,95,97],[184,1,1,97,98]]],[5,8,8,98,106,[[192,1,1,98,99],[193,2,2,99,101],[194,2,2,101,103],[197,3,3,103,106]]],[6,15,14,106,120,[[211,1,1,106,107],[216,1,1,107,108],[219,5,4,108,112],[222,1,1,112,113],[224,1,1,113,114],[225,3,3,114,117],[226,1,1,117,118],[228,1,1,118,119],[230,1,1,119,120]]],[8,3,3,120,123,[[265,3,3,120,123]]],[9,6,5,123,128,[[280,3,2,123,125],[288,2,2,125,127],[289,1,1,127,128]]],[10,10,7,128,135,[[299,1,1,128,129],[306,1,1,129,130],[308,5,4,130,134],[309,3,1,134,135]]],[11,17,14,135,149,[[313,5,3,135,138],[314,2,1,138,139],[318,1,1,139,140],[320,1,1,140,141],[328,1,1,141,142],[329,2,2,142,144],[331,1,1,144,145],[333,1,1,145,146],[335,2,2,146,148],[337,1,1,148,149]]],[12,2,2,149,151,[[351,1,1,149,150],[358,1,1,150,151]]],[13,6,6,151,157,[[373,2,2,151,153],[394,1,1,153,154],[399,1,1,154,155],[401,1,1,155,156],[402,1,1,156,157]]],[15,6,6,157,163,[[413,1,1,157,158],[414,3,3,158,161],[421,2,2,161,163]]],[17,8,8,163,171,[[436,1,1,163,164],[450,1,1,164,165],[453,1,1,165,166],[455,1,1,166,167],[457,1,1,167,168],[463,1,1,168,169],[466,1,1,169,170],[476,1,1,170,171]]],[18,28,27,171,198,[[488,1,1,171,172],[495,3,3,172,175],[498,2,1,175,176],[506,1,1,176,177],[516,1,1,177,178],[523,1,1,178,179],[527,1,1,179,180],[543,1,1,180,181],[545,1,1,181,182],[551,1,1,182,183],[555,3,3,183,186],[556,1,1,186,187],[557,1,1,187,188],[560,1,1,188,189],[566,1,1,189,190],[574,1,1,190,191],[581,1,1,191,192],[582,2,2,192,194],[583,1,1,194,195],[595,1,1,195,196],[617,1,1,196,197],[625,1,1,197,198]]],[19,5,5,198,203,[[633,1,1,198,199],[643,1,1,199,200],[653,2,2,200,202],[657,1,1,202,203]]],[21,1,1,203,204,[[678,1,1,203,204]]],[22,33,30,204,234,[[679,1,1,204,205],[682,1,1,205,206],[683,1,1,206,207],[687,3,3,207,210],[688,2,2,210,212],[704,1,1,212,213],[707,1,1,213,214],[708,4,4,214,218],[711,3,3,218,221],[715,1,1,221,222],[721,1,1,222,223],[722,2,2,223,225],[725,1,1,225,226],[728,2,1,226,227],[732,1,1,227,228],[742,3,2,228,230],[743,1,1,230,231],[744,4,3,231,234]]],[23,39,37,234,271,[[748,1,1,234,235],[749,1,1,235,236],[750,1,1,236,237],[751,2,2,237,239],[755,1,1,239,240],[759,1,1,240,241],[761,2,2,241,243],[763,1,1,243,244],[764,1,1,244,245],[765,3,3,245,248],[766,1,1,248,249],[767,1,1,249,250],[773,1,1,250,251],[776,1,1,251,252],[778,2,2,252,254],[780,3,2,254,256],[781,2,2,256,258],[782,3,3,258,261],[783,1,1,261,262],[787,2,2,262,264],[792,1,1,264,265],[793,2,2,265,267],[794,1,1,267,268],[795,3,2,268,270],[796,1,1,270,271]]],[24,4,4,271,275,[[797,1,1,271,272],[798,2,2,272,274],[800,1,1,274,275]]],[25,47,38,275,313,[[802,7,3,275,278],[806,3,1,278,279],[809,2,1,279,280],[811,3,3,280,283],[816,6,4,283,287],[817,1,1,287,288],[820,2,2,288,290],[821,2,2,290,292],[822,2,2,292,294],[823,3,3,294,297],[824,2,2,297,299],[825,2,2,299,301],[829,3,3,301,304],[831,3,3,304,307],[837,1,1,307,308],[839,2,2,308,310],[840,3,3,310,313]]],[26,1,1,313,314,[[859,1,1,313,314]]],[27,2,2,314,316,[[868,1,1,314,315],[869,1,1,315,316]]],[28,5,5,316,321,[[876,2,2,316,318],[877,3,3,318,321]]],[29,9,9,321,330,[[879,5,5,321,326],[880,2,2,326,328],[883,1,1,328,329],[885,1,1,329,330]]],[30,1,1,330,331,[[888,1,1,330,331]]],[32,2,2,331,333,[[893,2,2,331,333]]],[33,4,4,333,337,[[900,1,1,333,334],[901,1,1,334,335],[902,2,2,335,337]]],[34,1,1,337,338,[[904,1,1,337,338]]],[35,2,2,338,340,[[906,1,1,338,339],[908,1,1,339,340]]],[37,7,6,340,346,[[912,1,1,340,341],[913,1,1,341,342],[919,1,1,342,343],[921,1,1,343,344],[922,2,1,344,345],[923,1,1,345,346]]],[38,1,1,346,347,[[927,1,1,346,347]]]],[377,481,553,554,1581,1765,1766,1824,1825,1826,1888,1889,1913,2044,2119,2194,2350,2370,2458,2462,2534,2745,2752,2753,2757,2762,2776,2783,2807,2858,2859,2861,2862,2879,2896,2898,2934,2949,2964,2977,2978,2979,3076,3104,3107,3109,3213,3214,3228,3287,3332,3354,3696,3841,3980,3981,4025,4026,4027,4122,4201,4212,4229,4231,4240,4266,4368,4499,4550,4674,4687,4925,5015,5016,5019,5028,5037,5040,5057,5058,5075,5076,5077,5078,5079,5116,5136,5160,5167,5172,5178,5190,5243,5271,5288,5394,5400,5780,5973,5991,6001,6010,6021,6113,6116,6118,6517,6675,6769,6774,6803,6806,6870,6924,6934,6935,6943,6958,7020,7102,7979,7981,7992,8386,8387,8611,8615,8660,9067,9301,9364,9365,9366,9379,9399,9543,9545,9547,9562,9691,9739,9966,10000,10014,10079,10125,10175,10176,10231,10786,10960,11325,11327,11767,11914,11979,12012,12299,12310,12320,12324,12523,12530,12885,13237,13281,13352,13409,13509,13600,13907,14065,14126,14130,14131,14200,14315,14515,14623,14671,14885,14902,15055,15127,15134,15176,15190,15214,15255,15372,15481,15575,15638,15645,15669,15881,16273,16379,16567,16867,17161,17162,17267,17646,17661,17738,17763,17834,17847,17848,17866,17867,18141,18199,18231,18244,18247,18250,18290,18291,18293,18371,18507,18549,18552,18613,18673,18739,18887,18896,18902,18937,18938,18946,19031,19072,19118,19137,19150,19242,19329,19361,19384,19412,19431,19450,19452,19454,19461,19513,19657,19760,19803,19823,19865,19874,19882,19884,19912,19913,19918,19931,20009,20010,20125,20129,20154,20198,20244,20270,20289,20323,20335,20336,20431,20468,20477,20491,20550,20606,20635,20639,20640,20758,20759,20760,20761,20803,20893,20895,20926,20942,20975,20976,20996,20997,21007,21032,21054,21066,21068,21171,21173,21175,21212,21218,21220,21364,21444,21447,21454,21457,21458,22021,22184,22208,22310,22311,22314,22316,22341,22368,22371,22374,22376,22378,22381,22384,22429,22468,22528,22583,22586,22690,22702,22725,22727,22761,22805,22828,22904,22914,23003,23029,23051,23068,23122]]],["+",[6,6,[[2,2,2,0,2,[[98,1,1,0,1],[105,1,1,1,2]]],[4,1,1,2,3,[[165,1,1,2,3]]],[11,1,1,3,4,[[313,1,1,3,4]]],[23,1,1,4,5,[[750,1,1,4,5]]],[37,1,1,5,6,[[913,1,1,5,6]]]],[2977,3228,5288,9547,19118,22914]]],["Fire",[1,1,[[18,1,1,0,1,[[625,1,1,0,1]]]],[16379]]],["burning",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[377]]],["fiery",[1,1,[[18,1,1,0,1,[[498,1,1,0,1]]]],[14200]]],["fire",[366,337,[[0,3,3,0,3,[[18,1,1,0,1],[21,2,2,1,3]]],[1,19,18,3,21,[[52,2,1,3,4],[58,2,2,4,6],[61,3,3,6,9],[62,2,2,9,11],[63,1,1,11,12],[68,1,1,12,13],[71,1,1,13,14],[73,1,1,14,15],[78,2,2,15,17],[81,2,2,17,19],[84,1,1,19,20],[89,1,1,20,21]]],[2,29,27,21,48,[[90,5,4,21,25],[91,1,1,25,26],[92,1,1,26,27],[93,1,1,27,28],[95,5,5,28,33],[96,2,2,33,35],[97,2,2,35,37],[98,1,1,37,38],[99,3,2,38,40],[102,3,3,40,43],[105,2,2,43,45],[108,1,1,45,46],[109,1,1,46,47],[110,1,1,47,48]]],[3,21,19,48,67,[[119,1,1,48,49],[122,1,1,49,50],[125,2,2,50,52],[127,3,3,52,55],[130,1,1,55,56],[132,5,5,56,61],[134,1,1,61,62],[137,1,1,62,63],[142,2,2,63,65],[147,4,2,65,67]]],[4,27,26,67,93,[[153,1,1,67,68],[156,7,6,68,74],[157,7,7,74,81],[159,2,2,81,83],[161,4,4,83,87],[162,1,1,87,88],[164,2,2,88,90],[170,2,2,90,92],[184,1,1,92,93]]],[5,8,8,93,101,[[192,1,1,93,94],[193,2,2,94,96],[194,2,2,96,98],[197,3,3,98,101]]],[6,15,14,101,115,[[211,1,1,101,102],[216,1,1,102,103],[219,5,4,103,107],[222,1,1,107,108],[224,1,1,108,109],[225,3,3,109,112],[226,1,1,112,113],[228,1,1,113,114],[230,1,1,114,115]]],[8,3,3,115,118,[[265,3,3,115,118]]],[9,6,5,118,123,[[280,3,2,118,120],[288,2,2,120,122],[289,1,1,122,123]]],[10,10,7,123,130,[[299,1,1,123,124],[306,1,1,124,125],[308,5,4,125,129],[309,3,1,129,130]]],[11,16,13,130,143,[[313,4,2,130,132],[314,2,1,132,133],[318,1,1,133,134],[320,1,1,134,135],[328,1,1,135,136],[329,2,2,136,138],[331,1,1,138,139],[333,1,1,139,140],[335,2,2,140,142],[337,1,1,142,143]]],[12,2,2,143,145,[[351,1,1,143,144],[358,1,1,144,145]]],[13,6,6,145,151,[[373,2,2,145,147],[394,1,1,147,148],[399,1,1,148,149],[401,1,1,149,150],[402,1,1,150,151]]],[15,6,6,151,157,[[413,1,1,151,152],[414,3,3,152,155],[421,2,2,155,157]]],[17,8,8,157,165,[[436,1,1,157,158],[450,1,1,158,159],[453,1,1,159,160],[455,1,1,160,161],[457,1,1,161,162],[463,1,1,162,163],[466,1,1,163,164],[476,1,1,164,165]]],[18,26,26,165,191,[[488,1,1,165,166],[495,3,3,166,169],[498,1,1,169,170],[506,1,1,170,171],[516,1,1,171,172],[523,1,1,172,173],[527,1,1,173,174],[543,1,1,174,175],[545,1,1,175,176],[551,1,1,176,177],[555,3,3,177,180],[556,1,1,180,181],[557,1,1,181,182],[560,1,1,182,183],[566,1,1,183,184],[574,1,1,184,185],[581,1,1,185,186],[582,2,2,186,188],[583,1,1,188,189],[595,1,1,189,190],[617,1,1,190,191]]],[19,5,5,191,196,[[633,1,1,191,192],[643,1,1,192,193],[653,2,2,193,195],[657,1,1,195,196]]],[21,1,1,196,197,[[678,1,1,196,197]]],[22,33,30,197,227,[[679,1,1,197,198],[682,1,1,198,199],[683,1,1,199,200],[687,3,3,200,203],[688,2,2,203,205],[704,1,1,205,206],[707,1,1,206,207],[708,4,4,207,211],[711,3,3,211,214],[715,1,1,214,215],[721,1,1,215,216],[722,2,2,216,218],[725,1,1,218,219],[728,2,1,219,220],[732,1,1,220,221],[742,3,2,221,223],[743,1,1,223,224],[744,4,3,224,227]]],[23,38,36,227,263,[[748,1,1,227,228],[749,1,1,228,229],[751,2,2,229,231],[755,1,1,231,232],[759,1,1,232,233],[761,2,2,233,235],[763,1,1,235,236],[764,1,1,236,237],[765,3,3,237,240],[766,1,1,240,241],[767,1,1,241,242],[773,1,1,242,243],[776,1,1,243,244],[778,2,2,244,246],[780,3,2,246,248],[781,2,2,248,250],[782,3,3,250,253],[783,1,1,253,254],[787,2,2,254,256],[792,1,1,256,257],[793,2,2,257,259],[794,1,1,259,260],[795,3,2,260,262],[796,1,1,262,263]]],[24,4,4,263,267,[[797,1,1,263,264],[798,2,2,264,266],[800,1,1,266,267]]],[25,47,38,267,305,[[802,7,3,267,270],[806,3,1,270,271],[809,2,1,271,272],[811,3,3,272,275],[816,6,4,275,279],[817,1,1,279,280],[820,2,2,280,282],[821,2,2,282,284],[822,2,2,284,286],[823,3,3,286,289],[824,2,2,289,291],[825,2,2,291,293],[829,3,3,293,296],[831,3,3,296,299],[837,1,1,299,300],[839,2,2,300,302],[840,3,3,302,305]]],[26,1,1,305,306,[[859,1,1,305,306]]],[27,2,2,306,308,[[868,1,1,306,307],[869,1,1,307,308]]],[28,5,5,308,313,[[876,2,2,308,310],[877,3,3,310,313]]],[29,9,9,313,322,[[879,5,5,313,318],[880,2,2,318,320],[883,1,1,320,321],[885,1,1,321,322]]],[30,1,1,322,323,[[888,1,1,322,323]]],[32,2,2,323,325,[[893,2,2,323,325]]],[33,3,3,325,328,[[900,1,1,325,326],[902,2,2,326,328]]],[34,1,1,328,329,[[904,1,1,328,329]]],[35,2,2,329,331,[[906,1,1,329,330],[908,1,1,330,331]]],[37,6,5,331,336,[[912,1,1,331,332],[919,1,1,332,333],[921,1,1,333,334],[922,2,1,334,335],[923,1,1,335,336]]],[38,1,1,336,337,[[927,1,1,336,337]]]],[481,553,554,1581,1765,1766,1824,1825,1826,1888,1889,1913,2044,2119,2194,2350,2370,2458,2462,2534,2745,2752,2753,2757,2762,2776,2783,2807,2858,2859,2861,2862,2879,2896,2898,2934,2949,2964,2978,2979,3104,3107,3109,3213,3214,3287,3332,3354,3696,3841,3980,3981,4025,4026,4027,4122,4201,4212,4229,4231,4240,4266,4368,4499,4550,4674,4687,4925,5015,5016,5019,5028,5037,5040,5057,5058,5075,5076,5077,5078,5079,5116,5136,5160,5167,5172,5178,5190,5243,5271,5394,5400,5780,5973,5991,6001,6010,6021,6113,6116,6118,6517,6675,6769,6774,6803,6806,6870,6924,6934,6935,6943,6958,7020,7102,7979,7981,7992,8386,8387,8611,8615,8660,9067,9301,9364,9365,9366,9379,9399,9543,9545,9562,9691,9739,9966,10000,10014,10079,10125,10175,10176,10231,10786,10960,11325,11327,11767,11914,11979,12012,12299,12310,12320,12324,12523,12530,12885,13237,13281,13352,13409,13509,13600,13907,14065,14126,14130,14131,14200,14315,14515,14623,14671,14885,14902,15055,15127,15134,15176,15190,15214,15255,15372,15481,15575,15638,15645,15669,15881,16273,16567,16867,17161,17162,17267,17646,17661,17738,17763,17834,17847,17848,17866,17867,18141,18199,18231,18244,18247,18250,18290,18291,18293,18371,18507,18549,18552,18613,18673,18739,18887,18896,18902,18937,18938,18946,19031,19072,19137,19150,19242,19329,19361,19384,19412,19431,19450,19452,19454,19461,19513,19657,19760,19803,19823,19865,19874,19882,19884,19912,19913,19918,19931,20009,20010,20125,20129,20154,20198,20244,20270,20289,20323,20335,20336,20431,20468,20477,20491,20550,20606,20635,20639,20640,20758,20759,20760,20761,20803,20893,20895,20926,20942,20975,20976,20996,20997,21007,21032,21054,21066,21068,21171,21173,21175,21212,21218,21220,21364,21444,21447,21454,21457,21458,22021,22184,22208,22310,22311,22314,22316,22341,22368,22371,22374,22376,22378,22381,22384,22429,22468,22528,22583,22586,22690,22725,22727,22761,22805,22828,22904,23003,23029,23051,23068,23122]]],["flaming",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22702]]],["hot",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3076]]]]},{"k":"H785","v":[["flame",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21944]]]]},{"k":"H786","v":[["*",[2,2,[[9,1,1,0,1,[[280,1,1,0,1]]],[32,1,1,1,2,[[898,1,1,1,2]]]],[8375,22658]]],["+",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8375]]],["there",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22658]]]]},{"k":"H787","v":[["*",[3,3,[[14,3,3,0,3,[[406,1,1,0,1],[407,1,1,1,2],[408,1,1,2,3]]]],[12122,12150,12154]]],["foundation",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12150]]],["foundations",[2,2,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]]],[12122,12154]]]]},{"k":"H788","v":[["Ashbel",[3,3,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[12,1,1,2,3,[[345,1,1,2,3]]]],[1407,4527,10576]]]]},{"k":"H789","v":[["Ashbelites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4527]]]]},{"k":"H790","v":[["Eshban",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1066,10293]]]]},{"k":"H791","v":[["Ashbea",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10406]]]]},{"k":"H792","v":[["Eshbaal",[2,2,[[12,2,2,0,2,[[345,1,1,0,1],[346,1,1,1,2]]]],[10608,10654]]]]},{"k":"H793","v":[["stream",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4355]]]]},{"k":"H794","v":[["springs",[3,3,[[4,1,1,0,1,[[156,1,1,0,1]]],[5,2,2,1,3,[[196,1,1,1,2],[198,1,1,2,3]]]],[5053,6104,6138]]]]},{"k":"H795","v":[["*",[19,16,[[5,3,3,0,3,[[197,1,1,0,1],[201,2,2,1,3]]],[8,7,6,3,9,[[240,6,5,3,8],[241,1,1,8,9]]],[13,2,1,9,10,[[392,2,1,9,10]]],[22,2,1,10,11,[[698,2,1,10,11]]],[23,1,1,11,12,[[769,1,1,11,12]]],[29,2,2,12,14,[[879,1,1,12,13],[881,1,1,13,14]]],[35,1,1,14,15,[[907,1,1,14,15]]],[37,1,1,15,16,[[919,1,1,15,16]]]],[6129,6248,6249,7320,7322,7324,7325,7326,7348,11738,18030,19554,22372,22404,22809,23005]]],["+",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22372]]],["Ashdod",[18,15,[[5,3,3,0,3,[[197,1,1,0,1],[201,2,2,1,3]]],[8,7,6,3,9,[[240,6,5,3,8],[241,1,1,8,9]]],[13,2,1,9,10,[[392,2,1,9,10]]],[22,2,1,10,11,[[698,2,1,10,11]]],[23,1,1,11,12,[[769,1,1,11,12]]],[29,1,1,12,13,[[881,1,1,12,13]]],[35,1,1,13,14,[[907,1,1,13,14]]],[37,1,1,14,15,[[919,1,1,14,15]]]],[6129,6248,6249,7320,7322,7324,7325,7326,7348,11738,18030,19554,22404,22809,23005]]]]},{"k":"H796","v":[["*",[3,3,[[5,1,1,0,1,[[199,1,1,0,1]]],[15,2,2,1,3,[[416,1,1,1,2],[425,1,1,2,3]]]],[6157,12366,12694]]],["Ashdod",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12694]]],["Ashdodites",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12366]]],["Ashdothites",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6157]]]]},{"k":"H797","v":[["Ashdod",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12695]]]]},{"k":"H798","v":[["*",[3,3,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,2,2,1,3,[[198,1,1,1,2],[199,1,1,2,3]]]],[4992,6133,6174]]],["+",[1,1,[[4,1,1,0,1,[[155,1,1,0,1]]]],[4992]]],["Ashdothpisgah",[2,2,[[5,2,2,0,2,[[198,1,1,0,1],[199,1,1,1,2]]]],[6133,6174]]]]},{"k":"H799","v":[["law",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5812]]]]},{"k":"H800","v":[]},{"k":"H801","v":[["*",[65,64,[[1,4,4,0,4,[[78,3,3,0,3],[79,1,1,3,4]]],[2,42,41,4,45,[[90,3,3,4,7],[91,6,6,7,13],[92,6,6,13,19],[93,1,1,19,20],[94,1,1,20,21],[95,2,2,21,23],[96,4,4,23,27],[97,2,2,27,29],[99,3,3,29,32],[110,2,2,32,34],[111,2,2,34,36],[112,8,7,36,43],[113,2,2,43,45]]],[3,16,16,45,61,[[131,5,5,45,50],[134,1,1,50,51],[144,7,7,51,58],[145,3,3,58,61]]],[4,1,1,61,62,[[170,1,1,61,62]]],[5,1,1,62,63,[[199,1,1,62,63]]],[8,1,1,63,64,[[237,1,1,63,64]]]],[2354,2361,2377,2402,2754,2758,2762,2764,2765,2771,2772,2773,2778,2781,2783,2787,2789,2792,2794,2830,2842,2866,2867,2884,2904,2909,2914,2938,2945,2989,2990,2992,3351,3366,3391,3396,3410,3415,3420,3427,3429,3438,3439,3453,3455,4156,4163,4166,4167,4178,4274,4579,4580,4583,4585,4590,4596,4601,4614,4621,4644,5385,6168,7268]]],["+",[14,14,[[2,12,12,0,12,[[91,3,3,0,3],[95,2,2,3,5],[96,2,2,5,7],[99,2,2,7,9],[110,2,2,9,11],[113,1,1,11,12]]],[4,1,1,12,13,[[170,1,1,12,13]]],[5,1,1,13,14,[[199,1,1,13,14]]]],[2765,2772,2773,2866,2867,2909,2914,2989,2990,3351,3366,3455,5385,6168]]],["fire",[51,50,[[1,4,4,0,4,[[78,3,3,0,3],[79,1,1,3,4]]],[2,30,29,4,33,[[90,3,3,4,7],[91,3,3,7,10],[92,6,6,10,16],[93,1,1,16,17],[94,1,1,17,18],[96,2,2,18,20],[97,2,2,20,22],[99,1,1,22,23],[111,2,2,23,25],[112,8,7,25,32],[113,1,1,32,33]]],[3,16,16,33,49,[[131,5,5,33,38],[134,1,1,38,39],[144,7,7,39,46],[145,3,3,46,49]]],[8,1,1,49,50,[[237,1,1,49,50]]]],[2354,2361,2377,2402,2754,2758,2762,2764,2771,2778,2781,2783,2787,2789,2792,2794,2830,2842,2884,2904,2938,2945,2992,3391,3396,3410,3415,3420,3427,3429,3438,3439,3453,4156,4163,4166,4167,4178,4274,4579,4580,4583,4585,4590,4596,4601,4614,4621,4644,7268]]]]},{"k":"H802","v":[["*",[780,685,[[0,152,132,0,132,[[1,4,4,0,4],[2,13,12,4,16],[3,6,5,16,21],[5,3,2,21,23],[6,6,3,23,26],[7,4,2,26,28],[10,4,2,28,30],[11,11,9,30,39],[12,1,1,39,40],[13,1,1,40,41],[15,3,2,41,43],[16,2,2,43,45],[17,3,3,45,48],[18,3,3,48,51],[19,8,8,51,59],[20,1,1,59,60],[22,1,1,60,61],[23,14,14,61,75],[24,5,4,75,79],[25,7,6,79,85],[26,1,1,85,86],[27,6,4,86,90],[28,2,2,90,92],[29,3,3,92,95],[30,3,3,95,98],[31,1,1,98,99],[32,1,1,99,100],[33,5,5,100,105],[35,11,9,105,114],[36,1,1,114,115],[37,6,6,115,121],[38,4,4,121,125],[40,1,1,125,126],[43,1,1,126,127],[44,1,1,127,128],[45,3,3,128,131],[48,2,1,131,132]]],[1,38,34,132,166,[[50,1,1,132,133],[51,3,3,133,136],[52,1,1,136,137],[53,1,1,137,138],[55,3,3,138,141],[60,1,1,141,142],[64,1,1,142,143],[67,3,3,143,146],[68,1,1,146,147],[69,1,1,147,148],[70,9,6,148,154],[71,2,2,154,156],[75,5,4,156,160],[81,1,1,160,161],[84,4,4,161,165],[85,1,1,165,166]]],[2,35,32,166,198,[[101,1,1,166,167],[102,2,2,167,169],[104,3,3,169,172],[107,11,11,172,183],[108,1,1,183,184],[109,10,8,184,192],[110,4,3,192,195],[113,2,2,195,197],[115,1,1,197,198]]],[3,41,35,198,233,[[121,20,16,198,214],[122,1,1,214,215],[128,2,1,215,216],[130,1,1,216,217],[132,1,1,217,218],[141,2,2,218,220],[142,1,1,220,221],[146,2,2,221,223],[147,4,4,223,227],[148,1,1,227,228],[152,6,5,228,233]]],[4,41,34,233,267,[[154,1,1,233,234],[155,2,2,234,236],[157,1,1,236,237],[165,1,1,237,238],[169,4,3,238,241],[172,2,2,241,243],[173,4,3,243,246],[174,12,9,246,255],[176,5,4,255,259],[177,3,2,259,261],[179,1,1,261,262],[180,2,2,262,264],[181,2,2,264,266],[183,1,1,266,267]]],[5,10,9,267,276,[[187,1,1,267,268],[188,2,2,268,270],[192,3,2,270,272],[194,2,2,272,274],[201,2,2,274,276]]],[6,69,55,276,331,[[211,2,2,276,278],[213,1,1,278,279],[214,5,4,279,283],[215,3,1,283,284],[218,1,1,284,285],[219,4,4,285,289],[221,4,2,289,291],[223,14,13,291,304],[224,10,8,304,312],[225,3,2,312,314],[226,4,3,314,317],[229,3,3,317,320],[230,1,1,320,321],[231,14,10,321,331]]],[7,15,14,331,345,[[232,6,6,331,337],[234,3,3,337,340],[235,6,5,340,345]]],[8,54,47,345,392,[[236,7,7,345,352],[237,3,2,352,354],[239,1,1,354,355],[249,1,1,355,356],[250,3,2,356,358],[253,5,5,358,363],[254,1,1,363,364],[256,2,2,364,366],[257,1,1,366,367],[260,9,8,367,375],[262,4,3,375,378],[263,11,9,378,387],[265,6,5,387,392]]],[9,49,40,392,432,[[267,1,1,392,393],[268,2,1,393,394],[269,4,4,394,398],[271,1,1,398,399],[272,1,1,399,400],[277,9,7,400,407],[278,9,6,407,413],[280,12,10,413,423],[281,1,1,423,424],[283,3,2,424,426],[285,1,1,426,427],[286,5,5,427,432]]],[10,37,33,432,465,[[292,2,2,432,434],[293,7,6,434,440],[294,2,2,440,442],[299,1,1,442,443],[301,8,6,443,449],[304,6,5,449,454],[306,1,1,454,455],[307,4,4,455,459],[310,3,3,459,462],[311,3,3,462,465]]],[11,19,17,465,482,[[316,4,3,465,468],[317,1,1,468,469],[318,3,3,469,472],[320,7,6,472,478],[326,1,1,478,479],[334,1,1,479,480],[335,1,1,480,481],[336,1,1,481,482]]],[12,20,20,482,502,[[338,1,1,482,483],[339,5,5,483,488],[340,1,1,488,489],[341,3,3,489,492],[344,4,4,492,496],[345,3,3,496,499],[346,1,1,499,500],[351,1,1,500,501],[353,1,1,501,502]]],[13,19,18,502,520,[[368,1,1,502,503],[374,1,1,503,504],[377,4,3,504,507],[379,1,1,507,508],[381,1,1,508,509],[386,1,1,509,510],[387,3,3,510,513],[388,1,1,513,514],[390,1,1,514,515],[391,1,1,515,516],[394,1,1,516,517],[395,1,1,517,518],[397,1,1,518,519],[400,1,1,519,520]]],[14,12,11,520,531,[[404,1,1,520,521],[412,11,10,521,531]]],[15,10,10,531,541,[[416,1,1,531,532],[417,1,1,532,533],[419,1,1,533,534],[420,2,2,534,536],[422,1,1,536,537],[424,1,1,537,538],[425,3,3,538,541]]],[16,21,18,541,559,[[426,3,3,541,544],[427,11,9,544,553],[428,1,1,553,554],[429,1,1,554,555],[430,2,2,555,557],[431,2,1,557,558],[433,1,1,558,559]]],[17,8,8,559,567,[[437,1,1,559,560],[449,1,1,560,561],[450,1,1,561,562],[454,1,1,562,563],[460,1,1,563,564],[466,2,2,564,566],[477,1,1,566,567]]],[18,3,3,567,570,[[535,1,1,567,568],[586,1,1,568,569],[605,1,1,569,570]]],[19,25,24,570,594,[[629,1,1,570,571],[632,1,1,571,572],[633,5,4,572,576],[634,2,2,576,578],[636,1,1,578,579],[638,2,2,579,581],[639,1,1,581,582],[641,1,1,582,583],[645,1,1,583,584],[646,2,2,584,586],[648,2,2,586,588],[652,1,1,588,589],[654,1,1,589,590],[657,1,1,590,591],[658,3,3,591,594]]],[20,3,3,594,597,[[665,2,2,594,596],[667,1,1,596,597]]],[21,3,3,597,600,[[671,1,1,597,598],[675,1,1,598,599],[676,1,1,599,600]]],[22,12,11,600,611,[[681,1,1,600,601],[682,1,1,601,602],[691,1,1,602,603],[697,1,1,603,604],[705,1,1,604,605],[710,1,1,605,606],[712,2,2,606,608],[723,1,1,608,609],[727,1,1,609,610],[732,2,1,610,611]]],[23,36,32,611,643,[[747,3,3,611,614],[749,1,1,614,615],[750,2,2,615,617],[751,1,1,617,618],[752,1,1,618,619],[753,2,1,619,620],[757,1,1,620,621],[758,1,1,621,622],[760,1,1,622,623],[762,1,1,623,624],[773,3,2,624,626],[779,1,1,626,627],[782,2,2,627,629],[784,1,1,629,630],[785,1,1,630,631],[787,1,1,631,632],[788,8,6,632,638],[792,1,1,638,639],[793,1,1,639,640],[794,1,1,640,641],[795,2,2,641,643]]],[24,3,3,643,646,[[798,1,1,643,644],[800,1,1,644,645],[801,1,1,645,646]]],[25,22,20,646,666,[[802,2,2,646,648],[804,1,1,648,649],[809,1,1,649,650],[810,1,1,650,651],[817,4,4,651,655],[819,4,3,655,658],[823,1,1,658,659],[824,5,4,659,663],[825,1,1,663,664],[834,1,1,664,665],[845,1,1,665,666]]],[26,2,2,666,668,[[860,2,2,666,668]]],[27,5,4,668,672,[[862,1,1,668,669],[863,1,1,669,670],[864,1,1,670,671],[873,2,1,671,672]]],[29,2,2,672,674,[[882,1,1,672,673],[885,1,1,673,674]]],[32,1,1,674,675,[[894,1,1,674,675]]],[33,1,1,675,676,[[902,1,1,675,676]]],[37,9,7,676,683,[[915,2,2,676,678],[921,1,1,678,679],[922,5,3,679,682],[924,1,1,682,683]]],[38,3,2,683,685,[[926,3,2,683,685]]]],[52,53,54,55,56,57,59,61,63,67,68,70,71,72,75,76,80,96,98,102,104,139,155,161,166,172,199,201,295,297,303,309,310,312,313,315,316,317,318,319,352,382,384,412,416,433,434,435,472,473,483,497,498,502,506,507,509,512,513,534,590,594,595,596,598,599,606,627,628,629,630,631,635,642,658,659,668,678,679,699,700,701,702,703,726,773,774,775,779,782,816,823,834,839,856,890,908,923,950,965,984,988,992,1001,1009,1042,1046,1050,1052,1053,1054,1057,1058,1079,1085,1125,1127,1128,1131,1133,1139,1156,1157,1158,1168,1240,1351,1377,1391,1405,1412,1504,1551,1556,1561,1563,1601,1621,1675,1678,1680,1808,1940,2001,2004,2005,2041,2068,2080,2081,2082,2099,2105,2106,2129,2137,2238,2240,2241,2252,2440,2553,2556,2557,2560,2572,3046,3081,3090,3186,3187,3193,3259,3262,3265,3266,3267,3268,3269,3270,3271,3273,3274,3301,3328,3329,3331,3332,3334,3336,3339,3345,3352,3358,3359,3456,3457,3550,3798,3804,3806,3807,3810,3811,3813,3814,3816,3817,3818,3819,3820,3821,3822,3823,3825,4060,4111,4221,4479,4486,4548,4651,4664,4673,4681,4682,4699,4744,4882,4885,4887,4890,4891,4972,4981,4994,5074,5278,5366,5369,5381,5434,5441,5458,5460,5462,5475,5483,5484,5486,5489,5492,5494,5499,5500,5526,5528,5529,5530,5552,5558,5605,5641,5665,5690,5697,5740,5865,5870,5873,5970,5971,6027,6037,6218,6219,6521,6522,6574,6603,6608,6616,6620,6647,6749,6803,6805,6807,6808,6830,6831,6886,6887,6890,6893,6894,6895,6897,6903,6904,6905,6906,6907,6908,6910,6911,6912,6916,6919,6924,6925,6929,6930,6935,6950,6953,6976,7025,7050,7051,7058,7103,7109,7112,7113,7116,7118,7120,7123,7124,7125,7128,7129,7131,7132,7135,7136,7180,7183,7186,7195,7200,7201,7203,7204,7214,7216,7227,7230,7231,7235,7238,7260,7262,7316,7558,7563,7593,7682,7683,7693,7695,7703,7717,7776,7777,7806,7864,7875,7898,7900,7901,7903,7904,7905,7933,7939,7941,7949,7950,7951,7953,7954,7955,7963,7965,7966,7980,7981,7983,7996,8000,8048,8051,8084,8086,8089,8095,8145,8176,8261,8262,8264,8270,8280,8285,8286,8294,8295,8296,8297,8301,8310,8358,8360,8361,8364,8365,8368,8369,8374,8375,8383,8405,8468,8469,8516,8557,8570,8571,8575,8576,8787,8791,8832,8833,8834,8835,8838,8842,8855,8859,9067,9109,9111,9112,9116,9127,9134,9220,9222,9223,9224,9235,9314,9326,9327,9334,9341,9411,9413,9415,9456,9458,9476,9604,9611,9620,9649,9700,9702,9704,9728,9729,9730,9732,9733,9745,9905,10159,10172,10217,10302,10324,10330,10332,10335,10341,10364,10390,10403,10404,10539,10550,10551,10558,10583,10584,10604,10650,10777,10823,11225,11357,11432,11435,11437,11474,11503,11600,11630,11638,11641,11655,11680,11722,11772,11800,11872,11955,12088,12253,12254,12255,12262,12263,12266,12269,12270,12271,12296,12373,12383,12483,12495,12496,12577,12667,12694,12697,12698,12711,12719,12722,12727,12732,12733,12735,12736,12737,12738,12739,12741,12760,12773,12789,12793,12806,12828,12900,13182,13217,13314,13465,13597,13598,13937,14787,15764,16129,16449,16535,16564,16566,16569,16572,16580,16585,16651,16704,16710,16723,16773,16923,16938,16939,16993,17003,17137,17184,17271,17287,17294,17314,17455,17457,17484,17545,17607,17615,17719,17734,17922,18020,18162,18268,18318,18319,18571,18651,18729,19003,19005,19022,19066,19100,19101,19137,19163,19195,19287,19309,19338,19405,19641,19658,19831,19917,19918,19948,19973,20003,20017,20019,20025,20030,20034,20035,20121,20149,20203,20234,20242,20352,20430,20453,20473,20487,20515,20618,20628,20792,20794,20796,20803,20855,20860,20864,20987,21009,21017,21051,21055,21074,21306,21621,22053,22073,22096,22107,22129,22264,22413,22481,22604,22725,22943,22945,23037,23057,23058,23059,23070,23117,23118]]],["+",[39,37,[[0,2,2,0,2,[[25,1,1,0,1],[40,1,1,1,2]]],[1,3,3,2,5,[[51,1,1,2,3],[70,1,1,3,4],[75,1,1,4,5]]],[3,5,4,5,9,[[152,5,4,5,9]]],[5,2,2,9,11,[[188,1,1,9,10],[192,1,1,10,11]]],[6,7,6,11,17,[[214,1,1,11,12],[215,2,1,12,13],[221,1,1,13,14],[226,1,1,14,15],[229,1,1,15,16],[231,1,1,16,17]]],[8,4,4,17,21,[[250,1,1,17,18],[256,1,1,18,19],[263,1,1,19,20],[265,1,1,20,21]]],[9,1,1,21,22,[[269,1,1,21,22]]],[10,2,2,22,24,[[301,1,1,22,23],[306,1,1,23,24]]],[11,1,1,24,25,[[316,1,1,24,25]]],[12,1,1,25,26,[[345,1,1,25,26]]],[19,8,8,26,34,[[629,1,1,26,27],[632,1,1,27,28],[633,2,2,28,30],[634,1,1,30,31],[648,2,2,31,33],[652,1,1,33,34]]],[22,1,1,34,35,[[712,1,1,34,35]]],[23,1,1,35,36,[[747,1,1,35,36]]],[37,1,1,36,37,[[921,1,1,36,37]]]],[726,1240,1561,2080,2241,4882,4885,4890,4891,5870,5971,6603,6647,6830,6950,7025,7116,7593,7776,7953,7980,8095,9127,9314,9604,10584,16449,16535,16564,16566,16580,16993,17003,17137,18319,19005,23037]]],["Woman",[1,1,[[0,1,1,0,1,[[1,1,1,0,1]]]],[53]]],["each",[2,2,[[7,2,2,0,2,[[232,2,2,0,2]]]],[7135,7136]]],["every",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22413]]],["female",[2,1,[[0,2,1,0,1,[[6,2,1,0,1]]]],[161]]],["one",[9,8,[[1,4,3,0,3,[[75,4,3,0,3]]],[22,1,1,3,4,[[712,1,1,3,4]]],[23,1,1,4,5,[[753,1,1,4,5]]],[25,3,3,5,8,[[802,2,2,5,7],[804,1,1,7,8]]]],[2238,2240,2252,18318,19195,20473,20487,20515]]],["wife",[295,273,[[0,98,89,0,89,[[1,2,2,0,2],[2,3,3,2,5],[3,3,3,5,8],[5,1,1,8,9],[6,2,2,9,11],[7,2,2,11,13],[10,3,2,13,15],[11,8,7,15,22],[12,1,1,22,23],[15,3,2,23,25],[16,2,2,25,27],[17,2,2,27,29],[18,3,3,29,32],[19,6,6,32,38],[20,1,1,38,39],[22,1,1,39,40],[23,10,10,40,50],[24,5,4,50,54],[25,6,5,54,59],[26,1,1,59,60],[27,5,4,60,64],[28,2,2,64,66],[29,2,2,66,68],[33,3,3,68,71],[35,8,6,71,77],[37,5,5,77,82],[38,4,4,82,86],[43,1,1,86,87],[45,1,1,87,88],[48,2,1,88,89]]],[1,13,12,89,101,[[53,1,1,89,90],[55,3,3,90,93],[67,3,3,93,96],[69,1,1,96,97],[70,4,3,97,100],[71,1,1,100,101]]],[2,14,13,101,114,[[107,6,6,101,107],[109,5,4,107,111],[110,3,3,111,114]]],[3,9,8,114,122,[[121,6,5,114,119],[142,1,1,119,120],[146,1,1,120,121],[152,1,1,121,122]]],[4,22,20,122,142,[[157,1,1,122,123],[165,1,1,123,124],[172,1,1,124,125],[173,2,2,125,127],[174,6,6,127,133],[176,5,4,133,137],[177,3,2,137,139],[179,1,1,139,140],[180,2,2,140,142]]],[5,2,2,142,144,[[201,2,2,142,144]]],[6,26,25,144,169,[[211,2,2,144,146],[214,3,3,146,149],[215,1,1,149,150],[221,1,1,150,151],[223,7,7,151,158],[224,5,5,158,163],[225,3,2,163,165],[231,4,4,165,169]]],[7,6,5,169,174,[[232,2,2,169,171],[235,4,3,171,174]]],[8,19,19,174,193,[[236,2,2,174,176],[237,1,1,176,177],[239,1,1,177,178],[249,1,1,178,179],[253,3,3,179,182],[254,1,1,182,183],[260,7,7,183,190],[262,1,1,190,191],[265,2,2,191,193]]],[9,13,11,193,204,[[268,1,1,193,194],[269,2,2,194,196],[277,4,4,196,200],[278,6,4,200,204]]],[10,15,14,204,218,[[292,2,2,204,206],[294,2,2,206,208],[299,1,1,208,209],[301,1,1,209,210],[304,6,5,210,215],[311,3,3,215,218]]],[11,4,4,218,222,[[317,1,1,218,219],[320,1,1,219,220],[326,1,1,220,221],[334,1,1,221,222]]],[12,11,11,222,233,[[339,5,5,222,227],[340,1,1,227,228],[341,2,2,228,230],[344,3,3,230,233]]],[13,6,6,233,239,[[374,1,1,233,234],[377,1,1,234,235],[387,1,1,235,236],[388,1,1,236,237],[391,1,1,237,238],[400,1,1,238,239]]],[14,1,1,239,240,[[404,1,1,239,240]]],[15,1,1,240,241,[[419,1,1,240,241]]],[16,4,3,241,244,[[430,2,2,241,243],[431,2,1,243,244]]],[17,3,3,244,247,[[437,1,1,244,245],[454,1,1,245,246],[466,1,1,246,247]]],[18,2,2,247,249,[[586,1,1,247,248],[605,1,1,248,249]]],[19,4,4,249,253,[[633,1,1,249,250],[645,1,1,250,251],[646,2,2,251,253]]],[20,1,1,253,254,[[667,1,1,253,254]]],[22,1,1,254,255,[[732,1,1,254,255]]],[23,5,5,255,260,[[747,2,2,255,257],[749,1,1,257,258],[750,1,1,258,259],[760,1,1,259,260]]],[25,7,7,260,267,[[817,1,1,260,261],[819,3,3,261,264],[823,1,1,264,265],[825,1,1,265,266],[834,1,1,266,267]]],[27,4,3,267,270,[[862,1,1,267,268],[863,1,1,268,269],[873,2,1,269,270]]],[29,1,1,270,271,[[885,1,1,270,271]]],[38,3,2,271,273,[[926,3,2,271,273]]]],[54,55,63,72,76,80,96,104,155,166,172,199,201,295,297,303,309,310,315,316,317,318,319,382,384,412,416,433,434,472,473,483,497,502,507,509,512,513,534,590,594,595,598,606,627,628,629,631,642,658,659,668,678,679,699,700,701,702,703,773,774,775,779,782,816,823,834,839,984,988,992,1050,1052,1053,1054,1057,1058,1125,1127,1128,1131,1133,1156,1157,1158,1168,1351,1405,1504,1621,1675,1678,1680,2001,2004,2005,2068,2080,2081,2082,2129,3259,3265,3266,3267,3269,3271,3328,3329,3332,3339,3352,3358,3359,3804,3806,3807,3821,3822,4548,4664,4887,5074,5278,5434,5458,5460,5483,5486,5489,5494,5499,5500,5526,5528,5529,5530,5552,5558,5605,5641,5665,6218,6219,6521,6522,6603,6616,6620,6647,6831,6886,6895,6903,6904,6905,6906,6907,6911,6912,6924,6925,6929,6930,6935,7103,7120,7123,7124,7128,7129,7195,7200,7203,7216,7231,7260,7316,7558,7693,7695,7703,7717,7864,7875,7898,7900,7901,7903,7905,7933,7983,8000,8051,8084,8086,8262,8270,8285,8286,8295,8296,8301,8310,8787,8791,8855,8859,9067,9127,9220,9222,9223,9224,9235,9456,9458,9476,9649,9745,9905,10159,10324,10330,10332,10335,10341,10364,10403,10404,10550,10551,10558,11357,11432,11630,11655,11722,11955,12088,12483,12789,12793,12806,12900,13314,13598,15764,16129,16569,16923,16938,16939,17484,18729,19003,19022,19066,19100,19338,20794,20855,20860,20864,20987,21074,21306,22096,22107,22264,22481,23117,23118]]],["wife's",[8,8,[[0,3,3,0,3,[[2,1,1,0,1],[19,1,1,1,2],[35,1,1,2,3]]],[2,1,1,3,4,[[107,1,1,3,4]]],[6,1,1,4,5,[[221,1,1,4,5]]],[12,3,3,5,8,[[338,1,1,5,6],[345,1,1,6,7],[346,1,1,7,8]]]],[75,506,1079,3262,6831,10302,10604,10650]]],["wives",[114,104,[[0,23,22,0,22,[[3,3,2,0,2],[5,2,2,2,4],[6,2,2,4,6],[7,2,2,6,8],[10,1,1,8,9],[27,1,1,9,10],[29,1,1,10,11],[30,2,2,11,13],[31,1,1,13,14],[33,2,2,14,16],[35,2,2,16,18],[36,1,1,18,19],[44,1,1,19,20],[45,2,2,20,22]]],[1,3,3,22,25,[[68,1,1,22,23],[71,1,1,23,24],[81,1,1,24,25]]],[3,3,3,25,28,[[130,1,1,25,26],[132,1,1,26,27],[148,1,1,27,28]]],[4,4,4,28,32,[[155,1,1,28,29],[169,1,1,29,30],[173,1,1,30,31],[181,1,1,31,32]]],[5,1,1,32,33,[[187,1,1,32,33]]],[6,8,7,33,40,[[213,1,1,33,34],[218,1,1,34,35],[231,6,5,35,40]]],[7,1,1,40,41,[[232,1,1,40,41]]],[8,6,6,41,47,[[236,1,1,41,42],[260,1,1,42,43],[262,1,1,43,44],[265,3,3,44,47]]],[9,6,5,47,52,[[268,1,1,47,48],[271,1,1,48,49],[278,3,2,49,51],[285,1,1,51,52]]],[10,7,6,52,58,[[301,4,3,52,55],[310,3,3,55,58]]],[11,1,1,58,59,[[336,1,1,58,59]]],[12,4,4,59,63,[[341,1,1,59,60],[344,1,1,60,61],[345,1,1,61,62],[351,1,1,62,63]]],[13,10,9,63,72,[[377,3,2,63,65],[379,1,1,65,66],[386,1,1,66,67],[387,2,2,67,69],[390,1,1,69,70],[395,1,1,70,71],[397,1,1,71,72]]],[14,10,9,72,81,[[412,10,9,72,81]]],[15,6,6,81,87,[[416,1,1,81,82],[417,1,1,82,83],[422,1,1,83,84],[424,1,1,84,85],[425,2,2,85,87]]],[16,1,1,87,88,[[426,1,1,87,88]]],[22,1,1,88,89,[[691,1,1,88,89]]],[23,13,11,89,100,[[750,1,1,89,90],[752,1,1,90,91],[758,1,1,91,92],[762,1,1,92,93],[773,3,2,93,95],[779,1,1,95,96],[782,1,1,96,97],[788,4,3,97,100]]],[25,1,1,100,101,[[845,1,1,100,101]]],[37,5,3,101,104,[[922,5,3,101,104]]]],[98,102,139,155,166,172,199,201,295,782,856,890,923,950,1001,1009,1042,1046,1085,1377,1391,1412,2041,2137,2440,4111,4221,4744,4994,5381,5462,5690,5865,6574,6749,7109,7116,7118,7120,7125,7131,7214,7904,7933,7981,7983,7996,8051,8145,8294,8297,8516,9111,9112,9116,9411,9413,9415,10217,10390,10539,10583,10777,11435,11437,11474,11600,11638,11641,11680,11800,11872,12254,12255,12262,12263,12266,12269,12270,12271,12296,12373,12383,12577,12667,12694,12698,12722,17922,19101,19163,19309,19405,19641,19658,19831,19918,20019,20025,20035,21621,23057,23058,23059]]],["woman",[204,189,[[0,18,17,0,17,[[1,1,1,0,1],[2,9,8,1,9],[11,3,3,9,12],[19,1,1,12,13],[23,4,4,13,17]]],[1,9,9,17,26,[[51,2,2,17,19],[52,1,1,19,20],[60,1,1,20,21],[70,3,3,21,24],[84,1,1,24,25],[85,1,1,25,26]]],[2,17,16,26,42,[[101,1,1,26,27],[102,2,2,27,29],[104,3,3,29,32],[107,3,3,32,35],[108,1,1,35,36],[109,5,4,36,40],[110,1,1,40,41],[113,1,1,41,42]]],[3,19,17,42,59,[[121,12,11,42,53],[122,1,1,53,54],[128,2,1,54,55],[141,2,2,55,57],[146,1,1,57,58],[147,1,1,58,59]]],[4,10,7,59,66,[[169,3,2,59,61],[173,1,1,61,62],[174,5,3,62,65],[181,1,1,65,66]]],[5,3,3,66,69,[[188,1,1,66,67],[192,2,2,67,69]]],[6,21,21,69,90,[[214,1,1,69,70],[219,2,2,70,72],[221,1,1,72,73],[223,7,7,73,80],[224,5,5,80,85],[226,1,1,85,86],[229,2,2,86,88],[230,1,1,88,89],[231,1,1,89,90]]],[7,5,5,90,95,[[232,1,1,90,91],[234,3,3,91,94],[235,1,1,94,95]]],[8,19,17,95,112,[[236,4,4,95,99],[237,1,1,99,100],[250,1,1,100,101],[260,1,1,101,102],[262,2,2,102,104],[263,10,8,104,112]]],[9,25,21,112,133,[[269,1,1,112,113],[277,5,4,113,117],[280,12,10,117,127],[283,3,2,127,129],[286,4,4,129,133]]],[10,10,9,133,142,[[293,5,4,133,137],[301,1,1,137,138],[307,4,4,138,142]]],[11,12,11,142,153,[[316,3,3,142,145],[318,3,3,145,148],[320,6,5,148,153]]],[12,1,1,153,154,[[353,1,1,153,154]]],[13,2,2,154,156,[[368,1,1,154,155],[381,1,1,155,156]]],[16,1,1,156,157,[[429,1,1,156,157]]],[17,4,4,157,161,[[449,1,1,157,158],[450,1,1,158,159],[460,1,1,159,160],[466,1,1,160,161]]],[18,1,1,161,162,[[535,1,1,161,162]]],[19,12,12,162,174,[[633,2,2,162,164],[634,1,1,164,165],[636,1,1,165,166],[638,2,2,166,168],[639,1,1,168,169],[641,1,1,169,170],[654,1,1,170,171],[657,1,1,171,172],[658,2,2,172,174]]],[20,2,2,174,176,[[665,2,2,174,176]]],[22,3,3,176,179,[[723,1,1,176,177],[727,1,1,177,178],[732,1,1,178,179]]],[23,5,5,179,184,[[757,1,1,179,180],[788,1,1,180,181],[792,1,1,181,182],[793,1,1,182,183],[795,1,1,183,184]]],[25,3,3,184,187,[[817,1,1,184,185],[819,1,1,185,186],[824,1,1,186,187]]],[27,1,1,187,188,[[864,1,1,187,188]]],[37,1,1,188,189,[[915,1,1,188,189]]]],[52,56,57,59,61,67,68,70,71,309,312,313,498,596,599,630,635,1556,1563,1601,1808,2099,2105,2106,2560,2572,3046,3081,3090,3186,3187,3193,3268,3270,3274,3301,3331,3334,3336,3345,3352,3456,3798,3810,3811,3813,3814,3816,3818,3819,3820,3822,3823,3825,4060,4479,4486,4651,4681,5366,5369,5458,5475,5484,5492,5697,5873,5970,5971,6608,6807,6808,6831,6887,6890,6893,6894,6895,6897,6908,6910,6911,6912,6916,6919,6953,7050,7051,7058,7113,7132,7180,7183,7186,7201,7227,7230,7235,7238,7260,7563,7864,7939,7941,7949,7950,7951,7954,7955,7963,7965,7966,8089,8261,8262,8264,8280,8358,8360,8361,8364,8365,8368,8369,8374,8375,8383,8468,8469,8570,8571,8575,8576,8833,8834,8838,8842,9134,9326,9327,9334,9341,9604,9611,9620,9700,9702,9704,9728,9729,9730,9732,9733,10823,11225,11503,12773,13182,13217,13465,13597,14787,16566,16572,16585,16651,16704,16710,16723,16773,17184,17271,17294,17314,17455,17457,18571,18651,18729,19287,20017,20121,20149,20234,20792,20855,21051,22129,22943]]],["woman's",[7,7,[[0,1,1,0,1,[[37,1,1,0,1]]],[1,1,1,1,2,[[70,1,1,1,2]]],[2,1,1,2,3,[[113,1,1,2,3]]],[3,2,2,3,5,[[121,2,2,3,5]]],[4,1,1,5,6,[[174,1,1,5,6]]],[10,1,1,6,7,[[293,1,1,6,7]]]],[1139,2099,3457,3810,3817,5475,8835]]],["womankind",[1,1,[[2,1,1,0,1,[[107,1,1,0,1]]]],[3273]]],["women",[96,93,[[0,4,4,0,4,[[13,1,1,0,1],[17,1,1,1,2],[30,1,1,2,3],[32,1,1,3,4]]],[1,5,5,4,9,[[50,1,1,4,5],[64,1,1,5,6],[84,3,3,6,9]]],[2,1,1,9,10,[[115,1,1,9,10]]],[3,3,3,10,13,[[147,3,3,10,13]]],[4,4,4,13,17,[[154,1,1,13,14],[155,1,1,14,15],[172,1,1,15,16],[183,1,1,16,17]]],[5,2,2,17,19,[[194,2,2,17,19]]],[6,6,5,19,24,[[219,2,2,19,21],[226,2,1,21,22],[231,2,2,22,24]]],[7,1,1,24,25,[[235,1,1,24,25]]],[8,6,6,25,31,[[237,1,1,25,26],[250,1,1,26,27],[253,2,2,27,29],[256,1,1,29,30],[257,1,1,30,31]]],[9,4,4,31,35,[[267,1,1,31,32],[272,1,1,32,33],[281,1,1,33,34],[286,1,1,34,35]]],[10,2,2,35,37,[[293,1,1,35,36],[301,1,1,36,37]]],[11,1,1,37,38,[[335,1,1,37,38]]],[13,1,1,38,39,[[394,1,1,38,39]]],[14,1,1,39,40,[[412,1,1,39,40]]],[15,3,3,40,43,[[420,2,2,40,42],[425,1,1,42,43]]],[16,14,12,43,55,[[426,2,2,43,45],[427,10,8,45,53],[428,1,1,53,54],[433,1,1,54,55]]],[17,1,1,55,56,[[477,1,1,55,56]]],[19,1,1,56,57,[[658,1,1,56,57]]],[21,3,3,57,60,[[671,1,1,57,58],[675,1,1,58,59],[676,1,1,59,60]]],[22,5,5,60,65,[[681,1,1,60,61],[682,1,1,61,62],[697,1,1,62,63],[705,1,1,63,64],[710,1,1,64,65]]],[23,11,11,65,76,[[751,1,1,65,66],[753,1,1,66,67],[782,1,1,67,68],[784,1,1,68,69],[785,1,1,69,70],[787,1,1,70,71],[788,3,3,71,74],[794,1,1,74,75],[795,1,1,75,76]]],[24,3,3,76,79,[[798,1,1,76,77],[800,1,1,77,78],[801,1,1,78,79]]],[25,8,8,79,87,[[809,1,1,79,80],[810,1,1,80,81],[817,2,2,81,83],[824,4,4,83,87]]],[26,2,2,87,89,[[860,2,2,87,89]]],[32,1,1,89,90,[[894,1,1,89,90]]],[33,1,1,90,91,[[902,1,1,90,91]]],[37,2,2,91,93,[[915,1,1,91,92],[924,1,1,92,93]]]],[352,435,908,965,1551,1940,2553,2556,2557,3550,4673,4682,4699,4972,4981,5441,5740,6027,6037,6803,6805,6976,7112,7118,7204,7262,7593,7682,7683,7777,7806,8048,8176,8405,8557,8832,9109,10172,11772,12253,12495,12496,12697,12711,12719,12727,12732,12733,12736,12737,12738,12739,12741,12760,12828,13937,17287,17545,17607,17615,17719,17734,18020,18162,18268,19137,19195,19917,19948,19973,20003,20025,20030,20034,20203,20242,20352,20430,20453,20618,20628,20796,20803,21009,21017,21051,21055,22053,22073,22604,22725,22945,23070]]],["women's",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12735]]]]},{"k":"H803","v":[["foundations",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20181]]]]},{"k":"H804","v":[["*",[151,138,[[0,4,4,0,4,[[1,1,1,0,1],[9,2,2,1,3],[24,1,1,3,4]]],[3,2,2,4,6,[[140,2,2,4,6]]],[11,49,41,6,47,[[327,5,3,6,9],[328,6,5,9,14],[329,11,8,14,22],[330,15,13,22,35],[331,10,10,35,45],[332,1,1,45,46],[335,1,1,46,47]]],[12,4,3,47,50,[[338,1,1,47,48],[342,3,2,48,50]]],[13,13,13,50,63,[[394,3,3,50,53],[396,1,1,53,54],[398,8,8,54,62],[399,1,1,62,63]]],[14,2,2,63,65,[[406,1,1,63,64],[408,1,1,64,65]]],[15,1,1,65,66,[[421,1,1,65,66]]],[18,1,1,66,67,[[560,1,1,66,67]]],[22,44,41,67,108,[[685,3,3,67,70],[686,2,2,70,72],[688,3,3,72,75],[689,2,2,75,77],[692,1,1,77,78],[697,6,3,78,81],[698,3,3,81,84],[701,1,1,84,85],[705,1,1,85,86],[708,1,1,86,87],[709,1,1,87,88],[714,8,8,88,96],[715,10,10,96,106],[716,1,1,106,107],[730,1,1,107,108]]],[23,4,4,108,112,[[746,2,2,108,110],[794,2,2,110,112]]],[24,1,1,112,113,[[801,1,1,112,113]]],[25,9,9,113,122,[[817,1,1,113,114],[824,5,5,114,119],[828,1,1,119,120],[832,1,1,120,121],[833,1,1,121,122]]],[27,9,9,122,131,[[866,1,1,122,123],[868,1,1,123,124],[869,1,1,124,125],[870,1,1,125,126],[871,1,1,126,127],[872,2,2,127,129],[873,1,1,129,130],[875,1,1,130,131]]],[32,4,3,131,134,[[897,3,2,131,133],[899,1,1,133,134]]],[33,1,1,134,135,[[902,1,1,134,135]]],[35,1,1,135,136,[[907,1,1,135,136]]],[37,2,2,136,138,[[920,2,2,136,138]]]],[44,245,256,676,4468,4470,9944,9945,9954,9970,9971,9972,9973,9981,9986,9987,9988,9989,10006,10007,10009,10010,10031,10033,10035,10037,10038,10040,10041,10043,10047,10052,10054,10055,10057,10065,10067,10069,10071,10072,10078,10081,10093,10096,10097,10104,10194,10269,10434,10454,11780,11784,11785,11833,11876,11879,11882,11884,11885,11886,11896,11897,11919,12112,12173,12543,15249,17799,17800,17802,17811,17814,17855,17862,17874,17895,17900,17953,18027,18028,18029,18030,18033,18035,18090,18164,18248,18258,18331,18332,18334,18338,18343,18345,18346,18348,18356,18358,18360,18362,18363,18370,18373,18385,18388,18389,18396,18700,18983,19001,20183,20184,20448,20790,21012,21014,21016,21019,21030,21144,21233,21270,22165,22189,22203,22211,22231,22245,22251,22253,22285,22638,22639,22676,22730,22818,23026,23027]]],["+",[10,10,[[22,4,4,0,4,[[685,1,1,0,1],[688,1,1,1,2],[689,2,2,2,4]]],[23,1,1,4,5,[[746,1,1,4,5]]],[25,4,4,5,9,[[817,1,1,5,6],[824,3,3,6,9]]],[37,1,1,9,10,[[920,1,1,9,10]]]],[17802,17874,17895,17900,19001,20790,21016,21019,21030,23026]]],["Asshur",[8,8,[[0,2,2,0,2,[[9,2,2,0,2]]],[3,2,2,2,4,[[140,2,2,2,4]]],[12,1,1,4,5,[[338,1,1,4,5]]],[25,2,2,5,7,[[828,1,1,5,6],[833,1,1,6,7]]],[27,1,1,7,8,[[875,1,1,7,8]]]],[245,256,4468,4470,10269,21144,21270,22285]]],["Assur",[2,2,[[14,1,1,0,1,[[406,1,1,0,1]]],[18,1,1,1,2,[[560,1,1,1,2]]]],[12112,15249]]],["Assyria",[113,103,[[0,2,2,0,2,[[1,1,1,0,1],[24,1,1,1,2]]],[11,48,40,2,42,[[327,5,3,2,5],[328,6,5,5,10],[329,11,8,10,18],[330,15,13,18,31],[331,9,9,31,40],[332,1,1,40,41],[335,1,1,41,42]]],[12,3,2,42,44,[[342,3,2,42,44]]],[13,13,13,44,57,[[394,3,3,44,47],[396,1,1,47,48],[398,8,8,48,56],[399,1,1,56,57]]],[14,1,1,57,58,[[408,1,1,57,58]]],[15,1,1,58,59,[[421,1,1,58,59]]],[22,31,30,59,89,[[685,2,2,59,61],[686,2,2,61,63],[688,1,1,63,64],[697,4,3,64,67],[698,3,3,67,70],[705,1,1,70,71],[714,8,8,71,79],[715,9,9,79,88],[716,1,1,88,89]]],[23,3,3,89,92,[[746,1,1,89,90],[794,2,2,90,92]]],[25,1,1,92,93,[[824,1,1,92,93]]],[27,5,5,93,98,[[868,1,1,93,94],[869,1,1,94,95],[870,1,1,95,96],[871,1,1,96,97],[872,1,1,97,98]]],[32,2,2,98,100,[[897,1,1,98,99],[899,1,1,99,100]]],[33,1,1,100,101,[[902,1,1,100,101]]],[35,1,1,101,102,[[907,1,1,101,102]]],[37,1,1,102,103,[[920,1,1,102,103]]]],[44,676,9944,9945,9954,9970,9971,9972,9973,9981,9986,9987,9988,9989,10006,10007,10009,10010,10031,10033,10035,10037,10038,10040,10041,10043,10047,10052,10054,10055,10057,10065,10067,10069,10071,10072,10078,10081,10093,10097,10104,10194,10434,10454,11780,11784,11785,11833,11876,11879,11882,11884,11885,11886,11896,11897,11919,12173,12543,17799,17800,17811,17814,17862,18027,18028,18029,18030,18033,18035,18164,18331,18332,18334,18338,18343,18345,18346,18348,18356,18358,18360,18362,18363,18370,18373,18385,18389,18396,18983,20183,20184,21014,22189,22203,22211,22231,22251,22639,22676,22730,22818,23027]]],["Assyrian",[12,12,[[22,7,7,0,7,[[688,1,1,0,1],[692,1,1,1,2],[697,1,1,2,3],[701,1,1,3,4],[708,1,1,4,5],[709,1,1,5,6],[730,1,1,6,7]]],[25,1,1,7,8,[[832,1,1,7,8]]],[27,2,2,8,10,[[866,1,1,8,9],[872,1,1,9,10]]],[32,2,2,10,12,[[897,2,2,10,12]]]],[17855,17953,18027,18090,18248,18258,18700,21233,22165,22245,22638,22639]]],["Assyrians",[6,6,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,2,2,1,3,[[697,1,1,1,2],[715,1,1,2,3]]],[24,1,1,3,4,[[801,1,1,3,4]]],[25,1,1,4,5,[[824,1,1,4,5]]],[27,1,1,5,6,[[873,1,1,5,6]]]],[10096,18027,18388,20448,21012,22253]]]]},{"k":"H805","v":[["Asshurim",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[661]]]]},{"k":"H806","v":[["Ashur",[2,2,[[12,2,2,0,2,[[339,1,1,0,1],[341,1,1,1,2]]]],[10330,10390]]]]},{"k":"H807","v":[["Ashima",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10013]]]]},{"k":"H808","v":[["foundations",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17976]]]]},{"k":"H809","v":[["*",[4,4,[[9,1,1,0,1,[[272,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[21,1,1,2,3,[[672,1,1,2,3]]],[27,1,1,3,4,[[864,1,1,3,4]]]],[8176,10823,17559,22129]]],["flagon",[2,2,[[9,1,1,0,1,[[272,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]]],[8176,10823]]],["flagons",[2,2,[[21,1,1,0,1,[[672,1,1,0,1]]],[27,1,1,1,2,[[864,1,1,1,2]]]],[17559,22129]]]]},{"k":"H810","v":[["stones",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3365]]]]},{"k":"H811","v":[["*",[9,9,[[0,1,1,0,1,[[39,1,1,0,1]]],[3,2,2,1,3,[[129,2,2,1,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[21,3,3,4,7,[[671,1,1,4,5],[677,2,2,5,7]]],[22,1,1,7,8,[[743,1,1,7,8]]],[32,1,1,8,9,[[899,1,1,8,9]]]],[1182,4098,4099,5790,17551,17634,17635,18905,22665]]],["cluster",[4,4,[[3,1,1,0,1,[[129,1,1,0,1]]],[21,1,1,1,2,[[671,1,1,1,2]]],[22,1,1,2,3,[[743,1,1,2,3]]],[32,1,1,3,4,[[899,1,1,3,4]]]],[4098,17551,18905,22665]]],["clusters",[4,4,[[0,1,1,0,1,[[39,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[21,2,2,2,4,[[677,2,2,2,4]]]],[1182,5790,17634,17635]]],["grapes",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4099]]]]},{"k":"H812","v":[["Eshcol",[6,6,[[0,2,2,0,2,[[13,2,2,0,2]]],[3,3,3,2,5,[[129,2,2,2,4],[148,1,1,4,5]]],[4,1,1,5,6,[[153,1,1,5,6]]]],[349,360,4098,4099,4727,4916]]]]},{"k":"H813","v":[["*",[3,3,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[23,1,1,2,3,[[795,1,1,2,3]]]],[237,10258,20239]]],["Ashchenaz",[2,2,[[12,1,1,0,1,[[338,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[10258,20239]]],["Ashkenaz",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[237]]]]},{"k":"H814","v":[["*",[2,2,[[18,1,1,0,1,[[549,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[15010,21136]]],["gifts",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15010]]],["present",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21136]]]]},{"k":"H815","v":[["*",[3,3,[[0,1,1,0,1,[[20,1,1,0,1]]],[8,2,2,1,3,[[257,1,1,1,2],[266,1,1,2,3]]]],[546,7793,8022]]],["grove",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[546]]],["tree",[2,2,[[8,2,2,0,2,[[257,1,1,0,1],[266,1,1,1,2]]]],[7793,8022]]]]},{"k":"H816","v":[["*",[35,32,[[2,11,10,0,10,[[93,3,3,0,3],[94,7,6,3,9],[95,1,1,9,10]]],[3,2,2,10,12,[[121,2,2,10,12]]],[6,1,1,12,13,[[231,1,1,12,13]]],[13,2,1,13,14,[[385,2,1,13,14]]],[18,3,3,14,17,[[482,1,1,14,15],[511,2,2,15,17]]],[19,1,1,17,18,[[657,1,1,17,18]]],[22,1,1,18,19,[[702,1,1,18,19]]],[23,2,2,19,21,[[746,1,1,19,20],[794,1,1,20,21]]],[25,4,3,21,24,[[807,1,1,21,22],[823,1,1,22,23],[826,2,1,23,24]]],[27,5,5,24,29,[[865,1,1,24,25],[866,1,1,25,26],[871,1,1,26,27],[874,2,2,27,29]]],[28,1,1,29,30,[[876,1,1,29,30]]],[34,1,1,30,31,[[903,1,1,30,31]]],[37,1,1,31,32,[[921,1,1,31,32]]]],[2808,2817,2822,2832,2833,2834,2835,2847,2849,2853,3798,3799,7124,11586,13983,14409,14410,17261,18101,18968,20173,20569,20980,21095,22148,22167,22227,22267,22282,22309,22742,23033]]],["+",[5,3,[[2,2,1,0,1,[[94,2,1,0,1]]],[25,2,1,1,2,[[826,2,1,1,2]]],[37,1,1,2,3,[[921,1,1,2,3]]]],[2849,21095,23033]]],["Destroy",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13983]]],["desolate",[6,6,[[18,2,2,0,2,[[511,2,2,0,2]]],[22,1,1,2,3,[[702,1,1,2,3]]],[25,1,1,3,4,[[807,1,1,3,4]]],[27,1,1,4,5,[[874,1,1,4,5]]],[28,1,1,5,6,[[876,1,1,5,6]]]],[14409,14410,18101,20569,22282,22309]]],["faulty",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22227]]],["guilty",[13,13,[[2,9,9,0,9,[[93,3,3,0,3],[94,5,5,3,8],[95,1,1,8,9]]],[3,1,1,9,10,[[121,1,1,9,10]]],[6,1,1,10,11,[[231,1,1,10,11]]],[19,1,1,11,12,[[657,1,1,11,12]]],[25,1,1,12,13,[[823,1,1,12,13]]]],[2808,2817,2822,2832,2833,2834,2835,2847,2853,3798,7124,17261,20980]]],["offence",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22167]]],["offend",[4,4,[[23,2,2,0,2,[[746,1,1,0,1],[794,1,1,1,2]]],[27,1,1,2,3,[[865,1,1,2,3]]],[34,1,1,3,4,[[903,1,1,3,4]]]],[18968,20173,22148,22742]]],["offended",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22267]]],["trespass",[2,1,[[13,2,1,0,1,[[385,2,1,0,1]]]],[11586]]],["trespassed",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3799]]]]},{"k":"H817","v":[["*",[46,41,[[0,1,1,0,1,[[25,1,1,0,1]]],[2,27,23,1,24,[[94,7,6,1,7],[95,3,2,7,9],[96,5,5,9,14],[103,9,8,14,22],[108,3,2,22,24]]],[3,5,4,24,28,[[121,3,2,24,26],[122,1,1,26,27],[134,1,1,27,28]]],[8,4,4,28,32,[[241,4,4,28,32]]],[11,1,1,32,33,[[324,1,1,32,33]]],[18,1,1,33,34,[[545,1,1,33,34]]],[19,1,1,34,35,[[641,1,1,34,35]]],[22,1,1,35,36,[[731,1,1,35,36]]],[23,1,1,36,37,[[795,1,1,36,37]]],[25,4,4,37,41,[[841,1,1,37,38],[843,1,1,38,39],[845,1,1,39,40],[847,1,1,40,41]]]],[702,2836,2837,2845,2846,2848,2849,2855,2866,2880,2881,2884,2886,2916,3123,3124,3125,3128,3132,3135,3136,3139,3302,3303,3799,3800,3835,4266,7334,7335,7339,7348,9866,14921,16781,18721,20217,21516,21565,21628,21675]]],["guiltiness",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[702]]],["offering",[35,32,[[2,25,22,0,22,[[94,5,5,0,5],[95,3,2,5,7],[96,5,5,7,12],[103,9,8,12,20],[108,3,2,20,22]]],[3,2,2,22,24,[[122,1,1,22,23],[134,1,1,23,24]]],[8,4,4,24,28,[[241,4,4,24,28]]],[25,4,4,28,32,[[841,1,1,28,29],[843,1,1,29,30],[845,1,1,30,31],[847,1,1,31,32]]]],[2836,2845,2846,2848,2849,2855,2866,2880,2881,2884,2886,2916,3123,3124,3125,3128,3132,3135,3136,3139,3302,3303,3835,4266,7334,7335,7339,7348,21516,21565,21628,21675]]],["sin",[3,3,[[19,1,1,0,1,[[641,1,1,0,1]]],[22,1,1,1,2,[[731,1,1,1,2]]],[23,1,1,2,3,[[795,1,1,2,3]]]],[16781,18721,20217]]],["trespass",[6,5,[[2,2,2,0,2,[[94,2,2,0,2]]],[3,3,2,2,4,[[121,3,2,2,4]]],[11,1,1,4,5,[[324,1,1,4,5]]]],[2837,2845,3799,3800,9866]]],["trespasses",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14921]]]]},{"k":"H818","v":[["*",[3,3,[[0,1,1,0,1,[[41,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]],[14,1,1,2,3,[[412,1,1,2,3]]]],[1273,8369,12271]]],["faulty",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8369]]],["guilty",[2,2,[[0,1,1,0,1,[[41,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]]],[1273,12271]]]]},{"k":"H819","v":[["*",[19,17,[[2,4,4,0,4,[[93,1,1,0,1],[95,2,2,1,3],[111,1,1,3,4]]],[12,1,1,4,5,[[358,1,1,4,5]]],[13,6,4,5,9,[[390,1,1,5,6],[394,4,2,6,8],[399,1,1,8,9]]],[14,6,6,9,15,[[411,4,4,9,13],[412,2,2,13,15]]],[18,1,1,15,16,[[546,1,1,15,16]]],[29,1,1,16,17,[[886,1,1,16,17]]]],[2798,2854,2856,3385,10937,11695,11774,11777,11931,12243,12244,12250,12252,12262,12271,14940,22495]]],["+",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11777]]],["offering",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2854]]],["sin",[2,2,[[2,1,1,0,1,[[93,1,1,0,1]]],[29,1,1,1,2,[[886,1,1,1,2]]]],[2798,22495]]],["sins",[2,2,[[13,1,1,0,1,[[394,1,1,0,1]]],[18,1,1,1,2,[[546,1,1,1,2]]]],[11774,14940]]],["trespass",[10,9,[[2,1,1,0,1,[[111,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]],[13,3,2,2,4,[[390,1,1,2,3],[394,2,1,3,4]]],[14,5,5,4,9,[[411,3,3,4,7],[412,2,2,7,9]]]],[3385,10937,11695,11777,12243,12244,12250,12262,12271]]],["trespassed",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11931]]],["trespasses",[1,1,[[14,1,1,0,1,[[411,1,1,0,1]]]],[12252]]],["trespassing",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2856]]]]},{"k":"H820","v":[["places",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18810]]]]},{"k":"H821","v":[["*",[7,7,[[1,1,1,0,1,[[63,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]],[8,1,1,2,3,[[246,1,1,2,3]]],[18,3,3,3,6,[[540,1,1,3,4],[567,1,1,4,5],[596,1,1,5,6]]],[24,1,1,6,7,[[798,1,1,6,7]]]],[1913,6713,7456,14845,15382,16046,20351]]],["watch",[4,4,[[1,1,1,0,1,[[63,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]],[8,1,1,2,3,[[246,1,1,2,3]]],[18,1,1,3,4,[[567,1,1,3,4]]]],[1913,6713,7456,15382]]],["watches",[3,3,[[18,2,2,0,2,[[540,1,1,0,1],[596,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]]],[14845,16046,20351]]]]},{"k":"H822","v":[["*",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]]],[6651,16581]]],["casement",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16581]]],["lattice",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6651]]]]},{"k":"H823","v":[["Ashnah",[2,2,[[5,2,2,0,2,[[201,2,2,0,2]]]],[6235,6245]]]]},{"k":"H824","v":[["Eshean",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6254]]]]},{"k":"H825","v":[["astrologers",[2,2,[[26,2,2,0,2,[[850,1,1,0,1],[851,1,1,1,2]]]],[21757,21760]]]]},{"k":"H826","v":[["*",[6,6,[[26,6,6,0,6,[[851,2,2,0,2],[853,1,1,2,3],[854,3,3,3,6]]]],[21768,21785,21844,21881,21885,21889]]],["astrologer",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21768]]],["astrologers",[5,5,[[26,5,5,0,5,[[851,1,1,0,1],[853,1,1,1,2],[854,3,3,2,5]]]],[21785,21844,21881,21885,21889]]]]},{"k":"H827","v":[["quiver",[6,6,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,1,1,1,2,[[604,1,1,1,2]]],[22,2,2,2,4,[[700,1,1,2,3],[727,1,1,3,4]]],[23,1,1,4,5,[[749,1,1,4,5]]],[24,1,1,5,6,[[799,1,1,5,6]]]],[13857,16126,18058,18638,19074,20367]]]]},{"k":"H828","v":[["Ashpenaz",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21740]]]]},{"k":"H829","v":[["*",[2,2,[[9,1,1,0,1,[[272,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]]],[8176,10823]]],["flesh",[1,1,[[12,1,1,0,1,[[353,1,1,0,1]]]],[10823]]],["piece",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8176]]]]},{"k":"H830","v":[["*",[7,7,[[8,1,1,0,1,[[237,1,1,0,1]]],[15,4,4,1,5,[[414,1,1,1,2],[415,2,2,2,4],[424,1,1,4,5]]],[18,1,1,5,6,[[590,1,1,5,6]]],[24,1,1,6,7,[[800,1,1,6,7]]]],[7248,12320,12340,12341,12655,15820,20425]]],["+",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[18,1,1,1,2,[[590,1,1,1,2]]]],[7248,15820]]],["dung",[4,4,[[15,4,4,0,4,[[414,1,1,0,1],[415,2,2,1,3],[424,1,1,3,4]]]],[12320,12340,12341,12655]]],["dunghills",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20425]]]]},{"k":"H831","v":[["*",[12,11,[[6,2,2,0,2,[[211,1,1,0,1],[224,1,1,1,2]]],[8,1,1,2,3,[[241,1,1,2,3]]],[9,1,1,3,4,[[267,1,1,3,4]]],[23,3,3,4,7,[[769,1,1,4,5],[791,2,2,5,7]]],[29,1,1,7,8,[[879,1,1,7,8]]],[35,2,2,8,10,[[907,2,2,8,10]]],[37,2,1,10,11,[[919,2,1,10,11]]]],[6527,6928,7348,8042,19554,20078,20080,22372,22809,22812,23004]]],["+",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22372]]],["Ashkelon",[8,7,[[6,1,1,0,1,[[224,1,1,0,1]]],[23,3,3,1,4,[[769,1,1,1,2],[791,2,2,2,4]]],[35,2,2,4,6,[[907,2,2,4,6]]],[37,2,1,6,7,[[919,2,1,6,7]]]],[6928,19554,20078,20080,22809,22812,23004]]],["Askelon",[3,3,[[6,1,1,0,1,[[211,1,1,0,1]]],[8,1,1,1,2,[[241,1,1,1,2]]],[9,1,1,2,3,[[267,1,1,2,3]]]],[6527,7348,8042]]]]},{"k":"H832","v":[["Eshkalonites",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6157]]]]},{"k":"H833","v":[["*",[16,15,[[0,1,1,0,1,[[29,1,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]],[18,2,2,2,4,[[518,1,1,2,3],[549,1,1,3,4]]],[19,5,5,4,9,[[630,1,1,4,5],[631,1,1,5,6],[636,1,1,6,7],[650,1,1,7,8],[658,1,1,8,9]]],[21,1,1,9,10,[[676,1,1,9,10]]],[22,4,3,10,13,[[679,1,1,10,11],[681,1,1,11,12],[687,2,1,12,13]]],[38,2,2,13,15,[[927,2,2,13,15]]]],[843,13543,14544,15017,16473,16504,16644,17063,17312,17623,17671,17719,17845,23132,23135]]],["+",[2,2,[[38,2,2,0,2,[[927,2,2,0,2]]]],[23132,23135]]],["blessed",[6,6,[[0,1,1,0,1,[[29,1,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]],[18,2,2,2,4,[[518,1,1,2,3],[549,1,1,3,4]]],[19,1,1,4,5,[[658,1,1,4,5]]],[21,1,1,5,6,[[676,1,1,5,6]]]],[843,13543,14544,15017,17312,17623]]],["go",[2,2,[[19,2,2,0,2,[[631,1,1,0,1],[636,1,1,1,2]]]],[16504,16644]]],["guide",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17063]]],["happy",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16473]]],["lead",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17719]]],["leaders",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17845]]],["led",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17845]]],["relieve",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17671]]]]},{"k":"H834","v":[["*",[5445,4402,[[0,406,348,0,348,[[0,9,7,0,7],[1,7,6,7,13],[2,6,6,13,19],[3,1,1,19,20],[4,2,2,20,22],[5,9,7,22,29],[6,12,10,29,39],[7,4,4,39,43],[8,10,8,43,51],[9,1,1,51,52],[10,3,3,52,55],[11,6,5,55,60],[12,7,7,60,67],[13,8,7,67,74],[14,4,4,74,78],[15,1,1,78,79],[16,5,5,79,84],[17,7,6,84,90],[18,8,8,90,98],[19,7,5,98,103],[20,13,11,103,114],[21,8,7,114,121],[22,10,5,121,126],[23,24,21,126,147],[24,7,7,147,154],[25,10,8,154,162],[26,14,14,162,176],[27,9,6,176,182],[28,3,3,182,185],[29,13,10,185,195],[30,16,11,195,206],[31,7,7,206,213],[32,9,8,213,221],[33,10,9,221,230],[34,15,11,230,241],[35,4,4,241,245],[36,5,4,245,249],[37,5,5,249,254],[38,15,11,254,265],[39,6,6,265,271],[40,15,13,271,284],[41,4,4,284,288],[42,9,8,288,296],[43,13,11,296,307],[44,7,6,307,313],[45,11,11,313,324],[46,7,7,324,331],[47,4,4,331,335],[48,8,5,335,340],[49,8,8,340,348]]],[1,303,257,348,605,[[50,5,5,348,353],[51,1,1,353,354],[52,5,5,354,359],[53,9,8,359,367],[54,6,6,367,373],[55,6,6,373,379],[56,13,10,379,389],[57,6,6,389,395],[58,10,9,395,404],[59,6,5,404,409],[60,4,4,409,413],[61,15,13,413,426],[62,4,4,426,430],[63,4,3,430,433],[64,1,1,433,434],[65,14,9,434,443],[66,4,3,443,446],[67,16,12,446,458],[68,6,6,458,464],[69,12,10,464,474],[70,6,5,474,479],[71,3,2,479,481],[72,7,7,481,488],[73,5,5,488,493],[74,10,9,493,502],[75,2,2,502,504],[76,2,2,504,506],[77,5,5,506,511],[78,16,13,511,524],[79,8,5,524,529],[80,3,3,529,532],[81,22,16,532,548],[82,9,7,548,555],[83,11,8,555,563],[84,12,10,563,573],[85,8,6,573,579],[86,2,2,579,581],[87,3,3,581,584],[88,12,11,584,595],[89,10,10,595,605]]],[2,308,251,605,856,[[90,6,4,605,609],[91,2,2,609,611],[92,11,7,611,618],[93,26,19,618,637],[94,12,12,637,649],[95,18,12,649,661],[96,15,13,661,674],[97,16,15,674,689],[98,8,8,689,697],[99,7,7,697,704],[100,21,14,704,718],[102,7,7,718,725],[103,17,16,725,741],[104,20,17,741,758],[105,15,12,758,770],[106,12,8,770,778],[107,9,7,778,785],[108,3,2,785,787],[109,20,18,787,805],[110,6,6,805,811],[111,13,8,811,819],[112,7,7,819,826],[113,3,3,826,829],[114,14,11,829,840],[115,6,5,840,845],[116,14,11,845,856]]],[3,292,254,856,1110,[[117,6,6,856,862],[118,3,3,862,865],[119,7,7,865,872],[120,12,11,872,883],[121,10,9,883,892],[122,7,5,892,897],[123,1,1,897,898],[124,5,5,898,903],[125,7,7,903,910],[126,2,2,910,912],[127,10,8,912,920],[128,5,4,920,924],[129,10,7,924,931],[130,21,19,931,950],[131,12,10,950,960],[132,12,10,960,970],[133,4,3,970,973],[134,10,9,973,982],[135,10,8,982,990],[136,8,7,990,997],[137,10,9,997,1006],[138,14,12,1006,1018],[139,5,5,1018,1023],[140,4,4,1023,1027],[141,3,3,1027,1030],[142,5,5,1030,1035],[143,12,8,1035,1043],[144,2,2,1043,1045],[145,1,1,1045,1046],[146,12,10,1046,1056],[147,16,15,1056,1071],[148,10,10,1071,1081],[149,8,7,1081,1088],[150,5,4,1088,1092],[151,18,13,1092,1105],[152,5,5,1105,1110]]],[4,582,429,1110,1539,[[153,30,22,1110,1132],[154,16,9,1132,1141],[155,16,11,1141,1152],[156,43,30,1152,1182],[157,21,14,1182,1196],[158,21,15,1196,1211],[159,12,10,1211,1221],[160,15,12,1221,1233],[161,21,16,1233,1249],[162,12,9,1249,1258],[163,32,22,1258,1280],[164,32,22,1280,1302],[165,11,9,1302,1311],[166,15,12,1311,1323],[167,11,11,1323,1334],[168,18,15,1334,1349],[169,18,11,1349,1360],[170,16,11,1360,1371],[171,17,12,1371,1383],[172,12,9,1383,1392],[173,10,9,1392,1401],[174,9,8,1401,1409],[175,10,8,1409,1417],[176,10,7,1417,1424],[177,6,6,1424,1430],[178,16,10,1430,1440],[179,10,7,1440,1447],[180,47,37,1447,1484],[181,23,15,1484,1499],[182,13,11,1499,1510],[183,18,13,1510,1523],[184,12,7,1523,1530],[185,3,3,1530,1533],[186,6,6,1533,1539]]],[5,263,193,1539,1732,[[187,20,13,1539,1552],[188,12,8,1552,1560],[189,6,4,1560,1564],[190,16,12,1564,1576],[191,9,5,1576,1581],[192,11,7,1581,1588],[193,8,6,1588,1594],[194,20,15,1594,1609],[195,12,10,1609,1619],[196,20,11,1619,1630],[197,10,9,1630,1639],[198,4,4,1639,1643],[199,19,15,1643,1658],[200,14,11,1658,1669],[201,6,4,1669,1673],[203,5,4,1673,1677],[204,8,7,1677,1684],[205,4,4,1684,1688],[206,3,2,1688,1690],[207,5,5,1690,1695],[208,17,13,1695,1708],[209,13,10,1708,1718],[210,21,14,1718,1732]]],[6,175,142,1732,1874,[[211,4,4,1732,1736],[212,15,9,1736,1745],[213,7,6,1745,1751],[214,7,7,1751,1758],[215,1,1,1758,1759],[216,17,13,1759,1772],[217,12,8,1772,1780],[218,11,10,1780,1790],[219,19,14,1790,1804],[220,5,4,1804,1808],[221,10,8,1808,1816],[223,6,5,1816,1821],[224,3,3,1821,1824],[225,6,4,1824,1828],[226,12,10,1828,1838],[227,3,3,1838,1841],[228,13,11,1841,1852],[229,5,5,1852,1857],[230,9,9,1857,1866],[231,10,8,1866,1874]]],[7,42,31,1874,1905,[[232,6,5,1874,1879],[233,15,10,1879,1889],[234,10,9,1889,1898],[235,11,7,1898,1905]]],[8,234,198,1905,2103,[[236,4,4,1905,1909],[237,11,10,1909,1919],[238,6,5,1919,1924],[239,1,1,1924,1925],[240,1,1,1925,1926],[241,9,7,1926,1933],[242,1,1,1933,1934],[243,7,7,1934,1941],[244,8,6,1941,1947],[245,8,8,1947,1955],[246,1,1,1955,1956],[247,12,10,1956,1966],[248,6,6,1966,1972],[249,19,17,1972,1989],[250,10,8,1989,1997],[251,5,4,1997,2001],[252,10,10,2001,2011],[253,3,3,2011,2014],[254,3,3,2014,2017],[255,8,8,2017,2025],[256,4,3,2025,2028],[257,5,5,2028,2033],[258,5,5,2033,2038],[259,9,7,2038,2045],[260,18,16,2045,2061],[261,11,8,2061,2069],[262,3,3,2069,2072],[263,7,6,2072,2078],[264,6,6,2078,2084],[265,30,17,2084,2101],[266,3,2,2101,2103]]],[9,187,162,2103,2265,[[267,4,3,2103,2106],[268,10,10,2106,2116],[269,11,11,2116,2127],[270,3,3,2127,2130],[271,1,1,2130,2131],[272,10,9,2131,2140],[273,16,11,2140,2151],[274,6,5,2151,2156],[275,4,4,2156,2160],[276,3,3,2160,2163],[277,4,4,2163,2167],[278,7,5,2167,2172],[279,9,8,2172,2180],[280,9,8,2180,2188],[281,15,15,2188,2203],[282,11,9,2203,2212],[283,16,12,2212,2224],[284,8,7,2224,2231],[285,11,9,2231,2240],[286,9,8,2240,2248],[287,12,9,2248,2257],[289,3,3,2257,2260],[290,5,5,2260,2265]]],[10,374,281,2265,2546,[[291,9,9,2265,2274],[292,21,13,2274,2287],[293,12,10,2287,2297],[294,11,9,2297,2306],[295,9,8,2306,2314],[296,4,3,2314,2317],[297,17,14,2317,2331],[298,57,38,2331,2369],[299,26,19,2369,2388],[300,15,13,2388,2401],[301,21,17,2401,2418],[302,21,14,2418,2432],[303,25,17,2432,2449],[304,21,15,2449,2464],[305,18,14,2464,2478],[306,23,18,2478,2496],[307,8,8,2496,2504],[308,10,9,2504,2513],[309,5,3,2513,2516],[310,9,8,2516,2524],[311,16,10,2524,2534],[312,16,12,2534,2546]]],[11,314,237,2546,2783,[[313,9,7,2546,2553],[314,7,7,2553,2560],[315,6,6,2560,2566],[316,1,1,2566,2567],[317,5,5,2567,2572],[318,8,6,2572,2578],[319,11,7,2578,2585],[320,12,9,2585,2594],[321,4,4,2594,2598],[322,20,14,2598,2612],[323,3,3,2612,2615],[324,8,7,2615,2622],[325,8,7,2622,2629],[326,15,9,2629,2638],[327,15,14,2638,2652],[328,9,9,2652,2661],[329,31,22,2661,2683],[330,17,16,2683,2699],[331,14,11,2699,2710],[332,13,9,2710,2719],[333,25,15,2719,2734],[334,10,9,2734,2743],[335,41,21,2743,2764],[336,9,8,2764,2772],[337,13,11,2772,2783]]],[12,91,83,2783,2866,[[338,2,2,2783,2785],[339,2,2,2785,2787],[340,1,1,2787,2788],[341,5,5,2788,2793],[342,2,2,2793,2795],[343,5,4,2795,2799],[344,1,1,2799,2800],[346,1,1,2800,2801],[347,4,3,2801,2804],[348,4,4,2804,2808],[349,3,3,2808,2811],[350,4,3,2811,2814],[351,2,2,2814,2816],[352,2,2,2816,2818],[353,7,7,2818,2825],[354,17,12,2825,2837],[355,5,5,2837,2842],[356,4,4,2842,2846],[357,1,1,2846,2847],[358,5,5,2847,2852],[359,3,3,2852,2855],[360,1,1,2855,2856],[361,1,1,2856,2857],[363,1,1,2857,2858],[364,2,2,2858,2860],[365,1,1,2860,2861],[366,5,5,2861,2866]]],[13,249,199,2866,3065,[[367,11,7,2866,2873],[368,14,10,2873,2883],[369,4,3,2883,2886],[370,4,4,2886,2890],[371,5,4,2890,2894],[372,37,23,2894,2917],[373,14,10,2917,2927],[374,11,8,2927,2935],[375,15,13,2935,2948],[376,12,9,2948,2957],[377,3,3,2957,2960],[378,5,5,2960,2965],[379,2,2,2965,2967],[380,1,1,2967,2968],[381,4,3,2968,2971],[382,4,3,2971,2974],[383,3,3,2974,2977],[384,7,7,2977,2984],[385,1,1,2984,2985],[386,3,3,2985,2988],[387,5,4,2988,2992],[388,3,3,2992,2995],[389,6,5,2995,3000],[390,1,1,3000,3001],[391,11,9,3001,3010],[392,2,2,3010,3012],[393,1,1,3012,3013],[394,3,3,3013,3016],[395,5,5,3016,3021],[396,5,4,3021,3025],[397,2,2,3025,3027],[398,7,6,3027,3033],[399,14,10,3033,3043],[400,15,13,3043,3056],[401,5,5,3056,3061],[402,4,4,3061,3065]]],[14,24,19,3065,3084,[[403,7,5,3065,3070],[404,5,5,3070,3075],[405,1,1,3075,3076],[406,1,1,3076,3077],[409,4,3,3077,3080],[411,3,1,3080,3081],[412,3,3,3081,3084]]],[15,94,81,3084,3165,[[413,8,7,3084,3091],[414,15,10,3091,3101],[415,1,1,3101,3102],[416,9,8,3102,3110],[417,13,13,3110,3123],[418,7,6,3123,3129],[419,5,5,3129,3134],[420,8,6,3134,3140],[421,17,15,3140,3155],[422,2,2,3155,3157],[423,1,1,3157,3158],[424,1,1,3158,3159],[425,7,6,3159,3165]]],[16,99,71,3165,3236,[[426,8,8,3165,3173],[427,12,7,3173,3180],[428,7,6,3180,3186],[429,15,9,3186,3195],[430,7,6,3195,3201],[431,16,10,3201,3211],[432,5,4,3211,3215],[433,12,9,3215,3224],[434,16,11,3224,3235],[435,1,1,3235,3236]]],[17,40,40,3236,3276,[[436,3,3,3236,3239],[437,1,1,3239,3240],[438,2,2,3240,3242],[439,2,2,3242,3244],[440,1,1,3244,3245],[441,1,1,3245,3246],[443,1,1,3246,3247],[444,3,3,3247,3250],[445,1,1,3250,3251],[447,2,2,3251,3253],[450,2,2,3253,3255],[454,1,1,3255,3256],[457,2,2,3256,3258],[462,1,1,3258,3259],[464,2,2,3259,3261],[465,1,1,3261,3262],[467,1,1,3262,3263],[469,2,2,3263,3265],[471,2,2,3265,3267],[472,2,2,3267,3269],[473,1,1,3269,3270],[474,2,2,3270,3272],[475,1,1,3272,3273],[477,3,3,3273,3276]]],[18,96,93,3276,3369,[[478,4,3,3276,3279],[480,1,1,3279,3280],[485,2,2,3280,3282],[487,1,1,3282,3283],[489,1,1,3283,3284],[493,2,2,3284,3286],[501,1,1,3286,3287],[503,1,1,3287,3288],[508,2,2,3288,3290],[510,2,2,3290,3292],[512,2,2,3292,3294],[515,1,1,3294,3295],[517,1,1,3295,3296],[518,2,2,3296,3298],[523,1,1,3298,3299],[524,1,1,3299,3300],[525,1,1,3300,3301],[532,1,1,3301,3302],[533,1,1,3302,3303],[535,1,1,3303,3304],[541,1,1,3304,3305],[543,3,3,3305,3308],[546,2,2,3308,3310],[548,3,3,3310,3313],[555,7,7,3313,3320],[556,3,2,3320,3322],[557,1,1,3322,3323],[560,1,1,3323,3324],[561,1,1,3324,3325],[563,1,1,3325,3326],[565,1,1,3326,3327],[566,3,2,3327,3329],[571,1,1,3329,3330],[572,2,2,3330,3332],[573,1,1,3332,3333],[581,2,2,3333,3335],[582,3,3,3335,3338],[583,2,2,3338,3340],[584,1,1,3340,3341],[586,2,2,3341,3343],[589,1,1,3343,3344],[592,2,2,3344,3346],[596,8,8,3346,3354],[604,1,1,3354,3355],[609,1,1,3355,3356],[612,2,2,3356,3358],[616,2,2,3358,3360],[617,2,2,3360,3362],[621,3,3,3362,3365],[622,1,1,3365,3366],[623,1,1,3366,3367],[624,1,1,3367,3368],[625,1,1,3368,3369]]],[19,12,12,3369,3381,[[629,1,1,3369,3370],[630,1,1,3370,3371],[633,1,1,3371,3372],[644,1,1,3372,3373],[648,1,1,3373,3374],[649,1,1,3374,3375],[650,1,1,3375,3376],[651,1,1,3376,3377],[652,3,3,3377,3380],[658,1,1,3380,3381]]],[20,88,65,3381,3446,[[659,3,3,3381,3384],[660,4,3,3384,3387],[661,7,6,3387,3393],[662,9,7,3393,3400],[663,8,6,3400,3406],[664,5,4,3406,3410],[665,11,10,3410,3420],[666,20,12,3420,3432],[667,12,7,3432,3439],[668,2,2,3439,3441],[669,2,1,3441,3442],[670,5,4,3442,3446]]],[21,1,1,3446,3447,[[671,1,1,3446,3447]]],[22,169,144,3447,3591,[[679,4,3,3447,3450],[680,4,4,3450,3454],[683,2,2,3454,3456],[684,2,2,3456,3458],[685,5,4,3458,3462],[686,3,3,3462,3465],[687,2,2,3465,3467],[688,2,2,3467,3469],[689,4,3,3469,3472],[691,2,2,3472,3474],[692,3,2,3474,3476],[694,1,1,3476,3477],[695,2,2,3477,3479],[696,3,3,3479,3482],[697,5,4,3482,3486],[698,2,2,3486,3488],[699,2,2,3488,3490],[700,2,2,3490,3492],[701,2,2,3492,3494],[702,1,1,3494,3495],[703,1,1,3495,3496],[704,1,1,3496,3497],[705,1,1,3497,3498],[706,5,4,3498,3502],[707,5,4,3502,3506],[708,5,5,3506,3511],[709,5,4,3511,3515],[711,1,1,3515,3516],[714,7,7,3516,3523],[715,14,11,3523,3534],[716,5,3,3534,3537],[717,9,5,3537,3542],[719,3,3,3542,3545],[721,2,2,3545,3547],[723,1,1,3547,3548],[724,1,1,3548,3549],[725,3,3,3549,3552],[727,4,4,3552,3556],[728,3,2,3556,3558],[729,3,3,3558,3561],[730,3,2,3561,3563],[731,1,1,3563,3564],[732,1,1,3564,3565],[733,5,3,3565,3568],[734,3,2,3568,3570],[736,2,2,3570,3572],[737,2,1,3572,3573],[738,1,1,3573,3574],[740,2,2,3574,3576],[741,2,1,3576,3577],[742,1,1,3577,3578],[743,7,7,3578,3585],[744,7,6,3585,3591]]],[23,459,362,3591,3953,[[745,6,5,3591,3596],[746,3,3,3596,3599],[747,3,3,3599,3602],[749,5,5,3602,3607],[750,1,1,3607,3608],[751,19,13,3608,3621],[752,7,3,3621,3624],[753,4,4,3624,3628],[754,3,2,3628,3630],[755,11,9,3630,3639],[756,2,2,3639,3641],[757,8,7,3641,3648],[758,2,2,3648,3650],[759,5,2,3650,3652],[760,8,5,3652,3657],[761,7,5,3657,3662],[762,6,4,3662,3666],[763,12,9,3666,3675],[764,8,6,3675,3681],[765,3,2,3681,3683],[766,8,7,3683,3690],[767,14,10,3690,3700],[768,6,6,3700,3706],[769,13,12,3706,3718],[770,9,9,3718,3727],[771,9,6,3727,3733],[772,7,6,3733,3739],[773,24,17,3739,3756],[774,6,6,3756,3762],[775,5,4,3762,3766],[776,24,21,3766,3787],[777,13,8,3787,3795],[778,12,9,3795,3804],[779,12,10,3804,3814],[780,15,13,3814,3827],[781,3,3,3827,3830],[782,14,11,3830,3841],[783,5,5,3841,3846],[784,12,9,3846,3855],[785,21,12,3855,3867],[786,20,16,3867,3883],[787,11,8,3883,3891],[788,22,19,3891,3910],[789,4,3,3910,3913],[790,5,4,3913,3917],[791,1,1,3917,3918],[792,2,2,3918,3920],[793,7,6,3920,3926],[794,11,10,3926,3936],[795,6,6,3936,3942],[796,15,11,3942,3953]]],[24,9,7,3953,3960,[[797,5,4,3953,3957],[798,3,2,3957,3959],[800,1,1,3959,3960]]],[25,340,274,3960,4234,[[802,6,6,3960,3966],[803,4,3,3966,3969],[804,6,6,3969,3975],[805,4,4,3975,3979],[806,9,6,3979,3985],[807,6,3,3985,3988],[808,2,1,3988,3989],[809,8,8,3989,3997],[810,7,4,3997,4001],[811,7,7,4001,4008],[812,9,8,4008,4016],[813,11,10,4016,4026],[814,7,5,4026,4031],[815,6,5,4031,4036],[816,3,2,4036,4038],[817,19,15,4038,4053],[818,6,4,4053,4057],[819,13,9,4057,4066],[821,20,17,4066,4083],[822,5,5,4083,4088],[823,5,3,4088,4091],[824,12,10,4091,4101],[825,5,5,4101,4106],[827,6,5,4106,4111],[828,2,1,4111,4112],[829,2,1,4112,4113],[830,5,4,4113,4117],[832,3,3,4117,4120],[833,8,6,4120,4126],[834,6,4,4126,4130],[835,3,3,4130,4133],[836,4,3,4133,4136],[837,16,13,4136,4149],[838,9,8,4149,4157],[839,4,4,4157,4161],[840,9,8,4161,4169],[841,12,11,4169,4180],[842,8,6,4180,4186],[843,14,9,4186,4195],[844,10,8,4195,4203],[845,11,10,4203,4213],[846,1,1,4213,4214],[847,9,8,4214,4222],[848,11,7,4222,4229],[849,7,5,4229,4234]]],[26,47,38,4234,4272,[[850,12,7,4234,4241],[857,6,6,4241,4247],[858,17,13,4247,4260],[859,5,5,4260,4265],[860,4,4,4265,4269],[861,3,3,4269,4272]]],[27,12,10,4272,4282,[[862,3,2,4272,4274],[863,3,2,4274,4276],[866,1,1,4276,4277],[868,1,1,4277,4278],[870,1,1,4278,4279],[873,1,1,4279,4280],[874,1,1,4280,4281],[875,1,1,4281,4282]]],[28,12,9,4282,4291,[[876,1,1,4282,4283],[877,6,3,4283,4286],[878,5,5,4286,4291]]],[29,18,16,4291,4307,[[879,2,1,4291,4292],[880,3,3,4292,4295],[881,3,2,4295,4297],[882,2,2,4297,4299],[883,4,4,4299,4303],[884,1,1,4303,4304],[887,3,3,4304,4307]]],[30,4,3,4307,4310,[[888,4,3,4307,4310]]],[31,11,10,4310,4320,[[889,4,4,4310,4314],[890,1,1,4314,4315],[891,3,3,4315,4318],[892,3,2,4318,4320]]],[32,15,13,4320,4333,[[893,2,1,4320,4321],[894,1,1,4321,4322],[895,4,3,4322,4325],[896,1,1,4325,4326],[897,3,3,4326,4329],[898,3,3,4329,4332],[899,1,1,4332,4333]]],[33,2,2,4333,4335,[[901,1,1,4333,4334],[902,1,1,4334,4335]]],[34,3,3,4335,4338,[[903,1,1,4335,4336],[904,1,1,4336,4337],[905,1,1,4337,4338]]],[35,6,6,4338,4344,[[906,2,2,4338,4340],[907,2,2,4340,4342],[908,2,2,4342,4344]]],[36,7,7,4344,4351,[[909,3,3,4344,4347],[910,4,4,4347,4351]]],[37,44,40,4351,4391,[[911,9,8,4351,4359],[913,1,1,4359,4360],[914,3,3,4360,4363],[916,2,2,4363,4365],[917,6,5,4365,4370],[918,7,7,4370,4377],[920,1,1,4377,4378],[921,4,4,4378,4382],[922,1,1,4382,4383],[923,1,1,4383,4384],[924,9,7,4384,4391]]],[38,13,11,4391,4402,[[925,1,1,4391,4392],[926,4,4,4392,4396],[927,5,3,4396,4399],[928,3,3,4399,4402]]]],[6,10,11,20,28,29,30,32,33,38,41,49,52,56,58,66,67,72,78,90,110,134,139,141,144,152,154,158,159,161,163,164,167,168,174,175,178,181,182,184,189,200,204,207,208,215,217,220,221,222,229,248,271,272,273,299,302,303,309,318,319,321,322,332,333,334,336,341,342,351,353,356,359,360,364,367,374,377,396,407,409,411,418,420,429,432,441,443,448,457,462,465,468,469,476,478,484,486,498,502,504,508,511,514,515,516,517,522,525,530,535,536,538,542,549,550,556,561,563,564,565,580,582,587,588,591,593,594,596,598,605,606,613,615,618,623,627,628,631,633,635,638,639,642,643,645,657,663,664,665,667,668,670,676,693,694,695,697,707,710,721,724,731,735,736,737,741,742,744,746,754,757,767,768,771,772,777,786,788,791,793,795,803,805,822,832,848,855,856,859,860,863,865,867,868,874,885,886,889,891,892,894,905,916,922,924,930,935,938,940,951,959,960,965,968,969,971,974,975,978,979,981,991,992,993,994,1002,1007,1008,1009,1013,1014,1015,1016,1017,1023,1024,1025,1026,1037,1038,1045,1046,1064,1071,1089,1093,1105,1106,1129,1133,1137,1144,1149,1150,1152,1154,1155,1157,1158,1166,1168,1169,1171,1172,1175,1177,1179,1185,1186,1194,1208,1216,1220,1223,1231,1233,1238,1243,1245,1248,1249,1250,1251,1261,1266,1273,1290,1292,1304,1306,1307,1309,1316,1317,1319,1325,1326,1328,1329,1332,1333,1334,1339,1340,1341,1358,1362,1364,1368,1369,1371,1385,1387,1391,1392,1401,1404,1406,1408,1411,1413,1417,1418,1421,1424,1426,1431,1434,1442,1444,1457,1460,1466,1473,1474,1501,1502,1503,1505,1511,1512,1516,1517,1518,1519,1521,1530,1540,1544,1546,1547,1549,1568,1584,1586,1588,1593,1599,1610,1613,1616,1618,1619,1622,1629,1631,1634,1640,1643,1645,1646,1653,1656,1659,1660,1663,1681,1684,1687,1691,1695,1698,1700,1702,1703,1705,1706,1707,1722,1725,1729,1731,1732,1737,1745,1754,1760,1761,1763,1766,1767,1768,1777,1779,1783,1787,1789,1792,1811,1812,1813,1814,1823,1829,1832,1838,1841,1843,1844,1845,1846,1848,1855,1856,1866,1870,1872,1878,1879,1901,1902,1920,1946,1948,1952,1955,1962,1963,1970,1971,1979,1981,1988,1993,1994,2000,2002,2004,2007,2008,2009,2010,2013,2016,2017,2019,2023,2030,2032,2033,2034,2042,2044,2053,2055,2058,2061,2062,2063,2068,2072,2075,2077,2078,2085,2090,2099,2107,2122,2129,2157,2159,2160,2164,2166,2171,2174,2180,2184,2185,2189,2191,2197,2198,2204,2211,2216,2217,2221,2224,2235,2240,2265,2280,2293,2296,2297,2301,2319,2331,2337,2349,2357,2358,2359,2363,2366,2368,2369,2371,2374,2378,2382,2388,2415,2418,2419,2420,2426,2427,2431,2439,2440,2441,2442,2445,2446,2449,2451,2452,2457,2458,2461,2470,2471,2472,2473,2474,2480,2484,2485,2489,2490,2492,2497,2500,2506,2507,2508,2514,2528,2530,2532,2535,2541,2547,2552,2553,2554,2555,2557,2560,2567,2568,2569,2570,2571,2578,2617,2620,2641,2654,2655,2665,2669,2671,2683,2685,2693,2695,2696,2703,2706,2707,2716,2722,2723,2726,2728,2730,2732,2734,2736,2739,2750,2753,2757,2762,2770,2773,2781,2782,2783,2787,2788,2792,2793,2797,2798,2802,2803,2804,2805,2808,2809,2813,2815,2816,2817,2818,2819,2822,2823,2826,2828,2830,2833,2834,2835,2836,2837,2838,2840,2841,2843,2846,2847,2848,2852,2853,2854,2856,2859,2864,2867,2869,2874,2876,2877,2879,2881,2883,2886,2887,2888,2890,2898,2899,2900,2904,2906,2915,2917,2921,2922,2926,2927,2930,2933,2934,2938,2942,2943,2946,2947,2948,2951,2953,2958,2959,2960,2961,2963,2968,2971,2974,2978,2980,2982,2983,2988,2992,2995,2999,3006,3007,3009,3018,3020,3023,3029,3030,3031,3032,3034,3036,3044,3097,3098,3103,3104,3106,3109,3110,3124,3127,3128,3129,3133,3138,3139,3140,3141,3142,3143,3145,3146,3147,3151,3152,3172,3173,3174,3177,3178,3179,3180,3185,3186,3188,3190,3191,3192,3194,3199,3200,3201,3203,3207,3210,3211,3212,3214,3216,3219,3224,3228,3233,3235,3237,3238,3240,3242,3243,3245,3248,3250,3254,3256,3275,3278,3279,3280,3281,3303,3317,3320,3324,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3338,3339,3340,3341,3342,3343,3348,3355,3362,3363,3364,3366,3371,3372,3373,3374,3375,3384,3387,3389,3404,3406,3412,3431,3432,3439,3440,3465,3466,3469,3471,3476,3496,3499,3500,3502,3507,3511,3513,3514,3524,3537,3559,3564,3569,3570,3578,3579,3581,3584,3592,3594,3596,3598,3599,3602,3604,3609,3621,3623,3648,3654,3658,3675,3691,3692,3695,3708,3718,3723,3731,3734,3743,3752,3755,3757,3759,3768,3769,3780,3784,3788,3789,3792,3795,3796,3799,3800,3801,3802,3809,3821,3822,3827,3828,3834,3841,3844,3939,3942,3943,3959,3961,3963,3970,3971,3978,3982,3983,3985,3986,4017,4020,4028,4029,4036,4040,4041,4044,4045,4049,4060,4062,4070,4071,4077,4091,4094,4099,4102,4106,4107,4115,4116,4119,4122,4123,4124,4125,4127,4130,4131,4132,4135,4136,4137,4138,4139,4142,4144,4148,4155,4165,4167,4171,4175,4176,4183,4189,4192,4194,4199,4201,4224,4225,4226,4227,4228,4233,4234,4241,4248,4249,4255,4266,4269,4270,4272,4276,4278,4281,4283,4285,4291,4302,4303,4304,4305,4307,4309,4311,4320,4323,4324,4325,4328,4335,4338,4351,4353,4355,4356,4360,4362,4370,4372,4374,4377,4380,4381,4383,4392,4395,4401,4405,4410,4411,4413,4415,4418,4428,4429,4442,4446,4450,4458,4459,4460,4484,4485,4489,4493,4498,4548,4552,4553,4565,4566,4567,4568,4571,4572,4576,4577,4580,4600,4648,4649,4652,4653,4654,4655,4656,4657,4659,4662,4664,4671,4676,4682,4685,4687,4695,4696,4699,4705,4706,4711,4712,4713,4714,4716,4722,4725,4727,4729,4735,4743,4745,4749,4756,4757,4761,4764,4766,4767,4814,4815,4816,4818,4829,4833,4845,4849,4851,4852,4853,4858,4862,4863,4868,4870,4871,4876,4878,4879,4882,4883,4885,4889,4892,4893,4895,4896,4900,4903,4906,4909,4910,4911,4912,4913,4914,4917,4922,4923,4925,4927,4928,4931,4933,4936,4938,4939,4950,4952,4954,4960,4963,4967,4973,4974,4977,4979,4981,4983,4987,4994,4995,4996,4999,5000,5003,5005,5006,5007,5009,5010,5011,5012,5013,5014,5017,5018,5021,5022,5023,5025,5027,5030,5031,5032,5035,5036,5037,5038,5044,5046,5048,5049,5050,5051,5052,5054,5059,5061,5064,5065,5067,5069,5074,5079,5080,5081,5084,5085,5086,5087,5088,5089,5092,5096,5097,5098,5100,5102,5103,5104,5105,5106,5109,5111,5112,5117,5119,5122,5123,5124,5126,5127,5129,5130,5138,5139,5140,5142,5146,5147,5148,5150,5152,5153,5155,5157,5159,5160,5162,5164,5166,5167,5169,5173,5175,5176,5178,5180,5182,5183,5185,5186,5188,5190,5191,5195,5197,5199,5200,5203,5207,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5225,5229,5230,5232,5233,5235,5236,5237,5239,5240,5241,5242,5245,5247,5248,5249,5250,5251,5252,5253,5254,5255,5257,5258,5260,5261,5262,5266,5268,5269,5271,5272,5274,5277,5278,5279,5284,5285,5287,5289,5290,5292,5294,5299,5300,5302,5311,5313,5314,5315,5316,5317,5319,5321,5322,5323,5324,5325,5326,5327,5333,5337,5338,5339,5344,5346,5347,5348,5349,5352,5353,5356,5357,5358,5359,5360,5362,5363,5364,5365,5366,5367,5369,5372,5373,5374,5375,5376,5378,5379,5386,5390,5393,5398,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5414,5415,5416,5420,5421,5423,5425,5432,5433,5434,5441,5442,5443,5444,5445,5447,5448,5449,5450,5451,5455,5461,5463,5464,5470,5473,5479,5482,5494,5495,5496,5498,5499,5504,5508,5510,5515,5516,5519,5520,5523,5528,5529,5530,5533,5534,5536,5539,5553,5556,5562,5564,5565,5566,5567,5568,5569,5576,5577,5579,5580,5581,5584,5585,5586,5587,5588,5589,5595,5600,5611,5612,5619,5620,5622,5624,5625,5626,5631,5632,5634,5638,5640,5644,5645,5646,5647,5648,5654,5656,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5671,5672,5673,5674,5675,5678,5679,5680,5681,5682,5688,5690,5691,5692,5694,5695,5696,5697,5701,5702,5704,5705,5709,5710,5711,5713,5715,5716,5717,5719,5724,5726,5728,5731,5732,5733,5735,5739,5740,5741,5744,5746,5748,5749,5751,5757,5796,5804,5805,5807,5808,5809,5810,5811,5818,5839,5840,5843,5848,5849,5850,5851,5853,5854,5856,5857,5858,5860,5862,5864,5865,5866,5867,5868,5869,5872,5876,5879,5882,5886,5887,5888,5889,5897,5900,5909,5910,5911,5913,5914,5917,5918,5920,5921,5922,5924,5930,5931,5933,5935,5938,5940,5942,5949,5966,5970,5971,5972,5973,5974,5975,5978,5984,5987,5990,5991,6000,6004,6007,6008,6013,6015,6018,6019,6020,6026,6028,6029,6033,6034,6035,6037,6038,6040,6046,6047,6050,6053,6057,6058,6061,6064,6065,6075,6089,6091,6092,6094,6096,6099,6101,6103,6104,6109,6111,6116,6118,6119,6122,6126,6127,6130,6131,6132,6137,6139,6157,6158,6160,6162,6163,6164,6166,6168,6170,6171,6175,6179,6184,6186,6187,6188,6189,6192,6193,6194,6195,6196,6197,6198,6199,6201,6209,6210,6218,6248,6280,6282,6289,6291,6295,6296,6300,6306,6307,6309,6310,6329,6332,6371,6372,6374,6378,6389,6390,6424,6425,6426,6428,6430,6431,6435,6436,6442,6443,6445,6454,6455,6456,6457,6459,6461,6463,6464,6465,6468,6470,6473,6474,6475,6476,6481,6483,6489,6490,6491,6493,6496,6499,6502,6503,6506,6507,6508,6509,6516,6521,6525,6529,6546,6552,6555,6557,6560,6562,6565,6566,6567,6569,6570,6572,6586,6587,6588,6601,6608,6610,6612,6613,6621,6623,6650,6656,6664,6665,6667,6675,6679,6680,6681,6682,6684,6685,6690,6691,6695,6696,6698,6699,6705,6711,6712,6713,6723,6724,6727,6734,6737,6740,6745,6750,6752,6754,6760,6763,6771,6778,6779,6786,6787,6788,6789,6792,6798,6799,6802,6810,6815,6819,6825,6829,6834,6836,6853,6855,6857,6860,6865,6868,6892,6894,6895,6897,6898,6915,6926,6929,6939,6940,6943,6948,6952,6956,6957,6958,6960,6971,6973,6975,6978,6979,6982,6988,6989,6998,6999,7000,7003,7009,7015,7017,7020,7021,7022,7024,7036,7038,7046,7047,7050,7058,7063,7064,7066,7067,7076,7085,7090,7096,7107,7110,7113,7114,7115,7116,7121,7125,7134,7135,7140,7143,7144,7151,7152,7158,7160,7161,7166,7167,7168,7169,7170,7173,7174,7176,7177,7178,7183,7187,7188,7190,7191,7193,7199,7201,7202,7204,7205,7229,7236,7239,7240,7254,7256,7260,7262,7263,7264,7269,7272,7274,7275,7279,7287,7288,7289,7293,7306,7331,7335,7337,7338,7339,7346,7348,7349,7366,7370,7375,7376,7377,7378,7380,7387,7396,7397,7401,7408,7410,7414,7420,7423,7425,7426,7434,7437,7442,7444,7452,7461,7466,7467,7468,7473,7474,7476,7477,7481,7484,7488,7490,7493,7498,7499,7507,7509,7510,7512,7515,7519,7522,7525,7527,7528,7529,7532,7535,7536,7538,7551,7553,7555,7562,7563,7567,7574,7575,7576,7580,7593,7598,7599,7602,7614,7619,7631,7638,7643,7644,7645,7649,7655,7658,7663,7680,7681,7691,7709,7724,7728,7743,7749,7753,7761,7766,7767,7770,7772,7774,7779,7781,7789,7790,7793,7798,7810,7821,7823,7829,7832,7833,7840,7843,7844,7849,7852,7857,7858,7867,7868,7869,7872,7882,7883,7886,7887,7888,7891,7893,7894,7895,7896,7900,7905,7908,7910,7916,7921,7925,7926,7928,7929,7932,7937,7938,7944,7950,7951,7959,7960,7963,7968,7970,7971,7972,7975,7977,7980,7982,7987,7988,7992,7994,7995,7996,7997,7999,8000,8001,8005,8006,8007,8008,8009,8016,8020,8026,8032,8033,8052,8053,8054,8055,8060,8065,8067,8072,8073,8081,8089,8090,8095,8100,8101,8102,8104,8106,8111,8112,8117,8128,8129,8130,8157,8159,8160,8161,8165,8169,8174,8177,8178,8179,8183,8187,8189,8190,8191,8192,8194,8195,8202,8203,8205,8215,8216,8219,8220,8223,8228,8235,8236,8238,8242,8253,8256,8275,8279,8281,8286,8289,8292,8301,8307,8317,8322,8327,8332,8333,8336,8339,8340,8346,8363,8370,8371,8374,8375,8376,8378,8382,8391,8393,8395,8396,8403,8404,8407,8409,8410,8411,8415,8419,8421,8424,8425,8430,8434,8437,8440,8442,8444,8445,8447,8449,8451,8452,8456,8458,8459,8460,8461,8462,8465,8471,8474,8478,8479,8482,8487,8496,8499,8506,8510,8514,8518,8521,8527,8530,8541,8546,8548,8549,8557,8559,8562,8564,8565,8566,8567,8569,8581,8585,8587,8588,8591,8592,8594,8596,8598,8661,8668,8669,8694,8697,8702,8711,8716,8725,8726,8746,8747,8754,8758,8762,8765,8766,8773,8774,8775,8779,8781,8794,8796,8797,8801,8802,8808,8813,8814,8822,8824,8827,8828,8829,8830,8835,8837,8842,8844,8846,8856,8857,8863,8864,8872,8873,8877,8878,8881,8883,8884,8885,8886,8887,8890,8894,8898,8908,8918,8937,8941,8942,8951,8952,8953,8954,8963,8974,8975,8976,8979,8982,8985,8989,8990,8994,9000,9001,9003,9005,9006,9009,9010,9011,9012,9013,9014,9015,9016,9018,9019,9021,9023,9024,9025,9026,9028,9029,9031,9032,9033,9035,9036,9038,9041,9042,9043,9044,9048,9049,9051,9052,9053,9054,9055,9056,9057,9058,9060,9061,9063,9064,9066,9070,9071,9072,9074,9075,9076,9077,9081,9082,9083,9084,9085,9086,9088,9089,9090,9092,9093,9103,9106,9110,9115,9118,9119,9121,9131,9133,9135,9138,9140,9141,9142,9144,9145,9146,9149,9150,9153,9155,9157,9159,9160,9161,9163,9164,9166,9169,9179,9182,9183,9184,9187,9188,9189,9193,9194,9195,9196,9198,9201,9204,9205,9206,9207,9209,9210,9215,9216,9225,9226,9227,9228,9232,9233,9234,9236,9237,9238,9239,9240,9242,9244,9247,9252,9254,9256,9261,9262,9269,9271,9272,9275,9276,9278,9279,9280,9283,9285,9288,9290,9295,9296,9297,9298,9302,9303,9305,9307,9308,9309,9310,9313,9315,9316,9317,9318,9320,9322,9326,9333,9334,9336,9337,9344,9351,9353,9354,9356,9365,9367,9372,9379,9388,9390,9405,9412,9417,9418,9427,9430,9436,9442,9444,9452,9455,9459,9462,9466,9469,9470,9473,9476,9477,9493,9494,9496,9497,9505,9511,9518,9519,9525,9526,9532,9533,9535,9537,9539,9540,9549,9550,9551,9554,9556,9564,9565,9566,9570,9573,9578,9579,9585,9587,9590,9603,9620,9650,9651,9663,9667,9673,9675,9684,9686,9690,9693,9696,9709,9714,9717,9719,9720,9722,9724,9728,9731,9732,9733,9739,9745,9746,9750,9756,9771,9783,9792,9793,9798,9803,9808,9810,9812,9814,9815,9817,9822,9823,9824,9826,9827,9829,9834,9838,9839,9852,9854,9855,9862,9865,9868,9869,9873,9877,9879,9882,9883,9885,9896,9899,9901,9902,9905,9907,9911,9920,9921,9924,9928,9931,9934,9937,9940,9941,9943,9946,9949,9951,9953,9956,9959,9961,9966,9973,9974,9976,9977,9979,9980,9981,9982,9985,9991,9992,9994,9995,9996,9997,9998,10002,10003,10005,10006,10009,10010,10011,10012,10016,10017,10019,10020,10021,10024,10027,10028,10029,10030,10031,10036,10038,10040,10041,10042,10043,10045,10046,10050,10059,10061,10063,10065,10067,10071,10072,10073,10077,10081,10082,10089,10094,10101,10107,10109,10111,10113,10115,10116,10117,10118,10121,10122,10123,10126,10127,10128,10130,10131,10132,10134,10135,10136,10139,10140,10144,10149,10150,10158,10160,10161,10162,10163,10164,10165,10170,10172,10173,10175,10176,10177,10178,10180,10181,10182,10183,10184,10185,10187,10189,10190,10191,10192,10193,10197,10202,10204,10205,10206,10207,10209,10211,10215,10221,10226,10232,10233,10235,10236,10237,10238,10241,10244,10247,10250,10264,10295,10313,10315,10362,10395,10403,10407,10418,10426,10434,10453,10464,10485,10503,10519,10549,10617,10666,10670,10672,10683,10684,10690,10691,10735,10740,10751,10766,10770,10774,10778,10790,10794,10806,10821,10832,10836,10852,10859,10860,10861,10864,10865,10868,10869,10871,10872,10873,10874,10876,10883,10884,10886,10896,10897,10900,10901,10903,10912,10916,10921,10923,10929,10942,10951,10953,10958,10963,10966,10975,10977,10988,11034,11103,11137,11140,11155,11180,11183,11189,11191,11194,11197,11199,11200,11205,11206,11207,11209,11214,11216,11217,11218,11219,11220,11223,11225,11226,11228,11230,11233,11244,11257,11258,11259,11265,11269,11273,11274,11278,11286,11287,11290,11292,11293,11297,11298,11299,11300,11301,11302,11303,11307,11309,11311,11313,11314,11315,11316,11318,11319,11320,11321,11330,11331,11334,11338,11341,11342,11343,11344,11345,11346,11347,11348,11350,11352,11353,11354,11357,11358,11365,11366,11367,11368,11369,11370,11372,11373,11374,11376,11377,11387,11391,11397,11399,11401,11403,11404,11405,11407,11410,11413,11424,11427,11429,11440,11441,11442,11446,11450,11457,11461,11488,11498,11503,11506,11513,11515,11523,11525,11533,11542,11544,11554,11555,11557,11558,11566,11572,11586,11597,11598,11621,11630,11631,11636,11640,11650,11651,11653,11659,11660,11664,11665,11674,11699,11707,11708,11713,11714,11717,11719,11722,11725,11731,11736,11755,11757,11767,11775,11779,11793,11799,11807,11810,11823,11834,11835,11841,11844,11873,11875,11878,11882,11884,11889,11893,11906,11910,11911,11912,11915,11916,11917,11919,11923,11927,11930,11937,11942,11943,11944,11949,11954,11955,11956,11957,11958,11959,11961,11966,11969,11984,11986,11987,11990,12001,12006,12007,12016,12018,12019,12020,12021,12023,12028,12029,12088,12090,12095,12109,12113,12179,12184,12200,12248,12260,12266,12270,12298,12299,12302,12303,12304,12305,12306,12310,12312,12314,12315,12317,12319,12320,12324,12325,12326,12352,12360,12362,12366,12370,12371,12374,12379,12382,12384,12385,12386,12388,12391,12393,12394,12395,12396,12397,12399,12400,12401,12402,12404,12409,12412,12415,12417,12421,12426,12483,12485,12492,12494,12496,12497,12505,12507,12508,12517,12518,12523,12526,12528,12529,12530,12534,12537,12540,12543,12545,12546,12547,12548,12578,12579,12591,12625,12672,12678,12685,12688,12690,12693,12704,12711,12714,12717,12718,12720,12721,12722,12725,12728,12730,12734,12737,12739,12744,12748,12749,12750,12751,12753,12759,12763,12765,12767,12768,12769,12770,12773,12778,12779,12781,12783,12784,12787,12790,12791,12795,12797,12799,12800,12801,12802,12803,12804,12806,12807,12812,12815,12816,12817,12819,12820,12822,12823,12824,12825,12826,12828,12834,12835,12837,12847,12849,12850,12852,12854,12856,12857,12859,12865,12868,12879,12880,12881,12895,12927,12929,12938,12949,12956,12982,13043,13056,13066,13068,13105,13134,13138,13221,13231,13324,13404,13405,13492,13536,13557,13558,13631,13702,13710,13760,13764,13781,13786,13816,13840,13864,13879,13931,13932,13933,13940,13942,13943,13963,14013,14015,14047,14070,14095,14099,14245,14283,14338,14350,14378,14388,14418,14421,14504,14529,14550,14551,14622,14629,14642,14751,14761,14784,14853,14887,14889,14893,14939,14961,14995,14996,14999,15116,15117,15118,15124,15155,15156,15181,15191,15197,15213,15253,15262,15293,15313,15347,15377,15443,15463,15465,15477,15587,15588,15611,15615,15632,15685,15689,15701,15766,15771,15811,15833,15838,15936,15937,15945,15946,15947,15961,15983,16056,16126,16153,16181,16193,16254,16259,16265,16267,16313,16316,16317,16338,16347,16360,16375,16448,16467,16547,16881,16985,17043,17045,17108,17114,17120,17141,17285,17325,17328,17331,17336,17343,17345,17368,17369,17370,17373,17374,17381,17382,17383,17384,17390,17394,17396,17397,17398,17401,17402,17412,17415,17416,17418,17419,17427,17429,17431,17442,17447,17448,17449,17450,17451,17455,17457,17458,17461,17462,17465,17467,17468,17469,17470,17471,17472,17473,17474,17475,17476,17477,17478,17479,17481,17484,17485,17507,17508,17518,17524,17525,17529,17530,17538,17655,17683,17684,17686,17693,17705,17707,17744,17767,17780,17782,17798,17799,17800,17807,17819,17825,17827,17830,17832,17860,17861,17894,17895,17900,17907,17923,17931,17952,17982,17991,17992,17998,17999,18004,18019,18020,18021,18029,18032,18035,18041,18045,18067,18077,18082,18085,18097,18129,18139,18152,18165,18168,18176,18178,18201,18204,18205,18215,18227,18230,18240,18241,18249,18254,18256,18257,18259,18292,18333,18334,18336,18337,18341,18350,18352,18354,18356,18358,18362,18363,18364,18369,18373,18374,18381,18386,18393,18397,18398,18414,18416,18418,18419,18420,18459,18460,18473,18509,18515,18562,18596,18611,18612,18614,18639,18643,18645,18659,18663,18672,18686,18690,18696,18710,18711,18723,18732,18741,18750,18751,18757,18758,18788,18797,18821,18833,18856,18862,18873,18896,18904,18905,18907,18909,18913,18915,18917,18923,18926,18935,18941,18942,18944,18947,18948,18953,18962,18963,18978,18993,19001,19008,19010,19020,19067,19075,19077,19080,19087,19107,19120,19126,19128,19129,19130,19131,19133,19134,19142,19144,19147,19149,19150,19155,19156,19170,19184,19188,19189,19191,19202,19226,19227,19229,19230,19231,19234,19236,19237,19238,19243,19263,19265,19270,19271,19272,19273,19276,19277,19291,19294,19309,19317,19319,19346,19347,19349,19350,19351,19361,19362,19364,19376,19379,19385,19388,19392,19394,19409,19410,19411,19412,19416,19418,19420,19421,19422,19424,19428,19436,19437,19438,19439,19441,19444,19463,19465,19466,19479,19480,19481,19482,19487,19490,19491,19492,19509,19511,19512,19518,19523,19524,19526,19527,19529,19532,19533,19534,19535,19536,19539,19542,19547,19549,19550,19551,19556,19560,19561,19563,19574,19575,19576,19577,19580,19583,19584,19585,19591,19601,19604,19605,19607,19609,19616,19619,19621,19624,19625,19626,19627,19636,19638,19639,19642,19643,19646,19649,19651,19652,19653,19654,19655,19657,19658,19660,19666,19667,19668,19669,19670,19671,19676,19678,19719,19723,19724,19728,19732,19733,19734,19738,19739,19740,19750,19751,19753,19754,19755,19760,19762,19763,19765,19766,19767,19768,19771,19773,19774,19780,19783,19784,19785,19789,19791,19797,19799,19802,19806,19809,19811,19812,19815,19816,19817,19819,19824,19827,19830,19831,19833,19837,19838,19839,19840,19841,19844,19845,19846,19848,19849,19850,19855,19856,19865,19869,19870,19873,19874,19875,19876,19893,19896,19901,19904,19909,19911,19914,19915,19916,19917,19922,19923,19927,19932,19933,19935,19940,19942,19944,19945,19946,19948,19951,19952,19953,19954,19959,19960,19964,19966,19967,19968,19969,19970,19971,19973,19974,19975,19977,19978,19979,19980,19981,19983,19984,19985,19986,19989,19991,19992,19993,19995,19996,19997,19998,20002,20003,20006,20007,20008,20009,20010,20011,20012,20013,20014,20018,20019,20020,20022,20023,20024,20026,20027,20031,20032,20033,20034,20035,20037,20040,20041,20044,20045,20046,20047,20058,20073,20074,20088,20093,20139,20146,20147,20155,20161,20163,20167,20173,20181,20184,20186,20187,20195,20203,20210,20211,20224,20236,20260,20271,20272,20276,20278,20283,20290,20291,20293,20294,20295,20296,20301,20304,20308,20317,20320,20322,20332,20349,20354,20440,20476,20480,20484,20489,20490,20492,20494,20495,20500,20503,20505,20508,20512,20522,20525,20533,20538,20539,20542,20552,20553,20555,20560,20561,20562,20572,20574,20576,20592,20607,20608,20610,20613,20616,20617,20618,20621,20624,20625,20628,20633,20634,20640,20643,20644,20648,20653,20655,20662,20667,20670,20671,20672,20678,20679,20680,20682,20687,20690,20691,20692,20694,20696,20705,20707,20708,20711,20720,20722,20727,20728,20735,20736,20738,20753,20754,20756,20760,20776,20779,20781,20782,20798,20799,20805,20807,20810,20812,20813,20814,20816,20821,20825,20828,20841,20844,20845,20863,20867,20870,20871,20873,20875,20876,20877,20880,20901,20904,20906,20908,20909,20910,20916,20917,20921,20923,20924,20927,20929,20931,20936,20937,20938,20948,20969,20971,20973,20974,20980,20989,20990,21014,21016,21025,21026,21027,21029,21035,21037,21044,21047,21062,21074,21077,21078,21080,21102,21106,21117,21118,21119,21148,21182,21186,21196,21201,21203,21239,21240,21244,21257,21271,21272,21275,21277,21278,21293,21296,21307,21309,21315,21325,21334,21355,21356,21359,21363,21364,21366,21377,21379,21380,21381,21382,21387,21389,21390,21393,21395,21404,21407,21415,21416,21417,21418,21420,21422,21433,21442,21445,21447,21452,21456,21465,21467,21469,21471,21474,21477,21478,21481,21483,21497,21499,21517,21519,21521,21522,21523,21526,21532,21535,21538,21541,21548,21551,21553,21555,21559,21560,21563,21564,21565,21566,21567,21573,21575,21576,21579,21580,21583,21591,21594,21604,21608,21609,21611,21612,21613,21614,21618,21621,21624,21643,21659,21662,21664,21667,21673,21674,21675,21679,21684,21688,21692,21693,21695,21701,21702,21710,21711,21713,21724,21731,21741,21745,21747,21748,21750,21755,21757,21963,21967,21980,21981,21982,21987,21989,21990,21994,21995,21996,21998,21999,22000,22001,22002,22003,22006,22009,22016,22022,22026,22027,22029,22040,22060,22074,22075,22082,22087,22088,22095,22104,22117,22118,22167,22190,22221,22260,22276,22285,22292,22336,22337,22343,22344,22345,22348,22350,22362,22365,22383,22388,22392,22396,22407,22411,22417,22424,22437,22442,22449,22460,22504,22507,22510,22525,22526,22530,22536,22539,22540,22545,22557,22560,22566,22568,22578,22579,22580,22598,22611,22612,22613,22626,22640,22641,22648,22649,22660,22662,22684,22710,22720,22732,22753,22784,22788,22793,22808,22813,22827,22831,22849,22851,22852,22858,22860,22869,22873,22882,22884,22886,22888,22890,22893,22897,22899,22921,22923,22924,22934,22953,22957,22965,22969,22974,22975,22976,22985,22989,22990,22992,22993,22996,22999,23022,23030,23033,23038,23041,23055,23065,23072,23073,23080,23083,23085,23086,23087,23093,23112,23114,23115,23117,23121,23137,23138,23139,23141,23142]]],["+",[484,462,[[0,42,41,0,41,[[1,2,2,0,2],[2,2,2,2,4],[9,1,1,4,5],[12,2,2,5,7],[16,1,1,7,8],[17,1,1,8,9],[18,3,3,9,12],[19,1,1,12,13],[20,1,1,13,14],[21,2,2,14,16],[23,2,2,16,18],[26,2,2,18,20],[27,2,2,20,22],[28,1,1,22,23],[29,1,1,23,24],[30,4,3,24,27],[32,2,2,27,29],[34,1,1,29,30],[38,1,1,30,31],[39,1,1,31,32],[42,2,2,32,34],[43,3,3,34,37],[46,2,2,37,39],[48,1,1,39,40],[49,1,1,40,41]]],[1,29,28,41,69,[[52,1,1,41,42],[54,1,1,42,43],[55,1,1,43,44],[57,1,1,44,45],[58,1,1,45,46],[61,1,1,46,47],[65,1,1,47,48],[67,1,1,48,49],[68,1,1,49,50],[69,1,1,50,51],[70,2,2,51,53],[72,1,1,53,54],[73,1,1,54,55],[74,1,1,55,56],[78,3,2,56,58],[79,4,4,58,62],[81,3,3,62,65],[83,1,1,65,66],[84,1,1,66,67],[85,2,2,67,69]]],[2,42,38,69,107,[[94,2,2,69,71],[95,2,1,71,72],[96,1,1,72,73],[100,6,5,73,78],[103,2,2,78,80],[104,12,10,80,90],[107,2,2,90,92],[109,2,2,92,94],[110,1,1,94,95],[111,3,3,95,98],[112,2,2,98,100],[114,2,2,100,102],[115,1,1,102,103],[116,4,4,103,107]]],[3,22,22,107,129,[[122,1,1,107,108],[125,1,1,108,109],[127,1,1,109,110],[130,1,1,110,111],[131,1,1,111,112],[132,1,1,112,113],[133,1,1,113,114],[134,1,1,114,115],[135,2,2,115,117],[136,2,2,117,119],[137,1,1,119,120],[138,1,1,120,121],[139,1,1,121,122],[141,1,1,122,123],[146,1,1,123,124],[148,1,1,124,125],[149,1,1,125,126],[151,3,3,126,129]]],[4,55,49,129,178,[[153,1,1,129,130],[154,2,2,130,132],[155,2,2,132,134],[156,4,4,134,138],[158,1,1,138,139],[159,1,1,139,140],[161,1,1,140,141],[163,5,4,141,145],[164,5,4,145,149],[166,3,2,149,151],[170,2,2,151,153],[171,1,1,153,154],[172,2,2,154,156],[173,1,1,156,157],[174,3,2,157,159],[175,1,1,159,160],[176,1,1,160,161],[179,1,1,161,162],[180,5,5,162,167],[181,1,1,167,168],[182,4,4,168,172],[183,4,3,172,175],[184,4,3,175,178]]],[5,19,18,178,196,[[187,5,5,178,183],[188,3,2,183,185],[189,2,2,185,187],[191,1,1,187,188],[193,1,1,188,189],[194,1,1,189,190],[195,1,1,190,191],[196,3,3,191,194],[203,1,1,194,195],[206,1,1,195,196]]],[6,11,11,196,207,[[212,1,1,196,197],[213,1,1,197,198],[214,1,1,198,199],[217,1,1,199,200],[221,2,2,200,202],[226,2,2,202,204],[229,2,2,204,206],[230,1,1,206,207]]],[7,7,7,207,214,[[232,3,3,207,210],[233,2,2,210,212],[234,2,2,212,214]]],[8,20,19,214,233,[[238,1,1,214,215],[241,1,1,215,216],[244,2,2,216,218],[245,2,2,218,220],[249,2,2,220,222],[253,1,1,222,223],[254,1,1,223,224],[257,1,1,224,225],[259,1,1,225,226],[261,3,2,226,228],[262,1,1,228,229],[264,1,1,229,230],[265,3,3,230,233]]],[9,21,20,233,253,[[268,1,1,233,234],[269,2,2,234,236],[272,1,1,236,237],[273,1,1,237,238],[274,3,3,238,241],[277,1,1,241,242],[278,2,1,242,243],[279,2,2,243,245],[281,2,2,245,247],[283,2,2,247,249],[285,2,2,249,251],[287,2,2,251,253]]],[10,27,27,253,280,[[292,1,1,253,254],[293,1,1,254,255],[294,1,1,255,256],[297,3,3,256,259],[298,6,6,259,265],[299,1,1,265,266],[300,1,1,266,267],[301,1,1,267,268],[304,2,2,268,270],[306,2,2,270,272],[307,2,2,272,274],[308,2,2,274,276],[310,2,2,276,278],[311,2,2,278,280]]],[11,27,26,280,306,[[313,4,3,280,283],[318,2,2,283,285],[320,2,2,285,287],[322,2,2,287,289],[324,1,1,289,290],[328,1,1,290,291],[329,4,4,291,295],[330,3,3,295,298],[333,3,3,298,301],[334,2,2,301,303],[335,2,2,303,305],[337,1,1,305,306]]],[12,9,9,306,315,[[338,1,1,306,307],[350,1,1,307,308],[354,3,3,308,311],[355,3,3,311,314],[356,1,1,314,315]]],[13,13,13,315,328,[[367,2,2,315,317],[372,3,3,317,320],[373,1,1,320,321],[374,1,1,321,322],[375,1,1,322,323],[381,1,1,323,324],[385,1,1,324,325],[387,1,1,325,326],[400,2,2,326,328]]],[14,1,1,328,329,[[412,1,1,328,329]]],[15,3,3,329,332,[[414,2,2,329,331],[416,1,1,331,332]]],[16,9,8,332,340,[[426,2,2,332,334],[427,1,1,334,335],[429,3,2,335,337],[432,1,1,337,338],[433,2,2,338,340]]],[17,4,4,340,344,[[467,1,1,340,341],[469,1,1,341,342],[472,1,1,342,343],[477,1,1,343,344]]],[18,6,6,344,350,[[478,1,1,344,345],[487,1,1,345,346],[581,1,1,346,347],[589,1,1,347,348],[592,1,1,348,349],[612,1,1,349,350]]],[19,2,2,350,352,[[644,1,1,350,351],[648,1,1,351,352]]],[20,15,14,352,366,[[660,2,2,352,354],[661,2,2,354,356],[662,1,1,356,357],[665,2,2,357,359],[666,2,2,359,361],[667,3,2,361,363],[670,3,3,363,366]]],[22,6,6,366,372,[[684,1,1,366,367],[698,1,1,367,368],[714,1,1,368,369],[721,1,1,369,370],[725,1,1,370,371],[731,1,1,371,372]]],[23,46,44,372,416,[[745,1,1,372,373],[752,1,1,373,374],[757,1,1,374,375],[760,2,2,375,377],[763,2,2,377,379],[766,4,4,379,383],[767,4,3,383,386],[768,1,1,386,387],[769,2,2,387,389],[771,1,1,389,390],[773,8,7,390,397],[774,1,1,397,398],[775,1,1,398,399],[776,1,1,399,400],[779,2,2,400,402],[784,2,2,402,404],[785,1,1,404,405],[786,3,3,405,408],[787,1,1,408,409],[788,3,3,409,412],[789,1,1,412,413],[790,1,1,413,414],[793,1,1,414,415],[794,1,1,415,416]]],[25,39,37,416,453,[[802,2,2,416,418],[805,1,1,418,419],[807,2,2,419,421],[809,1,1,421,422],[810,2,2,422,424],[812,1,1,424,425],[813,2,2,425,427],[817,1,1,427,428],[818,2,1,428,429],[821,1,1,429,430],[824,2,2,430,432],[827,1,1,432,433],[830,1,1,433,434],[832,1,1,434,435],[835,2,2,435,437],[836,1,1,437,438],[837,5,5,438,443],[838,2,2,443,445],[840,1,1,445,446],[843,1,1,446,447],[844,1,1,447,448],[845,1,1,448,449],[847,3,3,449,452],[848,2,1,452,453]]],[26,1,1,453,454,[[858,1,1,453,454]]],[27,1,1,454,455,[[866,1,1,454,455]]],[28,2,2,455,457,[[877,1,1,455,456],[878,1,1,456,457]]],[29,1,1,457,458,[[882,1,1,457,458]]],[31,1,1,458,459,[[889,1,1,458,459]]],[33,1,1,459,460,[[901,1,1,459,460]]],[35,1,1,460,461,[[908,1,1,460,461]]],[38,1,1,461,462,[[926,1,1,461,462]]]],[41,49,66,78,248,321,332,411,443,469,484,486,508,530,563,565,596,633,737,771,786,788,803,856,874,886,889,974,979,1038,1171,1175,1306,1309,1325,1328,1340,1424,1426,1501,1518,1584,1643,1660,1731,1768,1846,1952,2004,2044,2072,2090,2107,2174,2191,2224,2363,2378,2388,2415,2418,2420,2458,2471,2473,2508,2552,2567,2571,2834,2846,2876,2904,3006,3009,3029,3030,3032,3141,3151,3172,3173,3174,3177,3179,3185,3186,3191,3192,3194,3254,3280,3340,3343,3362,3373,3374,3389,3404,3439,3499,3524,3569,3578,3579,3581,3602,3834,3983,4044,4132,4171,4234,4248,4270,4305,4311,4328,4335,4362,4392,4429,4484,4656,4735,4814,4870,4871,4879,4928,4952,4967,4995,4996,5009,5018,5030,5031,5087,5112,5185,5216,5218,5219,5237,5242,5262,5269,5272,5300,5316,5390,5403,5407,5445,5447,5461,5494,5499,5520,5529,5588,5632,5648,5658,5673,5674,5704,5709,5711,5724,5726,5732,5741,5744,5805,5808,5809,5858,5860,5866,5867,5869,5876,5888,5897,5910,5949,5984,6028,6053,6075,6089,6091,6289,6378,6560,6569,6623,6698,6853,6865,6975,6979,7047,7050,7076,7134,7140,7143,7151,7158,7176,7190,7279,7349,7397,7401,7423,7425,7519,7555,7681,7709,7790,7844,7910,7926,7938,7971,7982,8000,8009,8067,8111,8117,8165,8189,8215,8219,8223,8275,8292,8322,8339,8404,8409,8461,8462,8541,8549,8581,8592,8773,8827,8872,8941,8942,8982,9003,9006,9023,9024,9029,9032,9060,9086,9142,9225,9233,9285,9290,9334,9336,9351,9353,9436,9444,9469,9476,9537,9539,9549,9675,9690,9728,9732,9812,9823,9855,9966,10003,10006,10012,10016,10031,10036,10046,10130,10134,10135,10158,10162,10172,10173,10241,10264,10770,10869,10871,10876,10896,10900,10903,10912,11205,11206,11290,11293,11319,11346,11357,11370,11503,11586,11636,11954,11958,12260,12314,12325,12370,12714,12717,12737,12765,12773,12815,12824,12834,13631,13710,13781,13932,13942,14047,15588,15811,15833,16181,16881,16985,17336,17343,17373,17381,17383,17450,17455,17461,17472,17477,17485,17524,17525,17529,17780,18035,18336,18509,18612,18723,18953,19156,19273,19347,19351,19411,19421,19463,19466,19480,19481,19487,19492,19512,19533,19542,19549,19605,19642,19649,19653,19654,19658,19660,19666,19678,19723,19768,19830,19841,19948,19953,19966,19979,19981,19997,20002,20018,20027,20033,20045,20073,20163,20173,20476,20484,20542,20572,20576,20607,20625,20633,20671,20692,20696,20805,20841,20924,21029,21037,21102,21196,21240,21325,21334,21359,21379,21380,21381,21389,21393,21417,21418,21471,21565,21579,21611,21673,21675,21679,21688,21995,22167,22343,22350,22417,22539,22710,22827,23112]]],["As",[29,29,[[1,1,1,0,1,[[65,1,1,0,1]]],[2,2,2,1,3,[[93,1,1,1,2],[97,1,1,2,3]]],[3,2,2,3,5,[[117,1,1,3,4],[148,1,1,4,5]]],[4,2,2,5,7,[[154,2,2,5,7]]],[5,3,3,7,10,[[194,1,1,7,8],[197,1,1,8,9],[200,1,1,9,10]]],[6,1,1,10,11,[[225,1,1,10,11]]],[8,2,2,11,13,[[250,1,1,11,12],[259,1,1,12,13]]],[10,1,1,13,14,[[291,1,1,13,14]]],[13,1,1,14,15,[[368,1,1,14,15]]],[17,1,1,15,16,[[464,1,1,15,16]]],[18,1,1,16,17,[[525,1,1,16,17]]],[20,2,2,17,19,[[663,1,1,17,18],[669,1,1,18,19]]],[22,4,4,19,23,[[688,1,1,19,20],[701,1,1,20,21],[730,1,1,21,22],[743,1,1,22,23]]],[23,2,2,23,25,[[777,1,1,23,24],[786,1,1,24,25]]],[25,1,1,25,26,[[816,1,1,25,26]]],[26,1,1,26,27,[[858,1,1,26,27]]],[29,1,1,27,28,[[881,1,1,27,28]]],[37,1,1,28,29,[[918,1,1,28,29]]]],[1981,2805,2951,3623,4749,4960,4967,6033,6122,6192,6940,7593,7852,8754,11214,13536,14642,17412,17518,17860,18082,18710,18905,19797,19993,20760,22001,22407,22990]]],["Because",[6,6,[[8,1,1,0,1,[[263,1,1,0,1]]],[10,1,1,1,2,[[305,1,1,1,2]]],[18,1,1,2,3,[[532,1,1,2,3]]],[20,1,1,3,4,[[666,1,1,3,4]]],[23,1,1,4,5,[[764,1,1,4,5]]],[28,1,1,5,6,[[878,1,1,5,6]]]],[7960,9254,14751,17469,19439,22348]]],["For",[7,7,[[3,1,1,0,1,[[143,1,1,0,1]]],[5,1,1,1,2,[[190,1,1,1,2]]],[6,1,1,2,3,[[219,1,1,2,3]]],[17,1,1,3,4,[[444,1,1,3,4]]],[18,1,1,4,5,[[616,1,1,4,5]]],[23,1,1,5,6,[[776,1,1,5,6]]],[32,1,1,6,7,[[898,1,1,6,7]]]],[4568,5933,6771,13068,16259,19734,22660]]],["How",[4,4,[[4,1,1,0,1,[[177,1,1,0,1]]],[17,1,1,1,2,[[472,1,1,1,2]]],[18,2,2,2,4,[[555,1,1,2,3],[609,1,1,3,4]]]],[5565,13786,15156,16153]]],["If",[4,4,[[0,1,1,0,1,[[42,1,1,0,1]]],[2,1,1,1,2,[[109,1,1,1,2]]],[9,1,1,2,3,[[273,1,1,2,3]]],[10,1,1,3,4,[[298,1,1,3,4]]]],[1304,3331,8194,9016]]],["Like",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19077]]],["THAT",[1,1,[[1,1,1,0,1,[[52,1,1,0,1]]]],[1593]]],["That",[4,4,[[5,1,1,0,1,[[190,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]],[16,1,1,2,3,[[426,1,1,2,3]]],[18,1,1,3,4,[[621,1,1,3,4]]]],[5917,8026,12721,16317]]],["Though",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17470]]],["What",[2,2,[[0,1,1,0,1,[[40,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]]],[1223,8482]]],["When",[9,9,[[2,1,1,0,1,[[93,1,1,0,1]]],[4,1,1,1,2,[[170,1,1,1,2]]],[5,1,1,2,3,[[190,1,1,2,3]]],[8,1,1,3,4,[[247,1,1,3,4]]],[9,1,1,4,5,[[286,1,1,4,5]]],[18,1,1,5,6,[[572,1,1,5,6]]],[20,2,2,6,8,[[663,1,1,6,7],[666,1,1,7,8]]],[27,1,1,8,9,[[868,1,1,8,9]]]],[2817,5406,5931,7468,8567,15463,17401,17474,22190]]],["Where",[2,2,[[7,1,1,0,1,[[232,1,1,0,1]]],[20,1,1,1,2,[[666,1,1,1,2]]]],[7144,17462]]],["Whereas",[1,1,[[22,1,1,0,1,[[715,1,1,0,1]]]],[18373]]],["Wherein",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12828]]],["Wherewith",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15377]]],["Which",[21,21,[[2,2,2,0,2,[[96,2,2,0,2]]],[3,1,1,2,3,[[143,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[14,2,2,4,6,[[404,1,1,4,5],[411,1,1,5,6]]],[17,4,4,6,10,[[450,1,1,6,7],[457,1,1,7,8],[471,1,1,8,9],[473,1,1,9,10]]],[18,5,5,10,15,[[535,1,1,10,11],[543,1,1,11,12],[555,1,1,12,13],[582,1,1,13,14],[617,1,1,14,15]]],[19,1,1,15,16,[[633,1,1,15,16]]],[20,1,1,16,17,[[665,1,1,16,17]]],[22,1,1,17,18,[[708,1,1,17,18]]],[23,3,3,18,21,[[755,1,1,18,19],[771,1,1,19,20],[776,1,1,20,21]]]],[2915,2917,4571,5796,12029,12248,13221,13405,13764,13816,14784,14887,15116,15615,16265,16547,17457,18227,19230,19616,19751]]],["Who",[6,6,[[10,1,1,0,1,[[298,1,1,0,1]]],[16,1,1,1,2,[[427,1,1,1,2]]],[18,3,3,2,5,[[489,1,1,2,3],[541,1,1,3,4],[560,1,1,4,5]]],[32,1,1,5,6,[[895,1,1,5,6]]]],[9009,12730,14070,14853,15253,22611]]],["Whom",[3,3,[[17,2,2,0,2,[[444,1,1,0,1],[454,1,1,1,2]]],[22,1,1,2,3,[[697,1,1,2,3]]]],[13066,13324,18029]]],["Whose",[8,8,[[17,3,3,0,3,[[440,1,1,0,1],[443,1,1,1,2],[474,1,1,2,3]]],[18,1,1,3,4,[[621,1,1,3,4]]],[19,1,1,4,5,[[629,1,1,4,5]]],[22,1,1,5,6,[[683,1,1,5,6]]],[25,1,1,6,7,[[833,1,1,6,7]]],[37,1,1,7,8,[[921,1,1,7,8]]]],[12956,13043,13840,16313,16448,17767,21271,23033]]],["Whoso",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5410]]],["Whosoever",[1,1,[[8,1,1,0,1,[[246,1,1,0,1]]]],[7452]]],["Yea",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7580]]],["according",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5195]]],["after",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6971]]],["alike",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17477]]],["any",[1,1,[[9,1,1,0,1,[[275,1,1,0,1]]]],[8228]]],["as",[437,422,[[0,31,29,0,29,[[6,2,2,0,2],[7,1,1,2,3],[11,1,1,3,4],[16,1,1,4,5],[17,2,2,5,7],[20,3,2,7,9],[21,1,1,9,10],[23,2,2,10,12],[25,2,1,12,13],[26,5,5,13,18],[31,1,1,18,19],[33,2,2,19,21],[39,1,1,21,22],[40,3,3,22,25],[42,1,1,25,26],[43,1,1,26,27],[46,1,1,27,28],[49,1,1,28,29]]],[1,46,46,29,75,[[50,1,1,29,30],[51,1,1,30,31],[56,5,5,31,36],[57,3,3,36,39],[58,3,3,39,42],[59,1,1,42,43],[60,1,1,43,44],[61,4,4,44,48],[62,1,1,48,49],[65,1,1,49,50],[66,1,1,50,51],[70,1,1,51,52],[72,1,1,52,53],[76,1,1,53,54],[81,1,1,54,55],[82,1,1,55,56],[83,3,3,56,59],[87,1,1,59,60],[88,7,7,60,67],[89,8,8,67,75]]],[2,26,26,75,101,[[93,4,4,75,79],[97,7,7,79,86],[98,3,3,86,89],[99,3,3,89,92],[103,2,2,92,94],[105,2,2,94,96],[107,1,1,96,97],[113,3,3,97,100],[116,1,1,100,101]]],[3,37,37,101,138,[[118,2,2,101,103],[119,3,3,103,106],[120,1,1,106,107],[121,1,1,107,108],[124,2,2,108,110],[127,1,1,110,111],[130,3,3,111,114],[131,2,2,114,116],[132,2,2,116,118],[133,1,1,118,119],[136,2,2,119,121],[137,1,1,121,122],[138,1,1,122,123],[139,2,2,123,125],[142,1,1,125,126],[143,4,4,126,130],[147,4,4,130,134],[148,2,2,134,136],[149,1,1,136,137],[152,1,1,137,138]]],[4,51,50,138,188,[[153,5,5,138,143],[154,3,3,143,146],[155,2,2,146,148],[156,2,2,148,150],[157,3,3,150,153],[158,4,4,153,157],[160,1,1,157,158],[161,2,2,158,160],[162,1,1,160,161],[163,1,1,161,162],[164,2,2,162,164],[165,1,1,164,165],[167,1,1,165,166],[168,1,1,166,167],[170,1,1,167,168],[171,2,2,168,170],[172,1,1,170,171],[174,1,1,171,172],[175,1,1,172,173],[176,1,1,173,174],[178,3,3,174,177],[179,1,1,177,178],[180,4,4,178,182],[181,2,1,182,183],[182,1,1,183,184],[183,2,2,184,186],[184,1,1,186,187],[186,1,1,187,188]]],[5,39,37,188,225,[[187,3,3,188,191],[189,1,1,191,192],[190,5,4,192,196],[192,1,1,196,197],[194,4,4,197,201],[195,1,1,201,202],[196,6,5,202,207],[197,3,3,207,210],[199,4,4,210,214],[200,5,5,214,219],[207,1,1,219,220],[208,1,1,220,221],[209,4,4,221,225]]],[6,16,15,225,240,[[211,2,2,225,227],[212,3,2,227,229],[213,1,1,229,230],[216,3,3,230,233],[217,2,2,233,235],[218,2,2,235,237],[219,1,1,237,238],[225,1,1,238,239],[226,1,1,239,240]]],[7,1,1,240,241,[[232,1,1,240,241]]],[8,14,14,241,255,[[236,1,1,241,242],[237,1,1,242,243],[239,1,1,243,244],[241,1,1,244,245],[251,1,1,245,246],[252,1,1,246,247],[255,3,3,247,250],[258,1,1,250,251],[259,1,1,251,252],[261,1,1,252,253],[263,1,1,253,254],[264,1,1,254,255]]],[9,13,13,255,268,[[269,1,1,255,256],[271,1,1,256,257],[273,3,3,257,260],[276,1,1,260,261],[279,1,1,261,262],[281,1,1,262,263],[282,2,2,263,265],[283,1,1,265,266],[285,1,1,266,267],[290,1,1,267,268]]],[10,25,23,268,291,[[291,1,1,268,269],[292,3,3,269,272],[293,2,2,272,274],[295,2,2,274,276],[298,4,4,276,280],[299,3,3,280,283],[301,3,2,283,285],[302,1,1,285,286],[304,2,2,286,288],[310,1,1,288,289],[311,3,2,289,291]]],[11,18,18,291,309,[[314,1,1,291,292],[319,3,3,292,295],[320,2,2,295,297],[322,1,1,297,298],[326,2,2,298,300],[327,1,1,300,301],[329,2,2,301,303],[333,3,3,303,306],[335,1,1,306,307],[336,1,1,307,308],[337,1,1,308,309]]],[12,9,9,309,318,[[351,1,1,309,310],[352,1,1,310,311],[354,4,4,311,315],[359,1,1,315,316],[361,1,1,316,317],[366,1,1,317,318]]],[13,14,14,318,332,[[372,3,3,318,321],[373,2,2,321,323],[375,1,1,323,324],[376,1,1,324,325],[387,2,2,325,327],[389,1,1,327,328],[395,1,1,328,329],[396,1,1,329,330],[399,1,1,330,331],[401,1,1,331,332]]],[14,1,1,332,333,[[406,1,1,332,333]]],[15,2,2,333,335,[[417,1,1,333,334],[418,1,1,334,335]]],[16,7,4,335,339,[[427,2,1,335,336],[431,1,1,336,337],[434,4,2,337,339]]],[17,3,3,339,342,[[439,1,1,339,340],[464,1,1,340,341],[477,1,1,341,342]]],[18,1,1,342,343,[[510,1,1,342,343]]],[19,1,1,343,344,[[651,1,1,343,344]]],[20,1,1,344,345,[[667,1,1,344,345]]],[22,13,12,345,357,[[687,2,2,345,347],[688,1,1,347,348],[689,1,1,348,349],[692,2,1,349,350],[698,1,1,350,351],[703,1,1,351,352],[709,1,1,352,353],[729,1,1,353,354],[733,1,1,354,355],[744,2,2,355,357]]],[23,29,26,357,383,[[746,1,1,357,358],[751,2,2,358,360],[756,1,1,360,361],[757,2,2,361,363],[759,4,1,363,364],[761,1,1,364,365],[762,1,1,365,366],[763,1,1,366,367],[767,1,1,367,368],[770,1,1,368,369],[771,1,1,369,370],[775,1,1,370,371],[776,1,1,371,372],[783,1,1,372,373],[784,1,1,373,374],[786,1,1,374,375],[787,1,1,375,376],[788,3,3,376,379],[792,2,2,379,381],[794,2,2,381,383]]],[24,1,1,383,384,[[797,1,1,383,384]]],[25,17,17,384,401,[[802,1,1,384,385],[813,2,2,385,387],[817,3,3,387,390],[821,1,1,390,391],[824,1,1,391,392],[825,2,2,392,394],[838,2,2,394,396],[842,1,1,396,397],[844,1,1,397,398],[847,2,2,398,400],[849,1,1,400,401]]],[26,3,3,401,404,[[850,1,1,401,402],[858,1,1,402,403],[861,1,1,403,404]]],[27,1,1,404,405,[[870,1,1,404,405]]],[28,1,1,405,406,[[877,1,1,405,406]]],[29,3,3,406,409,[[880,1,1,406,407],[883,1,1,407,408],[887,1,1,408,409]]],[30,2,2,409,411,[[888,2,2,409,411]]],[31,1,1,411,412,[[889,1,1,411,412]]],[32,3,3,412,415,[[895,2,2,412,414],[897,1,1,414,415]]],[36,1,1,415,416,[[909,1,1,415,416]]],[37,5,5,416,421,[[911,1,1,416,417],[917,2,2,417,419],[918,1,1,419,420],[924,1,1,420,421]]],[38,1,1,421,422,[[927,1,1,421,422]]]],[168,175,204,302,420,429,457,514,517,561,613,642,721,731,736,741,746,757,959,992,1002,1194,1208,1216,1249,1307,1325,1431,1512,1549,1568,1691,1695,1698,1705,1707,1725,1729,1737,1754,1766,1777,1787,1812,1841,1844,1848,1866,1878,1971,1993,2099,2159,2280,2457,2484,2500,2506,2514,2654,2665,2669,2671,2685,2693,2695,2707,2722,2726,2728,2730,2732,2734,2736,2739,2815,2816,2826,2830,2921,2926,2930,2934,2938,2946,2948,2960,2963,2974,2982,2992,2995,3133,3142,3216,3235,3279,3465,3466,3469,3584,3675,3691,3708,3734,3743,3792,3796,3942,3961,4036,4125,4127,4136,4167,4189,4234,4241,4255,4320,4338,4374,4383,4418,4446,4493,4565,4567,4576,4577,4671,4695,4705,4711,4743,4745,4816,4889,4903,4911,4913,4923,4936,4939,4950,4952,4977,4981,5009,5037,5065,5069,5085,5089,5102,5105,5111,5142,5160,5182,5191,5233,5260,5261,5289,5325,5352,5386,5414,5425,5444,5496,5523,5533,5581,5584,5585,5588,5620,5640,5660,5674,5692,5717,5731,5732,5808,5848,5854,5856,5868,5900,5918,5922,5924,5933,5971,6004,6007,6008,6035,6058,6065,6092,6094,6103,6104,6116,6119,6127,6160,6162,6168,6187,6189,6194,6197,6198,6199,6389,6430,6465,6468,6470,6475,6516,6529,6560,6567,6570,6681,6690,6691,6699,6711,6727,6752,6787,6939,6958,7135,7240,7256,7306,7337,7602,7638,7743,7761,7772,7821,7843,7929,7959,7975,8090,8157,8190,8195,8205,8242,8346,8415,8445,8449,8461,8514,8711,8747,8794,8801,8808,8822,8830,8883,8890,9005,9010,9038,9042,9053,9055,9056,9119,9146,9163,9228,9233,9442,9462,9477,9570,9714,9717,9724,9745,9746,9808,9899,9901,9934,10006,10024,10122,10132,10139,10192,10215,10237,10790,10806,10864,10872,10876,10886,10975,11034,11189,11292,11298,11313,11341,11342,11373,11407,11630,11631,11659,11799,11834,11930,11984,12113,12394,12409,12744,12803,12857,12865,12938,13557,13931,14388,17108,17477,17830,17832,17861,17900,17952,18032,18129,18254,18686,18750,18942,18944,19001,19133,19134,19265,19271,19277,19317,19379,19388,19418,19511,19583,19609,19719,19773,19935,19944,19977,20009,20023,20027,20040,20088,20093,20181,20184,20332,20480,20687,20691,20810,20812,20821,20931,21025,21074,21078,21404,21407,21551,21594,21662,21667,21713,21750,22000,22082,22221,22343,22392,22437,22504,22525,22526,22545,22611,22612,22648,22852,22884,22965,22975,22989,23073,23137]]],["because",[35,35,[[0,5,5,0,5,[[29,1,1,0,1],[33,2,2,1,3],[38,2,2,3,5]]],[1,1,1,5,6,[[54,1,1,5,6]]],[2,1,1,6,7,[[115,1,1,6,7]]],[3,1,1,7,8,[[136,1,1,7,8]]],[4,1,1,8,9,[[175,1,1,8,9]]],[5,2,2,9,11,[[191,1,1,9,10],[208,1,1,10,11]]],[6,1,1,11,12,[[216,1,1,11,12]]],[8,1,1,12,13,[[261,1,1,12,13]]],[9,1,1,13,14,[[268,1,1,13,14]]],[10,4,4,14,18,[[293,1,1,14,15],[298,1,1,15,16],[301,1,1,16,17],[305,1,1,17,18]]],[11,1,1,18,19,[[329,1,1,18,19]]],[12,1,1,19,20,[[358,1,1,19,20]]],[13,1,1,20,21,[[381,1,1,20,21]]],[18,1,1,21,22,[[596,1,1,21,22]]],[20,4,4,22,26,[[662,1,1,22,23],[666,2,2,23,25],[668,1,1,25,26]]],[22,1,1,26,27,[[686,1,1,26,27]]],[23,2,2,27,29,[[757,1,1,27,28],[788,1,1,28,29]]],[25,3,3,29,32,[[807,1,1,29,30],[815,1,1,30,31],[830,1,1,31,32]]],[26,1,1,32,33,[[858,1,1,32,33]]],[28,1,1,33,34,[[878,1,1,33,34]]],[37,1,1,34,35,[[921,1,1,34,35]]]],[848,993,1007,1158,1172,1653,3559,4324,5504,5940,6457,6681,7921,8055,8835,9018,9142,9262,10009,10942,11506,16056,17390,17471,17473,17508,17827,19291,20033,20572,20736,21203,21996,22362,23030]]],["concerning",[1,1,[[6,1,1,0,1,[[231,1,1,0,1]]]],[7107]]],["for",[19,19,[[0,1,1,0,1,[[30,1,1,0,1]]],[4,2,2,1,3,[[155,1,1,1,2],[180,1,1,2,3]]],[8,3,3,3,6,[[237,1,1,3,4],[250,1,1,4,5],[261,1,1,5,6]]],[10,1,1,6,7,[[302,1,1,6,7]]],[18,1,1,7,8,[[508,1,1,7,8]]],[20,2,2,8,10,[[664,1,1,8,9],[665,1,1,9,10]]],[22,1,1,10,11,[[732,1,1,10,11]]],[23,1,1,11,12,[[776,1,1,11,12]]],[25,3,3,12,15,[[807,1,1,12,13],[812,1,1,13,14],[840,1,1,14,15]]],[26,2,2,15,17,[[850,1,1,15,16],[858,1,1,16,17]]],[27,1,1,17,18,[[875,1,1,17,18]]],[37,1,1,18,19,[[911,1,1,18,19]]]],[922,4999,5631,7263,7575,7928,9153,14338,17429,17431,18732,19750,20574,20667,21477,21747,22000,22285,22893]]],["him",[2,2,[[2,1,1,0,1,[[116,1,1,0,1]]],[38,1,1,1,2,[[927,1,1,1,2]]]],[3594,23138]]],["his",[7,6,[[1,2,2,0,2,[[84,1,1,0,1],[88,1,1,1,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[10,2,1,3,4,[[312,2,1,3,4]]],[11,1,1,4,5,[[328,1,1,4,5]]],[13,1,1,5,6,[[382,1,1,5,6]]]],[2547,2703,7770,9511,9976,11513]]],["how",[26,22,[[0,2,1,0,1,[[29,2,1,0,1]]],[4,5,4,1,5,[[161,1,1,1,2],[163,2,2,2,4],[181,2,1,4,5]]],[5,1,1,5,6,[[188,1,1,5,6]]],[8,5,5,6,11,[[237,1,1,6,7],[247,1,1,7,8],[250,1,1,8,9],[259,1,1,9,10],[263,1,1,10,11]]],[10,4,3,11,14,[[304,2,1,11,12],[309,1,1,12,13],[312,1,1,13,14]]],[11,6,5,14,19,[[320,1,1,14,15],[326,3,2,15,17],[332,2,2,17,19]]],[15,1,1,19,20,[[414,1,1,19,20]]],[16,1,1,20,21,[[430,1,1,20,21]]],[22,1,1,21,22,[[716,1,1,21,22]]]],[859,5164,5212,5214,5695,5879,7262,7484,7562,7849,7951,9237,9388,9525,9732,9911,9924,10101,10118,12324,12790,18393]]],["if",[13,13,[[1,1,1,0,1,[[70,1,1,0,1]]],[2,8,8,1,9,[[109,8,8,1,9]]],[4,1,1,9,10,[[163,1,1,9,10]]],[16,1,1,10,11,[[429,1,1,10,11]]],[25,1,1,11,12,[[811,1,1,11,12]]],[29,1,1,12,13,[[883,1,1,12,13]]]],[2090,3330,3332,3333,3334,3335,3336,3338,3339,5235,12778,20643,22442]]],["it",[1,1,[[4,1,1,0,1,[[161,1,1,0,1]]]],[5178]]],["man",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[4,1,1,1,2,[[171,1,1,1,2]]]],[3502,5411]]],["more",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1544]]],["my",[2,1,[[7,2,1,0,1,[[233,2,1,0,1]]]],[7170]]],["of",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12837]]],["owneth",[1,1,[[2,1,1,0,1,[[103,1,1,0,1]]]],[3146]]],["seeing",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7887]]],["so",[2,2,[[0,1,1,0,1,[[43,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]]],[1329,18097]]],["soever",[2,2,[[9,1,1,0,1,[[281,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]]],[8424,11311]]],["storehouses",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1251]]],["such",[9,7,[[1,1,1,0,1,[[58,1,1,0,1]]],[9,1,1,1,2,[[275,1,1,1,2]]],[23,6,4,2,6,[[749,2,2,2,4],[753,1,1,4,5],[787,3,1,5,6]]],[26,1,1,6,7,[[850,1,1,6,7]]]],[1760,8235,19067,19087,19184,20008,21741]]],["that",[1664,1520,[[0,109,104,0,104,[[0,1,1,0,1],[4,1,1,1,2],[5,3,3,2,5],[6,8,7,5,12],[7,2,2,12,14],[8,6,6,14,20],[10,1,1,20,21],[11,4,3,21,24],[12,2,2,24,26],[13,3,3,26,29],[14,3,3,29,32],[17,1,1,32,33],[18,1,1,33,34],[19,3,3,34,37],[20,3,3,37,40],[22,4,3,40,43],[23,7,7,43,50],[24,2,2,50,52],[25,2,2,52,54],[27,3,3,54,57],[29,2,2,57,59],[30,5,5,59,64],[31,2,2,64,66],[32,4,4,66,70],[33,2,2,70,72],[34,4,3,72,75],[35,2,2,75,77],[36,3,3,77,80],[37,2,2,80,82],[38,6,5,82,87],[39,1,1,87,88],[40,1,1,88,89],[41,2,2,89,91],[43,3,3,91,94],[44,3,3,94,97],[45,2,2,97,99],[46,1,1,99,100],[48,4,4,100,104]]],[1,78,71,104,175,[[54,1,1,104,105],[55,1,1,105,106],[56,6,5,106,111],[58,3,3,111,114],[59,1,1,114,115],[60,3,3,115,118],[61,3,2,118,120],[63,1,1,120,121],[65,1,1,121,122],[67,9,7,122,129],[68,2,2,129,131],[69,8,6,131,137],[71,1,1,137,138],[72,2,2,138,140],[73,1,1,140,141],[74,4,4,141,145],[75,1,1,145,146],[78,7,7,146,153],[79,2,1,153,154],[80,3,3,154,157],[81,3,3,157,160],[82,2,2,160,162],[83,3,3,162,165],[84,2,2,165,167],[85,1,1,167,168],[86,1,1,168,169],[87,1,1,169,170],[88,3,3,170,173],[89,2,2,173,175]]],[2,89,84,175,259,[[90,4,4,175,179],[91,1,1,179,180],[92,7,7,180,187],[93,4,4,187,191],[94,4,4,191,195],[95,3,3,195,198],[96,7,6,198,204],[97,5,5,204,209],[99,1,1,209,210],[100,5,5,210,215],[102,1,1,215,216],[103,8,8,216,224],[104,7,6,224,230],[105,3,3,230,233],[106,7,6,233,239],[107,1,1,239,240],[109,6,5,240,245],[110,3,3,245,248],[111,2,2,248,250],[112,2,2,250,252],[114,4,4,252,256],[115,1,1,256,257],[116,3,2,257,259]]],[3,53,50,259,309,[[117,3,3,259,262],[118,1,1,262,263],[120,3,3,263,266],[121,1,1,266,267],[122,2,2,267,269],[123,1,1,269,270],[124,2,2,270,272],[125,2,2,272,274],[127,2,2,274,276],[129,4,3,276,279],[130,1,1,279,280],[131,4,3,280,283],[132,5,5,283,288],[135,4,4,288,292],[136,1,1,292,293],[137,3,3,293,296],[138,4,4,296,300],[139,1,1,300,301],[141,1,1,301,302],[145,1,1,302,303],[147,5,4,303,307],[150,1,1,307,308],[151,1,1,308,309]]],[4,107,94,309,403,[[153,8,7,309,316],[154,1,1,316,317],[155,4,4,317,321],[156,11,8,321,329],[157,10,7,329,336],[158,2,1,336,337],[159,1,1,337,338],[160,1,1,338,339],[161,1,1,339,340],[162,3,3,340,343],[163,2,2,343,345],[164,7,7,345,352],[165,1,1,352,353],[166,5,4,353,357],[167,3,3,357,360],[168,3,2,360,362],[169,5,5,362,367],[170,3,3,367,370],[171,2,2,370,372],[172,4,4,372,376],[173,1,1,376,377],[174,1,1,377,378],[175,3,3,378,381],[176,2,2,381,383],[177,1,1,383,384],[178,4,4,384,388],[179,2,2,388,390],[180,4,3,390,393],[181,7,5,393,398],[182,2,2,398,400],[183,1,1,400,401],[184,1,1,401,402],[186,1,1,402,403]]],[5,85,72,403,475,[[187,3,3,403,406],[188,2,2,406,408],[189,2,2,408,410],[190,2,1,410,411],[191,1,1,411,412],[192,9,7,412,419],[193,2,2,419,421],[194,8,7,421,428],[195,4,3,428,431],[196,10,6,431,437],[197,6,6,437,443],[199,7,5,443,448],[200,3,3,448,451],[201,4,4,451,455],[203,1,1,455,456],[204,3,3,456,459],[205,2,2,459,461],[206,1,1,461,462],[207,1,1,462,463],[208,6,5,463,468],[209,3,3,468,471],[210,5,4,471,475]]],[6,73,63,475,538,[[211,1,1,475,476],[212,4,3,476,479],[213,1,1,479,480],[214,3,3,480,483],[216,8,6,483,489],[217,8,6,489,495],[218,6,5,495,500],[219,12,10,500,510],[220,2,2,510,512],[221,1,1,512,513],[223,5,4,513,517],[225,3,2,517,519],[226,4,4,519,523],[227,1,1,523,524],[228,4,4,524,528],[229,2,2,528,530],[230,3,3,530,533],[231,5,5,533,538]]],[7,13,12,538,550,[[233,4,4,538,542],[234,6,6,542,548],[235,3,2,548,550]]],[8,74,68,550,618,[[236,1,1,550,551],[237,4,4,551,555],[238,2,1,555,556],[240,1,1,556,557],[241,1,1,557,558],[243,3,3,558,561],[244,3,3,561,564],[247,4,3,564,567],[248,3,3,567,570],[249,11,11,570,581],[250,2,2,581,583],[252,4,4,583,587],[253,2,2,587,589],[254,2,2,589,591],[256,1,1,591,592],[257,4,4,592,596],[259,2,2,596,598],[260,7,6,598,604],[261,3,2,604,606],[262,2,2,606,608],[264,1,1,608,609],[265,9,8,609,617],[266,2,1,617,618]]],[9,79,75,618,693,[[267,3,2,618,620],[268,5,5,620,625],[269,6,6,625,631],[272,4,4,631,635],[273,5,5,635,640],[274,2,2,640,642],[275,2,2,642,644],[276,2,2,644,646],[277,3,3,646,649],[278,3,3,649,652],[279,2,2,652,654],[280,6,6,654,660],[281,6,6,660,666],[282,3,3,666,669],[283,10,9,669,678],[284,4,4,678,682],[285,2,2,682,684],[286,4,3,684,687],[287,4,3,687,690],[289,1,1,690,691],[290,2,2,691,693]]],[10,116,108,693,801,[[291,4,4,693,697],[292,6,5,697,702],[293,3,3,702,705],[294,3,2,705,707],[295,2,2,707,709],[296,1,1,709,710],[297,9,9,710,719],[298,18,16,719,735],[299,6,6,735,741],[300,6,6,741,747],[301,9,9,747,756],[302,7,5,756,761],[303,9,9,761,770],[304,3,3,770,773],[305,5,5,773,778],[306,9,8,778,786],[307,2,2,786,788],[308,2,2,788,790],[309,1,1,790,791],[310,3,3,791,794],[311,1,1,794,795],[312,7,6,795,801]]],[11,124,106,801,907,[[313,2,2,801,803],[314,4,4,803,807],[315,3,3,807,810],[316,1,1,810,811],[317,2,2,811,813],[318,3,2,813,815],[319,2,1,815,816],[320,4,4,816,820],[321,1,1,820,821],[322,10,7,821,828],[323,3,3,828,831],[324,5,4,831,835],[325,2,2,835,837],[326,4,2,837,839],[327,8,8,839,847],[328,5,5,847,852],[329,6,5,852,857],[330,6,6,857,863],[331,2,2,863,865],[332,7,5,865,870],[333,9,6,870,876],[334,2,2,876,878],[335,21,18,878,896],[336,6,6,896,902],[337,6,5,902,907]]],[12,38,37,907,944,[[338,1,1,907,908],[339,1,1,908,909],[341,2,2,909,911],[343,3,2,911,913],[346,1,1,913,914],[347,2,2,914,916],[348,2,2,916,918],[349,2,2,918,920],[350,1,1,920,921],[353,4,4,921,925],[354,6,6,925,931],[355,2,2,931,933],[356,3,3,933,936],[357,1,1,936,937],[358,1,1,937,938],[359,1,1,938,939],[364,1,1,939,940],[365,1,1,940,941],[366,3,3,941,944]]],[13,90,83,944,1027,[[367,6,6,944,950],[368,6,5,950,955],[369,3,3,955,958],[370,2,2,958,960],[371,2,2,960,962],[372,5,5,962,967],[373,3,3,967,970],[374,3,2,970,972],[375,6,6,972,978],[376,7,6,978,984],[377,1,1,984,985],[378,2,2,985,987],[380,1,1,987,988],[381,1,1,988,989],[383,1,1,989,990],[384,5,5,990,995],[387,2,2,995,997],[389,3,3,997,1000],[391,5,3,1000,1003],[392,1,1,1003,1004],[393,1,1,1004,1005],[395,2,2,1005,1007],[396,2,2,1007,1009],[397,2,2,1009,1011],[398,6,5,1011,1016],[399,2,2,1016,1018],[400,9,8,1018,1026],[401,1,1,1026,1027]]],[14,5,5,1027,1032,[[403,1,1,1027,1028],[404,1,1,1028,1029],[405,1,1,1029,1030],[409,1,1,1030,1031],[412,1,1,1031,1032]]],[15,48,46,1032,1078,[[413,3,3,1032,1035],[414,9,8,1035,1043],[415,1,1,1043,1044],[417,10,10,1044,1054],[418,3,3,1054,1057],[419,1,1,1057,1058],[420,5,5,1058,1063],[421,7,6,1063,1069],[422,1,1,1069,1070],[423,1,1,1070,1071],[424,1,1,1071,1072],[425,6,6,1072,1078]]],[16,36,33,1078,1111,[[426,1,1,1078,1079],[427,1,1,1079,1080],[428,6,5,1080,1085],[429,6,5,1085,1090],[430,5,5,1090,1095],[431,6,6,1095,1101],[432,2,2,1101,1103],[433,3,3,1103,1106],[434,6,5,1106,1111]]],[17,6,6,1111,1117,[[436,3,3,1111,1114],[437,1,1,1114,1115],[469,1,1,1115,1116],[477,1,1,1116,1117]]],[18,24,23,1117,1140,[[478,2,2,1117,1119],[480,1,1,1119,1120],[493,1,1,1120,1121],[512,2,2,1121,1123],[515,1,1,1123,1124],[517,1,1,1124,1125],[518,1,1,1125,1126],[555,2,2,1126,1128],[556,2,1,1128,1129],[573,1,1,1129,1130],[582,1,1,1130,1131],[586,2,2,1131,1133],[592,1,1,1133,1134],[596,1,1,1134,1135],[604,1,1,1135,1136],[612,1,1,1136,1137],[622,1,1,1137,1138],[623,1,1,1138,1139],[625,1,1,1139,1140]]],[19,2,2,1140,1142,[[652,1,1,1140,1141],[658,1,1,1141,1142]]],[20,25,24,1142,1166,[[659,2,2,1142,1144],[661,2,1,1144,1145],[662,4,4,1145,1149],[663,1,1,1149,1150],[664,2,2,1150,1152],[665,5,5,1152,1157],[666,5,5,1157,1162],[667,4,4,1162,1166]]],[22,44,39,1166,1205,[[679,2,2,1166,1168],[680,1,1,1168,1169],[685,5,4,1169,1173],[694,1,1,1173,1174],[697,1,1,1174,1175],[700,1,1,1175,1176],[705,1,1,1176,1177],[707,1,1,1177,1178],[708,1,1,1178,1179],[714,3,3,1179,1182],[715,2,2,1182,1184],[716,2,1,1184,1185],[717,6,4,1185,1189],[724,1,1,1189,1190],[727,2,2,1190,1192],[728,1,1,1192,1193],[733,2,2,1193,1195],[734,3,2,1195,1197],[736,1,1,1197,1198],[737,1,1,1198,1199],[738,1,1,1199,1200],[741,1,1,1200,1201],[743,2,2,1201,1203],[744,2,2,1203,1205]]],[23,162,150,1205,1355,[[745,3,3,1205,1208],[746,2,2,1208,1210],[747,1,1,1210,1211],[751,5,5,1211,1216],[754,2,1,1216,1217],[755,2,2,1217,1219],[757,1,1,1219,1220],[758,1,1,1220,1221],[760,5,4,1221,1225],[761,3,3,1225,1228],[762,2,2,1228,1230],[763,3,3,1230,1233],[764,1,1,1233,1234],[765,1,1,1234,1235],[766,1,1,1235,1236],[767,2,2,1236,1238],[768,2,2,1238,1240],[769,3,3,1240,1243],[770,4,4,1243,1247],[771,4,4,1247,1251],[772,4,4,1251,1255],[773,7,7,1255,1262],[774,4,4,1262,1266],[775,3,3,1266,1269],[776,8,8,1269,1277],[777,2,1,1277,1278],[778,1,1,1278,1279],[779,5,5,1279,1284],[780,8,7,1284,1291],[782,11,10,1291,1301],[783,1,1,1301,1302],[784,5,4,1302,1306],[785,11,9,1306,1315],[786,5,4,1315,1319],[787,4,4,1319,1323],[788,10,10,1323,1333],[789,1,1,1333,1334],[790,1,1,1334,1335],[791,1,1,1335,1336],[793,4,3,1336,1339],[794,7,6,1339,1345],[795,4,4,1345,1349],[796,7,6,1349,1355]]],[24,3,3,1355,1358,[[797,1,1,1355,1356],[798,2,2,1356,1358]]],[25,127,110,1358,1468,[[802,3,3,1358,1361],[803,2,2,1361,1363],[804,3,3,1363,1366],[805,2,2,1366,1368],[806,5,4,1368,1372],[808,2,1,1372,1373],[809,4,4,1373,1377],[811,4,4,1377,1381],[812,3,3,1381,1384],[813,5,5,1384,1389],[814,5,4,1389,1393],[815,5,4,1393,1397],[817,5,4,1397,1401],[818,3,2,1401,1403],[819,10,6,1403,1409],[821,5,4,1409,1413],[822,1,1,1413,1414],[823,2,2,1414,1416],[825,1,1,1416,1417],[827,2,2,1417,1419],[828,1,1,1419,1420],[829,1,1,1420,1421],[830,1,1,1421,1422],[832,2,2,1422,1424],[834,5,3,1424,1427],[835,1,1,1427,1428],[837,6,6,1428,1434],[838,1,1,1434,1435],[839,2,2,1435,1437],[840,4,3,1437,1440],[841,5,4,1440,1444],[842,3,3,1444,1447],[843,5,5,1447,1452],[844,6,5,1452,1457],[845,7,7,1457,1464],[846,1,1,1464,1465],[847,1,1,1465,1466],[848,2,1,1466,1467],[849,1,1,1467,1468]]],[26,13,11,1468,1479,[[850,5,3,1468,1471],[857,1,1,1471,1472],[858,4,4,1472,1476],[859,3,3,1476,1479]]],[27,3,3,1479,1482,[[862,1,1,1479,1480],[863,1,1,1480,1481],[873,1,1,1481,1482]]],[28,3,3,1482,1485,[[876,1,1,1482,1483],[877,2,2,1483,1485]]],[29,3,3,1485,1488,[[881,1,1,1485,1486],[882,1,1,1486,1487],[884,1,1,1487,1488]]],[30,1,1,1488,1489,[[888,1,1,1488,1489]]],[31,6,6,1489,1495,[[889,1,1,1489,1490],[890,1,1,1490,1491],[891,3,3,1491,1494],[892,1,1,1494,1495]]],[32,4,4,1495,1499,[[893,1,1,1495,1496],[895,1,1,1496,1497],[896,1,1,1497,1498],[897,1,1,1498,1499]]],[34,1,1,1499,1500,[[905,1,1,1499,1500]]],[35,1,1,1500,1501,[[906,1,1,1500,1501]]],[36,4,4,1501,1505,[[909,1,1,1501,1502],[910,3,3,1502,1505]]],[37,12,12,1505,1517,[[911,1,1,1505,1506],[913,1,1,1506,1507],[914,1,1,1507,1508],[918,4,4,1508,1512],[921,1,1,1512,1513],[924,4,4,1513,1517]]],[38,3,3,1517,1520,[[926,1,1,1517,1518],[928,2,2,1518,1520]]]],[30,110,154,158,159,161,163,164,167,178,181,182,184,200,207,208,215,217,221,222,273,299,303,318,319,334,341,353,359,364,367,377,448,468,502,504,511,525,535,536,582,588,591,593,594,598,623,627,645,657,663,676,693,697,791,793,795,863,865,874,885,892,894,916,935,951,969,971,974,975,994,1009,1013,1016,1017,1064,1071,1093,1105,1106,1137,1149,1152,1154,1155,1157,1171,1179,1248,1266,1273,1326,1339,1358,1368,1369,1371,1387,1418,1421,1501,1502,1503,1505,1634,1684,1687,1702,1703,1705,1706,1761,1763,1767,1789,1811,1813,1814,1838,1845,1901,1970,2000,2007,2013,2016,2017,2019,2023,2034,2042,2055,2058,2061,2062,2068,2077,2129,2157,2166,2184,2197,2204,2216,2221,2240,2337,2349,2357,2358,2359,2368,2382,2388,2426,2427,2431,2439,2451,2461,2489,2490,2497,2506,2528,2541,2553,2567,2617,2655,2669,2696,2706,2716,2723,2750,2753,2757,2762,2770,2781,2782,2783,2787,2788,2792,2793,2803,2804,2813,2830,2833,2835,2841,2843,2852,2856,2867,2883,2886,2888,2898,2899,2906,2927,2933,2942,2943,2948,2980,2999,3006,3007,3031,3044,3103,3127,3128,3129,3138,3139,3140,3147,3152,3178,3180,3188,3190,3199,3201,3214,3216,3219,3238,3240,3243,3245,3248,3250,3279,3320,3324,3327,3328,3329,3363,3364,3366,3372,3387,3431,3432,3476,3499,3513,3514,3564,3579,3598,3609,3654,3658,3692,3759,3768,3769,3809,3827,3844,3939,3959,3963,3970,3978,4028,4049,4094,4106,4107,4122,4165,4176,4183,4224,4225,4226,4227,4228,4302,4303,4307,4309,4325,4355,4360,4372,4377,4410,4413,4415,4442,4485,4648,4682,4687,4699,4716,4818,4878,4895,4909,4922,4923,4928,4933,4938,4974,4983,4996,4999,5000,5007,5012,5014,5021,5022,5036,5038,5044,5061,5064,5067,5074,5079,5080,5081,5089,5117,5150,5164,5188,5200,5207,5214,5233,5241,5248,5251,5252,5253,5254,5258,5287,5292,5299,5311,5317,5321,5337,5338,5353,5356,5366,5373,5374,5376,5378,5400,5402,5404,5420,5421,5432,5433,5434,5441,5464,5495,5508,5510,5519,5533,5539,5556,5568,5569,5577,5580,5600,5611,5634,5646,5654,5681,5688,5690,5694,5701,5710,5724,5740,5807,5840,5854,5867,5869,5879,5882,5900,5909,5920,5935,5966,5970,5971,5972,5973,5974,5975,5991,6000,6007,6013,6015,6018,6019,6020,6037,6046,6047,6061,6092,6094,6096,6099,6101,6103,6109,6111,6118,6122,6126,6130,6158,6163,6170,6171,6179,6193,6195,6201,6209,6210,6218,6248,6282,6306,6307,6309,6329,6332,6378,6425,6428,6436,6442,6455,6456,6461,6463,6464,6491,6496,6502,6507,6521,6552,6557,6565,6587,6601,6608,6612,6665,6675,6679,6682,6684,6685,6695,6696,6699,6705,6712,6713,6723,6724,6740,6745,6750,6760,6779,6786,6787,6788,6789,6792,6798,6799,6802,6819,6829,6855,6894,6895,6897,6898,6943,6948,6952,6956,6960,6979,6982,7000,7003,7015,7021,7036,7046,7058,7064,7066,7107,7110,7113,7114,7115,7158,7160,7166,7167,7173,7177,7178,7183,7187,7188,7199,7201,7229,7254,7262,7264,7274,7293,7331,7346,7376,7378,7380,7396,7397,7410,7461,7466,7474,7488,7493,7507,7509,7510,7515,7525,7527,7528,7529,7532,7535,7536,7551,7563,7567,7631,7644,7645,7655,7680,7691,7724,7728,7779,7789,7793,7798,7810,7857,7858,7867,7872,7882,7883,7891,7900,7916,7921,7932,7937,7977,7980,7982,7987,7994,7996,7997,7999,8000,8016,8032,8033,8052,8053,8054,8060,8073,8100,8101,8102,8104,8106,8112,8159,8160,8169,8174,8183,8189,8191,8202,8205,8216,8220,8236,8238,8253,8256,8279,8281,8286,8301,8307,8317,8333,8336,8371,8374,8375,8376,8378,8382,8391,8395,8403,8411,8419,8425,8430,8440,8447,8451,8456,8458,8460,8461,8465,8471,8474,8478,8479,8487,8506,8510,8518,8530,8564,8565,8569,8585,8587,8594,8669,8697,8702,8746,8758,8762,8766,8773,8775,8781,8813,8814,8824,8828,8829,8873,8877,8884,8887,8918,8937,8952,8953,8963,8974,8975,8976,8982,8985,8989,8990,9001,9005,9009,9010,9012,9025,9026,9028,9029,9031,9035,9041,9049,9051,9054,9055,9070,9072,9074,9076,9081,9083,9085,9090,9093,9106,9115,9133,9135,9138,9141,9145,9146,9149,9150,9157,9159,9161,9164,9183,9187,9193,9194,9195,9198,9201,9204,9205,9210,9227,9240,9247,9254,9256,9261,9272,9280,9290,9297,9303,9305,9308,9310,9313,9316,9320,9322,9365,9379,9388,9412,9417,9418,9459,9493,9496,9497,9519,9525,9533,9535,9539,9554,9556,9564,9565,9578,9585,9603,9620,9650,9651,9686,9690,9720,9731,9733,9739,9750,9793,9798,9814,9815,9822,9823,9827,9829,9834,9838,9839,9854,9862,9868,9869,9879,9883,9905,9924,9928,9931,9941,9946,9951,9956,9959,9961,9973,9974,9979,9980,9981,9985,9992,9997,9998,10021,10027,10028,10029,10036,10050,10059,10082,10094,10107,10111,10113,10115,10116,10126,10127,10130,10131,10136,10140,10158,10160,10172,10173,10176,10177,10178,10180,10181,10182,10183,10184,10185,10187,10189,10190,10191,10193,10197,10202,10205,10206,10207,10209,10211,10221,10232,10233,10235,10247,10250,10295,10315,10418,10426,10464,10503,10617,10666,10670,10690,10691,10735,10740,10774,10821,10832,10852,10859,10865,10868,10871,10873,10883,10886,10897,10901,10916,10921,10923,10929,10951,10966,11137,11155,11180,11191,11194,11197,11199,11205,11206,11207,11209,11217,11218,11219,11223,11228,11230,11233,11244,11257,11265,11269,11273,11287,11292,11293,11315,11316,11331,11334,11341,11352,11357,11365,11367,11370,11377,11387,11391,11399,11401,11403,11404,11405,11413,11427,11440,11442,11488,11498,11533,11544,11554,11557,11558,11572,11631,11640,11660,11664,11665,11714,11722,11731,11736,11757,11793,11807,11841,11844,11873,11875,11882,11884,11889,11893,11906,11916,11923,11937,11943,11949,11954,11955,11956,11961,11966,11990,12020,12090,12109,12184,12270,12299,12304,12305,12312,12314,12315,12317,12319,12324,12325,12326,12352,12384,12385,12386,12391,12393,12395,12396,12397,12399,12401,12412,12415,12417,12485,12494,12496,12505,12507,12508,12517,12528,12529,12543,12546,12547,12579,12591,12625,12672,12678,12685,12688,12690,12693,12718,12734,12748,12749,12751,12753,12759,12763,12769,12770,12773,12779,12781,12783,12784,12787,12791,12795,12797,12801,12803,12806,12807,12812,12817,12820,12823,12826,12835,12849,12850,12852,12854,12879,12880,12881,12895,13702,13933,13940,13942,13963,14095,14418,14421,14504,14529,14550,15117,15124,15191,15477,15611,15766,15771,15838,15961,16126,16193,16338,16347,16375,17141,17285,17328,17331,17370,17382,17384,17396,17397,17402,17419,17427,17447,17449,17450,17451,17458,17467,17470,17472,17474,17475,17476,17478,17479,17481,17683,17684,17686,17798,17799,17800,17807,17982,18021,18077,18152,18205,18240,18341,18350,18352,18358,18386,18397,18414,18416,18418,18419,18596,18643,18645,18672,18741,18751,18757,18758,18788,18821,18833,18873,18907,18917,18923,18941,18947,18953,18963,18978,18993,19020,19120,19126,19142,19144,19147,19226,19227,19229,19270,19294,19346,19349,19350,19351,19361,19362,19364,19388,19392,19409,19418,19422,19424,19444,19480,19518,19523,19527,19534,19535,19539,19550,19574,19580,19584,19585,19601,19604,19607,19609,19621,19625,19626,19627,19636,19643,19646,19651,19652,19660,19667,19668,19669,19670,19671,19723,19724,19728,19732,19738,19739,19740,19754,19762,19771,19773,19784,19809,19831,19833,19837,19840,19841,19844,19849,19850,19855,19865,19870,19873,19896,19901,19904,19909,19911,19914,19916,19917,19922,19923,19932,19942,19951,19952,19954,19959,19960,19964,19967,19968,19969,19970,19971,19973,19978,19985,19992,19995,20002,20003,20007,20010,20011,20012,20014,20020,20022,20026,20031,20034,20035,20037,20041,20058,20074,20146,20147,20161,20167,20187,20195,20203,20210,20211,20236,20260,20272,20276,20278,20290,20291,20293,20296,20308,20317,20349,20354,20489,20490,20492,20495,20500,20503,20505,20512,20533,20538,20552,20553,20560,20561,20592,20608,20610,20613,20617,20634,20640,20648,20653,20667,20679,20680,20690,20692,20694,20705,20707,20711,20722,20727,20728,20735,20738,20753,20754,20799,20814,20816,20825,20844,20845,20870,20871,20873,20875,20876,20877,20901,20921,20927,20938,20948,20980,20990,21080,21118,21119,21148,21182,21201,21239,21244,21293,21296,21307,21315,21363,21366,21377,21387,21390,21395,21422,21445,21447,21452,21465,21469,21478,21481,21497,21499,21535,21538,21548,21553,21559,21560,21564,21565,21573,21575,21580,21583,21591,21604,21608,21609,21613,21614,21621,21624,21643,21659,21684,21711,21745,21755,21757,21982,21995,21999,22000,22003,22022,22026,22027,22095,22117,22260,22292,22336,22337,22396,22411,22460,22530,22536,22557,22560,22566,22568,22579,22580,22613,22626,22640,22784,22793,22849,22858,22860,22873,22886,22921,22923,22992,22993,22996,22999,23041,23080,23083,23086,23087,23115,23139,23141]]],["the",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9021]]],["them",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1444]]],["they",[2,2,[[4,1,1,0,1,[[175,1,1,0,1]]],[22,1,1,1,2,[[727,1,1,1,2]]]],[5504,18659]]],["things",[2,2,[[1,1,1,0,1,[[59,1,1,0,1]]],[5,1,1,1,2,[[187,1,1,1,2]]]],[1779,5868]]],["though",[3,3,[[17,1,1,0,1,[[445,1,1,0,1]]],[20,1,1,1,2,[[666,1,1,1,2]]],[37,1,1,2,3,[[920,1,1,2,3]]]],[13105,17475,23022]]],["what",[76,72,[[0,4,4,0,4,[[8,1,1,0,1],[33,1,1,1,2],[40,2,2,2,4]]],[1,4,4,4,8,[[53,2,2,4,6],[55,1,1,6,7],[68,1,1,7,8]]],[3,4,4,8,12,[[126,1,1,8,9],[140,2,2,9,11],[147,1,1,11,12]]],[4,11,10,12,22,[[153,3,2,12,14],[156,1,1,14,15],[159,1,1,15,16],[160,1,1,16,17],[163,3,3,17,20],[176,1,1,20,21],[177,1,1,21,22]]],[5,3,3,22,25,[[188,1,1,22,23],[195,1,1,23,24],[210,1,1,24,25]]],[6,1,1,25,26,[[224,1,1,25,26]]],[7,2,2,26,28,[[233,1,1,26,27],[234,1,1,27,28]]],[8,6,6,28,34,[[245,1,1,28,29],[250,1,1,29,30],[251,1,1,30,31],[256,1,1,31,32],[263,2,2,32,34]]],[9,6,5,34,39,[[281,1,1,34,35],[284,1,1,35,36],[285,3,2,36,38],[287,1,1,38,39]]],[10,8,7,39,46,[[292,3,2,39,41],[303,1,1,41,42],[306,1,1,42,43],[308,1,1,43,44],[310,1,1,44,45],[312,1,1,45,46]]],[11,3,3,46,49,[[319,1,1,46,47],[331,1,1,47,48],[334,1,1,48,49]]],[13,1,1,49,50,[[384,1,1,49,50]]],[15,1,1,50,51,[[416,1,1,50,51]]],[16,3,2,51,53,[[427,3,2,51,53]]],[18,2,2,53,55,[[523,1,1,53,54],[543,1,1,54,55]]],[19,1,1,55,56,[[650,1,1,55,56]]],[20,1,1,56,57,[[668,1,1,56,57]]],[22,5,5,57,62,[[683,1,1,57,58],[699,1,1,58,59],[711,1,1,59,60],[715,1,1,60,61],[719,1,1,61,62]]],[23,4,4,62,66,[[750,1,1,62,63],[751,1,1,63,64],[767,1,1,64,65],[776,1,1,65,66]]],[25,3,3,66,69,[[803,1,1,66,67],[809,1,1,67,68],[848,1,1,68,69]]],[26,2,2,69,71,[[857,1,1,69,70],[859,1,1,70,71]]],[32,1,1,71,72,[[898,1,1,71,72]]]],[229,991,1220,1250,1613,1616,1656,2030,4020,4459,4460,4714,4914,4925,5007,5129,5139,5212,5213,5214,5534,5564,5879,6040,6483,6915,7167,7176,7426,7576,7598,7774,7944,7951,8410,8499,8546,8548,8591,8775,8779,9196,9288,9354,9430,9494,9719,10072,10164,11555,12379,12725,12739,14622,14889,17045,17507,17744,18041,18292,18363,18473,19107,19131,19509,19755,20500,20616,21702,21980,22029,22649]]],["whatsoever",[5,5,[[3,1,1,0,1,[[121,1,1,0,1]]],[6,1,1,1,2,[[221,1,1,1,2]]],[8,1,1,2,3,[[260,1,1,2,3]]],[10,1,1,3,4,[[300,1,1,3,4]]],[13,1,1,4,5,[[375,1,1,4,5]]]],[3802,6860,7869,9092,11376]]],["when",[81,79,[[0,13,13,0,13,[[5,1,1,0,1],[11,1,1,1,2],[19,1,1,2,3],[23,1,1,3,4],[26,1,1,4,5],[28,1,1,5,6],[29,2,2,6,8],[31,1,1,8,9],[36,1,1,9,10],[39,2,2,10,12],[42,1,1,12,13]]],[1,4,3,13,16,[[54,1,1,13,14],[66,2,1,14,15],[78,1,1,15,16]]],[2,1,1,16,17,[[95,1,1,16,17]]],[3,5,5,17,22,[[121,2,2,17,19],[125,2,2,19,21],[142,1,1,21,22]]],[4,3,3,22,25,[[154,2,2,22,24],[179,1,1,24,25]]],[5,3,3,25,28,[[190,2,2,25,27],[191,1,1,27,28]]],[6,3,3,28,31,[[213,1,1,28,29],[221,2,2,29,31]]],[8,7,7,31,38,[[236,1,1,31,32],[241,1,1,32,33],[243,2,2,33,35],[259,2,2,35,37],[261,1,1,37,38]]],[9,3,3,38,41,[[278,1,1,38,39],[282,1,1,39,40],[286,1,1,40,41]]],[10,4,4,41,45,[[298,2,2,41,43],[299,1,1,43,44],[312,1,1,44,45]]],[11,1,1,45,46,[[317,1,1,45,46]]],[13,5,5,46,51,[[371,1,1,46,47],[372,1,1,47,48],[384,1,1,48,49],[391,1,1,49,50],[401,1,1,50,51]]],[15,10,10,51,61,[[414,1,1,51,52],[416,4,4,52,56],[417,1,1,56,57],[418,2,2,57,59],[419,1,1,59,60],[425,1,1,60,61]]],[16,1,1,61,62,[[434,1,1,61,62]]],[18,3,3,62,65,[[533,1,1,62,63],[555,1,1,63,64],[616,1,1,64,65]]],[20,3,3,65,68,[[663,1,1,65,66],[666,1,1,66,67],[670,1,1,67,68]]],[22,4,3,68,71,[[704,1,1,68,69],[707,2,1,69,70],[709,1,1,70,71]]],[23,3,3,71,74,[[778,1,1,71,72],[782,1,1,72,73],[783,1,1,73,74]]],[25,3,3,74,77,[[803,1,1,74,75],[836,1,1,75,76],[838,1,1,76,77]]],[28,1,1,77,78,[[878,1,1,77,78]]],[38,1,1,78,79,[[927,1,1,78,79]]]],[141,309,508,643,767,805,855,868,930,1106,1185,1186,1292,1645,1994,2366,2876,3821,3822,3985,3986,4553,4954,4960,5587,5911,5921,5942,6586,6834,6836,7236,7337,7370,7375,7840,7857,7925,8307,8442,8566,8994,9015,9061,9505,9673,11278,11311,11566,11707,11986,12310,12360,12366,12371,12374,12388,12402,12417,12421,12690,12835,14761,15155,16254,17398,17465,17524,18139,18201,18254,19819,19923,19927,20494,21355,21415,22344,23137]]],["whence",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12371]]],["where",[43,43,[[0,4,4,0,4,[[34,3,3,0,3],[38,1,1,3,4]]],[1,2,2,4,6,[[61,1,1,4,5],[69,1,1,5,6]]],[2,5,5,6,11,[[93,2,2,6,8],[95,1,1,8,9],[96,1,1,9,10],[103,1,1,10,11]]],[3,2,2,11,13,[[125,1,1,11,12],[138,1,1,12,13]]],[4,3,3,13,16,[[153,1,1,13,14],[160,1,1,14,15],[163,1,1,15,16]]],[5,1,1,16,17,[[190,1,1,16,17]]],[6,4,4,17,21,[[215,1,1,17,18],[227,2,2,18,20],[228,1,1,20,21]]],[7,1,1,21,22,[[232,1,1,21,22]]],[8,3,3,22,25,[[255,1,1,22,23],[258,2,2,23,25]]],[9,2,2,25,27,[[268,1,1,25,26],[281,1,1,26,27]]],[10,2,2,27,29,[[303,1,1,27,28],[311,1,1,28,29]]],[13,2,2,29,31,[[369,1,1,29,30],[391,1,1,30,31]]],[14,1,1,31,32,[[403,1,1,31,32]]],[17,1,1,32,33,[[474,1,1,32,33]]],[18,1,1,33,34,[[561,1,1,33,34]]],[20,1,1,34,35,[[666,1,1,34,35]]],[22,1,1,35,36,[[742,1,1,35,36]]],[23,3,3,36,39,[[751,1,1,36,37],[760,1,1,37,38],[786,1,1,38,39]]],[25,3,3,39,42,[[812,1,1,39,40],[822,1,1,40,41],[847,1,1,41,42]]],[27,1,1,42,43,[[862,1,1,42,43]]]],[1024,1025,1026,1169,1829,2075,2819,2828,2874,2881,3124,3982,4401,4923,5152,5218,5913,6650,6988,6989,7003,7143,7749,7832,7833,8072,8421,9209,9470,11230,11708,12020,13864,15262,17468,18896,19131,19349,19989,20672,20974,21675,22104]]],["whereabout",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7774]]],["whereby",[17,15,[[2,1,1,0,1,[[111,1,1,0,1]]],[3,2,2,1,3,[[121,1,1,1,2],[133,1,1,2,3]]],[4,2,2,3,5,[[159,1,1,3,4],[180,1,1,4,5]]],[23,6,4,5,9,[[747,1,1,5,6],[761,1,1,6,7],[767,1,1,7,8],[777,3,1,8,9]]],[25,5,5,9,14,[[819,1,1,9,10],[840,1,1,10,11],[841,1,1,11,12],[847,1,1,12,13],[848,1,1,13,14]]],[35,1,1,14,15,[[907,1,1,14,15]]]],[3374,3800,4249,5130,5631,19010,19376,19490,19783,20880,21474,21526,21664,21692,22813]]],["wherein",[69,67,[[0,4,4,0,4,[[0,1,1,0,1],[5,1,1,1,2],[6,1,1,2,3],[20,1,1,3,4]]],[1,4,4,4,8,[[50,1,1,4,5],[55,1,1,5,6],[61,1,1,6,7],[67,1,1,7,8]]],[2,9,9,8,17,[[93,1,1,8,9],[94,1,1,9,10],[95,1,1,10,11],[100,1,1,11,12],[102,4,4,12,16],[107,1,1,16,17]]],[3,5,4,17,21,[[128,2,1,17,18],[135,1,1,18,19],[149,1,1,19,20],[151,1,1,20,21]]],[4,4,4,21,25,[[160,1,1,21,22],[164,1,1,22,23],[169,1,1,23,24],[180,1,1,24,25]]],[5,4,4,25,29,[[194,1,1,25,26],[208,2,2,26,28],[210,1,1,28,29]]],[6,1,1,29,30,[[228,1,1,29,30]]],[8,1,1,30,31,[[241,1,1,30,31]]],[9,1,1,31,32,[[273,1,1,31,32]]],[10,3,3,32,35,[[292,1,1,32,33],[298,1,1,33,34],[303,1,1,34,35]]],[11,3,3,35,38,[[324,1,1,35,36],[326,1,1,36,37],[330,1,1,37,38]]],[13,3,3,38,41,[[372,1,1,38,39],[374,1,1,39,40],[399,1,1,40,41]]],[15,2,2,41,43,[[421,2,2,41,43]]],[16,2,2,43,45,[[430,1,1,43,44],[434,1,1,44,45]]],[20,2,2,45,47,[[661,1,1,45,46],[666,1,1,46,47]]],[22,4,4,47,51,[[692,1,1,47,48],[714,1,1,48,49],[725,1,1,49,50],[743,1,1,50,51]]],[23,6,5,51,56,[[749,1,1,51,52],[751,1,1,52,53],[764,2,1,53,54],[780,1,1,54,55],[786,1,1,55,56]]],[25,8,8,56,64,[[821,3,3,56,59],[824,1,1,59,60],[838,2,2,60,62],[843,1,1,62,63],[845,1,1,63,64]]],[27,1,1,64,65,[[863,1,1,64,65]]],[31,1,1,65,66,[[892,1,1,65,66]]],[35,1,1,66,67,[[908,1,1,66,67]]]],[29,154,174,536,1546,1659,1823,2010,2818,2848,2877,3029,3098,3104,3106,3109,3254,4070,4291,4815,4878,5146,5247,5365,5663,6026,6445,6459,6493,6999,7346,8187,8796,9035,9215,9852,9902,10043,11309,11347,11927,12523,12530,12790,12856,17368,17467,17931,18334,18611,18909,19075,19133,19436,19856,19978,20929,20936,20938,21026,21420,21422,21566,21618,22118,22579,22831]]],["whereof",[21,21,[[2,1,1,0,1,[[95,1,1,0,1]]],[3,2,2,1,3,[[121,1,1,1,2],[137,1,1,2,3]]],[4,3,3,3,6,[[165,1,1,3,4],[180,2,2,4,6]]],[5,3,3,6,9,[[200,1,1,6,7],[206,1,1,7,8],[208,1,1,8,9]]],[8,1,1,9,10,[[245,1,1,9,10]]],[11,2,2,10,12,[[325,1,1,10,11],[329,1,1,11,12]]],[13,2,2,12,14,[[372,1,1,12,13],[399,1,1,13,14]]],[17,1,1,14,15,[[441,1,1,14,15]]],[23,3,3,15,18,[[776,2,2,15,17],[786,1,1,17,18]]],[25,1,1,18,19,[[840,1,1,18,19]]],[26,1,1,19,20,[[858,1,1,19,20]]],[27,1,1,20,21,[[863,1,1,20,21]]]],[2879,3795,4356,5274,5638,5679,6199,6374,6435,7434,9885,9995,11302,11912,12982,19767,19774,19991,21456,21990,22117]]],["whereon",[2,2,[[4,1,1,0,1,[[163,1,1,0,1]]],[5,1,1,1,2,[[200,1,1,1,2]]]],[5232,6196]]],["wheresoever",[1,1,[[11,1,1,0,1,[[320,1,1,0,1]]]],[9728]]],["whereto",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18751]]],["whereunto",[4,4,[[3,2,2,0,2,[[152,2,2,0,2]]],[16,1,1,2,3,[[435,1,1,2,3]]],[25,1,1,3,4,[[806,1,1,3,4]]]],[4882,4883,12868,20555]]],["wherewith",[65,63,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,5,5,1,6,[[52,1,1,1,2],[53,1,1,2,3],[65,1,1,3,4],[66,1,1,4,5],[78,1,1,5,6]]],[3,17,16,6,22,[[119,1,1,6,7],[120,3,3,7,10],[132,1,1,10,11],[141,1,1,11,12],[146,8,7,12,19],[151,3,3,19,22]]],[4,8,8,22,30,[[161,1,1,22,23],[167,1,1,23,24],[174,1,1,24,25],[180,4,4,25,29],[185,1,1,29,30]]],[5,1,1,30,31,[[194,1,1,30,31]]],[6,2,2,31,33,[[219,2,2,31,33]]],[9,2,1,33,34,[[279,2,1,33,34]]],[10,7,7,34,41,[[298,1,1,34,35],[305,4,4,35,39],[306,1,1,39,40],[311,1,1,40,41]]],[11,4,4,41,45,[[325,1,1,41,42],[333,1,1,42,43],[335,1,1,43,44],[337,1,1,44,45]]],[13,2,2,45,47,[[368,1,1,45,46],[382,1,1,46,47]]],[15,1,1,47,48,[[421,1,1,47,48]]],[18,2,2,48,50,[[556,1,1,48,49],[566,1,1,49,50]]],[22,1,1,50,51,[[715,1,1,50,51]]],[23,5,5,51,56,[[762,1,1,51,52],[763,1,1,52,53],[765,1,1,53,54],[777,1,1,54,55],[796,1,1,55,56]]],[24,1,1,56,57,[[797,1,1,56,57]]],[25,4,4,57,61,[[814,2,2,57,59],[830,1,1,59,60],[841,1,1,60,61]]],[37,2,2,61,63,[[924,2,2,61,63]]]],[768,1588,1618,1979,1988,2369,3723,3752,3755,3757,4233,4489,4652,4653,4654,4655,4656,4657,4659,4862,4863,4868,5176,5333,5482,5664,5666,5668,5678,5811,6028,6763,6792,8332,9044,9271,9275,9279,9283,9309,9473,9883,10135,10191,10236,11228,11515,12545,15197,15377,18358,19394,19416,19444,19791,20294,20322,20720,20728,21203,21519,23080,23086]]],["whether",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12773]]],["which",[1777,1609,[[0,154,138,0,138,[[0,5,3,0,3],[1,4,3,3,6],[2,3,3,6,9],[3,1,1,9,10],[4,1,1,10,11],[5,3,3,11,14],[6,1,1,14,15],[7,1,1,15,16],[8,3,3,16,19],[10,2,2,19,21],[12,3,3,21,24],[13,5,4,24,28],[15,1,1,28,29],[16,3,3,29,32],[17,3,3,32,35],[18,4,4,35,39],[19,2,2,39,41],[20,4,4,41,45],[21,4,4,45,49],[22,6,3,49,52],[23,4,3,52,55],[24,4,4,55,59],[25,6,5,59,64],[26,5,5,64,69],[27,3,3,69,72],[28,1,1,72,73],[29,4,4,73,77],[30,5,4,77,81],[31,3,3,81,84],[32,3,3,84,87],[33,3,2,87,89],[34,7,5,89,94],[35,2,2,94,96],[36,1,1,96,97],[37,2,2,97,99],[38,5,5,99,104],[39,1,1,104,105],[40,6,5,105,110],[41,2,2,110,112],[42,2,2,112,114],[43,2,2,114,116],[44,3,2,116,118],[45,8,8,118,126],[46,2,2,126,128],[47,2,2,128,130],[48,3,2,130,132],[49,6,6,132,138]]],[1,98,92,138,230,[[50,2,2,138,140],[52,2,2,140,142],[53,5,5,142,147],[54,2,2,147,149],[55,1,1,149,150],[56,2,2,150,152],[57,2,2,152,154],[58,2,2,154,156],[59,3,3,156,159],[61,3,3,159,162],[62,3,3,162,165],[63,2,2,165,167],[64,1,1,167,168],[65,9,7,168,175],[67,2,2,175,177],[68,2,2,177,179],[69,2,2,179,181],[70,1,1,181,182],[71,1,1,182,183],[72,2,2,183,185],[73,3,3,185,188],[74,5,4,188,192],[75,1,1,192,193],[76,1,1,193,194],[77,4,4,194,198],[78,4,3,198,201],[79,1,1,201,202],[81,14,13,202,215],[82,3,2,215,217],[83,4,4,217,221],[84,3,3,221,224],[85,3,3,224,227],[86,1,1,227,228],[87,1,1,228,229],[88,1,1,229,230]]],[2,102,93,230,323,[[90,2,2,230,232],[91,1,1,232,233],[92,4,4,233,237],[93,13,10,237,247],[94,5,5,247,252],[95,8,5,252,257],[96,4,4,257,261],[97,3,3,261,264],[98,5,5,264,269],[99,3,3,269,272],[100,9,8,272,280],[102,1,1,280,281],[103,1,1,281,282],[105,7,6,282,288],[106,4,4,288,292],[107,4,4,292,296],[108,3,2,296,298],[109,3,3,298,301],[110,1,1,301,302],[111,5,5,302,307],[112,3,3,307,310],[114,6,6,310,316],[115,3,3,316,319],[116,4,4,319,323]]],[3,111,100,323,423,[[117,2,2,323,325],[119,2,2,325,327],[120,2,2,327,329],[121,2,2,329,331],[122,3,3,331,334],[124,1,1,334,335],[126,1,1,335,336],[127,4,4,336,340],[128,1,1,340,341],[129,5,4,341,345],[130,16,14,345,359],[131,4,4,359,363],[134,9,9,363,372],[135,3,2,372,374],[136,2,2,374,376],[137,4,4,376,380],[138,5,4,380,384],[139,1,1,384,385],[140,2,2,385,387],[143,5,2,387,389],[144,2,2,389,391],[146,3,3,391,394],[147,6,6,394,400],[148,6,6,400,406],[149,5,5,406,411],[150,3,2,411,413],[151,10,8,413,421],[152,2,2,421,423]]],[4,297,261,423,684,[[153,12,10,423,433],[154,5,5,433,438],[155,7,6,438,444],[156,22,18,444,462],[157,8,6,462,468],[158,14,11,468,479],[159,7,7,479,486],[160,9,8,486,494],[161,13,11,494,505],[162,7,7,505,512],[163,16,14,512,526],[164,17,13,526,539],[165,8,7,539,546],[166,7,6,546,552],[167,6,6,552,558],[168,14,14,558,572],[169,11,8,572,580],[170,9,8,580,588],[171,9,8,588,596],[172,5,5,596,601],[173,7,6,601,607],[174,3,3,607,610],[175,3,3,610,613],[176,4,3,613,616],[177,3,3,616,619],[178,9,8,619,627],[179,5,5,627,632],[180,23,22,632,654],[181,9,8,654,662],[182,6,6,662,668],[183,11,10,668,678],[184,5,3,678,681],[186,3,3,681,684]]],[5,86,76,684,760,[[187,8,7,684,691],[188,4,4,691,695],[189,1,1,695,696],[190,2,2,696,698],[191,3,2,698,700],[192,1,1,700,701],[193,5,3,701,704],[194,4,4,704,708],[195,5,5,708,713],[196,1,1,713,714],[198,4,4,714,718],[199,7,7,718,725],[200,2,1,725,726],[201,2,2,726,728],[203,1,1,728,729],[204,5,5,729,734],[205,2,2,734,736],[207,3,3,736,739],[208,6,6,739,745],[209,6,4,745,749],[210,14,11,749,760]]],[6,48,45,760,805,[[211,1,1,760,761],[212,6,5,761,766],[213,3,3,766,769],[214,2,2,769,771],[216,4,4,771,775],[218,1,1,775,776],[219,3,2,776,778],[220,3,3,778,781],[221,4,4,781,785],[223,1,1,785,786],[225,1,1,786,787],[226,4,4,787,791],[228,6,5,791,796],[229,1,1,796,797],[230,5,5,797,802],[231,3,3,802,805]]],[7,7,6,805,811,[[233,1,1,805,806],[235,6,5,806,811]]],[8,73,64,811,875,[[236,1,1,811,812],[237,4,4,812,816],[238,3,3,816,819],[241,4,4,819,823],[242,1,1,823,824],[243,2,2,824,826],[244,2,1,826,827],[245,1,1,827,828],[247,4,4,828,832],[248,3,3,832,835],[249,5,5,835,840],[250,3,3,840,843],[251,2,2,843,845],[252,3,3,845,848],[255,3,3,848,851],[258,1,1,851,852],[259,1,1,852,853],[260,7,7,853,860],[261,1,1,860,861],[263,1,1,861,862],[264,2,2,862,864],[265,18,10,864,874],[266,1,1,874,875]]],[9,35,35,875,910,[[268,2,2,875,877],[269,2,2,877,879],[270,1,1,879,880],[272,3,3,880,883],[273,2,2,883,885],[274,1,1,885,886],[278,1,1,886,887],[279,2,2,887,889],[280,2,2,889,891],[281,3,3,891,894],[282,3,3,894,897],[283,1,1,897,898],[284,2,2,898,900],[285,2,2,900,902],[286,2,2,902,904],[287,3,3,904,907],[289,1,1,907,908],[290,2,2,908,910]]],[10,142,126,910,1036,[[291,3,3,910,913],[292,5,5,913,918],[293,4,4,918,922],[294,7,6,922,928],[295,4,4,928,932],[296,3,2,932,934],[297,4,4,934,938],[298,21,17,938,955],[299,13,12,955,967],[300,7,7,967,974],[301,7,7,974,981],[302,10,8,981,989],[303,11,9,989,998],[304,7,7,998,1005],[305,7,6,1005,1011],[306,10,8,1011,1019],[307,2,2,1019,1021],[308,3,2,1021,1023],[309,3,2,1023,1025],[310,2,2,1025,1027],[311,6,6,1027,1033],[312,3,3,1033,1036]]],[11,90,81,1036,1117,[[313,3,3,1036,1039],[314,2,2,1039,1041],[315,2,2,1041,1043],[317,1,1,1043,1044],[318,1,1,1044,1045],[319,2,2,1045,1047],[320,1,1,1047,1048],[321,3,3,1048,1051],[322,5,4,1051,1055],[325,2,2,1055,1057],[326,4,3,1057,1060],[327,2,2,1060,1062],[328,2,2,1062,1064],[329,10,9,1064,1073],[330,7,7,1073,1080],[331,9,7,1080,1087],[332,4,4,1087,1091],[333,7,6,1091,1097],[334,5,5,1097,1102],[335,13,10,1102,1112],[336,2,2,1112,1114],[337,3,3,1114,1117]]],[12,21,20,1117,1137,[[340,1,1,1117,1118],[341,2,2,1118,1120],[343,1,1,1120,1121],[347,2,1,1121,1122],[349,1,1,1122,1123],[350,1,1,1123,1124],[351,1,1,1124,1125],[352,1,1,1125,1126],[353,2,2,1126,1128],[354,1,1,1128,1129],[358,3,3,1129,1132],[359,1,1,1132,1133],[360,1,1,1133,1134],[363,1,1,1134,1135],[364,1,1,1135,1136],[366,1,1,1136,1137]]],[13,94,86,1137,1223,[[367,2,2,1137,1139],[368,4,4,1139,1143],[370,2,2,1143,1145],[371,2,2,1145,1147],[372,21,17,1147,1164],[373,8,7,1164,1171],[374,4,4,1171,1175],[375,6,6,1175,1181],[376,3,3,1181,1184],[377,2,2,1184,1186],[378,3,3,1186,1189],[379,2,2,1189,1191],[381,1,1,1191,1192],[382,2,1,1192,1193],[383,1,1,1193,1194],[386,1,1,1194,1195],[388,1,1,1195,1196],[389,1,1,1196,1197],[390,1,1,1197,1198],[391,4,4,1198,1202],[392,1,1,1202,1203],[394,2,2,1203,1205],[395,2,2,1205,1207],[396,2,2,1207,1209],[398,1,1,1209,1210],[399,7,5,1210,1215],[400,4,4,1215,1219],[401,1,1,1219,1220],[402,3,3,1220,1223]]],[14,13,10,1223,1233,[[403,5,4,1223,1227],[404,2,2,1227,1229],[409,3,2,1229,1231],[411,2,1,1231,1232],[412,1,1,1232,1233]]],[15,20,19,1233,1252,[[413,4,3,1233,1236],[414,2,2,1236,1238],[416,2,2,1238,1240],[417,1,1,1240,1241],[419,2,2,1241,1243],[420,3,3,1243,1246],[421,5,5,1246,1251],[422,1,1,1251,1252]]],[16,21,19,1252,1271,[[426,4,4,1252,1256],[427,2,2,1256,1258],[428,1,1,1258,1259],[429,2,2,1259,1261],[431,2,1,1261,1262],[432,1,1,1262,1263],[433,6,5,1263,1268],[434,3,3,1268,1271]]],[17,7,7,1271,1278,[[438,1,1,1271,1272],[444,1,1,1272,1273],[450,1,1,1273,1274],[457,1,1,1274,1275],[462,1,1,1275,1276],[471,1,1,1276,1277],[475,1,1,1277,1278]]],[18,17,17,1278,1295,[[478,1,1,1278,1279],[485,1,1,1279,1280],[508,1,1,1280,1281],[543,1,1,1281,1282],[546,1,1,1282,1283],[548,2,2,1283,1285],[555,2,2,1285,1287],[557,1,1,1287,1288],[581,1,1,1288,1289],[596,5,5,1289,1294],[624,1,1,1294,1295]]],[19,2,2,1295,1297,[[649,1,1,1295,1296],[652,1,1,1296,1297]]],[20,17,15,1297,1312,[[659,1,1,1297,1298],[660,2,2,1298,1300],[661,2,2,1300,1302],[662,1,1,1302,1303],[663,3,2,1303,1305],[664,1,1,1305,1306],[665,2,2,1306,1308],[666,3,3,1308,1311],[667,2,1,1311,1312]]],[21,1,1,1312,1313,[[671,1,1,1312,1313]]],[22,50,46,1313,1359,[[679,2,2,1313,1315],[680,2,2,1315,1317],[689,3,3,1317,1320],[691,2,2,1320,1322],[695,2,2,1322,1324],[696,1,1,1324,1325],[697,3,3,1325,1328],[699,1,1,1328,1329],[700,1,1,1329,1330],[706,4,3,1330,1333],[707,1,1,1333,1334],[708,2,2,1334,1336],[709,1,1,1336,1337],[714,1,1,1337,1338],[715,6,5,1338,1343],[716,2,1,1343,1344],[717,3,3,1344,1347],[729,2,2,1347,1349],[730,2,1,1349,1350],[733,1,1,1350,1351],[737,1,1,1351,1352],[740,2,2,1352,1354],[741,1,1,1354,1355],[743,2,2,1355,1357],[744,2,2,1357,1359]]],[23,126,114,1359,1473,[[747,1,1,1359,1360],[749,1,1,1360,1361],[751,8,6,1361,1367],[752,1,1,1367,1368],[753,2,2,1368,1370],[754,1,1,1370,1371],[755,7,6,1371,1377],[756,1,1,1377,1378],[757,3,3,1378,1381],[759,1,1,1381,1382],[761,2,2,1382,1384],[762,1,1,1384,1385],[763,3,3,1385,1388],[764,2,2,1388,1390],[765,1,1,1390,1391],[766,2,2,1391,1393],[767,5,4,1393,1397],[768,2,2,1397,1399],[769,7,6,1399,1405],[770,3,3,1405,1408],[771,1,1,1408,1409],[772,3,3,1409,1412],[773,4,4,1412,1416],[776,7,6,1416,1422],[777,4,4,1422,1426],[778,8,7,1426,1433],[779,5,4,1433,1437],[780,6,6,1437,1443],[781,2,2,1443,1445],[782,1,1,1445,1446],[783,1,1,1446,1447],[784,3,3,1447,1450],[785,3,3,1450,1453],[786,4,4,1453,1457],[787,2,2,1457,1459],[788,4,4,1459,1463],[789,2,1,1463,1464],[790,3,2,1464,1466],[793,1,1,1466,1467],[795,2,2,1467,1469],[796,6,4,1469,1473]]],[24,2,2,1473,1475,[[797,1,1,1473,1474],[798,1,1,1474,1475]]],[25,90,81,1475,1556,[[804,2,2,1475,1477],[805,1,1,1477,1478],[806,3,2,1478,1480],[807,2,1,1480,1481],[809,2,2,1481,1483],[810,4,4,1483,1487],[811,1,1,1487,1488],[812,1,1,1488,1489],[813,2,2,1489,1491],[816,2,2,1491,1493],[817,8,8,1493,1501],[818,1,1,1501,1502],[819,2,2,1502,1504],[821,6,6,1504,1510],[823,3,2,1510,1512],[827,3,2,1512,1514],[828,1,1,1514,1515],[830,1,1,1515,1516],[833,7,6,1516,1522],[834,1,1,1522,1523],[836,2,2,1523,1525],[837,5,5,1525,1530],[838,1,1,1530,1531],[839,1,1,1531,1532],[840,1,1,1532,1533],[841,3,3,1533,1536],[842,4,3,1536,1539],[843,6,5,1539,1544],[844,1,1,1544,1545],[845,2,2,1545,1547],[847,1,1,1547,1548],[848,5,4,1548,1552],[849,5,4,1552,1556]]],[26,15,15,1556,1571,[[850,1,1,1556,1557],[857,4,4,1557,1561],[858,6,6,1561,1567],[860,2,2,1567,1569],[861,2,2,1569,1571]]],[27,1,1,1571,1572,[[862,1,1,1571,1572]]],[28,1,1,1572,1573,[[877,1,1,1572,1573]]],[29,7,7,1573,1580,[[879,1,1,1573,1574],[880,1,1,1574,1575],[881,1,1,1575,1576],[883,2,2,1576,1578],[887,2,2,1578,1580]]],[30,1,1,1580,1581,[[888,1,1,1580,1581]]],[31,2,2,1581,1583,[[889,1,1,1581,1582],[892,1,1,1582,1583]]],[32,4,4,1583,1587,[[893,1,1,1583,1584],[894,1,1,1584,1585],[898,1,1,1585,1586],[899,1,1,1586,1587]]],[34,1,1,1587,1588,[[903,1,1,1587,1588]]],[35,2,2,1588,1590,[[906,1,1,1588,1589],[907,1,1,1589,1590]]],[36,2,2,1590,1592,[[909,1,1,1590,1591],[910,1,1,1591,1592]]],[37,15,15,1592,1607,[[911,4,4,1592,1596],[914,2,2,1596,1598],[916,2,2,1598,1600],[917,3,3,1600,1603],[918,1,1,1603,1604],[921,1,1,1604,1605],[923,1,1,1605,1606],[924,1,1,1606,1607]]],[38,2,2,1607,1609,[[926,1,1,1607,1608],[928,1,1,1608,1609]]]],[6,20,28,32,33,52,56,58,72,90,134,139,141,152,182,189,217,220,222,271,272,322,333,336,342,351,356,360,396,407,409,418,432,441,443,462,465,476,478,498,508,515,522,538,542,549,550,556,564,580,587,588,598,615,639,664,665,667,668,694,695,707,710,724,735,742,744,754,772,777,788,795,822,856,860,867,868,889,891,916,924,938,940,960,965,968,978,981,1008,1014,1015,1017,1023,1037,1045,1046,1089,1129,1133,1150,1155,1166,1168,1172,1177,1223,1231,1238,1243,1245,1261,1290,1292,1316,1329,1332,1364,1385,1391,1392,1401,1406,1408,1411,1413,1417,1434,1442,1457,1473,1474,1503,1511,1516,1517,1519,1521,1530,1540,1547,1586,1599,1610,1619,1622,1629,1631,1640,1646,1663,1700,1702,1722,1732,1745,1761,1779,1783,1792,1832,1841,1855,1870,1872,1879,1902,1920,1946,1948,1952,1955,1962,1963,1970,1979,2002,2008,2032,2033,2053,2063,2078,2122,2160,2164,2180,2185,2189,2198,2211,2217,2235,2265,2293,2297,2301,2319,2331,2363,2371,2374,2419,2439,2440,2441,2442,2445,2446,2449,2452,2458,2461,2470,2472,2473,2474,2480,2497,2506,2507,2530,2532,2535,2560,2569,2570,2578,2620,2641,2683,2753,2757,2773,2782,2783,2788,2793,2797,2798,2802,2804,2808,2809,2813,2817,2822,2823,2836,2837,2838,2840,2847,2853,2854,2859,2864,2869,2883,2887,2890,2900,2922,2947,2953,2958,2959,2961,2968,2971,2978,2983,2988,2999,3007,3018,3020,3023,3031,3034,3036,3110,3145,3203,3207,3210,3211,3212,3224,3237,3240,3243,3248,3256,3275,3278,3281,3303,3317,3341,3342,3343,3348,3371,3372,3375,3384,3387,3406,3412,3440,3471,3500,3507,3511,3513,3514,3537,3564,3570,3592,3596,3599,3604,3621,3648,3718,3731,3769,3780,3799,3801,3828,3841,3844,3943,4017,4029,4036,4041,4044,4062,4077,4091,4099,4107,4115,4116,4119,4123,4124,4130,4131,4135,4137,4138,4139,4142,4144,4148,4155,4175,4192,4194,4266,4269,4270,4272,4276,4278,4281,4283,4285,4291,4304,4323,4335,4351,4353,4370,4374,4380,4395,4405,4411,4428,4450,4458,4566,4571,4580,4600,4649,4662,4664,4676,4685,4696,4706,4712,4713,4722,4725,4727,4729,4756,4757,4761,4764,4766,4767,4815,4829,4833,4849,4851,4852,4853,4858,4870,4876,4879,4885,4892,4893,4896,4900,4906,4910,4911,4912,4917,4927,4931,4950,4952,4967,4973,4974,4977,4979,4987,4994,4995,5003,5005,5006,5010,5012,5013,5017,5023,5025,5027,5032,5035,5036,5044,5046,5048,5049,5051,5052,5054,5059,5069,5081,5084,5086,5087,5088,5092,5096,5097,5098,5100,5103,5104,5106,5109,5119,5122,5123,5124,5126,5127,5130,5138,5139,5140,5147,5148,5153,5155,5157,5162,5166,5167,5169,5173,5175,5178,5180,5183,5185,5186,5188,5190,5191,5197,5199,5203,5207,5210,5211,5215,5216,5217,5220,5221,5225,5229,5230,5235,5236,5239,5240,5241,5245,5249,5250,5251,5254,5255,5257,5258,5261,5266,5268,5271,5274,5277,5278,5279,5284,5285,5290,5294,5302,5313,5314,5315,5319,5322,5323,5324,5326,5327,5339,5344,5346,5347,5348,5349,5352,5353,5357,5358,5359,5360,5362,5363,5364,5366,5367,5369,5372,5374,5375,5378,5379,5390,5393,5398,5401,5403,5404,5405,5406,5408,5409,5410,5414,5415,5416,5420,5423,5441,5442,5443,5445,5447,5448,5449,5450,5451,5463,5470,5473,5479,5498,5515,5516,5523,5528,5529,5530,5553,5562,5566,5567,5568,5569,5576,5577,5579,5581,5585,5586,5587,5588,5589,5595,5612,5619,5622,5624,5625,5626,5644,5645,5647,5656,5659,5661,5662,5663,5664,5665,5667,5668,5671,5672,5675,5678,5680,5682,5691,5695,5696,5701,5702,5704,5709,5713,5715,5716,5719,5728,5733,5735,5739,5741,5744,5746,5748,5749,5751,5757,5804,5807,5810,5843,5850,5851,5853,5857,5858,5862,5864,5865,5866,5872,5886,5887,5889,5897,5930,5933,5935,5940,5974,5978,5987,5990,6029,6033,6034,6037,6038,6047,6050,6057,6064,6075,6131,6132,6137,6139,6157,6162,6164,6166,6175,6184,6186,6188,6209,6210,6280,6295,6296,6300,6309,6310,6371,6372,6390,6424,6426,6430,6431,6435,6443,6454,6456,6473,6474,6475,6476,6481,6489,6490,6491,6493,6499,6503,6506,6507,6508,6509,6525,6546,6555,6562,6565,6566,6569,6572,6588,6610,6613,6656,6665,6667,6680,6754,6778,6810,6815,6819,6825,6853,6857,6865,6868,6892,6948,6957,6973,6978,6979,6998,7009,7017,7020,7024,7038,7063,7067,7085,7090,7096,7114,7116,7121,7160,7193,7201,7202,7204,7205,7239,7260,7269,7272,7275,7287,7288,7289,7335,7338,7339,7348,7366,7377,7387,7414,7420,7467,7476,7477,7481,7490,7498,7499,7510,7512,7522,7529,7538,7562,7574,7580,7599,7614,7619,7649,7658,7753,7766,7767,7829,7843,7868,7888,7893,7894,7895,7896,7905,7908,7963,7968,7970,7988,7992,7995,7999,8001,8005,8006,8007,8008,8009,8020,8065,8081,8089,8095,8128,8161,8178,8179,8192,8203,8220,8289,8327,8340,8363,8370,8393,8396,8407,8437,8447,8449,8459,8496,8506,8527,8530,8559,8562,8592,8596,8598,8668,8694,8716,8725,8726,8765,8774,8794,8797,8801,8814,8824,8829,8837,8844,8846,8856,8857,8863,8864,8878,8881,8885,8886,8894,8898,8908,8951,8954,8975,8979,8994,9000,9006,9011,9013,9014,9019,9021,9023,9025,9028,9029,9033,9036,9041,9043,9048,9052,9054,9057,9058,9063,9064,9066,9070,9071,9075,9076,9077,9082,9084,9086,9088,9089,9092,9103,9110,9118,9119,9121,9131,9140,9144,9155,9159,9160,9166,9179,9182,9183,9184,9187,9188,9189,9195,9196,9205,9206,9210,9216,9233,9236,9238,9239,9240,9242,9244,9252,9269,9272,9276,9278,9279,9295,9296,9298,9302,9307,9310,9315,9317,9326,9333,9344,9367,9390,9405,9427,9442,9452,9455,9462,9466,9469,9476,9518,9519,9526,9540,9550,9551,9566,9573,9579,9587,9667,9684,9720,9722,9756,9771,9783,9792,9803,9810,9824,9826,9873,9896,9907,9911,9921,9937,9940,9977,9982,9991,9996,9998,10002,10005,10009,10012,10017,10020,10030,10038,10040,10041,10042,10045,10061,10063,10065,10067,10073,10077,10081,10089,10109,10115,10116,10117,10122,10123,10126,10127,10130,10144,10149,10150,10161,10163,10165,10173,10175,10176,10177,10178,10180,10181,10182,10184,10192,10204,10215,10226,10238,10241,10362,10395,10403,10519,10672,10751,10766,10778,10794,10836,10860,10874,10953,10958,10963,10977,10988,11103,11140,11183,11197,11200,11216,11220,11225,11226,11258,11259,11274,11278,11286,11297,11298,11299,11300,11301,11302,11303,11307,11309,11313,11314,11315,11316,11318,11320,11321,11330,11331,11338,11343,11344,11345,11346,11348,11350,11353,11358,11366,11368,11369,11372,11374,11376,11403,11404,11410,11424,11429,11441,11446,11450,11457,11461,11498,11523,11525,11598,11650,11665,11699,11713,11717,11719,11725,11755,11775,11779,11810,11823,11834,11835,11878,11911,11915,11916,11919,11930,11942,11944,11957,11959,11969,12001,12007,12016,12018,12019,12021,12023,12088,12095,12179,12200,12248,12266,12298,12302,12303,12315,12320,12362,12382,12400,12483,12492,12494,12497,12507,12526,12534,12537,12540,12546,12578,12704,12711,12720,12722,12728,12730,12750,12768,12778,12801,12816,12819,12822,12825,12826,12828,12847,12856,12859,12929,13056,13231,13404,13492,13760,13879,13943,14015,14350,14893,14939,14996,14999,15118,15181,15213,15587,15937,15945,15946,15947,15983,16360,17043,17114,17325,17336,17345,17369,17374,17384,17401,17415,17418,17442,17448,17470,17472,17473,17484,17538,17655,17683,17693,17705,17894,17895,17900,17907,17923,17991,17992,17998,18019,18020,18021,18045,18067,18165,18168,18178,18204,18241,18249,18257,18333,18356,18364,18369,18374,18381,18398,18418,18419,18420,18690,18696,18711,18751,18821,18856,18862,18873,18904,18915,18926,18944,19008,19080,19129,19130,19131,19133,19149,19150,19170,19188,19189,19202,19230,19231,19234,19236,19237,19243,19263,19270,19272,19276,19319,19361,19376,19385,19409,19410,19412,19424,19438,19441,19465,19482,19491,19492,19511,19524,19526,19532,19536,19547,19556,19560,19561,19563,19575,19576,19591,19604,19619,19624,19627,19643,19654,19657,19658,19733,19739,19753,19763,19765,19766,19784,19785,19789,19799,19802,19806,19809,19811,19815,19816,19819,19824,19827,19838,19839,19845,19846,19848,19869,19870,19874,19876,19893,19915,19933,19945,19948,19951,19966,19970,19974,19980,19983,19991,19996,19998,20006,20013,20019,20024,20032,20044,20046,20047,20155,20224,20271,20283,20295,20296,20301,20322,20349,20522,20525,20539,20555,20562,20572,20618,20621,20624,20625,20628,20633,20655,20678,20682,20708,20756,20760,20776,20779,20781,20798,20807,20813,20814,20821,20828,20863,20867,20906,20908,20910,20916,20923,20937,20980,20989,21106,21117,21148,21186,21257,21271,21272,21275,21277,21278,21309,21355,21356,21363,21364,21380,21381,21382,21416,21433,21467,21483,21517,21521,21532,21535,21541,21553,21555,21563,21565,21566,21575,21609,21612,21674,21688,21693,21695,21701,21710,21713,21724,21731,21747,21963,21967,21981,21987,21989,21994,21998,22000,22002,22006,22040,22060,22087,22088,22104,22336,22365,22383,22396,22424,22449,22507,22510,22530,22540,22578,22580,22598,22662,22684,22732,22788,22808,22851,22869,22884,22890,22897,22899,22924,22934,22953,22957,22965,22969,22974,22985,23038,23065,23072,23114,23142]]],["while",[2,2,[[5,1,1,0,1,[[200,1,1,0,1]]],[6,1,1,1,2,[[224,1,1,1,2]]]],[6197,6926]]],["whilst",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12404]]],["whither",[5,5,[[0,1,1,0,1,[[27,1,1,0,1]]],[3,1,1,1,2,[[129,1,1,1,2]]],[13,2,2,2,4,[[372,1,1,2,3],[376,1,1,3,4]]],[25,1,1,4,5,[[811,1,1,4,5]]]],[788,4102,11320,11397,20644]]],["whithersoever",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7823]]],["who",[88,84,[[0,3,3,0,3,[[23,2,2,0,2],[29,1,1,2,3]]],[1,6,5,3,8,[[53,1,1,3,4],[61,2,2,4,6],[67,2,1,6,7],[70,1,1,7,8]]],[3,5,5,8,13,[[122,1,1,8,9],[125,1,1,9,10],[132,1,1,10,11],[142,2,2,11,13]]],[4,4,4,13,17,[[154,1,1,13,14],[156,2,2,14,16],[185,1,1,16,17]]],[5,2,1,17,18,[[203,2,1,17,18]]],[6,2,2,18,20,[[212,1,1,18,19],[228,1,1,19,20]]],[7,2,2,20,22,[[233,2,2,20,22]]],[8,3,3,22,25,[[245,1,1,22,23],[249,1,1,23,24],[252,1,1,24,25]]],[9,3,3,25,28,[[270,2,2,25,27],[272,1,1,27,28]]],[10,13,11,28,39,[[292,2,2,28,30],[299,1,1,30,31],[302,2,2,31,33],[303,1,1,33,34],[304,5,3,34,37],[311,1,1,37,38],[312,1,1,38,39]]],[11,12,12,39,51,[[319,1,1,39,40],[322,1,1,40,41],[325,2,2,41,43],[326,1,1,43,44],[327,4,4,44,48],[329,1,1,48,49],[335,2,2,49,51]]],[12,3,3,51,54,[[339,1,1,51,52],[341,1,1,52,53],[353,1,1,53,54]]],[13,6,6,54,60,[[368,1,1,54,55],[374,1,1,55,56],[386,1,1,56,57],[388,1,1,57,58],[401,1,1,58,59],[402,1,1,59,60]]],[15,1,1,60,61,[[421,1,1,60,61]]],[16,4,4,61,65,[[427,1,1,61,62],[429,1,1,62,63],[431,1,1,63,64],[432,1,1,64,65]]],[18,6,6,65,71,[[485,1,1,65,66],[493,1,1,66,67],[501,1,1,67,68],[548,1,1,68,69],[596,1,1,69,70],[617,1,1,70,71]]],[20,4,4,71,75,[[662,2,2,71,73],[669,1,1,73,74],[670,1,1,74,75]]],[22,3,3,75,78,[[707,1,1,75,76],[715,1,1,76,77],[743,1,1,77,78]]],[23,2,2,78,80,[[745,1,1,78,79],[764,1,1,79,80]]],[26,1,1,80,81,[[850,1,1,80,81]]],[29,1,1,81,82,[[879,1,1,81,82]]],[32,1,1,82,83,[[897,1,1,82,83]]],[34,1,1,83,84,[[904,1,1,83,84]]]],[606,618,832,1629,1843,1856,2009,2085,3844,3971,4199,4498,4552,4963,5011,5050,5839,6291,6552,7022,7152,7169,7437,7553,7643,8129,8130,8177,8794,8802,9060,9160,9169,9210,9226,9232,9234,9462,9532,9724,9822,9877,9882,9920,9934,9943,9949,9953,10019,10180,10181,10313,10407,10861,11223,11354,11621,11653,11987,12006,12518,12739,12773,12795,12816,14013,14099,14245,14995,15936,16267,17384,17394,17518,17530,18215,18354,18913,18962,19437,21747,22365,22641,22753]]],["whom",[270,253,[[0,20,20,0,20,[[1,1,1,0,1],[2,1,1,1,2],[5,1,1,2,3],[14,1,1,3,4],[20,1,1,4,5],[21,1,1,5,6],[23,5,5,6,11],[24,1,1,11,12],[40,1,1,12,13],[42,2,2,13,15],[43,1,1,15,16],[44,1,1,16,17],[45,1,1,17,18],[47,2,2,18,20]]],[1,12,11,20,31,[[55,1,1,20,21],[63,1,1,21,22],[67,1,1,22,23],[71,1,1,23,24],[72,1,1,24,25],[77,1,1,25,26],[81,1,1,26,27],[82,3,2,27,29],[84,2,2,29,31]]],[2,9,8,31,39,[[95,1,1,31,32],[102,1,1,32,33],[103,1,1,33,34],[105,2,1,34,35],[106,1,1,35,36],[111,1,1,36,37],[114,1,1,37,38],[116,1,1,38,39]]],[3,17,16,39,55,[[119,1,1,39,40],[120,3,3,40,43],[121,1,1,43,44],[127,2,2,44,46],[128,2,2,46,48],[132,2,2,48,50],[133,1,1,50,51],[138,2,1,51,52],[142,1,1,52,53],[143,1,1,53,54],[150,1,1,54,55]]],[4,11,11,55,66,[[156,1,1,55,56],[159,1,1,56,57],[161,1,1,57,58],[169,1,1,58,59],[171,1,1,59,60],[173,1,1,60,61],[176,1,1,61,62],[180,1,1,62,63],[181,1,1,63,64],[185,1,1,64,65],[186,1,1,65,66]]],[5,4,4,66,70,[[188,1,1,66,67],[190,1,1,67,68],[191,1,1,68,69],[199,1,1,69,70]]],[6,6,6,70,76,[[214,1,1,70,71],[217,1,1,71,72],[218,2,2,72,74],[224,1,1,74,75],[231,1,1,75,76]]],[7,4,3,76,79,[[233,2,1,76,77],[235,2,2,77,79]]],[8,11,10,79,89,[[244,1,1,79,80],[245,1,1,80,81],[247,2,1,81,82],[251,1,1,82,83],[252,1,1,83,84],[256,1,1,84,85],[260,2,2,85,87],[263,1,1,87,88],[264,1,1,88,89]]],[9,11,10,89,99,[[273,3,3,89,92],[280,1,1,92,93],[282,1,1,93,94],[283,1,1,94,95],[285,1,1,95,96],[286,1,1,96,97],[287,2,1,97,98],[289,1,1,98,99]]],[10,9,9,99,108,[[295,1,1,99,100],[297,1,1,100,101],[299,1,1,101,102],[303,1,1,102,103],[307,2,2,103,105],[308,2,2,105,107],[311,1,1,107,108]]],[11,18,18,108,126,[[315,1,1,108,109],[317,1,1,109,110],[318,2,2,110,112],[320,1,1,112,113],[322,1,1,113,114],[329,6,6,114,120],[331,2,2,120,122],[333,2,2,122,124],[335,1,1,124,125],[337,1,1,125,126]]],[12,9,8,126,134,[[342,2,2,126,128],[343,1,1,128,129],[344,1,1,129,130],[348,2,2,130,132],[354,3,2,132,134]]],[13,10,10,134,144,[[367,1,1,134,135],[368,1,1,135,136],[374,1,1,136,137],[383,1,1,137,138],[386,1,1,138,139],[388,1,1,139,140],[389,1,1,140,141],[394,1,1,141,142],[399,2,2,142,144]]],[14,1,1,144,145,[[404,1,1,144,145]]],[15,3,3,145,148,[[413,1,1,145,146],[419,1,1,146,147],[421,1,1,147,148]]],[16,8,7,148,155,[[427,1,1,148,149],[429,1,1,149,150],[431,6,5,150,155]]],[18,12,12,155,167,[[518,1,1,155,156],[524,1,1,156,157],[546,1,1,157,158],[563,1,1,158,159],[565,1,1,159,160],[566,1,1,160,161],[571,1,1,161,162],[572,1,1,162,163],[582,1,1,163,164],[583,2,2,164,166],[584,1,1,166,167]]],[19,2,2,167,169,[[630,1,1,167,168],[652,1,1,168,169]]],[20,3,3,169,172,[[663,1,1,169,170],[664,1,1,170,171],[667,1,1,171,172]]],[22,14,13,172,185,[[686,2,2,172,174],[706,1,1,174,175],[709,1,1,175,176],[715,2,2,176,178],[719,2,2,178,180],[721,1,1,180,181],[725,1,1,181,182],[727,1,1,182,183],[728,2,1,183,184],[744,1,1,184,185]]],[23,42,37,185,222,[[745,1,1,185,186],[751,1,1,186,187],[752,5,1,187,188],[753,1,1,188,189],[755,1,1,189,190],[758,1,1,190,191],[762,1,1,191,192],[763,1,1,192,193],[764,1,1,193,194],[768,1,1,194,195],[769,1,1,195,196],[770,1,1,196,197],[771,1,1,197,198],[773,5,5,198,203],[774,1,1,203,204],[777,1,1,204,205],[778,2,2,205,207],[781,1,1,207,208],[782,1,1,208,209],[783,1,1,209,210],[784,1,1,210,211],[785,6,5,211,216],[786,3,3,216,219],[788,1,1,219,220],[794,1,1,220,221],[796,1,1,221,222]]],[24,2,2,222,224,[[797,1,1,222,223],[800,1,1,223,224]]],[25,16,14,224,238,[[810,1,1,224,225],[812,2,2,225,227],[817,2,2,227,229],[821,1,1,229,230],[824,7,5,230,235],[825,1,1,235,236],[829,1,1,236,237],[839,1,1,237,238]]],[26,5,5,238,243,[[850,2,2,238,240],[858,1,1,240,241],[860,2,2,241,243]]],[27,1,1,243,244,[[874,1,1,243,244]]],[28,2,2,244,246,[[877,1,1,244,245],[878,1,1,245,246]]],[37,4,4,246,250,[[911,2,2,246,248],[917,1,1,248,249],[922,1,1,249,250]]],[38,4,3,250,253,[[925,1,1,250,251],[926,1,1,251,252],[927,2,1,252,253]]]],[38,67,144,374,516,549,594,605,631,635,638,670,1233,1317,1319,1334,1362,1404,1460,1466,1681,1902,2008,2122,2171,2296,2451,2485,2492,2554,2555,2854,3097,3143,3233,3242,3374,3496,3594,3695,3784,3788,3789,3799,4040,4045,4060,4071,4199,4201,4249,4381,4548,4572,4845,5050,5130,5159,5379,5423,5455,5536,5666,5705,5818,5849,5879,5914,5940,6175,6621,6698,6734,6737,6929,7125,7168,7191,7202,7408,7442,7473,7598,7663,7781,7872,7886,7950,7972,8187,8195,8203,8363,8444,8452,8521,8557,8588,8661,8883,8942,9072,9207,9318,9337,9356,9372,9477,9590,9663,9693,9696,9732,9817,9991,9994,9998,10010,10011,10017,10065,10071,10121,10128,10170,10244,10434,10453,10485,10549,10683,10684,10869,10884,11205,11218,11354,11542,11597,11651,11674,11767,11910,11917,12028,12306,12426,12548,12730,12767,12799,12800,12802,12804,12806,14551,14629,14961,15293,15313,15347,15443,15465,15632,15685,15689,15701,16467,17120,17416,17419,17484,17819,17825,18176,18256,18356,18362,18459,18460,18515,18614,18639,18663,18935,18948,19128,19155,19191,19238,19309,19392,19411,19428,19529,19551,19577,19601,19636,19638,19639,19655,19657,19676,19780,19812,19817,19875,19904,19940,19946,19959,19966,19967,19973,19975,19981,19984,19986,20013,20186,20304,20320,20440,20628,20662,20670,20782,20799,20904,21014,21016,21035,21044,21047,21077,21182,21442,21741,21748,22009,22074,22075,22276,22343,22345,22882,22888,22976,23055,23093,23117,23121]]],["whomsoever",[2,2,[[0,2,2,0,2,[[30,1,1,0,1],[43,1,1,1,2]]]],[905,1333]]],["whose",[69,68,[[0,5,5,0,5,[[0,2,2,0,2],[23,1,1,2,3],[37,1,1,3,4],[43,1,1,4,5]]],[1,5,4,5,9,[[84,3,3,5,8],[85,2,1,8,9]]],[2,5,5,9,14,[[103,1,1,9,10],[104,1,1,10,11],[105,1,1,11,12],[110,1,1,12,13],[111,1,1,13,14]]],[4,3,3,14,17,[[160,1,1,14,15],[180,1,1,15,16],[181,1,1,16,17]]],[6,1,1,17,18,[[216,1,1,17,18]]],[7,2,2,18,20,[[233,1,1,18,19],[234,1,1,19,20]]],[8,1,1,20,21,[[245,1,1,20,21]]],[9,3,3,21,24,[[272,1,1,21,22],[282,1,1,22,23],[283,1,1,23,24]]],[10,1,1,24,25,[[293,1,1,24,25]]],[11,3,3,25,28,[[319,2,2,25,27],[324,1,1,27,28]]],[12,1,1,28,29,[[350,1,1,28,29]]],[17,5,5,29,34,[[438,1,1,29,30],[439,1,1,30,31],[447,2,2,31,33],[465,1,1,33,34]]],[18,3,3,34,37,[[503,1,1,34,35],[510,1,1,35,36],[621,1,1,36,37]]],[22,10,10,37,47,[[680,1,1,37,38],[684,1,1,38,39],[696,2,2,39,41],[701,1,1,41,42],[708,1,1,42,43],[709,1,1,43,44],[714,1,1,44,45],[723,1,1,45,46],[736,1,1,46,47]]],[23,5,5,47,52,[[763,1,1,47,48],[766,1,1,48,49],[776,1,1,49,50],[777,1,1,50,51],[793,1,1,51,52]]],[25,13,13,52,65,[[804,1,1,52,53],[821,3,3,53,56],[822,3,3,56,59],[824,1,1,59,60],[825,1,1,60,61],[841,2,2,61,63],[843,1,1,63,64],[844,1,1,64,65]]],[26,1,1,65,66,[[859,1,1,65,66]]],[29,1,1,66,67,[[880,1,1,66,67]]],[33,1,1,67,68,[[902,1,1,67,68]]]],[10,11,628,1144,1341,2552,2557,2560,2568,3143,3200,3228,3355,3373,5146,5660,5697,6664,7161,7174,7444,8159,8434,8459,8842,9709,9724,9865,10766,12927,12949,13134,13138,13558,14283,14378,16316,17707,17782,17999,18004,18085,18230,18259,18337,18562,18797,19420,19479,19760,19780,20139,20508,20904,20909,20917,20969,20971,20973,21027,21062,21522,21523,21567,21576,22016,22388,22720]]],["whoso",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23085]]],["whosoever",[2,2,[[1,1,1,0,1,[[79,1,1,0,1]]],[3,1,1,1,2,[[131,1,1,1,2]]]],[2415,4167]]],["why",[1,1,[[5,1,1,0,1,[[191,1,1,0,1]]]],[5938]]]]},{"k":"H835","v":[["*",[45,42,[[4,1,1,0,1,[[185,1,1,0,1]]],[10,2,1,1,2,[[300,2,1,1,2]]],[13,2,1,2,3,[[375,2,1,2,3]]],[17,1,1,3,4,[[440,1,1,3,4]]],[18,26,25,4,29,[[478,1,1,4,5],[479,1,1,5,6],[509,2,2,6,8],[510,1,1,8,9],[511,1,1,9,10],[517,1,1,10,11],[518,1,1,11,12],[542,1,1,12,13],[561,3,3,13,16],[566,1,1,16,17],[571,1,1,17,18],[583,1,1,18,19],[589,1,1,19,20],[596,2,2,20,22],[604,1,1,22,23],[605,2,2,23,25],[614,2,2,25,27],[621,2,1,27,28],[623,1,1,28,29]]],[19,8,8,29,37,[[630,1,1,29,30],[635,2,2,30,32],[641,1,1,32,33],[643,1,1,33,34],[647,1,1,34,35],[655,1,1,35,36],[656,1,1,36,37]]],[20,1,1,37,38,[[668,1,1,37,38]]],[22,3,3,38,41,[[708,1,1,38,39],[710,1,1,39,40],[734,1,1,40,41]]],[26,1,1,41,42,[[861,1,1,41,42]]]],[5839,9087,11371,12968,13940,13957,14356,14357,14378,14396,14529,14543,14864,15263,15264,15271,15341,15443,15654,15804,15899,15900,16126,16127,16128,16230,16231,16320,16346,16468,16634,16636,16793,16860,16961,17210,17242,17510,18235,18279,18755,22093]]],["Blessed",[22,22,[[18,17,17,0,17,[[478,1,1,0,1],[479,1,1,1,2],[509,2,2,2,4],[510,1,1,4,5],[517,1,1,5,6],[518,1,1,6,7],[542,1,1,7,8],[561,2,2,8,10],[566,1,1,10,11],[571,1,1,11,12],[583,1,1,12,13],[589,1,1,13,14],[596,2,2,14,16],[605,1,1,16,17]]],[19,1,1,17,18,[[635,1,1,17,18]]],[20,1,1,18,19,[[668,1,1,18,19]]],[22,2,2,19,21,[[710,1,1,19,20],[734,1,1,20,21]]],[26,1,1,21,22,[[861,1,1,21,22]]]],[13940,13957,14356,14357,14378,14529,14543,14864,15263,15264,15341,15443,15654,15804,15899,15900,16127,16636,17510,18279,18755,22093]]],["Happy",[9,9,[[4,1,1,0,1,[[185,1,1,0,1]]],[10,1,1,1,2,[[300,1,1,1,2]]],[13,1,1,2,3,[[375,1,1,2,3]]],[18,4,4,3,7,[[604,1,1,3,4],[614,1,1,4,5],[621,1,1,5,6],[623,1,1,6,7]]],[19,2,2,7,9,[[630,1,1,7,8],[655,1,1,8,9]]]],[5839,9087,11371,16126,16231,16320,16346,16468,17210]]],["blessed",[5,5,[[18,2,2,0,2,[[511,1,1,0,1],[561,1,1,1,2]]],[19,2,2,2,4,[[635,1,1,2,3],[647,1,1,3,4]]],[22,1,1,4,5,[[708,1,1,4,5]]]],[14396,15271,16634,16961,18235]]],["happy",[9,9,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]],[17,1,1,2,3,[[440,1,1,2,3]]],[18,3,3,3,6,[[605,1,1,3,4],[614,1,1,4,5],[621,1,1,5,6]]],[19,3,3,6,9,[[641,1,1,6,7],[643,1,1,7,8],[656,1,1,8,9]]]],[9087,11371,12968,16128,16230,16320,16793,16860,17242]]]]},{"k":"H836","v":[["*",[43,41,[[0,4,4,0,4,[[29,1,1,0,1],[34,1,1,1,2],[45,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[3,12,11,5,16,[[117,3,3,5,8],[118,2,1,8,9],[123,1,1,9,10],[126,1,1,10,11],[129,1,1,11,12],[142,3,3,12,15],[150,1,1,15,16]]],[4,3,2,16,18,[[179,1,1,16,17],[185,2,1,17,18]]],[5,8,8,18,26,[[203,3,3,18,21],[205,3,3,21,24],[207,2,2,24,26]]],[6,4,4,26,30,[[211,1,1,26,27],[215,1,1,27,28],[216,1,1,28,29],[217,1,1,29,30]]],[10,1,1,30,31,[[294,1,1,30,31]]],[12,6,6,31,37,[[339,1,1,31,32],[343,2,2,32,34],[344,2,2,34,36],[349,1,1,36,37]]],[13,1,1,37,38,[[396,1,1,37,38]]],[25,3,3,38,41,[[849,3,3,38,41]]]],[843,1037,1403,1493,1536,3617,3644,3645,3685,3922,4014,4088,4533,4535,4536,4843,5598,5834,6282,6285,6286,6345,6352,6355,6387,6411,6540,6640,6689,6717,8860,10308,10516,10528,10565,10575,10756,11838,21704,21705,21736]]],["+",[6,6,[[0,1,1,0,1,[[48,1,1,0,1]]],[5,2,2,1,3,[[203,1,1,1,2],[207,1,1,2,3]]],[12,2,2,3,5,[[343,1,1,3,4],[349,1,1,4,5]]],[13,1,1,5,6,[[396,1,1,5,6]]]],[1493,6282,6411,10528,10756,11838]]],["Asher",[37,35,[[0,3,3,0,3,[[29,1,1,0,1],[34,1,1,1,2],[45,1,1,2,3]]],[1,1,1,3,4,[[50,1,1,3,4]]],[3,12,11,4,15,[[117,3,3,4,7],[118,2,1,7,8],[123,1,1,8,9],[126,1,1,9,10],[129,1,1,10,11],[142,3,3,11,14],[150,1,1,14,15]]],[4,3,2,15,17,[[179,1,1,15,16],[185,2,1,16,17]]],[5,6,6,17,23,[[203,2,2,17,19],[205,3,3,19,22],[207,1,1,22,23]]],[6,4,4,23,27,[[211,1,1,23,24],[215,1,1,24,25],[216,1,1,25,26],[217,1,1,26,27]]],[10,1,1,27,28,[[294,1,1,27,28]]],[12,4,4,28,32,[[339,1,1,28,29],[343,1,1,29,30],[344,2,2,30,32]]],[25,3,3,32,35,[[849,3,3,32,35]]]],[843,1037,1403,1536,3617,3644,3645,3685,3922,4014,4088,4533,4535,4536,4843,5598,5834,6285,6286,6345,6352,6355,6387,6540,6640,6689,6717,8860,10308,10516,10565,10575,21704,21705,21736]]]]},{"k":"H837","v":[["Happy",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[843]]]]},{"k":"H838","v":[["*",[9,9,[[17,2,2,0,2,[[458,1,1,0,1],[466,1,1,1,2]]],[18,6,6,2,8,[[494,2,2,2,4],[514,1,1,4,5],[517,1,1,5,6],[521,1,1,6,7],[550,1,1,7,8]]],[19,1,1,8,9,[[641,1,1,8,9]]]],[13430,13595,14108,14114,14481,14527,14589,15022,16787]]],["going",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16787]]],["goings",[2,2,[[18,2,2,0,2,[[494,1,1,0,1],[517,1,1,1,2]]]],[14108,14527]]],["step",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13595]]],["steps",[5,5,[[17,1,1,0,1,[[458,1,1,0,1]]],[18,4,4,1,5,[[494,1,1,1,2],[514,1,1,2,3],[521,1,1,3,4],[550,1,1,4,5]]]],[13430,14114,14481,14589,15022]]]]},{"k":"H839","v":[["Ashurites",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21127]]]]},{"k":"H840","v":[["Asareel",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10401]]]]},{"k":"H841","v":[["Asarelah",[1,1,[[12,1,1,0,1,[[362,1,1,0,1]]]],[11048]]]]},{"k":"H842","v":[["*",[40,40,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,3,3,1,4,[[159,1,1,1,2],[164,1,1,2,3],[168,1,1,3,4]]],[6,5,5,4,9,[[213,1,1,4,5],[216,4,4,5,9]]],[10,5,5,9,14,[[304,2,2,9,11],[305,1,1,11,12],[306,1,1,12,13],[308,1,1,13,14]]],[11,11,11,14,25,[[325,1,1,14,15],[329,2,2,15,17],[330,1,1,17,18],[333,2,2,18,20],[335,5,5,20,25]]],[13,11,11,25,36,[[380,1,1,25,26],[381,1,1,26,27],[383,1,1,27,28],[385,1,1,28,29],[390,1,1,29,30],[397,1,1,30,31],[399,2,2,31,33],[400,3,3,33,36]]],[22,2,2,36,38,[[695,1,1,36,37],[705,1,1,37,38]]],[23,1,1,38,39,[[761,1,1,38,39]]],[32,1,1,39,40,[[897,1,1,39,40]]]],[2509,5116,5243,5363,6575,6679,6680,6682,6684,9233,9241,9262,9316,9360,9877,9993,9999,10028,10122,10126,10169,10171,10172,10179,10180,11478,11506,11529,11579,11695,11855,11911,11927,11936,11937,11940,17991,18160,19359,22647]]],["grove",[16,16,[[4,1,1,0,1,[[168,1,1,0,1]]],[6,4,4,1,5,[[216,4,4,1,5]]],[10,2,2,5,7,[[305,1,1,5,6],[306,1,1,6,7]]],[11,8,8,7,15,[[325,1,1,7,8],[329,1,1,8,9],[333,2,2,9,11],[335,4,4,11,15]]],[13,1,1,15,16,[[381,1,1,15,16]]]],[5363,6679,6680,6682,6684,9262,9316,9877,9999,10122,10126,10169,10171,10172,10180,11506]]],["groves",[24,24,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,2,2,1,3,[[159,1,1,1,2],[164,1,1,2,3]]],[6,1,1,3,4,[[213,1,1,3,4]]],[10,3,3,4,7,[[304,2,2,4,6],[308,1,1,6,7]]],[11,3,3,7,10,[[329,1,1,7,8],[330,1,1,8,9],[335,1,1,9,10]]],[13,10,10,10,20,[[380,1,1,10,11],[383,1,1,11,12],[385,1,1,12,13],[390,1,1,13,14],[397,1,1,14,15],[399,2,2,15,17],[400,3,3,17,20]]],[22,2,2,20,22,[[695,1,1,20,21],[705,1,1,21,22]]],[23,1,1,22,23,[[761,1,1,22,23]]],[32,1,1,23,24,[[897,1,1,23,24]]]],[2509,5116,5243,6575,9233,9241,9360,9993,10028,10179,11478,11529,11579,11695,11855,11911,11927,11936,11937,11940,17991,18160,19359,22647]]]]},{"k":"H843","v":[["*",[2,2,[[6,1,1,0,1,[[211,1,1,0,1]]],[9,1,1,1,2,[[268,1,1,1,2]]]],[6541,8058]]],["Asherites",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6541]]],["Ashurites",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8058]]]]},{"k":"H844","v":[["*",[3,3,[[3,1,1,0,1,[[142,1,1,0,1]]],[5,1,1,1,2,[[203,1,1,1,2]]],[12,1,1,2,3,[[344,1,1,2,3]]]],[4520,6277,10549]]],["Ashriel",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10549]]],["Asriel",[2,2,[[3,1,1,0,1,[[142,1,1,0,1]]],[5,1,1,1,2,[[203,1,1,1,2]]]],[4520,6277]]]]},{"k":"H845","v":[["Asrielites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4520]]]]},{"k":"H846","v":[["*",[2,2,[[14,2,2,0,2,[[407,2,2,0,2]]]],[12137,12143]]],["wall",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12137]]],["walls",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12143]]]]},{"k":"H847","v":[["*",[7,7,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]],[6,5,5,2,7,[[223,1,1,2,3],[226,1,1,3,4],[228,3,3,4,7]]]],[6235,6362,6909,6980,6995,7001,7004]]],["+",[2,2,[[6,2,2,0,2,[[228,2,2,0,2]]]],[6995,7004]]],["Eshtaol",[5,5,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]],[6,3,3,2,5,[[223,1,1,2,3],[226,1,1,3,4],[228,1,1,4,5]]]],[6235,6362,6909,6980,7001]]]]},{"k":"H848","v":[["Eshtaulites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10359]]]]},{"k":"H849","v":[["sedition",[2,2,[[14,2,2,0,2,[[406,2,2,0,2]]]],[12125,12129]]]]},{"k":"H850","v":[["Eshton",[2,2,[[12,2,2,0,2,[[341,2,2,0,2]]]],[10396,10397]]]]},{"k":"H851","v":[["*",[6,6,[[5,2,2,0,2,[[201,1,1,0,1],[207,1,1,1,2]]],[8,1,1,2,3,[[265,1,1,2,3]]],[12,3,3,3,6,[[341,2,2,3,5],[343,1,1,5,6]]]],[6252,6395,8006,10402,10404,10511]]],["Eshtemoa",[5,5,[[5,1,1,0,1,[[207,1,1,0,1]]],[8,1,1,1,2,[[265,1,1,1,2]]],[12,3,3,2,5,[[341,2,2,2,4],[343,1,1,4,5]]]],[6395,8006,10402,10404,10511]]],["Eshtemoh",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6252]]]]},{"k":"H852","v":[["signs",[3,3,[[26,3,3,0,3,[[853,2,2,0,2],[855,1,1,2,3]]]],[21839,21840,21932]]]]},{"k":"H853","v":[["*",[7297,5647,[[0,649,513,0,513,[[0,13,12,0,12],[1,11,11,12,23],[2,7,5,23,28],[3,19,11,28,39],[4,21,20,39,59],[5,10,8,59,67],[6,4,4,67,71],[7,11,9,71,80],[8,14,11,80,91],[9,7,6,91,97],[10,24,21,97,118],[11,5,5,118,123],[12,7,4,123,127],[13,12,9,127,136],[14,7,7,136,143],[15,3,3,143,146],[16,15,11,146,157],[17,3,2,157,159],[18,19,14,159,173],[19,5,5,173,178],[20,18,15,178,193],[21,28,14,193,207],[22,11,9,207,216],[23,22,18,216,234],[24,12,11,234,245],[25,9,7,245,252],[26,13,11,252,263],[27,10,7,263,270],[28,23,18,270,288],[29,20,17,288,305],[30,34,26,305,331],[31,14,9,331,340],[32,8,6,340,346],[33,14,13,346,359],[34,6,6,359,365],[35,11,8,365,373],[36,18,12,373,385],[37,5,5,385,390],[38,6,5,390,395],[39,12,9,395,404],[40,25,21,404,425],[41,19,16,425,441],[42,15,13,441,454],[43,15,12,454,466],[44,11,7,466,473],[45,6,6,473,479],[46,14,11,479,490],[47,15,12,490,502],[48,5,3,502,505],[49,13,8,505,513]]],[1,668,484,513,997,[[50,10,8,513,521],[51,22,18,521,539],[52,16,12,539,551],[53,16,11,551,562],[54,10,8,562,570],[55,21,13,570,583],[56,15,10,583,593],[57,23,16,593,609],[58,20,18,609,627],[59,28,18,627,645],[60,5,3,645,648],[61,18,14,648,662],[62,10,7,662,669],[63,26,18,669,687],[64,4,4,687,691],[65,18,14,691,705],[66,5,5,705,710],[67,17,13,710,723],[68,8,8,723,731],[69,13,7,731,738],[70,16,8,738,746],[71,5,4,746,750],[72,21,12,750,762],[73,8,8,762,770],[74,16,11,770,781],[75,13,10,781,791],[76,4,4,791,795],[77,20,16,795,811],[78,29,22,811,833],[79,9,9,833,842],[80,8,6,842,848],[81,17,12,848,860],[82,15,12,860,872],[83,19,14,872,886],[84,28,16,886,902],[85,14,14,902,916],[86,18,14,916,930],[87,12,9,930,939],[88,38,27,939,966],[89,53,31,966,997]]],[2,450,324,997,1321,[[90,14,11,997,1008],[91,5,5,1008,1013],[92,11,7,1013,1020],[93,18,11,1020,1031],[94,7,6,1031,1037],[95,10,6,1037,1043],[96,19,11,1043,1054],[97,39,26,1054,1080],[98,18,15,1080,1095],[99,9,7,1095,1102],[100,14,12,1102,1114],[102,31,21,1114,1135],[103,43,30,1135,1165],[104,7,6,1165,1171],[105,32,21,1171,1192],[106,6,5,1192,1197],[107,10,9,1197,1206],[108,16,15,1206,1221],[109,26,16,1221,1237],[110,11,8,1237,1245],[111,9,8,1245,1253],[112,17,14,1253,1267],[113,7,5,1267,1272],[114,22,18,1272,1290],[115,38,22,1290,1312],[116,11,9,1312,1321]]],[3,455,357,1321,1678,[[117,10,8,1321,1329],[118,2,2,1329,1331],[119,17,14,1331,1345],[120,24,21,1345,1366],[121,31,19,1366,1385],[122,11,9,1385,1394],[123,11,10,1394,1404],[124,22,15,1404,1419],[125,8,6,1419,1425],[126,3,3,1425,1428],[127,14,11,1428,1439],[129,8,8,1439,1447],[130,22,18,1447,1465],[131,9,9,1465,1474],[132,21,16,1474,1490],[133,5,5,1490,1495],[134,21,17,1495,1512],[135,8,6,1512,1518],[136,23,14,1518,1532],[137,19,15,1532,1547],[138,25,19,1547,1566],[139,4,4,1566,1570],[140,7,6,1570,1576],[141,9,6,1576,1582],[142,13,10,1582,1592],[143,13,11,1592,1603],[144,4,3,1603,1606],[145,2,2,1606,1608],[146,8,6,1608,1614],[147,21,16,1614,1630],[148,25,20,1630,1650],[149,11,7,1650,1657],[150,5,5,1657,1662],[151,14,13,1662,1675],[152,5,3,1675,1678]]],[4,447,350,1678,2028,[[153,23,20,1678,1698],[154,23,16,1698,1714],[155,15,12,1714,1726],[156,27,22,1726,1748],[157,19,15,1748,1763],[158,15,11,1763,1774],[159,12,9,1774,1783],[160,12,10,1783,1793],[161,19,14,1793,1807],[162,13,11,1807,1818],[163,23,17,1818,1835],[164,19,14,1835,1849],[165,7,6,1849,1855],[166,7,6,1855,1861],[167,11,10,1861,1871],[168,9,8,1871,1879],[169,10,6,1879,1885],[170,6,6,1885,1891],[171,9,6,1891,1897],[172,5,4,1897,1901],[173,14,9,1901,1910],[174,14,11,1910,1921],[175,3,3,1921,1924],[176,8,8,1924,1932],[177,8,7,1932,1939],[178,9,7,1939,1946],[179,13,10,1946,1956],[180,22,16,1956,1972],[181,16,14,1972,1986],[182,10,9,1986,1995],[183,32,22,1995,2017],[184,7,6,2017,2023],[185,1,1,2023,2024],[186,6,4,2024,2028]]],[5,320,230,2028,2258,[[187,14,9,2028,2037],[188,17,13,2037,2050],[189,10,8,2050,2058],[190,14,10,2058,2068],[191,7,6,2068,2074],[192,25,19,2074,2093],[193,17,12,2093,2105],[194,20,17,2105,2122],[195,7,3,2122,2125],[196,20,12,2125,2137],[197,18,12,2137,2149],[198,1,1,2149,2150],[199,3,3,2150,2153],[200,9,7,2153,2160],[201,7,5,2160,2165],[202,1,1,2165,2166],[203,5,5,2166,2171],[204,7,6,2171,2177],[205,5,3,2177,2180],[206,6,5,2180,2185],[207,38,25,2185,2210],[208,20,16,2210,2226],[209,8,8,2226,2234],[210,41,24,2234,2258]]],[6,311,232,2258,2490,[[211,28,21,2258,2279],[212,21,12,2279,2291],[213,36,20,2291,2311],[214,16,13,2311,2324],[216,27,21,2324,2345],[217,15,12,2345,2357],[218,19,13,2357,2370],[219,34,26,2370,2396],[220,12,8,2396,2404],[221,23,19,2404,2423],[222,10,8,2423,2431],[223,4,4,2431,2435],[224,5,4,2435,2439],[225,6,6,2439,2445],[226,16,12,2445,2457],[227,5,4,2457,2461],[228,18,15,2461,2476],[229,6,4,2476,2480],[230,7,7,2480,2487],[231,3,3,2487,2490]]],[7,32,24,2490,2514,[[232,1,1,2490,2491],[233,8,7,2491,2498],[234,5,4,2498,2502],[235,18,12,2502,2514]]],[8,406,330,2514,2844,[[236,16,14,2514,2528],[237,18,15,2528,2543],[238,8,7,2543,2550],[239,8,7,2550,2557],[240,12,8,2557,2565],[241,17,12,2565,2577],[242,12,10,2577,2587],[243,5,5,2587,2592],[244,15,12,2592,2604],[245,11,10,2604,2614],[246,6,5,2614,2619],[247,21,14,2619,2633],[248,8,7,2633,2640],[249,14,10,2640,2650],[250,23,18,2650,2668],[251,8,7,2668,2675],[252,27,25,2675,2700],[253,14,13,2700,2713],[254,18,12,2713,2725],[255,24,18,2725,2743],[256,6,6,2743,2749],[257,12,8,2749,2757],[258,10,9,2757,2766],[259,19,14,2766,2780],[260,23,19,2780,2799],[261,10,10,2799,2809],[262,2,2,2809,2811],[263,15,12,2811,2823],[264,2,2,2823,2825],[265,10,10,2825,2835],[266,12,9,2835,2844]]],[9,322,251,2844,3095,[[267,3,3,2844,2847],[268,7,6,2847,2853],[269,21,14,2853,2867],[270,12,6,2867,2873],[271,12,9,2873,2882],[272,14,12,2882,2894],[273,15,11,2894,2905],[274,12,10,2905,2915],[275,3,3,2915,2918],[276,12,7,2918,2925],[277,12,10,2925,2935],[278,23,19,2935,2954],[279,22,17,2954,2971],[280,24,15,2971,2986],[281,18,16,2986,3002],[282,8,7,3002,3009],[283,12,10,3009,3019],[284,16,14,3019,3033],[285,29,24,3033,3057],[286,6,6,3057,3063],[287,19,15,3063,3078],[288,2,2,3078,3080],[289,7,5,3080,3085],[290,13,10,3085,3095]]],[10,422,322,3095,3417,[[291,24,17,3095,3112],[292,33,22,3112,3134],[293,17,14,3134,3148],[294,6,5,3148,3153],[295,6,5,3153,3158],[296,19,14,3158,3172],[297,27,18,3172,3190],[298,41,31,3190,3221],[299,18,14,3221,3235],[300,11,10,3235,3245],[301,25,19,3245,3264],[302,22,18,3264,3282],[303,20,15,3282,3297],[304,13,8,3297,3305],[305,22,16,3305,3321],[306,21,14,3321,3335],[307,5,4,3335,3339],[308,23,20,3339,3359],[309,13,10,3359,3369],[310,19,17,3369,3386],[311,18,14,3386,3400],[312,19,17,3400,3417]]],[11,387,284,3417,3701,[[313,2,2,3417,3419],[314,10,7,3419,3426],[315,10,9,3426,3435],[316,7,5,3435,3440],[317,7,6,3440,3446],[318,17,11,3446,3457],[319,8,7,3457,3464],[320,14,11,3464,3475],[321,14,13,3475,3488],[322,22,16,3488,3504],[323,19,14,3504,3518],[324,12,12,3518,3530],[325,13,9,3530,3539],[326,18,12,3539,3551],[327,12,10,3551,3561],[328,15,9,3561,3570],[329,36,25,3570,3595],[330,24,17,3595,3612],[331,12,12,3612,3624],[332,11,8,3624,3632],[333,20,14,3632,3646],[334,14,12,3646,3658],[335,47,23,3658,3681],[336,9,7,3681,3688],[337,14,13,3688,3701]]],[12,280,209,3701,3910,[[338,9,8,3701,3709],[339,38,23,3709,3732],[341,14,11,3732,3743],[342,1,1,3743,3744],[343,42,28,3744,3772],[344,6,6,3772,3778],[345,16,12,3778,3790],[346,9,5,3790,3795],[347,11,8,3795,3803],[348,14,10,3803,3813],[349,6,4,3813,3817],[350,11,8,3817,3825],[351,7,6,3825,3831],[352,15,13,3831,3844],[353,5,5,3844,3849],[354,14,11,3849,3860],[355,11,10,3860,3870],[356,7,6,3870,3876],[357,8,5,3876,3881],[358,14,10,3881,3891],[359,7,5,3891,3896],[360,4,4,3896,3900],[364,2,2,3900,3902],[365,6,5,3902,3907],[366,3,3,3907,3910]]],[13,362,286,3910,4196,[[367,3,3,3910,3913],[368,4,4,3913,3917],[369,7,7,3917,3924],[370,10,9,3924,3933],[371,7,6,3933,3939],[372,17,14,3939,3953],[373,15,12,3953,3965],[374,4,4,3965,3969],[375,12,9,3969,3978],[376,10,10,3978,3988],[377,16,12,3988,4000],[378,7,5,4000,4005],[379,7,6,4005,4011],[380,10,6,4011,4017],[381,5,5,4017,4022],[382,9,5,4022,4027],[383,3,3,4027,4030],[384,13,13,4030,4043],[386,9,7,4043,4050],[387,10,8,4050,4058],[388,10,8,4058,4066],[389,17,11,4066,4077],[390,18,13,4077,4090],[391,15,9,4090,4099],[392,6,5,4099,4104],[393,1,1,4104,4105],[394,13,11,4105,4116],[395,15,13,4116,4129],[396,8,8,4129,4137],[397,7,5,4137,4142],[398,10,9,4142,4151],[399,15,10,4151,4161],[400,32,22,4161,4183],[401,4,3,4183,4186],[402,13,10,4186,4196]]],[14,25,20,4196,4216,[[403,5,4,4196,4200],[405,6,5,4200,4205],[406,1,1,4205,4206],[408,1,1,4206,4207],[409,2,2,4207,4209],[410,4,3,4209,4212],[411,5,3,4212,4215],[412,1,1,4215,4216]]],[15,93,71,4216,4287,[[413,8,5,4216,4221],[414,5,5,4221,4226],[415,2,2,4226,4228],[416,8,8,4228,4236],[417,10,7,4236,4243],[418,5,4,4243,4247],[419,3,2,4247,4249],[420,7,5,4249,4254],[421,19,14,4254,4268],[422,7,5,4268,4273],[424,8,5,4273,4278],[425,11,9,4278,4287]]],[16,75,64,4287,4351,[[426,7,6,4287,4293],[427,10,10,4293,4303],[428,7,5,4303,4308],[429,10,8,4308,4316],[430,11,8,4316,4324],[431,8,7,4324,4331],[432,2,2,4331,4333],[433,9,7,4333,4340],[434,11,11,4340,4351]]],[17,32,28,4351,4379,[[436,4,3,4351,4354],[437,7,7,4354,4361],[438,2,1,4361,4362],[442,1,1,4362,4363],[448,1,1,4363,4364],[463,1,1,4364,4365],[467,3,3,4365,4368],[473,1,1,4368,4369],[475,3,3,4369,4372],[476,1,1,4372,4373],[477,8,6,4373,4379]]],[18,123,110,4379,4489,[[479,2,2,4379,4381],[480,1,1,4381,4382],[490,1,1,4382,4383],[491,1,1,4383,4384],[493,2,2,4384,4386],[502,1,1,4386,4387],[503,1,1,4387,4388],[504,2,2,4388,4390],[505,2,1,4390,4391],[506,2,2,4391,4393],[508,2,2,4393,4395],[510,1,1,4395,4396],[511,3,3,4396,4399],[512,1,1,4399,4400],[514,1,1,4400,4401],[524,2,1,4401,4402],[528,1,1,4402,4403],[530,1,1,4403,4404],[549,1,1,4404,4405],[555,5,4,4405,4409],[556,4,3,4409,4412],[557,1,1,4412,4413],[560,1,1,4413,4414],[561,1,1,4414,4415],[569,1,1,4415,4416],[571,1,1,4416,4417],[575,1,1,4417,4418],[577,1,1,4418,4419],[579,5,4,4419,4423],[580,5,4,4423,4427],[581,2,2,4427,4429],[582,8,6,4429,4435],[583,9,9,4435,4444],[589,1,1,4444,4445],[590,1,1,4445,4446],[592,2,1,4446,4447],[593,3,2,4447,4449],[594,1,1,4449,4450],[596,3,3,4450,4453],[598,1,1,4453,4454],[600,1,1,4454,4455],[603,2,2,4455,4457],[604,1,1,4457,4458],[607,1,1,4458,4459],[609,1,1,4459,4460],[610,1,1,4460,4461],[611,2,2,4461,4463],[612,5,3,4463,4466],[613,2,2,4466,4468],[614,5,5,4468,4473],[615,1,1,4473,4474],[617,1,1,4474,4475],[619,1,1,4475,4476],[621,1,1,4476,4477],[622,3,3,4477,4480],[623,3,3,4480,4483],[624,3,2,4483,4485],[625,4,4,4485,4489]]],[19,17,16,4489,4505,[[628,1,1,4489,4490],[630,4,3,4490,4493],[632,1,1,4493,4494],[633,2,2,4494,4496],[643,1,1,4496,4497],[649,1,1,4497,4498],[650,3,3,4498,4501],[651,1,1,4501,4502],[652,1,1,4502,4503],[653,1,1,4503,4504],[654,1,1,4504,4505]]],[20,68,54,4505,4559,[[659,2,2,4505,4507],[660,7,7,4507,4514],[661,6,4,4514,4518],[662,10,8,4518,4526],[663,7,5,4526,4531],[665,10,8,4531,4539],[666,8,5,4539,4544],[667,7,5,4544,4549],[668,2,2,4549,4551],[669,5,4,4551,4555],[670,4,4,4555,4559]]],[21,19,16,4559,4575,[[671,2,2,4559,4561],[672,3,2,4561,4563],[673,4,4,4563,4567],[675,4,3,4567,4570],[677,1,1,4570,4571],[678,5,4,4571,4575]]],[22,152,127,4575,4702,[[679,2,1,4575,4576],[680,1,1,4576,4577],[681,1,1,4577,4578],[682,1,1,4578,4579],[683,2,2,4579,4581],[684,6,4,4581,4585],[685,6,5,4585,4590],[686,7,5,4590,4595],[687,6,4,4595,4599],[688,2,2,4599,4601],[689,6,5,4601,4606],[691,2,2,4606,4608],[692,1,1,4608,4609],[693,1,1,4609,4610],[697,5,5,4610,4615],[698,1,1,4615,4616],[699,1,1,4616,4617],[700,2,2,4617,4619],[701,1,1,4619,4620],[702,1,1,4620,4621],[704,1,1,4621,4622],[705,2,2,4622,4624],[706,1,1,4624,4625],[707,4,3,4625,4628],[708,6,6,4628,4634],[711,2,2,4634,4636],[714,14,11,4636,4647],[715,11,11,4647,4658],[716,5,4,4658,4662],[717,3,2,4662,4664],[718,2,2,4664,4666],[719,4,3,4666,4669],[722,1,1,4669,4670],[723,1,1,4670,4671],[725,1,1,4671,4672],[726,1,1,4672,4673],[727,4,3,4673,4676],[728,1,1,4676,4677],[729,4,2,4677,4679],[730,2,1,4679,4680],[731,1,1,4680,4681],[733,2,2,4681,4683],[734,2,2,4683,4685],[735,1,1,4685,4686],[737,2,1,4686,4687],[740,4,4,4687,4691],[741,2,2,4691,4693],[742,1,1,4693,4694],[743,4,4,4694,4698],[744,8,4,4698,4702]]],[23,530,413,4702,5115,[[745,2,2,4702,4704],[746,8,7,4704,4711],[747,12,9,4711,4720],[748,1,1,4720,4721],[749,4,4,4721,4725],[750,5,5,4725,4730],[751,18,16,4730,4746],[752,5,4,4746,4750],[753,7,7,4750,4757],[754,5,5,4757,4762],[755,14,10,4762,4772],[756,12,7,4772,4779],[757,8,8,4779,4787],[758,4,4,4787,4791],[759,4,4,4791,4795],[760,10,7,4795,4802],[761,7,6,4802,4808],[762,4,4,4808,4812],[763,15,9,4812,4821],[764,9,7,4821,4828],[765,7,6,4828,4834],[766,9,9,4834,4843],[767,22,17,4843,4860],[768,5,4,4860,4864],[769,19,14,4864,4878],[770,13,9,4878,4887],[771,16,12,4887,4899],[772,10,9,4899,4908],[773,13,10,4908,4918],[774,4,4,4918,4922],[775,12,8,4922,4930],[776,31,23,4930,4953],[777,8,7,4953,4960],[778,19,11,4960,4971],[779,9,6,4971,4977],[780,30,22,4977,4999],[781,5,5,4999,5004],[782,18,11,5004,5015],[783,5,5,5015,5020],[784,8,8,5020,5028],[785,12,9,5028,5037],[786,4,4,5037,5041],[787,12,8,5041,5049],[788,17,13,5049,5062],[789,2,2,5062,5064],[790,1,1,5064,5065],[791,3,2,5065,5067],[792,1,1,5067,5068],[793,12,9,5068,5077],[794,10,8,5077,5085],[795,26,19,5085,5104],[796,13,11,5104,5115]]],[24,6,6,5115,5121,[[797,2,2,5115,5117],[798,2,2,5117,5119],[800,1,1,5119,5120],[801,1,1,5120,5121]]],[25,370,298,5121,5419,[[802,3,3,5121,5124],[803,5,4,5124,5128],[804,11,8,5128,5136],[805,10,7,5136,5143],[806,7,6,5143,5149],[807,4,2,5149,5151],[808,4,4,5151,5155],[809,6,4,5155,5159],[810,5,3,5159,5162],[811,5,5,5162,5167],[812,9,8,5167,5175],[813,7,6,5175,5181],[814,9,6,5181,5187],[815,7,5,5187,5192],[816,5,4,5192,5196],[817,29,21,5196,5217],[818,9,6,5217,5223],[819,9,9,5223,5232],[821,22,17,5232,5249],[823,4,2,5249,5251],[824,11,8,5251,5259],[825,9,7,5259,5266],[826,8,6,5266,5272],[827,3,3,5272,5275],[828,1,1,5275,5276],[829,2,2,5276,5278],[830,8,7,5278,5285],[831,18,13,5285,5298],[832,3,3,5298,5301],[833,9,8,5301,5309],[834,12,11,5309,5320],[835,11,10,5320,5330],[836,5,5,5330,5335],[837,10,10,5335,5345],[838,6,5,5345,5350],[839,1,1,5350,5351],[840,14,10,5351,5361],[841,14,13,5361,5374],[842,3,3,5374,5377],[843,2,2,5377,5379],[844,14,11,5379,5390],[845,15,11,5390,5401],[846,6,6,5401,5407],[847,10,7,5407,5414],[848,4,4,5414,5418],[849,1,1,5418,5419]]],[26,36,29,5419,5448,[[850,10,7,5419,5426],[851,1,1,5426,5427],[857,7,6,5427,5433],[858,6,5,5433,5438],[859,11,9,5438,5447],[861,1,1,5447,5448]]],[27,34,30,5448,5478,[[862,5,5,5448,5453],[863,14,11,5453,5464],[864,2,2,5464,5466],[865,2,2,5466,5468],[866,3,2,5468,5470],[867,1,1,5470,5471],[868,1,1,5471,5472],[869,1,1,5472,5473],[870,1,1,5473,5474],[871,2,2,5474,5476],[873,2,2,5476,5478]]],[28,11,11,5478,5489,[[877,6,6,5478,5484],[878,5,5,5484,5489]]],[29,37,32,5489,5521,[[879,2,2,5489,5491],[880,6,5,5491,5496],[881,2,2,5496,5498],[882,3,3,5498,5501],[883,5,5,5501,5506],[884,1,1,5506,5507],[885,4,3,5507,5510],[886,2,2,5510,5512],[887,12,9,5512,5521]]],[30,8,5,5521,5526,[[888,8,5,5521,5526]]],[31,11,11,5526,5537,[[889,5,5,5526,5531],[890,2,2,5531,5533],[891,2,2,5533,5535],[892,2,2,5535,5537]]],[32,10,10,5537,5547,[[895,2,2,5537,5539],[896,1,1,5539,5540],[897,3,3,5540,5543],[898,3,3,5543,5546],[899,1,1,5546,5547]]],[33,1,1,5547,5548,[[901,1,1,5547,5548]]],[34,3,3,5548,5551,[[903,2,2,5548,5550],[904,1,1,5550,5551]]],[35,14,11,5551,5562,[[906,6,5,5551,5556],[907,5,4,5556,5560],[908,3,2,5560,5562]]],[36,8,7,5562,5569,[[909,1,1,5562,5563],[910,7,6,5563,5569]]],[37,83,61,5569,5630,[[911,10,8,5569,5577],[912,4,4,5577,5581],[913,6,4,5581,5585],[914,2,2,5585,5587],[915,3,3,5587,5590],[916,3,3,5590,5593],[917,3,3,5593,5596],[918,14,9,5596,5605],[920,3,2,5605,5607],[921,15,8,5607,5615],[922,8,7,5615,5622],[923,6,3,5622,5625],[924,6,5,5625,5630]]],[38,20,17,5630,5647,[[925,4,4,5630,5634],[926,7,5,5634,5639],[927,6,5,5639,5644],[928,3,3,5644,5647]]]],[0,3,6,15,20,21,24,26,27,28,29,30,33,35,36,37,38,40,41,43,45,52,54,63,65,73,78,79,80,81,90,91,93,96,97,99,101,104,105,107,108,109,111,112,114,115,117,118,120,121,123,124,126,127,130,131,134,135,137,139,143,144,147,149,151,154,155,163,168,176,182,184,189,190,191,192,193,195,196,204,206,208,210,211,214,216,218,220,227,228,229,242,245,247,249,258,260,271,274,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,297,303,305,312,315,318,328,329,333,334,340,341,343,347,348,350,352,353,359,365,367,370,371,374,378,379,384,391,397,402,404,405,406,408,411,412,416,417,420,422,443,452,465,467,470,471,472,474,476,478,482,484,486,489,490,492,497,503,505,509,512,514,516,518,521,522,526,528,529,530,531,532,538,539,541,543,548,549,550,551,553,556,557,559,560,563,564,568,570,571,576,577,579,580,581,584,585,587,590,592,596,597,598,599,600,621,626,627,639,643,648,650,651,652,655,657,658,660,661,663,669,677,678,680,686,689,691,692,695,696,700,703,710,716,726,728,733,742,744,754,757,761,763,768,769,772,777,778,779,782,788,791,792,798,800,803,805,806,808,813,816,817,818,819,822,823,824,825,826,828,830,834,839,841,843,845,850,851,852,853,854,855,856,859,865,866,868,871,874,875,878,879,880,882,885,888,890,891,892,893,894,896,898,899,903,904,905,907,908,910,914,915,923,925,935,938,940,945,947,950,951,959,960,961,962,965,971,978,979,983,984,985,987,992,993,994,996,997,1001,1006,1008,1011,1013,1015,1021,1023,1026,1033,1042,1044,1045,1046,1052,1054,1064,1075,1085,1086,1094,1095,1097,1099,1106,1109,1111,1112,1114,1115,1122,1123,1124,1139,1140,1154,1156,1168,1171,1172,1176,1179,1181,1183,1185,1191,1192,1193,1195,1199,1202,1203,1204,1207,1209,1211,1215,1219,1220,1223,1225,1229,1230,1234,1237,1239,1240,1243,1246,1251,1259,1260,1261,1268,1269,1270,1276,1277,1278,1279,1281,1282,1286,1287,1289,1290,1292,1294,1297,1304,1305,1306,1307,1311,1313,1314,1315,1316,1319,1325,1328,1330,1335,1340,1343,1346,1348,1353,1355,1356,1358,1360,1371,1375,1376,1377,1382,1385,1391,1392,1404,1406,1411,1416,1426,1427,1429,1430,1431,1432,1434,1437,1440,1442,1443,1452,1455,1459,1461,1462,1463,1464,1465,1466,1467,1471,1472,1474,1504,1506,1508,1511,1512,1513,1517,1520,1521,1531,1540,1543,1545,1546,1548,1549,1550,1553,1555,1557,1559,1560,1561,1562,1563,1566,1568,1569,1570,1571,1573,1574,1575,1576,1578,1579,1580,1582,1586,1588,1589,1590,1591,1595,1596,1599,1600,1601,1616,1618,1620,1621,1622,1624,1626,1629,1630,1631,1632,1633,1634,1636,1637,1638,1652,1653,1655,1659,1660,1661,1662,1663,1666,1668,1675,1678,1680,1681,1682,1684,1687,1688,1689,1690,1694,1695,1697,1701,1705,1710,1711,1712,1715,1716,1717,1718,1724,1725,1726,1727,1728,1731,1732,1736,1739,1742,1743,1748,1749,1752,1754,1755,1756,1757,1758,1761,1762,1763,1764,1765,1767,1771,1775,1777,1778,1779,1781,1782,1784,1785,1788,1789,1790,1792,1794,1796,1797,1799,1800,1801,1803,1804,1807,1809,1816,1824,1829,1833,1839,1840,1841,1843,1844,1847,1850,1852,1855,1866,1867,1870,1872,1874,1877,1884,1885,1886,1893,1894,1895,1897,1899,1901,1902,1905,1906,1909,1910,1913,1914,1915,1916,1917,1919,1920,1921,1939,1940,1942,1950,1952,1953,1954,1955,1956,1959,1960,1970,1971,1978,1979,1980,1982,1985,1988,1990,1996,1997,2000,2001,2007,2009,2012,2013,2015,2018,2019,2021,2022,2025,2026,2031,2033,2034,2035,2038,2040,2043,2049,2052,2058,2059,2062,2063,2069,2075,2082,2083,2084,2095,2097,2103,2105,2112,2118,2119,2136,2138,2153,2154,2159,2160,2166,2169,2170,2171,2172,2174,2175,2177,2180,2181,2182,2185,2187,2188,2189,2192,2197,2204,2209,2211,2214,2216,2217,2221,2222,2223,2232,2241,2244,2246,2250,2253,2264,2265,2268,2269,2270,2273,2279,2281,2292,2294,2296,2298,2299,2302,2304,2305,2307,2316,2317,2321,2322,2323,2324,2331,2334,2341,2342,2343,2346,2347,2349,2351,2352,2354,2355,2356,2358,2362,2363,2365,2367,2368,2369,2370,2375,2380,2382,2385,2387,2389,2390,2394,2397,2398,2401,2408,2426,2427,2433,2434,2436,2437,2441,2447,2449,2451,2455,2457,2458,2460,2463,2465,2472,2473,2475,2477,2479,2480,2483,2485,2486,2490,2491,2492,2493,2496,2497,2506,2507,2509,2512,2514,2519,2520,2523,2524,2526,2528,2530,2531,2532,2536,2541,2542,2543,2544,2547,2548,2549,2550,2552,2555,2556,2557,2558,2560,2567,2569,2570,2571,2574,2576,2579,2582,2584,2586,2589,2599,2600,2601,2605,2609,2612,2614,2617,2618,2619,2620,2621,2627,2629,2630,2632,2633,2634,2636,2639,2640,2641,2642,2655,2660,2663,2665,2666,2667,2669,2670,2671,2672,2673,2680,2685,2686,2689,2690,2691,2693,2694,2695,2696,2697,2699,2700,2701,2703,2704,2705,2706,2707,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2722,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2747,2750,2751,2753,2754,2756,2757,2758,2759,2760,2761,2764,2770,2771,2776,2778,2780,2781,2785,2786,2787,2791,2792,2799,2801,2803,2807,2810,2812,2816,2818,2819,2824,2828,2836,2837,2838,2841,2842,2845,2851,2853,2858,2859,2860,2875,2881,2882,2887,2893,2895,2908,2909,2910,2912,2913,2917,2919,2923,2924,2925,2926,2927,2928,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2941,2942,2944,2946,2947,2948,2950,2952,2953,2958,2960,2961,2962,2963,2965,2967,2968,2969,2970,2971,2973,2975,2976,2977,2981,2983,2988,2989,2994,2995,2996,3001,3006,3008,3010,3012,3018,3019,3025,3037,3040,3041,3042,3055,3056,3064,3065,3067,3069,3074,3077,3079,3082,3083,3084,3085,3086,3101,3102,3103,3104,3106,3107,3109,3116,3117,3118,3119,3120,3122,3123,3124,3127,3130,3131,3135,3136,3141,3142,3147,3148,3149,3151,3152,3153,3154,3156,3158,3159,3160,3161,3162,3163,3164,3184,3186,3192,3198,3199,3201,3205,3207,3208,3210,3211,3212,3214,3216,3221,3222,3223,3224,3225,3227,3228,3229,3230,3232,3233,3234,3235,3240,3241,3242,3245,3248,3255,3256,3268,3272,3276,3277,3278,3279,3281,3289,3290,3293,3294,3298,3299,3300,3302,3304,3306,3308,3310,3311,3317,3318,3321,3322,3323,3324,3326,3327,3332,3334,3335,3336,3337,3339,3340,3341,3342,3343,3351,3353,3354,3355,3357,3359,3366,3368,3371,3378,3383,3384,3385,3394,3401,3402,3404,3412,3413,3414,3416,3417,3424,3429,3432,3434,3439,3441,3445,3446,3448,3450,3457,3460,3469,3472,3474,3479,3480,3481,3483,3486,3487,3489,3490,3491,3494,3496,3506,3507,3515,3521,3524,3526,3529,3531,3533,3537,3538,3539,3540,3543,3544,3546,3554,3555,3556,3558,3559,3562,3564,3565,3566,3567,3569,3581,3584,3585,3588,3589,3590,3592,3593,3604,3606,3621,3623,3653,3654,3655,3657,3658,3691,3692,3698,3699,3700,3701,3702,3704,3707,3732,3733,3734,3737,3741,3742,3743,3745,3748,3750,3751,3752,3754,3755,3756,3757,3758,3761,3762,3763,3765,3768,3770,3773,3775,3777,3789,3792,3794,3795,3796,3799,3802,3806,3807,3808,3810,3811,3812,3813,3815,3816,3817,3818,3819,3822,3823,3834,3835,3837,3839,3840,3841,3842,3846,3850,3851,3853,3855,3856,3857,3860,3861,3862,3869,3939,3941,3942,3943,3945,3948,3949,3950,3951,3952,3953,3954,3957,3958,3959,3961,3967,3970,3972,3980,3984,3988,3990,3995,4009,4029,4034,4035,4036,4038,4044,4046,4048,4053,4056,4058,4077,4091,4092,4093,4096,4101,4105,4108,4109,4114,4117,4121,4123,4124,4129,4130,4131,4135,4138,4139,4141,4142,4144,4146,4147,4149,4166,4175,4176,4178,4183,4189,4192,4193,4194,4199,4203,4204,4209,4213,4222,4224,4225,4226,4229,4231,4232,4233,4235,4240,4241,4246,4249,4251,4253,4254,4258,4259,4261,4262,4263,4264,4265,4272,4274,4278,4280,4281,4283,4285,4286,4287,4289,4292,4294,4298,4299,4302,4309,4315,4316,4319,4320,4321,4322,4323,4325,4332,4335,4336,4337,4339,4340,4342,4343,4344,4346,4347,4349,4354,4356,4357,4363,4364,4365,4366,4372,4375,4377,4379,4380,4381,4386,4387,4392,4393,4395,4396,4398,4400,4402,4403,4406,4407,4408,4410,4416,4420,4426,4428,4444,4447,4448,4456,4459,4466,4467,4475,4477,4479,4482,4483,4488,4491,4493,4499,4518,4544,4547,4548,4549,4552,4553,4559,4561,4562,4563,4564,4565,4566,4572,4573,4576,4577,4579,4581,4600,4615,4648,4652,4656,4660,4662,4663,4664,4671,4672,4673,4675,4676,4685,4686,4690,4691,4695,4705,4711,4713,4714,4715,4718,4719,4723,4725,4726,4727,4729,4738,4739,4741,4746,4747,4749,4751,4752,4755,4756,4757,4758,4759,4760,4762,4764,4811,4812,4813,4814,4815,4818,4829,4833,4834,4845,4847,4850,4851,4855,4859,4864,4866,4870,4871,4872,4875,4878,4879,4881,4884,4889,4895,4896,4897,4900,4907,4908,4910,4911,4913,4914,4916,4918,4920,4923,4926,4927,4928,4930,4933,4935,4939,4941,4943,4945,4947,4951,4952,4956,4960,4962,4967,4968,4969,4971,4972,4974,4978,4979,4983,4989,4990,4993,4995,4996,4999,5000,5002,5003,5005,5006,5007,5010,5013,5014,5017,5023,5024,5025,5026,5027,5030,5033,5035,5040,5041,5042,5044,5046,5047,5051,5054,5056,5058,5064,5065,5068,5069,5075,5076,5077,5078,5080,5081,5082,5084,5088,5091,5098,5099,5102,5103,5104,5105,5109,5110,5111,5115,5119,5122,5123,5127,5129,5131,5133,5135,5138,5139,5142,5143,5147,5148,5151,5154,5155,5156,5158,5161,5162,5163,5164,5165,5167,5168,5170,5171,5178,5179,5180,5182,5188,5190,5191,5194,5197,5198,5199,5202,5205,5206,5207,5209,5210,5212,5214,5215,5216,5218,5221,5225,5226,5227,5230,5231,5235,5237,5239,5240,5242,5243,5245,5246,5250,5251,5259,5260,5262,5268,5269,5270,5271,5272,5275,5277,5285,5287,5288,5290,5297,5299,5306,5312,5313,5318,5321,5322,5324,5326,5327,5330,5334,5336,5337,5342,5343,5345,5347,5348,5354,5358,5360,5362,5366,5369,5373,5380,5382,5383,5396,5398,5400,5402,5404,5405,5407,5409,5410,5411,5414,5415,5435,5440,5441,5446,5451,5453,5454,5459,5460,5463,5464,5466,5470,5471,5474,5477,5484,5485,5486,5488,5491,5494,5495,5500,5504,5505,5513,5529,5530,5534,5536,5538,5540,5543,5547,5548,5554,5556,5558,5559,5564,5566,5573,5575,5576,5578,5581,5582,5583,5586,5587,5588,5589,5591,5593,5595,5596,5597,5611,5612,5618,5619,5620,5623,5626,5631,5632,5635,5640,5658,5659,5669,5670,5671,5674,5680,5681,5687,5688,5693,5695,5696,5697,5698,5699,5701,5704,5706,5708,5711,5714,5715,5716,5723,5724,5726,5727,5728,5729,5730,5731,5732,5737,5739,5740,5741,5742,5744,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5802,5803,5804,5805,5807,5810,5811,5840,5845,5847,5848,5853,5857,5859,5861,5862,5864,5866,5867,5869,5870,5871,5872,5873,5878,5879,5882,5883,5887,5889,5890,5892,5893,5896,5897,5899,5901,5902,5903,5907,5910,5911,5913,5920,5924,5926,5927,5931,5932,5933,5934,5935,5936,5937,5940,5943,5944,5951,5952,5953,5954,5955,5956,5960,5961,5963,5964,5965,5966,5967,5969,5970,5971,5972,5974,5975,5978,5979,5983,5985,5987,5989,5991,5992,5993,5994,5996,6000,6003,6009,6010,6012,6015,6019,6021,6023,6026,6028,6029,6030,6031,6033,6034,6035,6036,6040,6057,6061,6065,6068,6076,6085,6086,6087,6088,6089,6096,6097,6103,6104,6113,6116,6117,6118,6120,6121,6122,6123,6126,6127,6128,6130,6131,6161,6167,6175,6192,6193,6194,6195,6197,6199,6200,6215,6216,6218,6219,6221,6275,6279,6287,6288,6289,6293,6294,6295,6296,6299,6301,6303,6370,6371,6372,6374,6376,6377,6379,6380,6384,6389,6390,6392,6394,6397,6398,6399,6402,6404,6405,6406,6408,6409,6411,6412,6413,6415,6416,6417,6418,6419,6420,6424,6425,6428,6429,6431,6437,6439,6443,6447,6450,6451,6452,6453,6454,6456,6457,6458,6459,6463,6464,6465,6466,6471,6473,6475,6476,6477,6479,6480,6481,6482,6483,6484,6487,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6502,6503,6504,6507,6511,6513,6514,6515,6519,6521,6522,6524,6526,6527,6528,6529,6533,6534,6536,6537,6538,6539,6540,6542,6543,6546,6548,6549,6551,6552,6555,6556,6557,6558,6565,6567,6568,6569,6572,6574,6575,6576,6577,6578,6580,6581,6582,6583,6585,6586,6589,6592,6593,6594,6596,6597,6599,6602,6603,6606,6608,6609,6612,6613,6614,6618,6620,6621,6622,6623,6656,6658,6662,6663,6664,6668,6669,6670,6672,6674,6675,6679,6680,6681,6684,6685,6686,6688,6690,6691,6692,6696,6698,6699,6701,6702,6708,6709,6710,6713,6716,6718,6719,6722,6726,6728,6730,6731,6733,6735,6736,6738,6740,6744,6750,6753,6757,6759,6760,6763,6765,6767,6769,6770,6771,6772,6774,6778,6779,6781,6782,6783,6784,6785,6790,6795,6797,6799,6802,6803,6807,6810,6812,6813,6814,6817,6819,6820,6821,6827,6830,6831,6834,6838,6840,6842,6844,6847,6849,6850,6851,6852,6853,6858,6859,6864,6865,6867,6868,6873,6874,6876,6877,6878,6880,6882,6883,6889,6903,6907,6908,6915,6917,6924,6928,6930,6935,6939,6947,6948,6949,6958,6962,6963,6966,6967,6968,6970,6972,6973,6975,6978,6980,6983,6984,6985,6992,6995,6996,7000,7002,7007,7010,7011,7013,7014,7015,7017,7020,7021,7023,7024,7041,7046,7047,7053,7059,7067,7089,7091,7097,7098,7100,7112,7122,7125,7133,7158,7160,7164,7166,7167,7168,7170,7174,7176,7186,7188,7196,7199,7200,7201,7203,7205,7206,7208,7209,7210,7211,7212,7217,7223,7224,7226,7227,7228,7229,7231,7232,7233,7234,7235,7237,7239,7251,7252,7255,7257,7258,7259,7260,7261,7262,7263,7268,7269,7271,7272,7273,7277,7283,7288,7289,7291,7292,7294,7300,7301,7303,7305,7311,7315,7316,7320,7321,7322,7325,7327,7328,7329,7330,7334,7336,7337,7338,7339,7340,7342,7344,7345,7346,7349,7352,7353,7355,7356,7357,7358,7363,7364,7367,7368,7369,7370,7377,7380,7389,7390,7394,7397,7399,7407,7408,7409,7410,7411,7413,7414,7415,7418,7419,7420,7426,7432,7435,7436,7437,7438,7439,7443,7449,7450,7451,7456,7460,7463,7466,7467,7468,7469,7470,7471,7474,7475,7476,7478,7480,7482,7484,7488,7489,7492,7498,7499,7500,7505,7520,7531,7532,7534,7535,7536,7537,7547,7553,7556,7562,7563,7564,7567,7568,7571,7573,7576,7578,7580,7583,7584,7585,7586,7588,7592,7593,7595,7598,7599,7600,7601,7608,7614,7618,7619,7628,7629,7633,7638,7640,7642,7643,7644,7646,7654,7656,7657,7660,7661,7662,7664,7667,7668,7669,7670,7671,7672,7673,7675,7680,7682,7685,7687,7692,7695,7696,7698,7699,7701,7702,7703,7705,7707,7711,7713,7716,7717,7718,7719,7720,7721,7723,7724,7726,7731,7732,7738,7742,7743,7745,7747,7751,7758,7759,7761,7762,7763,7766,7768,7769,7770,7771,7774,7776,7777,7784,7785,7787,7791,7795,7796,7798,7801,7804,7808,7810,7811,7812,7814,7815,7818,7825,7826,7832,7833,7841,7842,7843,7844,7845,7846,7848,7849,7850,7854,7855,7857,7858,7860,7863,7865,7869,7871,7872,7874,7875,7882,7884,7885,7886,7890,7891,7892,7896,7898,7899,7900,7905,7907,7910,7913,7916,7917,7920,7922,7924,7925,7928,7936,7939,7943,7944,7946,7947,7950,7951,7953,7954,7957,7959,7961,7963,7968,7971,7979,7980,7982,7985,7988,7996,7998,7999,8000,8001,8011,8013,8016,8017,8018,8019,8020,8021,8022,8023,8036,8038,8053,8057,8070,8078,8079,8081,8091,8092,8093,8094,8095,8098,8099,8100,8102,8106,8107,8111,8113,8116,8125,8127,8128,8129,8131,8132,8134,8135,8139,8149,8151,8152,8153,8156,8157,8158,8159,8160,8166,8167,8168,8169,8172,8173,8174,8175,8177,8186,8187,8189,8192,8193,8200,8201,8204,8207,8208,8209,8210,8211,8212,8213,8215,8216,8218,8219,8222,8223,8234,8237,8238,8243,8244,8246,8247,8256,8257,8259,8260,8265,8270,8274,8275,8277,8278,8280,8281,8284,8287,8290,8292,8294,8295,8296,8297,8298,8300,8301,8302,8310,8311,8312,8313,8314,8315,8316,8317,8321,8322,8325,8326,8327,8329,8330,8334,8337,8338,8339,8344,8345,8347,8348,8349,8351,8359,8362,8363,8367,8369,8371,8372,8375,8376,8377,8378,8379,8382,8386,8387,8394,8395,8396,8397,8399,8401,8403,8405,8409,8410,8412,8413,8414,8418,8420,8423,8429,8432,8434,8435,8436,8437,8443,8451,8455,8457,8463,8464,8468,8470,8471,8472,8473,8479,8480,8483,8488,8493,8494,8495,8496,8497,8501,8502,8505,8506,8507,8515,8516,8517,8521,8522,8523,8525,8526,8529,8530,8532,8539,8540,8541,8542,8543,8546,8547,8548,8549,8550,8551,8552,8554,8557,8558,8559,8560,8566,8576,8581,8583,8588,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8601,8602,8603,8622,8665,8669,8671,8673,8674,8693,8694,8696,8697,8701,8702,8709,8712,8713,8716,8720,8726,8729,8731,8732,8744,8746,8750,8753,8754,8755,8756,8758,8760,8761,8764,8768,8771,8773,8774,8775,8779,8786,8787,8790,8791,8792,8793,8796,8797,8799,8800,8802,8805,8807,8810,8813,8814,8816,8817,8819,8822,8823,8825,8826,8827,8830,8836,8837,8841,8842,8843,8844,8851,8859,8865,8871,8878,8879,8881,8885,8886,8887,8901,8905,8906,8908,8909,8910,8911,8912,8915,8917,8923,8924,8928,8932,8935,8936,8947,8948,8949,8952,8955,8957,8958,8961,8971,8973,8974,8975,8976,8981,8982,8985,8986,8988,8989,8991,8995,8996,8999,9001,9005,9006,9009,9010,9016,9017,9018,9020,9021,9024,9027,9028,9030,9033,9034,9038,9039,9040,9043,9048,9049,9050,9051,9052,9054,9056,9058,9060,9061,9062,9063,9066,9067,9068,9075,9076,9078,9080,9081,9082,9083,9087,9088,9091,9092,9103,9106,9110,9111,9112,9118,9119,9121,9122,9123,9127,9128,9131,9135,9136,9139,9142,9143,9146,9147,9148,9152,9155,9157,9159,9160,9161,9164,9165,9166,9167,9169,9171,9172,9175,9176,9180,9182,9183,9186,9188,9190,9192,9195,9196,9205,9209,9210,9211,9212,9213,9214,9215,9217,9224,9226,9232,9233,9234,9239,9240,9244,9253,9254,9261,9262,9264,9266,9267,9268,9269,9270,9271,9272,9275,9278,9279,9283,9285,9286,9294,9295,9296,9299,9301,9302,9305,9307,9309,9314,9316,9317,9335,9336,9337,9340,9344,9345,9347,9350,9351,9353,9354,9358,9359,9360,9361,9364,9367,9371,9374,9376,9377,9378,9379,9381,9388,9389,9390,9391,9397,9401,9402,9406,9407,9408,9409,9414,9420,9421,9423,9429,9430,9433,9434,9435,9436,9437,9439,9444,9447,9449,9450,9453,9454,9455,9457,9458,9460,9463,9464,9466,9470,9473,9474,9476,9478,9485,9486,9488,9491,9497,9499,9500,9504,9506,9507,9511,9512,9514,9517,9518,9532,9533,9540,9547,9552,9554,9556,9559,9564,9565,9567,9578,9579,9582,9587,9594,9598,9599,9600,9603,9604,9610,9634,9638,9640,9653,9654,9655,9667,9671,9673,9680,9686,9689,9691,9692,9694,9698,9702,9703,9704,9706,9709,9713,9714,9719,9723,9724,9726,9728,9731,9732,9733,9735,9738,9739,9746,9748,9755,9756,9763,9765,9767,9772,9773,9778,9780,9781,9782,9784,9786,9790,9792,9799,9800,9802,9803,9804,9806,9808,9810,9811,9812,9819,9820,9821,9822,9824,9826,9830,9831,9833,9835,9836,9838,9839,9841,9842,9843,9844,9846,9847,9848,9855,9856,9857,9858,9859,9860,9861,9862,9864,9865,9868,9870,9873,9875,9877,9882,9888,9890,9892,9893,9896,9901,9903,9905,9906,9910,9917,9918,9920,9921,9922,9923,9924,9930,9934,9939,9941,9943,9945,9949,9953,9954,9960,9966,9969,9971,9973,9974,9975,9976,9978,9980,9989,9990,9994,9995,9996,9997,9998,9999,10000,10002,10004,10006,10007,10008,10009,10010,10011,10013,10014,10015,10016,10017,10019,10022,10024,10028,10030,10032,10035,10036,10038,10039,10040,10041,10046,10048,10051,10054,10056,10057,10058,10059,10062,10063,10065,10069,10072,10073,10075,10076,10077,10078,10079,10083,10100,10101,10103,10107,10109,10111,10113,10118,10122,10123,10125,10126,10128,10130,10132,10133,10134,10135,10140,10141,10142,10143,10148,10149,10151,10153,10154,10156,10157,10158,10161,10163,10164,10165,10167,10168,10169,10170,10171,10172,10173,10175,10176,10177,10179,10180,10181,10182,10184,10185,10186,10187,10189,10192,10195,10199,10200,10204,10206,10215,10216,10217,10219,10222,10228,10229,10231,10235,10240,10241,10244,10245,10246,10247,10249,10250,10251,10262,10263,10265,10270,10272,10284,10286,10298,10310,10315,10316,10317,10318,10319,10323,10325,10326,10327,10328,10330,10335,10341,10342,10343,10344,10345,10346,10347,10350,10352,10355,10387,10391,10393,10395,10396,10397,10399,10402,10403,10426,10428,10454,10458,10459,10460,10461,10462,10463,10464,10465,10466,10467,10468,10469,10486,10509,10511,10512,10514,10518,10519,10521,10524,10525,10526,10528,10530,10531,10532,10534,10549,10553,10556,10558,10559,10567,10576,10582,10583,10584,10586,10587,10588,10607,10608,10609,10611,10612,10653,10654,10655,10657,10658,10661,10663,10667,10668,10669,10670,10671,10673,10675,10676,10678,10681,10684,10687,10691,10693,10695,10696,10735,10738,10751,10758,10763,10765,10766,10767,10769,10772,10773,10774,10782,10785,10786,10789,10790,10791,10793,10794,10795,10803,10805,10806,10807,10808,10816,10817,10818,10819,10820,10821,10822,10844,10853,10863,10868,10869,10871,10873,10874,10875,10881,10882,10885,10888,10890,10891,10892,10893,10894,10897,10898,10899,10900,10902,10903,10910,10911,10915,10923,10924,10926,10927,10928,10930,10931,10933,10935,10936,10939,10940,10941,10942,10946,10950,10954,10955,10966,10976,10977,10982,10983,10984,10985,11009,11015,11110,11132,11144,11150,11151,11152,11154,11174,11184,11189,11204,11205,11209,11222,11223,11227,11229,11230,11232,11235,11236,11237,11243,11246,11248,11249,11252,11253,11257,11258,11259,11261,11265,11269,11270,11272,11273,11275,11282,11285,11287,11292,11293,11297,11298,11305,11306,11308,11312,11315,11317,11320,11321,11325,11326,11329,11331,11332,11334,11335,11336,11338,11340,11342,11346,11348,11350,11351,11360,11365,11366,11367,11371,11372,11375,11376,11387,11391,11396,11399,11403,11404,11405,11408,11409,11410,11411,11413,11415,11418,11420,11425,11428,11430,11431,11432,11433,11434,11435,11436,11438,11441,11446,11450,11451,11456,11462,11464,11466,11468,11472,11478,11479,11480,11482,11487,11489,11498,11499,11502,11506,11508,11510,11513,11514,11515,11521,11528,11529,11542,11546,11547,11549,11552,11555,11558,11560,11561,11565,11567,11572,11573,11575,11590,11591,11594,11604,11612,11613,11624,11628,11631,11633,11634,11635,11637,11640,11641,11645,11649,11650,11651,11652,11653,11654,11655,11657,11658,11663,11664,11665,11666,11667,11668,11669,11670,11676,11681,11682,11683,11684,11688,11689,11690,11691,11695,11697,11699,11700,11701,11707,11709,11715,11718,11719,11722,11723,11724,11728,11733,11734,11737,11738,11753,11758,11767,11770,11771,11772,11777,11778,11782,11783,11785,11788,11789,11794,11795,11796,11798,11806,11807,11808,11809,11811,11813,11814,11816,11825,11835,11840,11841,11843,11845,11847,11848,11854,11855,11856,11862,11864,11866,11878,11879,11880,11887,11888,11889,11893,11897,11905,11911,11914,11915,11916,11917,11919,11920,11923,11924,11933,11936,11937,11938,11940,11941,11942,11944,11947,11948,11949,11950,11952,11953,11954,11957,11960,11961,11962,11963,11964,11965,11966,11969,11983,11986,11994,11996,11997,12003,12006,12007,12010,12012,12014,12015,12017,12019,12021,12023,12099,12101,12105,12107,12109,12112,12170,12183,12200,12218,12226,12237,12240,12246,12249,12257,12300,12303,12304,12305,12307,12308,12315,12316,12324,12325,12328,12340,12360,12361,12365,12370,12372,12373,12374,12379,12387,12388,12389,12390,12392,12394,12395,12402,12406,12410,12419,12422,12425,12494,12495,12499,12500,12502,12516,12517,12519,12520,12523,12526,12527,12528,12530,12533,12535,12537,12543,12547,12578,12580,12584,12587,12588,12634,12635,12651,12654,12655,12673,12674,12676,12679,12688,12689,12693,12694,12698,12706,12712,12713,12717,12719,12720,12725,12727,12731,12733,12734,12735,12737,12739,12741,12742,12748,12750,12753,12757,12760,12763,12766,12769,12770,12771,12773,12774,12778,12781,12784,12787,12788,12789,12790,12792,12793,12794,12797,12802,12803,12804,12806,12807,12815,12817,12818,12819,12820,12821,12822,12823,12828,12837,12844,12849,12850,12853,12854,12855,12857,12861,12863,12865,12876,12878,12889,12893,12895,12897,12898,12901,12902,12903,12905,13029,13162,13527,13629,13631,13632,13794,13865,13867,13870,13922,13923,13929,13931,13932,13934,13938,13948,13956,13964,14075,14082,14096,14099,14273,14279,14287,14293,14308,14313,14319,14338,14354,14379,14389,14392,14397,14411,14478,14629,14709,14721,15019,15118,15155,15169,15181,15186,15187,15192,15200,15253,15262,15417,15454,15493,15510,15535,15536,15538,15543,15550,15551,15561,15571,15572,15606,15617,15630,15634,15635,15648,15649,15658,15659,15671,15684,15685,15687,15688,15691,15695,15804,15814,15842,15849,15856,15868,15906,15907,16033,16088,16099,16116,16119,16126,16148,16152,16172,16173,16174,16176,16194,16195,16204,16205,16223,16226,16228,16229,16231,16233,16276,16293,16315,16335,16336,16340,16342,16347,16350,16362,16363,16372,16376,16378,16384,16419,16462,16464,16467,16539,16562,16571,16873,17038,17045,17050,17055,17100,17121,17160,17191,17328,17329,17336,17343,17345,17350,17351,17353,17357,17369,17370,17374,17376,17382,17383,17384,17385,17386,17389,17391,17396,17401,17403,17404,17416,17417,17436,17442,17443,17444,17447,17450,17455,17458,17466,17467,17473,17474,17475,17476,17482,17486,17487,17490,17512,17513,17518,17519,17520,17521,17524,17532,17536,17537,17543,17545,17561,17568,17572,17574,17575,17576,17601,17605,17606,17639,17644,17647,17651,17652,17658,17705,17725,17737,17744,17763,17770,17774,17777,17781,17788,17794,17795,17799,17802,17809,17811,17813,17814,17820,17833,17840,17841,17850,17862,17865,17893,17895,17897,17898,17899,17923,17925,17929,17968,18008,18017,18018,18025,18026,18033,18039,18060,18061,18094,18098,18151,18152,18162,18173,18203,18215,18216,18228,18237,18239,18240,18243,18247,18297,18298,18332,18337,18339,18342,18343,18345,18347,18348,18349,18350,18352,18353,18354,18356,18360,18364,18366,18368,18369,18370,18371,18375,18393,18395,18397,18398,18414,18416,18433,18434,18457,18458,18473,18553,18581,18613,18628,18642,18657,18662,18666,18690,18695,18706,18717,18750,18751,18757,18759,18778,18819,18860,18861,18862,18863,18876,18877,18890,18900,18908,18915,18917,18930,18940,18941,18942,18955,18963,18971,18972,18982,18984,18995,18998,19001,19003,19009,19010,19011,19014,19015,19020,19023,19026,19050,19065,19072,19077,19082,19101,19103,19107,19113,19116,19121,19124,19129,19131,19132,19134,19137,19138,19141,19142,19143,19144,19145,19146,19148,19150,19154,19160,19163,19164,19177,19178,19186,19187,19188,19190,19191,19202,19219,19223,19224,19226,19228,19229,19230,19231,19232,19233,19234,19236,19246,19247,19253,19256,19259,19263,19264,19265,19266,19268,19270,19272,19273,19276,19277,19278,19279,19309,19310,19312,19315,19318,19321,19322,19326,19341,19346,19349,19350,19351,19354,19357,19361,19370,19379,19380,19381,19384,19386,19404,19405,19407,19409,19411,19412,19414,19415,19416,19418,19419,19422,19423,19424,19425,19427,19434,19435,19437,19441,19442,19444,19446,19447,19448,19455,19458,19459,19463,19464,19466,19480,19481,19484,19485,19486,19487,19491,19492,19497,19500,19502,19505,19506,19508,19509,19511,19516,19517,19520,19522,19525,19529,19532,19534,19538,19540,19542,19543,19545,19547,19549,19551,19552,19553,19554,19555,19564,19570,19578,19579,19580,19582,19587,19591,19593,19594,19595,19601,19602,19604,19605,19606,19607,19608,19609,19610,19611,19613,19616,19620,19621,19622,19624,19628,19629,19630,19632,19633,19640,19642,19645,19646,19649,19652,19654,19663,19664,19666,19669,19670,19676,19688,19698,19702,19705,19714,19718,19723,19724,19725,19734,19735,19736,19738,19739,19740,19742,19743,19744,19745,19747,19748,19752,19753,19754,19759,19760,19761,19766,19771,19772,19773,19775,19782,19784,19786,19789,19795,19797,19801,19803,19804,19807,19810,19811,19812,19814,19815,19816,19817,19819,19826,19837,19838,19839,19840,19841,19844,19845,19846,19847,19848,19852,19853,19855,19856,19858,19859,19860,19862,19863,19866,19867,19868,19869,19870,19871,19873,19874,19877,19879,19884,19887,19895,19896,19899,19901,19902,19904,19905,19906,19908,19909,19911,19914,19928,19929,19932,19937,19939,19943,19945,19948,19950,19952,19955,19956,19957,19959,19961,19966,19967,19968,19969,19970,19973,19975,19978,19987,19992,19993,19998,20000,20002,20003,20007,20008,20009,20010,20012,20014,20015,20019,20021,20022,20024,20025,20027,20030,20031,20035,20040,20041,20045,20058,20074,20077,20118,20128,20129,20133,20137,20155,20159,20162,20164,20166,20169,20185,20186,20191,20194,20200,20206,20209,20214,20221,20222,20223,20224,20236,20237,20240,20241,20248,20251,20256,20257,20262,20267,20271,20272,20273,20275,20279,20284,20285,20286,20289,20293,20300,20301,20307,20308,20309,20319,20329,20333,20334,20431,20443,20475,20487,20488,20494,20495,20499,20500,20503,20504,20510,20512,20519,20521,20523,20529,20530,20532,20533,20534,20535,20542,20544,20548,20552,20555,20556,20557,20562,20568,20577,20580,20585,20599,20601,20607,20613,20616,20621,20629,20630,20631,20636,20639,20640,20649,20652,20656,20662,20668,20672,20673,20675,20677,20680,20686,20692,20693,20696,20703,20705,20718,20722,20723,20728,20729,20731,20735,20736,20740,20753,20754,20758,20760,20761,20762,20764,20777,20780,20782,20783,20784,20787,20788,20791,20792,20794,20795,20799,20805,20812,20813,20815,20820,20822,20823,20824,20828,20829,20834,20837,20839,20841,20851,20860,20862,20863,20864,20868,20870,20876,20880,20896,20898,20899,20903,20906,20907,20908,20916,20917,20918,20923,20929,20933,20935,20936,20937,20938,20978,20987,21025,21026,21028,21029,21043,21044,21045,21046,21058,21064,21069,21072,21077,21081,21083,21088,21090,21092,21097,21099,21100,21111,21116,21119,21126,21163,21182,21193,21195,21196,21197,21201,21202,21203,21213,21214,21215,21216,21218,21219,21222,21225,21226,21227,21228,21229,21230,21244,21245,21246,21251,21253,21255,21260,21261,21263,21275,21280,21283,21284,21285,21286,21302,21304,21306,21308,21309,21311,21312,21316,21317,21320,21321,21323,21324,21325,21329,21336,21340,21349,21351,21352,21354,21356,21362,21364,21366,21371,21379,21382,21385,21389,21390,21392,21409,21410,21416,21418,21425,21429,21455,21458,21459,21460,21462,21469,21473,21474,21475,21477,21481,21482,21483,21485,21486,21488,21490,21491,21505,21509,21515,21519,21524,21527,21530,21539,21567,21570,21575,21579,21580,21581,21582,21583,21593,21594,21596,21598,21599,21600,21602,21603,21604,21606,21610,21611,21614,21615,21618,21619,21631,21634,21638,21647,21648,21650,21657,21667,21669,21670,21673,21675,21679,21692,21693,21700,21701,21722,21739,21746,21747,21749,21750,21752,21753,21761,21965,21968,21976,21977,21980,21988,21991,21999,22000,22001,22003,22016,22020,22022,22023,22024,22026,22027,22029,22036,22088,22097,22098,22099,22100,22102,22111,22112,22114,22115,22118,22120,22122,22125,22126,22127,22128,22129,22133,22143,22152,22158,22165,22170,22185,22208,22220,22228,22237,22255,22265,22330,22334,22336,22337,22339,22340,22344,22345,22351,22355,22361,22367,22377,22383,22386,22388,22389,22391,22396,22397,22412,22417,22421,22424,22429,22434,22441,22449,22458,22466,22468,22474,22492,22493,22496,22498,22499,22502,22503,22504,22506,22507,22509,22524,22527,22529,22530,22531,22536,22540,22546,22547,22548,22555,22558,22560,22568,22571,22575,22609,22613,22627,22634,22639,22648,22649,22650,22652,22666,22701,22735,22737,22762,22790,22791,22793,22799,22800,22808,22813,22816,22818,22839,22840,22854,22858,22860,22861,22862,22866,22876,22884,22889,22890,22891,22895,22896,22897,22899,22901,22905,22908,22911,22913,22919,22920,22921,22929,22932,22944,22945,22946,22955,22959,22960,22964,22969,22974,22983,22985,22986,22988,22990,22991,22993,22997,22998,23019,23022,23032,23034,23035,23036,23037,23038,23040,23042,23047,23048,23049,23051,23052,23054,23055,23061,23066,23068,23070,23080,23084,23086,23087,23091,23092,23095,23102,23105,23106,23107,23112,23116,23122,23123,23130,23131,23132,23139,23143,23144]]],["+",[6331,5032,[[0,571,458,0,458,[[0,11,10,0,10],[1,10,10,10,20],[2,7,5,20,25],[3,18,11,25,36],[4,21,20,36,56],[5,10,8,56,64],[6,2,2,64,66],[7,11,9,66,75],[8,12,9,75,84],[9,7,6,84,90],[10,24,21,90,111],[11,5,5,111,116],[12,6,3,116,119],[13,10,8,119,127],[14,4,4,127,131],[15,3,3,131,134],[16,13,10,134,144],[17,3,2,144,146],[18,16,11,146,157],[19,4,4,157,161],[20,14,13,161,174],[21,26,13,174,187],[22,9,8,187,195],[23,20,16,195,211],[24,10,9,211,220],[25,7,6,220,226],[26,12,10,226,236],[27,8,6,236,242],[28,18,13,242,255],[29,18,16,255,271],[30,34,26,271,297],[31,11,8,297,305],[32,8,6,305,311],[33,12,11,311,322],[34,6,6,322,328],[35,11,8,328,336],[36,14,10,336,346],[37,5,5,346,351],[38,5,4,351,355],[39,11,9,355,364],[40,20,18,364,382],[41,14,12,382,394],[42,14,12,394,406],[43,12,9,406,415],[44,8,7,415,422],[45,5,5,422,427],[46,13,10,427,437],[47,14,12,437,449],[48,4,2,449,451],[49,11,7,451,458]]],[1,565,433,458,891,[[50,7,6,458,464],[51,20,17,464,481],[52,16,12,481,493],[53,13,11,493,504],[54,6,6,504,510],[55,14,10,510,520],[56,13,9,520,529],[57,16,13,529,542],[58,12,12,542,554],[59,23,17,554,571],[60,4,3,571,574],[61,17,13,574,587],[62,9,6,587,593],[63,24,17,593,610],[64,4,4,610,614],[65,17,13,614,627],[66,5,5,627,632],[67,13,11,632,643],[68,8,8,643,651],[69,11,6,651,657],[70,14,8,657,665],[71,3,3,665,668],[72,21,12,668,680],[73,7,7,680,687],[74,12,10,687,697],[75,13,10,697,707],[76,3,3,707,710],[77,19,15,710,725],[78,27,21,725,746],[79,9,9,746,755],[80,6,5,755,760],[81,16,12,760,772],[82,13,10,772,782],[83,14,10,782,792],[84,16,10,792,802],[85,13,13,802,815],[86,16,13,815,828],[87,11,9,828,837],[88,29,23,837,860],[89,51,31,860,891]]],[2,414,304,891,1195,[[90,13,10,891,901],[91,5,5,901,906],[92,11,7,906,913],[93,15,9,913,922],[94,6,5,922,927],[95,10,6,927,933],[96,18,11,933,944],[97,38,26,944,970],[98,16,14,970,984],[99,9,7,984,991],[100,10,10,991,1001],[102,24,17,1001,1018],[103,40,28,1018,1046],[104,7,6,1046,1052],[105,29,20,1052,1072],[106,6,5,1072,1077],[107,10,9,1077,1086],[108,15,14,1086,1100],[109,26,16,1100,1116],[110,11,8,1116,1124],[111,9,8,1124,1132],[112,16,14,1132,1146],[113,7,5,1146,1151],[114,17,15,1151,1166],[115,37,21,1166,1187],[116,9,8,1187,1195]]],[3,399,324,1195,1519,[[117,9,7,1195,1202],[118,2,2,1202,1204],[119,15,12,1204,1216],[120,21,20,1216,1236],[121,26,19,1236,1255],[122,10,8,1255,1263],[123,9,8,1263,1271],[124,22,15,1271,1286],[125,7,6,1286,1292],[126,2,2,1292,1294],[127,14,11,1294,1305],[129,7,7,1305,1312],[130,20,18,1312,1330],[131,8,8,1330,1338],[132,19,15,1338,1353],[133,3,3,1353,1356],[134,16,13,1356,1369],[135,8,6,1369,1375],[136,21,13,1375,1388],[137,19,15,1388,1403],[138,23,18,1403,1421],[139,2,2,1421,1423],[140,7,6,1423,1429],[141,7,5,1429,1434],[142,12,10,1434,1444],[143,10,9,1444,1453],[144,2,2,1453,1455],[145,2,2,1455,1457],[146,7,5,1457,1462],[147,19,14,1462,1476],[148,20,19,1476,1495],[149,9,6,1495,1501],[150,5,5,1501,1506],[151,11,10,1506,1516],[152,5,3,1516,1519]]],[4,386,308,1519,1827,[[153,20,19,1519,1538],[154,22,16,1538,1554],[155,14,11,1554,1565],[156,22,18,1565,1583],[157,14,11,1583,1594],[158,13,11,1594,1605],[159,11,9,1605,1614],[160,11,9,1614,1623],[161,17,12,1623,1635],[162,10,8,1635,1643],[163,20,14,1643,1657],[164,17,12,1657,1669],[165,7,6,1669,1675],[166,4,4,1675,1679],[167,9,8,1679,1687],[168,9,8,1687,1695],[169,6,3,1695,1698],[170,5,5,1698,1703],[171,8,6,1703,1709],[172,5,4,1709,1713],[173,12,8,1713,1721],[174,14,11,1721,1732],[175,2,2,1732,1734],[176,6,6,1734,1740],[177,8,7,1740,1747],[178,8,6,1747,1753],[179,11,8,1753,1761],[180,17,13,1761,1774],[181,14,13,1774,1787],[182,10,9,1787,1796],[183,29,22,1796,1818],[184,7,6,1818,1824],[185,1,1,1824,1825],[186,3,2,1825,1827]]],[5,272,203,1827,2030,[[187,12,9,1827,1836],[188,14,11,1836,1847],[189,9,7,1847,1854],[190,13,10,1854,1864],[191,6,5,1864,1869],[192,24,18,1869,1887],[193,17,12,1887,1899],[194,19,16,1899,1915],[195,7,3,1915,1918],[196,19,12,1918,1930],[197,18,12,1930,1942],[198,1,1,1942,1943],[199,3,3,1943,1946],[200,7,5,1946,1951],[201,4,2,1951,1953],[202,1,1,1953,1954],[203,4,4,1954,1958],[204,7,6,1958,1964],[205,3,3,1964,1967],[206,5,4,1967,1971],[207,22,18,1971,1989],[208,16,13,1989,2002],[209,6,6,2002,2008],[210,35,22,2008,2030]]],[6,284,220,2030,2250,[[211,23,19,2030,2049],[212,20,12,2049,2061],[213,30,18,2061,2079],[214,15,13,2079,2092],[216,25,20,2092,2112],[217,14,12,2112,2124],[218,18,12,2124,2136],[219,32,26,2136,2162],[220,12,8,2162,2170],[221,22,18,2170,2188],[222,10,8,2188,2196],[223,3,3,2196,2199],[224,4,4,2199,2203],[225,6,6,2203,2209],[226,12,9,2209,2218],[227,5,4,2218,2222],[228,18,15,2222,2237],[229,6,4,2237,2241],[230,6,6,2241,2247],[231,3,3,2247,2250]]],[7,26,20,2250,2270,[[232,1,1,2250,2251],[233,6,6,2251,2257],[234,2,2,2257,2259],[235,17,11,2259,2270]]],[8,358,293,2270,2563,[[236,14,12,2270,2282],[237,16,14,2282,2296],[238,6,5,2296,2301],[239,7,7,2301,2308],[240,11,7,2308,2315],[241,16,11,2315,2326],[242,12,10,2326,2336],[243,5,5,2336,2341],[244,11,9,2341,2350],[245,8,7,2350,2357],[246,5,4,2357,2361],[247,20,13,2361,2374],[248,7,6,2374,2380],[249,12,10,2380,2390],[250,20,15,2390,2405],[251,5,5,2405,2410],[252,26,24,2410,2434],[253,9,9,2434,2443],[254,16,11,2443,2454],[255,21,17,2454,2471],[256,5,5,2471,2476],[257,11,7,2476,2483],[258,10,9,2483,2492],[259,17,13,2492,2505],[260,22,18,2505,2523],[261,10,10,2523,2533],[262,1,1,2533,2534],[263,13,10,2534,2544],[264,2,2,2544,2546],[265,8,8,2546,2554],[266,12,9,2554,2563]]],[9,278,218,2563,2781,[[267,2,2,2563,2565],[268,6,5,2565,2570],[269,17,11,2570,2581],[270,11,5,2581,2586],[271,12,9,2586,2595],[272,13,11,2595,2606],[273,12,10,2606,2616],[274,10,8,2616,2624],[275,2,2,2624,2626],[276,11,7,2626,2633],[277,10,9,2633,2642],[278,21,18,2642,2660],[279,18,13,2660,2673],[280,23,15,2673,2688],[281,15,14,2688,2702],[282,5,4,2702,2706],[283,10,8,2706,2714],[284,13,12,2714,2726],[285,25,21,2726,2747],[286,4,4,2747,2751],[287,17,13,2751,2764],[288,2,2,2764,2766],[289,7,5,2766,2771],[290,12,10,2771,2781]]],[10,355,277,2781,3058,[[291,18,16,2781,2797],[292,25,20,2797,2817],[293,12,9,2817,2826],[294,4,3,2826,2829],[295,6,5,2829,2834],[296,18,13,2834,2847],[297,25,17,2847,2864],[298,37,28,2864,2892],[299,16,13,2892,2905],[300,7,6,2905,2911],[301,22,17,2911,2928],[302,18,14,2928,2942],[303,16,12,2942,2954],[304,13,8,2954,2962],[305,17,13,2962,2975],[306,19,13,2975,2988],[307,3,3,2988,2991],[308,21,18,2991,3009],[309,12,9,3009,3018],[310,18,16,3018,3034],[311,11,9,3034,3043],[312,17,15,3043,3058]]],[11,332,246,3058,3304,[[313,1,1,3058,3059],[314,9,6,3059,3065],[315,8,7,3065,3072],[316,6,5,3072,3077],[317,6,5,3077,3082],[318,16,10,3082,3092],[319,5,5,3092,3097],[320,14,11,3097,3108],[321,13,12,3108,3120],[322,17,13,3120,3133],[323,18,14,3133,3147],[324,11,11,3147,3158],[325,10,6,3158,3164],[326,16,11,3164,3175],[327,7,6,3175,3181],[328,14,9,3181,3190],[329,33,23,3190,3213],[330,19,14,3213,3227],[331,9,9,3227,3236],[332,10,8,3236,3244],[333,16,12,3244,3256],[334,11,9,3256,3265],[335,43,22,3265,3287],[336,8,6,3287,3293],[337,12,11,3293,3304]]],[12,261,197,3304,3501,[[338,9,8,3304,3312],[339,30,17,3312,3329],[341,12,10,3329,3339],[342,1,1,3339,3340],[343,38,26,3340,3366],[344,6,6,3366,3372],[345,16,12,3372,3384],[346,9,5,3384,3389],[347,11,8,3389,3397],[348,14,10,3397,3407],[349,6,4,3407,3411],[350,11,8,3411,3419],[351,7,6,3419,3425],[352,15,13,3425,3438],[353,5,5,3438,3443],[354,12,10,3443,3453],[355,11,10,3453,3463],[356,7,6,3463,3469],[357,8,5,3469,3474],[358,13,9,3474,3483],[359,6,5,3483,3488],[360,4,4,3488,3492],[364,2,2,3492,3494],[365,5,4,3494,3498],[366,3,3,3498,3501]]],[13,330,267,3501,3768,[[367,3,3,3501,3504],[368,4,4,3504,3508],[369,6,6,3508,3514],[370,8,7,3514,3521],[371,7,6,3521,3527],[372,17,14,3527,3541],[373,15,12,3541,3553],[374,3,3,3553,3556],[375,10,8,3556,3564],[376,9,9,3564,3573],[377,12,10,3573,3583],[378,7,5,3583,3588],[379,6,5,3588,3593],[380,10,6,3593,3599],[381,5,5,3599,3604],[382,7,5,3604,3609],[383,3,3,3609,3612],[384,10,10,3612,3622],[386,9,7,3622,3629],[387,8,8,3629,3637],[388,9,7,3637,3644],[389,16,11,3644,3655],[390,18,13,3655,3668],[391,14,9,3668,3677],[392,6,5,3677,3682],[393,1,1,3682,3683],[394,12,10,3683,3693],[395,14,13,3693,3706],[396,8,8,3706,3714],[397,6,5,3714,3719],[398,10,9,3719,3728],[399,13,8,3728,3736],[400,29,20,3736,3756],[401,4,3,3756,3759],[402,11,9,3759,3768]]],[14,20,17,3768,3785,[[403,4,4,3768,3772],[405,4,4,3772,3776],[406,1,1,3776,3777],[408,1,1,3777,3778],[409,2,2,3778,3780],[410,3,2,3780,3782],[411,5,3,3782,3785]]],[15,80,62,3785,3847,[[413,7,5,3785,3790],[414,2,2,3790,3792],[415,1,1,3792,3793],[416,6,6,3793,3799],[417,10,7,3799,3806],[418,5,4,3806,3810],[419,2,2,3810,3812],[420,5,4,3812,3816],[421,17,13,3816,3829],[422,7,5,3829,3834],[424,8,5,3834,3839],[425,10,8,3839,3847]]],[16,65,57,3847,3904,[[426,7,6,3847,3853],[427,8,8,3853,3861],[428,6,5,3861,3866],[429,7,6,3866,3872],[430,7,5,3872,3877],[431,8,7,3877,3884],[432,2,2,3884,3886],[433,9,7,3886,3893],[434,11,11,3893,3904]]],[17,29,26,3904,3930,[[436,4,3,3904,3907],[437,7,7,3907,3914],[438,2,1,3914,3915],[442,1,1,3915,3916],[448,1,1,3916,3917],[463,1,1,3917,3918],[467,2,2,3918,3920],[473,1,1,3920,3921],[475,2,2,3921,3923],[476,1,1,3923,3924],[477,7,6,3924,3930]]],[18,95,87,3930,4017,[[479,2,2,3930,3932],[480,1,1,3932,3933],[490,1,1,3933,3934],[491,1,1,3934,3935],[493,2,2,3935,3937],[502,1,1,3937,3938],[504,1,1,3938,3939],[505,2,1,3939,3940],[506,2,2,3940,3942],[508,2,2,3942,3944],[510,1,1,3944,3945],[511,2,2,3945,3947],[512,1,1,3947,3948],[514,1,1,3948,3949],[524,1,1,3949,3950],[530,1,1,3950,3951],[555,5,4,3951,3955],[556,3,2,3955,3957],[557,1,1,3957,3958],[569,1,1,3958,3959],[575,1,1,3959,3960],[579,5,4,3960,3964],[580,4,4,3964,3968],[581,1,1,3968,3969],[582,5,4,3969,3973],[583,8,8,3973,3981],[589,1,1,3981,3982],[590,1,1,3982,3983],[592,2,1,3983,3984],[593,2,2,3984,3986],[594,1,1,3986,3987],[596,2,2,3987,3989],[598,1,1,3989,3990],[600,1,1,3990,3991],[603,2,2,3991,3993],[607,1,1,3993,3994],[610,1,1,3994,3995],[611,1,1,3995,3996],[612,4,2,3996,3998],[614,5,5,3998,4003],[615,1,1,4003,4004],[617,1,1,4004,4005],[619,1,1,4005,4006],[621,1,1,4006,4007],[622,2,2,4007,4009],[623,3,3,4009,4012],[624,2,2,4012,4014],[625,3,3,4014,4017]]],[19,13,12,4017,4029,[[628,1,1,4017,4018],[630,4,3,4018,4021],[632,1,1,4021,4022],[633,1,1,4022,4023],[650,3,3,4023,4026],[652,1,1,4026,4027],[653,1,1,4027,4028],[654,1,1,4028,4029]]],[20,60,48,4029,4077,[[659,2,2,4029,4031],[660,5,5,4031,4036],[661,6,4,4036,4040],[662,9,8,4040,4048],[663,5,4,4048,4052],[665,9,7,4052,4059],[666,8,5,4059,4064],[667,6,4,4064,4068],[668,2,2,4068,4070],[669,5,4,4070,4074],[670,3,3,4074,4077]]],[21,16,13,4077,4090,[[671,1,1,4077,4078],[672,3,2,4078,4080],[673,3,3,4080,4083],[675,4,3,4083,4086],[678,5,4,4086,4090]]],[22,122,103,4090,4193,[[679,2,1,4090,4091],[680,1,1,4091,4092],[681,1,1,4092,4093],[682,1,1,4093,4094],[683,1,1,4094,4095],[684,5,4,4095,4099],[685,4,3,4099,4102],[686,5,4,4102,4106],[687,6,4,4106,4110],[688,1,1,4110,4111],[689,5,4,4111,4115],[691,2,2,4115,4117],[697,3,3,4117,4120],[698,1,1,4120,4121],[699,1,1,4121,4122],[700,2,2,4122,4124],[701,1,1,4124,4125],[702,1,1,4125,4126],[704,1,1,4126,4127],[705,2,2,4127,4129],[707,4,3,4129,4132],[708,3,3,4132,4135],[711,2,2,4135,4137],[714,12,9,4137,4146],[715,9,9,4146,4155],[716,5,4,4155,4159],[717,2,2,4159,4161],[718,1,1,4161,4162],[719,3,2,4162,4164],[722,1,1,4164,4165],[723,1,1,4165,4166],[725,1,1,4166,4167],[726,1,1,4167,4168],[727,2,2,4168,4170],[729,3,2,4170,4172],[730,2,1,4172,4173],[733,2,2,4173,4175],[734,2,2,4175,4177],[735,1,1,4177,4178],[737,1,1,4178,4179],[740,3,3,4179,4182],[741,2,2,4182,4184],[742,1,1,4184,4185],[743,4,4,4185,4189],[744,8,4,4189,4193]]],[23,431,363,4193,4556,[[745,1,1,4193,4194],[746,8,7,4194,4201],[747,10,7,4201,4208],[748,1,1,4208,4209],[749,4,4,4209,4213],[750,4,4,4213,4217],[751,16,14,4217,4231],[752,5,4,4231,4235],[753,6,6,4235,4241],[754,4,4,4241,4245],[755,11,9,4245,4254],[756,11,7,4254,4261],[757,6,6,4261,4267],[758,4,4,4267,4271],[759,3,3,4271,4274],[760,9,7,4274,4281],[761,5,5,4281,4286],[762,4,4,4286,4290],[763,13,9,4290,4299],[764,6,6,4299,4305],[765,3,3,4305,4308],[766,8,8,4308,4316],[767,16,14,4316,4330],[768,5,4,4330,4334],[769,8,8,4334,4342],[770,12,8,4342,4350],[771,14,12,4350,4362],[772,8,8,4362,4370],[773,11,9,4370,4379],[774,3,3,4379,4382],[775,12,8,4382,4390],[776,21,19,4390,4409],[777,6,5,4409,4414],[778,16,10,4414,4424],[779,7,6,4424,4430],[780,26,20,4430,4450],[781,5,5,4450,4455],[782,14,11,4455,4466],[783,4,4,4466,4470],[784,6,6,4470,4476],[785,8,8,4476,4484],[786,3,3,4484,4487],[787,9,6,4487,4493],[788,15,12,4493,4505],[789,1,1,4505,4506],[790,1,1,4506,4507],[791,3,2,4507,4509],[792,1,1,4509,4510],[793,8,8,4510,4518],[794,10,8,4518,4526],[795,23,19,4526,4545],[796,13,11,4545,4556]]],[24,6,6,4556,4562,[[797,2,2,4556,4558],[798,2,2,4558,4560],[800,1,1,4560,4561],[801,1,1,4561,4562]]],[25,323,267,4562,4829,[[802,3,3,4562,4565],[803,4,3,4565,4568],[804,10,8,4568,4576],[805,7,5,4576,4581],[806,4,4,4581,4585],[807,4,2,4585,4587],[808,2,2,4587,4589],[809,6,4,4589,4593],[810,5,3,4593,4596],[811,5,5,4596,4601],[812,7,6,4601,4607],[813,6,5,4607,4612],[814,7,6,4612,4618],[815,7,5,4618,4623],[816,5,4,4623,4627],[817,27,21,4627,4648],[818,9,6,4648,4654],[819,8,8,4654,4662],[821,20,16,4662,4678],[823,3,2,4678,4680],[824,9,7,4680,4687],[825,5,5,4687,4692],[826,8,6,4692,4698],[827,3,3,4698,4701],[828,1,1,4701,4702],[829,2,2,4702,4704],[830,6,5,4704,4709],[831,15,11,4709,4720],[832,3,3,4720,4723],[833,8,7,4723,4730],[834,12,11,4730,4741],[835,9,8,4741,4749],[836,4,4,4749,4753],[837,9,9,4753,4762],[838,6,5,4762,4767],[839,1,1,4767,4768],[840,14,10,4768,4778],[841,10,9,4778,4787],[842,3,3,4787,4790],[843,1,1,4790,4791],[844,13,11,4791,4802],[845,13,10,4802,4812],[846,6,6,4812,4818],[847,8,6,4818,4824],[848,4,4,4824,4828],[849,1,1,4828,4829]]],[26,34,28,4829,4857,[[850,10,7,4829,4836],[851,1,1,4836,4837],[857,7,6,4837,4843],[858,6,5,4843,4848],[859,9,8,4848,4856],[861,1,1,4856,4857]]],[27,30,27,4857,4884,[[862,5,5,4857,4862],[863,12,9,4862,4871],[864,1,1,4871,4872],[865,2,2,4872,4874],[866,2,2,4874,4876],[867,1,1,4876,4877],[868,1,1,4877,4878],[869,1,1,4878,4879],[870,1,1,4879,4880],[871,2,2,4880,4882],[873,2,2,4882,4884]]],[28,8,8,4884,4892,[[877,3,3,4884,4887],[878,5,5,4887,4892]]],[29,34,29,4892,4921,[[879,2,2,4892,4894],[880,5,4,4894,4898],[881,1,1,4898,4899],[882,3,3,4899,4902],[883,4,4,4902,4906],[884,1,1,4906,4907],[885,4,3,4907,4910],[886,2,2,4910,4912],[887,12,9,4912,4921]]],[30,6,4,4921,4925,[[888,6,4,4921,4925]]],[31,10,10,4925,4935,[[889,5,5,4925,4930],[890,2,2,4930,4932],[891,1,1,4932,4933],[892,2,2,4933,4935]]],[32,7,7,4935,4942,[[895,1,1,4935,4936],[896,1,1,4936,4937],[897,2,2,4937,4939],[898,2,2,4939,4941],[899,1,1,4941,4942]]],[33,1,1,4942,4943,[[901,1,1,4942,4943]]],[34,3,3,4943,4946,[[903,2,2,4943,4945],[904,1,1,4945,4946]]],[35,12,10,4946,4956,[[906,5,5,4946,4951],[907,4,3,4951,4954],[908,3,2,4954,4956]]],[36,7,6,4956,4962,[[909,1,1,4956,4957],[910,6,5,4957,4962]]],[37,71,55,4962,5017,[[911,10,8,4962,4970],[912,4,4,4970,4974],[913,4,3,4974,4977],[914,2,2,4977,4979],[915,3,3,4979,4982],[916,3,3,4982,4985],[917,1,1,4985,4986],[918,12,8,4986,4994],[920,3,2,4994,4996],[921,13,7,4996,5003],[922,7,6,5003,5009],[923,3,3,5009,5012],[924,6,5,5012,5017]]],[38,17,15,5017,5032,[[925,4,4,5017,5021],[926,7,5,5021,5026],[927,4,4,5026,5030],[928,2,2,5030,5032]]]],[0,3,6,15,20,21,24,26,27,30,33,35,36,37,38,40,41,43,45,54,63,65,73,78,79,80,81,90,91,93,96,97,99,101,104,105,107,108,109,111,112,114,115,117,118,120,121,123,124,126,127,130,131,134,135,137,139,143,144,147,149,151,154,155,168,176,184,189,190,191,192,193,195,196,204,206,210,214,216,218,220,227,228,229,242,245,247,249,258,260,271,274,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,297,303,305,312,315,318,328,333,334,340,341,343,347,348,350,352,359,365,371,374,378,384,391,397,404,405,406,408,411,412,416,417,420,422,443,452,465,467,470,471,472,474,476,478,482,484,486,497,503,505,512,514,516,522,526,528,529,530,531,532,538,539,541,543,548,549,550,551,553,556,557,559,560,563,564,570,571,576,577,579,581,584,585,587,590,592,596,598,599,600,621,626,627,639,643,650,651,652,655,657,658,661,663,669,677,678,686,689,691,692,695,696,703,710,716,726,728,733,742,744,754,757,761,763,768,772,777,778,779,788,791,792,798,803,805,806,808,813,817,818,819,824,825,826,830,839,841,843,845,850,851,852,853,854,855,856,859,865,866,868,871,874,875,878,879,880,882,885,888,890,891,892,893,894,896,898,899,903,904,905,907,908,910,914,915,923,925,935,938,940,945,947,950,951,959,961,962,965,971,978,979,983,985,987,993,994,996,997,1001,1006,1008,1011,1013,1015,1021,1023,1026,1033,1042,1044,1045,1046,1052,1054,1064,1075,1086,1094,1095,1099,1106,1109,1111,1112,1114,1115,1122,1123,1124,1139,1140,1154,1156,1168,1171,1176,1179,1181,1183,1185,1191,1192,1193,1195,1199,1202,1203,1204,1209,1211,1215,1219,1220,1223,1225,1230,1237,1239,1240,1243,1246,1251,1259,1260,1261,1268,1269,1270,1277,1279,1286,1287,1289,1290,1292,1294,1297,1304,1305,1306,1307,1311,1313,1314,1315,1319,1325,1328,1335,1340,1343,1346,1353,1355,1358,1360,1371,1375,1376,1377,1382,1385,1391,1392,1406,1411,1416,1427,1429,1430,1431,1432,1434,1437,1440,1442,1443,1452,1455,1459,1461,1462,1463,1464,1465,1466,1467,1471,1472,1504,1506,1508,1511,1512,1513,1517,1520,1531,1540,1543,1546,1549,1550,1553,1557,1559,1560,1561,1562,1563,1566,1568,1569,1570,1571,1573,1574,1575,1576,1578,1579,1580,1582,1586,1588,1589,1590,1591,1595,1596,1599,1600,1601,1616,1618,1620,1621,1622,1624,1626,1629,1630,1631,1632,1634,1636,1637,1638,1652,1655,1659,1660,1661,1662,1663,1668,1678,1681,1682,1684,1687,1688,1689,1690,1694,1695,1697,1705,1710,1712,1715,1716,1717,1724,1725,1726,1727,1728,1731,1732,1736,1742,1748,1752,1754,1756,1757,1761,1762,1763,1764,1765,1767,1771,1778,1779,1782,1784,1785,1788,1789,1790,1792,1794,1796,1797,1799,1800,1801,1803,1804,1807,1809,1816,1824,1829,1833,1839,1840,1841,1843,1844,1847,1850,1852,1866,1867,1870,1872,1874,1877,1885,1886,1893,1895,1897,1899,1901,1902,1905,1906,1909,1910,1913,1914,1915,1916,1917,1919,1920,1921,1939,1940,1942,1950,1952,1953,1954,1955,1956,1959,1960,1971,1978,1979,1980,1982,1985,1988,1990,1996,1997,2000,2001,2007,2009,2012,2013,2015,2018,2021,2022,2025,2031,2033,2034,2035,2038,2040,2043,2049,2052,2058,2062,2063,2069,2075,2082,2083,2084,2095,2097,2103,2105,2112,2118,2119,2136,2153,2154,2159,2160,2166,2169,2170,2171,2172,2174,2175,2177,2180,2181,2182,2185,2187,2188,2192,2197,2209,2211,2214,2216,2217,2221,2222,2223,2232,2241,2244,2246,2250,2253,2264,2265,2268,2269,2270,2273,2281,2292,2296,2298,2299,2302,2304,2305,2307,2316,2317,2321,2322,2323,2324,2331,2334,2341,2342,2343,2346,2347,2349,2351,2352,2354,2355,2356,2358,2362,2363,2365,2367,2368,2369,2370,2380,2382,2385,2387,2389,2390,2394,2397,2398,2401,2408,2426,2433,2434,2436,2437,2441,2447,2449,2451,2455,2457,2458,2460,2463,2465,2472,2473,2475,2477,2480,2483,2485,2486,2490,2492,2493,2496,2497,2506,2509,2519,2520,2524,2526,2528,2530,2531,2532,2541,2542,2547,2548,2552,2555,2557,2558,2560,2567,2569,2570,2571,2576,2579,2582,2584,2586,2589,2599,2600,2601,2605,2609,2614,2617,2618,2619,2620,2621,2627,2629,2630,2632,2633,2634,2636,2639,2640,2641,2642,2655,2660,2663,2665,2666,2667,2669,2670,2671,2672,2673,2680,2685,2686,2689,2690,2691,2693,2694,2695,2696,2697,2703,2704,2706,2707,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2722,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2747,2750,2751,2753,2754,2756,2757,2759,2760,2761,2764,2770,2771,2776,2778,2780,2781,2785,2786,2787,2791,2792,2799,2801,2803,2810,2816,2818,2819,2824,2828,2836,2837,2838,2841,2845,2851,2853,2858,2859,2860,2875,2881,2882,2887,2893,2895,2908,2909,2910,2912,2913,2917,2919,2923,2924,2925,2926,2927,2928,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2941,2942,2944,2946,2947,2948,2950,2952,2953,2958,2960,2961,2962,2963,2965,2967,2968,2969,2970,2973,2975,2976,2977,2981,2983,2988,2989,2994,2995,2996,3001,3008,3010,3018,3019,3025,3037,3040,3041,3042,3055,3064,3065,3067,3074,3077,3079,3082,3083,3084,3086,3101,3102,3103,3104,3107,3109,3116,3119,3120,3122,3123,3124,3127,3130,3131,3135,3136,3141,3142,3147,3148,3149,3151,3152,3153,3154,3156,3158,3159,3160,3161,3162,3163,3164,3184,3186,3192,3198,3199,3201,3205,3207,3208,3210,3211,3212,3214,3216,3221,3222,3223,3224,3225,3227,3228,3229,3230,3232,3233,3235,3240,3241,3242,3245,3248,3255,3256,3268,3272,3276,3277,3278,3279,3281,3289,3290,3293,3294,3298,3300,3302,3304,3306,3308,3310,3311,3317,3318,3321,3322,3323,3324,3326,3327,3332,3334,3335,3336,3337,3339,3340,3341,3342,3343,3351,3353,3354,3355,3357,3359,3366,3368,3371,3378,3383,3384,3385,3394,3401,3402,3404,3412,3413,3414,3416,3417,3424,3429,3432,3434,3439,3441,3445,3446,3448,3450,3457,3460,3469,3472,3479,3480,3481,3483,3486,3487,3489,3490,3494,3496,3507,3515,3521,3524,3526,3529,3531,3533,3537,3538,3539,3540,3543,3544,3546,3554,3555,3556,3558,3559,3562,3564,3566,3567,3569,3581,3584,3585,3589,3590,3592,3593,3604,3621,3623,3653,3654,3655,3657,3658,3691,3692,3698,3699,3700,3701,3702,3704,3707,3732,3733,3737,3741,3743,3745,3748,3750,3751,3752,3754,3755,3756,3757,3758,3761,3762,3765,3768,3770,3773,3775,3777,3789,3792,3794,3795,3796,3799,3802,3806,3807,3808,3810,3811,3812,3813,3815,3816,3817,3818,3819,3822,3823,3834,3835,3837,3839,3841,3842,3846,3850,3851,3853,3855,3856,3860,3861,3862,3939,3941,3942,3943,3945,3948,3949,3950,3951,3952,3953,3954,3957,3958,3959,3961,3967,3970,3972,3980,3984,3988,3990,4009,4029,4034,4035,4036,4038,4044,4046,4048,4053,4056,4058,4077,4091,4092,4093,4096,4105,4108,4109,4114,4117,4121,4123,4124,4129,4130,4131,4135,4138,4139,4141,4142,4144,4146,4147,4149,4166,4175,4178,4183,4189,4192,4193,4194,4199,4203,4204,4209,4213,4222,4224,4225,4226,4231,4232,4233,4235,4240,4241,4251,4253,4254,4258,4261,4262,4263,4264,4272,4274,4280,4281,4283,4285,4286,4287,4292,4294,4298,4299,4302,4309,4315,4316,4319,4320,4321,4322,4323,4325,4332,4335,4336,4337,4339,4342,4343,4344,4346,4347,4349,4354,4356,4357,4363,4364,4365,4366,4372,4375,4377,4379,4380,4381,4386,4387,4393,4395,4396,4398,4400,4402,4403,4406,4407,4408,4410,4416,4420,4444,4447,4448,4456,4459,4466,4467,4475,4477,4479,4482,4488,4491,4493,4499,4518,4544,4547,4548,4549,4552,4553,4559,4563,4564,4565,4566,4572,4573,4576,4577,4579,4600,4615,4648,4652,4660,4662,4663,4664,4671,4675,4676,4685,4686,4690,4691,4695,4705,4711,4713,4714,4715,4718,4719,4723,4726,4727,4729,4738,4739,4741,4746,4747,4749,4751,4752,4755,4756,4757,4758,4759,4760,4762,4764,4811,4812,4814,4815,4818,4829,4833,4834,4845,4847,4855,4859,4864,4866,4870,4871,4872,4875,4878,4881,4884,4889,4895,4896,4897,4900,4907,4908,4910,4911,4913,4914,4916,4918,4920,4923,4926,4927,4928,4933,4935,4939,4941,4943,4945,4947,4951,4952,4956,4960,4962,4967,4968,4969,4971,4972,4974,4978,4979,4983,4989,4990,4995,4996,4999,5000,5002,5003,5005,5006,5007,5010,5013,5014,5023,5024,5025,5026,5027,5030,5033,5035,5040,5041,5046,5051,5054,5056,5064,5065,5068,5069,5076,5078,5080,5081,5082,5088,5091,5098,5099,5102,5103,5104,5105,5109,5110,5111,5115,5119,5122,5123,5127,5129,5131,5133,5135,5138,5139,5142,5143,5147,5148,5151,5155,5156,5158,5161,5162,5163,5164,5165,5170,5171,5178,5179,5180,5182,5188,5190,5191,5194,5197,5198,5199,5206,5209,5210,5214,5215,5216,5218,5221,5225,5226,5230,5231,5237,5239,5240,5242,5243,5245,5250,5251,5259,5260,5262,5268,5269,5270,5271,5275,5277,5285,5287,5288,5290,5297,5312,5313,5318,5321,5324,5326,5327,5330,5336,5337,5342,5343,5345,5347,5348,5354,5358,5360,5362,5366,5369,5383,5396,5398,5400,5404,5405,5407,5409,5410,5411,5414,5415,5435,5440,5441,5446,5451,5453,5454,5459,5460,5463,5464,5466,5471,5474,5477,5484,5485,5486,5488,5491,5494,5495,5500,5505,5513,5530,5534,5536,5540,5543,5547,5548,5554,5556,5558,5559,5564,5566,5573,5576,5578,5581,5582,5583,5586,5587,5589,5591,5593,5595,5596,5597,5612,5618,5619,5620,5623,5626,5631,5635,5640,5658,5659,5669,5674,5680,5681,5687,5688,5693,5695,5696,5697,5698,5699,5701,5704,5708,5711,5714,5715,5716,5723,5724,5726,5727,5728,5729,5730,5731,5732,5737,5739,5740,5741,5742,5744,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5802,5803,5804,5805,5807,5810,5811,5840,5848,5853,5857,5859,5861,5862,5864,5866,5867,5869,5870,5871,5872,5873,5879,5882,5883,5887,5889,5890,5893,5896,5897,5899,5901,5902,5907,5910,5911,5913,5920,5924,5926,5927,5931,5932,5933,5934,5935,5936,5937,5943,5944,5951,5952,5953,5954,5955,5956,5960,5961,5963,5964,5966,5967,5969,5970,5971,5972,5974,5975,5978,5979,5983,5985,5987,5989,5991,5992,5993,5994,5996,6000,6003,6009,6010,6012,6019,6021,6023,6026,6028,6029,6030,6031,6033,6034,6035,6036,6040,6057,6061,6065,6068,6076,6085,6086,6087,6088,6089,6096,6097,6103,6104,6113,6116,6117,6118,6120,6121,6122,6123,6126,6127,6128,6130,6131,6161,6167,6175,6192,6193,6194,6197,6200,6216,6218,6275,6279,6288,6289,6293,6294,6295,6296,6299,6301,6303,6370,6371,6372,6376,6377,6379,6380,6384,6389,6390,6394,6398,6404,6405,6406,6409,6411,6413,6415,6416,6417,6419,6420,6424,6425,6428,6429,6431,6437,6439,6450,6451,6453,6454,6456,6457,6458,6459,6463,6464,6465,6466,6471,6476,6477,6479,6480,6481,6482,6483,6484,6487,6488,6490,6491,6492,6493,6494,6495,6496,6497,6499,6500,6502,6503,6507,6511,6513,6514,6515,6519,6521,6526,6527,6528,6529,6533,6534,6536,6537,6538,6539,6540,6542,6543,6546,6548,6549,6551,6552,6555,6556,6557,6558,6565,6567,6568,6569,6572,6574,6575,6576,6578,6580,6581,6582,6583,6585,6586,6589,6592,6593,6594,6596,6599,6602,6603,6606,6608,6609,6612,6613,6614,6618,6620,6621,6622,6623,6658,6662,6663,6664,6668,6669,6670,6672,6674,6675,6679,6680,6681,6684,6685,6686,6688,6690,6691,6692,6696,6698,6699,6701,6702,6708,6709,6710,6713,6716,6718,6719,6722,6726,6728,6730,6731,6735,6736,6738,6740,6744,6750,6753,6757,6759,6760,6763,6765,6767,6769,6770,6771,6772,6774,6778,6779,6781,6782,6783,6784,6785,6790,6795,6797,6799,6802,6803,6807,6810,6812,6813,6814,6817,6819,6820,6821,6827,6830,6831,6834,6838,6840,6842,6844,6847,6849,6850,6851,6852,6853,6858,6859,6864,6865,6867,6873,6874,6876,6877,6878,6880,6882,6883,6889,6903,6908,6915,6917,6924,6928,6930,6935,6939,6947,6948,6949,6958,6962,6963,6968,6970,6972,6973,6975,6980,6983,6984,6985,6992,6995,6996,7000,7002,7007,7010,7011,7013,7014,7015,7017,7020,7021,7023,7024,7041,7046,7047,7053,7059,7089,7091,7097,7098,7100,7112,7122,7125,7133,7158,7164,7166,7167,7168,7170,7176,7186,7196,7199,7200,7201,7203,7206,7208,7209,7210,7211,7212,7217,7223,7224,7226,7227,7228,7231,7232,7233,7234,7235,7237,7251,7252,7255,7257,7258,7259,7260,7261,7262,7268,7269,7271,7272,7273,7283,7288,7289,7291,7292,7300,7301,7303,7305,7311,7315,7316,7320,7321,7322,7327,7328,7329,7330,7334,7336,7337,7338,7339,7342,7344,7345,7346,7349,7352,7353,7355,7356,7357,7358,7363,7364,7367,7368,7369,7370,7377,7380,7389,7390,7394,7399,7407,7408,7410,7411,7413,7414,7415,7419,7420,7432,7435,7436,7437,7443,7449,7451,7456,7460,7463,7466,7468,7469,7470,7471,7474,7475,7476,7478,7480,7482,7484,7488,7489,7492,7498,7500,7505,7520,7531,7532,7534,7535,7536,7537,7547,7553,7556,7563,7564,7567,7568,7571,7573,7578,7580,7583,7584,7585,7586,7588,7593,7595,7599,7600,7601,7608,7618,7619,7628,7629,7633,7638,7640,7642,7643,7644,7646,7654,7656,7657,7660,7661,7662,7664,7667,7668,7669,7670,7671,7672,7673,7685,7687,7692,7696,7698,7699,7702,7703,7705,7707,7711,7713,7716,7717,7718,7719,7720,7721,7723,7726,7731,7732,7738,7742,7743,7745,7751,7758,7759,7761,7762,7763,7766,7768,7769,7770,7771,7776,7777,7784,7785,7787,7795,7796,7798,7801,7804,7808,7810,7811,7812,7814,7815,7818,7825,7826,7832,7833,7841,7842,7843,7844,7845,7846,7849,7850,7854,7855,7857,7858,7860,7863,7865,7869,7871,7872,7874,7875,7882,7884,7885,7886,7890,7891,7892,7896,7899,7900,7905,7907,7910,7913,7916,7917,7920,7922,7924,7925,7928,7939,7943,7944,7946,7947,7951,7953,7954,7957,7959,7961,7968,7971,7979,7980,7982,7988,7996,7998,8000,8001,8011,8013,8016,8017,8018,8019,8020,8021,8022,8036,8038,8053,8057,8078,8079,8081,8092,8093,8094,8095,8099,8100,8102,8106,8107,8111,8113,8127,8128,8129,8131,8132,8134,8135,8139,8149,8151,8152,8153,8156,8157,8158,8159,8160,8167,8168,8169,8172,8173,8174,8175,8177,8186,8187,8189,8192,8193,8200,8201,8207,8208,8209,8210,8211,8213,8215,8216,8218,8219,8223,8237,8238,8243,8244,8246,8247,8256,8257,8259,8260,8265,8270,8275,8277,8278,8280,8281,8284,8287,8290,8292,8295,8296,8297,8298,8300,8301,8302,8310,8311,8312,8313,8314,8315,8316,8317,8321,8322,8325,8326,8327,8334,8337,8339,8345,8347,8348,8349,8351,8359,8362,8363,8367,8369,8371,8372,8375,8376,8377,8378,8379,8382,8386,8387,8394,8395,8396,8397,8399,8401,8403,8405,8409,8410,8413,8414,8418,8423,8434,8435,8436,8437,8451,8457,8463,8464,8468,8470,8471,8473,8479,8483,8488,8493,8494,8495,8497,8501,8502,8505,8506,8507,8515,8516,8517,8521,8522,8523,8525,8526,8529,8530,8532,8539,8540,8541,8542,8546,8547,8550,8551,8552,8554,8557,8560,8566,8576,8581,8583,8588,8590,8591,8592,8593,8595,8596,8597,8598,8601,8602,8603,8622,8665,8669,8671,8673,8674,8693,8694,8696,8697,8701,8702,8709,8712,8713,8716,8720,8726,8729,8731,8732,8744,8746,8750,8753,8754,8756,8758,8760,8761,8764,8768,8771,8773,8774,8779,8786,8787,8790,8792,8793,8796,8797,8799,8800,8802,8805,8807,8810,8813,8814,8816,8817,8819,8825,8826,8827,8830,8836,8837,8841,8859,8865,8878,8879,8881,8885,8886,8887,8905,8906,8908,8909,8910,8911,8912,8915,8917,8923,8924,8928,8932,8935,8947,8948,8949,8952,8955,8957,8958,8961,8971,8973,8974,8975,8976,8981,8982,8985,8986,8988,8989,8991,8995,8996,8999,9001,9005,9006,9009,9010,9017,9018,9020,9024,9027,9028,9030,9033,9038,9039,9040,9043,9048,9049,9050,9051,9054,9056,9058,9060,9061,9062,9063,9066,9067,9068,9075,9076,9078,9083,9087,9088,9092,9103,9106,9110,9111,9112,9118,9119,9121,9122,9123,9127,9131,9135,9136,9139,9142,9146,9147,9148,9152,9157,9159,9160,9164,9166,9167,9169,9171,9172,9176,9180,9182,9183,9186,9188,9190,9195,9196,9205,9209,9212,9213,9214,9215,9217,9224,9226,9232,9233,9234,9239,9240,9244,9253,9261,9262,9264,9266,9267,9268,9269,9271,9275,9278,9279,9283,9286,9294,9295,9296,9299,9301,9302,9305,9307,9309,9314,9316,9317,9335,9337,9340,9344,9345,9347,9350,9353,9354,9358,9359,9361,9364,9367,9371,9374,9376,9377,9378,9379,9381,9388,9390,9391,9397,9401,9402,9406,9407,9408,9409,9414,9420,9421,9423,9429,9430,9433,9434,9435,9436,9439,9444,9447,9449,9450,9454,9455,9460,9463,9470,9473,9474,9476,9478,9486,9491,9497,9499,9500,9504,9506,9507,9511,9512,9514,9517,9518,9532,9533,9547,9552,9554,9556,9559,9565,9567,9578,9582,9594,9598,9599,9600,9603,9604,9610,9634,9638,9640,9653,9654,9655,9667,9673,9686,9689,9691,9692,9694,9698,9702,9703,9704,9706,9709,9714,9723,9724,9726,9728,9731,9732,9733,9735,9738,9739,9746,9748,9755,9756,9763,9765,9772,9773,9778,9780,9781,9782,9784,9786,9790,9792,9799,9800,9802,9803,9804,9808,9810,9811,9812,9819,9820,9821,9826,9830,9831,9833,9835,9836,9838,9839,9841,9842,9843,9844,9846,9847,9848,9855,9856,9857,9858,9859,9860,9861,9862,9865,9868,9870,9875,9888,9890,9892,9893,9896,9901,9903,9905,9906,9910,9917,9918,9921,9922,9923,9924,9930,9939,9941,9945,9954,9960,9966,9969,9971,9973,9974,9975,9976,9978,9980,9989,9990,9994,9995,9996,9997,9998,9999,10002,10004,10006,10007,10008,10009,10011,10013,10014,10015,10016,10017,10019,10022,10024,10028,10030,10032,10035,10036,10041,10046,10048,10051,10054,10056,10057,10058,10059,10062,10063,10065,10069,10072,10075,10076,10077,10079,10100,10101,10103,10107,10109,10111,10113,10118,10122,10123,10126,10128,10132,10133,10134,10135,10140,10141,10142,10143,10148,10149,10151,10153,10154,10156,10157,10164,10165,10167,10168,10169,10170,10171,10172,10173,10175,10176,10177,10179,10180,10181,10182,10185,10186,10187,10189,10192,10195,10199,10200,10206,10215,10216,10217,10219,10222,10228,10229,10231,10235,10240,10241,10246,10247,10249,10250,10251,10262,10263,10265,10270,10272,10284,10286,10298,10316,10317,10318,10319,10323,10326,10328,10341,10342,10343,10344,10345,10346,10347,10350,10352,10355,10387,10393,10395,10396,10397,10399,10402,10403,10426,10428,10454,10458,10459,10460,10461,10462,10463,10464,10465,10466,10467,10468,10469,10486,10511,10512,10514,10519,10521,10524,10525,10526,10528,10530,10531,10532,10534,10549,10553,10556,10558,10559,10567,10576,10582,10583,10584,10586,10587,10588,10607,10608,10609,10611,10612,10653,10654,10655,10657,10658,10661,10663,10667,10668,10669,10670,10671,10673,10675,10676,10678,10681,10684,10687,10691,10693,10695,10696,10735,10738,10751,10758,10763,10765,10766,10767,10769,10772,10773,10774,10782,10785,10786,10789,10790,10791,10793,10794,10795,10803,10805,10806,10807,10808,10816,10817,10818,10819,10820,10821,10822,10844,10853,10863,10868,10869,10871,10873,10874,10875,10881,10882,10888,10890,10891,10892,10893,10894,10897,10898,10899,10900,10902,10903,10910,10911,10915,10923,10924,10926,10927,10928,10930,10931,10933,10935,10936,10939,10941,10942,10946,10950,10954,10955,10966,10976,10977,10982,10983,10984,10985,11009,11015,11110,11132,11144,11150,11151,11154,11174,11184,11189,11204,11205,11209,11222,11223,11227,11229,11230,11232,11235,11237,11243,11246,11248,11249,11253,11257,11258,11259,11265,11269,11270,11272,11273,11275,11282,11285,11287,11292,11293,11297,11298,11305,11306,11308,11312,11315,11317,11320,11321,11325,11326,11329,11331,11332,11334,11335,11336,11338,11340,11342,11346,11350,11351,11360,11365,11367,11371,11372,11375,11376,11387,11391,11396,11403,11404,11405,11408,11409,11410,11411,11413,11415,11418,11425,11428,11430,11431,11433,11434,11435,11436,11438,11441,11446,11450,11451,11456,11462,11464,11466,11468,11478,11479,11480,11482,11487,11489,11498,11499,11502,11506,11508,11510,11513,11514,11515,11521,11528,11529,11542,11547,11552,11555,11558,11560,11561,11565,11572,11573,11575,11590,11591,11594,11604,11612,11613,11624,11628,11631,11633,11634,11635,11637,11640,11641,11649,11650,11651,11652,11653,11654,11655,11657,11658,11663,11664,11665,11666,11667,11668,11669,11670,11676,11681,11682,11683,11684,11688,11689,11690,11691,11695,11697,11699,11700,11701,11707,11709,11715,11718,11719,11722,11723,11724,11728,11733,11734,11737,11738,11753,11758,11767,11770,11771,11772,11777,11778,11782,11783,11788,11789,11794,11795,11796,11798,11806,11807,11808,11809,11811,11813,11814,11816,11825,11835,11840,11841,11843,11845,11847,11848,11854,11855,11856,11862,11864,11866,11878,11879,11880,11887,11888,11889,11893,11897,11905,11911,11915,11916,11919,11920,11923,11924,11933,11936,11937,11938,11940,11941,11942,11944,11947,11948,11949,11950,11952,11953,11954,11960,11961,11962,11963,11964,11966,11969,11983,11986,11994,11996,11997,12003,12006,12007,12012,12014,12015,12017,12019,12021,12023,12099,12105,12107,12109,12112,12170,12183,12200,12218,12237,12240,12246,12249,12300,12303,12304,12305,12307,12308,12324,12328,12360,12361,12372,12373,12374,12379,12387,12388,12389,12390,12392,12394,12395,12402,12406,12410,12419,12422,12425,12494,12495,12499,12502,12516,12517,12519,12520,12526,12527,12528,12530,12533,12535,12537,12543,12547,12578,12580,12584,12587,12588,12634,12635,12651,12654,12655,12673,12674,12676,12679,12688,12689,12693,12698,12706,12712,12713,12717,12719,12720,12725,12727,12731,12734,12735,12737,12739,12741,12748,12750,12753,12757,12760,12763,12766,12771,12773,12774,12778,12781,12784,12787,12788,12792,12794,12797,12802,12803,12804,12806,12807,12815,12817,12818,12819,12820,12821,12822,12823,12828,12837,12844,12849,12850,12853,12854,12855,12857,12861,12863,12865,12876,12878,12889,12893,12895,12897,12898,12901,12902,12903,12905,13029,13162,13527,13629,13631,13794,13865,13867,13922,13923,13929,13931,13932,13934,13938,13948,13956,13964,14075,14082,14096,14099,14273,14287,14308,14313,14319,14338,14354,14379,14392,14397,14411,14478,14629,14721,15118,15155,15169,15181,15186,15192,15200,15417,15493,15535,15536,15538,15543,15550,15551,15561,15571,15572,15617,15630,15635,15648,15658,15671,15684,15685,15687,15688,15691,15695,15804,15814,15842,15849,15856,15868,15906,15907,16088,16099,16116,16119,16148,16172,16174,16194,16195,16223,16226,16228,16229,16231,16233,16276,16293,16315,16336,16340,16342,16347,16350,16362,16363,16376,16378,16384,16419,16462,16464,16467,16539,16571,17045,17050,17055,17121,17160,17191,17328,17329,17336,17343,17350,17351,17357,17369,17370,17374,17376,17382,17383,17384,17385,17386,17389,17391,17396,17401,17403,17416,17417,17436,17442,17443,17447,17450,17455,17458,17466,17467,17473,17474,17475,17476,17482,17487,17490,17512,17513,17518,17519,17520,17521,17532,17536,17537,17545,17561,17568,17572,17575,17576,17601,17605,17606,17644,17647,17651,17652,17658,17705,17725,17737,17763,17770,17774,17777,17781,17794,17795,17802,17809,17811,17813,17820,17833,17840,17841,17850,17865,17895,17897,17898,17899,17923,17925,18017,18025,18026,18033,18039,18060,18061,18094,18098,18151,18152,18162,18203,18215,18216,18237,18240,18243,18297,18298,18332,18337,18339,18342,18345,18347,18348,18349,18350,18353,18354,18356,18360,18366,18368,18369,18370,18371,18393,18395,18397,18398,18414,18416,18433,18457,18458,18553,18581,18613,18628,18642,18662,18690,18695,18706,18750,18751,18757,18759,18778,18819,18861,18862,18863,18876,18877,18890,18900,18908,18915,18917,18930,18940,18941,18942,18955,18971,18972,18982,18984,18995,18998,19001,19003,19009,19011,19014,19015,19023,19026,19050,19065,19072,19077,19082,19101,19107,19113,19116,19121,19124,19129,19131,19132,19134,19137,19138,19142,19143,19145,19146,19148,19150,19154,19160,19163,19164,19177,19178,19186,19187,19188,19191,19219,19223,19224,19226,19229,19230,19231,19232,19233,19234,19236,19246,19247,19253,19256,19259,19263,19264,19265,19266,19268,19270,19272,19273,19276,19279,19309,19310,19312,19315,19318,19321,19322,19341,19346,19349,19350,19351,19354,19357,19361,19370,19380,19381,19384,19386,19404,19405,19407,19409,19411,19412,19414,19415,19416,19418,19419,19422,19423,19424,19425,19427,19434,19435,19444,19446,19447,19455,19458,19459,19463,19464,19466,19480,19481,19485,19486,19487,19491,19492,19497,19500,19502,19505,19508,19509,19511,19520,19522,19525,19529,19532,19534,19538,19540,19542,19543,19545,19547,19549,19570,19578,19579,19580,19582,19587,19591,19593,19595,19601,19602,19604,19605,19606,19607,19608,19609,19610,19611,19613,19616,19620,19621,19622,19624,19628,19629,19630,19632,19640,19642,19645,19646,19649,19652,19663,19664,19666,19670,19676,19688,19698,19702,19705,19714,19718,19723,19724,19725,19734,19735,19736,19739,19740,19742,19743,19744,19745,19747,19748,19752,19754,19759,19761,19766,19771,19772,19773,19784,19786,19789,19795,19797,19803,19804,19807,19810,19811,19814,19815,19816,19817,19819,19826,19837,19838,19839,19840,19841,19844,19845,19846,19847,19848,19852,19853,19856,19858,19859,19860,19862,19863,19866,19867,19868,19869,19871,19873,19874,19877,19879,19884,19887,19895,19896,19899,19901,19902,19904,19905,19906,19908,19909,19911,19914,19928,19929,19937,19939,19943,19945,19950,19955,19956,19957,19959,19961,19966,19967,19969,19970,19973,19975,19987,19992,19993,19998,20000,20002,20007,20008,20009,20012,20014,20015,20019,20021,20022,20024,20025,20027,20030,20035,20040,20041,20058,20074,20077,20118,20128,20133,20137,20155,20159,20162,20164,20166,20169,20185,20186,20191,20194,20200,20206,20209,20214,20221,20222,20223,20224,20236,20237,20240,20241,20248,20251,20256,20257,20262,20267,20271,20272,20273,20275,20279,20284,20285,20286,20289,20293,20300,20301,20307,20308,20309,20319,20329,20333,20334,20431,20443,20475,20487,20488,20494,20499,20500,20503,20504,20510,20512,20519,20521,20523,20529,20532,20533,20535,20542,20544,20548,20552,20557,20562,20568,20577,20599,20601,20607,20613,20616,20621,20629,20630,20631,20636,20639,20640,20649,20652,20656,20662,20668,20673,20677,20680,20686,20692,20696,20703,20705,20718,20722,20723,20728,20729,20731,20735,20736,20740,20753,20754,20758,20760,20761,20762,20764,20777,20780,20782,20783,20784,20787,20788,20791,20792,20794,20795,20799,20805,20812,20813,20815,20820,20822,20823,20824,20828,20829,20834,20837,20839,20841,20851,20860,20862,20863,20864,20868,20870,20876,20896,20898,20899,20903,20906,20908,20916,20917,20918,20923,20929,20933,20935,20936,20937,20938,20978,20987,21025,21026,21028,21029,21043,21045,21046,21058,21064,21077,21081,21083,21088,21090,21092,21097,21099,21100,21111,21116,21119,21126,21163,21182,21193,21195,21196,21197,21202,21215,21216,21218,21219,21222,21225,21226,21227,21228,21229,21230,21244,21245,21246,21251,21253,21255,21260,21263,21275,21280,21283,21284,21285,21286,21302,21304,21306,21308,21309,21311,21312,21316,21320,21321,21323,21324,21325,21329,21340,21351,21352,21354,21356,21362,21364,21366,21379,21382,21385,21389,21390,21392,21409,21410,21416,21418,21425,21429,21455,21458,21459,21460,21462,21469,21473,21474,21475,21477,21481,21482,21483,21488,21505,21509,21515,21519,21524,21527,21530,21539,21570,21575,21579,21580,21581,21582,21583,21593,21594,21596,21598,21599,21600,21603,21604,21606,21610,21611,21614,21615,21618,21619,21631,21634,21638,21647,21648,21650,21657,21667,21669,21670,21675,21679,21692,21693,21700,21701,21722,21739,21746,21747,21749,21750,21752,21753,21761,21965,21968,21976,21977,21980,21988,21991,21999,22000,22001,22003,22016,22020,22022,22023,22024,22026,22027,22029,22088,22097,22098,22099,22100,22102,22111,22112,22114,22115,22122,22125,22126,22127,22128,22133,22143,22152,22158,22165,22170,22185,22208,22220,22228,22237,22255,22265,22337,22339,22340,22344,22345,22351,22355,22361,22367,22377,22383,22386,22388,22389,22396,22412,22417,22421,22429,22434,22441,22449,22458,22466,22468,22474,22492,22493,22496,22498,22499,22502,22503,22504,22506,22507,22509,22524,22527,22529,22530,22536,22540,22546,22547,22548,22555,22558,22568,22571,22575,22609,22627,22634,22639,22649,22650,22666,22701,22735,22737,22762,22790,22791,22793,22799,22800,22813,22816,22818,22839,22840,22854,22858,22861,22862,22866,22876,22884,22889,22890,22891,22895,22896,22897,22899,22901,22905,22908,22911,22919,22920,22921,22929,22932,22944,22945,22946,22955,22959,22960,22964,22983,22985,22986,22988,22990,22993,22997,22998,23019,23022,23032,23034,23035,23037,23038,23040,23042,23047,23048,23049,23051,23052,23054,23061,23066,23068,23070,23080,23084,23086,23087,23091,23092,23095,23102,23105,23106,23107,23112,23116,23122,23123,23131,23132,23139,23144]]],["-",[55,55,[[0,2,2,0,2,[[14,1,1,0,1],[21,1,1,1,2]]],[1,16,16,2,18,[[78,1,1,2,3],[80,1,1,3,4],[83,1,1,4,5],[84,7,7,5,12],[88,6,6,12,18]]],[2,3,3,18,21,[[100,2,2,18,20],[114,1,1,20,21]]],[3,3,3,21,24,[[123,1,1,21,22],[132,1,1,22,23],[144,1,1,23,24]]],[4,5,5,24,29,[[157,1,1,24,25],[163,1,1,25,26],[164,1,1,26,27],[166,2,2,27,29]]],[5,6,6,29,35,[[207,6,6,29,35]]],[10,1,1,35,36,[[298,1,1,35,36]]],[11,1,1,36,37,[[331,1,1,36,37]]],[13,1,1,37,38,[[370,1,1,37,38]]],[15,1,1,38,39,[[415,1,1,38,39]]],[18,3,3,39,42,[[556,1,1,39,40],[613,2,2,40,42]]],[19,1,1,42,43,[[643,1,1,42,43]]],[20,1,1,43,44,[[665,1,1,43,44]]],[22,3,3,44,47,[[706,1,1,44,45],[715,1,1,45,46],[718,1,1,46,47]]],[23,4,4,47,51,[[769,2,2,47,49],[779,1,1,49,50],[788,1,1,50,51]]],[25,3,3,51,54,[[813,1,1,51,52],[814,1,1,52,53],[835,1,1,53,54]]],[37,1,1,54,55,[[921,1,1,54,55]]]],[379,568,2375,2427,2514,2542,2543,2544,2547,2548,2549,2550,2699,2700,2701,2703,2704,2705,3006,3012,3474,3857,4232,4581,5075,5235,5272,5299,5306,6399,6405,6412,6416,6418,6420,9016,10083,11261,12340,15187,16204,16205,16873,17444,18173,18375,18434,19553,19555,19837,20031,20693,20729,21317,23036]]],["And",[10,10,[[0,3,3,0,3,[[1,1,1,0,1],[6,1,1,1,2],[26,1,1,2,3]]],[1,2,2,3,5,[[59,1,1,3,4],[76,1,1,4,5]]],[3,1,1,5,6,[[134,1,1,5,6]]],[6,1,1,6,7,[[211,1,1,6,7]]],[9,1,1,7,8,[[287,1,1,7,8]]],[11,1,1,8,9,[[335,1,1,8,9]]],[22,1,1,9,10,[[697,1,1,9,10]]]],[52,182,769,1785,2279,4259,6526,8594,10184,18008]]],["Cause",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12784]]],["Even",[5,5,[[2,3,3,0,3,[[93,1,1,0,1],[100,1,1,1,2],[103,1,1,2,3]]],[3,1,1,3,4,[[131,1,1,3,4]]],[23,1,1,4,5,[[787,1,1,4,5]]]],[2807,3019,3142,4176,20003]]],["For",[1,1,[[12,1,1,0,1,[[354,1,1,0,1]]]],[10885]]],["I",[3,3,[[15,1,1,0,1,[[425,1,1,0,1]]],[23,1,1,1,2,[[769,1,1,1,2]]],[26,1,1,2,3,[[859,1,1,2,3]]]],[12694,19551,22024]]],["Is",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6443]]],["Let",[7,7,[[1,6,6,0,6,[[53,1,1,0,1],[54,1,1,1,2],[56,1,1,2,3],[57,1,1,3,4],[58,2,2,4,6]]],[10,1,1,6,7,[[292,1,1,6,7]]]],[1624,1633,1701,1711,1743,1755,8791]]],["Namely",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5047]]],["Of",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5322]]],["a",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1555]]],["about",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17968]]],["after",[2,2,[[1,1,1,0,1,[[74,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]]],[2204,8455]]],["again",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4914]]],["against",[5,5,[[2,1,1,0,1,[[108,1,1,0,1]]],[10,2,2,1,3,[[296,1,1,1,2],[311,1,1,2,3]]],[18,1,1,3,4,[[582,1,1,3,4]]],[23,1,1,4,5,[[765,1,1,4,5]]]],[3299,8901,9464,15634,19444]]],["all",[3,3,[[3,2,2,0,2,[[130,1,1,0,1],[147,1,1,1,2]]],[4,1,1,2,3,[[179,1,1,2,3]]]],[4123,4673,5611]]],["also",[16,16,[[2,1,1,0,1,[[98,1,1,0,1]]],[3,1,1,1,2,[[122,1,1,1,2]]],[9,1,1,2,3,[[274,1,1,2,3]]],[10,2,2,3,5,[[292,1,1,3,4],[297,1,1,4,5]]],[11,1,1,5,6,[[314,1,1,5,6]]],[13,1,1,6,7,[[369,1,1,6,7]]],[14,1,1,7,8,[[405,1,1,7,8]]],[22,2,2,8,10,[[684,1,1,8,9],[708,1,1,9,10]]],[23,3,3,10,13,[[750,1,1,10,11],[763,1,1,11,12],[787,1,1,12,13]]],[25,3,3,13,16,[[833,1,1,13,14],[841,2,2,14,16]]]],[2971,3840,8212,8775,8936,9564,11236,12101,17770,18239,19103,19412,20010,21261,21485,21491]]],["and",[40,40,[[0,3,3,0,3,[[6,1,1,0,1],[13,1,1,1,2],[45,1,1,2,3]]],[1,8,8,3,11,[[56,1,1,3,4],[67,1,1,4,5],[70,2,2,5,7],[84,1,1,7,8],[87,1,1,8,9],[88,2,2,9,11]]],[2,1,1,11,12,[[93,1,1,11,12]]],[3,2,2,12,14,[[142,1,1,12,13],[148,1,1,13,14]]],[4,2,2,14,16,[[153,1,1,14,15],[164,1,1,15,16]]],[5,3,3,16,19,[[196,1,1,16,17],[207,2,2,17,19]]],[10,1,1,19,20,[[298,1,1,19,20]]],[11,5,5,20,25,[[321,1,1,20,21],[327,1,1,21,22],[330,2,2,22,24],[331,1,1,24,25]]],[13,1,1,25,26,[[391,1,1,25,26]]],[16,1,1,26,27,[[429,1,1,26,27]]],[17,1,1,27,28,[[477,1,1,27,28]]],[18,4,4,28,32,[[582,2,2,28,30],[593,1,1,30,31],[609,1,1,31,32]]],[22,1,1,32,33,[[737,1,1,32,33]]],[23,4,4,33,37,[[763,1,1,33,34],[769,2,2,34,36],[771,1,1,36,37]]],[25,2,2,37,39,[[804,1,1,37,38],[806,1,1,38,39]]],[35,1,1,39,40,[[906,1,1,39,40]]]],[163,352,1404,1689,2007,2105,2112,2556,2636,2700,2705,2810,4499,4756,4914,5246,6087,6397,6415,8986,9767,9941,10036,10054,10078,11728,12769,13938,15648,15649,15856,16152,18819,19414,19552,19554,19602,20510,20556,22791]]],["as",[6,5,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[22,1,1,3,4,[[715,1,1,3,4]]],[37,2,1,4,5,[[923,2,1,4,5]]]],[3001,5297,10073,18364,23068]]],["at",[4,4,[[0,1,1,0,1,[[23,1,1,0,1]]],[9,1,1,1,2,[[282,1,1,1,2]]],[10,1,1,2,3,[[312,1,1,2,3]]],[13,1,1,3,4,[[384,1,1,3,4]]]],[648,8432,9485,11546]]],["be",[6,6,[[3,1,1,0,1,[[151,1,1,0,1]]],[5,5,5,1,6,[[207,5,5,1,6]]]],[4851,6394,6402,6408,6413,6419]]],["bless",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15550]]],["both",[2,2,[[1,1,1,0,1,[[84,1,1,0,1]]],[23,1,1,1,2,[[776,1,1,1,2]]]],[2556,19742]]],["but",[1,1,[[23,1,1,0,1,[[789,1,1,0,1]]]],[20045]]],["by",[1,1,[[23,1,1,0,1,[[773,1,1,0,1]]]],[19654]]],["call",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9335]]],["cause",[31,30,[[1,2,2,0,2,[[57,1,1,0,1],[78,1,1,1,2]]],[3,4,4,2,6,[[121,2,2,2,4],[143,2,2,4,6]]],[4,3,3,6,9,[[153,1,1,6,7],[169,1,1,7,8],[176,1,1,8,9]]],[9,2,2,9,11,[[269,1,1,9,10],[279,1,1,10,11]]],[10,1,1,11,12,[[291,1,1,11,12]]],[15,1,1,12,13,[[416,1,1,12,13]]],[20,2,2,13,15,[[660,1,1,13,14],[663,1,1,14,15]]],[22,2,2,15,17,[[708,2,2,15,17]]],[23,10,9,17,26,[[759,1,1,17,18],[767,2,2,18,20],[769,1,1,20,21],[776,3,2,21,23],[777,2,2,23,25],[793,1,1,25,26]]],[25,2,2,26,28,[[817,1,1,26,27],[831,1,1,27,28]]],[37,2,2,28,30,[[918,1,1,28,29],[923,1,1,29,30]]]],[1715,2346,3816,3818,4561,4562,4930,5380,5529,8116,8330,8750,12370,17353,17403,18228,18247,19326,19511,19516,19549,19766,19775,19782,19801,20164,20764,21226,22988,23061]]],["caused",[20,20,[[1,1,1,0,1,[[63,1,1,0,1]]],[8,3,3,1,4,[[245,2,2,1,3],[255,1,1,3,4]]],[10,1,1,4,5,[[291,1,1,4,5]]],[11,1,1,5,6,[[329,1,1,5,6]]],[13,4,4,6,10,[[374,1,1,6,7],[387,1,1,7,8],[399,1,1,8,9],[400,1,1,9,10]]],[15,1,1,10,11,[[420,1,1,10,11]]],[22,1,1,11,12,[[697,1,1,11,12]]],[23,5,5,12,17,[[756,1,1,12,13],[767,2,2,13,15],[776,1,1,15,16],[778,1,1,16,17]]],[25,3,3,17,20,[[824,1,1,17,18],[825,1,1,18,19],[830,1,1,19,20]]]],[1910,7438,7439,7747,8755,10000,11348,11635,11914,11965,12500,18018,19263,19497,19506,19754,19812,21044,21069,21201]]],["even",[39,39,[[1,1,1,0,1,[[59,1,1,0,1]]],[2,2,2,1,3,[[93,1,1,1,2],[94,1,1,2,3]]],[3,4,4,3,7,[[120,1,1,3,4],[121,1,1,4,5],[134,2,2,5,7]]],[4,1,1,7,8,[[169,1,1,7,8]]],[5,3,3,8,11,[[194,1,1,8,9],[201,1,1,9,10],[205,1,1,10,11]]],[6,2,2,11,13,[[213,2,2,11,13]]],[8,1,1,13,14,[[240,1,1,13,14]]],[10,2,2,14,16,[[297,1,1,14,15],[301,1,1,15,16]]],[11,1,1,16,17,[[334,1,1,16,17]]],[13,2,2,17,19,[[377,1,1,17,18],[400,1,1,18,19]]],[16,1,1,19,20,[[427,1,1,19,20]]],[18,1,1,20,21,[[561,1,1,20,21]]],[20,1,1,21,22,[[660,1,1,21,22]]],[22,4,4,22,26,[[685,2,2,22,24],[686,1,1,24,25],[729,1,1,25,26]]],[23,7,7,26,33,[[753,1,1,26,27],[760,1,1,27,28],[769,1,1,28,29],[785,1,1,29,30],[787,1,1,30,31],[793,1,1,31,32],[795,1,1,32,33]]],[25,5,5,33,38,[[805,1,1,33,34],[814,1,1,34,35],[835,1,1,35,36],[837,1,1,36,37],[845,1,1,37,38]]],[37,1,1,38,39,[[921,1,1,38,39]]]],[1789,2812,2842,3757,3818,4278,4286,5369,6015,6215,6371,6569,6577,7325,8985,9143,10161,11420,11957,12742,15262,17345,17788,17799,17814,18695,19190,19341,19547,19967,19998,20164,20272,20530,20728,21336,21371,21606,23038]]],["for",[14,14,[[0,1,1,0,1,[[43,1,1,0,1]]],[2,2,2,1,3,[[103,1,1,1,2],[105,1,1,2,3]]],[3,2,2,3,5,[[123,1,1,3,4],[136,1,1,4,5]]],[4,1,1,5,6,[[186,1,1,5,6]]],[9,2,2,6,8,[[269,1,1,6,7],[281,1,1,7,8]]],[10,2,2,8,10,[[294,2,2,8,10]]],[15,1,1,10,11,[[414,1,1,10,11]]],[16,1,1,11,12,[[430,1,1,11,12]]],[23,1,1,12,13,[[780,1,1,12,13]]],[25,1,1,13,14,[[808,1,1,13,14]]]],[1356,3117,3234,3869,4340,5847,8098,8401,8851,8871,12315,12789,19873,20585]]],["from",[1,1,[[11,1,1,0,1,[[330,1,1,0,1]]]],[10040]]],["gave",[5,5,[[0,1,1,0,1,[[20,1,1,0,1]]],[5,1,1,1,2,[[207,1,1,1,2]]],[9,1,1,2,3,[[284,1,1,2,3]]],[15,1,1,3,4,[[419,1,1,3,4]]],[29,1,1,4,5,[[880,1,1,4,5]]]],[532,6408,8483,12422,22391]]],["give",[2,2,[[3,1,1,0,1,[[136,1,1,0,1]]],[25,1,1,1,2,[[847,1,1,1,2]]]],[4319,21673]]],["given",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[29]]],["had",[1,1,[[0,1,1,0,1,[[27,1,1,0,1]]]],[782]]],["hath",[7,7,[[2,6,6,0,6,[[102,6,6,0,6]]],[18,1,1,6,7,[[604,1,1,6,7]]]],[3056,3065,3069,3083,3085,3102,16126]]],["he",[6,6,[[0,2,2,0,2,[[8,1,1,0,1],[31,1,1,1,2]]],[1,2,2,2,4,[[86,2,2,2,4]]],[3,1,1,4,5,[[119,1,1,4,5]]],[25,1,1,5,6,[[841,1,1,5,6]]]],[211,947,2612,2621,3742,21486]]],["hear",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22969]]],["her",[16,16,[[3,1,1,0,1,[[121,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]],[6,3,3,2,5,[[211,1,1,2,3],[226,2,2,3,5]]],[7,2,2,5,7,[[233,1,1,5,6],[234,1,1,6,7]]],[10,3,3,7,10,[[293,2,2,7,9],[300,1,1,9,10]]],[13,1,1,10,11,[[375,1,1,10,11]]],[16,1,1,11,12,[[427,1,1,11,12]]],[23,1,1,12,13,[[747,1,1,12,13]]],[25,1,1,13,14,[[823,1,1,13,14]]],[27,2,2,14,16,[[863,2,2,14,16]]]],[3822,6221,6524,6966,6967,7167,7188,8842,8843,9082,11366,12733,19010,20978,22118,22120]]],["him",[79,76,[[0,11,11,0,11,[[12,1,1,0,1],[14,1,1,1,2],[19,1,1,2,3],[24,1,1,3,4],[28,1,1,4,5],[29,1,1,5,6],[41,1,1,6,7],[42,1,1,7,8],[43,1,1,8,9],[44,1,1,9,10],[47,1,1,10,11]]],[1,6,4,11,15,[[55,5,3,11,14],[80,1,1,14,15]]],[2,7,7,15,22,[[97,1,1,15,16],[98,1,1,16,17],[105,2,2,17,19],[114,1,1,19,20],[116,2,2,20,22]]],[3,2,2,22,24,[[119,1,1,22,23],[141,1,1,23,24]]],[4,3,3,24,27,[[169,1,1,24,25],[176,1,1,25,26],[186,1,1,26,27]]],[5,4,4,27,31,[[188,1,1,27,28],[201,1,1,28,29],[205,1,1,29,30],[210,1,1,30,31]]],[6,3,3,31,34,[[211,1,1,31,32],[213,1,1,32,33],[218,1,1,33,34]]],[8,8,8,34,42,[[238,1,1,34,35],[246,1,1,35,36],[251,1,1,36,37],[253,1,1,37,38],[254,2,2,38,40],[260,1,1,40,41],[262,1,1,41,42]]],[9,2,2,42,44,[[285,2,2,42,44]]],[10,5,5,44,49,[[291,1,1,44,45],[292,1,1,45,46],[293,1,1,46,47],[301,1,1,47,48],[303,1,1,48,49]]],[11,4,4,49,53,[[316,1,1,49,50],[318,1,1,50,51],[330,1,1,51,52],[336,1,1,52,53]]],[12,10,9,53,62,[[339,8,7,53,60],[341,2,2,60,62]]],[13,5,5,62,67,[[375,1,1,62,63],[377,2,2,63,65],[379,1,1,65,66],[389,1,1,66,67]]],[16,1,1,67,68,[[428,1,1,67,68]]],[22,2,2,68,70,[[714,1,1,68,69],[731,1,1,69,70]]],[23,4,4,70,74,[[765,1,1,70,71],[772,1,1,71,72],[776,1,1,72,73],[785,1,1,73,74]]],[25,2,2,74,76,[[830,1,1,74,75],[847,1,1,75,76]]]],[329,370,509,660,823,834,1281,1316,1348,1385,1452,1675,1678,1680,2426,2924,2965,3222,3223,3506,3588,3593,3734,4483,5382,5538,5840,5892,6219,6371,6479,6522,6581,6733,7294,7450,7598,7703,7713,7724,7898,7936,8548,8549,8761,8792,8822,9128,9195,9604,9680,10039,10204,10310,10315,10325,10327,10330,10335,10341,10391,10395,11365,11432,11434,11472,11667,12753,18352,18717,19441,19632,19740,19973,21203,21667]]],["himself",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8496]]],["his",[6,6,[[0,2,2,0,2,[[3,1,1,0,1],[36,1,1,1,2]]],[3,1,1,2,3,[[121,1,1,2,3]]],[9,1,1,3,4,[[283,1,1,3,4]]],[10,1,1,4,5,[[292,1,1,4,5]]],[22,1,1,5,6,[[688,1,1,5,6]]]],[104,1106,3799,8472,8779,17862]]],["in",[8,8,[[7,1,1,0,1,[[234,1,1,0,1]]],[9,1,1,1,2,[[273,1,1,1,2]]],[10,3,3,2,5,[[292,1,1,2,3],[301,1,1,3,4],[305,1,1,4,5]]],[15,1,1,5,6,[[421,1,1,5,6]]],[18,1,1,6,7,[[624,1,1,6,7]]],[23,1,1,7,8,[[782,1,1,7,8]]]],[7174,8207,8773,9123,9272,12523,16362,19904]]],["inhabitants",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4813]]],["is",[3,3,[[1,1,1,0,1,[[71,1,1,0,1]]],[13,1,1,1,2,[[397,1,1,1,2]]],[25,1,1,2,3,[[845,1,1,2,3]]]],[2138,11864,21602]]],["it",[13,13,[[1,2,2,0,2,[[84,1,1,0,1],[89,1,1,1,2]]],[2,2,2,2,4,[[90,1,1,2,3],[114,1,1,3,4]]],[3,2,2,4,6,[[120,1,1,4,5],[134,1,1,5,6]]],[4,3,3,6,9,[[181,1,1,6,7],[183,2,2,7,9]]],[8,2,2,9,11,[[249,1,1,9,10],[255,1,1,10,11]]],[23,1,1,11,12,[[780,1,1,11,12]]],[31,1,1,12,13,[[891,1,1,12,13]]]],[2536,2736,2758,3480,3757,4289,5706,5747,5750,7535,7732,19870,22560]]],["let",[28,27,[[1,16,15,0,15,[[53,1,1,0,1],[54,2,1,1,2],[55,1,1,2,3],[57,3,3,3,6],[58,2,2,6,8],[59,3,3,8,11],[60,1,1,11,12],[62,1,1,12,13],[63,1,1,13,14],[67,1,1,14,15]]],[2,1,1,15,16,[[103,1,1,15,16]]],[3,1,1,16,17,[[148,1,1,16,17]]],[5,2,2,17,19,[[190,1,1,17,18],[210,1,1,18,19]]],[6,1,1,19,20,[[212,1,1,19,20]]],[9,1,1,20,21,[[279,1,1,20,21]]],[11,1,1,21,22,[[317,1,1,21,22]]],[13,1,1,22,23,[[382,1,1,22,23]]],[18,1,1,23,24,[[549,1,1,23,24]]],[23,3,3,24,27,[[778,2,2,24,26],[782,1,1,26,27]]]],[1622,1634,1666,1718,1731,1742,1749,1777,1781,1784,1797,1816,1884,1894,2026,3118,4723,5932,6504,6551,8344,9671,11514,15019,19810,19811,19899]]],["letting",[1,1,[[1,1,1,0,1,[[57,1,1,0,1]]]],[1739]]],["made",[51,51,[[0,2,2,0,2,[[18,2,2,0,2]]],[1,5,5,2,7,[[50,2,2,2,4],[54,1,1,4,5],[58,1,1,5,6],[81,1,1,6,7]]],[2,1,1,7,8,[[112,1,1,7,8]]],[3,1,1,8,9,[[130,1,1,8,9]]],[4,1,1,9,10,[[163,1,1,9,10]]],[5,1,1,10,11,[[200,1,1,10,11]]],[6,1,1,11,12,[[219,1,1,11,12]]],[10,6,6,12,18,[[293,1,1,12,13],[302,3,3,13,16],[306,2,2,16,18]]],[11,20,20,18,38,[[315,1,1,18,19],[319,1,1,19,20],[322,2,2,20,22],[325,3,3,22,25],[326,1,1,25,26],[327,4,4,26,30],[328,1,1,30,31],[329,1,1,31,32],[333,3,3,32,35],[335,1,1,35,36],[337,2,2,36,38]]],[13,7,7,38,45,[[376,1,1,38,39],[377,1,1,39,40],[387,1,1,40,41],[388,1,1,41,42],[399,1,1,42,43],[400,1,1,43,44],[402,1,1,44,45]]],[14,1,1,45,46,[[412,1,1,45,46]]],[23,4,4,46,50,[[761,1,1,46,47],[769,1,1,47,48],[784,1,1,48,49],[793,1,1,49,50]]],[25,1,1,50,51,[[817,1,1,50,51]]]],[490,492,1545,1546,1653,1762,2458,3445,4144,5212,6195,6772,8823,9155,9161,9165,9285,9299,9579,9713,9822,9824,9873,9877,9882,9920,9934,9943,9949,9953,9966,10004,10125,10130,10143,10180,10244,10245,11399,11431,11637,11645,11917,11966,11997,12257,19380,19551,19948,20137,20787]]],["make",[18,17,[[0,3,3,0,3,[[18,1,1,0,1],[25,1,1,1,2],[46,1,1,2,3]]],[1,1,1,3,4,[[83,1,1,3,4]]],[3,1,1,4,5,[[146,1,1,4,5]]],[4,2,2,5,7,[[180,2,2,5,7]]],[5,1,1,7,8,[[208,1,1,7,8]]],[8,1,1,8,9,[[253,1,1,8,9]]],[9,1,1,9,10,[[273,1,1,9,10]]],[10,2,1,10,11,[[291,2,1,10,11]]],[11,1,1,11,12,[[335,1,1,11,12]]],[18,1,1,12,13,[[583,1,1,12,13]]],[23,1,1,13,14,[[795,1,1,13,14]]],[25,2,2,14,16,[[831,2,2,14,16]]],[32,1,1,16,17,[[895,1,1,16,17]]]],[489,696,1426,2512,4656,5632,5670,6451,7701,8201,8764,10175,15659,20248,21213,21214,22613]]],["makest",[1,1,[[23,1,1,0,1,[[772,1,1,0,1]]]],[19633]]],["maketh",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5463]]],["me",[38,38,[[0,6,6,0,6,[[22,1,1,0,1],[28,2,2,1,3],[29,1,1,3,4],[33,2,2,4,6]]],[1,1,1,6,7,[[82,1,1,6,7]]],[3,3,3,7,10,[[133,1,1,7,8],[138,2,2,8,10]]],[4,4,4,10,14,[[160,1,1,10,11],[161,2,2,11,13],[183,1,1,13,14]]],[5,1,1,14,15,[[200,1,1,14,15]]],[6,1,1,15,16,[[226,1,1,15,16]]],[8,4,4,16,20,[[236,1,1,16,17],[250,1,1,17,18],[251,1,1,18,19],[259,1,1,19,20]]],[9,4,4,20,24,[[269,1,1,20,21],[277,1,1,21,22],[282,1,1,22,23],[286,1,1,23,24]]],[10,7,7,24,31,[[292,1,1,24,25],[303,2,2,25,27],[307,1,1,27,28],[308,1,1,28,29],[311,2,2,29,31]]],[11,2,2,31,33,[[322,1,1,31,32],[330,1,1,32,33]]],[18,1,1,33,34,[[596,1,1,33,34]]],[22,1,1,34,35,[[727,1,1,34,35]]],[23,1,1,35,36,[[757,1,1,35,36]]],[37,2,2,36,38,[[913,1,1,36,37],[922,1,1,37,38]]]],[580,816,828,856,984,992,2491,4249,4381,4392,5154,5167,5168,5756,6199,6967,7239,7592,7614,7857,8095,8265,8429,8558,8787,9192,9211,9336,9360,9453,9457,9808,10038,16033,18657,19277,22913,23055]]],["my",[1,1,[[37,1,1,0,1,[[913,1,1,0,1]]]],[22919]]],["namely",[3,3,[[3,1,1,0,1,[[147,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]],[23,1,1,2,3,[[770,1,1,2,3]]]],[4672,10511,19594]]],["not",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[10,1,1,1,2,[[309,1,1,1,2]]]],[597,9389]]],["now",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17524]]],["of",[74,74,[[0,9,9,0,9,[[13,1,1,0,1],[24,1,1,1,2],[31,1,1,2,3],[36,1,1,3,4],[40,2,2,4,6],[41,1,1,6,7],[44,1,1,7,8],[49,1,1,8,9]]],[1,7,7,9,16,[[57,1,1,9,10],[58,2,2,10,12],[61,1,1,12,13],[71,1,1,13,14],[82,1,1,14,15],[85,1,1,15,16]]],[2,1,1,16,17,[[115,1,1,16,17]]],[3,1,1,17,18,[[139,1,1,17,18]]],[4,1,1,18,19,[[186,1,1,18,19]]],[5,2,2,19,21,[[203,1,1,19,20],[209,1,1,20,21]]],[6,4,4,21,25,[[213,2,2,21,23],[219,1,1,23,24],[226,1,1,24,25]]],[7,1,1,25,26,[[235,1,1,25,26]]],[8,7,7,26,33,[[237,1,1,26,27],[239,1,1,27,28],[247,1,1,28,29],[252,1,1,29,30],[253,2,2,30,32],[256,1,1,32,33]]],[9,9,9,33,42,[[267,1,1,33,34],[272,1,1,34,35],[274,1,1,35,36],[279,1,1,36,37],[280,1,1,37,38],[281,1,1,38,39],[284,1,1,39,40],[286,1,1,40,41],[287,1,1,41,42]]],[10,10,10,42,52,[[293,1,1,42,43],[299,1,1,43,44],[300,3,3,44,47],[305,1,1,47,48],[308,1,1,48,49],[310,1,1,49,50],[311,1,1,50,51],[312,1,1,51,52]]],[11,5,5,52,57,[[315,1,1,52,53],[326,1,1,53,54],[334,2,2,54,56],[335,1,1,56,57]]],[12,2,2,57,59,[[343,1,1,57,58],[354,1,1,58,59]]],[13,2,2,59,61,[[384,1,1,59,60],[394,1,1,60,61]]],[14,1,1,61,62,[[405,1,1,61,62]]],[15,1,1,62,63,[[414,1,1,62,63]]],[16,2,2,63,65,[[429,1,1,63,64],[430,1,1,64,65]]],[19,1,1,65,66,[[649,1,1,65,66]]],[21,1,1,66,67,[[671,1,1,66,67]]],[22,2,2,67,69,[[689,1,1,67,68],[740,1,1,68,69]]],[23,3,3,69,72,[[765,1,1,69,70],[780,1,1,70,71],[785,1,1,71,72]]],[25,2,2,72,74,[[836,1,1,72,73],[843,1,1,73,74]]]],[353,680,960,1106,1211,1229,1282,1371,1531,1731,1771,1775,1855,2138,2479,2574,3565,4426,5845,6287,6473,6597,6599,6778,6978,7205,7263,7315,7467,7675,7680,7682,7774,8023,8166,8222,8338,8371,8412,8480,8559,8599,8844,9052,9080,9081,9091,9270,9351,9437,9466,9488,9587,9903,10158,10163,10200,10521,10881,11549,11785,12107,12325,12769,12790,17038,17543,17893,18860,19442,19858,19968,21349,21567]]],["on",[4,4,[[3,1,1,0,1,[[151,1,1,0,1]]],[9,1,1,1,2,[[270,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]],[23,1,1,3,4,[[776,1,1,3,4]]]],[4850,8125,17929,19760]]],["ourselves",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15253]]],["over",[2,2,[[3,1,1,0,1,[[148,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]]],[4739,8552]]],["place",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2550]]],["possess",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22529]]],["provided",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8543]]],["same",[1,1,[[23,1,1,0,1,[[771,1,1,0,1]]]],[19604]]],["saw",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22165]]],["shall",[1,1,[[0,1,1,0,1,[[16,1,1,0,1]]]],[402]]],["son",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[549]]],["that",[12,12,[[0,2,2,0,2,[[20,1,1,0,1],[48,1,1,1,2]]],[1,3,3,2,5,[[65,1,1,2,3],[74,2,2,3,5]]],[3,2,2,5,7,[[125,1,1,5,6],[139,1,1,6,7]]],[4,1,1,7,8,[[173,1,1,7,8]]],[8,2,2,8,10,[[248,1,1,8,9],[250,1,1,9,10]]],[16,1,1,10,11,[[430,1,1,10,11]]],[23,1,1,11,12,[[764,1,1,11,12]]]],[521,1474,1970,2209,2223,3980,4428,5470,7499,7562,12793,19423]]],["the",[16,16,[[1,4,4,0,4,[[69,2,2,0,2],[74,1,1,2,3],[89,1,1,3,4]]],[2,1,1,4,5,[[114,1,1,4,5]]],[3,1,1,5,6,[[132,1,1,5,6]]],[4,1,1,6,7,[[158,1,1,6,7]]],[5,1,1,7,8,[[210,1,1,7,8]]],[9,2,2,8,10,[[269,1,1,8,9],[276,1,1,9,10]]],[18,3,3,10,13,[[511,1,1,10,11],[577,1,1,11,12],[611,1,1,12,13]]],[25,1,1,13,14,[[806,1,1,13,14]]],[30,1,1,14,15,[[888,1,1,14,15]]],[37,1,1,15,16,[[917,1,1,15,16]]]],[2059,2062,2232,2720,3491,4229,5110,6499,8091,8244,14389,15510,16173,20562,22531,22974]]],["thee",[55,54,[[0,6,6,0,6,[[14,1,1,0,1],[16,1,1,1,2],[22,1,1,2,3],[27,1,1,3,4],[28,1,1,4,5],[40,1,1,5,6]]],[1,5,5,6,11,[[51,1,1,6,7],[58,1,1,7,8],[73,1,1,8,9],[77,1,1,9,10],[83,1,1,10,11]]],[3,2,2,11,13,[[134,1,1,11,12],[143,1,1,12,13]]],[4,12,12,13,25,[[156,2,2,13,15],[157,1,1,15,16],[159,1,1,16,17],[162,1,1,17,18],[167,1,1,18,19],[169,1,1,19,20],[171,1,1,20,21],[175,1,1,21,22],[180,3,3,22,25]]],[6,1,1,25,26,[[214,1,1,25,26]]],[7,1,1,26,27,[[234,1,1,26,27]]],[8,6,6,27,33,[[236,1,1,27,28],[244,1,1,28,29],[245,1,1,29,30],[250,1,1,30,31],[251,1,1,31,32],[255,1,1,32,33]]],[9,4,3,33,36,[[268,1,1,33,34],[275,1,1,34,35],[278,2,1,35,36]]],[10,3,3,36,39,[[311,3,3,36,39]]],[15,1,1,39,40,[[413,1,1,39,40]]],[18,1,1,40,41,[[504,1,1,40,41]]],[19,1,1,41,42,[[633,1,1,41,42]]],[21,1,1,42,43,[[677,1,1,42,43]]],[23,2,2,43,45,[[774,1,1,43,44],[776,1,1,44,45]]],[25,7,7,45,52,[[803,1,1,45,46],[805,2,2,46,48],[806,1,1,48,49],[808,1,1,49,50],[825,2,2,50,52]]],[26,1,1,52,53,[[859,1,1,52,53]]],[32,1,1,53,54,[[898,1,1,53,54]]]],[367,405,577,777,822,1234,1563,1758,2189,2294,2507,4265,4572,5040,5042,5084,5123,5207,5334,5373,5414,5504,5623,5631,5671,6621,7176,7229,7418,7426,7576,7598,7743,8070,8234,8294,9455,9457,9458,12304,14293,16562,17639,19669,19738,20495,20534,20544,20555,20580,21058,21072,22036,22652]]],["their",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1085]]],["them",[51,50,[[0,3,3,0,3,[[40,1,1,0,1],[41,1,1,1,2],[43,1,1,2,3]]],[1,3,2,3,5,[[55,1,1,3,4],[67,2,1,4,5]]],[3,3,3,5,8,[[129,1,1,5,6],[144,1,1,6,7],[148,1,1,7,8]]],[4,3,3,8,11,[[163,1,1,8,9],[170,1,1,9,10],[179,1,1,10,11]]],[5,3,3,11,14,[[191,1,1,11,12],[207,2,2,12,14]]],[6,3,3,14,17,[[211,1,1,14,15],[216,1,1,15,16],[217,1,1,16,17]]],[8,1,1,17,18,[[257,1,1,17,18]]],[10,3,3,18,21,[[298,1,1,18,19],[299,1,1,19,20],[305,1,1,20,21]]],[11,3,3,21,24,[[323,1,1,21,22],[329,1,1,22,23],[332,1,1,23,24]]],[12,1,1,24,25,[[343,1,1,24,25]]],[13,2,2,25,27,[[370,1,1,25,26],[402,1,1,26,27]]],[14,2,2,27,29,[[403,1,1,27,28],[410,1,1,28,29]]],[15,2,2,29,31,[[414,1,1,29,30],[421,1,1,30,31]]],[18,2,2,31,33,[[571,1,1,31,32],[622,1,1,32,33]]],[22,2,2,33,35,[[686,1,1,33,34],[717,1,1,34,35]]],[23,10,10,35,45,[[745,1,1,35,36],[755,1,1,36,37],[757,1,1,37,38],[767,1,1,38,39],[769,1,1,39,40],[773,1,1,40,41],[776,2,2,41,43],[780,1,1,43,44],[784,1,1,44,45]]],[25,5,5,45,50,[[812,1,1,45,46],[821,2,2,46,48],[824,1,1,48,49],[825,1,1,49,50]]]],[1203,1276,1330,1659,2019,4101,4579,4747,5227,5402,5588,5940,6392,6402,6534,6656,6718,7791,9021,9060,9271,9833,10010,10111,10509,11252,12010,12021,12226,12316,12535,15454,16335,17814,18414,18963,19234,19278,19517,19564,19652,19753,19773,19855,19952,20675,20906,20907,21043,21081]]],["then",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21490]]],["therefore",[6,6,[[3,1,1,0,1,[[151,1,1,0,1]]],[4,4,4,1,5,[[156,1,1,1,2],[162,2,2,2,4],[181,1,1,4,5]]],[10,1,1,5,6,[[302,1,1,5,6]]]],[4879,5044,5202,5205,5688,9175]]],["thereof",[1,1,[[2,1,1,0,1,[[96,1,1,0,1]]]],[2882]]],["therewith",[2,2,[[11,1,1,0,1,[[324,1,1,0,1]]],[13,1,1,1,2,[[382,1,1,1,2]]]],[9864,11515]]],["these",[2,2,[[0,1,1,0,1,[[20,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]]],[543,10518]]],["they",[2,2,[[20,1,1,0,1,[[662,1,1,0,1]]],[23,1,1,1,2,[[782,1,1,1,2]]]],[17384,19901]]],["thine",[1,1,[[18,1,1,0,1,[[503,1,1,0,1]]]],[14279]]],["thing",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3106]]],["thither",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7985]]],["thou",[10,10,[[1,2,2,0,2,[[83,2,2,0,2]]],[3,1,1,2,3,[[133,1,1,2,3]]],[8,1,1,3,4,[[259,1,1,3,4]]],[9,1,1,4,5,[[279,1,1,4,5]]],[10,1,1,5,6,[[298,1,1,5,6]]],[12,1,1,6,7,[[365,1,1,6,7]]],[18,1,1,7,8,[[581,1,1,7,8]]],[19,1,1,8,9,[[651,1,1,8,9]]],[20,1,1,9,10,[[663,1,1,9,10]]]],[2507,2523,4246,7848,8329,9034,11152,15606,17100,17404]]],["through",[2,2,[[3,1,1,0,1,[[141,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]]],[4479,4956]]],["throughout",[1,1,[[10,1,1,0,1,[[305,1,1,0,1]]]],[9271]]],["thyself",[1,1,[[9,1,1,0,1,[[273,1,1,0,1]]]],[8204]]],["till",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13632]]],["to",[14,14,[[0,1,1,0,1,[[38,1,1,0,1]]],[1,1,1,1,2,[[50,1,1,1,2]]],[6,1,1,2,3,[[221,1,1,2,3]]],[8,2,2,3,5,[[244,1,1,3,4],[265,1,1,4,5]]],[9,1,1,5,6,[[282,1,1,5,6]]],[10,1,1,6,7,[[292,1,1,6,7]]],[12,1,1,7,8,[[358,1,1,7,8]]],[15,1,1,8,9,[[420,1,1,8,9]]],[20,1,1,9,10,[[667,1,1,9,10]]],[22,1,1,10,11,[[728,1,1,10,11]]],[23,2,2,11,13,[[764,1,1,11,12],[785,1,1,12,13]]],[36,1,1,13,14,[[910,1,1,13,14]]]],[1172,1548,6868,7409,7999,8443,8774,10940,12494,17486,18666,19437,19967,22860]]],["toward",[1,1,[[27,1,1,0,1,[[864,1,1,0,1]]]],[22129]]],["turn",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8420]]],["unto",[16,16,[[0,1,1,0,1,[[31,1,1,0,1]]],[5,2,2,1,3,[[187,1,1,1,2],[208,1,1,2,3]]],[6,1,1,3,4,[[213,1,1,3,4]]],[7,1,1,4,5,[[233,1,1,4,5]]],[8,4,4,5,9,[[237,1,1,5,6],[238,1,1,6,7],[249,1,1,7,8],[263,1,1,8,9]]],[10,1,1,9,10,[[303,1,1,9,10]]],[16,1,1,10,11,[[429,1,1,10,11]]],[17,1,1,11,12,[[475,1,1,11,12]]],[18,1,1,12,13,[[528,1,1,12,13]]],[23,2,2,13,15,[[747,1,1,13,14],[751,1,1,14,15]]],[37,1,1,15,16,[[918,1,1,15,16]]]],[938,5857,6447,6572,7160,7251,7277,7531,7963,9210,12770,13870,14709,19020,19141,22991]]],["up",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7950]]],["upon",[1,1,[[32,1,1,0,1,[[897,1,1,0,1]]]],[22648]]],["us",[20,20,[[0,2,2,0,2,[[40,1,1,0,1],[49,1,1,1,2]]],[4,4,4,2,6,[[157,2,2,2,4],[158,1,1,4,5],[178,1,1,5,6]]],[5,3,3,6,9,[[188,1,1,6,7],[208,1,1,7,8],[210,1,1,8,9]]],[6,3,3,9,12,[[223,1,1,9,10],[224,1,1,10,11],[230,1,1,11,12]]],[8,3,3,12,15,[[241,1,1,12,13],[244,2,2,13,15]]],[11,1,1,15,16,[[319,1,1,15,16]]],[18,1,1,16,17,[[524,1,1,16,17]]],[22,1,1,17,18,[[719,1,1,17,18]]],[23,2,2,18,20,[[782,1,1,18,19],[786,1,1,19,20]]]],[1207,1521,5077,5080,5109,5575,5883,6452,6494,6907,6924,7067,7340,7397,7399,9713,14629,18473,19911,19978]]],["was",[3,3,[[0,1,1,0,1,[[39,1,1,0,1]]],[10,1,1,1,2,[[305,1,1,1,2]]],[11,1,1,2,3,[[333,1,1,2,3]]]],[1192,9254,10134]]],["we",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12365]]],["were",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20129]]],["when",[5,5,[[0,1,1,0,1,[[20,1,1,0,1]]],[3,2,2,1,3,[[120,1,1,1,2],[126,1,1,2,3]]],[8,1,1,3,4,[[253,1,1,3,4]]],[25,1,1,4,5,[[844,1,1,4,5]]]],[518,3763,3995,7695,21599]]],["whether",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1097]]],["wit",[2,2,[[10,1,1,0,1,[[292,1,1,0,1]]],[23,1,1,1,2,[[769,1,1,1,2]]]],[8802,19552]]],["with",[10,10,[[0,2,2,0,2,[[25,1,1,0,1],[41,1,1,1,2]]],[1,2,2,2,4,[[84,1,1,2,3],[88,1,1,3,4]]],[6,1,1,4,5,[[211,1,1,4,5]]],[11,1,1,5,6,[[322,1,1,5,6]]],[13,1,1,6,7,[[395,1,1,6,7]]],[22,1,1,7,8,[[727,1,1,7,8]]],[23,2,2,8,10,[[783,1,1,8,9],[795,1,1,9,10]]]],[700,1278,2543,2701,6527,9806,11809,18662,19932,20240]]],["ye",[22,22,[[0,1,1,0,1,[[28,1,1,0,1]]],[3,2,2,1,3,[[117,1,1,1,2],[148,1,1,2,3]]],[5,1,1,3,4,[[210,1,1,3,4]]],[9,2,2,4,6,[[277,1,1,4,5],[290,1,1,5,6]]],[11,1,1,6,7,[[322,1,1,6,7]]],[12,1,1,7,8,[[359,1,1,7,8]]],[13,1,1,8,9,[[384,1,1,8,9]]],[18,2,2,9,11,[[612,1,1,9,10],[625,1,1,10,11]]],[21,1,1,11,12,[[673,1,1,11,12]]],[22,1,1,12,13,[[714,1,1,12,13]]],[23,6,6,13,19,[[754,1,1,13,14],[755,2,2,14,16],[761,1,1,16,17],[764,1,1,17,18],[766,1,1,18,19]]],[29,1,1,19,20,[[883,1,1,19,20]]],[35,1,1,20,21,[[907,1,1,20,21]]],[38,1,1,21,22,[[927,1,1,21,22]]]],[800,3606,4725,6490,8274,8694,9799,10983,11567,16176,16372,17574,18343,19202,19228,19232,19379,19435,19484,22424,22808,23130]]],["you",[36,36,[[0,4,4,0,4,[[0,1,1,0,1],[8,1,1,1,2],[41,1,1,2,3],[44,1,1,3,4]]],[1,1,1,4,5,[[53,1,1,4,5]]],[2,1,1,5,6,[[114,1,1,5,6]]],[3,1,1,6,7,[[149,1,1,6,7]]],[4,3,3,7,10,[[155,1,1,7,8],[156,1,1,8,9],[157,1,1,9,10]]],[5,7,7,10,17,[[187,1,1,10,11],[188,1,1,11,12],[189,1,1,12,13],[192,1,1,13,14],[206,1,1,14,15],[209,1,1,15,16],[210,1,1,16,17]]],[6,1,1,17,18,[[216,1,1,17,18]]],[10,1,1,18,19,[[291,1,1,18,19]]],[11,2,2,19,21,[[313,1,1,19,20],[319,1,1,20,21]]],[22,1,1,21,22,[[683,1,1,21,22]]],[23,6,6,22,28,[[751,1,1,22,23],[765,1,1,23,24],[767,1,1,24,25],[769,1,1,25,26],[779,1,1,26,27],[788,1,1,27,28]]],[25,2,2,28,30,[[812,1,1,28,29],[819,1,1,29,30]]],[28,3,3,30,33,[[877,3,3,30,33]]],[29,1,1,33,34,[[881,1,1,33,34]]],[38,2,2,34,36,[[927,1,1,34,35],[928,1,1,35,36]]]],[28,208,1286,1376,1616,3507,4813,4993,5017,5058,5864,5878,5903,5965,6374,6475,6498,6663,8750,9540,9719,17744,19144,19448,19486,19538,19838,20014,20672,20880,22330,22334,22336,22397,23130,23143]]]]},{"k":"H854","v":[["*",[995,857,[[0,135,118,0,118,[[3,1,1,0,1],[4,2,2,1,3],[5,5,4,3,7],[6,3,3,7,10],[7,6,5,10,15],[8,8,5,15,20],[10,1,1,20,21],[11,1,1,21,22],[12,1,1,22,23],[13,8,6,23,29],[14,1,1,29,30],[16,8,7,30,37],[18,3,3,37,40],[19,2,1,40,41],[20,2,2,41,43],[21,1,1,43,44],[22,2,2,44,46],[23,4,4,46,50],[24,1,1,50,51],[25,3,3,51,54],[26,2,2,54,56],[27,1,1,56,57],[29,2,2,57,59],[30,1,1,59,60],[31,1,1,60,61],[32,1,1,61,62],[33,9,9,62,71],[34,3,3,71,74],[36,3,1,74,75],[37,1,1,75,76],[38,6,6,76,82],[39,2,2,82,84],[40,1,1,84,85],[41,8,8,85,93],[42,9,7,93,100],[43,8,7,100,107],[44,2,2,107,109],[45,4,3,109,112],[46,1,1,112,113],[48,3,2,113,115],[49,4,3,115,118]]],[1,44,38,118,156,[[50,2,2,118,120],[51,4,2,120,122],[54,1,1,122,123],[55,1,1,123,124],[59,1,1,124,125],[60,2,1,125,126],[61,2,2,126,128],[62,1,1,128,129],[66,1,1,129,130],[67,1,1,130,131],[69,1,1,131,132],[74,4,4,132,136],[76,1,1,136,137],[77,2,2,137,139],[78,4,2,139,141],[79,1,1,141,142],[80,2,2,142,144],[82,1,1,144,145],[83,7,6,145,151],[84,3,3,151,154],[87,1,1,154,155],[89,1,1,155,156]]],[2,38,35,156,191,[[90,1,1,156,157],[95,2,2,157,159],[96,3,2,159,161],[97,4,3,161,164],[99,4,4,164,168],[104,1,1,168,169],[105,3,3,169,172],[107,1,1,172,173],[108,4,4,173,177],[109,7,6,177,183],[113,1,1,183,184],[114,3,3,184,187],[115,3,3,187,190],[116,1,1,190,191]]],[3,60,53,191,244,[[117,2,2,191,193],[119,4,4,193,197],[121,2,2,197,199],[123,3,3,199,202],[124,2,2,202,204],[125,1,1,204,205],[126,1,1,205,206],[127,2,2,206,208],[129,1,1,208,209],[130,1,1,209,210],[131,2,2,210,212],[132,2,2,212,214],[133,2,1,214,215],[134,11,7,215,222],[136,1,1,222,223],[138,2,2,223,225],[139,2,2,225,227],[141,2,2,227,229],[142,2,2,229,231],[143,1,1,231,232],[147,7,6,232,238],[148,3,3,238,241],[151,4,3,241,244]]],[4,26,21,244,265,[[153,1,1,244,245],[154,3,2,245,247],[155,1,1,247,248],[157,3,2,248,250],[160,1,1,250,251],[162,1,1,251,252],[163,1,1,252,253],[164,1,1,253,254],[167,1,1,254,255],[169,1,1,255,256],[170,2,1,256,257],[171,1,1,257,258],[180,1,1,258,259],[181,6,4,259,263],[183,2,2,263,265]]],[5,75,47,265,312,[[188,1,1,265,266],[192,3,3,266,269],[194,2,2,269,271],[196,4,3,271,274],[197,1,1,274,275],[199,1,1,275,276],[200,1,1,276,277],[201,2,2,277,279],[203,1,1,279,280],[207,51,25,280,305],[208,5,4,305,309],[209,1,1,309,310],[210,2,2,310,312]]],[6,36,31,312,343,[[211,9,6,312,318],[212,1,1,318,319],[213,1,1,319,320],[214,2,2,320,322],[217,6,5,322,327],[218,4,3,327,330],[219,4,4,330,334],[222,1,1,334,335],[223,1,1,335,336],[224,1,1,336,337],[226,1,1,337,338],[227,2,2,338,340],[229,2,2,340,342],[230,1,1,342,343]]],[7,7,6,343,349,[[232,2,2,343,345],[233,3,2,345,347],[234,1,1,347,348],[235,1,1,348,349]]],[8,41,39,349,388,[[237,4,4,349,353],[241,2,2,353,355],[242,2,2,355,357],[243,1,1,357,358],[244,2,2,358,360],[247,4,2,360,362],[248,1,1,362,363],[249,2,2,363,365],[251,2,2,365,367],[252,1,1,367,368],[255,1,1,368,369],[256,1,1,369,370],[257,3,3,370,373],[258,1,1,373,374],[259,1,1,374,375],[260,2,2,375,377],[261,2,2,377,379],[263,1,1,379,380],[264,3,3,380,383],[265,4,4,383,387],[266,1,1,387,388]]],[9,58,55,388,443,[[267,2,2,388,390],[269,10,8,390,398],[272,1,1,398,399],[273,2,2,399,401],[276,1,1,401,402],[277,2,2,402,404],[278,1,1,404,405],[279,2,2,405,407],[280,1,1,407,408],[281,9,9,408,417],[282,6,5,417,422],[283,7,7,422,429],[284,1,1,429,430],[285,8,8,430,438],[286,1,1,438,439],[287,2,2,439,441],[290,2,2,441,443]]],[10,46,41,443,484,[[291,3,3,443,446],[292,1,1,446,447],[293,2,2,447,449],[294,1,1,449,450],[296,2,2,450,452],[297,1,1,452,453],[298,2,2,453,455],[299,2,2,455,457],[301,4,4,457,461],[302,6,5,461,466],[303,7,5,466,471],[305,1,1,471,472],[306,1,1,472,473],[308,2,2,473,475],[310,3,3,475,478],[311,1,1,478,479],[312,7,5,479,484]]],[11,62,56,484,540,[[313,2,1,484,485],[314,2,2,485,487],[315,5,5,487,492],[316,4,4,492,496],[317,3,3,496,499],[318,6,5,499,504],[320,4,4,504,508],[321,3,3,508,511],[322,4,3,511,514],[323,2,2,514,516],[324,4,4,516,520],[325,2,2,520,522],[327,3,2,522,524],[328,1,1,524,525],[329,3,3,525,528],[330,2,2,528,530],[331,1,1,530,531],[332,1,1,531,532],[334,2,2,532,534],[335,2,2,534,536],[337,6,4,536,540]]],[12,9,6,540,546,[[339,5,2,540,542],[353,1,1,542,543],[354,1,1,543,544],[357,1,1,544,545],[366,1,1,545,546]]],[13,26,20,546,566,[[372,2,2,546,548],[376,5,3,548,551],[377,1,1,551,552],[379,2,1,552,553],[382,1,1,553,554],[384,7,4,554,558],[388,2,2,558,560],[389,1,1,560,561],[390,1,1,561,562],[395,2,2,562,564],[396,1,1,564,565],[397,1,1,565,566]]],[14,2,2,566,568,[[410,1,1,566,567],[411,1,1,567,568]]],[15,4,4,568,572,[[418,1,1,568,569],[425,3,3,569,572]]],[16,5,5,572,577,[[427,2,2,572,574],[428,1,1,574,575],[432,1,1,575,576],[434,1,1,576,577]]],[17,8,8,577,585,[[437,3,3,577,580],[447,1,1,580,581],[449,1,1,581,582],[454,1,1,582,583],[461,1,1,583,584],[471,1,1,584,585]]],[18,23,23,585,608,[[489,1,1,585,586],[493,1,1,586,587],[498,1,1,587,588],[499,1,1,588,589],[501,1,1,589,590],[504,1,1,590,591],[511,1,1,591,592],[512,1,1,592,593],[515,1,1,593,594],[543,1,1,594,595],[544,1,1,595,596],[551,1,1,596,597],[555,1,1,597,598],[582,1,1,598,599],[586,3,3,599,602],[595,1,1,602,603],[602,1,1,603,604],[604,1,1,604,605],[614,1,1,605,606],[618,1,1,606,607],[620,1,1,607,608]]],[19,25,23,608,631,[[628,2,2,608,610],[629,1,1,610,611],[630,3,3,611,614],[632,1,1,614,615],[634,1,1,615,616],[635,2,2,616,618],[638,1,1,618,619],[640,2,2,619,621],[643,3,2,621,623],[644,1,1,623,624],[649,2,1,624,625],[650,2,2,625,627],[651,1,1,627,628],[652,1,1,628,629],[656,1,1,629,630],[657,1,1,630,631]]],[20,1,1,631,632,[[660,1,1,631,632]]],[21,2,1,632,633,[[674,2,1,632,633]]],[22,50,41,633,674,[[692,1,1,633,634],[697,1,1,634,635],[699,1,1,635,636],[701,1,1,636,637],[706,4,3,637,640],[707,2,2,640,642],[708,1,1,642,643],[712,1,1,643,644],[714,2,2,644,646],[715,1,1,646,647],[716,1,1,647,648],[718,1,1,648,649],[719,1,1,649,650],[721,2,2,650,652],[722,1,1,652,653],[723,2,1,653,654],[727,2,1,654,655],[728,1,1,655,656],[729,1,1,656,657],[731,4,2,657,659],[732,5,3,659,662],[735,2,2,662,664],[737,2,2,664,666],[738,1,1,666,667],[740,1,1,667,668],[741,2,2,668,670],[743,1,1,670,671],[744,5,3,671,674]]],[23,103,89,674,763,[[745,2,2,674,676],[746,3,2,676,678],[747,3,2,678,680],[749,1,1,680,681],[750,2,2,681,683],[751,1,1,683,684],[752,1,1,684,685],[753,2,2,685,687],[754,1,1,687,688],[755,2,2,688,690],[756,4,3,690,693],[757,1,1,693,694],[758,1,1,694,695],[759,2,2,695,697],[760,2,2,697,699],[762,1,1,699,700],[763,1,1,700,701],[764,1,1,701,702],[765,3,3,702,705],[767,5,3,705,708],[768,1,1,708,709],[769,1,1,709,710],[770,3,3,710,713],[771,2,2,713,715],[773,2,2,715,717],[774,2,2,717,719],[775,4,3,719,722],[776,3,3,722,725],[777,4,2,725,727],[778,6,5,727,732],[779,1,1,732,733],[780,1,1,733,734],[781,2,2,734,736],[782,1,1,736,737],[783,1,1,737,738],[784,6,5,738,743],[785,10,7,743,750],[786,2,2,750,752],[787,2,2,752,754],[790,1,1,754,755],[793,1,1,755,756],[794,1,1,756,757],[795,2,2,757,759],[796,5,4,759,763]]],[25,73,60,763,823,[[803,1,1,763,764],[804,4,4,764,768],[807,2,1,768,769],[809,1,1,769,770],[811,2,1,770,771],[815,1,1,771,772],[817,4,4,772,776],[818,3,3,776,779],[821,4,3,779,782],[822,3,2,782,784],[823,1,1,784,785],[824,6,6,785,791],[827,2,1,791,792],[831,2,2,792,794],[832,5,4,794,798],[833,14,10,798,808],[834,3,1,808,809],[835,2,2,809,811],[837,1,1,811,812],[838,2,2,812,814],[839,6,5,814,819],[840,1,1,819,820],[844,1,1,820,821],[848,2,2,821,823]]],[26,2,2,823,825,[[850,1,1,823,824],[860,1,1,824,825]]],[27,3,3,825,828,[[866,1,1,825,826],[868,1,1,826,827],[873,1,1,827,828]]],[28,2,2,828,830,[[877,2,2,828,830]]],[29,1,1,830,831,[[883,1,1,830,831]]],[30,1,1,831,832,[[888,1,1,831,832]]],[31,1,1,832,833,[[892,1,1,832,833]]],[32,4,4,833,837,[[893,1,1,833,834],[895,1,1,834,835],[897,1,1,835,836],[898,1,1,836,837]]],[34,2,2,837,839,[[904,1,1,837,838],[905,1,1,838,839]]],[35,2,2,839,841,[[906,2,2,839,841]]],[36,4,4,841,845,[[909,1,1,841,842],[910,3,3,842,845]]],[37,10,8,845,853,[[911,1,1,845,846],[916,3,1,846,847],[917,2,2,847,849],[918,1,1,849,850],[920,1,1,850,851],[921,1,1,851,852],[924,1,1,852,853]]],[38,4,4,853,857,[[926,3,3,853,856],[927,1,1,856,857]]]],[80,127,129,146,150,155,156,166,172,182,184,191,199,200,201,213,214,215,216,217,297,302,323,338,341,344,345,353,360,378,400,401,416,418,419,420,424,481,490,491,511,531,533,550,579,591,623,631,640,646,668,702,716,723,742,757,777,859,863,898,935,975,985,986,988,989,990,996,1001,1002,1003,1024,1025,1026,1085,1120,1151,1152,1155,1157,1170,1172,1176,1179,1207,1256,1259,1265,1268,1276,1282,1284,1285,1293,1294,1295,1298,1306,1322,1324,1333,1334,1347,1350,1352,1354,1358,1359,1373,1392,1393,1401,1442,1503,1505,1513,1519,1520,1533,1539,1575,1578,1652,1659,1788,1808,1854,1864,1886,1988,2021,2074,2197,2198,2217,2234,2293,2294,2334,2357,2364,2398,2426,2438,2494,2523,2525,2528,2529,2530,2531,2536,2554,2555,2656,2710,2757,2853,2859,2913,2915,2919,2924,2947,2981,2986,2991,2992,3171,3206,3216,3217,3273,3294,3301,3314,3315,3328,3329,3330,3331,3336,3338,3454,3484,3505,3513,3533,3563,3568,3594,3608,3609,3693,3701,3741,3742,3805,3811,3855,3934,3939,3950,3965,3979,4017,4041,4055,4092,4117,4167,4169,4204,4229,4246,4258,4259,4264,4268,4276,4283,4285,4324,4395,4415,4429,4433,4482,4485,4492,4499,4575,4666,4667,4692,4715,4716,4718,4737,4747,4748,4851,4852,4853,4922,4944,4946,4979,5056,5077,5140,5207,5210,5252,5322,5376,5387,5411,5619,5680,5693,5694,5698,5735,5744,5888,5959,5966,5976,6007,6013,6065,6068,6088,6125,6175,6199,6220,6265,6289,6389,6392,6394,6395,6396,6397,6398,6399,6402,6403,6404,6405,6406,6408,6409,6410,6411,6412,6413,6415,6416,6417,6418,6419,6420,6435,6441,6456,6458,6472,6484,6508,6512,6523,6525,6526,6528,6530,6546,6587,6610,6612,6695,6696,6698,6712,6713,6720,6723,6726,6786,6787,6789,6802,6873,6903,6920,6964,6982,6991,7026,7028,7074,7137,7145,7169,7172,7174,7195,7253,7259,7262,7263,7342,7346,7366,7368,7379,7394,7406,7462,7467,7507,7525,7528,7600,7609,7627,7771,7773,7790,7793,7810,7833,7857,7876,7890,7907,7911,7943,7970,7973,7977,7982,7987,7999,8001,8018,8033,8039,8093,8094,8097,8101,8102,8104,8108,8112,8159,8187,8192,8259,8268,8276,8303,8343,8344,8375,8400,8401,8403,8408,8411,8413,8416,8419,8422,8440,8441,8443,8444,8447,8451,8457,8459,8461,8465,8471,8478,8479,8518,8528,8537,8542,8544,8545,8547,8549,8569,8592,8595,8694,8716,8744,8758,8761,8786,8817,8834,8878,8908,8929,8948,8990,9000,9076,9077,9109,9125,9131,9133,9157,9159,9161,9172,9175,9191,9199,9200,9202,9203,9268,9307,9353,9373,9409,9431,9442,9459,9484,9487,9488,9504,9511,9548,9561,9567,9583,9587,9588,9596,9602,9606,9608,9616,9631,9662,9666,9667,9677,9678,9690,9706,9707,9735,9741,9755,9756,9771,9783,9788,9795,9799,9809,9832,9837,9855,9857,9858,9865,9885,9894,9944,9950,9977,9998,10018,10021,10047,10055,10070,10107,10149,10152,10167,10183,10228,10247,10250,10252,10324,10329,10836,10869,10931,11172,11286,11300,11401,11403,11405,11418,11472,11512,11548,11549,11565,11572,11649,11656,11663,11701,11815,11820,11849,11871,12220,12245,12417,12680,12682,12688,12733,12744,12748,12814,12863,12898,12901,12904,13131,13186,13301,13471,13743,14068,14103,14197,14229,14246,14289,14391,14411,14500,14893,14894,15057,15121,15615,15757,15775,15776,15892,16115,16126,16230,16280,16295,16411,16415,16434,16483,16484,16487,16534,16576,16620,16633,16690,16757,16767,16847,16859,16897,17039,17045,17055,17080,17122,17233,17258,17347,17590,17948,18027,18045,18094,18179,18182,18186,18206,18207,18225,18317,18338,18346,18361,18397,18430,18455,18507,18510,18557,18570,18640,18670,18677,18720,18723,18733,18738,18740,18773,18780,18812,18821,18830,18865,18869,18877,18920,18932,18936,18938,18954,18965,18974,19002,19003,19011,19076,19092,19100,19120,19161,19177,19183,19206,19227,19236,19250,19252,19254,19291,19314,19329,19335,19341,19344,19385,19417,19433,19441,19442,19445,19499,19512,19514,19525,19546,19573,19594,19596,19597,19614,19651,19658,19668,19678,19722,19723,19724,19732,19736,19740,19780,19796,19802,19804,19809,19813,19814,19824,19843,19884,19891,19920,19928,19942,19945,19946,19947,19948,19958,19959,19960,19964,19968,19970,19973,19983,19986,20003,20009,20073,20141,20205,20265,20271,20285,20290,20308,20310,20498,20505,20524,20526,20529,20572,20618,20637,20753,20770,20821,20822,20824,20838,20841,20845,20930,20931,20939,20956,20964,20987,21015,21030,21032,21033,21036,21044,21120,21209,21215,21234,21246,21247,21248,21266,21267,21269,21272,21273,21275,21276,21277,21278,21280,21310,21316,21343,21386,21416,21423,21430,21431,21434,21440,21447,21452,21580,21701,21702,21756,22038,22159,22183,22255,22330,22331,22437,22511,22576,22591,22616,22640,22649,22761,22781,22790,22805,22853,22859,22860,22872,22884,22957,22971,22974,22992,23025,23038,23085,23107,23108,23109,23136]]],["+",[183,170,[[0,15,15,0,15,[[7,1,1,0,1],[16,1,1,1,2],[18,1,1,2,3],[22,1,1,3,4],[24,1,1,4,5],[25,1,1,5,6],[26,1,1,6,7],[37,1,1,7,8],[41,1,1,8,9],[42,1,1,9,10],[43,1,1,10,11],[46,1,1,11,12],[48,2,2,12,14],[49,1,1,14,15]]],[1,11,9,15,24,[[54,1,1,15,16],[59,1,1,16,17],[60,2,1,17,18],[74,2,2,18,20],[76,1,1,20,21],[78,2,1,21,22],[79,1,1,22,23],[84,1,1,23,24]]],[2,12,11,24,35,[[95,1,1,24,25],[96,3,2,25,27],[99,1,1,27,28],[105,1,1,28,29],[108,1,1,29,30],[113,1,1,30,31],[114,3,3,31,34],[116,1,1,34,35]]],[3,24,20,35,55,[[119,3,3,35,38],[123,2,2,38,40],[124,1,1,40,41],[127,1,1,41,42],[132,1,1,42,43],[133,2,1,43,44],[134,3,2,44,46],[141,1,1,46,47],[147,7,6,47,53],[148,1,1,53,54],[151,2,1,54,55]]],[4,6,4,55,59,[[154,3,2,55,57],[155,1,1,57,58],[170,2,1,58,59]]],[5,8,7,59,66,[[201,1,1,59,60],[203,1,1,60,61],[207,2,2,61,63],[208,3,2,63,65],[210,1,1,65,66]]],[6,2,2,66,68,[[211,1,1,66,67],[229,1,1,67,68]]],[7,1,1,68,69,[[235,1,1,68,69]]],[8,4,4,69,73,[[237,1,1,69,70],[242,1,1,70,71],[243,1,1,71,72],[251,1,1,72,73]]],[9,3,3,73,76,[[269,1,1,73,74],[287,1,1,74,75],[290,1,1,75,76]]],[10,12,12,76,88,[[291,1,1,76,77],[292,1,1,77,78],[294,1,1,78,79],[296,1,1,79,80],[301,1,1,80,81],[302,1,1,81,82],[306,1,1,82,83],[308,1,1,83,84],[310,1,1,84,85],[312,3,3,85,88]]],[11,18,18,88,106,[[314,1,1,88,89],[315,1,1,89,90],[316,3,3,90,93],[317,3,3,93,96],[318,1,1,96,97],[320,2,2,97,99],[324,3,3,99,102],[328,1,1,102,103],[332,1,1,103,104],[334,1,1,104,105],[337,1,1,105,106]]],[12,1,1,106,107,[[339,1,1,106,107]]],[13,4,4,107,111,[[377,1,1,107,108],[384,3,3,108,111]]],[14,1,1,111,112,[[411,1,1,111,112]]],[15,1,1,112,113,[[418,1,1,112,113]]],[16,1,1,113,114,[[432,1,1,113,114]]],[17,2,2,114,116,[[437,2,2,114,116]]],[18,7,7,116,123,[[499,1,1,116,117],[501,1,1,117,118],[504,1,1,118,119],[543,1,1,119,120],[586,1,1,120,121],[595,1,1,121,122],[614,1,1,122,123]]],[19,2,2,123,125,[[644,1,1,123,124],[657,1,1,124,125]]],[22,8,8,125,133,[[699,1,1,125,126],[706,1,1,126,127],[716,1,1,127,128],[729,1,1,128,129],[732,3,3,129,132],[735,1,1,132,133]]],[23,29,28,133,161,[[746,1,1,133,134],[747,1,1,134,135],[751,1,1,135,136],[753,1,1,136,137],[755,1,1,137,138],[757,1,1,138,139],[760,1,1,139,140],[762,1,1,140,141],[765,1,1,141,142],[767,4,3,142,145],[770,1,1,145,146],[771,1,1,146,147],[774,1,1,147,148],[776,2,2,148,150],[778,3,3,150,153],[779,1,1,153,154],[780,1,1,154,155],[781,1,1,155,156],[784,1,1,156,157],[785,1,1,157,158],[793,1,1,158,159],[795,1,1,159,160],[796,1,1,160,161]]],[25,2,2,161,163,[[834,1,1,161,162],[848,1,1,162,163]]],[30,1,1,163,164,[[888,1,1,163,164]]],[32,2,2,164,166,[[893,1,1,164,165],[897,1,1,165,166]]],[34,1,1,166,167,[[904,1,1,166,167]]],[37,5,3,167,170,[[916,3,1,167,168],[917,1,1,168,169],[924,1,1,169,170]]]],[191,424,481,591,668,723,757,1120,1276,1324,1352,1442,1503,1505,1519,1652,1788,1808,2197,2198,2293,2364,2398,2536,2853,2913,2915,2981,3206,3294,3454,3484,3505,3513,3594,3701,3741,3742,3855,3934,3950,4055,4229,4246,4283,4285,4482,4666,4667,4692,4715,4716,4718,4747,4853,4944,4946,4979,5387,6220,6289,6397,6415,6435,6458,6508,6523,7026,7195,7263,7366,7379,7609,8094,8592,8716,8744,8786,8878,8929,9131,9175,9307,9353,9442,9487,9488,9504,9561,9587,9606,9608,9631,9662,9666,9667,9707,9735,9741,9855,9857,9858,9977,10107,10149,10252,10329,11418,11548,11549,11565,12245,12417,12814,12898,12901,14229,14246,14289,14893,15775,15892,16230,16897,17258,18045,18186,18397,18677,18733,18738,18740,18773,19002,19003,19120,19177,19227,19291,19341,19385,19441,19499,19512,19514,19573,19597,19668,19732,19740,19802,19809,19813,19824,19843,19891,19942,19973,20141,20265,20310,21310,21702,22511,22591,22640,22761,22957,22974,23085]]],["To",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13471]]],["With",[3,3,[[0,2,2,0,2,[[13,1,1,0,1],[43,1,1,1,2]]],[11,1,1,2,3,[[329,1,1,2,3]]]],[345,1333,10018]]],["against",[12,12,[[6,1,1,0,1,[[230,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[11,2,2,2,4,[[320,1,1,2,3],[331,1,1,3,4]]],[13,1,1,4,5,[[390,1,1,4,5]]],[18,1,1,5,6,[[586,1,1,5,6]]],[22,2,2,6,8,[[732,2,2,6,8]]],[23,2,2,8,10,[[765,1,1,8,9],[781,1,1,9,10]]],[25,1,1,10,11,[[839,1,1,10,11]]],[26,1,1,11,12,[[860,1,1,11,12]]]],[7074,9431,9756,10070,11701,15757,18738,18740,19445,19884,21447,22038]]],["among",[8,8,[[2,1,1,0,1,[[105,1,1,0,1]]],[3,2,2,1,3,[[125,1,1,1,2],[151,1,1,2,3]]],[5,1,1,3,4,[[209,1,1,3,4]]],[6,1,1,4,5,[[211,1,1,4,5]]],[8,1,1,5,6,[[266,1,1,5,6]]],[18,1,1,6,7,[[551,1,1,6,7]]],[22,1,1,7,8,[[707,1,1,7,8]]]],[3217,3979,4851,6472,6525,8018,15057,18207]]],["and",[1,1,[[11,1,1,0,1,[[327,1,1,0,1]]]],[9950]]],["before",[3,3,[[4,1,1,0,1,[[169,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]],[32,1,1,2,3,[[898,1,1,2,3]]]],[5376,18225,22649]]],["beside",[2,2,[[10,2,2,0,2,[[299,1,1,0,1],[301,1,1,1,2]]]],[9077,9133]]],["by",[10,10,[[1,1,1,0,1,[[82,1,1,0,1]]],[6,2,2,1,3,[[213,1,1,1,2],[214,1,1,2,3]]],[11,1,1,3,4,[[321,1,1,3,4]]],[19,2,2,4,6,[[630,2,2,4,6]]],[22,1,1,6,7,[[722,1,1,6,7]]],[25,2,2,7,9,[[833,1,1,7,8],[844,1,1,8,9]]],[32,1,1,9,10,[[895,1,1,9,10]]]],[2494,6587,6610,9783,16483,16484,18557,21277,21580,22616]]],["concerning",[1,1,[[25,1,1,0,1,[[815,1,1,0,1]]]],[20753]]],["for",[5,5,[[4,2,2,0,2,[[153,1,1,0,1],[162,1,1,1,2]]],[18,1,1,2,3,[[586,1,1,2,3]]],[23,1,1,3,4,[[769,1,1,3,4]]],[25,1,1,4,5,[[809,1,1,4,5]]]],[4922,5207,15776,19546,20618]]],["from",[2,2,[[0,1,1,0,1,[[3,1,1,0,1]]],[18,1,1,1,2,[[515,1,1,1,2]]]],[80,14500]]],["had",[1,1,[[0,1,1,0,1,[[38,1,1,0,1]]]],[1155]]],["her",[1,1,[[11,1,1,0,1,[[323,1,1,0,1]]]],[9832]]],["in",[10,10,[[0,2,2,0,2,[[20,1,1,0,1],[41,1,1,1,2]]],[8,2,2,2,4,[[242,1,1,2,3],[244,1,1,3,4]]],[18,1,1,4,5,[[493,1,1,4,5]]],[23,2,2,5,7,[[750,1,1,5,6],[754,1,1,6,7]]],[25,1,1,7,8,[[837,1,1,7,8]]],[31,1,1,8,9,[[892,1,1,8,9]]],[36,1,1,9,10,[[910,1,1,9,10]]]],[531,1268,7368,7406,14103,19092,19206,21386,22576,22872]]],["into",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4092]]],["of",[8,7,[[9,1,1,0,1,[[282,1,1,0,1]]],[11,1,1,1,2,[[325,1,1,1,2]]],[12,2,1,2,3,[[339,2,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]],[25,2,2,4,6,[[811,1,1,4,5],[824,1,1,5,6]]],[35,1,1,6,7,[[906,1,1,6,7]]]],[8447,9885,10324,19100,20637,21033,22805]]],["or",[1,1,[[13,1,1,0,1,[[384,1,1,0,1]]]],[11572]]],["side",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9788]]],["thee",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8908]]],["therewith",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22330]]],["throughout",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11849]]],["to",[23,19,[[0,1,1,0,1,[[41,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[7,2,1,2,3,[[233,2,1,2,3]]],[8,2,1,3,4,[[247,2,1,3,4]]],[9,1,1,4,5,[[285,1,1,4,5]]],[11,2,2,5,7,[[330,1,1,5,6],[337,1,1,6,7]]],[12,1,1,7,8,[[354,1,1,7,8]]],[13,2,2,8,10,[[372,1,1,8,9],[397,1,1,9,10]]],[20,1,1,10,11,[[660,1,1,10,11]]],[22,1,1,11,12,[[714,1,1,11,12]]],[23,2,2,12,14,[[753,1,1,12,13],[767,1,1,13,14]]],[25,4,2,14,16,[[822,2,1,14,15],[834,2,1,15,16]]],[37,2,2,16,18,[[917,1,1,16,17],[918,1,1,17,18]]],[38,1,1,18,19,[[927,1,1,18,19]]]],[1282,5698,7169,7467,8537,10047,10250,10869,11286,11871,17347,18338,19183,19512,20964,21310,22971,22992,23136]]],["toward",[4,3,[[22,3,2,0,2,[[707,1,1,0,1],[744,2,1,1,2]]],[23,1,1,2,3,[[756,1,1,2,3]]]],[18206,18936,19252]]],["unto",[8,8,[[0,2,2,0,2,[[16,1,1,0,1],[41,1,1,1,2]]],[10,2,2,2,4,[[298,1,1,2,3],[312,1,1,3,4]]],[13,2,2,4,6,[[376,1,1,4,5],[384,1,1,5,6]]],[23,2,2,6,8,[[784,1,1,6,7],[796,1,1,7,8]]]],[420,1259,9000,9504,11405,11565,19948,20308]]],["upon",[7,7,[[4,1,1,0,1,[[180,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[11,1,1,2,3,[[337,1,1,2,3]]],[18,1,1,3,4,[[544,1,1,3,4]]],[23,2,2,4,6,[[783,1,1,4,5],[796,1,1,5,6]]],[25,1,1,6,7,[[822,1,1,6,7]]]],[5619,9076,10228,14894,19928,20285,20956]]],["with",[695,603,[[0,111,98,0,98,[[4,2,2,0,2],[5,5,4,2,6],[6,3,3,6,9],[7,5,4,9,13],[8,8,5,13,18],[10,1,1,18,19],[11,1,1,19,20],[12,1,1,20,21],[13,7,6,21,27],[14,1,1,27,28],[16,6,6,28,34],[18,2,2,34,36],[19,2,1,36,37],[20,1,1,37,38],[21,1,1,38,39],[22,1,1,39,40],[23,4,4,40,44],[25,2,2,44,46],[26,1,1,46,47],[27,1,1,47,48],[29,2,2,48,50],[30,1,1,50,51],[31,1,1,51,52],[32,1,1,52,53],[33,9,9,53,62],[34,3,3,62,65],[36,3,1,65,66],[38,5,5,66,71],[39,2,2,71,73],[40,1,1,73,74],[41,4,4,74,78],[42,8,6,78,84],[43,6,5,84,89],[44,2,2,89,91],[45,4,3,91,94],[48,1,1,94,95],[49,3,3,95,98]]],[1,32,28,98,126,[[50,2,2,98,100],[51,4,2,100,102],[55,1,1,102,103],[61,2,2,103,105],[62,1,1,105,106],[66,1,1,106,107],[67,1,1,107,108],[69,1,1,108,109],[74,2,2,109,111],[77,2,2,111,113],[78,2,1,113,114],[80,2,2,114,116],[83,7,6,116,122],[84,2,2,122,124],[87,1,1,124,125],[89,1,1,125,126]]],[2,25,23,126,149,[[90,1,1,126,127],[95,1,1,127,128],[97,4,3,128,131],[99,3,3,131,134],[104,1,1,134,135],[105,1,1,135,136],[107,1,1,136,137],[108,3,3,137,140],[109,7,6,140,146],[115,3,3,146,149]]],[3,33,30,149,179,[[117,2,2,149,151],[119,1,1,151,152],[121,2,2,152,154],[123,1,1,154,155],[124,1,1,155,156],[126,1,1,156,157],[127,1,1,157,158],[130,1,1,158,159],[131,2,2,159,161],[132,1,1,161,162],[134,8,5,162,167],[136,1,1,167,168],[138,2,2,168,170],[139,2,2,170,172],[141,1,1,172,173],[142,2,2,173,175],[143,1,1,175,176],[148,2,2,176,178],[151,1,1,178,179]]],[4,15,12,179,191,[[157,3,2,179,181],[160,1,1,181,182],[163,1,1,182,183],[164,1,1,183,184],[167,1,1,184,185],[171,1,1,185,186],[181,5,3,186,189],[183,2,2,189,191]]],[5,66,41,191,232,[[188,1,1,191,192],[192,3,3,192,195],[194,2,2,195,197],[196,4,3,197,200],[197,1,1,200,201],[199,1,1,201,202],[200,1,1,202,203],[201,1,1,203,204],[207,49,25,204,229],[208,2,2,229,231],[210,1,1,231,232]]],[6,30,26,232,258,[[211,7,5,232,237],[212,1,1,237,238],[214,1,1,238,239],[217,6,5,239,244],[218,4,3,244,247],[219,4,4,247,251],[222,1,1,251,252],[223,1,1,252,253],[224,1,1,253,254],[226,1,1,254,255],[227,2,2,255,257],[229,1,1,257,258]]],[7,4,4,258,262,[[232,2,2,258,260],[233,1,1,260,261],[234,1,1,261,262]]],[8,32,32,262,294,[[237,3,3,262,265],[241,2,2,265,267],[244,1,1,267,268],[247,2,2,268,270],[248,1,1,270,271],[249,2,2,271,273],[251,1,1,273,274],[252,1,1,274,275],[255,1,1,275,276],[256,1,1,276,277],[257,3,3,277,280],[258,1,1,280,281],[259,1,1,281,282],[260,2,2,282,284],[261,2,2,284,286],[263,1,1,286,287],[264,3,3,287,290],[265,4,4,290,294]]],[9,53,52,294,346,[[267,2,2,294,296],[269,9,8,296,304],[272,1,1,304,305],[273,2,2,305,307],[276,1,1,307,308],[277,2,2,308,310],[278,1,1,310,311],[279,2,2,311,313],[280,1,1,313,314],[281,9,9,314,323],[282,5,5,323,328],[283,7,7,328,335],[284,1,1,335,336],[285,7,7,336,343],[286,1,1,343,344],[287,1,1,344,345],[290,1,1,345,346]]],[10,27,23,346,369,[[291,2,2,346,348],[293,2,2,348,350],[297,1,1,350,351],[298,1,1,351,352],[301,2,2,352,354],[302,5,4,354,358],[303,7,5,358,363],[305,1,1,363,364],[308,1,1,364,365],[310,1,1,365,366],[311,1,1,366,367],[312,3,2,367,369]]],[11,33,29,369,398,[[313,2,1,369,370],[314,1,1,370,371],[315,4,4,371,375],[316,1,1,375,376],[318,5,4,376,380],[320,1,1,380,381],[321,1,1,381,382],[322,4,3,382,385],[323,1,1,385,386],[324,1,1,386,387],[325,1,1,387,388],[327,2,2,388,390],[329,2,2,390,392],[330,1,1,392,393],[334,1,1,393,394],[335,2,2,394,396],[337,3,2,396,398]]],[12,5,4,398,402,[[339,2,1,398,399],[353,1,1,399,400],[357,1,1,400,401],[366,1,1,401,402]]],[13,15,12,402,414,[[372,1,1,402,403],[376,4,3,403,406],[379,2,1,406,407],[382,1,1,407,408],[384,2,1,408,409],[388,2,2,409,411],[389,1,1,411,412],[395,2,2,412,414]]],[14,1,1,414,415,[[410,1,1,414,415]]],[15,3,3,415,418,[[425,3,3,415,418]]],[16,4,4,418,422,[[427,2,2,418,420],[428,1,1,420,421],[434,1,1,421,422]]],[17,4,4,422,426,[[437,1,1,422,423],[449,1,1,423,424],[454,1,1,424,425],[471,1,1,425,426]]],[18,10,10,426,436,[[489,1,1,426,427],[498,1,1,427,428],[511,1,1,428,429],[512,1,1,429,430],[555,1,1,430,431],[582,1,1,431,432],[602,1,1,432,433],[604,1,1,433,434],[618,1,1,434,435],[620,1,1,435,436]]],[19,21,19,436,455,[[628,2,2,436,438],[629,1,1,438,439],[630,1,1,439,440],[632,1,1,440,441],[634,1,1,441,442],[635,2,2,442,444],[638,1,1,444,445],[640,2,2,445,447],[643,3,2,447,449],[649,2,1,449,450],[650,2,2,450,452],[651,1,1,452,453],[652,1,1,453,454],[656,1,1,454,455]]],[21,2,1,455,456,[[674,2,1,455,456]]],[22,33,27,456,483,[[692,1,1,456,457],[697,1,1,457,458],[701,1,1,458,459],[706,3,2,459,461],[712,1,1,461,462],[714,1,1,462,463],[715,1,1,463,464],[718,1,1,464,465],[719,1,1,465,466],[721,2,2,466,468],[723,2,1,468,469],[727,2,1,469,470],[728,1,1,470,471],[731,4,2,471,473],[735,1,1,473,474],[737,2,2,474,476],[738,1,1,476,477],[740,1,1,477,478],[741,2,2,478,480],[743,1,1,480,481],[744,3,2,481,483]]],[23,61,52,483,535,[[745,2,2,483,485],[746,2,1,485,486],[747,2,1,486,487],[749,1,1,487,488],[752,1,1,488,489],[755,1,1,489,490],[756,3,2,490,492],[758,1,1,492,493],[759,2,2,493,495],[760,1,1,495,496],[763,1,1,496,497],[764,1,1,497,498],[765,1,1,498,499],[768,1,1,499,500],[770,2,2,500,502],[771,1,1,502,503],[773,2,2,503,505],[774,1,1,505,506],[775,4,3,506,509],[776,1,1,509,510],[777,4,2,510,512],[778,3,3,512,515],[782,1,1,515,516],[784,4,3,516,519],[785,9,7,519,526],[786,2,2,526,528],[787,2,2,528,530],[790,1,1,530,531],[794,1,1,531,532],[795,1,1,532,533],[796,2,2,533,535]]],[25,58,51,535,586,[[803,1,1,535,536],[804,4,4,536,540],[807,2,1,540,541],[811,1,1,541,542],[817,4,4,542,546],[818,3,3,546,549],[821,4,3,549,552],[823,1,1,552,553],[824,5,5,553,558],[827,2,1,558,559],[831,2,2,559,561],[832,5,4,561,565],[833,13,10,565,575],[835,2,2,575,577],[838,2,2,577,579],[839,5,5,579,584],[840,1,1,584,585],[848,1,1,585,586]]],[26,1,1,586,587,[[850,1,1,586,587]]],[27,3,3,587,590,[[866,1,1,587,588],[868,1,1,588,589],[873,1,1,589,590]]],[28,1,1,590,591,[[877,1,1,590,591]]],[29,1,1,591,592,[[883,1,1,591,592]]],[34,1,1,592,593,[[905,1,1,592,593]]],[35,1,1,593,594,[[906,1,1,593,594]]],[36,3,3,594,597,[[909,1,1,594,595],[910,2,2,595,597]]],[37,3,3,597,600,[[911,1,1,597,598],[920,1,1,598,599],[921,1,1,599,600]]],[38,3,3,600,603,[[926,3,3,600,603]]]],[127,129,146,150,155,156,166,172,182,184,199,200,201,213,214,215,216,217,297,302,323,338,341,344,345,353,360,378,400,401,416,418,419,424,490,491,511,533,550,579,623,631,640,646,702,716,742,777,859,863,898,935,975,985,986,988,989,990,996,1001,1002,1003,1024,1025,1026,1085,1151,1152,1157,1170,1172,1176,1179,1207,1256,1265,1284,1285,1293,1294,1295,1298,1306,1322,1334,1347,1350,1354,1358,1359,1373,1392,1393,1401,1503,1513,1519,1520,1533,1539,1575,1578,1659,1854,1864,1886,1988,2021,2074,2217,2234,2294,2334,2357,2426,2438,2523,2525,2528,2529,2530,2531,2554,2555,2656,2710,2757,2859,2919,2924,2947,2986,2991,2992,3171,3216,3273,3301,3314,3315,3328,3329,3330,3331,3336,3338,3533,3563,3568,3608,3609,3693,3805,3811,3939,3965,4017,4041,4117,4167,4169,4204,4258,4259,4264,4268,4276,4324,4395,4415,4429,4433,4485,4492,4499,4575,4737,4748,4852,5056,5077,5140,5210,5252,5322,5411,5680,5693,5694,5735,5744,5888,5959,5966,5976,6007,6013,6065,6068,6088,6125,6175,6199,6265,6389,6392,6394,6395,6396,6397,6398,6399,6402,6403,6404,6405,6406,6408,6409,6410,6411,6412,6413,6415,6416,6417,6418,6419,6420,6441,6456,6484,6512,6525,6526,6528,6530,6546,6612,6695,6696,6698,6712,6713,6720,6723,6726,6786,6787,6789,6802,6873,6903,6920,6964,6982,6991,7028,7137,7145,7172,7174,7253,7259,7262,7342,7346,7394,7462,7467,7507,7525,7528,7600,7627,7771,7773,7790,7793,7810,7833,7857,7876,7890,7907,7911,7943,7970,7973,7977,7982,7987,7999,8001,8033,8039,8093,8094,8097,8101,8102,8104,8108,8112,8159,8187,8192,8259,8268,8276,8303,8343,8344,8375,8400,8401,8403,8408,8411,8413,8416,8419,8422,8440,8441,8443,8444,8447,8451,8457,8459,8461,8465,8471,8478,8479,8518,8528,8542,8544,8545,8547,8549,8569,8595,8694,8758,8761,8817,8834,8948,8990,9109,9125,9157,9159,9161,9172,9191,9199,9200,9202,9203,9268,9373,9409,9459,9484,9511,9548,9567,9583,9588,9596,9602,9616,9677,9678,9690,9706,9755,9771,9795,9799,9809,9837,9865,9894,9944,9950,9998,10021,10055,10152,10167,10183,10247,10250,10329,10836,10931,11172,11300,11401,11403,11405,11472,11512,11572,11649,11656,11663,11815,11820,12220,12680,12682,12688,12733,12744,12748,12863,12904,13186,13301,13743,14068,14197,14391,14411,15121,15615,16115,16126,16280,16295,16411,16415,16434,16487,16534,16576,16620,16633,16690,16757,16767,16847,16859,17039,17045,17055,17080,17122,17233,17590,17948,18027,18094,18179,18182,18317,18346,18361,18430,18455,18507,18510,18570,18640,18670,18720,18723,18780,18812,18821,18830,18865,18869,18877,18920,18932,18938,18954,18965,18974,19011,19076,19161,19236,19250,19254,19314,19329,19335,19344,19417,19433,19442,19525,19594,19596,19614,19651,19658,19678,19722,19723,19724,19736,19780,19796,19804,19809,19814,19920,19945,19946,19947,19958,19959,19960,19964,19968,19970,19973,19983,19986,20003,20009,20073,20205,20271,20290,20308,20498,20505,20524,20526,20529,20572,20637,20770,20821,20822,20824,20838,20841,20845,20930,20931,20939,20987,21015,21030,21032,21036,21044,21120,21209,21215,21234,21246,21247,21248,21266,21267,21269,21272,21273,21275,21276,21277,21278,21280,21316,21343,21416,21423,21430,21431,21434,21440,21447,21452,21701,21756,22159,22183,22255,22331,22437,22781,22790,22853,22859,22860,22884,23025,23038,23107,23108,23109]]],["yea",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13131]]]]},{"k":"H855","v":[["*",[5,5,[[8,2,2,0,2,[[248,2,2,0,2]]],[22,1,1,2,3,[[680,1,1,2,3]]],[28,1,1,3,4,[[878,1,1,3,4]]],[32,1,1,4,5,[[896,1,1,4,5]]]],[7505,7506,17689,22353,22623]]],["coulter",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7505]]],["coulters",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7506]]],["plowshares",[3,3,[[22,1,1,0,1,[[680,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]],[32,1,1,2,3,[[896,1,1,2,3]]]],[17689,22353,22623]]]]},{"k":"H856","v":[["Ethbaal",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9314]]]]},{"k":"H857","v":[["*",[21,20,[[4,2,2,0,2,[[185,2,2,0,2]]],[17,4,4,2,6,[[438,1,1,2,3],[451,1,1,3,4],[465,1,1,4,5],[472,1,1,5,6]]],[18,1,1,6,7,[[545,1,1,6,7]]],[19,1,1,7,8,[[628,1,1,7,8]]],[22,10,9,8,17,[[699,3,2,8,10],[719,3,3,10,13],[722,1,1,13,14],[723,1,1,14,15],[734,2,2,15,17]]],[23,2,2,17,19,[[747,1,1,17,18],[756,1,1,18,19]]],[32,1,1,19,20,[[896,1,1,19,20]]]],[5812,5831,12929,13260,13571,13791,14931,16427,18047,18049,18456,18474,18476,18540,18572,18762,18765,19024,19258,22628]]],["Come",[1,1,[[22,1,1,0,1,[[734,1,1,0,1]]]],[18765]]],["brought",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18049]]],["came",[4,4,[[4,2,2,0,2,[[185,2,2,0,2]]],[17,1,1,2,3,[[465,1,1,2,3]]],[22,1,1,3,4,[[719,1,1,3,4]]]],[5812,5831,13571,18456]]],["come",[9,9,[[17,1,1,0,1,[[451,1,1,0,1]]],[22,5,5,1,6,[[699,1,1,1,2],[719,2,2,2,4],[723,1,1,4,5],[734,1,1,5,6]]],[23,2,2,6,8,[[747,1,1,6,7],[756,1,1,7,8]]],[32,1,1,8,9,[[896,1,1,8,9]]]],[13260,18047,18474,18476,18572,18762,19024,19258,22628]]],["cometh",[3,3,[[17,1,1,0,1,[[472,1,1,0,1]]],[19,1,1,1,2,[[628,1,1,1,2]]],[22,1,1,2,3,[[699,1,1,2,3]]]],[13791,16427,18047]]],["coming",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18540]]],["out",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14931]]],["upon",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12929]]]]},{"k":"H858","v":[["*",[16,15,[[14,3,3,0,3,[[406,1,1,0,1],[407,2,2,1,3]]],[26,13,12,3,15,[[852,4,3,3,6],[854,4,4,6,10],[855,3,3,10,13],[856,2,2,13,15]]]],[12122,12137,12150,21809,21820,21833,21876,21877,21887,21897,21921,21922,21929,21946,21955]]],["+",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21946]]],["bring",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[854,1,1,1,2]]]],[21820,21876]]],["brought",[6,6,[[26,6,6,0,6,[[852,1,1,0,1],[854,2,2,1,3],[855,3,3,3,6]]]],[21820,21877,21897,21921,21922,21929]]],["came",[3,3,[[14,2,2,0,2,[[407,2,2,0,2]]],[26,1,1,2,3,[[856,1,1,2,3]]]],[12137,12150,21955]]],["come",[3,3,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,2,2,1,3,[[852,2,2,1,3]]]],[12122,21809,21833]]],["out",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21887]]]]},{"k":"H859","v":[["*",[1086,995,[[0,70,66,0,66,[[2,4,4,0,4],[3,2,2,4,6],[5,2,2,6,8],[6,1,1,8,9],[7,1,1,9,10],[8,1,1,10,11],[11,2,2,11,13],[12,2,2,13,15],[14,1,1,15,16],[15,1,1,16,17],[16,2,1,17,18],[19,1,1,18,19],[20,2,2,19,21],[21,1,1,21,22],[22,2,2,22,24],[23,4,4,24,28],[25,2,2,28,30],[26,4,4,30,34],[27,1,1,34,35],[28,3,3,35,38],[29,2,2,38,40],[30,4,4,40,44],[31,2,2,44,46],[37,1,1,46,47],[38,1,1,47,48],[40,1,1,48,49],[41,9,6,49,55],[42,1,1,55,56],[43,3,3,56,59],[44,4,4,59,63],[48,2,2,63,65],[49,1,1,65,66]]],[1,55,50,66,116,[[51,1,1,66,67],[52,2,2,67,69],[53,2,2,69,71],[54,3,2,71,73],[56,1,1,73,74],[57,1,1,74,75],[58,2,2,75,77],[59,3,3,77,80],[60,1,1,80,81],[61,3,3,81,84],[62,1,1,84,85],[63,2,2,85,87],[65,1,1,87,88],[67,7,5,88,93],[68,4,4,93,97],[69,3,3,97,100],[72,1,1,100,101],[73,1,1,101,102],[74,1,1,102,103],[76,1,1,103,104],[77,2,2,104,106],[79,1,1,106,107],[80,1,1,107,108],[81,2,2,108,110],[82,6,4,110,114],[83,2,2,114,116]]],[2,7,7,116,123,[[99,2,2,116,118],[107,1,1,118,119],[109,1,1,119,120],[114,1,1,120,121],[115,2,2,121,123]]],[3,42,37,123,160,[[117,2,2,123,125],[121,1,1,125,126],[127,4,4,126,130],[130,7,5,130,135],[131,1,1,135,136],[132,5,4,136,140],[134,7,6,140,146],[136,2,2,146,148],[138,2,2,148,150],[143,1,1,150,151],[147,3,2,151,153],[148,1,1,153,154],[149,2,2,154,156],[150,1,1,156,157],[151,3,3,157,160]]],[4,91,81,160,241,[[153,2,2,160,162],[154,2,2,162,164],[155,2,2,164,166],[156,8,8,166,174],[157,4,3,174,177],[158,2,2,177,179],[159,4,4,179,183],[161,5,4,183,187],[163,5,5,187,192],[164,6,6,192,198],[165,1,1,198,199],[166,4,4,199,203],[167,2,2,203,205],[168,2,2,205,207],[170,3,2,207,209],[172,1,1,209,210],[173,1,1,210,211],[175,1,1,211,212],[176,1,1,212,213],[177,1,1,213,214],[178,1,1,214,215],[180,17,12,215,227],[181,3,3,227,230],[182,5,5,230,235],[183,5,3,235,238],[184,2,2,238,240],[185,1,1,240,241]]],[5,35,33,241,274,[[187,4,4,241,245],[188,1,1,245,246],[189,2,2,246,248],[191,2,2,248,250],[192,1,1,250,251],[193,1,1,251,252],[194,2,2,252,254],[195,4,4,254,258],[196,2,2,258,260],[199,1,1,260,261],[200,2,2,261,263],[203,2,2,263,265],[204,2,2,265,267],[208,3,2,267,269],[209,2,2,269,271],[210,4,3,271,274]]],[6,42,40,274,314,[[212,1,1,274,275],[214,2,2,275,277],[216,4,3,277,280],[217,3,2,280,282],[218,2,2,282,284],[219,7,7,284,291],[220,2,2,291,293],[221,7,7,293,300],[222,2,2,300,302],[223,2,2,302,304],[224,2,2,304,306],[225,2,2,306,308],[227,1,1,308,309],[228,4,4,309,313],[231,1,1,313,314]]],[7,7,6,314,320,[[234,4,3,314,317],[235,3,3,317,320]]],[8,57,52,320,372,[[242,1,1,320,321],[243,2,2,321,323],[244,1,1,323,324],[245,1,1,324,325],[247,3,3,325,328],[248,1,1,328,329],[249,1,1,329,330],[250,4,3,330,333],[251,1,1,333,334],[252,6,6,334,340],[254,2,2,340,342],[255,4,4,342,346],[256,1,1,346,347],[257,4,4,347,351],[258,2,2,351,353],[259,5,4,353,357],[260,2,2,357,359],[261,4,4,359,363],[263,7,6,363,369],[264,3,2,369,371],[265,2,1,371,372]]],[9,47,43,372,415,[[267,2,2,372,374],[268,2,2,374,376],[269,1,1,376,377],[271,3,1,377,378],[273,6,6,378,384],[275,3,3,384,387],[277,1,1,387,388],[278,2,2,388,390],[279,2,2,390,392],[281,4,3,392,395],[282,1,1,395,396],[283,3,3,396,399],[284,3,3,399,402],[285,7,6,402,408],[286,5,5,408,413],[287,1,1,413,414],[288,1,1,414,415]]],[10,57,54,415,469,[[291,5,5,415,420],[292,6,6,420,426],[293,2,2,426,428],[295,4,3,428,431],[296,1,1,431,432],[298,9,8,432,440],[299,2,2,440,442],[301,1,1,442,443],[302,4,4,443,447],[303,1,1,447,448],[304,3,3,448,451],[307,1,1,451,452],[308,11,10,452,462],[310,3,3,462,465],[311,3,3,465,468],[312,1,1,468,469]]],[11,23,20,469,489,[[313,2,2,469,471],[315,1,1,471,472],[316,4,4,472,476],[318,1,1,476,477],[320,1,1,477,478],[321,2,2,478,480],[322,4,3,480,483],[326,1,1,483,484],[331,6,4,484,488],[332,1,1,488,489]]],[12,17,14,489,503,[[348,3,1,489,490],[352,3,2,490,492],[354,6,6,492,498],[365,2,2,498,500],[366,3,3,500,503]]],[13,41,37,503,540,[[367,2,2,503,505],[368,1,1,505,506],[372,9,8,506,514],[373,2,2,514,516],[376,3,3,516,519],[378,1,1,519,520],[379,3,2,520,522],[380,1,1,522,523],[381,1,1,523,524],[384,1,1,524,525],[385,1,1,525,526],[386,4,3,526,529],[387,1,1,529,530],[390,2,2,530,532],[391,2,2,532,534],[394,3,2,534,536],[395,1,1,536,537],[396,1,1,537,538],[398,1,1,538,539],[401,1,1,539,540]]],[14,5,5,540,545,[[410,1,1,540,541],[411,3,3,541,544],[412,1,1,544,545]]],[15,30,24,545,569,[[413,1,1,545,546],[414,5,4,546,550],[417,5,5,550,555],[418,5,2,555,557],[421,11,9,557,566],[425,3,3,566,569]]],[16,3,3,569,572,[[428,1,1,569,570],[429,1,1,570,571],[433,1,1,571,572]]],[17,15,15,572,587,[[436,1,1,572,573],[440,1,1,573,574],[443,2,2,574,576],[446,2,2,576,578],[447,1,1,578,579],[448,1,1,579,580],[450,1,1,580,581],[452,1,1,581,582],[454,1,1,582,583],[462,1,1,583,584],[467,1,1,584,585],[469,2,2,585,587]]],[18,119,112,587,699,[[479,1,1,587,588],[480,1,1,588,589],[481,1,1,589,590],[482,2,2,590,592],[483,1,1,592,593],[487,2,1,593,594],[489,1,1,594,595],[493,2,2,595,597],[495,2,2,597,599],[499,4,4,599,603],[500,1,1,603,604],[502,2,2,604,606],[508,3,3,606,609],[509,2,2,609,611],[515,1,1,611,612],[516,1,1,612,613],[517,4,4,613,617],[518,1,1,617,618],[520,1,1,618,619],[521,2,2,619,621],[527,1,1,621,622],[532,2,2,622,624],[533,1,1,624,625],[536,2,2,625,627],[537,1,1,627,628],[538,1,1,628,629],[539,1,1,629,630],[540,1,1,630,631],[542,1,1,631,632],[545,1,1,632,633],[546,3,3,633,636],[547,1,1,636,637],[548,4,4,637,641],[551,7,5,641,646],[553,3,2,646,648],[554,1,1,648,649],[559,2,2,649,651],[560,1,1,651,652],[562,1,1,652,653],[563,6,5,653,658],[566,8,7,658,665],[567,2,2,665,667],[568,1,1,667,668],[569,1,1,668,669],[570,1,1,669,670],[574,1,1,670,671],[576,3,2,671,673],[579,4,4,673,677],[586,3,3,677,680],[587,1,1,680,681],[592,1,1,681,682],[595,1,1,682,683],[596,7,7,683,690],[609,1,1,690,691],[616,3,3,691,694],[617,1,1,694,695],[619,2,2,695,697],[620,1,1,697,698],[622,1,1,698,699]]],[19,9,9,699,708,[[634,1,1,699,700],[649,1,1,700,701],[650,3,3,701,704],[651,1,1,704,705],[652,1,1,705,706],[653,1,1,706,707],[658,1,1,707,708]]],[20,4,4,708,712,[[663,1,1,708,709],[665,1,1,709,710],[667,2,2,710,712]]],[21,1,1,712,713,[[676,1,1,712,713]]],[22,52,45,713,758,[[681,1,1,713,714],[685,2,2,714,716],[692,3,3,716,719],[703,1,1,719,720],[705,1,1,720,721],[711,1,1,721,722],[715,6,4,722,726],[716,2,2,726,728],[719,5,5,728,733],[720,1,1,733,734],[721,4,4,734,738],[722,4,3,738,741],[723,1,1,741,742],[726,2,2,742,744],[727,1,1,744,745],[729,4,4,745,749],[735,2,2,749,751],[739,1,1,751,752],[741,2,1,752,753],[742,3,2,753,755],[743,5,3,755,758]]],[23,103,98,758,856,[[745,3,3,758,761],[746,4,3,761,764],[747,3,3,764,767],[748,1,1,767,768],[749,1,1,768,769],[751,4,4,769,773],[754,1,1,773,774],[755,1,1,774,775],[756,4,4,775,779],[757,2,2,779,781],[758,3,2,781,783],[759,3,3,783,786],[760,2,2,786,788],[761,3,3,788,791],[762,2,2,791,793],[764,2,1,793,794],[765,1,1,794,795],[766,4,4,795,799],[767,1,1,799,800],[768,1,1,800,801],[769,2,2,801,803],[770,2,1,803,804],[771,3,3,804,807],[772,2,2,807,809],[773,3,3,809,812],[774,1,1,812,813],[775,1,1,813,814],[776,5,5,814,819],[777,1,1,819,820],[778,3,3,820,823],[779,2,2,823,825],[780,3,3,825,828],[781,1,1,828,829],[782,4,4,829,833],[783,1,1,833,834],[784,2,2,834,836],[786,6,5,836,841],[787,1,1,841,842],[788,6,6,842,848],[789,1,1,848,849],[790,2,2,849,851],[792,1,1,851,852],[793,1,1,852,853],[794,1,1,853,854],[795,2,2,854,856]]],[24,3,3,856,859,[[797,1,1,856,857],[799,1,1,857,858],[801,1,1,858,859]]],[25,91,82,859,941,[[803,3,2,859,861],[804,6,4,861,865],[805,5,4,865,869],[806,1,1,869,870],[808,1,1,870,871],[809,1,1,871,872],[810,1,1,872,873],[812,2,2,873,875],[813,4,4,875,879],[814,4,3,879,882],[817,9,7,882,889],[819,1,1,889,890],[820,1,1,890,891],[821,7,6,891,897],[822,6,6,897,903],[823,2,2,903,905],[824,1,1,905,906],[825,2,2,906,908],[828,2,2,908,910],[829,6,6,910,916],[833,2,2,916,918],[834,6,5,918,923],[835,2,2,923,925],[836,1,1,925,926],[837,3,3,926,929],[838,2,2,929,931],[839,5,5,931,936],[840,3,3,936,939],[841,1,1,939,940],[844,1,1,940,941]]],[26,4,4,941,945,[[857,1,1,941,942],[858,1,1,942,943],[861,2,2,943,945]]],[27,6,6,945,951,[[862,2,2,945,947],[863,1,1,947,948],[865,2,2,948,950],[873,1,1,950,951]]],[28,3,1,951,952,[[878,3,1,951,952]]],[29,5,5,952,957,[[885,3,3,952,955],[886,1,1,955,956],[887,1,1,956,957]]],[30,3,3,957,960,[[888,3,3,957,960]]],[31,4,4,960,964,[[889,2,2,960,962],[892,2,2,962,964]]],[32,5,4,964,968,[[896,1,1,964,965],[897,1,1,965,966],[898,3,2,966,968]]],[33,2,1,968,969,[[902,2,1,968,969]]],[34,3,3,969,972,[[903,1,1,969,970],[904,2,2,970,972]]],[35,1,1,972,973,[[907,1,1,972,973]]],[36,3,3,973,976,[[909,2,2,973,975],[910,1,1,975,976]]],[37,10,10,976,986,[[911,1,1,976,977],[912,1,1,977,978],[913,2,2,978,980],[914,2,2,980,982],[915,1,1,982,983],[916,1,1,983,984],[917,1,1,984,985],[919,1,1,985,986]]],[38,11,9,986,995,[[925,2,2,986,988],[926,2,2,988,990],[927,7,5,990,995]]]],[66,69,70,74,86,90,155,158,160,199,212,309,311,332,333,375,394,406,502,535,539,559,577,584,614,635,638,651,719,721,745,748,751,759,786,799,809,810,856,859,879,916,917,925,940,945,1142,1158,1235,1261,1266,1268,1271,1285,1286,1298,1334,1341,1351,1366,1368,1369,1377,1476,1481,1526,1568,1584,1597,1617,1626,1643,1649,1687,1712,1744,1772,1781,1788,1802,1814,1829,1838,1847,1871,1903,1905,1955,2013,2016,2017,2018,2020,2030,2032,2049,2050,2061,2070,2073,2153,2178,2235,2292,2294,2296,2405,2433,2460,2468,2474,2476,2478,2485,2506,2508,2986,2991,3277,3342,3492,3536,3558,3607,3654,3812,4039,4041,4045,4053,4117,4122,4138,4140,4149,4192,4205,4210,4211,4235,4258,4259,4260,4264,4285,4288,4319,4325,4394,4409,4567,4683,4690,4724,4811,4815,4818,4855,4878,4879,4929,4932,4942,4956,4996,4999,5008,5009,5016,5018,5026,5030,5037,5039,5067,5080,5084,5087,5088,5112,5117,5118,5130,5158,5159,5162,5163,5216,5218,5219,5237,5239,5241,5242,5247,5252,5258,5269,5278,5291,5292,5311,5316,5325,5339,5353,5356,5393,5398,5430,5456,5520,5536,5565,5577,5614,5617,5623,5627,5630,5632,5647,5654,5655,5663,5674,5675,5681,5689,5695,5710,5716,5724,5726,5727,5735,5741,5751,5805,5808,5839,5853,5857,5862,5865,5881,5896,5901,5947,5949,5967,5986,6006,6009,6044,6045,6059,6060,6083,6089,6155,6193,6199,6290,6292,6296,6299,6428,6444,6463,6469,6489,6491,6498,6547,6608,6621,6664,6671,6685,6704,6712,6740,6741,6764,6766,6768,6769,6772,6786,6790,6824,6826,6831,6836,6838,6852,6854,6856,6864,6873,6874,6887,6895,6912,6922,6941,6947,6982,6996,7001,7002,7011,7124,7181,7182,7188,7196,7199,7200,7355,7374,7386,7418,7437,7474,7480,7485,7496,7548,7566,7573,7577,7596,7626,7651,7661,7663,7674,7676,7709,7717,7738,7753,7760,7761,7773,7800,7803,7805,7810,7827,7831,7850,7853,7856,7857,7867,7894,7919,7920,7921,7930,7943,7944,7951,7954,7961,7964,7973,7976,7991,8030,8035,8054,8069,8106,8134,8185,8200,8204,8207,8208,8209,8229,8234,8237,8269,8293,8298,8321,8330,8391,8408,8416,8434,8452,8455,8457,8491,8498,8500,8521,8523,8524,8525,8540,8544,8558,8560,8563,8571,8573,8584,8631,8730,8734,8737,8741,8759,8775,8779,8785,8792,8796,8814,8822,8823,8881,8884,8887,8908,9004,9015,9017,9019,9021,9024,9028,9038,9055,9057,9130,9155,9157,9160,9161,9198,9220,9224,9230,9341,9348,9350,9352,9355,9358,9359,9362,9366,9377,9378,9422,9433,9448,9457,9458,9470,9510,9536,9539,9593,9604,9610,9619,9626,9696,9728,9767,9781,9799,9802,9806,9906,10071,10072,10076,10080,10099,10675,10803,10804,10867,10881,10885,10888,10889,10890,11146,11152,11174,11176,11181,11202,11203,11227,11291,11303,11305,11307,11309,11312,11315,11323,11341,11343,11401,11404,11405,11442,11461,11464,11486,11497,11571,11582,11593,11594,11602,11639,11682,11697,11712,11723,11774,11777,11799,11834,11885,11987,12229,12248,12250,12252,12262,12304,12309,12311,12324,12326,12389,12390,12391,12393,12394,12407,12409,12517,12518,12519,12528,12530,12538,12539,12542,12544,12688,12689,12692,12750,12776,12825,12879,12978,13034,13035,13121,13124,13130,13157,13207,13274,13318,13493,13634,13715,13716,13952,13960,13973,13977,13985,13988,14055,14073,14094,14097,14145,14146,14207,14213,14214,14223,14239,14256,14258,14334,14335,14345,14360,14362,14505,14521,14530,14534,14536,14542,14552,14568,14573,14575,14685,14745,14755,14763,14795,14798,14817,14824,14839,14840,14863,14909,14940,14954,14961,14976,14979,14981,14982,14983,15061,15062,15063,15064,15065,15085,15088,15107,15239,15241,15259,15277,15286,15289,15294,15299,15301,15335,15336,15337,15338,15343,15352,15364,15379,15380,15404,15419,15428,15487,15503,15507,15533,15534,15547,15548,15776,15782,15783,15790,15845,15897,15902,15910,15966,16000,16012,16035,16049,16159,16241,16247,16252,16269,16289,16291,16303,16335,16579,17034,17046,17058,17063,17103,17135,17145,17313,17399,17451,17484,17485,17618,17721,17785,17798,17938,17941,17947,18119,18163,18280,18362,18363,18368,18372,18391,18407,18459,18460,18467,18474,18475,18497,18506,18515,18517,18531,18541,18550,18554,18576,18618,18620,18639,18682,18683,18685,18689,18768,18769,18849,18882,18890,18893,18908,18910,18911,18957,18959,18963,18985,18992,18996,19003,19006,19024,19057,19075,19127,19133,19135,19142,19207,19240,19250,19251,19252,19254,19287,19289,19302,19315,19321,19330,19334,19348,19349,19371,19373,19374,19390,19407,19428,19444,19456,19460,19469,19479,19486,19527,19563,19564,19587,19605,19609,19611,19633,19634,19643,19655,19660,19677,19709,19734,19748,19756,19767,19774,19785,19804,19816,19818,19829,19830,19848,19861,19871,19887,19912,19913,19916,19918,19940,19951,19957,19986,19988,19990,19991,19995,19999,20012,20013,20017,20018,20031,20035,20045,20072,20073,20087,20139,20190,20232,20274,20331,20396,20461,20498,20500,20507,20521,20523,20527,20530,20532,20533,20538,20547,20579,20610,20630,20666,20668,20682,20683,20684,20689,20719,20725,20728,20769,20795,20807,20810,20814,20817,20820,20851,20882,20898,20924,20925,20926,20927,20934,20950,20951,20958,20963,20969,20972,20978,21000,21042,21075,21081,21123,21124,21159,21160,21166,21169,21171,21172,21250,21276,21287,21289,21290,21292,21310,21330,21344,21348,21360,21367,21372,21400,21413,21432,21434,21438,21440,21442,21449,21452,21465,21481,21582,21987,22011,22085,22094,22103,22104,22128,22139,22148,22258,22347,22472,22480,22481,22483,22502,22512,22521,22523,22539,22545,22570,22578,22628,22635,22662,22663,22723,22743,22756,22764,22817,22844,22849,22858,22890,22901,22919,22920,22924,22929,22938,22957,22968,23010,23094,23101,23111,23117,23121,23126,23128,23129,23132]]],["+",[23,23,[[1,3,3,0,3,[[60,1,1,0,1],[62,1,1,1,2],[63,1,1,2,3]]],[3,1,1,3,4,[[130,1,1,3,4]]],[4,1,1,4,5,[[157,1,1,4,5]]],[6,1,1,5,6,[[216,1,1,5,6]]],[7,1,1,6,7,[[235,1,1,6,7]]],[8,1,1,7,8,[[244,1,1,7,8]]],[9,1,1,8,9,[[286,1,1,8,9]]],[10,2,2,9,11,[[304,1,1,9,10],[310,1,1,10,11]]],[11,1,1,11,12,[[321,1,1,11,12]]],[13,5,5,12,17,[[376,1,1,12,13],[381,1,1,13,14],[384,1,1,14,15],[386,1,1,15,16],[390,1,1,16,17]]],[16,1,1,17,18,[[428,1,1,17,18]]],[25,3,3,18,21,[[817,1,1,18,19],[820,1,1,19,20],[821,1,1,20,21]]],[26,2,2,21,23,[[857,1,1,21,22],[861,1,1,22,23]]]],[1814,1871,1905,4117,5080,6671,7196,7418,8560,9224,9433,9781,11405,11497,11571,11602,11697,12750,20814,20882,20925,21987,22094]]],["Thou",[97,96,[[0,5,5,0,5,[[15,1,1,0,1],[16,1,1,1,2],[23,1,1,2,3],[29,1,1,3,4],[40,1,1,4,5]]],[1,2,2,5,7,[[56,1,1,5,6],[59,1,1,6,7]]],[3,2,2,7,9,[[134,1,1,7,8],[136,1,1,8,9]]],[4,3,3,9,12,[[153,1,1,9,10],[154,1,1,10,11],[161,1,1,11,12]]],[5,3,3,12,15,[[199,1,1,12,13],[200,1,1,13,14],[203,1,1,14,15]]],[6,2,2,15,17,[[219,1,1,15,16],[225,1,1,16,17]]],[8,2,2,17,19,[[252,1,1,17,18],[259,1,1,18,19]]],[9,5,5,19,24,[[271,1,1,19,20],[275,1,1,20,21],[278,1,1,21,22],[284,1,1,22,23],[285,1,1,23,24]]],[10,5,5,24,29,[[292,2,2,24,26],[293,1,1,26,27],[295,1,1,27,28],[310,1,1,28,29]]],[12,2,2,29,31,[[348,1,1,29,30],[354,1,1,30,31]]],[13,1,1,31,32,[[367,1,1,31,32]]],[15,2,2,32,34,[[421,2,2,32,34]]],[17,1,1,34,35,[[452,1,1,34,35]]],[18,28,28,35,63,[[479,1,1,35,36],[489,1,1,36,37],[493,1,1,37,38],[508,1,1,38,39],[509,1,1,39,40],[521,1,1,40,41],[536,1,1,41,42],[546,1,1,42,43],[551,4,4,43,47],[553,2,2,47,49],[554,1,1,49,50],[566,3,3,50,53],[579,1,1,53,54],[587,1,1,54,55],[595,1,1,55,56],[596,4,4,56,60],[616,1,1,60,61],[617,1,1,61,62],[619,1,1,62,63]]],[19,3,3,63,66,[[634,1,1,63,64],[650,1,1,64,65],[651,1,1,65,66]]],[21,1,1,66,67,[[676,1,1,66,67]]],[22,3,3,67,70,[[719,1,1,67,68],[727,1,1,68,69],[729,1,1,69,70]]],[23,9,8,70,78,[[745,1,1,70,71],[746,2,1,71,72],[759,1,1,72,73],[766,1,1,73,74],[780,1,1,74,75],[781,1,1,75,76],[787,1,1,76,77],[795,1,1,77,78]]],[24,1,1,78,79,[[801,1,1,78,79]]],[25,11,11,79,90,[[805,1,1,79,80],[817,3,3,80,83],[822,1,1,83,84],[823,1,1,84,85],[829,3,3,85,88],[837,1,1,88,89],[844,1,1,89,90]]],[27,1,1,90,91,[[863,1,1,90,91]]],[29,1,1,91,92,[[885,1,1,91,92]]],[31,1,1,92,93,[[892,1,1,92,93]]],[32,2,2,93,95,[[898,2,2,93,95]]],[33,1,1,95,96,[[902,1,1,95,96]]]],[394,406,651,859,1235,1687,1802,4258,4325,4929,4956,5158,6155,6193,6292,6790,6947,7663,7856,8134,8237,8293,8498,8540,8785,8814,8822,8881,9422,10675,10867,11202,12517,12518,13274,13952,14073,14094,14345,14362,14575,14795,14954,15061,15062,15063,15065,15085,15088,15107,15335,15336,15352,15534,15790,15897,15902,15966,16012,16049,16241,16269,16291,16579,17058,17103,17618,18460,18639,18689,18963,18992,19321,19460,19871,19887,19999,20232,20461,20530,20807,20814,20820,20958,21000,21169,21171,21172,21372,21582,22128,22480,22578,22662,22663,22723]]],["Ye",[39,39,[[0,3,3,0,3,[[41,2,2,0,2],[43,1,1,2,3]]],[1,5,5,3,8,[[54,1,1,3,4],[68,1,1,4,5],[69,1,1,5,6],[81,1,1,6,7],[82,1,1,7,8]]],[2,2,2,8,10,[[107,1,1,8,9],[109,1,1,9,10]]],[3,1,1,10,11,[[132,1,1,10,11]]],[4,4,4,11,15,[[154,1,1,11,12],[166,1,1,12,13],[181,2,2,13,15]]],[5,3,3,15,18,[[204,1,1,15,16],[208,1,1,16,17],[210,1,1,17,18]]],[6,1,1,18,19,[[222,1,1,18,19]]],[7,1,1,19,20,[[235,1,1,19,20]]],[9,1,1,20,21,[[285,1,1,20,21]]],[11,2,2,21,23,[[321,1,1,21,22],[322,1,1,22,23]]],[12,1,1,23,24,[[352,1,1,23,24]]],[13,1,1,24,25,[[378,1,1,24,25]]],[14,2,2,25,27,[[410,1,1,25,26],[412,1,1,26,27]]],[15,2,2,27,29,[[414,1,1,27,28],[417,1,1,28,29]]],[18,1,1,29,30,[[592,1,1,29,30]]],[22,2,2,30,32,[[720,1,1,30,31],[721,1,1,31,32]]],[23,4,4,32,36,[[767,1,1,32,33],[778,1,1,33,34],[788,2,2,34,36]]],[27,1,1,36,37,[[862,1,1,36,37]]],[35,1,1,37,38,[[907,1,1,37,38]]],[38,1,1,38,39,[[927,1,1,38,39]]]],[1261,1266,1351,1649,2030,2073,2468,2478,3277,3342,4235,4942,5291,5681,5689,6299,6428,6498,6873,7199,8523,9767,9802,10803,11442,12229,12262,12324,12389,15845,18497,18515,19486,19818,20012,20035,22104,22817,23129]]],["thee",[13,13,[[1,2,2,0,2,[[58,1,1,0,1],[74,1,1,1,2]]],[4,3,3,2,5,[[156,1,1,2,3],[157,1,1,3,4],[170,1,1,4,5]]],[8,2,2,5,7,[[260,1,1,5,6],[264,1,1,6,7]]],[9,1,1,7,8,[[279,1,1,7,8]]],[10,1,1,8,9,[[311,1,1,8,9]]],[13,2,2,9,11,[[373,1,1,9,10],[401,1,1,10,11]]],[19,1,1,11,12,[[649,1,1,11,12]]],[37,1,1,12,13,[[919,1,1,12,13]]]],[1772,2235,5039,5084,5398,7867,7973,8330,9457,11341,11987,17034,23010]]],["thine",[1,1,[[10,1,1,0,1,[[311,1,1,0,1]]]],[9470]]],["thou",[666,618,[[0,47,47,0,47,[[2,4,4,0,4],[3,2,2,4,6],[5,2,2,6,8],[6,1,1,8,9],[7,1,1,9,10],[11,2,2,10,12],[12,2,2,12,14],[14,1,1,14,15],[16,1,1,15,16],[19,1,1,16,17],[20,2,2,17,19],[21,1,1,19,20],[22,2,2,20,22],[23,3,3,22,25],[25,1,1,25,26],[26,4,4,26,30],[27,1,1,30,31],[28,2,2,31,33],[29,1,1,33,34],[30,3,3,34,37],[31,2,2,37,39],[37,1,1,39,40],[38,1,1,40,41],[42,1,1,41,42],[44,3,3,42,45],[48,2,2,45,47]]],[1,33,29,47,76,[[51,1,1,47,48],[52,2,2,48,50],[53,2,2,50,52],[57,1,1,52,53],[58,1,1,53,54],[59,1,1,54,55],[67,7,5,55,60],[68,2,2,60,62],[69,2,2,62,64],[73,1,1,64,65],[76,1,1,65,66],[77,2,2,66,68],[79,1,1,68,69],[80,1,1,69,70],[81,1,1,70,71],[82,5,3,71,74],[83,2,2,74,76]]],[2,2,2,76,78,[[99,2,2,76,78]]],[3,21,18,78,96,[[117,2,2,78,80],[121,1,1,80,81],[127,4,4,81,85],[130,3,1,85,86],[132,4,3,86,89],[134,3,3,89,92],[136,1,1,92,93],[138,1,1,93,94],[143,1,1,94,95],[147,1,1,95,96]]],[4,59,52,96,148,[[155,2,2,96,98],[156,1,1,98,99],[157,2,2,99,101],[158,1,1,101,102],[159,3,3,102,105],[161,4,3,105,108],[163,2,2,108,110],[164,2,2,110,112],[165,1,1,112,113],[166,3,3,113,116],[167,2,2,116,118],[168,2,2,118,120],[170,2,2,120,122],[173,1,1,122,123],[175,1,1,123,124],[176,1,1,124,125],[177,1,1,125,126],[178,1,1,126,127],[180,17,12,127,139],[182,5,5,139,144],[183,3,2,144,146],[184,1,1,146,147],[185,1,1,147,148]]],[5,8,8,148,156,[[187,2,2,148,150],[189,1,1,150,151],[191,2,2,151,153],[193,1,1,153,154],[200,1,1,154,155],[203,1,1,155,156]]],[6,22,21,156,177,[[214,2,2,156,158],[217,2,1,158,159],[218,2,2,159,161],[219,4,4,161,165],[220,1,1,165,166],[221,5,5,166,171],[222,1,1,171,172],[223,2,2,172,174],[224,1,1,174,175],[227,1,1,175,176],[228,1,1,176,177]]],[7,4,3,177,180,[[234,4,3,177,180]]],[8,40,37,180,217,[[243,1,1,180,181],[248,1,1,181,182],[250,3,2,182,184],[251,1,1,184,185],[252,4,4,185,189],[254,2,2,189,191],[255,3,3,191,194],[256,1,1,194,195],[257,4,4,195,199],[258,1,1,199,200],[259,4,4,200,204],[260,1,1,204,205],[261,3,3,205,208],[263,7,6,208,214],[264,2,2,214,216],[265,2,1,216,217]]],[9,34,32,217,249,[[267,2,2,217,219],[268,1,1,219,220],[269,1,1,220,221],[271,2,1,221,222],[273,6,6,222,228],[275,2,2,228,230],[277,1,1,230,231],[278,1,1,231,232],[279,1,1,232,233],[281,4,3,233,236],[282,1,1,236,237],[283,3,3,237,240],[284,1,1,240,241],[285,3,3,241,244],[286,4,4,244,248],[288,1,1,248,249]]],[10,42,39,249,288,[[291,5,5,249,254],[292,4,4,254,258],[293,1,1,258,259],[295,3,2,259,261],[296,1,1,261,262],[298,9,8,262,270],[299,1,1,270,271],[301,1,1,271,272],[302,2,2,272,274],[303,1,1,274,275],[304,2,2,275,277],[307,1,1,277,278],[308,9,8,278,286],[311,1,1,286,287],[312,1,1,287,288]]],[11,15,13,288,301,[[313,1,1,288,289],[316,4,4,289,293],[318,1,1,293,294],[320,1,1,294,295],[326,1,1,295,296],[331,6,4,296,300],[332,1,1,300,301]]],[12,12,11,301,312,[[348,2,1,301,302],[354,5,5,302,307],[365,2,2,307,309],[366,3,3,309,312]]],[13,18,16,312,328,[[367,1,1,312,313],[368,1,1,313,314],[372,9,8,314,322],[380,1,1,322,323],[386,3,2,323,325],[387,1,1,325,326],[391,2,2,326,328]]],[14,2,2,328,330,[[411,2,2,328,330]]],[15,17,13,330,343,[[414,2,2,330,332],[417,1,1,332,333],[418,5,2,333,335],[421,9,8,335,343]]],[16,1,1,343,344,[[429,1,1,343,344]]],[17,9,9,344,353,[[436,1,1,344,345],[440,1,1,345,346],[443,2,2,346,348],[446,2,2,348,350],[450,1,1,350,351],[469,2,2,351,353]]],[18,88,85,353,438,[[480,1,1,353,354],[481,1,1,354,355],[482,2,2,355,357],[483,1,1,357,358],[487,2,1,358,359],[493,1,1,359,360],[495,1,1,360,361],[499,4,4,361,365],[500,1,1,365,366],[502,2,2,366,368],[508,2,2,368,370],[509,1,1,370,371],[515,1,1,371,372],[516,1,1,372,373],[517,4,4,373,377],[518,1,1,377,378],[520,1,1,378,379],[521,1,1,379,380],[527,1,1,380,381],[532,2,2,381,383],[533,1,1,383,384],[536,1,1,384,385],[537,1,1,385,386],[538,1,1,386,387],[539,1,1,387,388],[540,1,1,388,389],[542,1,1,389,390],[545,1,1,390,391],[546,2,2,391,393],[547,1,1,393,394],[548,4,4,394,398],[551,3,3,398,401],[553,1,1,401,402],[559,1,1,402,403],[560,1,1,403,404],[562,1,1,404,405],[563,6,5,405,410],[566,5,5,410,415],[567,2,2,415,417],[568,1,1,417,418],[569,1,1,418,419],[570,1,1,419,420],[574,1,1,420,421],[576,3,2,421,423],[579,3,3,423,426],[586,3,3,426,429],[596,3,3,429,432],[609,1,1,432,433],[616,2,2,433,435],[619,1,1,435,436],[620,1,1,436,437],[622,1,1,437,438]]],[19,5,5,438,443,[[650,2,2,438,440],[652,1,1,440,441],[653,1,1,441,442],[658,1,1,442,443]]],[20,3,3,443,446,[[663,1,1,443,444],[667,2,2,444,446]]],[22,32,27,446,473,[[685,2,2,446,448],[692,3,3,448,451],[703,1,1,451,452],[711,1,1,452,453],[715,6,4,453,457],[716,2,2,457,459],[719,2,2,459,461],[721,2,2,461,463],[722,3,2,463,465],[723,1,1,465,466],[726,1,1,466,467],[729,3,3,467,470],[741,2,1,470,471],[742,3,2,471,473]]],[23,57,55,473,528,[[745,2,2,473,475],[746,1,1,475,476],[747,3,3,476,479],[748,1,1,479,480],[749,1,1,480,481],[751,1,1,481,482],[754,1,1,482,483],[755,1,1,483,484],[756,4,4,484,488],[757,1,1,488,489],[758,3,2,489,491],[759,2,2,491,493],[761,3,3,493,496],[762,1,1,496,497],[764,2,1,497,498],[766,3,3,498,501],[768,1,1,501,502],[769,1,1,502,503],[771,1,1,503,504],[772,2,2,504,506],[773,1,1,506,507],[774,1,1,507,508],[775,1,1,508,509],[776,3,3,509,512],[778,1,1,512,513],[780,2,2,513,515],[782,4,4,515,519],[783,1,1,519,520],[784,1,1,520,521],[789,1,1,521,522],[790,2,2,522,524],[792,1,1,524,525],[793,1,1,525,526],[794,1,1,526,527],[795,1,1,527,528]]],[24,2,2,528,530,[[797,1,1,528,529],[799,1,1,529,530]]],[25,63,58,530,588,[[803,3,2,530,532],[804,6,4,532,536],[805,4,3,536,539],[806,1,1,539,540],[808,1,1,540,541],[809,1,1,541,542],[810,1,1,542,543],[812,1,1,543,544],[813,4,4,544,548],[814,1,1,548,549],[817,5,5,549,554],[822,5,5,554,559],[823,1,1,559,560],[824,1,1,560,561],[825,2,2,561,563],[828,2,2,563,565],[829,3,3,565,568],[833,2,2,568,570],[834,6,5,570,575],[836,1,1,575,576],[837,1,1,576,577],[838,2,2,577,579],[839,5,5,579,584],[840,3,3,584,587],[841,1,1,587,588]]],[26,2,2,588,590,[[858,1,1,588,589],[861,1,1,589,590]]],[27,3,3,590,593,[[865,2,2,590,592],[873,1,1,592,593]]],[29,3,3,593,596,[[885,2,2,593,595],[886,1,1,595,596]]],[30,3,3,596,599,[[888,3,3,596,599]]],[31,3,3,599,602,[[889,2,2,599,601],[892,1,1,601,602]]],[32,3,3,602,605,[[896,1,1,602,603],[897,1,1,603,604],[898,1,1,604,605]]],[33,1,1,605,606,[[902,1,1,605,606]]],[34,3,3,606,609,[[903,1,1,606,607],[904,2,2,607,609]]],[37,8,8,609,617,[[911,1,1,609,610],[912,1,1,610,611],[913,2,2,611,613],[914,2,2,613,615],[915,1,1,615,616],[916,1,1,616,617]]],[38,1,1,617,618,[[926,1,1,617,618]]]],[66,69,70,74,86,90,155,158,160,199,309,311,332,333,375,406,502,535,539,559,577,584,614,635,638,721,745,748,751,759,786,809,810,856,916,917,925,940,945,1142,1158,1298,1368,1369,1377,1476,1481,1568,1584,1597,1617,1626,1712,1744,1781,2013,2016,2017,2018,2020,2049,2050,2061,2070,2178,2292,2294,2296,2405,2433,2460,2474,2476,2485,2506,2508,2986,2991,3607,3654,3812,4039,4041,4045,4053,4122,4205,4210,4211,4258,4259,4264,4319,4409,4567,4690,4996,4999,5037,5067,5080,5088,5112,5117,5130,5159,5162,5163,5218,5237,5258,5269,5278,5292,5311,5316,5325,5339,5353,5356,5393,5398,5456,5520,5536,5565,5577,5614,5617,5623,5627,5630,5632,5647,5654,5655,5663,5674,5675,5710,5716,5724,5726,5727,5735,5751,5808,5839,5853,5857,5901,5947,5949,5986,6199,6290,6608,6621,6704,6740,6741,6764,6766,6768,6786,6826,6831,6852,6854,6856,6864,6874,6887,6895,6912,6982,6996,7181,7182,7188,7374,7496,7573,7577,7596,7651,7661,7674,7676,7709,7717,7753,7760,7761,7773,7800,7803,7805,7810,7827,7850,7853,7856,7857,7894,7919,7920,7930,7943,7944,7951,7954,7961,7964,7973,7976,7991,8030,8035,8069,8106,8134,8185,8200,8204,8207,8208,8209,8229,8234,8269,8298,8321,8391,8408,8416,8434,8452,8455,8457,8500,8524,8525,8544,8558,8563,8571,8573,8631,8730,8734,8737,8741,8759,8775,8779,8792,8796,8823,8884,8887,8908,9004,9015,9017,9019,9021,9024,9028,9038,9055,9130,9155,9161,9198,9220,9230,9341,9348,9350,9352,9355,9358,9359,9377,9378,9458,9510,9539,9604,9610,9619,9626,9696,9728,9906,10071,10072,10076,10080,10099,10675,10881,10885,10888,10889,10890,11146,11152,11174,11176,11181,11203,11227,11291,11303,11305,11307,11309,11312,11315,11323,11486,11593,11594,11639,11712,11723,12250,12252,12309,12311,12394,12407,12409,12517,12519,12528,12530,12538,12539,12542,12544,12776,12879,12978,13034,13035,13121,13124,13207,13715,13716,13960,13973,13977,13985,13988,14055,14097,14146,14207,14213,14214,14223,14239,14256,14258,14334,14335,14360,14505,14521,14530,14534,14536,14542,14552,14568,14573,14685,14745,14755,14763,14798,14817,14824,14839,14840,14863,14909,14940,14961,14976,14979,14981,14982,14983,15063,15064,15065,15088,15241,15259,15277,15286,15289,15294,15299,15301,15335,15337,15338,15343,15364,15379,15380,15404,15419,15428,15487,15503,15507,15533,15547,15548,15776,15782,15783,15910,16000,16035,16159,16247,16252,16289,16303,16335,17046,17063,17135,17145,17313,17399,17484,17485,17785,17798,17938,17941,17947,18119,18280,18362,18363,18368,18372,18391,18407,18459,18467,18506,18531,18550,18554,18576,18618,18682,18683,18685,18882,18890,18893,18957,18959,18985,19003,19006,19024,19057,19075,19135,19207,19240,19250,19251,19252,19254,19287,19302,19315,19330,19334,19371,19373,19374,19407,19428,19456,19469,19479,19527,19564,19609,19633,19634,19660,19677,19709,19734,19748,19756,19804,19848,19861,19912,19913,19916,19918,19940,19957,20045,20072,20073,20087,20139,20190,20274,20331,20396,20498,20500,20507,20521,20523,20527,20532,20533,20538,20547,20579,20610,20630,20668,20682,20683,20684,20689,20725,20769,20795,20807,20810,20817,20950,20951,20963,20969,20972,20978,21042,21075,21081,21123,21124,21159,21160,21166,21250,21276,21287,21289,21290,21292,21310,21348,21360,21400,21413,21432,21434,21438,21440,21442,21449,21452,21465,21481,22011,22085,22139,22148,22258,22472,22481,22483,22512,22521,22523,22539,22545,22570,22628,22635,22663,22723,22743,22756,22764,22890,22901,22919,22920,22924,22929,22938,22957,23117]]],["thyself",[4,4,[[8,1,1,0,1,[[255,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[10,1,1,2,3,[[310,1,1,2,3]]],[20,1,1,3,4,[[665,1,1,3,4]]]],[7738,8491,9448,17451]]],["wilt",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14145]]],["ye",[227,210,[[0,11,8,0,8,[[25,1,1,0,1],[28,1,1,1,2],[30,1,1,2,3],[41,7,4,3,7],[43,1,1,7,8]]],[1,9,9,8,17,[[54,2,2,8,10],[59,1,1,10,11],[61,2,2,11,13],[63,1,1,13,14],[65,1,1,14,15],[68,1,1,15,16],[72,1,1,16,17]]],[2,3,3,17,20,[[114,1,1,17,18],[115,2,2,18,20]]],[3,15,15,20,35,[[130,2,2,20,22],[131,1,1,22,23],[134,3,3,23,26],[138,1,1,26,27],[147,1,1,27,28],[148,1,1,28,29],[149,2,2,29,31],[150,1,1,31,32],[151,3,3,32,35]]],[4,20,19,35,54,[[156,6,6,35,41],[158,1,1,41,42],[159,1,1,42,43],[163,3,3,43,46],[164,4,4,46,50],[172,1,1,50,51],[181,1,1,51,52],[183,2,1,52,53],[184,1,1,53,54]]],[5,20,19,54,73,[[187,2,2,54,56],[188,1,1,56,57],[189,1,1,57,58],[192,1,1,58,59],[194,2,2,59,61],[195,4,4,61,65],[196,2,2,65,67],[204,1,1,67,68],[208,2,1,68,69],[209,1,1,69,70],[210,3,3,70,73]]],[6,15,14,73,87,[[212,1,1,73,74],[216,3,2,74,76],[217,1,1,76,77],[219,2,2,77,79],[220,1,1,79,80],[221,2,2,80,82],[224,1,1,82,83],[228,3,3,83,86],[231,1,1,86,87]]],[7,1,1,87,88,[[235,1,1,87,88]]],[8,11,11,88,99,[[242,1,1,88,89],[243,1,1,89,90],[245,1,1,90,91],[247,3,3,91,94],[249,1,1,94,95],[250,1,1,95,96],[252,1,1,96,97],[258,1,1,97,98],[261,1,1,98,99]]],[9,4,4,99,103,[[268,1,1,99,100],[285,2,2,100,102],[287,1,1,102,103]]],[10,5,5,103,108,[[299,1,1,103,104],[302,2,2,104,106],[308,2,2,106,108]]],[11,5,4,108,112,[[313,1,1,108,109],[315,1,1,109,110],[322,3,2,110,112]]],[12,2,2,112,114,[[352,2,2,112,114]]],[13,13,12,114,126,[[373,1,1,114,115],[376,2,2,115,117],[379,3,2,117,119],[385,1,1,119,120],[390,1,1,120,121],[394,2,2,121,123],[395,1,1,123,124],[396,1,1,124,125],[398,1,1,125,126]]],[14,1,1,126,127,[[411,1,1,126,127]]],[15,9,8,127,135,[[413,1,1,127,128],[414,2,1,128,129],[417,3,3,129,132],[425,3,3,132,135]]],[16,1,1,135,136,[[433,1,1,135,136]]],[17,4,4,136,140,[[447,1,1,136,137],[448,1,1,137,138],[454,1,1,138,139],[467,1,1,139,140]]],[22,15,13,140,153,[[681,1,1,140,141],[705,1,1,141,142],[719,2,2,142,144],[721,1,1,144,145],[722,1,1,145,146],[726,1,1,146,147],[735,2,2,147,149],[739,1,1,149,150],[743,5,3,150,153]]],[23,33,31,153,184,[[746,1,1,153,154],[751,3,3,154,157],[757,1,1,157,158],[760,2,2,158,160],[762,1,1,160,161],[765,1,1,161,162],[769,1,1,162,163],[770,2,1,163,164],[771,2,2,164,166],[773,2,2,166,168],[776,2,2,168,170],[777,1,1,170,171],[778,1,1,171,172],[779,2,2,172,174],[784,1,1,174,175],[786,6,5,175,180],[788,4,4,180,184]]],[25,12,11,184,195,[[812,1,1,184,185],[814,3,2,185,187],[819,1,1,187,188],[821,5,5,188,193],[835,1,1,193,194],[837,1,1,194,195]]],[27,1,1,195,196,[[862,1,1,195,196]]],[28,3,1,196,197,[[878,3,1,196,197]]],[29,1,1,197,198,[[887,1,1,197,198]]],[36,3,3,198,201,[[909,2,2,198,200],[910,1,1,200,201]]],[37,1,1,201,202,[[917,1,1,201,202]]],[38,9,8,202,210,[[925,2,2,202,204],[926,1,1,204,205],[927,6,5,205,210]]]],[719,799,879,1268,1271,1285,1286,1334,1643,1649,1788,1829,1847,1903,1955,2032,2153,3492,3536,3558,4138,4149,4192,4260,4285,4288,4394,4683,4724,4811,4815,4818,4855,4878,4879,5008,5009,5016,5018,5026,5030,5087,5118,5216,5219,5239,5241,5242,5247,5252,5430,5695,5741,5805,5862,5865,5881,5896,5967,6006,6009,6044,6045,6059,6060,6083,6089,6296,6444,6463,6489,6491,6498,6547,6664,6685,6712,6769,6772,6824,6836,6838,6922,7001,7002,7011,7124,7200,7355,7386,7437,7474,7480,7485,7548,7566,7626,7831,7921,8054,8521,8523,8584,9057,9157,9160,9362,9366,9536,9593,9799,9806,10803,10804,11343,11401,11404,11461,11464,11582,11682,11774,11777,11799,11834,11885,12248,12304,12326,12390,12391,12393,12688,12689,12692,12825,13130,13157,13318,13634,17721,18163,18474,18475,18517,18541,18620,18768,18769,18849,18908,18910,18911,18996,19127,19133,19142,19289,19348,19349,19390,19444,19563,19587,19605,19611,19643,19655,19767,19774,19785,19816,19829,19830,19951,19986,19988,19990,19991,19995,20013,20017,20018,20031,20666,20719,20728,20851,20898,20924,20925,20926,20927,21344,21367,22103,22347,22502,22844,22849,22858,22968,23094,23101,23111,23121,23126,23128,23129,23132]]],["you",[12,12,[[0,4,4,0,4,[[8,1,1,0,1],[43,1,1,1,2],[44,1,1,2,3],[49,1,1,3,4]]],[1,1,1,4,5,[[61,1,1,4,5]]],[3,1,1,5,6,[[130,1,1,5,6]]],[4,1,1,6,7,[[153,1,1,6,7]]],[5,1,1,7,8,[[209,1,1,7,8]]],[13,1,1,8,9,[[394,1,1,8,9]]],[18,1,1,9,10,[[559,1,1,9,10]]],[25,2,2,10,12,[[821,1,1,10,11],[835,1,1,11,12]]]],[212,1341,1366,1526,1838,4140,4932,6469,11774,15239,20934,21330]]],["yourselves",[3,3,[[3,1,1,0,1,[[147,1,1,0,1]]],[6,1,1,1,2,[[225,1,1,1,2]]],[17,1,1,2,3,[[462,1,1,2,3]]]],[4683,6941,13493]]]]},{"k":"H860","v":[["*",[34,28,[[0,4,4,0,4,[[11,1,1,0,1],[31,1,1,1,2],[44,1,1,2,3],[48,1,1,3,4]]],[3,14,10,4,14,[[138,14,10,4,14]]],[6,1,1,14,15,[[215,1,1,14,15]]],[8,8,6,15,21,[[244,4,3,15,18],[245,4,3,18,21]]],[11,2,2,21,23,[[316,2,2,21,23]]],[12,1,1,23,24,[[364,1,1,23,24]]],[17,3,3,24,27,[[436,2,2,24,26],[477,1,1,26,27]]],[37,1,1,27,28,[[919,1,1,27,28]]]],[314,943,1381,1484,4396,4397,4398,4400,4402,4403,4404,4405,4407,4408,6633,7394,7396,7411,7420,7432,7434,9625,9627,11139,12872,12883,13934,23008]]],["ass",[16,12,[[3,14,10,0,10,[[138,14,10,0,10]]],[11,1,1,10,11,[[316,1,1,10,11]]],[37,1,1,11,12,[[919,1,1,11,12]]]],[4396,4397,4398,4400,4402,4403,4404,4405,4407,4408,9627,23008]]],["ass's",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1484]]],["asses",[17,15,[[0,3,3,0,3,[[11,1,1,0,1],[31,1,1,1,2],[44,1,1,2,3]]],[6,1,1,3,4,[[215,1,1,3,4]]],[8,8,6,4,10,[[244,4,3,4,7],[245,4,3,7,10]]],[11,1,1,10,11,[[316,1,1,10,11]]],[12,1,1,11,12,[[364,1,1,11,12]]],[17,3,3,12,15,[[436,2,2,12,14],[477,1,1,14,15]]]],[314,943,1381,6633,7394,7396,7411,7420,7432,7434,9625,11139,12872,12883,13934]]]]},{"k":"H861","v":[["furnace",[10,10,[[26,10,10,0,10,[[852,10,10,0,10]]]],[21813,21818,21822,21824,21826,21827,21828,21829,21830,21833]]]]},{"k":"H862","v":[["*",[5,4,[[25,5,4,0,4,[[842,2,2,0,2],[843,3,2,2,4]]]],[21541,21542,21555,21557]]],["galleries",[3,3,[[25,3,3,0,3,[[842,2,2,0,2],[843,1,1,2,3]]]],[21541,21542,21557]]],["gallery",[2,1,[[25,2,1,0,1,[[843,2,1,0,1]]]],[21555]]]]},{"k":"H863","v":[["*",[9,8,[[9,8,7,0,7,[[281,4,3,0,3],[284,3,3,3,6],[289,1,1,6,7]]],[12,1,1,7,8,[[348,1,1,7,8]]]],[8408,8410,8411,8480,8483,8490,8682,10704]]],["Ithai",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10704]]],["Ittai",[8,7,[[9,8,7,0,7,[[281,4,3,0,3],[284,3,3,3,6],[289,1,1,6,7]]]],[8408,8410,8411,8480,8483,8490,8682]]]]},{"k":"H864","v":[["*",[4,4,[[1,1,1,0,1,[[62,1,1,0,1]]],[3,3,3,1,4,[[149,3,3,1,4]]]],[1887,4766,4767,4768]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4767]]],["Etham",[3,3,[[1,1,1,0,1,[[62,1,1,0,1]]],[3,2,2,1,3,[[149,2,2,1,3]]]],[1887,4766,4768]]]]},{"k":"H865","v":[["*",[8,8,[[8,4,4,0,4,[[239,1,1,0,1],[245,1,1,1,2],[249,1,1,2,3],[254,1,1,3,4]]],[9,1,1,4,5,[[271,1,1,4,5]]],[18,1,1,5,6,[[567,1,1,5,6]]],[22,1,1,6,7,[[708,1,1,6,7]]],[32,1,1,7,8,[[894,1,1,7,8]]]],[7304,7429,7529,7713,8134,15382,18250,22603]]],["+",[6,6,[[8,3,3,0,3,[[239,1,1,0,1],[245,1,1,1,2],[254,1,1,2,3]]],[9,1,1,3,4,[[271,1,1,3,4]]],[18,1,1,4,5,[[567,1,1,4,5]]],[22,1,1,5,6,[[708,1,1,5,6]]]],[7304,7429,7713,8134,15382,18250]]],["before",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7529]]],["late",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22603]]]]},{"k":"H866","v":[["rewards",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22117]]]]},{"k":"H867","v":[["Ethni",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10495]]]]},{"k":"H868","v":[["*",[11,8,[[4,1,1,0,1,[[175,1,1,0,1]]],[22,2,2,1,3,[[701,2,2,1,3]]],[25,4,3,3,6,[[817,4,3,3,6]]],[27,1,1,6,7,[[870,1,1,6,7]]],[32,3,1,7,8,[[893,3,1,7,8]]]],[5518,18094,18095,20793,20796,20803,22209,22586]]],["+",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22586]]],["hire",[6,6,[[4,1,1,0,1,[[175,1,1,0,1]]],[22,2,2,1,3,[[701,2,2,1,3]]],[25,2,2,3,5,[[817,2,2,3,5]]],[32,1,1,5,6,[[893,1,1,5,6]]]],[5518,18094,18095,20793,20803,22586]]],["hires",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22586]]],["reward",[3,2,[[25,2,1,0,1,[[817,2,1,0,1]]],[27,1,1,1,2,[[870,1,1,1,2]]]],[20796,22209]]]]},{"k":"H869","v":[["Ethnan",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10392]]]]},{"k":"H870","v":[["*",[8,8,[[14,4,4,0,4,[[407,1,1,0,1],[408,3,3,1,4]]],[26,4,4,4,8,[[851,2,2,4,6],[856,2,2,6,8]]]],[12149,12154,12156,12158,21793,21797,21939,21940]]],["After",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21939,21940]]],["after",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21797]]],["place",[5,5,[[14,4,4,0,4,[[407,1,1,0,1],[408,3,3,1,4]]],[26,1,1,4,5,[[851,1,1,4,5]]]],[12149,12154,12156,12158,21793]]]]},{"k":"H871","v":[["spies",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4341]]]]},{"k":"H872","v":[["entry",[1,1,[[25,1,1,0,1,[[809,1,1,0,1]]]],[20609]]]]},{"k":"H873","v":[["bad",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12122]]]]},{"k":"H874","v":[["*",[3,3,[[4,2,2,0,2,[[153,1,1,0,1],[179,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[4897,5593,22750]]],["+",[2,2,[[4,2,2,0,2,[[153,1,1,0,1],[179,1,1,1,2]]]],[4897,5593]]],["plain",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22750]]]]},{"k":"H875","v":[["*",[37,33,[[0,23,19,0,19,[[13,2,1,0,1],[15,1,1,1,2],[20,3,3,2,5],[23,2,2,5,7],[25,8,8,7,15],[28,7,4,15,19]]],[1,1,1,19,20,[[51,1,1,19,20]]],[3,5,5,20,25,[[136,1,1,20,21],[137,4,4,21,25]]],[9,3,3,25,28,[[283,3,3,25,28]]],[18,2,2,28,30,[[532,1,1,28,29],[546,1,1,29,30]]],[19,2,2,30,32,[[632,1,1,30,31],[650,1,1,31,32]]],[21,1,1,32,33,[[674,1,1,32,33]]]],[346,395,532,538,543,602,611,707,710,711,712,713,714,717,724,797,798,803,805,1569,4328,4356,4357,4358,4362,8467,8468,8470,14755,14950,16532,17071,17597]]],["+",[3,2,[[0,2,1,0,1,[[13,2,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]]],[346,8470]]],["pit",[3,3,[[18,2,2,0,2,[[532,1,1,0,1],[546,1,1,1,2]]],[19,1,1,2,3,[[650,1,1,2,3]]]],[14755,14950,17071]]],["well",[22,21,[[0,14,13,0,13,[[15,1,1,0,1],[20,3,3,1,4],[23,2,2,4,6],[25,6,6,6,12],[28,2,1,12,13]]],[1,1,1,13,14,[[51,1,1,13,14]]],[3,4,4,14,18,[[137,4,4,14,18]]],[9,1,1,18,19,[[283,1,1,18,19]]],[19,1,1,19,20,[[632,1,1,19,20]]],[21,1,1,20,21,[[674,1,1,20,21]]]],[395,532,538,543,602,611,711,712,713,714,717,724,797,1569,4356,4357,4358,4362,8467,16532,17597]]],["well's",[6,5,[[0,5,4,0,4,[[28,5,4,0,4]]],[9,1,1,4,5,[[283,1,1,4,5]]]],[797,798,803,805,8468]]],["wells",[3,3,[[0,2,2,0,2,[[25,2,2,0,2]]],[3,1,1,2,3,[[136,1,1,2,3]]]],[707,710,4328]]]]},{"k":"H876","v":[["Beer",[2,2,[[3,1,1,0,1,[[137,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]]],[4356,6775]]]]},{"k":"H877","v":[["cisterns",[2,1,[[23,2,1,0,1,[[746,2,1,0,1]]]],[18978]]]]},{"k":"H878","v":[["Beera",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10572]]]]},{"k":"H879","v":[["Beerelim",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17968]]]]},{"k":"H880","v":[["Beerah",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10434]]]]},{"k":"H881","v":[["*",[6,6,[[4,1,1,0,1,[[162,1,1,0,1]]],[5,2,2,1,3,[[195,1,1,1,2],[204,1,1,2,3]]],[9,1,1,3,4,[[270,1,1,3,4]]],[14,1,1,4,5,[[404,1,1,4,5]]],[15,1,1,5,6,[[419,1,1,5,6]]]],[5192,6054,6318,8122,12052,12449]]],["+",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5192]]],["Beeroth",[5,5,[[5,2,2,0,2,[[195,1,1,0,1],[204,1,1,1,2]]],[9,1,1,2,3,[[270,1,1,2,3]]],[14,1,1,3,4,[[404,1,1,3,4]]],[15,1,1,4,5,[[419,1,1,4,5]]]],[6054,6318,8122,12052,12449]]]]},{"k":"H882","v":[["Beeri",[2,2,[[0,1,1,0,1,[[25,1,1,0,1]]],[27,1,1,1,2,[[862,1,1,1,2]]]],[726,22095]]]]},{"k":"H883","v":[["*",[3,3,[[0,3,3,0,3,[[15,1,1,0,1],[23,1,1,1,2],[24,1,1,2,3]]]],[395,653,669]]],["Beerlahairoi",[1,1,[[0,1,1,0,1,[[15,1,1,0,1]]]],[395]]],["Lahairoi",[2,2,[[0,2,2,0,2,[[23,1,1,0,1],[24,1,1,1,2]]]],[653,669]]]]},{"k":"H884","v":[["*",[34,33,[[0,11,10,0,10,[[20,4,4,0,4],[21,2,1,4,5],[25,2,2,5,7],[27,1,1,7,8],[45,2,2,8,10]]],[5,2,2,10,12,[[201,1,1,10,11],[205,1,1,11,12]]],[6,1,1,12,13,[[230,1,1,12,13]]],[8,2,2,13,15,[[238,1,1,13,14],[243,1,1,14,15]]],[9,5,5,15,20,[[269,1,1,15,16],[283,1,1,16,17],[290,3,3,17,20]]],[10,2,2,20,22,[[294,1,1,20,21],[309,1,1,21,22]]],[11,2,2,22,24,[[324,1,1,22,23],[335,1,1,23,24]]],[12,2,2,24,26,[[341,1,1,24,25],[358,1,1,25,26]]],[13,3,3,26,29,[[385,1,1,26,27],[390,1,1,27,28],[396,1,1,28,29]]],[15,2,2,29,31,[[423,2,2,29,31]]],[29,2,2,31,33,[[883,1,1,31,32],[886,1,1,32,33]]]],[527,544,545,546,566,715,725,783,1387,1391,6230,6323,7055,7296,7371,8091,8460,8694,8699,8707,8869,9390,9851,10173,10413,10936,11580,11678,11832,12615,12618,22428,22495]]],["+",[8,8,[[0,2,2,0,2,[[27,1,1,0,1],[45,1,1,1,2]]],[11,1,1,2,3,[[324,1,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[13,3,3,4,7,[[385,1,1,4,5],[390,1,1,5,6],[396,1,1,6,7]]],[15,1,1,7,8,[[423,1,1,7,8]]]],[783,1391,9851,10936,11580,11678,11832,12618]]],["Beersheba",[26,25,[[0,9,8,0,8,[[20,4,4,0,4],[21,2,1,4,5],[25,2,2,5,7],[45,1,1,7,8]]],[5,2,2,8,10,[[201,1,1,8,9],[205,1,1,9,10]]],[6,1,1,10,11,[[230,1,1,10,11]]],[8,2,2,11,13,[[238,1,1,11,12],[243,1,1,12,13]]],[9,5,5,13,18,[[269,1,1,13,14],[283,1,1,14,15],[290,3,3,15,18]]],[10,2,2,18,20,[[294,1,1,18,19],[309,1,1,19,20]]],[11,1,1,20,21,[[335,1,1,20,21]]],[12,1,1,21,22,[[341,1,1,21,22]]],[15,1,1,22,23,[[423,1,1,22,23]]],[29,2,2,23,25,[[883,1,1,23,24],[886,1,1,24,25]]]],[527,544,545,546,566,715,725,1387,6230,6323,7055,7296,7371,8091,8460,8694,8699,8707,8869,9390,10173,10413,12615,22428,22495]]]]},{"k":"H885","v":[]},{"k":"H886","v":[["*",[5,5,[[9,5,5,0,5,[[270,4,4,0,4],[289,1,1,4,5]]]],[8122,8123,8125,8129,8690]]],["Beerothite",[4,4,[[9,4,4,0,4,[[270,3,3,0,3],[289,1,1,3,4]]]],[8122,8125,8129,8690]]],["Beerothites",[1,1,[[9,1,1,0,1,[[270,1,1,0,1]]]],[8123]]]]},{"k":"H887","v":[["*",[17,16,[[0,1,1,0,1,[[33,1,1,0,1]]],[1,6,6,1,7,[[54,1,1,1,2],[56,2,2,2,4],[57,1,1,4,5],[65,2,2,5,7]]],[8,3,2,7,9,[[248,1,1,7,8],[262,2,1,8,9]]],[9,2,2,9,11,[[276,1,1,9,10],[282,1,1,10,11]]],[12,1,1,11,12,[[356,1,1,11,12]]],[18,1,1,12,13,[[515,1,1,12,13]]],[19,1,1,13,14,[[640,1,1,13,14]]],[20,1,1,14,15,[[668,1,1,14,15]]],[22,1,1,15,16,[[728,1,1,15,16]]]],[1010,1653,1703,1706,1724,1967,1971,7489,7942,8246,8447,10913,14495,16752,17494,18664]]],["+",[2,1,[[8,2,1,0,1,[[262,2,1,0,1]]]],[7942]]],["abhorred",[2,2,[[1,1,1,0,1,[[54,1,1,0,1]]],[9,1,1,1,2,[[282,1,1,1,2]]]],[1653,8447]]],["abomination",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7489]]],["loathsome",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16752]]],["odious",[1,1,[[12,1,1,0,1,[[356,1,1,0,1]]]],[10913]]],["savour",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17494]]],["stank",[4,4,[[1,3,3,0,3,[[56,1,1,0,1],[57,1,1,1,2],[65,1,1,2,3]]],[9,1,1,3,4,[[276,1,1,3,4]]]],[1706,1724,1967,8246]]],["stink",[4,4,[[0,1,1,0,1,[[33,1,1,0,1]]],[1,2,2,1,3,[[56,1,1,1,2],[65,1,1,2,3]]],[18,1,1,3,4,[[515,1,1,3,4]]]],[1010,1703,1971,14495]]],["stinketh",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18664]]]]},{"k":"H888","v":[["displeased",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21919]]]]},{"k":"H889","v":[["stink",[3,3,[[22,1,1,0,1,[[712,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]],[29,1,1,2,3,[[882,1,1,2,3]]]],[18306,22331,22420]]]]},{"k":"H890","v":[["cockle",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13628]]]]},{"k":"H891","v":[["grapes",[2,2,[[22,2,2,0,2,[[683,2,2,0,2]]]],[17741,17743]]]]},{"k":"H892","v":[["apple",[1,1,[[37,1,1,0,1,[[912,1,1,0,1]]]],[22907]]]]},{"k":"H893","v":[["Bebai",[6,5,[[14,4,3,0,3,[[404,1,1,0,1],[410,2,1,1,2],[412,1,1,2,3]]],[15,2,2,3,5,[[419,1,1,3,4],[422,1,1,4,5]]]],[12038,12212,12280,12436,12564]]]]},{"k":"H894","v":[["*",[262,233,[[0,2,2,0,2,[[9,1,1,0,1],[10,1,1,1,2]]],[11,32,28,2,30,[[329,2,2,2,4],[332,4,4,4,8],[336,12,9,8,17],[337,14,13,17,30]]],[12,1,1,30,31,[[346,1,1,30,31]]],[13,9,7,31,38,[[398,1,1,31,32],[399,1,1,32,33],[402,7,5,33,38]]],[14,6,5,38,43,[[403,1,1,38,39],[404,2,1,39,40],[409,2,2,40,42],[410,1,1,42,43]]],[15,2,2,43,45,[[419,1,1,43,44],[425,1,1,44,45]]],[16,1,1,45,46,[[427,1,1,45,46]]],[18,3,3,46,49,[[564,1,1,46,47],[614,2,2,47,49]]],[22,13,13,49,62,[[691,2,2,49,51],[692,2,2,51,53],[699,1,1,53,54],[717,4,4,54,58],[721,1,1,58,59],[725,1,1,59,60],[726,2,2,60,62]]],[23,169,149,62,211,[[764,4,3,62,65],[765,4,4,65,69],[766,1,1,69,70],[768,2,1,70,71],[769,4,4,71,75],[771,14,12,75,87],[772,8,6,87,93],[773,11,9,93,102],[776,6,6,102,108],[778,6,5,108,113],[779,1,1,113,114],[780,1,1,114,115],[781,3,3,115,118],[782,5,5,118,123],[783,10,8,123,131],[784,8,6,131,137],[785,2,2,137,139],[786,1,1,139,140],[787,2,2,140,142],[788,1,1,142,143],[790,3,3,143,146],[793,2,2,146,148],[794,19,19,148,167],[795,36,31,167,198],[796,15,13,198,211]]],[25,20,18,211,229,[[813,1,1,211,212],[818,4,3,212,215],[820,1,1,215,216],[822,2,2,216,218],[824,3,3,218,221],[825,1,1,221,222],[827,1,1,222,223],[830,2,2,223,225],[831,4,3,225,228],[833,1,1,228,229]]],[26,1,1,229,230,[[850,1,1,229,230]]],[32,1,1,230,231,[[896,1,1,230,231]]],[37,2,2,231,233,[[912,1,1,231,232],[916,1,1,232,233]]]],[244,275,10007,10013,10110,10112,10115,10116,10203,10209,10212,10213,10214,10217,10218,10219,10222,10223,10228,10229,10230,10233,10235,10242,10243,10244,10245,10246,10249,10250,10616,11906,11919,11999,12000,12003,12011,12013,12027,12028,12179,12182,12202,12426,12677,12730,15305,16223,16230,17907,17925,17932,17950,18044,18413,18415,18418,18419,18519,18600,18628,18634,19426,19427,19428,19442,19444,19447,19450,19479,19525,19535,19543,19545,19546,19602,19604,19605,19607,19608,19609,19610,19612,19613,19614,19616,19618,19620,19621,19622,19624,19629,19632,19636,19638,19639,19645,19650,19655,19656,19657,19663,19733,19734,19735,19736,19759,19767,19802,19803,19804,19808,19822,19834,19871,19875,19891,19893,19898,19912,19913,19917,19918,19924,19926,19928,19929,19930,19932,19934,19936,19942,19945,19946,19948,19950,19952,19959,19975,19986,20000,20007,20040,20047,20058,20071,20155,20157,20167,20168,20174,20175,20179,20180,20182,20183,20184,20189,20190,20194,20195,20200,20201,20208,20209,20211,20212,20213,20214,20218,20219,20220,20221,20223,20224,20236,20241,20242,20243,20245,20246,20247,20249,20253,20254,20256,20259,20260,20261,20265,20266,20267,20268,20270,20271,20272,20273,20276,20279,20280,20285,20286,20287,20288,20291,20293,20302,20303,20307,20308,20310,20693,20837,20841,20845,20890,20963,20965,21022,21024,21030,21058,21107,21201,21202,21214,21228,21229,21259,21738,22630,22906,22957]]],["+",[16,16,[[11,2,2,0,2,[[329,1,1,0,1],[332,1,1,1,2]]],[14,4,4,2,6,[[403,1,1,2,3],[409,2,2,3,5],[410,1,1,5,6]]],[22,2,2,6,8,[[717,1,1,6,7],[726,1,1,7,8]]],[23,4,4,8,12,[[771,1,1,8,9],[772,1,1,9,10],[794,1,1,10,11],[795,1,1,11,12]]],[25,3,3,12,15,[[824,3,3,12,15]]],[37,1,1,15,16,[[916,1,1,15,16]]]],[10007,10112,12027,12179,12182,12202,18415,18634,19612,19624,20182,20266,21022,21024,21030,22957]]],["Babel",[2,2,[[0,2,2,0,2,[[9,1,1,0,1],[10,1,1,1,2]]]],[244,275]]],["Babylon",[236,207,[[11,30,26,0,26,[[329,1,1,0,1],[332,3,3,1,4],[336,12,9,4,13],[337,14,13,13,26]]],[12,1,1,26,27,[[346,1,1,26,27]]],[13,9,7,27,34,[[398,1,1,27,28],[399,1,1,28,29],[402,7,5,29,34]]],[14,2,1,34,35,[[404,2,1,34,35]]],[15,2,2,35,37,[[419,1,1,35,36],[425,1,1,36,37]]],[16,1,1,37,38,[[427,1,1,37,38]]],[18,3,3,38,41,[[564,1,1,38,39],[614,2,2,39,41]]],[22,11,11,41,52,[[691,2,2,41,43],[692,2,2,43,45],[699,1,1,45,46],[717,3,3,46,49],[721,1,1,49,50],[725,1,1,50,51],[726,1,1,51,52]]],[23,157,137,52,189,[[764,4,3,52,55],[765,4,4,55,59],[766,1,1,59,60],[768,2,1,60,61],[769,4,4,61,65],[771,13,11,65,76],[772,7,5,76,81],[773,11,9,81,90],[776,5,5,90,95],[778,4,3,95,98],[779,1,1,98,99],[780,1,1,99,100],[781,3,3,100,103],[782,1,1,103,104],[783,9,7,104,111],[784,8,6,111,117],[785,2,2,117,119],[786,1,1,119,120],[787,2,2,120,122],[788,1,1,122,123],[790,3,3,123,126],[793,2,2,126,128],[794,18,18,128,146],[795,35,30,146,176],[796,15,13,176,189]]],[25,17,15,189,204,[[813,1,1,189,190],[818,4,3,190,193],[820,1,1,193,194],[822,2,2,194,196],[825,1,1,196,197],[827,1,1,197,198],[830,2,2,198,200],[831,4,3,200,203],[833,1,1,203,204]]],[26,1,1,204,205,[[850,1,1,204,205]]],[32,1,1,205,206,[[896,1,1,205,206]]],[37,1,1,206,207,[[912,1,1,206,207]]]],[10013,10110,10115,10116,10203,10209,10212,10213,10214,10217,10218,10219,10222,10223,10228,10229,10230,10233,10235,10242,10243,10244,10245,10246,10249,10250,10616,11906,11919,11999,12000,12003,12011,12013,12028,12426,12677,12730,15305,16223,16230,17907,17925,17932,17950,18044,18413,18418,18419,18519,18600,18628,19426,19427,19428,19442,19444,19447,19450,19479,19525,19535,19543,19545,19546,19602,19604,19605,19607,19608,19609,19610,19613,19614,19616,19618,19620,19621,19622,19629,19632,19636,19638,19639,19645,19650,19655,19656,19657,19663,19734,19735,19736,19759,19767,19802,19803,19804,19834,19871,19875,19891,19893,19918,19924,19926,19928,19929,19930,19932,19934,19942,19945,19946,19948,19950,19952,19959,19975,19986,20000,20007,20040,20047,20058,20071,20155,20157,20167,20168,20174,20175,20179,20180,20183,20184,20189,20190,20194,20195,20200,20201,20208,20209,20211,20212,20213,20214,20218,20219,20220,20221,20223,20224,20236,20241,20242,20243,20245,20246,20247,20249,20253,20254,20256,20259,20260,20261,20265,20267,20268,20270,20271,20272,20273,20276,20279,20280,20285,20286,20287,20288,20291,20293,20302,20303,20307,20308,20310,20693,20837,20841,20845,20890,20963,20965,21058,21107,21201,21202,21214,21228,21229,21259,21738,22630,22906]]],["Babylon's",[8,8,[[23,8,8,0,8,[[776,1,1,0,1],[778,2,2,1,3],[782,4,4,3,7],[783,1,1,7,8]]]],[19733,19808,19822,19898,19912,19913,19917,19936]]]]},{"k":"H895","v":[["Babylon",[25,21,[[14,9,7,0,7,[[407,6,4,0,4],[408,2,2,4,6],[409,1,1,6,7]]],[26,16,14,7,21,[[851,8,6,7,13],[852,3,3,13,16],[853,3,3,16,19],[854,1,1,19,20],[856,1,1,20,21]]]],[12146,12147,12148,12151,12152,12156,12189,21770,21772,21776,21782,21806,21807,21808,21819,21837,21843,21866,21867,21881,21934]]]]},{"k":"H896","v":[["Babylonians",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12119]]]]},{"k":"H897","v":[]},{"k":"H898","v":[["*",[49,39,[[1,1,1,0,1,[[70,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[8,1,1,2,3,[[249,1,1,2,3]]],[17,1,1,3,4,[[441,1,1,3,4]]],[18,5,5,4,9,[[502,1,1,4,5],[536,1,1,5,6],[550,1,1,6,7],[555,1,1,7,8],[596,1,1,8,9]]],[19,9,9,9,18,[[629,1,1,9,10],[638,2,2,10,12],[640,2,2,12,14],[648,1,1,14,15],[649,1,1,15,16],[650,1,1,16,17],[652,1,1,17,18]]],[22,12,4,18,22,[[699,2,1,18,19],[702,4,1,19,20],[711,4,1,20,21],[726,2,1,21,22]]],[23,9,7,22,29,[[747,4,3,22,25],[749,2,1,25,26],[753,1,1,26,27],[756,2,2,27,29]]],[24,1,1,29,30,[[797,1,1,29,30]]],[27,2,2,30,32,[[866,1,1,30,31],[867,1,1,31,32]]],[34,2,2,32,34,[[903,1,1,32,33],[904,1,1,33,34]]],[38,5,5,34,39,[[926,5,5,34,39]]]],[2085,6777,7541,12993,14254,14795,15035,15170,16056,16455,16691,16694,16749,16762,17002,17027,17072,17132,18037,18111,18280,18622,19010,19013,19022,19069,19177,19250,19255,20312,22159,22174,22744,22753,23113,23114,23117,23118,23119]]],["+",[9,7,[[22,4,3,0,3,[[702,1,1,0,1],[711,1,1,1,2],[726,2,1,2,3]]],[23,4,3,3,6,[[747,1,1,3,4],[749,2,1,4,5],[756,1,1,5,6]]],[38,1,1,6,7,[[926,1,1,6,7]]]],[18111,18280,18622,19013,19069,19250,23119]]],["dealer",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18037]]],["dealers",[2,1,[[22,2,1,0,1,[[702,2,1,0,1]]]],[18111]]],["deceitfully",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]]],[2085,12993]]],["departeth",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19022]]],["man",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17132]]],["men",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19177]]],["offend",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15035]]],["transgress",[1,1,[[18,1,1,0,1,[[502,1,1,0,1]]]],[14254]]],["transgressed",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7541]]],["transgresseth",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22753]]],["transgressor",[2,2,[[19,2,2,0,2,[[648,1,1,0,1],[649,1,1,1,2]]]],[17002,17027]]],["transgressors",[8,8,[[18,2,2,0,2,[[536,1,1,0,1],[596,1,1,1,2]]],[19,6,6,2,8,[[629,1,1,2,3],[638,2,2,3,5],[640,2,2,5,7],[650,1,1,7,8]]]],[14795,16056,16455,16691,16694,16749,16762,17072]]],["treacherous",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19010]]],["treacherously",[16,14,[[6,1,1,0,1,[[219,1,1,0,1]]],[22,5,3,1,4,[[699,1,1,1,2],[702,1,1,2,3],[711,3,1,3,4]]],[23,2,2,4,6,[[747,1,1,4,5],[756,1,1,5,6]]],[24,1,1,6,7,[[797,1,1,6,7]]],[27,2,2,7,9,[[866,1,1,7,8],[867,1,1,8,9]]],[34,1,1,9,10,[[903,1,1,9,10]]],[38,4,4,10,14,[[926,4,4,10,14]]]],[6777,18037,18111,18280,19022,19255,20312,22159,22174,22744,23113,23114,23117,23118]]],["unfaithfully",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15170]]]]},{"k":"H899","v":[["*",[217,190,[[0,14,13,0,13,[[23,1,1,0,1],[26,2,2,1,3],[27,1,1,3,4],[36,1,1,4,5],[37,2,2,5,7],[38,6,5,7,12],[40,1,1,12,13]]],[1,23,12,13,25,[[77,4,3,13,16],[78,6,3,16,19],[80,3,1,19,20],[84,4,2,20,22],[88,5,2,22,24],[89,1,1,24,25]]],[2,55,45,25,70,[[95,3,2,25,27],[97,5,2,27,29],[99,1,1,29,30],[100,5,4,30,34],[102,14,12,34,46],[103,5,4,46,50],[104,11,11,50,61],[105,7,6,61,67],[106,1,1,67,68],[108,1,1,68,69],[110,2,1,69,70]]],[3,20,20,70,90,[[120,7,7,70,77],[124,2,2,77,79],[130,1,1,79,80],[131,1,1,80,81],[135,5,5,81,86],[136,2,2,86,88],[147,2,2,88,90]]],[4,1,1,90,91,[[176,1,1,90,91]]],[6,5,5,91,96,[[218,1,1,91,92],[221,1,1,92,93],[224,2,2,93,95],[227,1,1,95,96]]],[8,4,4,96,100,[[254,2,2,96,98],[262,1,1,98,99],[263,1,1,99,100]]],[9,8,7,100,107,[[267,2,2,100,102],[269,1,1,102,103],[279,2,1,103,104],[280,1,1,104,105],[285,1,1,105,106],[286,1,1,106,107]]],[10,4,4,107,111,[[291,1,1,107,108],[311,1,1,108,109],[312,2,2,109,111]]],[11,20,19,111,130,[[314,1,1,111,112],[316,1,1,112,113],[317,7,6,113,119],[318,1,1,119,120],[319,2,2,120,122],[321,1,1,122,123],[323,1,1,123,124],[330,1,1,124,125],[331,1,1,125,126],[334,3,3,126,129],[337,1,1,129,130]]],[13,6,6,130,136,[[384,2,2,130,132],[389,1,1,132,133],[400,3,3,133,136]]],[14,2,2,136,138,[[411,2,2,136,138]]],[15,1,1,138,139,[[416,1,1,138,139]]],[16,2,2,139,141,[[429,2,2,139,141]]],[17,3,3,141,144,[[448,1,1,141,142],[457,1,1,142,143],[472,1,1,143,144]]],[18,4,4,144,148,[[499,1,1,144,145],[522,1,1,145,146],[579,1,1,146,147],[586,1,1,147,148]]],[19,4,4,148,152,[[633,1,1,148,149],[647,1,1,149,150],[652,1,1,150,151],[654,1,1,151,152]]],[20,1,1,152,153,[[667,1,1,152,153]]],[22,14,14,153,167,[[702,1,1,153,154],[714,1,1,154,155],[715,1,1,155,156],[728,1,1,156,157],[729,2,2,157,159],[730,1,1,159,160],[737,2,2,160,162],[739,1,1,162,163],[741,3,3,163,166],[742,1,1,166,167]]],[23,5,5,167,172,[[756,1,1,167,168],[780,1,1,168,169],[785,1,1,169,170],[787,1,1,170,171],[796,1,1,171,172]]],[25,14,11,172,183,[[817,3,3,172,175],[819,2,2,175,177],[824,1,1,177,178],[827,1,1,178,179],[828,1,1,179,180],[843,2,1,180,181],[845,4,2,181,183]]],[28,1,1,183,184,[[877,1,1,183,184]]],[29,1,1,184,185,[[880,1,1,184,185]]],[36,1,1,185,186,[[910,1,1,185,186]]],[37,4,4,186,190,[[913,3,3,186,189],[924,1,1,189,190]]]],[644,742,754,793,1112,1133,1138,1161,1162,1164,1165,1167,1237,2295,2296,2297,2341,2357,2365,2430,2550,2552,2665,2705,2720,2860,2876,2919,2947,2983,3022,3025,3029,3037,3058,3086,3097,3099,3101,3103,3104,3105,3108,3109,3110,3111,3119,3120,3158,3166,3173,3174,3175,3176,3178,3179,3181,3185,3189,3190,3195,3205,3224,3225,3227,3229,3233,3250,3300,3355,3749,3750,3751,3752,3754,3755,3756,3946,3960,4114,4191,4296,4297,4299,4308,4310,4337,4339,4684,4688,5542,6745,6864,6921,6922,6990,7719,7730,7939,7950,8024,8033,8112,8348,8358,8535,8566,8718,9478,9490,9510,9563,9642,9652,9654,9655,9669,9670,9673,9704,9715,9722,9769,9843,10061,10062,10156,10159,10164,10251,11551,11571,11669,11952,11955,11960,12240,12242,12382,12763,12766,13181,13395,13786,14222,14605,15547,15774,16567,16970,17133,17182,17483,18111,18352,18353,18671,18679,18681,18697,18806,18817,18853,18867,18868,18869,18891,19250,19866,19962,20009,20309,20778,20780,20801,20856,20865,21033,21116,21141,21566,21616,21618,22324,22387,22867,22915,22916,22917,23082]]],["+",[3,3,[[22,1,1,0,1,[[702,1,1,0,1]]],[23,1,1,1,2,[[756,1,1,1,2]]],[25,1,1,2,3,[[817,1,1,2,3]]]],[18111,19250,20778]]],["apparel",[4,4,[[6,1,1,0,1,[[227,1,1,0,1]]],[8,1,1,1,2,[[262,1,1,1,2]]],[9,1,1,2,3,[[280,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[6990,7939,8358,23082]]],["cloth",[9,9,[[3,7,7,0,7,[[120,7,7,0,7]]],[8,1,1,7,8,[[254,1,1,7,8]]],[9,1,1,8,9,[[286,1,1,8,9]]]],[3749,3750,3751,3752,3754,3755,3756,7719,8566]]],["clothes",[69,66,[[0,1,1,0,1,[[36,1,1,0,1]]],[2,27,25,1,26,[[99,1,1,1,2],[100,4,3,2,5],[102,3,3,5,8],[103,4,3,8,11],[104,10,10,11,21],[105,3,3,21,24],[106,1,1,24,25],[110,1,1,25,26]]],[3,9,9,26,35,[[124,2,2,26,28],[130,1,1,28,29],[135,5,5,29,34],[147,1,1,34,35]]],[6,1,1,35,36,[[221,1,1,35,36]]],[8,1,1,36,37,[[254,1,1,36,37]]],[9,5,5,37,42,[[267,2,2,37,39],[269,1,1,39,40],[279,1,1,40,41],[285,1,1,41,42]]],[10,2,2,42,44,[[291,1,1,42,43],[311,1,1,43,44]]],[11,10,9,44,53,[[314,1,1,44,45],[317,3,2,45,47],[318,1,1,47,48],[323,1,1,48,49],[330,1,1,49,50],[331,1,1,50,51],[334,2,2,51,53]]],[13,3,3,53,56,[[389,1,1,53,54],[400,2,2,54,56]]],[15,1,1,56,57,[[416,1,1,56,57]]],[16,1,1,57,58,[[429,1,1,57,58]]],[19,1,1,58,59,[[633,1,1,58,59]]],[22,2,2,59,61,[[714,1,1,59,60],[715,1,1,60,61]]],[23,1,1,61,62,[[785,1,1,61,62]]],[25,3,3,62,65,[[817,1,1,62,63],[824,1,1,63,64],[828,1,1,64,65]]],[29,1,1,65,66,[[880,1,1,65,66]]]],[1112,2983,3022,3025,3037,3058,3086,3097,3119,3120,3158,3173,3174,3175,3176,3178,3179,3181,3189,3190,3195,3227,3229,3233,3250,3355,3946,3960,4114,4296,4297,4299,4308,4310,4688,6864,7730,8024,8033,8112,8348,8535,8718,9478,9563,9654,9655,9704,9843,10061,10062,10156,10164,11669,11952,11960,12382,12763,16567,18352,18353,19962,20801,21033,21141,22387]]],["clothing",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13395]]],["cloths",[4,4,[[1,4,4,0,4,[[80,1,1,0,1],[84,1,1,1,2],[88,2,2,2,4]]]],[2430,2550,2665,2705]]],["garment",[37,34,[[0,6,5,0,5,[[38,6,5,0,5]]],[2,15,13,5,18,[[95,1,1,5,6],[102,11,9,6,15],[103,1,1,15,16],[104,1,1,16,17],[108,1,1,17,18]]],[11,1,1,18,19,[[321,1,1,18,19]]],[14,2,2,19,21,[[411,2,2,19,21]]],[17,1,1,21,22,[[448,1,1,21,22]]],[18,2,2,22,24,[[579,1,1,22,23],[586,1,1,23,24]]],[19,3,3,24,27,[[647,1,1,24,25],[652,1,1,25,26],[654,1,1,26,27]]],[22,3,3,27,30,[[728,1,1,27,28],[729,2,2,28,30]]],[23,1,1,30,31,[[787,1,1,30,31]]],[25,2,2,31,33,[[819,2,2,31,33]]],[36,1,1,33,34,[[910,1,1,33,34]]]],[1161,1162,1164,1165,1167,2876,3099,3101,3103,3104,3105,3108,3109,3110,3111,3166,3185,3300,9769,12240,12242,13181,15547,15774,16970,17133,17182,18671,18679,18681,20009,20856,20865,22867]]],["garments",[69,55,[[0,2,2,0,2,[[37,2,2,0,2]]],[1,19,12,2,14,[[77,4,3,2,5],[78,6,3,5,8],[80,2,1,8,9],[84,3,2,9,11],[88,3,2,11,13],[89,1,1,13,14]]],[2,12,8,14,22,[[95,2,1,14,15],[97,5,2,15,17],[105,4,4,17,21],[110,1,1,21,22]]],[3,3,3,22,25,[[131,1,1,22,23],[136,2,2,23,25]]],[6,2,2,25,27,[[224,2,2,25,27]]],[9,1,1,27,28,[[279,1,1,27,28]]],[11,5,5,28,33,[[317,3,3,28,31],[319,1,1,31,32],[337,1,1,32,33]]],[17,1,1,33,34,[[472,1,1,33,34]]],[18,2,2,34,36,[[499,1,1,34,35],[522,1,1,35,36]]],[20,1,1,36,37,[[667,1,1,36,37]]],[22,7,7,37,44,[[730,1,1,37,38],[737,2,2,38,40],[739,1,1,40,41],[741,3,3,41,44]]],[23,2,2,44,46,[[780,1,1,44,45],[796,1,1,45,46]]],[25,8,5,46,51,[[817,1,1,46,47],[827,1,1,47,48],[843,2,1,48,49],[845,4,2,49,51]]],[28,1,1,51,52,[[877,1,1,51,52]]],[37,3,3,52,55,[[913,3,3,52,55]]]],[1133,1138,2295,2296,2297,2341,2357,2365,2430,2550,2552,2665,2705,2720,2860,2919,2947,3205,3224,3225,3233,3355,4191,4337,4339,6921,6922,8348,9669,9670,9673,9722,10251,13786,14222,14605,17483,18697,18806,18817,18853,18867,18868,18869,19866,20309,20780,21116,21566,21616,21618,22324,22915,22916,22917]]],["lap",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9642]]],["rags",[1,1,[[22,1,1,0,1,[[742,1,1,0,1]]]],[18891]]],["raiment",[12,12,[[0,4,4,0,4,[[23,1,1,0,1],[26,2,2,1,3],[27,1,1,3,4]]],[2,1,1,4,5,[[100,1,1,4,5]]],[3,1,1,5,6,[[147,1,1,5,6]]],[4,1,1,6,7,[[176,1,1,6,7]]],[6,1,1,7,8,[[218,1,1,7,8]]],[8,1,1,8,9,[[263,1,1,8,9]]],[11,2,2,9,11,[[317,1,1,9,10],[319,1,1,10,11]]],[16,1,1,11,12,[[429,1,1,11,12]]]],[644,742,754,793,3029,4684,5542,6745,7950,9652,9715,12766]]],["robes",[4,4,[[10,2,2,0,2,[[312,2,2,0,2]]],[13,2,2,2,4,[[384,2,2,2,4]]]],[9490,9510,11551,11571]]],["vestures",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1237]]],["wardrobe",[2,2,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]]],[10159,11955]]]]},{"k":"H900","v":[["treacherous",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22824]]]]},{"k":"H901","v":[["treacherous",[2,2,[[23,2,2,0,2,[[747,2,2,0,2]]]],[19009,19012]]]]},{"k":"H902","v":[["Bigvai",[6,6,[[14,3,3,0,3,[[404,2,2,0,2],[410,1,1,2,3]]],[15,3,3,3,6,[[419,2,2,3,5],[422,1,1,5,6]]]],[12029,12041,12215,12427,12439,12565]]]]},{"k":"H903","v":[["Bigtha",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12712]]]]},{"k":"H904","v":[["*",[2,2,[[16,2,2,0,2,[[427,1,1,0,1],[431,1,1,1,2]]]],[12745,12795]]],["Bigthan",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12745]]],["Bigthana",[1,1,[[16,1,1,0,1,[[431,1,1,0,1]]]],[12795]]]]},{"k":"H905","v":[["*",[202,179,[[0,14,12,0,12,[[1,1,1,0,1],[20,2,2,1,3],[25,1,1,3,4],[29,1,1,4,5],[31,2,2,5,7],[41,1,1,7,8],[42,3,1,8,9],[43,1,1,9,10],[45,1,1,10,11],[46,1,1,11,12]]],[1,40,35,12,47,[[61,2,2,12,14],[67,2,2,14,16],[71,2,2,16,18],[73,1,1,18,19],[74,5,5,19,24],[75,2,1,24,25],[76,4,2,25,27],[79,4,3,27,30],[84,4,4,30,34],[85,2,1,34,35],[86,6,6,35,41],[87,3,3,41,44],[88,2,2,44,46],[89,1,1,46,47]]],[2,5,2,47,49,[[98,1,1,47,48],[112,4,1,48,49]]],[3,22,22,49,71,[[120,4,4,49,53],[121,1,1,53,54],[122,1,1,54,55],[127,2,2,55,57],[132,1,1,57,58],[144,2,2,58,60],[145,11,11,60,71]]],[4,9,9,71,80,[[153,2,2,71,73],[155,1,1,73,74],[156,1,1,74,75],[160,1,1,75,76],[170,1,1,76,77],[174,1,1,77,78],[181,2,2,78,80]]],[5,3,3,80,83,[[197,1,1,80,81],[203,1,1,81,82],[208,1,1,82,83]]],[6,9,8,83,91,[[213,1,1,83,84],[216,3,3,84,87],[217,1,1,87,88],[218,2,1,88,89],[230,2,2,89,91]]],[8,3,3,91,94,[[242,2,2,91,93],[256,1,1,93,94]]],[9,8,8,94,102,[[276,1,1,94,95],[279,2,2,95,97],[283,1,1,97,98],[284,3,3,98,101],[286,1,1,101,102]]],[10,17,15,102,117,[[294,1,1,102,103],[295,1,1,103,104],[298,4,3,104,107],[300,2,2,107,109],[301,1,1,109,110],[302,1,1,110,111],[304,1,1,111,112],[308,3,2,112,114],[309,2,2,114,116],[312,1,1,116,117]]],[11,5,5,117,122,[[322,1,1,117,118],[329,1,1,118,119],[331,2,2,119,121],[333,1,1,121,122]]],[12,2,2,122,124,[[340,1,1,122,123],[356,1,1,123,124]]],[13,9,8,124,132,[[371,3,2,124,126],[372,1,1,126,127],[375,2,2,127,129],[383,1,1,129,130],[384,1,1,130,131],[397,1,1,131,132]]],[14,2,2,132,134,[[403,1,1,132,133],[404,1,1,133,134]]],[15,2,2,134,136,[[419,1,1,134,135],[421,1,1,135,136]]],[16,3,3,136,139,[[426,1,1,136,137],[428,1,1,137,138],[429,1,1,138,139]]],[17,11,10,139,149,[[436,4,4,139,143],[444,1,1,143,144],[450,1,1,144,145],[452,1,1,145,146],[453,2,1,146,147],[466,1,1,147,148],[476,1,1,148,149]]],[18,7,7,149,156,[[528,1,1,149,150],[548,1,1,150,151],[549,1,1,151,152],[560,1,1,152,153],[563,1,1,153,154],[613,1,1,154,155],[625,1,1,155,156]]],[19,2,2,156,158,[[632,1,1,156,157],[636,1,1,157,158]]],[20,1,1,158,159,[[665,1,1,158,159]]],[22,9,9,159,168,[[680,2,2,159,161],[683,1,1,161,162],[704,1,1,162,163],[715,2,2,163,165],[722,1,1,165,166],[727,1,1,166,167],[741,1,1,167,168]]],[25,4,4,168,172,[[815,2,2,168,170],[818,1,1,170,171],[820,1,1,171,172]]],[26,3,3,172,175,[[859,2,2,172,174],[860,1,1,174,175]]],[27,1,1,175,176,[[872,1,1,175,176]]],[37,11,3,176,179,[[922,11,3,176,179]]]],[48,541,542,693,870,944,952,1290,1322,1344,1412,1446,1832,1853,2013,2017,2133,2140,2179,2208,2209,2210,2222,2223,2244,2278,2279,2386,2387,2416,2543,2544,2546,2547,2582,2608,2609,2618,2619,2631,2632,2638,2639,2640,2699,2703,2727,2970,3440,3749,3751,3754,3757,3800,3844,4038,4041,4243,4600,4608,4614,4619,4624,4627,4630,4633,4636,4639,4642,4646,4647,4901,4904,4980,5039,5140,5392,5495,5680,5693,6120,6280,6455,6588,6691,6693,6694,6699,6745,7069,7071,7355,7356,7773,8248,8349,8350,8451,8502,8503,8504,8575,8867,8894,8992,8993,9024,9092,9094,9137,9171,9231,9347,9363,9397,9401,9511,9816,10001,10076,10080,10135,10370,10916,11276,11277,11312,11376,11378,11542,11572,11870,12022,12092,12487,12517,12718,12753,12773,12884,12885,12886,12888,13059,13222,13276,13289,13605,13900,14695,14992,15018,15259,15294,16200,16384,16534,16650,17458,17696,17702,17747,18143,18368,18372,18557,18657,18869,20747,20749,20831,20895,22022,22023,22040,22246,23057,23058,23059]]],["+",[38,34,[[0,2,2,0,2,[[25,1,1,0,1],[45,1,1,1,2]]],[2,5,2,2,4,[[98,1,1,2,3],[112,4,1,3,4]]],[3,15,15,4,19,[[121,1,1,4,5],[122,1,1,5,6],[132,1,1,6,7],[144,2,2,7,9],[145,10,10,9,19]]],[4,2,2,19,21,[[156,1,1,19,20],[181,1,1,20,21]]],[5,1,1,21,22,[[208,1,1,21,22]]],[6,2,1,22,23,[[218,2,1,22,23]]],[10,2,2,23,25,[[295,1,1,23,24],[300,1,1,24,25]]],[11,1,1,25,26,[[333,1,1,25,26]]],[12,1,1,26,27,[[340,1,1,26,27]]],[13,3,3,27,30,[[375,1,1,27,28],[383,1,1,28,29],[397,1,1,29,30]]],[14,2,2,30,32,[[403,1,1,30,31],[404,1,1,31,32]]],[15,1,1,32,33,[[419,1,1,32,33]]],[26,1,1,33,34,[[860,1,1,33,34]]]],[693,1412,2970,3440,3800,3844,4243,4600,4608,4614,4619,4624,4627,4630,4633,4636,4639,4642,4646,5039,5680,6455,6745,8894,9092,10135,10370,11376,11542,11870,12022,12092,12487,22040]]],["Beside",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9094,11378]]],["alone",[41,41,[[0,4,4,0,4,[[1,1,1,0,1],[31,1,1,1,2],[41,1,1,2,3],[43,1,1,3,4]]],[1,3,3,4,7,[[67,2,2,4,6],[73,1,1,6,7]]],[3,2,2,7,9,[[127,2,2,7,9]]],[4,2,2,9,11,[[153,2,2,9,11]]],[6,1,1,11,12,[[213,1,1,11,12]]],[8,1,1,12,13,[[256,1,1,12,13]]],[9,3,3,13,16,[[284,3,3,13,16]]],[10,1,1,16,17,[[301,1,1,16,17]]],[11,1,1,17,18,[[331,1,1,17,18]]],[15,1,1,18,19,[[421,1,1,18,19]]],[16,1,1,19,20,[[428,1,1,19,20]]],[17,7,7,20,27,[[436,4,4,20,24],[444,1,1,24,25],[450,1,1,25,26],[466,1,1,26,27]]],[18,4,4,27,31,[[560,1,1,27,28],[563,1,1,28,29],[613,1,1,29,30],[625,1,1,30,31]]],[19,1,1,31,32,[[636,1,1,31,32]]],[22,7,7,32,39,[[680,2,2,32,34],[683,1,1,34,35],[715,1,1,35,36],[722,1,1,36,37],[727,1,1,37,38],[741,1,1,38,39]]],[26,2,2,39,41,[[859,2,2,39,41]]]],[48,952,1290,1344,2013,2017,2179,4038,4041,4901,4904,6588,7773,8502,8503,8504,9137,10076,12517,12753,12884,12885,12886,12888,13059,13222,13605,15259,15294,16200,16384,16650,17696,17702,17747,18368,18557,18657,18869,22022,22023]]],["apart",[11,3,[[37,11,3,0,3,[[922,11,3,0,3]]]],[23057,23058,23059]]],["bars",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13276]]],["beside",[8,8,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[145,1,1,1,2]]],[4,2,2,2,4,[[155,1,1,2,3],[170,1,1,3,4]]],[5,1,1,4,5,[[203,1,1,4,5]]],[6,2,2,5,7,[[230,2,2,5,7]]],[10,1,1,7,8,[[294,1,1,7,8]]]],[1853,4647,4980,5392,6280,7069,7071,8867]]],["branches",[3,3,[[25,2,2,0,2,[[818,1,1,0,1],[820,1,1,1,2]]],[27,1,1,2,3,[[872,1,1,2,3]]]],[20831,20895,22246]]],["each",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2416]]],["except",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12773]]],["himself",[4,3,[[0,1,1,0,1,[[42,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]],[10,2,1,2,3,[[308,2,1,2,3]]]],[1322,6699,9347]]],["like",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2416]]],["only",[39,39,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,3,3,1,4,[[61,1,1,1,2],[71,2,2,2,4]]],[4,3,3,4,7,[[160,1,1,4,5],[174,1,1,5,6],[181,1,1,6,7]]],[5,1,1,7,8,[[197,1,1,7,8]]],[6,3,3,8,11,[[216,3,3,8,11]]],[8,2,2,11,13,[[242,2,2,11,13]]],[9,4,4,13,17,[[279,2,2,13,15],[283,1,1,15,16],[286,1,1,16,17]]],[10,7,7,17,24,[[298,1,1,17,18],[302,1,1,18,19],[304,1,1,19,20],[308,1,1,20,21],[309,2,2,21,23],[312,1,1,23,24]]],[11,3,3,24,27,[[322,1,1,24,25],[329,1,1,25,26],[331,1,1,26,27]]],[13,2,2,27,29,[[372,1,1,27,28],[384,1,1,28,29]]],[16,1,1,29,30,[[426,1,1,29,30]]],[18,3,3,30,33,[[528,1,1,30,31],[548,1,1,31,32],[549,1,1,32,33]]],[19,1,1,33,34,[[632,1,1,33,34]]],[20,1,1,34,35,[[665,1,1,34,35]]],[22,2,2,35,37,[[704,1,1,35,36],[715,1,1,36,37]]],[25,2,2,37,39,[[815,2,2,37,39]]]],[1446,1832,2133,2140,5140,5495,5693,6120,6691,6693,6694,7355,7356,8349,8350,8451,8575,9024,9171,9231,9363,9397,9401,9511,9816,10001,10080,11312,11572,12718,14695,14992,15018,16534,17458,18143,18372,20747,20749]]],["parts",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13900]]],["staves",[37,33,[[1,27,25,0,25,[[74,5,5,0,5],[76,4,2,5,7],[79,2,2,7,9],[84,4,4,9,13],[86,6,6,13,19],[87,3,3,19,22],[88,2,2,22,24],[89,1,1,24,25]]],[3,4,4,25,29,[[120,4,4,25,29]]],[10,3,2,29,31,[[298,3,2,29,31]]],[13,3,2,31,33,[[371,3,2,31,33]]]],[2208,2209,2210,2222,2223,2278,2279,2386,2387,2543,2544,2546,2547,2608,2609,2618,2619,2631,2632,2638,2639,2640,2699,2703,2727,3749,3751,3754,3757,8992,8993,11276,11277]]],["strength",[2,1,[[17,2,1,0,1,[[453,2,1,0,1]]]],[13289]]],["themselves",[12,9,[[0,6,5,0,5,[[20,2,2,0,2],[29,1,1,2,3],[31,1,1,3,4],[42,2,1,4,5]]],[1,4,2,5,7,[[75,2,1,5,6],[85,2,1,6,7]]],[9,1,1,7,8,[[276,1,1,7,8]]],[12,1,1,8,9,[[356,1,1,8,9]]]],[541,542,870,944,1322,2244,2582,8248,10916]]]]},{"k":"H906","v":[["linen",[23,19,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[2,8,4,2,6,[[95,2,1,2,3],[105,6,3,3,6]]],[8,2,2,6,8,[[237,1,1,6,7],[257,1,1,7,8]]],[9,1,1,8,9,[[272,1,1,8,9]]],[12,1,1,9,10,[[352,1,1,9,10]]],[25,6,6,10,16,[[810,3,3,10,13],[811,3,3,13,16]]],[26,3,3,16,19,[[859,1,1,16,17],[861,2,2,17,19]]]],[2335,2692,2859,3205,3224,3233,7258,7805,8171,10818,20624,20625,20633,20635,20639,20640,22020,22087,22088]]]]},{"k":"H907","v":[["*",[5,5,[[17,1,1,0,1,[[446,1,1,0,1]]],[22,2,2,1,3,[[694,1,1,1,2],[722,1,1,2,3]]],[23,2,2,3,5,[[792,1,1,3,4],[794,1,1,4,5]]]],[13111,17975,18558,20110,20202]]],["liars",[2,2,[[22,1,1,0,1,[[722,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]]],[18558,20202]]],["lies",[3,3,[[17,1,1,0,1,[[446,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[13111,17975,20110]]]]},{"k":"H908","v":[["*",[2,2,[[10,1,1,0,1,[[302,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]]],[9184,12409]]],["devised",[1,1,[[10,1,1,0,1,[[302,1,1,0,1]]]],[9184]]],["feignest",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12409]]]]},{"k":"H909","v":[["alone",[3,3,[[18,1,1,0,1,[[579,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]],[27,1,1,2,3,[[869,1,1,2,3]]]],[15528,17959,22203]]]]},{"k":"H910","v":[["*",[11,11,[[2,1,1,0,1,[[102,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[4,2,2,2,4,[[184,1,1,2,3],[185,1,1,3,4]]],[18,1,1,4,5,[[481,1,1,4,5]]],[22,1,1,5,6,[[705,1,1,5,6]]],[23,2,2,6,8,[[759,1,1,6,7],[793,1,1,7,8]]],[24,2,2,8,10,[[797,1,1,8,9],[799,1,1,9,10]]],[32,1,1,10,11,[[899,1,1,10,11]]]],[3098,4425,5770,5838,13973,18161,19332,20158,20311,20382,22678]]],["alone",[7,7,[[2,1,1,0,1,[[102,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[4,2,2,2,4,[[184,1,1,2,3],[185,1,1,3,4]]],[23,2,2,4,6,[[759,1,1,4,5],[793,1,1,5,6]]],[24,1,1,6,7,[[799,1,1,6,7]]]],[3098,4425,5770,5838,19332,20158,20382]]],["desolate",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18161]]],["only",[1,1,[[18,1,1,0,1,[[481,1,1,0,1]]]],[13973]]],["solitarily",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22678]]],["solitary",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20311]]]]},{"k":"H911","v":[["Bedad",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1075,10298]]]]},{"k":"H912","v":[["Bedeiah",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12287]]]]},{"k":"H913","v":[["*",[6,6,[[3,1,1,0,1,[[147,1,1,0,1]]],[22,1,1,1,2,[[679,1,1,1,2]]],[25,3,3,2,5,[[823,2,2,2,4],[828,1,1,4,5]]],[37,1,1,5,6,[[914,1,1,5,6]]]],[4686,17679,20994,20996,21133,22932]]],["+",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22932]]],["tin",[5,5,[[3,1,1,0,1,[[147,1,1,0,1]]],[22,1,1,1,2,[[679,1,1,1,2]]],[25,3,3,2,5,[[823,2,2,2,4],[828,1,1,4,5]]]],[4686,17679,20994,20996,21133]]]]},{"k":"H914","v":[["*",[42,40,[[0,5,5,0,5,[[0,5,5,0,5]]],[1,1,1,5,6,[[75,1,1,5,6]]],[2,8,7,6,13,[[90,1,1,6,7],[94,1,1,7,8],[99,1,1,8,9],[100,1,1,9,10],[109,4,3,10,13]]],[3,3,3,13,16,[[124,1,1,13,14],[132,2,2,14,16]]],[4,5,5,16,21,[[156,1,1,16,17],[162,1,1,17,18],[171,2,2,18,20],[181,1,1,20,21]]],[10,1,1,21,22,[[298,1,1,21,22]]],[12,3,3,22,25,[[349,1,1,22,23],[360,1,1,23,24],[362,1,1,24,25]]],[13,1,1,25,26,[[391,1,1,25,26]]],[14,6,6,26,32,[[408,1,1,26,27],[410,1,1,27,28],[411,1,1,28,29],[412,3,3,29,32]]],[15,3,3,32,35,[[421,1,1,32,33],[422,1,1,33,34],[425,1,1,34,35]]],[22,3,2,35,37,[[734,2,1,35,36],[737,1,1,36,37]]],[25,3,3,37,40,[[823,1,1,37,38],[840,1,1,38,39],[843,1,1,39,40]]]],[3,5,6,13,17,2268,2762,2838,2987,3044,3342,3343,3344,3953,4203,4215,5045,5194,5408,5413,5700,9038,10728,10996,11047,11714,12172,12225,12238,12260,12263,12268,12513,12577,12674,18756,18802,21002,21462,21572]]],["+",[10,9,[[0,5,5,0,5,[[0,5,5,0,5]]],[3,1,1,5,6,[[124,1,1,5,6]]],[4,1,1,6,7,[[162,1,1,6,7]]],[22,2,1,7,8,[[734,2,1,7,8]]],[25,1,1,8,9,[[823,1,1,8,9]]]],[3,5,6,13,17,3953,5194,18756,21002]]],["asunder",[2,2,[[2,2,2,0,2,[[90,1,1,0,1],[94,1,1,1,2]]]],[2762,2838]]],["difference",[3,3,[[2,3,3,0,3,[[99,1,1,0,1],[100,1,1,1,2],[109,1,1,2,3]]]],[2987,3044,3343]]],["divide",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2268]]],["out",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21462]]],["separate",[4,4,[[4,3,3,0,3,[[171,2,2,0,2],[181,1,1,2,3]]],[10,1,1,3,4,[[298,1,1,3,4]]]],[5408,5413,5700,9038]]],["separated",[11,11,[[2,2,2,0,2,[[109,2,2,0,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[12,2,2,3,5,[[360,1,1,3,4],[362,1,1,4,5]]],[13,1,1,5,6,[[391,1,1,5,6]]],[14,3,3,6,9,[[410,1,1,6,7],[412,2,2,7,9]]],[15,1,1,9,10,[[425,1,1,9,10]]],[22,1,1,10,11,[[737,1,1,10,11]]]],[3342,3343,4203,10996,11047,11714,12225,12260,12268,12674,18802]]],["separation",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21572]]],["severed",[2,2,[[2,1,1,0,1,[[109,1,1,0,1]]],[4,1,1,1,2,[[156,1,1,1,2]]]],[3344,5045]]],["themselves",[5,5,[[12,1,1,0,1,[[349,1,1,0,1]]],[14,2,2,1,3,[[408,1,1,1,2],[411,1,1,2,3]]],[15,2,2,3,5,[[421,1,1,3,4],[422,1,1,4,5]]]],[10728,12172,12238,12513,12577]]],["yourselves",[2,2,[[3,1,1,0,1,[[132,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]]],[4215,12263]]]]},{"k":"H915","v":[["piece",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22407]]]]},{"k":"H916","v":[["bdellium",[2,2,[[0,1,1,0,1,[[1,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]]],[42,4031]]]]},{"k":"H917","v":[["Bedan",[2,2,[[8,1,1,0,1,[[247,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]]],[7471,10552]]]]},{"k":"H918","v":[["repair",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11943]]]]},{"k":"H919","v":[["*",[10,8,[[11,8,6,0,6,[[324,7,5,0,5],[334,1,1,5,6]]],[25,2,2,6,8,[[828,2,2,6,8]]]],[9855,9856,9857,9858,9862,10150,21130,21148]]],["+",[2,2,[[25,2,2,0,2,[[828,2,2,0,2]]]],[21130,21148]]],["breach",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9855]]],["breaches",[7,6,[[11,7,6,0,6,[[324,6,5,0,5],[334,1,1,5,6]]]],[9855,9856,9857,9858,9862,10150]]]]},{"k":"H920","v":[["Bidkar",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9781]]]]},{"k":"H921","v":[["*",[2,2,[[22,1,1,0,1,[[694,1,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[17980,21851]]],["+",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17980]]],["scatter",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21851]]]]},{"k":"H922","v":[["*",[3,3,[[0,1,1,0,1,[[0,1,1,0,1]]],[22,1,1,1,2,[[712,1,1,1,2]]],[23,1,1,2,3,[[748,1,1,2,3]]]],[1,18314,19050]]],["emptiness",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18314]]],["void",[2,2,[[0,1,1,0,1,[[0,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]]],[1,19050]]]]},{"k":"H923","v":[["red",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12708]]]]},{"k":"H924","v":[["haste",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12133]]]]},{"k":"H925","v":[["bright",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13790]]]]},{"k":"H926","v":[["*",[38,38,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[6,1,1,2,3,[[230,1,1,2,3]]],[8,1,1,3,4,[[263,1,1,3,4]]],[9,1,1,4,5,[[270,1,1,4,5]]],[13,3,3,5,8,[[392,1,1,5,6],[398,1,1,6,7],[401,1,1,7,8]]],[16,3,3,8,11,[[427,1,1,8,9],[431,1,1,9,10],[433,1,1,10,11]]],[17,5,5,11,16,[[439,1,1,11,12],[456,1,1,12,13],[457,1,1,13,14],[458,2,2,14,16]]],[18,10,10,16,26,[[479,1,1,16,17],[483,3,3,17,20],[507,1,1,20,21],[525,1,1,21,22],[560,2,2,22,24],[567,1,1,24,25],[581,1,1,25,26]]],[19,2,2,26,28,[[647,1,1,26,27],[655,1,1,27,28]]],[20,3,3,28,31,[[663,1,1,28,29],[665,1,1,29,30],[666,1,1,30,31]]],[22,2,2,31,33,[[691,1,1,31,32],[699,1,1,32,33]]],[23,1,1,33,34,[[795,1,1,33,34]]],[25,2,2,34,36,[[808,1,1,34,35],[827,1,1,35,36]]],[26,1,1,36,37,[[860,1,1,36,37]]],[35,1,1,37,38,[[906,1,1,37,38]]]],[1361,1935,7095,7963,8121,11752,11893,11987,12733,12807,12831,12935,13361,13399,13434,13435,13950,13987,13988,13995,14326,14639,15256,15258,15385,15600,16975,17218,17399,17438,17461,17914,18038,20244,20604,21118,22080,22805]]],["affrighted",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20244]]],["afraid",[3,3,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,1,1,1,2,[[560,1,1,1,2]]],[22,1,1,2,3,[[691,1,1,2,3]]]],[13361,15256,17914]]],["amazed",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]]],[1935,7095]]],["dismayed",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18038]]],["haste",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11987]]],["hasted",[1,1,[[16,1,1,0,1,[[431,1,1,0,1]]]],[12807]]],["hastened",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12831]]],["hasteth",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17218]]],["hastily",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16975]]],["hasty",[2,2,[[20,2,2,0,2,[[665,1,1,0,1],[666,1,1,1,2]]]],[17438,17461]]],["out",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11752]]],["rash",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17399]]],["speedily",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12733]]],["speedy",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22805]]],["trouble",[2,2,[[13,1,1,0,1,[[398,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[11893,22080]]],["troubled",[12,12,[[0,1,1,0,1,[[44,1,1,0,1]]],[8,1,1,1,2,[[263,1,1,1,2]]],[9,1,1,2,3,[[270,1,1,2,3]]],[17,2,2,3,5,[[439,1,1,3,4],[458,1,1,4,5]]],[18,5,5,5,10,[[507,1,1,5,6],[525,1,1,6,7],[560,1,1,7,8],[567,1,1,8,9],[581,1,1,9,10]]],[25,2,2,10,12,[[808,1,1,10,11],[827,1,1,11,12]]]],[1361,7963,8121,12935,13434,14326,14639,15258,15385,15600,20604,21118]]],["troubleth",[2,2,[[17,2,2,0,2,[[457,1,1,0,1],[458,1,1,1,2]]]],[13399,13435]]],["vex",[1,1,[[18,1,1,0,1,[[479,1,1,0,1]]]],[13950]]],["vexed",[3,3,[[18,3,3,0,3,[[483,3,3,0,3]]]],[13987,13988,13995]]]]},{"k":"H927","v":[["*",[11,10,[[26,11,10,0,10,[[851,1,1,0,1],[852,1,1,1,2],[853,3,2,2,4],[854,3,3,4,7],[855,1,1,7,8],[856,2,2,8,10]]]],[21783,21831,21842,21856,21880,21883,21884,21924,21948,21961]]],["haste",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[852,1,1,1,2],[855,1,1,2,3]]]],[21783,21831,21924]]],["trouble",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[854,1,1,1,2]]]],[21856,21884]]],["troubled",[6,6,[[26,6,6,0,6,[[853,2,2,0,2],[854,2,2,2,4],[856,2,2,4,6]]]],[21842,21856,21880,21883,21948,21961]]]]},{"k":"H928","v":[["*",[4,4,[[2,1,1,0,1,[[115,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]],[22,1,1,2,3,[[743,1,1,2,3]]],[23,1,1,3,4,[[759,1,1,3,4]]]],[3540,15146,18920,19323]]],["+",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3540]]],["terrors",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19323]]],["trouble",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[22,1,1,1,2,[[743,1,1,1,2]]]],[15146,18920]]]]},{"k":"H929","v":[["*",[190,172,[[0,21,19,0,19,[[0,3,3,0,3],[1,1,1,3,4],[2,1,1,4,5],[5,2,2,5,7],[6,7,5,7,12],[7,3,3,12,15],[8,1,1,15,16],[33,1,1,16,17],[35,1,1,17,18],[46,1,1,18,19]]],[1,18,18,19,37,[[57,2,2,19,21],[58,5,5,21,26],[60,2,2,26,28],[61,2,2,28,30],[62,3,3,30,33],[68,1,1,33,34],[69,1,1,34,35],[71,2,2,35,37]]],[2,31,25,37,62,[[90,1,1,37,38],[94,1,1,38,39],[96,3,3,39,42],[100,5,5,42,47],[107,2,1,47,48],[108,1,1,48,49],[109,6,3,49,52],[113,2,2,52,54],[114,1,1,54,55],[115,1,1,55,56],[116,8,6,56,62]]],[3,15,12,62,74,[[119,5,3,62,65],[124,1,1,65,66],[134,2,1,66,67],[147,5,5,67,72],[148,1,1,72,73],[151,1,1,73,74]]],[4,18,17,74,91,[[154,1,1,74,75],[155,1,1,75,76],[156,1,1,76,77],[157,1,1,77,78],[159,1,1,78,79],[163,1,1,79,80],[165,1,1,80,81],[166,3,2,81,83],[172,1,1,83,84],[179,1,1,84,85],[180,4,4,85,89],[182,1,1,89,90],[184,1,1,90,91]]],[5,4,4,91,95,[[194,2,2,91,93],[197,1,1,93,94],[207,1,1,94,95]]],[6,1,1,95,96,[[230,1,1,95,96]]],[8,1,1,96,97,[[252,1,1,96,97]]],[10,2,2,97,99,[[294,1,1,97,98],[308,1,1,98,99]]],[11,2,2,99,101,[[315,2,2,99,101]]],[13,2,1,101,102,[[398,2,1,101,102]]],[14,2,2,102,104,[[403,2,2,102,104]]],[15,5,4,104,108,[[414,3,2,104,106],[421,1,1,106,107],[422,1,1,107,108]]],[17,3,3,108,111,[[447,1,1,108,109],[453,1,1,109,110],[470,1,1,110,111]]],[18,11,11,111,122,[[485,1,1,111,112],[513,1,1,112,113],[526,2,2,113,115],[527,1,1,115,116],[550,1,1,116,117],[581,1,1,117,118],[584,1,1,118,119],[612,1,1,119,120],[624,1,1,120,121],[625,1,1,121,122]]],[19,2,2,122,124,[[639,1,1,122,123],[657,1,1,123,124]]],[20,4,3,124,127,[[661,4,3,124,127]]],[22,5,4,127,131,[[696,2,1,127,128],[708,1,1,128,129],[724,1,1,129,130],[741,1,1,130,131]]],[23,18,17,131,148,[[751,2,2,131,133],[753,1,1,133,134],[756,1,1,134,135],[759,1,1,135,136],[760,1,1,136,137],[763,1,1,137,138],[765,1,1,138,139],[771,1,1,139,140],[775,1,1,140,141],[776,1,1,141,142],[777,3,2,142,144],[778,1,1,144,145],[780,1,1,145,146],[794,1,1,146,147],[795,1,1,147,148]]],[25,12,11,148,159,[[809,1,1,148,149],[815,4,4,149,153],[826,1,1,153,154],[830,2,2,154,156],[833,2,1,156,157],[837,1,1,157,158],[845,1,1,158,159]]],[28,3,3,159,162,[[876,2,2,159,161],[877,1,1,161,162]]],[31,3,3,162,165,[[891,2,2,162,164],[892,1,1,164,165]]],[32,1,1,165,166,[[897,1,1,165,166]]],[34,1,1,166,167,[[904,1,1,166,167]]],[35,1,1,167,168,[[906,1,1,167,168]]],[36,1,1,168,169,[[909,1,1,168,169]]],[37,3,3,169,172,[[912,1,1,169,170],[918,1,1,170,171],[924,1,1,171,172]]]],[23,24,25,50,69,144,157,161,167,173,180,182,184,200,203,215,1003,1046,1438,1727,1728,1751,1752,1761,1764,1767,1811,1813,1828,1845,1869,1879,1882,2039,2061,2123,2132,2747,2832,2900,2904,2905,2999,3000,3023,3036,3043,3274,3300,3333,3334,3343,3464,3467,3476,3546,3579,3580,3581,3596,3597,3598,3705,3733,3737,3956,4272,4673,4675,4690,4694,4711,4744,4848,4973,4982,5021,5067,5125,5223,5287,5294,5296,5441,5606,5615,5622,5637,5662,5717,5782,6004,6029,6121,6383,7102,7662,8877,9346,9585,9593,11903,12020,12022,12319,12321,12548,12585,13135,13279,13731,14019,14444,14660,14668,14678,15042,15585,15737,16183,16360,16381,16729,17281,17377,17378,17380,18003,18223,18587,18880,19139,19152,19185,19253,19318,19340,19414,19446,19601,19718,19774,19785,19787,19821,19871,20169,20274,20614,20744,20748,20750,20752,21096,21191,21194,21261,21370,21630,22309,22311,22333,22565,22566,22579,22641,22765,22790,22851,22903,22986,23083]]],["+",[5,4,[[2,1,1,0,1,[[113,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]],[13,2,1,2,3,[[398,2,1,2,3]]],[17,1,1,3,4,[[470,1,1,3,4]]]],[3464,9346,11903,13731]]],["beast",[83,76,[[0,4,4,0,4,[[5,1,1,0,1],[6,1,1,1,2],[7,1,1,2,3],[33,1,1,3,4]]],[1,15,15,4,19,[[57,2,2,4,6],[58,5,5,6,11],[60,1,1,11,12],[61,1,1,12,13],[62,3,3,13,16],[68,1,1,16,17],[71,2,2,17,19]]],[2,20,15,19,34,[[96,3,3,19,22],[100,2,2,22,24],[107,2,1,24,25],[109,5,3,25,28],[113,1,1,28,29],[116,7,5,29,34]]],[3,4,4,34,38,[[119,1,1,34,35],[124,1,1,35,36],[147,2,2,36,38]]],[4,3,3,38,41,[[156,1,1,38,39],[166,1,1,39,40],[179,1,1,40,41]]],[6,1,1,41,42,[[230,1,1,41,42]]],[15,3,2,42,44,[[414,3,2,42,44]]],[18,4,4,44,48,[[513,1,1,44,45],[550,1,1,45,46],[612,1,1,46,47],[624,1,1,47,48]]],[19,1,1,48,49,[[639,1,1,48,49]]],[20,2,2,49,51,[[661,2,2,49,51]]],[22,1,1,51,52,[[741,1,1,51,52]]],[23,12,11,52,63,[[751,1,1,52,53],[753,1,1,53,54],[765,1,1,54,55],[771,1,1,55,56],[775,1,1,56,57],[776,1,1,57,58],[777,3,2,58,60],[780,1,1,60,61],[794,1,1,61,62],[795,1,1,62,63]]],[25,9,9,63,72,[[815,4,4,63,67],[826,1,1,67,68],[830,2,2,68,70],[837,1,1,70,71],[845,1,1,71,72]]],[31,2,2,72,74,[[891,2,2,72,74]]],[35,1,1,74,75,[[906,1,1,74,75]]],[37,1,1,75,76,[[918,1,1,75,76]]]],[144,161,203,1003,1727,1728,1751,1752,1761,1764,1767,1813,1828,1869,1879,1882,2039,2123,2132,2900,2904,2905,3023,3036,3274,3333,3334,3343,3467,3579,3580,3581,3597,3598,3705,3956,4690,4711,5021,5296,5606,7102,12319,12321,14444,15042,16183,16360,16729,17378,17380,18880,19139,19185,19446,19601,19718,19774,19785,19787,19871,20169,20274,20744,20748,20750,20752,21096,21191,21194,21370,21630,22565,22566,22790,22986]]],["beasts",[49,45,[[0,4,3,0,3,[[6,3,2,0,2],[35,1,1,2,3]]],[1,1,1,3,4,[[60,1,1,3,4]]],[2,5,5,4,9,[[100,3,3,4,7],[109,1,1,7,8],[116,1,1,8,9]]],[3,4,3,9,12,[[134,2,1,9,10],[147,2,2,10,12]]],[4,4,4,12,16,[[166,2,2,12,14],[180,1,1,14,15],[184,1,1,15,16]]],[8,1,1,16,17,[[252,1,1,16,17]]],[10,1,1,17,18,[[294,1,1,17,18]]],[11,1,1,18,19,[[315,1,1,18,19]]],[14,2,2,19,21,[[403,2,2,19,21]]],[17,2,2,21,23,[[447,1,1,21,22],[453,1,1,22,23]]],[18,3,3,23,26,[[485,1,1,23,24],[526,2,2,24,26]]],[19,1,1,26,27,[[657,1,1,26,27]]],[20,2,2,27,29,[[661,2,2,27,29]]],[22,3,2,29,31,[[696,2,1,29,30],[708,1,1,30,31]]],[23,6,6,31,37,[[751,1,1,31,32],[756,1,1,32,33],[759,1,1,33,34],[760,1,1,34,35],[763,1,1,35,36],[778,1,1,36,37]]],[25,3,2,37,39,[[809,1,1,37,38],[833,2,1,38,39]]],[28,3,3,39,42,[[876,2,2,39,41],[877,1,1,41,42]]],[32,1,1,42,43,[[897,1,1,42,43]]],[34,1,1,43,44,[[904,1,1,43,44]]],[37,1,1,44,45,[[924,1,1,44,45]]]],[161,167,1046,1811,2999,3000,3043,3343,3596,4272,4675,4694,5294,5296,5637,5782,7662,8877,9593,12020,12022,13135,13279,14019,14660,14668,17281,17377,17378,18003,18223,19152,19253,19318,19340,19414,19821,20614,21261,22309,22311,22333,22641,22765,23083]]],["cattle",[53,51,[[0,13,13,0,13,[[0,3,3,0,3],[1,1,1,3,4],[2,1,1,4,5],[5,1,1,5,6],[6,3,3,6,9],[7,2,2,9,11],[8,1,1,11,12],[46,1,1,12,13]]],[1,2,2,13,15,[[61,1,1,13,14],[69,1,1,14,15]]],[2,5,5,15,20,[[90,1,1,15,16],[94,1,1,16,17],[108,1,1,17,18],[114,1,1,18,19],[115,1,1,19,20]]],[3,7,5,20,25,[[119,4,2,20,22],[147,1,1,22,23],[148,1,1,23,24],[151,1,1,24,25]]],[4,11,11,25,36,[[154,1,1,25,26],[155,1,1,26,27],[157,1,1,27,28],[159,1,1,28,29],[163,1,1,29,30],[165,1,1,30,31],[172,1,1,31,32],[180,3,3,32,35],[182,1,1,35,36]]],[5,4,4,36,40,[[194,2,2,36,38],[197,1,1,38,39],[207,1,1,39,40]]],[11,1,1,40,41,[[315,1,1,40,41]]],[15,2,2,41,43,[[421,1,1,41,42],[422,1,1,42,43]]],[18,4,4,43,47,[[527,1,1,43,44],[581,1,1,44,45],[584,1,1,45,46],[625,1,1,46,47]]],[22,1,1,47,48,[[724,1,1,47,48]]],[31,1,1,48,49,[[892,1,1,48,49]]],[36,1,1,49,50,[[909,1,1,49,50]]],[37,1,1,50,51,[[912,1,1,50,51]]]],[23,24,25,50,69,157,173,180,182,184,200,215,1438,1845,2061,2747,2832,3300,3476,3546,3733,3737,4673,4744,4848,4973,4982,5067,5125,5223,5287,5441,5615,5622,5662,5717,6004,6029,6121,6383,9585,12548,12585,14678,15585,15737,16381,18587,22579,22851,22903]]]]},{"k":"H930","v":[["behemoth",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13879]]]]},{"k":"H931","v":[["*",[16,9,[[1,2,1,0,1,[[78,2,1,0,1]]],[2,12,6,1,7,[[97,4,2,1,3],[103,8,4,3,7]]],[6,2,2,7,9,[[211,2,2,7,9]]]],[2356,2940,2941,3125,3128,3136,3139,6515,6516]]],["+",[2,2,[[6,2,2,0,2,[[211,2,2,0,2]]]],[6515,6516]]],["thumb",[6,6,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,5,5,1,6,[[97,1,1,1,2],[103,4,4,2,6]]]],[2356,2940,3125,3128,3136,3139]]],["thumbs",[1,1,[[2,1,1,0,1,[[97,1,1,0,1]]]],[2941]]],["toe",[6,6,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,5,5,1,6,[[97,1,1,1,2],[103,4,4,2,6]]]],[2356,2940,3125,3128,3136,3139]]],["toes",[1,1,[[2,1,1,0,1,[[97,1,1,0,1]]]],[2941]]]]},{"k":"H932","v":[["Bohan",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[204,1,1,1,2]]]],[6208,6310]]]]},{"k":"H933","v":[["spot",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3091]]]]},{"k":"H934","v":[["*",[12,11,[[2,12,11,0,11,[[102,11,10,0,10],[103,1,1,10,11]]]],[3054,3056,3071,3075,3076,3077,3078,3080,3090,3091,3167]]],["spot",[9,9,[[2,9,9,0,9,[[102,8,8,0,8],[103,1,1,8,9]]]],[3054,3056,3071,3075,3076,3077,3078,3080,3167]]],["spots",[3,2,[[2,3,2,0,2,[[102,3,2,0,2]]]],[3090,3091]]]]},{"k":"H935","v":[["*",[2563,2302,[[0,216,197,0,197,[[1,2,2,0,2],[3,2,2,2,4],[5,6,6,4,10],[6,7,6,10,16],[7,2,2,16,18],[9,3,2,18,20],[10,1,1,20,21],[11,3,3,21,24],[12,2,2,24,26],[13,3,3,26,29],[14,3,3,29,32],[15,3,3,32,35],[17,3,3,35,38],[18,11,11,38,49],[19,3,3,49,52],[21,1,1,52,53],[22,3,3,53,56],[23,10,9,56,65],[24,2,2,65,67],[25,3,3,67,70],[26,13,12,70,82],[27,1,1,82,83],[28,7,6,83,89],[29,8,6,89,95],[30,5,4,95,99],[31,4,4,99,103],[32,5,4,103,107],[33,5,5,107,112],[34,4,4,112,116],[36,10,9,116,125],[37,6,5,125,130],[38,6,4,130,134],[39,1,1,134,135],[40,8,7,135,142],[41,14,13,142,155],[42,13,11,155,166],[43,3,3,166,169],[44,5,5,169,174],[45,9,9,174,183],[46,9,8,183,191],[47,4,3,191,194],[48,2,2,194,196],[49,1,1,196,197]]],[1,124,114,197,311,[[50,3,2,197,199],[51,5,4,199,203],[52,4,4,203,207],[53,2,1,207,208],[54,3,3,208,211],[55,2,2,211,213],[56,2,2,213,215],[57,3,3,215,218],[58,1,1,218,219],[59,4,4,219,223],[60,1,1,223,224],[61,2,2,224,226],[62,2,2,226,228],[63,6,6,228,234],[64,4,4,234,238],[65,5,4,238,242],[66,2,2,242,244],[67,10,10,244,254],[68,5,5,254,259],[69,2,2,259,261],[70,1,1,261,262],[71,4,4,262,266],[72,4,4,266,270],[73,2,2,270,272],[74,1,1,272,273],[75,2,2,273,275],[76,1,1,275,276],[77,4,4,276,280],[78,1,1,280,281],[79,1,1,281,282],[81,3,3,282,285],[82,2,2,285,287],[83,4,4,287,291],[84,13,9,291,300],[85,5,4,300,304],[86,1,1,304,305],[87,1,1,305,306],[88,1,1,306,307],[89,5,4,307,311]]],[2,81,74,311,385,[[91,2,2,311,313],[93,8,7,313,320],[94,7,7,320,327],[95,3,3,327,330],[96,3,2,330,332],[98,1,1,332,333],[99,3,3,333,336],[100,2,2,336,338],[101,2,2,338,340],[102,3,3,340,343],[103,12,10,343,353],[104,2,2,353,355],[105,10,9,355,364],[106,4,3,364,367],[107,1,1,367,368],[108,2,2,368,370],[109,1,1,370,371],[110,2,2,371,373],[111,1,1,373,374],[112,5,4,374,378],[113,1,1,378,379],[114,3,3,379,382],[115,3,3,382,385]]],[3,91,85,385,470,[[120,11,11,385,396],[121,5,4,396,400],[122,4,4,400,404],[123,2,2,404,406],[124,3,3,406,409],[126,2,2,409,411],[129,5,5,411,416],[130,7,6,416,422],[131,4,3,422,425],[132,2,2,425,427],[133,1,1,427,428],[134,1,1,428,429],[135,2,2,429,431],[136,7,7,431,438],[137,4,4,438,442],[138,9,8,442,450],[139,1,1,450,451],[141,2,2,451,453],[143,3,2,453,455],[147,7,6,455,461],[148,5,5,461,466],[149,2,2,466,468],[150,2,2,468,470]]],[4,106,99,470,569,[[153,10,10,470,480],[156,5,5,480,485],[158,3,3,485,488],[159,3,2,488,490],[160,2,2,490,492],[161,5,5,492,497],[162,1,1,497,498],[163,6,5,498,503],[164,6,6,503,509],[165,1,1,509,510],[166,1,1,510,511],[168,1,1,511,512],[169,2,2,512,514],[170,4,3,514,517],[171,1,1,517,518],[172,1,1,518,519],[173,2,2,519,521],[174,1,1,521,522],[175,13,10,522,532],[176,3,3,532,535],[177,1,1,535,536],[178,6,5,536,541],[179,1,1,541,542],[180,7,7,542,549],[181,3,3,549,552],[182,4,4,552,556],[183,7,7,556,563],[184,3,3,563,566],[185,3,3,566,569]]],[5,59,55,569,624,[[187,1,1,569,570],[188,9,7,570,577],[189,3,3,577,580],[191,1,1,580,581],[192,5,5,581,586],[193,1,1,586,587],[194,3,3,587,590],[195,4,4,590,594],[196,5,5,594,599],[197,3,3,599,602],[199,3,2,602,604],[200,1,1,604,605],[201,1,1,605,606],[204,4,4,606,610],[206,1,1,610,611],[207,1,1,611,612],[208,2,2,612,614],[209,7,6,614,620],[210,4,4,620,624]]],[6,95,88,624,712,[[211,2,2,624,626],[212,1,1,626,627],[213,5,5,627,632],[214,3,3,632,635],[215,3,3,635,638],[216,6,5,638,643],[217,5,4,643,647],[218,2,2,647,649],[219,10,10,649,659],[221,7,6,659,665],[222,1,1,665,666],[223,8,7,666,673],[224,2,2,673,675],[225,3,2,675,677],[226,2,2,677,679],[227,2,2,679,681],[228,13,12,681,693],[229,12,11,693,704],[230,4,4,704,708],[231,4,4,708,712]]],[7,18,16,712,728,[[232,4,3,712,715],[233,5,5,715,720],[234,7,6,720,726],[235,2,2,726,728]]],[8,169,152,728,880,[[236,4,4,728,732],[237,7,7,732,739],[238,1,1,739,740],[239,10,8,740,748],[240,4,4,748,752],[241,1,1,752,753],[242,3,2,753,755],[243,1,1,755,756],[244,12,9,756,765],[245,11,10,765,775],[246,5,4,775,779],[247,2,2,779,781],[248,3,3,781,784],[249,3,3,784,787],[250,6,6,787,793],[251,10,8,793,801],[252,11,10,801,811],[253,4,4,811,815],[254,5,5,815,820],[255,13,12,820,832],[256,5,4,832,836],[257,4,3,836,839],[258,4,3,839,842],[259,2,1,842,843],[260,12,12,843,855],[261,7,7,855,862],[262,3,3,862,865],[263,3,3,865,868],[264,3,2,868,870],[265,6,6,870,876],[266,4,4,876,880]]],[9,148,124,880,1004,[[267,4,3,880,883],[268,5,4,883,887],[269,13,8,887,895],[270,5,5,895,900],[271,11,10,900,910],[272,4,4,910,914],[273,2,1,914,915],[274,2,2,915,917],[275,2,2,917,919],[276,5,4,919,923],[277,5,5,923,928],[278,8,5,928,933],[279,11,8,933,941],[280,11,8,941,949],[281,10,9,949,958],[282,6,6,958,964],[283,10,10,964,974],[284,3,3,974,977],[285,12,11,977,988],[286,7,6,988,994],[289,4,4,994,998],[290,8,6,998,1004]]],[10,114,103,1004,1107,[[291,14,13,1004,1017],[292,6,5,1017,1022],[293,5,5,1022,1027],[294,2,2,1027,1029],[297,2,2,1029,1031],[298,6,6,1031,1037],[299,3,2,1037,1039],[300,10,9,1039,1048],[301,5,3,1048,1051],[302,4,4,1051,1055],[303,12,12,1055,1067],[304,12,9,1067,1076],[305,2,2,1076,1078],[306,2,2,1078,1080],[307,5,5,1080,1085],[308,2,2,1085,1087],[309,4,4,1087,1091],[310,5,5,1091,1096],[311,6,5,1096,1101],[312,7,6,1101,1107]]],[11,152,129,1107,1236,[[313,1,1,1107,1108],[314,2,2,1108,1110],[315,2,2,1110,1112],[316,15,14,1112,1126],[317,12,11,1126,1137],[318,6,5,1137,1142],[319,11,7,1142,1149],[320,5,4,1149,1153],[321,13,11,1153,1164],[322,14,10,1164,1174],[323,11,9,1174,1183],[324,6,4,1183,1187],[325,2,1,1187,1188],[326,2,2,1188,1190],[327,3,3,1190,1193],[328,3,3,1193,1196],[329,2,2,1196,1198],[330,5,4,1198,1202],[331,10,9,1202,1211],[332,6,4,1211,1215],[333,1,1,1215,1216],[334,4,4,1216,1220],[335,6,6,1220,1226],[336,3,3,1226,1229],[337,7,7,1229,1236]]],[12,62,58,1236,1294,[[339,2,2,1236,1238],[341,3,3,1238,1241],[342,2,2,1241,1243],[344,2,2,1243,1245],[346,2,2,1245,1247],[347,4,4,1247,1251],[348,7,7,1251,1258],[349,9,9,1258,1267],[350,4,3,1267,1270],[351,2,2,1270,1272],[352,1,1,1272,1273],[353,3,3,1273,1276],[354,2,1,1276,1277],[355,2,2,1277,1279],[356,8,6,1279,1285],[357,1,1,1285,1286],[358,4,4,1286,1290],[359,2,2,1290,1292],[361,1,1,1292,1293],[364,1,1,1293,1294]]],[13,159,139,1294,1433,[[367,2,2,1294,1296],[368,1,1,1296,1297],[371,3,3,1297,1300],[372,3,2,1300,1302],[373,4,4,1302,1306],[374,3,2,1306,1308],[375,11,8,1308,1316],[376,3,3,1316,1319],[377,2,2,1319,1321],[378,5,4,1321,1325],[379,2,2,1325,1327],[380,2,2,1327,1329],[381,4,4,1329,1333],[382,2,2,1333,1335],[383,2,1,1335,1336],[384,5,4,1336,1340],[385,1,1,1340,1341],[386,13,11,1341,1352],[387,1,1,1352,1353],[388,4,3,1353,1356],[389,13,11,1356,1367],[390,9,8,1367,1375],[391,8,6,1375,1381],[392,3,3,1381,1384],[393,1,1,1384,1385],[394,9,9,1385,1394],[395,9,8,1394,1402],[396,8,7,1402,1409],[397,6,6,1409,1415],[398,7,6,1415,1421],[399,2,2,1421,1423],[400,6,5,1423,1428],[401,1,1,1428,1429],[402,4,4,1429,1433]]],[14,17,16,1433,1449,[[404,2,2,1433,1435],[405,3,2,1435,1437],[409,2,2,1437,1439],[410,6,6,1439,1445],[411,2,2,1445,1447],[412,2,2,1447,1449]]],[15,49,44,1449,1493,[[413,2,2,1449,1451],[414,6,6,1451,1457],[415,1,1,1457,1458],[416,3,3,1458,1461],[417,1,1,1461,1462],[418,6,3,1462,1465],[419,1,1,1465,1466],[420,4,4,1466,1470],[421,5,4,1470,1474],[422,7,7,1474,1481],[423,1,1,1481,1482],[424,1,1,1482,1483],[425,11,10,1483,1493]]],[16,37,31,1493,1524,[[426,5,4,1493,1497],[427,6,4,1497,1501],[428,1,1,1501,1502],[429,8,6,1502,1508],[430,7,6,1508,1514],[431,6,6,1514,1520],[432,1,1,1520,1521],[433,1,1,1521,1522],[434,2,2,1522,1524]]],[17,52,46,1524,1570,[[436,8,7,1524,1531],[437,6,3,1531,1534],[438,5,5,1534,1539],[439,1,1,1539,1540],[440,2,2,1540,1542],[441,2,2,1542,1544],[444,1,1,1544,1545],[447,1,1,1545,1546],[448,1,1,1546,1547],[449,2,2,1547,1549],[450,1,1,1549,1550],[452,1,1,1550,1551],[454,1,1,1551,1552],[455,1,1,1552,1553],[456,1,1,1553,1554],[457,2,2,1554,1556],[458,1,1,1556,1557],[462,1,1,1557,1558],[463,1,1,1558,1559],[464,1,1,1559,1560],[465,2,1,1560,1561],[469,1,1,1561,1562],[472,2,2,1562,1564],[473,3,3,1564,1567],[476,2,2,1567,1569],[477,2,1,1569,1570]]],[18,74,72,1570,1642,[[482,1,1,1570,1571],[495,1,1,1571,1572],[499,1,1,1572,1573],[501,2,2,1573,1575],[503,1,1,1575,1576],[512,1,1,1576,1577],[513,1,1,1577,1578],[514,2,2,1578,1580],[517,1,1,1580,1581],[518,1,1,1581,1582],[519,1,1,1582,1583],[520,2,2,1583,1585],[521,1,1,1585,1586],[522,2,2,1586,1588],[526,1,1,1588,1589],[527,1,1,1589,1590],[532,1,1,1590,1591],[540,1,1,1591,1592],[542,1,1,1592,1593],[543,3,3,1593,1596],[546,3,3,1596,1599],[548,3,3,1599,1602],[550,1,1,1602,1603],[551,1,1,1603,1604],[555,3,3,1604,1607],[556,2,2,1607,1609],[563,1,1,1609,1610],[565,1,1,1610,1611],[567,1,1,1611,1612],[572,2,2,1612,1614],[573,3,2,1614,1616],[575,1,1,1616,1617],[577,2,2,1617,1619],[578,1,1,1619,1620],[579,2,2,1620,1622],[582,6,6,1622,1628],[586,2,2,1628,1630],[595,3,3,1630,1633],[596,3,3,1633,1636],[598,2,2,1636,1638],[603,2,1,1638,1639],[609,2,2,1639,1641],[620,1,1,1641,1642]]],[19,34,31,1642,1673,[[628,3,2,1642,1644],[629,2,2,1644,1646],[630,1,1,1646,1647],[631,1,1,1647,1648],[633,4,4,1648,1652],[634,2,2,1652,1654],[637,1,1,1654,1655],[638,4,3,1655,1658],[640,1,1,1658,1659],[645,4,3,1659,1662],[648,1,1,1662,1663],[649,1,1,1663,1664],[650,3,3,1664,1667],[651,2,2,1667,1669],[653,1,1,1669,1670],[654,1,1,1670,1671],[655,1,1,1671,1672],[658,1,1,1672,1673]]],[20,15,15,1673,1688,[[659,2,2,1673,1675],[660,2,2,1675,1677],[661,1,1,1677,1678],[663,3,3,1678,1681],[664,1,1,1681,1682],[666,1,1,1682,1683],[667,1,1,1683,1684],[669,2,2,1684,1686],[670,2,2,1686,1688]]],[21,10,9,1688,1697,[[671,1,1,1688,1689],[672,2,2,1689,1691],[673,1,1,1691,1692],[674,3,2,1692,1694],[675,1,1,1694,1695],[678,2,2,1695,1697]]],[22,123,112,1697,1809,[[679,3,3,1697,1700],[680,3,3,1700,1703],[681,1,1,1703,1704],[683,2,2,1704,1706],[685,5,4,1706,1710],[688,2,2,1710,1712],[691,5,5,1712,1717],[692,3,3,1717,1720],[694,2,2,1720,1722],[697,2,2,1722,1724],[698,1,1,1724,1725],[699,2,2,1725,1727],[700,1,1,1727,1728],[701,1,1,1728,1729],[702,1,1,1729,1730],[704,2,2,1730,1732],[705,3,3,1732,1735],[706,1,1,1735,1736],[708,4,4,1736,1740],[709,1,1,1740,1741],[710,1,1,1741,1742],[713,3,2,1742,1744],[714,3,3,1744,1747],[715,10,9,1747,1756],[716,1,1,1756,1757],[717,4,2,1757,1759],[718,1,1,1759,1760],[719,3,3,1760,1763],[720,1,1,1763,1764],[721,3,3,1764,1767],[722,1,1,1767,1768],[723,2,2,1768,1770],[724,1,1,1770,1771],[725,6,4,1771,1775],[726,3,3,1775,1778],[727,3,3,1778,1781],[728,1,1,1781,1782],[729,1,1,1782,1783],[730,1,1,1783,1784],[734,2,2,1784,1786],[735,1,1,1786,1787],[736,1,1,1787,1788],[737,3,3,1788,1791],[738,11,9,1791,1800],[740,1,1,1800,1801],[741,2,2,1801,1803],[744,8,6,1803,1809]]],[23,213,197,1809,2006,[[745,1,1,1809,1810],[746,4,3,1810,1813],[747,2,2,1813,1815],[748,5,5,1815,1820],[749,2,2,1820,1822],[750,5,5,1822,1827],[751,3,3,1827,1830],[752,3,3,1830,1833],[753,4,3,1833,1836],[754,2,2,1836,1838],[755,3,3,1838,1841],[756,1,1,1841,1842],[757,2,2,1842,1844],[758,2,2,1844,1846],[759,2,2,1846,1848],[760,4,4,1848,1852],[761,13,11,1852,1863],[762,1,1,1863,1864],[763,4,4,1864,1868],[764,2,2,1868,1870],[765,1,1,1870,1871],[766,3,3,1871,1874],[767,5,5,1874,1879],[768,1,1,1879,1880],[769,3,3,1880,1883],[770,3,3,1883,1886],[771,6,6,1886,1892],[772,3,3,1892,1895],[774,1,1,1895,1896],[775,6,6,1896,1902],[776,7,6,1902,1908],[777,3,3,1908,1911],[778,2,2,1911,1913],[779,5,4,1913,1917],[780,9,7,1917,1924],[781,4,4,1924,1928],[782,3,3,1928,1931],[783,4,4,1931,1935],[784,9,7,1935,1942],[785,6,5,1942,1947],[786,8,6,1947,1953],[787,4,3,1953,1956],[788,5,5,1956,1961],[789,1,1,1961,1962],[790,6,5,1962,1967],[791,2,2,1967,1969],[792,5,5,1969,1974],[793,10,9,1974,1983],[794,6,6,1983,1989],[795,13,13,1989,2002],[796,4,4,2002,2006]]],[24,10,9,2006,2015,[[797,5,4,2006,2010],[799,1,1,2010,2011],[800,2,2,2011,2013],[801,2,2,2013,2015]]],[25,190,164,2015,2179,[[802,1,1,2015,2016],[803,1,1,2016,2017],[804,5,4,2017,2021],[805,1,1,2021,2022],[806,1,1,2022,2023],[807,1,1,2023,2024],[808,13,10,2024,2034],[809,6,6,2034,2040],[810,2,1,2040,2041],[811,4,3,2041,2044],[812,5,5,2044,2049],[813,2,2,2049,2051],[814,1,1,2051,2052],[815,7,5,2052,2057],[817,4,4,2057,2061],[818,6,5,2061,2066],[820,3,2,2066,2068],[821,10,10,2068,2078],[822,7,6,2078,2084],[823,2,2,2084,2086],[824,10,7,2086,2093],[825,4,4,2093,2097],[827,2,2,2097,2099],[828,1,1,2099,2100],[829,1,1,2100,2101],[830,1,1,2101,2102],[831,3,3,2102,2105],[833,2,2,2105,2107],[834,12,9,2107,2116],[835,1,1,2116,2117],[837,6,5,2117,2122],[838,5,5,2122,2127],[839,8,8,2127,2135],[840,3,3,2135,2138],[841,10,10,2138,2148],[842,3,3,2148,2151],[843,4,4,2151,2155],[844,4,4,2155,2159],[845,11,10,2159,2169],[847,10,5,2169,2174],[848,6,4,2174,2178],[849,1,1,2178,2179]]],[26,43,35,2179,2214,[[850,6,4,2179,2183],[851,1,1,2183,2184],[857,4,3,2184,2187],[858,6,6,2187,2193],[859,6,5,2193,2198],[860,20,16,2198,2214]]],[27,11,10,2214,2224,[[865,1,1,2214,2215],[867,1,1,2215,2216],[868,1,1,2216,2217],[870,4,3,2217,2220],[871,1,1,2220,2221],[872,1,1,2221,2222],[874,2,2,2222,2224]]],[28,8,8,2224,2232,[[876,2,2,2224,2226],[877,3,3,2226,2229],[878,3,3,2229,2232]]],[29,13,12,2232,2244,[[882,4,3,2232,2235],[883,3,3,2235,2238],[884,2,2,2238,2240],[886,3,3,2240,2243],[887,1,1,2243,2244]]],[30,4,3,2244,2247,[[888,4,3,2244,2247]]],[31,5,4,2247,2251,[[889,3,2,2247,2249],[890,1,1,2249,2250],[891,1,1,2250,2251]]],[32,11,10,2251,2261,[[893,3,2,2251,2253],[895,2,2,2253,2255],[896,2,2,2255,2257],[897,2,2,2257,2259],[899,2,2,2259,2261]]],[33,1,1,2261,2262,[[902,1,1,2261,2262]]],[34,6,5,2262,2267,[[903,2,2,2262,2264],[904,2,1,2264,2265],[905,2,2,2265,2267]]],[35,3,2,2267,2269,[[907,2,1,2267,2268],[908,1,1,2268,2269]]],[36,8,7,2269,2276,[[909,5,5,2269,2274],[910,3,2,2274,2276]]],[37,22,19,2276,2295,[[911,2,1,2276,2277],[912,1,1,2277,2278],[913,1,1,2278,2279],[915,1,1,2279,2280],[916,4,2,2280,2282],[918,4,4,2282,2286],[919,1,1,2286,2287],[920,1,1,2287,2288],[922,1,1,2288,2289],[923,1,1,2289,2290],[924,5,5,2290,2295]]],[38,10,7,2295,2302,[[925,2,1,2295,2296],[927,4,3,2296,2299],[928,4,3,2299,2302]]]],[49,52,82,83,141,150,154,155,156,157,160,166,168,172,174,175,192,194,253,264,297,303,309,312,328,336,341,343,349,372,375,377,383,385,389,435,443,445,458,460,462,465,466,467,479,480,488,490,491,498,504,508,556,573,581,589,592,621,622,623,632,633,653,654,658,676,687,702,719,724,731,732,734,737,739,741,745,752,757,758,760,762,784,801,804,808,816,818,825,833,834,844,846,863,868,891,897,906,912,934,936,939,941,961,971,974,978,985,987,1000,1005,1007,1017,1020,1027,1038,1085,1093,1097,1102,1106,1108,1111,1113,1115,1121,1127,1128,1135,1137,1160,1163,1165,1166,1178,1209,1216,1224,1230,1245,1249,1252,1257,1258,1259,1261,1262,1264,1267,1271,1272,1273,1281,1286,1289,1292,1299,1306,1307,1308,1311,1313,1314,1315,1316,1320,1338,1354,1356,1374,1375,1376,1377,1383,1387,1392,1393,1394,1412,1413,1414,1417,1418,1421,1424,1425,1427,1434,1435,1437,1438,1453,1456,1458,1479,1483,1516,1533,1551,1564,1570,1571,1572,1580,1588,1592,1597,1607,1633,1647,1655,1663,1666,1695,1708,1711,1713,1734,1743,1778,1780,1781,1803,1807,1839,1841,1872,1878,1905,1906,1909,1911,1912,1917,1937,1939,1943,1947,1948,1952,1969,1982,1991,1995,2004,2005,2006,2011,2014,2015,2018,2021,2022,2025,2027,2028,2030,2033,2035,2071,2075,2080,2122,2126,2128,2139,2163,2164,2167,2171,2180,2195,2209,2246,2268,2279,2322,2323,2328,2336,2366,2402,2440,2441,2459,2481,2482,2508,2522,2530,2531,2536,2541,2552,2553,2554,2555,2556,2558,2560,2569,2570,2571,2572,2609,2640,2697,2711,2728,2739,2742,2764,2770,2799,2800,2809,2811,2818,2823,2827,2836,2837,2838,2841,2842,2845,2848,2855,2870,2879,2908,2909,2976,2986,2992,2995,3029,3031,3048,3050,3054,3061,3068,3113,3119,3134,3145,3146,3147,3153,3155,3157,3159,3182,3197,3203,3204,3213,3216,3218,3224,3227,3228,3229,3239,3240,3244,3254,3302,3304,3340,3356,3368,3376,3412,3416,3417,3419,3457,3471,3491,3494,3549,3560,3565,3746,3748,3758,3762,3763,3766,3773,3778,3782,3786,3790,3807,3814,3816,3819,3829,3833,3835,3836,3853,3939,3954,3961,3963,3997,4009,4096,4097,4098,4101,4102,4111,4116,4124,4132,4138,4139,4155,4171,4178,4208,4237,4252,4270,4296,4303,4312,4315,4316,4317,4323,4333,4335,4341,4347,4363,4367,4382,4384,4389,4391,4395,4411,4413,4414,4433,4477,4479,4571,4575,4676,4678,4685,4687,4688,4718,4720,4724,4727,4735,4737,4769,4800,4818,4824,4899,4900,4911,4912,4914,4916,4923,4929,4930,4931,5005,5009,5025,5038,5042,5096,5104,5109,5112,5137,5138,5144,5158,5161,5162,5164,5185,5197,5213,5216,5218,5237,5239,5245,5246,5249,5251,5266,5269,5274,5319,5348,5373,5378,5390,5393,5406,5411,5446,5459,5460,5483,5501,5502,5503,5508,5510,5511,5518,5520,5524,5525,5535,5538,5540,5552,5567,5568,5569,5575,5576,5588,5613,5617,5626,5630,5632,5656,5674,5686,5701,5706,5709,5713,5724,5726,5730,5735,5739,5744,5748,5749,5751,5775,5802,5810,5812,5817,5826,5862,5870,5871,5872,5873,5887,5891,5892,5894,5901,5908,5948,5950,5960,5968,5971,5972,5999,6013,6021,6031,6043,6045,6046,6054,6073,6077,6083,6084,6091,6112,6114,6128,6155,6159,6198,6220,6296,6297,6299,6302,6378,6426,6436,6441,6461,6462,6467,6472,6474,6475,6482,6483,6484,6487,6516,6523,6546,6571,6588,6590,6592,6595,6619,6620,6621,6642,6646,6651,6658,6659,6665,6672,6673,6707,6711,6713,6719,6723,6734,6759,6769,6778,6780,6781,6785,6791,6800,6806,6811,6836,6841,6845,6847,6862,6863,6878,6890,6892,6893,6894,6895,6896,6901,6914,6927,6930,6943,6950,6951,6988,6989,6995,6996,7000,7001,7002,7003,7006,7008,7010,7011,7013,7020,7027,7034,7038,7039,7040,7041,7045,7046,7047,7050,7053,7058,7064,7080,7088,7104,7110,7114,7124,7129,7146,7149,7152,7153,7156,7161,7167,7176,7179,7186,7187,7188,7189,7201,7203,7231,7234,7236,7237,7253,7254,7255,7267,7271,7274,7276,7286,7300,7302,7303,7304,7309,7310,7311,7313,7320,7321,7324,7329,7345,7353,7365,7373,7396,7397,7398,7403,7404,7405,7406,7407,7413,7421,7423,7425,7426,7427,7428,7431,7432,7440,7445,7449,7450,7454,7456,7468,7472,7493,7495,7496,7528,7533,7534,7565,7567,7572,7573,7575,7580,7597,7599,7600,7601,7606,7607,7612,7616,7630,7636,7638,7640,7652,7661,7663,7670,7672,7675,7682,7689,7692,7703,7713,7722,7724,7728,7729,7731,7738,7739,7749,7751,7757,7759,7767,7768,7770,7771,7772,7773,7782,7786,7787,7792,7796,7798,7817,7820,7837,7842,7866,7869,7870,7873,7880,7887,7888,7894,7895,7896,7897,7901,7906,7908,7909,7910,7912,7915,7920,7938,7939,7941,7946,7950,7963,7973,7977,7979,7981,7987,7999,8001,8004,8013,8016,8017,8021,8024,8025,8032,8053,8072,8073,8078,8088,8094,8101,8103,8104,8105,8106,8116,8124,8125,8126,8127,8128,8133,8134,8135,8138,8140,8145,8150,8152,8155,8157,8163,8166,8173,8174,8198,8214,8216,8233,8237,8242,8254,8256,8257,8263,8266,8269,8270,8281,8287,8290,8302,8306,8310,8322,8323,8327,8328,8341,8347,8352,8353,8359,8366,8371,8379,8385,8387,8388,8389,8391,8393,8395,8402,8407,8409,8417,8421,8426,8431,8440,8441,8442,8447,8448,8451,8455,8461,8463,8466,8467,8469,8473,8474,8476,8487,8505,8509,8514,8516,8518,8519,8522,8526,8531,8535,8536,8541,8552,8557,8562,8566,8568,8569,8576,8666,8669,8672,8676,8698,8699,8700,8705,8710,8713,8718,8720,8730,8731,8732,8739,8740,8745,8749,8752,8759,8764,8770,8783,8789,8798,8800,8810,8817,8823,8831,8832,8840,8872,8878,8948,8985,8988,8991,9016,9026,9027,9050,9060,9079,9080,9081,9086,9089,9090,9091,9093,9101,9104,9110,9125,9126,9152,9154,9163,9172,9185,9191,9192,9194,9195,9196,9198,9200,9205,9206,9209,9213,9221,9222,9223,9224,9228,9230,9231,9235,9246,9264,9266,9293,9301,9323,9327,9329,9330,9335,9353,9387,9390,9391,9396,9402,9438,9440,9441,9447,9451,9455,9456,9464,9472,9480,9495,9505,9507,9510,9516,9517,9546,9555,9566,9596,9600,9604,9607,9610,9613,9614,9623,9628,9630,9635,9636,9639,9640,9642,9645,9651,9652,9653,9655,9656,9662,9665,9667,9669,9671,9672,9678,9688,9694,9697,9706,9711,9712,9713,9715,9716,9717,9719,9728,9734,9736,9741,9758,9761,9762,9767,9773,9774,9775,9776,9786,9787,9790,9795,9799,9800,9801,9805,9810,9814,9816,9817,9818,9833,9834,9837,9838,9842,9844,9845,9847,9848,9854,9859,9863,9866,9891,9909,9921,9939,9944,9954,9969,9974,9975,10007,10011,10041,10045,10056,10061,10062,10064,10066,10084,10086,10088,10089,10093,10094,10099,10112,10115,10118,10131,10149,10154,10161,10165,10173,10176,10182,10183,10195,10199,10212,10213,10218,10223,10224,10229,10230,10245,10247,10248,10327,10361,10395,10423,10426,10437,10454,10557,10558,10640,10643,10663,10666,10667,10671,10675,10676,10678,10691,10692,10694,10698,10721,10736,10737,10739,10742,10743,10751,10758,10760,10765,10769,10772,10783,10788,10820,10821,10849,10853,10879,10895,10897,10909,10910,10914,10916,10922,10924,10927,10936,10938,10945,10955,10968,10983,11034,11110,11204,11207,11227,11269,11272,11275,11304,11314,11326,11332,11335,11346,11357,11364,11365,11370,11374,11376,11377,11378,11385,11388,11396,11398,11407,11415,11430,11440,11441,11442,11448,11462,11466,11484,11486,11495,11501,11502,11508,11510,11516,11534,11556,11566,11571,11576,11586,11588,11589,11591,11596,11597,11598,11599,11609,11611,11612,11615,11636,11645,11651,11653,11658,11660,11662,11663,11664,11668,11670,11671,11673,11675,11676,11683,11686,11687,11688,11691,11694,11700,11701,11711,11712,11714,11716,11718,11727,11740,11748,11749,11757,11769,11772,11773,11776,11777,11779,11781,11784,11791,11795,11806,11807,11808,11809,11812,11822,11823,11828,11832,11835,11838,11842,11852,11854,11859,11860,11862,11864,11866,11870,11876,11877,11879,11896,11898,11901,11919,11922,11942,11947,11949,11957,11961,11988,11997,12000,12003,12011,12029,12095,12104,12105,12181,12182,12216,12218,12219,12231,12233,12236,12248,12250,12260,12266,12298,12305,12314,12315,12316,12317,12318,12322,12332,12367,12370,12371,12399,12411,12412,12418,12427,12494,12495,12508,12509,12526,12534,12535,12544,12578,12580,12583,12584,12585,12586,12588,12589,12651,12672,12677,12678,12683,12686,12687,12689,12690,12692,12693,12713,12714,12719,12721,12736,12737,12738,12739,12756,12764,12766,12770,12771,12773,12778,12783,12784,12787,12789,12791,12793,12794,12797,12798,12799,12801,12807,12808,12818,12845,12859,12875,12876,12883,12885,12886,12887,12888,12892,12893,12902,12910,12911,12928,12929,12930,12935,12972,12977,12986,12998,13083,13134,13169,13184,13195,13224,13270,13309,13348,13372,13393,13410,13422,13490,13524,13545,13583,13711,13777,13778,13804,13809,13815,13901,13904,13933,13980,14124,14235,14248,14250,14277,14418,14449,14463,14465,14532,14548,14557,14569,14570,14588,14611,14612,14667,14671,14737,14848,14862,14884,14885,14886,14936,14937,14962,14979,14992,14994,15037,15053,15142,15167,15184,15186,15196,15293,15310,15390,15460,15465,15473,15478,15499,15510,15512,15515,15522,15534,15624,15625,15629,15637,15640,15646,15772,15773,15888,15889,15895,15939,15975,16068,16082,16089,16121,16154,16158,16295,16426,16427,16443,16452,16480,16504,16543,16551,16555,16569,16595,16597,16680,16690,16696,16715,16759,16904,16907,16918,17011,17039,17054,17056,17074,17104,17113,17143,17179,17218,17298,17319,17320,17345,17349,17381,17400,17412,17413,17421,17468,17489,17521,17522,17524,17537,17541,17558,17562,17575,17590,17598,17599,17642,17651,17666,17667,17677,17695,17704,17706,17721,17758,17765,17799,17801,17806,17807,17853,17878,17908,17911,17912,17915,17928,17930,17937,17959,17972,17981,18005,18027,18030,18036,18044,18067,18078,18105,18132,18150,18157,18162,18164,18179,18225,18230,18244,18246,18252,18269,18324,18330,18336,18347,18352,18353,18355,18357,18376,18378,18380,18381,18385,18386,18391,18415,18418,18430,18454,18473,18476,18489,18510,18511,18528,18540,18581,18585,18597,18604,18608,18610,18612,18617,18619,18629,18648,18654,18658,18664,18684,18697,18754,18760,18767,18793,18814,18819,18820,18822,18825,18826,18827,18830,18832,18834,18838,18841,18865,18867,18870,18926,18929,18937,18940,18942,18945,18961,18968,18972,18996,19016,19020,19032,19033,19039,19043,19056,19070,19073,19092,19108,19109,19111,19115,19121,19129,19151,19160,19167,19169,19192,19196,19200,19210,19223,19234,19237,19249,19261,19267,19286,19296,19311,19323,19324,19341,19344,19350,19355,19363,19365,19372,19375,19376,19377,19378,19381,19382,19383,19384,19406,19410,19413,19421,19422,19427,19428,19453,19456,19458,19477,19489,19491,19492,19496,19501,19525,19543,19547,19565,19574,19593,19595,19599,19603,19607,19608,19614,19618,19621,19622,19627,19670,19699,19700,19703,19718,19722,19729,19738,19739,19754,19755,19760,19773,19780,19786,19789,19804,19811,19825,19827,19834,19840,19847,19848,19851,19856,19862,19871,19873,19878,19888,19890,19893,19906,19920,19922,19924,19926,19930,19939,19944,19945,19947,19949,19951,19953,19954,19958,19962,19963,19964,19974,19989,19990,19992,19993,19994,19997,19999,20004,20008,20012,20018,20022,20024,20038,20045,20058,20063,20065,20066,20067,20077,20078,20088,20092,20096,20101,20124,20129,20131,20132,20135,20136,20141,20159,20163,20164,20170,20171,20192,20193,20197,20207,20222,20225,20245,20258,20259,20260,20263,20264,20265,20268,20272,20273,20276,20280,20281,20287,20288,20314,20320,20331,20332,20367,20432,20438,20446,20451,20468,20494,20506,20513,20517,20526,20543,20563,20566,20579,20582,20583,20584,20587,20589,20599,20601,20602,20603,20607,20611,20613,20614,20618,20620,20624,20635,20636,20639,20656,20663,20671,20673,20679,20693,20696,20717,20732,20735,20738,20748,20753,20769,20770,20778,20795,20828,20829,20837,20838,20845,20885,20890,20896,20898,20905,20910,20923,20924,20930,20932,20933,20937,20951,20963,20964,20969,20971,20973,20979,20980,21024,21029,21031,21046,21047,21049,21051,21070,21072,21080,21082,21107,21110,21147,21164,21191,21208,21213,21215,21257,21259,21282,21283,21284,21286,21301,21302,21310,21311,21313,21326,21367,21379,21380,21381,21383,21402,21406,21407,21409,21418,21433,21434,21436,21438,21440,21441,21442,21443,21450,21456,21465,21478,21479,21480,21481,21483,21494,21505,21509,21512,21525,21527,21529,21532,21553,21561,21564,21566,21574,21575,21576,21577,21601,21602,21603,21606,21608,21615,21616,21620,21624,21626,21657,21663,21664,21665,21674,21687,21688,21694,21699,21703,21738,21739,21740,21755,21760,21966,21967,21978,22000,22001,22002,22011,22012,22014,22018,22027,22028,22029,22035,22042,22043,22044,22045,22046,22049,22051,22052,22053,22057,22060,22065,22066,22076,22077,22081,22148,22170,22179,22212,22215,22218,22237,22249,22279,22281,22304,22306,22312,22320,22342,22348,22354,22356,22411,22412,22414,22428,22432,22442,22451,22464,22483,22490,22492,22508,22515,22521,22523,22534,22539,22555,22562,22588,22594,22614,22619,22628,22630,22638,22639,22668,22676,22726,22739,22740,22751,22771,22784,22807,22840,22842,22846,22848,22849,22854,22862,22871,22899,22909,22920,22940,22957,22962,22984,22986,22996,22998,23008,23026,23054,23068,23069,23073,23084,23086,23089,23102,23121,23122,23130,23139,23143,23144]]],["+",[158,145,[[0,17,15,0,15,[[5,1,1,0,1],[7,1,1,1,2],[18,1,1,2,3],[23,1,1,3,4],[36,3,2,4,6],[38,1,1,6,7],[40,2,1,7,8],[41,1,1,8,9],[42,3,3,9,12],[46,3,3,12,15]]],[1,15,14,15,29,[[55,1,1,15,16],[63,1,1,16,17],[67,1,1,17,18],[74,1,1,18,19],[75,1,1,19,20],[84,3,3,20,23],[85,1,1,23,24],[86,1,1,24,25],[87,1,1,25,26],[88,1,1,26,27],[89,3,2,27,29]]],[2,18,16,29,45,[[91,1,1,29,30],[93,2,2,30,32],[94,4,4,32,36],[96,3,2,36,38],[103,2,1,38,39],[105,1,1,39,40],[106,1,1,40,41],[108,1,1,41,42],[112,3,3,42,45]]],[3,10,9,45,54,[[121,2,1,45,46],[123,1,1,46,47],[124,1,1,47,48],[130,1,1,48,49],[131,1,1,49,50],[136,3,3,50,53],[147,1,1,53,54]]],[4,5,5,54,59,[[158,1,1,54,55],[164,1,1,55,56],[172,1,1,56,57],[178,1,1,57,58],[183,1,1,58,59]]],[5,1,1,59,60,[[210,1,1,59,60]]],[8,11,10,60,70,[[236,1,1,60,61],[244,2,1,61,62],[250,1,1,62,63],[253,1,1,63,64],[254,1,1,64,65],[255,1,1,65,66],[256,1,1,66,67],[260,2,2,67,69],[261,1,1,69,70]]],[9,6,6,70,76,[[269,1,1,70,71],[270,1,1,71,72],[271,1,1,72,73],[272,1,1,73,74],[280,1,1,74,75],[285,1,1,75,76]]],[10,5,5,76,81,[[292,1,1,76,77],[297,1,1,77,78],[298,2,2,78,80],[305,1,1,80,81]]],[11,7,7,81,88,[[323,1,1,81,82],[326,1,1,82,83],[332,1,1,83,84],[335,2,2,84,86],[336,1,1,86,87],[337,1,1,87,88]]],[12,6,6,88,94,[[348,1,1,88,89],[350,2,2,89,91],[353,1,1,91,92],[358,1,1,92,93],[359,1,1,93,94]]],[13,13,13,94,107,[[371,2,2,94,96],[373,2,2,96,98],[378,1,1,98,99],[389,1,1,99,100],[390,1,1,100,101],[391,1,1,101,102],[394,2,2,102,104],[395,1,1,104,105],[397,1,1,105,106],[400,1,1,106,107]]],[15,6,6,107,113,[[420,2,2,107,109],[422,3,3,109,112],[425,1,1,112,113]]],[16,4,4,113,117,[[426,1,1,113,114],[430,1,1,114,115],[431,2,2,115,117]]],[18,3,2,117,119,[[551,1,1,117,118],[603,2,1,118,119]]],[20,5,5,119,124,[[660,1,1,119,120],[663,2,2,120,122],[669,1,1,122,123],[670,1,1,123,124]]],[21,1,1,124,125,[[673,1,1,124,125]]],[22,4,3,125,128,[[701,1,1,125,126],[702,1,1,126,127],[744,2,1,127,128]]],[23,9,8,128,136,[[767,1,1,128,129],[771,2,2,129,131],[776,1,1,131,132],[780,2,1,132,133],[783,1,1,133,134],[793,1,1,134,135],[796,1,1,135,136]]],[24,1,1,136,137,[[801,1,1,136,137]]],[25,1,1,137,138,[[811,1,1,137,138]]],[26,4,2,138,140,[[860,4,2,138,140]]],[29,1,1,140,141,[[884,1,1,140,141]]],[34,2,1,141,142,[[904,2,1,141,142]]],[37,2,2,142,144,[[913,1,1,142,143],[923,1,1,143,144]]],[38,1,1,144,145,[[925,1,1,144,145]]]],[154,192,467,653,1093,1111,1165,1216,1286,1306,1307,1314,1427,1434,1437,1663,1906,2018,2209,2246,2552,2555,2558,2572,2609,2640,2697,2711,2728,2770,2799,2818,2836,2837,2841,2845,2908,2909,3159,3216,3240,3302,3412,3416,3417,3807,3853,3961,4124,4178,4315,4316,4323,4676,5109,5251,5446,5576,5751,6483,7237,7397,7580,7703,7713,7738,7787,7887,7894,7909,8094,8128,8134,8174,8379,8518,8810,8985,8991,9050,9264,9844,9921,10118,10173,10176,10212,10224,10675,10765,10772,10821,10936,10983,11269,11275,11332,11346,11448,11670,11691,11718,11772,11777,11795,11866,11949,12494,12495,12580,12584,12588,12689,12713,12789,12794,12807,15053,16121,17345,17412,17413,17521,17537,17575,18078,18105,18942,19492,19607,19608,19773,19871,19939,20159,20281,20446,20635,22046,22049,22464,22751,22920,23068,23102]]],["Apply",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17056]]],["Bring",[5,5,[[0,1,1,0,1,[[26,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[22,1,1,2,3,[[679,1,1,2,3]]],[29,1,1,3,4,[[882,1,1,3,4]]],[38,1,1,4,5,[[927,1,1,4,5]]]],[734,8327,17667,22411,23130]]],["Camest",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8269]]],["Come",[13,13,[[0,1,1,0,1,[[6,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[9,2,2,2,4,[[279,1,1,2,3],[280,1,1,3,4]]],[10,1,1,4,5,[[303,1,1,4,5]]],[21,1,1,5,6,[[674,1,1,5,6]]],[23,4,4,6,10,[[779,1,1,6,7],[785,1,1,7,8],[794,2,2,8,10]]],[25,2,2,10,12,[[834,1,1,10,11],[838,1,1,11,12]]],[29,1,1,12,13,[[882,1,1,12,13]]]],[160,4367,8328,8388,9191,17590,19834,19963,20171,20192,21310,21406,22414]]],["Comest",[2,2,[[8,1,1,0,1,[[251,1,1,0,1]]],[10,1,1,1,2,[[292,1,1,1,2]]]],[7599,8783]]],["Enter",[4,4,[[18,1,1,0,1,[[577,1,1,0,1]]],[19,1,1,1,2,[[631,1,1,1,2]]],[22,1,1,2,3,[[680,1,1,2,3]]],[23,1,1,3,4,[[760,1,1,3,4]]]],[15512,16504,17695,19341]]],["Go",[7,7,[[1,1,1,0,1,[[57,1,1,0,1]]],[7,1,1,1,2,[[234,1,1,1,2]]],[9,1,1,2,3,[[282,1,1,2,3]]],[10,1,1,3,4,[[310,1,1,3,4]]],[23,2,2,4,6,[[786,1,1,4,5],[787,1,1,5,6]]],[25,1,1,6,7,[[804,1,1,6,7]]]],[1711,7189,8447,9441,19994,19999,20526]]],["Put",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1607]]],["Take",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17972]]],["abide",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4687]]],["abideth",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4687]]],["about",[1,1,[[13,1,1,0,1,[[379,1,1,0,1]]]],[11466]]],["again",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8541]]],["against",[1,1,[[18,1,1,0,1,[[513,1,1,0,1]]]],[14449]]],["apply",[1,1,[[18,1,1,0,1,[[567,1,1,0,1]]]],[15390]]],["attained",[4,4,[[9,2,2,0,2,[[289,2,2,0,2]]],[12,2,2,2,4,[[348,2,2,2,4]]]],[8672,8676,10694,10698]]],["bring",[172,168,[[0,10,10,0,10,[[5,1,1,0,1],[17,1,1,1,2],[26,4,4,2,6],[41,2,2,6,8],[42,1,1,8,9],[43,1,1,9,10]]],[1,13,13,10,23,[[59,1,1,10,11],[60,1,1,11,12],[62,2,2,12,14],[67,1,1,14,15],[71,1,1,15,16],[72,2,2,16,18],[81,1,1,18,19],[83,1,1,19,20],[84,2,2,20,22],[85,1,1,22,23]]],[2,21,20,23,43,[[91,1,1,23,24],[93,6,5,24,29],[94,3,3,29,32],[95,1,1,32,33],[99,1,1,33,34],[101,1,1,34,35],[103,1,1,35,36],[104,1,1,36,37],[105,1,1,37,38],[106,1,1,38,39],[107,1,1,39,40],[109,1,1,40,41],[112,1,1,41,42],[115,1,1,42,43]]],[3,6,6,43,49,[[122,2,2,43,45],[130,2,2,45,47],[131,1,1,47,48],[134,1,1,48,49]]],[4,10,10,49,59,[[159,2,2,49,51],[161,1,1,51,52],[164,1,1,52,53],[173,1,1,53,54],[175,1,1,54,55],[178,1,1,55,56],[181,1,1,56,57],[182,1,1,57,58],[185,1,1,58,59]]],[5,2,2,59,61,[[204,1,1,59,60],[209,1,1,60,61]]],[8,6,5,61,66,[[236,1,1,61,62],[244,2,1,62,63],[251,1,1,63,64],[255,1,1,64,65],[262,1,1,65,66]]],[9,3,3,66,69,[[275,1,1,66,67],[280,1,1,67,68],[283,1,1,68,69]]],[10,4,3,69,72,[[304,1,1,69,70],[311,3,2,70,72]]],[11,3,3,72,75,[[324,1,1,72,73],[334,2,2,73,75]]],[13,5,5,75,80,[[368,1,1,75,76],[395,1,1,76,77],[397,1,1,77,78],[400,2,2,78,80]]],[14,3,3,80,83,[[405,1,1,80,81],[410,2,2,81,83]]],[15,6,6,83,89,[[413,1,1,83,84],[422,3,3,84,87],[423,1,1,87,88],[424,1,1,88,89]]],[16,1,1,89,90,[[428,1,1,89,90]]],[18,1,1,90,91,[[520,1,1,90,91]]],[20,2,2,91,93,[[661,1,1,91,92],[669,1,1,92,93]]],[21,2,2,93,95,[[678,2,2,93,95]]],[22,13,12,95,107,[[685,1,1,95,96],[692,1,1,96,97],[709,1,1,97,98],[721,2,2,98,100],[727,1,1,100,101],[734,1,1,101,102],[736,1,1,102,103],[738,4,3,103,106],[744,1,1,106,107]]],[23,29,29,107,136,[[747,1,1,107,108],[748,1,1,108,109],[749,1,1,109,110],[750,1,1,110,111],[755,3,3,111,114],[761,1,1,114,115],[762,1,1,115,116],[763,2,2,116,118],[767,1,1,118,119],[769,2,2,119,121],[775,1,1,121,122],[776,1,1,122,123],[777,1,1,123,124],[779,2,2,124,126],[780,1,1,126,127],[785,1,1,127,128],[786,1,1,128,129],[789,1,1,129,130],[792,1,1,130,131],[793,4,4,131,135],[795,1,1,135,136]]],[24,1,1,136,137,[[797,1,1,136,137]]],[25,24,24,137,161,[[806,1,1,137,138],[807,1,1,138,139],[808,1,1,139,140],[812,1,1,140,141],[813,1,1,141,142],[815,1,1,142,143],[818,1,1,143,144],[821,4,4,144,148],[824,1,1,148,149],[827,1,1,149,150],[829,1,1,150,151],[830,1,1,151,152],[833,1,1,152,153],[834,1,1,153,154],[835,1,1,154,155],[837,1,1,155,156],[838,2,2,156,158],[839,2,2,158,160],[840,1,1,160,161]]],[26,1,1,161,162,[[850,1,1,161,162]]],[29,1,1,162,163,[[882,1,1,162,163]]],[32,1,1,163,164,[[893,1,1,163,164]]],[35,1,1,164,165,[[908,1,1,164,165]]],[36,1,1,165,166,[[909,1,1,165,166]]],[37,2,2,166,168,[[918,1,1,166,167],[920,1,1,167,168]]]],[156,443,731,732,737,739,1272,1289,1299,1356,1781,1807,1872,1878,2021,2126,2163,2164,2440,2522,2536,2560,2571,2764,2800,2809,2811,2823,2827,2838,2842,2848,2855,2992,3050,3134,3197,3213,3240,3254,3340,3419,3549,3833,3835,4116,4132,4171,4270,5112,5137,5185,5246,5459,5518,5568,5706,5713,5817,6299,6475,7234,7398,7612,7738,7941,8237,8366,8463,9228,9472,9480,9854,10161,10165,11227,11822,11864,11957,11961,12104,12218,12231,12305,12583,12585,12586,12589,12651,12756,14569,17381,17522,17642,17651,17799,17930,18252,18510,18511,18658,18760,18793,18830,18832,18838,18926,19016,19033,19073,19108,19234,19237,19249,19375,19406,19410,19422,19496,19543,19547,19699,19773,19786,19825,19840,19873,19962,19992,20045,20124,20132,20135,20163,20164,20276,20331,20563,20566,20601,20663,20693,20748,20845,20910,20930,20932,20937,21029,21107,21164,21191,21257,21282,21326,21383,21409,21418,21441,21442,21450,21740,22414,22594,22840,22848,22984,23026]]],["bringest",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13184]]],["bringeth",[6,6,[[2,2,2,0,2,[[106,2,2,0,2]]],[4,1,1,2,3,[[160,1,1,2,3]]],[17,1,1,3,4,[[447,1,1,3,4]]],[19,2,2,4,6,[[648,1,1,4,5],[658,1,1,5,6]]]],[3239,3244,5144,13134,17011,17298]]],["bringing",[4,3,[[11,1,1,0,1,[[333,1,1,0,1]]],[23,2,1,1,2,[[761,2,1,1,2]]],[26,1,1,2,3,[[858,1,1,2,3]]]],[10131,19383,22000]]],["brought",[196,190,[[0,24,24,0,24,[[1,2,2,0,2],[3,2,2,2,4],[19,1,1,4,5],[23,1,1,5,6],[25,1,1,6,7],[26,4,4,7,11],[28,2,2,11,13],[29,1,1,13,14],[30,1,1,14,15],[32,1,1,15,16],[36,2,2,16,18],[38,1,1,18,19],[42,3,3,19,22],[45,2,2,22,24]]],[1,12,11,24,35,[[51,1,1,24,25],[67,1,1,25,26],[68,1,1,26,27],[81,2,2,27,29],[84,5,5,29,34],[85,2,1,34,35]]],[2,6,6,35,41,[[95,1,1,35,36],[102,2,2,36,38],[103,1,1,38,39],[113,1,1,39,40],[115,1,1,40,41]]],[3,5,5,41,46,[[122,1,1,41,42],[130,1,1,42,43],[132,1,1,43,44],[147,1,1,44,45],[148,1,1,45,46]]],[4,4,4,46,50,[[158,1,1,46,47],[178,1,1,47,48],[183,2,2,48,50]]],[5,2,2,50,52,[[193,1,1,50,51],[210,1,1,51,52]]],[6,7,7,52,59,[[211,1,1,52,53],[212,1,1,53,54],[217,1,1,54,55],[228,1,1,55,56],[229,2,2,56,58],[231,1,1,58,59]]],[8,13,13,59,72,[[236,1,1,59,60],[240,2,2,60,62],[242,1,1,62,63],[244,1,1,63,64],[245,1,1,64,65],[250,1,1,65,66],[251,1,1,66,67],[252,2,2,67,69],[256,1,1,69,70],[260,2,2,70,72]]],[9,6,6,72,78,[[267,1,1,72,73],[269,1,1,73,74],[273,1,1,74,75],[274,1,1,75,76],[279,1,1,76,77],[289,1,1,77,78]]],[10,10,10,78,88,[[291,1,1,78,79],[293,2,2,79,81],[294,1,1,81,82],[299,2,2,82,84],[300,1,1,84,85],[307,1,1,85,86],[310,1,1,86,87],[312,1,1,87,88]]],[11,15,15,88,103,[[316,2,2,88,90],[317,2,2,90,92],[322,2,2,92,94],[323,1,1,94,95],[324,4,4,95,99],[329,1,1,99,100],[334,1,1,100,101],[335,1,1,101,102],[336,1,1,102,103]]],[12,8,8,103,111,[[342,1,1,103,104],[347,1,1,104,105],[348,2,2,105,107],[349,1,1,107,108],[354,1,1,108,109],[355,1,1,109,110],[359,1,1,110,111]]],[13,23,20,111,131,[[374,1,1,111,112],[375,6,4,112,116],[381,1,1,116,117],[383,2,1,117,118],[388,1,1,118,119],[390,1,1,119,120],[391,2,2,120,122],[394,3,3,122,125],[395,2,2,125,127],[398,1,1,127,128],[399,1,1,128,129],[402,2,2,129,131]]],[14,1,1,131,132,[[410,1,1,131,132]]],[15,4,4,132,136,[[420,1,1,132,133],[421,1,1,133,134],[425,2,2,134,136]]],[16,2,2,136,138,[[431,1,1,136,137],[434,1,1,137,138]]],[17,1,1,138,139,[[477,1,1,138,139]]],[18,4,4,139,143,[[522,1,1,139,140],[555,2,2,140,142],[582,1,1,142,143]]],[21,2,2,143,145,[[671,1,1,143,144],[672,1,1,144,145]]],[22,2,2,145,147,[[721,1,1,145,146],[726,1,1,146,147]]],[23,9,9,147,156,[[746,1,1,147,148],[754,1,1,148,149],[759,1,1,149,150],[768,1,1,150,151],[770,1,1,151,152],[779,1,1,152,153],[781,1,1,153,154],[784,1,1,154,155],[788,1,1,155,156]]],[25,31,29,156,185,[[809,4,4,156,160],[812,2,2,160,162],[815,2,1,162,163],[820,3,2,163,165],[821,2,2,165,167],[824,1,1,167,168],[828,1,1,168,169],[831,1,1,169,170],[841,9,9,170,179],[842,1,1,179,180],[843,1,1,180,181],[844,1,1,181,182],[845,2,2,182,184],[847,1,1,184,185]]],[26,3,3,185,188,[[850,1,1,185,186],[858,1,1,186,187],[860,1,1,187,188]]],[36,1,1,188,189,[[909,1,1,188,189]]],[38,1,1,189,190,[[925,1,1,189,190]]]],[49,52,82,83,504,658,702,741,752,758,760,808,818,844,912,971,1085,1115,1166,1292,1308,1316,1393,1418,1564,2025,2030,2441,2459,2553,2554,2555,2556,2560,2569,2879,3054,3061,3113,3457,3565,3836,4111,4208,4718,4735,5096,5575,5748,5749,5999,6484,6516,6546,6719,6996,7027,7045,7114,7236,7320,7321,7353,7413,7445,7575,7607,7672,7675,7786,7888,7896,8032,8103,8198,8216,8327,8669,8720,8817,8840,8872,9060,9079,9104,9323,9447,9517,9623,9645,9653,9667,9801,9817,9833,9854,9859,9863,9866,10007,10149,10195,10218,10454,10671,10691,10692,10760,10879,10897,10968,11364,11374,11376,11378,11388,11501,11534,11653,11688,11716,11727,11769,11779,11791,11812,11823,11898,11919,12003,12011,12219,12509,12544,12683,12687,12801,12845,13933,14611,15167,15184,15646,17541,17558,18528,18629,18972,19210,19323,19525,19595,19827,19888,19944,20012,20607,20611,20618,20620,20656,20679,20753,20885,20890,20905,20923,21049,21147,21215,21478,21479,21480,21481,21494,21505,21509,21512,21525,21527,21553,21577,21603,21606,21674,21739,22002,22042,22849,23102]]],["broughtest",[2,2,[[15,1,1,0,1,[[421,1,1,0,1]]],[18,1,1,1,2,[[543,1,1,1,2]]]],[12534,14884]]],["called",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12789]]],["came",[615,582,[[0,61,58,0,58,[[10,1,1,0,1],[11,1,1,1,2],[12,1,1,2,3],[13,3,3,3,6],[18,2,2,6,8],[19,1,1,8,9],[21,1,1,9,10],[22,1,1,10,11],[23,4,4,11,15],[24,1,1,15,16],[25,1,1,16,17],[26,2,2,17,19],[28,1,1,19,20],[29,3,2,20,22],[30,1,1,22,23],[31,2,2,23,25],[32,3,2,25,27],[33,4,4,27,31],[34,3,3,31,34],[36,2,2,34,36],[40,2,2,36,38],[41,4,3,38,41],[42,3,3,41,44],[43,1,1,44,45],[44,1,1,45,46],[45,6,6,46,52],[46,3,3,52,55],[47,2,2,55,57],[49,1,1,57,58]]],[1,28,26,58,84,[[50,2,1,58,59],[51,3,3,59,62],[52,1,1,62,63],[54,2,2,63,65],[57,1,1,65,66],[63,2,2,66,68],[64,2,2,68,70],[65,4,3,70,73],[66,1,1,73,74],[67,3,3,74,77],[68,2,2,77,79],[71,1,1,79,80],[73,1,1,80,81],[84,2,2,81,83],[85,1,1,83,84]]],[3,22,22,84,106,[[120,1,1,84,85],[126,1,1,85,86],[129,4,4,86,90],[132,1,1,90,91],[136,2,2,91,93],[137,3,3,93,96],[138,5,5,96,101],[139,1,1,101,102],[141,1,1,102,103],[147,1,1,103,104],[148,1,1,104,105],[149,1,1,105,106]]],[4,9,9,106,115,[[153,3,3,106,109],[161,1,1,109,110],[163,1,1,110,111],[181,1,1,111,112],[184,2,2,112,114],[185,1,1,114,115]]],[5,18,18,115,133,[[188,4,4,115,119],[189,1,1,119,120],[192,1,1,120,121],[194,1,1,121,122],[195,1,1,122,123],[196,1,1,123,124],[197,3,3,124,127],[201,1,1,127,128],[204,1,1,128,129],[208,2,2,129,131],[210,2,2,131,133]]],[6,42,40,133,173,[[211,1,1,133,134],[213,2,2,134,136],[214,1,1,136,137],[215,2,2,137,139],[216,2,2,139,141],[217,2,2,141,143],[218,2,2,143,145],[219,3,3,145,148],[221,4,3,148,151],[223,5,4,151,155],[224,1,1,155,156],[225,1,1,156,157],[227,1,1,157,158],[228,6,6,158,164],[229,4,4,164,168],[230,3,3,168,171],[231,2,2,171,173]]],[7,9,9,173,182,[[232,3,3,173,176],[233,3,3,176,179],[234,3,3,179,182]]],[8,71,69,182,251,[[236,1,1,182,183],[237,4,4,183,187],[238,1,1,187,188],[239,6,5,188,193],[240,1,1,193,194],[241,1,1,194,195],[242,2,2,195,197],[243,1,1,197,198],[244,2,2,198,200],[245,3,3,200,203],[246,5,4,203,207],[247,1,1,207,208],[248,2,2,208,210],[249,2,2,210,212],[250,3,3,212,215],[251,2,2,215,217],[252,3,3,217,220],[253,1,1,220,221],[254,3,3,221,224],[255,2,2,224,226],[256,1,1,226,227],[257,2,2,227,229],[258,1,1,229,230],[259,1,1,230,231],[260,3,3,231,234],[261,5,5,234,239],[262,1,1,239,240],[263,3,3,240,243],[265,5,5,243,248],[266,3,3,248,251]]],[9,68,61,251,312,[[267,2,1,251,252],[268,3,3,252,255],[269,7,6,255,261],[270,4,4,261,265],[271,4,4,265,269],[272,2,2,269,271],[274,1,1,271,272],[276,4,4,272,276],[277,2,2,276,278],[278,4,3,278,281],[279,3,3,281,284],[280,3,2,284,286],[281,6,5,286,291],[282,3,3,291,294],[283,3,3,294,297],[284,1,1,297,298],[285,6,5,298,303],[286,3,3,303,306],[289,1,1,306,307],[290,6,5,307,312]]],[10,44,42,312,354,[[291,4,4,312,316],[292,3,3,316,319],[293,2,2,319,321],[294,1,1,321,322],[297,1,1,322,323],[298,1,1,323,324],[299,1,1,324,325],[300,7,7,325,332],[301,2,1,332,333],[302,2,2,333,335],[303,7,7,335,342],[304,3,2,342,344],[307,1,1,344,345],[309,3,3,345,348],[310,3,3,348,351],[311,2,2,351,353],[312,1,1,353,354]]],[11,64,59,354,413,[[313,1,1,354,355],[314,2,2,355,357],[315,2,2,357,359],[316,6,6,359,365],[317,3,3,365,368],[318,4,4,368,372],[319,3,2,372,374],[320,3,3,374,377],[321,6,6,377,383],[322,6,4,383,387],[323,3,3,387,390],[326,1,1,390,391],[327,3,3,391,394],[328,2,2,394,396],[329,1,1,396,397],[330,3,2,397,399],[331,2,2,399,401],[332,3,2,401,403],[334,1,1,403,404],[335,3,3,404,407],[336,1,1,407,408],[337,5,5,408,413]]],[12,26,25,413,438,[[339,1,1,413,414],[341,1,1,414,415],[344,1,1,415,416],[347,2,2,416,418],[348,1,1,418,419],[349,6,6,419,425],[350,1,1,425,426],[351,1,1,426,427],[352,1,1,427,428],[354,1,1,428,429],[355,1,1,429,430],[356,5,4,430,434],[357,1,1,434,435],[358,3,3,435,438]]],[13,47,46,438,484,[[367,1,1,438,439],[371,1,1,439,440],[373,1,1,440,441],[375,4,4,441,445],[376,2,2,445,447],[377,1,1,447,448],[378,4,4,448,452],[380,1,1,452,453],[382,1,1,453,454],[386,7,7,454,461],[387,1,1,461,462],[388,1,1,462,463],[389,3,3,463,466],[390,4,4,466,470],[391,1,1,470,471],[394,3,3,471,474],[395,2,2,474,476],[396,4,3,476,479],[397,1,1,479,480],[398,2,2,480,482],[400,1,1,482,483],[401,1,1,483,484]]],[14,5,5,484,489,[[404,2,2,484,486],[409,2,2,486,488],[410,1,1,488,489]]],[15,11,11,489,500,[[413,1,1,489,490],[414,2,2,490,492],[416,1,1,492,493],[417,1,1,493,494],[418,2,2,494,496],[419,1,1,496,497],[425,3,3,497,500]]],[16,9,9,500,509,[[426,1,1,500,501],[427,1,1,501,502],[429,3,3,502,505],[430,1,1,505,506],[432,1,1,506,507],[433,1,1,507,508],[434,1,1,508,509]]],[17,16,13,509,522,[[436,7,6,509,515],[437,3,2,515,517],[438,1,1,517,518],[441,1,1,518,519],[464,1,1,519,520],[465,2,1,520,521],[477,1,1,521,522]]],[18,4,4,522,526,[[495,1,1,522,523],[582,3,3,523,526]]],[20,1,1,526,527,[[667,1,1,526,527]]],[22,9,8,527,535,[[698,1,1,527,528],[714,1,1,528,529],[715,2,2,529,531],[716,1,1,531,532],[717,2,1,532,533],[728,1,1,533,534],[744,1,1,534,535]]],[23,17,17,535,552,[[758,1,1,535,536],[763,1,1,536,537],[776,2,2,537,539],[780,2,2,539,541],[782,1,1,541,542],[783,1,1,542,543],[784,3,3,543,546],[785,3,3,546,549],[787,1,1,549,550],[796,2,2,550,552]]],[25,18,17,552,569,[[802,1,1,552,553],[804,1,1,553,554],[805,1,1,554,555],[810,1,1,555,556],[815,1,1,556,557],[818,1,1,557,558],[821,1,1,558,559],[824,3,3,559,562],[834,3,2,562,564],[838,1,1,564,565],[841,1,1,565,566],[844,3,3,566,569]]],[26,8,7,569,576,[[850,1,1,569,570],[851,1,1,570,571],[857,4,3,571,574],[859,2,2,574,576]]],[29,1,1,576,577,[[884,1,1,576,577]]],[30,2,1,577,578,[[888,2,1,577,578]]],[34,1,1,578,579,[[905,1,1,578,579]]],[36,3,2,579,581,[[909,1,1,579,580],[910,2,1,580,581]]],[37,1,1,581,582,[[924,1,1,581,582]]]],[297,303,336,341,343,349,458,465,498,556,573,621,623,633,653,687,724,745,762,804,846,868,897,934,941,961,978,987,1000,1005,1007,1017,1020,1038,1097,1108,1245,1252,1257,1258,1281,1311,1315,1316,1338,1383,1387,1392,1394,1412,1413,1414,1421,1435,1438,1456,1458,1516,1533,1570,1571,1572,1580,1647,1655,1734,1909,1917,1943,1947,1948,1969,1982,1991,2004,2006,2011,2027,2033,2128,2180,2552,2553,2570,3790,4009,4097,4098,4101,4102,4237,4312,4333,4341,4347,4363,4382,4384,4391,4395,4414,4433,4477,4678,4720,4769,4911,4916,4923,5164,5213,5686,5775,5802,5812,5871,5873,5891,5892,5894,5960,6013,6054,6073,6112,6114,6128,6220,6302,6436,6441,6482,6487,6523,6588,6592,6621,6642,6646,6659,6665,6707,6713,6723,6734,6780,6806,6811,6845,6847,6863,6890,6893,6894,6895,6914,6943,6988,6995,7000,7001,7006,7008,7020,7034,7040,7046,7050,7058,7080,7088,7104,7110,7129,7146,7149,7152,7153,7156,7179,7186,7188,7231,7253,7254,7255,7267,7286,7302,7309,7310,7311,7313,7329,7345,7353,7365,7373,7403,7406,7428,7431,7432,7449,7450,7454,7456,7472,7493,7495,7528,7533,7565,7572,7573,7599,7616,7638,7640,7652,7682,7724,7728,7729,7731,7768,7773,7792,7798,7837,7842,7870,7873,7897,7906,7908,7910,7912,7920,7939,7946,7950,7963,7981,7987,7999,8001,8004,8016,8017,8021,8024,8053,8072,8078,8101,8103,8104,8105,8106,8116,8124,8125,8126,8127,8133,8135,8150,8152,8163,8173,8214,8242,8254,8256,8257,8263,8281,8287,8290,8306,8341,8347,8353,8387,8389,8391,8395,8402,8407,8426,8431,8440,8441,8467,8469,8473,8509,8516,8519,8526,8535,8552,8557,8566,8569,8666,8698,8699,8700,8705,8710,8749,8759,8764,8770,8783,8798,8800,8831,8832,8878,8948,8988,9079,9080,9081,9086,9089,9091,9093,9101,9126,9154,9163,9185,9194,9195,9196,9205,9209,9213,9222,9235,9327,9390,9391,9396,9438,9440,9451,9455,9456,9495,9546,9555,9566,9596,9600,9610,9614,9628,9630,9642,9645,9656,9662,9671,9678,9688,9697,9706,9715,9717,9734,9736,9741,9761,9767,9773,9774,9775,9776,9800,9801,9810,9814,9838,9842,9848,9909,9939,9944,9954,9969,9974,10011,10041,10061,10066,10094,10099,10112,10154,10182,10183,10199,10213,10223,10230,10245,10247,10248,10361,10426,10557,10666,10667,10676,10721,10736,10739,10742,10743,10758,10769,10783,10820,10879,10895,10909,10914,10922,10924,10927,10938,10945,10955,11207,11272,11335,11365,11370,11377,11385,11398,11407,11430,11440,11441,11442,11448,11484,11516,11588,11589,11591,11597,11611,11612,11615,11636,11645,11658,11668,11676,11688,11694,11700,11701,11711,11773,11776,11784,11806,11808,11838,11852,11854,11862,11876,11901,11942,11988,12029,12095,12181,12182,12233,12298,12316,12318,12371,12399,12411,12418,12427,12677,12678,12692,12719,12737,12764,12766,12771,12784,12808,12818,12859,12875,12883,12885,12886,12887,12888,12892,12902,12930,12998,13545,13583,13933,14124,15625,15637,15640,17489,18030,18352,18357,18386,18391,18415,18664,18929,19296,19421,19739,19754,19851,19856,19922,19924,19949,19953,19954,19958,19962,19964,20004,20280,20288,20468,20517,20543,20624,20732,20828,20896,21024,21046,21047,21301,21302,21407,21483,21574,21575,21576,21738,21760,21966,21967,21978,22018,22028,22451,22515,22771,22854,22871,23084]]],["camest",[7,7,[[0,2,2,0,2,[[15,1,1,0,1],[26,1,1,1,2]]],[8,1,1,2,3,[[248,1,1,2,3]]],[9,1,1,3,4,[[281,1,1,3,4]]],[10,1,1,4,5,[[303,1,1,4,5]]],[11,1,1,5,6,[[331,1,1,5,6]]],[22,1,1,6,7,[[715,1,1,6,7]]]],[389,760,7496,8409,9198,10089,18381]]],["carried",[8,8,[[11,1,1,0,1,[[337,1,1,0,1]]],[13,2,2,1,3,[[402,2,2,1,3]]],[23,3,3,3,6,[[771,1,1,3,4],[772,1,1,4,5],[796,1,1,5,6]]],[25,1,1,6,7,[[818,1,1,6,7]]],[28,1,1,7,8,[[878,1,1,7,8]]]],[10229,11997,12000,19618,19621,20287,20829,22348]]],["carry",[7,7,[[0,1,1,0,1,[[41,1,1,0,1]]],[8,2,2,1,3,[[252,1,1,1,2],[255,1,1,2,3]]],[11,1,1,3,4,[[321,1,1,3,4]]],[23,2,2,4,6,[[764,1,1,4,5],[783,1,1,5,6]]],[26,1,1,6,7,[[860,1,1,6,7]]]],[1271,7636,7770,9758,19427,19930,22044]]],["come",[604,573,[[0,35,35,0,35,[[5,3,3,0,3],[11,1,1,3,4],[17,1,1,4,5],[18,1,1,5,6],[19,1,1,6,7],[25,1,1,7,8],[29,1,1,8,9],[31,2,2,9,11],[32,1,1,11,12],[33,1,1,12,13],[34,1,1,13,14],[36,1,1,14,15],[40,3,3,15,18],[41,6,6,18,24],[43,1,1,24,25],[44,3,3,25,28],[45,1,1,28,29],[46,3,3,29,32],[47,1,1,32,33],[48,2,2,33,35]]],[1,17,17,35,52,[[51,1,1,35,36],[52,3,3,36,39],[57,1,1,39,40],[59,1,1,40,41],[61,1,1,41,42],[67,3,3,42,45],[68,2,2,45,47],[69,2,2,47,49],[71,1,1,49,50],[72,1,1,50,51],[84,1,1,51,52]]],[2,16,16,52,68,[[101,1,1,52,53],[102,1,1,53,54],[103,4,4,54,58],[104,1,1,58,59],[105,5,5,59,64],[108,1,1,64,65],[112,1,1,65,66],[114,2,2,66,68]]],[3,14,14,68,82,[[120,2,2,68,70],[122,1,1,70,71],[129,1,1,71,72],[130,1,1,72,73],[131,2,2,73,75],[135,2,2,75,77],[138,3,3,77,80],[147,1,1,80,81],[150,1,1,81,82]]],[4,20,19,82,101,[[153,2,2,82,84],[164,2,2,84,86],[166,1,1,86,87],[169,2,2,87,89],[170,3,2,89,91],[175,2,2,91,93],[178,1,1,93,94],[180,3,3,94,97],[181,1,1,97,98],[182,1,1,98,99],[183,1,1,99,100],[185,1,1,100,101]]],[5,14,13,101,114,[[188,3,2,101,103],[189,2,2,103,105],[191,1,1,105,106],[192,1,1,106,107],[195,3,3,107,110],[204,1,1,110,111],[206,1,1,111,112],[209,2,2,112,114]]],[6,20,20,114,134,[[213,1,1,114,115],[214,1,1,115,116],[216,2,2,116,118],[217,2,2,118,120],[219,4,4,120,124],[221,3,3,124,127],[223,1,1,127,128],[226,1,1,128,129],[228,1,1,129,130],[229,2,2,130,132],[230,1,1,132,133],[231,1,1,133,134]]],[7,3,3,134,137,[[232,1,1,134,135],[233,1,1,135,136],[235,1,1,136,137]]],[8,42,39,137,176,[[237,3,3,137,140],[239,3,3,140,143],[240,1,1,143,144],[244,5,4,144,148],[245,6,5,148,153],[247,1,1,153,154],[249,1,1,154,155],[251,5,4,155,159],[252,2,2,159,161],[255,4,4,161,165],[256,1,1,165,166],[258,2,2,166,168],[260,4,4,168,172],[261,1,1,172,173],[264,1,1,173,174],[265,1,1,174,175],[266,1,1,175,176]]],[9,34,31,176,207,[[268,1,1,176,177],[269,1,1,177,178],[271,4,4,178,182],[272,1,1,182,183],[275,1,1,183,184],[277,1,1,184,185],[278,2,1,185,186],[279,4,3,186,189],[280,5,4,189,193],[281,3,3,193,196],[282,1,1,196,197],[283,5,5,197,202],[285,3,3,202,205],[290,2,2,205,207]]],[10,11,11,207,218,[[291,1,1,207,208],[298,2,2,208,210],[300,1,1,210,211],[302,2,2,211,213],[303,1,1,213,214],[304,1,1,214,215],[307,1,1,215,216],[308,1,1,216,217],[312,1,1,217,218]]],[11,20,20,218,238,[[316,3,3,218,221],[317,3,3,221,224],[318,1,1,224,225],[319,2,2,225,227],[320,2,2,227,229],[321,1,1,229,230],[322,1,1,230,231],[328,1,1,231,232],[330,1,1,232,233],[331,3,3,233,236],[332,2,2,236,238]]],[12,10,10,238,248,[[346,1,1,238,239],[347,1,1,239,240],[348,1,1,240,241],[349,2,2,241,243],[351,1,1,243,244],[353,1,1,244,245],[356,2,2,245,247],[361,1,1,247,248]]],[13,21,20,248,268,[[372,3,2,248,250],[374,1,1,250,251],[375,1,1,251,252],[376,1,1,252,253],[377,1,1,253,254],[384,1,1,254,255],[385,1,1,255,256],[386,2,2,256,258],[388,1,1,258,259],[389,2,2,259,261],[391,2,2,261,263],[394,1,1,263,264],[396,2,2,264,266],[398,2,2,266,268]]],[14,5,5,268,273,[[405,1,1,268,269],[410,1,1,269,270],[411,1,1,270,271],[412,2,2,271,273]]],[15,8,7,273,280,[[414,2,2,273,275],[416,2,2,275,277],[418,2,1,277,278],[425,2,2,278,280]]],[16,6,6,280,286,[[426,2,2,280,282],[429,1,1,282,283],[430,2,2,283,285],[431,1,1,285,286]]],[17,19,18,286,304,[[437,2,1,286,287],[438,3,3,287,290],[439,1,1,290,291],[440,1,1,291,292],[444,1,1,292,293],[448,1,1,293,294],[449,1,1,294,295],[452,1,1,295,296],[454,1,1,296,297],[455,1,1,297,298],[457,1,1,298,299],[458,1,1,299,300],[469,1,1,300,301],[473,1,1,301,302],[476,2,2,302,304]]],[18,27,27,304,331,[[482,1,1,304,305],[499,1,1,305,306],[517,1,1,306,307],[518,1,1,307,308],[519,1,1,308,309],[527,1,1,309,310],[532,1,1,310,311],[542,1,1,311,312],[546,2,2,312,314],[548,1,1,314,315],[556,2,2,315,317],[563,1,1,317,318],[565,1,1,318,319],[572,1,1,319,320],[573,1,1,320,321],[577,1,1,321,322],[578,1,1,322,323],[579,2,2,323,325],[586,2,2,325,327],[596,3,3,327,330],[609,1,1,330,331]]],[19,8,8,331,339,[[633,3,3,331,334],[634,1,1,334,335],[638,1,1,335,336],[651,2,2,336,338],[653,1,1,338,339]]],[20,3,3,339,342,[[660,1,1,339,340],[666,1,1,340,341],[670,1,1,341,342]]],[21,3,2,342,344,[[674,2,1,342,343],[675,1,1,343,344]]],[22,60,55,344,399,[[679,2,2,344,346],[683,2,2,346,348],[685,4,4,348,352],[688,2,2,352,354],[691,3,3,354,357],[692,1,1,357,358],[694,1,1,358,359],[697,2,2,359,361],[705,3,3,361,364],[706,1,1,364,365],[708,1,1,365,366],[710,1,1,366,367],[713,3,2,367,369],[714,1,1,369,370],[715,3,3,370,373],[717,2,2,373,375],[718,1,1,375,376],[719,2,2,376,378],[722,1,1,378,379],[723,2,2,379,381],[725,5,3,381,384],[727,2,2,384,386],[729,1,1,386,387],[730,1,1,387,388],[734,1,1,388,389],[737,1,1,389,390],[738,6,5,390,395],[741,1,1,395,396],[744,4,3,396,399]]],[23,79,76,399,475,[[745,1,1,399,400],[746,2,2,400,402],[747,1,1,402,403],[748,2,2,403,405],[749,1,1,405,406],[750,2,2,406,408],[751,2,2,408,410],[752,1,1,410,411],[753,3,2,411,413],[754,1,1,413,414],[756,1,1,414,415],[757,1,1,415,416],[760,2,2,416,418],[761,2,2,418,420],[763,1,1,420,421],[764,1,1,421,422],[766,1,1,422,423],[767,3,3,423,426],[769,1,1,426,427],[770,1,1,427,428],[771,2,2,428,430],[774,1,1,430,431],[775,5,5,431,436],[776,3,3,436,439],[777,2,2,439,441],[780,1,1,441,442],[781,1,1,442,443],[782,1,1,443,444],[784,4,2,444,446],[790,4,4,446,450],[791,1,1,450,451],[792,4,4,451,455],[793,5,5,455,460],[794,4,4,460,464],[795,11,11,464,475]]],[24,3,3,475,478,[[797,2,2,475,477],[800,1,1,477,478]]],[25,48,43,478,521,[[808,10,7,478,485],[812,2,2,485,487],[813,1,1,487,488],[817,3,3,488,491],[818,1,1,491,492],[821,1,1,492,493],[822,5,5,493,498],[823,2,2,498,500],[824,2,2,500,502],[825,1,1,502,503],[831,1,1,503,504],[834,6,5,504,509],[837,1,1,509,510],[839,5,5,510,515],[840,2,2,515,517],[845,1,1,517,518],[847,1,1,518,519],[848,3,2,519,521]]],[26,14,13,521,534,[[858,3,3,521,524],[859,4,3,524,527],[860,7,7,527,534]]],[27,7,6,534,540,[[865,1,1,534,535],[867,1,1,535,536],[870,2,1,536,537],[871,1,1,537,538],[874,2,2,538,540]]],[28,5,5,540,545,[[876,2,2,540,542],[877,1,1,542,543],[878,2,2,543,545]]],[29,5,5,545,550,[[882,1,1,545,546],[883,1,1,546,547],[886,2,2,547,549],[887,1,1,549,550]]],[32,6,6,550,556,[[893,2,2,550,552],[895,1,1,552,553],[896,1,1,553,554],[897,1,1,554,555],[899,1,1,555,556]]],[34,2,2,556,558,[[903,2,2,556,558]]],[35,2,1,558,559,[[907,2,1,558,559]]],[36,2,2,559,561,[[909,1,1,559,560],[910,1,1,560,561]]],[37,12,10,561,571,[[911,2,1,561,562],[912,1,1,562,563],[916,3,2,563,565],[918,2,2,565,567],[922,1,1,567,568],[924,3,3,568,571]]],[38,3,2,571,573,[[927,2,1,571,572],[928,1,1,572,573]]]],[150,155,157,312,445,479,508,719,863,936,939,974,985,1027,1106,1224,1230,1249,1259,1261,1262,1264,1267,1273,1354,1374,1376,1377,1417,1421,1424,1425,1458,1479,1483,1572,1588,1592,1597,1713,1803,1841,2005,2014,2015,2028,2035,2071,2075,2122,2171,2541,3048,3068,3119,3145,3146,3155,3182,3203,3204,3224,3227,3229,3304,3412,3471,3494,3748,3758,3829,4096,4138,4155,4171,4296,4303,4395,4411,4413,4688,4818,4912,4914,5245,5249,5319,5373,5378,5390,5393,5510,5511,5569,5613,5626,5656,5701,5709,5739,5826,5872,5887,5901,5908,5948,5968,6043,6045,6046,6297,6378,6467,6475,6595,6619,6658,6672,6707,6711,6769,6778,6785,6791,6836,6841,6862,6892,6951,7003,7047,7053,7064,7124,7146,7161,7201,7271,7274,7276,7300,7303,7304,7324,7396,7404,7405,7407,7421,7423,7425,7426,7440,7468,7534,7597,7600,7601,7606,7663,7670,7739,7749,7751,7767,7787,7817,7820,7869,7880,7895,7901,7915,7977,7979,8013,8073,8104,8140,8145,8155,8157,8166,8233,8266,8290,8322,8323,8352,8359,8371,8385,8388,8393,8417,8421,8442,8451,8455,8461,8466,8476,8522,8531,8536,8705,8713,8752,9016,9027,9081,9152,9172,9206,9231,9335,9353,9507,9604,9635,9639,9653,9655,9669,9694,9712,9713,9728,9734,9786,9799,9975,10056,10064,10093,10094,10112,10115,10640,10663,10678,10737,10751,10788,10849,10910,10916,11034,11304,11314,11357,11365,11396,11415,11556,11586,11598,11609,11651,11662,11671,11714,11718,11781,11828,11832,11877,11879,12105,12236,12250,12260,12266,12314,12317,12367,12370,12411,12672,12693,12714,12721,12773,12783,12787,12797,12902,12910,12911,12929,12935,12977,13083,13169,13195,13270,13309,13348,13410,13422,13711,13804,13901,13904,13980,14235,14532,14548,14557,14671,14737,14862,14937,14962,14994,15186,15196,15293,15310,15460,15473,15510,15515,15522,15534,15772,15773,15939,15975,16068,16154,16543,16551,16555,16595,16715,17104,17113,17143,17349,17468,17524,17598,17599,17666,17677,17758,17765,17799,17801,17806,17807,17853,17878,17911,17912,17928,17959,17981,18005,18027,18157,18162,18164,18179,18246,18269,18324,18330,18347,18355,18385,18386,18415,18418,18430,18473,18476,18540,18581,18585,18608,18610,18612,18648,18654,18684,18697,18754,18820,18822,18825,18826,18827,18834,18870,18937,18940,18945,18961,18968,18996,19020,19039,19043,19070,19092,19115,19129,19151,19169,19192,19200,19223,19261,19286,19350,19355,19372,19383,19413,19428,19477,19489,19491,19501,19565,19574,19599,19603,19670,19700,19703,19718,19722,19729,19738,19755,19760,19780,19789,19848,19893,19920,19945,19951,20058,20063,20066,20067,20078,20088,20092,20096,20101,20129,20131,20136,20141,20163,20170,20193,20197,20207,20222,20225,20245,20258,20259,20260,20263,20264,20265,20268,20272,20314,20332,20438,20579,20582,20583,20584,20587,20589,20603,20671,20673,20696,20769,20778,20795,20837,20898,20963,20964,20969,20971,20973,20979,20980,21031,21047,21082,21208,21283,21284,21286,21311,21313,21367,21433,21434,21438,21440,21443,21456,21465,21624,21664,21688,21699,22001,22011,22014,22027,22029,22035,22042,22043,22045,22051,22065,22066,22081,22148,22170,22215,22237,22279,22281,22304,22306,22342,22354,22356,22412,22432,22483,22492,22508,22588,22594,22619,22628,22638,22676,22739,22740,22807,22842,22862,22899,22909,22957,22962,22996,22998,23054,23073,23086,23089,23121,23144]]],["comest",[18,18,[[0,3,3,0,3,[[9,1,1,0,1],[12,1,1,1,2],[23,1,1,2,3]]],[4,2,2,3,5,[[175,2,2,3,5]]],[6,2,2,5,7,[[227,1,1,5,6],[229,1,1,6,7]]],[8,3,3,7,10,[[250,1,1,7,8],[252,2,2,8,10]]],[9,2,2,10,12,[[267,1,1,10,11],[269,1,1,11,12]]],[10,1,1,12,13,[[309,1,1,12,13]]],[11,1,1,13,14,[[321,1,1,13,14]]],[17,2,2,14,16,[[436,1,1,14,15],[437,1,1,15,16]]],[23,1,1,16,17,[[795,1,1,16,17]]],[31,1,1,17,18,[[889,1,1,17,18]]]],[253,328,632,5524,5525,6989,7041,7567,7661,7663,8025,8094,9402,9758,12876,12893,20273,22539]]],["cometh",[81,73,[[0,3,3,0,3,[[28,1,1,0,1],[36,1,1,1,2],[47,1,1,2,3]]],[1,1,1,3,4,[[78,1,1,3,4]]],[2,1,1,4,5,[[100,1,1,4,5]]],[8,3,3,5,8,[[239,1,1,5,6],[255,2,2,6,8]]],[9,2,2,8,10,[[279,1,1,8,9],[284,1,1,9,10]]],[10,2,2,10,12,[[298,1,1,10,11],[304,1,1,11,12]]],[11,5,5,12,17,[[316,1,1,12,13],[318,1,1,13,14],[322,1,1,14,15],[323,1,1,15,16],[324,1,1,16,17]]],[12,1,1,17,18,[[353,1,1,17,18]]],[13,5,5,18,23,[[379,1,1,18,19],[386,3,3,19,22],[389,1,1,22,23]]],[17,6,6,23,29,[[438,1,1,23,24],[440,1,1,24,25],[456,1,1,25,26],[462,1,1,26,27],[463,1,1,27,28],[472,1,1,28,29]]],[18,5,4,29,33,[[573,2,1,29,30],[575,1,1,30,31],[595,1,1,31,32],[598,1,1,32,33]]],[19,11,8,33,41,[[628,3,2,33,35],[630,1,1,35,36],[638,3,2,36,38],[640,1,1,38,39],[645,3,2,39,41]]],[20,3,3,41,44,[[659,1,1,41,42],[663,1,1,42,43],[664,1,1,43,44]]],[21,1,1,44,45,[[672,1,1,44,45]]],[22,7,7,45,52,[[691,1,1,45,46],[699,2,2,46,48],[708,2,2,48,50],[740,1,1,50,51],[741,1,1,51,52]]],[23,8,7,52,59,[[750,2,2,52,54],[761,2,2,54,56],[787,1,1,56,57],[790,2,1,57,58],[791,1,1,58,59]]],[25,9,7,59,66,[[808,1,1,59,60],[815,3,2,60,62],[822,2,1,62,63],[825,1,1,63,64],[831,1,1,64,65],[848,1,1,65,66]]],[26,1,1,66,67,[[860,1,1,66,67]]],[28,1,1,67,68,[[877,1,1,67,68]]],[32,2,2,68,70,[[897,1,1,68,69],[899,1,1,69,70]]],[37,2,2,70,72,[[919,1,1,70,71],[924,1,1,71,72]]],[38,2,1,72,73,[[928,2,1,72,73]]]],[801,1102,1453,2366,3031,7300,7757,7759,8322,8505,9026,9223,9613,9706,9795,9837,9859,10853,11462,11589,11596,11599,11663,12928,12972,13372,13490,13524,13778,15478,15499,15895,16082,16426,16427,16480,16690,16696,16759,16904,16918,17319,17400,17421,17562,17915,18036,18044,18230,18244,18865,18867,19109,19111,19363,19365,20008,20065,20077,20602,20735,20738,20951,21080,21213,21688,22052,22312,22639,22668,23008,23069,23139]]],["coming",[12,12,[[0,1,1,0,1,[[23,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[8,2,2,3,5,[[257,1,1,3,4],[264,1,1,4,5]]],[13,1,1,5,6,[[388,1,1,5,6]]],[14,1,1,6,7,[[405,1,1,6,7]]],[18,1,1,7,8,[[514,1,1,7,8]]],[22,1,1,8,9,[[692,1,1,8,9]]],[23,1,1,9,10,[[752,1,1,9,10]]],[38,2,2,10,12,[[927,1,1,10,11],[928,1,1,11,12]]]],[654,4800,6651,7796,7973,11651,12105,14463,17937,19160,23122,23143]]],["departed",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9805]]],["down",[24,24,[[0,2,2,0,2,[[14,2,2,0,2]]],[1,2,2,2,4,[[66,1,1,2,3],[71,1,1,3,4]]],[2,1,1,4,5,[[111,1,1,4,5]]],[4,4,4,5,9,[[168,1,1,5,6],[175,1,1,6,7],[176,2,2,7,9]]],[5,3,3,9,12,[[194,1,1,9,10],[196,2,2,10,12]]],[6,2,2,12,14,[[224,1,1,12,13],[229,1,1,13,14]]],[9,2,2,14,16,[[268,1,1,14,15],[269,1,1,15,16]]],[10,1,1,16,17,[[312,1,1,16,17]]],[13,1,1,17,18,[[384,1,1,17,18]]],[20,1,1,18,19,[[659,1,1,18,19]]],[22,1,1,19,20,[[738,1,1,19,20]]],[23,1,1,20,21,[[759,1,1,20,21]]],[25,1,1,21,22,[[825,1,1,21,22]]],[29,1,1,22,23,[[886,1,1,22,23]]],[32,1,1,23,24,[[895,1,1,23,24]]]],[372,377,1995,2139,3376,5348,5511,5538,5540,6031,6077,6091,6927,7038,8073,8116,9516,11576,17320,18841,19324,21072,22490,22614]]],["enter",[65,63,[[0,1,1,0,1,[[11,1,1,0,1]]],[1,1,1,1,2,[[89,1,1,1,2]]],[3,4,4,2,6,[[120,1,1,2,3],[121,2,2,3,5],[136,1,1,5,6]]],[4,6,4,6,10,[[175,6,4,6,10]]],[5,1,1,10,11,[[196,1,1,10,11]]],[6,1,1,11,12,[[228,1,1,11,12]]],[10,2,2,12,14,[[304,1,1,12,13],[312,1,1,13,14]]],[11,3,3,14,17,[[319,1,1,14,15],[323,1,1,15,16],[331,1,1,16,17]]],[13,2,2,17,19,[[373,1,1,17,18],[396,1,1,18,19]]],[15,1,1,19,20,[[414,1,1,19,20]]],[16,1,1,20,21,[[429,1,1,20,21]]],[17,1,1,21,22,[[457,1,1,21,22]]],[18,5,5,22,27,[[514,1,1,22,23],[522,1,1,23,24],[572,1,1,24,25],[595,1,1,25,26],[620,1,1,26,27]]],[19,2,2,27,29,[[645,1,1,27,28],[650,1,1,28,29]]],[22,5,5,29,34,[[681,1,1,29,30],[704,1,1,30,31],[715,1,1,31,32],[735,1,1,32,33],[737,1,1,33,34]]],[23,6,6,34,40,[[751,1,1,34,35],[752,1,1,35,36],[758,1,1,36,37],[761,1,1,37,38],[765,1,1,38,39],[766,1,1,39,40]]],[24,2,2,40,42,[[797,1,1,40,41],[799,1,1,41,42]]],[25,12,12,42,54,[[808,1,1,42,43],[814,1,1,43,44],[821,1,1,44,45],[827,1,1,45,46],[838,1,1,46,47],[843,1,1,47,48],[845,4,4,48,52],[847,2,2,52,54]]],[26,5,5,54,59,[[860,5,5,54,59]]],[27,1,1,59,60,[[872,1,1,59,60]]],[29,1,1,60,61,[[883,1,1,60,61]]],[31,1,1,61,62,[[891,1,1,61,62]]],[37,1,1,62,63,[[915,1,1,62,63]]]],[309,2742,3746,3816,3819,4335,5501,5502,5503,5508,6083,7002,9230,9510,9711,9834,10084,11326,11835,12315,12764,13393,14465,14612,15465,15889,16295,16907,17054,17721,18150,18376,18767,18814,19121,19167,19311,19382,19453,19456,20320,20367,20599,20717,20933,21110,21402,21566,21602,21608,21615,21620,21657,21663,22043,22053,22060,22076,22077,22249,22428,22562,22940]]],["entered",[32,32,[[0,4,4,0,4,[[6,1,1,0,1],[18,2,2,1,3],[30,1,1,3,4]]],[5,3,3,4,7,[[188,1,1,4,5],[194,1,1,5,6],[196,1,1,6,7]]],[6,2,2,7,9,[[216,1,1,7,8],[219,1,1,8,9]]],[9,1,1,9,10,[[276,1,1,9,10]]],[11,1,1,10,11,[[319,1,1,10,11]]],[12,1,1,11,12,[[356,1,1,11,12]]],[13,3,3,12,15,[[381,1,1,12,13],[393,1,1,13,14],[398,1,1,14,15]]],[15,2,2,15,17,[[414,1,1,15,16],[422,1,1,16,17]]],[17,2,2,17,19,[[473,2,2,17,19]]],[23,4,4,19,23,[[746,1,1,19,20],[753,1,1,20,21],[778,1,1,21,22],[781,1,1,22,23]]],[24,2,2,23,25,[[797,1,1,23,24],[800,1,1,24,25]]],[25,5,5,25,30,[[803,1,1,25,26],[804,1,1,26,27],[817,1,1,27,28],[837,1,1,28,29],[842,1,1,29,30]]],[30,1,1,30,31,[[888,1,1,30,31]]],[34,1,1,31,32,[[905,1,1,31,32]]]],[172,460,480,906,5872,6021,6084,6659,6800,8254,9715,10922,11502,11757,11876,12322,12578,13809,13815,18972,19196,19811,19890,20320,20432,20494,20526,20770,21379,21532,22523,22784]]],["entereth",[8,8,[[3,4,4,0,4,[[120,4,4,0,4]]],[13,1,1,4,5,[[397,1,1,4,5]]],[19,1,1,5,6,[[629,1,1,5,6]]],[25,2,2,6,8,[[843,1,1,6,7],[847,1,1,7,8]]]],[3773,3778,3782,3786,11870,16443,21564,21664]]],["entering",[5,5,[[5,1,1,0,1,[[199,1,1,0,1]]],[8,1,1,1,2,[[258,1,1,1,2]]],[12,1,1,2,3,[[350,1,1,2,3]]],[13,1,1,3,4,[[389,1,1,3,4]]],[23,1,1,4,5,[[761,1,1,4,5]]]],[6159,7817,10765,11660,19384]]],["entrance",[2,2,[[3,1,1,0,1,[[150,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]]],[4824,9387]]],["fallen",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4737]]],["fetch",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12508]]],["gat",[2,2,[[9,1,1,0,1,[[285,1,1,0,1]]],[24,1,1,1,2,[[801,1,1,1,2]]]],[8514,20451]]],["gave",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15142]]],["get",[7,7,[[0,1,1,0,1,[[44,1,1,0,1]]],[8,1,1,1,2,[[257,1,1,1,2]]],[11,1,1,2,3,[[319,1,1,2,3]]],[22,2,2,3,5,[[700,1,1,3,4],[725,1,1,4,5]]],[25,2,2,5,7,[[804,2,2,5,7]]]],[1375,7792,9719,18067,18604,20506,20513]]],["go",[77,77,[[0,3,3,0,3,[[14,1,1,0,1],[30,1,1,1,2],[36,1,1,2,3]]],[1,3,3,3,6,[[63,1,1,3,4],[67,1,1,4,5],[79,1,1,5,6]]],[2,2,2,6,8,[[99,1,1,6,7],[103,1,1,7,8]]],[3,4,4,8,12,[[121,1,1,8,9],[126,1,1,9,10],[148,2,2,10,12]]],[4,11,11,12,23,[[153,1,1,12,13],[156,2,2,13,15],[161,1,1,15,16],[164,1,1,16,17],[176,1,1,17,18],[178,1,1,18,19],[182,1,1,19,20],[183,2,2,20,22],[184,1,1,22,23]]],[5,1,1,23,24,[[204,1,1,23,24]]],[6,1,1,24,25,[[228,1,1,24,25]]],[8,1,1,25,26,[[260,1,1,25,26]]],[9,1,1,26,27,[[277,1,1,26,27]]],[10,3,3,27,30,[[301,1,1,27,28],[304,1,1,28,29],[307,1,1,29,30]]],[11,4,4,30,34,[[317,1,1,30,31],[319,2,2,31,33],[330,1,1,33,34]]],[13,5,5,34,39,[[380,1,1,34,35],[384,2,2,35,37],[391,2,2,37,39]]],[14,1,1,39,40,[[411,1,1,39,40]]],[15,1,1,40,41,[[418,1,1,40,41]]],[16,2,2,41,43,[[427,1,1,41,42],[430,1,1,42,43]]],[17,1,1,43,44,[[472,1,1,43,44]]],[18,7,7,44,51,[[520,1,1,44,45],[526,1,1,45,46],[540,1,1,46,47],[543,1,1,47,48],[548,1,1,48,49],[595,1,1,49,50],[609,1,1,50,51]]],[19,3,3,51,54,[[649,1,1,51,52],[650,1,1,52,53],[654,1,1,53,54]]],[22,5,5,54,59,[[680,2,2,54,56],[691,1,1,56,57],[708,1,1,57,58],[714,1,1,58,59]]],[23,11,11,59,70,[[748,2,2,59,61],[760,1,1,61,62],[771,1,1,62,63],[778,1,1,63,64],[779,1,1,64,65],[780,2,2,65,67],[786,3,3,67,70]]],[25,3,3,70,73,[[821,1,1,70,71],[839,1,1,71,72],[848,1,1,72,73]]],[31,1,1,73,74,[[889,1,1,73,74]]],[32,1,1,74,75,[[896,1,1,74,75]]],[33,1,1,75,76,[[902,1,1,75,76]]],[37,1,1,76,77,[[916,1,1,76,77]]]],[375,891,1113,1905,2022,2402,2986,3147,3814,3997,4724,4727,4899,5009,5038,5162,5266,5535,5569,5726,5735,5744,5810,6296,7003,7866,8270,9125,9221,9330,9652,9712,9716,10045,11486,11566,11571,11711,11712,12248,12412,12737,12793,13777,14570,14667,14848,14886,14992,15888,16158,17039,17074,17179,17704,17706,17908,18225,18336,19032,19056,19344,19614,19804,19834,19847,19848,19989,19990,19997,20924,21436,21694,22534,22630,22726,22957]]],["goest",[12,12,[[0,3,3,0,3,[[9,2,2,0,2],[24,1,1,2,3]]],[1,1,1,3,4,[[83,1,1,3,4]]],[4,7,7,4,11,[[159,1,1,4,5],[163,1,1,5,6],[164,1,1,6,7],[175,1,1,7,8],[180,2,2,8,10],[182,1,1,10,11]]],[8,1,1,11,12,[[262,1,1,11,12]]]],[253,264,676,2508,5112,5237,5269,5520,5632,5674,5724,7938]]],["goeth",[7,7,[[2,1,1,0,1,[[103,1,1,0,1]]],[4,1,1,1,2,[[171,1,1,1,2]]],[11,1,1,2,3,[[317,1,1,2,3]]],[19,1,1,3,4,[[634,1,1,3,4]]],[25,3,3,4,7,[[843,1,1,4,5],[845,1,1,5,6],[849,1,1,6,7]]]],[3157,5411,9665,16597,21561,21626,21703]]],["going",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22534]]],["gone",[8,8,[[1,1,1,0,1,[[82,1,1,0,1]]],[3,1,1,1,2,[[123,1,1,1,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[9,1,1,3,4,[[269,1,1,3,4]]],[22,1,1,4,5,[[719,1,1,4,5]]],[23,3,3,5,8,[[788,3,3,5,8]]]],[2481,3939,7771,8088,18454,20018,20024,20038]]],["granted",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10395]]],["had",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1313]]],["have",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12986]]],["in",[234,219,[[0,36,33,0,33,[[5,1,1,0,1],[6,5,4,1,5],[7,1,1,5,6],[15,2,2,6,8],[18,5,5,8,13],[22,2,2,13,15],[23,1,1,15,16],[26,1,1,16,17],[28,3,3,17,20],[29,3,3,20,23],[37,6,5,23,28],[38,3,2,28,30],[39,1,1,30,31],[40,1,1,31,32],[42,1,1,32,33]]],[1,21,21,33,54,[[50,1,1,33,34],[54,1,1,34,35],[55,1,1,35,36],[56,1,1,36,37],[58,1,1,37,38],[59,2,2,38,40],[61,1,1,40,41],[63,1,1,41,42],[64,2,2,42,44],[65,1,1,44,45],[70,1,1,45,46],[72,1,1,46,47],[75,1,1,47,48],[77,4,4,48,52],[83,2,2,52,54]]],[2,8,8,54,62,[[95,1,1,54,55],[99,1,1,55,56],[103,1,1,56,57],[105,2,2,57,59],[110,2,2,59,61],[114,1,1,61,62]]],[3,9,8,62,70,[[120,3,3,62,65],[124,2,2,65,67],[130,1,1,67,68],[143,3,2,68,70]]],[4,24,24,70,94,[[153,4,4,70,74],[156,3,3,74,77],[158,1,1,77,78],[160,1,1,78,79],[161,2,2,79,81],[162,1,1,81,82],[163,4,4,82,86],[173,1,1,86,87],[174,1,1,87,88],[177,1,1,88,89],[178,1,1,89,90],[179,1,1,90,91],[180,2,2,91,93],[183,1,1,93,94]]],[5,5,5,94,99,[[187,1,1,94,95],[192,2,2,95,97],[200,1,1,97,98],[209,1,1,98,99]]],[6,10,8,99,107,[[213,2,2,99,101],[216,1,1,101,102],[222,1,1,102,103],[225,2,1,103,104],[226,1,1,104,105],[228,1,1,105,106],[229,2,1,106,107]]],[7,1,1,107,108,[[234,1,1,107,108]]],[8,5,5,108,113,[[253,2,2,108,110],[254,1,1,110,111],[259,1,1,111,112],[264,1,1,112,113]]],[9,2,1,113,114,[[271,2,1,113,114]]],[10,19,17,114,131,[[291,6,6,114,120],[293,1,1,120,121],[300,1,1,121,122],[301,2,1,122,123],[303,2,2,123,125],[304,3,2,125,127],[305,1,1,127,128],[306,1,1,128,129],[307,1,1,129,130],[311,1,1,130,131]]],[11,14,14,131,145,[[316,3,3,131,134],[317,2,2,134,136],[321,3,3,136,139],[322,2,2,139,141],[323,2,2,141,143],[325,1,1,143,144],[331,1,1,144,145]]],[12,5,5,145,150,[[339,1,1,145,146],[342,1,1,146,147],[344,1,1,147,148],[346,1,1,148,149],[364,1,1,149,150]]],[13,17,17,150,167,[[367,1,1,150,151],[381,1,1,151,152],[382,1,1,152,153],[389,4,4,153,157],[390,3,3,157,160],[392,2,2,160,162],[395,1,1,162,163],[396,1,1,163,164],[397,2,2,164,166],[399,1,1,166,167]]],[15,6,6,167,173,[[418,1,1,167,168],[421,3,3,168,171],[425,2,2,171,173]]],[16,10,10,173,183,[[426,1,1,173,174],[427,3,3,174,177],[429,3,3,177,180],[430,1,1,180,181],[431,2,2,181,183]]],[18,5,5,183,188,[[501,2,2,183,185],[503,1,1,185,186],[546,1,1,186,187],[598,1,1,187,188]]],[19,1,1,188,189,[[633,1,1,188,189]]],[22,3,3,189,192,[[704,1,1,189,190],[715,1,1,190,191],[737,1,1,191,192]]],[23,8,8,192,200,[[761,4,4,192,196],[766,1,1,196,197],[780,1,1,197,198],[781,1,1,198,199],[783,1,1,199,200]]],[25,16,11,200,211,[[809,2,2,200,202],[810,1,1,202,203],[811,2,2,203,205],[824,3,1,205,206],[845,3,2,206,208],[847,5,3,208,211]]],[26,4,3,211,214,[[850,2,1,211,212],[858,1,1,212,213],[860,1,1,213,214]]],[27,1,1,214,215,[[868,1,1,214,215]]],[28,1,1,215,216,[[877,1,1,215,216]]],[31,1,1,216,217,[[890,1,1,216,217]]],[36,1,1,217,218,[[909,1,1,217,218]]],[37,1,1,218,219,[[918,1,1,218,219]]]],[141,166,168,174,175,194,383,385,462,466,488,490,491,581,589,622,757,816,818,825,833,834,846,1121,1127,1128,1135,1137,1163,1166,1178,1209,1308,1551,1633,1666,1695,1743,1778,1780,1839,1912,1937,1939,1952,2080,2167,2268,2322,2323,2328,2336,2530,2531,2870,2995,3147,3218,3228,3356,3368,3491,3762,3763,3766,3954,3963,4139,4571,4575,4900,4929,4930,4931,5005,5025,5042,5104,5138,5158,5161,5197,5216,5218,5237,5239,5460,5483,5552,5567,5588,5617,5630,5730,5862,5950,5972,6198,6472,6571,6590,6673,6878,6930,6950,7010,7039,7176,7689,7692,7722,7842,7973,8138,8730,8731,8732,8739,8740,8759,8823,9090,9110,9192,9200,9223,9224,9266,9293,9329,9464,9607,9636,9640,9651,9672,9758,9787,9790,9817,9818,9837,9838,9891,10088,10327,10437,10558,10643,11110,11204,11495,11510,11662,11663,11664,11675,11683,11686,11687,11740,11749,11822,11842,11859,11860,11922,12412,12526,12534,12535,12686,12690,12719,12736,12738,12739,12770,12773,12778,12791,12798,12799,14248,14250,14277,14936,16089,16569,18132,18380,18819,19376,19377,19378,19381,19458,19862,19878,19926,20613,20614,20624,20636,20639,21051,21601,21616,21663,21664,21665,21755,22012,22057,22179,22320,22555,22846,22986]]],["into",[26,26,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,1,1,1,2,[[82,1,1,1,2]]],[5,2,2,2,4,[[188,1,1,2,3],[192,1,1,3,4]]],[6,1,1,4,5,[[219,1,1,4,5]]],[7,1,1,5,6,[[234,1,1,5,6]]],[10,2,2,6,8,[[291,1,1,6,7],[312,1,1,7,8]]],[13,4,4,8,12,[[381,1,1,8,9],[398,1,1,9,10],[400,2,2,10,12]]],[15,1,1,12,13,[[425,1,1,12,13]]],[18,1,1,13,14,[[582,1,1,13,14]]],[23,8,8,14,22,[[770,1,1,14,15],[782,1,1,15,16],[785,1,1,16,17],[786,3,3,17,20],[787,1,1,20,21],[788,1,1,21,22]]],[25,1,1,22,23,[[848,1,1,22,23]]],[26,1,1,23,24,[[850,1,1,23,24]]],[27,1,1,24,25,[[870,1,1,24,25]]],[30,1,1,25,26,[[888,1,1,25,26]]]],[1320,2482,5870,5971,6781,7187,8745,9505,11508,11896,11942,11947,12686,15629,19593,19906,19974,19990,19992,19993,20004,20022,21687,21739,22212,22521]]],["invade",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11597]]],["invaded",[1,1,[[11,1,1,0,1,[[325,1,1,0,1]]]],[9891]]],["laid",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15624]]],["led",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20837]]],["mentioned",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10423]]],["pass",[16,16,[[4,2,2,0,2,[[165,1,1,0,1],[170,1,1,1,2]]],[5,2,2,2,4,[[207,1,1,2,3],[209,1,1,3,4]]],[6,2,2,4,6,[[223,2,2,4,6]]],[8,1,1,6,7,[[245,1,1,6,7]]],[11,1,1,7,8,[[331,1,1,7,8]]],[22,5,5,8,13,[[715,1,1,8,9],[720,1,1,9,10],[724,1,1,10,11],[726,2,2,11,13]]],[23,1,1,13,14,[[772,1,1,13,14]]],[25,2,2,14,16,[[825,1,1,14,15],[834,1,1,15,16]]]],[5274,5406,6426,6474,6896,6901,7427,10086,18378,18489,18597,18617,18619,19627,21070,21313]]],["put",[6,6,[[1,2,2,0,2,[[53,1,1,0,1],[76,1,1,1,2]]],[2,2,2,2,4,[[100,1,1,2,3],[103,1,1,3,4]]],[15,1,1,4,5,[[415,1,1,4,5]]],[23,1,1,5,6,[[757,1,1,5,6]]]],[1607,2279,3029,3153,12332,19267]]],["resort",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14979]]],["runneth",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12216]]],["send",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3560]]],["set",[1,1,[[0,1,1,0,1,[[27,1,1,0,1]]]],[784]]],["stricken",[7,6,[[0,2,2,0,2,[[17,1,1,0,1],[23,1,1,1,2]]],[5,4,3,2,5,[[199,2,1,2,3],[209,2,2,3,5]]],[10,1,1,5,6,[[291,1,1,5,6]]]],[435,592,6155,6461,6462,8718]]],["taken",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20838]]],["to",[1,1,[[13,1,1,0,1,[[389,1,1,0,1]]]],[11673]]],["unto",[1,1,[[19,1,1,0,1,[[629,1,1,0,1]]]],[16452]]],["upon",[6,6,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,2,2,1,3,[[512,1,1,1,2],[521,1,1,2,3]]],[19,2,2,3,5,[[637,1,1,3,4],[655,1,1,4,5]]],[25,1,1,5,6,[[833,1,1,5,6]]]],[13224,14418,14588,16680,17218,21259]]],["went",[62,62,[[0,2,2,0,2,[[30,1,1,0,1],[38,1,1,1,2]]],[1,4,4,2,6,[[56,1,1,2,3],[63,1,1,3,4],[73,1,1,4,5],[89,1,1,5,6]]],[2,2,2,6,8,[[98,1,1,6,7],[105,1,1,7,8]]],[3,6,6,8,14,[[130,1,1,8,9],[133,1,1,9,10],[136,1,1,10,11],[138,1,1,11,12],[141,1,1,12,13],[147,1,1,13,14]]],[6,4,4,14,18,[[214,1,1,14,15],[219,1,1,15,16],[228,2,2,16,18]]],[7,3,3,18,21,[[233,1,1,18,19],[234,1,1,19,20],[235,1,1,20,21]]],[8,3,3,21,24,[[252,1,1,21,22],[255,1,1,22,23],[256,1,1,23,24]]],[9,10,10,24,34,[[273,1,1,24,25],[278,2,2,25,27],[282,1,1,27,28],[283,1,1,28,29],[284,1,1,29,30],[286,4,4,30,34]]],[10,4,4,34,38,[[292,1,1,34,35],[304,1,1,35,36],[306,1,1,36,37],[312,1,1,37,38]]],[11,6,6,38,44,[[319,1,1,38,39],[321,1,1,39,40],[322,1,1,40,41],[323,2,2,41,43],[331,1,1,43,44]]],[13,5,5,44,49,[[374,1,1,44,45],[384,1,1,45,46],[392,1,1,46,47],[395,2,2,47,49]]],[16,1,1,49,50,[[427,1,1,49,50]]],[18,2,2,50,52,[[543,1,1,50,51],[550,1,1,51,52]]],[22,1,1,52,53,[[715,1,1,52,53]]],[23,2,2,53,55,[[772,1,1,53,54],[784,1,1,54,55]]],[25,5,5,55,60,[[811,1,1,55,56],[837,3,3,56,59],[842,1,1,59,60]]],[27,1,1,60,61,[[870,1,1,60,61]]],[29,1,1,61,62,[[883,1,1,61,62]]]],[906,1160,1708,1911,2195,2739,2976,3224,4132,4252,4317,4389,4479,4685,6620,6759,7011,7013,7167,7179,7203,7630,7772,7782,8198,8302,8310,8448,8474,8487,8557,8562,8568,8576,8789,9246,9301,9510,9715,9762,9816,9845,9847,10062,11364,11571,11748,11807,11809,12738,14885,15037,18353,19622,19947,20635,21379,21380,21381,21529,22218,22442]]]]},{"k":"H936","v":[["*",[13,12,[[19,8,8,0,8,[[628,1,1,0,1],[633,1,1,1,2],[638,1,1,2,3],[640,1,1,3,4],[641,1,1,4,5],[650,2,2,5,7],[657,1,1,7,8]]],[21,3,2,8,10,[[678,3,2,8,10]]],[22,1,1,10,11,[[715,1,1,10,11]]],[37,1,1,11,12,[[914,1,1,11,12]]]],[16407,16570,16700,16760,16793,17053,17066,17268,17641,17647,18374,22932]]],["+",[2,1,[[21,2,1,0,1,[[678,2,1,0,1]]]],[17647]]],["despise",[4,4,[[19,4,4,0,4,[[628,1,1,0,1],[633,1,1,1,2],[650,2,2,2,4]]]],[16407,16570,17053,17066]]],["despised",[3,3,[[21,1,1,0,1,[[678,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]],[37,1,1,2,3,[[914,1,1,2,3]]]],[17641,18374,22932]]],["despiseth",[4,4,[[19,4,4,0,4,[[638,1,1,0,1],[640,1,1,1,2],[641,1,1,2,3],[657,1,1,3,4]]]],[16700,16760,16793,17268]]]]},{"k":"H937","v":[["*",[11,11,[[0,1,1,0,1,[[37,1,1,0,1]]],[17,3,3,1,4,[[447,2,2,1,3],[466,1,1,3,4]]],[18,5,5,4,9,[[508,1,1,4,5],[584,1,1,5,6],[596,1,1,6,7],[600,2,2,7,9]]],[19,2,2,9,11,[[639,1,1,9,10],[645,1,1,10,11]]]],[1142,13133,13149,13622,14349,15739,15920,16101,16102,16727,16904]]],["contempt",[7,7,[[17,2,2,0,2,[[447,1,1,0,1],[466,1,1,1,2]]],[18,4,4,2,6,[[584,1,1,2,3],[596,1,1,3,4],[600,2,2,4,6]]],[19,1,1,6,7,[[645,1,1,6,7]]]],[13149,13622,15739,15920,16101,16102,16904]]],["contemptuously",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14349]]],["despised",[2,2,[[17,1,1,0,1,[[447,1,1,0,1]]],[19,1,1,1,2,[[639,1,1,1,2]]]],[13133,16727]]],["shamed",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1142]]]]},{"k":"H938","v":[["Buz",[3,3,[[0,1,1,0,1,[[21,1,1,0,1]]],[12,1,1,1,2,[[342,1,1,1,2]]],[23,1,1,2,3,[[769,1,1,2,3]]]],[568,10442,19557]]]]},{"k":"H939","v":[["despised",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12363]]]]},{"k":"H940","v":[["Buzite",[2,2,[[17,2,2,0,2,[[467,2,2,0,2]]]],[13630,13634]]]]},{"k":"H941","v":[["Buzi",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20467]]]]},{"k":"H942","v":[["Bavai",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12345]]]]},{"k":"H943","v":[["*",[3,3,[[1,1,1,0,1,[[63,1,1,0,1]]],[16,1,1,1,2,[[428,1,1,1,2]]],[28,1,1,2,3,[[876,1,1,2,3]]]],[1892,12762,22309]]],["entangled",[1,1,[[1,1,1,0,1,[[63,1,1,0,1]]]],[1892]]],["perplexed",[2,2,[[16,1,1,0,1,[[428,1,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]]],[12762,22309]]]]},{"k":"H944","v":[["*",[2,2,[[17,1,1,0,1,[[475,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[13884,18552]]],["food",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13884]]],["stock",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18552]]]]},{"k":"H945","v":[["Bul",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8934]]]]},{"k":"H946","v":[["Bunah",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10331]]]]},{"k":"H947","v":[["*",[12,12,[[18,3,3,0,3,[[521,1,1,0,1],[537,1,1,1,2],[585,1,1,2,3]]],[19,1,1,3,4,[[654,1,1,3,4]]],[22,4,4,4,8,[[692,2,2,4,6],[741,2,2,6,8]]],[23,1,1,8,9,[[756,1,1,8,9]]],[25,2,2,9,11,[[817,2,2,9,11]]],[37,1,1,11,12,[[920,1,1,11,12]]]],[14576,14819,15755,17176,17947,17953,18872,18884,19259,20768,20784,23021]]],["+",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19259]]],["down",[5,5,[[18,2,2,0,2,[[537,1,1,0,1],[585,1,1,1,2]]],[22,2,2,2,4,[[741,2,2,2,4]]],[37,1,1,4,5,[[920,1,1,4,5]]]],[14819,15755,18872,18884,23021]]],["feet",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17947]]],["foot",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17953]]],["loatheth",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17176]]],["polluted",[2,2,[[25,2,2,0,2,[[817,2,2,0,2]]]],[20768,20784]]],["under",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14576]]]]},{"k":"H948","v":[["linen",[8,8,[[12,2,2,0,2,[[341,1,1,0,1],[352,1,1,1,2]]],[13,3,3,2,5,[[368,1,1,2,3],[369,1,1,3,4],[371,1,1,4,5]]],[16,2,2,5,7,[[426,1,1,5,6],[433,1,1,6,7]]],[25,1,1,7,8,[[828,1,1,7,8]]]],[10406,10818,11225,11243,11280,12708,12832,21137]]]]},{"k":"H949","v":[["Bozez",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7512]]]]},{"k":"H950","v":[["empty",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22709]]]]},{"k":"H951","v":[["herdman",[1,1,[[29,1,1,0,1,[[885,1,1,0,1]]]],[22478]]]]},{"k":"H952","v":[["+",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17476]]]]},{"k":"H953","v":[["*",[69,64,[[0,9,7,0,7,[[36,7,5,0,5],[39,1,1,5,6],[40,1,1,6,7]]],[1,4,3,7,10,[[61,1,1,7,8],[70,3,2,8,10]]],[2,1,1,10,11,[[100,1,1,10,11]]],[4,1,1,11,12,[[158,1,1,11,12]]],[8,2,2,12,14,[[248,1,1,12,13],[254,1,1,13,14]]],[9,4,4,14,18,[[269,1,1,14,15],[289,3,3,15,18]]],[11,2,2,18,20,[[322,1,1,18,19],[330,1,1,19,20]]],[12,3,3,20,23,[[348,3,3,20,23]]],[13,1,1,23,24,[[392,1,1,23,24]]],[15,1,1,24,25,[[421,1,1,24,25]]],[18,7,7,25,32,[[484,1,1,25,26],[505,1,1,26,27],[507,1,1,27,28],[517,1,1,28,29],[565,2,2,29,31],[620,1,1,31,32]]],[19,3,3,32,35,[[628,1,1,32,33],[632,1,1,33,34],[655,1,1,34,35]]],[20,1,1,35,36,[[670,1,1,35,36]]],[22,6,6,36,42,[[692,2,2,36,38],[702,1,1,38,39],[714,1,1,39,40],[716,1,1,40,41],[729,1,1,41,42]]],[23,11,10,42,52,[[750,1,1,42,43],[781,1,1,43,44],[782,7,6,44,50],[785,2,2,50,52]]],[24,2,2,52,54,[[799,2,2,52,54]]],[25,10,9,54,63,[[827,2,1,54,55],[832,2,2,55,57],[833,6,6,57,63]]],[37,1,1,63,64,[[919,1,1,63,64]]]],[1103,1105,1107,1111,1112,1187,1209,1845,2110,2111,3033,5097,7491,7728,8107,8668,8669,8673,9807,10055,10690,10691,10695,11742,12536,14010,14300,14322,14527,15312,15314,16300,16412,16532,17213,17529,17943,17947,18117,18346,18408,18674,19096,19890,19901,19902,19904,19905,19906,19908,19964,19966,20407,20409,21120,21244,21246,21266,21271,21272,21273,21277,21278,23010]]],["+",[12,12,[[1,1,1,0,1,[[61,1,1,0,1]]],[9,4,4,1,5,[[269,1,1,1,2],[289,3,3,2,5]]],[12,2,2,5,7,[[348,2,2,5,7]]],[18,1,1,7,8,[[517,1,1,7,8]]],[19,1,1,8,9,[[632,1,1,8,9]]],[23,1,1,9,10,[[781,1,1,9,10]]],[24,1,1,10,11,[[799,1,1,10,11]]],[37,1,1,11,12,[[919,1,1,11,12]]]],[1845,8107,8668,8669,8673,10690,10691,14527,16532,19890,20409,23010]]],["cistern",[3,3,[[11,1,1,0,1,[[330,1,1,0,1]]],[20,1,1,1,2,[[670,1,1,1,2]]],[22,1,1,2,3,[[714,1,1,2,3]]]],[10055,17529,18346]]],["dungeon",[10,9,[[0,2,2,0,2,[[39,1,1,0,1],[40,1,1,1,2]]],[23,7,6,2,8,[[782,7,6,2,8]]],[24,1,1,8,9,[[799,1,1,8,9]]]],[1187,1209,19901,19902,19904,19905,19906,19908,20407]]],["fountain",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19096]]],["pit",[38,34,[[0,7,5,0,5,[[36,7,5,0,5]]],[1,3,2,5,7,[[70,3,2,5,7]]],[2,1,1,7,8,[[100,1,1,7,8]]],[11,1,1,8,9,[[322,1,1,8,9]]],[12,1,1,9,10,[[348,1,1,9,10]]],[18,6,6,10,16,[[484,1,1,10,11],[505,1,1,11,12],[507,1,1,12,13],[565,2,2,13,15],[620,1,1,15,16]]],[19,2,2,16,18,[[628,1,1,16,17],[655,1,1,17,18]]],[22,5,5,18,23,[[692,2,2,18,20],[702,1,1,20,21],[716,1,1,21,22],[729,1,1,22,23]]],[23,2,2,23,25,[[785,2,2,23,25]]],[25,10,9,25,34,[[827,2,1,25,26],[832,2,2,26,28],[833,6,6,28,34]]]],[1103,1105,1107,1111,1112,2110,2111,3033,9807,10695,14010,14300,14322,15312,15314,16300,16412,17213,17943,17947,18117,18408,18674,19964,19966,21120,21244,21246,21266,21271,21272,21273,21277,21278]]],["pits",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7491]]],["well",[1,1,[[8,1,1,0,1,[[254,1,1,0,1]]]],[7728]]],["wells",[3,3,[[4,1,1,0,1,[[158,1,1,0,1]]],[13,1,1,1,2,[[392,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]]],[5097,11742,12536]]]]},{"k":"H954","v":[["*",[119,107,[[0,1,1,0,1,[[1,1,1,0,1]]],[1,1,1,1,2,[[81,1,1,1,2]]],[6,3,2,2,4,[[213,1,1,2,3],[215,2,1,3,4]]],[11,3,3,4,7,[[314,1,1,4,5],[320,1,1,5,6],[331,1,1,6,7]]],[14,2,2,7,9,[[410,1,1,7,8],[411,1,1,8,9]]],[17,2,2,9,11,[[441,1,1,9,10],[454,1,1,10,11]]],[18,34,31,11,42,[[483,2,1,11,12],[491,1,1,12,13],[499,1,1,13,14],[502,4,3,14,17],[508,3,2,17,19],[512,2,2,19,21],[514,1,1,21,22],[517,1,1,22,23],[521,1,1,23,24],[530,1,1,24,25],[546,1,1,25,26],[547,1,1,26,27],[548,3,3,27,30],[560,1,1,30,31],[563,1,1,31,32],[574,1,1,32,33],[586,1,1,33,34],[596,6,6,34,40],[604,1,1,40,41],[606,1,1,41,42]]],[19,6,6,42,48,[[637,1,1,42,43],[639,1,1,43,44],[641,1,1,44,45],[644,1,1,45,46],[646,1,1,46,47],[656,1,1,47,48]]],[22,22,21,48,69,[[679,1,1,48,49],[697,1,1,49,50],[698,1,1,50,51],[701,1,1,51,52],[702,1,1,52,53],[704,1,1,53,54],[707,1,1,54,55],[708,1,1,55,56],[715,1,1,56,57],[719,1,1,57,58],[720,1,1,58,59],[722,3,2,59,61],[723,3,3,61,64],[727,1,1,64,65],[728,1,1,65,66],[732,1,1,66,67],[743,1,1,67,68],[744,1,1,68,69]]],[23,28,21,69,90,[[746,3,2,69,71],[750,3,1,71,72],[752,4,2,72,74],[753,1,1,74,75],[756,1,1,75,76],[758,2,2,76,78],[759,1,1,78,79],[761,3,2,79,81],[764,1,1,81,82],[766,1,1,82,83],[775,1,1,83,84],[792,3,2,84,86],[793,1,1,86,87],[794,1,1,87,88],[795,2,2,88,90]]],[25,4,4,90,94,[[817,2,2,90,92],[833,1,1,92,93],[837,1,1,93,94]]],[27,4,4,94,98,[[863,1,1,94,95],[865,1,1,95,96],[871,1,1,96,97],[874,1,1,97,98]]],[28,3,3,98,101,[[876,1,1,98,99],[877,2,2,99,101]]],[32,2,2,101,103,[[895,1,1,101,102],[899,1,1,102,103]]],[35,1,1,103,104,[[908,1,1,103,104]]],[37,3,3,104,107,[[919,1,1,104,105],[920,1,1,105,106],[923,1,1,106,107]]]],[55,2439,6593,6651,9568,9738,10087,12223,12243,12998,13300,13995,14086,14209,14253,14254,14271,14332,14348,14414,14436,14469,14539,14578,14724,14941,14973,14977,14989,15000,15258,15301,15485,15783,15904,15929,15944,15976,15978,16014,16126,16137,16661,16723,16807,16875,16951,17239,17683,18013,18034,18081,18118,18141,18215,18222,18379,18462,18497,18542,18544,18577,18578,18585,18659,18669,18727,18910,18927,18991,19001,19104,19162,19165,19194,19262,19296,19297,19324,19370,19375,19433,19476,19710,20093,20119,20150,20178,20259,20263,20814,20825,21278,21391,22110,22152,22231,22281,22302,22337,22338,22615,22680,22831,23004,23021,23063]]],["+",[6,4,[[22,1,1,0,1,[[720,1,1,0,1]]],[23,4,2,1,3,[[750,2,1,1,2],[752,2,1,2,3]]],[25,1,1,3,4,[[817,1,1,3,4]]]],[18497,19104,19165,20814]]],["Confounded",[1,1,[[18,1,1,0,1,[[574,1,1,0,1]]]],[15485]]],["ashamed",[76,70,[[0,1,1,0,1,[[1,1,1,0,1]]],[6,1,1,1,2,[[213,1,1,1,2]]],[11,2,2,2,4,[[314,1,1,2,3],[320,1,1,3,4]]],[14,2,2,4,6,[[410,1,1,4,5],[411,1,1,5,6]]],[17,1,1,6,7,[[454,1,1,6,7]]],[18,22,19,7,26,[[483,2,1,7,8],[502,4,3,8,11],[508,3,2,11,13],[512,1,1,13,14],[514,1,1,14,15],[517,1,1,15,16],[546,1,1,16,17],[547,1,1,17,18],[563,1,1,18,19],[586,1,1,19,20],[596,5,5,20,25],[604,1,1,25,26]]],[19,1,1,26,27,[[639,1,1,26,27]]],[22,19,18,27,45,[[679,1,1,27,28],[698,1,1,28,29],[701,1,1,29,30],[702,1,1,30,31],[704,1,1,31,32],[707,1,1,32,33],[708,1,1,33,34],[719,1,1,34,35],[722,3,2,35,37],[723,3,3,37,40],[727,1,1,40,41],[728,1,1,41,42],[732,1,1,42,43],[743,1,1,43,44],[744,1,1,44,45]]],[23,16,14,45,59,[[746,3,2,45,47],[750,1,1,47,48],[752,2,2,48,50],[756,1,1,50,51],[758,2,2,51,53],[759,1,1,53,54],[761,1,1,54,55],[764,1,1,55,56],[766,1,1,56,57],[775,1,1,57,58],[792,2,1,58,59]]],[25,2,2,59,61,[[833,1,1,59,60],[837,1,1,60,61]]],[27,2,2,61,63,[[865,1,1,61,62],[871,1,1,62,63]]],[28,3,3,63,66,[[876,1,1,63,64],[877,2,2,64,66]]],[32,1,1,66,67,[[895,1,1,66,67]]],[35,1,1,67,68,[[908,1,1,67,68]]],[37,2,2,68,70,[[919,1,1,68,69],[923,1,1,69,70]]]],[55,6593,9568,9738,12223,12243,13300,13995,14253,14254,14271,14332,14348,14436,14469,14539,14941,14973,15301,15783,15904,15944,15976,15978,16014,16126,16723,17683,18034,18081,18118,18141,18215,18222,18462,18542,18544,18577,18578,18585,18659,18669,18727,18910,18927,18991,19001,19104,19162,19165,19262,19296,19297,19324,19370,19433,19476,19710,20093,21278,21391,22152,22231,22302,22337,22338,22615,22831,23004,23063]]],["confounded",[20,19,[[11,1,1,0,1,[[331,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]],[18,6,6,2,8,[[499,1,1,2,3],[512,1,1,3,4],[548,2,2,4,6],[560,1,1,6,7],[606,1,1,7,8]]],[22,2,2,8,10,[[697,1,1,8,9],[715,1,1,9,10]]],[23,7,6,10,16,[[753,1,1,10,11],[761,2,1,11,12],[793,1,1,12,13],[794,1,1,13,14],[795,2,2,14,16]]],[25,1,1,16,17,[[817,1,1,16,17]]],[32,1,1,17,18,[[899,1,1,17,18]]],[37,1,1,18,19,[[920,1,1,18,19]]]],[10087,12998,14209,14414,14989,15000,15258,16137,18013,18379,19194,19375,20150,20178,20259,20263,20825,22680,23021]]],["confusion",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14977]]],["delayed",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2439]]],["dry",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22281]]],["is",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6651]]],["long",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6651]]],["shame",[9,9,[[18,3,3,0,3,[[521,1,1,0,1],[530,1,1,1,2],[596,1,1,2,3]]],[19,5,5,3,8,[[637,1,1,3,4],[641,1,1,4,5],[644,1,1,5,6],[646,1,1,6,7],[656,1,1,7,8]]],[23,1,1,8,9,[[792,1,1,8,9]]]],[14578,14724,15929,16661,16807,16875,16951,17239,20119]]],["shamed",[1,1,[[18,1,1,0,1,[[491,1,1,0,1]]]],[14086]]],["shamefully",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22110]]]]},{"k":"H955","v":[["shame",[4,4,[[18,1,1,0,1,[[566,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]],[30,1,1,2,3,[[888,1,1,2,3]]],[32,1,1,3,4,[[899,1,1,3,4]]]],[15371,20595,22520,22674]]]]},{"k":"H956","v":[["night",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21923]]]]},{"k":"H957","v":[["*",[25,25,[[3,3,3,0,3,[[130,2,2,0,2],[147,1,1,2,3]]],[4,1,1,3,4,[[153,1,1,3,4]]],[11,1,1,4,5,[[333,1,1,4,5]]],[22,3,3,5,8,[[688,1,1,5,6],[711,1,1,6,7],[720,1,1,7,8]]],[23,5,5,8,13,[[746,1,1,8,9],[759,1,1,9,10],[761,1,1,10,11],[774,1,1,11,12],[793,1,1,12,13]]],[25,12,12,13,25,[[808,1,1,13,14],[824,1,1,14,15],[826,1,1,15,16],[827,1,1,16,17],[830,1,1,17,18],[835,3,3,18,21],[837,2,2,21,23],[839,2,2,23,25]]]],[4111,4139,4696,4931,10133,17856,18302,18502,18979,19328,19360,19683,20159,20598,21053,21090,21105,21202,21321,21335,21341,21363,21364,21437,21438]]],["booty",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20159]]],["prey",[18,18,[[3,3,3,0,3,[[130,2,2,0,2],[147,1,1,2,3]]],[4,1,1,3,4,[[153,1,1,3,4]]],[11,1,1,4,5,[[333,1,1,4,5]]],[22,3,3,5,8,[[688,1,1,5,6],[711,1,1,6,7],[720,1,1,7,8]]],[23,1,1,8,9,[[774,1,1,8,9]]],[25,9,9,9,18,[[808,1,1,9,10],[830,1,1,10,11],[835,3,3,11,14],[837,2,2,14,16],[839,2,2,16,18]]]],[4111,4139,4696,4931,10133,17856,18302,18502,19683,20598,21202,21321,21335,21341,21363,21364,21437,21438]]],["spoil",[4,4,[[23,2,2,0,2,[[759,1,1,0,1],[761,1,1,1,2]]],[25,2,2,2,4,[[826,1,1,2,3],[827,1,1,3,4]]]],[19328,19360,21090,21105]]],["spoiled",[2,2,[[23,1,1,0,1,[[746,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[18979,21053]]]]},{"k":"H958","v":[["spoiled",[2,2,[[22,2,2,0,2,[[696,2,2,0,2]]]],[17999,18004]]]]},{"k":"H959","v":[["*",[42,40,[[0,1,1,0,1,[[24,1,1,0,1]]],[3,1,1,1,2,[[131,1,1,1,2]]],[8,3,3,2,5,[[237,1,1,2,3],[245,1,1,3,4],[252,1,1,4,5]]],[9,3,3,5,8,[[272,1,1,5,6],[278,2,2,6,8]]],[11,1,1,8,9,[[331,1,1,8,9]]],[12,1,1,9,10,[[352,1,1,9,10]]],[13,1,1,10,11,[[402,1,1,10,11]]],[15,1,1,11,12,[[414,1,1,11,12]]],[16,2,2,12,14,[[426,1,1,12,13],[428,1,1,13,14]]],[18,8,8,14,22,[[492,1,1,14,15],[499,2,2,15,17],[528,1,1,17,18],[546,1,1,18,19],[550,1,1,19,20],[579,1,1,20,21],[596,1,1,21,22]]],[19,3,3,22,25,[[641,1,1,22,23],[642,1,1,23,24],[646,1,1,24,25]]],[20,1,1,25,26,[[667,1,1,25,26]]],[22,2,1,26,27,[[731,2,1,26,27]]],[23,2,2,27,29,[[766,1,1,27,28],[793,1,1,28,29]]],[25,5,5,29,34,[[817,1,1,29,30],[818,3,3,30,33],[823,1,1,33,34]]],[26,1,1,34,35,[[860,1,1,34,35]]],[30,1,1,35,36,[[888,1,1,35,36]]],[38,5,4,36,40,[[925,4,3,36,39],[926,1,1,39,40]]]],[692,4184,7270,7445,7660,8173,8295,8296,10082,10820,12009,12326,12719,12753,14091,14210,14228,14708,14968,15040,15538,16039,16774,16827,16941,17491,18714,19482,20142,20821,20841,20843,20844,20984,22057,22512,23095,23096,23101,23112]]],["+",[5,5,[[0,1,1,0,1,[[24,1,1,0,1]]],[9,1,1,1,2,[[278,1,1,1,2]]],[15,1,1,2,3,[[414,1,1,2,3]]],[18,1,1,3,4,[[579,1,1,3,4]]],[38,1,1,4,5,[[925,1,1,4,5]]]],[692,8295,12326,15538,23095]]],["contemned",[1,1,[[18,1,1,0,1,[[492,1,1,0,1]]]],[14091]]],["contemptible",[3,3,[[38,3,3,0,3,[[925,2,2,0,2],[926,1,1,2,3]]]],[23096,23101,23112]]],["despise",[5,5,[[8,1,1,0,1,[[237,1,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]],[18,2,2,2,4,[[528,1,1,2,3],[550,1,1,3,4]]],[38,1,1,4,5,[[925,1,1,4,5]]]],[7270,12719,14708,15040,23095]]],["despised",[21,20,[[3,1,1,0,1,[[131,1,1,0,1]]],[8,1,1,1,2,[[245,1,1,1,2]]],[9,2,2,2,4,[[272,1,1,2,3],[278,1,1,3,4]]],[11,1,1,4,5,[[331,1,1,4,5]]],[12,1,1,5,6,[[352,1,1,5,6]]],[13,1,1,6,7,[[402,1,1,6,7]]],[18,3,3,7,10,[[499,2,2,7,9],[596,1,1,9,10]]],[20,1,1,10,11,[[667,1,1,10,11]]],[22,2,1,11,12,[[731,2,1,11,12]]],[23,2,2,12,14,[[766,1,1,12,13],[793,1,1,13,14]]],[25,5,5,14,19,[[817,1,1,14,15],[818,3,3,15,18],[823,1,1,18,19]]],[30,1,1,19,20,[[888,1,1,19,20]]]],[4184,7445,8173,8296,10082,10820,12009,14210,14228,16039,17491,18714,19482,20142,20821,20841,20843,20844,20984,22512]]],["despiseth",[4,4,[[18,1,1,0,1,[[546,1,1,0,1]]],[19,3,3,1,4,[[641,1,1,1,2],[642,1,1,2,3],[646,1,1,3,4]]]],[14968,16774,16827,16941]]],["disdained",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7660]]],["person",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22057]]],["scorn",[1,1,[[16,1,1,0,1,[[428,1,1,0,1]]]],[12753]]]]},{"k":"H960","v":[["despiseth",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18643]]]]},{"k":"H961","v":[["*",[10,10,[[13,3,3,0,3,[[380,1,1,0,1],[391,1,1,1,2],[394,1,1,2,3]]],[14,1,1,3,4,[[411,1,1,3,4]]],[15,1,1,4,5,[[416,1,1,4,5]]],[16,3,3,5,8,[[434,3,3,5,8]]],[26,2,2,8,10,[[860,2,2,8,10]]]],[11489,11717,11778,12244,12363,12844,12849,12850,22060,22069]]],["prey",[4,4,[[15,1,1,0,1,[[416,1,1,0,1]]],[16,2,2,1,3,[[434,2,2,1,3]]],[26,1,1,3,4,[[860,1,1,3,4]]]],[12363,12849,12850,22060]]],["spoil",[6,6,[[13,3,3,0,3,[[380,1,1,0,1],[391,1,1,1,2],[394,1,1,2,3]]],[14,1,1,3,4,[[411,1,1,3,4]]],[16,1,1,4,5,[[434,1,1,4,5]]],[26,1,1,5,6,[[860,1,1,5,6]]]],[11489,11717,11778,12244,12844,22069]]]]},{"k":"H962","v":[["*",[43,39,[[0,2,2,0,2,[[33,2,2,0,2]]],[3,3,3,2,5,[[147,3,3,2,5]]],[4,3,3,5,8,[[154,1,1,5,6],[155,1,1,6,7],[172,1,1,7,8]]],[5,3,3,8,11,[[194,2,2,8,10],[197,1,1,10,11]]],[8,1,1,11,12,[[249,1,1,11,12]]],[11,1,1,12,13,[[319,1,1,12,13]]],[13,5,4,13,17,[[380,1,1,13,14],[386,2,1,14,15],[391,1,1,15,16],[394,1,1,16,17]]],[16,2,2,17,19,[[428,1,1,17,18],[433,1,1,18,19]]],[18,1,1,19,20,[[586,1,1,19,20]]],[22,9,8,20,28,[[688,2,2,20,22],[689,1,1,22,23],[695,1,1,23,24],[702,2,1,24,25],[711,1,1,25,26],[720,2,2,26,28]]],[23,3,3,28,31,[[764,1,1,28,29],[774,1,1,29,30],[794,1,1,30,31]]],[25,6,5,31,36,[[827,1,1,31,32],[830,1,1,32,33],[839,2,2,33,35],[840,2,1,35,36]]],[29,1,1,36,37,[[881,1,1,36,37]]],[33,2,1,37,38,[[901,2,1,37,38]]],[35,1,1,38,39,[[907,1,1,38,39]]]],[1007,1009,4673,4696,4717,4973,4982,5441,6004,6029,6121,7544,9723,11489,11612,11717,11772,12760,12828,15766,17852,17856,17898,17997,18098,18302,18502,18504,19427,19683,20203,21112,21202,21437,21438,21458,22406,22708,22814]]],["+",[9,7,[[11,1,1,0,1,[[319,1,1,0,1]]],[13,4,3,1,4,[[380,1,1,1,2],[386,2,1,2,3],[394,1,1,3,4]]],[22,3,2,4,6,[[689,1,1,4,5],[702,2,1,5,6]]],[25,1,1,6,7,[[840,1,1,6,7]]]],[9723,11489,11612,11772,17898,18098,21458]]],["caught",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4696]]],["prey",[9,9,[[4,2,2,0,2,[[154,1,1,0,1],[155,1,1,1,2]]],[5,3,3,2,5,[[194,2,2,2,4],[197,1,1,4,5]]],[16,2,2,5,7,[[428,1,1,5,6],[433,1,1,6,7]]],[23,1,1,7,8,[[774,1,1,7,8]]],[25,1,1,8,9,[[827,1,1,8,9]]]],[4973,4982,6004,6029,6121,12760,12828,19683,21112]]],["rob",[2,2,[[22,2,2,0,2,[[688,1,1,0,1],[695,1,1,1,2]]]],[17852,17997]]],["robbed",[3,3,[[22,1,1,0,1,[[720,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]],[25,1,1,2,3,[[840,1,1,2,3]]]],[18502,20203,21458]]],["robbers",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18504]]],["spoil",[8,7,[[3,2,2,0,2,[[147,2,2,0,2]]],[8,1,1,2,3,[[249,1,1,2,3]]],[18,1,1,3,4,[[586,1,1,3,4]]],[23,1,1,4,5,[[764,1,1,4,5]]],[33,2,1,5,6,[[901,2,1,5,6]]],[35,1,1,6,7,[[907,1,1,6,7]]]],[4673,4717,7544,15766,19427,22708,22814]]],["spoiled",[3,3,[[0,2,2,0,2,[[33,2,2,0,2]]],[29,1,1,2,3,[[881,1,1,2,3]]]],[1007,1009,22406]]],["take",[6,6,[[4,1,1,0,1,[[172,1,1,0,1]]],[22,2,2,1,3,[[688,1,1,1,2],[711,1,1,2,3]]],[25,3,3,3,6,[[830,1,1,3,4],[839,2,2,4,6]]]],[5441,17856,18302,21202,21437,21438]]],["took",[1,1,[[13,1,1,0,1,[[391,1,1,0,1]]]],[11717]]]]},{"k":"H963","v":[["contempt",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12720]]]]},{"k":"H964","v":[["Bizjothjah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6230]]]]},{"k":"H965","v":[["lightning",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20478]]]]},{"k":"H966","v":[["Bezek",[3,3,[[6,2,2,0,2,[[211,2,2,0,2]]],[8,1,1,2,3,[[246,1,1,2,3]]]],[6513,6514,7453]]]]},{"k":"H967","v":[["scatter",[2,2,[[18,1,1,0,1,[[545,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[14930,22060]]]]},{"k":"H968","v":[["Biztha",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12712]]]]},{"k":"H969","v":[["tower",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19116]]]]},{"k":"H970","v":[["*",[46,45,[[4,1,1,0,1,[[184,1,1,0,1]]],[6,2,2,1,3,[[224,1,1,1,2],[230,1,1,2,3]]],[7,1,1,3,4,[[234,1,1,3,4]]],[8,2,2,4,6,[[243,1,1,4,5],[244,1,1,5,6]]],[11,1,1,6,7,[[320,1,1,6,7]]],[13,2,1,7,8,[[402,2,1,7,8]]],[18,4,4,8,12,[[555,2,2,8,10],[566,1,1,10,11],[625,1,1,11,12]]],[19,1,1,12,13,[[647,1,1,12,13]]],[20,1,1,13,14,[[669,1,1,13,14]]],[22,5,5,14,19,[[687,1,1,14,15],[701,1,1,15,16],[709,1,1,16,17],[718,1,1,17,18],[740,1,1,18,19]]],[23,11,11,19,30,[[750,1,1,19,20],[753,1,1,20,21],[755,1,1,21,22],[759,1,1,22,23],[762,1,1,23,24],[775,1,1,24,25],[792,1,1,25,26],[793,1,1,26,27],[794,1,1,27,28],[795,2,2,28,30]]],[24,5,5,30,35,[[797,2,2,30,32],[798,1,1,32,33],[801,2,2,33,35]]],[25,5,5,35,40,[[810,1,1,35,36],[824,3,3,36,39],[831,1,1,39,40]]],[28,1,1,40,41,[[877,1,1,40,41]]],[29,3,3,41,44,[[880,1,1,41,42],[882,1,1,42,43],[886,1,1,43,44]]],[37,1,1,44,45,[[919,1,1,44,45]]]],[5783,6919,7069,7182,7385,7393,9739,12010,15144,15176,15345,16383,16983,17522,17846,18081,18258,18450,18859,19100,19196,19248,19323,19405,19704,20095,20153,20196,20215,20234,20325,20328,20353,20455,20456,20628,21013,21019,21030,21221,22339,22390,22420,22494,23016]]],["+",[1,1,[[29,1,1,0,1,[[880,1,1,0,1]]]],[22390]]],["chosen",[3,3,[[6,1,1,0,1,[[230,1,1,0,1]]],[18,2,2,1,3,[[555,1,1,1,2],[566,1,1,2,3]]]],[7069,15144,15345]]],["man",[6,6,[[4,1,1,0,1,[[184,1,1,0,1]]],[8,1,1,1,2,[[244,1,1,1,2]]],[13,1,1,2,3,[[402,1,1,2,3]]],[20,1,1,3,4,[[669,1,1,3,4]]],[22,1,1,4,5,[[740,1,1,4,5]]],[23,1,1,5,6,[[795,1,1,5,6]]]],[5783,7393,12010,17522,18859,20234]]],["men",[35,35,[[6,1,1,0,1,[[224,1,1,0,1]]],[7,1,1,1,2,[[234,1,1,1,2]]],[8,1,1,2,3,[[243,1,1,2,3]]],[11,1,1,3,4,[[320,1,1,3,4]]],[13,1,1,4,5,[[402,1,1,4,5]]],[18,2,2,5,7,[[555,1,1,5,6],[625,1,1,6,7]]],[19,1,1,7,8,[[647,1,1,7,8]]],[22,4,4,8,12,[[687,1,1,8,9],[701,1,1,9,10],[709,1,1,10,11],[718,1,1,11,12]]],[23,10,10,12,22,[[750,1,1,12,13],[753,1,1,13,14],[755,1,1,14,15],[759,1,1,15,16],[762,1,1,16,17],[775,1,1,17,18],[792,1,1,18,19],[793,1,1,19,20],[794,1,1,20,21],[795,1,1,21,22]]],[24,5,5,22,27,[[797,2,2,22,24],[798,1,1,24,25],[801,2,2,25,27]]],[25,4,4,27,31,[[824,3,3,27,30],[831,1,1,30,31]]],[28,1,1,31,32,[[877,1,1,31,32]]],[29,2,2,32,34,[[882,1,1,32,33],[886,1,1,33,34]]],[37,1,1,34,35,[[919,1,1,34,35]]]],[6919,7182,7385,9739,12010,15176,16383,16983,17846,18081,18258,18450,19100,19196,19248,19323,19405,19704,20095,20153,20196,20215,20325,20328,20353,20455,20456,21013,21019,21030,21221,22339,22420,22494,23016]]],["young",[1,1,[[25,1,1,0,1,[[810,1,1,0,1]]]],[20628]]]]},{"k":"H971","v":[["towers",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18090]]]]},{"k":"H972","v":[["*",[13,13,[[9,1,1,0,1,[[287,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[18,5,5,2,7,[[566,1,1,2,3],[582,2,2,3,5],[583,2,2,5,7]]],[22,6,6,7,13,[[720,1,1,7,8],[721,1,1,8,9],[723,1,1,9,10],[743,3,3,10,13]]]],[8586,10833,15329,15612,15649,15656,15674,18481,18525,18565,18906,18912,18919]]],["choose",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8586]]],["chosen",[7,7,[[18,5,5,0,5,[[566,1,1,0,1],[582,2,2,1,3],[583,2,2,3,5]]],[22,2,2,5,7,[[721,1,1,5,6],[743,1,1,6,7]]]],[15329,15612,15649,15656,15674,18525,18912]]],["elect",[4,4,[[22,4,4,0,4,[[720,1,1,0,1],[723,1,1,1,2],[743,2,2,2,4]]]],[18481,18565,18906,18919]]],["ones",[1,1,[[12,1,1,0,1,[[353,1,1,0,1]]]],[10833]]]]},{"k":"H973","v":[["abhorred",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23036]]]]},{"k":"H974","v":[["*",[29,28,[[0,2,2,0,2,[[41,2,2,0,2]]],[12,1,1,2,3,[[366,1,1,2,3]]],[17,5,5,3,8,[[442,1,1,3,4],[447,1,1,4,5],[458,1,1,5,6],[469,2,2,6,8]]],[18,9,9,8,17,[[484,1,1,8,9],[488,2,2,9,11],[494,1,1,11,12],[503,1,1,12,13],[543,1,1,13,14],[558,1,1,14,15],[572,1,1,15,16],[616,1,1,16,17]]],[19,1,1,17,18,[[644,1,1,17,18]]],[23,6,6,18,24,[[750,1,1,18,19],[753,1,1,19,20],[755,1,1,20,21],[756,1,1,21,22],[761,1,1,22,23],[764,1,1,23,24]]],[25,1,1,24,25,[[822,1,1,24,25]]],[37,2,1,25,26,[[923,2,1,25,26]]],[38,2,2,26,28,[[927,2,2,26,28]]]],[1267,1268,11181,13026,13139,13429,13686,13719,14004,14063,14064,14106,14275,14883,15224,15463,16262,16876,19116,19182,19246,19252,19367,19434,20957,23068,23130,23135]]],["+",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19116]]],["Examine",[1,1,[[18,1,1,0,1,[[503,1,1,0,1]]]],[14275]]],["prove",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23130]]],["proved",[6,6,[[0,2,2,0,2,[[41,2,2,0,2]]],[18,4,4,2,6,[[494,1,1,2,3],[543,1,1,3,4],[558,1,1,4,5],[572,1,1,5,6]]]],[1267,1268,14106,14883,15224,15463]]],["tempt",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23135]]],["trial",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20957]]],["tried",[4,4,[[17,2,2,0,2,[[458,1,1,0,1],[469,1,1,1,2]]],[23,1,1,2,3,[[756,1,1,2,3]]],[37,1,1,3,4,[[923,1,1,3,4]]]],[13429,13719,19252,23068]]],["triest",[3,3,[[12,1,1,0,1,[[366,1,1,0,1]]],[23,2,2,1,3,[[755,1,1,1,2],[764,1,1,2,3]]]],[11181,19246,19434]]],["trieth",[4,4,[[17,1,1,0,1,[[469,1,1,0,1]]],[18,2,2,1,3,[[484,1,1,1,2],[488,1,1,2,3]]],[19,1,1,3,4,[[644,1,1,3,4]]]],[13686,14004,14064,16876]]],["try",[7,7,[[17,2,2,0,2,[[442,1,1,0,1],[447,1,1,1,2]]],[18,2,2,2,4,[[488,1,1,2,3],[616,1,1,3,4]]],[23,2,2,4,6,[[753,1,1,4,5],[761,1,1,5,6]]],[37,1,1,6,7,[[923,1,1,6,7]]]],[13026,13139,14063,16262,19182,19367,23068]]]]},{"k":"H975","v":[["towers",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18273]]]]},{"k":"H976","v":[["tried",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18180]]]]},{"k":"H977","v":[["*",[169,161,[[0,2,2,0,2,[[5,1,1,0,1],[12,1,1,1,2]]],[1,3,3,2,5,[[63,1,1,2,3],[66,1,1,3,4],[67,1,1,4,5]]],[3,3,3,5,8,[[132,2,2,5,7],[133,1,1,7,8]]],[4,31,31,8,39,[[156,1,1,8,9],[159,2,2,9,11],[162,1,1,11,12],[164,6,6,12,18],[166,4,4,18,22],[167,1,1,22,23],[168,6,6,23,29],[169,3,3,29,32],[170,2,2,32,34],[173,1,1,34,35],[175,1,1,35,36],[178,1,1,36,37],[182,1,1,37,38],[183,1,1,38,39]]],[5,4,4,39,43,[[194,1,1,39,40],[195,1,1,40,41],[210,2,2,41,43]]],[6,4,4,43,47,[[215,1,1,43,44],[220,1,1,44,45],[230,2,2,45,47]]],[8,12,12,47,59,[[237,1,1,47,48],[243,1,1,48,49],[245,1,1,49,50],[247,1,1,50,51],[248,1,1,51,52],[251,3,3,52,55],[252,1,1,55,56],[255,1,1,56,57],[259,1,1,57,58],[261,1,1,58,59]]],[9,9,8,59,67,[[272,2,2,59,61],[276,2,1,61,62],[281,1,1,62,63],[282,1,1,63,64],[283,1,1,64,65],[285,1,1,65,66],[290,1,1,66,67]]],[10,13,12,67,79,[[293,1,1,67,68],[298,4,3,68,71],[301,4,4,71,75],[302,1,1,75,76],[304,1,1,76,77],[308,2,2,77,79]]],[11,2,2,79,81,[[333,1,1,79,80],[335,1,1,80,81]]],[12,10,8,81,89,[[352,1,1,81,82],[356,2,1,82,83],[358,1,1,83,84],[365,5,4,84,88],[366,1,1,88,89]]],[13,16,13,89,102,[[372,6,4,89,93],[373,2,2,93,95],[377,1,1,95,96],[378,1,1,96,97],[379,3,2,97,99],[391,1,1,99,100],[395,1,1,100,101],[399,1,1,101,102]]],[15,2,2,102,104,[[413,1,1,102,103],[421,1,1,103,104]]],[17,7,7,104,111,[[442,1,1,104,105],[444,1,1,105,106],[450,1,1,106,107],[464,1,1,107,108],[469,2,2,108,110],[471,1,1,110,111]]],[18,13,13,111,124,[[502,1,1,111,112],[510,1,1,112,113],[524,1,1,113,114],[542,1,1,114,115],[555,3,3,115,118],[561,1,1,118,119],[582,1,1,119,120],[596,2,2,120,122],[609,1,1,122,123],[612,1,1,123,124]]],[19,8,8,124,132,[[628,1,1,124,125],[630,1,1,125,126],[635,2,2,126,128],[637,1,1,128,129],[643,1,1,129,130],[648,1,1,130,131],[649,1,1,131,132]]],[21,1,1,132,133,[[675,1,1,132,133]]],[22,20,19,133,152,[[679,1,1,133,134],[685,2,2,134,136],[692,1,1,136,137],[718,1,1,137,138],[719,3,3,138,141],[721,1,1,141,142],[722,2,2,142,144],[726,1,1,144,145],[727,1,1,145,146],[734,1,1,146,147],[736,2,2,147,149],[743,1,1,149,150],[744,3,2,150,152]]],[23,4,4,152,156,[[752,1,1,152,153],[777,1,1,153,154],[793,1,1,154,155],[794,1,1,155,156]]],[25,1,1,156,157,[[821,1,1,156,157]]],[36,1,1,157,158,[[910,1,1,157,158]]],[37,3,3,158,161,[[911,1,1,158,159],[912,1,1,159,160],[913,1,1,160,161]]]],[139,329,1896,1992,2024,4199,4201,4249,5041,5117,5118,5201,5245,5251,5254,5258,5261,5266,5292,5313,5314,5315,5339,5344,5348,5349,5353,5357,5358,5372,5374,5379,5389,5390,5452,5516,5568,5727,5739,6005,6064,6491,6498,6631,6825,7070,7088,7268,7387,7442,7473,7487,7603,7604,7605,7658,7760,7841,7907,8158,8178,8249,8404,8444,8450,8549,8704,8824,9001,9029,9033,9121,9140,9142,9144,9172,9239,9364,9366,10126,10192,10793,10917,10944,11147,11148,11149,11153,11165,11287,11288,11316,11320,11336,11340,11415,11450,11456,11470,11709,11802,11915,12305,12518,13023,13065,13208,13557,13687,13716,13757,14263,14378,14629,14864,15180,15181,15183,15269,15632,15928,16071,16164,16179,16429,16486,16612,16621,16676,16856,16987,17016,17613,17683,17797,17798,17929,18440,18459,18460,18475,18515,18534,18535,18624,18643,18757,18791,18792,18909,18925,18926,19156,19799,20146,20210,20900,22878,22895,22911,22914]]],["+",[3,3,[[18,2,2,0,2,[[524,1,1,0,1],[555,1,1,1,2]]],[19,1,1,2,3,[[635,1,1,2,3]]]],[14629,15181,16612]]],["Choose",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9366]]],["acceptable",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16987]]],["appoint",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8404]]],["choice",[5,5,[[9,1,1,0,1,[[276,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]],[13,1,1,2,3,[[391,1,1,2,3]]],[19,2,2,3,5,[[635,1,1,3,4],[637,1,1,4,5]]]],[8249,10917,11709,16621,16676]]],["choose",[48,48,[[3,2,2,0,2,[[132,1,1,0,1],[133,1,1,1,2]]],[4,23,23,2,25,[[159,1,1,2,3],[164,5,5,3,8],[166,3,3,8,11],[167,1,1,11,12],[168,5,5,12,17],[169,3,3,17,20],[170,1,1,20,21],[175,1,1,21,22],[178,1,1,22,23],[182,1,1,23,24],[183,1,1,24,25]]],[5,2,2,25,27,[[195,1,1,25,26],[210,1,1,26,27]]],[8,1,1,27,28,[[237,1,1,27,28]]],[9,2,2,28,30,[[282,1,1,28,29],[290,1,1,29,30]]],[10,2,2,30,32,[[304,1,1,30,31],[308,1,1,31,32]]],[12,1,1,32,33,[[358,1,1,32,33]]],[15,1,1,33,34,[[421,1,1,33,34]]],[17,2,2,34,36,[[469,2,2,34,36]]],[18,1,1,36,37,[[502,1,1,36,37]]],[19,2,2,37,39,[[628,1,1,37,38],[630,1,1,38,39]]],[22,7,7,39,46,[[685,2,2,39,41],[692,1,1,41,42],[727,1,1,42,43],[734,1,1,43,44],[743,1,1,44,45],[744,1,1,45,46]]],[37,2,2,46,48,[[911,1,1,46,47],[912,1,1,47,48]]]],[4201,4249,5118,5245,5251,5254,5258,5266,5313,5314,5315,5339,5344,5348,5349,5357,5358,5372,5374,5379,5390,5516,5568,5727,5739,6064,6491,7268,8444,8704,9239,9364,10944,12518,13687,13716,14263,16429,16486,17797,17798,17929,18643,18757,18909,18926,22895,22911]]],["choosest",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,1,1,1,2,[[542,1,1,1,2]]]],[13208,14864]]],["chooseth",[3,3,[[17,1,1,0,1,[[442,1,1,0,1]]],[22,2,2,1,3,[[718,1,1,1,2],[719,1,1,2,3]]]],[13023,18440,18475]]],["chose",[21,19,[[0,2,2,0,2,[[5,1,1,0,1],[12,1,1,1,2]]],[1,1,1,2,3,[[67,1,1,2,3]]],[4,2,2,3,5,[[156,1,1,3,4],[162,1,1,4,5]]],[6,1,1,5,6,[[215,1,1,5,6]]],[8,2,2,6,8,[[248,1,1,6,7],[252,1,1,7,8]]],[9,2,2,8,10,[[272,1,1,8,9],[276,1,1,9,10]]],[10,3,2,10,12,[[298,2,1,10,11],[301,1,1,11,12]]],[12,2,2,12,14,[[356,1,1,12,13],[365,1,1,13,14]]],[13,2,1,14,15,[[372,2,1,14,15]]],[18,2,2,15,17,[[555,2,2,15,17]]],[22,1,1,17,18,[[744,1,1,17,18]]],[25,1,1,18,19,[[821,1,1,18,19]]]],[139,329,2024,5041,5201,6631,7487,7658,8178,8249,9001,9142,10917,11147,11287,15180,15183,18926,20900]]],["chosen",[76,74,[[1,1,1,0,1,[[63,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[4,6,6,2,8,[[159,1,1,2,3],[164,1,1,3,4],[166,1,1,4,5],[168,1,1,5,6],[170,1,1,6,7],[173,1,1,7,8]]],[5,1,1,8,9,[[210,1,1,8,9]]],[6,3,3,9,12,[[220,1,1,9,10],[230,2,2,10,12]]],[8,9,9,12,21,[[243,1,1,12,13],[245,1,1,13,14],[247,1,1,14,15],[251,3,3,15,18],[255,1,1,18,19],[259,1,1,19,20],[261,1,1,20,21]]],[9,1,1,21,22,[[272,1,1,21,22]]],[10,7,7,22,29,[[293,1,1,22,23],[298,2,2,23,25],[301,3,3,25,28],[302,1,1,28,29]]],[11,2,2,29,31,[[333,1,1,29,30],[335,1,1,30,31]]],[12,6,6,31,37,[[352,1,1,31,32],[365,4,4,32,36],[366,1,1,36,37]]],[13,13,11,37,48,[[372,4,3,37,40],[373,2,2,40,42],[377,1,1,42,43],[378,1,1,43,44],[379,3,2,44,46],[395,1,1,46,47],[399,1,1,47,48]]],[15,1,1,48,49,[[413,1,1,48,49]]],[17,1,1,49,50,[[471,1,1,49,50]]],[18,6,6,50,56,[[510,1,1,50,51],[582,1,1,51,52],[596,2,2,52,54],[609,1,1,54,55],[612,1,1,55,56]]],[19,2,2,56,58,[[643,1,1,56,57],[649,1,1,57,58]]],[22,10,10,58,68,[[679,1,1,58,59],[719,2,2,59,61],[721,1,1,61,62],[722,2,2,62,64],[726,1,1,64,65],[736,2,2,65,67],[744,1,1,67,68]]],[23,4,4,68,72,[[752,1,1,68,69],[777,1,1,69,70],[793,1,1,70,71],[794,1,1,71,72]]],[36,1,1,72,73,[[910,1,1,72,73]]],[37,1,1,73,74,[[913,1,1,73,74]]]],[1896,4199,5117,5261,5292,5353,5389,5452,6498,6825,7070,7088,7387,7442,7473,7603,7604,7605,7760,7841,7907,8158,8824,9029,9033,9121,9140,9144,9172,10126,10192,10793,11147,11148,11149,11153,11165,11288,11316,11320,11336,11340,11415,11450,11456,11470,11802,11915,12305,13757,14378,15632,15928,16071,16164,16179,16856,17016,17683,18459,18460,18515,18534,18535,18624,18791,18792,18925,19156,19799,20146,20210,22878,22914]]],["excellent",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17613]]],["out",[5,5,[[1,1,1,0,1,[[66,1,1,0,1]]],[5,1,1,1,2,[[194,1,1,1,2]]],[9,1,1,2,3,[[283,1,1,2,3]]],[17,2,2,3,5,[[444,1,1,3,4],[464,1,1,4,5]]]],[1992,6005,8450,13065,13557]]],["rather",[1,1,[[18,1,1,0,1,[[561,1,1,0,1]]]],[15269]]],["require",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8549]]]]},{"k":"H978","v":[["Baharumite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10706]]]]},{"k":"H979","v":[["*",[3,3,[[3,1,1,0,1,[[127,1,1,0,1]]],[20,2,2,1,3,[[669,1,1,1,2],[670,1,1,2,3]]]],[4052,17522,17524]]],["+",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4052]]],["youth",[2,2,[[20,2,2,0,2,[[669,1,1,0,1],[670,1,1,1,2]]]],[17522,17524]]]]},{"k":"H980","v":[["*",[5,5,[[9,4,4,0,4,[[269,1,1,0,1],[282,1,1,1,2],[283,1,1,2,3],[285,1,1,3,4]]],[10,1,1,4,5,[[292,1,1,4,5]]]],[8097,8431,8467,8527,8778]]],["+",[2,2,[[9,1,1,0,1,[[285,1,1,0,1]]],[10,1,1,1,2,[[292,1,1,1,2]]]],[8527,8778]]],["Bahurim",[3,3,[[9,3,3,0,3,[[269,1,1,0,1],[282,1,1,1,2],[283,1,1,2,3]]]],[8097,8431,8467]]]]},{"k":"H981","v":[["*",[4,3,[[2,2,1,0,1,[[94,2,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]],[19,1,1,2,3,[[639,1,1,2,3]]]],[2834,15684,16737]]],["pronounce",[1,1,[[2,1,1,0,1,[[94,1,1,0,1]]]],[2834]]],["pronouncing",[1,1,[[2,1,1,0,1,[[94,1,1,0,1]]]],[2834]]],["speaketh",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16737]]],["unadvisedly",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15684]]]]},{"k":"H982","v":[["*",[120,117,[[4,1,1,0,1,[[180,1,1,0,1]]],[6,5,5,1,6,[[219,1,1,1,2],[228,3,3,2,5],[230,1,1,5,6]]],[11,9,8,6,14,[[330,8,7,6,13],[331,1,1,13,14]]],[12,1,1,14,15,[[342,1,1,14,15]]],[13,1,1,15,16,[[398,1,1,15,16]]],[17,4,4,16,20,[[441,1,1,16,17],[446,1,1,17,18],[474,1,1,18,19],[475,1,1,19,20]]],[18,46,45,20,65,[[481,1,1,20,21],[486,1,1,21,22],[490,1,1,22,23],[498,1,1,23,24],[499,4,3,24,27],[502,1,1,27,28],[503,1,1,28,29],[504,1,1,29,30],[505,1,1,30,31],[508,2,2,31,33],[509,1,1,33,34],[510,1,1,34,35],[514,2,2,35,37],[517,1,1,37,38],[518,1,1,38,39],[521,1,1,39,40],[526,1,1,40,41],[529,2,2,41,43],[532,1,1,43,44],[533,3,3,44,47],[539,2,2,47,49],[555,1,1,49,50],[561,1,1,50,51],[563,1,1,51,52],[568,1,1,52,53],[589,1,1,53,54],[592,4,4,54,58],[595,2,2,58,60],[596,1,1,60,61],[602,1,1,61,62],[612,1,1,62,63],[620,1,1,63,64],[623,1,1,64,65]]],[19,10,10,65,75,[[630,1,1,65,66],[638,2,2,66,68],[641,1,1,68,69],[643,1,1,69,70],[655,3,3,70,73],[656,1,1,73,74],[658,1,1,74,75]]],[22,20,19,75,94,[[690,1,1,75,76],[704,2,2,76,78],[708,1,1,78,79],[709,1,1,79,80],[710,3,3,80,83],[714,7,6,83,89],[715,1,1,89,90],[720,1,1,90,91],[725,1,1,91,92],[728,1,1,92,93],[737,1,1,93,94]]],[23,16,16,94,110,[[749,1,1,94,95],[751,3,3,95,98],[753,1,1,98,99],[756,1,1,99,100],[757,1,1,100,101],[761,2,2,101,103],[772,1,1,103,104],[773,1,1,104,105],[783,1,1,105,106],[790,1,1,106,107],[792,1,1,107,108],[793,2,2,108,110]]],[25,2,2,110,112,[[817,1,1,110,111],[834,1,1,111,112]]],[27,1,1,112,113,[[871,1,1,112,113]]],[29,1,1,113,114,[[884,1,1,113,114]]],[32,1,1,114,115,[[899,1,1,114,115]]],[34,1,1,115,116,[[904,1,1,115,116]]],[35,1,1,116,117,[[908,1,1,116,117]]]],[5663,6780,7000,7003,7020,7090,10029,10043,10044,10045,10046,10048,10054,10071,10448,11885,12998,13126,13845,13887,13970,14031,14079,14198,14208,14209,14213,14253,14274,14288,14306,14337,14345,14365,14387,14453,14455,14528,14551,14577,14654,14717,14718,14755,14758,14759,14766,14835,14837,15135,15271,15286,15397,15810,15838,15839,15840,15841,15877,15878,15940,16111,16193,16301,16344,16460,16703,16716,16788,16860,17197,17221,17222,17249,17295,17902,18133,18134,18229,18251,18268,18269,18270,18334,18335,18336,18337,18339,18345,18362,18497,18609,18672,18804,19075,19123,19127,19133,19179,19254,19291,19362,19364,19633,19666,19941,20070,20087,20131,20138,20777,21293,22238,22451,22669,22766,22822]]],["+",[6,6,[[11,1,1,0,1,[[330,1,1,0,1]]],[18,2,2,1,3,[[595,2,2,1,3]]],[22,1,1,3,4,[[714,1,1,3,4]]],[23,1,1,4,5,[[773,1,1,4,5]]],[32,1,1,5,6,[[899,1,1,5,6]]]],[10054,15877,15878,18345,19666,22669]]],["Trust",[6,6,[[18,3,3,0,3,[[514,1,1,0,1],[539,2,2,1,3]]],[19,1,1,3,4,[[630,1,1,3,4]]],[22,1,1,4,5,[[704,1,1,4,5]]],[23,1,1,5,6,[[751,1,1,5,6]]]],[14453,14835,14837,16460,18134,19123]]],["bold",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17197]]],["careless",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18268]]],["confidence",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6780]]],["confident",[2,2,[[18,1,1,0,1,[[504,1,1,0,1]]],[19,1,1,1,2,[[641,1,1,1,2]]]],[14288,16788]]],["hope",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14213]]],["hoped",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12998]]],["ones",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18270]]],["secure",[4,4,[[6,3,3,0,3,[[228,3,3,0,3]]],[17,1,1,3,4,[[446,1,1,3,4]]]],[7000,7003,7020,13126]]],["sure",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16703]]],["trust",[52,52,[[11,4,4,0,4,[[330,4,4,0,4]]],[12,1,1,4,5,[[342,1,1,4,5]]],[13,1,1,5,6,[[398,1,1,5,6]]],[17,1,1,6,7,[[474,1,1,6,7]]],[18,21,21,7,28,[[481,1,1,7,8],[486,1,1,8,9],[502,1,1,9,10],[508,1,1,10,11],[514,1,1,11,12],[517,1,1,12,13],[521,1,1,13,14],[526,1,1,14,15],[529,1,1,15,16],[532,1,1,16,17],[533,3,3,17,20],[568,1,1,20,21],[592,3,3,21,24],[596,1,1,24,25],[602,1,1,25,26],[620,1,1,26,27],[623,1,1,27,28]]],[19,3,3,28,31,[[655,1,1,28,29],[656,1,1,29,30],[658,1,1,30,31]]],[22,10,10,31,41,[[690,1,1,31,32],[708,1,1,32,33],[709,1,1,33,34],[714,4,4,34,38],[720,1,1,38,39],[728,1,1,39,40],[737,1,1,40,41]]],[23,7,7,41,48,[[751,2,2,41,43],[753,1,1,43,44],[772,1,1,44,45],[783,1,1,45,46],[790,1,1,46,47],[793,1,1,47,48]]],[25,2,2,48,50,[[817,1,1,48,49],[834,1,1,49,50]]],[27,1,1,50,51,[[871,1,1,50,51]]],[29,1,1,51,52,[[884,1,1,51,52]]]],[10044,10045,10046,10048,10448,11885,13845,13970,14031,14253,14337,14455,14528,14577,14654,14718,14755,14758,14759,14766,15397,15839,15840,15841,15940,16111,16301,16344,17221,17249,17295,17902,18229,18251,18335,18336,18337,18339,18497,18672,18804,19127,19133,19179,19633,19941,20070,20138,20777,21293,22238,22451]]],["trusted",[18,17,[[6,1,1,0,1,[[230,1,1,0,1]]],[11,1,1,1,2,[[330,1,1,1,2]]],[18,11,10,2,12,[[490,1,1,2,3],[499,3,2,3,5],[503,1,1,5,6],[505,1,1,6,7],[508,1,1,7,8],[510,1,1,8,9],[518,1,1,9,10],[529,1,1,10,11],[555,1,1,11,12]]],[22,1,1,12,13,[[725,1,1,12,13]]],[23,3,3,13,16,[[757,1,1,13,14],[792,1,1,14,15],[793,1,1,15,16]]],[35,1,1,16,17,[[908,1,1,16,17]]]],[7090,10029,14079,14208,14209,14274,14306,14345,14387,14551,14717,15135,18609,19291,20087,20131,22822]]],["trustedst",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[23,2,2,1,3,[[749,1,1,1,2],[756,1,1,2,3]]]],[5663,19075,19254]]],["trustest",[6,6,[[11,3,3,0,3,[[330,2,2,0,2],[331,1,1,2,3]]],[22,3,3,3,6,[[714,2,2,3,5],[715,1,1,5,6]]]],[10043,10045,10071,18334,18336,18362]]],["trusteth",[14,14,[[17,1,1,0,1,[[475,1,1,0,1]]],[18,6,6,1,7,[[498,1,1,1,2],[509,1,1,2,3],[561,1,1,3,4],[563,1,1,4,5],[592,1,1,5,6],[612,1,1,6,7]]],[19,3,3,7,10,[[638,1,1,7,8],[643,1,1,8,9],[655,1,1,9,10]]],[22,1,1,10,11,[[704,1,1,10,11]]],[23,2,2,11,13,[[761,2,2,11,13]]],[34,1,1,13,14,[[904,1,1,13,14]]]],[13887,14198,14365,15271,15286,15838,16193,16716,16860,17222,18133,19362,19364,22766]]],["trusting",[1,1,[[18,1,1,0,1,[[589,1,1,0,1]]]],[15810]]],["women",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18269]]]]},{"k":"H983","v":[["*",[42,41,[[0,1,1,0,1,[[33,1,1,0,1]]],[2,3,3,1,4,[[114,2,2,1,3],[115,1,1,3,4]]],[4,3,3,4,7,[[164,1,1,4,5],[185,2,2,5,7]]],[6,2,2,7,9,[[218,1,1,7,8],[228,1,1,8,9]]],[8,1,1,9,10,[[247,1,1,9,10]]],[10,1,1,10,11,[[294,1,1,10,11]]],[17,2,2,11,13,[[446,1,1,11,12],[459,1,1,12,13]]],[18,3,3,13,16,[[481,1,1,13,14],[493,1,1,14,15],[555,1,1,15,16]]],[19,4,4,16,20,[[628,1,1,16,17],[630,2,2,17,19],[637,1,1,19,20]]],[22,3,3,20,23,[[692,1,1,20,21],[710,1,1,21,22],[725,1,1,22,23]]],[23,4,4,23,27,[[767,1,1,23,24],[776,1,1,24,25],[777,1,1,25,26],[793,1,1,26,27]]],[25,11,10,27,37,[[829,2,1,27,28],[831,1,1,28,29],[835,3,3,29,32],[839,3,3,32,35],[840,2,2,35,37]]],[27,1,1,37,38,[[863,1,1,37,38]]],[32,1,1,38,39,[[894,1,1,38,39]]],[35,1,1,39,40,[[907,1,1,39,40]]],[37,1,1,40,41,[[924,1,1,40,41]]]],[1005,3487,3488,3529,5250,5822,5838,6730,7000,7471,8869,13126,13459,13973,14101,15166,16433,16478,16484,16665,17958,18276,18607,19490,19768,19791,20158,21183,21213,21338,21340,21341,21433,21436,21439,21454,21474,22123,22603,22820,23079]]],["assurance",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18276]]],["boldly",[1,1,[[0,1,1,0,1,[[33,1,1,0,1]]]],[1005]]],["care",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20158]]],["careless",[2,2,[[6,1,1,0,1,[[228,1,1,0,1]]],[25,1,1,1,2,[[831,1,1,1,2]]]],[7000,21213]]],["carelessly",[3,3,[[22,1,1,0,1,[[725,1,1,0,1]]],[25,1,1,1,2,[[840,1,1,1,2]]],[35,1,1,2,3,[[907,1,1,2,3]]]],[18607,21454,22820]]],["confidence",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21183]]],["hope",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14101]]],["safe",[2,2,[[8,1,1,0,1,[[247,1,1,0,1]]],[25,1,1,1,2,[[835,1,1,1,2]]]],[7471,21340]]],["safely",[17,17,[[2,1,1,0,1,[[115,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]],[18,1,1,2,3,[[555,1,1,2,3]]],[19,2,2,3,5,[[628,1,1,3,4],[630,1,1,4,5]]],[23,3,3,5,8,[[767,1,1,5,6],[776,1,1,6,7],[777,1,1,7,8]]],[25,7,7,8,15,[[829,1,1,8,9],[835,2,2,9,11],[839,3,3,11,14],[840,1,1,14,15]]],[27,1,1,15,16,[[863,1,1,15,16]]],[37,1,1,16,17,[[924,1,1,16,17]]]],[3529,8869,15166,16433,16478,19490,19768,19791,21183,21338,21341,21433,21436,21439,21474,22123,23079]]],["safety",[9,9,[[2,2,2,0,2,[[114,2,2,0,2]]],[4,3,3,2,5,[[164,1,1,2,3],[185,2,2,3,5]]],[17,2,2,5,7,[[446,1,1,5,6],[459,1,1,6,7]]],[18,1,1,7,8,[[481,1,1,7,8]]],[22,1,1,8,9,[[692,1,1,8,9]]]],[3487,3488,5250,5822,5838,13126,13459,13973,17958]]],["secure",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6730]]],["securely",[2,2,[[19,1,1,0,1,[[630,1,1,0,1]]],[32,1,1,1,2,[[894,1,1,1,2]]]],[16484,22603]]],["surely",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16665]]]]},{"k":"H984","v":[["+",[1,1,[[9,1,1,0,1,[[274,1,1,0,1]]]],[8217]]]]},{"k":"H985","v":[["confidence",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18232]]]]},{"k":"H986","v":[["*",[3,3,[[11,1,1,0,1,[[330,1,1,0,1]]],[20,1,1,1,2,[[667,1,1,1,2]]],[22,1,1,2,3,[[714,1,1,2,3]]]],[10043,17479,18334]]],["confidence",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]]],[10043,18334]]],["hope",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17479]]]]},{"k":"H987","v":[["secure",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13134]]]]},{"k":"H988","v":[["cease",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17526]]]]},{"k":"H989","v":[["*",[6,5,[[14,6,5,0,5,[[406,4,3,0,3],[407,1,1,3,4],[408,1,1,4,5]]]],[12131,12133,12134,12139,12159]]],["cease",[3,3,[[14,3,3,0,3,[[406,2,2,0,2],[407,1,1,2,3]]]],[12131,12133,12139]]],["ceased",[2,1,[[14,2,1,0,1,[[406,2,1,0,1]]]],[12134]]],["hindered",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12159]]]]},{"k":"H990","v":[["*",[72,72,[[0,4,4,0,4,[[24,2,2,0,2],[29,1,1,2,3],[37,1,1,3,4]]],[3,3,3,4,7,[[121,3,3,4,7]]],[4,6,6,7,13,[[159,1,1,7,8],[180,4,4,8,12],[182,1,1,12,13]]],[6,5,5,13,18,[[213,2,2,13,15],[223,2,2,15,17],[226,1,1,17,18]]],[10,1,1,18,19,[[297,1,1,18,19]]],[17,16,16,19,35,[[436,1,1,19,20],[438,2,2,20,22],[445,1,1,22,23],[450,2,2,23,25],[454,1,1,25,26],[455,3,3,26,29],[466,2,2,29,31],[467,2,2,31,33],[473,1,1,33,34],[475,1,1,34,35]]],[18,10,10,35,45,[[494,1,1,35,36],[499,2,2,36,38],[508,1,1,38,39],[521,1,1,39,40],[535,1,1,40,41],[548,1,1,41,42],[604,1,1,42,43],[609,1,1,43,44],[616,1,1,44,45]]],[19,8,8,45,53,[[640,1,1,45,46],[645,2,2,46,48],[647,2,2,48,50],[649,1,1,50,51],[653,1,1,51,52],[658,1,1,52,53]]],[20,2,2,53,55,[[663,1,1,53,54],[669,1,1,54,55]]],[21,1,1,55,56,[[677,1,1,55,56]]],[22,8,8,56,64,[[691,1,1,56,57],[722,2,2,57,59],[724,1,1,59,60],[726,1,1,60,61],[727,3,3,61,64]]],[23,1,1,64,65,[[745,1,1,64,65]]],[25,1,1,65,66,[[804,1,1,65,66]]],[27,3,3,66,69,[[870,2,2,66,68],[873,1,1,68,69]]],[31,1,1,69,70,[[890,1,1,69,70]]],[32,1,1,70,71,[[898,1,1,70,71]]],[34,1,1,71,72,[[905,1,1,71,72]]]],[681,682,832,1146,3813,3814,3819,5124,5615,5622,5629,5664,5717,6589,6590,6889,6891,6966,8954,12890,12914,12915,13105,13205,13238,13314,13341,13346,13349,13603,13606,13646,13647,13822,13880,14117,14213,14214,14340,14596,14782,14982,16124,16162,16252,16772,16909,16921,16981,16984,17033,17163,17286,17412,17518,17629,17924,18535,18557,18589,18622,18637,18641,18651,18951,20505,22219,22224,22255,22550,22655,22784]]],["+",[19,19,[[6,2,2,0,2,[[213,1,1,0,1],[226,1,1,1,2]]],[17,5,5,2,7,[[436,1,1,2,3],[438,1,1,3,4],[445,1,1,4,5],[466,1,1,5,6],[473,1,1,6,7]]],[18,4,4,7,11,[[499,2,2,7,9],[535,1,1,9,10],[548,1,1,10,11]]],[20,1,1,11,12,[[663,1,1,11,12]]],[22,5,5,12,17,[[722,2,2,12,14],[726,1,1,14,15],[727,2,2,15,17]]],[27,1,1,17,18,[[870,1,1,17,18]]],[31,1,1,18,19,[[890,1,1,18,19]]]],[6590,6966,12890,12915,13105,13606,13822,14213,14214,14782,14982,17412,18535,18557,18622,18637,18641,22219,22550]]],["belly",[26,26,[[3,3,3,0,3,[[121,3,3,0,3]]],[6,1,1,3,4,[[213,1,1,3,4]]],[10,1,1,4,5,[[297,1,1,4,5]]],[17,7,7,5,12,[[450,2,2,5,7],[455,3,3,7,10],[467,1,1,10,11],[475,1,1,11,12]]],[18,3,3,12,15,[[494,1,1,12,13],[508,1,1,13,14],[521,1,1,14,15]]],[19,6,6,15,21,[[640,1,1,15,16],[645,2,2,16,18],[647,2,2,18,20],[653,1,1,20,21]]],[21,1,1,21,22,[[677,1,1,21,22]]],[22,1,1,22,23,[[724,1,1,22,23]]],[23,1,1,23,24,[[745,1,1,23,24]]],[25,1,1,24,25,[[804,1,1,24,25]]],[34,1,1,25,26,[[905,1,1,25,26]]]],[3813,3814,3819,6589,8954,13205,13238,13341,13346,13349,13647,13880,14117,14340,14596,16772,16909,16921,16981,16984,17163,17629,18589,18951,20505,22784]]],["body",[8,8,[[4,5,5,0,5,[[180,4,4,0,4],[182,1,1,4,5]]],[17,1,1,5,6,[[454,1,1,5,6]]],[18,1,1,6,7,[[609,1,1,6,7]]],[32,1,1,7,8,[[898,1,1,7,8]]]],[5615,5622,5629,5664,5717,13314,16162,22655]]],["within",[2,2,[[17,1,1,0,1,[[467,1,1,0,1]]],[19,1,1,1,2,[[649,1,1,1,2]]]],[13646,17033]]],["womb",[17,17,[[0,4,4,0,4,[[24,2,2,0,2],[29,1,1,2,3],[37,1,1,3,4]]],[4,1,1,4,5,[[159,1,1,4,5]]],[6,2,2,5,7,[[223,2,2,5,7]]],[17,2,2,7,9,[[438,1,1,7,8],[466,1,1,8,9]]],[18,2,2,9,11,[[604,1,1,9,10],[616,1,1,10,11]]],[19,1,1,11,12,[[658,1,1,11,12]]],[20,1,1,12,13,[[669,1,1,12,13]]],[22,2,2,13,15,[[691,1,1,13,14],[727,1,1,14,15]]],[27,2,2,15,17,[[870,1,1,15,16],[873,1,1,16,17]]]],[681,682,832,1146,5124,6889,6891,12914,13603,16124,16252,17286,17518,17924,18651,22224,22255]]]]},{"k":"H991","v":[["Beten",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6346]]]]},{"k":"H992","v":[["nuts",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1301]]]]},{"k":"H993","v":[["Betonim",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6180]]]]},{"k":"H994","v":[["*",[12,12,[[0,2,2,0,2,[[42,1,1,0,1],[43,1,1,1,2]]],[1,2,2,2,4,[[53,2,2,2,4]]],[3,1,1,4,5,[[128,1,1,4,5]]],[5,1,1,5,6,[[193,1,1,5,6]]],[6,3,3,6,9,[[216,2,2,6,8],[223,1,1,8,9]]],[8,1,1,9,10,[[236,1,1,9,10]]],[10,2,2,10,12,[[293,2,2,10,12]]]],[1310,1342,1611,1614,4070,5984,6667,6669,6892,7238,8833,8842]]],["Alas",[1,1,[[3,1,1,0,1,[[128,1,1,0,1]]]],[4070]]],["O",[7,7,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,2,2,1,3,[[53,2,2,1,3]]],[5,1,1,3,4,[[193,1,1,3,4]]],[6,1,1,4,5,[[223,1,1,4,5]]],[10,2,2,5,7,[[293,2,2,5,7]]]],[1310,1611,1614,5984,6892,8833,8842]]],["Oh",[4,4,[[0,1,1,0,1,[[43,1,1,0,1]]],[6,2,2,1,3,[[216,2,2,1,3]]],[8,1,1,3,4,[[236,1,1,3,4]]]],[1342,6667,6669,7238]]]]},{"k":"H995","v":[["*",[169,161,[[0,2,2,0,2,[[40,2,2,0,2]]],[4,5,5,2,7,[[153,1,1,2,3],[156,1,1,3,4],[184,3,3,4,7]]],[8,2,2,7,9,[[238,1,1,7,8],[251,1,1,8,9]]],[9,1,1,9,10,[[278,1,1,9,10]]],[10,4,4,10,14,[[293,4,4,10,14]]],[12,5,5,14,19,[[352,1,1,14,15],[362,2,2,15,17],[364,1,1,17,18],[365,1,1,18,19]]],[13,3,3,19,22,[[377,1,1,19,20],[392,1,1,20,21],[400,1,1,21,22]]],[14,2,2,22,24,[[410,2,2,22,24]]],[15,8,8,24,32,[[420,6,6,24,30],[422,1,1,30,31],[425,1,1,31,32]]],[17,23,23,32,55,[[441,2,2,32,34],[444,1,1,34,35],[446,1,1,35,36],[448,1,1,36,37],[449,1,1,37,38],[450,1,1,38,39],[453,1,1,39,40],[458,3,3,40,43],[461,1,1,43,44],[463,1,1,44,45],[465,1,1,45,46],[466,1,1,46,47],[467,3,3,47,50],[471,1,1,50,51],[472,1,1,51,52],[473,2,2,52,54],[477,1,1,54,55]]],[18,26,26,55,81,[[482,1,1,55,56],[496,1,1,56,57],[505,1,1,57,58],[509,1,1,58,59],[510,1,1,59,60],[514,1,1,60,61],[526,1,1,61,62],[527,1,1,62,63],[535,1,1,63,64],[550,1,1,64,65],[559,1,1,65,66],[569,1,1,66,67],[571,2,2,67,69],[584,1,1,69,70],[596,10,10,70,80],[616,1,1,80,81]]],[19,34,30,81,111,[[628,3,3,81,84],[629,2,2,84,86],[634,1,1,86,87],[635,3,2,87,89],[637,1,1,89,90],[641,4,4,90,94],[642,1,1,94,95],[643,1,1,95,96],[644,3,3,96,99],[645,1,1,99,100],[646,2,1,100,101],[647,1,1,101,102],[648,1,1,102,103],[650,2,1,103,104],[651,1,1,104,105],[655,5,4,105,109],[656,2,2,109,111]]],[20,1,1,111,112,[[667,1,1,111,112]]],[22,20,20,112,132,[[679,1,1,112,113],[681,1,1,113,114],[683,1,1,114,115],[684,2,2,115,117],[688,1,1,117,118],[692,1,1,118,119],[706,2,2,119,121],[707,2,2,121,123],[710,1,1,123,124],[718,2,2,124,126],[721,2,2,126,128],[722,1,1,128,129],[730,1,1,129,130],[734,1,1,130,131],[735,1,1,131,132]]],[23,7,7,132,139,[[746,1,1,132,133],[748,1,1,133,134],[753,2,2,134,136],[767,1,1,136,137],[774,1,1,137,138],[793,1,1,138,139]]],[26,22,19,139,158,[[850,2,2,139,141],[857,5,5,141,146],[858,4,3,146,149],[859,4,4,149,153],[860,4,3,153,156],[861,3,2,156,158]]],[27,3,2,158,160,[[865,1,1,158,159],[875,2,1,159,160]]],[32,1,1,160,161,[[896,1,1,160,161]]]],[1228,1234,4905,5010,5765,5768,5787,7284,7613,8305,8825,8827,8828,8837,10813,11053,11054,11141,11152,11437,11737,11945,12216,12217,12495,12496,12500,12501,12502,12505,12577,12678,13002,13008,13062,13119,13154,13202,13212,13278,13424,13427,13434,13481,13527,13577,13589,13636,13637,13640,13765,13783,13811,13813,13925,13974,14180,14304,14364,14381,14460,14668,14690,14788,15037,15238,15417,15438,15439,15742,15925,15932,15971,15993,15998,16002,16023,16028,16042,16067,16241,16402,16405,16406,16438,16442,16582,16607,16611,16669,16778,16780,16787,16805,16821,16861,16883,16897,16901,16916,16950,16978,17013,17045,17091,17198,17201,17203,17207,17231,17243,17486,17657,17710,17760,17778,17779,17863,17944,18173,18183,18207,18209,18263,18434,18441,18515,18523,18551,18711,18764,18766,18975,19049,19187,19192,19504,19691,20134,21741,21754,21966,21977,21978,21984,21988,21990,22010,22011,22016,22026,22027,22029,22066,22069,22073,22089,22091,22147,22291,22632]]],["+",[17,15,[[10,1,1,0,1,[[293,1,1,0,1]]],[15,1,1,1,2,[[420,1,1,1,2]]],[17,1,1,2,3,[[473,1,1,2,3]]],[18,4,4,3,7,[[505,1,1,3,4],[510,1,1,4,5],[514,1,1,5,6],[569,1,1,6,7]]],[19,2,1,7,8,[[650,2,1,7,8]]],[22,1,1,8,9,[[707,1,1,8,9]]],[23,2,2,9,11,[[753,1,1,9,10],[793,1,1,10,11]]],[26,5,4,11,15,[[857,1,1,11,12],[859,2,2,12,14],[860,2,1,14,15]]]],[8837,12502,13811,14304,14381,14460,15417,17045,18209,19187,20134,21977,22016,22029,22073]]],["Consider",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19192]]],["Understand",[2,2,[[18,1,1,0,1,[[571,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]]],[15439,21978]]],["attended",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13640]]],["consider",[17,17,[[4,2,2,0,2,[[184,2,2,0,2]]],[17,3,3,2,5,[[446,1,1,2,3],[458,1,1,3,4],[472,1,1,4,5]]],[18,3,3,5,8,[[482,1,1,5,6],[527,1,1,6,7],[596,1,1,7,8]]],[19,1,1,8,9,[[651,1,1,8,9]]],[22,4,4,9,13,[[679,1,1,9,10],[692,1,1,10,11],[721,1,1,11,12],[730,1,1,12,13]]],[23,3,3,13,16,[[746,1,1,13,14],[767,1,1,14,15],[774,1,1,15,16]]],[26,1,1,16,17,[[858,1,1,16,17]]]],[5765,5787,13119,13434,13783,13974,14690,15993,17091,17657,17944,18523,18711,18975,19504,19691,22011]]],["considering",[2,2,[[22,1,1,0,1,[[735,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]]],[18766,21966]]],["cunning",[1,1,[[12,1,1,0,1,[[362,1,1,0,1]]]],[11053]]],["directeth",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17013]]],["discern",[2,2,[[10,1,1,0,1,[[293,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]]],[8825,13008]]],["discerned",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16582]]],["discreet",[2,2,[[0,2,2,0,2,[[40,2,2,0,2]]]],[1228,1234]]],["eloquent",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17710]]],["feel",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14788]]],["informed",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22010]]],["instruct",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22069]]],["instructed",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[5768,18434]]],["intelligence",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22066]]],["know",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13813]]],["mark",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13278]]],["perceive",[3,3,[[17,2,2,0,2,[[444,1,1,0,1],[458,1,1,1,2]]],[19,1,1,2,3,[[628,1,1,2,3]]]],[13062,13427,16402]]],["perceived",[2,2,[[8,1,1,0,1,[[238,1,1,0,1]]],[9,1,1,1,2,[[278,1,1,1,2]]]],[7284,8305]]],["perceiveth",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13202]]],["prudent",[7,7,[[8,1,1,0,1,[[251,1,1,0,1]]],[19,2,2,1,3,[[643,1,1,1,2],[645,1,1,2,3]]],[22,3,3,3,6,[[683,1,1,3,4],[688,1,1,4,5],[707,1,1,5,6]]],[27,1,1,6,7,[[875,1,1,6,7]]]],[7613,16861,16916,17760,17863,18207,22291]]],["regard",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15438]]],["regardest",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13577]]],["regardeth",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17231]]],["skilful",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10813]]],["skill",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11945]]],["teacher",[1,1,[[12,1,1,0,1,[[362,1,1,0,1]]]],[11054]]],["think",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13589]]],["understand",[38,36,[[15,3,3,0,3,[[420,3,3,0,3]]],[17,5,5,3,8,[[441,1,1,3,4],[458,1,1,4,5],[461,1,1,5,6],[467,1,1,6,7],[471,1,1,7,8]]],[18,5,5,8,13,[[496,1,1,8,9],[559,1,1,9,10],[584,1,1,10,11],[596,2,2,11,13]]],[19,10,9,13,22,[[628,1,1,13,14],[629,2,2,14,16],[635,1,1,16,17],[641,1,1,17,18],[646,1,1,18,19],[647,1,1,19,20],[655,2,1,20,21],[656,1,1,21,22]]],[22,7,7,22,29,[[684,2,2,22,24],[706,2,2,24,26],[710,1,1,26,27],[721,1,1,27,28],[734,1,1,28,29]]],[26,5,4,29,33,[[858,1,1,29,30],[859,2,2,30,32],[861,2,1,32,33]]],[27,2,2,33,35,[[865,1,1,33,34],[875,1,1,34,35]]],[32,1,1,35,36,[[896,1,1,35,36]]]],[12496,12500,12501,13002,13424,13481,13637,13765,14180,15238,15742,15925,15998,16406,16438,16442,16607,16780,16950,16978,17201,17243,17778,17779,18173,18183,18263,18515,18764,22011,22026,22027,22091,22147,22291,22632]]],["understandest",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]]],[13212,16241]]],["understandeth",[5,5,[[12,1,1,0,1,[[365,1,1,0,1]]],[17,1,1,1,2,[[463,1,1,1,2]]],[18,1,1,2,3,[[526,1,1,2,3]]],[19,2,2,3,5,[[635,1,1,3,4],[641,1,1,4,5]]]],[11152,13527,14668,16611,16778]]],["understanding",[32,32,[[4,2,2,0,2,[[153,1,1,0,1],[156,1,1,1,2]]],[10,2,2,2,4,[[293,2,2,2,4]]],[13,1,1,4,5,[[392,1,1,4,5]]],[14,1,1,5,6,[[410,1,1,5,6]]],[15,2,2,6,8,[[420,1,1,6,7],[422,1,1,7,8]]],[17,1,1,8,9,[[467,1,1,8,9]]],[18,8,8,9,17,[[509,1,1,9,10],[596,7,7,10,17]]],[19,10,10,17,27,[[628,1,1,17,18],[635,1,1,18,19],[637,1,1,19,20],[641,1,1,20,21],[642,1,1,21,22],[644,2,2,22,24],[646,1,1,24,25],[655,2,2,25,27]]],[20,1,1,27,28,[[667,1,1,27,28]]],[23,1,1,28,29,[[748,1,1,28,29]]],[26,3,3,29,32,[[850,2,2,29,31],[857,1,1,31,32]]]],[4905,5010,8827,8828,11737,12217,12495,12577,13636,14364,15932,15971,16002,16023,16028,16042,16067,16405,16607,16669,16805,16821,16897,16901,16950,17198,17207,17486,19049,21741,21754,21984]]],["understood",[10,10,[[15,2,2,0,2,[[420,1,1,0,1],[425,1,1,1,2]]],[17,2,2,2,4,[[448,1,1,2,3],[477,1,1,3,4]]],[18,1,1,4,5,[[550,1,1,4,5]]],[22,2,2,5,7,[[718,1,1,5,6],[722,1,1,6,7]]],[26,3,3,7,10,[[857,1,1,7,8],[858,1,1,8,9],[861,1,1,9,10]]]],[12505,12678,13154,13925,15037,18441,18551,21988,21990,22089]]],["viewed",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12216]]],["well",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16787]]],["wise",[3,3,[[12,1,1,0,1,[[364,1,1,0,1]]],[19,2,2,1,3,[[644,1,1,1,2],[655,1,1,2,3]]]],[11141,16883,17203]]],["wisely",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11437]]]]},{"k":"H996","v":[["*",[284,248,[[0,44,37,0,37,[[0,9,5,0,5],[2,2,1,5,6],[8,5,5,6,11],[9,1,1,11,12],[12,4,3,12,15],[14,1,1,15,16],[15,2,2,16,18],[16,4,4,18,22],[19,1,1,22,23],[22,1,1,23,24],[25,2,1,24,25],[29,1,1,25,26],[30,7,7,26,33],[31,1,1,33,34],[41,1,1,34,35],[48,2,2,35,37]]],[1,22,22,37,59,[[57,1,1,37,38],[58,1,1,38,39],[60,1,1,39,40],[61,1,1,40,41],[62,2,2,41,43],[63,2,2,43,45],[65,2,2,45,47],[67,1,1,47,48],[71,1,1,48,49],[74,1,1,49,50],[75,1,1,50,51],[78,2,2,51,53],[79,2,2,53,55],[80,2,2,55,57],[89,2,2,57,59]]],[2,11,8,59,67,[[99,2,1,59,60],[100,2,1,60,61],[109,2,1,61,62],[112,1,1,62,63],[115,1,1,63,64],[116,3,3,64,67]]],[3,16,14,67,81,[[123,1,1,67,68],[125,3,3,68,71],[127,1,1,71,72],[132,2,2,72,74],[137,1,1,74,75],[142,1,1,75,76],[144,2,2,76,78],[146,2,1,78,79],[147,2,1,79,80],[151,1,1,80,81]]],[4,13,10,81,91,[[153,3,2,81,83],[157,1,1,83,84],[158,1,1,84,85],[163,1,1,85,86],[166,1,1,86,87],[169,3,1,87,88],[177,1,1,88,89],[180,1,1,89,90],[185,1,1,90,91]]],[5,10,10,91,101,[[189,1,1,91,92],[194,3,3,92,95],[204,1,1,95,96],[208,4,4,96,100],[210,1,1,100,101]]],[6,13,12,101,113,[[214,2,2,101,103],[215,4,3,103,106],[219,1,1,106,107],[221,2,2,107,109],[223,1,1,109,110],[225,1,1,110,111],[226,2,2,111,113]]],[7,3,2,113,115,[[232,2,1,113,114],[233,1,1,114,115]]],[8,14,13,115,128,[[242,2,2,115,117],[249,2,2,117,119],[252,3,3,119,122],[255,4,3,122,125],[259,2,2,125,127],[261,1,1,127,128]]],[9,8,7,128,135,[[269,2,2,128,130],[280,1,1,130,131],[284,2,2,131,133],[285,1,1,133,134],[287,2,1,134,135]]],[10,15,14,135,149,[[293,1,1,135,136],[295,1,1,136,137],[297,3,3,137,140],[304,1,1,140,141],[305,6,5,141,146],[308,1,1,146,147],[312,2,2,147,149]]],[11,6,5,149,154,[[314,1,1,149,150],[321,1,1,150,151],[323,2,1,151,152],[328,1,1,152,153],[337,1,1,153,154]]],[12,1,1,154,155,[[358,1,1,154,155]]],[13,11,7,155,162,[[370,1,1,155,156],[379,1,1,156,157],[380,1,1,157,158],[382,2,1,158,159],[384,1,1,159,160],[385,2,1,160,161],[389,3,1,161,162]]],[15,2,2,162,164,[[415,1,1,162,163],[417,1,1,163,164]]],[16,1,1,164,165,[[428,1,1,164,165]]],[17,7,7,165,172,[[444,1,1,165,166],[459,1,1,166,167],[465,1,1,167,168],[469,2,2,168,170],[476,2,2,170,172]]],[18,3,3,172,175,[[545,1,1,172,173],[581,2,2,173,175]]],[19,4,4,175,179,[[633,1,1,175,176],[641,1,1,176,177],[645,1,1,177,178],[653,1,1,178,179]]],[21,4,3,179,182,[[671,1,1,179,180],[672,3,2,180,182]]],[22,5,5,182,187,[[680,1,1,182,183],[683,1,1,183,184],[700,1,1,184,185],[722,1,1,185,186],[737,1,1,186,187]]],[23,8,8,187,195,[[751,1,1,187,188],[769,2,2,188,190],[778,2,2,190,192],[783,1,1,192,193],[792,1,1,193,194],[796,1,1,194,195]]],[24,2,2,195,197,[[797,2,2,195,197]]],[25,38,29,197,226,[[802,1,1,197,198],[805,1,1,198,199],[809,2,2,199,201],[811,6,3,201,204],[819,1,1,204,205],[820,2,2,205,207],[821,2,2,207,209],[823,2,1,209,210],[832,3,3,210,213],[835,4,3,213,216],[838,1,1,216,217],[841,1,1,217,218],[842,2,2,218,220],[843,1,1,220,221],[844,1,1,221,222],[845,2,1,222,223],[848,5,2,223,225],[849,1,1,225,226]]],[26,4,4,226,230,[[857,3,3,226,229],[860,1,1,229,230]]],[27,2,2,230,232,[[863,1,1,230,231],[874,1,1,231,232]]],[28,1,1,232,233,[[877,1,1,232,233]]],[30,1,1,233,234,[[888,1,1,233,234]]],[31,1,1,234,235,[[892,1,1,234,235]]],[32,1,1,235,236,[[896,1,1,235,236]]],[37,10,10,236,246,[[911,3,3,236,239],[913,1,1,239,240],[915,1,1,240,241],[916,2,2,241,243],[919,1,1,243,244],[921,1,1,244,245],[923,1,1,245,246]]],[38,3,2,246,248,[[926,1,1,246,247],[927,2,1,247,248]]]],[3,5,6,13,17,70,217,218,220,221,222,246,321,325,326,377,386,395,399,404,407,408,496,586,720,866,910,917,921,922,923,924,926,944,1275,1483,1487,1733,1746,1813,1822,1876,1883,1891,1909,1948,1959,2015,2124,2217,2268,2375,2377,2390,2400,2433,2437,2714,2737,2987,3044,3343,3407,3570,3582,3584,3603,3939,3968,3970,3976,4057,4231,4242,4353,4545,4581,4585,4664,4691,4869,4893,4908,5058,5094,5226,5291,5372,5548,5668,5822,5897,6011,6013,6014,6304,6451,6453,6454,6460,6483,6604,6616,6634,6639,6650,6777,6839,6856,6909,6933,6974,6980,7144,7164,7364,7366,7512,7550,7619,7621,7624,7733,7753,7772,7851,7854,7918,8082,8087,8362,8487,8502,8546,8587,8825,8890,8962,8963,8980,9248,9255,9256,9265,9268,9281,9383,9481,9514,9562,9780,9846,9977,10226,10950,11263,11455,11486,11512,11575,11586,11672,12359,12400,12755,13084,13447,13564,13687,13720,13894,13904,14913,15581,15583,16559,16781,16919,17154,17550,17556,17557,17689,17742,18063,18537,18802,19124,19550,19561,19819,19820,19927,20125,20283,20313,20327,20477,20532,20607,20620,20635,20639,20640,20857,20883,20892,20907,20915,21002,21233,21240,21244,21330,21333,21335,21418,21484,21536,21544,21572,21580,21622,21695,21697,21724,21966,21977,21982,22081,22107,22281,22328,22514,22579,22623,22886,22888,22889,22919,22945,22948,22960,23006,23042,23065,23117,23138]]],["+",[29,25,[[0,6,6,0,6,[[0,5,5,0,5],[48,1,1,5,6]]],[1,1,1,6,7,[[74,1,1,6,7]]],[3,2,2,7,9,[[123,1,1,7,8],[132,1,1,8,9]]],[4,1,1,9,10,[[180,1,1,9,10]]],[9,1,1,10,11,[[280,1,1,10,11]]],[11,1,1,11,12,[[328,1,1,11,12]]],[18,1,1,12,13,[[581,1,1,12,13]]],[23,1,1,13,14,[[792,1,1,13,14]]],[25,12,8,14,22,[[811,4,3,14,17],[820,1,1,17,18],[832,2,2,18,20],[838,1,1,20,21],[848,4,1,21,22]]],[27,1,1,22,23,[[863,1,1,22,23]]],[37,2,2,23,25,[[916,1,1,23,24],[919,1,1,24,25]]]],[3,5,6,13,17,1483,2217,3939,4231,5668,8362,9977,15583,20125,20635,20639,20640,20892,21240,21244,21418,21697,22107,22948,23006]]],["Among",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13564]]],["At",[2,2,[[1,1,1,0,1,[[65,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]]],[1959,6650]]],["among",[28,27,[[6,1,1,0,1,[[215,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[16,1,1,2,3,[[428,1,1,2,3]]],[17,3,3,3,6,[[469,2,2,3,5],[476,1,1,5,6]]],[18,2,2,6,8,[[545,1,1,6,7],[581,1,1,7,8]]],[19,2,2,8,10,[[633,1,1,8,9],[641,1,1,9,10]]],[21,3,2,10,12,[[672,3,2,10,12]]],[22,2,2,12,14,[[680,1,1,12,13],[722,1,1,13,14]]],[23,2,2,14,16,[[769,2,2,14,16]]],[24,1,1,16,17,[[797,1,1,16,17]]],[25,3,3,17,20,[[802,1,1,17,18],[820,1,1,18,19],[832,1,1,19,20]]],[27,1,1,20,21,[[874,1,1,20,21]]],[30,1,1,21,22,[[888,1,1,21,22]]],[32,1,1,22,23,[[896,1,1,22,23]]],[37,4,4,23,27,[[911,3,3,23,26],[913,1,1,26,27]]]],[6639,7164,12755,13687,13720,13894,14913,15581,16559,16781,17556,17557,17689,18537,19550,19561,20327,20477,20883,21233,22281,22514,22623,22886,22888,22889,22919]]],["asunder",[1,1,[[11,1,1,0,1,[[314,1,1,0,1]]]],[9562]]],["at",[10,10,[[1,3,3,0,3,[[78,2,2,0,2],[79,1,1,2,3]]],[2,1,1,3,4,[[112,1,1,3,4]]],[3,5,5,4,9,[[125,3,3,4,7],[144,2,2,7,9]]],[6,1,1,9,10,[[215,1,1,9,10]]]],[2375,2377,2390,3407,3968,3970,3976,4581,4585,6650]]],["between",[182,160,[[0,23,21,0,21,[[2,2,1,0,1],[8,5,5,1,6],[9,1,1,6,7],[12,4,3,7,10],[14,1,1,10,11],[15,2,2,11,13],[16,3,3,13,16],[19,1,1,16,17],[30,3,3,17,20],[48,1,1,20,21]]],[1,16,16,21,37,[[57,1,1,21,22],[58,1,1,22,23],[60,1,1,23,24],[62,2,2,24,26],[63,2,2,26,28],[65,1,1,28,29],[67,1,1,29,30],[71,1,1,30,31],[75,1,1,31,32],[79,1,1,32,33],[80,2,2,33,35],[89,2,2,35,37]]],[2,7,4,37,41,[[99,2,1,37,38],[100,2,1,38,39],[109,2,1,39,40],[115,1,1,40,41]]],[3,9,7,41,48,[[127,1,1,41,42],[132,1,1,42,43],[137,1,1,43,44],[142,1,1,44,45],[146,2,1,45,46],[147,2,1,46,47],[151,1,1,47,48]]],[4,12,9,48,57,[[153,3,2,48,50],[157,1,1,50,51],[158,1,1,51,52],[163,1,1,52,53],[166,1,1,53,54],[169,3,1,54,55],[177,1,1,55,56],[185,1,1,56,57]]],[5,10,10,57,67,[[189,1,1,57,58],[194,3,3,58,61],[204,1,1,61,62],[208,4,4,62,66],[210,1,1,66,67]]],[6,9,9,67,76,[[214,2,2,67,69],[219,1,1,69,70],[221,2,2,70,72],[223,1,1,72,73],[225,1,1,73,74],[226,2,2,74,76]]],[8,14,13,76,89,[[242,2,2,76,78],[249,2,2,78,80],[252,3,3,80,83],[255,4,3,83,86],[259,2,2,86,88],[261,1,1,88,89]]],[9,7,6,89,95,[[269,2,2,89,91],[284,2,2,91,93],[285,1,1,93,94],[287,2,1,94,95]]],[10,15,14,95,109,[[293,1,1,95,96],[295,1,1,96,97],[297,3,3,97,100],[304,1,1,100,101],[305,6,5,101,106],[308,1,1,106,107],[312,2,2,107,109]]],[11,4,3,109,112,[[321,1,1,109,110],[323,2,1,110,111],[337,1,1,111,112]]],[12,1,1,112,113,[[358,1,1,112,113]]],[13,10,6,113,119,[[370,1,1,113,114],[379,1,1,114,115],[382,2,1,115,116],[384,1,1,116,117],[385,2,1,117,118],[389,3,1,118,119]]],[15,1,1,119,120,[[415,1,1,119,120]]],[17,1,1,120,121,[[476,1,1,120,121]]],[19,1,1,121,122,[[645,1,1,121,122]]],[22,2,2,122,124,[[700,1,1,122,123],[737,1,1,123,124]]],[23,4,4,124,128,[[751,1,1,124,125],[778,2,2,125,127],[796,1,1,127,128]]],[24,1,1,128,129,[[797,1,1,128,129]]],[25,23,20,129,149,[[805,1,1,129,130],[809,2,2,130,132],[811,2,2,132,134],[819,1,1,134,135],[821,2,2,135,137],[823,2,1,137,138],[835,4,3,138,141],[841,1,1,141,142],[842,2,2,142,144],[843,1,1,144,145],[844,1,1,145,146],[845,2,1,146,147],[848,1,1,147,148],[849,1,1,148,149]]],[26,4,4,149,153,[[857,3,3,149,152],[860,1,1,152,153]]],[28,1,1,153,154,[[877,1,1,153,154]]],[31,1,1,154,155,[[892,1,1,154,155]]],[37,3,3,155,158,[[915,1,1,155,156],[916,1,1,156,157],[921,1,1,157,158]]],[38,3,2,158,160,[[926,1,1,158,159],[927,2,1,159,160]]]],[70,217,218,220,221,222,246,321,325,326,377,386,395,399,404,407,496,917,921,922,1487,1733,1746,1813,1876,1883,1891,1909,1948,2015,2124,2268,2400,2433,2437,2714,2737,2987,3044,3343,3570,4057,4242,4353,4545,4664,4691,4869,4893,4908,5058,5094,5226,5291,5372,5548,5822,5897,6011,6013,6014,6304,6451,6453,6454,6460,6483,6604,6616,6777,6839,6856,6909,6933,6974,6980,7364,7366,7512,7550,7619,7621,7624,7733,7753,7772,7851,7854,7918,8082,8087,8487,8502,8546,8587,8825,8890,8962,8963,8980,9248,9255,9256,9265,9268,9281,9383,9481,9514,9780,9846,10226,10950,11263,11455,11512,11575,11586,11672,12359,13904,16919,18063,18802,19124,19819,19820,20283,20313,20532,20607,20620,20635,20640,20857,20907,20915,21002,21330,21333,21335,21484,21536,21544,21572,21580,21622,21695,21724,21966,21977,21982,22081,22328,22579,22945,22960,23042,23117,23138]]],["betwixt",[14,13,[[0,10,9,0,9,[[16,1,1,0,1],[22,1,1,1,2],[25,2,1,2,3],[29,1,1,3,4],[30,4,4,4,8],[31,1,1,8,9]]],[17,1,1,9,10,[[444,1,1,9,10]]],[21,1,1,10,11,[[671,1,1,10,11]]],[22,1,1,11,12,[[683,1,1,11,12]]],[23,1,1,12,13,[[783,1,1,12,13]]]],[408,586,720,866,910,923,924,926,944,13084,17550,17742,19927]]],["from",[4,4,[[0,4,4,0,4,[[0,4,4,0,4]]]],[3,6,13,17]]],["in",[4,4,[[1,1,1,0,1,[[61,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[19,1,1,2,3,[[653,1,1,2,3]]],[37,1,1,3,4,[[923,1,1,3,4]]]],[1822,6634,17154,23065]]],["me",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7144]]],["once",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12400]]],["thee",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7144]]],["unto",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1275]]],["whether",[4,4,[[2,3,3,0,3,[[116,3,3,0,3]]],[13,1,1,3,4,[[380,1,1,3,4]]]],[3582,3584,3603,11486]]],["within",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13447]]]]},{"k":"H997","v":[["*",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21938,21941]]],["among",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21941]]],["between",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21938]]]]},{"k":"H998","v":[["*",[38,38,[[4,1,1,0,1,[[156,1,1,0,1]]],[12,2,2,1,3,[[349,1,1,1,2],[359,1,1,2,3]]],[13,2,2,3,5,[[368,2,2,3,5]]],[17,9,9,5,14,[[455,1,1,5,6],[463,3,3,6,9],[469,1,1,9,10],[473,2,2,10,12],[474,2,2,12,14]]],[19,14,14,14,28,[[628,1,1,14,15],[629,1,1,15,16],[630,1,1,16,17],[631,3,3,17,20],[634,1,1,20,21],[635,1,1,21,22],[636,2,2,22,24],[643,1,1,24,25],[650,2,2,25,27],[657,1,1,27,28]]],[22,5,5,28,33,[[689,1,1,28,29],[705,1,1,29,30],[707,2,2,30,32],[711,1,1,32,33]]],[23,1,1,33,34,[[767,1,1,33,34]]],[26,4,4,34,38,[[850,1,1,34,35],[857,1,1,35,36],[858,1,1,36,37],[859,1,1,37,38]]]],[5010,10752,10976,11223,11224,13329,13516,13524,13532,13699,13797,13829,13851,13860,16402,16436,16460,16491,16495,16497,16579,16616,16644,16648,16856,17048,17067,17253,17886,18162,18207,18217,18298,19504,21757,21976,22010,22016]]],["+",[3,3,[[17,3,3,0,3,[[455,1,1,0,1],[473,1,1,1,2],[474,1,1,2,3]]]],[13329,13797,13860]]],["knowledge",[1,1,[[19,1,1,0,1,[[629,1,1,0,1]]]],[16436]]],["meaning",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21976]]],["perfectly",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19504]]],["understand",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18298]]],["understanding",[30,30,[[4,1,1,0,1,[[156,1,1,0,1]]],[12,2,2,1,3,[[349,1,1,1,2],[359,1,1,2,3]]],[13,2,2,3,5,[[368,2,2,3,5]]],[17,6,6,5,11,[[463,3,3,5,8],[469,1,1,8,9],[473,1,1,9,10],[474,1,1,10,11]]],[19,12,12,11,23,[[628,1,1,11,12],[630,1,1,12,13],[631,3,3,13,16],[634,1,1,16,17],[635,1,1,17,18],[636,2,2,18,20],[643,1,1,20,21],[650,1,1,21,22],[657,1,1,22,23]]],[22,4,4,23,27,[[689,1,1,23,24],[705,1,1,24,25],[707,2,2,25,27]]],[26,3,3,27,30,[[850,1,1,27,28],[858,1,1,28,29],[859,1,1,29,30]]]],[5010,10752,10976,11223,11224,13516,13524,13532,13699,13829,13851,16402,16460,16491,16495,16497,16579,16616,16644,16648,16856,17067,17253,17886,18162,18207,18217,21757,22010,22016]]],["wisdom",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17048]]]]},{"k":"H999","v":[["understanding",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21779]]]]},{"k":"H1000","v":[["*",[6,4,[[4,2,1,0,1,[[174,2,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]],[22,3,2,2,4,[[688,1,1,2,3],[737,2,1,3,4]]]],[5476,13848,17864,18805]]],["+",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18805]]],["eggs",[5,4,[[4,2,1,0,1,[[174,2,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]],[22,2,2,2,4,[[688,1,1,2,3],[737,1,1,3,4]]]],[5476,13848,17864,18805]]]]},{"k":"H1001","v":[["palace",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12153]]]]},{"k":"H1002","v":[["palace",[16,16,[[12,2,2,0,2,[[366,2,2,0,2]]],[15,3,3,2,5,[[413,1,1,2,3],[414,1,1,3,4],[419,1,1,4,5]]],[16,10,10,5,15,[[426,2,2,5,7],[427,3,3,7,10],[428,1,1,10,11],[433,1,1,11,12],[434,3,3,12,15]]],[26,1,1,15,16,[[857,1,1,15,16]]]],[11165,11183,12297,12315,12422,12704,12707,12727,12729,12732,12762,12831,12840,12845,12846,21963]]]]},{"k":"H1003","v":[["castles",[2,2,[[13,2,2,0,2,[[383,1,1,0,1],[393,1,1,1,2]]]],[11535,11759]]]]},{"k":"H1004","v":[["*",[2050,1708,[[0,109,93,0,93,[[5,1,1,0,1],[6,1,1,1,2],[11,3,3,2,5],[13,1,1,5,6],[14,2,2,6,8],[16,6,4,8,12],[17,1,1,12,13],[18,5,5,13,18],[19,2,2,18,20],[23,9,9,20,29],[26,1,1,29,30],[27,4,4,30,34],[28,1,1,34,35],[29,1,1,35,36],[30,4,4,36,40],[32,1,1,40,41],[33,4,4,41,45],[34,1,1,45,46],[35,1,1,46,47],[37,2,1,47,48],[38,18,12,48,60],[39,5,4,60,64],[40,3,3,64,67],[41,3,2,67,69],[42,9,6,69,75],[43,4,4,75,79],[44,5,5,79,84],[45,3,2,84,86],[46,3,3,86,89],[49,5,4,89,93]]],[1,59,50,93,143,[[50,2,2,93,95],[51,1,1,95,96],[52,1,1,96,97],[55,1,1,97,98],[56,1,1,98,99],[57,9,6,99,105],[58,2,2,105,107],[59,3,1,107,108],[61,16,12,108,120],[62,2,2,120,122],[65,1,1,122,123],[68,1,1,123,124],[69,2,2,124,126],[71,2,2,126,128],[72,1,1,128,129],[74,2,2,129,131],[75,2,2,131,133],[77,1,1,133,134],[79,1,1,134,135],[83,1,1,135,136],[85,1,1,136,137],[86,3,3,137,140],[87,1,1,140,141],[88,1,1,141,142],[89,1,1,142,143]]],[2,53,40,143,183,[[99,1,1,143,144],[103,31,19,144,163],[105,6,6,163,169],[106,3,3,169,172],[107,1,1,172,173],[111,3,3,173,176],[114,6,5,176,181],[116,2,2,181,183]]],[3,58,56,183,239,[[117,17,17,183,200],[118,3,3,200,203],[119,5,5,203,208],[120,8,8,208,216],[123,1,1,216,217],[128,1,1,217,218],[132,1,1,218,219],[133,5,4,219,223],[134,5,5,223,228],[136,1,1,228,229],[138,1,1,229,230],[140,1,1,230,231],[141,2,2,231,233],[142,1,1,233,234],[146,3,3,234,237],[148,1,1,237,238],[150,2,1,238,239]]],[4,45,42,239,281,[[157,2,2,239,241],[158,5,5,241,246],[159,2,2,246,248],[160,2,2,248,250],[163,3,3,250,253],[164,1,1,253,254],[165,2,2,254,256],[166,1,1,256,257],[167,2,2,257,259],[171,1,1,259,260],[172,5,4,260,264],[173,2,2,264,266],[174,5,3,266,269],[175,1,1,269,270],[176,5,5,270,275],[177,3,3,275,278],[178,2,2,278,280],[180,1,1,280,281]]],[5,25,21,281,302,[[188,8,6,281,287],[192,4,4,287,291],[193,3,2,291,293],[195,2,2,293,295],[203,1,1,295,296],[204,1,1,296,297],[206,1,1,297,298],[207,1,1,298,299],[208,2,1,299,300],[210,2,2,300,302]]],[6,70,61,302,363,[[211,3,3,302,305],[214,1,1,305,306],[216,3,3,306,309],[218,3,3,309,312],[219,10,9,312,321],[220,1,1,321,322],[221,4,4,322,326],[222,1,1,326,327],[224,2,2,327,329],[226,7,7,329,336],[227,4,4,336,340],[228,14,11,340,351],[229,15,10,351,361],[230,2,2,361,363]]],[7,7,5,363,368,[[232,2,2,363,365],[233,1,1,365,366],[235,4,2,366,368]]],[8,61,57,368,425,[[236,4,4,368,372],[237,12,9,372,381],[238,5,4,381,385],[240,2,2,385,387],[241,2,2,387,389],[242,4,4,389,393],[244,2,2,393,395],[245,2,2,395,397],[250,1,1,397,398],[252,1,1,398,399],[253,2,2,399,401],[254,2,2,401,403],[255,2,2,403,405],[256,1,1,405,406],[257,6,6,406,412],[258,1,1,412,413],[259,2,2,413,415],[260,6,6,415,421],[262,1,1,421,422],[263,1,1,422,423],[266,2,2,423,425]]],[9,115,95,425,520,[[267,1,1,425,426],[268,5,5,426,431],[269,11,6,431,437],[270,4,4,437,441],[271,3,3,441,444],[272,12,10,444,454],[273,15,14,454,468],[275,7,7,468,475],[277,11,8,475,483],[278,8,6,483,489],[279,4,3,489,492],[280,5,4,492,496],[281,4,3,496,499],[282,5,5,499,504],[283,4,3,504,507],[285,9,8,507,515],[286,3,1,515,516],[287,2,2,516,518],[289,1,1,518,519],[290,1,1,519,520]]],[10,194,148,520,668,[[291,1,1,520,521],[292,6,6,521,527],[293,7,4,527,531],[294,2,2,531,533],[295,8,7,533,540],[296,38,24,540,564],[297,21,13,564,577],[298,21,20,577,597],[299,13,8,597,605],[300,6,5,605,610],[301,5,4,610,614],[302,10,9,614,623],[303,8,8,623,631],[304,12,10,631,641],[305,5,4,641,645],[306,12,7,645,652],[307,3,3,652,655],[308,3,3,655,658],[310,4,3,658,661],[311,6,4,661,665],[312,3,3,665,668]]],[11,152,110,668,778,[[316,4,3,668,671],[317,5,3,671,674],[318,2,2,674,676],[319,2,2,676,678],[320,8,6,678,684],[321,7,5,684,689],[322,11,10,689,699],[323,19,13,699,712],[324,21,14,712,726],[325,1,1,726,727],[326,3,2,727,729],[327,4,3,729,732],[328,6,3,732,735],[329,4,4,735,739],[330,4,3,739,742],[331,5,5,742,747],[332,9,6,747,753],[333,7,6,753,759],[334,9,6,759,765],[335,11,8,765,773],[336,2,1,773,774],[337,8,4,774,778]]],[12,112,92,778,870,[[339,1,1,778,779],[341,3,2,779,781],[342,4,3,781,784],[343,4,4,784,788],[344,6,6,788,794],[346,9,7,794,801],[347,3,2,801,803],[349,3,3,803,806],[350,5,3,806,809],[351,1,1,809,810],[352,2,2,810,812],[353,2,1,812,813],[354,14,13,813,826],[358,1,1,826,827],[359,10,10,827,837],[360,7,5,837,842],[361,5,4,842,846],[362,2,1,846,847],[363,7,7,847,854],[365,15,10,854,864],[366,8,6,864,870]]],[13,218,171,870,1041,[[368,10,7,870,877],[369,13,12,877,889],[370,6,5,889,894],[371,6,4,894,898],[372,16,15,898,913],[373,15,10,913,923],[374,6,3,923,926],[375,6,5,926,931],[376,2,2,931,933],[377,2,2,933,935],[378,4,3,935,938],[381,1,1,938,939],[382,3,2,939,941],[383,1,1,941,942],[384,2,2,942,944],[385,2,2,944,946],[386,4,3,946,949],[387,5,4,949,953],[388,7,7,953,960],[389,19,13,960,973],[390,15,11,973,984],[391,4,3,984,987],[392,4,2,987,989],[393,1,1,989,990],[394,6,3,990,993],[395,11,10,993,1003],[396,2,2,1003,1005],[397,7,6,1005,1011],[398,1,1,1011,1012],[399,8,6,1012,1018],[400,12,8,1018,1026],[401,9,8,1026,1034],[402,8,7,1034,1041]]],[14,30,26,1041,1067,[[403,6,5,1041,1046],[404,4,3,1046,1049],[405,6,4,1049,1053],[406,1,1,1053,1054],[408,1,1,1054,1055],[409,1,1,1055,1056],[410,6,6,1056,1062],[411,1,1,1062,1063],[412,4,4,1063,1067]]],[15,53,46,1067,1113,[[413,1,1,1067,1068],[414,3,2,1068,1070],[415,12,10,1070,1080],[416,2,2,1080,1082],[417,3,3,1082,1085],[418,2,1,1085,1086],[419,4,4,1086,1090],[420,1,1,1090,1091],[421,1,1,1091,1092],[422,11,8,1092,1100],[423,4,4,1100,1104],[424,3,3,1104,1107],[425,6,6,1107,1113]]],[16,28,22,1113,1135,[[426,3,3,1113,1116],[427,9,7,1116,1123],[429,2,2,1123,1125],[430,5,2,1125,1127],[431,2,2,1127,1129],[432,3,2,1129,1131],[433,3,3,1131,1134],[434,1,1,1134,1135]]],[17,26,26,1135,1161,[[436,5,5,1135,1140],[438,1,1,1140,1141],[439,1,1,1141,1142],[442,1,1,1142,1143],[443,3,3,1143,1146],[450,1,1,1146,1147],[452,1,1,1147,1148],[454,1,1,1148,1149],[455,2,2,1149,1151],[456,3,3,1151,1154],[457,1,1,1154,1155],[459,1,1,1155,1156],[462,1,1,1156,1157],[465,1,1,1157,1158],[473,1,1,1158,1159],[474,1,1,1159,1160],[477,1,1,1160,1161]]],[18,50,47,1161,1208,[[482,1,1,1161,1162],[500,1,1,1162,1163],[503,1,1,1163,1164],[504,1,1,1164,1165],[508,1,1,1165,1166],[513,1,1,1166,1167],[519,1,1,1167,1168],[522,1,1,1168,1169],[526,2,2,1169,1171],[527,1,1,1171,1172],[529,1,1,1172,1173],[532,1,1,1173,1174],[542,1,1,1174,1175],[543,1,1,1175,1176],[545,2,2,1176,1178],[546,1,1,1178,1179],[561,3,3,1179,1182],[569,1,1,1182,1183],[570,1,1,1183,1184],[575,1,1,1184,1185],[578,2,2,1185,1187],[581,1,1,1187,1188],[582,1,1,1188,1189],[589,1,1,1189,1190],[590,1,1,1190,1191],[591,1,1,1191,1192],[592,3,2,1192,1194],[593,1,1,1194,1195],[595,2,2,1195,1197],[596,1,1,1197,1198],[599,3,3,1198,1201],[604,1,1,1201,1202],[605,1,1,1202,1203],[609,1,1,1203,1204],[611,1,1,1204,1205],[612,5,3,1205,1208]]],[19,38,37,1208,1245,[[628,1,1,1208,1209],[629,1,1,1209,1210],[630,1,1,1210,1211],[632,2,2,1211,1213],[633,1,1,1213,1214],[634,6,6,1214,1220],[635,1,1,1220,1221],[636,2,2,1221,1223],[638,1,1,1223,1224],[639,1,1,1224,1225],[641,2,2,1225,1227],[642,3,3,1227,1230],[644,2,2,1230,1232],[646,1,1,1232,1233],[648,2,2,1233,1235],[651,2,2,1235,1237],[652,2,2,1237,1239],[654,2,2,1239,1241],[657,1,1,1241,1242],[658,4,3,1242,1245]]],[20,11,9,1245,1254,[[660,2,2,1245,1247],[662,1,1,1247,1248],[663,1,1,1248,1249],[665,4,2,1249,1251],[668,1,1,1251,1252],[670,2,2,1252,1254]]],[21,5,5,1254,1259,[[671,1,1,1254,1255],[672,1,1,1255,1256],[673,1,1,1256,1257],[678,2,2,1257,1259]]],[22,75,67,1259,1326,[[680,4,4,1259,1263],[681,4,4,1263,1267],[683,4,3,1267,1270],[684,2,2,1270,1272],[685,3,3,1272,1275],[686,2,2,1275,1277],[688,2,2,1277,1279],[691,2,2,1279,1281],[692,4,4,1281,1285],[700,9,8,1285,1293],[701,1,1,1293,1294],[702,1,1,1294,1295],[707,1,1,1295,1296],[709,1,1,1296,1297],[710,1,1,1297,1298],[714,2,2,1298,1300],[715,5,5,1300,1305],[716,3,3,1305,1308],[717,6,3,1308,1311],[720,2,2,1311,1313],[722,1,1,1313,1314],[724,2,1,1314,1315],[726,1,1,1315,1316],[734,4,2,1316,1318],[736,2,2,1318,1320],[738,1,1,1320,1321],[741,1,1,1321,1322],[742,1,1,1322,1323],[743,1,1,1323,1324],[744,2,2,1324,1326]]],[23,146,119,1326,1445,[[746,4,3,1326,1329],[747,3,2,1329,1331],[749,6,5,1331,1336],[750,1,1,1336,1337],[751,5,5,1337,1342],[753,1,1,1342,1343],[754,1,1,1343,1344],[755,5,3,1344,1347],[756,3,3,1347,1350],[757,2,1,1350,1351],[760,2,2,1351,1353],[761,2,2,1353,1355],[762,5,4,1355,1359],[763,4,2,1359,1361],[764,3,3,1361,1364],[765,2,2,1364,1366],[766,6,6,1366,1372],[767,3,3,1372,1375],[770,10,7,1375,1382],[771,5,3,1382,1385],[772,4,4,1385,1389],[773,3,3,1389,1392],[775,5,3,1392,1395],[776,4,4,1395,1399],[777,6,4,1399,1403],[778,2,2,1403,1405],[779,8,7,1405,1412],[780,8,7,1412,1419],[781,8,6,1419,1425],[782,7,7,1425,1432],[783,3,2,1432,1434],[785,1,1,1434,1435],[787,3,3,1435,1438],[792,1,1,1438,1439],[795,1,1,1439,1440],[796,9,5,1440,1445]]],[24,3,3,1445,1448,[[797,1,1,1445,1446],[798,1,1,1446,1447],[801,1,1,1447,1448]]],[25,181,159,1448,1607,[[802,1,1,1448,1449],[803,3,3,1449,1452],[804,10,9,1452,1461],[805,4,4,1461,1465],[806,1,1,1465,1466],[807,1,1,1466,1467],[808,2,2,1467,1469],[809,8,8,1469,1477],[810,4,4,1477,1481],[811,5,4,1481,1485],[812,4,4,1485,1489],[813,10,8,1489,1497],[814,2,2,1497,1499],[815,5,5,1499,1504],[817,1,1,1504,1505],[818,2,2,1505,1507],[819,7,6,1507,1513],[821,8,8,1513,1521],[823,1,1,1521,1522],[824,2,2,1522,1524],[825,2,2,1524,1526],[826,3,3,1526,1529],[827,1,1,1529,1530],[828,1,1,1530,1531],[829,3,3,1531,1534],[830,3,3,1534,1537],[834,5,5,1537,1542],[835,1,1,1542,1543],[836,1,1,1543,1544],[837,7,6,1544,1550],[838,2,2,1550,1552],[839,1,1,1552,1553],[840,5,5,1553,1558],[841,9,9,1558,1567],[842,16,11,1567,1578],[843,1,1,1578,1579],[844,10,8,1579,1587],[845,14,10,1587,1597],[846,8,7,1597,1604],[847,2,1,1604,1605],[848,4,1,1605,1606],[849,1,1,1606,1607]]],[26,3,1,1607,1608,[[850,3,1,1607,1608]]],[27,15,13,1608,1621,[[862,4,3,1608,1611],[866,4,3,1611,1614],[867,1,1,1614,1615],[869,1,1,1615,1616],[870,3,3,1616,1619],[872,2,2,1619,1621]]],[28,6,6,1621,1627,[[876,4,4,1621,1625],[877,1,1,1625,1626],[878,1,1,1626,1627]]],[29,27,22,1627,1649,[[879,1,1,1627,1628],[880,1,1,1628,1629],[881,5,2,1629,1631],[883,7,7,1631,1638],[884,7,5,1638,1643],[885,4,4,1643,1647],[887,2,2,1647,1649]]],[30,5,2,1649,1651,[[888,5,2,1649,1651]]],[32,17,15,1651,1666,[[893,3,3,1651,1654],[894,4,3,1654,1657],[895,4,3,1657,1660],[896,2,2,1660,1662],[898,3,3,1662,1665],[899,1,1,1665,1666]]],[33,1,1,1666,1667,[[900,1,1,1666,1667]]],[34,3,3,1667,1670,[[904,2,2,1667,1669],[905,1,1,1669,1670]]],[35,5,3,1670,1673,[[906,3,2,1670,1672],[907,2,1,1672,1673]]],[36,11,8,1673,1681,[[909,8,5,1673,1678],[910,3,3,1678,1681]]],[37,31,26,1681,1707,[[911,1,1,1681,1682],[913,1,1,1682,1683],[914,1,1,1683,1684],[915,4,2,1684,1686],[916,1,1,1686,1687],[917,1,1,1687,1688],[918,5,4,1688,1692],[919,1,1,1692,1693],[920,3,2,1693,1695],[921,1,1,1695,1696],[922,7,6,1696,1702],[923,2,2,1702,1704],[924,3,3,1704,1707]]],[38,2,1,1707,1708,[[927,2,1,1707,1708]]]],[151,160,299,313,315,350,362,363,409,410,420,424,443,459,460,461,467,468,508,513,593,598,614,618,619,622,623,629,631,742,775,790,794,795,808,860,887,903,910,914,977,999,1006,1009,1010,1013,1046,1130,1151,1153,1154,1157,1158,1160,1163,1165,1169,1170,1171,1172,1175,1177,1179,1186,1205,1235,1246,1271,1285,1306,1307,1308,1309,1314,1316,1325,1328,1332,1338,1360,1366,1369,1374,1376,1413,1417,1432,1434,1444,1510,1513,1514,1528,1533,1553,1555,1601,1669,1708,1713,1719,1721,1723,1731,1734,1761,1762,1783,1819,1820,1823,1829,1831,1835,1838,1839,1843,1845,1846,1862,1870,1881,1978,2029,2053,2068,2120,2121,2163,2206,2222,2264,2268,2319,2386,2522,2600,2606,2618,2631,2638,2683,2745,2983,3145,3146,3147,3148,3149,3150,3152,3153,3154,3155,3156,3157,3158,3159,3160,3162,3163,3164,3166,3203,3207,3212,3213,3216,3218,3238,3243,3245,3260,3380,3382,3387,3498,3499,3500,3501,3502,3584,3585,3606,3608,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3648,3649,3660,3690,3692,3707,3712,3716,3722,3727,3745,3765,3772,3777,3781,3783,3785,3789,3852,4066,4226,4246,4247,4250,4252,4258,4264,4268,4270,4288,4340,4393,4459,4485,4486,4491,4651,4658,4664,4736,4830,5059,5074,5093,5095,5097,5098,5108,5119,5137,5149,5151,5214,5227,5228,5247,5277,5282,5316,5335,5339,5407,5432,5433,5434,5435,5459,5460,5472,5478,5491,5518,5526,5527,5528,5530,5535,5556,5557,5561,5577,5579,5641,5870,5872,5881,5884,5887,5888,5966,5971,5973,5974,5990,5994,6049,6060,6292,6298,6378,6426,6440,6491,6493,6531,6532,6544,6616,6662,6669,6681,6746,6748,6754,6755,6758,6759,6770,6772,6773,6774,6781,6800,6820,6831,6836,6860,6863,6870,6924,6928,6970,6974,6975,6976,6978,6979,6980,6984,6985,6988,6992,6995,6996,7006,7007,7008,7011,7012,7015,7018,7019,7024,7026,7027,7039,7042,7045,7046,7047,7050,7051,7053,7059,7062,7135,7136,7156,7201,7202,7219,7231,7233,7236,7251,7267,7268,7270,7271,7272,7273,7275,7276,7288,7289,7290,7291,7321,7324,7338,7341,7353,7354,7355,7369,7409,7411,7443,7444,7594,7643,7678,7686,7715,7717,7745,7746,7787,7788,7798,7801,7802,7803,7809,7828,7860,7861,7862,7867,7878,7889,7896,7897,7933,7966,8018,8019,8034,8052,8053,8056,8059,8060,8082,8087,8089,8091,8100,8110,8125,8126,8127,8131,8140,8141,8143,8160,8161,8162,8167,8168,8169,8172,8176,8177,8178,8181,8182,8185,8186,8187,8191,8193,8196,8198,8199,8205,8206,8207,8209,8228,8229,8230,8231,8232,8236,8239,8261,8263,8267,8268,8269,8270,8272,8286,8294,8296,8297,8301,8303,8306,8324,8325,8337,8364,8365,8380,8387,8405,8406,8424,8428,8429,8431,8434,8447,8467,8469,8472,8516,8522,8528,8529,8531,8539,8541,8552,8557,8581,8584,8658,8709,8770,8794,8797,8801,8803,8804,8806,8817,8818,8833,8834,8850,8851,8881,8883,8887,8889,8892,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8908,8910,8911,8912,8913,8914,8915,8917,8918,8923,8925,8926,8933,8934,8935,8936,8942,8943,8946,8959,8965,8973,8974,8979,8982,8984,8985,8991,8995,8996,8998,9001,9002,9003,9004,9005,9012,9014,9016,9018,9023,9027,9028,9029,9033,9048,9049,9052,9054,9058,9059,9061,9066,9075,9076,9083,9084,9091,9096,9100,9126,9128,9136,9146,9167,9170,9171,9172,9174,9175,9177,9178,9182,9186,9191,9192,9199,9202,9203,9216,9218,9222,9226,9228,9230,9231,9232,9235,9244,9245,9246,9264,9267,9276,9278,9286,9290,9292,9294,9295,9301,9315,9332,9334,9340,9344,9359,9373,9414,9439,9451,9453,9455,9473,9480,9497,9507,9519,9605,9635,9638,9656,9665,9671,9704,9706,9716,9718,9728,9729,9730,9732,9745,9754,9762,9763,9764,9765,9783,9796,9798,9803,9804,9814,9816,9818,9819,9820,9823,9832,9833,9834,9835,9836,9839,9840,9842,9844,9845,9847,9848,9849,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9866,9868,9870,9877,9906,9910,9930,9950,9960,9971,9977,9981,9987,10004,10012,10015,10039,10042,10061,10062,10063,10075,10091,10098,10099,10103,10106,10111,10113,10115,10123,10124,10126,10132,10137,10142,10148,10149,10150,10151,10153,10154,10167,10171,10172,10176,10177,10184,10189,10192,10215,10231,10235,10238,10249,10361,10406,10423,10441,10443,10452,10464,10485,10486,10502,10537,10539,10542,10544,10558,10575,10624,10626,10628,10634,10638,10641,10642,10665,10669,10748,10749,10750,10767,10773,10774,10775,10792,10816,10863,10864,10867,10868,10869,10873,10875,10877,10879,10880,10886,10887,10888,10890,10951,10965,10966,10969,10970,10971,10972,10974,10975,10978,10983,10987,10994,11007,11011,11015,11019,11021,11034,11045,11052,11083,11089,11090,11092,11097,11099,11104,11145,11146,11147,11149,11153,11154,11155,11156,11163,11164,11166,11167,11168,11171,11172,11180,11212,11214,11215,11216,11217,11220,11223,11230,11232,11233,11234,11235,11236,11237,11239,11240,11241,11242,11244,11250,11257,11262,11265,11268,11269,11275,11281,11282,11284,11287,11289,11290,11291,11292,11300,11302,11304,11306,11311,11314,11315,11316,11320,11325,11326,11327,11329,11331,11335,11336,11340,11344,11345,11347,11357,11362,11367,11368,11375,11380,11384,11411,11414,11415,11418,11446,11447,11448,11508,11511,11519,11537,11558,11568,11577,11587,11592,11596,11615,11630,11631,11637,11641,11647,11648,11651,11652,11653,11654,11656,11659,11661,11662,11663,11665,11666,11668,11670,11671,11673,11674,11675,11676,11681,11682,11684,11685,11689,11690,11691,11693,11695,11698,11704,11709,11723,11728,11751,11753,11758,11771,11785,11788,11794,11796,11806,11807,11808,11809,11811,11816,11822,11826,11828,11842,11864,11865,11867,11870,11871,11875,11896,11912,11913,11915,11923,11928,11932,11941,11942,11943,11944,11947,11948,11950,11963,11968,11969,11970,11971,11974,11978,11986,11987,12000,12003,12007,12010,12011,12012,12016,12018,12019,12020,12021,12023,12063,12086,12095,12105,12106,12108,12109,12113,12173,12200,12218,12226,12230,12231,12234,12237,12246,12253,12258,12261,12268,12302,12310,12315,12337,12343,12347,12348,12350,12351,12352,12355,12356,12358,12373,12375,12385,12393,12395,12411,12423,12424,12459,12481,12509,12536,12581,12582,12583,12584,12585,12586,12587,12588,12599,12600,12604,12610,12653,12661,12664,12675,12678,12679,12680,12682,12685,12710,12711,12724,12727,12732,12733,12735,12737,12738,12740,12775,12776,12780,12789,12797,12805,12815,12816,12818,12819,12824,12838,12873,12879,12882,12887,12888,12919,12949,13018,13043,13044,13046,13231,13273,13312,13345,13354,13364,13376,13383,13407,13452,13499,13580,13813,13840,13933,13980,14241,14281,14289,14333,14446,14559,14607,14659,14664,14677,14718,14746,14864,14886,14906,14912,14944,15262,15263,15269,15424,15431,15493,15515,15520,15588,15627,15806,15822,15823,15840,15842,15867,15872,15895,15952,16090,16094,16098,16122,16129,16154,16173,16177,16194,16195,16413,16451,16488,16525,16527,16571,16581,16583,16586,16594,16595,16602,16604,16639,16652,16717,16726,16773,16783,16813,16832,16834,16874,16886,16939,16993,16996,17082,17106,17130,17137,17179,17196,17277,17299,17305,17311,17337,17340,17395,17398,17431,17433,17511,17526,17528,17554,17558,17575,17642,17647,17687,17688,17690,17691,17713,17714,17721,17727,17746,17747,17748,17773,17780,17784,17795,17799,17821,17824,17870,17882,17922,17927,17929,17930,17945,17946,18060,18062,18067,18070,18073,18074,18075,18076,18078,18105,18215,18252,18272,18333,18352,18353,18354,18366,18383,18390,18391,18410,18412,18414,18416,18418,18487,18502,18546,18589,18615,18758,18760,18787,18793,18828,18873,18896,18918,18923,18942,18969,18979,18991,19020,19022,19065,19069,19073,19078,19085,19101,19121,19129,19130,19133,19149,19201,19202,19236,19241,19243,19255,19256,19263,19277,19341,19344,19379,19383,19386,19387,19390,19406,19420,19421,19423,19424,19428,19451,19452,19455,19458,19459,19460,19467,19468,19492,19495,19518,19574,19578,19579,19581,19582,19584,19590,19612,19614,19617,19619,19621,19623,19624,19640,19661,19663,19718,19722,19724,19733,19746,19760,19765,19779,19786,19789,19792,19814,19816,19825,19826,19827,19828,19830,19832,19841,19845,19847,19848,19850,19852,19854,19864,19878,19889,19890,19891,19892,19894,19902,19903,19906,19909,19912,19917,19921,19931,19937,19962,20006,20009,20010,20093,20263,20287,20289,20293,20296,20307,20330,20339,20444,20491,20497,20498,20500,20503,20506,20507,20509,20511,20519,20526,20528,20529,20532,20533,20534,20535,20550,20574,20592,20601,20605,20610,20614,20615,20616,20618,20620,20621,20625,20628,20629,20631,20636,20637,20651,20652,20656,20658,20660,20670,20682,20683,20686,20689,20690,20704,20705,20707,20713,20717,20735,20736,20737,20738,20742,20803,20827,20837,20855,20864,20874,20878,20879,20880,20900,20908,20922,20925,20926,20934,20935,20939,20994,21046,21054,21059,21077,21086,21091,21095,21112,21135,21181,21182,21183,21189,21199,21204,21287,21290,21291,21300,21310,21343,21359,21369,21376,21380,21381,21391,21396,21408,21413,21431,21460,21470,21471,21473,21477,21481,21482,21484,21485,21486,21520,21522,21524,21525,21531,21532,21533,21534,21535,21536,21539,21540,21543,21545,21552,21567,21576,21577,21578,21579,21582,21583,21584,21593,21603,21604,21605,21606,21610,21611,21613,21616,21621,21629,21634,21635,21636,21638,21647,21649,21650,21679,21680,21723,21739,22098,22100,22101,22153,22164,22166,22177,22195,22212,22216,22223,22251,22252,22300,22304,22305,22307,22320,22361,22368,22387,22408,22410,22424,22426,22427,22429,22434,22442,22448,22451,22459,22460,22461,22464,22473,22474,22477,22480,22503,22504,22527,22528,22584,22589,22593,22597,22602,22604,22609,22617,22620,22621,22622,22652,22658,22664,22670,22698,22757,22758,22781,22796,22800,22812,22842,22844,22848,22849,22854,22858,22862,22864,22894,22919,22931,22940,22947,22957,22965,22985,22989,22991,22995,23007,23019,23022,23041,23049,23052,23053,23055,23057,23058,23060,23065,23070,23088,23089,23130]]],["+",[147,142,[[0,16,14,0,14,[[5,1,1,0,1],[11,1,1,1,2],[19,1,1,2,3],[23,2,2,3,5],[33,1,1,5,6],[38,6,4,6,10],[39,2,2,10,12],[43,2,2,12,14]]],[1,12,12,14,26,[[51,1,1,14,15],[57,2,2,15,17],[61,2,2,17,19],[62,2,2,19,21],[69,1,1,21,22],[71,1,1,22,23],[74,1,1,23,24],[75,1,1,24,25],[86,1,1,25,26]]],[2,10,10,26,36,[[103,3,3,26,29],[105,3,3,29,32],[106,3,3,32,35],[111,1,1,35,36]]],[3,1,1,36,37,[[134,1,1,36,37]]],[4,9,9,37,46,[[157,1,1,37,38],[158,1,1,38,39],[159,1,1,39,40],[160,1,1,40,41],[165,2,2,41,43],[176,3,3,43,46]]],[5,2,2,46,48,[[195,1,1,46,47],[210,1,1,47,48]]],[6,8,8,48,56,[[216,1,1,48,49],[219,2,2,49,51],[221,1,1,51,52],[226,1,1,52,53],[228,1,1,53,54],[229,1,1,54,55],[230,1,1,55,56]]],[8,2,2,56,58,[[236,1,1,56,57],[259,1,1,57,58]]],[9,11,11,58,69,[[269,2,2,58,60],[272,3,3,60,63],[275,1,1,63,64],[277,1,1,64,65],[278,2,2,65,67],[281,1,1,67,68],[286,1,1,68,69]]],[10,10,9,69,78,[[296,4,3,69,72],[297,3,3,72,75],[299,1,1,75,76],[304,1,1,76,77],[312,1,1,77,78]]],[11,7,7,78,85,[[318,1,1,78,79],[323,2,2,79,81],[329,1,1,81,82],[332,1,1,82,83],[335,1,1,83,84],[337,1,1,84,85]]],[12,1,1,85,86,[[350,1,1,85,86]]],[13,9,8,86,94,[[384,1,1,86,87],[389,3,2,87,89],[391,1,1,89,90],[392,1,1,90,91],[399,1,1,91,92],[401,2,2,92,94]]],[14,2,2,94,96,[[405,2,2,94,96]]],[15,4,4,96,100,[[415,2,2,96,98],[417,1,1,98,99],[424,1,1,99,100]]],[16,2,2,100,102,[[427,2,2,100,102]]],[18,2,2,102,104,[[527,1,1,102,103],[595,1,1,103,104]]],[19,3,3,104,107,[[644,2,2,104,106],[652,1,1,106,107]]],[20,1,1,107,108,[[662,1,1,107,108]]],[22,5,5,108,113,[[681,1,1,108,109],[686,1,1,109,110],[701,1,1,110,111],[716,1,1,111,112],[720,1,1,112,113]]],[23,14,13,113,126,[[746,1,1,113,114],[761,1,1,114,115],[762,1,1,115,116],[770,1,1,116,117],[778,1,1,117,118],[780,1,1,118,119],[781,5,4,119,123],[782,1,1,123,124],[796,2,2,124,126]]],[25,6,6,126,132,[[808,1,1,126,127],[815,2,2,127,129],[828,1,1,129,130],[844,2,2,130,132]]],[27,1,1,132,133,[[870,1,1,132,133]]],[28,4,4,133,137,[[876,3,3,133,136],[878,1,1,136,137]]],[32,2,2,137,139,[[894,1,1,137,138],[898,1,1,138,139]]],[33,1,1,139,140,[[900,1,1,139,140]]],[34,1,1,140,141,[[905,1,1,140,141]]],[38,1,1,141,142,[[927,1,1,141,142]]]],[151,299,508,598,631,1006,1169,1170,1171,1172,1175,1177,1328,1332,1555,1719,1721,1831,1845,1870,1881,2053,2120,2206,2268,2606,3152,3156,3159,3203,3213,3216,3238,3243,3245,3387,4264,5059,5098,5119,5151,5277,5282,5526,5527,5528,6049,6493,6662,6758,6774,6836,6974,7015,7046,7059,7219,7860,8091,8110,8160,8161,8169,8232,8267,8296,8297,8424,8557,8911,8912,8915,8942,8943,8965,9061,9226,9507,9704,9844,9848,9987,10099,10171,10249,10767,11568,11670,11676,11728,11753,11923,11971,11978,12108,12109,12351,12352,12395,12653,12733,12737,14677,15895,16874,16886,17130,17395,17727,17824,18078,18391,18487,18979,19379,19406,19582,19814,19864,19878,19889,19890,19892,19903,20287,20307,20592,20735,20738,21135,21578,21582,22223,22300,22304,22307,22361,22604,22652,22698,22781,23130]]],["House",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16939]]],["Houses",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19746]]],["contain",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9373]]],["court",[1,1,[[29,1,1,0,1,[[885,1,1,0,1]]]],[22477]]],["daughter",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17882]]],["door",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9235]]],["families",[2,2,[[13,1,1,0,1,[[401,1,1,0,1]]],[18,1,1,1,2,[[545,1,1,1,2]]]],[11971,14906]]],["family",[1,1,[[12,1,1,0,1,[[350,1,1,0,1]]]],[10774]]],["hangings",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10172]]],["home",[25,25,[[0,3,3,0,3,[[38,1,1,0,1],[42,2,2,1,3]]],[1,1,1,3,4,[[58,1,1,3,4]]],[2,1,1,4,5,[[107,1,1,4,5]]],[4,1,1,5,6,[[176,1,1,5,6]]],[5,1,1,6,7,[[188,1,1,6,7]]],[8,4,4,7,11,[[241,2,2,7,9],[245,1,1,9,10],[259,1,1,10,11]]],[9,1,1,11,12,[[279,1,1,11,12]]],[10,3,3,12,15,[[295,1,1,12,13],[303,2,2,13,15]]],[11,1,1,15,16,[[326,1,1,15,16]]],[13,1,1,16,17,[[391,1,1,16,17]]],[16,1,1,17,18,[[430,1,1,17,18]]],[18,1,1,18,19,[[545,1,1,18,19]]],[19,2,2,19,21,[[634,2,2,19,21]]],[20,1,1,21,22,[[670,1,1,21,22]]],[23,1,1,22,23,[[783,1,1,22,23]]],[24,1,1,23,24,[[797,1,1,23,24]]],[36,1,1,24,25,[[909,1,1,24,25]]]],[1165,1306,1316,1761,3260,5530,5887,7338,7341,7444,7861,8324,8892,9191,9199,9906,11723,12789,14912,16594,16595,17528,19937,20330,22849]]],["house",[1662,1404,[[0,80,71,0,71,[[6,1,1,0,1],[11,2,2,1,3],[13,1,1,3,4],[14,2,2,4,6],[16,6,4,6,10],[18,5,5,10,15],[19,1,1,15,16],[23,7,7,16,23],[26,1,1,23,24],[27,4,4,24,28],[28,1,1,28,29],[29,1,1,29,30],[30,3,3,30,33],[32,1,1,33,34],[33,3,3,34,37],[35,1,1,37,38],[37,2,1,38,39],[38,10,7,39,46],[39,3,3,46,49],[40,3,3,49,52],[41,1,1,52,53],[42,7,6,53,59],[43,2,2,59,61],[44,3,3,61,64],[45,3,2,64,66],[46,1,1,66,67],[49,5,4,67,71]]],[1,19,16,71,87,[[52,1,1,71,72],[56,1,1,72,73],[57,3,2,73,75],[61,7,5,75,80],[65,1,1,80,81],[68,1,1,81,82],[69,1,1,82,83],[71,1,1,83,84],[72,1,1,84,85],[83,1,1,85,86],[89,1,1,86,87]]],[2,38,29,87,116,[[99,1,1,87,88],[103,28,19,88,107],[105,2,2,107,109],[111,2,2,109,111],[114,3,3,111,114],[116,2,2,114,116]]],[3,52,50,116,166,[[117,17,17,116,133],[118,3,3,133,136],[119,5,5,136,141],[120,7,7,141,148],[123,1,1,148,149],[128,1,1,149,150],[133,4,3,150,153],[134,3,3,153,156],[136,1,1,156,157],[138,1,1,157,158],[140,1,1,158,159],[141,2,2,159,161],[142,1,1,161,162],[146,3,3,162,165],[150,2,1,165,166]]],[4,27,24,166,190,[[157,1,1,166,167],[158,2,2,167,169],[159,1,1,169,170],[163,2,2,170,172],[167,1,1,172,173],[172,5,4,173,177],[173,2,2,177,179],[174,5,3,179,182],[175,1,1,182,183],[176,1,1,183,184],[177,3,3,184,187],[178,2,2,187,189],[180,1,1,189,190]]],[5,17,15,190,205,[[188,6,5,190,195],[192,3,3,195,198],[195,1,1,198,199],[203,1,1,199,200],[204,1,1,200,201],[206,1,1,201,202],[207,1,1,202,203],[208,2,1,203,204],[210,1,1,204,205]]],[6,58,53,205,258,[[211,3,3,205,208],[214,1,1,208,209],[216,1,1,209,210],[218,3,3,210,213],[219,8,8,213,221],[220,1,1,221,222],[221,3,3,222,225],[222,1,1,225,226],[224,2,2,226,228],[226,6,6,228,234],[227,4,4,234,238],[228,10,9,238,247],[229,14,10,247,257],[230,1,1,257,258]]],[7,7,5,258,263,[[232,2,2,258,260],[233,1,1,260,261],[235,4,2,261,263]]],[8,53,49,263,312,[[236,3,3,263,266],[237,12,9,266,275],[238,5,4,275,279],[240,2,2,279,281],[242,4,4,281,285],[244,2,2,285,287],[245,1,1,287,288],[250,1,1,288,289],[252,1,1,289,290],[253,2,2,290,292],[254,2,2,292,294],[255,2,2,294,296],[256,1,1,296,297],[257,6,6,297,303],[258,1,1,303,304],[260,5,5,304,309],[263,1,1,309,310],[266,2,2,310,312]]],[9,93,81,312,393,[[267,1,1,312,313],[268,4,4,313,317],[269,9,5,317,322],[270,4,4,322,326],[271,2,2,326,328],[272,7,7,328,335],[273,15,14,335,349],[275,6,6,349,355],[277,10,8,355,363],[278,6,4,363,367],[279,3,3,367,370],[280,5,4,370,374],[281,1,1,374,375],[282,4,4,375,379],[283,3,3,379,382],[285,7,6,382,388],[286,2,1,388,389],[287,2,2,389,391],[289,1,1,391,392],[290,1,1,392,393]]],[10,171,132,393,525,[[291,1,1,393,394],[292,6,6,394,400],[293,7,4,400,404],[295,5,4,404,408],[296,34,23,408,431],[297,17,10,431,441],[298,21,20,441,461],[299,12,8,461,469],[300,6,5,469,474],[301,4,4,474,478],[302,10,9,478,487],[303,5,5,487,492],[304,10,8,492,500],[305,5,4,500,504],[306,12,7,504,511],[307,3,3,511,514],[308,2,2,514,516],[310,3,3,516,519],[311,6,4,519,523],[312,2,2,523,525]]],[11,127,92,525,617,[[316,4,3,525,528],[317,5,3,528,531],[318,1,1,531,532],[319,1,1,532,533],[320,6,4,533,537],[321,7,5,537,542],[322,11,10,542,552],[323,12,10,552,562],[324,21,14,562,576],[325,1,1,576,577],[326,2,1,577,578],[327,4,3,578,581],[328,6,3,581,584],[329,1,1,584,585],[330,2,1,585,586],[331,4,4,586,590],[332,8,5,590,595],[333,7,6,595,601],[334,9,6,601,607],[335,7,6,607,613],[336,2,1,613,614],[337,6,3,614,617]]],[12,103,86,617,703,[[339,1,1,617,618],[341,3,2,618,620],[342,4,3,620,623],[343,3,3,623,626],[344,6,6,626,632],[346,9,7,632,639],[347,2,2,639,641],[349,3,3,641,644],[350,3,2,644,646],[351,1,1,646,647],[352,1,1,647,648],[353,2,1,648,649],[354,14,13,649,662],[358,1,1,662,663],[359,10,10,663,673],[360,7,5,673,678],[361,4,3,678,681],[362,2,1,681,682],[363,7,7,682,689],[365,13,9,689,698],[366,7,5,698,703]]],[13,197,159,703,862,[[368,10,7,703,710],[369,12,11,710,721],[370,5,4,721,725],[371,6,4,725,729],[372,16,15,729,744],[373,15,10,744,754],[374,6,3,754,757],[375,5,5,757,762],[376,2,2,762,764],[377,2,2,764,766],[378,4,3,766,769],[381,1,1,769,770],[382,3,2,770,772],[383,1,1,772,773],[384,1,1,773,774],[385,2,2,774,776],[386,4,3,776,779],[387,5,4,779,783],[388,7,7,783,790],[389,13,11,790,801],[390,15,11,801,812],[391,1,1,812,813],[392,3,2,813,815],[393,1,1,815,816],[394,6,3,816,819],[395,11,10,819,829],[396,2,2,829,831],[397,7,6,831,837],[398,1,1,837,838],[399,7,6,838,844],[400,11,7,844,851],[401,4,4,851,855],[402,8,7,855,862]]],[14,28,25,862,887,[[403,6,5,862,867],[404,4,3,867,870],[405,4,3,870,873],[406,1,1,873,874],[408,1,1,874,875],[409,1,1,875,876],[410,6,6,876,882],[411,1,1,882,883],[412,4,4,883,887]]],[15,40,34,887,921,[[413,1,1,887,888],[414,2,1,888,889],[415,9,7,889,896],[416,1,1,896,897],[418,2,1,897,898],[419,3,3,898,901],[420,1,1,901,902],[422,10,8,902,910],[423,4,4,910,914],[424,2,2,914,916],[425,5,5,916,921]]],[16,24,21,921,942,[[426,3,3,921,924],[427,7,7,924,931],[429,2,2,931,933],[430,4,1,933,934],[431,2,2,934,936],[432,2,2,936,938],[433,3,3,938,941],[434,1,1,941,942]]],[17,17,17,942,959,[[436,4,4,942,946],[442,1,1,946,947],[443,1,1,947,948],[452,1,1,948,949],[454,1,1,949,950],[455,2,2,950,952],[456,2,2,952,954],[462,1,1,954,955],[465,1,1,955,956],[473,1,1,956,957],[474,1,1,957,958],[477,1,1,958,959]]],[18,45,42,959,1001,[[482,1,1,959,960],[500,1,1,960,961],[503,1,1,961,962],[504,1,1,962,963],[508,1,1,963,964],[513,1,1,964,965],[519,1,1,965,966],[522,1,1,966,967],[526,1,1,967,968],[529,1,1,968,969],[532,1,1,969,970],[542,1,1,970,971],[543,1,1,971,972],[546,1,1,972,973],[561,3,3,973,976],[569,1,1,976,977],[570,1,1,977,978],[575,1,1,978,979],[578,2,2,979,981],[581,1,1,981,982],[582,1,1,982,983],[589,1,1,983,984],[590,1,1,984,985],[591,1,1,985,986],[592,3,2,986,988],[593,1,1,988,989],[595,1,1,989,990],[596,1,1,990,991],[599,3,3,991,994],[604,1,1,994,995],[605,1,1,995,996],[609,1,1,996,997],[611,1,1,997,998],[612,5,3,998,1001]]],[19,24,24,1001,1025,[[629,1,1,1001,1002],[630,1,1,1002,1003],[632,2,2,1003,1005],[633,1,1,1005,1006],[634,4,4,1006,1010],[636,2,2,1010,1012],[638,1,1,1012,1013],[639,1,1,1013,1014],[641,2,2,1014,1016],[642,3,3,1016,1019],[648,2,2,1019,1021],[651,2,2,1021,1023],[652,1,1,1023,1024],[654,1,1,1024,1025]]],[20,8,6,1025,1031,[[660,1,1,1025,1026],[663,1,1,1026,1027],[665,4,2,1027,1029],[668,1,1,1029,1030],[670,1,1,1030,1031]]],[21,5,5,1031,1036,[[671,1,1,1031,1032],[672,1,1,1032,1033],[673,1,1,1033,1034],[678,2,2,1034,1036]]],[22,56,49,1036,1085,[[680,4,4,1036,1040],[681,2,2,1040,1042],[683,3,2,1042,1044],[684,1,1,1044,1045],[685,3,3,1045,1048],[688,1,1,1048,1049],[692,4,4,1049,1053],[700,7,7,1053,1060],[702,1,1,1060,1061],[707,1,1,1061,1062],[709,1,1,1062,1063],[714,1,1,1063,1064],[715,4,4,1064,1068],[716,2,2,1068,1070],[717,6,3,1070,1073],[722,1,1,1073,1074],[724,2,1,1074,1075],[726,1,1,1075,1076],[734,4,2,1076,1078],[736,2,2,1078,1080],[738,1,1,1080,1081],[741,1,1,1081,1082],[742,1,1,1082,1083],[744,2,2,1083,1085]]],[23,113,95,1085,1180,[[746,3,2,1085,1087],[747,3,2,1087,1089],[749,4,3,1089,1092],[751,5,5,1092,1097],[753,1,1,1097,1098],[754,1,1,1098,1099],[755,5,3,1099,1102],[756,3,3,1102,1105],[757,2,1,1105,1106],[760,2,2,1106,1108],[761,1,1,1108,1109],[762,4,3,1109,1112],[763,1,1,1112,1113],[764,3,3,1113,1116],[765,2,2,1116,1118],[766,6,6,1118,1124],[767,3,3,1124,1127],[770,9,7,1127,1134],[771,5,3,1134,1137],[772,4,4,1137,1141],[773,1,1,1141,1142],[775,5,3,1142,1145],[776,2,2,1145,1147],[777,4,3,1147,1150],[778,1,1,1150,1151],[779,7,6,1151,1157],[780,7,6,1157,1163],[781,3,3,1163,1166],[782,6,6,1166,1172],[783,1,1,1172,1173],[785,1,1,1173,1174],[787,1,1,1174,1175],[792,1,1,1175,1176],[795,1,1,1176,1177],[796,5,3,1177,1180]]],[24,1,1,1180,1181,[[798,1,1,1180,1181]]],[25,158,139,1181,1320,[[803,3,3,1181,1184],[804,10,9,1184,1193],[805,4,4,1193,1197],[806,1,1,1197,1198],[807,1,1,1198,1199],[809,8,8,1199,1207],[810,4,4,1207,1211],[811,5,4,1211,1215],[812,3,3,1215,1218],[813,10,8,1218,1226],[814,2,2,1226,1228],[815,3,3,1228,1231],[818,2,2,1231,1233],[819,7,6,1233,1239],[821,8,8,1239,1247],[823,1,1,1247,1248],[824,1,1,1248,1249],[825,2,2,1249,1251],[826,3,3,1251,1254],[829,2,2,1254,1256],[830,3,3,1256,1259],[834,4,4,1259,1263],[835,1,1,1263,1264],[836,1,1,1264,1265],[837,7,6,1265,1271],[838,2,2,1271,1273],[839,1,1,1273,1274],[840,5,5,1274,1279],[841,5,5,1279,1284],[842,14,10,1284,1294],[843,1,1,1294,1295],[844,8,7,1295,1302],[845,13,9,1302,1311],[846,7,6,1311,1317],[847,1,1,1317,1318],[848,4,1,1318,1319],[849,1,1,1319,1320]]],[26,3,1,1320,1321,[[850,3,1,1320,1321]]],[27,13,11,1321,1332,[[862,4,3,1321,1324],[866,4,3,1324,1327],[867,1,1,1327,1328],[869,1,1,1328,1329],[870,2,2,1329,1331],[872,1,1,1331,1332]]],[28,1,1,1332,1333,[[876,1,1,1332,1333]]],[29,23,20,1333,1353,[[879,1,1,1333,1334],[880,1,1,1334,1335],[881,3,2,1335,1337],[883,6,6,1337,1343],[884,7,5,1343,1348],[885,3,3,1348,1351],[887,2,2,1351,1353]]],[30,5,2,1353,1355,[[888,5,2,1353,1355]]],[32,13,12,1355,1367,[[893,2,2,1355,1357],[894,2,2,1357,1359],[895,4,3,1359,1362],[896,2,2,1362,1364],[898,2,2,1364,1366],[899,1,1,1366,1367]]],[34,2,2,1367,1369,[[904,2,2,1367,1369]]],[35,1,1,1369,1370,[[907,1,1,1369,1370]]],[36,9,8,1370,1378,[[909,6,5,1370,1375],[910,3,3,1375,1378]]],[37,30,25,1378,1403,[[911,1,1,1378,1379],[913,1,1,1379,1380],[914,1,1,1380,1381],[915,4,2,1381,1383],[916,1,1,1383,1384],[917,1,1,1384,1385],[918,5,4,1385,1389],[919,1,1,1389,1390],[920,3,2,1390,1392],[921,1,1,1392,1393],[922,7,6,1393,1399],[923,2,2,1399,1401],[924,2,2,1401,1403]]],[38,1,1,1403,1404,[[927,1,1,1403,1404]]]],[160,313,315,350,362,363,409,410,420,424,459,460,461,467,468,513,593,614,618,619,622,623,629,742,775,790,794,795,808,860,887,903,914,977,999,1009,1010,1046,1130,1151,1153,1154,1157,1158,1160,1163,1175,1179,1186,1205,1235,1246,1271,1306,1307,1308,1309,1314,1316,1325,1338,1360,1366,1374,1413,1417,1434,1510,1513,1514,1528,1601,1708,1713,1734,1819,1820,1838,1846,1862,1978,2029,2068,2121,2163,2522,2745,2983,3145,3146,3147,3148,3149,3150,3152,3153,3154,3155,3156,3157,3158,3159,3160,3162,3163,3164,3166,3207,3212,3380,3382,3498,3499,3502,3584,3585,3606,3608,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3648,3649,3660,3690,3692,3707,3712,3716,3722,3727,3745,3772,3777,3781,3783,3785,3789,3852,4066,4246,4247,4252,4258,4268,4270,4340,4393,4459,4485,4486,4491,4651,4658,4664,4830,5074,5093,5095,5137,5227,5228,5335,5432,5433,5434,5435,5459,5460,5472,5478,5491,5518,5535,5556,5557,5561,5577,5579,5641,5870,5872,5881,5884,5888,5966,5971,5973,6060,6292,6298,6378,6426,6440,6491,6531,6532,6544,6616,6669,6746,6748,6754,6755,6759,6770,6772,6773,6774,6781,6800,6820,6831,6860,6863,6870,6924,6928,6970,6975,6976,6978,6979,6980,6984,6985,6988,6992,6995,6996,7006,7008,7011,7012,7015,7019,7024,7026,7027,7039,7042,7045,7046,7047,7050,7051,7053,7062,7135,7136,7156,7201,7202,7231,7233,7236,7251,7267,7268,7270,7271,7272,7273,7275,7276,7288,7289,7290,7291,7321,7324,7353,7354,7355,7369,7409,7411,7443,7594,7643,7678,7686,7715,7717,7745,7746,7787,7788,7798,7801,7802,7803,7809,7828,7862,7867,7889,7896,7897,7966,8018,8019,8034,8053,8056,8059,8060,8082,8087,8089,8100,8110,8125,8126,8127,8131,8140,8143,8162,8167,8168,8169,8172,8176,8178,8181,8182,8185,8186,8187,8191,8193,8196,8198,8199,8205,8206,8207,8209,8228,8229,8230,8231,8236,8239,8261,8263,8267,8268,8269,8270,8272,8286,8294,8301,8303,8306,8324,8325,8337,8364,8365,8380,8387,8405,8429,8431,8434,8447,8467,8469,8472,8516,8522,8528,8531,8539,8541,8557,8581,8584,8658,8709,8770,8794,8797,8801,8803,8804,8806,8817,8818,8833,8834,8881,8883,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8908,8910,8911,8912,8913,8914,8917,8918,8923,8925,8926,8933,8934,8935,8936,8942,8946,8973,8974,8979,8982,8984,8985,8991,8995,8996,8998,9001,9002,9003,9004,9005,9012,9014,9016,9018,9023,9027,9028,9029,9033,9048,9049,9052,9054,9058,9059,9061,9066,9075,9076,9083,9084,9091,9096,9100,9126,9128,9136,9146,9167,9170,9171,9172,9174,9175,9177,9178,9182,9186,9192,9202,9203,9218,9222,9228,9230,9231,9232,9244,9245,9246,9264,9267,9276,9278,9286,9290,9292,9294,9295,9301,9315,9332,9334,9340,9344,9359,9414,9439,9451,9453,9455,9473,9480,9497,9519,9605,9635,9638,9656,9665,9671,9706,9718,9730,9732,9745,9754,9762,9763,9764,9765,9783,9796,9798,9803,9804,9814,9816,9818,9819,9820,9823,9832,9833,9834,9835,9836,9844,9845,9847,9848,9849,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9866,9868,9870,9877,9910,9930,9950,9960,9971,9977,9981,10004,10039,10062,10075,10091,10098,10103,10106,10111,10113,10115,10123,10124,10126,10132,10137,10142,10148,10149,10150,10151,10153,10154,10167,10172,10176,10177,10189,10192,10215,10231,10235,10238,10361,10406,10423,10441,10443,10452,10485,10486,10502,10537,10539,10542,10544,10558,10575,10624,10626,10628,10634,10638,10641,10642,10665,10669,10748,10749,10750,10773,10774,10775,10816,10863,10864,10867,10868,10869,10873,10875,10877,10879,10880,10886,10887,10888,10890,10951,10965,10966,10969,10970,10971,10972,10974,10975,10978,10983,10987,10994,11007,11011,11015,11019,11034,11045,11052,11083,11089,11090,11092,11097,11099,11104,11145,11146,11147,11149,11153,11155,11156,11163,11164,11166,11167,11171,11172,11180,11212,11214,11215,11216,11217,11220,11223,11230,11232,11233,11234,11235,11236,11237,11239,11240,11241,11244,11257,11262,11265,11268,11269,11275,11281,11282,11284,11287,11289,11290,11291,11292,11300,11302,11304,11306,11311,11314,11315,11316,11320,11325,11326,11327,11329,11331,11335,11336,11340,11344,11345,11347,11357,11362,11367,11368,11375,11380,11384,11411,11414,11415,11418,11446,11447,11448,11508,11511,11519,11537,11558,11577,11587,11592,11596,11615,11630,11631,11637,11641,11647,11648,11651,11652,11653,11654,11656,11659,11661,11662,11663,11665,11668,11671,11673,11674,11675,11676,11681,11682,11684,11685,11689,11690,11691,11693,11695,11698,11704,11728,11751,11753,11758,11771,11785,11788,11794,11796,11806,11807,11808,11809,11811,11816,11822,11826,11828,11842,11864,11865,11867,11870,11871,11875,11896,11912,11913,11915,11923,11928,11932,11941,11942,11943,11947,11948,11950,11963,11968,11969,11974,11987,12000,12003,12007,12010,12011,12012,12016,12018,12019,12020,12021,12023,12063,12086,12095,12105,12106,12109,12113,12173,12200,12218,12226,12230,12231,12234,12237,12246,12253,12258,12261,12268,12302,12315,12337,12343,12347,12348,12350,12355,12356,12375,12411,12423,12459,12481,12509,12581,12582,12583,12584,12585,12586,12587,12588,12599,12600,12604,12610,12661,12664,12675,12678,12680,12682,12685,12710,12711,12724,12727,12732,12733,12735,12737,12738,12740,12775,12776,12780,12797,12805,12815,12816,12818,12819,12824,12838,12879,12882,12887,12888,13018,13044,13273,13312,13345,13354,13376,13383,13499,13580,13813,13840,13933,13980,14241,14281,14289,14333,14446,14559,14607,14664,14718,14746,14864,14886,14944,15262,15263,15269,15424,15431,15493,15515,15520,15588,15627,15806,15822,15823,15840,15842,15867,15872,15952,16090,16094,16098,16122,16129,16154,16173,16177,16194,16195,16451,16488,16525,16527,16571,16581,16583,16586,16602,16639,16652,16717,16726,16773,16783,16813,16832,16834,16993,16996,17082,17106,17137,17179,17340,17398,17431,17433,17511,17526,17554,17558,17575,17642,17647,17687,17688,17690,17691,17713,17714,17746,17747,17773,17784,17795,17799,17870,17929,17930,17945,17946,18060,18067,18070,18073,18074,18075,18076,18105,18215,18252,18333,18353,18366,18383,18390,18410,18412,18414,18416,18418,18546,18589,18615,18758,18760,18787,18793,18828,18873,18896,18923,18942,18969,18991,19020,19022,19069,19073,19078,19121,19129,19130,19133,19149,19201,19202,19236,19241,19243,19255,19256,19263,19277,19341,19344,19383,19386,19387,19390,19421,19423,19424,19428,19451,19452,19455,19458,19459,19460,19467,19468,19492,19495,19518,19574,19578,19579,19581,19582,19584,19590,19612,19614,19617,19619,19621,19623,19624,19661,19718,19722,19724,19733,19765,19786,19789,19792,19816,19825,19826,19827,19828,19830,19841,19845,19847,19848,19850,19852,19854,19889,19891,19894,19902,19906,19909,19912,19917,19921,19931,19962,20006,20093,20263,20289,20293,20296,20339,20497,20498,20500,20503,20506,20507,20509,20511,20519,20526,20528,20529,20532,20533,20534,20535,20550,20574,20605,20610,20614,20615,20616,20618,20620,20621,20625,20628,20629,20631,20636,20637,20651,20652,20656,20660,20670,20682,20683,20686,20689,20690,20704,20705,20707,20713,20717,20736,20737,20742,20827,20837,20855,20864,20874,20878,20879,20880,20900,20908,20922,20925,20926,20934,20935,20939,20994,21046,21059,21077,21086,21091,21095,21181,21182,21189,21199,21204,21287,21290,21291,21300,21343,21359,21369,21376,21380,21381,21391,21396,21408,21413,21431,21460,21470,21471,21473,21477,21481,21482,21522,21524,21525,21531,21532,21533,21534,21536,21539,21540,21543,21545,21552,21567,21576,21577,21579,21582,21583,21584,21593,21603,21604,21605,21606,21610,21611,21613,21621,21629,21635,21636,21638,21647,21649,21650,21679,21680,21723,21739,22098,22100,22101,22153,22164,22166,22177,22195,22212,22216,22252,22305,22368,22387,22408,22410,22424,22426,22427,22429,22442,22448,22451,22459,22460,22461,22464,22473,22474,22480,22503,22504,22527,22528,22584,22589,22597,22602,22609,22617,22620,22621,22622,22658,22664,22670,22757,22758,22812,22842,22844,22848,22849,22854,22858,22862,22864,22894,22919,22931,22940,22947,22957,22965,22985,22989,22991,22995,23007,23019,23022,23041,23049,23052,23053,23055,23057,23058,23060,23065,23088,23089,23130]]],["household",[47,46,[[0,5,5,0,5,[[17,1,1,0,1],[30,1,1,1,2],[34,1,1,2,3],[44,1,1,3,4],[46,1,1,4,5]]],[1,2,2,5,7,[[50,1,1,5,6],[61,1,1,6,7]]],[2,1,1,7,8,[[105,1,1,7,8]]],[4,3,3,8,11,[[158,1,1,8,9],[166,1,1,9,10],[167,1,1,10,11]]],[5,4,4,11,15,[[188,1,1,11,12],[192,1,1,12,13],[193,2,2,13,15]]],[6,2,2,15,17,[[216,1,1,15,16],[228,1,1,16,17]]],[8,2,2,17,19,[[260,1,1,17,18],[262,1,1,18,19]]],[9,8,8,19,27,[[268,1,1,19,20],[272,2,2,20,22],[281,1,1,22,23],[282,1,1,23,24],[283,1,1,24,25],[285,2,2,25,27]]],[10,5,5,27,32,[[294,2,2,27,29],[295,2,2,29,31],[301,1,1,31,32]]],[11,6,6,32,38,[[319,1,1,32,33],[320,2,2,33,35],[330,2,2,35,37],[331,1,1,37,38]]],[12,1,1,38,39,[[361,1,1,38,39]]],[15,1,1,39,40,[[425,1,1,39,40]]],[19,5,4,40,44,[[654,1,1,40,41],[658,4,3,41,44]]],[22,2,2,44,46,[[714,1,1,44,45],[715,1,1,45,46]]]],[443,910,1013,1369,1432,1533,1820,3218,5108,5316,5339,5887,5974,5990,5994,6681,7018,7878,7933,8052,8168,8177,8405,8428,8472,8529,8552,8850,8851,8887,8889,9128,9716,9728,9729,10042,10061,10063,11021,12679,17196,17299,17305,17311,18352,18354]]],["households",[7,7,[[0,3,3,0,3,[[41,1,1,0,1],[44,1,1,1,2],[46,1,1,2,3]]],[3,1,1,3,4,[[134,1,1,3,4]]],[4,2,2,4,6,[[163,1,1,4,5],[164,1,1,5,6]]],[5,1,1,6,7,[[193,1,1,6,7]]]],[1285,1376,1444,4288,5214,5247,5990]]],["houses",[108,97,[[0,1,1,0,1,[[41,1,1,0,1]]],[1,16,12,1,13,[[50,1,1,1,2],[55,1,1,2,3],[57,4,3,3,6],[58,1,1,6,7],[59,3,1,7,8],[61,6,5,8,13]]],[2,3,3,13,16,[[114,3,3,13,16]]],[3,4,4,16,20,[[120,1,1,16,17],[132,1,1,17,18],[133,1,1,18,19],[148,1,1,19,20]]],[4,3,3,20,23,[[158,1,1,20,21],[160,1,1,21,22],[171,1,1,22,23]]],[6,2,2,23,25,[[228,2,2,23,25]]],[10,2,2,25,27,[[303,1,1,25,26],[310,1,1,26,27]]],[11,5,5,27,32,[[329,2,2,27,29],[335,2,2,29,31],[337,1,1,31,32]]],[12,3,3,32,35,[[352,1,1,32,33],[365,1,1,33,34],[366,1,1,34,35]]],[13,3,3,35,38,[[391,1,1,35,36],[400,1,1,36,37],[401,1,1,37,38]]],[15,6,6,38,44,[[416,1,1,38,39],[417,2,2,39,41],[419,1,1,41,42],[421,1,1,42,43],[422,1,1,43,44]]],[17,6,6,44,50,[[436,1,1,44,45],[438,1,1,45,46],[439,1,1,46,47],[456,1,1,47,48],[457,1,1,48,49],[459,1,1,49,50]]],[18,1,1,50,51,[[526,1,1,50,51]]],[19,2,2,51,53,[[628,1,1,51,52],[657,1,1,52,53]]],[20,1,1,53,54,[[660,1,1,53,54]]],[22,11,10,54,64,[[681,1,1,54,55],[683,1,1,55,56],[684,1,1,56,57],[686,1,1,57,58],[691,2,2,58,60],[700,2,1,60,61],[710,1,1,61,62],[720,1,1,62,63],[743,1,1,63,64]]],[23,17,13,64,77,[[749,2,2,64,66],[750,1,1,66,67],[763,3,1,67,68],[773,2,2,68,70],[776,1,1,70,71],[777,2,1,71,72],[779,1,1,72,73],[783,1,1,73,74],[787,2,2,74,76],[796,2,1,76,77]]],[24,1,1,77,78,[[801,1,1,77,78]]],[25,8,8,78,86,[[808,1,1,78,79],[812,1,1,79,80],[817,1,1,80,81],[824,1,1,81,82],[827,1,1,82,83],[829,1,1,83,84],[834,1,1,84,85],[846,1,1,85,86]]],[27,1,1,86,87,[[872,1,1,86,87]]],[28,1,1,87,88,[[877,1,1,87,88]]],[29,3,2,88,90,[[881,2,1,88,89],[883,1,1,89,90]]],[32,2,2,90,92,[[893,1,1,90,91],[894,1,1,91,92]]],[35,4,3,92,95,[[906,3,2,92,94],[907,1,1,94,95]]],[36,1,1,95,96,[[909,1,1,95,96]]],[37,1,1,96,97,[[924,1,1,96,97]]]],[1271,1553,1669,1723,1731,1734,1762,1783,1823,1829,1835,1839,1843,3500,3501,3502,3765,4226,4250,4736,5097,5149,5407,7007,7015,9216,9414,10012,10015,10172,10184,10231,10792,11154,11168,11709,11944,11970,12373,12385,12393,12424,12536,12583,12873,12919,12949,13364,13407,13452,14659,16413,17277,17337,17721,17748,17780,17821,17922,17927,18062,18272,18502,18918,19065,19085,19101,19420,19640,19663,19760,19779,19832,19931,20009,20010,20289,20444,20601,20658,20803,21054,21112,21183,21310,21634,22251,22320,22410,22434,22593,22597,22796,22800,22812,22844,23070]]],["inward",[7,7,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[9,1,1,2,3,[[271,1,1,2,3]]],[10,1,1,3,4,[[297,1,1,3,4]]],[13,2,2,4,6,[[369,1,1,4,5],[370,1,1,5,6]]],[25,1,1,6,7,[[841,1,1,6,7]]]],[2319,2683,8141,8959,11242,11250,21486]]],["palace",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11375]]],["place",[7,7,[[9,1,1,0,1,[[281,1,1,0,1]]],[12,1,1,1,2,[[365,1,1,1,2]]],[15,2,2,2,4,[[414,1,1,2,3],[415,1,1,3,4]]],[16,1,1,4,5,[[432,1,1,4,5]]],[17,1,1,5,6,[[443,1,1,5,6]]],[25,1,1,6,7,[[842,1,1,6,7]]]],[8406,11154,12310,12358,12815,13046,21535]]],["places",[9,9,[[1,7,7,0,7,[[74,1,1,0,1],[75,1,1,1,2],[79,1,1,2,3],[85,1,1,3,4],[86,2,2,4,6],[87,1,1,6,7]]],[19,1,1,7,8,[[635,1,1,7,8]]],[25,1,1,8,9,[[847,1,1,8,9]]]],[2222,2264,2386,2600,2618,2631,2638,16604,21679]]],["temple",[11,7,[[11,5,3,0,3,[[323,5,3,0,3]]],[12,2,2,3,5,[[343,1,1,3,4],[347,1,1,4,5]]],[13,4,2,5,7,[[389,3,1,5,6],[401,1,1,6,7]]]],[9839,9840,9842,10464,10669,11666,11986]]],["web",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13043]]],["which",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13231]]],["within",[7,7,[[0,1,1,0,1,[[38,1,1,0,1]]],[25,6,6,1,7,[[802,1,1,1,2],[841,3,3,2,5],[842,1,1,5,6],[845,1,1,6,7]]]],[1160,20491,21484,21485,21520,21535,21616]]]]},{"k":"H1005","v":[["*",[44,38,[[14,35,29,0,29,[[406,1,1,0,1],[407,12,11,1,12],[408,15,11,12,23],[409,7,6,23,29]]],[26,9,9,29,38,[[851,2,2,29,31],[852,1,1,31,32],[853,2,2,32,34],[854,3,3,34,37],[855,1,1,37,38]]]],[12134,12136,12137,12142,12143,12145,12146,12147,12148,12149,12150,12151,12152,12154,12155,12156,12158,12159,12162,12163,12166,12167,12168,12189,12190,12192,12193,12196,12197,21763,21775,21836,21841,21867,21877,21884,21897,21915]]],["house",[42,36,[[14,35,29,0,29,[[406,1,1,0,1],[407,12,11,1,12],[408,15,11,12,23],[409,7,6,23,29]]],[26,7,7,29,36,[[851,1,1,29,30],[853,2,2,30,32],[854,3,3,32,35],[855,1,1,35,36]]]],[12134,12136,12137,12142,12143,12145,12146,12147,12148,12149,12150,12151,12152,12154,12155,12156,12158,12159,12162,12163,12166,12167,12168,12189,12190,12192,12193,12196,12197,21775,21841,21867,21877,21884,21897,21915]]],["houses",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21763,21836]]]]},{"k":"H1006","v":[["Bajith",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17962]]]]},{"k":"H1007","v":[["Bethaven",[7,7,[[5,2,2,0,2,[[193,1,1,0,1],[204,1,1,1,2]]],[8,2,2,2,4,[[248,1,1,2,3],[249,1,1,3,4]]],[27,3,3,4,7,[[865,1,1,4,5],[866,1,1,5,6],[871,1,1,6,7]]]],[5978,6305,7490,7531,22148,22160,22230]]]]},{"k":"H1008","v":[["*",[71,64,[[0,12,10,0,10,[[11,2,1,0,1],[12,2,1,1,2],[27,1,1,2,3],[30,1,1,3,4],[34,6,6,4,10]]],[5,10,10,10,20,[[193,1,1,10,11],[194,3,3,11,14],[198,2,2,14,16],[202,2,2,16,18],[204,2,2,18,20]]],[6,9,8,20,28,[[211,2,2,20,22],[214,1,1,22,23],[230,3,3,23,26],[231,3,2,26,28]]],[8,4,4,28,32,[[242,1,1,28,29],[245,1,1,29,30],[248,1,1,30,31],[265,1,1,31,32]]],[10,10,8,32,40,[[302,4,3,32,35],[303,6,5,35,40]]],[11,10,9,40,49,[[314,4,3,40,43],[322,1,1,43,44],[329,1,1,44,45],[335,4,4,45,49]]],[12,1,1,49,50,[[344,1,1,49,50]]],[13,1,1,50,51,[[379,1,1,50,51]]],[14,1,1,51,52,[[404,1,1,51,52]]],[15,2,2,52,54,[[419,1,1,52,53],[423,1,1,53,54]]],[23,1,1,54,55,[[792,1,1,54,55]]],[27,2,2,55,57,[[871,1,1,55,56],[873,1,1,56,57]]],[29,7,6,57,63,[[881,1,1,57,58],[882,1,1,58,59],[883,3,2,59,61],[885,2,2,61,63]]],[37,1,1,63,64,[[917,1,1,63,64]]]],[306,321,792,886,1012,1014,1017,1019,1026,1027,5978,6011,6014,6019,6139,6146,6266,6267,6306,6315,6531,6532,6604,7072,7080,7085,7104,7121,7368,7421,7487,8005,9180,9183,9184,9185,9188,9194,9195,9216,9553,9554,9574,9822,10011,10169,10180,10182,10184,10563,11472,12055,12452,12619,20093,22240,22256,22409,22414,22428,22429,22474,22477,22964]]],["+",[7,6,[[0,1,1,0,1,[[34,1,1,0,1]]],[5,1,1,1,2,[[202,1,1,1,2]]],[6,2,1,2,3,[[231,2,1,2,3]]],[10,2,2,3,5,[[302,1,1,3,4],[303,1,1,4,5]]],[23,1,1,5,6,[[792,1,1,5,6]]]],[1027,6267,7121,9183,9195,20093]]],["Bethel",[59,55,[[0,11,9,0,9,[[11,2,1,0,1],[12,2,1,1,2],[27,1,1,2,3],[30,1,1,3,4],[34,5,5,4,9]]],[5,9,9,9,18,[[193,1,1,9,10],[194,3,3,10,13],[198,2,2,13,15],[202,1,1,15,16],[204,2,2,16,18]]],[6,3,3,18,21,[[211,2,2,18,20],[214,1,1,20,21]]],[8,4,4,21,25,[[242,1,1,21,22],[245,1,1,22,23],[248,1,1,23,24],[265,1,1,24,25]]],[10,8,8,25,33,[[302,3,3,25,28],[303,5,5,28,33]]],[11,10,9,33,42,[[314,4,3,33,36],[322,1,1,36,37],[329,1,1,37,38],[335,4,4,38,42]]],[12,1,1,42,43,[[344,1,1,42,43]]],[13,1,1,43,44,[[379,1,1,43,44]]],[14,1,1,44,45,[[404,1,1,44,45]]],[15,2,2,45,47,[[419,1,1,45,46],[423,1,1,46,47]]],[27,2,2,47,49,[[871,1,1,47,48],[873,1,1,48,49]]],[29,7,6,49,55,[[881,1,1,49,50],[882,1,1,50,51],[883,3,2,51,53],[885,2,2,53,55]]]],[306,321,792,886,1012,1014,1017,1019,1026,5978,6011,6014,6019,6139,6146,6266,6306,6315,6531,6532,6604,7368,7421,7487,8005,9180,9183,9184,9185,9188,9194,9195,9216,9553,9554,9574,9822,10011,10169,10180,10182,10184,10563,11472,12055,12452,12619,22240,22256,22409,22414,22428,22429,22474,22477]]],["God",[5,5,[[6,4,4,0,4,[[230,3,3,0,3],[231,1,1,3,4]]],[37,1,1,4,5,[[917,1,1,4,5]]]],[7072,7080,7085,7104,22964]]]]},{"k":"H1009","v":[["Betharbel",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22239]]]]},{"k":"H1010","v":[["*",[2,2,[[5,1,1,0,1,[[199,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[6171,20103]]],["Bethbaalmeon",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6171]]],["Bethmeon",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20103]]]]},{"k":"H1011","v":[["Bethbirei",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10416]]]]},{"k":"H1012","v":[["Bethbarah",[2,1,[[6,2,1,0,1,[[217,2,1,0,1]]]],[6718]]]]},{"k":"H1013","v":[["Bethgader",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10357]]]]},{"k":"H1014","v":[["Bethgamul",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20103]]]]},{"k":"H1015","v":[["Bethdiblathaim",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20102]]]]},{"k":"H1016","v":[["Bethdagon",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]]],[6243,6348]]]]},{"k":"H1017","v":[["Bethelite",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9317]]]]},{"k":"H1018","v":[["Bethezel",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22590]]]]},{"k":"H1019","v":[]},{"k":"H1020","v":[["*",[4,4,[[3,1,1,0,1,[[149,1,1,0,1]]],[5,2,2,1,3,[[198,1,1,1,2],[199,1,1,2,3]]],[25,1,1,3,4,[[826,1,1,3,4]]]],[4809,6133,6174,21092]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4809]]],["Bethjeshimoth",[3,3,[[5,2,2,0,2,[[198,1,1,0,1],[199,1,1,1,2]]],[25,1,1,2,3,[[826,1,1,2,3]]]],[6133,6174,21092]]]]},{"k":"H1021","v":[["Bethhaccerem",[2,2,[[15,1,1,0,1,[[415,1,1,0,1]]],[23,1,1,1,2,[[750,1,1,1,2]]]],[12341,19090]]]]},{"k":"H1022","v":[["Bethlehemite",[4,4,[[8,3,3,0,3,[[251,2,2,0,2],[252,1,1,2,3]]],[9,1,1,3,4,[[287,1,1,3,4]]]],[7596,7613,7676,8599]]]]},{"k":"H1023","v":[]},{"k":"H1024","v":[["Bethmarcaboth",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[12,1,1,1,2,[[341,1,1,1,2]]]],[6326,10416]]]]},{"k":"H1025","v":[["Bethemek",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6348]]]]},{"k":"H1026","v":[["Betharabah",[3,3,[[5,3,3,0,3,[[201,2,2,0,2],[204,1,1,2,3]]]],[6208,6263,6315]]]]},{"k":"H1027","v":[["Betharam",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6181]]]]},{"k":"H1028","v":[["Bethharan",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4754]]]]},{"k":"H1029","v":[["Bethshittah",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6716]]]]},{"k":"H1030","v":[["Bethshemite",[2,2,[[8,2,2,0,2,[[241,2,2,0,2]]]],[7345,7349]]]]},{"k":"H1031","v":[["*",[3,3,[[5,3,3,0,3,[[201,1,1,0,1],[204,2,2,1,3]]]],[6208,6312,6314]]],["Bethhogla",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6208]]],["Bethhoglah",[2,2,[[5,2,2,0,2,[[204,2,2,0,2]]]],[6312,6314]]]]},{"k":"H1032","v":[["Bethhoron",[14,13,[[5,7,7,0,7,[[196,2,2,0,2],[202,2,2,2,4],[204,2,2,4,6],[207,1,1,6,7]]],[8,1,1,7,8,[[248,1,1,7,8]]],[10,1,1,8,9,[[299,1,1,8,9]]],[12,2,2,9,11,[[343,1,1,9,10],[344,1,1,10,11]]],[13,3,2,11,13,[[374,2,1,11,12],[391,1,1,12,13]]]],[6074,6075,6268,6270,6306,6307,6403,7503,9068,10522,10559,11351,11717]]]]},{"k":"H1033","v":[["Bethcar",[1,1,[[8,1,1,0,1,[[242,1,1,0,1]]]],[7363]]]]},{"k":"H1034","v":[["Bethlebaoth",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6327]]]]},{"k":"H1035","v":[["*",[41,39,[[0,2,2,0,2,[[34,1,1,0,1],[47,1,1,1,2]]],[5,1,1,2,3,[[205,1,1,2,3]]],[6,9,8,3,11,[[222,2,2,3,5],[227,3,3,5,8],[229,4,3,8,11]]],[7,7,6,11,17,[[232,5,4,11,15],[233,1,1,15,16],[235,1,1,16,17]]],[8,5,5,17,22,[[251,1,1,17,18],[252,2,2,18,20],[255,2,2,20,22]]],[9,5,5,22,27,[[268,1,1,22,23],[289,4,4,23,27]]],[12,7,7,27,34,[[339,2,2,27,29],[341,1,1,29,30],[348,4,4,30,34]]],[13,1,1,34,35,[[377,1,1,34,35]]],[14,1,1,35,36,[[404,1,1,35,36]]],[15,1,1,36,37,[[419,1,1,36,37]]],[23,1,1,37,38,[[785,1,1,37,38]]],[32,1,1,38,39,[[897,1,1,38,39]]]],[1030,1458,6336,6877,6879,6987,6988,6989,7025,7026,7042,7128,7129,7146,7149,7153,7201,7599,7630,7633,7736,7758,8081,8667,8668,8669,8677,10357,10360,10389,10689,10690,10691,10699,11420,12048,12446,19974,22635]]],["+",[13,12,[[6,8,7,0,7,[[222,1,1,0,1],[227,3,3,1,4],[229,4,3,4,7]]],[7,3,3,7,10,[[232,2,2,7,9],[233,1,1,9,10]]],[8,1,1,10,11,[[252,1,1,10,11]]],[12,1,1,11,12,[[348,1,1,11,12]]]],[6877,6987,6988,6989,7025,7026,7042,7128,7129,7153,7630,10699]]],["Bethlehem",[28,27,[[0,2,2,0,2,[[34,1,1,0,1],[47,1,1,1,2]]],[5,1,1,2,3,[[205,1,1,2,3]]],[6,1,1,3,4,[[222,1,1,3,4]]],[7,4,3,4,7,[[232,3,2,4,6],[235,1,1,6,7]]],[8,4,4,7,11,[[251,1,1,7,8],[252,1,1,8,9],[255,2,2,9,11]]],[9,5,5,11,16,[[268,1,1,11,12],[289,4,4,12,16]]],[12,6,6,16,22,[[339,2,2,16,18],[341,1,1,18,19],[348,3,3,19,22]]],[13,1,1,22,23,[[377,1,1,22,23]]],[14,1,1,23,24,[[404,1,1,23,24]]],[15,1,1,24,25,[[419,1,1,24,25]]],[23,1,1,25,26,[[785,1,1,25,26]]],[32,1,1,26,27,[[897,1,1,26,27]]]],[1030,1458,6336,6879,7146,7149,7201,7599,7633,7736,7758,8081,8667,8668,8669,8677,10357,10360,10389,10689,10690,10691,11420,12048,12446,19974,22635]]]]},{"k":"H1036","v":[["Aphrah",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22589]]]]},{"k":"H1037","v":[["Millo",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6760]]]]},{"k":"H1038","v":[["Bethmaachah",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8568]]]]},{"k":"H1039","v":[["Bethnimrah",[2,2,[[3,1,1,0,1,[[148,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]]],[4754,6181]]]]},{"k":"H1040","v":[["+",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22369]]]]},{"k":"H1041","v":[["Bethazmaveth",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12448]]]]},{"k":"H1042","v":[["Bethanoth",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6261]]]]},{"k":"H1043","v":[["Bethanath",[3,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[6,2,1,1,2,[[211,2,1,1,2]]]],[6359,6542]]]]},{"k":"H1044","v":[["house",[2,2,[[11,2,2,0,2,[[322,2,2,0,2]]]],[9805,9807]]]]},{"k":"H1045","v":[]},{"k":"H1046","v":[["*",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[6229,12614]]],["Bethpalet",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6229]]],["Bethphelet",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12614]]]]},{"k":"H1047","v":[["Bethpeor",[4,4,[[4,3,3,0,3,[[155,1,1,0,1],[156,1,1,1,2],[186,1,1,2,3]]],[5,1,1,3,4,[[199,1,1,3,4]]]],[5004,5050,5845,6174]]]]},{"k":"H1048","v":[["Bethpazzez",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6342]]]]},{"k":"H1049","v":[["Bethzur",[4,4,[[5,1,1,0,1,[[201,1,1,0,1]]],[12,1,1,1,2,[[339,1,1,1,2]]],[13,1,1,2,3,[[377,1,1,2,3]]],[15,1,1,3,4,[[415,1,1,3,4]]]],[6260,10351,11421,12343]]]]},{"k":"H1050","v":[["Bethrehob",[2,2,[[6,1,1,0,1,[[228,1,1,0,1]]],[9,1,1,1,2,[[276,1,1,1,2]]]],[7021,8246]]]]},{"k":"H1051","v":[["Bethrapha",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10397]]]]},{"k":"H1052","v":[["*",[9,8,[[5,2,2,0,2,[[203,2,2,0,2]]],[6,1,1,2,3,[[211,1,1,2,3]]],[8,2,2,3,5,[[266,2,2,3,5]]],[9,1,1,5,6,[[287,1,1,5,6]]],[10,2,1,6,7,[[294,2,1,6,7]]],[12,1,1,7,8,[[344,1,1,7,8]]]],[6286,6291,6536,8019,8021,8592,8856,10564]]],["+",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8856]]],["Bethshan",[3,3,[[8,2,2,0,2,[[266,2,2,0,2]]],[9,1,1,2,3,[[287,1,1,2,3]]]],[8019,8021,8592]]],["Bethshean",[5,5,[[5,2,2,0,2,[[203,2,2,0,2]]],[6,1,1,2,3,[[211,1,1,2,3]]],[10,1,1,3,4,[[294,1,1,3,4]]],[12,1,1,4,5,[[344,1,1,4,5]]]],[6286,6291,6536,8856,10564]]]]},{"k":"H1053","v":[["Bethshemesh",[21,19,[[5,4,4,0,4,[[201,1,1,0,1],[205,2,2,1,3],[207,1,1,3,4]]],[6,2,1,4,5,[[211,2,1,4,5]]],[8,7,6,5,11,[[241,7,6,5,11]]],[10,1,1,11,12,[[294,1,1,11,12]]],[11,2,2,12,14,[[326,2,2,12,14]]],[12,1,1,14,15,[[343,1,1,14,15]]],[13,3,3,15,18,[[391,2,2,15,17],[394,1,1,17,18]]],[23,1,1,18,19,[[787,1,1,18,19]]]],[6212,6343,6359,6397,6542,7340,7343,7344,7346,7350,7351,8853,9907,9909,10513,11725,11727,11782,20010]]]]},{"k":"H1054","v":[["Bethtappuah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6255]]]]},{"k":"H1055","v":[["*",[3,3,[[16,3,3,0,3,[[426,1,1,0,1],[432,2,2,1,3]]]],[12707,12814,12815]]],["+",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12815]]],["palace",[2,2,[[16,2,2,0,2,[[426,1,1,0,1],[432,1,1,1,2]]]],[12707,12814]]]]},{"k":"H1056","v":[["Baca",[1,1,[[18,1,1,0,1,[[561,1,1,0,1]]]],[15265]]]]},{"k":"H1057","v":[["trees",[4,4,[[9,2,2,0,2,[[271,2,2,0,2]]],[12,2,2,2,4,[[351,2,2,2,4]]]],[8155,8156,10788,10789]]]]},{"k":"H1058","v":[["*",[114,100,[[0,16,14,0,14,[[20,1,1,0,1],[22,1,1,1,2],[26,1,1,2,3],[28,1,1,3,4],[32,1,1,4,5],[36,1,1,5,6],[41,1,1,6,7],[42,2,1,7,8],[44,3,2,8,10],[45,1,1,10,11],[49,3,3,11,14]]],[1,1,1,14,15,[[51,1,1,14,15]]],[2,1,1,15,16,[[99,1,1,15,16]]],[3,8,8,16,24,[[127,5,5,16,21],[130,1,1,21,22],[136,1,1,22,23],[141,1,1,23,24]]],[4,3,3,24,27,[[153,1,1,24,25],[173,1,1,25,26],[186,1,1,26,27]]],[6,8,8,27,35,[[212,1,1,27,28],[221,2,2,28,30],[224,2,2,30,32],[230,2,2,32,34],[231,1,1,34,35]]],[7,2,2,35,37,[[232,2,2,35,37]]],[8,10,8,37,45,[[236,4,3,37,40],[246,2,2,40,42],[255,1,1,42,43],[259,1,1,43,44],[265,2,1,44,45]]],[9,15,12,45,57,[[267,2,2,45,47],[269,4,3,47,50],[278,2,2,50,52],[279,2,1,52,53],[281,3,2,53,55],[284,1,1,55,56],[285,1,1,56,57]]],[11,5,5,57,62,[[320,2,2,57,59],[325,1,1,59,60],[332,1,1,60,61],[334,1,1,61,62]]],[13,1,1,62,63,[[400,1,1,62,63]]],[14,3,2,63,65,[[405,1,1,63,64],[412,2,1,64,65]]],[15,3,2,65,67,[[413,1,1,65,66],[420,2,1,66,67]]],[16,1,1,67,68,[[433,1,1,67,68]]],[17,5,5,68,73,[[437,1,1,68,69],[462,1,1,69,70],[465,2,2,70,72],[466,1,1,72,73]]],[18,4,4,73,77,[[546,1,1,73,74],[555,1,1,74,75],[603,1,1,75,76],[614,1,1,76,77]]],[20,1,1,77,78,[[661,1,1,77,78]]],[22,5,4,78,82,[[694,1,1,78,79],[708,2,1,79,80],[711,1,1,80,81],[716,1,1,81,82]]],[23,9,7,82,89,[[753,1,1,82,83],[757,1,1,83,84],[766,3,1,84,85],[775,1,1,85,86],[785,1,1,86,87],[792,1,1,87,88],[794,1,1,88,89]]],[24,3,2,89,91,[[797,3,2,89,91]]],[25,4,4,91,95,[[809,1,1,91,92],[825,2,2,92,94],[828,1,1,94,95]]],[27,1,1,95,96,[[873,1,1,95,96]]],[28,2,2,96,98,[[876,1,1,96,97],[877,1,1,97,98]]],[32,2,1,98,99,[[893,2,1,98,99]]],[37,1,1,99,100,[[917,1,1,99,100]]]],[529,573,765,806,964,1118,1276,1320,1372,1373,1415,1507,1509,1523,1560,2983,4028,4034,4037,4042,4044,4109,4340,4477,4937,5460,5847,6549,6866,6867,6925,6926,7077,7080,7104,7136,7141,7219,7220,7222,7449,7450,7771,7855,7982,8034,8046,8097,8113,8115,8307,8308,8353,8412,8419,8511,8512,9738,9739,9885,10101,10164,11960,12109,12253,12300,12502,12820,12903,13496,13582,13588,13626,14945,15177,16121,16223,17363,17978,18236,18286,18393,19176,19283,19464,19706,19963,20112,20170,20312,20326,20618,21072,21079,21152,22256,22296,22328,22589,22965]]],["+",[14,9,[[2,1,1,0,1,[[99,1,1,0,1]]],[4,1,1,1,2,[[173,1,1,1,2]]],[6,2,2,2,4,[[221,2,2,2,4]]],[8,2,1,4,5,[[236,2,1,4,5]]],[22,2,1,5,6,[[708,2,1,5,6]]],[23,2,1,6,7,[[766,2,1,6,7]]],[24,2,1,7,8,[[797,2,1,7,8]]],[32,2,1,8,9,[[893,2,1,8,9]]]],[2983,5460,6866,6867,7222,18236,19464,20312,22589]]],["Weep",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19464]]],["bewail",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17978]]],["complain",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13626]]],["lamentation",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15177]]],["mourned",[2,2,[[0,1,1,0,1,[[49,1,1,0,1]]],[3,1,1,1,2,[[136,1,1,1,2]]]],[1509,4340]]],["tears",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12820]]],["weep",[25,25,[[0,2,2,0,2,[[22,1,1,0,1],[42,1,1,1,2]]],[3,2,2,2,4,[[127,2,2,2,4]]],[8,2,2,4,6,[[246,1,1,4,5],[265,1,1,5,6]]],[9,2,2,6,8,[[267,1,1,6,7],[278,1,1,7,8]]],[13,1,1,8,9,[[400,1,1,8,9]]],[15,1,1,9,10,[[420,1,1,9,10]]],[17,3,3,10,13,[[462,1,1,10,11],[465,2,2,11,13]]],[20,1,1,13,14,[[661,1,1,13,14]]],[22,1,1,14,15,[[711,1,1,14,15]]],[23,3,3,15,18,[[753,1,1,15,16],[757,1,1,16,17],[792,1,1,17,18]]],[24,1,1,18,19,[[797,1,1,18,19]]],[25,3,3,19,22,[[825,2,2,19,21],[828,1,1,21,22]]],[28,2,2,22,24,[[876,1,1,22,23],[877,1,1,23,24]]],[37,1,1,24,25,[[917,1,1,24,25]]]],[573,1320,4034,4037,7450,7982,8046,8307,11960,12502,13496,13582,13588,17363,18286,19176,19283,20112,20326,21072,21079,21152,22296,22328,22965]]],["weepest",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7220]]],["weepeth",[3,3,[[9,1,1,0,1,[[285,1,1,0,1]]],[11,1,1,1,2,[[320,1,1,1,2]]],[18,1,1,2,3,[[603,1,1,2,3]]]],[8512,9739,16121]]],["weeping",[8,8,[[3,1,1,0,1,[[141,1,1,0,1]]],[9,2,2,1,3,[[269,1,1,1,2],[281,1,1,2,3]]],[14,1,1,3,4,[[412,1,1,3,4]]],[23,3,3,4,7,[[775,1,1,4,5],[785,1,1,5,6],[794,1,1,6,7]]],[25,1,1,7,8,[[809,1,1,7,8]]]],[4477,8097,8419,12253,19706,19963,20170,20618]]],["wept",[56,53,[[0,13,12,0,12,[[20,1,1,0,1],[26,1,1,1,2],[28,1,1,2,3],[32,1,1,3,4],[36,1,1,4,5],[41,1,1,5,6],[42,1,1,6,7],[44,3,2,7,9],[45,1,1,9,10],[49,2,2,10,12]]],[1,1,1,12,13,[[51,1,1,12,13]]],[3,4,4,13,17,[[127,3,3,13,16],[130,1,1,16,17]]],[4,2,2,17,19,[[153,1,1,17,18],[186,1,1,18,19]]],[6,6,6,19,25,[[212,1,1,19,20],[224,2,2,20,22],[230,2,2,22,24],[231,1,1,24,25]]],[7,2,2,25,27,[[232,2,2,25,27]]],[8,5,5,27,32,[[236,1,1,27,28],[246,1,1,28,29],[255,1,1,29,30],[259,1,1,30,31],[265,1,1,31,32]]],[9,10,8,32,40,[[267,1,1,32,33],[269,3,2,33,35],[278,1,1,35,36],[279,2,1,36,37],[281,2,2,37,39],[284,1,1,39,40]]],[11,4,4,40,44,[[320,1,1,40,41],[325,1,1,41,42],[332,1,1,42,43],[334,1,1,43,44]]],[14,2,2,44,46,[[405,1,1,44,45],[412,1,1,45,46]]],[15,2,2,46,48,[[413,1,1,46,47],[420,1,1,47,48]]],[17,1,1,48,49,[[437,1,1,48,49]]],[18,2,2,49,51,[[546,1,1,49,50],[614,1,1,50,51]]],[22,1,1,51,52,[[716,1,1,51,52]]],[27,1,1,52,53,[[873,1,1,52,53]]]],[529,765,806,964,1118,1276,1320,1372,1373,1415,1507,1523,1560,4028,4042,4044,4109,4937,5847,6549,6925,6926,7077,7080,7104,7136,7141,7219,7449,7771,7855,7982,8034,8113,8115,8308,8353,8412,8419,8511,9738,9885,10101,10164,12109,12253,12300,12502,12903,14945,16223,18393,22256]]]]},{"k":"H1059","v":[["+",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12253]]]]},{"k":"H1060","v":[["*",[117,96,[[0,15,15,0,15,[[9,1,1,0,1],[21,1,1,1,2],[24,1,1,2,3],[26,2,2,3,5],[34,1,1,5,6],[35,1,1,6,7],[37,2,2,7,9],[40,1,1,9,10],[42,1,1,10,11],[45,1,1,11,12],[47,2,2,12,14],[48,1,1,14,15]]],[1,20,11,15,26,[[53,2,2,15,17],[55,1,1,17,18],[60,4,1,18,19],[61,5,2,19,21],[62,6,3,21,24],[71,1,1,24,25],[83,1,1,25,26]]],[2,1,1,26,27,[[116,1,1,26,27]]],[3,25,18,27,45,[[117,1,1,27,28],[119,13,10,28,38],[124,4,3,38,41],[134,5,2,41,43],[142,1,1,43,44],[149,1,1,44,45]]],[4,8,6,45,51,[[167,3,1,45,46],[173,3,3,46,49],[177,1,1,49,50],[185,1,1,50,51]]],[5,3,2,51,53,[[192,1,1,51,52],[203,2,1,52,53]]],[6,1,1,53,54,[[218,1,1,53,54]]],[8,2,2,54,56,[[243,1,1,54,55],[252,1,1,55,56]]],[9,1,1,56,57,[[269,1,1,56,57]]],[10,1,1,57,58,[[306,1,1,57,58]]],[11,1,1,58,59,[[315,1,1,58,59]]],[12,25,23,59,82,[[338,2,2,59,61],[339,7,6,61,67],[340,2,2,67,69],[341,1,1,69,70],[342,3,2,70,72],[343,1,1,72,73],[345,3,3,73,76],[346,3,3,76,79],[363,3,3,79,82]]],[13,1,1,82,83,[[387,1,1,82,83]]],[15,1,1,83,84,[[422,1,1,83,84]]],[17,3,3,84,87,[[436,2,2,84,86],[453,1,1,86,87]]],[18,5,5,87,92,[[555,1,1,87,88],[566,1,1,88,89],[582,1,1,89,90],[612,1,1,90,91],[613,1,1,91,92]]],[22,1,1,92,93,[[692,1,1,92,93]]],[23,1,1,93,94,[[775,1,1,93,94]]],[32,1,1,94,95,[[898,1,1,94,95]]],[37,1,1,95,96,[[922,1,1,95,96]]]],[249,568,671,746,759,1034,1055,1125,1126,1246,1323,1394,1465,1469,1476,1623,1624,1669,1811,1828,1845,1869,1880,1882,2142,2516,3596,3624,3694,3704,3705,3732,3733,3734,3735,3737,3738,3742,3955,3956,3957,4272,4274,4494,4764,5338,5462,5463,5464,5553,5827,5975,6276,6739,7371,7631,8083,9317,9603,10265,10281,10309,10319,10331,10333,10348,10356,10362,10376,10389,10429,10431,10482,10576,10605,10614,10620,10646,10651,11079,11081,11087,11627,12585,12882,12887,13289,15164,15353,15642,16183,16206,17958,19700,22655,23055]]],["+",[6,6,[[1,3,3,0,3,[[60,1,1,0,1],[61,1,1,1,2],[62,1,1,2,3]]],[3,2,2,3,5,[[119,1,1,3,4],[149,1,1,4,5]]],[12,1,1,5,6,[[339,1,1,5,6]]]],[1811,1845,1882,3738,4764,10319]]],["eldest",[3,3,[[11,1,1,0,1,[[315,1,1,0,1]]],[17,2,2,1,3,[[436,2,2,1,3]]]],[9603,12882,12887]]],["firstborn",[96,84,[[0,15,15,0,15,[[9,1,1,0,1],[21,1,1,1,2],[24,1,1,2,3],[26,2,2,3,5],[34,1,1,5,6],[35,1,1,6,7],[37,2,2,7,9],[40,1,1,9,10],[42,1,1,10,11],[45,1,1,11,12],[47,2,2,12,14],[48,1,1,14,15]]],[1,17,11,15,26,[[53,2,2,15,17],[55,1,1,17,18],[60,3,1,18,19],[61,4,2,19,21],[62,5,3,21,24],[71,1,1,24,25],[83,1,1,25,26]]],[3,16,13,26,39,[[119,11,9,26,35],[124,4,3,35,38],[134,1,1,38,39]]],[4,4,4,39,43,[[173,3,3,39,42],[177,1,1,42,43]]],[5,3,2,43,45,[[192,1,1,43,44],[203,2,1,44,45]]],[6,1,1,45,46,[[218,1,1,45,46]]],[8,2,2,46,48,[[243,1,1,46,47],[252,1,1,47,48]]],[9,1,1,48,49,[[269,1,1,48,49]]],[10,1,1,49,50,[[306,1,1,49,50]]],[12,24,22,50,72,[[338,2,2,50,52],[339,6,5,52,57],[340,2,2,57,59],[341,1,1,59,60],[342,3,2,60,62],[343,1,1,62,63],[345,3,3,63,66],[346,3,3,66,69],[363,3,3,69,72]]],[13,1,1,72,73,[[387,1,1,72,73]]],[15,1,1,73,74,[[422,1,1,73,74]]],[17,1,1,74,75,[[453,1,1,74,75]]],[18,5,5,75,80,[[555,1,1,75,76],[566,1,1,76,77],[582,1,1,77,78],[612,1,1,78,79],[613,1,1,79,80]]],[22,1,1,80,81,[[692,1,1,80,81]]],[23,1,1,81,82,[[775,1,1,81,82]]],[32,1,1,82,83,[[898,1,1,82,83]]],[37,1,1,83,84,[[922,1,1,83,84]]]],[249,568,671,746,759,1034,1055,1125,1126,1246,1323,1394,1465,1469,1476,1623,1624,1669,1811,1828,1845,1869,1880,1882,2142,2516,3694,3704,3705,3732,3733,3734,3735,3737,3742,3955,3956,3957,4272,5462,5463,5464,5553,5975,6276,6739,7371,7631,8083,9317,10265,10281,10309,10331,10333,10348,10356,10362,10376,10389,10429,10431,10482,10576,10605,10614,10620,10646,10651,11079,11081,11087,11627,12585,13289,15164,15353,15642,16183,16206,17958,19700,22655,23055]]],["firstling",[9,5,[[2,1,1,0,1,[[116,1,1,0,1]]],[3,4,2,1,3,[[134,4,2,1,3]]],[4,4,2,3,5,[[167,3,1,3,4],[185,1,1,4,5]]]],[3596,4272,4274,5338,5827]]],["firstlings",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3733]]],["son",[2,2,[[3,2,2,0,2,[[117,1,1,0,1],[142,1,1,1,2]]]],[3624,4494]]]]},{"k":"H1061","v":[["*",[18,16,[[1,4,4,0,4,[[72,2,2,0,2],[83,2,2,2,4]]],[2,4,3,4,7,[[91,2,1,4,5],[112,2,2,5,7]]],[3,3,3,7,10,[[129,1,1,7,8],[134,1,1,8,9],[144,1,1,9,10]]],[11,1,1,10,11,[[316,1,1,10,11]]],[15,3,2,11,13,[[422,2,1,11,12],[425,1,1,12,13]]],[22,1,1,13,14,[[706,1,1,13,14]]],[25,1,1,14,15,[[845,1,1,14,15]]],[33,1,1,15,16,[[902,1,1,15,16]]]],[2160,2163,2518,2522,2776,3419,3422,4095,4270,4603,9645,12584,12702,18168,21629,22724]]],["figs",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22724]]],["firstfruits",[14,12,[[1,4,4,0,4,[[72,2,2,0,2],[83,2,2,2,4]]],[2,4,3,4,7,[[91,2,1,4,5],[112,2,2,5,7]]],[3,1,1,7,8,[[144,1,1,7,8]]],[11,1,1,8,9,[[316,1,1,8,9]]],[15,3,2,9,11,[[422,2,1,9,10],[425,1,1,10,11]]],[25,1,1,11,12,[[845,1,1,11,12]]]],[2160,2163,2518,2522,2776,3419,3422,4603,9645,12584,12702,21629]]],["firstripe",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4095]]],["fruit",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18168]]],["ripe",[1,1,[[3,1,1,0,1,[[134,1,1,0,1]]]],[4270]]]]},{"k":"H1062","v":[["*",[15,14,[[0,7,7,0,7,[[3,1,1,0,1],[24,4,4,1,5],[26,1,1,5,6],[42,1,1,6,7]]],[4,4,4,7,11,[[164,2,2,7,9],[166,1,1,9,10],[173,1,1,10,11]]],[12,3,2,11,13,[[342,3,2,11,13]]],[15,1,1,13,14,[[422,1,1,13,14]]]],[83,689,690,691,692,763,1323,5246,5257,5313,5464,10429,10430,12585]]],["+",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[83]]],["birthright",[9,8,[[0,6,6,0,6,[[24,4,4,0,4],[26,1,1,4,5],[42,1,1,5,6]]],[12,3,2,6,8,[[342,3,2,6,8]]]],[689,690,691,692,763,1323,10429,10430]]],["firstborn",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5464]]],["firstlings",[4,4,[[4,3,3,0,3,[[164,2,2,0,2],[166,1,1,2,3]]],[15,1,1,3,4,[[422,1,1,3,4]]]],[5246,5257,5313,12585]]]]},{"k":"H1063","v":[["*",[2,2,[[27,1,1,0,1,[[870,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]]],[22218,22665]]],["firstripe",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22218]]],["fruit",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22665]]]]},{"k":"H1064","v":[["Bechorath",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7392]]]]},{"k":"H1065","v":[["*",[29,28,[[0,1,1,0,1,[[44,1,1,0,1]]],[4,1,1,1,2,[[186,1,1,1,2]]],[6,1,1,2,3,[[231,1,1,2,3]]],[11,1,1,3,4,[[332,1,1,3,4]]],[14,1,1,4,5,[[405,1,1,4,5]]],[16,1,1,5,6,[[429,1,1,5,6]]],[17,2,2,6,8,[[451,1,1,6,7],[463,1,1,7,8]]],[18,3,3,8,11,[[483,1,1,8,9],[507,1,1,9,10],[579,1,1,10,11]]],[22,8,8,11,19,[[693,3,3,11,14],[694,1,1,14,15],[700,2,2,15,17],[716,1,1,17,18],[743,1,1,18,19]]],[23,8,7,19,26,[[747,1,1,19,20],[753,1,1,20,21],[775,3,3,21,24],[792,3,2,24,26]]],[28,1,1,26,27,[[877,1,1,26,27]]],[38,1,1,27,28,[[926,1,1,27,28]]]],[1360,5847,7104,10101,12110,12765,13254,13515,13993,14324,15530,17962,17963,17965,17978,18056,18064,18393,18916,19023,19185,19700,19706,19707,20085,20112,22323,23116]]],["+",[9,8,[[0,1,1,0,1,[[44,1,1,0,1]]],[6,1,1,1,2,[[231,1,1,1,2]]],[11,1,1,2,3,[[332,1,1,2,3]]],[17,1,1,3,4,[[463,1,1,3,4]]],[22,1,1,4,5,[[716,1,1,4,5]]],[23,4,3,5,8,[[775,1,1,5,6],[792,3,2,6,8]]]],[1360,7104,10101,13515,18393,19707,20085,20112]]],["weep",[2,2,[[22,2,2,0,2,[[693,1,1,0,1],[700,1,1,1,2]]]],[17962,18056]]],["weeping",[18,18,[[4,1,1,0,1,[[186,1,1,0,1]]],[14,1,1,1,2,[[405,1,1,1,2]]],[16,1,1,2,3,[[429,1,1,2,3]]],[17,1,1,3,4,[[451,1,1,3,4]]],[18,3,3,4,7,[[483,1,1,4,5],[507,1,1,5,6],[579,1,1,6,7]]],[22,5,5,7,12,[[693,2,2,7,9],[694,1,1,9,10],[700,1,1,10,11],[743,1,1,11,12]]],[23,4,4,12,16,[[747,1,1,12,13],[753,1,1,13,14],[775,2,2,14,16]]],[28,1,1,16,17,[[877,1,1,16,17]]],[38,1,1,17,18,[[926,1,1,17,18]]]],[5847,12110,12765,13254,13993,14324,15530,17963,17965,17978,18064,18916,19023,19185,19700,19706,22323,23116]]]]},{"k":"H1066","v":[["Bochim",[2,2,[[6,2,2,0,2,[[212,2,2,0,2]]]],[6546,6550]]]]},{"k":"H1067","v":[["firstborn",[6,6,[[0,5,5,0,5,[[18,4,4,0,4],[28,1,1,4,5]]],[8,1,1,5,6,[[249,1,1,5,6]]]],[488,490,491,494,821,7557]]]]},{"k":"H1068","v":[["mourning",[1,1,[[0,1,1,0,1,[[49,1,1,0,1]]]],[1510]]]]},{"k":"H1069","v":[["*",[5,4,[[2,1,1,0,1,[[116,1,1,0,1]]],[4,2,1,1,2,[[173,2,1,1,2]]],[23,1,1,2,3,[[748,1,1,2,3]]],[25,1,1,3,4,[[848,1,1,3,4]]]],[3596,5463,19058,21691]]],["+",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5463]]],["child",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19058]]],["firstborn",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5463]]],["firstling",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3596]]],["fruit",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21691]]]]},{"k":"H1070","v":[["dromedaries",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18827]]]]},{"k":"H1071","v":[["Becher",[5,4,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[12,3,2,2,4,[[344,3,2,2,4]]]],[1407,4524,10541,10543]]]]},{"k":"H1072","v":[["dromedary",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18988]]]]},{"k":"H1073","v":[["ripe",[1,1,[[23,1,1,0,1,[[768,1,1,0,1]]]],[19526]]]]},{"k":"H1074","v":[["Bocheru",[2,2,[[12,2,2,0,2,[[345,1,1,0,1],[346,1,1,1,2]]]],[10613,10659]]]]},{"k":"H1075","v":[["Bichri",[8,8,[[9,8,8,0,8,[[286,8,8,0,8]]]],[8555,8556,8560,8561,8564,8567,8575,8576]]]]},{"k":"H1076","v":[["Bachrites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4524]]]]},{"k":"H1077","v":[["*",[69,55,[[12,1,1,0,1,[[353,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[18,31,28,2,30,[[487,5,5,2,7],[493,4,3,7,10],[494,3,2,10,12],[498,3,3,12,15],[507,1,1,15,16],[509,1,1,16,17],[523,1,1,17,18],[526,1,1,18,19],[535,1,1,19,20],[555,1,1,20,21],[570,1,1,21,22],[573,1,1,22,23],[581,3,2,23,25],[596,1,1,25,26],[617,2,2,26,28],[618,1,1,28,29],[624,1,1,29,30]]],[19,10,9,30,39,[[636,1,1,30,31],[637,1,1,31,32],[639,1,1,32,33],[641,1,1,33,34],[646,1,1,34,35],[649,1,1,35,36],[650,3,2,36,38],[651,1,1,38,39]]],[22,24,14,39,53,[[692,1,1,39,40],[704,7,4,40,44],[711,7,4,44,48],[713,1,1,48,49],[718,3,1,49,50],[721,1,1,50,51],[722,4,2,51,53]]],[27,2,2,53,55,[[868,1,1,53,54],[870,1,1,54,55]]]],[10850,13911,14045,14047,14052,14056,14059,14094,14096,14100,14106,14108,14193,14198,14202,14325,14364,14619,14660,14787,15157,15427,15475,15576,15580,16019,16273,16274,16280,16371,16651,16686,16722,16779,16948,17044,17051,17079,17102,17949,18140,18141,18144,18148,18299,18300,18302,18303,18329,18444,18522,18541,18542,22180,22224]]],["+",[5,5,[[18,3,3,0,3,[[487,1,1,0,1],[507,1,1,1,2],[581,1,1,2,3]]],[19,2,2,3,5,[[636,1,1,3,4],[637,1,1,4,5]]]],[14052,14325,15580,16651,16686]]],["cannot",[2,2,[[17,1,1,0,1,[[476,1,1,0,1]]],[18,1,1,1,2,[[570,1,1,1,2]]]],[13911,15427]]],["lest",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14364]]],["neither",[2,2,[[22,2,2,0,2,[[704,1,1,0,1],[711,1,1,1,2]]]],[18148,18299]]],["no",[3,3,[[18,1,1,0,1,[[487,1,1,0,1]]],[22,1,1,1,2,[[711,1,1,1,2]]],[27,1,1,2,3,[[870,1,1,2,3]]]],[14059,18300,22224]]],["none",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14056]]],["nor",[3,3,[[18,1,1,0,1,[[493,1,1,0,1]]],[22,2,2,1,3,[[713,1,1,1,2],[722,1,1,2,3]]]],[14096,18329,18542]]],["not",[51,43,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,22,22,1,23,[[487,2,2,1,3],[493,3,3,3,6],[494,2,2,6,8],[498,3,3,8,11],[523,1,1,11,12],[526,1,1,12,13],[535,1,1,13,14],[555,1,1,14,15],[573,1,1,15,16],[581,2,2,16,18],[596,1,1,18,19],[617,2,2,19,21],[618,1,1,21,22],[624,1,1,22,23]]],[19,8,7,23,30,[[639,1,1,23,24],[641,1,1,24,25],[646,1,1,25,26],[649,1,1,26,27],[650,3,2,27,29],[651,1,1,29,30]]],[22,19,12,30,42,[[692,1,1,30,31],[704,6,4,31,35],[711,5,3,35,38],[718,3,1,38,39],[721,1,1,39,40],[722,3,2,40,42]]],[27,1,1,42,43,[[868,1,1,42,43]]]],[10850,14045,14047,14094,14096,14100,14106,14108,14193,14198,14202,14619,14660,14787,15157,15475,15576,15580,16019,16273,16274,16280,16371,16722,16779,16948,17044,17051,17079,17102,17949,18140,18141,18144,18148,18299,18302,18303,18444,18522,18541,18542,22180]]],["nothing",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14106]]]]},{"k":"H1078","v":[["Bel",[3,3,[[22,1,1,0,1,[[724,1,1,0,1]]],[23,2,2,1,3,[[794,1,1,1,2],[795,1,1,2,3]]]],[18587,20168,20256]]]]},{"k":"H1079","v":[["heart",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21919]]]]},{"k":"H1080","v":[["out",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21958]]]]},{"k":"H1081","v":[["Baladan",[2,2,[[11,1,1,0,1,[[332,1,1,0,1]]],[22,1,1,1,2,[[717,1,1,1,2]]]],[10110,18413]]]]},{"k":"H1082","v":[["*",[4,4,[[17,2,2,0,2,[[444,1,1,0,1],[445,1,1,1,2]]],[18,1,1,2,3,[[516,1,1,2,3]]],[29,1,1,3,4,[[883,1,1,3,4]]]],[13078,13106,14525,22432]]],["comfort",[2,2,[[17,2,2,0,2,[[444,1,1,0,1],[445,1,1,1,2]]]],[13078,13106]]],["strength",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14525]]],["strengtheneth",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22432]]]]},{"k":"H1083","v":[["Bilgah",[3,3,[[12,1,1,0,1,[[361,1,1,0,1]]],[15,2,2,1,3,[[424,2,2,1,3]]]],[11029,12629,12642]]]]},{"k":"H1084","v":[["Bilgai",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12557]]]]},{"k":"H1085","v":[["Bildad",[5,5,[[17,5,5,0,5,[[437,1,1,0,1],[443,1,1,1,2],[453,1,1,2,3],[460,1,1,3,4],[477,1,1,4,5]]]],[12902,13030,13277,13462,13931]]]]},{"k":"H1086","v":[["*",[15,14,[[0,1,1,0,1,[[17,1,1,0,1]]],[4,3,2,1,3,[[160,1,1,1,2],[181,2,1,2,3]]],[5,1,1,3,4,[[195,1,1,3,4]]],[12,1,1,4,5,[[354,1,1,4,5]]],[15,1,1,5,6,[[421,1,1,5,6]]],[17,1,1,6,7,[[448,1,1,6,7]]],[18,3,3,7,10,[[509,1,1,7,8],[526,1,1,8,9],[579,1,1,9,10]]],[22,3,3,10,13,[[728,1,1,10,11],[729,1,1,11,12],[743,1,1,12,13]]],[24,1,1,13,14,[[799,1,1,13,14]]]],[436,5141,5684,6050,10872,12532,13181,14358,14662,15547,18671,18679,18919,20358]]],["+",[2,2,[[4,1,1,0,1,[[160,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]]],[5141,12532]]],["consume",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14662]]],["consumeth",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13181]]],["enjoy",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18919]]],["old",[9,8,[[0,1,1,0,1,[[17,1,1,0,1]]],[4,2,1,1,2,[[181,2,1,1,2]]],[5,1,1,2,3,[[195,1,1,2,3]]],[18,2,2,3,5,[[509,1,1,3,4],[579,1,1,4,5]]],[22,2,2,5,7,[[728,1,1,5,6],[729,1,1,6,7]]],[24,1,1,7,8,[[799,1,1,7,8]]]],[436,5684,6050,14358,15547,18671,18679,20358]]],["waste",[1,1,[[12,1,1,0,1,[[354,1,1,0,1]]]],[10872]]]]},{"k":"H1087","v":[["old",[5,3,[[5,4,2,0,2,[[195,4,2,0,2]]],[25,1,1,2,3,[[824,1,1,2,3]]]],[6041,6042,21050]]]]},{"k":"H1088","v":[["Balah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6324]]]]},{"k":"H1089","v":[["troubled",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12114]]]]},{"k":"H1090","v":[["Bilhah",[11,11,[[0,9,9,0,9,[[28,1,1,0,1],[29,4,4,1,5],[34,2,2,5,7],[36,1,1,7,8],[45,1,1,8,9]]],[12,2,2,9,11,[[341,1,1,9,10],[344,1,1,10,11]]]],[824,833,834,835,837,1033,1036,1085,1411,10414,10548]]]]},{"k":"H1091","v":[["*",[10,10,[[17,5,5,0,5,[[453,2,2,0,2],[459,1,1,2,3],[462,1,1,3,4],[465,1,1,4,5]]],[18,1,1,5,6,[[550,1,1,5,6]]],[22,1,1,6,7,[[695,1,1,6,7]]],[25,3,3,7,10,[[827,1,1,7,8],[828,1,1,8,9],[829,1,1,9,10]]]],[13287,13290,13453,13501,13572,15039,17997,21121,21157,21176]]],["Terrors",[3,3,[[17,3,3,0,3,[[453,1,1,0,1],[462,1,1,1,2],[465,1,1,2,3]]]],[13287,13501,13572]]],["terror",[3,3,[[25,3,3,0,3,[[827,1,1,0,1],[828,1,1,1,2],[829,1,1,2,3]]]],[21121,21157,21176]]],["terrors",[3,3,[[17,2,2,0,2,[[453,1,1,0,1],[459,1,1,1,2]]],[18,1,1,2,3,[[550,1,1,2,3]]]],[13290,13453,15039]]],["trouble",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17997]]]]},{"k":"H1092","v":[["Bilhan",[4,3,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,3,2,1,3,[[338,1,1,1,2],[344,2,1,2,3]]]],[1067,10294,10545]]]]},{"k":"H1093","v":[["tribute",[3,3,[[14,3,3,0,3,[[406,2,2,0,2],[409,1,1,2,3]]]],[12123,12130,12197]]]]},{"k":"H1094","v":[["old",[3,2,[[23,3,2,0,2,[[782,3,2,0,2]]]],[19906,19907]]]]},{"k":"H1095","v":[["Belteshazzar",[2,2,[[26,2,2,0,2,[[850,1,1,0,1],[859,1,1,1,2]]]],[21744,22016]]]]},{"k":"H1096","v":[["Belteshazzar",[8,6,[[26,8,6,0,6,[[851,1,1,0,1],[853,6,4,1,5],[854,1,1,5,6]]]],[21784,21845,21846,21855,21856,21886]]]]},{"k":"H1097","v":[["*",[57,56,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[4,4,4,2,6,[[156,1,1,2,3],[161,1,1,3,4],[171,1,1,4,5],[180,1,1,5,6]]],[5,2,2,6,8,[[206,2,2,6,8]]],[9,1,1,8,9,[[267,1,1,8,9]]],[11,3,3,9,12,[[313,3,3,9,12]]],[17,21,21,12,33,[[439,2,2,12,14],[441,1,1,14,15],[443,1,1,15,16],[453,1,1,16,17],[459,3,3,17,20],[465,1,1,20,21],[466,2,2,21,23],[468,1,1,23,24],[469,1,1,24,25],[470,1,1,25,26],[471,1,1,26,27],[473,2,2,27,29],[474,1,1,29,30],[476,2,2,30,32],[477,1,1,32,33]]],[18,4,4,33,37,[[496,1,1,33,34],[536,1,1,34,35],[540,1,1,35,36],[549,1,1,36,37]]],[20,1,1,37,38,[[661,1,1,37,38]]],[22,6,6,38,44,[[683,2,2,38,40],[692,1,1,40,41],[706,1,1,41,42],[710,1,1,42,43],[716,1,1,43,44]]],[23,4,4,44,48,[[746,1,1,44,45],[753,3,3,45,48]]],[24,1,1,48,49,[[797,1,1,48,49]]],[25,2,2,49,51,[[815,1,1,49,50],[835,1,1,50,51]]],[27,3,3,51,54,[[865,1,1,51,52],[868,1,1,52,53],[869,1,1,53,54]]],[35,2,1,54,55,[[908,2,1,54,55]]],[38,1,1,55,56,[[927,1,1,55,56]]]],[893,1900,5046,5185,5410,5666,6375,6377,8043,9536,9539,9549,12941,12950,12984,13040,13291,13443,13444,13446,13565,13607,13627,13659,13689,13736,13748,13795,13834,13850,13914,13921,13925,14171,14794,14840,15007,17370,17752,17753,17934,18172,18269,18407,18980,19185,19186,19187,20314,20746,21318,22139,22186,22201,22826,23130]]],["+",[30,29,[[1,1,1,0,1,[[63,1,1,0,1]]],[4,4,4,1,5,[[156,1,1,1,2],[161,1,1,2,3],[171,1,1,3,4],[180,1,1,4,5]]],[5,2,2,5,7,[[206,2,2,5,7]]],[11,3,3,7,10,[[313,3,3,7,10]]],[17,8,8,10,18,[[439,2,2,10,12],[441,1,1,12,13],[453,1,1,13,14],[459,2,2,14,16],[465,1,1,16,17],[466,1,1,17,18]]],[20,1,1,18,19,[[661,1,1,18,19]]],[22,1,1,19,20,[[683,1,1,19,20]]],[23,4,4,20,24,[[746,1,1,20,21],[753,3,3,21,24]]],[24,1,1,24,25,[[797,1,1,24,25]]],[25,2,2,25,27,[[815,1,1,25,26],[835,1,1,26,27]]],[27,1,1,27,28,[[865,1,1,27,28]]],[35,2,1,28,29,[[908,2,1,28,29]]]],[1900,5046,5185,5410,5666,6375,6377,9536,9539,9549,12941,12950,12984,13291,13443,13444,13565,13607,17370,17752,18980,19185,19186,19187,20314,20746,21318,22139,22826]]],["cannot",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13914]]],["corruption",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18407]]],["endureth",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15007]]],["lack",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13834]]],["no",[3,3,[[18,1,1,0,1,[[540,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]],[27,1,1,2,3,[[869,1,1,2,3]]]],[14840,18172,22201]]],["none",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17934]]],["not",[6,6,[[0,1,1,0,1,[[30,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]],[18,1,1,2,3,[[496,1,1,2,3]]],[22,1,1,3,4,[[710,1,1,3,4]]],[27,1,1,4,5,[[868,1,1,4,5]]],[38,1,1,5,6,[[927,1,1,5,6]]]],[893,8043,14171,18269,22186,23130]]],["without",[13,13,[[17,11,11,0,11,[[443,1,1,0,1],[459,1,1,1,2],[466,1,1,2,3],[468,1,1,3,4],[469,1,1,4,5],[470,1,1,5,6],[471,1,1,6,7],[473,1,1,7,8],[474,1,1,8,9],[476,1,1,9,10],[477,1,1,10,11]]],[18,1,1,11,12,[[536,1,1,11,12]]],[22,1,1,12,13,[[683,1,1,12,13]]]],[13040,13446,13627,13659,13689,13736,13748,13795,13850,13921,13925,14794,17753]]]]},{"k":"H1098","v":[["*",[3,3,[[17,2,2,0,2,[[441,1,1,0,1],[459,1,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]]],[12983,13442,18241]]],["corn",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13442]]],["fodder",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12983]]],["provender",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18241]]]]},{"k":"H1099","v":[["nothing",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13474]]]]},{"k":"H1100","v":[["*",[27,26,[[4,2,2,0,2,[[165,1,1,0,1],[167,1,1,1,2]]],[6,2,2,2,4,[[229,1,1,2,3],[230,1,1,3,4]]],[8,6,6,4,10,[[236,1,1,4,5],[237,1,1,5,6],[245,1,1,6,7],[260,2,2,7,9],[265,1,1,9,10]]],[9,4,4,10,14,[[282,1,1,10,11],[286,1,1,11,12],[288,1,1,12,13],[289,1,1,13,14]]],[10,3,2,14,16,[[311,3,2,14,16]]],[13,1,1,16,17,[[379,1,1,16,17]]],[17,1,1,17,18,[[469,1,1,17,18]]],[18,3,3,18,21,[[495,1,1,18,19],[518,1,1,19,20],[578,1,1,20,21]]],[19,3,3,21,24,[[633,1,1,21,22],[643,1,1,22,23],[646,1,1,23,24]]],[33,2,2,24,26,[[900,2,2,24,26]]]],[5285,5328,7046,7067,7228,7252,7445,7878,7886,8000,8433,8555,8607,8659,9461,9464,11460,13701,14122,14550,15516,16552,16867,16953,22695,22699]]],["+",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7228]]],["Belial",[15,14,[[4,1,1,0,1,[[165,1,1,0,1]]],[6,2,2,1,3,[[229,1,1,1,2],[230,1,1,2,3]]],[8,5,5,3,8,[[237,1,1,3,4],[245,1,1,4,5],[260,2,2,5,7],[265,1,1,7,8]]],[9,3,3,8,11,[[282,1,1,8,9],[286,1,1,9,10],[289,1,1,10,11]]],[10,3,2,11,13,[[311,3,2,11,13]]],[13,1,1,13,14,[[379,1,1,13,14]]]],[5285,7046,7067,7252,7445,7878,7886,8000,8433,8555,8659,9461,9464,11460]]],["evil",[1,1,[[18,1,1,0,1,[[518,1,1,0,1]]]],[14550]]],["men",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14122]]],["naughty",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16552]]],["ungodly",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[19,2,2,1,3,[[643,1,1,1,2],[646,1,1,2,3]]]],[8607,16867,16953]]],["wicked",[5,5,[[4,1,1,0,1,[[167,1,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[18,1,1,2,3,[[578,1,1,2,3]]],[33,2,2,3,5,[[900,2,2,3,5]]]],[5328,13701,15516,22695,22699]]]]},{"k":"H1101","v":[["*",[43,41,[[0,2,2,0,2,[[10,2,2,0,2]]],[1,2,2,2,4,[[78,2,2,2,4]]],[2,9,8,4,12,[[91,2,2,4,6],[96,3,2,6,8],[98,1,1,8,9],[103,2,2,9,11],[112,1,1,11,12]]],[3,27,26,12,38,[[122,1,1,12,13],[123,12,12,13,25],[124,1,1,25,26],[131,3,3,26,29],[144,7,6,29,35],[145,3,3,35,38]]],[6,1,1,38,39,[[229,1,1,38,39]]],[18,1,1,39,40,[[569,1,1,39,40]]],[27,1,1,40,41,[[868,1,1,40,41]]]],[273,275,2338,2376,2766,2767,2889,2891,2957,3121,3132,3415,3838,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3947,4157,4159,4162,4582,4586,4589,4590,4597,4605,4611,4617,4622,7045,15421,22186]]],["anointed",[1,1,[[18,1,1,0,1,[[569,1,1,0,1]]]],[15421]]],["confound",[2,2,[[0,2,2,0,2,[[10,2,2,0,2]]]],[273,275]]],["himself",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22186]]],["mingled",[37,35,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,9,8,1,9,[[91,2,2,1,3],[96,3,2,3,5],[98,1,1,5,6],[103,2,2,6,8],[112,1,1,8,9]]],[3,27,26,9,35,[[122,1,1,9,10],[123,12,12,10,22],[124,1,1,22,23],[131,3,3,23,26],[144,7,6,26,32],[145,3,3,32,35]]]],[2376,2766,2767,2889,2891,2957,3121,3132,3415,3838,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3947,4157,4159,4162,4582,4586,4589,4590,4597,4605,4611,4617,4622]]],["provender",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7045]]],["tempered",[1,1,[[1,1,1,0,1,[[78,1,1,0,1]]]],[2338]]]]},{"k":"H1102","v":[["in",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14364]]]]},{"k":"H1103","v":[["gatherer",[1,1,[[29,1,1,0,1,[[885,1,1,0,1]]]],[22478]]]]},{"k":"H1104","v":[["*",[49,48,[[0,2,2,0,2,[[40,2,2,0,2]]],[1,2,2,2,4,[[56,1,1,2,3],[64,1,1,3,4]]],[3,5,5,4,9,[[120,1,1,4,5],[132,3,3,5,8],[142,1,1,8,9]]],[4,1,1,9,10,[[163,1,1,9,10]]],[9,3,3,10,13,[[283,1,1,10,11],[286,2,2,11,13]]],[17,7,7,13,20,[[437,1,1,13,14],[442,1,1,14,15],[443,1,1,15,16],[445,1,1,16,17],[455,2,2,17,19],[472,1,1,19,20]]],[18,7,7,20,27,[[498,1,1,20,21],[512,1,1,21,22],[532,1,1,22,23],[546,1,1,23,24],[583,1,1,24,25],[584,1,1,25,26],[601,1,1,26,27]]],[19,3,3,27,30,[[628,1,1,27,28],[646,1,1,28,29],[648,1,1,29,30]]],[20,1,1,30,31,[[668,1,1,30,31]]],[22,8,8,31,39,[[681,1,1,31,32],[687,1,1,32,33],[697,1,1,33,34],[703,2,2,34,36],[706,2,2,36,38],[727,1,1,38,39]]],[23,1,1,39,40,[[795,1,1,39,40]]],[24,5,4,40,44,[[798,5,4,40,44]]],[27,2,2,44,46,[[869,2,2,44,46]]],[31,1,1,46,47,[[889,1,1,46,47]]],[34,1,1,47,48,[[903,1,1,47,48]]]],[1202,1219,1697,1932,3763,4224,4226,4228,4499,5214,8465,8573,8574,12894,13027,13047,13094,13341,13344,13789,14200,14435,14741,14950,15668,15726,16105,16412,16953,17004,17505,17719,17845,18007,18125,18126,18168,18171,18655,20246,20334,20337,20340,20348,22201,22202,22548,22744]]],["+",[10,10,[[0,2,2,0,2,[[40,2,2,0,2]]],[1,1,1,2,3,[[56,1,1,2,3]]],[3,3,3,3,6,[[132,2,2,3,5],[142,1,1,5,6]]],[18,1,1,6,7,[[584,1,1,6,7]]],[24,2,2,7,9,[[798,2,2,7,9]]],[31,1,1,9,10,[[889,1,1,9,10]]]],[1202,1219,1697,4224,4226,4499,15726,20334,20340,22548]]],["Destroy",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14741]]],["covered",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3763]]],["destroy",[6,6,[[17,3,3,0,3,[[437,1,1,0,1],[443,1,1,1,2],[445,1,1,2,3]]],[22,3,3,3,6,[[681,1,1,3,4],[697,1,1,4,5],[703,1,1,5,6]]]],[12894,13047,13094,17719,18007,18125]]],["destroyed",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17845]]],["devoureth",[2,2,[[19,1,1,0,1,[[646,1,1,0,1]]],[34,1,1,1,2,[[903,1,1,1,2]]]],[16953,22744]]],["down",[3,3,[[17,3,3,0,3,[[442,1,1,0,1],[455,2,2,1,3]]]],[13027,13341,13344]]],["swallowed",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1932]]],["up",[24,23,[[3,1,1,0,1,[[132,1,1,0,1]]],[4,1,1,1,2,[[163,1,1,1,2]]],[9,3,3,2,5,[[283,1,1,2,3],[286,2,2,3,5]]],[17,1,1,5,6,[[472,1,1,5,6]]],[18,5,5,6,11,[[498,1,1,6,7],[512,1,1,7,8],[546,1,1,8,9],[583,1,1,9,10],[601,1,1,10,11]]],[19,2,2,11,13,[[628,1,1,11,12],[648,1,1,12,13]]],[20,1,1,13,14,[[668,1,1,13,14]]],[22,4,4,14,18,[[703,1,1,14,15],[706,2,2,15,17],[727,1,1,17,18]]],[23,1,1,18,19,[[795,1,1,18,19]]],[24,3,2,19,21,[[798,3,2,19,21]]],[27,2,2,21,23,[[869,2,2,21,23]]]],[4228,5214,8465,8573,8574,13789,14200,14435,14950,15668,16105,16412,17004,17505,18126,18168,18171,18655,20246,20337,20348,22201,22202]]]]},{"k":"H1105","v":[["*",[2,2,[[18,1,1,0,1,[[529,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[14714,20256]]],["devouring",[1,1,[[18,1,1,0,1,[[529,1,1,0,1]]]],[14714]]],["up",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20256]]]]},{"k":"H1106","v":[["*",[14,14,[[0,5,5,0,5,[[13,2,2,0,2],[35,2,2,2,4],[45,1,1,4,5]]],[3,2,2,5,7,[[142,2,2,5,7]]],[12,7,7,7,14,[[338,2,2,7,9],[342,1,1,9,10],[344,2,2,10,12],[345,2,2,12,14]]]],[338,344,1072,1073,1407,4527,4529,10295,10296,10436,10541,10542,10576,10578]]],["Bela",[13,13,[[0,4,4,0,4,[[13,2,2,0,2],[35,2,2,2,4]]],[3,2,2,4,6,[[142,2,2,4,6]]],[12,7,7,6,13,[[338,2,2,6,8],[342,1,1,8,9],[344,2,2,9,11],[345,2,2,11,13]]]],[338,344,1072,1073,4527,4529,10295,10296,10436,10541,10542,10576,10578]]],["Belah",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1407]]]]},{"k":"H1107","v":[["*",[17,16,[[0,3,3,0,3,[[13,1,1,0,1],[40,2,2,1,3]]],[3,1,1,3,4,[[121,1,1,3,4]]],[5,1,1,4,5,[[208,1,1,4,5]]],[9,2,1,5,6,[[288,2,1,5,6]]],[11,1,1,6,7,[[330,1,1,6,7]]],[17,1,1,7,8,[[469,1,1,7,8]]],[18,1,1,8,9,[[495,1,1,8,9]]],[22,6,6,9,15,[[714,1,1,9,10],[721,1,1,10,11],[722,2,2,11,13],[723,2,2,13,15]]],[23,1,1,15,16,[[788,1,1,15,16]]]],[360,1211,1239,3812,6445,8634,10049,13715,14149,18340,18516,18539,18541,18567,18582,20029]]],["+",[12,11,[[3,1,1,0,1,[[121,1,1,0,1]]],[5,1,1,1,2,[[208,1,1,1,2]]],[9,2,1,2,3,[[288,2,1,2,3]]],[11,1,1,3,4,[[330,1,1,3,4]]],[18,1,1,4,5,[[495,1,1,4,5]]],[22,5,5,5,10,[[714,1,1,5,6],[721,1,1,6,7],[722,2,2,7,9],[723,1,1,9,10]]],[23,1,1,10,11,[[788,1,1,10,11]]]],[3812,6445,8634,10049,14149,18340,18516,18539,18541,18582,20029]]],["Save",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[360]]],["beside",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18567]]],["in",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1211]]],["not",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13715]]],["without",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1239]]]]},{"k":"H1108","v":[["Belaites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4527]]]]},{"k":"H1109","v":[["*",[61,57,[[3,53,49,0,49,[[138,29,27,0,27],[139,14,13,27,40],[140,8,7,40,47],[147,2,2,47,49]]],[4,2,2,49,51,[[175,2,2,49,51]]],[5,3,3,51,54,[[199,1,1,51,52],[210,2,2,52,54]]],[12,1,1,54,55,[[343,1,1,54,55]]],[15,1,1,55,56,[[425,1,1,55,56]]],[32,1,1,56,57,[[898,1,1,56,57]]]],[4380,4382,4383,4384,4385,4387,4388,4389,4391,4393,4395,4396,4398,4400,4402,4403,4404,4405,4406,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4427,4432,4441,4442,4443,4444,4445,4446,4447,4448,4449,4456,4458,4461,4471,4672,4680,5504,5505,6176,6485,6486,10524,12673,22653]]],["Balaam",[57,54,[[3,50,47,0,47,[[138,27,26,0,26],[139,13,12,26,38],[140,8,7,38,45],[147,2,2,45,47]]],[4,2,2,47,49,[[175,2,2,47,49]]],[5,3,3,49,52,[[199,1,1,49,50],[210,2,2,50,52]]],[15,1,1,52,53,[[425,1,1,52,53]]],[32,1,1,53,54,[[898,1,1,53,54]]]],[4380,4382,4383,4384,4385,4387,4388,4389,4391,4393,4395,4396,4398,4402,4403,4404,4405,4406,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4427,4432,4441,4442,4443,4444,4445,4446,4447,4448,4449,4456,4458,4461,4471,4672,4680,5504,5505,6176,6485,6486,12673,22653]]],["Balaam's",[3,3,[[3,3,3,0,3,[[138,2,2,0,2],[139,1,1,2,3]]]],[4400,4402,4421]]],["Bileam",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10524]]]]},{"k":"H1110","v":[["waste",[2,2,[[22,1,1,0,1,[[702,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[18096,22709]]]]},{"k":"H1111","v":[["*",[43,40,[[3,40,37,0,37,[[138,17,16,0,16],[139,18,17,16,33],[140,5,4,33,37]]],[5,1,1,37,38,[[210,1,1,37,38]]],[6,1,1,38,39,[[221,1,1,38,39]]],[32,1,1,39,40,[[898,1,1,39,40]]]],[4377,4379,4382,4385,4388,4389,4390,4391,4393,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4421,4423,4427,4429,4431,4432,4433,4434,4441,4442,4443,4444,4445,4446,4456,4458,4459,4471,6485,6854,22653]]],["+",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6854]]],["Balak",[41,39,[[3,39,37,0,37,[[138,17,16,0,16],[139,18,17,16,33],[140,4,4,33,37]]],[5,1,1,37,38,[[210,1,1,37,38]]],[32,1,1,38,39,[[898,1,1,38,39]]]],[4377,4379,4382,4385,4388,4389,4390,4391,4393,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4421,4423,4427,4429,4431,4432,4433,4434,4441,4442,4443,4444,4445,4446,4456,4458,4459,4471,6485,22653]]],["Balak's",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4456]]]]},{"k":"H1112","v":[["Belshazzar",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21962]]]]},{"k":"H1113","v":[["Belshazzar",[7,7,[[26,7,7,0,7,[[854,6,6,0,6],[856,1,1,6,7]]]],[21875,21876,21883,21896,21903,21904,21934]]]]},{"k":"H1114","v":[["Bilshan",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12029,12427]]]]},{"k":"H1115","v":[["*",[109,104,[[0,8,8,0,8,[[2,1,1,0,1],[3,1,1,1,2],[18,1,1,2,3],[20,1,1,3,4],[37,1,1,4,5],[42,2,2,5,7],[46,1,1,7,8]]],[1,5,5,8,13,[[57,2,2,8,10],[58,1,1,10,11],[69,1,1,11,12],[71,1,1,12,13]]],[2,3,3,13,16,[[107,1,1,13,14],[109,1,1,14,15],[115,1,1,15,16]]],[3,6,6,16,22,[[125,1,1,16,17],[127,1,1,17,18],[130,1,1,18,19],[137,1,1,19,20],[148,2,2,20,22]]],[4,8,6,22,28,[[155,1,1,22,23],[156,2,1,23,24],[160,1,1,24,25],[164,1,1,25,26],[169,3,2,26,28]]],[5,8,8,28,36,[[191,1,1,28,29],[194,1,1,29,30],[196,1,1,30,31],[197,3,3,31,34],[209,2,2,34,36]]],[6,4,4,36,40,[[212,1,1,36,37],[217,1,1,37,38],[218,1,1,38,39],[231,1,1,39,40]]],[7,2,2,40,42,[[233,1,1,40,41],[234,1,1,41,42]]],[8,2,2,42,44,[[237,1,1,42,43],[255,1,1,43,44]]],[9,2,2,44,46,[[280,2,2,44,46]]],[10,3,3,46,49,[[296,1,1,46,47],[301,1,1,47,48],[305,1,1,48,49]]],[11,5,4,49,53,[[322,1,1,49,50],[324,2,1,50,51],[329,1,1,51,52],[335,1,1,52,53]]],[12,1,1,53,54,[[341,1,1,53,54]]],[13,1,1,54,55,[[382,1,1,54,55]]],[17,2,2,55,57,[[449,1,1,55,56],[477,1,1,56,57]]],[22,5,5,57,62,[[688,1,1,57,58],[692,1,1,58,59],[722,1,1,59,60],[726,1,1,60,61],[743,1,1,61,62]]],[23,25,23,62,85,[[751,1,1,62,63],[760,1,1,63,64],[761,5,3,64,67],[762,1,1,67,68],[763,1,1,68,69],[767,1,1,69,70],[770,1,1,70,71],[771,1,1,71,72],[776,1,1,72,73],[777,1,1,73,74],[778,2,2,74,76],[779,3,3,76,79],[780,1,1,79,80],[782,1,1,80,81],[786,1,1,81,82],[788,2,2,82,84],[795,1,1,84,85]]],[25,14,14,85,99,[[804,1,1,85,86],[814,2,2,86,88],[817,1,1,88,89],[818,1,1,89,90],[821,4,4,90,94],[823,1,1,94,95],[825,1,1,95,96],[830,1,1,96,97],[834,1,1,97,98],[847,1,1,98,99]]],[26,2,2,99,101,[[858,1,1,99,100],[860,1,1,100,101]]],[27,1,1,101,102,[[874,1,1,101,102]]],[29,2,2,102,104,[[881,2,2,102,104]]]],[66,94,478,539,1128,1293,1295,1438,1732,1739,1759,2071,2133,3281,3322,3539,3972,4030,4124,4375,4727,4730,4978,5025,5148,5263,5376,5384,5940,6024,6097,6115,6126,6127,6466,6467,6568,6708,6720,7109,7158,7182,7242,7756,8363,8369,8902,9118,9266,9804,9858,9998,10175,10395,11510,13193,13930,17854,17934,18543,18623,18905,19127,19348,19380,19381,19384,19394,19422,19498,19596,19614,19771,19795,19810,19811,19831,19832,19837,19867,19921,19988,20015,20017,20274,20523,20711,20730,20790,20839,20904,20909,20910,20917,21006,21064,21198,21295,21675,21999,22054,22270,22398,22399]]],["+",[14,14,[[0,1,1,0,1,[[46,1,1,0,1]]],[2,1,1,1,2,[[107,1,1,1,2]]],[3,2,2,2,4,[[127,1,1,2,3],[130,1,1,3,4]]],[4,1,1,4,5,[[169,1,1,4,5]]],[6,1,1,5,6,[[217,1,1,5,6]]],[22,2,2,6,8,[[692,1,1,6,7],[726,1,1,7,8]]],[23,3,3,8,11,[[761,1,1,8,9],[767,1,1,9,10],[778,1,1,10,11]]],[25,2,2,11,13,[[817,1,1,11,12],[847,1,1,12,13]]],[29,1,1,13,14,[[881,1,1,13,14]]]],[1438,3281,4030,4124,5384,6708,17934,18623,19381,19498,19810,20790,21675,22398]]],["Nor",[1,1,[[23,1,1,0,1,[[779,1,1,0,1]]]],[19832]]],["Save",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4730]]],["Without",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17854]]],["beside",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[27,1,1,1,2,[[874,1,1,1,2]]]],[7242,22270]]],["but",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[539]]],["cannot",[1,1,[[23,1,1,0,1,[[751,1,1,0,1]]]],[19127]]],["except",[2,2,[[0,2,2,0,2,[[42,2,2,0,2]]]],[1293,1295]]],["lest",[3,3,[[0,2,2,0,2,[[3,1,1,0,1],[37,1,1,1,2]]],[17,1,1,2,3,[[477,1,1,2,3]]]],[94,1128,13930]]],["more",[2,2,[[17,1,1,0,1,[[449,1,1,0,1]]],[25,1,1,1,2,[[830,1,1,1,2]]]],[13193,21198]]],["neither",[2,2,[[11,1,1,0,1,[[324,1,1,0,1]]],[23,1,1,1,2,[[786,1,1,1,2]]]],[9858,19988]]],["no",[7,7,[[1,1,1,0,1,[[57,1,1,0,1]]],[5,1,1,1,2,[[197,1,1,1,2]]],[11,2,2,2,4,[[324,1,1,2,3],[335,1,1,3,4]]],[23,3,3,4,7,[[761,1,1,4,5],[779,1,1,5,6],[788,1,1,6,7]]]],[1732,6127,9858,10175,19381,19831,20015]]],["none",[10,10,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,1,1,1,2,[[155,1,1,1,2]]],[5,3,3,2,5,[[194,1,1,2,3],[196,1,1,3,4],[197,1,1,4,5]]],[11,1,1,5,6,[[322,1,1,5,6]]],[13,1,1,6,7,[[382,1,1,6,7]]],[23,3,3,7,10,[[778,1,1,7,8],[788,1,1,8,9],[795,1,1,9,10]]]],[4375,4978,6024,6097,6115,9804,11510,19811,20017,20274]]],["nor",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19380]]],["not",[53,52,[[0,2,2,0,2,[[2,1,1,0,1],[18,1,1,1,2]]],[1,3,3,2,5,[[57,1,1,2,3],[58,1,1,3,4],[69,1,1,4,5]]],[2,2,2,5,7,[[109,1,1,5,6],[115,1,1,6,7]]],[3,2,2,7,9,[[125,1,1,7,8],[148,1,1,8,9]]],[4,6,5,9,14,[[156,2,1,9,10],[160,1,1,10,11],[164,1,1,11,12],[169,2,2,12,14]]],[5,3,3,14,17,[[191,1,1,14,15],[209,2,2,15,17]]],[6,2,2,17,19,[[218,1,1,17,18],[231,1,1,18,19]]],[7,2,2,19,21,[[233,1,1,19,20],[234,1,1,20,21]]],[8,1,1,21,22,[[255,1,1,21,22]]],[9,2,2,22,24,[[280,2,2,22,24]]],[10,3,3,24,27,[[296,1,1,24,25],[301,1,1,25,26],[305,1,1,26,27]]],[11,1,1,27,28,[[329,1,1,27,28]]],[12,1,1,28,29,[[341,1,1,28,29]]],[22,1,1,29,30,[[743,1,1,29,30]]],[23,12,12,30,42,[[760,1,1,30,31],[761,2,2,31,33],[762,1,1,33,34],[763,1,1,34,35],[770,1,1,35,36],[771,1,1,36,37],[776,1,1,37,38],[777,1,1,38,39],[779,1,1,39,40],[780,1,1,40,41],[782,1,1,41,42]]],[25,9,9,42,51,[[804,1,1,42,43],[814,1,1,43,44],[818,1,1,44,45],[821,4,4,45,49],[823,1,1,49,50],[825,1,1,50,51]]],[26,1,1,51,52,[[858,1,1,51,52]]]],[66,478,1739,1759,2071,3322,3539,3972,4727,5025,5148,5263,5376,5384,5940,6466,6467,6720,7109,7158,7182,7756,8363,8369,8902,9118,9266,9998,10395,18905,19348,19380,19384,19394,19422,19596,19614,19771,19795,19837,19867,19921,20523,20730,20839,20904,20909,20910,20917,21006,21064,21999]]],["nothing",[3,3,[[22,1,1,0,1,[[722,1,1,0,1]]],[25,1,1,1,2,[[814,1,1,1,2]]],[29,1,1,2,3,[[881,1,1,2,3]]]],[18543,20711,22399]]],["save",[2,2,[[1,1,1,0,1,[[71,1,1,0,1]]],[5,1,1,1,2,[[197,1,1,1,2]]]],[2133,6126]]],["without",[3,3,[[6,1,1,0,1,[[212,1,1,0,1]]],[25,1,1,1,2,[[834,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[6568,21295,22054]]]]},{"k":"H1116","v":[["*",[103,93,[[2,1,1,0,1,[[115,1,1,0,1]]],[3,3,3,1,4,[[137,1,1,1,2],[138,1,1,2,3],[149,1,1,3,4]]],[4,2,2,4,6,[[184,1,1,4,5],[185,1,1,5,6]]],[8,7,7,6,13,[[244,5,5,6,11],[245,2,2,11,13]]],[9,3,3,13,16,[[267,2,2,13,15],[288,1,1,15,16]]],[10,14,12,16,28,[[293,3,3,16,19],[301,1,1,19,20],[302,2,2,20,22],[303,4,3,22,25],[304,1,1,25,26],[305,1,1,26,27],[312,2,1,27,28]]],[11,27,19,28,47,[[324,2,1,28,29],[326,2,1,29,30],[327,4,2,30,32],[328,1,1,32,33],[329,5,4,33,37],[330,2,2,37,39],[333,1,1,39,40],[335,10,7,40,47]]],[12,2,2,47,49,[[353,1,1,47,48],[358,1,1,48,49]]],[13,17,17,49,66,[[367,2,2,49,51],[377,1,1,51,52],[380,2,2,52,54],[381,1,1,54,55],[383,1,1,55,56],[386,1,1,56,57],[387,1,1,57,58],[394,2,2,58,60],[397,1,1,60,61],[398,1,1,61,62],[399,3,3,62,65],[400,1,1,65,66]]],[17,1,1,66,67,[[444,1,1,66,67]]],[18,2,2,67,69,[[495,1,1,67,68],[555,1,1,68,69]]],[22,5,5,69,74,[[692,1,1,69,70],[693,1,1,70,71],[694,1,1,71,72],[714,1,1,72,73],[736,1,1,73,74]]],[23,6,6,74,80,[[751,1,1,74,75],[761,1,1,75,76],[763,1,1,76,77],[770,1,1,77,78],[776,1,1,78,79],[792,1,1,79,80]]],[25,6,6,80,86,[[807,2,2,80,82],[817,1,1,82,83],[821,1,1,83,84],[837,1,1,84,85],[844,1,1,85,86]]],[27,1,1,86,87,[[871,1,1,86,87]]],[29,2,2,87,89,[[882,1,1,87,88],[885,1,1,88,89]]],[32,3,3,89,92,[[893,2,2,89,91],[895,1,1,91,92]]],[34,1,1,92,93,[[905,1,1,92,93]]]],[3554,4368,4416,4812,5771,5839,7403,7404,7405,7410,7416,7423,7431,8041,8047,8636,8818,8819,8820,9115,9182,9183,9186,9216,9217,9241,9263,9523,9853,9900,9929,9960,9967,9992,9994,10012,10015,10028,10046,10122,10170,10173,10174,10178,10180,10184,10185,10859,10963,11197,11207,11429,11478,11480,11507,11529,11620,11635,11768,11789,11855,11887,11911,11925,11927,11936,13059,14151,15171,17942,17962,17981,18337,18800,19150,19360,19412,19590,19766,20115,20566,20569,20778,20924,21361,21579,22233,22423,22473,22582,22584,22620,22787]]],["+",[2,2,[[8,2,2,0,2,[[244,1,1,0,1],[245,1,1,1,2]]]],[7416,7423]]],["heights",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17942]]],["place",[16,14,[[8,5,5,0,5,[[244,4,4,0,4],[245,1,1,4,5]]],[10,2,2,5,7,[[293,1,1,5,6],[301,1,1,6,7]]],[11,3,1,7,8,[[335,3,1,7,8]]],[12,2,2,8,10,[[353,1,1,8,9],[358,1,1,9,10]]],[13,2,2,10,12,[[367,2,2,10,12]]],[22,1,1,12,13,[[694,1,1,12,13]]],[25,1,1,13,14,[[821,1,1,13,14]]]],[7403,7404,7405,7410,7431,8820,9115,10180,10859,10963,11197,11207,17981,20924]]],["places",[83,75,[[2,1,1,0,1,[[115,1,1,0,1]]],[3,3,3,1,4,[[137,1,1,1,2],[138,1,1,2,3],[149,1,1,3,4]]],[4,2,2,4,6,[[184,1,1,4,5],[185,1,1,5,6]]],[9,3,3,6,9,[[267,2,2,6,8],[288,1,1,8,9]]],[10,12,10,9,19,[[293,2,2,9,11],[302,2,2,11,13],[303,4,3,13,16],[304,1,1,16,17],[305,1,1,17,18],[312,2,1,18,19]]],[11,24,18,19,37,[[324,2,1,19,20],[326,2,1,20,21],[327,4,2,21,23],[328,1,1,23,24],[329,5,4,24,28],[330,2,2,28,30],[333,1,1,30,31],[335,7,6,31,37]]],[13,15,15,37,52,[[377,1,1,37,38],[380,2,2,38,40],[381,1,1,40,41],[383,1,1,41,42],[386,1,1,42,43],[387,1,1,43,44],[394,2,2,44,46],[397,1,1,46,47],[398,1,1,47,48],[399,3,3,48,51],[400,1,1,51,52]]],[18,2,2,52,54,[[495,1,1,52,53],[555,1,1,53,54]]],[22,3,3,54,57,[[693,1,1,54,55],[714,1,1,55,56],[736,1,1,56,57]]],[23,6,6,57,63,[[751,1,1,57,58],[761,1,1,58,59],[763,1,1,59,60],[770,1,1,60,61],[776,1,1,61,62],[792,1,1,62,63]]],[25,5,5,63,68,[[807,2,2,63,65],[817,1,1,65,66],[837,1,1,66,67],[844,1,1,67,68]]],[27,1,1,68,69,[[871,1,1,68,69]]],[29,2,2,69,71,[[882,1,1,69,70],[885,1,1,70,71]]],[32,3,3,71,74,[[893,2,2,71,73],[895,1,1,73,74]]],[34,1,1,74,75,[[905,1,1,74,75]]]],[3554,4368,4416,4812,5771,5839,8041,8047,8636,8818,8819,9182,9183,9186,9216,9217,9241,9263,9523,9853,9900,9929,9960,9967,9992,9994,10012,10015,10028,10046,10122,10170,10173,10174,10178,10184,10185,11429,11478,11480,11507,11529,11620,11635,11768,11789,11855,11887,11911,11925,11927,11936,14151,15171,17962,18337,18800,19150,19360,19412,19590,19766,20115,20566,20569,20778,21361,21579,22233,22423,22473,22582,22584,22620,22787]]],["waves",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13059]]]]},{"k":"H1117","v":[["Bamah",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20924]]]]},{"k":"H1118","v":[["Bimhal",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10568]]]]},{"k":"H1119","v":[["*",[8,8,[[17,4,4,0,4,[[451,2,2,0,2],[454,1,1,2,3],[472,1,1,3,4]]],[18,1,1,4,5,[[488,1,1,4,5]]],[22,3,3,5,8,[[721,1,1,5,6],[722,2,2,6,8]]]],[13242,13243,13313,13777,14061,18507,18549,18552]]],["+",[1,1,[[18,1,1,0,1,[[488,1,1,0,1]]]],[14061]]],["in",[2,2,[[22,2,2,0,2,[[722,2,2,0,2]]]],[18549,18552]]],["into",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13777]]],["mine",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13242]]],["through",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18507]]],["with",[2,2,[[17,2,2,0,2,[[451,1,1,0,1],[454,1,1,1,2]]]],[13243,13313]]]]},{"k":"H1120","v":[["*",[3,3,[[3,2,2,0,2,[[137,2,2,0,2]]],[5,1,1,2,3,[[199,1,1,2,3]]]],[4359,4360,6171]]],["+",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4360]]],["Bamoth",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4359]]],["Bamothbaal",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6171]]]]},{"k":"H1121","v":[["*",[4912,3637,[[0,365,306,0,306,[[2,1,1,0,1],[3,3,3,1,4],[4,11,11,4,15],[5,5,4,15,19],[6,5,3,19,22],[7,4,2,22,24],[8,5,5,24,29],[9,16,14,29,43],[10,15,11,43,54],[11,2,2,54,56],[13,1,1,56,57],[14,2,2,57,59],[15,4,3,59,62],[16,12,10,62,72],[17,5,5,72,77],[18,4,3,77,80],[20,14,9,80,89],[21,11,11,89,100],[22,10,9,100,109],[23,16,16,109,125],[24,16,13,125,138],[25,1,1,138,139],[26,25,20,139,159],[27,2,2,159,161],[28,9,8,161,169],[29,16,15,169,184],[30,8,6,184,190],[31,3,3,190,193],[32,1,1,193,194],[33,11,11,194,205],[34,9,8,205,213],[35,34,27,213,240],[36,10,6,240,246],[37,5,5,246,251],[40,2,2,251,253],[41,7,7,253,260],[42,2,1,260,261],[44,6,4,261,265],[45,29,21,265,286],[46,1,1,286,287],[47,6,6,287,293],[48,9,8,293,301],[49,7,5,301,306]]],[1,233,208,306,514,[[50,7,7,306,313],[51,5,5,313,318],[52,7,7,318,325],[53,7,6,325,331],[54,3,3,331,334],[55,20,18,334,352],[56,5,4,352,356],[58,4,4,356,360],[59,6,4,360,364],[60,2,2,364,366],[61,13,13,366,379],[62,7,7,379,386],[63,10,8,386,394],[64,2,2,394,396],[65,10,10,396,406],[66,3,3,406,409],[67,3,3,409,412],[68,3,3,412,415],[69,3,3,415,418],[70,4,4,418,422],[71,2,2,422,424],[72,1,1,424,425],[73,3,3,425,428],[74,2,2,428,430],[76,3,2,430,432],[77,14,12,432,444],[78,26,20,444,464],[79,7,6,464,470],[80,7,6,470,476],[81,5,5,476,481],[82,3,3,481,484],[83,10,7,484,491],[84,9,7,491,498],[85,1,1,498,499],[87,5,4,499,503],[88,7,7,503,510],[89,4,4,510,514]]],[2,160,134,514,648,[[90,7,6,514,520],[91,3,3,520,523],[92,4,4,523,527],[93,3,3,527,530],[94,2,2,530,532],[95,7,7,532,539],[96,11,9,539,548],[97,15,11,548,559],[98,7,6,559,565],[99,12,10,565,575],[100,1,1,575,576],[101,5,3,576,579],[102,1,1,579,580],[103,2,2,580,582],[104,4,4,582,586],[105,7,7,586,593],[106,6,5,593,598],[107,4,4,598,602],[108,2,2,602,604],[109,3,2,604,606],[110,4,3,606,609],[111,9,7,609,616],[112,10,9,616,625],[113,11,7,625,632],[114,9,8,632,640],[115,2,2,640,642],[116,9,6,642,648]]],[3,611,437,648,1085,[[117,47,31,648,679],[118,28,16,679,695],[119,39,33,695,728],[120,36,23,728,751],[121,6,5,751,756],[122,7,6,756,762],[123,76,41,762,803],[124,23,15,803,818],[125,10,9,818,827],[126,29,17,827,844],[127,2,2,844,846],[129,19,19,846,865],[130,15,12,865,877],[131,10,10,877,887],[132,16,11,887,898],[133,6,6,898,904],[134,23,18,904,922],[135,3,3,922,925],[136,9,9,925,934],[137,5,4,934,938],[138,8,7,938,945],[139,2,2,945,947],[140,3,3,947,950],[141,11,6,950,956],[142,42,35,956,991],[143,14,9,991,1000],[144,9,6,1000,1006],[145,15,11,1006,1017],[146,1,1,1017,1018],[147,10,10,1018,1028],[148,30,19,1028,1047],[149,7,7,1047,1054],[150,25,15,1054,1069],[151,5,5,1069,1074],[152,20,11,1074,1085]]],[4,128,103,1085,1188,[[153,7,6,1085,1091],[154,11,9,1091,1100],[155,5,4,1100,1104],[156,11,7,1104,1111],[157,3,3,1111,1114],[158,6,4,1114,1118],[159,3,2,1118,1120],[160,1,1,1120,1121],[161,2,1,1121,1122],[162,3,1,1122,1123],[163,5,4,1123,1127],[164,5,5,1127,1132],[165,3,2,1132,1134],[166,1,1,1134,1135],[168,2,2,1135,1137],[169,1,1,1137,1138],[170,2,2,1138,1140],[173,9,6,1140,1146],[174,2,2,1146,1148],[175,3,3,1148,1151],[176,3,2,1151,1153],[177,2,2,1153,1155],[180,7,7,1155,1162],[181,3,3,1162,1165],[182,1,1,1165,1166],[183,8,6,1166,1172],[184,12,10,1172,1182],[185,3,3,1182,1185],[186,4,3,1185,1188]]],[5,241,159,1188,1347,[[187,2,2,1188,1190],[188,3,3,1190,1193],[189,2,2,1193,1195],[190,12,8,1195,1203],[191,8,7,1203,1210],[192,2,2,1210,1212],[193,13,6,1212,1218],[194,2,2,1218,1220],[195,3,3,1220,1223],[196,5,5,1223,1228],[197,3,3,1228,1231],[198,4,4,1231,1235],[199,15,11,1235,1246],[200,12,9,1246,1255],[201,12,10,1255,1265],[202,6,5,1265,1270],[203,22,9,1270,1279],[204,13,11,1279,1290],[205,24,16,1290,1306],[206,2,2,1306,1308],[207,22,18,1308,1326],[208,45,16,1326,1342],[210,9,5,1342,1347]]],[6,204,161,1347,1508,[[211,10,8,1347,1355],[212,5,4,1355,1359],[213,18,13,1359,1372],[214,11,8,1372,1380],[215,3,3,1380,1383],[216,10,10,1383,1393],[217,2,2,1393,1395],[218,15,13,1395,1408],[219,14,11,1408,1419],[220,16,11,1419,1430],[221,25,21,1430,1451],[222,10,7,1451,1458],[223,5,5,1458,1463],[224,2,2,1463,1465],[227,4,4,1465,1469],[228,10,7,1469,1476],[229,3,3,1476,1479],[230,33,21,1479,1500],[231,8,8,1500,1508]]],[7,8,8,1508,1516,[[232,5,5,1508,1513],[235,3,3,1513,1516]]],[8,136,114,1516,1630,[[236,9,6,1516,1522],[237,9,8,1522,1530],[238,3,3,1530,1533],[239,6,6,1533,1539],[241,2,2,1539,1541],[242,6,5,1541,1546],[243,4,4,1546,1550],[244,7,3,1550,1553],[245,5,5,1553,1558],[246,1,1,1558,1559],[247,2,2,1559,1561],[248,3,3,1561,1564],[249,14,12,1564,1576],[250,1,1,1576,1577],[251,6,6,1577,1583],[252,10,7,1583,1590],[253,1,1,1590,1591],[254,2,2,1591,1593],[255,6,3,1593,1596],[257,11,7,1596,1603],[258,2,2,1603,1605],[259,1,1,1605,1606],[260,4,4,1606,1610],[261,8,8,1610,1618],[262,1,1,1618,1619],[263,1,1,1619,1620],[265,5,5,1620,1625],[266,6,5,1625,1630]]],[9,208,157,1630,1787,[[267,6,6,1630,1636],[268,11,8,1636,1644],[269,13,11,1644,1655],[270,10,6,1655,1661],[271,2,2,1661,1663],[272,1,1,1663,1664],[273,5,4,1664,1668],[274,10,6,1668,1674],[275,12,8,1674,1682],[276,13,9,1682,1691],[277,3,3,1691,1694],[278,7,7,1694,1701],[279,17,14,1701,1715],[280,6,5,1715,1720],[281,4,2,1720,1722],[282,7,7,1722,1729],[283,6,3,1729,1732],[284,13,8,1732,1740],[285,13,11,1740,1751],[286,11,10,1751,1761],[287,16,10,1761,1771],[288,2,2,1771,1773],[289,20,14,1773,1787]]],[10,183,161,1787,1948,[[291,20,20,1787,1807],[292,17,14,1807,1821],[293,16,7,1821,1828],[294,16,14,1828,1842],[295,2,2,1842,1844],[296,2,2,1844,1846],[297,1,1,1846,1847],[298,6,6,1847,1853],[299,5,4,1853,1857],[301,12,11,1857,1868],[302,9,9,1868,1877],[303,6,6,1877,1883],[304,7,6,1883,1889],[305,9,8,1889,1897],[306,15,14,1897,1911],[307,7,7,1911,1918],[308,2,2,1918,1920],[309,5,4,1920,1924],[310,8,7,1924,1931],[311,6,5,1931,1936],[312,12,12,1936,1948]]],[11,222,174,1948,2122,[[313,2,1,1948,1949],[314,5,5,1949,1954],[315,4,4,1954,1958],[316,13,12,1958,1970],[317,1,1,1970,1971],[318,8,5,1971,1976],[320,16,12,1976,1988],[321,10,7,1988,1995],[322,14,12,1995,2007],[323,6,5,2007,2012],[324,3,1,2012,2013],[325,11,9,2013,2022],[326,22,15,2022,2037],[327,28,23,2037,2060],[328,8,6,2060,2066],[329,13,11,2066,2077],[330,10,7,2077,2084],[331,6,5,2084,2089],[332,4,4,2089,2093],[333,9,9,2093,2102],[334,7,4,2102,2106],[335,9,8,2106,2114],[336,4,4,2114,2118],[337,9,4,2118,2122]]],[12,706,429,2122,2551,[[338,32,25,2122,2147],[339,37,28,2147,2175],[340,37,16,2175,2191],[341,41,22,2191,2213],[342,29,11,2213,2224],[343,120,50,2224,2274],[344,52,30,2274,2304],[345,23,16,2304,2320],[346,63,23,2320,2343],[347,7,6,2343,2349],[348,24,20,2349,2369],[349,13,12,2369,2381],[351,1,1,2381,2382],[352,12,9,2382,2391],[353,3,3,2391,2394],[354,3,3,2394,2397],[355,9,6,2397,2403],[356,13,10,2403,2413],[357,4,4,2413,2417],[358,1,1,2417,2418],[359,7,7,2418,2425],[360,31,23,2425,2448],[361,32,18,2448,2466],[362,30,28,2466,2494],[363,35,20,2494,2514],[364,30,23,2514,2537],[365,11,8,2537,2545],[366,6,6,2545,2551]]],[13,234,175,2551,2726,[[367,3,2,2551,2553],[368,2,2,2553,2555],[371,3,3,2555,2558],[372,4,4,2558,2562],[373,1,1,2562,2563],[374,4,3,2563,2566],[375,2,2,2566,2568],[376,5,5,2568,2573],[377,9,8,2573,2581],[378,2,2,2581,2583],[379,14,10,2583,2593],[380,1,1,2593,2594],[381,1,1,2594,2595],[383,2,2,2595,2597],[384,5,5,2597,2602],[385,2,2,2602,2604],[386,16,10,2604,2614],[387,10,7,2614,2621],[388,12,9,2621,2630],[389,9,3,2630,2633],[390,11,9,2633,2642],[391,18,13,2642,2655],[392,7,7,2655,2662],[393,6,4,2662,2666],[394,16,8,2666,2674],[395,16,7,2674,2681],[396,4,4,2681,2685],[397,8,8,2685,2693],[398,4,3,2693,2696],[399,9,8,2696,2704],[400,10,6,2704,2710],[401,11,9,2710,2719],[402,7,7,2719,2726]]],[14,197,110,2726,2836,[[404,99,55,2726,2781],[405,12,5,2781,2786],[406,1,1,2786,2787],[408,3,3,2787,2790],[409,17,6,2790,2796],[410,37,18,2796,2814],[411,4,2,2814,2816],[412,24,20,2816,2836]]],[15,246,124,2836,2960,[[413,3,2,2836,2838],[414,1,1,2838,2839],[415,37,23,2839,2862],[416,1,1,2862,2863],[417,4,2,2863,2865],[418,5,2,2865,2867],[419,89,49,2867,2916],[420,3,2,2916,2918],[421,4,4,2918,2922],[422,9,7,2922,2929],[423,65,17,2929,2946],[424,16,8,2946,2954],[425,9,6,2954,2960]]],[16,15,12,2960,2972,[[427,3,1,2960,2961],[428,2,2,2961,2963],[430,1,1,2963,2964],[433,2,2,2964,2966],[434,7,6,2966,2972]]],[17,36,33,2972,3005,[[436,7,7,2972,2979],[437,1,1,2979,2980],[439,1,1,2980,2981],[440,2,2,2981,2983],[443,1,1,2983,2984],[449,1,1,2984,2985],[451,1,1,2985,2986],[452,1,1,2986,2987],[454,1,1,2987,2988],[455,1,1,2988,2989],[456,1,1,2989,2990],[460,1,1,2990,2991],[462,1,1,2991,2992],[463,1,1,2992,2993],[465,2,1,2993,2994],[467,2,2,2994,2996],[470,1,1,2996,2997],[473,2,2,2997,2999],[474,2,2,2999,3001],[476,2,2,3001,3003],[477,4,2,3003,3005]]],[18,87,82,3005,3087,[[479,1,1,3005,3006],[481,1,1,3006,3007],[485,1,1,3007,3008],[488,1,1,3008,3009],[489,1,1,3009,3010],[491,1,1,3010,3011],[494,1,1,3011,3012],[495,2,2,3012,3014],[498,1,1,3014,3015],[506,2,2,3015,3017],[508,1,1,3017,3018],[510,1,1,3018,3019],[511,1,1,3019,3020],[513,1,1,3020,3021],[522,2,2,3021,3023],[527,1,1,3023,3024],[530,1,1,3024,3025],[534,1,1,3025,3026],[535,1,1,3026,3027],[539,2,1,3027,3028],[543,1,1,3028,3029],[546,1,1,3029,3030],[549,3,3,3030,3033],[550,1,1,3033,3034],[554,1,1,3034,3035],[555,5,4,3035,3039],[556,1,1,3039,3040],[557,2,2,3040,3042],[559,1,1,3042,3043],[560,1,1,3043,3044],[563,1,1,3044,3045],[566,4,4,3045,3049],[567,2,2,3049,3051],[579,2,2,3051,3053],[580,4,3,3053,3056],[582,1,1,3056,3057],[583,2,2,3057,3059],[584,4,4,3059,3063],[586,2,2,3063,3065],[590,1,1,3065,3066],[591,2,2,3066,3068],[592,2,2,3068,3070],[593,1,1,3070,3071],[604,2,2,3071,3073],[605,3,2,3073,3075],[609,2,1,3075,3076],[614,1,1,3076,3077],[621,4,4,3077,3081],[622,1,1,3081,3082],[623,1,1,3082,3083],[624,2,2,3083,3085],[625,1,1,3085,3086],[626,1,1,3086,3087]]],[19,60,55,3087,3142,[[628,4,4,3087,3091],[629,1,1,3091,3092],[630,4,4,3092,3096],[631,4,4,3096,3100],[632,3,3,3100,3103],[633,3,3,3103,3106],[634,3,3,3106,3109],[635,3,3,3109,3112],[637,4,2,3112,3114],[640,4,3,3114,3117],[641,1,1,3117,3118],[642,2,2,3118,3120],[644,5,3,3120,3123],[646,4,4,3123,3127],[647,1,1,3127,3128],[650,3,3,3128,3131],[651,2,2,3131,3133],[654,1,1,3133,3134],[655,1,1,3134,3135],[656,1,1,3135,3136],[657,3,3,3136,3139],[658,3,3,3139,3142]]],[20,15,15,3142,3157,[[659,2,2,3142,3144],[660,3,3,3144,3147],[661,3,3,3147,3150],[662,1,1,3150,3151],[663,1,1,3151,3152],[666,1,1,3152,3153],[667,2,2,3153,3155],[668,1,1,3155,3156],[670,1,1,3156,3157]]],[21,2,2,3157,3159,[[671,1,1,3157,3158],[672,1,1,3158,3159]]],[22,84,72,3159,3231,[[679,3,3,3159,3162],[680,1,1,3162,3163],[683,1,1,3163,3164],[685,9,7,3164,3171],[686,3,3,3171,3174],[687,1,1,3174,3175],[689,2,1,3175,3176],[691,2,2,3176,3178],[692,2,2,3178,3180],[695,2,2,3180,3182],[697,2,1,3182,3183],[698,1,1,3183,3184],[699,2,2,3184,3186],[700,1,1,3186,3187],[705,1,1,3187,3188],[708,3,2,3188,3190],[709,1,1,3190,3191],[714,4,2,3191,3193],[715,6,5,3193,3198],[716,2,2,3198,3200],[717,2,2,3200,3202],[721,1,1,3202,3203],[723,1,1,3203,3204],[727,5,5,3204,3209],[729,4,3,3209,3212],[730,1,1,3212,3213],[732,4,2,3213,3215],[734,4,4,3215,3219],[735,1,1,3219,3220],[738,4,4,3220,3224],[739,1,1,3224,3225],[740,2,2,3225,3227],[741,1,1,3227,3228],[743,2,1,3228,3229],[744,2,2,3229,3231]]],[23,229,156,3231,3387,[[745,4,3,3231,3234],[746,4,3,3234,3237],[747,5,5,3237,3242],[748,1,1,3242,3243],[749,2,2,3243,3245],[750,2,2,3245,3247],[751,5,4,3247,3251],[753,1,1,3251,3252],[754,1,1,3252,3253],[755,1,1,3253,3254],[757,1,1,3254,3255],[758,1,1,3255,3256],[759,1,1,3256,3257],[760,4,4,3257,3261],[761,2,2,3261,3263],[762,1,1,3263,3264],[763,4,4,3264,3268],[764,2,2,3268,3270],[765,2,1,3270,3271],[766,3,3,3271,3274],[767,1,1,3274,3275],[768,1,1,3275,3276],[769,3,3,3276,3279],[770,5,5,3279,3284],[771,6,4,3284,3288],[772,2,2,3288,3290],[773,8,4,3290,3294],[774,1,1,3294,3295],[775,6,5,3295,3300],[776,16,11,3300,3311],[777,1,1,3311,3312],[779,17,9,3312,3321],[780,19,10,3321,3331],[781,6,3,3331,3334],[782,6,3,3334,3337],[783,3,2,3337,3339],[784,22,10,3339,3349],[785,25,13,3349,3362],[786,3,2,3362,3364],[787,8,5,3364,3369],[789,2,1,3369,3370],[790,1,1,3370,3371],[791,1,1,3371,3372],[792,2,2,3372,3374],[793,7,6,3374,3380],[794,5,3,3380,3383],[795,3,2,3383,3385],[796,2,2,3385,3387]]],[24,4,4,3387,3391,[[797,1,1,3387,3388],[799,2,2,3388,3390],[800,1,1,3390,3391]]],[25,191,165,3391,3556,[[802,1,1,3391,3392],[803,6,5,3392,3397],[804,7,7,3397,3404],[805,3,3,3404,3407],[806,3,2,3407,3409],[807,2,2,3409,3411],[808,1,1,3411,3412],[809,7,7,3412,3419],[812,6,5,3419,3424],[813,6,6,3424,3430],[814,2,2,3430,3432],[815,6,6,3432,3438],[816,1,1,3438,3439],[817,8,7,3439,3446],[818,1,1,3446,3447],[819,8,6,3447,3453],[821,7,7,3453,3460],[822,10,9,3460,3469],[823,3,3,3469,3472],[824,15,14,3472,3486],[825,5,4,3486,3490],[826,8,5,3490,3495],[827,1,1,3495,3496],[828,3,3,3496,3499],[829,3,3,3499,3502],[830,2,2,3502,3504],[831,3,3,3504,3507],[832,2,2,3507,3509],[833,2,2,3509,3511],[834,10,7,3511,3518],[835,1,1,3518,3519],[836,2,2,3519,3521],[837,2,2,3521,3523],[838,10,7,3523,3530],[839,2,2,3530,3532],[840,2,2,3532,3534],[841,3,2,3534,3536],[844,7,6,3536,3542],[845,8,5,3542,3547],[846,1,1,3547,3548],[847,6,5,3548,3553],[848,3,2,3553,3555],[849,2,1,3555,3556]]],[26,9,9,3556,3565,[[850,2,2,3556,3558],[857,1,1,3558,3559],[858,1,1,3559,3560],[859,1,1,3560,3561],[860,3,3,3561,3564],[861,1,1,3564,3565]]],[27,24,19,3565,3584,[[862,8,5,3565,3570],[863,2,1,3570,3571],[864,3,3,3571,3574],[865,2,2,3574,3576],[866,1,1,3576,3577],[870,2,2,3577,3579],[871,2,2,3579,3581],[872,2,2,3581,3583],[874,2,1,3583,3584]]],[28,15,9,3584,3593,[[876,6,3,3584,3587],[877,2,2,3587,3589],[878,7,4,3589,3593]]],[29,11,9,3593,3602,[[879,2,2,3593,3595],[880,2,1,3595,3596],[881,2,2,3596,3598],[882,1,1,3598,3599],[885,2,2,3599,3601],[887,2,1,3601,3602]]],[30,2,2,3602,3604,[[888,2,2,3602,3604]]],[31,3,2,3604,3606,[[889,1,1,3604,3605],[892,2,1,3605,3606]]],[32,6,6,3606,3612,[[893,1,1,3606,3607],[897,2,2,3607,3609],[898,2,2,3609,3611],[899,1,1,3611,3612]]],[35,8,4,3612,3616,[[906,6,2,3612,3614],[907,2,2,3614,3616]]],[36,10,6,3616,3622,[[909,6,3,3616,3619],[910,4,3,3619,3622]]],[37,13,10,3622,3632,[[911,4,2,3622,3624],[914,1,1,3624,3625],[916,3,3,3625,3628],[919,3,2,3628,3630],[920,2,2,3630,3632]]],[38,6,5,3632,3637,[[925,1,1,3632,3633],[927,3,3,3633,3636],[928,2,1,3636,3637]]]],[71,96,104,105,109,112,115,118,121,124,127,131,133,135,137,139,141,147,155,165,166,172,199,201,206,213,223,224,229,235,236,237,238,240,241,254,255,256,257,259,263,265,266,271,276,277,279,281,283,285,287,289,291,297,302,303,348,362,363,392,396,397,398,409,413,414,416,420,421,422,423,424,431,432,434,438,443,469,494,495,515,516,517,518,520,522,523,524,526,549,550,553,554,555,556,557,559,560,563,567,574,576,578,579,581,582,587,589,591,594,595,596,597,598,599,606,615,627,628,629,631,635,638,639,642,661,662,664,667,668,669,670,671,674,677,678,680,684,726,728,732,733,735,740,742,744,745,747,748,751,752,753,754,756,758,759,764,769,770,778,782,796,800,807,808,827,828,829,830,831,835,836,837,840,842,844,845,846,847,849,850,853,854,865,874,889,890,901,916,928,939,943,960,979,982,985,987,988,993,998,1000,1004,1005,1006,1007,1016,1028,1033,1034,1035,1036,1037,1040,1045,1046,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1071,1072,1073,1075,1078,1079,1085,1086,1115,1116,1117,1118,1122,1123,1124,1130,1145,1241,1245,1253,1257,1263,1265,1284,1289,1290,1319,1367,1368,1379,1386,1391,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1407,1408,1409,1410,1411,1412,1413,1449,1452,1453,1456,1459,1460,1470,1474,1475,1481,1482,1484,1495,1505,1506,1518,1519,1529,1531,1532,1533,1539,1541,1544,1545,1548,1554,1556,1564,1576,1577,1579,1588,1589,1590,1592,1593,1594,1601,1621,1623,1624,1626,1630,1632,1646,1647,1651,1660,1661,1664,1666,1667,1668,1669,1670,1671,1672,1673,1674,1676,1677,1679,1680,1681,1682,1687,1689,1690,1692,1746,1748,1768,1777,1779,1786,1797,1800,1813,1816,1821,1840,1842,1843,1844,1847,1851,1853,1856,1858,1859,1866,1867,1869,1875,1880,1881,1882,1885,1886,1891,1892,1897,1899,1904,1905,1911,1918,1921,1939,1948,1949,1950,1953,1956,1957,1959,1962,1964,1982,1984,1986,1990,2002,2004,2005,2027,2029,2032,2056,2061,2073,2081,2082,2086,2108,2137,2142,2156,2182,2188,2194,2197,2217,2292,2293,2294,2297,2302,2304,2305,2314,2322,2323,2331,2333,2334,2336,2337,2340,2344,2345,2346,2351,2355,2356,2357,2360,2363,2364,2365,2366,2368,2371,2374,2379,2380,2381,2394,2396,2398,2401,2412,2413,2422,2426,2430,2433,2436,2437,2440,2458,2464,2466,2467,2478,2479,2484,2503,2512,2516,2526,2528,2530,2531,2532,2535,2550,2551,2560,2561,2565,2569,2654,2655,2656,2659,2670,2671,2678,2691,2696,2705,2706,2719,2721,2738,2743,2747,2750,2752,2753,2756,2759,2764,2765,2772,2780,2783,2786,2791,2797,2798,2809,2837,2841,2858,2863,2865,2867,2869,2871,2874,2889,2902,2908,2910,2912,2913,2914,2915,2917,2919,2923,2930,2931,2935,2939,2941,2944,2947,2948,2953,2954,2955,2956,2962,2965,2971,2978,2981,2983,2986,2988,2989,2990,2991,2992,2993,2999,3046,3050,3052,3054,3133,3141,3170,3182,3197,3199,3202,3204,3206,3217,3220,3222,3235,3237,3240,3247,3248,3249,3253,3261,3266,3268,3283,3299,3320,3335,3346,3347,3369,3371,3372,3384,3387,3394,3397,3401,3404,3412,3414,3420,3421,3426,3436,3445,3446,3448,3454,3455,3456,3457,3461,3469,3471,3502,3510,3514,3515,3518,3523,3524,3553,3570,3572,3573,3575,3576,3577,3604,3606,3607,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3653,3656,3657,3658,3660,3661,3663,3665,3668,3670,3672,3676,3678,3680,3683,3685,3687,3690,3691,3692,3694,3695,3696,3700,3701,3702,3704,3707,3709,3710,3711,3712,3714,3716,3717,3720,3721,3722,3724,3726,3727,3728,3730,3731,3732,3733,3734,3735,3737,3738,3740,3742,3743,3745,3746,3747,3748,3758,3759,3762,3765,3766,3770,3771,3772,3773,3776,3777,3778,3781,3782,3784,3785,3786,3788,3790,3794,3796,3798,3801,3804,3825,3833,3835,3837,3846,3850,3857,3858,3859,3862,3865,3867,3868,3871,3873,3874,3877,3879,3880,3883,3885,3886,3889,3891,3892,3895,3897,3898,3901,3903,3904,3907,3909,3910,3913,3915,3916,3919,3921,3922,3925,3927,3928,3931,3933,3937,3938,3945,3947,3948,3949,3950,3952,3953,3955,3956,3957,3958,3959,3961,3963,3964,3967,3969,3970,3972,3975,3982,3983,3984,3987,3996,4000,4002,4003,4004,4005,4006,4007,4008,4010,4011,4012,4013,4014,4015,4016,4017,4028,4052,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4099,4101,4107,4108,4110,4113,4114,4115,4118,4126,4135,4137,4138,4141,4146,4147,4155,4161,4162,4171,4177,4178,4179,4182,4185,4191,4195,4196,4201,4202,4204,4206,4221,4231,4232,4234,4235,4246,4249,4250,4253,4254,4256,4258,4259,4262,4263,4264,4265,4266,4268,4273,4276,4277,4278,4279,4280,4281,4283,4285,4289,4291,4298,4299,4312,4323,4324,4330,4333,4335,4336,4337,4339,4350,4364,4369,4375,4376,4377,4378,4379,4380,4385,4391,4434,4435,4449,4461,4463,4477,4478,4479,4482,4484,4485,4490,4491,4493,4494,4497,4498,4500,4501,4504,4507,4508,4509,4510,4512,4515,4517,4518,4519,4522,4524,4525,4526,4527,4529,4530,4531,4533,4534,4536,4537,4540,4551,4552,4553,4554,4555,4557,4558,4562,4565,4566,4572,4574,4575,4579,4580,4586,4588,4596,4604,4610,4616,4621,4625,4628,4631,4634,4637,4640,4644,4648,4649,4666,4670,4672,4673,4676,4680,4694,4706,4711,4718,4719,4720,4724,4725,4727,4729,4730,4735,4736,4743,4746,4747,4749,4751,4752,4755,4757,4758,4759,4761,4763,4765,4798,4799,4800,4811,4818,4829,4830,4833,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4847,4853,4855,4860,4879,4880,4881,4882,4883,4884,4886,4887,4888,4890,4891,4892,4895,4920,4923,4928,4930,4931,4942,4946,4947,4950,4957,4960,4967,4971,4975,4986,4989,4991,4993,5013,5014,5029,5044,5048,5049,5050,5062,5067,5082,5088,5093,5106,5107,5114,5115,5142,5159,5192,5210,5214,5227,5229,5252,5258,5265,5268,5271,5278,5285,5291,5353,5356,5384,5389,5394,5452,5462,5463,5464,5465,5467,5476,5477,5504,5508,5517,5532,5541,5549,5552,5643,5652,5664,5665,5666,5667,5668,5680,5701,5708,5710,5730,5737,5741,5747,5750,5751,5763,5766,5772,5777,5778,5802,5804,5807,5809,5810,5811,5819,5834,5846,5847,5848,5852,5853,5870,5871,5892,5894,5902,5914,5915,5916,5917,5918,5922,5931,5932,5935,5936,5937,5940,5941,5944,5946,5950,5955,5977,5988,5994,5995,5999,6000,6033,6034,6054,6055,6063,6068,6075,6076,6084,6085,6121,6126,6129,6131,6132,6136,6137,6160,6164,6167,6169,6176,6177,6178,6179,6182,6183,6185,6188,6191,6192,6193,6194,6196,6197,6200,6201,6203,6208,6210,6214,6215,6216,6219,6222,6223,6265,6266,6269,6270,6273,6274,6277,6278,6279,6281,6283,6287,6288,6289,6291,6294,6295,6296,6303,6304,6307,6309,6310,6313,6314,6321,6322,6329,6330,6331,6337,6338,6344,6345,6352,6353,6360,6361,6368,6369,6370,6372,6374,6381,6382,6384,6385,6386,6387,6388,6389,6390,6391,6393,6394,6400,6401,6407,6408,6415,6421,6422,6435,6436,6437,6438,6439,6441,6446,6447,6450,6451,6453,6456,6457,6458,6459,6460,6480,6485,6505,6508,6509,6510,6517,6518,6522,6525,6529,6530,6543,6549,6551,6553,6556,6570,6573,6574,6575,6576,6577,6579,6580,6581,6582,6583,6595,6599,6600,6602,6604,6605,6610,6611,6622,6623,6624,6629,6635,6655,6656,6657,6660,6661,6662,6665,6683,6684,6687,6706,6708,6729,6732,6737,6738,6741,6742,6747,6748,6749,6750,6751,6752,6753,6755,6756,6759,6772,6778,6780,6782,6784,6785,6789,6811,6812,6815,6817,6818,6819,6820,6821,6822,6826,6828,6829,6830,6831,6833,6834,6835,6837,6838,6841,6842,6843,6844,6854,6856,6857,6858,6859,6860,6861,6862,6863,6865,6870,6871,6872,6878,6882,6883,6884,6885,6887,6889,6891,6908,6925,6926,6982,6983,6985,6991,6995,7009,7015,7016,7018,7019,7023,7036,7046,7054,7055,7057,7061,7067,7068,7069,7072,7073,7075,7077,7078,7079,7080,7081,7082,7084,7085,7086,7089,7090,7102,7107,7108,7112,7115,7120,7122,7125,7126,7128,7129,7130,7138,7139,7203,7205,7207,7213,7215,7216,7220,7232,7235,7245,7252,7261,7262,7264,7268,7269,7274,7282,7289,7292,7301,7308,7312,7313,7314,7317,7338,7341,7353,7356,7358,7359,7360,7370,7372,7374,7380,7392,7393,7394,7420,7429,7436,7439,7445,7453,7462,7472,7486,7501,7507,7509,7511,7526,7540,7547,7548,7550,7555,7557,7558,7559,7560,7566,7596,7600,7605,7613,7614,7615,7630,7631,7635,7671,7673,7674,7676,7693,7707,7708,7757,7760,7761,7794,7795,7796,7798,7799,7800,7807,7816,7826,7855,7869,7871,7878,7905,7910,7911,7919,7921,7922,7924,7926,7930,7932,7961,7981,7984,7985,7997,8000,8011,8015,8016,8017,8021,8026,8027,8034,8035,8039,8040,8056,8057,8059,8061,8062,8064,8067,8074,8083,8084,8085,8095,8096,8104,8106,8109,8115,8118,8120,8121,8122,8124,8125,8128,8129,8136,8145,8160,8186,8187,8190,8194,8212,8219,8221,8225,8226,8227,8230,8231,8232,8233,8236,8237,8238,8239,8241,8242,8243,8246,8248,8250,8251,8254,8259,8260,8280,8286,8289,8291,8295,8300,8310,8312,8317,8318,8320,8321,8340,8342,8344,8345,8346,8347,8349,8350,8352,8353,8354,8357,8362,8367,8372,8383,8416,8425,8429,8431,8434,8435,8436,8437,8445,8459,8474,8476,8480,8490,8496,8497,8498,8500,8505,8511,8513,8515,8516,8527,8528,8529,8532,8533,8535,8543,8546,8555,8556,8560,8561,8564,8567,8575,8576,8577,8578,8582,8586,8587,8588,8592,8593,8594,8597,8599,8601,8647,8648,8654,8662,8664,8671,8673,8675,8677,8679,8682,8685,8686,8687,8689,8690,8722,8724,8725,8726,8728,8729,8730,8734,8736,8738,8742,8743,8747,8749,8750,8753,8755,8759,8761,8769,8771,8774,8775,8777,8778,8783,8792,8795,8799,8802,8804,8805,8809,8816,8822,8835,8836,8837,8838,8839,8842,8846,8847,8848,8849,8850,8856,8857,8858,8860,8861,8862,8863,8874,8875,8883,8885,8897,8909,8948,8986,8994,9004,9010,9024,9048,9057,9071,9072,9073,9110,9115,9120,9121,9128,9131,9134,9141,9143,9144,9151,9153,9166,9167,9168,9172,9174,9175,9182,9184,9186,9195,9196,9197,9211,9215,9219,9223,9238,9239,9242,9249,9250,9253,9257,9267,9273,9274,9276,9282,9284,9286,9289,9290,9291,9296,9304,9305,9309,9311,9312,9313,9314,9317,9329,9330,9334,9335,9336,9337,9340,9361,9372,9397,9401,9403,9406,9411,9413,9415,9423,9435,9437,9443,9461,9464,9473,9477,9480,9488,9489,9491,9504,9506,9520,9521,9522,9529,9530,9531,9532,9550,9554,9556,9558,9566,9567,9577,9579,9587,9603,9604,9607,9608,9609,9610,9617,9619,9620,9631,9639,9640,9641,9669,9675,9702,9703,9705,9706,9728,9732,9736,9739,9743,9744,9746,9751,9752,9753,9755,9756,9757,9758,9765,9770,9776,9782,9785,9794,9795,9796,9799,9800,9801,9806,9808,9816,9822,9823,9828,9830,9831,9833,9841,9850,9871,9872,9873,9874,9876,9880,9881,9882,9895,9896,9897,9898,9902,9904,9905,9909,9910,9912,9913,9917,9919,9920,9921,9923,9925,9926,9927,9930,9932,9933,9934,9935,9937,9938,9939,9942,9943,9947,9948,9949,9950,9952,9953,9955,9957,9958,9962,9963,9964,9965,9966,9968,9970,9983,9984,9990,9991,9992,10000,10004,10005,10007,10014,10017,10024,10025,10026,10028,10033,10042,10050,10061,10063,10064,10073,10081,10098,10099,10110,10116,10119,10120,10121,10125,10126,10128,10137,10138,10143,10145,10146,10148,10157,10159,10171,10175,10178,10180,10195,10196,10199,10201,10204,10208,10210,10220,10229,10244,10245,10247,10257,10258,10259,10260,10261,10269,10271,10275,10280,10283,10284,10285,10286,10287,10288,10289,10290,10291,10292,10293,10294,10295,10296,10298,10301,10307,10309,10310,10311,10312,10313,10314,10315,10316,10322,10324,10327,10329,10331,10333,10334,10336,10337,10338,10339,10340,10348,10349,10351,10353,10356,10358,10360,10362,10363,10370,10371,10372,10373,10374,10375,10376,10377,10378,10380,10382,10383,10384,10385,10386,10387,10389,10391,10392,10393,10398,10400,10401,10402,10403,10404,10405,10406,10409,10410,10411,10412,10419,10420,10422,10427,10429,10431,10432,10433,10434,10436,10439,10442,10443,10446,10451,10455,10456,10457,10470,10471,10472,10473,10474,10475,10476,10477,10478,10479,10480,10481,10482,10483,10484,10487,10488,10489,10490,10491,10492,10493,10494,10495,10496,10497,10498,10499,10500,10501,10503,10504,10505,10506,10507,10508,10510,10511,10515,10516,10517,10518,10519,10520,10524,10525,10531,10536,10537,10538,10539,10542,10543,10545,10546,10547,10548,10549,10551,10552,10554,10555,10556,10558,10560,10561,10562,10564,10565,10566,10568,10569,10570,10571,10573,10574,10575,10578,10581,10585,10587,10591,10593,10596,10600,10602,10605,10609,10610,10612,10613,10614,10615,10618,10619,10620,10621,10622,10623,10626,10627,10629,10630,10631,10633,10634,10635,10636,10638,10645,10647,10651,10655,10656,10658,10659,10661,10665,10666,10667,10671,10673,10679,10684,10685,10695,10697,10699,10701,10703,10704,10707,10708,10710,10711,10712,10714,10715,10716,10717,10718,10719,10721,10723,10727,10734,10736,10738,10744,10745,10746,10749,10750,10752,10777,10795,10796,10797,10798,10799,10800,10801,10806,10808,10833,10858,10862,10872,10874,10876,10900,10901,10902,10905,10906,10907,10908,10909,10910,10913,10914,10916,10918,10919,10922,10926,10927,10929,10931,10933,10954,10969,10970,10971,10973,10974,10975,10981,10984,10986,10989,10991,10992,10993,10994,10995,10996,10997,10998,10999,11000,11001,11002,11003,11004,11005,11006,11007,11010,11011,11015,11016,11017,11018,11019,11020,11021,11035,11036,11037,11038,11039,11040,11041,11042,11043,11044,11045,11046,11047,11048,11049,11050,11051,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11078,11079,11081,11083,11084,11085,11086,11087,11088,11091,11092,11096,11098,11099,11101,11102,11105,11106,11107,11109,11110,11111,11112,11114,11115,11116,11118,11119,11123,11125,11126,11127,11128,11129,11130,11131,11132,11133,11134,11135,11138,11141,11143,11144,11147,11148,11149,11151,11152,11154,11163,11165,11183,11186,11188,11190,11192,11195,11199,11223,11225,11270,11278,11280,11291,11293,11298,11312,11327,11348,11354,11355,11393,11395,11397,11410,11411,11412,11413,11417,11428,11431,11432,11433,11435,11436,11437,11450,11453,11458,11459,11460,11461,11462,11463,11465,11469,11471,11474,11476,11491,11524,11539,11549,11550,11552,11565,11567,11578,11587,11588,11597,11600,11601,11606,11609,11610,11618,11621,11624,11625,11626,11629,11631,11638,11641,11644,11645,11646,11649,11650,11651,11652,11653,11654,11655,11657,11659,11667,11678,11680,11684,11692,11697,11699,11702,11703,11704,11705,11708,11709,11711,11715,11716,11717,11718,11721,11722,11727,11728,11729,11733,11735,11749,11750,11753,11754,11755,11756,11760,11763,11764,11765,11767,11770,11771,11772,11774,11776,11791,11792,11800,11802,11803,11804,11805,11812,11833,11836,11848,11853,11855,11859,11860,11868,11870,11871,11872,11873,11895,11907,11908,11909,11910,11914,11915,11917,11928,11929,11933,11934,11941,11945,11953,11955,11966,11969,11970,11971,11973,11978,11979,11980,11981,11983,11994,11995,11998,12001,12002,12004,12013,12028,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12041,12042,12043,12044,12045,12046,12047,12048,12051,12052,12053,12056,12057,12058,12059,12060,12061,12062,12063,12064,12065,12066,12067,12068,12069,12070,12071,12072,12073,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12084,12085,12087,12088,12098,12099,12105,12106,12107,12111,12170,12171,12172,12174,12175,12176,12177,12178,12180,12203,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12216,12219,12220,12234,12236,12239,12249,12254,12258,12259,12267,12268,12270,12272,12273,12274,12277,12278,12279,12280,12281,12282,12283,12285,12286,12295,12296,12297,12302,12317,12329,12330,12331,12333,12335,12336,12337,12338,12339,12341,12342,12343,12344,12345,12346,12347,12348,12350,12351,12352,12356,12357,12358,12373,12384,12387,12411,12419,12426,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12439,12440,12441,12442,12443,12444,12445,12454,12455,12456,12457,12458,12459,12460,12461,12462,12463,12464,12465,12466,12467,12468,12469,12470,12471,12472,12473,12474,12475,12476,12477,12478,12479,12480,12482,12483,12493,12507,12510,12512,12513,12534,12535,12550,12558,12577,12579,12585,12587,12588,12591,12592,12593,12594,12595,12597,12598,12599,12600,12601,12602,12603,12605,12610,12612,12613,12619,12625,12647,12648,12650,12652,12659,12669,12671,12673,12684,12687,12695,12696,12699,12729,12748,12757,12790,12822,12827,12844,12846,12847,12848,12858,12859,12871,12872,12873,12874,12875,12882,12887,12892,12941,12955,12958,13033,13202,13259,13265,13314,13336,13374,13467,13495,13512,13565,13630,13634,13728,13800,13825,13838,13850,13916,13922,13935,13938,13952,13967,14016,14063,14067,14082,14117,14162,14163,14201,14309,14314,14350,14379,14399,14445,14599,14613,14688,14721,14772,14780,14836,14878,14943,15001,15004,15020,15035,15108,15117,15118,15119,15122,15196,15213,15215,15239,15249,15300,15332,15348,15356,15373,15381,15394,15541,15549,15556,15562,15566,15612,15688,15689,15707,15714,15720,15730,15764,15765,15822,15826,15828,15844,15846,15864,16124,16125,16129,16132,16163,16229,16308,16312,16316,16317,16332,16344,16360,16364,16385,16387,16401,16408,16410,16415,16434,16456,16466,16467,16476,16491,16493,16500,16510,16518,16524,16537,16541,16543,16560,16576,16582,16599,16606,16633,16634,16657,16661,16748,16769,16771,16798,16818,16827,16875,16879,16898,16938,16943,16951,16952,16961,17059,17063,17070,17092,17100,17180,17203,17241,17252,17255,17268,17289,17292,17312,17316,17328,17336,17340,17341,17369,17377,17378,17389,17411,17469,17478,17487,17510,17535,17543,17557,17655,17656,17658,17686,17740,17783,17785,17786,17787,17788,17791,17796,17809,17810,17813,17835,17898,17907,17924,17940,17949,17986,17992,18015,18031,18045,18052,18072,18163,18218,18226,18256,18333,18352,18354,18355,18364,18373,18390,18391,18409,18413,18419,18511,18572,18651,18653,18656,18658,18661,18685,18691,18693,18710,18724,18736,18755,18756,18758,18759,18768,18825,18830,18831,18835,18848,18859,18862,18874,18917,18930,18942,18947,18948,18949,18974,18981,18995,19016,19021,19023,19024,19026,19049,19065,19075,19090,19110,19137,19149,19150,19151,19201,19221,19248,19280,19309,19319,19338,19339,19350,19351,19359,19376,19405,19409,19412,19413,19416,19423,19437,19441,19465,19472,19478,19491,19525,19535,19537,19555,19573,19592,19594,19595,19596,19597,19599,19603,19616,19619,19622,19638,19641,19656,19660,19687,19703,19706,19708,19711,19720,19738,19739,19740,19743,19747,19749,19750,19761,19763,19766,19770,19796,19824,19826,19827,19828,19829,19831,19837,19839,19842,19843,19846,19850,19851,19852,19853,19854,19856,19868,19874,19875,19877,19887,19896,19901,19918,19929,19937,19946,19947,19948,19949,19950,19952,19954,19955,19956,19957,19958,19959,19963,19964,19966,19967,19968,19969,19970,19971,19972,19973,19975,19976,19983,19999,20000,20001,20002,20003,20041,20047,20076,20125,20126,20128,20129,20133,20145,20155,20160,20170,20199,20206,20255,20271,20277,20286,20326,20367,20387,20422,20467,20493,20495,20496,20498,20500,20503,20505,20506,20512,20513,20519,20527,20530,20542,20545,20547,20556,20565,20568,20579,20609,20610,20612,20615,20616,20619,20621,20656,20657,20659,20668,20670,20682,20683,20689,20698,20702,20707,20710,20725,20734,20744,20747,20749,20751,20753,20756,20764,20782,20783,20788,20790,20798,20807,20827,20851,20853,20859,20863,20868,20869,20898,20899,20913,20916,20922,20926,20941,20946,20950,20953,20954,20956,20958,20963,20964,20972,20978,20994,21000,21009,21011,21014,21016,21017,21019,21022,21024,21030,21032,21043,21044,21046,21054,21058,21072,21077,21081,21085,21086,21087,21088,21093,21102,21123,21132,21136,21159,21169,21178,21185,21201,21206,21209,21225,21232,21244,21250,21266,21282,21287,21290,21292,21297,21304,21310,21315,21346,21349,21360,21376,21400,21406,21408,21413,21415,21418,21422,21427,21439,21449,21465,21481,21523,21579,21582,21590,21591,21595,21597,21604,21606,21608,21614,21624,21648,21661,21668,21671,21672,21673,21685,21701,21713,21740,21743,21978,21989,22031,22046,22050,22077,22082,22095,22097,22102,22104,22105,22109,22129,22132,22133,22134,22139,22159,22220,22221,22234,22239,22241,22250,22279,22292,22294,22303,22334,22339,22349,22351,22359,22362,22365,22377,22390,22396,22407,22415,22478,22481,22502,22522,22530,22532,22578,22595,22636,22640,22653,22654,22670,22788,22795,22813,22814,22841,22852,22854,22857,22859,22878,22879,22885,22936,22957,22958,22961,23008,23012,23023,23025,23095,23123,23126,23137,23144]]],["+",[303,287,[[0,12,12,0,12,[[5,1,1,0,1],[14,1,1,1,2],[16,2,2,2,4],[17,2,2,4,6],[20,1,1,6,7],[21,3,3,7,10],[24,1,1,10,11],[47,1,1,11,12]]],[1,6,6,12,18,[[59,1,1,12,13],[61,1,1,13,14],[78,2,2,14,16],[79,1,1,16,17],[87,1,1,17,18]]],[2,19,19,18,37,[[90,1,1,18,19],[93,2,2,19,21],[95,1,1,21,22],[96,1,1,22,23],[98,1,1,23,24],[102,1,1,24,25],[105,1,1,25,26],[106,1,1,26,27],[109,2,2,27,29],[111,1,1,29,30],[112,1,1,30,31],[113,1,1,31,32],[114,1,1,32,33],[116,4,4,33,37]]],[3,67,66,37,103,[[117,15,15,37,52],[119,8,8,52,60],[120,7,7,60,67],[123,12,12,67,79],[124,5,4,79,83],[130,1,1,83,84],[131,3,3,84,87],[132,1,1,87,88],[133,1,1,88,89],[134,1,1,89,90],[141,1,1,90,91],[142,3,3,91,94],[144,3,3,94,97],[145,4,4,97,101],[148,1,1,101,102],[152,1,1,102,103]]],[4,5,5,103,108,[[155,1,1,103,104],[175,1,1,104,105],[176,1,1,105,106],[177,1,1,106,107],[185,1,1,107,108]]],[5,4,4,108,112,[[188,1,1,108,109],[190,1,1,109,110],[207,2,2,110,112]]],[6,14,12,112,124,[[213,1,1,112,113],[214,3,2,113,115],[218,1,1,115,116],[221,2,2,116,118],[222,2,1,118,119],[227,2,2,119,121],[228,1,1,121,122],[229,1,1,122,123],[231,1,1,123,124]]],[8,5,5,124,129,[[236,1,1,124,125],[244,1,1,125,126],[249,1,1,126,127],[253,1,1,127,128],[255,1,1,128,129]]],[9,12,12,129,141,[[268,1,1,129,130],[270,1,1,130,131],[274,1,1,131,132],[275,1,1,132,133],[278,1,1,133,134],[279,1,1,134,135],[283,1,1,135,136],[287,2,2,136,138],[288,2,2,138,140],[289,1,1,140,141]]],[10,6,6,141,147,[[293,1,1,141,142],[299,2,2,142,144],[301,1,1,144,145],[302,1,1,145,146],[310,1,1,146,147]]],[11,8,8,147,155,[[314,2,2,147,149],[317,1,1,149,150],[321,1,1,150,151],[322,1,1,151,152],[326,1,1,152,153],[327,1,1,153,154],[332,1,1,154,155]]],[12,20,19,155,174,[[342,1,1,155,156],[343,1,1,156,157],[345,1,1,157,158],[346,1,1,158,159],[348,1,1,159,160],[349,2,2,160,162],[354,1,1,162,163],[355,1,1,163,164],[360,4,3,164,167],[361,1,1,167,168],[363,4,4,168,172],[364,1,1,172,173],[365,1,1,173,174]]],[13,15,14,174,188,[[377,1,1,174,175],[379,1,1,175,176],[391,2,2,176,178],[392,1,1,178,179],[393,1,1,179,180],[394,1,1,180,181],[397,2,2,181,183],[399,1,1,183,184],[401,5,4,184,188]]],[14,37,33,188,221,[[404,1,1,188,189],[405,1,1,189,190],[409,1,1,190,191],[410,19,16,191,207],[412,15,14,207,221]]],[15,11,8,221,229,[[421,1,1,221,222],[422,1,1,222,223],[423,7,4,223,227],[424,1,1,227,228],[425,1,1,228,229]]],[17,3,3,229,232,[[440,1,1,229,230],[451,1,1,230,231],[476,1,1,231,232]]],[18,12,11,232,243,[[489,1,1,232,233],[495,2,2,233,235],[498,1,1,235,236],[506,1,1,236,237],[522,1,1,237,238],[539,2,1,238,239],[555,1,1,239,240],[566,1,1,240,241],[591,2,2,241,243]]],[19,1,1,243,244,[[658,1,1,243,244]]],[22,6,6,244,250,[[683,1,1,244,245],[717,1,1,245,246],[729,1,1,246,247],[730,1,1,247,248],[732,1,1,248,249],[734,1,1,249,250]]],[23,7,7,250,257,[[771,1,1,250,251],[784,2,2,251,253],[785,2,2,253,255],[793,2,2,255,257]]],[25,26,23,257,280,[[817,2,2,257,259],[822,2,2,259,261],[824,6,5,261,266],[826,5,4,266,270],[841,1,1,270,271],[844,3,3,271,274],[845,3,2,274,276],[846,1,1,276,277],[847,2,2,277,279],[849,1,1,279,280]]],[26,3,3,280,283,[[850,2,2,280,282],[860,1,1,282,283]]],[28,1,1,283,284,[[878,1,1,283,284]]],[29,1,1,284,285,[[880,1,1,284,285]]],[31,1,1,285,286,[[892,1,1,285,286]]],[37,1,1,286,287,[[914,1,1,286,287]]]],[147,362,409,424,431,432,520,549,559,563,669,1452,1779,1859,2337,2366,2396,2659,2750,2798,2809,2871,2912,2955,3054,3204,3248,3320,3335,3394,3420,3456,3514,3573,3575,3576,3577,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3704,3707,3714,3720,3726,3731,3732,3735,3746,3766,3773,3778,3782,3786,3790,3865,3871,3877,3883,3889,3895,3901,3907,3913,3919,3925,3931,3947,3955,3963,3964,4137,4161,4162,4177,4196,4254,4273,4477,4491,4493,4551,4588,4596,4604,4610,4616,4621,4625,4729,4882,4993,5517,5532,5549,5834,5871,5914,6391,6401,6583,6605,6610,6750,6860,6865,6883,6985,6991,7009,7036,7112,7235,7393,7540,7693,7761,8056,8122,8221,8238,8291,8345,8459,8582,8586,8647,8648,8662,8837,9071,9073,9143,9182,9443,9558,9567,9669,9757,9796,9910,9950,10116,10446,10487,10615,10619,10684,10734,10752,10874,10901,10986,11007,11010,11020,11084,11085,11086,11107,11132,11154,11433,11462,11709,11728,11749,11760,11770,11870,11871,11933,11971,11973,11978,11979,12088,12105,12180,12203,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12216,12219,12220,12254,12270,12272,12273,12274,12277,12278,12279,12280,12281,12282,12285,12286,12295,12513,12558,12592,12610,12612,12613,12659,12699,12958,13259,13916,14067,14162,14163,14201,14309,14599,14836,15117,15373,15826,15828,17289,17740,18419,18685,18710,18724,18758,19599,19952,19955,19967,19972,20128,20129,20788,20790,20964,20972,21016,21019,21022,21024,21030,21085,21086,21088,21093,21523,21591,21595,21597,21606,21608,21648,21661,21671,21713,21740,21743,22050,22349,22390,22578,22936]]],["Beno",[2,2,[[12,2,2,0,2,[[361,2,2,0,2]]]],[11041,11042]]],["Children's",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16879]]],["Son",[62,62,[[18,1,1,0,1,[[479,1,1,0,1]]],[25,61,61,1,62,[[803,2,2,1,3],[804,5,5,3,8],[805,1,1,8,9],[807,1,1,9,10],[809,4,4,10,14],[812,2,2,14,16],[813,5,5,16,21],[814,1,1,21,22],[815,2,2,22,24],[816,1,1,24,25],[817,1,1,25,26],[818,1,1,26,27],[821,2,2,27,29],[822,2,2,29,31],[823,2,2,31,33],[824,2,2,33,35],[825,2,2,35,37],[826,1,1,37,38],[827,1,1,38,39],[829,3,3,39,42],[830,2,2,42,44],[831,2,2,44,46],[832,1,1,46,47],[833,2,2,47,49],[834,2,2,49,51],[835,1,1,51,52],[836,1,1,52,53],[837,1,1,53,54],[838,2,2,54,56],[839,1,1,56,57],[841,1,1,57,58],[844,2,2,58,60],[845,1,1,60,61],[848,1,1,61,62]]]],[13952,20493,20495,20503,20505,20506,20512,20519,20545,20565,20609,20610,20612,20616,20657,20670,20682,20689,20698,20702,20707,20710,20734,20744,20756,20764,20827,20898,20941,20946,20953,20994,21000,21009,21043,21058,21072,21085,21102,21159,21169,21178,21185,21201,21206,21225,21232,21250,21266,21282,21304,21315,21346,21376,21400,21408,21427,21481,21579,21590,21604,21685]]],["appointed",[3,3,[[18,2,2,0,2,[[556,1,1,0,1],[579,1,1,1,2]]],[19,1,1,2,3,[[658,1,1,2,3]]]],[15196,15541,17292]]],["arrows",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20367]]],["born",[2,2,[[0,1,1,0,1,[[14,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[363,17340]]],["bough",[2,1,[[0,2,1,0,1,[[48,2,1,0,1]]]],[1495]]],["branch",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15213]]],["breed",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5772]]],["calves",[2,2,[[8,2,2,0,2,[[241,2,2,0,2]]]],[7338,7341]]],["child",[9,9,[[4,1,1,0,1,[[177,1,1,0,1]]],[9,1,1,1,2,[[278,1,1,1,2]]],[10,4,4,2,6,[[293,3,3,2,5],[303,1,1,5,6]]],[11,1,1,6,7,[[316,1,1,6,7]]],[20,1,1,7,8,[[662,1,1,7,8]]],[23,1,1,8,9,[[764,1,1,8,9]]]],[5552,8300,8835,8836,8842,9186,9617,17389,19437]]],["children",[1497,1241,[[0,41,36,0,36,[[2,1,1,0,1],[9,3,3,1,4],[10,1,1,4,5],[17,1,1,5,6],[18,1,1,6,7],[21,1,1,7,8],[22,5,4,8,12],[24,2,2,12,14],[29,1,1,14,15],[30,3,1,15,16],[31,2,2,16,18],[32,1,1,18,19],[35,9,9,19,28],[36,1,1,28,29],[44,3,2,29,31],[45,1,1,31,32],[48,2,2,32,34],[49,3,2,34,36]]],[1,132,126,36,162,[[50,5,5,36,41],[51,2,2,41,43],[52,6,6,43,49],[53,2,2,49,51],[54,3,3,51,54],[55,9,8,54,62],[56,3,3,62,65],[58,3,3,65,68],[59,2,2,68,70],[60,2,2,70,72],[61,10,10,72,82],[62,5,5,82,87],[63,10,8,87,95],[64,2,2,95,97],[65,10,10,97,107],[66,3,3,107,110],[68,3,3,110,113],[69,2,2,113,115],[70,1,1,115,116],[71,1,1,116,117],[73,3,3,117,120],[74,2,2,120,122],[76,2,2,122,124],[77,8,8,124,132],[78,4,3,132,135],[79,4,3,135,138],[80,3,3,138,141],[81,2,2,141,143],[82,2,2,143,145],[83,6,5,145,150],[84,5,5,150,155],[85,1,1,155,156],[88,5,5,156,161],[89,1,1,161,162]]],[2,57,54,162,216,[[90,1,1,162,163],[93,1,1,163,164],[95,1,1,164,165],[96,6,5,165,170],[98,1,1,170,171],[99,2,2,171,173],[100,1,1,173,174],[101,1,1,174,175],[104,2,2,175,177],[105,5,5,177,182],[106,4,4,182,186],[107,1,1,186,187],[108,2,2,187,189],[109,1,1,189,190],[110,1,1,190,191],[111,5,5,191,196],[112,6,6,196,202],[113,6,5,202,207],[114,7,6,207,213],[115,1,1,213,214],[116,2,2,214,216]]],[3,254,229,216,445,[[117,20,19,216,235],[118,13,13,235,248],[119,13,12,248,260],[121,6,5,260,265],[122,3,3,265,268],[123,10,10,268,278],[124,15,10,278,288],[125,10,9,288,297],[126,13,13,297,310],[127,1,1,310,311],[129,5,5,311,316],[130,8,8,316,324],[131,7,7,324,331],[132,3,3,331,334],[133,5,5,334,339],[134,14,13,339,352],[135,3,3,352,355],[136,6,6,355,361],[137,3,2,361,363],[138,3,3,363,366],[140,1,1,366,367],[141,5,4,367,371],[142,12,11,371,382],[143,5,5,382,387],[144,1,1,387,388],[145,1,1,388,389],[146,1,1,389,390],[147,8,8,390,398],[148,22,15,398,413],[149,6,6,413,419],[150,14,12,419,431],[151,5,5,431,436],[152,12,9,436,445]]],[4,66,58,445,503,[[153,3,3,445,448],[154,10,8,448,456],[155,3,3,456,459],[156,7,6,459,465],[157,2,2,465,467],[158,1,1,467,468],[161,2,1,468,469],[162,2,1,469,470],[163,3,3,470,473],[164,2,2,473,475],[165,1,1,475,476],[166,1,1,476,477],[169,1,1,477,478],[173,1,1,478,479],[175,1,1,479,480],[176,2,1,480,481],[180,3,3,481,484],[181,3,3,484,487],[182,1,1,487,488],[183,5,4,488,492],[184,8,7,492,499],[185,2,2,499,501],[186,2,2,501,503]]],[5,185,131,503,634,[[187,1,1,503,504],[189,2,2,504,506],[190,11,7,506,513],[191,8,7,513,520],[192,1,1,520,521],[193,4,3,521,524],[194,2,2,524,526],[195,3,3,526,529],[196,5,5,529,534],[197,3,3,534,537],[198,4,4,537,541],[199,13,11,541,552],[200,5,4,552,556],[201,7,6,556,562],[202,6,5,562,567],[203,13,6,567,573],[204,11,9,573,582],[205,22,16,582,598],[206,2,2,598,600],[207,18,17,600,617],[208,41,15,617,632],[210,3,2,632,634]]],[6,123,102,634,736,[[211,8,6,634,640],[212,3,3,640,643],[213,12,10,643,653],[214,6,5,653,658],[216,7,7,658,665],[217,1,1,665,666],[218,5,5,666,671],[220,13,9,671,680],[221,17,15,680,695],[222,3,3,695,698],[223,1,1,698,699],[224,2,2,699,701],[228,6,6,701,707],[229,1,1,707,708],[230,31,21,708,729],[231,7,7,729,736]]],[8,17,16,736,752,[[237,2,2,736,738],[242,5,4,738,742],[245,2,2,742,744],[246,1,1,744,745],[247,1,1,745,746],[249,2,2,746,748],[250,1,1,748,749],[252,1,1,749,750],[261,1,1,750,751],[265,1,1,751,752]]],[9,26,23,752,775,[[267,1,1,752,753],[268,1,1,753,754],[273,4,4,754,758],[276,11,9,758,767],[277,1,1,767,768],[278,4,4,768,772],[283,1,1,772,773],[287,2,1,773,774],[289,1,1,774,775]]],[10,31,29,775,804,[[292,1,1,775,776],[294,1,1,776,777],[296,2,2,777,779],[298,5,5,779,784],[299,3,2,784,786],[301,3,3,786,789],[302,3,3,789,792],[304,1,1,792,793],[308,1,1,793,794],[309,2,2,794,796],[310,7,6,796,802],[311,2,2,802,804]]],[11,29,25,804,829,[[316,1,1,804,805],[320,2,2,805,807],[322,3,2,807,809],[325,1,1,809,810],[326,3,1,810,811],[328,1,1,811,812],[329,9,8,812,820],[330,1,1,820,821],[331,2,2,821,823],[333,2,2,823,825],[335,3,3,825,828],[336,1,1,828,829]]],[12,59,52,829,881,[[338,1,1,829,830],[339,4,4,830,834],[341,2,1,834,835],[342,3,3,835,838],[343,7,5,838,843],[344,5,4,843,847],[346,5,3,847,850],[348,1,1,850,851],[349,6,6,851,857],[352,2,2,857,859],[353,1,1,859,860],[354,1,1,860,861],[356,11,10,861,871],[357,2,2,871,873],[361,1,1,873,874],[363,1,1,874,875],[364,5,5,875,880],[365,1,1,880,881]]],[13,52,44,881,925,[[371,2,2,881,883],[372,3,3,883,886],[373,1,1,886,887],[374,4,3,887,890],[376,2,2,890,892],[377,1,1,892,893],[379,5,4,893,897],[386,8,6,897,903],[387,1,1,903,904],[391,7,5,904,909],[393,2,1,909,910],[394,5,4,910,914],[396,3,3,914,917],[397,3,3,917,920],[399,3,3,920,923],[400,1,1,923,924],[401,1,1,924,925]]],[14,108,65,925,990,[[404,98,55,925,980],[405,1,1,980,981],[406,1,1,981,982],[408,3,3,982,985],[410,1,1,985,986],[411,1,1,986,987],[412,3,3,987,990]]],[15,107,64,990,1054,[[413,2,1,990,991],[414,1,1,991,992],[417,2,1,992,993],[419,89,49,993,1042],[420,2,2,1042,1044],[421,3,3,1044,1047],[422,2,1,1047,1048],[423,2,2,1048,1050],[424,1,1,1050,1051],[425,3,3,1051,1054]]],[16,1,1,1054,1055,[[430,1,1,1054,1055]]],[17,9,8,1055,1063,[[440,1,1,1055,1056],[443,1,1,1056,1057],[452,1,1,1057,1058],[455,1,1,1058,1059],[456,1,1,1059,1060],[462,1,1,1060,1061],[465,2,1,1061,1062],[476,1,1,1062,1063]]],[18,46,44,1063,1107,[[488,1,1,1063,1064],[491,1,1,1064,1065],[494,1,1,1065,1066],[511,1,1,1066,1067],[513,1,1,1067,1068],[522,1,1,1068,1069],[530,1,1,1069,1070],[543,1,1,1070,1071],[546,1,1,1071,1072],[549,1,1,1072,1073],[550,1,1,1073,1074],[555,4,3,1074,1077],[559,1,1,1077,1078],[560,1,1,1078,1079],[566,1,1,1079,1080],[567,2,2,1080,1082],[579,1,1,1082,1083],[580,3,3,1083,1086],[582,1,1,1086,1087],[584,4,4,1087,1091],[586,2,2,1091,1093],[590,1,1,1093,1094],[592,2,2,1094,1096],[604,2,2,1096,1098],[605,2,2,1098,1100],[609,2,1,1100,1101],[614,1,1,1101,1102],[621,2,2,1102,1104],[624,1,1,1104,1105],[625,1,1,1105,1106],[626,1,1,1106,1107]]],[19,11,10,1107,1117,[[631,1,1,1107,1108],[632,1,1,1108,1109],[634,1,1,1109,1110],[635,1,1,1110,1111],[640,1,1,1111,1112],[641,1,1,1112,1113],[642,1,1,1113,1114],[644,2,1,1114,1115],[647,1,1,1115,1116],[658,1,1,1116,1117]]],[21,1,1,1117,1118,[[671,1,1,1117,1118]]],[22,25,23,1118,1141,[[679,2,2,1118,1120],[689,1,1,1120,1121],[691,1,1,1121,1122],[692,1,1,1122,1123],[695,2,2,1123,1125],[699,1,1,1125,1126],[705,1,1,1126,1127],[708,3,2,1127,1129],[709,1,1,1129,1130],[715,2,2,1130,1132],[716,1,1,1132,1133],[727,3,3,1133,1136],[732,3,2,1136,1138],[741,1,1,1138,1139],[744,2,2,1139,1141]]],[23,39,33,1141,1174,[[746,3,3,1141,1144],[747,4,4,1144,1148],[748,1,1,1148,1149],[749,1,1,1149,1150],[750,1,1,1150,1151],[751,2,2,1151,1153],[753,1,1,1153,1154],[754,1,1,1154,1155],[760,2,2,1155,1157],[761,2,2,1157,1159],[762,1,1,1159,1160],[767,1,1,1160,1161],[769,1,1,1161,1162],[774,1,1,1162,1163],[775,3,2,1163,1165],[776,7,4,1165,1169],[782,1,1,1169,1170],[791,1,1,1170,1171],[793,1,1,1171,1172],[794,4,2,1172,1174]]],[24,2,2,1174,1176,[[797,1,1,1174,1175],[799,1,1,1175,1176]]],[25,29,26,1176,1202,[[803,2,2,1176,1178],[804,1,1,1178,1179],[805,1,1,1179,1180],[807,1,1,1180,1181],[817,4,3,1181,1184],[821,2,2,1184,1186],[824,1,1,1186,1187],[832,1,1,1187,1188],[834,4,4,1188,1192],[836,1,1,1192,1193],[838,5,4,1193,1197],[844,1,1,1197,1198],[845,2,2,1198,1200],[848,2,1,1200,1201],[849,1,1,1201,1202]]],[26,2,2,1202,1204,[[860,1,1,1202,1203],[861,1,1,1203,1204]]],[27,17,15,1204,1219,[[862,3,2,1204,1206],[863,2,1,1206,1207],[864,3,3,1207,1210],[865,2,2,1210,1212],[866,1,1,1212,1213],[870,2,2,1213,1215],[871,2,2,1215,1217],[872,1,1,1217,1218],[874,1,1,1218,1219]]],[28,10,6,1219,1225,[[876,4,1,1219,1220],[877,1,1,1220,1221],[878,5,4,1221,1225]]],[29,7,6,1225,1231,[[879,1,1,1225,1226],[880,1,1,1226,1227],[881,2,2,1227,1229],[882,1,1,1229,1230],[887,2,1,1230,1231]]],[30,2,2,1231,1233,[[888,2,2,1231,1233]]],[32,2,2,1233,1235,[[893,1,1,1233,1234],[897,1,1,1234,1235]]],[35,3,3,1235,1238,[[906,1,1,1235,1236],[907,2,2,1236,1238]]],[37,2,2,1238,1240,[[920,2,2,1238,1240]]],[38,2,1,1240,1241,[[928,2,1,1240,1241]]]],[71,255,256,257,271,443,495,567,576,578,581,589,662,680,831,916,939,960,979,1061,1062,1063,1064,1065,1066,1067,1068,1071,1086,1368,1379,1394,1481,1505,1529,1531,1533,1539,1541,1544,1545,1577,1579,1588,1589,1590,1592,1593,1594,1630,1632,1646,1647,1651,1660,1661,1664,1666,1667,1668,1681,1682,1687,1689,1690,1748,1768,1777,1797,1800,1813,1816,1842,1843,1844,1847,1851,1853,1856,1858,1866,1867,1869,1880,1882,1885,1886,1891,1892,1897,1899,1904,1905,1911,1918,1921,1939,1948,1949,1950,1953,1956,1957,1959,1962,1964,1982,1984,1986,1990,2027,2029,2032,2056,2073,2082,2137,2182,2188,2194,2197,2217,2292,2293,2294,2302,2304,2305,2314,2322,2323,2331,2364,2379,2381,2394,2398,2413,2433,2436,2437,2458,2466,2478,2479,2503,2526,2528,2530,2531,2532,2535,2551,2560,2561,2569,2670,2671,2678,2696,2706,2743,2747,2797,2867,2902,2908,2913,2915,2917,2956,2988,2991,2999,3046,3170,3199,3206,3217,3220,3222,3235,3237,3240,3247,3249,3253,3283,3299,3320,3369,3371,3372,3384,3387,3401,3404,3412,3426,3436,3445,3446,3448,3454,3456,3461,3469,3471,3502,3510,3515,3523,3524,3570,3572,3604,3606,3614,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3653,3656,3657,3658,3660,3661,3663,3665,3668,3670,3678,3683,3685,3687,3690,3691,3692,3696,3700,3701,3704,3707,3730,3732,3733,3734,3737,3738,3742,3794,3796,3798,3801,3804,3825,3846,3850,3874,3880,3886,3892,3898,3904,3910,3916,3922,3928,3945,3948,3949,3950,3953,3955,3956,3957,3958,3959,3967,3969,3970,3972,3975,3982,3983,3984,3987,4000,4002,4003,4004,4007,4008,4010,4011,4012,4013,4014,4015,4016,4028,4077,4078,4099,4101,4107,4110,4113,4115,4118,4126,4135,4141,4147,4155,4171,4178,4179,4182,4185,4191,4232,4234,4235,4246,4249,4250,4253,4256,4262,4263,4265,4268,4276,4277,4278,4279,4280,4281,4283,4285,4289,4291,4298,4299,4312,4323,4324,4330,4333,4335,4350,4364,4376,4378,4380,4463,4477,4479,4482,4484,4491,4493,4494,4500,4504,4507,4533,4540,4551,4552,4553,4562,4565,4566,4574,4575,4579,4648,4649,4666,4673,4676,4680,4694,4706,4711,4718,4719,4720,4724,4725,4727,4735,4736,4743,4746,4747,4749,4751,4752,4755,4757,4761,4763,4765,4798,4800,4811,4818,4829,4830,4836,4838,4839,4840,4841,4842,4843,4844,4845,4847,4853,4855,4860,4879,4880,4881,4882,4883,4884,4886,4887,4888,4892,4895,4928,4931,4942,4946,4947,4950,4957,4960,4967,4975,4986,4991,4993,5014,5029,5044,5048,5049,5050,5062,5082,5093,5159,5192,5210,5227,5229,5265,5268,5285,5291,5384,5462,5508,5541,5665,5666,5668,5680,5701,5708,5710,5741,5747,5750,5751,5763,5766,5778,5804,5807,5809,5810,5811,5819,5847,5848,5853,5894,5902,5915,5916,5917,5918,5922,5931,5932,5935,5936,5937,5940,5941,5944,5946,5950,5977,5988,5999,6033,6034,6054,6055,6063,6068,6075,6076,6084,6085,6121,6126,6129,6131,6132,6136,6137,6160,6164,6167,6169,6176,6177,6178,6179,6182,6183,6185,6188,6191,6192,6193,6203,6214,6215,6222,6223,6265,6266,6269,6270,6273,6274,6277,6283,6287,6288,6289,6291,6294,6295,6296,6303,6304,6307,6313,6314,6321,6322,6329,6330,6331,6337,6338,6344,6345,6352,6353,6360,6361,6368,6369,6370,6372,6374,6381,6382,6384,6385,6386,6387,6388,6389,6390,6391,6394,6400,6401,6407,6408,6415,6421,6422,6435,6436,6437,6438,6439,6441,6447,6450,6451,6453,6456,6457,6458,6459,6460,6480,6508,6510,6517,6518,6525,6530,6543,6549,6551,6556,6570,6573,6575,6576,6577,6580,6581,6582,6583,6595,6600,6602,6604,6622,6623,6655,6656,6657,6660,6661,6662,6687,6706,6729,6737,6747,6752,6753,6817,6818,6819,6820,6821,6822,6826,6828,6829,6833,6834,6835,6837,6838,6841,6842,6843,6844,6856,6857,6858,6859,6861,6862,6870,6871,6872,6885,6925,6926,6995,7015,7016,7018,7019,7023,7054,7055,7057,7061,7067,7068,7069,7072,7073,7075,7077,7078,7079,7080,7081,7082,7084,7085,7086,7089,7090,7102,7107,7108,7115,7120,7122,7125,7126,7245,7268,7356,7358,7359,7360,7436,7445,7453,7472,7526,7555,7566,7671,7924,8000,8040,8074,8186,8187,8190,8194,8241,8242,8243,8246,8248,8250,8251,8254,8259,8260,8289,8295,8312,8317,8476,8582,8682,8774,8874,8897,8909,8986,8994,9010,9024,9048,9057,9072,9110,9115,9141,9168,9175,9184,9242,9361,9397,9401,9411,9413,9415,9423,9435,9437,9464,9477,9610,9739,9746,9806,9823,9876,9902,9966,9990,9991,9992,10005,10007,10014,10017,10024,10028,10064,10073,10121,10128,10171,10175,10178,10204,10295,10316,10336,10337,10338,10412,10439,10442,10451,10457,10487,10518,10519,10531,10547,10564,10568,10575,10618,10633,10638,10704,10736,10744,10745,10746,10749,10750,10795,10806,10833,10872,10908,10909,10910,10913,10914,10916,10918,10919,10922,10926,10927,10929,11017,11087,11110,11112,11119,11123,11129,11151,11270,11278,11293,11298,11312,11327,11348,11354,11355,11412,11413,11437,11460,11465,11469,11471,11588,11597,11600,11606,11609,11610,11638,11708,11711,11715,11716,11718,11760,11767,11772,11774,11776,11833,11836,11848,11855,11859,11860,11910,11914,11917,11966,11983,12028,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12041,12042,12043,12044,12045,12046,12047,12048,12051,12052,12053,12056,12057,12058,12059,12060,12061,12062,12063,12064,12065,12066,12067,12068,12069,12070,12071,12072,12073,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12084,12085,12087,12088,12098,12111,12170,12171,12172,12236,12249,12259,12268,12296,12302,12317,12387,12426,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12439,12440,12441,12442,12443,12444,12445,12454,12455,12456,12457,12458,12459,12460,12461,12462,12463,12464,12465,12466,12467,12468,12469,12470,12471,12472,12473,12474,12475,12476,12477,12478,12479,12480,12482,12483,12493,12507,12510,12512,12534,12535,12588,12591,12619,12671,12673,12687,12695,12790,12955,13033,13265,13336,13374,13495,13565,13922,14063,14082,14117,14399,14445,14613,14721,14878,14943,15004,15035,15118,15119,15122,15239,15249,15356,15381,15394,15549,15556,15562,15566,15612,15707,15714,15720,15730,15764,15765,15822,15844,15846,16124,16125,16129,16132,16163,16229,16312,16316,16364,16385,16387,16491,16524,16599,16634,16769,16798,16818,16879,16961,17312,17543,17656,17658,17898,17924,17949,17986,17992,18052,18163,18218,18226,18256,18355,18364,18409,18653,18656,18661,18724,18736,18874,18930,18942,18974,18981,18995,19016,19021,19023,19024,19049,19065,19090,19137,19149,19201,19221,19350,19351,19359,19376,19405,19491,19555,19687,19706,19708,19749,19761,19763,19770,19918,20076,20133,20170,20199,20326,20387,20495,20496,20513,20542,20568,20783,20798,20807,20913,20916,21046,21244,21282,21292,21297,21310,21349,21413,21415,21418,21422,21579,21608,21614,21701,21713,22077,22082,22104,22105,22109,22129,22132,22133,22134,22139,22159,22220,22221,22234,22239,22250,22279,22294,22334,22349,22351,22359,22362,22377,22390,22396,22407,22415,22502,22522,22530,22595,22636,22795,22813,22814,23023,23025,23144]]],["children's",[15,15,[[0,2,2,0,2,[[30,1,1,0,1],[44,1,1,1,2]]],[1,2,2,2,4,[[58,1,1,2,3],[83,1,1,3,4]]],[4,1,1,4,5,[[156,1,1,4,5]]],[5,1,1,5,6,[[200,1,1,5,6]]],[11,1,1,6,7,[[329,1,1,6,7]]],[17,1,1,7,8,[[454,1,1,7,8]]],[18,2,2,8,10,[[580,1,1,8,9],[605,1,1,9,10]]],[19,1,1,10,11,[[640,1,1,10,11]]],[23,2,2,11,13,[[746,1,1,11,12],[775,1,1,12,13]]],[25,2,2,13,15,[[819,1,1,13,14],[838,1,1,14,15]]]],[889,1368,1746,2503,5029,6196,10024,13314,15566,16132,16769,18974,19720,20851,21422]]],["colt",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1484]]],["colts",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[943]]],["common",[1,1,[[23,1,1,0,1,[[770,1,1,0,1]]]],[19595]]],["corn",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18045]]],["first",[51,51,[[1,2,2,0,2,[[61,1,1,0,1],[78,1,1,1,2]]],[2,5,5,2,7,[[98,1,1,2,3],[101,1,1,3,4],[112,3,3,4,7]]],[3,43,43,7,50,[[122,2,2,7,9],[123,26,26,9,35],[144,5,5,35,40],[145,10,10,40,50]]],[25,1,1,50,51,[[847,1,1,50,51]]]],[1821,2374,2956,3050,3414,3420,3421,3835,3837,3865,3867,3871,3873,3877,3879,3883,3885,3889,3891,3895,3897,3901,3903,3907,3909,3913,3915,3919,3921,3925,3927,3931,3933,3937,3938,4580,4586,4588,4596,4604,4610,4616,4621,4625,4628,4631,4634,4637,4640,4644,21668]]],["foal",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23008]]],["in",[1,1,[[31,1,1,0,1,[[892,1,1,0,1]]]],[22578]]],["man",[3,3,[[8,1,1,0,1,[[249,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]],[10,1,1,2,3,[[291,1,1,2,3]]]],[7560,8115,8769]]],["men",[11,11,[[9,2,2,0,2,[[269,1,1,0,1],[283,1,1,1,2]]],[12,1,1,2,3,[[363,1,1,2,3]]],[17,1,1,3,4,[[436,1,1,3,4]]],[23,1,1,4,5,[[793,1,1,4,5]]],[25,6,6,5,11,[[824,1,1,5,6],[826,2,2,6,8],[828,2,2,8,10],[831,1,1,10,11]]]],[8115,8459,11109,12872,20155,21014,21087,21093,21132,21136,21209]]],["old",[86,84,[[0,18,18,0,18,[[4,1,1,0,1],[6,1,1,1,2],[10,1,1,2,3],[11,1,1,3,4],[15,1,1,4,5],[16,5,5,5,10],[20,2,2,10,12],[24,2,2,12,14],[25,1,1,14,15],[36,1,1,15,16],[40,1,1,16,17],[49,1,1,17,18]]],[1,2,1,18,19,[[56,2,1,18,19]]],[2,3,3,19,22,[[116,3,3,19,22]]],[3,8,8,22,30,[[120,7,7,22,29],[149,1,1,29,30]]],[4,2,2,30,32,[[183,1,1,30,31],[186,1,1,31,32]]],[5,2,2,32,34,[[200,2,2,32,34]]],[6,1,1,34,35,[[212,1,1,34,35]]],[8,1,1,35,36,[[239,1,1,35,36]]],[9,5,5,36,41,[[268,1,1,36,37],[270,1,1,37,38],[271,1,1,38,39],[285,2,2,39,41]]],[10,2,2,41,43,[[304,1,1,41,42],[312,1,1,42,43]]],[11,16,16,43,59,[[320,2,2,43,45],[323,1,1,45,46],[326,2,2,46,48],[327,2,2,48,50],[328,1,1,50,51],[330,1,1,51,52],[333,2,2,52,54],[334,1,1,54,55],[335,2,2,55,57],[336,2,2,57,59]]],[12,1,1,59,60,[[339,1,1,59,60]]],[13,21,21,60,81,[[378,1,1,60,61],[386,1,1,61,62],[387,2,2,62,64],[388,1,1,64,65],[390,2,2,65,67],[391,1,1,67,68],[392,2,2,68,70],[393,2,2,70,72],[394,1,1,72,73],[395,1,1,73,74],[399,2,2,74,76],[400,1,1,76,77],[402,4,4,77,81]]],[22,2,1,81,82,[[743,2,1,81,82]]],[23,1,1,82,83,[[796,1,1,82,83]]],[32,1,1,83,84,[[898,1,1,83,84]]]],[137,165,276,302,397,398,409,414,421,422,517,518,678,684,726,1085,1241,1532,1692,3573,3575,3576,3746,3766,3773,3778,3782,3786,3790,4799,5730,5846,6194,6197,6553,7312,8059,8124,8136,8543,8546,9239,9522,9744,9753,9850,9898,9917,9927,9958,9965,10026,10120,10138,10146,10196,10201,10210,10220,10327,11450,11618,11629,11644,11646,11678,11692,11705,11733,11735,11756,11763,11765,11792,11909,11929,11934,11995,11998,12002,12004,18917,20277,22654]]],["one",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7486]]],["ones",[3,3,[[17,2,2,0,2,[[474,2,2,0,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[13838,13850,20125]]],["people",[1,1,[[0,1,1,0,1,[[28,1,1,0,1]]]],[796]]],["soldiers",[1,1,[[13,1,1,0,1,[[391,1,1,0,1]]]],[11717]]],["son",[1824,1340,[[0,135,123,0,123,[[3,3,3,0,3],[4,1,1,3,4],[8,1,1,4,5],[10,4,1,5,6],[11,1,1,6,7],[13,1,1,7,8],[15,2,2,8,10],[16,5,5,10,15],[17,2,2,15,17],[18,2,2,17,19],[20,11,9,19,28],[21,7,7,28,35],[22,1,1,35,36],[23,15,15,36,51],[24,4,4,51,55],[26,22,17,55,72],[27,2,2,72,74],[28,7,7,74,81],[29,9,9,81,90],[33,6,6,90,96],[34,1,1,96,97],[35,9,8,97,105],[36,3,3,105,108],[37,5,5,108,113],[41,1,1,113,114],[42,2,1,114,115],[44,2,2,115,117],[45,1,1,117,118],[46,1,1,118,119],[47,2,2,119,121],[48,1,1,121,122],[49,1,1,122,123]]],[1,30,26,123,149,[[50,2,2,123,125],[51,3,3,125,128],[53,4,3,128,131],[55,2,2,131,133],[59,1,1,133,134],[62,2,2,134,136],[69,1,1,136,137],[70,2,2,137,139],[72,1,1,139,140],[80,3,2,140,142],[81,1,1,142,143],[82,1,1,143,144],[84,3,2,144,146],[87,4,3,146,149]]],[2,6,5,149,154,[[101,1,1,149,150],[110,1,1,150,151],[113,3,2,151,153],[114,1,1,153,154]]],[3,146,130,154,284,[[117,12,11,154,165],[118,12,12,165,177],[119,4,4,177,181],[120,3,3,181,184],[123,25,25,184,209],[126,13,13,209,222],[127,1,1,222,223],[129,13,13,223,236],[130,6,3,236,239],[132,5,2,239,241],[136,3,3,241,244],[138,5,5,244,249],[139,2,2,249,251],[140,2,2,251,253],[141,5,3,253,256],[142,4,3,256,259],[143,8,4,259,263],[147,2,2,263,265],[148,7,6,265,271],[150,11,11,271,282],[152,3,2,282,284]]],[4,32,28,284,312,[[153,3,3,284,287],[155,1,1,287,288],[157,1,1,288,289],[158,4,3,289,292],[159,3,2,292,294],[160,1,1,294,295],[162,1,1,295,296],[163,1,1,296,297],[164,1,1,297,298],[165,2,1,298,299],[168,2,2,299,301],[170,1,1,301,302],[173,6,5,302,307],[175,1,1,307,308],[180,1,1,308,309],[183,1,1,309,310],[184,1,1,310,311],[186,1,1,311,312]]],[5,43,34,312,346,[[187,1,1,312,313],[188,2,2,313,315],[192,1,1,315,316],[193,8,4,316,320],[199,2,2,320,322],[200,4,4,322,326],[201,4,4,326,330],[203,6,3,330,333],[204,2,2,333,335],[205,2,2,335,337],[207,2,2,337,339],[208,4,4,339,343],[210,5,3,343,346]]],[6,49,44,346,390,[[211,1,1,346,347],[212,1,1,347,348],[213,4,4,348,352],[214,2,2,352,354],[215,3,3,354,357],[216,3,3,357,360],[217,1,1,360,361],[218,6,5,361,366],[219,10,9,366,375],[220,2,1,375,376],[221,4,4,376,380],[222,2,2,380,382],[223,4,4,382,386],[227,2,2,386,388],[228,2,1,388,389],[230,2,1,389,390]]],[7,2,2,390,392,[[235,2,2,390,392]]],[8,71,57,392,449,[[236,5,2,392,394],[238,2,2,394,396],[239,2,2,396,398],[242,1,1,398,399],[244,6,3,399,402],[245,3,3,402,405],[248,2,2,405,407],[249,9,7,407,414],[251,3,3,414,417],[252,6,5,417,422],[254,2,2,422,424],[255,5,3,424,427],[257,10,7,427,434],[258,2,2,434,436],[259,1,1,436,437],[260,4,4,437,441],[261,6,6,441,447],[262,1,1,447,448],[265,1,1,448,449]]],[9,131,104,449,553,[[267,5,5,449,454],[268,7,5,454,459],[269,9,8,459,467],[270,5,4,467,471],[273,1,1,471,472],[274,8,6,472,478],[275,9,7,478,485],[276,2,2,485,487],[277,2,2,487,489],[278,1,1,489,490],[279,8,6,490,496],[280,4,3,496,499],[281,2,1,499,500],[282,6,6,500,506],[283,3,2,506,508],[284,13,8,508,516],[285,8,6,516,522],[286,11,10,522,532],[287,10,8,532,540],[289,17,13,540,553]]],[10,124,110,553,663,[[291,16,16,553,569],[292,15,12,569,581],[293,12,6,581,587],[294,13,12,587,599],[295,2,2,599,601],[297,1,1,601,602],[298,1,1,602,603],[301,7,7,603,610],[302,5,5,610,615],[304,5,5,615,620],[305,9,8,620,628],[306,15,14,628,642],[307,7,7,642,649],[309,3,2,649,651],[311,2,1,651,652],[312,11,11,652,663]]],[11,146,110,663,773,[[313,2,1,663,664],[315,4,4,664,668],[316,6,6,668,674],[318,7,4,674,678],[320,12,8,678,686],[321,8,5,686,691],[322,4,4,691,695],[323,4,4,695,699],[324,3,1,699,700],[325,10,8,700,708],[326,16,11,708,719],[327,24,20,719,739],[328,6,5,739,744],[329,2,2,744,746],[330,8,5,746,751],[331,3,3,751,754],[332,3,3,754,757],[333,5,5,757,762],[334,6,3,762,765],[335,4,4,765,769],[336,1,1,769,770],[337,8,3,770,773]]],[12,322,161,773,934,[[338,4,4,773,777],[339,3,3,777,780],[340,20,8,780,788],[341,19,9,788,797],[342,20,7,797,804],[343,89,29,804,833],[344,19,9,833,842],[345,5,3,842,845],[346,48,14,845,859],[347,1,1,859,860],[348,19,17,860,877],[349,2,2,877,879],[352,3,1,879,880],[353,1,1,880,881],[354,1,1,881,882],[355,7,5,882,887],[356,2,2,887,889],[357,2,2,889,891],[359,7,7,891,898],[360,1,1,898,899],[361,3,2,899,901],[363,13,6,901,907],[364,23,18,907,925],[365,5,4,925,929],[366,5,5,929,934]]],[13,103,76,934,1010,[[367,3,2,934,936],[368,2,2,936,938],[372,1,1,938,939],[375,2,2,939,941],[376,3,3,941,944],[377,5,4,944,948],[378,1,1,948,949],[379,3,2,949,951],[380,1,1,951,952],[381,1,1,952,953],[383,2,2,953,955],[384,5,5,955,960],[385,2,2,960,962],[386,6,3,962,965],[387,2,2,965,967],[388,9,7,967,974],[389,7,3,974,977],[390,5,4,977,981],[391,7,4,981,985],[392,3,3,985,988],[393,1,1,988,989],[394,8,5,989,994],[395,6,1,994,995],[396,1,1,995,996],[397,1,1,996,997],[398,3,3,997,1000],[399,3,3,1000,1003],[400,6,3,1003,1006],[401,2,2,1006,1008],[402,2,2,1008,1010]]],[14,40,22,1010,1032,[[405,4,2,1010,1012],[409,16,5,1012,1017],[410,15,11,1017,1028],[412,5,4,1028,1032]]],[15,115,50,1032,1082,[[413,1,1,1032,1033],[415,36,22,1033,1055],[418,5,2,1055,1057],[420,1,1,1057,1058],[422,3,3,1058,1061],[423,54,13,1061,1074],[424,12,6,1074,1080],[425,3,2,1080,1082]]],[16,8,6,1082,1088,[[427,3,1,1082,1083],[428,2,2,1083,1085],[433,1,1,1085,1086],[434,2,2,1086,1088]]],[17,4,4,1088,1092,[[460,1,1,1088,1089],[467,2,2,1089,1091],[470,1,1,1091,1092]]],[18,10,10,1092,1102,[[485,1,1,1092,1093],[527,1,1,1093,1094],[549,2,2,1094,1096],[557,1,1,1096,1097],[563,1,1,1097,1098],[566,1,1,1098,1099],[593,1,1,1099,1100],[621,1,1,1100,1101],[623,1,1,1101,1102]]],[19,40,38,1102,1140,[[628,4,4,1102,1106],[629,1,1,1106,1107],[630,4,4,1107,1111],[631,3,3,1111,1114],[632,2,2,1114,1116],[633,3,3,1116,1119],[634,1,1,1119,1120],[637,4,2,1120,1122],[640,2,2,1122,1124],[642,1,1,1124,1125],[644,2,2,1125,1127],[646,4,4,1127,1131],[650,3,3,1131,1134],[651,2,2,1134,1136],[654,1,1,1136,1137],[655,1,1,1137,1138],[656,1,1,1138,1139],[657,1,1,1139,1140]]],[20,4,4,1140,1144,[[659,1,1,1140,1141],[663,1,1,1141,1142],[668,1,1,1142,1143],[670,1,1,1143,1144]]],[22,33,28,1144,1172,[[679,1,1,1144,1145],[680,1,1,1145,1146],[685,9,7,1146,1153],[686,3,3,1153,1156],[687,1,1,1156,1157],[691,1,1,1157,1158],[692,1,1,1158,1159],[697,2,1,1159,1160],[698,1,1,1160,1161],[700,1,1,1161,1162],[714,4,2,1162,1164],[715,3,3,1164,1167],[716,1,1,1167,1168],[717,1,1,1168,1169],[727,1,1,1169,1170],[734,2,2,1170,1172]]],[23,145,97,1172,1269,[[745,4,3,1172,1175],[751,2,2,1175,1177],[759,1,1,1177,1178],[763,2,2,1178,1180],[764,1,1,1180,1181],[765,2,1,1181,1182],[766,3,3,1182,1185],[768,1,1,1185,1186],[769,2,2,1186,1188],[770,4,4,1188,1192],[771,4,3,1192,1195],[772,2,2,1195,1197],[773,5,3,1197,1200],[775,1,1,1200,1201],[776,7,6,1201,1207],[777,1,1,1207,1208],[779,10,8,1208,1216],[780,19,10,1216,1226],[781,6,3,1226,1229],[782,5,2,1229,1231],[783,2,1,1231,1232],[784,18,10,1232,1242],[785,23,13,1242,1255],[786,3,2,1255,1257],[787,8,5,1257,1262],[789,2,1,1262,1263],[790,1,1,1263,1264],[793,2,2,1264,1266],[794,1,1,1266,1267],[795,3,2,1267,1269]]],[25,47,44,1269,1313,[[802,1,1,1269,1270],[803,2,2,1270,1272],[804,1,1,1272,1273],[805,1,1,1273,1274],[806,1,1,1274,1275],[808,1,1,1275,1276],[809,3,3,1276,1279],[812,4,3,1279,1282],[813,1,1,1282,1283],[814,1,1,1283,1284],[815,1,1,1284,1285],[819,7,5,1285,1290],[821,2,2,1290,1292],[822,6,6,1292,1298],[823,1,1,1298,1299],[825,1,1,1299,1300],[828,1,1,1300,1301],[834,4,4,1301,1305],[837,1,1,1305,1306],[838,2,2,1306,1308],[839,1,1,1308,1309],[840,2,2,1309,1311],[844,1,1,1311,1312],[845,1,1,1312,1313]]],[26,2,2,1313,1315,[[857,1,1,1313,1314],[858,1,1,1314,1315]]],[27,6,5,1315,1320,[[862,4,3,1315,1318],[872,1,1,1318,1319],[874,1,1,1319,1320]]],[28,1,1,1320,1321,[[876,1,1,1320,1321]]],[29,2,2,1321,1323,[[879,1,1,1321,1322],[885,1,1,1322,1323]]],[31,1,1,1323,1324,[[889,1,1,1323,1324]]],[32,2,2,1324,1326,[[898,1,1,1324,1325],[899,1,1,1325,1326]]],[35,5,1,1326,1327,[[906,5,1,1326,1327]]],[36,10,6,1327,1333,[[909,6,3,1327,1330],[910,4,3,1330,1333]]],[37,7,5,1333,1338,[[911,4,2,1333,1335],[916,3,3,1335,1338]]],[38,2,2,1338,1340,[[925,1,1,1338,1339],[927,1,1,1339,1340]]]],[96,104,105,133,229,297,303,348,392,396,413,416,420,422,423,434,438,494,495,515,516,517,518,520,522,523,524,526,550,553,554,555,556,557,560,579,594,595,596,597,598,599,606,615,627,628,629,631,635,638,639,664,667,670,677,728,732,733,735,740,742,744,745,747,748,751,753,754,759,764,769,770,778,782,800,807,808,827,828,829,830,835,836,837,840,842,847,849,853,854,982,988,998,1000,1004,1006,1028,1050,1052,1057,1072,1073,1075,1078,1079,1086,1117,1118,1122,1123,1124,1130,1145,1290,1319,1367,1386,1396,1449,1453,1470,1482,1529,1548,1554,1556,1564,1576,1623,1624,1626,1670,1680,1779,1875,1881,2061,2086,2108,2156,2422,2426,2467,2484,2561,2565,2654,2655,2656,3050,3347,3456,3457,3518,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3661,3663,3665,3668,3670,3672,3676,3678,3680,3683,3685,3687,3716,3722,3724,3727,3759,3771,3776,3858,3862,3867,3868,3873,3874,3879,3880,3885,3886,3891,3892,3897,3898,3903,3904,3909,3910,3915,3916,3921,3922,3927,3928,3933,4002,4003,4004,4006,4007,4008,4010,4011,4012,4013,4014,4015,4017,4052,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4114,4138,4146,4195,4231,4336,4337,4339,4377,4379,4380,4385,4391,4434,4435,4449,4461,4478,4482,4485,4490,4522,4554,4555,4558,4562,4572,4670,4672,4730,4746,4751,4757,4758,4759,4833,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4880,4891,4923,4928,4930,4989,5067,5088,5106,5107,5114,5115,5142,5192,5214,5258,5278,5353,5356,5394,5462,5463,5464,5465,5467,5504,5667,5751,5802,5848,5852,5870,5892,5955,5977,5994,5995,6000,6176,6185,6188,6193,6200,6201,6208,6210,6215,6219,6277,6278,6279,6309,6310,6370,6372,6382,6393,6439,6446,6457,6458,6485,6505,6509,6522,6553,6577,6579,6583,6599,6605,6611,6624,6629,6635,6665,6683,6684,6708,6732,6741,6742,6748,6751,6755,6759,6772,6780,6782,6784,6785,6789,6811,6812,6830,6831,6854,6863,6882,6884,6887,6889,6891,6908,6982,6983,7023,7082,7203,7207,7213,7232,7282,7292,7313,7317,7353,7392,7393,7394,7420,7429,7439,7501,7507,7509,7511,7547,7548,7550,7558,7559,7613,7614,7615,7630,7635,7673,7674,7676,7707,7708,7757,7760,7761,7794,7795,7796,7798,7799,7800,7807,7816,7826,7855,7869,7871,7878,7905,7910,7911,7919,7922,7926,7930,7932,7985,8026,8027,8034,8035,8039,8057,8059,8061,8062,8064,8084,8085,8095,8096,8104,8106,8109,8118,8121,8122,8124,8128,8194,8212,8219,8221,8225,8226,8227,8230,8231,8232,8233,8236,8237,8239,8241,8242,8280,8286,8310,8318,8320,8321,8342,8349,8354,8357,8367,8372,8416,8429,8431,8434,8435,8437,8445,8474,8476,8480,8490,8496,8497,8498,8500,8505,8511,8513,8515,8527,8529,8532,8535,8555,8556,8560,8561,8564,8567,8575,8576,8577,8578,8587,8588,8592,8593,8594,8597,8599,8601,8654,8662,8664,8671,8673,8675,8677,8679,8682,8686,8687,8689,8690,8722,8724,8725,8728,8729,8730,8734,8738,8743,8747,8749,8750,8753,8755,8759,8761,8771,8775,8778,8783,8792,8795,8799,8802,8804,8805,8809,8816,8822,8836,8837,8838,8839,8842,8846,8847,8848,8849,8850,8856,8857,8858,8860,8861,8862,8863,8883,8885,8948,9004,9120,9121,9128,9131,9134,9144,9151,9153,9166,9167,9172,9174,9219,9223,9238,9239,9249,9250,9253,9257,9267,9273,9274,9276,9282,9284,9286,9289,9290,9291,9296,9304,9305,9309,9311,9312,9313,9314,9317,9329,9330,9334,9335,9336,9337,9340,9403,9406,9473,9488,9489,9491,9504,9506,9520,9521,9529,9530,9531,9532,9550,9577,9579,9587,9603,9609,9619,9620,9631,9639,9640,9702,9703,9705,9706,9728,9732,9736,9743,9751,9752,9755,9756,9758,9765,9770,9776,9785,9808,9816,9822,9828,9830,9831,9833,9841,9871,9872,9873,9874,9880,9881,9882,9895,9896,9897,9904,9905,9909,9912,9913,9919,9920,9921,9923,9925,9926,9930,9932,9933,9934,9935,9938,9939,9942,9943,9947,9948,9949,9950,9952,9953,9955,9957,9962,9963,9964,9966,9968,9970,9983,9984,10004,10025,10033,10042,10050,10061,10063,10081,10098,10099,10110,10119,10125,10126,10137,10143,10145,10148,10157,10159,10175,10180,10195,10199,10208,10244,10245,10247,10295,10296,10298,10301,10324,10351,10356,10363,10371,10372,10373,10374,10375,10377,10378,10387,10393,10400,10406,10410,10411,10419,10420,10422,10429,10432,10433,10434,10436,10442,10443,10474,10475,10476,10477,10478,10480,10481,10483,10484,10487,10488,10489,10490,10491,10492,10493,10494,10495,10496,10497,10498,10499,10500,10501,10504,10505,10506,10507,10510,10551,10552,10555,10556,10558,10560,10561,10562,10564,10605,10609,10612,10619,10622,10623,10626,10627,10629,10630,10631,10634,10635,10636,10651,10655,10658,10673,10679,10685,10695,10697,10699,10701,10703,10704,10707,10708,10710,10711,10712,10714,10715,10716,10718,10721,10738,10808,10858,10876,10900,10902,10905,10906,10907,10908,10909,10931,10933,10969,10970,10971,10973,10974,10975,10981,10984,11021,11044,11078,11083,11091,11101,11102,11105,11111,11114,11115,11116,11118,11125,11126,11127,11128,11129,11130,11131,11133,11134,11135,11138,11141,11143,11148,11149,11152,11163,11165,11183,11186,11190,11192,11195,11199,11223,11225,11291,11393,11395,11397,11410,11411,11417,11431,11432,11436,11453,11459,11460,11476,11491,11524,11539,11549,11550,11552,11565,11567,11578,11587,11601,11621,11624,11625,11641,11645,11649,11650,11651,11653,11654,11655,11657,11659,11667,11697,11699,11703,11704,11721,11722,11727,11729,11753,11754,11755,11764,11767,11770,11771,11776,11791,11803,11853,11868,11895,11907,11908,11914,11915,11928,11941,11953,11955,11969,11970,11994,12001,12099,12105,12174,12175,12176,12177,12178,12205,12206,12207,12208,12209,12210,12211,12212,12213,12219,12234,12254,12258,12267,12270,12297,12329,12331,12333,12335,12336,12337,12338,12339,12341,12342,12343,12344,12345,12346,12347,12348,12350,12351,12352,12356,12357,12358,12411,12419,12510,12550,12558,12587,12592,12593,12595,12597,12598,12599,12600,12601,12602,12603,12605,12610,12612,12625,12647,12648,12650,12659,12669,12684,12699,12729,12748,12757,12822,12844,12858,13467,13630,13634,13728,14016,14688,15001,15020,15215,15300,15348,15864,16308,16344,16401,16408,16410,16415,16434,16456,16466,16467,16476,16493,16500,16510,16518,16537,16541,16543,16560,16576,16657,16661,16748,16771,16827,16875,16898,16938,16943,16951,16952,17059,17063,17070,17092,17100,17180,17203,17241,17252,17316,17411,17510,17535,17655,17686,17783,17785,17786,17787,17788,17791,17796,17809,17810,17813,17835,17907,17940,18015,18031,18072,18333,18352,18354,18373,18390,18391,18413,18651,18755,18756,18947,18948,18949,19150,19151,19319,19409,19413,19423,19441,19465,19472,19478,19525,19535,19537,19573,19592,19594,19596,19597,19603,19616,19619,19622,19638,19656,19660,19711,19738,19739,19740,19743,19747,19766,19796,19824,19826,19827,19829,19831,19837,19839,19842,19843,19846,19850,19851,19852,19853,19854,19856,19868,19874,19875,19877,19887,19896,19901,19937,19946,19947,19948,19949,19950,19952,19954,19955,19956,19957,19958,19959,19963,19964,19966,19967,19968,19969,19970,19971,19972,19973,19975,19976,19983,19999,20000,20001,20002,20003,20041,20047,20145,20160,20206,20255,20271,20467,20498,20500,20527,20530,20547,20579,20615,20619,20621,20656,20659,20668,20683,20725,20751,20853,20859,20863,20868,20869,20899,20922,20950,20954,20956,20958,20963,20972,20978,21081,21123,21287,21290,21292,21310,21360,21406,21413,21439,21449,21465,21582,21624,21978,21989,22095,22097,22102,22241,22279,22292,22365,22478,22532,22653,22670,22788,22841,22852,22854,22857,22859,22878,22879,22885,22957,22958,22961,23095,23137]]],["son's",[20,19,[[0,11,10,0,10,[[10,1,1,0,1],[15,1,1,1,2],[23,1,1,2,3],[26,2,2,3,5],[29,4,3,5,8],[36,2,2,8,10]]],[1,1,1,10,11,[[59,1,1,10,11]]],[2,3,3,11,14,[[107,3,3,11,14]]],[4,1,1,14,15,[[158,1,1,14,15]]],[6,1,1,15,16,[[218,1,1,15,16]]],[10,1,1,16,17,[[311,1,1,16,17]]],[19,1,1,17,18,[[657,1,1,17,18]]],[23,1,1,18,19,[[771,1,1,18,19]]]],[297,396,642,752,758,844,845,846,1115,1116,1779,3261,3266,3268,5088,6741,9480,17255,19603]]],["sons",[955,843,[[0,133,121,0,121,[[4,9,9,0,9],[5,3,3,9,12],[6,3,2,12,14],[7,2,2,14,16],[8,4,4,16,20],[9,13,11,20,31],[10,8,8,31,39],[18,1,1,39,40],[22,4,4,40,44],[24,7,7,44,51],[26,1,1,51,52],[28,1,1,52,53],[29,2,2,53,55],[30,4,4,55,59],[33,5,5,59,64],[34,8,7,64,71],[35,16,13,71,84],[36,3,2,84,86],[40,1,1,86,87],[41,6,6,87,93],[45,24,20,93,113],[47,3,3,113,116],[48,3,3,116,119],[49,2,2,119,121]]],[1,54,49,121,170,[[52,1,1,121,122],[53,1,1,122,123],[55,9,9,123,132],[59,1,1,132,133],[61,1,1,133,134],[67,3,3,134,137],[70,1,1,137,138],[71,1,1,138,139],[76,1,1,139,140],[77,6,5,140,145],[78,16,13,145,158],[79,2,2,158,160],[80,1,1,160,161],[81,2,2,161,163],[83,3,2,163,165],[84,1,1,165,166],[88,1,1,166,167],[89,3,3,167,170]]],[2,47,45,170,215,[[90,4,4,170,174],[91,1,1,174,175],[92,4,4,175,179],[95,5,5,179,184],[96,3,3,184,187],[97,12,10,187,197],[98,4,4,197,201],[99,7,7,201,208],[105,1,1,208,209],[106,1,1,209,210],[110,2,2,210,212],[111,2,2,212,214],[115,1,1,214,215]]],[3,92,84,215,299,[[118,3,3,215,218],[119,14,14,218,232],[120,19,15,232,247],[122,1,1,247,248],[123,3,3,248,251],[124,3,3,251,254],[126,3,2,254,256],[129,1,1,256,257],[132,7,6,257,263],[134,8,7,263,270],[137,2,2,270,272],[142,23,22,272,294],[143,1,1,294,295],[152,4,4,295,299]]],[4,16,15,299,314,[[153,1,1,299,300],[154,1,1,300,301],[156,2,1,301,302],[163,1,1,302,303],[164,2,2,303,305],[170,1,1,305,306],[173,2,2,306,308],[180,3,3,308,311],[183,1,1,311,312],[184,2,2,312,314]]],[5,6,5,314,319,[[193,1,1,314,315],[201,1,1,315,316],[203,3,2,316,318],[210,1,1,318,319]]],[6,16,14,319,333,[[211,1,1,319,320],[213,1,1,320,321],[218,2,2,321,323],[219,4,4,323,327],[220,1,1,327,328],[221,2,1,328,329],[222,3,2,329,331],[228,1,1,331,332],[229,1,1,332,333]]],[7,6,6,333,339,[[232,5,5,333,338],[235,1,1,338,339]]],[8,37,34,339,373,[[236,3,3,339,342],[237,7,6,342,348],[238,1,1,348,349],[239,3,3,349,352],[243,4,4,352,356],[247,1,1,356,357],[249,1,1,357,358],[251,3,3,358,361],[252,3,2,361,363],[257,1,1,363,364],[263,1,1,364,365],[265,3,3,365,368],[266,6,5,368,373]]],[9,30,28,373,401,[[268,1,1,373,374],[269,2,2,374,376],[270,3,3,376,379],[271,1,1,379,380],[272,1,1,380,381],[274,1,1,381,382],[275,2,1,382,383],[279,8,8,383,391],[280,2,2,391,393],[281,2,2,393,395],[282,1,1,395,396],[285,3,3,396,399],[287,2,1,399,400],[289,1,1,400,401]]],[10,14,14,401,415,[[291,3,3,401,404],[292,1,1,404,405],[294,2,2,405,407],[301,1,1,407,408],[303,5,5,408,413],[308,1,1,413,414],[311,1,1,414,415]]],[11,21,19,415,434,[[314,3,3,415,418],[316,5,4,418,422],[318,1,1,422,423],[321,1,1,423,424],[322,6,5,424,429],[323,1,1,429,430],[327,1,1,430,431],[329,1,1,431,432],[331,1,1,432,433],[337,1,1,433,434]]],[12,300,246,434,680,[[338,27,21,434,455],[339,29,25,455,480],[340,17,10,480,490],[341,20,16,490,506],[342,5,4,506,510],[343,23,23,510,533],[344,28,23,533,556],[345,16,13,556,569],[346,9,8,569,577],[347,6,5,577,582],[348,3,3,582,585],[349,3,2,585,587],[351,1,1,587,588],[352,7,7,588,595],[353,1,1,595,596],[355,1,1,596,597],[358,1,1,597,598],[360,26,20,598,618],[361,25,15,618,633],[362,30,28,633,661],[363,16,14,661,675],[364,1,1,675,676],[365,4,3,676,679],[366,1,1,679,680]]],[13,42,35,680,715,[[371,1,1,680,681],[377,2,2,681,683],[379,5,5,683,688],[386,1,1,688,689],[387,5,3,689,692],[388,2,2,692,694],[389,2,2,694,696],[390,4,4,696,700],[392,1,1,700,701],[394,1,1,701,702],[395,9,6,702,708],[397,2,2,708,710],[398,1,1,710,711],[400,2,1,711,712],[401,3,2,712,714],[402,1,1,714,715]]],[14,12,7,715,722,[[405,6,2,715,717],[410,2,2,717,719],[411,3,2,719,721],[412,1,1,721,722]]],[15,13,12,722,734,[[415,1,1,722,723],[416,1,1,723,724],[417,2,2,724,726],[422,3,3,726,729],[423,2,2,729,731],[424,2,2,731,733],[425,2,1,733,734]]],[16,5,5,734,739,[[434,5,5,734,739]]],[17,13,12,739,751,[[436,6,6,739,745],[437,1,1,745,746],[449,1,1,746,747],[473,2,2,747,749],[477,3,2,749,751]]],[18,11,11,751,762,[[481,1,1,751,752],[508,1,1,752,753],[510,1,1,753,754],[534,1,1,754,755],[535,1,1,755,756],[554,1,1,756,757],[566,1,1,757,758],[583,2,2,758,760],[621,1,1,760,761],[622,1,1,761,762]]],[19,2,2,762,764,[[635,2,2,762,764]]],[20,9,9,764,773,[[659,1,1,764,765],[660,2,2,765,767],[661,3,3,767,770],[666,1,1,770,771],[667,2,2,771,773]]],[21,1,1,773,774,[[672,1,1,773,774]]],[22,16,15,774,789,[[715,1,1,774,775],[721,1,1,775,776],[723,1,1,776,777],[727,1,1,777,778],[729,3,2,778,780],[734,1,1,780,781],[735,1,1,781,782],[738,4,4,782,786],[739,1,1,786,787],[740,2,2,787,789]]],[23,29,26,789,815,[[747,1,1,789,790],[749,1,1,790,791],[750,1,1,791,792],[751,1,1,792,793],[755,1,1,793,794],[757,1,1,794,795],[758,1,1,795,796],[760,2,2,796,798],[763,2,2,798,800],[773,3,1,800,801],[776,2,2,801,803],[779,7,7,803,810],[783,1,1,810,811],[784,2,1,811,812],[792,1,1,812,813],[793,1,1,813,814],[796,1,1,814,815]]],[24,1,1,815,816,[[800,1,1,815,816]]],[25,17,16,816,832,[[806,2,1,816,817],[815,3,3,817,820],[817,1,1,820,821],[821,1,1,821,822],[824,5,5,822,827],[825,2,2,827,829],[841,1,1,829,830],[845,1,1,830,831],[847,1,1,831,832]]],[26,2,2,832,834,[[859,1,1,832,833],[860,1,1,833,834]]],[27,1,1,834,835,[[862,1,1,834,835]]],[28,3,3,835,838,[[876,1,1,835,836],[877,1,1,836,837],[878,1,1,837,838]]],[29,1,1,838,839,[[885,1,1,838,839]]],[32,1,1,839,840,[[897,1,1,839,840]]],[37,2,1,840,841,[[919,2,1,840,841]]],[38,2,2,841,843,[[927,2,2,841,843]]]],[109,112,115,118,121,124,127,131,135,139,141,155,166,172,199,201,206,213,223,224,235,236,237,238,240,241,254,259,263,265,266,277,279,281,283,285,287,289,291,469,574,582,587,591,661,662,664,667,668,671,674,756,829,850,865,874,890,901,928,985,987,993,1005,1007,1016,1033,1034,1035,1036,1037,1040,1045,1046,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1085,1118,1245,1253,1257,1263,1265,1284,1289,1391,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1407,1408,1409,1410,1411,1413,1456,1459,1460,1474,1475,1506,1518,1519,1601,1621,1669,1670,1671,1672,1673,1674,1676,1677,1679,1786,1840,2002,2004,2005,2081,2142,2293,2294,2297,2333,2334,2336,2340,2344,2345,2346,2351,2355,2356,2357,2360,2363,2368,2371,2380,2401,2412,2430,2440,2464,2512,2516,2550,2691,2719,2721,2738,2750,2752,2753,2756,2764,2780,2783,2786,2791,2858,2863,2865,2869,2874,2889,2913,2914,2919,2923,2930,2931,2935,2939,2941,2947,2948,2953,2954,2962,2965,2971,2978,2981,2983,2986,2989,2991,2993,3202,3237,3346,3369,3371,3387,3553,3672,3676,3680,3694,3695,3701,3702,3709,3710,3711,3712,3717,3721,3728,3730,3740,3743,3745,3747,3748,3758,3762,3765,3770,3771,3772,3776,3777,3781,3784,3785,3788,3846,3857,3858,3859,3952,3958,3961,3996,4005,4108,4195,4201,4202,4204,4206,4221,4258,4259,4264,4265,4266,4268,4276,4369,4375,4497,4498,4501,4508,4509,4510,4512,4515,4517,4518,4519,4522,4524,4525,4526,4527,4529,4530,4531,4534,4536,4537,4557,4880,4884,4890,4891,4920,4971,5013,5214,5252,5271,5389,5452,5463,5643,5652,5664,5737,5766,5777,6000,6216,6278,6281,6508,6529,6574,6738,6749,6756,6759,6772,6778,6815,6831,6878,6883,7023,7046,7128,7129,7130,7138,7139,7205,7215,7216,7220,7252,7261,7262,7264,7269,7274,7289,7301,7308,7314,7370,7372,7374,7380,7462,7557,7596,7600,7605,7630,7631,7807,7961,7981,7984,7997,8011,8015,8016,8017,8021,8067,8083,8120,8122,8125,8129,8145,8160,8227,8237,8340,8344,8346,8347,8349,8350,8352,8353,8362,8383,8416,8425,8436,8516,8528,8533,8588,8685,8726,8736,8742,8777,8847,8875,9128,9195,9196,9197,9211,9215,9372,9461,9554,9556,9566,9604,9607,9608,9641,9675,9782,9794,9795,9799,9800,9801,9831,9937,10000,10098,10229,10257,10258,10259,10260,10261,10269,10271,10275,10280,10283,10284,10285,10286,10287,10288,10289,10290,10291,10292,10293,10294,10307,10309,10310,10311,10312,10313,10314,10315,10322,10324,10329,10331,10333,10334,10336,10337,10338,10339,10340,10348,10349,10353,10356,10358,10360,10362,10370,10376,10377,10378,10380,10382,10383,10384,10385,10386,10389,10391,10392,10398,10400,10401,10402,10403,10404,10405,10406,10409,10411,10412,10427,10429,10431,10432,10446,10455,10456,10457,10470,10471,10472,10473,10476,10479,10480,10482,10483,10498,10503,10504,10508,10511,10515,10516,10517,10520,10524,10525,10536,10537,10538,10539,10542,10543,10545,10546,10547,10548,10549,10551,10552,10554,10555,10565,10566,10568,10569,10570,10571,10573,10574,10578,10581,10585,10587,10591,10593,10596,10600,10602,10610,10613,10614,10615,10620,10621,10622,10629,10645,10647,10656,10659,10661,10665,10666,10667,10671,10707,10717,10719,10723,10727,10777,10796,10797,10798,10799,10800,10801,10808,10862,10907,10954,10989,10991,10992,10993,10994,10995,10996,10997,10998,10999,11000,11001,11002,11003,11004,11005,11006,11007,11011,11015,11016,11018,11019,11020,11035,11036,11037,11038,11039,11040,11041,11042,11043,11045,11046,11047,11048,11049,11050,11051,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11078,11079,11081,11083,11084,11085,11086,11087,11088,11092,11096,11098,11099,11106,11141,11144,11147,11148,11188,11280,11428,11435,11458,11461,11462,11463,11474,11601,11626,11631,11641,11652,11655,11659,11667,11680,11684,11702,11704,11750,11772,11800,11802,11803,11804,11805,11812,11872,11873,11908,11945,11980,11981,12013,12106,12107,12219,12220,12239,12249,12283,12330,12373,12384,12387,12577,12579,12585,12594,12595,12647,12652,12696,12844,12846,12847,12848,12859,12871,12873,12874,12875,12882,12887,12892,13202,13800,13825,13935,13938,13967,14350,14379,14772,14780,15108,15332,15688,15689,16317,16332,16606,16633,17328,17336,17341,17369,17377,17378,17469,17478,17487,17557,18390,18511,18572,18658,18691,18693,18759,18768,18825,18830,18831,18835,18848,18859,18862,19026,19075,19110,19150,19248,19280,19309,19338,19339,19412,19416,19641,19750,19766,19826,19827,19828,19829,19831,19837,19839,19929,19949,20126,20128,20286,20422,20556,20747,20749,20753,20782,20926,21011,21017,21032,21044,21054,21077,21081,21523,21614,21673,22031,22046,22104,22303,22339,22351,22481,22640,23012,23123,23126]]],["sons'",[26,24,[[0,7,6,0,6,[[5,1,1,0,1],[6,1,1,1,2],[7,2,2,2,4],[45,3,2,4,6]]],[1,4,4,6,10,[[78,3,3,6,9],[88,1,1,9,10]]],[2,10,9,10,19,[[91,2,2,10,12],[96,1,1,12,13],[97,3,2,13,15],[99,3,3,15,18],[113,1,1,18,19]]],[4,1,1,19,20,[[156,1,1,19,20]]],[12,1,1,20,21,[[345,1,1,20,21]]],[17,1,1,21,22,[[477,1,1,21,22]]],[25,2,2,22,24,[[847,2,2,22,24]]]],[155,166,199,201,1393,1412,2357,2364,2365,2705,2765,2772,2910,2944,2947,2990,2991,2992,3455,5013,10615,13938,21671,21672]]],["them",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17898]]],["whelps",[2,2,[[17,2,2,0,2,[[439,1,1,0,1],[463,1,1,1,2]]]],[12941,13512]]],["worthy",[1,1,[[8,1,1,0,1,[[261,1,1,0,1]]]],[7921]]],["young",[18,18,[[2,10,10,0,10,[[90,1,1,0,1],[94,2,2,1,3],[101,2,2,3,5],[103,2,2,5,7],[104,2,2,7,9],[111,1,1,9,10]]],[3,1,1,10,11,[[122,1,1,10,11]]],[4,2,2,11,13,[[174,2,2,11,13]]],[16,1,1,13,14,[[433,1,1,13,14]]],[18,2,2,14,16,[[506,1,1,14,15],[624,1,1,15,16]]],[19,1,1,16,17,[[657,1,1,16,17]]],[23,1,1,17,18,[[775,1,1,17,18]]]],[2759,2837,2841,3050,3052,3133,3141,3182,3197,3397,3833,5476,5477,12827,14314,16360,17268,19703]]],["youths",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16582]]]]},{"k":"H1122","v":[["Ben",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10809]]]]},{"k":"H1123","v":[["*",[11,10,[[14,5,4,0,4,[[408,4,3,0,3],[409,1,1,3,4]]],[26,6,6,4,10,[[851,2,2,4,6],[854,2,2,6,8],[855,2,2,8,10]]]],[12160,12161,12167,12196,21783,21796,21887,21895,21918,21929]]],["+",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21783]]],["children",[6,5,[[14,2,1,0,1,[[408,2,1,0,1]]],[26,4,4,1,5,[[851,1,1,1,2],[854,1,1,2,3],[855,2,2,3,5]]]],[12167,21796,21887,21918,21929]]],["sons",[3,3,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]],[26,1,1,2,3,[[854,1,1,2,3]]]],[12161,12196,21895]]],["young",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12160]]]]},{"k":"H1124","v":[["*",[22,19,[[14,21,18,0,18,[[406,4,4,0,4],[407,12,10,4,14],[408,5,4,14,18]]],[26,1,1,18,19,[[853,1,1,18,19]]]],[12122,12123,12126,12131,12136,12137,12138,12142,12143,12145,12147,12149,12150,12151,12154,12158,12159,12165,21867]]],["build",[7,7,[[14,7,7,0,7,[[407,6,6,0,6],[408,1,1,6,7]]]],[12136,12137,12143,12145,12147,12151,12158]]],["builded",[10,8,[[14,10,8,0,8,[[406,3,3,0,3],[407,4,3,3,6],[408,3,2,6,8]]]],[12123,12126,12131,12142,12145,12149,12154,12165]]],["building",[3,3,[[14,3,3,0,3,[[406,1,1,0,1],[407,1,1,1,2],[408,1,1,2,3]]]],[12122,12150,12159]]],["built",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21867]]],["make",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12138]]]]},{"k":"H1125","v":[["Abinadab",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8855]]]]},{"k":"H1126","v":[["Benoni",[1,1,[[0,1,1,0,1,[[34,1,1,0,1]]]],[1029]]]]},{"k":"H1127","v":[["Geber",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8857]]]]},{"k":"H1128","v":[["Dekar",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8853]]]]},{"k":"H1129","v":[["*",[376,345,[[0,16,16,0,16,[[1,1,1,0,1],[3,1,1,1,2],[7,1,1,2,3],[9,1,1,3,4],[10,3,3,4,7],[11,2,2,7,9],[12,1,1,9,10],[15,1,1,10,11],[21,1,1,11,12],[25,1,1,12,13],[29,1,1,13,14],[32,1,1,14,15],[34,1,1,15,16]]],[1,5,5,16,21,[[50,1,1,16,17],[66,1,1,17,18],[69,1,1,18,19],[73,1,1,19,20],[81,1,1,20,21]]],[3,10,10,21,31,[[129,1,1,21,22],[137,1,1,22,23],[139,3,3,23,26],[148,5,5,26,31]]],[4,10,10,31,41,[[158,1,1,31,32],[160,1,1,32,33],[165,1,1,33,34],[172,2,2,34,36],[174,1,1,36,37],[177,1,1,37,38],[179,2,2,38,40],[180,1,1,40,41]]],[5,11,11,41,52,[[192,1,1,41,42],[194,1,1,42,43],[205,1,1,43,44],[208,7,7,44,51],[210,1,1,51,52]]],[6,7,7,52,59,[[211,1,1,52,53],[216,3,3,53,56],[228,1,1,56,57],[231,2,2,57,59]]],[7,1,1,59,60,[[235,1,1,59,60]]],[8,4,3,60,63,[[237,1,1,60,61],[242,1,1,61,62],[249,2,1,62,63]]],[9,8,8,63,71,[[271,2,2,63,65],[273,4,4,65,69],[290,2,2,69,71]]],[10,67,53,71,124,[[292,1,1,71,72],[293,2,2,72,74],[295,6,3,74,77],[296,15,12,77,89],[297,2,2,89,91],[298,12,10,91,101],[299,9,8,101,109],[300,1,1,109,110],[301,4,3,110,113],[302,2,1,113,114],[304,1,1,114,115],[305,5,4,115,119],[306,4,3,119,122],[308,1,1,122,123],[312,2,1,123,124]]],[11,12,12,124,136,[[324,1,1,124,125],[326,1,1,125,126],[327,1,1,126,127],[328,2,2,127,129],[329,1,1,129,130],[333,3,3,130,133],[334,1,1,133,134],[335,1,1,134,135],[337,1,1,135,136]]],[12,29,27,136,163,[[343,2,2,136,138],[344,1,1,138,139],[345,1,1,139,140],[348,1,1,140,141],[351,1,1,141,142],[354,5,5,142,147],[358,2,2,147,149],[359,9,8,149,157],[365,5,4,157,161],[366,2,2,161,163]]],[13,61,54,163,217,[[368,8,7,163,170],[369,3,3,170,173],[372,11,10,173,183],[374,8,7,183,190],[375,1,1,190,191],[377,2,2,191,193],[380,3,2,193,195],[382,4,3,195,198],[383,1,1,198,199],[386,1,1,199,200],[392,4,4,200,204],[393,4,2,204,206],[398,1,1,206,207],[399,7,7,207,214],[400,1,1,214,215],[401,1,1,215,216],[402,1,1,216,217]]],[14,10,9,217,226,[[403,3,3,217,220],[405,2,2,220,222],[406,5,4,222,226]]],[15,24,22,226,248,[[414,4,4,226,230],[415,7,6,230,236],[416,8,7,236,243],[418,2,2,243,245],[419,2,2,245,247],[424,1,1,247,248]]],[17,5,5,248,253,[[438,1,1,248,249],[447,1,1,249,250],[455,1,1,250,251],[457,1,1,251,252],[462,1,1,252,253]]],[18,12,11,253,264,[[505,1,1,253,254],[528,1,1,254,255],[546,1,1,255,256],[555,1,1,256,257],[566,2,2,257,259],[579,1,1,259,260],[595,1,1,260,261],[599,1,1,261,262],[604,2,1,262,263],[624,1,1,263,264]]],[19,4,4,264,268,[[636,1,1,264,265],[641,1,1,265,266],[651,2,2,266,268]]],[20,3,3,268,271,[[660,1,1,268,269],[661,1,1,269,270],[667,1,1,270,271]]],[21,2,2,271,273,[[674,1,1,271,272],[678,1,1,272,273]]],[22,12,12,273,285,[[683,1,1,273,274],[687,1,1,274,275],[703,1,1,275,276],[722,2,2,276,278],[723,1,1,278,279],[736,1,1,279,280],[738,1,1,280,281],[739,1,1,281,282],[743,2,2,282,284],[744,1,1,284,285]]],[23,23,22,285,307,[[745,1,1,285,286],[751,1,1,286,287],[756,1,1,287,288],[762,1,1,288,289],[763,1,1,289,290],[766,2,2,290,292],[768,1,1,292,293],[773,2,2,293,295],[774,1,1,295,296],[775,4,3,296,299],[776,2,2,299,301],[777,1,1,301,302],[779,2,2,302,304],[786,1,1,304,305],[789,1,1,305,306],[796,1,1,306,307]]],[24,1,1,307,308,[[799,1,1,307,308]]],[25,16,16,308,324,[[805,1,1,308,309],[812,1,1,309,310],[814,1,1,310,311],[817,3,3,311,314],[818,1,1,314,315],[822,1,1,315,316],[827,1,1,316,317],[828,2,2,317,319],[829,1,1,319,320],[837,3,3,320,323],[840,1,1,323,324]]],[26,2,1,324,325,[[858,2,1,324,325]]],[27,1,1,325,326,[[869,1,1,325,326]]],[29,4,4,326,330,[[883,1,1,326,327],[887,3,3,327,330]]],[32,2,2,330,332,[[895,1,1,330,331],[899,1,1,331,332]]],[34,1,1,332,333,[[904,1,1,332,333]]],[35,1,1,333,334,[[906,1,1,333,334]]],[36,2,2,334,336,[[909,2,2,334,336]]],[37,7,7,336,343,[[911,1,1,336,337],[915,1,1,337,338],[916,3,3,338,341],[918,1,1,341,342],[919,1,1,342,343]]],[38,3,2,343,345,[[925,2,1,343,344],[927,1,1,344,345]]]],[52,96,203,245,270,271,274,305,306,336,383,556,717,833,977,1018,1543,1998,2076,2181,2443,4097,4367,4417,4430,4445,4734,4742,4752,4755,4756,5096,5149,5288,5432,5447,5478,5556,5590,5591,5641,5975,6032,6371,6436,6437,6442,6445,6449,6452,6455,6489,6535,6678,6680,6682,7021,7106,7125,7201,7275,7369,7543,8141,8143,8185,8187,8193,8207,8713,8717,8806,8817,8818,8881,8883,8896,8897,8898,8901,8903,8905,8906,8908,8910,8911,8912,8932,8934,8935,8936,8998,9001,9002,9003,9004,9005,9012,9028,9029,9033,9052,9054,9061,9066,9068,9070,9075,9076,9083,9115,9135,9146,9176,9241,9266,9270,9271,9272,9307,9315,9317,9373,9519,9861,9918,9960,9974,9981,9992,10122,10123,10124,10151,10178,10223,10464,10486,10559,10587,10681,10775,10867,10869,10873,10875,10888,10956,10960,10966,10969,10970,10971,10972,10974,10975,10983,11145,11146,11149,11153,11180,11183,11212,11214,11215,11216,11217,11220,11223,11230,11231,11232,11284,11287,11289,11290,11291,11292,11300,11315,11316,11320,11347,11348,11350,11351,11352,11357,11358,11367,11419,11420,11481,11482,11510,11514,11515,11535,11595,11734,11738,11741,11742,11758,11759,11880,11911,11912,11913,11922,11923,11924,11927,11944,11969,12016,12018,12019,12021,12099,12107,12111,12112,12113,12114,12312,12324,12325,12327,12328,12329,12330,12340,12341,12342,12360,12362,12364,12365,12369,12376,12377,12402,12407,12421,12424,12653,12918,13142,13345,13412,13499,14304,14709,14970,15182,15328,15330,15537,15891,16092,16122,16353,16639,16773,17082,17106,17337,17362,17489,17586,17649,17741,17839,18120,18559,18561,18574,18798,18831,18847,18918,18919,18923,18956,19150,19265,19393,19412,19467,19468,19530,19640,19663,19685,19695,19719,19729,19762,19766,19782,19830,19832,19985,20044,20280,20359,20531,20658,20718,20786,20787,20793,20842,20966,21114,21125,21126,21183,21369,21392,21395,21463,22013,22208,22434,22501,22506,22509,22618,22675,22760,22800,22842,22848,22894,22947,22959,22960,22962,22985,23002,23093,23135]]],["+",[60,58,[[0,3,3,0,3,[[3,1,1,0,1],[9,1,1,1,2],[21,1,1,2,3]]],[3,2,2,3,5,[[148,2,2,3,5]]],[4,2,2,5,7,[[177,1,1,5,6],[179,1,1,6,7]]],[5,3,3,7,10,[[192,1,1,7,8],[205,1,1,8,9],[208,1,1,9,10]]],[6,2,2,10,12,[[228,1,1,10,11],[231,1,1,11,12]]],[7,1,1,12,13,[[235,1,1,12,13]]],[10,19,17,13,30,[[293,1,1,13,14],[296,5,5,14,19],[298,2,1,19,20],[299,4,4,20,24],[301,1,1,24,25],[302,2,1,25,26],[305,2,2,26,28],[306,2,2,28,30]]],[11,3,3,30,33,[[326,1,1,30,31],[327,1,1,31,32],[328,1,1,32,33]]],[12,3,3,33,36,[[343,1,1,33,34],[344,1,1,34,35],[345,1,1,35,36]]],[13,11,11,36,47,[[369,2,2,36,38],[374,2,2,38,40],[380,1,1,40,41],[382,2,2,41,43],[392,1,1,43,44],[393,1,1,44,45],[398,1,1,45,46],[399,1,1,46,47]]],[14,3,3,47,50,[[403,2,2,47,49],[405,1,1,49,50]]],[15,4,4,50,54,[[414,1,1,50,51],[415,1,1,51,52],[416,1,1,52,53],[418,1,1,53,54]]],[23,1,1,54,55,[[776,1,1,54,55]]],[25,1,1,55,56,[[828,1,1,55,56]]],[37,2,2,56,58,[[916,2,2,56,58]]]],[96,245,556,4752,4755,5556,5591,5975,6371,6437,7021,7125,7201,8817,8905,8906,8910,8911,8912,8998,9061,9066,9068,9075,9135,9176,9266,9270,9307,9317,9918,9960,9974,10486,10559,10587,11230,11232,11350,11351,11482,11510,11514,11734,11758,11880,11924,12019,12021,12099,12324,12328,12360,12402,19766,21126,22959,22960]]],["Build",[5,5,[[3,3,3,0,3,[[139,2,2,0,2],[148,1,1,2,3]]],[10,1,1,3,4,[[292,1,1,3,4]]],[23,1,1,4,5,[[773,1,1,4,5]]]],[4417,4445,4742,8806,19640]]],["again",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13142]]],["build",[114,107,[[0,2,2,0,2,[[10,2,2,0,2]]],[1,1,1,2,3,[[69,1,1,2,3]]],[3,1,1,3,4,[[148,1,1,3,4]]],[4,3,3,4,7,[[172,1,1,4,5],[179,1,1,5,6],[180,1,1,6,7]]],[5,2,2,7,9,[[208,2,2,7,9]]],[6,1,1,9,10,[[216,1,1,9,10]]],[8,1,1,10,11,[[237,1,1,10,11]]],[9,5,5,11,16,[[273,4,4,11,15],[290,1,1,15,16]]],[10,13,11,16,27,[[295,4,3,16,19],[296,1,1,19,20],[298,5,4,20,24],[299,1,1,24,25],[301,2,2,25,27]]],[12,19,19,27,46,[[351,1,1,27,28],[354,4,4,28,32],[358,1,1,32,33],[359,7,7,33,40],[365,4,4,40,44],[366,2,2,44,46]]],[13,17,15,46,61,[[368,8,7,46,53],[369,1,1,53,54],[372,5,4,54,58],[374,1,1,58,59],[401,1,1,59,60],[402,1,1,60,61]]],[14,4,3,61,64,[[403,1,1,61,62],[406,3,2,62,64]]],[15,6,6,64,70,[[414,3,3,64,67],[415,1,1,67,68],[416,2,2,68,70]]],[18,4,3,70,73,[[528,1,1,70,71],[546,1,1,71,72],[604,2,1,72,73]]],[19,1,1,73,74,[[651,1,1,73,74]]],[21,1,1,74,75,[[678,1,1,74,75]]],[22,7,7,75,82,[[687,1,1,75,76],[723,1,1,76,77],[736,1,1,77,78],[739,1,1,78,79],[743,2,2,79,81],[744,1,1,81,82]]],[23,11,11,82,93,[[745,1,1,82,83],[762,1,1,83,84],[766,1,1,84,85],[768,1,1,85,86],[773,1,1,86,87],[775,2,2,87,89],[777,1,1,89,90],[779,2,2,90,92],[786,1,1,92,93]]],[25,5,5,93,98,[[805,1,1,93,94],[812,1,1,94,95],[822,1,1,95,96],[829,1,1,96,97],[837,1,1,97,98]]],[26,1,1,98,99,[[858,1,1,98,99]]],[29,2,2,99,101,[[887,2,2,99,101]]],[35,1,1,101,102,[[906,1,1,101,102]]],[36,1,1,102,103,[[909,1,1,102,103]]],[37,3,3,103,106,[[915,1,1,103,104],[916,1,1,104,105],[919,1,1,105,106]]],[38,2,1,106,107,[[925,2,1,106,107]]]],[270,274,2076,4734,5447,5590,5641,6452,6455,6680,7275,8185,8187,8193,8207,8713,8881,8883,8896,8897,9001,9002,9003,9004,9070,9115,9146,10775,10867,10873,10875,10888,10956,10966,10970,10971,10972,10974,10975,10983,11145,11146,11149,11153,11180,11183,11212,11214,11215,11216,11217,11220,11223,11231,11287,11289,11290,11291,11352,11969,12016,12018,12112,12113,12312,12325,12327,12330,12362,12369,14709,14970,16122,17106,17649,17839,18574,18798,18847,18918,18919,18923,18956,19393,19468,19530,19663,19695,19719,19782,19830,19832,19985,20531,20658,20966,21183,21395,22013,22506,22509,22800,22848,22947,22962,23002,23093]]],["builded",[30,29,[[0,5,5,0,5,[[7,1,1,0,1],[10,1,1,1,2],[11,2,2,2,4],[25,1,1,4,5]]],[1,1,1,5,6,[[73,1,1,5,6]]],[3,1,1,6,7,[[148,1,1,6,7]]],[5,1,1,7,8,[[208,1,1,7,8]]],[10,3,3,8,11,[[298,2,2,8,10],[305,1,1,10,11]]],[11,1,1,11,12,[[335,1,1,11,12]]],[12,1,1,12,13,[[359,1,1,12,13]]],[14,1,1,13,14,[[406,1,1,13,14]]],[15,6,5,14,19,[[415,2,1,14,15],[416,2,2,15,17],[419,1,1,17,18],[424,1,1,18,19]]],[17,1,1,19,20,[[455,1,1,19,20]]],[18,1,1,20,21,[[599,1,1,20,21]]],[19,2,2,21,23,[[636,1,1,21,22],[651,1,1,22,23]]],[20,1,1,23,24,[[660,1,1,23,24]]],[21,1,1,24,25,[[674,1,1,24,25]]],[23,1,1,25,26,[[774,1,1,25,26]]],[24,1,1,26,27,[[799,1,1,26,27]]],[25,2,2,27,29,[[837,2,2,27,29]]]],[203,271,305,306,717,2181,4756,6442,9012,9028,9271,10178,10969,12111,12329,12376,12377,12424,12653,13345,16092,16639,17082,17337,17586,19685,20359,21369,21392]]],["buildedst",[1,1,[[4,1,1,0,1,[[158,1,1,0,1]]]],[5096]]],["builders",[10,9,[[10,2,1,0,1,[[295,2,1,0,1]]],[11,2,2,1,3,[[324,1,1,1,2],[334,1,1,2,3]]],[13,1,1,3,4,[[400,1,1,3,4]]],[14,1,1,4,5,[[405,1,1,4,5]]],[15,2,2,5,7,[[416,2,2,5,7]]],[18,1,1,7,8,[[595,1,1,7,8]]],[25,1,1,8,9,[[828,1,1,8,9]]]],[8896,9861,10151,11944,12107,12364,12377,15891,21125]]],["buildest",[3,3,[[4,1,1,0,1,[[174,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]],[25,1,1,2,3,[[817,1,1,2,3]]]],[5478,12407,20793]]],["buildeth",[6,6,[[17,1,1,0,1,[[462,1,1,0,1]]],[19,1,1,1,2,[[641,1,1,1,2]]],[23,1,1,2,3,[[766,1,1,2,3]]],[27,1,1,3,4,[[869,1,1,3,4]]],[29,1,1,4,5,[[887,1,1,4,5]]],[34,1,1,5,6,[[904,1,1,5,6]]]],[13499,16773,19467,22208,22501,22760]]],["building",[11,10,[[5,1,1,0,1,[[208,1,1,0,1]]],[10,6,5,1,6,[[296,4,3,1,4],[297,1,1,4,5],[299,1,1,5,6]]],[12,1,1,6,7,[[365,1,1,6,7]]],[13,1,1,7,8,[[382,1,1,7,8]]],[14,1,1,8,9,[[406,1,1,8,9]]],[25,1,1,9,10,[[818,1,1,9,10]]]],[6445,8903,8908,8934,8935,9052,11145,11515,12114,20842]]],["built",[118,116,[[0,3,3,0,3,[[12,1,1,0,1],[32,1,1,1,2],[34,1,1,2,3]]],[1,3,3,3,6,[[50,1,1,3,4],[66,1,1,4,5],[81,1,1,5,6]]],[3,3,3,6,9,[[129,1,1,6,7],[137,1,1,7,8],[139,1,1,8,9]]],[4,3,3,9,12,[[160,1,1,9,10],[165,1,1,10,11],[172,1,1,11,12]]],[5,4,4,12,16,[[194,1,1,12,13],[208,2,2,13,15],[210,1,1,15,16]]],[6,4,4,16,20,[[211,1,1,16,17],[216,2,2,17,19],[231,1,1,19,20]]],[8,3,2,20,22,[[242,1,1,20,21],[249,2,1,21,22]]],[9,3,3,22,25,[[271,2,2,22,24],[290,1,1,24,25]]],[10,22,22,25,47,[[293,1,1,25,26],[296,5,5,26,31],[297,1,1,31,32],[298,3,3,32,35],[299,3,3,35,38],[300,1,1,38,39],[301,1,1,39,40],[304,1,1,40,41],[305,2,2,41,43],[306,2,2,43,45],[308,1,1,45,46],[312,1,1,46,47]]],[11,5,5,47,52,[[328,1,1,47,48],[329,1,1,48,49],[333,2,2,49,51],[337,1,1,51,52]]],[12,5,5,52,57,[[343,1,1,52,53],[348,1,1,53,54],[354,1,1,54,55],[358,1,1,55,56],[359,1,1,56,57]]],[13,31,30,57,87,[[372,6,6,57,63],[374,5,5,63,68],[375,1,1,68,69],[377,2,2,69,71],[380,2,2,71,73],[382,1,1,73,74],[383,1,1,74,75],[386,1,1,75,76],[392,3,3,76,79],[393,3,2,79,81],[399,6,6,81,87]]],[15,5,5,87,92,[[415,3,3,87,90],[416,1,1,90,91],[419,1,1,91,92]]],[17,1,1,92,93,[[438,1,1,92,93]]],[18,1,1,93,94,[[555,1,1,93,94]]],[20,1,1,94,95,[[667,1,1,94,95]]],[22,4,4,95,99,[[683,1,1,95,96],[703,1,1,96,97],[722,2,2,97,99]]],[23,8,8,99,107,[[751,1,1,99,100],[756,1,1,100,101],[763,1,1,101,102],[775,2,2,102,104],[776,1,1,104,105],[789,1,1,105,106],[796,1,1,106,107]]],[25,3,3,107,110,[[817,2,2,107,109],[827,1,1,109,110]]],[26,1,1,110,111,[[858,1,1,110,111]]],[29,1,1,111,112,[[883,1,1,111,112]]],[32,1,1,112,113,[[899,1,1,112,113]]],[36,1,1,113,114,[[909,1,1,113,114]]],[37,2,2,114,116,[[911,1,1,114,115],[918,1,1,115,116]]]],[336,977,1018,1543,1998,2443,4097,4367,4430,5149,5288,5432,6032,6436,6449,6489,6535,6678,6682,7106,7369,7543,8141,8143,8717,8818,8898,8901,8903,8912,8932,8936,9005,9029,9033,9054,9075,9076,9083,9146,9241,9271,9272,9307,9315,9373,9519,9981,9992,10123,10124,10223,10464,10681,10869,10960,10983,11284,11292,11300,11315,11316,11320,11347,11348,11350,11357,11358,11367,11419,11420,11481,11482,11515,11535,11595,11738,11741,11742,11758,11759,11911,11912,11913,11922,11923,11927,12340,12341,12342,12365,12421,12918,15182,17489,17741,18120,18559,18561,19150,19265,19412,19695,19729,19762,20044,20280,20786,20787,21114,22013,22434,22675,22842,22894,22985]]],["children",[2,2,[[0,2,2,0,2,[[15,1,1,0,1],[29,1,1,1,2]]]],[383,833]]],["made",[2,2,[[0,1,1,0,1,[[1,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]]],[52,9519]]],["up",[13,13,[[11,1,1,0,1,[[333,1,1,0,1]]],[17,1,1,1,2,[[457,1,1,1,2]]],[18,5,5,2,7,[[505,1,1,2,3],[566,2,2,3,5],[579,1,1,5,6],[624,1,1,6,7]]],[20,1,1,7,8,[[661,1,1,7,8]]],[22,1,1,8,9,[[738,1,1,8,9]]],[25,2,2,9,11,[[814,1,1,9,10],[840,1,1,10,11]]],[32,1,1,11,12,[[895,1,1,11,12]]],[38,1,1,12,13,[[927,1,1,12,13]]]],[10122,13412,14304,15328,15330,15537,16353,17362,18831,20718,21463,22618,23135]]]]},{"k":"H1130","v":[["Benhadad",[25,24,[[10,15,14,0,14,[[305,2,2,0,2],[310,13,12,2,14]]],[11,6,6,14,20,[[318,1,1,14,15],[320,2,2,15,17],[325,3,3,17,20]]],[13,2,2,20,22,[[382,2,2,20,22]]],[23,1,1,22,23,[[793,1,1,22,23]]],[29,1,1,23,24,[[879,1,1,23,24]]]],[9267,9269,9409,9410,9413,9417,9418,9424,9425,9428,9434,9438,9440,9441,9698,9734,9736,9874,9895,9896,11511,11513,20154,22368]]]]},{"k":"H1131","v":[["Binnui",[7,7,[[14,3,3,0,3,[[410,1,1,0,1],[412,2,2,1,3]]],[15,4,4,3,7,[[415,1,1,3,4],[419,1,1,4,5],[422,1,1,5,6],[424,1,1,6,7]]]],[12234,12282,12290,12351,12435,12558,12632]]]]},{"k":"H1132","v":[["Benzoheth",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10405]]]]},{"k":"H1133","v":[["Hur",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8852]]]]},{"k":"H1134","v":[["Benhail",[1,1,[[13,1,1,0,1,[[383,1,1,0,1]]]],[11530]]]]},{"k":"H1135","v":[["Benhanan",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10405]]]]},{"k":"H1136","v":[["Hesed",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8854]]]]},{"k":"H1137","v":[["Bani",[15,14,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,2,2,1,3,[[343,1,1,1,2],[346,1,1,2,3]]],[14,4,4,3,7,[[404,1,1,3,4],[412,3,3,4,7]]],[15,8,7,7,14,[[415,1,1,7,8],[420,1,1,8,9],[421,3,2,9,11],[422,2,2,11,13],[423,1,1,13,14]]]],[8689,10500,10619,12037,12281,12286,12290,12344,12500,12515,12516,12562,12563,12610]]]]},{"k":"H1138","v":[["Bunni",[3,3,[[15,3,3,0,3,[[421,1,1,0,1],[422,1,1,1,2],[423,1,1,2,3]]]],[12515,12564,12603]]]]},{"k":"H1139","v":[["Beneberak",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6366]]]]},{"k":"H1140","v":[["building",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21539]]]]},{"k":"H1141","v":[["Benaiah",[42,41,[[9,5,5,0,5,[[274,1,1,0,1],[286,1,1,1,2],[289,3,3,2,5]]],[10,15,14,5,19,[[291,7,7,5,12],[292,7,6,12,18],[294,1,1,18,19]]],[12,14,14,19,33,[[341,1,1,19,20],[348,3,3,20,23],[352,3,3,23,26],[353,2,2,26,28],[355,1,1,28,29],[364,4,4,29,33]]],[13,2,2,33,35,[[386,1,1,33,34],[397,1,1,34,35]]],[14,4,4,35,39,[[412,4,4,35,39]]],[25,2,2,39,41,[[812,2,2,39,41]]]],[8227,8577,8673,8675,8683,8725,8727,8743,8749,8753,8755,8761,8795,8799,8800,8804,8805,8816,8848,10421,10695,10697,10704,10809,10811,10815,10825,10826,10907,11114,11115,11123,11143,11601,11867,12277,12282,12287,12295,20656,20668]]]]},{"k":"H1142","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4791,4792]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4792]]],["Benejaakan",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4791]]]]},{"k":"H1143","v":[["+",[2,2,[[8,2,2,0,2,[[252,2,2,0,2]]]],[7622,7641]]]]},{"k":"H1144","v":[["*",[166,159,[[0,17,16,0,16,[[34,2,2,0,2],[41,2,2,2,4],[42,5,5,4,9],[43,1,1,9,10],[44,4,3,10,13],[45,2,2,13,15],[48,1,1,15,16]]],[1,1,1,16,17,[[50,1,1,16,17]]],[3,11,10,17,27,[[117,3,3,17,20],[118,2,1,20,21],[123,1,1,21,22],[126,1,1,22,23],[129,1,1,23,24],[142,2,2,24,26],[150,1,1,26,27]]],[4,2,2,27,29,[[179,1,1,27,28],[185,1,1,28,29]]],[5,6,6,29,35,[[204,4,4,29,33],[207,2,2,33,35]]],[6,45,42,35,77,[[211,2,1,35,36],[215,1,1,36,37],[220,1,1,37,38],[229,1,1,38,39],[230,29,27,39,66],[231,11,11,66,77]]],[8,11,11,77,88,[[239,1,1,77,78],[244,3,3,78,81],[245,3,3,81,84],[248,3,3,84,87],[249,1,1,87,88]]],[9,11,9,88,97,[[268,4,4,88,92],[269,2,1,92,93],[270,2,1,93,94],[285,1,1,94,95],[287,1,1,95,96],[289,1,1,96,97]]],[10,4,4,97,101,[[294,1,1,97,98],[302,2,2,98,100],[305,1,1,100,101]]],[12,15,15,101,116,[[339,1,1,101,102],[343,2,2,102,104],[344,2,2,104,106],[345,2,2,106,108],[346,2,2,108,110],[348,1,1,110,111],[349,3,3,111,114],[358,1,1,114,115],[364,1,1,115,116]]],[13,14,14,116,130,[[377,5,5,116,121],[380,1,1,121,122],[381,3,3,122,125],[383,1,1,125,126],[391,1,1,126,127],[397,1,1,127,128],[400,2,2,128,130]]],[14,4,4,130,134,[[403,1,1,130,131],[406,1,1,131,132],[412,2,2,132,134]]],[15,6,6,134,140,[[415,1,1,134,135],[423,4,4,135,139],[424,1,1,139,140]]],[18,2,2,140,142,[[545,1,1,140,141],[557,1,1,141,142]]],[23,10,10,142,152,[[745,1,1,142,143],[750,1,1,143,144],[761,1,1,144,145],[764,1,1,145,146],[776,2,2,146,148],[777,1,1,148,149],[781,2,2,149,151],[782,1,1,151,152]]],[25,4,4,152,156,[[849,4,4,152,156]]],[27,1,1,156,157,[[866,1,1,156,157]]],[30,1,1,157,158,[[888,1,1,157,158]]],[37,1,1,158,159,[[924,1,1,158,159]]]],[1029,1035,1256,1288,1304,1305,1306,1319,1324,1336,1370,1372,1380,1405,1407,1500,1535,3615,3640,3641,3680,3910,4012,4084,4527,4530,4837,5597,5822,6304,6313,6314,6321,6385,6398,6530,6637,6820,7038,7057,7058,7064,7066,7067,7068,7069,7071,7072,7074,7075,7077,7078,7079,7082,7084,7085,7086,7089,7090,7093,7094,7095,7097,7098,7100,7102,7103,7108,7115,7116,7117,7118,7119,7120,7122,7123,7125,7309,7392,7407,7412,7420,7438,7439,7487,7500,7501,7524,8058,8064,8074,8080,8100,8122,8528,8594,8682,8862,9172,9174,9271,10308,10514,10519,10541,10545,10576,10615,10618,10622,10704,10722,10736,10749,10940,11130,11415,11417,11424,11426,11437,11483,11492,11498,11499,11540,11709,11855,11942,11965,12021,12111,12261,12284,12350,12592,12595,12619,12624,12658,14927,15200,18947,19090,19383,19424,19739,19775,19788,19886,19887,19902,21724,21725,21726,21734,22160,22529,23078]]],["+",[13,13,[[5,1,1,0,1,[[207,1,1,0,1]]],[6,5,5,1,6,[[230,4,4,1,5],[231,1,1,5,6]]],[8,1,1,6,7,[[244,1,1,6,7]]],[9,2,2,7,9,[[268,1,1,7,8],[285,1,1,8,9]]],[12,3,3,9,12,[[343,2,2,9,11],[349,1,1,11,12]]],[13,1,1,12,13,[[380,1,1,12,13]]]],[6398,7071,7097,7098,7100,7118,7392,8080,8528,10514,10519,10722,11483]]],["Benjamin",[146,142,[[0,14,14,0,14,[[34,2,2,0,2],[41,2,2,2,4],[42,4,4,4,8],[44,3,3,8,11],[45,2,2,11,13],[48,1,1,13,14]]],[1,1,1,14,15,[[50,1,1,14,15]]],[3,11,10,15,25,[[117,3,3,15,18],[118,2,1,18,19],[123,1,1,19,20],[126,1,1,20,21],[129,1,1,21,22],[142,2,2,22,24],[150,1,1,24,25]]],[4,2,2,25,27,[[179,1,1,25,26],[185,1,1,26,27]]],[5,5,5,27,32,[[204,4,4,27,31],[207,1,1,31,32]]],[6,37,36,32,68,[[211,2,1,32,33],[215,1,1,33,34],[220,1,1,34,35],[229,1,1,35,36],[230,22,22,36,58],[231,10,10,58,68]]],[8,10,10,68,78,[[239,1,1,68,69],[244,2,2,69,71],[245,3,3,71,74],[248,3,3,74,77],[249,1,1,77,78]]],[9,9,7,78,85,[[268,3,3,78,81],[269,2,1,81,82],[270,2,1,82,83],[287,1,1,83,84],[289,1,1,84,85]]],[10,4,4,85,89,[[294,1,1,85,86],[302,2,2,86,88],[305,1,1,88,89]]],[12,12,12,89,101,[[339,1,1,89,90],[344,2,2,90,92],[345,2,2,92,94],[346,2,2,94,96],[348,1,1,96,97],[349,2,2,97,99],[358,1,1,99,100],[364,1,1,100,101]]],[13,13,13,101,114,[[377,5,5,101,106],[381,3,3,106,109],[383,1,1,109,110],[391,1,1,110,111],[397,1,1,111,112],[400,2,2,112,114]]],[14,4,4,114,118,[[403,1,1,114,115],[406,1,1,115,116],[412,2,2,116,118]]],[15,6,6,118,124,[[415,1,1,118,119],[423,4,4,119,123],[424,1,1,123,124]]],[18,2,2,124,126,[[545,1,1,124,125],[557,1,1,125,126]]],[23,10,10,126,136,[[745,1,1,126,127],[750,1,1,127,128],[761,1,1,128,129],[764,1,1,129,130],[776,2,2,130,132],[777,1,1,132,133],[781,2,2,133,135],[782,1,1,135,136]]],[25,4,4,136,140,[[849,4,4,136,140]]],[27,1,1,140,141,[[866,1,1,140,141]]],[30,1,1,141,142,[[888,1,1,141,142]]]],[1029,1035,1256,1288,1304,1305,1306,1319,1370,1372,1380,1405,1407,1500,1535,3615,3640,3641,3680,3910,4012,4084,4527,4530,4837,5597,5822,6304,6313,6314,6321,6385,6530,6637,6820,7038,7057,7058,7064,7066,7067,7068,7069,7072,7074,7075,7077,7078,7079,7082,7084,7085,7086,7089,7090,7093,7095,7102,7103,7108,7115,7116,7117,7119,7120,7122,7123,7125,7309,7407,7412,7420,7438,7439,7487,7500,7501,7524,8058,8064,8074,8100,8122,8594,8682,8862,9172,9174,9271,10308,10541,10545,10576,10615,10618,10622,10704,10736,10749,10940,11130,11415,11417,11424,11426,11437,11492,11498,11499,11540,11709,11855,11942,11965,12021,12111,12261,12284,12350,12592,12595,12619,12624,12658,14927,15200,18947,19090,19383,19424,19739,19775,19788,19886,19887,19902,21724,21725,21726,21734,22160,22529]]],["Benjamin's",[4,4,[[0,3,3,0,3,[[42,1,1,0,1],[43,1,1,1,2],[44,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[1324,1336,1372,23078]]],["Benjamites",[3,3,[[6,3,3,0,3,[[230,3,3,0,3]]]],[7089,7090,7094]]]]},{"k":"H1145","v":[["*",[12,12,[[6,2,2,0,2,[[213,1,1,0,1],[229,1,1,1,2]]],[8,4,4,2,6,[[244,3,3,2,5],[257,1,1,5,6]]],[9,3,3,6,9,[[282,1,1,6,7],[285,1,1,7,8],[286,1,1,8,9]]],[10,1,1,9,10,[[292,1,1,9,10]]],[12,1,1,10,11,[[364,1,1,10,11]]],[16,1,1,11,12,[[427,1,1,11,12]]]],[6583,7040,7392,7395,7412,7794,8437,8527,8555,8778,11121,12729]]],["+",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6583]]],["Benjamite",[7,7,[[8,2,2,0,2,[[244,2,2,0,2]]],[9,3,3,2,5,[[282,1,1,2,3],[285,1,1,3,4],[286,1,1,4,5]]],[10,1,1,5,6,[[292,1,1,5,6]]],[16,1,1,6,7,[[427,1,1,6,7]]]],[7392,7412,8437,8527,8555,8778,12729]]],["Benjamites",[4,4,[[6,1,1,0,1,[[229,1,1,0,1]]],[8,2,2,1,3,[[244,1,1,1,2],[257,1,1,2,3]]],[12,1,1,3,4,[[364,1,1,3,4]]]],[7040,7395,7794,11121]]]]},{"k":"H1146","v":[["building",[7,6,[[25,7,6,0,6,[[841,1,1,0,1],[842,3,2,1,3],[843,3,3,3,6]]]],[21482,21538,21541,21553,21557,21562]]]]},{"k":"H1147","v":[["building",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12138]]]]},{"k":"H1148","v":[["Beninu",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12562]]]]},{"k":"H1149","v":[["angry",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21770]]]]},{"k":"H1150","v":[["Binea",[2,2,[[12,2,2,0,2,[[345,1,1,0,1],[346,1,1,1,2]]]],[10612,10658]]]]},{"k":"H1151","v":[["Benammi",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[495]]]]},{"k":"H1152","v":[["Besodeiah",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12333]]]]},{"k":"H1153","v":[["Besai",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12076,12472]]]]},{"k":"H1154","v":[["grape",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13236]]]]},{"k":"H1155","v":[["*",[4,4,[[22,1,1,0,1,[[696,1,1,0,1]]],[23,2,2,1,3,[[775,2,2,1,3]]],[25,1,1,3,4,[[819,1,1,3,4]]]],[18002,19720,19721,20851]]],["grape",[3,3,[[22,1,1,0,1,[[696,1,1,0,1]]],[23,2,2,1,3,[[775,2,2,1,3]]]],[18002,19720,19721]]],["grapes",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20851]]]]},{"k":"H1156","v":[["*",[12,12,[[26,12,12,0,12,[[851,5,5,0,5],[853,1,1,5,6],[855,5,5,6,11],[856,1,1,11,12]]]],[21771,21774,21776,21781,21807,21873,21909,21912,21916,21917,21918,21949]]],["+",[2,2,[[26,2,2,0,2,[[855,1,1,0,1],[856,1,1,1,2]]]],[21909,21949]]],["ask",[2,2,[[26,2,2,0,2,[[855,2,2,0,2]]]],[21912,21917]]],["desire",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21776]]],["desired",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21774,21781]]],["maketh",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21918]]],["praying",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21916]]],["requested",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21807]]],["sought",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21771,21873]]]]},{"k":"H1157","v":[["*",[104,81,[[0,4,4,0,4,[[6,1,1,0,1],[19,2,2,1,3],[25,1,1,3,4]]],[1,2,2,4,6,[[57,1,1,4,5],[81,1,1,5,6]]],[2,12,5,6,11,[[98,3,1,6,7],[105,9,4,7,11]]],[3,1,1,11,12,[[137,1,1,11,12]]],[4,1,1,12,13,[[161,1,1,12,13]]],[5,1,1,13,14,[[188,1,1,13,14]]],[6,5,4,14,18,[[213,2,2,14,16],[215,2,1,16,17],[219,1,1,17,18]]],[8,7,7,18,25,[[236,1,1,18,19],[239,1,1,19,20],[242,2,2,20,22],[247,2,2,22,24],[254,1,1,24,25]]],[9,5,4,25,29,[[272,1,1,25,26],[276,2,1,26,27],[278,1,1,27,28],[286,1,1,28,29]]],[10,1,1,29,30,[[303,1,1,29,30]]],[11,12,8,30,38,[[313,1,1,30,31],[316,6,4,31,35],[321,1,1,35,36],[331,1,1,36,37],[334,3,1,37,38]]],[12,3,2,38,40,[[352,1,1,38,39],[356,2,1,39,40]]],[13,3,2,40,42,[[396,1,1,40,41],[400,2,1,41,42]]],[17,10,7,42,49,[[436,3,1,42,43],[437,2,1,43,44],[438,1,1,44,45],[441,1,1,45,46],[457,1,1,46,47],[477,2,2,47,49]]],[18,4,4,49,53,[[480,1,1,49,50],[549,1,1,50,51],[615,1,1,51,52],[616,1,1,52,53]]],[19,4,4,53,57,[[633,1,1,53,54],[634,1,1,54,55],[647,1,1,55,56],[654,1,1,56,57]]],[21,3,3,57,60,[[674,2,2,57,59],[676,1,1,59,60]]],[22,4,4,60,64,[[686,1,1,60,61],[704,1,1,61,62],[710,1,1,62,63],[715,1,1,63,64]]],[23,12,8,64,72,[[751,2,1,64,65],[755,3,1,65,66],[758,1,1,66,67],[765,1,1,67,68],[773,1,1,68,69],[781,1,1,69,70],[786,3,2,70,72]]],[24,1,1,72,73,[[799,1,1,72,73]]],[25,4,3,73,76,[[823,1,1,73,74],[846,3,2,74,76]]],[28,2,2,76,78,[[877,2,2,76,78]]],[29,1,1,78,79,[[887,1,1,78,79]]],[31,1,1,79,80,[[890,1,1,79,80]]],[37,1,1,80,81,[[922,1,1,80,81]]]],[175,502,513,700,1738,2468,2960,3207,3212,3218,3225,4347,5177,5884,6590,6591,6651,6805,7218,7315,7357,7361,7479,7483,7718,8173,8252,8302,8575,9190,9535,9607,9608,9624,9636,9786,10065,10158,10820,10920,11845,11954,12879,12895,12927,13000,13402,13930,13932,13960,15015,16239,16250,16566,16581,16970,17182,17583,17585,17621,17826,18150,18273,18356,19135,19240,19304,19442,19642,19877,19977,19995,20361,21006,21647,21652,22319,22320,22505,22554,23053]]],["+",[9,9,[[0,2,2,0,2,[[6,1,1,0,1],[19,1,1,1,2]]],[8,1,1,2,3,[[236,1,1,2,3]]],[17,1,1,3,4,[[437,1,1,3,4]]],[21,3,3,4,7,[[674,2,2,4,6],[676,1,1,6,7]]],[29,1,1,7,8,[[887,1,1,7,8]]],[37,1,1,8,9,[[922,1,1,8,9]]]],[175,513,7218,12895,17583,17585,17621,22505,23053]]],["about",[7,5,[[17,3,1,0,1,[[436,3,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]],[22,1,1,2,3,[[704,1,1,2,3]]],[24,1,1,3,4,[[799,1,1,3,4]]],[31,1,1,4,5,[[890,1,1,4,5]]]],[12879,16250,18150,20361,22554]]],["at",[5,5,[[0,1,1,0,1,[[25,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[11,1,1,2,3,[[321,1,1,2,3]]],[12,1,1,3,4,[[352,1,1,3,4]]],[28,1,1,4,5,[[877,1,1,4,5]]]],[700,6651,9786,10820,22320]]],["by",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7315]]],["concerneth",[1,1,[[18,1,1,0,1,[[615,1,1,0,1]]]],[16239]]],["for",[60,43,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,2,2,1,3,[[57,1,1,1,2],[81,1,1,2,3]]],[2,12,5,3,8,[[98,3,1,3,4],[105,9,4,4,8]]],[3,1,1,8,9,[[137,1,1,8,9]]],[4,1,1,9,10,[[161,1,1,9,10]]],[8,4,4,10,14,[[242,2,2,10,12],[247,2,2,12,14]]],[9,3,2,14,16,[[276,2,1,14,15],[278,1,1,15,16]]],[10,1,1,16,17,[[303,1,1,16,17]]],[11,4,2,17,19,[[331,1,1,17,18],[334,3,1,18,19]]],[12,2,1,19,20,[[356,2,1,19,20]]],[13,2,1,20,21,[[400,2,1,20,21]]],[17,4,4,21,25,[[437,1,1,21,22],[441,1,1,22,23],[477,2,2,23,25]]],[18,2,2,25,27,[[480,1,1,25,26],[549,1,1,26,27]]],[19,2,2,27,29,[[647,1,1,27,28],[654,1,1,28,29]]],[22,3,3,29,32,[[686,1,1,29,30],[710,1,1,30,31],[715,1,1,31,32]]],[23,12,8,32,40,[[751,2,1,32,33],[755,3,1,33,34],[758,1,1,34,35],[765,1,1,35,36],[773,1,1,36,37],[781,1,1,37,38],[786,3,2,38,40]]],[25,4,3,40,43,[[823,1,1,40,41],[846,3,2,41,43]]]],[502,1738,2468,2960,3207,3212,3218,3225,4347,5177,7357,7361,7479,7483,8252,8302,9190,10065,10158,10920,11954,12895,13000,13930,13932,13960,15015,16970,17182,17826,18273,18356,19135,19240,19304,19442,19642,19877,19977,19995,21006,21647,21652]]],["him",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6591]]],["means",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16566]]],["one",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11845]]],["over",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8575]]],["through",[7,7,[[5,1,1,0,1,[[188,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[8,1,1,2,3,[[254,1,1,2,3]]],[9,1,1,3,4,[[272,1,1,3,4]]],[11,1,1,4,5,[[313,1,1,4,5]]],[17,1,1,5,6,[[457,1,1,5,6]]],[19,1,1,6,7,[[634,1,1,6,7]]]],[5884,6651,7718,8173,9535,13402,16581]]],["to",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6805]]],["upon",[8,6,[[6,1,1,0,1,[[213,1,1,0,1]]],[11,6,4,1,5,[[316,6,4,1,5]]],[28,1,1,5,6,[[877,1,1,5,6]]]],[6590,9607,9608,9624,9636,22319]]],["whom",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12927]]]]},{"k":"H1158","v":[["*",[5,4,[[22,4,3,0,3,[[699,2,1,0,1],[708,1,1,1,2],[742,1,1,2,3]]],[30,1,1,3,4,[[888,1,1,3,4]]]],[18047,18230,18887,22516]]],["boil",[1,1,[[22,1,1,0,1,[[742,1,1,0,1]]]],[18887]]],["enquire",[2,1,[[22,2,1,0,1,[[699,2,1,0,1]]]],[18047]]],["out",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18230]]],["up",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22516]]]]},{"k":"H1159","v":[["petition",[2,2,[[26,2,2,0,2,[[855,2,2,0,2]]]],[21912,21918]]]]},{"k":"H1160","v":[["Beor",[10,10,[[0,1,1,0,1,[[35,1,1,0,1]]],[3,4,4,1,5,[[138,1,1,1,2],[140,2,2,2,4],[147,1,1,4,5]]],[4,1,1,5,6,[[175,1,1,5,6]]],[5,2,2,6,8,[[199,1,1,6,7],[210,1,1,7,8]]],[12,1,1,8,9,[[338,1,1,8,9]]],[32,1,1,9,10,[[898,1,1,9,10]]]],[1072,4380,4449,4461,4672,5504,6176,6485,10295,22653]]]]},{"k":"H1161","v":[["terrors",[2,2,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,1,1,1,2,[[565,1,1,1,2]]]],[12982,15324]]]]},{"k":"H1162","v":[["*",[24,22,[[7,20,18,0,18,[[233,10,10,0,10],[234,2,2,10,12],[235,8,6,12,18]]],[10,1,1,18,19,[[297,1,1,18,19]]],[12,2,2,19,21,[[339,2,2,19,21]]],[13,1,1,21,22,[[369,1,1,21,22]]]],[7150,7152,7153,7154,7157,7160,7163,7164,7168,7172,7174,7179,7191,7195,7198,7199,7203,7211,8955,10317,10318,11246]]],["+",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7191]]],["Boaz",[23,22,[[7,19,18,0,18,[[233,10,10,0,10],[234,2,2,10,12],[235,7,6,12,18]]],[10,1,1,18,19,[[297,1,1,18,19]]],[12,2,2,19,21,[[339,2,2,19,21]]],[13,1,1,21,22,[[369,1,1,21,22]]]],[7150,7152,7153,7154,7157,7160,7163,7164,7168,7172,7174,7179,7191,7195,7198,7199,7203,7211,8955,10317,10318,11246]]]]},{"k":"H1163","v":[["*",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]]],[5773,7269]]],["kick",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7269]]],["kicked",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5773]]]]},{"k":"H1164","v":[["grave",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13581]]]]},{"k":"H1165","v":[["*",[6,6,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[3,3,3,2,5,[[136,3,3,2,5]]],[18,1,1,5,6,[[555,1,1,5,6]]]],[1375,2118,4315,4319,4322,15161]]],["beast",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2118]]],["beasts",[3,3,[[0,1,1,0,1,[[44,1,1,0,1]]],[3,2,2,1,3,[[136,2,2,1,3]]]],[1375,4319,4322]]],["cattle",[2,2,[[3,1,1,0,1,[[136,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[4315,15161]]]]},{"k":"H1166","v":[["*",[15,13,[[0,1,1,0,1,[[19,1,1,0,1]]],[4,2,2,1,3,[[174,1,1,1,2],[176,1,1,2,3]]],[12,1,1,3,4,[[341,1,1,3,4]]],[19,1,1,4,5,[[657,1,1,4,5]]],[22,7,5,5,10,[[704,1,1,5,6],[732,2,2,6,8],[740,4,2,8,10]]],[23,2,2,10,12,[[747,1,1,10,11],[775,1,1,11,12]]],[38,1,1,12,13,[[926,1,1,12,13]]]],[498,5492,5526,10407,17274,18143,18724,18728,18858,18859,19016,19723,23114]]],["Beulah",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18858]]],["dominion",[2,2,[[12,1,1,0,1,[[341,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]]],[10407,18143]]],["husband",[2,2,[[22,1,1,0,1,[[732,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[18728,19723]]],["married",[6,6,[[4,2,2,0,2,[[174,1,1,0,1],[176,1,1,1,2]]],[19,1,1,2,3,[[657,1,1,2,3]]],[22,1,1,3,4,[[740,1,1,3,4]]],[23,1,1,4,5,[[747,1,1,4,5]]],[38,1,1,5,6,[[926,1,1,5,6]]]],[5492,5526,17274,18858,19016,23114]]],["marrieth",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18859]]],["marry",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18859]]],["wife",[2,2,[[0,1,1,0,1,[[19,1,1,0,1]]],[22,1,1,1,2,[[732,1,1,1,2]]]],[498,18724]]]]},{"k":"H1167","v":[["*",[85,81,[[0,4,4,0,4,[[13,1,1,0,1],[19,1,1,1,2],[36,1,1,2,3],[48,1,1,3,4]]],[1,14,12,4,16,[[70,8,6,4,10],[71,5,5,10,15],[73,1,1,15,16]]],[2,1,1,16,17,[[110,1,1,16,17]]],[3,1,1,17,18,[[137,1,1,17,18]]],[4,4,4,18,22,[[167,1,1,18,19],[173,1,1,19,20],[174,1,1,20,21],[176,1,1,21,22]]],[5,1,1,22,23,[[210,1,1,22,23]]],[6,19,17,23,40,[[219,16,14,23,37],[229,2,2,37,39],[230,1,1,39,40]]],[8,2,2,40,42,[[258,2,2,40,42]]],[9,3,3,42,45,[[267,1,1,42,43],[277,1,1,43,44],[287,1,1,44,45]]],[11,1,1,45,46,[[313,1,1,45,46]]],[15,1,1,46,47,[[418,1,1,46,47]]],[16,2,2,47,49,[[426,2,2,47,49]]],[17,1,1,49,50,[[466,1,1,49,50]]],[19,14,14,50,64,[[628,2,2,50,52],[630,1,1,52,53],[639,1,1,53,54],[643,1,1,54,55],[644,1,1,55,56],[645,1,1,56,57],[649,1,1,57,58],[650,1,1,58,59],[651,1,1,59,60],[656,1,1,60,61],[658,3,3,61,64]]],[20,7,7,64,71,[[663,2,2,64,66],[665,1,1,66,67],[666,1,1,67,68],[668,2,2,68,70],[670,1,1,70,71]]],[22,4,4,71,75,[[679,1,1,71,72],[694,1,1,72,73],[719,1,1,73,74],[728,1,1,74,75]]],[23,2,2,75,77,[[747,1,1,75,76],[781,1,1,76,77]]],[26,2,2,77,79,[[857,2,2,77,79]]],[28,1,1,79,80,[[876,1,1,79,80]]],[33,1,1,80,81,[[900,1,1,80,81]]]],[349,498,1102,1496,2080,2099,2105,2106,2111,2113,2121,2124,2125,2127,2128,2191,3349,4368,5321,5460,5492,5529,6487,6756,6757,6760,6761,6772,6774,6777,6778,6779,6780,6793,6800,6801,6805,7046,7047,7059,7821,7822,8028,8285,8592,9541,12419,12719,12722,13627,16417,16419,16482,16723,16862,16881,16910,17039,17046,17087,17246,17295,17307,17312,17408,17410,17441,17466,17504,17513,17534,17657,17977,18466,18670,19022,19887,21967,21981,22299,22686]]],["+",[15,15,[[0,3,3,0,3,[[13,1,1,0,1],[36,1,1,1,2],[48,1,1,2,3]]],[1,1,1,3,4,[[70,1,1,3,4]]],[4,1,1,4,5,[[167,1,1,4,5]]],[6,1,1,5,6,[[219,1,1,5,6]]],[9,1,1,6,7,[[267,1,1,6,7]]],[11,1,1,7,8,[[313,1,1,7,8]]],[15,1,1,8,9,[[418,1,1,8,9]]],[19,2,2,9,11,[[628,1,1,9,10],[630,1,1,10,11]]],[20,1,1,11,12,[[668,1,1,11,12]]],[22,1,1,12,13,[[728,1,1,12,13]]],[23,1,1,13,14,[[747,1,1,13,14]]],[33,1,1,14,15,[[900,1,1,14,15]]]],[349,1102,1496,2080,5321,6774,8028,9541,12419,16417,16482,17504,18670,19022,22686]]],["captain",[1,1,[[23,1,1,0,1,[[781,1,1,0,1]]]],[19887]]],["given",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17466]]],["great",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16910]]],["had",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21967]]],["hath",[3,3,[[19,2,2,0,2,[[643,1,1,0,1],[644,1,1,1,2]]],[20,1,1,2,3,[[668,1,1,2,3]]]],[16862,16881,17513]]],["have",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17441]]],["having",[2,2,[[22,1,1,0,1,[[719,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]]],[18466,21981]]],["husband",[10,10,[[1,1,1,0,1,[[70,1,1,0,1]]],[4,3,3,1,4,[[173,1,1,1,2],[174,1,1,2,3],[176,1,1,3,4]]],[9,1,1,4,5,[[277,1,1,4,5]]],[19,4,4,5,9,[[639,1,1,5,6],[658,3,3,6,9]]],[28,1,1,9,10,[[876,1,1,9,10]]]],[2099,5460,5492,5529,8285,16723,17295,17307,17312,22299]]],["husbands",[2,2,[[16,2,2,0,2,[[426,2,2,0,2]]]],[12719,12722]]],["lords",[2,2,[[3,1,1,0,1,[[137,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]]],[4368,17977]]],["man",[5,5,[[1,1,1,0,1,[[73,1,1,0,1]]],[2,1,1,1,2,[[110,1,1,1,2]]],[19,3,3,2,5,[[649,1,1,2,3],[650,1,1,3,4],[656,1,1,4,5]]]],[2191,3349,17039,17046,17246]]],["man's",[1,1,[[0,1,1,0,1,[[19,1,1,0,1]]]],[498]]],["master",[3,3,[[1,1,1,0,1,[[71,1,1,0,1]]],[6,2,2,1,3,[[229,2,2,1,3]]]],[2121,7046,7047]]],["master's",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17657]]],["masters",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17534]]],["men",[19,18,[[5,1,1,0,1,[[210,1,1,0,1]]],[6,15,14,1,15,[[219,14,13,1,14],[230,1,1,14,15]]],[8,2,2,15,17,[[258,2,2,15,17]]],[9,1,1,17,18,[[287,1,1,17,18]]]],[6487,6756,6757,6760,6761,6772,6774,6777,6778,6779,6780,6793,6800,6801,7059,7821,7822,8592]]],["owner",[10,8,[[1,10,8,0,8,[[70,6,4,0,4],[71,4,4,4,8]]]],[2105,2106,2111,2113,2124,2125,2127,2128]]],["owners",[4,4,[[17,1,1,0,1,[[466,1,1,0,1]]],[19,1,1,1,2,[[628,1,1,1,2]]],[20,2,2,2,4,[[663,2,2,2,4]]]],[13627,16419,17408,17410]]],["person",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17087]]],["they",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6805]]]]},{"k":"H1168","v":[["*",[81,69,[[3,1,1,0,1,[[138,1,1,0,1]]],[6,11,11,1,12,[[212,2,2,1,3],[213,1,1,3,4],[216,5,5,4,9],[218,1,1,9,10],[220,2,2,10,12]]],[8,2,2,12,14,[[242,1,1,12,13],[247,1,1,13,14]]],[10,13,11,14,25,[[306,3,2,14,16],[308,8,7,16,23],[309,1,1,23,24],[312,1,1,24,25]]],[11,24,16,25,41,[[315,1,1,25,26],[322,17,10,26,36],[323,2,1,36,37],[329,1,1,37,38],[333,1,1,38,39],[335,2,2,39,41]]],[12,4,4,41,45,[[341,1,1,41,42],[342,1,1,42,43],[345,1,1,43,44],[346,1,1,44,45]]],[13,7,6,45,51,[[383,1,1,45,46],[389,2,1,46,47],[390,1,1,47,48],[394,1,1,48,49],[399,1,1,49,50],[400,1,1,50,51]]],[23,13,12,51,63,[[746,2,2,51,53],[751,1,1,53,54],[753,1,1,54,55],[755,2,2,55,57],[756,1,1,57,58],[763,2,1,58,59],[767,2,2,59,61],[776,2,2,61,63]]],[27,5,5,63,68,[[863,3,3,63,66],[872,1,1,66,67],[874,1,1,67,68]]],[35,1,1,68,69,[[906,1,1,68,69]]]],[4416,6556,6558,6575,6679,6682,6684,6685,6686,6752,6817,6821,7356,7470,9314,9315,9359,9360,9362,9363,9366,9367,9381,9405,9533,9578,9811,9812,9813,9814,9815,9816,9818,9819,9820,9821,9847,9999,10122,10169,10170,10418,10433,10605,10651,11526,11673,11684,11766,11911,11937,18973,18988,19128,19189,19239,19243,19265,19412,19497,19511,19760,19766,22113,22118,22122,22242,22267,22791]]],["Baal",[62,50,[[3,1,1,0,1,[[138,1,1,0,1]]],[6,6,6,1,7,[[212,1,1,1,2],[216,5,5,2,7]]],[10,11,9,7,16,[[306,3,2,7,9],[308,6,5,9,14],[309,1,1,14,15],[312,1,1,15,16]]],[11,24,16,16,32,[[315,1,1,16,17],[322,17,10,17,27],[323,2,1,27,28],[329,1,1,28,29],[333,1,1,29,30],[335,2,2,30,32]]],[12,4,4,32,36,[[341,1,1,32,33],[342,1,1,33,34],[345,1,1,34,35],[346,1,1,35,36]]],[13,2,1,36,37,[[389,2,1,36,37]]],[23,11,10,37,47,[[746,1,1,37,38],[751,1,1,38,39],[755,2,2,39,41],[756,1,1,41,42],[763,2,1,42,43],[767,2,2,43,45],[776,2,2,45,47]]],[27,2,2,47,49,[[863,1,1,47,48],[874,1,1,48,49]]],[35,1,1,49,50,[[906,1,1,49,50]]]],[4416,6558,6679,6682,6684,6685,6686,9314,9315,9360,9362,9366,9367,9381,9405,9533,9578,9811,9812,9813,9814,9815,9816,9818,9819,9820,9821,9847,9999,10122,10169,10170,10418,10433,10605,10651,11673,18973,19128,19239,19243,19265,19412,19497,19511,19760,19766,22113,22267,22791]]],["Baal's",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9363]]],["Baalim",[18,18,[[6,5,5,0,5,[[212,1,1,0,1],[213,1,1,1,2],[218,1,1,2,3],[220,2,2,3,5]]],[8,2,2,5,7,[[242,1,1,5,6],[247,1,1,6,7]]],[10,1,1,7,8,[[308,1,1,7,8]]],[13,5,5,8,13,[[383,1,1,8,9],[390,1,1,9,10],[394,1,1,10,11],[399,1,1,11,12],[400,1,1,12,13]]],[23,2,2,13,15,[[746,1,1,13,14],[753,1,1,14,15]]],[27,3,3,15,18,[[863,2,2,15,17],[872,1,1,17,18]]]],[6556,6575,6752,6817,6821,7356,7470,9359,11526,11684,11766,11911,11937,18988,19189,22118,22122,22242]]]]},{"k":"H1169","v":[["+",[3,3,[[14,3,3,0,3,[[406,3,3,0,3]]]],[12118,12119,12127]]]]},{"k":"H1170","v":[["Baalberith",[2,2,[[6,2,2,0,2,[[218,1,1,0,1],[219,1,1,1,2]]]],[6752,6758]]]]},{"k":"H1171","v":[["*",[3,3,[[5,3,3,0,3,[[197,1,1,0,1],[198,1,1,1,2],[199,1,1,2,3]]]],[6124,6137,6159]]],["+",[2,2,[[5,2,2,0,2,[[198,1,1,0,1],[199,1,1,1,2]]]],[6137,6159]]],["Baalgad",[1,1,[[5,1,1,0,1,[[197,1,1,0,1]]]],[6124]]]]},{"k":"H1172","v":[["*",[4,3,[[8,2,1,0,1,[[263,2,1,0,1]]],[10,1,1,1,2,[[307,1,1,1,2]]],[33,1,1,2,3,[[902,1,1,2,3]]]],[7949,9334,22716]]],["hath",[2,1,[[8,2,1,0,1,[[263,2,1,0,1]]]],[7949]]],["mistress",[2,2,[[10,1,1,0,1,[[307,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[9334,22716]]]]},{"k":"H1173","v":[["*",[5,5,[[5,4,4,0,4,[[201,4,4,0,4]]],[12,1,1,4,5,[[350,1,1,4,5]]]],[6211,6212,6213,6231,10766]]],["+",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6212]]],["Baalah",[4,4,[[5,3,3,0,3,[[201,3,3,0,3]]],[12,1,1,3,4,[[350,1,1,3,4]]]],[6211,6213,6231,10766]]]]},{"k":"H1174","v":[["Baalhamon",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17651]]]]},{"k":"H1175","v":[["*",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]]],[6226,8860]]],["Aloth",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8860]]],["Bealoth",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6226]]]]},{"k":"H1176","v":[["Baalzebub",[4,4,[[11,4,4,0,4,[[313,4,4,0,4]]]],[9535,9536,9539,9549]]]]},{"k":"H1177","v":[["Baalhanan",[5,5,[[0,2,2,0,2,[[35,2,2,0,2]]],[12,3,3,2,5,[[338,2,2,2,4],[364,1,1,4,5]]]],[1078,1079,10301,10302,11137]]]]},{"k":"H1178","v":[["Baalhazor",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8340]]]]},{"k":"H1179","v":[["Baalhermon",[2,2,[[6,1,1,0,1,[[213,1,1,0,1]]],[12,1,1,1,2,[[342,1,1,1,2]]]],[6571,10451]]]]},{"k":"H1180","v":[["Baali",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22121]]]]},{"k":"H1181","v":[]},{"k":"H1182","v":[["Beeliada",[1,1,[[12,1,1,0,1,[[351,1,1,0,1]]]],[10781]]]]},{"k":"H1183","v":[["Bealiah",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10725]]]]},{"k":"H1184","v":[["+",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8159]]]]},{"k":"H1185","v":[["Baalis",[1,1,[[23,1,1,0,1,[[784,1,1,0,1]]]],[19955]]]]},{"k":"H1186","v":[["Baalmeon",[3,3,[[3,1,1,0,1,[[148,1,1,0,1]]],[12,1,1,1,2,[[342,1,1,1,2]]],[25,1,1,2,3,[[826,1,1,2,3]]]],[4756,10436,21092]]]]},{"k":"H1187","v":[["Baalpeor",[6,5,[[3,2,2,0,2,[[141,2,2,0,2]]],[4,2,1,2,3,[[156,2,1,2,3]]],[18,1,1,3,4,[[583,1,1,3,4]]],[27,1,1,4,5,[[870,1,1,4,5]]]],[4474,4476,5007,15679,22218]]]]},{"k":"H1188","v":[["Baalperazim",[4,2,[[9,2,1,0,1,[[271,2,1,0,1]]],[12,2,1,1,2,[[351,2,1,1,2]]]],[8152,10785]]]]},{"k":"H1189","v":[["Baalzephon",[3,3,[[1,2,2,0,2,[[63,2,2,0,2]]],[3,1,1,2,3,[[149,1,1,2,3]]]],[1891,1898,4767]]]]},{"k":"H1190","v":[["+",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9645]]]]},{"k":"H1191","v":[["Baalath",[3,3,[[5,1,1,0,1,[[205,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[13,1,1,2,3,[[374,1,1,2,3]]]],[6365,9069,11352]]]]},{"k":"H1192","v":[["Baalathbeer",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6329]]]]},{"k":"H1193","v":[["Baaltamar",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7087]]]]},{"k":"H1194","v":[["Beon",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4721]]]]},{"k":"H1195","v":[["*",[3,3,[[9,1,1,0,1,[[270,1,1,0,1]]],[10,2,2,1,3,[[294,2,2,1,3]]]],[8125,8856,8860]]],["Baana",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8856]]],["Baanah",[2,2,[[9,1,1,0,1,[[270,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]]],[8125,8860]]]]},{"k":"H1196","v":[["*",[9,9,[[9,4,4,0,4,[[270,3,3,0,3],[289,1,1,3,4]]],[12,1,1,4,5,[[348,1,1,4,5]]],[14,1,1,5,6,[[404,1,1,5,6]]],[15,3,3,6,9,[[415,1,1,6,7],[419,1,1,7,8],[422,1,1,8,9]]]],[8122,8126,8129,8682,10703,12029,12331,12427,12576]]],["Baana",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12331]]],["Baanah",[8,8,[[9,4,4,0,4,[[270,3,3,0,3],[289,1,1,3,4]]],[12,1,1,4,5,[[348,1,1,4,5]]],[14,1,1,5,6,[[404,1,1,5,6]]],[15,2,2,6,8,[[419,1,1,6,7],[422,1,1,7,8]]]],[8122,8126,8129,8682,10703,12029,12427,12576]]]]},{"k":"H1197","v":[["*",[94,90,[[1,6,5,0,5,[[52,2,2,0,2],[71,3,2,2,4],[84,1,1,4,5]]],[2,1,1,5,6,[[95,1,1,5,6]]],[3,3,3,6,9,[[127,2,2,6,8],[140,1,1,8,9]]],[4,16,16,9,25,[[156,1,1,9,10],[157,1,1,10,11],[161,1,1,11,12],[165,1,1,12,13],[169,2,2,13,15],[171,2,2,15,17],[173,2,2,17,19],[174,3,3,19,22],[176,1,1,22,23],[178,2,2,23,25]]],[6,4,3,25,28,[[225,3,2,25,27],[230,1,1,27,28]]],[9,3,3,28,31,[[270,1,1,28,29],[288,2,2,29,31]]],[10,5,4,31,35,[[304,2,1,31,32],[306,1,1,32,33],[311,1,1,33,34],[312,1,1,34,35]]],[11,1,1,35,36,[[335,1,1,35,36]]],[13,4,4,36,40,[[370,1,1,36,37],[379,1,1,37,38],[385,1,1,38,39],[394,1,1,39,40]]],[15,1,1,40,41,[[422,1,1,40,41]]],[16,1,1,41,42,[[426,1,1,41,42]]],[17,1,1,42,43,[[436,1,1,42,43]]],[18,8,8,43,51,[[479,1,1,43,44],[495,1,1,44,45],[516,1,1,45,46],[556,1,1,46,47],[560,1,1,47,48],[566,1,1,48,49],[571,1,1,49,50],[583,1,1,50,51]]],[22,17,17,51,68,[[679,1,1,51,52],[681,1,1,52,53],[682,1,1,53,54],[683,1,1,54,55],[684,1,1,55,56],[687,1,1,56,57],[688,1,1,57,58],[697,1,1,58,59],[708,2,2,59,61],[712,1,1,61,62],[718,1,1,62,63],[720,1,1,63,64],[721,1,1,64,65],[722,1,1,65,66],[728,1,1,66,67],[740,1,1,67,68]]],[23,11,11,68,79,[[748,1,1,68,69],[751,2,2,69,71],[754,3,3,71,74],[764,1,1,74,75],[765,1,1,75,76],[780,1,1,76,77],[788,1,1,77,78],[795,1,1,78,79]]],[24,1,1,79,80,[[798,1,1,79,80]]],[25,7,6,80,86,[[802,1,1,80,81],[806,1,1,81,82],[821,1,1,82,83],[822,1,1,83,84],[840,3,2,84,86]]],[27,2,2,86,88,[[868,2,2,86,88]]],[33,1,1,88,89,[[901,1,1,88,89]]],[38,1,1,89,90,[[928,1,1,89,90]]]],[1581,1582,2118,2119,2534,2861,4025,4027,4468,5015,5076,5172,5277,5371,5376,5419,5425,5456,5468,5491,5492,5494,5532,5579,5580,6934,6943,7067,8131,8611,8615,9228,9286,9472,9526,10189,11266,11464,11579,11767,12583,12714,12885,13957,14126,14515,15190,15255,15372,15439,15669,17685,17721,17737,17744,17782,17847,17867,18015,18244,18250,18312,18436,18505,18507,18548,18673,18855,19031,19137,19139,19209,19215,19222,19431,19452,19864,20016,20229,20335,20477,20548,20943,20975,21457,21458,22182,22184,22712,23139]]],["+",[10,10,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,6,6,1,7,[[165,1,1,1,2],[169,1,1,2,3],[171,1,1,3,4],[173,1,1,4,5],[174,1,1,5,6],[176,1,1,6,7]]],[9,1,1,7,8,[[270,1,1,7,8]]],[13,1,1,8,9,[[394,1,1,8,9]]],[23,1,1,9,10,[[751,1,1,9,10]]]],[2119,5277,5371,5425,5468,5491,5532,8131,11767,19137]]],["away",[14,13,[[4,7,7,0,7,[[169,1,1,0,1],[171,1,1,1,2],[173,1,1,2,3],[174,2,2,3,5],[178,2,2,5,7]]],[6,1,1,7,8,[[230,1,1,7,8]]],[10,4,3,8,11,[[304,2,1,8,9],[306,1,1,9,10],[311,1,1,10,11]]],[11,1,1,11,12,[[335,1,1,11,12]]],[13,1,1,12,13,[[385,1,1,12,13]]]],[5376,5419,5456,5492,5494,5579,5580,7067,9228,9286,9472,10189,11579]]],["brutish",[7,7,[[18,1,1,0,1,[[571,1,1,0,1]]],[22,1,1,1,2,[[697,1,1,1,2]]],[23,4,4,2,6,[[754,3,3,2,5],[795,1,1,5,6]]],[25,1,1,6,7,[[822,1,1,6,7]]]],[15439,18015,19209,19215,19222,20229,20975]]],["burn",[19,19,[[2,1,1,0,1,[[95,1,1,0,1]]],[4,1,1,1,2,[[157,1,1,1,2]]],[13,2,2,2,4,[[370,1,1,2,3],[379,1,1,3,4]]],[15,1,1,4,5,[[422,1,1,4,5]]],[18,2,2,5,7,[[556,1,1,5,6],[566,1,1,6,7]]],[22,4,4,7,11,[[679,1,1,7,8],[688,1,1,8,9],[718,1,1,9,10],[722,1,1,10,11]]],[23,3,3,11,14,[[748,1,1,11,12],[751,1,1,12,13],[765,1,1,13,14]]],[25,3,3,14,17,[[806,1,1,14,15],[840,2,2,15,17]]],[33,1,1,17,18,[[901,1,1,17,18]]],[38,1,1,18,19,[[928,1,1,18,19]]]],[2861,5076,11266,11464,12583,15190,15372,17685,17867,18436,18548,19031,19139,19452,20548,21457,21458,22712,23139]]],["burned",[7,7,[[1,1,1,0,1,[[52,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[161,1,1,2,3]]],[16,1,1,3,4,[[426,1,1,3,4]]],[18,1,1,4,5,[[516,1,1,4,5]]],[22,1,1,5,6,[[720,1,1,5,6]]],[24,1,1,6,7,[[798,1,1,6,7]]]],[1581,5015,5172,12714,14515,18505,20335]]],["burneth",[4,4,[[18,1,1,0,1,[[560,1,1,0,1]]],[22,2,2,1,3,[[687,1,1,1,2],[740,1,1,2,3]]],[27,1,1,3,4,[[868,1,1,3,4]]]],[15255,17847,18855,22184]]],["burning",[6,6,[[22,3,3,0,3,[[682,1,1,0,1],[708,1,1,1,2],[712,1,1,2,3]]],[23,2,2,3,5,[[764,1,1,3,4],[780,1,1,4,5]]],[25,1,1,5,6,[[802,1,1,5,6]]]],[17737,18244,18312,19431,19864,20477]]],["burnt",[4,4,[[1,1,1,0,1,[[52,1,1,0,1]]],[3,2,2,1,3,[[127,2,2,1,3]]],[6,1,1,3,4,[[225,1,1,3,4]]]],[1582,4025,4027,6943]]],["eaten",[2,2,[[1,1,1,0,1,[[71,1,1,0,1]]],[22,1,1,1,2,[[684,1,1,1,2]]]],[2118,17782]]],["feed",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2118]]],["fire",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21457]]],["heated",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22182]]],["kindle",[3,3,[[1,1,1,0,1,[[84,1,1,0,1]]],[22,2,2,1,3,[[708,1,1,1,2],[721,1,1,2,3]]]],[2534,18250,18507]]],["kindled",[8,8,[[9,2,2,0,2,[[288,2,2,0,2]]],[18,3,3,2,5,[[479,1,1,2,3],[495,1,1,3,4],[583,1,1,4,5]]],[22,1,1,5,6,[[728,1,1,5,6]]],[23,1,1,6,7,[[788,1,1,6,7]]],[25,1,1,7,8,[[821,1,1,7,8]]]],[8611,8615,13957,14126,15669,18673,20016,20943]]],["set",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6934]]],["took",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9526]]],["up",[4,4,[[6,1,1,0,1,[[225,1,1,0,1]]],[17,1,1,1,2,[[436,1,1,1,2]]],[22,2,2,2,4,[[681,1,1,2,3],[683,1,1,3,4]]]],[6934,12885,17721,17744]]],["wasted",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4468]]]]},{"k":"H1198","v":[["*",[5,5,[[18,3,3,0,3,[[526,1,1,0,1],[550,1,1,1,2],[569,1,1,2,3]]],[19,2,2,3,5,[[639,1,1,3,4],[657,1,1,4,5]]]],[14658,15042,15417,16720,17253]]],["brutish",[3,3,[[18,1,1,0,1,[[569,1,1,0,1]]],[19,2,2,1,3,[[639,1,1,1,2],[657,1,1,2,3]]]],[15417,16720,17253]]],["foolish",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15042]]],["person",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14658]]]]},{"k":"H1199","v":[["Baara",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10583]]]]},{"k":"H1200","v":[["fire",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2119]]]]},{"k":"H1201","v":[["Baasha",[28,26,[[10,22,20,0,20,[[305,10,9,0,9],[306,11,10,9,19],[311,1,1,19,20]]],[11,1,1,20,21,[[321,1,1,20,21]]],[13,4,4,21,25,[[382,4,4,21,25]]],[23,1,1,25,26,[[785,1,1,25,26]]]],[9265,9266,9268,9270,9271,9276,9277,9281,9282,9284,9286,9287,9288,9289,9290,9291,9294,9295,9296,9473,9765,11510,11512,11514,11515,19966]]]]},{"k":"H1202","v":[["Baaseiah",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10494]]]]},{"k":"H1203","v":[["Beeshterah",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6408]]]]},{"k":"H1204","v":[["*",[16,16,[[8,2,2,0,2,[[251,2,2,0,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[16,1,1,4,5,[[432,1,1,4,5]]],[17,8,8,5,13,[[438,1,1,5,6],[442,1,1,6,7],[444,1,1,7,8],[448,2,2,8,10],[450,1,1,10,11],[453,1,1,11,12],[468,1,1,12,13]]],[18,1,1,13,14,[[495,1,1,13,14]]],[22,1,1,14,15,[[699,1,1,14,15]]],[26,1,1,15,16,[[857,1,1,15,16]]]],[7609,7610,8607,10964,12813,12909,13022,13085,13164,13174,13227,13287,13657,14122,18039,21978]]],["+",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18039]]],["afraid",[10,10,[[9,1,1,0,1,[[288,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]],[16,1,1,2,3,[[432,1,1,2,3]]],[17,5,5,3,8,[[448,2,2,3,5],[450,1,1,5,6],[453,1,1,6,7],[468,1,1,7,8]]],[18,1,1,8,9,[[495,1,1,8,9]]],[26,1,1,9,10,[[857,1,1,9,10]]]],[8607,10964,12813,13164,13174,13227,13287,13657,14122,21978]]],["terrifiest",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13022]]],["terrify",[2,2,[[17,2,2,0,2,[[438,1,1,0,1],[444,1,1,1,2]]]],[12909,13085]]],["troubled",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7609]]],["troubleth",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7610]]]]},{"k":"H1205","v":[["trouble",[2,2,[[23,2,2,0,2,[[752,1,1,0,1],[758,1,1,1,2]]]],[19168,19312]]]]},{"k":"H1206","v":[["mire",[1,1,[[23,1,1,0,1,[[782,1,1,0,1]]]],[19917]]]]},{"k":"H1207","v":[["*",[3,3,[[17,2,2,0,2,[[443,1,1,0,1],[475,1,1,1,2]]],[25,1,1,2,3,[[848,1,1,2,3]]]],[13040,13885,21690]]],["fens",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13885]]],["mire",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13040]]],["places",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21690]]]]},{"k":"H1208","v":[["vintage",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23030]]]]},{"k":"H1209","v":[["Bezai",[3,3,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,2,2,1,3,[[419,1,1,1,2],[422,1,1,2,3]]]],[12044,12443,12567]]]]},{"k":"H1210","v":[["*",[7,6,[[2,2,1,0,1,[[115,2,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]],[22,2,2,2,4,[[702,1,1,2,3],[710,1,1,3,4]]],[23,1,1,4,5,[[792,1,1,4,5]]],[32,1,1,5,6,[[899,1,1,5,6]]]],[3529,6721,18108,18269,20112,22665]]],["+",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6721]]],["vintage",[6,5,[[2,2,1,0,1,[[115,2,1,0,1]]],[22,2,2,1,3,[[702,1,1,1,2],[710,1,1,2,3]]],[23,1,1,3,4,[[792,1,1,3,4]]],[32,1,1,4,5,[[899,1,1,4,5]]]],[3529,18108,18269,20112,22665]]]]},{"k":"H1211","v":[["onions",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4029]]]]},{"k":"H1212","v":[["Bezaleel",[9,9,[[1,6,6,0,6,[[80,1,1,0,1],[84,1,1,1,2],[85,2,2,2,4],[86,1,1,4,5],[87,1,1,5,6]]],[12,1,1,6,7,[[339,1,1,6,7]]],[13,1,1,7,8,[[367,1,1,7,8]]],[14,1,1,8,9,[[412,1,1,8,9]]]],[2422,2561,2567,2568,2605,2655,10326,11199,12282]]]]},{"k":"H1213","v":[["*",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12079,12474]]],["Bazlith",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12474]]],["Bazluth",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12079]]]]},{"k":"H1214","v":[["*",[17,17,[[6,1,1,0,1,[[215,1,1,0,1]]],[17,2,2,1,3,[[441,1,1,1,2],[462,1,1,2,3]]],[18,1,1,3,4,[[487,1,1,3,4]]],[19,2,2,4,6,[[628,1,1,4,5],[642,1,1,5,6]]],[22,2,2,6,8,[[688,1,1,6,7],[716,1,1,7,8]]],[23,2,2,8,10,[[750,1,1,8,9],[752,1,1,9,10]]],[24,1,1,10,11,[[798,1,1,10,11]]],[25,2,2,11,13,[[823,2,2,11,13]]],[28,1,1,13,14,[[877,1,1,13,14]]],[29,1,1,14,15,[[887,1,1,14,15]]],[34,1,1,15,16,[[904,1,1,15,16]]],[37,1,1,16,17,[[914,1,1,16,17]]]],[6642,12987,13489,14044,16419,16834,17862,18402,19102,19163,20349,20988,21003,22319,22496,22757,22931]]],["+",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19163]]],["coveteth",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22757]]],["covetous",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14044]]],["cut",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22496]]],["finish",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22931]]],["fulfilled",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20349]]],["gain",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6642]]],["gained",[2,2,[[17,1,1,0,1,[[462,1,1,0,1]]],[25,1,1,1,2,[[823,1,1,1,2]]]],[13489,20988]]],["get",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[21003]]],["greedy",[2,2,[[19,2,2,0,2,[[628,1,1,0,1],[642,1,1,1,2]]]],[16419,16834]]],["off",[2,2,[[17,1,1,0,1,[[441,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]]],[12987,18402]]],["performed",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17862]]],["to",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19102]]],["wounded",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22319]]]]},{"k":"H1215","v":[["*",[22,22,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,1,1,1,2,[[67,1,1,1,2]]],[8,1,1,2,3,[[243,1,1,2,3]]],[17,1,1,3,4,[[457,1,1,3,4]]],[18,2,2,4,6,[[507,1,1,4,5],[596,1,1,5,6]]],[19,3,3,6,9,[[628,1,1,6,7],[642,1,1,7,8],[655,1,1,8,9]]],[22,3,3,9,12,[[711,1,1,9,10],[734,1,1,10,11],[735,1,1,11,12]]],[23,4,4,12,16,[[750,1,1,12,13],[752,1,1,13,14],[766,1,1,14,15],[795,1,1,15,16]]],[25,3,3,16,19,[[823,2,2,16,18],[834,1,1,18,19]]],[32,1,1,19,20,[[896,1,1,19,20]]],[34,1,1,20,21,[[904,1,1,20,21]]],[38,1,1,21,22,[[927,1,1,21,22]]]],[1109,2020,7372,13392,14328,15934,16419,16834,17212,18294,18764,18782,19102,19163,19471,20225,20989,21003,21311,22633,22757,23134]]],["+",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19163]]],["covetousness",[9,9,[[1,1,1,0,1,[[67,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[19,1,1,2,3,[[655,1,1,2,3]]],[22,1,1,3,4,[[735,1,1,3,4]]],[23,3,3,4,7,[[750,1,1,4,5],[766,1,1,5,6],[795,1,1,6,7]]],[25,1,1,7,8,[[834,1,1,7,8]]],[34,1,1,8,9,[[904,1,1,8,9]]]],[2020,15934,17212,18782,19102,19471,20225,21311,22757]]],["gain",[8,8,[[17,1,1,0,1,[[457,1,1,0,1]]],[19,2,2,1,3,[[628,1,1,1,2],[642,1,1,2,3]]],[22,2,2,3,5,[[711,1,1,3,4],[734,1,1,4,5]]],[25,2,2,5,7,[[823,2,2,5,7]]],[32,1,1,7,8,[[896,1,1,7,8]]]],[13392,16419,16834,18294,18764,20989,21003,22633]]],["lucre",[1,1,[[8,1,1,0,1,[[243,1,1,0,1]]]],[7372]]],["profit",[3,3,[[0,1,1,0,1,[[36,1,1,0,1]]],[18,1,1,1,2,[[507,1,1,1,2]]],[38,1,1,2,3,[[927,1,1,2,3]]]],[1109,14328,23134]]]]},{"k":"H1216","v":[["*",[2,2,[[4,1,1,0,1,[[160,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]]],[5141,12532]]],["swell",[1,1,[[4,1,1,0,1,[[160,1,1,0,1]]]],[5141]]],["swelled",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12532]]]]},{"k":"H1217","v":[["*",[5,5,[[1,2,2,0,2,[[61,2,2,0,2]]],[9,1,1,2,3,[[279,1,1,2,3]]],[23,1,1,3,4,[[751,1,1,3,4]]],[27,1,1,4,5,[[868,1,1,4,5]]]],[1850,1855,8325,19137,22182]]],["dough",[4,4,[[1,2,2,0,2,[[61,2,2,0,2]]],[23,1,1,2,3,[[751,1,1,2,3]]],[27,1,1,3,4,[[868,1,1,3,4]]]],[1850,1855,19137,22182]]],["flour",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8325]]]]},{"k":"H1218","v":[["*",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[11,1,1,1,2,[[334,1,1,1,2]]]],[6241,10146]]],["+",[1,1,[[11,1,1,0,1,[[334,1,1,0,1]]]],[10146]]],["Bozkath",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6241]]]]},{"k":"H1219","v":[["*",[37,37,[[0,1,1,0,1,[[10,1,1,0,1]]],[2,2,2,1,3,[[114,2,2,1,3]]],[3,1,1,3,4,[[129,1,1,3,4]]],[4,5,5,4,9,[[153,1,1,4,5],[155,1,1,5,6],[161,1,1,6,7],[176,1,1,7,8],[180,1,1,8,9]]],[5,1,1,9,10,[[200,1,1,9,10]]],[6,1,1,10,11,[[219,1,1,10,11]]],[9,1,1,11,12,[[286,1,1,11,12]]],[11,2,2,12,14,[[330,1,1,12,13],[331,1,1,13,14]]],[13,4,4,14,18,[[383,1,1,14,15],[385,1,1,15,16],[398,1,1,16,17],[399,1,1,17,18]]],[15,1,1,18,19,[[421,1,1,18,19]]],[17,1,1,19,20,[[477,1,1,19,20]]],[18,1,1,20,21,[[553,1,1,20,21]]],[22,6,6,21,27,[[680,1,1,21,22],[700,1,1,22,23],[703,1,1,23,24],[705,1,1,24,25],[714,1,1,25,26],[715,1,1,26,27]]],[23,5,5,27,32,[[750,1,1,27,28],[759,1,1,28,29],[777,1,1,29,30],[793,1,1,30,31],[795,1,1,31,32]]],[25,2,2,32,34,[[822,1,1,32,33],[837,1,1,33,34]]],[27,1,1,34,35,[[869,1,1,34,35]]],[30,1,1,35,36,[[888,1,1,35,36]]],[35,1,1,36,37,[[906,1,1,36,37]]]],[272,3474,3480,4103,4920,4980,5158,5546,5663,6199,6781,8560,10037,10086,11525,11581,11876,11922,12536,13924,15093,17700,18062,18120,18161,18331,18378,19098,19335,19778,20136,20265,20964,21394,22208,22515,22803]]],["+",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6781]]],["defenced",[5,5,[[22,4,4,0,4,[[703,1,1,0,1],[705,1,1,1,2],[714,1,1,2,3],[715,1,1,3,4]]],[25,1,1,4,5,[[822,1,1,4,5]]]],[18120,18161,18331,18378,20964]]],["fenced",[15,15,[[4,2,2,0,2,[[155,1,1,0,1],[180,1,1,1,2]]],[5,1,1,2,3,[[200,1,1,2,3]]],[9,1,1,3,4,[[286,1,1,3,4]]],[11,2,2,4,6,[[330,1,1,4,5],[331,1,1,5,6]]],[13,4,4,6,10,[[383,1,1,6,7],[385,1,1,7,8],[398,1,1,8,9],[399,1,1,9,10]]],[22,1,1,10,11,[[680,1,1,10,11]]],[23,1,1,11,12,[[759,1,1,11,12]]],[25,1,1,12,13,[[837,1,1,12,13]]],[27,1,1,13,14,[[869,1,1,13,14]]],[35,1,1,14,15,[[906,1,1,14,15]]]],[4980,5663,6199,8560,10037,10086,11525,11581,11876,11922,17700,19335,21394,22208,22803]]],["fortify",[2,2,[[22,1,1,0,1,[[700,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[18062,20265]]],["gather",[2,2,[[2,2,2,0,2,[[114,2,2,0,2]]]],[3474,3480]]],["grapegatherer",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19098]]],["grapegatherers",[2,2,[[23,1,1,0,1,[[793,1,1,0,1]]],[30,1,1,1,2,[[888,1,1,1,2]]]],[20136,22515]]],["grapes",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5546]]],["mighty",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19778]]],["off",[1,1,[[18,1,1,0,1,[[553,1,1,0,1]]]],[15093]]],["restrained",[1,1,[[0,1,1,0,1,[[10,1,1,0,1]]]],[272]]],["strong",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12536]]],["up",[1,1,[[4,1,1,0,1,[[161,1,1,0,1]]]],[5158]]],["walled",[2,2,[[3,1,1,0,1,[[129,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]]],[4103,4920]]],["withholden",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13924]]]]},{"k":"H1220","v":[["*",[2,2,[[17,2,2,0,2,[[457,2,2,0,2]]]],[13413,13414]]],["defence",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13414]]],["gold",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13413]]]]},{"k":"H1221","v":[["Bezer",[5,5,[[4,1,1,0,1,[[156,1,1,0,1]]],[5,2,2,1,3,[[206,1,1,1,2],[207,1,1,2,3]]],[12,2,2,3,5,[[343,1,1,3,4],[344,1,1,4,5]]]],[5047,6380,6417,10532,10572]]]]},{"k":"H1222","v":[["gold",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13755]]]]},{"k":"H1223","v":[["Bozrah",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22607]]]]},{"k":"H1224","v":[["*",[8,8,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[22,2,2,2,4,[[712,1,1,2,3],[741,1,1,3,4]]],[23,3,3,4,7,[[792,1,1,4,5],[793,2,2,5,7]]],[29,1,1,7,8,[[879,1,1,7,8]]]],[1073,10296,18309,18867,20104,20140,20149,22376]]],["+",[3,3,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[22,1,1,2,3,[[741,1,1,2,3]]]],[1073,10296,18867]]],["Bozrah",[5,5,[[22,1,1,0,1,[[712,1,1,0,1]]],[23,3,3,1,4,[[792,1,1,1,2],[793,2,2,2,4]]],[29,1,1,4,5,[[879,1,1,4,5]]]],[18309,20104,20140,20149,22376]]]]},{"k":"H1225","v":[["hold",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23011]]]]},{"k":"H1226","v":[["*",[2,2,[[23,2,2,0,2,[[758,1,1,0,1],[761,1,1,1,2]]]],[19294,19365]]],["dearth",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19294]]],["drought",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19365]]]]},{"k":"H1227","v":[["Bakbuk",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12078,12473]]]]},{"k":"H1228","v":[["*",[3,3,[[10,1,1,0,1,[[304,1,1,0,1]]],[23,2,2,1,3,[[763,2,2,1,3]]]],[9221,19408,19417]]],["bottle",[2,2,[[23,2,2,0,2,[[763,2,2,0,2]]]],[19408,19417]]],["cruse",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9221]]]]},{"k":"H1229","v":[["Bakbukiah",[3,3,[[15,3,3,0,3,[[423,1,1,0,1],[424,2,2,1,3]]]],[12605,12633,12649]]]]},{"k":"H1230","v":[["Bakbakkar",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10630]]]]},{"k":"H1231","v":[["Bukki",[5,4,[[3,1,1,0,1,[[150,1,1,0,1]]],[12,3,2,1,3,[[343,3,2,1,3]]],[14,1,1,3,4,[[409,1,1,3,4]]]],[4838,10459,10505,12177]]]]},{"k":"H1232","v":[["Bukkiah",[2,2,[[12,2,2,0,2,[[362,2,2,0,2]]]],[11050,11059]]]]},{"k":"H1233","v":[["*",[2,2,[[22,1,1,0,1,[[700,1,1,0,1]]],[29,1,1,1,2,[[884,1,1,1,2]]]],[18061,22461]]],["breaches",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18061]]],["clefts",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22461]]]]},{"k":"H1234","v":[["*",[51,50,[[0,2,2,0,2,[[6,1,1,0,1],[21,1,1,1,2]]],[1,2,2,2,4,[[63,2,2,2,4]]],[3,1,1,4,5,[[132,1,1,4,5]]],[5,2,2,5,7,[[195,2,2,5,7]]],[6,1,1,7,8,[[225,1,1,7,8]]],[8,1,1,8,9,[[241,1,1,8,9]]],[9,1,1,9,10,[[289,1,1,9,10]]],[10,1,1,10,11,[[291,1,1,10,11]]],[11,5,5,11,16,[[314,1,1,11,12],[315,1,1,12,13],[320,1,1,13,14],[327,1,1,14,15],[337,1,1,15,16]]],[12,1,1,16,17,[[348,1,1,16,17]]],[13,3,3,17,20,[[387,1,1,17,18],[391,1,1,18,19],[398,1,1,19,20]]],[15,1,1,20,21,[[421,1,1,20,21]]],[17,3,3,21,24,[[461,1,1,21,22],[463,1,1,22,23],[467,1,1,23,24]]],[18,4,4,24,28,[[551,1,1,24,25],[555,2,2,25,27],[618,1,1,27,28]]],[19,1,1,28,29,[[630,1,1,28,29]]],[20,1,1,29,30,[[668,1,1,29,30]]],[22,8,7,30,37,[[685,1,1,30,31],[712,1,1,31,32],[713,1,1,32,33],[726,1,1,33,34],[736,1,1,34,35],[737,2,1,35,36],[741,1,1,36,37]]],[23,2,2,37,39,[[783,1,1,37,38],[796,1,1,38,39]]],[25,5,5,39,44,[[814,2,2,39,41],[827,1,1,41,42],[830,1,1,42,43],[831,1,1,43,44]]],[27,2,2,44,46,[[874,2,2,44,46]]],[29,1,1,46,47,[[879,1,1,46,47]]],[32,1,1,47,48,[[893,1,1,47,48]]],[34,1,1,48,49,[[905,1,1,48,49]]],[37,1,1,49,50,[[924,1,1,49,50]]]],[170,550,1905,1910,4225,6041,6050,6948,7345,8669,8757,9575,9602,9739,9941,10226,10691,11641,11716,11876,12522,13475,13514,13647,15063,15126,15128,16283,16475,17502,17788,18318,18326,18635,18794,18805,18878,19925,20283,20719,20721,21110,21190,21220,22274,22282,22377,22583,22777,23072]]],["+",[3,3,[[6,1,1,0,1,[[225,1,1,0,1]]],[8,1,1,1,2,[[241,1,1,1,2]]],[17,1,1,2,3,[[461,1,1,2,3]]]],[6948,7345,13475]]],["asunder",[2,2,[[3,1,1,0,1,[[132,1,1,0,1]]],[25,1,1,1,2,[[831,1,1,1,2]]]],[4225,21220]]],["breach",[2,2,[[22,1,1,0,1,[[685,1,1,0,1]]],[25,1,1,1,2,[[827,1,1,1,2]]]],[17788,21110]]],["burst",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13647]]],["clave",[3,3,[[0,1,1,0,1,[[21,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]],[22,1,1,2,3,[[726,1,1,2,3]]]],[550,15128,18635]]],["cleave",[3,3,[[18,1,1,0,1,[[551,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]],[37,1,1,2,3,[[924,1,1,2,3]]]],[15063,22777,23072]]],["cleaveth",[2,2,[[18,1,1,0,1,[[618,1,1,0,1]]],[20,1,1,1,2,[[668,1,1,1,2]]]],[16283,17502]]],["cleft",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22583]]],["divide",[2,2,[[1,1,1,0,1,[[63,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]]],[1905,12522]]],["divided",[2,2,[[1,1,1,0,1,[[63,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[1910,15126]]],["dividing",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18878]]],["forth",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18794]]],["hatch",[2,2,[[22,2,2,0,2,[[712,1,1,0,1],[737,1,1,1,2]]]],[18318,18805]]],["into",[1,1,[[13,1,1,0,1,[[387,1,1,0,1]]]],[11641]]],["out",[3,3,[[17,1,1,0,1,[[463,1,1,0,1]]],[22,2,2,1,3,[[713,1,1,1,2],[737,1,1,2,3]]]],[13514,18326,18805]]],["pieces",[1,1,[[13,1,1,0,1,[[391,1,1,0,1]]]],[11716]]],["rend",[3,3,[[25,3,3,0,3,[[814,2,2,0,2],[830,1,1,2,3]]]],[20719,20721,21190]]],["rent",[3,3,[[5,2,2,0,2,[[195,2,2,0,2]]],[10,1,1,2,3,[[291,1,1,2,3]]]],[6041,6050,8757]]],["tare",[1,1,[[11,1,1,0,1,[[314,1,1,0,1]]]],[9575]]],["tear",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22274]]],["through",[3,3,[[9,1,1,0,1,[[289,1,1,0,1]]],[11,1,1,1,2,[[315,1,1,1,2]]],[12,1,1,2,3,[[348,1,1,2,3]]]],[8669,9602,10691]]],["up",[9,9,[[0,1,1,0,1,[[6,1,1,0,1]]],[11,3,3,1,4,[[320,1,1,1,2],[327,1,1,2,3],[337,1,1,3,4]]],[19,1,1,4,5,[[630,1,1,4,5]]],[23,2,2,5,7,[[783,1,1,5,6],[796,1,1,6,7]]],[27,1,1,7,8,[[874,1,1,7,8]]],[29,1,1,8,9,[[879,1,1,8,9]]]],[170,9739,9941,10226,16475,19925,20283,22282,22377]]],["win",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11876]]]]},{"k":"H1235","v":[["*",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,1,1,1,2,[[87,1,1,1,2]]]],[613,2659]]],["bekah",[1,1,[[1,1,1,0,1,[[87,1,1,0,1]]]],[2659]]],["shekel",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[613]]]]},{"k":"H1236","v":[["plain",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21808]]]]},{"k":"H1237","v":[["*",[20,20,[[0,1,1,0,1,[[10,1,1,0,1]]],[4,3,3,1,4,[[160,1,1,1,2],[163,1,1,2,3],[186,1,1,3,4]]],[5,3,3,4,7,[[197,2,2,4,6],[198,1,1,6,7]]],[13,1,1,7,8,[[401,1,1,7,8]]],[15,1,1,8,9,[[418,1,1,8,9]]],[18,1,1,9,10,[[581,1,1,9,10]]],[22,3,3,10,13,[[718,1,1,10,11],[719,1,1,11,12],[741,1,1,12,13]]],[25,5,5,13,18,[[804,2,2,13,15],[809,1,1,15,16],[838,2,2,16,18]]],[29,1,1,18,19,[[879,1,1,18,19]]],[37,1,1,19,20,[[922,1,1,19,20]]]],[268,5144,5219,5842,6115,6124,6137,11988,12403,15579,18424,18469,18880,20524,20525,20608,21398,21399,22369,23056]]],["+",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22369]]],["plain",[6,6,[[0,1,1,0,1,[[10,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]],[25,3,3,3,6,[[804,2,2,3,5],[809,1,1,5,6]]]],[268,12403,18424,20524,20525,20608]]],["valley",[9,9,[[4,1,1,0,1,[[186,1,1,0,1]]],[5,3,3,1,4,[[197,2,2,1,3],[198,1,1,3,4]]],[13,1,1,4,5,[[401,1,1,4,5]]],[22,1,1,5,6,[[741,1,1,5,6]]],[25,2,2,6,8,[[838,2,2,6,8]]],[37,1,1,8,9,[[922,1,1,8,9]]]],[5842,6115,6124,6137,11988,18880,21398,21399,23056]]],["valleys",[4,4,[[4,2,2,0,2,[[160,1,1,0,1],[163,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[22,1,1,3,4,[[719,1,1,3,4]]]],[5144,5219,15579,18469]]]]},{"k":"H1238","v":[["*",[9,7,[[22,4,3,0,3,[[697,1,1,0,1],[702,3,2,1,3]]],[23,2,2,3,5,[[763,1,1,3,4],[795,1,1,4,5]]],[27,1,1,5,6,[[871,1,1,5,6]]],[33,2,1,6,7,[[901,2,1,6,7]]]],[18007,18096,18098,19414,20214,22226,22701]]],["+",[5,4,[[22,3,2,0,2,[[702,3,2,0,2]]],[23,2,2,2,4,[[763,1,1,2,3],[795,1,1,3,4]]]],[18096,18098,19414,20214]]],["emptied",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22701]]],["emptiers",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22701]]],["empty",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22226]]],["fail",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18007]]]]},{"k":"H1239","v":[["*",[7,7,[[2,2,2,0,2,[[102,1,1,0,1],[116,1,1,1,2]]],[11,1,1,2,3,[[328,1,1,2,3]]],[18,1,1,3,4,[[504,1,1,3,4]]],[19,1,1,4,5,[[647,1,1,4,5]]],[25,2,2,5,7,[[835,2,2,5,7]]]],[3088,3603,9978,14289,16979,21324,21325]]],["+",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21325]]],["enquire",[2,2,[[11,1,1,0,1,[[328,1,1,0,1]]],[18,1,1,1,2,[[504,1,1,1,2]]]],[9978,14289]]],["enquiry",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16979]]],["out",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21324]]],["search",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3603]]],["seek",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3088]]]]},{"k":"H1240","v":[["*",[5,5,[[14,5,5,0,5,[[406,2,2,0,2],[407,1,1,2,3],[408,1,1,3,4],[409,1,1,4,5]]]],[12125,12129,12151,12152,12187]]],["enquire",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12187]]],["made",[4,4,[[14,4,4,0,4,[[406,2,2,0,2],[407,1,1,2,3],[408,1,1,3,4]]]],[12125,12129,12151,12152]]]]},{"k":"H1241","v":[["*",[183,172,[[0,17,16,0,16,[[11,1,1,0,1],[12,1,1,1,2],[17,3,2,2,4],[19,1,1,4,5],[20,1,1,5,6],[23,1,1,6,7],[25,1,1,7,8],[31,1,1,8,9],[32,1,1,9,10],[33,1,1,10,11],[44,1,1,11,12],[45,1,1,12,13],[46,2,2,13,15],[49,1,1,15,16]]],[1,9,9,16,25,[[58,1,1,16,17],[59,2,2,17,19],[61,2,2,19,21],[69,1,1,21,22],[71,1,1,22,23],[78,1,1,23,24],[83,1,1,24,25]]],[2,12,12,25,37,[[90,3,3,25,28],[92,1,1,28,29],[93,2,2,29,31],[98,1,1,31,32],[105,1,1,32,33],[111,2,2,33,35],[112,1,1,35,36],[116,1,1,36,37]]],[3,50,49,37,86,[[123,30,30,37,67],[124,2,1,67,68],[127,1,1,68,69],[131,4,4,69,73],[138,1,1,73,74],[144,3,3,74,77],[145,4,4,77,81],[147,5,5,81,86]]],[4,10,10,86,96,[[160,1,1,86,87],[164,3,3,87,90],[166,2,2,90,92],[167,1,1,92,93],[168,1,1,93,94],[173,1,1,94,95],[184,1,1,95,96]]],[6,1,1,96,97,[[213,1,1,96,97]]],[8,12,10,97,107,[[246,3,2,97,99],[249,2,1,99,100],[250,4,4,100,104],[251,1,1,104,105],[262,1,1,105,106],[265,1,1,106,107]]],[9,7,6,107,113,[[272,1,1,107,108],[278,2,2,108,110],[283,1,1,110,111],[290,3,2,111,113]]],[10,12,9,113,122,[[291,1,1,113,114],[294,2,1,114,115],[297,4,3,115,118],[298,2,2,118,120],[309,3,2,120,122]]],[11,2,2,122,124,[[317,1,1,122,123],[328,1,1,123,124]]],[12,6,4,124,128,[[349,2,1,124,125],[350,1,1,125,126],[358,1,1,126,127],[364,2,1,127,128]]],[13,18,17,128,145,[[370,4,3,128,131],[371,1,1,131,132],[373,1,1,132,133],[379,1,1,133,134],[381,1,1,134,135],[384,1,1,135,136],[395,3,3,136,139],[397,1,1,139,140],[398,1,1,140,141],[401,4,4,141,145]]],[15,1,1,145,146,[[422,1,1,145,146]]],[17,4,4,146,150,[[436,2,2,146,148],[475,1,1,148,149],[477,1,1,149,150]]],[18,1,1,150,151,[[543,1,1,150,151]]],[20,1,1,151,152,[[660,1,1,151,152]]],[22,5,5,152,157,[[685,1,1,152,153],[689,1,1,153,154],[700,1,1,154,155],[743,2,2,155,157]]],[23,4,4,157,161,[[747,1,1,157,158],[749,1,1,158,159],[775,1,1,159,160],[796,1,1,160,161]]],[25,6,6,161,167,[[805,1,1,161,162],[844,3,3,162,165],[846,1,1,165,166],[847,1,1,166,167]]],[27,1,1,167,168,[[866,1,1,167,168]]],[28,1,1,168,169,[[876,1,1,168,169]]],[29,1,1,169,170,[[884,1,1,169,170]]],[31,1,1,170,171,[[891,1,1,170,171]]],[34,1,1,171,172,[[905,1,1,171,172]]]],[314,323,431,432,509,540,626,706,935,973,1008,1368,1418,1421,1437,1514,1745,1786,1801,1848,1854,2075,2114,2337,2499,2747,2748,2750,2779,2798,2809,2955,3204,3388,3390,3420,3602,3853,3856,3857,3858,3865,3867,3871,3873,3877,3879,3883,3885,3889,3891,3895,3897,3901,3903,3907,3909,3913,3915,3919,3921,3925,3927,3931,3933,3937,3938,3947,4046,4156,4161,4162,4177,4415,4588,4596,4604,4610,4616,4621,4625,4692,4694,4697,4702,4708,5150,5246,5257,5261,5313,5316,5338,5344,5450,5772,6599,7450,7452,7540,7569,7574,7575,7581,7597,7939,7998,8163,8288,8290,8478,8714,8716,8726,8867,8959,8963,8978,8990,9048,9407,9408,9673,9980,10760,10769,10957,11138,11249,11250,11261,11274,11329,11462,11501,11544,11813,11823,11824,11860,11904,11973,11974,11975,11978,12585,12872,12883,13879,13934,14888,17340,17803,17891,18065,18907,18922,19026,19075,19703,20296,20544,21591,21595,21597,21648,21661,22158,22309,22462,22565,22785]]],["+",[45,44,[[0,2,2,0,2,[[17,2,2,0,2]]],[1,1,1,2,3,[[78,1,1,2,3]]],[2,6,6,3,9,[[90,1,1,3,4],[93,2,2,4,6],[98,1,1,6,7],[105,1,1,7,8],[112,1,1,8,9]]],[3,24,23,9,32,[[123,12,12,9,21],[124,2,1,21,22],[131,3,3,22,25],[144,3,3,25,28],[145,4,4,28,32]]],[4,2,2,32,34,[[164,1,1,32,33],[173,1,1,33,34]]],[8,2,2,34,36,[[249,1,1,34,35],[251,1,1,35,36]]],[9,1,1,36,37,[[278,1,1,36,37]]],[13,1,1,37,38,[[379,1,1,37,38]]],[23,1,1,38,39,[[747,1,1,38,39]]],[25,5,5,39,44,[[844,3,3,39,42],[846,1,1,42,43],[847,1,1,43,44]]]],[431,432,2337,2750,2798,2809,2955,3204,3420,3865,3871,3877,3883,3889,3895,3901,3907,3913,3919,3925,3931,3947,4161,4162,4177,4588,4596,4604,4610,4616,4621,4625,5261,5450,7540,7597,8290,11462,19026,21591,21595,21597,21648,21661]]],["beeves",[7,7,[[2,2,2,0,2,[[111,2,2,0,2]]],[3,5,5,2,7,[[147,5,5,2,7]]]],[3388,3390,4692,4694,4697,4702,4708]]],["bullock",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18922]]],["bullocks",[4,4,[[13,3,3,0,3,[[395,2,2,0,2],[401,1,1,2,3]]],[18,1,1,3,4,[[543,1,1,3,4]]]],[11813,11823,11973,14888]]],["bulls",[1,1,[[23,1,1,0,1,[[796,1,1,0,1]]]],[20296]]],["cattle",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22309]]],["cow's",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20544]]],["great",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17340]]],["herd",[12,12,[[0,1,1,0,1,[[17,1,1,0,1]]],[2,4,4,1,5,[[90,2,2,1,3],[92,1,1,3,4],[116,1,1,4,5]]],[3,1,1,5,6,[[131,1,1,5,6]]],[4,2,2,6,8,[[167,1,1,6,7],[168,1,1,7,8]]],[8,1,1,8,9,[[246,1,1,8,9]]],[23,1,1,9,10,[[775,1,1,9,10]]],[31,1,1,10,11,[[891,1,1,10,11]]],[34,1,1,11,12,[[905,1,1,11,12]]]],[431,2747,2748,2779,3602,4156,5338,5344,7450,19703,22565,22785]]],["herds",[29,28,[[0,10,10,0,10,[[12,1,1,0,1],[23,1,1,1,2],[25,1,1,2,3],[31,1,1,3,4],[32,1,1,4,5],[44,1,1,5,6],[45,1,1,6,7],[46,2,2,7,9],[49,1,1,9,10]]],[1,5,5,10,15,[[59,2,2,10,12],[61,2,2,12,14],[83,1,1,14,15]]],[3,1,1,15,16,[[127,1,1,15,16]]],[4,4,4,16,20,[[160,1,1,16,17],[164,2,2,17,19],[166,1,1,19,20]]],[8,1,1,20,21,[[265,1,1,20,21]]],[9,1,1,21,22,[[278,1,1,21,22]]],[12,2,1,22,23,[[364,2,1,22,23]]],[13,1,1,23,24,[[398,1,1,23,24]]],[15,1,1,24,25,[[422,1,1,24,25]]],[22,1,1,25,26,[[743,1,1,25,26]]],[23,1,1,26,27,[[749,1,1,26,27]]],[27,1,1,27,28,[[866,1,1,27,28]]]],[323,626,706,935,973,1368,1418,1421,1437,1514,1786,1801,1848,1854,2499,4046,5150,5246,5257,5313,7998,8288,11138,11904,12585,18907,19075,22158]]],["kine",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]]],[5772,8478]]],["ox",[3,3,[[6,1,1,0,1,[[213,1,1,0,1]]],[17,1,1,1,2,[[475,1,1,1,2]]],[22,1,1,2,3,[[689,1,1,2,3]]]],[6599,13879,17891]]],["oxen",[75,68,[[0,4,4,0,4,[[11,1,1,0,1],[19,1,1,1,2],[20,1,1,2,3],[33,1,1,3,4]]],[1,3,3,4,7,[[58,1,1,4,5],[69,1,1,5,6],[71,1,1,6,7]]],[3,19,19,7,26,[[123,18,18,7,25],[138,1,1,25,26]]],[4,1,1,26,27,[[166,1,1,26,27]]],[8,8,7,27,34,[[246,2,1,27,28],[249,1,1,28,29],[250,4,4,29,33],[262,1,1,33,34]]],[9,4,3,34,37,[[272,1,1,34,35],[290,3,2,35,37]]],[10,12,9,37,46,[[291,1,1,37,38],[294,2,1,38,39],[297,4,3,39,42],[298,2,2,42,44],[309,3,2,44,46]]],[11,2,2,46,48,[[317,1,1,46,47],[328,1,1,47,48]]],[12,4,3,48,51,[[349,2,1,48,49],[350,1,1,49,50],[358,1,1,50,51]]],[13,13,12,51,63,[[370,4,3,51,54],[371,1,1,54,55],[373,1,1,55,56],[381,1,1,56,57],[384,1,1,57,58],[395,1,1,58,59],[397,1,1,59,60],[401,3,3,60,63]]],[17,3,3,63,66,[[436,2,2,63,65],[477,1,1,65,66]]],[22,1,1,66,67,[[700,1,1,66,67]]],[29,1,1,67,68,[[884,1,1,67,68]]]],[314,509,540,1008,1745,2075,2114,3853,3856,3857,3858,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3937,3938,4415,5316,7452,7540,7569,7574,7575,7581,7939,8163,8714,8716,8726,8867,8959,8963,8978,8990,9048,9407,9408,9673,9980,10760,10769,10957,11249,11250,11261,11274,11329,11501,11544,11824,11860,11974,11975,11978,12872,12883,13934,18065,22462]]],["young",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17803]]]]},{"k":"H1242","v":[["*",[214,189,[[0,19,19,0,19,[[0,6,6,0,6],[18,1,1,6,7],[19,1,1,7,8],[20,1,1,8,9],[21,1,1,9,10],[23,1,1,10,11],[25,1,1,11,12],[27,1,1,12,13],[28,1,1,13,14],[30,1,1,14,15],[39,1,1,15,16],[40,1,1,16,17],[43,1,1,17,18],[48,1,1,18,19]]],[1,36,31,19,50,[[56,1,1,19,20],[57,1,1,20,21],[58,1,1,21,22],[59,1,1,22,23],[61,3,2,23,25],[63,2,2,25,27],[65,10,9,27,36],[67,2,2,36,38],[68,1,1,38,39],[72,1,1,39,40],[73,1,1,40,41],[76,1,1,41,42],[78,3,3,42,45],[79,2,1,45,46],[83,4,3,46,49],[85,2,1,49,50]]],[2,9,8,50,58,[[95,4,3,50,53],[96,1,1,53,54],[98,1,1,54,55],[108,1,1,55,56],[111,1,1,56,57],[113,1,1,57,58]]],[3,12,11,58,69,[[125,4,3,58,61],[130,1,1,61,62],[132,1,1,62,63],[138,3,3,63,66],[144,3,3,66,69]]],[4,4,3,69,72,[[168,2,2,69,71],[180,2,1,71,72]]],[5,5,5,72,77,[[189,1,1,72,73],[192,1,1,73,74],[193,2,2,74,76],[194,1,1,76,77]]],[6,10,10,77,87,[[216,2,2,77,79],[219,1,1,79,80],[226,1,1,80,81],[229,5,5,81,86],[230,1,1,86,87]]],[7,4,3,87,90,[[233,1,1,87,88],[234,3,2,88,90]]],[8,18,17,90,107,[[236,1,1,90,91],[238,1,1,91,92],[240,1,1,92,93],[244,1,1,93,94],[246,1,1,94,95],[249,1,1,95,96],[250,1,1,96,97],[252,1,1,97,98],[254,2,2,98,100],[255,1,1,100,101],[260,4,4,101,105],[264,3,2,105,107]]],[9,9,7,107,114,[[268,1,1,107,108],[277,1,1,108,109],[279,2,1,109,110],[283,1,1,110,111],[289,2,1,111,112],[290,2,2,112,114]]],[10,4,3,114,117,[[293,2,1,114,115],[307,1,1,115,116],[308,1,1,116,117]]],[11,7,7,117,124,[[315,2,2,117,119],[319,1,1,119,120],[322,2,2,120,122],[328,1,1,122,123],[331,1,1,123,124]]],[12,5,3,124,127,[[346,2,1,124,125],[353,1,1,125,126],[360,2,1,126,127]]],[13,5,4,127,131,[[368,1,1,127,128],[379,2,1,128,129],[386,1,1,129,130],[397,1,1,130,131]]],[14,1,1,131,132,[[405,1,1,131,132]]],[16,2,2,132,134,[[427,1,1,132,133],[430,1,1,133,134]]],[17,7,7,134,141,[[436,1,1,134,135],[439,1,1,135,136],[442,1,1,136,137],[446,1,1,137,138],[459,1,1,138,139],[473,2,2,139,141]]],[18,18,16,141,157,[[482,2,1,141,142],[507,1,1,142,143],[523,1,1,143,144],[526,1,1,144,145],[532,1,1,145,146],[536,1,1,146,147],[542,1,1,147,148],[550,1,1,148,149],[565,1,1,149,150],[567,3,3,150,153],[569,1,1,153,154],[578,1,1,154,155],[607,2,1,155,156],[620,1,1,156,157]]],[19,2,2,157,159,[[634,1,1,157,158],[654,1,1,158,159]]],[20,2,2,159,161,[[668,1,1,159,160],[669,1,1,160,161]]],[22,11,9,161,170,[[683,1,1,161,162],[695,2,2,162,164],[699,1,1,164,165],[706,2,1,165,166],[711,1,1,166,167],[715,1,1,167,168],[716,1,1,168,169],[728,2,1,169,170]]],[23,2,2,170,172,[[764,1,1,170,171],[765,1,1,171,172]]],[24,1,1,172,173,[[799,1,1,172,173]]],[25,10,6,173,179,[[813,1,1,173,174],[825,2,1,174,175],[834,1,1,175,176],[847,6,3,176,179]]],[26,2,2,179,181,[[857,2,2,179,181]]],[27,3,3,181,184,[[867,1,1,181,182],[868,1,1,182,183],[874,1,1,183,184]]],[29,2,2,184,186,[[882,1,1,184,185],[883,1,1,185,186]]],[32,1,1,186,187,[[894,1,1,186,187]]],[35,3,2,187,189,[[908,3,2,187,189]]]],[4,7,12,18,22,30,484,503,527,550,645,723,791,820,928,1178,1203,1327,1500,1700,1730,1755,1790,1826,1838,1913,1916,1954,1955,1959,1960,1966,1967,1968,1970,1971,2012,2013,2042,2162,2181,2293,2370,2375,2377,2389,2498,2500,2521,2569,2858,2861,2869,2894,2970,3294,3399,3449,3977,3980,3986,4148,4199,4388,4396,4416,4581,4585,4600,5346,5349,5678,5894,5961,5990,5992,6012,6682,6685,6787,6951,7029,7032,7049,7050,7051,7073,7156,7185,7186,7231,7291,7323,7410,7456,7544,7572,7638,7708,7717,7765,7883,7895,7897,7898,7977,7978,8076,8273,8321,8471,8657,8703,8707,8837,9323,9367,9596,9598,9716,9801,9802,9978,10096,10642,10860,11013,11215,11464,11607,11857,12100,12738,12793,12874,12950,13026,13125,13453,13800,13805,13976,14324,14619,14662,14749,14806,14868,15034,15321,15383,15384,15392,15413,15521,16146,16301,16593,17183,17509,17519,17750,17994,17997,18047,18183,18281,18388,18403,18666,19438,19452,20377,20688,21074,21302,21668,21669,21670,21975,21987,22171,22184,22269,22414,22431,22596,22823,22825]]],["+",[26,15,[[1,6,3,0,3,[[65,2,1,0,1],[79,2,1,1,2],[85,2,1,2,3]]],[2,2,1,3,4,[[95,2,1,3,4]]],[8,1,1,4,5,[[236,1,1,4,5]]],[10,1,1,5,6,[[308,1,1,5,6]]],[12,4,2,6,8,[[346,2,1,6,7],[360,2,1,7,8]]],[13,2,1,8,9,[[379,2,1,8,9]]],[17,1,1,9,10,[[439,1,1,9,10]]],[25,6,3,10,13,[[847,6,3,10,13]]],[26,1,1,13,14,[[857,1,1,13,14]]],[35,2,1,14,15,[[908,2,1,14,15]]]],[1968,2389,2569,2861,7231,9367,10642,11013,11464,12950,21668,21669,21670,21975,22825]]],["day",[3,2,[[6,1,1,0,1,[[229,1,1,0,1]]],[9,2,1,1,2,[[279,2,1,1,2]]]],[7050,8321]]],["early",[3,3,[[18,3,3,0,3,[[523,1,1,0,1],[567,1,1,1,2],[578,1,1,2,3]]]],[14619,15392,15521]]],["light",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7883]]],["morning",[174,161,[[0,19,19,0,19,[[0,6,6,0,6],[18,1,1,6,7],[19,1,1,7,8],[20,1,1,8,9],[21,1,1,9,10],[23,1,1,10,11],[25,1,1,11,12],[27,1,1,12,13],[28,1,1,13,14],[30,1,1,14,15],[39,1,1,15,16],[40,1,1,16,17],[43,1,1,17,18],[48,1,1,18,19]]],[1,30,28,19,47,[[56,1,1,19,20],[57,1,1,20,21],[58,1,1,21,22],[59,1,1,22,23],[61,3,2,23,25],[63,2,2,25,27],[65,8,8,27,35],[67,2,2,35,37],[68,1,1,37,38],[72,1,1,38,39],[73,1,1,39,40],[76,1,1,40,41],[78,3,3,41,44],[83,4,3,44,47]]],[2,6,6,47,53,[[95,2,2,47,49],[96,1,1,49,50],[98,1,1,50,51],[108,1,1,51,52],[113,1,1,52,53]]],[3,10,9,53,62,[[125,4,3,53,56],[130,1,1,56,57],[138,2,2,57,59],[144,3,3,59,62]]],[4,4,3,62,65,[[168,2,2,62,64],[180,2,1,64,65]]],[5,5,5,65,70,[[189,1,1,65,66],[192,1,1,66,67],[193,2,2,67,69],[194,1,1,69,70]]],[6,9,9,70,79,[[216,2,2,70,72],[219,1,1,72,73],[226,1,1,73,74],[229,4,4,74,78],[230,1,1,78,79]]],[7,4,3,79,82,[[233,1,1,79,80],[234,3,2,80,82]]],[8,15,14,82,96,[[238,1,1,82,83],[240,1,1,83,84],[246,1,1,84,85],[249,1,1,85,86],[250,1,1,86,87],[252,1,1,87,88],[254,2,2,88,90],[255,1,1,90,91],[260,3,3,91,94],[264,3,2,94,96]]],[9,7,6,96,102,[[268,1,1,96,97],[277,1,1,97,98],[283,1,1,98,99],[289,2,1,99,100],[290,2,2,100,102]]],[10,3,2,102,104,[[293,2,1,102,103],[307,1,1,103,104]]],[11,7,7,104,111,[[315,2,2,104,106],[319,1,1,106,107],[322,2,2,107,109],[328,1,1,109,110],[331,1,1,110,111]]],[12,1,1,111,112,[[353,1,1,111,112]]],[13,3,3,112,115,[[368,1,1,112,113],[386,1,1,113,114],[397,1,1,114,115]]],[14,1,1,115,116,[[405,1,1,115,116]]],[17,6,6,116,122,[[436,1,1,116,117],[442,1,1,117,118],[446,1,1,118,119],[459,1,1,119,120],[473,2,2,120,122]]],[18,15,13,122,135,[[482,2,1,122,123],[507,1,1,123,124],[526,1,1,124,125],[532,1,1,125,126],[536,1,1,126,127],[542,1,1,127,128],[550,1,1,128,129],[565,1,1,129,130],[567,2,2,130,132],[569,1,1,132,133],[607,2,1,133,134],[620,1,1,134,135]]],[19,2,2,135,137,[[634,1,1,135,136],[654,1,1,136,137]]],[20,2,2,137,139,[[668,1,1,137,138],[669,1,1,138,139]]],[22,11,9,139,148,[[683,1,1,139,140],[695,2,2,140,142],[699,1,1,142,143],[706,2,1,143,144],[711,1,1,144,145],[715,1,1,145,146],[716,1,1,146,147],[728,2,1,147,148]]],[23,2,2,148,150,[[764,1,1,148,149],[765,1,1,149,150]]],[24,1,1,150,151,[[799,1,1,150,151]]],[25,4,3,151,154,[[813,1,1,151,152],[825,2,1,152,153],[834,1,1,153,154]]],[26,1,1,154,155,[[857,1,1,154,155]]],[27,3,3,155,158,[[867,1,1,155,156],[868,1,1,156,157],[874,1,1,157,158]]],[29,2,2,158,160,[[882,1,1,158,159],[883,1,1,159,160]]],[32,1,1,160,161,[[894,1,1,160,161]]]],[4,7,12,18,22,30,484,503,527,550,645,723,791,820,928,1178,1203,1327,1500,1700,1730,1755,1790,1826,1838,1913,1916,1954,1955,1959,1960,1966,1967,1970,1971,2012,2013,2042,2162,2181,2293,2370,2375,2377,2498,2500,2521,2858,2869,2894,2970,3294,3449,3977,3980,3986,4148,4388,4396,4581,4585,4600,5346,5349,5678,5894,5961,5990,5992,6012,6682,6685,6787,6951,7029,7032,7049,7051,7073,7156,7185,7186,7291,7323,7456,7544,7572,7638,7708,7717,7765,7895,7897,7898,7977,7978,8076,8273,8471,8657,8703,8707,8837,9323,9596,9598,9716,9801,9802,9978,10096,10860,11215,11607,11857,12100,12874,13026,13125,13453,13800,13805,13976,14324,14662,14749,14806,14868,15034,15321,15383,15384,15413,16146,16301,16593,17183,17509,17519,17750,17994,17997,18047,18183,18281,18388,18403,18666,19438,19452,20377,20688,21074,21302,21987,22171,22184,22269,22414,22431,22596]]],["morrow",[7,7,[[2,1,1,0,1,[[111,1,1,0,1]]],[3,2,2,1,3,[[132,1,1,1,2],[138,1,1,2,3]]],[8,1,1,3,4,[[244,1,1,3,4]]],[16,2,2,4,6,[[427,1,1,4,5],[430,1,1,5,6]]],[35,1,1,6,7,[[908,1,1,6,7]]]],[3399,4199,4416,7410,12738,12793,22823]]]]},{"k":"H1243","v":[["out",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21325]]]]},{"k":"H1244","v":[["scourged",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3301]]]]},{"k":"H1245","v":[["*",[225,215,[[0,5,5,0,5,[[30,1,1,0,1],[36,2,2,1,3],[42,2,2,3,5]]],[1,5,5,5,10,[[51,1,1,5,6],[53,2,2,6,8],[59,1,1,8,9],[82,1,1,9,10]]],[2,1,1,10,11,[[108,1,1,10,11]]],[3,2,2,11,13,[[132,1,1,11,12],[151,1,1,12,13]]],[4,2,2,13,15,[[156,1,1,13,14],[165,1,1,14,15]]],[5,2,2,15,17,[[188,1,1,15,16],[208,1,1,16,17]]],[6,4,4,17,21,[[214,1,1,17,18],[216,1,1,18,19],[224,1,1,19,20],[228,1,1,20,21]]],[7,1,1,21,22,[[234,1,1,21,22]]],[8,26,25,22,47,[[244,1,1,22,23],[245,3,3,23,26],[248,1,1,26,27],[249,1,1,27,28],[251,1,1,28,29],[254,2,2,29,31],[255,2,2,31,33],[257,2,1,33,34],[258,4,4,34,38],[259,2,2,38,40],[260,2,2,40,42],[261,2,2,42,44],[262,2,2,44,46],[263,1,1,46,47]]],[9,11,11,47,58,[[269,1,1,47,48],[270,2,2,48,50],[271,1,1,50,51],[278,1,1,51,52],[282,1,1,52,53],[283,2,2,53,55],[286,1,1,55,56],[287,2,2,56,58]]],[10,10,10,58,68,[[291,2,2,58,60],[292,1,1,60,61],[300,1,1,61,62],[301,2,2,62,64],[308,1,1,64,65],[309,2,2,65,67],[310,1,1,67,68]]],[11,3,3,68,71,[[314,2,2,68,70],[318,1,1,70,71]]],[12,5,5,71,76,[[341,1,1,71,72],[351,1,1,72,73],[353,2,2,73,75],[358,1,1,75,76]]],[13,8,7,76,83,[[373,1,1,76,77],[375,1,1,77,78],[377,1,1,78,79],[381,2,2,79,81],[386,2,1,81,82],[388,1,1,82,83]]],[14,4,4,83,87,[[404,1,1,83,84],[410,3,3,84,87]]],[15,6,6,87,93,[[414,2,2,87,89],[417,2,2,89,91],[419,1,1,91,92],[424,1,1,92,93]]],[16,9,9,93,102,[[427,4,4,93,97],[428,1,1,97,98],[429,1,1,98,99],[431,1,1,99,100],[432,1,1,100,101],[434,1,1,101,102]]],[17,1,1,102,103,[[445,1,1,102,103]]],[18,27,26,103,129,[[481,1,1,103,104],[501,1,1,104,105],[504,3,2,105,107],[511,1,1,107,108],[512,1,1,108,109],[514,3,3,109,112],[515,1,1,112,113],[517,2,2,113,115],[531,1,1,115,116],[540,1,1,116,117],[546,1,1,117,118],[547,2,2,118,120],[548,2,2,120,122],[560,1,1,122,123],[563,1,1,123,124],[581,1,1,124,125],[582,2,2,125,127],[596,1,1,127,128],[599,1,1,128,129]]],[19,14,14,129,143,[[629,1,1,129,130],[638,1,1,130,131],[641,1,1,131,132],[642,1,1,132,133],[644,3,3,133,136],[645,2,2,136,138],[648,1,1,138,139],[650,1,1,139,140],[655,1,1,140,141],[656,2,2,141,143]]],[20,7,7,143,150,[[661,2,2,143,145],[665,3,3,145,148],[666,1,1,148,149],[670,1,1,149,150]]],[21,6,4,150,154,[[673,4,2,150,152],[675,1,1,152,153],[676,1,1,153,154]]],[22,7,7,154,161,[[679,1,1,154,155],[718,1,1,155,156],[719,2,2,156,158],[723,1,1,158,159],[729,1,1,159,160],[743,1,1,160,161]]],[23,23,20,161,181,[[746,2,2,161,163],[748,1,1,163,164],[749,2,1,164,165],[755,1,1,165,166],[763,2,2,166,168],[765,1,1,168,169],[766,1,1,169,170],[770,1,1,170,171],[773,1,1,171,172],[778,2,2,172,174],[782,1,1,174,175],[788,2,1,175,176],[789,2,1,176,177],[790,1,1,177,178],[793,1,1,178,179],[794,2,2,179,181]]],[24,2,2,181,183,[[797,2,2,181,183]]],[25,10,10,183,193,[[804,2,2,183,185],[808,2,2,185,187],[823,1,1,187,188],[827,1,1,188,189],[834,1,1,189,190],[835,3,3,190,193]]],[26,4,4,193,197,[[850,2,2,193,195],[857,1,1,195,196],[858,1,1,196,197]]],[27,5,5,197,202,[[863,1,1,197,198],[864,1,1,198,199],[866,2,2,199,201],[868,1,1,201,202]]],[29,1,1,202,203,[[886,1,1,202,203]]],[33,2,2,203,205,[[902,2,2,203,205]]],[35,4,2,205,207,[[906,1,1,205,206],[907,3,1,206,207]]],[37,5,5,207,212,[[916,1,1,207,208],[918,2,2,208,210],[921,1,1,210,211],[922,1,1,211,212]]],[38,3,3,212,215,[[926,2,2,212,214],[927,1,1,214,215]]]],[912,1098,1099,1299,1320,1569,1620,1625,1788,2480,3312,4204,4868,5033,5282,5891,6449,6621,6683,6913,6994,7173,7394,7420,7432,7439,7499,7512,7611,7708,7716,7731,7746,7810,7820,7824,7825,7835,7841,7848,7887,7890,7907,7925,7931,7934,7949,8098,8128,8131,8149,8302,8437,8452,8469,8573,8581,8582,8719,8720,8810,9103,9130,9148,9351,9397,9401,9415,9567,9568,9693,10424,10782,10830,10831,10937,11338,11387,11430,11494,11505,11591,11653,12089,12222,12223,12224,12311,12317,12394,12400,12484,12651,12726,12739,12745,12747,12753,12770,12795,12814,12836,13092,13967,14247,14289,14293,14402,14414,14475,14482,14486,14502,14539,14541,14728,14848,14941,14973,14975,14989,15000,15257,15298,15592,15609,15610,16074,16098,16437,16715,16778,16821,16882,16884,16892,16902,16916,16990,17079,17201,17234,17250,17365,17374,17454,17457,17458,17475,17533,17572,17573,17604,17615,17666,18440,18463,18468,18580,18674,18898,18989,18998,19057,19059,19247,19414,19416,19447,19479,19593,19648,19821,19822,19911,20040,20045,20071,20164,20170,20186,20321,20329,20520,20522,20602,20603,21006,21121,21288,21317,21319,21329,21745,21757,21976,21991,22112,22133,22158,22167,22188,22493,22719,22723,22793,22808,22954,22997,22998,23044,23054,23110,23118,23121]]],["+",[42,41,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,1,1,1,2,[[53,1,1,1,2]]],[4,1,1,2,3,[[156,1,1,2,3]]],[8,10,9,3,12,[[244,1,1,3,4],[245,1,1,4,5],[255,1,1,5,6],[257,2,1,6,7],[258,1,1,7,8],[259,1,1,8,9],[260,1,1,9,10],[261,2,2,10,12]]],[9,7,7,12,19,[[269,1,1,12,13],[270,2,2,13,15],[271,1,1,15,16],[278,1,1,16,17],[282,1,1,17,18],[287,1,1,18,19]]],[10,4,4,19,23,[[292,1,1,19,20],[300,1,1,20,21],[309,2,2,21,23]]],[11,1,1,23,24,[[314,1,1,23,24]]],[12,1,1,24,25,[[351,1,1,24,25]]],[13,4,4,25,29,[[375,1,1,25,26],[377,1,1,26,27],[386,1,1,27,28],[388,1,1,28,29]]],[15,1,1,29,30,[[424,1,1,29,30]]],[20,1,1,30,31,[[661,1,1,30,31]]],[21,1,1,31,32,[[673,1,1,31,32]]],[23,2,2,32,34,[[755,1,1,32,33],[782,1,1,33,34]]],[25,1,1,34,35,[[835,1,1,34,35]]],[27,2,2,35,37,[[864,1,1,35,36],[866,1,1,36,37]]],[29,1,1,37,38,[[886,1,1,37,38]]],[35,1,1,38,39,[[906,1,1,38,39]]],[37,2,2,39,41,[[918,2,2,39,41]]]],[1099,1620,5033,7394,7432,7731,7810,7825,7841,7890,7907,7925,8098,8128,8131,8149,8302,8437,8581,8810,9103,9397,9401,9567,10782,11387,11430,11591,11653,12651,17374,17572,19247,19911,21329,22133,22158,22493,22793,22997,22998]]],["Seek",[4,4,[[8,1,1,0,1,[[263,1,1,0,1]]],[18,1,1,1,2,[[504,1,1,1,2]]],[22,1,1,2,3,[[723,1,1,2,3]]],[35,1,1,3,4,[[907,1,1,3,4]]]],[7949,14293,18580,22808]]],["after",[8,8,[[18,8,8,0,8,[[481,1,1,0,1],[504,1,1,1,2],[512,1,1,2,3],[515,1,1,3,4],[517,1,1,4,5],[531,1,1,5,6],[547,1,1,6,7],[563,1,1,7,8]]]],[13967,14289,14414,14502,14539,14728,14973,15298]]],["ask",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11591]]],["asked",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6683]]],["begging",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14475]]],["besought",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12224]]],["desire",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1788]]],["enquired",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21757]]],["enquirest",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13092]]],["for",[2,2,[[23,1,1,0,1,[[794,1,1,0,1]]],[25,1,1,1,2,[[827,1,1,1,2]]]],[20186,21121]]],["get",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17365]]],["made",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12747]]],["out",[4,4,[[8,1,1,0,1,[[251,1,1,0,1]]],[20,3,3,1,4,[[665,2,2,1,3],[666,1,1,3,4]]]],[7611,17454,17458,17475]]],["procureth",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16715]]],["request",[3,3,[[15,1,1,0,1,[[414,1,1,0,1]]],[16,2,2,1,3,[[429,1,1,1,2],[432,1,1,2,3]]]],[12311,12770,12814]]],["requested",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21745]]],["require",[9,9,[[0,2,2,0,2,[[30,1,1,0,1],[42,1,1,1,2]]],[5,1,1,2,3,[[208,1,1,2,3]]],[8,1,1,3,4,[[255,1,1,3,4]]],[12,1,1,4,5,[[358,1,1,4,5]]],[15,1,1,5,6,[[417,1,1,5,6]]],[25,3,3,6,9,[[804,2,2,6,8],[834,1,1,8,9]]]],[912,1299,6449,7746,10937,12394,20520,20522,21288]]],["required",[3,3,[[15,1,1,0,1,[[417,1,1,0,1]]],[16,1,1,1,2,[[427,1,1,1,2]]],[22,1,1,2,3,[[679,1,1,2,3]]]],[12400,12739,17666]]],["seek",[74,73,[[2,1,1,0,1,[[108,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[8,4,4,3,7,[[245,1,1,3,4],[258,1,1,4,5],[260,1,1,5,6],[262,1,1,6,7]]],[10,1,1,7,8,[[308,1,1,7,8]]],[11,1,1,8,9,[[318,1,1,8,9]]],[12,3,3,9,12,[[341,1,1,9,10],[353,2,2,10,12]]],[13,1,1,12,13,[[373,1,1,12,13]]],[14,2,2,13,15,[[410,2,2,13,15]]],[15,1,1,15,16,[[414,1,1,15,16]]],[18,15,15,16,31,[[501,1,1,16,17],[504,1,1,17,18],[511,1,1,18,19],[517,1,1,19,20],[540,1,1,20,21],[546,1,1,21,22],[547,1,1,22,23],[548,2,2,23,25],[560,1,1,25,26],[581,1,1,26,27],[582,2,2,27,29],[596,1,1,29,30],[599,1,1,30,31]]],[19,5,5,31,36,[[648,1,1,31,32],[650,1,1,32,33],[655,1,1,33,34],[656,2,2,34,36]]],[21,2,2,36,38,[[673,1,1,36,37],[676,1,1,37,38]]],[22,3,3,38,41,[[719,2,2,38,40],[729,1,1,40,41]]],[23,16,16,41,57,[[746,2,2,41,43],[748,1,1,43,44],[749,1,1,44,45],[763,2,2,45,47],[765,1,1,47,48],[766,1,1,48,49],[773,1,1,49,50],[778,2,2,50,52],[788,1,1,52,53],[789,1,1,53,54],[790,1,1,54,55],[793,1,1,55,56],[794,1,1,56,57]]],[24,1,1,57,58,[[797,1,1,57,58]]],[25,3,3,58,61,[[808,2,2,58,60],[835,1,1,60,61]]],[26,1,1,61,62,[[858,1,1,61,62]]],[27,3,3,62,65,[[863,1,1,62,63],[866,1,1,63,64],[868,1,1,64,65]]],[33,2,2,65,67,[[902,2,2,65,67]]],[35,2,1,67,68,[[907,2,1,67,68]]],[37,2,2,68,70,[[921,1,1,68,69],[922,1,1,69,70]]],[38,3,3,70,73,[[926,2,2,70,72],[927,1,1,72,73]]]],[3312,4204,7173,7420,7835,7887,7931,9351,9693,10424,10830,10831,11338,12222,12223,12317,14247,14293,14402,14541,14848,14941,14975,14989,15000,15257,15592,15609,15610,16074,16098,16990,17079,17201,17234,17250,17573,17615,18463,18468,18674,18989,18998,19057,19059,19414,19416,19447,19479,19648,19821,19822,20040,20045,20071,20164,20170,20321,20602,20603,21319,21991,22112,22167,22188,22719,22723,22808,23044,23054,23110,23118,23121]]],["seekest",[7,7,[[0,1,1,0,1,[[36,1,1,0,1]]],[6,1,1,1,2,[[214,1,1,1,2]]],[9,2,2,2,4,[[283,1,1,2,3],[286,1,1,3,4]]],[10,1,1,4,5,[[301,1,1,4,5]]],[19,1,1,5,6,[[629,1,1,5,6]]],[23,1,1,6,7,[[789,1,1,6,7]]]],[1098,6621,8452,8573,9130,16437,20045]]],["seeketh",[15,15,[[8,3,3,0,3,[[254,1,1,0,1],[258,1,1,1,2],[259,1,1,2,3]]],[10,1,1,3,4,[[310,1,1,3,4]]],[18,1,1,4,5,[[514,1,1,4,5]]],[19,7,7,5,12,[[641,1,1,5,6],[642,1,1,6,7],[644,3,3,7,10],[645,2,2,10,12]]],[20,1,1,12,13,[[665,1,1,12,13]]],[22,1,1,13,14,[[718,1,1,13,14]]],[23,1,1,14,15,[[749,1,1,14,15]]]],[7708,7820,7848,9415,14482,16778,16821,16882,16884,16892,16902,16916,17457,18440,19059]]],["sought",[43,43,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,3,3,1,4,[[51,1,1,1,2],[53,1,1,2,3],[82,1,1,3,4]]],[3,1,1,4,5,[[151,1,1,4,5]]],[4,1,1,5,6,[[165,1,1,5,6]]],[5,1,1,6,7,[[188,1,1,6,7]]],[6,2,2,7,9,[[224,1,1,7,8],[228,1,1,8,9]]],[8,6,6,9,15,[[245,1,1,9,10],[248,1,1,10,11],[249,1,1,11,12],[254,1,1,12,13],[258,1,1,13,14],[262,1,1,14,15]]],[9,2,2,15,17,[[283,1,1,15,16],[287,1,1,16,17]]],[10,3,3,17,20,[[291,2,2,17,19],[301,1,1,19,20]]],[11,1,1,20,21,[[314,1,1,20,21]]],[13,2,2,21,23,[[381,2,2,21,23]]],[14,1,1,23,24,[[404,1,1,23,24]]],[15,1,1,24,25,[[419,1,1,24,25]]],[16,5,5,25,30,[[427,2,2,25,27],[428,1,1,27,28],[431,1,1,28,29],[434,1,1,29,30]]],[18,1,1,30,31,[[514,1,1,30,31]]],[20,1,1,31,32,[[670,1,1,31,32]]],[21,3,3,32,35,[[673,2,2,32,34],[675,1,1,34,35]]],[22,1,1,35,36,[[743,1,1,35,36]]],[23,2,2,36,38,[[770,1,1,36,37],[788,1,1,37,38]]],[24,1,1,38,39,[[797,1,1,38,39]]],[25,2,2,39,41,[[823,1,1,39,40],[835,1,1,40,41]]],[26,1,1,41,42,[[857,1,1,41,42]]],[37,1,1,42,43,[[916,1,1,42,43]]]],[1320,1569,1625,2480,4868,5282,5891,6913,6994,7439,7499,7512,7716,7824,7934,8469,8582,8719,8720,9148,9568,11494,11505,12089,12484,12726,12745,12753,12795,12836,14486,17533,17572,17573,17604,18898,19593,20040,20329,21006,21317,21976,22954]]]]},{"k":"H1246","v":[["request",[8,8,[[14,1,1,0,1,[[409,1,1,0,1]]],[16,7,7,1,8,[[430,4,4,1,5],[432,2,2,5,7],[434,1,1,7,8]]]],[12179,12782,12785,12786,12787,12809,12810,12846]]]]},{"k":"H1247","v":[["*",[8,7,[[14,4,3,0,3,[[407,3,2,0,2],[408,1,1,2,3]]],[26,4,4,3,7,[[852,1,1,3,4],[854,2,2,4,6],[856,1,1,6,7]]]],[12135,12136,12165,21832,21896,21905,21946]]],["Son",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[856,1,1,1,2]]]],[21832,21946]]],["old",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21905]]],["son",[5,4,[[14,4,3,0,3,[[407,3,2,0,2],[408,1,1,2,3]]],[26,1,1,3,4,[[854,1,1,3,4]]]],[12135,12136,12165,21896]]]]},{"k":"H1248","v":[["*",[4,2,[[18,1,1,0,1,[[479,1,1,0,1]]],[19,3,1,1,2,[[658,3,1,1,2]]]],[13957,17286]]],["Son",[1,1,[[18,1,1,0,1,[[479,1,1,0,1]]]],[13957]]],["son",[3,1,[[19,3,1,0,1,[[658,3,1,0,1]]]],[17286]]]]},{"k":"H1249","v":[["*",[7,7,[[17,1,1,0,1,[[446,1,1,0,1]]],[18,3,3,1,4,[[496,1,1,1,2],[501,1,1,2,3],[550,1,1,3,4]]],[19,1,1,4,5,[[641,1,1,4,5]]],[21,2,2,5,7,[[676,2,2,5,7]]]],[13112,14176,14245,15021,16776,17623,17624]]],["choice",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17623]]],["clean",[3,3,[[17,1,1,0,1,[[446,1,1,0,1]]],[18,1,1,1,2,[[550,1,1,1,2]]],[19,1,1,2,3,[[641,1,1,2,3]]]],[13112,15021,16776]]],["clear",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17624]]],["pure",[2,2,[[18,2,2,0,2,[[496,1,1,0,1],[501,1,1,1,2]]]],[14176,14245]]]]},{"k":"H1250","v":[["*",[14,14,[[0,5,5,0,5,[[40,2,2,0,2],[41,2,2,2,4],[44,1,1,4,5]]],[17,1,1,5,6,[[474,1,1,5,6]]],[18,2,2,6,8,[[542,1,1,6,7],[549,1,1,7,8]]],[19,1,1,8,9,[[638,1,1,8,9]]],[23,1,1,9,10,[[767,1,1,9,10]]],[28,1,1,10,11,[[877,1,1,10,11]]],[29,3,3,11,14,[[883,1,1,11,12],[886,2,2,12,14]]]],[1230,1244,1255,1277,1381,13838,14873,15016,16714,19512,22335,22434,22486,22487]]],["corn",[9,9,[[0,5,5,0,5,[[40,2,2,0,2],[41,2,2,2,4],[44,1,1,4,5]]],[17,1,1,5,6,[[474,1,1,5,6]]],[18,2,2,6,8,[[542,1,1,6,7],[549,1,1,7,8]]],[19,1,1,8,9,[[638,1,1,8,9]]]],[1230,1244,1255,1277,1381,13838,14873,15016,16714]]],["wheat",[5,5,[[23,1,1,0,1,[[767,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]],[29,3,3,2,5,[[883,1,1,2,3],[886,2,2,3,5]]]],[19512,22335,22434,22486,22487]]]]},{"k":"H1251","v":[["field",[8,7,[[26,8,7,0,7,[[851,1,1,0,1],[853,7,6,1,7]]]],[21796,21849,21852,21858,21860,21862,21869]]]]},{"k":"H1252","v":[["*",[6,6,[[9,2,2,0,2,[[288,2,2,0,2]]],[17,1,1,2,3,[[457,1,1,2,3]]],[18,2,2,3,5,[[495,2,2,3,5]]],[22,1,1,5,6,[[679,1,1,5,6]]]],[8623,8627,13419,14138,14142,17679]]],["cleanness",[4,4,[[9,2,2,0,2,[[288,2,2,0,2]]],[18,2,2,2,4,[[495,2,2,2,4]]]],[8623,8627,14138,14142]]],["purely",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17679]]],["pureness",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13419]]]]},{"k":"H1253","v":[["never",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13081]]]]},{"k":"H1254","v":[["*",[54,46,[[0,11,8,0,8,[[0,5,3,0,3],[1,2,2,3,5],[4,3,2,5,7],[5,1,1,7,8]]],[1,1,1,8,9,[[83,1,1,8,9]]],[3,1,1,9,10,[[132,1,1,9,10]]],[4,1,1,10,11,[[156,1,1,10,11]]],[5,2,2,11,13,[[203,2,2,11,13]]],[8,1,1,13,14,[[237,1,1,13,14]]],[18,6,6,14,20,[[528,1,1,14,15],[566,2,2,15,17],[579,1,1,17,18],[581,1,1,18,19],[625,1,1,19,20]]],[20,1,1,20,21,[[670,1,1,20,21]]],[22,21,17,21,38,[[682,1,1,21,22],[718,2,2,22,24],[719,1,1,24,25],[720,1,1,25,26],[721,3,3,26,29],[723,6,4,29,33],[726,1,1,33,34],[732,2,1,34,35],[735,1,1,35,36],[743,3,2,36,38]]],[23,1,1,38,39,[[775,1,1,38,39]]],[25,6,5,39,44,[[822,3,2,39,41],[824,1,1,41,42],[829,2,2,42,44]]],[29,1,1,44,45,[[882,1,1,44,45]]],[38,1,1,45,46,[[926,1,1,45,46]]]],[0,20,26,33,34,106,107,144,2506,4224,5036,6290,6293,7269,14701,15338,15373,15539,15601,16376,17524,17738,18446,18448,18471,18485,18506,18512,18520,18568,18569,18573,18579,18621,18739,18784,18914,18915,19713,20963,20974,21054,21170,21172,22423,23113]]],["+",[4,4,[[0,3,3,0,3,[[0,3,3,0,3]]],[22,1,1,3,4,[[743,1,1,3,4]]]],[0,20,26,18915]]],["Create",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14701]]],["Creator",[2,2,[[20,1,1,0,1,[[670,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[17524,18448]]],["choose",[2,1,[[25,2,1,0,1,[[822,2,1,0,1]]]],[20963]]],["create",[6,5,[[22,6,5,0,5,[[682,1,1,0,1],[723,2,1,1,2],[735,1,1,2,3],[743,2,2,3,5]]]],[17738,18568,18784,18914,18915]]],["created",[30,26,[[0,8,6,0,6,[[0,2,1,0,1],[1,2,2,1,3],[4,3,2,3,5],[5,1,1,5,6]]],[4,1,1,6,7,[[156,1,1,6,7]]],[18,4,4,7,11,[[566,1,1,7,8],[579,1,1,8,9],[581,1,1,9,10],[625,1,1,10,11]]],[22,12,10,11,21,[[718,1,1,11,12],[719,1,1,12,13],[720,1,1,13,14],[721,2,2,14,16],[723,4,3,16,19],[726,1,1,19,20],[732,2,1,20,21]]],[23,1,1,21,22,[[775,1,1,21,22]]],[25,3,3,22,25,[[822,1,1,22,23],[829,2,2,23,25]]],[38,1,1,25,26,[[926,1,1,25,26]]]],[26,33,34,106,107,144,5036,15338,15539,15601,16376,18446,18471,18485,18506,18512,18569,18573,18579,18621,18739,19713,20974,21170,21172,23113]]],["createth",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22423]]],["creator",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18520]]],["dispatch",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21054]]],["done",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2506]]],["down",[2,2,[[5,2,2,0,2,[[203,2,2,0,2]]]],[6290,6293]]],["fat",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7269]]],["made",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15373]]],["make",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4224]]]]},{"k":"H1255","v":[["Berodachbaladan",[1,1,[[11,1,1,0,1,[[332,1,1,0,1]]]],[10110]]]]},{"k":"H1256","v":[["Beraiah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10596]]]]},{"k":"H1257","v":[["fowl",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8867]]]]},{"k":"H1258","v":[["hail",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18278]]]]},{"k":"H1259","v":[["*",[29,26,[[1,17,14,0,14,[[58,14,11,0,11],[59,3,3,11,14]]],[5,1,1,14,15,[[196,1,1,14,15]]],[17,1,1,15,16,[[473,1,1,15,16]]],[18,6,6,16,22,[[495,2,2,16,18],[555,2,2,18,20],[582,1,1,20,21],[625,1,1,21,22]]],[22,3,3,22,25,[[706,2,2,22,24],[708,1,1,24,25]]],[36,1,1,25,26,[[910,1,1,25,26]]]],[1760,1761,1764,1765,1766,1767,1768,1770,1771,1775,1776,1782,1789,1792,6075,13815,14130,14131,15160,15161,15638,16379,18166,18181,18247,22872]]],["+",[2,2,[[5,1,1,0,1,[[196,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]]],[6075,18247]]],["hail",[27,24,[[1,17,14,0,14,[[58,14,11,0,11],[59,3,3,11,14]]],[17,1,1,14,15,[[473,1,1,14,15]]],[18,6,6,15,21,[[495,2,2,15,17],[555,2,2,17,19],[582,1,1,19,20],[625,1,1,20,21]]],[22,2,2,21,23,[[706,2,2,21,23]]],[36,1,1,23,24,[[910,1,1,23,24]]]],[1760,1761,1764,1765,1766,1767,1768,1770,1771,1775,1776,1782,1789,1792,13815,14130,14131,15160,15161,15638,16379,18166,18181,22872]]]]},{"k":"H1260","v":[["Bered",[2,2,[[0,1,1,0,1,[[15,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]]],[395,10555]]]]},{"k":"H1261","v":[["grisled",[4,4,[[0,2,2,0,2,[[30,2,2,0,2]]],[37,2,2,2,4,[[916,2,2,2,4]]]],[883,885,22950,22953]]]]},{"k":"H1262","v":[["*",[7,7,[[8,1,1,0,1,[[252,1,1,0,1]]],[9,5,5,1,6,[[269,1,1,1,2],[278,1,1,2,3],[279,3,3,3,6]]],[24,1,1,6,7,[[800,1,1,6,7]]]],[7626,8116,8303,8322,8323,8327,20430]]],["choose",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7626]]],["eat",[4,4,[[9,4,4,0,4,[[269,1,1,0,1],[278,1,1,1,2],[279,2,2,2,4]]]],[8116,8303,8323,8327]]],["give",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8322]]],["meat",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20430]]]]},{"k":"H1263","v":[["Baruch",[26,24,[[15,3,3,0,3,[[415,1,1,0,1],[422,1,1,1,2],[423,1,1,2,3]]],[23,23,21,3,24,[[776,3,3,3,6],[780,16,14,6,20],[787,2,2,20,22],[789,2,2,22,24]]]],[12347,12555,12593,19743,19744,19747,19846,19847,19850,19852,19855,19856,19857,19858,19859,19860,19861,19868,19869,19874,20000,20003,20041,20042]]]]},{"k":"H1264","v":[["apparel",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21145]]]]},{"k":"H1265","v":[["*",[20,20,[[9,1,1,0,1,[[272,1,1,0,1]]],[10,5,5,1,6,[[295,2,2,1,3],[296,2,2,3,5],[299,1,1,5,6]]],[11,1,1,6,7,[[331,1,1,6,7]]],[13,2,2,7,9,[[368,1,1,7,8],[369,1,1,8,9]]],[18,1,1,9,10,[[581,1,1,9,10]]],[22,5,5,10,15,[[692,1,1,10,11],[715,1,1,11,12],[719,1,1,12,13],[733,1,1,13,14],[738,1,1,14,15]]],[25,2,2,15,17,[[828,1,1,15,16],[832,1,1,16,17]]],[27,1,1,17,18,[[875,1,1,17,18]]],[33,1,1,18,19,[[901,1,1,18,19]]],[37,1,1,19,20,[[921,1,1,19,20]]]],[8162,8886,8888,8911,8930,9062,10084,11219,11234,15588,17936,18376,18470,18753,18834,21126,21238,22290,22702,23030]]],["fir",[7,7,[[9,1,1,0,1,[[272,1,1,0,1]]],[10,5,5,1,6,[[295,2,2,1,3],[296,2,2,3,5],[299,1,1,5,6]]],[13,1,1,6,7,[[369,1,1,6,7]]]],[8162,8886,8888,8911,8930,9062,11234]]],["tree",[5,5,[[22,3,3,0,3,[[719,1,1,0,1],[733,1,1,1,2],[738,1,1,2,3]]],[27,1,1,3,4,[[875,1,1,3,4]]],[37,1,1,4,5,[[921,1,1,4,5]]]],[18470,18753,18834,22290,23030]]],["trees",[8,8,[[11,1,1,0,1,[[331,1,1,0,1]]],[13,1,1,1,2,[[368,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[22,2,2,3,5,[[692,1,1,3,4],[715,1,1,4,5]]],[25,2,2,5,7,[[828,1,1,5,6],[832,1,1,6,7]]],[33,1,1,7,8,[[901,1,1,7,8]]]],[10084,11219,15588,17936,18376,21126,21238,22702]]]]},{"k":"H1266","v":[["fir",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17554]]]]},{"k":"H1267","v":[["meat",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14956]]]]},{"k":"H1268","v":[["*",[2,2,[[9,1,1,0,1,[[274,1,1,0,1]]],[25,1,1,1,2,[[848,1,1,1,2]]]],[8217,21695]]],["+",[1,1,[[9,1,1,0,1,[[274,1,1,0,1]]]],[8217]]],["Berothah",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21695]]]]},{"k":"H1269","v":[["Birzavith",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10566]]]]},{"k":"H1270","v":[["*",[76,70,[[0,1,1,0,1,[[3,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,2,2,2,4,[[147,1,1,2,3],[151,1,1,3,4]]],[4,8,8,4,12,[[155,1,1,4,5],[156,1,1,5,6],[160,1,1,6,7],[171,1,1,7,8],[179,1,1,8,9],[180,2,2,9,11],[185,1,1,11,12]]],[5,6,6,12,18,[[192,2,2,12,14],[194,1,1,14,15],[203,2,2,15,17],[208,1,1,17,18]]],[6,3,3,18,21,[[211,1,1,18,19],[214,2,2,19,21]]],[8,1,1,21,22,[[252,1,1,21,22]]],[9,3,2,22,24,[[278,2,1,22,23],[289,1,1,23,24]]],[10,3,3,24,27,[[296,1,1,24,25],[298,1,1,25,26],[312,1,1,26,27]]],[11,2,2,27,29,[[318,2,2,27,29]]],[12,7,6,29,35,[[357,1,1,29,30],[359,3,3,30,33],[366,3,2,33,35]]],[13,4,4,35,39,[[368,2,2,35,37],[384,1,1,37,38],[390,1,1,38,39]]],[17,5,5,39,44,[[454,1,1,39,40],[455,1,1,40,41],[463,1,1,41,42],[475,1,1,42,43],[476,1,1,43,44]]],[18,5,5,44,49,[[479,1,1,44,45],[582,1,1,45,46],[584,2,2,46,48],[626,1,1,48,49]]],[19,2,1,49,50,[[654,2,1,49,50]]],[20,1,1,50,51,[[668,1,1,50,51]]],[22,6,5,51,56,[[688,1,1,51,52],[722,1,1,52,53],[723,1,1,53,54],[726,1,1,54,55],[738,2,1,55,56]]],[23,8,7,56,63,[[745,1,1,56,57],[750,1,1,57,58],[755,1,1,58,59],[759,2,1,59,60],[761,1,1,60,61],[772,2,2,61,63]]],[25,6,5,63,68,[[805,2,1,63,64],[823,2,2,64,66],[828,2,2,66,68]]],[29,1,1,68,69,[[879,1,1,68,69]]],[32,1,1,69,70,[[896,1,1,69,70]]]],[101,3543,4686,4861,4986,5024,5146,5411,5590,5634,5659,5835,5968,5973,6033,6291,6293,6434,6528,6602,6612,7625,8317,8660,8903,9036,9491,9679,9680,10929,10967,10978,10980,11166,11171,11218,11225,11552,11689,13321,13350,13506,13882,13915,13954,15624,15709,15715,16393,17186,17503,17884,18545,18563,18618,18838,18964,19117,19230,19327,19358,19631,19632,20532,20994,20996,21133,21140,22367,22633]]],["+",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[4686,18545]]],["Iron",[2,2,[[17,1,1,0,1,[[463,1,1,0,1]]],[19,1,1,1,2,[[654,1,1,1,2]]]],[13506,17186]]],["head",[2,2,[[4,1,1,0,1,[[171,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]]],[5411,9679]]],["iron",[70,65,[[0,1,1,0,1,[[3,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,1,1,2,3,[[151,1,1,2,3]]],[4,7,7,3,10,[[155,1,1,3,4],[156,1,1,4,5],[160,1,1,5,6],[179,1,1,6,7],[180,2,2,7,9],[185,1,1,9,10]]],[5,6,6,10,16,[[192,2,2,10,12],[194,1,1,12,13],[203,2,2,13,15],[208,1,1,15,16]]],[6,3,3,16,19,[[211,1,1,16,17],[214,2,2,17,19]]],[8,1,1,19,20,[[252,1,1,19,20]]],[9,3,2,20,22,[[278,2,1,20,21],[289,1,1,21,22]]],[10,3,3,22,25,[[296,1,1,22,23],[298,1,1,23,24],[312,1,1,24,25]]],[11,1,1,25,26,[[318,1,1,25,26]]],[12,7,6,26,32,[[357,1,1,26,27],[359,3,3,27,30],[366,3,2,30,32]]],[13,4,4,32,36,[[368,2,2,32,34],[384,1,1,34,35],[390,1,1,35,36]]],[17,4,4,36,40,[[454,1,1,36,37],[455,1,1,37,38],[475,1,1,38,39],[476,1,1,39,40]]],[18,5,5,40,45,[[479,1,1,40,41],[582,1,1,41,42],[584,2,2,42,44],[626,1,1,44,45]]],[19,1,1,45,46,[[654,1,1,45,46]]],[20,1,1,46,47,[[668,1,1,46,47]]],[22,5,4,47,51,[[688,1,1,47,48],[723,1,1,48,49],[726,1,1,49,50],[738,2,1,50,51]]],[23,8,7,51,58,[[745,1,1,51,52],[750,1,1,52,53],[755,1,1,53,54],[759,2,1,54,55],[761,1,1,55,56],[772,2,2,56,58]]],[25,6,5,58,63,[[805,2,1,58,59],[823,2,2,59,61],[828,2,2,61,63]]],[29,1,1,63,64,[[879,1,1,63,64]]],[32,1,1,64,65,[[896,1,1,64,65]]]],[101,3543,4861,4986,5024,5146,5590,5634,5659,5835,5968,5973,6033,6291,6293,6434,6528,6602,6612,7625,8317,8660,8903,9036,9491,9680,10929,10967,10978,10980,11166,11171,11218,11225,11552,11689,13321,13350,13882,13915,13954,15624,15709,15715,16393,17186,17503,17884,18563,18618,18838,18964,19117,19230,19327,19358,19631,19632,20532,20994,20996,21133,21140,22367,22633]]]]},{"k":"H1271","v":[["Barzillai",[12,10,[[9,7,7,0,7,[[283,1,1,0,1],[285,5,5,1,6],[287,1,1,6,7]]],[10,1,1,7,8,[[292,1,1,7,8]]],[14,2,1,8,9,[[404,2,1,8,9]]],[15,2,1,9,10,[[419,2,1,9,10]]]],[8476,8542,8543,8544,8545,8550,8588,8777,12088,12483]]]]},{"k":"H1272","v":[["*",[63,62,[[0,9,9,0,9,[[15,2,2,0,2],[26,1,1,2,3],[30,4,4,3,7],[34,2,2,7,9]]],[1,4,4,9,13,[[51,1,1,9,10],[63,1,1,10,11],[75,1,1,11,12],[85,1,1,12,13]]],[3,1,1,13,14,[[140,1,1,13,14]]],[6,2,2,14,16,[[219,1,1,14,15],[221,1,1,15,16]]],[8,8,8,16,24,[[254,2,2,16,18],[255,1,1,18,19],[256,1,1,19,20],[257,2,2,20,22],[258,1,1,22,23],[262,1,1,23,24]]],[9,6,6,24,30,[[270,1,1,24,25],[279,3,3,25,28],[281,1,1,28,29],[285,1,1,29,30]]],[10,6,6,30,36,[[292,2,2,30,32],[301,3,3,32,35],[302,1,1,35,36]]],[12,2,2,36,38,[[345,1,1,36,37],[349,1,1,37,38]]],[13,1,1,38,39,[[376,1,1,38,39]]],[15,3,3,39,42,[[418,1,1,39,40],[425,2,2,40,42]]],[17,6,5,42,47,[[444,1,1,42,43],[449,1,1,43,44],[455,1,1,44,45],[462,2,1,45,46],[476,1,1,46,47]]],[18,1,1,47,48,[[616,1,1,47,48]]],[19,1,1,48,49,[[646,1,1,48,49]]],[21,1,1,49,50,[[678,1,1,49,50]]],[22,2,2,50,52,[[700,1,1,50,51],[726,1,1,51,52]]],[23,4,4,52,56,[[748,1,1,52,53],[770,1,1,53,54],[783,1,1,54,55],[796,1,1,55,56]]],[26,1,1,56,57,[[859,1,1,56,57]]],[27,1,1,57,58,[[873,1,1,57,58]]],[29,1,1,58,59,[[885,1,1,58,59]]],[31,3,3,59,62,[[889,2,2,59,61],[892,1,1,61,62]]]],[387,389,770,893,894,895,900,1012,1018,1569,1894,2263,2599,4457,6775,6832,7718,7724,7731,7782,7804,7807,7816,7934,8123,8351,8354,8355,8403,8520,8777,8809,9125,9131,9148,9153,10588,10735,11397,12412,12681,12699,13076,13183,13350,13503,13916,16246,16951,17654,18055,18634,19056,19593,19927,20283,22022,22264,22476,22534,22541,22570]]],["+",[4,3,[[12,2,2,0,2,[[345,1,1,0,1],[349,1,1,1,2]]],[17,2,1,2,3,[[462,2,1,2,3]]]],[10588,10735,13503]]],["away",[5,5,[[0,1,1,0,1,[[30,1,1,0,1]]],[10,1,1,1,2,[[292,1,1,1,2]]],[17,1,1,2,3,[[444,1,1,2,3]]],[19,1,1,3,4,[[646,1,1,3,4]]],[29,1,1,4,5,[[885,1,1,4,5]]]],[900,8809,13076,16951,22476]]],["chased",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12699]]],["fled",[37,37,[[0,5,5,0,5,[[15,1,1,0,1],[30,3,3,1,4],[34,1,1,4,5]]],[1,2,2,5,7,[[51,1,1,5,6],[63,1,1,6,7]]],[6,2,2,7,9,[[219,1,1,7,8],[221,1,1,8,9]]],[8,8,8,9,17,[[254,2,2,9,11],[255,1,1,11,12],[256,1,1,12,13],[257,2,2,13,15],[258,1,1,15,16],[262,1,1,16,17]]],[9,5,5,17,22,[[270,1,1,17,18],[279,3,3,18,21],[285,1,1,21,22]]],[10,5,5,22,27,[[292,1,1,22,23],[301,3,3,23,26],[302,1,1,26,27]]],[13,1,1,27,28,[[376,1,1,27,28]]],[15,1,1,28,29,[[425,1,1,28,29]]],[22,1,1,29,30,[[700,1,1,29,30]]],[23,3,3,30,33,[[770,1,1,30,31],[783,1,1,31,32],[796,1,1,32,33]]],[26,1,1,33,34,[[859,1,1,33,34]]],[27,1,1,34,35,[[873,1,1,34,35]]],[31,2,2,35,37,[[889,1,1,35,36],[892,1,1,36,37]]]],[387,893,894,895,1018,1569,1894,6775,6832,7718,7724,7731,7782,7804,7807,7816,7934,8123,8351,8354,8355,8520,8777,9125,9131,9148,9153,11397,12681,18055,19593,19927,20283,22022,22264,22541,22570]]],["fleddest",[1,1,[[0,1,1,0,1,[[34,1,1,0,1]]]],[1012]]],["flee",[11,11,[[0,2,2,0,2,[[15,1,1,0,1],[26,1,1,1,2]]],[3,1,1,2,3,[[140,1,1,2,3]]],[9,1,1,3,4,[[281,1,1,3,4]]],[15,1,1,4,5,[[418,1,1,4,5]]],[17,2,2,5,7,[[455,1,1,5,6],[476,1,1,6,7]]],[18,1,1,7,8,[[616,1,1,7,8]]],[22,1,1,8,9,[[726,1,1,8,9]]],[23,1,1,9,10,[[748,1,1,9,10]]],[31,1,1,10,11,[[889,1,1,10,11]]]],[389,770,4457,8403,12412,13350,13916,16246,18634,19056,22534]]],["fleeth",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13183]]],["haste",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17654]]],["reach",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2263]]],["shoot",[1,1,[[1,1,1,0,1,[[85,1,1,0,1]]]],[2599]]]]},{"k":"H1273","v":[["Barhumite",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8684]]]]},{"k":"H1274","v":[]},{"k":"H1275","v":[["Beri",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10571]]]]},{"k":"H1276","v":[["Berites",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8568]]]]},{"k":"H1277","v":[["*",[14,14,[[0,6,6,0,6,[[40,6,6,0,6]]],[6,1,1,6,7,[[213,1,1,6,7]]],[10,1,1,7,8,[[294,1,1,7,8]]],[18,1,1,8,9,[[550,1,1,8,9]]],[25,2,2,9,11,[[835,2,2,9,11]]],[26,1,1,11,12,[[850,1,1,11,12]]],[34,1,1,12,13,[[903,1,1,12,13]]],[37,1,1,13,14,[[921,1,1,13,14]]]],[1197,1199,1200,1202,1213,1215,6585,8867,15024,21316,21333,21752,22747,23044]]],["+",[2,2,[[0,2,2,0,2,[[40,2,2,0,2]]]],[1197,1213]]],["fat",[6,6,[[0,2,2,0,2,[[40,2,2,0,2]]],[6,1,1,2,3,[[213,1,1,2,3]]],[10,1,1,3,4,[[294,1,1,3,4]]],[25,1,1,4,5,[[835,1,1,4,5]]],[37,1,1,5,6,[[921,1,1,5,6]]]],[1199,1215,6585,8867,21333,23044]]],["fatter",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21752]]],["fed",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21316]]],["firm",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15024]]],["plenteous",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22747]]],["rank",[2,2,[[0,2,2,0,2,[[40,2,2,0,2]]]],[1200,1202]]]]},{"k":"H1278","v":[["thing",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4224]]]]},{"k":"H1279","v":[["meat",[3,3,[[9,3,3,0,3,[[279,3,3,0,3]]]],[8322,8324,8327]]]]},{"k":"H1280","v":[["*",[41,37,[[1,15,11,0,11,[[75,6,4,0,4],[84,1,1,4,5],[85,6,4,5,9],[88,1,1,9,10],[89,1,1,10,11]]],[3,2,2,11,13,[[119,1,1,11,12],[120,1,1,12,13]]],[4,1,1,13,14,[[155,1,1,13,14]]],[6,1,1,14,15,[[226,1,1,14,15]]],[8,1,1,15,16,[[258,1,1,15,16]]],[10,1,1,16,17,[[294,1,1,16,17]]],[13,2,2,17,19,[[374,1,1,17,18],[380,1,1,18,19]]],[15,5,5,19,24,[[415,5,5,19,24]]],[17,1,1,24,25,[[473,1,1,24,25]]],[18,2,2,25,27,[[584,1,1,25,26],[624,1,1,26,27]]],[19,1,1,27,28,[[645,1,1,27,28]]],[22,2,2,28,30,[[693,1,1,28,29],[723,1,1,29,30]]],[23,2,2,30,32,[[793,1,1,30,31],[795,1,1,31,32]]],[24,1,1,32,33,[[798,1,1,32,33]]],[25,1,1,33,34,[[839,1,1,33,34]]],[29,1,1,34,35,[[879,1,1,34,35]]],[31,1,1,35,36,[[890,1,1,35,36]]],[33,1,1,36,37,[[902,1,1,36,37]]]],[2261,2262,2263,2264,2542,2597,2598,2599,2600,2697,2725,3728,3774,4980,6952,7817,8857,11351,11482,12330,12333,12340,12341,12342,13803,15715,16364,16920,17965,18563,20158,20242,20341,21436,22369,22554,22725]]],["+",[2,2,[[1,1,1,0,1,[[84,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]]],[2542,6952]]],["bar",[3,3,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]],[29,1,1,2,3,[[879,1,1,2,3]]]],[2263,2599,22369]]],["bars",[35,31,[[1,12,8,0,8,[[75,5,3,0,3],[85,5,3,3,6],[88,1,1,6,7],[89,1,1,7,8]]],[3,2,2,8,10,[[119,1,1,8,9],[120,1,1,9,10]]],[4,1,1,10,11,[[155,1,1,10,11]]],[8,1,1,11,12,[[258,1,1,11,12]]],[10,1,1,12,13,[[294,1,1,12,13]]],[13,2,2,13,15,[[374,1,1,13,14],[380,1,1,14,15]]],[15,5,5,15,20,[[415,5,5,15,20]]],[17,1,1,20,21,[[473,1,1,20,21]]],[18,2,2,21,23,[[584,1,1,21,22],[624,1,1,22,23]]],[19,1,1,23,24,[[645,1,1,23,24]]],[22,1,1,24,25,[[723,1,1,24,25]]],[23,2,2,25,27,[[793,1,1,25,26],[795,1,1,26,27]]],[24,1,1,27,28,[[798,1,1,27,28]]],[25,1,1,28,29,[[839,1,1,28,29]]],[31,1,1,29,30,[[890,1,1,29,30]]],[33,1,1,30,31,[[902,1,1,30,31]]]],[2261,2262,2264,2597,2598,2600,2697,2725,3728,3774,4980,7817,8857,11351,11482,12330,12333,12340,12341,12342,13803,15715,16364,16920,18563,20158,20242,20341,21436,22554,22725]]],["fugitives",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17965]]]]},{"k":"H1281","v":[["*",[3,3,[[17,1,1,0,1,[[461,1,1,0,1]]],[22,2,2,1,3,[[705,1,1,1,2],[721,1,1,2,3]]]],[13480,18152,18519]]],["crooked",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13480]]],["nobles",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18519]]],["piercing",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18152]]]]},{"k":"H1282","v":[["Bariah",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10383]]]]},{"k":"H1283","v":[["Beriah",[11,10,[[0,2,1,0,1,[[45,2,1,0,1]]],[3,2,2,1,3,[[142,2,2,1,3]]],[12,7,7,3,10,[[344,3,3,3,6],[345,2,2,6,8],[360,2,2,8,10]]]],[1403,4533,4534,10558,10565,10566,10588,10591,10993,10994]]]]},{"k":"H1284","v":[["Beriites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4533]]]]},{"k":"H1285","v":[["*",[284,264,[[0,27,24,0,24,[[5,1,1,0,1],[8,7,7,1,8],[13,1,1,8,9],[14,1,1,9,10],[16,13,10,10,20],[20,2,2,20,22],[25,1,1,22,23],[30,1,1,23,24]]],[1,13,13,24,37,[[51,1,1,24,25],[55,2,2,25,27],[68,1,1,27,28],[72,1,1,28,29],[73,2,2,29,31],[80,1,1,31,32],[83,5,5,32,37]]],[2,10,8,37,45,[[91,1,1,37,38],[113,1,1,38,39],[115,8,6,39,45]]],[3,5,5,45,50,[[126,1,1,45,46],[130,1,1,46,47],[134,1,1,47,48],[141,2,2,48,50]]],[4,27,26,50,76,[[156,3,3,50,53],[157,2,2,53,55],[159,3,3,55,58],[160,1,1,58,59],[161,3,3,59,62],[162,1,1,62,63],[169,1,1,63,64],[181,7,6,64,70],[183,5,5,70,75],[185,1,1,75,76]]],[5,22,21,76,97,[[189,7,6,76,82],[190,3,3,82,85],[192,2,2,85,87],[193,2,2,87,89],[194,1,1,89,90],[195,5,5,90,95],[209,1,1,95,96],[210,1,1,96,97]]],[6,4,4,97,101,[[212,3,3,97,100],[230,1,1,100,101]]],[8,8,7,101,108,[[239,4,3,101,104],[246,1,1,104,105],[253,1,1,105,106],[255,1,1,106,107],[258,1,1,107,108]]],[9,6,6,108,114,[[269,3,3,108,111],[271,1,1,111,112],[281,1,1,112,113],[289,1,1,113,114]]],[10,14,12,114,126,[[293,1,1,114,115],[295,1,1,115,116],[296,1,1,116,117],[298,4,4,117,121],[301,1,1,121,122],[305,2,1,122,123],[309,2,2,123,125],[310,2,1,125,126]]],[11,12,10,126,136,[[323,2,2,126,128],[325,1,1,128,129],[329,3,3,129,132],[330,1,1,132,133],[335,5,3,133,136]]],[12,13,13,136,149,[[348,1,1,136,137],[352,4,4,137,141],[353,4,4,141,145],[354,1,1,145,146],[359,1,1,146,147],[365,2,2,147,149]]],[13,17,15,149,164,[[371,2,2,149,151],[372,2,2,151,153],[379,1,1,153,154],[381,1,1,154,155],[382,2,1,155,156],[387,1,1,156,157],[389,3,3,157,160],[395,1,1,160,161],[400,4,3,161,164]]],[14,1,1,164,165,[[412,1,1,164,165]]],[15,4,4,165,169,[[413,1,1,165,166],[421,2,2,166,168],[425,1,1,168,169]]],[17,3,3,169,172,[[440,1,1,169,170],[466,1,1,170,171],[476,1,1,171,172]]],[18,21,21,172,193,[[502,2,2,172,174],[521,1,1,174,175],[527,2,2,175,177],[532,1,1,177,178],[551,1,1,178,179],[555,2,2,179,181],[560,1,1,181,182],[566,4,4,182,186],[580,1,1,186,187],[582,2,2,187,189],[583,1,1,189,190],[588,2,2,190,192],[609,1,1,192,193]]],[19,1,1,193,194,[[629,1,1,193,194]]],[22,12,12,194,206,[[702,1,1,194,195],[706,2,2,195,197],[711,1,1,197,198],[720,1,1,198,199],[727,1,1,199,200],[732,1,1,200,201],[733,1,1,201,202],[734,2,2,202,204],[737,1,1,204,205],[739,1,1,205,206]]],[23,24,21,206,227,[[747,1,1,206,207],[755,5,5,207,212],[758,1,1,212,213],[766,1,1,213,214],[775,4,3,214,217],[776,1,1,217,218],[777,4,3,218,221],[778,6,5,221,226],[794,1,1,226,227]]],[25,18,16,227,243,[[817,6,5,227,232],[818,6,6,232,238],[821,1,1,238,239],[831,1,1,239,240],[835,1,1,240,241],[838,2,1,241,242],[845,1,1,242,243]]],[26,7,6,243,249,[[858,2,2,243,245],[860,5,4,245,249]]],[27,5,5,249,254,[[863,1,1,249,250],[867,1,1,250,251],[869,1,1,251,252],[871,1,1,252,253],[873,1,1,253,254]]],[29,1,1,254,255,[[879,1,1,254,255]]],[30,1,1,255,256,[[888,1,1,255,256]]],[37,2,2,256,258,[[919,1,1,256,257],[921,1,1,257,258]]],[38,6,6,258,264,[[926,5,5,258,263],[927,1,1,263,264]]]],[155,214,216,217,218,220,221,222,349,378,399,401,404,406,407,408,410,411,416,418,540,545,720,917,1578,1659,1660,2031,2176,2184,2185,2436,2506,2508,2511,2523,2524,2775,3454,3533,3539,3549,3566,3568,3569,4021,4152,4276,4483,4484,5017,5027,5035,5055,5056,5113,5120,5123,5155,5166,5168,5172,5194,5366,5680,5688,5691,5693,5700,5704,5737,5744,5748,5753,5754,5819,5896,5899,5901,5904,5907,5910,5917,5919,5928,5955,5957,5987,5991,6035,6043,6044,6048,6052,6053,6476,6501,6546,6547,6565,7081,7300,7301,7302,7446,7679,7738,7828,8093,8094,8102,8135,8413,8658,8831,8890,8915,8986,8991,9006,9008,9119,9268,9397,9401,9442,9833,9846,9894,9998,10018,10021,10036,10167,10168,10186,10676,10816,10817,10819,10820,10826,10835,10837,10857,10864,10983,11145,11161,11270,11275,11293,11296,11458,11502,11512,11631,11657,11659,11672,11801,11963,11964,11965,12255,12301,12519,12543,12700,12974,13589,13892,14261,14265,14588,14673,14684,14752,15068,15123,15150,15246,15329,15354,15360,15365,15567,15614,15616,15696,15798,15802,16163,16450,18100,18179,18182,18287,18486,18644,18733,18743,18757,18759,18821,18851,19018,19228,19229,19232,19234,19236,19314,19463,19722,19723,19724,19771,19795,19796,19800,19809,19811,19814,19816,19819,20171,20770,20821,20822,20823,20824,20838,20839,20840,20841,20843,20844,20932,21209,21338,21423,21606,21992,22015,22058,22064,22066,22068,22123,22174,22195,22229,22253,22373,22517,23010,23038,23107,23108,23111,23113,23117,23121]]],["+",[4,4,[[0,1,1,0,1,[[13,1,1,0,1]]],[10,1,1,1,2,[[295,1,1,1,2]]],[18,1,1,2,3,[[560,1,1,2,3]]],[25,1,1,3,4,[[817,1,1,3,4]]]],[349,8890,15246,20823]]],["confederacy",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22517]]],["covenant",[263,245,[[0,26,23,0,23,[[5,1,1,0,1],[8,7,7,1,8],[14,1,1,8,9],[16,13,10,9,19],[20,2,2,19,21],[25,1,1,21,22],[30,1,1,22,23]]],[1,13,13,23,36,[[51,1,1,23,24],[55,2,2,24,26],[68,1,1,26,27],[72,1,1,27,28],[73,2,2,28,30],[80,1,1,30,31],[83,5,5,31,36]]],[2,10,8,36,44,[[91,1,1,36,37],[113,1,1,37,38],[115,8,6,38,44]]],[3,5,5,44,49,[[126,1,1,44,45],[130,1,1,45,46],[134,1,1,46,47],[141,2,2,47,49]]],[4,27,26,49,75,[[156,3,3,49,52],[157,2,2,52,54],[159,3,3,54,57],[160,1,1,57,58],[161,3,3,58,61],[162,1,1,61,62],[169,1,1,62,63],[181,7,6,63,69],[183,5,5,69,74],[185,1,1,74,75]]],[5,17,16,75,91,[[189,7,6,75,81],[190,3,3,81,84],[192,2,2,84,86],[193,2,2,86,88],[194,1,1,88,89],[209,1,1,89,90],[210,1,1,90,91]]],[6,3,3,91,94,[[212,2,2,91,93],[230,1,1,93,94]]],[8,8,7,94,101,[[239,4,3,94,97],[246,1,1,97,98],[253,1,1,98,99],[255,1,1,99,100],[258,1,1,100,101]]],[9,2,2,101,103,[[281,1,1,101,102],[289,1,1,102,103]]],[10,11,10,103,113,[[293,1,1,103,104],[296,1,1,104,105],[298,4,4,105,109],[301,1,1,109,110],[309,2,2,110,112],[310,2,1,112,113]]],[11,12,10,113,123,[[323,2,2,113,115],[325,1,1,115,116],[329,3,3,116,119],[330,1,1,119,120],[335,5,3,120,123]]],[12,13,13,123,136,[[348,1,1,123,124],[352,4,4,124,128],[353,4,4,128,132],[354,1,1,132,133],[359,1,1,133,134],[365,2,2,134,136]]],[13,15,14,136,150,[[371,2,2,136,138],[372,2,2,138,140],[379,1,1,140,141],[381,1,1,141,142],[387,1,1,142,143],[389,3,3,143,146],[395,1,1,146,147],[400,4,3,147,150]]],[14,1,1,150,151,[[412,1,1,150,151]]],[15,4,4,151,155,[[413,1,1,151,152],[421,2,2,152,154],[425,1,1,154,155]]],[17,2,2,155,157,[[466,1,1,155,156],[476,1,1,156,157]]],[18,20,20,157,177,[[502,2,2,157,159],[521,1,1,159,160],[527,2,2,160,162],[532,1,1,162,163],[551,1,1,163,164],[555,2,2,164,166],[566,4,4,166,170],[580,1,1,170,171],[582,2,2,171,173],[583,1,1,173,174],[588,2,2,174,176],[609,1,1,176,177]]],[19,1,1,177,178,[[629,1,1,177,178]]],[22,12,12,178,190,[[702,1,1,178,179],[706,2,2,179,181],[711,1,1,181,182],[720,1,1,182,183],[727,1,1,183,184],[732,1,1,184,185],[733,1,1,185,186],[734,2,2,186,188],[737,1,1,188,189],[739,1,1,189,190]]],[23,24,21,190,211,[[747,1,1,190,191],[755,5,5,191,196],[758,1,1,196,197],[766,1,1,197,198],[775,4,3,198,201],[776,1,1,201,202],[777,4,3,202,205],[778,6,5,205,210],[794,1,1,210,211]]],[25,16,14,211,225,[[817,5,4,211,215],[818,6,6,215,221],[821,1,1,221,222],[835,1,1,222,223],[838,2,1,223,224],[845,1,1,224,225]]],[26,7,6,225,231,[[858,2,2,225,227],[860,5,4,227,231]]],[27,5,5,231,236,[[863,1,1,231,232],[867,1,1,232,233],[869,1,1,233,234],[871,1,1,234,235],[873,1,1,235,236]]],[29,1,1,236,237,[[879,1,1,236,237]]],[37,2,2,237,239,[[919,1,1,237,238],[921,1,1,238,239]]],[38,6,6,239,245,[[926,5,5,239,244],[927,1,1,244,245]]]],[155,214,216,217,218,220,221,222,378,399,401,404,406,407,408,410,411,416,418,540,545,720,917,1578,1659,1660,2031,2176,2184,2185,2436,2506,2508,2511,2523,2524,2775,3454,3533,3539,3549,3566,3568,3569,4021,4152,4276,4483,4484,5017,5027,5035,5055,5056,5113,5120,5123,5155,5166,5168,5172,5194,5366,5680,5688,5691,5693,5700,5704,5737,5744,5748,5753,5754,5819,5896,5899,5901,5904,5907,5910,5917,5919,5928,5955,5957,5987,5991,6035,6476,6501,6546,6565,7081,7300,7301,7302,7446,7679,7738,7828,8413,8658,8831,8915,8986,8991,9006,9008,9119,9397,9401,9442,9833,9846,9894,9998,10018,10021,10036,10167,10168,10186,10676,10816,10817,10819,10820,10826,10835,10837,10857,10864,10983,11145,11161,11270,11275,11293,11296,11458,11502,11631,11657,11659,11672,11801,11963,11964,11965,12255,12301,12519,12543,12700,13589,13892,14261,14265,14588,14673,14684,14752,15068,15123,15150,15329,15354,15360,15365,15567,15614,15616,15696,15798,15802,16163,16450,18100,18179,18182,18287,18486,18644,18733,18743,18757,18759,18821,18851,19018,19228,19229,19232,19234,19236,19314,19463,19722,19723,19724,19771,19795,19796,19800,19809,19811,19814,19816,19819,20171,20770,20821,20822,20824,20838,20839,20840,20841,20843,20844,20932,21338,21423,21606,21992,22015,22058,22064,22066,22068,22123,22174,22195,22229,22253,22373,23010,23038,23107,23108,23111,23113,23117,23121]]],["league",[16,14,[[5,5,5,0,5,[[195,5,5,0,5]]],[6,1,1,5,6,[[212,1,1,5,6]]],[9,4,4,6,10,[[269,3,3,6,9],[271,1,1,9,10]]],[10,2,1,10,11,[[305,2,1,10,11]]],[13,2,1,11,12,[[382,2,1,11,12]]],[17,1,1,12,13,[[440,1,1,12,13]]],[25,1,1,13,14,[[831,1,1,13,14]]]],[6043,6044,6048,6052,6053,6547,8093,8094,8102,8135,9268,11512,12974,21209]]]]},{"k":"H1286","v":[["Berith",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6800]]]]},{"k":"H1287","v":[["soap",[2,2,[[23,1,1,0,1,[[746,1,1,0,1]]],[38,1,1,1,2,[[927,1,1,1,2]]]],[18987,23122]]]]},{"k":"H1288","v":[["*",[330,289,[[0,73,62,0,62,[[0,2,2,0,2],[1,1,1,2,3],[4,1,1,3,4],[8,2,2,4,6],[11,4,2,6,8],[13,3,2,8,10],[16,3,2,10,12],[17,1,1,12,13],[21,3,2,13,15],[23,7,7,15,22],[24,1,1,22,23],[25,5,5,23,28],[26,17,14,28,42],[27,5,4,42,46],[29,2,2,46,48],[30,1,1,48,49],[31,2,2,49,51],[34,1,1,51,52],[38,1,1,52,53],[46,2,2,53,55],[47,6,5,55,60],[48,3,2,60,62]]],[1,6,6,62,68,[[61,1,1,62,63],[67,1,1,63,64],[69,2,2,64,66],[72,1,1,66,67],[88,1,1,67,68]]],[2,2,2,68,70,[[98,2,2,68,70]]],[3,17,11,70,81,[[122,3,3,70,73],[138,3,2,73,75],[139,6,3,75,78],[140,5,3,78,81]]],[4,39,35,81,116,[[153,1,1,81,82],[154,1,1,82,83],[159,3,2,83,85],[160,1,1,85,86],[162,1,1,86,87],[164,1,1,87,88],[166,2,2,88,90],[167,6,5,90,95],[168,2,2,95,97],[173,1,1,97,98],[175,1,1,98,99],[176,2,2,99,101],[178,1,1,101,102],[179,1,1,102,103],[180,8,6,103,109],[181,1,1,109,110],[182,1,1,110,111],[185,5,5,111,116]]],[5,8,7,116,123,[[194,1,1,116,117],[200,1,1,117,118],[203,1,1,118,119],[208,3,3,119,122],[210,2,1,122,123]]],[6,6,5,123,128,[[215,4,3,123,126],[223,1,1,126,127],[227,1,1,127,128]]],[7,5,5,128,133,[[233,3,3,128,131],[234,1,1,131,132],[235,1,1,132,133]]],[8,11,10,133,143,[[237,1,1,133,134],[244,1,1,134,135],[248,1,1,135,136],[250,1,1,136,137],[258,1,1,137,138],[260,5,4,138,142],[261,1,1,142,143]]],[9,14,13,143,156,[[268,1,1,143,144],[272,4,4,144,148],[273,2,1,148,149],[274,1,1,149,150],[279,1,1,150,151],[280,1,1,151,152],[284,1,1,152,153],[285,1,1,153,154],[287,1,1,154,155],[288,1,1,155,156]]],[10,12,12,156,168,[[291,2,2,156,158],[292,1,1,158,159],[295,1,1,159,160],[298,5,5,160,165],[300,1,1,165,166],[311,2,2,166,168]]],[11,3,2,168,170,[[316,2,1,168,169],[322,1,1,169,170]]],[12,16,11,170,181,[[341,2,1,170,171],[350,1,1,171,172],[353,3,3,172,175],[354,3,1,175,176],[355,1,1,176,177],[360,1,1,177,178],[363,1,1,178,179],[366,4,2,179,181]]],[13,9,9,181,190,[[368,1,1,181,182],[372,3,3,182,185],[375,1,1,185,186],[386,1,1,186,187],[396,1,1,187,188],[397,2,2,188,190]]],[14,1,1,190,191,[[409,1,1,190,191]]],[15,4,3,191,194,[[420,1,1,191,192],[421,2,1,192,193],[423,1,1,193,194]]],[17,8,8,194,202,[[436,4,4,194,198],[437,2,2,198,200],[466,1,1,200,201],[477,1,1,201,202]]],[18,75,68,202,270,[[482,1,1,202,203],[487,1,1,203,204],[493,1,1,204,205],[495,1,1,205,206],[503,1,1,206,207],[505,2,2,207,209],[506,1,1,209,210],[508,1,1,210,211],[511,1,1,211,212],[514,1,1,212,213],[518,1,1,213,214],[522,1,1,214,215],[526,1,1,215,216],[539,1,1,216,217],[540,1,1,217,218],[542,1,1,218,219],[543,2,2,219,221],[544,3,3,221,224],[545,3,3,224,227],[549,4,4,227,231],[566,1,1,231,232],[572,1,1,232,233],[573,1,1,233,234],[577,1,1,234,235],[580,6,5,235,240],[581,2,2,240,242],[583,1,1,242,243],[584,1,1,243,244],[586,1,1,244,245],[589,1,1,245,246],[590,1,1,246,247],[592,6,4,247,251],[595,2,1,251,252],[596,1,1,252,253],[601,1,1,253,254],[605,2,2,254,256],[606,1,1,256,257],[609,2,1,257,258],[611,3,3,258,261],[612,5,3,261,264],[621,1,1,264,265],[622,4,4,265,269],[624,1,1,269,270]]],[19,6,6,270,276,[[630,1,1,270,271],[632,1,1,271,272],[647,1,1,272,273],[649,1,1,273,274],[654,1,1,274,275],[657,1,1,275,276]]],[22,8,6,276,282,[[697,2,1,276,277],[729,1,1,277,278],[739,1,1,278,279],[743,3,2,279,281],[744,1,1,281,282]]],[23,4,4,282,286,[[748,1,1,282,283],[761,1,1,283,284],[764,1,1,284,285],[775,1,1,285,286]]],[25,1,1,286,287,[[804,1,1,286,287]]],[36,1,1,287,288,[[910,1,1,287,288]]],[37,1,1,288,289,[[921,1,1,288,289]]]],[21,27,33,107,206,231,300,301,355,356,413,417,442,564,565,592,602,618,622,626,639,651,669,695,696,704,716,721,731,734,737,746,750,752,754,756,757,758,760,761,765,768,774,776,779,787,857,860,928,954,957,1020,1154,1427,1430,1454,1460,1466,1467,1471,1498,1501,1848,2009,2062,2075,2169,2707,2975,2976,3846,3847,3850,4381,4387,4427,4436,4441,4447,4455,4456,4903,4945,5124,5125,5147,5194,5247,5314,5319,5323,5325,5329,5333,5337,5352,5357,5452,5520,5538,5544,5581,5597,5614,5615,5616,5617,5619,5623,5698,5724,5811,5821,5823,5830,5834,6035,6200,6289,6432,6433,6459,6486,6625,6632,6647,6908,6982,7153,7168,7169,7182,7204,7260,7404,7495,7573,7831,7875,7893,7894,7900,7930,8054,8168,8169,8175,8177,8209,8219,8342,8378,8506,8550,8583,8649,8764,8765,8815,8885,8999,9000,9040,9041,9051,9088,9461,9464,9632,9808,10395,10774,10822,10856,10863,10890,10900,10996,11082,11174,11184,11223,11285,11286,11295,11372,11613,11854,11862,11864,12200,12499,12516,12590,12874,12879,12880,12890,12896,12900,13608,13934,13985,14044,14099,14164,14285,14305,14308,14319,14352,14389,14472,14555,14599,14666,14831,14843,14870,14881,14893,14894,14899,14900,14919,14926,14935,15015,15017,15018,15019,15378,15460,15467,15512,15550,15551,15569,15570,15571,15572,15606,15699,15737,15783,15805,15815,15842,15843,15845,15848,15895,15910,16108,16130,16131,16140,16166,16173,16174,16175,16194,16195,16196,16306,16321,16322,16330,16341,16364,16488,16535,16975,17024,17183,17262,18029,18675,18852,18913,18920,18925,19029,19364,19436,19714,20514,22874,23033]]],["+",[77,68,[[0,13,13,0,13,[[1,1,1,0,1],[8,1,1,1,2],[23,4,4,2,6],[26,1,1,6,7],[27,1,1,7,8],[38,1,1,8,9],[46,2,2,9,11],[47,2,2,11,13]]],[1,1,1,13,14,[[72,1,1,13,14]]],[2,1,1,14,15,[[98,1,1,14,15]]],[3,8,5,15,20,[[122,1,1,15,16],[139,4,2,16,18],[140,3,2,18,20]]],[4,7,6,20,26,[[160,1,1,20,21],[167,2,1,21,22],[178,1,1,22,23],[179,1,1,23,24],[180,1,1,24,25],[185,1,1,25,26]]],[5,3,2,26,28,[[194,1,1,26,27],[210,2,1,27,28]]],[8,2,2,28,30,[[237,1,1,28,29],[260,1,1,29,30]]],[9,7,7,30,37,[[272,4,4,30,34],[273,1,1,34,35],[280,1,1,35,36],[287,1,1,36,37]]],[10,4,4,37,41,[[291,1,1,37,38],[298,3,3,38,41]]],[12,8,7,41,48,[[341,2,1,41,42],[350,1,1,42,43],[353,2,2,43,45],[354,1,1,45,46],[366,2,2,46,48]]],[13,5,5,48,53,[[372,1,1,48,49],[386,1,1,49,50],[396,1,1,50,51],[397,2,2,51,53]]],[15,2,2,53,55,[[420,1,1,53,54],[421,1,1,54,55]]],[17,1,1,55,56,[[477,1,1,55,56]]],[18,15,12,56,68,[[493,1,1,56,57],[505,1,1,57,58],[506,1,1,58,59],[580,3,3,59,62],[581,1,1,62,63],[592,2,1,63,64],[609,2,1,64,65],[611,1,1,65,66],[612,3,2,66,68]]]],[33,206,592,626,639,651,757,779,1154,1427,1430,1466,1467,2169,2976,3846,4427,4441,4447,4456,5147,5323,5581,5597,5623,5811,6035,6486,7260,7875,8168,8169,8175,8177,8209,8378,8583,8764,8999,9040,9051,10395,10774,10822,10863,10890,11174,11184,11285,11613,11854,11862,11864,12499,12516,13934,14099,14308,14319,15550,15551,15571,15572,15842,16166,16174,16194,16195]]],["Bless",[8,8,[[0,1,1,0,1,[[26,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[18,5,5,3,8,[[545,1,1,3,4],[580,3,3,4,7],[581,1,1,7,8]]]],[761,5821,6632,14926,15569,15570,15571,15606]]],["Blessed",[53,53,[[0,3,3,0,3,[[8,1,1,0,1],[13,1,1,1,2],[23,1,1,2,3]]],[1,1,1,3,4,[[67,1,1,3,4]]],[3,1,1,4,5,[[140,1,1,4,5]]],[4,6,6,5,11,[[180,4,4,5,9],[185,2,2,9,11]]],[6,2,2,11,13,[[215,1,1,11,12],[227,1,1,12,13]]],[7,3,3,13,16,[[233,1,1,13,14],[234,1,1,14,15],[235,1,1,15,16]]],[8,5,5,16,21,[[250,1,1,16,17],[258,1,1,17,18],[260,2,2,18,20],[261,1,1,20,21]]],[9,2,2,21,23,[[268,1,1,21,22],[284,1,1,22,23]]],[10,5,5,23,28,[[291,1,1,23,24],[295,1,1,24,25],[298,2,2,25,27],[300,1,1,27,28]]],[12,2,2,28,30,[[353,1,1,28,29],[366,1,1,29,30]]],[13,3,3,30,33,[[368,1,1,30,31],[372,1,1,31,32],[375,1,1,32,33]]],[14,1,1,33,34,[[409,1,1,33,34]]],[18,15,15,34,49,[[505,1,1,34,35],[508,1,1,35,36],[518,1,1,36,37],[543,1,1,37,38],[545,2,2,38,40],[549,1,1,40,41],[566,1,1,41,42],[583,1,1,42,43],[590,1,1,43,44],[595,1,1,44,45],[596,1,1,45,46],[601,1,1,46,47],[612,1,1,47,48],[621,1,1,48,49]]],[22,1,1,49,50,[[697,1,1,49,50]]],[23,1,1,50,51,[[761,1,1,50,51]]],[25,1,1,51,52,[[804,1,1,51,52]]],[37,1,1,52,53,[[921,1,1,52,53]]]],[231,355,618,2009,4455,5614,5615,5616,5617,5823,5830,6647,6982,7169,7182,7204,7573,7831,7893,7900,7930,8054,8506,8765,8885,9000,9041,9088,10856,11174,11223,11286,11372,12200,14305,14352,14555,14893,14919,14935,15018,15378,15699,15815,15895,15910,16108,16196,16306,18029,19364,20514,23033]]],["Praise",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6625]]],["blaspheme",[2,2,[[10,2,2,0,2,[[311,2,2,0,2]]]],[9461,9464]]],["bless",[71,68,[[0,20,18,0,18,[[11,3,2,0,2],[16,2,1,2,3],[21,1,1,3,4],[25,2,2,4,6],[26,7,7,6,13],[27,1,1,13,14],[31,1,1,14,15],[47,2,2,15,17],[48,1,1,17,18]]],[1,2,2,18,20,[[61,1,1,18,19],[69,1,1,19,20]]],[3,3,3,20,23,[[122,2,2,20,22],[139,1,1,22,23]]],[4,14,13,23,36,[[153,1,1,23,24],[159,2,1,24,25],[162,1,1,25,26],[166,1,1,26,27],[167,2,2,27,29],[168,1,1,29,30],[173,1,1,30,31],[175,1,1,31,32],[176,2,2,32,34],[180,1,1,34,35],[182,1,1,35,36]]],[7,1,1,36,37,[[233,1,1,36,37]]],[8,1,1,37,38,[[244,1,1,37,38]]],[9,1,1,38,39,[[274,1,1,38,39]]],[12,1,1,39,40,[[360,1,1,39,40]]],[18,24,24,40,64,[[482,1,1,40,41],[503,1,1,41,42],[511,1,1,42,43],[539,1,1,43,44],[540,1,1,44,45],[543,1,1,45,46],[544,3,3,46,49],[573,1,1,49,50],[577,1,1,50,51],[586,1,1,51,52],[592,3,3,52,55],[605,1,1,55,56],[606,1,1,56,57],[611,2,2,57,59],[612,1,1,59,60],[622,4,4,60,64]]],[19,1,1,64,65,[[657,1,1,64,65]]],[22,1,1,65,66,[[697,1,1,65,66]]],[23,1,1,66,67,[[775,1,1,66,67]]],[36,1,1,67,68,[[910,1,1,67,68]]]],[300,301,413,564,695,716,731,734,737,746,752,758,765,776,954,1460,1471,1498,1848,2075,3847,3850,4436,4903,5124,5194,5319,5329,5337,5357,5452,5520,5538,5544,5619,5724,7153,7404,8219,10996,13985,14285,14389,14831,14843,14881,14894,14899,14900,15467,15512,15783,15842,15843,15848,16131,16140,16173,16175,16194,16321,16322,16330,16341,17262,18029,19714,22874]]],["blessed",[90,86,[[0,33,30,0,30,[[0,2,2,0,2],[4,1,1,2,3],[11,1,1,3,4],[13,2,2,4,6],[16,1,1,6,7],[17,1,1,7,8],[21,1,1,8,9],[23,1,1,9,10],[24,1,1,10,11],[25,3,3,11,14],[26,7,5,14,19],[27,3,3,19,22],[29,2,2,22,24],[30,1,1,24,25],[31,1,1,25,26],[34,1,1,26,27],[47,2,2,27,29],[48,2,1,29,30]]],[1,2,2,30,32,[[69,1,1,30,31],[88,1,1,31,32]]],[2,1,1,32,33,[[98,1,1,32,33]]],[3,3,3,33,36,[[138,2,2,33,35],[139,1,1,35,36]]],[4,9,9,36,45,[[154,1,1,36,37],[159,1,1,37,38],[164,1,1,38,39],[166,1,1,39,40],[167,1,1,40,41],[168,1,1,41,42],[180,2,2,42,44],[185,1,1,44,45]]],[5,5,5,45,50,[[200,1,1,45,46],[203,1,1,46,47],[208,3,3,47,50]]],[6,2,2,50,52,[[215,1,1,50,51],[223,1,1,51,52]]],[7,1,1,52,53,[[233,1,1,52,53]]],[8,2,1,53,54,[[260,2,1,53,54]]],[9,4,4,54,58,[[273,1,1,54,55],[279,1,1,55,56],[285,1,1,56,57],[288,1,1,57,58]]],[10,1,1,58,59,[[292,1,1,58,59]]],[12,3,3,59,62,[[354,1,1,59,60],[363,1,1,60,61],[366,1,1,61,62]]],[15,2,2,62,64,[[421,1,1,62,63],[423,1,1,63,64]]],[17,3,3,64,67,[[436,2,2,64,66],[466,1,1,66,67]]],[18,11,11,67,78,[[495,1,1,67,68],[514,1,1,68,69],[522,1,1,69,70],[526,1,1,70,71],[549,2,2,71,73],[589,1,1,73,74],[592,1,1,74,75],[595,1,1,75,76],[605,1,1,76,77],[624,1,1,77,78]]],[19,3,3,78,81,[[632,1,1,78,79],[647,1,1,79,80],[649,1,1,80,81]]],[22,4,4,81,85,[[729,1,1,81,82],[739,1,1,82,83],[743,1,1,83,84],[744,1,1,84,85]]],[23,1,1,85,86,[[764,1,1,85,86]]]],[21,27,107,301,355,356,417,442,565,622,669,696,704,721,750,754,756,760,768,774,779,787,857,860,928,957,1020,1454,1471,1501,2062,2707,2975,4381,4387,4436,4945,5125,5247,5314,5333,5352,5614,5617,5834,6200,6289,6432,6433,6459,6647,6908,7168,7894,8209,8342,8550,8649,8815,10890,11082,11184,12516,12590,12879,12890,13608,14164,14472,14599,14666,15017,15019,15805,15845,15895,16130,16364,16535,16975,17024,18675,18852,18920,18925,19436]]],["blessest",[3,3,[[3,1,1,0,1,[[138,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]],[18,1,1,2,3,[[542,1,1,2,3]]]],[4381,10890,14870]]],["blesseth",[7,7,[[0,1,1,0,1,[[26,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[4,1,1,2,3,[[167,1,1,2,3]]],[18,2,2,3,5,[[487,1,1,3,4],[584,1,1,4,5]]],[19,2,2,5,7,[[630,1,1,5,6],[654,1,1,6,7]]]],[756,4455,5325,14044,15737,16488,17183]]],["blessing",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[564]]],["congratulate",[1,1,[[12,1,1,0,1,[[355,1,1,0,1]]]],[10900]]],["curse",[3,3,[[17,3,3,0,3,[[436,1,1,0,1],[437,2,2,1,3]]]],[12880,12896,12900]]],["cursed",[1,1,[[17,1,1,0,1,[[436,1,1,0,1]]]],[12874]]],["down",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]]],[602,11295]]],["himself",[3,2,[[4,1,1,0,1,[[181,1,1,0,1]]],[22,2,1,1,2,[[743,2,1,1,2]]]],[5698,18913]]],["kneel",[1,1,[[18,1,1,0,1,[[572,1,1,0,1]]]],[15460]]],["praised",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15015]]],["salute",[3,2,[[8,1,1,0,1,[[248,1,1,0,1]]],[11,2,1,1,2,[[316,2,1,1,2]]]],[7495,9632]]],["saluted",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9808]]],["themselves",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19029]]]]},{"k":"H1289","v":[["*",[5,5,[[26,5,5,0,5,[[851,2,2,0,2],[852,1,1,2,3],[853,1,1,3,4],[855,1,1,4,5]]]],[21777,21778,21835,21871,21915]]],["Blessed",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21778,21835]]],["blessed",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21777,21871]]],["kneeled",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21915]]]]},{"k":"H1290","v":[["*",[25,25,[[0,3,3,0,3,[[29,1,1,0,1],[47,1,1,1,2],[49,1,1,2,3]]],[4,1,1,3,4,[[180,1,1,3,4]]],[6,3,3,4,7,[[217,2,2,4,6],[226,1,1,6,7]]],[10,3,3,7,10,[[298,1,1,7,8],[308,1,1,8,9],[309,1,1,9,10]]],[11,2,2,10,12,[[313,1,1,10,11],[316,1,1,11,12]]],[13,1,1,12,13,[[372,1,1,12,13]]],[14,1,1,13,14,[[411,1,1,13,14]]],[17,2,2,14,16,[[438,1,1,14,15],[439,1,1,15,16]]],[18,1,1,16,17,[[586,1,1,16,17]]],[22,3,3,17,20,[[713,1,1,17,18],[723,1,1,18,19],[744,1,1,19,20]]],[25,3,3,20,23,[[808,1,1,20,21],[822,1,1,21,22],[848,1,1,22,23]]],[26,1,1,23,24,[[859,1,1,23,24]]],[33,1,1,24,25,[[901,1,1,24,25]]]],[833,1463,1529,5646,6699,6700,6968,9039,9383,9405,9546,9623,11295,12242,12916,12934,15779,18323,18584,18934,20594,20951,21683,22025,22709]]],["knee",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18584]]],["knees",[24,24,[[0,3,3,0,3,[[29,1,1,0,1],[47,1,1,1,2],[49,1,1,2,3]]],[4,1,1,3,4,[[180,1,1,3,4]]],[6,3,3,4,7,[[217,2,2,4,6],[226,1,1,6,7]]],[10,3,3,7,10,[[298,1,1,7,8],[308,1,1,8,9],[309,1,1,9,10]]],[11,2,2,10,12,[[313,1,1,10,11],[316,1,1,11,12]]],[13,1,1,12,13,[[372,1,1,12,13]]],[14,1,1,13,14,[[411,1,1,13,14]]],[17,2,2,14,16,[[438,1,1,14,15],[439,1,1,15,16]]],[18,1,1,16,17,[[586,1,1,16,17]]],[22,2,2,17,19,[[713,1,1,17,18],[744,1,1,18,19]]],[25,3,3,19,22,[[808,1,1,19,20],[822,1,1,20,21],[848,1,1,21,22]]],[26,1,1,22,23,[[859,1,1,22,23]]],[33,1,1,23,24,[[901,1,1,23,24]]]],[833,1463,1529,5646,6699,6700,6968,9039,9383,9405,9546,9623,11295,12242,12916,12934,15779,18323,18934,20594,20951,21683,22025,22709]]]]},{"k":"H1291","v":[["knees",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21915]]]]},{"k":"H1292","v":[["Barachel",[2,2,[[17,2,2,0,2,[[467,2,2,0,2]]]],[13630,13634]]]]},{"k":"H1293","v":[["*",[69,64,[[0,16,12,0,12,[[11,1,1,0,1],[26,6,5,1,6],[27,1,1,6,7],[32,1,1,7,8],[38,1,1,8,9],[48,6,3,9,12]]],[1,1,1,12,13,[[81,1,1,12,13]]],[2,1,1,13,14,[[114,1,1,13,14]]],[4,12,12,14,26,[[163,3,3,14,17],[164,1,1,17,18],[168,1,1,18,19],[175,1,1,19,20],[180,2,2,20,22],[182,2,2,22,24],[185,2,2,24,26]]],[5,2,2,26,28,[[194,1,1,26,27],[201,1,1,27,28]]],[6,1,1,28,29,[[211,1,1,28,29]]],[8,2,2,29,31,[[260,1,1,29,30],[265,1,1,30,31]]],[9,1,1,31,32,[[273,1,1,31,32]]],[11,2,2,32,34,[[317,1,1,32,33],[330,1,1,33,34]]],[15,2,2,34,36,[[421,1,1,34,35],[425,1,1,35,36]]],[17,1,1,36,37,[[464,1,1,36,37]]],[18,9,9,37,46,[[480,1,1,37,38],[498,2,2,38,40],[501,1,1,40,41],[514,1,1,41,42],[561,1,1,42,43],[586,1,1,43,44],[606,1,1,44,45],[610,1,1,45,46]]],[19,8,8,46,54,[[637,3,3,46,49],[638,3,3,49,52],[651,1,1,52,53],[655,1,1,53,54]]],[22,4,4,54,58,[[697,1,1,54,55],[714,1,1,55,56],[722,1,1,56,57],[743,1,1,57,58]]],[25,3,2,58,60,[[835,2,1,58,59],[845,1,1,59,60]]],[28,1,1,60,61,[[877,1,1,60,61]]],[37,1,1,61,62,[[918,1,1,61,62]]],[38,2,2,62,64,[[926,1,1,62,63],[927,1,1,63,64]]]],[300,739,762,763,765,768,777,971,1154,1498,1499,1501,2467,3490,5234,5235,5237,5255,5359,5505,5613,5619,5709,5727,5811,5833,6036,6221,6524,7888,8004,8209,9662,10055,12516,12673,13545,13965,14194,14197,14246,14476,15265,15772,16140,16172,16662,16663,16678,16699,16713,16714,17104,17216,18028,18346,18536,18905,21339,21629,22325,22989,23105,23130]]],["+",[1,1,[[9,1,1,0,1,[[273,1,1,0,1]]]],[8209]]],["Blessings",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16662]]],["blessed",[3,3,[[18,2,2,0,2,[[498,1,1,0,1],[514,1,1,1,2]]],[19,1,1,2,3,[[637,1,1,2,3]]]],[14197,14476,16663]]],["blessing",[49,47,[[0,11,10,0,10,[[11,1,1,0,1],[26,6,5,1,6],[27,1,1,6,7],[32,1,1,7,8],[38,1,1,8,9],[48,1,1,9,10]]],[1,1,1,10,11,[[81,1,1,10,11]]],[2,1,1,11,12,[[114,1,1,11,12]]],[4,11,11,12,23,[[163,3,3,12,15],[164,1,1,15,16],[168,1,1,16,17],[175,1,1,17,18],[180,1,1,18,19],[182,2,2,19,21],[185,2,2,21,23]]],[5,1,1,23,24,[[201,1,1,23,24]]],[6,1,1,24,25,[[211,1,1,24,25]]],[8,1,1,25,26,[[260,1,1,25,26]]],[11,1,1,26,27,[[317,1,1,26,27]]],[15,2,2,27,29,[[421,1,1,27,28],[425,1,1,28,29]]],[17,1,1,29,30,[[464,1,1,29,30]]],[18,5,5,30,35,[[480,1,1,30,31],[501,1,1,31,32],[586,1,1,32,33],[606,1,1,33,34],[610,1,1,34,35]]],[19,4,4,35,39,[[637,1,1,35,36],[638,2,2,36,38],[651,1,1,38,39]]],[22,3,3,39,42,[[697,1,1,39,40],[722,1,1,40,41],[743,1,1,41,42]]],[25,3,2,42,44,[[835,2,1,42,43],[845,1,1,43,44]]],[28,1,1,44,45,[[877,1,1,44,45]]],[37,1,1,45,46,[[918,1,1,45,46]]],[38,1,1,46,47,[[927,1,1,46,47]]]],[300,739,762,763,765,768,777,971,1154,1501,2467,3490,5234,5235,5237,5255,5359,5505,5619,5709,5727,5811,5833,6221,6524,7888,9662,12516,12673,13545,13965,14246,15772,16140,16172,16678,16699,16714,17104,18028,18536,18905,21339,21629,22325,22989,23130]]],["blessings",[10,7,[[0,5,2,0,2,[[48,5,2,0,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[5,1,1,3,4,[[194,1,1,3,4]]],[18,1,1,4,5,[[498,1,1,4,5]]],[19,1,1,5,6,[[655,1,1,5,6]]],[38,1,1,6,7,[[926,1,1,6,7]]]],[1498,1499,5613,6036,14194,17216,23105]]],["liberal",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16713]]],["pools",[1,1,[[18,1,1,0,1,[[561,1,1,0,1]]]],[15265]]],["present",[3,3,[[8,1,1,0,1,[[265,1,1,0,1]]],[11,1,1,1,2,[[330,1,1,1,2]]],[22,1,1,2,3,[[714,1,1,2,3]]]],[8004,10055,18346]]]]},{"k":"H1294","v":[["Berachah",[3,2,[[12,1,1,0,1,[[349,1,1,0,1]]],[13,2,1,1,2,[[386,2,1,1,2]]]],[10723,11613]]]]},{"k":"H1295","v":[["*",[17,15,[[9,4,2,0,2,[[268,3,1,0,1],[270,1,1,1,2]]],[10,1,1,2,3,[[312,1,1,2,3]]],[11,2,2,3,5,[[330,1,1,3,4],[332,1,1,4,5]]],[15,3,3,5,8,[[414,1,1,5,6],[415,2,2,6,8]]],[20,1,1,8,9,[[660,1,1,8,9]]],[21,1,1,9,10,[[677,1,1,9,10]]],[22,4,4,10,14,[[685,1,1,10,11],[700,2,2,11,13],[714,1,1,13,14]]],[33,1,1,14,15,[[901,1,1,14,15]]]],[8062,8132,9518,10041,10118,12321,12342,12343,17339,17631,17785,18061,18063,18332,22707]]],["fishpools",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17631]]],["pool",[15,13,[[9,4,2,0,2,[[268,3,1,0,1],[270,1,1,1,2]]],[10,1,1,2,3,[[312,1,1,2,3]]],[11,2,2,3,5,[[330,1,1,3,4],[332,1,1,4,5]]],[15,3,3,5,8,[[414,1,1,5,6],[415,2,2,6,8]]],[22,4,4,8,12,[[685,1,1,8,9],[700,2,2,9,11],[714,1,1,11,12]]],[33,1,1,12,13,[[901,1,1,12,13]]]],[8062,8132,9518,10041,10118,12321,12342,12343,17785,18061,18063,18332,22707]]],["pools",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17339]]]]},{"k":"H1296","v":[["*",[11,11,[[12,5,5,0,5,[[340,1,1,0,1],[343,1,1,1,2],[346,1,1,2,3],[352,2,2,3,5]]],[13,1,1,5,6,[[394,1,1,5,6]]],[15,3,3,6,9,[[415,2,2,6,8],[418,1,1,8,9]]],[37,2,2,9,11,[[911,2,2,9,11]]]],[10381,10493,10631,10808,10814,11776,12331,12357,12419,22879,22885]]],["Berachiah",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10493]]],["Berechiah",[10,10,[[12,4,4,0,4,[[340,1,1,0,1],[346,1,1,1,2],[352,2,2,2,4]]],[13,1,1,4,5,[[394,1,1,4,5]]],[15,3,3,5,8,[[415,2,2,5,7],[418,1,1,7,8]]],[37,2,2,8,10,[[911,2,2,8,10]]]],[10381,10631,10808,10814,11776,12331,12357,12419,22879,22885]]]]},{"k":"H1297","v":[["*",[5,5,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,4,4,1,5,[[851,1,1,1,2],[853,2,2,2,4],[854,1,1,4,5]]]],[12147,21786,21852,21860,21891]]],["But",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[851,1,1,1,2]]]],[12147,21786]]],["Nevertheless",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21852]]],["yet",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[854,1,1,1,2]]]],[21860,21891]]]]},{"k":"H1298","v":[["Bera",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[338]]]]},{"k":"H1299","v":[["forth",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16311]]]]},{"k":"H1300","v":[["*",[21,21,[[1,1,1,0,1,[[68,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[17,2,2,3,5,[[455,1,1,3,4],[473,1,1,4,5]]],[18,5,5,5,10,[[495,1,1,5,6],[554,1,1,6,7],[574,1,1,7,8],[612,1,1,8,9],[621,1,1,9,10]]],[23,2,2,10,12,[[754,1,1,10,11],[795,1,1,11,12]]],[25,4,4,12,16,[[802,1,1,12,13],[822,3,3,13,16]]],[26,1,1,16,17,[[859,1,1,16,17]]],[33,2,2,17,19,[[901,1,1,17,18],[902,1,1,18,19]]],[34,1,1,19,20,[[905,1,1,19,20]]],[37,1,1,20,21,[[919,1,1,20,21]]]],[2042,5799,8617,13351,13828,14132,15111,15482,16182,16311,19214,20228,20477,20954,20959,20972,22021,22703,22715,22779,23013]]],["+",[2,2,[[25,2,2,0,2,[[822,2,2,0,2]]]],[20954,20959]]],["glittering",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]],[33,1,1,2,3,[[902,1,1,2,3]]],[34,1,1,3,4,[[905,1,1,3,4]]]],[5799,20972,22715,22779]]],["lightning",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[621,1,1,1,2]]],[25,1,1,2,3,[[802,1,1,2,3]]],[26,1,1,3,4,[[859,1,1,3,4]]],[37,1,1,4,5,[[919,1,1,4,5]]]],[8617,16311,20477,22021,23013]]],["lightnings",[9,9,[[1,1,1,0,1,[[68,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]],[18,4,4,2,6,[[495,1,1,2,3],[554,1,1,3,4],[574,1,1,4,5],[612,1,1,5,6]]],[23,2,2,6,8,[[754,1,1,6,7],[795,1,1,7,8]]],[33,1,1,8,9,[[901,1,1,8,9]]]],[2042,13828,14132,15111,15482,16182,19214,20228,22703]]],["sword",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13351]]]]},{"k":"H1301","v":[["Barak",[13,12,[[6,13,12,0,12,[[214,10,9,0,9],[215,3,3,9,12]]]],[6605,6607,6608,6609,6611,6613,6614,6615,6621,6624,6635,6638]]]]},{"k":"H1302","v":[["Barkos",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12080,12475]]]]},{"k":"H1303","v":[["briers",[2,2,[[6,2,2,0,2,[[218,2,2,0,2]]]],[6726,6735]]]]},{"k":"H1304","v":[["carbuncle",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[25,1,1,2,3,[[829,1,1,2,3]]]],[2310,2674,21170]]]]},{"k":"H1305","v":[["*",[17,16,[[9,1,1,0,1,[[288,1,1,0,1]]],[12,3,3,1,4,[[344,1,1,1,2],[346,1,1,2,3],[353,1,1,3,4]]],[15,1,1,4,5,[[417,1,1,4,5]]],[17,1,1,5,6,[[468,1,1,5,6]]],[18,2,1,6,7,[[495,2,1,6,7]]],[20,1,1,7,8,[[661,1,1,7,8]]],[22,2,2,8,10,[[727,1,1,8,9],[730,1,1,9,10]]],[23,2,2,10,12,[[748,1,1,10,11],[795,1,1,11,12]]],[25,1,1,12,13,[[821,1,1,12,13]]],[26,2,2,13,15,[[860,1,1,13,14],[861,1,1,14,15]]],[35,1,1,15,16,[[908,1,1,15,16]]]],[8629,10575,10637,10861,12400,13653,14144,17377,18638,18707,19038,20223,20933,22071,22091,22829]]],["bright",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20223]]],["choice",[2,2,[[12,1,1,0,1,[[344,1,1,0,1]]],[15,1,1,1,2,[[417,1,1,1,2]]]],[10575,12400]]],["chosen",[2,2,[[12,2,2,0,2,[[346,1,1,0,1],[353,1,1,1,2]]]],[10637,10861]]],["clean",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18707]]],["cleanse",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19038]]],["clearly",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13653]]],["manifest",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17377]]],["out",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20933]]],["polished",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18638]]],["pure",[4,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,2,1,1,2,[[495,2,1,1,2]]],[35,1,1,2,3,[[908,1,1,2,3]]]],[8629,14144,22829]]],["purge",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22071]]],["purified",[1,1,[[26,1,1,0,1,[[861,1,1,0,1]]]],[22091]]]]},{"k":"H1306","v":[["Birsha",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[338]]]]},{"k":"H1307","v":[["Berothite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10712]]]]},{"k":"H1308","v":[["Besor",[3,3,[[8,3,3,0,3,[[265,3,3,0,3]]]],[7987,7988,7999]]]]},{"k":"H1309","v":[["*",[6,6,[[9,5,5,0,5,[[270,1,1,0,1],[284,4,4,1,5]]],[11,1,1,5,6,[[319,1,1,5,6]]]],[8130,8498,8500,8503,8505,9716]]],["+",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8498]]],["tidings",[5,5,[[9,4,4,0,4,[[270,1,1,0,1],[284,3,3,1,4]]],[11,1,1,4,5,[[319,1,1,4,5]]]],[8130,8500,8503,8505,9716]]]]},{"k":"H1310","v":[["*",[28,24,[[0,1,1,0,1,[[39,1,1,0,1]]],[1,6,5,1,6,[[61,1,1,1,2],[65,2,1,2,3],[72,1,1,3,4],[78,1,1,4,5],[83,1,1,5,6]]],[2,3,2,6,8,[[95,2,1,6,7],[97,1,1,7,8]]],[3,1,1,8,9,[[127,1,1,8,9]]],[4,2,2,9,11,[[166,1,1,9,10],[168,1,1,10,11]]],[8,2,2,11,13,[[237,2,2,11,13]]],[9,1,1,13,14,[[279,1,1,13,14]]],[10,1,1,14,15,[[309,1,1,14,15]]],[11,2,2,15,17,[[316,1,1,15,16],[318,1,1,16,17]]],[13,2,1,17,18,[[401,2,1,17,18]]],[24,1,1,18,19,[[800,1,1,18,19]]],[25,4,3,19,22,[[825,1,1,19,20],[847,3,2,20,22]]],[28,1,1,22,23,[[878,1,1,22,23]]],[37,1,1,23,24,[[924,1,1,23,24]]]],[1182,1825,1970,2163,2367,2522,2877,2948,4032,5311,5349,7253,7255,8325,9408,9641,9703,11979,20430,21061,21675,21679,22356,23089]]],["+",[8,8,[[1,2,2,0,2,[[61,1,1,0,1],[78,1,1,1,2]]],[2,1,1,2,3,[[97,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[9,1,1,4,5,[[279,1,1,4,5]]],[11,1,1,5,6,[[318,1,1,5,6]]],[25,2,2,6,8,[[847,2,2,6,8]]]],[1825,2367,2948,7255,8325,9703,21675,21679]]],["baked",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4032]]],["boil",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21679]]],["boiled",[1,1,[[10,1,1,0,1,[[309,1,1,0,1]]]],[9408]]],["forth",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1182]]],["ripe",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22356]]],["roast",[1,1,[[4,1,1,0,1,[[168,1,1,0,1]]]],[5349]]],["roasted",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11979]]],["seethe",[8,7,[[1,4,3,0,3,[[65,2,1,0,1],[72,1,1,1,2],[83,1,1,2,3]]],[4,1,1,3,4,[[166,1,1,3,4]]],[11,1,1,4,5,[[316,1,1,4,5]]],[25,1,1,5,6,[[825,1,1,5,6]]],[37,1,1,6,7,[[924,1,1,6,7]]]],[1970,2163,2522,5311,9641,21061,23089]]],["seething",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7253]]],["sod",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11979]]],["sodden",[3,2,[[2,2,1,0,1,[[95,2,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[2877,20430]]]]},{"k":"H1311","v":[["*",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[122,1,1,1,2]]]],[1825,3842]]],["+",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1825]]],["sodden",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3842]]]]},{"k":"H1312","v":[["Bishlam",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12117]]]]},{"k":"H1313","v":[["spice",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17599]]]]},{"k":"H1314","v":[["*",[29,25,[[1,6,4,0,4,[[74,1,1,0,1],[79,3,1,1,2],[84,2,2,2,4]]],[10,4,3,4,7,[[300,4,3,4,7]]],[11,1,1,7,8,[[332,1,1,7,8]]],[12,2,2,8,10,[[346,2,2,8,10]]],[13,6,5,10,15,[[375,4,3,10,13],[382,1,1,13,14],[398,1,1,14,15]]],[16,1,1,15,16,[[427,1,1,15,16]]],[21,6,6,16,22,[[674,3,3,16,19],[675,1,1,19,20],[676,1,1,20,21],[678,1,1,21,22]]],[22,2,2,22,24,[[681,1,1,22,23],[717,1,1,23,24]]],[25,1,1,24,25,[[828,1,1,24,25]]]],[2201,2405,2539,2559,9081,9089,9104,10111,10644,10645,11365,11373,11388,11523,11902,12736,17592,17596,17598,17611,17616,17654,17731,18414,21143]]],["odours",[2,2,[[13,1,1,0,1,[[382,1,1,0,1]]],[16,1,1,1,2,[[427,1,1,1,2]]]],[11523,12736]]],["smell",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17731]]],["spice",[2,2,[[1,1,1,0,1,[[84,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[2559,11373]]],["spices",[22,21,[[1,3,3,0,3,[[74,1,1,0,1],[79,1,1,1,2],[84,1,1,2,3]]],[10,4,3,3,6,[[300,4,3,3,6]]],[11,1,1,6,7,[[332,1,1,6,7]]],[12,2,2,7,9,[[346,2,2,7,9]]],[13,4,4,9,13,[[375,3,3,9,12],[398,1,1,12,13]]],[21,6,6,13,19,[[674,3,3,13,16],[675,1,1,16,17],[676,1,1,17,18],[678,1,1,18,19]]],[22,1,1,19,20,[[717,1,1,19,20]]],[25,1,1,20,21,[[828,1,1,20,21]]]],[2201,2405,2539,9081,9089,9104,10111,10644,10645,11365,11373,11388,11902,17592,17596,17598,17611,17616,17654,18414,21143]]],["sweet",[2,1,[[1,2,1,0,1,[[79,2,1,0,1]]]],[2405]]]]},{"k":"H1315","v":[["*",[7,7,[[0,6,6,0,6,[[25,1,1,0,1],[35,5,5,1,6]]],[10,1,1,6,7,[[294,1,1,6,7]]]],[726,1043,1044,1050,1053,1057,8859]]],["Bashemath",[6,6,[[0,6,6,0,6,[[25,1,1,0,1],[35,5,5,1,6]]]],[726,1043,1044,1050,1053,1057]]],["Basmath",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8859]]]]},{"k":"H1316","v":[["*",[60,53,[[3,3,2,0,2,[[137,2,1,0,1],[148,1,1,1,2]]],[4,16,13,2,15,[[153,1,1,2,3],[155,10,7,3,10],[156,2,2,10,12],[181,1,1,12,13],[184,1,1,13,14],[185,1,1,14,15]]],[5,15,13,15,28,[[195,1,1,15,16],[198,2,2,16,18],[199,6,4,18,22],[203,2,2,22,24],[206,1,1,24,25],[207,2,2,25,27],[208,1,1,27,28]]],[10,2,2,28,30,[[294,2,2,28,30]]],[11,1,1,30,31,[[322,1,1,30,31]]],[12,6,6,31,37,[[342,4,4,31,35],[343,2,2,35,37]]],[15,1,1,37,38,[[421,1,1,37,38]]],[18,6,5,38,43,[[499,1,1,38,39],[545,3,2,39,41],[612,1,1,41,42],[613,1,1,42,43]]],[22,2,2,43,45,[[680,1,1,43,44],[711,1,1,44,45]]],[23,2,2,45,47,[[766,1,1,45,46],[794,1,1,46,47]]],[25,2,2,47,49,[[828,1,1,47,48],[840,1,1,48,49]]],[29,1,1,49,50,[[882,1,1,49,50]]],[32,1,1,50,51,[[899,1,1,50,51]]],[33,1,1,51,52,[[900,1,1,51,52]]],[37,1,1,52,53,[[921,1,1,52,53]]]],[4373,4751,4896,4976,4978,4979,4985,4986,4988,4989,5047,5051,5686,5772,5832,6047,6134,6135,6165,6166,6184,6185,6276,6280,6380,6387,6408,6433,8857,8863,9826,10439,10440,10444,10451,10516,10525,12533,14216,14915,14922,16186,16216,17698,18288,19474,20185,21127,21466,22411,22678,22688,23030]]],["+",[4,4,[[4,1,1,0,1,[[155,1,1,0,1]]],[12,1,1,1,2,[[342,1,1,1,2]]],[18,1,1,2,3,[[545,1,1,2,3]]],[25,1,1,3,4,[[828,1,1,3,4]]]],[4989,10451,14922,21127]]],["Bashan",[56,49,[[3,3,2,0,2,[[137,2,1,0,1],[148,1,1,1,2]]],[4,15,12,2,14,[[153,1,1,2,3],[155,9,6,3,9],[156,2,2,9,11],[181,1,1,11,12],[184,1,1,12,13],[185,1,1,13,14]]],[5,15,13,14,27,[[195,1,1,14,15],[198,2,2,15,17],[199,6,4,17,21],[203,2,2,21,23],[206,1,1,23,24],[207,2,2,24,26],[208,1,1,26,27]]],[10,2,2,27,29,[[294,2,2,27,29]]],[11,1,1,29,30,[[322,1,1,29,30]]],[12,5,5,30,35,[[342,3,3,30,33],[343,2,2,33,35]]],[15,1,1,35,36,[[421,1,1,35,36]]],[18,5,4,36,40,[[499,1,1,36,37],[545,2,1,37,38],[612,1,1,38,39],[613,1,1,39,40]]],[22,2,2,40,42,[[680,1,1,40,41],[711,1,1,41,42]]],[23,2,2,42,44,[[766,1,1,42,43],[794,1,1,43,44]]],[25,1,1,44,45,[[840,1,1,44,45]]],[29,1,1,45,46,[[882,1,1,45,46]]],[32,1,1,46,47,[[899,1,1,46,47]]],[33,1,1,47,48,[[900,1,1,47,48]]],[37,1,1,48,49,[[921,1,1,48,49]]]],[4373,4751,4896,4976,4978,4979,4985,4986,4988,5047,5051,5686,5772,5832,6047,6134,6135,6165,6166,6184,6185,6276,6280,6380,6387,6408,6433,8857,8863,9826,10439,10440,10444,10516,10525,12533,14216,14915,16186,16216,17698,18288,19474,20185,21466,22411,22678,22688,23030]]]]},{"k":"H1317","v":[["shame",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22231]]]]},{"k":"H1318","v":[["treading",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22434]]]]},{"k":"H1319","v":[["*",[24,21,[[8,2,2,0,2,[[239,1,1,0,1],[266,1,1,1,2]]],[9,7,6,2,8,[[267,1,1,2,3],[270,1,1,3,4],[284,5,4,4,8]]],[10,1,1,8,9,[[291,1,1,8,9]]],[12,2,2,9,11,[[347,1,1,9,10],[353,1,1,10,11]]],[18,3,3,11,14,[[517,1,1,11,12],[545,1,1,12,13],[573,1,1,13,14]]],[22,7,5,14,19,[[718,2,1,14,15],[719,1,1,15,16],[730,2,1,16,17],[738,1,1,17,18],[739,1,1,18,19]]],[23,1,1,19,20,[[764,1,1,19,20]]],[33,1,1,20,21,[[900,1,1,20,21]]]],[7314,8018,8042,8130,8497,8498,8504,8509,8759,10668,10843,14534,14911,15467,18429,18478,18703,18827,18844,19437,22699]]],["+",[4,4,[[9,2,2,0,2,[[284,2,2,0,2]]],[10,1,1,2,3,[[291,1,1,2,3]]],[12,1,1,3,4,[[347,1,1,3,4]]]],[8497,8498,8759,10668]]],["Tidings",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8509]]],["forth",[3,3,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[573,1,1,1,2]]],[22,1,1,2,3,[[738,1,1,2,3]]]],[10843,15467,18827]]],["messenger",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7314]]],["preached",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14534]]],["publish",[2,2,[[8,1,1,0,1,[[266,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]]],[8018,8042]]],["published",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14911]]],["tidings",[11,9,[[9,3,3,0,3,[[270,1,1,0,1],[284,2,2,1,3]]],[22,6,4,3,7,[[718,2,1,3,4],[719,1,1,4,5],[730,2,1,5,6],[739,1,1,6,7]]],[23,1,1,7,8,[[764,1,1,7,8]]],[33,1,1,8,9,[[900,1,1,8,9]]]],[8130,8498,8504,18429,18478,18703,18844,19437,22699]]]]},{"k":"H1320","v":[["*",[270,241,[[0,33,31,0,31,[[1,4,3,0,3],[5,5,5,3,8],[6,3,3,8,11],[7,1,1,11,12],[8,6,5,12,17],[16,6,6,17,23],[28,1,1,23,24],[36,1,1,24,25],[39,1,1,25,26],[40,5,5,26,31]]],[1,14,14,31,45,[[53,1,1,31,32],[61,2,2,32,34],[65,3,3,34,37],[70,1,1,37,38],[71,1,1,38,39],[77,1,1,39,40],[78,4,4,40,44],[79,1,1,44,45]]],[2,61,51,45,96,[[93,1,1,45,46],[95,2,2,46,48],[96,8,6,48,54],[97,3,3,54,57],[98,1,1,57,58],[100,2,2,58,60],[101,1,1,60,61],[102,17,14,61,75],[103,1,1,75,76],[104,7,6,76,82],[105,6,5,82,87],[106,5,3,87,90],[107,1,1,90,91],[108,1,1,91,92],[110,1,1,92,93],[111,1,1,93,94],[114,1,1,94,95],[115,2,1,95,96]]],[3,17,14,96,110,[[124,1,1,96,97],[127,8,5,97,102],[128,1,1,102,103],[132,1,1,103,104],[134,2,2,104,106],[135,3,3,106,109],[143,1,1,109,110]]],[4,13,10,110,120,[[157,1,1,110,111],[164,7,4,111,115],[166,1,1,115,116],[168,1,1,116,117],[180,2,2,117,119],[184,1,1,119,120]]],[6,6,5,120,125,[[216,4,3,120,123],[218,1,1,123,124],[219,1,1,124,125]]],[8,4,3,125,128,[[237,3,2,125,127],[252,1,1,127,128]]],[9,3,3,128,131,[[271,1,1,128,129],[285,2,2,129,131]]],[10,4,3,131,134,[[307,2,1,131,132],[309,1,1,132,133],[311,1,1,133,134]]],[11,6,5,134,139,[[316,1,1,134,135],[317,3,2,135,137],[318,1,1,137,138],[321,1,1,138,139]]],[12,1,1,139,140,[[348,1,1,139,140]]],[13,1,1,140,141,[[398,1,1,140,141]]],[15,2,1,141,142,[[417,2,1,141,142]]],[17,18,18,142,160,[[437,1,1,142,143],[439,1,1,143,144],[441,1,1,144,145],[442,1,1,145,146],[445,2,2,146,148],[447,1,1,148,149],[448,1,1,149,150],[449,1,1,150,151],[454,3,3,151,154],[456,1,1,154,155],[466,1,1,155,156],[468,2,2,156,158],[469,1,1,158,159],[476,1,1,159,160]]],[18,16,16,160,176,[[493,1,1,160,161],[504,1,1,161,162],[515,2,2,162,164],[527,1,1,164,165],[533,1,1,165,166],[540,1,1,166,167],[542,1,1,167,168],[555,1,1,168,169],[556,1,1,169,170],[561,1,1,170,171],[579,1,1,171,172],[586,1,1,172,173],[596,1,1,173,174],[613,1,1,174,175],[622,1,1,175,176]]],[19,4,4,176,180,[[631,1,1,176,177],[632,1,1,177,178],[641,1,1,178,179],[650,1,1,179,180]]],[20,5,5,180,185,[[660,1,1,180,181],[662,1,1,181,182],[663,1,1,182,183],[669,1,1,183,184],[670,1,1,184,185]]],[22,17,16,185,201,[[687,1,1,185,186],[688,1,1,186,187],[695,1,1,187,188],[700,1,1,188,189],[709,1,1,189,190],[718,2,2,190,192],[722,2,2,192,194],[727,2,1,194,195],[736,1,1,195,196],[743,1,1,196,197],[744,4,4,197,201]]],[23,10,8,201,209,[[751,1,1,201,202],[755,1,1,202,203],[756,1,1,203,204],[761,1,1,204,205],[763,3,1,205,206],[769,1,1,206,207],[776,1,1,207,208],[789,1,1,208,209]]],[24,1,1,209,210,[[799,1,1,209,210]]],[25,24,21,210,231,[[805,1,1,210,211],[811,1,1,211,212],[812,5,4,212,216],[817,1,1,216,217],[821,1,1,217,218],[822,2,2,218,220],[824,2,1,220,221],[825,1,1,221,222],[833,1,1,222,223],[837,2,1,223,224],[838,2,2,224,226],[840,2,2,226,228],[841,1,1,228,229],[845,2,2,229,231]]],[26,2,2,231,233,[[850,1,1,231,232],[859,1,1,232,233]]],[27,1,1,233,234,[[869,1,1,233,234]]],[28,1,1,234,235,[[877,1,1,234,235]]],[32,1,1,235,236,[[895,1,1,235,236]]],[36,1,1,236,237,[[910,1,1,236,237]]],[37,4,4,237,241,[[912,1,1,237,238],[921,2,2,238,240],[924,1,1,240,241]]]],[51,53,54,140,149,150,154,156,174,175,180,200,209,216,220,221,222,408,410,411,420,421,422,809,1110,1191,1197,1198,1199,1213,1214,1608,1824,1862,1950,1955,1959,2105,2144,2335,2350,2367,2368,2370,2414,2806,2859,2876,2894,2896,2897,2898,2899,2900,2934,2948,2949,2964,3005,3008,3047,3054,3055,3056,3062,3063,3065,3066,3067,3068,3070,3076,3090,3091,3095,3120,3170,3171,3175,3181,3184,3187,3205,3225,3227,3228,3229,3246,3249,3251,3257,3309,3350,3375,3518,3553,3946,4028,4037,4042,4045,4057,4071,4216,4272,4275,4294,4296,4297,4570,5079,5255,5260,5263,5267,5298,5346,5664,5666,5800,6673,6674,6675,6726,6756,7253,7255,7662,8133,8523,8524,9323,9408,9478,9637,9657,9661,9704,9792,10674,11883,12387,12896,12945,12990,13013,13090,13097,13138,13167,13203,13317,13319,13323,13361,13619,13671,13675,13698,13911,14101,14287,14493,14497,14681,14759,14840,14862,15152,15187,15261,15526,15779,16018,16221,16341,16512,16528,16802,17064,17336,17386,17403,17523,17535,17849,17868,17987,18065,18253,18425,18426,18549,18552,18662,18793,18901,18938,18939,18945,18946,19140,19241,19261,19362,19416,19565,19758,20045,20358,20543,20645,20658,20662,20666,20674,20788,20943,20948,20949,21027,21066,21253,21385,21403,21405,21465,21466,21520,21606,21608,21752,22018,22207,22339,22611,22867,22912,23037,23044,23080]]],["+",[25,25,[[0,6,6,0,6,[[1,1,1,0,1],[40,5,5,1,6]]],[1,2,2,6,8,[[77,1,1,6,7],[78,1,1,7,8]]],[2,6,6,8,14,[[96,3,3,8,11],[100,2,2,11,13],[104,1,1,13,14]]],[4,2,2,14,16,[[166,1,1,14,15],[180,1,1,15,16]]],[8,1,1,16,17,[[237,1,1,16,17]]],[17,4,4,17,21,[[447,1,1,17,18],[454,2,2,18,20],[466,1,1,20,21]]],[20,1,1,21,22,[[669,1,1,21,22]]],[22,1,1,22,23,[[736,1,1,22,23]]],[25,2,2,23,25,[[812,1,1,23,24],[837,1,1,24,25]]]],[53,1197,1198,1199,1213,1214,2335,2370,2896,2897,2900,3005,3008,3170,5298,5666,7255,13138,13319,13323,13619,17523,18793,20674,21385]]],["body",[2,2,[[22,1,1,0,1,[[688,1,1,0,1]]],[25,1,1,1,2,[[811,1,1,1,2]]]],[17868,20645]]],["flesh",[238,214,[[0,27,26,0,26,[[1,3,3,0,3],[5,5,5,3,8],[6,3,3,8,11],[7,1,1,11,12],[8,6,5,12,17],[16,6,6,17,23],[28,1,1,23,24],[36,1,1,24,25],[39,1,1,25,26]]],[1,12,12,26,38,[[53,1,1,26,27],[61,2,2,27,29],[65,3,3,29,32],[70,1,1,32,33],[71,1,1,33,34],[78,3,3,34,37],[79,1,1,37,38]]],[2,52,43,38,81,[[93,1,1,38,39],[95,2,2,39,41],[96,4,3,41,44],[97,3,3,44,47],[98,1,1,47,48],[101,1,1,48,49],[102,17,14,49,63],[103,1,1,63,64],[104,6,5,64,69],[105,6,5,69,74],[106,5,3,74,77],[108,1,1,77,78],[110,1,1,78,79],[111,1,1,79,80],[115,2,1,80,81]]],[3,17,14,81,95,[[124,1,1,81,82],[127,8,5,82,87],[128,1,1,87,88],[132,1,1,88,89],[134,2,2,89,91],[135,3,3,91,94],[143,1,1,94,95]]],[4,11,8,95,103,[[157,1,1,95,96],[164,7,4,96,100],[168,1,1,100,101],[180,1,1,101,102],[184,1,1,102,103]]],[6,6,5,103,108,[[216,4,3,103,106],[218,1,1,106,107],[219,1,1,107,108]]],[8,3,3,108,111,[[237,2,2,108,110],[252,1,1,110,111]]],[9,3,3,111,114,[[271,1,1,111,112],[285,2,2,112,114]]],[10,4,3,114,117,[[307,2,1,114,115],[309,1,1,115,116],[311,1,1,116,117]]],[11,6,5,117,122,[[316,1,1,117,118],[317,3,2,118,120],[318,1,1,120,121],[321,1,1,121,122]]],[12,1,1,122,123,[[348,1,1,122,123]]],[13,1,1,123,124,[[398,1,1,123,124]]],[15,2,1,124,125,[[417,2,1,124,125]]],[17,14,14,125,139,[[437,1,1,125,126],[439,1,1,126,127],[441,1,1,127,128],[442,1,1,128,129],[445,2,2,129,131],[448,1,1,131,132],[449,1,1,132,133],[454,1,1,133,134],[456,1,1,134,135],[468,2,2,135,137],[469,1,1,137,138],[476,1,1,138,139]]],[18,15,15,139,154,[[493,1,1,139,140],[504,1,1,140,141],[515,2,2,141,143],[527,1,1,143,144],[533,1,1,144,145],[540,1,1,145,146],[542,1,1,146,147],[555,1,1,147,148],[556,1,1,148,149],[561,1,1,149,150],[586,1,1,150,151],[596,1,1,151,152],[613,1,1,152,153],[622,1,1,153,154]]],[19,4,4,154,158,[[631,1,1,154,155],[632,1,1,155,156],[641,1,1,156,157],[650,1,1,157,158]]],[20,3,3,158,161,[[662,1,1,158,159],[663,1,1,159,160],[670,1,1,160,161]]],[22,15,14,161,175,[[687,1,1,161,162],[695,1,1,162,163],[700,1,1,163,164],[709,1,1,164,165],[718,2,2,165,167],[722,2,2,167,169],[727,2,1,169,170],[743,1,1,170,171],[744,4,4,171,175]]],[23,10,8,175,183,[[751,1,1,175,176],[755,1,1,176,177],[756,1,1,177,178],[761,1,1,178,179],[763,3,1,179,180],[769,1,1,180,181],[776,1,1,181,182],[789,1,1,182,183]]],[24,1,1,183,184,[[799,1,1,183,184]]],[25,21,20,184,204,[[805,1,1,184,185],[812,4,4,185,189],[817,1,1,189,190],[821,1,1,190,191],[822,2,2,191,193],[824,2,1,193,194],[825,1,1,194,195],[833,1,1,195,196],[837,1,1,196,197],[838,2,2,197,199],[840,2,2,199,201],[841,1,1,201,202],[845,2,2,202,204]]],[26,2,2,204,206,[[850,1,1,204,205],[859,1,1,205,206]]],[27,1,1,206,207,[[869,1,1,206,207]]],[28,1,1,207,208,[[877,1,1,207,208]]],[32,1,1,208,209,[[895,1,1,208,209]]],[36,1,1,209,210,[[910,1,1,209,210]]],[37,4,4,210,214,[[912,1,1,210,211],[921,2,2,211,213],[924,1,1,213,214]]]],[51,53,54,140,149,150,154,156,174,175,180,200,209,216,220,221,222,408,410,411,420,421,422,809,1110,1191,1608,1824,1862,1950,1955,1959,2105,2144,2350,2367,2368,2414,2806,2859,2876,2894,2898,2899,2934,2948,2949,2964,3047,3054,3055,3056,3062,3063,3065,3066,3067,3068,3070,3076,3090,3091,3095,3120,3171,3175,3181,3184,3187,3205,3225,3227,3228,3229,3246,3249,3251,3309,3350,3375,3553,3946,4028,4037,4042,4045,4057,4071,4216,4272,4275,4294,4296,4297,4570,5079,5255,5260,5263,5267,5346,5664,5800,6673,6674,6675,6726,6756,7253,7255,7662,8133,8523,8524,9323,9408,9478,9637,9657,9661,9704,9792,10674,11883,12387,12896,12945,12990,13013,13090,13097,13167,13203,13317,13361,13671,13675,13698,13911,14101,14287,14493,14497,14681,14759,14840,14862,15152,15187,15261,15779,16018,16221,16341,16512,16528,16802,17064,17386,17403,17535,17849,17987,18065,18253,18425,18426,18549,18552,18662,18901,18938,18939,18945,18946,19140,19241,19261,19362,19416,19565,19758,20045,20358,20543,20658,20662,20666,20674,20788,20943,20948,20949,21027,21066,21253,21385,21403,21405,21465,21466,21520,21606,21608,21752,22018,22207,22339,22611,22867,22912,23037,23044,23080]]],["kin",[2,2,[[2,2,2,0,2,[[107,1,1,0,1],[114,1,1,1,2]]]],[3257,3518]]],["myself",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17336]]],["skin",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15526]]],["thereof",[1,1,[[2,1,1,0,1,[[96,1,1,0,1]]]],[2898]]]]},{"k":"H1321","v":[["flesh",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[853,1,1,1,2],[856,1,1,2,3]]]],[21769,21849,21938]]]]},{"k":"H1322","v":[["*",[30,29,[[8,2,1,0,1,[[255,2,1,0,1]]],[13,1,1,1,2,[[398,1,1,1,2]]],[14,1,1,2,3,[[411,1,1,2,3]]],[17,1,1,3,4,[[443,1,1,3,4]]],[18,7,7,4,11,[[512,1,1,4,5],[517,1,1,5,6],[521,1,1,6,7],[546,1,1,7,8],[547,1,1,8,9],[586,1,1,9,10],[609,1,1,10,11]]],[22,5,5,11,16,[[708,2,2,11,13],[720,1,1,13,14],[732,1,1,14,15],[739,1,1,15,16]]],[23,6,6,16,22,[[746,1,1,16,17],[747,2,2,17,19],[751,1,1,19,20],[755,1,1,20,21],[764,1,1,21,22]]],[26,2,2,22,24,[[858,2,2,22,24]]],[27,1,1,24,25,[[870,1,1,24,25]]],[32,1,1,25,26,[[893,1,1,25,26]]],[34,1,1,26,27,[[904,1,1,26,27]]],[35,2,2,27,29,[[908,2,2,27,29]]]],[7760,11896,12244,13051,14436,14540,14586,14954,14974,15784,16169,18220,18222,18497,18727,18850,18991,19026,19027,19138,19239,19440,21995,21996,22218,22590,22758,22825,22839]]],["+",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18497]]],["ashamed",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18991]]],["confusion",[7,6,[[8,2,1,0,1,[[255,2,1,0,1]]],[14,1,1,1,2,[[411,1,1,1,2]]],[18,1,1,2,3,[[586,1,1,2,3]]],[23,1,1,3,4,[[751,1,1,3,4]]],[26,2,2,4,6,[[858,2,2,4,6]]]],[7760,12244,15784,19138,21995,21996]]],["shame",[20,20,[[13,1,1,0,1,[[398,1,1,0,1]]],[17,1,1,1,2,[[443,1,1,1,2]]],[18,6,6,2,8,[[512,1,1,2,3],[517,1,1,3,4],[521,1,1,4,5],[546,1,1,5,6],[547,1,1,6,7],[609,1,1,7,8]]],[22,4,4,8,12,[[708,2,2,8,10],[732,1,1,10,11],[739,1,1,11,12]]],[23,3,3,12,15,[[747,2,2,12,14],[764,1,1,14,15]]],[27,1,1,15,16,[[870,1,1,15,16]]],[32,1,1,16,17,[[893,1,1,16,17]]],[34,1,1,17,18,[[904,1,1,17,18]]],[35,2,2,18,20,[[908,2,2,18,20]]]],[11896,13051,14436,14540,14586,14954,14974,16169,18220,18222,18727,18850,19026,19027,19440,22218,22590,22758,22825,22839]]],["thing",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19239]]]]},{"k":"H1323","v":[["*",[587,497,[[0,110,90,0,90,[[4,9,9,0,9],[5,3,3,9,12],[10,9,9,12,21],[16,1,1,21,22],[18,8,7,22,29],[19,2,1,29,30],[23,8,7,30,37],[24,1,1,37,38],[25,2,1,38,39],[26,3,1,39,40],[27,5,5,40,45],[28,8,8,45,53],[29,2,2,53,55],[30,10,7,55,62],[33,14,10,62,72],[35,12,7,72,79],[36,1,1,79,80],[37,2,2,80,82],[40,2,2,82,84],[45,7,5,84,89],[48,1,1,89,90]]],[1,23,22,90,112,[[50,2,2,90,92],[51,9,9,92,101],[52,1,1,101,102],[55,2,2,102,104],[59,1,1,104,105],[69,1,1,105,106],[70,4,4,106,110],[81,1,1,110,111],[83,2,1,111,112]]],[2,23,16,112,128,[[99,1,1,112,113],[100,1,1,113,114],[101,1,1,114,115],[103,1,1,115,116],[107,10,4,116,120],[108,1,1,120,121],[109,2,1,121,122],[110,2,2,122,124],[111,2,2,124,126],[113,1,1,126,127],[115,1,1,127,128]]],[3,26,24,128,152,[[122,1,1,128,129],[131,1,1,129,130],[134,2,2,130,132],[137,3,3,132,135],[141,3,3,135,138],[142,4,3,138,141],[143,5,4,141,145],[146,1,1,145,146],[148,1,1,146,147],[152,5,5,147,152]]],[4,22,19,152,171,[[157,1,1,152,153],[159,2,1,153,154],[164,3,3,154,157],[165,1,1,157,158],[166,1,1,158,159],[168,2,2,159,161],[170,1,1,161,162],[174,3,2,162,164],[175,1,1,164,165],[179,2,1,165,166],[180,4,4,166,170],[184,1,1,170,171]]],[5,16,9,171,180,[[193,1,1,171,172],[201,5,4,172,176],[203,10,4,176,180]]],[6,27,17,180,197,[[211,7,3,180,183],[213,2,1,183,184],[221,7,4,184,188],[222,2,1,188,189],[224,3,3,189,192],[229,1,1,192,193],[231,5,4,193,197]]],[7,11,11,197,208,[[232,3,3,197,200],[233,3,3,200,203],[234,5,5,203,208]]],[8,16,16,208,224,[[236,2,2,208,210],[237,1,1,210,211],[243,1,1,211,212],[249,2,2,212,214],[252,1,1,214,215],[253,5,5,215,220],[260,1,1,220,221],[265,3,3,221,224]]],[9,20,18,224,242,[[267,3,2,224,226],[269,3,3,226,229],[271,1,1,229,230],[272,3,3,230,233],[277,1,1,233,234],[278,1,1,234,235],[279,1,1,235,236],[280,1,1,236,237],[283,1,1,237,238],[285,1,1,238,239],[287,4,3,239,242]]],[10,11,11,242,253,[[293,1,1,242,243],[294,2,2,243,245],[297,1,1,245,246],[299,2,2,246,248],[301,1,1,248,249],[305,2,2,249,251],[306,1,1,251,252],[312,1,1,252,253]]],[11,17,16,253,269,[[320,2,2,253,255],[321,1,1,255,256],[323,1,1,256,257],[326,1,1,257,258],[327,1,1,258,259],[329,1,1,259,260],[330,1,1,260,261],[331,2,1,261,262],[333,1,1,262,263],[334,1,1,263,264],[335,3,3,264,267],[336,2,2,267,269]]],[12,29,22,269,291,[[338,2,1,269,270],[339,6,6,270,276],[340,2,2,276,278],[341,2,2,278,280],[342,1,1,280,281],[344,10,4,281,285],[345,1,1,285,286],[351,1,1,286,287],[352,1,1,287,288],[355,1,1,288,289],[360,1,1,289,290],[362,1,1,290,291]]],[13,27,20,291,311,[[368,1,1,291,292],[374,1,1,292,293],[377,5,3,293,296],[379,5,3,296,299],[386,1,1,299,300],[387,1,1,300,301],[388,3,2,301,303],[390,1,1,303,304],[391,1,1,304,305],[393,1,1,305,306],[394,4,2,306,308],[395,2,2,308,310],[397,1,1,310,311]]],[14,4,3,311,314,[[404,1,1,311,312],[411,3,2,312,314]]],[15,18,14,314,328,[[415,1,1,314,315],[416,1,1,315,316],[417,3,2,316,318],[418,1,1,318,319],[419,1,1,319,320],[422,3,2,320,322],[423,6,5,322,327],[425,2,1,327,328]]],[16,5,3,328,331,[[427,4,2,328,330],[434,1,1,330,331]]],[17,6,6,331,337,[[436,3,3,331,334],[465,1,1,334,335],[477,2,2,335,337]]],[18,12,12,337,349,[[486,1,1,337,338],[494,1,1,338,339],[522,4,4,339,343],[525,1,1,343,344],[574,1,1,344,345],[583,2,2,345,347],[614,1,1,347,348],[621,1,1,348,349]]],[19,2,2,349,351,[[657,1,1,349,350],[658,1,1,350,351]]],[20,1,1,351,352,[[670,1,1,351,352]]],[21,11,11,352,363,[[671,1,1,352,353],[672,2,2,353,355],[673,3,3,355,358],[675,2,2,358,360],[676,1,1,360,361],[677,1,1,361,362],[678,1,1,362,363]]],[22,25,23,363,386,[[679,1,1,363,364],[681,2,2,364,366],[682,1,1,366,367],[688,1,1,367,368],[691,1,1,368,369],[694,2,2,369,371],[700,1,1,371,372],[701,2,2,372,374],[710,1,1,374,375],[712,1,1,375,376],[715,2,1,376,377],[721,2,2,377,379],[725,3,2,379,381],[727,1,1,381,382],[730,1,1,382,383],[734,1,1,383,384],[738,1,1,384,385],[740,1,1,385,386]]],[23,41,39,386,425,[[747,1,1,386,387],[748,2,2,387,389],[749,1,1,389,390],[750,3,3,390,393],[751,1,1,393,394],[752,4,4,394,398],[753,3,3,398,401],[755,1,1,401,402],[758,2,2,402,404],[760,2,2,404,406],[763,1,1,406,407],[773,3,1,407,408],[775,1,1,408,409],[776,1,1,409,410],[779,1,1,410,411],[785,1,1,411,412],[787,1,1,412,413],[790,3,3,413,416],[792,2,2,416,418],[793,3,3,418,421],[794,2,2,421,423],[795,1,1,423,424],[796,1,1,424,425]]],[24,22,19,425,444,[[797,2,2,425,427],[798,12,10,427,437],[799,2,2,437,439],[800,6,5,439,444]]],[25,37,31,444,475,[[814,1,1,444,445],[815,4,4,445,449],[817,17,11,449,460],[823,1,1,460,461],[824,5,5,461,466],[825,2,2,466,468],[827,2,2,468,470],[828,1,1,470,471],[831,1,1,471,472],[833,2,2,472,474],[845,1,1,474,475]]],[26,2,2,475,477,[[860,2,2,475,477]]],[27,4,4,477,481,[[862,2,2,477,479],[865,2,2,479,481]]],[28,2,2,481,483,[[877,1,1,481,482],[878,1,1,482,483]]],[29,1,1,483,484,[[885,1,1,483,484]]],[32,8,7,484,491,[[893,2,2,484,486],[896,4,3,486,489],[897,1,1,489,490],[899,1,1,490,491]]],[35,3,2,491,493,[[908,3,2,491,493]]],[37,4,3,493,496,[[912,2,2,493,495],[919,2,1,495,496]]],[38,1,1,496,497,[[926,1,1,496,497]]]],[109,112,115,118,121,124,127,131,135,138,139,141,277,279,281,283,285,287,289,291,295,414,465,469,471,472,473,487,493,507,594,604,614,615,628,638,639,678,726,773,774,775,779,781,782,801,805,811,813,818,819,823,824,843,851,899,901,904,914,916,923,928,981,983,985,987,988,989,996,997,999,1001,1042,1043,1046,1054,1058,1065,1079,1118,1121,1131,1240,1245,1393,1401,1404,1406,1411,1495,1548,1554,1555,1559,1561,1562,1563,1564,1570,1574,1575,1601,1678,1680,1786,2061,2081,2084,2086,2108,2440,2512,2991,3013,3050,3121,3260,3261,3262,3268,3310,3335,3347,3354,3381,3382,3457,3553,3837,4180,4268,4276,4365,4369,4372,4472,4486,4489,4522,4535,4548,4555,4561,4562,4563,4664,4760,4881,4885,4887,4889,4890,5067,5114,5252,5258,5271,5278,5305,5353,5356,5394,5486,5487,5517,5607,5643,5652,5664,5667,5777,6000,6218,6219,6247,6249,6278,6281,6286,6291,6521,6522,6536,6574,6855,6863,6864,6869,6878,6910,6911,6912,7048,7103,7109,7120,7123,7138,7139,7140,7151,7157,7171,7173,7182,7183,7188,7190,7216,7228,7261,7382,7557,7558,7643,7693,7695,7696,7703,7704,7905,7981,7984,7997,8042,8046,8084,8088,8094,8145,8173,8177,8180,8262,8289,8335,8383,8474,8516,8588,8590,8591,8817,8855,8859,8942,9067,9075,9109,9251,9259,9314,9522,9745,9753,9790,9831,9905,9958,10000,10026,10082,10138,10146,10175,10196,10201,10210,10220,10302,10309,10327,10329,10340,10341,10355,10363,10366,10403,10412,10444,10550,10559,10563,10564,10587,10777,10820,10891,11005,11051,11225,11357,11432,11434,11435,11455,11472,11474,11618,11630,11646,11655,11680,11722,11756,11772,11782,11792,11800,11872,12088,12239,12249,12339,12373,12384,12387,12419,12483,12577,12579,12613,12615,12616,12618,12619,12696,12731,12739,12863,12871,12882,12887,13586,13935,13937,14035,14111,14606,14607,14609,14610,14645,15486,15688,15689,16230,16317,17266,17313,17527,17542,17556,17561,17576,17581,17582,17606,17614,17623,17628,17644,17662,17723,17724,17737,17880,17927,17970,17971,18056,18087,18089,18268,18316,18374,18511,18525,18600,18604,18658,18698,18758,18825,18865,19026,19038,19058,19075,19091,19112,19115,19150,19164,19172,19174,19175,19176,19182,19195,19248,19309,19310,19338,19339,19416,19641,19713,19766,19831,19967,20003,20056,20064,20069,20098,20126,20129,20130,20131,20205,20208,20245,20277,20316,20325,20333,20334,20336,20337,20340,20342,20343,20345,20347,20350,20402,20405,20423,20426,20430,20441,20442,20725,20747,20749,20751,20753,20782,20789,20806,20807,20808,20810,20811,20815,20817,20819,20823,20987,21009,21011,21017,21032,21054,21077,21081,21106,21108,21127,21222,21264,21266,21624,22042,22053,22097,22100,22146,22147,22339,22351,22481,22587,22592,22628,22630,22633,22634,22670,22830,22834,22906,22909,23008,23114]]],["+",[34,33,[[0,9,8,0,8,[[23,2,2,0,2],[26,2,1,2,3],[27,3,3,3,6],[28,1,1,6,7],[35,1,1,7,8]]],[1,2,2,8,10,[[55,1,1,8,9],[83,1,1,9,10]]],[2,1,1,10,11,[[100,1,1,10,11]]],[4,2,2,11,13,[[166,1,1,11,12],[175,1,1,12,13]]],[6,5,5,13,18,[[224,2,2,13,15],[231,3,3,15,18]]],[8,1,1,18,19,[[236,1,1,18,19]]],[12,1,1,19,20,[[339,1,1,19,20]]],[14,2,2,20,22,[[404,1,1,20,21],[411,1,1,21,22]]],[15,3,3,22,25,[[417,1,1,22,23],[419,1,1,23,24],[425,1,1,24,25]]],[17,1,1,25,26,[[465,1,1,25,26]]],[18,1,1,26,27,[[494,1,1,26,27]]],[22,4,4,27,31,[[691,1,1,27,28],[712,1,1,28,29],[721,1,1,29,30],[734,1,1,30,31]]],[23,1,1,31,32,[[794,1,1,31,32]]],[32,1,1,32,33,[[893,1,1,32,33]]]],[594,628,773,774,775,779,824,1042,1680,2512,3013,5305,5517,6910,6911,7109,7120,7123,7228,10309,12088,12239,12387,12483,12696,13586,14111,17927,18316,18525,18758,20205,22587]]],["apple",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20350]]],["branches",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1495]]],["company",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21127]]],["daughter",[276,247,[[0,44,37,0,37,[[10,1,1,0,1],[19,2,1,1,2],[23,5,4,2,6],[24,1,1,6,7],[25,2,1,7,8],[27,1,1,8,9],[28,6,6,9,15],[29,1,1,15,16],[33,7,7,16,23],[35,10,6,23,29],[37,2,2,29,31],[40,2,2,31,33],[45,4,4,33,37]]],[1,13,13,37,50,[[50,2,2,37,39],[51,7,7,39,46],[55,1,1,46,47],[69,1,1,47,48],[70,2,2,48,50]]],[2,17,12,50,62,[[101,1,1,50,51],[107,8,4,51,55],[108,1,1,55,56],[109,2,1,56,57],[110,2,2,57,59],[111,2,2,59,61],[113,1,1,61,62]]],[3,8,8,62,70,[[141,2,2,62,64],[142,2,2,64,66],[143,2,2,66,68],[146,1,1,68,69],[152,1,1,69,70]]],[4,13,11,70,81,[[157,1,1,70,71],[159,2,1,71,72],[164,1,1,72,73],[165,1,1,73,74],[168,2,2,74,76],[170,1,1,76,77],[174,2,2,77,79],[179,2,1,79,80],[180,1,1,80,81]]],[5,2,2,81,83,[[201,2,2,81,83]]],[6,8,7,83,90,[[211,2,2,83,85],[221,4,3,85,88],[229,1,1,88,89],[231,1,1,89,90]]],[7,8,8,90,98,[[233,3,3,90,93],[234,5,5,93,98]]],[8,8,8,98,106,[[249,1,1,98,99],[252,1,1,99,100],[253,5,5,100,105],[260,1,1,105,106]]],[9,14,13,106,119,[[269,3,3,106,109],[272,3,3,109,112],[277,1,1,112,113],[278,1,1,113,114],[280,1,1,114,115],[283,1,1,115,116],[287,4,3,116,119]]],[10,11,11,119,130,[[293,1,1,119,120],[294,2,2,120,122],[297,1,1,122,123],[299,2,2,123,125],[301,1,1,125,126],[305,2,2,126,128],[306,1,1,128,129],[312,1,1,129,130]]],[11,16,15,130,145,[[320,2,2,130,132],[321,1,1,132,133],[323,1,1,133,134],[326,1,1,134,135],[327,1,1,135,136],[330,1,1,136,137],[331,2,1,137,138],[333,1,1,138,139],[334,1,1,139,140],[335,3,3,140,143],[336,2,2,143,145]]],[12,10,9,145,154,[[338,2,1,145,146],[339,3,3,146,149],[340,2,2,149,151],[341,1,1,151,152],[344,1,1,152,153],[352,1,1,153,154]]],[13,14,12,154,166,[[374,1,1,154,155],[377,4,3,155,158],[379,1,1,158,159],[386,1,1,159,160],[387,1,1,160,161],[388,3,2,161,163],[391,1,1,163,164],[393,1,1,164,165],[395,1,1,165,166]]],[15,1,1,166,167,[[418,1,1,166,167]]],[16,5,3,167,170,[[427,4,2,167,169],[434,1,1,169,170]]],[18,5,5,170,175,[[486,1,1,170,171],[522,3,3,171,174],[614,1,1,174,175]]],[21,1,1,175,176,[[677,1,1,175,176]]],[22,13,11,176,187,[[679,1,1,176,177],[688,1,1,177,178],[694,1,1,178,179],[700,1,1,179,180],[701,2,2,180,182],[715,2,1,182,183],[725,3,2,183,185],[730,1,1,185,186],[740,1,1,186,187]]],[23,21,21,187,208,[[748,2,2,187,189],[750,3,3,189,192],[752,4,4,192,196],[753,2,2,196,198],[758,1,1,198,199],[775,1,1,199,200],[790,3,3,200,203],[792,1,1,203,204],[793,1,1,204,205],[794,1,1,205,206],[795,1,1,206,207],[796,1,1,207,208]]],[24,20,18,208,226,[[797,2,2,208,210],[798,11,10,210,220],[799,1,1,220,221],[800,6,5,221,226]]],[25,5,5,226,231,[[815,1,1,226,227],[817,2,2,227,229],[823,1,1,229,230],[845,1,1,230,231]]],[26,2,2,231,233,[[860,2,2,231,233]]],[27,2,2,233,235,[[862,2,2,233,235]]],[32,7,6,235,241,[[893,1,1,235,236],[896,4,3,236,239],[897,1,1,239,240],[899,1,1,240,241]]],[35,3,2,241,243,[[908,3,2,241,243]]],[37,4,3,243,246,[[912,2,2,243,245],[919,2,1,245,246]]],[38,1,1,246,247,[[926,1,1,246,247]]]],[295,507,614,615,638,639,678,726,782,801,805,813,818,819,823,851,981,983,985,987,988,997,999,1042,1043,1054,1058,1065,1079,1121,1131,1240,1245,1401,1404,1406,1411,1548,1554,1555,1559,1561,1562,1563,1564,1575,1678,2061,2084,2108,3050,3260,3261,3262,3268,3310,3335,3347,3354,3381,3382,3457,4486,4489,4535,4548,4562,4563,4664,4887,5067,5114,5258,5278,5353,5356,5394,5486,5487,5607,5667,6218,6219,6521,6522,6863,6864,6869,7048,7103,7151,7157,7171,7173,7182,7183,7188,7190,7558,7643,7693,7695,7696,7703,7704,7905,8084,8088,8094,8173,8177,8180,8262,8289,8383,8474,8588,8590,8591,8817,8855,8859,8942,9067,9075,9109,9251,9259,9314,9522,9745,9753,9790,9831,9905,9958,10026,10082,10138,10146,10175,10196,10201,10210,10220,10302,10327,10341,10355,10363,10366,10403,10559,10820,11357,11432,11434,11435,11455,11618,11630,11646,11655,11722,11756,11792,12419,12731,12739,12863,14035,14607,14609,14610,16230,17628,17662,17880,17970,18056,18087,18089,18374,18600,18604,18698,18865,19038,19058,19091,19112,19115,19164,19172,19174,19175,19176,19182,19310,19713,20056,20064,20069,20098,20131,20208,20245,20277,20316,20325,20333,20334,20336,20337,20340,20342,20343,20345,20347,20350,20402,20423,20426,20430,20441,20442,20751,20806,20807,20987,21624,22042,22053,22097,22100,22592,22628,22630,22633,22634,22670,22830,22834,22906,22909,23008,23114]]],["daughter's",[3,3,[[2,2,2,0,2,[[107,2,2,0,2]]],[4,1,1,2,3,[[174,1,1,2,3]]]],[3261,3268,5487]]],["daughters",[223,199,[[0,55,47,0,47,[[4,9,9,0,9],[5,3,3,9,12],[10,8,8,12,20],[18,8,7,20,27],[23,1,1,27,28],[26,1,1,28,29],[27,1,1,29,30],[28,1,1,30,31],[29,1,1,31,32],[30,10,7,32,39],[33,7,4,39,43],[35,1,1,43,44],[36,1,1,44,45],[45,3,2,45,47]]],[1,8,8,47,55,[[51,2,2,47,49],[52,1,1,49,50],[59,1,1,50,51],[70,2,2,51,53],[81,1,1,53,54],[83,1,1,54,55]]],[2,2,2,55,57,[[99,1,1,55,56],[115,1,1,56,57]]],[3,13,11,57,68,[[134,2,2,57,59],[137,1,1,59,60],[141,1,1,60,61],[142,2,1,61,62],[143,3,2,62,64],[152,4,4,64,68]]],[4,6,6,68,74,[[164,2,2,68,70],[180,3,3,70,73],[184,1,1,73,74]]],[5,4,3,74,77,[[193,1,1,74,75],[203,3,2,75,77]]],[6,7,5,77,82,[[213,2,1,77,78],[221,1,1,78,79],[222,2,1,79,80],[224,1,1,80,81],[231,1,1,81,82]]],[7,3,3,82,85,[[232,3,3,82,85]]],[8,7,7,85,92,[[236,1,1,85,86],[237,1,1,86,87],[243,1,1,87,88],[249,1,1,88,89],[265,3,3,89,92]]],[9,6,5,92,97,[[267,3,2,92,94],[271,1,1,94,95],[279,1,1,95,96],[285,1,1,96,97]]],[11,1,1,97,98,[[329,1,1,97,98]]],[12,6,6,98,104,[[339,1,1,98,99],[341,1,1,99,100],[344,1,1,100,101],[351,1,1,101,102],[360,1,1,102,103],[362,1,1,103,104]]],[13,7,7,104,111,[[368,1,1,104,105],[377,1,1,105,106],[379,1,1,106,107],[390,1,1,107,108],[394,1,1,108,109],[395,1,1,109,110],[397,1,1,110,111]]],[14,2,1,111,112,[[411,2,1,111,112]]],[15,8,7,112,119,[[415,1,1,112,113],[416,1,1,113,114],[417,2,2,114,116],[422,3,2,116,118],[425,1,1,118,119]]],[17,5,5,119,124,[[436,3,3,119,122],[477,2,2,122,124]]],[18,6,6,124,130,[[522,1,1,124,125],[525,1,1,125,126],[574,1,1,126,127],[583,2,2,127,129],[621,1,1,129,130]]],[19,2,2,130,132,[[657,1,1,130,131],[658,1,1,131,132]]],[20,1,1,132,133,[[670,1,1,132,133]]],[21,10,10,133,143,[[671,1,1,133,134],[672,2,2,134,136],[673,3,3,136,139],[675,2,2,139,141],[676,1,1,141,142],[678,1,1,142,143]]],[22,8,8,143,151,[[681,2,2,143,145],[682,1,1,145,146],[694,1,1,146,147],[710,1,1,147,148],[721,1,1,148,149],[727,1,1,149,150],[738,1,1,150,151]]],[23,19,17,151,168,[[747,1,1,151,152],[749,1,1,152,153],[751,1,1,153,154],[753,1,1,154,155],[755,1,1,155,156],[758,1,1,156,157],[760,2,2,157,159],[763,1,1,159,160],[773,3,1,160,161],[776,1,1,161,162],[779,1,1,162,163],[785,1,1,163,164],[787,1,1,164,165],[792,1,1,165,166],[793,2,2,166,168]]],[24,1,1,168,169,[[799,1,1,168,169]]],[25,31,25,169,194,[[814,1,1,169,170],[815,3,3,170,173],[817,15,9,173,182],[824,5,5,182,187],[825,2,2,187,189],[827,2,2,189,191],[831,1,1,191,192],[833,2,2,192,194]]],[27,2,2,194,196,[[865,2,2,194,196]]],[28,2,2,196,198,[[877,1,1,196,197],[878,1,1,197,198]]],[29,1,1,198,199,[[885,1,1,198,199]]]],[109,112,115,118,121,124,127,131,135,138,139,141,277,279,281,283,285,287,289,291,465,469,471,472,473,487,493,604,773,781,811,843,899,901,904,914,916,923,928,981,989,996,1001,1046,1118,1393,1401,1570,1574,1601,1786,2081,2086,2440,2512,2991,3553,4268,4276,4369,4472,4522,4555,4561,4881,4885,4889,4890,5252,5271,5643,5652,5664,5777,6000,6278,6281,6574,6869,6878,6912,7123,7138,7139,7140,7216,7261,7382,7557,7981,7984,7997,8042,8046,8145,8335,8516,10000,10340,10412,10550,10777,11005,11051,11225,11435,11474,11680,11772,11800,11872,12249,12339,12373,12384,12387,12577,12579,12696,12871,12882,12887,13935,13937,14606,14645,15486,15688,15689,16317,17266,17313,17527,17542,17556,17561,17576,17581,17582,17606,17614,17623,17644,17723,17724,17737,17971,18268,18511,18658,18825,19026,19075,19150,19195,19248,19309,19338,19339,19416,19641,19766,19831,19967,20003,20126,20129,20130,20405,20725,20747,20749,20753,20782,20789,20808,20810,20811,20815,20817,20819,20823,21009,21011,21017,21032,21054,21077,21081,21106,21108,21222,21264,21266,22146,22147,22339,22351,22481]]],["first",[3,3,[[2,1,1,0,1,[[103,1,1,0,1]]],[3,2,2,1,3,[[122,1,1,1,2],[131,1,1,2,3]]]],[3121,3837,4180]]],["old",[1,1,[[0,1,1,0,1,[[16,1,1,0,1]]]],[414]]],["towns",[32,13,[[5,10,4,0,4,[[201,3,2,0,2],[203,7,2,2,4]]],[6,7,2,4,6,[[211,5,1,4,5],[221,2,1,5,6]]],[12,12,6,6,12,[[339,1,1,6,7],[342,1,1,7,8],[344,8,2,8,10],[345,1,1,10,11],[355,1,1,11,12]]],[13,3,1,12,13,[[379,3,1,12,13]]]],[6247,6249,6286,6291,6536,6855,10329,10444,10563,10564,10587,10891,11472]]],["villages",[12,9,[[3,3,3,0,3,[[137,2,2,0,2],[148,1,1,2,3]]],[13,3,1,3,4,[[394,3,1,3,4]]],[15,6,5,4,9,[[423,6,5,4,9]]]],[4365,4372,4760,11782,12613,12615,12616,12618,12619]]]]},{"k":"H1324","v":[["*",[13,8,[[10,2,2,0,2,[[297,2,2,0,2]]],[13,3,2,2,4,[[368,2,1,2,3],[370,1,1,3,4]]],[22,1,1,4,5,[[683,1,1,4,5]]],[25,7,3,5,8,[[846,7,3,5,8]]]],[8960,8972,11221,11251,17749,21640,21641,21644]]],["bath",[6,4,[[22,1,1,0,1,[[683,1,1,0,1]]],[25,5,3,1,4,[[846,5,3,1,4]]]],[17749,21640,21641,21644]]],["baths",[7,5,[[10,2,2,0,2,[[297,2,2,0,2]]],[13,3,2,2,4,[[368,2,1,2,3],[370,1,1,3,4]]],[25,2,1,4,5,[[846,2,1,4,5]]]],[8960,8972,11221,11251,21644]]]]},{"k":"H1325","v":[["baths",[2,1,[[14,2,1,0,1,[[409,2,1,0,1]]]],[12195]]]]},{"k":"H1326","v":[["waste",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17745]]]]},{"k":"H1327","v":[["desolate",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17801]]]]},{"k":"H1328","v":[["Bethuel",[10,10,[[0,9,9,0,9,[[21,2,2,0,2],[23,4,4,2,6],[24,1,1,6,7],[27,2,2,7,9]]],[12,1,1,9,10,[[341,1,1,9,10]]]],[569,570,606,615,638,641,678,775,778,10415]]]]},{"k":"H1329","v":[["Bethul",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6325]]]]},{"k":"H1330","v":[["*",[50,50,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,2,2,1,3,[[71,2,2,1,3]]],[2,2,2,3,5,[[110,2,2,3,5]]],[4,4,4,5,9,[[174,3,3,5,8],[184,1,1,8,9]]],[6,2,2,9,11,[[229,1,1,9,10],[231,1,1,10,11]]],[9,2,2,11,13,[[279,2,2,11,13]]],[10,1,1,13,14,[[291,1,1,13,14]]],[11,1,1,14,15,[[331,1,1,14,15]]],[13,1,1,15,16,[[402,1,1,15,16]]],[16,4,4,16,20,[[427,4,4,16,20]]],[17,1,1,20,21,[[466,1,1,20,21]]],[18,3,3,21,24,[[522,1,1,21,22],[555,1,1,22,23],[625,1,1,23,24]]],[22,5,5,24,29,[[701,2,2,24,26],[715,1,1,26,27],[725,1,1,27,28],[740,1,1,28,29]]],[23,8,8,29,37,[[746,1,1,29,30],[758,1,1,30,31],[762,1,1,31,32],[775,3,3,32,35],[790,1,1,35,36],[795,1,1,36,37]]],[24,7,7,37,44,[[797,3,3,37,40],[798,3,3,40,43],[801,1,1,43,44]]],[25,2,2,44,46,[[810,1,1,44,45],[845,1,1,45,46]]],[28,1,1,46,47,[[876,1,1,46,47]]],[29,2,2,47,49,[[883,1,1,47,48],[886,1,1,48,49]]],[37,1,1,49,50,[[919,1,1,49,50]]]],[607,2129,2130,3348,3359,5489,5493,5498,5783,7048,7114,8319,8335,8719,10082,12010,12726,12727,12741,12743,13589,14611,15176,16383,18081,18089,18374,18600,18859,18997,19310,19397,19695,19704,19712,20056,20234,20314,20325,20328,20342,20345,20353,20453,20628,21621,22299,22425,22494,23016]]],["maid",[4,4,[[1,1,1,0,1,[[71,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]],[23,2,2,2,4,[[746,1,1,2,3],[795,1,1,3,4]]]],[2129,13589,18997,20234]]],["maiden",[2,2,[[6,1,1,0,1,[[229,1,1,0,1]]],[13,1,1,1,2,[[402,1,1,1,2]]]],[7048,12010]]],["maidens",[3,3,[[18,2,2,0,2,[[555,1,1,0,1],[625,1,1,1,2]]],[25,1,1,2,3,[[845,1,1,2,3]]]],[15176,16383,21621]]],["maids",[3,3,[[24,1,1,0,1,[[801,1,1,0,1]]],[25,1,1,1,2,[[810,1,1,1,2]]],[37,1,1,2,3,[[919,1,1,2,3]]]],[20453,20628,23016]]],["virgin",[24,24,[[0,1,1,0,1,[[23,1,1,0,1]]],[2,2,2,1,3,[[110,2,2,1,3]]],[4,4,4,3,7,[[174,3,3,3,6],[184,1,1,6,7]]],[9,1,1,7,8,[[279,1,1,7,8]]],[10,1,1,8,9,[[291,1,1,8,9]]],[11,1,1,9,10,[[331,1,1,9,10]]],[22,4,4,10,14,[[701,1,1,10,11],[715,1,1,11,12],[725,1,1,12,13],[740,1,1,13,14]]],[23,6,6,14,20,[[758,1,1,14,15],[762,1,1,15,16],[775,3,3,16,19],[790,1,1,19,20]]],[24,2,2,20,22,[[797,1,1,20,21],[798,1,1,21,22]]],[28,1,1,22,23,[[876,1,1,22,23]]],[29,1,1,23,24,[[883,1,1,23,24]]]],[607,3348,3359,5489,5493,5498,5783,8319,8719,10082,18089,18374,18600,18859,19310,19397,19695,19704,19712,20056,20325,20345,22299,22425]]],["virgins",[14,14,[[1,1,1,0,1,[[71,1,1,0,1]]],[6,1,1,1,2,[[231,1,1,1,2]]],[9,1,1,2,3,[[279,1,1,2,3]]],[16,4,4,3,7,[[427,4,4,3,7]]],[18,1,1,7,8,[[522,1,1,7,8]]],[22,1,1,8,9,[[701,1,1,8,9]]],[24,4,4,9,13,[[797,2,2,9,11],[798,2,2,11,13]]],[29,1,1,13,14,[[886,1,1,13,14]]]],[2130,7114,8335,12726,12727,12741,12743,14611,18081,20314,20328,20342,20353,22494]]]]},{"k":"H1331","v":[["*",[10,9,[[2,1,1,0,1,[[110,1,1,0,1]]],[4,5,4,1,5,[[174,5,4,1,5]]],[6,2,2,5,7,[[221,2,2,5,7]]],[25,2,2,7,9,[[824,2,2,7,9]]]],[3358,5484,5485,5487,5490,6866,6867,21010,21015]]],["maid",[2,2,[[4,2,2,0,2,[[174,2,2,0,2]]]],[5484,5487]]],["virginity",[8,8,[[2,1,1,0,1,[[110,1,1,0,1]]],[4,3,3,1,4,[[174,3,3,1,4]]],[6,2,2,4,6,[[221,2,2,4,6]]],[25,2,2,6,8,[[824,2,2,6,8]]]],[3358,5485,5487,5490,6866,6867,21010,21015]]]]},{"k":"H1332","v":[["Bithiah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10403]]]]},{"k":"H1333","v":[["through",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20802]]]]},{"k":"H1334","v":[["divided",[2,1,[[0,2,1,0,1,[[14,2,1,0,1]]]],[370]]]]},{"k":"H1335","v":[["*",[3,3,[[0,1,1,0,1,[[14,1,1,0,1]]],[23,2,2,1,3,[[778,2,2,1,3]]]],[370,19819,19820]]],["parts",[2,2,[[23,2,2,0,2,[[778,2,2,0,2]]]],[19819,19820]]],["piece",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[370]]]]},{"k":"H1336","v":[["Bether",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17571]]]]},{"k":"H1337","v":[["Bathrabbim",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17631]]]]},{"k":"H1338","v":[["Bithron",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8078]]]]},{"k":"H1339","v":[["Bathsheba",[10,10,[[9,2,2,0,2,[[277,1,1,0,1],[278,1,1,1,2]]],[10,8,8,2,10,[[291,5,5,2,7],[292,3,3,7,10]]]],[8262,8310,8728,8732,8733,8745,8748,8783,8788,8789]]]]},{"k":"H1340","v":[["Bathshua",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10366]]]]},{"k":"H1341","v":[["proud",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17975]]]]},{"k":"H1342","v":[["*",[7,5,[[1,4,2,0,2,[[64,4,2,0,2]]],[17,2,2,2,4,[[443,1,1,2,3],[445,1,1,3,4]]],[25,1,1,4,5,[[848,1,1,4,5]]]],[1921,1941,13040,13102,21684]]],["+",[4,2,[[1,4,2,0,2,[[64,4,2,0,2]]]],[1921,1941]]],["increaseth",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13102]]],["risen",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21684]]],["up",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13040]]]]},{"k":"H1343","v":[["proud",[8,8,[[17,2,2,0,2,[[475,2,2,0,2]]],[18,2,2,2,4,[[571,1,1,2,3],[617,1,1,3,4]]],[19,2,2,4,6,[[642,1,1,4,5],[643,1,1,5,6]]],[22,1,1,6,7,[[680,1,1,6,7]]],[23,1,1,7,8,[[792,1,1,7,8]]]],[13875,13876,15433,16268,16832,16859,17697,20109]]]]},{"k":"H1344","v":[["pride",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16615]]]]},{"k":"H1345","v":[["Geuel",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4090]]]]},{"k":"H1346","v":[["*",[19,19,[[4,2,2,0,2,[[185,2,2,0,2]]],[17,1,1,2,3,[[476,1,1,2,3]]],[18,7,7,3,10,[[487,1,1,3,4],[508,2,2,4,6],[513,1,1,6,7],[523,1,1,7,8],[545,1,1,8,9],[550,1,1,9,10]]],[19,2,2,10,12,[[641,1,1,10,11],[656,1,1,11,12]]],[22,5,5,12,17,[[687,1,1,12,13],[691,2,2,13,15],[694,1,1,15,16],[703,1,1,16,17]]],[23,1,1,17,18,[[792,1,1,17,18]]],[35,1,1,18,19,[[908,1,1,18,19]]]],[5836,5839,13903,14043,14349,14354,14449,14617,14934,15026,16775,17247,17838,17909,17917,17975,18129,20109,22831]]],["excellency",[3,3,[[4,2,2,0,2,[[185,2,2,0,2]]],[18,1,1,2,3,[[545,1,1,2,3]]]],[5836,5839,14934]]],["haughtiness",[2,2,[[22,2,2,0,2,[[691,1,1,0,1],[694,1,1,1,2]]]],[17917,17975]]],["highness",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17909]]],["pride",[10,10,[[17,1,1,0,1,[[476,1,1,0,1]]],[18,3,3,1,4,[[487,1,1,1,2],[513,1,1,2,3],[550,1,1,3,4]]],[19,2,2,4,6,[[641,1,1,4,5],[656,1,1,5,6]]],[22,2,2,6,8,[[687,1,1,6,7],[703,1,1,7,8]]],[23,1,1,8,9,[[792,1,1,8,9]]],[35,1,1,9,10,[[908,1,1,9,10]]]],[13903,14043,14449,15026,16775,17247,17838,18129,20109,22831]]],["proud",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14354]]],["proudly",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14349]]],["swelling",[1,1,[[18,1,1,0,1,[[523,1,1,0,1]]]],[14617]]]]},{"k":"H1347","v":[["*",[49,45,[[1,1,1,0,1,[[64,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[17,4,4,2,6,[[470,1,1,2,3],[472,1,1,3,4],[473,1,1,4,5],[475,1,1,5,6]]],[18,2,2,6,8,[[524,1,1,6,7],[536,1,1,7,8]]],[19,2,2,8,10,[[635,1,1,8,9],[643,1,1,9,10]]],[22,12,11,10,21,[[680,3,3,10,13],[682,1,1,13,14],[691,2,2,14,16],[692,1,1,16,17],[694,2,1,17,18],[701,1,1,18,19],[702,1,1,19,20],[738,1,1,20,21]]],[23,7,5,21,26,[[756,1,1,21,22],[757,2,1,22,23],[792,2,1,23,24],[793,1,1,24,25],[794,1,1,25,26]]],[25,9,9,26,35,[[808,2,2,26,28],[817,2,2,28,30],[825,1,1,30,31],[831,2,2,31,33],[833,1,1,33,34],[834,1,1,34,35]]],[27,2,2,35,37,[[866,1,1,35,36],[868,1,1,36,37]]],[29,2,2,37,39,[[884,1,1,37,38],[886,1,1,38,39]]],[32,1,1,39,40,[[897,1,1,39,40]]],[33,2,1,40,41,[[901,2,1,40,41]]],[35,1,1,41,42,[[907,1,1,41,42]]],[37,3,3,42,45,[[919,1,1,42,43],[920,1,1,43,44],[921,1,1,44,45]]]],[1927,3543,13732,13773,13804,13874,14629,14802,16615,16858,17695,17704,17706,17735,17917,17925,17939,17975,18086,18109,18836,19254,19275,20109,20146,20210,20597,20601,20811,20818,21077,21210,21222,21260,21308,22157,22188,22458,22488,22637,22701,22815,23005,23027,23031]]],["+",[2,2,[[23,2,2,0,2,[[793,1,1,0,1],[794,1,1,1,2]]]],[20146,20210]]],["Pride",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16858]]],["arrogancy",[3,3,[[19,1,1,0,1,[[635,1,1,0,1]]],[22,1,1,1,2,[[691,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[16615,17917,20109]]],["excellency",[10,9,[[1,1,1,0,1,[[64,1,1,0,1]]],[17,1,1,1,2,[[472,1,1,1,2]]],[18,1,1,2,3,[[524,1,1,2,3]]],[22,2,2,3,5,[[691,1,1,3,4],[738,1,1,4,5]]],[25,1,1,5,6,[[825,1,1,5,6]]],[29,2,2,6,8,[[884,1,1,6,7],[886,1,1,7,8]]],[33,2,1,8,9,[[901,2,1,8,9]]]],[1927,13773,14629,17925,18836,21077,22458,22488,22701]]],["excellent",[1,1,[[22,1,1,0,1,[[682,1,1,0,1]]]],[17735]]],["majesty",[7,7,[[17,1,1,0,1,[[475,1,1,0,1]]],[22,4,4,1,5,[[680,3,3,1,4],[702,1,1,4,5]]],[25,1,1,5,6,[[808,1,1,5,6]]],[32,1,1,6,7,[[897,1,1,6,7]]]],[13874,17695,17704,17706,18109,20597,22637]]],["pomp",[5,5,[[22,1,1,0,1,[[692,1,1,0,1]]],[25,4,4,1,5,[[808,1,1,1,2],[831,1,1,2,3],[833,1,1,3,4],[834,1,1,4,5]]]],[17939,20601,21222,21260,21308]]],["pride",[18,16,[[2,1,1,0,1,[[115,1,1,0,1]]],[17,1,1,1,2,[[470,1,1,1,2]]],[18,1,1,2,3,[[536,1,1,2,3]]],[22,3,2,3,5,[[694,2,1,3,4],[701,1,1,4,5]]],[23,3,2,5,7,[[757,2,1,5,6],[792,1,1,6,7]]],[25,3,3,7,10,[[817,2,2,7,9],[831,1,1,9,10]]],[27,2,2,10,12,[[866,1,1,10,11],[868,1,1,11,12]]],[35,1,1,12,13,[[907,1,1,12,13]]],[37,3,3,13,16,[[919,1,1,13,14],[920,1,1,14,15],[921,1,1,15,16]]]],[3543,13732,14802,17975,18086,19275,20109,20811,20818,21210,22157,22188,22815,23005,23027,23031]]],["proud",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13804]]],["swelling",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19254]]]]},{"k":"H1348","v":[["*",[8,8,[[18,3,3,0,3,[[494,1,1,0,1],[566,1,1,1,2],[570,1,1,2,3]]],[22,5,5,3,8,[[687,1,1,3,4],[690,1,1,4,5],[704,1,1,5,6],[706,2,2,6,8]]]],[14113,15335,15427,17847,17905,18140,18165,18167]]],["majesty",[2,2,[[18,1,1,0,1,[[570,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]]],[15427,18140]]],["pride",[2,2,[[22,2,2,0,2,[[706,2,2,0,2]]]],[18165,18167]]],["proudly",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14113]]],["raging",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15335]]],["things",[1,1,[[22,1,1,0,1,[[690,1,1,0,1]]]],[17905]]],["up",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17847]]]]},{"k":"H1349","v":[["proud",[1,1,[[18,1,1,0,1,[[600,1,1,0,1]]]],[16102]]]]},{"k":"H1350","v":[["*",[104,84,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,2,2,1,3,[[55,1,1,1,2],[64,1,1,2,3]]],[2,22,15,3,18,[[114,10,7,3,10],[116,12,8,10,18]]],[3,8,7,18,25,[[121,1,1,18,19],[151,7,6,19,25]]],[4,2,2,25,27,[[171,2,2,25,27]]],[5,3,3,27,30,[[206,3,3,27,30]]],[7,21,10,30,40,[[233,1,1,30,31],[234,7,3,31,34],[235,13,6,34,40]]],[9,1,1,40,41,[[280,1,1,40,41]]],[10,1,1,41,42,[[306,1,1,41,42]]],[17,2,2,42,44,[[438,1,1,42,43],[454,1,1,43,44]]],[18,11,10,44,54,[[496,1,1,44,45],[546,1,1,45,46],[549,1,1,46,47],[551,1,1,47,48],[554,1,1,48,49],[555,1,1,49,50],[580,1,1,50,51],[583,1,1,51,52],[584,2,1,52,53],[596,1,1,53,54]]],[19,1,1,54,55,[[650,1,1,54,55]]],[22,24,24,55,79,[[713,1,1,55,56],[719,1,1,56,57],[721,2,2,57,59],[722,4,4,59,63],[725,1,1,63,64],[726,2,2,64,66],[727,2,2,66,68],[729,1,1,68,69],[730,2,2,69,71],[732,2,2,71,73],[737,1,1,73,74],[738,1,1,74,75],[740,1,1,75,76],[741,3,3,76,79]]],[23,2,2,79,81,[[775,1,1,79,80],[794,1,1,80,81]]],[24,1,1,81,82,[[799,1,1,81,82]]],[27,1,1,82,83,[[874,1,1,82,83]]],[32,1,1,83,84,[[896,1,1,83,84]]]],[1467,1661,1933,3494,3495,3499,3502,3517,3518,3523,3583,3585,3589,3590,3597,3598,3601,3603,3800,4857,4864,4866,4869,4870,4872,5412,5418,6375,6377,6381,7169,7181,7184,7185,7191,7193,7194,7196,7198,7204,8367,9294,12909,13322,14182,14953,15014,15050,15108,15148,15553,15661,15701,16052,17055,18329,18465,18506,18519,18539,18555,18556,18557,18603,18631,18634,18643,18662,18683,18699,18705,18728,18731,18820,18837,18866,18870,18875,18882,19702,20200,20412,22280,22630]]],["+",[13,10,[[2,10,7,0,7,[[114,2,2,0,2],[116,8,5,2,7]]],[3,1,1,7,8,[[151,1,1,7,8]]],[5,1,1,8,9,[[206,1,1,8,9]]],[7,1,1,9,10,[[233,1,1,9,10]]]],[3494,3495,3583,3585,3589,3590,3601,4857,6375,7169]]],["Redeemer",[8,8,[[22,7,7,0,7,[[726,1,1,0,1],[727,2,2,1,3],[732,2,2,3,5],[737,1,1,5,6],[738,1,1,6,7]]],[23,1,1,7,8,[[794,1,1,7,8]]]],[18631,18643,18662,18728,18731,18820,18837,20200]]],["avenger",[4,4,[[4,2,2,0,2,[[171,2,2,0,2]]],[5,2,2,2,4,[[206,2,2,2,4]]]],[5412,5418,6377,6381]]],["deliver",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16052]]],["himself",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3518]]],["kinsfolks",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9294]]],["kinsman",[12,9,[[3,1,1,0,1,[[121,1,1,0,1]]],[7,11,8,1,9,[[234,6,3,1,4],[235,5,5,4,9]]]],[3800,7181,7184,7185,7191,7193,7196,7198,7204]]],["part",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7185]]],["purchase",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3502]]],["ransomed",[2,2,[[22,1,1,0,1,[[729,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[18683,19702]]],["redeem",[17,10,[[1,1,1,0,1,[[55,1,1,0,1]]],[2,4,3,1,4,[[114,4,3,1,4]]],[7,8,2,4,6,[[235,8,2,4,6]]],[18,2,2,6,8,[[546,1,1,6,7],[549,1,1,7,8]]],[27,1,1,8,9,[[874,1,1,8,9]]],[32,1,1,9,10,[[896,1,1,9,10]]]],[1661,3494,3517,3518,7194,7196,14953,15014,22280,22630]]],["redeemed",[24,23,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[2,6,6,2,8,[[114,2,2,2,4],[116,4,4,4,8]]],[18,5,4,8,12,[[551,1,1,8,9],[554,1,1,9,10],[583,1,1,10,11],[584,2,1,11,12]]],[22,10,10,12,22,[[713,1,1,12,13],[721,1,1,13,14],[722,2,2,14,16],[726,1,1,16,17],[730,2,2,17,19],[740,1,1,19,20],[741,2,2,20,22]]],[24,1,1,22,23,[[799,1,1,22,23]]]],[1467,1933,3499,3523,3590,3597,3598,3603,15050,15108,15661,15701,18329,18506,18555,18556,18634,18699,18705,18866,18870,18875,20412]]],["redeemer",[10,10,[[17,1,1,0,1,[[454,1,1,0,1]]],[18,2,2,1,3,[[496,1,1,1,2],[555,1,1,2,3]]],[19,1,1,3,4,[[650,1,1,3,4]]],[22,6,6,4,10,[[719,1,1,4,5],[721,1,1,5,6],[722,2,2,6,8],[725,1,1,8,9],[741,1,1,9,10]]]],[13322,14182,15148,17055,18465,18519,18539,18557,18603,18882]]],["redeemeth",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15553]]],["revenger",[6,5,[[3,6,5,0,5,[[151,6,5,0,5]]]],[4864,4866,4869,4870,4872]]],["revengers",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8367]]],["stain",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12909]]]]},{"k":"H1351","v":[["*",[11,9,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]],[22,2,2,2,4,[[737,1,1,2,3],[741,1,1,3,4]]],[24,1,1,4,5,[[800,1,1,4,5]]],[26,2,1,5,6,[[850,2,1,5,6]]],[35,1,1,6,7,[[908,1,1,6,7]]],[38,3,2,7,9,[[925,3,2,7,9]]]],[12089,12484,18803,18869,20434,21745,22821,23096,23101]]],["defiled",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18803]]],["himself",[2,1,[[26,2,1,0,1,[[850,2,1,0,1]]]],[21745]]],["polluted",[6,5,[[15,1,1,0,1,[[419,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]],[35,1,1,2,3,[[908,1,1,2,3]]],[38,3,2,3,5,[[925,3,2,3,5]]]],[12484,20434,22821,23096,23101]]],["put",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12089]]],["stain",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18869]]]]},{"k":"H1352","v":[["defiled",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12700]]]]},{"k":"H1353","v":[["*",[14,13,[[2,9,8,0,8,[[114,9,8,0,8]]],[7,2,2,8,10,[[235,2,2,8,10]]],[23,2,2,10,12,[[776,2,2,10,12]]],[25,1,1,12,13,[[812,1,1,12,13]]]],[3493,3495,3498,3500,3501,3517,3520,3521,7196,7197,19738,19739,20670]]],["+",[3,2,[[2,3,2,0,2,[[114,3,2,0,2]]]],[3498,3501]]],["again",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3517]]],["kindred",[1,1,[[25,1,1,0,1,[[812,1,1,0,1]]]],[20670]]],["redeem",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3495]]],["redeemed",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3500]]],["redeeming",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7197]]],["redemption",[5,5,[[2,3,3,0,3,[[114,3,3,0,3]]],[23,2,2,3,5,[[776,2,2,3,5]]]],[3493,3520,3521,19738,19739]]],["right",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7196]]]]},{"k":"H1354","v":[["*",[13,11,[[2,1,1,0,1,[[103,1,1,0,1]]],[10,1,1,1,2,[[297,1,1,1,2]]],[17,3,2,2,4,[[448,2,1,2,3],[450,1,1,3,4]]],[18,1,1,4,5,[[606,1,1,4,5]]],[25,7,6,5,11,[[802,2,1,5,6],[811,1,1,6,7],[817,3,3,7,10],[844,1,1,10,11]]]],[3120,8967,13165,13229,16135,20482,20645,20786,20793,20801,21585]]],["+",[1,1,[[2,1,1,0,1,[[103,1,1,0,1]]]],[3120]]],["back",[1,1,[[18,1,1,0,1,[[606,1,1,0,1]]]],[16135]]],["backs",[1,1,[[25,1,1,0,1,[[811,1,1,0,1]]]],[20645]]],["bodies",[2,1,[[17,2,1,0,1,[[448,2,1,0,1]]]],[13165]]],["bosses",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13229]]],["naves",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8967]]],["place",[4,4,[[25,4,4,0,4,[[817,3,3,0,3],[844,1,1,3,4]]]],[20786,20793,20801,21585]]],["rings",[2,1,[[25,2,1,0,1,[[802,2,1,0,1]]]],[20482]]]]},{"k":"H1355","v":[["back",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21939]]]]},{"k":"H1356","v":[["*",[4,3,[[10,1,1,0,1,[[296,1,1,0,1]]],[11,2,1,1,2,[[315,2,1,1,2]]],[23,1,1,2,3,[[758,1,1,2,3]]]],[8905,9592,19296]]],["+",[2,1,[[11,2,1,0,1,[[315,2,1,0,1]]]],[9592]]],["beams",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8905]]],["pits",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19296]]]]},{"k":"H1357","v":[["locusts",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18283]]]]},{"k":"H1358","v":[["den",[10,8,[[26,10,8,0,8,[[855,10,8,0,8]]]],[21912,21917,21921,21922,21924,21925,21928,21929]]]]},{"k":"H1359","v":[["Gob",[2,2,[[9,2,2,0,2,[[287,2,2,0,2]]]],[8598,8599]]]]},{"k":"H1360","v":[["*",[2,2,[[22,1,1,0,1,[[708,1,1,0,1]]],[25,1,1,1,2,[[848,1,1,1,2]]]],[18231,21690]]],["+",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18231]]],["marishes",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21690]]]]},{"k":"H1361","v":[["*",[34,33,[[8,1,1,0,1,[[245,1,1,0,1]]],[13,4,4,1,5,[[383,1,1,1,2],[392,1,1,2,3],[398,1,1,3,4],[399,1,1,4,5]]],[17,4,4,5,9,[[440,1,1,5,6],[470,1,1,6,7],[471,1,1,7,8],[474,1,1,8,9]]],[18,3,3,9,12,[[580,1,1,9,10],[590,1,1,10,11],[608,1,1,11,12]]],[19,2,2,12,14,[[644,1,1,12,13],[645,1,1,13,14]]],[22,6,5,14,19,[[681,1,1,14,15],[683,1,1,15,16],[685,1,1,16,17],[730,1,1,17,18],[733,2,1,18,19]]],[23,2,2,19,21,[[757,1,1,19,20],[793,1,1,20,21]]],[25,10,10,21,31,[[817,1,1,21,22],[818,1,1,22,23],[820,1,1,23,24],[822,1,1,24,25],[829,3,3,25,28],[832,3,3,28,31]]],[30,1,1,31,32,[[888,1,1,31,32]]],[35,1,1,32,33,[[908,1,1,32,33]]]],[7441,11529,11748,11900,11922,12958,13725,13743,13861,15560,15818,16149,16892,16913,17723,17755,17793,18709,18749,19281,20143,20812,20849,20892,20970,21159,21162,21174,21235,21240,21244,22514,22831]]],["+",[3,3,[[13,1,1,0,1,[[399,1,1,0,1]]],[22,2,2,1,3,[[730,1,1,1,2],[733,1,1,2,3]]]],[11922,18709,18749]]],["exalt",[2,2,[[25,1,1,0,1,[[822,1,1,0,1]]],[30,1,1,1,2,[[888,1,1,1,2]]]],[20970,22514]]],["exalted",[5,5,[[17,1,1,0,1,[[471,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]],[25,3,3,2,5,[[818,1,1,2,3],[820,1,1,3,4],[832,1,1,4,5]]]],[13743,17755,20849,20892,21235]]],["exalteth",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16892]]],["haughty",[5,5,[[18,1,1,0,1,[[608,1,1,0,1]]],[19,1,1,1,2,[[645,1,1,1,2]]],[22,1,1,2,3,[[681,1,1,2,3]]],[25,1,1,3,4,[[817,1,1,3,4]]],[35,1,1,4,5,[[908,1,1,4,5]]]],[16149,16913,17723,20812,22831]]],["height",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17793]]],["high",[3,3,[[18,2,2,0,2,[[580,1,1,0,1],[590,1,1,1,2]]],[23,1,1,2,3,[[793,1,1,2,3]]]],[15560,15818,20143]]],["higher",[3,3,[[8,1,1,0,1,[[245,1,1,0,1]]],[17,1,1,1,2,[[470,1,1,1,2]]],[22,1,1,2,3,[[733,1,1,2,3]]]],[7441,13725,18749]]],["proud",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19281]]],["themselves",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21244]]],["up",[8,8,[[13,3,3,0,3,[[383,1,1,0,1],[392,1,1,1,2],[398,1,1,2,3]]],[17,1,1,3,4,[[474,1,1,3,4]]],[25,4,4,4,8,[[829,3,3,4,7],[832,1,1,7,8]]]],[11529,11748,11900,13861,21159,21162,21174,21240]]],["upward",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12958]]]]},{"k":"H1362","v":[["*",[4,4,[[18,1,1,0,1,[[578,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]],[20,1,1,2,3,[[665,1,1,2,3]]],[25,1,1,3,4,[[832,1,1,3,4]]]],[15518,16845,17437,21233]]],["+",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17437]]],["high",[2,2,[[18,1,1,0,1,[[578,1,1,0,1]]],[25,1,1,1,2,[[832,1,1,1,2]]]],[15518,21233]]],["proud",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16845]]]]},{"k":"H1363","v":[["*",[17,16,[[8,1,1,0,1,[[252,1,1,0,1]]],[13,2,2,1,3,[[369,1,1,1,2],[398,1,1,2,3]]],[17,3,3,3,6,[[446,1,1,3,4],[457,1,1,4,5],[475,1,1,5,6]]],[18,1,1,6,7,[[487,1,1,6,7]]],[19,1,1,7,8,[[643,1,1,7,8]]],[23,1,1,8,9,[[792,1,1,8,9]]],[25,6,6,9,15,[[802,1,1,9,10],[820,1,1,10,11],[832,2,2,11,13],[841,1,1,13,14],[842,1,1,14,15]]],[29,2,1,15,16,[[880,2,1,15,16]]]],[7622,11233,11901,13116,13401,13874,14045,16858,20109,20482,20892,21240,21244,21519,21534,22388]]],["excellency",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13874]]],["haughty",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16858]]],["height",[9,8,[[8,1,1,0,1,[[252,1,1,0,1]]],[13,1,1,1,2,[[369,1,1,1,2]]],[17,1,1,2,3,[[457,1,1,2,3]]],[25,4,4,3,7,[[820,1,1,3,4],[832,2,2,4,6],[842,1,1,6,7]]],[29,2,1,7,8,[[880,2,1,7,8]]]],[7622,11233,13401,20892,21240,21244,21534,22388]]],["high",[3,3,[[17,1,1,0,1,[[446,1,1,0,1]]],[25,2,2,1,3,[[802,1,1,1,2],[841,1,1,2,3]]]],[13116,20482,21519]]],["loftiness",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20109]]],["pride",[2,2,[[13,1,1,0,1,[[398,1,1,0,1]]],[18,1,1,1,2,[[487,1,1,1,2]]]],[11901,14045]]]]},{"k":"H1364","v":[["*",[37,32,[[0,1,1,0,1,[[6,1,1,0,1]]],[4,2,2,1,3,[[155,1,1,1,2],[180,1,1,2,3]]],[8,4,3,3,6,[[237,2,1,3,4],[244,1,1,4,5],[251,1,1,5,6]]],[10,1,1,6,7,[[304,1,1,6,7]]],[11,1,1,7,8,[[329,1,1,7,8]]],[16,2,2,8,10,[[430,1,1,8,9],[432,1,1,9,10]]],[17,1,1,10,11,[[476,1,1,10,11]]],[18,2,2,11,13,[[581,1,1,11,12],[615,1,1,12,13]]],[20,4,2,13,15,[[663,3,1,13,14],[670,1,1,14,15]]],[22,6,6,15,21,[[680,1,1,15,16],[683,1,1,16,17],[688,1,1,17,18],[708,1,1,18,19],[718,1,1,19,20],[735,1,1,20,21]]],[23,4,4,21,25,[[746,1,1,21,22],[747,1,1,22,23],[761,1,1,23,24],[795,1,1,24,25]]],[25,5,5,25,30,[[818,2,2,25,27],[822,1,1,27,28],[841,1,1,28,29],[842,1,1,29,30]]],[26,3,1,30,31,[[857,3,1,30,31]]],[35,1,1,31,32,[[906,1,1,31,32]]]],[178,4980,5663,7243,7393,7602,9241,9993,12793,12816,13922,15589,16237,17405,17528,17700,17754,17883,18242,18429,18772,18985,19008,19359,20270,20847,20849,20970,21479,21548,21964,22803]]],["+",[3,2,[[8,2,1,0,1,[[237,2,1,0,1]]],[20,1,1,1,2,[[670,1,1,1,2]]]],[7243,17528]]],["haughty",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17883]]],["height",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7602]]],["high",[23,23,[[0,1,1,0,1,[[6,1,1,0,1]]],[4,2,2,1,3,[[155,1,1,1,2],[180,1,1,2,3]]],[10,1,1,3,4,[[304,1,1,3,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[16,2,2,5,7,[[430,1,1,5,6],[432,1,1,6,7]]],[17,1,1,7,8,[[476,1,1,7,8]]],[18,1,1,8,9,[[581,1,1,8,9]]],[22,3,3,9,12,[[680,1,1,9,10],[708,1,1,10,11],[718,1,1,11,12]]],[23,4,4,12,16,[[746,1,1,12,13],[747,1,1,13,14],[761,1,1,14,15],[795,1,1,15,16]]],[25,5,5,16,21,[[818,2,2,16,18],[822,1,1,18,19],[841,1,1,19,20],[842,1,1,20,21]]],[26,1,1,21,22,[[857,1,1,21,22]]],[35,1,1,22,23,[[906,1,1,22,23]]]],[178,4980,5663,9241,9993,12793,12816,13922,15589,17700,18242,18429,18985,19008,19359,20270,20847,20849,20970,21479,21548,21964,22803]]],["higher",[5,3,[[8,1,1,0,1,[[244,1,1,0,1]]],[20,2,1,1,2,[[663,2,1,1,2]]],[26,2,1,2,3,[[857,2,1,2,3]]]],[7393,17405,21964]]],["highest",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17405]]],["lofty",[2,2,[[22,2,2,0,2,[[683,1,1,0,1],[735,1,1,1,2]]]],[17754,18772]]],["proud",[1,1,[[18,1,1,0,1,[[615,1,1,0,1]]]],[16237]]]]},{"k":"H1365","v":[["*",[2,2,[[22,2,2,0,2,[[680,2,2,0,2]]]],[17696,17702]]],["loftiness",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17702]]],["lofty",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17696]]]]},{"k":"H1366","v":[["*",[240,196,[[0,3,3,0,3,[[9,1,1,0,1],[22,1,1,1,2],[46,1,1,2,3]]],[1,7,7,3,10,[[57,1,1,3,4],[59,3,3,4,7],[62,1,1,7,8],[72,1,1,8,9],[83,1,1,9,10]]],[3,29,23,10,33,[[136,4,4,10,14],[137,6,5,14,19],[138,2,1,19,20],[149,1,1,20,21],[150,14,10,21,31],[151,2,2,31,33]]],[4,14,13,33,46,[[154,2,2,33,35],[155,4,3,35,38],[163,1,1,38,39],[164,1,1,39,40],[168,1,1,40,41],[171,3,3,41,44],[179,1,1,44,45],[180,1,1,45,46]]],[5,83,59,46,105,[[187,1,1,46,47],[198,4,3,47,50],[199,11,10,50,60],[201,23,13,60,73],[202,8,5,73,78],[203,6,4,78,82],[204,13,8,82,90],[205,15,13,90,103],[208,1,1,103,104],[210,1,1,104,105]]],[6,10,7,105,112,[[211,4,2,105,107],[212,1,1,107,108],[221,4,3,108,111],[229,1,1,111,112]]],[8,10,10,112,122,[[240,1,1,112,113],[241,2,2,113,115],[242,2,2,115,117],[245,1,1,117,118],[246,2,2,118,120],[248,1,1,120,121],[262,1,1,121,122]]],[9,1,1,122,123,[[287,1,1,122,123]]],[10,2,2,123,125,[[291,1,1,123,124],[294,1,1,124,125]]],[11,5,5,125,130,[[315,1,1,125,126],[322,1,1,126,127],[326,1,1,127,128],[327,1,1,128,129],[330,1,1,129,130]]],[12,4,4,130,134,[[341,1,1,130,131],[343,2,2,131,133],[358,1,1,133,134]]],[13,2,2,134,136,[[375,1,1,134,135],[377,1,1,135,136]]],[17,1,1,136,137,[[473,1,1,136,137]]],[18,5,5,137,142,[[555,1,1,137,138],[581,1,1,138,139],[582,2,2,139,141],[624,1,1,141,142]]],[19,3,3,142,145,[[642,1,1,142,143],[649,1,1,143,144],[650,1,1,144,145]]],[22,4,4,145,149,[[693,1,1,145,146],[697,1,1,146,147],[732,1,1,147,148],[738,1,1,148,149]]],[23,4,4,149,153,[[749,1,1,149,150],[759,1,1,150,151],[761,1,1,151,152],[775,1,1,152,153]]],[25,43,34,153,187,[[812,2,2,153,155],[828,1,1,155,156],[830,1,1,156,157],[841,2,1,157,158],[844,4,4,158,162],[846,3,2,162,164],[848,10,6,164,170],[849,20,17,170,187]]],[27,1,1,187,188,[[866,1,1,187,188]]],[28,1,1,188,189,[[878,1,1,188,189]]],[29,3,2,189,191,[[879,1,1,189,190],[884,2,1,190,191]]],[30,1,1,191,192,[[888,1,1,191,192]]],[32,1,1,192,193,[[897,1,1,192,193]]],[35,1,1,193,194,[[907,1,1,193,194]]],[38,2,2,194,196,[[925,2,2,194,196]]]],[253,588,1441,1712,1781,1791,1796,1874,2175,2520,4327,4328,4332,4334,4353,4355,4362,4363,4364,4411,4804,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4871,4872,4942,4956,4989,4991,4992,5232,5260,5346,5409,5414,5420,5602,5651,5855,6132,6134,6135,6157,6158,6164,6165,6170,6177,6179,6180,6181,6184,6203,6204,6206,6207,6208,6209,6210,6211,6212,6213,6214,6223,6249,6267,6268,6270,6271,6273,6282,6283,6284,6285,6298,6304,6305,6306,6307,6308,6309,6312,6331,6332,6333,6335,6339,6343,6346,6350,6354,6355,6362,6367,6368,6451,6506,6527,6545,6554,6847,6849,6851,7053,7325,7340,7343,7365,7366,7420,7448,7452,7503,7931,8585,8720,8865,9597,9825,9921,9941,10032,10395,10508,10520,10946,11390,11427,13813,15167,15580,15637,15639,16365,16832,17043,17054,17968,18023,18735,18839,19080,19328,19360,19708,20665,20666,21125,21193,21489,21584,21585,21589,21592,21631,21637,21692,21694,21695,21696,21697,21699,21703,21704,21705,21706,21707,21708,21709,21710,21714,21715,21723,21724,21726,21727,21728,21729,21730,22162,22349,22377,22452,22517,22639,22813,23093,23094]]],["+",[5,5,[[3,1,1,0,1,[[137,1,1,0,1]]],[25,3,3,1,4,[[846,1,1,1,2],[848,2,2,2,4]]],[29,1,1,4,5,[[884,1,1,4,5]]]],[4353,21637,21697,21699,22452]]],["border",[134,109,[[0,1,1,0,1,[[9,1,1,0,1]]],[3,22,19,1,20,[[136,2,2,1,3],[137,4,4,3,7],[138,1,1,7,8],[149,1,1,8,9],[150,13,10,9,19],[151,1,1,19,20]]],[4,3,2,20,22,[[155,2,1,20,21],[164,1,1,21,22]]],[5,54,40,22,62,[[198,3,2,22,24],[199,6,5,24,29],[201,18,11,29,40],[202,5,3,40,43],[203,3,3,43,46],[204,9,6,46,52],[205,8,8,52,60],[208,1,1,60,61],[210,1,1,61,62]]],[6,3,2,62,64,[[212,1,1,62,63],[221,2,1,63,64]]],[8,3,3,64,67,[[241,1,1,64,65],[245,1,1,65,66],[248,1,1,66,67]]],[10,1,1,67,68,[[294,1,1,67,68]]],[11,1,1,68,69,[[315,1,1,68,69]]],[13,1,1,69,70,[[375,1,1,69,70]]],[18,1,1,70,71,[[555,1,1,70,71]]],[19,1,1,71,72,[[642,1,1,71,72]]],[22,1,1,72,73,[[697,1,1,72,73]]],[23,1,1,73,74,[[775,1,1,73,74]]],[25,34,28,74,102,[[812,2,2,74,76],[830,1,1,76,77],[844,3,3,77,80],[846,1,1,80,81],[848,7,4,81,85],[849,20,17,85,102]]],[28,1,1,102,103,[[878,1,1,102,103]]],[29,2,2,103,105,[[879,1,1,103,104],[884,1,1,104,105]]],[30,1,1,105,106,[[888,1,1,105,106]]],[35,1,1,106,107,[[907,1,1,106,107]]],[38,2,2,107,109,[[925,2,2,107,109]]]],[253,4327,4332,4353,4355,4363,4364,4411,4804,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4871,4991,5260,6132,6135,6164,6165,6177,6180,6181,6203,6204,6207,6208,6209,6210,6211,6212,6213,6214,6249,6270,6271,6273,6282,6283,6285,6305,6306,6307,6308,6309,6312,6331,6332,6333,6335,6339,6343,6346,6367,6451,6506,6554,6847,7343,7420,7503,8865,9597,11390,15167,16832,18023,19708,20665,20666,21193,21585,21589,21592,21637,21692,21694,21695,21696,21703,21704,21705,21706,21707,21708,21709,21710,21714,21715,21723,21724,21726,21727,21728,21729,21730,22349,22377,22452,22517,22813,23093,23094]]],["borders",[20,20,[[0,2,2,0,2,[[22,1,1,0,1],[46,1,1,1,2]]],[1,2,2,2,4,[[57,1,1,2,3],[83,1,1,3,4]]],[3,3,3,4,7,[[136,1,1,4,5],[137,1,1,5,6],[151,1,1,6,7]]],[5,3,3,7,10,[[199,2,2,7,9],[202,1,1,9,10]]],[11,1,1,10,11,[[330,1,1,10,11]]],[18,1,1,11,12,[[624,1,1,11,12]]],[22,3,3,12,15,[[693,1,1,12,13],[732,1,1,13,14],[738,1,1,14,15]]],[23,2,2,15,17,[[759,1,1,15,16],[761,1,1,16,17]]],[25,2,2,17,19,[[828,1,1,17,18],[846,1,1,18,19]]],[32,1,1,19,20,[[897,1,1,19,20]]]],[588,1441,1712,2520,4328,4362,4872,6157,6158,6267,10032,16365,17968,18735,18839,19328,19360,21125,21631,22639]]],["bound",[4,4,[[17,1,1,0,1,[[473,1,1,0,1]]],[18,1,1,1,2,[[581,1,1,1,2]]],[23,1,1,2,3,[[749,1,1,2,3]]],[27,1,1,3,4,[[866,1,1,3,4]]]],[13813,15580,19080,22162]]],["bounds",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2175]]],["coast",[46,39,[[1,1,1,0,1,[[59,1,1,0,1]]],[3,3,3,1,4,[[136,1,1,1,2],[138,1,1,2,3],[150,1,1,3,4]]],[4,6,6,4,10,[[154,2,2,4,6],[155,1,1,6,7],[163,1,1,7,8],[168,1,1,8,9],[171,1,1,9,10]]],[5,25,20,10,30,[[187,1,1,10,11],[198,1,1,11,12],[199,3,3,12,15],[201,5,3,15,18],[202,2,1,18,19],[203,3,2,19,21],[204,3,3,21,24],[205,7,6,24,30]]],[6,5,3,30,33,[[211,4,2,30,32],[221,1,1,32,33]]],[8,3,3,33,36,[[241,1,1,33,34],[242,1,1,34,35],[262,1,1,35,36]]],[11,1,1,36,37,[[326,1,1,36,37]]],[12,1,1,37,38,[[341,1,1,37,38]]],[25,1,1,38,39,[[848,1,1,38,39]]]],[1781,4334,4411,4827,4942,4956,4992,5232,5346,5414,5855,6134,6170,6179,6184,6206,6214,6223,6268,6282,6284,6298,6304,6312,6343,6350,6354,6355,6362,6368,6527,6545,6849,7340,7365,7931,9921,10395,21695]]],["coasts",[22,22,[[1,2,2,0,2,[[59,2,2,0,2]]],[4,3,3,2,5,[[155,1,1,2,3],[171,1,1,3,4],[180,1,1,4,5]]],[5,1,1,5,6,[[204,1,1,5,6]]],[6,2,2,6,8,[[221,1,1,6,7],[229,1,1,7,8]]],[8,4,4,8,12,[[240,1,1,8,9],[242,1,1,9,10],[246,2,2,10,12]]],[9,1,1,12,13,[[287,1,1,12,13]]],[10,1,1,13,14,[[291,1,1,13,14]]],[11,2,2,14,16,[[322,1,1,14,15],[327,1,1,15,16]]],[12,3,3,16,19,[[343,2,2,16,18],[358,1,1,18,19]]],[13,1,1,19,20,[[377,1,1,19,20]]],[18,2,2,20,22,[[582,2,2,20,22]]]],[1791,1796,4989,5409,5651,6298,6851,7053,7325,7366,7448,7452,8585,8720,9825,9941,10508,10520,10946,11427,15637,15639]]],["landmark",[4,4,[[4,2,2,0,2,[[171,1,1,0,1],[179,1,1,1,2]]],[19,2,2,2,4,[[649,1,1,2,3],[650,1,1,3,4]]]],[5420,5602,17043,17054]]],["limit",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21584]]],["quarters",[1,1,[[1,1,1,0,1,[[62,1,1,0,1]]]],[1874]]],["space",[2,1,[[25,2,1,0,1,[[841,2,1,0,1]]]],[21489]]]]},{"k":"H1367","v":[["*",[10,10,[[3,3,3,0,3,[[148,1,1,0,1],[150,2,2,1,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[5,2,2,4,6,[[204,1,1,4,5],[205,1,1,5,6]]],[17,1,1,6,7,[[459,1,1,6,7]]],[18,1,1,7,8,[[551,1,1,7,8]]],[22,2,2,8,10,[[688,1,1,8,9],[706,1,1,9,10]]]],[4751,4818,4828,5766,6313,6370,13438,15065,17863,18189]]],["borders",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15065]]],["bounds",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[5766,17863]]],["coasts",[5,5,[[3,3,3,0,3,[[148,1,1,0,1],[150,2,2,1,3]]],[5,2,2,3,5,[[204,1,1,3,4],[205,1,1,4,5]]]],[4751,4818,4828,6313,6370]]],["landmarks",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13438]]],["place",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18189]]]]},{"k":"H1368","v":[["*",[159,152,[[0,4,3,0,3,[[5,1,1,0,1],[9,3,2,1,3]]],[4,1,1,3,4,[[162,1,1,3,4]]],[5,5,5,4,9,[[187,1,1,4,5],[192,1,1,5,6],[194,1,1,6,7],[196,2,2,7,9]]],[6,4,4,9,13,[[215,2,2,9,11],[216,1,1,11,12],[221,1,1,12,13]]],[7,1,1,13,14,[[233,1,1,13,14]]],[8,5,5,14,19,[[237,1,1,14,15],[244,1,1,15,16],[249,1,1,16,17],[251,1,1,17,18],[252,1,1,18,19]]],[9,16,16,19,35,[[267,5,5,19,24],[276,1,1,24,25],[282,1,1,25,26],[283,2,2,26,28],[286,1,1,28,29],[288,1,1,29,30],[289,5,5,30,35]]],[10,3,3,35,38,[[291,2,2,35,37],[301,1,1,37,38]]],[11,4,4,38,42,[[317,1,1,38,39],[327,1,1,39,40],[336,2,2,40,42]]],[12,31,30,42,72,[[338,1,1,42,43],[342,1,1,43,44],[344,6,6,44,50],[345,1,1,50,51],[346,2,2,51,53],[348,6,6,53,59],[349,7,7,59,66],[356,1,1,66,67],[363,2,2,67,69],[364,1,1,69,70],[365,2,1,70,71],[366,1,1,71,72]]],[13,12,11,72,83,[[379,2,1,72,73],[380,1,1,73,74],[383,4,4,74,78],[391,1,1,78,79],[392,1,1,79,80],[394,1,1,80,81],[398,2,2,81,83]]],[14,1,1,83,84,[[409,1,1,83,84]]],[15,3,3,84,87,[[415,1,1,84,85],[421,1,1,85,86],[423,1,1,86,87]]],[17,1,1,87,88,[[451,1,1,87,88]]],[18,12,11,88,99,[[496,1,1,88,89],[501,2,1,89,90],[510,1,1,90,91],[522,1,1,91,92],[529,1,1,92,93],[555,1,1,93,94],[566,1,1,94,95],[580,1,1,95,96],[589,1,1,96,97],[597,1,1,97,98],[604,1,1,98,99]]],[19,3,3,99,102,[[643,1,1,99,100],[648,1,1,100,101],[657,1,1,101,102]]],[20,1,1,102,103,[[667,1,1,102,103]]],[21,3,2,103,105,[[673,2,1,103,104],[674,1,1,104,105]]],[22,9,9,105,114,[[681,1,1,105,106],[683,1,1,106,107],[687,1,1,107,108],[688,1,1,108,109],[691,1,1,109,110],[699,1,1,110,111],[720,1,1,111,112],[727,2,2,112,114]]],[23,19,18,114,132,[[749,1,1,114,115],[753,1,1,115,116],[758,1,1,116,117],[764,1,1,117,118],[770,1,1,118,119],[776,1,1,119,120],[790,5,4,120,124],[792,2,2,124,126],[793,1,1,126,127],[794,2,2,127,129],[795,3,3,129,132]]],[25,6,5,132,137,[[833,4,3,132,135],[840,2,2,135,137]]],[26,1,1,137,138,[[860,1,1,137,138]]],[27,1,1,138,139,[[871,1,1,138,139]]],[28,4,4,139,143,[[877,1,1,139,140],[878,3,3,140,143]]],[29,2,2,143,145,[[880,2,2,143,145]]],[30,1,1,145,146,[[888,1,1,145,146]]],[33,1,1,146,147,[[901,1,1,146,147]]],[35,2,2,147,149,[[906,1,1,147,148],[908,1,1,148,149]]],[37,3,3,149,152,[[919,1,1,149,150],[920,2,2,150,152]]]],[141,242,243,5203,5865,5951,6005,6066,6071,6636,6646,6666,6830,7150,7244,7392,7560,7613,7669,8041,8043,8044,8047,8049,8247,8432,8457,8459,8561,8628,8661,8662,8669,8670,8675,8725,8727,9136,9648,9945,10216,10218,10262,10452,10537,10540,10542,10544,10546,10575,10615,10628,10641,10683,10684,10685,10692,10697,10699,10721,10724,10728,10741,10745,10748,10750,10915,11083,11108,11115,11144,11188,11456,11483,11536,11537,11539,11540,11710,11744,11771,11878,11896,12201,12343,12543,12602,13252,14173,14249,14382,14600,14711,15178,15345,15569,15805,16078,16125,16872,17006,17281,17486,17578,17586,17709,17761,17835,17871,17909,18052,18493,18660,18661,19074,19198,19302,19433,19593,19749,20050,20051,20054,20057,20094,20121,20149,20175,20202,20242,20268,20269,21260,21269,21275,21466,21468,22039,22238,22318,22352,22353,22354,22393,22395,22519,22702,22801,22837,23012,23021,23023]]],["+",[4,4,[[12,1,1,0,1,[[346,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]],[21,1,1,2,3,[[673,1,1,2,3]]],[22,1,1,3,4,[[727,1,1,3,4]]]],[10628,16872,17578,18660]]],["Mighty",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19749]]],["champion",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7669]]],["chief",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10641]]],["excel",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15569]]],["giant",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13252]]],["man",[18,18,[[6,2,2,0,2,[[216,1,1,0,1],[221,1,1,1,2]]],[8,1,1,2,3,[[244,1,1,2,3]]],[9,2,2,3,5,[[283,1,1,3,4],[288,1,1,4,5]]],[12,1,1,5,6,[[349,1,1,5,6]]],[13,2,2,6,8,[[383,1,1,6,7],[394,1,1,7,8]]],[18,4,4,8,12,[[496,1,1,8,9],[510,1,1,9,10],[529,1,1,10,11],[555,1,1,11,12]]],[22,1,1,12,13,[[720,1,1,12,13]]],[23,3,3,13,16,[[758,1,1,13,14],[790,2,2,14,16]]],[35,1,1,16,17,[[906,1,1,16,17]]],[37,1,1,17,18,[[919,1,1,17,18]]]],[6666,6830,7392,8459,8628,10724,11540,11771,14173,14382,14711,15178,18493,19302,20051,20057,22801,23012]]],["men",[64,62,[[0,1,1,0,1,[[5,1,1,0,1]]],[5,2,2,1,3,[[187,1,1,1,2],[196,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[9,9,9,4,13,[[276,1,1,4,5],[282,1,1,5,6],[283,1,1,6,7],[286,1,1,7,8],[289,5,5,8,13]]],[10,2,2,13,15,[[291,2,2,13,15]]],[11,2,2,15,17,[[327,1,1,15,16],[336,1,1,16,17]]],[12,20,19,17,36,[[344,6,6,17,23],[348,3,3,23,26],[349,5,5,26,31],[356,1,1,31,32],[363,2,2,32,34],[365,2,1,34,35],[366,1,1,35,36]]],[13,10,9,36,45,[[379,2,1,36,37],[380,1,1,37,38],[383,3,3,38,41],[391,1,1,41,42],[392,1,1,42,43],[398,2,2,43,45]]],[15,1,1,45,46,[[423,1,1,45,46]]],[21,2,2,46,48,[[673,1,1,46,47],[674,1,1,47,48]]],[22,1,1,48,49,[[699,1,1,48,49]]],[23,8,8,49,57,[[749,1,1,49,50],[770,1,1,50,51],[790,1,1,51,52],[793,1,1,52,53],[794,1,1,53,54],[795,3,3,54,57]]],[25,1,1,57,58,[[840,1,1,57,58]]],[27,1,1,58,59,[[871,1,1,58,59]]],[28,2,2,59,61,[[877,1,1,59,60],[878,1,1,60,61]]],[33,1,1,61,62,[[901,1,1,61,62]]]],[141,5865,6071,7244,8247,8432,8457,8561,8661,8662,8669,8670,8675,8725,8727,9945,10216,10537,10540,10542,10544,10546,10575,10683,10684,10699,10721,10728,10741,10745,10750,10915,11083,11108,11144,11188,11456,11483,11536,11537,11539,11710,11744,11878,11896,12602,17578,17586,18052,19074,19593,20054,20149,20202,20242,20268,20269,21468,22238,22318,22352,22702]]],["men's",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20121]]],["mighties",[2,2,[[12,2,2,0,2,[[348,2,2,0,2]]]],[10685,10697]]],["mightiest",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10692]]],["mighty",[55,52,[[0,2,1,0,1,[[9,2,1,0,1]]],[4,1,1,1,2,[[162,1,1,1,2]]],[5,3,3,2,5,[[192,1,1,2,3],[194,1,1,3,4],[196,1,1,4,5]]],[6,2,2,5,7,[[215,2,2,5,7]]],[7,1,1,7,8,[[233,1,1,7,8]]],[8,1,1,8,9,[[251,1,1,8,9]]],[9,5,5,9,14,[[267,5,5,9,14]]],[10,1,1,14,15,[[301,1,1,14,15]]],[11,1,1,15,16,[[317,1,1,15,16]]],[12,5,5,16,21,[[338,1,1,16,17],[342,1,1,17,18],[345,1,1,18,19],[349,1,1,19,20],[364,1,1,20,21]]],[14,1,1,21,22,[[409,1,1,21,22]]],[15,2,2,22,24,[[415,1,1,22,23],[421,1,1,23,24]]],[18,7,6,24,30,[[501,2,1,24,25],[522,1,1,25,26],[566,1,1,26,27],[589,1,1,27,28],[597,1,1,28,29],[604,1,1,29,30]]],[19,1,1,30,31,[[648,1,1,30,31]]],[22,5,5,31,36,[[681,1,1,31,32],[683,1,1,32,33],[687,1,1,33,34],[688,1,1,34,35],[727,1,1,35,36]]],[23,5,5,36,41,[[753,1,1,36,37],[764,1,1,37,38],[790,1,1,38,39],[792,1,1,39,40],[794,1,1,40,41]]],[25,5,4,41,45,[[833,4,3,41,44],[840,1,1,44,45]]],[26,1,1,45,46,[[860,1,1,45,46]]],[29,2,2,46,48,[[880,2,2,46,48]]],[30,1,1,48,49,[[888,1,1,48,49]]],[35,1,1,49,50,[[908,1,1,49,50]]],[37,2,2,50,52,[[920,2,2,50,52]]]],[243,5203,5951,6005,6066,6636,6646,7150,7613,8041,8043,8044,8047,8049,9136,9648,10262,10452,10615,10748,11115,12201,12343,12543,14249,14600,15345,15805,16078,16125,17006,17709,17761,17835,17871,18661,19198,19433,20057,20094,20175,21260,21269,21275,21466,22039,22393,22395,22519,22837,23021,23023]]],["one",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[242]]],["ones",[3,3,[[22,1,1,0,1,[[691,1,1,0,1]]],[23,1,1,1,2,[[790,1,1,1,2]]],[28,1,1,2,3,[[878,1,1,2,3]]]],[17909,20050,22354]]],["strong",[4,4,[[8,1,1,0,1,[[249,1,1,0,1]]],[11,1,1,1,2,[[336,1,1,1,2]]],[20,1,1,2,3,[[667,1,1,2,3]]],[28,1,1,3,4,[[878,1,1,3,4]]]],[7560,10218,17486,22353]]],["strongest",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17281]]]]},{"k":"H1369","v":[["*",[61,61,[[1,1,1,0,1,[[81,1,1,0,1]]],[4,1,1,1,2,[[155,1,1,1,2]]],[6,2,2,2,4,[[215,1,1,2,3],[218,1,1,3,4]]],[10,4,4,4,8,[[305,1,1,4,5],[306,2,2,5,7],[312,1,1,7,8]]],[11,7,7,8,15,[[322,1,1,8,9],[325,2,2,9,11],[326,2,2,11,13],[330,1,1,13,14],[332,1,1,14,15]]],[12,3,3,15,18,[[366,3,3,15,18]]],[13,1,1,18,19,[[386,1,1,18,19]]],[16,1,1,19,20,[[435,1,1,19,20]]],[17,4,4,20,24,[[447,1,1,20,21],[461,1,1,21,22],[474,1,1,22,23],[476,1,1,23,24]]],[18,17,17,24,41,[[497,1,1,24,25],[498,1,1,25,26],[531,1,1,26,27],[542,1,1,27,28],[543,1,1,28,29],[548,2,2,29,31],[557,1,1,31,32],[566,1,1,32,33],[567,1,1,33,34],[583,2,2,34,36],[622,3,3,36,39],[624,1,1,39,40],[627,1,1,40,41]]],[19,1,1,41,42,[[635,1,1,41,42]]],[20,2,2,42,44,[[667,1,1,42,43],[668,1,1,43,44]]],[22,7,7,44,51,[[681,1,1,44,45],[689,1,1,45,46],[706,1,1,46,47],[708,1,1,47,48],[711,1,1,48,49],[714,1,1,49,50],[741,1,1,50,51]]],[23,6,6,51,57,[[753,1,1,51,52],[754,1,1,52,53],[760,1,1,53,54],[767,1,1,54,55],[793,1,1,55,56],[795,1,1,56,57]]],[25,2,2,57,59,[[833,2,2,57,59]]],[32,2,2,59,61,[[895,1,1,59,60],[899,1,1,60,61]]]],[2456,4999,6654,6740,9272,9288,9310,9525,9827,9879,9883,9911,9924,10044,10118,11175,11176,11194,11593,12868,13141,13481,13853,13900,14188,14204,14726,14866,14880,14992,14994,15200,15339,15388,15653,15659,16324,16331,16332,16361,16396,16616,17491,17510,17732,17886,18170,18232,18292,18335,18881,19198,19207,19357,19494,20162,20242,21277,21278,22616,22680]]],["+",[2,2,[[20,1,1,0,1,[[667,1,1,0,1]]],[25,1,1,1,2,[[833,1,1,1,2]]]],[17491,21278]]],["acts",[4,4,[[18,4,4,0,4,[[583,1,1,0,1],[622,2,2,1,3],[627,1,1,3,4]]]],[15653,16324,16332,16396]]],["force",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19494]]],["mastery",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2456]]],["might",[26,26,[[4,1,1,0,1,[[155,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[10,4,4,2,6,[[305,1,1,2,3],[306,2,2,3,5],[312,1,1,5,6]]],[11,6,6,6,12,[[322,1,1,6,7],[325,2,2,7,9],[326,2,2,9,11],[332,1,1,11,12]]],[12,2,2,12,14,[[366,2,2,12,14]]],[13,1,1,14,15,[[386,1,1,14,15]]],[16,1,1,15,16,[[435,1,1,15,16]]],[22,2,2,16,18,[[689,1,1,16,17],[711,1,1,17,18]]],[23,5,5,18,23,[[753,1,1,18,19],[754,1,1,19,20],[760,1,1,20,21],[793,1,1,21,22],[795,1,1,22,23]]],[25,1,1,23,24,[[833,1,1,23,24]]],[32,2,2,24,26,[[895,1,1,24,25],[899,1,1,25,26]]]],[4999,6654,9272,9288,9310,9525,9827,9879,9883,9911,9924,10118,11176,11194,11593,12868,17886,18292,19198,19207,19357,20162,20242,21277,22616,22680]]],["mighty",[2,2,[[18,1,1,0,1,[[566,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]]],[15339,17732]]],["power",[9,9,[[12,1,1,0,1,[[366,1,1,0,1]]],[17,2,2,1,3,[[461,1,1,1,2],[476,1,1,2,3]]],[18,6,6,3,9,[[498,1,1,3,4],[542,1,1,4,5],[543,1,1,5,6],[548,1,1,6,7],[583,1,1,7,8],[622,1,1,8,9]]]],[11175,13481,13900,14204,14866,14880,14994,15659,16331]]],["strength",[16,16,[[6,1,1,0,1,[[218,1,1,0,1]]],[11,1,1,1,2,[[330,1,1,1,2]]],[17,2,2,2,4,[[447,1,1,2,3],[474,1,1,3,4]]],[18,6,6,4,10,[[497,1,1,4,5],[531,1,1,5,6],[548,1,1,6,7],[557,1,1,7,8],[567,1,1,8,9],[624,1,1,9,10]]],[19,1,1,10,11,[[635,1,1,10,11]]],[20,1,1,11,12,[[668,1,1,11,12]]],[22,4,4,12,16,[[706,1,1,12,13],[708,1,1,13,14],[714,1,1,14,15],[741,1,1,15,16]]]],[6740,10044,13141,13853,14188,14726,14992,15200,15388,16361,16616,17510,18170,18232,18335,18881]]]]},{"k":"H1370","v":[["might",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21778,21781]]]]},{"k":"H1371","v":[["bald",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3093]]]]},{"k":"H1372","v":[["*",[4,3,[[2,4,3,0,3,[[102,4,3,0,3]]]],[3094,3095,3107]]],["forehead",[3,2,[[2,3,2,0,2,[[102,3,2,0,2]]]],[3094,3095]]],["without",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3107]]]]},{"k":"H1373","v":[["Gabbai",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12596]]]]},{"k":"H1374","v":[["Gebim",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17881]]]]},{"k":"H1375","v":[["*",[14,11,[[0,5,4,0,4,[[43,5,4,0,4]]],[1,8,6,4,10,[[74,4,3,4,7],[86,4,3,7,10]]],[23,1,1,10,11,[[779,1,1,10,11]]]],[1326,1336,1340,1341,2226,2228,2229,2621,2623,2624,19828]]],["bowls",[8,6,[[1,8,6,0,6,[[74,4,3,0,3],[86,4,3,3,6]]]],[2226,2228,2229,2621,2623,2624]]],["cup",[5,4,[[0,5,4,0,4,[[43,5,4,0,4]]]],[1326,1336,1340,1341]]],["pots",[1,1,[[23,1,1,0,1,[[779,1,1,0,1]]]],[19828]]]]},{"k":"H1376","v":[["lord",[2,2,[[0,2,2,0,2,[[26,2,2,0,2]]]],[756,764]]]]},{"k":"H1377","v":[["*",[6,6,[[10,2,2,0,2,[[301,1,1,0,1],[305,1,1,1,2]]],[11,1,1,2,3,[[322,1,1,2,3]]],[13,1,1,3,4,[[381,1,1,3,4]]],[23,2,2,4,6,[[757,1,1,4,5],[773,1,1,5,6]]]],[9127,9262,9806,11506,19284,19637]]],["+",[2,2,[[10,1,1,0,1,[[305,1,1,0,1]]],[13,1,1,1,2,[[381,1,1,1,2]]]],[9262,11506]]],["queen",[4,4,[[10,1,1,0,1,[[301,1,1,0,1]]],[11,1,1,1,2,[[322,1,1,1,2]]],[23,2,2,2,4,[[757,1,1,2,3],[773,1,1,3,4]]]],[9127,9806,19284,19637]]]]},{"k":"H1378","v":[["pearls",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13522]]]]},{"k":"H1379","v":[["*",[5,5,[[1,2,2,0,2,[[68,2,2,0,2]]],[4,1,1,2,3,[[171,1,1,2,3]]],[5,1,1,3,4,[[204,1,1,3,4]]],[37,1,1,4,5,[[919,1,1,4,5]]]],[2038,2049,5420,6313,23001]]],["+",[2,2,[[1,2,2,0,2,[[68,2,2,0,2]]]],[2038,2049]]],["border",[2,2,[[5,1,1,0,1,[[204,1,1,0,1]]],[37,1,1,1,2,[[919,1,1,1,2]]]],[6313,23001]]],["set",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5420]]]]},{"k":"H1380","v":[["Gebal",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21130]]]]},{"k":"H1381","v":[["Gebal",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15248]]]]},{"k":"H1382","v":[["*",[2,2,[[5,1,1,0,1,[[199,1,1,0,1]]],[10,1,1,1,2,[[295,1,1,1,2]]]],[6159,8896]]],["Giblites",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6159]]],["stonesquarers",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8896]]]]},{"k":"H1383","v":[["ends",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2315,2679]]]]},{"k":"H1384","v":[["crookbackt",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3365]]]]},{"k":"H1385","v":[["cheese",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13096]]]]},{"k":"H1386","v":[["high",[2,2,[[18,2,2,0,2,[[545,2,2,0,2]]]],[14915,14916]]]]},{"k":"H1387","v":[["*",[18,18,[[5,2,2,0,2,[[204,1,1,0,1],[207,1,1,1,2]]],[6,1,1,2,3,[[230,1,1,2,3]]],[8,3,3,3,6,[[248,2,2,3,5],[249,1,1,5,6]]],[9,1,1,6,7,[[271,1,1,6,7]]],[10,1,1,7,8,[[305,1,1,7,8]]],[11,1,1,8,9,[[335,1,1,8,9]]],[12,2,2,9,11,[[343,1,1,9,10],[345,1,1,10,11]]],[13,1,1,11,12,[[382,1,1,11,12]]],[14,1,1,12,13,[[404,1,1,12,13]]],[15,3,3,13,16,[[419,1,1,13,14],[423,1,1,14,15],[424,1,1,15,16]]],[22,1,1,16,17,[[688,1,1,16,17]]],[37,1,1,17,18,[[924,1,1,17,18]]]],[6317,6398,7064,7488,7501,7513,8157,9271,10173,10514,10581,11515,12053,12450,12619,12653,17879,23078]]],["+",[4,4,[[9,1,1,0,1,[[271,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]],[15,1,1,2,3,[[423,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[8157,10173,12619,23078]]],["Gaba",[2,2,[[5,1,1,0,1,[[204,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]]],[6317,12053]]],["Geba",[9,9,[[5,1,1,0,1,[[207,1,1,0,1]]],[8,1,1,1,2,[[248,1,1,1,2]]],[10,1,1,2,3,[[305,1,1,2,3]]],[12,2,2,3,5,[[343,1,1,3,4],[345,1,1,4,5]]],[13,1,1,5,6,[[382,1,1,5,6]]],[15,2,2,6,8,[[419,1,1,6,7],[424,1,1,7,8]]],[22,1,1,8,9,[[688,1,1,8,9]]]],[6398,7488,9271,10514,10581,11515,12450,12653,17879]]],["Gibeah",[3,3,[[6,1,1,0,1,[[230,1,1,0,1]]],[8,2,2,1,3,[[248,1,1,1,2],[249,1,1,2,3]]]],[7064,7501,7513]]]]},{"k":"H1388","v":[["Gibea",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10355]]]]},{"k":"H1389","v":[["*",[69,69,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[66,2,2,1,3]]],[3,1,1,3,4,[[139,1,1,3,4]]],[4,2,2,4,6,[[164,1,1,4,5],[185,1,1,5,6]]],[5,2,2,6,8,[[191,1,1,6,7],[210,1,1,7,8]]],[6,1,1,8,9,[[217,1,1,8,9]]],[8,6,6,9,15,[[242,1,1,9,10],[245,2,2,10,12],[258,1,1,12,13],[261,2,2,13,15]]],[9,2,2,15,17,[[268,2,2,15,17]]],[10,1,1,17,18,[[304,1,1,17,18]]],[11,2,2,18,20,[[328,1,1,18,19],[329,1,1,19,20]]],[13,1,1,20,21,[[394,1,1,20,21]]],[17,1,1,21,22,[[450,1,1,21,22]]],[18,5,5,22,27,[[542,1,1,22,23],[549,1,1,23,24],[591,2,2,24,26],[625,1,1,26,27]]],[19,1,1,27,28,[[635,1,1,27,28]]],[21,2,2,28,30,[[672,1,1,28,29],[674,1,1,29,30]]],[22,13,13,30,43,[[680,2,2,30,32],[688,1,1,32,33],[708,2,2,33,35],[709,1,1,35,36],[718,2,2,36,38],[719,1,1,38,39],[720,1,1,39,40],[732,1,1,40,41],[733,1,1,41,42],[743,1,1,42,43]]],[23,9,9,43,52,[[746,1,1,43,44],[747,1,1,44,45],[748,1,1,45,46],[757,1,1,46,47],[760,1,1,47,48],[761,1,1,48,49],[775,1,1,49,50],[793,1,1,50,51],[794,1,1,51,52]]],[25,8,8,52,60,[[807,2,2,52,54],[821,1,1,54,55],[835,2,2,55,57],[836,1,1,57,58],[837,2,2,58,60]]],[27,2,2,60,62,[[865,1,1,60,61],[871,1,1,61,62]]],[28,1,1,62,63,[[878,1,1,62,63]]],[29,1,1,63,64,[[887,1,1,63,64]]],[32,2,2,64,66,[[896,1,1,64,65],[898,1,1,65,66]]],[33,1,1,66,67,[[900,1,1,66,67]]],[34,1,1,67,68,[[905,1,1,67,68]]],[35,1,1,68,69,[[906,1,1,68,69]]]],[1499,1992,1993,4425,5242,5825,5937,6509,6695,7353,7423,7428,7829,7906,7908,8073,8074,9241,9967,9993,11768,13210,14872,15003,15826,15828,16380,16627,17562,17588,17687,17699,17882,18234,18242,18254,18424,18432,18466,18495,18733,18752,18904,18985,19025,19051,19293,19352,19359,19730,20143,20172,20566,20576,20923,21319,21339,21352,21363,21365,22146,22233,22361,22508,22621,22649,22689,22774,22797]]],["+",[6,6,[[3,1,1,0,1,[[139,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]],[22,1,1,2,3,[[680,1,1,2,3]]],[23,1,1,3,4,[[747,1,1,3,4]]],[32,1,1,4,5,[[896,1,1,4,5]]],[35,1,1,5,6,[[906,1,1,5,6]]]],[4425,6695,17687,19025,22621,22797]]],["hill",[29,29,[[1,2,2,0,2,[[66,2,2,0,2]]],[5,2,2,2,4,[[191,1,1,2,3],[210,1,1,3,4]]],[8,6,6,4,10,[[242,1,1,4,5],[245,2,2,5,7],[258,1,1,7,8],[261,2,2,8,10]]],[9,2,2,10,12,[[268,2,2,10,12]]],[10,1,1,12,13,[[304,1,1,12,13]]],[11,1,1,13,14,[[329,1,1,13,14]]],[21,1,1,14,15,[[674,1,1,14,15]]],[22,5,5,15,20,[[688,1,1,15,16],[708,2,2,16,18],[709,1,1,18,19],[718,1,1,19,20]]],[23,5,5,20,25,[[746,1,1,20,21],[760,1,1,21,22],[775,1,1,22,23],[793,1,1,23,24],[794,1,1,24,25]]],[25,4,4,25,29,[[807,1,1,25,26],[821,1,1,26,27],[835,2,2,27,29]]]],[1992,1993,5937,6509,7353,7423,7428,7829,7906,7908,8073,8074,9241,9993,17588,17882,18234,18242,18254,18424,18985,19352,19730,20143,20172,20576,20923,21319,21339]]],["hills",[34,34,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,2,2,1,3,[[164,1,1,1,2],[185,1,1,2,3]]],[11,1,1,3,4,[[328,1,1,3,4]]],[13,1,1,4,5,[[394,1,1,4,5]]],[17,1,1,5,6,[[450,1,1,5,6]]],[18,5,5,6,11,[[542,1,1,6,7],[549,1,1,7,8],[591,2,2,8,10],[625,1,1,10,11]]],[19,1,1,11,12,[[635,1,1,11,12]]],[21,1,1,12,13,[[672,1,1,12,13]]],[22,7,7,13,20,[[680,1,1,13,14],[718,1,1,14,15],[719,1,1,15,16],[720,1,1,16,17],[732,1,1,17,18],[733,1,1,18,19],[743,1,1,19,20]]],[23,3,3,20,23,[[748,1,1,20,21],[757,1,1,21,22],[761,1,1,22,23]]],[25,4,4,23,27,[[807,1,1,23,24],[836,1,1,24,25],[837,2,2,25,27]]],[27,2,2,27,29,[[865,1,1,27,28],[871,1,1,28,29]]],[28,1,1,29,30,[[878,1,1,29,30]]],[29,1,1,30,31,[[887,1,1,30,31]]],[32,1,1,31,32,[[898,1,1,31,32]]],[33,1,1,32,33,[[900,1,1,32,33]]],[34,1,1,33,34,[[905,1,1,33,34]]]],[1499,5242,5825,9967,11768,13210,14872,15003,15826,15828,16380,16627,17562,17699,18432,18466,18495,18733,18752,18904,19051,19293,19359,20566,21352,21363,21365,22146,22233,22361,22508,22649,22689,22774]]]]},{"k":"H1390","v":[["*",[45,44,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,23,23,1,24,[[229,5,5,1,6],[230,18,18,6,24]]],[8,10,10,24,34,[[245,1,1,24,25],[246,1,1,25,26],[248,2,2,26,28],[249,2,2,28,30],[250,1,1,30,31],[257,1,1,31,32],[258,1,1,32,33],[261,1,1,33,34]]],[9,4,4,34,38,[[272,2,2,34,36],[287,1,1,36,37],[289,1,1,37,38]]],[12,1,1,38,39,[[348,1,1,38,39]]],[13,1,1,39,40,[[379,1,1,39,40]]],[22,1,1,40,41,[[688,1,1,40,41]]],[27,4,3,41,44,[[866,1,1,41,42],[870,1,1,42,43],[871,2,1,43,44]]]],[6259,7036,7037,7038,7039,7040,7058,7059,7063,7067,7068,7069,7073,7074,7075,7079,7083,7084,7085,7087,7088,7090,7091,7097,7444,7449,7487,7500,7510,7524,7594,7793,7829,7906,8160,8161,8586,8682,10704,11455,17879,22160,22217,22234]]],["+",[3,3,[[6,1,1,0,1,[[230,1,1,0,1]]],[9,1,1,1,2,[[289,1,1,1,2]]],[12,1,1,2,3,[[348,1,1,2,3]]]],[7087,8682,10704]]],["Gibeah",[42,41,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,22,22,1,23,[[229,5,5,1,6],[230,17,17,6,23]]],[8,10,10,23,33,[[245,1,1,23,24],[246,1,1,24,25],[248,2,2,25,27],[249,2,2,27,29],[250,1,1,29,30],[257,1,1,30,31],[258,1,1,31,32],[261,1,1,32,33]]],[9,3,3,33,36,[[272,2,2,33,35],[287,1,1,35,36]]],[13,1,1,36,37,[[379,1,1,36,37]]],[22,1,1,37,38,[[688,1,1,37,38]]],[27,4,3,38,41,[[866,1,1,38,39],[870,1,1,39,40],[871,2,1,40,41]]]],[6259,7036,7037,7038,7039,7040,7058,7059,7063,7067,7068,7069,7073,7074,7075,7079,7083,7084,7085,7088,7090,7091,7097,7444,7449,7487,7500,7510,7524,7594,7793,7829,7906,8160,8161,8586,11455,17879,22160,22217,22234]]]]},{"k":"H1391","v":[["*",[37,35,[[5,13,13,0,13,[[195,2,2,0,2],[196,8,8,2,10],[197,1,1,10,11],[204,1,1,11,12],[207,1,1,12,13]]],[9,6,6,13,19,[[268,4,4,13,17],[269,1,1,17,18],[286,1,1,18,19]]],[10,3,3,19,22,[[293,2,2,19,21],[299,1,1,21,22]]],[12,7,5,22,27,[[345,2,1,22,23],[346,2,1,23,24],[351,1,1,24,25],[353,1,1,25,26],[358,1,1,26,27]]],[13,2,2,27,29,[[367,2,2,27,29]]],[15,2,2,29,31,[[415,1,1,29,30],[419,1,1,30,31]]],[22,1,1,31,32,[[706,1,1,31,32]]],[23,3,3,32,35,[[772,1,1,32,33],[785,2,2,33,35]]]],[6040,6054,6065,6066,6068,6069,6070,6074,6076,6105,6126,6318,6398,8061,8062,8065,8073,8111,8562,8820,8821,9053,10604,10650,10790,10859,10963,11197,11207,12334,12445,18185,19619,19969,19973]]],["+",[4,4,[[5,1,1,0,1,[[197,1,1,0,1]]],[12,1,1,1,2,[[351,1,1,1,2]]],[23,2,2,2,4,[[772,1,1,2,3],[785,1,1,3,4]]]],[6126,10790,19619,19973]]],["Gibeon",[33,31,[[5,12,12,0,12,[[195,2,2,0,2],[196,8,8,2,10],[204,1,1,10,11],[207,1,1,11,12]]],[9,6,6,12,18,[[268,4,4,12,16],[269,1,1,16,17],[286,1,1,17,18]]],[10,3,3,18,21,[[293,2,2,18,20],[299,1,1,20,21]]],[12,6,4,21,25,[[345,2,1,21,22],[346,2,1,22,23],[353,1,1,23,24],[358,1,1,24,25]]],[13,2,2,25,27,[[367,2,2,25,27]]],[15,2,2,27,29,[[415,1,1,27,28],[419,1,1,28,29]]],[22,1,1,29,30,[[706,1,1,29,30]]],[23,1,1,30,31,[[785,1,1,30,31]]]],[6040,6054,6065,6066,6068,6069,6070,6074,6076,6105,6318,6398,8061,8062,8065,8073,8111,8562,8820,8821,9053,10604,10650,10859,10963,11197,11207,12334,12445,18185,19969]]]]},{"k":"H1392","v":[["bolled",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1773]]]]},{"k":"H1393","v":[["*",[8,7,[[9,6,5,0,5,[[287,6,5,0,5]]],[12,1,1,5,6,[[349,1,1,5,6]]],[15,1,1,6,7,[[415,1,1,6,7]]]],[8581,8582,8583,8584,8589,10724,12334]]],["Gibeonite",[2,2,[[12,1,1,0,1,[[349,1,1,0,1]]],[15,1,1,1,2,[[415,1,1,1,2]]]],[10724,12334]]],["Gibeonites",[6,5,[[9,6,5,0,5,[[287,6,5,0,5]]]],[8581,8582,8583,8584,8589]]]]},{"k":"H1394","v":[["Gibeath",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6321]]]]},{"k":"H1395","v":[["Gibeathite",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10723]]]]},{"k":"H1396","v":[["*",[25,24,[[0,5,5,0,5,[[6,4,4,0,4],[48,1,1,4,5]]],[1,2,1,5,6,[[66,2,1,5,6]]],[8,1,1,6,7,[[237,1,1,6,7]]],[9,2,2,7,9,[[267,1,1,7,8],[277,1,1,8,9]]],[12,1,1,9,10,[[342,1,1,9,10]]],[17,3,3,10,13,[[450,1,1,10,11],[456,1,1,11,12],[471,1,1,12,13]]],[18,4,4,13,17,[[489,1,1,13,14],[542,1,1,14,15],[580,1,1,15,16],[594,1,1,16,17]]],[20,1,1,17,18,[[668,1,1,17,18]]],[22,1,1,18,19,[[720,1,1,18,19]]],[23,1,1,19,20,[[753,1,1,19,20]]],[24,1,1,20,21,[[797,1,1,20,21]]],[26,1,1,21,22,[[858,1,1,21,22]]],[37,2,2,22,24,[[920,2,2,22,24]]]],[177,178,179,183,1499,1994,7249,8045,8282,10430,13228,13362,13745,14070,14863,15560,15869,17503,18493,19178,20326,22015,23022,23028]]],["+",[1,1,[[37,1,1,0,1,[[920,1,1,0,1]]]],[23022]]],["confirm",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22015]]],["exceeded",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13745]]],["great",[2,2,[[18,2,2,0,2,[[580,1,1,0,1],[594,1,1,1,2]]]],[15560,15869]]],["himself",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13228]]],["mighty",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13362]]],["prevail",[5,5,[[0,1,1,0,1,[[6,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[18,2,2,2,4,[[489,1,1,2,3],[542,1,1,3,4]]],[22,1,1,4,5,[[720,1,1,4,5]]]],[179,7249,14070,14863,18493]]],["prevailed",[9,8,[[0,4,4,0,4,[[6,3,3,0,3],[48,1,1,3,4]]],[1,2,1,4,5,[[66,2,1,4,5]]],[9,1,1,5,6,[[277,1,1,5,6]]],[12,1,1,6,7,[[342,1,1,6,7]]],[24,1,1,7,8,[[797,1,1,7,8]]]],[177,178,183,1499,1994,8282,10430,20326]]],["strengthen",[1,1,[[37,1,1,0,1,[[920,1,1,0,1]]]],[23028]]],["stronger",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8045]]],["to",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17503]]],["valiant",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19178]]]]},{"k":"H1397","v":[["*",[65,64,[[1,2,2,0,2,[[59,1,1,0,1],[61,1,1,1,2]]],[3,2,2,2,4,[[140,2,2,2,4]]],[4,2,1,4,5,[[174,2,1,4,5]]],[5,3,3,5,8,[[193,3,3,5,8]]],[6,1,1,8,9,[[215,1,1,8,9]]],[9,1,1,9,10,[[289,1,1,9,10]]],[12,3,3,10,13,[[360,1,1,10,11],[361,1,1,11,12],[363,1,1,12,13]]],[17,15,15,13,28,[[438,2,2,13,15],[439,1,1,15,16],[445,1,1,16,17],[449,2,2,17,19],[451,1,1,19,20],[457,1,1,20,21],[468,2,2,21,23],[469,3,3,23,26],[473,1,1,26,27],[475,1,1,27,28]]],[18,9,9,28,37,[[511,1,1,28,29],[514,1,1,29,30],[517,1,1,30,31],[529,1,1,31,32],[565,1,1,32,33],[566,1,1,33,34],[571,1,1,34,35],[604,1,1,35,36],[605,1,1,36,37]]],[19,8,8,37,45,[[633,1,1,37,38],[647,1,1,38,39],[651,1,1,39,40],[655,2,2,40,42],[656,1,1,42,43],[657,2,2,43,45]]],[22,1,1,45,46,[[700,1,1,45,46]]],[23,9,9,46,55,[[761,2,2,46,48],[766,1,1,48,49],[767,1,1,49,50],[774,1,1,50,51],[775,1,1,51,52],[785,1,1,52,53],[787,1,1,53,54],[788,1,1,54,55]]],[24,4,4,55,59,[[799,4,4,55,59]]],[26,1,1,59,60,[[857,1,1,59,60]]],[28,1,1,60,61,[[877,1,1,60,61]]],[32,1,1,61,62,[[894,1,1,61,62]]],[34,1,1,62,63,[[904,1,1,62,63]]],[37,1,1,63,64,[[923,1,1,63,64]]]],[1788,1853,4449,4461,5475,5990,5993,5994,6653,8654,10986,11019,11089,12907,12927,12947,13091,13191,13195,13259,13391,13667,13679,13690,13692,13717,13796,13871,14396,14473,14529,14717,15312,15374,15443,16126,16130,16574,16978,17084,17199,17217,17229,17252,17270,18069,19362,19364,19484,19493,19673,19713,19973,20003,20030,20355,20381,20389,20393,21976,22319,22597,22753,23066]]],["+",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13667]]],["Man's",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16978]]],["child",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12907]]],["man",[52,51,[[3,2,2,0,2,[[140,2,2,0,2]]],[4,2,1,2,3,[[174,2,1,2,3]]],[5,3,3,3,6,[[193,3,3,3,6]]],[6,1,1,6,7,[[215,1,1,6,7]]],[9,1,1,7,8,[[289,1,1,7,8]]],[12,1,1,8,9,[[360,1,1,8,9]]],[17,12,12,9,21,[[438,1,1,9,10],[439,1,1,10,11],[449,2,2,11,13],[451,1,1,13,14],[457,1,1,14,15],[468,1,1,15,16],[469,3,3,16,19],[473,1,1,19,20],[475,1,1,20,21]]],[18,9,9,21,30,[[511,1,1,21,22],[514,1,1,22,23],[517,1,1,23,24],[529,1,1,24,25],[565,1,1,25,26],[566,1,1,26,27],[571,1,1,27,28],[604,1,1,28,29],[605,1,1,29,30]]],[19,7,7,30,37,[[633,1,1,30,31],[651,1,1,31,32],[655,2,2,32,34],[656,1,1,34,35],[657,2,2,35,37]]],[23,6,6,37,43,[[761,2,2,37,39],[766,1,1,39,40],[767,1,1,40,41],[774,1,1,41,42],[775,1,1,42,43]]],[24,4,4,43,47,[[799,4,4,43,47]]],[26,1,1,47,48,[[857,1,1,47,48]]],[32,1,1,48,49,[[894,1,1,48,49]]],[34,1,1,49,50,[[904,1,1,49,50]]],[37,1,1,50,51,[[923,1,1,50,51]]]],[4449,4461,5475,5990,5993,5994,6653,8654,10986,12927,12947,13191,13195,13259,13391,13679,13690,13692,13717,13796,13871,14396,14473,14529,14717,15312,15374,15443,16126,16130,16574,17084,17199,17217,17229,17252,17270,19362,19364,19484,19493,19673,19713,20355,20381,20389,20393,21976,22597,22753,23066]]],["man's",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13091]]],["men",[6,6,[[1,2,2,0,2,[[59,1,1,0,1],[61,1,1,1,2]]],[12,2,2,2,4,[[361,1,1,2,3],[363,1,1,3,4]]],[23,2,2,4,6,[[787,1,1,4,5],[788,1,1,5,6]]]],[1788,1853,11019,11089,20003,20030]]],["mighty",[2,2,[[22,1,1,0,1,[[700,1,1,0,1]]],[23,1,1,1,2,[[785,1,1,1,2]]]],[18069,19973]]],["one",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22319]]]]},{"k":"H1398","v":[["Geber",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8863]]]]},{"k":"H1399","v":[["man",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14143]]]]},{"k":"H1400","v":[["*",[21,20,[[14,4,4,0,4,[[406,1,1,0,1],[407,2,2,1,3],[408,1,1,3,4]]],[26,17,16,4,20,[[851,1,1,4,5],[852,11,10,5,15],[854,1,1,15,16],[855,4,4,16,20]]]],[12131,12138,12144,12159,21783,21815,21819,21820,21827,21828,21829,21830,21831,21832,21834,21885,21910,21916,21920,21929]]],["certain",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21815,21819]]],["man",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[854,1,1,1,2]]]],[21783,21885]]],["men",[17,17,[[14,4,4,0,4,[[406,1,1,0,1],[407,2,2,1,3],[408,1,1,3,4]]],[26,13,13,4,17,[[852,9,9,4,13],[855,4,4,13,17]]]],[12131,12138,12144,12159,21819,21820,21827,21828,21829,21830,21831,21832,21834,21910,21916,21920,21929]]]]},{"k":"H1401","v":[["+",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21827]]]]},{"k":"H1402","v":[["Gibbar",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12047]]]]},{"k":"H1403","v":[["Gabriel",[2,2,[[26,2,2,0,2,[[857,1,1,0,1],[858,1,1,1,2]]]],[21977,22009]]]]},{"k":"H1404","v":[["*",[9,9,[[0,3,3,0,3,[[15,3,3,0,3]]],[11,1,1,3,4,[[317,1,1,3,4]]],[18,1,1,4,5,[[600,1,1,4,5]]],[19,1,1,5,6,[[657,1,1,5,6]]],[22,3,3,6,9,[[702,1,1,6,7],[725,2,2,7,9]]]],[385,389,390,9650,16100,17274,18097,18604,18606]]],["lady",[2,2,[[22,2,2,0,2,[[725,2,2,0,2]]]],[18604,18606]]],["mistress",[7,7,[[0,3,3,0,3,[[15,3,3,0,3]]],[11,1,1,3,4,[[317,1,1,3,4]]],[18,1,1,4,5,[[600,1,1,4,5]]],[19,1,1,5,6,[[657,1,1,5,6]]],[22,1,1,6,7,[[702,1,1,6,7]]]],[385,389,390,9650,16100,17274,18097]]]]},{"k":"H1405","v":[["Gibbethon",[6,5,[[5,2,2,0,2,[[205,1,1,0,1],[207,1,1,1,2]]],[10,4,3,2,5,[[305,2,1,2,3],[306,2,2,3,5]]]],[6365,6404,9276,9298,9300]]]]},{"k":"H1406","v":[["*",[30,27,[[1,2,2,0,2,[[79,1,1,0,1],[86,1,1,1,2]]],[4,1,1,2,3,[[174,1,1,2,3]]],[5,3,2,3,5,[[188,3,2,3,5]]],[6,2,2,5,7,[[219,1,1,5,6],[226,1,1,6,7]]],[8,2,2,7,9,[[244,2,2,7,9]]],[9,4,3,9,12,[[277,2,1,9,10],[282,1,1,10,11],[284,1,1,11,12]]],[11,2,2,12,14,[[331,1,1,12,13],[335,1,1,13,14]]],[15,1,1,14,15,[[420,1,1,14,15]]],[18,2,2,15,17,[[579,1,1,15,16],[606,1,1,16,17]]],[19,2,2,17,19,[[648,1,1,17,18],[652,1,1,18,19]]],[22,3,3,19,22,[[693,1,1,19,20],[700,1,1,20,21],[715,1,1,21,22]]],[23,3,3,22,25,[[763,1,1,22,23],[776,1,1,23,24],[792,1,1,24,25]]],[25,2,1,25,26,[[841,2,1,25,26]]],[35,1,1,26,27,[[906,1,1,26,27]]]],[2385,2630,5478,5875,5877,6805,6976,7416,7417,8261,8448,8502,10087,10177,12509,15528,16138,16993,17137,17963,18053,18379,19420,19760,20118,21490,22792]]],["+",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21490]]],["house",[3,3,[[8,2,2,0,2,[[244,2,2,0,2]]],[15,1,1,2,3,[[420,1,1,2,3]]]],[7416,7417,12509]]],["houses",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17963]]],["housetop",[2,2,[[19,2,2,0,2,[[648,1,1,0,1],[652,1,1,1,2]]]],[16993,17137]]],["housetops",[6,6,[[11,1,1,0,1,[[331,1,1,0,1]]],[18,1,1,1,2,[[606,1,1,1,2]]],[22,2,2,2,4,[[700,1,1,2,3],[715,1,1,3,4]]],[23,1,1,4,5,[[792,1,1,4,5]]],[35,1,1,5,6,[[906,1,1,5,6]]]],[10087,16138,18053,18379,20118,22792]]],["roof",[9,7,[[4,1,1,0,1,[[174,1,1,0,1]]],[5,3,2,1,3,[[188,3,2,1,3]]],[6,1,1,3,4,[[226,1,1,3,4]]],[9,3,2,4,6,[[277,2,1,4,5],[284,1,1,5,6]]],[25,1,1,6,7,[[841,1,1,6,7]]]],[5478,5875,5877,6976,8261,8502,21490]]],["roofs",[2,2,[[23,2,2,0,2,[[763,1,1,0,1],[776,1,1,1,2]]]],[19420,19760]]],["top",[6,6,[[1,2,2,0,2,[[79,1,1,0,1],[86,1,1,1,2]]],[6,1,1,2,3,[[219,1,1,2,3]]],[9,1,1,3,4,[[282,1,1,3,4]]],[11,1,1,4,5,[[335,1,1,4,5]]],[18,1,1,5,6,[[579,1,1,5,6]]]],[2385,2630,6805,8448,10177,15528]]]]},{"k":"H1407","v":[["coriander",[2,2,[[1,1,1,0,1,[[65,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]]],[1978,4031]]]]},{"k":"H1408","v":[]},{"k":"H1409","v":[["troop",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18908]]]]},{"k":"H1410","v":[["*",[71,68,[[0,4,4,0,4,[[29,1,1,0,1],[34,1,1,1,2],[45,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[3,19,18,5,23,[[117,3,3,5,8],[118,2,1,8,9],[123,1,1,9,10],[126,1,1,10,11],[129,1,1,11,12],[142,2,2,12,14],[148,8,8,14,22],[150,1,1,22,23]]],[4,3,2,23,25,[[179,1,1,23,24],[185,2,1,24,25]]],[5,20,19,25,44,[[190,1,1,25,26],[199,3,2,26,28],[204,1,1,28,29],[206,1,1,29,30],[207,2,2,30,32],[208,12,12,32,44]]],[8,2,2,44,46,[[248,1,1,44,45],[257,1,1,45,46]]],[9,6,6,46,52,[[290,6,6,46,52]]],[12,11,11,52,63,[[339,1,1,52,53],[342,1,1,53,54],[343,2,2,54,56],[349,1,1,56,57],[358,5,5,57,62],[366,1,1,62,63]]],[13,1,1,63,64,[[395,1,1,63,64]]],[23,1,1,64,65,[[793,1,1,64,65]]],[25,3,3,65,68,[[849,3,3,65,68]]]],[841,1037,1402,1492,1536,3618,3628,3629,3672,3892,4008,4090,4504,4507,4719,4720,4724,4743,4747,4749,4751,4752,4830,5598,5830,5922,6178,6182,6300,6380,6388,6419,6435,6436,6437,6439,6441,6447,6451,6456,6457,6458,6459,6460,7492,7792,8697,8703,8705,8706,8710,8711,10308,10439,10517,10534,10734,10943,10945,10947,10952,10953,11193,11816,20128,21729,21730,21736]]],["+",[2,2,[[5,1,1,0,1,[[207,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]]],[6419,10534]]],["Gad",[69,66,[[0,4,4,0,4,[[29,1,1,0,1],[34,1,1,1,2],[45,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[3,19,18,5,23,[[117,3,3,5,8],[118,2,1,8,9],[123,1,1,9,10],[126,1,1,10,11],[129,1,1,11,12],[142,2,2,12,14],[148,8,8,14,22],[150,1,1,22,23]]],[4,3,2,23,25,[[179,1,1,23,24],[185,2,1,24,25]]],[5,19,18,25,43,[[190,1,1,25,26],[199,3,2,26,28],[204,1,1,28,29],[206,1,1,29,30],[207,1,1,30,31],[208,12,12,31,43]]],[8,2,2,43,45,[[248,1,1,43,44],[257,1,1,44,45]]],[9,6,6,45,51,[[290,6,6,45,51]]],[12,10,10,51,61,[[339,1,1,51,52],[342,1,1,52,53],[343,1,1,53,54],[349,1,1,54,55],[358,5,5,55,60],[366,1,1,60,61]]],[13,1,1,61,62,[[395,1,1,61,62]]],[23,1,1,62,63,[[793,1,1,62,63]]],[25,3,3,63,66,[[849,3,3,63,66]]]],[841,1037,1402,1492,1536,3618,3628,3629,3672,3892,4008,4090,4504,4507,4719,4720,4724,4743,4747,4749,4751,4752,4830,5598,5830,5922,6178,6182,6300,6380,6388,6435,6436,6437,6439,6441,6447,6451,6456,6457,6458,6459,6460,7492,7792,8697,8703,8705,8706,8710,8711,10308,10439,10517,10734,10943,10945,10947,10952,10953,11193,11816,20128,21729,21730,21736]]]]},{"k":"H1411","v":[["treasurers",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21809,21810]]]]},{"k":"H1412","v":[["Gudgodah",[2,1,[[4,2,1,0,1,[[162,2,1,0,1]]]],[5193]]]]},{"k":"H1413","v":[["*",[9,9,[[0,1,1,0,1,[[29,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[18,1,1,3,4,[[571,1,1,3,4]]],[23,4,4,4,8,[[749,1,1,4,5],[760,1,1,5,6],[785,1,1,6,7],[791,1,1,7,8]]],[32,1,1,8,9,[[897,1,1,8,9]]]],[841,5291,9369,15452,19065,19342,19962,20078,22634]]],["cometh",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[841]]],["themselves",[4,4,[[10,1,1,0,1,[[308,1,1,0,1]]],[23,3,3,1,4,[[749,1,1,1,2],[760,1,1,2,3],[785,1,1,3,4]]]],[9369,19065,19342,19962]]],["thyself",[1,1,[[23,1,1,0,1,[[791,1,1,0,1]]]],[20078]]],["together",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15452]]],["troops",[1,1,[[32,1,1,0,1,[[897,1,1,0,1]]]],[22634]]],["yourselves",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5291]]]]},{"k":"H1414","v":[["*",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21851,21860]]],["+",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21860]]],["down",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21851]]]]},{"k":"H1415","v":[["banks",[3,3,[[5,2,2,0,2,[[189,1,1,0,1],[190,1,1,1,2]]],[22,1,1,2,3,[[686,1,1,2,3]]]],[5908,5928,17814]]]]},{"k":"H1416","v":[["*",[33,29,[[0,1,1,0,1,[[48,1,1,0,1]]],[8,4,3,1,4,[[265,4,3,1,4]]],[9,3,3,4,7,[[269,1,1,4,5],[270,1,1,5,6],[288,1,1,6,7]]],[10,1,1,7,8,[[301,1,1,7,8]]],[11,8,5,8,13,[[317,1,1,8,9],[318,1,1,9,10],[325,2,2,10,12],[336,4,1,12,13]]],[12,3,3,13,16,[[344,1,1,13,14],[349,2,2,14,16]]],[13,5,5,16,21,[[388,1,1,16,17],[391,3,3,17,20],[392,1,1,20,21]]],[17,3,3,21,24,[[454,1,1,21,22],[460,1,1,22,23],[464,1,1,23,24]]],[18,1,1,24,25,[[495,1,1,24,25]]],[23,1,1,25,26,[[762,1,1,25,26]]],[27,2,2,26,28,[[867,1,1,26,27],[868,1,1,27,28]]],[32,1,1,28,29,[[897,1,1,28,29]]]],[1492,7986,7993,8001,8103,8122,8632,9132,9649,9697,9891,9892,10204,10539,10738,10741,11645,11713,11714,11717,11743,13309,13464,13557,14147,19406,22176,22179,22634]]],["+",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8103]]],["armies",[1,1,[[17,1,1,0,1,[[460,1,1,0,1]]]],[13464]]],["army",[4,4,[[13,3,3,0,3,[[391,3,3,0,3]]],[17,1,1,3,4,[[464,1,1,3,4]]]],[11713,11714,11717,13557]]],["band",[4,4,[[10,1,1,0,1,[[301,1,1,0,1]]],[11,1,1,1,2,[[325,1,1,1,2]]],[12,2,2,2,4,[[349,2,2,2,4]]]],[9132,9892,10738,10741]]],["bands",[9,6,[[9,1,1,0,1,[[270,1,1,0,1]]],[11,6,3,1,4,[[318,1,1,1,2],[325,1,1,2,3],[336,4,1,3,4]]],[12,1,1,4,5,[[344,1,1,4,5]]],[13,1,1,5,6,[[392,1,1,5,6]]]],[8122,9697,9891,10204,10539,11743]]],["companies",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9649]]],["company",[3,2,[[8,3,2,0,2,[[265,3,2,0,2]]]],[7993,8001]]],["men",[1,1,[[13,1,1,0,1,[[388,1,1,0,1]]]],[11645]]],["robbers",[2,2,[[27,2,2,0,2,[[867,1,1,0,1],[868,1,1,1,2]]]],[22176,22179]]],["troop",[5,5,[[0,1,1,0,1,[[48,1,1,0,1]]],[8,1,1,1,2,[[265,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]],[23,1,1,4,5,[[762,1,1,4,5]]]],[1492,7986,8632,14147,19406]]],["troops",[2,2,[[17,1,1,0,1,[[454,1,1,0,1]]],[32,1,1,1,2,[[897,1,1,1,2]]]],[13309,22634]]]]},{"k":"H1417","v":[["furrows",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14870]]]]},{"k":"H1418","v":[["cuttings",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20117]]]]},{"k":"H1419","v":[["*",[528,498,[[0,33,31,0,31,[[0,3,2,0,2],[3,1,1,2,3],[9,2,2,3,5],[11,2,2,5,7],[14,3,3,7,10],[16,1,1,10,11],[17,1,1,11,12],[18,1,1,12,13],[19,1,1,13,14],[20,2,2,14,16],[26,5,5,16,21],[28,3,3,21,24],[38,3,2,24,26],[40,1,1,26,27],[43,1,1,27,28],[44,1,1,28,29],[45,1,1,29,30],[49,1,1,30,31]]],[1,15,15,31,46,[[52,1,1,31,32],[55,1,1,32,33],[56,1,1,33,34],[60,2,2,34,36],[61,1,1,36,37],[63,1,1,37,38],[64,1,1,38,39],[67,2,2,39,41],[81,5,5,41,46]]],[2,2,2,46,48,[[108,1,1,46,47],[110,1,1,47,48]]],[3,8,7,48,55,[[129,1,1,48,49],[130,1,1,49,50],[138,1,1,50,51],[150,2,2,51,53],[151,3,2,53,55]]],[4,44,41,55,96,[[153,5,4,55,59],[154,3,3,59,62],[156,8,8,62,70],[157,2,2,70,72],[158,2,2,72,74],[159,3,3,74,77],[160,1,1,77,78],[161,4,3,78,81],[162,2,2,81,83],[163,2,2,83,85],[170,1,1,85,86],[177,2,2,86,88],[178,2,2,88,90],[179,1,1,90,91],[180,1,1,91,92],[181,4,3,92,95],[186,1,1,95,96]]],[5,26,24,96,120,[[187,2,1,96,97],[192,2,2,97,99],[193,2,2,99,101],[194,1,1,101,102],[195,1,1,102,103],[196,7,6,103,109],[200,2,2,109,111],[201,2,2,111,113],[203,1,1,113,114],[206,1,1,114,115],[208,1,1,115,116],[209,2,2,116,118],[210,2,2,118,120]]],[6,12,12,120,132,[[212,1,1,120,121],[215,2,2,121,123],[221,1,1,123,124],[225,2,2,124,126],[226,4,4,126,130],[231,2,2,130,132]]],[8,35,34,132,166,[[237,1,1,132,133],[239,4,4,133,137],[240,2,1,137,138],[241,5,5,138,143],[242,1,1,143,144],[247,2,2,144,146],[249,3,3,146,149],[252,4,4,149,153],[253,1,1,153,154],[254,3,3,154,157],[255,1,1,157,158],[257,1,1,158,159],[258,1,1,159,160],[260,2,2,160,162],[263,1,1,162,163],[265,3,3,163,166]]],[9,19,16,166,182,[[269,1,1,166,167],[271,1,1,167,168],[273,2,1,168,169],[279,4,3,169,172],[281,1,1,172,173],[284,5,4,173,177],[285,2,2,177,179],[286,1,1,179,180],[289,2,2,180,182]]],[10,22,21,182,203,[[291,1,1,182,183],[292,1,1,183,184],[293,3,2,184,186],[294,1,1,186,187],[295,1,1,187,188],[297,3,3,188,191],[298,3,3,191,194],[300,1,1,194,195],[308,3,3,195,198],[309,1,1,198,199],[310,3,3,199,202],[312,1,1,202,203]]],[11,29,28,203,231,[[315,1,1,203,204],[316,2,2,204,206],[317,2,2,206,208],[318,2,2,208,210],[319,1,1,210,211],[320,2,2,211,213],[322,3,3,213,216],[324,1,1,216,217],[328,1,1,217,218],[329,2,2,218,220],[330,3,2,220,222],[332,1,1,222,223],[334,3,3,223,226],[335,3,3,226,229],[337,2,2,229,231]]],[12,11,11,231,242,[[348,1,1,231,232],[349,2,2,232,234],[353,1,1,234,235],[354,1,1,235,236],[359,1,1,236,237],[362,1,1,237,238],[363,1,1,238,239],[366,3,3,239,242]]],[13,27,25,242,267,[[367,2,2,242,244],[368,3,2,244,246],[369,1,1,246,247],[370,1,1,247,248],[372,1,1,248,249],[373,1,1,249,250],[375,1,1,250,251],[381,2,2,251,253],[382,1,1,253,254],[384,1,1,254,255],[386,1,1,255,256],[387,1,1,256,257],[392,1,1,257,258],[394,2,1,258,259],[396,2,2,259,261],[397,1,1,261,262],[398,1,1,262,263],[400,3,3,263,266],[402,1,1,266,267]]],[14,6,6,267,273,[[405,3,3,267,270],[411,2,2,270,272],[412,1,1,272,273]]],[15,28,27,273,300,[[413,3,3,273,276],[414,1,1,276,277],[415,3,3,277,280],[416,1,1,280,281],[417,2,2,281,283],[418,1,1,283,284],[419,1,1,284,285],[420,3,3,285,288],[421,6,6,288,294],[423,1,1,294,295],[424,3,2,295,297],[425,3,3,297,300]]],[16,9,8,300,308,[[426,2,2,300,302],[427,1,1,302,303],[429,2,2,303,305],[433,1,1,305,306],[434,2,1,306,307],[435,1,1,307,308]]],[17,6,6,308,314,[[436,2,2,308,310],[438,1,1,310,311],[440,1,1,311,312],[444,1,1,312,313],[472,1,1,313,314]]],[18,30,28,314,342,[[489,1,1,314,315],[498,1,1,315,316],[524,1,1,316,317],[525,1,1,317,318],[534,1,1,318,319],[548,1,1,319,320],[553,1,1,320,321],[554,1,1,321,322],[563,2,2,322,324],[572,2,1,324,325],[573,1,1,325,326],[576,2,2,326,328],[581,2,1,328,329],[583,1,1,329,330],[585,1,1,330,331],[588,1,1,331,332],[592,1,1,332,333],[608,1,1,333,334],[612,1,1,334,335],[613,3,3,335,338],[615,1,1,338,339],[622,2,2,339,341],[624,1,1,341,342]]],[19,4,4,342,346,[[645,1,1,342,343],[646,1,1,343,344],[652,1,1,344,345],[654,1,1,345,346]]],[20,4,3,346,349,[[667,3,2,346,348],[668,1,1,348,349]]],[22,14,13,349,362,[[683,1,1,349,350],[686,1,1,350,351],[687,1,1,351,352],[690,1,1,352,353],[705,2,2,353,355],[707,1,1,355,356],[712,1,1,356,357],[714,3,2,357,359],[716,1,1,359,360],[732,1,1,360,361],[734,1,1,361,362]]],[23,48,47,362,409,[[748,1,1,362,363],[749,1,1,363,364],[750,3,3,364,367],[752,1,1,367,368],[754,3,2,368,370],[755,1,1,370,371],[758,1,1,371,372],[760,2,2,372,374],[765,2,2,374,376],[766,1,1,376,377],[769,2,2,377,379],[770,1,1,379,380],[771,2,2,380,382],[772,1,1,382,383],[774,1,1,383,384],[775,2,2,384,386],[776,6,6,386,392],[777,1,1,392,393],[780,1,1,393,394],[786,2,2,394,396],[787,1,1,396,397],[788,4,4,397,401],[789,1,1,401,402],[792,1,1,402,403],[794,3,3,403,406],[795,2,2,406,408],[796,1,1,408,409]]],[24,1,1,409,410,[[798,1,1,409,410]]],[25,36,33,410,443,[[802,1,1,410,411],[804,2,2,411,413],[809,5,4,413,417],[810,2,2,417,419],[812,1,1,419,420],[817,2,2,420,422],[818,6,4,422,426],[822,1,1,426,427],[824,1,1,427,428],[826,1,1,428,429],[830,2,2,429,431],[837,1,1,431,432],[838,1,1,432,433],[839,3,3,433,436],[840,1,1,436,437],[844,1,1,437,438],[848,4,4,438,442],[849,1,1,442,443]]],[26,15,14,443,457,[[857,2,2,443,445],[858,2,2,445,447],[859,4,4,447,451],[860,6,5,451,456],[861,1,1,456,457]]],[27,1,1,457,458,[[862,1,1,457,458]]],[28,3,3,458,461,[[877,3,3,458,461]]],[29,1,1,461,462,[[884,1,1,461,462]]],[31,14,13,462,475,[[889,7,6,462,468],[891,4,4,468,472],[892,3,3,472,475]]],[32,1,1,475,476,[[899,1,1,475,476]]],[33,2,2,476,478,[[900,1,1,476,477],[902,1,1,477,478]]],[35,2,2,478,480,[[906,2,2,478,480]]],[36,6,6,480,486,[[909,3,3,480,483],[910,3,3,483,486]]],[37,10,9,486,495,[[911,2,2,486,488],[913,2,2,488,490],[914,1,1,490,491],[916,1,1,491,492],[917,1,1,492,493],[918,2,1,493,494],[924,1,1,494,495]]],[38,4,3,495,498,[[925,3,2,495,497],[928,1,1,497,498]]]],[15,20,92,246,255,300,315,372,374,378,417,442,468,504,521,531,728,742,760,761,769,797,802,811,1158,1163,1224,1336,1365,1389,1516,1582,1661,1689,1809,1812,1846,1920,1936,2010,2021,2448,2449,2459,2468,2469,3296,3355,4103,4120,4393,4822,4823,4870,4873,4899,4909,4911,4920,4945,4948,4959,5010,5011,5012,5036,5038,5040,5041,5042,5075,5078,5096,5108,5130,5132,5134,5152,5158,5159,5186,5203,5207,5215,5231,5400,5560,5561,5571,5574,5587,5670,5682,5703,5707,5851,5855,5954,5969,5985,6002,6031,6038,6066,6074,6075,6082,6084,6091,6199,6202,6214,6249,6292,6378,6436,6464,6469,6493,6502,6552,6638,6639,6862,6937,6947,6954,6955,6964,6972,7104,7107,7257,7302,7303,7307,7314,7328,7340,7345,7346,7349,7350,7362,7476,7482,7528,7541,7553,7631,7632,7643,7646,7693,7711,7714,7728,7732,7802,7815,7863,7897,7954,7980,7994,7997,8119,8142,8189,8332,8333,8353,8412,8485,8487,8495,8507,8515,8543,8562,8663,8665,8757,8792,8820,8822,8857,8895,8943,8944,8946,9027,9040,9050,9097,9368,9369,9386,9398,9421,9429,9436,9511,9603,9611,9641,9648,9660,9697,9699,9713,9731,9740,9799,9804,9812,9860,9978,10004,10019,10043,10052,10101,10149,10153,10158,10167,10169,10191,10231,10248,10687,10734,10742,10845,10871,10972,11054,11090,11165,11173,11186,11202,11204,11216,11220,11234,11255,11314,11332,11381,11503,11504,11523,11572,11606,11638,11747,11769,11848,11853,11869,11893,11942,11954,11963,12011,12108,12109,12110,12244,12250,12264,12299,12301,12306,12317,12328,12347,12354,12373,12383,12389,12404,12424,12499,12505,12510,12515,12529,12536,12537,12543,12548,12602,12655,12667,12676,12698,12699,12707,12722,12742,12763,12765,12832,12838,12869,12872,12888,12923,12960,13061,13774,14069,14196,14627,14635,14778,14995,15082,15106,15294,15297,15457,15469,15501,15502,15596,15672,15746,15795,15843,16149,16180,16200,16203,16213,16236,16323,16328,16356,16917,16944,17119,17183,17488,17489,17497,17748,17808,17831,17906,18152,18164,18199,18309,18334,18343,18393,18730,18765,19033,19063,19090,19102,19111,19163,19207,19223,19242,19310,19342,19346,19445,19446,19462,19548,19566,19591,19601,19603,19626,19674,19699,19725,19748,19749,19750,19752,19768,19773,19778,19849,19976,19983,20006,20017,20022,20025,20036,20045,20083,20175,20188,20207,20266,20267,20289,20345,20468,20514,20515,20610,20617,20619,20622,20623,20631,20668,20808,20823,20828,20832,20834,20842,20958,21011,21100,21186,21201,21382,21407,21438,21440,21444,21465,21586,21689,21694,21698,21699,21730,21969,21982,21992,22000,22016,22019,22022,22023,22038,22049,22061,22064,22080,22082,22105,22322,22336,22342,22461,22533,22535,22541,22543,22547,22548,22560,22561,22563,22565,22569,22574,22579,22667,22687,22722,22797,22801,22841,22852,22854,22857,22859,22864,22892,22893,22913,22920,22929,22958,22974,22978,23072,23100,23103,23143]]],["+",[20,20,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,1,1,1,2,[[52,1,1,1,2]]],[5,1,1,2,3,[[210,1,1,2,3]]],[6,1,1,3,4,[[231,1,1,3,4]]],[8,1,1,4,5,[[237,1,1,4,5]]],[9,1,1,5,6,[[279,1,1,5,6]]],[10,2,2,6,8,[[308,2,2,6,8]]],[11,1,1,8,9,[[332,1,1,8,9]]],[13,2,2,9,11,[[372,1,1,9,10],[400,1,1,10,11]]],[15,1,1,11,12,[[414,1,1,11,12]]],[16,2,2,12,14,[[426,2,2,12,14]]],[22,2,2,14,16,[[716,1,1,14,15],[734,1,1,15,16]]],[26,1,1,16,17,[[860,1,1,16,17]]],[31,3,3,17,20,[[891,1,1,17,18],[892,2,2,18,20]]]],[760,1582,6493,7104,7257,8332,9368,9369,10101,11314,11963,12317,12707,12722,18393,18765,22038,22563,22569,22574]]],["Great",[5,5,[[18,3,3,0,3,[[525,1,1,0,1],[622,1,1,1,2],[624,1,1,2,3]]],[23,2,2,3,5,[[776,2,2,3,5]]]],[14635,16323,16356,19749,19750]]],["elder",[8,8,[[0,3,3,0,3,[[9,1,1,0,1],[26,1,1,1,2],[28,1,1,2,3]]],[8,1,1,3,4,[[253,1,1,3,4]]],[10,1,1,4,5,[[292,1,1,4,5]]],[25,3,3,5,8,[[817,2,2,5,7],[824,1,1,7,8]]]],[255,769,811,7693,8792,20808,20823,21011]]],["eldest",[6,6,[[0,3,3,0,3,[[26,2,2,0,2],[43,1,1,2,3]]],[8,3,3,3,6,[[252,3,3,3,6]]]],[728,742,1336,7631,7632,7646]]],["exceedingly",[2,2,[[31,2,2,0,2,[[889,2,2,0,2]]]],[22541,22547]]],["great",[389,371,[[0,21,21,0,21,[[0,2,2,0,2],[9,1,1,2,3],[11,2,2,3,5],[14,3,3,5,8],[16,1,1,8,9],[17,1,1,9,10],[18,1,1,10,11],[19,1,1,11,12],[20,2,2,12,14],[26,1,1,14,15],[28,1,1,15,16],[38,1,1,16,17],[40,1,1,17,18],[44,1,1,18,19],[45,1,1,19,20],[49,1,1,20,21]]],[1,12,12,21,33,[[55,1,1,21,22],[56,1,1,22,23],[60,2,2,23,25],[61,1,1,25,26],[63,1,1,26,27],[67,1,1,27,28],[81,5,5,28,33]]],[3,3,3,33,36,[[129,1,1,33,34],[150,2,2,34,36]]],[4,36,35,36,71,[[153,4,4,36,40],[154,3,3,40,43],[156,6,6,43,49],[157,2,2,49,51],[158,2,2,51,53],[159,1,1,53,54],[160,1,1,54,55],[161,2,2,55,57],[162,2,2,57,59],[163,1,1,59,60],[170,1,1,60,61],[177,2,2,61,63],[178,2,2,63,65],[179,1,1,65,66],[180,1,1,66,67],[181,4,3,67,70],[186,1,1,70,71]]],[5,23,22,71,93,[[187,2,1,71,72],[192,2,2,72,74],[193,2,2,74,76],[194,1,1,76,77],[195,1,1,77,78],[196,6,6,78,84],[200,2,2,84,86],[201,2,2,86,88],[203,1,1,88,89],[208,1,1,89,90],[209,2,2,90,92],[210,1,1,92,93]]],[6,11,11,93,104,[[212,1,1,93,94],[215,2,2,94,96],[221,1,1,96,97],[225,2,2,97,99],[226,4,4,99,103],[231,1,1,103,104]]],[8,27,26,104,130,[[239,4,4,104,108],[240,2,1,108,109],[241,5,5,109,114],[242,1,1,114,115],[247,2,2,115,117],[249,3,3,117,120],[252,1,1,120,121],[254,3,3,121,124],[255,1,1,124,125],[258,1,1,125,126],[260,1,1,126,127],[265,3,3,127,130]]],[9,12,10,130,140,[[271,1,1,130,131],[273,2,1,131,132],[284,5,4,132,136],[285,1,1,136,137],[286,1,1,137,138],[289,2,2,138,140]]],[10,18,17,140,157,[[291,1,1,140,141],[293,3,2,141,143],[294,1,1,143,144],[295,1,1,144,145],[297,3,3,145,148],[298,2,2,148,150],[300,1,1,150,151],[308,1,1,151,152],[309,1,1,152,153],[310,3,3,153,156],[312,1,1,156,157]]],[11,20,20,157,177,[[315,1,1,157,158],[316,2,2,158,160],[317,2,2,160,162],[318,2,2,162,164],[319,1,1,164,165],[320,1,1,165,166],[322,1,1,166,167],[328,1,1,167,168],[329,2,2,168,170],[330,2,2,170,172],[334,1,1,172,173],[335,2,2,173,175],[337,2,2,175,177]]],[12,9,9,177,186,[[348,1,1,177,178],[349,1,1,178,179],[353,1,1,179,180],[359,1,1,180,181],[362,1,1,181,182],[363,1,1,182,183],[366,3,3,183,186]]],[13,20,18,186,204,[[367,2,2,186,188],[368,3,2,188,190],[370,1,1,190,191],[373,1,1,191,192],[375,1,1,192,193],[381,1,1,193,194],[382,1,1,194,195],[384,1,1,195,196],[387,1,1,196,197],[392,1,1,197,198],[394,2,1,198,199],[396,2,2,199,201],[397,1,1,201,202],[400,1,1,202,203],[402,1,1,203,204]]],[14,3,3,204,207,[[405,1,1,204,205],[411,2,2,205,207]]],[15,23,22,207,229,[[413,3,3,207,210],[415,1,1,210,211],[416,1,1,211,212],[417,2,2,212,214],[418,1,1,214,215],[419,1,1,215,216],[420,3,3,216,219],[421,5,5,219,224],[423,1,1,224,225],[424,3,2,225,227],[425,2,2,227,229]]],[16,5,5,229,234,[[427,1,1,229,230],[429,1,1,230,231],[433,1,1,231,232],[434,1,1,232,233],[435,1,1,233,234]]],[17,2,2,234,236,[[436,1,1,234,235],[438,1,1,235,236]]],[18,23,21,236,257,[[498,1,1,236,237],[524,1,1,237,238],[534,1,1,238,239],[553,1,1,239,240],[554,1,1,240,241],[563,2,2,241,243],[572,2,1,243,244],[573,1,1,244,245],[576,2,2,245,247],[581,2,1,247,248],[585,1,1,248,249],[588,1,1,249,250],[592,1,1,250,251],[612,1,1,251,252],[613,3,3,252,255],[615,1,1,255,256],[622,1,1,256,257]]],[19,3,3,257,260,[[645,1,1,257,258],[646,1,1,258,259],[652,1,1,259,260]]],[20,4,3,260,263,[[667,3,2,260,262],[668,1,1,262,263]]],[22,11,11,263,274,[[683,1,1,263,264],[686,1,1,264,265],[687,1,1,265,266],[690,1,1,266,267],[705,2,2,267,269],[707,1,1,269,270],[712,1,1,270,271],[714,2,2,271,273],[732,1,1,273,274]]],[23,38,37,274,311,[[748,1,1,274,275],[750,2,2,275,277],[754,3,2,277,279],[755,1,1,279,280],[758,1,1,280,281],[760,2,2,281,283],[765,2,2,283,285],[766,1,1,285,286],[769,2,2,286,288],[770,1,1,288,289],[771,2,2,289,291],[772,1,1,291,292],[774,1,1,292,293],[775,1,1,293,294],[776,4,4,294,298],[777,1,1,298,299],[780,1,1,299,300],[787,1,1,300,301],[788,3,3,301,304],[792,1,1,304,305],[794,3,3,305,308],[795,2,2,308,310],[796,1,1,310,311]]],[24,1,1,311,312,[[798,1,1,311,312]]],[25,25,23,312,335,[[802,1,1,312,313],[804,2,2,313,315],[809,1,1,315,316],[810,1,1,316,317],[818,5,3,317,320],[822,1,1,320,321],[826,1,1,321,322],[830,2,2,322,324],[837,1,1,324,325],[838,1,1,325,326],[839,3,3,326,329],[840,1,1,329,330],[848,4,4,330,334],[849,1,1,334,335]]],[26,13,12,335,347,[[857,2,2,335,337],[858,2,2,337,339],[859,3,3,339,342],[860,5,4,342,346],[861,1,1,346,347]]],[27,1,1,347,348,[[862,1,1,347,348]]],[28,3,3,348,351,[[877,3,3,348,351]]],[29,1,1,351,352,[[884,1,1,351,352]]],[31,7,7,352,359,[[889,4,4,352,356],[891,2,2,356,358],[892,1,1,358,359]]],[32,1,1,359,360,[[899,1,1,359,360]]],[33,1,1,360,361,[[900,1,1,360,361]]],[35,2,2,361,363,[[906,2,2,361,363]]],[37,6,5,363,368,[[911,1,1,363,364],[914,1,1,364,365],[917,1,1,365,366],[918,2,1,366,367],[924,1,1,367,368]]],[38,4,3,368,371,[[925,3,2,368,370],[928,1,1,370,371]]]],[15,20,246,300,315,372,374,378,417,442,468,504,521,531,761,797,1158,1224,1365,1389,1516,1661,1689,1809,1812,1846,1920,2021,2448,2449,2459,2468,2469,4103,4822,4823,4899,4909,4911,4920,4945,4948,4959,5010,5011,5012,5036,5038,5040,5075,5078,5096,5108,5130,5152,5158,5159,5203,5207,5215,5400,5560,5561,5571,5574,5587,5670,5682,5703,5707,5851,5855,5954,5969,5985,6002,6031,6038,6066,6074,6075,6082,6084,6091,6199,6202,6214,6249,6292,6436,6464,6469,6502,6552,6638,6639,6862,6937,6947,6954,6955,6964,6972,7107,7302,7303,7307,7314,7328,7340,7345,7346,7349,7350,7362,7476,7482,7528,7541,7553,7643,7711,7714,7728,7732,7815,7863,7980,7994,7997,8142,8189,8485,8487,8495,8507,8543,8562,8663,8665,8757,8820,8822,8857,8895,8943,8944,8946,9027,9050,9097,9386,9398,9421,9429,9436,9511,9603,9611,9641,9648,9660,9697,9699,9713,9740,9812,9978,10004,10019,10043,10052,10158,10167,10191,10231,10248,10687,10742,10845,10972,11054,11090,11165,11173,11186,11202,11204,11216,11220,11255,11332,11381,11503,11523,11572,11638,11747,11769,11848,11853,11869,11954,12011,12108,12244,12250,12299,12301,12306,12354,12373,12383,12389,12404,12424,12499,12505,12510,12529,12536,12537,12543,12548,12602,12655,12667,12676,12698,12742,12765,12832,12838,12869,12888,12923,14196,14627,14778,15082,15106,15294,15297,15457,15469,15501,15502,15596,15746,15795,15843,16180,16200,16203,16213,16236,16328,16917,16944,17119,17488,17489,17497,17748,17808,17831,17906,18152,18164,18199,18309,18334,18343,18730,19033,19090,19111,19207,19223,19242,19310,19342,19346,19445,19446,19462,19548,19566,19591,19601,19603,19626,19674,19699,19748,19752,19768,19773,19778,19849,20006,20017,20025,20036,20083,20175,20188,20207,20266,20267,20289,20345,20468,20514,20515,20610,20631,20828,20832,20834,20958,21100,21186,21201,21382,21407,21438,21440,21444,21465,21689,21694,21698,21699,21730,21969,21982,21992,22000,22019,22022,22023,22049,22061,22064,22080,22082,22105,22322,22336,22342,22461,22533,22535,22543,22548,22560,22561,22579,22667,22687,22797,22801,22892,22929,22974,22978,23072,23100,23103,23143]]],["greater",[19,19,[[0,3,3,0,3,[[0,1,1,0,1],[3,1,1,1,2],[38,1,1,2,3]]],[1,1,1,3,4,[[67,1,1,3,4]]],[3,1,1,4,5,[[130,1,1,4,5]]],[4,4,4,5,9,[[153,1,1,5,6],[156,1,1,6,7],[161,1,1,7,8],[163,1,1,8,9]]],[5,1,1,9,10,[[196,1,1,9,10]]],[9,2,2,10,12,[[279,2,2,10,12]]],[13,1,1,12,13,[[369,1,1,12,13]]],[16,1,1,13,14,[[434,1,1,13,14]]],[25,4,4,14,18,[[809,3,3,14,17],[844,1,1,17,18]]],[36,1,1,18,19,[[910,1,1,18,19]]]],[15,92,1158,2010,4120,4920,5042,5158,5231,6066,8332,8333,11234,12838,20610,20617,20619,21586,22864]]],["greatest",[8,8,[[12,1,1,0,1,[[349,1,1,0,1]]],[17,1,1,1,2,[[436,1,1,1,2]]],[23,6,6,2,8,[[750,1,1,2,3],[752,1,1,3,4],[775,1,1,4,5],[786,2,2,5,7],[788,1,1,7,8]]]],[10734,12872,19102,19163,19725,19976,19983,20022]]],["greatness",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1936]]],["high",[22,21,[[0,1,1,0,1,[[28,1,1,0,1]]],[2,1,1,1,2,[[110,1,1,1,2]]],[3,3,2,2,4,[[151,3,2,2,4]]],[5,1,1,4,5,[[206,1,1,4,5]]],[11,4,4,5,9,[[324,1,1,5,6],[334,2,2,6,8],[335,1,1,8,9]]],[13,1,1,9,10,[[400,1,1,9,10]]],[15,3,3,10,13,[[415,2,2,10,12],[425,1,1,12,13]]],[36,5,5,13,18,[[909,3,3,13,16],[910,2,2,16,18]]],[37,3,3,18,21,[[913,2,2,18,20],[916,1,1,20,21]]]],[802,3355,4870,4873,6378,9860,10149,10153,10169,11942,12328,12347,12699,22841,22852,22854,22857,22859,22913,22920,22958]]],["long",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22016]]],["loud",[19,19,[[0,1,1,0,1,[[38,1,1,0,1]]],[8,1,1,1,2,[[263,1,1,1,2]]],[9,2,2,2,4,[[281,1,1,2,3],[285,1,1,3,4]]],[10,1,1,4,5,[[298,1,1,4,5]]],[11,1,1,5,6,[[330,1,1,5,6]]],[13,3,3,6,9,[[381,1,1,6,7],[386,1,1,7,8],[398,1,1,8,9]]],[14,3,3,9,12,[[405,2,2,9,11],[412,1,1,11,12]]],[15,1,1,12,13,[[421,1,1,12,13]]],[16,1,1,13,14,[[429,1,1,13,14]]],[19,1,1,14,15,[[654,1,1,14,15]]],[22,1,1,15,16,[[714,1,1,15,16]]],[25,3,3,16,19,[[809,1,1,16,17],[810,1,1,17,18],[812,1,1,18,19]]]],[1163,7954,8412,8515,9040,10052,11504,11606,11893,12109,12110,12264,12515,12763,17183,18343,20622,20623,20668]]],["man",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8119]]],["matters",[1,1,[[18,1,1,0,1,[[608,1,1,0,1]]]],[16149]]],["men",[5,5,[[11,2,2,0,2,[[322,2,2,0,2]]],[12,1,1,2,3,[[354,1,1,2,3]]],[23,1,1,3,4,[[749,1,1,3,4]]],[33,1,1,4,5,[[902,1,1,4,5]]]],[9799,9804,10871,19063,22722]]],["mighty",[7,7,[[2,1,1,0,1,[[108,1,1,0,1]]],[4,4,4,1,5,[[156,1,1,1,2],[159,2,2,2,4],[161,1,1,4,5]]],[25,1,1,5,6,[[818,1,1,5,6]]],[31,1,1,6,7,[[889,1,1,6,7]]]],[3296,5041,5132,5134,5186,20842,22535]]],["more",[3,3,[[3,1,1,0,1,[[138,1,1,0,1]]],[8,2,2,1,3,[[257,1,1,1,2],[260,1,1,2,3]]]],[4393,7802,7897]]],["nobles",[1,1,[[31,1,1,0,1,[[891,1,1,0,1]]]],[22565]]],["sore",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8353]]],["things",[8,8,[[11,1,1,0,1,[[320,1,1,0,1]]],[17,3,3,1,4,[[440,1,1,1,2],[444,1,1,2,3],[472,1,1,3,4]]],[18,3,3,4,7,[[489,1,1,4,5],[548,1,1,5,6],[583,1,1,6,7]]],[23,1,1,7,8,[[789,1,1,7,8]]]],[9731,12960,13061,13774,14069,14995,15672,20045]]],["very",[1,1,[[37,1,1,0,1,[[911,1,1,0,1]]]],[22893]]]]},{"k":"H1420","v":[["*",[12,11,[[9,2,2,0,2,[[273,2,2,0,2]]],[12,4,3,2,5,[[354,3,2,2,4],[366,1,1,4,5]]],[16,3,3,5,8,[[426,1,1,5,6],[431,1,1,6,7],[435,1,1,7,8]]],[18,3,3,8,11,[[548,1,1,8,9],[622,2,2,9,11]]]],[8201,8203,10882,10884,11175,12706,12796,12868,14997,16323,16326]]],["dignity",[1,1,[[16,1,1,0,1,[[431,1,1,0,1]]]],[12796]]],["great",[1,1,[[9,1,1,0,1,[[273,1,1,0,1]]]],[8203]]],["greatness",[7,7,[[12,3,3,0,3,[[354,2,2,0,2],[366,1,1,2,3]]],[16,1,1,3,4,[[435,1,1,3,4]]],[18,3,3,4,7,[[548,1,1,4,5],[622,2,2,5,7]]]],[10882,10884,11175,12868,14997,16323,16326]]],["majesty",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12706]]],["things",[2,2,[[9,1,1,0,1,[[273,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]]],[8201,10882]]]]},{"k":"H1421","v":[["*",[3,3,[[22,2,2,0,2,[[721,1,1,0,1],[729,1,1,1,2]]],[35,1,1,2,3,[[907,1,1,2,3]]]],[18533,18680,22813]]],["+",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18680]]],["reproaches",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18533]]],["revilings",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22813]]]]},{"k":"H1422","v":[["taunt",[1,1,[[25,1,1,0,1,[[806,1,1,0,1]]]],[20561]]]]},{"k":"H1423","v":[["*",[16,16,[[0,5,5,0,5,[[26,2,2,0,2],[37,3,3,2,5]]],[1,2,2,5,7,[[72,1,1,5,6],[83,1,1,6,7]]],[4,1,1,7,8,[[166,1,1,7,8]]],[6,5,5,8,13,[[216,1,1,8,9],[223,2,2,9,11],[224,1,1,11,12],[225,1,1,12,13]]],[8,2,2,13,15,[[245,1,1,13,14],[251,1,1,14,15]]],[22,1,1,15,16,[[689,1,1,15,16]]]],[736,743,1136,1139,1142,2163,2522,5311,6673,6899,6903,6915,6930,7421,7615,17890]]],["+",[7,7,[[0,2,2,0,2,[[37,2,2,0,2]]],[6,4,4,2,6,[[216,1,1,2,3],[223,2,2,3,5],[225,1,1,5,6]]],[8,1,1,6,7,[[251,1,1,6,7]]]],[1136,1139,6673,6899,6903,6930,7615]]],["kid",[6,6,[[0,1,1,0,1,[[37,1,1,0,1]]],[1,2,2,1,3,[[72,1,1,1,2],[83,1,1,2,3]]],[4,1,1,3,4,[[166,1,1,3,4]]],[6,1,1,4,5,[[224,1,1,4,5]]],[22,1,1,5,6,[[689,1,1,5,6]]]],[1142,2163,2522,5311,6915,17890]]],["kids",[3,3,[[0,2,2,0,2,[[26,2,2,0,2]]],[8,1,1,2,3,[[245,1,1,2,3]]]],[736,743,7421]]]]},{"k":"H1424","v":[["Gadi",[2,2,[[11,2,2,0,2,[[327,2,2,0,2]]]],[9939,9942]]]]},{"k":"H1425","v":[["*",[15,15,[[4,4,4,0,4,[[155,2,2,0,2],[156,1,1,2,3],[181,1,1,3,4]]],[5,4,4,4,8,[[187,1,1,4,5],[198,1,1,5,6],[199,1,1,6,7],[208,1,1,7,8]]],[9,1,1,8,9,[[289,1,1,8,9]]],[11,1,1,9,10,[[322,1,1,9,10]]],[12,5,5,10,15,[[342,2,2,10,12],[349,2,2,12,14],[363,1,1,14,15]]]],[4987,4991,5047,5687,5863,6136,6162,6427,8689,9826,10446,10454,10728,10757,11109]]],["Gadite",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8689]]],["Gadites",[14,14,[[4,4,4,0,4,[[155,2,2,0,2],[156,1,1,2,3],[181,1,1,3,4]]],[5,4,4,4,8,[[187,1,1,4,5],[198,1,1,5,6],[199,1,1,6,7],[208,1,1,7,8]]],[11,1,1,8,9,[[322,1,1,8,9]]],[12,5,5,9,14,[[342,2,2,9,11],[349,2,2,11,13],[363,1,1,13,14]]]],[4987,4991,5047,5687,5863,6136,6162,6427,9826,10446,10454,10728,10757,11109]]]]},{"k":"H1426","v":[["Gaddi",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4086]]]]},{"k":"H1427","v":[["Gaddiel",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4085]]]]},{"k":"H1428","v":[["banks",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10735]]]]},{"k":"H1429","v":[["kids",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17545]]]]},{"k":"H1430","v":[["*",[4,4,[[1,1,1,0,1,[[71,1,1,0,1]]],[6,1,1,1,2,[[225,1,1,1,2]]],[17,2,2,2,4,[[440,1,1,2,3],[456,1,1,3,4]]]],[2119,6934,12977,13387]]],["+",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6934]]],["corn",[2,2,[[1,1,1,0,1,[[71,1,1,0,1]]],[17,1,1,1,2,[[440,1,1,1,2]]]],[2119,12977]]],["tomb",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13387]]]]},{"k":"H1431","v":[["*",[115,112,[[0,14,12,0,12,[[11,1,1,0,1],[18,2,2,1,3],[20,2,2,3,5],[23,1,1,5,6],[24,1,1,6,7],[25,2,1,7,8],[37,2,2,8,10],[40,1,1,10,11],[47,2,1,11,12]]],[1,2,2,12,14,[[51,2,2,12,14]]],[3,2,2,14,16,[[122,1,1,14,15],[130,1,1,15,16]]],[5,2,2,16,18,[[189,1,1,16,17],[190,1,1,17,18]]],[6,2,2,18,20,[[221,1,1,18,19],[223,1,1,19,20]]],[7,1,1,20,21,[[232,1,1,20,21]]],[8,6,5,21,26,[[237,1,1,21,22],[238,1,1,22,23],[247,1,1,23,24],[255,1,1,24,25],[261,2,1,25,26]]],[9,3,3,26,29,[[273,2,2,26,28],[278,1,1,28,29]]],[10,5,5,29,34,[[291,2,2,29,31],[300,1,1,31,32],[302,2,2,32,34]]],[11,2,2,34,36,[[316,1,1,34,35],[322,1,1,35,36]]],[12,5,5,36,41,[[348,1,1,36,37],[354,1,1,37,38],[359,1,1,38,39],[366,2,2,39,41]]],[13,4,4,41,45,[[367,1,1,41,42],[375,1,1,42,43],[376,2,2,43,45]]],[14,1,1,45,46,[[411,1,1,45,46]]],[16,3,3,46,49,[[428,1,1,46,47],[430,1,1,47,48],[435,1,1,48,49]]],[17,4,4,49,53,[[437,1,1,49,50],[442,1,1,50,51],[454,1,1,51,52],[466,1,1,52,53]]],[18,16,16,53,69,[[495,1,1,53,54],[511,1,1,54,55],[512,2,2,55,57],[515,1,1,57,58],[517,1,1,58,59],[518,1,1,59,60],[532,1,1,60,61],[546,1,1,61,62],[547,1,1,62,63],[569,1,1,63,64],[581,1,1,64,65],[603,2,2,65,67],[615,1,1,67,68],[621,1,1,68,69]]],[20,3,3,69,72,[[659,1,1,69,70],[660,2,2,70,72]]],[22,9,9,72,81,[[679,1,1,72,73],[687,1,1,73,74],[688,1,1,74,75],[701,1,1,75,76],[706,1,1,76,77],[720,1,1,77,78],[722,1,1,78,79],[727,1,1,79,80],[729,1,1,80,81]]],[23,3,3,81,84,[[749,1,1,81,82],[792,2,2,82,84]]],[24,2,2,84,86,[[797,1,1,84,85],[800,1,1,85,86]]],[25,5,5,86,91,[[817,1,1,86,87],[825,1,1,87,88],[832,1,1,88,89],[836,1,1,89,90],[839,1,1,90,91]]],[26,9,9,91,100,[[850,1,1,91,92],[857,6,6,92,98],[860,2,2,98,100]]],[27,1,1,100,101,[[870,1,1,100,101]]],[28,2,2,101,103,[[877,2,2,101,103]]],[29,1,1,103,104,[[886,1,1,103,104]]],[30,1,1,104,105,[[888,1,1,104,105]]],[31,1,1,105,106,[[892,1,1,105,106]]],[32,1,1,106,107,[[897,1,1,106,107]]],[35,2,2,107,109,[[907,2,2,107,109]]],[37,2,2,109,111,[[922,2,2,109,111]]],[38,1,1,111,112,[[925,1,1,111,112]]]],[300,470,476,521,533,626,685,705,1130,1133,1235,1470,1564,1565,3828,4125,5900,5924,6831,6908,7140,7261,7295,7484,7771,7929,8202,8206,8289,8754,8764,9102,9159,9161,9621,9799,10682,10887,10969,11176,11189,11195,11386,11403,11405,12243,12748,12790,12868,12904,13025,13302,13606,14168,14391,14436,14437,14506,14541,14551,14744,14965,14975,15416,15572,16117,16118,16233,16317,17331,17337,17342,17656,17832,17865,18081,18193,18501,18547,18657,18691,19085,20106,20122,20319,20426,20769,21065,21234,21357,21448,21742,21965,21969,21970,21971,21972,21986,22072,22073,22220,22331,22332,22486,22522,22578,22637,22813,22815,23052,23056,23094]]],["+",[15,15,[[0,3,3,0,3,[[11,1,1,0,1],[18,1,1,1,2],[25,1,1,2,3]]],[5,1,1,3,4,[[190,1,1,3,4]]],[10,2,2,4,6,[[291,1,1,4,5],[300,1,1,5,6]]],[11,1,1,6,7,[[322,1,1,6,7]]],[12,2,2,7,9,[[348,1,1,7,8],[366,1,1,8,9]]],[16,1,1,9,10,[[428,1,1,9,10]]],[17,1,1,10,11,[[437,1,1,10,11]]],[26,2,2,11,13,[[857,2,2,11,13]]],[27,1,1,13,14,[[870,1,1,13,14]]],[30,1,1,14,15,[[888,1,1,14,15]]]],[300,470,705,5924,8754,9102,9799,10682,11189,12748,12904,21969,21970,22220,22522]]],["Great",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14168]]],["advanced",[1,1,[[16,1,1,0,1,[[435,1,1,0,1]]]],[12868]]],["boasted",[1,1,[[25,1,1,0,1,[[836,1,1,0,1]]]],[21357]]],["done",[1,1,[[8,1,1,0,1,[[247,1,1,0,1]]]],[7484]]],["estate",[1,1,[[20,1,1,0,1,[[659,1,1,0,1]]]],[17331]]],["exceeded",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7771]]],["excellent",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18193]]],["great",[19,19,[[0,3,3,0,3,[[23,1,1,0,1],[25,1,1,1,2],[47,1,1,2,3]]],[3,1,1,3,4,[[130,1,1,3,4]]],[9,1,1,4,5,[[273,1,1,4,5]]],[12,1,1,5,6,[[366,1,1,5,6]]],[18,2,2,6,8,[[569,1,1,6,7],[581,1,1,7,8]]],[20,2,2,8,10,[[660,2,2,8,10]]],[23,1,1,10,11,[[749,1,1,10,11]]],[25,3,3,11,14,[[817,1,1,11,12],[825,1,1,12,13],[832,1,1,13,14]]],[26,2,2,14,16,[[857,2,2,14,16]]],[29,1,1,16,17,[[886,1,1,16,17]]],[32,1,1,17,18,[[897,1,1,17,18]]],[37,1,1,18,19,[[922,1,1,18,19]]]],[626,705,1470,4125,8202,11176,15416,15572,17337,17342,19085,20769,21065,21234,21965,21971,22486,22637,23056]]],["greater",[4,4,[[0,2,2,0,2,[[40,1,1,0,1],[47,1,1,1,2]]],[10,1,1,2,3,[[291,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]]],[1235,1470,8764,20426]]],["grew",[7,7,[[0,3,3,0,3,[[20,2,2,0,2],[24,1,1,2,3]]],[1,1,1,3,4,[[51,1,1,3,4]]],[6,1,1,4,5,[[223,1,1,4,5]]],[8,2,2,5,7,[[237,1,1,5,6],[238,1,1,6,7]]]],[521,533,685,1564,6908,7261,7295]]],["grow",[2,2,[[3,1,1,0,1,[[122,1,1,0,1]]],[31,1,1,1,2,[[892,1,1,1,2]]]],[3828,22578]]],["grown",[5,5,[[0,2,2,0,2,[[37,2,2,0,2]]],[1,1,1,2,3,[[51,1,1,2,3]]],[7,1,1,3,4,[[232,1,1,3,4]]],[11,1,1,4,5,[[316,1,1,4,5]]]],[1130,1133,1565,7140,9621]]],["himself",[2,2,[[26,2,2,0,2,[[860,2,2,0,2]]]],[22072,22073]]],["increased",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17832]]],["itself",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17865]]],["magnifical",[1,1,[[12,1,1,0,1,[[359,1,1,0,1]]]],[10969]]],["magnified",[15,15,[[0,1,1,0,1,[[18,1,1,0,1]]],[9,1,1,1,2,[[273,1,1,1,2]]],[12,1,1,2,3,[[354,1,1,2,3]]],[13,1,1,3,4,[[367,1,1,3,4]]],[18,4,4,4,8,[[512,1,1,4,5],[517,1,1,5,6],[547,1,1,6,7],[615,1,1,7,8]]],[23,2,2,8,10,[[792,2,2,8,10]]],[24,1,1,10,11,[[797,1,1,10,11]]],[26,1,1,11,12,[[857,1,1,11,12]]],[35,2,2,12,14,[[907,2,2,12,14]]],[38,1,1,14,15,[[925,1,1,14,15]]]],[476,8206,10887,11195,14437,14541,14975,16233,20106,20122,20319,21972,22813,22815,23094]]],["magnify",[11,11,[[5,1,1,0,1,[[189,1,1,0,1]]],[17,2,2,1,3,[[442,1,1,1,2],[454,1,1,2,3]]],[18,5,5,3,8,[[511,1,1,3,4],[512,1,1,4,5],[515,1,1,5,6],[532,1,1,6,7],[546,1,1,7,8]]],[22,1,1,8,9,[[720,1,1,8,9]]],[26,1,1,9,10,[[857,1,1,9,10]]],[37,1,1,10,11,[[922,1,1,10,11]]]],[5900,13025,13302,14391,14436,14506,14744,14965,18501,21986,23052]]],["myself",[1,1,[[25,1,1,0,1,[[839,1,1,0,1]]]],[21448]]],["nourish",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18547]]],["nourished",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17656]]],["nourishing",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21742]]],["passed",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11386]]],["promoted",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12790]]],["set",[2,1,[[8,2,1,0,1,[[261,2,1,0,1]]]],[7929]]],["things",[4,4,[[18,2,2,0,2,[[603,2,2,0,2]]],[28,2,2,2,4,[[877,2,2,2,4]]]],[16117,16118,22331,22332]]],["up",[13,13,[[6,1,1,0,1,[[221,1,1,0,1]]],[9,1,1,1,2,[[278,1,1,1,2]]],[10,2,2,2,4,[[302,2,2,2,4]]],[13,2,2,4,6,[[376,2,2,4,6]]],[14,1,1,6,7,[[411,1,1,6,7]]],[17,1,1,7,8,[[466,1,1,7,8]]],[18,2,2,8,10,[[518,1,1,8,9],[621,1,1,9,10]]],[22,3,3,10,13,[[701,1,1,10,11],[727,1,1,11,12],[729,1,1,12,13]]]],[6831,8289,9159,9161,11403,11405,12243,13606,14551,16317,18081,18657,18691]]]]},{"k":"H1432","v":[["*",[4,4,[[0,1,1,0,1,[[25,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[13,1,1,2,3,[[383,1,1,2,3]]],[25,1,1,3,4,[[817,1,1,3,4]]]],[705,7266,11535,20788]]],["great",[2,2,[[13,1,1,0,1,[[383,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[11535,20788]]],["grew",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[705]]],["on",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7266]]]]},{"k":"H1433","v":[["*",[13,13,[[3,1,1,0,1,[[130,1,1,0,1]]],[4,5,5,1,6,[[155,1,1,1,2],[157,1,1,2,3],[161,1,1,3,4],[163,1,1,4,5],[184,1,1,5,6]]],[18,2,2,6,8,[[556,1,1,6,7],[627,1,1,7,8]]],[22,2,2,8,10,[[687,1,1,8,9],[688,1,1,9,10]]],[25,3,3,10,13,[[832,3,3,10,13]]]],[4127,4999,5077,5183,5210,5761,15196,16396,17838,17862,21232,21237,21248]]],["+",[1,1,[[4,1,1,0,1,[[163,1,1,0,1]]]],[5210]]],["greatness",[10,10,[[3,1,1,0,1,[[130,1,1,0,1]]],[4,4,4,1,5,[[155,1,1,1,2],[157,1,1,2,3],[161,1,1,3,4],[184,1,1,4,5]]],[18,2,2,5,7,[[556,1,1,5,6],[627,1,1,6,7]]],[25,3,3,7,10,[[832,3,3,7,10]]]],[4127,4999,5077,5183,5761,15196,16396,21232,21237,21248]]],["stout",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17862]]],["stoutness",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17838]]]]},{"k":"H1434","v":[["*",[2,2,[[4,1,1,0,1,[[174,1,1,0,1]]],[10,1,1,1,2,[[297,1,1,1,2]]]],[5482,8951]]],["fringes",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5482]]],["wreaths",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8951]]]]},{"k":"H1435","v":[["Giddel",[4,4,[[14,2,2,0,2,[[404,2,2,0,2]]],[15,2,2,2,4,[[419,2,2,2,4]]]],[12074,12083,12469,12478]]]]},{"k":"H1436","v":[["Gedaliah",[32,31,[[11,5,4,0,4,[[337,5,4,0,4]]],[12,2,2,4,6,[[362,2,2,4,6]]],[14,1,1,6,7,[[412,1,1,6,7]]],[23,23,23,7,30,[[782,1,1,7,8],[783,1,1,8,9],[784,11,11,9,20],[785,9,9,20,29],[787,1,1,29,30]]],[35,1,1,30,31,[[906,1,1,30,31]]]],[10244,10245,10246,10247,11049,11055,12270,19896,19937,19946,19947,19948,19949,19950,19952,19953,19954,19955,19956,19957,19958,19959,19960,19961,19963,19966,19967,19973,19975,20003,22788]]]]},{"k":"H1437","v":[["Giddalti",[2,2,[[12,2,2,0,2,[[362,2,2,0,2]]]],[11050,11075]]]]},{"k":"H1438","v":[["*",[22,22,[[4,2,2,0,2,[[159,1,1,0,1],[164,1,1,1,2]]],[6,1,1,2,3,[[231,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[13,4,4,4,8,[[380,1,1,4,5],[397,1,1,5,6],[400,2,2,6,8]]],[18,2,2,8,10,[[552,1,1,8,9],[584,1,1,9,10]]],[22,5,5,10,15,[[687,1,1,10,11],[688,1,1,11,12],[692,1,1,12,13],[700,1,1,13,14],[723,1,1,14,15]]],[23,2,2,15,17,[[792,1,1,15,16],[794,1,1,16,17]]],[24,1,1,17,18,[[798,1,1,17,18]]],[25,1,1,18,19,[[807,1,1,18,19]]],[29,1,1,19,20,[[881,1,1,19,20]]],[37,2,2,20,22,[[921,2,2,20,22]]]],[5116,5243,7108,7271,11478,11855,11937,11940,15081,15715,17839,17883,17940,18077,18563,20105,20189,20335,20569,22409,23038,23042]]],["+",[4,4,[[8,1,1,0,1,[[237,1,1,0,1]]],[13,1,1,1,2,[[380,1,1,1,2]]],[37,2,2,2,4,[[921,2,2,2,4]]]],[7271,11478,23038,23042]]],["asunder",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20189]]],["cut",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15715]]],["down",[10,10,[[4,2,2,0,2,[[159,1,1,0,1],[164,1,1,1,2]]],[13,3,3,2,5,[[397,1,1,2,3],[400,2,2,3,5]]],[22,4,4,5,9,[[687,1,1,5,6],[688,1,1,6,7],[692,1,1,7,8],[700,1,1,8,9]]],[25,1,1,9,10,[[807,1,1,9,10]]]],[5116,5243,11855,11937,11940,17839,17883,17940,18077,20569]]],["off",[5,5,[[6,1,1,0,1,[[231,1,1,0,1]]],[18,1,1,1,2,[[552,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]],[24,1,1,3,4,[[798,1,1,3,4]]],[29,1,1,4,5,[[881,1,1,4,5]]]],[7108,15081,20105,20335,22409]]],["sunder",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18563]]]]},{"k":"H1439","v":[["Gideon",[39,37,[[6,39,37,0,37,[[216,11,10,0,10],[217,13,13,10,23],[218,15,14,23,37]]]],[6665,6667,6673,6676,6678,6681,6683,6688,6690,6693,6695,6696,6698,6699,6701,6707,6708,6709,6712,6713,6714,6718,6719,6723,6726,6730,6732,6740,6741,6742,6743,6746,6747,6749,6751,6752,6754]]]]},{"k":"H1440","v":[["Gidom",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7099]]]]},{"k":"H1441","v":[["Gideoni",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3615,3680,3910,3915,4012]]]]},{"k":"H1442","v":[["*",[7,7,[[3,1,1,0,1,[[131,1,1,0,1]]],[11,2,2,1,3,[[331,2,2,1,3]]],[18,1,1,3,4,[[521,1,1,3,4]]],[22,2,2,4,6,[[715,2,2,4,6]]],[25,1,1,6,7,[[821,1,1,6,7]]]],[4183,10067,10083,14587,18358,18375,20922]]],["+",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4183]]],["blasphemed",[5,5,[[11,2,2,0,2,[[331,2,2,0,2]]],[22,2,2,2,4,[[715,2,2,2,4]]],[25,1,1,4,5,[[821,1,1,4,5]]]],[10067,10083,18358,18375,20922]]],["blasphemeth",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14587]]]]},{"k":"H1443","v":[["*",[10,10,[[11,2,2,0,2,[[324,1,1,0,1],[334,1,1,1,2]]],[17,1,1,2,3,[[454,1,1,2,3]]],[22,1,1,3,4,[[736,1,1,3,4]]],[24,2,2,4,6,[[799,2,2,4,6]]],[25,2,2,6,8,[[814,1,1,6,7],[823,1,1,7,8]]],[27,1,1,8,9,[[863,1,1,8,9]]],[29,1,1,9,10,[[887,1,1,9,10]]]],[9862,10151,13305,18798,20361,20363,20713,21006,22111,22506]]],["+",[2,2,[[27,1,1,0,1,[[863,1,1,0,1]]],[29,1,1,1,2,[[887,1,1,1,2]]]],[22111,22506]]],["hedged",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20361]]],["inclosed",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20363]]],["masons",[2,2,[[11,2,2,0,2,[[324,1,1,0,1],[334,1,1,1,2]]]],[9862,10151]]],["repairer",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18798]]],["up",[3,3,[[17,1,1,0,1,[[454,1,1,0,1]]],[25,2,2,1,3,[[814,1,1,1,2],[823,1,1,2,3]]]],[13305,20713,21006]]]]},{"k":"H1444","v":[["wall",[2,2,[[19,1,1,0,1,[[651,1,1,0,1]]],[25,1,1,1,2,[[843,1,1,1,2]]]],[17110,21562]]]]},{"k":"H1445","v":[["Geder",[1,1,[[5,1,1,0,1,[[198,1,1,0,1]]]],[6143]]]]},{"k":"H1446","v":[["Gedor",[7,7,[[5,1,1,0,1,[[201,1,1,0,1]]],[12,6,6,1,7,[[341,3,3,1,4],[345,1,1,4,5],[346,1,1,5,6],[349,1,1,6,7]]]],[6260,10389,10403,10424,10606,10652,10727]]]]},{"k":"H1447","v":[["*",[12,11,[[3,2,1,0,1,[[138,2,1,0,1]]],[14,1,1,1,2,[[411,1,1,1,2]]],[18,2,2,2,4,[[539,1,1,2,3],[557,1,1,3,4]]],[20,1,1,4,5,[[668,1,1,4,5]]],[22,1,1,5,6,[[683,1,1,5,6]]],[25,3,3,6,9,[[814,1,1,6,7],[823,1,1,7,8],[843,1,1,8,9]]],[27,1,1,9,10,[[863,1,1,9,10]]],[32,1,1,10,11,[[899,1,1,10,11]]]],[4399,12246,14830,15210,17501,17744,20713,21006,21559,22111,22675]]],["fence",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14830]]],["hedge",[3,3,[[20,1,1,0,1,[[668,1,1,0,1]]],[25,2,2,1,3,[[814,1,1,1,2],[823,1,1,2,3]]]],[17501,20713,21006]]],["hedges",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15210]]],["wall",[6,5,[[3,2,1,0,1,[[138,2,1,0,1]]],[14,1,1,1,2,[[411,1,1,1,2]]],[22,1,1,2,3,[[683,1,1,2,3]]],[25,1,1,3,4,[[843,1,1,3,4]]],[27,1,1,4,5,[[863,1,1,4,5]]]],[4399,12246,17744,21559,22111]]],["walls",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22675]]]]},{"k":"H1448","v":[["*",[10,10,[[3,3,3,0,3,[[148,3,3,0,3]]],[8,1,1,3,4,[[259,1,1,3,4]]],[12,1,1,4,5,[[341,1,1,4,5]]],[18,1,1,5,6,[[566,1,1,5,6]]],[23,1,1,6,7,[[793,1,1,6,7]]],[25,1,1,7,8,[[843,1,1,7,8]]],[33,1,1,8,9,[[902,1,1,8,9]]],[35,1,1,9,10,[[907,1,1,9,10]]]],[4734,4742,4754,7842,10408,15366,20130,21564,22729,22811]]],["+",[2,2,[[3,1,1,0,1,[[148,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]]],[4734,7842]]],["folds",[3,3,[[3,2,2,0,2,[[148,2,2,0,2]]],[35,1,1,2,3,[[907,1,1,2,3]]]],[4742,4754,22811]]],["hedges",[4,4,[[12,1,1,0,1,[[341,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]],[23,1,1,2,3,[[793,1,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[10408,15366,20130,22729]]],["wall",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21564]]]]},{"k":"H1449","v":[["Gederah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6238]]]]},{"k":"H1450","v":[["Gederoth",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[13,1,1,1,2,[[394,1,1,1,2]]]],[6243,11782]]]]},{"k":"H1451","v":[["Gederite",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11137]]]]},{"k":"H1452","v":[["Gederathite",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10724]]]]},{"k":"H1453","v":[["Gederothaim",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6238]]]]},{"k":"H1454","v":[["This",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21692]]]]},{"k":"H1455","v":[["+",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22165]]]]},{"k":"H1456","v":[["medicine",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16895]]]]},{"k":"H1457","v":[["*",[3,3,[[10,1,1,0,1,[[308,1,1,0,1]]],[11,2,2,1,3,[[316,2,2,1,3]]]],[9383,9637,9638]]],["down",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9383]]],["stretched",[2,2,[[11,2,2,0,2,[[316,2,2,0,2]]]],[9637,9638]]]]},{"k":"H1458","v":[["*",[3,3,[[10,1,1,0,1,[[304,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[25,1,1,2,3,[[824,1,1,2,3]]]],[9227,12537,21042]]],["back",[2,2,[[10,1,1,0,1,[[304,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[9227,21042]]],["backs",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12537]]]]},{"k":"H1459","v":[["*",[13,13,[[14,3,3,0,3,[[406,1,1,0,1],[407,1,1,1,2],[408,1,1,2,3]]],[26,10,10,3,13,[[852,8,8,3,11],[853,1,1,11,12],[856,1,1,12,13]]]],[12125,12141,12153,21813,21818,21822,21828,21830,21831,21832,21833,21847,21948]]],["midst",[10,10,[[26,10,10,0,10,[[852,8,8,0,8],[853,1,1,8,9],[856,1,1,9,10]]]],[21813,21818,21822,21828,21830,21831,21832,21833,21847,21948]]],["same",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12125]]],["therein",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12153]]],["wherein",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12141]]]]},{"k":"H1460","v":[["*",[7,7,[[17,1,1,0,1,[[465,1,1,0,1]]],[19,3,3,1,4,[[637,1,1,1,2],[646,1,1,2,3],[653,1,1,3,4]]],[22,3,3,4,7,[[716,1,1,4,5],[728,1,1,5,6],[729,1,1,6,7]]]],[13562,16669,16954,17144,18407,18668,18696]]],["among",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13562]]],["back",[5,5,[[19,3,3,0,3,[[637,1,1,0,1],[646,1,1,1,2],[653,1,1,2,3]]],[22,2,2,3,5,[[716,1,1,3,4],[728,1,1,4,5]]]],[16669,16954,17144,18407,18668]]],["body",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18696]]]]},{"k":"H1461","v":[["husbandmen",[1,1,[[11,1,1,0,1,[[337,1,1,0,1]]]],[10234]]]]},{"k":"H1462","v":[["*",[3,2,[[29,1,1,0,1,[[885,1,1,0,1]]],[33,2,1,1,2,[[902,2,1,1,2]]]],[22465,22729]]],["+",[2,1,[[33,2,1,0,1,[[902,2,1,0,1]]]],[22729]]],["grasshoppers",[1,1,[[29,1,1,0,1,[[885,1,1,0,1]]]],[22465]]]]},{"k":"H1463","v":[["Gog",[10,8,[[12,1,1,0,1,[[342,1,1,0,1]]],[25,9,7,1,8,[[839,5,5,1,6],[840,4,2,6,8]]]],[10432,21427,21428,21439,21441,21443,21449,21459]]]]},{"k":"H1464","v":[["*",[3,2,[[0,2,1,0,1,[[48,2,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[1492,22784]]],["invade",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22784]]],["overcome",[2,1,[[0,2,1,0,1,[[48,2,1,0,1]]]],[1492]]]]},{"k":"H1465","v":[["+",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13351]]]]},{"k":"H1466","v":[["*",[3,3,[[17,2,2,0,2,[[457,1,1,0,1],[468,1,1,1,2]]],[23,1,1,2,3,[[757,1,1,2,3]]]],[13418,13667,19283]]],["pride",[2,2,[[17,1,1,0,1,[[468,1,1,0,1]]],[23,1,1,1,2,[[757,1,1,1,2]]]],[13667,19283]]],["up",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13418]]]]},{"k":"H1467","v":[["pride",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21874]]]]},{"k":"H1468","v":[["*",[2,2,[[3,1,1,0,1,[[127,1,1,0,1]]],[18,1,1,1,2,[[567,1,1,1,2]]]],[4055,15388]]],["brought",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4055]]],["off",[1,1,[[18,1,1,0,1,[[567,1,1,0,1]]]],[15388]]]]},{"k":"H1469","v":[["*",[2,2,[[0,1,1,0,1,[[14,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]]],[369,5769]]],["pigeon",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[369]]],["young",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5769]]]]},{"k":"H1470","v":[["Gozan",[5,5,[[11,3,3,0,3,[[329,1,1,0,1],[330,1,1,1,2],[331,1,1,2,3]]],[12,1,1,3,4,[[342,1,1,3,4]]],[22,1,1,4,5,[[715,1,1,4,5]]]],[9989,10035,10073,10454,18364]]]]},{"k":"H1471","v":[["*",[559,509,[[0,27,23,0,23,[[9,6,4,0,4],[11,1,1,4,5],[13,2,2,5,7],[14,1,1,7,8],[16,5,5,8,13],[17,2,1,13,14],[19,1,1,14,15],[20,2,2,15,17],[21,1,1,17,18],[24,1,1,18,19],[25,1,1,19,20],[34,2,1,20,21],[45,1,1,21,22],[47,1,1,22,23]]],[1,6,6,23,29,[[58,1,1,23,24],[68,1,1,24,25],[81,1,1,25,26],[82,1,1,26,27],[83,2,2,27,29]]],[2,7,7,29,36,[[107,2,2,29,31],[109,1,1,31,32],[114,1,1,32,33],[115,3,3,33,36]]],[3,5,5,36,41,[[130,2,2,36,38],[139,1,1,38,39],[140,2,2,39,41]]],[4,46,41,41,82,[[156,7,6,41,47],[159,4,3,47,50],[160,1,1,50,51],[161,4,4,51,55],[163,2,1,55,56],[164,3,3,56,59],[167,2,1,59,60],[169,1,1,60,61],[170,2,2,61,63],[171,1,1,63,64],[172,1,1,64,65],[178,2,2,65,67],[180,7,6,67,73],[181,3,3,73,76],[182,1,1,76,77],[183,1,1,77,78],[184,4,4,78,82]]],[5,13,12,82,94,[[189,1,1,82,83],[190,1,1,83,84],[191,2,2,84,86],[196,1,1,86,87],[198,1,1,87,88],[209,7,6,88,94]]],[6,5,5,94,99,[[212,3,3,94,97],[213,1,1,97,98],[214,1,1,98,99]]],[8,2,2,99,101,[[243,2,2,99,101]]],[9,5,4,101,105,[[273,2,1,101,102],[274,1,1,102,103],[288,2,2,103,105]]],[10,5,4,105,109,[[294,1,1,105,106],[301,1,1,106,107],[304,1,1,107,108],[308,2,1,108,109]]],[11,17,14,109,123,[[318,1,1,109,110],[328,1,1,110,111],[329,10,7,111,118],[330,1,1,118,119],[331,2,2,119,121],[333,2,2,121,123]]],[12,9,7,123,130,[[351,1,1,123,124],[353,5,4,124,128],[354,2,1,128,129],[355,1,1,129,130]]],[13,12,11,130,141,[[381,2,1,130,131],[386,1,1,131,132],[394,1,1,132,133],[398,5,5,133,138],[399,2,2,138,140],[402,1,1,140,141]]],[14,1,1,141,142,[[408,1,1,141,142]]],[15,6,6,142,148,[[417,3,3,142,145],[418,2,2,145,147],[425,1,1,147,148]]],[17,3,2,148,150,[[447,2,1,148,149],[469,1,1,149,150]]],[18,60,58,150,208,[[479,2,2,150,152],[486,5,5,152,157],[487,1,1,157,158],[495,2,2,158,160],[499,2,2,160,162],[510,2,2,162,164],[520,1,1,164,165],[521,3,3,165,168],[523,2,2,168,170],[524,1,1,170,171],[536,2,2,171,173],[543,1,1,173,174],[544,1,1,174,175],[549,2,2,175,177],[555,1,1,177,178],[556,4,3,178,181],[557,1,1,181,182],[559,1,1,182,183],[560,1,1,183,184],[563,1,1,184,185],[571,1,1,185,186],[573,2,2,186,188],[575,1,1,188,189],[579,1,1,189,190],[582,3,2,190,192],[583,5,5,192,197],[587,1,1,197,198],[588,1,1,198,199],[590,1,1,199,200],[592,1,1,200,201],[594,1,1,201,202],[595,1,1,202,203],[603,1,1,203,204],[612,2,2,204,206],[624,1,1,206,207],[626,1,1,207,208]]],[19,1,1,208,209,[[641,1,1,208,209]]],[22,73,66,209,275,[[679,1,1,209,210],[680,4,2,210,212],[683,1,1,212,213],[687,2,2,213,215],[688,2,2,215,217],[689,2,2,217,219],[691,1,1,219,220],[692,6,6,220,226],[694,1,1,226,227],[696,3,2,227,229],[701,1,1,229,230],[703,2,2,230,232],[704,3,2,232,234],[707,2,2,234,236],[708,1,1,236,237],[711,1,1,237,238],[712,2,2,238,240],[714,1,1,240,241],[715,1,1,241,242],[718,2,2,242,244],[719,1,1,244,245],[720,2,2,245,247],[721,1,1,247,248],[723,2,2,248,250],[727,3,3,250,253],[730,2,2,253,255],[732,1,1,255,256],[733,2,1,256,257],[736,1,1,257,258],[738,7,6,258,264],[739,3,3,264,267],[740,1,1,267,268],[742,1,1,268,269],[743,1,1,269,270],[744,6,5,270,275]]],[23,87,77,275,352,[[745,2,2,275,277],[746,1,1,277,278],[747,2,2,278,280],[748,3,3,280,283],[749,6,3,283,286],[750,2,2,286,288],[751,1,1,288,289],[753,3,3,289,292],[754,6,4,292,296],[756,1,1,296,297],[758,1,1,297,298],[760,1,1,298,299],[762,4,4,299,303],[766,1,1,303,304],[769,10,9,304,313],[770,1,1,313,314],[771,6,4,314,318],[772,2,2,318,320],[773,2,2,320,322],[774,1,1,322,323],[775,3,3,323,326],[777,2,2,326,328],[780,1,1,328,329],[787,1,1,329,330],[788,1,1,330,331],[790,3,3,331,334],[792,1,1,334,335],[793,4,4,335,339],[794,7,7,339,346],[795,8,6,346,352]]],[24,7,7,352,359,[[797,3,3,352,355],[798,1,1,355,356],[800,3,3,356,359]]],[25,87,81,359,440,[[803,1,1,359,360],[805,1,1,360,361],[806,7,6,361,367],[807,2,2,367,369],[808,1,1,369,370],[812,2,2,370,372],[813,2,2,372,374],[817,1,1,374,375],[820,2,2,375,377],[821,6,6,377,383],[823,3,3,383,386],[824,1,1,386,387],[826,3,3,387,390],[827,2,2,390,392],[829,2,2,392,394],[830,3,2,394,396],[831,4,4,396,400],[832,5,5,400,405],[833,5,5,405,410],[835,2,2,410,412],[836,1,1,412,413],[837,18,16,413,429],[838,4,3,429,432],[839,3,3,432,435],[840,6,5,435,440]]],[26,3,3,440,443,[[857,1,1,440,441],[860,1,1,441,442],[861,1,1,442,443]]],[27,3,3,443,446,[[869,2,2,443,445],[870,1,1,445,446]]],[28,10,8,446,454,[[876,1,1,446,447],[877,2,2,447,449],[878,7,5,449,454]]],[29,4,4,454,458,[[884,2,2,454,456],[887,2,2,456,458]]],[30,4,4,458,462,[[888,4,4,458,462]]],[32,9,7,462,469,[[896,6,4,462,466],[897,2,2,466,468],[899,1,1,468,469]]],[33,2,2,469,471,[[902,2,2,469,471]]],[34,7,7,471,478,[[903,3,3,471,474],[904,2,2,474,476],[905,2,2,476,478]]],[35,7,7,478,485,[[907,5,5,478,483],[908,2,2,483,485]]],[36,4,3,485,488,[[910,4,3,485,488]]],[37,17,17,488,505,[[911,2,2,488,490],[912,2,2,490,492],[917,1,1,492,493],[918,3,3,493,496],[919,1,1,496,497],[922,2,2,497,499],[924,6,6,499,505]]],[38,5,4,505,509,[[925,3,2,505,507],[927,2,2,507,509]]]],[239,254,265,266,300,337,345,374,401,402,403,413,417,442,499,526,531,565,681,696,1022,1389,1470,1766,2032,2448,2486,2506,2520,3275,3279,3341,3513,3557,3562,3569,4120,4123,4425,4454,4466,5010,5011,5012,5031,5038,5042,5112,5128,5133,5157,5158,5161,5162,5171,5231,5242,5269,5270,5325,5378,5393,5398,5407,5442,5571,5585,5612,5623,5647,5660,5661,5676,5695,5697,5703,5709,5731,5766,5779,5786,5801,5910,5911,5940,5942,6077,6153,6463,6464,6467,6469,6472,6473,6565,6566,6568,6569,6601,7374,7389,8203,8220,8646,8652,8875,9110,9242,9351,9692,9966,9991,9994,9998,10009,10012,10016,10024,10057,10073,10078,10121,10128,10791,10840,10844,10851,10855,10884,10901,11496,11593,11767,11888,11889,11890,11892,11898,11910,11917,12007,12172,12390,12391,12399,12407,12417,12697,13151,13712,13946,13953,14026,14036,14038,14040,14041,14057,14161,14167,14231,14232,14376,14378,14567,14573,14582,14585,14620,14624,14633,14795,14798,14880,14895,15011,15017,15168,15186,15191,15195,15206,15241,15245,15293,15441,15468,15475,15492,15536,15619,15650,15656,15678,15686,15692,15698,15792,15799,15817,15832,15868,15879,16117,16185,16190,16371,16392,16806,17658,17687,17689,17765,17830,17832,17856,17857,17894,17896,17910,17934,17937,17940,17946,17954,17960,17977,17999,18004,18080,18121,18125,18132,18145,18200,18201,18245,18282,18304,18305,18348,18364,18435,18437,18453,18481,18486,18514,18562,18581,18642,18643,18658,18706,18711,18726,18745,18788,18824,18826,18832,18833,18837,18843,18849,18852,18854,18856,18887,18898,18930,18934,18940,18941,18942,18951,18956,18976,19019,19021,19029,19034,19043,19067,19073,19087,19107,19111,19147,19184,19191,19201,19203,19208,19211,19226,19266,19315,19355,19391,19392,19393,19397,19462,19543,19545,19546,19547,19548,19549,19551,19565,19566,19578,19603,19604,19607,19609,19629,19632,19649,19653,19678,19698,19701,19727,19784,19799,19844,20002,20018,20046,20057,20073,20082,20141,20142,20158,20163,20168,20169,20175,20178,20189,20207,20212,20219,20232,20239,20240,20253,20256,20311,20313,20320,20341,20435,20437,20440,20495,20542,20551,20552,20553,20554,20560,20561,20571,20572,20601,20667,20671,20695,20696,20776,20885,20889,20904,20909,20917,20918,20927,20936,20980,20991,20992,21037,21090,21091,21093,21103,21105,21164,21182,21195,21198,21207,21215,21227,21230,21236,21241,21242,21246,21247,21250,21257,21260,21264,21266,21341,21342,21354,21362,21363,21364,21365,21366,21372,21373,21374,21378,21379,21380,21381,21382,21383,21389,21395,21418,21419,21425,21437,21441,21448,21455,21469,21471,21475,21476,21983,22059,22082,22202,22204,22225,22297,22328,22330,22345,22351,22352,22354,22355,22451,22464,22504,22507,22511,22512,22525,22526,22622,22623,22627,22631,22641,22648,22680,22716,22717,22736,22737,22748,22753,22756,22774,22780,22806,22810,22814,22816,22819,22826,22828,22862,22869,22877,22893,22899,22907,22910,22976,22989,22998,22999,23009,23048,23054,23070,23071,23082,23084,23086,23087,23100,23103,23129,23132]]],["+",[13,10,[[6,1,1,0,1,[[214,1,1,0,1]]],[11,4,1,1,2,[[329,4,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[18,3,3,3,6,[[520,1,1,3,4],[560,1,1,4,5],[582,1,1,5,6]]],[23,2,2,6,8,[[769,1,1,6,7],[792,1,1,7,8]]],[25,1,1,8,9,[[839,1,1,8,9]]],[26,1,1,9,10,[[857,1,1,9,10]]]],[6601,10012,10840,14567,15245,15619,19566,20082,21437,21983]]],["Gentiles",[27,27,[[0,1,1,0,1,[[9,1,1,0,1]]],[22,15,15,1,16,[[689,1,1,1,2],[720,2,2,2,4],[727,2,2,4,6],[732,1,1,6,7],[738,4,4,7,11],[739,2,2,11,13],[740,1,1,13,14],[744,2,2,14,16]]],[23,4,4,16,20,[[748,1,1,16,17],[758,1,1,17,18],[760,1,1,18,19],[790,1,1,19,20]]],[24,1,1,20,21,[[798,1,1,20,21]]],[25,1,1,21,22,[[805,1,1,21,22]]],[27,1,1,22,23,[[869,1,1,22,23]]],[28,1,1,23,24,[[878,1,1,23,24]]],[32,1,1,24,25,[[897,1,1,24,25]]],[37,1,1,25,26,[[911,1,1,25,26]]],[38,1,1,26,27,[[925,1,1,26,27]]]],[239,17894,18481,18486,18642,18658,18726,18824,18826,18832,18837,18849,18852,18856,18934,18941,19034,19315,19355,20046,20341,20542,22202,22352,22641,22899,23100]]],["another",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15619]]],["heathen",[143,138,[[2,4,4,0,4,[[114,1,1,0,1],[115,3,3,1,4]]],[4,1,1,4,5,[[156,1,1,4,5]]],[9,2,2,5,7,[[288,2,2,5,7]]],[11,5,5,7,12,[[328,1,1,7,8],[329,3,3,8,11],[333,1,1,11,12]]],[12,2,2,12,14,[[353,2,2,12,14]]],[13,5,5,14,19,[[386,1,1,14,15],[394,1,1,15,16],[399,2,2,16,18],[402,1,1,18,19]]],[14,1,1,19,20,[[408,1,1,19,20]]],[15,5,5,20,25,[[417,3,3,20,23],[418,2,2,23,25]]],[18,38,37,25,62,[[479,2,2,25,27],[486,3,3,27,30],[487,1,1,30,31],[495,2,2,31,33],[510,1,1,33,34],[521,3,3,34,37],[523,2,2,37,39],[524,1,1,39,40],[536,2,2,40,42],[555,1,1,42,43],[556,4,3,43,46],[557,1,1,46,47],[571,1,1,47,48],[573,2,2,48,50],[575,1,1,50,51],[579,1,1,51,52],[582,1,1,52,53],[583,3,3,53,56],[587,1,1,56,57],[588,1,1,57,58],[592,1,1,58,59],[603,1,1,59,60],[612,1,1,60,61],[626,1,1,61,62]]],[22,1,1,62,63,[[694,1,1,62,63]]],[23,7,6,63,69,[[753,1,1,63,64],[754,3,2,64,66],[762,1,1,66,67],[793,2,2,67,69]]],[24,4,4,69,73,[[797,2,2,69,71],[800,2,2,71,73]]],[25,46,44,73,117,[[808,1,1,73,74],[812,2,2,74,76],[813,1,1,76,77],[817,1,1,77,78],[821,6,6,78,84],[823,3,3,84,87],[824,1,1,87,88],[826,2,2,88,90],[829,1,1,90,91],[831,1,1,91,92],[832,2,2,92,94],[835,2,2,94,96],[837,15,14,96,110],[838,2,2,110,112],[839,1,1,112,113],[840,5,4,113,117]]],[28,5,4,117,121,[[877,2,2,117,119],[878,3,2,119,121]]],[29,1,1,121,122,[[887,1,1,121,122]]],[30,4,4,122,126,[[888,4,4,122,126]]],[32,1,1,126,127,[[897,1,1,126,127]]],[34,2,2,127,129,[[903,1,1,127,128],[905,1,1,128,129]]],[35,1,1,129,130,[[907,1,1,129,130]]],[36,1,1,130,131,[[910,1,1,130,131]]],[37,5,5,131,136,[[911,1,1,131,132],[918,1,1,132,133],[919,1,1,133,134],[924,2,2,134,136]]],[38,2,2,136,138,[[925,2,2,136,138]]]],[3513,3557,3562,3569,5031,8646,8652,9966,9991,9994,9998,10121,10844,10855,11593,11767,11910,11917,12007,12172,12390,12391,12399,12407,12417,13946,13953,14026,14036,14040,14057,14161,14167,14376,14573,14582,14585,14620,14624,14633,14795,14798,15168,15186,15191,15195,15206,15441,15468,15475,15492,15536,15650,15686,15692,15698,15792,15799,15832,16117,16190,16392,17977,19191,19203,19226,19397,20141,20142,20313,20320,20435,20440,20601,20667,20671,20696,20776,20904,20909,20917,20918,20927,20936,20980,20991,20992,21037,21090,21091,21182,21207,21241,21247,21341,21342,21362,21363,21364,21365,21366,21374,21378,21379,21380,21381,21382,21383,21389,21395,21418,21425,21441,21455,21469,21471,21476,22328,22330,22354,22355,22507,22511,22512,22525,22526,22648,22736,22780,22816,22877,22893,22989,23009,23082,23086,23100,23103]]],["nation",[100,88,[[0,9,9,0,9,[[11,1,1,0,1],[14,1,1,1,2],[16,1,1,2,3],[17,1,1,3,4],[19,1,1,4,5],[20,2,2,5,7],[34,1,1,7,8],[45,1,1,8,9]]],[1,5,5,9,14,[[58,1,1,9,10],[68,1,1,10,11],[81,1,1,11,12],[82,1,1,12,13],[83,1,1,13,14]]],[2,1,1,14,15,[[109,1,1,14,15]]],[3,1,1,15,16,[[130,1,1,15,16]]],[4,13,11,16,27,[[156,5,4,16,20],[161,1,1,20,21],[178,1,1,21,22],[180,4,3,22,25],[184,2,2,25,27]]],[9,1,1,27,28,[[273,1,1,27,28]]],[10,2,1,28,29,[[308,2,1,28,29]]],[12,2,2,29,31,[[353,1,1,29,30],[354,1,1,30,31]]],[13,3,2,31,33,[[381,2,1,31,32],[398,1,1,32,33]]],[17,1,1,33,34,[[469,1,1,33,34]]],[18,3,3,34,37,[[510,1,1,34,35],[583,1,1,35,36],[624,1,1,36,37]]],[19,1,1,37,38,[[641,1,1,37,38]]],[22,19,16,38,54,[[679,1,1,38,39],[680,2,1,39,40],[687,1,1,40,41],[688,1,1,41,42],[692,1,1,42,43],[696,3,2,43,45],[704,3,2,45,47],[727,1,1,47,48],[733,1,1,48,49],[736,1,1,49,50],[738,2,2,50,52],[743,1,1,52,53],[744,1,1,53,54]]],[23,25,21,54,75,[[746,1,1,54,55],[749,6,3,55,58],[750,1,1,58,59],[751,1,1,59,60],[753,1,1,60,61],[756,1,1,61,62],[762,3,3,62,65],[769,2,2,65,67],[771,3,2,67,69],[775,1,1,69,70],[777,1,1,70,71],[793,2,2,71,73],[794,2,2,73,75]]],[24,1,1,75,76,[[800,1,1,75,76]]],[25,2,2,76,78,[[803,1,1,76,77],[838,1,1,77,78]]],[26,1,1,78,79,[[861,1,1,78,79]]],[28,1,1,79,80,[[876,1,1,79,80]]],[29,1,1,80,81,[[884,1,1,80,81]]],[32,3,2,81,83,[[896,3,2,81,83]]],[34,1,1,83,84,[[903,1,1,83,84]]],[35,2,2,84,86,[[907,2,2,84,86]]],[36,1,1,86,87,[[910,1,1,86,87]]],[38,1,1,87,88,[[927,1,1,87,88]]]],[300,374,417,442,499,526,531,1022,1389,1766,2032,2448,2486,2506,3341,4120,5010,5011,5012,5038,5171,5571,5647,5660,5661,5779,5786,8203,9351,10840,10884,11496,11890,13712,14378,15656,16371,16806,17658,17689,17832,17856,17960,17999,18004,18132,18145,18643,18745,18788,18833,18843,18898,18930,18976,19067,19073,19087,19111,19147,19184,19266,19391,19392,19393,19546,19566,19604,19609,19727,19799,20158,20163,20169,20207,20437,20495,21419,22082,22297,22464,22623,22627,22737,22806,22810,22869,23129]]],["nations",[264,250,[[0,17,16,0,16,[[9,5,4,0,4],[13,2,2,4,6],[16,4,4,6,10],[17,1,1,10,11],[21,1,1,11,12],[24,1,1,12,13],[25,1,1,13,14],[34,1,1,14,15],[47,1,1,15,16]]],[1,1,1,16,17,[[83,1,1,16,17]]],[2,2,2,17,19,[[107,2,2,17,19]]],[3,4,4,19,23,[[130,1,1,19,20],[139,1,1,20,21],[140,2,2,21,23]]],[4,32,29,23,52,[[156,1,1,23,24],[159,4,3,24,27],[160,1,1,27,28],[161,3,3,28,31],[163,2,1,31,32],[164,3,3,32,35],[167,2,1,35,36],[169,1,1,36,37],[170,2,2,37,39],[171,1,1,39,40],[172,1,1,40,41],[178,1,1,41,42],[180,3,3,42,45],[181,3,3,45,48],[182,1,1,48,49],[183,1,1,49,50],[184,2,2,50,52]]],[5,8,7,52,59,[[198,1,1,52,53],[209,7,6,53,59]]],[6,3,3,59,62,[[212,2,2,59,61],[213,1,1,61,62]]],[8,2,2,62,64,[[243,2,2,62,64]]],[9,2,2,64,66,[[273,1,1,64,65],[274,1,1,65,66]]],[10,3,3,66,69,[[294,1,1,66,67],[301,1,1,67,68],[304,1,1,68,69]]],[11,7,7,69,76,[[329,3,3,69,72],[330,1,1,72,73],[331,2,2,73,75],[333,1,1,75,76]]],[12,4,4,76,80,[[351,1,1,76,77],[353,1,1,77,78],[354,1,1,78,79],[355,1,1,79,80]]],[13,4,4,80,84,[[398,4,4,80,84]]],[15,1,1,84,85,[[425,1,1,84,85]]],[17,2,1,85,86,[[447,2,1,85,86]]],[18,15,15,86,101,[[486,2,2,86,88],[499,2,2,88,90],[543,1,1,90,91],[544,1,1,91,92],[549,2,2,92,94],[559,1,1,94,95],[563,1,1,95,96],[583,1,1,96,97],[590,1,1,97,98],[594,1,1,98,99],[595,1,1,99,100],[612,1,1,100,101]]],[22,38,38,101,139,[[680,2,2,101,103],[683,1,1,103,104],[687,1,1,104,105],[688,1,1,105,106],[689,1,1,106,107],[691,1,1,107,108],[692,5,5,108,113],[701,1,1,113,114],[703,2,2,114,116],[707,2,2,116,118],[708,1,1,118,119],[711,1,1,119,120],[712,2,2,120,122],[714,1,1,122,123],[715,1,1,123,124],[718,2,2,124,126],[719,1,1,126,127],[721,1,1,127,128],[723,2,2,128,130],[730,2,2,130,132],[733,1,1,132,133],[738,1,1,133,134],[739,1,1,134,135],[742,1,1,135,136],[744,3,3,136,139]]],[23,49,45,139,184,[[745,2,2,139,141],[747,2,2,141,143],[748,2,2,143,145],[750,1,1,145,146],[753,1,1,146,147],[754,3,2,147,149],[766,1,1,149,150],[769,7,7,150,157],[770,1,1,157,158],[771,3,2,158,160],[772,2,2,160,162],[773,2,2,162,164],[774,1,1,164,165],[775,2,2,165,167],[777,1,1,167,168],[780,1,1,168,169],[787,1,1,169,170],[788,1,1,170,171],[790,2,2,171,173],[794,5,5,173,178],[795,8,6,178,184]]],[24,1,1,184,185,[[797,1,1,184,185]]],[25,37,35,185,220,[[806,7,6,185,191],[807,2,2,191,193],[813,1,1,193,194],[820,2,2,194,196],[826,1,1,196,197],[827,2,2,197,199],[829,1,1,199,200],[830,3,2,200,202],[831,3,3,202,205],[832,3,3,205,208],[833,5,5,208,213],[836,1,1,213,214],[837,3,3,214,217],[838,1,1,217,218],[839,1,1,218,219],[840,1,1,219,220]]],[27,2,2,220,222,[[869,1,1,220,221],[870,1,1,221,222]]],[28,2,1,222,223,[[878,2,1,222,223]]],[29,2,2,223,225,[[884,1,1,223,224],[887,1,1,224,225]]],[32,4,4,225,229,[[896,3,3,225,228],[899,1,1,228,229]]],[33,2,2,229,231,[[902,2,2,229,231]]],[34,4,4,231,235,[[903,1,1,231,232],[904,2,2,232,234],[905,1,1,234,235]]],[35,3,3,235,238,[[907,1,1,235,236],[908,2,2,236,238]]],[36,2,1,238,239,[[910,2,1,238,239]]],[37,10,10,239,249,[[912,2,2,239,241],[917,1,1,241,242],[918,2,2,242,244],[922,1,1,244,245],[924,4,4,245,249]]],[38,1,1,249,250,[[927,1,1,249,250]]]],[239,254,265,266,337,345,401,402,403,413,442,565,681,696,1022,1470,2520,3275,3279,4123,4425,4454,4466,5042,5112,5128,5133,5157,5158,5161,5162,5231,5242,5269,5270,5325,5378,5393,5398,5407,5442,5585,5612,5623,5676,5695,5697,5703,5709,5731,5766,5801,6153,6463,6464,6467,6469,6472,6473,6566,6568,6569,7374,7389,8203,8220,8875,9110,9242,10009,10016,10024,10057,10073,10078,10128,10791,10851,10884,10901,11888,11889,11892,11898,12697,13151,14038,14041,14231,14232,14880,14895,15011,15017,15241,15293,15678,15817,15868,15879,16185,17687,17689,17765,17830,17857,17896,17910,17934,17937,17940,17946,17954,18080,18121,18125,18200,18201,18245,18282,18304,18305,18348,18364,18435,18437,18453,18514,18562,18581,18706,18711,18745,18833,18854,18887,18940,18941,18942,18951,18956,19019,19021,19029,19043,19107,19201,19208,19211,19462,19543,19545,19547,19548,19549,19551,19565,19578,19603,19607,19629,19632,19649,19653,19678,19698,19701,19784,19844,20002,20018,20057,20073,20168,20175,20178,20189,20212,20219,20232,20239,20240,20253,20256,20311,20551,20552,20553,20554,20560,20561,20571,20572,20695,20885,20889,21093,21103,21105,21164,21195,21198,21215,21227,21230,21236,21242,21246,21250,21257,21260,21264,21266,21354,21372,21373,21374,21419,21448,21475,22204,22225,22345,22451,22504,22622,22623,22631,22680,22716,22717,22748,22753,22756,22774,22819,22826,22828,22862,22907,22910,22976,22998,22999,23054,23070,23071,23084,23087,23132]]],["people",[11,11,[[5,5,5,0,5,[[189,1,1,0,1],[190,1,1,1,2],[191,2,2,2,4],[196,1,1,4,5]]],[6,1,1,5,6,[[212,1,1,5,6]]],[11,1,1,6,7,[[318,1,1,6,7]]],[26,1,1,7,8,[[860,1,1,7,8]]],[28,1,1,8,9,[[878,1,1,8,9]]],[35,1,1,9,10,[[907,1,1,9,10]]],[37,1,1,10,11,[[922,1,1,10,11]]]],[5910,5911,5940,5942,6077,6565,9692,22059,22351,22814,23048]]]]},{"k":"H1472","v":[["*",[13,11,[[0,1,1,0,1,[[46,1,1,0,1]]],[6,2,2,1,3,[[224,2,2,1,3]]],[8,3,2,3,5,[[266,3,2,3,5]]],[15,1,1,5,6,[[421,1,1,5,6]]],[18,1,1,6,7,[[587,1,1,6,7]]],[25,2,2,7,9,[[802,2,2,7,9]]],[26,1,1,9,10,[[859,1,1,9,10]]],[33,2,1,10,11,[[902,2,1,10,11]]]],[1438,6917,6918,8019,8021,12548,15792,20475,20487,22021,22715]]],["+",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6918]]],["bodies",[6,6,[[0,1,1,0,1,[[46,1,1,0,1]]],[8,1,1,1,2,[[266,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[18,1,1,3,4,[[587,1,1,3,4]]],[25,2,2,4,6,[[802,2,2,4,6]]]],[1438,8021,12548,15792,20475,20487]]],["body",[3,3,[[8,2,2,0,2,[[266,2,2,0,2]]],[26,1,1,2,3,[[859,1,1,2,3]]]],[8019,8021,22021]]],["carcase",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6917]]],["corpses",[2,1,[[33,2,1,0,1,[[902,2,1,0,1]]]],[22715]]]]},{"k":"H1473","v":[["*",[42,41,[[11,2,2,0,2,[[336,2,2,0,2]]],[12,1,1,2,3,[[342,1,1,2,3]]],[14,12,12,3,15,[[403,1,1,3,4],[404,1,1,4,5],[406,1,1,5,6],[408,3,3,6,9],[410,1,1,9,10],[411,1,1,10,11],[412,4,4,11,15]]],[15,1,1,15,16,[[419,1,1,15,16]]],[16,1,1,16,17,[[427,1,1,16,17]]],[23,10,10,17,27,[[772,1,1,17,18],[773,5,5,18,23],[790,1,1,23,24],[792,2,2,24,26],[793,1,1,26,27]]],[25,11,10,27,37,[[802,1,1,27,28],[804,2,2,28,30],[812,2,2,30,32],[813,5,4,32,36],[826,1,1,36,37]]],[29,1,1,37,38,[[879,1,1,37,38]]],[33,1,1,38,39,[[902,1,1,38,39]]],[37,2,2,39,41,[[916,1,1,39,40],[924,1,1,40,41]]]],[10217,10218,10450,12027,12028,12111,12170,12171,12172,12236,12241,12258,12259,12260,12268,12426,12730,19624,19636,19639,19651,19655,19666,20064,20087,20091,20130,20465,20513,20517,20679,20680,20683,20684,20687,20691,21086,22379,22722,22957,23070]]],["+",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[25,1,1,1,2,[[812,1,1,1,2]]]],[12172,20680]]],["away",[7,7,[[14,5,5,0,5,[[404,1,1,0,1],[410,1,1,1,2],[411,1,1,2,3],[412,2,2,3,5]]],[15,1,1,5,6,[[419,1,1,5,6]]],[33,1,1,6,7,[[902,1,1,6,7]]]],[12028,12236,12241,12258,12260,12426,22722]]],["captive",[2,2,[[11,1,1,0,1,[[336,1,1,0,1]]],[23,1,1,1,2,[[772,1,1,1,2]]]],[10218,19624]]],["captives",[3,3,[[23,2,2,0,2,[[773,2,2,0,2]]],[25,1,1,2,3,[[802,1,1,2,3]]]],[19636,19639,20465]]],["captivity",[25,25,[[11,1,1,0,1,[[336,1,1,0,1]]],[12,1,1,1,2,[[342,1,1,1,2]]],[14,6,6,2,8,[[403,1,1,2,3],[406,1,1,3,4],[408,2,2,4,6],[412,2,2,6,8]]],[16,1,1,8,9,[[427,1,1,8,9]]],[23,7,7,9,16,[[773,3,3,9,12],[790,1,1,12,13],[792,2,2,13,15],[793,1,1,15,16]]],[25,6,6,16,22,[[804,2,2,16,18],[812,1,1,18,19],[813,2,2,19,21],[826,1,1,21,22]]],[29,1,1,22,23,[[879,1,1,22,23]]],[37,2,2,23,25,[[916,1,1,23,24],[924,1,1,24,25]]]],[10217,10450,12027,12111,12170,12171,12259,12268,12730,19651,19655,19666,20064,20087,20091,20130,20513,20517,20679,20684,20687,21086,22379,22957,23070]]],["remove",[1,1,[[25,1,1,0,1,[[813,1,1,0,1]]]],[20691]]],["removing",[2,2,[[25,2,2,0,2,[[813,2,2,0,2]]]],[20683,20684]]]]},{"k":"H1474","v":[["Golan",[4,4,[[4,1,1,0,1,[[156,1,1,0,1]]],[5,2,2,1,3,[[206,1,1,1,2],[207,1,1,2,3]]],[12,1,1,3,4,[[343,1,1,3,4]]]],[5047,6380,6408,10525]]]]},{"k":"H1475","v":[["pit",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17501]]]]},{"k":"H1476","v":[["Guni",[4,4,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[12,2,2,2,4,[[342,1,1,2,3],[344,1,1,3,4]]]],[1410,4537,10443,10548]]]]},{"k":"H1477","v":[["Gunites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4537]]]]},{"k":"H1478","v":[["*",[24,23,[[0,6,6,0,6,[[5,1,1,0,1],[6,1,1,1,2],[24,2,2,2,4],[34,1,1,4,5],[48,1,1,5,6]]],[3,5,4,6,10,[[133,2,2,6,8],[136,3,2,8,10]]],[5,1,1,10,11,[[208,1,1,10,11]]],[17,8,8,11,19,[[438,1,1,11,12],[445,1,1,12,13],[448,1,1,13,14],[449,1,1,14,15],[462,1,1,15,16],[464,1,1,16,17],[469,1,1,17,18],[471,1,1,18,19]]],[18,2,2,19,21,[[565,1,1,19,20],[581,1,1,20,21]]],[24,1,1,21,22,[[797,1,1,21,22]]],[37,1,1,22,23,[[923,1,1,22,23]]]],[154,180,666,675,1040,1506,4256,4257,4314,4340,6446,12915,13104,13172,13191,13486,13550,13698,13748,15323,15600,20329,23067]]],["dead",[1,1,[[3,1,1,0,1,[[136,1,1,0,1]]]],[4340]]],["die",[8,8,[[0,1,1,0,1,[[5,1,1,0,1]]],[3,1,1,1,2,[[133,1,1,1,2]]],[17,3,3,2,5,[[462,1,1,2,3],[464,1,1,3,4],[471,1,1,4,5]]],[18,2,2,5,7,[[565,1,1,5,6],[581,1,1,6,7]]],[37,1,1,7,8,[[923,1,1,7,8]]]],[154,4256,13486,13550,13748,15323,15600,23067]]],["died",[3,2,[[0,1,1,0,1,[[6,1,1,0,1]]],[3,2,1,1,2,[[136,2,1,1,2]]]],[180,4314]]],["dying",[1,1,[[3,1,1,0,1,[[133,1,1,0,1]]]],[4257]]],["ghost",[9,9,[[0,4,4,0,4,[[24,2,2,0,2],[34,1,1,2,3],[48,1,1,3,4]]],[17,4,4,4,8,[[438,1,1,4,5],[445,1,1,5,6],[448,1,1,6,7],[449,1,1,7,8]]],[24,1,1,8,9,[[797,1,1,8,9]]]],[666,675,1040,1506,12915,13104,13172,13191,20329]]],["perish",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13698]]],["perished",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6446]]]]},{"k":"H1479","v":[["shut",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12423]]]]},{"k":"H1480","v":[["*",[2,1,[[12,2,1,0,1,[[347,2,1,0,1]]]],[10671]]],["bodies",[1,1,[[12,1,1,0,1,[[347,1,1,0,1]]]],[10671]]],["body",[1,1,[[12,1,1,0,1,[[347,1,1,0,1]]]],[10671]]]]},{"k":"H1481","v":[["*",[98,94,[[0,9,9,0,9,[[11,1,1,0,1],[18,1,1,1,2],[19,1,1,2,3],[20,2,2,3,5],[25,1,1,5,6],[31,1,1,6,7],[34,1,1,7,8],[46,1,1,8,9]]],[1,4,4,9,13,[[52,1,1,9,10],[55,1,1,10,11],[61,2,2,11,13]]],[2,11,11,13,24,[[105,1,1,13,14],[106,4,4,14,18],[107,1,1,18,19],[108,2,2,19,21],[109,1,1,21,22],[114,2,2,22,24]]],[3,8,8,24,32,[[125,1,1,24,25],[131,5,5,25,30],[135,1,1,30,31],[138,1,1,31,32]]],[4,5,5,32,37,[[153,1,1,32,33],[170,2,2,33,35],[178,1,1,35,36],[184,1,1,36,37]]],[5,1,1,37,38,[[206,1,1,37,38]]],[6,6,6,38,44,[[215,1,1,38,39],[227,3,3,39,42],[229,2,2,42,44]]],[7,1,1,44,45,[[232,1,1,44,45]]],[8,1,1,45,46,[[253,1,1,45,46]]],[9,1,1,46,47,[[270,1,1,46,47]]],[10,1,1,47,48,[[307,1,1,47,48]]],[11,3,2,48,50,[[320,3,2,48,50]]],[12,1,1,50,51,[[353,1,1,50,51]]],[13,1,1,51,52,[[381,1,1,51,52]]],[14,1,1,52,53,[[403,1,1,52,53]]],[17,4,4,53,57,[[454,2,2,53,55],[463,1,1,55,56],[476,1,1,56,57]]],[18,11,11,57,68,[[482,1,1,57,58],[492,1,1,58,59],[499,1,1,59,60],[510,1,1,60,61],[533,1,1,61,62],[536,1,1,62,63],[538,1,1,63,64],[582,2,2,64,66],[597,1,1,66,67],[617,1,1,67,68]]],[22,10,7,68,75,[[683,1,1,68,69],[689,1,1,69,70],[694,1,1,70,71],[701,1,1,71,72],[711,2,1,72,73],[730,1,1,73,74],[732,3,1,74,75]]],[23,13,13,75,88,[[779,1,1,75,76],[786,3,3,76,79],[787,2,2,79,81],[788,4,4,81,85],[793,2,2,85,87],[794,1,1,87,88]]],[24,1,1,88,89,[[800,1,1,88,89]]],[25,3,3,89,92,[[815,1,1,89,90],[848,2,2,90,92]]],[27,2,2,92,94,[[868,1,1,92,93],[871,1,1,93,94]]]],[308,466,496,536,547,695,932,1038,1424,1601,1659,1864,1865,3230,3243,3245,3247,3248,3277,3314,3315,3320,3475,3514,3979,4167,4168,4169,4179,4182,4299,4378,4909,5390,5406,5571,5785,6381,6640,6987,6988,6989,7025,7040,7128,7691,8123,9337,9728,9729,10839,11499,12020,13312,13326,13508,13913,13977,14088,14227,14374,14761,14793,14823,15618,15629,16079,16265,17756,17890,17973,18084,18293,18700,18738,19830,19990,19992,19997,19999,20002,20018,20022,20024,20038,20145,20160,20206,20435,20738,21701,21702,22192,22230]]],["+",[5,4,[[1,1,1,0,1,[[52,1,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]],[18,1,1,2,3,[[499,1,1,2,3]]],[22,2,1,3,4,[[732,2,1,3,4]]]],[1601,4378,14227,18738]]],["Sojourn",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[695]]],["abide",[2,2,[[18,2,2,0,2,[[492,1,1,0,1],[538,1,1,1,2]]]],[14088,14823]]],["afraid",[5,5,[[4,2,2,0,2,[[153,1,1,0,1],[170,1,1,1,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[17,2,2,3,5,[[454,1,1,3,4],[476,1,1,4,5]]]],[4909,5406,7691,13326,13913]]],["awe",[1,1,[[18,1,1,0,1,[[510,1,1,0,1]]]],[14374]]],["dwell",[11,10,[[17,1,1,0,1,[[454,1,1,0,1]]],[18,1,1,1,2,[[482,1,1,1,2]]],[22,4,3,2,5,[[689,1,1,2,3],[694,1,1,3,4],[711,2,1,4,5]]],[23,5,5,5,10,[[787,1,1,5,6],[788,1,1,6,7],[793,2,2,7,9],[794,1,1,9,10]]]],[13312,13977,17890,17973,18293,20002,20018,20145,20160,20206]]],["dwelleth",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3315]]],["fear",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22230]]],["feared",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5785]]],["gathered",[1,1,[[18,1,1,0,1,[[536,1,1,0,1]]]],[14793]]],["inhabitant",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13508]]],["remain",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6640]]],["sojourn",[30,29,[[0,3,3,0,3,[[11,1,1,0,1],[18,1,1,1,2],[46,1,1,2,3]]],[1,1,1,3,4,[[61,1,1,3,4]]],[2,6,6,4,10,[[106,3,3,4,7],[108,1,1,7,8],[109,1,1,8,9],[114,1,1,9,10]]],[3,2,2,10,12,[[125,1,1,10,11],[131,1,1,11,12]]],[6,2,2,12,14,[[227,2,2,12,14]]],[7,1,1,14,15,[[232,1,1,14,15]]],[10,1,1,15,16,[[307,1,1,15,16]]],[11,2,1,16,17,[[320,2,1,16,17]]],[18,1,1,17,18,[[597,1,1,17,18]]],[22,2,2,18,20,[[701,1,1,18,19],[730,1,1,19,20]]],[23,7,7,20,27,[[786,3,3,20,23],[787,1,1,23,24],[788,3,3,24,27]]],[24,1,1,27,28,[[800,1,1,27,28]]],[25,1,1,28,29,[[848,1,1,28,29]]]],[308,466,1424,1864,3243,3245,3248,3314,3320,3514,3979,4167,6988,6989,7128,9337,9728,16079,18084,18700,19990,19992,19997,19999,20022,20024,20038,20435,21701]]],["sojourned",[11,11,[[0,5,5,0,5,[[19,1,1,0,1],[20,2,2,1,3],[31,1,1,3,4],[34,1,1,4,5]]],[4,2,2,5,7,[[170,1,1,5,6],[178,1,1,6,7]]],[6,2,2,7,9,[[227,1,1,7,8],[229,1,1,8,9]]],[11,1,1,9,10,[[320,1,1,9,10]]],[18,1,1,10,11,[[582,1,1,10,11]]]],[496,536,547,932,1038,5390,5571,6987,7040,9729,15629]]],["sojourners",[1,1,[[9,1,1,0,1,[[270,1,1,0,1]]]],[8123]]],["sojourneth",[14,14,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,4,4,1,5,[[105,1,1,1,2],[106,1,1,2,3],[107,1,1,3,4],[114,1,1,4,5]]],[3,5,5,5,10,[[131,4,4,5,9],[135,1,1,9,10]]],[5,1,1,10,11,[[206,1,1,10,11]]],[14,1,1,11,12,[[403,1,1,11,12]]],[25,2,2,12,14,[[815,1,1,12,13],[848,1,1,13,14]]]],[1865,3230,3247,3277,3475,4168,4169,4179,4182,4299,6381,12020,20738,21702]]],["sojourning",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7025]]],["strangers",[6,6,[[1,1,1,0,1,[[55,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[13,1,1,2,3,[[381,1,1,2,3]]],[18,1,1,3,4,[[582,1,1,3,4]]],[22,1,1,4,5,[[683,1,1,4,5]]],[23,1,1,5,6,[[779,1,1,5,6]]]],[1659,10839,11499,15618,17756,19830]]],["themselves",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22192]]],["together",[3,3,[[18,2,2,0,2,[[533,1,1,0,1],[617,1,1,1,2]]],[22,1,1,2,3,[[732,1,1,2,3]]]],[14761,16265,18738]]]]},{"k":"H1482","v":[["*",[7,7,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[24,1,1,2,3,[[800,1,1,2,3]]],[25,3,3,3,6,[[820,3,3,3,6]]],[33,1,1,6,7,[[901,1,1,6,7]]]],[1482,5832,20423,20883,20884,20886,22710]]],["+",[2,2,[[25,2,2,0,2,[[820,2,2,0,2]]]],[20884,20886]]],["ones",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20423]]],["whelp",[3,3,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[33,1,1,2,3,[[901,1,1,2,3]]]],[1482,5832,22710]]],["whelps",[1,1,[[25,1,1,0,1,[[820,1,1,0,1]]]],[20883]]]]},{"k":"H1483","v":[["Gur",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9783]]]]},{"k":"H1484","v":[["whelps",[2,2,[[23,1,1,0,1,[[795,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[20250,22711]]]]},{"k":"H1485","v":[["Gurbaal",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11739]]]]},{"k":"H1486","v":[["*",[77,67,[[2,5,3,0,3,[[105,5,3,0,3]]],[3,7,6,3,9,[[142,2,2,3,5],[149,2,1,5,6],[150,1,1,6,7],[152,2,2,7,9]]],[5,26,24,9,33,[[200,1,1,9,10],[201,1,1,10,11],[202,1,1,11,12],[203,3,3,12,15],[204,5,4,15,19],[205,7,7,19,26],[207,8,7,26,33]]],[6,3,2,33,35,[[211,2,1,33,34],[230,1,1,34,35]]],[12,13,11,35,46,[[343,4,4,35,39],[361,3,3,39,42],[362,2,2,42,44],[363,4,2,44,46]]],[15,2,2,46,48,[[422,1,1,46,47],[423,1,1,47,48]]],[16,2,2,48,50,[[428,1,1,48,49],[434,1,1,49,50]]],[18,3,3,50,53,[[493,1,1,50,51],[499,1,1,51,52],[602,1,1,52,53]]],[19,3,3,53,56,[[628,1,1,53,54],[643,1,1,54,55],[645,1,1,55,56]]],[22,3,3,56,59,[[695,1,1,56,57],[712,1,1,57,58],[735,1,1,58,59]]],[23,1,1,59,60,[[757,1,1,59,60]]],[25,1,1,60,61,[[825,1,1,60,61]]],[26,1,1,61,62,[[861,1,1,61,62]]],[28,1,1,62,63,[[878,1,1,62,63]]],[30,1,1,63,64,[[888,1,1,63,64]]],[31,3,1,64,65,[[889,3,1,64,65]]],[32,1,1,65,66,[[894,1,1,65,66]]],[33,1,1,66,67,[[902,1,1,66,67]]]],[3209,3210,3211,4544,4545,4814,4829,4881,4882,6189,6203,6266,6276,6289,6292,6299,6301,6303,6304,6322,6331,6338,6345,6353,6361,6372,6385,6386,6387,6389,6391,6401,6421,6512,7063,10508,10515,10517,10519,11020,11022,11046,11054,11055,11090,11091,12583,12589,12754,12858,14097,14222,16113,16414,16873,16919,17997,18320,18771,19291,21062,22094,22346,22521,22538,22600,22722]]],["+",[2,2,[[3,1,1,0,1,[[152,1,1,0,1]]],[15,1,1,1,2,[[422,1,1,1,2]]]],[4882,12583]]],["lot",[60,54,[[2,4,3,0,3,[[105,4,3,0,3]]],[3,6,5,3,8,[[142,2,2,3,5],[149,2,1,5,6],[150,1,1,6,7],[152,1,1,7,8]]],[5,23,21,8,29,[[200,1,1,8,9],[201,1,1,9,10],[202,1,1,10,11],[203,3,3,11,14],[204,2,1,14,15],[205,7,7,15,22],[207,8,7,22,29]]],[6,3,2,29,31,[[211,2,1,29,30],[230,1,1,30,31]]],[12,9,8,31,39,[[343,4,4,31,35],[361,2,2,35,37],[362,1,1,37,38],[363,2,1,38,39]]],[16,2,2,39,41,[[428,1,1,39,40],[434,1,1,40,41]]],[18,2,2,41,43,[[493,1,1,41,42],[602,1,1,42,43]]],[19,3,3,43,46,[[628,1,1,43,44],[643,1,1,44,45],[645,1,1,45,46]]],[22,3,3,46,49,[[695,1,1,46,47],[712,1,1,47,48],[735,1,1,48,49]]],[23,1,1,49,50,[[757,1,1,49,50]]],[25,1,1,50,51,[[825,1,1,50,51]]],[26,1,1,51,52,[[861,1,1,51,52]]],[31,1,1,52,53,[[889,1,1,52,53]]],[32,1,1,53,54,[[894,1,1,53,54]]]],[3209,3210,3211,4544,4545,4814,4829,4881,6189,6203,6266,6276,6289,6292,6304,6322,6331,6338,6345,6353,6361,6372,6385,6386,6387,6389,6391,6401,6421,6512,7063,10508,10515,10517,10519,11020,11022,11055,11091,12754,12858,14097,16113,16414,16873,16919,17997,18320,18771,19291,21062,22094,22538,22600]]],["lots",[15,14,[[2,1,1,0,1,[[105,1,1,0,1]]],[5,3,3,1,4,[[204,3,3,1,4]]],[12,4,4,4,8,[[361,1,1,4,5],[362,1,1,5,6],[363,2,2,6,8]]],[15,1,1,8,9,[[423,1,1,8,9]]],[18,1,1,9,10,[[499,1,1,9,10]]],[28,1,1,10,11,[[878,1,1,10,11]]],[30,1,1,11,12,[[888,1,1,11,12]]],[31,2,1,12,13,[[889,2,1,12,13]]],[33,1,1,13,14,[[902,1,1,13,14]]]],[3209,6299,6301,6303,11046,11054,11090,11091,12589,14222,22346,22521,22538,22722]]]]},{"k":"H1487","v":[["clods",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13013]]]]},{"k":"H1488","v":[["*",[4,4,[[4,1,1,0,1,[[170,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]],[18,1,1,2,3,[[549,1,1,2,3]]],[29,1,1,3,4,[[885,1,1,3,4]]]],[5388,13608,15006,22465]]],["+",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13608]]],["fleece",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5388]]],["grass",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15006]]],["mowings",[1,1,[[29,1,1,0,1,[[885,1,1,0,1]]]],[22465]]]]},{"k":"H1489","v":[["treasurer",[1,1,[[14,1,1,0,1,[[403,1,1,0,1]]]],[12024]]]]},{"k":"H1490","v":[["treasurers",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12194]]]]},{"k":"H1491","v":[["took",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14982]]]]},{"k":"H1492","v":[["fleece",[7,4,[[6,7,4,0,4,[[216,7,4,0,4]]]],[6691,6692,6693,6694]]]]},{"k":"H1493","v":[["Gizonite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10707]]]]},{"k":"H1494","v":[["*",[15,15,[[0,3,3,0,3,[[30,1,1,0,1],[37,2,2,1,3]]],[4,1,1,3,4,[[167,1,1,3,4]]],[8,4,4,4,8,[[260,4,4,4,8]]],[9,2,2,8,10,[[279,2,2,8,10]]],[17,1,1,10,11,[[436,1,1,10,11]]],[22,1,1,11,12,[[731,1,1,11,12]]],[23,1,1,12,13,[[751,1,1,12,13]]],[32,1,1,13,14,[[893,1,1,13,14]]],[33,1,1,14,15,[[900,1,1,14,15]]]],[892,1131,1132,5338,7863,7865,7868,7872,8340,8341,12889,18718,19148,22595,22696]]],["+",[5,5,[[0,2,2,0,2,[[30,1,1,0,1],[37,1,1,1,2]]],[8,2,2,2,4,[[260,2,2,2,4]]],[17,1,1,4,5,[[436,1,1,4,5]]]],[892,1131,7863,7865,12889]]],["down",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22696]]],["off",[1,1,[[23,1,1,0,1,[[751,1,1,0,1]]]],[19148]]],["poll",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22595]]],["shear",[2,2,[[0,1,1,0,1,[[37,1,1,0,1]]],[4,1,1,1,2,[[167,1,1,1,2]]]],[1132,5338]]],["shearers",[3,3,[[8,2,2,0,2,[[260,2,2,0,2]]],[22,1,1,2,3,[[731,1,1,2,3]]]],[7868,7872,18718]]],["sheepshearers",[2,2,[[9,2,2,0,2,[[279,2,2,0,2]]]],[8340,8341]]]]},{"k":"H1495","v":[["Gazez",[2,1,[[12,2,1,0,1,[[339,2,1,0,1]]]],[10352]]]]},{"k":"H1496","v":[["*",[11,11,[[1,1,1,0,1,[[69,1,1,0,1]]],[10,5,5,1,6,[[295,1,1,1,2],[296,1,1,2,3],[297,3,3,3,6]]],[12,1,1,6,7,[[359,1,1,6,7]]],[22,1,1,7,8,[[687,1,1,7,8]]],[24,1,1,8,9,[[799,1,1,8,9]]],[25,1,1,9,10,[[841,1,1,9,10]]],[29,1,1,10,11,[[883,1,1,10,11]]]],[2076,8895,8932,8943,8945,8946,10966,17839,20363,21519,22434]]],["hewed",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8895]]],["hewn",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21519]]],["stone",[4,4,[[1,1,1,0,1,[[69,1,1,0,1]]],[10,1,1,1,2,[[296,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]],[29,1,1,3,4,[[883,1,1,3,4]]]],[2076,8932,20363,22434]]],["stones",[4,4,[[10,3,3,0,3,[[297,3,3,0,3]]],[22,1,1,3,4,[[687,1,1,3,4]]]],[8943,8945,8946,17839]]],["wrought",[1,1,[[12,1,1,0,1,[[359,1,1,0,1]]]],[10966]]]]},{"k":"H1497","v":[["*",[30,30,[[0,2,2,0,2,[[20,1,1,0,1],[30,1,1,1,2]]],[2,2,2,2,4,[[95,1,1,2,3],[108,1,1,3,4]]],[4,2,2,4,6,[[180,2,2,4,6]]],[6,2,2,6,8,[[219,1,1,6,7],[231,1,1,7,8]]],[9,1,1,8,9,[[289,1,1,8,9]]],[12,1,1,9,10,[[348,1,1,9,10]]],[17,4,4,10,14,[[455,1,1,10,11],[459,3,3,11,14]]],[18,2,2,14,16,[[512,1,1,14,15],[546,1,1,15,16]]],[19,3,3,16,19,[[631,1,1,16,17],[649,1,1,17,18],[655,1,1,18,19]]],[22,1,1,19,20,[[688,1,1,19,20]]],[23,2,2,20,22,[[765,1,1,20,21],[766,1,1,21,22]]],[25,5,5,22,27,[[819,4,4,22,26],[823,1,1,26,27]]],[32,2,2,27,29,[[894,1,1,27,28],[895,1,1,28,29]]],[38,1,1,29,30,[[925,1,1,29,30]]]],[538,904,2853,3294,5640,5642,6779,7125,8674,10696,13345,13438,13445,13455,14420,14939,16506,17037,17220,17852,19452,19457,20856,20861,20865,20867,21005,22597,22610,23102]]],["+",[6,6,[[0,1,1,0,1,[[30,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[12,1,1,3,4,[[348,1,1,3,4]]],[18,2,2,4,6,[[512,1,1,4,5],[546,1,1,5,6]]]],[904,6779,8674,10696,14420,14939]]],["Rob",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17037]]],["away",[7,7,[[0,1,1,0,1,[[20,1,1,0,1]]],[2,1,1,1,2,[[95,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[17,2,2,3,5,[[455,1,1,3,4],[459,1,1,4,5]]],[19,1,1,5,6,[[631,1,1,5,6]]],[22,1,1,6,7,[[688,1,1,6,7]]]],[538,2853,5642,13345,13438,16506,17852]]],["caught",[1,1,[[6,1,1,0,1,[[231,1,1,0,1]]]],[7125]]],["consume",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13455]]],["exercised",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[21005]]],["off",[1,1,[[32,1,1,0,1,[[895,1,1,0,1]]]],[22610]]],["pluck",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13445]]],["rob",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3294]]],["robbeth",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17220]]],["spoiled",[7,7,[[4,1,1,0,1,[[180,1,1,0,1]]],[23,2,2,1,3,[[765,1,1,1,2],[766,1,1,2,3]]],[25,4,4,3,7,[[819,4,4,3,7]]]],[5640,19452,19457,20856,20861,20865,20867]]],["torn",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23102]]],["violence",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22597]]]]},{"k":"H1498","v":[["*",[4,4,[[2,1,1,0,1,[[95,1,1,0,1]]],[18,1,1,1,2,[[539,1,1,1,2]]],[22,1,1,2,3,[[739,1,1,2,3]]],[25,1,1,3,4,[[823,1,1,3,4]]]],[2851,14837,18851,21005]]],["robbery",[3,3,[[18,1,1,0,1,[[539,1,1,0,1]]],[22,1,1,1,2,[[739,1,1,1,2]]],[25,1,1,2,3,[[823,1,1,2,3]]]],[14837,18851,21005]]],["violence",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2851]]]]},{"k":"H1499","v":[["*",[2,2,[[20,1,1,0,1,[[663,1,1,0,1]]],[25,1,1,1,2,[[819,1,1,1,2]]]],[17405,20867]]],["perverting",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17405]]],["violence",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20867]]]]},{"k":"H1500","v":[["*",[6,6,[[2,1,1,0,1,[[95,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]],[25,4,4,2,6,[[819,3,3,2,5],[834,1,1,5,6]]]],[2853,17721,20856,20861,20865,21295]]],["robbed",[1,1,[[25,1,1,0,1,[[834,1,1,0,1]]]],[21295]]],["spoil",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17721]]],["that",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2853]]],["violence",[3,3,[[25,3,3,0,3,[[819,3,3,0,3]]]],[20856,20861,20865]]]]},{"k":"H1501","v":[["palmerworm",[3,3,[[28,2,2,0,2,[[876,1,1,0,1],[877,1,1,1,2]]],[29,1,1,2,3,[[882,1,1,2,3]]]],[22295,22336,22419]]]]},{"k":"H1502","v":[["Gazzam",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12075,12471]]]]},{"k":"H1503","v":[["*",[3,3,[[17,1,1,0,1,[[449,1,1,0,1]]],[22,2,2,1,3,[[689,1,1,1,2],[718,1,1,2,3]]]],[13189,17885,18444]]],["+",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17885]]],["stock",[2,2,[[17,1,1,0,1,[[449,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[13189,18444]]]]},{"k":"H1504","v":[["*",[13,13,[[10,2,2,0,2,[[293,2,2,0,2]]],[11,1,1,2,3,[[318,1,1,2,3]]],[13,1,1,3,4,[[392,1,1,3,4]]],[16,1,1,4,5,[[427,1,1,4,5]]],[17,1,1,5,6,[[457,1,1,5,6]]],[18,2,2,6,8,[[565,1,1,6,7],[613,1,1,7,8]]],[22,2,2,8,10,[[687,1,1,8,9],[731,1,1,9,10]]],[24,1,1,10,11,[[799,1,1,10,11]]],[25,1,1,11,12,[[838,1,1,11,12]]],[34,1,1,12,13,[[905,1,1,12,13]]]],[8841,8842,9678,11753,12725,13417,15313,16209,17849,18719,20408,21408,22785]]],["+",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8841]]],["decree",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13417]]],["decreed",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12725]]],["divide",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8842]]],["divided",[1,1,[[18,1,1,0,1,[[613,1,1,0,1]]]],[16209]]],["down",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9678]]],["off",[6,6,[[13,1,1,0,1,[[392,1,1,0,1]]],[18,1,1,1,2,[[565,1,1,1,2]]],[22,1,1,2,3,[[731,1,1,2,3]]],[24,1,1,3,4,[[799,1,1,3,4]]],[25,1,1,4,5,[[838,1,1,4,5]]],[34,1,1,5,6,[[905,1,1,5,6]]]],[11753,15313,18719,20408,21408,22785]]],["snatch",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17849]]]]},{"k":"H1505","v":[["*",[6,6,[[26,6,6,0,6,[[851,3,3,0,3],[853,1,1,3,4],[854,2,2,4,6]]]],[21785,21792,21803,21844,21881,21885]]],["out",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21792,21803]]],["soothsayers",[4,4,[[26,4,4,0,4,[[851,1,1,0,1],[853,1,1,1,2],[854,2,2,2,4]]]],[21785,21844,21881,21885]]]]},{"k":"H1506","v":[["*",[2,2,[[0,1,1,0,1,[[14,1,1,0,1]]],[18,1,1,1,2,[[613,1,1,1,2]]]],[377,16209]]],["parts",[1,1,[[18,1,1,0,1,[[613,1,1,0,1]]]],[16209]]],["pieces",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[377]]]]},{"k":"H1507","v":[["*",[15,14,[[5,5,5,0,5,[[196,1,1,0,1],[198,1,1,1,2],[202,2,2,2,4],[207,1,1,4,5]]],[6,2,1,5,6,[[211,2,1,5,6]]],[9,1,1,6,7,[[271,1,1,6,7]]],[10,3,3,7,10,[[299,3,3,7,10]]],[12,4,4,10,14,[[343,1,1,10,11],[344,1,1,11,12],[351,1,1,12,13],[357,1,1,13,14]]]],[6097,6142,6268,6275,6402,6538,8157,9066,9067,9068,10521,10563,10790,10930]]],["Gazer",[2,2,[[9,1,1,0,1,[[271,1,1,0,1]]],[12,1,1,1,2,[[351,1,1,1,2]]]],[8157,10790]]],["Gezer",[13,12,[[5,5,5,0,5,[[196,1,1,0,1],[198,1,1,1,2],[202,2,2,2,4],[207,1,1,4,5]]],[6,2,1,5,6,[[211,2,1,5,6]]],[10,3,3,6,9,[[299,3,3,6,9]]],[12,3,3,9,12,[[343,1,1,9,10],[344,1,1,10,11],[357,1,1,11,12]]]],[6097,6142,6268,6275,6402,6538,9066,9067,9068,10521,10563,10930]]]]},{"k":"H1508","v":[["*",[8,8,[[24,1,1,0,1,[[800,1,1,0,1]]],[25,7,7,1,8,[[842,4,4,1,5],[843,3,3,5,8]]]],[20427,21538,21539,21540,21541,21553,21562,21565]]],["place",[7,7,[[25,7,7,0,7,[[842,4,4,0,4],[843,3,3,4,7]]]],[21538,21539,21540,21541,21553,21562,21565]]],["polishing",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20427]]]]},{"k":"H1509","v":[["inhabited",[1,1,[[2,1,1,0,1,[[105,1,1,0,1]]]],[3223]]]]},{"k":"H1510","v":[["decree",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21854,21861]]]]},{"k":"H1511","v":[["Gezrites",[1,1,[[8,1,1,0,1,[[262,1,1,0,1]]]],[7938]]]]},{"k":"H1512","v":[["belly",[2,2,[[0,1,1,0,1,[[2,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]]],[69,3039]]]]},{"k":"H1513","v":[["*",[18,18,[[2,1,1,0,1,[[105,1,1,0,1]]],[9,3,3,1,4,[[280,1,1,1,2],[288,2,2,2,4]]],[17,1,1,4,5,[[476,1,1,4,5]]],[18,5,5,5,10,[[495,3,3,5,8],[597,1,1,8,9],[617,1,1,9,10]]],[19,3,3,10,13,[[633,1,1,10,11],[652,1,1,11,12],[653,1,1,12,13]]],[22,2,2,13,15,[[722,1,1,13,14],[725,1,1,14,15]]],[25,3,3,15,18,[[802,1,1,15,16],[811,1,1,16,17],[825,1,1,17,18]]]],[3213,8363,8611,8615,13909,14126,14130,14131,16078,16273,16568,17135,17162,18552,18613,20477,20635,21067]]],["coal",[2,2,[[9,1,1,0,1,[[280,1,1,0,1]]],[22,1,1,1,2,[[725,1,1,1,2]]]],[8363,18613]]],["coals",[15,15,[[2,1,1,0,1,[[105,1,1,0,1]]],[9,2,2,1,3,[[288,2,2,1,3]]],[17,1,1,3,4,[[476,1,1,3,4]]],[18,5,5,4,9,[[495,3,3,4,7],[597,1,1,7,8],[617,1,1,8,9]]],[19,2,2,9,11,[[633,1,1,9,10],[653,1,1,10,11]]],[22,1,1,11,12,[[722,1,1,11,12]]],[25,3,3,12,15,[[802,1,1,12,13],[811,1,1,13,14],[825,1,1,14,15]]]],[3213,8611,8615,13909,14126,14130,14131,16078,16273,16568,17162,18552,20477,20635,21067]]],["fire",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17135]]]]},{"k":"H1514","v":[["Gaham",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[571]]]]},{"k":"H1515","v":[["Gahar",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12074,12469]]]]},{"k":"H1516","v":[["*",[59,53,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,3,3,1,4,[[155,1,1,1,2],[156,1,1,2,3],[186,1,1,3,4]]],[5,7,5,4,9,[[194,1,1,4,5],[201,2,1,5,6],[204,2,1,6,7],[205,2,2,7,9]]],[8,3,3,9,12,[[248,1,1,9,10],[252,2,2,10,12]]],[9,1,1,12,13,[[274,1,1,12,13]]],[11,3,3,13,16,[[314,1,1,13,14],[326,1,1,14,15],[335,1,1,15,16]]],[12,3,3,16,19,[[341,2,2,16,18],[355,1,1,18,19]]],[13,5,5,19,24,[[380,1,1,19,20],[391,1,1,20,21],[392,1,1,21,22],[394,1,1,22,23],[399,1,1,23,24]]],[15,5,5,24,29,[[414,2,2,24,26],[415,1,1,26,27],[423,2,2,27,29]]],[18,1,1,29,30,[[500,1,1,29,30]]],[22,5,5,30,35,[[700,2,2,30,32],[706,2,2,32,34],[718,1,1,34,35]]],[23,8,6,35,41,[[746,1,1,35,36],[751,3,2,36,38],[763,3,2,38,40],[776,1,1,40,41]]],[25,10,9,41,50,[[807,1,1,41,42],[808,1,1,42,43],[832,1,1,43,44],[833,1,1,44,45],[836,1,1,45,46],[837,2,2,46,48],[840,3,2,48,50]]],[32,1,1,50,51,[[893,1,1,50,51]]],[37,3,2,51,53,[[924,3,2,51,53]]]],[4360,5004,5050,5845,6013,6210,6309,6335,6348,7503,7621,7670,8222,9567,9903,10175,10399,10424,10902,11485,11715,11741,11767,11914,12320,12322,12340,12618,12623,14239,18053,18057,18165,18168,18424,18988,19150,19151,19409,19413,19766,20566,20593,21242,21253,21352,21363,21365,21459,21463,22585,23072,23073]]],["valley",[51,45,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,3,3,1,4,[[155,1,1,1,2],[156,1,1,2,3],[186,1,1,3,4]]],[5,7,5,4,9,[[194,1,1,4,5],[201,2,1,5,6],[204,2,1,6,7],[205,2,2,7,9]]],[8,3,3,9,12,[[248,1,1,9,10],[252,2,2,10,12]]],[9,1,1,12,13,[[274,1,1,12,13]]],[11,3,3,13,16,[[314,1,1,13,14],[326,1,1,14,15],[335,1,1,15,16]]],[12,3,3,16,19,[[341,2,2,16,18],[355,1,1,18,19]]],[13,5,5,19,24,[[380,1,1,19,20],[391,1,1,20,21],[392,1,1,21,22],[394,1,1,22,23],[399,1,1,23,24]]],[15,5,5,24,29,[[414,2,2,24,26],[415,1,1,26,27],[423,2,2,27,29]]],[18,1,1,29,30,[[500,1,1,29,30]]],[22,4,4,30,34,[[700,2,2,30,32],[706,1,1,32,33],[718,1,1,33,34]]],[23,8,6,34,40,[[746,1,1,34,35],[751,3,2,35,37],[763,3,2,37,39],[776,1,1,39,40]]],[25,3,2,40,42,[[840,3,2,40,42]]],[32,1,1,42,43,[[893,1,1,42,43]]],[37,3,2,43,45,[[924,3,2,43,45]]]],[4360,5004,5050,5845,6013,6210,6309,6335,6348,7503,7621,7670,8222,9567,9903,10175,10399,10424,10902,11485,11715,11741,11767,11914,12320,12322,12340,12618,12623,14239,18053,18057,18168,18424,18988,19150,19151,19409,19413,19766,21459,21463,22585,23072,23073]]],["valleys",[8,8,[[22,1,1,0,1,[[706,1,1,0,1]]],[25,7,7,1,8,[[807,1,1,1,2],[808,1,1,2,3],[832,1,1,3,4],[833,1,1,4,5],[836,1,1,5,6],[837,2,2,6,8]]]],[18165,20566,20593,21242,21253,21352,21363,21365]]]]},{"k":"H1517","v":[["*",[7,6,[[0,2,1,0,1,[[31,2,1,0,1]]],[17,2,2,1,3,[[445,1,1,1,2],[475,1,1,2,3]]],[22,1,1,3,4,[[726,1,1,3,4]]],[25,2,2,4,6,[[838,2,2,4,6]]]],[960,13097,13881,18618,21403,21405]]],["sinew",[3,2,[[0,2,1,0,1,[[31,2,1,0,1]]],[22,1,1,1,2,[[726,1,1,1,2]]]],[960,18618]]],["sinews",[4,4,[[17,2,2,0,2,[[445,1,1,0,1],[475,1,1,1,2]]],[25,2,2,2,4,[[838,2,2,2,4]]]],[13097,13881,21403,21405]]]]},{"k":"H1518","v":[["*",[6,6,[[6,1,1,0,1,[[230,1,1,0,1]]],[17,2,2,1,3,[[473,1,1,1,2],[475,1,1,2,3]]],[18,1,1,3,4,[[499,1,1,3,4]]],[25,1,1,4,5,[[833,1,1,4,5]]],[32,1,1,5,6,[[896,1,1,5,6]]]],[7087,13801,13887,14213,21250,22630]]],["forth",[4,4,[[6,1,1,0,1,[[230,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]],[25,1,1,2,3,[[833,1,1,2,3]]],[32,1,1,3,4,[[896,1,1,3,4]]]],[7087,13801,21250,22630]]],["took",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14213]]],["up",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13887]]]]},{"k":"H1519","v":[["strove",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21935]]]]},{"k":"H1520","v":[["Giah",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8073]]]]},{"k":"H1521","v":[["Gihon",[6,6,[[0,1,1,0,1,[[1,1,1,0,1]]],[10,3,3,1,4,[[291,3,3,1,4]]],[13,2,2,4,6,[[398,1,1,4,5],[399,1,1,5,6]]]],[43,8750,8755,8762,11905,11922]]]]},{"k":"H1522","v":[["Gehazi",[12,12,[[11,12,12,0,12,[[316,7,7,0,7],[317,3,3,7,10],[320,2,2,10,12]]]],[9615,9617,9628,9630,9632,9634,9639,9667,9668,9672,9731,9732]]]]},{"k":"H1523","v":[["*",[45,44,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,19,19,1,20,[[479,1,1,1,2],[486,1,1,2,3],[490,2,2,3,5],[491,1,1,5,6],[493,1,1,6,7],[498,1,1,7,8],[508,1,1,8,9],[509,1,1,9,10],[512,1,1,10,11],[525,1,1,11,12],[528,1,1,12,13],[530,1,1,13,14],[566,1,1,14,15],[573,1,1,15,16],[574,2,2,16,18],[595,1,1,18,19],[626,1,1,19,20]]],[19,5,4,20,24,[[629,1,1,20,21],[650,3,2,21,23],[651,1,1,23,24]]],[21,1,1,24,25,[[671,1,1,24,25]]],[22,11,11,25,36,[[687,1,1,25,26],[703,1,1,26,27],[707,1,1,27,28],[713,2,2,28,30],[719,1,1,30,31],[727,1,1,31,32],[739,1,1,32,33],[743,2,2,33,35],[744,1,1,35,36]]],[27,1,1,36,37,[[871,1,1,36,37]]],[28,2,2,37,39,[[877,2,2,37,39]]],[34,2,2,39,41,[[903,1,1,39,40],[905,1,1,40,41]]],[35,1,1,41,42,[[908,1,1,41,42]]],[37,2,2,42,44,[[919,1,1,42,43],[920,1,1,43,44]]]],[10851,13956,14035,14078,14079,14087,14101,14192,14338,14366,14419,14645,14699,14725,15342,15476,15479,15486,15893,16387,16447,17068,17069,17096,17541,17832,18127,18212,18321,18322,18467,18649,18853,18915,18916,18932,22230,22332,22334,22746,22786,22837,23008,23023]]],["+",[2,1,[[19,2,1,0,1,[[650,2,1,0,1]]]],[17068]]],["Rejoice",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23008]]],["glad",[10,10,[[18,3,3,0,3,[[508,1,1,0,1],[525,1,1,1,2],[573,1,1,2,3]]],[19,1,1,3,4,[[651,1,1,3,4]]],[21,1,1,4,5,[[671,1,1,4,5]]],[22,2,2,5,7,[[703,1,1,5,6],[744,1,1,6,7]]],[28,2,2,7,9,[[877,2,2,7,9]]],[34,1,1,9,10,[[903,1,1,9,10]]]],[14338,14645,15476,17096,17541,18127,18932,22332,22334,22746]]],["in",[1,1,[[19,1,1,0,1,[[629,1,1,0,1]]]],[16447]]],["joy",[2,2,[[34,1,1,0,1,[[905,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[22786,22837]]],["joyful",[4,4,[[18,2,2,0,2,[[512,1,1,0,1],[626,1,1,1,2]]],[22,2,2,2,4,[[727,1,1,2,3],[739,1,1,3,4]]]],[14419,16387,18649,18853]]],["rejoice",[22,22,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,12,12,1,13,[[479,1,1,1,2],[486,1,1,2,3],[490,2,2,3,5],[491,1,1,5,6],[498,1,1,6,7],[509,1,1,7,8],[528,1,1,8,9],[530,1,1,9,10],[566,1,1,10,11],[574,1,1,11,12],[595,1,1,12,13]]],[19,1,1,13,14,[[650,1,1,13,14]]],[22,7,7,14,21,[[687,1,1,14,15],[707,1,1,15,16],[713,2,2,16,18],[719,1,1,18,19],[743,2,2,19,21]]],[37,1,1,21,22,[[920,1,1,21,22]]]],[10851,13956,14035,14078,14079,14087,14192,14366,14699,14725,15342,15479,15893,17069,17832,18212,18321,18322,18467,18915,18916,23023]]],["rejoiced",[2,2,[[18,1,1,0,1,[[574,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]]],[15486,22230]]],["rejoiceth",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14101]]]]},{"k":"H1524","v":[["*",[9,9,[[17,1,1,0,1,[[438,1,1,0,1]]],[18,3,3,1,4,[[520,1,1,1,2],[522,1,1,2,3],[542,1,1,3,4]]],[22,1,1,4,5,[[694,1,1,4,5]]],[23,1,1,5,6,[[792,1,1,5,6]]],[26,1,1,6,7,[[850,1,1,6,7]]],[27,1,1,7,8,[[870,1,1,7,8]]],[28,1,1,8,9,[[876,1,1,8,9]]]],[12926,14570,14612,14872,17979,20113,21747,22209,22307]]],["+",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12926]]],["gladness",[2,2,[[23,1,1,0,1,[[792,1,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]]],[20113,22307]]],["joy",[3,3,[[18,1,1,0,1,[[520,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]],[27,1,1,2,3,[[870,1,1,2,3]]]],[14570,17979,22209]]],["rejoice",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14872]]],["rejoicing",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14612]]],["sort",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21747]]]]},{"k":"H1525","v":[["*",[2,2,[[22,2,2,0,2,[[713,1,1,0,1],[743,1,1,1,2]]]],[18322,18915]]],["joy",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18322]]],["rejoicing",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18915]]]]},{"k":"H1526","v":[["Gilonite",[2,2,[[9,2,2,0,2,[[281,1,1,0,1],[289,1,1,1,2]]]],[8401,8687]]]]},{"k":"H1527","v":[["Ginath",[2,2,[[10,2,2,0,2,[[306,2,2,0,2]]]],[9304,9305]]]]},{"k":"H1528","v":[["plaister",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21879]]]]},{"k":"H1529","v":[["Geshan",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10353]]]]},{"k":"H1530","v":[["*",[34,31,[[0,7,4,0,4,[[30,7,4,0,4]]],[5,2,2,4,6,[[193,1,1,4,5],[194,1,1,5,6]]],[9,1,1,6,7,[[284,1,1,6,7]]],[11,1,1,7,8,[[331,1,1,7,8]]],[17,3,3,8,11,[[443,1,1,8,9],[450,1,1,9,10],[473,1,1,10,11]]],[18,5,5,11,16,[[519,1,1,11,12],[542,1,1,12,13],[566,1,1,13,14],[584,2,2,14,16]]],[21,1,1,16,17,[[674,1,1,16,17]]],[22,4,4,17,21,[[703,1,1,17,18],[715,1,1,18,19],[726,1,1,19,20],[729,1,1,20,21]]],[23,6,6,21,27,[[749,1,1,21,22],[753,1,1,22,23],[775,1,1,23,24],[795,3,3,24,27]]],[25,1,1,27,28,[[827,1,1,27,28]]],[27,1,1,28,29,[[873,1,1,28,29]]],[31,1,1,29,30,[[890,1,1,29,30]]],[37,1,1,30,31,[[920,1,1,30,31]]]],[919,921,924,925,6002,6031,8495,10086,13046,13231,13804,14562,14867,15335,15724,15728,17594,18120,18378,18632,18688,19080,19186,19726,20249,20254,20267,21103,22263,22551,23027]]],["billows",[1,1,[[18,1,1,0,1,[[519,1,1,0,1]]]],[14562]]],["heap",[12,9,[[0,7,4,0,4,[[30,7,4,0,4]]],[5,2,2,4,6,[[193,1,1,4,5],[194,1,1,5,6]]],[9,1,1,6,7,[[284,1,1,6,7]]],[17,1,1,7,8,[[443,1,1,7,8]]],[22,1,1,8,9,[[703,1,1,8,9]]]],[919,921,924,925,6002,6031,8495,13046,18120]]],["heaps",[6,6,[[11,1,1,0,1,[[331,1,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]],[23,2,2,3,5,[[753,1,1,3,4],[795,1,1,4,5]]],[27,1,1,5,6,[[873,1,1,5,6]]]],[10086,13231,18378,19186,20249,22263]]],["spring",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17594]]],["waves",[14,14,[[17,1,1,0,1,[[473,1,1,0,1]]],[18,4,4,1,5,[[542,1,1,1,2],[566,1,1,2,3],[584,2,2,3,5]]],[22,2,2,5,7,[[726,1,1,5,6],[729,1,1,6,7]]],[23,4,4,7,11,[[749,1,1,7,8],[775,1,1,8,9],[795,2,2,9,11]]],[25,1,1,11,12,[[827,1,1,11,12]]],[31,1,1,12,13,[[890,1,1,12,13]]],[37,1,1,13,14,[[920,1,1,13,14]]]],[13804,14867,15335,15724,15728,18632,18688,19080,19726,20254,20267,21103,22551,23027]]]]},{"k":"H1531","v":[]},{"k":"H1532","v":[["barber's",[1,1,[[25,1,1,0,1,[[806,1,1,0,1]]]],[20547]]]]},{"k":"H1533","v":[["Gilboa",[8,8,[[8,3,3,0,3,[[263,1,1,0,1],[266,2,2,1,3]]],[9,3,3,3,6,[[267,2,2,3,5],[287,1,1,5,6]]],[12,2,2,6,8,[[347,2,2,6,8]]]],[7946,8010,8017,8028,8043,8592,10660,10667]]]]},{"k":"H1534","v":[["*",[11,11,[[18,2,2,0,2,[[554,1,1,0,1],[560,1,1,1,2]]],[20,1,1,2,3,[[670,1,1,2,3]]],[22,2,2,3,5,[[683,1,1,3,4],[695,1,1,4,5]]],[23,1,1,5,6,[[791,1,1,5,6]]],[25,5,5,6,11,[[811,3,3,6,9],[824,1,1,9,10],[827,1,1,10,11]]]],[15111,15254,17529,17767,17996,20076,20635,20639,20646,21031,21110]]],["heaven",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15111]]],["thing",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17996]]],["wheel",[3,3,[[18,1,1,0,1,[[560,1,1,0,1]]],[20,1,1,1,2,[[670,1,1,1,2]]],[25,1,1,2,3,[[811,1,1,2,3]]]],[15254,17529,20646]]],["wheels",[6,6,[[22,1,1,0,1,[[683,1,1,0,1]]],[23,1,1,1,2,[[791,1,1,1,2]]],[25,4,4,2,6,[[811,2,2,2,4],[824,1,1,4,5],[827,1,1,5,6]]]],[17767,20076,20635,20639,21031,21110]]]]},{"k":"H1535","v":[["wheels",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21942]]]]},{"k":"H1536","v":[["wheel",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18192]]]]},{"k":"H1537","v":[["Gilgal",[41,39,[[4,1,1,0,1,[[163,1,1,0,1]]],[5,13,13,1,14,[[190,2,2,1,3],[191,2,2,3,5],[195,1,1,5,6],[196,5,5,6,11],[198,1,1,11,12],[200,1,1,12,13],[201,1,1,13,14]]],[6,2,2,14,16,[[212,1,1,14,15],[213,1,1,15,16]]],[8,13,12,16,28,[[242,1,1,16,17],[245,1,1,17,18],[246,3,2,18,20],[248,5,5,20,25],[250,3,3,25,28]]],[9,2,2,28,30,[[285,2,2,28,30]]],[11,2,2,30,32,[[314,1,1,30,31],[316,1,1,31,32]]],[15,1,1,32,33,[[424,1,1,32,33]]],[27,3,3,33,36,[[865,1,1,33,34],[870,1,1,34,35],[873,1,1,35,36]]],[29,3,2,36,38,[[882,1,1,36,37],[883,2,1,37,38]]],[32,1,1,38,39,[[898,1,1,38,39]]]],[5238,5929,5930,5943,5944,6043,6070,6071,6073,6079,6107,6153,6193,6209,6546,6587,7368,7426,7459,7460,7489,7492,7493,7497,7500,7572,7581,7593,8526,8551,9552,9641,12653,22148,22223,22263,22414,22428,22653]]]]},{"k":"H1538","v":[["*",[12,12,[[1,2,2,0,2,[[65,1,1,0,1],[87,1,1,1,2]]],[3,5,5,2,7,[[117,4,4,2,6],[119,1,1,6,7]]],[6,1,1,7,8,[[219,1,1,7,8]]],[11,1,1,8,9,[[321,1,1,8,9]]],[12,3,3,9,12,[[347,1,1,9,10],[360,2,2,10,12]]]],[1963,2659,3606,3622,3624,3626,3739,6807,9791,10669,10986,11007]]],["head",[1,1,[[12,1,1,0,1,[[347,1,1,0,1]]]],[10669]]],["man",[2,2,[[1,2,2,0,2,[[65,1,1,0,1],[87,1,1,1,2]]]],[1963,2659]]],["poll",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3739]]],["polls",[6,6,[[3,4,4,0,4,[[117,4,4,0,4]]],[12,2,2,4,6,[[360,2,2,4,6]]]],[3606,3622,3624,3626,10986,11007]]],["skull",[2,2,[[6,1,1,0,1,[[219,1,1,0,1]]],[11,1,1,1,2,[[321,1,1,1,2]]]],[6807,9791]]]]},{"k":"H1539","v":[["skin",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13253]]]]},{"k":"H1540","v":[["*",[188,168,[[0,2,2,0,2,[[8,1,1,0,1],[34,1,1,1,2]]],[1,1,1,2,3,[[69,1,1,2,3]]],[2,24,20,3,23,[[107,17,14,3,17],[109,7,6,17,23]]],[3,3,3,23,26,[[138,1,1,23,24],[140,2,2,24,26]]],[4,3,3,26,29,[[174,1,1,26,27],[179,1,1,27,28],[181,1,1,28,29]]],[6,1,1,29,30,[[228,1,1,29,30]]],[7,3,3,30,33,[[234,2,2,30,32],[235,1,1,32,33]]],[8,15,13,33,46,[[237,2,1,33,34],[238,2,2,34,36],[239,2,2,36,38],[244,1,1,38,39],[249,2,2,39,41],[255,3,3,41,44],[257,3,2,44,46]]],[9,6,4,46,50,[[272,3,1,46,47],[273,1,1,47,48],[281,1,1,48,49],[288,1,1,49,50]]],[11,15,14,50,64,[[327,1,1,50,51],[328,1,1,51,52],[329,7,7,52,59],[330,1,1,59,60],[336,3,2,60,62],[337,2,2,62,64]]],[12,7,7,64,71,[[342,2,2,64,66],[343,1,1,66,67],[345,2,2,67,69],[346,1,1,69,70],[354,1,1,70,71]]],[13,1,1,71,72,[[402,1,1,71,72]]],[14,1,1,72,73,[[404,1,1,72,73]]],[15,1,1,73,74,[[419,1,1,73,74]]],[16,5,3,74,77,[[427,3,1,74,75],[428,1,1,75,76],[433,1,1,76,77]]],[17,8,8,77,85,[[447,1,1,77,78],[455,2,2,78,80],[468,1,1,80,81],[471,2,2,81,83],[473,1,1,83,84],[476,1,1,84,85]]],[18,3,3,85,88,[[495,1,1,85,86],[575,1,1,86,87],[596,1,1,87,88]]],[19,7,7,88,95,[[638,1,1,88,89],[645,1,1,89,90],[647,1,1,90,91],[652,1,1,91,92],[653,1,1,92,93],[654,2,2,93,95]]],[22,17,16,95,111,[[683,1,1,95,96],[694,1,1,96,97],[700,2,2,97,99],[701,1,1,99,100],[702,1,1,100,101],[704,1,1,101,102],[716,1,1,102,103],[718,1,1,103,104],[725,3,2,104,106],[727,2,2,106,108],[731,1,1,108,109],[734,1,1,109,110],[735,1,1,110,111]]],[23,27,26,111,137,[[745,1,1,111,112],[755,1,1,112,113],[757,3,2,113,115],[764,2,2,115,117],[766,1,1,117,118],[768,1,1,118,119],[771,1,1,119,120],[773,4,4,120,124],[776,2,2,124,126],[777,1,1,126,127],[783,1,1,127,128],[784,2,2,128,130],[787,1,1,130,131],[793,1,1,131,132],[796,5,5,132,137]]],[24,4,3,137,140,[[797,1,1,137,138],[798,1,1,138,139],[800,2,1,139,140]]],[25,14,12,140,152,[[813,2,1,140,141],[814,1,1,141,142],[817,3,3,142,145],[822,1,1,145,146],[823,1,1,146,147],[824,4,3,147,150],[840,2,2,150,152]]],[26,1,1,152,153,[[859,1,1,152,153]]],[27,3,3,153,156,[[863,1,1,153,154],[868,1,1,154,155],[871,1,1,155,156]]],[29,12,8,156,164,[[879,2,2,156,158],[881,1,1,158,159],[883,3,2,159,161],[884,2,1,161,162],[885,4,2,162,164]]],[32,2,2,164,166,[[893,2,2,164,166]]],[33,2,2,166,168,[[901,1,1,166,167],[902,1,1,167,168]]]],[226,1018,2077,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3329,3335,3336,3337,3338,3339,4406,4450,4462,5500,5605,5708,7023,7176,7179,7194,7267,7283,7297,7318,7319,7406,7516,7519,7732,7742,7743,7795,7804,8177,8207,8408,8618,9954,9972,9989,9994,10006,10009,10010,10011,10016,10035,10216,10217,10233,10243,10434,10454,10469,10581,10582,10616,10888,12013,12028,12426,12730,12761,12830,13150,13353,13354,13666,13746,13751,13810,13901,14133,15492,15916,16701,16903,16973,17122,17167,17174,17194,17752,17972,18060,18066,18078,18106,18151,18402,18425,18601,18602,18645,18657,18712,18754,18773,18949,19246,19285,19288,19426,19434,19466,19525,19616,19636,19639,19642,19649,19742,19745,19781,19932,19942,19948,20000,20137,20291,20303,20304,20305,20306,20313,20346,20442,20683,20722,20798,20799,20819,20968,20986,21017,21025,21036,21471,21476,22016,22115,22179,22230,22369,22370,22402,22428,22450,22457,22475,22481,22585,22595,22706,22717]]],["+",[40,33,[[2,2,1,0,1,[[109,2,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]],[7,1,1,2,3,[[235,1,1,2,3]]],[8,8,6,3,9,[[237,2,1,3,4],[255,3,3,4,7],[257,3,2,7,9]]],[9,3,2,9,11,[[272,2,1,9,10],[273,1,1,10,11]]],[11,4,4,11,15,[[329,1,1,11,12],[330,1,1,12,13],[336,2,2,13,15]]],[12,2,2,15,17,[[343,1,1,15,16],[354,1,1,16,17]]],[22,2,2,17,19,[[700,1,1,17,18],[704,1,1,18,19]]],[23,7,7,19,26,[[755,1,1,19,20],[764,1,1,20,21],[766,1,1,21,22],[768,1,1,22,23],[771,1,1,23,24],[787,1,1,24,25],[793,1,1,25,26]]],[24,2,2,26,28,[[798,1,1,26,27],[800,1,1,27,28]]],[25,1,1,28,29,[[824,1,1,28,29]]],[27,1,1,29,30,[[863,1,1,29,30]]],[29,6,3,30,33,[[883,2,1,30,31],[885,4,2,31,33]]]],[3336,4406,7194,7267,7732,7742,7743,7795,7804,8177,8207,9989,10035,10216,10217,10469,10888,18060,18151,19246,19434,19466,19525,19616,20000,20137,20346,20442,21025,22115,22428,22475,22481]]],["Open",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[19,1,1,1,2,[[654,1,1,1,2]]]],[15916,17174]]],["appeared",[1,1,[[0,1,1,0,1,[[34,1,1,0,1]]]],[1018]]],["appeareth",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17194]]],["away",[17,15,[[11,6,6,0,6,[[329,4,4,0,4],[337,2,2,4,6]]],[12,3,3,6,9,[[342,2,2,6,8],[346,1,1,8,9]]],[13,1,1,9,10,[[402,1,1,9,10]]],[14,1,1,10,11,[[404,1,1,10,11]]],[15,1,1,11,12,[[419,1,1,11,12]]],[16,3,1,12,13,[[427,3,1,12,13]]],[23,2,2,13,15,[[745,1,1,13,14],[773,1,1,14,15]]]],[9994,10006,10011,10016,10233,10243,10434,10454,10616,12013,12028,12426,12730,18949,19639]]],["bewray",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17972]]],["brought",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10010]]],["captive",[20,18,[[11,2,2,0,2,[[327,1,1,0,1],[328,1,1,1,2]]],[22,1,1,2,3,[[727,1,1,2,3]]],[23,13,12,3,15,[[757,2,1,3,4],[764,1,1,4,5],[773,2,2,5,7],[783,1,1,7,8],[784,2,2,8,10],[796,5,5,10,15]]],[29,3,2,15,17,[[879,1,1,15,16],[884,2,1,16,17]]],[33,1,1,17,18,[[901,1,1,17,18]]]],[9954,9972,18657,19285,19426,19636,19649,19932,19942,19948,20291,20303,20304,20305,20306,22370,22457,22706]]],["captives",[2,2,[[11,1,1,0,1,[[336,1,1,0,1]]],[23,1,1,1,2,[[773,1,1,1,2]]]],[10216,19642]]],["captivity",[9,9,[[6,1,1,0,1,[[228,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]],[24,2,2,2,4,[[797,1,1,2,3],[800,1,1,3,4]]],[25,2,2,4,6,[[840,2,2,4,6]]],[29,2,2,6,8,[[879,1,1,6,7],[883,1,1,7,8]]],[32,1,1,8,9,[[893,1,1,8,9]]]],[7023,17752,20313,20442,21471,21476,22369,22450,22595]]],["depart",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13354]]],["departed",[3,3,[[8,2,2,0,2,[[239,2,2,0,2]]],[27,1,1,2,3,[[871,1,1,2,3]]]],[7318,7319,22230]]],["discover",[6,6,[[4,1,1,0,1,[[174,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[19,1,1,2,3,[[652,1,1,2,3]]],[25,1,1,3,4,[[817,1,1,3,4]]],[32,1,1,4,5,[[893,1,1,4,5]]],[33,1,1,5,6,[[902,1,1,5,6]]]],[5500,13901,17122,20799,22585,22717]]],["discovered",[14,14,[[1,1,1,0,1,[[69,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]],[22,1,1,3,4,[[735,1,1,3,4]]],[23,1,1,4,5,[[757,1,1,4,5]]],[25,8,8,5,13,[[814,1,1,5,6],[817,2,2,6,8],[822,1,1,8,9],[823,1,1,9,10],[824,3,3,10,13]]],[27,1,1,13,14,[[868,1,1,13,14]]]],[2077,8618,14133,18773,19288,20722,20798,20819,20968,20986,21017,21025,21036,22179]]],["discovereth",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13150]]],["exile",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8408]]],["gone",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18106]]],["himself",[2,2,[[8,1,1,0,1,[[238,1,1,0,1]]],[9,1,1,1,2,[[272,1,1,1,2]]]],[7297,8177]]],["itself",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16903]]],["open",[4,4,[[3,2,2,0,2,[[140,2,2,0,2]]],[23,2,2,2,4,[[776,2,2,2,4]]]],[4450,4462,19742,19745]]],["opened",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13810]]],["openeth",[3,3,[[17,3,3,0,3,[[468,1,1,0,1],[471,2,2,1,3]]]],[13666,13746,13751]]],["ourselves",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7516]]],["published",[2,2,[[16,2,2,0,2,[[428,1,1,0,1],[433,1,1,1,2]]]],[12761,12830]]],["remove",[2,1,[[25,2,1,0,1,[[813,2,1,0,1]]]],[20683]]],["removed",[4,4,[[11,1,1,0,1,[[329,1,1,0,1]]],[12,2,2,1,3,[[345,2,2,1,3]]],[22,1,1,3,4,[[716,1,1,3,4]]]],[10009,10581,10582,18402]]],["reveal",[2,2,[[17,1,1,0,1,[[455,1,1,0,1]]],[23,1,1,1,2,[[777,1,1,1,2]]]],[13353,19781]]],["revealed",[8,8,[[4,1,1,0,1,[[181,1,1,0,1]]],[8,1,1,1,2,[[238,1,1,1,2]]],[22,5,5,2,7,[[700,1,1,2,3],[701,1,1,3,4],[718,1,1,4,5],[731,1,1,5,6],[734,1,1,6,7]]],[26,1,1,7,8,[[859,1,1,7,8]]]],[5708,7283,18066,18078,18425,18712,18754,22016]]],["revealeth",[3,3,[[19,2,2,0,2,[[638,1,1,0,1],[647,1,1,1,2]]],[29,1,1,2,3,[[881,1,1,2,3]]]],[16701,16973,22402]]],["shewed",[2,2,[[18,1,1,0,1,[[575,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]]],[15492,17167]]],["themselves",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7519]]],["told",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7406]]],["uncover",[21,17,[[2,18,15,0,15,[[107,17,14,0,14],[109,1,1,14,15]]],[7,1,1,15,16,[[234,1,1,15,16]]],[22,2,1,16,17,[[725,2,1,16,17]]]],[3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3337,7176,18601]]],["uncovered",[7,7,[[0,1,1,0,1,[[8,1,1,0,1]]],[2,4,4,1,5,[[109,4,4,1,5]]],[7,1,1,5,6,[[234,1,1,5,6]]],[22,1,1,6,7,[[725,1,1,6,7]]]],[226,3329,3335,3338,3339,7179,18602]]],["uncovereth",[1,1,[[4,1,1,0,1,[[179,1,1,0,1]]]],[5605]]],["yourselves",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18645]]]]},{"k":"H1541","v":[["*",[9,8,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,7,6,2,8,[[851,7,6,2,8]]]],[12120,12146,21777,21780,21786,21787,21788,21805]]],["+",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12146]]],["over",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12120]]],["reveal",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21805]]],["revealed",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21777,21788]]],["revealer",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21805]]],["revealeth",[3,3,[[26,3,3,0,3,[[851,3,3,0,3]]]],[21780,21786,21787]]]]},{"k":"H1542","v":[["*",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]]],[6253,8401]]],["+",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8401]]],["Giloh",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6253]]]]},{"k":"H1543","v":[["*",[15,9,[[5,3,1,0,1,[[201,3,1,0,1]]],[6,3,1,1,2,[[211,3,1,1,2]]],[10,3,2,2,4,[[297,3,2,2,4]]],[13,3,2,4,6,[[370,3,2,4,6]]],[20,1,1,6,7,[[670,1,1,6,7]]],[37,2,2,7,9,[[914,2,2,7,9]]]],[6221,6524,8975,8976,11258,11259,17529,22924,22925]]],["bowl",[3,3,[[20,1,1,0,1,[[670,1,1,0,1]]],[37,2,2,1,3,[[914,2,2,1,3]]]],[17529,22924,22925]]],["bowls",[3,2,[[10,3,2,0,2,[[297,3,2,0,2]]]],[8975,8976]]],["pommels",[3,2,[[13,3,2,0,2,[[370,3,2,0,2]]]],[11258,11259]]],["springs",[6,2,[[5,3,1,0,1,[[201,3,1,0,1]]],[6,3,1,1,2,[[211,3,1,1,2]]]],[6221,6524]]]]},{"k":"H1544","v":[["*",[48,45,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[10,2,2,2,4,[[305,1,1,2,3],[311,1,1,3,4]]],[11,4,4,4,8,[[329,1,1,4,5],[333,2,2,5,7],[335,1,1,7,8]]],[23,1,1,8,9,[[794,1,1,8,9]]],[25,39,36,9,45,[[807,6,5,9,14],[809,1,1,14,15],[815,6,5,15,20],[817,1,1,20,21],[819,3,3,21,24],[821,8,7,24,31],[823,2,2,31,33],[824,5,5,33,38],[831,1,1,38,39],[834,1,1,39,40],[837,2,2,40,42],[838,1,1,42,43],[845,2,2,43,45]]]],[3554,5696,9261,9477,9995,10130,10140,10189,20168,20567,20568,20569,20572,20576,20614,20734,20735,20736,20737,20738,20798,20855,20861,20864,20902,20903,20911,20913,20919,20926,20934,20979,20980,21014,21037,21044,21046,21056,21217,21305,21377,21384,21420,21609,21611]]],["idols",[47,44,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[10,2,2,2,4,[[305,1,1,2,3],[311,1,1,3,4]]],[11,4,4,4,8,[[329,1,1,4,5],[333,2,2,5,7],[335,1,1,7,8]]],[25,39,36,8,44,[[807,6,5,8,13],[809,1,1,13,14],[815,6,5,14,19],[817,1,1,19,20],[819,3,3,20,23],[821,8,7,23,30],[823,2,2,30,32],[824,5,5,32,37],[831,1,1,37,38],[834,1,1,38,39],[837,2,2,39,41],[838,1,1,41,42],[845,2,2,42,44]]]],[3554,5696,9261,9477,9995,10130,10140,10189,20567,20568,20569,20572,20576,20614,20734,20735,20736,20737,20738,20798,20855,20861,20864,20902,20903,20911,20913,20919,20926,20934,20979,20980,21014,21037,21044,21046,21056,21217,21305,21377,21384,21420,21609,21611]]],["images",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20168]]]]},{"k":"H1545","v":[["clothes",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21145]]]]},{"k":"H1546","v":[["*",[15,14,[[11,1,1,0,1,[[337,1,1,0,1]]],[22,2,2,1,3,[[698,1,1,1,2],[723,1,1,2,3]]],[23,5,5,3,8,[[768,1,1,3,4],[772,1,1,4,5],[773,1,1,5,6],[784,1,1,6,7],[796,1,1,7,8]]],[25,3,3,8,11,[[802,1,1,8,9],[834,1,1,9,10],[841,1,1,10,11]]],[29,2,2,11,13,[[879,2,2,11,13]]],[30,2,1,13,14,[[888,2,1,13,14]]]],[10249,18033,18574,19529,19622,19657,19942,20307,20466,21301,21478,22370,22373,22530]]],["captive",[2,2,[[23,2,2,0,2,[[768,1,1,0,1],[784,1,1,1,2]]]],[19529,19942]]],["captives",[3,3,[[22,2,2,0,2,[[698,1,1,0,1],[723,1,1,1,2]]],[23,1,1,2,3,[[772,1,1,2,3]]]],[18033,18574,19622]]],["captivity",[10,9,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,2,2,1,3,[[773,1,1,1,2],[796,1,1,2,3]]],[25,3,3,3,6,[[802,1,1,3,4],[834,1,1,4,5],[841,1,1,5,6]]],[29,2,2,6,8,[[879,2,2,6,8]]],[30,2,1,8,9,[[888,2,1,8,9]]]],[10249,19657,20307,20466,21301,21478,22370,22373,22530]]]]},{"k":"H1547","v":[["*",[4,4,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,3,3,1,4,[[851,1,1,1,2],[854,1,1,2,3],[855,1,1,3,4]]]],[12167,21783,21887,21918]]],["+",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21783]]],["captivity",[3,3,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,2,2,1,3,[[854,1,1,1,2],[855,1,1,2,3]]]],[12167,21887,21918]]]]},{"k":"H1548","v":[["*",[23,18,[[0,1,1,0,1,[[40,1,1,0,1]]],[2,6,4,1,5,[[102,2,1,1,2],[103,3,2,2,4],[110,1,1,4,5]]],[3,4,3,5,8,[[122,4,3,5,8]]],[4,1,1,8,9,[[173,1,1,8,9]]],[6,3,3,9,12,[[226,3,3,9,12]]],[9,4,2,12,14,[[276,1,1,12,13],[280,3,1,13,14]]],[12,1,1,14,15,[[356,1,1,14,15]]],[22,1,1,15,16,[[685,1,1,15,16]]],[23,1,1,16,17,[[785,1,1,16,17]]],[25,1,1,17,18,[[845,1,1,17,18]]]],[1209,3085,3119,3120,3350,3832,3841,3842,5459,6966,6968,6971,8244,8382,10911,17802,19962,21619]]],["+",[6,6,[[2,2,2,0,2,[[103,2,2,0,2]]],[3,1,1,2,3,[[122,1,1,2,3]]],[4,1,1,3,4,[[173,1,1,3,4]]],[6,1,1,4,5,[[226,1,1,4,5]]],[9,1,1,5,6,[[280,1,1,5,6]]]],[3119,3120,3841,5459,6968,8382]]],["off",[3,3,[[2,2,2,0,2,[[103,1,1,0,1],[110,1,1,1,2]]],[9,1,1,2,3,[[276,1,1,2,3]]]],[3120,3350,8244]]],["polled",[2,1,[[9,2,1,0,1,[[280,2,1,0,1]]]],[8382]]],["shave",[5,4,[[2,1,1,0,1,[[102,1,1,0,1]]],[3,2,1,1,2,[[122,2,1,1,2]]],[22,1,1,2,3,[[685,1,1,2,3]]],[25,1,1,3,4,[[845,1,1,3,4]]]],[3085,3832,17802,21619]]],["shaved",[2,2,[[0,1,1,0,1,[[40,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]]],[1209,10911]]],["shaven",[5,5,[[2,1,1,0,1,[[102,1,1,0,1]]],[3,1,1,1,2,[[122,1,1,1,2]]],[6,2,2,2,4,[[226,2,2,2,4]]],[23,1,1,4,5,[[785,1,1,4,5]]]],[3085,3842,6966,6971,19962]]]]},{"k":"H1549","v":[["*",[2,2,[[22,2,2,0,2,[[681,1,1,0,1],[686,1,1,1,2]]]],[17730,17808]]],["glasses",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17730]]],["roll",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17808]]]]},{"k":"H1550","v":[["*",[4,3,[[10,2,1,0,1,[[296,2,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]],[21,1,1,2,3,[[675,1,1,2,3]]]],[8930,12708,17612]]],["folding",[2,1,[[10,2,1,0,1,[[296,2,1,0,1]]]],[8930]]],["rings",[2,2,[[16,1,1,0,1,[[426,1,1,0,1]]],[21,1,1,1,2,[[675,1,1,1,2]]]],[12708,17612]]]]},{"k":"H1551","v":[["Galilee",[6,6,[[5,2,2,0,2,[[206,1,1,0,1],[207,1,1,1,2]]],[10,1,1,2,3,[[299,1,1,2,3]]],[11,1,1,3,4,[[327,1,1,3,4]]],[12,1,1,4,5,[[343,1,1,4,5]]],[22,1,1,5,6,[[687,1,1,5,6]]]],[6379,6413,9062,9954,10530,17830]]]]},{"k":"H1552","v":[["*",[6,5,[[5,4,3,0,3,[[199,1,1,0,1],[208,3,2,1,3]]],[25,1,1,3,4,[[848,1,1,3,4]]],[28,1,1,4,5,[[878,1,1,4,5]]]],[6156,6436,6437,21687,22347]]],["borders",[3,3,[[5,3,3,0,3,[[199,1,1,0,1],[208,2,2,1,3]]]],[6156,6436,6437]]],["coasts",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22347]]],["country",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21687]]],["passage",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6437]]]]},{"k":"H1553","v":[["Geliloth",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6310]]]]},{"k":"H1554","v":[["*",[2,2,[[8,1,1,0,1,[[260,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[7905,17880]]],["+",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7905]]],["Gallim",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17880]]]]},{"k":"H1555","v":[["Goliath",[6,6,[[8,4,4,0,4,[[252,2,2,0,2],[256,1,1,2,3],[257,1,1,3,4]]],[9,1,1,4,5,[[287,1,1,4,5]]],[12,1,1,5,6,[[357,1,1,5,6]]]],[7622,7641,7781,7797,8599,10931]]]]},{"k":"H1556","v":[["*",[18,18,[[0,4,4,0,4,[[28,3,3,0,3],[42,1,1,3,4]]],[5,2,2,4,6,[[191,1,1,4,5],[196,1,1,5,6]]],[8,1,1,6,7,[[249,1,1,6,7]]],[9,1,1,7,8,[[286,1,1,7,8]]],[17,1,1,8,9,[[465,1,1,8,9]]],[18,3,3,9,12,[[499,1,1,9,10],[514,1,1,10,11],[596,1,1,11,12]]],[19,2,2,12,14,[[643,1,1,12,13],[653,1,1,13,14]]],[22,2,2,14,16,[[687,1,1,14,15],[712,1,1,15,16]]],[23,1,1,16,17,[[795,1,1,16,17]]],[29,1,1,17,18,[[883,1,1,17,18]]]],[798,803,805,1308,5943,6082,7541,8566,13571,14212,14455,15920,16843,17168,17834,18307,20237,22447]]],["+",[4,4,[[0,3,3,0,3,[[28,3,3,0,3]]],[5,1,1,3,4,[[191,1,1,3,4]]]],[798,803,805,5943]]],["Commit",[2,2,[[18,1,1,0,1,[[514,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]]],[14455,16843]]],["Remove",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15920]]],["Roll",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6082]]],["down",[2,2,[[23,1,1,0,1,[[795,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[20237,22447]]],["occasion",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1308]]],["roll",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7541]]],["rolled",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17834]]],["rolleth",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17168]]],["themselves",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13571]]],["together",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18307]]],["trusted",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14212]]],["wallowed",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8566]]]]},{"k":"H1557","v":[["dung",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9228]]]]},{"k":"H1558","v":[["*",[10,10,[[0,3,3,0,3,[[11,1,1,0,1],[29,1,1,1,2],[38,1,1,2,3]]],[4,3,3,3,6,[[153,1,1,3,4],[167,1,1,4,5],[170,1,1,5,6]]],[10,1,1,6,7,[[304,1,1,6,7]]],[23,2,2,7,9,[[755,1,1,7,8],[759,1,1,8,9]]],[32,1,1,9,10,[[895,1,1,9,10]]]],[311,857,1154,4929,5329,5396,9234,19243,19319,22620]]],["+",[1,1,[[0,1,1,0,1,[[38,1,1,0,1]]]],[1154]]],["because",[2,2,[[4,1,1,0,1,[[170,1,1,0,1]]],[10,1,1,1,2,[[304,1,1,1,2]]]],[5396,9234]]],["for",[2,2,[[4,1,1,0,1,[[167,1,1,0,1]]],[23,1,1,1,2,[[755,1,1,1,2]]]],[5329,19243]]],["of",[2,2,[[0,1,1,0,1,[[11,1,1,0,1]]],[23,1,1,1,2,[[759,1,1,1,2]]]],[311,19319]]],["sake",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[32,1,1,1,2,[[895,1,1,1,2]]]],[857,22620]]],["sakes",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4929]]]]},{"k":"H1559","v":[["Galal",[3,3,[[12,2,2,0,2,[[346,2,2,0,2]]],[15,1,1,2,3,[[423,1,1,2,3]]]],[10630,10631,12605]]]]},{"k":"H1560","v":[["great",[2,2,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]]],[12142,12155]]]]},{"k":"H1561","v":[["dung",[4,4,[[17,1,1,0,1,[[455,1,1,0,1]]],[25,2,2,1,3,[[805,2,2,1,3]]],[35,1,1,3,4,[[906,1,1,3,4]]]],[13333,20541,20544,22804]]]]},{"k":"H1562","v":[["Gilalai",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12660]]]]},{"k":"H1563","v":[["together",[1,1,[[11,1,1,0,1,[[314,1,1,0,1]]]],[9559]]]]},{"k":"H1564","v":[["unperfect",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16255]]]]},{"k":"H1565","v":[["*",[4,4,[[17,3,3,0,3,[[438,1,1,0,1],[450,1,1,1,2],[465,1,1,2,3]]],[22,1,1,3,4,[[727,1,1,3,4]]]],[12911,13237,13560,18657]]],["desolate",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[22,1,1,1,2,[[727,1,1,1,2]]]],[13237,18657]]],["solitary",[2,2,[[17,2,2,0,2,[[438,1,1,0,1],[465,1,1,1,2]]]],[12911,13560]]]]},{"k":"H1566","v":[["*",[3,3,[[19,3,3,0,3,[[644,1,1,0,1],[645,1,1,1,2],[647,1,1,2,3]]]],[16887,16902,16957]]],["intermeddleth",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16902]]],["meddling",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16957]]],["with",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16887]]]]},{"k":"H1567","v":[["Galeed",[2,2,[[0,2,2,0,2,[[30,2,2,0,2]]]],[920,921]]]]},{"k":"H1568","v":[["*",[114,104,[[0,4,4,0,4,[[30,3,3,0,3],[36,1,1,3,4]]],[3,10,9,4,13,[[142,3,2,4,6],[143,1,1,6,7],[148,5,5,7,12],[152,1,1,12,13]]],[4,8,8,13,21,[[154,1,1,13,14],[155,5,5,14,19],[156,1,1,19,20],[186,1,1,20,21]]],[5,16,15,21,36,[[198,2,2,21,23],[199,3,3,23,26],[203,5,4,26,30],[206,1,1,30,31],[207,1,1,31,32],[208,4,4,32,36]]],[6,31,24,36,60,[[215,1,1,36,37],[217,1,1,37,38],[220,5,4,38,42],[221,12,9,42,51],[222,6,3,51,54],[230,1,1,54,55],[231,5,5,55,60]]],[8,4,4,60,64,[[246,2,2,60,62],[248,1,1,62,63],[266,1,1,63,64]]],[9,6,6,64,70,[[268,3,3,64,67],[283,1,1,67,68],[287,1,1,68,69],[290,1,1,69,70]]],[10,3,3,70,73,[[294,2,2,70,72],[307,1,1,72,73]]],[11,3,2,73,75,[[322,2,1,73,74],[327,1,1,74,75]]],[12,13,13,75,88,[[339,3,3,75,78],[342,4,4,78,82],[343,1,1,82,83],[344,2,2,83,85],[347,1,1,85,86],[363,1,1,86,87],[364,1,1,87,88]]],[18,2,2,88,90,[[537,1,1,88,89],[585,1,1,89,90]]],[21,2,2,90,92,[[674,1,1,90,91],[676,1,1,91,92]]],[23,4,4,92,96,[[752,1,1,92,93],[766,1,1,93,94],[790,1,1,94,95],[794,1,1,95,96]]],[25,1,1,96,97,[[848,1,1,96,97]]],[27,2,2,97,99,[[867,1,1,97,98],[873,1,1,98,99]]],[29,2,2,99,101,[[879,2,2,99,101]]],[30,1,1,101,102,[[888,1,1,101,102]]],[32,1,1,102,103,[[899,1,1,102,103]]],[37,1,1,103,104,[[920,1,1,103,104]]]],[894,896,898,1108,4518,4519,4555,4719,4744,4747,4757,4758,4880,4974,4985,4987,4988,4990,4991,5047,5840,6132,6135,6165,6179,6185,6276,6278,6280,6281,6380,6419,6435,6439,6441,6458,6640,6697,6815,6819,6828,6829,6830,6831,6834,6836,6837,6838,6839,6840,6858,6873,6874,6876,7055,7110,7111,7112,7114,7116,7446,7454,7492,8020,8053,8054,8058,8475,8592,8698,8857,8863,9318,9826,9954,10327,10328,10329,10437,10438,10442,10444,10534,10549,10552,10670,11108,11130,14814,15750,17583,17619,19175,19460,20056,20185,21697,22175,22263,22367,22377,22529,22678,23026]]],["+",[14,14,[[0,1,1,0,1,[[36,1,1,0,1]]],[5,1,1,1,2,[[208,1,1,1,2]]],[6,5,5,2,7,[[231,5,5,2,7]]],[8,3,3,7,10,[[246,2,2,7,9],[266,1,1,9,10]]],[9,3,3,10,13,[[268,2,2,10,12],[287,1,1,12,13]]],[12,1,1,13,14,[[347,1,1,13,14]]]],[1108,6439,7110,7111,7112,7114,7116,7446,7454,8020,8053,8054,8592,10670]]],["Gilead",[97,89,[[0,3,3,0,3,[[30,3,3,0,3]]],[3,10,9,3,12,[[142,3,2,3,5],[143,1,1,5,6],[148,5,5,6,11],[152,1,1,11,12]]],[4,8,8,12,20,[[154,1,1,12,13],[155,5,5,13,18],[156,1,1,18,19],[186,1,1,19,20]]],[5,15,14,20,34,[[198,2,2,20,22],[199,3,3,22,25],[203,5,4,25,29],[206,1,1,29,30],[207,1,1,30,31],[208,3,3,31,34]]],[6,23,18,34,52,[[215,1,1,34,35],[217,1,1,35,36],[220,5,4,36,40],[221,11,8,40,48],[222,4,3,48,51],[230,1,1,51,52]]],[8,1,1,52,53,[[248,1,1,52,53]]],[9,3,3,53,56,[[268,1,1,53,54],[283,1,1,54,55],[290,1,1,55,56]]],[10,3,3,56,59,[[294,2,2,56,58],[307,1,1,58,59]]],[11,3,2,59,61,[[322,2,1,59,60],[327,1,1,60,61]]],[12,12,12,61,73,[[339,3,3,61,64],[342,4,4,64,68],[343,1,1,68,69],[344,2,2,69,71],[363,1,1,71,72],[364,1,1,72,73]]],[18,2,2,73,75,[[537,1,1,73,74],[585,1,1,74,75]]],[21,2,2,75,77,[[674,1,1,75,76],[676,1,1,76,77]]],[23,4,4,77,81,[[752,1,1,77,78],[766,1,1,78,79],[790,1,1,79,80],[794,1,1,80,81]]],[25,1,1,81,82,[[848,1,1,81,82]]],[27,2,2,82,84,[[867,1,1,82,83],[873,1,1,83,84]]],[29,2,2,84,86,[[879,2,2,84,86]]],[30,1,1,86,87,[[888,1,1,86,87]]],[32,1,1,87,88,[[899,1,1,87,88]]],[37,1,1,88,89,[[920,1,1,88,89]]]],[894,896,898,4518,4519,4555,4719,4744,4747,4757,4758,4880,4974,4985,4987,4988,4990,4991,5047,5840,6132,6135,6165,6179,6185,6276,6278,6280,6281,6380,6419,6435,6441,6458,6640,6697,6815,6819,6828,6829,6830,6834,6836,6837,6838,6839,6840,6858,6873,6874,6876,7055,7492,8058,8475,8698,8857,8863,9318,9826,9954,10327,10328,10329,10437,10438,10442,10444,10534,10549,10552,11108,11130,14814,15750,17583,17619,19175,19460,20056,20185,21697,22175,22263,22367,22377,22529,22678,23026]]],["Gilead's",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6831]]],["Gileadites",[2,2,[[6,2,2,0,2,[[222,2,2,0,2]]]],[6873,6874]]]]},{"k":"H1569","v":[["*",[11,11,[[3,1,1,0,1,[[142,1,1,0,1]]],[6,4,4,1,5,[[220,1,1,1,2],[221,2,2,2,4],[222,1,1,4,5]]],[9,2,2,5,7,[[283,1,1,5,6],[285,1,1,6,7]]],[10,1,1,7,8,[[292,1,1,7,8]]],[11,1,1,8,9,[[327,1,1,8,9]]],[14,1,1,9,10,[[404,1,1,9,10]]],[15,1,1,10,11,[[419,1,1,10,11]]]],[4518,6814,6830,6869,6876,8476,8542,8777,9950,12088,12483]]],["+",[1,1,[[11,1,1,0,1,[[327,1,1,0,1]]]],[9950]]],["Gileadite",[9,9,[[6,4,4,0,4,[[220,1,1,0,1],[221,2,2,1,3],[222,1,1,3,4]]],[9,2,2,4,6,[[283,1,1,4,5],[285,1,1,5,6]]],[10,1,1,6,7,[[292,1,1,6,7]]],[14,1,1,7,8,[[404,1,1,7,8]]],[15,1,1,8,9,[[419,1,1,8,9]]]],[6814,6830,6869,6876,8476,8542,8777,12088,12483]]],["Gileadites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4518]]]]},{"k":"H1570","v":[["+",[2,2,[[21,2,2,0,2,[[674,1,1,0,1],[676,1,1,1,2]]]],[17583,17619]]]]},{"k":"H1571","v":[["*",[761,658,[[0,93,76,0,76,[[2,2,2,0,2],[3,3,3,2,5],[5,2,2,5,7],[6,1,1,7,8],[9,1,1,8,9],[12,2,2,9,11],[13,3,2,11,13],[14,1,1,13,14],[15,1,1,14,15],[16,1,1,15,16],[18,4,4,16,20],[19,5,4,20,24],[20,2,2,24,26],[21,2,2,26,28],[23,9,5,28,33],[25,1,1,33,34],[26,5,5,34,39],[28,4,3,39,42],[29,5,5,42,47],[30,1,1,47,48],[31,6,4,48,52],[32,1,1,52,53],[34,1,1,53,54],[36,1,1,54,55],[37,4,4,55,59],[39,1,1,59,60],[41,2,2,60,62],[42,3,1,62,63],[43,5,4,63,67],[45,3,2,67,69],[46,4,2,69,71],[47,3,2,71,73],[49,4,3,73,76]]],[1,39,30,76,106,[[50,1,1,76,77],[51,1,1,77,78],[52,1,1,78,79],[53,5,3,79,82],[54,3,2,82,84],[55,2,2,84,86],[56,3,2,86,88],[57,2,2,88,90],[59,3,3,90,93],[60,1,1,93,94],[61,7,4,94,98],[67,3,2,98,100],[68,1,1,100,101],[70,2,2,101,103],[82,2,2,103,105],[83,2,1,105,106]]],[2,3,3,106,109,[[114,1,1,106,107],[115,2,2,107,109]]],[3,19,17,109,126,[[120,1,1,109,110],[127,1,1,110,111],[128,1,1,111,112],[129,2,2,112,114],[132,2,2,114,116],[134,4,3,116,119],[138,2,2,119,121],[139,2,1,121,122],[140,3,3,122,125],[143,1,1,125,126]]],[4,21,19,126,145,[[153,3,2,126,128],[154,2,2,128,130],[155,2,2,130,132],[159,1,1,132,133],[161,2,2,133,135],[162,1,1,135,136],[164,2,2,136,138],[174,1,1,138,139],[175,3,3,139,142],[178,1,1,142,143],[180,1,1,143,144],[184,2,1,144,145]]],[5,11,7,145,152,[[187,1,1,145,146],[188,2,2,146,148],[193,5,1,148,149],[196,1,1,149,150],[208,1,1,150,151],[210,1,1,151,152]]],[6,28,21,152,173,[[211,2,2,152,154],[212,5,4,154,158],[213,2,2,158,160],[215,2,1,160,161],[216,1,1,161,162],[217,1,1,162,163],[218,5,3,163,166],[219,3,2,166,168],[220,1,1,168,169],[221,1,1,169,170],[227,1,1,170,171],[229,3,1,171,172],[230,1,1,172,173]]],[7,9,8,173,181,[[232,3,2,173,175],[233,4,4,175,179],[234,1,1,179,180],[235,1,1,180,181]]],[8,61,45,181,226,[[236,2,2,181,183],[237,3,2,183,185],[239,2,1,185,186],[243,2,2,186,188],[245,3,3,188,191],[247,6,4,191,195],[248,1,1,195,196],[249,3,3,196,199],[250,1,1,199,200],[251,2,2,200,202],[252,2,1,202,203],[253,1,1,203,204],[254,8,5,204,209],[255,2,1,209,210],[256,2,1,210,211],[257,1,1,211,212],[258,1,1,212,213],[259,1,1,213,214],[260,4,3,214,217],[261,2,1,217,218],[263,10,6,218,224],[266,2,2,224,226]]],[9,42,36,226,262,[[267,3,2,226,228],[268,3,3,228,231],[269,4,2,231,233],[270,1,1,233,234],[271,1,1,234,235],[273,1,1,235,236],[274,1,1,236,237],[277,4,4,237,241],[278,3,3,241,244],[279,1,1,244,245],[280,1,1,245,246],[281,3,2,246,248],[282,2,1,248,249],[283,6,5,249,254],[284,3,3,254,257],[285,3,3,257,260],[286,1,1,260,261],[287,1,1,261,262]]],[10,29,25,262,287,[[291,4,4,262,266],[292,1,1,266,267],[293,6,3,267,270],[294,1,1,270,271],[297,2,2,271,273],[298,1,1,273,274],[300,1,1,274,275],[303,1,1,275,276],[304,3,3,276,279],[305,1,1,279,280],[306,2,2,280,282],[307,1,1,282,283],[308,1,1,283,284],[311,3,2,284,286],[312,1,1,286,287]]],[11,17,16,287,303,[[314,2,2,287,289],[320,1,1,289,290],[321,1,1,290,291],[325,1,1,291,292],[328,1,1,292,293],[329,2,2,293,295],[333,2,2,295,297],[334,1,1,297,298],[335,5,4,298,302],[336,1,1,302,303]]],[12,14,12,303,315,[[347,2,2,303,305],[348,3,1,305,306],[349,2,2,306,308],[355,1,1,308,309],[356,1,1,309,310],[357,1,1,310,311],[360,1,1,311,312],[361,1,1,312,313],[366,2,2,313,315]]],[13,33,33,315,348,[[367,1,1,315,316],[372,1,1,316,317],[375,1,1,317,318],[378,1,1,318,319],[380,1,1,319,320],[381,1,1,320,321],[382,1,1,321,322],[383,1,1,322,323],[384,1,1,323,324],[385,1,1,324,325],[386,2,2,325,327],[387,4,4,327,331],[388,2,2,331,333],[390,2,2,333,335],[392,1,1,335,336],[394,3,3,336,339],[395,2,2,339,341],[396,2,2,341,343],[397,1,1,343,344],[400,1,1,344,345],[402,3,3,345,348]]],[14,1,1,348,349,[[403,1,1,348,349]]],[15,17,17,349,366,[[416,2,2,349,351],[417,6,6,351,357],[418,5,5,357,362],[424,1,1,362,363],[425,3,3,363,366]]],[16,8,8,366,374,[[426,1,1,366,367],[429,1,1,367,368],[430,1,1,368,369],[432,3,3,369,372],[434,2,2,372,374]]],[17,23,22,374,396,[[436,1,1,374,375],[437,2,2,375,377],[442,1,1,377,378],[447,1,1,378,379],[448,2,2,379,381],[450,2,1,381,382],[451,2,2,382,384],[453,1,1,384,385],[454,1,1,385,386],[456,1,1,386,387],[458,1,1,387,388],[459,1,1,388,389],[463,1,1,389,390],[465,2,2,390,392],[466,1,1,392,393],[468,1,1,393,394],[475,1,1,394,395],[476,1,1,395,396]]],[18,35,34,396,430,[[485,1,1,396,397],[491,1,1,397,398],[496,2,2,398,400],[500,1,1,400,401],[502,1,1,401,402],[514,1,1,402,403],[515,1,1,403,404],[518,1,1,404,405],[526,2,1,405,406],[529,1,1,406,407],[530,1,1,407,408],[548,3,3,408,411],[555,2,2,411,413],[560,1,1,413,414],[561,3,3,414,417],[562,1,1,417,418],[572,1,1,418,419],[584,1,1,419,420],[595,1,1,420,421],[596,2,2,421,423],[606,1,1,423,424],[609,1,1,424,425],[610,1,1,425,426],[614,1,1,426,427],[616,2,2,427,429],[625,1,1,429,430]]],[19,23,23,430,453,[[628,1,1,430,431],[638,1,1,431,432],[641,2,2,432,434],[643,2,2,434,436],[644,3,3,436,439],[645,2,2,439,441],[646,2,2,441,443],[647,3,3,443,446],[648,1,1,446,447],[649,1,1,447,448],[650,1,1,448,449],[651,1,1,449,450],[652,1,1,450,451],[653,1,1,451,452],[655,1,1,452,453]]],[20,57,47,453,500,[[659,2,2,453,455],[660,12,10,455,465],[661,2,2,465,467],[662,7,5,467,472],[663,4,4,472,476],[664,4,4,476,480],[665,6,5,480,485],[666,5,5,485,490],[667,11,6,490,496],[668,2,2,496,498],[669,1,1,498,499],[670,1,1,499,500]]],[21,2,2,500,502,[[677,1,1,500,501],[678,1,1,501,502]]],[22,31,29,502,531,[[679,1,1,502,503],[683,1,1,503,504],[685,2,2,504,506],[691,1,1,506,507],[692,2,2,507,509],[699,1,1,509,510],[701,1,1,510,511],[704,1,1,511,512],[706,2,2,512,514],[708,2,2,514,516],[709,1,1,516,517],[718,1,1,517,518],[721,1,1,518,519],[722,1,1,519,520],[723,1,1,520,521],[725,1,1,521,522],[726,3,1,522,523],[727,2,2,523,525],[735,2,2,525,527],[744,4,4,527,531]]],[23,57,47,531,578,[[746,5,5,531,536],[747,2,2,536,538],[748,1,1,538,539],[749,2,2,539,541],[750,2,2,541,543],[751,1,1,543,544],[752,2,2,544,546],[754,1,1,546,547],[756,5,2,547,549],[757,2,2,549,551],[758,3,2,551,553],[767,3,1,553,554],[769,1,1,554,555],[770,1,1,555,556],[771,2,2,556,558],[772,1,1,558,559],[775,3,3,559,562],[777,2,2,562,564],[780,2,2,564,566],[784,1,1,566,567],[790,3,2,567,569],[792,4,4,569,573],[794,2,1,573,574],[795,5,3,574,577],[796,1,1,577,578]]],[24,6,6,578,584,[[797,1,1,578,579],[798,1,1,579,580],[799,1,1,580,581],[800,3,3,581,584]]],[25,28,26,584,610,[[806,2,2,584,586],[809,1,1,586,587],[810,1,1,587,588],[811,1,1,588,589],[817,6,5,589,594],[819,1,1,594,595],[821,4,4,595,599],[822,4,4,599,603],[824,2,2,603,605],[825,4,3,605,608],[832,1,1,608,609],[840,1,1,609,610]]],[26,2,2,610,612,[[860,2,2,610,612]]],[27,12,12,612,624,[[864,1,1,612,613],[865,3,3,613,616],[866,1,1,616,617],[867,1,1,617,618],[868,1,1,618,619],[869,1,1,619,620],[870,2,2,620,622],[871,1,1,622,623],[873,1,1,623,624]]],[28,7,7,624,631,[[876,3,3,624,627],[877,3,3,627,630],[878,1,1,630,631]]],[29,3,3,631,634,[[882,2,2,631,633],[885,1,1,633,634]]],[30,2,2,634,636,[[888,2,2,634,636]]],[32,1,1,636,637,[[898,1,1,636,637]]],[33,4,2,637,639,[[902,4,2,637,639]]],[34,1,1,639,640,[[904,1,1,639,640]]],[35,5,3,640,643,[[906,2,1,640,641],[907,3,2,641,643]]],[37,12,11,643,654,[[913,2,1,643,644],[918,2,2,644,646],[919,4,4,646,650],[921,1,1,650,651],[922,1,1,651,652],[923,1,1,652,653],[924,1,1,653,654]]],[38,5,4,654,658,[[925,1,1,654,655],[926,2,2,655,657],[927,2,1,657,658]]]],[61,77,83,101,105,140,141,162,255,323,334,343,352,374,394,413,478,491,492,495,499,500,501,507,526,539,567,571,605,610,616,635,637,713,758,760,761,765,772,822,825,828,833,836,838,845,860,888,934,946,947,948,967,1028,1090,1129,1130,1141,1143,1187,1274,1280,1298,1333,1334,1340,1353,1390,1420,1423,1439,1462,1470,1515,1524,1529,1542,1573,1588,1610,1611,1615,1634,1646,1659,1660,1696,1708,1731,1742,1801,1802,1803,1809,1847,1848,1854,1855,2017,2022,2048,2106,2112,2485,2490,2499,3514,3548,3568,3765,4028,4061,4102,4103,4204,4207,4259,4260,4285,4394,4408,4441,4458,4470,4471,4567,4920,4929,4944,4953,4978,4995,5131,5176,5177,5196,5270,5271,5492,5502,5503,5518,5579,5672,5783,5866,5881,5893,5987,6094,6433,6494,6512,6531,6548,6555,6562,6566,6590,6599,6627,6689,6712,6728,6741,6750,6773,6803,6820,6846,6982,7043,7102,7132,7139,7157,7164,7165,7170,7184,7200,7218,7240,7255,7266,7314,7377,7389,7429,7430,7444,7474,7476,7483,7485,7489,7523,7529,7530,7589,7603,7604,7654,7681,7726,7727,7728,7729,7730,7757,7780,7804,7827,7850,7874,7877,7904,7930,7948,7957,7961,7962,7964,7965,8014,8015,8026,8033,8051,8055,8056,8098,8100,8122,8134,8199,8220,8271,8276,8280,8283,8299,8300,8313,8353,8363,8408,8413,8449,8454,8459,8461,8462,8465,8480,8500,8504,8541,8551,8554,8580,8600,8723,8763,8764,8765,8775,8829,8834,8842,8859,8954,8965,9026,9090,9202,9232,9241,9242,9262,9290,9299,9337,9376,9470,9474,9502,9554,9556,9728,9783,9877,9966,10002,10024,10130,10135,10164,10180,10184,10189,10192,10206,10664,10672,10675,10758,10760,10901,10922,10932,11009,11046,11173,11188,11205,11314,11374,11449,11490,11506,11521,11534,11563,11584,11591,11600,11628,11635,11637,11641,11647,11649,11684,11689,11752,11766,11769,11772,11798,11826,11828,11839,11860,11960,12006,12007,12015,12017,12362,12381,12390,12392,12395,12396,12397,12398,12402,12408,12415,12418,12420,12667,12693,12694,12697,12711,12778,12791,12809,12815,12816,12847,12849,12875,12892,12901,13019,13131,13155,13169,13213,13242,13257,13281,13315,13362,13421,13455,13531,13559,13565,13616,13656,13878,13897,14019,14083,14179,14181,14239,14254,14475,14500,14551,14650,14715,14722,14994,14998,15000,15133,15134,15249,15261,15262,15265,15283,15463,15704,15880,15921,15922,16134,16163,16170,16223,16249,16251,16383,16426,16713,16785,16792,16844,16847,16888,16899,16901,16904,16910,16927,16949,16964,16965,16966,16997,17021,17059,17102,17114,17145,17205,17326,17332,17334,17340,17341,17347,17348,17352,17354,17356,17357,17359,17370,17372,17385,17389,17392,17395,17397,17407,17413,17414,17416,17420,17422,17424,17426,17435,17443,17447,17450,17451,17468,17470,17472,17474,17475,17476,17478,17481,17486,17487,17488,17496,17513,17515,17528,17640,17641,17669,17741,17795,17802,17909,17936,17938,18047,18089,18142,18171,18193,18222,18250,18252,18444,18518,18545,18577,18602,18622,18651,18661,18771,18772,18925,18926,18930,18943,18981,18998,18999,19001,19002,19010,19012,19039,19076,19086,19100,19104,19130,19160,19165,19206,19251,19255,19289,19292,19298,19311,19495,19548,19592,19602,19603,19632,19710,19727,19728,19796,19801,19848,19867,19952,20061,20066,20082,20087,20106,20114,20190,20224,20256,20261,20286,20318,20341,20362,20423,20435,20441,20554,20557,20622,20632,20649,20790,20791,20803,20805,20814,20860,20907,20910,20918,20920,20953,20957,20961,20971,21042,21044,21059,21061,21065,21247,21464,22044,22058,22131,22136,22138,22139,22157,22178,22187,22204,22220,22224,22231,22263,22303,22309,22311,22314,22323,22340,22347,22416,22417,22470,22521,22523,22661,22722,22723,22764,22805,22817,22819,22919,22982,22997,23001,23006,23010,23011,23036,23047,23061,23082,23099,23105,23112,23135]]],["+",[47,42,[[0,11,10,0,10,[[5,1,1,0,1],[13,1,1,1,2],[14,1,1,2,3],[20,1,1,3,4],[21,1,1,4,5],[28,1,1,5,6],[30,1,1,6,7],[31,2,1,7,8],[43,1,1,8,9],[47,1,1,9,10]]],[1,5,4,10,14,[[53,1,1,10,11],[54,1,1,11,12],[61,1,1,12,13],[83,2,1,13,14]]],[2,1,1,14,15,[[115,1,1,14,15]]],[3,5,4,15,19,[[120,1,1,15,16],[132,1,1,16,17],[134,1,1,17,18],[139,2,1,18,19]]],[4,2,2,19,21,[[164,1,1,19,20],[174,1,1,20,21]]],[6,1,1,21,22,[[212,1,1,21,22]]],[7,2,2,22,24,[[233,1,1,22,23],[235,1,1,23,24]]],[8,4,4,24,28,[[251,2,2,24,26],[252,1,1,26,27],[256,1,1,27,28]]],[9,2,1,28,29,[[269,2,1,28,29]]],[10,2,2,29,31,[[293,1,1,29,30],[305,1,1,30,31]]],[11,3,2,31,33,[[335,3,2,31,33]]],[12,1,1,33,34,[[348,1,1,33,34]]],[13,1,1,34,35,[[394,1,1,34,35]]],[18,1,1,35,36,[[610,1,1,35,36]]],[20,4,4,36,40,[[659,2,2,36,38],[660,1,1,38,39],[666,1,1,39,40]]],[23,1,1,40,41,[[796,1,1,40,41]]],[35,1,1,41,42,[[906,1,1,41,42]]]],[140,343,374,526,571,825,888,947,1334,1462,1611,1634,1855,2499,3568,3765,4207,4260,4441,5271,5492,6555,7157,7200,7603,7604,7654,7780,8098,8842,9262,10180,10189,10675,11772,16170,17326,17332,17348,17472,20286,22805]]],["Again",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17392]]],["Also",[23,23,[[1,1,1,0,1,[[61,1,1,0,1]]],[4,2,2,1,3,[[153,1,1,1,2],[180,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[9,1,1,4,5,[[271,1,1,4,5]]],[11,1,1,5,6,[[329,1,1,5,6]]],[13,2,2,6,8,[[395,1,1,6,7],[396,1,1,7,8]]],[15,2,2,8,10,[[417,1,1,8,9],[418,1,1,9,10]]],[16,1,1,10,11,[[426,1,1,10,11]]],[17,1,1,11,12,[[451,1,1,11,12]]],[19,2,2,12,14,[[644,1,1,12,13],[646,1,1,13,14]]],[20,3,3,14,17,[[665,1,1,14,15],[667,1,1,15,16],[670,1,1,16,17]]],[23,4,4,17,21,[[746,2,2,17,19],[790,1,1,19,20],[792,1,1,20,21]]],[24,1,1,21,22,[[799,1,1,21,22]]],[27,1,1,22,23,[[867,1,1,22,23]]]],[1848,4929,5672,7255,8134,10002,11798,11839,12395,12420,12711,13257,16899,16927,17450,17481,17528,18981,18999,20066,20082,20362,22178]]],["As",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20261]]],["Both",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[18,1,1,1,2,[[526,1,1,1,2]]]],[635,14650]]],["But",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13131]]],["Even",[8,8,[[15,1,1,0,1,[[416,1,1,0,1]]],[17,1,1,1,2,[[458,1,1,1,2]]],[18,1,1,2,3,[[616,1,1,2,3]]],[19,3,3,3,6,[[641,1,1,3,4],[644,1,1,4,5],[647,1,1,5,6]]],[22,1,1,6,7,[[727,1,1,6,7]]],[24,1,1,7,8,[[800,1,1,7,8]]]],[12362,13421,16249,16785,16901,16965,18661,20423]]],["Likewise",[2,2,[[15,1,1,0,1,[[416,1,1,0,1]]],[23,1,1,1,2,[[784,1,1,1,2]]]],[12381,19952]]],["Moreover",[17,17,[[1,1,1,0,1,[[60,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[4,1,1,2,3,[[159,1,1,2,3]]],[8,2,2,3,5,[[247,1,1,3,4],[263,1,1,4,5]]],[10,2,2,5,7,[[292,1,1,5,6],[298,1,1,6,7]]],[11,1,1,7,8,[[333,1,1,7,8]]],[12,1,1,8,9,[[349,1,1,8,9]]],[13,4,4,9,13,[[372,1,1,9,10],[385,1,1,10,11],[387,1,1,11,12],[402,1,1,12,13]]],[15,2,2,13,15,[[417,1,1,13,14],[418,1,1,14,15]]],[18,1,1,15,16,[[496,1,1,15,16]]],[20,1,1,16,17,[[664,1,1,16,17]]]],[1809,3514,5131,7483,7961,8775,9026,10135,10760,11314,11584,11635,12007,12396,12418,14179,17422]]],["Nevertheless",[2,2,[[23,2,2,0,2,[[749,1,1,0,1],[780,1,1,1,2]]]],[19076,19867]]],["Then",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19801]]],["Therefore",[2,2,[[17,1,1,0,1,[[442,1,1,0,1]]],[23,1,1,1,2,[[757,1,1,1,2]]]],[13019,19292]]],["What",[1,1,[[17,1,1,0,1,[[437,1,1,0,1]]]],[12901]]],["Yea",[22,22,[[0,1,1,0,1,[[19,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]],[11,2,2,2,4,[[314,2,2,2,4]]],[17,3,3,4,7,[[453,1,1,4,5],[454,1,1,5,6],[465,1,1,6,7]]],[18,6,6,7,13,[[500,1,1,7,8],[502,1,1,8,9],[518,1,1,9,10],[561,1,1,10,11],[562,1,1,11,12],[616,1,1,12,13]]],[22,4,4,13,17,[[692,1,1,13,14],[721,1,1,14,15],[726,1,1,15,16],[744,1,1,16,17]]],[23,3,3,17,20,[[746,1,1,17,18],[752,1,1,18,19],[758,1,1,19,20]]],[27,1,1,20,21,[[869,1,1,20,21]]],[28,1,1,21,22,[[878,1,1,21,22]]]],[501,8541,9554,9556,13281,13315,13559,14239,14254,14551,15262,15283,16251,17936,18518,18622,18925,19002,19160,19298,22204,22347]]],["Yet",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22722]]],["again",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12809]]],["alike",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16964]]],["also",[409,392,[[0,59,56,0,56,[[2,2,2,0,2],[3,3,3,2,5],[5,1,1,5,6],[6,1,1,6,7],[12,2,2,7,9],[13,2,1,9,10],[15,1,1,10,11],[16,1,1,11,12],[18,4,4,12,16],[19,2,2,16,18],[21,1,1,18,19],[23,5,4,19,23],[25,1,1,23,24],[26,4,4,24,28],[28,3,3,28,31],[29,4,4,31,35],[31,2,2,35,37],[32,1,1,37,38],[34,1,1,38,39],[36,1,1,39,40],[37,4,4,40,44],[39,1,1,44,45],[41,1,1,45,46],[42,1,1,46,47],[43,3,3,47,50],[45,2,2,50,52],[46,1,1,52,53],[47,2,1,53,54],[49,2,2,54,56]]],[1,23,22,56,78,[[50,1,1,56,57],[51,1,1,57,58],[52,1,1,58,59],[53,2,2,59,61],[55,2,2,61,63],[56,3,2,63,65],[57,2,2,65,67],[59,3,3,67,70],[61,2,2,70,72],[67,1,1,72,73],[68,1,1,73,74],[70,2,2,74,76],[82,2,2,76,78]]],[3,12,12,78,90,[[127,1,1,78,79],[128,1,1,79,80],[132,1,1,80,81],[134,3,3,81,84],[138,2,2,84,86],[140,3,3,86,89],[143,1,1,89,90]]],[4,8,8,90,98,[[153,1,1,90,91],[154,1,1,91,92],[155,2,2,92,94],[161,2,2,94,96],[162,1,1,96,97],[178,1,1,97,98]]],[5,8,6,98,104,[[187,1,1,98,99],[188,1,1,99,100],[193,3,1,100,101],[196,1,1,101,102],[208,1,1,102,103],[210,1,1,103,104]]],[6,18,18,104,122,[[211,1,1,104,105],[212,3,3,105,108],[213,2,2,108,110],[215,1,1,110,111],[216,1,1,111,112],[217,1,1,112,113],[218,3,3,113,116],[219,2,2,116,118],[220,1,1,118,119],[227,1,1,119,120],[229,1,1,120,121],[230,1,1,121,122]]],[7,5,4,122,126,[[232,3,2,122,124],[233,2,2,124,126]]],[8,30,28,126,154,[[236,2,2,126,128],[237,1,1,128,129],[239,2,1,129,130],[243,2,2,130,132],[245,3,3,132,135],[247,1,1,135,136],[248,1,1,136,137],[249,3,3,137,140],[250,1,1,140,141],[253,1,1,141,142],[254,6,5,142,147],[257,1,1,147,148],[258,1,1,148,149],[260,2,2,149,151],[261,1,1,151,152],[263,2,2,152,154]]],[9,30,27,154,181,[[267,2,1,154,155],[268,3,3,155,158],[269,2,1,158,159],[270,1,1,159,160],[273,1,1,160,161],[274,1,1,161,162],[277,4,4,162,166],[278,2,2,166,168],[279,1,1,168,169],[280,1,1,169,170],[281,3,2,170,172],[283,2,2,172,174],[284,3,3,174,177],[285,2,2,177,179],[286,1,1,179,180],[287,1,1,180,181]]],[10,19,19,181,200,[[291,3,3,181,184],[293,2,2,184,186],[294,1,1,186,187],[297,2,2,187,189],[300,1,1,189,190],[303,1,1,190,191],[304,2,2,191,193],[306,2,2,193,195],[307,1,1,195,196],[308,1,1,196,197],[311,2,2,197,199],[312,1,1,199,200]]],[11,8,8,200,208,[[320,1,1,200,201],[321,1,1,201,202],[325,1,1,202,203],[333,1,1,203,204],[334,1,1,204,205],[335,2,2,205,207],[336,1,1,207,208]]],[12,6,6,208,214,[[347,1,1,208,209],[349,1,1,209,210],[355,1,1,210,211],[357,1,1,211,212],[360,1,1,212,213],[366,1,1,213,214]]],[13,21,21,214,235,[[375,1,1,214,215],[378,1,1,215,216],[380,1,1,216,217],[381,1,1,217,218],[384,1,1,218,219],[387,3,3,219,222],[388,2,2,222,224],[390,2,2,224,226],[392,1,1,226,227],[394,2,2,227,229],[395,1,1,229,230],[396,1,1,230,231],[397,1,1,231,232],[400,1,1,232,233],[402,2,2,233,235]]],[14,1,1,235,236,[[403,1,1,235,236]]],[15,5,5,236,241,[[417,1,1,236,237],[418,1,1,237,238],[424,1,1,238,239],[425,2,2,239,241]]],[16,6,6,241,247,[[429,1,1,241,242],[430,1,1,242,243],[432,2,2,243,245],[434,2,2,245,247]]],[17,8,8,247,255,[[436,1,1,247,248],[437,1,1,248,249],[448,2,2,249,251],[451,1,1,251,252],[466,1,1,252,253],[468,1,1,253,254],[475,1,1,254,255]]],[18,12,12,255,267,[[496,1,1,255,256],[515,1,1,256,257],[548,3,3,257,260],[555,2,2,260,262],[560,1,1,262,263],[561,1,1,263,264],[596,2,2,264,266],[609,1,1,266,267]]],[19,8,8,267,275,[[628,1,1,267,268],[638,1,1,268,269],[645,2,2,269,271],[648,1,1,271,272],[651,1,1,272,273],[652,1,1,273,274],[653,1,1,274,275]]],[20,33,32,275,307,[[660,9,9,275,284],[661,2,2,284,286],[662,5,4,286,290],[663,4,4,290,294],[664,2,2,294,296],[665,4,4,296,300],[666,2,2,300,302],[667,3,3,302,305],[668,1,1,305,306],[669,1,1,306,307]]],[22,16,16,307,323,[[683,1,1,307,308],[685,2,2,308,310],[691,1,1,310,311],[692,1,1,311,312],[699,1,1,312,313],[701,1,1,313,314],[704,1,1,314,315],[706,2,2,315,317],[708,1,1,317,318],[709,1,1,318,319],[718,1,1,319,320],[723,1,1,320,321],[744,2,2,321,323]]],[23,20,19,323,342,[[746,2,2,323,325],[747,1,1,325,326],[748,1,1,326,327],[754,1,1,327,328],[757,1,1,328,329],[769,1,1,329,330],[770,1,1,330,331],[771,1,1,331,332],[772,1,1,332,333],[775,2,2,333,335],[777,1,1,335,336],[780,1,1,336,337],[790,1,1,337,338],[792,3,3,338,341],[794,2,1,341,342]]],[24,2,2,342,344,[[798,1,1,342,343],[800,1,1,343,344]]],[25,19,18,344,362,[[809,1,1,344,345],[810,1,1,345,346],[811,1,1,346,347],[817,4,3,347,350],[821,4,4,350,354],[822,2,2,354,356],[824,2,2,356,358],[825,2,2,358,360],[832,1,1,360,361],[840,1,1,361,362]]],[26,2,2,362,364,[[860,2,2,362,364]]],[27,7,7,364,371,[[864,1,1,364,365],[865,3,3,365,368],[866,1,1,368,369],[870,1,1,369,370],[871,1,1,370,371]]],[28,4,4,371,375,[[876,2,2,371,373],[877,2,2,373,375]]],[29,3,3,375,378,[[882,2,2,375,377],[885,1,1,377,378]]],[32,1,1,378,379,[[898,1,1,378,379]]],[33,3,2,379,381,[[902,3,2,379,381]]],[34,1,1,381,382,[[904,1,1,381,382]]],[35,1,1,382,383,[[907,1,1,382,383]]],[37,9,8,383,391,[[913,2,1,383,384],[918,2,2,384,386],[919,2,2,386,388],[921,1,1,388,389],[923,1,1,389,390],[924,1,1,390,391]]],[38,1,1,391,392,[[926,1,1,391,392]]]],[61,77,83,101,105,141,162,323,334,352,394,413,478,491,492,495,499,501,567,605,610,635,637,713,758,761,765,772,822,825,828,833,836,845,860,934,946,967,1028,1090,1129,1130,1141,1143,1187,1274,1298,1333,1340,1353,1390,1420,1423,1470,1524,1529,1542,1573,1588,1610,1615,1659,1660,1696,1708,1731,1742,1801,1802,1803,1848,1854,2022,2048,2106,2112,2485,2490,4028,4061,4204,4259,4260,4285,4394,4408,4458,4470,4471,4567,4929,4944,4978,4995,5176,5177,5196,5579,5866,5881,5987,6094,6433,6494,6531,6548,6555,6566,6590,6599,6627,6689,6712,6728,6741,6750,6773,6803,6820,6982,7043,7102,7132,7139,7165,7170,7218,7240,7266,7314,7377,7389,7429,7430,7444,7474,7489,7523,7529,7530,7589,7681,7726,7727,7728,7729,7730,7804,7827,7874,7904,7930,7961,7964,8026,8051,8055,8056,8100,8122,8199,8220,8271,8276,8280,8283,8299,8300,8353,8363,8408,8413,8454,8459,8480,8500,8504,8551,8554,8580,8600,8723,8763,8765,8829,8834,8859,8954,8965,9090,9202,9241,9242,9290,9299,9337,9376,9470,9474,9502,9728,9783,9877,10130,10164,10184,10192,10206,10672,10758,10901,10932,11009,11173,11374,11449,11490,11506,11563,11628,11637,11641,11647,11649,11684,11689,11752,11766,11769,11826,11828,11860,11960,12006,12015,12017,12398,12408,12667,12693,12694,12778,12791,12815,12816,12847,12849,12875,12892,13155,13169,13242,13616,13656,13878,14181,14500,14994,14998,15000,15133,15134,15249,15265,15921,15922,16163,16426,16713,16904,16910,16997,17102,17114,17145,17334,17340,17341,17347,17352,17354,17356,17357,17359,17370,17372,17385,17389,17395,17397,17407,17413,17414,17416,17420,17426,17435,17443,17447,17451,17468,17474,17478,17487,17488,17496,17515,17741,17795,17802,17909,17938,18047,18089,18142,18171,18193,18222,18252,18444,18577,18926,18943,18998,19001,19010,19039,19206,19289,19548,19592,19602,19632,19727,19728,19796,19848,20066,20087,20106,20114,20190,20341,20441,20622,20632,20649,20803,20805,20814,20907,20910,20918,20920,20953,20961,21042,21044,21059,21061,21247,21464,22044,22058,22131,22136,22138,22139,22157,22220,22231,22303,22311,22323,22340,22416,22417,22470,22661,22722,22723,22764,22817,22919,22982,22997,23001,23010,23036,23061,23082,23112]]],["and",[42,40,[[0,6,5,0,5,[[23,2,1,0,1],[29,1,1,1,2],[42,1,1,2,3],[46,1,1,3,4],[49,1,1,4,5]]],[1,4,4,5,9,[[54,1,1,5,6],[61,2,2,6,8],[67,1,1,8,9]]],[4,1,1,9,10,[[184,1,1,9,10]]],[6,3,3,10,13,[[215,1,1,10,11],[218,1,1,11,12],[229,1,1,12,13]]],[8,5,5,13,18,[[247,1,1,13,14],[252,1,1,14,15],[260,1,1,15,16],[263,1,1,16,17],[266,1,1,17,18]]],[9,2,2,18,20,[[278,1,1,18,19],[282,1,1,19,20]]],[10,1,1,20,21,[[293,1,1,20,21]]],[13,1,1,21,22,[[383,1,1,21,22]]],[15,1,1,22,23,[[418,1,1,22,23]]],[17,2,2,23,25,[[450,1,1,23,24],[459,1,1,24,25]]],[18,5,5,25,30,[[514,1,1,25,26],[526,1,1,26,27],[572,1,1,27,28],[584,1,1,28,29],[625,1,1,29,30]]],[19,1,1,30,31,[[649,1,1,30,31]]],[20,2,1,31,32,[[667,2,1,31,32]]],[21,1,1,32,33,[[677,1,1,32,33]]],[23,3,3,33,36,[[758,1,1,33,34],[767,1,1,34,35],[795,1,1,35,36]]],[24,1,1,36,37,[[800,1,1,36,37]]],[25,2,2,37,39,[[822,1,1,37,38],[825,1,1,38,39]]],[35,1,1,39,40,[[907,1,1,39,40]]]],[616,838,1298,1439,1515,1646,1847,1848,2017,5783,6627,6741,7043,7485,7654,7877,7962,8015,8313,8449,8829,11534,12415,13213,13455,14475,14650,15463,15704,16383,17021,17481,17640,19311,19495,20224,20435,20971,21061,22819]]],["both",[27,27,[[0,7,7,0,7,[[23,1,1,0,1],[42,1,1,1,2],[43,1,1,2,3],[45,1,1,3,4],[46,2,2,4,6],[49,1,1,6,7]]],[1,3,3,7,10,[[54,1,1,7,8],[61,1,1,8,9],[67,1,1,9,10]]],[4,1,1,10,11,[[184,1,1,10,11]]],[6,2,2,11,13,[[218,1,1,11,12],[229,1,1,12,13]]],[8,5,5,13,18,[[237,1,1,13,14],[247,2,2,14,16],[260,1,1,16,17],[261,1,1,17,18]]],[9,1,1,18,19,[[282,1,1,18,19]]],[10,1,1,19,20,[[293,1,1,19,20]]],[11,1,1,20,21,[[329,1,1,20,21]]],[17,1,1,21,22,[[450,1,1,21,22]]],[23,3,3,22,25,[[758,1,1,22,23],[767,1,1,23,24],[795,1,1,24,25]]],[35,1,1,25,26,[[907,1,1,25,26]]],[37,1,1,26,27,[[922,1,1,26,27]]]],[616,1298,1340,1420,1423,1439,1515,1646,1847,2017,5783,6741,7043,7266,7474,7485,7877,7930,8449,8829,10024,13213,19311,19495,20224,22819,23047]]],["but",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8465]]],["either",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17476]]],["even",[40,38,[[0,3,3,0,3,[[9,1,1,0,1],[19,1,1,1,2],[41,1,1,2,3]]],[4,3,3,3,6,[[175,3,3,3,6]]],[5,3,2,6,8,[[188,1,1,6,7],[193,2,1,7,8]]],[7,1,1,8,9,[[233,1,1,8,9]]],[10,2,2,9,11,[[304,1,1,9,10],[311,1,1,10,11]]],[12,1,1,11,12,[[348,1,1,11,12]]],[13,1,1,12,13,[[386,1,1,12,13]]],[15,1,1,13,14,[[417,1,1,13,14]]],[17,1,1,14,15,[[476,1,1,14,15]]],[18,1,1,15,16,[[561,1,1,15,16]]],[19,7,7,16,23,[[641,1,1,16,17],[643,2,2,17,19],[644,1,1,19,20],[647,1,1,20,21],[650,1,1,21,22],[655,1,1,22,23]]],[20,1,1,23,24,[[660,1,1,23,24]]],[22,2,2,24,26,[[735,2,2,24,26]]],[23,5,4,26,30,[[750,1,1,26,27],[751,1,1,27,28],[756,2,1,28,29],[775,1,1,29,30]]],[25,4,4,30,34,[[806,1,1,30,31],[819,1,1,31,32],[822,1,1,32,33],[825,1,1,33,34]]],[30,1,1,34,35,[[888,1,1,34,35]]],[37,2,2,35,37,[[919,2,2,35,37]]],[38,1,1,37,38,[[925,1,1,37,38]]]],[255,500,1280,5502,5503,5518,5893,5987,7164,9232,9470,10675,11591,12390,13897,15261,16792,16844,16847,16888,16966,17059,17205,17348,18771,18772,19100,19130,19255,19710,20554,20860,20957,21065,22521,23006,23011,23099]]],["howbeit",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7184]]],["indeed",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4953]]],["likewise",[14,14,[[4,1,1,0,1,[[164,1,1,0,1]]],[6,2,2,1,3,[[211,1,1,1,2],[219,1,1,2,3]]],[8,2,2,3,5,[[254,1,1,3,4],[266,1,1,4,5]]],[9,2,2,5,7,[[267,1,1,5,6],[283,1,1,6,7]]],[12,4,4,7,11,[[347,1,1,7,8],[356,1,1,8,9],[361,1,1,9,10],[366,1,1,10,11]]],[15,1,1,11,12,[[417,1,1,11,12]]],[18,1,1,12,13,[[529,1,1,12,13]]],[20,1,1,13,14,[[665,1,1,13,14]]]],[5270,6512,6803,7727,8014,8033,8454,10664,10922,11046,11188,12392,14715,17451]]],["manner",[2,2,[[6,1,1,0,1,[[221,1,1,0,1]]],[8,1,1,1,2,[[254,1,1,1,2]]]],[6846,7730]]],["moreover",[5,5,[[0,1,1,0,1,[[31,1,1,0,1]]],[3,1,1,1,2,[[129,1,1,1,2]]],[4,1,1,2,3,[[153,1,1,2,3]]],[10,1,1,3,4,[[291,1,1,3,4]]],[12,1,1,4,5,[[348,1,1,4,5]]]],[948,4103,4920,8764,10675]]],["much",[2,2,[[9,1,1,0,1,[[283,1,1,0,1]]],[19,1,1,1,2,[[646,1,1,1,2]]]],[8461,16949]]],["nay",[2,2,[[23,2,2,0,2,[[750,1,1,0,1],[752,1,1,1,2]]]],[19104,19165]]],["neither",[4,4,[[1,1,1,0,1,[[53,1,1,0,1]]],[8,3,3,1,4,[[255,1,1,1,2],[263,2,2,2,4]]]],[1611,7757,7948,7957]]],["nevertheless",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12697]]],["no",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17513]]],["nor",[8,7,[[1,1,1,0,1,[[53,1,1,0,1]]],[8,5,4,1,5,[[255,1,1,1,2],[256,1,1,2,3],[263,3,2,3,5]]],[10,1,1,5,6,[[293,1,1,5,6]]],[35,1,1,6,7,[[906,1,1,6,7]]]],[1611,7757,7780,7948,7957,8842,22805]]],["not",[2,2,[[18,2,2,0,2,[[491,1,1,0,1],[530,1,1,1,2]]]],[14083,14722]]],["or",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17476]]],["small",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8462]]],["so",[2,2,[[0,1,1,0,1,[[31,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[947,20261]]],["soon",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18930]]],["surely",[2,2,[[3,1,1,0,1,[[129,1,1,0,1]]],[20,1,1,1,2,[[666,1,1,1,2]]]],[4102,17470]]],["then",[1,1,[[23,1,1,0,1,[[771,1,1,0,1]]]],[19603]]],["therefore",[2,2,[[8,1,1,0,1,[[247,1,1,0,1]]],[25,1,1,1,2,[[806,1,1,1,2]]]],[7476,20557]]],["though",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12402]]],["with",[2,2,[[8,1,1,0,1,[[263,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]]],[7965,11600]]],["yea",[38,35,[[0,1,1,0,1,[[26,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]],[11,1,1,2,3,[[328,1,1,2,3]]],[15,1,1,3,4,[[417,1,1,3,4]]],[17,3,3,4,7,[[456,1,1,4,5],[463,1,1,5,6],[465,1,1,6,7]]],[18,3,3,7,10,[[485,1,1,7,8],[595,1,1,8,9],[614,1,1,9,10]]],[20,3,3,10,13,[[660,1,1,10,11],[662,1,1,11,12],[666,1,1,12,13]]],[21,1,1,13,14,[[678,1,1,13,14]]],[22,7,6,14,20,[[679,1,1,14,15],[708,1,1,15,16],[722,1,1,16,17],[725,1,1,17,18],[726,2,1,18,19],[727,1,1,19,20]]],[23,7,6,20,26,[[749,1,1,20,21],[756,3,2,21,23],[767,1,1,23,24],[790,1,1,24,25],[795,1,1,25,26]]],[24,1,1,26,27,[[797,1,1,26,27]]],[27,3,3,27,30,[[868,1,1,27,28],[870,1,1,28,29],[873,1,1,29,30]]],[28,2,2,30,32,[[876,1,1,30,31],[877,1,1,31,32]]],[30,1,1,32,33,[[888,1,1,32,33]]],[38,3,2,33,35,[[926,1,1,33,34],[927,2,1,34,35]]]],[760,7850,9966,12397,13362,13531,13565,14019,15880,16223,17356,17389,17475,17641,17669,18250,18545,18602,18622,18651,19086,19251,19255,19495,20061,20256,20318,22187,22224,22263,22309,22314,22523,23105,23135]]],["yet",[14,12,[[0,2,2,0,2,[[19,1,1,0,1],[20,1,1,1,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[6,1,1,3,4,[[212,1,1,3,4]]],[13,2,2,4,6,[[367,1,1,4,5],[382,1,1,5,6]]],[18,1,1,6,7,[[606,1,1,6,7]]],[20,4,2,7,9,[[664,1,1,7,8],[667,3,1,8,9]]],[23,1,1,9,10,[[747,1,1,9,10]]],[25,2,2,10,12,[[817,2,2,10,12]]]],[507,539,3548,6562,11205,11521,16134,17424,17486,19012,20790,20791]]]]},{"k":"H1572","v":[["*",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]]],[608,13858]]],["drink",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[608]]],["swalloweth",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13858]]]]},{"k":"H1573","v":[["*",[4,4,[[1,1,1,0,1,[[51,1,1,0,1]]],[17,1,1,1,2,[[443,1,1,1,2]]],[22,2,2,2,4,[[696,1,1,2,3],[713,1,1,3,4]]]],[1557,13040,17999,18327]]],["bulrushes",[2,2,[[1,1,1,0,1,[[51,1,1,0,1]]],[22,1,1,1,2,[[696,1,1,1,2]]]],[1557,17999]]],["rush",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13040]]],["rushes",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18327]]]]},{"k":"H1574","v":[["cubit",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6584]]]]},{"k":"H1575","v":[["Gammadims",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21132]]]]},{"k":"H1576","v":[["*",[19,17,[[6,1,1,0,1,[[219,1,1,0,1]]],[13,1,1,1,2,[[398,1,1,1,2]]],[18,4,4,2,6,[[505,1,1,2,3],[571,1,1,3,4],[580,1,1,4,5],[614,1,1,5,6]]],[19,2,2,6,8,[[639,1,1,6,7],[646,1,1,7,8]]],[22,5,4,8,12,[[681,1,1,8,9],[713,1,1,9,10],[737,2,1,10,11],[744,1,1,11,12]]],[23,1,1,12,13,[[795,1,1,12,13]]],[24,1,1,13,14,[[799,1,1,13,14]]],[28,3,2,14,16,[[878,3,2,14,16]]],[30,1,1,16,17,[[888,1,1,16,17]]]],[6770,11900,14303,15433,15551,16230,16733,16942,17718,18324,18818,18928,20218,20418,22347,22350,22525]]],["+",[1,1,[[18,1,1,0,1,[[614,1,1,0,1]]]],[16230]]],["benefit",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11900]]],["benefits",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15551]]],["desert",[1,1,[[18,1,1,0,1,[[505,1,1,0,1]]]],[14303]]],["deserving",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6770]]],["given",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16942]]],["recompence",[10,8,[[19,1,1,0,1,[[639,1,1,0,1]]],[22,4,3,1,4,[[713,1,1,1,2],[737,2,1,2,3],[744,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]],[24,1,1,5,6,[[799,1,1,5,6]]],[28,3,2,6,8,[[878,3,2,6,8]]]],[16733,18324,18818,18928,20218,20418,22347,22350]]],["reward",[3,3,[[18,1,1,0,1,[[571,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]],[30,1,1,2,3,[[888,1,1,2,3]]]],[15433,17718,22525]]]]},{"k":"H1577","v":[["Gamul",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11032]]]]},{"k":"H1578","v":[["*",[3,3,[[9,1,1,0,1,[[285,1,1,0,1]]],[22,1,1,1,2,[[737,1,1,1,2]]],[23,1,1,2,3,[[795,1,1,2,3]]]],[8547,18818,20268]]],["deeds",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18818]]],["recompences",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20268]]],["reward",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8547]]]]},{"k":"H1579","v":[["Gimzo",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11782]]]]},{"k":"H1580","v":[["*",[37,32,[[0,4,3,0,3,[[20,2,1,0,1],[49,2,2,1,3]]],[3,1,1,3,4,[[133,1,1,3,4]]],[4,1,1,4,5,[[184,1,1,4,5]]],[8,6,4,5,9,[[236,4,3,5,8],[259,2,1,8,9]]],[9,2,2,9,11,[[285,1,1,9,10],[288,1,1,10,11]]],[10,1,1,11,12,[[301,1,1,11,12]]],[13,1,1,12,13,[[386,1,1,12,13]]],[18,10,9,13,22,[[484,1,1,13,14],[490,1,1,14,15],[495,1,1,15,16],[580,1,1,16,17],[593,1,1,17,18],[596,1,1,18,19],[608,2,1,19,20],[614,1,1,20,21],[619,1,1,21,22]]],[19,3,3,22,25,[[630,1,1,22,23],[638,1,1,23,24],[658,1,1,24,25]]],[22,6,5,25,30,[[681,1,1,25,26],[689,1,1,26,27],[696,1,1,27,28],[706,1,1,28,29],[741,2,1,29,30]]],[27,1,1,30,31,[[862,1,1,30,31]]],[28,1,1,31,32,[[878,1,1,31,32]]]],[521,1521,1523,4252,5764,7234,7235,7236,7856,8547,8623,9128,11598,13999,14080,14138,15559,15855,15915,16150,16230,16293,16485,16705,17296,17716,17892,18002,18173,18873,22102,22347]]],["+",[5,5,[[13,1,1,0,1,[[386,1,1,0,1]]],[18,2,2,1,3,[[580,1,1,1,2],[614,1,1,2,3]]],[27,1,1,3,4,[[862,1,1,3,4]]],[28,1,1,4,5,[[878,1,1,4,5]]]],[11598,15559,16230,22102,22347]]],["bestowed",[2,1,[[22,2,1,0,1,[[741,2,1,0,1]]]],[18873]]],["bountifully",[4,4,[[18,4,4,0,4,[[490,1,1,0,1],[593,1,1,1,2],[596,1,1,2,3],[619,1,1,3,4]]]],[14080,15855,15915,16293]]],["child",[2,2,[[18,1,1,0,1,[[608,1,1,0,1]]],[22,1,1,1,2,[[689,1,1,1,2]]]],[16150,17892]]],["did",[2,2,[[0,2,2,0,2,[[49,2,2,0,2]]]],[1521,1523]]],["do",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17296]]],["done",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16485]]],["good",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16705]]],["recompense",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8547]]],["requite",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5764]]],["rewarded",[6,5,[[8,2,1,0,1,[[259,2,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,2,2,2,4,[[484,1,1,2,3],[495,1,1,3,4]]],[22,1,1,4,5,[[681,1,1,4,5]]]],[7856,8623,13999,14138,17716]]],["ripening",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18002]]],["weaned",[9,7,[[0,2,1,0,1,[[20,2,1,0,1]]],[8,4,3,1,4,[[236,4,3,1,4]]],[10,1,1,4,5,[[301,1,1,4,5]]],[18,1,1,5,6,[[608,1,1,5,6]]],[22,1,1,6,7,[[706,1,1,6,7]]]],[521,7234,7235,7236,9128,16150,18173]]],["yielded",[1,1,[[3,1,1,0,1,[[133,1,1,0,1]]]],[4252]]]]},{"k":"H1581","v":[["*",[54,51,[[0,25,22,0,22,[[11,1,1,0,1],[23,18,15,1,16],[29,1,1,16,17],[30,2,2,17,19],[31,2,2,19,21],[36,1,1,21,22]]],[1,1,1,22,23,[[58,1,1,22,23]]],[2,1,1,23,24,[[100,1,1,23,24]]],[4,1,1,24,25,[[166,1,1,24,25]]],[6,4,4,25,29,[[216,1,1,25,26],[217,1,1,26,27],[218,2,2,27,29]]],[8,3,3,29,32,[[250,1,1,29,30],[262,1,1,30,31],[265,1,1,31,32]]],[10,1,1,32,33,[[300,1,1,32,33]]],[11,1,1,33,34,[[320,1,1,33,34]]],[12,3,3,34,37,[[342,1,1,34,35],[349,1,1,35,36],[364,1,1,36,37]]],[13,2,2,37,39,[[375,1,1,37,38],[380,1,1,38,39]]],[14,1,1,39,40,[[404,1,1,39,40]]],[15,1,1,40,41,[[419,1,1,40,41]]],[17,3,3,41,44,[[436,2,2,41,43],[477,1,1,43,44]]],[22,3,3,44,47,[[699,1,1,44,45],[708,1,1,45,46],[738,1,1,46,47]]],[23,2,2,47,49,[[793,2,2,47,49]]],[25,1,1,49,50,[[826,1,1,49,50]]],[37,1,1,50,51,[[924,1,1,50,51]]]],[314,601,602,605,610,611,613,621,622,623,626,635,637,652,654,655,873,890,907,935,943,1108,1745,3001,5297,6659,6706,6740,6745,7563,7939,7995,9081,9736,10449,10760,11139,11365,11490,12094,12489,12872,12886,13934,18042,18223,18827,20156,20159,21088,23083]]],["+",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]]],[601,7563]]],["camel",[4,4,[[0,1,1,0,1,[[23,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]],[4,1,1,2,3,[[166,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[655,3001,5297,23083]]],["camel's",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[907]]],["camels",[44,42,[[0,22,20,0,20,[[11,1,1,0,1],[23,16,14,1,15],[29,1,1,15,16],[30,1,1,16,17],[31,2,2,17,19],[36,1,1,19,20]]],[1,1,1,20,21,[[58,1,1,20,21]]],[6,2,2,21,23,[[216,1,1,21,22],[217,1,1,22,23]]],[8,2,2,23,25,[[262,1,1,23,24],[265,1,1,24,25]]],[10,1,1,25,26,[[300,1,1,25,26]]],[12,3,3,26,29,[[342,1,1,26,27],[349,1,1,27,28],[364,1,1,28,29]]],[13,2,2,29,31,[[375,1,1,29,30],[380,1,1,30,31]]],[14,1,1,31,32,[[404,1,1,31,32]]],[15,1,1,32,33,[[419,1,1,32,33]]],[17,3,3,33,36,[[436,2,2,33,35],[477,1,1,35,36]]],[22,3,3,36,39,[[699,1,1,36,37],[708,1,1,37,38],[738,1,1,38,39]]],[23,2,2,39,41,[[793,2,2,39,41]]],[25,1,1,41,42,[[826,1,1,41,42]]]],[314,601,602,605,610,611,613,621,622,623,626,635,637,652,654,873,890,935,943,1108,1745,6659,6706,7939,7995,9081,10449,10760,11139,11365,11490,12094,12489,12872,12886,13934,18042,18223,18827,20156,20159,21088]]],["camels'",[3,3,[[6,2,2,0,2,[[218,2,2,0,2]]],[11,1,1,2,3,[[320,1,1,2,3]]]],[6740,6745,9736]]]]},{"k":"H1582","v":[["Gemalli",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4087]]]]},{"k":"H1583","v":[["Gamaliel",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3614,3678,3904,3909,4011]]]]},{"k":"H1584","v":[["*",[5,5,[[18,5,5,0,5,[[484,1,1,0,1],[489,1,1,1,2],[534,1,1,2,3],[554,1,1,3,4],[615,1,1,4,5]]]],[14004,14067,14770,15101,16239]]],["ceaseth",[1,1,[[18,1,1,0,1,[[489,1,1,0,1]]]],[14067]]],["end",[1,1,[[18,1,1,0,1,[[484,1,1,0,1]]]],[14004]]],["fail",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15101]]],["perfect",[1,1,[[18,1,1,0,1,[[615,1,1,0,1]]]],[16239]]],["performeth",[1,1,[[18,1,1,0,1,[[534,1,1,0,1]]]],[14770]]]]},{"k":"H1585","v":[["perfect",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12185]]]]},{"k":"H1586","v":[["Gomer",[6,6,[[0,2,2,0,2,[[9,2,2,0,2]]],[12,2,2,2,4,[[338,2,2,2,4]]],[25,1,1,4,5,[[839,1,1,4,5]]],[27,1,1,5,6,[[862,1,1,5,6]]]],[236,237,10257,10258,21431,22097]]]]},{"k":"H1587","v":[["Gemariah",[5,5,[[23,5,5,0,5,[[773,1,1,0,1],[780,4,4,1,5]]]],[19638,19852,19853,19854,19867]]]]},{"k":"H1588","v":[["*",[42,37,[[0,14,13,0,13,[[1,5,5,0,5],[2,8,7,5,12],[12,1,1,12,13]]],[4,1,1,13,14,[[163,1,1,13,14]]],[10,1,1,14,15,[[311,1,1,14,15]]],[11,5,4,15,19,[[321,1,1,15,16],[333,3,2,16,18],[337,1,1,18,19]]],[15,1,1,19,20,[[415,1,1,19,20]]],[21,8,6,20,26,[[674,4,3,20,23],[675,1,1,23,24],[676,2,1,24,25],[678,1,1,25,26]]],[22,2,2,26,28,[[729,1,1,26,27],[736,1,1,27,28]]],[23,3,3,28,31,[[775,1,1,28,29],[783,1,1,29,30],[796,1,1,30,31]]],[24,1,1,31,32,[[798,1,1,31,32]]],[25,5,4,32,36,[[829,1,1,32,33],[832,3,2,33,35],[837,1,1,35,36]]],[28,1,1,36,37,[[877,1,1,36,37]]]],[38,39,40,45,46,56,57,58,63,65,78,79,328,5218,9453,9783,10137,10145,10226,12342,17594,17597,17598,17599,17616,17653,18676,18797,19703,19927,20283,20338,21170,21238,21239,21394,22314]]],["+",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[78]]],["garden",[38,34,[[0,13,12,0,12,[[1,5,5,0,5],[2,7,6,5,11],[12,1,1,11,12]]],[4,1,1,12,13,[[163,1,1,12,13]]],[10,1,1,13,14,[[311,1,1,13,14]]],[11,5,4,14,18,[[321,1,1,14,15],[333,3,2,15,17],[337,1,1,17,18]]],[15,1,1,18,19,[[415,1,1,18,19]]],[21,5,4,19,23,[[674,3,2,19,21],[675,1,1,21,22],[676,1,1,22,23]]],[22,2,2,23,25,[[729,1,1,23,24],[736,1,1,24,25]]],[23,3,3,25,28,[[775,1,1,25,26],[783,1,1,26,27],[796,1,1,27,28]]],[24,1,1,28,29,[[798,1,1,28,29]]],[25,5,4,29,33,[[829,1,1,29,30],[832,3,2,30,32],[837,1,1,32,33]]],[28,1,1,33,34,[[877,1,1,33,34]]]],[38,39,40,45,46,56,57,58,63,65,79,328,5218,9453,9783,10137,10145,10226,12342,17594,17598,17599,17616,18676,18797,19703,19927,20283,20338,21170,21238,21239,21394,22314]]],["gardens",[3,3,[[21,3,3,0,3,[[674,1,1,0,1],[676,1,1,1,2],[678,1,1,2,3]]]],[17597,17616,17653]]]]},{"k":"H1589","v":[["*",[40,36,[[0,12,10,0,10,[[29,1,1,0,1],[30,8,7,1,8],[39,2,1,8,9],[43,1,1,9,10]]],[1,6,5,10,15,[[69,1,1,10,11],[70,1,1,11,12],[71,4,3,12,15]]],[2,1,1,15,16,[[108,1,1,15,16]]],[4,2,2,16,18,[[157,1,1,16,17],[176,1,1,17,18]]],[5,1,1,18,19,[[193,1,1,18,19]]],[9,5,4,19,23,[[281,1,1,19,20],[285,3,2,20,22],[287,1,1,22,23]]],[11,1,1,23,24,[[323,1,1,23,24]]],[13,1,1,24,25,[[388,1,1,24,25]]],[17,3,3,25,28,[[439,1,1,25,26],[456,1,1,26,27],[462,1,1,27,28]]],[19,3,3,28,31,[[633,1,1,28,29],[636,1,1,29,30],[657,1,1,30,31]]],[23,2,2,31,33,[[751,1,1,31,32],[767,1,1,32,33]]],[27,1,1,33,34,[[865,1,1,33,34]]],[30,1,1,34,35,[[888,1,1,34,35]]],[37,1,1,35,36,[[915,1,1,35,36]]]],[863,892,893,899,900,903,905,912,1187,1332,2066,2093,2114,2120,2125,3292,5072,5532,5987,8395,8514,8552,8592,9831,11655,12942,13373,13501,16570,16655,17260,19128,19514,22135,22515,22939]]],["+",[9,7,[[0,6,5,0,5,[[30,4,4,0,4],[39,2,1,4,5]]],[1,2,1,5,6,[[71,2,1,5,6]]],[9,1,1,6,7,[[281,1,1,6,7]]]],[892,893,899,903,1187,2125,8395]]],["Stolen",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16655]]],["away",[5,5,[[0,1,1,0,1,[[30,1,1,0,1]]],[9,2,2,1,3,[[285,2,2,1,3]]],[17,2,2,3,5,[[456,1,1,3,4],[462,1,1,4,5]]]],[900,8514,8552,13373,13501]]],["brought",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12942]]],["steal",[9,9,[[0,1,1,0,1,[[43,1,1,0,1]]],[1,2,2,1,3,[[69,1,1,1,2],[71,1,1,2,3]]],[2,1,1,3,4,[[108,1,1,3,4]]],[4,1,1,4,5,[[157,1,1,4,5]]],[19,2,2,5,7,[[633,1,1,5,6],[657,1,1,6,7]]],[23,2,2,7,9,[[751,1,1,7,8],[767,1,1,8,9]]]],[1332,2066,2114,3292,5072,16570,17260,19128,19514]]],["stealeth",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[37,1,1,1,2,[[915,1,1,1,2]]]],[2093,22939]]],["stealing",[2,2,[[4,1,1,0,1,[[176,1,1,0,1]]],[27,1,1,1,2,[[865,1,1,1,2]]]],[5532,22135]]],["stealth",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8514]]],["stole",[2,2,[[11,1,1,0,1,[[323,1,1,0,1]]],[13,1,1,1,2,[[388,1,1,1,2]]]],[9831,11655]]],["stolen",[8,7,[[0,4,3,0,3,[[29,1,1,0,1],[30,3,2,1,3]]],[1,1,1,3,4,[[71,1,1,3,4]]],[5,1,1,4,5,[[193,1,1,4,5]]],[9,1,1,5,6,[[287,1,1,5,6]]],[30,1,1,6,7,[[888,1,1,6,7]]]],[863,905,912,2120,5987,8592,22515]]]]},{"k":"H1590","v":[["*",[17,17,[[1,3,3,0,3,[[71,3,3,0,3]]],[4,1,1,3,4,[[176,1,1,3,4]]],[17,2,2,4,6,[[459,1,1,4,5],[465,1,1,5,6]]],[18,1,1,6,7,[[527,1,1,6,7]]],[19,2,2,7,9,[[633,1,1,7,8],[656,1,1,8,9]]],[22,1,1,9,10,[[679,1,1,9,10]]],[23,3,3,10,13,[[746,1,1,10,11],[792,1,1,11,12],[793,1,1,12,13]]],[27,1,1,13,14,[[868,1,1,13,14]]],[28,1,1,14,15,[[877,1,1,14,15]]],[30,1,1,15,16,[[888,1,1,15,16]]],[37,1,1,16,17,[[915,1,1,16,17]]]],[2115,2120,2121,5532,13450,13562,14686,16570,17248,17677,18991,20107,20136,22179,22320,22515,22940]]],["thief",[13,13,[[1,3,3,0,3,[[71,3,3,0,3]]],[4,1,1,3,4,[[176,1,1,3,4]]],[17,2,2,4,6,[[459,1,1,4,5],[465,1,1,5,6]]],[18,1,1,6,7,[[527,1,1,6,7]]],[19,2,2,7,9,[[633,1,1,7,8],[656,1,1,8,9]]],[23,1,1,9,10,[[746,1,1,9,10]]],[27,1,1,10,11,[[868,1,1,10,11]]],[28,1,1,11,12,[[877,1,1,11,12]]],[37,1,1,12,13,[[915,1,1,12,13]]]],[2115,2120,2121,5532,13450,13562,14686,16570,17248,18991,22179,22320,22940]]],["thieves",[4,4,[[22,1,1,0,1,[[679,1,1,0,1]]],[23,2,2,1,3,[[792,1,1,1,2],[793,1,1,2,3]]],[30,1,1,3,4,[[888,1,1,3,4]]]],[17677,20107,20136,22515]]]]},{"k":"H1591","v":[["theft",[2,2,[[1,2,2,0,2,[[71,2,2,0,2]]]],[2116,2117]]]]},{"k":"H1592","v":[["Genubath",[2,1,[[10,2,1,0,1,[[301,2,1,0,1]]]],[9128]]]]},{"k":"H1593","v":[["*",[12,12,[[3,1,1,0,1,[[140,1,1,0,1]]],[17,1,1,1,2,[[443,1,1,1,2]]],[20,1,1,2,3,[[660,1,1,2,3]]],[22,5,5,3,8,[[679,2,2,3,5],[739,1,1,5,6],[743,1,1,6,7],[744,1,1,7,8]]],[23,2,2,8,10,[[773,2,2,8,10]]],[29,2,2,10,12,[[882,1,1,10,11],[887,1,1,11,12]]]],[4452,13045,17338,17683,17684,18854,18900,18939,19640,19663,22419,22509]]],["+",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17683]]],["garden",[3,3,[[17,1,1,0,1,[[443,1,1,0,1]]],[22,2,2,1,3,[[679,1,1,1,2],[739,1,1,2,3]]]],[13045,17684,18854]]],["gardens",[8,8,[[3,1,1,0,1,[[140,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]],[22,2,2,2,4,[[743,1,1,2,3],[744,1,1,3,4]]],[23,2,2,4,6,[[773,2,2,4,6]]],[29,2,2,6,8,[[882,1,1,6,7],[887,1,1,7,8]]]],[4452,17338,18900,18939,19640,19663,22419,22509]]]]},{"k":"H1594","v":[["*",[4,4,[[16,3,3,0,3,[[426,1,1,0,1],[432,2,2,1,3]]],[21,1,1,3,4,[[676,1,1,3,4]]]],[12707,12814,12815,17625]]],["+",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12815]]],["garden",[3,3,[[16,2,2,0,2,[[426,1,1,0,1],[432,1,1,1,2]]],[21,1,1,2,3,[[676,1,1,2,3]]]],[12707,12814,17625]]]]},{"k":"H1595","v":[["*",[3,3,[[16,2,2,0,2,[[428,1,1,0,1],[429,1,1,1,2]]],[25,1,1,2,3,[[828,1,1,2,3]]]],[12756,12769,21145]]],["chests",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21145]]],["treasuries",[2,2,[[16,2,2,0,2,[[428,1,1,0,1],[429,1,1,1,2]]]],[12756,12769]]]]},{"k":"H1596","v":[["*",[3,3,[[14,3,3,0,3,[[407,1,1,0,1],[408,1,1,1,2],[409,1,1,2,3]]]],[12151,12152,12193]]],["treasure",[2,2,[[14,2,2,0,2,[[407,1,1,0,1],[409,1,1,1,2]]]],[12151,12193]]],["treasures",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12152]]]]},{"k":"H1597","v":[["treasuries",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11154]]]]},{"k":"H1598","v":[["*",[8,7,[[11,2,2,0,2,[[331,1,1,0,1],[332,1,1,1,2]]],[22,4,3,2,5,[[709,2,1,2,3],[715,1,1,3,4],[716,1,1,4,5]]],[37,2,2,5,7,[[919,1,1,5,6],[922,1,1,6,7]]]],[10095,10104,18255,18387,18396,23014,23053]]],["+",[7,7,[[11,2,2,0,2,[[331,1,1,0,1],[332,1,1,1,2]]],[22,3,3,2,5,[[709,1,1,2,3],[715,1,1,3,4],[716,1,1,4,5]]],[37,2,2,5,7,[[919,1,1,5,6],[922,1,1,6,7]]]],[10095,10104,18255,18387,18396,23014,23053]]],["defending",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18255]]]]},{"k":"H1599","v":[["*",[3,3,[[15,3,3,0,3,[[422,1,1,0,1],[424,2,2,1,3]]]],[12555,12628,12640]]],["Ginnetho",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12628]]],["Ginnethon",[2,2,[[15,2,2,0,2,[[422,1,1,0,1],[424,1,1,1,2]]]],[12555,12640]]]]},{"k":"H1600","v":[["*",[2,2,[[8,1,1,0,1,[[241,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]]],[7343,12983]]],["loweth",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12983]]],["lowing",[1,1,[[8,1,1,0,1,[[241,1,1,0,1]]]],[7343]]]]},{"k":"H1601","v":[["Goath",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19730]]]]},{"k":"H1602","v":[["*",[10,9,[[2,5,5,0,5,[[115,5,5,0,5]]],[9,1,1,5,6,[[267,1,1,5,6]]],[17,1,1,6,7,[[456,1,1,6,7]]],[23,1,1,7,8,[[758,1,1,7,8]]],[25,2,1,8,9,[[817,2,1,8,9]]]],[3535,3539,3554,3567,3568,8043,13365,19312,20807]]],["+",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3539]]],["abhor",[3,3,[[2,3,3,0,3,[[115,3,3,0,3]]]],[3535,3554,3568]]],["abhorred",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3567]]],["away",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8043]]],["faileth",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13365]]],["lothed",[2,2,[[23,1,1,0,1,[[758,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[19312,20807]]],["lotheth",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20807]]]]},{"k":"H1603","v":[["Gaal",[9,9,[[6,9,9,0,9,[[219,9,9,0,9]]]],[6780,6782,6784,6785,6789,6790,6791,6793,6795]]]]},{"k":"H1604","v":[["lothing",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20767]]]]},{"k":"H1605","v":[["*",[14,13,[[0,1,1,0,1,[[36,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[18,4,4,2,6,[[486,1,1,2,3],[545,1,1,3,4],[583,1,1,4,5],[596,1,1,5,6]]],[22,2,2,6,8,[[695,1,1,6,7],[732,1,1,7,8]]],[23,1,1,8,9,[[773,1,1,8,9]]],[33,1,1,9,10,[[900,1,1,9,10]]],[37,2,1,10,11,[[913,2,1,10,11]]],[38,2,2,11,13,[[926,1,1,11,12],[927,1,1,12,13]]]],[1093,7165,14026,14930,15660,15919,17996,18732,19662,22688,22914,23106,23131]]],["+",[2,2,[[22,1,1,0,1,[[732,1,1,0,1]]],[38,1,1,1,2,[[926,1,1,1,2]]]],[18732,23106]]],["Rebuke",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14930]]],["rebuke",[5,4,[[7,1,1,0,1,[[233,1,1,0,1]]],[22,1,1,1,2,[[695,1,1,1,2]]],[37,2,1,2,3,[[913,2,1,2,3]]],[38,1,1,3,4,[[927,1,1,3,4]]]],[7165,17996,22914,23131]]],["rebuked",[4,4,[[0,1,1,0,1,[[36,1,1,0,1]]],[18,3,3,1,4,[[486,1,1,1,2],[583,1,1,2,3],[596,1,1,3,4]]]],[1093,14026,15660,15919]]],["rebuketh",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22688]]],["reproved",[1,1,[[23,1,1,0,1,[[773,1,1,0,1]]]],[19662]]]]},{"k":"H1606","v":[["*",[15,14,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[461,1,1,1,2]]],[18,4,4,2,6,[[495,1,1,2,3],[553,1,1,3,4],[557,1,1,4,5],[581,1,1,5,6]]],[19,3,3,6,9,[[640,2,2,6,8],[644,1,1,8,9]]],[20,1,1,9,10,[[665,1,1,9,10]]],[22,5,4,10,14,[[708,2,1,10,11],[728,1,1,11,12],[729,1,1,12,13],[744,1,1,13,14]]]],[8618,13478,14133,15087,15214,15578,16748,16755,16883,17434,18234,18664,18693,18937]]],["+",[4,4,[[17,1,1,0,1,[[461,1,1,0,1]]],[18,3,3,1,4,[[495,1,1,1,2],[553,1,1,2,3],[557,1,1,3,4]]]],[13478,14133,15087,15214]]],["rebuke",[9,8,[[18,1,1,0,1,[[581,1,1,0,1]]],[19,2,2,1,3,[[640,2,2,1,3]]],[20,1,1,3,4,[[665,1,1,3,4]]],[22,5,4,4,8,[[708,2,1,4,5],[728,1,1,5,6],[729,1,1,6,7],[744,1,1,7,8]]]],[15578,16748,16755,17434,18234,18664,18693,18937]]],["rebuking",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8618]]],["reproof",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16883]]]]},{"k":"H1607","v":[["*",[9,7,[[9,2,1,0,1,[[288,2,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[18,2,1,2,3,[[495,2,1,2,3]]],[23,4,4,3,7,[[749,1,1,3,4],[769,1,1,4,5],[790,2,2,5,7]]]],[8610,13703,14125,19080,19550,20052,20053]]],["moved",[3,3,[[23,3,3,0,3,[[769,1,1,0,1],[790,2,2,1,3]]]],[19550,20052,20053]]],["shaken",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14125]]],["shook",[3,2,[[9,2,1,0,1,[[288,2,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8610,14125]]],["themselves",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19080]]],["troubled",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13703]]]]},{"k":"H1608","v":[["Gaash",[4,4,[[5,1,1,0,1,[[210,1,1,0,1]]],[6,1,1,1,2,[[212,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[12,1,1,3,4,[[348,1,1,3,4]]]],[6506,6554,8683,10705]]]]},{"k":"H1609","v":[["Gatam",[3,3,[[0,2,2,0,2,[[35,2,2,0,2]]],[12,1,1,2,3,[[338,1,1,2,3]]]],[1051,1056,10288]]]]},{"k":"H1610","v":[["*",[4,3,[[1,3,2,0,2,[[70,3,2,0,2]]],[19,1,1,2,3,[[636,1,1,2,3]]]],[2080,2081,16641]]],["+",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16641]]],["himself",[3,2,[[1,3,2,0,2,[[70,3,2,0,2]]]],[2080,2081]]]]},{"k":"H1611","v":[["wings",[3,2,[[26,3,2,0,2,[[856,3,2,0,2]]]],[21937,21939]]]]},{"k":"H1612","v":[["*",[55,53,[[0,3,3,0,3,[[39,2,2,0,2],[48,1,1,2,3]]],[3,2,2,3,5,[[122,1,1,3,4],[136,1,1,4,5]]],[4,3,2,5,7,[[160,1,1,5,6],[184,2,1,6,7]]],[6,3,3,7,10,[[219,2,2,7,9],[223,1,1,9,10]]],[10,1,1,10,11,[[294,1,1,10,11]]],[11,2,2,11,13,[[316,1,1,11,12],[330,1,1,12,13]]],[17,1,1,13,14,[[450,1,1,13,14]]],[18,5,5,14,19,[[555,1,1,14,15],[557,2,2,15,17],[582,1,1,17,18],[605,1,1,18,19]]],[21,4,4,19,23,[[672,1,1,19,20],[676,1,1,20,21],[677,2,2,21,23]]],[22,7,7,23,30,[[685,1,1,23,24],[694,2,2,24,26],[702,1,1,26,27],[710,1,1,27,28],[712,1,1,28,29],[714,1,1,29,30]]],[23,5,5,30,35,[[746,1,1,30,31],[749,1,1,31,32],[750,1,1,32,33],[752,1,1,33,34],[792,1,1,34,35]]],[25,7,6,35,41,[[816,2,2,35,37],[818,4,3,37,40],[820,1,1,40,41]]],[27,3,3,41,44,[[863,1,1,41,42],[871,1,1,42,43],[875,1,1,43,44]]],[28,3,3,44,47,[[876,2,2,44,46],[877,1,1,46,47]]],[32,1,1,47,48,[[896,1,1,47,48]]],[34,1,1,48,49,[[905,1,1,48,49]]],[36,1,1,49,50,[[910,1,1,49,50]]],[37,2,2,50,52,[[913,1,1,50,51],[918,1,1,51,52]]],[38,1,1,52,53,[[927,1,1,52,53]]]],[1181,1182,1484,3827,4316,5145,5790,6766,6767,6898,8869,9642,10055,13236,15160,15206,15212,15639,16129,17567,17625,17635,17639,17805,17977,17978,18102,18271,18307,18346,18986,19075,19098,19166,20112,20756,20760,20831,20832,20833,20891,22117,22226,22289,22298,22303,22333,22624,22785,22874,22922,22988,23131]]],["+",[4,4,[[3,1,1,0,1,[[122,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[6,1,1,2,3,[[223,1,1,2,3]]],[22,1,1,3,4,[[712,1,1,3,4]]]],[3827,5790,6898,18307]]],["vine",[42,41,[[0,3,3,0,3,[[39,2,2,0,2],[48,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[6,2,2,4,6,[[219,2,2,4,6]]],[10,1,1,6,7,[[294,1,1,6,7]]],[11,2,2,7,9,[[316,1,1,7,8],[330,1,1,8,9]]],[17,1,1,9,10,[[450,1,1,9,10]]],[18,3,3,10,13,[[557,2,2,10,12],[605,1,1,12,13]]],[21,3,3,13,16,[[676,1,1,13,14],[677,2,2,14,16]]],[22,5,5,16,21,[[694,2,2,16,18],[702,1,1,18,19],[710,1,1,19,20],[714,1,1,20,21]]],[23,4,4,21,25,[[746,1,1,21,22],[750,1,1,22,23],[752,1,1,23,24],[792,1,1,24,25]]],[25,7,6,25,31,[[816,2,2,25,27],[818,4,3,27,30],[820,1,1,30,31]]],[27,2,2,31,33,[[871,1,1,31,32],[875,1,1,32,33]]],[28,3,3,33,36,[[876,2,2,33,35],[877,1,1,35,36]]],[32,1,1,36,37,[[896,1,1,36,37]]],[36,1,1,37,38,[[910,1,1,37,38]]],[37,2,2,38,40,[[913,1,1,38,39],[918,1,1,39,40]]],[38,1,1,40,41,[[927,1,1,40,41]]]],[1181,1182,1484,5790,6766,6767,8869,9642,10055,13236,15206,15212,16129,17625,17635,17639,17977,17978,18102,18271,18346,18986,19098,19166,20112,20756,20760,20831,20832,20833,20891,22226,22289,22298,22303,22333,22624,22874,22922,22988,23131]]],["vines",[9,9,[[3,1,1,0,1,[[136,1,1,0,1]]],[4,1,1,1,2,[[160,1,1,1,2]]],[18,2,2,2,4,[[555,1,1,2,3],[582,1,1,3,4]]],[21,1,1,4,5,[[672,1,1,4,5]]],[22,1,1,5,6,[[685,1,1,5,6]]],[23,1,1,6,7,[[749,1,1,6,7]]],[27,1,1,7,8,[[863,1,1,7,8]]],[34,1,1,8,9,[[905,1,1,8,9]]]],[4316,5145,15160,15639,17567,17805,19075,22117,22785]]]]},{"k":"H1613","v":[["gopher",[1,1,[[0,1,1,0,1,[[5,1,1,0,1]]]],[151]]]]},{"k":"H1614","v":[["brimstone",[7,7,[[0,1,1,0,1,[[18,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[17,1,1,2,3,[[453,1,1,2,3]]],[18,1,1,3,4,[[488,1,1,3,4]]],[22,2,2,4,6,[[708,1,1,4,5],[712,1,1,5,6]]],[25,1,1,6,7,[[839,1,1,6,7]]]],[481,5702,13291,14065,18250,18312,21447]]]]},{"k":"H1615","v":[["+",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18160]]]]},{"k":"H1616","v":[["*",[92,83,[[0,2,2,0,2,[[14,1,1,0,1],[22,1,1,1,2]]],[1,12,9,2,11,[[51,1,1,2,3],[61,3,3,3,6],[67,1,1,6,7],[69,1,1,7,8],[71,2,1,8,9],[72,4,2,9,11]]],[2,21,18,11,29,[[105,1,1,11,12],[106,5,5,12,17],[107,1,1,17,18],[108,4,3,18,21],[109,1,1,21,22],[111,1,1,22,23],[112,1,1,23,24],[113,2,2,24,26],[114,5,3,26,29]]],[3,11,9,29,38,[[125,2,1,29,30],[131,7,6,30,36],[135,1,1,36,37],[151,1,1,37,38]]],[4,22,21,38,59,[[153,1,1,38,39],[157,1,1,39,40],[162,3,2,40,42],[166,2,2,42,44],[168,2,2,44,46],[175,1,1,46,47],[176,5,5,47,52],[178,3,3,52,55],[179,1,1,55,56],[180,1,1,56,57],[181,1,1,57,58],[183,1,1,58,59]]],[5,3,3,59,62,[[194,2,2,59,61],[206,1,1,61,62]]],[9,1,1,62,63,[[267,1,1,62,63]]],[12,2,2,63,65,[[359,1,1,63,64],[366,1,1,64,65]]],[13,2,2,65,67,[[368,1,1,65,66],[396,1,1,66,67]]],[17,1,1,67,68,[[466,1,1,67,68]]],[18,4,4,68,72,[[516,1,1,68,69],[571,1,1,69,70],[596,1,1,70,71],[623,1,1,71,72]]],[22,1,1,72,73,[[692,1,1,72,73]]],[23,3,3,73,76,[[751,1,1,73,74],[758,1,1,74,75],[766,1,1,75,76]]],[25,5,5,76,81,[[815,1,1,76,77],[823,2,2,77,79],[848,2,2,79,81]]],[37,1,1,81,82,[[917,1,1,81,82]]],[38,1,1,82,83,[[927,1,1,82,83]]]],[373,575,1576,1835,1864,1865,2002,2061,2134,2153,2156,3230,3243,3245,3247,3248,3250,3277,3291,3314,3315,3320,3387,3424,3462,3468,3492,3504,3516,3979,4167,4168,4169,4179,4182,4183,4299,4860,4908,5067,5204,5205,5311,5319,5353,5356,5507,5539,5542,5544,5545,5546,5577,5578,5579,5604,5654,5690,5740,6035,6037,6381,8035,10966,11179,11228,11852,13620,14524,15437,15917,16350,17929,19125,19301,19457,20738,20983,21005,21701,21702,22972,23125]]],["+",[5,5,[[2,1,1,0,1,[[114,1,1,0,1]]],[4,1,1,1,2,[[176,1,1,1,2]]],[9,1,1,2,3,[[267,1,1,2,3]]],[13,1,1,3,4,[[368,1,1,3,4]]],[25,1,1,4,5,[[815,1,1,4,5]]]],[3516,5539,8035,11228,20738]]],["alien",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2002]]],["stranger",[68,65,[[0,2,2,0,2,[[14,1,1,0,1],[22,1,1,1,2]]],[1,9,8,2,10,[[51,1,1,2,3],[61,3,3,3,6],[69,1,1,6,7],[71,1,1,7,8],[72,3,2,8,10]]],[2,12,12,10,22,[[105,1,1,10,11],[106,2,2,11,13],[107,1,1,13,14],[108,3,3,14,17],[112,1,1,17,18],[113,2,2,18,20],[114,2,2,20,22]]],[3,11,9,22,31,[[125,2,1,22,23],[131,7,6,23,29],[135,1,1,29,30],[151,1,1,30,31]]],[4,20,20,31,51,[[153,1,1,31,32],[157,1,1,32,33],[162,2,2,33,35],[166,2,2,35,37],[168,2,2,37,39],[175,1,1,39,40],[176,4,4,40,44],[178,3,3,44,47],[179,1,1,47,48],[180,1,1,48,49],[181,1,1,49,50],[183,1,1,50,51]]],[5,2,2,51,53,[[194,1,1,51,52],[206,1,1,52,53]]],[17,1,1,53,54,[[466,1,1,53,54]]],[18,3,3,54,57,[[516,1,1,54,55],[571,1,1,55,56],[596,1,1,56,57]]],[23,3,3,57,60,[[751,1,1,57,58],[758,1,1,58,59],[766,1,1,59,60]]],[25,3,3,60,63,[[823,2,2,60,62],[848,1,1,62,63]]],[37,1,1,63,64,[[917,1,1,63,64]]],[38,1,1,64,65,[[927,1,1,64,65]]]],[373,575,1576,1835,1864,1865,2061,2134,2153,2156,3230,3247,3250,3277,3291,3314,3315,3424,3462,3468,3504,3516,3979,4167,4168,4169,4179,4182,4183,4299,4860,4908,5067,5204,5205,5311,5319,5353,5356,5507,5542,5544,5545,5546,5577,5578,5579,5604,5654,5690,5740,6035,6381,13620,14524,15437,15917,19125,19301,19457,20983,21005,21702,22972,23125]]],["stranger's",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3516]]],["strangers",[17,17,[[1,2,2,0,2,[[71,1,1,0,1],[72,1,1,1,2]]],[2,7,7,2,9,[[106,3,3,2,5],[108,1,1,5,6],[109,1,1,6,7],[111,1,1,7,8],[114,1,1,8,9]]],[4,1,1,9,10,[[162,1,1,9,10]]],[5,1,1,10,11,[[194,1,1,10,11]]],[12,2,2,11,13,[[359,1,1,11,12],[366,1,1,12,13]]],[13,1,1,13,14,[[396,1,1,13,14]]],[18,1,1,14,15,[[623,1,1,14,15]]],[22,1,1,15,16,[[692,1,1,15,16]]],[25,1,1,16,17,[[848,1,1,16,17]]]],[2134,2153,3243,3245,3248,3315,3320,3387,3492,5205,6037,10966,11179,11852,16350,17929,21701]]]]},{"k":"H1617","v":[["Gera",[9,9,[[0,1,1,0,1,[[45,1,1,0,1]]],[6,1,1,1,2,[[213,1,1,1,2]]],[9,3,3,2,5,[[282,1,1,2,3],[285,2,2,3,5]]],[10,1,1,5,6,[[292,1,1,5,6]]],[12,3,3,6,9,[[345,3,3,6,9]]]],[1407,6583,8431,8527,8529,8778,10578,10580,10582]]]]},{"k":"H1618","v":[["*",[3,3,[[2,2,2,0,2,[[110,1,1,0,1],[111,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]]],[3365,3391,5638]]],["scab",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5638]]],["scurvy",[2,2,[[2,2,2,0,2,[[110,1,1,0,1],[111,1,1,1,2]]]],[3365,3391]]]]},{"k":"H1619","v":[["Gareb",[3,3,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]]],[8691,10713,19730]]]]},{"k":"H1620","v":[["berries",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17989]]]]},{"k":"H1621","v":[["neck",[4,4,[[19,4,4,0,4,[[628,1,1,0,1],[630,2,2,1,3],[633,1,1,3,4]]]],[16409,16458,16477,16561]]]]},{"k":"H1622","v":[["*",[7,7,[[0,2,2,0,2,[[9,1,1,0,1],[14,1,1,1,2]]],[4,1,1,2,3,[[159,1,1,2,3]]],[5,2,2,3,5,[[189,1,1,3,4],[210,1,1,4,5]]],[12,1,1,5,6,[[338,1,1,5,6]]],[15,1,1,6,7,[[421,1,1,6,7]]]],[250,381,5112,5903,6487,10266,12519]]],["Girgashite",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10266]]],["Girgashites",[5,5,[[0,1,1,0,1,[[14,1,1,0,1]]],[4,1,1,1,2,[[159,1,1,1,2]]],[5,2,2,2,4,[[189,1,1,2,3],[210,1,1,3,4]]],[15,1,1,4,5,[[421,1,1,4,5]]]],[381,5112,5903,6487,12519]]],["Girgasite",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[250]]]]},{"k":"H1623","v":[["himself",[1,1,[[17,1,1,0,1,[[437,1,1,0,1]]]],[12899]]]]},{"k":"H1624","v":[["*",[14,13,[[4,4,4,0,4,[[154,4,4,0,4]]],[11,1,1,4,5,[[326,1,1,4,5]]],[13,1,1,5,6,[[391,1,1,5,6]]],[19,4,4,6,10,[[642,1,1,6,7],[655,2,2,7,9],[656,1,1,9,10]]],[23,1,1,10,11,[[794,1,1,10,11]]],[26,3,2,11,13,[[860,3,2,11,13]]]],[4943,4947,4957,4962,9906,11723,16825,17200,17221,17246,20190,22046,22061]]],["Meddle",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4943]]],["contend",[3,3,[[4,2,2,0,2,[[154,2,2,0,2]]],[19,1,1,2,3,[[655,1,1,2,3]]]],[4947,4962,17200]]],["meddle",[3,3,[[4,1,1,0,1,[[154,1,1,0,1]]],[11,1,1,1,2,[[326,1,1,1,2]]],[13,1,1,2,3,[[391,1,1,2,3]]]],[4957,9906,11723]]],["striven",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20190]]],["up",[6,5,[[19,3,3,0,3,[[642,1,1,0,1],[655,1,1,1,2],[656,1,1,2,3]]],[26,3,2,3,5,[[860,3,2,3,5]]]],[16825,17221,17246,22046,22061]]]]},{"k":"H1625","v":[["cud",[11,9,[[2,7,6,0,6,[[100,7,6,0,6]]],[4,4,3,6,9,[[166,4,3,6,9]]]],[3000,3001,3002,3003,3004,3023,5296,5297,5298]]]]},{"k":"H1626","v":[["gerahs",[5,5,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]],[3,2,2,2,4,[[119,1,1,2,3],[134,1,1,3,4]]],[25,1,1,4,5,[[846,1,1,4,5]]]],[2395,3595,3739,4273,21642]]]]},{"k":"H1627","v":[["*",[8,8,[[18,4,4,0,4,[[482,1,1,0,1],[546,1,1,1,2],[592,1,1,2,3],[626,1,1,3,4]]],[22,2,2,4,6,[[681,1,1,4,5],[736,1,1,5,6]]],[23,1,1,6,7,[[746,1,1,6,7]]],[25,1,1,7,8,[[817,1,1,7,8]]]],[13982,14938,15837,16391,17723,18787,18990,20773]]],["aloud",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18787]]],["mouth",[1,1,[[18,1,1,0,1,[[626,1,1,0,1]]]],[16391]]],["neck",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20773]]],["necks",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17723]]],["throat",[4,4,[[18,3,3,0,3,[[482,1,1,0,1],[546,1,1,1,2],[592,1,1,2,3]]],[23,1,1,3,4,[[746,1,1,3,4]]]],[13982,14938,15837,18990]]]]},{"k":"H1628","v":[["habitation",[1,1,[[23,1,1,0,1,[[785,1,1,0,1]]]],[19974]]]]},{"k":"H1629","v":[["off",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14353]]]]},{"k":"H1630","v":[["Gerizim",[4,4,[[4,2,2,0,2,[[163,1,1,0,1],[179,1,1,1,2]]],[5,1,1,2,3,[[194,1,1,2,3]]],[6,1,1,3,4,[[219,1,1,3,4]]]],[5237,5597,6035,6761]]]]},{"k":"H1631","v":[["axe",[4,4,[[4,2,2,0,2,[[171,1,1,0,1],[172,1,1,1,2]]],[10,1,1,2,3,[[296,1,1,2,3]]],[22,1,1,3,4,[[688,1,1,3,4]]]],[5411,5446,8903,17865]]]]},{"k":"H1632","v":[]},{"k":"H1633","v":[["*",[3,3,[[3,1,1,0,1,[[140,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]],[35,1,1,2,3,[[908,1,1,2,3]]]],[4454,21041,22823]]],["+",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22823]]],["break",[2,2,[[3,1,1,0,1,[[140,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[4454,21041]]]]},{"k":"H1634","v":[["*",[5,5,[[0,1,1,0,1,[[48,1,1,0,1]]],[11,1,1,1,2,[[321,1,1,1,2]]],[17,1,1,2,3,[[475,1,1,2,3]]],[19,2,2,3,5,[[644,1,1,3,4],[652,1,1,4,5]]]],[1487,9769,13882,16895,17128]]],["bone",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17128]]],["bones",[2,2,[[17,1,1,0,1,[[475,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]]],[13882,16895]]],["strong",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1487]]],["top",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9769]]]]},{"k":"H1635","v":[["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21929]]]]},{"k":"H1636","v":[["Garmite",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10404]]]]},{"k":"H1637","v":[["*",[36,36,[[0,2,2,0,2,[[49,2,2,0,2]]],[3,3,3,2,5,[[131,1,1,2,3],[134,2,2,3,5]]],[4,2,2,5,7,[[167,1,1,5,6],[168,1,1,6,7]]],[6,1,1,7,8,[[216,1,1,7,8]]],[7,4,4,8,12,[[234,4,4,8,12]]],[8,1,1,12,13,[[258,1,1,12,13]]],[9,5,5,13,18,[[272,1,1,13,14],[290,4,4,14,18]]],[10,1,1,18,19,[[312,1,1,18,19]]],[11,1,1,19,20,[[318,1,1,19,20]]],[12,6,6,20,26,[[350,1,1,20,21],[358,5,5,21,26]]],[13,2,2,26,28,[[369,1,1,26,27],[384,1,1,27,28]]],[17,1,1,28,29,[[474,1,1,28,29]]],[22,1,1,29,30,[[699,1,1,29,30]]],[23,1,1,30,31,[[795,1,1,30,31]]],[27,3,3,31,34,[[870,2,2,31,33],[874,1,1,33,34]]],[28,1,1,34,35,[[877,1,1,34,35]]],[32,1,1,35,36,[[896,1,1,35,36]]]],[1516,1517,4173,4284,4287,5333,5355,6691,7174,7175,7178,7186,7811,8163,8708,8710,8713,8716,9490,9701,10769,10949,10952,10955,10956,10962,11230,11551,13846,18045,20245,22209,22210,22269,22335,22632]]],["+",[4,4,[[4,2,2,0,2,[[167,1,1,0,1],[168,1,1,1,2]]],[27,2,2,2,4,[[870,1,1,2,3],[874,1,1,3,4]]]],[5333,5355,22209,22269]]],["barn",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13846]]],["barnfloor",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9701]]],["floor",[8,8,[[0,1,1,0,1,[[49,1,1,0,1]]],[6,1,1,1,2,[[216,1,1,1,2]]],[7,3,3,2,5,[[234,3,3,2,5]]],[22,1,1,5,6,[[699,1,1,5,6]]],[27,1,1,6,7,[[870,1,1,6,7]]],[32,1,1,7,8,[[896,1,1,7,8]]]],[1517,6691,7175,7178,7186,18045,22210,22632]]],["floors",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22335]]],["place",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[9490,11551]]],["threshingfloor",[17,17,[[0,1,1,0,1,[[49,1,1,0,1]]],[3,3,3,1,4,[[131,1,1,1,2],[134,2,2,2,4]]],[7,1,1,4,5,[[234,1,1,4,5]]],[9,4,4,5,9,[[272,1,1,5,6],[290,3,3,6,9]]],[12,6,6,9,15,[[350,1,1,9,10],[358,5,5,10,15]]],[13,1,1,15,16,[[369,1,1,15,16]]],[23,1,1,16,17,[[795,1,1,16,17]]]],[1516,4173,4284,4287,7174,8163,8710,8713,8716,10769,10949,10952,10955,10956,10962,11230,20245]]],["threshingfloors",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7811]]],["threshingplace",[1,1,[[9,1,1,0,1,[[290,1,1,0,1]]]],[8708]]]]},{"k":"H1638","v":[["*",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]]],[15918,20370]]],["breaketh",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15918]]],["broken",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20370]]]]},{"k":"H1639","v":[["*",[22,21,[[1,4,4,0,4,[[54,3,3,0,3],[70,1,1,3,4]]],[2,1,1,4,5,[[116,1,1,4,5]]],[3,5,4,5,9,[[125,1,1,5,6],[143,1,1,6,7],[152,3,2,7,9]]],[4,2,2,9,11,[[156,1,1,9,10],[164,1,1,10,11]]],[17,4,4,11,15,[[450,2,2,11,13],[471,2,2,13,15]]],[20,1,1,15,16,[[661,1,1,15,16]]],[22,1,1,16,17,[[693,1,1,16,17]]],[23,2,2,17,19,[[770,1,1,17,18],[792,1,1,18,19]]],[25,2,2,19,21,[[806,1,1,19,20],[817,1,1,20,21]]]],[1640,1643,1651,2087,3588,3972,4558,4882,4883,5006,5272,13207,13211,13743,13763,17373,17962,19574,20117,20557,20789]]],["abated",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3588]]],["away",[2,2,[[3,2,2,0,2,[[143,1,1,0,1],[152,1,1,1,2]]]],[4558,4883]]],["back",[1,1,[[3,1,1,0,1,[[125,1,1,0,1]]]],[3972]]],["clipped",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20117]]],["diminish",[6,6,[[1,2,2,0,2,[[54,1,1,0,1],[70,1,1,1,2]]],[4,2,2,2,4,[[156,1,1,2,3],[164,1,1,3,4]]],[23,1,1,4,5,[[770,1,1,4,5]]],[25,1,1,5,6,[[806,1,1,5,6]]]],[1640,2087,5006,5272,19574,20557]]],["diminished",[2,2,[[1,1,1,0,1,[[54,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[1643,20789]]],["minish",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1651]]],["off",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17962]]],["restrain",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13211]]],["restrainest",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13207]]],["small",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13763]]],["taken",[3,2,[[3,2,1,0,1,[[152,2,1,0,1]]],[20,1,1,1,2,[[661,1,1,1,2]]]],[4882,17373]]],["withdraweth",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13743]]]]},{"k":"H1640","v":[["away",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6644]]]]},{"k":"H1641","v":[["*",[5,5,[[2,1,1,0,1,[[100,1,1,0,1]]],[10,1,1,1,2,[[297,1,1,1,2]]],[19,1,1,2,3,[[648,1,1,2,3]]],[23,1,1,3,4,[[774,1,1,3,4]]],[34,1,1,4,5,[[903,1,1,4,5]]]],[3004,8943,16991,19690,22746]]],["catch",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22746]]],["cheweth",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3004]]],["continuing",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19690]]],["destroy",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16991]]],["sawed",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8943]]]]},{"k":"H1642","v":[["*",[10,10,[[0,8,8,0,8,[[9,1,1,0,1],[19,2,2,1,3],[25,5,5,3,8]]],[13,2,2,8,10,[[380,2,2,8,10]]]],[253,496,497,693,698,709,712,718,11488,11489]]],["+",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[718]]],["Gerar",[9,9,[[0,7,7,0,7,[[9,1,1,0,1],[19,2,2,1,3],[25,4,4,3,7]]],[13,2,2,7,9,[[380,2,2,7,9]]]],[253,496,497,693,698,709,712,11488,11489]]]]},{"k":"H1643","v":[["*",[2,2,[[2,2,2,0,2,[[91,2,2,0,2]]]],[2776,2778]]],["+",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2778]]],["beaten",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2776]]]]},{"k":"H1644","v":[["*",[47,45,[[0,3,3,0,3,[[2,1,1,0,1],[3,1,1,1,2],[20,1,1,2,3]]],[1,12,11,3,14,[[51,1,1,3,4],[55,1,1,4,5],[59,1,1,5,6],[60,2,1,6,7],[61,1,1,7,8],[72,4,4,8,12],[82,1,1,12,13],[83,1,1,13,14]]],[2,3,3,14,17,[[110,2,2,14,16],[111,1,1,16,17]]],[3,3,3,17,20,[[138,2,2,17,19],[146,1,1,19,20]]],[4,1,1,20,21,[[185,1,1,20,21]]],[5,2,2,21,23,[[210,2,2,21,23]]],[6,5,5,23,28,[[212,1,1,23,24],[216,1,1,24,25],[219,1,1,25,26],[221,2,2,26,28]]],[8,1,1,28,29,[[261,1,1,28,29]]],[10,1,1,29,30,[[292,1,1,29,30]]],[12,1,1,30,31,[[354,1,1,30,31]]],[13,1,1,31,32,[[386,1,1,31,32]]],[17,1,1,32,33,[[465,1,1,32,33]]],[18,2,2,33,35,[[555,1,1,33,34],[557,1,1,34,35]]],[19,1,1,35,36,[[649,1,1,35,36]]],[22,2,1,36,37,[[735,2,1,36,37]]],[25,3,3,37,40,[[832,1,1,37,38],[837,1,1,38,39],[845,1,1,39,40]]],[27,1,1,40,41,[[870,1,1,40,41]]],[29,1,1,41,42,[[886,1,1,41,42]]],[31,1,1,42,43,[[890,1,1,42,43]]],[32,1,1,43,44,[[894,1,1,43,44]]],[35,1,1,44,45,[[907,1,1,44,45]]]],[79,93,523,1571,1656,1788,1807,1855,2172,2173,2174,2175,2475,2507,3352,3359,3382,4381,4386,4657,5837,6488,6494,6548,6663,6795,6831,6836,7924,8797,10884,11598,13562,15168,15206,17025,18785,21241,21364,21621,22223,22489,22552,22604,22809]]],["+",[12,11,[[0,2,2,0,2,[[2,1,1,0,1],[3,1,1,1,2]]],[1,4,3,2,5,[[60,2,1,2,3],[72,1,1,3,4],[82,1,1,4,5]]],[5,1,1,5,6,[[210,1,1,5,6]]],[6,4,4,6,10,[[212,1,1,6,7],[216,1,1,7,8],[219,1,1,8,9],[221,1,1,9,10]]],[10,1,1,10,11,[[292,1,1,10,11]]]],[79,93,1807,2172,2475,6488,6548,6663,6795,6831,8797]]],["away",[3,3,[[1,1,1,0,1,[[51,1,1,0,1]]],[2,1,1,1,2,[[110,1,1,1,2]]],[25,1,1,2,3,[[845,1,1,2,3]]]],[1571,3352,21621]]],["divorced",[2,2,[[2,1,1,0,1,[[111,1,1,0,1]]],[3,1,1,1,2,[[146,1,1,1,2]]]],[3382,4657]]],["expel",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6836]]],["forth",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13562]]],["out",[25,25,[[0,1,1,0,1,[[20,1,1,0,1]]],[1,7,7,1,8,[[55,1,1,1,2],[59,1,1,2,3],[61,1,1,3,4],[72,3,3,4,7],[83,1,1,7,8]]],[3,2,2,8,10,[[138,2,2,8,10]]],[4,1,1,10,11,[[185,1,1,10,11]]],[5,1,1,11,12,[[210,1,1,11,12]]],[8,1,1,12,13,[[261,1,1,12,13]]],[12,1,1,13,14,[[354,1,1,13,14]]],[13,1,1,14,15,[[386,1,1,14,15]]],[18,2,2,15,17,[[555,1,1,15,16],[557,1,1,16,17]]],[19,1,1,17,18,[[649,1,1,17,18]]],[25,2,2,18,20,[[832,1,1,18,19],[837,1,1,19,20]]],[27,1,1,20,21,[[870,1,1,20,21]]],[29,1,1,21,22,[[886,1,1,21,22]]],[31,1,1,22,23,[[890,1,1,22,23]]],[32,1,1,23,24,[[894,1,1,23,24]]],[35,1,1,24,25,[[907,1,1,24,25]]]],[523,1656,1788,1855,2173,2174,2175,2507,4381,4386,5837,6494,7924,10884,11598,15168,15206,17025,21241,21364,22223,22489,22552,22604,22809]]],["troubled",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18785]]],["up",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18785]]],["woman",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3359]]]]},{"k":"H1645","v":[["forth",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5824]]]]},{"k":"H1646","v":[["exactions",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21639]]]]},{"k":"H1647","v":[["Gershon",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3717]]]]},{"k":"H1648","v":[["*",[30,30,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,4,4,1,5,[[51,1,1,1,2],[55,2,2,2,4],[67,1,1,4,5]]],[3,9,9,5,14,[[119,3,3,5,8],[120,3,3,8,11],[123,1,1,11,12],[126,1,1,12,13],[142,1,1,13,14]]],[5,2,2,14,16,[[207,2,2,14,16]]],[6,1,1,16,17,[[228,1,1,16,17]]],[12,12,12,17,29,[[343,7,7,17,24],[352,1,1,24,25],[360,3,3,25,28],[363,1,1,28,29]]],[14,1,1,29,30,[[410,1,1,29,30]]]],[1397,1576,1671,1672,2002,3709,3710,3713,3765,3781,3784,3857,4005,4546,6387,6408,7023,10455,10470,10471,10474,10497,10516,10525,10798,10989,10998,10999,11101,12203]]],["Gershom",[14,14,[[1,2,2,0,2,[[51,1,1,0,1],[67,1,1,1,2]]],[6,1,1,2,3,[[228,1,1,2,3]]],[12,10,10,3,13,[[343,6,6,3,9],[352,1,1,9,10],[360,2,2,10,12],[363,1,1,12,13]]],[14,1,1,13,14,[[410,1,1,13,14]]]],[1576,2002,7023,10470,10471,10474,10497,10516,10525,10798,10998,10999,11101,12203]]],["Gershon",[16,16,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,2,2,1,3,[[55,2,2,1,3]]],[3,9,9,3,12,[[119,3,3,3,6],[120,3,3,6,9],[123,1,1,9,10],[126,1,1,10,11],[142,1,1,11,12]]],[5,2,2,12,14,[[207,2,2,12,14]]],[12,2,2,14,16,[[343,1,1,14,15],[360,1,1,15,16]]]],[1397,1671,1672,3709,3710,3713,3765,3781,3784,3857,4005,4546,6387,6408,10455,10989]]]]},{"k":"H1649","v":[["*",[13,12,[[3,7,7,0,7,[[119,3,3,0,3],[120,3,3,3,6],[142,1,1,6,7]]],[5,1,1,7,8,[[207,1,1,7,8]]],[12,4,3,8,11,[[360,1,1,8,9],[363,2,1,9,10],[366,1,1,10,11]]],[13,1,1,11,12,[[395,1,1,11,12]]]],[3713,3715,3716,3767,3770,3771,4546,6414,10990,11098,11172,11803]]],["Gershon",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3771]]],["Gershonite",[3,2,[[12,3,2,0,2,[[363,2,1,0,1],[366,1,1,1,2]]]],[11098,11172]]],["Gershonites",[9,9,[[3,6,6,0,6,[[119,3,3,0,3],[120,2,2,3,5],[142,1,1,5,6]]],[5,1,1,6,7,[[207,1,1,6,7]]],[12,1,1,7,8,[[360,1,1,7,8]]],[13,1,1,8,9,[[395,1,1,8,9]]]],[3713,3715,3716,3767,3770,4546,6414,10990,11803]]]]},{"k":"H1650","v":[["*",[9,9,[[5,1,1,0,1,[[199,1,1,0,1]]],[9,6,6,1,7,[[269,1,1,1,2],[279,2,2,2,4],[280,2,2,4,6],[281,1,1,6,7]]],[12,2,2,7,9,[[339,1,1,7,8],[340,1,1,8,9]]]],[6167,8084,8354,8355,8379,8388,8397,10329,10363]]],["+",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8388]]],["Geshur",[7,7,[[9,5,5,0,5,[[269,1,1,0,1],[279,2,2,1,3],[280,1,1,3,4],[281,1,1,4,5]]],[12,2,2,5,7,[[339,1,1,5,6],[340,1,1,6,7]]]],[8084,8354,8355,8379,8397,10329,10363]]],["Geshurites",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6167]]]]},{"k":"H1651","v":[["*",[6,6,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,4,4,1,5,[[198,1,1,1,2],[199,3,3,2,5]]],[8,1,1,5,6,[[262,1,1,5,6]]]],[4989,6135,6156,6165,6167,7938]]],["Geshuri",[2,2,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]]],[4989,6156]]],["Geshurites",[4,4,[[5,3,3,0,3,[[198,1,1,0,1],[199,2,2,1,3]]],[8,1,1,3,4,[[262,1,1,3,4]]]],[6135,6165,6167,7938]]]]},{"k":"H1652","v":[["rain",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19315]]]]},{"k":"H1653","v":[["*",[35,33,[[0,2,2,0,2,[[6,1,1,0,1],[7,1,1,1,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[10,5,5,3,8,[[307,2,2,3,5],[308,3,3,5,8]]],[11,1,1,8,9,[[315,1,1,8,9]]],[14,2,2,9,11,[[412,2,2,9,11]]],[17,2,1,11,12,[[472,2,1,11,12]]],[18,2,2,12,14,[[545,1,1,12,13],[582,1,1,13,14]]],[19,2,2,14,16,[[652,2,2,14,16]]],[20,2,2,16,18,[[669,1,1,16,17],[670,1,1,17,18]]],[21,1,1,18,19,[[672,1,1,18,19]]],[22,2,2,19,21,[[722,1,1,19,20],[733,1,1,20,21]]],[23,2,2,21,23,[[749,1,1,21,22],[758,1,1,22,23]]],[25,6,5,23,28,[[802,1,1,23,24],[814,2,2,24,26],[835,2,1,26,27],[839,1,1,27,28]]],[27,1,1,28,29,[[867,1,1,28,29]]],[28,1,1,29,30,[[877,1,1,29,30]]],[29,1,1,30,31,[[882,1,1,30,31]]],[37,2,2,31,33,[[920,1,1,31,32],[924,1,1,32,33]]]],[171,185,3528,9324,9331,9382,9385,9386,9593,12261,12265,13775,14909,15638,17127,17136,17516,17525,17565,18547,18750,19082,19297,20492,20719,20721,21339,21447,22170,22334,22417,23017,23085]]],["+",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12261]]],["rain",[29,28,[[0,2,2,0,2,[[6,1,1,0,1],[7,1,1,1,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[10,5,5,3,8,[[307,2,2,3,5],[308,3,3,5,8]]],[11,1,1,8,9,[[315,1,1,8,9]]],[14,1,1,9,10,[[412,1,1,9,10]]],[17,2,1,10,11,[[472,2,1,10,11]]],[18,2,2,11,13,[[545,1,1,11,12],[582,1,1,12,13]]],[19,2,2,13,15,[[652,2,2,13,15]]],[20,2,2,15,17,[[669,1,1,15,16],[670,1,1,16,17]]],[21,1,1,17,18,[[672,1,1,17,18]]],[22,2,2,18,20,[[722,1,1,18,19],[733,1,1,19,20]]],[23,2,2,20,22,[[749,1,1,20,21],[758,1,1,21,22]]],[25,2,2,22,24,[[802,1,1,22,23],[839,1,1,23,24]]],[27,1,1,24,25,[[867,1,1,24,25]]],[28,1,1,25,26,[[877,1,1,25,26]]],[29,1,1,26,27,[[882,1,1,26,27]]],[37,1,1,27,28,[[924,1,1,27,28]]]],[171,185,3528,9324,9331,9382,9385,9386,9593,12265,13775,14909,15638,17127,17136,17516,17525,17565,18547,18750,19082,19297,20492,21447,22170,22334,22417,23085]]],["shower",[3,3,[[25,3,3,0,3,[[814,2,2,0,2],[835,1,1,2,3]]]],[20719,20721,21339]]],["showers",[2,2,[[25,1,1,0,1,[[835,1,1,0,1]]],[37,1,1,1,2,[[920,1,1,1,2]]]],[21339,23017]]]]},{"k":"H1654","v":[["*",[4,4,[[15,4,4,0,4,[[414,1,1,0,1],[418,3,3,1,4]]]],[12326,12402,12403,12407]]],["Gashmu",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12407]]],["Geshem",[3,3,[[15,3,3,0,3,[[414,1,1,0,1],[418,2,2,1,3]]]],[12326,12402,12403]]]]},{"k":"H1655","v":[["*",[5,5,[[26,5,5,0,5,[[852,2,2,0,2],[853,1,1,2,3],[854,1,1,3,4],[856,1,1,4,5]]]],[21834,21835,21870,21895,21944]]],["bodies",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21834,21835]]],["body",[3,3,[[26,3,3,0,3,[[853,1,1,0,1],[854,1,1,1,2],[856,1,1,2,3]]]],[21870,21895,21944]]]]},{"k":"H1656","v":[["upon",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[21000]]]]},{"k":"H1657","v":[["Goshen",[15,14,[[0,10,9,0,9,[[44,1,1,0,1],[45,4,3,1,4],[46,4,4,4,8],[49,1,1,8,9]]],[1,2,2,9,11,[[57,1,1,9,10],[58,1,1,10,11]]],[5,3,3,11,14,[[196,1,1,11,12],[197,1,1,12,13],[201,1,1,13,14]]]],[1368,1414,1415,1420,1421,1424,1426,1447,1514,1732,1768,6105,6123,6253]]]]},{"k":"H1658","v":[["Gispa",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12609]]]]},{"k":"H1659","v":[["grope",[2,1,[[22,2,1,0,1,[[737,2,1,0,1]]]],[18810]]]]},{"k":"H1660","v":[["*",[5,5,[[6,1,1,0,1,[[216,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]],[22,1,1,2,3,[[741,1,1,2,3]]],[24,1,1,3,4,[[797,1,1,3,4]]],[28,1,1,4,5,[[878,1,1,4,5]]]],[6665,12686,18868,20325,22356]]],["press",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22356]]],["presses",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12686]]],["winefat",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18868]]],["winepress",[2,2,[[6,1,1,0,1,[[216,1,1,0,1]]],[24,1,1,1,2,[[797,1,1,1,2]]]],[6665,20325]]]]},{"k":"H1661","v":[["*",[32,30,[[5,1,1,0,1,[[197,1,1,0,1]]],[8,12,12,1,13,[[240,1,1,1,2],[241,1,1,2,3],[242,1,1,3,4],[252,3,3,4,7],[256,2,2,7,9],[262,4,4,9,13]]],[9,4,4,13,17,[[267,1,1,13,14],[281,1,1,14,15],[287,2,2,15,17]]],[10,5,3,17,20,[[292,5,3,17,20]]],[11,1,1,20,21,[[324,1,1,20,21]]],[12,5,5,21,26,[[344,1,1,21,22],[345,1,1,22,23],[355,1,1,23,24],[357,2,2,24,26]]],[13,2,2,26,28,[[377,1,1,26,27],[392,1,1,27,28]]],[29,1,1,28,29,[[884,1,1,28,29]]],[32,1,1,29,30,[[893,1,1,29,30]]]],[6129,7327,7348,7366,7622,7641,7670,7782,7784,7932,7933,7934,7941,8042,8407,8600,8602,8809,8810,8811,9867,10556,10588,10891,10932,10934,11422,11738,22452,22589]]],["+",[4,4,[[8,2,2,0,2,[[252,2,2,0,2]]],[9,1,1,2,3,[[281,1,1,2,3]]],[10,1,1,3,4,[[292,1,1,3,4]]]],[7622,7641,8407,8810]]],["Gath",[28,27,[[5,1,1,0,1,[[197,1,1,0,1]]],[8,10,10,1,11,[[240,1,1,1,2],[241,1,1,2,3],[242,1,1,3,4],[252,1,1,4,5],[256,2,2,5,7],[262,4,4,7,11]]],[9,3,3,11,14,[[267,1,1,11,12],[287,2,2,12,14]]],[10,4,3,14,17,[[292,4,3,14,17]]],[11,1,1,17,18,[[324,1,1,17,18]]],[12,5,5,18,23,[[344,1,1,18,19],[345,1,1,19,20],[355,1,1,20,21],[357,2,2,21,23]]],[13,2,2,23,25,[[377,1,1,23,24],[392,1,1,24,25]]],[29,1,1,25,26,[[884,1,1,25,26]]],[32,1,1,26,27,[[893,1,1,26,27]]]],[6129,7327,7348,7366,7670,7782,7784,7932,7933,7934,7941,8042,8600,8602,8809,8810,8811,9867,10556,10588,10891,10932,10934,11422,11738,22452,22589]]]]},{"k":"H1662","v":[["*",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[11,1,1,1,2,[[326,1,1,1,2]]]],[6334,9921]]],["+",[1,1,[[11,1,1,0,1,[[326,1,1,0,1]]]],[9921]]],["Gittahhepher",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6334]]]]},{"k":"H1663","v":[["*",[10,10,[[5,1,1,0,1,[[199,1,1,0,1]]],[9,7,7,1,8,[[272,2,2,1,3],[281,3,3,3,6],[284,1,1,6,7],[287,1,1,7,8]]],[12,2,2,8,10,[[350,1,1,8,9],[357,1,1,9,10]]]],[6157,8167,8168,8407,8408,8411,8480,8599,10773,10931]]],["Gittite",[8,8,[[9,6,6,0,6,[[272,2,2,0,2],[281,2,2,2,4],[284,1,1,4,5],[287,1,1,5,6]]],[12,2,2,6,8,[[350,1,1,6,7],[357,1,1,7,8]]]],[8167,8168,8408,8411,8480,8599,10773,10931]]],["Gittites",[2,2,[[5,1,1,0,1,[[199,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]]],[6157,8407]]]]},{"k":"H1664","v":[["Gittaim",[2,2,[[9,1,1,0,1,[[270,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[8123,12621]]]]},{"k":"H1665","v":[]},{"k":"H1666","v":[["Gether",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[257,10269]]]]},{"k":"H1667","v":[["Gathrimmon",[4,4,[[5,3,3,0,3,[[205,1,1,0,1],[207,2,2,1,3]]],[12,1,1,3,4,[[343,1,1,3,4]]]],[6366,6405,6406,10523]]]]},{"k":"H1668","v":[["*",[6,4,[[26,6,4,0,4,[[853,1,1,0,1],[854,2,1,1,2],[856,3,2,2,4]]]],[21867,21880,21936,21941]]],["+",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21936]]],["another",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21880]]],["one",[2,2,[[26,2,2,0,2,[[854,1,1,0,1],[856,1,1,1,2]]]],[21880,21936]]],["this",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[856,1,1,1,2]]]],[21867,21941]]]]},{"k":"H1669","v":[["*",[3,3,[[18,1,1,0,1,[[565,1,1,0,1]]],[23,2,2,1,3,[[775,2,2,1,3]]]],[15317,19703,19716]]],["mourneth",[1,1,[[18,1,1,0,1,[[565,1,1,0,1]]]],[15317]]],["sorrow",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19703]]],["sorrowful",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19716]]]]},{"k":"H1670","v":[["sorrow",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13910]]]]},{"k":"H1671","v":[["sorrow",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5676]]]]},{"k":"H1672","v":[["*",[7,7,[[8,2,2,0,2,[[244,1,1,0,1],[245,1,1,1,2]]],[18,1,1,2,3,[[515,1,1,2,3]]],[22,1,1,3,4,[[735,1,1,3,4]]],[23,3,3,4,7,[[761,1,1,4,5],[782,1,1,5,6],[786,1,1,6,7]]]],[7396,7420,14508,18776,19365,19914,19991]]],["+",[2,2,[[23,2,2,0,2,[[782,1,1,0,1],[786,1,1,1,2]]]],[19914,19991]]],["afraid",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18776]]],["careful",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19365]]],["sorroweth",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7420]]],["sorry",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14508]]],["thought",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7396]]]]},{"k":"H1673","v":[["Doeg",[5,4,[[8,5,4,0,4,[[256,1,1,0,1],[257,4,3,1,4]]]],[7779,7796,7805,7809]]]]},{"k":"H1674","v":[["*",[6,6,[[5,1,1,0,1,[[208,1,1,0,1]]],[19,1,1,1,2,[[639,1,1,1,2]]],[23,1,1,2,3,[[793,1,1,2,3]]],[25,3,3,3,6,[[805,1,1,3,4],[813,2,2,4,6]]]],[6450,16744,20150,20545,20698,20699]]],["+",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6450]]],["Heaviness",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16744]]],["care",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20545]]],["carefulness",[2,2,[[25,2,2,0,2,[[813,2,2,0,2]]]],[20698,20699]]],["sorrow",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20150]]]]},{"k":"H1675","v":[["*",[4,4,[[4,1,1,0,1,[[180,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]],[23,2,2,2,4,[[792,1,1,2,3],[793,1,1,3,4]]]],[5660,14128,20120,20149]]],["flieth",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5660]]],["fly",[3,3,[[18,1,1,0,1,[[495,1,1,0,1]]],[23,2,2,1,3,[[792,1,1,1,2],[793,1,1,2,3]]]],[14128,20120,20149]]]]},{"k":"H1676","v":[["vulture",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3011]]]]},{"k":"H1677","v":[["*",[12,12,[[8,3,3,0,3,[[252,3,3,0,3]]],[9,1,1,3,4,[[283,1,1,3,4]]],[11,1,1,4,5,[[314,1,1,4,5]]],[19,2,2,5,7,[[644,1,1,5,6],[655,1,1,6,7]]],[22,2,2,7,9,[[689,1,1,7,8],[737,1,1,8,9]]],[24,1,1,9,10,[[799,1,1,9,10]]],[27,1,1,10,11,[[874,1,1,10,11]]],[29,1,1,11,12,[[883,1,1,11,12]]]],[7652,7654,7655,8457,9575,16885,17211,17891,18811,20364,22274,22442]]],["bear",[10,10,[[8,3,3,0,3,[[252,3,3,0,3]]],[9,1,1,3,4,[[283,1,1,3,4]]],[19,2,2,4,6,[[644,1,1,4,5],[655,1,1,5,6]]],[22,1,1,6,7,[[689,1,1,6,7]]],[24,1,1,7,8,[[799,1,1,7,8]]],[27,1,1,8,9,[[874,1,1,8,9]]],[29,1,1,9,10,[[883,1,1,9,10]]]],[7652,7654,7655,8457,16885,17211,17891,20364,22274,22442]]],["bears",[2,2,[[11,1,1,0,1,[[314,1,1,0,1]]],[22,1,1,1,2,[[737,1,1,1,2]]]],[9575,18811]]]]},{"k":"H1678","v":[["bear",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21938]]]]},{"k":"H1679","v":[["strength",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5835]]]]},{"k":"H1680","v":[["speak",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17636]]]]},{"k":"H1681","v":[["*",[9,9,[[0,1,1,0,1,[[36,1,1,0,1]]],[3,3,3,1,4,[[129,1,1,1,2],[130,2,2,2,4]]],[18,1,1,4,5,[[508,1,1,4,5]]],[19,2,2,5,7,[[637,1,1,5,6],[652,1,1,6,7]]],[23,1,1,7,8,[[764,1,1,7,8]]],[25,1,1,8,9,[[837,1,1,8,9]]]],[1085,4107,4144,4145,14344,16674,17123,19432,21362]]],["defaming",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19432]]],["infamy",[2,2,[[19,1,1,0,1,[[652,1,1,0,1]]],[25,1,1,1,2,[[837,1,1,1,2]]]],[17123,21362]]],["report",[3,3,[[0,1,1,0,1,[[36,1,1,0,1]]],[3,2,2,1,3,[[129,1,1,1,2],[130,1,1,2,3]]]],[1085,4107,4145]]],["slander",[3,3,[[3,1,1,0,1,[[130,1,1,0,1]]],[18,1,1,1,2,[[508,1,1,1,2]]],[19,1,1,2,3,[[637,1,1,2,3]]]],[4144,14344,16674]]]]},{"k":"H1682","v":[["*",[4,4,[[4,1,1,0,1,[[153,1,1,0,1]]],[6,1,1,1,2,[[224,1,1,1,2]]],[18,1,1,2,3,[[595,1,1,2,3]]],[22,1,1,3,4,[[685,1,1,3,4]]]],[4936,6917,15881,17800]]],["bee",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17800]]],["bees",[3,3,[[4,1,1,0,1,[[153,1,1,0,1]]],[6,1,1,1,2,[[224,1,1,1,2]]],[18,1,1,2,3,[[595,1,1,2,3]]]],[4936,6917,15881]]]]},{"k":"H1683","v":[["Deborah",[10,10,[[0,1,1,0,1,[[34,1,1,0,1]]],[6,9,9,1,10,[[214,5,5,1,6],[215,4,4,6,10]]]],[1019,6603,6604,6608,6609,6613,6624,6630,6635,6638]]]]},{"k":"H1684","v":[["offered",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12154]]]]},{"k":"H1685","v":[["sacrifices",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12154]]]]},{"k":"H1686","v":[]},{"k":"H1687","v":[["oracle",[16,16,[[10,11,11,0,11,[[296,8,8,0,8],[297,1,1,8,9],[298,2,2,9,11]]],[13,4,4,11,15,[[369,1,1,11,12],[370,1,1,12,13],[371,2,2,13,15]]],[18,1,1,15,16,[[505,1,1,15,16]]]],[8901,8912,8915,8916,8917,8918,8919,8927,8983,8991,8993,11245,11266,11275,11277,14301]]]]},{"k":"H1688","v":[["Debir",[14,12,[[5,11,10,0,10,[[196,3,3,0,3],[197,1,1,3,4],[198,1,1,4,5],[199,1,1,5,6],[201,4,3,6,9],[207,1,1,9,10]]],[6,2,1,10,11,[[211,2,1,10,11]]],[12,1,1,11,12,[[343,1,1,11,12]]]],[6067,6102,6103,6128,6143,6180,6209,6217,6251,6396,6520,10512]]]]},{"k":"H1689","v":[["Diblath",[1,1,[[25,1,1,0,1,[[807,1,1,0,1]]]],[20577]]]]},{"k":"H1690","v":[["*",[5,5,[[8,2,2,0,2,[[260,1,1,0,1],[265,1,1,1,2]]],[11,1,1,2,3,[[332,1,1,2,3]]],[12,1,1,3,4,[[349,1,1,3,4]]],[22,1,1,4,5,[[716,1,1,4,5]]]],[7879,7990,10105,10760,18411]]],["figs",[3,3,[[8,2,2,0,2,[[260,1,1,0,1],[265,1,1,1,2]]],[12,1,1,2,3,[[349,1,1,2,3]]]],[7879,7990,10760]]],["lump",[2,2,[[11,1,1,0,1,[[332,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]]],[10105,18411]]]]},{"k":"H1691","v":[["Diblaim",[1,1,[[27,1,1,0,1,[[862,1,1,0,1]]]],[22097]]]]},{"k":"H1692","v":[["*",[54,52,[[0,4,4,0,4,[[1,1,1,0,1],[18,1,1,1,2],[30,1,1,2,3],[33,1,1,3,4]]],[3,2,2,4,6,[[152,2,2,4,6]]],[4,7,7,6,13,[[162,1,1,6,7],[163,1,1,7,8],[165,2,2,8,10],[180,2,2,10,12],[182,1,1,12,13]]],[5,3,3,13,16,[[208,1,1,13,14],[209,2,2,14,16]]],[6,3,3,16,19,[[228,1,1,16,17],[230,2,2,17,19]]],[7,4,4,19,23,[[232,1,1,19,20],[233,3,3,20,23]]],[8,2,2,23,25,[[249,1,1,23,24],[266,1,1,24,25]]],[9,3,3,25,28,[[267,1,1,25,26],[286,1,1,26,27],[289,1,1,27,28]]],[10,1,1,28,29,[[301,1,1,28,29]]],[11,3,3,29,32,[[315,1,1,29,30],[317,1,1,30,31],[330,1,1,31,32]]],[12,1,1,32,33,[[347,1,1,32,33]]],[17,6,6,33,39,[[454,1,1,33,34],[464,1,1,34,35],[466,1,1,35,36],[473,1,1,36,37],[476,2,2,37,39]]],[18,8,8,39,47,[[499,1,1,39,40],[521,1,1,40,41],[540,1,1,41,42],[578,1,1,42,43],[579,1,1,43,44],[596,2,2,44,46],[614,1,1,46,47]]],[23,3,2,47,49,[[757,2,1,47,48],[786,1,1,48,49]]],[24,1,1,49,50,[[800,1,1,49,50]]],[25,3,2,50,52,[[804,1,1,50,51],[830,2,1,51,52]]]],[54,476,896,983,4886,4888,5206,5230,5276,5289,5632,5671,5728,6431,6468,6472,7015,7096,7099,7141,7157,7170,7172,7530,8011,8028,8556,8663,9110,9579,9674,10030,10661,13317,13542,13595,13831,13905,13911,14219,14596,14847,15516,15526,15923,15929,16228,19277,19991,20424,20528,21187]]],["+",[2,2,[[6,1,1,0,1,[[228,1,1,0,1]]],[8,1,1,1,2,[[266,1,1,1,2]]]],[7015,8011]]],["abide",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7157]]],["clave",[6,6,[[0,1,1,0,1,[[33,1,1,0,1]]],[7,1,1,1,2,[[232,1,1,1,2]]],[9,2,2,2,4,[[286,1,1,2,3],[289,1,1,3,4]]],[10,1,1,4,5,[[301,1,1,4,5]]],[11,1,1,5,6,[[330,1,1,5,6]]]],[983,7141,8556,8663,9110,10030]]],["cleave",[17,17,[[0,1,1,0,1,[[1,1,1,0,1]]],[4,7,7,1,8,[[162,1,1,1,2],[163,1,1,2,3],[165,2,2,3,5],[180,2,2,5,7],[182,1,1,7,8]]],[5,3,3,8,11,[[208,1,1,8,9],[209,2,2,9,11]]],[11,1,1,11,12,[[317,1,1,11,12]]],[18,3,3,12,15,[[578,1,1,12,13],[579,1,1,13,14],[614,1,1,14,15]]],[23,1,1,15,16,[[757,1,1,15,16]]],[25,1,1,16,17,[[804,1,1,16,17]]]],[54,5206,5230,5276,5289,5632,5671,5728,6431,6468,6472,9674,15516,15526,16228,19277,20528]]],["cleaved",[3,3,[[11,1,1,0,1,[[315,1,1,0,1]]],[17,2,2,1,3,[[464,1,1,1,2],[466,1,1,2,3]]]],[9579,13542,13595]]],["cleaveth",[6,6,[[17,1,1,0,1,[[454,1,1,0,1]]],[18,3,3,1,4,[[499,1,1,1,2],[521,1,1,2,3],[596,1,1,3,4]]],[23,1,1,4,5,[[757,1,1,4,5]]],[24,1,1,5,6,[[800,1,1,5,6]]]],[13317,14219,14596,15923,19277,20424]]],["close",[1,1,[[23,1,1,0,1,[[786,1,1,0,1]]]],[19991]]],["fast",[2,2,[[7,2,2,0,2,[[233,2,2,0,2]]]],[7170,7172]]],["hard",[5,5,[[6,1,1,0,1,[[230,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[9,1,1,2,3,[[267,1,1,2,3]]],[12,1,1,3,4,[[347,1,1,3,4]]],[18,1,1,4,5,[[540,1,1,4,5]]]],[7099,7530,8028,10661,14847]]],["joined",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13905]]],["keep",[2,2,[[3,2,2,0,2,[[152,2,2,0,2]]]],[4886,4888]]],["overtook",[2,2,[[0,1,1,0,1,[[30,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]]],[896,7096]]],["stick",[2,1,[[25,2,1,0,1,[[830,2,1,0,1]]]],[21187]]],["stuck",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15929]]],["take",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[476]]],["together",[2,2,[[17,2,2,0,2,[[473,1,1,0,1],[476,1,1,1,2]]]],[13831,13911]]]]},{"k":"H1693","v":[["cleave",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21801]]]]},{"k":"H1694","v":[["*",[3,3,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]],[22,1,1,2,3,[[719,1,1,2,3]]]],[9514,11575,18458]]],["joints",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[9514,11575]]],["sodering",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18458]]]]},{"k":"H1695","v":[["*",[3,3,[[4,1,1,0,1,[[156,1,1,0,1]]],[13,1,1,1,2,[[369,1,1,1,2]]],[19,1,1,2,3,[[645,1,1,2,3]]]],[5008,11241,16925]]],["cleave",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5008]]],["closer",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16925]]],["joining",[1,1,[[13,1,1,0,1,[[369,1,1,0,1]]]],[11241]]]]},{"k":"H1696","v":[["*",[1141,1048,[[0,73,70,0,70,[[7,1,1,0,1],[11,1,1,1,2],[15,1,1,2,3],[16,3,3,3,6],[17,8,8,6,14],[18,2,2,14,16],[19,1,1,16,17],[20,2,2,17,19],[22,4,4,19,23],[23,8,7,23,30],[26,3,3,30,33],[27,1,1,33,34],[28,1,1,34,35],[30,2,2,35,37],[31,1,1,37,38],[33,5,5,38,43],[34,3,3,43,46],[36,1,1,46,47],[38,3,3,47,50],[40,3,3,50,53],[41,4,4,53,57],[42,1,1,57,58],[43,5,5,58,63],[44,4,3,63,66],[48,1,1,66,67],[49,4,3,67,70]]],[1,87,79,70,149,[[50,1,1,70,71],[53,8,6,71,77],[54,1,1,77,78],[55,11,9,78,87],[56,6,5,87,92],[57,2,2,92,94],[58,3,3,94,97],[59,1,1,97,98],[60,1,1,98,99],[61,4,4,99,103],[62,1,1,103,104],[63,4,4,104,108],[65,4,4,108,112],[68,4,4,112,116],[69,4,3,116,119],[72,1,1,119,120],[73,2,2,120,122],[74,3,3,122,125],[77,1,1,125,126],[78,1,1,126,127],[79,4,4,127,131],[80,3,3,131,134],[81,4,4,134,138],[82,5,4,138,142],[83,7,6,142,148],[89,1,1,148,149]]],[2,66,66,149,215,[[90,2,2,149,151],[93,2,2,151,153],[94,1,1,153,154],[95,5,5,154,159],[96,4,4,159,163],[97,1,1,163,164],[98,1,1,164,165],[99,6,6,165,171],[100,2,2,171,173],[101,2,2,173,175],[102,1,1,175,176],[103,2,2,176,178],[104,2,2,178,180],[105,2,2,180,182],[106,2,2,182,184],[107,2,2,184,186],[108,2,2,186,188],[109,1,1,188,189],[110,3,3,189,192],[111,5,5,192,197],[112,10,10,197,207],[113,4,4,207,211],[114,2,2,211,213],[116,2,2,213,215]]],[3,119,111,215,326,[[117,2,2,215,217],[118,1,1,217,218],[119,5,5,218,223],[120,3,3,223,226],[121,6,6,226,232],[122,4,4,232,236],[123,3,1,236,237],[124,4,4,237,241],[125,4,4,241,245],[126,2,2,245,247],[127,3,3,247,250],[128,6,4,250,254],[129,1,1,254,255],[130,5,5,255,260],[131,6,6,260,266],[132,10,10,266,276],[133,3,3,276,279],[134,3,3,279,282],[135,2,2,282,284],[136,2,2,284,286],[137,2,2,286,288],[138,8,6,288,294],[139,8,7,294,301],[140,3,2,301,303],[141,2,2,303,305],[142,2,2,305,307],[143,4,4,307,311],[144,1,1,311,312],[146,1,1,312,313],[147,2,2,313,315],[148,2,2,315,317],[149,2,2,317,319],[150,2,2,319,321],[151,3,3,321,324],[152,2,2,324,326]]],[4,70,63,326,389,[[153,7,7,326,333],[154,2,2,333,335],[155,1,1,335,336],[156,4,4,336,340],[157,11,8,340,348],[158,3,3,348,351],[161,3,3,351,354],[162,2,2,354,356],[163,2,2,356,358],[164,1,1,358,359],[165,2,2,359,361],[167,1,1,361,362],[170,11,7,362,369],[171,1,1,369,370],[172,4,4,370,374],[175,1,1,374,375],[177,1,1,375,376],[178,2,2,376,378],[179,2,2,378,380],[181,1,1,380,381],[183,4,4,381,385],[184,4,4,385,389]]],[5,32,29,389,418,[[187,1,1,389,390],[190,3,3,390,393],[191,1,1,393,394],[195,2,2,394,396],[196,1,1,396,397],[197,1,1,397,398],[199,2,2,398,400],[200,5,3,400,403],[203,1,1,403,404],[206,4,3,404,407],[207,2,2,407,409],[208,4,4,409,413],[209,4,4,413,417],[210,1,1,417,418]]],[6,27,27,418,445,[[211,1,1,418,419],[212,2,2,419,421],[215,1,1,421,422],[216,5,5,422,427],[217,1,1,427,428],[218,2,2,428,430],[219,4,4,430,434],[221,1,1,434,435],[222,1,1,435,436],[223,1,1,436,437],[224,1,1,437,438],[225,1,1,438,439],[226,2,2,439,441],[229,2,2,441,443],[230,1,1,443,444],[231,1,1,444,445]]],[7,3,3,445,448,[[232,1,1,445,446],[233,1,1,446,447],[235,1,1,447,448]]],[8,41,38,448,486,[[236,2,2,448,450],[237,1,1,450,451],[238,5,4,451,455],[239,1,1,455,456],[243,1,1,456,457],[244,3,3,457,460],[245,1,1,460,461],[246,1,1,461,462],[249,1,1,462,463],[250,2,1,463,464],[251,1,1,464,465],[252,4,3,465,468],[253,4,4,468,472],[254,3,3,472,475],[255,2,2,475,477],[259,1,1,477,478],[260,6,6,478,484],[263,2,2,484,486]]],[9,38,32,486,518,[[268,1,1,486,487],[269,3,2,487,489],[273,8,7,489,496],[277,1,1,496,497],[278,1,1,497,498],[279,3,3,498,501],[280,9,7,501,508],[283,2,1,508,509],[285,3,3,509,512],[286,3,2,512,514],[288,1,1,514,515],[289,2,2,515,517],[290,1,1,517,518]]],[10,77,67,518,585,[[291,3,3,518,521],[292,11,11,521,532],[293,1,1,532,533],[294,3,2,533,535],[295,2,2,535,537],[296,1,1,537,538],[298,10,7,538,545],[299,1,1,545,546],[300,1,1,546,547],[302,10,7,547,554],[303,9,9,554,563],[304,4,4,563,567],[305,1,1,567,568],[306,2,2,568,570],[307,1,1,570,571],[310,1,1,571,572],[311,8,6,572,578],[312,8,7,578,585]]],[11,50,43,585,628,[[313,14,11,585,596],[314,2,2,596,598],[316,2,2,598,600],[317,3,2,600,602],[318,2,2,602,604],[319,3,2,604,606],[320,2,2,606,608],[321,1,1,608,609],[322,3,2,609,611],[326,2,2,611,613],[327,1,1,613,614],[329,1,1,614,615],[330,4,3,615,618],[331,1,1,618,619],[332,2,2,619,621],[333,1,1,621,622],[334,2,2,622,624],[336,2,2,624,626],[337,2,2,626,628]]],[12,10,9,628,637,[[354,6,5,628,633],[358,3,3,633,636],[359,1,1,636,637]]],[13,34,29,637,666,[[372,7,5,637,642],[375,1,1,642,643],[376,9,7,643,650],[384,7,6,650,656],[388,1,1,656,657],[389,1,1,657,658],[391,1,1,658,659],[396,1,1,659,660],[398,3,3,660,663],[399,2,2,663,665],[400,1,1,665,666]]],[14,1,1,666,667,[[410,1,1,666,667]]],[15,4,3,667,670,[[418,1,1,667,668],[421,1,1,668,669],[425,2,1,669,670]]],[16,7,6,670,676,[[426,1,1,670,671],[431,3,2,671,673],[432,1,1,673,674],[433,1,1,674,675],[435,1,1,675,676]]],[17,39,35,676,711,[[436,3,3,676,679],[437,3,2,679,681],[442,1,1,681,682],[444,1,1,682,683],[445,1,1,683,684],[446,1,1,684,685],[448,5,4,685,689],[451,2,2,689,691],[453,1,1,691,692],[454,1,1,692,693],[456,2,1,693,694],[462,1,1,694,695],[467,3,3,695,698],[468,4,4,698,702],[469,2,2,702,704],[472,1,1,704,705],[475,1,1,705,706],[476,1,1,706,707],[477,5,4,707,711]]],[18,58,54,711,765,[[479,1,1,711,712],[482,1,1,712,713],[489,3,2,713,715],[492,1,1,715,716],[494,1,1,716,717],[495,1,1,717,718],[505,1,1,718,719],[508,1,1,719,720],[511,1,1,720,721],[512,1,1,721,722],[514,1,1,722,723],[515,1,1,723,724],[516,1,1,724,725],[517,1,1,725,726],[518,2,1,726,727],[524,1,1,727,728],[526,1,1,728,729],[527,3,3,729,732],[528,1,1,732,733],[529,1,1,733,734],[535,2,2,734,736],[537,1,1,736,737],[539,1,1,737,738],[540,1,1,738,739],[543,1,1,739,740],[550,2,1,740,741],[552,1,1,741,742],[554,1,1,742,743],[555,1,1,743,744],[562,2,1,744,745],[564,1,1,745,746],[566,1,1,746,747],[571,1,1,747,748],[576,1,1,748,749],[578,1,1,749,750],[585,1,1,750,751],[586,2,2,751,753],[592,1,1,753,754],[593,1,1,754,755],[596,2,2,755,757],[597,1,1,757,758],[599,1,1,758,759],[604,1,1,759,760],[612,1,1,760,761],[621,2,2,761,763],[622,2,2,763,765]]],[19,10,10,765,775,[[629,1,1,765,766],[635,1,1,766,767],[643,1,1,767,768],[645,1,1,768,769],[648,1,1,769,770],[650,3,3,770,773],[651,1,1,773,774],[652,1,1,774,775]]],[20,5,5,775,780,[[659,2,2,775,777],[660,1,1,777,778],[661,1,1,778,779],[665,1,1,779,780]]],[21,2,2,780,782,[[675,1,1,780,781],[678,1,1,781,782]]],[22,49,46,782,828,[[679,2,2,782,784],[685,1,1,784,785],[686,2,2,785,787],[687,1,1,787,788],[694,2,2,788,790],[697,1,1,790,791],[698,1,1,791,792],[699,1,1,792,793],[700,1,1,793,794],[702,1,1,794,795],[703,1,1,795,796],[706,1,1,796,797],[707,1,1,797,798],[708,1,1,798,799],[710,4,3,799,802],[711,1,1,802,803],[714,3,2,803,805],[715,1,1,805,806],[716,2,2,806,808],[717,1,1,808,809],[718,3,3,809,812],[719,1,1,812,813],[723,2,1,813,814],[724,1,1,814,815],[726,2,2,815,817],[730,1,1,817,818],[736,3,3,818,821],[737,3,3,821,824],[741,1,1,824,825],[743,2,2,825,827],[744,1,1,827,828]]],[23,114,103,828,931,[[745,4,4,828,832],[747,1,1,832,833],[748,2,2,833,835],[749,3,3,835,838],[750,1,1,838,839],[751,4,3,839,842],[752,1,1,842,843],[753,6,4,843,847],[754,2,2,847,849],[755,2,2,849,851],[756,2,2,851,853],[757,1,1,853,854],[758,1,1,854,855],[760,1,1,855,856],[762,4,4,856,860],[763,3,3,860,863],[764,2,2,863,865],[766,2,2,865,867],[767,6,6,867,873],[769,4,3,873,876],[770,9,7,876,883],[771,3,3,883,886],[772,2,2,886,888],[773,2,2,888,890],[774,2,2,890,892],[775,1,1,892,893],[776,3,3,893,896],[777,2,2,896,898],[778,3,3,898,901],[779,5,3,901,904],[780,5,4,904,908],[781,1,1,908,909],[782,7,5,909,914],[783,2,2,914,916],[784,3,3,916,919],[786,1,1,919,920],[787,2,2,920,922],[788,2,2,922,924],[789,1,1,924,925],[790,1,1,925,926],[794,1,1,926,927],[795,2,2,927,929],[796,2,2,929,931]]],[25,67,63,931,994,[[802,1,1,931,932],[803,5,4,932,936],[804,8,8,936,944],[806,3,3,944,947],[807,1,1,947,948],[811,1,1,948,949],[812,1,1,949,950],[813,5,3,950,953],[814,2,2,953,955],[815,2,2,955,957],[818,2,2,957,959],[821,2,2,959,961],[822,2,2,961,963],[823,2,2,963,965],[824,1,1,965,966],[825,3,3,966,969],[827,2,2,969,971],[829,1,1,971,972],[830,1,1,972,973],[831,1,1,973,974],[833,1,1,974,975],[834,4,3,975,978],[835,1,1,978,979],[837,3,3,979,982],[838,3,3,982,985],[839,2,2,985,987],[840,2,2,987,989],[841,2,2,989,991],[842,1,1,991,992],[844,1,1,992,993],[845,1,1,993,994]]],[26,19,16,994,1010,[[850,1,1,994,995],[851,1,1,995,996],[857,3,2,996,998],[858,5,5,998,1003],[859,7,5,1003,1008],[860,2,2,1008,1010]]],[27,7,7,1010,1017,[[862,1,1,1010,1011],[863,1,1,1011,1012],[868,1,1,1012,1013],[871,1,1,1013,1014],[873,2,2,1014,1016],[874,1,1,1016,1017]]],[28,1,1,1017,1018,[[878,1,1,1017,1018]]],[29,3,3,1018,1021,[[881,2,2,1018,1020],[883,1,1,1020,1021]]],[30,1,1,1021,1022,[[888,1,1,1021,1022]]],[31,2,2,1022,1024,[[891,2,2,1022,1024]]],[32,3,3,1024,1027,[[896,1,1,1024,1025],[898,1,1,1025,1026],[899,1,1,1026,1027]]],[34,1,1,1027,1028,[[904,1,1,1027,1028]]],[35,1,1,1028,1029,[[908,1,1,1028,1029]]],[37,18,17,1029,1046,[[911,4,4,1029,1033],[912,2,2,1033,1035],[914,3,3,1035,1038],[915,2,2,1038,1040],[916,2,2,1040,1042],[918,1,1,1042,1043],[919,1,1,1043,1044],[920,2,1,1044,1045],[923,1,1,1045,1046]]],[38,2,2,1046,1048,[[927,2,2,1046,1048]]]],[198,302,394,400,419,420,429,443,451,453,454,455,456,457,471,478,503,514,515,574,579,584,587,598,606,621,624,636,641,642,732,733,746,788,804,897,902,947,983,986,988,993,1000,1024,1025,1026,1087,1159,1166,1168,1204,1212,1223,1259,1266,1276,1282,1309,1326,1330,1331,1340,1342,1370,1373,1385,1501,1510,1523,1527,1549,1611,1613,1615,1616,1617,1631,1655,1657,1664,1665,1666,1667,1668,1682,1683,1684,1687,1692,1694,1698,1707,1725,1729,1743,1754,1777,1806,1808,1819,1841,1847,1848,1868,1890,1891,1901,1904,1957,1958,1959,1970,2032,2034,2035,2045,2052,2070,2073,2166,2180,2184,2196,2197,2217,2296,2378,2393,2399,2404,2413,2421,2433,2438,2445,2451,2452,2472,2474,2482,2484,2490,2525,2527,2528,2529,2530,2531,2708,2746,2747,2796,2797,2844,2850,2857,2868,2873,2874,2901,2902,2907,2908,2918,2956,2980,2982,2985,2988,2989,2996,2998,2999,3045,3046,3053,3112,3144,3169,3170,3202,3203,3236,3237,3252,3253,3282,3283,3319,3361,3362,3369,3370,3371,3386,3387,3395,3403,3404,3411,3412,3425,3426,3428,3435,3436,3446,3447,3459,3461,3469,3470,3471,3571,3572,3605,3652,3659,3693,3697,3703,3706,3736,3744,3760,3764,3793,3796,3797,3798,3803,3804,3824,3825,3845,3846,3939,3940,3941,3944,3962,3966,3969,3974,3975,3989,4017,4041,4048,4049,4060,4061,4065,4067,4076,4125,4134,4136,4143,4147,4154,4155,4170,4171,4175,4191,4199,4214,4217,4218,4220,4225,4230,4234,4238,4241,4245,4246,4250,4265,4282,4283,4290,4291,4318,4319,4345,4347,4382,4383,4394,4395,4410,4413,4418,4421,4428,4432,4433,4435,4442,4458,4459,4481,4487,4492,4541,4561,4562,4569,4577,4578,4649,4665,4667,4745,4749,4810,4811,4817,4832,4846,4854,4855,4880,4884,4893,4895,4898,4903,4906,4913,4935,4939,4955,5001,5016,5019,5037,5049,5054,5057,5075,5077,5079,5080,5081,5084,5089,5093,5105,5160,5167,5185,5190,5195,5227,5233,5260,5274,5277,5325,5386,5401,5402,5403,5404,5405,5406,5414,5429,5432,5435,5436,5523,5555,5584,5585,5588,5594,5692,5729,5731,5756,5758,5759,5802,5803,5806,5854,5918,5920,5922,5948,6058,6059,6076,6130,6168,6187,6193,6197,6199,6289,6373,6374,6376,6383,6426,6430,6441,6447,6456,6465,6470,6474,6475,6503,6529,6549,6560,6635,6671,6681,6690,6691,6693,6705,6722,6727,6755,6756,6757,6791,6840,6875,6895,6916,6946,6959,6962,7027,7054,7057,7115,7145,7162,7191,7225,7228,7243,7285,7286,7288,7293,7317,7390,7397,7412,7416,7443,7449,7527,7576,7599,7641,7646,7649,7677,7698,7699,7700,7707,7709,7710,7753,7756,7855,7870,7878,7885,7891,7900,7901,7959,7963,8076,8100,8108,8187,8197,8199,8200,8205,8208,8209,8278,8304,8330,8339,8353,8359,8366,8368,8369,8371,8374,8375,8455,8518,8522,8540,8570,8572,8603,8655,8656,8704,8731,8739,8759,8774,8784,8786,8788,8789,8793,8794,8797,8800,8801,8808,8838,8876,8877,8883,8890,8908,9000,9005,9009,9010,9011,9038,9041,9056,9081,9154,9158,9160,9161,9163,9165,9166,9187,9191,9195,9196,9202,9206,9209,9210,9211,9220,9223,9229,9236,9278,9295,9317,9333,9419,9453,9455,9456,9457,9470,9474,9493,9494,9496,9503,9504,9508,9518,9536,9539,9540,9542,9543,9544,9545,9546,9548,9549,9550,9562,9573,9616,9620,9651,9660,9686,9707,9724,9725,9728,9731,9792,9803,9810,9921,9923,9937,10006,10050,10051,10052,10082,10107,10117,10129,10159,10164,10204,10215,10228,10250,10869,10878,10880,10886,10889,10943,10944,10953,10975,11286,11292,11297,11298,11299,11365,11398,11402,11404,11405,11407,11409,11410,11554,11555,11557,11564,11565,11569,11654,11659,11720,11849,11881,11891,11894,11918,11926,11955,12218,12413,12524,12695,12724,12803,12807,12816,12820,12869,12885,12886,12887,12901,12904,13019,13086,13087,13113,13156,13160,13166,13175,13242,13244,13278,13315,13358,13485,13635,13644,13648,13652,13664,13681,13682,13716,13718,13789,13869,13891,13926,13929,13930,13931,13950,13979,14068,14069,14089,14113,14165,14302,14349,14401,14430,14480,14502,14515,14530,14548,14628,14651,14669,14675,14688,14695,14713,14780,14782,14813,14838,14850,14887,15028,15076,15097,15132,15279,15304,15345,15435,15506,15520,15749,15757,15775,15835,15858,15921,15944,16081,16097,16126,16191,16313,16316,16331,16341,16445,16608,16853,16924,17012,17053,17060,17077,17081,17124,17323,17331,17348,17366,17450,17604,17648,17656,17674,17792,17812,17817,17846,17982,17983,18022,18031,18052,18077,18098,18126,18175,18197,18227,18263,18265,18266,18294,18341,18342,18374,18397,18405,18420,18422,18425,18447,18452,18580,18597,18629,18630,18702,18795,18799,18800,18803,18804,18813,18867,18909,18921,18926,18952,18953,18962,18963,19007,19039,19055,19063,19072,19073,19099,19132,19141,19146,19159,19180,19183,19187,19197,19202,19206,19228,19243,19250,19255,19281,19307,19346,19391,19392,19393,19404,19409,19412,19422,19430,19431,19455,19475,19500,19501,19505,19512,19519,19521,19536,19537,19547,19574,19579,19580,19585,19587,19588,19591,19608,19609,19612,19625,19634,19658,19667,19669,19671,19711,19735,19755,19773,19789,19799,19804,19806,19807,19825,19837,19840,19844,19846,19849,19873,19876,19896,19899,19903,19915,19920,19928,19935,19943,19944,19957,19994,19998,19999,20026,20035,20041,20058,20167,20224,20274,20285,20308,20492,20493,20494,20499,20500,20503,20506,20512,20513,20520,20524,20526,20529,20559,20561,20563,20573,20638,20680,20703,20705,20708,20715,20716,20735,20740,20846,20849,20898,20922,20961,20976,20990,21004,21041,21070,21074,21083,21105,21114,21167,21186,21216,21269,21282,21288,21310,21337,21364,21365,21395,21411,21416,21418,21442,21444,21453,21456,21481,21522,21548,21578,21604,21756,21762,21974,21979,21994,22000,22008,22009,22010,22026,22030,22031,22032,22034,22063,22072,22096,22119,22191,22229,22256,22262,22267,22351,22396,22403,22433,22528,22560,22568,22624,22660,22667,22749,22833,22887,22891,22892,22897,22902,22903,22923,22926,22927,22941,22946,22951,22955,22992,23009,23018,23062,23133,23136]]],["+",[65,64,[[0,4,4,0,4,[[19,1,1,0,1],[26,1,1,1,2],[30,1,1,2,3],[44,1,1,3,4]]],[1,9,8,4,12,[[50,1,1,4,5],[53,3,2,5,7],[56,1,1,7,8],[58,1,1,8,9],[63,1,1,9,10],[69,1,1,10,11],[83,1,1,11,12]]],[3,4,4,12,16,[[127,1,1,12,13],[130,1,1,13,14],[132,1,1,14,15],[139,1,1,15,16]]],[4,4,4,16,20,[[183,2,2,16,18],[184,2,2,18,20]]],[5,3,3,20,23,[[200,1,1,20,21],[206,1,1,21,22],[209,1,1,22,23]]],[6,4,4,23,27,[[212,1,1,23,24],[221,1,1,24,25],[226,2,2,25,27]]],[8,4,4,27,31,[[245,1,1,27,28],[253,1,1,28,29],[259,1,1,29,30],[260,1,1,30,31]]],[9,3,3,31,34,[[273,2,2,31,33],[280,1,1,33,34]]],[10,3,3,34,37,[[292,1,1,34,35],[304,1,1,35,36],[312,1,1,36,37]]],[11,3,3,37,40,[[313,1,1,37,38],[317,1,1,38,39],[330,1,1,39,40]]],[12,1,1,40,41,[[358,1,1,40,41]]],[13,2,2,41,43,[[376,1,1,41,42],[388,1,1,42,43]]],[17,2,2,43,45,[[477,2,2,43,45]]],[18,2,2,45,47,[[511,1,1,45,46],[529,1,1,46,47]]],[21,1,1,47,48,[[678,1,1,47,48]]],[22,2,2,48,50,[[702,1,1,48,49],[714,1,1,49,50]]],[23,10,10,50,60,[[749,1,1,50,51],[751,1,1,51,52],[760,1,1,52,53],[763,1,1,53,54],[770,3,3,54,57],[776,1,1,57,58],[778,1,1,58,59],[784,1,1,59,60]]],[25,2,2,60,62,[[803,1,1,60,61],[821,1,1,61,62]]],[26,1,1,62,63,[[859,1,1,62,63]]],[31,1,1,63,64,[[891,1,1,63,64]]]],[503,746,902,1385,1549,1615,1631,1687,1743,1901,2052,2529,4048,4147,4225,4442,5729,5756,5802,5803,6197,6376,6475,6549,6840,6959,6962,7443,7699,7855,7878,8200,8208,8369,8793,9220,9496,9540,9660,10051,10944,11409,11654,13929,13931,14401,14713,17648,18098,18342,19072,19146,19346,19409,19579,19580,19587,19773,19807,19943,20499,20898,22026,22560]]],["Commune",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7698]]],["Say",[1,1,[[25,1,1,0,1,[[838,1,1,0,1]]]],[21416]]],["Spake",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4458]]],["Speak",[53,53,[[1,6,6,0,6,[[60,1,1,0,1],[61,1,1,1,2],[63,1,1,2,3],[69,1,1,3,4],[74,1,1,4,5],[80,1,1,5,6]]],[2,21,21,6,27,[[90,1,1,6,7],[93,1,1,7,8],[95,1,1,8,9],[96,2,2,9,11],[100,1,1,11,12],[101,1,1,12,13],[104,1,1,13,14],[105,1,1,14,15],[106,1,1,15,16],[107,1,1,16,17],[108,1,1,17,18],[110,1,1,18,19],[111,2,2,19,21],[112,4,4,21,25],[114,1,1,25,26],[116,1,1,26,27]]],[3,14,14,27,41,[[121,2,2,27,29],[122,2,2,29,31],[124,1,1,31,32],[125,1,1,32,33],[131,3,3,33,36],[132,1,1,36,37],[133,1,1,37,38],[135,1,1,38,39],[149,1,1,39,40],[151,1,1,40,41]]],[5,1,1,41,42,[[206,1,1,41,42]]],[6,1,1,42,43,[[219,1,1,42,43]]],[8,2,2,43,45,[[238,2,2,43,45]]],[9,1,1,45,46,[[285,1,1,45,46]]],[11,1,1,46,47,[[330,1,1,46,47]]],[19,1,1,47,48,[[650,1,1,47,48]]],[22,2,2,48,50,[[714,1,1,48,49],[718,1,1,49,50]]],[23,1,1,50,51,[[753,1,1,50,51]]],[25,1,1,51,52,[[830,1,1,51,52]]],[37,1,1,52,53,[[918,1,1,52,53]]]],[1808,1819,1891,2070,2197,2433,2747,2797,2874,2902,2908,2999,3046,3170,3203,3237,3253,3283,3362,3371,3387,3404,3412,3426,3436,3471,3572,3798,3804,3825,3846,3941,3975,4155,4171,4191,4218,4246,4291,4811,4855,6374,6756,7285,7286,8522,10050,17053,18341,18422,19197,21186,22992]]],["Talk",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7243]]],["Tell",[2,2,[[6,1,1,0,1,[[230,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]]],[7057,9419]]],["appointed",[1,1,[[10,1,1,0,1,[[302,1,1,0,1]]]],[9163]]],["bade",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11407]]],["commanded",[2,2,[[3,2,2,0,2,[[132,1,1,0,1],[143,1,1,1,2]]]],[4241,4577]]],["commune",[3,3,[[0,1,1,0,1,[[33,1,1,0,1]]],[1,1,1,1,2,[[74,1,1,1,2]]],[8,1,1,2,3,[[254,1,1,2,3]]]],[986,2217,7709]]],["communed",[14,14,[[0,5,5,0,5,[[22,1,1,0,1],[33,2,2,1,3],[41,1,1,3,4],[42,1,1,4,5]]],[6,1,1,5,6,[[219,1,1,5,6]]],[8,2,2,6,8,[[244,1,1,6,7],[260,1,1,7,8]]],[10,1,1,8,9,[[300,1,1,8,9]]],[11,1,1,9,10,[[334,1,1,9,10]]],[13,1,1,10,11,[[375,1,1,10,11]]],[20,1,1,11,12,[[659,1,1,11,12]]],[26,1,1,12,13,[[850,1,1,12,13]]],[37,1,1,13,14,[[911,1,1,13,14]]]],[579,988,1000,1276,1309,6755,7416,7900,9081,10159,11365,17331,21756,22892]]],["communing",[2,2,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[80,1,1,1,2]]]],[457,2438]]],["declared",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3446]]],["gave",[3,3,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,2,2,1,3,[[783,1,1,1,2],[796,1,1,2,3]]]],[10228,19928,20285]]],["give",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19039]]],["named",[1,1,[[0,1,1,0,1,[[22,1,1,0,1]]]],[587]]],["on",[5,5,[[0,1,1,0,1,[[23,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]],[9,1,1,2,3,[[280,1,1,2,3]]],[10,2,2,3,5,[[292,2,2,3,5]]]],[624,7576,8368,8784,8786]]],["promised",[26,25,[[1,1,1,0,1,[[61,1,1,0,1]]],[4,10,10,1,11,[[153,1,1,1,2],[158,1,1,2,3],[161,1,1,3,4],[162,1,1,4,5],[164,1,1,5,6],[167,1,1,6,7],[171,1,1,7,8],[175,1,1,8,9],[178,1,1,9,10],[179,1,1,10,11]]],[5,4,4,11,15,[[195,1,1,11,12],[208,1,1,12,13],[209,2,2,13,15]]],[10,6,5,15,20,[[292,1,1,15,16],[295,1,1,16,17],[298,3,2,17,19],[299,1,1,19,20]]],[12,1,1,20,21,[[354,1,1,20,21]]],[13,3,3,21,24,[[372,3,3,21,24]]],[23,1,1,24,25,[[777,1,1,24,25]]]],[1841,4903,5089,5185,5195,5260,5325,5414,5523,5584,5588,6058,6430,6465,6470,8794,8890,9005,9041,9056,10889,11292,11297,11298,19789]]],["promisedst",[2,2,[[10,2,2,0,2,[[298,2,2,0,2]]]],[9009,9010]]],["pronounce",[1,1,[[6,1,1,0,1,[[222,1,1,0,1]]]],[6875]]],["pronounced",[11,11,[[15,1,1,0,1,[[418,1,1,0,1]]],[23,10,10,1,11,[[755,1,1,1,2],[762,1,1,2,3],[763,1,1,3,4],[769,1,1,4,5],[770,2,2,5,7],[778,1,1,7,8],[779,1,1,8,9],[780,2,2,9,11]]]],[12413,19243,19392,19422,19547,19585,19591,19806,19840,19849,19873]]],["published",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12724]]],["rehearsed",[1,1,[[8,1,1,0,1,[[243,1,1,0,1]]]],[7390]]],["said",[85,83,[[0,5,5,0,5,[[16,1,1,0,1],[17,1,1,1,2],[33,1,1,2,3],[40,1,1,3,4],[44,1,1,4,5]]],[1,11,11,5,16,[[56,2,2,5,7],[57,2,2,7,9],[61,2,2,9,11],[65,1,1,11,12],[73,2,2,12,14],[81,1,1,14,15],[82,1,1,15,16]]],[2,2,2,16,18,[[99,2,2,16,18]]],[3,4,4,18,22,[[130,1,1,18,19],[132,1,1,19,20],[148,1,1,20,21],[152,1,1,21,22]]],[4,6,6,22,28,[[153,1,1,22,23],[161,1,1,23,24],[163,1,1,24,25],[170,1,1,25,26],[181,1,1,26,27],[183,1,1,27,28]]],[5,8,8,28,36,[[187,1,1,28,29],[197,1,1,29,30],[199,2,2,30,32],[200,3,3,32,35],[208,1,1,35,36]]],[6,6,6,36,42,[[211,1,1,36,37],[212,1,1,37,38],[216,3,3,38,41],[218,1,1,41,42]]],[8,4,3,42,45,[[238,2,1,42,43],[239,1,1,43,44],[250,1,1,44,45]]],[9,1,1,45,46,[[273,1,1,45,46]]],[10,7,7,46,53,[[292,3,3,46,49],[303,2,2,49,51],[311,2,2,51,53]]],[11,15,15,53,68,[[313,9,9,53,62],[316,1,1,62,63],[317,1,1,63,64],[319,1,1,64,65],[326,1,1,65,66],[329,1,1,66,67],[336,1,1,67,68]]],[12,2,2,68,70,[[354,1,1,68,69],[359,1,1,69,70]]],[13,1,1,70,71,[[389,1,1,70,71]]],[16,1,1,71,72,[[431,1,1,71,72]]],[20,1,1,72,73,[[660,1,1,72,73]]],[23,5,4,73,77,[[767,1,1,73,74],[782,2,1,74,75],[784,1,1,75,76],[786,1,1,76,77]]],[25,5,5,77,82,[[807,1,1,77,78],[822,1,1,78,79],[841,2,2,79,81],[842,1,1,81,82]]],[31,1,1,82,83,[[891,1,1,82,83]]]],[420,429,993,1212,1385,1698,1707,1725,1729,1847,1848,1970,2180,2184,2445,2474,2982,2996,4143,4234,4749,4884,4913,5160,5233,5386,5692,5731,5854,6130,6168,6187,6193,6197,6199,6447,6529,6560,6681,6690,6691,6722,7293,7317,7576,8205,8800,8801,8808,9191,9196,9456,9457,9536,9540,9542,9543,9544,9545,9546,9548,9549,9620,9651,9724,9923,10006,10215,10886,10975,11659,12803,17348,19501,19920,19944,19994,20573,20961,21481,21522,21548,22568]]],["saidst",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2451]]],["saith",[7,7,[[0,1,1,0,1,[[43,1,1,0,1]]],[3,2,2,1,3,[[140,1,1,1,2],[148,1,1,2,3]]],[5,1,1,3,4,[[191,1,1,3,4]]],[8,1,1,4,5,[[244,1,1,4,5]]],[9,2,2,5,7,[[280,1,1,5,6],[290,1,1,6,7]]]],[1331,4459,4745,5948,7397,8366,8704]]],["say",[24,24,[[1,2,2,0,2,[[53,1,1,0,1],[55,1,1,1,2]]],[3,4,4,2,6,[[138,3,3,2,5],[139,1,1,5,6]]],[6,1,1,6,7,[[217,1,1,6,7]]],[10,3,3,7,10,[[302,1,1,7,8],[303,1,1,8,9],[304,1,1,9,10]]],[11,2,2,10,12,[[313,2,2,10,12]]],[13,1,1,12,13,[[384,1,1,12,13]]],[14,1,1,13,14,[[410,1,1,13,14]]],[18,1,1,14,15,[[599,1,1,14,15]]],[22,1,1,15,16,[[716,1,1,15,16]]],[23,2,2,16,18,[[749,1,1,16,17],[783,1,1,17,18]]],[25,5,5,18,23,[[803,1,1,18,19],[813,2,2,19,21],[838,1,1,21,22],[845,1,1,22,23]]],[34,1,1,23,24,[[904,1,1,23,24]]]],[1613,1684,4394,4395,4413,4432,6705,9161,9206,9223,9536,9539,11557,12218,16097,18405,19073,19935,20500,20703,20705,21418,21604,22749]]],["spake",[308,303,[[0,24,24,0,24,[[7,1,1,0,1],[15,1,1,1,2],[17,1,1,2,3],[18,1,1,3,4],[22,2,2,4,6],[23,2,2,6,8],[26,1,1,8,9],[28,1,1,9,10],[33,1,1,10,11],[34,1,1,11,12],[38,3,3,12,15],[40,1,1,15,16],[41,3,3,16,19],[43,1,1,19,20],[48,1,1,20,21],[49,3,3,21,24]]],[1,22,22,24,46,[[55,8,8,24,32],[56,1,1,32,33],[62,1,1,33,34],[63,1,1,34,35],[65,2,2,35,37],[68,1,1,37,38],[74,1,1,38,39],[79,3,3,39,42],[80,1,1,42,43],[82,1,1,43,44],[83,1,1,44,45],[89,1,1,45,46]]],[2,38,38,46,84,[[90,1,1,46,47],[93,1,1,47,48],[94,1,1,48,49],[95,4,4,49,53],[96,2,2,53,55],[97,1,1,55,56],[99,3,3,56,59],[100,1,1,59,60],[101,1,1,60,61],[102,1,1,61,62],[103,2,2,62,64],[104,1,1,64,65],[105,1,1,65,66],[106,1,1,66,67],[107,1,1,67,68],[108,1,1,68,69],[109,1,1,69,70],[110,1,1,70,71],[111,3,3,71,74],[112,5,5,74,79],[113,3,3,79,82],[114,1,1,82,83],[116,1,1,83,84]]],[3,59,59,84,143,[[117,1,1,84,85],[118,1,1,85,86],[119,5,5,86,91],[120,3,3,91,94],[121,4,4,94,98],[122,2,2,98,100],[123,1,1,100,101],[124,3,3,101,104],[125,3,3,104,107],[126,1,1,107,108],[127,1,1,108,109],[128,1,1,109,110],[129,1,1,110,111],[130,1,1,111,112],[131,2,2,112,114],[132,6,6,114,120],[133,2,2,120,122],[134,2,2,122,124],[135,1,1,124,125],[136,1,1,125,126],[137,1,1,126,127],[138,1,1,127,128],[141,2,2,128,130],[142,2,2,130,132],[143,1,1,132,133],[144,1,1,133,134],[146,1,1,134,135],[147,2,2,135,137],[149,1,1,137,138],[150,2,2,138,140],[151,2,2,140,142],[152,1,1,142,143]]],[4,17,17,143,160,[[153,4,4,143,147],[154,2,2,147,149],[156,3,3,149,152],[157,2,2,152,154],[161,1,1,154,155],[162,1,1,155,156],[165,1,1,156,157],[179,1,1,157,158],[183,1,1,158,159],[184,1,1,159,160]]],[5,13,13,160,173,[[190,2,2,160,162],[195,1,1,162,163],[196,1,1,163,164],[200,1,1,164,165],[203,1,1,165,166],[206,2,2,166,168],[207,1,1,168,169],[208,2,2,169,171],[209,1,1,171,172],[210,1,1,172,173]]],[6,3,3,173,176,[[218,1,1,173,174],[219,2,2,174,176]]],[7,1,1,176,177,[[235,1,1,176,177]]],[8,12,12,177,189,[[236,1,1,177,178],[251,1,1,178,179],[252,3,3,179,182],[253,1,1,182,183],[254,2,2,183,185],[255,1,1,185,186],[260,2,2,186,188],[263,1,1,188,189]]],[9,7,7,189,196,[[269,1,1,189,190],[273,1,1,190,191],[278,1,1,191,192],[279,1,1,192,193],[288,1,1,193,194],[289,2,2,194,196]]],[10,30,28,196,224,[[291,1,1,196,197],[292,2,2,197,199],[293,1,1,199,200],[294,3,2,200,202],[295,1,1,202,203],[296,1,1,203,204],[298,2,2,204,206],[302,6,5,206,211],[303,3,3,211,214],[304,1,1,214,215],[305,1,1,215,216],[306,2,2,216,218],[307,1,1,218,219],[311,3,3,219,222],[312,2,2,222,224]]],[11,16,15,224,239,[[313,1,1,224,225],[314,1,1,225,226],[317,1,1,226,227],[319,1,1,227,228],[320,1,1,228,229],[321,1,1,229,230],[322,3,2,230,232],[326,1,1,232,233],[327,1,1,233,234],[330,1,1,234,235],[333,1,1,235,236],[334,1,1,236,237],[336,1,1,237,238],[337,1,1,238,239]]],[12,3,3,239,242,[[354,1,1,239,240],[358,2,2,240,242]]],[13,14,13,242,255,[[372,1,1,242,243],[376,5,4,243,247],[384,1,1,247,248],[396,1,1,248,249],[398,3,3,249,252],[399,2,2,252,254],[400,1,1,254,255]]],[15,1,1,255,256,[[425,1,1,255,256]]],[16,1,1,256,257,[[433,1,1,256,257]]],[17,3,3,257,260,[[437,1,1,257,258],[454,1,1,258,259],[467,1,1,259,260]]],[18,3,3,260,263,[[516,1,1,260,261],[555,1,1,261,262],[576,1,1,262,263]]],[21,1,1,263,264,[[675,1,1,263,264]]],[22,5,5,264,269,[[685,1,1,264,265],[686,1,1,265,266],[698,1,1,266,267],[743,1,1,267,268],[744,1,1,268,269]]],[23,20,20,269,289,[[751,2,2,269,271],[752,1,1,271,272],[758,1,1,272,273],[763,1,1,273,274],[764,1,1,274,275],[766,1,1,275,276],[769,1,1,276,277],[771,2,2,277,279],[774,1,1,279,280],[775,1,1,280,281],[780,1,1,281,282],[781,1,1,282,283],[782,1,1,283,284],[789,1,1,284,285],[790,1,1,285,286],[794,1,1,286,287],[795,1,1,287,288],[796,1,1,288,289]]],[25,6,5,289,294,[[802,1,1,289,290],[803,2,1,290,291],[804,1,1,291,292],[812,1,1,292,293],[825,1,1,293,294]]],[26,5,5,294,299,[[851,1,1,294,295],[857,1,1,295,296],[858,2,2,296,298],[859,1,1,298,299]]],[27,2,2,299,301,[[873,1,1,299,300],[874,1,1,300,301]]],[37,1,1,301,302,[[916,1,1,301,302]]],[38,1,1,302,303,[[927,1,1,302,303]]]],[198,394,453,471,574,584,598,621,732,804,983,1026,1159,1166,1168,1204,1259,1266,1282,1330,1501,1510,1523,1527,1657,1664,1665,1667,1668,1682,1683,1684,1692,1868,1890,1957,1958,2045,2196,2393,2399,2404,2421,2484,2530,2708,2746,2796,2844,2850,2857,2868,2873,2901,2907,2918,2980,2985,2989,2998,3045,3053,3112,3144,3169,3202,3236,3252,3282,3319,3361,3370,3386,3395,3403,3411,3425,3428,3435,3447,3459,3469,3470,3571,3605,3659,3693,3697,3703,3706,3736,3744,3760,3764,3793,3796,3797,3803,3824,3845,3939,3940,3944,3962,3966,3969,3974,3989,4049,4060,4076,4134,4154,4170,4199,4214,4217,4220,4230,4238,4245,4250,4265,4282,4290,4318,4345,4382,4481,4487,4492,4541,4569,4578,4649,4665,4667,4810,4817,4832,4846,4854,4880,4893,4895,4898,4935,4939,4955,5016,5019,5049,5075,5081,5167,5190,5274,5594,5758,5806,5918,5922,6059,6076,6199,6289,6373,6374,6383,6441,6456,6474,6503,6727,6757,6791,7191,7225,7599,7641,7646,7649,7700,7707,7710,7756,7870,7901,7959,8100,8187,8304,8339,8603,8655,8656,8759,8774,8797,8838,8876,8877,8883,8908,9000,9005,9154,9158,9161,9165,9166,9202,9210,9211,9236,9278,9295,9317,9333,9453,9457,9474,9493,9518,9542,9573,9660,9724,9728,9792,9803,9810,9921,9937,10052,10129,10164,10204,10250,10869,10943,10953,11286,11398,11402,11405,11410,11554,11849,11881,11891,11894,11918,11926,11955,12695,12820,12904,13315,13644,14515,15132,15506,17604,17792,17812,18031,18909,18926,19132,19141,19159,19307,19412,19430,19475,19536,19608,19612,19671,19711,19844,19876,19903,20041,20058,20167,20224,20308,20492,20494,20526,20680,21074,21762,21974,21994,22000,22031,22256,22267,22955,23136]]],["spakest",[8,8,[[6,1,1,0,1,[[223,1,1,0,1]]],[8,1,1,1,2,[[263,1,1,1,2]]],[10,3,3,2,5,[[298,3,3,2,5]]],[13,1,1,5,6,[[372,1,1,5,6]]],[15,1,1,6,7,[[421,1,1,6,7]]],[18,1,1,7,8,[[566,1,1,7,8]]]],[6895,7963,9009,9011,9038,11297,12524,15345]]],["speak",[206,193,[[0,12,12,0,12,[[17,4,4,0,4],[23,1,1,4,5],[26,1,1,5,6],[30,1,1,6,7],[31,1,1,7,8],[36,1,1,8,9],[43,2,2,9,11],[49,1,1,11,12]]],[1,17,17,12,29,[[53,1,1,12,13],[54,1,1,13,14],[55,2,2,14,16],[56,2,2,16,18],[63,1,1,18,19],[65,1,1,19,20],[68,2,2,20,22],[69,1,1,22,23],[72,1,1,23,24],[77,1,1,24,25],[78,1,1,25,26],[79,1,1,26,27],[83,2,2,27,29]]],[2,2,2,29,31,[[98,1,1,29,30],[113,1,1,30,31]]],[3,15,13,31,44,[[123,1,1,31,32],[128,3,2,32,34],[134,1,1,34,35],[136,1,1,35,36],[138,4,3,36,39],[139,2,2,39,41],[140,1,1,41,42],[143,2,2,42,44]]],[4,15,12,44,56,[[155,1,1,44,45],[157,4,3,45,48],[170,5,3,48,51],[172,3,3,51,54],[177,1,1,54,55],[184,1,1,55,56]]],[5,1,1,56,57,[[190,1,1,56,57]]],[6,4,4,57,61,[[216,1,1,57,58],[229,2,2,58,60],[231,1,1,60,61]]],[8,1,1,61,62,[[260,1,1,61,62]]],[9,13,12,62,74,[[269,2,2,62,64],[273,1,1,64,65],[279,1,1,65,66],[280,5,4,66,70],[283,1,1,70,71],[285,1,1,71,72],[286,2,2,72,74]]],[10,8,7,74,81,[[292,2,2,74,76],[302,1,1,76,77],[311,2,1,77,78],[312,3,3,78,81]]],[12,1,1,81,82,[[354,1,1,81,82]]],[13,4,4,82,86,[[376,1,1,82,83],[384,3,3,83,86]]],[15,1,1,86,87,[[425,1,1,86,87]]],[17,21,21,87,108,[[442,1,1,87,88],[444,1,1,88,89],[445,1,1,89,90],[446,1,1,90,91],[448,4,4,91,95],[451,2,2,95,97],[453,1,1,97,98],[456,1,1,98,99],[462,1,1,99,100],[467,2,2,100,102],[468,2,2,102,104],[469,1,1,104,105],[472,1,1,105,106],[476,1,1,106,107],[477,1,1,107,108]]],[18,29,26,108,134,[[479,1,1,108,109],[482,1,1,109,110],[489,2,1,110,111],[494,1,1,111,112],[505,1,1,112,113],[508,1,1,113,114],[512,1,1,114,115],[515,1,1,115,116],[517,1,1,116,117],[526,1,1,117,118],[527,1,1,118,119],[535,1,1,119,120],[540,1,1,120,121],[550,2,1,121,122],[552,1,1,122,123],[554,1,1,123,124],[562,2,1,124,125],[571,1,1,125,126],[586,1,1,126,127],[592,1,1,127,128],[596,2,2,128,130],[597,1,1,130,131],[604,1,1,131,132],[612,1,1,132,133],[622,1,1,133,134]]],[19,2,2,134,136,[[635,1,1,134,135],[650,1,1,135,136]]],[20,1,1,136,137,[[661,1,1,136,137]]],[22,13,13,137,150,[[686,1,1,137,138],[697,1,1,138,139],[706,1,1,139,140],[707,1,1,140,141],[708,1,1,141,142],[710,2,2,142,144],[714,1,1,144,145],[719,1,1,145,146],[723,1,1,146,147],[730,1,1,147,148],[737,1,1,148,149],[741,1,1,149,150]]],[23,23,21,150,171,[[745,3,3,150,153],[750,1,1,153,154],[753,2,1,154,155],[754,1,1,155,156],[755,1,1,156,157],[756,1,1,157,158],[762,3,3,158,161],[764,1,1,161,162],[766,1,1,162,163],[767,2,2,163,165],[770,3,2,165,167],[772,1,1,167,168],[776,1,1,168,169],[778,1,1,169,170],[782,1,1,170,171]]],[25,15,14,171,185,[[803,1,1,171,172],[804,5,5,172,177],[813,2,1,177,178],[815,1,1,178,179],[821,1,1,179,180],[825,1,1,180,181],[833,1,1,181,182],[834,3,3,182,185]]],[26,4,4,185,189,[[859,2,2,185,187],[860,2,2,187,189]]],[27,1,1,189,190,[[863,1,1,189,190]]],[35,1,1,190,191,[[908,1,1,190,191]]],[37,2,2,191,193,[[912,1,1,191,192],[919,1,1,192,193]]]],[451,454,455,456,641,733,897,947,1087,1340,1342,1510,1616,1655,1666,1684,1687,1694,1904,1959,2032,2035,2070,2166,2296,2378,2413,2530,2531,2956,3461,3939,4065,4067,4283,4319,4383,4410,4413,4421,4428,4459,4561,4562,5001,5054,5080,5084,5402,5403,5404,5429,5432,5435,5555,5759,5920,6693,7027,7054,7115,7885,8100,8108,8197,8330,8359,8368,8371,8374,8455,8518,8570,8572,8788,8789,9158,9470,9493,9494,9504,10878,11402,11554,11555,11565,12695,13019,13086,13087,13113,13156,13160,13166,13175,13242,13244,13278,13358,13485,13635,13648,13681,13682,13716,13789,13891,13926,13950,13979,14068,14113,14302,14349,14430,14502,14530,14651,14675,14780,14850,15028,15076,15097,15279,15435,15775,15835,15921,15944,16081,16126,16191,16341,16608,17060,17366,17817,18022,18175,18197,18227,18263,18265,18341,18452,18580,18702,18804,18867,18952,18953,18963,19099,19180,19206,19228,19255,19391,19393,19404,19431,19455,19500,19512,19574,19580,19625,19735,19804,19915,20493,20503,20506,20512,20513,20529,20705,20735,20922,21083,21269,21282,21288,21310,22026,22034,22063,22072,22119,22833,22903,23009]]],["speakest",[11,11,[[8,1,1,0,1,[[244,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]],[11,1,1,2,3,[[318,1,1,2,3]]],[17,1,1,3,4,[[437,1,1,3,4]]],[18,2,2,4,6,[[527,1,1,4,5],[528,1,1,5,6]]],[22,1,1,6,7,[[718,1,1,6,7]]],[23,2,2,7,9,[[784,1,1,7,8],[787,1,1,8,9]]],[25,1,1,9,10,[[804,1,1,9,10]]],[37,1,1,10,11,[[923,1,1,10,11]]]],[7412,8540,9686,12901,14688,14695,18447,19957,19999,20520,23062]]],["speaketh",[22,21,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,1,1,1,2,[[82,1,1,1,2]]],[3,1,1,2,3,[[139,1,1,2,3]]],[4,1,1,3,4,[[170,1,1,3,4]]],[17,2,2,4,6,[[437,1,1,4,5],[468,1,1,5,6]]],[18,5,5,6,11,[[489,1,1,6,7],[492,1,1,7,8],[518,1,1,8,9],[621,2,2,9,11]]],[19,3,3,11,14,[[629,1,1,11,12],[643,1,1,12,13],[648,1,1,13,14]]],[22,3,3,14,17,[[687,1,1,14,15],[710,1,1,15,16],[711,1,1,16,17]]],[23,3,2,17,19,[[753,2,1,17,18],[754,1,1,18,19]]],[25,1,1,19,20,[[811,1,1,19,20]]],[29,1,1,20,21,[[883,1,1,20,21]]]],[1370,2484,4442,5406,12901,13664,14069,14089,14548,16313,16316,16445,16853,17012,17846,18266,18294,19183,19202,20638,22433]]],["speaking",[30,30,[[0,2,2,0,2,[[23,2,2,0,2]]],[3,1,1,2,3,[[123,1,1,2,3]]],[4,4,4,3,7,[[156,1,1,3,4],[157,1,1,4,5],[163,1,1,5,6],[172,1,1,6,7]]],[6,1,1,7,8,[[225,1,1,7,8]]],[7,1,1,8,9,[[232,1,1,8,9]]],[8,1,1,9,10,[[253,1,1,9,10]]],[9,1,1,10,11,[[279,1,1,10,11]]],[16,1,1,11,12,[[435,1,1,11,12]]],[17,3,3,12,15,[[436,3,3,12,15]]],[18,1,1,15,16,[[535,1,1,15,16]]],[22,4,4,16,20,[[736,2,2,16,18],[737,1,1,18,19],[743,1,1,19,20]]],[23,5,5,20,25,[[751,1,1,20,21],[769,1,1,21,22],[779,1,1,22,23],[782,1,1,23,24],[787,1,1,24,25]]],[25,1,1,25,26,[[844,1,1,25,26]]],[26,4,4,26,30,[[857,2,2,26,28],[858,2,2,28,30]]]],[606,636,3939,5037,5079,5227,5436,6946,7145,7677,8353,12869,12885,12886,12887,14782,18795,18799,18813,18921,19132,19537,19837,19899,19998,21578,21974,21979,22008,22009]]],["spoken",[169,166,[[0,9,9,0,9,[[11,1,1,0,1],[17,1,1,1,2],[18,1,1,2,3],[20,2,2,3,5],[23,1,1,5,6],[27,1,1,6,7],[40,1,1,7,8],[43,1,1,8,9]]],[1,9,9,9,18,[[53,2,2,9,11],[58,2,2,11,13],[59,1,1,13,14],[68,1,1,14,15],[81,1,1,15,16],[82,1,1,16,17],[83,1,1,17,18]]],[2,1,1,18,19,[[99,1,1,18,19]]],[3,11,10,19,29,[[117,1,1,19,20],[126,1,1,20,21],[128,2,1,21,22],[130,2,2,22,24],[131,1,1,24,25],[137,1,1,25,26],[139,3,3,26,29]]],[4,10,8,29,37,[[153,1,1,29,30],[157,2,1,30,31],[158,1,1,31,32],[165,1,1,32,33],[170,4,3,33,36],[178,1,1,36,37]]],[5,1,1,37,38,[[207,1,1,37,38]]],[7,1,1,38,39,[[233,1,1,38,39]]],[8,4,4,39,43,[[236,1,1,39,40],[238,1,1,40,41],[255,1,1,41,42],[260,1,1,42,43]]],[9,6,6,43,49,[[268,1,1,43,44],[273,3,3,44,47],[280,1,1,47,48],[283,1,1,48,49]]],[10,7,7,49,56,[[302,1,1,49,50],[303,2,2,50,52],[304,1,1,52,53],[311,1,1,53,54],[312,2,2,54,56]]],[11,6,6,56,62,[[313,1,1,56,57],[316,1,1,57,58],[319,1,1,58,59],[331,1,1,59,60],[332,2,2,60,62]]],[12,2,2,62,64,[[354,2,2,62,64]]],[13,5,5,64,69,[[372,2,2,64,66],[376,1,1,66,67],[384,2,2,67,69]]],[16,2,2,69,71,[[431,1,1,69,70],[432,1,1,70,71]]],[17,6,6,71,77,[[456,1,1,71,72],[468,1,1,72,73],[469,1,1,73,74],[475,1,1,74,75],[477,2,2,75,77]]],[18,8,8,77,85,[[527,1,1,77,78],[537,1,1,78,79],[539,1,1,79,80],[543,1,1,80,81],[564,1,1,81,82],[585,1,1,82,83],[586,1,1,83,84],[593,1,1,84,85]]],[19,1,1,85,86,[[652,1,1,85,86]]],[20,1,1,86,87,[[665,1,1,86,87]]],[22,17,17,87,104,[[679,2,2,87,89],[694,2,2,89,91],[699,1,1,91,92],[700,1,1,92,93],[703,1,1,93,94],[715,1,1,94,95],[716,1,1,95,96],[717,1,1,96,97],[718,1,1,97,98],[723,1,1,98,99],[724,1,1,99,100],[726,2,2,100,102],[736,1,1,102,103],[737,1,1,103,104]]],[23,22,22,104,126,[[747,1,1,104,105],[748,1,1,105,106],[753,1,1,106,107],[757,1,1,107,108],[767,3,3,108,111],[769,1,1,111,112],[770,1,1,112,113],[771,1,1,113,114],[773,1,1,114,115],[774,1,1,115,116],[776,1,1,116,117],[777,1,1,117,118],[779,2,2,118,120],[780,2,2,120,122],[782,1,1,122,123],[788,2,2,123,125],[795,1,1,125,126]]],[25,27,27,126,153,[[806,3,3,126,129],[813,1,1,129,130],[814,2,2,130,132],[815,1,1,132,133],[818,2,2,133,135],[822,1,1,135,136],[823,2,2,136,138],[824,1,1,138,139],[825,1,1,139,140],[827,2,2,140,142],[829,1,1,142,143],[831,1,1,143,144],[835,1,1,144,145],[837,3,3,145,148],[838,1,1,148,149],[839,2,2,149,151],[840,2,2,151,153]]],[26,2,2,153,155,[[859,2,2,153,155]]],[27,3,3,155,158,[[868,1,1,155,156],[871,1,1,156,157],[873,1,1,157,158]]],[28,1,1,158,159,[[878,1,1,158,159]]],[29,2,2,159,161,[[881,2,2,159,161]]],[30,1,1,161,162,[[888,1,1,161,162]]],[32,2,2,162,164,[[896,1,1,162,163],[898,1,1,163,164]]],[37,1,1,164,165,[[920,1,1,164,165]]],[38,1,1,165,166,[[927,1,1,165,166]]]],[302,443,478,514,515,642,788,1223,1326,1611,1631,1754,1777,1806,2034,2472,2490,2528,2988,3652,4017,4061,4125,4136,4175,4347,4418,4433,4435,4906,5081,5105,5277,5401,5405,5406,5585,6426,7162,7228,7288,7753,7891,8076,8199,8205,8209,8375,8455,9160,9187,9195,9229,9455,9503,9508,9550,9616,9725,10082,10107,10117,10880,10886,11292,11299,11404,11564,11569,12803,12816,13358,13652,13718,13869,13929,13930,14669,14813,14838,14887,15304,15749,15757,15858,17124,17450,17656,17674,17982,17983,18052,18077,18126,18374,18397,18420,18425,18580,18597,18629,18630,18800,18803,19007,19055,19187,19281,19505,19519,19521,19537,19588,19609,19658,19669,19755,19799,19837,19840,19844,19846,19896,20026,20035,20274,20559,20561,20563,20708,20715,20716,20740,20846,20849,20976,20990,21004,21041,21070,21105,21114,21167,21216,21337,21364,21365,21395,21411,21442,21444,21453,21456,22030,22034,22191,22229,22262,22351,22396,22403,22528,22624,22660,23018,23133]]],["spokesman",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1617]]],["subdue",[1,1,[[18,1,1,0,1,[[524,1,1,0,1]]]],[14628]]],["subdueth",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14165]]],["talk",[10,10,[[3,1,1,0,1,[[127,1,1,0,1]]],[4,2,2,1,3,[[157,1,1,1,2],[158,1,1,2,3]]],[11,1,1,3,4,[[330,1,1,3,4]]],[17,1,1,4,5,[[448,1,1,4,5]]],[18,1,1,5,6,[[622,1,1,5,6]]],[19,1,1,6,7,[[651,1,1,6,7]]],[23,1,1,7,8,[[756,1,1,7,8]]],[25,1,1,8,9,[[804,1,1,8,9]]],[26,1,1,9,10,[[859,1,1,9,10]]]],[4041,5077,5093,10050,13160,16331,17081,19250,20524,22032]]],["talked",[29,29,[[0,4,4,0,4,[[16,1,1,0,1],[34,2,2,1,3],[44,1,1,3,4]]],[1,4,4,4,8,[[69,1,1,4,5],[82,1,1,5,6],[83,2,2,6,8]]],[4,1,1,8,9,[[157,1,1,8,9]]],[6,1,1,9,10,[[224,1,1,9,10]]],[8,2,2,10,12,[[249,1,1,10,11],[252,1,1,11,12]]],[10,1,1,12,13,[[291,1,1,12,13]]],[11,3,3,13,16,[[314,1,1,13,14],[318,1,1,14,15],[320,1,1,15,16]]],[13,1,1,16,17,[[391,1,1,16,17]]],[23,1,1,17,18,[[782,1,1,17,18]]],[26,1,1,18,19,[[858,1,1,18,19]]],[37,10,10,19,29,[[911,3,3,19,22],[912,1,1,22,23],[914,3,3,23,26],[915,2,2,26,28],[916,1,1,28,29]]]],[400,1024,1025,1373,2073,2482,2525,2527,5057,6916,7527,7641,8739,9562,9707,9731,11720,19920,22010,22887,22891,22897,22902,22923,22926,22927,22941,22946,22951]]],["talkest",[2,2,[[6,1,1,0,1,[[216,1,1,0,1]]],[10,1,1,1,2,[[291,1,1,1,2]]]],[6671,8731]]],["talketh",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14480]]],["talking",[3,3,[[0,1,1,0,1,[[16,1,1,0,1]]],[16,1,1,1,2,[[431,1,1,1,2]]],[25,1,1,2,3,[[834,1,1,2,3]]]],[419,12807,21310]]],["taught",[2,2,[[23,2,2,0,2,[[772,1,1,0,1],[773,1,1,1,2]]]],[19634,19667]]],["telleth",[2,2,[[18,2,2,0,2,[[518,1,1,0,1],[578,1,1,1,2]]]],[14548,15520]]],["telling",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8278]]],["thought",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2452]]],["told",[5,5,[[0,1,1,0,1,[[23,1,1,0,1]]],[2,1,1,1,2,[[110,1,1,1,2]]],[8,1,1,2,3,[[246,1,1,2,3]]],[10,1,1,3,4,[[303,1,1,3,4]]],[37,1,1,4,5,[[920,1,1,4,5]]]],[624,3369,7449,9209,23018]]],["unto",[2,2,[[23,2,2,0,2,[[749,1,1,0,1],[779,1,1,1,2]]]],[19063,19825]]],["useth",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16924]]],["utter",[5,5,[[6,1,1,0,1,[[215,1,1,0,1]]],[19,1,1,1,2,[[650,1,1,1,2]]],[20,1,1,2,3,[[659,1,1,2,3]]],[22,1,1,3,4,[[710,1,1,3,4]]],[23,1,1,4,5,[[745,1,1,4,5]]]],[6635,17077,17323,18265,18962]]],["uttereth",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22667]]],["wont",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8572]]],["word",[1,1,[[27,1,1,0,1,[[862,1,1,0,1]]]],[22096]]]]},{"k":"H1697","v":[["*",[1436,1286,[[0,61,58,0,58,[[10,1,1,0,1],[11,1,1,1,2],[14,3,2,2,4],[17,2,2,4,6],[18,3,3,6,9],[19,4,4,9,13],[20,2,2,13,15],[21,3,3,15,18],[23,7,7,18,25],[26,2,2,25,27],[28,1,1,27,28],[29,2,2,28,30],[30,1,1,30,31],[31,1,1,31,32],[33,3,3,32,35],[36,3,3,35,38],[38,4,3,38,41],[39,1,1,41,42],[40,3,3,42,45],[41,2,2,45,47],[42,2,2,47,49],[43,7,6,49,55],[44,1,1,55,56],[46,1,1,56,57],[47,1,1,57,58]]],[1,62,56,58,114,[[50,1,1,58,59],[51,2,2,59,61],[53,4,4,61,65],[54,4,4,65,69],[57,4,4,69,73],[58,5,5,73,78],[61,2,2,78,80],[63,1,1,80,81],[65,3,3,81,84],[67,11,9,84,93],[68,4,4,93,97],[69,1,1,97,98],[71,2,1,98,99],[72,2,2,99,101],[73,5,4,101,105],[78,1,1,105,106],[81,1,1,106,107],[82,2,2,107,109],[83,5,3,109,112],[84,2,2,112,114]]],[2,8,8,114,122,[[93,1,1,114,115],[94,1,1,115,116],[97,2,2,116,118],[98,1,1,118,119],[99,1,1,119,120],[106,1,1,120,121],[112,1,1,121,122]]],[3,29,26,122,148,[[127,2,2,122,124],[128,1,1,124,125],[129,1,1,125,126],[130,2,2,126,128],[131,1,1,128,129],[132,2,2,129,131],[134,1,1,131,132],[136,1,1,132,133],[138,5,5,133,138],[139,3,3,138,141],[141,3,1,141,142],[146,2,2,142,144],[147,3,2,144,146],[148,1,1,146,147],[152,1,1,147,148]]],[4,96,89,148,237,[[153,9,9,148,157],[154,2,2,157,159],[155,1,1,159,160],[156,9,9,160,169],[157,4,3,169,172],[158,1,1,172,173],[161,2,2,173,175],[162,2,2,175,177],[163,1,1,177,178],[164,2,2,178,180],[165,3,3,180,183],[167,4,4,183,187],[168,1,1,187,188],[169,9,8,188,196],[170,6,5,196,201],[171,3,3,201,204],[174,7,5,204,209],[175,4,4,209,213],[176,4,4,213,217],[179,3,3,217,220],[180,2,2,220,222],[181,4,4,222,226],[182,2,2,226,228],[183,5,5,228,233],[184,6,4,233,237]]],[5,32,28,237,265,[[187,2,2,237,239],[188,3,3,239,242],[189,1,1,242,243],[190,1,1,243,244],[191,1,1,244,245],[192,1,1,245,246],[194,4,4,246,250],[195,1,1,250,251],[197,1,1,251,252],[200,3,3,252,255],[206,1,1,255,256],[207,2,1,256,257],[208,4,4,257,261],[209,5,2,261,263],[210,2,2,263,265]]],[6,23,21,265,286,[[212,1,1,265,266],[213,2,2,266,268],[216,2,1,268,269],[219,2,2,269,271],[221,4,4,271,275],[223,2,2,275,277],[226,1,1,277,278],[228,4,3,278,281],[229,2,2,281,283],[230,2,2,283,285],[231,1,1,285,286]]],[7,3,2,286,288,[[234,2,1,286,287],[235,1,1,287,288]]],[8,76,68,288,356,[[236,1,1,288,289],[237,2,1,289,290],[238,9,7,290,297],[239,2,2,297,299],[243,3,3,299,302],[244,3,3,302,305],[245,2,2,305,307],[246,3,3,307,310],[247,1,1,310,311],[249,1,1,311,312],[250,7,7,312,319],[251,1,1,319,320],[252,8,6,320,326],[253,6,5,326,331],[254,1,1,331,332],[255,5,4,332,336],[256,4,3,336,339],[257,1,1,339,340],[259,4,4,340,344],[260,5,5,344,349],[261,2,2,349,351],[263,4,4,351,355],[265,1,1,355,356]]],[9,68,62,356,418,[[267,1,1,356,357],[268,1,1,357,358],[269,4,4,358,362],[273,6,6,362,368],[277,5,5,368,373],[278,5,5,373,378],[279,5,5,378,383],[280,13,10,383,393],[281,6,6,393,399],[282,1,1,399,400],[283,4,3,400,403],[284,2,2,403,405],[285,6,4,405,409],[286,2,2,409,411],[288,1,1,411,412],[289,1,1,412,413],[290,5,5,413,418]]],[10,125,100,418,518,[[291,3,3,418,421],[292,7,7,421,428],[293,4,3,428,431],[294,1,1,431,432],[295,1,1,432,433],[296,3,3,433,436],[298,6,4,436,440],[299,1,1,440,441],[300,6,4,441,445],[301,4,3,445,448],[302,10,8,448,456],[303,15,13,456,469],[304,7,5,469,474],[305,8,5,474,479],[306,12,8,479,487],[307,9,9,487,496],[308,6,5,496,501],[309,1,1,501,502],[310,6,5,502,507],[311,5,5,507,512],[312,10,6,512,518]]],[11,108,82,518,600,[[313,5,4,518,522],[314,1,1,522,523],[315,1,1,523,524],[316,2,2,524,526],[317,4,3,526,529],[318,4,4,529,533],[319,4,4,533,537],[320,4,3,537,540],[321,3,3,540,543],[322,4,3,543,546],[323,1,1,546,547],[324,2,1,547,548],[325,4,2,548,550],[326,7,4,550,554],[327,15,8,554,562],[328,2,1,562,563],[329,3,3,563,566],[330,5,5,566,571],[331,5,4,571,575],[332,9,8,575,583],[333,4,2,583,585],[334,7,6,585,591],[335,8,6,591,597],[336,3,2,597,599],[337,1,1,599,600]]],[12,30,26,600,626,[[341,1,1,600,601],[347,1,1,601,602],[348,2,2,602,604],[350,1,1,604,605],[352,1,1,605,606],[353,2,2,606,608],[354,4,4,608,612],[358,6,6,612,618],[359,1,1,618,619],[360,1,1,619,620],[362,1,1,620,621],[363,2,1,621,622],[364,2,2,622,624],[365,1,1,624,625],[366,4,1,625,626]]],[13,78,66,626,692,[[367,1,1,626,627],[372,2,2,627,629],[374,3,3,629,632],[375,8,5,632,637],[376,4,4,637,641],[377,3,2,641,643],[378,4,3,643,646],[379,2,1,646,647],[381,1,1,647,648],[382,1,1,648,649],[384,4,3,649,652],[385,4,3,652,655],[386,2,1,655,656],[389,2,2,656,658],[390,1,1,658,659],[391,1,1,659,660],[392,1,1,660,661],[393,1,1,661,662],[394,1,1,662,663],[395,3,3,663,666],[396,3,3,666,669],[397,2,2,669,671],[398,3,3,671,674],[399,4,2,674,676],[400,9,8,676,684],[401,4,4,684,688],[402,4,4,688,692]]],[14,14,14,692,706,[[403,1,1,692,693],[405,1,1,693,694],[409,2,2,694,696],[410,1,1,696,697],[411,2,2,697,699],[412,7,7,699,706]]],[15,29,27,706,733,[[413,3,3,706,709],[414,3,3,709,712],[417,6,5,712,717],[418,7,6,717,723],[420,4,4,723,727],[421,1,1,727,728],[423,2,2,728,730],[424,2,2,730,732],[425,1,1,732,733]]],[16,37,35,733,768,[[426,7,6,733,739],[427,7,6,739,745],[428,3,3,745,748],[429,3,3,748,751],[430,3,3,751,754],[431,3,3,754,757],[432,1,1,757,758],[433,3,3,758,761],[434,6,6,761,767],[435,1,1,767,768]]],[17,20,20,768,788,[[437,1,1,768,769],[439,2,2,769,771],[441,1,1,771,772],[444,1,1,772,773],[446,1,1,773,774],[450,2,2,774,776],[451,1,1,776,777],[454,1,1,777,778],[461,1,1,778,779],[464,1,1,779,780],[466,1,1,780,781],[467,2,2,781,783],[468,2,2,783,785],[469,1,1,785,786],[476,1,1,786,787],[477,1,1,787,788]]],[18,67,64,788,852,[[494,1,1,788,789],[496,1,1,789,790],[499,1,1,790,791],[510,2,2,791,793],[512,1,1,793,794],[513,1,1,794,795],[518,1,1,795,796],[522,2,2,796,798],[527,1,1,798,799],[529,1,1,799,800],[532,1,1,800,801],[533,4,3,801,804],[536,1,1,804,805],[541,2,2,805,807],[542,1,1,807,808],[556,1,1,808,809],[578,1,1,809,810],[580,2,1,810,811],[582,5,5,811,816],[583,2,2,816,818],[584,1,1,818,819],[586,1,1,819,820],[589,1,1,820,821],[596,24,23,821,844],[607,1,1,844,845],[614,1,1,845,846],[618,1,1,846,847],[622,1,1,847,848],[624,3,3,848,851],[625,1,1,851,852]]],[19,36,35,852,887,[[628,2,2,852,854],[631,2,2,854,856],[637,1,1,856,857],[638,1,1,857,858],[639,2,2,858,860],[640,2,2,860,862],[641,2,2,862,864],[642,2,2,864,866],[643,1,1,866,867],[644,1,1,867,868],[645,3,3,868,871],[649,2,2,871,873],[650,1,1,873,874],[651,1,1,874,875],[652,3,2,875,877],[653,2,2,877,879],[654,1,1,879,880],[656,3,3,880,883],[657,3,3,883,886],[658,1,1,886,887]]],[20,24,22,887,909,[[659,3,3,887,890],[663,4,3,890,893],[664,1,1,893,894],[665,2,2,894,896],[666,4,4,896,900],[667,2,2,900,902],[668,4,4,902,906],[670,4,3,906,909]]],[22,47,45,909,954,[[679,1,1,909,910],[680,2,2,910,912],[686,2,2,912,914],[687,1,1,914,915],[694,1,1,915,916],[702,1,1,916,917],[706,2,2,917,919],[707,3,3,919,922],[708,2,2,922,924],[709,1,1,924,925],[714,5,5,925,930],[715,5,4,930,934],[716,2,2,934,936],[717,5,5,936,941],[718,1,1,941,942],[719,1,1,942,943],[720,1,1,943,944],[722,1,1,944,945],[723,1,1,945,946],[728,1,1,946,947],[729,1,1,947,948],[733,1,1,948,949],[736,1,1,949,950],[737,2,2,950,952],[744,3,2,952,954]]],[23,204,183,954,1137,[[745,7,7,954,961],[746,3,3,961,964],[747,1,1,964,965],[749,3,2,965,967],[750,2,2,967,969],[751,8,7,969,976],[752,1,1,976,977],[753,2,1,977,978],[754,1,1,978,979],[755,7,6,979,985],[757,5,5,985,990],[758,3,2,990,992],[759,2,1,992,993],[760,2,2,993,995],[761,2,2,995,997],[762,5,4,997,1001],[763,3,3,1001,1004],[764,2,2,1004,1006],[765,2,2,1006,1008],[766,5,5,1008,1013],[767,12,9,1013,1022],[768,1,1,1022,1023],[769,5,5,1023,1028],[770,10,9,1028,1037],[771,5,5,1037,1042],[772,4,4,1042,1046],[773,6,6,1046,1052],[774,3,3,1052,1055],[775,2,2,1055,1057],[776,7,6,1057,1063],[777,4,4,1063,1067],[778,7,7,1067,1074],[779,4,4,1074,1078],[780,19,16,1078,1094],[781,3,3,1094,1097],[782,9,7,1097,1104],[783,2,2,1104,1106],[784,3,3,1106,1109],[786,7,5,1109,1114],[787,3,2,1114,1116],[788,9,9,1116,1125],[789,2,1,1125,1126],[790,2,2,1126,1128],[791,1,1,1128,1129],[792,1,1,1129,1130],[793,1,1,1130,1131],[794,1,1,1131,1132],[795,4,4,1132,1136],[796,1,1,1136,1137]]],[25,82,79,1137,1216,[[802,1,1,1137,1138],[803,3,2,1138,1140],[804,5,5,1140,1145],[807,2,2,1145,1147],[808,1,1,1147,1148],[810,1,1,1148,1149],[812,2,2,1149,1151],[813,10,8,1151,1159],[814,3,3,1159,1162],[815,3,3,1162,1165],[816,1,1,1165,1166],[817,2,2,1166,1168],[818,2,2,1168,1170],[819,1,1,1170,1171],[821,3,3,1171,1174],[822,3,3,1174,1177],[823,3,3,1177,1180],[824,1,1,1180,1181],[825,3,3,1181,1184],[826,2,2,1184,1186],[827,1,1,1186,1187],[828,1,1,1187,1188],[829,3,3,1188,1191],[830,2,2,1191,1193],[831,2,2,1193,1195],[832,1,1,1195,1196],[833,2,2,1196,1198],[834,6,6,1198,1204],[835,3,3,1204,1207],[836,2,2,1207,1209],[837,3,3,1209,1212],[838,2,2,1212,1214],[839,2,2,1214,1216]]],[26,21,15,1216,1231,[[850,3,3,1216,1219],[858,5,4,1219,1223],[859,11,6,1223,1229],[861,2,2,1229,1231]]],[27,4,4,1231,1235,[[862,1,1,1231,1232],[865,1,1,1232,1233],[871,1,1,1233,1234],[875,1,1,1234,1235]]],[28,2,2,1235,1237,[[876,1,1,1235,1236],[877,1,1,1236,1237]]],[29,10,10,1237,1247,[[879,1,1,1237,1238],[881,2,2,1238,1240],[882,1,1,1240,1241],[883,1,1,1241,1242],[884,1,1,1242,1243],[885,2,2,1243,1245],[886,2,2,1245,1247]]],[31,5,5,1247,1252,[[889,1,1,1247,1248],[891,3,3,1248,1251],[892,1,1,1251,1252]]],[32,3,3,1252,1255,[[893,1,1,1252,1253],[894,1,1,1253,1254],[896,1,1,1254,1255]]],[35,2,2,1255,1257,[[906,1,1,1255,1256],[907,1,1,1256,1257]]],[36,7,7,1257,1264,[[909,3,3,1257,1260],[910,4,4,1260,1264]]],[37,20,19,1264,1283,[[911,5,4,1264,1268],[914,2,2,1268,1270],[916,1,1,1270,1271],[917,5,5,1271,1276],[918,4,4,1276,1280],[919,1,1,1280,1281],[921,1,1,1281,1282],[922,1,1,1282,1283]]],[38,3,3,1283,1286,[[925,1,1,1283,1284],[926,1,1,1284,1285],[927,1,1,1285,1286]]]],[267,315,361,364,438,449,465,478,479,503,505,506,513,524,539,548,563,567,600,619,621,624,641,643,657,761,769,808,861,864,874,947,994,998,999,1091,1094,1097,1156,1166,1168,1173,1223,1227,1232,1268,1272,1297,1308,1326,1330,1331,1334,1342,1348,1385,1450,1452,1550,1568,1569,1611,1616,1629,1631,1641,1643,1645,1651,1720,1722,1723,1741,1746,1747,1748,1762,1763,1840,1851,1901,1951,1963,1979,2010,2013,2015,2016,2017,2018,2021,2022,2025,2032,2033,2034,2035,2052,2122,2151,2152,2180,2181,2185,2191,2337,2466,2477,2490,2497,2523,2524,2532,2535,2808,2832,2922,2953,2959,2984,3237,3439,4047,4048,4065,4101,4128,4147,4184,4225,4243,4264,4330,4382,4383,4395,4410,4413,4419,4421,4432,4489,4649,4650,4680,4687,4738,4885,4893,4906,4909,4910,4914,4915,4917,4924,4926,4945,4964,5001,5006,5013,5014,5016,5017,5025,5034,5036,5040,5058,5075,5081,5092,5162,5167,5188,5190,5226,5268,5272,5275,5283,5286,5321,5328,5329,5334,5361,5365,5368,5369,5372,5373,5374,5375,5383,5402,5403,5404,5405,5406,5410,5421,5426,5484,5487,5490,5494,5496,5504,5509,5514,5519,5526,5530,5543,5547,5588,5593,5611,5625,5669,5680,5688,5698,5708,5709,5722,5729,5740,5752,5756,5758,5802,5803,5804,5805,5864,5869,5883,5889,5890,5902,5920,5938,5959,6010,6029,6036,6037,6061,6122,6193,6194,6197,6376,6426,6450,6456,6458,6459,6474,6475,6502,6505,6549,6587,6588,6683,6757,6784,6839,6840,6857,6866,6896,6901,6965,7000,7003,7021,7043,7048,7061,7063,7113,7190,7197,7235,7263,7277,7283,7287,7293,7294,7295,7297,7298,7313,7375,7379,7390,7401,7412,7418,7420,7434,7449,7450,7451,7476,7520,7561,7570,7571,7573,7583,7584,7586,7613,7629,7641,7645,7647,7648,7649,7684,7696,7699,7700,7702,7713,7732,7751,7753,7769,7774,7780,7784,7802,7845,7846,7848,7855,7870,7873,7885,7897,7898,7921,7924,7952,7960,7962,7963,8002,8026,8055,8089,8092,8094,8098,8184,8187,8197,8201,8205,8208,8270,8277,8278,8284,8286,8292,8295,8298,8300,8307,8337,8338,8339,8350,8352,8359,8368,8369,8371,8373,8374,8375,8376,8377,8378,8392,8395,8400,8417,8424,8425,8449,8453,8455,8468,8483,8491,8522,8540,8553,8554,8571,8575,8603,8654,8695,8696,8703,8705,8711,8724,8731,8744,8774,8784,8793,8797,8800,8808,8812,8826,8827,8828,8871,8885,8907,8908,8934,9005,9011,9041,9044,9066,9082,9085,9086,9104,9118,9135,9149,9157,9158,9160,9166,9167,9173,9175,9181,9185,9186,9188,9189,9193,9195,9201,9202,9204,9210,9216,9217,9218,9223,9231,9236,9237,9247,9254,9256,9272,9278,9280,9284,9288,9290,9295,9297,9303,9310,9317,9318,9319,9322,9325,9330,9332,9333,9334,9341,9342,9362,9365,9372,9377,9396,9412,9417,9420,9432,9443,9452,9455,9468,9478,9479,9485,9493,9499,9518,9519,9525,9540,9549,9550,9551,9573,9588,9644,9647,9660,9661,9665,9685,9686,9692,9704,9708,9709,9723,9726,9729,9740,9750,9761,9782,9792,9803,9810,9827,9834,9869,9879,9883,9911,9914,9921,9924,9931,9936,9937,9940,9946,9951,9956,9961,9982,9992,9994,9995,10044,10051,10052,10060,10061,10065,10067,10077,10082,10102,10107,10111,10113,10114,10115,10117,10118,10136,10144,10154,10156,10158,10161,10163,10165,10167,10168,10181,10182,10189,10193,10204,10207,10252,10407,10672,10676,10683,10764,10806,10835,10857,10866,10869,10878,10886,10938,10940,10941,10942,10946,10953,10972,11010,11051,11109,11110,11133,11164,11193,11203,11292,11299,11359,11360,11361,11366,11369,11370,11388,11393,11401,11402,11404,11410,11416,11418,11444,11449,11452,11475,11498,11520,11546,11554,11560,11579,11582,11587,11621,11660,11675,11682,11730,11754,11762,11790,11806,11821,11827,11831,11832,11839,11859,11870,11876,11883,11907,11926,11927,11949,11952,11954,11959,11960,11961,11963,11964,11972,11988,11992,11993,12001,12009,12014,12015,12017,12101,12174,12184,12218,12240,12241,12256,12257,12261,12264,12265,12266,12268,12297,12300,12304,12325,12326,12327,12388,12390,12391,12394,12395,12405,12406,12407,12408,12409,12420,12497,12502,12505,12506,12519,12611,12612,12647,12671,12688,12714,12715,12719,12720,12721,12723,12725,12728,12732,12739,12746,12747,12748,12751,12762,12765,12771,12774,12784,12787,12793,12794,12796,12803,12815,12822,12831,12834,12835,12854,12860,12864,12865,12866,12868,12904,12932,12942,12981,13065,13110,13206,13214,13241,13325,13481,13554,13628,13632,13639,13651,13663,13718,13900,13929,14107,14171,14205,14370,14372,14430,14441,14550,14598,14601,14685,14714,14753,14759,14760,14765,14802,14853,14855,14863,15194,15516,15569,15614,15625,15633,15634,15648,15663,15675,15719,15758,15808,15907,15914,15915,15923,15926,15940,15941,15947,15955,15963,15972,15979,15987,15999,16003,16005,16012,16028,16037,16045,16058,16059,16067,16145,16225,16280,16325,16366,16369,16370,16379,16406,16423,16494,16510,16675,16701,16725,16744,16752,16760,16787,16795,16808,16830,16860,16882,16905,16909,16914,17027,17032,17052,17105,17115,17124,17147,17163,17180,17236,17243,17244,17252,17257,17259,17285,17316,17323,17325,17399,17400,17404,17428,17437,17450,17459,17461,17462,17463,17491,17492,17505,17506,17507,17513,17533,17534,17536,17664,17686,17688,17817,17827,17837,17982,18098,18177,18178,18204,18211,18214,18229,18238,18252,18335,18342,18343,18351,18352,18356,18358,18369,18374,18394,18397,18414,18416,18417,18418,18420,18428,18479,18496,18559,18584,18666,18689,18751,18799,18813,18821,18924,18927,18947,18948,18950,18955,18957,18958,18959,18966,18969,18996,19014,19072,19086,19099,19108,19120,19121,19123,19127,19141,19142,19146,19162,19195,19202,19227,19228,19229,19232,19234,19236,19268,19269,19274,19276,19278,19294,19310,19331,19337,19346,19372,19377,19385,19386,19389,19402,19409,19410,19422,19423,19430,19441,19451,19455,19456,19458,19459,19483,19493,19500,19502,19506,19512,19513,19514,19520,19522,19528,19535,19537,19542,19547,19564,19573,19574,19577,19579,19582,19584,19587,19592,19593,19597,19608,19610,19612,19614,19624,19625,19627,19630,19636,19645,19654,19655,19658,19665,19668,19669,19671,19701,19714,19732,19737,19739,19748,19757,19758,19776,19789,19794,19798,19802,19805,19806,19807,19809,19813,19819,19824,19835,19836,19837,19843,19844,19846,19848,19850,19852,19853,19855,19858,19859,19860,19862,19866,19869,19870,19874,19876,19880,19891,19896,19899,19900,19909,19916,19919,19922,19938,19939,19942,19944,19957,19978,19979,19980,19982,19990,19998,20005,20011,20014,20026,20027,20030,20034,20036,20038,20039,20041,20046,20058,20074,20107,20161,20167,20271,20272,20273,20276,20310,20467,20498,20499,20506,20508,20512,20518,20519,20564,20566,20578,20633,20669,20680,20681,20688,20697,20701,20703,20705,20706,20708,20709,20710,20714,20733,20740,20743,20755,20763,20797,20826,20836,20850,20897,20940,20942,20945,20952,20962,20977,20993,20999,21008,21057,21071,21076,21084,21086,21101,21122,21158,21168,21177,21184,21200,21205,21224,21231,21249,21265,21281,21287,21303,21310,21311,21312,21314,21320,21322,21345,21357,21360,21363,21375,21401,21412,21426,21435,21742,21751,21757,21990,22000,22011,22013,22016,22021,22024,22026,22027,22030,22085,22090,22095,22134,22229,22284,22292,22322,22365,22396,22402,22411,22424,22463,22474,22480,22492,22493,22532,22559,22561,22564,22570,22580,22602,22622,22788,22810,22841,22843,22852,22856,22860,22865,22875,22879,22884,22885,22891,22928,22930,22956,22963,22966,22969,22970,22974,22977,22985,22992,22994,23000,23039,23046,23090,23120,23133]]],["+",[118,116,[[0,4,4,0,4,[[11,1,1,0,1],[18,1,1,1,2],[19,1,1,2,3],[42,1,1,3,4]]],[1,5,5,4,9,[[53,1,1,4,5],[57,1,1,5,6],[58,1,1,6,7],[65,1,1,7,8],[72,1,1,8,9]]],[3,2,2,9,11,[[139,1,1,9,10],[141,1,1,10,11]]],[4,9,8,11,19,[[154,1,1,11,12],[156,1,1,12,13],[164,1,1,13,14],[169,2,2,14,16],[174,3,2,16,18],[175,1,1,18,19]]],[5,4,4,19,23,[[190,1,1,19,20],[197,1,1,20,21],[208,2,2,21,23]]],[8,5,5,23,28,[[244,1,1,23,24],[253,1,1,24,25],[255,1,1,25,26],[260,1,1,26,27],[263,1,1,27,28]]],[9,5,5,28,33,[[273,1,1,28,29],[279,1,1,29,30],[284,2,2,30,32],[285,1,1,32,33]]],[10,15,15,33,48,[[294,1,1,33,34],[302,3,3,34,37],[304,2,2,37,39],[305,3,3,39,42],[306,4,4,42,46],[312,2,2,46,48]]],[11,28,28,48,76,[[313,1,1,48,49],[316,1,1,49,50],[320,1,1,50,51],[322,2,2,51,53],[324,1,1,53,54],[325,2,2,54,56],[326,3,3,56,59],[327,7,7,59,66],[328,1,1,66,67],[332,4,4,67,71],[333,2,2,71,73],[334,1,1,73,74],[335,1,1,74,75],[336,1,1,75,76]]],[12,2,2,76,78,[[353,1,1,76,77],[364,1,1,77,78]]],[13,3,3,78,81,[[375,1,1,78,79],[376,1,1,79,80],[385,1,1,80,81]]],[14,1,1,81,82,[[412,1,1,81,82]]],[15,3,3,82,85,[[414,1,1,82,83],[417,2,2,83,85]]],[16,5,5,85,90,[[427,1,1,85,86],[431,3,3,86,89],[435,1,1,89,90]]],[17,1,1,90,91,[[439,1,1,90,91]]],[18,6,6,91,97,[[522,1,1,91,92],[542,1,1,92,93],[556,1,1,93,94],[582,1,1,94,95],[596,1,1,95,96],[614,1,1,96,97]]],[19,5,5,97,102,[[640,1,1,97,98],[643,1,1,98,99],[654,1,1,99,100],[656,1,1,100,101],[657,1,1,101,102]]],[22,4,4,102,106,[[717,3,3,102,105],[728,1,1,105,106]]],[23,6,6,106,112,[[751,1,1,106,107],[758,1,1,107,108],[776,1,1,108,109],[782,1,1,109,110],[786,1,1,110,111],[788,1,1,111,112]]],[25,3,2,112,114,[[803,2,1,112,113],[813,1,1,113,114]]],[29,2,2,114,116,[[881,1,1,114,115],[884,1,1,115,116]]]],[315,465,513,1308,1611,1722,1746,1951,2151,4419,4489,4945,5025,5272,5365,5372,5494,5496,5504,5920,6122,6450,6458,7412,7702,7732,7897,7962,8201,8339,8483,8491,8554,8871,9157,9160,9167,9237,9247,9256,9272,9280,9288,9297,9303,9310,9519,9525,9551,9644,9750,9803,9827,9869,9879,9883,9911,9914,9924,9931,9936,9940,9946,9951,9956,9961,9982,10111,10113,10115,10118,10136,10144,10154,10193,10207,10857,11133,11366,11404,11582,12264,12327,12390,12391,12739,12794,12796,12803,12868,12932,14601,14863,15194,15633,16059,16225,16752,16860,17180,17236,17259,18414,18416,18418,18666,19141,19294,19748,19909,19979,20030,20498,20705,22402,22463]]],["acts",[50,49,[[10,14,13,0,13,[[300,1,1,0,1],[301,2,1,1,2],[304,2,2,2,4],[305,3,3,4,7],[306,4,4,7,11],[312,2,2,11,13]]],[11,22,22,13,35,[[313,1,1,13,14],[320,1,1,14,15],[322,1,1,15,16],[324,1,1,16,17],[325,2,2,17,19],[326,3,3,19,22],[327,7,7,22,29],[328,1,1,29,30],[332,1,1,30,31],[333,2,2,31,33],[335,1,1,33,34],[336,1,1,34,35]]],[12,1,1,35,36,[[366,1,1,35,36]]],[13,13,13,36,49,[[375,2,2,36,38],[378,1,1,38,39],[379,1,1,39,40],[382,1,1,40,41],[386,1,1,41,42],[391,1,1,42,43],[392,1,1,43,44],[393,1,1,44,45],[394,1,1,45,46],[398,1,1,46,47],[401,1,1,47,48],[402,1,1,48,49]]]],[9085,9149,9237,9247,9256,9272,9280,9288,9297,9303,9310,9519,9525,9551,9750,9827,9869,9879,9883,9911,9914,9924,9931,9936,9940,9946,9951,9956,9961,9982,10118,10136,10144,10193,10207,11193,11369,11393,11452,11475,11520,11621,11730,11754,11762,11790,11907,11992,12001]]],["advice",[2,2,[[6,1,1,0,1,[[230,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]]],[7061,8554]]],["affairs",[2,2,[[12,1,1,0,1,[[363,1,1,0,1]]],[18,1,1,1,2,[[589,1,1,1,2]]]],[11109,15808]]],["answer",[3,3,[[9,1,1,0,1,[[290,1,1,0,1]]],[13,1,1,1,2,[[376,1,1,1,2]]],[19,1,1,2,3,[[651,1,1,2,3]]]],[8705,11401,17105]]],["answered",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7648]]],["any",[2,2,[[4,2,2,0,2,[[165,1,1,0,1],[171,1,1,1,2]]]],[5283,5426]]],["book",[7,5,[[12,3,1,0,1,[[366,3,1,0,1]]],[13,4,4,1,5,[[375,1,1,1,2],[378,1,1,2,3],[386,1,1,3,4],[399,1,1,4,5]]]],[11193,11393,11452,11621,11926]]],["business",[8,7,[[4,1,1,0,1,[[176,1,1,0,1]]],[5,2,2,1,3,[[188,2,2,1,3]]],[6,2,2,3,5,[[228,2,2,3,5]]],[8,3,2,5,7,[[256,3,2,5,7]]]],[5530,5883,5889,7000,7021,7774,7780]]],["care",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7420]]],["case",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5410]]],["cause",[6,6,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[5,2,2,2,4,[[191,1,1,2,3],[206,1,1,3,4]]],[8,1,1,4,5,[[252,1,1,4,5]]],[10,1,1,5,6,[[301,1,1,5,6]]]],[2122,4909,5938,6376,7647,9135]]],["causes",[2,2,[[1,2,2,0,2,[[67,2,2,0,2]]]],[2018,2025]]],["chronicles",[2,2,[[15,1,1,0,1,[[424,1,1,0,1]]],[16,1,1,1,2,[[427,1,1,1,2]]]],[12647,12747]]],["commandment",[15,15,[[5,1,1,0,1,[[194,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]],[9,1,1,2,3,[[278,1,1,2,3]]],[12,1,1,3,4,[[365,1,1,3,4]]],[13,1,1,4,5,[[397,1,1,4,5]]],[16,8,8,5,13,[[426,2,2,5,7],[427,1,1,7,8],[428,1,1,8,9],[429,1,1,9,10],[433,2,2,10,12],[434,1,1,12,13]]],[26,2,2,13,15,[[858,2,2,13,15]]]],[6010,7573,8295,11164,11859,12714,12721,12732,12762,12765,12831,12834,12835,22011,22013]]],["commandments",[5,5,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[162,1,1,2,3]]],[8,1,1,3,4,[[250,1,1,3,4]]],[18,1,1,4,5,[[580,1,1,4,5]]]],[2524,5017,5190,7571,15569]]],["communication",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8098]]],["conferred",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8724]]],["counsel",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4680]]],["dealings",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7263]]],["decree",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11832]]],["deed",[3,3,[[9,1,1,0,1,[[278,1,1,0,1]]],[16,2,2,1,3,[[426,2,2,1,3]]]],[8300,12719,12720]]],["deeds",[2,2,[[13,1,1,0,1,[[401,1,1,0,1]]],[23,1,1,1,2,[[749,1,1,1,2]]]],[11993,19086]]],["disease",[1,1,[[18,1,1,0,1,[[518,1,1,0,1]]]],[14550]]],["done",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7313]]],["due",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12611]]],["duty",[2,2,[[13,1,1,0,1,[[374,1,1,0,1]]],[14,1,1,1,2,[[405,1,1,1,2]]]],[11360,12101]]],["effect",[1,1,[[25,1,1,0,1,[[813,1,1,0,1]]]],[20703]]],["errand",[3,3,[[0,1,1,0,1,[[23,1,1,0,1]]],[6,1,1,1,2,[[213,1,1,1,2]]],[11,1,1,2,3,[[321,1,1,2,3]]]],[624,6587,9761]]],["hurt",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7751]]],["language",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14171]]],["manner",[15,14,[[0,3,3,0,3,[[17,1,1,0,1],[31,1,1,1,2],[38,1,1,2,3]]],[1,1,1,3,4,[[71,1,1,3,4]]],[4,1,1,4,5,[[167,1,1,4,5]]],[8,4,3,5,8,[[252,3,2,5,7],[253,1,1,7,8]]],[9,3,3,8,11,[[280,1,1,8,9],[281,1,1,9,10],[283,1,1,10,11]]],[15,2,2,11,13,[[418,2,2,11,13]]],[16,1,1,13,14,[[426,1,1,13,14]]]],[449,947,1168,2122,5321,7645,7648,7700,8359,8395,8455,12405,12406,12715]]],["matter",[44,42,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,4,3,1,4,[[67,4,3,1,4]]],[3,4,3,4,7,[[132,1,1,4,5],[141,2,1,5,6],[147,1,1,6,7]]],[4,3,3,7,10,[[155,1,1,7,8],[171,1,1,8,9],[174,1,1,9,10]]],[7,1,1,10,11,[[234,1,1,10,11]]],[8,4,4,11,15,[[245,1,1,11,12],[255,2,2,12,14],[265,1,1,14,15]]],[9,3,3,15,18,[[267,1,1,15,16],[285,1,1,16,17],[286,1,1,17,18]]],[10,2,2,18,20,[[298,1,1,18,19],[305,1,1,19,20]]],[12,2,2,20,22,[[363,1,1,20,21],[364,1,1,21,22]]],[13,2,2,22,24,[[374,1,1,22,23],[390,1,1,23,24]]],[14,4,4,24,28,[[412,4,4,24,28]]],[16,1,1,28,29,[[427,1,1,28,29]]],[17,1,1,29,30,[[454,1,1,29,30]]],[18,2,2,30,32,[[522,1,1,30,31],[541,1,1,31,32]]],[19,4,4,32,36,[[638,1,1,32,33],[644,1,1,33,34],[645,1,1,34,35],[652,1,1,35,36]]],[20,2,2,36,38,[[668,1,1,36,37],[670,1,1,37,38]]],[23,1,1,38,39,[[782,1,1,38,39]]],[25,1,1,39,40,[[810,1,1,39,40]]],[26,2,2,40,42,[[850,1,1,40,41],[858,1,1,41,42]]]],[600,2015,2021,2025,4243,4489,4680,5001,5421,5496,7190,7434,7753,7769,8002,8026,8553,8575,9044,9254,11109,11110,11361,11682,12256,12261,12266,12268,12747,13325,14598,14855,16701,16882,16914,17115,17513,17536,19922,20633,21751,22011]]],["matters",[15,14,[[1,1,1,0,1,[[73,1,1,0,1]]],[4,1,1,1,2,[[169,1,1,1,2]]],[8,1,1,2,3,[[251,1,1,2,3]]],[9,3,3,3,6,[[277,1,1,3,4],[281,1,1,4,5],[285,1,1,5,6]]],[13,2,1,6,7,[[385,2,1,6,7]]],[15,1,1,7,8,[[423,1,1,7,8]]],[16,3,3,8,11,[[428,1,1,8,9],[434,2,2,9,11]]],[17,1,1,11,12,[[468,1,1,11,12]]],[18,1,1,12,13,[[512,1,1,12,13]]],[26,1,1,13,14,[[850,1,1,13,14]]]],[2191,5372,7613,8278,8392,8540,11587,12612,12751,12865,12866,13663,14430,21757]]],["message",[3,3,[[6,1,1,0,1,[[213,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[19,1,1,2,3,[[653,1,1,2,3]]]],[6588,9420,17147]]],["nor",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13900]]],["of",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11926]]],["oracle",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8449]]],["ought",[2,2,[[1,1,1,0,1,[[54,1,1,0,1]]],[5,1,1,1,2,[[207,1,1,1,2]]]],[1643,6426]]],["parts",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8934]]],["portion",[4,4,[[13,1,1,0,1,[[397,1,1,0,1]]],[15,1,1,1,2,[[424,1,1,1,2]]],[17,1,1,2,3,[[461,1,1,2,3]]],[23,1,1,3,4,[[796,1,1,3,4]]]],[11870,12671,13481,20310]]],["promise",[6,5,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[367,1,1,1,2]]],[15,3,2,2,4,[[417,3,2,2,4]]],[18,1,1,4,5,[[582,1,1,4,5]]]],[9041,11203,12394,12395,15648]]],["provision",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21742]]],["purpose",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12497]]],["questions",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9082,11366]]],["rate",[4,4,[[10,1,1,0,1,[[300,1,1,0,1]]],[11,1,1,1,2,[[337,1,1,1,2]]],[13,2,2,2,4,[[374,1,1,2,3],[375,1,1,3,4]]]],[9104,10252,11359,11388]]],["reason",[1,1,[[10,1,1,0,1,[[299,1,1,0,1]]]],[9066]]],["report",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9085,11369]]],["request",[2,2,[[9,2,2,0,2,[[280,2,2,0,2]]]],[8371,8378]]],["said",[7,7,[[0,1,1,0,1,[[46,1,1,0,1]]],[8,1,1,1,2,[[244,1,1,1,2]]],[9,1,1,2,3,[[279,1,1,2,3]]],[10,2,2,3,5,[[303,1,1,3,4],[307,1,1,4,5]]],[16,2,2,5,7,[[430,2,2,5,7]]]],[1450,7401,8352,9201,9330,12784,12787]]],["sake",[1,1,[[0,1,1,0,1,[[19,1,1,0,1]]]],[506]]],["say",[1,1,[[10,1,1,0,1,[[292,1,1,0,1]]]],[8784]]],["saying",[20,20,[[0,1,1,0,1,[[36,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[9,3,3,3,6,[[283,2,2,3,5],[290,1,1,5,6]]],[10,7,7,6,13,[[292,1,1,6,7],[302,1,1,7,8],[303,2,2,8,10],[305,1,1,10,11],[307,1,1,11,12],[310,1,1,12,13]]],[11,4,4,13,17,[[314,1,1,13,14],[317,1,1,14,15],[320,1,1,15,16],[322,1,1,16,17]]],[12,1,1,17,18,[[358,1,1,17,18]]],[16,1,1,18,19,[[426,1,1,18,19]]],[31,1,1,19,20,[[892,1,1,19,20]]]],[1094,4915,7684,8453,8455,8711,8808,9166,9188,9216,9278,9332,9412,9573,9661,9729,9810,10953,12723,22570]]],["sayings",[5,5,[[3,1,1,0,1,[[130,1,1,0,1]]],[6,1,1,1,2,[[223,1,1,1,2]]],[8,1,1,2,3,[[260,1,1,2,3]]],[13,2,2,3,5,[[379,1,1,3,4],[399,1,1,4,5]]]],[4147,6901,7873,11475,11927]]],["sentence",[3,3,[[4,3,3,0,3,[[169,3,3,0,3]]]],[5373,5374,5375]]],["some",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5526]]],["sort",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12405]]],["spakest",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20107]]],["speech",[7,7,[[0,1,1,0,1,[[10,1,1,0,1]]],[4,2,2,1,3,[[174,2,2,1,3]]],[9,2,2,3,5,[[280,1,1,3,4],[285,1,1,4,5]]],[10,1,1,5,6,[[293,1,1,5,6]]],[23,1,1,6,7,[[775,1,1,6,7]]]],[267,5484,5487,8376,8522,8826,19714]]],["spoken",[2,2,[[10,1,1,0,1,[[308,1,1,0,1]]],[17,1,1,1,2,[[467,1,1,1,2]]]],[9365,13632]]],["talk",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[19,1,1,1,2,[[641,1,1,1,2]]]],[13206,16795]]],["task",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1651]]],["tasks",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1645]]],["thing",[178,170,[[0,15,15,0,15,[[17,1,1,0,1],[18,2,2,1,3],[19,1,1,3,4],[20,2,2,4,6],[21,1,1,6,7],[23,1,1,7,8],[29,1,1,8,9],[33,2,2,9,11],[40,3,3,11,14],[43,1,1,14,15]]],[1,16,16,15,31,[[50,1,1,15,16],[51,2,2,16,18],[58,2,2,18,20],[61,1,1,20,21],[65,2,2,21,23],[67,5,5,23,28],[78,1,1,28,29],[82,1,1,29,30],[84,1,1,30,31]]],[2,6,6,31,37,[[93,1,1,31,32],[94,1,1,32,33],[97,1,1,33,34],[98,1,1,34,35],[106,1,1,35,36],[112,1,1,36,37]]],[3,6,6,37,43,[[134,1,1,37,38],[136,1,1,38,39],[146,1,1,39,40],[147,1,1,40,41],[148,1,1,41,42],[152,1,1,42,43]]],[4,18,16,43,59,[[153,2,2,43,45],[156,1,1,45,46],[165,1,1,46,47],[167,2,2,47,49],[169,2,2,49,51],[170,2,1,51,52],[174,1,1,52,53],[175,3,3,53,56],[176,2,2,56,58],[184,2,1,58,59]]],[5,6,5,59,64,[[195,1,1,59,60],[200,1,1,60,61],[207,1,1,61,62],[208,1,1,62,63],[209,2,1,63,64]]],[6,9,8,64,72,[[216,2,1,64,65],[221,1,1,65,66],[228,2,2,66,68],[229,2,2,68,70],[230,1,1,70,71],[231,1,1,71,72]]],[7,1,1,72,73,[[234,1,1,72,73]]],[8,13,12,73,85,[[238,3,2,73,75],[243,1,1,75,76],[247,1,1,76,77],[249,1,1,77,78],[253,1,1,78,79],[255,1,1,79,80],[257,1,1,80,81],[259,1,1,81,82],[261,1,1,82,83],[263,2,2,83,85]]],[9,20,20,85,105,[[268,1,1,85,86],[269,1,1,86,87],[277,3,3,87,90],[278,3,3,90,93],[279,2,2,93,95],[280,5,5,95,100],[281,3,3,100,103],[283,1,1,103,104],[290,1,1,104,105]]],[10,13,13,105,118,[[291,1,1,105,106],[293,2,2,106,108],[300,1,1,108,109],[301,1,1,109,110],[302,2,2,110,112],[303,2,2,112,114],[304,2,2,114,116],[310,2,2,116,118]]],[11,10,9,118,127,[[317,3,2,118,120],[318,1,1,120,121],[319,2,2,121,123],[320,1,1,123,124],[323,1,1,124,125],[329,1,1,125,126],[332,1,1,126,127]]],[12,4,4,127,131,[[350,1,1,127,128],[354,1,1,128,129],[358,2,2,129,131]]],[13,5,5,131,136,[[377,1,1,131,132],[389,2,2,132,134],[395,1,1,134,135],[396,1,1,135,136]]],[14,2,2,136,138,[[411,1,1,136,137],[412,1,1,137,138]]],[15,2,2,138,140,[[414,1,1,138,139],[425,1,1,139,140]]],[16,4,4,140,144,[[427,2,2,140,142],[430,1,1,142,143],[433,1,1,143,144]]],[17,2,2,144,146,[[439,1,1,144,145],[450,1,1,145,146]]],[18,2,2,146,148,[[578,1,1,146,147],[618,1,1,147,148]]],[19,1,1,148,149,[[652,1,1,148,149]]],[20,6,6,149,155,[[659,1,1,149,150],[663,1,1,150,151],[665,1,1,151,152],[666,3,3,152,155]]],[22,1,1,155,156,[[716,1,1,155,156]]],[23,12,12,156,168,[[751,1,1,156,157],[766,1,1,157,158],[776,1,1,158,159],[777,1,1,159,160],[782,2,2,160,162],[784,2,2,162,164],[786,2,2,164,166],[788,2,2,166,168]]],[25,1,1,168,169,[[815,1,1,168,169]]],[26,3,1,169,170,[[859,3,1,169,170]]]],[438,478,479,505,524,539,563,641,861,994,999,1223,1227,1232,1331,1550,1568,1569,1747,1748,1840,1963,1979,2010,2013,2016,2017,2022,2337,2490,2535,2808,2832,2922,2959,3237,3439,4264,4330,4649,4687,4738,4885,4906,4924,5036,5286,5329,5334,5368,5369,5406,5490,5509,5514,5519,5543,5547,5805,6061,6193,6426,6459,6474,6683,6866,7000,7003,7043,7048,7063,7113,7190,7287,7293,7375,7476,7520,7696,7732,7802,7845,7921,7952,7960,8055,8094,8270,8284,8286,8292,8298,8307,8337,8350,8369,8371,8374,8376,8377,8400,8424,8425,8468,8695,8744,8826,8827,9082,9118,9175,9181,9217,9218,9223,9231,9417,9432,9660,9665,9685,9709,9726,9740,9834,9995,10107,10764,10886,10941,10942,11418,11660,11675,11827,11831,12240,12265,12326,12688,12728,12746,12793,12822,12942,13214,15516,16280,17115,17325,17399,17437,17459,17461,17463,18397,19142,19458,19758,19789,19900,19909,19944,19957,19978,19979,20014,20027,20740,22016]]],["things",[50,49,[[0,10,10,0,10,[[14,1,1,0,1],[19,1,1,1,2],[21,2,2,2,4],[23,2,2,4,6],[28,1,1,6,7],[38,1,1,7,8],[39,1,1,8,9],[47,1,1,9,10]]],[2,1,1,10,11,[[97,1,1,10,11]]],[4,4,4,11,15,[[153,1,1,11,12],[156,2,2,12,14],[182,1,1,14,15]]],[5,4,3,15,18,[[209,3,2,15,17],[210,1,1,17,18]]],[7,1,1,18,19,[[235,1,1,18,19]]],[8,4,4,19,23,[[237,1,1,19,20],[238,1,1,20,21],[254,1,1,21,22],[260,1,1,22,23]]],[9,2,2,23,25,[[277,1,1,23,24],[279,1,1,24,25]]],[10,3,3,25,28,[[307,1,1,25,26],[308,1,1,26,27],[311,1,1,27,28]]],[11,3,3,28,31,[[329,2,2,28,30],[335,1,1,30,31]]],[12,1,1,31,32,[[341,1,1,31,32]]],[13,3,3,32,35,[[378,1,1,32,33],[385,1,1,33,34],[398,1,1,34,35]]],[14,1,1,35,36,[[409,1,1,35,36]]],[15,1,1,36,37,[[418,1,1,36,37]]],[16,3,3,37,40,[[427,1,1,37,38],[428,1,1,38,39],[434,1,1,39,40]]],[20,2,2,40,42,[[659,1,1,40,41],[664,1,1,41,42]]],[22,1,1,42,43,[[720,1,1,42,43]]],[23,3,3,43,46,[[764,1,1,43,44],[770,1,1,44,45],[786,1,1,45,46]]],[25,2,2,46,48,[[812,1,1,46,47],[839,1,1,47,48]]],[37,1,1,48,49,[[918,1,1,48,49]]]],[361,503,548,567,619,657,808,1156,1173,1452,2953,4910,5013,5034,5709,6474,6475,6505,7197,7263,7293,7713,7898,8277,8338,9334,9377,9452,9992,9994,10182,10407,11449,11579,11876,12174,12409,12725,12748,12854,17323,17428,18496,19423,19582,19980,20680,21435,22992]]],["thought",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5328]]],["tidings",[4,4,[[1,1,1,0,1,[[82,1,1,0,1]]],[8,3,3,1,4,[[246,3,3,1,4]]]],[2477,7449,7450,7451]]],["what",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12218]]],["wherewith",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15940]]],["whit",[1,1,[[8,1,1,0,1,[[238,1,1,0,1]]]],[7294]]],["word",[427,418,[[0,6,6,0,6,[[14,2,2,0,2],[29,1,1,2,3],[36,1,1,3,4],[43,2,2,4,6]]],[1,8,8,6,14,[[57,3,3,6,9],[58,2,2,9,11],[61,1,1,11,12],[63,1,1,12,13],[81,1,1,13,14]]],[2,1,1,14,15,[[99,1,1,14,15]]],[3,11,11,15,26,[[127,1,1,15,16],[129,1,1,16,17],[130,1,1,17,18],[131,1,1,18,19],[138,4,4,19,23],[139,2,2,23,25],[146,1,1,25,26]]],[4,8,8,26,34,[[153,2,2,26,28],[156,1,1,28,29],[157,1,1,29,30],[161,1,1,30,31],[170,2,2,31,33],[182,1,1,33,34]]],[5,6,6,34,40,[[187,1,1,34,35],[192,1,1,35,36],[194,2,2,36,38],[200,2,2,38,40]]],[8,9,9,40,49,[[236,1,1,40,41],[238,3,3,41,44],[239,1,1,44,45],[244,1,1,45,46],[250,3,3,46,49]]],[9,9,9,49,58,[[269,1,1,49,50],[273,3,3,50,53],[280,2,2,53,55],[281,1,1,55,56],[290,2,2,56,58]]],[10,48,46,58,104,[[292,5,5,58,63],[296,2,2,63,65],[298,3,3,65,68],[302,3,2,68,70],[303,9,9,70,79],[304,1,1,79,80],[306,4,4,80,84],[307,6,6,84,90],[308,4,4,90,94],[309,1,1,94,95],[310,2,2,95,97],[311,3,3,97,100],[312,5,4,100,104]]],[11,20,20,104,124,[[313,2,2,104,106],[315,1,1,106,107],[316,1,1,107,108],[318,1,1,108,109],[319,2,2,109,111],[321,2,2,111,113],[326,1,1,113,114],[327,1,1,114,115],[330,2,2,115,117],[331,1,1,117,118],[332,3,3,118,121],[334,1,1,121,122],[335,1,1,122,123],[336,1,1,123,124]]],[12,11,11,124,135,[[347,1,1,124,125],[348,2,2,125,127],[352,1,1,127,128],[353,1,1,128,129],[354,2,2,129,131],[358,3,3,131,134],[359,1,1,134,135]]],[13,15,15,135,150,[[372,2,2,135,137],[376,1,1,137,138],[377,1,1,138,139],[378,1,1,139,140],[384,3,3,140,143],[396,1,1,143,144],[400,3,3,144,147],[401,1,1,147,148],[402,2,2,148,150]]],[14,2,2,150,152,[[403,1,1,150,151],[412,1,1,151,152]]],[15,1,1,152,153,[[413,1,1,152,153]]],[16,2,2,153,155,[[426,1,1,153,154],[432,1,1,154,155]]],[17,1,1,155,156,[[437,1,1,155,156]]],[18,36,35,156,191,[[494,1,1,156,157],[510,2,2,157,159],[533,3,2,159,161],[580,1,1,161,162],[582,3,3,162,165],[583,1,1,165,166],[584,1,1,166,167],[596,19,19,167,186],[607,1,1,186,187],[624,3,3,187,190],[625,1,1,190,191]]],[19,5,5,191,196,[[639,1,1,191,192],[640,1,1,192,193],[641,1,1,193,194],[642,1,1,194,195],[652,1,1,195,196]]],[20,1,1,196,197,[[666,1,1,196,197]]],[22,26,25,197,222,[[679,1,1,197,198],[680,2,2,198,200],[686,2,2,200,202],[687,1,1,202,203],[694,1,1,203,204],[702,1,1,204,205],[706,2,2,205,207],[707,1,1,207,208],[708,2,2,208,210],[714,1,1,210,211],[715,1,1,211,212],[716,1,1,212,213],[717,2,2,213,215],[718,1,1,215,216],[719,1,1,216,217],[722,1,1,217,218],[723,1,1,218,219],[733,1,1,219,220],[744,3,2,220,222]]],[23,96,91,222,313,[[745,5,5,222,227],[746,3,3,227,230],[749,1,1,230,231],[750,1,1,231,232],[751,3,2,232,234],[752,1,1,234,235],[753,2,1,235,236],[754,1,1,236,237],[755,1,1,237,238],[757,4,4,238,242],[758,2,2,242,244],[759,1,1,244,245],[760,1,1,245,246],[761,2,2,246,248],[762,3,3,248,251],[763,1,1,251,252],[764,1,1,252,253],[765,2,2,253,255],[766,3,3,255,258],[767,7,5,258,263],[768,1,1,263,264],[769,2,2,264,266],[770,2,2,266,268],[771,2,2,268,270],[772,3,3,270,273],[773,3,3,273,276],[774,1,1,276,277],[775,1,1,277,278],[776,5,4,278,282],[777,3,3,282,285],[778,5,5,285,290],[779,2,2,290,292],[780,2,2,292,294],[781,2,2,294,296],[782,1,1,296,297],[783,1,1,297,298],[784,1,1,298,299],[786,2,2,299,301],[787,1,1,301,302],[788,4,4,302,306],[789,1,1,306,307],[790,2,2,307,309],[791,1,1,309,310],[793,1,1,310,311],[794,1,1,311,312],[795,1,1,312,313]]],[25,66,66,313,379,[[802,1,1,313,314],[804,2,2,314,316],[807,2,2,316,318],[808,1,1,318,319],[812,1,1,319,320],[813,7,7,320,327],[814,3,3,327,330],[815,2,2,330,332],[816,1,1,332,333],[817,2,2,333,335],[818,2,2,335,337],[819,1,1,337,338],[821,3,3,338,341],[822,3,3,341,344],[823,3,3,344,347],[824,1,1,347,348],[825,3,3,348,351],[826,2,2,351,353],[827,1,1,353,354],[828,1,1,354,355],[829,3,3,355,358],[830,2,2,358,360],[831,2,2,360,362],[832,1,1,362,363],[833,2,2,363,365],[834,4,4,365,369],[835,3,3,369,372],[836,1,1,372,373],[837,3,3,373,376],[838,2,2,376,378],[839,1,1,378,379]]],[26,2,2,379,381,[[858,1,1,379,380],[859,1,1,380,381]]],[27,2,2,381,383,[[862,1,1,381,382],[865,1,1,382,383]]],[28,2,2,383,385,[[876,1,1,383,384],[877,1,1,384,385]]],[29,5,5,385,390,[[881,1,1,385,386],[882,1,1,386,387],[883,1,1,387,388],[885,1,1,388,389],[886,1,1,389,390]]],[31,4,4,390,394,[[889,1,1,390,391],[891,3,3,391,394]]],[32,2,2,394,396,[[893,1,1,394,395],[896,1,1,395,396]]],[35,2,2,396,398,[[906,1,1,396,397],[907,1,1,397,398]]],[36,6,6,398,404,[[909,2,2,398,400],[910,4,4,400,404]]],[37,13,13,404,417,[[911,2,2,404,406],[914,2,2,406,408],[916,1,1,408,409],[917,3,3,409,412],[918,2,2,412,414],[919,1,1,414,415],[921,1,1,415,416],[922,1,1,416,417]]],[38,1,1,417,418,[[925,1,1,417,418]]]],[361,364,864,1097,1326,1342,1720,1723,1741,1762,1763,1851,1901,2466,2984,4047,4101,4128,4184,4383,4395,4410,4413,4421,4432,4650,4914,4917,5006,5058,5162,5404,5405,5722,5864,5959,6029,6037,6194,6197,7235,7277,7283,7297,7298,7418,7570,7583,7586,8092,8184,8187,8205,8368,8373,8417,8696,8703,8774,8793,8797,8800,8812,8907,8908,9005,9011,9041,9173,9175,9185,9186,9189,9193,9201,9202,9204,9210,9216,9236,9284,9290,9295,9317,9318,9319,9322,9325,9333,9341,9342,9362,9372,9377,9396,9417,9443,9455,9468,9479,9485,9493,9499,9518,9549,9550,9588,9647,9692,9708,9723,9782,9792,9921,9937,10052,10060,10082,10102,10114,10117,10165,10181,10204,10672,10676,10683,10806,10835,10866,10869,10938,10940,10946,10972,11292,11299,11410,11416,11444,11546,11554,11560,11839,11949,11954,11961,11972,12014,12015,12017,12257,12304,12723,12815,12904,14107,14370,14372,14759,14765,15569,15614,15625,15634,15675,15719,15907,15914,15915,15923,15926,15940,15941,15947,15963,15972,15979,15987,15999,16003,16005,16012,16045,16058,16067,16145,16366,16369,16370,16379,16744,16760,16787,16830,17124,17462,17664,17686,17688,17817,17827,17837,17982,18098,18177,18178,18214,18229,18238,18351,18374,18394,18417,18420,18428,18479,18559,18584,18751,18924,18927,18948,18950,18957,18958,18959,18966,18969,18996,19072,19099,19120,19121,19162,19195,19202,19227,19268,19269,19274,19278,19294,19310,19331,19337,19372,19377,19385,19389,19402,19410,19430,19441,19451,19455,19456,19483,19502,19512,19513,19520,19522,19528,19535,19537,19573,19574,19597,19614,19625,19627,19630,19645,19655,19665,19668,19701,19732,19737,19739,19757,19776,19794,19798,19802,19805,19806,19809,19813,19824,19835,19843,19869,19880,19891,19916,19938,19942,19982,19990,20005,20011,20026,20034,20036,20041,20046,20058,20074,20161,20167,20271,20467,20518,20519,20564,20566,20578,20669,20681,20688,20697,20701,20705,20706,20708,20709,20710,20714,20733,20743,20755,20763,20797,20826,20836,20850,20897,20940,20942,20945,20952,20962,20977,20993,20999,21008,21057,21071,21076,21084,21086,21101,21122,21158,21168,21177,21184,21200,21205,21224,21231,21249,21265,21281,21287,21303,21310,21314,21320,21322,21345,21360,21363,21375,21401,21412,21426,21990,22026,22095,22134,22292,22322,22396,22411,22424,22480,22493,22532,22559,22561,22564,22580,22622,22788,22810,22841,22843,22856,22860,22865,22875,22879,22885,22928,22930,22956,22963,22966,22970,22977,22994,23000,23039,23046,23090]]],["words",[367,352,[[0,17,17,0,17,[[23,2,2,0,2],[26,2,2,2,4],[30,1,1,4,5],[33,1,1,5,6],[36,1,1,6,7],[38,2,2,7,9],[41,2,2,9,11],[42,1,1,11,12],[43,4,4,12,16],[44,1,1,16,17]]],[1,19,17,17,34,[[53,3,3,17,20],[54,1,1,20,21],[68,4,4,21,25],[69,1,1,25,26],[72,1,1,26,27],[73,4,3,27,30],[83,4,3,30,33],[84,1,1,33,34]]],[3,4,4,34,38,[[127,1,1,34,35],[128,1,1,35,36],[132,1,1,36,37],[138,1,1,37,38]]],[4,37,35,38,73,[[153,2,2,38,40],[154,1,1,40,41],[156,3,3,41,44],[157,3,2,44,46],[158,1,1,46,47],[161,1,1,47,48],[162,1,1,48,49],[163,1,1,49,50],[164,1,1,50,51],[165,1,1,51,52],[168,1,1,52,53],[169,1,1,53,54],[170,2,2,54,56],[179,3,3,56,59],[180,2,2,59,61],[181,4,4,61,65],[183,5,5,65,70],[184,4,3,70,73]]],[5,6,6,73,79,[[187,1,1,73,74],[188,1,1,74,75],[189,1,1,75,76],[194,1,1,76,77],[208,1,1,77,78],[210,1,1,78,79]]],[6,8,8,79,87,[[212,1,1,79,80],[219,2,2,80,82],[221,3,3,82,85],[223,1,1,85,86],[226,1,1,86,87]]],[8,18,18,87,105,[[238,1,1,87,88],[243,2,2,88,90],[250,2,2,90,92],[252,3,3,92,95],[253,2,2,95,97],[256,1,1,97,98],[259,3,3,98,101],[260,2,2,101,103],[261,1,1,103,104],[263,1,1,104,105]]],[9,9,9,105,114,[[269,1,1,105,106],[273,2,2,106,108],[280,2,2,108,110],[285,1,1,110,111],[286,1,1,111,112],[288,1,1,112,113],[289,1,1,113,114]]],[10,9,9,114,123,[[291,1,1,114,115],[293,1,1,115,116],[295,1,1,116,117],[298,1,1,117,118],[300,1,1,118,119],[302,1,1,119,120],[303,1,1,120,121],[311,1,1,121,122],[312,1,1,122,123]]],[11,19,17,123,140,[[313,1,1,123,124],[318,2,2,124,126],[330,3,3,126,129],[331,4,3,129,132],[334,5,4,132,136],[335,4,4,136,140]]],[12,3,3,140,143,[[354,1,1,140,141],[360,1,1,141,142],[362,1,1,142,143]]],[13,17,17,143,160,[[375,1,1,143,144],[376,1,1,144,145],[377,1,1,145,146],[381,1,1,146,147],[384,1,1,147,148],[395,2,2,148,150],[398,1,1,150,151],[399,1,1,151,152],[400,6,6,152,158],[401,1,1,158,159],[402,1,1,159,160]]],[14,2,2,160,162,[[409,1,1,160,161],[411,1,1,161,162]]],[15,11,11,162,173,[[413,2,2,162,164],[414,1,1,164,165],[417,1,1,165,166],[418,3,3,166,169],[420,3,3,169,172],[421,1,1,172,173]]],[16,4,4,173,177,[[429,2,2,173,175],[434,2,2,175,177]]],[17,10,10,177,187,[[441,1,1,177,178],[444,1,1,178,179],[446,1,1,179,180],[451,1,1,180,181],[464,1,1,181,182],[466,1,1,182,183],[467,1,1,183,184],[468,1,1,184,185],[469,1,1,185,186],[477,1,1,186,187]]],[18,13,13,187,200,[[499,1,1,187,188],[513,1,1,188,189],[527,1,1,189,190],[529,1,1,190,191],[532,1,1,191,192],[533,1,1,192,193],[536,1,1,193,194],[541,1,1,194,195],[583,1,1,195,196],[586,1,1,196,197],[596,3,3,197,200]]],[19,18,18,200,218,[[628,2,2,200,202],[631,2,2,202,204],[637,1,1,204,205],[639,1,1,205,206],[642,1,1,206,207],[645,2,2,207,209],[649,2,2,209,211],[650,1,1,211,212],[653,1,1,212,213],[656,2,2,213,215],[657,2,2,215,217],[658,1,1,217,218]]],[20,13,12,218,230,[[659,1,1,218,219],[663,3,3,219,222],[665,1,1,222,223],[667,2,2,223,225],[668,3,3,225,228],[670,3,2,228,230]]],[22,15,14,230,244,[[707,2,2,230,232],[709,1,1,232,233],[714,4,4,233,237],[715,4,3,237,240],[729,1,1,240,241],[736,1,1,241,242],[737,2,2,242,244]]],[23,82,78,244,322,[[745,2,2,244,246],[747,1,1,246,247],[749,1,1,247,248],[750,1,1,248,249],[751,3,3,249,252],[755,6,5,252,257],[757,1,1,257,258],[759,1,1,258,259],[760,1,1,259,260],[762,2,2,260,262],[763,2,2,262,264],[766,1,1,264,265],[767,5,5,265,270],[769,3,3,270,273],[770,7,7,273,280],[771,3,3,280,283],[772,1,1,283,284],[773,3,3,284,287],[774,2,2,287,289],[778,2,2,289,291],[779,2,2,291,293],[780,17,15,293,308],[781,1,1,308,309],[782,4,4,309,313],[783,1,1,313,314],[786,1,1,314,315],[787,2,1,315,316],[788,2,2,316,318],[789,1,1,318,319],[795,3,3,319,322]]],[25,8,8,322,330,[[803,1,1,322,323],[804,3,3,323,326],[813,1,1,326,327],[834,2,2,327,329],[836,1,1,329,330]]],[26,10,8,330,338,[[858,1,1,330,331],[859,7,5,331,336],[861,2,2,336,338]]],[27,2,2,338,340,[[871,1,1,338,339],[875,1,1,339,340]]],[29,3,3,340,343,[[879,1,1,340,341],[885,1,1,341,342],[886,1,1,342,343]]],[32,1,1,343,344,[[894,1,1,343,344]]],[36,1,1,344,345,[[909,1,1,344,345]]],[37,6,5,345,350,[[911,3,2,345,347],[917,2,2,347,349],[918,1,1,349,350]]],[38,2,2,350,352,[[926,1,1,350,351],[927,1,1,351,352]]]],[621,643,761,769,874,998,1091,1166,1168,1268,1272,1297,1330,1331,1334,1348,1385,1616,1629,1631,1641,2032,2033,2034,2035,2052,2152,2180,2181,2185,2497,2523,2524,2532,4048,4065,4225,4382,4893,4926,4964,5014,5016,5040,5075,5081,5092,5167,5188,5226,5268,5275,5361,5383,5402,5403,5588,5593,5611,5625,5669,5680,5688,5698,5708,5729,5740,5752,5756,5758,5802,5803,5804,5869,5890,5902,6036,6456,6502,6549,6757,6784,6839,6840,6857,6896,6965,7295,7379,7390,7561,7584,7629,7641,7649,7699,7702,7784,7846,7848,7855,7870,7885,7924,7963,8089,8197,8208,8359,8375,8554,8571,8603,8654,8731,8828,8885,9044,9086,9158,9195,9478,9493,9540,9686,9704,10044,10051,10061,10065,10067,10077,10156,10158,10161,10163,10167,10168,10181,10189,10878,11010,11051,11370,11402,11418,11498,11554,11806,11821,11883,11926,11952,11954,11959,11960,11963,11964,11988,12009,12184,12241,12297,12300,12325,12388,12407,12408,12420,12502,12505,12506,12519,12771,12774,12860,12864,12981,13065,13110,13241,13554,13628,13639,13651,13718,13929,14205,14441,14685,14714,14753,14760,14802,14853,15663,15758,15955,16028,16037,16406,16423,16494,16510,16675,16725,16808,16905,16909,17027,17032,17052,17163,17243,17244,17252,17257,17285,17316,17399,17400,17404,17450,17491,17492,17505,17506,17507,17533,17534,18204,18211,18252,18335,18342,18343,18352,18356,18358,18369,18689,18799,18813,18821,18947,18955,19014,19072,19108,19123,19127,19146,19228,19229,19232,19234,19236,19276,19331,19346,19386,19402,19409,19422,19459,19493,19500,19506,19514,19520,19542,19547,19564,19574,19577,19579,19584,19587,19592,19593,19608,19610,19612,19624,19636,19654,19658,19669,19671,19807,19819,19836,19837,19844,19846,19848,19850,19852,19853,19855,19858,19859,19860,19862,19866,19869,19870,19874,19876,19896,19899,19919,19922,19939,19979,19998,20038,20039,20041,20272,20273,20276,20499,20506,20508,20512,20708,21311,21312,21357,22000,22021,22024,22026,22027,22030,22085,22090,22229,22284,22365,22474,22492,22602,22852,22884,22891,22969,22974,22985,23120,23133]]],["works",[1,1,[[18,1,1,0,1,[[622,1,1,0,1]]]],[16325]]]]},{"k":"H1698","v":[["*",[49,48,[[1,3,3,0,3,[[54,1,1,0,1],[58,2,2,1,3]]],[2,1,1,3,4,[[115,1,1,3,4]]],[3,1,1,4,5,[[130,1,1,4,5]]],[4,1,1,5,6,[[180,1,1,5,6]]],[9,2,2,6,8,[[290,2,2,6,8]]],[10,1,1,8,9,[[298,1,1,8,9]]],[12,2,2,9,11,[[358,2,2,9,11]]],[13,3,3,11,14,[[372,1,1,11,12],[373,1,1,12,13],[386,1,1,13,14]]],[18,3,3,14,17,[[555,1,1,14,15],[568,2,2,15,17]]],[23,17,17,17,34,[[758,1,1,17,18],[765,3,3,18,21],[768,1,1,21,22],[771,2,2,22,24],[772,1,1,24,25],[773,2,2,25,27],[776,2,2,27,29],[778,1,1,29,30],[782,1,1,30,31],[786,2,2,31,33],[788,1,1,33,34]]],[25,12,11,34,45,[[806,2,2,34,36],[807,2,2,36,38],[808,2,1,38,39],[813,1,1,39,40],[815,2,2,40,42],[829,1,1,42,43],[834,1,1,43,44],[839,1,1,44,45]]],[27,1,1,45,46,[[874,1,1,45,46]]],[29,1,1,46,47,[[882,1,1,46,47]]],[34,1,1,47,48,[[905,1,1,47,48]]]],[1635,1745,1757,3549,4120,5632,8705,8707,9022,10946,10948,11310,11337,11596,15163,15398,15401,19305,19446,19447,19449,19534,19604,19609,19626,19652,19653,19755,19767,19818,19897,19992,19997,20023,20558,20563,20574,20575,20592,20696,20750,20752,21180,21307,21447,22280,22420,22773]]],["+",[3,3,[[18,2,2,0,2,[[568,2,2,0,2]]],[25,1,1,2,3,[[813,1,1,2,3]]]],[15398,15401,20696]]],["murrain",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1745]]],["pestilence",[44,43,[[1,2,2,0,2,[[54,1,1,0,1],[58,1,1,1,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[3,1,1,3,4,[[130,1,1,3,4]]],[4,1,1,4,5,[[180,1,1,4,5]]],[9,2,2,5,7,[[290,2,2,5,7]]],[10,1,1,7,8,[[298,1,1,7,8]]],[12,2,2,8,10,[[358,2,2,8,10]]],[13,3,3,10,13,[[372,1,1,10,11],[373,1,1,11,12],[386,1,1,12,13]]],[18,1,1,13,14,[[555,1,1,13,14]]],[23,17,17,14,31,[[758,1,1,14,15],[765,3,3,15,18],[768,1,1,18,19],[771,2,2,19,21],[772,1,1,21,22],[773,2,2,22,24],[776,2,2,24,26],[778,1,1,26,27],[782,1,1,27,28],[786,2,2,28,30],[788,1,1,30,31]]],[25,11,10,31,41,[[806,2,2,31,33],[807,2,2,33,35],[808,2,1,35,36],[815,2,2,36,38],[829,1,1,38,39],[834,1,1,39,40],[839,1,1,40,41]]],[29,1,1,41,42,[[882,1,1,41,42]]],[34,1,1,42,43,[[905,1,1,42,43]]]],[1635,1757,3549,4120,5632,8705,8707,9022,10946,10948,11310,11337,11596,15163,19305,19446,19447,19449,19534,19604,19609,19626,19652,19653,19755,19767,19818,19897,19992,19997,20023,20558,20563,20574,20575,20592,20750,20752,21180,21307,21447,22420,22773]]],["plagues",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22280]]]]},{"k":"H1699","v":[["*",[3,3,[[22,1,1,0,1,[[683,1,1,0,1]]],[23,1,1,1,2,[[749,1,1,1,2]]],[32,1,1,2,3,[[894,1,1,2,3]]]],[17756,19071,22607]]],["fold",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22607]]],["manner",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17756]]],["word",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19071]]]]},{"k":"H1700","v":[["*",[5,5,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,1,1,1,2,[[587,1,1,1,2]]],[20,3,3,2,5,[[661,1,1,2,3],[665,1,1,3,4],[666,1,1,4,5]]]],[12959,15790,17377,17443,17460]]],["+",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17460]]],["cause",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12959]]],["end",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17443]]],["estate",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17377]]],["order",[1,1,[[18,1,1,0,1,[[587,1,1,0,1]]]],[15790]]]]},{"k":"H1701","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21788,21854]]],["+",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21788]]],["intent",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21854]]]]},{"k":"H1702","v":[["floats",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8887]]]]},{"k":"H1703","v":[["+",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5813]]]]},{"k":"H1704","v":[["Dibri",[1,1,[[2,1,1,0,1,[[113,1,1,0,1]]]],[3457]]]]},{"k":"H1705","v":[["*",[3,3,[[5,2,2,0,2,[[205,1,1,0,1],[207,1,1,1,2]]],[12,1,1,2,3,[[343,1,1,2,3]]]],[6333,6409,10526]]],["Dabareh",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6409]]],["Daberath",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]]],[6333,10526]]]]},{"k":"H1706","v":[["*",[54,54,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,5,5,1,6,[[52,2,2,1,3],[62,1,1,3,4],[65,1,1,4,5],[82,1,1,5,6]]],[2,2,2,6,8,[[91,1,1,6,7],[109,1,1,7,8]]],[3,4,4,8,12,[[129,1,1,8,9],[130,1,1,9,10],[132,2,2,10,12]]],[4,8,8,12,20,[[158,1,1,12,13],[160,1,1,13,14],[163,1,1,14,15],[178,2,2,15,17],[179,1,1,17,18],[183,1,1,18,19],[184,1,1,19,20]]],[5,1,1,20,21,[[191,1,1,20,21]]],[6,3,3,21,24,[[224,3,3,21,24]]],[8,5,5,24,29,[[249,5,5,24,29]]],[9,1,1,29,30,[[283,1,1,29,30]]],[10,1,1,30,31,[[304,1,1,30,31]]],[11,1,1,31,32,[[330,1,1,31,32]]],[13,1,1,32,33,[[397,1,1,32,33]]],[17,1,1,33,34,[[455,1,1,33,34]]],[18,3,3,34,37,[[496,1,1,34,35],[558,1,1,35,36],[596,1,1,36,37]]],[19,4,4,37,41,[[643,1,1,37,38],[651,1,1,38,39],[652,2,2,39,41]]],[21,2,2,41,43,[[674,1,1,41,42],[675,1,1,42,43]]],[22,2,2,43,45,[[685,2,2,43,45]]],[23,3,3,45,48,[[755,1,1,45,46],[776,1,1,46,47],[785,1,1,47,48]]],[25,6,6,48,54,[[804,1,1,48,49],[817,2,2,49,51],[821,2,2,51,53],[828,1,1,53,54]]]],[1301,1587,1596,1872,1978,2476,2773,3342,4102,4116,4207,4208,5089,5145,5217,5575,5581,5588,5748,5771,5940,6917,6918,6927,7533,7534,7535,7537,7551,8478,9221,10056,11859,13343,14178,15233,16001,16864,17092,17129,17140,17593,17599,17797,17804,19231,19753,19965,20505,20775,20781,20901,20910,21138]]],["+",[5,5,[[6,1,1,0,1,[[224,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[18,2,2,2,4,[[496,1,1,2,3],[596,1,1,3,4]]],[19,1,1,4,5,[[643,1,1,4,5]]]],[6927,7535,14178,16001,16864]]],["honey",[49,49,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,5,5,1,6,[[52,2,2,1,3],[62,1,1,3,4],[65,1,1,4,5],[82,1,1,5,6]]],[2,2,2,6,8,[[91,1,1,6,7],[109,1,1,7,8]]],[3,4,4,8,12,[[129,1,1,8,9],[130,1,1,9,10],[132,2,2,10,12]]],[4,8,8,12,20,[[158,1,1,12,13],[160,1,1,13,14],[163,1,1,14,15],[178,2,2,15,17],[179,1,1,17,18],[183,1,1,18,19],[184,1,1,19,20]]],[5,1,1,20,21,[[191,1,1,20,21]]],[6,2,2,21,23,[[224,2,2,21,23]]],[8,4,4,23,27,[[249,4,4,23,27]]],[9,1,1,27,28,[[283,1,1,27,28]]],[10,1,1,28,29,[[304,1,1,28,29]]],[11,1,1,29,30,[[330,1,1,29,30]]],[13,1,1,30,31,[[397,1,1,30,31]]],[17,1,1,31,32,[[455,1,1,31,32]]],[18,1,1,32,33,[[558,1,1,32,33]]],[19,3,3,33,36,[[651,1,1,33,34],[652,2,2,34,36]]],[21,2,2,36,38,[[674,1,1,36,37],[675,1,1,37,38]]],[22,2,2,38,40,[[685,2,2,38,40]]],[23,3,3,40,43,[[755,1,1,40,41],[776,1,1,41,42],[785,1,1,42,43]]],[25,6,6,43,49,[[804,1,1,43,44],[817,2,2,44,46],[821,2,2,46,48],[828,1,1,48,49]]]],[1301,1587,1596,1872,1978,2476,2773,3342,4102,4116,4207,4208,5089,5145,5217,5575,5581,5588,5748,5771,5940,6917,6918,7533,7534,7537,7551,8478,9221,10056,11859,13343,15233,17092,17129,17140,17593,17599,17797,17804,19231,19753,19965,20505,20775,20781,20901,20910,21138]]]]},{"k":"H1707","v":[["bunches",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18223]]]]},{"k":"H1708","v":[["Dabbasheth",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6332]]]]},{"k":"H1709","v":[["*",[19,18,[[0,1,1,0,1,[[8,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[10,1,1,2,3,[[294,1,1,2,3]]],[13,1,1,3,4,[[399,1,1,3,4]]],[15,3,3,4,7,[[415,1,1,4,5],[424,1,1,5,6],[425,1,1,6,7]]],[17,2,2,7,9,[[447,1,1,7,8],[476,1,1,8,9]]],[18,1,1,9,10,[[485,1,1,9,10]]],[20,1,1,10,11,[[667,1,1,10,11]]],[25,1,1,11,12,[[839,1,1,11,12]]],[27,1,1,12,13,[[865,1,1,12,13]]],[31,3,2,13,15,[[889,2,1,13,14],[890,1,1,14,15]]],[34,1,1,15,16,[[903,1,1,15,16]]],[35,2,2,16,18,[[906,2,2,16,18]]]],[207,4046,8877,11922,12330,12663,12687,13136,13895,14020,17487,21445,22136,22548,22558,22745,22790,22797]]],["fish",[11,10,[[3,1,1,0,1,[[127,1,1,0,1]]],[13,1,1,1,2,[[399,1,1,1,2]]],[15,3,3,2,5,[[415,1,1,2,3],[424,1,1,3,4],[425,1,1,4,5]]],[17,1,1,5,6,[[476,1,1,5,6]]],[18,1,1,6,7,[[485,1,1,6,7]]],[31,3,2,7,9,[[889,2,1,7,8],[890,1,1,8,9]]],[35,1,1,9,10,[[906,1,1,9,10]]]],[4046,11922,12330,12663,12687,13895,14020,22548,22558,22797]]],["fishes",[8,8,[[0,1,1,0,1,[[8,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]],[17,1,1,2,3,[[447,1,1,2,3]]],[20,1,1,3,4,[[667,1,1,3,4]]],[25,1,1,4,5,[[839,1,1,4,5]]],[27,1,1,5,6,[[865,1,1,5,6]]],[34,1,1,6,7,[[903,1,1,6,7]]],[35,1,1,7,8,[[906,1,1,7,8]]]],[207,8877,13136,17487,21445,22136,22745,22790]]]]},{"k":"H1710","v":[["*",[15,13,[[0,2,2,0,2,[[0,2,2,0,2]]],[1,2,2,2,4,[[56,2,2,2,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[4,1,1,5,6,[[156,1,1,5,6]]],[18,1,1,6,7,[[582,1,1,6,7]]],[22,1,1,7,8,[[728,1,1,7,8]]],[25,6,4,8,12,[[830,3,2,8,10],[848,3,2,10,12]]],[31,1,1,12,13,[[890,1,1,12,13]]]],[25,27,1703,1706,4029,5022,15635,18664,21187,21188,21688,21689,22549]]],["fish",[14,12,[[0,2,2,0,2,[[0,2,2,0,2]]],[1,2,2,2,4,[[56,2,2,2,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[4,1,1,5,6,[[156,1,1,5,6]]],[18,1,1,6,7,[[582,1,1,6,7]]],[22,1,1,7,8,[[728,1,1,7,8]]],[25,6,4,8,12,[[830,3,2,8,10],[848,3,2,10,12]]]],[25,27,1703,1706,4029,5022,15635,18664,21187,21188,21688,21689]]],["fish's",[1,1,[[31,1,1,0,1,[[890,1,1,0,1]]]],[22549]]]]},{"k":"H1711","v":[["grow",[1,1,[[0,1,1,0,1,[[47,1,1,0,1]]]],[1467]]]]},{"k":"H1712","v":[["*",[13,7,[[6,1,1,0,1,[[226,1,1,0,1]]],[8,11,5,1,6,[[240,11,5,1,6]]],[12,1,1,6,7,[[347,1,1,6,7]]]],[6972,7321,7322,7323,7324,7326,10669]]],["Dagon",[12,7,[[6,1,1,0,1,[[226,1,1,0,1]]],[8,10,5,1,6,[[240,10,5,1,6]]],[12,1,1,6,7,[[347,1,1,6,7]]]],[6972,7321,7322,7323,7324,7326,10669]]],["Dagon's",[1,1,[[8,1,1,0,1,[[240,1,1,0,1]]]],[7324]]]]},{"k":"H1713","v":[["*",[3,3,[[18,1,1,0,1,[[497,1,1,0,1]]],[21,2,2,1,3,[[675,1,1,1,2],[676,1,1,2,3]]]],[14187,17608,17624]]],["banners",[2,2,[[18,1,1,0,1,[[497,1,1,0,1]]],[21,1,1,1,2,[[676,1,1,1,2]]]],[14187,17624]]],["chiefest",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17608]]]]},{"k":"H1714","v":[["*",[15,15,[[3,13,13,0,13,[[117,1,1,0,1],[118,8,8,1,9],[126,4,4,9,13]]],[21,2,2,13,15,[[672,1,1,13,14],[676,1,1,14,15]]]],[3656,3660,3661,3668,3675,3676,3683,3689,3692,4002,4006,4010,4013,17558,17618]]],["banner",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17558]]],["banners",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17618]]],["standard",[10,10,[[3,10,10,0,10,[[117,1,1,0,1],[118,5,5,1,6],[126,4,4,6,10]]]],[3656,3660,3661,3668,3676,3683,4002,4006,4010,4013]]],["standards",[3,3,[[3,3,3,0,3,[[118,3,3,0,3]]]],[3675,3689,3692]]]]},{"k":"H1715","v":[["*",[40,40,[[0,2,2,0,2,[[26,2,2,0,2]]],[3,2,2,2,4,[[134,2,2,2,4]]],[4,7,7,4,11,[[159,1,1,4,5],[163,1,1,5,6],[164,1,1,6,7],[166,1,1,7,8],[170,1,1,8,9],[180,1,1,9,10],[185,1,1,10,11]]],[11,1,1,11,12,[[330,1,1,11,12]]],[13,2,2,12,14,[[397,1,1,12,13],[398,1,1,13,14]]],[15,7,7,14,21,[[417,4,4,14,18],[422,1,1,18,19],[425,2,2,19,21]]],[18,3,3,21,24,[[481,1,1,21,22],[542,1,1,22,23],[555,1,1,23,24]]],[22,2,2,24,26,[[714,1,1,24,25],[740,1,1,25,26]]],[23,1,1,26,27,[[775,1,1,26,27]]],[24,1,1,27,28,[[798,1,1,27,28]]],[25,1,1,28,29,[[837,1,1,28,29]]],[27,6,6,29,35,[[863,3,3,29,32],[868,1,1,32,33],[870,1,1,33,34],[875,1,1,34,35]]],[28,3,3,35,38,[[876,2,2,35,37],[877,1,1,37,38]]],[36,1,1,38,39,[[909,1,1,38,39]]],[37,1,1,39,40,[[919,1,1,39,40]]]],[755,764,4269,4284,5124,5222,5257,5313,5388,5662,5838,10056,11859,11903,12384,12385,12392,12393,12588,12676,12683,13972,14869,15137,18347,18862,19703,20344,21388,22113,22114,22127,22192,22209,22289,22301,22308,22330,22851,23016]]],["+",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22209]]],["corn",[37,37,[[0,2,2,0,2,[[26,2,2,0,2]]],[3,1,1,2,3,[[134,1,1,2,3]]],[4,7,7,3,10,[[159,1,1,3,4],[163,1,1,4,5],[164,1,1,5,6],[166,1,1,6,7],[170,1,1,7,8],[180,1,1,8,9],[185,1,1,9,10]]],[11,1,1,10,11,[[330,1,1,10,11]]],[13,2,2,11,13,[[397,1,1,11,12],[398,1,1,12,13]]],[15,7,7,13,20,[[417,4,4,13,17],[422,1,1,17,18],[425,2,2,18,20]]],[18,3,3,20,23,[[481,1,1,20,21],[542,1,1,21,22],[555,1,1,22,23]]],[22,2,2,23,25,[[714,1,1,23,24],[740,1,1,24,25]]],[24,1,1,25,26,[[798,1,1,25,26]]],[25,1,1,26,27,[[837,1,1,26,27]]],[27,5,5,27,32,[[863,3,3,27,30],[868,1,1,30,31],[875,1,1,31,32]]],[28,3,3,32,35,[[876,2,2,32,34],[877,1,1,34,35]]],[36,1,1,35,36,[[909,1,1,35,36]]],[37,1,1,36,37,[[919,1,1,36,37]]]],[755,764,4284,5124,5222,5257,5313,5388,5662,5838,10056,11859,11903,12384,12385,12392,12393,12588,12676,12683,13972,14869,15137,18347,18862,20344,21388,22113,22114,22127,22192,22289,22301,22308,22330,22851,23016]]],["wheat",[2,2,[[3,1,1,0,1,[[134,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[4269,19703]]]]},{"k":"H1716","v":[["*",[2,2,[[22,1,1,0,1,[[712,1,1,0,1]]],[23,1,1,1,2,[[761,1,1,1,2]]]],[18318,19368]]],["gather",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18318]]],["sitteth",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19368]]]]},{"k":"H1717","v":[["*",[4,4,[[19,1,1,0,1,[[632,1,1,0,1]]],[25,3,3,1,4,[[824,3,3,1,4]]]],[16536,21010,21015,21028]]],["breasts",[2,2,[[19,1,1,0,1,[[632,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[16536,21015]]],["teats",[2,2,[[25,2,2,0,2,[[824,2,2,0,2]]]],[21010,21028]]]]},{"k":"H1718","v":[["*",[2,2,[[18,1,1,0,1,[[519,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]]],[14559,18405]]],["softly",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18405]]],["went",[1,1,[[18,1,1,0,1,[[519,1,1,0,1]]]],[14559]]]]},{"k":"H1719","v":[["Dedan",[11,10,[[0,3,2,0,2,[[9,1,1,0,1],[24,2,1,1,2]]],[12,2,2,2,4,[[338,2,2,2,4]]],[23,2,2,4,6,[[769,1,1,4,5],[793,1,1,5,6]]],[25,4,4,6,10,[[826,1,1,6,7],[828,2,2,7,9],[839,1,1,9,10]]]],[241,661,10261,10284,19557,20135,21096,21136,21141,21438]]]]},{"k":"H1720","v":[["Dedanim",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18048]]]]},{"k":"H1721","v":[["Dodanim",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[238,10259]]]]},{"k":"H1722","v":[["*",[23,23,[[14,5,5,0,5,[[407,1,1,0,1],[408,1,1,1,2],[409,3,3,2,5]]],[26,18,18,5,23,[[851,4,4,5,9],[852,7,7,9,16],[854,7,7,16,23]]]],[12148,12156,12188,12189,12191,21790,21793,21796,21803,21808,21812,21814,21817,21819,21821,21825,21876,21877,21878,21881,21890,21897,21903]]],["gold",[14,14,[[14,4,4,0,4,[[407,1,1,0,1],[409,3,3,1,4]]],[26,10,10,4,14,[[851,4,4,4,8],[852,1,1,8,9],[854,5,5,9,14]]]],[12148,12188,12189,12191,21790,21793,21796,21803,21808,21878,21881,21890,21897,21903]]],["golden",[9,9,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,8,8,1,9,[[852,6,6,1,7],[854,2,2,7,9]]]],[12156,21812,21814,21817,21819,21821,21825,21876,21877]]]]},{"k":"H1723","v":[["Dehavites",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12119]]]]},{"k":"H1724","v":[["astonied",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19302]]]]},{"k":"H1725","v":[["pransing",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22714]]]]},{"k":"H1726","v":[["*",[2,1,[[6,2,1,0,1,[[215,2,1,0,1]]]],[6645]]],["+",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6645]]],["pransings",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6645]]]]},{"k":"H1727","v":[["sorrow",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3540]]]]},{"k":"H1728","v":[["fishers",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21689]]]]},{"k":"H1729","v":[["+",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22412]]]]},{"k":"H1730","v":[["*",[61,53,[[2,4,3,0,3,[[99,1,1,0,1],[109,1,1,1,2],[114,2,1,2,3]]],[3,1,1,3,4,[[152,1,1,3,4]]],[8,4,4,4,8,[[245,3,3,4,7],[249,1,1,7,8]]],[11,1,1,8,9,[[336,1,1,8,9]]],[12,1,1,9,10,[[364,1,1,9,10]]],[16,2,2,10,12,[[427,2,2,10,12]]],[19,1,1,12,13,[[634,1,1,12,13]]],[21,39,32,13,45,[[671,5,5,13,18],[672,6,6,18,24],[674,3,2,24,26],[675,13,9,26,35],[676,5,3,35,38],[677,5,5,38,43],[678,2,2,43,45]]],[22,1,1,45,46,[[683,1,1,45,46]]],[23,4,4,46,50,[[776,4,4,46,50]]],[25,2,2,50,52,[[817,1,1,50,51],[824,1,1,51,52]]],[29,1,1,52,53,[[884,1,1,52,53]]]],[2981,3338,3518,4890,7432,7433,7434,7558,10219,11141,12731,12739,16593,17539,17541,17550,17551,17553,17557,17562,17563,17564,17570,17571,17592,17598,17599,17600,17602,17603,17604,17606,17607,17608,17614,17615,17616,17617,17636,17637,17638,17639,17640,17645,17654,17740,19738,19739,19740,19743,20770,21024,22460]]],["+",[2,1,[[21,2,1,0,1,[[675,2,1,0,1]]]],[17607]]],["beloved",[30,27,[[21,29,26,0,26,[[671,2,2,0,2],[672,6,6,2,8],[674,1,1,8,9],[675,11,9,9,18],[676,4,3,18,21],[677,3,3,21,24],[678,2,2,24,26]]],[22,1,1,26,27,[[683,1,1,26,27]]]],[17551,17553,17557,17562,17563,17564,17570,17571,17598,17599,17600,17602,17603,17604,17606,17607,17608,17614,17615,17616,17617,17636,17638,17640,17645,17654,17740]]],["beloved's",[2,2,[[21,2,2,0,2,[[676,1,1,0,1],[677,1,1,1,2]]]],[17617,17637]]],["brother",[1,1,[[11,1,1,0,1,[[336,1,1,0,1]]]],[10219]]],["brothers'",[1,1,[[3,1,1,0,1,[[152,1,1,0,1]]]],[4890]]],["love",[7,6,[[19,1,1,0,1,[[634,1,1,0,1]]],[21,4,3,1,4,[[671,2,2,1,3],[674,2,1,3,4]]],[25,2,2,4,6,[[817,1,1,4,5],[824,1,1,5,6]]]],[16593,17539,17541,17592,20770,21024]]],["loves",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17639]]],["uncle",[10,10,[[2,2,2,0,2,[[99,1,1,0,1],[114,1,1,1,2]]],[8,4,4,2,6,[[245,3,3,2,5],[249,1,1,5,6]]],[12,1,1,6,7,[[364,1,1,6,7]]],[16,1,1,7,8,[[427,1,1,7,8]]],[23,1,1,8,9,[[776,1,1,8,9]]],[29,1,1,9,10,[[884,1,1,9,10]]]],[2981,3518,7432,7433,7434,7558,11141,12739,19738,22460]]],["uncle's",[6,6,[[2,2,2,0,2,[[109,1,1,0,1],[114,1,1,1,2]]],[16,1,1,2,3,[[427,1,1,2,3]]],[23,3,3,3,6,[[776,3,3,3,6]]]],[3338,3518,12731,19739,19740,19743]]],["wellbeloved",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17550]]]]},{"k":"H1731","v":[["*",[7,6,[[8,1,1,0,1,[[237,1,1,0,1]]],[11,1,1,1,2,[[322,1,1,1,2]]],[13,1,1,2,3,[[401,1,1,2,3]]],[17,1,1,3,4,[[476,1,1,3,4]]],[18,1,1,4,5,[[558,1,1,4,5]]],[23,2,1,5,6,[[768,2,1,5,6]]]],[7254,9800,11979,13908,15223,19526]]],["+",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15223]]],["basket",[2,1,[[23,2,1,0,1,[[768,2,1,0,1]]]],[19526]]],["baskets",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9800]]],["caldrons",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11979]]],["kettle",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7254]]],["pot",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13908]]]]},{"k":"H1732","v":[["*",[1001,837,[[7,2,2,0,2,[[235,2,2,0,2]]],[8,291,232,2,234,[[251,6,6,2,8],[252,36,30,8,38],[253,33,27,38,65],[254,21,16,65,81],[255,24,21,81,102],[256,11,9,102,111],[257,11,10,111,121],[258,29,22,121,143],[259,16,11,143,154],[260,28,20,154,174],[261,23,18,174,192],[262,13,11,192,203],[263,4,3,203,206],[264,8,7,206,213],[265,28,21,213,234]]],[9,286,225,234,459,[[267,12,11,234,245],[268,14,12,245,257],[269,28,19,257,276],[270,3,3,276,279],[271,29,17,279,296],[272,22,14,296,310],[273,6,6,310,316],[274,21,15,316,331],[275,6,5,331,336],[276,12,8,336,344],[277,23,19,344,363],[278,18,14,363,377],[279,8,7,377,384],[281,10,9,384,393],[282,9,8,393,401],[283,9,8,401,409],[284,5,5,409,414],[285,5,5,414,419],[286,7,7,419,426],[287,12,10,426,436],[288,2,2,436,438],[289,10,8,438,446],[290,15,13,446,459]]],[10,78,74,459,533,[[291,11,11,459,470],[292,11,10,470,480],[293,5,5,480,485],[295,4,4,485,489],[296,1,1,489,490],[297,1,1,490,491],[298,10,10,491,501],[299,3,3,501,504],[301,16,15,504,519],[302,5,4,519,523],[303,1,1,523,524],[304,3,2,524,526],[305,6,6,526,532],[312,1,1,532,533]]],[11,18,18,533,551,[[320,2,2,533,535],[321,1,1,535,536],[323,1,1,536,537],[324,1,1,537,538],[326,2,2,538,540],[327,2,2,540,542],[328,2,2,542,544],[329,1,1,544,545],[330,1,1,545,546],[331,1,1,546,547],[332,2,2,547,549],[333,1,1,549,550],[334,1,1,550,551]]],[12,187,157,551,708,[[339,1,1,551,552],[340,2,2,552,554],[341,1,1,554,555],[343,1,1,555,556],[344,1,1,556,557],[346,1,1,557,558],[347,1,1,558,559],[348,20,15,559,574],[349,14,12,574,586],[350,9,8,586,594],[351,14,10,594,604],[352,11,9,604,613],[353,4,4,613,617],[354,9,8,617,625],[355,18,14,625,639],[356,12,9,639,648],[357,7,5,648,653],[358,24,20,653,673],[359,8,7,673,680],[360,4,4,680,684],[361,2,2,684,686],[362,1,1,686,687],[363,3,3,687,690],[364,5,5,690,695],[365,4,4,695,699],[366,10,9,699,708]]],[13,74,66,708,774,[[367,5,4,708,712],[368,5,5,712,717],[369,2,1,717,718],[371,2,2,718,720],[372,9,9,720,729],[373,5,4,729,733],[374,4,2,733,735],[375,1,1,735,736],[376,3,2,736,738],[377,2,2,738,740],[378,1,1,740,741],[379,3,3,741,744],[380,1,1,744,745],[382,1,1,745,746],[383,1,1,746,747],[387,5,4,747,751],[389,4,3,751,754],[390,2,2,754,756],[393,1,1,756,757],[394,1,1,757,758],[395,5,5,758,763],[396,1,1,763,764],[398,3,3,764,767],[399,2,2,767,769],[400,2,2,769,771],[401,3,3,771,774]]],[14,3,3,774,777,[[405,1,1,774,775],[410,2,2,775,777]]],[15,8,7,777,784,[[415,2,2,777,779],[424,6,5,779,784]]],[18,13,13,784,797,[[495,1,1,784,785],[549,1,1,785,786],[555,1,1,786,787],[566,4,4,787,791],[599,1,1,791,792],[609,4,4,792,796],[621,1,1,796,797]]],[19,1,1,797,798,[[628,1,1,797,798]]],[20,1,1,798,799,[[659,1,1,798,799]]],[21,1,1,799,800,[[674,1,1,799,800]]],[22,10,10,800,810,[[685,2,2,800,802],[687,1,1,802,803],[694,1,1,803,804],[700,2,2,804,806],[707,1,1,806,807],[715,1,1,807,808],[716,1,1,808,809],[733,1,1,809,810]]],[23,15,15,810,825,[[757,1,1,810,811],[761,1,1,811,812],[765,1,1,812,813],[766,3,3,813,816],[767,1,1,816,817],[773,1,1,817,818],[774,1,1,818,819],[777,5,5,819,824],[780,1,1,824,825]]],[25,4,4,825,829,[[835,2,2,825,827],[838,2,2,827,829]]],[27,1,1,829,830,[[864,1,1,829,830]]],[29,2,2,830,832,[[884,1,1,830,831],[887,1,1,831,832]]],[37,6,5,832,837,[[922,5,4,832,836],[923,1,1,836,837]]]],[7207,7212,7608,7614,7615,7616,7617,7618,7630,7632,7633,7635,7638,7640,7641,7644,7646,7647,7649,7650,7651,7652,7655,7656,7657,7659,7660,7661,7662,7663,7666,7667,7668,7669,7672,7673,7675,7676,7677,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7690,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7710,7711,7713,7714,7715,7716,7717,7718,7720,7721,7724,7725,7726,7728,7731,7733,7734,7735,7736,7740,7741,7742,7745,7746,7747,7754,7755,7757,7758,7763,7764,7765,7769,7771,7772,7773,7774,7776,7777,7780,7781,7782,7783,7784,7788,7790,7791,7792,7793,7801,7804,7807,7808,7809,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7822,7823,7824,7825,7826,7828,7829,7834,7835,7836,7838,7839,7840,7841,7842,7843,7844,7846,7847,7848,7855,7856,7861,7862,7865,7866,7869,7870,7871,7873,7874,7875,7881,7882,7883,7884,7893,7896,7900,7901,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7917,7918,7919,7920,7922,7926,7927,7930,7931,7932,7933,7934,7935,7937,7938,7939,7940,7941,7942,7943,7944,7959,7969,7970,7972,7973,7975,7976,7978,7979,7981,7982,7983,7984,7985,7986,7987,7988,7989,7991,7993,7995,7996,7997,7998,7999,8000,8001,8004,8009,8023,8024,8025,8026,8027,8033,8035,8036,8037,8038,8039,8050,8051,8052,8053,8054,8059,8060,8062,8064,8066,8079,8080,8082,8083,8086,8087,8089,8090,8091,8093,8095,8098,8099,8100,8101,8102,8103,8107,8109,8112,8116,8128,8129,8132,8133,8135,8136,8138,8139,8140,8141,8142,8143,8144,8145,8149,8151,8152,8153,8155,8157,8158,8159,8162,8165,8166,8167,8169,8171,8172,8173,8174,8175,8177,8178,8185,8188,8197,8198,8200,8206,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8222,8223,8224,8227,8228,8229,8232,8233,8234,8242,8243,8244,8245,8246,8247,8257,8258,8260,8261,8262,8263,8264,8265,8266,8267,8269,8270,8271,8272,8273,8276,8277,8281,8282,8284,8286,8287,8291,8293,8299,8301,8302,8304,8305,8306,8310,8313,8315,8316,8317,8318,8320,8324,8338,8347,8349,8356,8401,8402,8403,8411,8419,8420,8421,8422,8426,8427,8431,8432,8436,8437,8439,8442,8449,8450,8465,8466,8470,8471,8473,8476,8478,8479,8480,8485,8487,8502,8522,8527,8533,8552,8554,8555,8556,8557,8560,8565,8575,8580,8581,8583,8587,8591,8592,8595,8596,8597,8601,8602,8603,8653,8654,8661,8662,8666,8667,8668,8669,8676,8693,8702,8703,8704,8705,8706,8709,8710,8711,8713,8714,8716,8717,8718,8725,8728,8730,8745,8748,8749,8754,8755,8760,8764,8771,8780,8781,8782,8794,8796,8802,8803,8814,8815,8817,8819,8822,8823,8830,8879,8881,8883,8885,8908,8985,8986,9000,9001,9002,9003,9005,9009,9010,9011,9051,9055,9056,9075,9112,9114,9120,9121,9123,9129,9132,9135,9140,9141,9142,9144,9146,9147,9151,9167,9170,9171,9177,9186,9226,9249,9252,9253,9254,9257,9260,9273,9530,9746,9751,9784,9839,9871,9899,9916,9932,9963,9965,9983,10004,10027,10095,10103,10104,10126,10147,10321,10362,10370,10416,10485,10537,10637,10673,10674,10676,10677,10678,10679,10680,10682,10683,10684,10686,10688,10689,10690,10691,10698,10721,10728,10736,10737,10738,10739,10741,10742,10743,10751,10758,10759,10761,10762,10765,10766,10768,10771,10772,10773,10775,10776,10777,10782,10784,10785,10786,10788,10790,10791,10792,10793,10794,10795,10802,10807,10816,10818,10820,10821,10822,10827,10863,10864,10865,10867,10870,10878,10879,10881,10887,10891,10892,10893,10894,10895,10896,10897,10898,10899,10900,10901,10903,10904,10907,10909,10910,10911,10912,10913,10915,10924,10925,10926,10927,10928,10929,10933,10934,10935,10936,10939,10942,10943,10944,10945,10947,10950,10951,10952,10953,10955,10956,10957,10958,10959,10960,10962,10964,10965,10966,10967,10968,10969,10971,10981,10984,10989,11008,11010,11018,11046,11047,11103,11108,11109,11127,11132,11133,11140,11141,11144,11145,11154,11163,11165,11173,11174,11184,11186,11187,11188,11190,11193,11195,11198,11202,11203,11214,11218,11223,11225,11228,11230,11269,11270,11286,11288,11289,11290,11292,11297,11298,11299,11324,11330,11334,11341,11342,11357,11360,11395,11411,11414,11431,11432,11453,11458,11459,11461,11476,11523,11526,11625,11631,11636,11644,11659,11665,11674,11693,11702,11764,11765,11793,11816,11817,11818,11821,11853,11880,11905,11908,11915,11922,11935,11936,11969,11970,11981,12107,12203,12221,12342,12343,12648,12660,12661,12669,12670,14168,15020,15183,15329,15346,15361,15375,16094,16152,16161,16162,16168,16315,16401,17316,17586,17784,17795,17836,17974,18061,18074,18194,18387,18395,18743,19279,19382,19452,19456,19458,19484,19489,19651,19676,19790,19792,19796,19797,19801,19872,21336,21337,21421,21422,22133,22455,22506,23052,23053,23055,23057,23060]]],["+",[16,15,[[8,2,2,0,2,[[253,1,1,0,1],[254,1,1,1,2]]],[9,6,6,2,8,[[268,1,1,2,3],[276,1,1,3,4],[277,2,2,4,6],[287,1,1,6,7],[289,1,1,7,8]]],[10,5,5,8,13,[[301,4,4,8,12],[305,1,1,12,13]]],[12,3,2,13,15,[[349,3,2,13,15]]]],[7702,7718,8079,8244,8277,8281,8591,8654,9120,9121,9140,9142,9253,10751,10758]]],["David",[937,792,[[7,2,2,0,2,[[235,2,2,0,2]]],[8,274,223,2,225,[[251,6,6,2,8],[252,36,30,8,38],[253,31,27,38,65],[254,18,14,65,79],[255,21,19,79,98],[256,11,9,98,107],[257,11,10,107,117],[258,28,21,117,138],[259,15,10,138,148],[260,24,18,148,166],[261,22,18,166,184],[262,13,11,184,195],[263,4,3,195,198],[264,8,7,198,205],[265,26,20,205,225]]],[9,264,210,225,435,[[267,12,11,225,236],[268,13,11,236,247],[269,27,19,247,266],[270,3,3,266,269],[271,28,17,269,286],[272,22,14,286,300],[273,6,6,300,306],[274,18,13,306,319],[275,6,5,319,324],[276,10,7,324,331],[277,21,17,331,348],[278,16,12,348,360],[279,6,5,360,365],[281,8,7,365,372],[282,8,7,372,379],[283,9,8,379,387],[284,5,5,387,392],[285,4,4,392,396],[286,7,7,396,403],[287,11,9,403,412],[288,2,2,412,414],[289,9,8,414,422],[290,13,13,422,435]]],[10,72,68,435,503,[[291,10,10,435,445],[292,11,10,445,455],[293,5,5,455,460],[295,4,4,460,464],[296,1,1,464,465],[297,1,1,465,466],[298,10,10,466,476],[299,3,3,476,479],[301,12,11,479,490],[302,5,4,490,494],[303,1,1,494,495],[304,3,2,495,497],[305,5,5,497,502],[312,1,1,502,503]]],[11,15,15,503,518,[[320,2,2,503,505],[321,1,1,505,506],[324,1,1,506,507],[326,2,2,507,509],[327,2,2,509,511],[328,2,2,511,513],[329,1,1,513,514],[330,1,1,514,515],[332,1,1,515,516],[333,1,1,516,517],[334,1,1,517,518]]],[12,175,149,518,667,[[339,1,1,518,519],[340,2,2,519,521],[341,1,1,521,522],[343,1,1,522,523],[344,1,1,523,524],[346,1,1,524,525],[347,1,1,525,526],[348,20,15,526,541],[349,11,10,541,551],[350,9,8,551,559],[351,14,10,559,569],[352,11,9,569,578],[353,4,4,578,582],[354,9,8,582,590],[355,15,13,590,603],[356,11,8,603,611],[357,5,4,611,615],[358,23,19,615,634],[359,8,7,634,641],[360,4,4,641,645],[361,2,2,645,647],[362,1,1,647,648],[363,3,3,648,651],[364,3,3,651,654],[365,4,4,654,658],[366,10,9,658,667]]],[13,73,65,667,732,[[367,5,4,667,671],[368,5,5,671,676],[369,2,1,676,677],[371,2,2,677,679],[372,9,9,679,688],[373,5,4,688,692],[374,4,2,692,694],[375,1,1,694,695],[376,3,2,695,697],[377,2,2,697,699],[378,1,1,699,700],[379,3,3,700,703],[380,1,1,703,704],[382,1,1,704,705],[383,1,1,705,706],[387,5,4,706,710],[389,3,2,710,712],[390,2,2,712,714],[393,1,1,714,715],[394,1,1,715,716],[395,5,5,716,721],[396,1,1,721,722],[398,3,3,722,725],[399,2,2,725,727],[400,2,2,727,729],[401,3,3,729,732]]],[14,3,3,732,735,[[405,1,1,732,733],[410,2,2,733,735]]],[15,8,7,735,742,[[415,2,2,735,737],[424,6,5,737,742]]],[18,12,12,742,754,[[495,1,1,742,743],[549,1,1,743,744],[555,1,1,744,745],[566,4,4,745,749],[599,1,1,749,750],[609,3,3,750,753],[621,1,1,753,754]]],[19,1,1,754,755,[[628,1,1,754,755]]],[20,1,1,755,756,[[659,1,1,755,756]]],[21,1,1,756,757,[[674,1,1,756,757]]],[22,9,9,757,766,[[685,2,2,757,759],[687,1,1,759,760],[694,1,1,760,761],[700,2,2,761,763],[707,1,1,763,764],[716,1,1,764,765],[733,1,1,765,766]]],[23,14,14,766,780,[[761,1,1,766,767],[765,1,1,767,768],[766,3,3,768,771],[767,1,1,771,772],[773,1,1,772,773],[774,1,1,773,774],[777,5,5,774,779],[780,1,1,779,780]]],[25,4,4,780,784,[[835,2,2,780,782],[838,2,2,782,784]]],[27,1,1,784,785,[[864,1,1,784,785]]],[29,2,2,785,787,[[884,1,1,785,786],[887,1,1,786,787]]],[37,6,5,787,792,[[922,5,4,787,791],[923,1,1,791,792]]]],[7207,7212,7608,7614,7615,7616,7617,7618,7630,7632,7633,7635,7638,7640,7641,7644,7646,7647,7649,7650,7651,7652,7655,7656,7657,7659,7660,7661,7662,7663,7666,7667,7668,7669,7672,7673,7675,7676,7677,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7690,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7710,7711,7713,7714,7715,7716,7720,7721,7724,7725,7726,7728,7731,7733,7734,7735,7736,7740,7741,7742,7745,7746,7747,7754,7758,7763,7764,7765,7769,7771,7772,7773,7774,7776,7777,7780,7781,7782,7783,7784,7788,7790,7791,7792,7793,7801,7804,7807,7808,7809,7811,7812,7814,7815,7816,7817,7818,7819,7820,7822,7823,7824,7825,7826,7828,7829,7834,7835,7836,7838,7839,7840,7841,7842,7843,7846,7847,7848,7855,7856,7861,7862,7865,7866,7869,7870,7871,7874,7875,7881,7882,7883,7884,7893,7896,7900,7901,7903,7904,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7917,7918,7919,7920,7922,7926,7927,7930,7931,7932,7933,7934,7935,7937,7938,7939,7940,7941,7942,7943,7944,7959,7969,7970,7972,7973,7975,7976,7978,7979,7981,7982,7984,7985,7986,7987,7988,7989,7991,7993,7995,7996,7997,7998,7999,8000,8001,8004,8009,8023,8024,8025,8026,8027,8033,8035,8036,8037,8038,8039,8050,8051,8052,8053,8054,8059,8060,8062,8064,8066,8080,8082,8083,8086,8087,8089,8090,8091,8093,8095,8098,8099,8100,8101,8102,8103,8107,8109,8112,8116,8128,8129,8132,8133,8135,8136,8138,8139,8140,8141,8142,8143,8144,8145,8149,8151,8152,8153,8155,8157,8158,8159,8162,8165,8166,8167,8169,8171,8172,8173,8174,8175,8177,8178,8185,8188,8197,8198,8200,8206,8210,8212,8213,8214,8215,8216,8217,8218,8219,8220,8222,8223,8224,8228,8229,8232,8233,8234,8242,8243,8245,8246,8247,8257,8258,8260,8261,8262,8263,8264,8265,8266,8267,8269,8270,8271,8272,8273,8276,8282,8284,8286,8287,8293,8299,8301,8302,8304,8305,8306,8310,8313,8315,8317,8318,8324,8338,8347,8356,8402,8403,8411,8419,8420,8421,8422,8427,8431,8432,8436,8437,8439,8449,8450,8465,8466,8470,8471,8473,8476,8478,8479,8480,8485,8487,8502,8522,8527,8533,8554,8555,8556,8557,8560,8565,8575,8580,8581,8583,8587,8592,8595,8596,8597,8601,8602,8603,8653,8654,8661,8662,8666,8667,8668,8669,8676,8693,8702,8703,8704,8705,8706,8709,8710,8711,8713,8714,8716,8717,8718,8725,8728,8730,8745,8748,8749,8754,8760,8764,8771,8780,8781,8782,8794,8796,8802,8803,8814,8815,8817,8819,8822,8823,8830,8879,8881,8883,8885,8908,8985,8986,9000,9001,9002,9003,9005,9009,9010,9011,9051,9055,9056,9075,9112,9114,9123,9129,9132,9135,9141,9144,9146,9147,9151,9167,9170,9171,9177,9186,9226,9249,9252,9254,9257,9260,9273,9530,9746,9751,9784,9871,9899,9916,9932,9963,9965,9983,10004,10027,10103,10126,10147,10321,10362,10370,10416,10485,10537,10637,10673,10674,10676,10677,10678,10679,10680,10682,10683,10684,10686,10688,10689,10690,10691,10698,10721,10728,10736,10737,10738,10739,10741,10742,10743,10759,10761,10762,10765,10766,10768,10771,10772,10773,10775,10776,10777,10782,10784,10785,10786,10788,10790,10791,10792,10793,10794,10795,10802,10807,10816,10818,10820,10821,10822,10827,10863,10864,10865,10867,10870,10878,10879,10881,10887,10891,10893,10894,10895,10896,10897,10898,10899,10900,10901,10903,10904,10907,10909,10910,10912,10913,10915,10924,10925,10926,10927,10928,10929,10934,10935,10936,10939,10942,10944,10945,10947,10950,10951,10952,10953,10955,10956,10957,10958,10959,10960,10962,10964,10965,10966,10967,10968,10969,10971,10981,10984,10989,11008,11010,11018,11046,11047,11103,11108,11109,11127,11132,11133,11144,11145,11154,11163,11165,11173,11174,11184,11186,11187,11188,11190,11193,11195,11198,11202,11203,11214,11218,11223,11225,11228,11230,11269,11270,11286,11288,11289,11290,11292,11297,11298,11299,11324,11330,11334,11341,11342,11357,11360,11395,11411,11414,11431,11432,11453,11458,11459,11461,11476,11523,11526,11625,11631,11636,11644,11659,11674,11693,11702,11764,11765,11793,11816,11817,11818,11821,11853,11880,11905,11908,11915,11922,11935,11936,11969,11970,11981,12107,12203,12221,12342,12343,12648,12660,12661,12669,12670,14168,15020,15183,15329,15346,15361,15375,16094,16152,16162,16168,16315,16401,17316,17586,17784,17795,17836,17974,18061,18074,18194,18395,18743,19382,19452,19456,19458,19484,19489,19651,19676,19790,19792,19796,19797,19801,19872,21336,21337,21421,21422,22133,22455,22506,23052,23053,23055,23057,23060]]],["David's",[48,47,[[8,15,14,0,14,[[253,1,1,0,1],[254,2,1,1,2],[255,3,3,2,5],[258,1,1,5,6],[259,1,1,6,7],[260,4,4,7,11],[261,1,1,11,12],[265,2,2,12,14]]],[9,16,16,14,30,[[269,1,1,14,15],[271,1,1,15,16],[274,3,3,16,19],[276,1,1,19,20],[278,2,2,20,22],[279,2,2,22,24],[281,2,2,24,26],[282,1,1,26,27],[285,1,1,27,28],[290,2,2,28,30]]],[10,1,1,30,31,[[291,1,1,30,31]]],[11,3,3,31,34,[[323,1,1,31,32],[331,1,1,32,33],[332,1,1,33,34]]],[12,9,9,34,43,[[355,3,3,34,37],[356,1,1,37,38],[357,2,2,38,40],[358,1,1,40,41],[364,2,2,41,43]]],[13,1,1,43,44,[[389,1,1,43,44]]],[18,1,1,44,45,[[609,1,1,44,45]]],[22,1,1,45,46,[[715,1,1,45,46]]],[23,1,1,46,47,[[757,1,1,46,47]]]],[7705,7717,7746,7755,7757,7813,7844,7870,7871,7873,7905,7922,7983,7998,8086,8140,8211,8223,8227,8242,8291,8316,8320,8349,8401,8426,8442,8552,8702,8703,8755,9839,10095,10104,10892,10896,10903,10911,10928,10933,10943,11140,11141,11665,16161,18387,19279]]]]},{"k":"H1733","v":[["*",[3,3,[[1,1,1,0,1,[[55,1,1,0,1]]],[2,2,2,1,3,[[107,1,1,1,2],[109,1,1,2,3]]]],[1675,3265,3338]]],["aunt",[1,1,[[2,1,1,0,1,[[107,1,1,0,1]]]],[3265]]],["sister",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1675]]],["wife",[1,1,[[2,1,1,0,1,[[109,1,1,0,1]]]],[3338]]]]},{"k":"H1734","v":[["Dodo",[5,5,[[6,1,1,0,1,[[220,1,1,0,1]]],[9,2,2,1,3,[[289,2,2,1,3]]],[12,2,2,3,5,[[348,2,2,3,5]]]],[6812,8662,8677,10685,10699]]]]},{"k":"H1735","v":[["Dodavah",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11624]]]]},{"k":"H1736","v":[["*",[7,5,[[0,5,3,0,3,[[29,5,3,0,3]]],[21,1,1,3,4,[[677,1,1,3,4]]],[23,1,1,4,5,[[768,1,1,4,5]]]],[844,845,846,17640,19525]]],["+",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[844]]],["baskets",[1,1,[[23,1,1,0,1,[[768,1,1,0,1]]]],[19525]]],["mandrakes",[5,4,[[0,4,3,0,3,[[29,4,3,0,3]]],[21,1,1,3,4,[[677,1,1,3,4]]]],[844,845,846,17640]]]]},{"k":"H1737","v":[["Dodai",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11113]]]]},{"k":"H1738","v":[["infirmity",[1,1,[[2,1,1,0,1,[[101,1,1,0,1]]]],[3046]]]]},{"k":"H1739","v":[["*",[5,5,[[2,2,2,0,2,[[104,1,1,0,1],[109,1,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]],[24,2,2,3,5,[[797,1,1,3,4],[801,1,1,4,5]]]],[3201,3336,18239,20323,20459]]],["cloth",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18239]]],["faint",[2,2,[[24,2,2,0,2,[[797,1,1,0,1],[801,1,1,1,2]]]],[20323,20459]]],["sick",[1,1,[[2,1,1,0,1,[[104,1,1,0,1]]]],[3201]]],["sickness",[1,1,[[2,1,1,0,1,[[109,1,1,0,1]]]],[3336]]]]},{"k":"H1740","v":[["*",[4,4,[[13,1,1,0,1,[[370,1,1,0,1]]],[22,1,1,1,2,[[682,1,1,1,2]]],[23,1,1,2,3,[[795,1,1,2,3]]],[25,1,1,3,4,[[841,1,1,3,4]]]],[11252,17737,20246,21515]]],["+",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21515]]],["out",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20246]]],["purged",[1,1,[[22,1,1,0,1,[[682,1,1,0,1]]]],[17737]]],["washed",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11252]]]]},{"k":"H1741","v":[["*",[2,2,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,1,1,1,2,[[518,1,1,1,2]]]],[12985,14545]]],["languishing",[1,1,[[18,1,1,0,1,[[518,1,1,0,1]]]],[14545]]],["sorrowful",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12985]]]]},{"k":"H1742","v":[["faint",[3,3,[[22,1,1,0,1,[[679,1,1,0,1]]],[23,1,1,1,2,[[752,1,1,1,2]]],[24,1,1,2,3,[[797,1,1,2,3]]]],[17659,19171,20332]]]]},{"k":"H1743","v":[["beat",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4032]]]]},{"k":"H1744","v":[["lapwing",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3016,5308]]]]},{"k":"H1745","v":[["silence",[2,2,[[18,2,2,0,2,[[571,1,1,0,1],[592,1,1,1,2]]]],[15448,15847]]]]},{"k":"H1746","v":[["Dumah",[4,4,[[0,1,1,0,1,[[24,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]],[12,1,1,2,3,[[338,1,1,2,3]]],[22,1,1,3,4,[[699,1,1,3,4]]]],[672,6254,10282,18046]]]]},{"k":"H1747","v":[["*",[4,4,[[18,4,4,0,4,[[499,1,1,0,1],[516,1,1,1,2],[539,1,1,2,3],[542,1,1,3,4]]]],[14206,14514,14828,14861]]],["silence",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14514]]],["silent",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14206]]],["waiteth",[2,2,[[18,2,2,0,2,[[539,1,1,0,1],[542,1,1,1,2]]]],[14828,14861]]]]},{"k":"H1748","v":[["*",[3,3,[[22,1,1,0,1,[[725,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[18604,20380,22767]]],["dumb",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22767]]],["silent",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18604]]],["wait",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20380]]]]},{"k":"H1749","v":[["wax",[4,4,[[18,3,3,0,3,[[499,1,1,0,1],[545,1,1,1,2],[574,1,1,2,3]]],[32,1,1,3,4,[[893,1,1,3,4]]]],[14218,14902,15483,22583]]]]},{"k":"H1750","v":[["joy",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13910]]]]},{"k":"H1751","v":[["pieces",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21793]]]]},{"k":"H1752","v":[["*",[2,2,[[18,1,1,0,1,[[561,1,1,0,1]]],[25,1,1,1,2,[[825,1,1,1,2]]]],[15269,21061]]],["+",[1,1,[[18,1,1,0,1,[[561,1,1,0,1]]]],[15269]]],["burn",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21061]]]]},{"k":"H1753","v":[["*",[7,6,[[26,7,6,0,6,[[851,1,1,0,1],[853,5,4,1,5],[855,1,1,5,6]]]],[21796,21838,21849,21858,21872,21930]]],["dwell",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[853,1,1,1,2],[855,1,1,2,3]]]],[21796,21838,21930]]],["dwelt",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21849,21858]]],["inhabitants",[2,1,[[26,2,1,0,1,[[853,2,1,0,1]]]],[21872]]]]},{"k":"H1754","v":[["*",[2,2,[[22,2,2,0,2,[[700,1,1,0,1],[707,1,1,1,2]]]],[18070,18196]]],["about",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18196]]],["ball",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18070]]]]},{"k":"H1755","v":[["*",[167,127,[[0,7,7,0,7,[[5,1,1,0,1],[6,1,1,1,2],[8,1,1,2,3],[14,1,1,3,4],[16,3,3,4,7]]],[1,19,17,7,24,[[50,1,1,7,8],[52,2,1,8,9],[61,3,3,9,12],[65,2,2,12,14],[66,2,1,14,15],[76,1,1,15,16],[78,1,1,16,17],[79,4,4,17,21],[80,2,2,21,23],[89,1,1,23,24]]],[2,14,14,24,38,[[92,1,1,24,25],[95,1,1,25,26],[96,1,1,26,27],[99,1,1,27,28],[106,1,1,28,29],[110,1,1,29,30],[111,1,1,30,31],[112,5,5,31,36],[113,1,1,36,37],[114,1,1,37,38]]],[3,10,10,38,48,[[125,1,1,38,39],[126,1,1,39,40],[131,5,5,40,45],[134,1,1,45,46],[148,1,1,46,47],[151,1,1,47,48]]],[4,11,10,48,58,[[153,1,1,48,49],[154,1,1,49,50],[159,1,1,50,51],[175,3,3,51,54],[181,1,1,54,55],[184,4,3,55,58]]],[5,2,2,58,60,[[208,2,2,58,60]]],[6,3,2,60,62,[[212,2,1,60,61],[213,1,1,61,62]]],[12,1,1,62,63,[[353,1,1,62,63]]],[16,2,1,63,64,[[434,2,1,63,64]]],[17,2,2,64,66,[[443,1,1,64,65],[477,1,1,65,66]]],[18,59,37,66,103,[[487,2,1,66,67],[489,1,1,67,68],[491,1,1,68,69],[499,1,1,69,70],[501,1,1,70,71],[510,2,1,71,72],[522,2,1,72,73],[525,1,1,73,74],[526,3,2,74,76],[538,2,1,76,77],[548,1,1,77,78],[549,2,1,78,79],[550,1,1,79,80],[554,2,1,80,81],[555,4,3,81,84],[556,2,1,84,85],[562,2,1,85,86],[566,4,2,86,88],[567,2,1,88,89],[572,1,1,89,90],[577,2,1,90,91],[579,5,3,91,94],[582,1,1,94,95],[583,2,1,95,96],[586,1,1,96,97],[589,1,1,97,98],[596,2,1,98,99],[612,2,1,99,100],[622,4,2,100,102],[623,2,1,102,103]]],[19,6,5,103,108,[[654,2,1,103,104],[657,4,4,104,108]]],[20,2,1,108,109,[[659,2,1,108,109]]],[22,18,11,109,120,[[691,2,1,109,110],[712,4,2,110,112],[716,1,1,112,113],[719,1,1,113,114],[729,3,2,114,116],[731,1,1,116,117],[736,2,1,117,118],[738,2,1,118,119],[739,2,1,119,120]]],[23,4,3,120,123,[[746,1,1,120,121],[751,1,1,121,122],[794,2,1,122,123]]],[24,2,1,123,124,[[801,2,1,123,124]]],[28,5,3,124,127,[[876,1,1,124,125],[877,2,1,125,126],[878,2,1,126,127]]]],[146,160,217,376,404,406,409,1538,1594,1830,1833,1858,1979,1980,1999,2293,2378,2390,2392,2403,2413,2433,2436,2722,2795,2867,2915,2986,3242,3362,3372,3416,3423,3433,3443,3445,3449,3499,3975,3996,4167,4168,4174,4176,4191,4280,4731,4874,4927,4952,5120,5502,5503,5508,5701,5763,5765,5778,6453,6454,6555,6570,10835,12862,13037,13938,14047,14073,14085,14234,14247,14377,14614,14647,14659,14667,14825,14994,15005,15035,15101,15117,15119,15121,15198,15276,15327,15330,15379,15464,15513,15533,15539,15545,15614,15682,15768,15805,15988,16188,16324,16333,16351,17193,17262,17263,17264,17265,17319,17926,18313,18320,18402,18455,18681,18682,18719,18798,18836,18847,18996,19148,20205,20461,22294,22313,22363]]],["+",[56,29,[[1,3,2,0,2,[[52,2,1,0,1],[66,1,1,1,2]]],[4,2,1,2,3,[[184,2,1,2,3]]],[16,2,1,3,4,[[434,2,1,3,4]]],[18,38,19,4,23,[[487,2,1,4,5],[522,2,1,5,6],[526,2,1,6,7],[538,2,1,7,8],[549,2,1,8,9],[554,2,1,9,10],[556,2,1,10,11],[562,2,1,11,12],[566,4,2,12,14],[567,2,1,14,15],[577,2,1,15,16],[579,4,2,16,18],[583,2,1,18,19],[596,2,1,19,20],[612,2,1,20,21],[622,2,1,21,22],[623,2,1,22,23]]],[19,2,1,23,24,[[654,2,1,23,24]]],[22,7,4,24,28,[[712,1,1,24,25],[736,2,1,25,26],[738,2,1,26,27],[739,2,1,27,28]]],[28,2,1,28,29,[[877,2,1,28,29]]]],[1594,1999,5765,12862,14047,14614,14659,14825,15005,15101,15198,15276,15327,15330,15379,15513,15533,15545,15682,15988,16188,16333,16351,17193,18313,18798,18836,18847,22313]]],["age",[2,2,[[17,1,1,0,1,[[443,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]]],[13037,18402]]],["all",[1,1,[[18,1,1,0,1,[[510,1,1,0,1]]]],[14377]]],["another",[1,1,[[18,1,1,0,1,[[622,1,1,0,1]]]],[16324]]],["generation",[55,46,[[0,2,2,0,2,[[6,1,1,0,1],[14,1,1,1,2]]],[1,2,2,2,4,[[50,1,1,2,3],[66,1,1,3,4]]],[3,1,1,4,5,[[148,1,1,4,5]]],[4,8,8,5,13,[[153,1,1,5,6],[154,1,1,6,7],[175,3,3,7,10],[181,1,1,10,11],[184,2,2,11,13]]],[6,2,1,13,14,[[212,2,1,13,14]]],[18,17,16,14,30,[[489,1,1,14,15],[491,1,1,15,16],[499,1,1,16,17],[501,1,1,17,18],[525,1,1,18,19],[526,1,1,19,20],[548,1,1,20,21],[550,1,1,21,22],[555,4,3,22,25],[572,1,1,25,26],[579,1,1,26,27],[586,1,1,27,28],[589,1,1,28,29],[622,1,1,29,30]]],[19,4,4,30,34,[[657,4,4,30,34]]],[20,2,1,34,35,[[659,2,1,34,35]]],[22,8,5,35,40,[[691,2,1,35,36],[712,3,2,36,38],[729,2,1,38,39],[731,1,1,39,40]]],[23,4,3,40,43,[[746,1,1,40,41],[751,1,1,41,42],[794,2,1,42,43]]],[24,2,1,43,44,[[801,2,1,43,44]]],[28,3,2,44,46,[[876,1,1,44,45],[878,2,1,45,46]]]],[160,376,1538,1999,4731,4927,4952,5502,5503,5508,5701,5763,5778,6555,14073,14085,14234,14247,14647,14667,14994,15035,15117,15119,15121,15464,15539,15768,15805,16324,17262,17263,17264,17265,17319,17926,18313,18320,18681,18719,18996,19148,20205,20461,22294,22363]]],["generations",[51,51,[[0,5,5,0,5,[[5,1,1,0,1],[8,1,1,1,2],[16,3,3,2,5]]],[1,14,14,5,19,[[61,3,3,5,8],[65,2,2,8,10],[76,1,1,10,11],[78,1,1,11,12],[79,4,4,12,16],[80,2,2,16,18],[89,1,1,18,19]]],[2,14,14,19,33,[[92,1,1,19,20],[95,1,1,20,21],[96,1,1,21,22],[99,1,1,22,23],[106,1,1,23,24],[110,1,1,24,25],[111,1,1,25,26],[112,5,5,26,31],[113,1,1,31,32],[114,1,1,32,33]]],[3,8,8,33,41,[[126,1,1,33,34],[131,5,5,34,39],[134,1,1,39,40],[151,1,1,40,41]]],[4,1,1,41,42,[[159,1,1,41,42]]],[5,2,2,42,44,[[208,2,2,42,44]]],[6,1,1,44,45,[[213,1,1,44,45]]],[12,1,1,45,46,[[353,1,1,45,46]]],[17,1,1,46,47,[[477,1,1,46,47]]],[18,2,2,47,49,[[510,1,1,47,48],[582,1,1,48,49]]],[22,2,2,49,51,[[719,1,1,49,50],[729,1,1,50,51]]]],[146,217,404,406,409,1830,1833,1858,1979,1980,2293,2378,2390,2392,2403,2413,2433,2436,2722,2795,2867,2915,2986,3242,3362,3372,3416,3423,3433,3443,3445,3449,3499,3996,4167,4168,4174,4176,4191,4280,4874,5120,6453,6454,6570,10835,13938,14377,15614,18455,18682]]],["posterity",[1,1,[[3,1,1,0,1,[[125,1,1,0,1]]]],[3975]]]]},{"k":"H1756","v":[["Dor",[7,6,[[5,4,3,0,3,[[197,1,1,0,1],[198,2,1,1,2],[203,1,1,2,3]]],[6,1,1,3,4,[[211,1,1,3,4]]],[10,1,1,4,5,[[294,1,1,4,5]]],[12,1,1,5,6,[[344,1,1,5,6]]]],[6109,6153,6286,6536,8855,10564]]]]},{"k":"H1757","v":[["Dura",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21808]]]]},{"k":"H1758","v":[["*",[14,13,[[4,1,1,0,1,[[177,1,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]],[11,1,1,2,3,[[325,1,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[17,1,1,4,5,[[474,1,1,4,5]]],[22,5,4,5,9,[[703,2,1,5,6],[706,2,2,6,8],[719,1,1,8,9]]],[27,1,1,9,10,[[871,1,1,9,10]]],[29,1,1,10,11,[[879,1,1,10,11]]],[32,1,1,11,12,[[896,1,1,11,12]]],[34,1,1,12,13,[[905,1,1,12,13]]]],[5551,6726,9878,10954,13849,18128,18191,18192,18466,22236,22367,22633,22780]]],["+",[2,2,[[6,1,1,0,1,[[218,1,1,0,1]]],[29,1,1,1,2,[[879,1,1,1,2]]]],[6726,22367]]],["break",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13849]]],["down",[2,1,[[22,2,1,0,1,[[703,2,1,0,1]]]],[18128]]],["out",[2,2,[[4,1,1,0,1,[[177,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]]],[5551,22236]]],["thresh",[3,3,[[22,1,1,0,1,[[719,1,1,0,1]]],[32,1,1,1,2,[[896,1,1,1,2]]],[34,1,1,2,3,[[905,1,1,2,3]]]],[18466,22633,22780]]],["threshed",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18191]]],["threshing",[3,3,[[11,1,1,0,1,[[325,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]],[22,1,1,2,3,[[706,1,1,2,3]]]],[9878,10954,18192]]]]},{"k":"H1759","v":[["down",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21956]]]]},{"k":"H1760","v":[["*",[10,9,[[18,7,6,0,6,[[512,1,1,0,1],[513,1,1,1,2],[539,1,1,2,3],[595,2,1,3,4],[617,1,1,4,5],[624,1,1,5,6]]],[19,1,1,6,7,[[641,1,1,6,7]]],[22,1,1,7,8,[[734,1,1,7,8]]],[23,1,1,8,9,[[767,1,1,8,9]]]],[14415,14450,14830,15882,16267,16353,16804,18761,19496]]],["+",[2,1,[[18,2,1,0,1,[[595,2,1,0,1]]]],[15882]]],["away",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16804]]],["chase",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14415]]],["down",[1,1,[[18,1,1,0,1,[[513,1,1,0,1]]]],[14450]]],["on",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19496]]],["outcasts",[2,2,[[18,1,1,0,1,[[624,1,1,0,1]]],[22,1,1,1,2,[[734,1,1,1,2]]]],[16353,18761]]],["overthrow",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16267]]],["tottering",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14830]]]]},{"k":"H1761","v":[["musick",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21923]]]]},{"k":"H1762","v":[["+",[2,2,[[18,2,2,0,2,[[533,1,1,0,1],[593,1,1,1,2]]]],[14768,15856]]]]},{"k":"H1763","v":[["*",[6,6,[[26,6,6,0,6,[[851,1,1,0,1],[853,1,1,1,2],[854,1,1,2,3],[855,1,1,3,4],[856,2,2,4,6]]]],[21789,21842,21893,21931,21940,21952]]],["afraid",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21842]]],["dreadful",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21940,21952]]],["fear",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21931]]],["feared",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21893]]],["terrible",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21789]]]]},{"k":"H1764","v":[["millet",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20538]]]]},{"k":"H1765","v":[["*",[4,4,[[13,1,1,0,1,[[392,1,1,0,1]]],[16,3,3,1,4,[[428,1,1,1,2],[431,1,1,2,3],[433,1,1,3,4]]]],[11752,12762,12805,12831]]],["hasted",[2,2,[[13,1,1,0,1,[[392,1,1,0,1]]],[16,1,1,1,2,[[431,1,1,1,2]]]],[11752,12805]]],["hastened",[1,1,[[16,1,1,0,1,[[428,1,1,0,1]]]],[12762]]],["on",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12831]]]]},{"k":"H1766","v":[["*",[2,2,[[6,1,1,0,1,[[212,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[6563,22319]]],["thrust",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22319]]],["vexed",[1,1,[[6,1,1,0,1,[[212,1,1,0,1]]]],[6563]]]]},{"k":"H1767","v":[["*",[34,31,[[1,2,2,0,2,[[85,2,2,0,2]]],[2,4,4,2,6,[[94,1,1,2,3],[101,1,1,3,4],[114,2,2,4,6]]],[4,2,2,6,8,[[167,1,1,6,7],[177,1,1,7,8]]],[8,2,2,8,10,[[236,1,1,8,9],[242,1,1,9,10]]],[10,1,1,10,11,[[304,1,1,10,11]]],[11,1,1,11,12,[[316,1,1,11,12]]],[13,2,2,12,14,[[378,1,1,12,13],[390,1,1,13,14]]],[15,1,1,14,15,[[417,1,1,14,15]]],[16,1,1,15,16,[[426,1,1,15,16]]],[17,1,1,16,17,[[474,1,1,16,17]]],[19,2,2,17,19,[[652,1,1,17,18],[654,1,1,18,19]]],[22,5,3,19,22,[[706,1,1,19,20],[718,2,1,20,21],[744,2,1,21,22]]],[23,4,4,22,26,[[764,1,1,22,23],[775,1,1,23,24],[792,1,1,24,25],[793,1,1,25,26]]],[30,1,1,26,27,[[888,1,1,26,27]]],[33,1,1,27,28,[[901,1,1,27,28]]],[34,2,1,28,29,[[904,2,1,28,29]]],[37,1,1,29,30,[[924,1,1,29,30]]],[38,1,1,30,31,[[927,1,1,30,31]]]],[2571,2573,2837,3052,3495,3497,5327,5549,7219,7368,9246,9611,11448,11682,12390,12720,13859,17129,17196,18183,18436,18945,19430,19711,20107,20136,22515,22711,22761,23084,23130]]],["+",[18,17,[[1,1,1,0,1,[[85,1,1,0,1]]],[2,4,4,1,5,[[94,1,1,1,2],[101,1,1,2,3],[114,2,2,3,5]]],[8,2,2,5,7,[[236,1,1,5,6],[242,1,1,6,7]]],[10,1,1,7,8,[[304,1,1,7,8]]],[11,1,1,8,9,[[316,1,1,8,9]]],[13,2,2,9,11,[[378,1,1,9,10],[390,1,1,10,11]]],[22,3,2,11,13,[[706,1,1,11,12],[744,2,1,12,13]]],[23,3,3,13,16,[[764,1,1,13,14],[775,1,1,14,15],[792,1,1,15,16]]],[37,1,1,16,17,[[924,1,1,16,17]]]],[2571,2837,3052,3495,3497,7219,7368,9246,9611,11448,11682,18183,18945,19430,19711,20107,23084]]],["ability",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12390]]],["among",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13859]]],["enough",[5,5,[[19,1,1,0,1,[[654,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]],[30,1,1,2,3,[[888,1,1,2,3]]],[33,1,1,3,4,[[901,1,1,3,4]]],[38,1,1,4,5,[[927,1,1,4,5]]]],[17196,20136,22515,22711,23130]]],["much",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12720]]],["sufficient",[5,4,[[1,1,1,0,1,[[85,1,1,0,1]]],[4,1,1,1,2,[[167,1,1,1,2]]],[19,1,1,2,3,[[652,1,1,2,3]]],[22,2,1,3,4,[[718,2,1,3,4]]]],[2573,5327,17129,18436]]],["to",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5549]]],["very",[2,1,[[34,2,1,0,1,[[904,2,1,0,1]]]],[22761]]]]},{"k":"H1768","v":[["*",[335,183,[[14,91,54,0,54,[[406,15,12,0,12],[407,25,13,12,25],[408,23,14,25,39],[409,28,15,39,54]]],[23,1,1,54,55,[[754,1,1,54,55]]],[26,243,128,55,183,[[851,65,32,55,87],[852,40,22,87,109],[853,40,21,109,130],[854,38,18,130,148],[855,39,21,148,169],[856,21,14,169,183]]]],[12120,12121,12122,12123,12124,12125,12126,12127,12128,12129,12133,12134,12135,12136,12138,12140,12142,12144,12145,12146,12147,12148,12149,12150,12151,12152,12153,12154,12155,12156,12157,12159,12160,12161,12162,12163,12164,12166,12169,12185,12186,12187,12188,12189,12190,12191,12192,12193,12194,12195,12196,12197,12198,12199,19212,21766,21767,21768,21769,21772,21773,21774,21776,21777,21778,21781,21782,21783,21784,21785,21786,21787,21788,21790,21791,21792,21793,21795,21796,21797,21798,21799,21801,21802,21803,21805,21807,21808,21809,21810,21812,21813,21814,21815,21817,21818,21819,21821,21822,21824,21825,21826,21827,21829,21832,21833,21834,21835,21836,21838,21839,21843,21845,21846,21852,21854,21855,21856,21857,21859,21860,21861,21862,21863,21866,21867,21869,21870,21871,21874,21876,21877,21879,21881,21885,21886,21887,21888,21889,21890,21893,21894,21895,21896,21897,21898,21899,21903,21906,21907,21908,21909,21912,21913,21915,21917,21918,21919,21920,21921,21922,21924,21925,21927,21928,21929,21930,21931,21932,21937,21939,21940,21942,21943,21944,21947,21950,21952,21953,21955,21956,21960,21961]]],["+",[64,54,[[14,12,12,0,12,[[406,2,2,0,2],[408,4,4,2,6],[409,6,6,6,12]]],[26,52,42,12,54,[[851,17,13,12,25],[852,5,5,25,30],[853,9,7,30,37],[854,5,4,37,41],[855,8,7,41,48],[856,8,6,48,54]]]],[12124,12133,12152,12159,12160,12162,12187,12191,12194,12195,12196,12199,21766,21767,21768,21773,21777,21786,21787,21792,21796,21798,21799,21801,21803,21813,21815,21818,21829,21836,21854,21855,21860,21862,21863,21869,21870,21881,21886,21895,21896,21907,21908,21909,21912,21915,21927,21929,21937,21940,21942,21943,21944,21955]]],["But",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21767]]],["That",[6,6,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]],[26,4,4,2,6,[[852,1,1,2,3],[855,3,3,3,6]]]],[12125,12161,21836,21918,21920,21931]]],["because",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[855,1,1,1,2]]]],[21846,21928]]],["for",[6,6,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,5,5,1,6,[[851,3,3,1,4],[853,1,1,4,5],[855,1,1,5,6]]]],[12196,21778,21781,21795,21855,21931]]],["of",[63,49,[[14,18,13,0,13,[[406,2,2,0,2],[407,8,5,2,7],[408,3,2,7,9],[409,5,4,9,13]]],[26,45,36,13,49,[[851,16,11,13,24],[852,6,6,24,30],[853,6,4,30,34],[854,10,8,34,42],[855,4,4,42,46],[856,3,3,46,49]]]],[12120,12125,12136,12145,12147,12148,12150,12155,12159,12185,12190,12194,12199,21772,21778,21783,21790,21791,21792,21796,21797,21799,21802,21807,21808,21829,21832,21833,21835,21836,21852,21860,21863,21866,21877,21879,21881,21887,21890,21897,21898,21903,21918,21921,21924,21931,21939,21960,21961]]],["seeing",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21805]]],["than",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21826]]],["that",[94,81,[[14,30,26,0,26,[[406,6,6,0,6],[407,11,10,6,16],[408,5,4,16,20],[409,8,6,20,26]]],[23,1,1,26,27,[[754,1,1,26,27]]],[26,63,54,27,81,[[851,15,13,27,40],[852,14,10,40,50],[853,13,11,50,61],[854,9,9,61,70],[855,10,9,70,79],[856,2,2,79,81]]]],[12121,12123,12125,12126,12127,12129,12135,12138,12140,12142,12144,12145,12146,12148,12149,12151,12153,12159,12162,12163,12186,12189,12192,12194,12197,12198,19212,21766,21767,21768,21769,21774,21776,21783,21788,21792,21793,21798,21803,21805,21810,21812,21814,21817,21822,21825,21827,21829,21835,21836,21838,21839,21843,21846,21854,21857,21859,21862,21863,21867,21869,21877,21879,21888,21889,21890,21893,21895,21899,21903,21907,21912,21913,21915,21917,21918,21920,21922,21930,21940,21953]]],["those",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21874]]],["what",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[852,2,2,1,3]]]],[21781,21812,21822]]],["when",[4,4,[[26,4,4,0,4,[[852,1,1,0,1],[854,1,1,1,2],[855,2,2,2,4]]]],[21814,21894,21915,21919]]],["where",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12154]]],["whereas",[4,4,[[26,4,4,0,4,[[851,2,2,0,2],[853,2,2,2,4]]]],[21799,21801,21860,21863]]],["which",[56,52,[[14,24,22,0,22,[[406,3,3,0,3],[407,5,5,3,8],[408,9,7,8,15],[409,7,7,15,22]]],[26,32,30,22,52,[[851,5,5,22,27],[852,6,6,27,33],[853,2,2,33,35],[854,5,4,35,39],[855,7,7,39,46],[856,7,6,46,52]]]],[12122,12128,12134,12136,12140,12148,12150,12151,12156,12157,12160,12163,12164,12166,12169,12187,12188,12189,12190,12193,12194,12198,21772,21784,21785,21797,21802,21809,21819,21821,21822,21825,21836,21857,21861,21876,21877,21887,21897,21906,21913,21917,21918,21920,21929,21931,21944,21947,21950,21952,21953,21956]]],["who",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[852,1,1,1,2],[855,1,1,2,3]]]],[21781,21835,21932]]],["whom",[15,12,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,13,10,2,12,[[851,1,1,2,3],[852,2,2,3,5],[853,1,1,5,6],[854,7,4,6,10],[855,2,2,10,12]]]],[12120,12148,21782,21819,21824,21845,21885,21886,21887,21893,21921,21925]]],["whose",[10,10,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,9,9,1,10,[[851,2,2,1,3],[852,1,1,3,4],[853,4,4,4,8],[854,1,1,8,9],[856,1,1,9,10]]]],[12188,21769,21784,21834,21845,21856,21871,21874,21897,21952]]]]},{"k":"H1769","v":[["*",[11,11,[[3,5,5,0,5,[[137,1,1,0,1],[148,2,2,1,3],[149,2,2,3,5]]],[5,2,2,5,7,[[199,2,2,5,7]]],[15,1,1,7,8,[[423,1,1,7,8]]],[22,1,1,8,9,[[693,1,1,8,9]]],[23,2,2,9,11,[[792,2,2,9,11]]]],[4370,4721,4752,4805,4806,6163,6171,12613,17962,20098,20102]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4806]]],["Dibon",[9,9,[[3,3,3,0,3,[[137,1,1,0,1],[148,2,2,1,3]]],[5,2,2,3,5,[[199,2,2,3,5]]],[15,1,1,5,6,[[423,1,1,5,6]]],[22,1,1,6,7,[[693,1,1,6,7]]],[23,2,2,7,9,[[792,2,2,7,9]]]],[4370,4721,4752,6163,6171,12613,17962,20098,20102]]],["Dibongad",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4805]]]]},{"k":"H1770","v":[["fish",[1,1,[[23,1,1,0,1,[[760,1,1,0,1]]]],[19352]]]]},{"k":"H1771","v":[["fishers",[2,2,[[22,1,1,0,1,[[697,1,1,0,1]]],[23,1,1,1,2,[[760,1,1,1,2]]]],[18012,19352]]]]},{"k":"H1772","v":[["*",[2,2,[[4,1,1,0,1,[[166,1,1,0,1]]],[22,1,1,1,2,[[712,1,1,1,2]]]],[5303,18318]]],["vulture",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5303]]],["vultures",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18318]]]]},{"k":"H1773","v":[["ink",[1,1,[[23,1,1,0,1,[[780,1,1,0,1]]]],[19860]]]]},{"k":"H1774","v":[["Dizahab",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4893]]]]},{"k":"H1775","v":[["Dimon",[2,1,[[22,2,1,0,1,[[693,2,1,0,1]]]],[17969]]]]},{"k":"H1776","v":[["Dimonah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6224]]]]},{"k":"H1777","v":[["*",[24,24,[[0,4,4,0,4,[[5,1,1,0,1],[14,1,1,1,2],[29,1,1,2,3],[48,1,1,3,4]]],[4,1,1,4,5,[[184,1,1,4,5]]],[8,1,1,5,6,[[237,1,1,5,6]]],[9,1,1,6,7,[[285,1,1,6,7]]],[17,1,1,7,8,[[471,1,1,7,8]]],[18,8,8,8,16,[[484,1,1,8,9],[486,1,1,9,10],[527,1,1,10,11],[531,1,1,11,12],[549,1,1,12,13],[573,1,1,13,14],[587,1,1,14,15],[612,1,1,15,16]]],[19,1,1,16,17,[[658,1,1,16,17]]],[20,1,1,17,18,[[664,1,1,17,18]]],[22,1,1,18,19,[[681,1,1,18,19]]],[23,4,4,19,23,[[749,1,1,19,20],[765,1,1,20,21],[766,1,1,21,22],[774,1,1,22,23]]],[37,1,1,23,24,[[913,1,1,23,24]]]],[140,374,836,1489,5794,7250,8520,13767,14003,14029,14672,14726,15002,15475,15792,16189,17293,17427,17720,19086,19452,19470,19680,22919]]],["+",[1,1,[[37,1,1,0,1,[[913,1,1,0,1]]]],[22919]]],["Execute",[1,1,[[23,1,1,0,1,[[765,1,1,0,1]]]],[19452]]],["cause",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17293]]],["contend",[1,1,[[20,1,1,0,1,[[664,1,1,0,1]]]],[17427]]],["judge",[13,13,[[0,2,2,0,2,[[14,1,1,0,1],[48,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[18,7,7,4,11,[[484,1,1,4,5],[527,1,1,5,6],[531,1,1,6,7],[549,1,1,7,8],[573,1,1,8,9],[587,1,1,9,10],[612,1,1,10,11]]],[22,1,1,11,12,[[681,1,1,11,12]]],[23,1,1,12,13,[[749,1,1,12,13]]]],[374,1489,5794,7250,14003,14672,14726,15002,15475,15792,16189,17720,19086]]],["judged",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[23,1,1,1,2,[[766,1,1,1,2]]]],[836,19470]]],["judgeth",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13767]]],["judgment",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14029]]],["plead",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19680]]],["strife",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8520]]],["strive",[1,1,[[0,1,1,0,1,[[5,1,1,0,1]]]],[140]]]]},{"k":"H1778","v":[["judge",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12198]]]]},{"k":"H1779","v":[["*",[20,17,[[4,2,1,0,1,[[169,2,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]],[17,4,3,2,5,[[454,1,1,2,3],[470,1,1,3,4],[471,2,1,4,5]]],[18,3,3,5,8,[[486,1,1,5,6],[553,1,1,6,7],[617,1,1,7,8]]],[19,5,5,8,13,[[647,1,1,8,9],[649,1,1,9,10],[656,1,1,10,11],[658,2,2,11,13]]],[22,1,1,13,14,[[688,1,1,13,14]]],[23,4,3,14,17,[[749,2,1,14,15],[766,1,1,15,16],[774,1,1,16,17]]]],[5372,12715,13326,13734,13753,14025,15089,16275,16962,17025,17231,17289,17292,17852,19086,19470,19680]]],["+",[2,2,[[17,1,1,0,1,[[454,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[13326,17852]]],["cause",[8,7,[[18,2,2,0,2,[[486,1,1,0,1],[617,1,1,1,2]]],[19,2,2,2,4,[[656,1,1,2,3],[658,1,1,3,4]]],[23,4,3,4,7,[[749,2,1,4,5],[766,1,1,5,6],[774,1,1,6,7]]]],[14025,16275,17231,17292,19086,19470,19680]]],["judgment",[7,6,[[16,1,1,0,1,[[426,1,1,0,1]]],[17,3,2,1,3,[[470,1,1,1,2],[471,2,1,2,3]]],[18,1,1,3,4,[[553,1,1,3,4]]],[19,2,2,4,6,[[647,1,1,4,5],[658,1,1,5,6]]]],[12715,13734,13753,15089,16962,17289]]],["plea",[2,1,[[4,2,1,0,1,[[169,2,1,0,1]]]],[5372]]],["strife",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17025]]]]},{"k":"H1780","v":[["judgment",[5,5,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,4,4,1,5,[[853,1,1,1,2],[856,3,3,2,5]]]],[12199,21874,21943,21955,21959]]]]},{"k":"H1781","v":[["judge",[2,2,[[8,1,1,0,1,[[259,1,1,0,1]]],[18,1,1,1,2,[[545,1,1,1,2]]]],[7854,14905]]]]},{"k":"H1782","v":[["judges",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12198]]]]},{"k":"H1783","v":[["*",[8,8,[[0,8,8,0,8,[[29,1,1,0,1],[33,6,6,1,7],[45,1,1,7,8]]]],[851,981,983,985,993,1005,1006,1401]]],["Dinah",[7,7,[[0,7,7,0,7,[[29,1,1,0,1],[33,5,5,1,6],[45,1,1,6,7]]]],[851,981,983,985,993,1006,1401]]],["Dinah's",[1,1,[[0,1,1,0,1,[[33,1,1,0,1]]]],[1005]]]]},{"k":"H1784","v":[["Dinaites",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12119]]]]},{"k":"H1785","v":[["*",[6,6,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,1,1,1,2,[[796,1,1,1,2]]],[25,4,4,2,6,[[805,1,1,2,3],[818,1,1,3,4],[822,1,1,4,5],[827,1,1,5,6]]]],[10223,20280,20531,20842,20966,21108]]],["fort",[3,3,[[25,3,3,0,3,[[805,1,1,0,1],[822,1,1,1,2],[827,1,1,2,3]]]],[20531,20966,21108]]],["forts",[3,3,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,1,1,1,2,[[796,1,1,1,2]]],[25,1,1,2,3,[[818,1,1,2,3]]]],[10223,20280,20842]]]]},{"k":"H1786","v":[["threshing",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3529]]]]},{"k":"H1787","v":[["Dishon",[7,6,[[0,4,4,0,4,[[35,4,4,0,4]]],[12,3,2,4,6,[[338,3,2,4,6]]]],[1061,1065,1066,1070,10290,10293]]]]},{"k":"H1788","v":[["pygarg",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5295]]]]},{"k":"H1789","v":[["Dishan",[5,5,[[0,3,3,0,3,[[35,3,3,0,3]]],[12,2,2,3,5,[[338,2,2,3,5]]]],[1061,1068,1070,10290,10294]]]]},{"k":"H1790","v":[["*",[4,4,[[18,3,3,0,3,[[486,1,1,0,1],[487,1,1,1,2],[551,1,1,2,3]]],[19,1,1,3,4,[[653,1,1,3,4]]]],[14030,14059,15069,17169]]],["afflicted",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17169]]],["oppressed",[3,3,[[18,3,3,0,3,[[486,1,1,0,1],[487,1,1,1,2],[551,1,1,2,3]]]],[14030,14059,15069]]]]},{"k":"H1791","v":[["*",[13,11,[[14,13,11,0,11,[[406,6,5,0,5],[407,3,3,5,8],[408,4,3,8,11]]]],[12123,12125,12126,12129,12131,12142,12150,12151,12158,12159,12163]]],["same",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12150]]],["this",[12,10,[[14,12,10,0,10,[[406,6,5,0,5],[407,2,2,5,7],[408,4,3,7,10]]]],[12123,12125,12126,12129,12131,12142,12151,12158,12159,12163]]]]},{"k":"H1792","v":[["*",[18,18,[[17,6,6,0,6,[[439,1,1,0,1],[440,1,1,1,2],[441,1,1,2,3],[454,1,1,3,4],[457,1,1,4,5],[469,1,1,5,6]]],[18,4,4,6,10,[[549,1,1,6,7],[566,1,1,7,8],[571,1,1,8,9],[620,1,1,9,10]]],[19,1,1,10,11,[[649,1,1,10,11]]],[22,5,5,11,16,[[681,1,1,11,12],[697,1,1,12,13],[731,2,2,13,15],[735,1,1,15,16]]],[23,1,1,16,17,[[788,1,1,16,17]]],[24,1,1,17,18,[[799,1,1,17,18]]]],[12949,12955,12987,13299,13398,13708,15004,15336,15436,16296,17037,17722,18014,18716,18721,18780,20020,20388]]],["+",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17722]]],["broken",[3,3,[[17,1,1,0,1,[[457,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]],[22,1,1,2,3,[[697,1,1,2,3]]]],[13398,15336,18014]]],["bruise",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18721]]],["bruised",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18716]]],["crush",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20388]]],["crushed",[2,2,[[17,2,2,0,2,[[439,1,1,0,1],[440,1,1,1,2]]]],[12949,12955]]],["destroy",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12987]]],["destroyed",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13708]]],["humbled",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20020]]],["ones",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18780]]],["oppress",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17037]]],["pieces",[3,3,[[17,1,1,0,1,[[454,1,1,0,1]]],[18,2,2,1,3,[[549,1,1,1,2],[571,1,1,2,3]]]],[13299,15004,15436]]],["smitten",[1,1,[[18,1,1,0,1,[[620,1,1,0,1]]]],[16296]]]]},{"k":"H1793","v":[["*",[3,3,[[18,2,2,0,2,[[511,1,1,0,1],[567,1,1,1,2]]],[22,1,1,2,3,[[735,1,1,2,3]]]],[14406,15381,18780]]],["contrite",[2,2,[[18,1,1,0,1,[[511,1,1,0,1]]],[22,1,1,1,2,[[735,1,1,1,2]]]],[14406,18780]]],["destruction",[1,1,[[18,1,1,0,1,[[567,1,1,0,1]]]],[15381]]]]},{"k":"H1794","v":[["*",[5,5,[[18,5,5,0,5,[[487,1,1,0,1],[515,1,1,1,2],[521,1,1,2,3],[528,2,2,3,5]]]],[14051,14498,14590,14699,14708]]],["broken",[3,3,[[18,3,3,0,3,[[515,1,1,0,1],[521,1,1,1,2],[528,1,1,2,3]]]],[14498,14590,14699]]],["contrite",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14708]]],["croucheth",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14051]]]]},{"k":"H1795","v":[["+",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5501]]]]},{"k":"H1796","v":[["waves",[1,1,[[18,1,1,0,1,[[570,1,1,0,1]]]],[15429]]]]},{"k":"H1797","v":[["*",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[856,2,2,1,3]]]],[21789,21953,21954]]],["This",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21789]]],["same",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21954]]],["that",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21953]]]]},{"k":"H1798","v":[["rams",[3,3,[[14,3,3,0,3,[[408,2,2,0,2],[409,1,1,2,3]]]],[12160,12168,12190]]]]},{"k":"H1799","v":[["*",[3,2,[[14,3,2,0,2,[[406,2,1,0,1],[408,1,1,1,2]]]],[12125,12153]]],["record",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12153]]],["records",[2,1,[[14,2,1,0,1,[[406,2,1,0,1]]]],[12125]]]]},{"k":"H1800","v":[["*",[48,47,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,2,2,1,3,[[72,1,1,1,2],[79,1,1,2,3]]],[2,2,2,3,5,[[103,1,1,3,4],[108,1,1,4,5]]],[6,1,1,5,6,[[216,1,1,5,6]]],[7,1,1,6,7,[[234,1,1,6,7]]],[8,1,1,7,8,[[237,1,1,7,8]]],[9,2,2,8,10,[[269,1,1,8,9],[279,1,1,9,10]]],[17,6,6,10,16,[[440,1,1,10,11],[455,2,2,11,13],[466,1,1,13,14],[469,2,2,14,16]]],[18,5,5,16,21,[[518,1,1,16,17],[549,1,1,17,18],[559,2,2,18,20],[590,1,1,20,21]]],[19,15,14,21,35,[[637,1,1,21,22],[641,1,1,22,23],[646,2,2,23,25],[648,1,1,25,26],[649,4,3,26,29],[655,4,4,29,33],[656,2,2,33,35]]],[22,5,5,35,40,[[688,1,1,35,36],[689,1,1,36,37],[692,1,1,37,38],[703,1,1,38,39],[704,1,1,39,40]]],[23,2,2,40,42,[[749,1,1,40,41],[783,1,1,41,42]]],[29,4,4,42,46,[[880,1,1,42,43],[882,1,1,43,44],[883,1,1,44,45],[886,1,1,45,46]]],[35,1,1,46,47,[[908,1,1,46,47]]]],[1214,2147,2397,3132,3296,6669,7182,7248,8082,8321,12967,13336,13345,13604,13702,13711,14543,15013,15236,15237,15820,16671,16803,16929,16942,16997,17024,17031,17037,17199,17204,17207,17211,17231,17238,17852,17888,17958,18122,18136,19062,19933,22386,22411,22434,22487,22832]]],["+",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8321]]],["man",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2147]]],["needy",[2,2,[[22,2,2,0,2,[[688,1,1,0,1],[704,1,1,1,2]]]],[17852,18136]]],["poor",[43,42,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,1,1,1,2,[[79,1,1,1,2]]],[2,2,2,2,4,[[103,1,1,2,3],[108,1,1,3,4]]],[6,1,1,4,5,[[216,1,1,4,5]]],[7,1,1,5,6,[[234,1,1,5,6]]],[8,1,1,6,7,[[237,1,1,6,7]]],[17,6,6,7,13,[[440,1,1,7,8],[455,2,2,8,10],[466,1,1,10,11],[469,2,2,11,13]]],[18,5,5,13,18,[[518,1,1,13,14],[549,1,1,14,15],[559,2,2,15,17],[590,1,1,17,18]]],[19,15,14,18,32,[[637,1,1,18,19],[641,1,1,19,20],[646,2,2,20,22],[648,1,1,22,23],[649,4,3,23,26],[655,4,4,26,30],[656,2,2,30,32]]],[22,3,3,32,35,[[689,1,1,32,33],[692,1,1,33,34],[703,1,1,34,35]]],[23,2,2,35,37,[[749,1,1,35,36],[783,1,1,36,37]]],[29,4,4,37,41,[[880,1,1,37,38],[882,1,1,38,39],[883,1,1,39,40],[886,1,1,40,41]]],[35,1,1,41,42,[[908,1,1,41,42]]]],[1214,2397,3132,3296,6669,7182,7248,12967,13336,13345,13604,13702,13711,14543,15013,15236,15237,15820,16671,16803,16929,16942,16997,17024,17031,17037,17199,17204,17207,17211,17231,17238,17888,17958,18122,19062,19933,22386,22411,22434,22487,22832]]],["weaker",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8082]]]]},{"k":"H1801","v":[["*",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]],[21,1,1,2,3,[[672,1,1,2,3]]],[22,1,1,3,4,[[713,1,1,3,4]]],[35,1,1,4,5,[[906,1,1,4,5]]]],[8632,14147,17562,18326,22796]]],["leap",[2,2,[[22,1,1,0,1,[[713,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]]],[18326,22796]]],["leaped",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8632]]],["leaping",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17562]]],["over",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14147]]]]},{"k":"H1802","v":[["*",[5,4,[[1,3,2,0,2,[[51,3,2,0,2]]],[18,1,1,2,3,[[507,1,1,2,3]]],[19,1,1,3,4,[[647,1,1,3,4]]]],[1570,1573,14320,16959]]],["+",[2,1,[[1,2,1,0,1,[[51,2,1,0,1]]]],[1573]]],["drew",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1570]]],["out",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16959]]],["up",[1,1,[[18,1,1,0,1,[[507,1,1,0,1]]]],[14320]]]]},{"k":"H1803","v":[["*",[7,7,[[11,2,2,0,2,[[336,1,1,0,1],[337,1,1,1,2]]],[21,1,1,2,3,[[677,1,1,2,3]]],[22,1,1,3,4,[[716,1,1,3,4]]],[23,3,3,4,7,[[784,1,1,4,5],[796,2,2,5,7]]]],[10216,10234,17632,18402,19948,20291,20292]]],["+",[5,5,[[11,1,1,0,1,[[337,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]],[23,3,3,2,5,[[784,1,1,2,3],[796,2,2,3,5]]]],[10234,18402,19948,20291,20292]]],["hair",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17632]]],["sort",[1,1,[[11,1,1,0,1,[[336,1,1,0,1]]]],[10216]]]]},{"k":"H1804","v":[["*",[3,2,[[25,3,2,0,2,[[833,3,2,0,2]]]],[21250,21261]]],["trouble",[2,1,[[25,2,1,0,1,[[833,2,1,0,1]]]],[21261]]],["troubledst",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21250]]]]},{"k":"H1805","v":[["+",[2,2,[[3,1,1,0,1,[[140,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[4453,18435]]]]},{"k":"H1806","v":[["*",[7,7,[[12,2,2,0,2,[[340,1,1,0,1],[361,1,1,1,2]]],[14,1,1,2,3,[[404,1,1,2,3]]],[15,2,2,3,5,[[418,1,1,3,4],[419,1,1,4,5]]],[23,2,2,5,7,[[780,2,2,5,7]]]],[10385,11033,12087,12411,12482,19854,19867]]],["Dalaiah",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10385]]],["Delaiah",[6,6,[[12,1,1,0,1,[[361,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,2,2,2,4,[[418,1,1,2,3],[419,1,1,3,4]]],[23,2,2,4,6,[[780,2,2,4,6]]]],[11033,12087,12411,12482,19854,19867]]]]},{"k":"H1807","v":[["Delilah",[6,6,[[6,6,6,0,6,[[226,6,6,0,6]]]],[6953,6955,6959,6961,6962,6967]]]]},{"k":"H1808","v":[["branches",[8,8,[[23,1,1,0,1,[[755,1,1,0,1]]],[25,7,7,1,8,[[818,3,3,1,4],[820,1,1,4,5],[832,3,3,5,8]]]],[19242,20831,20832,20848,20892,21237,21239,21242]]]]},{"k":"H1809","v":[["*",[9,9,[[6,1,1,0,1,[[216,1,1,0,1]]],[17,1,1,1,2,[[463,1,1,1,2]]],[18,3,3,2,5,[[556,1,1,2,3],[593,1,1,3,4],[619,1,1,4,5]]],[19,1,1,5,6,[[653,1,1,5,6]]],[22,3,3,6,9,[[695,1,1,6,7],[697,1,1,7,8],[716,1,1,8,9]]]],[6660,13508,15193,15854,16292,17148,17987,18010,18404]]],["+",[2,2,[[18,2,2,0,2,[[556,1,1,0,1],[619,1,1,1,2]]]],[15193,16292]]],["emptied",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18010]]],["equal",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17148]]],["fail",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18404]]],["impoverished",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6660]]],["low",[1,1,[[18,1,1,0,1,[[593,1,1,0,1]]]],[15854]]],["thin",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17987]]],["up",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13508]]]]},{"k":"H1810","v":[["Dilean",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6240]]]]},{"k":"H1811","v":[["*",[3,3,[[17,1,1,0,1,[[451,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[20,1,1,2,3,[[668,1,1,2,3]]]],[13258,15926,17511]]],["melteth",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15926]]],["out",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13258]]],["through",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17511]]]]},{"k":"H1812","v":[["dropping",[2,2,[[19,2,2,0,2,[[646,1,1,0,1],[654,1,1,1,2]]]],[16938,17184]]]]},{"k":"H1813","v":[["Dalphon",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12841]]]]},{"k":"H1814","v":[["*",[9,9,[[0,1,1,0,1,[[30,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[18,2,2,2,4,[[484,1,1,2,3],[487,1,1,3,4]]],[19,1,1,4,5,[[653,1,1,4,5]]],[22,1,1,5,6,[[683,1,1,5,6]]],[24,1,1,6,7,[[800,1,1,6,7]]],[25,1,1,7,8,[[825,1,1,7,8]]],[30,1,1,8,9,[[888,1,1,8,9]]]],[909,7671,14008,14043,17164,17750,20439,21066,22528]]],["+",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7671]]],["Burning",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17164]]],["inflame",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17750]]],["kindle",[2,2,[[25,1,1,0,1,[[825,1,1,0,1]]],[30,1,1,1,2,[[888,1,1,1,2]]]],[21066,22528]]],["persecute",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14043]]],["persecutors",[1,1,[[18,1,1,0,1,[[484,1,1,0,1]]]],[14008]]],["pursued",[2,2,[[0,1,1,0,1,[[30,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[909,20439]]]]},{"k":"H1815","v":[["burning",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21942]]]]},{"k":"H1816","v":[["inflammation",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5633]]]]},{"k":"H1817","v":[["*",[88,78,[[0,3,3,0,3,[[18,3,3,0,3]]],[1,1,1,3,4,[[70,1,1,3,4]]],[4,2,2,4,6,[[155,1,1,4,5],[167,1,1,5,6]]],[5,2,2,6,8,[[188,1,1,6,7],[192,1,1,7,8]]],[6,7,7,8,15,[[213,3,3,8,11],[221,1,1,11,12],[226,1,1,12,13],[229,2,2,13,15]]],[8,3,3,15,18,[[238,1,1,15,16],[256,1,1,16,17],[258,1,1,17,18]]],[9,2,2,18,20,[[279,2,2,18,20]]],[10,8,5,20,25,[[296,5,3,20,23],[297,2,1,23,24],[306,1,1,24,25]]],[11,9,8,25,33,[[316,3,3,25,28],[318,2,1,28,29],[321,2,2,29,31],[324,1,1,31,32],[330,1,1,32,33]]],[12,1,1,33,34,[[359,1,1,33,34]]],[13,10,8,34,42,[[369,1,1,34,35],[370,4,2,35,37],[374,1,1,37,38],[380,1,1,38,39],[394,1,1,39,40],[395,2,2,40,42]]],[15,11,11,42,53,[[415,6,6,42,48],[418,2,2,48,50],[419,2,2,50,52],[425,1,1,52,53]]],[17,5,5,53,58,[[438,1,1,53,54],[466,1,1,54,55],[473,2,2,55,57],[476,1,1,57,58]]],[18,3,3,58,61,[[555,1,1,58,59],[584,1,1,59,60],[618,1,1,60,61]]],[19,2,2,61,63,[[635,1,1,61,62],[653,1,1,62,63]]],[20,1,1,63,64,[[670,1,1,63,64]]],[21,1,1,64,65,[[678,1,1,64,65]]],[22,4,4,65,69,[[704,1,1,65,66],[723,2,2,66,68],[735,1,1,68,69]]],[23,2,2,69,71,[[780,1,1,69,70],[793,1,1,70,71]]],[25,9,5,71,76,[[827,1,1,71,72],[839,1,1,72,73],[842,7,3,73,76]]],[37,1,1,76,77,[[921,1,1,76,77]]],[38,1,1,77,78,[[925,1,1,77,78]]]],[463,466,467,2083,4980,5336,5888,5975,6591,6592,6593,6860,6952,7046,7051,7291,7785,7817,8334,8335,8927,8928,8930,8984,9317,9607,9608,9636,9706,9759,9766,9859,10040,10967,11236,11255,11268,11351,11482,11788,11794,11798,12328,12330,12333,12340,12341,12342,12402,12411,12421,12423,12690,12914,13620,13801,13803,13902,15136,15715,16279,16636,17155,17527,17649,18150,18562,18563,18773,19865,20158,21102,21436,21549,21550,21551,23029,23099]]],["+",[2,2,[[5,1,1,0,1,[[188,1,1,0,1]]],[6,1,1,1,2,[[221,1,1,1,2]]]],[5888,6860]]],["door",[21,19,[[0,3,3,0,3,[[18,3,3,0,3]]],[1,1,1,3,4,[[70,1,1,3,4]]],[4,1,1,4,5,[[167,1,1,4,5]]],[6,1,1,5,6,[[229,1,1,5,6]]],[9,2,2,6,8,[[279,2,2,6,8]]],[10,2,1,8,9,[[296,2,1,8,9]]],[11,7,6,9,15,[[316,3,3,9,12],[318,2,1,12,13],[321,2,2,13,15]]],[18,1,1,15,16,[[618,1,1,15,16]]],[19,1,1,16,17,[[653,1,1,16,17]]],[21,1,1,17,18,[[678,1,1,17,18]]],[25,1,1,18,19,[[842,1,1,18,19]]]],[463,466,467,2083,5336,7046,8334,8335,8930,9607,9608,9636,9706,9759,9766,16279,17155,17649,21550]]],["doors",[46,43,[[6,5,5,0,5,[[213,3,3,0,3],[226,1,1,3,4],[229,1,1,4,5]]],[8,2,2,5,7,[[238,1,1,5,6],[256,1,1,6,7]]],[10,5,4,7,11,[[296,3,3,7,10],[297,2,1,10,11]]],[11,1,1,11,12,[[330,1,1,11,12]]],[12,1,1,12,13,[[359,1,1,12,13]]],[13,8,6,13,19,[[369,1,1,13,14],[370,4,2,14,16],[394,1,1,16,17],[395,2,2,17,19]]],[15,10,10,19,29,[[415,6,6,19,25],[418,2,2,25,27],[419,2,2,27,29]]],[17,5,5,29,34,[[438,1,1,29,30],[466,1,1,30,31],[473,2,2,31,33],[476,1,1,33,34]]],[18,1,1,34,35,[[555,1,1,34,35]]],[20,1,1,35,36,[[670,1,1,35,36]]],[22,2,2,36,38,[[704,1,1,36,37],[735,1,1,37,38]]],[25,3,3,38,41,[[842,3,3,38,41]]],[37,1,1,41,42,[[921,1,1,41,42]]],[38,1,1,42,43,[[925,1,1,42,43]]]],[6591,6592,6593,6952,7051,7291,7785,8927,8928,8930,8984,10040,10967,11236,11255,11268,11788,11794,11798,12328,12330,12333,12340,12341,12342,12402,12411,12421,12423,12914,13620,13801,13803,13902,15136,17527,18150,18773,21549,21550,21551,23029,23099]]],["gates",[14,14,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,1,1,1,2,[[192,1,1,1,2]]],[8,1,1,2,3,[[258,1,1,2,3]]],[10,1,1,3,4,[[306,1,1,3,4]]],[13,2,2,4,6,[[374,1,1,4,5],[380,1,1,5,6]]],[15,1,1,6,7,[[425,1,1,6,7]]],[18,1,1,7,8,[[584,1,1,7,8]]],[19,1,1,8,9,[[635,1,1,8,9]]],[22,2,2,9,11,[[723,2,2,9,11]]],[23,1,1,11,12,[[793,1,1,11,12]]],[25,2,2,12,14,[[827,1,1,12,13],[839,1,1,13,14]]]],[4980,5975,7817,9317,11351,11482,12690,15715,16636,18562,18563,20158,21102,21436]]],["leaves",[4,2,[[23,1,1,0,1,[[780,1,1,0,1]]],[25,3,1,1,2,[[842,3,1,1,2]]]],[19865,21550]]],["lid",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9859]]]]},{"k":"H1818","v":[["*",[359,294,[[0,11,10,0,10,[[3,2,2,0,2],[8,4,3,2,5],[36,3,3,5,8],[41,1,1,8,9],[48,1,1,9,10]]],[1,29,22,10,32,[[53,3,3,10,13],[56,5,4,13,17],[61,6,4,17,21],[71,2,2,21,23],[72,1,1,23,24],[73,4,2,24,26],[78,6,4,26,30],[79,1,1,30,31],[83,1,1,31,32]]],[2,88,66,32,98,[[90,4,3,32,35],[92,4,4,35,39],[93,15,9,39,48],[94,2,1,48,49],[95,2,2,49,51],[96,5,5,51,56],[97,7,5,56,61],[98,5,3,61,64],[99,1,1,64,65],[101,3,3,65,68],[103,7,7,68,75],[104,2,2,75,77],[105,9,5,77,82],[106,13,7,82,89],[108,2,2,89,91],[109,7,7,91,98]]],[3,15,10,98,108,[[134,1,1,98,99],[135,3,2,99,101],[139,1,1,101,102],[151,10,6,102,108]]],[4,22,16,108,124,[[164,5,3,108,111],[167,1,1,111,112],[169,2,1,112,113],[171,5,4,113,117],[173,4,3,117,120],[174,1,1,120,121],[184,4,3,121,124]]],[5,5,4,124,128,[[188,2,1,124,125],[206,3,3,125,128]]],[6,1,1,128,129,[[219,1,1,128,129]]],[8,8,8,129,137,[[249,3,3,129,132],[254,1,1,132,133],[260,3,3,133,136],[261,1,1,136,137]]],[9,12,11,137,148,[[267,2,2,137,139],[269,2,2,139,141],[270,1,1,141,142],[280,1,1,142,143],[282,3,2,143,145],[286,1,1,145,146],[287,1,1,146,147],[289,1,1,147,148]]],[10,12,10,148,158,[[292,7,6,148,154],[308,1,1,154,155],[311,2,1,155,156],[312,2,2,156,158]]],[11,13,9,158,167,[[315,2,2,158,160],[321,5,3,160,163],[328,3,2,163,165],[333,1,1,165,166],[336,2,1,166,167]]],[12,4,3,167,170,[[348,1,1,167,168],[359,2,1,168,169],[365,1,1,169,170]]],[13,8,5,170,175,[[385,2,1,170,171],[390,1,1,171,172],[395,4,2,172,174],[396,1,1,174,175]]],[17,2,2,175,177,[[451,1,1,175,176],[474,1,1,176,177]]],[18,21,19,177,196,[[482,1,1,177,178],[486,1,1,178,179],[493,1,1,179,180],[503,1,1,180,181],[507,1,1,181,182],[527,1,1,182,183],[528,1,1,183,184],[532,1,1,184,185],[535,1,1,185,186],[536,1,1,186,187],[545,1,1,187,188],[549,1,1,188,189],[555,1,1,189,190],[556,2,2,190,192],[571,1,1,192,193],[582,1,1,193,194],[583,3,1,194,195],[616,1,1,195,196]]],[19,8,8,196,204,[[628,3,3,196,199],[633,1,1,199,200],[639,1,1,200,201],[655,1,1,201,202],[656,1,1,202,203],[657,1,1,203,204]]],[22,15,14,204,218,[[679,2,2,204,206],[682,1,1,206,207],[687,1,1,207,208],[693,1,1,208,209],[704,1,1,209,210],[711,1,1,210,211],[712,4,3,211,214],[727,1,1,214,215],[737,2,2,215,217],[744,1,1,217,218]]],[23,9,9,218,227,[[746,1,1,218,219],[751,1,1,219,220],[763,1,1,220,221],[766,2,2,221,223],[770,1,1,223,224],[790,1,1,224,225],[792,1,1,225,226],[795,1,1,226,227]]],[24,2,2,227,229,[[800,2,2,227,229]]],[25,55,47,229,276,[[804,2,2,229,231],[806,1,1,231,232],[808,1,1,232,233],[810,1,1,233,234],[815,1,1,234,235],[817,8,5,235,240],[819,2,2,240,242],[820,1,1,242,243],[822,1,1,243,244],[823,8,8,244,252],[824,3,2,252,254],[825,4,4,254,258],[829,1,1,258,259],[833,1,1,259,260],[834,6,5,260,265],[836,4,1,265,266],[837,1,1,266,267],[839,1,1,267,268],[840,3,3,268,271],[844,2,2,271,273],[845,2,2,273,275],[846,1,1,275,276]]],[27,5,4,276,280,[[862,1,1,276,277],[865,2,1,277,278],[867,1,1,278,279],[873,1,1,279,280]]],[28,4,4,280,284,[[877,2,2,280,282],[878,2,2,282,284]]],[31,1,1,284,285,[[889,1,1,284,285]]],[32,2,2,285,287,[[895,1,1,285,286],[899,1,1,286,287]]],[33,1,1,287,288,[[902,1,1,287,288]]],[34,3,3,288,291,[[904,3,3,288,291]]],[35,1,1,291,292,[[906,1,1,291,292]]],[37,2,2,292,294,[[919,2,2,292,294]]]],[89,90,209,210,211,1105,1109,1114,1274,1484,1610,1626,1627,1702,1704,1705,1706,1823,1829,1838,1839,2115,2116,2162,2183,2185,2348,2352,2356,2357,2392,2521,2750,2756,2760,2780,2786,2791,2795,2800,2801,2802,2811,2812,2813,2820,2825,2829,2839,2876,2879,2881,2893,2905,2906,2912,2932,2936,2940,2941,2947,2962,2965,2971,2995,3048,3049,3051,3117,3125,3128,3136,3139,3162,3163,3187,3193,3215,3216,3219,3220,3228,3239,3241,3245,3246,3247,3248,3249,3297,3307,3327,3329,3330,3331,3334,3336,3345,4274,4293,4294,4440,4864,4866,4869,4870,4872,4878,5256,5263,5267,5342,5372,5412,5416,5418,5419,5454,5455,5456,5478,5772,5800,5801,5888,6375,6377,6381,6778,7540,7541,7542,7711,7887,7892,7894,7925,8038,8044,8108,8109,8131,8367,8433,8434,8566,8581,8670,8775,8779,8801,8802,8803,8807,9369,9470,9515,9518,9598,9599,9763,9782,9789,9976,9978,10135,10206,10692,10972,11146,11586,11702,11813,11815,11843,13256,13864,13979,14033,14096,14282,14328,14681,14705,14755,14789,14792,14923,15014,15157,15188,15195,15452,15635,15689,16258,16411,16416,16418,16557,16725,17213,17234,17284,17665,17669,17737,17834,17969,18151,18294,18306,18309,18310,18662,18803,18807,18925,18999,19125,19411,19457,19471,19587,20055,20090,20247,20433,20434,20520,20522,20563,20600,20631,20750,20768,20771,20784,20798,20800,20859,20862,20891,20976,20978,20979,20980,20982,20985,20988,20989,21003,21044,21052,21062,21063,21064,21065,21180,21254,21284,21285,21286,21288,21305,21350,21377,21447,21465,21466,21467,21590,21592,21606,21614,21649,22098,22135,22175,22266,22341,22342,22362,22364,22545,22618,22666,22713,22756,22760,22765,22804,23006,23010]]],["+",[37,34,[[1,3,3,0,3,[[78,2,2,0,2],[79,1,1,2,3]]],[2,13,12,3,15,[[93,4,4,3,7],[94,1,1,7,8],[95,2,2,8,10],[97,1,1,10,11],[103,2,2,11,13],[105,3,2,13,15]]],[3,2,1,15,16,[[135,2,1,15,16]]],[4,2,1,16,17,[[184,2,1,16,17]]],[9,2,2,17,19,[[267,1,1,17,18],[269,1,1,18,19]]],[11,1,1,19,20,[[321,1,1,19,20]]],[18,2,2,20,22,[[493,1,1,20,21],[528,1,1,21,22]]],[19,1,1,22,23,[[656,1,1,22,23]]],[22,3,3,23,26,[[712,3,3,23,26]]],[23,2,2,26,28,[[790,1,1,26,27],[792,1,1,27,28]]],[25,3,3,28,31,[[833,1,1,28,29],[844,1,1,29,30],[846,1,1,30,31]]],[27,1,1,31,32,[[867,1,1,31,32]]],[34,2,2,32,34,[[904,2,2,32,34]]]],[2348,2356,2392,2800,2811,2825,2829,2839,2876,2879,2940,3125,3136,3215,3219,4293,5800,8044,8109,9789,14096,14705,17234,18306,18309,18310,20055,20090,21254,21592,21649,22175,22756,22765]]],["blood",[307,253,[[0,11,10,0,10,[[3,2,2,0,2],[8,4,3,2,5],[36,3,3,5,8],[41,1,1,8,9],[48,1,1,9,10]]],[1,24,19,10,29,[[53,1,1,10,11],[56,5,4,11,15],[61,6,4,15,19],[71,2,2,19,21],[72,1,1,21,22],[73,4,2,22,24],[78,4,4,24,28],[83,1,1,28,29]]],[2,75,58,29,87,[[90,4,3,29,32],[92,4,4,32,36],[93,11,7,36,43],[94,1,1,43,44],[96,5,5,44,49],[97,6,4,49,53],[98,5,3,53,56],[99,1,1,56,57],[101,3,3,57,60],[103,5,5,60,65],[104,2,2,65,67],[105,6,4,67,71],[106,13,7,71,78],[108,2,2,78,80],[109,7,7,80,87]]],[3,13,9,87,96,[[134,1,1,87,88],[135,1,1,88,89],[139,1,1,89,90],[151,10,6,90,96]]],[4,20,15,96,111,[[164,5,3,96,99],[167,1,1,99,100],[169,2,1,100,101],[171,5,4,101,105],[173,4,3,105,108],[174,1,1,108,109],[184,2,2,109,111]]],[5,5,4,111,115,[[188,2,1,111,112],[206,3,3,112,115]]],[6,1,1,115,116,[[219,1,1,115,116]]],[8,8,8,116,124,[[249,3,3,116,119],[254,1,1,119,120],[260,3,3,120,123],[261,1,1,123,124]]],[9,7,7,124,131,[[267,1,1,124,125],[269,1,1,125,126],[270,1,1,126,127],[280,1,1,127,128],[282,1,1,128,129],[286,1,1,129,130],[289,1,1,130,131]]],[10,12,10,131,141,[[292,7,6,131,137],[308,1,1,137,138],[311,2,1,138,139],[312,2,2,139,141]]],[11,12,8,141,149,[[315,2,2,141,143],[321,4,2,143,145],[328,3,2,145,147],[333,1,1,147,148],[336,2,1,148,149]]],[12,4,3,149,152,[[348,1,1,149,150],[359,2,1,150,151],[365,1,1,151,152]]],[13,8,5,152,157,[[385,2,1,152,153],[390,1,1,153,154],[395,4,2,154,156],[396,1,1,156,157]]],[17,2,2,157,159,[[451,1,1,157,158],[474,1,1,158,159]]],[18,14,12,159,171,[[486,1,1,159,160],[507,1,1,160,161],[527,1,1,161,162],[535,1,1,162,163],[545,1,1,163,164],[549,1,1,164,165],[555,1,1,165,166],[556,2,2,166,168],[571,1,1,168,169],[582,1,1,169,170],[583,3,1,170,171]]],[19,7,7,171,178,[[628,3,3,171,174],[633,1,1,174,175],[639,1,1,175,176],[655,1,1,176,177],[657,1,1,177,178]]],[22,12,12,178,190,[[679,2,2,178,180],[682,1,1,180,181],[687,1,1,181,182],[693,1,1,182,183],[704,1,1,183,184],[711,1,1,184,185],[712,1,1,185,186],[727,1,1,186,187],[737,2,2,187,189],[744,1,1,189,190]]],[23,7,7,190,197,[[746,1,1,190,191],[751,1,1,191,192],[763,1,1,192,193],[766,2,2,193,195],[770,1,1,195,196],[795,1,1,196,197]]],[24,2,2,197,199,[[800,2,2,197,199]]],[25,48,40,199,239,[[804,2,2,199,201],[806,1,1,201,202],[810,1,1,202,203],[815,1,1,203,204],[817,8,5,204,209],[819,2,2,209,211],[820,1,1,211,212],[822,1,1,212,213],[823,7,7,213,220],[824,3,2,220,222],[825,2,2,222,224],[829,1,1,224,225],[834,6,5,225,230],[836,4,1,230,231],[837,1,1,231,232],[839,1,1,232,233],[840,3,3,233,236],[844,1,1,236,237],[845,2,2,237,239]]],[27,4,3,239,242,[[862,1,1,239,240],[865,2,1,240,241],[873,1,1,241,242]]],[28,4,4,242,246,[[877,2,2,242,244],[878,2,2,244,246]]],[31,1,1,246,247,[[889,1,1,246,247]]],[32,2,2,247,249,[[895,1,1,247,248],[899,1,1,248,249]]],[34,1,1,249,250,[[904,1,1,249,250]]],[35,1,1,250,251,[[906,1,1,250,251]]],[37,2,2,251,253,[[919,2,2,251,253]]]],[89,90,209,210,211,1105,1109,1114,1274,1484,1610,1702,1704,1705,1706,1823,1829,1838,1839,2115,2116,2162,2183,2185,2348,2352,2356,2357,2521,2750,2756,2760,2780,2786,2791,2795,2801,2802,2812,2813,2820,2825,2829,2839,2881,2893,2905,2906,2912,2932,2936,2941,2947,2962,2965,2971,2995,3048,3049,3051,3117,3128,3139,3162,3163,3187,3193,3215,3216,3220,3228,3239,3241,3245,3246,3247,3248,3249,3297,3307,3327,3329,3330,3331,3334,3336,3345,4274,4294,4440,4864,4866,4869,4870,4872,4878,5256,5263,5267,5342,5372,5412,5416,5418,5419,5454,5455,5456,5478,5772,5801,5888,6375,6377,6381,6778,7540,7541,7542,7711,7887,7892,7894,7925,8038,8108,8131,8367,8434,8566,8670,8775,8779,8801,8802,8803,8807,9369,9470,9515,9518,9598,9599,9763,9782,9976,9978,10135,10206,10692,10972,11146,11586,11702,11813,11815,11843,13256,13864,14033,14328,14681,14789,14923,15014,15157,15188,15195,15452,15635,15689,16411,16416,16418,16557,16725,17213,17284,17665,17669,17737,17834,17969,18151,18294,18309,18662,18803,18807,18925,18999,19125,19411,19457,19471,19587,20247,20433,20434,20520,20522,20563,20631,20750,20768,20771,20784,20798,20800,20859,20862,20891,20976,20979,20980,20982,20985,20988,20989,21003,21044,21052,21063,21064,21180,21284,21285,21286,21288,21305,21350,21377,21447,21465,21466,21467,21590,21606,21614,22098,22135,22266,22341,22342,22362,22364,22545,22618,22666,22760,22804,23006,23010]]],["bloody",[15,15,[[1,2,2,0,2,[[53,2,2,0,2]]],[9,3,3,2,5,[[282,2,2,2,4],[287,1,1,4,5]]],[18,5,5,5,10,[[482,1,1,5,6],[503,1,1,6,7],[532,1,1,7,8],[536,1,1,8,9],[616,1,1,9,10]]],[25,4,4,10,14,[[808,1,1,10,11],[823,1,1,11,12],[825,2,2,12,14]]],[33,1,1,14,15,[[902,1,1,14,15]]]],[1626,1627,8433,8434,8581,13979,14282,14755,14792,16258,20600,20978,21062,21065,22713]]]]},{"k":"H1819","v":[["*",[30,28,[[3,1,1,0,1,[[149,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[9,1,1,2,3,[[287,1,1,2,3]]],[16,1,1,3,4,[[429,1,1,3,4]]],[18,5,5,4,9,[[525,1,1,4,5],[527,1,1,5,6],[566,1,1,6,7],[579,1,1,7,8],[621,1,1,8,9]]],[21,5,5,9,14,[[671,1,1,9,10],[672,2,2,10,12],[677,1,1,12,13],[678,1,1,13,14]]],[22,8,7,14,21,[[679,1,1,14,15],[688,1,1,15,16],[692,2,2,16,18],[718,2,2,18,20],[724,2,1,20,21]]],[23,1,1,21,22,[[750,1,1,21,22]]],[24,1,1,22,23,[[798,1,1,22,23]]],[25,5,4,23,27,[[832,4,3,23,26],[833,1,1,26,27]]],[27,1,1,27,28,[[873,1,1,27,28]]]],[4816,7059,8585,12775,14643,14689,15332,15527,16309,17546,17563,17571,17634,17654,17663,17857,17942,17952,18438,18445,18591,19091,20345,21232,21238,21248,21250,22262]]],["+",[2,2,[[25,2,2,0,2,[[832,2,2,0,2]]]],[21238,21248]]],["Think",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12775]]],["compared",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17546]]],["devised",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8585]]],["like",[12,12,[[18,2,2,0,2,[[579,1,1,0,1],[621,1,1,1,2]]],[21,4,4,2,6,[[672,2,2,2,4],[677,1,1,4,5],[678,1,1,5,6]]],[22,3,3,6,9,[[679,1,1,6,7],[692,1,1,7,8],[724,1,1,8,9]]],[25,3,3,9,12,[[832,2,2,9,11],[833,1,1,11,12]]]],[15527,16309,17563,17571,17634,17654,17663,17942,18591,21232,21238,21250]]],["liken",[4,4,[[22,3,3,0,3,[[718,2,2,0,2],[724,1,1,2,3]]],[24,1,1,3,4,[[798,1,1,3,4]]]],[18438,18445,18591,20345]]],["likened",[2,2,[[18,1,1,0,1,[[566,1,1,0,1]]],[23,1,1,1,2,[[750,1,1,1,2]]]],[15332,19091]]],["meaneth",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17857]]],["similitudes",[1,1,[[27,1,1,0,1,[[873,1,1,0,1]]]],[22262]]],["thought",[4,4,[[3,1,1,0,1,[[149,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[18,1,1,2,3,[[525,1,1,2,3]]],[22,1,1,3,4,[[692,1,1,3,4]]]],[4816,7059,14643,17952]]],["thoughtest",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14689]]]]},{"k":"H1820","v":[["*",[15,13,[[18,2,2,0,2,[[526,2,2,0,2]]],[22,3,2,2,4,[[684,1,1,2,3],[693,2,1,3,4]]],[23,2,2,4,6,[[758,1,1,4,5],[791,1,1,5,6]]],[24,1,1,6,7,[[799,1,1,6,7]]],[27,5,4,7,11,[[865,2,2,7,9],[871,3,2,9,11]]],[30,1,1,11,12,[[888,1,1,11,12]]],[35,1,1,12,13,[[906,1,1,12,13]]]],[14660,14668,17774,17961,19310,20078,20403,22138,22139,22232,22240,22515,22798]]],["+",[2,1,[[27,2,1,0,1,[[871,2,1,0,1]]]],[22240]]],["cease",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19310]]],["ceaseth",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20403]]],["destroy",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22138]]],["destroyed",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22139]]],["down",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22798]]],["off",[3,3,[[23,1,1,0,1,[[791,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]],[30,1,1,2,3,[[888,1,1,2,3]]]],[20078,22232,22515]]],["perish",[2,2,[[18,2,2,0,2,[[526,2,2,0,2]]]],[14660,14668]]],["silence",[2,1,[[22,2,1,0,1,[[693,2,1,0,1]]]],[17961]]],["undone",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17774]]]]},{"k":"H1821","v":[["like",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[856,1,1,1,2]]]],[21832,21938]]]]},{"k":"H1822","v":[["destroyed",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21153]]]]},{"k":"H1823","v":[["*",[25,22,[[0,3,3,0,3,[[0,1,1,0,1],[4,2,2,1,3]]],[11,1,1,3,4,[[328,1,1,3,4]]],[13,1,1,4,5,[[370,1,1,4,5]]],[18,1,1,5,6,[[535,1,1,5,6]]],[22,2,2,6,8,[[691,1,1,6,7],[718,1,1,7,8]]],[25,16,13,8,21,[[802,10,7,8,15],[809,1,1,15,16],[811,4,4,16,20],[824,1,1,20,21]]],[26,1,1,21,22,[[859,1,1,21,22]]]],[25,106,108,9973,11249,14783,17910,18438,20469,20474,20477,20480,20486,20490,20492,20606,20634,20643,20654,20655,21022,22031]]],["fashion",[1,1,[[11,1,1,0,1,[[328,1,1,0,1]]]],[9973]]],["like",[2,2,[[18,1,1,0,1,[[535,1,1,0,1]]],[22,1,1,1,2,[[691,1,1,1,2]]]],[14783,17910]]],["likeness",[19,16,[[0,3,3,0,3,[[0,1,1,0,1],[4,2,2,1,3]]],[22,1,1,3,4,[[718,1,1,3,4]]],[25,15,12,4,16,[[802,10,7,4,11],[809,1,1,11,12],[811,4,4,12,16]]]],[25,106,108,18438,20469,20474,20477,20480,20486,20490,20492,20606,20634,20643,20654,20655]]],["manner",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21022]]],["similitude",[2,2,[[13,1,1,0,1,[[370,1,1,0,1]]],[26,1,1,1,2,[[859,1,1,1,2]]]],[11249,22031]]]]},{"k":"H1824","v":[["*",[4,4,[[18,1,1,0,1,[[560,1,1,0,1]]],[22,3,3,1,4,[[716,1,1,1,2],[740,2,2,2,4]]]],[15242,18400,18860,18861]]],["+",[2,2,[[18,1,1,0,1,[[560,1,1,0,1]]],[22,1,1,1,2,[[740,1,1,1,2]]]],[15242,18860]]],["off",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18400]]],["rest",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18861]]]]},{"k":"H1825","v":[["Like",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14115]]]]},{"k":"H1826","v":[["*",[30,29,[[1,1,1,0,1,[[64,1,1,0,1]]],[2,1,1,1,2,[[99,1,1,1,2]]],[5,2,2,2,4,[[196,2,2,2,4]]],[8,2,2,4,6,[[237,1,1,4,5],[249,1,1,5,6]]],[17,3,3,6,9,[[464,1,1,6,7],[465,1,1,7,8],[466,1,1,8,9]]],[18,7,7,9,16,[[481,1,1,9,10],[507,1,1,10,11],[508,1,1,11,12],[512,1,1,12,13],[514,1,1,13,14],[539,1,1,14,15],[608,1,1,15,16]]],[22,1,1,16,17,[[701,1,1,16,17]]],[23,8,7,17,24,[[752,2,1,17,18],[769,1,1,18,19],[791,1,1,19,20],[792,1,1,20,21],[793,1,1,21,22],[794,1,1,22,23],[795,1,1,23,24]]],[24,3,3,24,27,[[798,2,2,24,26],[799,1,1,26,27]]],[25,1,1,27,28,[[825,1,1,27,28]]],[29,1,1,28,29,[[883,1,1,28,29]]]],[1936,2980,6076,6077,7249,7517,13553,13584,13622,13969,14331,14348,14425,14457,14832,16150,18079,19167,19571,20079,20082,20153,20196,20218,20342,20350,20382,21073,22436]]],["Forbear",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21073]]],["Rest",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14457]]],["Tarry",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7517]]],["cease",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20350]]],["ceased",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14425]]],["down",[2,2,[[23,2,2,0,2,[[769,1,1,0,1],[792,1,1,1,2]]]],[19571,20082]]],["off",[3,3,[[23,3,3,0,3,[[793,1,1,0,1],[794,1,1,1,2],[795,1,1,2,3]]]],[20153,20196,20218]]],["peace",[1,1,[[2,1,1,0,1,[[99,1,1,0,1]]]],[2980]]],["quieted",[1,1,[[18,1,1,0,1,[[608,1,1,0,1]]]],[16150]]],["rested",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13584]]],["silence",[6,6,[[17,2,2,0,2,[[464,1,1,0,1],[466,1,1,1,2]]],[23,1,1,2,3,[[752,1,1,2,3]]],[24,2,2,3,5,[[798,1,1,3,4],[799,1,1,4,5]]],[29,1,1,5,6,[[883,1,1,5,6]]]],[13553,13622,19167,20342,20382,22436]]],["silent",[4,4,[[8,1,1,0,1,[[237,1,1,0,1]]],[18,2,2,1,3,[[507,1,1,1,2],[508,1,1,2,3]]],[23,1,1,3,4,[[752,1,1,3,4]]]],[7249,14331,14348,19167]]],["still",[6,6,[[1,1,1,0,1,[[64,1,1,0,1]]],[5,2,2,1,3,[[196,2,2,1,3]]],[18,1,1,3,4,[[481,1,1,3,4]]],[22,1,1,4,5,[[701,1,1,4,5]]],[23,1,1,5,6,[[791,1,1,5,6]]]],[1936,6076,6077,13969,18079,20079]]],["wait",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14832]]]]},{"k":"H1827","v":[["*",[3,3,[[10,1,1,0,1,[[309,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]],[18,1,1,2,3,[[584,1,1,2,3]]]],[9399,12946,15728]]],["calm",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15728]]],["silence",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12946]]],["still",[1,1,[[10,1,1,0,1,[[309,1,1,0,1]]]],[9399]]]]},{"k":"H1828","v":[["dung",[6,6,[[11,1,1,0,1,[[321,1,1,0,1]]],[18,1,1,1,2,[[560,1,1,1,2]]],[23,4,4,2,6,[[752,1,1,2,3],[753,1,1,3,4],[760,1,1,4,5],[769,1,1,5,6]]]],[9793,15251,19155,19197,19340,19567]]]]},{"k":"H1829","v":[["Dimnah",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6416]]]]},{"k":"H1830","v":[["+",[2,1,[[23,2,1,0,1,[[757,2,1,0,1]]]],[19283]]]]},{"k":"H1831","v":[["liquors",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2142]]]]},{"k":"H1832","v":[["*",[23,22,[[11,1,1,0,1,[[332,1,1,0,1]]],[18,8,7,1,8,[[483,1,1,1,2],[516,1,1,2,3],[519,1,1,3,4],[533,1,1,4,5],[557,2,1,5,6],[593,1,1,6,7],[603,1,1,7,8]]],[20,1,1,8,9,[[662,1,1,8,9]]],[22,3,3,9,12,[[694,1,1,9,10],[703,1,1,10,11],[716,1,1,11,12]]],[23,5,5,12,17,[[753,2,2,12,14],[757,1,1,14,15],[758,1,1,15,16],[775,1,1,16,17]]],[24,3,3,17,20,[[797,1,1,17,18],[798,2,2,18,20]]],[25,1,1,20,21,[[825,1,1,20,21]]],[38,1,1,21,22,[[926,1,1,21,22]]]],[10103,13991,14524,14558,14763,15203,15856,16120,17382,17978,18126,18395,19176,19193,19283,19310,19707,20312,20343,20350,21072,23116]]],["+",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19707]]],["tears",[22,21,[[11,1,1,0,1,[[332,1,1,0,1]]],[18,8,7,1,8,[[483,1,1,1,2],[516,1,1,2,3],[519,1,1,3,4],[533,1,1,4,5],[557,2,1,5,6],[593,1,1,6,7],[603,1,1,7,8]]],[20,1,1,8,9,[[662,1,1,8,9]]],[22,3,3,9,12,[[694,1,1,9,10],[703,1,1,10,11],[716,1,1,11,12]]],[23,4,4,12,16,[[753,2,2,12,14],[757,1,1,14,15],[758,1,1,15,16]]],[24,3,3,16,19,[[797,1,1,16,17],[798,2,2,17,19]]],[25,1,1,19,20,[[825,1,1,19,20]]],[38,1,1,20,21,[[926,1,1,20,21]]]],[10103,13991,14524,14558,14763,15203,15856,16120,17382,17978,18126,18395,19176,19193,19283,19310,20312,20343,20350,21072,23116]]]]},{"k":"H1833","v":[["Damascus",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22407]]]]},{"k":"H1834","v":[["*",[45,40,[[0,2,2,0,2,[[13,1,1,0,1],[14,1,1,1,2]]],[9,2,2,2,4,[[274,2,2,2,4]]],[10,5,4,4,8,[[301,2,1,4,5],[305,1,1,5,6],[309,1,1,6,7],[310,1,1,7,8]]],[11,10,8,8,16,[[317,1,1,8,9],[320,2,2,9,11],[326,1,1,11,12],[328,6,4,12,16]]],[12,2,2,16,18,[[355,2,2,16,18]]],[13,4,4,18,22,[[382,1,1,18,19],[390,1,1,19,20],[394,2,2,20,22]]],[21,1,1,22,23,[[677,1,1,22,23]]],[22,7,5,23,28,[[685,2,1,23,24],[686,1,1,24,25],[688,1,1,25,26],[695,3,2,26,28]]],[23,3,3,28,31,[[793,3,3,28,31]]],[25,5,5,31,36,[[828,1,1,31,32],[848,3,3,32,35],[849,1,1,35,36]]],[29,3,3,36,39,[[879,2,2,36,38],[883,1,1,38,39]]],[37,1,1,39,40,[[919,1,1,39,40]]]],[351,362,8214,8215,9132,9267,9402,9442,9659,9734,9736,9924,9972,9973,9974,9975,10895,10896,11511,11700,11769,11787,17631,17790,17811,17859,17984,17986,20150,20151,20154,21139,21695,21696,21697,21703,22367,22369,22450,23000]]],["+",[5,4,[[11,3,2,0,2,[[328,3,2,0,2]]],[12,1,1,2,3,[[355,1,1,2,3]]],[22,1,1,3,4,[[695,1,1,3,4]]]],[9974,9975,10896,17986]]],["Damascus",[40,36,[[0,2,2,0,2,[[13,1,1,0,1],[14,1,1,1,2]]],[9,2,2,2,4,[[274,2,2,2,4]]],[10,5,4,4,8,[[301,2,1,4,5],[305,1,1,5,6],[309,1,1,6,7],[310,1,1,7,8]]],[11,7,6,8,14,[[317,1,1,8,9],[320,2,2,9,11],[326,1,1,11,12],[328,3,2,12,14]]],[12,1,1,14,15,[[355,1,1,14,15]]],[13,4,4,15,19,[[382,1,1,15,16],[390,1,1,16,17],[394,2,2,17,19]]],[21,1,1,19,20,[[677,1,1,19,20]]],[22,6,4,20,24,[[685,2,1,20,21],[686,1,1,21,22],[688,1,1,22,23],[695,2,1,23,24]]],[23,3,3,24,27,[[793,3,3,24,27]]],[25,5,5,27,32,[[828,1,1,27,28],[848,3,3,28,31],[849,1,1,31,32]]],[29,3,3,32,35,[[879,2,2,32,34],[883,1,1,34,35]]],[37,1,1,35,36,[[919,1,1,35,36]]]],[351,362,8214,8215,9132,9267,9402,9442,9659,9734,9736,9924,9972,9973,10895,11511,11700,11769,11787,17631,17790,17811,17859,17984,20150,20151,20154,21139,21695,21696,21697,21703,22367,22369,22450,23000]]]]},{"k":"H1835","v":[["*",[70,63,[[0,6,6,0,6,[[13,1,1,0,1],[29,1,1,1,2],[34,1,1,2,3],[45,1,1,3,4],[48,2,2,4,6]]],[1,4,4,6,10,[[50,1,1,6,7],[80,1,1,7,8],[84,1,1,8,9],[87,1,1,9,10]]],[2,1,1,10,11,[[113,1,1,10,11]]],[3,12,10,11,21,[[117,3,3,11,14],[118,3,2,14,16],[123,1,1,16,17],[126,1,1,17,18],[129,1,1,18,19],[142,2,1,19,20],[150,1,1,20,21]]],[4,4,3,21,24,[[179,1,1,21,22],[185,2,1,22,23],[186,1,1,23,24]]],[5,8,5,24,29,[[205,6,3,24,27],[207,2,2,27,29]]],[6,13,12,29,41,[[211,1,1,29,30],[215,1,1,30,31],[223,1,1,31,32],[228,9,8,32,40],[230,1,1,40,41]]],[8,1,1,41,42,[[238,1,1,41,42]]],[9,4,4,42,46,[[269,1,1,42,43],[283,1,1,43,44],[290,2,2,44,46]]],[10,4,4,46,50,[[294,1,1,46,47],[302,2,2,47,49],[305,1,1,49,50]]],[11,1,1,50,51,[[322,1,1,50,51]]],[12,3,3,51,54,[[339,1,1,51,52],[358,1,1,52,53],[364,1,1,53,54]]],[13,3,3,54,57,[[368,1,1,54,55],[382,1,1,55,56],[396,1,1,56,57]]],[23,2,2,57,59,[[748,1,1,57,58],[752,1,1,58,59]]],[25,3,3,59,62,[[849,3,3,59,62]]],[29,1,1,62,63,[[886,1,1,62,63]]]],[350,836,1036,1409,1489,1490,1536,2426,2565,2656,3457,3616,3642,3643,3683,3689,3916,4013,4087,4531,4838,5598,5832,5840,6361,6368,6369,6386,6404,6543,6640,6909,6995,7009,7015,7016,7018,7019,7022,7023,7055,7296,8091,8460,8694,8707,8869,9180,9181,9269,9822,10308,10936,11131,11225,11513,11832,19042,19169,21703,21704,21734,22495]]],["+",[10,10,[[5,1,1,0,1,[[207,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[8,1,1,2,3,[[238,1,1,2,3]]],[9,4,4,3,7,[[269,1,1,3,4],[283,1,1,4,5],[290,2,2,5,7]]],[10,1,1,7,8,[[294,1,1,7,8]]],[23,2,2,8,10,[[748,1,1,8,9],[752,1,1,9,10]]]],[6404,7055,7296,8091,8460,8694,8707,8869,19042,19169]]],["Dan",[60,53,[[0,6,6,0,6,[[13,1,1,0,1],[29,1,1,1,2],[34,1,1,2,3],[45,1,1,3,4],[48,2,2,4,6]]],[1,4,4,6,10,[[50,1,1,6,7],[80,1,1,7,8],[84,1,1,8,9],[87,1,1,9,10]]],[2,1,1,10,11,[[113,1,1,10,11]]],[3,12,10,11,21,[[117,3,3,11,14],[118,3,2,14,16],[123,1,1,16,17],[126,1,1,17,18],[129,1,1,18,19],[142,2,1,19,20],[150,1,1,20,21]]],[4,4,3,21,24,[[179,1,1,21,22],[185,2,1,22,23],[186,1,1,23,24]]],[5,7,4,24,28,[[205,6,3,24,27],[207,1,1,27,28]]],[6,12,11,28,39,[[211,1,1,28,29],[215,1,1,29,30],[223,1,1,30,31],[228,9,8,31,39]]],[10,3,3,39,42,[[302,2,2,39,41],[305,1,1,41,42]]],[11,1,1,42,43,[[322,1,1,42,43]]],[12,3,3,43,46,[[339,1,1,43,44],[358,1,1,44,45],[364,1,1,45,46]]],[13,3,3,46,49,[[368,1,1,46,47],[382,1,1,47,48],[396,1,1,48,49]]],[25,3,3,49,52,[[849,3,3,49,52]]],[29,1,1,52,53,[[886,1,1,52,53]]]],[350,836,1036,1409,1489,1490,1536,2426,2565,2656,3457,3616,3642,3643,3683,3689,3916,4013,4087,4531,4838,5598,5832,5840,6361,6368,6369,6386,6543,6640,6909,6995,7009,7015,7016,7018,7019,7022,7023,9180,9181,9269,9822,10308,10936,11131,11225,11513,11832,21703,21704,21734,22495]]]]},{"k":"H1836","v":[["*",[58,53,[[14,24,20,0,20,[[406,5,5,0,5],[407,11,9,5,14],[408,5,4,14,18],[409,3,2,18,20]]],[23,1,1,20,21,[[754,1,1,20,21]]],[26,33,32,21,53,[[851,12,11,21,32],[852,5,5,32,37],[853,2,2,37,39],[854,6,6,39,45],[855,5,5,45,50],[856,3,3,50,53]]]],[12121,12124,12125,12126,12132,12137,12138,12139,12141,12143,12145,12146,12147,12151,12162,12166,12167,12168,12190,12197,19212,21768,21770,21776,21782,21786,21787,21788,21794,21801,21803,21805,21814,21815,21823,21829,21836,21855,21861,21881,21889,21896,21898,21899,21900,21908,21910,21914,21915,21933,21939,21940,21949]]],["+",[12,12,[[14,3,3,0,3,[[406,2,2,0,2],[409,1,1,2,3]]],[26,9,9,3,12,[[851,4,4,3,7],[852,3,3,7,10],[855,2,2,10,12]]]],[12124,12132,12190,21770,21782,21787,21803,21814,21815,21829,21914,21915]]],["This",[5,5,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,4,4,1,5,[[851,1,1,1,2],[853,2,2,2,4],[854,1,1,4,5]]]],[12121,21794,21855,21861,21900]]],["Thus",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19212]]],["another",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21801]]],["cause",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12125]]],["matter",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12151]]],["one",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21801]]],["sort",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21836]]],["these",[3,3,[[14,2,2,0,2,[[407,2,2,0,2]]],[26,1,1,2,3,[[851,1,1,2,3]]]],[12143,12145,21786]]],["things",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21768]]],["this",[30,28,[[14,15,13,0,13,[[406,1,1,0,1],[407,7,6,1,7],[408,5,4,7,11],[409,2,2,11,13]]],[26,15,15,13,28,[[851,3,3,13,16],[852,1,1,16,17],[854,5,5,17,22],[855,3,3,22,25],[856,3,3,25,28]]]],[12126,12137,12138,12139,12143,12146,12147,12162,12166,12167,12168,12190,12197,21776,21788,21805,21823,21881,21889,21896,21898,21899,21908,21910,21933,21939,21940,21949]]],["thus",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12141]]]]},{"k":"H1837","v":[["Dannah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6251]]]]},{"k":"H1838","v":[["Dinhabah",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1072,10295]]]]},{"k":"H1839","v":[["*",[5,5,[[6,4,4,0,4,[[223,1,1,0,1],[228,3,3,1,4]]],[12,1,1,4,5,[[349,1,1,4,5]]]],[6886,6994,7004,7023,10755]]],["Dan",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7023]]],["Danites",[4,4,[[6,3,3,0,3,[[223,1,1,0,1],[228,2,2,1,3]]],[12,1,1,3,4,[[349,1,1,3,4]]]],[6886,6994,7004,10755]]]]},{"k":"H1840","v":[["*",[29,28,[[12,1,1,0,1,[[340,1,1,0,1]]],[14,1,1,1,2,[[410,1,1,1,2]]],[15,1,1,2,3,[[422,1,1,2,3]]],[25,3,3,3,6,[[815,2,2,3,5],[829,1,1,5,6]]],[26,23,22,6,28,[[850,10,9,6,15],[857,3,3,15,18],[858,2,2,18,20],[859,5,5,20,25],[861,3,3,25,28]]]],[10362,12203,12555,20745,20751,21160,21743,21744,21745,21746,21747,21748,21754,21756,21758,21962,21976,21988,21990,22010,22016,22017,22022,22026,22027,22085,22086,22090]]],["+",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21160]]],["Daniel",[28,27,[[12,1,1,0,1,[[340,1,1,0,1]]],[14,1,1,1,2,[[410,1,1,1,2]]],[15,1,1,2,3,[[422,1,1,2,3]]],[25,2,2,3,5,[[815,2,2,3,5]]],[26,23,22,5,27,[[850,10,9,5,14],[857,3,3,14,17],[858,2,2,17,19],[859,5,5,19,24],[861,3,3,24,27]]]],[10362,12203,12555,20745,20751,21743,21744,21745,21746,21747,21748,21754,21756,21758,21962,21976,21988,21990,22010,22016,22017,22022,22026,22027,22085,22086,22090]]]]},{"k":"H1841","v":[["*",[52,43,[[26,52,43,0,43,[[851,18,16,0,16],[853,2,2,16,18],[854,7,4,18,22],[855,21,17,22,39],[856,4,4,39,43]]]],[21771,21772,21773,21774,21775,21776,21777,21778,21782,21783,21784,21785,21804,21805,21806,21807,21845,21856,21886,21887,21891,21903,21907,21908,21909,21910,21915,21916,21918,21919,21921,21922,21925,21926,21928,21929,21931,21932,21933,21934,21935,21948,21961]]],["+",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[855,2,2,1,3]]]],[21806,21928,21929]]],["Daniel",[49,41,[[26,49,41,0,41,[[851,17,15,0,15],[853,2,2,15,17],[854,7,4,17,21],[855,19,16,21,37],[856,4,4,37,41]]]],[21771,21772,21773,21774,21775,21776,21777,21778,21782,21783,21784,21785,21804,21805,21807,21845,21856,21886,21887,21891,21903,21907,21908,21909,21910,21915,21916,21918,21919,21921,21922,21925,21926,21928,21931,21932,21933,21934,21935,21948,21961]]]]},{"k":"H1842","v":[["Danjaan",[1,1,[[9,1,1,0,1,[[290,1,1,0,1]]]],[8698]]]]},{"k":"H1843","v":[["*",[5,5,[[17,5,5,0,5,[[467,3,3,0,3],[471,1,1,3,4],[472,1,1,4,5]]]],[13634,13638,13645,13739,13785]]],["knowledge",[2,2,[[17,2,2,0,2,[[471,1,1,0,1],[472,1,1,1,2]]]],[13739,13785]]],["opinion",[3,3,[[17,3,3,0,3,[[467,3,3,0,3]]]],[13634,13638,13645]]]]},{"k":"H1844","v":[["knowledge",[6,6,[[8,1,1,0,1,[[237,1,1,0,1]]],[17,1,1,1,2,[[471,1,1,1,2]]],[18,1,1,2,3,[[550,1,1,2,3]]],[22,2,2,3,5,[[689,1,1,3,4],[706,1,1,4,5]]],[23,1,1,5,6,[[747,1,1,5,6]]]],[7243,13740,15031,17893,18173,19017]]]]},{"k":"H1845","v":[["Deuel",[4,4,[[3,4,4,0,4,[[117,1,1,0,1],[123,2,2,1,3],[126,1,1,3,4]]]],[3618,3892,3897,4008]]]]},{"k":"H1846","v":[["*",[9,9,[[17,4,4,0,4,[[441,1,1,0,1],[453,2,2,1,3],[456,1,1,3,4]]],[18,1,1,4,5,[[595,1,1,4,5]]],[19,3,3,5,8,[[640,1,1,5,6],[647,1,1,6,7],[651,1,1,7,8]]],[22,1,1,8,9,[[721,1,1,8,9]]]],[12995,13281,13282,13372,15881,16756,16974,17099,18522]]],["consumed",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12995]]],["extinct",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18522]]],["out",[6,6,[[17,3,3,0,3,[[453,2,2,0,2],[456,1,1,2,3]]],[19,3,3,3,6,[[640,1,1,3,4],[647,1,1,4,5],[651,1,1,5,6]]]],[13281,13282,13372,16756,16974,17099]]],["quenched",[1,1,[[18,1,1,0,1,[[595,1,1,0,1]]]],[15881]]]]},{"k":"H1847","v":[["*",[92,90,[[0,2,2,0,2,[[1,2,2,0,2]]],[1,2,2,2,4,[[80,1,1,2,3],[84,1,1,3,4]]],[3,1,1,4,5,[[140,1,1,4,5]]],[4,2,2,5,7,[[156,1,1,5,6],[171,1,1,6,7]]],[5,2,2,7,9,[[206,2,2,7,9]]],[10,1,1,9,10,[[297,1,1,9,10]]],[17,11,11,10,21,[[445,1,1,10,11],[448,1,1,11,12],[450,1,1,12,13],[456,2,2,13,15],[468,1,1,15,16],[469,1,1,16,17],[470,1,1,17,18],[471,1,1,18,19],[473,1,1,19,20],[477,1,1,20,21]]],[18,4,4,21,25,[[496,1,1,21,22],[571,1,1,22,23],[596,1,1,23,24],[616,1,1,24,25]]],[19,40,39,25,64,[[628,4,4,25,29],[629,3,3,29,32],[630,1,1,32,33],[632,1,1,33,34],[635,3,3,34,37],[636,1,1,37,38],[637,1,1,38,39],[638,1,1,39,40],[639,2,2,40,42],[640,1,1,42,43],[641,3,3,43,46],[642,3,3,46,49],[644,1,1,49,50],[645,2,1,50,51],[646,3,3,51,54],[647,1,1,54,55],[648,1,1,55,56],[649,3,3,56,59],[650,1,1,59,60],[651,2,2,60,62],[656,1,1,62,63],[657,1,1,63,64]]],[20,7,7,64,71,[[659,2,2,64,66],[660,2,2,66,68],[665,1,1,68,69],[667,1,1,69,70],[670,1,1,70,71]]],[22,9,9,71,80,[[683,1,1,71,72],[689,1,1,72,73],[711,1,1,73,74],[718,1,1,74,75],[722,2,2,75,77],[725,1,1,77,78],[731,1,1,78,79],[736,1,1,79,80]]],[23,3,3,80,83,[[754,1,1,80,81],[766,1,1,81,82],[795,1,1,82,83]]],[26,2,2,83,85,[[850,1,1,83,84],[861,1,1,84,85]]],[27,4,3,85,88,[[865,3,2,85,87],[867,1,1,87,88]]],[34,1,1,88,89,[[904,1,1,88,89]]],[38,1,1,89,90,[[926,1,1,89,90]]]],[39,47,2423,2562,4462,5046,5410,6375,6377,8948,13093,13155,13205,13369,13377,13653,13718,13736,13748,13795,13925,14170,15441,15964,16245,16404,16407,16422,16429,16438,16439,16443,16475,16519,16611,16612,16614,16648,16670,16697,16720,16742,16763,16778,16779,16790,16809,16814,16821,16900,16916,16927,16950,16952,16969,16995,17027,17032,17035,17056,17083,17084,17231,17254,17331,17333,17354,17359,17441,17485,17532,17752,17886,18285,18434,18552,18558,18609,18722,18788,19215,19470,20229,21741,22085,22134,22139,22173,22762,23110]]],["+",[8,8,[[4,2,2,0,2,[[156,1,1,0,1],[171,1,1,1,2]]],[5,2,2,2,4,[[206,2,2,2,4]]],[19,1,1,4,5,[[644,1,1,4,5]]],[22,1,1,5,6,[[722,1,1,5,6]]],[23,2,2,6,8,[[754,1,1,6,7],[795,1,1,7,8]]]],[5046,5410,6375,6377,16900,18558,19215,20229]]],["cunning",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8948]]],["know",[4,4,[[17,1,1,0,1,[[448,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]],[22,1,1,2,3,[[736,1,1,2,3]]],[23,1,1,3,4,[[766,1,1,3,4]]]],[13155,17231,18788,19470]]],["knowest",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13093]]],["knowledge",[78,76,[[0,2,2,0,2,[[1,2,2,0,2]]],[1,2,2,2,4,[[80,1,1,2,3],[84,1,1,3,4]]],[3,1,1,4,5,[[140,1,1,4,5]]],[17,9,9,5,14,[[450,1,1,5,6],[456,2,2,6,8],[468,1,1,8,9],[469,1,1,9,10],[470,1,1,10,11],[471,1,1,11,12],[473,1,1,12,13],[477,1,1,13,14]]],[18,4,4,14,18,[[496,1,1,14,15],[571,1,1,15,16],[596,1,1,16,17],[616,1,1,17,18]]],[19,38,37,18,55,[[628,4,4,18,22],[629,3,3,22,25],[630,1,1,25,26],[632,1,1,26,27],[635,3,3,27,30],[636,1,1,30,31],[637,1,1,31,32],[638,1,1,32,33],[639,2,2,33,35],[640,1,1,35,36],[641,3,3,36,39],[642,3,3,39,42],[645,2,1,42,43],[646,3,3,43,46],[647,1,1,46,47],[648,1,1,47,48],[649,3,3,48,51],[650,1,1,51,52],[651,2,2,52,54],[657,1,1,54,55]]],[20,7,7,55,62,[[659,2,2,55,57],[660,2,2,57,59],[665,1,1,59,60],[667,1,1,60,61],[670,1,1,61,62]]],[22,7,7,62,69,[[683,1,1,62,63],[689,1,1,63,64],[711,1,1,64,65],[718,1,1,65,66],[722,1,1,66,67],[725,1,1,67,68],[731,1,1,68,69]]],[26,2,2,69,71,[[850,1,1,69,70],[861,1,1,70,71]]],[27,4,3,71,74,[[865,3,2,71,73],[867,1,1,73,74]]],[34,1,1,74,75,[[904,1,1,74,75]]],[38,1,1,75,76,[[926,1,1,75,76]]]],[39,47,2423,2562,4462,13205,13369,13377,13653,13718,13736,13748,13795,13925,14170,15441,15964,16245,16404,16407,16422,16429,16438,16439,16443,16475,16519,16611,16612,16614,16648,16670,16697,16720,16742,16763,16778,16779,16790,16809,16814,16821,16916,16927,16950,16952,16969,16995,17027,17032,17035,17056,17083,17084,17254,17331,17333,17354,17359,17441,17485,17532,17752,17886,18285,18434,18552,18609,18722,21741,22085,22134,22139,22173,22762,23110]]]]},{"k":"H1848","v":[["+",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14688]]]]},{"k":"H1849","v":[["*",[3,3,[[0,1,1,0,1,[[32,1,1,0,1]]],[6,1,1,1,2,[[229,1,1,1,2]]],[21,1,1,2,3,[[675,1,1,2,3]]]],[973,7046,17600]]],["beat",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7046]]],["knocketh",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17600]]],["overdrive",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[973]]]]},{"k":"H1850","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4772,4773]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4773]]],["Dophkah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4772]]]]},{"k":"H1851","v":[["*",[14,13,[[0,6,6,0,6,[[40,6,6,0,6]]],[1,2,1,6,7,[[65,2,1,6,7]]],[2,3,3,7,10,[[102,1,1,7,8],[105,1,1,8,9],[110,1,1,9,10]]],[10,1,1,10,11,[[309,1,1,10,11]]],[22,2,2,11,13,[[707,1,1,11,12],[718,1,1,12,13]]]],[1198,1199,1201,1202,1218,1219,1961,3082,3213,3365,9399,18198,18435]]],["+",[2,2,[[0,2,2,0,2,[[40,2,2,0,2]]]],[1198,1199]]],["dwarf",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3365]]],["small",[5,4,[[1,2,1,0,1,[[65,2,1,0,1]]],[2,1,1,1,2,[[105,1,1,1,2]]],[10,1,1,2,3,[[309,1,1,2,3]]],[22,1,1,3,4,[[707,1,1,3,4]]]],[1961,3213,9399,18198]]],["thin",[5,5,[[0,4,4,0,4,[[40,4,4,0,4]]],[2,1,1,4,5,[[102,1,1,4,5]]]],[1201,1202,1218,1219,3082]]],["thing",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18435]]]]},{"k":"H1852","v":[["curtain",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18442]]]]},{"k":"H1853","v":[["Diklah",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[261,10273]]]]},{"k":"H1854","v":[["*",[13,12,[[1,2,2,0,2,[[79,1,1,0,1],[81,1,1,1,2]]],[4,1,1,2,3,[[161,1,1,2,3]]],[9,1,1,3,4,[[288,1,1,3,4]]],[11,2,2,4,6,[[335,2,2,4,6]]],[13,3,3,6,9,[[381,1,1,6,7],[400,2,2,7,9]]],[22,3,2,9,11,[[706,2,1,9,10],[719,1,1,10,11]]],[32,1,1,11,12,[[896,1,1,11,12]]]],[2418,2458,5178,8645,10171,10180,11506,11937,11940,18192,18466,22633]]],["+",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2458]]],["bruise",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18192]]],["bruised",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18192]]],["dust",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11937]]],["pieces",[1,1,[[32,1,1,0,1,[[896,1,1,0,1]]]],[22633]]],["powder",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11940]]],["small",[5,5,[[1,1,1,0,1,[[79,1,1,0,1]]],[4,1,1,1,2,[[161,1,1,1,2]]],[11,2,2,2,4,[[335,2,2,2,4]]],[22,1,1,4,5,[[719,1,1,4,5]]]],[2418,5178,10171,10180,18466]]],["stamp",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8645]]],["stamped",[1,1,[[13,1,1,0,1,[[381,1,1,0,1]]]],[11506]]]]},{"k":"H1855","v":[["*",[9,8,[[26,9,8,0,8,[[851,5,4,0,4],[855,1,1,4,5],[856,3,3,5,8]]]],[21792,21798,21802,21803,21929,21940,21952,21956]]],["+",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[855,1,1,1,2]]]],[21792,21929]]],["pieces",[7,6,[[26,7,6,0,6,[[851,4,3,0,3],[856,3,3,3,6]]]],[21798,21802,21803,21940,21952,21956]]]]},{"k":"H1856","v":[["*",[11,10,[[3,1,1,0,1,[[141,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[8,2,1,2,3,[[266,2,1,2,3]]],[12,1,1,3,4,[[347,1,1,3,4]]],[22,1,1,4,5,[[691,1,1,4,5]]],[23,2,2,5,7,[[781,1,1,5,6],[795,1,1,6,7]]],[24,1,1,7,8,[[800,1,1,7,8]]],[37,2,2,8,10,[[922,1,1,8,9],[923,1,1,9,10]]]],[4479,6808,8013,10663,17921,19884,20216,20429,23055,23062]]],["+",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4479]]],["pierced",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23055]]],["through",[8,7,[[6,1,1,0,1,[[219,1,1,0,1]]],[8,2,1,1,2,[[266,2,1,1,2]]],[12,1,1,2,3,[[347,1,1,2,3]]],[22,1,1,3,4,[[691,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]],[24,1,1,5,6,[[800,1,1,5,6]]],[37,1,1,6,7,[[923,1,1,6,7]]]],[6808,8013,10663,17921,20216,20429,23062]]],["wounded",[1,1,[[23,1,1,0,1,[[781,1,1,0,1]]]],[19884]]]]},{"k":"H1857","v":[]},{"k":"H1858","v":[["white",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12708]]]]},{"k":"H1859","v":[["generation",[4,2,[[26,4,2,0,2,[[853,4,2,0,2]]]],[21840,21871]]]]},{"k":"H1860","v":[["*",[2,2,[[22,1,1,0,1,[[744,1,1,0,1]]],[26,1,1,1,2,[[861,1,1,1,2]]]],[18946,22083]]],["abhorring",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18946]]],["contempt",[1,1,[[26,1,1,0,1,[[861,1,1,0,1]]]],[22083]]]]},{"k":"H1861","v":[["*",[3,3,[[8,1,1,0,1,[[248,1,1,0,1]]],[17,1,1,1,2,[[442,1,1,1,2]]],[20,1,1,2,3,[[670,1,1,2,3]]]],[7506,13028,17534]]],["am",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13028]]],["goads",[2,2,[[8,1,1,0,1,[[248,1,1,0,1]]],[20,1,1,1,2,[[670,1,1,1,2]]]],[7506,17534]]]]},{"k":"H1862","v":[["Darda",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8875]]]]},{"k":"H1863","v":[["*",[2,2,[[0,1,1,0,1,[[2,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]]],[73,22233]]],["thistle",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22233]]],["thistles",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[73]]]]},{"k":"H1864","v":[["*",[17,14,[[4,1,1,0,1,[[185,1,1,0,1]]],[17,1,1,1,2,[[472,1,1,1,2]]],[20,2,2,2,4,[[659,1,1,2,3],[669,1,1,3,4]]],[25,13,10,4,14,[[821,1,1,4,5],[841,8,5,5,10],[842,1,1,10,11],[843,3,3,11,14]]]],[5833,13786,17321,17516,20941,21501,21504,21505,21521,21522,21537,21564,21565,21570]]],["+",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13786]]],["south",[16,13,[[4,1,1,0,1,[[185,1,1,0,1]]],[20,2,2,1,3,[[659,1,1,1,2],[669,1,1,2,3]]],[25,13,10,3,13,[[821,1,1,3,4],[841,8,5,4,9],[842,1,1,9,10],[843,3,3,10,13]]]],[5833,17321,17516,20941,21501,21504,21505,21521,21522,21537,21564,21565,21570]]]]},{"k":"H1865","v":[["*",[8,7,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[22,1,1,2,3,[[739,1,1,2,3]]],[23,4,3,3,6,[[778,4,3,3,6]]],[25,1,1,6,7,[[847,1,1,6,7]]]],[2405,3479,18844,19809,19816,19818,21672]]],["liberty",[7,6,[[2,1,1,0,1,[[114,1,1,0,1]]],[22,1,1,1,2,[[739,1,1,1,2]]],[23,4,3,2,5,[[778,4,3,2,5]]],[25,1,1,5,6,[[847,1,1,5,6]]]],[3479,18844,19809,19816,19818,21672]]],["pure",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2405]]]]},{"k":"H1866","v":[["swallow",[2,2,[[18,1,1,0,1,[[561,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]]],[15262,17143]]]]},{"k":"H1867","v":[["Darius",[10,10,[[14,1,1,0,1,[[406,1,1,0,1]]],[15,1,1,1,2,[[424,1,1,1,2]]],[26,2,2,2,4,[[858,1,1,2,3],[860,1,1,3,4]]],[36,3,3,4,7,[[909,2,2,4,6],[910,1,1,6,7]]],[37,3,3,7,10,[[911,2,2,7,9],[917,1,1,9,10]]]],[12115,12646,21989,22037,22841,22855,22865,22879,22885,22963]]]]},{"k":"H1868","v":[["Darius",[15,15,[[14,9,9,0,9,[[406,1,1,0,1],[407,3,3,1,4],[408,5,5,4,9]]],[26,6,6,9,15,[[854,1,1,9,10],[855,5,5,10,15]]]],[12134,12139,12140,12141,12152,12163,12164,12165,12166,21905,21906,21911,21914,21930,21933]]]]},{"k":"H1869","v":[["*",[63,59,[[3,1,1,0,1,[[140,1,1,0,1]]],[4,4,4,1,5,[[153,1,1,1,2],[163,2,2,2,4],[185,1,1,4,5]]],[5,2,2,5,7,[[187,1,1,5,6],[200,1,1,6,7]]],[6,3,3,7,10,[[215,1,1,7,8],[219,1,1,8,9],[230,1,1,9,10]]],[8,1,1,10,11,[[240,1,1,10,11]]],[12,2,2,11,13,[[342,1,1,11,12],[345,1,1,12,13]]],[13,1,1,13,14,[[380,1,1,13,14]]],[15,1,1,14,15,[[425,1,1,14,15]]],[17,4,4,15,19,[[444,1,1,15,16],[457,1,1,16,17],[459,1,1,17,18],[463,1,1,18,19]]],[18,10,10,19,29,[[484,1,1,19,20],[488,1,1,20,21],[502,2,2,21,23],[514,1,1,23,24],[535,1,1,24,25],[541,1,1,25,26],[568,1,1,26,27],[584,1,1,27,28],[596,1,1,28,29]]],[19,1,1,29,30,[[631,1,1,29,30]]],[22,11,9,30,39,[[683,1,1,30,31],[689,1,1,31,32],[694,2,1,32,33],[699,1,1,33,34],[720,1,1,34,35],[726,1,1,35,36],[737,1,1,36,37],[741,3,2,37,39]]],[23,10,8,39,47,[[753,1,1,39,40],[769,1,1,40,41],[790,1,1,41,42],[792,1,1,42,43],[794,2,2,43,45],[795,4,2,45,47]]],[24,3,3,47,50,[[797,1,1,47,48],[798,1,1,48,49],[799,1,1,49,50]]],[29,2,2,50,52,[[882,1,1,50,51],[887,1,1,51,52]]],[32,4,4,52,56,[[893,1,1,52,53],[897,2,2,53,55],[898,1,1,55,56]]],[34,2,2,56,58,[[905,2,2,56,58]]],[37,1,1,58,59,[[919,1,1,58,59]]]],[4463,4928,5232,5233,5839,5854,6196,6644,6781,7097,7324,10446,10615,11483,12686,13059,13404,13447,13512,14007,14061,14256,14260,14464,14786,14853,15408,15706,15933,16501,17767,17899,17979,18050,18496,18631,18808,18868,18869,19178,19564,20054,20113,20180,20195,20215,20245,20325,20336,20366,22423,22508,22582,22638,22639,22663,22783,22787,23012]]],["+",[2,2,[[12,1,1,0,1,[[345,1,1,0,1]]],[23,1,1,1,2,[[753,1,1,1,2]]]],[10615,19178]]],["Lead",[1,1,[[18,1,1,0,1,[[502,1,1,0,1]]]],[14256]]],["archer",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20215]]],["bend",[6,6,[[18,2,2,0,2,[[488,1,1,0,1],[541,1,1,1,2]]],[23,4,4,2,6,[[790,1,1,2,3],[794,2,2,3,5],[795,1,1,5,6]]]],[14061,14853,20054,20180,20195,20215]]],["bendeth",[2,2,[[18,1,1,0,1,[[535,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[14786,20215]]],["bent",[7,7,[[18,2,2,0,2,[[484,1,1,0,1],[514,1,1,1,2]]],[22,2,2,2,4,[[683,1,1,2,3],[699,1,1,3,4]]],[24,2,2,4,6,[[798,1,1,4,5],[799,1,1,5,6]]],[37,1,1,6,7,[[919,1,1,6,7]]]],[14007,14464,17767,18050,20336,20366,23012]]],["come",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4463]]],["down",[2,2,[[6,2,2,0,2,[[215,1,1,0,1],[230,1,1,1,2]]]],[6644,7097]]],["drew",[1,1,[[13,1,1,0,1,[[380,1,1,0,1]]]],[11483]]],["forth",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15706]]],["go",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15933]]],["goeth",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18808]]],["guide",[1,1,[[18,1,1,0,1,[[502,1,1,0,1]]]],[14260]]],["leadeth",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18631]]],["led",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16501]]],["over",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17899]]],["shoot",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10446]]],["them",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18496]]],["thresh",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20245]]],["tread",[14,14,[[4,3,3,0,3,[[163,2,2,0,2],[185,1,1,2,3]]],[5,1,1,3,4,[[187,1,1,3,4]]],[8,1,1,4,5,[[240,1,1,4,5]]],[17,1,1,5,6,[[459,1,1,5,6]]],[18,1,1,6,7,[[568,1,1,6,7]]],[22,2,2,7,9,[[694,1,1,7,8],[741,1,1,8,9]]],[23,2,2,9,11,[[769,1,1,9,10],[792,1,1,10,11]]],[32,3,3,11,14,[[893,1,1,11,12],[897,1,1,12,13],[898,1,1,13,14]]]],[5232,5233,5839,5854,7324,13447,15408,17979,18869,19564,20113,22582,22638,22663]]],["treader",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22508]]],["treaders",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17979]]],["treadeth",[4,4,[[17,1,1,0,1,[[444,1,1,0,1]]],[22,1,1,1,2,[[741,1,1,1,2]]],[29,1,1,2,3,[[882,1,1,2,3]]],[32,1,1,3,4,[[897,1,1,3,4]]]],[13059,18868,22423,22639]]],["treading",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12686]]],["trodden",[6,6,[[4,1,1,0,1,[[153,1,1,0,1]]],[5,1,1,1,2,[[200,1,1,1,2]]],[17,2,2,2,4,[[457,1,1,2,3],[463,1,1,3,4]]],[22,1,1,4,5,[[741,1,1,4,5]]],[24,1,1,5,6,[[797,1,1,5,6]]]],[4928,6196,13404,13512,18869,20325]]],["trode",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6781]]],["walk",[2,2,[[34,2,2,0,2,[[905,2,2,0,2]]]],[22783,22787]]]]},{"k":"H1870","v":[["*",[704,624,[[0,31,30,0,30,[[2,1,1,0,1],[5,1,1,1,2],[15,1,1,2,3],[17,1,1,3,4],[18,2,2,4,6],[23,6,6,6,12],[27,1,1,12,13],[29,1,1,13,14],[30,2,2,14,16],[31,1,1,16,17],[32,1,1,17,18],[34,2,2,18,20],[37,3,3,20,23],[41,2,2,23,25],[44,3,3,25,28],[47,2,1,28,29],[48,1,1,29,30]]],[1,13,13,30,43,[[52,1,1,30,31],[53,1,1,31,32],[54,1,1,32,33],[57,1,1,33,34],[62,3,3,34,37],[67,2,2,37,39],[72,1,1,39,40],[81,1,1,40,41],[82,2,2,41,43]]],[2,1,1,43,44,[[115,1,1,43,44]]],[3,23,18,44,62,[[125,2,2,44,46],[126,2,1,46,47],[127,2,1,47,48],[130,1,1,48,49],[136,1,1,49,50],[137,5,4,50,54],[138,8,6,54,60],[140,1,1,60,61],[149,1,1,61,62]]],[4,48,43,62,105,[[153,7,6,62,68],[154,5,3,68,71],[155,1,1,71,72],[157,1,1,72,73],[158,1,1,73,74],[160,2,2,74,76],[161,2,2,76,78],[162,1,1,78,79],[163,4,4,79,83],[165,1,1,83,84],[166,1,1,84,85],[169,1,1,85,86],[171,3,3,86,89],[174,2,2,89,91],[175,1,1,91,92],[176,1,1,92,93],[177,2,2,93,95],[178,1,1,95,96],[179,1,1,96,97],[180,7,5,97,102],[182,1,1,102,103],[183,1,1,103,104],[184,1,1,104,105]]],[5,17,16,105,121,[[187,1,1,105,106],[188,3,3,106,109],[189,2,1,109,110],[191,3,3,110,113],[194,1,1,113,114],[195,2,2,114,116],[196,1,1,116,117],[198,1,1,117,118],[208,1,1,118,119],[209,1,1,119,120],[210,1,1,120,121]]],[6,14,14,121,135,[[212,3,3,121,124],[214,1,1,124,125],[215,1,1,125,126],[218,1,1,126,127],[219,1,1,127,128],[227,1,1,128,129],[228,3,3,129,132],[229,2,2,132,134],[230,1,1,134,135]]],[7,1,1,135,136,[[232,1,1,135,136]]],[8,27,25,136,161,[[236,1,1,136,137],[239,1,1,137,138],[241,3,2,138,140],[243,2,2,140,142],[244,2,2,142,144],[247,1,1,144,145],[248,3,2,145,147],[250,3,3,147,150],[252,1,1,150,151],[253,1,1,151,152],[256,1,1,152,153],[259,3,3,153,156],[260,1,1,156,157],[261,2,2,157,159],[263,1,1,159,160],[265,1,1,160,161]]],[9,12,12,161,173,[[268,1,1,161,162],[270,1,1,162,163],[277,1,1,163,164],[279,2,2,164,166],[281,2,2,166,168],[282,1,1,168,169],[284,1,1,169,170],[288,3,3,170,173]]],[10,46,39,173,212,[[291,1,1,173,174],[292,3,3,174,177],[293,1,1,177,178],[298,8,7,178,185],[301,3,3,185,188],[303,12,9,188,197],[305,2,2,197,199],[306,3,3,199,202],[308,5,4,202,206],[309,3,3,206,209],[310,1,1,209,210],[312,4,2,210,212]]],[11,22,20,212,232,[[314,1,1,212,213],[315,4,3,213,216],[318,1,1,216,217],[319,1,1,217,218],[320,2,2,218,220],[321,1,1,220,221],[322,1,1,221,222],[323,2,2,222,224],[328,1,1,224,225],[329,1,1,225,226],[331,2,2,226,228],[333,2,2,228,230],[334,1,1,230,231],[337,2,1,231,232]]],[13,25,23,232,255,[[372,8,7,232,239],[373,1,1,239,240],[377,1,1,240,241],[379,1,1,241,242],[383,2,2,242,244],[384,1,1,244,245],[386,1,1,245,246],[387,4,3,246,249],[388,1,1,249,250],[393,2,2,250,252],[394,2,2,252,254],[400,1,1,254,255]]],[14,3,3,255,258,[[410,3,3,255,258]]],[15,3,2,258,260,[[421,3,2,258,260]]],[17,32,32,260,292,[[438,1,1,260,261],[439,1,1,261,262],[441,1,1,262,263],[443,1,1,263,264],[447,1,1,264,265],[448,1,1,265,266],[452,1,1,266,267],[454,1,1,267,268],[456,3,3,268,271],[457,2,2,271,273],[458,2,2,273,275],[459,4,4,275,279],[461,1,1,279,280],[463,2,2,280,282],[464,1,1,282,283],[466,2,2,283,285],[469,2,2,285,287],[471,1,1,287,288],[473,3,3,288,291],[475,1,1,291,292]]],[18,66,64,292,356,[[478,3,2,292,294],[479,1,1,294,295],[482,1,1,295,296],[487,1,1,296,297],[495,3,3,297,300],[502,4,4,300,304],[504,1,1,304,305],[509,1,1,305,306],[512,1,1,306,307],[513,1,1,307,308],[514,5,5,308,313],[516,1,1,313,314],[526,1,1,314,315],[527,1,1,315,316],[528,1,1,316,317],[544,1,1,317,318],[554,2,2,318,320],[557,1,1,320,321],[558,1,1,321,322],[562,1,1,322,323],[563,1,1,323,324],[566,1,1,324,325],[568,1,1,325,326],[572,1,1,326,327],[578,2,2,327,329],[579,1,1,329,330],[580,1,1,330,331],[584,4,4,331,335],[587,1,1,335,336],[596,13,13,336,349],[605,1,1,349,350],[615,1,1,350,351],[616,3,2,351,353],[620,1,1,353,354],[622,1,1,354,355],[623,1,1,355,356]]],[19,75,69,356,425,[[628,2,2,356,358],[629,4,4,358,362],[630,5,4,362,366],[631,4,4,366,370],[632,2,2,370,372],[633,2,2,372,374],[634,4,4,374,378],[635,4,4,378,382],[636,2,2,382,384],[637,2,2,384,386],[638,2,2,386,388],[639,3,3,388,391],[640,2,2,391,393],[641,5,4,393,397],[642,2,2,397,399],[643,8,7,399,406],[646,2,2,406,408],[647,1,1,408,409],[648,4,4,409,413],[649,2,2,413,415],[650,2,2,415,417],[653,1,1,417,418],[655,3,3,418,421],[656,1,1,421,422],[657,5,2,422,424],[658,1,1,424,425]]],[20,4,4,425,429,[[668,1,1,425,426],[669,2,2,426,428],[670,1,1,428,429]]],[22,47,42,429,471,[[680,1,1,429,430],[681,1,1,430,431],[686,1,1,431,432],[687,1,1,432,433],[688,2,2,433,435],[693,1,1,435,436],[708,2,2,436,438],[713,3,1,438,439],[715,2,2,439,441],[718,3,3,441,444],[720,2,2,444,446],[721,2,2,446,448],[723,1,1,448,449],[726,2,2,449,451],[727,2,2,451,453],[729,1,1,453,454],[731,1,1,454,455],[733,5,3,455,458],[734,1,1,458,459],[735,5,4,459,463],[736,2,2,463,465],[737,1,1,465,466],[740,1,1,466,467],[741,1,1,467,468],[742,1,1,468,469],[743,1,1,469,470],[744,1,1,470,471]]],[23,56,46,471,517,[[746,8,5,471,476],[747,3,3,476,479],[748,1,1,479,480],[749,2,2,480,482],[750,4,3,482,485],[751,3,3,485,488],[754,2,2,488,490],[756,2,2,490,492],[759,1,1,492,493],[760,1,1,493,494],[761,1,1,494,495],[762,4,2,495,497],[765,2,1,497,498],[766,1,1,498,499],[767,2,2,499,501],[769,1,1,501,502],[770,2,2,502,504],[772,1,1,504,505],[775,2,2,505,507],[776,3,2,507,509],[779,1,1,509,510],[780,2,2,510,512],[783,2,1,512,513],[786,1,1,513,514],[792,1,1,514,515],[794,1,1,515,516],[796,2,1,516,517]]],[24,6,6,517,523,[[797,2,2,517,519],[798,1,1,519,520],[799,3,3,520,523]]],[25,107,76,523,599,[[804,2,2,523,525],[808,5,5,525,530],[809,2,1,530,531],[810,2,2,531,533],[812,1,1,533,534],[814,1,1,534,535],[815,2,2,535,537],[817,7,6,537,543],[819,8,4,543,547],[821,4,4,547,551],[822,5,3,551,554],[823,1,1,554,555],[824,2,2,555,557],[825,1,1,557,558],[829,1,1,558,559],[834,9,5,559,564],[837,5,4,564,568],[841,13,10,568,578],[842,2,2,578,580],[843,13,7,580,587],[844,4,3,587,590],[845,4,3,590,593],[847,8,3,593,596],[848,4,2,596,598],[849,1,1,598,599]]],[27,8,8,599,607,[[863,1,1,599,600],[865,1,1,600,601],[867,1,1,601,602],[870,1,1,602,603],[871,1,1,603,604],[873,1,1,604,605],[874,1,1,605,606],[875,1,1,606,607]]],[28,1,1,607,608,[[877,1,1,607,608]]],[29,3,3,608,611,[[880,1,1,608,609],[882,1,1,609,610],[886,1,1,610,611]]],[31,2,2,611,613,[[891,2,2,611,613]]],[32,1,1,613,614,[[896,1,1,613,614]]],[33,2,2,614,616,[[900,1,1,614,615],[901,1,1,615,616]]],[36,2,2,616,618,[[909,2,2,616,618]]],[37,3,3,618,621,[[911,2,2,618,620],[913,1,1,620,621]]],[38,3,3,621,624,[[926,2,2,621,623],[927,1,1,623,624]]]],[79,149,388,443,459,488,612,618,631,633,639,647,793,866,896,908,929,976,1014,1030,1133,1135,1140,1277,1290,1379,1381,1382,1458,1490,1597,1625,1635,1737,1884,1885,1888,2007,2019,2164,2446,2476,2486,3546,3975,3978,4021,4055,4133,4328,4341,4344,4362,4373,4397,4398,4401,4406,4407,4409,4471,4768,4894,4911,4914,4923,4925,4932,4939,4946,4965,4976,5086,5093,5139,5143,5169,5173,5198,5227,5230,5236,5238,5277,5314,5380,5409,5412,5415,5474,5476,5504,5534,5564,5565,5583,5603,5618,5620,5636,5640,5679,5724,5757,5762,5859,5876,5885,5891,5897,5938,5939,5941,6017,6048,6050,6074,6133,6431,6474,6493,6562,6564,6567,6608,6633,6730,6779,6988,6998,6999,7019,7033,7051,7096,7134,7230,7310,7340,7343,7372,7374,7397,7399,7483,7502,7503,7562,7578,7580,7670,7690,7777,7842,7846,7858,7873,7908,7930,7964,7980,8073,8127,8269,8347,8351,8391,8412,8439,8501,8624,8633,8635,8766,8772,8773,8774,8830,9010,9017,9021,9024,9029,9033,9043,9137,9141,9146,9193,9194,9196,9201,9208,9209,9210,9212,9217,9275,9283,9285,9302,9309,9347,9348,9368,9384,9391,9394,9402,9446,9523,9532,9574,9584,9585,9596,9693,9722,9745,9754,9783,9805,9845,9848,9966,9996,10089,10094,10140,10141,10147,10226,11298,11305,11309,11312,11313,11316,11320,11338,11431,11475,11526,11529,11565,11619,11630,11636,11637,11647,11761,11762,11766,11790,11935,12222,12223,12232,12523,12530,12927,12936,12996,13048,13152,13168,13269,13309,13369,13384,13386,13392,13417,13429,13430,13440,13449,13454,13459,13481,13527,13530,13557,13592,13595,13704,13710,13759,13812,13817,13818,13883,13940,13945,13957,13981,14046,14139,14148,14150,14255,14259,14260,14263,14296,14363,14416,14442,14455,14457,14464,14473,14484,14513,14661,14691,14704,14895,15106,15112,15210,15230,15284,15295,15367,15406,15464,15515,15519,15544,15556,15703,15706,15716,15739,15793,15899,15901,15903,15912,15924,15925,15927,15928,15930,15931,15935,15957,16066,16127,16236,16242,16263,16301,16337,16350,16415,16431,16441,16445,16446,16453,16461,16472,16478,16486,16501,16504,16509,16516,16525,16538,16546,16563,16583,16594,16600,16602,16604,16615,16624,16634,16644,16653,16665,16685,16693,16708,16734,16745,16747,16753,16762,16774,16780,16784,16786,16816,16826,16842,16847,16849,16857,16865,16869,16871,16928,16941,16978,16986,16992,17000,17013,17020,17021,17063,17070,17154,17202,17206,17214,17251,17270,17271,17287,17496,17518,17522,17528,17688,17719,17818,17830,17874,17876,17965,18228,18238,18328,18381,18386,18423,18434,18447,18496,18504,18521,18524,18574,18629,18631,18645,18647,18683,18717,18747,18748,18749,18764,18775,18779,18782,18783,18788,18799,18808,18864,18883,18890,18899,18925,18982,18983,18988,18998,19001,19004,19015,19023,19045,19062,19063,19105,19114,19116,19122,19124,19142,19203,19224,19250,19265,19322,19353,19367,19395,19399,19448,19475,19496,19506,19539,19575,19585,19629,19700,19712,19750,19770,19838,19845,19849,19927,19978,20099,20171,20283,20314,20322,20347,20363,20365,20394,20520,20521,20580,20581,20585,20586,20604,20609,20624,20632,20676,20730,20753,20754,20787,20789,20793,20805,20809,20823,20872,20874,20878,20879,20925,20938,20939,20941,20963,20964,20965,21007,21020,21038,21070,21172,21288,21289,21291,21297,21300,21376,21378,21390,21391,21483,21487,21497,21499,21501,21504,21509,21521,21522,21523,21537,21538,21553,21556,21559,21562,21563,21564,21567,21573,21574,21576,21600,21602,21603,21657,21663,21664,21681,21694,21703,22111,22142,22176,22216,22238,22254,22273,22291,22318,22386,22420,22495,22566,22568,22622,22687,22700,22845,22847,22882,22884,22919,23111,23112,23121]]],["+",[60,55,[[4,3,2,0,2,[[154,3,2,0,2]]],[6,2,2,2,4,[[212,1,1,2,3],[227,1,1,3,4]]],[8,1,1,4,5,[[239,1,1,4,5]]],[9,2,2,5,7,[[277,1,1,5,6],[279,1,1,6,7]]],[10,2,2,7,9,[[298,1,1,7,8],[303,1,1,8,9]]],[11,2,2,9,11,[[315,1,1,9,10],[329,1,1,10,11]]],[13,2,2,11,13,[[372,1,1,11,12],[373,1,1,12,13]]],[17,2,2,13,15,[[457,1,1,13,14],[459,1,1,14,15]]],[18,1,1,15,16,[[584,1,1,15,16]]],[19,6,6,16,22,[[629,1,1,16,17],[632,1,1,17,18],[636,1,1,18,19],[639,1,1,19,20],[641,1,1,20,21],[648,1,1,21,22]]],[22,6,5,22,27,[[680,1,1,22,23],[713,1,1,23,24],[733,2,1,24,25],[735,1,1,25,26],[741,1,1,26,27]]],[23,8,8,27,35,[[759,1,1,27,28],[762,1,1,28,29],[767,1,1,29,30],[769,1,1,30,31],[770,1,1,31,32],[779,1,1,32,33],[780,2,2,33,35]]],[24,2,2,35,37,[[797,1,1,35,36],[798,1,1,36,37]]],[25,17,14,37,51,[[804,2,2,37,39],[808,1,1,39,40],[810,1,1,40,41],[814,1,1,41,42],[817,1,1,42,43],[819,1,1,43,44],[834,5,3,44,47],[837,1,1,47,48],[841,1,1,48,49],[844,1,1,49,50],[845,2,1,50,51]]],[31,2,2,51,53,[[891,2,2,51,53]]],[32,1,1,53,54,[[896,1,1,53,54]]],[37,1,1,54,55,[[911,1,1,54,55]]]],[4946,4965,6564,6988,7310,8269,8351,9029,9217,9596,9996,11312,11338,13392,13440,15716,16445,16525,16653,16747,16786,17000,17688,18328,18749,18779,18883,19322,19395,19506,19539,19575,19838,19845,19849,20322,20347,20520,20521,20604,20624,20730,20789,20872,21288,21289,21291,21391,21487,21574,21602,22566,22568,22622,22882]]],["away",[1,1,[[8,1,1,0,1,[[259,1,1,0,1]]]],[7858]]],["conversation",[2,2,[[18,2,2,0,2,[[514,1,1,0,1],[527,1,1,1,2]]]],[14464,14691]]],["custom",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[908]]],["journey",[22,20,[[0,3,3,0,3,[[23,1,1,0,1],[29,1,1,1,2],[30,1,1,2,3]]],[1,3,3,3,6,[[52,1,1,3,4],[54,1,1,4,5],[57,1,1,5,6]]],[3,7,5,6,11,[[125,2,2,6,8],[126,2,1,8,9],[127,2,1,9,10],[149,1,1,10,11]]],[5,2,2,11,13,[[195,2,2,11,13]]],[6,1,1,13,14,[[214,1,1,13,14]]],[8,1,1,14,15,[[250,1,1,14,15]]],[10,3,3,15,18,[[308,1,1,15,16],[309,2,2,16,18]]],[11,1,1,18,19,[[315,1,1,18,19]]],[19,1,1,19,20,[[634,1,1,19,20]]]],[612,866,896,1597,1635,1737,3975,3978,4021,4055,4768,6048,6050,6608,7578,9368,9391,9394,9585,16594]]],["manner",[8,8,[[0,1,1,0,1,[[18,1,1,0,1]]],[8,1,1,1,2,[[256,1,1,1,2]]],[22,2,2,2,4,[[688,2,2,2,4]]],[23,1,1,4,5,[[766,1,1,4,5]]],[25,1,1,5,6,[[821,1,1,5,6]]],[29,2,2,6,8,[[882,1,1,6,7],[886,1,1,7,8]]]],[488,7777,17874,17876,19475,20925,22420,22495]]],["side",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1140]]],["through",[1,1,[[9,1,1,0,1,[[270,1,1,0,1]]]],[8127]]],["toward",[30,25,[[10,3,3,0,3,[[298,2,2,0,2],[308,1,1,2,3]]],[13,2,2,3,5,[[372,2,2,3,5]]],[25,25,20,5,25,[[821,1,1,5,6],[841,12,9,6,15],[842,2,2,15,17],[843,8,6,17,23],[844,2,2,23,25]]]],[9029,9033,9384,11316,11320,20941,21483,21497,21499,21501,21504,21509,21521,21522,21523,21537,21538,21553,21559,21562,21563,21564,21567,21573,21576]]],["way",[429,390,[[0,24,23,0,23,[[2,1,1,0,1],[5,1,1,1,2],[15,1,1,2,3],[17,1,1,3,4],[23,5,5,4,9],[27,1,1,9,10],[31,1,1,10,11],[32,1,1,11,12],[34,2,2,12,14],[37,2,2,14,16],[41,2,2,16,18],[44,3,3,18,21],[47,2,1,21,22],[48,1,1,22,23]]],[1,10,10,23,33,[[53,1,1,23,24],[62,3,3,24,27],[67,2,2,27,29],[72,1,1,29,30],[81,1,1,30,31],[82,2,2,31,33]]],[3,16,13,33,46,[[130,1,1,33,34],[136,1,1,34,35],[137,5,4,35,39],[138,8,6,39,45],[140,1,1,45,46]]],[4,33,32,46,78,[[153,7,6,46,52],[154,2,2,52,54],[155,1,1,54,55],[158,1,1,55,56],[160,1,1,56,57],[161,2,2,57,59],[163,3,3,59,62],[165,1,1,62,63],[166,1,1,63,64],[169,1,1,64,65],[171,2,2,65,67],[174,2,2,67,69],[175,1,1,69,70],[176,1,1,70,71],[177,2,2,71,73],[179,1,1,73,74],[180,3,3,74,77],[183,1,1,77,78]]],[5,14,13,78,91,[[187,1,1,78,79],[188,3,3,79,82],[189,2,1,82,83],[191,3,3,83,86],[194,1,1,86,87],[196,1,1,87,88],[198,1,1,88,89],[209,1,1,89,90],[210,1,1,90,91]]],[6,11,11,91,102,[[212,2,2,91,93],[215,1,1,93,94],[218,1,1,94,95],[219,1,1,95,96],[228,3,3,96,99],[229,2,2,99,101],[230,1,1,101,102]]],[7,1,1,102,103,[[232,1,1,102,103]]],[8,20,18,103,121,[[236,1,1,103,104],[241,3,2,104,106],[244,2,2,106,108],[247,1,1,108,109],[248,3,2,109,111],[250,2,2,111,113],[252,1,1,113,114],[259,2,2,114,116],[260,1,1,116,117],[261,2,2,117,119],[263,1,1,119,120],[265,1,1,120,121]]],[9,8,8,121,129,[[268,1,1,121,122],[279,1,1,122,123],[281,2,2,123,125],[282,1,1,125,126],[284,1,1,126,127],[288,2,2,127,129]]],[10,31,25,129,154,[[291,1,1,129,130],[292,2,2,130,132],[298,3,3,132,135],[301,1,1,135,136],[303,11,8,136,144],[305,2,2,144,146],[306,3,3,146,149],[308,3,2,149,151],[309,1,1,151,152],[310,1,1,152,153],[312,3,1,153,154]]],[11,19,17,154,171,[[314,1,1,154,155],[315,2,1,155,156],[318,1,1,156,157],[319,1,1,157,158],[320,2,2,158,160],[321,1,1,160,161],[322,1,1,161,162],[323,2,2,162,164],[328,1,1,164,165],[331,2,2,165,167],[333,2,2,167,169],[334,1,1,169,170],[337,2,1,170,171]]],[13,9,9,171,180,[[372,4,4,171,175],[377,1,1,175,176],[384,1,1,176,177],[386,1,1,177,178],[387,2,2,178,180]]],[14,3,3,180,183,[[410,3,3,180,183]]],[15,3,2,183,185,[[421,3,2,183,185]]],[17,19,19,185,204,[[438,1,1,185,186],[441,1,1,186,187],[443,1,1,187,188],[447,1,1,188,189],[452,1,1,189,190],[454,1,1,190,191],[456,2,2,191,193],[458,2,2,193,195],[459,1,1,195,196],[463,2,2,196,198],[464,1,1,198,199],[466,1,1,199,200],[471,1,1,200,201],[473,3,3,201,204]]],[18,45,43,204,247,[[478,3,2,204,206],[479,1,1,206,207],[482,1,1,207,208],[495,2,2,208,210],[502,3,3,210,213],[504,1,1,213,214],[509,1,1,214,215],[512,1,1,215,216],[513,1,1,216,217],[514,4,4,217,221],[526,1,1,221,222],[544,1,1,222,223],[554,2,2,223,225],[557,1,1,225,226],[562,1,1,226,227],[563,1,1,227,228],[566,1,1,228,229],[578,2,2,229,231],[579,1,1,231,232],[584,3,3,232,235],[587,1,1,235,236],[596,8,8,236,244],[616,2,1,244,245],[620,1,1,245,246],[623,1,1,246,247]]],[19,47,44,247,291,[[628,2,2,247,249],[629,2,2,249,251],[630,1,1,251,252],[631,3,3,252,255],[633,1,1,255,256],[634,2,2,256,258],[635,3,3,258,261],[636,1,1,261,262],[637,1,1,262,263],[638,2,2,263,265],[639,2,2,265,267],[640,2,2,267,269],[641,2,2,269,271],[642,2,2,271,273],[643,5,5,273,278],[646,1,1,278,279],[647,1,1,279,280],[648,3,3,280,283],[649,2,2,283,285],[650,1,1,285,286],[653,1,1,286,287],[655,1,1,287,288],[656,1,1,288,289],[657,5,2,289,291]]],[20,3,3,291,294,[[668,1,1,291,292],[669,1,1,292,293],[670,1,1,293,294]]],[22,29,28,294,322,[[681,1,1,294,295],[686,1,1,295,296],[687,1,1,296,297],[693,1,1,297,298],[708,2,2,298,300],[713,2,1,300,301],[715,2,2,301,303],[718,3,3,303,306],[720,1,1,306,307],[721,2,2,307,309],[726,2,2,309,311],[727,1,1,311,312],[729,1,1,312,313],[731,1,1,313,314],[733,1,1,314,315],[734,1,1,315,316],[735,3,3,316,319],[737,1,1,319,320],[740,1,1,320,321],[743,1,1,321,322]]],[23,31,27,322,349,[[746,6,5,322,327],[747,1,1,327,328],[748,1,1,328,329],[749,2,2,329,331],[750,3,3,331,334],[754,2,2,334,336],[756,1,1,336,337],[762,1,1,337,338],[765,2,1,338,339],[767,1,1,339,340],[772,1,1,340,341],[775,2,2,341,343],[776,1,1,343,344],[783,2,1,344,345],[786,1,1,345,346],[792,1,1,346,347],[794,1,1,347,348],[796,2,1,348,349]]],[25,44,32,349,381,[[809,2,1,349,350],[810,1,1,350,351],[812,1,1,351,352],[815,1,1,352,353],[817,3,3,353,356],[819,3,2,356,358],[822,3,3,358,361],[823,1,1,361,362],[824,2,2,362,364],[834,3,2,364,366],[837,3,2,366,368],[843,5,4,368,372],[844,1,1,372,373],[845,2,2,373,375],[847,8,3,375,378],[848,4,2,378,380],[849,1,1,380,381]]],[27,4,4,381,385,[[863,1,1,381,382],[867,1,1,382,383],[871,1,1,383,384],[874,1,1,384,385]]],[29,1,1,385,386,[[880,1,1,385,386]]],[33,2,2,386,388,[[900,1,1,386,387],[901,1,1,387,388]]],[38,2,2,388,390,[[926,1,1,388,389],[927,1,1,389,390]]]],[79,149,388,443,618,631,633,639,647,793,929,976,1014,1030,1133,1135,1277,1290,1379,1381,1382,1458,1490,1625,1884,1885,1888,2007,2019,2164,2446,2476,2486,4133,4328,4341,4344,4362,4373,4397,4398,4401,4406,4407,4409,4471,4894,4911,4914,4923,4925,4932,4939,4946,4976,5093,5139,5169,5173,5227,5236,5238,5277,5314,5380,5409,5412,5474,5476,5504,5534,5564,5565,5603,5618,5636,5679,5757,5859,5876,5885,5891,5897,5938,5939,5941,6017,6074,6133,6474,6493,6562,6567,6633,6730,6779,6998,6999,7019,7033,7051,7096,7134,7230,7340,7343,7397,7399,7483,7502,7503,7562,7580,7670,7842,7846,7873,7908,7930,7964,7980,8073,8347,8391,8412,8439,8501,8633,8635,8766,8772,8774,9010,9017,9021,9137,9193,9194,9196,9201,9208,9209,9210,9212,9275,9283,9285,9302,9309,9347,9348,9402,9446,9532,9574,9584,9693,9722,9745,9754,9783,9805,9845,9848,9966,10089,10094,10140,10141,10147,10226,11298,11305,11309,11316,11431,11565,11619,11630,11637,12222,12223,12232,12523,12530,12927,12996,13048,13152,13269,13309,13384,13386,13429,13430,13454,13527,13530,13557,13595,13759,13812,13817,13818,13940,13945,13957,13981,14148,14150,14259,14260,14263,14296,14363,14416,14442,14455,14457,14473,14484,14661,14895,15106,15112,15210,15284,15295,15367,15515,15519,15544,15703,15706,15739,15793,15899,15912,15925,15927,15928,15930,15931,15935,16263,16301,16350,16415,16431,16441,16453,16478,16501,16504,16509,16563,16583,16602,16604,16615,16624,16644,16685,16693,16708,16734,16745,16753,16762,16780,16784,16816,16826,16849,16857,16865,16869,16871,16928,16978,16986,16992,17013,17020,17021,17063,17154,17206,17251,17270,17271,17496,17518,17528,17719,17818,17830,17965,18228,18238,18328,18381,18386,18423,18434,18447,18496,18521,18524,18629,18631,18647,18683,18717,18747,18764,18775,18779,18782,18808,18864,18899,18982,18983,18988,18998,19001,19023,19045,19062,19063,19105,19114,19116,19203,19224,19250,19399,19448,19496,19629,19700,19712,19770,19927,19978,20099,20171,20283,20609,20632,20676,20753,20787,20793,20805,20874,20878,20963,20964,20965,21007,21020,21038,21297,21300,21376,21378,21553,21556,21563,21564,21576,21600,21603,21657,21663,21664,21681,21694,21703,22111,22176,22238,22273,22386,22687,22700,23111,23121]]],["ways",[149,143,[[0,1,1,0,1,[[18,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[4,12,12,2,14,[[157,1,1,2,3],[160,1,1,3,4],[162,1,1,4,5],[163,1,1,5,6],[171,1,1,6,7],[178,1,1,7,8],[180,4,4,8,12],[182,1,1,12,13],[184,1,1,13,14]]],[5,1,1,14,15,[[208,1,1,14,15]]],[8,3,3,15,18,[[243,2,2,15,17],[253,1,1,17,18]]],[9,1,1,18,19,[[288,1,1,18,19]]],[10,7,7,19,26,[[292,1,1,19,20],[293,1,1,20,21],[298,2,2,21,23],[301,2,2,23,25],[312,1,1,25,26]]],[13,12,11,26,37,[[372,1,1,26,27],[379,1,1,27,28],[383,2,2,28,30],[387,2,1,30,31],[388,1,1,31,32],[393,2,2,32,34],[394,2,2,34,36],[400,1,1,36,37]]],[17,11,11,37,48,[[439,1,1,37,38],[448,1,1,38,39],[456,1,1,39,40],[457,1,1,40,41],[459,2,2,41,43],[461,1,1,43,44],[466,1,1,44,45],[469,2,2,45,47],[475,1,1,47,48]]],[18,18,18,48,66,[[487,1,1,48,49],[495,1,1,49,50],[502,1,1,50,51],[516,1,1,51,52],[528,1,1,52,53],[558,1,1,53,54],[568,1,1,54,55],[572,1,1,55,56],[580,1,1,56,57],[596,5,5,57,62],[605,1,1,62,63],[615,1,1,63,64],[616,1,1,64,65],[622,1,1,65,66]]],[19,21,20,66,86,[[629,1,1,66,67],[630,4,3,67,70],[631,1,1,70,71],[632,1,1,71,72],[633,1,1,72,73],[634,1,1,73,74],[635,1,1,74,75],[637,1,1,75,76],[641,2,2,76,78],[643,3,3,78,81],[646,1,1,81,82],[650,1,1,82,83],[655,2,2,83,85],[658,1,1,85,86]]],[20,1,1,86,87,[[669,1,1,86,87]]],[22,10,9,87,96,[[720,1,1,87,88],[723,1,1,88,89],[727,1,1,89,90],[733,2,1,90,91],[735,1,1,91,92],[736,2,2,92,94],[742,1,1,94,95],[744,1,1,95,96]]],[23,16,15,96,111,[[746,2,2,96,98],[747,2,2,98,100],[750,1,1,100,101],[751,3,3,101,104],[756,1,1,104,105],[760,1,1,105,106],[761,1,1,106,107],[762,2,2,107,109],[770,1,1,109,110],[776,2,1,110,111]]],[24,4,4,111,115,[[797,1,1,111,112],[799,3,3,112,115]]],[25,20,18,115,133,[[808,4,4,115,119],[815,1,1,119,120],[817,3,2,120,122],[819,4,3,122,125],[821,2,2,125,127],[822,2,2,127,129],[825,1,1,129,130],[829,1,1,130,131],[834,1,1,131,132],[837,1,1,132,133]]],[27,4,4,133,137,[[865,1,1,133,134],[870,1,1,134,135],[873,1,1,135,136],[875,1,1,136,137]]],[28,1,1,137,138,[[877,1,1,137,138]]],[36,2,2,138,140,[[909,2,2,138,140]]],[37,2,2,140,142,[[911,1,1,140,141],[913,1,1,141,142]]],[38,1,1,142,143,[[926,1,1,142,143]]]],[459,3546,5086,5143,5198,5230,5415,5583,5618,5620,5636,5640,5724,5762,6431,7372,7374,7690,8624,8773,8830,9024,9043,9141,9146,9523,11313,11475,11526,11529,11636,11647,11761,11762,11766,11790,11935,12936,13168,13369,13417,13449,13459,13481,13592,13704,13710,13883,14046,14139,14255,14513,14704,15230,15406,15464,15556,15901,15903,15924,15957,16066,16127,16236,16242,16337,16446,16461,16472,16486,16516,16538,16546,16600,16634,16665,16774,16784,16842,16847,16865,16941,17070,17202,17214,17287,17522,18504,18574,18645,18748,18783,18788,18799,18890,18925,18988,18998,19004,19015,19105,19122,19124,19142,19265,19353,19367,19395,19399,19585,19750,20314,20363,20365,20394,20580,20581,20585,20586,20754,20809,20823,20874,20878,20879,20938,20939,20963,20965,21070,21172,21300,21390,22142,22216,22254,22291,22318,22845,22847,22884,22919,23112]]]]},{"k":"H1871","v":[["drams",[4,4,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,3,3,1,4,[[419,3,3,1,4]]]],[12096,12490,12491,12492]]]]},{"k":"H1872","v":[["arms",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21790]]]]},{"k":"H1873","v":[["Dara",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10312]]]]},{"k":"H1874","v":[["Darkon",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12083,12478]]]]},{"k":"H1875","v":[["*",[164,152,[[0,5,3,0,3,[[8,3,1,0,1],[24,1,1,1,2],[41,1,1,2,3]]],[1,1,1,3,4,[[67,1,1,3,4]]],[2,2,1,4,5,[[99,2,1,4,5]]],[4,14,13,5,18,[[156,1,1,5,6],[163,1,1,6,7],[164,2,2,7,9],[165,1,1,9,10],[169,2,2,10,12],[170,2,2,12,14],[171,1,1,14,15],[174,1,1,15,16],[175,3,2,16,18]]],[6,1,1,18,19,[[216,1,1,18,19]]],[8,2,2,19,21,[[244,1,1,19,20],[263,1,1,20,21]]],[9,1,1,21,22,[[277,1,1,21,22]]],[10,4,4,22,26,[[304,1,1,22,23],[312,3,3,23,26]]],[11,9,8,26,34,[[313,5,4,26,30],[315,1,1,30,31],[320,1,1,31,32],[334,2,2,32,34]]],[12,11,10,34,44,[[347,2,2,34,36],[350,1,1,36,37],[352,1,1,37,38],[353,1,1,38,39],[358,1,1,39,40],[359,1,1,40,41],[363,1,1,41,42],[365,3,2,42,44]]],[13,30,28,44,72,[[367,1,1,44,45],[378,1,1,45,46],[380,3,2,46,48],[381,3,3,48,51],[382,1,1,51,52],[383,2,2,52,54],[384,3,3,54,57],[385,1,1,57,58],[386,1,1,58,59],[388,1,1,59,60],[390,2,2,60,62],[391,2,2,62,64],[392,2,1,64,65],[396,1,1,65,66],[397,2,2,66,68],[398,1,1,68,69],[400,3,3,69,72]]],[14,5,5,72,77,[[406,1,1,72,73],[408,1,1,73,74],[409,1,1,74,75],[411,1,1,75,76],[412,1,1,76,77]]],[16,1,1,77,78,[[435,1,1,77,78]]],[17,4,4,78,82,[[438,1,1,78,79],[440,1,1,79,80],[445,1,1,80,81],[474,1,1,81,82]]],[18,24,24,82,106,[[486,2,2,82,84],[487,3,3,84,87],[491,1,1,87,88],[499,1,1,88,89],[501,1,1,89,90],[511,2,2,90,92],[515,1,1,92,93],[530,1,1,93,94],[546,1,1,94,95],[554,1,1,95,96],[555,1,1,96,97],[582,1,1,97,98],[586,1,1,98,99],[588,1,1,99,100],[596,5,5,100,105],[619,1,1,105,106]]],[19,2,2,106,108,[[638,1,1,106,107],[658,1,1,107,108]]],[20,1,1,108,109,[[659,1,1,108,109]]],[22,14,13,109,122,[[679,1,1,109,110],[686,2,1,110,111],[687,1,1,111,112],[689,1,1,112,113],[694,1,1,113,114],[697,1,1,114,115],[709,1,1,115,116],[712,1,1,116,117],[733,1,1,117,118],[736,1,1,118,119],[740,1,1,119,120],[743,2,2,120,122]]],[23,9,9,122,131,[[752,1,1,122,123],[754,1,1,123,124],[765,1,1,124,125],[773,2,2,125,127],[774,2,2,127,129],[781,1,1,129,130],[782,1,1,130,131]]],[24,1,1,131,132,[[799,1,1,131,132]]],[25,16,13,132,145,[[815,4,3,132,135],[821,6,4,135,139],[834,1,1,139,140],[835,4,4,140,144],[837,1,1,144,145]]],[27,1,1,145,146,[[871,1,1,145,146]]],[29,4,4,146,150,[[883,4,4,146,150]]],[32,1,1,150,151,[[898,1,1,150,151]]],[35,1,1,151,152,[[906,1,1,151,152]]]],[210,680,1274,2014,2993,5033,5220,5245,5270,5286,5368,5373,5395,5403,5424,5472,5506,5521,6683,7400,7949,8262,9223,9485,9487,9488,9535,9536,9539,9549,9587,9735,10158,10163,10672,10673,10763,10804,10831,10964,10983,11108,11151,11152,11199,11451,11479,11482,11492,11502,11503,11521,11526,11527,11546,11548,11549,11579,11590,11653,11683,11699,11719,11724,11737,11846,11863,11875,11906,11936,11954,11959,12112,12172,12183,12249,12268,12869,12908,12959,13092,13842,14031,14033,14045,14054,14056,14082,14230,14247,14392,14398,14502,14721,14967,15095,15147,15610,15765,15795,15900,15908,15943,15992,16053,16290,16715,17297,17328,17671,17826,17842,17894,17974,18007,18251,18319,18746,18788,18866,18898,18907,19155,19222,19442,19642,19648,19681,19684,19881,19899,20379,20734,20738,20741,20896,20898,20926,20935,21286,21319,21321,21323,21324,21396,22237,22427,22428,22429,22437,22656,22793]]],["+",[32,28,[[0,1,1,0,1,[[8,1,1,0,1]]],[2,2,1,1,2,[[99,2,1,1,2]]],[4,4,3,2,5,[[170,1,1,2,3],[171,1,1,3,4],[175,2,1,4,5]]],[11,1,1,5,6,[[320,1,1,5,6]]],[13,10,9,6,15,[[378,1,1,6,7],[380,2,2,7,9],[381,1,1,9,10],[388,1,1,10,11],[391,2,2,11,13],[392,2,1,13,14],[400,1,1,14,15]]],[14,1,1,15,16,[[409,1,1,15,16]]],[18,3,3,16,19,[[491,1,1,16,17],[511,1,1,17,18],[530,1,1,18,19]]],[23,1,1,19,20,[[773,1,1,19,20]]],[25,7,6,20,26,[[815,2,1,20,21],[821,2,2,21,23],[835,3,3,23,26]]],[27,1,1,26,27,[[871,1,1,26,27]]],[29,1,1,27,28,[[883,1,1,27,28]]]],[210,2993,5395,5424,5521,9735,11451,11479,11482,11502,11653,11719,11724,11737,11954,12183,14082,14392,14721,19642,20734,20896,20935,21321,21323,21324,22237,22429]]],["Enquire",[3,3,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]],[23,1,1,2,3,[[765,1,1,2,3]]]],[9485,11546,19442]]],["Seek",[7,7,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]],[22,3,3,2,5,[[686,1,1,2,3],[712,1,1,3,4],[733,1,1,4,5]]],[29,2,2,5,7,[[883,2,2,5,7]]]],[10831,15610,17826,18319,18746,22427,22437]]],["after",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5472]]],["ask",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9223]]],["cared",[1,1,[[18,1,1,0,1,[[619,1,1,0,1]]]],[16290]]],["careth",[1,1,[[4,1,1,0,1,[[163,1,1,0,1]]]],[5220]]],["enquire",[25,24,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,1,1,1,2,[[67,1,1,1,2]]],[4,3,3,2,5,[[164,1,1,2,3],[165,1,1,3,4],[169,1,1,4,5]]],[8,2,2,5,7,[[244,1,1,5,6],[263,1,1,6,7]]],[10,2,2,7,9,[[312,2,2,7,9]]],[11,8,7,9,16,[[313,5,4,9,13],[315,1,1,13,14],[334,2,2,14,16]]],[12,2,2,16,18,[[347,1,1,16,17],[358,1,1,17,18]]],[13,3,3,18,21,[[384,2,2,18,20],[400,1,1,20,21]]],[23,1,1,21,22,[[781,1,1,21,22]]],[25,2,2,22,24,[[815,1,1,22,23],[821,1,1,23,24]]]],[680,2014,5270,5286,5373,7400,7949,9487,9488,9535,9536,9539,9549,9587,10158,10163,10672,10964,11548,11549,11959,19881,20738,20898]]],["enquired",[7,7,[[4,1,1,0,1,[[169,1,1,0,1]]],[6,1,1,1,2,[[216,1,1,1,2]]],[9,1,1,2,3,[[277,1,1,2,3]]],[12,2,2,3,5,[[347,1,1,3,4],[350,1,1,4,5]]],[25,1,1,5,6,[[821,1,1,5,6]]],[35,1,1,6,7,[[906,1,1,6,7]]]],[5368,6683,8262,10673,10763,20898,22793]]],["examine",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12268]]],["for",[2,2,[[12,1,1,0,1,[[363,1,1,0,1]]],[23,1,1,1,2,[[773,1,1,1,2]]]],[11108,19648]]],["inquisition",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14033]]],["of",[4,3,[[13,1,1,0,1,[[398,1,1,0,1]]],[25,3,2,1,3,[[821,2,1,1,2],[837,1,1,2,3]]]],[11906,20926,21396]]],["out",[3,3,[[18,2,2,0,2,[[487,1,1,0,1],[588,1,1,1,2]]],[22,1,1,2,3,[[740,1,1,2,3]]]],[14056,15795,18866]]],["questioned",[1,1,[[13,1,1,0,1,[[397,1,1,0,1]]]],[11863]]],["regard",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12908]]],["require",[7,6,[[0,2,1,0,1,[[8,2,1,0,1]]],[4,1,1,1,2,[[170,1,1,1,2]]],[13,1,1,2,3,[[390,1,1,2,3]]],[18,1,1,3,4,[[487,1,1,3,4]]],[25,1,1,4,5,[[834,1,1,4,5]]],[32,1,1,5,6,[[898,1,1,5,6]]]],[210,5403,11699,14054,21286,22656]]],["required",[2,2,[[0,1,1,0,1,[[41,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]]],[1274,11683]]],["search",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21319]]],["searchest",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13092]]],["searcheth",[2,2,[[12,1,1,0,1,[[365,1,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]]],[11152,13842]]],["seek",[38,38,[[4,3,3,0,3,[[156,1,1,0,1],[164,1,1,1,2],[175,1,1,2,3]]],[12,3,3,3,6,[[359,1,1,3,4],[365,2,2,4,6]]],[13,7,7,6,13,[[381,2,2,6,8],[385,1,1,8,9],[386,1,1,9,10],[396,1,1,10,11],[397,1,1,11,12],[400,1,1,12,13]]],[14,3,3,13,16,[[406,1,1,13,14],[408,1,1,14,15],[411,1,1,15,16]]],[17,1,1,16,17,[[440,1,1,16,17]]],[18,11,11,17,28,[[486,1,1,17,18],[487,1,1,18,19],[499,1,1,19,20],[501,1,1,20,21],[511,1,1,21,22],[515,1,1,22,23],[546,1,1,23,24],[586,1,1,24,25],[596,3,3,25,28]]],[20,1,1,28,29,[[659,1,1,28,29]]],[22,7,7,29,36,[[679,1,1,29,30],[686,1,1,30,31],[687,1,1,31,32],[689,1,1,32,33],[697,1,1,33,34],[709,1,1,34,35],[736,1,1,35,36]]],[23,1,1,36,37,[[774,1,1,36,37]]],[29,1,1,37,38,[[883,1,1,37,38]]]],[5033,5245,5506,10983,11151,11152,11492,11503,11579,11590,11846,11875,11936,12112,12172,12249,12959,14031,14045,14230,14247,14398,14502,14967,15765,15900,15943,16053,17328,17671,17826,17842,17894,18007,18251,18788,19681,22428]]],["seeketh",[6,6,[[19,2,2,0,2,[[638,1,1,0,1],[658,1,1,1,2]]],[23,2,2,2,4,[[774,1,1,2,3],[782,1,1,3,4]]],[24,1,1,4,5,[[799,1,1,4,5]]],[25,1,1,5,6,[[815,1,1,5,6]]]],[16715,17297,19684,19899,20379,20741]]],["seeking",[2,2,[[16,1,1,0,1,[[435,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]]],[12869,17974]]],["sought",[14,14,[[12,1,1,0,1,[[352,1,1,0,1]]],[13,5,5,1,6,[[367,1,1,1,2],[380,1,1,2,3],[382,1,1,3,4],[383,2,2,4,6]]],[18,4,4,6,10,[[554,1,1,6,7],[555,1,1,7,8],[596,2,2,8,10]]],[22,2,2,10,12,[[743,2,2,10,12]]],[23,2,2,12,14,[[752,1,1,12,13],[754,1,1,13,14]]]],[10804,11199,11482,11521,11526,11527,15095,15147,15908,15992,18898,18907,19155,19222]]]]},{"k":"H1876","v":[["*",[2,2,[[0,1,1,0,1,[[0,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[10,22333]]],["forth",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[10]]],["spring",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22333]]]]},{"k":"H1877","v":[["*",[15,15,[[0,2,2,0,2,[[0,2,2,0,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[9,1,1,3,4,[[289,1,1,3,4]]],[11,1,1,4,5,[[331,1,1,4,5]]],[17,2,2,5,7,[[441,1,1,5,6],[473,1,1,6,7]]],[18,2,2,7,9,[[500,1,1,7,8],[514,1,1,8,9]]],[19,1,1,9,10,[[654,1,1,9,10]]],[22,3,3,10,13,[[693,1,1,10,11],[715,1,1,11,12],[744,1,1,12,13]]],[23,2,2,13,15,[[758,1,1,13,14],[794,1,1,14,15]]]],[10,11,5760,8657,10087,12983,13820,14237,14452,17194,17966,18379,18936,19298,20177]]],["grass",[8,8,[[0,2,2,0,2,[[0,2,2,0,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[17,1,1,3,4,[[441,1,1,3,4]]],[19,1,1,4,5,[[654,1,1,4,5]]],[22,1,1,5,6,[[693,1,1,5,6]]],[23,2,2,6,8,[[758,1,1,6,7],[794,1,1,7,8]]]],[10,11,8657,12983,17194,17966,19298,20177]]],["green",[1,1,[[18,1,1,0,1,[[500,1,1,0,1]]]],[14237]]],["herb",[6,6,[[4,1,1,0,1,[[184,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[17,1,1,2,3,[[473,1,1,2,3]]],[18,1,1,3,4,[[514,1,1,3,4]]],[22,2,2,4,6,[[715,1,1,4,5],[744,1,1,5,6]]]],[5760,10087,13820,14452,18379,18936]]]]},{"k":"H1878","v":[["*",[11,11,[[1,1,1,0,1,[[76,1,1,0,1]]],[3,1,1,1,2,[[120,1,1,1,2]]],[4,1,1,2,3,[[183,1,1,2,3]]],[18,2,2,3,5,[[497,1,1,3,4],[500,1,1,4,5]]],[19,4,4,5,9,[[638,1,1,5,6],[640,1,1,6,7],[642,1,1,7,8],[655,1,1,8,9]]],[22,2,2,9,11,[[712,2,2,9,11]]]],[2275,3756,5748,14185,14240,16713,16751,16837,17221,18309,18310]]],["+",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3756]]],["accept",[1,1,[[18,1,1,0,1,[[497,1,1,0,1]]]],[14185]]],["anointest",[1,1,[[18,1,1,0,1,[[500,1,1,0,1]]]],[14240]]],["ashes",[1,1,[[1,1,1,0,1,[[76,1,1,0,1]]]],[2275]]],["fat",[7,7,[[4,1,1,0,1,[[183,1,1,0,1]]],[19,4,4,1,5,[[638,1,1,1,2],[640,1,1,2,3],[642,1,1,3,4],[655,1,1,4,5]]],[22,2,2,5,7,[[712,2,2,5,7]]]],[5748,16713,16751,16837,17221,18309,18310]]]]},{"k":"H1879","v":[["fat",[3,3,[[18,2,2,0,2,[[499,1,1,0,1],[569,1,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]]],[14233,15425,18240]]]]},{"k":"H1880","v":[["*",[15,14,[[2,5,4,0,4,[[90,1,1,0,1],[93,2,1,1,2],[95,2,2,2,4]]],[6,1,1,4,5,[[219,1,1,4,5]]],[10,2,2,5,7,[[303,2,2,5,7]]],[17,1,1,7,8,[[471,1,1,7,8]]],[18,3,3,8,11,[[513,1,1,8,9],[540,1,1,9,10],[542,1,1,10,11]]],[22,1,1,11,12,[[733,1,1,11,12]]],[23,2,2,12,14,[[775,2,2,12,14]]]],[2761,2807,2859,2860,6763,9187,9189,13752,14446,14844,14871,18742,19705,19731]]],["+",[1,1,[[18,1,1,0,1,[[513,1,1,0,1]]]],[14446]]],["ashes",[8,7,[[2,5,4,0,4,[[90,1,1,0,1],[93,2,1,1,2],[95,2,2,2,4]]],[10,2,2,4,6,[[303,2,2,4,6]]],[23,1,1,6,7,[[775,1,1,6,7]]]],[2761,2807,2859,2860,9187,9189,19731]]],["fatness",[6,6,[[6,1,1,0,1,[[219,1,1,0,1]]],[17,1,1,1,2,[[471,1,1,1,2]]],[18,2,2,2,4,[[540,1,1,2,3],[542,1,1,3,4]]],[22,1,1,4,5,[[733,1,1,4,5]]],[23,1,1,5,6,[[775,1,1,5,6]]]],[6763,13752,14844,14871,18742,19705]]]]},{"k":"H1881","v":[["*",[21,20,[[14,1,1,0,1,[[410,1,1,0,1]]],[16,20,19,1,20,[[426,4,4,1,5],[427,2,2,5,7],[428,4,3,7,10],[429,4,4,10,14],[433,3,3,14,17],[434,3,3,17,20]]]],[12237,12710,12715,12717,12721,12732,12736,12755,12761,12762,12765,12770,12773,12778,12830,12831,12834,12835,12847,12848]]],["commandment",[2,2,[[16,2,2,0,2,[[428,1,1,0,1],[433,1,1,1,2]]]],[12761,12830]]],["commissions",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12237]]],["decree",[9,9,[[16,9,9,0,9,[[427,1,1,0,1],[428,1,1,1,2],[429,2,2,2,4],[433,2,2,4,6],[434,3,3,6,9]]]],[12732,12762,12765,12770,12831,12834,12835,12847,12848]]],["law",[5,5,[[16,5,5,0,5,[[426,3,3,0,3],[429,2,2,3,5]]]],[12710,12715,12717,12773,12778]]],["laws",[3,2,[[16,3,2,0,2,[[426,1,1,0,1],[428,2,1,1,2]]]],[12721,12755]]],["manner",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12736]]]]},{"k":"H1882","v":[["*",[14,13,[[14,6,5,0,5,[[409,6,5,0,5]]],[26,8,8,5,13,[[851,3,3,5,8],[855,4,4,8,12],[856,1,1,12,13]]]],[12185,12187,12194,12198,12199,21767,21771,21773,21910,21913,21917,21920,21958]]],["decree",[3,3,[[26,3,3,0,3,[[851,3,3,0,3]]]],[21767,21771,21773]]],["law",[9,8,[[14,5,4,0,4,[[409,5,4,0,4]]],[26,4,4,4,8,[[855,4,4,4,8]]]],[12185,12187,12194,12199,21910,21913,21917,21920]]],["laws",[2,2,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,1,1,1,2,[[856,1,1,1,2]]]],[12198,21958]]]]},{"k":"H1883","v":[["grass",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21852,21860]]]]},{"k":"H1884","v":[["counsellors",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21809,21810]]]]},{"k":"H1885","v":[["Dathan",[10,8,[[3,8,6,0,6,[[132,6,5,0,5],[142,2,1,5,6]]],[4,1,1,6,7,[[163,1,1,6,7]]],[18,1,1,7,8,[[583,1,1,7,8]]]],[4195,4206,4218,4219,4221,4498,5214,15668]]]]},{"k":"H1886","v":[["Dothan",[3,2,[[0,2,1,0,1,[[36,2,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]]],[1100,9687]]]]},{"k":"H1887","v":[["*",[2,2,[[0,1,1,0,1,[[46,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[1443,20805]]],["behold",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20805]]],["lo",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1443]]]]},{"k":"H1888","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21801,21832]]],["+",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21801]]],["Lo",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21832]]]]},{"k":"H1889","v":[["*",[12,9,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,7,4,1,5,[[512,3,2,1,3],[517,2,1,3,4],[547,2,1,4,5]]],[22,1,1,5,6,[[722,1,1,5,6]]],[25,3,3,6,9,[[826,1,1,6,7],[827,1,1,7,8],[837,1,1,8,9]]]],[13859,14431,14435,14540,14974,18549,21086,21102,21361]]],["Ah",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14435]]],["Aha",[7,7,[[18,3,3,0,3,[[512,1,1,0,1],[517,1,1,1,2],[547,1,1,2,3]]],[22,1,1,3,4,[[722,1,1,3,4]]],[25,3,3,4,7,[[826,1,1,4,5],[827,1,1,5,6],[837,1,1,6,7]]]],[14431,14540,14974,18549,21086,21102,21361]]],["aha",[3,3,[[18,3,3,0,3,[[512,1,1,0,1],[517,1,1,1,2],[547,1,1,2,3]]]],[14431,14540,14974]]],["ha",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13859]]]]},{"k":"H1890","v":[["offerings",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22207]]]]},{"k":"H1891","v":[["*",[5,5,[[11,1,1,0,1,[[329,1,1,0,1]]],[17,1,1,1,2,[[462,1,1,1,2]]],[18,1,1,2,3,[[539,1,1,2,3]]],[23,2,2,3,5,[[746,1,1,3,4],[767,1,1,4,5]]]],[9998,13493,14837,18970,19500]]],["+",[2,2,[[18,1,1,0,1,[[539,1,1,0,1]]],[23,1,1,1,2,[[767,1,1,1,2]]]],[14837,19500]]],["vain",[3,3,[[11,1,1,0,1,[[329,1,1,0,1]]],[17,1,1,1,2,[[462,1,1,1,2]]],[23,1,1,2,3,[[746,1,1,2,3]]]],[9998,13493,18970]]]]},{"k":"H1892","v":[["*",[73,64,[[4,1,1,0,1,[[184,1,1,0,1]]],[10,2,2,1,3,[[306,2,2,1,3]]],[11,1,1,3,4,[[329,1,1,3,4]]],[17,5,5,4,9,[[442,1,1,4,5],[444,1,1,5,6],[456,1,1,6,7],[462,1,1,7,8],[470,1,1,8,9]]],[18,9,8,9,17,[[508,1,1,9,10],[516,3,3,10,13],[539,2,1,13,14],[555,1,1,14,15],[571,1,1,15,16],[621,1,1,16,17]]],[19,3,3,17,20,[[640,1,1,17,18],[648,1,1,18,19],[658,1,1,19,20]]],[20,38,30,20,50,[[659,6,2,20,22],[660,8,8,22,30],[661,1,1,30,31],[662,4,4,31,35],[663,2,2,35,37],[664,5,5,37,42],[665,2,2,42,44],[666,3,2,44,46],[667,2,1,46,47],[669,2,2,47,49],[670,3,1,49,50]]],[22,3,3,50,53,[[708,1,1,50,51],[727,1,1,51,52],[735,1,1,52,53]]],[23,8,8,53,61,[[746,1,1,53,54],[752,1,1,54,55],[754,3,3,55,58],[758,1,1,58,59],[760,1,1,59,60],[795,1,1,60,61]]],[24,1,1,61,62,[[800,1,1,61,62]]],[31,1,1,62,63,[[890,1,1,62,63]]],[37,1,1,63,64,[[920,1,1,63,64]]]],[5779,9296,9309,9998,13024,13080,13389,13493,13736,14337,14517,14518,14523,14836,15146,15442,16309,16758,16990,17314,17317,17329,17334,17344,17348,17350,17352,17354,17356,17359,17378,17385,17388,17389,17397,17404,17407,17419,17421,17426,17428,17429,17435,17444,17468,17472,17484,17521,17523,17531,18224,18640,18778,18970,19172,19204,19209,19216,19315,19355,20230,20437,22556,23018]]],["+",[2,2,[[18,1,1,0,1,[[539,1,1,0,1]]],[19,1,1,1,2,[[640,1,1,1,2]]]],[14836,16758]]],["Vanity",[2,2,[[20,2,2,0,2,[[659,1,1,0,1],[670,1,1,1,2]]]],[17317,17531]]],["altogether",[1,1,[[17,1,1,0,1,[[462,1,1,0,1]]]],[13493]]],["vain",[11,11,[[17,3,3,0,3,[[444,1,1,0,1],[456,1,1,1,2],[470,1,1,2,3]]],[18,1,1,3,4,[[516,1,1,3,4]]],[19,1,1,4,5,[[658,1,1,4,5]]],[20,1,1,5,6,[[664,1,1,5,6]]],[22,2,2,6,8,[[708,1,1,6,7],[727,1,1,7,8]]],[23,1,1,8,9,[[754,1,1,8,9]]],[24,1,1,9,10,[[800,1,1,9,10]]],[37,1,1,10,11,[[920,1,1,10,11]]]],[13080,13389,13736,14518,17314,17429,18224,18640,19204,20437,23018]]],["vanities",[12,11,[[4,1,1,0,1,[[184,1,1,0,1]]],[10,2,2,1,3,[[306,2,2,1,3]]],[18,1,1,3,4,[[508,1,1,3,4]]],[20,4,3,4,7,[[659,2,1,4,5],[663,1,1,5,6],[670,1,1,6,7]]],[23,3,3,7,10,[[752,1,1,7,8],[754,1,1,8,9],[758,1,1,9,10]]],[31,1,1,10,11,[[890,1,1,10,11]]]],[5779,9296,9309,14337,17317,17404,17531,19172,19209,19315,22556]]],["vanity",[45,42,[[11,1,1,0,1,[[329,1,1,0,1]]],[17,1,1,1,2,[[442,1,1,1,2]]],[18,6,6,2,8,[[516,2,2,2,4],[539,1,1,4,5],[555,1,1,5,6],[571,1,1,6,7],[621,1,1,7,8]]],[19,1,1,8,9,[[648,1,1,8,9]]],[20,31,28,9,37,[[659,3,2,9,11],[660,8,8,11,19],[661,1,1,19,20],[662,4,4,20,24],[663,1,1,24,25],[664,4,4,25,29],[665,2,2,29,31],[666,3,2,31,33],[667,2,1,33,34],[669,2,2,34,36],[670,1,1,36,37]]],[22,1,1,37,38,[[735,1,1,37,38]]],[23,4,4,38,42,[[746,1,1,38,39],[754,1,1,39,40],[760,1,1,40,41],[795,1,1,41,42]]]],[9998,13024,14517,14523,14836,15146,15442,16309,16990,17317,17329,17334,17344,17348,17350,17352,17354,17356,17359,17378,17385,17388,17389,17397,17407,17419,17421,17426,17428,17435,17444,17468,17472,17484,17521,17523,17531,18778,18970,19216,19355,20230]]]]},{"k":"H1893","v":[["Abel",[8,5,[[0,8,5,0,5,[[3,8,5,0,5]]]],[81,83,87,88,104]]]]},{"k":"H1894","v":[["ebony",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21136]]]]},{"k":"H1895","v":[["+",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18612]]]]},{"k":"H1896","v":[["*",[4,3,[[16,4,3,0,3,[[427,4,3,0,3]]]],[12727,12732,12739]]],["Hegai",[3,2,[[16,3,2,0,2,[[427,3,2,0,2]]]],[12732,12739]]],["Hege",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12727]]]]},{"k":"H1897","v":[["*",[25,24,[[5,1,1,0,1,[[187,1,1,0,1]]],[17,1,1,1,2,[[462,1,1,1,2]]],[18,10,10,2,12,[[478,1,1,2,3],[479,1,1,3,4],[512,1,1,4,5],[514,1,1,5,6],[515,1,1,6,7],[540,1,1,7,8],[548,1,1,8,9],[554,1,1,9,10],[592,1,1,10,11],[620,1,1,11,12]]],[19,3,3,12,15,[[635,1,1,12,13],[642,1,1,13,14],[651,1,1,14,15]]],[22,9,8,15,23,[[686,1,1,15,16],[694,1,1,16,17],[709,1,1,17,18],[711,1,1,18,19],[716,1,1,19,20],[737,4,3,20,23]]],[23,1,1,23,24,[[792,1,1,23,24]]]],[5859,13485,13941,13946,14438,14480,14502,14845,15000,15105,15837,16298,16609,16835,17081,17826,17976,18254,18297,18404,18803,18811,18813,20111]]],["+",[2,1,[[22,2,1,0,1,[[737,2,1,0,1]]]],[18811]]],["imagine",[2,2,[[18,2,2,0,2,[[479,1,1,0,1],[515,1,1,1,2]]]],[13946,14502]]],["meditate",[6,6,[[5,1,1,0,1,[[187,1,1,0,1]]],[18,4,4,1,5,[[478,1,1,1,2],[540,1,1,2,3],[554,1,1,3,4],[620,1,1,4,5]]],[22,1,1,5,6,[[711,1,1,5,6]]]],[5859,13941,14845,15105,16298,18297]]],["mourn",[3,3,[[22,2,2,0,2,[[694,1,1,0,1],[716,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[17976,18404,20111]]],["mutter",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17826]]],["muttered",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18803]]],["roaring",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18254]]],["speak",[3,3,[[18,2,2,0,2,[[512,1,1,0,1],[592,1,1,1,2]]],[19,1,1,2,3,[[635,1,1,2,3]]]],[14438,15837,16609]]],["speaketh",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14480]]],["studieth",[2,2,[[19,2,2,0,2,[[642,1,1,0,1],[651,1,1,1,2]]]],[16835,17081]]],["talk",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[15000]]],["utter",[1,1,[[17,1,1,0,1,[[462,1,1,0,1]]]],[13485]]],["uttering",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18813]]]]},{"k":"H1898","v":[["*",[3,3,[[19,2,2,0,2,[[652,2,2,0,2]]],[22,1,1,2,3,[[705,1,1,2,3]]]],[17117,17118,18159]]],["away",[2,2,[[19,2,2,0,2,[[652,2,2,0,2]]]],[17117,17118]]],["stayeth",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18159]]]]},{"k":"H1899","v":[["*",[3,3,[[17,1,1,0,1,[[472,1,1,0,1]]],[18,1,1,1,2,[[567,1,1,1,2]]],[25,1,1,2,3,[[803,1,1,2,3]]]],[13771,15387,20502]]],["mourning",[1,1,[[25,1,1,0,1,[[803,1,1,0,1]]]],[20502]]],["sound",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13771]]],["tale",[1,1,[[18,1,1,0,1,[[567,1,1,0,1]]]],[15387]]]]},{"k":"H1900","v":[["meditation",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14651]]]]},{"k":"H1901","v":[["*",[2,2,[[18,2,2,0,2,[[482,1,1,0,1],[516,1,1,1,2]]]],[13974,14515]]],["meditation",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13974]]],["musing",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14515]]]]},{"k":"H1902","v":[["*",[4,4,[[18,3,3,0,3,[[486,1,1,0,1],[496,1,1,1,2],[569,1,1,2,3]]],[24,1,1,3,4,[[799,1,1,3,4]]]],[14037,14182,15414,20416]]],["Higgaion",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14037]]],["device",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20416]]],["meditation",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14182]]],["sound",[1,1,[[18,1,1,0,1,[[569,1,1,0,1]]]],[15414]]]]},{"k":"H1903","v":[["directly",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21564]]]]},{"k":"H1904","v":[["Hagar",[12,10,[[0,12,10,0,10,[[15,7,6,0,6],[20,4,3,6,9],[24,1,1,9,10]]]],[382,384,385,389,396,397,522,527,530,670]]]]},{"k":"H1905","v":[["*",[6,6,[[12,5,5,0,5,[[342,3,3,0,3],[348,1,1,3,4],[364,1,1,4,5]]],[18,1,1,5,6,[[560,1,1,5,6]]]],[10438,10447,10448,10711,11140,15247]]],["Hagarenes",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15247]]],["Hagarites",[3,3,[[12,3,3,0,3,[[342,3,3,0,3]]]],[10438,10447,10448]]],["Hagerite",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11140]]],["Haggeri",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10711]]]]},{"k":"H1906","v":[["again",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20584]]]]},{"k":"H1907","v":[["counsellors",[4,4,[[26,4,4,0,4,[[852,2,2,0,2],[853,1,1,2,3],[855,1,1,3,4]]]],[21831,21834,21873,21912]]]]},{"k":"H1908","v":[["Hadad",[12,11,[[0,2,2,0,2,[[35,2,2,0,2]]],[10,6,5,2,7,[[301,6,5,2,7]]],[12,4,4,7,11,[[338,4,4,7,11]]]],[1075,1076,9122,9125,9127,9129,9133,10298,10299,10302,10303]]]]},{"k":"H1909","v":[["Hadadezer",[9,8,[[9,8,7,0,7,[[274,8,7,0,7]]],[10,1,1,7,8,[[301,1,1,7,8]]]],[8212,8214,8216,8217,8218,8219,8221,9131]]]]},{"k":"H1910","v":[["Hadadrimmon",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23056]]]]},{"k":"H1911","v":[["put",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17892]]]]},{"k":"H1912","v":[["+",[2,2,[[16,2,2,0,2,[[426,1,1,0,1],[433,1,1,1,2]]]],[12703,12826]]]]},{"k":"H1913","v":[["Hadoram",[4,4,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,2,2,1,3,[[338,1,1,1,2],[355,1,1,2,3]]],[13,1,1,3,4,[[376,1,1,3,4]]]],[261,10273,10900,11413]]]]},{"k":"H1914","v":[["Hiddai",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8683]]]]},{"k":"H1915","v":[["down",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13876]]]]},{"k":"H1916","v":[["+",[6,6,[[12,1,1,0,1,[[365,1,1,0,1]]],[18,3,3,1,4,[[576,1,1,1,2],[587,1,1,2,3],[609,1,1,3,4]]],[22,1,1,4,5,[[744,1,1,4,5]]],[24,1,1,5,6,[[798,1,1,5,6]]]],[11145,15504,15787,16158,18923,20333]]]]},{"k":"H1917","v":[["pieces",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21763,21836]]]]},{"k":"H1918","v":[["*",[6,6,[[15,1,1,0,1,[[420,1,1,0,1]]],[22,2,2,1,3,[[719,1,1,1,2],[733,1,1,2,3]]],[37,3,3,3,6,[[911,3,3,3,6]]]],[12508,18470,18753,22886,22888,22889]]],["myrtle",[2,2,[[15,1,1,0,1,[[420,1,1,0,1]]],[22,1,1,1,2,[[719,1,1,1,2]]]],[12508,18470]]],["tree",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18753]]],["trees",[3,3,[[37,3,3,0,3,[[911,3,3,0,3]]]],[22886,22888,22889]]]]},{"k":"H1919","v":[["Hadassah",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12731]]]]},{"k":"H1920","v":[["*",[11,11,[[3,2,2,0,2,[[151,2,2,0,2]]],[4,2,2,2,4,[[158,1,1,2,3],[161,1,1,3,4]]],[5,1,1,4,5,[[209,1,1,4,5]]],[11,1,1,5,6,[[316,1,1,5,6]]],[17,1,1,6,7,[[453,1,1,6,7]]],[19,1,1,7,8,[[637,1,1,7,8]]],[22,1,1,8,9,[[700,1,1,8,9]]],[23,1,1,9,10,[[790,1,1,9,10]]],[25,1,1,10,11,[[835,1,1,10,11]]]],[4865,4867,5105,5161,6465,9630,13294,16659,18071,20060,21334]]],["+",[2,2,[[4,2,2,0,2,[[158,1,1,0,1],[161,1,1,1,2]]]],[5105,5161]]],["away",[2,2,[[11,1,1,0,1,[[316,1,1,0,1]]],[19,1,1,1,2,[[637,1,1,1,2]]]],[9630,16659]]],["drive",[2,2,[[22,1,1,0,1,[[700,1,1,0,1]]],[23,1,1,1,2,[[790,1,1,1,2]]]],[18071,20060]]],["driven",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13294]]],["expel",[1,1,[[5,1,1,0,1,[[209,1,1,0,1]]]],[6465]]],["thrust",[3,3,[[3,2,2,0,2,[[151,2,2,0,2]]],[25,1,1,2,3,[[835,1,1,2,3]]]],[4865,4867,21334]]]]},{"k":"H1921","v":[["*",[7,7,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,2,2,1,3,[[108,2,2,1,3]]],[19,1,1,3,4,[[652,1,1,3,4]]],[22,2,2,4,6,[[723,1,1,4,5],[741,1,1,5,6]]],[24,1,1,6,7,[[801,1,1,6,7]]]],[2147,3296,3313,17119,18563,18867,20454]]],["+",[2,2,[[19,1,1,0,1,[[652,1,1,0,1]]],[22,1,1,1,2,[[723,1,1,1,2]]]],[17119,18563]]],["countenance",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2147]]],["glorious",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18867]]],["honour",[2,2,[[2,2,2,0,2,[[108,2,2,0,2]]]],[3296,3313]]],["honoured",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20454]]]]},{"k":"H1922","v":[["*",[3,3,[[26,3,3,0,3,[[853,2,2,0,2],[854,1,1,2,3]]]],[21871,21874,21897]]],["glorified",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21897]]],["honour",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21874]]],["honoured",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21871]]]]},{"k":"H1923","v":[["*",[3,3,[[26,3,3,0,3,[[853,2,2,0,2],[854,1,1,2,3]]]],[21867,21873,21892]]],["honour",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[854,1,1,1,2]]]],[21873,21892]]],["majesty",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21867]]]]},{"k":"H1924","v":[["Hadar",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1079]]]]},{"k":"H1925","v":[["glory",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22056]]]]},{"k":"H1926","v":[["*",[30,29,[[2,1,1,0,1,[[112,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[17,1,1,3,4,[[475,1,1,3,4]]],[18,13,13,4,17,[[485,1,1,4,5],[498,1,1,5,6],[506,1,1,6,7],[522,2,2,7,9],[567,1,1,9,10],[573,1,1,10,11],[581,1,1,11,12],[587,1,1,12,13],[588,1,1,13,14],[622,2,2,14,16],[626,1,1,16,17]]],[19,2,2,17,19,[[647,1,1,17,18],[658,1,1,18,19]]],[22,7,6,19,25,[[680,3,3,19,22],[683,1,1,22,23],[713,2,1,23,24],[731,1,1,24,25]]],[24,1,1,25,26,[[797,1,1,25,26]]],[25,2,2,26,28,[[817,1,1,26,27],[828,1,1,27,28]]],[32,1,1,28,29,[[894,1,1,28,29]]]],[3442,5827,10847,13874,14017,14196,14312,14600,14601,15394,15471,15572,15789,15796,16325,16332,16394,16983,17309,17695,17704,17706,17753,18322,18713,20316,20776,21131,22604]]],["+",[3,3,[[22,3,3,0,3,[[680,3,3,0,3]]]],[17695,17704,17706]]],["beauties",[1,1,[[18,1,1,0,1,[[587,1,1,0,1]]]],[15789]]],["beauty",[3,3,[[17,1,1,0,1,[[475,1,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]],[24,1,1,2,3,[[797,1,1,2,3]]]],[13874,16983,20316]]],["comeliness",[3,3,[[22,1,1,0,1,[[731,1,1,0,1]]],[25,2,2,1,3,[[817,1,1,1,2],[828,1,1,2,3]]]],[18713,20776,21131]]],["excellency",[2,1,[[22,2,1,0,1,[[713,2,1,0,1]]]],[18322]]],["glorious",[1,1,[[18,1,1,0,1,[[588,1,1,0,1]]]],[15796]]],["glory",[4,4,[[4,1,1,0,1,[[185,1,1,0,1]]],[18,1,1,1,2,[[567,1,1,1,2]]],[22,1,1,2,3,[[683,1,1,2,3]]],[32,1,1,3,4,[[894,1,1,3,4]]]],[5827,15394,17753,22604]]],["goodly",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3442]]],["honour",[5,5,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,3,3,1,4,[[485,1,1,1,2],[622,1,1,2,3],[626,1,1,3,4]]],[19,1,1,4,5,[[658,1,1,4,5]]]],[10847,14017,16325,16394,17309]]],["majesty",[7,7,[[18,7,7,0,7,[[498,1,1,0,1],[506,1,1,1,2],[522,2,2,2,4],[573,1,1,4,5],[581,1,1,5,6],[622,1,1,6,7]]]],[14196,14312,14600,14601,15471,15572,16332]]]]},{"k":"H1927","v":[["*",[5,5,[[12,1,1,0,1,[[353,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]],[18,2,2,2,4,[[506,1,1,2,3],[573,1,1,3,4]]],[19,1,1,4,5,[[641,1,1,4,5]]]],[10849,11608,14310,15474,16800]]],["beauty",[4,4,[[12,1,1,0,1,[[353,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]],[18,2,2,2,4,[[506,1,1,2,3],[573,1,1,3,4]]]],[10849,11608,14310,15474]]],["honour",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16800]]]]},{"k":"H1928","v":[["Hadarezer",[12,10,[[9,3,2,0,2,[[276,3,2,0,2]]],[12,9,8,2,10,[[355,7,6,2,8],[356,2,2,8,10]]]],[8256,8259,10893,10895,10897,10898,10899,10900,10923,10926]]]]},{"k":"H1929","v":[["Woe",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21206]]]]},{"k":"H1930","v":[["*",[2,1,[[29,2,1,0,1,[[883,2,1,0,1]]]],[22439]]],["Alas",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22439]]],["alas",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22439]]]]},{"k":"H1931","v":[["*",[1716,1553,[[0,167,151,0,151,[[1,5,5,0,5],[2,5,5,5,10],[3,5,5,10,15],[5,1,1,15,16],[9,5,5,16,21],[11,3,3,21,24],[12,1,1,24,25],[13,9,9,25,34],[14,2,2,34,36],[15,1,1,36,37],[16,1,1,37,38],[17,3,3,38,41],[18,8,6,41,47],[19,11,7,47,54],[20,4,4,54,58],[21,3,3,58,61],[22,3,3,61,64],[23,6,6,64,70],[24,2,2,70,72],[25,8,5,72,77],[26,2,2,77,79],[27,2,2,79,81],[28,5,4,81,85],[29,3,3,85,88],[30,3,3,88,91],[31,8,6,91,97],[32,2,2,97,99],[33,2,2,99,101],[34,6,5,101,106],[35,4,4,106,110],[36,3,3,110,113],[37,8,7,113,120],[38,4,4,120,124],[39,1,1,124,125],[40,4,3,125,128],[41,4,4,128,132],[42,2,2,132,134],[43,5,5,134,139],[44,1,1,139,140],[46,2,2,140,142],[47,5,4,142,146],[48,3,3,146,149],[49,2,2,149,151]]],[1,67,59,151,210,[[50,4,3,151,154],[51,1,1,154,155],[52,1,1,155,156],[53,4,2,156,158],[54,1,1,158,159],[55,2,2,159,161],[57,2,2,161,163],[58,1,1,163,164],[59,1,1,164,165],[61,10,9,165,174],[62,3,3,174,177],[63,1,1,177,178],[65,6,4,178,182],[67,2,2,182,184],[70,3,3,184,187],[71,4,3,187,190],[78,7,7,190,197],[79,2,2,197,199],[80,4,3,199,202],[81,3,3,202,205],[83,3,3,205,208],[84,1,1,208,209],[88,1,1,209,210]]],[2,146,128,210,338,[[90,2,2,210,212],[91,2,2,212,214],[92,2,2,214,216],[93,2,2,216,218],[94,7,7,218,225],[95,5,5,225,230],[96,6,6,230,236],[97,2,2,236,238],[99,3,3,238,241],[100,12,7,241,248],[102,37,28,248,276],[103,4,3,276,279],[104,5,4,279,283],[105,1,1,283,284],[106,4,3,284,287],[107,11,11,287,298],[108,3,3,298,301],[109,9,8,301,309],[110,4,4,309,313],[111,5,5,313,318],[112,5,5,318,323],[113,2,2,323,325],[114,7,7,325,332],[116,6,6,332,338]]],[3,73,62,338,400,[[121,8,6,338,344],[122,3,3,344,347],[125,4,2,347,349],[127,3,3,349,352],[128,1,1,352,353],[129,9,6,353,359],[130,3,3,359,362],[131,4,3,362,365],[132,2,2,365,367],[134,3,3,367,370],[135,6,5,370,375],[137,3,3,375,378],[138,7,6,378,384],[139,2,2,384,386],[140,1,1,386,387],[141,1,1,387,388],[142,1,1,388,389],[143,2,2,389,391],[148,1,1,391,392],[149,2,2,392,394],[151,7,6,394,400]]],[4,116,98,400,498,[[153,9,8,400,408],[154,3,3,408,411],[155,12,11,411,422],[156,5,5,422,427],[157,1,1,427,428],[159,4,4,428,432],[160,1,1,432,433],[161,6,4,433,437],[162,5,4,437,441],[164,1,1,441,442],[165,5,3,442,445],[166,4,3,445,448],[169,6,5,448,453],[170,4,4,453,457],[171,3,3,457,460],[172,2,1,460,461],[173,5,5,461,466],[174,3,3,466,469],[175,1,1,469,470],[176,4,4,470,474],[179,1,1,474,475],[180,2,1,475,476],[181,4,4,476,480],[182,5,4,480,484],[183,12,8,484,492],[184,8,6,492,498]]],[5,73,64,498,562,[[188,5,5,498,503],[189,1,1,503,504],[190,2,2,504,506],[191,2,2,506,508],[192,3,2,508,510],[193,2,2,510,512],[194,7,6,512,518],[195,1,1,518,519],[196,7,6,519,525],[197,2,2,525,527],[199,1,1,527,528],[200,3,2,528,530],[201,9,9,530,539],[203,5,2,539,541],[204,3,3,541,544],[206,3,3,544,547],[207,1,1,547,548],[208,7,6,548,554],[209,3,3,554,557],[210,6,5,557,562]]],[6,79,72,562,634,[[211,1,1,562,563],[212,2,2,563,565],[213,8,7,565,572],[214,7,6,572,578],[215,2,2,578,580],[216,6,6,580,586],[217,4,3,586,589],[218,2,2,589,591],[219,6,6,591,597],[220,2,2,597,599],[221,6,6,599,605],[222,1,1,605,606],[223,6,6,606,612],[224,4,2,612,614],[225,2,2,614,616],[226,2,2,616,618],[227,2,1,618,619],[228,5,4,619,623],[229,3,3,623,626],[230,6,6,626,632],[231,2,2,632,634]]],[7,10,9,634,643,[[232,4,4,634,638],[233,3,2,638,640],[234,2,2,640,642],[235,1,1,642,643]]],[8,90,83,643,726,[[236,4,4,643,647],[238,3,3,647,650],[239,2,2,650,652],[241,4,3,652,655],[242,2,2,655,657],[243,2,1,657,658],[244,3,3,658,661],[245,3,3,661,664],[247,1,1,664,665],[249,5,5,665,670],[250,1,1,670,671],[251,3,2,671,673],[252,4,4,673,677],[253,6,6,677,683],[254,9,8,683,691],[255,6,5,691,696],[256,3,3,696,699],[257,5,4,699,703],[258,2,2,703,705],[259,2,2,705,707],[260,6,6,707,713],[262,3,3,713,716],[263,4,3,716,719],[265,5,5,719,724],[266,2,2,724,726]]],[9,54,49,726,775,[[268,3,3,726,729],[269,1,1,729,730],[270,2,2,730,732],[271,3,3,732,735],[272,2,2,735,737],[273,4,4,737,741],[275,3,2,741,743],[277,2,2,743,745],[278,1,1,745,746],[279,3,3,746,749],[280,3,2,749,751],[281,1,1,751,752],[283,6,6,752,758],[284,2,2,758,760],[285,5,4,760,764],[286,1,1,764,765],[287,2,2,765,767],[288,1,1,767,768],[289,7,5,768,773],[290,2,2,773,775]]],[10,69,60,775,835,[[291,7,7,775,782],[292,3,2,782,784],[293,4,3,784,787],[294,2,2,787,789],[295,1,1,789,790],[296,3,3,790,793],[297,1,1,793,794],[298,5,5,794,799],[300,2,2,799,801],[301,5,4,801,805],[302,1,1,805,806],[303,2,2,806,808],[304,6,5,808,813],[306,2,2,813,815],[307,3,2,815,817],[308,5,3,817,820],[309,4,3,820,823],[310,8,7,823,830],[311,1,1,830,831],[312,4,4,831,835]]],[11,53,53,835,888,[[313,1,1,835,836],[314,4,4,836,840],[315,2,2,840,842],[316,2,2,842,844],[317,4,4,844,848],[318,4,4,848,852],[319,1,1,852,853],[320,6,6,853,859],[321,3,3,859,862],[322,1,1,862,863],[326,5,5,863,868],[327,2,2,868,870],[328,1,1,870,871],[329,1,1,871,872],[330,6,6,872,878],[331,2,2,878,880],[332,1,1,880,881],[334,1,1,881,882],[335,1,1,882,883],[336,2,2,883,885],[337,3,3,885,888]]],[12,52,48,888,936,[[338,2,2,888,890],[339,4,3,890,893],[341,1,1,893,894],[342,3,3,894,897],[343,1,1,897,898],[344,1,1,898,899],[345,2,2,899,901],[346,1,1,901,902],[347,1,1,902,903],[348,11,9,903,912],[349,1,1,912,913],[350,2,2,913,915],[351,1,1,915,916],[352,1,1,916,917],[353,3,3,917,920],[354,3,3,920,923],[357,1,1,923,924],[358,3,3,924,927],[359,3,2,927,929],[360,1,1,929,930],[362,1,1,930,931],[363,1,1,931,932],[364,1,1,932,933],[365,1,1,933,934],[366,2,2,934,936]]],[13,55,52,936,988,[[367,1,1,936,937],[370,1,1,937,938],[371,2,2,938,940],[372,1,1,940,941],[373,1,1,941,942],[375,2,2,942,944],[376,1,1,944,945],[379,1,1,945,946],[381,1,1,946,947],[382,2,2,947,949],[384,4,4,949,953],[386,4,4,953,957],[387,3,3,957,960],[388,5,4,960,964],[391,2,2,964,966],[392,5,4,966,970],[393,3,2,970,972],[394,3,3,972,975],[395,1,1,975,976],[396,1,1,976,977],[398,4,4,977,981],[399,2,2,981,983],[400,2,2,983,985],[401,2,2,985,987],[402,1,1,987,988]]],[14,11,10,988,998,[[403,3,3,988,991],[409,4,3,991,994],[410,1,1,994,995],[412,3,3,995,998]]],[15,22,21,998,1019,[[413,1,1,998,999],[414,2,2,999,1001],[415,3,3,1001,1004],[416,2,2,1004,1006],[418,4,4,1006,1010],[419,1,1,1010,1011],[420,3,2,1011,1013],[421,1,1,1013,1014],[424,3,3,1014,1017],[425,2,2,1017,1019]]],[16,25,18,1019,1037,[[426,3,3,1019,1022],[427,4,3,1022,1025],[428,5,3,1025,1028],[430,1,1,1028,1029],[431,1,1,1029,1030],[432,2,1,1030,1031],[433,5,3,1031,1034],[434,4,3,1034,1037]]],[17,45,43,1037,1080,[[436,2,2,1037,1039],[437,1,1,1039,1040],[438,3,3,1040,1043],[440,2,2,1043,1045],[443,2,2,1045,1047],[444,3,2,1047,1049],[446,1,1,1049,1050],[448,3,3,1050,1053],[450,3,3,1053,1056],[452,1,1,1056,1057],[456,3,3,1057,1060],[457,1,1,1060,1061],[458,2,2,1061,1063],[459,1,1,1063,1064],[463,5,5,1064,1069],[466,5,4,1069,1073],[467,1,1,1073,1074],[469,1,1,1074,1075],[472,2,2,1075,1077],[474,1,1,1077,1078],[475,1,1,1078,1079],[476,1,1,1079,1080]]],[18,54,51,1080,1131,[[486,1,1,1080,1081],[495,1,1,1081,1082],[496,1,1,1082,1083],[501,3,2,1083,1085],[502,2,2,1085,1087],[505,1,1,1087,1088],[510,3,2,1088,1090],[514,1,1,1090,1091],[516,1,1,1091,1092],[521,1,1,1092,1093],[522,1,1,1093,1094],[525,1,1,1094,1095],[527,1,1,1095,1096],[532,1,1,1096,1097],[537,1,1,1097,1098],[539,2,2,1098,1100],[545,1,1,1100,1101],[550,1,1,1101,1102],[554,1,1,1102,1103],[555,1,1,1103,1104],[558,1,1,1104,1105],[564,1,1,1105,1106],[566,1,1,1106,1107],[568,1,1,1107,1108],[572,2,2,1108,1110],[573,1,1,1110,1111],[576,4,4,1111,1115],[577,2,1,1115,1116],[578,1,1,1116,1117],[579,1,1,1117,1118],[580,1,1,1118,1119],[582,1,1,1119,1120],[585,1,1,1120,1121],[592,3,3,1121,1124],[595,1,1,1124,1125],[596,2,2,1125,1127],[607,1,1,1127,1128],[623,1,1,1128,1129],[625,1,1,1129,1130],[626,1,1,1130,1131]]],[19,35,34,1131,1165,[[630,5,5,1131,1136],[631,1,1,1136,1137],[632,1,1,1137,1138],[633,2,2,1138,1140],[634,2,2,1140,1142],[637,2,2,1142,1144],[638,2,2,1144,1146],[640,1,1,1146,1147],[645,2,2,1147,1149],[646,1,1,1149,1150],[648,2,2,1150,1152],[649,2,2,1152,1154],[650,4,4,1154,1158],[651,1,1,1158,1159],[655,5,4,1159,1163],[657,1,1,1163,1164],[658,1,1,1164,1165]]],[20,33,30,1165,1195,[[659,5,4,1165,1169],[660,3,3,1169,1172],[661,7,6,1172,1178],[662,2,2,1178,1180],[663,3,3,1180,1183],[664,3,3,1183,1186],[665,3,3,1186,1189],[666,1,1,1189,1190],[667,4,3,1190,1193],[668,2,2,1193,1195]]],[21,4,2,1195,1197,[[676,2,1,1195,1196],[678,2,1,1196,1197]]],[22,104,97,1197,1294,[[680,4,4,1197,1201],[681,2,2,1201,1203],[682,2,2,1203,1205],[683,1,1,1205,1206],[685,5,5,1206,1211],[686,2,1,1211,1212],[687,2,1,1212,1213],[688,3,3,1213,1216],[689,2,2,1216,1218],[690,2,2,1218,1220],[692,1,1,1220,1221],[695,3,3,1221,1224],[696,3,2,1224,1226],[697,8,7,1226,1233],[698,2,2,1233,1235],[700,4,4,1235,1239],[701,1,1,1239,1240],[702,1,1,1240,1241],[703,1,1,1241,1242],[704,1,1,1242,1243],[705,5,5,1243,1248],[706,1,1,1248,1249],[707,2,2,1249,1251],[708,3,3,1251,1254],[709,2,2,1254,1256],[710,1,1,1256,1257],[711,2,2,1257,1259],[712,3,2,1259,1261],[713,2,2,1261,1263],[714,1,1,1263,1264],[715,1,1,1264,1265],[716,2,2,1265,1267],[717,1,1,1267,1268],[719,2,2,1268,1270],[720,2,2,1270,1272],[721,3,3,1272,1275],[723,3,2,1275,1277],[724,1,1,1277,1278],[725,1,1,1278,1279],[726,1,1,1279,1280],[728,1,1,1280,1281],[729,3,3,1281,1284],[730,2,1,1284,1285],[731,5,5,1285,1290],[737,1,1,1290,1291],[741,3,3,1291,1294]]],[23,75,73,1294,1367,[[746,1,1,1294,1295],[747,3,3,1295,1298],[748,2,2,1298,1300],[749,3,2,1300,1302],[750,2,2,1302,1304],[752,1,1,1304,1305],[754,2,2,1305,1307],[756,1,1,1307,1308],[758,1,1,1308,1309],[762,2,2,1309,1311],[764,2,2,1311,1313],[766,3,3,1313,1316],[767,1,1,1316,1317],[769,5,5,1317,1322],[771,2,2,1322,1324],[772,2,2,1324,1326],[773,1,1,1326,1327],[774,5,4,1327,1331],[775,1,1,1331,1332],[776,3,3,1332,1335],[777,2,2,1335,1337],[781,2,2,1337,1339],[782,3,3,1339,1342],[783,3,3,1342,1345],[785,2,2,1345,1347],[789,1,1,1347,1348],[790,1,1,1348,1349],[792,3,3,1349,1352],[793,3,3,1352,1355],[794,7,7,1355,1362],[795,3,3,1362,1365],[796,2,2,1365,1367]]],[24,4,4,1367,1371,[[797,3,3,1367,1370],[799,1,1,1370,1371]]],[25,84,80,1371,1451,[[802,3,3,1371,1374],[803,1,1,1374,1375],[804,4,4,1375,1379],[805,2,2,1379,1381],[811,2,2,1381,1383],[812,4,4,1383,1387],[813,3,2,1387,1389],[814,1,1,1389,1390],[815,4,4,1390,1394],[817,3,3,1394,1397],[818,1,1,1397,1398],[819,6,6,1398,1404],[820,1,1,1404,1405],[821,3,3,1405,1408],[822,6,4,1408,1412],[823,1,1,1412,1413],[824,3,3,1413,1416],[825,2,2,1416,1418],[827,1,1,1418,1419],[829,1,1,1419,1420],[830,1,1,1420,1421],[831,3,3,1421,1424],[832,1,1,1424,1425],[833,1,1,1425,1426],[834,6,6,1426,1432],[835,1,1,1432,1433],[838,1,1,1433,1434],[839,6,6,1434,1440],[840,4,3,1440,1443],[841,1,1,1443,1444],[845,2,2,1444,1446],[846,3,3,1446,1449],[847,2,2,1449,1451]]],[26,6,4,1451,1455,[[859,1,1,1451,1452],[860,2,2,1452,1454],[861,3,1,1454,1455]]],[27,21,18,1455,1473,[[862,1,1,1455,1456],[863,6,6,1456,1462],[866,1,1,1462,1463],[867,1,1,1463,1464],[868,4,3,1464,1467],[869,2,1,1467,1468],[871,1,1,1468,1469],[872,1,1,1469,1470],[874,4,3,1470,1473]]],[28,3,3,1473,1476,[[877,1,1,1473,1474],[878,2,2,1474,1476]]],[29,14,12,1476,1488,[[879,1,1,1476,1477],[880,2,2,1477,1479],[883,2,1,1479,1480],[885,5,4,1480,1484],[886,3,3,1484,1487],[887,1,1,1487,1488]]],[30,1,1,1488,1489,[[888,1,1,1488,1489]]],[31,1,1,1489,1490,[[889,1,1,1489,1490]]],[32,11,11,1490,1501,[[893,1,1,1490,1491],[894,2,2,1491,1493],[895,1,1,1493,1494],[896,2,2,1494,1496],[897,1,1,1496,1497],[899,4,4,1497,1501]]],[33,3,3,1501,1504,[[900,2,2,1501,1503],[902,1,1,1503,1504]]],[34,5,3,1504,1507,[[903,3,2,1504,1506],[904,2,1,1506,1507]]],[35,8,8,1507,1515,[[906,4,4,1507,1511],[908,4,4,1511,1515]]],[36,2,2,1515,1517,[[910,2,2,1515,1517]]],[37,37,32,1517,1549,[[911,2,2,1517,1519],[912,1,1,1519,1520],[913,2,2,1520,1522],[915,1,1,1522,1523],[916,3,2,1523,1525],[919,4,4,1525,1529],[921,2,1,1529,1530],[922,7,6,1530,1536],[923,6,4,1536,1540],[924,9,9,1540,1549]]],[38,4,4,1549,1553,[[926,3,3,1549,1552],[927,1,1,1552,1553]]]],[41,42,43,44,49,61,67,70,71,75,83,99,100,101,105,140,242,243,245,246,255,312,316,317,319,338,339,343,344,348,349,351,353,354,362,378,393,411,425,432,434,477,487,490,492,494,495,497,498,500,502,507,508,511,526,530,535,544,561,567,571,573,586,590,598,606,635,645,653,656,679,687,699,701,704,716,724,758,760,784,792,797,804,807,820,846,863,865,889,893,894,930,941,946,949,950,959,963,976,994,999,1017,1030,1031,1033,1038,1041,1059,1064,1083,1086,1110,1115,1120,1130,1131,1133,1135,1140,1144,1152,1155,1171,1172,1182,1206,1223,1226,1258,1266,1279,1290,1302,1322,1329,1334,1338,1341,1344,1384,1437,1438,1458,1465,1470,1471,1486,1492,1493,1520,1528,1538,1542,1548,1556,1587,1615,1617,1638,1681,1682,1729,1732,1776,1790,1818,1820,1827,1831,1832,1835,1843,1846,1858,1869,1875,1884,1919,1962,1970,1976,1978,2004,2013,2080,2081,2098,2122,2128,2140,2350,2354,2357,2358,2361,2364,2370,2392,2414,2433,2434,2437,2447,2460,2466,2499,2505,2506,2565,2669,2758,2762,2768,2777,2779,2785,2816,2819,2832,2833,2834,2839,2841,2842,2849,2854,2858,2866,2874,2878,2880,2884,2885,2899,2900,2906,2938,2945,2980,2989,2994,3001,3002,3003,3004,3009,3034,3035,3055,3058,3060,3062,3063,3065,3067,3069,3072,3074,3075,3077,3079,3080,3082,3088,3089,3091,3092,3093,3094,3096,3098,3101,3103,3104,3107,3109,3124,3132,3155,3170,3171,3191,3193,3232,3239,3244,3246,3258,3259,3262,3263,3264,3265,3266,3267,3268,3273,3274,3288,3289,3301,3321,3322,3323,3324,3332,3335,3336,3339,3352,3353,3354,3358,3372,3376,3380,3381,3399,3405,3430,3432,3434,3438,3455,3456,3479,3480,3481,3485,3503,3510,3523,3574,3578,3580,3593,3596,3603,3798,3805,3806,3807,3810,3823,3831,3834,3843,3971,3978,4054,4056,4058,4066,4093,4094,4095,4102,4106,4107,4109,4149,4153,4178,4183,4184,4201,4234,4273,4276,4288,4298,4301,4302,4304,4309,4356,4366,4373,4378,4379,4380,4381,4387,4397,4422,4435,4470,4486,4498,4557,4575,4728,4796,4800,4861,4862,4863,4864,4866,4878,4901,4908,4910,4911,4922,4928,4930,4936,4958,4970,4972,4976,4979,4983,4986,4987,4988,4993,4996,4997,4998,5003,5010,5018,5039,5043,5052,5058,5120,5127,5136,5137,5155,5160,5170,5176,5177,5187,5194,5196,5207,5243,5275,5277,5287,5298,5300,5318,5365,5369,5374,5376,5384,5389,5390,5404,5406,5410,5411,5412,5447,5450,5451,5453,5464,5470,5487,5488,5494,5507,5529,5531,5532,5540,5596,5655,5692,5699,5701,5706,5719,5720,5721,5728,5731,5734,5736,5744,5745,5746,5749,5750,5762,5764,5792,5797,5802,5805,5875,5877,5880,5884,5890,5894,5924,5934,5936,5946,5966,5975,5982,6002,6011,6012,6015,6016,6027,6029,6064,6066,6071,6077,6078,6092,6099,6117,6128,6166,6196,6199,6210,6211,6212,6213,6215,6227,6251,6256,6262,6276,6293,6306,6307,6321,6376,6378,6379,6392,6446,6448,6449,6453,6454,6460,6463,6465,6470,6493,6494,6495,6501,6503,6535,6550,6555,6587,6588,6592,6595,6597,6598,6599,6601,6602,6603,6604,6620,6622,6624,6652,6676,6679,6685,6686,6689,6694,6695,6698,6703,6723,6750,6757,6772,6773,6787,6799,6802,6812,6819,6830,6850,6855,6863,6867,6868,6875,6889,6890,6893,6900,6902,6905,6912,6913,6943,6946,6969,6980,6987,6994,7005,7021,7023,7033,7034,7040,7069,7075,7080,7089,7093,7100,7116,7126,7128,7130,7133,7145,7155,7169,7174,7176,7207,7215,7222,7225,7240,7278,7288,7294,7309,7315,7340,7346,7347,7358,7362,7387,7404,7415,7417,7427,7437,7440,7478,7526,7531,7532,7539,7545,7589,7607,7608,7623,7641,7651,7655,7678,7685,7691,7692,7695,7703,7715,7716,7720,7723,7724,7728,7729,7730,7756,7759,7761,7763,7766,7779,7781,7782,7796,7804,7805,7809,7832,7838,7845,7849,7864,7878,7881,7886,7897,7898,7932,7933,7936,7950,7956,7967,7987,7988,7998,8003,8009,8014,8015,8065,8066,8078,8118,8125,8127,8139,8140,8152,8165,8166,8184,8193,8194,8208,8231,8240,8263,8271,8309,8319,8325,8337,8375,8383,8419,8451,8454,8458,8459,8462,8473,8485,8486,8513,8514,8520,8543,8562,8596,8600,8633,8661,8663,8671,8673,8674,8705,8710,8723,8730,8734,8741,8747,8752,8762,8778,8792,8819,8820,8843,8859,8868,8883,8897,8913,8934,8948,8986,8987,9004,9049,9050,9089,9092,9122,9125,9136,9137,9153,9187,9210,9219,9220,9221,9223,9235,9292,9299,9332,9336,9365,9368,9380,9391,9395,9406,9420,9424,9436,9440,9447,9448,9449,9453,9505,9512,9513,9515,9541,9563,9565,9569,9574,9582,9593,9608,9612,9654,9662,9665,9672,9679,9687,9704,9706,9714,9729,9732,9748,9749,9754,9756,9770,9790,9792,9805,9903,9907,9917,9918,9921,9937,9960,9969,10022,10028,10032,10033,10034,10040,10046,10096,10098,10110,10159,10180,10212,10214,10223,10230,10241,10262,10279,10327,10332,10348,10396,10429,10434,10436,10464,10566,10582,10587,10646,10664,10677,10678,10684,10685,10686,10693,10695,10696,10698,10735,10771,10772,10785,10813,10827,10834,10845,10866,10875,10876,10932,10951,10962,10963,10973,10974,10996,11055,11103,11115,11149,11185,11186,11201,11267,11270,11271,11291,11332,11373,11376,11397,11471,11501,11516,11519,11549,11566,11573,11576,11589,11612,11613,11622,11627,11634,11635,11647,11650,11653,11655,11724,11725,11733,11734,11752,11755,11758,11760,11767,11780,11786,11794,11830,11884,11887,11901,11905,11914,11921,11936,11955,11982,11983,12016,12018,12019,12020,12179,12181,12182,12235,12260,12261,12275,12298,12325,12327,12339,12341,12342,12375,12381,12402,12411,12414,12419,12422,12502,12510,12517,12632,12667,12668,12672,12692,12703,12713,12722,12731,12738,12740,12751,12754,12760,12788,12794,12812,12818,12826,12829,12835,12845,12858,12870,12872,12899,12908,12910,12911,12969,12978,13045,13048,13073,13075,13119,13169,13172,13181,13212,13225,13226,13263,13377,13386,13387,13407,13425,13432,13454,13507,13518,13527,13528,13532,13592,13599,13600,13616,13629,13712,13781,13790,13864,13883,13922,14029,14148,14173,14243,14251,14262,14266,14307,14375,14386,14455,14516,14592,14608,14648,14674,14754,14819,14829,14833,14935,15036,15103,15151,15221,15306,15352,15398,15459,15461,15469,15501,15502,15504,15505,15511,15519,15548,15563,15613,15755,15839,15840,15841,15892,15995,15996,16148,16345,16376,16394,16461,16470,16473,16484,16489,16503,16540,16562,16572,16586,16598,16678,16680,16713,16716,16760,16910,16914,16946,16997,17013,17024,17037,17047,17051,17055,17072,17091,17202,17206,17220,17222,17256,17314,17320,17324,17325,17328,17334,17355,17357,17368,17372,17373,17374,17380,17381,17385,17389,17403,17411,17415,17418,17419,17427,17431,17452,17455,17473,17484,17488,17490,17496,17503,17623,17649,17696,17702,17705,17707,17714,17725,17734,17735,17769,17796,17800,17802,17803,17805,17820,17844,17857,17870,17877,17894,17895,17901,17904,17952,17987,17990,17992,17999,18004,18020,18021,18022,18023,18025,18027,18028,18031,18035,18060,18064,18072,18077,18092,18116,18127,18131,18152,18153,18162,18163,18164,18169,18204,18211,18226,18240,18250,18252,18257,18266,18295,18301,18319,18320,18324,18328,18337,18390,18405,18409,18413,18455,18458,18488,18502,18515,18518,18530,18574,18579,18590,18609,18626,18671,18682,18683,18685,18702,18715,18716,18718,18722,18723,18816,18871,18875,18876,18979,19003,19008,19019,19036,19038,19070,19073,19095,19112,19154,19211,19217,19266,19315,19388,19392,19423,19438,19458,19470,19482,19518,19535,19546,19547,19565,19567,19603,19604,19619,19635,19663,19674,19675,19684,19688,19692,19732,19739,19774,19776,19790,19876,19887,19899,19900,19902,19933,19939,19940,19964,19966,20044,20055,20091,20106,20121,20139,20149,20153,20169,20170,20181,20186,20191,20196,20204,20218,20223,20231,20280,20288,20313,20314,20318,20364,20466,20477,20492,20502,20520,20521,20522,20523,20532,20541,20648,20653,20658,20662,20666,20670,20692,20707,20718,20739,20740,20748,20750,20776,20808,20810,20833,20853,20858,20860,20866,20869,20876,20895,20901,20910,20944,20955,20956,20958,20967,21000,21045,21046,21050,21082,21083,21117,21175,21204,21213,21215,21222,21248,21264,21285,21286,21288,21289,21293,21299,21336,21398,21433,21435,21439,21442,21443,21444,21456,21459,21470,21480,21600,21602,21631,21647,21652,21658,21671,22019,22042,22044,22082,22099,22107,22113,22121,22123,22126,22128,22165,22168,22184,22186,22187,22200,22227,22250,22267,22279,22281,22324,22344,22361,22379,22388,22395,22436,22466,22469,22470,22477,22484,22490,22494,22506,22518,22541,22592,22598,22599,22612,22621,22626,22643,22667,22675,22676,22682,22686,22693,22722,22738,22741,22767,22796,22797,22799,22802,22831,22836,22839,22840,22861,22878,22885,22886,22910,22921,22922,22942,22957,22960,23003,23006,23008,23015,23039,23048,23049,23051,23053,23054,23056,23060,23061,23063,23068,23072,23074,23075,23076,23077,23080,23081,23088,23089,23110,23117,23120,23122]]],["+",[15,14,[[0,1,1,0,1,[[43,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[2,1,1,2,3,[[109,1,1,2,3]]],[4,1,1,3,4,[[172,1,1,3,4]]],[8,3,3,4,7,[[251,1,1,4,5],[253,1,1,5,6],[265,1,1,6,7]]],[11,1,1,7,8,[[337,1,1,7,8]]],[15,1,1,8,9,[[414,1,1,8,9]]],[16,2,1,9,10,[[432,2,1,9,10]]],[17,1,1,10,11,[[463,1,1,10,11]]],[20,2,2,11,13,[[660,1,1,11,12],[665,1,1,12,13]]],[22,1,1,13,14,[[714,1,1,13,14]]]],[1329,2122,3322,5447,7608,7685,8003,10241,12325,12812,13507,17355,17455,18337]]],["He",[47,47,[[0,3,3,0,3,[[9,1,1,0,1],[19,2,2,1,3]]],[2,1,1,3,4,[[102,1,1,3,4]]],[3,1,1,4,5,[[135,1,1,4,5]]],[4,2,2,5,7,[[162,1,1,5,6],[180,1,1,6,7]]],[6,1,1,7,8,[[219,1,1,7,8]]],[8,2,2,8,10,[[254,2,2,8,10]]],[9,2,2,10,12,[[273,1,1,10,11],[289,1,1,11,12]]],[10,1,1,12,13,[[297,1,1,12,13]]],[11,6,6,13,19,[[326,3,3,13,16],[327,1,1,16,17],[330,2,2,17,19]]],[12,4,4,19,23,[[348,1,1,19,20],[353,1,1,20,21],[354,1,1,21,22],[359,1,1,22,23]]],[13,6,6,23,29,[[388,1,1,23,24],[392,2,2,24,26],[393,2,2,26,28],[395,1,1,28,29]]],[17,6,6,29,35,[[443,1,1,29,30],[444,1,1,30,31],[448,1,1,31,32],[450,1,1,32,33],[459,1,1,33,34],[475,1,1,34,35]]],[18,4,4,35,39,[[539,2,2,35,37],[566,1,1,37,38],[582,1,1,38,39]]],[19,5,5,39,44,[[632,1,1,39,40],[638,1,1,40,41],[645,1,1,41,42],[649,1,1,42,43],[655,1,1,43,44]]],[22,1,1,44,45,[[711,1,1,44,45]]],[24,1,1,45,46,[[799,1,1,45,46]]],[25,1,1,46,47,[[831,1,1,46,47]]]],[243,500,508,3096,4301,5207,5655,6757,7720,7723,8193,8663,8948,9903,9918,9921,9960,10028,10032,10686,10834,10875,10974,11647,11734,11755,11758,11760,11794,13045,13073,13169,13226,13454,13883,14829,14833,15352,15613,16540,16716,16910,17024,17222,18295,20364,21215]]],["It",[22,22,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,4,4,1,5,[[61,2,2,1,3],[65,1,1,3,4],[80,1,1,4,5]]],[2,5,5,5,10,[[94,1,1,5,6],[95,1,1,6,7],[102,1,1,7,8],[105,1,1,8,9],[112,1,1,9,10]]],[4,1,1,10,11,[[182,1,1,10,11]]],[7,1,1,11,12,[[233,1,1,11,12]]],[8,1,1,12,13,[[238,1,1,12,13]]],[10,1,1,13,14,[[303,1,1,13,14]]],[11,1,1,14,15,[[313,1,1,14,15]]],[13,1,1,15,16,[[384,1,1,15,16]]],[14,1,1,16,17,[[412,1,1,16,17]]],[17,1,1,17,18,[[463,1,1,17,18]]],[22,1,1,18,19,[[719,1,1,18,19]]],[23,1,1,19,20,[[776,1,1,19,20]]],[25,1,1,20,21,[[818,1,1,20,21]]],[37,1,1,21,22,[[923,1,1,21,22]]]],[656,1843,1858,1962,2437,2849,2858,3063,3232,3434,5720,7155,7294,9210,9541,11573,12261,13518,18458,19774,20833,23068]]],["She",[9,9,[[0,5,5,0,5,[[11,1,1,0,1],[19,2,2,1,3],[25,2,2,3,5]]],[19,4,4,5,9,[[630,2,2,5,7],[634,1,1,7,8],[650,1,1,8,9]]]],[317,497,500,699,701,16470,16473,16586,17072]]],["That",[3,3,[[0,1,1,0,1,[[41,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]],[35,1,1,2,3,[[906,1,1,2,3]]]],[1266,4958,22802]]],["These",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1681]]],["They",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22738]]],["This",[27,27,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,3,3,1,4,[[57,1,1,1,2],[65,2,2,2,4]]],[2,1,1,4,5,[[99,1,1,4,5]]],[3,1,1,5,6,[[142,1,1,5,6]]],[10,1,1,6,7,[[291,1,1,6,7]]],[11,2,2,7,9,[[321,1,1,7,8],[327,1,1,8,9]]],[12,1,1,9,10,[[364,1,1,9,10]]],[14,1,1,10,11,[[409,1,1,10,11]]],[15,1,1,11,12,[[420,1,1,11,12]]],[17,2,2,12,14,[[444,1,1,12,13],[466,1,1,13,14]]],[18,1,1,14,15,[[554,1,1,14,15]]],[23,2,2,15,17,[[773,1,1,15,16],[774,1,1,16,17]]],[25,9,9,17,26,[[802,1,1,17,18],[805,1,1,18,19],[811,2,2,19,21],[812,1,1,21,22],[820,1,1,22,23],[832,1,1,23,24],[833,1,1,24,25],[846,1,1,25,26]]],[29,1,1,26,27,[[885,1,1,26,27]]]],[1223,1729,1962,1970,2980,4498,8762,9792,9937,11115,12179,12502,13073,13616,15103,19663,19684,20492,20532,20648,20653,20666,20895,21248,21264,21631,22470]]],["Which",[2,2,[[12,1,1,0,1,[[363,1,1,0,1]]],[18,1,1,1,2,[[496,1,1,1,2]]]],[11103,14173]]],["be",[1,1,[[5,1,1,0,1,[[203,1,1,0,1]]]],[6293]]],["beginning",[2,2,[[22,2,2,0,2,[[696,2,2,0,2]]]],[17999,18004]]],["he",[574,529,[[0,58,56,0,56,[[2,1,1,0,1],[3,3,3,1,4],[5,1,1,4,5],[9,1,1,5,6],[12,1,1,6,7],[13,3,3,7,10],[15,1,1,10,11],[17,2,2,11,13],[18,1,1,13,14],[19,3,3,14,17],[20,2,2,17,19],[23,4,4,19,23],[24,1,1,23,24],[26,2,2,24,26],[28,2,1,26,27],[30,2,2,27,29],[31,2,2,29,31],[32,1,1,31,32],[33,1,1,32,33],[34,1,1,33,34],[35,1,1,34,35],[36,2,2,35,37],[37,2,2,37,39],[38,4,4,39,43],[40,1,1,43,44],[41,2,2,44,46],[43,3,3,46,49],[44,1,1,49,50],[47,2,1,50,51],[48,3,3,51,54],[49,2,2,54,56]]],[1,15,13,56,69,[[51,1,1,56,57],[53,4,2,57,59],[58,1,1,59,60],[61,1,1,60,61],[65,1,1,61,62],[67,2,2,62,64],[70,3,3,64,67],[78,1,1,67,68],[84,1,1,68,69]]],[2,36,29,69,98,[[92,2,2,69,71],[94,3,3,71,74],[100,9,4,74,78],[102,12,10,78,88],[103,1,1,88,89],[104,1,1,89,90],[110,3,3,90,93],[111,1,1,93,94],[114,3,3,94,97],[116,1,1,97,98]]],[3,18,17,98,115,[[122,1,1,98,99],[127,1,1,99,100],[132,1,1,100,101],[135,1,1,101,102],[137,1,1,102,103],[138,2,1,103,104],[139,2,2,104,106],[140,1,1,106,107],[141,1,1,107,108],[143,2,2,108,110],[151,5,5,110,115]]],[4,41,33,115,148,[[153,4,3,115,118],[154,1,1,118,119],[155,4,3,119,122],[156,2,2,122,124],[159,1,1,124,125],[160,1,1,125,126],[161,3,1,126,127],[162,1,1,127,128],[169,1,1,128,129],[170,1,1,129,130],[171,3,3,130,133],[173,1,1,133,134],[174,1,1,134,135],[175,1,1,135,136],[176,2,2,136,138],[180,1,1,138,139],[181,1,1,139,140],[182,1,1,140,141],[183,6,3,141,144],[184,5,4,144,148]]],[5,18,14,148,162,[[188,1,1,148,149],[189,1,1,149,150],[193,1,1,150,151],[194,3,2,151,153],[196,1,1,153,154],[203,2,1,154,155],[208,2,1,155,156],[209,3,3,156,159],[210,4,3,159,162]]],[6,28,27,162,189,[[213,6,5,162,167],[214,2,2,167,169],[216,2,2,169,171],[218,1,1,171,172],[219,3,3,172,175],[220,1,1,175,176],[221,1,1,176,177],[223,4,4,177,181],[224,1,1,181,182],[225,1,1,182,183],[226,2,2,183,185],[227,1,1,185,186],[228,1,1,186,187],[229,2,2,187,189]]],[7,5,5,189,194,[[232,1,1,189,190],[233,1,1,190,191],[234,2,2,191,193],[235,1,1,193,194]]],[8,42,40,194,234,[[236,1,1,194,195],[239,1,1,195,196],[241,1,1,196,197],[244,2,2,197,199],[245,1,1,199,200],[250,1,1,200,201],[251,2,1,201,202],[252,4,4,202,206],[253,3,3,206,209],[254,4,4,209,213],[255,4,4,213,217],[257,2,2,217,219],[258,1,1,219,220],[259,2,2,220,222],[260,5,5,222,227],[262,2,2,227,229],[263,3,2,229,231],[265,2,2,231,233],[266,1,1,233,234]]],[9,27,23,234,257,[[270,1,1,234,235],[273,1,1,235,236],[275,3,2,236,238],[278,1,1,238,239],[279,2,2,239,241],[280,2,1,241,242],[281,1,1,242,243],[283,5,5,243,248],[285,3,2,248,250],[286,1,1,250,251],[287,2,2,251,253],[288,1,1,253,254],[289,4,3,254,257]]],[10,35,32,257,289,[[291,6,6,257,263],[292,2,2,263,265],[293,1,1,265,266],[294,2,2,266,268],[295,1,1,268,269],[298,1,1,269,270],[301,4,4,270,274],[304,2,2,274,276],[306,1,1,276,277],[307,2,2,277,279],[308,4,2,279,281],[309,1,1,281,282],[310,8,7,282,289]]],[11,23,23,289,312,[[314,4,4,289,293],[317,4,4,293,297],[318,3,3,297,300],[320,4,4,300,304],[321,1,1,304,305],[322,1,1,305,306],[326,1,1,306,307],[329,1,1,307,308],[330,1,1,308,309],[331,1,1,309,310],[336,1,1,310,311],[337,1,1,311,312]]],[12,22,19,312,331,[[338,1,1,312,313],[339,2,1,313,314],[342,2,2,314,316],[343,1,1,316,317],[345,1,1,317,318],[347,1,1,318,319],[348,7,5,319,324],[352,1,1,324,325],[353,1,1,325,326],[354,1,1,326,327],[357,1,1,327,328],[359,1,1,328,329],[360,1,1,329,330],[365,1,1,330,331]]],[13,15,14,331,345,[[372,1,1,331,332],[387,2,2,332,334],[388,3,2,334,336],[391,1,1,336,337],[392,1,1,337,338],[394,1,1,338,339],[398,2,2,339,341],[399,2,2,341,343],[400,1,1,343,344],[402,1,1,344,345]]],[14,5,5,345,350,[[403,3,3,345,348],[409,2,2,348,350]]],[15,9,9,350,359,[[413,1,1,350,351],[414,1,1,351,352],[415,3,3,352,355],[418,2,2,355,357],[419,1,1,357,358],[424,1,1,358,359]]],[16,2,2,359,361,[[428,1,1,359,360],[433,1,1,360,361]]],[17,20,20,361,381,[[437,1,1,361,362],[440,1,1,362,363],[444,1,1,363,364],[446,1,1,364,365],[448,2,2,365,367],[450,1,1,367,368],[452,1,1,368,369],[456,3,3,369,372],[457,1,1,372,373],[458,2,2,373,375],[463,2,2,375,377],[466,1,1,377,378],[467,1,1,378,379],[469,1,1,379,380],[476,1,1,380,381]]],[18,34,32,381,413,[[486,1,1,381,382],[495,1,1,382,383],[501,2,2,383,385],[502,1,1,385,386],[505,1,1,386,387],[510,3,2,387,389],[514,1,1,389,390],[521,1,1,390,391],[522,1,1,391,392],[525,1,1,392,393],[532,1,1,393,394],[537,1,1,394,395],[545,1,1,395,396],[555,1,1,396,397],[568,1,1,397,398],[572,2,2,398,400],[573,1,1,400,401],[576,3,3,401,404],[577,2,1,404,405],[578,1,1,405,406],[580,1,1,406,407],[585,1,1,407,408],[592,3,3,408,411],[607,1,1,411,412],[625,1,1,412,413]]],[19,13,13,413,426,[[630,3,3,413,416],[633,1,1,416,417],[640,1,1,417,418],[648,1,1,418,419],[649,1,1,419,420],[650,2,2,420,422],[651,1,1,422,423],[655,2,2,423,425],[657,1,1,425,426]]],[20,5,5,426,431,[[659,1,1,426,427],[661,1,1,427,428],[667,1,1,428,429],[668,2,2,429,431]]],[22,32,31,431,462,[[680,1,1,431,432],[687,2,1,432,433],[688,1,1,433,434],[697,2,2,434,436],[705,1,1,436,437],[709,1,1,437,438],[710,1,1,438,439],[711,1,1,439,440],[712,1,1,440,441],[713,1,1,441,442],[715,1,1,442,443],[716,1,1,443,444],[719,1,1,444,445],[721,3,3,445,448],[723,2,2,448,450],[724,1,1,450,451],[726,1,1,451,452],[728,1,1,452,453],[729,1,1,453,454],[730,1,1,454,455],[731,5,5,455,460],[741,2,2,460,462]]],[23,20,20,462,482,[[746,1,1,462,463],[749,1,1,463,464],[754,2,2,464,466],[758,1,1,466,467],[762,1,1,467,468],[766,2,2,468,470],[769,1,1,470,471],[777,1,1,471,472],[781,2,2,472,474],[782,2,2,474,476],[785,1,1,476,477],[792,2,2,477,479],[793,1,1,479,480],[795,1,1,480,481],[796,1,1,481,482]]],[25,21,20,482,502,[[804,3,3,482,485],[813,3,2,485,487],[819,3,3,487,490],[821,1,1,490,491],[822,1,1,491,492],[834,5,5,492,497],[835,1,1,497,498],[839,1,1,498,499],[841,1,1,499,500],[845,1,1,500,501],[846,1,1,501,502]]],[26,1,1,502,503,[[860,1,1,502,503]]],[27,11,9,503,512,[[866,1,1,503,504],[867,1,1,504,505],[868,3,2,505,507],[871,1,1,507,508],[872,1,1,508,509],[874,4,3,509,512]]],[28,1,1,512,513,[[877,1,1,512,513]]],[29,4,4,513,517,[[879,1,1,513,514],[880,1,1,514,515],[885,2,2,515,517]]],[31,1,1,517,518,[[889,1,1,517,518]]],[32,2,2,518,520,[[899,2,2,518,520]]],[33,2,2,520,522,[[900,2,2,520,522]]],[37,5,4,522,526,[[911,1,1,522,523],[916,2,1,523,524],[919,2,2,524,526]]],[38,3,3,526,529,[[926,2,2,526,528],[927,1,1,528,529]]]],[71,83,99,100,140,242,319,349,351,354,393,425,432,487,500,502,511,526,530,598,606,645,653,687,758,760,807,893,894,946,959,963,999,1017,1083,1086,1110,1130,1131,1152,1155,1171,1172,1206,1258,1290,1338,1341,1344,1384,1470,1486,1492,1493,1520,1528,1556,1615,1617,1776,1846,1976,2004,2013,2080,2081,2098,2357,2565,2779,2785,2832,2833,2834,3001,3002,3003,3004,3063,3065,3069,3088,3089,3091,3092,3093,3096,3098,3132,3170,3352,3353,3358,3380,3485,3510,3523,3578,3831,4054,4201,4309,4373,4397,4422,4435,4470,4486,4557,4575,4861,4862,4863,4864,4866,4922,4928,4930,4970,4976,4997,5003,5039,5043,5120,5155,5160,5207,5384,5390,5410,5411,5412,5464,5487,5507,5531,5540,5655,5692,5728,5731,5734,5736,5762,5764,5797,5802,5880,5894,5982,6012,6016,6071,6276,6448,6463,6465,6470,6493,6494,6495,6587,6588,6592,6595,6599,6602,6620,6676,6685,6723,6772,6787,6802,6812,6830,6889,6890,6900,6905,6913,6943,6969,6980,6987,7023,7033,7040,7128,7169,7174,7176,7207,7240,7315,7340,7404,7417,7440,7589,7607,7623,7641,7651,7655,7691,7692,7703,7715,7724,7728,7730,7756,7759,7761,7766,7804,7805,7832,7845,7849,7864,7878,7886,7897,7898,7932,7933,7950,7956,7987,7988,8014,8127,8194,8231,8240,8309,8325,8337,8375,8419,8451,8454,8458,8459,8473,8520,8543,8562,8596,8600,8633,8671,8673,8674,8723,8730,8734,8741,8747,8752,8778,8792,8819,8859,8868,8883,9004,9122,9125,9136,9137,9221,9223,9292,9332,9336,9368,9380,9406,9420,9424,9436,9440,9447,9448,9449,9563,9565,9569,9574,9654,9662,9665,9672,9687,9704,9706,9732,9748,9754,9756,9770,9805,9907,10022,10046,10098,10214,10223,10262,10327,10429,10434,10464,10582,10664,10684,10693,10695,10696,10698,10813,10845,10876,10932,10974,10996,11149,11291,11627,11635,11650,11653,11725,11752,11767,11884,11901,11914,11921,11936,12016,12018,12019,12020,12179,12182,12298,12327,12339,12341,12342,12414,12419,12422,12632,12751,12818,12899,12969,13075,13119,13172,13181,13225,13263,13377,13386,13387,13407,13425,13432,13527,13528,13592,13629,13712,13922,14029,14148,14243,14251,14266,14307,14375,14386,14455,14592,14608,14648,14754,14819,14935,15151,15398,15459,15461,15469,15501,15504,15505,15511,15519,15563,15755,15839,15840,15841,16148,16376,16461,16484,16489,16572,16760,17013,17037,17051,17055,17091,17202,17222,17256,17320,17368,17490,17496,17503,17707,17844,17857,18020,18021,18162,18252,18266,18301,18320,18324,18390,18409,18455,18515,18518,18530,18574,18579,18590,18626,18671,18685,18702,18715,18716,18718,18722,18723,18875,18876,18979,19070,19211,19217,19315,19388,19458,19482,19565,19776,19876,19887,19899,19900,19964,20091,20106,20139,20231,20280,20521,20522,20523,20692,20707,20858,20866,20876,20944,20967,21285,21286,21289,21293,21299,21336,21442,21480,21602,21647,22044,22165,22168,22186,22187,22227,22250,22267,22279,22281,22324,22379,22388,22466,22469,22541,22667,22682,22686,22693,22886,22960,23006,23008,23110,23120,23122]]],["her",[2,2,[[0,1,1,0,1,[[39,1,1,0,1]]],[25,1,1,1,2,[[831,1,1,1,2]]]],[1182,21222]]],["herself",[1,1,[[0,1,1,0,1,[[19,1,1,0,1]]]],[500]]],["him",[10,9,[[0,2,2,0,2,[[3,1,1,0,1],[9,1,1,1,2]]],[1,1,1,2,3,[[61,1,1,2,3]]],[4,1,1,3,4,[[170,1,1,3,4]]],[6,1,1,4,5,[[219,1,1,4,5]]],[8,1,1,5,6,[[254,1,1,5,6]]],[10,1,1,6,7,[[308,1,1,6,7]]],[22,2,1,7,8,[[686,2,1,7,8]]],[23,1,1,8,9,[[771,1,1,8,9]]]],[105,255,1820,5389,6773,7729,9365,17820,19603]]],["himself",[16,16,[[0,1,1,0,1,[[31,1,1,0,1]]],[3,1,1,1,2,[[151,1,1,1,2]]],[5,1,1,2,3,[[208,1,1,2,3]]],[8,2,2,3,5,[[245,1,1,3,4],[265,1,1,4,5]]],[10,1,1,5,6,[[309,1,1,5,6]]],[13,1,1,6,7,[[392,1,1,6,7]]],[14,1,1,7,8,[[412,1,1,7,8]]],[18,2,2,8,10,[[527,1,1,8,9],[564,1,1,9,10]]],[19,3,3,10,13,[[638,1,1,10,11],[648,1,1,11,12],[655,1,1,12,13]]],[22,3,3,13,16,[[685,1,1,13,14],[716,1,1,14,15],[723,1,1,15,16]]]],[949,4864,6449,7437,8009,9391,11752,12260,14674,15306,16713,16997,17206,17796,18405,18579]]],["is",[1,1,[[18,1,1,0,1,[[501,1,1,0,1]]]],[14251]]],["it",[230,213,[[0,13,12,0,12,[[1,2,2,0,2],[2,2,2,2,4],[18,2,1,4,5],[28,1,1,5,6],[31,1,1,6,7],[36,1,1,7,8],[40,1,1,8,9],[41,1,1,9,10],[42,1,1,10,11],[43,1,1,11,12]]],[1,22,21,12,33,[[50,2,1,12,13],[61,2,2,13,15],[62,1,1,15,16],[65,2,2,16,18],[71,2,2,18,20],[78,6,6,20,26],[79,2,2,26,28],[80,2,2,28,30],[81,1,1,30,31],[83,2,2,31,33]]],[2,72,67,33,100,[[90,2,2,33,35],[91,2,2,35,37],[93,2,2,37,39],[94,3,3,39,42],[95,4,4,42,46],[96,3,3,46,49],[97,2,2,49,51],[99,2,2,51,53],[100,2,2,53,55],[102,23,19,55,74],[103,3,2,74,76],[104,2,2,76,78],[106,1,1,78,79],[107,5,5,79,84],[108,1,1,84,85],[109,3,3,85,88],[111,1,1,88,89],[112,3,3,89,92],[113,1,1,92,93],[114,3,3,93,96],[116,4,4,96,100]]],[3,12,12,100,112,[[121,1,1,100,101],[129,4,4,101,105],[130,1,1,105,106],[131,1,1,106,107],[134,2,2,107,109],[135,2,2,109,111],[151,1,1,111,112]]],[4,12,9,112,121,[[155,1,1,112,113],[159,2,2,113,115],[161,1,1,115,116],[166,3,2,116,118],[182,3,2,118,120],[184,2,1,120,121]]],[5,9,9,121,130,[[188,1,1,121,122],[190,1,1,122,123],[192,1,1,123,124],[196,1,1,124,125],[203,1,1,125,126],[208,3,3,126,129],[210,1,1,129,130]]],[6,4,3,130,133,[[223,1,1,130,131],[224,1,1,131,132],[228,2,1,132,133]]],[8,3,3,133,136,[[241,1,1,133,134],[255,1,1,134,135],[256,1,1,135,136]]],[10,3,3,136,139,[[311,1,1,136,137],[312,2,2,137,139]]],[11,2,2,139,141,[[318,1,1,139,140],[319,1,1,140,141]]],[12,2,2,141,143,[[349,1,1,141,142],[358,1,1,142,143]]],[13,2,2,143,145,[[386,1,1,143,144],[391,1,1,144,145]]],[16,2,2,145,147,[[426,1,1,145,146],[434,1,1,146,147]]],[17,4,4,147,151,[[440,1,1,147,148],[466,2,2,148,150],[472,1,1,150,151]]],[18,6,6,151,157,[[502,1,1,151,152],[516,1,1,152,153],[550,1,1,153,154],[576,1,1,154,155],[595,1,1,155,156],[596,1,1,156,157]]],[19,5,5,157,162,[[633,1,1,157,158],[634,1,1,158,159],[637,2,2,159,161],[645,1,1,161,162]]],[20,13,13,162,175,[[659,2,2,162,164],[660,1,1,164,165],[661,2,2,165,167],[662,1,1,167,168],[663,2,2,168,170],[664,3,3,170,173],[665,1,1,173,174],[667,1,1,174,175]]],[22,11,10,175,185,[[692,1,1,175,176],[707,1,1,176,177],[708,1,1,177,178],[712,2,1,178,179],[713,1,1,179,180],[725,1,1,180,181],[729,2,2,181,183],[737,1,1,183,184],[741,1,1,184,185]]],[23,6,5,185,190,[[749,2,1,185,186],[774,1,1,186,187],[785,1,1,187,188],[794,1,1,188,189],[795,1,1,189,190]]],[25,15,14,190,204,[[802,1,1,190,191],[803,1,1,191,192],[805,1,1,192,193],[817,1,1,193,194],[819,2,2,194,196],[822,4,3,196,199],[829,1,1,199,200],[839,1,1,200,201],[840,1,1,201,202],[845,1,1,202,203],[847,1,1,203,204]]],[27,3,2,204,206,[[868,1,1,204,205],[869,2,1,205,206]]],[29,3,2,206,208,[[883,1,1,206,207],[885,2,1,207,208]]],[32,1,1,208,209,[[896,1,1,208,209]]],[34,2,1,209,210,[[904,2,1,209,210]]],[36,1,1,210,211,[[910,1,1,210,211]]],[37,2,2,211,213,[[915,1,1,211,212],[921,1,1,212,213]]]],[41,44,61,70,477,820,946,1115,1226,1279,1302,1334,1548,1818,1827,1869,1962,1978,2128,2140,2350,2354,2358,2361,2364,2370,2392,2414,2433,2434,2447,2505,2506,2758,2762,2768,2777,2816,2819,2839,2841,2842,2854,2866,2874,2878,2880,2884,2885,2938,2945,2989,2994,3034,3035,3055,3058,3060,3062,3067,3072,3074,3075,3077,3079,3080,3082,3091,3094,3101,3103,3104,3107,3109,3124,3155,3171,3191,3246,3259,3267,3268,3273,3274,3288,3332,3335,3339,3376,3405,3430,3438,3455,3479,3481,3503,3574,3580,3596,3603,3807,4093,4094,4095,4102,4149,4178,4276,4288,4298,4304,4878,4986,5136,5137,5170,5298,5300,5719,5721,5805,5890,5934,5966,6066,6293,6453,6454,6460,6503,6902,6913,7021,7340,7763,7781,9453,9512,9513,9679,9714,10735,10951,11612,11724,12722,12835,12978,13599,13600,13781,14262,14516,15036,15502,15892,15995,16562,16598,16678,16680,16914,17324,17325,17357,17372,17373,17389,17403,17415,17418,17419,17427,17452,17488,17952,18204,18250,18319,18328,18609,18682,18683,18816,18871,19073,19674,19966,20181,20223,20477,20502,20541,20776,20853,20869,20955,20956,20958,21175,21433,21459,21600,21671,22184,22200,22436,22477,22621,22767,22861,22942,23039]]],["one",[2,2,[[7,1,1,0,1,[[233,1,1,0,1]]],[25,1,1,1,2,[[814,1,1,1,2]]]],[7169,20718]]],["same",[72,71,[[0,14,14,0,14,[[1,1,1,0,1],[9,1,1,1,2],[13,1,1,2,3],[14,1,1,3,4],[18,2,2,4,6],[22,2,2,6,8],[23,1,1,8,9],[25,3,3,9,12],[31,1,1,12,13],[47,1,1,13,14]]],[1,2,2,14,16,[[54,1,1,14,15],[88,1,1,15,16]]],[2,2,2,16,18,[[111,1,1,16,17],[112,1,1,17,18]]],[3,4,4,18,22,[[122,1,1,18,19],[125,1,1,19,20],[131,1,1,20,21],[148,1,1,21,22]]],[4,4,4,22,26,[[161,1,1,22,23],[166,1,1,23,24],[179,1,1,24,25],[183,1,1,25,26]]],[5,1,1,26,27,[[201,1,1,26,27]]],[6,4,3,27,30,[[216,1,1,27,28],[217,3,2,28,30]]],[8,4,4,30,34,[[239,1,1,30,31],[241,2,2,31,33],[266,1,1,33,34]]],[9,2,2,34,36,[[271,1,1,34,35],[289,1,1,35,36]]],[10,2,2,36,38,[[298,1,1,36,37],[303,1,1,37,38]]],[11,2,2,38,40,[[315,1,1,38,39],[320,1,1,39,40]]],[12,2,2,40,42,[[338,1,1,40,41],[354,1,1,41,42]]],[13,10,10,42,52,[[373,1,1,42,43],[381,1,1,43,44],[382,1,1,44,45],[384,1,1,45,46],[386,1,1,46,47],[387,1,1,47,48],[393,1,1,48,49],[398,2,2,49,51],[401,1,1,51,52]]],[14,1,1,52,53,[[412,1,1,52,53]]],[15,1,1,53,54,[[416,1,1,53,54]]],[18,1,1,54,55,[[579,1,1,54,55]]],[19,1,1,55,56,[[655,1,1,55,56]]],[20,1,1,56,57,[[667,1,1,56,57]]],[22,2,2,57,59,[[685,1,1,57,58],[698,1,1,58,59]]],[23,4,4,59,63,[[772,2,2,59,61],[775,1,1,61,62],[783,1,1,62,63]]],[25,5,5,63,68,[[804,1,1,63,64],[824,2,2,64,66],[839,2,2,66,68]]],[26,1,1,68,69,[[861,1,1,68,69]]],[35,1,1,69,70,[[906,1,1,69,70]]],[37,1,1,70,71,[[916,1,1,70,71]]]],[43,246,344,378,494,495,573,590,635,704,716,724,941,1458,1638,2669,3399,3432,3834,3978,4183,4728,5177,5318,5596,5750,6210,6679,6698,6703,7309,7346,7347,8015,8139,8661,9049,9187,9582,9749,10279,10866,11332,11501,11519,11549,11613,11634,11760,11887,11905,11982,12275,12381,15548,17220,17490,17802,18031,19619,19635,19692,19933,20520,21045,21046,21435,21443,22082,22796,22957]]],["she",[96,90,[[0,19,18,0,18,[[2,2,2,0,2],[3,1,1,2,3],[11,2,2,3,5],[18,1,1,5,6],[19,3,3,6,9],[21,2,2,9,11],[24,1,1,11,12],[25,2,2,12,14],[28,1,1,14,15],[37,4,3,15,18]]],[2,12,12,18,30,[[104,2,2,18,20],[107,6,6,20,26],[109,2,2,26,28],[110,1,1,28,29],[111,1,1,29,30]]],[3,4,2,30,32,[[121,4,2,30,32]]],[5,4,4,32,36,[[188,3,3,32,35],[192,1,1,35,36]]],[6,9,9,36,45,[[214,2,2,36,38],[215,1,1,38,39],[218,1,1,39,40],[221,3,3,40,43],[223,1,1,43,44],[224,1,1,44,45]]],[7,3,3,45,48,[[232,3,3,45,48]]],[8,4,4,48,52,[[236,2,2,48,50],[253,1,1,50,51],[260,1,1,51,52]]],[9,3,3,52,55,[[277,1,1,52,53],[279,1,1,53,54],[280,1,1,54,55]]],[10,5,5,55,60,[[293,1,1,55,56],[300,1,1,56,57],[304,2,2,57,59],[307,1,1,59,60]]],[11,4,4,60,64,[[316,1,1,60,61],[320,1,1,61,62],[321,1,1,62,63],[334,1,1,63,64]]],[12,1,1,64,65,[[339,1,1,64,65]]],[13,3,3,65,68,[[375,1,1,65,66],[388,1,1,66,67],[400,1,1,67,68]]],[16,3,2,68,70,[[426,1,1,68,69],[427,2,1,69,70]]],[17,1,1,70,71,[[474,1,1,70,71]]],[19,2,2,71,73,[[631,1,1,71,72],[658,1,1,72,73]]],[21,4,2,73,75,[[676,2,1,73,74],[678,2,1,74,75]]],[23,1,1,75,76,[[747,1,1,75,76]]],[24,3,3,76,79,[[797,3,3,76,79]]],[25,4,4,79,83,[[817,2,2,79,81],[824,1,1,81,82],[827,1,1,82,83]]],[26,1,1,83,84,[[860,1,1,83,84]]],[27,2,2,84,86,[[863,2,2,84,86]]],[32,1,1,86,87,[[893,1,1,86,87]]],[33,1,1,87,88,[[902,1,1,87,88]]],[37,1,1,88,89,[[919,1,1,88,89]]],[38,1,1,89,90,[[926,1,1,89,90]]]],[67,75,101,312,316,495,498,500,507,567,571,679,699,701,804,1133,1135,1144,3191,3193,3258,3262,3263,3264,3265,3266,3335,3336,3354,3381,3805,3806,5875,5877,5884,5966,6603,6604,6652,6750,6863,6867,6868,6893,6912,7130,7133,7145,7222,7225,7695,7881,8263,8319,8383,8843,9092,9223,9235,9332,9608,9729,9790,10159,10332,11376,11655,11955,12713,12738,13864,16503,17314,17623,17649,19008,20313,20314,20318,20808,20810,21050,21117,22042,22107,22113,22592,22722,23003,23117]]],["such",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9089,11373]]],["that",[421,405,[[0,33,33,0,33,[[1,2,2,0,2],[9,1,1,2,3],[16,1,1,3,4],[18,2,2,4,6],[20,2,2,6,8],[21,1,1,8,9],[22,1,1,9,10],[25,1,1,10,11],[27,2,2,11,13],[28,1,1,13,14],[29,3,3,14,17],[30,1,1,17,18],[31,3,3,18,21],[32,1,1,21,22],[33,1,1,22,23],[34,3,3,23,26],[37,2,2,26,28],[40,1,1,28,29],[42,1,1,29,30],[46,2,2,30,32],[47,1,1,32,33]]],[1,16,16,33,49,[[50,1,1,33,34],[52,1,1,34,35],[55,1,1,35,36],[57,1,1,36,37],[59,1,1,37,38],[61,4,4,38,42],[62,2,2,42,44],[63,1,1,44,45],[71,1,1,45,46],[80,1,1,46,47],[81,1,1,47,48],[83,1,1,48,49]]],[2,15,14,49,63,[[96,3,3,49,52],[100,1,1,52,53],[106,3,2,53,55],[108,2,2,55,57],[109,3,3,57,60],[111,1,1,60,61],[114,1,1,61,62],[116,1,1,62,63]]],[3,15,14,63,77,[[121,1,1,63,64],[125,3,2,64,66],[127,2,2,66,68],[129,1,1,68,69],[130,2,2,69,71],[131,2,2,71,73],[135,2,2,73,75],[137,1,1,75,76],[138,1,1,76,77]]],[4,45,41,77,118,[[153,5,5,77,82],[154,1,1,82,83],[155,6,6,83,89],[156,1,1,89,90],[157,1,1,90,91],[159,1,1,91,92],[161,1,1,92,93],[162,3,3,93,96],[164,1,1,96,97],[165,5,3,97,100],[169,5,4,100,104],[170,2,2,104,106],[173,4,4,106,110],[174,2,2,110,112],[176,2,2,112,114],[181,2,2,114,116],[183,3,2,116,118]]],[5,23,21,118,139,[[190,1,1,118,119],[191,2,2,119,121],[192,1,1,121,122],[193,1,1,122,123],[194,4,4,123,127],[195,1,1,127,128],[196,4,3,128,131],[197,2,2,131,133],[200,3,2,133,135],[206,2,2,135,137],[208,1,1,137,138],[210,1,1,138,139]]],[6,25,25,139,164,[[212,2,2,139,141],[213,2,2,141,143],[214,2,2,143,145],[215,1,1,145,146],[216,2,2,146,148],[219,1,1,148,149],[220,1,1,149,150],[221,2,2,150,152],[222,1,1,152,153],[224,1,1,153,154],[225,1,1,154,155],[228,2,2,155,157],[230,5,5,157,162],[231,2,2,162,164]]],[8,24,23,164,187,[[238,1,1,164,165],[242,2,2,165,167],[243,2,1,167,168],[244,1,1,168,169],[245,1,1,169,170],[247,1,1,170,171],[249,5,5,171,176],[253,1,1,176,177],[254,2,2,177,179],[255,1,1,179,180],[256,2,2,180,182],[257,2,2,182,184],[258,1,1,184,185],[262,1,1,185,186],[263,1,1,186,187]]],[9,17,17,187,204,[[268,3,3,187,190],[269,1,1,190,191],[271,2,2,191,193],[272,1,1,193,194],[273,2,2,194,196],[277,1,1,196,197],[283,1,1,197,198],[284,2,2,198,200],[285,2,2,200,202],[289,1,1,202,203],[290,1,1,203,204]]],[10,10,9,204,213,[[293,2,1,204,205],[296,1,1,205,206],[298,1,1,206,207],[301,1,1,207,208],[304,1,1,208,209],[306,1,1,209,210],[309,1,1,210,211],[312,2,2,211,213]]],[11,8,8,213,221,[[315,1,1,213,214],[328,1,1,214,215],[330,2,2,215,217],[331,1,1,217,218],[332,1,1,218,219],[335,1,1,219,220],[336,1,1,220,221]]],[12,8,8,221,229,[[350,2,2,221,223],[351,1,1,223,224],[353,1,1,224,225],[358,2,2,225,227],[366,2,2,227,229]]],[13,9,9,229,238,[[367,1,1,229,230],[370,1,1,230,231],[379,1,1,231,232],[382,1,1,232,233],[384,2,2,233,235],[394,1,1,235,236],[396,1,1,236,237],[401,1,1,237,238]]],[14,1,1,238,239,[[410,1,1,238,239]]],[15,7,7,239,246,[[416,1,1,239,240],[418,1,1,240,241],[420,1,1,241,242],[424,2,2,242,244],[425,2,2,244,246]]],[16,12,9,246,255,[[427,1,1,246,247],[428,3,1,247,248],[430,1,1,248,249],[431,1,1,249,250],[433,3,2,250,252],[434,3,3,252,255]]],[17,5,5,255,260,[[436,1,1,255,256],[438,3,3,256,259],[463,1,1,259,260]]],[19,1,1,260,261,[[646,1,1,260,261]]],[20,8,7,261,268,[[659,1,1,261,262],[661,4,3,262,265],[665,1,1,265,266],[666,1,1,266,267],[667,1,1,267,268]]],[22,47,47,268,315,[[680,3,3,268,271],[681,2,2,271,273],[682,2,2,273,275],[683,1,1,275,276],[685,3,3,276,279],[688,2,2,279,281],[689,2,2,281,283],[690,2,2,283,285],[695,3,3,285,288],[696,1,1,288,289],[697,6,6,289,295],[698,1,1,295,296],[700,4,4,296,300],[701,1,1,300,301],[702,1,1,301,302],[703,1,1,302,303],[704,1,1,303,304],[705,4,4,304,308],[706,1,1,308,309],[707,1,1,309,310],[708,1,1,310,311],[709,1,1,311,312],[717,1,1,312,313],[720,1,1,313,314],[730,1,1,314,315]]],[23,26,26,315,341,[[747,2,2,315,317],[748,2,2,317,319],[752,1,1,319,320],[756,1,1,320,321],[762,1,1,321,322],[764,1,1,322,323],[767,1,1,323,324],[769,4,4,324,328],[771,1,1,328,329],[774,3,3,329,332],[777,1,1,332,333],[783,2,2,333,335],[792,1,1,335,336],[793,2,2,336,338],[794,3,3,338,341]]],[25,16,16,341,357,[[815,4,4,341,345],[819,1,1,345,346],[823,1,1,346,347],[825,2,2,347,349],[830,1,1,349,350],[831,1,1,350,351],[834,1,1,351,352],[839,2,2,352,354],[840,2,2,354,356],[846,1,1,356,357]]],[26,2,1,357,358,[[861,2,1,357,358]]],[27,4,4,358,362,[[862,1,1,358,359],[863,3,3,359,362]]],[28,2,2,362,364,[[878,2,2,362,364]]],[29,6,6,364,370,[[880,1,1,364,365],[883,1,1,365,366],[886,3,3,366,369],[887,1,1,369,370]]],[30,1,1,370,371,[[888,1,1,370,371]]],[32,6,6,371,377,[[894,1,1,371,372],[895,1,1,372,373],[896,1,1,373,374],[897,1,1,374,375],[899,2,2,375,377]]],[35,6,6,377,383,[[906,2,2,377,379],[908,4,4,379,383]]],[36,1,1,383,384,[[910,1,1,383,384]]],[37,22,21,384,405,[[912,1,1,384,385],[913,2,2,385,387],[919,1,1,387,388],[921,1,1,388,389],[922,7,6,389,395],[923,3,3,395,398],[924,7,7,398,405]]]],[42,49,245,411,490,492,535,544,561,586,704,784,792,797,846,863,865,889,930,949,950,976,994,1017,1031,1033,1120,1140,1226,1322,1437,1438,1471,1538,1587,1682,1732,1790,1831,1832,1835,1858,1875,1884,1919,2140,2434,2466,2499,2899,2900,2906,3009,3239,3244,3289,3301,3321,3323,3324,3372,3480,3593,3798,3971,3978,4056,4058,4107,4109,4153,4183,4184,4302,4309,4356,4379,4901,4908,4910,4911,4936,4972,4979,4983,4987,4993,4996,4998,5018,5058,5127,5176,5187,5194,5196,5243,5275,5277,5287,5365,5369,5374,5376,5404,5406,5450,5451,5453,5470,5488,5494,5529,5532,5699,5701,5745,5746,5924,5936,5946,5975,6002,6011,6015,6027,6029,6064,6078,6092,6099,6117,6128,6196,6199,6376,6378,6446,6501,6550,6555,6597,6598,6603,6622,6624,6686,6694,6799,6819,6850,6855,6875,6913,6946,6994,7005,7069,7075,7080,7089,7100,7116,7126,7288,7358,7362,7387,7415,7427,7478,7526,7531,7532,7539,7545,7678,7716,7730,7756,7779,7782,7805,7809,7838,7936,7967,8065,8066,8078,8118,8140,8152,8166,8184,8208,8271,8462,8485,8486,8513,8514,8663,8710,8820,8913,9050,9137,9219,9299,9395,9505,9515,9593,9969,10034,10040,10096,10110,10180,10212,10771,10772,10785,10827,10962,10963,11185,11186,11201,11267,11471,11516,11566,11576,11780,11830,11983,12235,12375,12402,12510,12667,12668,12672,12692,12731,12754,12788,12794,12818,12826,12835,12845,12858,12870,12908,12910,12911,13532,16946,17324,17374,17380,17381,17431,17473,17484,17696,17702,17705,17714,17725,17734,17735,17769,17800,17803,17805,17870,17877,17894,17895,17901,17904,17987,17990,17992,18004,18020,18022,18023,18025,18027,18028,18035,18060,18064,18072,18077,18092,18116,18127,18131,18152,18153,18163,18164,18169,18211,18240,18257,18413,18488,18702,19003,19019,19036,19038,19154,19266,19392,19438,19518,19535,19546,19547,19567,19604,19674,19675,19688,19790,19939,19940,20121,20149,20153,20170,20186,20196,20739,20740,20748,20750,20860,21000,21082,21083,21204,21213,21288,21439,21444,21459,21470,21652,22082,22099,22121,22123,22126,22344,22361,22395,22436,22484,22490,22494,22506,22518,22599,22612,22626,22643,22675,22676,22797,22799,22831,22836,22839,22840,22878,22910,22921,22922,23015,23039,23048,23049,23051,23053,23054,23056,23060,23061,23063,23072,23074,23076,23077,23081,23088,23089]]],["the",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8165]]],["they",[26,23,[[1,2,2,0,2,[[50,1,1,0,1],[81,1,1,1,2]]],[3,8,7,2,9,[[129,4,3,2,5],[138,4,4,5,9]]],[4,3,3,9,12,[[172,1,1,9,10],[183,2,2,10,12]]],[5,1,1,12,13,[[203,1,1,12,13]]],[6,1,1,13,14,[[230,1,1,13,14]]],[9,1,1,14,15,[[290,1,1,14,15]]],[18,1,1,15,16,[[596,1,1,15,16]]],[19,1,1,16,17,[[650,1,1,16,17]]],[23,2,2,17,19,[[750,1,1,17,18],[794,1,1,18,19]]],[27,1,1,19,20,[[863,1,1,19,20]]],[34,2,1,20,21,[[903,2,1,20,21]]],[37,3,2,21,23,[[923,2,1,21,22],[924,1,1,22,23]]]],[1542,2460,4093,4094,4106,4378,4380,4381,4387,5447,5744,5749,6293,7093,8705,15996,17047,19112,20204,22128,22741,23068,23080]]],["this",[36,36,[[0,2,2,0,2,[[14,1,1,0,1],[35,1,1,1,2]]],[3,2,2,2,4,[[121,1,1,2,3],[122,1,1,3,4]]],[4,3,3,4,7,[[156,1,1,4,5],[181,1,1,5,6],[184,1,1,6,7]]],[5,1,1,7,8,[[196,1,1,7,8]]],[8,1,1,8,9,[[236,1,1,8,9]]],[11,1,1,9,10,[[316,1,1,9,10]]],[13,1,1,10,11,[[394,1,1,10,11]]],[16,1,1,11,12,[[426,1,1,11,12]]],[17,3,3,12,15,[[436,1,1,12,13],[443,1,1,13,14],[466,1,1,14,15]]],[18,2,2,15,17,[[558,1,1,15,16],[626,1,1,16,17]]],[20,3,3,17,20,[[659,1,1,17,18],[660,1,1,18,19],[662,1,1,19,20]]],[22,2,2,20,22,[[708,1,1,20,21],[720,1,1,21,22]]],[23,7,7,22,29,[[750,1,1,22,23],[766,1,1,23,24],[776,1,1,24,25],[789,1,1,25,26],[790,1,1,26,27],[794,1,1,27,28],[795,1,1,28,29]]],[25,6,6,29,35,[[812,3,3,29,32],[822,1,1,32,33],[840,1,1,33,34],[847,1,1,34,35]]],[32,1,1,35,36,[[894,1,1,35,36]]]],[362,1064,3823,3843,5010,5706,5792,6077,7215,9612,11786,12703,12872,13048,13599,15221,16394,17328,17334,17385,18226,18502,19095,19470,19739,20044,20055,20191,20218,20658,20662,20670,20955,21456,21658,22598]]],["those",[2,2,[[8,1,1,0,1,[[265,1,1,0,1]]],[20,1,1,1,2,[[663,1,1,1,2]]]],[7998,17411]]],["thou",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12517]]],["very",[1,1,[[18,1,1,0,1,[[623,1,1,0,1]]]],[16345]]],["were",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6213]]],["when",[1,1,[[8,1,1,0,1,[[238,1,1,0,1]]]],[7278]]],["which",[64,64,[[0,7,7,0,7,[[13,4,4,0,4],[17,1,1,4,5],[34,2,2,5,7]]],[3,5,5,7,12,[[121,1,1,7,8],[132,1,1,8,9],[134,1,1,9,10],[149,2,2,10,12]]],[4,2,2,12,14,[[155,1,1,12,13],[156,1,1,13,14]]],[5,12,12,14,26,[[201,7,7,14,21],[204,3,3,21,24],[206,1,1,24,25],[207,1,1,25,26]]],[6,3,3,26,29,[[211,1,1,26,27],[214,1,1,27,28],[229,1,1,28,29]]],[8,1,1,29,30,[[257,1,1,29,30]]],[10,6,6,30,36,[[292,1,1,30,31],[296,2,2,31,33],[298,2,2,33,35],[304,1,1,35,36]]],[11,3,3,36,39,[[326,1,1,36,37],[330,1,1,37,38],[337,1,1,38,39]]],[12,4,4,39,43,[[339,1,1,39,40],[341,1,1,40,41],[348,2,2,41,43]]],[13,3,3,43,46,[[371,2,2,43,45],[386,1,1,45,46]]],[14,1,1,46,47,[[409,1,1,46,47]]],[15,1,1,47,48,[[420,1,1,47,48]]],[16,3,3,48,51,[[427,1,1,48,49],[428,1,1,49,50],[433,1,1,50,51]]],[17,2,2,51,53,[[450,1,1,51,52],[472,1,1,52,53]]],[23,4,4,53,57,[[776,1,1,53,54],[782,1,1,54,55],[794,1,1,55,56],[796,1,1,56,57]]],[25,4,4,57,61,[[802,1,1,57,58],[821,2,2,58,60],[838,1,1,60,61]]],[26,1,1,61,62,[[859,1,1,61,62]]],[37,2,2,62,64,[[911,1,1,62,63],[924,1,1,63,64]]]],[338,339,343,353,434,1030,1038,3810,4234,4273,4796,4800,4988,5052,6211,6212,6215,6227,6251,6256,6262,6306,6307,6321,6379,6392,6535,6601,7034,7796,8778,8897,8934,8986,8987,9220,9917,10033,10230,10348,10396,10677,10678,11270,11271,11589,12181,12502,12740,12760,12829,13212,13790,19732,19902,20169,20288,20466,20901,20910,21398,22019,22885,23075]]],["who",[25,25,[[0,4,4,0,4,[[13,1,1,0,1],[35,2,2,1,3],[47,1,1,3,4]]],[3,2,2,4,6,[[128,1,1,4,5],[137,1,1,5,6]]],[5,1,1,6,7,[[199,1,1,6,7]]],[6,3,3,7,10,[[216,1,1,7,8],[217,1,1,8,9],[227,1,1,9,10]]],[9,1,1,10,11,[[270,1,1,10,11]]],[10,2,2,11,13,[[302,1,1,11,12],[309,1,1,12,13]]],[12,7,7,13,20,[[342,1,1,13,14],[344,1,1,14,15],[345,1,1,15,16],[346,1,1,16,17],[348,1,1,17,18],[359,1,1,18,19],[362,1,1,19,20]]],[13,3,3,20,23,[[376,1,1,20,21],[386,1,1,21,22],[392,1,1,22,23]]],[15,1,1,23,24,[[418,1,1,23,24]]],[23,1,1,24,25,[[764,1,1,24,25]]]],[348,1041,1059,1465,4066,4366,6166,6689,6695,6987,8125,9153,9406,10436,10566,10587,10646,10685,10973,11055,11397,11622,11733,12411,19423]]],["whose",[1,1,[[2,1,1,0,1,[[113,1,1,0,1]]]],[3456]]]]},{"k":"H1932","v":[["*",[16,16,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,15,15,1,16,[[851,5,5,1,6],[852,1,1,6,7],[853,2,2,7,9],[854,1,1,9,10],[855,4,4,10,14],[856,2,2,14,16]]]],[12142,21779,21780,21790,21796,21802,21822,21859,21861,21887,21909,21915,21921,21931,21940,21957]]],["He",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21780]]],["It",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21859]]],["This",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21790]]],["he",[6,6,[[26,6,6,0,6,[[851,1,1,0,1],[855,4,4,1,5],[856,1,1,5,6]]]],[21779,21909,21915,21921,21931,21957]]],["it",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[856,1,1,1,2]]]],[21802,21940]]],["that",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[854,1,1,1,2]]]],[21822,21887]]],["this",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21796,21861]]],["which",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12142]]]]},{"k":"H1933","v":[["*",[6,6,[[0,1,1,0,1,[[26,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]],[17,1,1,2,3,[[472,1,1,2,3]]],[20,2,2,3,5,[[660,1,1,3,4],[669,1,1,4,5]]],[22,1,1,5,6,[[694,1,1,5,6]]]],[756,12407,13775,17355,17516,17973]]],["Be",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13775]]],["be",[3,3,[[0,1,1,0,1,[[26,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]],[22,1,1,2,3,[[694,1,1,2,3]]]],[756,12407,17973]]],["hath",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17355]]],["it",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17516]]]]},{"k":"H1934","v":[["*",[70,54,[[14,16,15,0,15,[[406,5,5,0,5],[407,3,3,5,8],[408,4,4,8,12],[409,4,3,12,15]]],[26,54,39,15,54,[[851,15,11,15,26],[852,1,1,26,27],[853,6,6,27,33],[854,11,3,33,36],[855,8,7,36,43],[856,13,11,43,54]]]],[12122,12123,12130,12132,12134,12139,12142,12145,12157,12159,12160,12161,12196,12198,12199,21778,21786,21787,21789,21792,21793,21798,21799,21800,21801,21803,21825,21841,21847,21850,21862,21864,21866,21891,21893,21903,21906,21907,21908,21909,21915,21919,21931,21935,21937,21939,21940,21941,21942,21944,21946,21952,21954,21956]]],["+",[30,20,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,29,19,1,20,[[851,2,2,1,3],[853,3,3,3,6],[854,9,1,6,7],[855,4,4,7,11],[856,11,9,11,20]]]],[12132,21789,21792,21847,21850,21866,21893,21909,21915,21919,21931,21935,21937,21939,21940,21941,21942,21944,21946,21954]]],["Be",[3,3,[[14,3,3,0,3,[[406,2,2,0,2],[407,1,1,2,3]]]],[12122,12123,12142]]],["So",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12134]]],["be",[17,16,[[14,4,4,0,4,[[408,3,3,0,3],[409,1,1,3,4]]],[26,13,12,4,16,[[851,6,5,4,9],[852,1,1,9,10],[853,2,2,10,12],[854,2,2,12,14],[855,1,1,14,15],[856,1,1,15,16]]]],[12157,12159,12160,12196,21778,21786,21798,21799,21800,21825,21862,21864,21891,21903,21906,21956]]],["became",[2,1,[[26,2,1,0,1,[[851,2,1,0,1]]]],[21793]]],["been",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12130]]],["have",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21907]]],["let",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12199]]],["may",[2,2,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]]],[12161,12198]]],["might",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21907]]],["pass",[3,2,[[26,3,2,0,2,[[851,3,2,0,2]]]],[21787,21803]]],["shall",[2,1,[[26,2,1,0,1,[[851,2,1,0,1]]]],[21801]]],["was",[5,5,[[14,2,2,0,2,[[407,2,2,0,2]]],[26,3,3,2,5,[[853,1,1,2,3],[855,1,1,3,4],[856,1,1,4,5]]]],[12139,12145,21841,21908,21952]]],["will",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12199]]]]},{"k":"H1935","v":[["*",[24,24,[[3,1,1,0,1,[[143,1,1,0,1]]],[12,3,3,1,4,[[353,1,1,1,2],[366,2,2,2,4]]],[17,3,3,4,7,[[472,1,1,4,5],[474,1,1,5,6],[475,1,1,6,7]]],[18,8,8,7,15,[[485,1,1,7,8],[498,1,1,8,9],[522,1,1,9,10],[573,1,1,10,11],[581,1,1,11,12],[588,1,1,12,13],[622,1,1,13,14],[625,1,1,14,15]]],[19,1,1,15,16,[[632,1,1,15,16]]],[22,1,1,16,17,[[708,1,1,16,17]]],[23,1,1,17,18,[[766,1,1,17,18]]],[26,2,2,18,20,[[859,1,1,18,19],[860,1,1,19,20]]],[27,1,1,20,21,[[875,1,1,20,21]]],[34,1,1,21,22,[[905,1,1,21,22]]],[37,2,2,22,24,[[916,1,1,22,23],[920,1,1,23,24]]]],[4574,10847,11175,11189,13791,13854,13874,14013,14196,14600,15471,15572,15796,16325,16384,16526,18247,19472,22023,22057,22288,22771,22960,23019]]],["+",[1,1,[[3,1,1,0,1,[[143,1,1,0,1]]]],[4574]]],["Glory",[1,1,[[12,1,1,0,1,[[353,1,1,0,1]]]],[10847]]],["Honour",[1,1,[[18,1,1,0,1,[[573,1,1,0,1]]]],[15471]]],["beauty",[1,1,[[27,1,1,0,1,[[875,1,1,0,1]]]],[22288]]],["comeliness",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22023]]],["glorious",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18247]]],["glory",[8,8,[[17,2,2,0,2,[[474,1,1,0,1],[475,1,1,1,2]]],[18,3,3,2,5,[[485,1,1,2,3],[522,1,1,3,4],[625,1,1,4,5]]],[23,1,1,5,6,[[766,1,1,5,6]]],[34,1,1,6,7,[[905,1,1,6,7]]],[37,1,1,7,8,[[916,1,1,7,8]]]],[13854,13874,14013,14600,16384,19472,22771,22960]]],["goodly",[1,1,[[37,1,1,0,1,[[920,1,1,0,1]]]],[23019]]],["honour",[4,4,[[18,2,2,0,2,[[498,1,1,0,1],[581,1,1,1,2]]],[19,1,1,2,3,[[632,1,1,2,3]]],[26,1,1,3,4,[[860,1,1,3,4]]]],[14196,15572,16526,22057]]],["honourable",[1,1,[[18,1,1,0,1,[[588,1,1,0,1]]]],[15796]]],["majesty",[4,4,[[12,2,2,0,2,[[366,2,2,0,2]]],[17,1,1,2,3,[[472,1,1,2,3]]],[18,1,1,3,4,[[622,1,1,3,4]]]],[11175,11189,13791,16325]]]]},{"k":"H1936","v":[["Hod",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10572]]]]},{"k":"H1937","v":[["Hodevah",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12463]]]]},{"k":"H1938","v":[["Hodaviah",[3,3,[[12,2,2,0,2,[[342,1,1,0,1],[346,1,1,1,2]]],[14,1,1,2,3,[[404,1,1,2,3]]]],[10452,10622,12067]]]]},{"k":"H1939","v":[["Hodaiah",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10385]]]]},{"k":"H1940","v":[["Hodiah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10404]]]]},{"k":"H1941","v":[["Hodijah",[5,5,[[15,5,5,0,5,[[420,1,1,0,1],[421,1,1,1,2],[422,3,3,2,5]]]],[12500,12516,12559,12562,12567]]]]},{"k":"H1942","v":[["*",[16,16,[[17,3,3,0,3,[[441,2,2,0,2],[465,1,1,2,3]]],[18,8,8,3,11,[[482,1,1,3,4],[515,1,1,4,5],[529,2,2,5,7],[532,1,1,7,8],[534,1,1,8,9],[568,1,1,9,10],[571,1,1,10,11]]],[19,4,4,11,15,[[637,1,1,11,12],[638,1,1,12,13],[644,1,1,13,14],[646,1,1,14,15]]],[32,1,1,15,16,[[899,1,1,15,16]]]],[12980,13008,13570,13982,14502,14712,14717,14743,14769,15398,15451,16659,16694,16877,16938,22667]]],["+",[1,1,[[18,1,1,0,1,[[568,1,1,0,1]]]],[15398]]],["Wickedness",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14743]]],["calamities",[1,1,[[18,1,1,0,1,[[534,1,1,0,1]]]],[14769]]],["calamity",[3,3,[[17,2,2,0,2,[[441,1,1,0,1],[465,1,1,1,2]]],[19,1,1,2,3,[[646,1,1,2,3]]]],[12980,13570,16938]]],["iniquity",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15451]]],["mischiefs",[1,1,[[18,1,1,0,1,[[529,1,1,0,1]]]],[14712]]],["mischievous",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22667]]],["naughtiness",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16694]]],["naughty",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16877]]],["substance",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16659]]],["things",[2,2,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,1,1,1,2,[[515,1,1,1,2]]]],[13008,14502]]],["wickedness",[2,2,[[18,2,2,0,2,[[482,1,1,0,1],[529,1,1,1,2]]]],[13982,14717]]]]},{"k":"H1943","v":[["*",[3,2,[[22,1,1,0,1,[[725,1,1,0,1]]],[25,2,1,1,2,[[808,2,1,1,2]]]],[18610,20603]]],["Mischief",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20603]]],["mischief",[2,2,[[22,1,1,0,1,[[725,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]]],[18610,20603]]]]},{"k":"H1944","v":[["Hoham",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6067]]]]},{"k":"H1945","v":[["*",[50,46,[[10,1,1,0,1,[[303,1,1,0,1]]],[22,20,20,1,21,[[679,2,2,1,3],[683,6,6,3,9],[688,1,1,9,10],[695,1,1,10,11],[696,1,1,11,12],[706,1,1,12,13],[707,2,2,13,15],[708,1,1,15,16],[709,1,1,16,17],[711,1,1,17,18],[723,2,2,18,20],[733,1,1,20,21]]],[23,11,8,21,29,[[766,5,2,21,23],[767,1,1,23,24],[774,1,1,24,25],[778,1,1,25,26],[791,1,1,26,27],[792,1,1,27,28],[794,1,1,28,29]]],[25,3,3,29,32,[[814,2,2,29,31],[835,1,1,31,32]]],[29,2,2,32,34,[[883,1,1,32,33],[884,1,1,33,34]]],[32,1,1,34,35,[[894,1,1,34,35]]],[33,1,1,35,36,[[902,1,1,35,36]]],[34,5,5,36,41,[[904,5,5,36,41]]],[35,2,2,41,43,[[907,1,1,41,42],[908,1,1,42,43]]],[37,4,3,43,46,[[912,3,2,43,45],[921,1,1,45,46]]]],[9214,17658,17678,17747,17750,17757,17759,17760,17761,17851,17995,17998,18165,18194,18208,18218,18251,18280,18570,18571,18741,19467,19472,19485,19674,19806,20079,20081,20193,20711,20726,21315,22441,22451,22596,22713,22754,22757,22760,22763,22767,22810,22821,22905,22906,23045]]],["Ah",[7,4,[[22,2,2,0,2,[[679,2,2,0,2]]],[23,5,2,2,4,[[766,4,1,2,3],[778,1,1,3,4]]]],[17658,17678,19472,19806]]],["Alas",[2,2,[[10,1,1,0,1,[[303,1,1,0,1]]],[23,1,1,1,2,[[774,1,1,1,2]]]],[9214,19674]]],["Ho",[2,2,[[22,1,1,0,1,[[733,1,1,0,1]]],[37,1,1,1,2,[[912,1,1,1,2]]]],[18741,22905]]],["O",[2,2,[[23,1,1,0,1,[[791,1,1,0,1]]],[37,1,1,1,2,[[912,1,1,1,2]]]],[20079,22906]]],["Woe",[35,35,[[22,17,17,0,17,[[683,6,6,0,6],[688,1,1,6,7],[695,1,1,7,8],[696,1,1,8,9],[706,1,1,9,10],[707,2,2,10,12],[708,1,1,12,13],[709,1,1,13,14],[711,1,1,14,15],[723,2,2,15,17]]],[23,3,3,17,20,[[766,1,1,17,18],[767,1,1,18,19],[792,1,1,19,20]]],[25,3,3,20,23,[[814,2,2,20,22],[835,1,1,22,23]]],[29,2,2,23,25,[[883,1,1,23,24],[884,1,1,24,25]]],[32,1,1,25,26,[[894,1,1,25,26]]],[33,1,1,26,27,[[902,1,1,26,27]]],[34,5,5,27,32,[[904,5,5,27,32]]],[35,2,2,32,34,[[907,1,1,32,33],[908,1,1,33,34]]],[37,1,1,34,35,[[921,1,1,34,35]]]],[17747,17750,17757,17759,17760,17761,17851,17995,17998,18165,18194,18208,18218,18251,18280,18570,18571,19467,19485,20081,20711,20726,21315,22441,22451,22596,22713,22754,22757,22760,22763,22767,22810,22821,23045]]],["ho",[1,1,[[37,1,1,0,1,[[912,1,1,0,1]]]],[22905]]],["woe",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20193]]]]},{"k":"H1946","v":[["*",[4,3,[[14,4,3,0,3,[[407,1,1,0,1],[408,1,1,1,2],[409,2,1,2,3]]]],[12139,12156,12186]]],["again",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12156]]],["came",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12139]]],["go",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12186]]],["up",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12186]]]]},{"k":"H1947","v":[["madness",[4,4,[[20,4,4,0,4,[[659,1,1,0,1],[660,1,1,1,2],[665,1,1,2,3],[667,1,1,3,4]]]],[17332,17345,17454,17478]]]]},{"k":"H1948","v":[["madness",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17506]]]]},{"k":"H1949","v":[["*",[6,6,[[4,1,1,0,1,[[159,1,1,0,1]]],[7,1,1,1,2,[[232,1,1,1,2]]],[8,1,1,2,3,[[239,1,1,2,3]]],[10,1,1,3,4,[[291,1,1,3,4]]],[18,1,1,4,5,[[532,1,1,4,5]]],[32,1,1,5,6,[[894,1,1,5,6]]]],[5134,7146,7302,8762,14734,22607]]],["destroy",[1,1,[[4,1,1,0,1,[[159,1,1,0,1]]]],[5134]]],["moved",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7146]]],["noise",[2,2,[[18,1,1,0,1,[[532,1,1,0,1]]],[32,1,1,1,2,[[894,1,1,1,2]]]],[14734,22607]]],["rang",[2,2,[[8,1,1,0,1,[[239,1,1,0,1]]],[10,1,1,1,2,[[291,1,1,1,2]]]],[7302,8762]]]]},{"k":"H1950","v":[["Homam",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10291]]]]},{"k":"H1951","v":[["ready",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4933]]]]},{"k":"H1952","v":[["*",[26,26,[[18,3,3,0,3,[[521,1,1,0,1],[589,1,1,1,2],[596,1,1,2,3]]],[19,18,18,3,21,[[628,1,1,3,4],[630,1,1,4,5],[633,1,1,5,6],[635,1,1,6,7],[637,1,1,7,8],[638,1,1,8,9],[639,1,1,9,10],[640,2,2,10,12],[645,1,1,12,13],[646,2,2,13,15],[651,1,1,15,16],[655,2,2,16,18],[656,1,1,18,19],[657,2,2,19,21]]],[21,1,1,21,22,[[678,1,1,21,22]]],[25,4,4,22,26,[[828,4,4,22,26]]]],[14583,15806,15912,16413,16464,16571,16620,16671,16692,16746,16754,16758,16912,16929,16939,17083,17204,17218,17227,17266,17267,17647,21133,21139,21148,21154]]],["+",[2,2,[[18,1,1,0,1,[[521,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]]],[14583,16464]]],["Riches",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16692]]],["Wealth",[3,3,[[18,1,1,0,1,[[589,1,1,0,1]]],[19,2,2,1,3,[[640,1,1,1,2],[646,1,1,2,3]]]],[15806,16758,16929]]],["enough",[2,2,[[19,2,2,0,2,[[657,2,2,0,2]]]],[17266,17267]]],["rich",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17218]]],["riches",[9,9,[[18,1,1,0,1,[[596,1,1,0,1]]],[19,4,4,1,5,[[635,1,1,1,2],[640,1,1,2,3],[646,1,1,3,4],[651,1,1,4,5]]],[25,4,4,5,9,[[828,4,4,5,9]]]],[15912,16620,16754,16939,17083,21133,21139,21148,21154]]],["substance",[6,6,[[19,5,5,0,5,[[628,1,1,0,1],[633,1,1,1,2],[639,1,1,2,3],[655,1,1,3,4],[656,1,1,4,5]]],[21,1,1,5,6,[[678,1,1,5,6]]]],[16413,16571,16746,17204,17227,17647]]],["wealth",[2,2,[[19,2,2,0,2,[[637,1,1,0,1],[645,1,1,1,2]]]],[16671,16912]]]]},{"k":"H1953","v":[["Hoshama",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10379]]]]},{"k":"H1954","v":[["*",[16,15,[[3,2,2,0,2,[[129,2,2,0,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[11,8,8,3,11,[[327,1,1,3,4],[329,4,4,4,8],[330,3,3,8,11]]],[12,1,1,11,12,[[364,1,1,11,12]]],[15,1,1,12,13,[[422,1,1,12,13]]],[27,3,2,13,15,[[862,3,2,13,15]]]],[4083,4091,5802,9955,9984,9986,9987,9989,10025,10033,10034,11129,12572,22095,22096]]],["Hosea",[3,2,[[27,3,2,0,2,[[862,3,2,0,2]]]],[22095,22096]]],["Hoshea",[11,11,[[4,1,1,0,1,[[184,1,1,0,1]]],[11,8,8,1,9,[[327,1,1,1,2],[329,4,4,2,6],[330,3,3,6,9]]],[12,1,1,9,10,[[364,1,1,9,10]]],[15,1,1,10,11,[[422,1,1,10,11]]]],[5802,9955,9984,9986,9987,9989,10025,10033,10034,11129,12572]]],["Oshea",[2,2,[[3,2,2,0,2,[[129,2,2,0,2]]]],[4083,4091]]]]},{"k":"H1955","v":[["Hoshaiah",[3,3,[[15,1,1,0,1,[[424,1,1,0,1]]],[23,2,2,1,3,[[786,1,1,1,2],[787,1,1,2,3]]]],[12656,19976,19999]]]]},{"k":"H1956","v":[["Hothir",[2,2,[[12,2,2,0,2,[[362,2,2,0,2]]]],[11050,11074]]]]},{"k":"H1957","v":[["sleeping",[1,1,[[22,1,1,0,1,[[734,1,1,0,1]]]],[18763]]]]},{"k":"H1958","v":[["woe",[1,1,[[25,1,1,0,1,[[803,1,1,0,1]]]],[20502]]]]},{"k":"H1959","v":[["*",[7,5,[[22,2,2,0,2,[[694,2,2,0,2]]],[23,5,3,2,5,[[769,1,1,2,3],[792,3,1,3,4],[795,1,1,4,5]]]],[17978,17979,19564,20113,20226]]],["shout",[2,2,[[23,2,2,0,2,[[769,1,1,0,1],[795,1,1,1,2]]]],[19564,20226]]],["shouting",[5,3,[[22,2,2,0,2,[[694,2,2,0,2]]],[23,3,1,2,3,[[792,3,1,2,3]]]],[17978,17979,20113]]]]},{"k":"H1960","v":[["thanksgiving",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12632]]]]},{"k":"H1961","v":[["*",[3500,3093,[[0,308,277,0,277,[[0,21,17,0,17],[1,6,6,17,23],[2,4,4,23,27],[3,11,8,27,35],[4,11,11,35,46],[5,6,6,46,52],[6,5,4,52,56],[7,3,3,56,59],[8,12,12,59,71],[9,5,5,71,76],[10,6,5,76,81],[11,6,6,81,87],[12,5,5,87,92],[13,1,1,92,93],[14,5,4,93,97],[15,1,1,97,98],[16,10,8,98,106],[17,5,4,106,110],[18,5,5,110,115],[19,2,2,115,117],[20,4,3,117,120],[21,2,2,120,122],[22,1,1,122,123],[23,10,10,123,133],[24,4,4,133,137],[25,10,8,137,145],[26,8,7,145,152],[27,5,5,152,157],[28,6,6,157,163],[29,8,8,163,171],[30,8,7,171,178],[31,2,2,178,180],[32,1,1,180,181],[33,7,6,181,187],[34,10,9,187,196],[35,6,6,196,202],[36,4,4,202,206],[37,12,11,206,217],[38,17,13,217,230],[39,4,4,230,234],[40,13,10,234,244],[41,5,5,244,249],[42,2,2,249,251],[43,6,5,251,256],[44,1,1,256,257],[45,4,4,257,261],[46,8,7,261,268],[47,6,5,268,273],[48,3,3,273,276],[49,1,1,276,277]]],[1,232,200,277,477,[[50,4,3,277,280],[51,4,4,280,284],[52,6,4,284,288],[53,11,8,288,296],[54,1,1,296,297],[55,2,2,297,299],[56,7,6,299,305],[57,7,6,305,311],[58,13,10,311,321],[59,9,8,321,329],[60,2,1,329,330],[61,16,14,330,344],[62,9,8,344,352],[63,2,2,352,354],[64,1,1,354,355],[65,9,7,355,362],[66,2,2,362,364],[67,6,5,364,369],[68,7,6,369,375],[69,2,2,375,377],[70,5,5,377,382],[71,7,7,382,389],[72,6,6,389,395],[73,2,2,395,397],[74,6,5,397,402],[75,9,6,402,408],[76,4,4,408,412],[77,18,13,412,425],[78,7,6,425,431],[79,12,12,431,443],[81,4,4,443,447],[82,4,4,447,451],[83,5,5,451,456],[84,1,1,456,457],[85,6,5,457,462],[86,5,5,462,467],[87,3,3,467,470],[88,2,2,470,472],[89,6,5,472,477]]],[2,143,126,477,603,[[91,2,2,477,479],[94,2,2,479,481],[95,2,2,481,483],[96,8,8,483,491],[97,1,1,491,492],[98,1,1,492,493],[99,1,1,493,494],[100,6,5,494,499],[102,15,13,499,512],[103,3,3,512,515],[104,11,8,515,523],[105,4,4,523,527],[106,1,1,527,528],[108,7,6,528,534],[109,6,5,534,539],[110,6,5,539,544],[111,7,6,544,550],[112,9,9,550,559],[113,5,4,559,563],[114,22,20,563,583],[115,7,6,583,589],[116,17,14,589,603]]],[3,178,157,603,760,[[117,5,5,603,608],[119,6,6,608,614],[120,6,6,614,620],[121,7,5,620,625],[122,1,1,625,626],[123,3,3,626,629],[124,3,3,629,632],[125,9,8,632,640],[126,8,7,640,647],[127,4,4,647,651],[128,2,2,651,653],[129,2,1,653,654],[130,5,5,654,659],[131,9,9,659,668],[132,7,7,668,675],[133,2,2,675,677],[134,9,8,677,685],[135,5,5,685,690],[136,1,1,690,691],[137,2,2,691,693],[138,1,1,693,694],[139,1,1,694,695],[140,4,3,695,698],[141,2,2,698,700],[142,9,9,700,709],[143,4,3,709,712],[144,5,5,712,717],[145,7,6,717,723],[146,2,1,723,724],[147,8,7,724,731],[148,4,3,731,734],[149,4,4,734,738],[150,12,8,738,746],[151,9,8,746,754],[152,10,6,754,760]]],[4,169,154,760,914,[[153,2,2,760,762],[154,3,3,762,765],[155,1,1,765,766],[156,3,2,766,768],[157,4,4,768,772],[158,5,5,772,777],[159,5,4,777,781],[160,1,1,781,782],[161,3,3,782,785],[162,4,4,785,789],[163,6,5,789,794],[164,2,2,794,796],[165,2,2,796,798],[166,1,1,798,799],[167,9,8,799,807],[168,2,2,807,809],[169,5,5,809,814],[170,6,6,814,820],[171,4,4,820,824],[172,6,4,824,828],[173,10,8,828,836],[174,6,6,836,842],[175,11,9,842,851],[176,11,11,851,862],[177,9,8,862,870],[178,6,6,870,876],[179,3,3,876,879],[180,21,18,879,897],[181,3,2,897,899],[182,2,2,899,901],[183,8,8,901,909],[184,1,1,909,910],[185,4,4,910,914]]],[5,141,122,914,1036,[[187,6,4,914,918],[188,6,4,918,922],[189,6,5,922,927],[190,6,6,927,933],[191,8,6,933,939],[192,8,7,939,946],[193,5,4,946,950],[194,9,9,950,959],[195,5,5,959,964],[196,8,7,964,971],[197,4,3,971,974],[199,5,5,974,979],[200,3,3,979,982],[201,7,6,982,988],[202,4,3,988,991],[203,14,12,991,1003],[204,5,4,1003,1007],[205,12,11,1007,1018],[206,3,3,1018,1021],[207,6,5,1021,1026],[208,4,4,1026,1030],[209,3,3,1030,1033],[210,4,3,1033,1036]]],[6,119,105,1036,1141,[[211,7,7,1036,1043],[212,6,5,1043,1048],[213,4,4,1048,1052],[214,2,2,1052,1054],[216,11,9,1054,1063],[217,7,7,1063,1070],[218,6,5,1070,1075],[219,3,3,1075,1078],[220,2,2,1078,1080],[221,14,11,1080,1091],[222,4,4,1091,1095],[223,5,5,1095,1100],[224,6,4,1100,1104],[225,4,4,1104,1108],[226,8,8,1108,1116],[227,9,8,1116,1124],[228,7,5,1124,1129],[229,6,4,1129,1133],[230,4,4,1133,1137],[231,4,4,1137,1141]]],[7,21,19,1141,1160,[[232,9,7,1141,1148],[233,4,4,1148,1152],[234,4,4,1152,1156],[235,4,4,1156,1160]]],[8,163,142,1160,1302,[[236,7,7,1160,1167],[237,6,6,1167,1173],[238,4,4,1173,1177],[239,8,7,1177,1184],[240,4,3,1184,1187],[241,2,2,1187,1189],[242,5,4,1189,1193],[243,6,6,1193,1199],[244,3,3,1199,1202],[245,6,5,1202,1207],[246,4,3,1207,1210],[247,2,2,1210,1212],[248,5,4,1212,1216],[249,15,12,1216,1228],[250,2,2,1228,1230],[251,6,4,1230,1234],[252,8,7,1234,1241],[253,13,10,1241,1251],[254,5,5,1251,1256],[255,6,5,1256,1261],[256,2,2,1261,1263],[257,3,2,1263,1265],[258,6,5,1265,1270],[259,6,6,1270,1276],[260,16,13,1276,1289],[262,3,3,1289,1292],[263,4,4,1292,1296],[264,3,3,1296,1299],[265,2,2,1299,1301],[266,1,1,1301,1302]]],[9,151,131,1302,1433,[[267,4,3,1302,1305],[268,10,9,1305,1314],[269,7,5,1314,1319],[270,5,4,1319,1323],[271,4,2,1323,1325],[272,4,4,1325,1329],[273,13,11,1329,1340],[274,8,7,1340,1347],[275,2,2,1347,1349],[276,4,4,1349,1353],[277,7,7,1353,1360],[278,8,6,1360,1366],[279,11,10,1366,1376],[280,7,5,1376,1381],[281,15,13,1381,1394],[282,3,3,1394,1397],[283,5,4,1397,1401],[284,6,6,1401,1407],[285,10,10,1407,1417],[286,2,2,1417,1419],[287,7,5,1419,1424],[288,2,2,1424,1426],[289,2,2,1426,1428],[290,5,5,1428,1433]]],[10,189,163,1433,1596,[[291,8,6,1433,1439],[292,11,8,1439,1447],[293,5,5,1447,1452],[294,7,7,1452,1459],[295,7,7,1459,1466],[296,3,3,1466,1469],[297,1,1,1469,1470],[298,20,14,1470,1484],[299,6,6,1484,1490],[300,7,7,1490,1497],[301,16,13,1497,1510],[302,11,9,1510,1519],[303,11,9,1519,1528],[304,9,9,1528,1537],[305,8,8,1537,1545],[306,8,7,1545,1552],[307,8,6,1552,1558],[308,17,14,1558,1572],[309,2,2,1572,1574],[310,9,8,1574,1582],[311,9,8,1582,1590],[312,6,6,1590,1596]]],[11,113,102,1596,1698,[[313,1,1,1596,1597],[314,7,5,1597,1602],[315,7,6,1602,1608],[316,10,9,1608,1617],[317,5,4,1617,1621],[318,7,6,1621,1627],[319,7,6,1627,1633],[320,5,5,1633,1638],[321,3,3,1638,1641],[322,3,3,1641,1644],[323,3,3,1644,1647],[324,3,3,1647,1650],[325,1,1,1650,1651],[326,2,2,1651,1653],[327,5,5,1653,1658],[328,1,1,1658,1659],[329,8,7,1659,1666],[330,7,6,1666,1672],[331,5,5,1672,1677],[332,6,5,1677,1682],[333,2,2,1682,1684],[334,3,3,1684,1687],[335,2,2,1687,1689],[336,4,4,1689,1693],[337,6,5,1693,1698]]],[12,104,94,1698,1792,[[338,2,2,1698,1700],[339,10,10,1700,1710],[340,1,1,1710,1711],[341,4,4,1711,1715],[343,3,3,1715,1718],[344,3,3,1718,1721],[345,2,2,1721,1723],[346,3,3,1723,1726],[347,1,1,1726,1727],[348,8,5,1727,1732],[349,3,3,1732,1735],[351,2,2,1735,1737],[352,3,3,1737,1740],[353,1,1,1740,1741],[354,14,10,1741,1751],[355,7,7,1751,1758],[356,4,4,1758,1762],[357,6,5,1762,1767],[358,3,3,1767,1770],[359,8,7,1770,1777],[360,5,4,1777,1781],[361,3,3,1781,1784],[362,2,2,1784,1786],[363,1,1,1786,1787],[364,1,1,1787,1788],[365,3,3,1788,1791],[366,1,1,1791,1792]]],[13,133,119,1792,1911,[[367,5,4,1792,1796],[371,4,4,1796,1800],[372,14,9,1800,1809],[373,5,4,1809,1813],[374,2,2,1813,1815],[375,7,7,1815,1822],[376,6,4,1822,1826],[377,3,3,1826,1829],[378,6,6,1829,1835],[379,5,5,1835,1840],[380,3,2,1840,1842],[381,4,4,1842,1846],[382,2,2,1846,1848],[383,5,5,1848,1853],[384,7,6,1853,1859],[385,3,3,1859,1862],[386,4,4,1862,1866],[387,4,4,1866,1870],[388,6,6,1870,1876],[389,2,2,1876,1878],[390,7,6,1878,1884],[391,3,3,1884,1887],[392,6,5,1887,1892],[393,1,1,1892,1893],[394,2,2,1893,1895],[395,5,5,1895,1900],[396,5,4,1900,1904],[398,3,3,1904,1907],[399,1,1,1907,1908],[400,1,1,1908,1909],[402,2,2,1909,1911]]],[14,4,4,1911,1915,[[403,1,1,1911,1912],[410,1,1,1912,1913],[411,2,2,1913,1915]]],[15,48,41,1915,1956,[[413,8,5,1915,1920],[414,8,6,1920,1926],[415,1,1,1926,1927],[416,8,8,1927,1935],[417,4,4,1935,1939],[418,7,6,1939,1945],[419,1,1,1945,1946],[420,2,2,1946,1948],[422,1,1,1948,1949],[424,1,1,1949,1950],[425,7,6,1950,1956]]],[16,16,16,1956,1972,[[426,2,2,1956,1958],[427,6,6,1958,1964],[428,2,2,1964,1966],[430,2,2,1966,1968],[431,1,1,1968,1969],[433,2,2,1969,1971],[434,1,1,1971,1972]]],[17,49,45,1972,2017,[[436,9,7,1972,1979],[437,1,1,1979,1980],[438,3,3,1980,1983],[440,1,1,1983,1984],[441,3,3,1984,1987],[443,1,1,1987,1988],[445,2,1,1988,1989],[446,3,3,1989,1992],[447,1,1,1992,1993],[448,1,1,1993,1994],[450,1,1,1994,1995],[451,3,3,1995,1998],[452,1,1,1998,1999],[453,1,1,1999,2000],[454,1,1,2000,2001],[455,1,1,2001,2002],[456,2,2,2002,2004],[457,1,1,2004,2005],[459,2,2,2005,2007],[462,1,1,2007,2008],[464,2,2,2008,2010],[465,4,3,2010,2013],[473,1,1,2013,2014],[477,3,3,2014,2017]]],[18,102,99,2017,2116,[[478,1,1,2017,2018],[486,1,1,2018,2019],[487,1,1,2019,2020],[495,2,2,2020,2022],[496,1,1,2022,2023],[499,1,1,2023,2024],[504,1,1,2024,2025],[507,2,2,2025,2027],[508,3,3,2027,2030],[509,1,1,2030,2031],[510,2,2,2031,2033],[512,2,2,2033,2035],[514,2,2,2035,2037],[515,1,1,2037,2038],[519,1,1,2038,2039],[522,1,1,2039,2040],[527,2,1,2040,2041],[530,1,1,2041,2042],[532,1,1,2042,2043],[536,1,1,2043,2044],[538,1,1,2044,2045],[540,2,2,2045,2047],[541,1,1,2047,2048],[546,6,5,2048,2053],[548,2,2,2053,2055],[549,2,2,2055,2057],[550,3,3,2057,2060],[553,1,1,2060,2061],[555,1,1,2061,2062],[556,1,1,2062,2063],[557,1,1,2063,2064],[558,2,2,2064,2066],[560,2,2,2066,2068],[565,1,1,2068,2069],[566,2,2,2069,2071],[567,3,3,2071,2074],[569,1,1,2074,2075],[571,1,1,2075,2076],[576,1,1,2076,2077],[579,2,2,2077,2079],[581,2,2,2079,2081],[582,1,1,2081,2082],[583,1,1,2082,2083],[586,9,8,2083,2091],[589,2,2,2091,2093],[590,1,1,2093,2094],[591,1,1,2094,2095],[592,1,1,2095,2096],[595,4,4,2096,2100],[596,6,6,2100,2106],[599,2,2,2106,2108],[601,2,2,2108,2110],[603,2,2,2110,2112],[606,1,1,2112,2113],[607,1,1,2113,2114],[612,1,1,2114,2115],[616,1,1,2115,2116]]],[19,28,27,2116,2143,[[628,1,1,2116,2117],[630,5,5,2117,2122],[631,1,1,2122,2123],[632,3,3,2123,2126],[635,2,1,2126,2127],[639,2,2,2127,2129],[640,1,1,2129,2130],[641,3,3,2130,2133],[649,2,2,2133,2135],[650,2,2,2135,2137],[651,3,3,2137,2140],[653,1,1,2140,2141],[656,1,1,2141,2142],[658,1,1,2142,2143]]],[20,47,35,2143,2178,[[659,9,5,2143,2148],[660,7,5,2148,2153],[661,6,4,2153,2157],[662,2,2,2157,2159],[663,1,1,2159,2160],[664,4,3,2160,2163],[665,7,6,2163,2169],[666,4,3,2169,2172],[667,1,1,2172,2173],[668,2,1,2173,2174],[669,2,2,2174,2176],[670,2,2,2176,2178]]],[21,4,4,2178,2182,[[671,1,1,2178,2179],[677,1,1,2179,2180],[678,2,2,2180,2182]]],[22,208,186,2182,2368,[[679,8,7,2182,2189],[680,2,1,2189,2190],[681,4,3,2190,2193],[682,3,3,2193,2196],[683,7,6,2196,2202],[684,1,1,2202,2203],[685,11,8,2203,2211],[686,2,2,2211,2213],[687,3,3,2213,2216],[688,9,9,2216,2225],[689,6,4,2225,2229],[690,1,1,2229,2230],[691,2,2,2230,2232],[692,4,4,2232,2236],[693,2,1,2236,2237],[694,3,2,2237,2239],[695,8,6,2239,2245],[696,1,1,2245,2246],[697,9,9,2246,2255],[700,4,4,2255,2259],[701,6,5,2259,2264],[702,4,4,2264,2268],[703,1,1,2268,2269],[704,1,1,2269,2270],[705,2,2,2270,2272],[706,5,5,2272,2277],[707,11,8,2277,2285],[708,12,11,2285,2296],[709,1,1,2296,2297],[710,4,4,2297,2301],[711,4,4,2301,2305],[712,3,3,2305,2308],[713,3,3,2308,2311],[714,1,1,2311,2312],[715,4,4,2312,2316],[716,1,1,2316,2317],[717,4,4,2317,2321],[718,1,1,2321,2322],[719,2,2,2322,2324],[720,1,1,2324,2325],[721,1,1,2325,2326],[722,1,1,2326,2327],[723,1,1,2327,2328],[724,1,1,2328,2329],[725,3,3,2329,2332],[726,3,3,2332,2335],[727,4,3,2335,2338],[728,1,1,2338,2339],[729,2,2,2339,2341],[733,3,3,2341,2344],[734,2,2,2344,2346],[736,2,2,2346,2348],[737,3,3,2348,2351],[738,5,4,2351,2355],[739,1,1,2355,2356],[740,1,1,2356,2357],[741,2,2,2357,2359],[742,5,3,2359,2362],[743,3,3,2362,2365],[744,3,3,2365,2368]]],[23,262,242,2368,2610,[[745,5,5,2368,2373],[746,5,5,2373,2378],[747,4,4,2378,2382],[748,4,4,2382,2386],[749,5,5,2386,2391],[750,1,1,2391,2392],[751,7,6,2392,2398],[752,1,1,2398,2399],[755,5,4,2399,2403],[756,3,3,2403,2406],[757,5,5,2406,2411],[758,8,8,2411,2419],[759,6,4,2419,2423],[760,4,4,2423,2427],[761,8,7,2427,2434],[762,5,4,2434,2438],[763,1,1,2438,2439],[764,7,7,2439,2446],[765,2,2,2446,2448],[766,2,2,2448,2450],[767,6,6,2450,2456],[768,3,2,2456,2458],[769,8,7,2458,2465],[770,7,6,2465,2471],[771,4,4,2471,2475],[772,3,3,2475,2478],[773,4,4,2478,2482],[774,7,6,2482,2488],[775,8,6,2488,2494],[776,10,9,2494,2503],[777,8,8,2503,2511],[778,6,6,2511,2517],[779,5,5,2517,2522],[780,9,7,2522,2529],[781,3,3,2529,2532],[782,2,2,2532,2534],[783,5,4,2534,2538],[784,2,2,2538,2540],[785,7,7,2540,2547],[786,8,6,2547,2553],[787,2,2,2553,2555],[788,8,8,2555,2563],[790,3,3,2563,2566],[791,2,2,2566,2568],[792,9,9,2568,2577],[793,10,9,2577,2586],[794,9,9,2586,2595],[795,9,8,2595,2603],[796,7,7,2603,2610]]],[24,23,22,2610,2632,[[797,11,10,2610,2620],[798,2,2,2620,2622],[799,3,3,2622,2625],[800,4,4,2625,2629],[801,3,3,2629,2632]]],[25,336,282,2632,2914,[[802,9,7,2632,2639],[803,2,2,2639,2641],[804,5,4,2641,2645],[805,1,1,2645,2646],[806,2,2,2646,2648],[807,3,3,2648,2651],[808,7,6,2651,2657],[809,1,1,2657,2658],[810,2,2,2658,2660],[811,2,2,2660,2662],[812,7,5,2662,2667],[813,7,7,2667,2674],[814,7,6,2674,2680],[815,8,7,2680,2687],[816,4,3,2687,2690],[817,14,11,2690,2701],[818,9,7,2701,2708],[819,7,6,2708,2714],[820,6,5,2714,2719],[821,9,7,2719,2726],[822,14,11,2726,2737],[823,9,8,2737,2745],[824,5,5,2745,2750],[825,6,6,2750,2756],[826,1,1,2756,2757],[827,6,4,2757,2761],[828,12,8,2761,2769],[829,7,7,2769,2776],[830,11,10,2776,2786],[831,9,8,2786,2794],[832,6,5,2794,2799],[833,6,4,2799,2803],[834,8,8,2803,2811],[835,15,14,2811,2825],[836,6,5,2825,2830],[837,12,11,2830,2841],[838,16,12,2841,2853],[839,9,9,2853,2862],[840,3,3,2862,2865],[841,2,2,2865,2867],[842,2,1,2867,2868],[844,2,2,2868,2870],[845,13,11,2870,2881],[846,14,12,2881,2893],[847,6,5,2893,2898],[848,10,6,2898,2904],[849,14,10,2904,2914]]],[26,22,18,2914,2932,[[850,2,2,2914,2916],[851,1,1,2916,2917],[857,8,6,2917,2923],[858,1,1,2923,2924],[859,4,4,2924,2928],[860,3,3,2928,2931],[861,3,1,2931,2932]]],[27,27,26,2932,2958,[[862,5,4,2932,2936],[863,2,2,2936,2938],[864,1,1,2938,2939],[865,1,1,2939,2940],[866,3,3,2940,2943],[868,4,4,2943,2947],[869,3,3,2947,2950],[870,2,2,2950,2952],[872,1,1,2952,2953],[873,1,1,2953,2954],[874,2,2,2954,2956],[875,2,2,2956,2958]]],[28,11,9,2958,2967,[[876,2,2,2958,2960],[877,5,4,2960,2964],[878,4,3,2964,2967]]],[29,10,10,2967,2977,[[879,1,1,2967,2968],[881,1,1,2968,2969],[882,1,1,2969,2970],[883,2,2,2970,2972],[884,1,1,2972,2973],[885,3,3,2973,2976],[886,1,1,2976,2977]]],[30,7,4,2977,2981,[[888,7,4,2977,2981]]],[31,10,10,2981,2991,[[889,3,3,2981,2984],[891,2,2,2984,2986],[892,5,5,2986,2991]]],[32,19,17,2991,3008,[[893,2,2,2991,2993],[894,3,3,2993,2996],[895,1,1,2996,2997],[896,2,1,2997,2998],[897,7,6,2998,3004],[899,4,4,3004,3008]]],[33,3,3,3008,3011,[[902,3,3,3008,3011]]],[34,3,3,3011,3014,[[903,1,1,3011,3012],[904,1,1,3012,3013],[905,1,1,3013,3014]]],[35,11,11,3014,3025,[[906,5,5,3014,3019],[907,5,5,3019,3024],[908,1,1,3024,3025]]],[36,9,7,3025,3032,[[909,2,2,3025,3027],[910,7,5,3027,3032]]],[37,66,50,3032,3082,[[911,3,3,3032,3035],[912,4,3,3035,3038],[913,1,1,3038,3039],[914,1,1,3039,3040],[916,5,4,3040,3044],[917,7,6,3044,3050],[918,9,6,3050,3056],[919,1,1,3056,3057],[920,3,3,3057,3060],[922,3,3,3060,3063],[923,5,5,3063,3068],[924,24,14,3068,3082]]],[38,11,11,3082,3093,[[925,1,1,3082,3083],[926,3,3,3083,3086],[927,5,5,3086,3091],[928,2,2,3091,3093]]]],[1,2,4,5,6,7,8,10,12,13,14,18,22,23,28,29,30,35,37,40,48,54,55,56,60,75,77,81,82,87,91,93,96,99,100,109,110,113,116,119,122,125,128,132,136,137,138,140,141,146,156,158,165,169,171,176,188,189,196,207,208,216,218,219,220,221,223,230,231,232,234,242,243,244,253,264,267,268,269,296,298,300,308,309,310,312,314,321,323,324,325,326,337,361,365,373,377,393,398,401,402,404,405,408,410,413,435,436,442,449,471,474,483,486,491,507,508,533,535,543,548,567,572,605,606,613,621,632,634,642,643,651,658,661,669,678,685,693,695,700,706,720,724,726,727,728,739,750,757,760,766,767,776,787,793,794,795,805,808,812,815,818,820,855,859,860,862,864,871,872,873,876,878,881,883,913,915,917,933,938,969,985,990,995,996,1002,1005,1014,1016,1021,1022,1027,1028,1029,1033,1039,1047,1051,1052,1053,1054,1062,1085,1103,1106,1110,1120,1124,1126,1128,1140,1141,1142,1143,1146,1147,1148,1151,1154,1155,1156,1159,1160,1162,1164,1167,1168,1169,1170,1171,1173,1176,1185,1192,1196,1203,1208,1222,1231,1235,1243,1248,1249,1251,1257,1263,1283,1287,1288,1292,1311,1333,1334,1341,1348,1355,1368,1398,1418,1419,1420,1429,1439,1440,1444,1445,1446,1448,1452,1456,1457,1470,1472,1488,1490,1499,1515,1537,1542,1553,1564,1565,1576,1577,1580,1591,1593,1600,1604,1605,1609,1610,1613,1616,1617,1625,1645,1662,1683,1686,1694,1695,1697,1704,1706,1725,1726,1727,1728,1732,1733,1745,1751,1752,1753,1760,1764,1766,1768,1770,1771,1783,1784,1787,1790,1791,1798,1799,1800,1812,1820,1821,1822,1829,1830,1832,1841,1842,1845,1846,1857,1864,1865,1867,1872,1876,1878,1879,1881,1882,1883,1884,1909,1913,1922,1952,1957,1960,1969,1971,1973,1974,1994,1995,2002,2012,2015,2018,2021,2031,2032,2037,2041,2042,2045,2054,2071,2081,2099,2100,2111,2113,2124,2134,2137,2138,2140,2143,2144,2145,2146,2153,2170,2173,2177,2189,2195,2210,2215,2222,2226,2231,2238,2241,2246,2248,2259,2260,2273,2274,2277,2279,2300,2301,2309,2313,2314,2321,2323,2325,2328,2330,2331,2335,2336,2345,2362,2364,2365,2373,2381,2384,2386,2394,2398,2403,2407,2411,2413,2414,2416,2418,2419,2439,2457,2461,2468,2480,2481,2482,2495,2497,2498,2508,2524,2525,2533,2573,2579,2584,2595,2596,2613,2618,2621,2626,2629,2635,2657,2660,2673,2685,2716,2717,2722,2724,2745,2763,2767,2835,2843,2853,2872,2886,2887,2888,2889,2893,2897,2910,2912,2946,2954,2992,3008,3032,3033,3041,3042,3054,3061,3070,3071,3076,3081,3084,3090,3094,3097,3099,3101,3104,3113,3120,3133,3170,3171,3178,3185,3187,3192,3193,3194,3205,3218,3230,3235,3242,3283,3301,3304,3305,3315,3317,3325,3332,3339,3344,3345,3348,3351,3353,3362,3364,3381,3382,3389,3390,3396,3402,3409,3417,3419,3420,3422,3423,3426,3429,3438,3451,3453,3455,3468,3473,3474,3475,3476,3477,3479,3480,3481,3495,3497,3498,3500,3501,3507,3509,3513,3514,3517,3519,3522,3536,3537,3557,3561,3568,3569,3573,3574,3575,3576,3577,3579,3580,3582,3585,3586,3591,3595,3602,3603,3608,3648,3649,3650,3657,3696,3704,3705,3709,3735,3737,3750,3770,3779,3783,3787,3791,3801,3802,3809,3810,3819,3828,3851,3855,3862,3950,3953,3958,3971,3975,3978,3979,3980,3981,3985,3986,3990,3996,3998,3999,4019,4020,4023,4032,4044,4049,4059,4065,4071,4108,4111,4132,4139,4141,4151,4168,4169,4172,4177,4182,4185,4192,4193,4194,4201,4210,4225,4232,4234,4236,4243,4249,4252,4262,4266,4267,4270,4271,4272,4275,4277,4298,4299,4302,4307,4310,4313,4348,4349,4416,4426,4448,4464,4468,4480,4484,4490,4496,4499,4509,4510,4522,4529,4551,4553,4557,4565,4571,4591,4596,4602,4603,4608,4609,4615,4616,4620,4621,4643,4654,4667,4680,4696,4700,4701,4707,4716,4719,4740,4744,4774,4814,4815,4816,4819,4820,4821,4822,4823,4824,4825,4828,4848,4850,4856,4857,4858,4859,4860,4874,4882,4883,4885,4887,4890,4891,4895,4931,4953,4954,4974,4979,5024,5036,5060,5068,5076,5082,5092,5094,5096,5107,5111,5117,5123,5125,5137,5156,5164,5168,5181,5188,5191,5195,5205,5221,5225,5226,5232,5237,5251,5266,5281,5288,5292,5322,5323,5326,5328,5334,5335,5336,5340,5354,5357,5365,5371,5373,5382,5383,5385,5386,5387,5397,5403,5406,5409,5416,5417,5423,5429,5436,5438,5441,5450,5452,5460,5461,5462,5463,5465,5469,5472,5475,5489,5490,5493,5499,5507,5510,5511,5512,5513,5514,5517,5521,5522,5526,5527,5529,5530,5538,5540,5543,5544,5545,5546,5547,5548,5549,5552,5553,5560,5561,5562,5566,5567,5569,5571,5583,5584,5585,5587,5589,5594,5612,5624,5626,5634,5636,5637,5640,5644,5645,5648,5651,5652,5655,5657,5673,5674,5676,5677,5692,5698,5709,5712,5736,5745,5747,5749,5751,5752,5754,5755,5796,5815,5816,5817,5834,5852,5855,5856,5868,5874,5883,5888,5889,5895,5897,5900,5906,5907,5911,5916,5917,5919,5921,5928,5935,5939,5941,5942,5946,5947,5954,5957,5964,5965,5966,5969,5976,5981,5988,5990,5991,6006,6007,6010,6016,6022,6024,6026,6027,6037,6038,6049,6053,6057,6058,6065,6075,6078,6084,6088,6090,6091,6108,6126,6127,6170,6177,6179,6183,6184,6191,6196,6201,6203,6204,6206,6209,6220,6223,6268,6270,6273,6276,6277,6278,6281,6282,6283,6284,6285,6286,6288,6292,6293,6305,6307,6312,6314,6322,6323,6330,6331,6335,6339,6343,6346,6350,6354,6362,6375,6378,6381,6385,6391,6401,6421,6423,6443,6444,6446,6454,6461,6473,6475,6503,6505,6508,6510,6523,6528,6537,6539,6542,6544,6548,6549,6560,6563,6564,6572,6578,6595,6599,6608,6619,6657,6661,6670,6679,6681,6691,6692,6693,6694,6695,6698,6700,6702,6703,6709,6711,6730,6745,6746,6749,6752,6787,6796,6805,6815,6829,6830,6833,6834,6835,6837,6838,6839,6858,6860,6864,6868,6871,6874,6878,6883,6886,6889,6891,6896,6904,6920,6924,6926,6929,6930,6931,6943,6946,6953,6956,6960,6965,6966,6970,6974,6979,6981,6984,6985,6987,6990,6991,6992,6993,6997,7012,7020,7023,7024,7025,7026,7029,7054,7057,7066,7092,7100,7105,7106,7107,7124,7128,7129,7134,7138,7139,7140,7146,7161,7162,7166,7168,7174,7176,7180,7185,7202,7203,7205,7206,7213,7214,7216,7224,7230,7232,7240,7251,7257,7267,7271,7272,7276,7277,7278,7285,7295,7298,7304,7306,7307,7313,7314,7315,7328,7329,7330,7332,7340,7354,7362,7365,7366,7370,7371,7380,7386,7388,7389,7392,7393,7417,7423,7425,7427,7429,7430,7453,7454,7456,7474,7475,7487,7495,7506,7507,7509,7522,7523,7526,7527,7528,7529,7533,7546,7548,7557,7560,7570,7586,7601,7611,7616,7618,7627,7643,7652,7654,7655,7660,7666,7677,7682,7686,7688,7693,7694,7695,7697,7705,7706,7713,7714,7715,7726,7729,7743,7754,7757,7765,7772,7778,7780,7789,7791,7816,7827,7832,7833,7836,7840,7844,7851,7852,7854,7855,7863,7868,7876,7877,7881,7887,7890,7891,7892,7898,7899,7903,7904,7936,7937,7942,7943,7958,7962,7964,7970,7971,7975,7979,8003,8017,8023,8024,8026,8050,8056,8059,8060,8066,8067,8072,8074,8075,8082,8083,8087,8098,8118,8122,8123,8124,8130,8134,8156,8170,8173,8179,8180,8181,8184,8186,8188,8189,8194,8196,8204,8206,8208,8209,8210,8211,8215,8216,8219,8223,8227,8236,8237,8241,8245,8249,8251,8260,8261,8273,8275,8279,8282,8286,8287,8288,8289,8296,8304,8316,8318,8330,8337,8340,8345,8347,8349,8352,8353,8355,8358,8373,8381,8382,8383,8390,8391,8393,8394,8396,8401,8402,8403,8410,8421,8422,8423,8424,8442,8444,8445,8452,8458,8470,8476,8484,8485,8486,8500,8501,8510,8513,8520,8522,8523,8524,8533,8536,8539,8546,8554,8557,8580,8581,8595,8598,8599,8600,8621,8626,8664,8672,8701,8703,8705,8708,8709,8725,8738,8744,8752,8754,8769,8772,8777,8785,8797,8803,8807,8809,8815,8828,8829,8834,8837,8842,8845,8866,8868,8870,8872,8875,8876,8879,8884,8885,8890,8891,8892,8893,8897,8907,8913,8942,8993,8995,9001,9002,9003,9014,9020,9022,9023,9037,9039,9042,9044,9046,9052,9054,9058,9059,9061,9070,9081,9082,9084,9085,9088,9093,9105,9111,9112,9119,9123,9128,9132,9133,9137,9140,9144,9145,9146,9148,9153,9157,9158,9166,9171,9173,9175,9181,9182,9188,9190,9204,9207,9208,9215,9216,9217,9218,9221,9223,9224,9226,9227,9242,9243,9246,9248,9252,9255,9256,9263,9265,9270,9278,9281,9284,9290,9294,9301,9304,9314,9316,9318,9319,9321,9324,9325,9334,9342,9344,9345,9348,9353,9358,9365,9368,9370,9372,9377,9385,9386,9387,9400,9404,9414,9420,9423,9434,9437,9447,9448,9450,9452,9453,9466,9467,9468,9476,9478,9479,9482,9493,9502,9512,9513,9515,9550,9552,9560,9561,9562,9572,9580,9581,9585,9591,9596,9603,9604,9609,9611,9613,9614,9621,9628,9643,9644,9648,9649,9654,9655,9679,9694,9698,9699,9700,9704,9709,9710,9723,9725,9726,9727,9730,9732,9742,9744,9745,9770,9778,9793,9800,9802,9818,9832,9837,9846,9856,9860,9866,9892,9898,9901,9927,9930,9937,9944,9958,9978,9985,9986,9990,10008,10015,10016,10024,10025,10026,10028,10029,10031,10033,10062,10086,10087,10096,10098,10102,10111,10113,10116,10117,10133,10134,10148,10156,10164,10190,10192,10203,10205,10209,10222,10223,10225,10238,10247,10249,10262,10303,10309,10328,10331,10332,10333,10334,10339,10340,10356,10358,10362,10390,10394,10395,10399,10486,10508,10520,10550,10554,10558,10578,10615,10635,10639,10641,10667,10675,10679,10686,10693,10694,10737,10741,10759,10778,10789,10816,10817,10820,10839,10864,10866,10868,10870,10871,10874,10876,10877,10885,10890,10891,10892,10896,10897,10900,10903,10904,10908,10912,10917,10919,10927,10928,10930,10931,10932,10937,10939,10951,10971,10972,10973,10974,10975,10978,10980,10986,10994,11000,11005,11017,11020,11043,11047,11053,11087,11133,11147,11149,11155,11189,11197,11205,11206,11208,11276,11277,11279,11281,11287,11288,11289,11290,11302,11308,11310,11311,11322,11337,11339,11340,11345,11347,11352,11365,11368,11372,11373,11377,11389,11390,11397,11401,11402,11410,11416,11418,11426,11438,11439,11444,11445,11448,11449,11455,11460,11462,11466,11468,11483,11489,11491,11492,11507,11509,11514,11517,11526,11528,11533,11535,11536,11543,11554,11563,11573,11574,11576,11583,11586,11587,11588,11601,11612,11616,11630,11633,11643,11644,11647,11648,11651,11652,11655,11656,11663,11672,11681,11688,11689,11691,11695,11700,11707,11718,11720,11737,11742,11743,11747,11753,11763,11773,11787,11799,11802,11823,11825,11827,11834,11837,11839,11853,11900,11902,11906,11912,11952,12009,12013,12019,12232,12239,12245,12297,12300,12302,12305,12307,12308,12313,12318,12320,12322,12324,12353,12360,12363,12365,12366,12371,12374,12375,12381,12383,12395,12396,12400,12402,12409,12414,12415,12417,12420,12421,12498,12510,12587,12636,12674,12676,12677,12690,12693,12697,12703,12724,12729,12731,12732,12736,12739,12744,12751,12761,12780,12781,12794,12830,12833,12855,12870,12872,12874,12875,12882,12883,12890,12892,12908,12911,12920,12967,12988,12999,13007,13036,13105,13112,13123,13125,13132,13158,13234,13246,13250,13256,13266,13288,13312,13349,13357,13373,13414,13449,13450,13488,13536,13547,13566,13586,13588,13797,13929,13934,13935,13942,14030,14055,14136,14141,14182,14218,14294,14326,14329,14333,14342,14343,14364,14375,14388,14415,14416,14468,14475,14504,14558,14613,14689,14724,14750,14806,14822,14846,14849,14857,14943,14945,14946,14957,14960,14979,14983,15016,15017,15034,15039,15042,15083,15121,15189,15215,15226,15232,15249,15251,15312,15362,15367,15379,15383,15395,15425,15453,15507,15527,15528,15591,15602,15618,15687,15762,15763,15764,15767,15768,15770,15774,15780,15805,15809,15815,15824,15838,15883,15890,15891,15892,15952,15954,15974,15978,15981,16071,16091,16096,16103,16104,16116,16118,16138,16142,16193,16261,16414,16462,16463,16477,16481,16482,16493,16531,16534,16535,16632,16727,16743,16766,16795,16798,16807,17034,17041,17064,17078,17080,17099,17107,17146,17245,17298,17324,17325,17326,17327,17331,17340,17342,17343,17351,17352,17373,17374,17379,17381,17384,17397,17399,17420,17427,17429,17439,17443,17445,17446,17448,17453,17465,17470,17471,17483,17507,17515,17521,17530,17532,17544,17635,17650,17651,17663,17668,17672,17675,17676,17684,17685,17687,17713,17714,17731,17735,17736,17739,17740,17744,17748,17751,17763,17764,17782,17783,17789,17800,17803,17804,17805,17806,17807,17821,17828,17834,17835,17848,17852,17862,17864,17867,17868,17869,17870,17872,17877,17889,17894,17895,17900,17902,17920,17925,17930,17931,17952,17956,17966,17971,17981,17984,17985,17986,17987,17988,17992,18002,18014,18019,18020,18021,18022,18023,18024,18027,18028,18059,18072,18073,18075,18080,18090,18092,18094,18095,18097,18108,18113,18116,18122,18147,18163,18164,18168,18169,18177,18182,18183,18195,18197,18198,18200,18201,18204,18206,18208,18220,18221,18225,18230,18232,18237,18240,18242,18243,18246,18249,18258,18261,18273,18274,18276,18281,18285,18288,18291,18312,18315,18316,18327,18328,18329,18331,18353,18378,18379,18390,18394,18414,18416,18419,18420,18424,18462,18463,18502,18515,18548,18575,18587,18606,18613,18614,18630,18632,18633,18641,18642,18659,18673,18679,18681,18746,18751,18753,18759,18765,18791,18797,18802,18806,18815,18836,18840,18841,18843,18850,18857,18874,18885,18891,18895,18896,18907,18917,18921,18924,18945,18946,18948,18949,18950,18957,18959,18966,18975,18979,18993,18996,19003,19005,19011,19018,19036,19037,19044,19054,19066,19071,19077,19081,19088,19099,19120,19130,19142,19143,19152,19153,19155,19227,19230,19239,19249,19257,19264,19265,19269,19272,19274,19276,19277,19294,19297,19298,19301,19302,19306,19308,19309,19317,19331,19333,19334,19337,19338,19340,19346,19363,19364,19365,19368,19373,19374,19381,19385,19389,19405,19407,19420,19425,19429,19430,19431,19436,19438,19439,19441,19449,19459,19478,19493,19494,19496,19498,19501,19520,19528,19531,19535,19537,19545,19546,19562,19567,19572,19573,19580,19581,19590,19592,19596,19597,19604,19613,19618,19619,19626,19630,19642,19661,19665,19667,19668,19675,19683,19687,19688,19689,19692,19700,19703,19719,19724,19727,19732,19733,19736,19737,19755,19757,19761,19762,19769,19776,19784,19787,19794,19795,19796,19798,19799,19802,19806,19809,19813,19817,19821,19824,19830,19832,19834,19835,19843,19851,19858,19865,19869,19870,19872,19880,19885,19887,19897,19923,19927,19938,19939,19941,19942,19944,19958,19959,19960,19961,19963,19964,19970,19979,19980,19982,19991,19992,19993,19998,20005,20011,20016,20018,20022,20024,20027,20032,20036,20046,20047,20064,20074,20075,20086,20089,20099,20106,20107,20108,20114,20119,20121,20129,20140,20144,20149,20159,20160,20161,20163,20166,20169,20172,20174,20176,20179,20189,20192,20195,20203,20214,20238,20242,20249,20253,20255,20274,20275,20279,20280,20282,20296,20299,20301,20307,20311,20312,20315,20316,20317,20318,20321,20326,20327,20331,20337,20354,20368,20391,20401,20428,20429,20430,20439,20443,20445,20459,20465,20467,20476,20480,20484,20489,20492,20497,20500,20505,20518,20524,20528,20532,20561,20562,20564,20571,20576,20578,20581,20586,20593,20596,20603,20605,20625,20630,20639,20643,20666,20668,20669,20671,20675,20681,20688,20697,20700,20701,20704,20706,20709,20712,20717,20719,20721,20729,20733,20741,20742,20743,20745,20746,20747,20755,20756,20759,20763,20770,20777,20778,20781,20784,20785,20793,20796,20811,20818,20826,20831,20832,20833,20836,20839,20848,20850,20852,20854,20862,20869,20879,20884,20887,20891,20892,20895,20896,20897,20907,20915,20919,20927,20940,20945,20951,20952,20954,20956,20957,20962,20966,20967,20971,20976,20977,20982,20985,20989,20993,20994,20995,20999,21008,21009,21011,21017,21039,21057,21063,21071,21076,21080,21083,21084,21101,21105,21114,21117,21122,21128,21129,21130,21131,21132,21140,21157,21158,21168,21170,21171,21176,21177,21181,21184,21189,21192,21195,21197,21198,21199,21200,21201,21202,21205,21207,21208,21211,21213,21217,21220,21224,21231,21233,21237,21238,21243,21249,21265,21271,21275,21281,21284,21285,21301,21302,21303,21304,21313,21314,21315,21318,21321,21323,21325,21327,21335,21336,21337,21339,21340,21341,21342,21345,21348,21349,21354,21359,21361,21362,21363,21371,21372,21375,21376,21387,21393,21394,21397,21398,21404,21412,21414,21416,21417,21419,21420,21421,21423,21424,21425,21426,21432,21433,21434,21435,21441,21443,21444,21446,21456,21459,21461,21478,21498,21532,21578,21599,21601,21606,21610,21611,21616,21617,21621,21624,21627,21628,21629,21632,21633,21634,21635,21636,21638,21640,21641,21642,21646,21647,21651,21656,21661,21666,21671,21672,21688,21689,21691,21696,21701,21702,21703,21710,21712,21714,21717,21719,21720,21723,21724,21730,21743,21758,21759,21963,21966,21968,21976,21980,21988,21990,22017,22019,22022,22024,22053,22065,22078,22082,22095,22099,22103,22104,22121,22126,22131,22142,22153,22161,22162,22180,22186,22189,22194,22200,22202,22205,22218,22225,22244,22263,22269,22273,22287,22288,22292,22293,22313,22314,22339,22343,22360,22361,22362,22365,22401,22421,22428,22437,22459,22466,22467,22470,22490,22526,22527,22528,22531,22532,22535,22548,22559,22561,22570,22573,22574,22576,22578,22580,22581,22599,22600,22606,22620,22621,22635,22638,22640,22641,22643,22645,22665,22668,22674,22677,22719,22721,22723,22734,22755,22772,22788,22795,22797,22799,22800,22809,22811,22812,22814,22820,22838,22841,22843,22856,22864,22865,22871,22875,22879,22882,22885,22904,22908,22910,22915,22930,22956,22960,22961,22962,22963,22966,22969,22970,22974,22975,22977,22984,22986,22989,22994,22995,23006,23021,23022,23023,23047,23053,23054,23060,23061,23062,23063,23067,23074,23075,23076,23077,23079,23080,23081,23083,23084,23085,23086,23087,23088,23089,23098,23107,23108,23109,23123,23125,23130,23132,23137,23139,23141]]],["+",[124,109,[[0,5,4,0,4,[[3,1,1,0,1],[7,1,1,1,2],[17,2,1,2,3],[28,1,1,3,4]]],[1,10,9,4,13,[[52,1,1,4,5],[58,1,1,5,6],[61,2,2,6,8],[65,1,1,8,9],[72,2,2,9,11],[85,1,1,11,12],[89,2,1,12,13]]],[2,5,4,13,17,[[102,1,1,13,14],[114,3,2,14,16],[115,1,1,16,17]]],[3,9,7,17,24,[[124,1,1,17,18],[130,1,1,18,19],[146,2,1,19,20],[152,5,4,20,24]]],[4,2,2,24,26,[[171,1,1,24,25],[184,1,1,25,26]]],[6,1,1,26,27,[[223,1,1,26,27]]],[7,1,1,27,28,[[232,1,1,27,28]]],[8,6,6,28,34,[[237,1,1,28,29],[250,1,1,29,30],[252,1,1,30,31],[253,1,1,31,32],[258,2,2,32,34]]],[9,4,4,34,38,[[268,1,1,34,35],[269,1,1,35,36],[284,2,2,36,38]]],[10,5,4,38,42,[[292,1,1,38,39],[303,2,1,39,40],[306,1,1,40,41],[308,1,1,41,42]]],[11,5,4,42,46,[[317,1,1,42,43],[329,4,3,43,46]]],[12,4,4,46,50,[[343,1,1,46,47],[355,2,2,47,49],[356,1,1,49,50]]],[13,15,14,50,64,[[371,1,1,50,51],[375,1,1,51,52],[376,1,1,52,53],[378,1,1,53,54],[383,1,1,54,55],[384,1,1,55,56],[387,1,1,56,57],[390,2,2,57,59],[392,2,2,59,61],[395,1,1,61,62],[396,2,1,62,63],[402,1,1,63,64]]],[15,8,6,64,70,[[413,1,1,64,65],[414,3,2,65,67],[415,1,1,67,68],[418,2,1,68,69],[425,1,1,69,70]]],[16,2,2,70,72,[[427,2,2,70,72]]],[18,2,2,72,74,[[601,2,2,72,74]]],[20,16,14,74,88,[[659,4,2,74,76],[660,3,3,76,79],[661,2,2,79,81],[664,2,2,81,83],[665,1,1,83,84],[666,1,1,84,85],[668,1,1,85,86],[670,2,2,86,88]]],[22,3,3,88,91,[[683,1,1,88,89],[727,1,1,89,90],[737,1,1,90,91]]],[23,6,5,91,96,[[759,2,1,91,92],[770,1,1,92,93],[775,1,1,93,94],[777,2,2,94,96]]],[24,1,1,96,97,[[798,1,1,96,97]]],[25,9,7,97,104,[[802,2,1,97,98],[821,2,1,98,99],[822,1,1,99,100],[835,1,1,100,101],[837,1,1,101,102],[844,1,1,102,103],[846,1,1,103,104]]],[26,2,2,104,106,[[860,1,1,104,105],[861,1,1,105,106]]],[28,1,1,106,107,[[877,1,1,106,107]]],[36,1,1,107,108,[[910,1,1,107,108]]],[38,1,1,108,109,[[927,1,1,108,109]]]],[96,188,442,815,1580,1770,1820,1822,1960,2146,2170,2595,2722,3070,3498,3501,3537,3950,4141,4654,4882,4885,4890,4891,5417,5796,6896,7139,7271,7586,7652,7705,7833,7836,8059,8098,8500,8501,8797,9216,9304,9344,9649,10015,10016,10024,10486,10900,10904,10919,11276,11390,11401,11448,11535,11576,11633,11689,11691,11737,11742,11802,11837,12009,12300,12320,12322,12353,12420,12676,12731,12739,16103,16104,17324,17326,17340,17342,17351,17374,17381,17420,17427,17453,17465,17507,17530,17532,17764,18642,18815,19333,19590,19727,19796,19799,20354,20467,20927,20954,21315,21372,21578,21646,22078,22082,22314,22871,23123]]],["AM",[3,1,[[1,3,1,0,1,[[52,3,1,0,1]]]],[1593]]],["Be",[14,14,[[1,2,2,0,2,[[67,1,1,0,1],[68,1,1,1,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[8,1,1,3,4,[[249,1,1,3,4]]],[18,2,2,4,6,[[509,1,1,4,5],[548,1,1,5,6]]],[19,4,4,6,10,[[630,1,1,6,7],[649,1,1,7,8],[650,1,1,8,9],[651,1,1,9,10]]],[20,1,1,10,11,[[665,1,1,10,11]]],[23,1,1,11,12,[[761,1,1,11,12]]],[25,1,1,12,13,[[803,1,1,12,13]]],[37,1,1,13,14,[[911,1,1,13,14]]]],[2018,2041,4210,7548,14364,14979,16462,17041,17064,17107,17445,19374,20500,22882]]],["Is",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18791]]],["Let",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16071]]],["So",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10816]]],["Were",[1,1,[[13,1,1,0,1,[[382,1,1,0,1]]]],[11517]]],["abode",[2,2,[[3,2,2,0,2,[[125,1,1,0,1],[127,1,1,1,2]]]],[3986,4059]]],["accomplished",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16766]]],["altogether",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14689]]],["am",[16,15,[[6,1,1,0,1,[[228,1,1,0,1]]],[17,6,5,1,6,[[446,1,1,1,2],[447,1,1,2,3],[454,1,1,3,4],[465,3,2,4,6]]],[18,5,5,6,11,[[508,1,1,6,7],[548,1,1,7,8],[565,1,1,8,9],[579,2,2,9,11]]],[23,3,3,11,14,[[764,1,1,11,12],[767,1,1,12,13],[775,1,1,13,14]]],[32,1,1,14,15,[[899,1,1,14,15]]]],[6997,13112,13132,13312,13566,13586,14343,14983,15312,15527,15528,19429,19493,19700,22665]]],["are",[53,53,[[0,3,3,0,3,[[41,3,3,0,3]]],[3,1,1,3,4,[[134,1,1,3,4]]],[5,4,4,4,8,[[190,1,1,4,5],[202,1,1,5,6],[205,2,2,6,8]]],[9,3,3,8,11,[[281,1,1,8,9],[285,2,2,9,11]]],[10,1,1,11,12,[[298,1,1,11,12]]],[15,2,2,12,14,[[416,1,1,12,13],[418,1,1,13,14]]],[17,3,3,14,17,[[441,1,1,14,15],[456,1,1,15,16],[459,1,1,16,17]]],[18,5,5,17,22,[[550,1,1,17,18],[567,1,1,18,19],[592,1,1,19,20],[603,1,1,20,21],[612,1,1,21,22]]],[20,2,2,22,24,[[661,1,1,22,23],[665,1,1,23,24]]],[22,8,8,24,32,[[679,1,1,24,25],[683,1,1,25,26],[707,1,1,26,27],[720,1,1,27,28],[741,1,1,28,29],[742,3,3,29,32]]],[23,5,5,32,37,[[746,1,1,32,33],[748,1,1,33,34],[767,1,1,34,35],[788,1,1,35,36],[795,1,1,36,37]]],[24,5,5,37,42,[[797,2,2,37,39],[800,2,2,39,41],[801,1,1,41,42]]],[25,6,6,42,48,[[808,1,1,42,43],[814,1,1,43,44],[823,2,2,44,46],[837,1,1,46,47],[849,1,1,47,48]]],[27,3,3,48,51,[[868,2,2,48,50],[873,1,1,50,51]]],[34,1,1,51,52,[[903,1,1,51,52]]],[35,1,1,52,53,[[908,1,1,52,53]]]],[1263,1283,1288,4275,5919,6268,6335,6350,8402,8522,8523,8993,12363,12409,12999,13373,13449,15039,15383,15838,16118,16193,17379,17448,17668,17751,18208,18502,18885,18891,18895,18896,18993,19044,19498,20016,20255,20315,20326,20429,20439,20445,20586,20712,20985,20994,21361,21703,22180,22194,22263,22734,22838]]],["art",[3,3,[[6,1,1,0,1,[[221,1,1,0,1]]],[18,1,1,1,2,[[487,1,1,1,2]]],[25,1,1,2,3,[[817,1,1,2,3]]]],[6864,14055,20796]]],["as",[2,2,[[9,1,1,0,1,[[272,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]]],[8173,9447]]],["be",[1255,1124,[[0,84,79,0,79,[[0,6,5,0,5],[1,2,2,5,7],[2,1,1,7,8],[3,2,2,8,10],[5,3,3,10,13],[8,8,8,13,21],[9,1,1,21,22],[11,1,1,22,23],[12,1,1,23,24],[14,2,2,24,26],[15,1,1,26,27],[16,9,8,27,35],[17,2,2,35,37],[20,1,1,37,38],[23,3,3,38,41],[25,2,2,41,43],[26,2,2,43,45],[27,5,5,45,50],[29,2,2,50,52],[30,4,3,52,55],[33,3,3,55,58],[34,2,2,58,60],[36,1,1,60,61],[37,2,2,61,63],[38,1,1,63,64],[40,4,3,64,67],[43,4,3,67,70],[44,1,1,70,71],[46,3,3,71,74],[47,3,3,74,77],[48,2,2,77,79]]],[1,109,97,79,176,[[52,1,1,79,80],[53,5,3,80,83],[55,1,1,83,84],[56,2,2,84,86],[57,2,2,86,88],[58,3,3,88,91],[59,4,4,91,95],[60,1,1,95,96],[61,7,6,96,102],[62,6,5,102,107],[65,2,2,107,109],[67,2,2,109,111],[68,3,3,111,114],[69,1,1,114,115],[70,3,3,115,118],[71,5,5,118,123],[72,2,2,123,125],[73,1,1,125,126],[74,5,5,126,131],[75,8,5,131,136],[76,4,4,136,140],[77,15,11,140,151],[78,7,6,151,157],[79,12,12,157,169],[83,2,2,169,171],[84,1,1,171,172],[85,1,1,172,173],[88,1,1,173,174],[89,2,2,174,176]]],[2,105,94,176,270,[[91,2,2,176,178],[94,2,2,178,180],[95,2,2,180,182],[96,4,4,182,186],[99,1,1,186,187],[100,6,5,187,192],[102,7,7,192,199],[103,3,3,199,202],[104,7,5,202,207],[105,3,3,207,210],[106,1,1,210,211],[108,5,5,211,216],[109,5,4,216,220],[110,3,2,220,222],[111,7,6,222,228],[112,7,7,228,235],[113,3,3,235,238],[114,15,14,238,252],[115,5,4,252,256],[116,17,14,256,270]]],[3,83,76,270,346,[[117,2,2,270,272],[119,3,3,272,275],[120,2,2,275,277],[121,4,3,277,280],[122,1,1,280,281],[123,1,1,281,282],[124,2,2,282,284],[125,1,1,284,285],[126,5,4,285,289],[127,1,1,289,290],[128,2,2,290,292],[130,3,3,292,295],[131,7,7,295,302],[132,3,3,302,305],[134,7,7,305,312],[135,4,4,312,316],[139,1,1,316,317],[140,3,2,317,319],[143,2,2,319,321],[144,3,3,321,324],[145,2,2,324,326],[148,3,2,326,328],[149,1,1,328,329],[150,11,8,329,337],[151,7,7,337,344],[152,2,2,344,346]]],[4,98,91,346,437,[[153,1,1,346,347],[156,1,1,347,348],[158,4,4,348,352],[159,4,3,352,355],[160,1,1,355,356],[162,1,1,356,357],[163,4,3,357,360],[164,1,1,360,361],[165,2,2,361,363],[166,1,1,363,364],[167,7,6,364,370],[169,4,4,370,374],[170,2,2,374,376],[171,2,2,376,378],[172,5,3,378,381],[173,6,6,381,387],[174,5,5,387,392],[175,7,7,392,399],[176,8,8,399,407],[177,4,4,407,411],[178,5,5,411,416],[179,2,2,416,418],[180,11,9,418,427],[181,1,1,427,428],[182,1,1,428,429],[183,5,5,429,434],[185,3,3,434,437]]],[5,30,27,437,464,[[187,3,3,437,440],[188,5,3,440,443],[189,2,2,443,445],[190,2,2,445,447],[192,1,1,447,448],[193,3,3,448,451],[194,2,2,451,453],[195,2,2,453,455],[200,1,1,455,456],[201,1,1,456,457],[203,1,1,457,458],[206,2,2,458,460],[208,2,2,460,462],[209,1,1,462,463],[210,2,1,463,464]]],[6,29,24,464,488,[[212,2,1,464,465],[214,2,2,465,467],[216,4,3,467,470],[217,2,2,470,472],[219,1,1,472,473],[220,1,1,473,474],[221,6,5,474,479],[223,2,2,479,481],[224,1,1,481,482],[226,3,3,482,485],[227,1,1,485,486],[228,3,1,486,487],[231,1,1,487,488]]],[7,7,7,488,495,[[232,1,1,488,489],[233,2,2,489,491],[234,2,2,491,493],[235,2,2,493,495]]],[8,32,28,495,523,[[236,1,1,495,496],[237,1,1,496,497],[238,1,1,497,498],[243,3,3,498,501],[245,1,1,501,502],[247,1,1,502,503],[249,2,2,503,505],[252,5,4,505,509],[253,6,3,509,512],[255,2,2,512,514],[258,1,1,514,515],[259,3,3,515,518],[260,3,3,518,521],[262,1,1,521,522],[264,1,1,522,523]]],[9,33,30,523,553,[[268,2,2,523,525],[271,2,2,525,527],[272,1,1,527,528],[273,6,5,528,533],[277,1,1,533,534],[278,1,1,534,535],[279,2,2,535,537],[280,3,2,537,539],[281,5,4,539,543],[282,2,2,543,545],[283,1,1,545,546],[284,1,1,546,547],[285,4,4,547,551],[290,2,2,551,553]]],[10,39,32,553,585,[[291,2,2,553,555],[292,5,4,555,559],[293,2,2,559,561],[295,1,1,561,562],[298,12,8,562,570],[299,2,2,570,572],[300,1,1,572,573],[301,3,2,573,575],[302,2,1,575,576],[304,1,1,576,577],[307,2,2,577,579],[308,2,2,579,581],[310,2,2,581,583],[312,2,2,583,585]]],[11,17,16,585,601,[[314,4,3,585,588],[316,1,1,588,589],[319,3,3,589,592],[321,1,1,592,593],[323,2,2,593,595],[327,1,1,595,596],[328,1,1,596,597],[331,1,1,597,598],[332,2,2,598,600],[335,1,1,600,601]]],[12,21,19,601,620,[[338,1,1,601,602],[341,1,1,602,603],[348,2,2,603,605],[349,1,1,605,606],[351,1,1,606,607],[354,6,5,607,612],[358,2,2,612,614],[359,5,4,614,618],[365,2,2,618,620]]],[13,28,22,620,642,[[372,9,5,620,625],[373,4,3,625,628],[375,1,1,628,629],[376,2,1,629,630],[378,1,1,630,631],[379,1,1,631,632],[381,1,1,632,633],[384,2,2,633,635],[385,2,2,635,637],[389,2,2,637,639],[392,1,1,639,640],[396,1,1,640,641],[399,1,1,641,642]]],[14,1,1,642,643,[[403,1,1,642,643]]],[15,8,8,643,651,[[413,2,2,643,645],[414,2,2,645,647],[416,1,1,647,648],[417,2,2,648,650],[422,1,1,650,651]]],[16,2,2,651,653,[[428,1,1,651,652],[433,1,1,652,653]]],[17,12,12,653,665,[[436,1,1,653,654],[438,2,2,654,656],[441,1,1,656,657],[446,2,2,657,659],[448,1,1,659,660],[450,1,1,660,661],[453,1,1,661,662],[456,1,1,662,663],[457,1,1,663,664],[462,1,1,664,665]]],[18,34,33,665,698,[[478,1,1,665,666],[486,1,1,666,667],[496,1,1,667,668],[507,1,1,668,669],[508,1,1,669,670],[510,1,1,670,671],[512,2,2,671,673],[514,1,1,673,674],[522,1,1,674,675],[540,1,1,675,676],[541,1,1,676,677],[546,1,1,677,678],[549,1,1,678,679],[555,1,1,679,680],[557,1,1,680,681],[558,1,1,681,682],[567,1,1,682,683],[569,1,1,683,684],[586,7,6,684,690],[589,2,2,690,692],[590,1,1,692,693],[596,2,2,693,695],[599,1,1,695,696],[606,1,1,696,697],[607,1,1,697,698]]],[19,12,12,698,710,[[630,3,3,698,701],[632,2,2,701,703],[639,2,2,703,705],[649,1,1,705,706],[650,1,1,706,707],[651,2,2,707,709],[653,1,1,709,710]]],[20,15,15,710,725,[[659,1,1,710,711],[660,1,1,711,712],[661,2,2,712,714],[663,1,1,714,715],[664,1,1,715,716],[665,2,2,716,718],[666,3,3,718,721],[667,1,1,721,722],[668,1,1,722,723],[669,2,2,723,725]]],[21,2,2,725,727,[[671,1,1,725,726],[677,1,1,726,727]]],[22,119,106,727,833,[[679,4,3,727,730],[680,1,1,730,731],[681,3,3,731,734],[682,2,2,734,736],[683,4,3,736,739],[684,1,1,739,740],[685,3,2,740,742],[686,1,1,742,743],[687,3,3,743,746],[688,5,5,746,751],[689,4,3,751,754],[691,2,2,754,756],[693,1,1,756,757],[694,2,1,757,758],[695,7,5,758,763],[697,8,8,763,771],[700,2,2,771,773],[701,2,1,773,774],[702,2,2,774,776],[706,4,4,776,780],[707,8,5,780,785],[708,9,8,785,793],[709,1,1,793,794],[710,4,4,794,798],[711,3,3,798,801],[712,2,2,801,803],[713,2,2,803,805],[715,1,1,805,806],[717,2,2,806,808],[719,2,2,808,810],[721,1,1,810,811],[722,1,1,811,812],[723,1,1,812,813],[725,3,3,813,816],[727,3,3,816,819],[729,2,2,819,821],[733,2,2,821,823],[734,2,2,823,825],[736,1,1,825,826],[738,3,2,826,828],[739,1,1,828,829],[740,1,1,829,830],[743,2,2,830,832],[744,1,1,832,833]]],[23,91,81,833,914,[[746,1,1,833,834],[748,1,1,834,835],[751,4,3,835,838],[752,1,1,838,839],[755,3,2,839,841],[757,2,2,841,843],[758,4,4,843,847],[759,1,1,847,848],[760,1,1,848,849],[761,4,3,849,852],[762,3,2,852,854],[763,1,1,854,855],[764,2,2,855,857],[765,1,1,857,858],[767,2,2,858,860],[768,2,1,860,861],[769,4,3,861,864],[770,1,1,864,865],[771,2,2,865,867],[773,1,1,867,868],[774,5,4,868,872],[775,5,3,872,875],[776,3,2,875,877],[777,3,3,877,880],[778,2,2,880,882],[780,1,1,882,883],[783,2,2,883,885],[786,2,2,885,887],[788,3,3,887,890],[790,1,1,890,891],[791,1,1,891,892],[792,7,7,892,899],[793,7,7,899,906],[794,4,4,906,910],[795,4,4,910,914]]],[24,1,1,914,915,[[797,1,1,914,915]]],[25,146,126,915,1041,[[804,1,1,915,916],[805,1,1,916,917],[806,2,2,917,919],[807,1,1,919,920],[808,4,4,920,924],[812,5,3,924,927],[813,2,2,927,929],[814,5,4,929,933],[815,5,4,933,937],[817,1,1,937,938],[818,3,3,938,941],[819,5,4,941,945],[820,1,1,945,946],[821,3,3,946,949],[822,8,6,949,955],[824,1,1,955,956],[825,1,1,956,957],[827,2,2,957,959],[828,2,2,959,961],[829,2,2,961,963],[830,6,6,963,969],[831,5,5,969,974],[832,1,1,974,975],[833,1,1,975,976],[834,2,2,976,978],[835,9,9,978,987],[836,3,3,987,990],[837,5,4,990,994],[838,11,7,994,1001],[839,5,5,1001,1006],[840,1,1,1006,1007],[844,1,1,1007,1008],[845,7,6,1008,1014],[846,10,8,1014,1022],[847,6,5,1022,1027],[848,6,5,1027,1032],[849,12,9,1032,1041]]],[26,4,4,1041,1045,[[857,1,1,1041,1042],[860,2,2,1042,1044],[861,1,1,1044,1045]]],[27,14,14,1045,1059,[[862,2,2,1045,1047],[863,1,1,1047,1048],[864,1,1,1048,1049],[865,1,1,1049,1050],[866,1,1,1050,1051],[869,3,3,1051,1054],[870,1,1,1054,1055],[874,2,2,1055,1057],[875,2,2,1057,1059]]],[28,4,3,1059,1062,[[877,1,1,1059,1060],[878,3,2,1060,1062]]],[29,4,4,1062,1066,[[881,1,1,1062,1063],[883,1,1,1063,1064],[885,2,2,1064,1066]]],[30,6,4,1066,1070,[[888,6,4,1066,1070]]],[31,1,1,1070,1071,[[892,1,1,1070,1071]]],[32,12,11,1071,1082,[[893,1,1,1071,1072],[894,2,2,1072,1074],[896,1,1,1074,1075],[897,5,4,1075,1079],[899,3,3,1079,1082]]],[33,1,1,1082,1083,[[902,1,1,1082,1083]]],[34,1,1,1083,1084,[[904,1,1,1083,1084]]],[35,4,4,1084,1088,[[907,4,4,1084,1088]]],[36,1,1,1088,1089,[[910,1,1,1088,1089]]],[37,38,28,1089,1117,[[912,4,3,1089,1092],[916,3,2,1092,1094],[918,4,3,1094,1097],[919,1,1,1097,1098],[920,3,3,1098,1101],[922,2,2,1101,1103],[923,1,1,1103,1104],[924,20,13,1104,1117]]],[38,7,7,1117,1124,[[926,1,1,1117,1118],[927,4,4,1118,1122],[928,2,2,1122,1124]]]],[2,5,13,14,28,48,54,60,91,93,140,156,158,207,208,216,218,221,230,231,232,242,300,326,365,373,393,398,401,402,404,405,408,410,413,435,449,543,632,642,651,695,720,760,766,776,787,793,794,795,862,864,876,881,917,990,995,1002,1021,1022,1110,1128,1142,1159,1222,1231,1235,1333,1334,1341,1368,1439,1444,1445,1456,1457,1472,1490,1499,1591,1613,1616,1617,1662,1686,1704,1732,1733,1751,1764,1771,1784,1787,1791,1798,1812,1821,1829,1830,1832,1864,1865,1872,1876,1878,1881,1883,1952,1973,2018,2021,2031,2032,2037,2071,2081,2111,2113,2124,2137,2138,2143,2144,2145,2177,2189,2210,2215,2222,2226,2231,2238,2241,2246,2259,2260,2273,2274,2277,2279,2301,2309,2313,2314,2321,2323,2325,2328,2330,2331,2336,2345,2362,2364,2365,2373,2381,2384,2386,2394,2398,2403,2407,2411,2413,2414,2416,2418,2419,2498,2508,2533,2584,2685,2716,2717,2763,2767,2835,2843,2853,2872,2888,2893,2897,2910,2992,3008,3032,3033,3041,3042,3054,3071,3076,3084,3094,3097,3101,3113,3120,3133,3171,3187,3192,3193,3194,3218,3230,3235,3242,3283,3301,3304,3305,3315,3325,3332,3339,3344,3351,3353,3381,3382,3389,3390,3396,3402,3417,3419,3420,3422,3423,3429,3438,3451,3453,3455,3473,3475,3476,3477,3479,3480,3481,3500,3507,3509,3514,3517,3519,3522,3536,3557,3568,3569,3573,3574,3575,3576,3577,3579,3580,3582,3585,3586,3591,3595,3602,3603,3608,3657,3704,3705,3737,3750,3770,3801,3802,3819,3828,3855,3953,3958,3975,3996,3998,4019,4020,4044,4065,4071,4111,4139,4151,4168,4169,4172,4177,4192,4193,4194,4201,4232,4234,4262,4266,4267,4270,4271,4272,4275,4298,4299,4302,4310,4426,4464,4468,4565,4571,4591,4596,4608,4616,4621,4740,4744,4814,4819,4820,4821,4822,4823,4824,4825,4828,4848,4850,4856,4857,4859,4860,4874,4883,4887,4931,5024,5092,5094,5096,5111,5117,5125,5137,5156,5191,5225,5226,5232,5251,5281,5288,5292,5323,5326,5328,5335,5336,5340,5371,5373,5382,5383,5387,5397,5416,5423,5429,5436,5438,5450,5452,5460,5461,5462,5463,5472,5489,5490,5493,5499,5510,5511,5513,5514,5517,5521,5522,5527,5529,5530,5538,5540,5544,5545,5546,5548,5549,5553,5566,5567,5569,5583,5584,5585,5587,5589,5624,5634,5636,5637,5640,5644,5645,5655,5657,5692,5712,5736,5745,5747,5751,5754,5816,5817,5834,5855,5856,5868,5883,5888,5889,5897,5900,5916,5917,5966,5988,5990,5991,6006,6010,6057,6058,6196,6206,6293,6375,6378,6444,6454,6473,6503,6548,6608,6619,6670,6691,6693,6698,6711,6787,6829,6835,6837,6838,6839,6860,6889,6891,6920,6956,6960,6966,6990,7012,7124,7138,7162,7168,7176,7185,7202,7205,7240,7272,7285,7380,7386,7389,7425,7475,7529,7548,7627,7643,7654,7655,7693,7694,7697,7743,7772,7827,7851,7852,7854,7887,7890,7892,7942,7971,8056,8075,8134,8156,8179,8188,8194,8196,8206,8208,8279,8296,8330,8345,8358,8373,8410,8422,8423,8424,8444,8445,8452,8510,8524,8533,8546,8554,8705,8709,8752,8754,8777,8803,8807,8815,8829,8842,8884,9001,9014,9022,9023,9037,9042,9044,9046,9054,9058,9088,9145,9146,9158,9223,9318,9321,9365,9372,9414,9447,9493,9502,9560,9561,9572,9613,9709,9725,9726,9793,9837,9846,9944,9978,10086,10116,10117,10192,10262,10395,10675,10679,10737,10789,10870,10874,10876,10877,10890,10937,10951,10973,10974,10975,10980,11147,11149,11287,11288,11302,11310,11322,11337,11339,11340,11372,11402,11445,11462,11492,11554,11563,11583,11587,11663,11672,11747,11834,11912,12019,12302,12307,12313,12324,12381,12395,12396,12587,12761,12830,12890,12908,12911,13007,13123,13125,13158,13234,13288,13357,13414,13488,13942,14030,14182,14329,14333,14388,14415,14416,14468,14613,14849,14857,14960,15016,15121,15215,15226,15395,15425,15763,15764,15767,15768,15770,15774,15805,15809,15815,15974,15978,16096,16138,16142,16463,16477,16481,16534,16535,16727,16743,17034,17078,17080,17099,17146,17326,17352,17373,17374,17399,17429,17443,17446,17465,17470,17471,17483,17507,17515,17521,17544,17635,17672,17684,17685,17687,17713,17714,17731,17735,17739,17744,17748,17763,17782,17805,17807,17821,17834,17835,17848,17852,17867,17868,17869,17872,17889,17894,17900,17920,17925,17966,17971,17984,17985,17986,17988,17992,18014,18019,18020,18021,18023,18024,18027,18028,18073,18075,18095,18097,18108,18168,18169,18182,18183,18195,18197,18198,18200,18201,18220,18225,18230,18232,18240,18242,18243,18249,18258,18261,18273,18274,18276,18281,18285,18291,18315,18316,18328,18329,18378,18419,18420,18462,18463,18515,18548,18575,18606,18613,18614,18641,18642,18659,18679,18681,18751,18753,18759,18765,18797,18840,18841,18850,18857,18907,18917,18946,18975,19054,19142,19152,19153,19155,19230,19249,19276,19277,19301,19302,19308,19309,19334,19340,19363,19365,19368,19405,19407,19420,19436,19438,19449,19496,19520,19531,19545,19562,19567,19581,19613,19618,19661,19683,19687,19688,19689,19692,19703,19724,19736,19769,19784,19787,19795,19817,19821,19872,19939,19941,19980,19992,20018,20022,20036,20064,20075,20086,20089,20106,20108,20114,20119,20121,20129,20140,20144,20149,20159,20160,20163,20174,20176,20179,20192,20214,20238,20274,20275,20331,20528,20532,20561,20562,20576,20581,20593,20596,20603,20666,20671,20675,20700,20704,20717,20719,20721,20729,20741,20742,20746,20747,20778,20833,20839,20848,20854,20862,20869,20879,20895,20907,20915,20927,20951,20956,20957,20967,20971,20976,21039,21083,21105,21114,21128,21157,21176,21181,21192,21195,21197,21198,21199,21202,21207,21208,21211,21217,21220,21243,21275,21284,21285,21323,21327,21335,21336,21337,21339,21340,21341,21342,21348,21354,21359,21362,21371,21387,21397,21416,21417,21419,21420,21423,21424,21425,21432,21434,21441,21444,21446,21461,21599,21601,21606,21610,21627,21628,21629,21632,21633,21634,21636,21638,21641,21642,21647,21656,21661,21666,21671,21672,21688,21689,21691,21696,21701,21710,21712,21714,21717,21719,21720,21723,21724,21730,21980,22053,22065,22082,22103,22104,22121,22131,22142,22161,22200,22202,22205,22225,22269,22273,22287,22288,22343,22360,22362,22401,22437,22467,22470,22526,22527,22528,22531,22574,22581,22599,22606,22621,22635,22638,22640,22641,22668,22674,22677,22723,22755,22809,22811,22812,22814,22864,22904,22908,22910,22960,22961,22984,22989,22995,23006,23021,23022,23023,23047,23053,23060,23074,23075,23076,23077,23079,23080,23081,23083,23085,23086,23087,23088,23089,23107,23125,23130,23132,23137,23139,23141]]],["became",[65,62,[[0,9,9,0,9,[[1,2,2,0,2],[18,1,1,2,3],[19,1,1,3,4],[20,1,1,4,5],[23,1,1,5,6],[46,2,2,6,8],[48,1,1,8,9]]],[1,10,9,9,18,[[51,1,1,9,10],[53,2,2,10,12],[56,2,2,12,14],[57,2,1,14,15],[58,2,2,15,17],[85,1,1,17,18]]],[3,1,1,18,19,[[142,1,1,18,19]]],[4,1,1,19,20,[[178,1,1,19,20]]],[5,3,3,20,23,[[193,1,1,20,21],[200,1,1,21,22],[210,1,1,22,23]]],[6,7,7,23,30,[[211,3,3,23,26],[218,1,1,26,27],[225,1,1,27,28],[227,2,2,28,30]]],[7,1,1,30,31,[[235,1,1,30,31]]],[8,5,5,31,36,[[245,1,1,31,32],[251,1,1,32,33],[257,1,1,33,34],[260,2,2,34,36]]],[9,5,5,36,41,[[268,1,1,36,37],[274,3,3,37,40],[277,1,1,40,41]]],[10,5,5,41,46,[[301,1,1,41,42],[302,1,1,42,43],[303,3,3,43,46]]],[11,2,2,46,48,[[329,1,1,46,47],[336,1,1,47,48]]],[12,3,3,48,51,[[355,3,3,48,51]]],[18,3,3,51,54,[[546,1,1,51,52],[560,1,1,52,53],[586,1,1,53,54]]],[23,1,1,54,55,[[795,1,1,54,55]]],[25,9,7,55,62,[[818,2,1,55,56],[820,2,2,56,58],[824,1,1,58,59],[835,3,2,59,61],[837,1,1,61,62]]]],[37,40,483,507,533,658,1440,1446,1488,1564,1604,1605,1695,1697,1727,1752,1766,2579,4499,5571,5981,6201,6508,6539,6542,6544,6746,6943,6985,6992,7206,7430,7616,7789,7898,7903,8074,8211,8215,8223,8286,9132,9181,9190,9217,9218,9986,10203,10892,10896,10903,14946,15251,15780,20242,20831,20884,20887,21017,21318,21321,21363]]],["becamest",[2,2,[[12,1,1,0,1,[[354,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[10885,20770]]],["become",[67,65,[[0,7,6,0,6,[[2,1,1,0,1],[8,1,1,1,2],[31,1,1,2,3],[33,1,1,3,4],[36,1,1,4,5],[47,2,1,5,6]]],[1,9,9,6,15,[[53,1,1,6,7],[56,2,2,7,9],[57,1,1,9,10],[58,1,1,10,11],[64,1,1,11,12],[72,1,1,12,13],[81,2,2,13,15]]],[4,2,2,15,17,[[179,1,1,15,16],[180,1,1,16,17]]],[8,1,1,17,18,[[263,1,1,17,18]]],[9,1,1,18,19,[[273,1,1,18,19]]],[10,2,2,19,21,[[292,1,1,19,20],[304,1,1,20,21]]],[11,2,2,21,23,[[333,1,1,21,22],[334,1,1,22,23]]],[18,8,8,23,31,[[546,2,2,23,25],[556,1,1,25,26],[586,1,1,26,27],[595,3,3,27,30],[596,1,1,30,31]]],[19,1,1,31,32,[[656,1,1,31,32]]],[22,9,9,32,41,[[679,2,2,32,34],[685,1,1,34,35],[690,1,1,35,36],[707,1,1,36,37],[712,1,1,37,38],[713,1,1,38,39],[737,1,1,39,40],[738,1,1,40,41]]],[23,10,10,41,51,[[747,1,1,41,42],[749,1,1,42,43],[751,1,1,43,44],[766,1,1,44,45],[770,1,1,45,46],[793,1,1,46,47],[794,2,2,47,49],[795,2,2,49,51]]],[24,6,5,51,56,[[797,5,4,51,55],[800,1,1,55,56]]],[25,5,5,56,61,[[823,2,2,56,58],[827,1,1,58,59],[837,1,1,59,60],[838,1,1,60,61]]],[31,1,1,61,62,[[892,1,1,61,62]]],[32,1,1,62,63,[[895,1,1,62,63]]],[35,2,2,63,65,[[906,1,1,63,64],[907,1,1,64,65]]]],[77,220,938,996,1103,1470,1610,1694,1704,1726,1751,1922,2173,2439,2461,5594,5648,7958,8204,8785,9221,10133,10164,14943,14957,15189,15762,15883,15890,15891,15981,17245,17675,17676,17806,17902,18204,18312,18327,18806,18843,19003,19071,19130,19459,19590,20140,20189,20203,20249,20253,20311,20312,20316,20321,20428,20994,20995,21105,21394,21414,22573,22620,22800,22820]]],["been",[73,72,[[0,6,6,0,6,[[12,1,1,0,1],[30,2,2,1,3],[45,2,2,3,5],[46,1,1,5,6]]],[1,3,3,6,9,[[51,1,1,6,7],[58,1,1,7,8],[67,1,1,8,9]]],[4,4,4,9,13,[[156,1,1,9,10],[161,2,2,10,12],[183,1,1,12,13]]],[8,6,6,13,19,[[239,2,2,13,15],[249,1,1,15,16],[255,1,1,16,17],[264,2,2,17,19]]],[9,2,2,19,21,[[279,2,2,19,21]]],[10,3,3,21,24,[[291,1,1,21,22],[304,1,1,22,23],[307,1,1,23,24]]],[12,2,2,24,26,[[354,1,1,24,25],[366,1,1,25,26]]],[14,2,2,26,28,[[411,2,2,26,28]]],[15,1,1,28,29,[[414,1,1,28,29]]],[16,1,1,29,30,[[427,1,1,29,30]]],[17,3,2,30,32,[[438,1,1,30,31],[445,2,1,31,32]]],[18,9,9,32,41,[[504,1,1,32,33],[514,1,1,33,34],[519,1,1,34,35],[536,1,1,35,36],[538,1,1,36,37],[540,1,1,37,38],[550,1,1,38,39],[567,1,1,39,40],[596,1,1,40,41]]],[20,5,5,41,46,[[659,2,2,41,43],[661,1,1,43,44],[662,2,2,44,46]]],[22,7,7,46,53,[[679,1,1,46,47],[703,1,1,47,48],[704,1,1,48,49],[726,2,2,49,51],[738,1,1,51,52],[744,1,1,52,53]]],[23,6,6,53,59,[[746,1,1,53,54],[747,1,1,54,55],[764,1,1,55,56],[772,1,1,56,57],[776,1,1,57,58],[794,1,1,58,59]]],[25,8,8,59,67,[[803,1,1,59,60],[811,1,1,60,61],[817,1,1,61,62],[823,1,1,62,63],[829,1,1,63,64],[830,1,1,64,65],[834,1,1,65,66],[839,1,1,66,67]]],[27,1,1,67,68,[[866,1,1,67,68]]],[28,2,2,68,70,[[876,1,1,68,69],[877,1,1,69,70]]],[30,1,1,70,71,[[888,1,1,70,71]]],[38,1,1,71,72,[[925,1,1,71,72]]]],[321,878,915,1418,1420,1429,1576,1760,2002,5036,5164,5181,5755,7304,7314,7546,7743,7970,7975,8337,8349,8754,9226,9324,10871,11189,12239,12245,12308,12736,12920,13105,14294,14475,14558,14806,14822,14846,15034,15379,15952,17325,17331,17374,17384,17397,17663,18122,18147,18632,18633,18836,18924,18996,19005,19439,19626,19762,20172,20497,20643,20793,20989,21170,21189,21313,21433,22153,22293,22313,22526,23098]]],["being",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9290]]],["brake",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21759]]],["brought",[1,1,[[9,1,1,0,1,[[274,1,1,0,1]]]],[8219]]],["came",[146,146,[[0,1,1,0,1,[[14,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[6,2,2,2,4,[[213,1,1,2,3],[221,1,1,3,4]]],[8,2,2,4,6,[[239,1,1,4,5],[250,1,1,5,6]]],[9,2,2,6,8,[[273,1,1,6,7],[290,1,1,7,8]]],[10,11,11,8,19,[[296,1,1,8,9],[302,1,1,9,10],[303,1,1,10,11],[306,2,2,11,13],[307,2,2,13,15],[308,2,2,15,17],[311,2,2,17,19]]],[11,3,3,19,22,[[315,1,1,19,20],[332,1,1,20,21],[336,1,1,21,22]]],[12,2,2,22,24,[[354,1,1,22,23],[359,1,1,23,24]]],[13,6,6,24,30,[[377,1,1,24,25],[378,1,1,25,26],[380,1,1,26,27],[381,1,1,27,28],[386,1,1,28,29],[390,1,1,29,30]]],[22,1,1,30,31,[[716,1,1,30,31]]],[23,44,44,31,75,[[745,5,5,31,36],[746,1,1,36,37],[751,1,1,37,38],[755,1,1,38,39],[757,2,2,39,41],[758,1,1,41,42],[760,1,1,42,43],[762,2,2,43,45],[765,1,1,45,46],[768,1,1,46,47],[769,1,1,47,48],[770,1,1,48,49],[771,1,1,49,50],[772,1,1,50,51],[773,1,1,51,52],[774,1,1,52,53],[776,3,3,53,56],[777,3,3,56,59],[778,3,3,59,62],[779,2,2,62,64],[780,2,2,64,66],[781,1,1,66,67],[783,1,1,67,68],[784,1,1,68,69],[786,1,1,69,70],[787,1,1,70,71],[788,1,1,71,72],[790,1,1,72,73],[791,1,1,73,74],[793,1,1,74,75]]],[25,49,49,75,124,[[804,1,1,75,76],[807,1,1,76,77],[808,1,1,77,78],[812,1,1,78,79],[813,5,5,79,84],[814,1,1,84,85],[815,2,2,85,87],[816,1,1,87,88],[817,1,1,88,89],[818,2,2,89,91],[819,1,1,91,92],[821,2,2,92,94],[822,3,3,94,97],[823,3,3,97,100],[824,1,1,100,101],[825,3,3,101,104],[826,1,1,104,105],[827,1,1,105,106],[828,1,1,106,107],[829,3,3,107,110],[830,2,2,110,112],[831,2,2,112,114],[832,1,1,114,115],[833,2,2,115,117],[834,2,2,117,119],[835,1,1,119,120],[836,1,1,120,121],[837,1,1,121,122],[838,1,1,122,123],[839,1,1,123,124]]],[26,1,1,124,125,[[858,1,1,124,125]]],[27,1,1,125,126,[[862,1,1,125,126]]],[28,1,1,126,127,[[876,1,1,126,127]]],[31,2,2,127,129,[[889,1,1,127,128],[891,1,1,128,129]]],[32,1,1,129,130,[[893,1,1,129,130]]],[35,1,1,130,131,[[906,1,1,130,131]]],[36,5,5,131,136,[[909,2,2,131,133],[910,3,3,133,136]]],[37,10,10,136,146,[[911,2,2,136,138],[914,1,1,138,139],[916,1,1,139,140],[917,4,4,140,144],[918,2,2,144,146]]]],[361,4448,6578,6858,7298,7570,8184,8703,8907,9173,9204,9284,9290,9319,9325,9342,9372,9468,9479,9591,10102,10205,10866,10972,11416,11444,11489,11491,11601,11695,18394,18948,18949,18950,18957,18959,18966,19120,19227,19269,19274,19294,19337,19385,19389,19441,19528,19535,19573,19597,19630,19665,19668,19732,19737,19757,19776,19794,19798,19802,19809,19813,19824,19835,19843,19869,19880,19938,19942,19982,20005,20011,20046,20074,20161,20518,20564,20578,20669,20681,20688,20697,20701,20706,20709,20733,20743,20755,20763,20826,20836,20850,20897,20940,20945,20952,20962,20977,20993,20999,21008,21057,21071,21076,21084,21101,21122,21158,21168,21177,21184,21200,21205,21224,21231,21249,21265,21281,21303,21314,21345,21375,21412,21426,21990,22095,22292,22532,22559,22580,22788,22841,22843,22856,22865,22875,22879,22885,22930,22956,22963,22966,22970,22974,22977,22994]]],["caused",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[25,1,1,1,2,[[845,1,1,1,2]]]],[4680,21611]]],["come",[9,9,[[8,2,2,0,2,[[245,1,1,0,1],[255,1,1,1,2]]],[13,1,1,2,3,[[385,1,1,2,3]]],[23,2,2,3,5,[[769,1,1,3,4],[784,1,1,4,5]]],[24,2,2,5,7,[[799,1,1,5,6],[801,1,1,6,7]]],[25,1,1,7,8,[[831,1,1,7,8]]],[29,1,1,8,9,[[883,1,1,8,9]]]],[7429,7754,11586,19537,19944,20401,20443,21213,22428]]],["committed",[2,2,[[4,1,1,0,1,[[173,1,1,0,1]]],[23,1,1,1,2,[[749,1,1,1,2]]]],[5469,19088]]],["continue",[2,2,[[8,1,1,0,1,[[247,1,1,0,1]]],[9,1,1,1,2,[[273,1,1,1,2]]]],[7474,8209]]],["continued",[3,3,[[0,1,1,0,1,[[39,1,1,0,1]]],[7,1,1,1,2,[[232,1,1,1,2]]],[26,1,1,2,3,[[850,1,1,2,3]]]],[1176,7129,21758]]],["count",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16261]]],["counted",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8738]]],["did",[4,4,[[6,1,1,0,1,[[226,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[11,2,2,2,4,[[316,1,1,2,3],[330,1,1,3,4]]]],[6970,7251,9604,10028]]],["done",[5,5,[[6,2,2,0,2,[[229,1,1,0,1],[230,1,1,1,2]]],[10,1,1,2,3,[[291,1,1,2,3]]],[13,1,1,3,4,[[377,1,1,3,4]]],[25,1,1,4,5,[[840,1,1,4,5]]]],[7054,7066,8744,11418,21456]]],["endure",[3,3,[[18,3,3,0,3,[[549,1,1,0,1],[566,1,1,1,2],[581,1,1,2,3]]]],[15017,15362,15602]]],["endured",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15232]]],["enjoy",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5652]]],["fainted",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21988]]],["fell",[6,6,[[5,1,1,0,1,[[208,1,1,0,1]]],[11,3,3,1,4,[[316,3,3,1,4]]],[12,1,1,4,5,[[364,1,1,4,5]]],[13,1,1,5,6,[[383,1,1,5,6]]]],[6446,9611,9614,9621,11133,11533]]],["follow",[3,3,[[1,2,2,0,2,[[70,2,2,0,2]]],[4,1,1,2,3,[[170,1,1,2,3]]]],[2099,2100,5406]]],["given",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7161]]],["go",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]]],[4667,9450]]],["gone",[1,1,[[12,1,1,0,1,[[354,1,1,0,1]]]],[10868]]],["had",[94,91,[[0,6,5,0,5,[[10,2,1,0,1],[11,1,1,1,2],[12,1,1,2,3],[25,1,1,3,4],[29,1,1,4,5]]],[1,2,2,5,7,[[59,1,1,5,6],[85,1,1,6,7]]],[2,1,1,7,8,[[110,1,1,7,8]]],[3,5,5,8,13,[[119,1,1,8,9],[130,1,1,9,10],[142,1,1,10,11],[143,1,1,11,12],[148,1,1,12,13]]],[5,11,11,13,24,[[191,1,1,13,14],[194,1,1,14,15],[203,5,5,15,20],[205,1,1,20,21],[207,3,3,21,24]]],[6,6,5,24,29,[[218,2,1,24,25],[220,1,1,25,26],[222,2,2,26,28],[228,1,1,28,29]]],[8,3,3,29,32,[[236,1,1,29,30],[244,1,1,30,31],[248,1,1,31,32]]],[9,9,9,32,41,[[269,1,1,32,33],[270,1,1,33,34],[272,1,1,34,35],[274,1,1,35,36],[278,2,2,36,38],[279,1,1,38,39],[281,1,1,39,40],[287,1,1,40,41]]],[10,7,7,41,48,[[294,2,2,41,43],[295,1,1,43,44],[299,1,1,44,45],[300,1,1,45,46],[301,1,1,46,47],[311,1,1,47,48]]],[11,2,2,48,50,[[313,1,1,48,49],[321,1,1,49,50]]],[12,13,13,50,63,[[339,4,4,50,54],[341,1,1,54,55],[343,1,1,55,56],[344,1,1,56,57],[351,1,1,57,58],[360,2,2,58,60],[361,2,2,60,62],[365,1,1,62,63]]],[13,13,13,63,76,[[367,2,2,63,65],[374,1,1,65,66],[375,1,1,66,67],[376,1,1,67,68],[380,1,1,68,69],[383,2,2,69,71],[384,1,1,71,72],[387,1,1,72,73],[392,2,2,73,75],[398,1,1,75,76]]],[15,1,1,76,77,[[416,1,1,76,77]]],[16,1,1,77,78,[[433,1,1,77,78]]],[17,2,2,78,80,[[477,2,2,78,80]]],[18,1,1,80,81,[[596,1,1,80,81]]],[20,2,1,81,82,[[660,2,1,81,82]]],[21,1,1,82,83,[[678,1,1,82,83]]],[23,1,1,83,84,[[796,1,1,83,84]]],[24,1,1,84,85,[[797,1,1,84,85]]],[25,6,6,85,91,[[820,1,1,85,86],[830,1,1,86,87],[836,1,1,87,88],[842,1,1,88,89],[845,2,2,89,91]]]],[269,314,323,706,873,1800,2573,3348,3696,4132,4522,4557,4719,5946,6022,6276,6278,6281,6283,6286,6323,6385,6391,6401,6749,6815,6878,6883,7020,7214,7393,7506,8098,8122,8180,8219,8288,8289,8340,8391,8595,8868,8870,8893,9070,9105,9111,9452,9550,9770,10328,10332,10340,10358,10390,10520,10550,10778,11000,11005,11017,11043,11155,11206,11208,11352,11389,11401,11483,11528,11536,11543,11630,11742,11743,11902,12365,12833,13934,13935,15954,17340,17651,20301,20317,20892,21201,21349,21532,21621,21624]]],["hadst",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[860]]],["hang",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5677]]],["happened",[1,1,[[8,1,1,0,1,[[241,1,1,0,1]]]],[7340]]],["hast",[2,2,[[1,1,1,0,1,[[62,1,1,0,1]]],[4,1,1,1,2,[[164,1,1,1,2]]]],[1879,5266]]],["hath",[10,10,[[2,3,3,0,3,[[104,1,1,0,1],[109,1,1,1,2],[110,1,1,2,3]]],[4,2,2,3,5,[[162,1,1,3,4],[173,1,1,4,5]]],[9,1,1,5,6,[[281,1,1,5,6]]],[17,1,1,6,7,[[440,1,1,6,7]]],[22,1,1,7,8,[[683,1,1,7,8]]],[23,1,1,8,9,[[749,1,1,8,9]]],[25,1,1,9,10,[[820,1,1,9,10]]]],[3170,3345,3362,5195,5463,8393,12967,17740,19081,20895]]],["have",[99,97,[[0,2,2,0,2,[[17,1,1,0,1],[31,1,1,1,2]]],[1,4,4,2,6,[[67,1,1,2,3],[69,1,1,3,4],[77,2,2,4,6]]],[2,17,17,6,23,[[96,4,4,6,10],[102,4,4,10,14],[104,1,1,14,15],[105,1,1,15,16],[108,1,1,16,17],[112,2,2,17,19],[113,1,1,19,20],[114,2,2,20,22],[115,1,1,22,23]]],[3,14,14,23,37,[[121,1,1,23,24],[125,1,1,24,25],[131,1,1,25,26],[134,1,1,26,27],[141,1,1,27,28],[144,2,2,28,30],[145,4,4,30,34],[150,1,1,34,35],[151,2,2,35,37]]],[4,14,13,37,50,[[157,1,1,37,38],[170,2,2,38,40],[173,2,2,40,42],[175,2,2,42,44],[177,4,3,44,47],[180,2,2,47,49],[181,1,1,49,50]]],[5,2,2,50,52,[[197,1,1,50,51],[203,1,1,51,52]]],[6,1,1,52,53,[[227,1,1,52,53]]],[7,1,1,53,54,[[232,1,1,53,54]]],[8,3,3,54,57,[[243,1,1,54,55],[246,1,1,55,56],[263,1,1,56,57]]],[9,3,3,57,60,[[270,1,1,57,58],[273,1,1,58,59],[275,1,1,59,60]]],[10,3,3,60,63,[[301,2,2,60,62],[311,1,1,62,63]]],[11,1,1,63,64,[[333,1,1,63,64]]],[13,1,1,64,65,[[367,1,1,64,65]]],[15,2,2,65,67,[[418,2,2,65,67]]],[17,2,2,67,69,[[441,1,1,67,68],[451,1,1,68,69]]],[18,1,1,69,70,[[560,1,1,69,70]]],[19,2,2,70,72,[[628,1,1,70,71],[641,1,1,71,72]]],[20,1,1,72,73,[[664,1,1,72,73]]],[22,3,3,73,76,[[708,1,1,73,74],[728,1,1,74,75],[737,1,1,75,76]]],[23,11,11,76,87,[[748,1,1,76,77],[758,1,1,77,78],[760,1,1,78,79],[767,1,1,79,80],[773,2,2,80,82],[776,1,1,82,83],[779,2,2,83,85],[780,1,1,85,86],[782,1,1,86,87]]],[25,9,8,87,95,[[807,1,1,87,88],[819,1,1,88,89],[838,1,1,89,90],[842,1,1,90,91],[845,2,1,91,92],[846,3,3,92,95]]],[32,2,2,95,97,[[894,1,1,95,96],[897,1,1,96,97]]]],[436,933,2015,2054,2300,2325,2886,2887,2889,2912,3054,3076,3081,3090,3187,3205,3317,3409,3426,3468,3495,3513,3561,3810,3979,4182,4277,4484,4602,4603,4609,4615,4620,4643,4822,4848,4858,5060,5385,5386,5462,5465,5512,5513,5560,5561,5562,5651,5676,5698,6127,6292,6993,7139,7388,7454,7964,8130,8186,8237,9140,9144,9453,10134,11206,12414,12415,12988,13256,15249,16414,16798,17420,18246,18673,18802,19037,19306,19338,19501,19642,19667,19761,19830,19832,19872,19897,20571,20852,21421,21532,21617,21635,21640,21651,22600,22645]]],["having",[2,2,[[7,1,1,0,1,[[232,1,1,0,1]]],[13,1,1,1,2,[[377,1,1,1,2]]]],[7140,11426]]],["he",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13349]]],["is",[76,75,[[1,1,1,0,1,[[58,1,1,0,1]]],[2,6,6,1,7,[[102,3,3,1,4],[104,1,1,4,5],[110,1,1,5,6],[114,1,1,6,7]]],[3,3,3,7,10,[[121,1,1,7,8],[125,1,1,8,9],[145,1,1,9,10]]],[4,4,4,10,14,[[167,1,1,10,11],[169,1,1,11,12],[172,1,1,12,13],[175,1,1,13,14]]],[5,2,2,14,16,[[195,1,1,14,15],[203,1,1,15,16]]],[8,2,2,16,18,[[239,1,1,16,17],[258,1,1,17,18]]],[9,2,2,18,20,[[279,1,1,18,19],[283,1,1,19,20]]],[10,4,4,20,24,[[298,1,1,20,21],[299,1,1,21,22],[301,1,1,22,23],[302,1,1,23,24]]],[11,1,1,24,25,[[332,1,1,24,25]]],[12,1,1,25,26,[[359,1,1,25,26]]],[13,3,3,26,29,[[371,1,1,26,27],[372,1,1,27,28],[373,1,1,28,29]]],[17,3,3,29,32,[[451,1,1,29,30],[459,1,1,30,31],[465,1,1,31,32]]],[18,6,6,32,38,[[499,1,1,32,33],[553,1,1,33,34],[566,1,1,34,35],[571,1,1,35,36],[581,1,1,36,37],[595,1,1,37,38]]],[19,4,4,38,42,[[630,1,1,38,39],[641,2,2,39,41],[658,1,1,41,42]]],[20,1,1,42,43,[[665,1,1,42,43]]],[22,9,9,43,52,[[693,1,1,43,44],[696,1,1,44,45],[701,1,1,45,46],[707,1,1,46,47],[711,1,1,47,48],[717,1,1,48,49],[733,1,1,49,50],[742,2,2,50,52]]],[23,9,9,52,61,[[746,1,1,52,53],[750,1,1,53,54],[756,1,1,54,55],[759,1,1,55,56],[761,1,1,56,57],[767,1,1,57,58],[769,1,1,58,59],[788,1,1,59,60],[792,1,1,60,61]]],[24,3,3,61,64,[[797,2,2,61,63],[801,1,1,63,64]]],[25,10,9,64,73,[[802,1,1,64,65],[808,1,1,65,66],[816,2,1,66,67],[817,1,1,67,68],[825,2,2,68,70],[833,1,1,70,71],[835,1,1,71,72],[849,1,1,72,73]]],[27,2,2,73,75,[[868,2,2,73,75]]]],[1745,3061,3099,3104,3185,3364,3474,3809,3978,4609,5322,5365,5441,5510,6049,6285,7313,7832,8352,8458,9020,9059,9119,9175,10113,10978,11277,11308,11345,13246,13450,13588,14218,15083,15367,15453,15591,15892,16482,16795,16807,17298,17439,17966,18002,18080,18206,18288,18416,18746,18895,18896,18979,19099,19257,19333,19364,19494,19572,20032,20099,20318,20327,20459,20492,20596,20756,20796,21063,21080,21271,21325,21724,22186,22189]]],["keep",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[969]]],["lasted",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6926]]],["lay",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21393]]],["let",[3,3,[[0,1,1,0,1,[[0,1,1,0,1]]],[18,1,1,1,2,[[546,1,1,1,2]]],[23,1,1,2,3,[[794,1,1,2,3]]]],[5,14960,20195]]],["made",[4,4,[[6,1,1,0,1,[[231,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]],[23,1,1,3,4,[[764,1,1,3,4]]]],[7107,11311,18424,19430]]],["marry",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5552]]],["may",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5409]]],["out",[1,1,[[11,1,1,0,1,[[319,1,1,0,1]]]],[9727]]],["pass",[517,516,[[0,72,72,0,72,[[3,3,3,0,3],[5,1,1,3,4],[6,1,1,4,5],[7,2,2,5,7],[8,1,1,7,8],[10,1,1,8,9],[11,3,3,9,12],[13,1,1,12,13],[14,1,1,13,14],[18,3,3,14,17],[19,1,1,17,18],[20,1,1,18,19],[21,2,2,19,21],[23,6,6,21,27],[24,1,1,27,28],[25,2,2,28,30],[26,3,3,30,33],[28,4,4,33,37],[29,2,2,37,39],[30,1,1,39,40],[33,1,1,40,41],[34,3,3,41,44],[36,1,1,44,45],[37,6,6,45,51],[38,8,8,51,59],[39,2,2,59,61],[40,3,3,61,64],[41,1,1,64,65],[42,2,2,65,67],[43,2,2,67,69],[45,1,1,69,70],[46,1,1,70,71],[47,1,1,71,72]]],[1,35,34,72,106,[[50,2,2,72,74],[51,2,2,74,76],[52,1,1,76,77],[53,3,3,77,80],[55,1,1,80,81],[61,6,5,81,86],[62,2,2,86,88],[63,1,1,88,89],[65,5,5,89,94],[66,1,1,94,95],[67,1,1,95,96],[68,1,1,96,97],[71,1,1,97,98],[81,2,2,98,100],[82,4,4,100,104],[83,1,1,104,105],[89,1,1,105,106]]],[2,1,1,106,107,[[98,1,1,106,107]]],[3,15,15,107,122,[[121,1,1,107,108],[123,1,1,108,109],[126,2,2,109,111],[127,1,1,111,112],[132,2,2,112,114],[133,2,2,114,116],[137,2,2,116,118],[138,1,1,118,119],[142,1,1,119,120],[149,2,2,120,122]]],[4,16,16,122,138,[[153,1,1,122,123],[154,1,1,123,124],[157,1,1,124,125],[159,1,1,125,126],[161,1,1,126,127],[163,2,2,127,129],[170,1,1,129,130],[176,1,1,130,131],[180,3,3,131,134],[181,1,1,134,135],[182,1,1,135,136],[183,2,2,136,138]]],[5,32,32,138,170,[[187,1,1,138,139],[188,1,1,139,140],[189,3,3,140,143],[190,3,3,143,146],[191,3,3,146,149],[192,5,5,149,154],[194,3,3,154,157],[195,2,2,157,159],[196,5,5,159,164],[197,1,1,164,165],[201,1,1,165,166],[203,1,1,166,167],[209,2,2,167,169],[210,1,1,169,170]]],[6,27,27,170,197,[[211,3,3,170,173],[212,2,2,173,175],[213,1,1,175,176],[216,2,2,176,178],[217,1,1,178,179],[218,1,1,179,180],[219,1,1,180,181],[221,3,3,181,184],[223,1,1,184,185],[224,3,3,185,188],[225,2,2,188,190],[226,3,3,190,193],[229,2,2,193,195],[231,2,2,195,197]]],[7,3,3,197,200,[[232,2,2,197,199],[234,1,1,199,200]]],[8,38,38,200,238,[[236,2,2,200,202],[237,1,1,202,203],[238,1,1,203,204],[239,1,1,204,205],[240,1,1,205,206],[242,1,1,206,207],[243,1,1,207,208],[244,1,1,208,209],[245,2,2,209,211],[246,1,1,211,212],[248,2,2,212,214],[249,2,2,214,216],[251,3,3,216,219],[252,1,1,219,220],[253,5,5,220,225],[255,2,2,225,227],[258,2,2,227,229],[259,3,3,229,232],[260,3,3,232,235],[263,1,1,235,236],[265,1,1,236,237],[266,1,1,237,238]]],[9,28,28,238,266,[[267,2,2,238,240],[268,2,2,240,242],[269,1,1,242,243],[270,1,1,243,244],[273,2,2,244,246],[274,1,1,246,247],[276,1,1,247,248],[277,4,4,248,252],[278,1,1,252,253],[279,4,4,253,257],[281,3,3,257,260],[282,1,1,260,261],[283,3,3,261,264],[285,1,1,264,265],[287,1,1,265,266]]],[10,43,43,266,309,[[291,1,1,266,267],[292,1,1,267,268],[293,1,1,268,269],[295,1,1,269,270],[296,1,1,270,271],[298,1,1,271,272],[299,2,2,272,274],[301,3,3,274,277],[302,2,2,277,279],[303,4,4,279,283],[304,1,1,283,284],[305,2,2,284,286],[306,3,3,286,289],[307,2,2,289,291],[308,8,8,291,299],[309,1,1,299,300],[310,2,2,300,302],[311,4,4,302,306],[312,3,3,306,309]]],[11,36,36,309,345,[[314,3,3,309,312],[315,3,3,312,315],[316,3,3,315,318],[317,1,1,318,319],[318,3,3,319,322],[319,1,1,322,323],[320,3,3,323,326],[321,1,1,326,327],[322,3,3,327,330],[325,1,1,330,331],[326,1,1,331,332],[327,1,1,332,333],[330,2,2,333,335],[331,3,3,335,338],[332,1,1,338,339],[334,2,2,339,341],[336,1,1,341,342],[337,3,3,342,345]]],[12,10,10,345,355,[[347,1,1,345,346],[352,2,2,346,348],[354,3,3,348,351],[355,1,1,351,352],[356,1,1,352,353],[357,2,2,353,355]]],[13,20,20,355,375,[[371,2,2,355,357],[374,1,1,357,358],[376,1,1,358,359],[378,2,2,359,361],[379,1,1,361,362],[382,1,1,362,363],[384,2,2,363,365],[386,1,1,365,366],[387,1,1,366,367],[388,1,1,367,368],[390,3,3,368,371],[391,3,3,371,374],[400,1,1,374,375]]],[15,13,13,375,388,[[413,2,2,375,377],[414,1,1,377,378],[416,5,5,378,383],[418,2,2,383,385],[419,1,1,385,386],[425,2,2,386,388]]],[16,4,4,388,392,[[426,1,1,388,389],[427,1,1,389,390],[428,1,1,390,391],[430,1,1,391,392]]],[22,31,31,392,423,[[680,1,1,392,393],[681,1,1,393,394],[682,1,1,394,395],[685,6,6,395,401],[686,1,1,401,402],[688,3,3,402,405],[689,1,1,405,406],[692,2,2,406,408],[694,1,1,408,409],[695,1,1,409,410],[700,2,2,410,412],[701,2,2,412,414],[702,2,2,414,416],[705,2,2,416,418],[714,1,1,418,419],[715,2,2,419,421],[743,1,1,421,422],[744,1,1,422,423]]],[23,37,37,423,460,[[747,2,2,423,425],[748,1,1,425,426],[749,1,1,426,427],[756,2,2,427,429],[757,1,1,429,430],[759,1,1,430,431],[760,1,1,431,432],[761,1,1,432,433],[764,1,1,433,434],[769,1,1,434,435],[770,1,1,435,436],[771,1,1,436,437],[772,1,1,437,438],[774,1,1,438,439],[775,1,1,439,440],[776,1,1,440,441],[779,1,1,441,442],[780,4,4,442,446],[781,1,1,446,447],[783,1,1,447,448],[785,4,4,448,452],[786,3,3,452,455],[787,1,1,455,456],[793,1,1,456,457],[796,3,3,457,460]]],[24,1,1,460,461,[[799,1,1,460,461]]],[25,24,24,461,485,[[802,1,1,461,462],[804,1,1,462,463],[809,1,1,463,464],[810,1,1,464,465],[811,1,1,465,466],[812,1,1,466,467],[817,1,1,467,468],[821,1,1,468,469],[822,1,1,469,470],[827,1,1,470,471],[830,1,1,471,472],[831,1,1,472,473],[832,1,1,473,474],[833,2,2,474,476],[834,1,1,476,477],[839,2,2,477,479],[840,1,1,479,480],[845,1,1,480,481],[848,4,4,481,485]]],[26,2,2,485,487,[[857,2,2,485,487]]],[27,3,3,487,490,[[862,2,2,487,489],[863,1,1,489,490]]],[28,3,3,490,493,[[877,2,2,490,492],[878,1,1,492,493]]],[29,3,3,493,496,[[884,1,1,493,494],[885,1,1,494,495],[886,1,1,495,496]]],[31,1,1,496,497,[[892,1,1,496,497]]],[32,2,2,497,499,[[896,1,1,497,498],[897,1,1,498,499]]],[33,1,1,499,500,[[902,1,1,499,500]]],[35,3,3,500,503,[[906,3,3,500,503]]],[37,13,13,503,516,[[916,1,1,503,504],[917,2,2,504,506],[918,1,1,506,507],[922,1,1,507,508],[923,4,4,508,512],[924,4,4,512,516]]]],[82,87,93,138,169,189,196,219,268,309,310,312,337,377,474,486,491,508,535,548,567,605,606,613,621,634,643,669,700,724,728,757,767,805,808,818,820,855,871,883,1005,1028,1029,1033,1106,1120,1128,1143,1146,1147,1148,1154,1156,1159,1160,1162,1164,1167,1168,1173,1192,1196,1203,1208,1287,1292,1311,1348,1355,1419,1444,1452,1542,1553,1565,1577,1600,1609,1610,1625,1683,1841,1842,1845,1857,1867,1882,1884,1913,1952,1957,1960,1969,1974,1994,2012,2042,2140,2457,2468,2480,2481,2482,2495,2525,2724,2954,3819,3851,3999,4023,4049,4225,4236,4249,4252,4348,4349,4416,4490,4815,4816,4895,4954,5076,5123,5168,5221,5237,5403,5526,5612,5626,5674,5698,5709,5749,5752,5852,5874,5895,5906,5907,5911,5921,5928,5935,5942,5947,5954,5957,5964,5965,5969,6007,6016,6026,6038,6053,6065,6075,6084,6088,6091,6108,6220,6288,6461,6475,6505,6510,6523,6537,6549,6564,6595,6661,6679,6703,6752,6796,6833,6864,6868,6904,6920,6924,6926,6930,6946,6953,6965,6974,7025,7029,7105,7106,7128,7146,7180,7224,7232,7276,7278,7315,7329,7354,7370,7417,7423,7429,7456,7495,7507,7509,7527,7601,7611,7618,7666,7677,7682,7686,7695,7706,7757,7765,7816,7833,7840,7844,7855,7891,7898,7899,7943,7979,8017,8023,8024,8050,8072,8087,8124,8181,8184,8210,8241,8260,8261,8273,8275,8304,8318,8340,8347,8353,8390,8396,8421,8442,8458,8470,8476,8536,8598,8738,8809,8834,8885,8897,8995,9052,9061,9112,9123,9137,9153,9171,9188,9204,9207,9215,9243,9270,9278,9294,9301,9314,9324,9334,9342,9353,9358,9368,9370,9377,9385,9386,9404,9420,9434,9452,9466,9467,9478,9482,9512,9513,9552,9560,9562,9581,9591,9596,9609,9628,9643,9654,9694,9698,9704,9725,9730,9732,9742,9778,9800,9802,9818,9892,9901,9937,10025,10033,10062,10096,10098,10102,10148,10156,10222,10223,10247,10249,10667,10817,10820,10864,10866,10874,10891,10908,10927,10930,11279,11281,11347,11397,11438,11439,11468,11514,11573,11574,11588,11643,11652,11681,11688,11700,11707,11718,11720,11952,12297,12300,12308,12360,12366,12371,12374,12375,12402,12417,12421,12674,12690,12703,12732,12751,12780,17687,17731,17736,17783,17789,17800,17803,17804,17805,17828,17862,17870,17877,17895,17931,17952,17981,17987,18059,18072,18092,18094,18113,18116,18163,18164,18331,18353,18390,18921,18945,19011,19018,19036,19077,19264,19265,19272,19317,19346,19381,19425,19546,19580,19604,19619,19675,19719,19755,19834,19843,19851,19858,19865,19885,19927,19958,19961,19963,19970,19979,19982,19991,19998,20166,20279,20280,20307,20391,20465,20518,20605,20630,20639,20668,20785,20896,20951,21101,21200,21224,21231,21249,21265,21301,21435,21443,21459,21616,21688,21689,21701,21702,21963,21976,22099,22104,22126,22339,22343,22361,22459,22466,22490,22576,22621,22643,22719,22795,22797,22799,22962,22963,22975,22989,23054,23061,23062,23063,23067,23074,23075,23081,23084]]],["pertained",[2,2,[[9,1,1,0,1,[[275,1,1,0,1]]],[11,1,1,1,2,[[336,1,1,1,2]]]],[8236,10209]]],["pertaineth",[1,1,[[8,1,1,0,1,[[262,1,1,0,1]]]],[7936]]],["quit",[2,1,[[8,2,1,0,1,[[239,2,1,0,1]]]],[7306]]],["reach",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2335]]],["received",[2,2,[[3,2,2,0,2,[[152,2,2,0,2]]]],[4882,4883]]],["remain",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3497]]],["remained",[1,1,[[3,1,1,0,1,[[152,1,1,0,1]]]],[4891]]],["required",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7780]]],["seem",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[739]]],["seemed",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[471]]],["set",[2,2,[[12,2,2,0,2,[[356,1,1,0,1],[357,1,1,1,2]]]],[10917,10928]]],["shall",[11,11,[[1,2,2,0,2,[[74,1,1,0,1],[75,1,1,1,2]]],[9,1,1,2,3,[[281,1,1,2,3]]],[18,1,1,3,4,[[599,1,1,3,4]]],[22,2,2,4,6,[[697,1,1,4,5],[708,1,1,5,6]]],[23,5,5,6,11,[[786,2,2,6,8],[788,1,1,8,9],[794,1,1,9,10],[795,1,1,10,11]]]],[2215,2248,8403,16091,18022,18237,19992,19993,20024,20169,20274]]],["shalt",[3,3,[[4,2,2,0,2,[[168,1,1,0,1],[180,1,1,1,2]]],[9,1,1,2,3,[[276,1,1,2,3]]]],[5357,5640,8251]]],["shew",[2,2,[[10,2,2,0,2,[[291,1,1,0,1],[292,1,1,1,2]]]],[8769,8772]]],["should",[3,3,[[15,1,1,0,1,[[425,1,1,0,1]]],[16,2,2,1,3,[[426,1,1,1,2],[434,1,1,2,3]]]],[12693,12724,12855]]],["take",[2,2,[[6,1,1,0,1,[[225,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]]],[6931,17930]]],["that",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8513]]],["up",[1,1,[[31,1,1,0,1,[[892,1,1,0,1]]]],[22578]]],["use",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[3990]]],["was",[511,482,[[0,68,63,0,63,[[0,8,8,0,8],[1,1,1,8,9],[2,2,2,9,11],[3,4,3,11,14],[4,1,1,14,15],[5,1,1,15,16],[6,3,3,16,19],[9,4,4,19,23],[10,2,2,23,25],[11,1,1,25,26],[12,2,2,26,28],[14,1,1,28,29],[16,1,1,29,30],[20,1,1,30,31],[22,1,1,31,32],[24,2,2,32,34],[25,4,3,34,37],[26,1,1,37,38],[28,1,1,38,39],[29,1,1,39,40],[30,1,1,40,41],[34,3,3,41,44],[35,1,1,44,45],[36,1,1,45,46],[37,4,4,46,50],[38,8,6,50,56],[40,5,4,56,60],[41,1,1,60,61],[46,1,1,61,62],[49,1,1,62,63]]],[1,19,18,63,81,[[50,1,1,63,64],[54,1,1,64,65],[56,1,1,65,66],[57,1,1,66,67],[58,4,3,67,70],[59,2,2,70,72],[60,1,1,72,73],[61,1,1,73,74],[63,1,1,74,75],[65,1,1,75,76],[73,1,1,76,77],[83,1,1,77,78],[87,1,1,78,79],[88,1,1,79,80],[89,1,1,80,81]]],[2,2,2,81,83,[[97,1,1,81,82],[104,1,1,82,83]]],[3,16,16,83,99,[[117,1,1,83,84],[123,1,1,84,85],[125,3,3,85,88],[127,1,1,88,89],[136,1,1,89,90],[142,1,1,90,91],[143,1,1,91,92],[147,6,6,92,98],[149,1,1,98,99]]],[4,4,4,99,103,[[154,2,2,99,101],[155,1,1,101,102],[185,1,1,102,103]]],[5,35,32,103,135,[[187,2,2,103,105],[189,1,1,105,106],[191,2,2,106,108],[192,2,1,108,109],[194,2,2,109,111],[196,1,1,111,112],[197,2,2,112,114],[199,5,5,114,119],[201,2,2,119,121],[202,2,1,121,122],[203,4,3,122,125],[204,1,1,125,126],[205,7,7,126,133],[207,1,1,133,134],[208,1,1,134,135]]],[6,30,29,135,164,[[211,1,1,135,136],[212,2,2,136,138],[213,1,1,138,139],[216,5,4,139,143],[217,2,2,143,145],[218,2,2,145,147],[219,1,1,147,148],[221,3,3,148,151],[222,1,1,151,152],[223,1,1,152,153],[224,1,1,153,154],[227,4,4,154,158],[228,1,1,158,159],[229,3,3,159,162],[230,2,2,162,164]]],[7,4,4,164,168,[[232,2,2,164,166],[233,1,1,166,167],[235,1,1,167,168]]],[8,40,38,168,206,[[236,3,3,168,171],[237,1,1,171,172],[238,2,2,172,174],[239,1,1,174,175],[240,3,2,175,177],[241,1,1,177,178],[242,4,4,178,182],[243,1,1,182,183],[244,1,1,183,184],[245,1,1,184,185],[246,1,1,185,186],[249,7,6,186,192],[252,1,1,192,193],[253,1,1,193,194],[254,5,5,194,199],[256,1,1,199,200],[257,1,1,200,201],[260,2,2,201,203],[262,1,1,203,204],[263,1,1,204,205],[265,1,1,205,206]]],[9,38,35,206,241,[[267,1,1,206,207],[268,3,2,207,209],[269,4,4,209,213],[270,1,1,213,214],[271,1,1,214,215],[272,1,1,215,216],[273,1,1,216,217],[276,1,1,217,218],[278,3,3,218,221],[279,1,1,221,222],[280,4,3,222,225],[281,3,3,225,228],[284,3,3,228,231],[286,1,1,231,232],[287,5,4,232,236],[288,2,2,236,238],[289,2,2,238,240],[290,1,1,240,241]]],[10,49,47,241,288,[[292,2,1,241,242],[293,2,2,242,244],[294,3,3,244,247],[295,3,3,247,250],[296,1,1,250,251],[297,1,1,251,252],[298,5,4,252,256],[300,5,5,256,261],[301,5,5,261,266],[302,2,2,266,268],[303,1,1,268,269],[304,3,3,269,272],[305,6,6,272,278],[307,1,1,278,279],[308,4,4,279,283],[309,1,1,283,284],[310,2,2,284,286],[311,1,1,286,287],[312,1,1,287,288]]],[11,32,30,288,318,[[315,3,3,288,291],[316,2,2,291,293],[317,3,2,293,295],[318,4,3,295,298],[319,1,1,298,299],[320,2,2,299,301],[323,1,1,301,302],[324,3,3,302,305],[326,1,1,305,306],[327,3,3,306,309],[329,2,2,309,311],[330,3,3,311,314],[332,1,1,314,315],[335,1,1,315,316],[337,2,2,316,318]]],[12,20,18,318,336,[[339,1,1,318,319],[341,1,1,319,320],[343,1,1,320,321],[346,1,1,321,322],[348,6,5,322,327],[354,1,1,327,328],[357,3,2,328,330],[359,1,1,330,331],[360,2,2,331,333],[362,2,2,333,335],[363,1,1,335,336]]],[13,34,33,336,369,[[367,2,2,336,338],[372,3,2,338,340],[375,4,4,340,344],[376,1,1,344,345],[379,2,2,345,347],[380,1,1,347,348],[381,2,2,348,350],[383,1,1,350,351],[384,1,1,351,352],[386,1,1,352,353],[387,1,1,353,354],[388,4,4,354,358],[390,1,1,358,359],[392,1,1,359,360],[393,1,1,360,361],[394,1,1,361,362],[395,3,3,362,365],[396,2,2,365,367],[398,2,2,367,369]]],[14,1,1,369,370,[[410,1,1,369,370]]],[15,10,9,370,379,[[413,2,2,370,372],[414,1,1,372,373],[417,2,2,373,375],[420,2,2,375,377],[425,3,2,377,379]]],[16,3,3,379,382,[[427,2,2,379,381],[430,1,1,381,382]]],[17,14,12,382,394,[[436,7,5,382,387],[437,1,1,387,388],[443,1,1,388,389],[451,1,1,389,390],[452,1,1,390,391],[464,2,2,391,393],[477,1,1,393,394]]],[18,11,11,394,405,[[495,2,2,394,396],[507,1,1,396,397],[508,1,1,397,398],[510,1,1,398,399],[515,1,1,399,400],[527,1,1,400,401],[530,1,1,401,402],[546,1,1,402,403],[550,1,1,403,404],[591,1,1,404,405]]],[19,4,3,405,408,[[631,1,1,405,406],[632,1,1,406,407],[635,2,1,407,408]]],[20,3,3,408,411,[[659,2,2,408,410],[660,1,1,410,411]]],[21,1,1,411,412,[[678,1,1,411,412]]],[22,8,8,412,420,[[688,1,1,412,413],[689,1,1,413,414],[692,1,1,414,415],[701,1,1,415,416],[706,1,1,416,417],[717,1,1,417,418],[726,1,1,418,419],[741,1,1,419,420]]],[23,16,16,420,436,[[758,2,2,420,422],[759,1,1,422,423],[761,1,1,423,424],[764,1,1,424,425],[770,2,2,425,427],[776,1,1,427,428],[781,1,1,428,429],[782,1,1,429,430],[783,1,1,430,431],[785,1,1,431,432],[790,1,1,432,433],[792,1,1,433,434],[796,2,2,434,436]]],[24,2,2,436,438,[[798,1,1,436,437],[799,1,1,437,438]]],[25,27,25,438,463,[[802,4,4,438,442],[804,2,2,442,444],[810,1,1,444,445],[816,1,1,445,446],[817,5,4,446,450],[818,1,1,450,451],[820,1,1,451,452],[822,1,1,452,453],[828,2,1,453,454],[832,2,2,454,456],[834,2,2,456,458],[836,1,1,458,459],[837,1,1,459,460],[838,2,2,460,462],[841,1,1,462,463]]],[26,8,7,463,470,[[857,4,3,463,466],[859,3,3,466,469],[861,1,1,469,470]]],[27,1,1,470,471,[[872,1,1,470,471]]],[29,1,1,471,472,[[879,1,1,471,472]]],[31,4,4,472,476,[[889,2,2,472,474],[891,1,1,474,475],[892,1,1,475,476]]],[34,1,1,476,477,[[905,1,1,476,477]]],[37,3,3,477,480,[[913,1,1,477,478],[917,1,1,478,479],[918,1,1,479,480]]],[38,2,2,480,482,[[926,2,2,480,482]]]],[1,2,6,8,10,14,23,29,35,56,75,81,99,100,137,146,165,171,176,243,244,253,264,267,296,308,324,325,377,398,533,572,678,685,693,720,726,757,812,859,913,1014,1016,1027,1052,1085,1124,1126,1140,1141,1151,1154,1155,1169,1170,1171,1208,1248,1249,1251,1257,1448,1515,1537,1645,1706,1725,1753,1766,1768,1790,1799,1812,1846,1909,1971,2195,2524,2657,2673,2745,2946,3178,3648,3862,3980,3981,3985,4032,4313,4553,4557,4680,4696,4700,4701,4707,4716,4774,4953,4974,4979,5815,5856,5868,5900,5935,5947,5976,6027,6037,6078,6126,6127,6170,6177,6179,6183,6184,6203,6204,6270,6276,6277,6282,6305,6322,6330,6331,6339,6346,6354,6362,6391,6443,6528,6560,6563,6599,6657,6681,6692,6694,6702,6709,6730,6745,6805,6830,6834,6868,6874,6886,6929,6981,6987,6991,6992,7024,7025,7026,7054,7057,7092,7128,7134,7166,7203,7213,7216,7230,7257,7277,7295,7307,7328,7330,7332,7354,7362,7365,7366,7371,7392,7427,7456,7522,7523,7526,7528,7533,7560,7660,7688,7713,7714,7715,7726,7729,7778,7791,7863,7881,7937,7962,8003,8024,8060,8066,8082,8083,8087,8118,8124,8134,8170,8189,8249,8289,8304,8316,8355,8381,8382,8383,8391,8394,8401,8484,8485,8486,8580,8581,8598,8599,8600,8621,8626,8664,8672,8708,8785,8828,8837,8845,8866,8875,8879,8890,8891,8913,8942,9002,9003,9039,9042,9081,9082,9084,9085,9093,9112,9123,9128,9133,9148,9166,9171,9208,9224,9246,9248,9252,9255,9256,9263,9265,9281,9334,9345,9348,9386,9387,9400,9437,9448,9476,9515,9580,9585,9603,9611,9644,9648,9655,9679,9699,9700,9723,9744,9745,9832,9856,9860,9866,9898,9927,9930,9958,9990,10008,10026,10029,10031,10111,10190,10225,10238,10309,10394,10508,10635,10675,10679,10686,10693,10694,10876,10931,10932,10971,10986,10994,11047,11053,11087,11197,11205,11289,11290,11365,11368,11373,11377,11410,11455,11460,11489,11507,11509,11526,11574,11616,11644,11647,11651,11655,11656,11681,11753,11763,11773,11799,11823,11827,11839,11853,11900,11906,12232,12297,12307,12318,12383,12400,12498,12510,12677,12697,12729,12744,12781,12870,12872,12874,12875,12882,12892,13036,13250,13266,13536,13547,13929,14136,14141,14326,14342,14375,14504,14689,14724,14945,15042,15824,16493,16531,16632,17325,17327,17343,17650,17864,17900,17956,18090,18177,18414,18630,18874,19297,19298,19331,19373,19431,19592,19596,19733,19887,19923,19938,19964,20047,20107,20282,20296,20337,20368,20467,20476,20484,20489,20505,20524,20625,20759,20777,20781,20811,20818,20832,20891,20966,21128,21233,21237,21302,21304,21354,21376,21398,21404,21478,21963,21966,21968,22017,22019,22024,22082,22244,22365,22535,22548,22561,22570,22772,22915,22969,22986,23108,23109]]],["wast",[15,14,[[0,1,1,0,1,[[39,1,1,0,1]]],[4,6,6,1,7,[[157,1,1,1,2],[167,1,1,2,3],[168,1,1,3,4],[175,1,1,4,5],[176,2,2,5,7]]],[7,1,1,7,8,[[234,1,1,7,8]]],[9,1,1,8,9,[[271,1,1,8,9]]],[17,1,1,9,10,[[473,1,1,9,10]]],[18,1,1,10,11,[[576,1,1,10,11]]],[25,4,3,11,14,[[817,2,1,11,12],[827,1,1,12,13],[829,1,1,13,14]]]],[1185,5068,5334,5354,5507,5543,5547,7174,8134,13797,15507,20784,21117,21171]]],["wear",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5475]]],["well",[1,1,[[2,1,1,0,1,[[113,1,1,0,1]]]],[3468]]],["went",[4,4,[[9,1,1,0,1,[[267,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]],[13,1,1,2,3,[[378,1,1,2,3]]],[23,1,1,3,4,[[751,1,1,3,4]]]],[8026,10558,11449,19143]]],["were",[226,218,[[0,38,38,0,38,[[0,6,6,0,6],[1,1,1,6,7],[3,1,1,7,8],[4,10,10,8,18],[5,1,1,18,19],[6,1,1,19,20],[8,2,2,20,22],[10,1,1,22,23],[24,1,1,23,24],[25,1,1,24,25],[26,1,1,25,26],[29,1,1,26,27],[33,2,2,27,29],[34,2,2,29,31],[35,5,5,31,36],[40,1,1,36,37],[45,1,1,37,38]]],[1,18,18,38,56,[[50,1,1,38,39],[57,1,1,39,40],[59,2,2,40,42],[66,1,1,42,43],[68,1,1,43,44],[71,1,1,44,45],[72,1,1,45,46],[83,1,1,46,47],[85,2,2,47,49],[86,5,5,49,54],[87,2,2,54,56]]],[2,1,1,56,57,[[108,1,1,56,57]]],[3,21,19,57,76,[[117,2,2,57,59],[119,2,2,59,61],[120,4,4,61,65],[125,2,1,65,66],[129,2,1,66,67],[131,1,1,67,68],[132,1,1,68,69],[135,1,1,69,70],[141,1,1,70,71],[142,5,5,71,76]]],[4,6,6,76,82,[[156,1,1,76,77],[157,1,1,77,78],[158,1,1,78,79],[162,2,2,79,81],[180,1,1,81,82]]],[5,21,21,82,103,[[191,2,2,82,84],[193,1,1,84,85],[194,1,1,85,86],[196,2,2,86,88],[200,1,1,88,89],[201,3,3,89,92],[202,1,1,92,93],[203,1,1,93,94],[204,4,4,94,98],[205,2,2,98,100],[206,1,1,100,101],[207,2,2,101,103]]],[6,8,8,103,111,[[213,1,1,103,104],[217,2,2,104,106],[222,1,1,106,107],[226,1,1,107,108],[227,1,1,108,109],[228,1,1,109,110],[230,1,1,110,111]]],[8,13,10,111,121,[[237,1,1,111,112],[246,1,1,112,113],[248,2,1,113,114],[249,2,2,114,116],[257,1,1,116,117],[260,6,4,117,121]]],[9,11,11,121,132,[[268,1,1,121,122],[270,1,1,122,123],[274,2,2,123,125],[276,1,1,125,126],[277,1,1,126,127],[278,1,1,127,128],[285,2,2,128,130],[286,1,1,130,131],[290,1,1,131,132]]],[10,9,9,132,141,[[291,1,1,132,133],[294,2,2,133,135],[295,1,1,135,136],[302,1,1,136,137],[304,2,2,137,139],[306,1,1,139,140],[310,1,1,140,141]]],[11,5,5,141,146,[[319,1,1,141,142],[329,1,1,142,143],[330,1,1,143,144],[331,1,1,144,145],[337,1,1,145,146]]],[12,21,21,146,167,[[338,1,1,146,147],[339,5,5,147,152],[340,1,1,152,153],[341,1,1,153,154],[344,1,1,154,155],[345,2,2,155,157],[346,2,2,157,159],[349,2,2,159,161],[353,1,1,161,162],[355,1,1,162,163],[356,1,1,163,164],[358,1,1,164,165],[360,1,1,165,166],[361,1,1,166,167]]],[13,6,6,167,173,[[379,1,1,167,168],[386,1,1,168,169],[388,1,1,169,170],[394,1,1,170,171],[395,1,1,171,172],[402,1,1,172,173]]],[15,2,2,173,175,[[413,1,1,173,174],[424,1,1,174,175]]],[16,1,1,175,176,[[431,1,1,175,176]]],[17,1,1,176,177,[[436,1,1,176,177]]],[18,4,4,177,181,[[532,1,1,177,178],[582,1,1,178,179],[583,1,1,179,180],[603,1,1,180,181]]],[20,1,1,181,182,[[665,1,1,181,182]]],[22,4,4,182,186,[[685,1,1,182,183],[708,1,1,183,184],[715,1,1,184,185],[724,1,1,185,186]]],[23,9,9,186,195,[[749,1,1,186,187],[755,1,1,187,188],[766,1,1,188,189],[778,1,1,189,190],[780,1,1,190,191],[785,2,2,191,193],[788,1,1,193,194],[796,1,1,194,195]]],[24,1,1,195,196,[[800,1,1,195,196]]],[25,16,14,196,210,[[802,1,1,196,197],[815,1,1,197,198],[818,1,1,198,199],[821,1,1,199,200],[823,1,1,200,201],[824,2,2,201,203],[828,7,5,203,208],[832,1,1,208,209],[841,1,1,209,210]]],[26,2,2,210,212,[[850,1,1,210,211],[859,1,1,211,212]]],[27,2,2,212,214,[[866,1,1,212,213],[870,1,1,213,214]]],[29,1,1,214,215,[[882,1,1,214,215]]],[33,1,1,215,216,[[902,1,1,215,216]]],[36,2,1,216,217,[[910,2,1,216,217]]],[37,1,1,217,218,[[918,1,1,217,218]]]],[4,7,12,18,22,30,55,87,109,110,113,116,119,122,125,128,132,136,141,169,223,234,298,661,727,750,872,985,1005,1033,1039,1047,1051,1053,1054,1062,1243,1398,1537,1728,1783,1791,1995,2042,2134,2153,2497,2595,2596,2613,2618,2621,2626,2629,2635,2660,3315,3649,3650,3709,3735,3779,3783,3787,3791,3971,4108,4185,4243,4307,4480,4496,4509,4510,4529,4551,5036,5082,5107,5188,5205,5673,5939,5941,5988,6024,6065,6090,6191,6206,6209,6223,6273,6284,6305,6307,6312,6314,6343,6354,6381,6421,6423,6572,6695,6700,6871,6979,6984,7023,7100,7267,7453,7487,7529,7557,7789,7868,7876,7877,7904,8067,8123,8216,8227,8245,8282,8287,8520,8539,8557,8701,8725,8872,8876,8892,9182,9227,9242,9316,9423,9710,9985,10029,10087,10247,10303,10331,10333,10334,10339,10356,10362,10399,10554,10578,10615,10639,10641,10741,10759,10839,10897,10912,10939,10994,11020,11466,11612,11648,11787,11825,12013,12305,12636,12794,12883,14750,15618,15687,16116,17439,17805,18221,18379,18587,19066,19239,19478,19806,19870,19959,19960,20027,20299,20430,20480,20745,20831,20919,20982,21009,21011,21129,21130,21131,21132,21140,21238,21498,21743,22022,22162,22218,22421,22721,22871,22989]]],["when",[3,3,[[1,1,1,0,1,[[68,1,1,0,1]]],[8,2,2,1,3,[[251,2,2,1,3]]]],[2045,7611,7618]]],["while",[1,1,[[10,1,1,0,1,[[302,1,1,0,1]]]],[9157]]]]},{"k":"H1962","v":[]},{"k":"H1963","v":[["*",[2,2,[[12,1,1,0,1,[[350,1,1,0,1]]],[26,1,1,1,2,[[859,1,1,1,2]]]],[10772,22032]]],["How",[1,1,[[12,1,1,0,1,[[350,1,1,0,1]]]],[10772]]],["how",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22032]]]]},{"k":"H1964","v":[["*",[80,76,[[8,2,2,0,2,[[236,1,1,0,1],[238,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[10,7,7,3,10,[[296,4,4,3,7],[297,2,2,7,9],[311,1,1,9,10]]],[11,4,4,10,14,[[330,1,1,10,11],[332,1,1,11,12],[335,1,1,12,13],[336,1,1,13,14]]],[13,8,8,14,22,[[369,1,1,14,15],[370,3,3,15,18],[392,1,1,18,19],[393,1,1,19,20],[395,1,1,20,21],[402,1,1,21,22]]],[14,3,3,22,25,[[405,2,2,22,24],[406,1,1,24,25]]],[15,3,2,25,27,[[418,3,2,25,27]]],[18,13,13,27,40,[[482,1,1,27,28],[488,1,1,28,29],[495,1,1,29,30],[504,1,1,30,31],[506,1,1,31,32],[522,2,2,32,34],[525,1,1,34,35],[542,1,1,35,36],[545,1,1,36,37],[556,1,1,37,38],[615,1,1,38,39],[621,1,1,39,40]]],[19,1,1,40,41,[[657,1,1,40,41]]],[22,5,5,41,46,[[684,1,1,41,42],[691,1,1,42,43],[717,1,1,43,44],[722,1,1,44,45],[744,1,1,45,46]]],[23,6,4,46,50,[[751,3,1,46,47],[768,1,1,47,48],[794,1,1,48,49],[795,1,1,49,50]]],[25,10,9,50,59,[[809,2,1,50,51],[842,7,7,51,58],[843,1,1,58,59]]],[26,1,1,59,60,[[850,1,1,59,60]]],[27,1,1,60,61,[[869,1,1,60,61]]],[28,1,1,61,62,[[878,1,1,61,62]]],[29,1,1,62,63,[[886,1,1,62,63]]],[31,2,2,63,65,[[890,2,2,63,65]]],[32,1,1,65,66,[[893,1,1,65,66]]],[33,1,1,66,67,[[901,1,1,66,67]]],[34,1,1,67,68,[[904,1,1,67,68]]],[36,2,2,68,70,[[910,2,2,68,70]]],[37,5,5,70,75,[[916,4,4,70,74],[918,1,1,74,75]]],[38,1,1,75,76,[[927,1,1,75,76]]]],[7221,7279,8609,8899,8901,8913,8929,8955,8984,9452,10040,10116,10169,10215,11246,11253,11254,11268,11748,11757,11807,12000,12103,12107,12111,12411,12412,13980,14063,14124,14289,14317,14605,14612,14643,14864,14929,15186,16233,16317,17279,17770,17928,18419,18561,18928,19123,19525,20194,20223,20620,21527,21530,21541,21546,21547,21549,21551,21560,21741,22208,22348,22484,22552,22555,22581,22705,22768,22870,22873,22959,22960,22961,22962,22985,23121]]],["+",[7,7,[[9,1,1,0,1,[[288,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]],[18,2,2,2,4,[[495,1,1,2,3],[545,1,1,3,4]]],[22,1,1,4,5,[[744,1,1,4,5]]],[32,1,1,5,6,[[893,1,1,5,6]]],[36,1,1,6,7,[[910,1,1,6,7]]]],[8609,10169,14124,14929,18928,22581,22873]]],["palace",[7,7,[[10,1,1,0,1,[[311,1,1,0,1]]],[11,1,1,1,2,[[332,1,1,1,2]]],[18,2,2,2,4,[[522,1,1,2,3],[621,1,1,3,4]]],[22,1,1,4,5,[[717,1,1,4,5]]],[26,1,1,5,6,[[850,1,1,5,6]]],[33,1,1,6,7,[[901,1,1,6,7]]]],[9452,10116,14612,16317,18419,21741,22705]]],["palaces",[3,3,[[18,1,1,0,1,[[522,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]],[22,1,1,2,3,[[691,1,1,2,3]]]],[14605,17279,17928]]],["temple",[61,57,[[8,2,2,0,2,[[236,1,1,0,1],[238,1,1,1,2]]],[10,6,6,2,8,[[296,4,4,2,6],[297,2,2,6,8]]],[11,2,2,8,10,[[330,1,1,8,9],[336,1,1,9,10]]],[13,8,8,10,18,[[369,1,1,10,11],[370,3,3,11,14],[392,1,1,14,15],[393,1,1,15,16],[395,1,1,16,17],[402,1,1,17,18]]],[14,3,3,18,21,[[405,2,2,18,20],[406,1,1,20,21]]],[15,3,2,21,23,[[418,3,2,21,23]]],[18,8,8,23,31,[[482,1,1,23,24],[488,1,1,24,25],[504,1,1,25,26],[506,1,1,26,27],[525,1,1,27,28],[542,1,1,28,29],[556,1,1,29,30],[615,1,1,30,31]]],[22,2,2,31,33,[[684,1,1,31,32],[722,1,1,32,33]]],[23,6,4,33,37,[[751,3,1,33,34],[768,1,1,34,35],[794,1,1,35,36],[795,1,1,36,37]]],[25,10,9,37,46,[[809,2,1,37,38],[842,7,7,38,45],[843,1,1,45,46]]],[29,1,1,46,47,[[886,1,1,46,47]]],[31,2,2,47,49,[[890,2,2,47,49]]],[34,1,1,49,50,[[904,1,1,49,50]]],[36,1,1,50,51,[[910,1,1,50,51]]],[37,5,5,51,56,[[916,4,4,51,55],[918,1,1,55,56]]],[38,1,1,56,57,[[927,1,1,56,57]]]],[7221,7279,8899,8901,8913,8929,8955,8984,10040,10215,11246,11253,11254,11268,11748,11757,11807,12000,12103,12107,12111,12411,12412,13980,14063,14289,14317,14643,14864,15186,16233,17770,18561,19123,19525,20194,20223,20620,21527,21530,21541,21546,21547,21549,21551,21560,22484,22552,22555,22768,22870,22959,22960,22961,22962,22985,23121]]],["temples",[2,2,[[27,1,1,0,1,[[869,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]]],[22208,22348]]]]},{"k":"H1965","v":[["*",[13,10,[[14,7,4,0,4,[[406,1,1,0,1],[407,4,2,1,3],[408,2,1,3,4]]],[26,6,6,4,10,[[853,2,2,4,6],[854,3,3,6,9],[855,1,1,9,10]]]],[12124,12148,12149,12156,21841,21866,21876,21877,21879,21923]]],["palace",[5,5,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,4,4,1,5,[[853,2,2,1,3],[854,1,1,3,4],[855,1,1,4,5]]]],[12124,21841,21866,21879,21923]]],["temple",[8,5,[[14,6,3,0,3,[[407,4,2,0,2],[408,2,1,2,3]]],[26,2,2,3,5,[[854,2,2,3,5]]]],[12148,12149,12156,21876,21877]]]]},{"k":"H1966","v":[["Lucifer",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17940]]]]},{"k":"H1967","v":[["Hemam",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1062]]]]},{"k":"H1968","v":[["Heman",[16,14,[[10,1,1,0,1,[[294,1,1,0,1]]],[12,12,10,1,11,[[339,1,1,1,2],[343,1,1,2,3],[352,2,2,3,5],[353,2,2,5,7],[362,6,4,7,11]]],[13,3,3,11,14,[[371,1,1,11,12],[395,1,1,12,13],[401,1,1,13,14]]]],[8875,10312,10487,10808,10810,10861,10862,11047,11050,11051,11052,11280,11805,11981]]]]},{"k":"H1969","v":[["hin",[22,19,[[1,3,2,0,2,[[78,2,1,0,1],[79,1,1,1,2]]],[2,2,2,2,4,[[108,1,1,2,3],[112,1,1,3,4]]],[3,11,9,4,13,[[131,6,6,4,10],[144,5,3,10,13]]],[25,6,6,13,19,[[805,1,1,13,14],[846,1,1,14,15],[847,4,4,15,19]]]],[2376,2406,3317,3415,4157,4158,4159,4160,4162,4163,4582,4584,4591,20540,21654,21660,21662,21666,21669]]]]},{"k":"H1970","v":[["strange",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13300]]]]},{"k":"H1971","v":[["shew",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17716]]]]},{"k":"H1972","v":[["off",[1,1,[[32,1,1,0,1,[[896,1,1,0,1]]]],[22627]]]]},{"k":"H1973","v":[["*",[16,16,[[0,2,2,0,2,[[18,1,1,0,1],[34,1,1,1,2]]],[2,1,1,2,3,[[111,1,1,2,3]]],[3,3,3,3,6,[[131,1,1,3,4],[132,1,1,4,5],[148,1,1,5,6]]],[8,4,4,6,10,[[245,1,1,6,7],[253,1,1,7,8],[255,2,2,8,10]]],[22,2,2,10,12,[[696,2,2,10,12]]],[23,1,1,12,13,[[766,1,1,12,13]]],[25,2,2,13,15,[[840,1,1,13,14],[844,1,1,14,15]]],[29,1,1,15,16,[[883,1,1,15,16]]]],[466,1032,3396,4176,4231,4737,7421,7685,7752,7767,17999,18004,19473,21470,21599,22450]]],["+",[5,5,[[0,1,1,0,1,[[34,1,1,0,1]]],[8,2,2,1,3,[[255,2,2,1,3]]],[23,1,1,3,4,[[766,1,1,3,4]]],[29,1,1,4,5,[[883,1,1,4,5]]]],[1032,7752,7767,19473,22450]]],["back",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[466]]],["forward",[5,5,[[3,1,1,0,1,[[148,1,1,0,1]]],[8,2,2,1,3,[[245,1,1,1,2],[253,1,1,2,3]]],[25,2,2,3,5,[[840,1,1,3,4],[844,1,1,4,5]]]],[4737,7421,7685,21470,21599]]],["henceforward",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4176]]],["hitherto",[2,2,[[22,2,2,0,2,[[696,2,2,0,2]]]],[17999,18004]]],["thenceforth",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3396]]],["yonder",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4231]]]]},{"k":"H1974","v":[["*",[2,2,[[2,1,1,0,1,[[108,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]]],[3305,6781]]],["merry",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6781]]],["praise",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3305]]]]},{"k":"H1975","v":[["*",[7,7,[[6,1,1,0,1,[[216,1,1,0,1]]],[8,2,2,1,3,[[249,1,1,1,2],[252,1,1,2,3]]],[11,2,2,3,5,[[316,1,1,3,4],[335,1,1,4,5]]],[26,1,1,5,6,[[857,1,1,5,6]]],[37,1,1,6,7,[[912,1,1,6,7]]]],[6674,7509,7644,9628,10182,21977,22903]]],["+",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7509]]],["that",[2,2,[[11,2,2,0,2,[[316,1,1,0,1],[335,1,1,1,2]]]],[9628,10182]]],["this",[4,4,[[6,1,1,0,1,[[216,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[26,1,1,2,3,[[857,1,1,2,3]]],[37,1,1,3,4,[[912,1,1,3,4]]]],[6674,7644,21977,22903]]]]},{"k":"H1976","v":[["this",[2,2,[[0,2,2,0,2,[[23,1,1,0,1],[36,1,1,1,2]]]],[656,1102]]]]},{"k":"H1977","v":[["This",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21394]]]]},{"k":"H1978","v":[["steps",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13538]]]]},{"k":"H1979","v":[["*",[6,5,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,2,1,1,2,[[545,2,1,1,2]]],[19,1,1,2,3,[[658,1,1,2,3]]],[33,1,1,3,4,[[901,1,1,3,4]]],[34,1,1,4,5,[[905,1,1,4,5]]]],[12997,14924,17311,22704,22774]]],["companies",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12997]]],["goings",[2,1,[[18,2,1,0,1,[[545,2,1,0,1]]]],[14924]]],["walk",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22704]]],["ways",[2,2,[[19,1,1,0,1,[[658,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[17311,22774]]]]},{"k":"H1980","v":[["*",[1544,1345,[[0,121,113,0,113,[[1,1,1,0,1],[2,2,2,1,3],[4,2,2,3,5],[5,1,1,5,6],[6,1,1,6,7],[7,2,2,7,9],[8,1,1,9,10],[10,1,1,10,11],[11,6,5,11,16],[12,3,3,16,19],[13,3,3,19,22],[14,1,1,22,23],[15,1,1,23,24],[16,1,1,24,25],[17,3,3,25,28],[18,2,2,28,30],[20,3,3,30,33],[21,7,7,33,40],[23,17,14,40,54],[24,3,3,54,57],[25,7,6,57,63],[26,4,4,63,67],[27,7,7,67,74],[28,2,2,74,76],[29,3,3,76,79],[30,5,4,79,83],[31,5,5,83,88],[32,2,1,88,89],[33,1,1,89,90],[34,2,2,90,92],[35,1,1,92,93],[36,8,7,93,100],[37,2,2,100,102],[40,1,1,102,103],[41,4,4,103,107],[42,1,1,107,108],[44,3,3,108,111],[47,1,1,111,112],[49,1,1,112,113]]],[1,73,62,113,175,[[51,6,5,113,118],[52,7,6,118,124],[53,9,6,124,130],[54,7,7,130,137],[56,1,1,137,138],[57,3,3,138,141],[58,1,1,141,142],[59,9,6,142,148],[61,3,3,148,151],[62,2,1,151,152],[63,4,3,152,155],[64,2,2,155,157],[65,1,1,157,158],[66,1,1,158,159],[67,2,2,159,161],[68,3,3,161,164],[70,1,1,164,165],[72,1,1,165,166],[81,5,4,166,170],[82,4,4,170,174],[83,1,1,174,175]]],[2,20,18,175,193,[[100,6,4,175,179],[107,2,2,179,181],[108,1,1,181,182],[109,1,1,182,183],[115,10,10,183,193]]],[3,45,37,193,230,[[126,4,3,193,196],[128,1,1,196,197],[129,1,1,197,198],[130,2,2,198,200],[132,3,2,200,202],[136,1,1,202,203],[137,1,1,203,204],[138,17,15,204,219],[139,6,4,219,223],[140,5,3,223,226],[148,3,3,226,229],[149,1,1,229,230]]],[4,53,52,230,282,[[153,5,4,230,234],[154,3,3,234,237],[156,1,1,237,238],[157,2,2,238,240],[158,2,2,240,242],[160,4,4,242,246],[162,2,2,246,248],[163,3,3,248,251],[165,5,5,251,256],[166,1,1,256,257],[168,1,1,257,258],[169,1,1,258,259],[171,1,1,259,260],[172,5,5,260,265],[175,1,1,265,266],[176,1,1,266,267],[178,2,2,267,269],[180,4,4,269,273],[181,4,4,273,277],[182,1,1,277,278],[183,4,4,278,282]]],[5,51,39,282,321,[[187,3,3,282,285],[188,7,5,285,290],[189,3,3,290,293],[190,1,1,293,294],[191,2,2,294,296],[192,9,3,296,299],[194,3,3,299,302],[195,4,4,302,306],[196,1,1,306,307],[200,1,1,307,308],[202,1,1,308,309],[203,1,1,309,310],[204,6,3,310,313],[208,5,4,313,317],[209,2,2,317,319],[210,2,2,319,321]]],[6,110,89,321,410,[[211,7,6,321,327],[212,5,5,327,332],[213,1,1,332,333],[214,12,5,333,338],[215,3,2,338,340],[216,2,2,340,342],[217,5,2,342,344],[218,2,2,344,346],[219,16,15,346,361],[220,1,1,361,362],[221,10,9,362,371],[222,1,1,371,372],[223,1,1,372,373],[224,4,2,373,375],[225,1,1,375,376],[226,1,1,376,377],[227,3,3,377,380],[228,11,10,380,390],[229,18,14,390,404],[230,1,1,404,405],[231,5,5,405,410]]],[7,18,15,410,425,[[232,10,9,410,419],[233,7,5,419,424],[234,1,1,424,425]]],[8,138,111,425,536,[[236,2,2,425,427],[237,5,5,427,432],[238,5,4,432,436],[241,5,3,436,439],[242,1,1,439,440],[243,3,3,440,443],[244,11,6,443,449],[245,6,4,449,453],[246,3,2,453,455],[247,2,1,455,456],[249,8,7,456,463],[250,7,7,463,470],[251,3,3,470,473],[252,16,12,473,485],[253,1,1,485,486],[254,6,4,486,490],[255,7,6,490,496],[257,4,3,496,499],[258,16,13,499,512],[259,3,3,512,515],[260,4,3,515,518],[261,4,4,518,522],[263,4,4,522,526],[264,4,4,526,530],[265,7,5,530,535],[266,1,1,535,536]]],[9,96,78,536,614,[[268,4,3,536,539],[269,11,7,539,546],[270,2,2,546,548],[271,3,2,548,550],[272,4,4,550,554],[273,6,6,554,560],[274,3,3,560,563],[276,1,1,563,564],[277,2,2,564,566],[278,3,3,566,569],[279,14,11,569,580],[280,4,4,580,584],[281,13,9,584,593],[282,4,2,593,595],[283,7,5,595,600],[284,5,4,600,604],[285,4,4,604,608],[286,2,2,608,610],[287,1,1,610,611],[289,1,1,611,612],[290,2,2,612,614]]],[10,122,106,614,720,[[291,6,6,614,620],[292,10,9,620,629],[293,5,4,629,633],[296,2,1,633,634],[298,7,6,634,640],[299,3,2,640,642],[300,1,1,642,643],[301,7,7,643,650],[302,6,5,650,655],[303,10,8,655,663],[304,7,7,663,670],[305,4,4,670,674],[306,5,4,674,678],[307,7,6,678,684],[308,16,13,684,697],[309,8,7,697,704],[310,7,6,704,710],[311,2,2,710,712],[312,9,8,712,720]]],[11,98,88,720,808,[[313,4,4,720,724],[314,7,7,724,731],[315,4,3,731,734],[316,9,9,734,743],[317,10,8,743,751],[318,11,7,751,758],[319,6,5,758,763],[320,9,9,763,772],[321,6,6,772,778],[322,5,5,778,783],[325,4,4,783,787],[326,1,1,787,788],[328,2,2,788,790],[329,6,5,790,795],[331,1,1,795,796],[332,2,2,796,798],[333,3,2,798,800],[334,3,3,800,803],[335,2,2,803,805],[336,1,1,805,806],[337,2,2,806,808]]],[12,23,22,808,830,[[341,2,2,808,810],[343,1,1,810,811],[348,3,2,811,813],[349,1,1,813,814],[352,1,1,814,815],[353,2,2,815,817],[354,5,5,817,822],[355,3,3,822,825],[356,1,1,825,826],[358,4,4,826,830]]],[13,52,49,830,879,[[367,1,1,830,831],[372,5,4,831,835],[373,3,2,835,837],[374,2,2,837,839],[375,2,2,839,841],[376,3,3,841,844],[377,3,3,844,847],[382,1,1,847,848],[383,3,3,848,851],[384,4,4,851,855],[386,3,3,855,858],[387,4,4,858,862],[388,3,2,862,864],[390,1,1,864,865],[391,4,4,865,869],[392,1,1,869,870],[394,1,1,870,871],[396,1,1,871,872],[399,1,1,872,873],[400,4,4,873,877],[401,1,1,877,878],[402,1,1,878,879]]],[14,3,2,879,881,[[410,1,1,879,880],[412,2,1,880,881]]],[15,14,14,881,895,[[414,2,2,881,883],[417,1,1,883,884],[418,3,3,884,887],[420,2,2,887,889],[421,2,2,889,891],[422,1,1,891,892],[424,3,3,892,895]]],[16,4,3,895,898,[[427,1,1,895,896],[429,1,1,896,897],[434,2,1,897,898]]],[17,29,29,898,927,[[436,2,2,898,900],[437,1,1,900,901],[442,1,1,901,902],[445,1,1,902,903],[447,2,2,903,905],[449,1,1,905,906],[451,2,2,906,908],[453,1,1,908,909],[454,1,1,909,910],[455,1,1,910,911],[457,1,1,911,912],[458,1,1,912,913],[459,1,1,913,914],[462,1,1,914,915],[464,1,1,915,916],[465,1,1,916,917],[466,3,3,917,920],[469,2,2,920,922],[473,2,2,922,924],[476,1,1,924,925],[477,2,2,925,927]]],[18,67,66,927,993,[[478,1,1,927,928],[489,1,1,928,929],[492,1,1,929,930],[500,1,1,930,931],[503,3,3,931,934],[509,1,1,934,935],[511,1,1,935,936],[512,1,1,936,937],[515,1,1,937,938],[516,2,2,938,940],[519,1,1,940,941],[520,1,1,941,942],[523,1,1,942,943],[532,1,1,943,944],[533,1,1,944,945],[535,2,2,945,947],[543,2,2,947,949],[545,1,1,949,950],[550,1,1,950,951],[554,1,1,951,952],[555,2,2,952,954],[557,1,1,954,955],[558,2,2,955,957],[559,1,1,957,958],[560,1,1,958,959],[561,2,2,959,961],[562,1,1,961,962],[563,1,1,962,963],[566,2,2,963,965],[568,1,1,965,966],[572,1,1,966,967],[574,1,1,967,968],[578,2,2,968,970],[581,3,3,970,973],[582,2,2,973,975],[583,1,1,975,976],[584,1,1,976,977],[586,1,1,977,978],[592,1,1,978,979],[593,1,1,979,980],[596,3,3,980,983],[599,1,1,983,984],[602,1,1,984,985],[603,2,1,985,986],[605,1,1,986,987],[608,1,1,987,988],[613,1,1,988,989],[615,1,1,989,990],[616,1,1,990,991],[619,1,1,991,992],[620,1,1,992,993]]],[19,38,37,993,1030,[[628,2,2,993,995],[629,3,3,995,998],[630,2,2,998,1000],[631,2,2,1000,1002],[633,6,6,1002,1008],[634,3,3,1008,1011],[635,1,1,1011,1012],[636,1,1,1012,1013],[637,2,1,1013,1014],[638,1,1,1014,1015],[640,1,1,1015,1016],[641,2,2,1016,1018],[642,2,2,1018,1020],[643,1,1,1020,1021],[646,1,1,1021,1022],[647,2,2,1022,1024],[650,1,1,1024,1025],[651,1,1,1025,1026],[655,3,3,1026,1029],[657,1,1,1029,1030]]],[20,30,25,1030,1055,[[659,6,3,1030,1033],[660,2,2,1033,1035],[661,1,1,1035,1036],[662,1,1,1036,1037],[663,4,3,1037,1040],[664,4,4,1040,1044],[665,2,1,1044,1045],[666,2,2,1045,1047],[667,2,2,1047,1049],[668,4,4,1049,1053],[669,1,1,1053,1054],[670,1,1,1054,1055]]],[21,7,7,1055,1062,[[672,3,3,1055,1058],[674,1,1,1058,1059],[676,1,1,1059,1060],[677,2,2,1060,1062]]],[22,62,53,1062,1115,[[679,1,1,1062,1063],[680,5,2,1063,1065],[681,3,1,1065,1066],[684,2,2,1066,1068],[686,3,3,1068,1071],[687,1,1,1071,1072],[696,1,1,1072,1073],[698,3,2,1073,1075],[699,1,1,1075,1076],[700,1,1,1076,1077],[704,1,1,1077,1078],[706,1,1,1078,1079],[708,3,3,1079,1082],[711,2,2,1082,1084],[713,2,2,1084,1086],[715,1,1,1086,1087],[716,3,3,1087,1090],[718,1,1,1090,1091],[720,3,3,1091,1094],[721,1,1,1094,1095],[723,3,3,1095,1098],[724,1,1,1098,1099],[726,2,2,1099,1101],[728,2,2,1101,1103],[730,2,1,1103,1104],[733,4,2,1104,1106],[735,2,2,1106,1108],[736,1,1,1108,1109],[737,1,1,1109,1110],[738,2,2,1110,1112],[741,2,2,1112,1114],[743,1,1,1114,1115]]],[23,116,103,1115,1218,[[745,1,1,1115,1116],[746,8,7,1116,1123],[747,6,6,1123,1129],[749,2,2,1129,1131],[750,4,3,1131,1134],[751,5,5,1134,1139],[752,1,1,1139,1140],[753,5,5,1140,1145],[754,1,1,1145,1146],[755,3,3,1146,1149],[756,2,2,1149,1151],[757,7,6,1151,1157],[759,1,1,1157,1158],[760,3,3,1158,1161],[761,1,1,1161,1162],[762,4,3,1162,1165],[763,2,2,1165,1167],[764,1,1,1167,1168],[766,2,2,1168,1170],[767,2,2,1170,1172],[769,1,1,1172,1173],[770,1,1,1173,1174],[772,2,2,1174,1176],[773,1,1,1176,1177],[774,1,1,1177,1178],[775,3,3,1178,1181],[776,2,2,1181,1183],[778,1,1,1183,1184],[779,3,3,1184,1187],[780,2,2,1187,1189],[781,4,2,1189,1191],[783,1,1,1191,1192],[784,5,3,1192,1195],[785,8,6,1195,1201],[786,1,1,1201,1202],[788,3,3,1202,1205],[789,1,1,1205,1206],[790,2,1,1206,1207],[792,3,2,1207,1209],[793,1,1,1209,1210],[794,4,3,1210,1213],[795,3,3,1213,1216],[796,2,2,1216,1218]]],[24,6,6,1218,1224,[[797,3,3,1218,1221],[799,1,1,1221,1222],[800,1,1,1222,1223],[801,1,1,1223,1224]]],[25,67,51,1224,1275,[[802,18,8,1224,1232],[804,4,4,1232,1236],[806,2,2,1236,1238],[808,2,2,1238,1240],[811,8,3,1240,1243],[812,3,3,1243,1246],[813,1,1,1246,1247],[814,1,1,1247,1248],[817,1,1,1248,1249],[819,2,2,1249,1251],[820,1,1,1251,1252],[821,7,6,1252,1258],[822,1,1,1258,1259],[824,1,1,1259,1260],[826,1,1,1260,1261],[829,1,1,1261,1262],[831,2,2,1262,1264],[832,1,1,1264,1265],[833,1,1,1265,1266],[834,2,2,1266,1268],[837,2,2,1268,1270],[838,2,2,1270,1272],[841,1,1,1272,1273],[844,1,1,1273,1274],[848,1,1,1274,1275]]],[26,3,3,1275,1278,[[858,1,1,1275,1276],[861,2,2,1276,1278]]],[27,22,22,1278,1300,[[862,2,2,1278,1280],[863,4,4,1280,1284],[864,1,1,1284,1285],[866,5,5,1285,1290],[867,2,2,1290,1292],[868,2,2,1292,1294],[870,1,1,1294,1295],[872,2,2,1295,1297],[874,1,1,1297,1298],[875,2,2,1298,1300]]],[28,4,3,1300,1303,[[877,2,2,1300,1302],[878,2,1,1302,1303]]],[29,9,9,1303,1312,[[879,1,1,1303,1304],[880,3,3,1304,1307],[881,1,1,1307,1308],[884,1,1,1308,1309],[885,2,2,1309,1311],[887,1,1,1311,1312]]],[31,6,6,1312,1318,[[889,4,4,1312,1316],[891,2,2,1316,1318]]],[32,12,9,1318,1327,[[893,1,1,1318,1319],[894,4,4,1319,1323],[896,5,2,1323,1325],[898,2,2,1325,1327]]],[33,2,2,1327,1329,[[901,1,1,1327,1328],[902,1,1,1328,1329]]],[34,3,3,1329,1332,[[903,1,1,1329,1330],[905,2,2,1330,1332]]],[35,1,1,1332,1333,[[906,1,1,1332,1333]]],[37,17,10,1333,1343,[[911,2,2,1333,1335],[912,1,1,1335,1336],[913,1,1,1336,1337],[915,1,1,1337,1338],[916,5,1,1338,1339],[918,5,2,1339,1341],[919,1,1,1341,1342],[920,1,1,1342,1343]]],[38,2,2,1343,1345,[[926,1,1,1343,1344],[927,1,1,1344,1345]]]],[44,63,69,127,129,146,177,186,188,228,297,299,302,303,307,317,321,323,335,347,348,360,362,389,398,440,446,457,459,489,527,529,532,549,550,552,553,555,560,566,595,596,599,601,629,630,631,633,642,646,647,649,652,656,680,690,692,693,705,708,709,718,723,732,736,740,741,775,778,780,782,783,788,793,796,802,844,855,856,892,903,917,928,929,934,945,947,948,972,997,1014,1033,1046,1095,1096,1097,1100,1103,1108,1110,1130,1138,1250,1271,1278,1285,1290,1298,1375,1382,1386,1466,1524,1555,1559,1561,1562,1563,1589,1590,1595,1597,1598,1600,1613,1619,1620,1622,1628,1630,1635,1636,1639,1640,1643,1649,1650,1700,1735,1737,1738,1765,1785,1786,1788,1801,1803,1805,1844,1847,1848,1888,1908,1910,1918,1939,1942,1951,1988,2019,2026,2036,2045,2050,2096,2167,2439,2445,2461,2472,2474,2487,2488,2489,2505,3017,3018,3024,3039,3254,3255,3297,3341,3527,3536,3537,3545,3547,3548,3551,3552,3564,3565,4017,4018,4020,4068,4101,4122,4146,4219,4240,4328,4362,4381,4382,4386,4387,4388,4389,4391,4392,4395,4396,4397,4398,4410,4412,4414,4419,4423,4429,4443,4447,4460,4471,4757,4759,4760,4768,4911,4922,4923,4925,4945,4952,4965,5007,5083,5086,5093,5100,5139,5143,5152,5156,5197,5198,5227,5230,5236,5274,5276,5277,5278,5285,5315,5349,5367,5415,5431,5432,5433,5434,5435,5514,5527,5568,5583,5620,5625,5647,5652,5684,5697,5698,5705,5724,5729,5734,5736,5742,5858,5860,5867,5870,5874,5885,5890,5891,5896,5897,5899,5928,5940,5947,5957,5958,5962,6011,6015,6037,6041,6043,6048,6049,6088,6197,6273,6282,6297,6301,6302,6430,6431,6432,6435,6474,6476,6479,6493,6512,6519,6520,6525,6526,6535,6551,6557,6562,6564,6567,6581,6605,6607,6608,6621,6623,6629,6633,6668,6675,6698,6701,6720,6748,6755,6758,6760,6761,6762,6763,6764,6765,6766,6767,6768,6775,6803,6804,6809,6825,6834,6835,6837,6840,6845,6847,6866,6867,6869,6870,6895,6912,6918,6933,6950,6988,6989,6990,6995,6998,6999,7000,7002,7007,7012,7014,7017,7019,7026,7027,7029,7031,7032,7033,7034,7035,7037,7038,7041,7042,7051,7052,7062,7112,7122,7123,7125,7126,7128,7134,7135,7138,7139,7143,7145,7146,7148,7151,7152,7157,7158,7160,7182,7229,7230,7251,7260,7266,7270,7275,7281,7282,7284,7285,7337,7339,7343,7368,7372,7374,7391,7394,7396,7397,7398,7400,7401,7420,7427,7432,7444,7459,7460,7462,7509,7511,7514,7524,7525,7527,7554,7563,7566,7578,7580,7587,7592,7594,7596,7597,7608,7625,7631,7632,7633,7638,7650,7651,7655,7657,7659,7662,7666,7703,7718,7724,7728,7729,7741,7743,7751,7752,7770,7772,7788,7790,7792,7812,7813,7815,7823,7826,7828,7832,7833,7834,7835,7836,7837,7838,7841,7846,7861,7876,7888,7903,7916,7917,7924,7930,7949,7950,7964,7967,7974,7975,7977,7978,7980,7987,7999,8000,8009,8021,8068,8078,8081,8082,8097,8100,8102,8103,8104,8105,8125,8127,8138,8142,8159,8161,8169,8176,8183,8185,8186,8187,8189,8203,8212,8215,8223,8251,8261,8281,8301,8309,8315,8324,8325,8330,8332,8336,8341,8342,8343,8351,8354,8355,8364,8377,8379,8386,8396,8398,8400,8401,8403,8408,8409,8411,8419,8439,8443,8460,8466,8467,8470,8472,8499,8502,8503,8511,8526,8535,8536,8537,8559,8575,8592,8670,8693,8704,8729,8730,8755,8766,8767,8770,8772,8773,8774,8778,8796,8799,8810,8811,8812,8819,8820,8822,8830,8908,9008,9010,9021,9043,9046,9051,9055,9057,9092,9113,9118,9129,9130,9132,9141,9146,9152,9156,9167,9175,9181,9193,9194,9196,9198,9199,9201,9208,9212,9220,9222,9225,9226,9227,9230,9235,9252,9268,9275,9283,9285,9302,9309,9314,9320,9322,9326,9327,9328,9332,9342,9343,9346,9347,9349,9352,9353,9355,9357,9359,9362,9376,9386,9390,9391,9395,9402,9406,9407,9408,9417,9430,9435,9444,9446,9451,9477,9478,9484,9486,9493,9495,9523,9528,9529,9532,9535,9536,9537,9539,9552,9557,9558,9562,9567,9569,9576,9583,9585,9589,9606,9608,9610,9626,9627,9628,9632,9633,9638,9652,9657,9658,9659,9666,9671,9672,9673,9676,9677,9678,9687,9693,9696,9697,9711,9715,9716,9721,9722,9728,9729,9735,9736,9737,9741,9745,9754,9755,9757,9760,9771,9772,9774,9791,9805,9808,9809,9818,9824,9873,9877,9882,9892,9904,9966,9973,9991,9998,10002,10005,10010,10097,10101,10107,10140,10141,10147,10158,10159,10168,10194,10217,10226,10242,10424,10427,10469,10677,10682,10740,10816,10840,10863,10867,10869,10871,10874,10884,10893,10896,10903,10912,10936,10938,10944,10964,11197,11296,11298,11309,11313,11341,11343,11349,11363,11376,11385,11396,11400,11411,11418,11428,11431,11512,11526,11527,11535,11545,11547,11554,11556,11619,11623,11624,11630,11636,11637,11644,11647,11649,11702,11714,11715,11717,11721,11740,11766,11833,11919,11935,11954,11955,11964,11990,11999,12232,12258,12323,12324,12391,12403,12408,12418,12503,12505,12523,12530,12578,12655,12656,12662,12735,12778,12838,12873,12876,12893,13017,13107,13145,13147,13201,13244,13260,13284,13307,13351,13403,13427,13446,13502,13535,13585,13593,13595,13614,13691,13706,13809,13828,13907,13930,13931,13940,14074,14089,14239,14274,14276,14284,14363,14399,14424,14496,14518,14525,14564,14568,14622,14746,14768,14786,14787,14878,14889,14921,15029,15110,15123,15152,15200,15229,15230,15238,15245,15266,15270,15284,15295,15341,15356,15401,15455,15481,15515,15519,15574,15581,15597,15619,15647,15660,15706,15778,15837,15857,15899,15901,15943,16090,16115,16121,16127,16149,16212,16238,16246,16289,16301,16411,16415,16440,16446,16453,16478,16483,16502,16508,16543,16546,16551,16552,16562,16568,16593,16594,16597,16622,16643,16665,16701,16767,16774,16779,16819,16828,16869,16926,16961,16973,17075,17113,17202,17214,17222,17280,17319,17321,17322,17334,17347,17379,17396,17398,17412,17413,17421,17423,17425,17426,17431,17461,17468,17482,17485,17496,17500,17508,17513,17522,17528,17564,17565,17567,17588,17615,17636,17638,17672,17688,17690,17723,17777,17778,17813,17814,17818,17831,17999,18031,18032,18041,18067,18150,18177,18219,18238,18246,18294,18300,18328,18329,18389,18393,18395,18400,18451,18485,18496,18504,18507,18563,18575,18577,18588,18631,18635,18672,18673,18708,18741,18743,18767,18782,18794,18809,18824,18835,18878,18879,18899,18953,18967,18970,18971,18973,18982,18988,18990,19003,19008,19010,19014,19019,19020,19063,19081,19105,19114,19117,19125,19128,19131,19142,19143,19155,19177,19179,19185,19188,19189,19224,19234,19236,19238,19251,19258,19267,19270,19271,19272,19273,19276,19321,19341,19347,19348,19376,19396,19399,19402,19408,19417,19428,19464,19476,19498,19501,19540,19576,19629,19631,19647,19683,19693,19700,19712,19736,19754,19803,19825,19836,19838,19856,19861,19883,19886,19939,19945,19946,19956,19963,19967,19969,19971,19972,19974,19978,20013,20020,20033,20045,20067,20082,20091,20130,20169,20170,20172,20221,20262,20271,20283,20302,20315,20316,20328,20356,20438,20460,20473,20476,20477,20481,20483,20484,20485,20488,20503,20506,20513,20516,20552,20553,20591,20594,20644,20649,20655,20667,20675,20676,20691,20711,20809,20858,20866,20887,20908,20911,20913,20914,20916,20934,20951,21038,21086,21171,21221,21222,21234,21262,21295,21311,21371,21386,21418,21421,21501,21573,21685,21998,22090,22094,22096,22097,22110,22112,22118,22119,22129,22158,22163,22165,22166,22167,22168,22171,22189,22190,22214,22242,22250,22269,22288,22291,22318,22319,22361,22379,22383,22386,22389,22398,22452,22476,22479,22499,22533,22538,22542,22544,22560,22561,22587,22598,22602,22605,22606,22622,22625,22656,22664,22710,22722,22737,22773,22779,22804,22888,22889,22901,22919,22946,22954,22997,22999,23013,23028,23109,23134]]],["+",[84,70,[[0,9,8,0,8,[[7,2,2,0,2],[23,4,4,2,6],[30,2,1,6,7],[31,1,1,7,8]]],[1,1,1,8,9,[[51,1,1,8,9]]],[2,1,1,9,10,[[115,1,1,9,10]]],[3,2,2,10,12,[[132,1,1,10,11],[138,1,1,11,12]]],[4,3,3,12,15,[[153,1,1,12,13],[154,1,1,13,14],[156,1,1,14,15]]],[5,3,2,15,17,[[192,3,2,15,17]]],[6,12,9,17,26,[[212,2,2,17,19],[214,3,2,19,21],[215,1,1,21,22],[219,4,3,22,25],[224,2,1,25,26]]],[7,1,1,26,27,[[234,1,1,26,27]]],[8,8,7,27,34,[[249,1,1,27,28],[252,2,2,28,30],[254,2,1,30,31],[259,1,1,31,32],[260,1,1,32,33],[265,1,1,33,34]]],[9,5,3,34,37,[[269,1,1,34,35],[271,2,1,35,36],[279,2,1,36,37]]],[10,6,5,37,42,[[304,1,1,37,38],[308,3,2,38,40],[309,1,1,40,41],[311,1,1,41,42]]],[11,4,4,42,46,[[316,1,1,42,43],[318,1,1,43,44],[325,1,1,44,45],[329,1,1,45,46]]],[12,2,1,46,47,[[348,2,1,46,47]]],[13,3,3,47,50,[[377,1,1,47,48],[383,1,1,48,49],[391,1,1,49,50]]],[17,2,2,50,52,[[436,1,1,50,51],[437,1,1,51,52]]],[18,2,1,52,53,[[603,2,1,52,53]]],[19,1,1,53,54,[[638,1,1,53,54]]],[20,4,4,54,58,[[663,1,1,54,55],[664,1,1,55,56],[665,1,1,56,57],[668,1,1,57,58]]],[22,2,2,58,60,[[686,1,1,58,59],[713,1,1,59,60]]],[23,6,4,60,64,[[776,1,1,60,61],[781,2,1,61,62],[785,2,1,62,63],[792,1,1,63,64]]],[24,1,1,64,65,[[800,1,1,64,65]]],[25,2,2,65,67,[[811,1,1,65,66],[814,1,1,66,67]]],[26,1,1,67,68,[[861,1,1,67,68]]],[37,3,2,68,70,[[915,1,1,68,69],[918,2,1,69,70]]]],[186,188,596,599,630,652,903,947,1563,3537,4219,4391,4911,4945,5007,5957,5962,6557,6564,6608,6623,6629,6758,6762,6803,6918,7182,7527,7631,7632,7729,7861,7888,7999,8082,8142,8336,9226,9359,9362,9407,9477,9633,9693,9873,9998,10682,11418,11535,11717,12876,12893,16121,16701,17412,17426,17431,17513,17818,18328,19736,19883,19963,20082,20438,20644,20711,22094,22946,22997]]],["Away",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2050]]],["Carry",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10010]]],["Come",[45,44,[[0,3,3,0,3,[[18,1,1,0,1],[36,2,2,1,3]]],[1,1,1,3,4,[[52,1,1,3,4]]],[3,4,4,4,8,[[138,1,1,4,5],[139,3,3,5,8]]],[6,7,7,8,15,[[214,1,1,8,9],[219,3,3,9,12],[221,1,1,12,13],[229,2,2,13,15]]],[8,7,7,15,22,[[244,2,2,15,17],[246,1,1,17,18],[249,2,2,18,20],[252,1,1,20,21],[255,1,1,21,22]]],[10,1,1,22,23,[[303,1,1,22,23]]],[11,2,2,23,25,[[322,1,1,23,24],[326,1,1,24,25]]],[13,1,1,25,26,[[391,1,1,25,26]]],[15,2,2,26,28,[[418,2,2,26,28]]],[18,5,5,28,33,[[511,1,1,28,29],[523,1,1,29,30],[543,2,2,30,32],[560,1,1,32,33]]],[19,3,3,33,36,[[628,1,1,33,34],[634,1,1,34,35],[636,1,1,35,36]]],[21,1,1,36,37,[[677,1,1,36,37]]],[22,3,3,37,40,[[679,1,1,37,38],[680,1,1,38,39],[704,1,1,39,40]]],[23,2,1,40,41,[[762,2,1,40,41]]],[27,1,1,41,42,[[867,1,1,41,42]]],[31,1,1,42,43,[[889,1,1,42,43]]],[32,1,1,43,44,[[896,1,1,43,44]]]],[489,1103,1110,1589,4381,4423,4429,4443,6621,6764,6766,6768,6835,7035,7037,7396,7400,7459,7509,7514,7662,7741,9199,9809,9904,11721,12403,12408,14399,14622,14878,14889,15245,16411,16593,16643,17638,17672,17688,18150,19402,22168,22538,22622]]],["Depart",[2,2,[[1,1,1,0,1,[[82,1,1,0,1]]],[10,1,1,1,2,[[302,1,1,1,2]]]],[2474,9156]]],["Get",[6,6,[[1,2,2,0,2,[[56,1,1,0,1],[59,1,1,1,2]]],[3,1,1,2,3,[[138,1,1,2,3]]],[5,1,1,3,4,[[188,1,1,3,4]]],[10,2,2,4,6,[[292,1,1,4,5],[307,1,1,5,6]]]],[1700,1805,4388,5885,8796,9320]]],["Go",[106,106,[[0,4,4,0,4,[[25,1,1,0,1],[26,1,1,1,2],[36,1,1,2,3],[40,1,1,3,4]]],[1,12,12,4,16,[[51,1,1,4,5],[52,1,1,5,6],[53,3,3,6,9],[54,2,2,9,11],[57,1,1,11,12],[59,2,2,12,14],[68,1,1,14,15],[81,1,1,15,16]]],[3,1,1,16,17,[[138,1,1,16,17]]],[4,1,1,17,18,[[157,1,1,17,18]]],[5,2,2,18,20,[[188,1,1,18,19],[204,1,1,19,20]]],[6,7,7,20,27,[[214,1,1,20,21],[220,1,1,21,22],[221,1,1,22,23],[228,2,2,23,25],[231,2,2,25,27]]],[7,3,3,27,30,[[232,1,1,27,28],[233,2,2,28,30]]],[8,12,12,30,42,[[236,1,1,30,31],[238,1,1,31,32],[243,1,1,32,33],[250,2,2,33,35],[252,1,1,35,36],[255,3,3,36,39],[258,2,2,39,41],[261,1,1,41,42]]],[9,10,10,42,52,[[269,1,1,42,43],[273,2,2,43,45],[279,1,1,45,46],[280,1,1,46,47],[281,2,2,47,49],[284,1,1,49,50],[290,2,2,50,52]]],[10,11,11,52,63,[[291,2,2,52,54],[292,1,1,54,55],[304,1,1,55,56],[308,4,4,56,60],[309,2,2,60,62],[310,1,1,62,63]]],[11,12,12,63,75,[[313,2,2,63,65],[314,1,1,65,66],[316,2,2,66,68],[317,2,2,68,70],[318,2,2,70,72],[319,1,1,72,73],[320,1,1,73,74],[334,1,1,74,75]]],[12,3,3,75,78,[[354,1,1,75,76],[358,2,2,76,78]]],[13,1,1,78,79,[[400,1,1,78,79]]],[15,1,1,79,80,[[420,1,1,79,80]]],[16,1,1,80,81,[[429,1,1,80,81]]],[19,3,3,81,84,[[630,1,1,81,82],[633,1,1,82,83],[641,1,1,83,84]]],[20,1,1,84,85,[[667,1,1,84,85]]],[22,6,6,85,91,[[684,1,1,85,86],[696,1,1,86,87],[698,1,1,87,88],[699,1,1,88,89],[700,1,1,89,90],[716,1,1,90,91]]],[23,11,11,91,102,[[746,1,1,91,92],[747,1,1,92,93],[757,1,1,93,94],[761,1,1,94,95],[763,1,1,95,96],[772,1,1,96,97],[778,1,1,97,98],[779,2,2,98,100],[780,1,1,100,101],[783,1,1,101,102]]],[25,1,1,102,103,[[821,1,1,102,103]]],[27,2,2,103,105,[[862,1,1,103,104],[864,1,1,104,105]]],[29,1,1,105,106,[[885,1,1,105,106]]]],[708,736,1097,1250,1562,1595,1619,1620,1628,1643,1650,1735,1785,1801,2036,2445,4410,5083,5870,6301,6605,6825,6867,6995,6999,7112,7122,7135,7151,7157,7229,7285,7391,7566,7578,7655,7751,7770,7772,7812,7832,7924,8097,8183,8185,8324,8364,8398,8411,8499,8693,8704,8730,8770,8799,9225,9342,9346,9352,9355,9402,9407,9430,9535,9539,9569,9606,9610,9657,9666,9676,9687,9721,9737,10158,10867,10936,10944,11954,12503,12778,16483,16546,16779,17482,17778,17999,18031,18041,18067,18395,18967,19014,19267,19376,19408,19631,19803,19825,19836,19861,19939,20934,22096,22129,22479]]],["Walk",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20913]]],["Went",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9673]]],["about",[2,2,[[19,1,1,0,1,[[647,1,1,0,1]]],[20,1,1,1,2,[[659,1,1,1,2]]]],[16973,17321]]],["abroad",[3,3,[[10,1,1,0,1,[[292,1,1,0,1]]],[13,1,1,1,2,[[392,1,1,1,2]]],[18,1,1,2,3,[[554,1,1,2,3]]]],[8812,11740,15110]]],["again",[1,1,[[20,1,1,0,1,[[659,1,1,0,1]]]],[17322]]],["along",[8,8,[[1,2,2,0,2,[[51,1,1,0,1],[58,1,1,1,2]]],[3,1,1,2,3,[[137,1,1,2,3]]],[5,1,1,3,4,[[203,1,1,3,4]]],[6,1,1,4,5,[[221,1,1,4,5]]],[8,1,1,5,6,[[241,1,1,5,6]]],[9,2,2,6,8,[[269,1,1,6,7],[282,1,1,7,8]]]],[1559,1765,4362,6282,6847,7343,8097,8439]]],["apace",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8503]]],["away",[24,24,[[0,1,1,0,1,[[37,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[5,1,1,2,3,[[204,1,1,2,3]]],[6,2,2,3,5,[[228,1,1,3,4],[229,1,1,4,5]]],[8,4,4,5,9,[[250,1,1,5,6],[258,1,1,6,7],[261,1,1,7,8],[263,1,1,8,9]]],[9,1,1,9,10,[[270,1,1,9,10]]],[11,2,2,10,12,[[317,2,2,10,12]]],[13,1,1,12,13,[[375,1,1,12,13]]],[17,1,1,13,14,[[442,1,1,13,14]]],[18,2,2,14,16,[[535,1,1,14,15],[555,1,1,15,16]]],[20,1,1,16,17,[[659,1,1,16,17]]],[21,2,2,17,19,[[672,2,2,17,19]]],[23,2,2,19,21,[[766,1,1,19,20],[795,1,1,20,21]]],[27,3,3,21,24,[[866,1,1,21,22],[867,1,1,22,23],[874,1,1,23,24]]]],[1138,1844,6301,7017,7026,7587,7836,7917,7967,8127,9658,9659,11376,13017,14787,15152,17319,17564,17567,19464,20262,22166,22171,22269]]],["bring",[4,4,[[4,1,1,0,1,[[180,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]],[22,1,1,2,3,[[720,1,1,2,3]]],[27,1,1,3,4,[[863,1,1,3,4]]]],[5647,9693,18496,22119]]],["brought",[8,8,[[10,1,1,0,1,[[291,1,1,0,1]]],[11,1,1,1,2,[[337,1,1,1,2]]],[13,1,1,2,3,[[401,1,1,2,3]]],[23,1,1,3,4,[[796,1,1,3,4]]],[24,1,1,4,5,[[799,1,1,4,5]]],[25,3,3,5,8,[[841,1,1,5,6],[844,1,1,6,7],[848,1,1,7,8]]]],[8755,10242,11990,20302,20356,21501,21573,21685]]],["came",[13,13,[[0,1,1,0,1,[[28,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]],[5,2,2,2,4,[[192,2,2,2,4]]],[6,1,1,4,5,[[224,1,1,4,5]]],[8,3,3,5,8,[[250,1,1,5,6],[252,2,2,6,8]]],[9,2,2,8,10,[[279,1,1,8,9],[284,1,1,9,10]]],[11,1,1,10,11,[[322,1,1,10,11]]],[13,1,1,11,12,[[377,1,1,11,12]]],[14,1,1,12,13,[[412,1,1,12,13]]]],[796,4952,5958,5962,6918,7592,7659,7666,8351,8503,9805,11428,12258]]],["camest",[3,3,[[3,1,1,0,1,[[138,1,1,0,1]]],[10,2,2,1,3,[[303,2,2,1,3]]]],[4412,9193,9201]]],["carried",[2,2,[[11,1,1,0,1,[[336,1,1,0,1]]],[13,1,1,1,2,[[399,1,1,1,2]]]],[10217,11919]]],["carry",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[11999]]],["come",[33,31,[[0,2,2,0,2,[[30,1,1,0,1],[36,1,1,1,2]]],[3,6,6,2,8,[[126,1,1,2,3],[138,3,3,3,6],[139,1,1,6,7],[140,1,1,7,8]]],[7,1,1,8,9,[[233,1,1,8,9]]],[8,3,3,9,12,[[244,1,1,9,10],[258,2,2,10,12]]],[9,1,1,12,13,[[276,1,1,12,13]]],[10,2,2,13,15,[[291,1,1,13,14],[305,1,1,14,15]]],[11,2,2,15,17,[[319,2,2,15,17]]],[15,1,1,17,18,[[414,1,1,17,18]]],[18,2,2,18,20,[[557,1,1,18,19],[572,1,1,19,20]]],[20,1,1,20,21,[[659,1,1,20,21]]],[22,8,6,21,27,[[680,1,1,21,22],[723,1,1,22,23],[733,4,2,23,25],[738,2,2,25,27]]],[23,3,3,27,30,[[756,1,1,27,28],[780,1,1,28,29],[792,1,1,29,30]]],[32,1,1,30,31,[[896,1,1,30,31]]]],[917,1096,4017,4386,4389,4392,4423,4460,7160,7401,7813,7837,8251,8729,9268,9711,9716,12324,15200,15455,17322,17690,18575,18741,18743,18824,18835,19258,19856,20082,22622]]],["cometh",[2,2,[[0,1,1,0,1,[[31,1,1,0,1]]],[17,1,1,1,2,[[455,1,1,1,2]]]],[934,13351]]],["continually",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8401]]],["conversant",[2,2,[[5,1,1,0,1,[[194,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]]],[6037,7876]]],["depart",[15,15,[[3,1,1,0,1,[[126,1,1,0,1]]],[6,4,4,1,5,[[229,4,4,1,5]]],[8,4,4,5,9,[[257,1,1,5,6],[264,2,2,6,8],[265,1,1,8,9]]],[9,2,2,9,11,[[281,1,1,9,10],[286,1,1,10,11]]],[10,1,1,11,12,[[302,1,1,11,12]]],[23,2,2,12,14,[[781,1,1,12,13],[794,1,1,13,14]]],[32,1,1,14,15,[[894,1,1,14,15]]]],[4018,7029,7031,7032,7033,7792,7977,7978,8000,8403,8575,9175,19883,20169,22605]]],["departed",[49,48,[[0,9,9,0,9,[[11,1,1,0,1],[13,1,1,1,2],[20,1,1,2,3],[23,1,1,3,4],[25,2,2,4,6],[30,1,1,6,7],[41,1,1,7,8],[44,1,1,8,9]]],[3,2,2,9,11,[[128,1,1,9,10],[138,1,1,10,11]]],[5,2,2,11,13,[[188,1,1,11,12],[208,1,1,12,13]]],[6,7,7,13,20,[[216,1,1,13,14],[219,1,1,14,15],[227,1,1,15,16],[228,2,2,16,18],[229,1,1,18,19],[231,1,1,19,20]]],[8,5,5,20,25,[[241,1,1,20,21],[245,1,1,21,22],[255,1,1,22,23],[257,2,2,23,25]]],[9,4,4,25,29,[[272,1,1,25,26],[278,1,1,26,27],[283,1,1,27,28],[285,1,1,28,29]]],[10,8,7,29,36,[[302,2,2,29,31],[304,1,1,31,32],[309,1,1,32,33],[310,4,3,33,36]]],[11,6,6,36,42,[[313,1,1,36,37],[317,3,3,37,40],[320,1,1,40,41],[322,1,1,41,42]]],[12,1,1,42,43,[[353,1,1,42,43]]],[13,3,3,43,46,[[376,1,1,43,44],[387,1,1,44,45],[390,1,1,45,46]]],[23,2,2,46,48,[[785,2,2,46,48]]]],[302,348,527,601,709,723,928,1278,1382,4068,4382,5890,6435,6675,6809,6988,7000,7014,7034,7126,7337,7420,7772,7788,7792,8176,8301,8470,8535,9156,9167,9235,9406,9417,9444,9446,9537,9652,9666,9671,9741,9808,10863,11400,11644,11702,19967,19974]]],["departeth",[2,2,[[17,1,1,0,1,[[462,1,1,0,1]]],[20,1,1,1,2,[[664,1,1,1,2]]]],[13502,17421]]],["down",[6,6,[[2,1,1,0,1,[[108,1,1,0,1]]],[11,1,1,1,2,[[325,1,1,1,2]]],[25,3,3,2,5,[[802,1,1,2,3],[820,1,1,3,4],[829,1,1,4,5]]],[37,1,1,5,6,[[920,1,1,5,6]]]],[3297,9892,20477,20887,21171,23028]]],["eased",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13244]]],["enter",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13706]]],["exercise",[1,1,[[18,1,1,0,1,[[608,1,1,0,1]]]],[16149]]],["flow",[2,1,[[28,2,1,0,1,[[878,2,1,0,1]]]],[22361]]],["flowed",[1,1,[[5,1,1,0,1,[[190,1,1,0,1]]]],[5928]]],["forth",[1,1,[[18,1,1,0,1,[[602,1,1,0,1]]]],[16115]]],["forward",[3,3,[[0,1,1,0,1,[[25,1,1,0,1]]],[11,2,2,1,3,[[316,1,1,1,2],[332,1,1,2,3]]]],[705,9627,10107]]],["fro",[5,3,[[37,5,3,0,3,[[911,2,2,0,2],[916,3,1,2,3]]]],[22888,22889,22954]]],["gat",[2,2,[[6,1,1,0,1,[[229,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]]],[7052,8472]]],["get",[9,9,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,1,1,1,2,[[54,1,1,1,2]]],[5,1,1,2,3,[[208,1,1,2,3]]],[10,3,3,3,6,[[304,2,2,3,5],[307,1,1,5,6]]],[11,1,1,6,7,[[315,1,1,6,7]]],[21,1,1,7,8,[[674,1,1,7,8]]],[23,1,1,8,9,[[749,1,1,8,9]]]],[549,1636,6430,9220,9230,9326,9589,17588,19063]]],["go",[304,282,[[0,29,27,0,27,[[2,1,1,0,1],[10,1,1,1,2],[11,1,1,2,3],[14,1,1,3,4],[15,1,1,4,5],[18,1,1,5,6],[21,1,1,6,7],[23,8,7,7,14],[26,1,1,14,15],[27,2,2,15,17],[28,1,1,17,18],[29,2,2,18,20],[32,2,1,20,21],[36,1,1,21,22],[41,2,2,22,24],[42,1,1,24,25],[44,2,2,25,27]]],[1,32,29,27,56,[[51,1,1,27,28],[52,5,4,28,32],[53,2,2,32,34],[54,4,4,34,38],[57,2,2,38,40],[59,6,5,40,45],[61,1,1,45,46],[62,1,1,46,47],[63,1,1,47,48],[66,1,1,48,49],[72,1,1,49,50],[81,4,3,50,53],[82,2,2,53,55],[83,1,1,55,56]]],[2,1,1,56,57,[[100,1,1,56,57]]],[3,9,9,57,66,[[126,2,2,57,59],[132,1,1,59,60],[136,1,1,60,61],[138,3,3,61,64],[139,1,1,64,65],[140,1,1,65,66]]],[4,20,20,66,86,[[153,1,1,66,67],[154,1,1,67,68],[158,1,1,68,69],[163,1,1,69,70],[165,3,3,70,73],[166,1,1,73,74],[168,1,1,74,75],[172,4,4,75,79],[176,1,1,79,80],[178,1,1,80,81],[180,2,2,81,83],[181,1,1,83,84],[183,2,2,84,86]]],[5,8,8,86,94,[[187,1,1,86,87],[188,1,1,87,88],[189,2,2,88,90],[195,2,2,90,92],[204,1,1,92,93],[208,1,1,93,94]]],[6,24,18,94,112,[[211,1,1,94,95],[214,4,1,95,96],[217,5,2,96,98],[219,3,3,98,101],[221,1,1,101,102],[222,1,1,102,103],[227,1,1,103,104],[228,4,4,104,108],[229,2,2,108,110],[230,1,1,110,111],[231,1,1,111,112]]],[7,7,6,112,118,[[232,4,4,112,116],[233,3,2,116,118]]],[8,24,22,118,140,[[241,1,1,118,119],[244,6,5,119,124],[245,1,1,124,125],[246,1,1,125,126],[250,1,1,126,127],[251,2,2,127,129],[252,4,3,129,132],[255,1,1,132,133],[258,3,3,133,136],[261,1,1,136,137],[263,1,1,137,138],[264,2,2,138,140]]],[9,15,13,140,153,[[269,1,1,140,141],[278,1,1,141,142],[279,6,4,142,146],[280,2,2,146,148],[281,2,2,148,150],[283,1,1,150,151],[285,2,2,151,153]]],[10,12,12,153,165,[[292,1,1,153,154],[299,1,1,154,155],[301,3,3,155,158],[303,1,1,158,159],[308,1,1,159,160],[312,5,5,160,165]]],[11,13,12,165,177,[[313,1,1,165,166],[314,1,1,166,167],[315,1,1,167,168],[316,1,1,168,169],[318,4,3,169,172],[320,2,2,172,174],[321,2,2,174,176],[329,1,1,176,177]]],[12,2,2,177,179,[[354,1,1,177,178],[358,1,1,178,179]]],[13,8,8,179,187,[[373,1,1,179,180],[382,1,1,180,181],[384,3,3,181,184],[386,2,2,184,186],[391,1,1,186,187]]],[14,1,1,187,188,[[410,1,1,187,188]]],[15,2,2,188,190,[[421,2,2,188,190]]],[17,7,7,190,197,[[445,1,1,190,191],[451,1,1,191,192],[458,1,1,192,193],[459,1,1,193,194],[473,1,1,194,195],[476,1,1,195,196],[477,1,1,196,197]]],[18,11,11,197,208,[[509,1,1,197,198],[515,1,1,198,199],[516,1,1,199,200],[519,1,1,200,201],[520,1,1,201,202],[561,1,1,202,203],[562,1,1,203,204],[581,1,1,204,205],[584,1,1,205,206],[599,1,1,206,207],[616,1,1,207,208]]],[19,3,3,208,211,[[633,2,2,208,210],[642,1,1,210,211]]],[20,7,7,211,218,[[661,1,1,211,212],[663,2,2,212,214],[664,1,1,214,215],[665,1,1,215,216],[666,1,1,216,217],[668,1,1,217,218]]],[22,14,13,218,231,[[680,1,1,218,219],[681,1,1,219,220],[684,1,1,220,221],[686,2,2,221,223],[706,1,1,223,224],[711,1,1,224,225],[716,1,1,225,226],[723,2,2,226,228],[726,1,1,228,229],[730,2,1,229,230],[736,1,1,230,231]]],[23,27,25,231,256,[[745,1,1,231,232],[746,1,1,232,233],[747,1,1,233,234],[751,1,1,234,235],[753,1,1,235,236],[755,1,1,236,237],[757,2,2,237,239],[760,1,1,239,240],[763,1,1,240,241],[764,1,1,241,242],[766,1,1,242,243],[769,1,1,243,244],[773,1,1,244,245],[774,1,1,245,246],[779,1,1,246,247],[781,1,1,247,248],[784,5,3,248,251],[785,1,1,251,252],[790,1,1,252,253],[793,1,1,253,254],[794,1,1,254,255],[795,1,1,255,256]]],[25,9,8,256,264,[[802,3,2,256,258],[804,3,3,258,261],[813,1,1,261,262],[831,2,2,262,264]]],[27,6,6,264,270,[[863,2,2,264,266],[866,2,2,266,268],[868,2,2,268,270]]],[29,4,4,270,274,[[879,1,1,270,271],[884,1,1,271,272],[885,1,1,272,273],[887,1,1,273,274]]],[31,2,2,274,276,[[889,1,1,274,275],[891,1,1,275,276]]],[32,2,2,276,278,[[893,1,1,276,277],[894,1,1,277,278]]],[37,5,4,278,282,[[916,1,1,278,279],[918,3,2,279,281],[919,1,1,281,282]]]],[69,297,303,362,389,459,552,595,629,633,642,646,647,649,740,775,793,802,855,856,972,1100,1271,1290,1298,1375,1386,1561,1590,1597,1598,1600,1613,1619,1635,1639,1640,1649,1737,1738,1785,1786,1788,1801,1803,1847,1888,1910,1988,2167,2439,2461,2472,2487,2488,2505,3024,4018,4020,4240,4328,4387,4388,4395,4419,4460,4925,4965,5100,5236,5274,5278,5285,5315,5349,5432,5433,5434,5435,5527,5568,5625,5652,5697,5734,5736,5867,5885,5896,5897,6048,6049,6297,6435,6512,6607,6698,6701,6763,6765,6767,6837,6870,6989,6998,6999,7002,7012,7033,7051,7062,7123,7138,7139,7143,7145,7151,7158,7339,7394,7397,7398,7400,7401,7427,7459,7563,7596,7597,7650,7651,7657,7743,7812,7823,7833,7916,7949,7974,7975,8102,8309,8330,8341,8342,8343,8377,8386,8396,8409,8460,8526,8537,8772,9057,9118,9129,9130,9201,9349,9484,9486,9495,9528,9529,9536,9567,9583,9626,9676,9677,9696,9728,9735,9757,9771,10010,10874,10964,11343,11512,11545,11547,11556,11623,11624,11714,12232,12523,12530,13107,13260,13427,13446,13828,13907,13930,14363,14496,14525,14564,14568,15266,15284,15597,15706,16090,16246,16543,16568,16819,17379,17412,17413,17423,17431,17461,17508,17688,17723,17777,17813,17814,18177,18300,18400,18563,18577,18631,18708,18794,18953,18990,19003,19131,19177,19238,19270,19272,19341,19417,19428,19476,19540,19647,19683,19838,19886,19945,19946,19956,19974,20067,20130,20170,20221,20476,20484,20503,20506,20513,20691,21221,21222,22110,22112,22158,22167,22189,22190,22379,22452,22476,22499,22533,22560,22587,22598,22954,22997,22999,23013]]],["goest",[18,18,[[0,2,2,0,2,[[27,1,1,0,1],[31,1,1,1,2]]],[1,2,2,2,4,[[53,1,1,2,3],[82,1,1,3,4]]],[3,1,1,4,5,[[130,1,1,4,5]]],[5,2,2,5,7,[[187,2,2,5,7]]],[6,2,2,7,9,[[224,1,1,7,8],[229,1,1,8,9]]],[7,1,1,9,10,[[232,1,1,9,10]]],[8,1,1,10,11,[[263,1,1,10,11]]],[9,1,1,11,12,[[281,1,1,11,12]]],[19,2,2,12,14,[[631,1,1,12,13],[633,1,1,13,14]]],[20,2,2,14,16,[[663,1,1,14,15],[667,1,1,15,16]]],[23,1,1,16,17,[[789,1,1,16,17]]],[37,1,1,17,18,[[912,1,1,17,18]]]],[788,945,1622,2489,4122,5858,5860,6912,7041,7143,7964,8408,16502,16562,17398,17485,20045,22901]]],["goeth",[16,15,[[0,2,2,0,2,[[1,1,1,0,1],[31,1,1,1,2]]],[2,4,3,2,5,[[100,4,3,2,5]]],[4,2,2,5,7,[[153,1,1,5,6],[172,1,1,6,7]]],[18,1,1,7,8,[[574,1,1,7,8]]],[19,1,1,8,9,[[634,1,1,8,9]]],[20,2,2,9,11,[[659,1,1,9,10],[670,1,1,10,11]]],[21,1,1,11,12,[[677,1,1,11,12]]],[22,1,1,12,13,[[708,1,1,12,13]]],[25,2,2,13,15,[[808,1,1,13,14],[834,1,1,14,15]]]],[44,948,3018,3024,3039,4922,5431,15481,16597,17321,17528,17636,18246,20591,21311]]],["going",[9,9,[[0,1,1,0,1,[[36,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]],[5,1,1,2,3,[[209,1,1,2,3]]],[6,2,2,3,5,[[229,2,2,3,5]]],[9,1,1,5,6,[[268,1,1,5,6]]],[10,1,1,6,7,[[307,1,1,6,7]]],[19,1,1,7,8,[[657,1,1,7,8]]],[23,1,1,8,9,[[794,1,1,8,9]]]],[1108,3017,6474,7042,7052,8068,9328,17280,20170]]],["gone",[36,36,[[0,3,3,0,3,[[27,1,1,0,1],[33,1,1,1,2],[41,1,1,2,3]]],[1,1,1,3,4,[[61,1,1,3,4]]],[4,1,1,4,5,[[169,1,1,4,5]]],[5,1,1,5,6,[[209,1,1,5,6]]],[8,3,3,6,9,[[249,2,2,6,8],[250,1,1,8,9]]],[9,4,4,9,13,[[269,3,3,9,12],[279,1,1,12,13]]],[10,5,5,13,18,[[292,1,1,13,14],[303,1,1,14,15],[304,1,1,15,16],[308,1,1,16,17],[312,1,1,17,18]]],[17,1,1,18,19,[[454,1,1,18,19]]],[18,1,1,19,20,[[586,1,1,19,20]]],[19,1,1,20,21,[[634,1,1,20,21]]],[20,1,1,21,22,[[666,1,1,21,22]]],[21,2,2,22,24,[[672,1,1,22,23],[676,1,1,23,24]]],[22,1,1,24,25,[[724,1,1,24,25]]],[23,6,6,25,31,[[746,1,1,25,26],[749,1,1,26,27],[753,1,1,27,28],[759,1,1,28,29],[792,1,1,29,30],[794,1,1,30,31]]],[24,3,3,31,34,[[797,3,3,31,34]]],[25,1,1,34,35,[[838,1,1,34,35]]],[27,1,1,35,36,[[870,1,1,35,36]]]],[780,997,1285,1848,5367,6476,7511,7525,7580,8103,8104,8105,8332,8811,9208,9227,9353,9493,13307,15778,16594,17468,17565,17615,18588,18988,19081,19185,19321,20091,20172,20315,20316,20328,21418,22214]]],["grew",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7266]]],["grow",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19251]]],["haunt",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[8009]]],["hence",[1,1,[[37,1,1,0,1,[[916,1,1,0,1]]]],[22954]]],["in",[4,4,[[6,2,2,0,2,[[216,1,1,0,1],[227,1,1,1,2]]],[11,1,1,2,3,[[333,1,1,2,3]]],[29,1,1,3,4,[[880,1,1,3,4]]]],[6668,6990,10140,22386]]],["itself",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17075]]],["lead",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16622]]],["leadeth",[3,3,[[17,2,2,0,2,[[447,2,2,0,2]]],[19,1,1,2,3,[[643,1,1,2,3]]]],[13145,13147,16869]]],["led",[13,13,[[4,3,3,0,3,[[160,2,2,0,2],[181,1,1,2,3]]],[5,1,1,3,4,[[210,1,1,3,4]]],[11,1,1,4,5,[[318,1,1,4,5]]],[18,2,2,5,7,[[583,1,1,5,6],[613,1,1,6,7]]],[22,3,3,7,10,[[726,1,1,7,8],[741,2,2,8,10]]],[23,2,2,10,12,[[746,2,2,10,12]]],[29,1,1,12,13,[[880,1,1,12,13]]]],[5139,5152,5684,6479,9693,15660,16212,18635,18878,18879,18971,18982,22389]]],["long",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2045]]],["march",[3,3,[[23,1,1,0,1,[[790,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]],[34,1,1,2,3,[[903,1,1,2,3]]]],[20067,22318,22737]]],["may",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8409]]],["more",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16508]]],["myself",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14424]]],["on",[8,8,[[0,1,1,0,1,[[11,1,1,0,1]]],[5,2,2,1,3,[[192,2,2,1,3]]],[8,2,2,3,5,[[249,1,1,3,4],[252,1,1,4,5]]],[11,2,2,5,7,[[314,2,2,5,7]]],[18,1,1,7,8,[[559,1,1,7,8]]]],[307,5958,5962,7527,7659,9557,9562,15238]]],["out",[4,4,[[0,1,1,0,1,[[11,1,1,0,1]]],[5,1,1,1,2,[[202,1,1,1,2]]],[7,1,1,2,3,[[232,1,1,2,3]]],[16,1,1,3,4,[[434,1,1,3,4]]]],[299,6273,7148,12838]]],["passeth",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13201]]],["point",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[690]]],["prospered",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6623]]],["ran",[2,2,[[10,1,1,0,1,[[308,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[9376,15647]]],["run",[4,4,[[18,2,2,0,2,[[535,1,1,0,1],[581,1,1,1,2]]],[20,1,1,2,3,[[659,1,1,2,3]]],[25,1,1,3,4,[[833,1,1,3,4]]]],[14786,15581,17322,21262]]],["running",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21234]]],["sent",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12418]]],["spread",[1,1,[[27,1,1,0,1,[[875,1,1,0,1]]]],[22288]]],["still",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14921]]],["take",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5197]]],["takest",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6608]]],["through",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8078]]],["to",[2,2,[[11,1,1,0,1,[[317,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[9652,17334]]],["travelleth",[2,2,[[19,2,2,0,2,[[633,1,1,0,1],[651,1,1,1,2]]]],[16551,17113]]],["up",[4,4,[[6,1,1,0,1,[[221,1,1,0,1]]],[9,2,2,1,3,[[281,1,1,1,2],[284,1,1,2,3]]],[23,1,1,3,4,[[747,1,1,3,4]]]],[6866,8409,8502,19008]]],["walk",[133,128,[[0,4,4,0,4,[[12,1,1,0,1],[16,1,1,1,2],[23,1,1,2,3],[47,1,1,3,4]]],[1,3,3,4,7,[[65,1,1,4,5],[67,1,1,5,6],[70,1,1,6,7]]],[2,10,10,7,17,[[107,2,2,7,9],[109,1,1,9,10],[115,7,7,10,17]]],[4,12,12,17,29,[[157,1,1,17,18],[160,2,2,18,20],[162,1,1,20,21],[163,1,1,21,22],[165,2,2,22,24],[171,1,1,24,25],[178,1,1,25,26],[180,1,1,26,27],[181,1,1,27,28],[182,1,1,28,29]]],[5,2,2,29,31,[[204,1,1,29,30],[208,1,1,30,31]]],[6,2,2,31,33,[[212,1,1,31,32],[215,1,1,32,33]]],[8,3,3,33,36,[[237,2,2,33,35],[243,1,1,35,36]]],[10,14,12,36,48,[[292,2,2,36,38],[293,2,1,38,39],[296,2,1,39,40],[298,5,5,40,45],[299,1,1,45,46],[301,1,1,46,47],[306,1,1,47,48]]],[11,2,2,48,50,[[322,1,1,48,49],[335,1,1,49,50]]],[13,6,6,50,56,[[372,4,4,50,54],[373,1,1,54,55],[400,1,1,55,56]]],[15,2,2,56,58,[[417,1,1,56,57],[422,1,1,57,58]]],[18,17,17,58,75,[[489,1,1,58,59],[500,1,1,59,60],[503,1,1,60,61],[533,1,1,61,62],[555,1,1,62,63],[561,1,1,63,64],[563,1,1,64,65],[566,2,2,65,67],[578,1,1,67,68],[592,1,1,68,69],[593,1,1,69,70],[596,3,3,70,73],[615,1,1,73,74],[620,1,1,74,75]]],[19,5,5,75,80,[[628,1,1,75,76],[629,3,3,76,79],[630,1,1,79,80]]],[20,3,3,80,83,[[662,1,1,80,81],[664,1,1,81,82],[669,1,1,82,83]]],[22,11,11,83,94,[[680,2,2,83,85],[681,1,1,85,86],[708,2,2,86,88],[713,1,1,88,89],[718,1,1,89,90],[720,2,2,90,92],[728,1,1,92,93],[737,1,1,93,94]]],[23,18,16,94,110,[[747,2,2,94,96],[750,3,2,96,98],[751,3,3,98,101],[753,1,1,101,102],[757,2,1,102,103],[760,1,1,103,104],[762,2,2,104,106],[767,1,1,106,107],[770,1,1,107,108],[775,1,1,108,109],[786,1,1,109,110]]],[24,1,1,110,111,[[801,1,1,110,111]]],[25,6,6,111,117,[[812,1,1,111,112],[821,1,1,112,113],[834,1,1,113,114],[837,2,2,114,116],[838,1,1,116,117]]],[26,1,1,117,118,[[858,1,1,117,118]]],[27,2,2,118,120,[[872,1,1,118,119],[875,1,1,119,120]]],[28,1,1,120,121,[[877,1,1,120,121]]],[29,1,1,121,122,[[881,1,1,121,122]]],[32,5,4,122,126,[[896,3,2,122,124],[898,2,2,124,126]]],[35,1,1,126,127,[[906,1,1,126,127]]],[37,1,1,127,128,[[913,1,1,127,128]]]],[335,398,631,1466,1951,2019,2096,3254,3255,3341,3527,3536,3545,3547,3548,3551,3552,5086,5143,5156,5198,5230,5276,5277,5415,5583,5620,5698,5724,6301,6431,6567,6633,7270,7275,7374,8773,8774,8830,8908,9008,9010,9021,9043,9046,9055,9146,9314,9824,10168,11296,11298,11309,11313,11341,11964,12391,12578,14074,14239,14284,14768,15123,15270,15295,15341,15356,15515,15837,15857,15899,15901,15943,16238,16301,16415,16440,16446,16453,16478,17396,17425,17522,17688,17690,17723,18219,18238,18329,18451,18485,18504,18673,18809,19019,19020,19105,19114,19125,19128,19142,19179,19276,19348,19396,19399,19498,19576,19700,19978,20460,20675,20914,21295,21371,21386,21421,21998,22250,22291,22319,22398,22622,22625,22656,22664,22804,22919]]],["walked",[95,95,[[0,3,3,0,3,[[4,2,2,0,2],[5,1,1,2,3]]],[1,1,1,3,4,[[63,1,1,3,4]]],[2,2,2,4,6,[[115,2,2,4,6]]],[5,1,1,6,7,[[191,1,1,6,7]]],[6,3,3,7,10,[[212,1,1,7,8],[215,1,1,8,9],[221,1,1,9,10]]],[8,2,2,10,12,[[243,1,1,10,11],[247,1,1,11,12]]],[9,4,4,12,16,[[268,1,1,12,13],[273,2,2,13,15],[277,1,1,15,16]]],[10,11,11,16,27,[[293,1,1,16,17],[298,1,1,17,18],[299,1,1,18,19],[301,1,1,19,20],[305,3,3,20,23],[306,2,2,23,25],[312,2,2,25,27]]],[11,13,13,27,40,[[316,1,1,27,28],[320,2,2,28,30],[325,2,2,30,32],[328,1,1,32,33],[329,3,3,33,36],[332,1,1,36,37],[333,2,2,37,39],[334,1,1,39,40]]],[12,2,2,40,42,[[354,2,2,40,42]]],[13,13,13,42,55,[[372,1,1,42,43],[373,1,1,43,44],[377,1,1,44,45],[383,2,2,45,47],[386,1,1,47,48],[387,3,3,48,51],[388,2,2,51,53],[394,1,1,53,54],[400,1,1,54,55]]],[16,1,1,55,56,[[427,1,1,55,56]]],[17,4,4,56,60,[[464,1,1,56,57],[466,2,2,57,59],[473,1,1,59,60]]],[18,6,6,60,66,[[503,2,2,60,62],[532,1,1,62,63],[558,2,2,63,65],[619,1,1,65,66]]],[22,3,3,66,69,[[687,1,1,66,67],[698,1,1,67,68],[716,1,1,68,69]]],[23,11,11,69,80,[[746,2,2,69,71],[751,1,1,71,72],[752,1,1,72,73],[753,2,2,73,75],[755,1,1,75,76],[760,1,1,76,77],[776,1,1,77,78],[788,2,2,78,80]]],[25,10,10,80,90,[[806,2,2,80,82],[812,1,1,82,83],[817,1,1,83,84],[819,2,2,84,86],[821,3,3,86,89],[824,1,1,89,90]]],[27,1,1,90,91,[[866,1,1,90,91]]],[29,1,1,91,92,[[880,1,1,91,92]]],[33,1,1,92,93,[[901,1,1,92,93]]],[38,2,2,93,95,[[926,1,1,93,94],[927,1,1,94,95]]]],[127,129,146,1918,3564,3565,5940,6562,6629,6845,7372,7462,8078,8186,8187,8261,8822,9010,9055,9141,9252,9275,9283,9285,9309,9523,9532,9638,9745,9754,9877,9882,9966,9991,10002,10005,10101,10140,10141,10147,10869,10871,11298,11341,11431,11526,11527,11619,11630,11636,11637,11647,11649,11766,11935,12735,13535,13593,13595,13809,14274,14276,14746,15229,15230,16289,17831,18032,18393,18970,18973,19143,19155,19188,19189,19234,19347,19754,20020,20033,20552,20553,20667,20809,20858,20866,20908,20911,20916,21038,22163,22383,22710,23109,23134]]],["walkest",[3,3,[[4,2,2,0,2,[[158,1,1,0,1],[163,1,1,1,2]]],[22,1,1,2,3,[[721,1,1,2,3]]]],[5093,5227,18507]]],["walketh",[34,33,[[0,1,1,0,1,[[23,1,1,0,1]]],[4,1,1,1,2,[[175,1,1,1,2]]],[8,1,1,2,3,[[247,1,1,2,3]]],[17,3,3,3,6,[[453,1,1,3,4],[457,1,1,4,5],[469,1,1,5,6]]],[18,8,8,6,14,[[478,1,1,6,7],[492,1,1,7,8],[516,1,1,8,9],[550,1,1,9,10],[568,1,1,10,11],[578,1,1,11,12],[581,1,1,12,13],[605,1,1,13,14]]],[19,11,10,14,24,[[633,1,1,14,15],[637,2,1,15,16],[640,1,1,16,17],[641,1,1,17,18],[642,1,1,18,19],[646,1,1,19,20],[647,1,1,20,21],[655,3,3,21,24]]],[20,2,2,24,26,[[660,1,1,24,25],[668,1,1,25,26]]],[22,3,3,26,29,[[711,1,1,26,27],[728,1,1,27,28],[743,1,1,28,29]]],[23,2,2,29,31,[[754,1,1,29,30],[767,1,1,30,31]]],[25,1,1,31,32,[[812,1,1,31,32]]],[32,1,1,32,33,[[894,1,1,32,33]]]],[656,5514,7462,13284,13403,13691,13940,14089,14518,15029,15401,15519,15574,16127,16552,16665,16767,16774,16828,16926,16961,17202,17214,17222,17347,17496,18294,18672,18899,19224,19501,20676,22602]]],["walking",[10,10,[[0,1,1,0,1,[[2,1,1,0,1]]],[10,2,2,1,3,[[293,1,1,1,2],[306,1,1,2,3]]],[17,1,1,3,4,[[466,1,1,3,4]]],[20,1,1,4,5,[[668,1,1,4,5]]],[22,3,3,5,8,[[681,1,1,5,6],[698,1,1,6,7],[735,1,1,7,8]]],[23,1,1,8,9,[[750,1,1,8,9]]],[32,1,1,9,10,[[894,1,1,9,10]]]],[63,8819,9302,13614,17500,17723,18031,18767,19117,22606]]],["wandered",[1,1,[[5,1,1,0,1,[[200,1,1,0,1]]]],[6197]]],["waxed",[2,2,[[9,1,1,0,1,[[269,1,1,0,1]]],[16,1,1,1,2,[[434,1,1,1,2]]]],[8082,12838]]],["way",[11,11,[[0,5,5,0,5,[[11,1,1,0,1],[13,1,1,1,2],[17,1,1,2,3],[23,1,1,3,4],[24,1,1,4,5]]],[1,1,1,5,6,[[67,1,1,5,6]]],[6,2,2,6,8,[[229,2,2,6,8]]],[8,1,1,8,9,[[255,1,1,8,9]]],[11,1,1,9,10,[[316,1,1,9,10]]],[26,1,1,10,11,[[861,1,1,10,11]]]],[317,347,457,652,692,2026,7029,7038,7752,9632,22090]]],["weak",[2,2,[[25,2,2,0,2,[[808,1,1,0,1],[822,1,1,1,2]]]],[20594,20951]]],["went",[339,312,[[0,35,35,0,35,[[6,1,1,0,1],[8,1,1,1,2],[11,1,1,2,3],[12,2,2,3,5],[13,1,1,5,6],[17,2,2,6,8],[20,2,2,8,10],[21,5,5,10,15],[23,1,1,15,16],[24,1,1,16,17],[25,3,3,17,20],[26,2,2,20,22],[27,3,3,22,25],[29,1,1,25,26],[30,1,1,26,27],[31,1,1,27,28],[34,2,2,28,30],[35,1,1,30,31],[36,2,2,31,33],[37,1,1,33,34],[49,1,1,34,35]]],[1,10,9,35,44,[[51,2,2,35,37],[53,3,3,37,40],[62,1,1,40,41],[63,2,1,41,42],[64,2,2,42,44]]],[3,16,15,44,59,[[129,1,1,44,45],[130,1,1,45,46],[132,1,1,46,47],[138,5,5,47,52],[139,1,1,52,53],[140,3,2,53,55],[148,3,3,55,58],[149,1,1,58,59]]],[4,5,5,59,64,[[153,2,2,59,61],[181,1,1,61,62],[183,2,2,62,64]]],[5,16,16,64,80,[[188,3,3,64,67],[189,1,1,67,68],[191,1,1,68,69],[192,2,2,69,71],[194,2,2,71,73],[195,2,2,73,75],[196,1,1,75,76],[204,2,2,76,78],[208,1,1,78,79],[210,1,1,79,80]]],[6,27,27,80,107,[[211,6,6,80,86],[212,1,1,86,87],[213,1,1,87,88],[214,1,1,88,89],[218,1,1,89,90],[219,5,5,90,95],[221,4,4,95,99],[223,1,1,99,100],[225,1,1,100,101],[226,1,1,101,102],[228,2,2,102,104],[229,2,2,104,106],[231,1,1,106,107]]],[7,4,4,107,111,[[232,3,3,107,110],[233,1,1,110,111]]],[8,50,45,111,156,[[236,1,1,111,112],[237,2,2,112,114],[238,4,4,114,118],[241,2,1,118,119],[242,1,1,119,120],[244,2,2,120,122],[245,3,2,122,124],[246,1,1,124,125],[249,2,2,125,127],[250,1,1,127,128],[251,1,1,128,129],[252,5,4,129,133],[253,1,1,133,134],[254,4,4,134,138],[257,1,1,138,139],[258,8,8,139,147],[259,2,2,147,149],[260,2,1,149,150],[261,1,1,150,151],[263,1,1,151,152],[265,4,3,152,155],[266,1,1,155,156]]],[9,33,30,156,186,[[268,1,1,156,157],[269,3,3,157,160],[270,1,1,160,161],[271,1,1,161,162],[272,3,3,162,165],[273,1,1,165,166],[274,3,3,166,169],[277,1,1,169,170],[278,1,1,170,171],[279,3,3,171,174],[280,1,1,174,175],[281,4,3,175,178],[282,2,1,178,179],[283,4,3,179,182],[284,1,1,182,183],[286,1,1,183,184],[287,1,1,184,185],[289,1,1,185,186]]],[10,37,32,186,218,[[291,2,2,186,188],[292,3,2,188,190],[293,1,1,190,191],[298,1,1,191,192],[300,1,1,192,193],[301,2,2,193,195],[302,2,2,195,197],[303,5,4,197,201],[304,1,1,201,202],[306,1,1,202,203],[307,4,3,203,206],[308,6,4,206,210],[309,4,4,210,214],[310,2,2,214,216],[311,1,1,216,217],[312,1,1,217,218]]],[11,26,25,218,243,[[314,3,3,218,221],[315,2,2,221,223],[316,2,2,223,225],[317,1,1,225,226],[318,2,2,226,228],[319,3,2,228,230],[320,3,3,230,233],[321,4,4,233,237],[322,1,1,237,238],[328,1,1,238,239],[331,1,1,239,240],[334,1,1,240,241],[335,1,1,241,242],[337,1,1,242,243]]],[12,13,13,243,256,[[341,2,2,243,245],[343,1,1,245,246],[348,1,1,246,247],[349,1,1,247,248],[352,1,1,248,249],[353,1,1,249,250],[354,1,1,250,251],[355,3,3,251,254],[356,1,1,254,255],[358,1,1,255,256]]],[13,11,11,256,267,[[367,1,1,256,257],[374,2,2,257,259],[375,1,1,259,260],[376,2,2,260,262],[384,1,1,262,263],[388,1,1,263,264],[391,1,1,264,265],[396,1,1,265,266],[400,1,1,266,267]]],[14,1,1,267,268,[[412,1,1,267,268]]],[15,5,5,268,273,[[414,1,1,268,269],[420,1,1,269,270],[424,3,3,270,273]]],[17,3,3,273,276,[[436,1,1,273,274],[465,1,1,274,275],[477,1,1,275,276]]],[18,1,1,276,277,[[582,1,1,276,277]]],[22,2,2,277,279,[[715,1,1,277,278],[735,1,1,278,279]]],[23,12,12,279,291,[[747,1,1,279,280],[755,1,1,280,281],[757,2,2,281,283],[772,1,1,283,284],[775,1,1,284,285],[785,3,3,285,288],[788,1,1,288,289],[795,1,1,289,290],[796,1,1,290,291]]],[25,24,13,291,304,[[802,14,7,291,298],[804,1,1,298,299],[811,7,3,299,302],[821,1,1,302,303],[826,1,1,303,304]]],[27,4,4,304,308,[[862,1,1,304,305],[863,1,1,305,306],[866,1,1,306,307],[872,1,1,307,308]]],[31,1,1,308,309,[[891,1,1,308,309]]],[33,1,1,309,310,[[902,1,1,309,310]]],[34,2,2,310,312,[[905,2,2,310,312]]]],[177,228,302,321,323,360,440,446,529,532,550,553,555,560,566,601,680,693,705,718,732,741,778,782,783,844,892,929,1014,1033,1046,1095,1100,1130,1524,1555,1562,1619,1628,1630,1888,1908,1939,1942,4101,4146,4219,4396,4397,4398,4410,4414,4419,4447,4471,4757,4759,4760,4768,4923,4925,5705,5729,5742,5870,5874,5891,5899,5947,5958,5962,6011,6015,6041,6043,6088,6301,6302,6432,6493,6512,6519,6520,6525,6526,6535,6551,6581,6608,6748,6755,6760,6761,6775,6804,6834,6840,6867,6869,6895,6933,6950,7007,7019,7027,7042,7125,7128,7134,7146,7152,7230,7251,7260,7281,7282,7284,7285,7343,7368,7400,7401,7432,7444,7460,7524,7554,7594,7608,7625,7631,7633,7638,7703,7718,7724,7728,7729,7790,7815,7823,7826,7828,7834,7835,7836,7838,7841,7846,7903,7930,7950,7980,7987,8000,8021,8081,8097,8100,8102,8125,8138,8159,8161,8169,8203,8212,8215,8223,8281,8315,8325,8354,8355,8379,8398,8400,8419,8439,8466,8467,8470,8511,8559,8592,8670,8766,8767,8778,8810,8820,9051,9092,9113,9132,9152,9181,9194,9196,9198,9212,9222,9314,9322,9327,9332,9343,9347,9357,9386,9390,9391,9395,9408,9435,9451,9478,9528,9552,9558,9576,9583,9585,9608,9628,9672,9678,9697,9715,9722,9729,9736,9755,9760,9772,9774,9791,9818,9973,10097,10159,10194,10226,10424,10427,10469,10677,10740,10816,10840,10884,10893,10896,10903,10912,10938,11197,11349,11363,11385,11396,11411,11554,11649,11715,11833,11955,12258,12323,12505,12655,12656,12662,12873,13585,13931,15619,18389,18782,19010,19236,19271,19273,19629,19693,19969,19971,19972,20013,20271,20283,20473,20476,20481,20483,20484,20485,20488,20516,20644,20649,20655,20911,21086,22097,22118,22165,22242,22561,22722,22773,22779]]],["wentest",[7,7,[[6,1,1,0,1,[[218,1,1,0,1]]],[8,1,1,1,2,[[245,1,1,1,2]]],[9,3,3,2,5,[[273,1,1,2,3],[282,1,1,3,4],[285,1,1,4,5]]],[23,2,2,5,7,[[746,1,1,5,6],[775,1,1,6,7]]]],[6720,7420,8189,8443,8536,18967,19712]]],["wrought",[2,2,[[31,2,2,0,2,[[889,2,2,0,2]]]],[22542,22544]]]]},{"k":"H1981","v":[["*",[3,3,[[26,3,3,0,3,[[852,1,1,0,1],[853,2,2,1,3]]]],[21832,21866,21874]]],["+",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21866]]],["walk",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21874]]],["walking",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21832]]]]},{"k":"H1982","v":[["*",[2,2,[[8,1,1,0,1,[[249,1,1,0,1]]],[9,1,1,1,2,[[278,1,1,1,2]]]],[7534,8290]]],["dropped",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7534]]],["traveller",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8290]]]]},{"k":"H1983","v":[["custom",[3,3,[[14,3,3,0,3,[[406,2,2,0,2],[409,1,1,2,3]]]],[12123,12130,12197]]]]},{"k":"H1984","v":[["*",[165,140,[[0,1,1,0,1,[[11,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[8,1,1,2,3,[[256,1,1,2,3]]],[9,2,2,3,5,[[280,1,1,3,4],[288,1,1,4,5]]],[10,1,1,5,6,[[310,1,1,5,6]]],[12,9,8,6,14,[[353,4,4,6,10],[360,3,2,10,12],[362,1,1,12,13],[366,1,1,13,14]]],[13,12,10,14,24,[[371,2,1,14,15],[373,1,1,15,16],[374,1,1,16,17],[386,2,2,17,19],[389,2,2,19,21],[395,2,1,21,22],[396,1,1,22,23],[397,1,1,23,24]]],[14,3,2,24,26,[[405,3,2,24,26]]],[15,2,2,26,28,[[417,1,1,26,27],[424,1,1,27,28]]],[17,4,4,28,32,[[447,1,1,28,29],[464,1,1,29,30],[466,1,1,30,31],[476,1,1,31,32]]],[18,94,76,32,108,[[482,1,1,32,33],[487,1,1,33,34],[495,1,1,34,35],[499,3,3,35,38],[511,1,1,38,39],[512,1,1,39,40],[521,1,1,40,41],[525,1,1,41,42],[526,1,1,42,43],[529,1,1,43,44],[533,3,2,44,46],[540,2,2,46,48],[541,1,1,48,49],[546,2,2,49,51],[550,1,1,51,52],[551,1,1,52,53],[552,2,1,53,54],[555,1,1,54,55],[561,1,1,55,56],[573,1,1,56,57],[574,1,1,57,58],[579,2,2,58,60],[581,1,1,60,61],[582,2,2,61,63],[583,3,3,63,66],[584,1,1,66,67],[586,1,1,67,68],[588,1,1,68,69],[589,1,1,69,70],[590,5,3,70,73],[592,2,2,73,75],[593,1,1,75,76],[594,2,2,76,78],[596,2,2,78,80],[612,5,3,80,83],[622,2,2,83,85],[623,4,3,85,88],[624,3,3,88,91],[625,12,8,91,99],[626,3,3,99,102],[627,13,6,102,108]]],[19,9,9,108,117,[[639,1,1,108,109],[647,1,1,109,110],[652,1,1,110,111],[654,2,2,111,113],[655,1,1,113,114],[658,3,3,114,117]]],[20,2,2,117,119,[[660,1,1,117,118],[665,1,1,118,119]]],[21,1,1,119,120,[[676,1,1,119,120]]],[22,7,7,120,127,[[691,1,1,120,121],[716,1,1,121,122],[719,1,1,122,123],[722,1,1,123,124],[723,1,1,124,125],[740,1,1,125,126],[742,1,1,126,127]]],[23,13,10,127,137,[[748,1,1,127,128],[753,5,2,128,130],[764,1,1,130,131],[769,1,1,131,132],[775,1,1,132,133],[790,1,1,133,134],[793,1,1,134,135],[794,1,1,135,136],[795,1,1,136,137]]],[25,1,1,137,138,[[827,1,1,137,138]]],[28,1,1,138,139,[[877,1,1,138,139]]],[33,1,1,139,140,[[901,1,1,139,140]]]],[313,6973,7785,8381,8606,9419,10824,10830,10845,10856,10988,11013,11049,11177,11281,11330,11360,11606,11608,11668,11669,11821,11848,11856,12107,12108,12395,12648,13145,13535,13614,13906,13978,14044,14121,14226,14227,14230,14390,14428,14579,14635,14654,14711,14759,14765,14844,14850,14860,14965,14969,15023,15069,15075,15176,15263,15469,15485,15529,15539,15606,15609,15651,15652,15656,15699,15731,15785,15794,15804,15814,15816,15822,15847,15848,15867,15868,15869,16062,16073,16176,16178,16196,16322,16323,16342,16343,16351,16352,16363,16371,16372,16373,16374,16375,16376,16378,16384,16385,16386,16388,16394,16395,16396,16397,16398,16399,16400,16727,16968,17127,17170,17171,17200,17312,17314,17315,17335,17436,17623,17916,18408,18467,18558,18586,18863,18896,19029,19198,19199,19435,19550,19698,20054,20131,20204,20219,21117,22337,22703]]],["+",[15,15,[[6,1,1,0,1,[[226,1,1,0,1]]],[13,1,1,1,2,[[389,1,1,1,2]]],[14,1,1,2,3,[[405,1,1,2,3]]],[15,1,1,3,4,[[417,1,1,3,4]]],[18,7,7,4,11,[[552,1,1,4,5],[590,1,1,5,6],[594,1,1,6,7],[623,1,1,7,8],[625,3,3,8,11]]],[19,1,1,11,12,[[654,1,1,11,12]]],[22,2,2,12,14,[[722,1,1,12,13],[740,1,1,13,14]]],[28,1,1,14,15,[[877,1,1,14,15]]]],[6973,11668,12107,12395,15075,15814,15868,16342,16376,16378,16384,17170,18558,18863,22337]]],["Glory",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[10830,15609]]],["Praise",[35,31,[[18,35,31,0,31,[[581,1,1,0,1],[582,1,1,1,2],[583,2,2,2,4],[588,1,1,4,5],[589,1,1,5,6],[590,3,2,6,8],[592,1,1,8,9],[593,1,1,9,10],[594,1,1,10,11],[612,4,3,11,14],[623,2,2,14,16],[624,2,2,16,18],[625,6,5,18,23],[626,2,2,23,25],[627,7,6,25,31]]]],[15606,15651,15652,15699,15794,15804,15814,15822,15848,15867,15869,16176,16178,16196,16342,16351,16352,16371,16372,16373,16374,16375,16385,16386,16394,16395,16396,16397,16398,16399,16400]]],["boast",[2,2,[[18,2,2,0,2,[[511,1,1,0,1],[521,1,1,1,2]]]],[14390,14579]]],["boasteth",[2,2,[[18,1,1,0,1,[[487,1,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]]],[14044,16968]]],["celebrate",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18408]]],["commended",[2,2,[[0,1,1,0,1,[[11,1,1,0,1]]],[19,1,1,1,2,[[639,1,1,1,2]]]],[313,16727]]],["foolish",[2,2,[[18,2,2,0,2,[[482,1,1,0,1],[550,1,1,1,2]]]],[13978,15023]]],["fools",[2,2,[[17,1,1,0,1,[[447,1,1,0,1]]],[18,1,1,1,2,[[552,1,1,1,2]]]],[13145,15075]]],["give",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17916]]],["gloriest",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20131]]],["glorieth",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19199]]],["glory",[10,8,[[18,3,3,0,3,[[540,1,1,0,1],[541,1,1,1,2],[583,1,1,2,3]]],[22,2,2,3,5,[[719,1,1,3,4],[723,1,1,4,5]]],[23,5,3,5,8,[[748,1,1,5,6],[753,4,2,6,8]]]],[14850,14860,15656,18467,18586,19029,19198,19199]]],["himself",[2,2,[[10,1,1,0,1,[[310,1,1,0,1]]],[19,1,1,1,2,[[652,1,1,1,2]]]],[9419,17127]]],["mad",[7,7,[[8,1,1,0,1,[[256,1,1,0,1]]],[18,1,1,1,2,[[579,1,1,1,2]]],[20,2,2,2,4,[[660,1,1,2,3],[665,1,1,3,4]]],[23,3,3,4,7,[[769,1,1,4,5],[794,1,1,5,6],[795,1,1,6,7]]]],[7785,15529,17335,17436,19550,20204,20219]]],["marriage",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15176]]],["praise",[48,47,[[12,5,5,0,5,[[353,1,1,0,1],[360,2,2,1,3],[362,1,1,3,4],[366,1,1,4,5]]],[13,6,6,5,11,[[374,1,1,5,6],[386,2,2,6,8],[389,1,1,8,9],[395,1,1,9,10],[397,1,1,10,11]]],[15,1,1,11,12,[[424,1,1,11,12]]],[18,31,30,12,42,[[499,3,3,12,15],[512,1,1,15,16],[533,3,2,16,18],[540,1,1,18,19],[546,2,2,19,21],[551,1,1,21,22],[579,1,1,22,23],[584,1,1,23,24],[586,1,1,24,25],[592,1,1,25,26],[596,2,2,26,28],[612,1,1,28,29],[622,1,1,29,30],[623,1,1,30,31],[624,1,1,31,32],[625,3,3,32,35],[626,1,1,35,36],[627,6,6,36,42]]],[19,3,3,42,45,[[654,1,1,42,43],[655,1,1,43,44],[658,1,1,44,45]]],[23,2,2,45,47,[[764,1,1,45,46],[775,1,1,46,47]]]],[10824,10988,11013,11049,11177,11360,11606,11608,11669,11821,11856,12648,14226,14227,14230,14428,14759,14765,14844,14965,14969,15069,15539,15731,15785,15847,16062,16073,16176,16322,16343,16363,16372,16373,16374,16388,16395,16396,16397,16398,16399,16400,17171,17200,17315,19435,19698]]],["praised",[17,17,[[9,2,2,0,2,[[280,1,1,0,1],[288,1,1,1,2]]],[12,3,3,2,5,[[353,2,2,2,4],[360,1,1,4,5]]],[13,3,3,5,8,[[371,1,1,5,6],[373,1,1,6,7],[396,1,1,7,8]]],[14,1,1,8,9,[[405,1,1,8,9]]],[18,5,5,9,14,[[495,1,1,9,10],[525,1,1,10,11],[573,1,1,11,12],[590,1,1,12,13],[622,1,1,13,14]]],[19,1,1,14,15,[[658,1,1,14,15]]],[21,1,1,15,16,[[676,1,1,15,16]]],[22,1,1,16,17,[[742,1,1,16,17]]]],[8381,8606,10845,10856,10988,11281,11330,11848,12108,14121,14635,15469,15816,16323,17314,17623,18896]]],["praises",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11821]]],["praiseth",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17312]]],["praising",[3,3,[[13,1,1,0,1,[[371,1,1,0,1]]],[14,1,1,1,2,[[405,1,1,1,2]]],[18,1,1,2,3,[[561,1,1,2,3]]]],[11281,12108,15263]]],["rage",[2,2,[[23,1,1,0,1,[[790,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[20054,22703]]],["renowned",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21117]]],["shine",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13906]]],["shined",[2,2,[[17,2,2,0,2,[[464,1,1,0,1],[466,1,1,1,2]]]],[13535,13614]]],["themselves",[2,2,[[18,2,2,0,2,[[526,1,1,0,1],[574,1,1,1,2]]]],[14654,15485]]],["thyself",[1,1,[[18,1,1,0,1,[[529,1,1,0,1]]]],[14711]]]]},{"k":"H1985","v":[["Hillel",[2,2,[[6,2,2,0,2,[[222,2,2,0,2]]]],[6882,6884]]]]},{"k":"H1986","v":[["*",[9,9,[[6,2,2,0,2,[[215,2,2,0,2]]],[8,1,1,2,3,[[249,1,1,2,3]]],[18,2,2,3,5,[[551,1,1,3,4],[618,1,1,4,5]]],[19,1,1,5,6,[[650,1,1,5,6]]],[22,3,3,6,9,[[694,1,1,6,7],[706,1,1,7,8],[719,1,1,8,9]]]],[6645,6649,7524,15054,16281,17079,17977,18165,18458]]],["beaten",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17079]]],["broken",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6645]]],["down",[3,3,[[8,1,1,0,1,[[249,1,1,0,1]]],[18,1,1,1,2,[[551,1,1,1,2]]],[22,1,1,2,3,[[694,1,1,2,3]]]],[7524,15054,17977]]],["overcome",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18165]]],["smite",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16281]]],["smote",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[22,1,1,1,2,[[719,1,1,1,2]]]],[6649,18458]]]]},{"k":"H1987","v":[["Helem",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10570]]]]},{"k":"H1988","v":[["*",[11,11,[[0,1,1,0,1,[[15,1,1,0,1]]],[1,1,1,1,2,[[52,1,1,1,2]]],[6,2,2,2,4,[[228,1,1,2,3],[230,1,1,3,4]]],[7,1,1,4,5,[[233,1,1,4,5]]],[8,3,3,5,8,[[245,1,1,5,6],[249,2,2,6,8]]],[9,1,1,8,9,[[273,1,1,8,9]]],[12,1,1,9,10,[[354,1,1,9,10]]],[18,1,1,10,11,[[550,1,1,10,11]]]],[394,1584,6996,7061,7163,7440,7544,7546,8198,10879,15030]]],["+",[2,2,[[9,1,1,0,1,[[273,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]]],[8198,10879]]],["here",[2,2,[[0,1,1,0,1,[[15,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]]],[394,7061]]],["hither",[6,6,[[1,1,1,0,1,[[52,1,1,0,1]]],[6,1,1,1,2,[[228,1,1,1,2]]],[7,1,1,2,3,[[233,1,1,2,3]]],[8,2,2,3,5,[[249,2,2,3,5]]],[18,1,1,5,6,[[550,1,1,5,6]]]],[1584,6996,7163,7544,7546,15030]]],["thither",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7440]]]]},{"k":"H1989","v":[["hammer",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6649]]]]},{"k":"H1990","v":[["Ham",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[341]]]]},{"k":"H1991","v":[["+",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20588]]]]},{"k":"H1992","v":[["*",[517,480,[[0,16,14,0,14,[[2,1,1,0,1],[5,2,1,1,2],[6,1,1,2,3],[13,2,2,3,5],[33,1,1,5,6],[36,1,1,6,7],[41,4,3,7,10],[43,2,2,10,12],[46,1,1,12,13],[47,1,1,13,14]]],[1,22,20,14,34,[[51,2,2,14,16],[54,4,2,16,18],[55,1,1,18,19],[56,1,1,19,20],[57,1,1,20,21],[63,1,1,21,22],[64,1,1,22,23],[67,2,2,23,25],[68,1,1,25,26],[73,1,1,26,27],[77,1,1,27,28],[78,1,1,28,29],[79,1,1,29,30],[81,1,1,30,31],[85,3,3,31,34]]],[2,17,17,34,51,[[97,1,1,34,35],[100,7,7,35,42],[105,1,1,42,43],[106,2,2,43,45],[110,1,1,45,46],[111,2,2,46,48],[114,2,2,48,50],[115,1,1,50,51]]],[3,24,22,51,73,[[117,2,1,51,52],[119,1,1,52,53],[123,2,1,53,54],[124,1,1,54,55],[125,1,1,55,56],[127,1,1,56,57],[129,1,1,57,58],[130,2,2,58,60],[131,1,1,60,61],[132,3,3,61,64],[133,1,1,64,65],[134,4,4,65,69],[136,1,1,69,70],[141,2,2,70,72],[143,1,1,72,73]]],[4,22,19,73,92,[[153,2,1,73,74],[154,1,1,74,75],[155,1,1,75,76],[156,1,1,76,77],[161,1,1,77,78],[163,1,1,78,79],[166,2,1,79,80],[169,1,1,80,81],[170,1,1,81,82],[171,1,1,82,83],[178,1,1,83,84],[180,1,1,84,85],[181,2,2,85,87],[184,3,3,87,90],[185,3,2,90,92]]],[5,11,10,92,102,[[187,1,1,92,93],[188,2,2,93,95],[193,1,1,95,96],[195,3,2,96,98],[196,1,1,98,99],[197,1,1,99,100],[206,1,1,100,101],[209,1,1,101,102]]],[6,26,22,102,124,[[211,1,1,102,103],[212,1,1,103,104],[216,3,1,104,105],[218,3,3,105,108],[220,1,1,108,109],[227,1,1,109,110],[228,8,6,110,116],[229,3,3,116,119],[230,4,4,119,123],[231,1,1,123,124]]],[7,1,1,124,125,[[232,1,1,124,125]]],[8,22,20,125,145,[[238,1,1,125,126],[243,1,1,126,127],[244,6,5,127,132],[245,1,1,132,133],[247,1,1,133,134],[249,3,3,134,137],[252,1,1,137,138],[254,3,2,138,140],[258,1,1,140,141],[260,1,1,141,142],[261,1,1,142,143],[263,1,1,143,144],[264,1,1,144,145]]],[9,9,7,145,152,[[268,1,1,145,146],[279,1,1,146,147],[282,1,1,147,148],[283,3,2,148,150],[286,1,1,150,151],[290,2,1,151,152]]],[10,21,21,152,173,[[291,1,1,152,153],[293,1,1,153,154],[298,2,2,154,156],[299,1,1,156,157],[300,1,1,157,158],[301,2,2,158,160],[303,1,1,160,161],[304,2,2,161,163],[305,3,3,163,166],[306,4,4,166,170],[312,3,3,170,173]]],[11,39,38,173,211,[[313,1,1,173,174],[314,1,1,174,175],[316,2,2,175,177],[319,1,1,177,178],[320,1,1,178,179],[321,1,1,179,180],[322,2,2,180,182],[324,3,3,182,185],[325,3,3,185,188],[326,3,3,188,191],[327,4,4,191,195],[328,1,1,195,196],[329,4,4,196,200],[330,1,1,200,201],[331,2,2,201,203],[332,2,2,203,205],[333,2,2,205,207],[334,1,1,207,208],[335,1,1,208,209],[336,1,1,209,210],[337,2,1,210,211]]],[12,21,20,211,231,[[339,1,1,211,212],[341,1,1,212,213],[342,1,1,213,214],[345,3,2,214,216],[346,6,6,216,222],[349,3,3,222,225],[356,1,1,225,226],[358,2,2,226,228],[361,1,1,228,229],[363,2,2,229,231]]],[13,17,16,231,247,[[369,1,1,231,232],[372,1,1,232,233],[374,1,1,233,234],[375,3,3,234,237],[378,1,1,237,238],[381,1,1,238,239],[384,1,1,239,240],[386,1,1,240,241],[388,1,1,241,242],[389,2,1,242,243],[394,1,1,243,244],[397,1,1,244,245],[398,1,1,245,246],[400,1,1,246,247]]],[14,1,1,247,248,[[404,1,1,247,248]]],[15,17,17,248,265,[[413,1,1,248,249],[415,4,4,249,253],[416,2,2,253,255],[418,2,2,255,257],[419,2,2,257,259],[421,3,3,259,262],[422,1,1,262,263],[425,2,2,263,265]]],[16,4,4,265,269,[[426,1,1,265,266],[427,1,1,266,267],[434,1,1,267,268],[435,1,1,268,269]]],[17,4,4,269,273,[[441,1,1,269,270],[443,1,1,270,271],[459,1,1,271,272],[467,1,1,272,273]]],[18,27,26,273,299,[[486,2,2,273,275],[497,1,1,275,276],[499,1,1,276,277],[500,1,1,277,278],[502,1,1,278,279],[504,1,1,279,280],[514,1,1,280,281],[515,1,1,281,282],[520,1,1,282,283],[525,1,1,283,284],[532,1,1,284,285],[533,1,1,285,286],[536,1,1,286,287],[539,1,1,287,288],[540,1,1,288,289],[555,1,1,289,290],[565,1,1,290,291],[571,1,1,291,292],[572,2,1,292,293],[579,1,1,293,294],[583,1,1,294,295],[584,1,1,295,296],[586,1,1,296,297],[596,1,1,297,298],[597,1,1,298,299]]],[19,7,7,299,306,[[628,2,2,299,301],[631,1,1,301,302],[645,1,1,302,303],[646,1,1,303,304],[653,1,1,304,305],[657,1,1,305,306]]],[20,5,5,306,311,[[659,1,1,306,307],[661,1,1,307,308],[662,1,1,308,309],[665,1,1,309,310],[670,1,1,310,311]]],[21,2,2,311,313,[[676,2,2,311,313]]],[22,20,19,313,332,[[679,1,1,313,314],[687,1,1,314,315],[702,1,1,315,316],[713,1,1,316,317],[715,2,2,317,319],[716,1,1,319,320],[722,2,2,320,322],[727,1,1,322,323],[734,1,1,323,324],[735,2,1,324,325],[739,1,1,325,326],[741,2,2,326,328],[743,2,2,328,330],[744,2,2,330,332]]],[23,68,58,332,390,[[746,2,2,332,334],[747,2,2,334,336],[748,3,1,336,337],[749,5,4,337,341],[750,1,1,341,342],[751,3,3,342,345],[753,1,1,345,346],[754,3,3,346,349],[755,2,2,349,351],[756,2,1,351,352],[758,6,3,352,355],[760,1,1,355,356],[761,3,3,356,359],[763,1,1,359,360],[766,1,1,360,361],[767,3,2,361,363],[769,1,1,363,364],[771,6,6,364,370],[773,1,1,370,371],[775,5,4,371,375],[776,1,1,375,376],[777,2,2,376,378],[780,1,1,378,379],[784,2,2,379,381],[786,1,1,381,382],[788,2,2,382,384],[790,2,2,384,386],[794,4,3,386,389],[795,1,1,389,390]]],[24,2,2,390,392,[[797,1,1,390,391],[800,1,1,391,392]]],[25,59,55,392,447,[[803,5,4,392,396],[804,5,5,396,401],[809,4,4,401,405],[811,3,3,405,408],[812,1,1,408,409],[813,2,2,409,411],[815,4,4,411,415],[821,2,2,415,417],[824,4,4,417,421],[826,2,1,421,422],[828,7,7,422,429],[832,1,1,429,430],[833,1,1,430,431],[834,2,2,431,433],[835,1,1,433,434],[837,1,1,434,435],[838,2,2,435,437],[839,1,1,437,438],[841,1,1,438,439],[844,1,1,439,440],[845,8,6,440,446],[848,1,1,446,447]]],[26,2,2,447,449,[[859,1,1,447,448],[860,1,1,448,449]]],[27,13,13,449,462,[[863,4,4,449,453],[864,1,1,453,454],[865,1,1,454,455],[867,1,1,455,456],[868,1,1,456,457],[869,3,3,457,460],[870,1,1,460,461],[874,1,1,461,462]]],[28,2,2,462,464,[[877,1,1,462,463],[878,1,1,463,464]]],[32,1,1,464,465,[[896,1,1,464,465]]],[33,1,1,465,466,[[901,1,1,465,466]]],[34,1,1,466,467,[[903,1,1,466,467]]],[35,2,2,467,469,[[907,1,1,467,468],[908,1,1,468,469]]],[37,10,10,469,479,[[911,2,2,469,471],[913,1,1,471,472],[914,1,1,472,473],[915,1,1,473,474],[918,3,3,474,477],[924,2,2,477,479]]],[38,1,1,479,480,[[925,1,1,479,480]]]],[62,141,173,349,360,1002,1099,1260,1275,1287,1327,1328,1434,1460,1565,1577,1639,1640,1682,1696,1731,1892,1943,2021,2025,2039,2179,2298,2369,2386,2453,2567,2569,2570,2945,3005,3007,3010,3024,3025,3032,3039,3205,3240,3242,3351,3371,3380,3511,3524,3567,3654,3701,3852,3955,3972,4050,4078,4117,4135,4178,4208,4210,4227,4249,4260,4274,4278,4280,4324,4477,4489,4568,4931,4949,4995,5014,5186,5238,5297,5373,5393,5423,5569,5676,5682,5697,5778,5779,5786,5813,5827,5866,5873,5877,5979,6041,6053,6069,6111,6378,6472,6531,6567,6659,6724,6738,6743,6825,6986,6994,6996,7000,7015,7019,7020,7025,7035,7046,7081,7082,7086,7088,7127,7149,7277,7377,7396,7402,7405,7413,7418,7423,7481,7523,7529,7530,7637,7726,7727,7811,7872,7924,7943,7971,8073,8347,8449,8457,8466,8562,8695,8758,8818,9025,9036,9073,9104,9110,9149,9204,9241,9247,9256,9272,9280,9288,9297,9303,9310,9512,9519,9525,9551,9562,9608,9643,9717,9750,9774,9825,9827,9855,9865,9869,9879,9883,9892,9911,9914,9924,9931,9946,9961,9962,9982,10012,10017,10023,10024,10028,10079,10098,10099,10118,10136,10144,10152,10193,10207,10245,10361,10408,10451,10588,10607,10633,10637,10638,10641,10642,10653,10721,10735,10741,10922,10937,10944,11046,11083,11085,11242,11313,11355,11375,11388,11393,11452,11495,11573,11598,11648,11662,11787,11860,11899,11949,12086,12306,12328,12330,12333,12340,12361,12362,12403,12418,12423,12481,12527,12540,12546,12586,12686,12694,12704,12745,12835,12868,12985,13039,13449,13632,14027,14041,14190,14221,14239,14257,14287,14459,14500,14569,14639,14753,14761,14805,14836,14848,15152,15313,15442,15464,15547,15694,15723,15783,16009,16081,16409,16418,16512,16909,16932,17163,17275,17322,17377,17383,17458,17535,17619,17622,17656,17850,18109,18322,18371,18390,18391,18542,18544,18657,18764,18771,18852,18874,18876,18920,18921,18925,18927,18976,18991,19018,19020,19049,19062,19063,19068,19076,19117,19123,19136,19138,19191,19203,19206,19216,19236,19238,19255,19307,19308,19309,19356,19372,19375,19382,19411,19481,19500,19505,19548,19605,19606,19610,19611,19612,19614,19644,19692,19720,19723,19724,19763,19790,19791,19874,19948,19949,19980,20013,20024,20050,20066,20170,20186,20208,20230,20329,20429,20495,20497,20498,20499,20508,20511,20517,20528,20529,20610,20613,20617,20620,20649,20653,20655,20662,20682,20683,20745,20747,20749,20751,20904,20944,21015,21017,21032,21052,21087,21131,21132,21134,21138,21142,21143,21145,21247,21277,21297,21311,21343,21366,21422,21424,21442,21523,21579,21610,21614,21615,21618,21623,21628,21691,22017,22050,22109,22117,22126,22127,22129,22147,22174,22191,22198,22203,22207,22218,22268,22340,22344,22632,22707,22747,22817,22833,22883,22893,22920,22932,22946,22982,22986,22999,23071,23083,23093]]],["+",[11,10,[[1,2,2,0,2,[[51,1,1,0,1],[85,1,1,1,2]]],[9,2,1,2,3,[[290,2,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[20,2,2,4,6,[[662,1,1,4,5],[670,1,1,5,6]]],[21,1,1,6,7,[[676,1,1,6,7]]],[23,2,2,7,9,[[754,1,1,7,8],[771,1,1,8,9]]],[24,1,1,9,10,[[800,1,1,9,10]]]],[1577,2567,8695,10944,17383,17535,17619,19203,19605,20429]]],["It",[1,1,[[18,1,1,0,1,[[572,1,1,0,1]]]],[15464]]],["There",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17622]]],["These",[9,9,[[1,1,1,0,1,[[55,1,1,0,1]]],[12,4,4,1,5,[[339,1,1,1,2],[341,1,1,2,3],[346,1,1,3,4],[361,1,1,4,5]]],[18,1,1,5,6,[[584,1,1,5,6]]],[25,2,2,6,8,[[824,1,1,6,7],[828,1,1,7,8]]],[27,1,1,8,9,[[863,1,1,8,9]]]],[1682,10361,10408,10637,11046,15723,21017,21145,22117]]],["They",[21,21,[[0,2,2,0,2,[[6,1,1,0,1],[47,1,1,1,2]]],[1,1,1,2,3,[[63,1,1,2,3]]],[3,1,1,3,4,[[132,1,1,3,4]]],[4,1,1,4,5,[[184,1,1,4,5]]],[5,1,1,5,6,[[195,1,1,5,6]]],[6,2,2,6,8,[[218,1,1,6,7],[230,1,1,7,8]]],[17,1,1,8,9,[[459,1,1,8,9]]],[18,3,3,9,12,[[497,1,1,9,10],[525,1,1,10,11],[579,1,1,11,12]]],[22,1,1,12,13,[[702,1,1,12,13]]],[23,3,3,13,16,[[754,2,2,13,15],[795,1,1,15,16]]],[25,3,3,16,19,[[832,1,1,16,17],[845,2,2,17,19]]],[27,1,1,19,20,[[869,1,1,19,20]]],[38,1,1,20,21,[[925,1,1,20,21]]]],[173,1460,1892,4227,5779,6041,6738,7086,13449,14190,14639,15547,18109,19206,19216,20230,21247,21615,21628,22198,23093]]],["This",[1,1,[[3,1,1,0,1,[[136,1,1,0,1]]]],[4324]]],["Which",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4949]]],["as",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6659]]],["it",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14500]]],["like",[1,1,[[23,1,1,0,1,[[780,1,1,0,1]]]],[19874]]],["same",[4,4,[[0,1,1,0,1,[[5,1,1,0,1]]],[15,1,1,1,2,[[422,1,1,1,2]]],[25,2,2,2,4,[[811,2,2,2,4]]]],[141,12586,20649,20655]]],["such",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11375]]],["that",[1,1,[[3,1,1,0,1,[[143,1,1,0,1]]]],[4568]]],["them",[18,17,[[0,1,1,0,1,[[13,1,1,0,1]]],[1,1,1,1,2,[[54,1,1,1,2]]],[3,1,1,2,3,[[123,1,1,2,3]]],[6,1,1,3,4,[[220,1,1,3,4]]],[11,2,2,4,6,[[321,1,1,4,5],[324,1,1,5,6]]],[12,1,1,6,7,[[346,1,1,6,7]]],[16,1,1,7,8,[[434,1,1,7,8]]],[18,4,4,8,12,[[486,1,1,8,9],[520,1,1,9,10],[536,1,1,10,11],[586,1,1,11,12]]],[23,4,3,12,15,[[758,2,1,12,13],[761,1,1,13,14],[790,1,1,14,15]]],[25,1,1,15,16,[[834,1,1,15,16]]],[34,1,1,16,17,[[903,1,1,16,17]]]],[360,1639,3852,6825,9774,9855,10642,12835,14027,14569,14805,15783,19309,19375,20050,21297,22747]]],["themselves",[4,4,[[1,1,1,0,1,[[67,1,1,0,1]]],[18,1,1,1,2,[[486,1,1,1,2]]],[23,1,1,2,3,[[769,1,1,2,3]]],[27,1,1,3,4,[[865,1,1,3,4]]]],[2025,14041,19548,22147]]],["these",[17,17,[[0,1,1,0,1,[[13,1,1,0,1]]],[2,1,1,1,2,[[105,1,1,1,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[4,2,2,3,5,[[180,1,1,3,4],[181,1,1,4,5]]],[8,1,1,5,6,[[264,1,1,5,6]]],[12,2,2,6,8,[[345,1,1,6,7],[346,1,1,7,8]]],[15,1,1,8,9,[[413,1,1,8,9]]],[23,3,3,9,12,[[749,2,2,9,11],[751,1,1,11,12]]],[25,1,1,12,13,[[841,1,1,12,13]]],[37,4,4,13,17,[[915,1,1,13,14],[918,2,2,14,16],[924,1,1,16,17]]]],[349,3205,4208,5676,5697,7971,10607,10641,12306,19062,19063,19123,21523,22946,22982,22986,23083]]],["they",[359,336,[[0,10,9,0,9,[[2,1,1,0,1],[33,1,1,1,2],[36,1,1,2,3],[41,4,3,3,6],[43,2,2,6,8],[46,1,1,8,9]]],[1,14,12,9,21,[[54,3,1,9,10],[56,1,1,10,11],[57,1,1,11,12],[64,1,1,12,13],[67,1,1,13,14],[68,1,1,14,15],[73,1,1,15,16],[77,1,1,16,17],[78,1,1,17,18],[81,1,1,18,19],[85,2,2,19,21]]],[2,15,15,21,36,[[97,1,1,21,22],[100,6,6,22,28],[106,2,2,28,30],[110,1,1,30,31],[111,2,2,31,33],[114,2,2,33,35],[115,1,1,35,36]]],[3,15,14,36,50,[[117,2,1,36,37],[119,1,1,37,38],[124,1,1,38,39],[127,1,1,39,40],[130,2,2,40,42],[131,1,1,42,43],[132,1,1,43,44],[133,1,1,44,45],[134,4,4,45,49],[141,1,1,49,50]]],[4,13,10,50,60,[[153,2,1,50,51],[155,1,1,51,52],[156,1,1,52,53],[161,1,1,53,54],[163,1,1,54,55],[166,2,1,55,56],[184,2,2,56,58],[185,3,2,58,60]]],[5,9,8,60,68,[[187,1,1,60,61],[188,2,2,61,63],[193,1,1,63,64],[195,2,1,64,65],[196,1,1,65,66],[197,1,1,66,67],[209,1,1,67,68]]],[6,15,13,68,81,[[211,1,1,68,69],[212,1,1,69,70],[216,2,1,70,71],[218,2,2,71,73],[228,6,5,73,78],[229,2,2,78,80],[230,1,1,80,81]]],[7,1,1,81,82,[[232,1,1,81,82]]],[8,18,16,82,98,[[243,1,1,82,83],[244,5,4,83,87],[245,1,1,87,88],[247,1,1,88,89],[249,3,3,89,92],[252,1,1,92,93],[254,3,2,93,95],[258,1,1,95,96],[260,1,1,96,97],[261,1,1,97,98]]],[9,6,5,98,103,[[268,1,1,98,99],[279,1,1,99,100],[283,3,2,100,102],[286,1,1,102,103]]],[10,20,20,103,123,[[291,1,1,103,104],[298,2,2,104,106],[299,1,1,106,107],[300,1,1,107,108],[301,2,2,108,110],[303,1,1,110,111],[304,2,2,111,113],[305,3,3,113,116],[306,4,4,116,120],[312,3,3,120,123]]],[11,32,31,123,154,[[313,1,1,123,124],[314,1,1,124,125],[316,1,1,125,126],[319,1,1,126,127],[320,1,1,127,128],[322,1,1,128,129],[324,2,2,129,131],[325,3,3,131,134],[326,3,3,134,137],[327,3,3,137,140],[328,1,1,140,141],[329,4,4,141,145],[331,2,2,145,147],[332,1,1,147,148],[333,2,2,148,150],[334,1,1,150,151],[335,1,1,151,152],[336,1,1,152,153],[337,2,1,153,154]]],[12,11,11,154,165,[[342,1,1,154,155],[346,3,3,155,158],[349,3,3,158,161],[356,1,1,161,162],[358,1,1,162,163],[363,2,2,163,165]]],[13,14,13,165,178,[[369,1,1,165,166],[372,1,1,166,167],[374,1,1,167,168],[375,2,2,168,170],[378,1,1,170,171],[384,1,1,171,172],[386,1,1,172,173],[388,1,1,173,174],[389,2,1,174,175],[394,1,1,175,176],[397,1,1,176,177],[400,1,1,177,178]]],[14,1,1,178,179,[[404,1,1,178,179]]],[15,10,10,179,189,[[415,3,3,179,182],[416,1,1,182,183],[418,1,1,183,184],[419,2,2,184,186],[421,3,3,186,189]]],[16,1,1,189,190,[[435,1,1,189,190]]],[17,2,2,190,192,[[443,1,1,190,191],[467,1,1,191,192]]],[18,15,15,192,207,[[499,1,1,192,193],[500,1,1,193,194],[502,1,1,194,195],[504,1,1,195,196],[514,1,1,196,197],[532,1,1,197,198],[533,1,1,198,199],[539,1,1,199,200],[555,1,1,200,201],[565,1,1,201,202],[571,1,1,202,203],[572,1,1,203,204],[583,1,1,204,205],[596,1,1,205,206],[597,1,1,206,207]]],[19,7,7,207,214,[[628,2,2,207,209],[631,1,1,209,210],[645,1,1,210,211],[646,1,1,211,212],[653,1,1,212,213],[657,1,1,213,214]]],[20,3,3,214,217,[[659,1,1,214,215],[661,1,1,215,216],[665,1,1,216,217]]],[22,18,17,217,234,[[679,1,1,217,218],[687,1,1,218,219],[713,1,1,219,220],[715,2,2,220,222],[722,2,2,222,224],[727,1,1,224,225],[734,1,1,225,226],[735,2,1,226,227],[739,1,1,227,228],[741,2,2,228,230],[743,2,2,230,232],[744,2,2,232,234]]],[23,43,39,234,273,[[746,1,1,234,235],[748,3,1,235,236],[749,2,2,236,238],[750,1,1,238,239],[751,2,2,239,241],[753,1,1,241,242],[755,2,2,242,244],[756,2,1,244,245],[758,3,3,245,248],[760,1,1,248,249],[761,2,2,249,251],[763,1,1,251,252],[766,1,1,252,253],[767,3,2,253,255],[771,5,5,255,260],[773,1,1,260,261],[775,3,3,261,264],[776,1,1,264,265],[784,2,2,265,267],[786,1,1,267,268],[788,2,2,268,270],[790,1,1,270,271],[794,2,2,271,273]]],[24,1,1,273,274,[[797,1,1,273,274]]],[25,49,46,274,320,[[803,5,4,274,278],[804,5,5,278,283],[809,4,4,283,287],[811,1,1,287,288],[812,1,1,288,289],[813,2,2,289,291],[815,4,4,291,295],[821,2,2,295,297],[824,3,3,297,300],[826,2,1,300,301],[828,6,6,301,307],[833,1,1,307,308],[834,1,1,308,309],[835,1,1,309,310],[837,1,1,310,311],[838,2,2,311,313],[844,1,1,313,314],[845,6,5,314,319],[848,1,1,319,320]]],[27,9,9,320,329,[[863,3,3,320,323],[867,1,1,323,324],[868,1,1,324,325],[869,2,2,325,327],[870,1,1,327,328],[874,1,1,328,329]]],[32,1,1,329,330,[[896,1,1,329,330]]],[33,1,1,330,331,[[901,1,1,330,331]]],[35,1,1,331,332,[[908,1,1,331,332]]],[37,4,4,332,336,[[911,2,2,332,334],[913,1,1,334,335],[914,1,1,335,336]]]],[62,1002,1099,1260,1275,1287,1327,1328,1434,1640,1696,1731,1943,2021,2039,2179,2298,2369,2453,2569,2570,2945,3005,3007,3010,3025,3032,3039,3240,3242,3351,3371,3380,3511,3524,3567,3654,3701,3955,4050,4117,4135,4178,4210,4249,4260,4274,4278,4280,4489,4931,4995,5014,5186,5238,5297,5778,5786,5813,5827,5866,5873,5877,5979,6053,6069,6111,6472,6531,6567,6659,6724,6743,6996,7000,7015,7019,7020,7035,7046,7088,7149,7377,7396,7402,7405,7418,7423,7481,7523,7529,7530,7637,7726,7727,7811,7872,7924,8073,8347,8457,8466,8562,8758,9025,9036,9073,9104,9110,9149,9204,9241,9247,9256,9272,9280,9288,9297,9303,9310,9512,9519,9525,9551,9562,9643,9717,9750,9827,9865,9869,9879,9883,9892,9911,9914,9924,9931,9946,9961,9982,10012,10017,10023,10024,10079,10098,10118,10136,10144,10152,10193,10207,10245,10451,10633,10638,10653,10721,10735,10741,10922,10937,11083,11085,11242,11313,11355,11388,11393,11452,11573,11598,11648,11662,11787,11860,11949,12086,12328,12333,12340,12362,12403,12423,12481,12527,12540,12546,12868,13039,13632,14221,14239,14257,14287,14459,14753,14761,14836,15152,15313,15442,15464,15694,16009,16081,16409,16418,16512,16909,16932,17163,17275,17322,17377,17458,17656,17850,18322,18371,18390,18542,18544,18657,18764,18771,18852,18874,18876,18920,18921,18925,18927,18991,19049,19063,19068,19117,19136,19138,19191,19236,19238,19255,19307,19308,19309,19356,19372,19382,19411,19481,19500,19505,19606,19610,19611,19612,19614,19644,19692,19723,19724,19763,19948,19949,19980,20013,20024,20066,20170,20208,20329,20495,20497,20498,20499,20508,20511,20517,20528,20529,20610,20613,20617,20620,20653,20662,20682,20683,20745,20747,20749,20751,20904,20944,21015,21032,21052,21087,21131,21132,21134,21138,21142,21143,21277,21311,21343,21366,21422,21424,21579,21610,21614,21615,21618,21623,21691,22109,22126,22127,22174,22191,22203,22207,22218,22268,22632,22707,22833,22883,22893,22920,22932]]],["things",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12985]]],["those",[52,51,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]],[2,1,1,2,3,[[100,1,1,2,3]]],[3,2,2,3,5,[[125,1,1,3,4],[129,1,1,4,5]]],[4,5,5,5,10,[[169,1,1,5,6],[170,1,1,6,7],[171,1,1,7,8],[178,1,1,8,9],[181,1,1,9,10]]],[5,1,1,10,11,[[206,1,1,10,11]]],[6,7,6,11,17,[[227,1,1,11,12],[228,2,1,12,13],[229,1,1,13,14],[230,2,2,14,16],[231,1,1,16,17]]],[8,2,2,17,19,[[238,1,1,17,18],[263,1,1,18,19]]],[9,1,1,19,20,[[282,1,1,19,20]]],[10,1,1,20,21,[[293,1,1,20,21]]],[11,4,4,21,25,[[322,1,1,21,22],[327,1,1,22,23],[330,1,1,23,24],[332,1,1,24,25]]],[13,2,2,25,27,[[381,1,1,25,26],[398,1,1,26,27]]],[15,3,3,27,30,[[418,1,1,27,28],[425,2,2,28,30]]],[16,2,2,30,32,[[426,1,1,30,31],[427,1,1,31,32]]],[18,1,1,32,33,[[540,1,1,32,33]]],[22,1,1,33,34,[[716,1,1,33,34]]],[23,10,10,34,44,[[747,2,2,34,36],[749,1,1,36,37],[758,1,1,37,38],[775,2,2,38,40],[777,2,2,40,42],[794,2,2,42,44]]],[25,1,1,44,45,[[839,1,1,44,45]]],[26,2,2,45,47,[[859,1,1,45,46],[860,1,1,46,47]]],[28,2,2,47,49,[[877,1,1,47,48],[878,1,1,48,49]]],[37,2,2,49,51,[[918,1,1,49,50],[924,1,1,50,51]]]],[141,1565,3024,3972,4078,5373,5393,5423,5569,5682,6378,6986,6994,7025,7081,7082,7127,7277,7943,8449,8818,9825,9962,10028,10099,11495,11899,12418,12686,12694,12704,12745,14848,18391,19018,19020,19076,19308,19720,19724,19790,19791,20170,20186,21442,22017,22050,22340,22344,22999,23071]]],["which",[3,3,[[8,1,1,0,1,[[244,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]],[23,1,1,2,3,[[746,1,1,2,3]]]],[7413,12361,18976]]],["who",[7,6,[[3,2,2,0,2,[[123,1,1,0,1],[141,1,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]],[12,2,1,3,4,[[345,2,1,3,4]]],[15,1,1,4,5,[[415,1,1,4,5]]],[27,1,1,5,6,[[864,1,1,5,6]]]],[3852,4477,9608,10588,12330,22129]]],["withal",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2386]]],["ye",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22817]]]]},{"k":"H1993","v":[["*",[34,32,[[10,1,1,0,1,[[291,1,1,0,1]]],[18,11,11,1,12,[[516,1,1,1,2],[519,2,2,2,4],[520,1,1,4,5],[523,2,2,5,7],[532,1,1,7,8],[536,2,2,8,10],[554,1,1,10,11],[560,1,1,11,12]]],[19,4,4,12,16,[[628,1,1,12,13],[634,1,1,13,14],[636,1,1,14,15],[647,1,1,15,16]]],[21,1,1,16,17,[[675,1,1,16,17]]],[22,6,5,17,22,[[694,1,1,17,18],[695,2,1,18,19],[700,1,1,19,20],[729,1,1,20,21],[737,1,1,21,22]]],[23,9,8,22,30,[[748,1,1,22,23],[749,1,1,23,24],[750,1,1,24,25],[775,2,2,25,27],[792,2,1,27,28],[794,1,1,28,29],[795,1,1,29,30]]],[25,1,1,30,31,[[808,1,1,30,31]]],[37,1,1,31,32,[[919,1,1,31,32]]]],[8758,14518,14560,14566,14571,14617,14620,14749,14796,14804,15096,15243,16421,16586,16651,16955,17602,17980,17995,18054,18688,18811,19046,19080,19112,19711,19726,20116,20208,20267,20593,23014]]],["aloud",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14749]]],["clamorous",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16651]]],["concourse",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16421]]],["disquieted",[4,4,[[18,4,4,0,4,[[516,1,1,0,1],[519,2,2,1,3],[520,1,1,3,4]]]],[14518,14560,14566,14571]]],["loud",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16586]]],["mourning",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20593]]],["moved",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17602]]],["noise",[6,5,[[18,2,2,0,2,[[536,2,2,0,2]]],[22,2,1,2,3,[[695,2,1,2,3]]],[23,1,1,3,4,[[748,1,1,3,4]]],[37,1,1,4,5,[[919,1,1,4,5]]]],[14796,14804,17995,19046,23014]]],["raged",[1,1,[[18,1,1,0,1,[[523,1,1,0,1]]]],[14620]]],["raging",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16955]]],["roar",[6,6,[[18,1,1,0,1,[[523,1,1,0,1]]],[22,1,1,1,2,[[737,1,1,1,2]]],[23,4,4,2,6,[[749,1,1,2,3],[775,1,1,3,4],[794,1,1,4,5],[795,1,1,5,6]]]],[14617,18811,19080,19726,20208,20267]]],["roared",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18688]]],["roareth",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19112]]],["sound",[3,2,[[22,1,1,0,1,[[694,1,1,0,1]]],[23,2,1,1,2,[[792,2,1,1,2]]]],[17980,20116]]],["troubled",[2,2,[[18,1,1,0,1,[[554,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[15096,19711]]],["tumult",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15243]]],["tumultuous",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18054]]],["uproar",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8758]]]]},{"k":"H1994","v":[["*",[9,8,[[14,7,6,0,6,[[406,1,1,0,1],[407,5,4,1,5],[409,1,1,5,6]]],[26,2,2,6,8,[[851,2,2,6,8]]]],[12133,12139,12146,12148,12149,12190,21792,21793]]],["+",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21792,21793]]],["them",[6,6,[[14,6,6,0,6,[[406,1,1,0,1],[407,4,4,1,5],[409,1,1,5,6]]]],[12133,12139,12146,12148,12149,12190]]],["those",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12148]]]]},{"k":"H1995","v":[["*",[83,78,[[0,2,2,0,2,[[16,2,2,0,2]]],[6,1,1,2,3,[[214,1,1,2,3]]],[8,3,3,3,6,[[239,1,1,3,4],[249,2,2,4,6]]],[9,2,2,6,8,[[272,1,1,6,7],[284,1,1,7,8]]],[10,3,3,8,11,[[308,1,1,8,9],[310,2,2,9,11]]],[11,3,2,11,13,[[319,2,1,11,12],[337,1,1,12,13]]],[12,1,1,13,14,[[366,1,1,13,14]]],[13,9,9,14,23,[[377,1,1,14,15],[379,1,1,15,16],[380,1,1,16,17],[386,4,4,17,21],[397,1,1,21,22],[398,1,1,22,23]]],[17,2,2,23,25,[[466,1,1,23,24],[474,1,1,24,25]]],[18,3,3,25,28,[[514,1,1,25,26],[519,1,1,26,27],[542,1,1,27,28]]],[20,1,1,28,29,[[663,1,1,28,29]]],[22,14,13,29,42,[[683,2,2,29,31],[691,1,1,31,32],[694,1,1,32,33],[695,1,1,33,34],[707,4,3,34,37],[709,1,1,37,38],[710,1,1,38,39],[711,1,1,39,40],[738,1,1,40,41],[741,1,1,41,42]]],[23,6,6,42,48,[[747,1,1,42,43],[754,1,1,43,44],[791,1,1,44,45],[793,1,1,45,46],[795,2,2,46,48]]],[25,24,23,48,71,[[806,1,1,48,49],[808,4,4,49,53],[824,1,1,53,54],[827,1,1,54,55],[830,1,1,55,56],[831,3,3,56,59],[832,2,2,59,61],[833,10,9,61,70],[840,1,1,70,71]]],[26,6,5,71,76,[[859,1,1,71,72],[860,5,4,72,76]]],[28,2,1,76,77,[[878,2,1,76,77]]],[29,1,1,77,78,[[883,1,1,77,78]]]],[401,402,6606,7311,7524,7527,8176,8507,9382,9421,9436,9720,10233,11180,11437,11461,11486,11589,11599,11602,11611,11864,11882,13622,13841,14466,14559,14867,17407,17752,17753,17910,17983,17995,18198,18200,18201,18254,18273,18282,18826,18881,19025,19214,20076,20159,20228,20254,20553,20588,20589,20590,20591,21049,21113,21202,21208,21214,21219,21232,21248,21260,21264,21266,21268,21272,21273,21274,21279,21280,21459,22021,22046,22047,22048,22049,22357,22446]]],["+",[3,3,[[18,1,1,0,1,[[514,1,1,0,1]]],[22,1,1,1,2,[[709,1,1,1,2]]],[25,1,1,2,3,[[808,1,1,2,3]]]],[14466,18254,20588]]],["Multitudes",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22357]]],["abundance",[3,3,[[10,1,1,0,1,[[308,1,1,0,1]]],[20,1,1,1,2,[[663,1,1,1,2]]],[22,1,1,2,3,[[738,1,1,2,3]]]],[9382,17407,18826]]],["company",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11599]]],["many",[3,3,[[0,2,2,0,2,[[16,2,2,0,2]]],[13,1,1,2,3,[[377,1,1,2,3]]]],[401,402,11437]]],["multiplied",[1,1,[[25,1,1,0,1,[[806,1,1,0,1]]]],[20553]]],["multitude",[58,54,[[6,1,1,0,1,[[214,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[9,1,1,2,3,[[272,1,1,2,3]]],[10,2,2,3,5,[[310,2,2,3,5]]],[11,3,2,5,7,[[319,2,1,5,6],[337,1,1,6,7]]],[13,6,6,7,13,[[379,1,1,7,8],[380,1,1,8,9],[386,3,3,9,12],[398,1,1,12,13]]],[17,2,2,13,15,[[466,1,1,13,14],[474,1,1,14,15]]],[18,1,1,15,16,[[519,1,1,15,16]]],[22,10,9,16,25,[[683,2,2,16,18],[691,1,1,18,19],[694,1,1,19,20],[695,1,1,20,21],[707,4,3,21,24],[710,1,1,24,25]]],[23,5,5,25,30,[[747,1,1,25,26],[754,1,1,26,27],[793,1,1,27,28],[795,2,2,28,30]]],[25,20,19,30,49,[[808,3,3,30,33],[824,1,1,33,34],[830,1,1,34,35],[831,3,3,35,38],[832,2,2,38,40],[833,9,8,40,48],[840,1,1,48,49]]],[26,6,5,49,54,[[859,1,1,49,50],[860,5,4,50,54]]]],[6606,7524,8176,9421,9436,9720,10233,11461,11486,11589,11602,11611,11882,13622,13841,14559,17752,17753,17910,17983,17995,18198,18200,18201,18273,19025,19214,20159,20228,20254,20589,20590,20591,21049,21202,21208,21214,21219,21232,21248,21260,21264,21266,21272,21273,21274,21279,21280,21459,22021,22046,22047,22048,22049]]],["multitudes",[2,2,[[25,1,1,0,1,[[833,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]]],[21268,22357]]],["noise",[3,3,[[8,1,1,0,1,[[249,1,1,0,1]]],[25,1,1,1,2,[[827,1,1,1,2]]],[29,1,1,2,3,[[883,1,1,2,3]]]],[7527,21113,22446]]],["rumbling",[1,1,[[23,1,1,0,1,[[791,1,1,0,1]]]],[20076]]],["sounding",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18881]]],["store",[2,2,[[12,1,1,0,1,[[366,1,1,0,1]]],[13,1,1,1,2,[[397,1,1,1,2]]]],[11180,11864]]],["tumult",[4,4,[[8,1,1,0,1,[[239,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[18,1,1,2,3,[[542,1,1,2,3]]],[22,1,1,3,4,[[711,1,1,3,4]]]],[7311,8507,14867,18282]]]]},{"k":"H1996","v":[["Hamongog",[2,2,[[25,2,2,0,2,[[840,2,2,0,2]]]],[21459,21463]]]]},{"k":"H1997","v":[["Hamonah",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21464]]]]},{"k":"H1998","v":[["noise",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17939]]]]},{"k":"H1999","v":[["*",[2,2,[[23,1,1,0,1,[[755,1,1,0,1]]],[25,1,1,1,2,[[802,1,1,1,2]]]],[19242,20488]]],["speech",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20488]]],["tumult",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19242]]]]},{"k":"H2000","v":[["*",[13,13,[[1,2,2,0,2,[[63,1,1,0,1],[72,1,1,1,2]]],[4,1,1,2,3,[[154,1,1,2,3]]],[5,1,1,3,4,[[196,1,1,3,4]]],[6,1,1,4,5,[[214,1,1,4,5]]],[8,1,1,5,6,[[242,1,1,5,6]]],[9,1,1,6,7,[[288,1,1,6,7]]],[13,1,1,7,8,[[381,1,1,7,8]]],[16,1,1,8,9,[[434,1,1,8,9]]],[18,2,2,9,11,[[495,1,1,9,10],[621,1,1,10,11]]],[22,1,1,11,12,[[706,1,1,11,12]]],[23,1,1,12,13,[[795,1,1,12,13]]]],[1913,2171,4953,6074,6614,7362,8617,11496,12858,14132,16311,18192,20246]]],["+",[3,3,[[1,2,2,0,2,[[63,1,1,0,1],[72,1,1,1,2]]],[6,1,1,2,3,[[214,1,1,2,3]]]],[1913,2171,6614]]],["break",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18192]]],["consume",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12858]]],["crushed",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20246]]],["destroy",[2,2,[[4,1,1,0,1,[[154,1,1,0,1]]],[18,1,1,1,2,[[621,1,1,1,2]]]],[4953,16311]]],["discomfited",[4,4,[[5,1,1,0,1,[[196,1,1,0,1]]],[8,1,1,1,2,[[242,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]]],[6074,7362,8617,14132]]],["vex",[1,1,[[13,1,1,0,1,[[381,1,1,0,1]]]],[11496]]]]},{"k":"H2001","v":[["*",[55,45,[[16,55,45,0,45,[[428,12,11,0,11],[429,1,1,11,12],[430,12,8,12,20],[431,10,9,20,29],[432,9,6,29,35],[433,6,5,35,40],[434,5,5,40,45]]]],[12748,12749,12751,12752,12753,12754,12755,12757,12758,12759,12762,12769,12783,12784,12787,12788,12789,12790,12791,12793,12797,12798,12799,12800,12803,12804,12805,12806,12807,12808,12813,12814,12815,12816,12817,12818,12819,12820,12822,12824,12844,12846,12847,12848,12858]]],["+",[3,3,[[16,3,3,0,3,[[430,1,1,0,1],[431,1,1,1,2],[433,1,1,2,3]]]],[12788,12804,12819]]],["Haman",[47,42,[[16,47,42,0,42,[[428,12,11,0,11],[429,1,1,11,12],[430,9,8,12,20],[431,9,8,20,28],[432,8,6,28,34],[433,5,5,34,39],[434,3,3,39,42]]]],[12748,12749,12751,12752,12753,12754,12755,12757,12758,12759,12762,12769,12783,12784,12787,12788,12789,12790,12791,12793,12797,12798,12799,12800,12803,12805,12806,12807,12808,12813,12814,12815,12816,12817,12818,12819,12820,12822,12824,12844,12846,12858]]],["Haman's",[3,3,[[16,3,3,0,3,[[432,1,1,0,1],[434,2,2,1,3]]]],[12815,12847,12848]]],["he",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12788]]],["him",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12788]]]]},{"k":"H2002","v":[["chain",[3,3,[[26,3,3,0,3,[[854,3,3,0,3]]]],[21881,21890,21903]]]]},{"k":"H2003","v":[["melting",[1,1,[[22,1,1,0,1,[[742,1,1,0,1]]]],[18887]]]]},{"k":"H2004","v":[["*",[16,14,[[0,3,3,0,3,[[18,1,1,0,1],[29,2,2,1,3]]],[1,2,2,3,5,[[74,1,1,3,4],[86,1,1,4,5]]],[2,3,3,5,8,[[99,1,1,5,6],[100,1,1,6,7],[103,1,1,7,8]]],[7,2,1,8,9,[[232,2,1,8,9]]],[8,1,1,9,10,[[266,1,1,9,10]]],[22,1,1,10,11,[[716,1,1,10,11]]],[23,4,3,11,14,[[748,1,1,11,12],[792,1,1,12,13],[795,2,1,13,14]]]],[486,856,867,2224,2620,2978,3018,3151,7140,8016,18406,19056,20089,20255]]],["+",[4,4,[[0,2,2,0,2,[[18,1,1,0,1],[29,1,1,1,2]]],[1,1,1,2,3,[[74,1,1,2,3]]],[2,1,1,3,4,[[103,1,1,3,4]]]],[486,856,2224,3151]]],["them",[4,3,[[0,1,1,0,1,[[29,1,1,0,1]]],[7,2,1,1,2,[[232,2,1,1,2]]],[8,1,1,2,3,[[266,1,1,2,3]]]],[867,7140,8016]]],["thereby",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20255]]],["therein",[3,3,[[2,1,1,0,1,[[99,1,1,0,1]]],[23,2,2,1,3,[[748,1,1,1,2],[792,1,1,2,3]]]],[2978,19056,20089]]],["these",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18406]]],["wherein",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20255]]],["withal",[2,2,[[1,1,1,0,1,[[86,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]]],[2620,3018]]]]},{"k":"H2005","v":[["*",[99,96,[[0,12,12,0,12,[[2,1,1,0,1],[3,1,1,1,2],[10,1,1,2,3],[14,1,1,3,4],[18,1,1,4,5],[26,2,2,5,7],[28,1,1,7,8],[29,1,1,8,9],[38,1,1,9,10],[43,1,1,10,11],[46,1,1,11,12]]],[1,5,5,12,17,[[53,1,1,12,13],[54,1,1,13,14],[55,2,2,14,16],[57,1,1,16,17]]],[2,3,3,17,20,[[99,2,2,17,19],[114,1,1,19,20]]],[3,4,4,20,24,[[133,1,1,20,21],[139,2,2,21,23],[147,1,1,23,24]]],[4,4,4,24,28,[[157,1,1,24,25],[162,1,1,25,26],[183,2,2,26,28]]],[8,1,1,28,29,[[260,1,1,28,29]]],[13,2,1,29,30,[[373,2,1,29,30]]],[17,32,32,30,62,[[439,1,1,30,31],[443,2,2,31,33],[444,2,2,33,35],[447,2,2,35,37],[448,2,2,37,39],[450,1,1,39,40],[454,1,1,40,41],[456,2,2,41,43],[458,1,1,43,44],[459,1,1,44,45],[460,1,1,45,46],[461,1,1,46,47],[462,1,1,47,48],[463,1,1,48,49],[466,1,1,49,50],[467,1,1,50,51],[468,4,4,51,55],[471,4,4,55,59],[475,2,2,59,61],[476,1,1,61,62]]],[18,5,5,62,67,[[528,2,2,62,64],[545,1,1,64,65],[555,1,1,65,66],[616,1,1,66,67]]],[19,2,2,67,69,[[638,1,1,67,68],[651,1,1,68,69]]],[22,26,24,69,93,[[701,1,1,69,70],[710,1,1,70,71],[711,1,1,71,72],[718,2,1,72,73],[719,3,3,73,76],[720,1,1,76,77],[722,1,1,77,78],[727,2,2,78,80],[728,5,4,80,84],[732,1,1,84,85],[733,2,2,85,87],[734,1,1,87,88],[736,2,2,88,90],[737,1,1,90,91],[742,2,2,91,93]]],[23,1,1,93,94,[[747,1,1,93,94]]],[25,1,1,94,95,[[819,1,1,94,95]]],[36,1,1,95,96,[[910,1,1,95,96]]]],[77,93,272,363,491,738,764,802,864,1157,1332,1443,1602,1637,1667,1685,1736,2995,2996,3489,4256,4425,4440,4680,5077,5200,5742,5755,7880,11337,12948,13048,13049,13062,13063,13142,13143,13154,13168,13218,13304,13371,13382,13427,13441,13466,13481,13493,13532,13623,13639,13656,13660,13662,13679,13741,13758,13762,13766,13868,13887,13897,14696,14697,14933,15133,16243,16719,17091,18090,18260,18286,18435,18462,18475,18480,18481,18544,18652,18657,18663,18664,18671,18673,18738,18744,18745,18756,18789,18790,18801,18890,18894,19003,20853,22867]]],["+",[1,1,[[2,1,1,0,1,[[99,1,1,0,1]]]],[2995]]],["Behold",[73,73,[[0,11,11,0,11,[[2,1,1,0,1],[3,1,1,1,2],[10,1,1,2,3],[14,1,1,3,4],[18,1,1,4,5],[26,2,2,5,7],[29,1,1,7,8],[38,1,1,8,9],[43,1,1,9,10],[46,1,1,10,11]]],[1,3,3,11,14,[[54,1,1,11,12],[55,2,2,12,14]]],[2,1,1,14,15,[[99,1,1,14,15]]],[3,3,3,15,18,[[133,1,1,15,16],[139,1,1,16,17],[147,1,1,17,18]]],[4,3,3,18,21,[[157,1,1,18,19],[162,1,1,19,20],[183,1,1,20,21]]],[17,25,25,21,46,[[439,1,1,21,22],[443,2,2,22,24],[444,1,1,24,25],[447,2,2,25,27],[450,1,1,27,28],[454,1,1,28,29],[456,1,1,29,30],[458,1,1,30,31],[459,1,1,31,32],[460,1,1,32,33],[462,1,1,33,34],[463,1,1,34,35],[467,1,1,35,36],[468,3,3,36,39],[471,4,4,39,43],[475,2,2,43,45],[476,1,1,45,46]]],[18,3,3,46,49,[[528,2,2,46,48],[555,1,1,48,49]]],[19,2,2,49,51,[[638,1,1,49,50],[651,1,1,50,51]]],[22,21,21,51,72,[[701,1,1,51,52],[710,1,1,52,53],[711,1,1,53,54],[718,1,1,54,55],[719,3,3,55,58],[720,1,1,58,59],[722,1,1,59,60],[727,2,2,60,62],[728,3,3,62,65],[732,1,1,65,66],[733,2,2,66,68],[734,1,1,68,69],[736,2,2,69,71],[737,1,1,71,72]]],[25,1,1,72,73,[[819,1,1,72,73]]]],[77,93,272,363,491,738,764,864,1157,1332,1443,1637,1667,1685,2996,4256,4440,4680,5077,5200,5742,12948,13048,13049,13063,13142,13143,13218,13304,13382,13427,13441,13466,13493,13532,13639,13656,13660,13662,13741,13758,13762,13766,13868,13887,13897,14696,14697,15133,16719,17091,18090,18260,18286,18435,18462,18475,18480,18481,18544,18652,18657,18663,18671,18673,18738,18744,18745,18756,18789,18790,18801,20853]]],["If",[3,3,[[13,1,1,0,1,[[373,1,1,0,1]]],[23,1,1,1,2,[[747,1,1,1,2]]],[36,1,1,2,3,[[910,1,1,2,3]]]],[11337,19003,22867]]],["Lo",[6,6,[[0,1,1,0,1,[[28,1,1,0,1]]],[17,5,5,1,6,[[444,1,1,1,2],[448,1,1,2,3],[456,1,1,3,4],[461,1,1,4,5],[468,1,1,5,6]]]],[802,13062,13154,13371,13481,13679]]],["Though",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13168]]],["behold",[9,9,[[1,1,1,0,1,[[53,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[4,1,1,2,3,[[183,1,1,2,3]]],[8,1,1,3,4,[[260,1,1,3,4]]],[17,1,1,4,5,[[466,1,1,4,5]]],[22,4,4,5,9,[[718,1,1,5,6],[728,1,1,6,7],[742,2,2,7,9]]]],[1602,3489,5755,7880,13623,18435,18664,18890,18894]]],["if",[1,1,[[13,1,1,0,1,[[373,1,1,0,1]]]],[11337]]],["lo",[5,5,[[1,1,1,0,1,[[57,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[18,2,2,2,4,[[545,1,1,2,3],[616,1,1,3,4]]],[22,1,1,4,5,[[728,1,1,4,5]]]],[1736,4425,14933,16243,18671]]]]},{"k":"H2006","v":[["*",[16,12,[[14,7,4,0,4,[[406,2,2,0,2],[407,2,1,2,3],[409,3,1,3,4]]],[26,9,8,4,12,[[851,3,3,4,7],[852,4,3,7,10],[853,1,1,10,11],[854,1,1,11,12]]]],[12123,12126,12151,12199,21763,21764,21767,21822,21824,21825,21864,21890]]],["If",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21824]]],["if",[11,10,[[14,3,3,0,3,[[406,2,2,0,2],[407,1,1,2,3]]],[26,8,7,3,10,[[851,3,3,3,6],[852,3,2,6,8],[853,1,1,8,9],[854,1,1,9,10]]]],[12123,12126,12151,21763,21764,21767,21822,21825,21864,21890]]],["or",[2,1,[[14,2,1,0,1,[[409,2,1,0,1]]]],[12199]]],["whether",[2,2,[[14,2,2,0,2,[[407,1,1,0,1],[409,1,1,1,2]]]],[12151,12199]]]]},{"k":"H2007","v":[["*",[36,34,[[0,3,3,0,3,[[5,1,1,0,1],[32,1,1,1,2],[40,1,1,2,3]]],[1,2,2,3,5,[[50,1,1,3,4],[58,1,1,4,5]]],[2,4,4,5,9,[[93,1,1,5,6],[95,1,1,6,7],[107,2,2,7,9]]],[3,2,2,9,11,[[129,1,1,9,10],[147,1,1,10,11]]],[8,2,2,11,13,[[252,1,1,11,12],[262,1,1,12,13]]],[9,2,1,13,14,[[278,2,1,13,14]]],[17,1,1,14,15,[[458,1,1,14,15]]],[18,1,1,15,16,[[511,1,1,15,16]]],[19,2,2,16,18,[[633,1,1,16,17],[657,1,1,17,18]]],[22,3,3,18,21,[[712,1,1,18,19],[719,1,1,19,20],[729,1,1,20,21]]],[23,3,3,21,24,[[749,1,1,21,22],[778,1,1,22,23],[782,1,1,23,24]]],[25,10,9,24,33,[[802,3,2,24,26],[824,1,1,26,27],[831,1,1,27,28],[843,5,5,28,33]]],[37,1,1,33,34,[[915,1,1,33,34]]]],[139,966,1214,1551,1774,2797,2852,3261,3268,4094,4680,7646,7938,8294,13433,14408,16556,17266,18319,18473,18692,19064,19808,19917,20469,20487,21052,21221,21557,21558,21561,21565,21566,22945]]],["+",[7,7,[[2,1,1,0,1,[[93,1,1,0,1]]],[18,1,1,1,2,[[511,1,1,1,2]]],[19,1,1,2,3,[[657,1,1,2,3]]],[22,1,1,3,4,[[712,1,1,3,4]]],[23,1,1,4,5,[[749,1,1,4,5]]],[25,2,2,5,7,[[802,1,1,5,6],[843,1,1,6,7]]]],[2797,14408,17266,18319,19064,20487,21557]]],["These",[2,2,[[19,1,1,0,1,[[633,1,1,0,1]]],[22,1,1,1,2,[[729,1,1,1,2]]]],[16556,18692]]],["in",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4094]]],["side",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20487]]],["such",[4,3,[[0,1,1,0,1,[[40,1,1,0,1]]],[9,2,1,1,2,[[278,2,1,1,2]]],[17,1,1,2,3,[[458,1,1,2,3]]]],[1214,8294,13433]]],["theirs",[1,1,[[2,1,1,0,1,[[107,1,1,0,1]]]],[3261]]],["them",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21561]]],["therein",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2852]]],["these",[3,3,[[3,1,1,0,1,[[147,1,1,0,1]]],[23,1,1,1,2,[[778,1,1,1,2]]],[25,1,1,2,3,[[831,1,1,2,3]]]],[4680,19808,21221]]],["they",[12,12,[[0,2,2,0,2,[[5,1,1,0,1],[32,1,1,1,2]]],[1,2,2,2,4,[[50,1,1,2,3],[58,1,1,3,4]]],[2,1,1,4,5,[[107,1,1,4,5]]],[22,1,1,5,6,[[719,1,1,5,6]]],[25,5,5,6,11,[[802,1,1,6,7],[824,1,1,7,8],[843,3,3,8,11]]],[37,1,1,11,12,[[915,1,1,11,12]]]],[139,966,1551,1774,3268,18473,20469,21052,21558,21565,21566,22945]]],["those",[3,3,[[8,2,2,0,2,[[252,1,1,0,1],[262,1,1,1,2]]],[23,1,1,2,3,[[782,1,1,2,3]]]],[7646,7938,19917]]]]},{"k":"H2008","v":[["*",[55,46,[[0,8,7,0,7,[[14,2,1,0,1],[20,1,1,1,2],[41,1,1,2,3],[43,1,1,3,4],[44,3,3,4,7]]],[3,1,1,7,8,[[130,1,1,7,8]]],[5,5,4,8,12,[[188,1,1,8,9],[189,1,1,9,10],[194,2,1,10,11],[204,1,1,11,12]]],[6,2,2,12,14,[[226,2,2,12,14]]],[8,1,1,14,15,[[255,1,1,14,15]]],[9,6,5,15,20,[[267,1,1,15,16],[270,1,1,16,17],[271,2,1,17,18],[280,1,1,18,19],[286,1,1,19,20]]],[10,2,1,20,21,[[310,2,1,20,21]]],[11,7,4,21,25,[[314,4,2,21,23],[316,2,1,23,24],[320,1,1,24,25]]],[12,3,3,25,28,[[346,1,1,25,26],[348,1,1,26,27],[349,1,1,27,28]]],[13,1,1,28,29,[[394,1,1,28,29]]],[18,1,1,29,30,[[548,1,1,29,30]]],[19,3,3,30,33,[[636,2,2,30,32],[652,1,1,32,33]]],[22,1,1,33,34,[[735,1,1,33,34]]],[23,11,10,34,44,[[771,1,1,34,35],[772,6,5,35,40],[775,1,1,40,41],[792,1,1,41,42],[794,1,1,42,43],[795,1,1,43,44]]],[25,1,1,44,45,[[841,1,1,44,45]]],[26,2,1,45,46,[[861,2,1,45,46]]]],[376,536,1267,1352,1363,1366,1371,4127,5871,5902,6022,6299,6951,6962,7751,8032,8126,8138,8388,8570,9448,9559,9565,9638,9734,10633,10678,10749,11777,14993,16642,16654,17120,18768,19618,19621,19622,19624,19625,19633,19699,20127,20171,20276,21481,22086]]],["+",[12,10,[[0,3,2,0,2,[[14,2,1,0,1],[43,1,1,1,2]]],[6,1,1,2,3,[[226,1,1,2,3]]],[8,1,1,3,4,[[255,1,1,3,4]]],[9,1,1,4,5,[[286,1,1,4,5]]],[11,3,2,5,7,[[316,2,1,5,6],[320,1,1,6,7]]],[12,2,2,7,9,[[346,1,1,7,8],[349,1,1,8,9]]],[18,1,1,9,10,[[548,1,1,9,10]]]],[376,1352,6962,7751,8570,9638,9734,10633,10749,14993]]],["Thus",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20127]]],["far",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20276]]],["here",[2,2,[[0,1,1,0,1,[[20,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]]],[536,9448]]],["hither",[21,20,[[0,4,4,0,4,[[41,1,1,0,1],[44,3,3,1,4]]],[5,3,3,4,7,[[188,1,1,4,5],[189,1,1,5,6],[204,1,1,6,7]]],[6,1,1,7,8,[[226,1,1,7,8]]],[9,4,3,8,11,[[267,1,1,8,9],[271,2,1,9,10],[280,1,1,10,11]]],[11,2,2,11,13,[[314,2,2,11,13]]],[12,1,1,13,14,[[348,1,1,13,14]]],[13,1,1,14,15,[[394,1,1,14,15]]],[19,3,3,15,18,[[636,2,2,15,17],[652,1,1,17,18]]],[22,1,1,18,19,[[735,1,1,18,19]]],[25,1,1,19,20,[[841,1,1,19,20]]]],[1267,1363,1366,1371,5871,5902,6299,6951,8032,8138,8388,9559,9565,10678,11777,16642,16654,17120,18768,21481]]],["now",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4127]]],["side",[2,1,[[26,2,1,0,1,[[861,2,1,0,1]]]],[22086]]],["there",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9448]]],["this",[7,6,[[23,7,6,0,6,[[771,1,1,0,1],[772,6,5,1,6]]]],[19618,19621,19622,19624,19625,19633]]],["thither",[4,4,[[9,1,1,0,1,[[270,1,1,0,1]]],[11,2,2,1,3,[[314,2,2,1,3]]],[23,1,1,3,4,[[775,1,1,3,4]]]],[8126,9559,9565,19699]]],["thitherward",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20171]]],["way",[2,1,[[5,2,1,0,1,[[194,2,1,0,1]]]],[6022]]]]},{"k":"H2009","v":[["*",[1060,1004,[[0,125,117,0,117,[[0,2,2,0,2],[5,3,3,2,5],[7,2,2,5,7],[8,1,1,7,8],[11,2,2,8,10],[14,4,4,10,14],[15,4,4,14,18],[16,2,2,18,20],[17,5,5,20,25],[18,6,6,25,31],[19,4,3,31,34],[21,6,5,34,39],[23,7,7,39,46],[24,2,2,46,48],[25,2,2,48,50],[26,7,7,50,57],[27,4,3,57,60],[28,4,3,60,63],[29,1,1,63,64],[30,5,4,64,68],[31,2,2,68,70],[32,1,1,70,71],[33,1,1,71,72],[36,10,7,72,79],[37,5,5,79,84],[39,3,3,84,87],[40,12,12,87,99],[41,6,6,99,105],[42,1,1,105,106],[43,1,1,106,107],[44,1,1,107,108],[45,1,1,108,109],[46,1,1,109,110],[47,5,5,110,115],[49,2,2,115,117]]],[1,41,41,117,158,[[50,1,1,117,118],[51,2,2,118,120],[52,4,4,120,124],[53,4,4,124,128],[54,1,1,128,129],[56,3,3,129,132],[57,4,4,132,136],[58,3,3,136,139],[59,1,1,139,140],[63,2,2,140,142],[65,3,3,142,145],[66,1,1,145,146],[68,1,1,146,147],[72,1,1,147,148],[73,2,2,148,150],[80,1,1,150,151],[81,2,2,151,153],[82,1,1,153,154],[83,3,3,154,157],[88,1,1,157,158]]],[2,26,26,158,184,[[99,1,1,158,159],[102,20,20,159,179],[103,5,5,179,184]]],[3,28,26,184,210,[[119,1,1,184,185],[128,2,1,185,186],[130,1,1,186,187],[132,2,2,187,189],[133,1,1,189,190],[134,3,3,190,193],[136,1,1,193,194],[138,5,4,194,198],[139,4,4,198,202],[140,3,3,202,205],[141,2,2,205,207],[148,3,3,207,210]]],[4,10,10,210,220,[[153,1,1,210,211],[155,1,1,211,212],[161,2,2,212,214],[165,1,1,214,215],[169,1,1,215,216],[171,1,1,216,217],[174,1,1,217,218],[178,1,1,218,219],[183,1,1,219,220]]],[5,15,14,220,234,[[188,2,2,220,222],[189,1,1,222,223],[191,1,1,223,224],[193,2,2,224,226],[194,1,1,226,227],[195,3,3,227,230],[200,2,1,230,231],[208,1,1,231,232],[209,1,1,232,233],[210,1,1,233,234]]],[6,44,38,234,272,[[211,1,1,234,235],[213,3,2,235,237],[214,2,1,237,238],[216,3,3,238,241],[217,4,2,241,243],[218,1,1,243,244],[219,6,5,244,249],[221,1,1,249,250],[223,4,4,250,254],[224,3,3,254,257],[226,1,1,257,258],[227,1,1,258,259],[228,2,2,259,261],[229,6,5,261,266],[230,2,2,266,268],[231,4,4,268,272]]],[7,5,5,272,277,[[232,1,1,272,273],[233,1,1,273,274],[234,2,2,274,276],[235,1,1,276,277]]],[8,84,80,277,357,[[237,1,1,277,278],[238,6,6,278,284],[239,1,1,284,285],[240,2,2,285,287],[242,1,1,287,288],[243,1,1,288,289],[244,7,7,289,296],[245,5,5,296,301],[246,1,1,301,302],[247,6,4,302,306],[248,1,1,306,307],[249,9,9,307,316],[250,2,2,316,318],[251,3,3,318,321],[252,1,1,321,322],[253,2,2,322,324],[254,3,3,324,327],[255,7,6,327,333],[256,2,2,333,335],[257,1,1,335,336],[258,2,2,336,338],[259,6,5,338,343],[260,4,4,343,347],[261,4,4,347,351],[263,3,3,351,354],[265,3,3,354,357]]],[9,46,45,357,402,[[267,5,4,357,361],[269,3,3,361,364],[270,2,2,364,366],[271,1,1,366,367],[275,2,2,367,369],[278,2,2,369,371],[279,4,4,371,375],[280,3,3,375,378],[281,5,5,378,383],[282,6,6,383,389],[283,1,1,389,390],[284,5,5,390,395],[285,5,5,395,400],[286,1,1,400,401],[290,1,1,401,402]]],[10,55,51,402,453,[[291,8,7,402,409],[292,3,3,409,412],[293,5,3,412,415],[295,1,1,415,416],[298,1,1,416,417],[300,1,1,417,418],[301,2,2,418,420],[302,1,1,420,421],[303,4,4,421,425],[304,4,4,425,429],[305,1,1,429,430],[306,1,1,430,431],[307,3,3,431,434],[308,5,5,434,439],[309,5,5,439,444],[310,5,4,444,448],[311,2,2,448,450],[312,3,3,450,453]]],[11,55,51,453,504,[[313,2,2,453,455],[314,3,3,455,458],[315,1,1,458,459],[316,4,4,459,463],[317,5,5,463,468],[318,9,8,468,476],[319,10,7,476,483],[320,1,1,483,484],[321,1,1,484,485],[322,2,2,485,487],[323,1,1,487,488],[325,1,1,488,489],[327,4,4,489,493],[329,1,1,493,494],[330,1,1,494,495],[331,4,4,495,499],[332,2,2,499,501],[333,1,1,501,502],[334,2,2,502,504]]],[12,8,8,504,512,[[346,1,1,504,505],[348,2,2,505,507],[354,1,1,507,508],[359,2,2,508,510],[365,1,1,510,511],[366,1,1,511,512]]],[13,40,39,512,551,[[368,3,3,512,515],[372,1,1,515,516],[375,1,1,516,517],[379,2,2,517,519],[382,3,2,519,521],[384,3,3,521,524],[385,1,1,524,525],[386,6,6,525,531],[387,1,1,531,532],[389,2,2,532,534],[390,1,1,534,535],[391,2,2,535,537],[392,1,1,537,538],[393,1,1,538,539],[394,2,2,539,541],[395,2,2,541,543],[398,1,1,543,544],[399,2,2,544,546],[400,2,2,546,548],[401,2,2,548,550],[402,1,1,550,551]]],[14,1,1,551,552,[[411,1,1,551,552]]],[15,4,3,552,555,[[417,1,1,552,553],[418,1,1,553,554],[421,2,1,554,555]]],[16,3,3,555,558,[[431,1,1,555,556],[432,1,1,556,557],[433,1,1,557,558]]],[17,17,17,558,575,[[436,2,2,558,560],[437,1,1,560,561],[438,1,1,561,562],[439,1,1,562,563],[440,2,2,563,565],[444,1,1,565,566],[448,1,1,566,567],[451,1,1,567,568],[467,2,2,568,570],[468,2,2,570,572],[473,1,1,572,573],[475,2,2,573,575]]],[18,29,28,575,603,[[484,1,1,575,576],[488,1,1,576,577],[510,1,1,577,578],[514,1,1,578,579],[516,1,1,579,580],[517,2,2,580,582],[525,1,1,582,583],[529,1,1,583,584],[531,1,1,584,585],[532,1,1,585,586],[536,2,2,586,588],[550,3,3,588,591],[560,1,1,591,592],[564,1,1,592,593],[569,2,1,593,594],[596,1,1,594,595],[598,1,1,595,596],[600,1,1,596,597],[604,1,1,597,598],[605,1,1,598,599],[609,1,1,599,600],[610,1,1,600,601],[611,1,1,601,602],[616,1,1,602,603]]],[19,3,3,603,606,[[628,1,1,603,604],[634,1,1,604,605],[651,1,1,605,606]]],[20,6,6,606,612,[[659,2,2,606,608],[660,2,2,608,610],[662,1,1,610,611],[663,1,1,611,612]]],[21,9,7,612,619,[[671,3,2,612,614],[672,3,3,614,617],[673,1,1,617,618],[674,2,1,618,619]]],[22,78,67,619,686,[[681,1,1,619,620],[683,4,3,620,623],[684,2,2,623,625],[685,1,1,625,626],[686,3,3,626,629],[688,1,1,629,630],[690,1,1,630,631],[691,2,2,631,633],[695,2,2,633,635],[697,1,1,635,636],[698,1,1,636,637],[699,1,1,637,638],[700,2,2,638,640],[702,1,1,640,641],[703,1,1,641,642],[704,1,1,642,643],[706,2,2,643,645],[707,4,2,645,647],[708,1,1,647,648],[712,1,1,648,649],[713,1,1,649,650],[714,1,1,650,651],[715,3,3,651,654],[716,3,3,654,657],[717,1,1,657,658],[718,3,2,658,660],[719,3,2,660,662],[720,1,1,662,663],[721,1,1,663,664],[725,1,1,664,665],[726,2,2,665,667],[727,3,2,667,669],[729,1,1,669,670],[730,2,2,670,672],[732,2,2,672,674],[736,1,1,674,675],[737,1,1,675,676],[738,1,1,676,677],[740,3,1,677,678],[743,9,6,678,684],[744,2,2,684,686]]],[23,139,136,686,822,[[745,4,4,686,690],[746,1,1,690,691],[747,2,2,691,693],[748,6,6,693,699],[749,2,2,699,701],[750,5,4,701,705],[751,4,4,705,709],[752,5,5,709,714],[753,3,3,714,717],[754,2,2,717,719],[755,2,2,719,721],[756,1,1,721,722],[757,2,2,722,724],[758,4,3,724,727],[760,5,5,727,732],[761,1,1,732,733],[762,3,3,733,736],[763,3,3,736,739],[764,1,1,739,740],[765,3,3,740,743],[767,9,9,743,752],[768,1,1,752,753],[769,3,3,753,756],[770,1,1,756,757],[771,1,1,757,758],[772,1,1,758,759],[773,3,3,759,762],[774,4,4,762,766],[775,4,4,766,770],[776,8,7,770,777],[777,2,2,777,779],[778,3,3,779,782],[779,1,1,782,783],[780,1,1,783,784],[781,1,1,784,785],[782,2,2,785,787],[783,1,1,787,788],[784,2,2,788,790],[786,1,1,790,791],[787,1,1,791,792],[788,5,5,792,797],[789,2,2,797,799],[790,2,2,799,801],[791,1,1,801,802],[792,2,2,802,804],[793,7,7,804,811],[794,6,6,811,817],[795,5,5,817,822]]],[25,115,111,822,933,[[802,2,2,822,824],[803,2,1,824,825],[804,3,3,825,828],[805,3,3,828,831],[806,1,1,831,832],[807,1,1,832,833],[808,4,3,833,836],[809,9,9,836,845],[810,2,2,845,847],[811,2,2,847,849],[812,1,1,849,850],[813,1,1,850,851],[814,4,4,851,855],[815,2,1,855,856],[816,2,2,856,858],[817,5,5,858,863],[818,4,4,863,867],[819,2,2,867,869],[821,1,1,869,870],[822,2,2,870,872],[823,3,3,872,875],[824,4,4,875,879],[825,2,2,879,881],[826,5,5,881,886],[827,2,2,886,888],[829,3,3,888,891],[830,4,4,891,895],[831,3,3,895,898],[832,1,1,898,899],[834,2,2,899,901],[835,4,4,901,905],[836,1,1,905,906],[837,2,2,906,908],[838,9,8,908,916],[839,1,1,916,917],[840,2,2,917,919],[841,4,4,919,923],[843,1,1,923,924],[844,3,3,924,927],[845,1,1,927,928],[847,2,2,928,930],[848,3,3,930,933]]],[26,11,11,933,944,[[857,4,4,933,937],[859,5,5,937,942],[860,1,1,942,943],[861,1,1,943,944]]],[27,3,3,944,947,[[863,2,2,944,946],[870,1,1,946,947]]],[28,3,3,947,950,[[877,1,1,947,948],[878,2,2,948,950]]],[29,15,14,950,964,[[880,1,1,950,951],[882,2,2,951,953],[884,2,2,953,955],[885,5,4,955,959],[886,2,2,959,961],[887,3,3,961,964]]],[30,1,1,964,965,[[888,1,1,964,965]]],[32,2,2,965,967,[[893,1,1,965,966],[894,1,1,966,967]]],[33,4,4,967,971,[[900,1,1,967,968],[901,1,1,968,969],[902,2,2,969,971]]],[34,4,4,971,975,[[903,1,1,971,972],[904,3,3,972,975]]],[35,1,1,975,976,[[908,1,1,975,976]]],[36,1,1,976,977,[[909,1,1,976,977]]],[37,23,22,977,999,[[911,3,3,977,980],[912,4,4,980,984],[913,3,2,984,986],[914,1,1,986,987],[915,3,3,987,990],[916,2,2,990,992],[918,1,1,992,993],[919,2,2,993,995],[921,2,2,995,997],[922,1,1,997,998],[924,1,1,998,999]]],[38,6,5,999,1004,[[925,1,1,999,1000],[926,1,1,1000,1001],[927,2,1,1001,1002],[928,2,2,1002,1004]]]],[28,30,149,150,154,194,196,214,309,317,363,364,372,377,383,387,392,395,401,417,426,433,434,451,455,459,465,476,477,478,485,498,510,511,548,554,558,560,567,604,606,621,634,636,642,654,682,690,700,701,728,729,733,745,763,766,769,785,786,788,797,801,820,833,875,883,884,924,946,948,961,1001,1090,1092,1096,1098,1102,1108,1112,1132,1142,1143,1146,1148,1178,1181,1188,1196,1197,1198,1200,1201,1202,1212,1213,1214,1217,1218,1224,1254,1265,1274,1279,1280,1287,1311,1340,1370,1388,1421,1452,1453,1455,1462,1472,1511,1524,1541,1560,1567,1581,1583,1588,1592,1607,1608,1615,1624,1648,1700,1701,1702,1712,1730,1731,1739,1745,1749,1760,1781,1899,1906,1951,1957,1961,1989,2035,2164,2185,2191,2426,2447,2472,2494,2506,2507,2526,2707,2993,3057,3058,3060,3062,3065,3069,3072,3073,3077,3078,3082,3083,3084,3086,3088,3091,3095,3105,3107,3108,3114,3148,3150,3155,3159,3704,4069,4148,4236,4241,4252,4263,4265,4278,4327,4380,4386,4407,4413,4422,4427,4433,4436,4456,4457,4460,4477,4483,4719,4732,4741,4902,4986,5170,5173,5286,5368,5424,5487,5576,5744,5871,5887,5904,5947,5997,5998,6022,6049,6050,6062,6197,6437,6474,6503,6511,6592,6593,6621,6669,6682,6691,6707,6711,6734,6785,6787,6790,6791,6797,6863,6887,6889,6891,6894,6914,6917,6925,6959,6982,7002,7005,7033,7040,7046,7048,7051,7061,7094,7110,7111,7121,7123,7142,7153,7174,7180,7191,7271,7280,7281,7282,7284,7287,7292,7310,7322,7323,7364,7374,7397,7398,7399,7403,7405,7408,7415,7420,7426,7428,7429,7440,7450,7461,7462,7463,7473,7495,7515,7516,7519,7524,7525,7528,7534,7541,7551,7572,7582,7606,7610,7613,7641,7693,7698,7722,7725,7728,7732,7735,7742,7751,7752,7753,7781,7786,7799,7811,7813,7840,7843,7848,7849,7859,7875,7881,7897,7902,7912,7926,7927,7929,7949,7951,7963,7981,7994,8004,8024,8028,8029,8040,8093,8103,8105,8128,8130,8133,8231,8233,8297,8304,8341,8351,8352,8353,8363,8377,8388,8404,8413,8415,8421,8425,8427,8429,8430,8431,8434,8437,8458,8488,8489,8502,8504,8509,8512,8519,8531,8548,8552,8575,8709,8731,8735,8739,8740,8742,8759,8768,8778,8799,8809,8828,8831,8837,8883,9012,9086,9130,9139,9179,9185,9186,9187,9209,9220,9223,9228,9237,9268,9286,9326,9327,9329,9348,9349,9352,9355,9385,9392,9393,9396,9398,9400,9421,9439,9444,9447,9469,9472,9493,9503,9505,9542,9547,9562,9567,9570,9596,9612,9616,9628,9635,9653,9658,9662,9667,9669,9675,9687,9689,9691,9694,9699,9704,9707,9709,9712,9713,9717,9720,9722,9726,9732,9761,9797,9802,9843,9892,9936,9940,9951,9956,10009,10045,10068,10070,10072,10096,10103,10115,10131,10161,10165,10616,10674,10698,10864,10973,10978,11164,11193,11215,11219,11221,11300,11370,11465,11467,11512,11520,11554,11564,11566,11587,11589,11597,11598,11603,11611,11621,11638,11659,11669,11704,11723,11730,11752,11762,11773,11790,11800,11810,11907,11926,11927,11957,11961,11991,11993,12001,12252,12387,12413,12547,12798,12816,12824,12881,12888,12897,12911,12933,12968,12978,13070,13171,13257,13640,13647,13652,13657,13828,13879,13880,14009,14061,14384,14486,14517,14532,14534,14638,14717,14729,14739,14793,14797,15032,15035,15047,15243,15305,15420,15938,16085,16100,16124,16130,16157,16170,16173,16247,16423,16585,17110,17329,17331,17334,17344,17382,17415,17552,17553,17562,17563,17565,17578,17583,17708,17746,17765,17769,17776,17777,17796,17814,17825,17829,17883,17902,17915,17923,17984,17997,18005,18035,18044,18065,18069,18096,18127,18151,18166,18180,18201,18207,18244,18308,18324,18336,18359,18363,18388,18395,18398,18407,18418,18429,18430,18466,18478,18489,18524,18613,18621,18624,18648,18658,18695,18702,18709,18734,18739,18795,18809,18823,18865,18898,18903,18910,18911,18914,18915,18934,18937,18952,18955,18961,18964,19000,19007,19024,19040,19043,19050,19051,19052,19053,19072,19073,19099,19108,19110,19111,19127,19130,19139,19151,19161,19162,19168,19170,19172,19182,19190,19200,19219,19223,19237,19248,19263,19273,19279,19306,19311,19312,19345,19348,19350,19352,19357,19372,19387,19390,19395,19410,19413,19422,19426,19444,19448,19453,19486,19489,19491,19499,19503,19514,19515,19516,19523,19525,19543,19563,19566,19586,19612,19634,19652,19656,19667,19670,19677,19685,19690,19699,19718,19722,19729,19734,19738,19748,19755,19758,19759,19768,19781,19789,19803,19818,19823,19840,19854,19881,19900,19917,19939,19945,19951,19979,20007,20012,20021,20036,20037,20040,20044,20045,20070,20072,20075,20092,20120,20129,20132,20139,20142,20146,20149,20162,20175,20178,20184,20197,20207,20210,20213,20237,20248,20259,20264,20468,20479,20501,20510,20525,20527,20537,20543,20545,20554,20566,20582,20583,20587,20606,20608,20609,20611,20612,20614,20618,20620,20621,20624,20633,20634,20642,20656,20707,20716,20718,20720,20728,20753,20758,20759,20770,20789,20799,20806,20811,20832,20835,20837,20843,20863,20867,20942,20947,20951,20982,20989,20995,21029,21035,21046,21047,21072,21077,21087,21090,21091,21092,21099,21103,21107,21160,21164,21179,21186,21191,21193,21202,21213,21225,21226,21233,21312,21313,21323,21324,21330,21333,21347,21365,21368,21399,21402,21404,21405,21408,21409,21416,21418,21428,21449,21456,21480,21482,21494,21501,21560,21574,21577,21584,21603,21674,21676,21680,21681,21686,21964,21966,21976,21980,22020,22025,22028,22031,22035,22038,22086,22111,22119,22214,22330,22344,22350,22392,22412,22423,22461,22464,22465,22468,22471,22472,22482,22492,22503,22504,22508,22512,22582,22598,22699,22712,22717,22725,22737,22752,22761,22767,22839,22849,22886,22889,22896,22900,22902,22908,22909,22920,22921,22924,22937,22943,22945,22948,22959,22983,23003,23008,23034,23044,23047,23069,23102,23106,23121,23139,23143]]],["+",[1,1,[[8,1,1,0,1,[[242,1,1,0,1]]]],[7364]]],["Behold",[423,420,[[0,42,42,0,42,[[0,1,1,0,1],[11,1,1,1,2],[15,3,3,2,5],[16,1,1,5,6],[17,3,3,6,9],[18,4,4,9,13],[19,3,3,13,16],[21,3,3,16,19],[23,3,3,19,22],[24,1,1,22,23],[25,1,1,23,24],[26,5,5,24,29],[29,1,1,29,30],[30,1,1,30,31],[31,1,1,31,32],[36,2,2,32,34],[37,1,1,34,35],[40,1,1,35,36],[41,1,1,36,37],[47,4,4,37,41],[49,1,1,41,42]]],[1,11,11,42,53,[[50,1,1,42,43],[52,1,1,43,44],[57,1,1,44,45],[58,2,2,45,47],[65,1,1,47,48],[66,1,1,48,49],[72,1,1,49,50],[73,1,1,50,51],[82,1,1,51,52],[83,1,1,52,53]]],[3,5,5,53,58,[[134,1,1,53,54],[138,2,2,54,56],[139,1,1,56,57],[141,1,1,57,58]]],[4,1,1,58,59,[[183,1,1,58,59]]],[5,5,5,59,64,[[188,2,2,59,61],[189,1,1,61,62],[208,1,1,62,63],[210,1,1,63,64]]],[6,14,14,64,78,[[216,1,1,64,65],[217,1,1,65,66],[218,1,1,66,67],[219,2,2,67,69],[223,3,3,69,72],[224,1,1,72,73],[226,1,1,73,74],[229,2,2,74,76],[230,1,1,76,77],[231,1,1,77,78]]],[7,2,2,78,80,[[232,1,1,78,79],[234,1,1,79,80]]],[8,37,36,80,116,[[237,1,1,80,81],[238,1,1,81,82],[243,1,1,82,83],[244,4,4,83,87],[245,1,1,87,88],[247,2,2,88,90],[249,3,3,90,93],[250,1,1,93,94],[251,2,2,94,96],[253,2,2,96,98],[254,2,2,98,100],[255,3,3,100,103],[258,2,2,103,105],[259,5,4,105,109],[260,2,2,109,111],[261,1,1,111,112],[263,3,3,112,115],[265,1,1,115,116]]],[9,22,22,116,138,[[270,2,2,116,118],[271,1,1,118,119],[275,2,2,119,121],[278,2,2,121,123],[279,2,2,123,125],[280,2,2,125,127],[281,2,2,127,129],[282,3,3,129,132],[283,1,1,132,133],[284,2,2,133,135],[285,2,2,135,137],[286,1,1,137,138]]],[10,18,18,138,156,[[291,3,3,138,141],[292,1,1,141,142],[293,1,1,142,143],[301,1,1,143,144],[303,2,2,144,146],[304,1,1,146,147],[306,1,1,147,148],[308,4,4,148,152],[310,1,1,152,153],[311,1,1,153,154],[312,2,2,154,156]]],[11,24,23,156,179,[[313,1,1,156,157],[314,2,2,157,159],[316,3,3,159,162],[317,4,4,162,166],[318,3,3,166,169],[319,3,2,169,171],[322,1,1,171,172],[331,3,3,172,175],[332,1,1,175,176],[333,1,1,176,177],[334,2,2,177,179]]],[12,3,3,179,182,[[348,2,2,179,181],[359,1,1,181,182]]],[13,9,9,182,191,[[368,1,1,182,183],[384,2,2,183,185],[386,1,1,185,186],[387,1,1,186,187],[389,1,1,187,188],[394,1,1,188,189],[400,2,2,189,191]]],[15,1,1,191,192,[[421,1,1,191,192]]],[16,3,3,192,195,[[431,1,1,192,193],[432,1,1,193,194],[433,1,1,194,195]]],[17,9,9,195,204,[[436,1,1,195,196],[437,1,1,196,197],[439,1,1,197,198],[440,1,1,198,199],[448,1,1,199,200],[467,1,1,200,201],[468,2,2,201,203],[475,1,1,203,204]]],[18,12,12,204,216,[[484,1,1,204,205],[510,1,1,205,206],[516,1,1,206,207],[531,1,1,207,208],[536,1,1,208,209],[550,1,1,209,210],[596,1,1,210,211],[598,1,1,211,212],[600,1,1,212,213],[605,1,1,213,214],[610,1,1,214,215],[611,1,1,215,216]]],[20,1,1,216,217,[[663,1,1,216,217]]],[21,4,4,217,221,[[671,2,2,217,219],[673,1,1,219,220],[674,1,1,220,221]]],[22,40,39,221,260,[[685,1,1,221,222],[686,1,1,222,223],[688,1,1,223,224],[690,1,1,224,225],[691,2,2,225,227],[695,1,1,227,228],[697,1,1,228,229],[698,1,1,229,230],[700,1,1,230,231],[702,1,1,231,232],[706,2,2,232,234],[708,1,1,234,235],[715,2,2,235,237],[716,2,2,237,239],[717,1,1,239,240],[718,2,2,240,242],[719,2,2,242,244],[720,1,1,244,245],[721,1,1,245,246],[725,1,1,246,247],[726,2,2,247,249],[727,2,2,249,251],[729,1,1,251,252],[730,1,1,252,253],[732,1,1,253,254],[740,2,1,254,255],[743,4,4,255,259],[744,1,1,259,260]]],[23,84,84,260,344,[[745,1,1,260,261],[746,1,1,261,262],[747,2,2,262,264],[748,1,1,264,265],[750,2,2,265,267],[751,3,3,267,270],[752,1,1,270,271],[753,3,3,271,274],[754,2,2,274,276],[755,2,2,276,278],[756,1,1,278,279],[757,1,1,279,280],[760,2,2,280,282],[761,1,1,282,283],[762,2,2,283,285],[763,2,2,285,287],[764,1,1,287,288],[765,3,3,288,291],[767,5,5,291,296],[769,2,2,296,298],[771,1,1,298,299],[772,1,1,299,300],[773,3,3,300,303],[774,2,2,303,305],[775,4,4,305,309],[776,6,6,309,315],[777,2,2,315,317],[778,2,2,317,319],[779,1,1,319,320],[781,1,1,320,321],[782,1,1,321,322],[783,1,1,322,323],[787,1,1,323,324],[788,4,4,324,328],[789,1,1,328,329],[790,1,1,329,330],[791,1,1,330,331],[792,1,1,331,332],[793,5,5,332,337],[794,4,4,337,341],[795,3,3,341,344]]],[25,48,48,344,392,[[804,1,1,344,345],[806,1,1,345,346],[807,1,1,346,347],[808,1,1,347,348],[814,1,1,348,349],[816,2,2,349,351],[817,4,4,351,355],[818,1,1,355,356],[821,1,1,356,357],[822,1,1,357,358],[823,2,2,358,360],[824,2,2,360,362],[825,1,1,362,363],[826,4,4,363,367],[827,2,2,367,369],[829,3,3,369,372],[830,4,4,372,376],[831,1,1,376,377],[832,1,1,377,378],[835,4,4,378,382],[836,1,1,382,383],[837,1,1,383,384],[838,4,4,384,388],[839,1,1,388,389],[840,2,2,389,391],[844,1,1,391,392]]],[26,2,2,392,394,[[857,1,1,392,393],[860,1,1,393,394]]],[28,2,2,394,396,[[877,1,1,394,395],[878,1,1,395,396]]],[29,5,5,396,401,[[880,1,1,396,397],[885,1,1,397,398],[886,1,1,398,399],[887,2,2,399,401]]],[30,1,1,401,402,[[888,1,1,401,402]]],[32,1,1,402,403,[[894,1,1,402,403]]],[33,4,4,403,407,[[900,1,1,403,404],[901,1,1,404,405],[902,2,2,405,407]]],[34,3,3,407,410,[[904,3,3,407,410]]],[35,1,1,410,411,[[908,1,1,410,411]]],[37,5,5,411,416,[[916,1,1,411,412],[918,1,1,412,413],[919,1,1,413,414],[922,1,1,414,415],[924,1,1,415,416]]],[38,4,4,416,420,[[925,1,1,416,417],[926,1,1,417,418],[927,1,1,418,419],[928,1,1,419,420]]]],[28,309,383,387,392,417,433,451,455,459,465,476,477,498,510,511,548,554,567,604,634,642,690,701,728,729,733,766,769,833,924,948,1092,1102,1132,1224,1254,1452,1453,1455,1472,1524,1541,1592,1739,1745,1760,1951,1989,2164,2185,2494,2506,4265,4380,4386,4436,4483,5744,5871,5887,5904,6437,6503,6691,6707,6734,6785,6790,6887,6891,6894,6925,6959,7033,7048,7061,7121,7142,7174,7271,7287,7374,7397,7399,7408,7415,7440,7461,7463,7516,7519,7541,7582,7610,7613,7693,7698,7725,7728,7735,7751,7752,7811,7813,7840,7843,7848,7849,7875,7902,7927,7949,7951,7963,8004,8128,8130,8133,8231,8233,8297,8304,8341,8352,8377,8388,8404,8425,8429,8430,8437,8458,8488,8504,8512,8519,8575,8731,8740,8768,8809,8828,9139,9186,9187,9223,9286,9349,9352,9355,9385,9439,9472,9493,9505,9547,9567,9570,9612,9616,9628,9658,9662,9667,9669,9675,9687,9707,9709,9726,9797,10068,10070,10072,10115,10131,10161,10165,10674,10698,10973,11215,11554,11566,11598,11638,11659,11773,11957,11961,12547,12798,12816,12824,12881,12897,12933,12968,13171,13647,13652,13657,13879,14009,14384,14517,14729,14797,15032,15938,16085,16100,16130,16170,16173,17415,17552,17553,17578,17583,17796,17825,17883,17902,17915,17923,17984,18005,18035,18069,18096,18166,18180,18244,18359,18363,18398,18407,18418,18429,18430,18466,18478,18489,18524,18613,18621,18624,18648,18658,18695,18709,18739,18865,18898,18903,18910,18911,18934,18955,19000,19007,19024,19040,19110,19111,19127,19130,19139,19172,19182,19190,19200,19219,19223,19237,19248,19263,19279,19345,19352,19372,19390,19395,19410,19422,19426,19444,19448,19453,19489,19499,19503,19515,19516,19543,19566,19612,19634,19652,19656,19667,19685,19690,19699,19718,19722,19729,19734,19738,19755,19758,19759,19768,19781,19789,19803,19823,19840,19881,19900,19939,20007,20021,20036,20037,20040,20044,20070,20075,20120,20132,20139,20146,20149,20162,20184,20197,20207,20210,20213,20237,20248,20510,20554,20566,20587,20728,20758,20759,20789,20799,20806,20811,20837,20942,20947,20982,20989,21029,21035,21077,21087,21090,21091,21099,21103,21107,21160,21164,21179,21186,21191,21193,21202,21226,21233,21323,21324,21330,21333,21347,21365,21402,21409,21416,21418,21428,21449,21456,21584,21980,22038,22330,22350,22392,22472,22492,22503,22508,22512,22598,22699,22712,22717,22725,22752,22761,22767,22839,22959,22983,23003,23047,23069,23102,23106,23121,23143]]],["Here",[16,16,[[0,6,6,0,6,[[21,2,2,0,2],[26,1,1,2,3],[30,1,1,3,4],[36,1,1,4,5],[45,1,1,5,6]]],[1,1,1,6,7,[[52,1,1,6,7]]],[8,6,6,7,13,[[238,5,5,7,12],[257,1,1,12,13]]],[9,1,1,13,14,[[267,1,1,13,14]]],[17,1,1,14,15,[[473,1,1,14,15]]],[22,1,1,15,16,[[736,1,1,15,16]]]],[554,558,745,884,1096,1388,1583,7280,7281,7282,7284,7292,7799,8029,13828,18795]]],["I",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17777]]],["Lo",[24,24,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,1,1,1,2,[[68,1,1,1,2]]],[3,2,2,2,4,[[130,1,1,2,3],[138,1,1,3,4]]],[8,1,1,4,5,[[256,1,1,4,5]]],[9,1,1,5,6,[[290,1,1,5,6]]],[11,1,1,6,7,[[319,1,1,6,7]]],[12,1,1,7,8,[[354,1,1,7,8]]],[13,1,1,8,9,[[391,1,1,8,9]]],[17,3,3,9,12,[[438,1,1,9,10],[440,1,1,10,11],[475,1,1,11,12]]],[18,5,5,12,17,[[517,1,1,12,13],[529,1,1,13,14],[532,1,1,14,15],[604,1,1,15,16],[609,1,1,16,17]]],[20,1,1,17,18,[[659,1,1,17,18]]],[22,3,3,18,21,[[684,1,1,18,19],[703,1,1,19,20],[714,1,1,20,21]]],[23,2,2,21,23,[[749,1,1,21,22],[752,1,1,22,23]]],[25,1,1,23,24,[[814,1,1,23,24]]]],[1511,2035,4148,4413,7786,8709,9713,10864,11723,12911,12978,13880,14532,14717,14739,16124,16157,17331,17776,18127,18336,19073,19161,20720]]],["See",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]]],[478,6791]]],["behold",[507,489,[[0,65,63,0,63,[[0,1,1,0,1],[5,3,3,1,4],[7,1,1,4,5],[8,1,1,5,6],[11,1,1,6,7],[14,2,2,7,9],[15,1,1,9,10],[16,1,1,10,11],[19,1,1,11,12],[21,1,1,12,13],[23,4,4,13,17],[24,1,1,17,18],[25,1,1,18,19],[26,1,1,19,20],[27,4,3,20,23],[28,3,3,23,26],[30,3,3,26,29],[31,1,1,29,30],[32,1,1,30,31],[33,1,1,31,32],[36,6,5,32,37],[37,4,4,37,41],[39,3,3,41,44],[40,11,11,44,55],[41,4,4,55,59],[42,1,1,59,60],[43,1,1,60,61],[44,1,1,61,62],[46,1,1,62,63]]],[1,26,26,63,89,[[51,2,2,63,65],[52,2,2,65,67],[53,4,4,67,71],[54,1,1,71,72],[56,2,2,72,74],[57,2,2,74,76],[58,1,1,76,77],[59,1,1,77,78],[63,2,2,78,80],[65,2,2,80,82],[73,1,1,82,83],[80,1,1,83,84],[81,2,2,84,86],[83,2,2,86,88],[88,1,1,88,89]]],[2,26,26,89,115,[[99,1,1,89,90],[102,20,20,90,110],[103,5,5,110,115]]],[3,19,18,115,133,[[119,1,1,115,116],[128,2,1,116,117],[132,2,2,117,119],[133,1,1,119,120],[134,2,2,120,122],[136,1,1,122,123],[138,2,2,123,125],[139,2,2,125,127],[140,2,2,127,129],[141,1,1,129,130],[148,3,3,130,133]]],[4,8,8,133,141,[[153,1,1,133,134],[155,1,1,134,135],[161,2,2,135,137],[165,1,1,137,138],[169,1,1,138,139],[171,1,1,139,140],[178,1,1,140,141]]],[5,9,9,141,150,[[191,1,1,141,142],[193,2,2,142,144],[194,1,1,144,145],[195,3,3,145,148],[200,1,1,148,149],[209,1,1,149,150]]],[6,27,25,150,175,[[211,1,1,150,151],[213,3,2,151,153],[214,2,1,153,154],[216,2,2,154,156],[217,2,2,156,158],[219,3,3,158,161],[221,1,1,161,162],[224,2,2,162,164],[227,1,1,164,165],[228,2,2,165,167],[229,4,4,167,171],[230,1,1,171,172],[231,3,3,172,175]]],[7,3,3,175,178,[[233,1,1,175,176],[234,1,1,176,177],[235,1,1,177,178]]],[8,36,34,178,212,[[240,2,2,178,180],[244,3,3,180,183],[245,3,3,183,186],[246,1,1,186,187],[247,4,2,187,189],[248,1,1,189,190],[249,5,5,190,195],[250,1,1,195,196],[251,1,1,196,197],[252,1,1,197,198],[254,1,1,198,199],[255,4,4,199,203],[256,1,1,203,204],[259,1,1,204,205],[260,2,2,205,207],[261,3,3,207,210],[265,2,2,210,212]]],[9,20,20,212,232,[[267,3,3,212,215],[269,3,3,215,218],[279,2,2,218,220],[280,1,1,220,221],[281,2,2,221,223],[282,3,3,223,226],[284,3,3,226,229],[285,3,3,229,232]]],[10,34,32,232,264,[[291,3,3,232,235],[292,2,2,235,237],[293,3,2,237,239],[295,1,1,239,240],[298,1,1,240,241],[300,1,1,241,242],[301,1,1,242,243],[302,1,1,243,244],[303,2,2,244,246],[304,3,3,246,249],[305,1,1,249,250],[307,3,3,250,253],[308,1,1,253,254],[309,5,5,254,259],[310,4,3,259,262],[311,1,1,262,263],[312,1,1,263,264]]],[11,29,28,264,292,[[313,1,1,264,265],[314,1,1,265,266],[315,1,1,266,267],[316,1,1,267,268],[317,1,1,268,269],[318,6,6,269,275],[319,5,4,275,279],[320,1,1,279,280],[321,1,1,280,281],[322,1,1,281,282],[323,1,1,282,283],[325,1,1,283,284],[327,4,4,284,288],[329,1,1,288,289],[330,1,1,289,290],[331,1,1,290,291],[332,1,1,291,292]]],[12,4,4,292,296,[[346,1,1,292,293],[359,1,1,293,294],[365,1,1,294,295],[366,1,1,295,296]]],[13,27,27,296,323,[[368,2,2,296,298],[372,1,1,298,299],[375,1,1,299,300],[379,2,2,300,302],[382,2,2,302,304],[384,1,1,304,305],[385,1,1,305,306],[386,5,5,306,311],[389,1,1,311,312],[390,1,1,312,313],[391,1,1,313,314],[392,1,1,314,315],[394,1,1,315,316],[395,1,1,316,317],[398,1,1,317,318],[399,2,2,318,320],[401,2,2,320,322],[402,1,1,322,323]]],[14,1,1,323,324,[[411,1,1,323,324]]],[15,1,1,324,325,[[421,1,1,324,325]]],[17,3,3,325,328,[[436,1,1,325,326],[451,1,1,326,327],[467,1,1,327,328]]],[18,3,3,328,331,[[550,1,1,328,329],[564,1,1,329,330],[616,1,1,330,331]]],[19,2,2,331,333,[[628,1,1,331,332],[634,1,1,332,333]]],[20,4,4,333,337,[[659,1,1,333,334],[660,2,2,334,336],[662,1,1,336,337]]],[21,4,4,337,341,[[671,1,1,337,338],[672,2,2,338,340],[674,1,1,340,341]]],[22,32,28,341,369,[[681,1,1,341,342],[683,4,3,342,345],[686,2,2,345,347],[695,1,1,347,348],[699,1,1,348,349],[700,1,1,349,350],[704,1,1,350,351],[707,4,2,351,353],[712,1,1,353,354],[713,1,1,354,355],[715,1,1,355,356],[716,1,1,356,357],[718,1,1,357,358],[719,1,1,358,359],[730,1,1,359,360],[732,1,1,360,361],[737,1,1,361,362],[738,1,1,362,363],[740,1,1,363,364],[743,5,4,364,368],[744,1,1,368,369]]],[23,41,39,369,408,[[745,2,2,369,371],[748,1,1,371,372],[749,1,1,372,373],[750,3,2,373,375],[751,1,1,375,376],[752,2,2,376,378],[757,1,1,378,379],[758,4,3,379,382],[760,3,3,382,385],[762,1,1,385,386],[763,1,1,386,387],[767,4,4,387,391],[768,1,1,391,392],[770,1,1,392,393],[776,2,2,393,395],[778,1,1,395,396],[782,1,1,396,397],[784,2,2,397,399],[786,1,1,399,400],[788,1,1,400,401],[789,1,1,401,402],[790,1,1,402,403],[792,1,1,403,404],[793,1,1,404,405],[794,1,1,405,406],[795,2,2,406,408]]],[25,49,48,408,456,[[802,2,2,408,410],[803,1,1,410,411],[804,2,2,411,413],[805,3,3,413,416],[808,3,3,416,419],[809,7,7,419,426],[810,2,2,426,428],[811,2,2,428,430],[812,1,1,430,431],[813,1,1,431,432],[814,1,1,432,433],[815,2,1,433,434],[817,1,1,434,435],[818,2,2,435,437],[822,1,1,437,438],[823,1,1,438,439],[825,1,1,439,440],[826,1,1,440,441],[837,1,1,441,442],[838,3,3,442,445],[841,3,3,445,448],[844,2,2,448,450],[845,1,1,450,451],[847,2,2,451,453],[848,3,3,453,456]]],[26,7,7,456,463,[[857,3,3,456,459],[859,3,3,459,462],[861,1,1,462,463]]],[27,2,2,463,465,[[863,2,2,463,465]]],[28,1,1,465,466,[[878,1,1,465,466]]],[29,6,6,466,472,[[884,2,2,466,468],[885,3,3,468,471],[886,1,1,471,472]]],[32,1,1,472,473,[[893,1,1,472,473]]],[37,15,14,473,487,[[911,3,3,473,476],[912,3,3,476,479],[913,3,2,479,481],[914,1,1,481,482],[915,3,3,482,485],[916,1,1,485,486],[919,1,1,486,487]]],[38,2,2,487,489,[[927,1,1,487,488],[928,1,1,488,489]]]],[30,149,150,154,196,214,317,364,377,395,401,511,560,606,621,636,654,682,700,763,785,786,788,797,801,820,875,883,924,946,961,1001,1090,1092,1098,1108,1112,1142,1143,1146,1148,1178,1181,1188,1196,1197,1198,1200,1201,1202,1212,1213,1214,1217,1218,1265,1274,1279,1287,1311,1340,1370,1421,1560,1567,1581,1588,1607,1608,1615,1624,1648,1701,1702,1712,1731,1749,1781,1899,1906,1957,1961,2191,2426,2447,2472,2507,2526,2707,2993,3057,3058,3060,3062,3065,3069,3072,3073,3077,3078,3082,3083,3084,3086,3088,3091,3095,3105,3107,3108,3114,3148,3150,3155,3159,3704,4069,4236,4241,4252,4263,4278,4327,4380,4407,4427,4433,4456,4460,4477,4719,4732,4741,4902,4986,5170,5173,5286,5368,5424,5576,5947,5997,5998,6022,6049,6050,6062,6197,6474,6511,6592,6593,6621,6669,6682,6707,6711,6785,6787,6797,6863,6914,6917,6982,7002,7005,7033,7040,7046,7051,7094,7110,7111,7123,7153,7180,7191,7322,7323,7398,7403,7405,7426,7428,7429,7450,7462,7473,7495,7515,7524,7525,7528,7534,7572,7606,7641,7722,7732,7742,7751,7753,7781,7859,7881,7897,7912,7926,7929,7981,7994,8024,8028,8040,8093,8103,8105,8351,8353,8363,8415,8421,8427,8431,8434,8489,8502,8509,8531,8548,8552,8735,8742,8759,8778,8799,8831,8837,8883,9012,9086,9130,9179,9185,9209,9220,9228,9237,9268,9326,9327,9329,9348,9392,9393,9396,9398,9400,9421,9444,9447,9469,9503,9542,9562,9596,9635,9653,9689,9691,9694,9699,9704,9707,9712,9717,9720,9726,9732,9761,9802,9843,9892,9936,9940,9951,9956,10009,10045,10096,10103,10616,10978,11164,11193,11219,11221,11300,11370,11465,11467,11512,11520,11564,11587,11589,11597,11603,11611,11621,11669,11704,11730,11752,11790,11810,11907,11926,11927,11991,11993,12001,12252,12547,12888,13257,13640,15035,15305,16247,16423,16585,17329,17334,17344,17382,17552,17562,17563,17583,17708,17746,17765,17769,17814,17829,17997,18044,18065,18151,18201,18207,18308,18324,18388,18395,18430,18478,18702,18734,18809,18823,18865,18898,18910,18914,18915,18937,18952,18964,19043,19072,19099,19108,19151,19168,19170,19273,19306,19311,19312,19348,19350,19357,19387,19413,19486,19491,19514,19523,19525,19586,19748,19755,19818,19917,19945,19951,19979,20012,20045,20072,20092,20129,20178,20259,20264,20468,20479,20501,20525,20527,20537,20543,20545,20582,20583,20587,20608,20609,20611,20612,20614,20618,20620,20624,20633,20634,20642,20656,20707,20716,20753,20770,20832,20835,20951,20995,21072,21092,21368,21399,21404,21408,21480,21482,21501,21574,21577,21603,21674,21676,21680,21681,21686,21964,21966,21976,22020,22025,22031,22086,22111,22119,22344,22461,22464,22465,22468,22471,22482,22582,22886,22889,22896,22900,22902,22908,22920,22921,22924,22937,22943,22945,22948,23008,23121,23139]]],["lo",[86,85,[[0,10,10,0,10,[[7,1,1,0,1],[14,2,2,1,3],[17,2,2,3,5],[18,1,1,5,6],[28,1,1,6,7],[36,1,1,7,8],[41,1,1,8,9],[47,1,1,9,10]]],[1,2,2,10,12,[[56,1,1,10,11],[57,1,1,11,12]]],[3,2,2,12,14,[[139,1,1,12,13],[140,1,1,13,14]]],[4,1,1,14,15,[[174,1,1,14,15]]],[5,1,1,15,16,[[200,1,1,15,16]]],[6,2,2,16,18,[[217,1,1,16,17],[223,1,1,17,18]]],[8,3,3,18,21,[[239,1,1,18,19],[245,1,1,19,20],[249,1,1,20,21]]],[9,2,2,21,23,[[267,1,1,21,22],[281,1,1,22,23]]],[10,3,3,23,26,[[291,2,2,23,25],[293,1,1,25,26]]],[11,1,1,26,27,[[319,1,1,26,27]]],[13,3,3,27,30,[[382,1,1,27,28],[393,1,1,28,29],[395,1,1,29,30]]],[15,2,2,30,32,[[417,1,1,30,31],[418,1,1,31,32]]],[17,1,1,32,33,[[444,1,1,32,33]]],[18,9,8,33,41,[[488,1,1,33,34],[514,1,1,34,35],[517,1,1,35,36],[525,1,1,36,37],[536,1,1,37,38],[550,1,1,38,39],[560,1,1,39,40],[569,2,1,40,41]]],[19,1,1,41,42,[[651,1,1,41,42]]],[21,1,1,42,43,[[672,1,1,42,43]]],[22,1,1,43,44,[[727,1,1,43,44]]],[23,12,12,44,56,[[745,1,1,44,45],[748,4,4,45,49],[752,1,1,49,50],[769,1,1,50,51],[774,2,2,51,53],[780,1,1,53,54],[793,1,1,54,55],[794,1,1,55,56]]],[25,17,17,56,73,[[803,1,1,56,57],[809,2,2,57,59],[814,1,1,59,60],[818,1,1,60,61],[819,2,2,61,63],[824,2,2,63,65],[831,2,2,65,67],[834,2,2,67,69],[838,2,2,69,71],[841,1,1,71,72],[843,1,1,72,73]]],[26,2,2,73,75,[[859,2,2,73,75]]],[27,1,1,75,76,[[870,1,1,75,76]]],[29,4,4,76,80,[[882,2,2,76,78],[885,1,1,78,79],[887,1,1,79,80]]],[34,1,1,80,81,[[903,1,1,80,81]]],[36,1,1,81,82,[[909,1,1,81,82]]],[37,3,3,82,85,[[912,1,1,82,83],[921,2,2,83,85]]]],[194,363,372,426,434,485,797,1090,1280,1462,1700,1730,4422,4457,5487,6197,6707,6889,7310,7420,7551,8028,8413,8739,8768,8828,9722,11520,11762,11800,12387,12413,13070,14061,14486,14534,14638,14793,15047,15243,15420,17110,17565,18648,18961,19050,19051,19052,19053,19162,19563,19670,19677,19854,20142,20175,20501,20606,20621,20718,20843,20863,20867,21046,21047,21213,21225,21312,21313,21399,21405,21494,21560,22028,22035,22214,22412,22423,22465,22504,22737,22849,22909,23034,23044]]]]},{"k":"H2010","v":[["release",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12742]]]]},{"k":"H2011","v":[["Hinnom",[13,11,[[5,4,2,0,2,[[201,2,1,0,1],[204,2,1,1,2]]],[11,1,1,2,3,[[335,1,1,2,3]]],[13,2,2,3,5,[[394,1,1,3,4],[399,1,1,4,5]]],[15,1,1,5,6,[[423,1,1,5,6]]],[23,5,5,6,11,[[751,2,2,6,8],[763,2,2,8,10],[776,1,1,10,11]]]],[6210,6309,10175,11767,11914,12618,19150,19151,19409,19413,19766]]]]},{"k":"H2012","v":[["Hena",[3,3,[[11,2,2,0,2,[[330,1,1,0,1],[331,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]]],[10058,10074,18365]]]]},{"k":"H2013","v":[["*",[8,8,[[3,1,1,0,1,[[129,1,1,0,1]]],[6,1,1,1,2,[[213,1,1,1,2]]],[15,1,1,2,3,[[420,1,1,2,3]]],[29,2,2,3,5,[[884,1,1,3,4],[886,1,1,4,5]]],[34,1,1,5,6,[[904,1,1,5,6]]],[35,1,1,6,7,[[906,1,1,6,7]]],[37,1,1,7,8,[[912,1,1,7,8]]]],[4105,6587,12504,22460,22484,22768,22794,22912]]],["+",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4105]]],["peace",[2,2,[[15,1,1,0,1,[[420,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]]],[12504,22794]]],["silence",[3,3,[[6,1,1,0,1,[[213,1,1,0,1]]],[29,1,1,1,2,[[886,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[6587,22484,22768]]],["silent",[1,1,[[37,1,1,0,1,[[912,1,1,0,1]]]],[22912]]],["tongue",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22460]]]]},{"k":"H2014","v":[["intermission",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20403]]]]},{"k":"H2015","v":[["*",[94,92,[[0,4,4,0,4,[[2,1,1,0,1],[18,3,3,1,4]]],[1,5,5,4,9,[[56,3,3,4,7],[59,1,1,7,8],[63,1,1,8,9]]],[2,9,9,9,18,[[102,9,9,9,18]]],[4,2,2,18,20,[[175,1,1,18,19],[181,1,1,19,20]]],[5,2,2,20,22,[[193,1,1,20,21],[194,1,1,21,22]]],[6,4,3,22,25,[[217,2,1,22,23],[230,2,2,23,25]]],[8,4,4,25,29,[[239,1,1,25,26],[245,2,2,26,28],[260,1,1,28,29]]],[9,1,1,29,30,[[276,1,1,29,30]]],[10,1,1,30,31,[[312,1,1,30,31]]],[11,3,3,31,34,[[317,1,1,31,32],[321,1,1,32,33],[333,1,1,33,34]]],[12,1,1,34,35,[[356,1,1,34,35]]],[13,2,2,35,37,[[375,1,1,35,36],[384,1,1,36,37]]],[15,1,1,37,38,[[425,1,1,37,38]]],[16,2,2,38,40,[[434,2,2,38,40]]],[17,12,12,40,52,[[444,1,1,40,41],[447,1,1,41,42],[454,1,1,42,43],[455,1,1,43,44],[463,2,2,44,46],[465,2,2,46,48],[469,1,1,48,49],[472,1,1,49,50],[473,1,1,50,51],[476,1,1,51,52]]],[18,10,10,52,62,[[507,1,1,52,53],[509,1,1,53,54],[518,1,1,54,55],[543,1,1,55,56],[555,3,3,56,59],[582,2,2,59,61],[591,1,1,61,62]]],[19,2,2,62,64,[[639,1,1,62,63],[644,1,1,63,64]]],[22,3,3,64,67,[[712,1,1,64,65],[738,1,1,65,66],[741,1,1,66,67]]],[23,6,6,67,73,[[746,1,1,67,68],[757,1,1,68,69],[764,1,1,69,70],[767,1,1,70,71],[774,1,1,71,72],[775,1,1,72,73]]],[24,5,5,73,78,[[797,1,1,73,74],[799,1,1,74,75],[800,1,1,75,76],[801,2,2,76,78]]],[25,1,1,78,79,[[805,1,1,78,79]]],[26,2,2,79,81,[[859,2,2,79,81]]],[27,2,2,81,83,[[868,1,1,81,82],[872,1,1,82,83]]],[28,1,1,83,84,[[877,1,1,83,84]]],[29,5,5,84,89,[[882,1,1,84,85],[883,2,2,85,87],[884,1,1,87,88],[886,1,1,88,89]]],[31,1,1,89,90,[[891,1,1,89,90]]],[35,1,1,90,91,[[908,1,1,90,91]]],[36,2,1,91,92,[[910,2,1,91,92]]]],[79,478,482,486,1700,1702,1705,1796,1894,3055,3056,3062,3065,3068,3069,3072,3077,3107,5505,5702,5984,6022,6707,7093,7095,7316,7424,7427,7873,8243,9514,9673,9779,10132,10910,11376,11575,12673,12835,12856,13056,13143,13316,13340,13509,13513,13572,13578,13708,13781,13807,13916,14330,14359,14545,14879,15122,15157,15170,15631,15635,15830,16726,16893,18312,18826,18876,18986,19289,19438,19520,19673,19704,20330,20357,20426,20444,20457,20537,22023,22031,22186,22248,22342,22421,22430,22431,22462,22491,22562,22829,22877]]],["+",[8,8,[[0,3,3,0,3,[[18,3,3,0,3]]],[2,1,1,3,4,[[102,1,1,3,4]]],[4,1,1,4,5,[[175,1,1,4,5]]],[6,1,1,5,6,[[217,1,1,5,6]]],[18,1,1,6,7,[[582,1,1,6,7]]],[23,1,1,7,8,[[767,1,1,7,8]]]],[478,482,486,3107,5505,6707,15635,19520]]],["Turn",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[9514,11575]]],["again",[2,2,[[6,1,1,0,1,[[230,1,1,0,1]]],[11,1,1,1,2,[[317,1,1,1,2]]]],[7095,9673]]],["aside",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15170]]],["back",[2,2,[[5,1,1,0,1,[[194,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[6022,15122]]],["become",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13578]]],["came",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7316]]],["change",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19289]]],["changed",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3068]]],["contrary",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12835]]],["converted",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18826]]],["gave",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7427]]],["make",[1,1,[[18,1,1,0,1,[[518,1,1,0,1]]]],[14545]]],["overthrew",[2,2,[[4,1,1,0,1,[[181,1,1,0,1]]],[23,1,1,1,2,[[764,1,1,1,2]]]],[5702,19438]]],["overthrow",[4,3,[[9,1,1,0,1,[[276,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]],[36,2,1,2,3,[[910,2,1,2,3]]]],[8243,10910,22877]]],["overthrown",[4,4,[[19,1,1,0,1,[[639,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]],[29,1,1,2,3,[[882,1,1,2,3]]],[31,1,1,3,4,[[891,1,1,3,4]]]],[16726,20426,22421,22562]]],["overturn",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13143]]],["overturneth",[3,3,[[17,3,3,0,3,[[444,1,1,0,1],[463,1,1,1,2],[469,1,1,2,3]]]],[13056,13513,13708]]],["perverse",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16893]]],["retired",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7093]]],["tumbled",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6707]]],["turn",[5,5,[[23,1,1,0,1,[[775,1,1,0,1]]],[25,1,1,1,2,[[805,1,1,1,2]]],[29,2,2,2,4,[[883,1,1,2,3],[886,1,1,3,4]]],[35,1,1,4,5,[[908,1,1,4,5]]]],[19704,20537,22430,22491,22829]]],["turned",[43,43,[[1,5,5,0,5,[[56,3,3,0,3],[59,1,1,3,4],[63,1,1,4,5]]],[2,7,7,5,12,[[102,7,7,5,12]]],[8,2,2,12,14,[[245,1,1,12,13],[260,1,1,13,14]]],[11,1,1,14,15,[[321,1,1,14,15]]],[13,1,1,15,16,[[375,1,1,15,16]]],[15,1,1,16,17,[[425,1,1,16,17]]],[16,1,1,17,18,[[434,1,1,17,18]]],[17,6,6,18,24,[[454,1,1,18,19],[455,1,1,19,20],[465,1,1,20,21],[472,1,1,21,22],[473,1,1,22,23],[476,1,1,23,24]]],[18,6,6,24,30,[[507,1,1,24,25],[509,1,1,25,26],[543,1,1,26,27],[555,1,1,27,28],[582,1,1,28,29],[591,1,1,29,30]]],[22,2,2,30,32,[[712,1,1,30,31],[741,1,1,31,32]]],[23,2,2,32,34,[[746,1,1,32,33],[774,1,1,33,34]]],[24,3,3,34,37,[[797,1,1,34,35],[801,2,2,35,37]]],[26,2,2,37,39,[[859,2,2,37,39]]],[27,2,2,39,41,[[868,1,1,39,40],[872,1,1,40,41]]],[28,1,1,41,42,[[877,1,1,41,42]]],[29,1,1,42,43,[[884,1,1,42,43]]]],[1700,1702,1705,1796,1894,3055,3056,3062,3065,3069,3072,3077,7424,7873,9779,11376,12673,12856,13316,13340,13572,13781,13807,13916,14330,14359,14879,15157,15631,15830,18312,18876,18986,19673,20330,20444,20457,22023,22031,22186,22248,22342,22462]]],["turneth",[3,3,[[5,1,1,0,1,[[193,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]],[29,1,1,2,3,[[883,1,1,2,3]]]],[5984,20357,22431]]],["turning",[1,1,[[11,1,1,0,1,[[333,1,1,0,1]]]],[10132]]],["up",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13509]]],["way",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[79]]]]},{"k":"H2016","v":[["contrary",[2,1,[[25,2,1,0,1,[[817,2,1,0,1]]]],[20796]]]]},{"k":"H2017","v":[["down",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18209]]]]},{"k":"H2018","v":[["overthrow",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[486]]]]},{"k":"H2019","v":[["froward",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16992]]]]},{"k":"H2020","v":[["deliverance",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12776]]]]},{"k":"H2021","v":[["chariots",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21031]]]]},{"k":"H2022","v":[["*",[545,484,[[0,20,18,0,18,[[6,2,2,0,2],[7,2,2,2,4],[9,1,1,4,5],[11,1,1,5,6],[13,1,1,6,7],[18,3,3,7,10],[21,2,2,10,12],[30,6,4,12,16],[35,2,2,16,18]]],[1,48,38,18,56,[[52,2,2,18,20],[53,1,1,20,21],[64,1,1,21,22],[67,1,1,22,23],[68,16,11,23,34],[69,1,1,34,35],[73,9,7,35,42],[74,1,1,42,43],[75,1,1,43,44],[76,1,1,44,45],[80,1,1,45,46],[81,4,4,46,50],[82,1,1,50,51],[83,8,5,51,56]]],[2,4,4,56,60,[[96,1,1,56,57],[114,1,1,57,58],[115,1,1,58,59],[116,1,1,59,60]]],[3,26,25,60,85,[[119,1,1,60,61],[126,1,1,61,62],[129,2,2,62,64],[130,3,3,64,67],[136,6,5,67,72],[137,1,1,72,73],[143,1,1,73,74],[144,1,1,74,75],[149,8,8,75,83],[150,2,2,83,85]]],[4,51,44,85,129,[[153,10,9,85,94],[154,4,4,94,98],[155,3,3,98,101],[156,3,2,101,103],[157,4,4,103,107],[160,1,1,107,108],[161,6,4,108,112],[162,5,5,112,117],[163,3,2,117,119],[164,1,1,119,120],[179,3,3,120,123],[184,5,3,123,126],[185,2,2,126,128],[186,1,1,128,129]]],[5,52,42,129,171,[[188,3,3,129,132],[194,3,2,132,134],[195,1,1,134,135],[196,2,2,135,137],[197,9,5,137,142],[198,4,4,142,146],[199,4,4,146,150],[200,1,1,150,151],[201,7,5,151,156],[202,1,1,156,157],[203,3,3,157,160],[204,4,4,160,164],[205,1,1,164,165],[206,3,1,165,166],[207,2,2,166,168],[210,4,3,168,171]]],[6,35,31,171,202,[[211,4,4,171,175],[212,2,1,175,176],[213,4,2,176,178],[214,4,4,178,182],[215,1,1,182,183],[216,1,1,183,184],[217,2,2,184,186],[219,5,4,186,190],[220,1,1,190,191],[221,2,2,191,193],[222,1,1,193,194],[226,1,1,194,195],[227,2,2,195,197],[228,2,2,197,199],[229,3,3,199,202]]],[8,14,12,202,214,[[236,1,1,202,203],[244,1,1,203,204],[248,1,1,204,205],[249,1,1,205,206],[252,2,1,206,207],[258,3,2,207,209],[260,1,1,209,210],[261,2,2,210,212],[266,2,2,212,214]]],[9,6,6,214,220,[[267,2,2,214,216],[279,1,1,216,217],[282,1,1,217,218],[286,1,1,218,219],[287,1,1,219,220]]],[10,15,12,220,232,[[294,1,1,220,221],[295,1,1,221,222],[301,1,1,222,223],[302,1,1,223,224],[306,3,1,224,225],[308,2,2,225,227],[309,3,2,227,229],[310,2,2,229,231],[312,1,1,231,232]]],[11,11,11,232,243,[[313,1,1,232,233],[314,2,2,233,235],[316,2,2,235,237],[317,1,1,237,238],[318,1,1,238,239],[331,2,2,239,241],[335,2,2,241,243]]],[12,6,6,243,249,[[341,1,1,243,244],[342,1,1,244,245],[343,1,1,245,246],[347,2,2,246,248],[349,1,1,248,249]]],[13,15,14,249,263,[[368,2,2,249,251],[369,1,1,251,252],[379,2,1,252,253],[381,1,1,253,254],[384,1,1,254,255],[385,1,1,255,256],[386,3,3,256,259],[387,1,1,259,260],[392,1,1,260,261],[393,1,1,261,262],[399,1,1,262,263]]],[15,2,2,263,265,[[420,1,1,263,264],[421,1,1,264,265]]],[17,6,6,265,271,[[444,1,1,265,266],[449,1,1,266,267],[459,1,1,267,268],[463,1,1,268,269],[474,1,1,269,270],[475,1,1,270,271]]],[18,47,43,271,314,[[479,1,1,271,272],[480,1,1,272,273],[488,1,1,273,274],[492,1,1,274,275],[495,1,1,275,276],[501,1,1,276,277],[519,1,1,277,278],[520,1,1,278,279],[523,2,2,279,281],[525,3,3,281,284],[527,1,1,284,285],[542,1,1,285,286],[545,6,2,286,288],[549,2,2,288,290],[551,1,1,290,291],[555,2,2,291,293],[557,1,1,293,294],[560,1,1,294,295],[567,1,1,295,296],[572,1,1,296,297],[574,1,1,297,298],[575,1,1,298,299],[576,1,1,299,300],[581,6,6,300,306],[591,2,2,306,308],[598,1,1,308,309],[602,2,2,309,311],[621,1,1,311,312],[624,1,1,312,313],[625,1,1,313,314]]],[19,2,2,314,316,[[635,1,1,314,315],[654,1,1,315,316]]],[21,5,5,316,321,[[672,2,2,316,318],[674,2,2,318,320],[678,1,1,320,321]]],[22,57,56,321,377,[[680,4,3,321,324],[682,1,1,324,325],[683,1,1,325,326],[685,1,1,326,327],[686,1,1,327,328],[688,2,2,328,330],[689,1,1,330,331],[691,2,2,331,333],[692,2,2,333,335],[694,1,1,335,336],[695,1,1,336,337],[696,3,3,337,340],[700,1,1,340,341],[702,1,1,341,342],[703,3,3,342,345],[705,1,1,345,346],[706,1,1,346,347],[707,1,1,347,348],[708,3,3,348,351],[709,1,1,351,352],[712,1,1,352,353],[715,2,2,353,355],[718,3,3,355,358],[719,1,1,358,359],[720,2,2,359,361],[722,1,1,361,362],[727,2,2,362,364],[730,1,1,364,365],[732,1,1,365,366],[733,1,1,366,367],[734,1,1,367,368],[735,2,2,368,370],[742,2,2,370,372],[743,4,4,372,376],[744,1,1,376,377]]],[23,20,18,377,395,[[747,2,2,377,379],[748,2,2,379,381],[753,1,1,381,382],[757,1,1,382,383],[760,1,1,383,384],[761,1,1,384,385],[770,1,1,385,386],[775,3,3,386,389],[776,1,1,389,390],[777,1,1,390,391],[790,1,1,391,392],[794,3,2,392,394],[795,2,1,394,395]]],[24,2,2,395,397,[[800,1,1,395,396],[801,1,1,396,397]]],[25,47,42,397,439,[[807,4,3,397,400],[808,2,2,400,402],[812,1,1,402,403],[818,2,2,403,405],[819,3,3,405,408],[820,1,1,408,409],[821,2,1,409,410],[823,1,1,410,411],[829,2,2,411,413],[832,1,1,413,414],[833,2,2,414,416],[834,1,1,416,417],[835,4,3,417,420],[836,6,6,420,426],[837,6,4,426,430],[838,1,1,430,431],[839,3,3,431,434],[840,3,3,434,437],[841,1,1,437,438],[844,1,1,438,439]]],[26,3,3,439,442,[[858,2,2,439,441],[860,1,1,441,442]]],[27,2,2,442,444,[[865,1,1,442,443],[871,1,1,443,444]]],[28,6,6,444,450,[[877,4,4,444,448],[878,2,2,448,450]]],[29,5,5,450,455,[[881,1,1,450,451],[882,2,2,451,453],[884,1,1,453,454],[887,1,1,454,455]]],[30,7,6,455,461,[[888,7,6,455,461]]],[31,1,1,461,462,[[890,1,1,461,462]]],[32,10,8,462,470,[[893,1,1,462,463],[895,1,1,463,464],[896,4,3,464,467],[898,2,2,467,469],[899,2,1,469,470]]],[33,3,3,470,473,[[900,2,2,470,472],[902,1,1,472,473]]],[34,2,2,473,475,[[905,2,2,473,475]]],[35,1,1,475,476,[[908,1,1,475,476]]],[36,2,2,476,478,[[909,2,2,476,478]]],[37,11,5,478,483,[[914,1,1,478,479],[916,3,1,479,480],[918,2,1,480,481],[924,5,2,481,483]]],[38,1,1,483,484,[[925,1,1,483,484]]]],[178,179,187,188,264,306,346,474,476,487,549,561,894,896,898,927,1048,1049,1580,1591,1628,1937,2004,2028,2029,2037,2038,2039,2040,2042,2043,2044,2046,2049,2069,2181,2189,2190,2192,2193,2194,2195,2235,2265,2280,2438,2439,2450,2453,2457,2479,2498,2499,2500,2525,2528,2917,3470,3570,3604,3693,4021,4092,4104,4148,4152,4153,4333,4334,4336,4338,4339,4344,4566,4583,4783,4784,4797,4798,4799,4801,4807,4808,4823,4824,4894,4898,4899,4911,4912,4916,4933,4935,4936,4939,4941,4943,4975,4983,4987,5000,5015,5052,5057,5058,5075,5076,5144,5166,5167,5172,5178,5187,5189,5190,5191,5196,5219,5237,5242,5589,5597,5598,5780,5807,5808,5812,5829,5840,5885,5891,5892,6032,6035,6038,6070,6104,6109,6110,6123,6124,6128,6131,6135,6137,6138,6159,6160,6165,6173,6199,6210,6211,6212,6213,6250,6266,6290,6291,6293,6305,6306,6307,6309,6371,6379,6392,6402,6480,6506,6509,6518,6528,6543,6544,6554,6571,6595,6604,6605,6611,6613,6628,6656,6697,6718,6761,6779,6790,6802,6812,6866,6867,6884,6952,6981,6988,6995,7006,7025,7040,7042,7213,7395,7487,7530,7621,7824,7836,7881,7918,7925,8010,8017,8028,8043,8351,8439,8575,8589,8852,8893,9115,9176,9307,9360,9361,9395,9398,9431,9436,9497,9542,9567,9576,9628,9630,9669,9691,10084,10092,10178,10181,10427,10451,10521,10660,10667,10728,11213,11229,11230,11457,11498,11558,11580,11597,11609,11610,11635,11742,11759,11923,12508,12524,13056,13199,13444,13513,13842,13884,13951,13961,14060,14088,14125,14244,14561,14569,14616,14617,14635,14636,14645,14679,14866,14915,14916,15003,15016,15050,15167,15181,15208,15255,15380,15458,15483,15498,15508,15577,15579,15581,15584,15589,15603,15826,15828,16082,16111,16112,16310,16359,16380,16627,17194,17562,17571,17583,17588,17654,17687,17688,17699,17738,17764,17807,17825,17862,17882,17893,17908,17910,17941,17953,17970,17996,18000,18003,18004,18057,18118,18124,18125,18128,18164,18185,18201,18234,18242,18246,18254,18306,18376,18384,18424,18429,18432,18466,18491,18495,18556,18647,18649,18703,18733,18752,18760,18772,18778,18886,18888,18904,18906,18908,18922,18942,19008,19025,19042,19051,19185,19282,19352,19383,19590,19696,19697,19714,19775,19788,20063,20172,20185,20237,20439,20460,20565,20566,20576,20584,20593,20678,20847,20848,20855,20860,20864,20890,20935,20985,21171,21173,21242,21253,21254,21308,21319,21326,21327,21346,21347,21351,21352,21356,21359,21360,21363,21365,21367,21419,21433,21445,21446,21450,21452,21465,21479,21584,22004,22008,22081,22146,22233,22312,22313,22316,22343,22360,22361,22404,22411,22423,22451,22508,22518,22519,22526,22527,22529,22531,22554,22583,22620,22621,22622,22627,22649,22650,22676,22689,22699,22730,22771,22778,22831,22848,22851,22929,22948,22979,23072,23073,23092]]],["+",[30,30,[[1,2,2,0,2,[[82,1,1,0,1],[83,1,1,1,2]]],[3,3,3,2,5,[[126,1,1,2,3],[149,2,2,3,5]]],[4,1,1,5,6,[[185,1,1,5,6]]],[5,1,1,6,7,[[188,1,1,6,7]]],[6,5,5,7,12,[[213,1,1,7,8],[214,1,1,8,9],[217,1,1,9,10],[227,1,1,10,11],[229,1,1,11,12]]],[8,1,1,12,13,[[236,1,1,12,13]]],[9,2,2,13,15,[[279,1,1,13,14],[286,1,1,14,15]]],[11,2,2,15,17,[[317,1,1,15,16],[331,1,1,16,17]]],[13,1,1,17,18,[[381,1,1,17,18]]],[18,3,3,18,21,[[480,1,1,18,19],[519,1,1,19,20],[560,1,1,20,21]]],[21,1,1,21,22,[[674,1,1,21,22]]],[22,1,1,22,23,[[715,1,1,22,23]]],[23,2,2,23,25,[[748,1,1,23,24],[794,1,1,24,25]]],[25,1,1,25,26,[[829,1,1,25,26]]],[30,2,2,26,28,[[888,2,2,26,28]]],[32,1,1,28,29,[[898,1,1,28,29]]],[34,1,1,29,30,[[905,1,1,29,30]]]],[2479,2525,4021,4784,4808,5812,5892,6571,6613,6697,6981,7040,7213,8351,8575,9669,10092,11498,13961,14561,15255,17583,18384,19042,20172,21173,22518,22519,22650,22771]]],["Mountains",[1,1,[[18,1,1,0,1,[[625,1,1,0,1]]]],[16380]]],["country",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6160]]],["hill",[32,27,[[1,1,1,0,1,[[73,1,1,0,1]]],[3,2,2,1,3,[[130,2,2,1,3]]],[4,2,2,3,5,[[153,2,2,3,5]]],[5,6,6,5,11,[[201,1,1,5,6],[203,1,1,6,7],[204,2,2,7,9],[207,1,1,9,10],[210,1,1,10,11]]],[6,2,2,11,13,[[212,1,1,11,12],[226,1,1,12,13]]],[8,2,2,13,15,[[260,1,1,13,14],[261,1,1,14,15]]],[9,1,1,15,16,[[287,1,1,15,16]]],[10,4,2,16,18,[[301,1,1,16,17],[306,3,1,17,18]]],[11,2,2,18,20,[[313,1,1,18,19],[316,1,1,19,20]]],[18,10,7,20,27,[[479,1,1,20,21],[492,1,1,21,22],[501,1,1,22,23],[520,1,1,23,24],[545,5,2,24,26],[576,1,1,26,27]]]],[2181,4152,4153,4933,4935,6211,6291,6306,6307,6392,6506,6554,6952,7881,7918,8589,9115,9307,9542,9630,13951,14088,14244,14569,14915,14916,15508]]],["hill's",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8439]]],["hills",[23,23,[[0,1,1,0,1,[[6,1,1,0,1]]],[4,3,3,1,4,[[153,1,1,1,2],[160,1,1,2,3],[163,1,1,3,4]]],[5,3,3,4,7,[[195,1,1,4,5],[196,1,1,5,6],[197,1,1,6,7]]],[10,3,3,7,10,[[310,2,2,7,9],[312,1,1,9,10]]],[18,11,11,10,21,[[495,1,1,10,11],[545,1,1,11,12],[557,1,1,12,13],[572,1,1,13,14],[574,1,1,14,15],[575,1,1,15,16],[581,4,4,16,20],[598,1,1,20,21]]],[22,2,2,21,23,[[683,1,1,21,22],[685,1,1,22,23]]]],[178,4899,5144,5219,6038,6104,6123,9431,9436,9497,14125,14916,15208,15458,15483,15498,15581,15584,15589,15603,16082,17764,17807]]],["mount",[203,180,[[0,10,8,0,8,[[9,1,1,0,1],[21,1,1,1,2],[30,6,4,2,6],[35,2,2,6,8]]],[1,39,30,8,38,[[53,1,1,8,9],[67,1,1,9,10],[68,15,10,10,20],[73,8,6,20,26],[74,1,1,26,27],[75,1,1,27,28],[76,1,1,28,29],[80,1,1,29,30],[81,3,3,30,33],[83,7,5,33,38]]],[2,4,4,38,42,[[96,1,1,38,39],[114,1,1,39,40],[115,1,1,40,41],[116,1,1,41,42]]],[3,17,16,42,58,[[119,1,1,42,43],[136,6,5,43,48],[137,1,1,48,49],[143,1,1,49,50],[144,1,1,50,51],[149,5,5,51,56],[150,2,2,56,58]]],[4,30,26,58,84,[[153,3,3,58,61],[154,2,2,61,63],[155,2,2,63,65],[156,1,1,65,66],[157,3,3,66,69],[161,6,4,69,73],[162,5,5,73,78],[163,2,1,78,79],[179,3,3,79,82],[184,3,2,82,84]]],[5,24,20,84,104,[[194,3,2,84,86],[197,2,1,86,87],[198,3,3,87,90],[199,3,3,90,93],[201,4,3,93,96],[202,1,1,96,97],[203,1,1,97,98],[205,1,1,98,99],[206,2,1,99,100],[207,1,1,100,101],[210,3,3,101,104]]],[6,17,17,104,121,[[211,1,1,104,105],[212,1,1,105,106],[213,2,2,106,108],[214,3,3,108,111],[217,1,1,111,112],[219,2,2,112,114],[220,1,1,114,115],[222,1,1,115,116],[227,1,1,116,117],[228,2,2,117,119],[229,2,2,119,121]]],[8,5,5,121,126,[[244,1,1,121,122],[248,1,1,122,123],[249,1,1,123,124],[266,2,2,124,126]]],[9,1,1,126,127,[[267,1,1,126,127]]],[10,6,6,127,133,[[294,1,1,127,128],[302,1,1,128,129],[308,2,2,129,131],[309,2,2,131,133]]],[11,4,4,133,137,[[314,1,1,133,134],[316,1,1,134,135],[335,2,2,135,137]]],[12,5,5,137,142,[[341,1,1,137,138],[342,1,1,138,139],[343,1,1,139,140],[347,2,2,140,142]]],[13,8,7,142,149,[[369,1,1,142,143],[379,2,1,143,144],[385,1,1,144,145],[386,3,3,145,148],[399,1,1,148,149]]],[15,2,2,149,151,[[420,1,1,149,150],[421,1,1,150,151]]],[18,5,5,151,156,[[525,2,2,151,153],[551,1,1,153,154],[555,1,1,154,155],[602,1,1,155,156]]],[22,12,12,156,168,[[682,1,1,156,157],[686,1,1,157,158],[688,2,2,158,160],[692,1,1,160,161],[694,1,1,161,162],[696,1,1,162,163],[702,1,1,163,164],[705,1,1,164,165],[706,1,1,165,166],[707,1,1,166,167],[709,1,1,167,168]]],[23,2,2,168,170,[[775,1,1,168,169],[794,1,1,169,170]]],[25,4,4,170,174,[[836,4,4,170,174]]],[28,1,1,174,175,[[877,1,1,174,175]]],[30,4,3,175,178,[[888,4,3,175,178]]],[32,1,1,178,179,[[896,1,1,178,179]]],[37,2,1,179,180,[[924,2,1,179,180]]]],[264,561,894,896,898,927,1048,1049,1628,2004,2028,2037,2038,2039,2040,2042,2043,2044,2046,2049,2189,2190,2192,2193,2194,2195,2235,2265,2280,2438,2439,2453,2457,2498,2499,2500,2525,2528,2917,3470,3570,3604,3693,4333,4334,4336,4338,4339,4344,4566,4583,4783,4797,4798,4799,4801,4823,4824,4894,4898,4899,4939,4943,4983,4987,5052,5057,5058,5075,5166,5167,5172,5178,5187,5189,5190,5191,5196,5237,5589,5597,5598,5807,5808,6032,6035,6124,6131,6135,6137,6159,6165,6173,6211,6212,6213,6266,6290,6371,6379,6402,6480,6506,6509,6544,6554,6571,6595,6604,6605,6611,6718,6761,6802,6812,6884,6988,6995,7006,7025,7042,7395,7487,7530,8010,8017,8028,8852,9176,9360,9361,9395,9398,9576,9628,10178,10181,10427,10451,10521,10660,10667,11230,11457,11580,11597,11609,11610,11923,12508,12524,14636,14645,15050,15181,16111,17738,17825,17862,17882,17941,17970,18004,18118,18164,18185,18201,18254,19697,20185,21346,21347,21351,21359,22343,22527,22529,22531,22627,23072]]],["mountain",[102,95,[[0,5,5,0,5,[[11,1,1,0,1],[13,1,1,1,2],[18,3,3,2,5]]],[1,5,5,5,10,[[52,2,2,5,7],[64,1,1,7,8],[68,1,1,8,9],[69,1,1,9,10]]],[3,2,2,10,12,[[129,1,1,10,11],[130,1,1,11,12]]],[4,12,11,12,23,[[153,4,4,12,16],[154,1,1,16,17],[155,1,1,17,18],[156,2,1,18,19],[157,1,1,19,20],[184,1,1,20,21],[185,1,1,21,22],[186,1,1,22,23]]],[5,8,8,23,31,[[188,2,2,23,25],[197,1,1,25,26],[200,1,1,26,27],[201,1,1,27,28],[203,1,1,28,29],[204,1,1,29,30],[206,1,1,30,31]]],[6,4,4,31,35,[[211,3,3,31,34],[213,1,1,34,35]]],[8,5,3,35,38,[[252,2,1,35,36],[258,3,2,36,38]]],[11,2,2,38,40,[[314,1,1,38,39],[318,1,1,39,40]]],[13,2,2,40,42,[[368,2,2,40,42]]],[17,1,1,42,43,[[449,1,1,42,43]]],[18,3,3,43,46,[[488,1,1,43,44],[525,1,1,44,45],[555,1,1,45,46]]],[21,1,1,46,47,[[674,1,1,46,47]]],[22,18,18,47,65,[[680,2,2,47,49],[689,1,1,49,50],[691,1,1,50,51],[703,3,3,51,54],[708,3,3,54,57],[718,2,2,57,59],[734,1,1,59,60],[735,2,2,60,62],[743,2,2,62,64],[744,1,1,64,65]]],[23,6,5,65,70,[[747,1,1,65,66],[760,1,1,66,67],[770,1,1,67,68],[775,1,1,68,69],[795,2,1,69,70]]],[24,1,1,70,71,[[801,1,1,70,71]]],[25,8,7,71,78,[[812,1,1,71,72],[818,2,2,72,74],[821,2,1,74,75],[829,1,1,75,76],[841,1,1,76,77],[844,1,1,77,78]]],[26,3,3,78,81,[[858,2,2,78,80],[860,1,1,80,81]]],[28,2,2,81,83,[[877,1,1,81,82],[878,1,1,82,83]]],[29,2,2,83,85,[[882,1,1,83,84],[884,1,1,84,85]]],[30,1,1,85,86,[[888,1,1,85,86]]],[32,5,4,86,90,[[895,1,1,86,87],[896,2,2,87,89],[899,2,1,89,90]]],[35,1,1,90,91,[[908,1,1,90,91]]],[36,1,1,91,92,[[909,1,1,91,92]]],[37,4,3,92,95,[[914,1,1,92,93],[918,2,1,93,94],[924,1,1,94,95]]]],[306,346,474,476,487,1580,1591,1937,2029,2069,4092,4148,4911,4912,4916,4936,4941,5000,5015,5076,5807,5829,5840,5885,5891,6123,6199,6210,6293,6309,6379,6518,6528,6543,6595,7621,7824,7836,9567,9691,11213,11229,13199,14060,14635,15167,17588,17687,17688,17893,17908,18124,18125,18128,18234,18242,18246,18424,18429,18760,18772,18778,18908,18922,18942,19008,19352,19590,19714,20237,20460,20678,20847,20848,20935,21171,21479,21584,22004,22008,22081,22312,22360,22411,22451,22526,22620,22621,22622,22676,22831,22848,22929,22979,23072]]],["mountains",[152,142,[[0,4,4,0,4,[[6,1,1,0,1],[7,2,2,1,3],[21,1,1,3,4]]],[1,1,1,4,5,[[81,1,1,4,5]]],[3,2,2,5,7,[[129,1,1,5,6],[149,1,1,6,7]]],[4,3,3,7,10,[[154,1,1,7,8],[164,1,1,8,9],[184,1,1,9,10]]],[5,9,7,10,17,[[196,1,1,10,11],[197,5,3,11,14],[198,1,1,14,15],[201,1,1,15,16],[204,1,1,16,17]]],[6,7,6,17,23,[[215,1,1,17,18],[216,1,1,18,19],[219,3,2,19,21],[221,2,2,21,23]]],[8,1,1,23,24,[[261,1,1,23,24]]],[9,1,1,24,25,[[267,1,1,24,25]]],[10,2,2,25,27,[[295,1,1,25,26],[309,1,1,26,27]]],[11,1,1,27,28,[[331,1,1,27,28]]],[12,1,1,28,29,[[349,1,1,28,29]]],[13,4,4,29,33,[[384,1,1,29,30],[387,1,1,30,31],[392,1,1,31,32],[393,1,1,32,33]]],[17,5,5,33,38,[[444,1,1,33,34],[459,1,1,34,35],[463,1,1,35,36],[474,1,1,36,37],[475,1,1,37,38]]],[18,14,14,38,52,[[523,2,2,38,40],[527,1,1,40,41],[542,1,1,41,42],[549,2,2,42,44],[567,1,1,44,45],[581,2,2,45,47],[591,2,2,47,49],[602,1,1,49,50],[621,1,1,50,51],[624,1,1,51,52]]],[19,2,2,52,54,[[635,1,1,52,53],[654,1,1,53,54]]],[21,3,3,54,57,[[672,2,2,54,56],[678,1,1,56,57]]],[22,24,24,57,81,[[680,2,2,57,59],[691,1,1,59,60],[692,1,1,60,61],[695,1,1,61,62],[696,2,2,62,64],[700,1,1,64,65],[712,1,1,65,66],[715,1,1,66,67],[718,1,1,67,68],[719,1,1,68,69],[720,2,2,69,71],[722,1,1,71,72],[727,2,2,72,74],[730,1,1,74,75],[732,1,1,75,76],[733,1,1,76,77],[742,2,2,77,79],[743,2,2,79,81]]],[23,10,10,81,91,[[747,1,1,81,82],[748,1,1,82,83],[753,1,1,83,84],[757,1,1,84,85],[761,1,1,85,86],[775,1,1,86,87],[776,1,1,87,88],[777,1,1,88,89],[790,1,1,89,90],[794,1,1,90,91]]],[24,1,1,91,92,[[800,1,1,91,92]]],[25,34,30,92,122,[[807,4,3,92,95],[808,2,2,95,97],[819,3,3,97,100],[820,1,1,100,101],[823,1,1,101,102],[832,1,1,102,103],[833,2,2,103,105],[834,1,1,105,106],[835,4,3,106,109],[836,2,2,109,111],[837,6,4,111,115],[838,1,1,115,116],[839,3,3,116,119],[840,3,3,119,122]]],[27,2,2,122,124,[[865,1,1,122,123],[871,1,1,123,124]]],[28,3,3,124,127,[[877,2,2,124,126],[878,1,1,126,127]]],[29,3,3,127,130,[[881,1,1,127,128],[882,1,1,128,129],[887,1,1,129,130]]],[31,1,1,130,131,[[890,1,1,130,131]]],[32,3,3,131,134,[[893,1,1,131,132],[896,1,1,132,133],[898,1,1,133,134]]],[33,3,3,134,137,[[900,2,2,134,136],[902,1,1,136,137]]],[34,1,1,137,138,[[905,1,1,137,138]]],[36,1,1,138,139,[[909,1,1,138,139]]],[37,5,2,139,141,[[916,3,1,139,140],[924,2,1,140,141]]],[38,1,1,141,142,[[925,1,1,141,142]]]],[179,187,188,549,2450,4104,4807,4975,5242,5780,6070,6109,6110,6128,6138,6250,6305,6628,6656,6779,6790,6866,6867,7925,8043,8893,9398,10084,10728,11558,11635,11742,11759,13056,13444,13513,13842,13884,14616,14617,14679,14866,15003,15016,15380,15577,15579,15826,15828,16112,16310,16359,16627,17194,17562,17571,17654,17687,17699,17910,17953,17996,18000,18003,18057,18306,18376,18432,18466,18491,18495,18556,18647,18649,18703,18733,18752,18886,18888,18904,18906,19025,19051,19185,19282,19383,19696,19775,19788,20063,20172,20439,20565,20566,20576,20584,20593,20855,20860,20864,20890,20985,21242,21253,21254,21308,21319,21326,21327,21352,21356,21360,21363,21365,21367,21419,21433,21445,21446,21450,21452,21465,22146,22233,22313,22316,22361,22404,22423,22508,22554,22583,22621,22649,22689,22699,22730,22778,22851,22948,23073,23092]]]]},{"k":"H2023","v":[["*",[12,12,[[3,11,11,0,11,[[136,4,4,0,4],[137,1,1,4,5],[149,4,4,5,9],[150,2,2,9,11]]],[4,1,1,11,12,[[184,1,1,11,12]]]],[4333,4334,4336,4338,4344,4797,4798,4799,4801,4823,4824,5808]]],["+",[3,3,[[3,3,3,0,3,[[137,1,1,0,1],[149,1,1,1,2],[150,1,1,2,3]]]],[4344,4801,4824]]],["Hor",[9,9,[[3,8,8,0,8,[[136,4,4,0,4],[149,3,3,4,7],[150,1,1,7,8]]],[4,1,1,8,9,[[184,1,1,8,9]]]],[4333,4334,4336,4338,4797,4798,4799,4823,5808]]]]},{"k":"H2024","v":[["Hara",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10454]]]]},{"k":"H2025","v":[["altar",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21587]]]]},{"k":"H2026","v":[["*",[166,157,[[0,16,16,0,16,[[3,5,5,0,5],[11,1,1,5,6],[19,2,2,6,8],[25,1,1,8,9],[26,2,2,9,11],[33,2,2,11,13],[36,2,2,13,15],[48,1,1,15,16]]],[1,11,10,16,26,[[51,3,2,16,18],[53,1,1,18,19],[54,1,1,19,20],[62,1,1,20,21],[70,1,1,21,22],[71,1,1,22,23],[72,1,1,23,24],[81,2,2,24,26]]],[2,2,2,26,28,[[109,2,2,26,28]]],[3,11,8,28,36,[[127,2,1,28,29],[138,2,2,29,31],[141,1,1,31,32],[147,6,4,32,36]]],[4,2,1,36,37,[[165,2,1,36,37]]],[5,4,4,37,41,[[194,1,1,37,38],[195,1,1,38,39],[196,1,1,39,40],[199,1,1,40,41]]],[6,16,14,41,55,[[217,2,1,41,42],[218,5,5,42,47],[219,7,6,47,53],[226,1,1,53,54],[230,1,1,54,55]]],[8,5,5,55,60,[[251,1,1,55,56],[257,1,1,56,57],[259,3,3,57,60]]],[9,7,7,60,67,[[269,1,1,60,61],[270,3,3,61,64],[276,1,1,64,65],[278,1,1,65,66],[280,1,1,66,67]]],[10,11,11,67,78,[[292,2,2,67,69],[299,1,1,69,70],[301,1,1,70,71],[302,1,1,71,72],[308,3,3,72,75],[309,3,3,75,78]]],[11,5,5,78,83,[[320,1,1,78,79],[321,1,1,79,80],[322,1,1,80,81],[323,1,1,81,82],[329,1,1,82,83]]],[12,3,3,83,86,[[344,1,1,83,84],[348,1,1,84,85],[356,1,1,85,86]]],[13,12,12,86,98,[[387,2,2,86,88],[388,2,2,88,90],[389,1,1,90,91],[390,2,2,91,93],[391,1,1,93,94],[394,3,3,94,97],[402,1,1,97,98]]],[15,4,3,98,101,[[416,1,1,98,99],[418,2,1,99,100],[421,1,1,100,101]]],[16,9,9,101,110,[[428,1,1,101,102],[432,1,1,102,103],[433,1,1,103,104],[434,6,6,104,110]]],[17,2,2,110,112,[[440,1,1,110,111],[455,1,1,111,112]]],[18,9,9,112,121,[[487,1,1,112,113],[521,1,1,113,114],[536,1,1,114,115],[555,3,3,115,118],[571,1,1,118,119],[612,1,1,119,120],[613,1,1,120,121]]],[19,2,2,121,123,[[628,1,1,121,122],[634,1,1,122,123]]],[20,1,1,123,124,[[661,1,1,123,124]]],[22,9,8,124,132,[[688,1,1,124,125],[692,3,3,125,128],[700,1,1,128,129],[704,1,1,129,130],[705,3,2,130,132]]],[23,3,3,132,135,[[748,1,1,132,133],[759,1,1,133,134],[762,1,1,134,135]]],[24,4,4,135,139,[[798,3,3,135,138],[799,1,1,138,139]]],[25,10,10,139,149,[[810,1,1,139,140],[822,1,1,140,141],[824,2,2,141,143],[827,4,4,143,147],[829,1,1,147,148],[838,1,1,148,149]]],[27,2,2,149,151,[[867,1,1,149,150],[870,1,1,150,151]]],[29,4,4,151,155,[[880,1,1,151,152],[882,1,1,152,153],[887,2,2,153,155]]],[34,1,1,155,156,[[903,1,1,155,156]]],[37,1,1,156,157,[[921,1,1,156,157]]]],[87,93,94,102,104,310,499,506,699,768,769,1005,1006,1103,1109,1479,1568,1569,1624,1653,1882,2091,2137,2151,2450,2465,3333,3334,4039,4404,4408,4476,4671,4672,4681,4683,5281,6026,6063,6075,6176,6719,6736,6737,6738,6739,6740,6759,6772,6778,6799,6808,6810,6951,7059,7597,7808,7849,7850,7857,8111,8130,8131,8132,8258,8295,8363,8775,8802,9067,9132,9178,9353,9354,9355,9388,9397,9401,9739,9787,9802,9847,10008,10556,10696,10925,11628,11637,11645,11652,11673,11699,11702,11707,11770,11771,11773,12010,12370,12411,12537,12760,12811,12828,12840,12844,12845,12846,12849,12850,12953,13342,14049,14593,14801,15144,15147,15160,15437,16185,16214,16432,16601,17362,17854,17947,17948,17958,18065,18151,18152,18158,19058,19318,19405,20336,20352,20353,20397,20628,20955,21017,21054,21106,21108,21111,21115,21166,21406,22172,22221,22382,22420,22496,22499,22748,23033]]],["+",[26,25,[[0,2,2,0,2,[[26,1,1,0,1],[36,1,1,1,2]]],[1,3,3,2,5,[[51,2,2,2,4],[53,1,1,4,5]]],[2,1,1,5,6,[[109,1,1,5,6]]],[4,2,1,6,7,[[165,2,1,6,7]]],[5,1,1,7,8,[[194,1,1,7,8]]],[6,6,6,8,14,[[217,1,1,8,9],[218,2,2,9,11],[219,3,3,11,14]]],[8,1,1,14,15,[[257,1,1,14,15]]],[9,1,1,15,16,[[270,1,1,15,16]]],[10,2,2,16,18,[[308,1,1,16,17],[309,1,1,17,18]]],[11,1,1,18,19,[[323,1,1,18,19]]],[13,5,5,19,24,[[387,2,2,19,21],[390,1,1,21,22],[391,1,1,22,23],[394,1,1,23,24]]],[22,1,1,24,25,[[705,1,1,24,25]]]],[768,1109,1568,1569,1624,3334,5281,6026,6719,6736,6740,6759,6772,6810,7808,8131,9354,9388,9847,11628,11637,11699,11707,11771,18152]]],["Slay",[3,3,[[3,1,1,0,1,[[141,1,1,0,1]]],[18,1,1,1,2,[[536,1,1,1,2]]],[25,1,1,2,3,[[810,1,1,2,3]]]],[4476,14801,20628]]],["destroyed",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15160]]],["hand",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4039]]],["kill",[15,14,[[0,3,3,0,3,[[11,1,1,0,1],[25,1,1,1,2],[26,1,1,2,3]]],[1,2,2,3,5,[[51,1,1,3,4],[71,1,1,4,5]]],[3,4,3,5,8,[[127,1,1,5,6],[138,1,1,6,7],[147,2,1,7,8]]],[6,1,1,8,9,[[226,1,1,8,9]]],[8,2,2,9,11,[[251,1,1,9,10],[259,1,1,10,11]]],[10,1,1,11,12,[[302,1,1,11,12]]],[16,1,1,12,13,[[428,1,1,12,13]]],[20,1,1,13,14,[[661,1,1,13,14]]]],[310,699,769,1568,2137,4039,4404,4681,6951,7597,7849,9178,12760,17362]]],["killed",[3,3,[[3,1,1,0,1,[[147,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]],[18,1,1,2,3,[[521,1,1,2,3]]]],[4683,7850,14593]]],["killedst",[1,1,[[8,1,1,0,1,[[259,1,1,0,1]]]],[7857]]],["killeth",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12953]]],["killing",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6778]]],["made",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21115]]],["murder",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14049]]],["murderer",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22221]]],["murderers",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19058]]],["put",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19405]]],["slain",[26,25,[[0,1,1,0,1,[[3,1,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]],[6,1,1,2,3,[[230,1,1,2,3]]],[9,1,1,3,4,[[278,1,1,3,4]]],[10,3,3,4,7,[[299,1,1,4,5],[309,2,2,5,7]]],[13,2,2,7,9,[[388,1,1,7,8],[394,1,1,8,9]]],[16,3,3,9,12,[[432,1,1,9,10],[434,2,2,10,12]]],[19,1,1,12,13,[[634,1,1,12,13]]],[22,6,5,13,18,[[688,1,1,13,14],[692,2,2,14,16],[704,1,1,16,17],[705,2,1,17,18]]],[24,3,3,18,21,[[798,2,2,18,20],[799,1,1,20,21]]],[25,2,2,21,23,[[827,1,1,21,22],[838,1,1,22,23]]],[27,1,1,23,24,[[867,1,1,23,24]]],[29,1,1,24,25,[[882,1,1,24,25]]]],[102,4408,7059,8295,9067,9397,9401,11645,11773,12811,12845,12846,16601,17854,17947,17948,18151,18158,20352,20353,20397,21106,21406,22172,22420]]],["slay",[33,32,[[0,4,4,0,4,[[3,1,1,0,1],[19,2,2,1,3],[36,1,1,3,4]]],[1,5,5,4,9,[[54,1,1,4,5],[70,1,1,5,6],[72,1,1,6,7],[81,2,2,7,9]]],[2,1,1,9,10,[[109,1,1,9,10]]],[5,1,1,10,11,[[199,1,1,10,11]]],[6,2,2,11,13,[[218,2,2,11,13]]],[10,2,2,13,15,[[308,2,2,13,15]]],[11,1,1,15,16,[[320,1,1,15,16]]],[15,3,2,16,18,[[416,1,1,16,17],[418,2,1,17,18]]],[16,1,1,18,19,[[433,1,1,18,19]]],[17,1,1,19,20,[[455,1,1,19,20]]],[18,1,1,20,21,[[571,1,1,20,21]]],[19,1,1,21,22,[[628,1,1,21,22]]],[22,1,1,22,23,[[692,1,1,22,23]]],[23,1,1,23,24,[[759,1,1,23,24]]],[25,3,3,24,27,[[824,1,1,24,25],[827,2,2,25,27]]],[29,3,3,27,30,[[880,1,1,27,28],[887,2,2,28,30]]],[34,1,1,30,31,[[903,1,1,30,31]]],[37,1,1,31,32,[[921,1,1,31,32]]]],[93,499,506,1103,1653,2091,2151,2450,2465,3333,6176,6738,6739,9353,9355,9739,12370,12411,12828,13342,15437,16432,17958,19318,21054,21108,21111,22382,22496,22499,22748,23033]]],["slayer",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20955]]],["slayeth",[2,2,[[0,1,1,0,1,[[3,1,1,0,1]]],[25,1,1,1,2,[[829,1,1,1,2]]]],[94,21166]]],["slaying",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18065]]],["slew",[46,45,[[0,5,5,0,5,[[3,2,2,0,2],[33,2,2,2,4],[48,1,1,4,5]]],[1,1,1,5,6,[[62,1,1,5,6]]],[3,3,2,6,8,[[147,3,2,6,8]]],[5,2,2,8,10,[[195,1,1,8,9],[196,1,1,9,10]]],[6,5,5,10,15,[[217,1,1,10,11],[218,1,1,11,12],[219,3,3,12,15]]],[9,5,5,15,20,[[269,1,1,15,16],[270,2,2,16,18],[276,1,1,18,19],[280,1,1,19,20]]],[10,3,3,20,23,[[292,2,2,20,22],[301,1,1,22,23]]],[11,3,3,23,26,[[321,1,1,23,24],[322,1,1,24,25],[329,1,1,25,26]]],[12,3,3,26,29,[[344,1,1,26,27],[348,1,1,27,28],[356,1,1,28,29]]],[13,5,5,29,34,[[388,1,1,29,30],[389,1,1,30,31],[390,1,1,31,32],[394,1,1,32,33],[402,1,1,33,34]]],[15,1,1,34,35,[[421,1,1,34,35]]],[16,4,4,35,39,[[434,4,4,35,39]]],[18,4,4,39,43,[[555,2,2,39,41],[612,1,1,41,42],[613,1,1,42,43]]],[24,1,1,43,44,[[798,1,1,43,44]]],[25,1,1,44,45,[[824,1,1,44,45]]]],[87,104,1005,1006,1479,1882,4671,4672,6063,6075,6719,6737,6778,6799,6808,8111,8130,8132,8258,8363,8775,8802,9132,9787,9802,10008,10556,10696,10925,11652,11673,11702,11770,12010,12537,12840,12844,12849,12850,15144,15147,16185,16214,20336,21017]]]]},{"k":"H2027","v":[["*",[5,5,[[16,1,1,0,1,[[434,1,1,0,1]]],[19,1,1,1,2,[[651,1,1,1,2]]],[22,2,2,2,4,[[705,1,1,2,3],[708,1,1,3,4]]],[25,1,1,4,5,[[827,1,1,4,5]]]],[12839,17090,18158,18242,21115]]],["slain",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17090]]],["slaughter",[4,4,[[16,1,1,0,1,[[434,1,1,0,1]]],[22,2,2,1,3,[[705,1,1,1,2],[708,1,1,2,3]]],[25,1,1,3,4,[[827,1,1,3,4]]]],[12839,18158,18242,21115]]]]},{"k":"H2028","v":[["slaughter",[5,5,[[23,3,3,0,3,[[751,1,1,0,1],[756,1,1,1,2],[763,1,1,2,3]]],[37,2,2,3,5,[[921,2,2,3,5]]]],[19151,19252,19413,23032,23035]]]]},{"k":"H2029","v":[["*",[45,44,[[0,21,20,0,20,[[3,2,2,0,2],[15,3,2,2,4],[18,1,1,4,5],[20,1,1,5,6],[24,1,1,6,7],[28,4,4,7,11],[29,5,5,11,16],[37,3,3,16,19],[48,1,1,19,20]]],[1,1,1,20,21,[[51,1,1,20,21]]],[6,3,3,21,24,[[223,3,3,21,24]]],[8,2,2,24,26,[[236,1,1,24,25],[237,1,1,25,26]]],[9,1,1,26,27,[[277,1,1,26,27]]],[11,1,1,27,28,[[316,1,1,27,28]]],[12,1,1,28,29,[[341,1,1,28,29]]],[17,2,2,29,31,[[438,1,1,29,30],[450,1,1,30,31]]],[18,1,1,31,32,[[484,1,1,31,32]]],[21,1,1,32,33,[[673,1,1,32,33]]],[22,6,6,33,39,[[685,1,1,33,34],[686,1,1,34,35],[704,1,1,35,36],[711,1,1,36,37],[737,2,2,37,39]]],[23,1,1,39,40,[[775,1,1,39,40]]],[27,4,4,40,44,[[862,3,3,40,43],[863,1,1,43,44]]]],[80,96,385,386,493,515,679,827,828,829,830,835,837,847,849,853,1122,1123,1137,1499,1556,6887,6889,6891,7232,7261,8264,9620,10402,12907,13238,14009,17575,17796,17810,18148,18290,18804,18813,19699,22097,22100,22102,22110]]],["+",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10402]]],["child",[3,3,[[0,1,1,0,1,[[18,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]]],[493,18148,19699]]],["conceive",[7,7,[[6,3,3,0,3,[[223,3,3,0,3]]],[17,1,1,3,4,[[450,1,1,3,4]]],[22,3,3,4,7,[[685,1,1,4,5],[711,1,1,5,6],[737,1,1,6,7]]]],[6887,6889,6891,13238,17796,18290,18804]]],["conceived",[32,31,[[0,19,18,0,18,[[3,2,2,0,2],[15,3,2,2,4],[20,1,1,4,5],[24,1,1,5,6],[28,4,4,6,10],[29,5,5,10,15],[37,3,3,15,18]]],[1,1,1,18,19,[[51,1,1,18,19]]],[8,2,2,19,21,[[236,1,1,19,20],[237,1,1,20,21]]],[9,1,1,21,22,[[277,1,1,21,22]]],[11,1,1,22,23,[[316,1,1,22,23]]],[17,1,1,23,24,[[438,1,1,23,24]]],[18,1,1,24,25,[[484,1,1,24,25]]],[21,1,1,25,26,[[673,1,1,25,26]]],[22,1,1,26,27,[[686,1,1,26,27]]],[27,4,4,27,31,[[862,3,3,27,30],[863,1,1,30,31]]]],[80,96,385,386,515,679,827,828,829,830,835,837,847,849,853,1122,1123,1137,1556,7232,7261,8264,9620,12907,14009,17575,17810,22097,22100,22102,22110]]],["conceiving",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18813]]],["progenitors",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1499]]]]},{"k":"H2030","v":[["*",[14,14,[[0,3,3,0,3,[[15,1,1,0,1],[37,2,2,1,3]]],[1,1,1,3,4,[[70,1,1,3,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[8,1,1,5,6,[[239,1,1,5,6]]],[9,1,1,6,7,[[277,1,1,6,7]]],[11,2,2,7,9,[[320,1,1,7,8],[327,1,1,8,9]]],[12,1,1,9,10,[[344,1,1,9,10]]],[22,1,1,10,11,[[704,1,1,10,11]]],[23,1,1,11,12,[[764,1,1,11,12]]],[27,1,1,12,13,[[874,1,1,12,13]]],[29,1,1,13,14,[[879,1,1,13,14]]]],[392,1143,1144,2099,4036,7316,8264,9739,9941,10558,18147,19439,22282,22377]]],["+",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4036]]],["child",[11,11,[[0,3,3,0,3,[[15,1,1,0,1],[37,2,2,1,3]]],[1,1,1,3,4,[[70,1,1,3,4]]],[8,1,1,4,5,[[239,1,1,4,5]]],[9,1,1,5,6,[[277,1,1,5,6]]],[11,2,2,6,8,[[320,1,1,6,7],[327,1,1,7,8]]],[22,1,1,8,9,[[704,1,1,8,9]]],[27,1,1,9,10,[[874,1,1,9,10]]],[29,1,1,10,11,[[879,1,1,10,11]]]],[392,1143,1144,2099,7316,8264,9739,9941,18147,22282,22377]]],["conceived",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10558]]],["great",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19439]]]]},{"k":"H2031","v":[["thoughts",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21842]]]]},{"k":"H2032","v":[["*",[3,3,[[0,1,1,0,1,[[2,1,1,0,1]]],[7,1,1,1,2,[[235,1,1,1,2]]],[27,1,1,2,3,[[870,1,1,2,3]]]],[71,7203,22219]]],["+",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22219]]],["conception",[2,2,[[0,1,1,0,1,[[2,1,1,0,1]]],[7,1,1,1,2,[[235,1,1,1,2]]]],[71,7203]]]]},{"k":"H2033","v":[["Harorite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10700]]]]},{"k":"H2034","v":[["ruins",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22506]]]]},{"k":"H2035","v":[["destruction",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18655]]]]},{"k":"H2036","v":[["Horam",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6097]]]]},{"k":"H2037","v":[["Harum",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10393]]]]},{"k":"H2038","v":[["palace",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22413]]]]},{"k":"H2039","v":[["Haran",[7,6,[[0,6,5,0,5,[[10,6,5,0,5]]],[12,1,1,5,6,[[360,1,1,5,6]]]],[292,293,294,295,297,10992]]]]},{"k":"H2040","v":[["*",[43,42,[[1,5,4,0,4,[[64,1,1,0,1],[68,2,2,1,3],[72,2,1,3,4]]],[6,1,1,4,5,[[216,1,1,4,5]]],[9,1,1,5,6,[[277,1,1,5,6]]],[10,3,3,6,9,[[308,1,1,6,7],[309,2,2,7,9]]],[11,1,1,9,10,[[315,1,1,9,10]]],[12,1,1,10,11,[[357,1,1,10,11]]],[17,1,1,11,12,[[447,1,1,11,12]]],[18,3,3,12,15,[[488,1,1,12,13],[505,1,1,13,14],[535,1,1,14,15]]],[19,4,4,15,19,[[638,1,1,15,16],[641,1,1,16,17],[651,1,1,17,18],[656,1,1,18,19]]],[22,3,3,19,22,[[692,1,1,19,20],[700,1,1,20,21],[727,1,1,21,22]]],[23,7,7,22,29,[[745,1,1,22,23],[768,1,1,23,24],[775,2,2,24,26],[786,1,1,26,27],[789,1,1,27,28],[794,1,1,28,29]]],[24,2,2,29,31,[[798,2,2,29,31]]],[25,8,8,31,39,[[814,1,1,31,32],[817,1,1,32,33],[827,2,2,33,35],[831,1,1,35,36],[837,2,2,36,38],[839,1,1,38,39]]],[28,1,1,39,40,[[876,1,1,39,40]]],[32,1,1,40,41,[[897,1,1,40,41]]],[38,1,1,41,42,[[925,1,1,41,42]]]],[1927,2047,2050,2168,6679,8284,9371,9397,9401,9601,10927,13142,14062,14304,14785,16699,16773,17110,17228,17945,18071,18653,18956,19530,19719,19731,19985,20044,20181,20334,20349,20722,20801,21104,21112,21208,21394,21395,21445,22308,22644,23093]]],["+",[6,5,[[1,2,1,0,1,[[72,2,1,0,1]]],[6,1,1,1,2,[[216,1,1,1,2]]],[10,2,2,2,4,[[309,2,2,2,4]]],[25,1,1,4,5,[[814,1,1,4,5]]]],[2168,6679,9397,9401,20722]]],["Break",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14785]]],["destroy",[1,1,[[18,1,1,0,1,[[505,1,1,0,1]]]],[14304]]],["destroyed",[3,3,[[12,1,1,0,1,[[357,1,1,0,1]]],[18,1,1,1,2,[[488,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]]],[10927,14062,17945]]],["destroyers",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18653]]],["down",[23,23,[[10,1,1,0,1,[[308,1,1,0,1]]],[11,1,1,1,2,[[315,1,1,1,2]]],[17,1,1,2,3,[[447,1,1,2,3]]],[19,2,2,3,5,[[641,1,1,3,4],[651,1,1,4,5]]],[22,1,1,5,6,[[700,1,1,5,6]]],[23,7,7,6,13,[[745,1,1,6,7],[768,1,1,7,8],[775,2,2,8,10],[786,1,1,10,11],[789,1,1,11,12],[794,1,1,12,13]]],[24,2,2,13,15,[[798,2,2,13,15]]],[25,5,5,15,20,[[817,1,1,15,16],[827,2,2,16,18],[831,1,1,18,19],[839,1,1,19,20]]],[28,1,1,20,21,[[876,1,1,20,21]]],[32,1,1,21,22,[[897,1,1,21,22]]],[38,1,1,22,23,[[925,1,1,22,23]]]],[9371,9601,13142,16773,17110,18071,18956,19530,19719,19731,19985,20044,20181,20334,20349,20801,21104,21112,21208,21445,22308,22644,23093]]],["overthrow",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8284]]],["overthroweth",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17228]]],["overthrown",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[19,1,1,1,2,[[638,1,1,1,2]]]],[1927,16699]]],["ruined",[2,2,[[25,2,2,0,2,[[837,2,2,0,2]]]],[21394,21395]]],["through",[2,2,[[1,2,2,0,2,[[68,2,2,0,2]]]],[2047,2050]]]]},{"k":"H2041","v":[["destruction",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18022]]]]},{"k":"H2042","v":[["*",[13,13,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[4,2,2,2,4,[[160,1,1,2,3],[185,1,1,3,4]]],[18,6,6,4,10,[[507,1,1,4,5],[513,1,1,5,6],[527,1,1,6,7],[553,1,1,7,8],[564,1,1,8,9],[610,1,1,9,10]]],[21,1,1,10,11,[[674,1,1,10,11]]],[23,1,1,11,12,[[761,1,1,11,12]]],[34,1,1,12,13,[[905,1,1,12,13]]]],[342,4423,5146,5825,14326,14444,14678,15085,15302,16172,17590,19360,22774]]],["+",[4,4,[[3,1,1,0,1,[[139,1,1,0,1]]],[4,1,1,1,2,[[160,1,1,1,2]]],[18,1,1,2,3,[[553,1,1,2,3]]],[21,1,1,3,4,[[674,1,1,3,4]]]],[4423,5146,15085,17590]]],["hills",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14678]]],["mount",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[342]]],["mountain",[2,2,[[18,1,1,0,1,[[507,1,1,0,1]]],[23,1,1,1,2,[[761,1,1,1,2]]]],[14326,19360]]],["mountains",[5,5,[[4,1,1,0,1,[[185,1,1,0,1]]],[18,3,3,1,4,[[513,1,1,1,2],[564,1,1,2,3],[610,1,1,3,4]]],[34,1,1,4,5,[[905,1,1,4,5]]]],[5825,14444,15302,16172,22774]]]]},{"k":"H2043","v":[["Hararite",[5,4,[[9,3,2,0,2,[[289,3,2,0,2]]],[12,2,2,2,4,[[348,2,2,2,4]]]],[8664,8686,10707,10708]]]]},{"k":"H2044","v":[["Hashem",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10707]]]]},{"k":"H2045","v":[["hear",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21082]]]]},{"k":"H2046","v":[["melted",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[20998]]]]},{"k":"H2047","v":[["Hatach",[4,4,[[16,4,4,0,4,[[429,4,4,0,4]]]],[12767,12768,12771,12772]]]]},{"k":"H2048","v":[["*",[10,9,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,1,1,1,2,[[57,1,1,1,2]]],[6,3,3,2,5,[[226,3,3,2,5]]],[10,1,1,5,6,[[308,1,1,5,6]]],[17,2,1,6,7,[[448,2,1,6,7]]],[22,1,1,7,8,[[722,1,1,7,8]]],[23,1,1,8,9,[[753,1,1,8,9]]]],[880,1739,6959,6962,6964,9368,13162,18553,19180]]],["deceitfully",[1,1,[[1,1,1,0,1,[[57,1,1,0,1]]]],[1739]]],["deceive",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19180]]],["deceived",[2,2,[[0,1,1,0,1,[[30,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[880,18553]]],["mock",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13162]]],["mocked",[4,4,[[6,3,3,0,3,[[226,3,3,0,3]]],[10,1,1,3,4,[[308,1,1,3,4]]]],[6959,6962,6964,9368]]],["mocketh",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13162]]]]},{"k":"H2049","v":[["mockers",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13262]]]]},{"k":"H2050","v":[["mischief",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14830]]]]},{"k":"H2051","v":[["Dan",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21140]]]]},{"k":"H2052","v":[["did",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4354]]]]},{"k":"H2053","v":[["hooks",[13,13,[[1,13,13,0,13,[[75,2,2,0,2],[76,3,3,2,5],[85,2,2,5,7],[87,6,6,7,13]]]],[2267,2272,2282,2283,2289,2602,2604,2643,2644,2645,2650,2652,2661]]]]},{"k":"H2054","v":[["strange",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16992]]]]},{"k":"H2055","v":[["Vajezatha",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12843]]]]},{"k":"H2056","v":[["child",[1,1,[[0,1,1,0,1,[[10,1,1,0,1]]]],[296]]]]},{"k":"H2057","v":[["Vaniah",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12288]]]]},{"k":"H2058","v":[["Vophsi",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4089]]]]},{"k":"H2059","v":[["Vashni",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10482]]]]},{"k":"H2060","v":[["Vashti",[10,10,[[16,10,10,0,10,[[426,7,7,0,7],[427,3,3,7,10]]]],[12711,12713,12714,12717,12718,12719,12721,12725,12728,12741]]]]},{"k":"H2061","v":[["*",[7,7,[[0,1,1,0,1,[[48,1,1,0,1]]],[22,2,2,1,3,[[689,1,1,1,2],[743,1,1,2,3]]],[23,1,1,3,4,[[749,1,1,3,4]]],[25,1,1,4,5,[[823,1,1,4,5]]],[34,1,1,5,6,[[903,1,1,5,6]]],[35,1,1,6,7,[[908,1,1,6,7]]]],[1500,17890,18922,19064,21003,22739,22823]]],["+",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22739]]],["wolf",[4,4,[[0,1,1,0,1,[[48,1,1,0,1]]],[22,2,2,1,3,[[689,1,1,1,2],[743,1,1,2,3]]],[23,1,1,3,4,[[749,1,1,3,4]]]],[1500,17890,18922,19064]]],["wolves",[2,2,[[25,1,1,0,1,[[823,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[21003,22823]]]]},{"k":"H2062","v":[["Zeeb",[6,3,[[6,5,2,0,2,[[217,4,1,0,1],[218,1,1,1,2]]],[18,1,1,2,3,[[560,1,1,2,3]]]],[6719,6722,15252]]]]},{"k":"H2063","v":[["*",[601,567,[[0,51,47,0,47,[[1,3,1,0,1],[2,2,2,1,3],[8,2,2,3,5],[11,3,3,5,8],[14,2,2,8,10],[16,1,1,10,11],[18,1,1,11,12],[19,2,2,12,14],[20,2,1,14,15],[23,3,3,15,18],[25,2,2,18,20],[27,2,2,20,22],[28,4,3,22,25],[30,2,2,25,27],[33,3,3,27,30],[36,1,1,30,31],[38,1,1,31,32],[40,1,1,32,33],[41,5,5,33,38],[42,2,2,38,40],[43,1,1,40,41],[44,3,3,41,44],[47,1,1,44,45],[48,1,1,45,46],[49,1,1,46,47]]],[1,17,17,47,64,[[56,2,2,47,49],[57,1,1,49,50],[58,2,2,50,52],[61,3,3,52,55],[62,3,3,55,58],[63,2,2,58,60],[64,1,1,60,61],[66,1,1,61,62],[74,1,1,62,63],[81,1,1,63,64]]],[2,24,24,64,88,[[95,3,3,64,67],[96,4,4,67,71],[100,2,2,71,73],[101,1,1,73,74],[102,1,1,74,75],[103,4,4,75,79],[104,2,2,79,81],[105,2,2,81,83],[106,1,1,83,84],[114,1,1,84,85],[115,3,3,85,88]]],[3,33,32,88,120,[[120,6,6,88,94],[121,2,2,94,96],[122,2,2,96,98],[123,2,2,98,100],[124,1,1,100,101],[130,6,5,101,106],[132,4,4,106,110],[135,2,2,110,112],[137,1,1,112,113],[144,1,1,113,114],[147,1,1,114,115],[148,2,2,115,117],[150,3,3,117,120]]],[4,53,50,120,170,[[153,1,1,120,121],[155,2,2,121,123],[156,4,3,123,126],[157,2,2,126,128],[158,2,2,128,130],[161,2,2,130,132],[163,1,1,132,133],[165,1,1,133,134],[166,1,1,134,135],[167,1,1,135,136],[169,3,3,136,139],[170,1,1,139,140],[171,1,1,140,141],[174,1,1,141,142],[178,1,1,142,143],[179,3,3,143,146],[180,2,2,146,148],[181,6,5,148,153],[182,1,1,153,154],[183,9,8,154,162],[184,5,5,162,167],[185,2,2,167,169],[186,1,1,169,170]]],[5,28,27,170,197,[[187,1,1,170,171],[189,1,1,171,172],[190,1,1,172,173],[192,1,1,173,174],[193,2,1,174,175],[195,1,1,175,176],[197,2,2,176,178],[199,4,4,178,182],[201,1,1,182,183],[202,1,1,183,184],[204,3,3,184,187],[205,6,6,187,193],[208,1,1,193,194],[209,2,2,194,196],[210,1,1,196,197]]],[6,18,17,197,214,[[211,1,1,197,198],[212,2,1,198,199],[216,1,1,199,200],[217,1,1,200,201],[218,1,1,201,202],[223,1,1,202,203],[225,4,4,203,207],[229,4,4,207,211],[230,2,2,211,213],[231,1,1,213,214]]],[7,5,4,214,218,[[232,1,1,214,215],[233,1,1,215,216],[235,3,2,216,218]]],[8,14,14,218,232,[[237,1,1,218,219],[239,2,2,219,221],[241,1,1,221,222],[244,1,1,222,223],[246,1,1,223,224],[247,1,1,224,225],[249,2,2,225,227],[255,2,2,227,229],[257,1,1,229,230],[260,2,2,230,232]]],[9,26,22,232,254,[[267,1,1,232,233],[268,1,1,233,234],[272,1,1,234,235],[273,5,4,235,239],[277,1,1,239,240],[278,2,2,240,242],[279,3,3,242,245],[280,2,2,245,247],[283,5,2,247,249],[285,3,3,249,252],[288,1,1,252,253],[289,1,1,253,254]]],[10,15,14,254,268,[[293,7,6,254,260],[297,1,1,260,261],[298,1,1,261,262],[299,3,3,262,265],[301,2,2,265,267],[304,1,1,267,268]]],[11,24,21,268,289,[[315,1,1,268,269],[316,3,3,269,272],[317,2,1,272,273],[318,2,2,273,275],[320,1,1,275,276],[321,5,4,276,280],[330,2,2,280,282],[331,4,4,282,286],[332,2,1,286,287],[335,2,2,287,289]]],[12,9,9,289,298,[[341,1,1,289,290],[348,1,1,290,291],[354,3,3,291,294],[358,1,1,294,295],[364,1,1,295,296],[366,2,2,296,298]]],[13,23,23,298,321,[[367,1,1,298,299],[368,1,1,299,300],[372,1,1,300,301],[373,2,2,301,303],[382,2,2,303,305],[385,1,1,305,306],[386,2,2,306,308],[387,1,1,308,309],[390,1,1,309,310],[391,1,1,310,311],[393,1,1,311,312],[395,1,1,312,313],[396,2,2,313,315],[397,2,2,315,317],[398,2,2,317,319],[400,1,1,319,320],[401,1,1,320,321]]],[14,7,7,321,328,[[409,1,1,321,322],[410,1,1,322,323],[411,3,3,323,326],[412,2,2,326,328]]],[15,8,7,328,335,[[417,1,1,328,329],[418,1,1,329,330],[421,1,1,330,331],[425,5,4,331,335]]],[16,4,3,335,338,[[429,2,1,335,336],[434,2,2,336,338]]],[17,16,16,338,354,[[436,1,1,338,339],[437,2,2,339,341],[440,1,1,341,342],[445,1,1,342,343],[447,1,1,343,344],[452,1,1,344,345],[454,1,1,345,346],[455,1,1,346,347],[456,1,1,347,348],[468,1,1,348,349],[469,1,1,349,350],[470,1,1,350,351],[472,2,2,351,353],[477,1,1,353,354]]],[18,20,20,354,374,[[484,1,1,354,355],[504,1,1,355,356],[509,1,1,356,357],[518,1,1,357,358],[521,2,2,358,360],[526,1,1,360,361],[527,1,1,361,362],[550,1,1,362,363],[551,1,1,363,364],[555,1,1,364,365],[557,1,1,365,366],[569,1,1,366,367],[579,1,1,367,368],[586,2,2,368,370],[595,1,1,370,371],[596,2,2,371,373],[609,1,1,373,374]]],[19,1,1,374,375,[[633,1,1,374,375]]],[21,4,4,375,379,[[673,1,1,375,376],[676,1,1,376,377],[677,1,1,377,378],[678,1,1,378,379]]],[22,43,39,379,418,[[679,1,1,379,380],[681,1,1,380,381],[683,1,1,381,382],[687,4,4,382,386],[688,1,1,386,387],[690,1,1,387,388],[692,2,1,388,389],[701,2,2,389,391],[705,1,1,391,392],[706,3,2,392,394],[708,1,1,394,395],[714,3,2,395,397],[715,4,4,397,401],[716,2,1,401,402],[719,1,1,402,403],[720,1,1,403,404],[721,1,1,404,405],[723,1,1,405,406],[724,1,1,406,407],[725,1,1,407,408],[726,3,3,408,411],[728,1,1,411,412],[729,1,1,412,413],[732,2,2,413,415],[734,1,1,415,416],[737,1,1,416,417],[744,1,1,417,418]]],[23,94,89,418,507,[[746,3,3,418,421],[747,1,1,421,422],[748,3,3,422,425],[749,3,3,425,428],[752,1,1,428,429],[753,2,2,429,431],[754,1,1,431,432],[755,4,4,432,436],[757,1,1,436,437],[758,1,1,437,438],[760,4,4,438,442],[761,3,2,442,444],[763,4,4,444,448],[764,1,1,448,449],[765,5,5,449,454],[766,3,2,454,456],[768,2,2,456,458],[769,3,3,458,461],[770,7,6,461,467],[771,2,2,467,469],[773,1,1,469,470],[775,2,2,470,472],[776,13,12,472,484],[777,2,2,484,486],[778,2,2,486,488],[780,2,1,488,489],[781,3,3,489,492],[782,7,7,492,499],[783,1,1,499,500],[784,1,1,500,501],[786,3,3,501,504],[788,3,3,504,507]]],[24,2,2,507,509,[[798,1,1,507,508],[799,1,1,508,509]]],[25,24,22,509,531,[[804,3,3,509,512],[806,1,1,512,513],[807,1,1,513,514],[812,2,2,514,516],[817,1,1,516,517],[818,1,1,517,518],[821,1,1,518,519],[822,3,2,519,521],[824,1,1,521,522],[837,1,1,522,523],[844,2,1,523,524],[846,3,3,524,527],[848,3,3,527,530],[849,1,1,530,531]]],[26,2,2,531,533,[[858,1,1,531,532],[859,1,1,532,533]]],[27,2,2,533,535,[[866,1,1,533,534],[868,1,1,534,535]]],[28,3,2,535,537,[[876,2,1,535,536],[878,1,1,536,537]]],[29,7,7,537,544,[[880,1,1,537,538],[882,1,1,538,539],[885,2,2,539,541],[886,2,2,541,543],[887,1,1,543,544]]],[31,3,3,544,547,[[889,3,3,544,547]]],[32,5,5,547,552,[[893,2,2,547,549],[894,2,2,549,551],[895,1,1,551,552]]],[35,2,2,552,554,[[907,2,2,552,554]]],[37,9,8,554,562,[[915,6,5,554,559],[924,3,3,559,562]]],[38,5,5,562,567,[[925,1,1,562,563],[926,3,3,563,566],[927,1,1,566,567]]]],[53,68,69,217,222,305,310,316,367,378,407,477,500,501,523,596,598,599,695,702,788,795,820,822,823,886,925,984,995,1002,1115,1158,1234,1267,1270,1273,1280,1285,1301,1305,1341,1375,1377,1381,1455,1501,1530,1702,1708,1742,1756,1758,1841,1842,1859,1872,1877,1881,1894,1900,1921,1997,2198,2451,2858,2863,2874,2880,2890,2914,2916,2999,3043,3051,3111,3113,3143,3165,3168,3171,3200,3204,3235,3242,3482,3540,3551,3568,3747,3762,3767,3771,3774,3776,3821,3822,3836,3844,3934,3938,3963,4111,4116,4122,4135,4143,4200,4215,4222,4239,4291,4303,4357,4591,4685,4723,4740,4818,4828,4829,4897,4987,4993,5012,5026,5048,5056,5078,5087,5111,5161,5163,5230,5286,5294,5324,5368,5382,5383,5400,5415,5484,5575,5588,5593,5611,5669,5672,5688,5693,5698,5703,5708,5719,5737,5739,5740,5747,5749,5750,5752,5758,5764,5785,5787,5802,5804,5811,5817,5843,5864,5903,5916,5975,5996,6057,6113,6123,6156,6161,6177,6182,6222,6273,6307,6313,6321,6329,6337,6344,6352,6360,6369,6450,6473,6475,6503,6536,6547,6667,6708,6727,6907,6935,6936,6940,6947,7035,7047,7048,7054,7057,7066,7105,7146,7154,7197,7202,7260,7303,7304,7340,7397,7447,7480,7546,7553,7732,7733,7802,7888,7892,8039,8055,8179,8199,8201,8207,8208,8262,8291,8297,8329,8333,8334,8369,8375,8456,8464,8518,8532,8547,8603,8670,8833,8834,8835,8838,8839,8842,8971,9039,9054,9059,9060,9119,9147,9233,9594,9615,9616,9639,9651,9702,9707,9732,9768,9782,9790,9793,10049,10054,10092,10093,10094,10095,10104,10168,10192,10418,10692,10880,10882,10889,10937,11133,11178,11182,11205,11215,11316,11345,11346,11518,11519,11578,11594,11604,11642,11695,11720,11760,11800,11836,11853,11855,11874,11890,11895,11955,11986,12200,12224,12247,12250,12252,12254,12267,12398,12417,12549,12685,12689,12693,12698,12776,12860,12863,12891,12901,12902,12978,13099,13137,13268,13323,13330,13357,13662,13699,13722,13770,13783,13938,13998,14288,14361,14553,14588,14592,14649,14690,15036,15066,15145,15212,15417,15539,15775,15782,15892,15948,15954,16165,16543,17577,17624,17634,17645,17666,17713,17764,17836,17841,17846,17850,17854,17905,17954,18084,18085,18160,18176,18193,18224,18340,18345,18384,18385,18386,18387,18396,18471,18503,18514,18582,18594,18607,18615,18630,18634,18673,18694,18732,18740,18755,18821,18930,18975,18977,18982,19012,19035,19045,19055,19065,19078,19079,19156,19187,19199,19219,19228,19229,19232,19234,19279,19308,19342,19346,19349,19357,19381,19382,19415,19418,19419,19422,19427,19444,19446,19447,19449,19450,19462,19466,19530,19532,19543,19545,19549,19578,19581,19583,19584,19587,19592,19613,19615,19651,19717,19724,19734,19746,19753,19754,19759,19760,19762,19766,19767,19772,19773,19774,19779,19780,19803,19823,19871,19882,19884,19893,19897,19898,19899,19911,19912,19913,19918,19939,19943,19977,19985,19988,20014,20033,20039,20347,20375,20503,20504,20505,20551,20573,20657,20661,20791,20832,20922,20970,20971,21045,21396,21584,21633,21643,21646,21693,21699,21700,21731,22001,22023,22153,22188,22293,22352,22390,22422,22467,22470,22485,22489,22507,22538,22539,22541,22584,22587,22598,22605,22617,22815,22820,22939,22941,22942,22943,22944,23080,23083,23087,23098,23104,23107,23116,23130]]],["+",[9,9,[[0,2,2,0,2,[[14,1,1,0,1],[23,1,1,1,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[9,1,1,3,4,[[272,1,1,3,4]]],[13,1,1,4,5,[[382,1,1,4,5]]],[22,1,1,5,6,[[701,1,1,5,6]]],[25,1,1,6,7,[[804,1,1,6,7]]],[32,1,1,7,8,[[893,1,1,7,8]]],[38,1,1,8,9,[[926,1,1,8,9]]]],[378,599,3568,8179,11518,18085,20503,22587,23107]]],["Hereby",[4,4,[[0,2,2,0,2,[[41,2,2,0,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[5,1,1,3,4,[[189,1,1,3,4]]]],[1267,1285,4222,5903]]],["These",[3,3,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[12,1,1,2,3,[[341,1,1,2,3]]]],[2999,5294,10418]]],["This",[79,78,[[0,8,8,0,8,[[1,1,1,0,1],[8,2,2,1,3],[11,1,1,3,4],[16,1,1,4,5],[36,1,1,5,6],[41,1,1,6,7],[44,1,1,7,8]]],[1,1,1,8,9,[[61,1,1,8,9]]],[2,12,12,9,21,[[95,2,2,9,11],[96,2,2,11,13],[100,1,1,13,14],[101,1,1,14,15],[102,1,1,15,16],[103,3,3,16,19],[104,1,1,19,20],[106,1,1,20,21]]],[3,14,14,21,35,[[120,4,4,21,25],[121,1,1,25,26],[122,1,1,26,27],[123,2,2,27,29],[124,1,1,29,30],[132,1,1,30,31],[135,2,2,31,33],[147,1,1,33,34],[150,1,1,34,35]]],[4,1,1,35,36,[[186,1,1,35,36]]],[5,14,14,36,50,[[195,1,1,36,37],[199,3,3,37,40],[201,1,1,40,41],[202,1,1,41,42],[204,2,2,42,44],[205,6,6,44,50]]],[6,1,1,50,51,[[217,1,1,50,51]]],[11,2,2,51,53,[[318,1,1,51,52],[321,1,1,52,53]]],[13,1,1,53,54,[[368,1,1,53,54]]],[18,5,5,54,59,[[579,1,1,54,55],[595,1,1,55,56],[596,2,2,56,58],[609,1,1,58,59]]],[21,1,1,59,60,[[677,1,1,59,60]]],[22,5,5,60,65,[[692,1,1,60,61],[706,2,2,61,63],[728,1,1,63,64],[732,1,1,64,65]]],[23,1,1,65,66,[[782,1,1,65,66]]],[24,1,1,66,67,[[799,1,1,66,67]]],[25,5,5,67,72,[[806,1,1,67,68],[844,1,1,68,69],[846,1,1,69,70],[848,1,1,70,71],[849,1,1,71,72]]],[35,2,2,72,74,[[907,2,2,72,74]]],[37,5,4,74,78,[[915,4,3,74,77],[924,1,1,77,78]]]],[53,217,222,310,407,1115,1270,1375,1859,2858,2874,2914,2916,3043,3051,3111,3113,3143,3165,3200,3242,3747,3767,3771,3776,3821,3844,3934,3938,3963,4200,4291,4303,4685,4829,5843,6057,6156,6177,6182,6222,6273,6313,6321,6329,6337,6344,6352,6360,6369,6708,9702,9793,11215,15539,15892,15948,15954,16165,17634,17954,18176,18193,18673,18740,19898,20375,20551,21584,21643,21699,21731,22815,22820,22939,22942,22944,23087]]],["Thus",[4,4,[[2,1,1,0,1,[[105,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[11,2,2,2,4,[[317,1,1,2,3],[321,1,1,3,4]]]],[3204,8464,9651,9768]]],["her",[2,2,[[0,2,2,0,2,[[28,2,2,0,2]]]],[822,823]]],["herein",[1,1,[[0,1,1,0,1,[[33,1,1,0,1]]]],[1002]]],["herewith",[2,2,[[25,1,1,0,1,[[817,1,1,0,1]]],[38,1,1,1,2,[[927,1,1,1,2]]]],[20791,23130]]],["it",[5,5,[[3,1,1,0,1,[[130,1,1,0,1]]],[5,1,1,1,2,[[208,1,1,1,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[12,1,1,3,4,[[364,1,1,3,4]]],[25,1,1,4,5,[[822,1,1,4,5]]]],[4143,6450,7732,11133,20971]]],["like",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11853]]],["likewise",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6727]]],["made",[1,1,[[10,1,1,0,1,[[299,1,1,0,1]]]],[9054]]],["manner",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11890]]],["much",[1,1,[[13,1,1,0,1,[[393,1,1,0,1]]]],[11760]]],["one",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8839]]],["other",[2,2,[[10,2,2,0,2,[[293,2,2,0,2]]]],[8839,8842]]],["same",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20970]]],["she",[3,2,[[0,2,1,0,1,[[1,2,1,0,1]]],[21,1,1,1,2,[[676,1,1,1,2]]]],[53,17624]]],["so",[2,2,[[0,1,1,0,1,[[43,1,1,0,1]]],[6,1,1,1,2,[[229,1,1,1,2]]]],[1341,7048]]],["sort",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11178]]],["such",[6,6,[[4,2,2,0,2,[[165,1,1,0,1],[169,1,1,1,2]]],[6,1,1,2,3,[[229,1,1,2,3]]],[9,2,2,3,5,[[280,1,1,3,4],[285,1,1,4,5]]],[23,1,1,5,6,[[746,1,1,5,6]]]],[5286,5368,7054,8369,8547,18975]]],["that",[7,7,[[0,1,1,0,1,[[42,1,1,0,1]]],[4,1,1,1,2,[[156,1,1,1,2]]],[5,1,1,2,3,[[197,1,1,2,3]]],[6,1,1,3,4,[[211,1,1,3,4]]],[9,1,1,4,5,[[285,1,1,4,5]]],[13,1,1,5,6,[[400,1,1,5,6]]],[25,1,1,6,7,[[804,1,1,6,7]]]],[1305,5026,6123,6536,8518,11955,20504]]],["therefore",[1,1,[[13,1,1,0,1,[[385,1,1,0,1]]]],[11578]]],["these",[7,7,[[4,5,5,0,5,[[158,2,2,0,2],[163,1,1,2,3],[167,1,1,3,4],[171,1,1,4,5]]],[6,1,1,5,6,[[223,1,1,5,6]]],[9,1,1,6,7,[[273,1,1,6,7]]]],[5087,5111,5230,5324,5415,6907,8201]]],["thing",[4,4,[[8,1,1,0,1,[[239,1,1,0,1]]],[12,2,2,1,3,[[348,1,1,1,2],[358,1,1,2,3]]],[22,1,1,3,4,[[744,1,1,3,4]]]],[7304,10692,10937,18930]]],["this",[440,423,[[0,32,31,0,31,[[2,2,2,0,2],[11,2,2,2,4],[14,1,1,4,5],[18,1,1,5,6],[19,2,2,6,8],[20,2,1,8,9],[23,2,2,9,11],[25,2,2,11,13],[27,2,2,13,15],[28,2,2,15,17],[30,2,2,17,19],[33,2,2,19,21],[38,1,1,21,22],[40,1,1,22,23],[41,2,2,23,25],[42,1,1,25,26],[44,2,2,26,28],[47,1,1,28,29],[48,1,1,29,30],[49,1,1,30,31]]],[1,15,15,31,46,[[56,2,2,31,33],[57,1,1,33,34],[58,2,2,34,36],[61,2,2,36,38],[62,3,3,38,41],[63,1,1,41,42],[64,1,1,42,43],[66,1,1,43,44],[74,1,1,44,45],[81,1,1,45,46]]],[2,9,9,46,55,[[95,1,1,46,47],[96,2,2,47,49],[103,1,1,49,50],[104,1,1,50,51],[105,1,1,51,52],[114,1,1,52,53],[115,2,2,53,55]]],[3,16,16,55,71,[[120,1,1,55,56],[121,1,1,56,57],[122,1,1,57,58],[130,5,5,58,63],[132,2,2,63,65],[137,1,1,65,66],[144,1,1,66,67],[148,2,2,67,69],[150,2,2,69,71]]],[4,42,40,71,111,[[153,1,1,71,72],[155,2,2,72,74],[156,3,3,74,77],[157,2,2,77,79],[161,2,2,79,81],[169,2,2,81,83],[170,1,1,83,84],[174,1,1,84,85],[178,1,1,85,86],[179,3,3,86,89],[180,2,2,89,91],[181,6,5,91,96],[182,1,1,96,97],[183,9,8,97,105],[184,4,4,105,109],[185,2,2,109,111]]],[5,9,9,111,120,[[187,1,1,111,112],[190,1,1,112,113],[192,1,1,113,114],[197,1,1,114,115],[199,1,1,115,116],[204,1,1,116,117],[209,2,2,117,119],[210,1,1,119,120]]],[6,12,11,120,131,[[212,2,1,120,121],[216,1,1,121,122],[225,4,4,122,126],[229,2,2,126,128],[230,2,2,128,130],[231,1,1,130,131]]],[7,5,4,131,135,[[232,1,1,131,132],[233,1,1,132,133],[235,3,2,133,135]]],[8,12,12,135,147,[[237,1,1,135,136],[239,1,1,136,137],[241,1,1,137,138],[244,1,1,138,139],[246,1,1,139,140],[247,1,1,140,141],[249,2,2,141,143],[255,1,1,143,144],[257,1,1,144,145],[260,2,2,145,147]]],[9,17,16,147,163,[[267,1,1,147,148],[268,1,1,148,149],[273,4,3,149,152],[277,1,1,152,153],[278,2,2,153,155],[279,3,3,155,158],[280,1,1,158,159],[283,1,1,159,160],[285,1,1,160,161],[288,1,1,161,162],[289,1,1,162,163]]],[10,11,11,163,174,[[293,4,4,163,167],[297,1,1,167,168],[298,1,1,168,169],[299,2,2,169,171],[301,2,2,171,173],[304,1,1,173,174]]],[11,18,17,174,191,[[315,1,1,174,175],[316,3,3,175,178],[318,1,1,178,179],[320,1,1,179,180],[321,2,2,180,182],[330,2,2,182,184],[331,4,4,184,188],[332,2,1,188,189],[335,2,2,189,191]]],[12,4,4,191,195,[[354,3,3,191,194],[366,1,1,194,195]]],[13,15,15,195,210,[[367,1,1,195,196],[372,1,1,196,197],[373,2,2,197,199],[382,1,1,199,200],[386,2,2,200,202],[387,1,1,202,203],[390,1,1,203,204],[391,1,1,204,205],[395,1,1,205,206],[396,1,1,206,207],[397,1,1,207,208],[398,1,1,208,209],[401,1,1,209,210]]],[14,7,7,210,217,[[409,1,1,210,211],[410,1,1,211,212],[411,3,3,212,215],[412,2,2,215,217]]],[15,8,7,217,224,[[417,1,1,217,218],[418,1,1,218,219],[421,1,1,219,220],[425,5,4,220,224]]],[16,4,3,224,227,[[429,2,1,224,225],[434,2,2,225,227]]],[17,16,16,227,243,[[436,1,1,227,228],[437,2,2,228,230],[440,1,1,230,231],[445,1,1,231,232],[447,1,1,232,233],[452,1,1,233,234],[454,1,1,234,235],[455,1,1,235,236],[456,1,1,236,237],[468,1,1,237,238],[469,1,1,238,239],[470,1,1,239,240],[472,2,2,240,242],[477,1,1,242,243]]],[18,15,15,243,258,[[484,1,1,243,244],[504,1,1,244,245],[509,1,1,245,246],[518,1,1,246,247],[521,2,2,247,249],[526,1,1,249,250],[527,1,1,250,251],[550,1,1,251,252],[551,1,1,252,253],[555,1,1,253,254],[557,1,1,254,255],[569,1,1,255,256],[586,2,2,256,258]]],[19,1,1,258,259,[[633,1,1,258,259]]],[21,2,2,259,261,[[673,1,1,259,260],[678,1,1,260,261]]],[22,36,34,261,295,[[679,1,1,261,262],[681,1,1,262,263],[683,1,1,263,264],[687,4,4,264,268],[688,1,1,268,269],[690,1,1,269,270],[692,1,1,270,271],[701,1,1,271,272],[705,1,1,272,273],[706,1,1,273,274],[708,1,1,274,275],[714,3,2,275,277],[715,4,4,277,281],[716,2,1,281,282],[719,1,1,282,283],[720,1,1,283,284],[721,1,1,284,285],[723,1,1,285,286],[724,1,1,286,287],[725,1,1,287,288],[726,3,3,288,291],[729,1,1,291,292],[732,1,1,292,293],[734,1,1,293,294],[737,1,1,294,295]]],[23,92,87,295,382,[[746,2,2,295,297],[747,1,1,297,298],[748,3,3,298,301],[749,3,3,301,304],[752,1,1,304,305],[753,2,2,305,307],[754,1,1,307,308],[755,4,4,308,312],[757,1,1,312,313],[758,1,1,313,314],[760,4,4,314,318],[761,3,2,318,320],[763,4,4,320,324],[764,1,1,324,325],[765,5,5,325,330],[766,3,2,330,332],[768,2,2,332,334],[769,3,3,334,337],[770,7,6,337,343],[771,2,2,343,345],[773,1,1,345,346],[775,2,2,346,348],[776,13,12,348,360],[777,2,2,360,362],[778,2,2,362,364],[780,2,1,364,365],[781,3,3,365,368],[782,6,6,368,374],[783,1,1,374,375],[784,1,1,375,376],[786,3,3,376,379],[788,3,3,379,382]]],[24,1,1,382,383,[[798,1,1,382,383]]],[25,14,14,383,397,[[804,1,1,383,384],[807,1,1,384,385],[812,2,2,385,387],[818,1,1,387,388],[821,1,1,388,389],[822,1,1,389,390],[824,1,1,390,391],[837,1,1,391,392],[844,1,1,392,393],[846,2,2,393,395],[848,2,2,395,397]]],[26,2,2,397,399,[[858,1,1,397,398],[859,1,1,398,399]]],[27,2,2,399,401,[[866,1,1,399,400],[868,1,1,400,401]]],[28,3,2,401,403,[[876,2,1,401,402],[878,1,1,402,403]]],[29,6,6,403,409,[[882,1,1,403,404],[885,2,2,404,406],[886,2,2,406,408],[887,1,1,408,409]]],[31,3,3,409,412,[[889,3,3,409,412]]],[32,4,4,412,416,[[893,1,1,412,413],[894,2,2,413,415],[895,1,1,415,416]]],[37,4,4,416,420,[[915,2,2,416,418],[924,2,2,418,420]]],[38,3,3,420,423,[[925,1,1,420,421],[926,2,2,421,423]]]],[68,69,305,316,367,477,500,501,523,596,598,695,702,788,795,820,822,886,925,984,995,1158,1234,1273,1280,1301,1377,1381,1455,1501,1530,1702,1708,1742,1756,1758,1841,1842,1872,1877,1881,1894,1921,1997,2198,2451,2863,2880,2890,3168,3171,3235,3482,3540,3551,3774,3822,3836,4111,4116,4122,4135,4143,4215,4239,4357,4591,4723,4740,4818,4828,4897,4987,4993,5012,5026,5048,5056,5078,5161,5163,5382,5383,5400,5484,5575,5588,5593,5611,5669,5672,5688,5693,5698,5703,5708,5719,5737,5739,5740,5747,5749,5750,5752,5758,5785,5787,5802,5804,5811,5817,5864,5916,5975,6113,6161,6307,6473,6475,6503,6547,6667,6935,6936,6940,6947,7035,7047,7057,7066,7105,7146,7154,7197,7202,7260,7303,7340,7397,7447,7480,7546,7553,7733,7802,7888,7892,8039,8055,8199,8207,8208,8262,8291,8297,8329,8333,8334,8375,8456,8532,8603,8670,8833,8834,8835,8838,8971,9039,9059,9060,9119,9147,9233,9594,9615,9616,9639,9707,9732,9782,9790,10049,10054,10092,10093,10094,10095,10104,10168,10192,10880,10882,10889,11182,11205,11316,11345,11346,11519,11594,11604,11642,11695,11720,11800,11836,11855,11895,11986,12200,12224,12247,12250,12252,12254,12267,12398,12417,12549,12685,12689,12693,12698,12776,12860,12863,12891,12901,12902,12978,13099,13137,13268,13323,13330,13357,13662,13699,13722,13770,13783,13938,13998,14288,14361,14553,14588,14592,14649,14690,15036,15066,15145,15212,15417,15775,15782,16543,17577,17645,17666,17713,17764,17836,17841,17846,17850,17854,17905,17954,18084,18160,18176,18224,18340,18345,18384,18385,18386,18387,18396,18471,18503,18514,18582,18594,18607,18615,18630,18634,18694,18732,18755,18821,18977,18982,19012,19035,19045,19055,19065,19078,19079,19156,19187,19199,19219,19228,19229,19232,19234,19279,19308,19342,19346,19349,19357,19381,19382,19415,19418,19419,19422,19427,19444,19446,19447,19449,19450,19462,19466,19530,19532,19543,19545,19549,19578,19581,19583,19584,19587,19592,19613,19615,19651,19717,19724,19734,19746,19753,19754,19759,19760,19762,19766,19767,19772,19773,19774,19779,19780,19803,19823,19871,19882,19884,19893,19897,19899,19911,19912,19913,19918,19939,19943,19977,19985,19988,20014,20033,20039,20347,20505,20573,20657,20661,20832,20922,20970,21045,21396,21584,21633,21646,21693,21700,22001,22023,22153,22188,22293,22352,22422,22467,22470,22485,22489,22507,22538,22539,22541,22584,22598,22605,22617,22941,22943,23080,23083,23098,23104,23116]]],["thus",[12,9,[[1,1,1,0,1,[[63,1,1,0,1]]],[3,1,1,1,2,[[120,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[5,2,1,3,4,[[193,2,1,3,4]]],[9,3,1,4,5,[[283,3,1,4,5]]],[11,2,2,5,7,[[317,1,1,5,6],[321,1,1,6,7]]],[13,1,1,7,8,[[397,1,1,7,8]]],[29,1,1,8,9,[[880,1,1,8,9]]]],[1900,3762,5764,5996,8464,9651,9768,11874,22390]]]]},{"k":"H2064","v":[["endued",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[850]]]]},{"k":"H2065","v":[["dowry",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[850]]]]},{"k":"H2066","v":[["Zabad",[8,8,[[12,4,4,0,4,[[339,2,2,0,2],[344,1,1,2,3],[348,1,1,3,4]]],[13,1,1,4,5,[[390,1,1,4,5]]],[14,3,3,5,8,[[412,3,3,5,8]]]],[10342,10343,10556,10714,11703,12279,12285,12295]]]]},{"k":"H2067","v":[["Zabdi",[6,6,[[5,3,3,0,3,[[193,3,3,0,3]]],[12,2,2,3,5,[[345,1,1,3,4],[364,1,1,4,5]]],[15,1,1,5,6,[[423,1,1,5,6]]]],[5977,5993,5994,10594,11136,12605]]]]},{"k":"H2068","v":[["Zabdiel",[2,2,[[12,1,1,0,1,[[364,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[11111,12602]]]]},{"k":"H2069","v":[["Zebadiah",[9,9,[[12,5,5,0,5,[[345,2,2,0,2],[349,1,1,2,3],[363,1,1,3,4],[364,1,1,4,5]]],[13,2,2,5,7,[[383,1,1,5,6],[385,1,1,6,7]]],[14,2,2,7,9,[[410,1,1,7,8],[412,1,1,8,9]]]],[10590,10592,10727,11079,11116,11531,11587,12209,12272]]]]},{"k":"H2070","v":[["*",[2,2,[[20,1,1,0,1,[[668,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]]],[17494,17800]]],["flies",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17494]]],["fly",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17800]]]]},{"k":"H2071","v":[["Zabud",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8849]]]]},{"k":"H2072","v":[["Zabbud",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12215]]]]},{"k":"H2073","v":[["*",[5,5,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[18,1,1,2,3,[[526,1,1,2,3]]],[22,1,1,3,4,[[741,1,1,3,4]]],[34,1,1,4,5,[[905,1,1,4,5]]]],[8998,11284,14662,18881,22779]]],["+",[2,2,[[18,1,1,0,1,[[526,1,1,0,1]]],[22,1,1,1,2,[[741,1,1,1,2]]]],[14662,18881]]],["habitation",[2,2,[[13,1,1,0,1,[[372,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[11284,22779]]],["in",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[8998]]]]},{"k":"H2074","v":[["*",[44,42,[[0,4,4,0,4,[[29,1,1,0,1],[34,1,1,1,2],[45,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[3,10,9,5,14,[[117,3,3,5,8],[118,2,1,8,9],[123,1,1,9,10],[126,1,1,10,11],[129,1,1,11,12],[142,1,1,12,13],[150,1,1,13,14]]],[4,3,2,14,16,[[179,1,1,14,15],[185,2,1,15,16]]],[5,6,6,16,22,[[205,4,4,16,20],[207,2,2,20,22]]],[6,6,6,22,28,[[211,1,1,22,23],[214,2,2,23,25],[215,2,2,25,27],[216,1,1,27,28]]],[12,6,6,28,34,[[339,1,1,28,29],[343,2,2,29,31],[349,2,2,31,33],[364,1,1,33,34]]],[13,3,3,34,37,[[396,3,3,34,37]]],[18,1,1,37,38,[[545,1,1,37,38]]],[22,1,1,38,39,[[687,1,1,38,39]]],[25,3,3,39,42,[[849,3,3,39,42]]]],[850,1034,1400,1486,1535,3613,3634,3635,3665,3874,4004,4085,4515,4841,5598,5828,6331,6337,6348,6355,6388,6415,6539,6605,6609,6637,6641,6689,10307,10517,10531,10753,10760,11128,11837,11838,11845,14927,17830,21728,21729,21735]]],["+",[5,5,[[5,1,1,0,1,[[207,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[12,2,2,2,4,[[343,1,1,2,3],[349,1,1,3,4]]],[13,1,1,4,5,[[396,1,1,4,5]]]],[6415,6637,10531,10753,11838]]],["Zebulun",[39,37,[[0,4,4,0,4,[[29,1,1,0,1],[34,1,1,1,2],[45,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[3,10,9,5,14,[[117,3,3,5,8],[118,2,1,8,9],[123,1,1,9,10],[126,1,1,10,11],[129,1,1,11,12],[142,1,1,12,13],[150,1,1,13,14]]],[4,3,2,14,16,[[179,1,1,14,15],[185,2,1,15,16]]],[5,5,5,16,21,[[205,4,4,16,20],[207,1,1,20,21]]],[6,5,5,21,26,[[211,1,1,21,22],[214,2,2,22,24],[215,1,1,24,25],[216,1,1,25,26]]],[12,4,4,26,30,[[339,1,1,26,27],[343,1,1,27,28],[349,1,1,28,29],[364,1,1,29,30]]],[13,2,2,30,32,[[396,2,2,30,32]]],[18,1,1,32,33,[[545,1,1,32,33]]],[22,1,1,33,34,[[687,1,1,33,34]]],[25,3,3,34,37,[[849,3,3,34,37]]]],[850,1034,1400,1486,1535,3613,3634,3635,3665,3874,4004,4085,4515,4841,5598,5828,6331,6337,6348,6355,6388,6539,6605,6609,6641,6689,10307,10517,10760,11128,11837,11845,14927,17830,21728,21729,21735]]]]},{"k":"H2075","v":[["*",[4,3,[[3,1,1,0,1,[[142,1,1,0,1]]],[6,3,2,1,3,[[222,3,2,1,3]]]],[4516,6880,6881]]],["Zebulonite",[2,2,[[6,2,2,0,2,[[222,2,2,0,2]]]],[6880,6881]]],["Zebulun",[1,1,[[6,1,1,0,1,[[222,1,1,0,1]]]],[6881]]],["Zebulunites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4516]]]]},{"k":"H2076","v":[["*",[134,127,[[0,2,2,0,2,[[30,1,1,0,1],[45,1,1,1,2]]],[1,18,17,2,19,[[52,1,1,2,3],[54,3,3,3,6],[57,7,6,6,12],[62,1,1,12,13],[69,1,1,13,14],[71,1,1,14,15],[72,1,1,15,16],[73,1,1,16,17],[81,1,1,17,18],[83,1,1,18,19]]],[2,8,5,19,24,[[98,1,1,19,20],[106,3,2,20,22],[108,2,1,22,23],[111,2,1,23,24]]],[3,1,1,24,25,[[138,1,1,24,25]]],[4,12,12,25,37,[[164,2,2,25,27],[167,1,1,27,28],[168,4,4,28,32],[169,1,1,32,33],[170,1,1,33,34],[179,1,1,34,35],[184,1,1,35,36],[185,1,1,36,37]]],[5,1,1,37,38,[[194,1,1,37,38]]],[6,2,2,38,40,[[212,1,1,38,39],[226,1,1,39,40]]],[8,14,14,40,54,[[236,3,3,40,43],[237,3,3,43,46],[241,1,1,46,47],[245,1,1,47,48],[246,1,1,48,49],[250,2,2,49,51],[251,2,2,51,53],[263,1,1,53,54]]],[9,2,2,54,56,[[272,1,1,54,55],[281,1,1,55,56]]],[10,15,14,56,70,[[291,3,3,56,59],[293,3,3,59,62],[298,4,3,62,65],[301,1,1,65,66],[302,1,1,66,67],[303,1,1,67,68],[309,1,1,68,69],[312,1,1,69,70]]],[11,8,8,70,78,[[324,1,1,70,71],[326,1,1,71,72],[327,2,2,72,74],[328,1,1,74,75],[329,2,2,75,77],[335,1,1,77,78]]],[12,3,3,78,81,[[352,1,1,78,79],[358,1,1,79,80],[366,1,1,80,81]]],[13,14,13,81,94,[[371,1,1,81,82],[373,2,2,82,84],[377,1,1,84,85],[381,1,1,85,86],[384,1,1,86,87],[394,3,2,87,89],[396,1,1,89,90],[399,3,3,90,93],[400,1,1,93,94]]],[14,1,1,94,95,[[406,1,1,94,95]]],[15,2,2,95,97,[[416,1,1,95,96],[424,1,1,96,97]]],[18,9,9,97,106,[[481,1,1,97,98],[504,1,1,98,99],[527,2,2,99,101],[531,1,1,101,102],[583,2,2,102,104],[584,1,1,104,105],[593,1,1,105,106]]],[20,2,1,106,107,[[667,2,1,106,107]]],[22,3,3,107,110,[[735,1,1,107,108],[743,1,1,108,109],[744,1,1,109,110]]],[25,5,5,110,115,[[817,1,1,110,111],[821,1,1,111,112],[835,1,1,112,113],[840,2,2,113,115]]],[27,6,6,115,121,[[865,2,2,115,117],[869,1,1,117,118],[872,1,1,118,119],[873,1,1,119,120],[874,1,1,120,121]]],[31,2,2,121,123,[[889,1,1,121,122],[890,1,1,122,123]]],[34,1,1,123,124,[[903,1,1,123,124]]],[37,1,1,124,125,[[924,1,1,124,125]]],[38,2,2,125,127,[[925,2,2,125,127]]]],[927,1387,1597,1635,1640,1649,1718,1735,1736,1737,1738,1739,1882,2075,2133,2162,2182,2446,2511,2957,3240,3242,3286,3398,4415,5255,5261,5340,5344,5346,5347,5348,5365,5387,5592,5775,5829,6033,6550,6972,7215,7216,7233,7253,7255,7259,7346,7426,7460,7575,7581,7597,7600,7966,8170,8401,8726,8736,8742,8818,8819,8820,8990,9047,9048,9116,9183,9186,9408,9523,9853,9900,9929,9960,9967,10018,10019,10185,10817,10962,11185,11274,11328,11329,11430,11501,11544,11768,11787,11849,11924,11925,11930,11937,12112,12361,12667,13970,14291,14682,14691,14731,15688,15689,15721,15865,17477,18772,18900,18925,20782,20923,21316,21465,21467,22146,22147,22207,22242,22263,22268,22547,22557,22747,23089,23097,23103]]],["+",[13,13,[[1,1,1,0,1,[[57,1,1,0,1]]],[2,1,1,1,2,[[106,1,1,1,2]]],[4,2,2,2,4,[[168,2,2,2,4]]],[8,2,2,4,6,[[237,1,1,4,5],[250,1,1,5,6]]],[9,1,1,6,7,[[281,1,1,6,7]]],[10,2,2,7,9,[[298,1,1,7,8],[303,1,1,8,9]]],[11,1,1,9,10,[[335,1,1,9,10]]],[13,1,1,10,11,[[373,1,1,10,11]]],[18,1,1,11,12,[[583,1,1,11,12]]],[20,1,1,12,13,[[667,1,1,12,13]]]],[1736,3242,5347,5348,7259,7575,8401,9048,9186,10185,11329,15688,17477]]],["Offer",[2,2,[[18,2,2,0,2,[[481,1,1,0,1],[527,1,1,1,2]]]],[13970,14682]]],["kill",[3,3,[[4,2,2,0,2,[[164,2,2,0,2]]],[25,1,1,2,3,[[835,1,1,2,3]]]],[5255,5261,21316]]],["killed",[2,2,[[8,1,1,0,1,[[263,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[7966,11544]]],["offer",[15,12,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,6,3,1,4,[[106,2,1,1,2],[108,2,1,2,3],[111,2,1,3,4]]],[4,3,3,4,7,[[170,1,1,4,5],[179,1,1,5,6],[185,1,1,6,7]]],[6,1,1,7,8,[[226,1,1,7,8]]],[8,1,1,8,9,[[236,1,1,8,9]]],[18,2,2,9,11,[[504,1,1,9,10],[593,1,1,10,11]]],[22,1,1,11,12,[[735,1,1,11,12]]]],[2162,3240,3286,3398,5387,5592,5829,6972,7233,14291,15865,18772]]],["offered",[14,14,[[0,2,2,0,2,[[30,1,1,0,1],[45,1,1,1,2]]],[3,1,1,2,3,[[138,1,1,2,3]]],[8,2,2,3,5,[[236,1,1,3,4],[237,1,1,4,5]]],[10,3,3,5,8,[[298,2,2,5,7],[312,1,1,7,8]]],[12,1,1,8,9,[[352,1,1,8,9]]],[13,2,2,9,11,[[373,1,1,9,10],[381,1,1,10,11]]],[15,1,1,11,12,[[424,1,1,11,12]]],[25,1,1,12,13,[[821,1,1,12,13]]],[31,1,1,13,14,[[889,1,1,13,14]]]],[927,1387,4415,7216,7253,9047,9048,9523,10817,11328,11501,12667,20923,22547]]],["offereth",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14691]]],["offering",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11849]]],["sacrifice",[43,43,[[1,13,13,0,13,[[52,1,1,0,1],[54,3,3,1,4],[57,6,6,4,10],[62,1,1,10,11],[69,1,1,11,12],[83,1,1,12,13]]],[2,1,1,13,14,[[98,1,1,13,14]]],[4,3,3,14,17,[[167,1,1,14,15],[168,1,1,15,16],[169,1,1,16,17]]],[8,5,5,17,22,[[236,1,1,17,18],[245,1,1,18,19],[250,1,1,19,20],[251,2,2,20,22]]],[10,1,1,22,23,[[293,1,1,22,23]]],[11,3,3,23,26,[[326,1,1,23,24],[329,2,2,24,26]]],[13,3,3,26,29,[[377,1,1,26,27],[394,1,1,27,28],[399,1,1,28,29]]],[14,1,1,29,30,[[406,1,1,29,30]]],[15,1,1,30,31,[[416,1,1,30,31]]],[18,2,2,31,33,[[531,1,1,31,32],[584,1,1,32,33]]],[25,1,1,33,34,[[840,1,1,33,34]]],[27,5,5,34,39,[[865,2,2,34,36],[869,1,1,36,37],[873,1,1,37,38],[874,1,1,38,39]]],[31,1,1,39,40,[[890,1,1,39,40]]],[34,1,1,40,41,[[903,1,1,40,41]]],[37,1,1,41,42,[[924,1,1,41,42]]],[38,1,1,42,43,[[925,1,1,42,43]]]],[1597,1635,1640,1649,1718,1735,1736,1737,1738,1739,1882,2075,2511,2957,5340,5344,5365,7215,7426,7581,7597,7600,8820,9900,10018,10019,11430,11787,11925,12112,12361,14731,15721,21465,22146,22147,22207,22263,22268,22557,22747,23089,23097]]],["sacrificed",[28,28,[[1,2,2,0,2,[[73,1,1,0,1],[81,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[5,1,1,3,4,[[194,1,1,3,4]]],[6,1,1,4,5,[[212,1,1,4,5]]],[8,3,3,5,8,[[237,1,1,5,6],[241,1,1,6,7],[246,1,1,7,8]]],[9,1,1,8,9,[[272,1,1,8,9]]],[10,3,3,9,12,[[293,2,2,9,11],[301,1,1,11,12]]],[11,4,4,12,16,[[324,1,1,12,13],[327,2,2,13,15],[328,1,1,15,16]]],[12,2,2,16,18,[[358,1,1,16,17],[366,1,1,17,18]]],[13,6,6,18,24,[[371,1,1,18,19],[394,2,2,19,21],[399,2,2,21,23],[400,1,1,23,24]]],[18,1,1,24,25,[[583,1,1,24,25]]],[25,2,2,25,27,[[817,1,1,25,26],[840,1,1,26,27]]],[27,1,1,27,28,[[872,1,1,27,28]]]],[2182,2446,5775,6033,6550,7255,7346,7460,8170,8818,8819,9116,9853,9929,9960,9967,10962,11185,11274,11768,11787,11924,11930,11937,15689,20782,21467,22242]]],["sacrificedst",[1,1,[[4,1,1,0,1,[[168,1,1,0,1]]]],[5346]]],["sacrificeth",[5,5,[[1,1,1,0,1,[[71,1,1,0,1]]],[20,1,1,1,2,[[667,1,1,1,2]]],[22,2,2,2,4,[[743,1,1,2,3],[744,1,1,3,4]]],[38,1,1,4,5,[[925,1,1,4,5]]]],[2133,17477,18900,18925,23103]]],["sacrificing",[2,2,[[10,2,2,0,2,[[298,1,1,0,1],[302,1,1,1,2]]]],[8990,9183]]],["slain",[2,2,[[10,2,2,0,2,[[291,2,2,0,2]]]],[8736,8742]]],["slew",[2,2,[[10,2,2,0,2,[[291,1,1,0,1],[309,1,1,1,2]]]],[8726,9408]]]]},{"k":"H2077","v":[["*",[162,153,[[0,2,2,0,2,[[30,1,1,0,1],[45,1,1,1,2]]],[1,9,8,2,10,[[59,1,1,2,3],[61,1,1,3,4],[67,1,1,4,5],[72,1,1,5,6],[73,1,1,6,7],[78,1,1,7,8],[83,3,2,8,10]]],[2,35,32,10,42,[[92,4,4,10,14],[93,4,4,14,18],[96,15,13,18,31],[98,1,1,31,32],[99,1,1,32,33],[106,4,3,33,36],[108,2,2,36,38],[111,2,2,38,40],[112,2,2,40,42]]],[3,20,20,42,62,[[122,2,2,42,44],[123,13,13,44,57],[126,1,1,57,58],[131,3,3,58,61],[141,1,1,61,62]]],[4,6,6,62,68,[[164,3,3,62,65],[170,1,1,65,66],[184,1,1,66,67],[185,1,1,67,68]]],[5,5,5,68,73,[[208,5,5,68,73]]],[6,1,1,73,74,[[226,1,1,73,74]]],[8,17,15,74,89,[[236,1,1,74,75],[237,3,3,75,78],[238,1,1,78,79],[241,1,1,79,80],[244,2,2,80,82],[245,1,1,82,83],[246,1,1,83,84],[250,2,1,84,85],[251,3,2,85,87],[255,2,2,87,89]]],[9,1,1,89,90,[[281,1,1,89,90]]],[10,3,3,90,93,[[298,2,2,90,92],[302,1,1,92,93]]],[11,4,4,93,97,[[317,1,1,93,94],[322,2,2,94,96],[328,1,1,96,97]]],[12,2,1,97,98,[[366,2,1,97,98]]],[13,8,7,98,105,[[373,4,4,98,102],[395,2,1,102,103],[396,1,1,103,104],[399,1,1,104,105]]],[15,1,1,105,106,[[424,1,1,105,106]]],[18,11,11,106,117,[[481,1,1,106,107],[504,1,1,107,108],[517,1,1,108,109],[527,2,2,109,111],[528,3,3,111,114],[583,1,1,114,115],[584,1,1,115,116],[593,1,1,116,117]]],[19,5,5,117,122,[[634,1,1,117,118],[642,1,1,118,119],[644,1,1,119,120],[648,2,2,120,122]]],[20,1,1,122,123,[[663,1,1,122,123]]],[22,7,7,123,130,[[679,1,1,123,124],[697,1,1,124,125],[712,1,1,125,126],[721,2,2,126,128],[734,1,1,128,129],[735,1,1,129,130]]],[23,6,6,130,136,[[750,1,1,130,131],[751,2,2,131,133],[761,1,1,133,134],[777,1,1,134,135],[790,1,1,135,136]]],[25,7,6,136,142,[[821,1,1,136,137],[840,3,2,137,139],[841,1,1,139,140],[845,1,1,140,141],[847,1,1,141,142]]],[26,1,1,142,143,[[858,1,1,142,143]]],[27,5,5,143,148,[[864,1,1,143,144],[865,1,1,144,145],[867,1,1,145,146],[869,1,1,146,147],[870,1,1,147,148]]],[29,2,2,148,150,[[882,1,1,148,149],[883,1,1,149,150]]],[31,1,1,150,151,[[889,1,1,150,151]]],[35,2,2,151,153,[[906,2,2,151,153]]]],[927,1387,1802,1843,2011,2162,2182,2364,2511,2521,2779,2781,2784,2787,2805,2821,2826,2830,2890,2891,2892,2894,2895,2896,2897,2899,2900,2908,2911,2913,2916,2971,2991,3240,3242,3243,3286,3287,3390,3398,3421,3439,3840,3841,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3938,3998,4156,4158,4161,4473,5246,5251,5267,5387,5796,5829,6449,6452,6453,6454,6455,6972,7233,7253,7259,7269,7290,7346,7403,7404,7426,7460,7582,7598,7600,7736,7759,8401,9047,9048,9178,9664,9812,9817,9978,11185,11325,11328,11329,11336,11822,11849,11924,12667,13970,14291,14531,14673,14676,14707,14708,14710,15679,15721,15865,16589,16815,16874,16987,17011,17398,17665,18025,18309,18528,18529,18760,18772,19109,19140,19141,19383,19793,20055,20923,21465,21467,21519,21610,21679,22015,22132,22152,22173,22207,22212,22414,22448,22547,22794,22795]]],["+",[15,15,[[1,2,2,0,2,[[78,1,1,0,1],[83,1,1,1,2]]],[2,8,8,2,10,[[92,2,2,2,4],[93,1,1,4,5],[96,4,4,5,9],[99,1,1,9,10]]],[8,1,1,10,11,[[250,1,1,10,11]]],[19,2,2,11,13,[[634,1,1,11,12],[648,1,1,12,13]]],[25,1,1,13,14,[[840,1,1,13,14]]],[27,1,1,14,15,[[865,1,1,14,15]]]],[2364,2511,2781,2787,2830,2899,2908,2911,2913,2991,7582,16589,16987,21467,22152]]],["Sacrifice",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14531]]],["offer",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3287]]],["offerings",[5,5,[[1,1,1,0,1,[[73,1,1,0,1]]],[2,1,1,1,2,[[106,1,1,1,2]]],[5,1,1,2,3,[[208,1,1,2,3]]],[13,2,2,3,5,[[396,1,1,3,4],[399,1,1,4,5]]]],[2182,3240,6449,11849,11924]]],["sacrifice",[91,87,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,4,3,1,4,[[61,1,1,1,2],[72,1,1,2,3],[83,2,1,3,4]]],[2,23,22,4,26,[[92,2,2,4,6],[93,3,3,6,9],[96,11,10,9,19],[98,1,1,19,20],[106,1,1,20,21],[108,1,1,21,22],[111,2,2,22,24],[112,2,2,24,26]]],[3,18,18,26,44,[[122,2,2,26,28],[123,13,13,28,41],[131,3,3,41,44]]],[4,1,1,44,45,[[170,1,1,44,45]]],[5,1,1,45,46,[[208,1,1,45,46]]],[6,1,1,46,47,[[226,1,1,46,47]]],[8,12,11,47,58,[[236,1,1,47,48],[237,3,3,48,51],[238,1,1,51,52],[244,2,2,52,54],[251,3,2,54,56],[255,2,2,56,58]]],[10,3,3,58,61,[[298,2,2,58,60],[302,1,1,60,61]]],[11,3,3,61,64,[[317,1,1,61,62],[322,1,1,62,63],[328,1,1,63,64]]],[13,2,2,64,66,[[373,2,2,64,66]]],[18,3,3,66,69,[[527,1,1,66,67],[528,1,1,67,68],[593,1,1,68,69]]],[19,2,2,69,71,[[642,1,1,69,70],[648,1,1,70,71]]],[20,1,1,71,72,[[663,1,1,71,72]]],[22,3,3,72,75,[[697,1,1,72,73],[712,1,1,73,74],[735,1,1,74,75]]],[23,2,2,75,77,[[777,1,1,75,76],[790,1,1,76,77]]],[25,5,4,77,81,[[840,2,1,77,78],[841,1,1,78,79],[845,1,1,79,80],[847,1,1,80,81]]],[26,1,1,81,82,[[858,1,1,81,82]]],[27,2,2,82,84,[[864,1,1,82,83],[867,1,1,83,84]]],[31,1,1,84,85,[[889,1,1,84,85]]],[35,2,2,85,87,[[906,2,2,85,87]]]],[927,1843,2162,2521,2779,2784,2805,2821,2826,2890,2891,2892,2894,2895,2896,2897,2900,2908,2916,2971,3243,3286,3390,3398,3421,3439,3840,3841,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3938,4156,4158,4161,5387,6452,6972,7233,7253,7259,7269,7290,7403,7404,7598,7600,7736,7759,9047,9048,9178,9664,9812,9978,11329,11336,14673,14707,15865,16815,17011,17398,18025,18309,18772,19793,20055,21465,21519,21610,21679,22015,22132,22173,22547,22794,22795]]],["sacrifices",[49,47,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,2,2,1,3,[[59,1,1,1,2],[67,1,1,2,3]]],[2,2,2,3,5,[[106,2,2,3,5]]],[3,2,2,5,7,[[126,1,1,5,6],[141,1,1,6,7]]],[4,5,5,7,12,[[164,3,3,7,10],[184,1,1,10,11],[185,1,1,11,12]]],[5,3,3,12,15,[[208,3,3,12,15]]],[8,4,4,15,19,[[241,1,1,15,16],[245,1,1,16,17],[246,1,1,17,18],[250,1,1,18,19]]],[9,1,1,19,20,[[281,1,1,19,20]]],[11,1,1,20,21,[[322,1,1,20,21]]],[12,2,1,21,22,[[366,2,1,21,22]]],[13,4,3,22,25,[[373,2,2,22,24],[395,2,1,24,25]]],[15,1,1,25,26,[[424,1,1,25,26]]],[18,7,7,26,33,[[481,1,1,26,27],[504,1,1,27,28],[527,1,1,28,29],[528,2,2,29,31],[583,1,1,31,32],[584,1,1,32,33]]],[19,1,1,33,34,[[644,1,1,33,34]]],[22,4,4,34,38,[[679,1,1,34,35],[721,2,2,35,37],[734,1,1,37,38]]],[23,4,4,38,42,[[750,1,1,38,39],[751,2,2,39,41],[761,1,1,41,42]]],[25,1,1,42,43,[[821,1,1,42,43]]],[27,2,2,43,45,[[869,1,1,43,44],[870,1,1,44,45]]],[29,2,2,45,47,[[882,1,1,45,46],[883,1,1,46,47]]]],[1387,1802,2011,3240,3242,3998,4473,5246,5251,5267,5796,5829,6453,6454,6455,7346,7426,7460,7582,8401,9817,11185,11325,11328,11822,12667,13970,14291,14676,14708,14710,15679,15721,16874,17665,18528,18529,18760,19109,19140,19141,19383,20923,22207,22212,22414,22448]]]]},{"k":"H2078","v":[["Zebah",[12,9,[[6,11,8,0,8,[[218,11,8,0,8]]],[18,1,1,8,9,[[560,1,1,8,9]]]],[6724,6725,6726,6729,6731,6734,6737,6740,15252]]]]},{"k":"H2079","v":[["Zabbai",[2,2,[[14,1,1,0,1,[[412,1,1,0,1]]],[15,1,1,1,2,[[415,1,1,1,2]]]],[12280,12347]]]]},{"k":"H2080","v":[["Zebudah",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10201]]]]},{"k":"H2081","v":[["Zebina",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12295]]]]},{"k":"H2082","v":[["with",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[850]]]]},{"k":"H2083","v":[["Zebul",[6,5,[[6,6,5,0,5,[[219,6,5,0,5]]]],[6782,6784,6790,6792,6795]]]]},{"k":"H2084","v":[["gain",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21766]]]]},{"k":"H2085","v":[["husk",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3827]]]]},{"k":"H2086","v":[["*",[13,13,[[18,8,8,0,8,[[496,1,1,0,1],[563,1,1,1,2],[596,6,6,2,8]]],[19,1,1,8,9,[[648,1,1,8,9]]],[22,1,1,9,10,[[691,1,1,9,10]]],[23,1,1,10,11,[[787,1,1,10,11]]],[38,2,2,11,13,[[927,1,1,11,12],[928,1,1,12,13]]]],[14181,15298,15919,15949,15967,15976,15983,16020,17008,17917,19999,23135,23139]]],["+",[2,2,[[18,1,1,0,1,[[496,1,1,0,1]]],[38,1,1,1,2,[[927,1,1,1,2]]]],[14181,23135]]],["Proud",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17008]]],["proud",[10,10,[[18,7,7,0,7,[[563,1,1,0,1],[596,6,6,1,7]]],[22,1,1,7,8,[[691,1,1,7,8]]],[23,1,1,8,9,[[787,1,1,8,9]]],[38,1,1,9,10,[[928,1,1,9,10]]]],[15298,15919,15949,15967,15976,15983,16020,17917,19999,23139]]]]},{"k":"H2087","v":[["*",[11,11,[[4,2,2,0,2,[[169,1,1,0,1],[170,1,1,1,2]]],[8,1,1,2,3,[[252,1,1,2,3]]],[19,3,3,3,6,[[638,1,1,3,4],[640,1,1,4,5],[648,1,1,5,6]]],[23,3,3,6,9,[[793,1,1,6,7],[794,2,2,7,9]]],[25,1,1,9,10,[[808,1,1,9,10]]],[30,1,1,10,11,[[888,1,1,10,11]]]],[5376,5406,7646,16690,16757,17008,20143,20197,20198,20587,22513]]],["presumptuously",[2,2,[[4,2,2,0,2,[[169,1,1,0,1],[170,1,1,1,2]]]],[5376,5406]]],["pride",[6,6,[[8,1,1,0,1,[[252,1,1,0,1]]],[19,2,2,1,3,[[638,1,1,1,2],[640,1,1,2,3]]],[23,1,1,3,4,[[793,1,1,3,4]]],[25,1,1,4,5,[[808,1,1,4,5]]],[30,1,1,5,6,[[888,1,1,5,6]]]],[7646,16690,16757,20143,20587,22513]]],["proud",[3,3,[[19,1,1,0,1,[[648,1,1,0,1]]],[23,2,2,1,3,[[794,2,2,1,3]]]],[17008,20197,20198]]]]},{"k":"H2088","v":[["*",[1162,1046,[[0,86,82,0,82,[[4,2,2,0,2],[5,1,1,2,3],[6,2,2,3,5],[10,1,1,5,6],[14,1,1,6,7],[15,1,1,7,8],[16,3,3,8,11],[17,2,2,11,13],[18,3,3,13,16],[19,3,3,16,19],[20,2,2,19,21],[21,1,1,21,22],[23,2,2,22,24],[24,3,3,24,27],[25,2,2,27,29],[26,4,4,29,33],[27,5,3,33,36],[28,1,1,36,37],[29,1,1,37,38],[30,8,6,38,44],[31,5,5,44,49],[32,2,2,49,51],[33,1,1,51,52],[34,1,1,52,53],[36,4,4,53,57],[37,4,4,57,61],[38,2,2,61,63],[39,3,3,63,66],[40,1,1,66,67],[41,1,1,67,68],[42,2,2,68,70],[43,4,4,70,74],[44,1,1,74,75],[46,1,1,75,76],[47,3,3,76,79],[49,3,3,79,82]]],[1,90,73,82,155,[[50,1,1,82,83],[51,4,4,83,87],[52,6,4,87,91],[53,2,2,91,93],[54,3,2,93,95],[57,1,1,95,96],[58,2,2,96,98],[59,3,3,98,101],[60,2,1,101,102],[61,12,11,102,113],[62,5,4,113,117],[63,3,2,117,119],[64,1,1,119,120],[65,4,3,120,123],[66,4,3,123,126],[67,4,3,126,129],[68,1,1,129,130],[70,1,1,130,131],[71,1,1,131,132],[73,1,1,132,133],[74,2,1,133,134],[75,4,1,134,135],[78,2,2,135,137],[79,2,2,137,139],[81,8,7,139,146],[82,6,6,146,152],[84,1,1,152,153],[86,2,1,153,154],[87,2,1,154,155]]],[2,18,18,155,173,[[95,1,1,155,156],[97,2,2,156,158],[98,1,1,158,159],[100,4,4,159,163],[105,1,1,163,164],[106,1,1,164,165],[112,8,8,165,173]]],[3,68,64,173,237,[[123,12,12,173,185],[124,1,1,185,186],[125,1,1,186,187],[127,5,5,187,192],[129,2,2,192,194],[130,13,12,194,206],[134,2,2,206,208],[136,4,4,208,212],[137,1,1,212,213],[138,9,8,213,221],[139,4,2,221,223],[140,2,2,223,225],[143,1,1,225,226],[144,2,2,226,228],[145,1,1,228,229],[146,1,1,229,230],[148,2,2,230,232],[150,3,3,232,235],[151,1,1,235,236],[152,1,1,236,237]]],[4,75,73,237,310,[[153,4,4,237,241],[154,6,5,241,246],[155,5,5,246,251],[156,4,4,251,255],[157,3,3,255,258],[158,1,1,258,259],[160,4,4,259,263],[161,4,4,263,267],[162,2,2,267,269],[163,2,2,269,271],[165,1,1,271,272],[166,3,3,272,275],[167,3,3,275,278],[169,2,2,278,280],[170,1,1,280,281],[171,2,2,281,283],[173,2,2,283,285],[174,3,3,285,288],[176,2,2,288,290],[178,2,2,290,292],[179,1,1,292,293],[180,2,1,293,294],[181,7,7,294,301],[182,1,1,301,302],[183,4,4,302,306],[184,3,3,306,309],[186,1,1,309,310]]],[5,54,47,310,357,[[187,6,5,310,315],[188,4,4,315,319],[189,1,1,319,320],[190,3,3,320,323],[191,3,3,323,326],[192,3,2,326,328],[193,5,4,328,332],[194,6,4,332,336],[195,3,3,336,339],[196,1,1,339,340],[199,1,1,340,341],[200,4,3,341,344],[201,3,3,344,347],[202,1,1,347,348],[203,1,1,348,349],[204,1,1,349,350],[208,6,5,350,355],[209,2,2,355,357]]],[6,38,35,357,392,[[211,2,2,357,359],[212,1,1,359,360],[214,1,1,360,361],[215,1,1,361,362],[216,6,5,362,367],[217,2,1,367,368],[218,3,3,368,371],[219,3,3,371,374],[220,2,2,374,376],[221,1,1,376,377],[222,1,1,377,378],[223,2,2,378,380],[225,1,1,380,381],[226,1,1,381,382],[228,3,3,382,385],[229,3,3,385,388],[230,4,3,388,391],[231,1,1,391,392]]],[7,2,2,392,394,[[233,2,2,392,394]]],[8,92,80,394,474,[[236,2,2,394,396],[237,1,1,396,397],[239,1,1,397,398],[240,1,1,398,399],[241,2,2,399,401],[243,2,2,401,403],[244,4,4,403,407],[245,2,2,407,409],[246,1,1,409,410],[247,4,4,410,414],[249,6,5,414,419],[250,1,1,419,420],[251,3,3,420,423],[252,18,15,423,438],[253,1,1,438,439],[255,1,1,439,440],[256,5,3,440,443],[257,2,2,443,445],[258,2,1,445,446],[259,4,4,446,450],[260,5,5,450,455],[261,5,5,455,460],[262,1,1,460,461],[263,3,2,461,463],[264,8,5,463,468],[265,7,6,468,474]]],[9,43,39,474,513,[[267,1,1,474,475],[268,4,3,475,478],[269,1,1,478,479],[270,2,2,479,481],[272,1,1,481,482],[273,2,2,482,484],[277,4,3,484,487],[278,5,5,487,492],[279,1,1,492,493],[280,6,6,493,499],[281,2,2,499,501],[282,4,4,501,505],[283,1,1,505,506],[284,6,5,506,511],[285,2,1,511,512],[290,1,1,512,513]]],[10,81,73,513,586,[[291,2,2,513,515],[292,2,2,515,517],[293,6,5,517,522],[295,1,1,522,523],[296,1,1,523,524],[297,3,2,524,526],[298,13,12,526,538],[299,6,5,538,543],[300,5,3,543,546],[301,2,2,546,548],[302,9,8,548,556],[303,6,6,556,562],[304,5,5,562,567],[307,3,3,567,570],[308,3,3,570,573],[309,1,1,573,574],[310,7,7,574,581],[311,2,2,581,583],[312,4,3,583,586]]],[11,60,58,586,644,[[313,2,2,586,588],[314,1,1,588,589],[315,3,3,589,592],[316,3,3,592,595],[317,6,5,595,600],[318,5,5,600,605],[319,3,3,605,608],[320,5,5,608,613],[321,3,3,613,616],[322,1,1,616,617],[323,1,1,617,618],[326,1,1,618,619],[328,1,1,619,620],[329,4,4,620,624],[330,4,4,624,628],[331,3,3,628,631],[332,2,2,631,633],[333,2,2,633,635],[334,6,5,635,640],[335,4,4,640,644]]],[12,12,11,644,655,[[341,2,2,644,646],[342,1,1,646,647],[350,1,1,647,648],[354,2,2,648,650],[358,2,2,650,652],[359,2,1,652,653],[365,1,1,653,654],[366,1,1,654,655]]],[13,53,46,655,701,[[367,2,1,655,656],[371,1,1,656,657],[372,12,11,657,668],[373,6,5,668,673],[374,1,1,673,674],[375,4,2,674,676],[376,4,4,676,680],[377,1,1,680,681],[380,1,1,681,682],[384,4,3,682,685],[386,4,3,685,688],[387,1,1,688,689],[389,1,1,689,690],[391,1,1,690,691],[397,1,1,691,692],[398,1,1,692,693],[399,1,1,693,694],[400,6,6,694,700],[401,1,1,700,701]]],[14,10,9,701,710,[[405,1,1,701,702],[409,1,1,702,703],[411,5,4,703,707],[412,3,3,707,710]]],[15,21,18,710,728,[[413,1,1,710,711],[414,3,3,711,714],[417,7,5,714,719],[418,3,2,719,721],[421,4,4,721,725],[425,3,3,725,728]]],[16,12,10,728,738,[[426,1,1,728,729],[427,1,1,729,730],[428,1,1,730,731],[429,3,2,731,733],[430,1,1,733,734],[431,1,1,734,735],[432,3,2,735,737],[433,1,1,737,738]]],[17,26,22,738,760,[[436,6,3,738,741],[437,1,1,741,742],[444,1,1,742,743],[449,1,1,743,744],[450,1,1,744,745],[453,1,1,745,746],[454,2,2,746,748],[455,1,1,748,749],[456,2,2,749,751],[462,2,2,751,753],[463,2,2,753,755],[471,1,1,755,756],[473,4,3,756,759],[477,1,1,759,760]]],[18,21,20,760,780,[[501,3,3,760,763],[502,1,1,763,764],[511,1,1,764,765],[525,1,1,765,766],[526,1,1,766,767],[533,1,1,767,768],[545,1,1,768,769],[551,1,1,769,770],[552,3,2,770,772],[555,1,1,772,773],[564,2,2,773,775],[581,3,3,775,778],[595,2,2,778,780]]],[19,3,3,780,783,[[644,1,1,780,781],[650,1,1,781,782],[651,1,1,782,783]]],[20,37,30,783,813,[[659,2,2,783,785],[660,7,7,785,792],[661,2,1,792,793],[662,3,3,793,796],[663,1,1,796,797],[664,4,3,797,800],[665,8,6,800,806],[666,3,3,806,809],[667,3,2,809,811],[669,3,1,811,812],[670,1,1,812,813]]],[21,4,3,813,816,[[672,2,2,813,815],[675,2,1,815,816]]],[22,57,50,816,866,[[684,5,4,816,820],[686,4,4,820,824],[687,1,1,824,825],[692,3,3,825,828],[694,1,1,828,829],[695,1,1,829,830],[698,1,1,830,831],[699,1,1,831,832],[700,2,2,832,834],[701,1,1,834,835],[702,1,1,835,836],[703,5,4,836,840],[704,1,1,840,841],[705,1,1,841,842],[706,2,2,842,844],[707,4,4,844,848],[708,3,3,848,851],[714,3,3,851,854],[715,3,3,854,857],[716,2,1,857,858],[717,1,1,858,859],[722,3,1,859,860],[734,1,1,860,861],[736,3,2,861,863],[741,2,1,863,864],[744,2,2,864,866]]],[23,128,118,866,984,[[745,1,1,866,867],[746,1,1,867,868],[747,1,1,868,869],[748,2,2,869,871],[749,5,4,871,875],[750,4,4,875,879],[751,12,12,879,891],[752,1,1,891,892],[753,2,2,892,894],[754,1,1,894,895],[755,3,3,895,898],[757,4,3,898,901],[758,4,4,901,905],[759,2,2,905,907],[760,6,5,907,912],[762,1,1,912,913],[763,7,6,913,919],[765,1,1,919,920],[766,9,8,920,928],[767,4,4,928,932],[768,1,1,932,933],[769,4,3,933,936],[770,6,6,936,942],[771,2,2,942,944],[773,3,3,944,947],[774,1,1,947,948],[775,1,1,948,949],[776,7,5,949,954],[777,4,4,954,958],[779,2,2,958,960],[780,3,3,960,963],[781,1,1,963,964],[782,5,3,964,967],[784,3,3,967,970],[786,1,1,970,971],[788,6,6,971,977],[790,1,1,977,978],[793,1,1,978,979],[794,2,2,979,981],[795,2,2,981,983],[796,1,1,983,984]]],[24,3,3,984,987,[[798,1,1,984,985],[799,1,1,985,986],[801,1,1,986,987]]],[25,28,23,987,1010,[[802,1,1,987,988],[803,1,1,988,989],[809,1,1,989,990],[813,3,3,990,993],[817,1,1,993,994],[819,2,2,994,996],[821,1,1,996,997],[825,2,1,997,998],[841,1,1,998,999],[842,2,2,999,1001],[844,1,1,1001,1002],[845,1,1,1002,1003],[846,3,2,1003,1005],[847,1,1,1005,1006],[848,5,3,1006,1009],[849,2,1,1009,1010]]],[26,6,5,1010,1015,[[850,1,1,1010,1011],[858,2,2,1011,1013],[859,3,2,1013,1015]]],[29,4,4,1015,1019,[[881,1,1,1015,1016],[882,1,1,1016,1017],[883,2,2,1017,1019]]],[30,1,1,1019,1020,[[888,1,1,1019,1020]]],[31,4,4,1020,1024,[[889,3,3,1020,1023],[892,1,1,1023,1024]]],[32,2,2,1024,1026,[[894,1,1,1024,1025],[897,1,1,1025,1026]]],[35,1,1,1026,1027,[[906,1,1,1026,1027]]],[36,11,9,1027,1036,[[909,2,2,1027,1029],[910,9,7,1029,1036]]],[37,11,10,1036,1046,[[911,1,1,1036,1037],[913,1,1,1037,1038],[914,2,2,1038,1040],[915,2,1,1040,1041],[917,2,2,1041,1043],[918,3,3,1043,1046]]]],[106,134,152,160,172,272,364,389,418,420,423,437,449,470,471,478,505,506,508,539,543,563,600,649,680,688,690,703,725,747,748,751,763,789,790,793,828,861,874,911,914,921,924,925,930,938,947,957,960,968,975,994,1028,1089,1093,1100,1105,1140,1141,1142,1147,1158,1160,1184,1186,1190,1233,1267,1300,1319,1329,1331,1339,1353,1364,1446,1460,1466,1469,1517,1526,1531,1550,1560,1563,1569,1574,1582,1591,1594,1600,1603,1618,1654,1655,1733,1747,1748,1783,1784,1794,1807,1818,1819,1822,1824,1828,1830,1833,1840,1857,1858,1867,1870,1872,1875,1886,1901,1909,1922,1950,1963,1979,1986,1987,1995,2013,2017,2022,2027,2108,2122,2191,2214,2248,2337,2374,2395,2413,2439,2447,2453,2459,2461,2462,2469,2474,2477,2485,2486,2488,2490,2535,2612,2648,2869,2922,2951,2959,3001,3006,3018,3026,3231,3237,3408,3416,3423,3429,3430,3431,3432,3436,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3943,3968,4035,4036,4037,4038,4044,4092,4102,4110,4119,4121,4122,4123,4124,4127,4130,4137,4140,4143,4149,4266,4268,4315,4316,4321,4323,4342,4381,4392,4394,4399,4403,4405,4407,4408,4417,4445,4456,4460,4566,4580,4594,4615,4649,4733,4738,4822,4823,4825,4850,4885,4898,4923,4924,4927,4941,4945,4960,4963,4968,4989,5000,5001,5002,5003,5010,5024,5036,5042,5077,5081,5082,5110,5139,5141,5154,5155,5164,5169,5170,5184,5194,5201,5212,5213,5283,5297,5299,5302,5321,5329,5334,5369,5380,5387,5410,5426,5454,5467,5486,5490,5496,5543,5547,5575,5582,5594,5669,5683,5686,5699,5700,5703,5706,5707,5718,5730,5735,5744,5754,5805,5806,5807,5845,5853,5855,5857,5859,5862,5883,5886,5887,5889,5900,5913,5919,5932,5938,5943,5945,5964,5974,5983,5986,6001,6002,6024,6030,6031,6035,6049,6061,6064,6091,6167,6197,6199,6201,6206,6214,6265,6275,6287,6312,6429,6442,6443,6448,6457,6468,6469,6530,6535,6565,6613,6628,6668,6672,6678,6680,6683,6698,6720,6722,6728,6773,6783,6792,6815,6826,6866,6872,6890,6902,6948,6977,6996,7005,7017,7047,7048,7054,7063,7070,7071,7113,7156,7157,7238,7239,7274,7311,7324,7349,7351,7377,7380,7402,7408,7409,7412,7429,7445,7458,7462,7465,7468,7476,7512,7518,7537,7542,7553,7574,7603,7604,7607,7621,7628,7630,7635,7643,7644,7645,7648,7650,7651,7654,7655,7664,7665,7673,7684,7732,7781,7783,7787,7795,7800,7836,7845,7849,7855,7858,7872,7882,7886,7893,7894,7921,7922,7923,7926,7929,7936,7952,7960,7970,7971,7972,7973,7975,7986,7991,7993,7998,8002,8003,8025,8054,8055,8062,8119,8123,8128,8165,8186,8197,8270,8271,8284,8292,8298,8300,8307,8309,8337,8358,8359,8369,8371,8376,8377,8391,8395,8435,8438,8443,8444,8455,8496,8498,8500,8504,8505,8553,8695,8744,8747,8793,8796,8822,8825,8826,8827,8839,8885,8908,8942,8962,8993,9009,9012,9014,9015,9016,9018,9020,9023,9027,9028,9046,9054,9059,9064,9066,9072,9091,9098,9099,9118,9135,9157,9158,9160,9161,9170,9175,9178,9181,9187,9192,9196,9200,9217,9218,9220,9223,9224,9231,9232,9320,9338,9341,9348,9358,9378,9392,9415,9417,9420,9421,9432,9436,9447,9453,9456,9500,9504,9507,9535,9538,9573,9584,9592,9599,9619,9620,9646,9653,9654,9665,9667,9669,9683,9685,9692,9693,9706,9709,9716,9726,9732,9735,9736,9740,9749,9757,9767,9781,9795,9834,9903,9969,9995,10006,10017,10024,10043,10045,10046,10049,10064,10082,10090,10107,10115,10126,10134,10158,10161,10162,10164,10165,10168,10186,10187,10188,10426,10428,10454,10771,10868,10878,10941,10942,10965,11150,11180,11204,11277,11297,11300,11302,11303,11304,11306,11308,11311,11314,11315,11322,11336,11339,11340,11344,11345,11354,11382,11383,11401,11402,11404,11414,11418,11486,11561,11565,11568,11596,11599,11602,11634,11660,11713,11864,11884,11915,11954,11957,11958,11960,11961,11964,11985,12109,12184,12239,12240,12244,12252,12257,12265,12266,12307,12309,12311,12326,12392,12394,12395,12400,12401,12405,12406,12512,12521,12529,12543,12675,12677,12688,12720,12737,12761,12767,12773,12792,12796,12812,12813,12830,12885,12886,12887,12893,13080,13184,13220,13297,13300,13316,13355,13378,13380,13493,13494,13516,13524,13757,13795,13812,13817,13925,14247,14249,14251,14263,14394,14648,14661,14764,14908,15050,15078,15079,15167,15305,15307,15579,15596,15597,15889,15893,16889,17066,17091,17325,17332,17336,17343,17348,17352,17354,17356,17359,17378,17385,17389,17397,17407,17419,17422,17426,17435,17439,17443,17447,17456,17458,17467,17468,17472,17476,17478,17519,17536,17562,17563,17614,17772,17776,17778,17779,17813,17818,17819,17827,17845,17932,17944,17956,17982,17997,18035,18044,18066,18067,18090,18098,18124,18125,18127,18128,18131,18160,18175,18178,18204,18205,18206,18207,18229,18230,18238,18334,18336,18337,18355,18374,18382,18397,18418,18538,18765,18791,18792,18867,18923,18924,18956,19002,19027,19037,19038,19067,19072,19081,19087,19105,19108,19109,19110,19121,19122,19125,19126,19129,19130,19135,19139,19142,19144,19147,19152,19158,19184,19190,19220,19231,19233,19240,19276,19278,19291,19303,19304,19306,19310,19316,19335,19338,19339,19341,19345,19346,19390,19410,19411,19413,19414,19418,19419,19448,19455,19457,19458,19459,19465,19475,19482,19484,19490,19516,19517,19522,19529,19537,19547,19552,19573,19578,19581,19583,19584,19588,19597,19612,19645,19664,19667,19688,19714,19745,19751,19762,19768,19773,19785,19787,19791,19799,19837,19839,19843,19844,19849,19892,19899,19905,19916,19943,19944,19957,19993,20012,20016,20020,20032,20033,20039,20052,20146,20183,20210,20274,20275,20304,20348,20391,20459,20469,20495,20609,20690,20702,20703,20811,20851,20852,20924,21058,21478,21530,21548,21585,21601,21632,21637,21675,21686,21691,21694,21723,21751,21995,22003,22026,22032,22396,22411,22424,22441,22530,22539,22543,22545,22570,22606,22638,22791,22842,22844,22858,22862,22864,22869,22870,22873,22874,22890,22914,22928,22931,22939,22965,22967,22982,22987,22988]]],["+",[125,98,[[0,8,8,0,8,[[6,1,1,0,1],[15,1,1,1,2],[16,2,2,2,4],[17,1,1,4,5],[36,1,1,5,6],[41,1,1,6,7],[49,1,1,7,8]]],[1,27,18,8,26,[[51,2,2,8,10],[53,1,1,10,11],[59,1,1,11,12],[60,2,1,12,13],[61,2,2,13,15],[62,2,2,15,17],[66,2,1,17,18],[71,1,1,18,19],[74,2,1,19,20],[75,4,1,20,21],[81,2,1,21,22],[82,2,2,22,24],[86,2,1,24,25],[87,2,1,25,26]]],[2,2,2,26,28,[[112,2,2,26,28]]],[3,3,2,28,30,[[127,1,1,28,29],[138,2,1,29,30]]],[4,1,1,30,31,[[161,1,1,30,31]]],[5,7,5,31,36,[[188,1,1,31,32],[190,1,1,32,33],[191,1,1,33,34],[194,4,2,34,36]]],[6,3,3,36,39,[[216,1,1,36,37],[223,1,1,37,38],[230,1,1,38,39]]],[7,1,1,39,40,[[233,1,1,39,40]]],[8,10,7,40,47,[[244,2,2,40,42],[249,2,1,42,43],[252,2,1,43,44],[258,2,1,44,45],[260,1,1,45,46],[265,1,1,46,47]]],[9,7,6,47,53,[[267,1,1,47,48],[268,2,1,48,49],[278,1,1,49,50],[281,1,1,50,51],[284,1,1,51,52],[285,1,1,52,53]]],[10,9,7,53,60,[[300,4,2,53,55],[303,1,1,55,56],[304,2,2,56,58],[307,1,1,58,59],[311,1,1,59,60]]],[11,5,5,60,65,[[313,1,1,60,61],[315,1,1,61,62],[317,1,1,62,63],[320,2,2,63,65]]],[13,7,5,65,70,[[367,1,1,65,66],[375,4,2,66,68],[384,1,1,68,69],[391,1,1,69,70]]],[14,1,1,70,71,[[405,1,1,70,71]]],[15,2,2,71,73,[[414,1,1,71,72],[425,1,1,72,73]]],[16,2,1,73,74,[[432,2,1,73,74]]],[17,6,5,74,79,[[437,1,1,74,75],[463,2,2,75,77],[473,3,2,77,79]]],[18,1,1,79,80,[[552,1,1,79,80]]],[19,1,1,80,81,[[644,1,1,80,81]]],[20,4,4,81,85,[[664,1,1,81,82],[665,1,1,82,83],[666,1,1,83,84],[669,1,1,84,85]]],[22,1,1,85,86,[[684,1,1,85,86]]],[23,3,3,86,89,[[750,1,1,86,87],[767,1,1,87,88],[782,1,1,88,89]]],[25,11,7,89,96,[[819,1,1,89,90],[841,1,1,90,91],[846,3,2,91,93],[848,4,2,93,95],[849,2,1,95,96]]],[31,1,1,96,97,[[889,1,1,96,97]]],[37,2,1,97,98,[[915,2,1,97,98]]]],[172,389,420,423,437,1100,1267,1531,1563,1569,1603,1794,1807,1857,1867,1870,1886,1995,2122,2214,2248,2453,2474,2488,2612,2648,3416,3423,4044,4399,5169,5886,5913,5945,6024,6035,6672,6890,7070,7157,7409,7412,7512,7621,7836,7872,7991,8025,8062,8309,8391,8500,8553,9098,9099,9196,9224,9231,9320,9456,9535,9584,9669,9735,9736,11204,11382,11383,11565,11713,12109,12311,12675,12812,12893,13516,13524,13812,13817,15079,16889,17422,17447,17472,17519,17772,19105,19516,19905,20851,21478,21632,21637,21686,21691,21723,22539,22939]]],["He",[2,2,[[9,2,2,0,2,[[284,2,2,0,2]]]],[8504,8505]]],["One",[2,2,[[17,1,1,0,1,[[456,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[13378,18538]]],["These",[4,4,[[2,2,2,0,2,[[100,2,2,0,2]]],[4,1,1,2,3,[[166,1,1,2,3]]],[17,1,1,3,4,[[454,1,1,3,4]]]],[3006,3026,5299,13300]]],["This",[86,85,[[0,12,12,0,12,[[4,2,2,0,2],[14,1,1,2,3],[19,1,1,3,4],[30,3,3,4,7],[31,1,1,7,8],[37,1,1,8,9],[39,2,2,9,11],[49,1,1,11,12]]],[1,7,7,12,19,[[51,1,1,12,13],[61,1,1,13,14],[65,2,2,14,16],[79,2,2,16,18],[84,1,1,18,19]]],[2,4,4,19,23,[[95,1,1,19,20],[97,1,1,20,21],[98,1,1,21,22],[106,1,1,22,23]]],[3,4,4,23,27,[[134,1,1,23,24],[144,1,1,24,25],[146,1,1,25,26],[152,1,1,26,27]]],[4,3,3,27,30,[[154,1,1,27,28],[173,1,1,28,29],[178,1,1,29,30]]],[5,4,4,30,34,[[187,1,1,30,31],[189,1,1,31,32],[195,1,1,32,33],[201,1,1,33,34]]],[6,2,1,34,35,[[217,2,1,34,35]]],[8,4,4,35,39,[[243,1,1,35,36],[252,1,1,36,37],[261,1,1,37,38],[265,1,1,38,39]]],[10,2,2,39,41,[[293,1,1,39,40],[303,1,1,40,41]]],[11,6,6,41,47,[[315,1,1,41,42],[318,1,1,42,43],[323,1,1,43,44],[331,2,2,44,46],[332,1,1,46,47]]],[12,1,1,47,48,[[359,1,1,47,48]]],[13,1,1,48,49,[[389,1,1,48,49]]],[15,1,1,49,50,[[421,1,1,49,50]]],[17,2,2,50,52,[[455,1,1,50,51],[462,1,1,51,52]]],[18,5,5,52,57,[[501,1,1,52,53],[511,1,1,53,54],[526,1,1,54,55],[595,2,2,55,57]]],[20,7,7,57,64,[[660,4,4,57,61],[662,2,2,61,63],[667,1,1,63,64]]],[21,1,1,64,65,[[675,1,1,64,65]]],[22,5,5,65,70,[[694,1,1,65,66],[695,1,1,66,67],[708,1,1,67,68],[715,2,2,68,70]]],[23,8,8,70,78,[[751,1,1,70,71],[757,2,2,71,73],[766,1,1,73,74],[770,3,3,74,77],[796,1,1,77,78]]],[25,5,5,78,83,[[813,1,1,78,79],[842,2,2,79,81],[845,1,1,81,82],[847,1,1,82,83]]],[36,1,1,83,84,[[909,1,1,83,84]]],[37,1,1,84,85,[[914,1,1,84,85]]]],[106,134,364,508,911,921,925,930,1147,1184,1190,1517,1560,1818,1963,1979,2395,2413,2535,2869,2922,2959,3237,4266,4580,4649,4885,4963,5467,5582,5859,5900,6049,6214,6698,7380,7664,7921,7998,8839,9187,9599,9693,9834,10064,10082,10107,10965,11660,12529,13355,13494,14247,14394,14661,15889,15893,17352,17354,17356,17359,17385,17389,17478,17614,17982,17997,18238,18355,18374,19147,19276,19291,19475,19581,19583,19588,20304,20690,21530,21548,21601,21675,22842,22928]]],["Thus",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[914]]],["another",[10,9,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]],[17,4,4,2,6,[[436,3,3,2,5],[456,1,1,5,6]]],[18,1,1,6,7,[[552,1,1,6,7]]],[22,3,2,7,9,[[684,1,1,7,8],[722,2,1,8,9]]]],[9500,11561,12885,12886,12887,13380,15078,17772,18538]]],["he",[8,8,[[1,1,1,0,1,[[64,1,1,0,1]]],[17,4,4,1,5,[[436,3,3,1,4],[477,1,1,4,5]]],[21,2,2,5,7,[[672,2,2,5,7]]],[24,1,1,7,8,[[799,1,1,7,8]]]],[1922,12885,12886,12887,13925,17562,17563,20391]]],["here",[12,10,[[1,1,1,0,1,[[73,1,1,0,1]]],[3,5,3,1,4,[[138,1,1,1,2],[139,4,2,2,4]]],[8,4,4,4,8,[[236,1,1,4,5],[244,1,1,5,6],[249,1,1,6,7],[256,1,1,7,8]]],[9,1,1,8,9,[[277,1,1,8,9]]],[22,1,1,9,10,[[699,1,1,9,10]]]],[2191,4394,4417,4445,7238,7402,7542,7781,8271,18044]]],["him",[2,2,[[8,1,1,0,1,[[256,1,1,0,1]]],[23,1,1,1,2,[[746,1,1,1,2]]]],[7783,19002]]],["himself",[1,1,[[8,1,1,0,1,[[264,1,1,0,1]]]],[7971]]],["it",[9,8,[[0,2,2,0,2,[[31,1,1,0,1],[32,1,1,1,2]]],[1,2,2,2,4,[[51,1,1,2,3],[54,1,1,3,4]]],[10,1,1,4,5,[[311,1,1,4,5]]],[16,2,1,5,6,[[429,2,1,5,6]]],[19,1,1,6,7,[[651,1,1,6,7]]],[29,1,1,7,8,[[883,1,1,7,8]]]],[957,975,1574,1654,9453,12767,17091,22441]]],["itself",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14908]]],["like",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]]],[8942,12406]]],["man",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1784]]],["now",[2,2,[[3,1,1,0,1,[[130,1,1,0,1]]],[11,1,1,1,2,[[313,1,1,1,2]]]],[4149,9538]]],["one",[8,8,[[1,1,1,0,1,[[63,1,1,0,1]]],[9,1,1,1,2,[[277,1,1,1,2]]],[10,1,1,2,3,[[312,1,1,2,3]]],[13,1,1,3,4,[[384,1,1,3,4]]],[17,1,1,4,5,[[449,1,1,4,5]]],[18,1,1,5,6,[[552,1,1,5,6]]],[20,2,2,6,8,[[661,1,1,6,7],[665,1,1,7,8]]]],[1909,8284,9500,11561,13184,15078,17378,17443]]],["other",[3,3,[[1,1,1,0,1,[[63,1,1,0,1]]],[20,2,2,1,3,[[661,1,1,1,2],[665,1,1,2,3]]]],[1909,17378,17443]]],["purpose",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19109]]],["same",[8,8,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,2,2,1,3,[[61,1,1,1,2],[68,1,1,2,3]]],[2,1,1,3,4,[[112,1,1,3,4]]],[5,1,1,4,5,[[192,1,1,4,5]]],[8,2,2,5,7,[[244,1,1,5,6],[252,1,1,6,7]]],[15,1,1,7,8,[[418,1,1,7,8]]]],[688,1822,2027,3408,5964,7408,7648,12405]]],["such",[6,6,[[4,2,2,0,2,[[157,1,1,0,1],[171,1,1,1,2]]],[11,3,3,2,5,[[318,1,1,2,3],[319,1,1,3,4],[335,1,1,4,5]]],[22,1,1,5,6,[[736,1,1,5,6]]]],[5082,5426,9683,9726,10187,18791]]],["that",[35,35,[[0,2,2,0,2,[[23,1,1,0,1],[26,1,1,1,2]]],[1,3,3,2,5,[[58,1,1,2,3],[61,1,1,3,4],[62,1,1,4,5]]],[2,4,4,5,9,[[105,1,1,5,6],[112,3,3,6,9]]],[4,4,4,9,13,[[155,1,1,9,10],[169,2,2,10,12],[184,1,1,12,13]]],[5,2,2,13,15,[[192,1,1,13,14],[203,1,1,14,15]]],[6,2,2,15,17,[[215,1,1,15,16],[218,1,1,16,17]]],[7,1,1,17,18,[[233,1,1,17,18]]],[8,1,1,18,19,[[252,1,1,18,19]]],[9,1,1,19,20,[[280,1,1,19,20]]],[10,3,3,20,23,[[304,1,1,20,21],[308,2,2,21,23]]],[11,1,1,23,24,[[316,1,1,23,24]]],[16,2,2,24,26,[[428,1,1,24,25],[433,1,1,25,26]]],[17,1,1,26,27,[[450,1,1,26,27]]],[18,1,1,27,28,[[502,1,1,27,28]]],[19,1,1,28,29,[[650,1,1,28,29]]],[20,2,2,29,31,[[660,1,1,29,30],[669,1,1,30,31]]],[23,3,3,31,34,[[769,1,1,31,32],[793,1,1,32,33],[794,1,1,33,34]]],[25,1,1,34,35,[[813,1,1,34,35]]]],[600,747,1748,1824,1875,3231,3430,3431,3432,5000,5369,5380,5806,5964,6287,6628,6722,7156,7630,8358,9232,9348,9358,9620,12761,12830,13220,14263,17066,17336,17519,19537,20146,20210,20702]]],["the",[2,2,[[8,1,1,0,1,[[253,1,1,0,1]]],[22,1,1,1,2,[[744,1,1,1,2]]]],[7684,18923]]],["then",[2,2,[[10,1,1,0,1,[[309,1,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]]],[9392,13080]]],["these",[24,23,[[0,2,2,0,2,[[26,1,1,0,1],[44,1,1,1,2]]],[1,1,1,2,3,[[82,1,1,2,3]]],[2,2,2,3,5,[[100,2,2,3,5]]],[3,5,5,5,10,[[130,1,1,5,6],[138,3,3,6,9],[140,1,1,9,10]]],[4,5,5,10,15,[[154,1,1,10,11],[160,2,2,11,13],[166,2,2,13,15]]],[5,2,2,15,17,[[200,1,1,15,16],[208,1,1,16,17]]],[6,1,1,17,18,[[230,1,1,17,18]]],[8,3,2,18,20,[[252,1,1,18,19],[264,2,1,19,20]]],[16,1,1,20,21,[[429,1,1,20,21]]],[37,2,2,21,23,[[911,1,1,21,22],[917,1,1,22,23]]]],[763,1364,2477,3001,3018,4130,4403,4407,4408,4456,4945,5139,5141,5297,5302,6197,6429,7071,7635,7970,12773,22890,22965]]],["this",[790,744,[[0,55,52,0,52,[[5,1,1,0,1],[6,1,1,1,2],[10,1,1,2,3],[16,1,1,3,4],[17,1,1,4,5],[18,3,3,5,8],[19,2,2,8,10],[20,2,2,10,12],[21,1,1,12,13],[23,1,1,13,14],[24,1,1,14,15],[25,2,2,15,17],[27,5,3,17,20],[28,1,1,20,21],[29,1,1,21,22],[30,4,3,22,25],[31,3,3,25,28],[32,1,1,28,29],[33,1,1,29,30],[34,1,1,30,31],[36,3,3,31,34],[37,3,3,34,37],[38,2,2,37,39],[39,1,1,39,40],[40,1,1,40,41],[42,2,2,41,43],[43,4,4,43,47],[46,1,1,47,48],[47,3,3,48,51],[49,1,1,51,52]]],[1,43,38,52,90,[[50,1,1,52,53],[52,6,4,53,57],[53,1,1,57,58],[54,2,2,58,60],[57,1,1,60,61],[58,1,1,61,62],[59,1,1,62,63],[61,7,6,63,69],[62,2,2,69,71],[63,1,1,71,72],[65,2,1,72,73],[66,2,2,73,75],[67,4,3,75,78],[70,1,1,78,79],[78,2,2,79,81],[81,6,6,81,87],[82,3,3,87,90]]],[2,3,3,90,93,[[97,1,1,90,91],[112,2,2,91,93]]],[3,50,49,93,142,[[123,12,12,93,105],[124,1,1,105,106],[125,1,1,106,107],[127,4,4,107,111],[129,2,2,111,113],[130,11,10,113,123],[134,1,1,123,124],[136,4,4,124,128],[137,1,1,128,129],[138,3,3,129,132],[140,1,1,132,133],[143,1,1,133,134],[144,1,1,134,135],[145,1,1,135,136],[148,2,2,136,138],[150,3,3,138,141],[151,1,1,141,142]]],[4,59,58,142,200,[[153,4,4,142,146],[154,4,4,146,150],[155,4,4,150,154],[156,4,4,154,158],[157,2,2,158,160],[158,1,1,160,161],[160,2,2,161,163],[161,3,3,163,166],[162,2,2,166,168],[163,2,2,168,170],[165,1,1,170,171],[167,3,3,171,174],[170,1,1,174,175],[171,1,1,175,176],[173,1,1,176,177],[174,3,3,177,180],[176,2,2,180,182],[178,1,1,182,183],[179,1,1,183,184],[180,2,1,184,185],[181,7,7,185,192],[182,1,1,192,193],[183,4,4,193,197],[184,2,2,197,199],[186,1,1,199,200]]],[5,37,35,200,235,[[187,5,4,200,204],[188,3,3,204,207],[190,2,2,207,209],[191,2,2,209,211],[192,1,1,211,212],[193,4,3,212,215],[194,2,2,215,217],[195,2,2,217,219],[196,1,1,219,220],[199,1,1,220,221],[200,3,3,221,224],[201,2,2,224,226],[202,1,1,226,227],[204,1,1,227,228],[208,5,5,228,233],[209,2,2,233,235]]],[6,28,27,235,262,[[211,2,2,235,237],[212,1,1,237,238],[214,1,1,238,239],[216,5,4,239,243],[218,1,1,243,244],[219,3,3,244,247],[220,2,2,247,249],[221,1,1,249,250],[222,1,1,250,251],[225,1,1,251,252],[226,1,1,252,253],[228,3,3,253,256],[229,3,3,256,259],[230,2,2,259,261],[231,1,1,261,262]]],[8,64,60,262,322,[[236,1,1,262,263],[237,1,1,263,264],[239,1,1,264,265],[240,1,1,265,266],[241,2,2,266,268],[243,1,1,268,269],[245,2,2,269,271],[246,1,1,271,272],[247,4,4,272,276],[249,3,3,276,279],[250,1,1,279,280],[251,3,3,280,283],[252,12,12,283,295],[255,1,1,295,296],[256,3,2,296,298],[257,2,2,298,300],[259,4,4,300,304],[260,4,4,304,308],[261,3,3,308,311],[262,1,1,311,312],[263,3,2,312,314],[264,5,4,314,318],[265,5,4,318,322]]],[9,31,30,322,352,[[268,2,2,322,324],[269,1,1,324,325],[270,2,2,325,327],[272,1,1,327,328],[273,2,2,328,330],[277,2,2,330,332],[278,4,4,332,336],[279,1,1,336,337],[280,5,5,337,342],[281,1,1,342,343],[282,4,4,343,347],[283,1,1,347,348],[284,3,2,348,350],[285,1,1,350,351],[290,1,1,351,352]]],[10,60,56,352,408,[[291,2,2,352,354],[292,2,2,354,356],[293,5,4,356,360],[295,1,1,360,361],[296,1,1,361,362],[297,2,2,362,364],[298,13,12,364,376],[299,6,5,376,381],[300,1,1,381,382],[301,2,2,382,384],[302,9,8,384,392],[303,4,4,392,396],[304,1,1,396,397],[307,2,2,397,399],[308,1,1,399,400],[310,7,7,400,407],[312,1,1,407,408]]],[11,44,42,408,450,[[314,1,1,408,409],[315,1,1,409,410],[316,2,2,410,412],[317,5,4,412,416],[318,3,3,416,419],[319,2,2,419,421],[320,3,3,421,424],[321,3,3,424,427],[322,1,1,427,428],[326,1,1,428,429],[328,1,1,429,430],[329,4,4,430,434],[330,4,4,434,438],[331,1,1,438,439],[332,1,1,439,440],[333,2,2,440,442],[334,6,5,442,447],[335,3,3,447,450]]],[12,11,11,450,461,[[341,2,2,450,452],[342,1,1,452,453],[350,1,1,453,454],[354,2,2,454,456],[358,2,2,456,458],[359,1,1,458,459],[365,1,1,459,460],[366,1,1,460,461]]],[13,43,40,461,501,[[367,1,1,461,462],[371,1,1,462,463],[372,12,11,463,474],[373,6,5,474,479],[374,1,1,479,480],[376,4,4,480,484],[377,1,1,484,485],[380,1,1,485,486],[384,1,1,486,487],[386,4,3,487,490],[387,1,1,490,491],[397,1,1,491,492],[398,1,1,492,493],[399,1,1,493,494],[400,6,6,494,500],[401,1,1,500,501]]],[14,9,8,501,509,[[409,1,1,501,502],[411,5,4,502,506],[412,3,3,506,509]]],[15,16,14,509,523,[[413,1,1,509,510],[414,2,2,510,512],[417,7,5,512,517],[418,1,1,517,518],[421,3,3,518,521],[425,2,2,521,523]]],[16,4,4,523,527,[[426,1,1,523,524],[430,1,1,524,525],[431,1,1,525,526],[432,1,1,526,527]]],[17,3,3,527,530,[[453,1,1,527,528],[471,1,1,528,529],[473,1,1,529,530]]],[18,9,9,530,539,[[501,2,2,530,532],[525,1,1,532,533],[533,1,1,533,534],[551,1,1,534,535],[555,1,1,535,536],[564,2,2,536,538],[581,1,1,538,539]]],[20,20,19,539,558,[[659,2,2,539,541],[660,2,2,541,543],[662,1,1,543,544],[663,1,1,544,545],[664,3,3,545,548],[665,5,5,548,553],[666,2,2,553,555],[667,2,1,555,556],[669,1,1,556,557],[670,1,1,557,558]]],[21,1,1,558,559,[[675,1,1,558,559]]],[22,44,41,559,600,[[684,3,3,559,562],[686,4,4,562,566],[687,1,1,566,567],[692,3,3,567,570],[698,1,1,570,571],[700,2,2,571,573],[701,1,1,573,574],[702,1,1,574,575],[703,5,4,575,579],[704,1,1,579,580],[705,1,1,580,581],[706,2,2,581,583],[707,4,4,583,587],[708,2,2,587,589],[714,3,3,589,592],[715,1,1,592,593],[716,2,1,593,594],[717,1,1,594,595],[734,1,1,595,596],[736,2,2,596,598],[741,2,1,598,599],[744,1,1,599,600]]],[23,112,104,600,704,[[745,1,1,600,601],[747,1,1,601,602],[748,2,2,602,604],[749,5,4,604,608],[750,2,2,608,610],[751,11,11,610,621],[752,1,1,621,622],[753,2,2,622,624],[754,1,1,624,625],[755,3,3,625,628],[757,2,2,628,630],[758,4,4,630,634],[759,2,2,634,636],[760,6,5,636,641],[762,1,1,641,642],[763,7,6,642,648],[765,1,1,648,649],[766,8,7,649,656],[767,3,3,656,659],[768,1,1,659,660],[769,3,3,660,663],[770,3,3,663,666],[771,2,2,666,668],[773,3,3,668,671],[774,1,1,671,672],[775,1,1,672,673],[776,7,5,673,678],[777,4,4,678,682],[779,2,2,682,684],[780,3,3,684,687],[781,1,1,687,688],[782,4,2,688,690],[784,3,3,690,693],[786,1,1,693,694],[788,6,6,694,700],[790,1,1,700,701],[794,1,1,701,702],[795,2,2,702,704]]],[24,2,2,704,706,[[798,1,1,704,705],[801,1,1,705,706]]],[25,11,10,706,716,[[802,1,1,706,707],[803,1,1,707,708],[809,1,1,708,709],[813,1,1,709,710],[817,1,1,710,711],[819,1,1,711,712],[821,1,1,712,713],[825,2,1,713,714],[844,1,1,714,715],[848,1,1,715,716]]],[26,6,5,716,721,[[850,1,1,716,717],[858,2,2,717,719],[859,3,2,719,721]]],[29,3,3,721,724,[[881,1,1,721,722],[882,1,1,722,723],[883,1,1,723,724]]],[30,1,1,724,725,[[888,1,1,724,725]]],[31,3,3,725,728,[[889,2,2,725,727],[892,1,1,727,728]]],[32,2,2,728,730,[[894,1,1,728,729],[897,1,1,729,730]]],[35,1,1,730,731,[[906,1,1,730,731]]],[36,10,8,731,739,[[909,1,1,731,732],[910,9,7,732,739]]],[37,5,5,739,744,[[913,1,1,739,740],[914,1,1,740,741],[918,3,3,741,744]]]],[152,160,272,418,449,470,471,478,505,506,539,543,563,649,690,703,725,789,790,793,828,861,874,924,925,938,947,960,968,994,1028,1089,1093,1105,1140,1141,1142,1158,1160,1186,1233,1300,1319,1329,1331,1339,1353,1446,1460,1466,1469,1526,1550,1582,1591,1594,1600,1618,1654,1655,1733,1747,1783,1819,1828,1830,1833,1840,1858,1870,1872,1901,1950,1986,1987,2013,2017,2022,2108,2337,2374,2439,2447,2459,2461,2462,2469,2485,2486,2490,2951,3429,3436,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3943,3968,4035,4036,4037,4038,4092,4102,4110,4119,4121,4122,4123,4124,4127,4137,4140,4143,4268,4315,4316,4321,4323,4342,4381,4392,4405,4460,4566,4594,4615,4733,4738,4822,4823,4825,4850,4898,4923,4924,4927,4941,4945,4960,4968,4989,5001,5002,5003,5010,5024,5036,5042,5077,5081,5110,5154,5155,5164,5170,5184,5194,5201,5212,5213,5283,5321,5329,5334,5387,5410,5454,5486,5490,5496,5543,5547,5575,5594,5669,5683,5686,5699,5700,5703,5706,5707,5718,5730,5735,5744,5754,5805,5807,5845,5853,5855,5857,5862,5883,5887,5889,5919,5932,5938,5943,5974,5983,6001,6002,6030,6031,6061,6064,6091,6167,6197,6199,6201,6206,6265,6275,6312,6429,6442,6443,6448,6457,6468,6469,6530,6535,6565,6613,6668,6678,6680,6683,6728,6773,6783,6792,6815,6826,6866,6872,6948,6977,6996,7005,7017,7047,7048,7054,7063,7070,7113,7239,7274,7311,7324,7349,7351,7377,7429,7445,7458,7462,7465,7468,7476,7518,7537,7553,7574,7603,7604,7607,7628,7635,7643,7644,7645,7650,7651,7654,7655,7664,7665,7673,7732,7783,7787,7795,7800,7845,7849,7855,7858,7882,7886,7893,7894,7922,7926,7929,7936,7952,7960,7970,7972,7973,7975,7986,7993,8002,8003,8054,8055,8119,8123,8128,8165,8186,8197,8270,8284,8292,8298,8300,8307,8337,8359,8369,8371,8376,8377,8395,8435,8438,8443,8444,8455,8496,8498,8553,8695,8744,8747,8793,8796,8822,8825,8826,8827,8885,8908,8942,8962,8993,9009,9012,9014,9015,9016,9018,9020,9023,9027,9028,9046,9054,9059,9064,9066,9072,9091,9118,9135,9157,9158,9160,9161,9170,9175,9178,9181,9192,9200,9217,9218,9220,9338,9341,9378,9415,9417,9420,9421,9432,9436,9447,9507,9573,9592,9619,9646,9653,9654,9665,9667,9685,9692,9706,9709,9716,9732,9740,9749,9757,9767,9781,9795,9903,9969,9995,10006,10017,10024,10043,10045,10046,10049,10090,10115,10126,10134,10158,10161,10162,10164,10165,10168,10186,10188,10426,10428,10454,10771,10868,10878,10941,10942,10965,11150,11180,11204,11277,11297,11300,11302,11303,11304,11306,11308,11311,11314,11315,11322,11336,11339,11340,11344,11345,11354,11401,11402,11404,11414,11418,11486,11568,11596,11599,11602,11634,11864,11884,11915,11954,11957,11958,11960,11961,11964,11985,12184,12239,12240,12244,12252,12257,12265,12266,12307,12309,12326,12392,12394,12395,12400,12401,12405,12512,12521,12543,12677,12688,12720,12792,12796,12813,13297,13757,13795,14249,14251,14648,14764,15050,15167,15305,15307,15596,17325,17332,17343,17348,17397,17407,17419,17422,17426,17435,17439,17447,17456,17458,17467,17468,17476,17519,17536,17614,17776,17778,17779,17813,17818,17819,17827,17845,17932,17944,17956,18035,18066,18067,18090,18098,18124,18125,18127,18128,18131,18160,18175,18178,18204,18205,18206,18207,18229,18230,18334,18336,18337,18382,18397,18418,18765,18791,18792,18867,18924,18956,19027,19037,19038,19067,19072,19081,19087,19108,19110,19121,19122,19125,19126,19129,19130,19135,19139,19142,19144,19152,19158,19184,19190,19220,19231,19233,19240,19276,19278,19303,19304,19306,19310,19316,19335,19338,19339,19341,19345,19346,19390,19410,19411,19413,19414,19418,19419,19448,19455,19457,19458,19459,19465,19482,19484,19490,19517,19522,19529,19537,19547,19552,19573,19578,19584,19597,19612,19645,19664,19667,19688,19714,19745,19751,19762,19768,19773,19785,19787,19791,19799,19837,19839,19843,19844,19849,19892,19899,19916,19943,19944,19957,19993,20012,20016,20020,20032,20033,20039,20052,20183,20274,20275,20348,20459,20469,20495,20609,20703,20811,20852,20924,21058,21585,21694,21751,21995,22003,22026,22032,22396,22411,22424,22530,22543,22545,22570,22606,22638,22791,22844,22858,22862,22864,22869,22870,22873,22874,22914,22931,22982,22987,22988]]],["those",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22967]]],["thou",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15597]]],["thus",[8,8,[[0,1,1,0,1,[[24,1,1,0,1]]],[5,1,1,1,2,[[193,1,1,1,2]]],[6,2,2,2,4,[[218,1,1,2,3],[223,1,1,3,4]]],[8,1,1,4,5,[[261,1,1,4,5]]],[10,1,1,5,6,[[304,1,1,5,6]]],[16,1,1,6,7,[[427,1,1,6,7]]],[17,1,1,7,8,[[462,1,1,7,8]]]],[680,5986,6720,6902,7923,9223,12737,13493]]],["very",[2,2,[[0,2,2,0,2,[[26,2,2,0,2]]]],[748,751]]],["way",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9504]]],["which",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15579]]],["whom",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13316]]]]},{"k":"H2089","v":[]},{"k":"H2090","v":[["*",[12,11,[[6,2,1,0,1,[[228,2,1,0,1]]],[9,1,1,1,2,[[277,1,1,1,2]]],[10,1,1,2,3,[[304,1,1,2,3]]],[11,1,1,3,4,[[318,1,1,3,4]]],[20,6,6,4,10,[[660,2,2,4,6],[663,2,2,6,8],[665,1,1,8,9],[667,1,1,9,10]]],[25,1,1,10,11,[[841,1,1,10,11]]]],[6997,8284,9223,9693,17335,17357,17413,17416,17452,17488,21522]]],["This",[3,3,[[20,2,2,0,2,[[660,1,1,0,1],[667,1,1,1,2]]],[25,1,1,2,3,[[841,1,1,2,3]]]],[17357,17488,21522]]],["Thus",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[6997]]],["another",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8284]]],["it",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17335]]],["this",[4,4,[[11,1,1,0,1,[[318,1,1,0,1]]],[20,3,3,1,4,[[663,2,2,1,3],[665,1,1,3,4]]]],[9693,17413,17416,17452]]],["thus",[2,2,[[6,1,1,0,1,[[228,1,1,0,1]]],[10,1,1,1,2,[[304,1,1,1,2]]]],[6997,9223]]]]},{"k":"H2091","v":[["*",[390,337,[[0,9,8,0,8,[[1,2,2,0,2],[12,1,1,2,3],[23,4,3,3,6],[40,1,1,6,7],[43,1,1,7,8]]],[1,105,88,8,96,[[52,1,1,8,9],[60,1,1,9,10],[61,1,1,10,11],[69,1,1,11,12],[74,17,15,12,27],[75,8,4,27,31],[77,17,16,31,47],[79,4,3,47,50],[80,1,1,50,51],[81,4,4,51,55],[84,4,3,55,58],[85,7,4,58,62],[86,20,17,62,79],[87,2,1,79,80],[88,15,14,80,94],[89,2,2,94,96]]],[2,1,1,96,97,[[97,1,1,96,97]]],[3,24,23,97,120,[[120,1,1,97,98],[123,15,14,98,112],[124,1,1,112,113],[138,1,1,113,114],[140,1,1,114,115],[147,5,5,115,120]]],[4,4,4,120,124,[[159,1,1,120,121],[160,1,1,121,122],[169,1,1,122,123],[181,1,1,123,124]]],[5,5,5,124,129,[[192,2,2,124,126],[193,2,2,126,128],[208,1,1,128,129]]],[6,3,2,129,131,[[218,3,2,129,131]]],[8,7,6,131,137,[[241,7,6,131,137]]],[9,6,6,137,143,[[267,1,1,137,138],[274,3,3,138,141],[278,1,1,141,142],[287,1,1,142,143]]],[10,44,33,143,176,[[296,11,7,143,150],[297,7,4,150,154],[299,3,3,154,157],[300,14,10,157,167],[302,1,1,167,168],[304,1,1,168,169],[305,3,3,169,172],[310,3,3,172,175],[312,1,1,175,176]]],[11,15,13,176,189,[[317,1,1,176,177],[319,1,1,177,178],[322,1,1,178,179],[324,2,2,179,181],[326,1,1,181,182],[328,1,1,182,183],[330,1,1,183,184],[332,1,1,184,185],[335,3,2,185,187],[336,1,1,187,188],[337,2,1,188,189]]],[12,24,17,189,206,[[355,3,3,189,192],[357,1,1,192,193],[358,1,1,193,194],[359,2,2,194,196],[365,9,5,196,201],[366,8,5,201,206]]],[13,49,41,206,247,[[367,1,1,206,207],[368,2,2,207,209],[369,9,7,209,216],[370,8,6,216,222],[371,1,1,222,223],[374,1,1,223,224],[375,16,12,224,236],[378,1,1,236,237],[379,2,2,237,239],[381,1,1,239,240],[382,2,2,240,242],[387,1,1,242,243],[390,1,1,243,244],[391,1,1,244,245],[398,1,1,245,246],[402,1,1,246,247]]],[14,13,12,247,259,[[403,5,5,247,252],[404,1,1,252,253],[410,7,6,253,259]]],[15,3,3,259,262,[[419,3,3,259,262]]],[16,6,6,262,268,[[426,2,2,262,264],[429,1,1,264,265],[430,1,1,265,266],[433,2,2,266,268]]],[17,9,9,268,277,[[438,1,1,268,269],[458,1,1,269,270],[463,4,4,270,274],[466,1,1,274,275],[472,1,1,275,276],[477,1,1,276,277]]],[18,8,8,277,285,[[496,1,1,277,278],[522,1,1,278,279],[549,1,1,279,280],[582,1,1,280,281],[592,1,1,281,282],[596,2,2,282,284],[612,1,1,284,285]]],[19,7,7,285,292,[[638,1,1,285,286],[644,1,1,286,287],[647,1,1,287,288],[649,1,1,288,289],[652,2,2,289,291],[654,1,1,291,292]]],[20,2,2,292,294,[[660,1,1,292,293],[670,1,1,293,294]]],[21,3,3,294,297,[[671,1,1,294,295],[673,1,1,295,296],[675,1,1,296,297]]],[22,11,11,297,308,[[680,2,2,297,299],[691,1,1,299,300],[708,1,1,300,301],[709,1,1,301,302],[717,1,1,302,303],[718,1,1,303,304],[724,1,1,304,305],[738,3,3,305,308]]],[23,6,5,308,313,[[748,1,1,308,309],[754,2,2,309,311],[795,1,1,311,312],[796,2,1,312,313]]],[24,1,1,313,314,[[800,1,1,313,314]]],[25,8,7,314,321,[[808,2,1,314,315],[817,2,2,315,317],[828,1,1,317,318],[829,2,2,318,320],[839,1,1,320,321]]],[26,3,3,321,324,[[860,3,3,321,324]]],[27,2,2,324,326,[[863,1,1,324,325],[869,1,1,325,326]]],[28,1,1,326,327,[[878,1,1,326,327]]],[33,1,1,327,328,[[901,1,1,327,328]]],[34,1,1,328,329,[[904,1,1,328,329]]],[35,1,1,329,330,[[906,1,1,329,330]]],[36,1,1,330,331,[[910,1,1,330,331]]],[37,6,5,331,336,[[914,3,2,331,333],[916,1,1,333,334],[923,1,1,334,335],[924,1,1,335,336]]],[38,1,1,336,337,[[927,1,1,336,337]]]],[41,42,320,613,626,644,1237,1332,1601,1808,1851,2074,2198,2206,2207,2208,2212,2213,2219,2220,2221,2223,2224,2226,2231,2233,2234,2241,2264,2267,2272,2298,2299,2301,2304,2306,2307,2308,2313,2315,2316,2317,2319,2320,2326,2327,2329,2385,2386,2387,2424,2440,2441,2462,2469,2536,2553,2563,2579,2600,2602,2604,2606,2607,2608,2610,2611,2615,2616,2617,2619,2620,2621,2626,2627,2628,2630,2631,2632,2657,2666,2667,2669,2670,2672,2677,2679,2680,2681,2683,2684,2689,2694,2702,2712,2733,2926,3754,3864,3870,3876,3882,3888,3894,3900,3906,3912,3918,3924,3930,3934,3936,3943,4393,4459,4686,4714,4715,4716,4718,5136,5150,5381,5696,5968,5973,5997,6000,6434,6743,6745,7335,7339,7342,7346,7348,7349,8046,8216,8219,8220,8316,8584,8916,8917,8918,8924,8926,8928,8931,8982,8983,8984,8985,9062,9065,9079,9081,9089,9090,9093,9095,9096,9097,9100,9101,9104,9179,9244,9264,9267,9268,9411,9413,9415,9528,9652,9715,9822,9863,9868,9910,9971,10038,10111,10198,10200,10215,10237,10897,10900,10901,10928,10959,10978,10980,11157,11158,11159,11160,11161,11166,11167,11168,11169,11171,11209,11218,11225,11233,11234,11235,11236,11237,11238,11239,11253,11254,11265,11266,11267,11268,11269,11364,11365,11373,11374,11377,11378,11379,11380,11381,11382,11384,11385,11388,11446,11461,11464,11508,11511,11512,11627,11691,11728,11902,11996,12020,12022,12025,12026,12027,12096,12226,12227,12228,12229,12231,12234,12490,12491,12492,12708,12709,12773,12781,12821,12832,12919,13429,13505,13510,13519,13521,13612,13791,13933,14178,14610,15015,15643,15834,15970,16025,16190,16710,16876,16969,17016,17124,17125,17190,17341,17529,17548,17581,17612,17692,17705,17923,18239,18257,18414,18439,18592,18827,18830,18838,19057,19205,19210,20219,20295,20421,20596,20775,20779,21143,21161,21170,21438,22044,22074,22079,22113,22198,22348,22708,22767,22805,22863,22924,22934,22958,23068,23082,23123]]],["+",[9,9,[[1,2,2,0,2,[[79,1,1,0,1],[86,1,1,1,2]]],[12,1,1,2,3,[[366,1,1,2,3]]],[17,1,1,3,4,[[463,1,1,3,4]]],[18,3,3,4,7,[[496,1,1,4,5],[549,1,1,5,6],[596,1,1,6,7]]],[19,1,1,7,8,[[649,1,1,7,8]]],[25,1,1,8,9,[[817,1,1,8,9]]]],[2385,2630,11168,13519,14178,15015,16025,17016,20779]]],["gold",[340,297,[[0,8,8,0,8,[[1,2,2,0,2],[12,1,1,2,3],[23,3,3,3,6],[40,1,1,6,7],[43,1,1,7,8]]],[1,94,80,8,88,[[52,1,1,8,9],[60,1,1,9,10],[61,1,1,10,11],[69,1,1,11,12],[74,16,14,12,26],[75,8,4,26,30],[77,15,15,30,45],[79,2,2,45,47],[80,1,1,47,48],[81,2,2,48,50],[84,4,3,50,53],[85,7,4,53,57],[86,19,17,57,74],[87,2,1,74,75],[88,13,12,75,87],[89,1,1,87,88]]],[3,12,12,88,100,[[123,4,4,88,92],[124,1,1,92,93],[138,1,1,93,94],[140,1,1,94,95],[147,5,5,95,100]]],[4,4,4,100,104,[[159,1,1,100,101],[160,1,1,101,102],[169,1,1,102,103],[181,1,1,103,104]]],[5,5,5,104,109,[[192,2,2,104,106],[193,2,2,106,108],[208,1,1,108,109]]],[6,1,1,109,110,[[218,1,1,109,110]]],[8,3,3,110,113,[[241,3,3,110,113]]],[9,6,6,113,119,[[267,1,1,113,114],[274,3,3,114,117],[278,1,1,117,118],[287,1,1,118,119]]],[10,44,33,119,152,[[296,11,7,119,126],[297,7,4,126,130],[299,3,3,130,133],[300,14,10,133,143],[302,1,1,143,144],[304,1,1,144,145],[305,3,3,145,148],[310,3,3,148,151],[312,1,1,151,152]]],[11,14,12,152,164,[[317,1,1,152,153],[319,1,1,153,154],[324,2,2,154,156],[326,1,1,156,157],[328,1,1,157,158],[330,1,1,158,159],[332,1,1,159,160],[335,3,2,160,162],[336,1,1,162,163],[337,2,1,163,164]]],[12,22,17,164,181,[[355,3,3,164,167],[357,1,1,167,168],[358,1,1,168,169],[359,2,2,169,171],[365,8,5,171,176],[366,7,5,176,181]]],[13,47,39,181,220,[[367,1,1,181,182],[368,2,2,182,184],[369,9,7,184,191],[370,7,5,191,196],[371,1,1,196,197],[374,1,1,197,198],[375,16,12,198,210],[378,1,1,210,211],[379,1,1,211,212],[381,1,1,212,213],[382,2,2,213,215],[387,1,1,215,216],[390,1,1,216,217],[391,1,1,217,218],[398,1,1,218,219],[402,1,1,219,220]]],[14,13,12,220,232,[[403,5,5,220,225],[404,1,1,225,226],[410,7,6,226,232]]],[15,3,3,232,235,[[419,3,3,232,235]]],[16,3,3,235,238,[[426,2,2,235,237],[433,1,1,237,238]]],[17,7,7,238,245,[[438,1,1,238,239],[458,1,1,239,240],[463,3,3,240,243],[466,1,1,243,244],[477,1,1,244,245]]],[18,5,5,245,250,[[522,1,1,245,246],[582,1,1,246,247],[592,1,1,247,248],[596,1,1,248,249],[612,1,1,249,250]]],[19,6,6,250,256,[[638,1,1,250,251],[644,1,1,251,252],[647,1,1,252,253],[652,2,2,253,255],[654,1,1,255,256]]],[20,1,1,256,257,[[660,1,1,256,257]]],[21,3,3,257,260,[[671,1,1,257,258],[673,1,1,258,259],[675,1,1,259,260]]],[22,11,11,260,271,[[680,2,2,260,262],[691,1,1,262,263],[708,1,1,263,264],[709,1,1,264,265],[717,1,1,265,266],[718,1,1,266,267],[724,1,1,267,268],[738,3,3,268,271]]],[23,5,4,271,275,[[748,1,1,271,272],[754,2,2,272,274],[796,2,1,274,275]]],[24,1,1,275,276,[[800,1,1,275,276]]],[25,7,6,276,282,[[808,2,1,276,277],[817,1,1,277,278],[828,1,1,278,279],[829,2,2,279,281],[839,1,1,281,282]]],[26,3,3,282,285,[[860,3,3,282,285]]],[27,2,2,285,287,[[863,1,1,285,286],[869,1,1,286,287]]],[28,1,1,287,288,[[878,1,1,287,288]]],[33,1,1,288,289,[[901,1,1,288,289]]],[34,1,1,289,290,[[904,1,1,289,290]]],[35,1,1,290,291,[[906,1,1,290,291]]],[36,1,1,291,292,[[910,1,1,291,292]]],[37,4,4,292,296,[[914,1,1,292,293],[916,1,1,293,294],[923,1,1,294,295],[924,1,1,295,296]]],[38,1,1,296,297,[[927,1,1,296,297]]]],[41,42,320,613,626,644,1237,1332,1601,1808,1851,2074,2198,2206,2207,2208,2212,2213,2219,2221,2223,2224,2226,2231,2233,2234,2241,2264,2267,2272,2298,2299,2301,2304,2306,2307,2308,2313,2315,2316,2317,2319,2320,2326,2329,2385,2387,2424,2462,2469,2536,2553,2563,2579,2600,2602,2604,2606,2607,2608,2610,2611,2615,2616,2617,2619,2620,2621,2626,2627,2628,2630,2631,2632,2657,2666,2667,2669,2670,2672,2677,2679,2680,2681,2683,2689,2694,2712,3864,3870,3934,3936,3943,4393,4459,4686,4714,4715,4716,4718,5136,5150,5381,5696,5968,5973,5997,6000,6434,6745,7339,7342,7346,8046,8216,8219,8220,8316,8584,8916,8917,8918,8924,8926,8928,8931,8982,8983,8984,8985,9062,9065,9079,9081,9089,9090,9093,9095,9096,9097,9100,9101,9104,9179,9244,9264,9267,9268,9411,9413,9415,9528,9652,9715,9863,9868,9910,9971,10038,10111,10198,10200,10215,10237,10897,10900,10901,10928,10959,10978,10980,11157,11158,11159,11160,11161,11166,11167,11168,11169,11171,11209,11218,11225,11233,11234,11235,11236,11237,11238,11239,11253,11254,11266,11267,11268,11269,11364,11365,11373,11374,11377,11378,11379,11380,11381,11382,11384,11385,11388,11446,11464,11508,11511,11512,11627,11691,11728,11902,11996,12020,12022,12025,12026,12027,12096,12226,12227,12228,12229,12231,12234,12490,12491,12492,12708,12709,12832,12919,13429,13505,13510,13521,13612,13933,14610,15643,15834,15970,16190,16710,16876,16969,17124,17125,17190,17341,17548,17581,17612,17692,17705,17923,18239,18257,18414,18439,18592,18827,18830,18838,19057,19205,19210,20295,20421,20596,20775,21143,21161,21170,21438,22044,22074,22079,22113,22198,22348,22708,22767,22805,22863,22924,22958,23068,23082,23123]]],["golden",[40,37,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,9,8,1,9,[[74,1,1,1,2],[77,2,1,2,3],[79,1,1,3,4],[81,2,2,4,6],[88,2,2,6,8],[89,1,1,8,9]]],[2,1,1,9,10,[[97,1,1,9,10]]],[3,12,12,10,22,[[120,1,1,10,11],[123,11,11,11,22]]],[6,2,2,22,24,[[218,2,2,22,24]]],[8,4,3,24,27,[[241,4,3,24,27]]],[11,1,1,27,28,[[322,1,1,27,28]]],[12,1,1,28,29,[[365,1,1,28,29]]],[13,2,2,29,31,[[370,1,1,29,30],[379,1,1,30,31]]],[16,3,3,31,34,[[429,1,1,31,32],[430,1,1,32,33],[433,1,1,33,34]]],[20,1,1,34,35,[[670,1,1,34,35]]],[23,1,1,35,36,[[795,1,1,35,36]]],[37,2,1,36,37,[[914,2,1,36,37]]]],[613,2220,2327,2386,2440,2441,2684,2702,2733,2926,3754,3876,3882,3888,3894,3900,3906,3912,3918,3924,3930,3936,6743,6745,7335,7348,7349,9822,11160,11265,11461,12773,12781,12821,17529,20219,22934]]],["weather",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13791]]]]},{"k":"H2092","v":[["abhorreth",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13670]]]]},{"k":"H2093","v":[["Zaham",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11433]]]]},{"k":"H2094","v":[["*",[22,19,[[1,1,1,0,1,[[67,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]],[13,1,1,2,3,[[385,1,1,2,3]]],[18,1,1,3,4,[[496,1,1,3,4]]],[20,2,2,4,6,[[662,1,1,4,5],[670,1,1,5,6]]],[25,15,12,6,18,[[804,7,5,6,11],[834,8,7,11,18]]],[26,1,1,18,19,[[861,1,1,18,19]]]],[2019,9684,11586,14179,17394,17535,20519,20520,20521,20522,20523,21283,21284,21285,21286,21287,21288,21289,22084]]],["+",[5,5,[[25,5,5,0,5,[[804,2,2,0,2],[834,3,3,2,5]]]],[20519,20520,21283,21284,21285]]],["admonished",[2,2,[[20,2,2,0,2,[[662,1,1,0,1],[670,1,1,1,2]]]],[17394,17535]]],["shine",[1,1,[[26,1,1,0,1,[[861,1,1,0,1]]]],[22084]]],["teach",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2019]]],["warn",[7,7,[[13,1,1,0,1,[[385,1,1,0,1]]],[25,6,6,1,7,[[804,3,3,1,4],[834,3,3,4,7]]]],[11586,20520,20521,20523,21287,21288,21289]]],["warned",[4,4,[[11,1,1,0,1,[[318,1,1,0,1]]],[18,1,1,1,2,[[496,1,1,1,2]]],[25,2,2,2,4,[[804,1,1,2,3],[834,1,1,3,4]]]],[9684,14179,20523,21286]]],["warning",[2,2,[[25,2,2,0,2,[[804,1,1,0,1],[834,1,1,1,2]]]],[20522,21285]]]]},{"k":"H2095","v":[["+",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12132]]]]},{"k":"H2096","v":[["brightness",[2,2,[[25,1,1,0,1,[[809,1,1,0,1]]],[26,1,1,1,2,[[861,1,1,1,2]]]],[20606,22084]]]]},{"k":"H2097","v":[["*",[2,2,[[18,1,1,0,1,[[609,1,1,0,1]]],[27,1,1,1,2,[[868,1,1,1,2]]]],[16163,22194]]],["that",[1,1,[[18,1,1,0,1,[[609,1,1,0,1]]]],[16163]]],["this",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22194]]]]},{"k":"H2098","v":[["*",[15,15,[[1,2,2,0,2,[[64,2,2,0,2]]],[18,10,10,2,12,[[486,1,1,2,3],[487,1,1,3,4],[489,1,1,4,5],[494,1,1,5,6],[508,1,1,6,7],[509,1,1,7,8],[539,1,1,8,9],[545,1,1,9,10],[619,1,1,10,11],[620,1,1,11,12]]],[22,2,2,12,14,[[720,1,1,12,13],[721,1,1,13,14]]],[34,1,1,14,15,[[903,1,1,14,15]]]],[1933,1936,14036,14043,14073,14112,14335,14363,14838,14928,16289,16301,18504,18526,22742]]],["This",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18526]]],["that",[3,3,[[18,3,3,0,3,[[487,1,1,0,1],[494,1,1,1,2],[508,1,1,2,3]]]],[14043,14112,14335]]],["this",[3,3,[[18,2,2,0,2,[[489,1,1,0,1],[539,1,1,1,2]]],[34,1,1,2,3,[[903,1,1,2,3]]]],[14073,14838,22742]]],["wherein",[2,2,[[18,2,2,0,2,[[619,1,1,0,1],[620,1,1,1,2]]]],[16289,16301]]],["which",[5,5,[[1,2,2,0,2,[[64,2,2,0,2]]],[18,3,3,2,5,[[486,1,1,2,3],[509,1,1,3,4],[545,1,1,4,5]]]],[1933,1936,14036,14363,14928]]],["whom",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18504]]]]},{"k":"H2099","v":[["Zif",[2,2,[[10,2,2,0,2,[[296,2,2,0,2]]]],[8897,8933]]]]},{"k":"H2100","v":[["*",[42,41,[[1,4,4,0,4,[[52,2,2,0,2],[62,1,1,2,3],[82,1,1,3,4]]],[2,16,15,4,19,[[104,14,13,4,17],[109,1,1,17,18],[111,1,1,18,19]]],[3,5,5,19,24,[[121,1,1,19,20],[129,1,1,20,21],[130,1,1,21,22],[132,2,2,22,24]]],[4,6,6,24,30,[[158,1,1,24,25],[163,1,1,25,26],[178,2,2,26,28],[179,1,1,28,29],[183,1,1,29,30]]],[5,1,1,30,31,[[191,1,1,30,31]]],[9,1,1,31,32,[[269,1,1,31,32]]],[18,2,2,32,34,[[555,1,1,32,33],[582,1,1,33,34]]],[22,1,1,34,35,[[726,1,1,34,35]]],[23,3,3,35,38,[[755,1,1,35,36],[776,1,1,36,37],[793,1,1,37,38]]],[24,1,1,38,39,[[800,1,1,38,39]]],[25,2,2,39,41,[[821,2,2,39,41]]]],[1587,1596,1872,2476,3170,3172,3174,3175,3176,3177,3179,3180,3181,3187,3193,3200,3201,3342,3373,3794,4102,4116,4207,4208,5089,5217,5575,5581,5588,5748,5940,8110,15133,15647,18635,19231,19753,20131,20429,20901,20910]]],["+",[2,2,[[2,2,2,0,2,[[104,2,2,0,2]]]],[3193,3201]]],["away",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20429]]],["floweth",[12,12,[[2,1,1,0,1,[[109,1,1,0,1]]],[3,4,4,1,5,[[129,1,1,1,2],[130,1,1,2,3],[132,2,2,3,5]]],[4,6,6,5,11,[[158,1,1,5,6],[163,1,1,6,7],[178,2,2,7,9],[179,1,1,9,10],[183,1,1,10,11]]],[5,1,1,11,12,[[191,1,1,11,12]]]],[3342,4102,4116,4207,4208,5089,5217,5575,5581,5588,5748,5940]]],["flowing",[9,9,[[1,4,4,0,4,[[52,2,2,0,2],[62,1,1,2,3],[82,1,1,3,4]]],[23,3,3,4,7,[[755,1,1,4,5],[776,1,1,5,6],[793,1,1,6,7]]],[25,2,2,7,9,[[821,2,2,7,9]]]],[1587,1596,1872,2476,19231,19753,20131,20901,20910]]],["issue",[14,14,[[2,12,12,0,12,[[104,11,11,0,11],[111,1,1,11,12]]],[3,1,1,12,13,[[121,1,1,12,13]]],[9,1,1,13,14,[[269,1,1,13,14]]]],[3170,3172,3174,3175,3176,3177,3179,3180,3181,3187,3200,3373,3794,8110]]],["out",[3,3,[[18,2,2,0,2,[[555,1,1,0,1],[582,1,1,1,2]]],[22,1,1,2,3,[[726,1,1,2,3]]]],[15133,15647,18635]]],["run",[1,1,[[2,1,1,0,1,[[104,1,1,0,1]]]],[3193]]]]},{"k":"H2101","v":[["*",[13,10,[[2,13,10,0,10,[[104,13,10,0,10]]]],[3170,3171,3181,3183,3187,3193,3194,3196,3198,3201]]],["+",[7,7,[[2,7,7,0,7,[[104,7,7,0,7]]]],[3171,3181,3183,3193,3196,3198,3201]]],["issue",[6,5,[[2,6,5,0,5,[[104,6,5,0,5]]]],[3170,3171,3187,3193,3194]]]]},{"k":"H2102","v":[["*",[10,10,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,2,2,1,3,[[67,1,1,1,2],[70,1,1,2,3]]],[4,3,3,3,6,[[153,1,1,3,4],[169,1,1,4,5],[170,1,1,5,6]]],[15,3,3,6,9,[[421,3,3,6,9]]],[23,1,1,9,10,[[794,1,1,9,10]]]],[687,2010,2091,4935,5377,5404,12521,12527,12540,20195]]],["+",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4935]]],["presume",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5404]]],["presumptuously",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[4,1,1,1,2,[[169,1,1,1,2]]]],[2091,5377]]],["proud",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20195]]],["proudly",[4,4,[[1,1,1,0,1,[[67,1,1,0,1]]],[15,3,3,1,4,[[421,3,3,1,4]]]],[2010,12521,12527,12540]]],["sod",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[687]]]]},{"k":"H2103","v":[["pride",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21894]]]]},{"k":"H2104","v":[["Zuzims",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[341]]]]},{"k":"H2105","v":[["Zoheth",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10405]]]]},{"k":"H2106","v":[["*",[2,2,[[18,1,1,0,1,[[621,1,1,0,1]]],[37,1,1,1,2,[[919,1,1,1,2]]]],[16317,23014]]],["corners",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23014]]],["stones",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16317]]]]},{"k":"H2107","v":[["lavish",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18592]]]]},{"k":"H2108","v":[["*",[16,16,[[4,2,2,0,2,[[153,1,1,0,1],[156,1,1,1,2]]],[5,1,1,2,3,[[197,1,1,2,3]]],[7,1,1,3,4,[[235,1,1,3,4]]],[8,1,1,4,5,[[256,1,1,4,5]]],[9,1,1,5,6,[[273,1,1,5,6]]],[10,2,2,6,8,[[293,1,1,6,7],[302,1,1,7,8]]],[11,1,1,8,9,[[336,1,1,8,9]]],[12,1,1,9,10,[[354,1,1,9,10]]],[18,1,1,10,11,[[495,1,1,10,11]]],[22,4,4,11,15,[[704,1,1,11,12],[723,2,2,12,14],[742,1,1,14,15]]],[27,1,1,15,16,[[874,1,1,15,16]]]],[4928,5016,6120,7194,7781,8202,8834,9171,10216,10883,14149,18143,18566,18582,18889,22270]]],["+",[1,1,[[5,1,1,0,1,[[197,1,1,0,1]]]],[6120]]],["Save",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4928]]],["beside",[7,7,[[7,1,1,0,1,[[235,1,1,0,1]]],[9,1,1,1,2,[[273,1,1,1,2]]],[12,1,1,2,3,[[354,1,1,2,3]]],[22,4,4,3,7,[[704,1,1,3,4],[723,2,2,4,6],[742,1,1,6,7]]]],[7194,8202,10883,18143,18566,18582,18889]]],["but",[2,2,[[10,1,1,0,1,[[302,1,1,0,1]]],[27,1,1,1,2,[[874,1,1,1,2]]]],[9171,22270]]],["only",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5016]]],["save",[4,4,[[8,1,1,0,1,[[256,1,1,0,1]]],[10,1,1,1,2,[[293,1,1,1,2]]],[11,1,1,2,3,[[336,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]]],[7781,8834,10216,14149]]]]},{"k":"H2109","v":[["fed",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19066]]]]},{"k":"H2110","v":[["fed",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21849]]]]},{"k":"H2111","v":[["*",[3,3,[[16,1,1,0,1,[[430,1,1,0,1]]],[20,1,1,1,2,[[670,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[12788,17526,22755]]],["+",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17526]]],["moved",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12788]]],["vex",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22755]]]]},{"k":"H2112","v":[["+",[2,2,[[26,2,2,0,2,[[854,1,1,0,1],[855,1,1,1,2]]]],[21893,21931]]]]},{"k":"H2113","v":[["vexation",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18183]]]]},{"k":"H2114","v":[["*",[77,76,[[1,3,3,0,3,[[78,1,1,0,1],[79,2,2,1,3]]],[2,4,4,3,7,[[99,1,1,3,4],[111,3,3,4,7]]],[3,8,8,7,15,[[117,1,1,7,8],[119,3,3,8,11],[132,1,1,11,12],[134,2,2,12,14],[142,1,1,14,15]]],[4,2,2,15,17,[[177,1,1,15,16],[184,1,1,16,17]]],[10,1,1,17,18,[[293,1,1,17,18]]],[11,1,1,18,19,[[331,1,1,18,19]]],[17,5,5,19,24,[[450,1,1,19,20],[454,4,4,20,24]]],[18,7,7,24,31,[[521,1,1,24,25],[531,1,1,25,26],[535,1,1,26,27],[546,1,1,27,28],[555,1,1,28,29],[558,1,1,29,30],[586,1,1,30,31]]],[19,14,14,31,45,[[629,1,1,31,32],[632,4,4,32,36],[633,1,1,36,37],[634,1,1,37,38],[638,1,1,38,39],[641,1,1,39,40],[647,1,1,40,41],[649,1,1,41,42],[650,1,1,42,43],[654,2,2,43,45]]],[22,10,9,45,54,[[679,3,2,45,47],[695,1,1,47,48],[703,2,2,48,50],[706,1,1,50,51],[707,1,1,51,52],[721,1,1,52,53],[739,1,1,53,54]]],[23,7,7,54,61,[[746,1,1,54,55],[747,1,1,55,56],[749,1,1,56,57],[762,1,1,57,58],[774,1,1,58,59],[795,2,2,59,61]]],[24,1,1,61,62,[[801,1,1,61,62]]],[25,8,8,62,70,[[808,1,1,62,63],[812,1,1,63,64],[815,1,1,64,65],[817,1,1,65,66],[829,2,2,66,68],[831,1,1,68,69],[832,1,1,69,70]]],[27,4,4,70,74,[[866,1,1,70,71],[868,1,1,71,72],[869,2,2,72,74]]],[28,1,1,74,75,[[878,1,1,74,75]]],[30,1,1,75,76,[[888,1,1,75,76]]]],[2369,2391,2415,2978,3379,3381,3382,3655,3696,3702,3730,4234,4261,4264,4550,5552,5774,8834,10085,13222,13310,13312,13314,13324,14591,14728,14782,14943,15143,15226,15766,16449,16520,16527,16534,16537,16541,16580,16703,16782,16970,17029,17077,17171,17182,17658,17661,17993,18120,18123,18185,18198,18517,18848,18990,19015,19077,19398,19675,20214,20263,20444,20598,20664,20736,20794,21164,21167,21216,21242,22159,22187,22201,22206,22360,22521]]],["+",[4,4,[[2,1,1,0,1,[[111,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[4,1,1,2,3,[[177,1,1,2,3]]],[19,1,1,3,4,[[629,1,1,3,4]]]],[3381,4234,5552,16449]]],["Strangers",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22187]]],["another",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13324]]],["away",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17658]]],["estranged",[4,4,[[17,1,1,0,1,[[454,1,1,0,1]]],[18,2,2,1,3,[[535,1,1,1,2],[555,1,1,2,3]]],[25,1,1,3,4,[[815,1,1,3,4]]]],[13310,14782,15143,20736]]],["fanners",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20214]]],["man",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17171]]],["place",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19398]]],["strange",[14,14,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,1,1,1,2,[[99,1,1,1,2]]],[3,2,2,2,4,[[119,1,1,2,3],[142,1,1,3,4]]],[4,1,1,4,5,[[184,1,1,4,5]]],[11,1,1,5,6,[[331,1,1,5,6]]],[17,1,1,6,7,[[454,1,1,6,7]]],[18,2,2,7,9,[[521,1,1,7,8],[558,1,1,8,9]]],[19,1,1,9,10,[[634,1,1,9,10]]],[22,3,3,10,13,[[695,1,1,10,11],[706,1,1,11,12],[721,1,1,12,13]]],[27,1,1,13,14,[[866,1,1,13,14]]]],[2391,2978,3696,4550,5774,10085,13314,14591,15226,16580,17993,18185,18517,22159]]],["stranger",[18,18,[[1,2,2,0,2,[[78,1,1,0,1],[79,1,1,1,2]]],[2,2,2,2,4,[[111,2,2,2,4]]],[3,5,5,4,9,[[117,1,1,4,5],[119,2,2,5,7],[134,2,2,7,9]]],[10,1,1,9,10,[[293,1,1,9,10]]],[17,2,2,10,12,[[450,1,1,10,11],[454,1,1,11,12]]],[18,1,1,12,13,[[546,1,1,12,13]]],[19,5,5,13,18,[[633,1,1,13,14],[638,1,1,14,15],[641,1,1,15,16],[647,1,1,16,17],[654,1,1,17,18]]]],[2369,2415,3379,3382,3655,3702,3730,4261,4264,8834,13222,13312,14943,16541,16703,16782,16970,17182]]],["strangers",[25,24,[[18,2,2,0,2,[[531,1,1,0,1],[586,1,1,1,2]]],[19,1,1,2,3,[[632,1,1,2,3]]],[22,6,5,3,8,[[679,2,1,3,4],[703,2,2,4,6],[707,1,1,6,7],[739,1,1,7,8]]],[23,5,5,8,13,[[746,1,1,8,9],[747,1,1,9,10],[749,1,1,10,11],[774,1,1,11,12],[795,1,1,12,13]]],[24,1,1,13,14,[[801,1,1,13,14]]],[25,7,7,14,21,[[808,1,1,14,15],[812,1,1,15,16],[817,1,1,16,17],[829,2,2,17,19],[831,1,1,19,20],[832,1,1,20,21]]],[27,1,1,21,22,[[869,1,1,21,22]]],[28,1,1,22,23,[[878,1,1,22,23]]],[30,1,1,23,24,[[888,1,1,23,24]]]],[14728,15766,16527,17661,18120,18123,18198,18848,18990,19015,19077,19675,20263,20444,20598,20664,20794,21164,21167,21216,21242,22201,22360,22521]]],["strangers'",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16534]]],["thing",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22206]]],["woman",[2,2,[[19,2,2,0,2,[[632,2,2,0,2]]]],[16520,16537]]],["women",[2,2,[[19,2,2,0,2,[[649,1,1,0,1],[650,1,1,1,2]]]],[17029,17077]]]]},{"k":"H2115","v":[["*",[4,3,[[6,2,1,0,1,[[216,2,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]],[22,1,1,2,3,[[679,1,1,2,3]]]],[6692,13849,17660]]],["+",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6692]]],["closed",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17660]]],["crush",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13849]]],["together",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6692]]]]},{"k":"H2116","v":[["crushed",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18805]]]]},{"k":"H2117","v":[["Zaza",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10339]]]]},{"k":"H2118","v":[["loosed",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2321,2685]]]]},{"k":"H2119","v":[["*",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[467,1,1,1,2]]],[32,1,1,2,3,[[899,1,1,2,3]]]],[5782,13634,22681]]],["afraid",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13634]]],["serpents",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5782]]],["worms",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22681]]]]},{"k":"H2120","v":[["Zoheleth",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8726]]]]},{"k":"H2121","v":[["proud",[1,1,[[18,1,1,0,1,[[601,1,1,0,1]]]],[16107]]]]},{"k":"H2122","v":[["*",[6,6,[[26,6,6,0,6,[[851,1,1,0,1],[853,1,1,1,2],[854,3,3,2,5],[856,1,1,5,6]]]],[21789,21873,21880,21883,21884,21961]]],["brightness",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21789,21873]]],["countenance",[4,4,[[26,4,4,0,4,[[854,3,3,0,3],[856,1,1,3,4]]]],[21880,21883,21884,21961]]]]},{"k":"H2123","v":[["*",[3,3,[[18,2,2,0,2,[[527,1,1,0,1],[557,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]]],[14679,15211,18933]]],["+",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18933]]],["beast",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15211]]],["beasts",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14679]]]]},{"k":"H2124","v":[["Ziza",[2,2,[[12,1,1,0,1,[[341,1,1,0,1]]],[13,1,1,1,2,[[377,1,1,1,2]]]],[10422,11434]]]]},{"k":"H2125","v":[["Zizah",[1,1,[[12,1,1,0,1,[[360,1,1,0,1]]]],[10994]]]]},{"k":"H2126","v":[["Zina",[1,1,[[12,1,1,0,1,[[360,1,1,0,1]]]],[10993]]]]},{"k":"H2127","v":[["Zia",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10441]]]]},{"k":"H2128","v":[["Ziph",[10,9,[[5,2,2,0,2,[[201,2,2,0,2]]],[8,5,4,2,6,[[258,3,3,2,5],[261,2,1,5,6]]],[12,2,2,6,8,[[339,1,1,6,7],[341,1,1,7,8]]],[13,1,1,8,9,[[377,1,1,8,9]]]],[6226,6257,7824,7825,7834,7907,10348,10401,11422]]]]},{"k":"H2129","v":[["Ziphah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10401]]]]},{"k":"H2130","v":[["Ziphites",[2,2,[[8,2,2,0,2,[[258,1,1,0,1],[261,1,1,1,2]]]],[7829,7906]]]]},{"k":"H2131","v":[["*",[7,6,[[17,1,1,0,1,[[471,1,1,0,1]]],[18,1,1,1,2,[[626,1,1,1,2]]],[19,1,1,2,3,[[653,1,1,2,3]]],[22,3,2,3,5,[[723,1,1,3,4],[728,2,1,4,5]]],[33,1,1,5,6,[[902,1,1,5,6]]]],[13744,16393,17159,18575,18673,22722]]],["chains",[3,3,[[18,1,1,0,1,[[626,1,1,0,1]]],[22,1,1,1,2,[[723,1,1,1,2]]],[33,1,1,2,3,[[902,1,1,2,3]]]],[16393,18575,22722]]],["fetters",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13744]]],["firebrands",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17159]]],["sparks",[2,1,[[22,2,1,0,1,[[728,2,1,0,1]]]],[18673]]]]},{"k":"H2132","v":[["*",[38,36,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,3,3,1,4,[[72,1,1,1,2],[76,1,1,2,3],[79,1,1,3,4]]],[2,1,1,4,5,[[113,1,1,4,5]]],[4,5,4,5,9,[[158,1,1,5,6],[160,1,1,6,7],[176,1,1,7,8],[180,2,1,8,9]]],[5,1,1,9,10,[[210,1,1,9,10]]],[6,3,3,10,13,[[219,2,2,10,12],[225,1,1,12,13]]],[8,1,1,13,14,[[243,1,1,13,14]]],[9,1,1,14,15,[[281,1,1,14,15]]],[11,2,2,15,17,[[317,1,1,15,16],[330,1,1,16,17]]],[12,1,1,17,18,[[364,1,1,17,18]]],[15,3,3,18,21,[[417,1,1,18,19],[420,1,1,19,20],[421,1,1,20,21]]],[17,1,1,21,22,[[450,1,1,21,22]]],[18,2,2,22,24,[[529,1,1,22,23],[605,1,1,23,24]]],[22,2,2,24,26,[[695,1,1,24,25],[702,1,1,25,26]]],[23,1,1,26,27,[[755,1,1,26,27]]],[27,1,1,27,28,[[875,1,1,27,28]]],[29,1,1,28,29,[[882,1,1,28,29]]],[32,1,1,29,30,[[898,1,1,29,30]]],[34,1,1,30,31,[[905,1,1,30,31]]],[36,1,1,31,32,[[910,1,1,31,32]]],[37,5,4,32,36,[[914,3,3,32,35],[924,2,1,35,36]]]],[194,2155,2292,2406,3448,5097,5145,5545,5651,6489,6762,6763,6934,7383,8419,9673,10056,11137,12393,12508,12536,13236,14718,16129,17989,18108,19242,22288,22419,22663,22785,22874,22925,22933,22934,23072]]],["Olives",[2,1,[[37,2,1,0,1,[[924,2,1,0,1]]]],[23072]]],["Olivet",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8419]]],["olive",[13,13,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,2,2,1,3,[[76,1,1,1,2],[79,1,1,2,3]]],[2,1,1,3,4,[[113,1,1,3,4]]],[4,2,2,4,6,[[160,1,1,4,5],[180,1,1,5,6]]],[11,1,1,6,7,[[330,1,1,6,7]]],[15,1,1,7,8,[[420,1,1,7,8]]],[17,1,1,8,9,[[450,1,1,8,9]]],[18,1,1,9,10,[[605,1,1,9,10]]],[34,1,1,10,11,[[905,1,1,10,11]]],[36,1,1,11,12,[[910,1,1,11,12]]],[37,1,1,12,13,[[914,1,1,12,13]]]],[194,2292,2406,3448,5145,5651,10056,12508,13236,16129,22785,22874,22934]]],["olives",[2,2,[[6,1,1,0,1,[[225,1,1,0,1]]],[32,1,1,1,2,[[898,1,1,1,2]]]],[6934,22663]]],["oliveyard",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2155]]],["oliveyards",[5,5,[[5,1,1,0,1,[[210,1,1,0,1]]],[8,1,1,1,2,[[243,1,1,1,2]]],[11,1,1,2,3,[[317,1,1,2,3]]],[15,2,2,3,5,[[417,1,1,3,4],[421,1,1,4,5]]]],[6489,7383,9673,12393,12536]]],["tree",[8,8,[[4,1,1,0,1,[[176,1,1,0,1]]],[6,2,2,1,3,[[219,2,2,1,3]]],[18,1,1,3,4,[[529,1,1,3,4]]],[22,2,2,4,6,[[695,1,1,4,5],[702,1,1,5,6]]],[23,1,1,6,7,[[755,1,1,6,7]]],[27,1,1,7,8,[[875,1,1,7,8]]]],[5545,6762,6763,14718,17989,18108,19242,22288]]],["trees",[6,6,[[4,2,2,0,2,[[158,1,1,0,1],[180,1,1,1,2]]],[12,1,1,2,3,[[364,1,1,2,3]]],[29,1,1,3,4,[[882,1,1,3,4]]],[37,2,2,4,6,[[914,2,2,4,6]]]],[5097,5651,11137,22419,22925,22933]]]]},{"k":"H2133","v":[["Zethan",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10545]]]]},{"k":"H2134","v":[["*",[11,11,[[1,2,2,0,2,[[76,1,1,0,1],[79,1,1,1,2]]],[2,2,2,2,4,[[113,2,2,2,4]]],[17,4,4,4,8,[[443,1,1,4,5],[446,1,1,5,6],[451,1,1,6,7],[468,1,1,7,8]]],[19,3,3,8,11,[[643,1,1,8,9],[647,1,1,9,10],[648,1,1,10,11]]]],[2292,2416,3448,3453,13035,13112,13255,13659,16842,16965,16992]]],["clean",[2,2,[[17,1,1,0,1,[[468,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]]],[13659,16842]]],["pure",[9,9,[[1,2,2,0,2,[[76,1,1,0,1],[79,1,1,1,2]]],[2,2,2,2,4,[[113,2,2,2,4]]],[17,3,3,4,7,[[443,1,1,4,5],[446,1,1,5,6],[451,1,1,6,7]]],[19,2,2,7,9,[[647,1,1,7,8],[648,1,1,8,9]]]],[2292,2416,3448,3453,13035,13112,13255,16965,16992]]]]},{"k":"H2135","v":[["*",[8,8,[[17,2,2,0,2,[[450,1,1,0,1],[460,1,1,1,2]]],[18,3,3,2,5,[[528,1,1,2,3],[550,1,1,3,4],[596,1,1,4,5]]],[19,1,1,5,6,[[647,1,1,5,6]]],[22,1,1,6,7,[[679,1,1,6,7]]],[32,1,1,7,8,[[898,1,1,7,8]]]],[13217,13465,14695,15033,15907,16963,17670,22659]]],["+",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15907]]],["clean",[4,4,[[17,2,2,0,2,[[450,1,1,0,1],[460,1,1,1,2]]],[19,1,1,2,3,[[647,1,1,2,3]]],[22,1,1,3,4,[[679,1,1,3,4]]]],[13217,13465,16963,17670]]],["cleansed",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15033]]],["clear",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14695]]],["pure",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22659]]]]},{"k":"H2136","v":[["innocency",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21927]]]]},{"k":"H2137","v":[["crystal",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13521]]]]},{"k":"H2138","v":[["*",[4,4,[[1,2,2,0,2,[[72,1,1,0,1],[83,1,1,1,2]]],[4,2,2,2,4,[[168,1,1,2,3],[172,1,1,3,4]]]],[2161,2519,5358,5440]]],["children",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2519]]],["male",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5440]]],["males",[2,2,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,1,1,1,2,[[168,1,1,1,2]]]],[2161,5358]]]]},{"k":"H2139","v":[["*",[9,9,[[3,1,1,0,1,[[129,1,1,0,1]]],[12,4,4,1,5,[[341,1,1,1,2],[361,1,1,2,3],[362,2,2,3,5]]],[15,4,4,5,9,[[415,1,1,5,6],[422,1,1,6,7],[424,1,1,7,8],[425,1,1,8,9]]]],[4079,10411,11042,11048,11056,12329,12561,12659,12684]]],["Zacchur",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10411]]],["Zaccur",[8,8,[[3,1,1,0,1,[[129,1,1,0,1]]],[12,3,3,1,4,[[361,1,1,1,2],[362,2,2,2,4]]],[15,4,4,4,8,[[415,1,1,4,5],[422,1,1,5,6],[424,1,1,6,7],[425,1,1,7,8]]]],[4079,11042,11048,11056,12329,12561,12659,12684]]]]},{"k":"H2140","v":[["Zaccai",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12036,12434]]]]},{"k":"H2141","v":[["*",[4,4,[[17,3,3,0,3,[[444,1,1,0,1],[450,1,1,1,2],[460,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]]],[13081,13218,13466,20427]]],["+",[1,1,[[17,1,1,0,1,[[460,1,1,0,1]]]],[13466]]],["clean",[2,2,[[17,2,2,0,2,[[444,1,1,0,1],[450,1,1,1,2]]]],[13081,13218]]],["purer",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20427]]]]},{"k":"H2142","v":[["*",[229,220,[[0,10,9,0,9,[[7,1,1,0,1],[8,2,2,1,3],[18,1,1,3,4],[29,1,1,4,5],[39,3,2,5,7],[40,1,1,7,8],[41,1,1,8,9]]],[1,7,7,9,16,[[51,1,1,9,10],[55,1,1,10,11],[62,1,1,11,12],[69,2,2,12,14],[72,1,1,14,15],[81,1,1,15,16]]],[2,4,2,16,18,[[115,4,2,16,18]]],[3,5,5,18,23,[[121,1,1,18,19],[126,1,1,19,20],[127,1,1,20,21],[131,2,2,21,23]]],[4,15,14,23,37,[[157,1,1,23,24],[159,2,1,24,25],[160,2,2,25,27],[161,2,2,27,29],[167,1,1,29,30],[168,2,2,30,32],[176,3,3,32,35],[177,1,1,35,36],[184,1,1,36,37]]],[5,2,2,37,39,[[187,1,1,37,38],[209,1,1,38,39]]],[6,3,3,39,42,[[218,1,1,39,40],[219,1,1,40,41],[226,1,1,41,42]]],[8,4,4,42,46,[[236,2,2,42,44],[239,1,1,44,45],[260,1,1,45,46]]],[9,5,5,46,51,[[274,1,1,46,47],[280,1,1,47,48],[284,1,1,48,49],[285,1,1,49,50],[286,1,1,50,51]]],[10,2,2,51,53,[[294,1,1,51,52],[307,1,1,52,53]]],[11,4,4,53,57,[[321,1,1,53,54],[330,2,2,54,56],[332,1,1,56,57]]],[12,4,4,57,61,[[353,3,3,57,60],[355,1,1,60,61]]],[13,3,3,61,64,[[372,1,1,61,62],[390,1,1,62,63],[400,1,1,63,64]]],[15,9,9,64,73,[[413,1,1,64,65],[416,1,1,65,66],[417,1,1,66,67],[418,1,1,67,68],[421,1,1,68,69],[425,4,4,69,73]]],[16,2,2,73,75,[[427,1,1,73,74],[434,1,1,74,75]]],[17,10,10,75,85,[[439,1,1,75,76],[442,1,1,76,77],[445,1,1,77,78],[446,1,1,78,79],[449,1,1,79,80],[456,1,1,80,81],[459,1,1,81,82],[463,1,1,82,83],[471,1,1,83,84],[476,1,1,84,85]]],[18,51,49,85,134,[[485,1,1,85,86],[486,1,1,86,87],[497,2,2,87,89],[499,1,1,89,90],[502,3,2,90,92],[519,2,2,92,94],[522,1,1,94,95],[540,1,1,95,96],[548,1,1,96,97],[551,3,3,97,100],[554,4,3,100,103],[555,3,3,103,106],[556,1,1,106,107],[560,1,1,107,108],[564,1,1,108,109],[565,1,1,109,110],[566,2,2,110,112],[575,1,1,112,113],[580,2,2,113,115],[582,3,3,115,118],[583,3,3,118,121],[586,2,2,121,123],[588,1,1,123,124],[592,1,1,124,125],[596,3,3,125,128],[609,1,1,128,129],[613,1,1,129,130],[614,3,3,130,133],[620,1,1,133,134]]],[19,1,1,134,135,[[658,1,1,134,135]]],[20,4,4,135,139,[[663,1,1,135,136],[667,1,1,136,137],[669,1,1,137,138],[670,1,1,138,139]]],[21,1,1,139,140,[[671,1,1,139,140]]],[22,26,26,140,166,[[690,1,1,140,141],[695,1,1,141,142],[697,1,1,142,143],[701,1,1,143,144],[704,1,1,144,145],[714,2,2,145,147],[716,1,1,147,148],[721,3,3,148,151],[722,1,1,151,152],[724,2,2,152,154],[725,1,1,154,155],[726,1,1,155,156],[727,1,1,156,157],[732,1,1,157,158],[735,1,1,158,159],[740,1,1,159,160],[741,2,2,160,162],[742,2,2,162,164],[743,1,1,164,165],[744,1,1,165,166]]],[23,16,15,166,181,[[746,1,1,166,167],[747,1,1,167,168],[748,1,1,168,169],[755,1,1,169,170],[758,2,2,170,172],[759,1,1,172,173],[761,1,1,173,174],[762,1,1,174,175],[764,1,1,175,176],[767,1,1,176,177],[775,3,2,177,179],[788,1,1,179,180],[795,1,1,180,181]]],[24,7,6,181,187,[[797,2,2,181,183],[798,1,1,183,184],[799,3,2,184,186],[801,1,1,186,187]]],[25,21,20,187,207,[[804,1,1,187,188],[807,1,1,188,189],[817,5,5,189,194],[819,2,2,194,196],[821,1,1,196,197],[822,4,3,197,200],[824,2,2,200,202],[826,1,1,202,203],[830,1,1,203,204],[834,2,2,204,206],[837,1,1,206,207]]],[27,4,4,207,211,[[863,1,1,207,208],[868,1,1,208,209],[869,1,1,209,210],[870,1,1,210,211]]],[29,2,2,211,213,[[879,1,1,211,212],[884,1,1,212,213]]],[31,1,1,213,214,[[890,1,1,213,214]]],[32,1,1,214,215,[[898,1,1,214,215]]],[33,1,1,215,216,[[901,1,1,215,216]]],[34,1,1,216,217,[[905,1,1,216,217]]],[37,2,2,217,219,[[920,1,1,217,218],[923,1,1,218,219]]],[38,1,1,219,220,[[928,1,1,219,220]]]],[184,220,221,486,852,1186,1195,1204,1261,1578,1660,1870,2059,2075,2157,2451,3566,3569,3807,3997,4029,4192,4193,5068,5129,5139,5155,5164,5184,5334,5345,5354,5534,5543,5547,5564,5765,5864,6467,6753,6756,6977,7223,7231,7315,7892,8225,8367,8496,8530,8578,8847,9335,9781,10042,10061,10101,10824,10832,10835,10905,11324,11699,11941,12304,12373,12401,12415,12528,12685,12693,12700,12702,12725,12862,12937,13015,13095,13124,13194,13361,13456,13522,13760,13896,14016,14033,14185,14189,14231,14257,14258,14559,14561,14614,14845,14992,15050,15066,15070,15096,15099,15104,15148,15152,15155,15193,15245,15305,15313,15373,15376,15493,15563,15567,15611,15614,15648,15655,15658,15696,15769,15771,15798,15842,15947,15950,15953,16152,16219,16223,16228,16229,16298,17291,17417,17490,17521,17524,17541,17904,17993,18021,18093,18143,18333,18352,18393,18523,18530,18531,18554,18594,18595,18606,18615,18637,18727,18776,18860,18873,18877,18890,18894,18914,18925,18967,19018,19043,19245,19303,19314,19330,19359,19404,19431,19520,19711,19725,20031,20262,20317,20319,20333,20373,20374,20443,20522,20572,20784,20805,20822,20823,20825,20871,20873,20938,20967,20968,20976,21026,21034,21093,21199,21293,21296,21390,22122,22180,22207,22217,22373,22460,22555,22653,22704,22770,23025,23061,23142]]],["+",[49,46,[[0,7,7,0,7,[[7,1,1,0,1],[8,1,1,1,2],[18,1,1,2,3],[29,1,1,3,4],[39,1,1,4,5],[40,1,1,5,6],[41,1,1,6,7]]],[1,5,5,7,12,[[51,1,1,7,8],[55,1,1,8,9],[62,1,1,9,10],[69,1,1,10,11],[72,1,1,11,12]]],[2,1,1,12,13,[[115,1,1,12,13]]],[3,3,3,13,16,[[121,1,1,13,14],[127,1,1,14,15],[131,1,1,15,16]]],[4,7,6,16,22,[[159,2,1,16,17],[160,2,2,17,19],[168,1,1,19,20],[176,1,1,20,21],[177,1,1,21,22]]],[5,1,1,22,23,[[187,1,1,22,23]]],[8,1,1,23,24,[[260,1,1,23,24]]],[9,3,3,24,27,[[280,1,1,24,25],[284,1,1,25,26],[285,1,1,26,27]]],[15,1,1,27,28,[[416,1,1,27,28]]],[16,1,1,28,29,[[427,1,1,28,29]]],[18,2,2,29,31,[[582,1,1,29,30],[614,1,1,30,31]]],[20,3,3,31,34,[[663,1,1,31,32],[667,1,1,32,33],[669,1,1,33,34]]],[23,3,2,34,36,[[775,2,1,34,35],[795,1,1,35,36]]],[24,2,1,36,37,[[799,2,1,36,37]]],[25,8,8,37,45,[[817,4,4,37,41],[821,1,1,41,42],[824,1,1,42,43],[830,1,1,43,44],[837,1,1,44,45]]],[31,1,1,45,46,[[890,1,1,45,46]]]],[184,220,486,852,1195,1204,1261,1578,1660,1870,2075,2157,3566,3807,4029,4192,5129,5139,5155,5345,5534,5564,5864,7892,8367,8496,8530,12373,12725,15648,16223,17417,17490,17521,19711,20262,20374,20784,20805,20822,20823,20938,21026,21199,21390,22555]]],["Remember",[34,34,[[1,2,2,0,2,[[69,1,1,0,1],[81,1,1,1,2]]],[4,3,3,2,5,[[161,2,2,2,4],[184,1,1,4,5]]],[12,1,1,5,6,[[353,1,1,5,6]]],[15,5,5,6,11,[[413,1,1,6,7],[425,4,4,7,11]]],[17,3,3,11,14,[[439,1,1,11,12],[445,1,1,12,13],[471,1,1,13,14]]],[18,11,11,14,25,[[497,1,1,14,15],[502,2,2,15,17],[551,2,2,17,19],[566,2,2,19,21],[582,1,1,21,22],[583,1,1,22,23],[596,1,1,23,24],[614,1,1,24,25]]],[20,1,1,25,26,[[670,1,1,25,26]]],[22,5,5,26,31,[[716,1,1,26,27],[721,1,1,27,28],[722,1,1,28,29],[724,2,2,29,31]]],[23,1,1,31,32,[[762,1,1,31,32]]],[24,1,1,32,33,[[801,1,1,32,33]]],[38,1,1,33,34,[[928,1,1,33,34]]]],[2059,2451,5164,5184,5765,10832,12304,12685,12693,12700,12702,12937,13095,13760,14185,14257,14258,15050,15066,15373,15376,15611,15655,15947,16229,17524,18393,18523,18554,18594,18595,19404,20443,23142]]],["Remembering",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20373]]],["Think",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12401]]],["burneth",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18925]]],["made",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13522]]],["mention",[16,16,[[0,1,1,0,1,[[39,1,1,0,1]]],[5,1,1,1,2,[[209,1,1,1,2]]],[8,1,1,2,3,[[239,1,1,2,3]]],[18,2,2,3,5,[[548,1,1,3,4],[564,1,1,4,5]]],[22,7,7,5,12,[[690,1,1,5,6],[697,1,1,6,7],[704,1,1,7,8],[726,1,1,8,9],[727,1,1,9,10],[740,1,1,10,11],[741,1,1,11,12]]],[23,3,3,12,15,[[748,1,1,12,13],[764,1,1,13,14],[767,1,1,14,15]]],[29,1,1,15,16,[[884,1,1,15,16]]]],[1186,6467,7315,14992,15305,17904,18021,18143,18615,18637,18860,18873,19043,19431,19520,22460]]],["mentioned",[3,3,[[25,3,3,0,3,[[819,2,2,0,2],[834,1,1,2,3]]]],[20871,20873,21296]]],["mindful",[6,6,[[12,1,1,0,1,[[353,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[18,3,3,2,5,[[485,1,1,2,3],[588,1,1,3,4],[592,1,1,4,5]]],[22,1,1,5,6,[[695,1,1,5,6]]]],[10835,12528,14016,15798,15842,17993]]],["on",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1186]]],["record",[1,1,[[12,1,1,0,1,[[353,1,1,0,1]]]],[10824]]],["recorder",[9,9,[[9,2,2,0,2,[[274,1,1,0,1],[286,1,1,1,2]]],[10,1,1,2,3,[[294,1,1,2,3]]],[11,2,2,3,5,[[330,2,2,3,5]]],[12,1,1,5,6,[[355,1,1,5,6]]],[13,1,1,6,7,[[400,1,1,6,7]]],[22,2,2,7,9,[[714,2,2,7,9]]]],[8225,8578,8847,10042,10061,10905,11941,18333,18352]]],["recount",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22704]]],["remember",[59,57,[[0,1,1,0,1,[[8,1,1,0,1]]],[2,3,2,1,3,[[115,3,2,1,3]]],[3,1,1,3,4,[[131,1,1,3,4]]],[4,5,5,4,9,[[157,1,1,4,5],[167,1,1,5,6],[168,1,1,6,7],[176,2,2,7,9]]],[6,2,2,9,11,[[219,1,1,9,10],[226,1,1,10,11]]],[8,1,1,11,12,[[236,1,1,11,12]]],[11,2,2,12,14,[[321,1,1,12,13],[332,1,1,13,14]]],[13,1,1,14,15,[[372,1,1,14,15]]],[17,5,5,15,20,[[442,1,1,15,16],[446,1,1,16,17],[449,1,1,17,18],[456,1,1,18,19],[476,1,1,19,20]]],[18,14,13,20,33,[[497,1,1,20,21],[499,1,1,21,22],[502,1,1,22,23],[519,2,2,23,25],[540,1,1,25,26],[551,1,1,26,27],[554,2,1,27,28],[556,1,1,28,29],[580,1,1,29,30],[609,1,1,30,31],[614,1,1,31,32],[620,1,1,32,33]]],[19,1,1,33,34,[[658,1,1,33,34]]],[21,1,1,34,35,[[671,1,1,34,35]]],[22,5,5,35,40,[[721,1,1,35,36],[725,1,1,36,37],[732,1,1,37,38],[742,2,2,38,40]]],[23,8,8,40,48,[[746,1,1,40,41],[747,1,1,41,42],[758,2,2,42,44],[759,1,1,44,45],[761,1,1,45,46],[775,1,1,46,47],[788,1,1,47,48]]],[25,3,3,48,51,[[807,1,1,48,49],[817,1,1,49,50],[824,1,1,50,51]]],[27,3,3,51,54,[[868,1,1,51,52],[869,1,1,52,53],[870,1,1,53,54]]],[32,1,1,54,55,[[898,1,1,54,55]]],[34,1,1,55,56,[[905,1,1,55,56]]],[37,1,1,56,57,[[920,1,1,56,57]]]],[221,3566,3569,4193,5068,5334,5354,5543,5547,6756,6977,7223,9781,10101,11324,13015,13124,13194,13361,13896,14189,14231,14258,14559,14561,14845,15070,15104,15193,15567,16152,16228,16298,17291,17541,18530,18606,18727,18890,18894,18967,19018,19303,19314,19330,19359,19725,20031,20572,20825,21034,22180,22207,22217,22653,22770,23025]]],["remembered",[35,35,[[3,1,1,0,1,[[126,1,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]],[8,1,1,2,3,[[236,1,1,2,3]]],[13,1,1,3,4,[[390,1,1,3,4]]],[16,1,1,4,5,[[434,1,1,4,5]]],[17,1,1,5,6,[[459,1,1,5,6]]],[18,14,14,6,20,[[522,1,1,6,7],[554,1,1,7,8],[555,3,3,8,11],[575,1,1,11,12],[582,1,1,12,13],[583,2,2,13,15],[586,2,2,15,17],[596,2,2,17,19],[613,1,1,19,20]]],[22,4,4,20,24,[[701,1,1,20,21],[735,1,1,21,22],[741,1,1,22,23],[743,1,1,23,24]]],[23,1,1,24,25,[[755,1,1,24,25]]],[24,2,2,25,27,[[797,1,1,25,26],[798,1,1,26,27]]],[25,5,5,27,32,[[804,1,1,27,28],[822,2,2,28,30],[826,1,1,30,31],[834,1,1,31,32]]],[27,1,1,32,33,[[863,1,1,32,33]]],[29,1,1,33,34,[[879,1,1,33,34]]],[37,1,1,34,35,[[923,1,1,34,35]]]],[3997,6753,7231,11699,12862,13456,14614,15096,15148,15152,15155,15493,15614,15658,15696,15769,15771,15950,15953,16219,18093,18776,18877,18914,19245,20317,20333,20522,20968,20976,21093,21293,22122,22373,23061]]],["rememberest",[1,1,[[18,1,1,0,1,[[565,1,1,0,1]]]],[15313]]],["remembereth",[3,3,[[18,2,2,0,2,[[486,1,1,0,1],[580,1,1,1,2]]],[24,1,1,2,3,[[797,1,1,2,3]]]],[14033,15563,20319]]],["remembrance",[6,6,[[10,1,1,0,1,[[307,1,1,0,1]]],[18,2,2,1,3,[[554,1,1,1,2],[560,1,1,2,3]]],[22,1,1,3,4,[[721,1,1,3,4]]],[25,2,2,4,6,[[822,2,2,4,6]]]],[9335,15099,15245,18531,20967,20968]]],["think",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12415]]]]},{"k":"H2143","v":[["*",[23,23,[[1,2,2,0,2,[[52,1,1,0,1],[66,1,1,1,2]]],[4,2,2,2,4,[[177,1,1,2,3],[184,1,1,3,4]]],[16,1,1,4,5,[[434,1,1,4,5]]],[17,1,1,5,6,[[453,1,1,5,6]]],[18,11,11,6,17,[[483,1,1,6,7],[486,1,1,7,8],[507,1,1,8,9],[511,1,1,9,10],[574,1,1,10,11],[579,1,1,11,12],[586,1,1,12,13],[588,1,1,13,14],[589,1,1,14,15],[612,1,1,15,16],[622,1,1,16,17]]],[19,1,1,17,18,[[637,1,1,17,18]]],[20,1,1,18,19,[[667,1,1,18,19]]],[22,2,2,19,21,[[704,2,2,19,21]]],[27,2,2,21,23,[[873,1,1,21,22],[875,1,1,22,23]]]],[1594,1997,5566,5784,12862,13293,13990,14027,14323,14404,15490,15533,15770,15797,15809,16188,16327,16663,17480,18138,18144,22257,22289]]],["memorial",[5,5,[[1,1,1,0,1,[[52,1,1,0,1]]],[16,1,1,1,2,[[434,1,1,1,2]]],[18,2,2,2,4,[[486,1,1,2,3],[612,1,1,3,4]]],[27,1,1,4,5,[[873,1,1,4,5]]]],[1594,12862,14027,16188,22257]]],["memory",[5,5,[[18,2,2,0,2,[[586,1,1,0,1],[622,1,1,1,2]]],[19,1,1,2,3,[[637,1,1,2,3]]],[20,1,1,3,4,[[667,1,1,3,4]]],[22,1,1,4,5,[[704,1,1,4,5]]]],[15770,16327,16663,17480,18144]]],["remembered",[1,1,[[18,1,1,0,1,[[588,1,1,0,1]]]],[15797]]],["remembrance",[11,11,[[1,1,1,0,1,[[66,1,1,0,1]]],[4,2,2,1,3,[[177,1,1,1,2],[184,1,1,2,3]]],[17,1,1,3,4,[[453,1,1,3,4]]],[18,6,6,4,10,[[483,1,1,4,5],[507,1,1,5,6],[511,1,1,6,7],[574,1,1,7,8],[579,1,1,8,9],[589,1,1,9,10]]],[22,1,1,10,11,[[704,1,1,10,11]]]],[1997,5566,5784,13293,13990,14323,14404,15490,15533,15809,18138]]],["scent",[1,1,[[27,1,1,0,1,[[875,1,1,0,1]]]],[22289]]]]},{"k":"H2144","v":[["Zacher",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10606]]]]},{"k":"H2145","v":[["*",[82,80,[[0,14,14,0,14,[[0,1,1,0,1],[4,1,1,1,2],[5,1,1,2,3],[6,3,3,3,6],[16,4,4,6,10],[33,4,4,10,14]]],[1,4,4,14,18,[[61,2,2,14,16],[62,2,2,16,18]]],[2,18,18,18,36,[[90,2,2,18,20],[92,2,2,20,22],[93,1,1,22,23],[95,2,2,23,25],[96,1,1,25,26],[101,2,2,26,28],[104,1,1,28,29],[107,1,1,29,30],[109,1,1,30,31],[111,1,1,31,32],[116,4,4,32,36]]],[3,18,17,36,53,[[117,3,3,36,39],[119,7,7,39,46],[121,1,1,46,47],[134,1,1,47,48],[142,1,1,48,49],[147,5,4,49,53]]],[4,2,2,53,55,[[156,1,1,53,54],[167,1,1,54,55]]],[5,2,2,55,57,[[191,1,1,55,56],[203,1,1,56,57]]],[6,3,2,57,59,[[231,3,2,57,59]]],[10,2,2,59,61,[[301,2,2,59,61]]],[13,2,2,61,63,[[397,2,2,61,63]]],[14,12,12,63,75,[[410,12,12,63,75]]],[22,1,1,75,76,[[744,1,1,75,76]]],[23,2,2,76,78,[[764,1,1,76,77],[774,1,1,77,78]]],[25,1,1,78,79,[[817,1,1,78,79]]],[38,1,1,79,80,[[925,1,1,79,80]]]],[26,107,156,162,168,175,407,409,411,420,995,1002,1004,1005,1821,1864,1879,1882,2748,2755,2779,2784,2818,2867,2878,2885,3046,3051,3201,3273,3331,3388,3573,3575,3576,3577,3606,3624,3626,3707,3714,3720,3726,3731,3732,3735,3795,4267,4551,4671,4681,4682,4699,5020,5338,5938,6277,7113,7114,9123,9124,11870,11873,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,18929,19437,19673,20779,23103]]],["+",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3795]]],["Male",[1,1,[[0,1,1,0,1,[[4,1,1,0,1]]]],[107]]],["child",[5,5,[[0,3,3,0,3,[[16,3,3,0,3]]],[2,1,1,3,4,[[101,1,1,3,4]]],[22,1,1,4,5,[[744,1,1,4,5]]]],[407,409,411,3046,18929]]],["him",[2,2,[[3,2,2,0,2,[[147,2,2,0,2]]]],[4681,4699]]],["male",[35,35,[[0,9,9,0,9,[[0,1,1,0,1],[5,1,1,1,2],[6,3,3,2,5],[16,1,1,5,6],[33,3,3,6,9]]],[1,1,1,9,10,[[61,1,1,9,10]]],[2,12,12,10,22,[[90,2,2,10,12],[92,2,2,12,14],[93,1,1,14,15],[96,1,1,15,16],[101,1,1,16,17],[111,1,1,17,18],[116,4,4,18,22]]],[3,6,6,22,28,[[117,3,3,22,25],[119,1,1,25,26],[134,1,1,26,27],[147,1,1,27,28]]],[4,1,1,28,29,[[156,1,1,28,29]]],[5,1,1,29,30,[[203,1,1,29,30]]],[6,2,2,30,32,[[231,2,2,30,32]]],[10,2,2,32,34,[[301,2,2,32,34]]],[38,1,1,34,35,[[925,1,1,34,35]]]],[26,156,162,168,175,420,995,1002,1004,1821,2748,2755,2779,2784,2818,2885,3051,3388,3573,3575,3576,3577,3606,3624,3626,3707,4267,4681,5020,6277,7113,7114,9123,9124,23103]]],["males",[30,30,[[0,1,1,0,1,[[33,1,1,0,1]]],[1,3,3,1,4,[[61,1,1,1,2],[62,2,2,2,4]]],[2,2,2,4,6,[[95,2,2,4,6]]],[3,8,8,6,14,[[119,6,6,6,12],[142,1,1,12,13],[147,1,1,13,14]]],[4,1,1,14,15,[[167,1,1,14,15]]],[5,1,1,15,16,[[191,1,1,15,16]]],[13,2,2,16,18,[[397,2,2,16,18]]],[14,12,12,18,30,[[410,12,12,18,30]]]],[1005,1864,1879,1882,2867,2878,3714,3720,3726,3731,3732,3735,4551,4671,5338,5938,11870,11873,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215]]],["man",[5,5,[[2,1,1,0,1,[[104,1,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]],[6,1,1,2,3,[[231,1,1,2,3]]],[23,2,2,3,5,[[764,1,1,3,4],[774,1,1,4,5]]]],[3201,4682,7113,19437,19673]]],["mankind",[2,2,[[2,2,2,0,2,[[107,1,1,0,1],[109,1,1,1,2]]]],[3273,3331]]],["men",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20779]]]]},{"k":"H2146","v":[["*",[24,22,[[1,8,7,0,7,[[61,1,1,0,1],[62,1,1,1,2],[66,1,1,2,3],[77,3,2,3,5],[79,1,1,5,6],[88,1,1,6,7]]],[2,1,1,7,8,[[112,1,1,7,8]]],[3,5,5,8,13,[[121,2,2,8,10],[126,1,1,10,11],[132,1,1,11,12],[147,1,1,12,13]]],[5,1,1,13,14,[[190,1,1,13,14]]],[15,1,1,14,15,[[414,1,1,14,15]]],[16,1,1,15,16,[[431,1,1,15,16]]],[17,1,1,16,17,[[448,1,1,16,17]]],[20,3,2,17,19,[[659,2,1,17,18],[660,1,1,18,19]]],[22,1,1,19,20,[[735,1,1,19,20]]],[37,1,1,20,21,[[916,1,1,20,21]]],[38,1,1,21,22,[[927,1,1,21,22]]]],[1830,1876,1997,2305,2322,2398,2671,3426,3807,3810,3998,4234,4718,5917,12327,12794,13165,17326,17349,18773,22961,23136]]],["memorial",[17,16,[[1,8,7,0,7,[[61,1,1,0,1],[62,1,1,1,2],[66,1,1,2,3],[77,3,2,3,5],[79,1,1,5,6],[88,1,1,6,7]]],[2,1,1,7,8,[[112,1,1,7,8]]],[3,5,5,8,13,[[121,2,2,8,10],[126,1,1,10,11],[132,1,1,11,12],[147,1,1,12,13]]],[5,1,1,13,14,[[190,1,1,13,14]]],[15,1,1,14,15,[[414,1,1,14,15]]],[37,1,1,15,16,[[916,1,1,15,16]]]],[1830,1876,1997,2305,2322,2398,2671,3426,3807,3810,3998,4234,4718,5917,12327,22961]]],["records",[1,1,[[16,1,1,0,1,[[431,1,1,0,1]]]],[12794]]],["remembrance",[5,4,[[20,3,2,0,2,[[659,2,1,0,1],[660,1,1,1,2]]],[22,1,1,2,3,[[735,1,1,2,3]]],[38,1,1,3,4,[[927,1,1,3,4]]]],[17326,17349,18773,23136]]],["remembrances",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13165]]]]},{"k":"H2147","v":[["Zichri",[12,12,[[1,1,1,0,1,[[55,1,1,0,1]]],[12,6,6,1,7,[[345,3,3,1,4],[346,1,1,4,5],[363,1,1,5,6],[364,1,1,6,7]]],[13,3,3,7,10,[[383,1,1,7,8],[389,1,1,8,9],[394,1,1,9,10]]],[15,2,2,10,12,[[423,1,1,10,11],[424,1,1,11,12]]]],[1676,10594,10598,10602,10630,11102,11125,11539,11657,11771,12597,12641]]]]},{"k":"H2148","v":[["*",[43,43,[[11,4,4,0,4,[[326,1,1,0,1],[327,2,2,1,3],[330,1,1,3,4]]],[12,12,12,4,16,[[342,1,1,4,5],[346,2,2,5,7],[352,3,3,7,10],[353,1,1,10,11],[361,1,1,11,12],[363,3,3,12,15],[364,1,1,15,16]]],[13,9,9,16,25,[[383,1,1,16,17],[386,1,1,17,18],[387,1,1,18,19],[390,1,1,19,20],[392,1,1,20,21],[395,2,2,21,23],[400,1,1,23,24],[401,1,1,24,25]]],[14,6,6,25,31,[[407,1,1,25,26],[408,1,1,26,27],[410,3,3,27,30],[412,1,1,30,31]]],[15,7,7,31,38,[[420,1,1,31,32],[423,3,3,32,35],[424,3,3,35,38]]],[22,1,1,38,39,[[686,1,1,38,39]]],[37,4,4,39,43,[[911,2,2,39,41],[917,2,2,41,43]]]],[9925,9933,9936,10026,10435,10636,10652,10809,10811,10815,10825,11040,11079,11088,11091,11130,11530,11601,11626,11697,11737,11792,11804,11945,11974,12135,12165,12204,12212,12217,12278,12497,12592,12593,12600,12640,12659,12665,17809,22879,22885,22963,22970]]],["Zachariah",[4,4,[[11,4,4,0,4,[[326,1,1,0,1],[327,2,2,1,3],[330,1,1,3,4]]]],[9925,9933,9936,10026]]],["Zechariah",[39,39,[[12,12,12,0,12,[[342,1,1,0,1],[346,2,2,1,3],[352,3,3,3,6],[353,1,1,6,7],[361,1,1,7,8],[363,3,3,8,11],[364,1,1,11,12]]],[13,9,9,12,21,[[383,1,1,12,13],[386,1,1,13,14],[387,1,1,14,15],[390,1,1,15,16],[392,1,1,16,17],[395,2,2,17,19],[400,1,1,19,20],[401,1,1,20,21]]],[14,6,6,21,27,[[407,1,1,21,22],[408,1,1,22,23],[410,3,3,23,26],[412,1,1,26,27]]],[15,7,7,27,34,[[420,1,1,27,28],[423,3,3,28,31],[424,3,3,31,34]]],[22,1,1,34,35,[[686,1,1,34,35]]],[37,4,4,35,39,[[911,2,2,35,37],[917,2,2,37,39]]]],[10435,10636,10652,10809,10811,10815,10825,11040,11079,11088,11091,11130,11530,11601,11626,11697,11737,11792,11804,11945,11974,12135,12165,12204,12212,12217,12278,12497,12592,12593,12600,12640,12659,12665,17809,22879,22885,22963,22970]]]]},{"k":"H2149","v":[["vilest",[1,1,[[18,1,1,0,1,[[489,1,1,0,1]]]],[14074]]]]},{"k":"H2150","v":[["sprigs",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18002]]]]},{"k":"H2151","v":[["*",[9,9,[[4,1,1,0,1,[[173,1,1,0,1]]],[19,3,3,1,4,[[650,2,2,1,3],[655,1,1,3,4]]],[22,2,2,4,6,[[742,2,2,4,6]]],[23,1,1,6,7,[[759,1,1,6,7]]],[24,2,2,7,9,[[797,2,2,7,9]]]],[5467,17064,17065,17203,18886,18888,19334,20318,20321]]],["+",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19334]]],["despise",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20318]]],["down",[2,2,[[22,2,2,0,2,[[742,2,2,0,2]]]],[18886,18888]]],["eaters",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17064]]],["glutton",[2,2,[[4,1,1,0,1,[[173,1,1,0,1]]],[19,1,1,1,2,[[650,1,1,1,2]]]],[5467,17065]]],["riotous",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17203]]],["vile",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20321]]]]},{"k":"H2152","v":[["*",[3,3,[[18,2,2,0,2,[[488,1,1,0,1],[596,1,1,1,2]]],[24,1,1,2,3,[[801,1,1,2,3]]]],[14065,15951,20452]]],["Horror",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15951]]],["horrible",[1,1,[[18,1,1,0,1,[[488,1,1,0,1]]]],[14065]]],["terrible",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20452]]]]},{"k":"H2153","v":[["Zilpah",[7,7,[[0,7,7,0,7,[[28,1,1,0,1],[29,3,3,1,4],[34,1,1,4,5],[36,1,1,5,6],[45,1,1,6,7]]]],[819,839,840,842,1037,1085,1404]]]]},{"k":"H2154","v":[["*",[29,27,[[2,4,3,0,3,[[107,1,1,0,1],[108,1,1,1,2],[109,2,1,2,3]]],[6,1,1,3,4,[[230,1,1,3,4]]],[17,2,2,4,6,[[452,1,1,4,5],[466,1,1,5,6]]],[18,2,2,6,8,[[503,1,1,6,7],[596,1,1,7,8]]],[19,3,3,8,11,[[637,1,1,8,9],[648,1,1,9,10],[651,1,1,10,11]]],[22,1,1,11,12,[[710,1,1,11,12]]],[23,1,1,12,13,[[757,1,1,12,13]]],[25,14,13,13,26,[[817,3,3,13,16],[823,2,2,16,18],[824,8,7,18,25],[825,1,1,25,26]]],[27,1,1,26,27,[[867,1,1,26,27]]]],[3268,3310,3332,7060,13271,13599,14283,16048,16679,17011,17088,18266,19293,20789,20805,20820,20985,20987,21028,21034,21036,21042,21051,21055,21056,21069,22176]]],["crime",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13599]]],["devices",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18266]]],["lewd",[2,2,[[25,2,2,0,2,[[817,1,1,0,1],[824,1,1,1,2]]]],[20789,21051]]],["lewdly",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[20987]]],["lewdness",[14,13,[[6,1,1,0,1,[[230,1,1,0,1]]],[23,1,1,1,2,[[757,1,1,1,2]]],[25,11,10,2,12,[[817,2,2,2,4],[823,1,1,4,5],[824,7,6,5,11],[825,1,1,11,12]]],[27,1,1,12,13,[[867,1,1,12,13]]]],[7060,19293,20805,20820,20985,21028,21034,21036,21042,21055,21056,21069,22176]]],["mind",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17011]]],["mischief",[3,3,[[18,2,2,0,2,[[503,1,1,0,1],[596,1,1,1,2]]],[19,1,1,2,3,[[637,1,1,2,3]]]],[14283,16048,16679]]],["purposes",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13271]]],["thought",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17088]]],["wickedness",[4,3,[[2,4,3,0,3,[[107,1,1,0,1],[108,1,1,1,2],[109,2,1,2,3]]]],[3268,3310,3332]]]]},{"k":"H2155","v":[["Zimmah",[3,3,[[12,2,2,0,2,[[343,2,2,0,2]]],[13,1,1,2,3,[[395,1,1,2,3]]]],[10474,10496,11803]]]]},{"k":"H2156","v":[["*",[5,5,[[3,1,1,0,1,[[129,1,1,0,1]]],[22,1,1,1,2,[[695,1,1,1,2]]],[25,2,2,2,4,[[809,1,1,2,3],[816,1,1,3,4]]],[33,1,1,4,5,[[901,1,1,4,5]]]],[4098,17993,20621,20756,22701]]],["branch",[3,3,[[3,1,1,0,1,[[129,1,1,0,1]]],[25,2,2,1,3,[[809,1,1,1,2],[816,1,1,2,3]]]],[4098,20621,20756]]],["branches",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22701]]],["slips",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17993]]]]},{"k":"H2157","v":[["Zamzummims",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4958]]]]},{"k":"H2158","v":[["*",[6,6,[[9,1,1,0,1,[[289,1,1,0,1]]],[17,1,1,1,2,[[470,1,1,1,2]]],[18,2,2,2,4,[[572,1,1,2,3],[596,1,1,3,4]]],[21,1,1,4,5,[[672,1,1,4,5]]],[22,1,1,5,6,[[702,1,1,5,6]]]],[8654,13730,15456,15952,17566,18111]]],["psalmist",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8654]]],["psalms",[1,1,[[18,1,1,0,1,[[572,1,1,0,1]]]],[15456]]],["singing",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17566]]],["songs",[3,3,[[17,1,1,0,1,[[470,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[22,1,1,2,3,[[702,1,1,2,3]]]],[13730,15952,18111]]]]},{"k":"H2159","v":[["branch",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18123]]]]},{"k":"H2160","v":[["Zemira",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10543]]]]},{"k":"H2161","v":[["*",[13,13,[[0,1,1,0,1,[[10,1,1,0,1]]],[4,1,1,1,2,[[171,1,1,1,2]]],[18,3,3,2,5,[[494,1,1,2,3],[508,1,1,3,4],[514,1,1,4,5]]],[19,2,2,5,7,[[657,1,1,5,6],[658,1,1,6,7]]],[23,2,2,7,9,[[748,1,1,7,8],[795,1,1,8,9]]],[24,1,1,9,10,[[798,1,1,9,10]]],[37,3,3,10,13,[[911,1,1,10,11],[918,2,2,11,13]]]],[272,5425,14106,14344,14462,17283,17300,19055,20224,20349,22884,22990,22991]]],["considereth",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17300]]],["devised",[3,3,[[18,1,1,0,1,[[508,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]]],[14344,20224,20349]]],["evil",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17283]]],["imagined",[1,1,[[0,1,1,0,1,[[10,1,1,0,1]]]],[272]]],["plotteth",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14462]]],["purposed",[2,2,[[18,1,1,0,1,[[494,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]]],[14106,19055]]],["thought",[4,4,[[4,1,1,0,1,[[171,1,1,0,1]]],[37,3,3,1,4,[[911,1,1,1,2],[918,2,2,2,4]]]],[5425,22884,22990,22991]]]]},{"k":"H2162","v":[["device",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16271]]]]},{"k":"H2163","v":[["appointed",[3,3,[[14,1,1,0,1,[[412,1,1,0,1]]],[15,2,2,1,3,[[422,1,1,1,2],[425,1,1,2,3]]]],[12266,12583,12702]]]]},{"k":"H2164","v":[["prepared",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21767]]]]},{"k":"H2165","v":[["*",[4,4,[[15,1,1,0,1,[[414,1,1,0,1]]],[16,2,2,1,3,[[434,2,2,1,3]]],[20,1,1,3,4,[[661,1,1,3,4]]]],[12313,12861,12865,17360]]],["season",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17360]]],["time",[2,2,[[15,1,1,0,1,[[414,1,1,0,1]]],[16,1,1,1,2,[[434,1,1,1,2]]]],[12313,12861]]],["times",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12865]]]]},{"k":"H2166","v":[["*",[11,11,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,10,10,1,11,[[851,2,2,1,3],[852,2,2,3,5],[853,1,1,5,6],[855,2,2,6,8],[856,3,3,8,11]]]],[12137,21774,21779,21814,21815,21873,21915,21918,21945,21955,21958]]],["season",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21945]]],["seasons",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21779]]],["time",[6,6,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,5,5,1,6,[[851,1,1,1,2],[852,2,2,2,4],[853,1,1,4,5],[856,1,1,5,6]]]],[12137,21774,21814,21815,21873,21955]]],["times",[3,3,[[26,3,3,0,3,[[855,2,2,0,2],[856,1,1,2,3]]]],[21915,21918,21958]]]]},{"k":"H2167","v":[["*",[46,42,[[6,1,1,0,1,[[215,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[18,41,37,3,40,[[484,1,1,3,4],[486,2,2,4,6],[495,1,1,6,7],[498,1,1,7,8],[504,1,1,8,9],[507,2,2,9,11],[510,1,1,11,12],[524,5,2,12,14],[534,2,2,14,16],[536,1,1,16,17],[538,1,1,17,18],[543,3,2,18,20],[545,2,2,20,22],[548,2,2,22,24],[552,1,1,24,25],[569,1,1,25,26],[575,2,2,26,28],[578,1,1,28,29],[581,1,1,29,30],[582,1,1,30,31],[585,2,2,31,33],[612,1,1,33,34],[615,1,1,34,35],[621,1,1,35,36],[623,1,1,36,37],[624,2,2,37,39],[626,1,1,39,40]]],[22,2,2,40,42,[[683,1,1,40,41],[690,1,1,41,42]]]],[6626,8652,10829,14012,14023,14032,14167,14204,14291,14323,14331,14368,14631,14632,14775,14777,14807,14827,14875,14877,14904,14932,14998,14999,15080,15412,15494,15495,15514,15604,15608,15743,15745,16178,16232,16314,16343,16352,16358,16388,17745,17905]]],["Sing",[3,3,[[18,2,2,0,2,[[507,1,1,0,1],[575,1,1,1,2]]],[22,1,1,2,3,[[690,1,1,2,3]]]],[14323,15495,17905]]],["forth",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14875]]],["praise",[11,11,[[18,11,11,0,11,[[484,1,1,0,1],[486,1,1,1,2],[498,1,1,2,3],[507,1,1,3,4],[534,1,1,4,5],[538,1,1,5,6],[575,1,1,6,7],[581,1,1,7,8],[585,1,1,8,9],[615,1,1,9,10],[624,1,1,10,11]]]],[14012,14023,14204,14331,14775,14827,15494,15604,15743,16232,16358]]],["praises",[19,16,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,18,15,1,16,[[486,1,1,1,2],[495,1,1,2,3],[504,1,1,3,4],[524,5,2,4,6],[545,2,2,6,8],[552,1,1,8,9],[569,1,1,9,10],[585,1,1,10,11],[612,1,1,11,12],[621,1,1,12,13],[623,1,1,13,14],[624,1,1,14,15],[626,1,1,15,16]]]],[8652,14032,14167,14291,14631,14632,14904,14932,15080,15412,15745,16178,16314,16343,16352,16388]]],["pruned",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17745]]],["psalms",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[10829,15608]]],["sing",[9,8,[[6,1,1,0,1,[[215,1,1,0,1]]],[18,8,7,1,8,[[510,1,1,1,2],[534,1,1,2,3],[536,1,1,3,4],[543,2,1,4,5],[548,2,2,5,7],[578,1,1,7,8]]]],[6626,14368,14777,14807,14877,14998,14999,15514]]]]},{"k":"H2168","v":[["prune",[2,2,[[2,2,2,0,2,[[114,2,2,0,2]]]],[3472,3473]]]]},{"k":"H2169","v":[["chamois",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5295]]]]},{"k":"H2170","v":[["musick",[4,4,[[26,4,4,0,4,[[852,4,4,0,4]]]],[21812,21814,21817,21822]]]]},{"k":"H2171","v":[["singers",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12197]]]]},{"k":"H2172","v":[["*",[4,4,[[18,2,2,0,2,[[558,1,1,0,1],[575,1,1,1,2]]],[22,1,1,2,3,[[729,1,1,2,3]]],[29,1,1,3,4,[[883,1,1,3,4]]]],[15219,15495,18676,22446]]],["melody",[2,2,[[22,1,1,0,1,[[729,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[18676,22446]]],["psalm",[2,2,[[18,2,2,0,2,[[558,1,1,0,1],[575,1,1,1,2]]]],[15219,15495]]]]},{"k":"H2173","v":[["+",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1301]]]]},{"k":"H2174","v":[["Zimri",[15,13,[[3,1,1,0,1,[[141,1,1,0,1]]],[10,7,7,1,8,[[306,7,7,1,8]]],[11,1,1,8,9,[[321,1,1,8,9]]],[12,5,3,9,12,[[339,1,1,9,10],[345,2,1,10,11],[346,2,1,11,12]]],[23,1,1,12,13,[[769,1,1,12,13]]]],[4485,9292,9293,9295,9298,9299,9301,9303,9787,10312,10611,10657,19559]]]]},{"k":"H2175","v":[["Zimran",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[660,10284]]]]},{"k":"H2176","v":[["song",[3,3,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,1,1,1,2,[[595,1,1,1,2]]],[22,1,1,2,3,[[690,1,1,2,3]]]],[1922,15883,17902]]]]},{"k":"H2177","v":[["*",[3,2,[[13,1,1,0,1,[[382,1,1,0,1]]],[18,2,1,1,2,[[621,2,1,1,2]]]],[11523,16318]]],["+",[2,1,[[18,2,1,0,1,[[621,2,1,0,1]]]],[16318]]],["kinds",[1,1,[[13,1,1,0,1,[[382,1,1,0,1]]]],[11523]]]]},{"k":"H2178","v":[["kinds",[4,4,[[26,4,4,0,4,[[852,4,4,0,4]]]],[21812,21814,21817,21822]]]]},{"k":"H2179","v":[["hindmost",[2,2,[[4,1,1,0,1,[[177,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]]],[5565,6083]]]]},{"k":"H2180","v":[["*",[11,9,[[1,1,1,0,1,[[53,1,1,0,1]]],[4,2,2,1,3,[[180,2,2,1,3]]],[6,3,1,3,4,[[225,3,1,3,4]]],[17,1,1,4,5,[[475,1,1,4,5]]],[22,4,4,5,9,[[685,1,1,5,6],[687,2,2,6,8],[697,1,1,8,9]]]],[1605,5624,5655,6933,13881,17786,17843,17844,18019]]],["tail",[9,8,[[1,1,1,0,1,[[53,1,1,0,1]]],[4,2,2,1,3,[[180,2,2,1,3]]],[6,2,1,3,4,[[225,2,1,3,4]]],[17,1,1,4,5,[[475,1,1,4,5]]],[22,3,3,5,8,[[687,2,2,5,7],[697,1,1,7,8]]]],[1605,5624,5655,6933,13881,17843,17844,18019]]],["tails",[2,2,[[6,1,1,0,1,[[225,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]]],[6933,17786]]]]},{"k":"H2181","v":[["*",[93,82,[[0,3,3,0,3,[[33,1,1,0,1],[37,2,2,1,3]]],[1,3,2,3,5,[[83,3,2,3,5]]],[2,9,7,5,12,[[106,1,1,5,6],[108,2,1,6,7],[109,3,2,7,9],[110,3,3,9,12]]],[3,2,2,12,14,[[131,1,1,12,13],[141,1,1,13,14]]],[4,3,3,14,17,[[174,1,1,14,15],[175,1,1,15,16],[183,1,1,16,17]]],[5,4,4,17,21,[[188,1,1,17,18],[192,3,3,18,21]]],[6,6,6,21,27,[[212,1,1,21,22],[218,2,2,22,24],[221,1,1,24,25],[226,1,1,25,26],[229,1,1,26,27]]],[10,1,1,27,28,[[293,1,1,27,28]]],[12,1,1,28,29,[[342,1,1,28,29]]],[13,3,2,29,31,[[387,3,2,29,31]]],[18,2,2,31,33,[[550,1,1,31,32],[583,1,1,32,33]]],[19,4,4,33,37,[[633,1,1,33,34],[634,1,1,34,35],[650,1,1,35,36],[656,1,1,36,37]]],[22,5,5,37,42,[[679,1,1,37,38],[701,3,3,38,41],[735,1,1,41,42]]],[23,6,6,42,48,[[746,1,1,42,43],[747,4,4,43,47],[749,1,1,47,48]]],[25,22,19,48,67,[[807,2,1,48,49],[817,12,11,49,60],[821,1,1,60,61],[824,7,6,61,67]]],[27,14,11,67,78,[[862,2,1,67,68],[863,1,1,68,69],[864,1,1,69,70],[865,8,6,70,76],[866,1,1,76,77],[870,1,1,77,78]]],[28,1,1,78,79,[[878,1,1,78,79]]],[29,1,1,79,80,[[885,1,1,79,80]]],[32,2,1,80,81,[[893,2,1,80,81]]],[33,1,1,81,82,[[902,1,1,81,82]]]],[1011,1134,1143,2511,2512,3242,3310,3323,3324,3352,3354,3359,4192,4472,5491,5518,5744,5870,5966,5971,5974,6562,6746,6752,6830,6950,7026,8832,10453,11635,11637,15047,15690,16566,16585,17071,17227,17675,18092,18093,18094,18768,18985,19003,19005,19008,19010,19065,20572,20777,20778,20779,20788,20790,20792,20793,20795,20796,20797,20803,20925,21010,21012,21026,21037,21050,21051,22096,22110,22131,22143,22145,22146,22147,22148,22151,22155,22209,22346,22481,22586,22716]]],["+",[13,11,[[2,1,1,0,1,[[110,1,1,0,1]]],[5,2,2,1,3,[[188,1,1,1,2],[192,1,1,2,3]]],[6,3,3,3,6,[[218,1,1,3,4],[221,1,1,4,5],[226,1,1,5,6]]],[23,1,1,6,7,[[747,1,1,6,7]]],[25,2,2,7,9,[[817,1,1,7,8],[821,1,1,8,9]]],[27,4,2,9,11,[[862,2,1,9,10],[865,2,1,10,11]]]],[3359,5870,5971,6746,6830,6950,19005,20803,20925,22096,22151]]],["commit",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21050]]],["fornication",[3,3,[[13,1,1,0,1,[[387,1,1,0,1]]],[22,1,1,1,2,[[701,1,1,1,2]]],[25,1,1,2,3,[[817,1,1,2,3]]]],[11635,18094,20788]]],["harlot",[29,28,[[0,3,3,0,3,[[33,1,1,0,1],[37,2,2,1,3]]],[5,2,2,3,5,[[192,2,2,3,5]]],[19,1,1,5,6,[[634,1,1,5,6]]],[22,3,3,6,9,[[679,1,1,6,7],[701,2,2,7,9]]],[23,4,4,9,13,[[746,1,1,9,10],[747,3,3,10,13]]],[25,8,8,13,21,[[817,5,5,13,18],[824,3,3,18,21]]],[27,3,3,21,24,[[863,1,1,21,22],[864,1,1,22,23],[865,1,1,23,24]]],[28,1,1,24,25,[[878,1,1,24,25]]],[29,1,1,25,26,[[885,1,1,25,26]]],[32,2,1,26,27,[[893,2,1,26,27]]],[33,1,1,27,28,[[902,1,1,27,28]]]],[1011,1134,1143,5966,5974,16585,17675,18092,18093,18985,19003,19008,19010,20777,20778,20790,20793,20797,21012,21026,21051,22110,22131,22148,22346,22481,22586,22716]]],["harlots",[2,2,[[10,1,1,0,1,[[293,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]]],[8832,17227]]],["harlots'",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19065]]],["whore",[9,9,[[2,3,3,0,3,[[108,1,1,0,1],[110,2,2,1,3]]],[4,2,2,3,5,[[174,1,1,3,4],[175,1,1,4,5]]],[6,1,1,5,6,[[229,1,1,5,6]]],[19,1,1,6,7,[[650,1,1,6,7]]],[22,1,1,7,8,[[735,1,1,7,8]]],[25,1,1,8,9,[[817,1,1,8,9]]]],[3310,3352,3354,5491,5518,7026,17071,18768,20790]]],["whoredom",[8,8,[[2,2,2,0,2,[[108,1,1,0,1],[109,1,1,1,2]]],[3,1,1,2,3,[[141,1,1,2,3]]],[25,1,1,3,4,[[817,1,1,3,4]]],[27,4,4,4,8,[[865,3,3,4,7],[866,1,1,7,8]]]],[3310,3323,4472,20779,22143,22146,22147,22155]]],["whoredoms",[4,3,[[13,1,1,0,1,[[387,1,1,0,1]]],[25,3,2,1,3,[[817,1,1,1,2],[824,2,1,2,3]]]],[11637,20796,21010]]],["whores",[2,2,[[25,1,1,0,1,[[817,1,1,0,1]]],[27,1,1,1,2,[[865,1,1,1,2]]]],[20795,22147]]],["whoring",[18,17,[[1,3,2,0,2,[[83,3,2,0,2]]],[2,3,3,2,5,[[106,1,1,2,3],[109,2,2,3,5]]],[3,1,1,5,6,[[131,1,1,5,6]]],[4,1,1,6,7,[[183,1,1,6,7]]],[6,2,2,7,9,[[212,1,1,7,8],[218,1,1,8,9]]],[12,1,1,9,10,[[342,1,1,9,10]]],[13,1,1,10,11,[[387,1,1,10,11]]],[18,2,2,11,13,[[550,1,1,11,12],[583,1,1,12,13]]],[25,2,2,13,15,[[807,1,1,13,14],[824,1,1,14,15]]],[27,2,2,15,17,[[865,1,1,15,16],[870,1,1,16,17]]]],[2511,2512,3242,3323,3324,4192,5744,6562,6752,10453,11637,15047,15690,20572,21037,22145,22209]]],["whorish",[3,3,[[19,1,1,0,1,[[633,1,1,0,1]]],[25,2,2,1,3,[[807,1,1,1,2],[817,1,1,2,3]]]],[16566,20572,20792]]]]},{"k":"H2182","v":[["Zanoah",[5,5,[[5,2,2,0,2,[[201,2,2,0,2]]],[12,1,1,2,3,[[341,1,1,2,3]]],[15,2,2,3,5,[[415,1,1,3,4],[423,1,1,4,5]]]],[6236,6258,10403,12340,12618]]]]},{"k":"H2183","v":[["*",[12,10,[[0,1,1,0,1,[[37,1,1,0,1]]],[11,1,1,1,2,[[321,1,1,1,2]]],[25,2,2,2,4,[[824,2,2,2,4]]],[27,6,5,4,9,[[862,2,1,4,5],[863,2,2,5,7],[865,1,1,7,8],[866,1,1,8,9]]],[33,2,1,9,10,[[902,2,1,9,10]]]],[1143,9778,21018,21036,22096,22107,22109,22145,22156,22716]]],["+",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21018]]],["whoredom",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1143]]],["whoredoms",[10,8,[[11,1,1,0,1,[[321,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]],[27,6,5,2,7,[[862,2,1,2,3],[863,2,2,3,5],[865,1,1,5,6],[866,1,1,6,7]]],[33,2,1,7,8,[[902,2,1,7,8]]]],[9778,21036,22096,22107,22109,22145,22156,22716]]]]},{"k":"H2184","v":[["*",[9,9,[[3,1,1,0,1,[[130,1,1,0,1]]],[23,3,3,1,4,[[747,2,2,1,3],[757,1,1,3,4]]],[25,3,3,4,7,[[824,1,1,4,5],[844,2,2,5,7]]],[27,2,2,7,9,[[865,1,1,7,8],[867,1,1,8,9]]]],[4141,19004,19011,19293,21034,21579,21581,22144,22177]]],["Whoredom",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22144]]],["whoredom",[6,6,[[23,2,2,0,2,[[747,1,1,0,1],[757,1,1,1,2]]],[25,3,3,2,5,[[824,1,1,2,3],[844,2,2,3,5]]],[27,1,1,5,6,[[867,1,1,5,6]]]],[19011,19293,21034,21579,21581,22177]]],["whoredoms",[2,2,[[3,1,1,0,1,[[130,1,1,0,1]]],[23,1,1,1,2,[[747,1,1,1,2]]]],[4141,19004]]]]},{"k":"H2185","v":[["armour",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9518]]]]},{"k":"H2186","v":[["*",[20,20,[[12,1,1,0,1,[[365,1,1,0,1]]],[13,2,2,1,3,[[377,1,1,1,2],[395,1,1,2,3]]],[18,10,10,3,13,[[520,1,1,3,4],[521,2,2,4,6],[537,2,2,6,8],[551,1,1,8,9],[554,1,1,9,10],[565,1,1,10,11],[566,1,1,11,12],[585,1,1,12,13]]],[22,1,1,13,14,[[697,1,1,13,14]]],[24,3,3,14,17,[[798,1,1,14,15],[799,2,2,15,17]]],[27,2,2,17,19,[[869,2,2,17,19]]],[37,1,1,19,20,[[920,1,1,19,20]]]],[11152,11428,11810,14568,14580,14594,14808,14817,15049,15100,15322,15364,15753,18010,20339,20371,20385,22197,22199,23022]]],["+",[2,2,[[22,1,1,0,1,[[697,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]]],[18010,20371]]],["away",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11810]]],["cast",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14594]]],["off",[16,16,[[12,1,1,0,1,[[365,1,1,0,1]]],[13,1,1,1,2,[[377,1,1,1,2]]],[18,9,9,2,11,[[520,1,1,2,3],[521,1,1,3,4],[537,2,2,4,6],[551,1,1,6,7],[554,1,1,7,8],[565,1,1,8,9],[566,1,1,9,10],[585,1,1,10,11]]],[24,2,2,11,13,[[798,1,1,11,12],[799,1,1,12,13]]],[27,2,2,13,15,[[869,2,2,13,15]]],[37,1,1,15,16,[[920,1,1,15,16]]]],[11152,11428,14568,14580,14808,14817,15049,15100,15322,15364,15753,20339,20385,22197,22199,23022]]]]},{"k":"H2187","v":[["leap",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5832]]]]},{"k":"H2188","v":[["sweat",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[74]]]]},{"k":"H2189","v":[["*",[7,7,[[4,1,1,0,1,[[180,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]],[23,4,4,2,6,[[759,1,1,2,3],[768,1,1,3,4],[773,1,1,4,5],[778,1,1,5,6]]],[25,1,1,6,7,[[824,1,1,6,7]]]],[5636,11799,19319,19533,19653,19818,21053]]],["removed",[6,6,[[4,1,1,0,1,[[180,1,1,0,1]]],[23,4,4,1,5,[[759,1,1,1,2],[768,1,1,2,3],[773,1,1,3,4],[778,1,1,4,5]]],[25,1,1,5,6,[[824,1,1,5,6]]]],[5636,19319,19533,19653,19818,21053]]],["trouble",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11799]]]]},{"k":"H2190","v":[["*",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1067,10294]]],["Zaavan",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1067]]],["Zavan",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10294]]]]},{"k":"H2191","v":[["little",[5,3,[[17,1,1,0,1,[[471,1,1,0,1]]],[22,4,2,1,3,[[706,4,2,1,3]]]],[13738,18174,18177]]]]},{"k":"H2192","v":[["little",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21941]]]]},{"k":"H2193","v":[["extinct",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13261]]]]},{"k":"H2194","v":[["*",[12,11,[[3,3,2,0,2,[[139,3,2,0,2]]],[18,1,1,2,3,[[484,1,1,2,3]]],[19,3,3,3,6,[[649,1,1,3,4],[651,1,1,4,5],[652,1,1,5,6]]],[22,1,1,6,7,[[744,1,1,6,7]]],[26,1,1,7,8,[[860,1,1,7,8]]],[32,1,1,8,9,[[898,1,1,8,9]]],[37,1,1,9,10,[[911,1,1,9,10]]],[38,1,1,10,11,[[925,1,1,10,11]]]],[4423,4424,14006,17029,17103,17136,18936,22066,22658,22890,23093]]],["abhor",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17103]]],["abhorred",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17029]]],["abominable",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22658]]],["angry",[2,2,[[18,1,1,0,1,[[484,1,1,0,1]]],[19,1,1,1,2,[[652,1,1,1,2]]]],[14006,17136]]],["defied",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4424]]],["defy",[2,2,[[3,2,2,0,2,[[139,2,2,0,2]]]],[4423,4424]]],["indignation",[4,4,[[22,1,1,0,1,[[744,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]],[37,1,1,2,3,[[911,1,1,2,3]]],[38,1,1,3,4,[[925,1,1,3,4]]]],[18936,22066,22890,23093]]]]},{"k":"H2195","v":[["*",[22,22,[[18,4,4,0,4,[[515,1,1,0,1],[546,1,1,1,2],[555,1,1,2,3],[579,1,1,3,4]]],[22,5,5,4,9,[[688,2,2,4,6],[691,1,1,6,7],[704,1,1,7,8],[708,1,1,8,9]]],[23,3,3,9,12,[[754,1,1,9,10],[759,1,1,10,11],[794,1,1,11,12]]],[24,1,1,12,13,[[798,1,1,12,13]]],[25,3,3,13,16,[[822,1,1,13,14],[823,2,2,14,16]]],[26,2,2,16,18,[[857,1,1,16,17],[860,1,1,17,18]]],[27,1,1,18,19,[[868,1,1,18,19]]],[33,1,1,19,20,[[900,1,1,19,20]]],[34,1,1,20,21,[[905,1,1,20,21]]],[35,1,1,21,22,[[908,1,1,21,22]]]],[14493,14959,15162,15531,17855,17875,17911,18150,18244,19211,19332,20191,20338,20975,21000,21007,21980,22072,22194,22690,22780,22828]]],["+",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22194]]],["anger",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14493]]],["indignation",[20,20,[[18,3,3,0,3,[[546,1,1,0,1],[555,1,1,1,2],[579,1,1,2,3]]],[22,5,5,3,8,[[688,2,2,3,5],[691,1,1,5,6],[704,1,1,6,7],[708,1,1,7,8]]],[23,3,3,8,11,[[754,1,1,8,9],[759,1,1,9,10],[794,1,1,10,11]]],[24,1,1,11,12,[[798,1,1,11,12]]],[25,3,3,12,15,[[822,1,1,12,13],[823,2,2,13,15]]],[26,2,2,15,17,[[857,1,1,15,16],[860,1,1,16,17]]],[33,1,1,17,18,[[900,1,1,17,18]]],[34,1,1,18,19,[[905,1,1,18,19]]],[35,1,1,19,20,[[908,1,1,19,20]]]],[14959,15162,15531,17855,17875,17911,18150,18244,19211,19332,20191,20338,20975,21000,21007,21980,22072,22690,22780,22828]]]]},{"k":"H2196","v":[["*",[5,4,[[0,1,1,0,1,[[39,1,1,0,1]]],[13,2,1,1,2,[[392,2,1,1,2]]],[19,1,1,2,3,[[646,1,1,2,3]]],[26,1,1,3,4,[[850,1,1,3,4]]]],[1178,11751,16928,21747]]],["fretteth",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16928]]],["liking",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21747]]],["sad",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1178]]],["wroth",[2,1,[[13,2,1,0,1,[[392,2,1,0,1]]]],[11751]]]]},{"k":"H2197","v":[["*",[6,6,[[13,2,2,0,2,[[382,1,1,0,1],[394,1,1,1,2]]],[19,1,1,2,3,[[646,1,1,2,3]]],[22,1,1,3,4,[[708,1,1,3,4]]],[31,1,1,4,5,[[889,1,1,4,5]]],[32,1,1,5,6,[[899,1,1,5,6]]]],[11519,11773,16937,18247,22546,22673]]],["+",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22546]]],["indignation",[2,2,[[22,1,1,0,1,[[708,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]]],[18247,22673]]],["rage",[2,2,[[13,2,2,0,2,[[382,1,1,0,1],[394,1,1,1,2]]]],[11519,11773]]],["wrath",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16937]]]]},{"k":"H2198","v":[["displeased",[2,2,[[10,2,2,0,2,[[310,1,1,0,1],[311,1,1,1,2]]]],[9451,9455]]]]},{"k":"H2199","v":[["*",[73,73,[[1,1,1,0,1,[[51,1,1,0,1]]],[5,1,1,1,2,[[194,1,1,1,2]]],[6,13,13,2,15,[[213,2,2,2,4],[214,2,2,4,6],[216,4,4,6,10],[220,2,2,10,12],[222,1,1,12,13],[228,2,2,13,15]]],[8,10,10,15,25,[[239,1,1,15,16],[240,1,1,16,17],[242,2,2,17,19],[243,1,1,19,20],[247,2,2,20,22],[249,1,1,22,23],[250,1,1,23,24],[263,1,1,24,25]]],[9,5,5,25,30,[[279,1,1,25,26],[285,2,2,26,28],[286,2,2,28,30]]],[10,1,1,30,31,[[312,1,1,30,31]]],[12,1,1,31,32,[[342,1,1,31,32]]],[13,3,3,32,35,[[384,1,1,32,33],[386,1,1,33,34],[398,1,1,34,35]]],[15,2,2,35,37,[[421,2,2,35,37]]],[16,1,1,37,38,[[429,1,1,37,38]]],[17,2,2,38,40,[[466,1,1,38,39],[470,1,1,39,40]]],[18,5,5,40,45,[[499,1,1,40,41],[584,2,2,41,43],[619,2,2,43,45]]],[22,6,6,45,51,[[692,1,1,45,46],[693,2,2,46,48],[704,1,1,48,49],[708,1,1,49,50],[735,1,1,50,51]]],[23,8,8,51,59,[[755,2,2,51,53],[764,1,1,53,54],[769,1,1,54,55],[774,1,1,55,56],[791,1,1,56,57],[792,2,2,57,59]]],[24,1,1,59,60,[[799,1,1,59,60]]],[25,4,4,60,64,[[810,1,1,60,61],[812,1,1,61,62],[822,1,1,62,63],[828,1,1,63,64]]],[27,2,2,64,66,[[868,1,1,64,65],[869,1,1,65,66]]],[28,1,1,66,67,[[876,1,1,66,67]]],[31,2,2,67,69,[[889,1,1,67,68],[891,1,1,68,69]]],[32,1,1,69,70,[[895,1,1,69,70]]],[34,2,2,70,72,[[903,1,1,70,71],[904,1,1,71,72]]],[37,1,1,72,73,[[916,1,1,72,73]]]],[1577,6018,6577,6583,6609,6612,6660,6661,6688,6689,6821,6825,6871,7015,7016,7310,7329,7360,7361,7387,7468,7470,7528,7571,7954,8336,8515,8539,8558,8559,9512,10448,11573,11596,11895,12515,12539,12763,13626,13729,14209,15712,15718,16287,16291,17959,17964,17965,18147,18236,18778,19237,19238,19430,19568,19682,20075,20100,20111,20362,20630,20668,20956,21151,22192,22196,22305,22536,22565,22612,22733,22759,22955]]],["+",[3,3,[[6,2,2,0,2,[[214,2,2,0,2]]],[8,1,1,2,3,[[242,1,1,2,3]]]],[6609,6612,7360]]],["Assemble",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8558]]],["Cry",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20956]]],["assemble",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8559]]],["called",[1,1,[[6,1,1,0,1,[[222,1,1,0,1]]]],[6871]]],["company",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7016]]],["cried",[26,26,[[1,1,1,0,1,[[51,1,1,0,1]]],[6,5,5,1,6,[[213,2,2,1,3],[216,2,2,3,5],[220,1,1,5,6]]],[8,5,5,6,11,[[242,1,1,6,7],[247,2,2,7,9],[250,1,1,9,10],[263,1,1,10,11]]],[9,1,1,11,12,[[285,1,1,11,12]]],[12,1,1,12,13,[[342,1,1,12,13]]],[13,1,1,13,14,[[398,1,1,13,14]]],[15,2,2,14,16,[[421,2,2,14,16]]],[16,1,1,16,17,[[429,1,1,16,17]]],[18,4,4,17,21,[[499,1,1,17,18],[584,1,1,18,19],[619,2,2,19,21]]],[25,2,2,21,23,[[810,1,1,21,22],[812,1,1,22,23]]],[27,1,1,23,24,[[868,1,1,23,24]]],[31,1,1,24,25,[[889,1,1,24,25]]],[37,1,1,25,26,[[916,1,1,25,26]]]],[1577,6577,6583,6660,6661,6821,7361,7468,7470,7571,7954,8515,10448,11895,12515,12539,12763,14209,15712,16287,16291,20630,20668,22192,22536,22955]]],["criest",[2,2,[[22,1,1,0,1,[[735,1,1,0,1]]],[23,1,1,1,2,[[774,1,1,1,2]]]],[18778,19682]]],["cry",[20,20,[[6,1,1,0,1,[[220,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]],[13,1,1,2,3,[[386,1,1,2,3]]],[17,2,2,3,5,[[466,1,1,3,4],[470,1,1,4,5]]],[18,1,1,5,6,[[584,1,1,5,6]]],[22,4,4,6,10,[[692,1,1,6,7],[693,2,2,7,9],[708,1,1,9,10]]],[23,5,5,10,15,[[755,2,2,10,12],[769,1,1,12,13],[791,1,1,13,14],[792,1,1,14,15]]],[24,1,1,15,16,[[799,1,1,15,16]]],[25,1,1,16,17,[[828,1,1,16,17]]],[27,1,1,17,18,[[869,1,1,17,18]]],[28,1,1,18,19,[[876,1,1,18,19]]],[32,1,1,19,20,[[895,1,1,19,20]]]],[6825,8539,11596,13626,13729,15718,17959,17964,17965,18236,19237,19238,19568,20075,20100,20362,21151,22196,22305,22612]]],["crying",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8336]]],["gathered",[2,2,[[6,2,2,0,2,[[216,2,2,0,2]]]],[6688,6689]]],["out",[10,10,[[8,3,3,0,3,[[239,1,1,0,1],[240,1,1,1,2],[243,1,1,2,3]]],[10,1,1,3,4,[[312,1,1,3,4]]],[13,1,1,4,5,[[384,1,1,4,5]]],[22,1,1,5,6,[[704,1,1,5,6]]],[23,2,2,6,8,[[764,1,1,6,7],[792,1,1,7,8]]],[34,2,2,8,10,[[903,1,1,8,9],[904,1,1,9,10]]]],[7310,7329,7387,9512,11573,18147,19430,20111,22733,22759]]],["proclaimed",[1,1,[[31,1,1,0,1,[[891,1,1,0,1]]]],[22565]]],["themselves",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7528]]],["together",[2,2,[[5,1,1,0,1,[[194,1,1,0,1]]],[6,1,1,1,2,[[228,1,1,1,2]]]],[6018,7015]]]]},{"k":"H2200","v":[["cried",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21925]]]]},{"k":"H2201","v":[["*",[18,18,[[0,1,1,0,1,[[17,1,1,0,1]]],[15,2,2,1,3,[[417,1,1,1,2],[421,1,1,2,3]]],[16,2,2,3,5,[[429,1,1,3,4],[434,1,1,4,5]]],[17,1,1,5,6,[[451,1,1,5,6]]],[19,1,1,6,7,[[648,1,1,6,7]]],[20,1,1,7,8,[[667,1,1,7,8]]],[22,3,3,8,11,[[693,2,2,8,10],[743,1,1,10,11]]],[23,6,6,11,17,[[762,1,1,11,12],[764,1,1,12,13],[792,2,2,13,15],[794,1,1,15,16],[795,1,1,16,17]]],[25,1,1,17,18,[[828,1,1,17,18]]]],[444,12388,12520,12763,12865,13256,16997,17492,17965,17968,18916,19406,19438,20084,20114,20212,20266,21149]]],["+",[3,3,[[19,1,1,0,1,[[648,1,1,0,1]]],[20,1,1,1,2,[[667,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[16997,17492,20114]]],["cry",[14,14,[[0,1,1,0,1,[[17,1,1,0,1]]],[15,2,2,1,3,[[417,1,1,1,2],[421,1,1,2,3]]],[16,2,2,3,5,[[429,1,1,3,4],[434,1,1,4,5]]],[17,1,1,5,6,[[451,1,1,5,6]]],[22,2,2,6,8,[[693,2,2,6,8]]],[23,5,5,8,13,[[762,1,1,8,9],[764,1,1,9,10],[792,1,1,10,11],[794,1,1,11,12],[795,1,1,12,13]]],[25,1,1,13,14,[[828,1,1,13,14]]]],[444,12388,12520,12763,12865,13256,17965,17968,19406,19438,20084,20212,20266,21149]]],["crying",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18916]]]]},{"k":"H2202","v":[["Ziphron",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4825]]]]},{"k":"H2203","v":[["pitch",[3,2,[[1,1,1,0,1,[[51,1,1,0,1]]],[22,2,1,1,2,[[712,2,1,1,2]]]],[1557,18312]]]]},{"k":"H2204","v":[["*",[27,26,[[0,6,6,0,6,[[17,2,2,0,2],[18,1,1,2,3],[23,1,1,3,4],[26,2,2,4,6]]],[5,4,3,6,9,[[199,2,1,6,7],[209,2,2,7,9]]],[7,1,1,9,10,[[232,1,1,9,10]]],[8,6,6,10,16,[[237,1,1,10,11],[239,1,1,11,12],[243,2,2,12,14],[247,1,1,14,15],[252,1,1,15,16]]],[9,1,1,16,17,[[285,1,1,16,17]]],[10,2,2,17,19,[[291,2,2,17,19]]],[11,1,1,19,20,[[316,1,1,19,20]]],[12,1,1,20,21,[[360,1,1,20,21]]],[13,1,1,21,22,[[390,1,1,21,22]]],[17,1,1,22,23,[[449,1,1,22,23]]],[18,1,1,23,24,[[514,1,1,23,24]]],[19,2,2,24,26,[[649,1,1,24,25],[650,1,1,25,26]]]],[436,437,488,592,728,729,6155,6461,6462,7139,7262,7315,7370,7374,7462,7630,8543,8718,8732,9617,10984,11692,13189,14475,17021,17066]]],["aged",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8543]]],["old",[26,25,[[0,6,6,0,6,[[17,2,2,0,2],[18,1,1,2,3],[23,1,1,3,4],[26,2,2,4,6]]],[5,4,3,6,9,[[199,2,1,6,7],[209,2,2,7,9]]],[7,1,1,9,10,[[232,1,1,9,10]]],[8,6,6,10,16,[[237,1,1,10,11],[239,1,1,11,12],[243,2,2,12,14],[247,1,1,14,15],[252,1,1,15,16]]],[10,2,2,16,18,[[291,2,2,16,18]]],[11,1,1,18,19,[[316,1,1,18,19]]],[12,1,1,19,20,[[360,1,1,19,20]]],[13,1,1,20,21,[[390,1,1,20,21]]],[17,1,1,21,22,[[449,1,1,21,22]]],[18,1,1,22,23,[[514,1,1,22,23]]],[19,2,2,23,25,[[649,1,1,23,24],[650,1,1,24,25]]]],[436,437,488,592,728,729,6155,6461,6462,7139,7262,7315,7370,7374,7462,7630,8718,8732,9617,10984,11692,13189,14475,17021,17066]]]]},{"k":"H2205","v":[["*",[178,171,[[0,9,8,0,8,[[17,1,1,0,1],[18,1,1,1,2],[23,1,1,2,3],[24,1,1,3,4],[34,1,1,4,5],[42,1,1,5,6],[43,1,1,6,7],[49,2,1,7,8]]],[1,12,12,8,20,[[52,2,2,8,10],[53,1,1,10,11],[59,1,1,11,12],[61,1,1,12,13],[66,2,2,13,15],[67,1,1,15,16],[68,1,1,16,17],[73,3,3,17,20]]],[2,3,3,20,23,[[93,1,1,20,21],[98,1,1,21,22],[108,1,1,22,23]]],[3,9,7,23,30,[[127,5,4,23,27],[132,1,1,27,28],[138,3,2,28,30]]],[4,21,21,30,51,[[157,1,1,30,31],[171,1,1,31,32],[173,6,6,32,38],[174,4,4,38,42],[177,3,3,42,45],[179,1,1,45,46],[180,1,1,46,47],[181,1,1,47,48],[183,2,2,48,50],[184,1,1,50,51]]],[5,9,9,51,60,[[192,1,1,51,52],[193,1,1,52,53],[194,2,2,53,55],[195,1,1,55,56],[206,1,1,56,57],[209,1,1,57,58],[210,2,2,58,60]]],[6,14,14,60,74,[[212,1,1,60,61],[218,2,2,61,63],[221,6,6,63,69],[229,4,4,69,73],[231,1,1,73,74]]],[7,4,4,74,78,[[235,4,4,74,78]]],[8,9,9,78,87,[[237,2,2,78,80],[239,1,1,80,81],[243,1,1,81,82],[246,1,1,82,83],[250,1,1,83,84],[251,1,1,84,85],[263,1,1,85,86],[265,1,1,86,87]]],[9,6,6,87,93,[[269,1,1,87,88],[271,1,1,88,89],[278,1,1,89,90],[283,2,2,90,92],[285,1,1,92,93]]],[10,12,12,93,105,[[298,2,2,93,95],[302,3,3,95,98],[303,3,3,98,101],[310,2,2,101,103],[311,2,2,103,105]]],[11,6,5,105,110,[[318,2,1,105,106],[322,2,2,106,108],[331,1,1,108,109],[335,1,1,109,110]]],[12,3,3,110,113,[[348,1,1,110,111],[352,1,1,111,112],[358,1,1,112,113]]],[13,7,7,113,120,[[371,2,2,113,115],[376,3,3,115,118],[400,1,1,118,119],[402,1,1,119,120]]],[14,3,3,120,123,[[405,1,1,120,121],[412,2,2,121,123]]],[16,1,1,123,124,[[428,1,1,123,124]]],[17,4,4,124,128,[[447,1,1,124,125],[467,2,2,125,127],[477,1,1,127,128]]],[18,4,4,128,132,[[582,1,1,128,129],[584,1,1,129,130],[596,1,1,130,131],[625,1,1,131,132]]],[19,3,3,132,135,[[644,1,1,132,133],[647,1,1,133,134],[658,1,1,134,135]]],[20,1,1,135,136,[[662,1,1,135,136]]],[22,9,9,136,145,[[681,3,3,136,139],[687,1,1,139,140],[698,1,1,140,141],[702,1,1,141,142],[715,1,1,142,143],[725,1,1,143,144],[743,1,1,144,145]]],[23,7,6,145,151,[[750,1,1,145,146],[763,2,1,146,147],[770,1,1,147,148],[773,1,1,148,149],[775,1,1,149,150],[795,1,1,150,151]]],[24,6,6,151,157,[[797,1,1,151,152],[798,2,2,152,154],[800,1,1,154,155],[801,2,2,155,157]]],[25,10,9,157,166,[[808,1,1,157,158],[809,3,3,158,161],[810,2,1,161,162],[815,1,1,162,163],[821,2,2,163,165],[828,1,1,165,166]]],[28,4,4,166,170,[[876,2,2,166,168],[877,2,2,168,170]]],[37,2,1,170,171,[[918,2,1,170,171]]]],[435,461,593,666,1040,1317,1344,1513,1595,1597,1630,1786,1837,1988,1989,2011,2033,2178,2186,2191,2810,2954,3313,4040,4048,4049,4054,4219,4379,4382,5076,5418,5449,5450,5451,5453,5466,5467,5485,5486,5487,5488,5554,5555,5556,5586,5661,5689,5737,5756,5765,5970,5982,6012,6035,6048,6376,6462,6477,6507,6552,6733,6735,6834,6836,6837,6838,6839,6840,7040,7041,7044,7046,7118,7192,7194,7199,7201,7271,7272,7300,7373,7448,7590,7599,7956,8004,8098,8135,8303,8453,8464,8522,8986,8988,9157,9159,9164,9195,9209,9213,9415,9416,9459,9462,9706,9794,9798,10063,10166,10676,10816,10950,11270,11272,11401,11403,11408,11962,12010,12109,12260,12266,12760,13148,13632,13637,13939,15628,15731,15998,16383,16879,16983,17307,17394,17709,17712,17721,17844,18033,18118,18354,18605,18917,19100,19408,19589,19636,19704,20234,20329,20342,20353,20436,20454,20456,20603,20605,20615,20616,20628,20732,20896,20898,21130,22293,22305,22327,22339,22980]]],["+",[17,16,[[1,3,3,0,3,[[66,1,1,0,1],[73,2,2,1,3]]],[3,3,3,3,6,[[127,3,3,3,6]]],[7,1,1,6,7,[[235,1,1,6,7]]],[10,1,1,7,8,[[303,1,1,7,8]]],[17,1,1,8,9,[[467,1,1,8,9]]],[18,1,1,9,10,[[596,1,1,9,10]]],[23,3,2,10,12,[[763,2,1,10,11],[770,1,1,11,12]]],[25,4,4,12,16,[[808,1,1,12,13],[809,1,1,13,14],[815,1,1,14,15],[821,1,1,15,16]]]],[1988,2178,2186,4040,4048,4049,7192,9195,13632,15998,19408,19589,20603,20615,20732,20896]]],["aged",[3,3,[[17,2,2,0,2,[[447,1,1,0,1],[467,1,1,1,2]]],[23,1,1,2,3,[[750,1,1,2,3]]]],[13148,13637,19100]]],["ancient",[5,5,[[22,4,4,0,4,[[681,2,2,0,2],[687,1,1,2,3],[725,1,1,3,4]]],[25,1,1,4,5,[[810,1,1,4,5]]]],[17709,17712,17844,18605,20628]]],["ancients",[4,4,[[22,2,2,0,2,[[681,1,1,0,1],[702,1,1,1,2]]],[25,2,2,2,4,[[809,1,1,2,3],[828,1,1,3,4]]]],[17721,18118,20616,21130]]],["elders",[104,101,[[0,2,1,0,1,[[49,2,1,0,1]]],[1,8,8,1,9,[[52,2,2,1,3],[53,1,1,3,4],[61,1,1,4,5],[66,1,1,5,6],[67,1,1,6,7],[68,1,1,7,8],[73,1,1,8,9]]],[2,2,2,9,11,[[93,1,1,9,10],[98,1,1,10,11]]],[3,6,5,11,16,[[127,2,2,11,13],[132,1,1,13,14],[138,3,2,14,16]]],[4,20,20,16,36,[[157,1,1,16,17],[171,1,1,17,18],[173,6,6,18,24],[174,4,4,24,28],[177,3,3,28,31],[179,1,1,31,32],[181,1,1,32,33],[183,2,2,33,35],[184,1,1,35,36]]],[5,8,8,36,44,[[193,1,1,36,37],[194,2,2,37,39],[195,1,1,39,40],[206,1,1,40,41],[209,1,1,41,42],[210,2,2,42,44]]],[6,10,10,44,54,[[212,1,1,44,45],[218,2,2,45,47],[221,6,6,47,53],[231,1,1,53,54]]],[7,3,3,54,57,[[235,3,3,54,57]]],[8,6,6,57,63,[[239,1,1,57,58],[243,1,1,58,59],[246,1,1,59,60],[250,1,1,60,61],[251,1,1,61,62],[265,1,1,62,63]]],[9,6,6,63,69,[[269,1,1,63,64],[271,1,1,64,65],[278,1,1,65,66],[283,2,2,66,68],[285,1,1,68,69]]],[10,6,6,69,75,[[298,2,2,69,71],[310,2,2,71,73],[311,2,2,73,75]]],[11,6,5,75,80,[[318,2,1,75,76],[322,2,2,76,78],[331,1,1,78,79],[335,1,1,79,80]]],[12,3,3,80,83,[[348,1,1,80,81],[352,1,1,81,82],[358,1,1,82,83]]],[13,3,3,83,86,[[371,2,2,83,85],[400,1,1,85,86]]],[14,2,2,86,88,[[412,2,2,86,88]]],[18,1,1,88,89,[[584,1,1,88,89]]],[19,1,1,89,90,[[658,1,1,89,90]]],[22,1,1,90,91,[[715,1,1,90,91]]],[23,1,1,91,92,[[773,1,1,91,92]]],[24,5,5,92,97,[[797,1,1,92,93],[798,1,1,93,94],[800,1,1,94,95],[801,2,2,95,97]]],[25,2,2,97,99,[[809,1,1,97,98],[821,1,1,98,99]]],[28,2,2,99,101,[[876,1,1,99,100],[877,1,1,100,101]]]],[1513,1595,1597,1630,1837,1989,2011,2033,2191,2810,2954,4040,4054,4219,4379,4382,5076,5418,5449,5450,5451,5453,5466,5467,5485,5486,5487,5488,5554,5555,5556,5586,5689,5737,5756,5765,5982,6012,6035,6048,6376,6462,6477,6507,6552,6733,6735,6834,6836,6837,6838,6839,6840,7118,7194,7199,7201,7300,7373,7448,7590,7599,8004,8098,8135,8303,8453,8464,8522,8986,8988,9415,9416,9459,9462,9706,9794,9798,10063,10166,10676,10816,10950,11270,11272,11962,12260,12266,15731,17307,18354,19636,20329,20342,20436,20454,20456,20605,20898,22305,22327]]],["eldest",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[593]]],["man",[9,9,[[0,3,3,0,3,[[24,1,1,0,1],[42,1,1,1,2],[43,1,1,2,3]]],[2,1,1,3,4,[[108,1,1,3,4]]],[6,1,1,4,5,[[229,1,1,4,5]]],[8,2,2,5,7,[[237,2,2,5,7]]],[13,1,1,7,8,[[402,1,1,7,8]]],[22,1,1,8,9,[[743,1,1,8,9]]]],[666,1317,1344,3313,7046,7271,7272,12010,18917]]],["men",[12,12,[[10,2,2,0,2,[[302,2,2,0,2]]],[13,3,3,2,5,[[376,3,3,2,5]]],[14,1,1,5,6,[[405,1,1,5,6]]],[18,1,1,6,7,[[625,1,1,6,7]]],[19,2,2,7,9,[[644,1,1,7,8],[647,1,1,8,9]]],[28,2,2,9,11,[[876,1,1,9,10],[877,1,1,10,11]]],[37,1,1,11,12,[[918,1,1,11,12]]]],[9157,9159,11401,11403,11408,12109,16383,16879,16983,22293,22339,22980]]],["men's",[1,1,[[10,1,1,0,1,[[302,1,1,0,1]]]],[9164]]],["old",[20,20,[[0,3,3,0,3,[[17,1,1,0,1],[18,1,1,1,2],[34,1,1,2,3]]],[1,1,1,3,4,[[59,1,1,3,4]]],[4,1,1,4,5,[[180,1,1,4,5]]],[5,1,1,5,6,[[192,1,1,5,6]]],[6,3,3,6,9,[[229,3,3,6,9]]],[8,1,1,9,10,[[263,1,1,9,10]]],[10,2,2,10,12,[[303,2,2,10,12]]],[16,1,1,12,13,[[428,1,1,12,13]]],[17,1,1,13,14,[[477,1,1,13,14]]],[20,1,1,14,15,[[662,1,1,14,15]]],[22,1,1,15,16,[[698,1,1,15,16]]],[23,2,2,16,18,[[775,1,1,16,17],[795,1,1,17,18]]],[24,1,1,18,19,[[798,1,1,18,19]]],[25,1,1,19,20,[[810,1,1,19,20]]]],[435,461,1040,1786,5661,5970,7040,7041,7044,7956,9209,9213,12760,13939,17394,18033,19704,20234,20353,20628]]],["senators",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15628]]],["women",[1,1,[[37,1,1,0,1,[[918,1,1,0,1]]]],[22980]]]]},{"k":"H2206","v":[["*",[19,18,[[2,5,5,0,5,[[102,2,2,0,2],[103,1,1,2,3],[108,1,1,3,4],[110,1,1,4,5]]],[8,2,2,5,7,[[252,1,1,5,6],[256,1,1,6,7]]],[9,3,3,7,10,[[276,2,2,7,9],[286,1,1,9,10]]],[12,1,1,10,11,[[356,1,1,10,11]]],[14,1,1,11,12,[[411,1,1,11,12]]],[18,2,1,12,13,[[610,2,1,12,13]]],[22,2,2,13,15,[[685,1,1,13,14],[693,1,1,14,15]]],[23,2,2,15,17,[[785,1,1,15,16],[792,1,1,16,17]]],[25,1,1,17,18,[[806,1,1,17,18]]]],[3081,3082,3120,3308,3350,7653,7785,8244,8245,8563,10912,12240,16171,17802,17962,19962,20117,20547]]],["beard",[15,14,[[2,5,5,0,5,[[102,2,2,0,2],[103,1,1,2,3],[108,1,1,3,4],[110,1,1,4,5]]],[8,2,2,5,7,[[252,1,1,5,6],[256,1,1,6,7]]],[9,1,1,7,8,[[286,1,1,7,8]]],[14,1,1,8,9,[[411,1,1,8,9]]],[18,2,1,9,10,[[610,2,1,9,10]]],[22,2,2,10,12,[[685,1,1,10,11],[693,1,1,11,12]]],[23,1,1,12,13,[[792,1,1,12,13]]],[25,1,1,13,14,[[806,1,1,13,14]]]],[3081,3082,3120,3308,3350,7653,7785,8563,12240,16171,17802,17962,20117,20547]]],["beards",[4,4,[[9,2,2,0,2,[[276,2,2,0,2]]],[12,1,1,2,3,[[356,1,1,2,3]]],[23,1,1,3,4,[[785,1,1,3,4]]]],[8244,8245,10912,19962]]]]},{"k":"H2207","v":[["+",[1,1,[[0,1,1,0,1,[[47,1,1,0,1]]]],[1461]]]]},{"k":"H2208","v":[["age",[4,4,[[0,4,4,0,4,[[20,2,2,0,2],[36,1,1,2,3],[43,1,1,3,4]]]],[515,520,1086,1344]]]]},{"k":"H2209","v":[["*",[6,6,[[0,1,1,0,1,[[23,1,1,0,1]]],[10,2,2,1,3,[[301,1,1,1,2],[305,1,1,2,3]]],[18,2,2,3,5,[[548,2,2,3,5]]],[22,1,1,5,6,[[724,1,1,5,6]]]],[627,9112,9272,14985,14994,18590]]],["age",[3,3,[[10,1,1,0,1,[[305,1,1,0,1]]],[18,1,1,1,2,[[548,1,1,1,2]]],[22,1,1,2,3,[[724,1,1,2,3]]]],[9272,14985,18590]]],["old",[3,3,[[0,1,1,0,1,[[23,1,1,0,1]]],[10,1,1,1,2,[[301,1,1,1,2]]],[18,1,1,2,3,[[548,1,1,2,3]]]],[627,9112,14994]]]]},{"k":"H2210","v":[["*",[2,2,[[18,2,2,0,2,[[622,1,1,0,1],[623,1,1,1,2]]]],[16334,16349]]],["raiseth",[1,1,[[18,1,1,0,1,[[623,1,1,0,1]]]],[16349]]],["up",[1,1,[[18,1,1,0,1,[[622,1,1,0,1]]]],[16334]]]]},{"k":"H2211","v":[["up",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12162]]]]},{"k":"H2212","v":[["*",[7,7,[[12,2,2,0,2,[[365,1,1,0,1],[366,1,1,1,2]]],[17,2,2,2,4,[[463,1,1,2,3],[471,1,1,3,4]]],[18,1,1,4,5,[[489,1,1,4,5]]],[22,1,1,5,6,[[703,1,1,5,6]]],[38,1,1,6,7,[[927,1,1,6,7]]]],[11161,11168,13505,13763,14072,18124,23123]]],["down",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13763]]],["fine",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13505]]],["purge",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23123]]],["purified",[1,1,[[18,1,1,0,1,[[489,1,1,0,1]]]],[14072]]],["refined",[3,3,[[12,2,2,0,2,[[365,1,1,0,1],[366,1,1,1,2]]],[22,1,1,2,3,[[703,1,1,2,3]]]],[11161,11168,18124]]]]},{"k":"H2213","v":[["crown",[10,10,[[1,10,10,0,10,[[74,3,3,0,3],[79,2,2,3,5],[86,5,5,5,10]]]],[2206,2219,2220,2385,2386,2606,2615,2616,2630,2631]]]]},{"k":"H2214","v":[["loathsome",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4044]]]]},{"k":"H2215","v":[["warm",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12995]]]]},{"k":"H2216","v":[["Zerubbabel",[21,20,[[12,2,1,0,1,[[340,2,1,0,1]]],[14,5,5,1,6,[[404,1,1,1,2],[405,2,2,2,4],[406,2,2,4,6]]],[15,3,3,6,9,[[419,1,1,6,7],[424,2,2,7,9]]],[36,7,7,9,16,[[909,3,3,9,12],[910,4,4,12,16]]],[37,4,4,16,20,[[914,4,4,16,20]]]],[10380,12029,12099,12105,12112,12113,12427,12625,12671,22841,22852,22854,22857,22859,22876,22878,22928,22929,22931,22932]]]]},{"k":"H2217","v":[["Zerubbabel",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12136]]]]},{"k":"H2218","v":[["*",[4,3,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,3,2,1,3,[[154,3,2,1,3]]]],[4352,4951,4952]]],["Zared",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4352]]],["Zered",[3,2,[[4,3,2,0,2,[[154,3,2,0,2]]]],[4951,4952]]]]},{"k":"H2219","v":[["*",[39,38,[[1,1,1,0,1,[[81,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[7,1,1,3,4,[[234,1,1,3,4]]],[10,1,1,4,5,[[304,1,1,4,5]]],[17,1,1,5,6,[[453,1,1,5,6]]],[18,3,3,6,9,[[521,1,1,6,7],[583,1,1,7,8],[616,1,1,8,9]]],[19,4,4,9,13,[[628,1,1,9,10],[642,1,1,10,11],[647,2,2,11,13]]],[22,3,3,13,16,[[708,2,2,13,15],[719,1,1,15,16]]],[23,6,6,16,22,[[748,1,1,16,17],[759,1,1,17,18],[775,1,1,18,19],[793,2,2,19,21],[795,1,1,21,22]]],[25,13,13,22,35,[[806,3,3,22,25],[807,2,2,25,27],[813,2,2,27,29],[821,1,1,29,30],[823,1,1,30,31],[830,1,1,31,32],[831,2,2,32,34],[837,1,1,34,35]]],[37,3,2,35,37,[[911,3,2,35,37]]],[38,1,1,37,38,[[926,1,1,37,38]]]],[2458,3557,4231,7174,9233,13291,14582,15678,16242,16417,16814,16962,16980,18239,18241,18467,19038,19322,19701,20159,20163,20214,20548,20556,20558,20568,20571,20694,20695,20918,20991,21195,21227,21230,21378,22897,22899,23106]]],["+",[3,3,[[25,1,1,0,1,[[807,1,1,0,1]]],[37,2,2,1,3,[[911,2,2,1,3]]]],[20568,22897,22899]]],["away",[2,2,[[19,1,1,0,1,[[647,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]]],[16962,18239]]],["compassest",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16242]]],["disperse",[7,7,[[19,1,1,0,1,[[642,1,1,0,1]]],[25,6,6,1,7,[[813,1,1,1,2],[821,1,1,2,3],[823,1,1,3,4],[830,1,1,4,5],[831,2,2,5,7]]]],[16814,20695,20918,20991,21195,21227,21230]]],["dispersed",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21378]]],["fan",[4,4,[[22,1,1,0,1,[[719,1,1,0,1]]],[23,3,3,1,4,[[748,1,1,1,2],[759,1,1,2,3],[795,1,1,3,4]]]],[18467,19038,19322,20214]]],["scatter",[11,11,[[2,1,1,0,1,[[115,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[10,1,1,2,3,[[304,1,1,2,3]]],[18,1,1,3,4,[[583,1,1,3,4]]],[23,2,2,4,6,[[793,2,2,4,6]]],[25,4,4,6,10,[[806,3,3,6,9],[813,1,1,9,10]]],[37,1,1,10,11,[[911,1,1,10,11]]]],[3557,4231,9233,15678,20159,20163,20548,20556,20558,20694,22899]]],["scattered",[4,4,[[17,1,1,0,1,[[453,1,1,0,1]]],[18,1,1,1,2,[[521,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]],[25,1,1,3,4,[[807,1,1,3,4]]]],[13291,14582,19701,20571]]],["scattereth",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16980]]],["spread",[2,2,[[19,1,1,0,1,[[628,1,1,0,1]]],[38,1,1,1,2,[[926,1,1,1,2]]]],[16417,23106]]],["strawed",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2458]]],["winnowed",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18241]]],["winnoweth",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7174]]]]},{"k":"H2220","v":[["*",[91,84,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[55,1,1,1,2],[64,1,1,2,3]]],[3,1,1,3,4,[[122,1,1,3,4]]],[4,9,9,4,13,[[156,1,1,4,5],[157,1,1,5,6],[159,1,1,6,7],[161,1,1,7,8],[163,1,1,8,9],[170,1,1,9,10],[178,1,1,10,11],[185,2,2,11,13]]],[6,2,2,13,15,[[225,1,1,13,14],[226,1,1,14,15]]],[8,2,1,15,16,[[237,2,1,15,16]]],[9,2,2,16,18,[[267,1,1,16,17],[288,1,1,17,18]]],[10,1,1,18,19,[[298,1,1,18,19]]],[11,2,2,19,21,[[321,1,1,19,20],[329,1,1,20,21]]],[13,2,2,21,23,[[372,1,1,21,22],[398,1,1,22,23]]],[17,6,6,23,29,[[457,2,2,23,25],[461,1,1,25,26],[470,1,1,26,27],[473,1,1,27,28],[475,1,1,28,29]]],[18,14,13,29,42,[[487,1,1,29,30],[495,1,1,30,31],[514,1,1,31,32],[521,2,1,32,33],[548,1,1,33,34],[554,1,1,34,35],[556,1,1,35,36],[560,1,1,36,37],[566,3,3,37,40],[575,1,1,40,41],[613,1,1,41,42]]],[19,1,1,42,43,[[658,1,1,42,43]]],[21,1,1,43,44,[[678,1,1,43,44]]],[22,17,16,44,60,[[687,1,1,44,45],[695,1,1,45,46],[708,1,1,46,47],[711,1,1,47,48],[718,2,2,48,50],[722,1,1,50,51],[726,1,1,51,52],[729,3,2,52,54],[730,1,1,54,55],[731,1,1,55,56],[737,1,1,56,57],[740,1,1,57,58],[741,2,2,58,60]]],[23,5,5,60,65,[[761,1,1,60,61],[765,1,1,61,62],[771,1,1,62,63],[776,1,1,63,64],[792,1,1,64,65]]],[25,13,11,65,76,[[805,1,1,65,66],[814,1,1,66,67],[818,1,1,67,68],[821,2,2,68,70],[823,1,1,70,71],[831,6,4,71,75],[832,1,1,75,76]]],[26,6,5,76,81,[[859,1,1,76,77],[860,5,4,77,81]]],[27,2,2,81,83,[[868,1,1,81,82],[872,1,1,82,83]]],[37,2,1,83,84,[[921,2,1,83,84]]]],[1497,1661,1936,3842,5038,5068,5130,5186,5210,5387,5574,5830,5837,6943,6961,7271,8032,8637,9027,9780,10019,11314,11883,13397,13398,13469,13729,13808,13873,14056,14152,14467,14574,14994,15108,15196,15249,15336,15339,15347,15491,16208,17301,17646,17849,17988,18247,18281,18430,18431,18545,18628,18678,18682,18706,18712,18816,18862,18871,18878,19362,19445,19601,19748,20105,20536,20728,20834,20928,20929,20982,21225,21226,21228,21229,21247,22021,22042,22051,22058,22067,22193,22243,23045]]],["+",[2,2,[[17,1,1,0,1,[[470,1,1,0,1]]],[25,1,1,1,2,[[831,1,1,1,2]]]],[13729,21226]]],["arm",[58,54,[[1,2,2,0,2,[[55,1,1,0,1],[64,1,1,1,2]]],[4,7,7,2,9,[[156,1,1,2,3],[157,1,1,3,4],[159,1,1,4,5],[161,1,1,5,6],[163,1,1,6,7],[178,1,1,7,8],[185,1,1,8,9]]],[8,2,1,9,10,[[237,2,1,9,10]]],[9,1,1,10,11,[[267,1,1,10,11]]],[10,1,1,11,12,[[298,1,1,11,12]]],[11,1,1,12,13,[[329,1,1,12,13]]],[13,2,2,13,15,[[372,1,1,13,14],[398,1,1,14,15]]],[17,3,3,15,18,[[461,1,1,15,16],[473,1,1,16,17],[475,1,1,17,18]]],[18,9,8,18,26,[[487,1,1,18,19],[521,2,1,19,20],[554,1,1,20,21],[566,3,3,21,24],[575,1,1,24,25],[613,1,1,25,26]]],[21,1,1,26,27,[[678,1,1,26,27]]],[22,15,15,27,42,[[687,1,1,27,28],[695,1,1,28,29],[708,1,1,29,30],[711,1,1,30,31],[718,2,2,31,33],[726,1,1,33,34],[729,2,2,34,36],[730,1,1,36,37],[731,1,1,37,38],[737,1,1,38,39],[740,1,1,39,40],[741,2,2,40,42]]],[23,5,5,42,47,[[761,1,1,42,43],[765,1,1,43,44],[771,1,1,44,45],[776,1,1,45,46],[792,1,1,46,47]]],[25,5,5,47,52,[[805,1,1,47,48],[821,2,2,48,50],[831,1,1,50,51],[832,1,1,51,52]]],[26,2,1,52,53,[[860,2,1,52,53]]],[37,2,1,53,54,[[921,2,1,53,54]]]],[1661,1936,5038,5068,5130,5186,5210,5574,5830,7271,8032,9027,10019,11314,11883,13469,13808,13873,14056,14574,15108,15336,15339,15347,15491,16208,17646,17849,17988,18247,18281,18430,18431,18628,18678,18682,18706,18712,18816,18862,18871,18878,19362,19445,19601,19748,20105,20536,20928,20929,21225,21247,22042,23045]]],["arms",[23,21,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[6,2,2,2,4,[[225,1,1,2,3],[226,1,1,3,4]]],[9,1,1,4,5,[[288,1,1,4,5]]],[11,1,1,5,6,[[321,1,1,5,6]]],[17,1,1,6,7,[[457,1,1,6,7]]],[18,2,2,7,9,[[495,1,1,7,8],[514,1,1,8,9]]],[19,1,1,9,10,[[658,1,1,9,10]]],[22,2,2,10,12,[[722,1,1,10,11],[729,1,1,11,12]]],[25,5,3,12,15,[[814,1,1,12,13],[831,4,2,13,15]]],[26,4,4,15,19,[[859,1,1,15,16],[860,3,3,16,19]]],[27,2,2,19,21,[[868,1,1,19,20],[872,1,1,20,21]]]],[1497,5837,6943,6961,8637,9780,13398,14152,14467,17301,18545,18678,20728,21228,21229,22021,22051,22058,22067,22193,22243]]],["holpen",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15249]]],["mighty",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13397]]],["power",[3,3,[[18,1,1,0,1,[[556,1,1,0,1]]],[25,2,2,1,3,[[818,1,1,1,2],[823,1,1,2,3]]]],[15196,20834,20982]]],["shoulder",[2,2,[[3,1,1,0,1,[[122,1,1,0,1]]],[4,1,1,1,2,[[170,1,1,1,2]]]],[3842,5387]]],["strength",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14994]]]]},{"k":"H2221","v":[["*",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[22,1,1,1,2,[[739,1,1,1,2]]]],[3034,18854]]],["sowing",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3034]]],["sown",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18854]]]]},{"k":"H2222","v":[["water",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15006]]]]},{"k":"H2223","v":[["+",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17282]]]]},{"k":"H2224","v":[["*",[18,17,[[0,1,1,0,1,[[31,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[6,1,1,3,4,[[219,1,1,3,4]]],[9,1,1,4,5,[[289,1,1,4,5]]],[11,1,1,5,6,[[315,1,1,5,6]]],[13,1,1,6,7,[[392,1,1,6,7]]],[17,1,1,7,8,[[444,1,1,7,8]]],[18,2,2,8,10,[[581,1,1,8,9],[589,1,1,9,10]]],[20,2,1,10,11,[[659,2,1,10,11]]],[22,3,3,11,14,[[736,1,1,11,12],[738,2,2,12,14]]],[31,1,1,14,15,[[892,1,1,14,15]]],[33,1,1,15,16,[[902,1,1,15,16]]],[38,1,1,16,17,[[928,1,1,16,17]]]],[959,2116,5812,6787,8657,9598,11751,13058,15593,15807,17320,18796,18822,18823,22576,22729,23140]]],["arise",[3,3,[[22,1,1,0,1,[[738,1,1,0,1]]],[31,1,1,1,2,[[892,1,1,1,2]]],[38,1,1,2,3,[[928,1,1,2,3]]]],[18823,22576,23140]]],["ariseth",[4,4,[[18,2,2,0,2,[[581,1,1,0,1],[589,1,1,1,2]]],[20,1,1,2,3,[[659,1,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[15593,15807,17320,22729]]],["arose",[1,1,[[20,1,1,0,1,[[659,1,1,0,1]]]],[17320]]],["rise",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18796]]],["risen",[2,2,[[1,1,1,0,1,[[71,1,1,0,1]]],[22,1,1,1,2,[[738,1,1,1,2]]]],[2116,18822]]],["riseth",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]]],[8657,13058]]],["rose",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[959]]],["shone",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9598]]],["up",[3,3,[[4,1,1,0,1,[[185,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[13,1,1,2,3,[[392,1,1,2,3]]]],[5812,6787,11751]]]]},{"k":"H2225","v":[["rising",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18824]]]]},{"k":"H2226","v":[["*",[21,21,[[0,5,5,0,5,[[35,3,3,0,3],[37,1,1,3,4],[45,1,1,4,5]]],[3,2,2,5,7,[[142,2,2,5,7]]],[5,4,4,7,11,[[193,3,3,7,10],[208,1,1,10,11]]],[12,8,8,11,19,[[338,2,2,11,13],[339,2,2,13,15],[341,1,1,15,16],[343,2,2,16,18],[346,1,1,18,19]]],[13,1,1,19,20,[[380,1,1,19,20]]],[15,1,1,20,21,[[423,1,1,20,21]]]],[1053,1057,1073,1149,1398,4502,4509,5977,5994,6000,6446,10289,10296,10310,10312,10409,10475,10495,10621,11484,12612]]],["Zarah",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1149]]],["Zerah",[20,20,[[0,4,4,0,4,[[35,3,3,0,3],[45,1,1,3,4]]],[3,2,2,4,6,[[142,2,2,4,6]]],[5,4,4,6,10,[[193,3,3,6,9],[208,1,1,9,10]]],[12,8,8,10,18,[[338,2,2,10,12],[339,2,2,12,14],[341,1,1,14,15],[343,2,2,15,17],[346,1,1,17,18]]],[13,1,1,18,19,[[380,1,1,18,19]]],[15,1,1,19,20,[[423,1,1,19,20]]]],[1053,1057,1073,1398,4502,4509,5977,5994,6000,6446,10289,10296,10310,10312,10409,10475,10495,10621,11484,12612]]]]},{"k":"H2227","v":[["Zarhites",[6,5,[[3,2,2,0,2,[[142,2,2,0,2]]],[5,2,1,2,3,[[193,2,1,2,3]]],[12,2,2,3,5,[[364,2,2,3,5]]]],[4502,4509,5993,11120,11122]]]]},{"k":"H2228","v":[["Zerahiah",[5,4,[[12,3,2,0,2,[[343,3,2,0,2]]],[14,2,2,2,4,[[409,1,1,2,3],[410,1,1,3,4]]]],[10460,10505,12177,12205]]]]},{"k":"H2229","v":[["*",[2,2,[[18,2,2,0,2,[[554,1,1,0,1],[567,1,1,1,2]]]],[15110,15383]]],["flood",[1,1,[[18,1,1,0,1,[[567,1,1,0,1]]]],[15383]]],["out",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15110]]]]},{"k":"H2230","v":[["*",[9,7,[[17,1,1,0,1,[[459,1,1,0,1]]],[22,7,5,1,6,[[682,1,1,1,2],[703,2,1,2,3],[706,2,1,3,4],[708,1,1,4,5],[710,1,1,5,6]]],[34,1,1,6,7,[[905,1,1,6,7]]]],[13444,17739,18122,18166,18247,18261,22778]]],["+",[3,3,[[17,1,1,0,1,[[459,1,1,0,1]]],[22,2,2,1,3,[[682,1,1,1,2],[703,1,1,2,3]]]],[13444,17739,18122]]],["flood",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18166]]],["overflowing",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22778]]],["storm",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18122]]],["tempest",[3,3,[[22,3,3,0,3,[[706,1,1,0,1],[708,1,1,1,2],[710,1,1,2,3]]]],[18166,18247,18261]]]]},{"k":"H2231","v":[["issue",[2,1,[[25,2,1,0,1,[[824,2,1,0,1]]]],[21027]]]]},{"k":"H2232","v":[["*",[56,54,[[0,6,5,0,5,[[0,4,3,0,3],[25,1,1,3,4],[46,1,1,4,5]]],[1,2,2,5,7,[[72,2,2,5,7]]],[2,9,9,7,16,[[100,1,1,7,8],[101,1,1,8,9],[108,1,1,9,10],[114,5,5,10,15],[115,1,1,15,16]]],[3,1,1,16,17,[[121,1,1,16,17]]],[4,5,4,17,21,[[163,1,1,17,18],[173,1,1,18,19],[174,2,1,19,20],[181,1,1,20,21]]],[6,2,2,21,23,[[216,1,1,21,22],[219,1,1,22,23]]],[11,1,1,23,24,[[331,1,1,23,24]]],[17,2,2,24,26,[[439,1,1,24,25],[466,1,1,25,26]]],[18,3,3,26,29,[[574,1,1,26,27],[584,1,1,27,28],[603,1,1,28,29]]],[19,2,2,29,31,[[638,1,1,29,30],[649,1,1,30,31]]],[20,2,2,31,33,[[669,2,2,31,33]]],[22,7,7,33,40,[[695,1,1,33,34],[706,1,1,34,35],[708,1,1,35,36],[710,1,1,36,37],[715,1,1,37,38],[718,1,1,38,39],[733,1,1,39,40]]],[23,6,6,40,46,[[746,1,1,40,41],[748,1,1,41,42],[756,1,1,42,43],[775,1,1,43,44],[779,1,1,44,45],[794,1,1,45,46]]],[25,1,1,46,47,[[837,1,1,46,47]]],[27,3,3,47,50,[[863,1,1,47,48],[869,1,1,48,49],[871,1,1,49,50]]],[32,1,1,50,51,[[898,1,1,50,51]]],[33,1,1,51,52,[[900,1,1,51,52]]],[36,1,1,52,53,[[909,1,1,52,53]]],[37,1,1,53,54,[[920,1,1,53,54]]]],[10,11,28,704,1443,2154,2160,3034,3046,3300,3472,3473,3480,3489,3491,3540,3820,5218,5451,5479,5702,6657,6799,10090,12938,13596,15489,15736,16120,16706,17023,17517,17519,17993,18188,18240,18279,18382,18444,18750,18967,19030,19262,19718,19830,20182,21368,22128,22201,22237,22663,22698,22846,23025]]],["+",[6,6,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,1,1,1,2,[[72,1,1,1,2]]],[4,1,1,2,3,[[163,1,1,2,3]]],[20,1,1,3,4,[[669,1,1,3,4]]],[22,1,1,4,5,[[708,1,1,4,5]]],[23,1,1,5,6,[[775,1,1,5,6]]]],[1443,2154,5218,17519,18240,19718]]],["Sow",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22237]]],["bearing",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[28]]],["conceive",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3820]]],["seed",[1,1,[[2,1,1,0,1,[[101,1,1,0,1]]]],[3046]]],["set",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17993]]],["sow",[22,22,[[2,7,7,0,7,[[108,1,1,0,1],[114,5,5,1,6],[115,1,1,6,7]]],[4,1,1,7,8,[[174,1,1,7,8]]],[11,1,1,8,9,[[331,1,1,8,9]]],[17,2,2,9,11,[[439,1,1,9,10],[466,1,1,10,11]]],[18,2,2,11,13,[[584,1,1,11,12],[603,1,1,12,13]]],[20,1,1,13,14,[[669,1,1,13,14]]],[22,3,3,14,17,[[706,1,1,14,15],[710,1,1,15,16],[715,1,1,16,17]]],[23,2,2,17,19,[[748,1,1,17,18],[779,1,1,18,19]]],[27,1,1,19,20,[[863,1,1,19,20]]],[32,1,1,20,21,[[898,1,1,20,21]]],[37,1,1,21,22,[[920,1,1,21,22]]]],[3300,3472,3473,3480,3489,3491,3540,5479,10090,12938,13596,15736,16120,17517,18188,18279,18382,19030,19830,22128,22663,23025]]],["sowed",[2,2,[[0,1,1,0,1,[[25,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]]],[704,6799]]],["sower",[2,2,[[22,1,1,0,1,[[733,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]]],[18750,20182]]],["soweth",[2,2,[[19,2,2,0,2,[[638,1,1,0,1],[649,1,1,1,2]]]],[16706,17023]]],["sown",[14,14,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]],[4,3,3,2,5,[[173,1,1,2,3],[174,1,1,3,4],[181,1,1,4,5]]],[6,1,1,5,6,[[216,1,1,5,6]]],[18,1,1,6,7,[[574,1,1,6,7]]],[22,1,1,7,8,[[718,1,1,7,8]]],[23,2,2,8,10,[[746,1,1,8,9],[756,1,1,9,10]]],[25,1,1,10,11,[[837,1,1,10,11]]],[27,1,1,11,12,[[869,1,1,11,12]]],[33,1,1,12,13,[[900,1,1,12,13]]],[36,1,1,13,14,[[909,1,1,13,14]]]],[2160,3034,5451,5479,5702,6657,15489,18444,18967,19262,21368,22201,22698,22846]]],["yielding",[3,3,[[0,3,3,0,3,[[0,3,3,0,3]]]],[10,11,28]]]]},{"k":"H2233","v":[["*",[229,205,[[0,59,48,0,48,[[0,6,3,0,3],[2,2,1,3,4],[3,1,1,4,5],[6,1,1,5,6],[7,1,1,6,7],[8,1,1,7,8],[11,1,1,8,9],[12,3,2,9,11],[14,4,4,11,15],[15,1,1,15,16],[16,7,6,16,22],[18,2,2,22,24],[20,2,2,24,26],[21,3,2,26,28],[23,2,2,28,30],[25,5,3,30,33],[27,4,3,33,36],[31,1,1,36,37],[34,1,1,37,38],[37,3,2,38,40],[45,2,2,40,42],[46,3,3,42,45],[47,3,3,45,48]]],[1,6,5,48,53,[[65,1,1,48,49],[77,1,1,49,50],[79,1,1,50,51],[81,2,1,51,52],[82,1,1,52,53]]],[2,24,22,53,75,[[100,2,2,53,55],[104,4,4,55,59],[107,2,2,59,61],[108,1,1,61,62],[109,3,3,62,65],[110,3,3,65,68],[111,4,3,68,71],[115,2,2,71,73],[116,3,2,73,75]]],[3,9,9,75,84,[[121,2,2,75,77],[127,1,1,77,78],[130,1,1,78,79],[132,1,1,79,80],[134,1,1,80,81],[136,1,1,81,82],[140,1,1,82,83],[141,1,1,83,84]]],[4,14,14,84,98,[[153,1,1,84,85],[156,1,1,85,86],[162,1,1,86,87],[163,2,2,87,89],[166,1,1,89,90],[174,1,1,90,91],[180,3,3,91,94],[182,2,2,94,96],[183,1,1,96,97],[186,1,1,97,98]]],[5,1,1,98,99,[[210,1,1,98,99]]],[7,1,1,99,100,[[235,1,1,99,100]]],[8,6,5,100,105,[[236,1,1,100,101],[237,1,1,101,102],[243,1,1,102,103],[255,2,1,103,104],[259,1,1,104,105]]],[9,3,3,105,108,[[270,1,1,105,106],[273,1,1,106,107],[288,1,1,107,108]]],[10,5,4,108,112,[[292,2,1,108,109],[301,2,2,109,111],[308,1,1,111,112]]],[11,4,4,112,116,[[317,1,1,112,113],[323,1,1,113,114],[329,1,1,114,115],[337,1,1,115,116]]],[12,2,2,116,118,[[353,1,1,116,117],[354,1,1,117,118]]],[13,2,2,118,120,[[386,1,1,118,119],[388,1,1,119,120]]],[14,2,2,120,122,[[404,1,1,120,121],[411,1,1,121,122]]],[15,3,3,122,125,[[419,1,1,122,123],[421,2,2,123,125]]],[16,5,5,125,130,[[431,1,1,125,126],[434,3,3,126,129],[435,1,1,129,130]]],[17,3,3,130,133,[[440,1,1,130,131],[456,1,1,131,132],[474,1,1,132,133]]],[18,18,17,133,150,[[495,1,1,133,134],[498,1,1,134,135],[499,3,2,135,137],[502,1,1,137,138],[514,3,3,138,141],[546,1,1,141,142],[566,3,3,142,145],[579,1,1,145,146],[582,1,1,146,147],[583,1,1,147,148],[589,1,1,148,149],[603,1,1,149,150]]],[19,1,1,150,151,[[638,1,1,150,151]]],[20,1,1,151,152,[[669,1,1,151,152]]],[22,26,23,152,175,[[679,1,1,152,153],[683,1,1,153,154],[684,1,1,154,155],[692,1,1,155,156],[695,1,1,156,157],[701,1,1,157,158],[708,1,1,158,159],[719,1,1,159,160],[721,1,1,160,161],[722,1,1,161,162],[723,2,2,162,164],[726,1,1,164,165],[731,1,1,165,166],[732,1,1,166,167],[733,1,1,167,168],[735,2,2,168,170],[737,3,1,170,171],[739,2,1,171,172],[743,2,2,172,174],[744,1,1,174,175]]],[23,21,18,175,193,[[746,1,1,175,176],[751,1,1,176,177],[766,2,2,177,179],[767,1,1,179,180],[773,1,1,180,181],[774,1,1,181,182],[775,4,3,182,185],[777,4,2,185,187],[779,2,2,187,189],[780,1,1,189,190],[785,1,1,190,191],[790,1,1,191,192],[793,1,1,192,193]]],[25,6,5,193,198,[[818,3,2,193,195],[821,1,1,195,196],[844,1,1,196,197],[845,1,1,197,198]]],[26,2,2,198,200,[[850,1,1,198,199],[858,1,1,199,200]]],[29,1,1,200,201,[[887,1,1,200,201]]],[36,1,1,201,202,[[910,1,1,201,202]]],[37,1,1,202,203,[[918,1,1,202,203]]],[38,2,2,203,205,[[926,2,2,203,205]]]],[10,11,28,70,104,162,205,214,305,333,334,363,365,373,378,391,404,405,406,407,409,416,489,491,525,526,564,565,598,651,695,696,716,777,786,787,940,1023,1127,1128,1392,1393,1439,1443,1444,1455,1462,1470,1978,2336,2403,2451,2474,3034,3035,3184,3185,3186,3200,3271,3272,3301,3320,3321,3322,3360,3362,3366,3372,3373,3382,3529,3540,3586,3600,3805,3820,4031,4132,4234,4276,4316,4453,4484,4900,5041,5201,5217,5218,5312,5479,5649,5657,5670,5714,5727,5749,5843,6479,7202,7223,7260,7384,7772,7860,8128,8192,8653,8803,9122,9147,9373,9674,9830,10003,10247,10833,10874,11594,11654,12086,12239,12481,12513,12519,12806,12861,12862,12865,12869,12976,13363,13846,14168,14201,14227,14234,14264,14475,14476,14478,14971,15330,15355,15362,15549,15612,15678,15805,16121,16709,17519,17658,17749,17782,17948,17994,18080,18240,18459,18510,18536,18580,18586,18633,18721,18726,18750,18768,18769,18821,18852,18906,18920,18944,18986,19134,19482,19484,19492,19667,19677,19718,19727,19728,19797,19801,19830,19832,19873,19958,20072,20137,20830,20838,20900,21591,21621,21740,21989,22508,22874,22988,23106,23118]]],["+",[32,31,[[0,3,3,0,3,[[15,1,1,0,1],[16,1,1,1,2],[25,1,1,2,3]]],[2,12,11,3,14,[[104,1,1,3,4],[107,2,2,4,6],[108,1,1,6,7],[109,3,3,7,10],[110,2,2,10,12],[111,2,1,12,13],[116,1,1,13,14]]],[3,2,2,14,16,[[121,1,1,14,15],[132,1,1,15,16]]],[4,1,1,16,17,[[180,1,1,16,17]]],[9,1,1,17,18,[[270,1,1,17,18]]],[10,1,1,18,19,[[301,1,1,18,19]]],[11,1,1,19,20,[[337,1,1,19,20]]],[16,2,2,20,22,[[431,1,1,20,21],[434,1,1,21,22]]],[23,3,3,22,25,[[766,1,1,22,23],[777,1,1,23,24],[785,1,1,24,25]]],[25,4,4,25,29,[[818,2,2,25,27],[844,1,1,27,28],[845,1,1,28,29]]],[26,2,2,29,31,[[850,1,1,29,30],[858,1,1,30,31]]]],[391,409,696,3200,3271,3272,3301,3320,3321,3322,3362,3366,3373,3600,3805,4234,5649,8128,9122,10247,12806,12862,19484,19801,19958,20830,20838,21591,21621,21740,21989]]],["child",[2,2,[[2,1,1,0,1,[[111,1,1,0,1]]],[8,1,1,1,2,[[236,1,1,1,2]]]],[3382,7223]]],["fruitful",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20830]]],["seed",[191,172,[[0,55,45,0,45,[[0,6,3,0,3],[2,2,1,3,4],[3,1,1,4,5],[6,1,1,5,6],[8,1,1,6,7],[11,1,1,7,8],[12,3,2,8,10],[14,4,4,10,14],[16,6,5,14,19],[18,2,2,19,21],[20,2,2,21,23],[21,3,2,23,25],[23,2,2,25,27],[25,4,3,27,30],[27,4,3,30,33],[31,1,1,33,34],[34,1,1,34,35],[37,3,2,35,37],[45,2,2,37,39],[46,3,3,39,42],[47,3,3,42,45]]],[1,6,5,45,50,[[65,1,1,45,46],[77,1,1,46,47],[79,1,1,47,48],[81,2,1,48,49],[82,1,1,49,50]]],[2,10,9,50,59,[[100,2,2,50,52],[104,3,3,52,55],[110,1,1,55,56],[111,1,1,56,57],[115,1,1,57,58],[116,2,1,58,59]]],[3,7,7,59,66,[[121,1,1,59,60],[127,1,1,60,61],[130,1,1,61,62],[134,1,1,62,63],[136,1,1,63,64],[140,1,1,64,65],[141,1,1,65,66]]],[4,13,13,66,79,[[153,1,1,66,67],[156,1,1,67,68],[162,1,1,68,69],[163,2,2,69,71],[166,1,1,71,72],[174,1,1,72,73],[180,2,2,73,75],[182,2,2,75,77],[183,1,1,77,78],[186,1,1,78,79]]],[5,1,1,79,80,[[210,1,1,79,80]]],[7,1,1,80,81,[[235,1,1,80,81]]],[8,5,4,81,85,[[237,1,1,81,82],[243,1,1,82,83],[255,2,1,83,84],[259,1,1,84,85]]],[9,2,2,85,87,[[273,1,1,85,86],[288,1,1,86,87]]],[10,4,3,87,90,[[292,2,1,87,88],[301,1,1,88,89],[308,1,1,89,90]]],[11,3,3,90,93,[[317,1,1,90,91],[323,1,1,91,92],[329,1,1,92,93]]],[12,2,2,93,95,[[353,1,1,93,94],[354,1,1,94,95]]],[13,2,2,95,97,[[386,1,1,95,96],[388,1,1,96,97]]],[14,2,2,97,99,[[404,1,1,97,98],[411,1,1,98,99]]],[15,3,3,99,102,[[419,1,1,99,100],[421,2,2,100,102]]],[16,3,3,102,105,[[434,2,2,102,104],[435,1,1,104,105]]],[17,3,3,105,108,[[440,1,1,105,106],[456,1,1,106,107],[474,1,1,107,108]]],[18,18,17,108,125,[[495,1,1,108,109],[498,1,1,109,110],[499,3,2,110,112],[502,1,1,112,113],[514,3,3,113,116],[546,1,1,116,117],[566,3,3,117,120],[579,1,1,120,121],[582,1,1,121,122],[583,1,1,122,123],[589,1,1,123,124],[603,1,1,124,125]]],[19,1,1,125,126,[[638,1,1,125,126]]],[20,1,1,126,127,[[669,1,1,126,127]]],[22,25,23,127,150,[[679,1,1,127,128],[683,1,1,128,129],[684,1,1,129,130],[692,1,1,130,131],[695,1,1,131,132],[701,1,1,132,133],[708,1,1,133,134],[719,1,1,134,135],[721,1,1,135,136],[722,1,1,136,137],[723,2,2,137,139],[726,1,1,139,140],[731,1,1,140,141],[732,1,1,141,142],[733,1,1,142,143],[735,2,2,143,145],[737,2,1,145,146],[739,2,1,146,147],[743,2,2,147,149],[744,1,1,149,150]]],[23,18,16,150,166,[[746,1,1,150,151],[751,1,1,151,152],[766,1,1,152,153],[767,1,1,153,154],[773,1,1,154,155],[774,1,1,155,156],[775,4,3,156,159],[777,3,2,159,161],[779,2,2,161,163],[780,1,1,163,164],[790,1,1,164,165],[793,1,1,165,166]]],[25,1,1,166,167,[[821,1,1,166,167]]],[29,1,1,167,168,[[887,1,1,167,168]]],[36,1,1,168,169,[[910,1,1,168,169]]],[37,1,1,169,170,[[918,1,1,169,170]]],[38,2,2,170,172,[[926,2,2,170,172]]]],[10,11,28,70,104,162,214,305,333,334,363,365,373,378,404,405,406,407,416,489,491,525,526,564,565,598,651,695,696,716,777,786,787,940,1023,1127,1128,1392,1393,1439,1443,1444,1455,1462,1470,1978,2336,2403,2451,2474,3034,3035,3184,3185,3186,3360,3372,3540,3586,3820,4031,4132,4276,4316,4453,4484,4900,5041,5201,5217,5218,5312,5479,5657,5670,5714,5727,5749,5843,6479,7202,7260,7384,7772,7860,8192,8653,8803,9147,9373,9674,9830,10003,10833,10874,11594,11654,12086,12239,12481,12513,12519,12861,12865,12869,12976,13363,13846,14168,14201,14227,14234,14264,14475,14476,14478,14971,15330,15355,15362,15549,15612,15678,15805,16121,16709,17519,17658,17749,17782,17948,17994,18080,18240,18459,18510,18536,18580,18586,18633,18721,18726,18750,18768,18769,18821,18852,18906,18920,18944,18986,19134,19482,19492,19667,19677,19718,19727,19728,19797,19801,19830,19832,19873,20072,20137,20900,22508,22874,22988,23106,23118]]],["seed's",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18821]]],["seedtime",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[205]]],["time",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3529]]]]},{"k":"H2234","v":[["seed",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21801]]]]},{"k":"H2235","v":[["pulse",[2,2,[[26,2,2,0,2,[[850,2,2,0,2]]]],[21749,21753]]]]},{"k":"H2236","v":[["*",[35,33,[[1,6,6,0,6,[[58,2,2,0,2],[73,2,2,2,4],[78,2,2,4,6]]],[2,12,12,6,18,[[90,2,2,6,8],[92,3,3,8,11],[96,2,2,11,13],[97,2,2,13,15],[98,2,2,15,17],[106,1,1,17,18]]],[3,3,3,18,21,[[134,1,1,18,19],[135,2,2,19,21]]],[11,2,2,21,23,[[328,2,2,21,23]]],[13,6,4,23,27,[[395,3,1,23,24],[396,1,1,24,25],[400,1,1,25,26],[401,1,1,26,27]]],[17,1,1,27,28,[[437,1,1,27,28]]],[22,1,1,28,29,[[706,1,1,28,29]]],[25,3,3,29,32,[[811,1,1,29,30],[837,1,1,30,31],[844,1,1,31,32]]],[27,1,1,32,33,[[868,1,1,32,33]]]],[1750,1752,2183,2185,2352,2356,2750,2756,2780,2786,2791,2881,2893,2936,2941,2965,2971,3241,4274,4302,4309,9976,9978,11813,11843,11937,11977,12903,18189,20635,21384,21590,22187]]],["+",[13,13,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,9,9,1,10,[[90,2,2,1,3],[92,3,3,3,6],[96,1,1,6,7],[97,2,2,7,9],[106,1,1,9,10]]],[3,1,1,10,11,[[134,1,1,10,11]]],[11,1,1,11,12,[[328,1,1,11,12]]],[13,1,1,12,13,[[396,1,1,12,13]]]],[2356,2750,2756,2780,2786,2791,2893,2936,2941,3241,4274,9976,11843]]],["scatter",[2,2,[[22,1,1,0,1,[[706,1,1,0,1]]],[25,1,1,1,2,[[811,1,1,1,2]]]],[18189,20635]]],["sprinkle",[6,6,[[1,2,2,0,2,[[58,1,1,0,1],[78,1,1,1,2]]],[2,1,1,2,3,[[96,1,1,2,3]]],[11,1,1,3,4,[[328,1,1,3,4]]],[25,2,2,4,6,[[837,1,1,4,5],[844,1,1,5,6]]]],[1750,2352,2881,9978,21384,21590]]],["sprinkled",[12,10,[[1,3,3,0,3,[[58,1,1,0,1],[73,2,2,1,3]]],[2,2,2,3,5,[[98,2,2,3,5]]],[3,2,2,5,7,[[135,2,2,5,7]]],[13,4,2,7,9,[[395,3,1,7,8],[401,1,1,8,9]]],[17,1,1,9,10,[[437,1,1,9,10]]]],[1752,2183,2185,2965,2971,4302,4309,11813,11977,12903]]],["strowed",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11937]]],["there",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22187]]]]},{"k":"H2237","v":[["+",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9638]]]]},{"k":"H2238","v":[["Zeresh",[4,3,[[16,4,3,0,3,[[430,2,2,0,2],[431,2,1,2,3]]]],[12789,12793,12806]]]]},{"k":"H2239","v":[["span",[7,5,[[1,4,2,0,2,[[77,2,1,0,1],[88,2,1,1,2]]],[8,1,1,2,3,[[252,1,1,2,3]]],[22,1,1,3,4,[[718,1,1,3,4]]],[25,1,1,4,5,[[844,1,1,4,5]]]],[2309,2673,7622,18432,21585]]]]},{"k":"H2240","v":[["*",[4,4,[[14,2,2,0,2,[[404,1,1,0,1],[412,1,1,1,2]]],[15,2,2,2,4,[[419,1,1,2,3],[422,1,1,3,4]]]],[12035,12279,12433,12563]]],["Zatthu",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12563]]],["Zattu",[3,3,[[14,2,2,0,2,[[404,1,1,0,1],[412,1,1,1,2]]],[15,1,1,2,3,[[419,1,1,2,3]]]],[12035,12279,12433]]]]},{"k":"H2241","v":[["Zetham",[2,2,[[12,2,2,0,2,[[360,1,1,0,1],[363,1,1,1,2]]]],[10991,11099]]]]},{"k":"H2242","v":[["Zethar",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12712]]]]},{"k":"H2243","v":[["bosom",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13621]]]]},{"k":"H2244","v":[["*",[33,33,[[0,3,3,0,3,[[2,2,2,0,2],[30,1,1,2,3]]],[5,5,5,3,8,[[192,2,2,3,5],[196,3,3,5,8]]],[6,1,1,8,9,[[219,1,1,8,9]]],[8,6,6,9,15,[[245,1,1,9,10],[248,1,1,10,11],[249,2,2,11,13],[254,1,1,13,14],[258,1,1,14,15]]],[9,1,1,15,16,[[283,1,1,15,16]]],[10,2,2,16,18,[[308,2,2,16,18]]],[11,2,2,18,20,[[318,1,1,18,19],[323,1,1,19,20]]],[12,1,1,20,21,[[358,1,1,20,21]]],[13,3,3,21,24,[[384,1,1,21,22],[388,2,2,22,24]]],[17,5,5,24,29,[[440,1,1,24,25],[459,1,1,25,26],[464,2,2,26,28],[473,1,1,28,29]]],[22,2,2,29,31,[[720,1,1,29,30],[727,1,1,30,31]]],[26,1,1,31,32,[[859,1,1,31,32]]],[29,1,1,32,33,[[887,1,1,32,33]]]],[63,65,900,5966,5974,6080,6081,6091,6759,7440,7491,7519,7530,7708,7833,8458,9345,9354,9703,9832,10954,11566,11653,11656,12972,13440,13540,13542,13823,18502,18638,22022,22498]]],["+",[3,3,[[5,2,2,0,2,[[192,2,2,0,2]]],[11,1,1,2,3,[[318,1,1,2,3]]]],[5966,5974,9703]]],["held",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13542]]],["hid",[12,12,[[5,2,2,0,2,[[196,2,2,0,2]]],[9,1,1,2,3,[[283,1,1,2,3]]],[10,2,2,3,5,[[308,2,2,3,5]]],[11,1,1,5,6,[[323,1,1,5,6]]],[13,2,2,6,8,[[388,2,2,6,8]]],[17,2,2,8,10,[[440,1,1,8,9],[473,1,1,9,10]]],[22,2,2,10,12,[[720,1,1,10,11],[727,1,1,11,12]]]],[6081,6091,8458,9345,9354,9832,11653,11656,12972,13823,18502,18638]]],["hide",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13440]]],["himself",[3,3,[[6,1,1,0,1,[[219,1,1,0,1]]],[8,2,2,1,3,[[245,1,1,1,2],[258,1,1,2,3]]]],[6759,7440,7833]]],["myself",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[65]]],["secretly",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[900]]],["themselves",[9,9,[[0,1,1,0,1,[[2,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[8,3,3,2,5,[[248,1,1,2,3],[249,2,2,3,5]]],[12,1,1,5,6,[[358,1,1,5,6]]],[17,1,1,6,7,[[464,1,1,6,7]]],[26,1,1,7,8,[[859,1,1,7,8]]],[29,1,1,8,9,[[887,1,1,8,9]]]],[63,6080,7491,7519,7530,10954,13540,22022,22498]]],["thyself",[2,2,[[8,1,1,0,1,[[254,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[7708,11566]]]]},{"k":"H2245","v":[["loved",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5813]]]]},{"k":"H2246","v":[["Hobab",[2,2,[[3,1,1,0,1,[[126,1,1,0,1]]],[6,1,1,1,2,[[214,1,1,1,2]]]],[4017,6610]]]]},{"k":"H2247","v":[["*",[5,5,[[5,1,1,0,1,[[188,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]],[11,1,1,2,3,[[319,1,1,2,3]]],[22,1,1,3,4,[[704,1,1,3,4]]],[23,1,1,4,5,[[793,1,1,4,5]]]],[5885,9505,9719,18150,20137]]],["hide",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18150]]],["himself",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20137]]],["themselves",[1,1,[[11,1,1,0,1,[[319,1,1,0,1]]]],[9719]]],["thyself",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9505]]],["yourselves",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5885]]]]},{"k":"H2248","v":[["hurt",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21927]]]]},{"k":"H2249","v":[["Habor",[3,3,[[11,2,2,0,2,[[329,1,1,0,1],[330,1,1,1,2]]],[12,1,1,2,3,[[342,1,1,2,3]]]],[9989,10035,10454]]]]},{"k":"H2250","v":[["*",[7,6,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,2,1,1,2,[[70,2,1,1,2]]],[18,1,1,2,3,[[515,1,1,2,3]]],[19,1,1,3,4,[[647,1,1,3,4]]],[22,2,2,4,6,[[679,1,1,4,5],[731,1,1,5,6]]]],[102,2102,14495,16984,17660,18716]]],["blueness",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16984]]],["bruises",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17660]]],["hurt",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[102]]],["stripe",[2,1,[[1,2,1,0,1,[[70,2,1,0,1]]]],[2102]]],["stripes",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18716]]],["wounds",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14495]]]]},{"k":"H2251","v":[["*",[5,5,[[4,1,1,0,1,[[176,1,1,0,1]]],[6,1,1,1,2,[[216,1,1,1,2]]],[7,1,1,2,3,[[233,1,1,2,3]]],[22,2,2,3,5,[[705,1,1,3,4],[706,1,1,4,5]]]],[5545,6665,7166,18163,18191]]],["+",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7166]]],["beatest",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5545]]],["off",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18163]]],["out",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18191]]],["threshed",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6665]]]]},{"k":"H2252","v":[["Habaiah",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12088,12483]]]]},{"k":"H2253","v":[["hiding",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22772]]]]},{"k":"H2254","v":[["*",[30,23,[[1,2,1,0,1,[[71,2,1,0,1]]],[4,6,2,1,3,[[176,6,2,1,3]]],[15,2,1,3,4,[[413,2,1,3,4]]],[17,5,5,4,9,[[452,1,1,4,5],[457,1,1,5,6],[459,2,2,6,8],[469,1,1,8,9]]],[18,1,1,9,10,[[484,1,1,9,10]]],[19,3,3,10,13,[[640,1,1,10,11],[647,1,1,11,12],[654,1,1,12,13]]],[20,1,1,13,14,[[663,1,1,13,14]]],[21,3,2,14,16,[[672,1,1,14,15],[678,2,1,15,16]]],[22,4,4,16,20,[[688,1,1,16,17],[691,1,1,17,18],[710,1,1,18,19],[732,1,1,19,20]]],[25,1,1,20,21,[[819,1,1,20,21]]],[29,1,1,21,22,[[880,1,1,21,22]]],[32,1,1,22,23,[[894,1,1,22,23]]]],[2139,5531,5542,12303,13261,13395,13439,13445,13714,14009,16760,16970,17182,17403,17569,17645,17877,17911,18266,18739,20865,22387,22605]]],["+",[6,4,[[1,2,1,0,1,[[71,2,1,0,1]]],[15,2,1,1,2,[[413,2,1,1,2]]],[17,1,1,2,3,[[459,1,1,2,3]]],[20,1,1,3,4,[[663,1,1,3,4]]]],[2139,12303,13439,17403]]],["corrupt",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13261]]],["destroy",[4,4,[[22,3,3,0,3,[[691,1,1,0,1],[710,1,1,1,2],[732,1,1,2,3]]],[32,1,1,3,4,[[894,1,1,3,4]]]],[17911,18266,18739,22605]]],["destroyed",[2,2,[[19,1,1,0,1,[[640,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[16760,17877]]],["forth",[2,1,[[21,2,1,0,1,[[678,2,1,0,1]]]],[17645]]],["offend",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13714]]],["pledge",[8,7,[[4,3,2,0,2,[[176,3,2,0,2]]],[17,2,2,2,4,[[457,1,1,2,3],[459,1,1,3,4]]],[19,2,2,4,6,[[647,1,1,4,5],[654,1,1,5,6]]],[29,1,1,6,7,[[880,1,1,6,7]]]],[5531,5542,13395,13445,16970,17182,22387]]],["spoil",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17569]]],["take",[2,2,[[4,2,2,0,2,[[176,2,2,0,2]]]],[5531,5542]]],["taketh",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5531]]],["travaileth",[1,1,[[18,1,1,0,1,[[484,1,1,0,1]]]],[14009]]],["withholden",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20865]]]]},{"k":"H2255","v":[["*",[6,6,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,5,5,1,6,[[851,1,1,1,2],[853,1,1,2,3],[855,2,2,3,5],[856,1,1,5,6]]]],[12163,21802,21860,21927,21931,21947]]],["destroy",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[12163,21860]]],["destroyed",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[855,1,1,1,2],[856,1,1,2,3]]]],[21802,21931,21947]]],["hurt",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21927]]]]},{"k":"H2256","v":[["*",[62,60,[[4,4,4,0,4,[[155,3,3,0,3],[184,1,1,3,4]]],[5,5,5,4,9,[[188,1,1,4,5],[203,2,2,5,7],[205,2,2,7,9]]],[8,2,2,9,11,[[245,2,2,9,11]]],[9,5,3,11,14,[[274,3,1,11,12],[283,1,1,12,13],[288,1,1,13,14]]],[10,3,3,14,17,[[294,1,1,14,15],[310,2,2,15,17]]],[12,1,1,17,18,[[353,1,1,17,18]]],[16,1,1,18,19,[[426,1,1,18,19]]],[17,5,5,19,24,[[453,1,1,19,20],[456,1,1,20,21],[471,1,1,21,22],[474,1,1,22,23],[476,1,1,23,24]]],[18,8,8,24,32,[[493,1,1,24,25],[495,2,2,25,27],[555,1,1,27,28],[582,1,1,28,29],[593,1,1,29,30],[596,1,1,30,31],[617,1,1,31,32]]],[19,1,1,32,33,[[632,1,1,32,33]]],[20,1,1,33,34,[[670,1,1,33,34]]],[22,6,6,34,40,[[683,1,1,34,35],[691,1,1,35,36],[704,1,1,36,37],[711,2,2,37,39],[744,1,1,39,40]]],[23,7,7,40,47,[[757,1,1,40,41],[766,1,1,41,42],[782,4,4,42,46],[793,1,1,46,47]]],[25,2,2,47,49,[[828,1,1,47,48],[848,1,1,48,49]]],[27,2,2,49,51,[[872,1,1,49,50],[874,1,1,50,51]]],[29,1,1,51,52,[[885,1,1,51,52]]],[32,2,2,52,54,[[894,2,2,52,54]]],[35,3,3,54,57,[[907,3,3,54,57]]],[37,3,3,57,60,[[912,1,1,57,58],[921,2,2,58,60]]]],[4979,4988,4989,5767,5884,6280,6289,6330,6350,7423,7428,8211,8462,8608,8857,9439,9440,10838,12708,13286,13372,13744,13837,13889,14098,14122,14123,15168,15617,15851,15959,16268,16539,17529,17757,17914,18147,18299,18302,18929,19287,19477,19901,19906,19907,19908,20151,21145,21692,22244,22279,22481,22600,22605,22810,22811,22812,22900,23035,23042]]],["+",[2,2,[[5,2,2,0,2,[[205,2,2,0,2]]]],[6330,6350]]],["Bands",[2,2,[[37,2,2,0,2,[[921,2,2,0,2]]]],[23035,23042]]],["bands",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15959]]],["coast",[3,3,[[35,3,3,0,3,[[907,3,3,0,3]]]],[22810,22811,22812]]],["company",[2,2,[[8,2,2,0,2,[[245,2,2,0,2]]]],[7423,7428]]],["cord",[4,4,[[5,1,1,0,1,[[188,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[20,1,1,2,3,[[670,1,1,2,3]]],[32,1,1,3,4,[[894,1,1,3,4]]]],[5884,13889,17529,22600]]],["cords",[12,12,[[16,1,1,0,1,[[426,1,1,0,1]]],[17,1,1,1,2,[[471,1,1,1,2]]],[18,1,1,2,3,[[617,1,1,2,3]]],[19,1,1,3,4,[[632,1,1,3,4]]],[22,2,2,4,6,[[683,1,1,4,5],[711,1,1,5,6]]],[23,4,4,6,10,[[782,4,4,6,10]]],[25,1,1,10,11,[[828,1,1,10,11]]],[27,1,1,11,12,[[872,1,1,11,12]]]],[12708,13744,16268,16539,17757,18299,19901,19906,19907,19908,21145,22244]]],["country",[1,1,[[4,1,1,0,1,[[155,1,1,0,1]]]],[4989]]],["destruction",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22605]]],["line",[5,4,[[9,2,1,0,1,[[274,2,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]],[29,1,1,2,3,[[885,1,1,2,3]]],[37,1,1,3,4,[[912,1,1,3,4]]]],[8211,15168,22481,22900]]],["lines",[2,2,[[9,1,1,0,1,[[274,1,1,0,1]]],[18,1,1,1,2,[[493,1,1,1,2]]]],[8211,14098]]],["lot",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[18,1,1,2,3,[[582,1,1,2,3]]]],[5767,10838,15617]]],["pain",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18929]]],["pangs",[2,2,[[22,1,1,0,1,[[704,1,1,0,1]]],[23,1,1,1,2,[[766,1,1,1,2]]]],[18147,19477]]],["portion",[1,1,[[5,1,1,0,1,[[203,1,1,0,1]]]],[6289]]],["portions",[2,2,[[5,1,1,0,1,[[203,1,1,0,1]]],[25,1,1,1,2,[[848,1,1,1,2]]]],[6280,21692]]],["region",[3,3,[[4,2,2,0,2,[[155,2,2,0,2]]],[10,1,1,2,3,[[294,1,1,2,3]]]],[4979,4988,8857]]],["ropes",[3,3,[[9,1,1,0,1,[[283,1,1,0,1]]],[10,2,2,1,3,[[310,2,2,1,3]]]],[8462,9439,9440]]],["snare",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13286]]],["sorrows",[10,10,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,2,2,1,3,[[456,1,1,1,2],[474,1,1,2,3]]],[18,3,3,3,6,[[495,2,2,3,5],[593,1,1,5,6]]],[22,1,1,6,7,[[691,1,1,6,7]]],[23,2,2,7,9,[[757,1,1,7,8],[793,1,1,8,9]]],[27,1,1,9,10,[[874,1,1,9,10]]]],[8608,13372,13837,14122,14123,15851,17914,19287,20151,22279]]],["tacklings",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18302]]]]},{"k":"H2257","v":[["*",[3,3,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,2,2,1,3,[[852,1,1,1,2],[855,1,1,2,3]]]],[12132,21832,21928]]],["damage",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12132]]],["hurt",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[855,1,1,1,2]]]],[21832,21928]]]]},{"k":"H2258","v":[["pledge",[4,4,[[25,4,4,0,4,[[819,3,3,0,3],[834,1,1,3,4]]]],[20856,20861,20865,21295]]]]},{"k":"H2259","v":[["*",[5,5,[[25,4,4,0,4,[[828,4,4,0,4]]],[31,1,1,4,5,[[889,1,1,4,5]]]],[21129,21148,21149,21150,22537]]],["+",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22537]]],["pilots",[4,4,[[25,4,4,0,4,[[828,4,4,0,4]]]],[21129,21148,21149,21150]]]]},{"k":"H2260","v":[["mast",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17078]]]]},{"k":"H2261","v":[["rose",[2,2,[[21,1,1,0,1,[[672,1,1,0,1]]],[22,1,1,1,2,[[713,1,1,1,2]]]],[17555,18321]]]]},{"k":"H2262","v":[["Habaziniah",[1,1,[[23,1,1,0,1,[[779,1,1,0,1]]]],[19826]]]]},{"k":"H2263","v":[["*",[13,12,[[0,3,3,0,3,[[28,1,1,0,1],[32,1,1,1,2],[47,1,1,2,3]]],[11,1,1,3,4,[[316,1,1,3,4]]],[17,1,1,4,5,[[459,1,1,4,5]]],[19,2,2,5,7,[[631,1,1,5,6],[632,1,1,6,7]]],[20,3,2,7,9,[[661,2,1,7,8],[662,1,1,8,9]]],[21,2,2,9,11,[[672,1,1,9,10],[678,1,1,10,11]]],[24,1,1,11,12,[[800,1,1,11,12]]]],[808,964,1461,9619,13444,16498,16537,17364,17386,17560,17643,20425]]],["+",[2,2,[[20,2,2,0,2,[[661,1,1,0,1],[662,1,1,1,2]]]],[17364,17386]]],["embrace",[8,8,[[11,1,1,0,1,[[316,1,1,0,1]]],[17,1,1,1,2,[[459,1,1,1,2]]],[19,2,2,2,4,[[631,1,1,2,3],[632,1,1,3,4]]],[20,1,1,4,5,[[661,1,1,4,5]]],[21,2,2,5,7,[[672,1,1,5,6],[678,1,1,6,7]]],[24,1,1,7,8,[[800,1,1,7,8]]]],[9619,13444,16498,16537,17364,17560,17643,20425]]],["embraced",[3,3,[[0,3,3,0,3,[[28,1,1,0,1],[32,1,1,1,2],[47,1,1,2,3]]]],[808,964,1461]]]]},{"k":"H2264","v":[["folding",[2,2,[[19,2,2,0,2,[[633,1,1,0,1],[651,1,1,1,2]]]],[16550,17112]]]]},{"k":"H2265","v":[["Habakkuk",[2,2,[[34,2,2,0,2,[[903,1,1,0,1],[905,1,1,1,2]]]],[22732,22769]]]]},{"k":"H2266","v":[["*",[29,25,[[0,1,1,0,1,[[13,1,1,0,1]]],[1,14,10,1,11,[[75,5,4,1,5],[77,2,1,5,6],[85,5,4,6,10],[88,2,1,10,11]]],[4,1,1,11,12,[[170,1,1,11,12]]],[13,3,3,12,15,[[386,3,3,12,15]]],[17,1,1,15,16,[[451,1,1,15,16]]],[18,3,3,16,19,[[535,1,1,16,17],[571,1,1,17,18],[599,1,1,18,19]]],[20,1,1,19,20,[[667,1,1,19,20]]],[25,2,2,20,22,[[802,2,2,20,22]]],[26,2,2,22,24,[[860,2,2,22,24]]],[27,1,1,24,25,[[865,1,1,24,25]]]],[339,2238,2241,2244,2246,2300,2576,2579,2582,2584,2668,5395,11622,11623,11624,13242,14784,15451,16092,17479,20473,20475,22042,22059,22150]]],["+",[10,10,[[1,7,7,0,7,[[75,3,3,0,3],[85,4,4,3,7]]],[4,1,1,7,8,[[170,1,1,7,8]]],[18,2,2,8,10,[[535,1,1,8,9],[599,1,1,9,10]]]],[2241,2244,2246,2576,2579,2582,2584,5395,14784,16092]]],["coupled",[2,2,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]]],[2238,2576]]],["fellowship",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15451]]],["himself",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11622]]],["joined",[6,6,[[1,1,1,0,1,[[77,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]],[20,1,1,2,3,[[667,1,1,2,3]]],[25,2,2,3,5,[[802,2,2,3,5]]],[27,1,1,5,6,[[865,1,1,5,6]]]],[2300,11623,17479,20473,20475,22150]]],["league",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22059]]],["thyself",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11624]]],["together",[6,5,[[0,1,1,0,1,[[13,1,1,0,1]]],[1,4,3,1,4,[[75,1,1,1,2],[77,1,1,2,3],[88,2,1,3,4]]],[26,1,1,4,5,[[860,1,1,4,5]]]],[339,2238,2300,2668,22042]]],["up",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13242]]]]},{"k":"H2267","v":[["*",[7,7,[[4,1,1,0,1,[[170,1,1,0,1]]],[18,1,1,1,2,[[535,1,1,1,2]]],[19,2,2,2,4,[[648,1,1,2,3],[652,1,1,3,4]]],[22,2,2,4,6,[[725,2,2,4,6]]],[27,1,1,6,7,[[867,1,1,6,7]]]],[5395,14784,16993,17137,18608,18611,22176]]],["+",[2,2,[[4,1,1,0,1,[[170,1,1,0,1]]],[18,1,1,1,2,[[535,1,1,1,2]]]],[5395,14784]]],["company",[1,1,[[27,1,1,0,1,[[867,1,1,0,1]]]],[22176]]],["enchantments",[2,2,[[22,2,2,0,2,[[725,2,2,0,2]]]],[18608,18611]]],["wide",[2,2,[[19,2,2,0,2,[[648,1,1,0,1],[652,1,1,1,2]]]],[16993,17137]]]]},{"k":"H2268","v":[["*",[11,10,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[6,5,4,2,6,[[214,4,3,2,5],[215,1,1,5,6]]],[12,4,4,6,10,[[341,1,1,6,7],[344,2,2,7,9],[345,1,1,9,10]]]],[1403,4534,6610,6616,6620,6647,10403,10566,10567,10592]]],["Heber",[10,9,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[6,4,3,2,5,[[214,3,2,2,4],[215,1,1,4,5]]],[12,4,4,5,9,[[341,1,1,5,6],[344,2,2,6,8],[345,1,1,8,9]]]],[1403,4534,6610,6616,6647,10403,10566,10567,10592]]],["Heber's",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6620]]]]},{"k":"H2269","v":[["*",[3,3,[[26,3,3,0,3,[[851,3,3,0,3]]]],[21771,21775,21776]]],["companions",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21775]]],["fellows",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21771,21776]]]]},{"k":"H2270","v":[["*",[12,11,[[6,1,1,0,1,[[230,1,1,0,1]]],[18,2,2,1,3,[[522,1,1,1,2],[596,1,1,2,3]]],[19,1,1,3,4,[[655,1,1,3,4]]],[20,1,1,4,5,[[662,1,1,4,5]]],[21,2,2,5,7,[[671,1,1,5,6],[678,1,1,6,7]]],[22,2,2,7,9,[[679,1,1,7,8],[722,1,1,8,9]]],[25,3,2,9,11,[[838,3,2,9,11]]]],[7065,14604,15961,17220,17391,17544,17653,17677,18544,21413,21416]]],["+",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14604]]],["companion",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[19,1,1,1,2,[[655,1,1,1,2]]]],[15961,17220]]],["companions",[5,4,[[21,2,2,0,2,[[671,1,1,0,1],[678,1,1,1,2]]],[22,1,1,2,3,[[679,1,1,2,3]]],[25,2,1,3,4,[[838,2,1,3,4]]]],[17544,17653,17677,21413]]],["fellow",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17391]]],["fellows",[2,2,[[22,1,1,0,1,[[722,1,1,0,1]]],[25,1,1,1,2,[[838,1,1,1,2]]]],[18544,21416]]],["together",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7065]]]]},{"k":"H2271","v":[["companions",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13894]]]]},{"k":"H2272","v":[["spots",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19289]]]]},{"k":"H2273","v":[["fellows",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21953]]]]},{"k":"H2274","v":[["company",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13691]]]]},{"k":"H2275","v":[["*",[71,66,[[0,5,5,0,5,[[12,1,1,0,1],[22,2,2,1,3],[34,1,1,3,4],[36,1,1,4,5]]],[1,1,1,5,6,[[55,1,1,5,6]]],[3,3,2,6,8,[[119,1,1,6,7],[129,2,1,7,8]]],[5,15,15,8,23,[[196,5,5,8,13],[197,1,1,13,14],[198,1,1,14,15],[200,3,3,15,18],[201,2,2,18,20],[206,1,1,20,21],[207,2,2,21,23]]],[6,4,3,23,26,[[211,3,2,23,25],[226,1,1,25,26]]],[8,1,1,26,27,[[265,1,1,26,27]]],[9,23,21,27,48,[[268,4,4,27,31],[269,7,7,31,38],[270,4,3,38,41],[271,5,4,41,45],[281,3,3,45,48]]],[10,1,1,48,49,[[292,1,1,48,49]]],[12,17,16,49,65,[[339,2,2,49,51],[340,2,2,51,53],[343,4,4,53,57],[348,3,2,57,59],[349,2,2,59,61],[352,1,1,61,62],[360,2,2,62,64],[366,1,1,64,65]]],[13,1,1,65,66,[[377,1,1,65,66]]]],[336,573,590,1038,1097,1673,3711,4097,6067,6069,6087,6100,6103,6128,6140,6200,6201,6202,6215,6256,6379,6392,6394,6519,6529,6952,8009,8050,8052,8060,8081,8083,8086,8100,8101,8103,8108,8113,8121,8128,8132,8133,8135,8137,8145,8396,8398,8399,8781,10348,10349,10362,10365,10456,10472,10509,10511,10674,10676,10743,10758,10800,10995,11002,11191,11424]]],["+",[3,3,[[5,1,1,0,1,[[196,1,1,0,1]]],[9,2,2,1,3,[[269,1,1,1,2],[271,1,1,2,3]]]],[6087,8100,8145]]],["Hebron",[68,63,[[0,5,5,0,5,[[12,1,1,0,1],[22,2,2,1,3],[34,1,1,3,4],[36,1,1,4,5]]],[1,1,1,5,6,[[55,1,1,5,6]]],[3,3,2,6,8,[[119,1,1,6,7],[129,2,1,7,8]]],[5,14,14,8,22,[[196,4,4,8,12],[197,1,1,12,13],[198,1,1,13,14],[200,3,3,14,17],[201,2,2,17,19],[206,1,1,19,20],[207,2,2,20,22]]],[6,4,3,22,25,[[211,3,2,22,24],[226,1,1,24,25]]],[8,1,1,25,26,[[265,1,1,25,26]]],[9,21,19,26,45,[[268,4,4,26,30],[269,6,6,30,36],[270,4,3,36,39],[271,4,3,39,42],[281,3,3,42,45]]],[10,1,1,45,46,[[292,1,1,45,46]]],[12,17,16,46,62,[[339,2,2,46,48],[340,2,2,48,50],[343,4,4,50,54],[348,3,2,54,56],[349,2,2,56,58],[352,1,1,58,59],[360,2,2,59,61],[366,1,1,61,62]]],[13,1,1,62,63,[[377,1,1,62,63]]]],[336,573,590,1038,1097,1673,3711,4097,6067,6069,6100,6103,6128,6140,6200,6201,6202,6215,6256,6379,6392,6394,6519,6529,6952,8009,8050,8052,8060,8081,8083,8086,8101,8103,8108,8113,8121,8128,8132,8133,8135,8137,8396,8398,8399,8781,10348,10349,10362,10365,10456,10472,10509,10511,10674,10676,10743,10758,10800,10995,11002,11191,11424]]]]},{"k":"H2276","v":[["Hebronites",[6,5,[[3,2,2,0,2,[[119,1,1,0,1],[142,1,1,1,2]]],[12,4,3,2,5,[[363,4,3,2,5]]]],[3719,4547,11100,11107,11108]]]]},{"k":"H2277","v":[["Heberites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4534]]]]},{"k":"H2278","v":[["companion",[1,1,[[38,1,1,0,1,[[926,1,1,0,1]]]],[23117]]]]},{"k":"H2279","v":[["*",[4,3,[[1,4,3,0,3,[[75,3,2,0,2],[85,1,1,2,3]]]],[2239,2245,2583]]],["coupleth",[2,2,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]]],[2245,2583]]],["coupling",[2,2,[[1,2,2,0,2,[[75,2,2,0,2]]]],[2239,2245]]]]},{"k":"H2280","v":[["*",[33,30,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,1,1,1,2,[[78,1,1,1,2]]],[2,1,1,2,3,[[97,1,1,2,3]]],[3,1,1,3,4,[[138,1,1,3,4]]],[6,1,1,4,5,[[229,1,1,4,5]]],[9,3,3,5,8,[[282,1,1,5,6],[283,1,1,6,7],[285,1,1,7,8]]],[10,6,4,8,12,[[292,1,1,8,9],[303,5,3,9,12]]],[11,1,1,12,13,[[316,1,1,12,13]]],[17,4,4,13,17,[[440,1,1,13,14],[463,1,1,14,15],[469,1,1,15,16],[475,1,1,16,17]]],[18,1,1,17,18,[[624,1,1,17,18]]],[22,4,4,18,22,[[679,1,1,18,19],[681,1,1,19,20],[708,1,1,20,21],[739,1,1,21,22]]],[25,7,6,22,28,[[817,1,1,22,23],[825,1,1,23,24],[828,1,1,24,25],[831,2,1,25,26],[835,2,2,26,28]]],[27,1,1,28,29,[[867,1,1,28,29]]],[31,1,1,29,30,[[890,1,1,29,30]]]],[550,2345,2930,4396,7034,8427,8472,8537,8810,9197,9207,9211,9627,12969,13515,13700,13877,16354,17660,17714,18243,18844,20772,21073,21145,21225,21317,21329,22168,22553]]],["+",[4,4,[[0,1,1,0,1,[[21,1,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]],[10,1,1,2,3,[[292,1,1,2,3]]],[22,1,1,3,4,[[708,1,1,3,4]]]],[550,4396,8810,18243]]],["Saddle",[2,2,[[10,2,2,0,2,[[303,2,2,0,2]]]],[9197,9211]]],["about",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20772]]],["bind",[3,3,[[17,1,1,0,1,[[475,1,1,0,1]]],[25,2,2,1,3,[[825,1,1,1,2],[831,1,1,2,3]]]],[13877,21073,21225]]],["bindeth",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13515]]],["bound",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21145]]],["govern",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13700]]],["healer",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17714]]],["put",[2,2,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]]],[2345,2930]]],["saddle",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8537]]],["saddled",[7,7,[[6,1,1,0,1,[[229,1,1,0,1]]],[9,2,2,1,3,[[282,1,1,1,2],[283,1,1,2,3]]],[10,3,3,3,6,[[303,3,3,3,6]]],[11,1,1,6,7,[[316,1,1,6,7]]]],[7034,8427,8472,9197,9207,9211,9627]]],["up",[8,8,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,1,1,1,2,[[624,1,1,1,2]]],[22,2,2,2,4,[[679,1,1,2,3],[739,1,1,3,4]]],[25,3,3,4,7,[[831,1,1,4,5],[835,2,2,5,7]]],[27,1,1,7,8,[[867,1,1,7,8]]]],[12969,16354,17660,18844,21225,21317,21329,22168]]],["wrapped",[1,1,[[31,1,1,0,1,[[890,1,1,0,1]]]],[22553]]]]},{"k":"H2281","v":[["pans",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10646]]]]},{"k":"H2282","v":[["*",[62,55,[[1,12,10,0,10,[[59,1,1,0,1],[61,1,1,1,2],[62,1,1,2,3],[72,4,3,3,6],[81,1,1,6,7],[83,4,3,7,10]]],[2,4,4,10,14,[[112,4,4,10,14]]],[3,2,2,14,16,[[144,1,1,14,15],[145,1,1,15,16]]],[4,7,5,16,21,[[168,6,4,16,20],[183,1,1,20,21]]],[6,1,1,21,22,[[231,1,1,21,22]]],[10,5,4,22,26,[[298,2,2,22,24],[302,3,2,24,26]]],[13,9,7,26,33,[[371,1,1,26,27],[373,2,2,27,29],[374,3,1,29,30],[396,2,2,30,32],[401,1,1,32,33]]],[14,2,2,33,35,[[405,1,1,33,34],[408,1,1,34,35]]],[15,2,2,35,37,[[420,2,2,35,37]]],[18,2,2,37,39,[[558,1,1,37,38],[595,1,1,38,39]]],[22,2,2,39,41,[[707,1,1,39,40],[708,1,1,40,41]]],[25,5,5,41,46,[[846,4,4,41,45],[847,1,1,45,46]]],[27,2,2,46,48,[[863,1,1,46,47],[870,1,1,47,48]]],[29,2,2,48,50,[[883,1,1,48,49],[886,1,1,49,50]]],[33,1,1,50,51,[[900,1,1,50,51]]],[37,3,3,51,54,[[924,3,3,51,54]]],[38,1,1,54,55,[[926,1,1,54,55]]]],[1786,1830,1873,2159,2160,2162,2443,2514,2518,2521,3408,3436,3441,3443,4594,4620,5352,5355,5356,5358,5738,7121,8987,9050,9183,9184,11271,11332,11333,11359,11840,11848,11983,12101,12173,12507,12511,15220,15896,18194,18246,21647,21651,21653,21655,21666,22116,22213,22444,22491,22699,23084,23086,23087,23106]]],["+",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18246]]],["days",[2,2,[[27,1,1,0,1,[[863,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[22116,22444]]],["feast",[51,44,[[1,11,9,0,9,[[59,1,1,0,1],[61,1,1,1,2],[62,1,1,2,3],[72,3,2,3,5],[81,1,1,5,6],[83,4,3,6,9]]],[2,4,4,9,13,[[112,4,4,9,13]]],[3,2,2,13,15,[[144,1,1,13,14],[145,1,1,14,15]]],[4,7,5,15,20,[[168,6,4,15,19],[183,1,1,19,20]]],[6,1,1,20,21,[[231,1,1,20,21]]],[10,5,4,21,25,[[298,2,2,21,23],[302,3,2,23,25]]],[13,9,7,25,32,[[371,1,1,25,26],[373,2,2,26,28],[374,3,1,28,29],[396,2,2,29,31],[401,1,1,31,32]]],[14,2,2,32,34,[[405,1,1,32,33],[408,1,1,33,34]]],[15,2,2,34,36,[[420,2,2,34,36]]],[18,1,1,36,37,[[558,1,1,36,37]]],[25,3,3,37,40,[[846,3,3,37,40]]],[27,1,1,40,41,[[870,1,1,40,41]]],[37,3,3,41,44,[[924,3,3,41,44]]]],[1786,1830,1873,2159,2160,2443,2514,2518,2521,3408,3436,3441,3443,4594,4620,5352,5355,5356,5358,5738,7121,8987,9050,9183,9184,11271,11332,11333,11359,11840,11848,11983,12101,12173,12507,12511,15220,21651,21653,21655,22213,23084,23086,23087]]],["feasts",[5,5,[[25,2,2,0,2,[[846,1,1,0,1],[847,1,1,1,2]]],[29,1,1,2,3,[[886,1,1,2,3]]],[33,1,1,3,4,[[900,1,1,3,4]]],[38,1,1,4,5,[[926,1,1,4,5]]]],[21647,21666,22491,22699,23106]]],["sacrifice",[2,2,[[1,1,1,0,1,[[72,1,1,0,1]]],[18,1,1,1,2,[[595,1,1,1,2]]]],[2162,15896]]],["sacrifices",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18194]]]]},{"k":"H2283","v":[["terror",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18021]]]]},{"k":"H2284","v":[["*",[5,5,[[2,1,1,0,1,[[100,1,1,0,1]]],[3,1,1,1,2,[[129,1,1,1,2]]],[13,1,1,2,3,[[373,1,1,2,3]]],[20,1,1,3,4,[[670,1,1,3,4]]],[22,1,1,4,5,[[718,1,1,4,5]]]],[3019,4108,11337,17528,18442]]],["grasshopper",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[20,1,1,1,2,[[670,1,1,1,2]]]],[3019,17528]]],["grasshoppers",[2,2,[[3,1,1,0,1,[[129,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[4108,18442]]],["locusts",[1,1,[[13,1,1,0,1,[[373,1,1,0,1]]]],[11337]]]]},{"k":"H2285","v":[["Hagab",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12073]]]]},{"k":"H2286","v":[["*",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12072,12468]]],["Hagaba",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12468]]],["Hagabah",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12072]]]]},{"k":"H2287","v":[["*",[16,14,[[1,4,3,0,3,[[54,1,1,0,1],[61,2,1,1,2],[72,1,1,2,3]]],[2,3,2,3,5,[[112,3,2,3,5]]],[3,1,1,5,6,[[145,1,1,5,6]]],[4,1,1,6,7,[[168,1,1,6,7]]],[8,1,1,7,8,[[265,1,1,7,8]]],[18,2,2,8,10,[[519,1,1,8,9],[584,1,1,9,10]]],[33,1,1,10,11,[[900,1,1,10,11]]],[37,3,3,11,14,[[924,3,3,11,14]]]],[1633,1830,2158,3441,3443,4620,5357,7994,14559,15726,22699,23084,23086,23087]]],["+",[4,4,[[2,1,1,0,1,[[112,1,1,0,1]]],[37,3,3,1,4,[[924,3,3,1,4]]]],[3441,23084,23086,23087]]],["celebrate",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3443]]],["dancing",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7994]]],["feast",[4,4,[[1,3,3,0,3,[[54,1,1,0,1],[61,1,1,1,2],[72,1,1,2,3]]],[4,1,1,3,4,[[168,1,1,3,4]]]],[1633,1830,2158,5357]]],["fro",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15726]]],["holyday",[1,1,[[18,1,1,0,1,[[519,1,1,0,1]]]],[14559]]],["keep",[4,4,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[3,1,1,2,3,[[145,1,1,2,3]]],[33,1,1,3,4,[[900,1,1,3,4]]]],[1830,3443,4620,22699]]]]},{"k":"H2288","v":[["clefts",[3,3,[[21,1,1,0,1,[[672,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]],[30,1,1,2,3,[[888,1,1,2,3]]]],[17568,20143,22513]]]]},{"k":"H2289","v":[["*",[3,3,[[9,1,1,0,1,[[286,1,1,0,1]]],[19,1,1,1,2,[[658,1,1,1,2]]],[25,1,1,2,3,[[824,1,1,2,3]]]],[8562,17308,21022]]],["Girded",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21022]]],["girdle",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8562]]],["girdles",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17308]]]]},{"k":"H2290","v":[["*",[7,7,[[0,1,1,0,1,[[2,1,1,0,1]]],[8,1,1,1,2,[[253,1,1,1,2]]],[9,1,1,2,3,[[284,1,1,2,3]]],[10,1,1,3,4,[[292,1,1,3,4]]],[11,1,1,4,5,[[315,1,1,4,5]]],[22,2,2,5,7,[[681,1,1,5,6],[710,1,1,6,7]]]],[62,7680,8489,8775,9597,17731,18270]]],["aprons",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[62]]],["armour",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9597]]],["gird",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18270]]],["girdle",[4,4,[[8,1,1,0,1,[[253,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[10,1,1,2,3,[[292,1,1,2,3]]],[22,1,1,3,4,[[681,1,1,3,4]]]],[7680,8489,8775,17731]]]]},{"k":"H2291","v":[["*",[3,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,2,1,1,2,[[142,2,1,1,2]]]],[1402,4504]]],["Haggi",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1402,4504]]],["Haggites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4504]]]]},{"k":"H2292","v":[["Haggai",[11,11,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]],[36,9,9,2,11,[[909,4,4,2,6],[910,5,5,6,11]]]],[12135,12165,22841,22843,22852,22853,22856,22865,22868,22869,22875]]]]},{"k":"H2293","v":[["Haggiah",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10484]]]]},{"k":"H2294","v":[["Haggith",[5,5,[[9,1,1,0,1,[[269,1,1,0,1]]],[10,3,3,1,4,[[291,2,2,1,3],[292,1,1,3,4]]],[12,1,1,4,5,[[340,1,1,4,5]]]],[8085,8722,8728,8783,10363]]]]},{"k":"H2295","v":[["Hoglah",[4,4,[[3,3,3,0,3,[[142,1,1,0,1],[143,1,1,1,2],[152,1,1,2,3]]],[5,1,1,3,4,[[203,1,1,3,4]]]],[4522,4555,4890,6278]]]]},{"k":"H2296","v":[["*",[43,40,[[1,2,2,0,2,[[61,1,1,0,1],[78,1,1,1,2]]],[2,4,3,2,5,[[97,3,2,2,4],[105,1,1,4,5]]],[4,1,1,5,6,[[153,1,1,5,6]]],[6,4,4,6,10,[[213,1,1,6,7],[228,3,3,7,10]]],[8,5,3,10,13,[[237,1,1,10,11],[252,1,1,11,12],[260,3,1,12,13]]],[9,5,5,13,18,[[269,1,1,13,14],[272,1,1,14,15],[286,1,1,15,16],[287,1,1,16,17],[288,1,1,17,18]]],[10,2,2,18,20,[[310,2,2,18,20]]],[11,3,3,20,23,[[315,1,1,20,21],[316,1,1,21,22],[321,1,1,22,23]]],[18,4,4,23,27,[[522,1,1,23,24],[542,1,1,24,25],[553,1,1,25,26],[586,1,1,26,27]]],[19,1,1,27,28,[[658,1,1,27,28]]],[22,2,2,28,30,[[693,1,1,28,29],[700,1,1,29,30]]],[23,3,3,30,33,[[748,1,1,30,31],[750,1,1,31,32],[793,1,1,32,33]]],[24,1,1,33,34,[[798,1,1,33,34]]],[25,3,3,34,37,[[808,1,1,34,35],[828,1,1,35,36],[845,1,1,36,37]]],[26,1,1,37,38,[[859,1,1,37,38]]],[28,2,2,38,40,[[876,2,2,38,40]]]],[1827,2345,2924,2930,3205,4933,6584,7004,7009,7010,7258,7657,7874,8112,8171,8562,8596,8648,9419,9440,9597,9632,9757,14600,14872,15091,15774,17301,17963,18064,19035,19115,20130,20342,20595,21152,21617,22020,22299,22304]]],["+",[2,2,[[8,2,2,0,2,[[252,1,1,0,1],[260,1,1,1,2]]]],[7657,7874]]],["Gird",[2,2,[[18,1,1,0,1,[[522,1,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]]],[14600,22304]]],["afraid",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8648]]],["appointed",[3,3,[[6,3,3,0,3,[[228,3,3,0,3]]]],[7004,7009,7010]]],["gird",[10,10,[[1,1,1,0,1,[[78,1,1,0,1]]],[6,1,1,1,2,[[213,1,1,1,2]]],[9,1,1,2,3,[[269,1,1,2,3]]],[22,1,1,3,4,[[693,1,1,3,4]]],[23,3,3,4,7,[[748,1,1,4,5],[750,1,1,5,6],[793,1,1,6,7]]],[25,3,3,7,10,[[808,1,1,7,8],[828,1,1,8,9],[845,1,1,9,10]]]],[2345,6584,8112,17963,19035,19115,20130,20595,21152,21617]]],["girded",[14,13,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,4,3,1,4,[[97,3,2,1,3],[105,1,1,3,4]]],[8,1,1,4,5,[[237,1,1,4,5]]],[9,3,3,5,8,[[272,1,1,5,6],[286,1,1,6,7],[287,1,1,7,8]]],[10,1,1,8,9,[[310,1,1,8,9]]],[18,1,1,9,10,[[586,1,1,9,10]]],[24,1,1,10,11,[[798,1,1,10,11]]],[26,1,1,11,12,[[859,1,1,11,12]]],[28,1,1,12,13,[[876,1,1,12,13]]]],[1827,2924,2930,3205,7258,8171,8562,8596,9440,15774,20342,22020,22299]]],["girdeth",[2,2,[[10,1,1,0,1,[[310,1,1,0,1]]],[19,1,1,1,2,[[658,1,1,1,2]]]],[9419,17301]]],["girding",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18064]]],["on",[4,3,[[4,1,1,0,1,[[153,1,1,0,1]]],[8,2,1,1,2,[[260,2,1,1,2]]],[11,1,1,2,3,[[315,1,1,2,3]]]],[4933,7874,9597]]],["restrain",[1,1,[[18,1,1,0,1,[[553,1,1,0,1]]]],[15091]]],["side",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14872]]],["up",[2,2,[[11,2,2,0,2,[[316,1,1,0,1],[321,1,1,1,2]]]],[9632,9757]]]]},{"k":"H2297","v":[["one",[1,1,[[25,1,1,0,1,[[834,1,1,0,1]]]],[21310]]]]},{"k":"H2298","v":[["*",[14,14,[[14,4,4,0,4,[[406,1,1,0,1],[407,1,1,1,2],[408,2,2,2,4]]],[26,10,10,4,14,[[851,3,3,4,7],[852,1,1,7,8],[853,1,1,8,9],[855,2,2,9,11],[856,3,3,11,14]]]],[12118,12147,12153,12154,21767,21789,21793,21826,21856,21907,21922,21934,21938,21949]]],["a",[4,4,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]],[26,2,2,2,4,[[851,1,1,2,3],[855,1,1,3,4]]]],[12118,12153,21789,21922]]],["first",[4,4,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]],[26,2,2,2,4,[[855,1,1,2,3],[856,1,1,3,4]]]],[12147,12154,21907,21934]]],["one",[5,5,[[26,5,5,0,5,[[851,1,1,0,1],[852,1,1,1,2],[853,1,1,2,3],[856,2,2,3,5]]]],[21767,21826,21856,21938,21949]]],["together",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21793]]]]},{"k":"H2299","v":[["sharp",[4,4,[[18,1,1,0,1,[[534,1,1,0,1]]],[19,1,1,1,2,[[632,1,1,1,2]]],[22,1,1,2,3,[[727,1,1,2,3]]],[25,1,1,3,4,[[806,1,1,3,4]]]],[14772,16521,18638,20547]]]]},{"k":"H2300","v":[["*",[6,5,[[19,2,1,0,1,[[654,2,1,0,1]]],[25,3,3,1,4,[[822,3,3,1,4]]],[34,1,1,4,5,[[903,1,1,4,5]]]],[17186,20953,20954,20955,22739]]],["fierce",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22739]]],["sharpened",[3,3,[[25,3,3,0,3,[[822,3,3,0,3]]]],[20953,20954,20955]]],["sharpeneth",[2,1,[[19,2,1,0,1,[[654,2,1,0,1]]]],[17186]]]]},{"k":"H2301","v":[["Hadad",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10282]]]]},{"k":"H2302","v":[["*",[3,3,[[1,1,1,0,1,[[67,1,1,0,1]]],[17,1,1,1,2,[[438,1,1,1,2]]],[18,1,1,2,3,[[498,1,1,2,3]]]],[2008,12910,14197]]],["+",[1,1,[[18,1,1,0,1,[[498,1,1,0,1]]]],[14197]]],["joined",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12910]]],["rejoiced",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2008]]]]},{"k":"H2303","v":[["Sharp",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13918]]]]},{"k":"H2304","v":[["*",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[15,1,1,1,2,[[420,1,1,1,2]]]],[10847,12503]]],["gladness",[1,1,[[12,1,1,0,1,[[353,1,1,0,1]]]],[10847]]],["joy",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12503]]]]},{"k":"H2305","v":[["joy",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12167]]]]},{"k":"H2306","v":[["breast",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21790]]]]},{"k":"H2307","v":[["Hadid",[3,3,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,2,2,1,3,[[419,1,1,1,2],[423,1,1,2,3]]]],[12060,12457,12622]]]]},{"k":"H2308","v":[["*",[58,56,[[0,3,3,0,3,[[10,1,1,0,1],[17,1,1,1,2],[40,1,1,2,3]]],[1,5,5,3,8,[[58,3,3,3,6],[63,1,1,6,7],[72,1,1,7,8]]],[3,1,1,8,9,[[125,1,1,8,9]]],[4,2,2,9,11,[[167,1,1,9,10],[175,1,1,10,11]]],[6,8,7,11,18,[[215,3,2,11,13],[219,3,3,13,16],[225,1,1,16,17],[230,1,1,17,18]]],[7,1,1,18,19,[[232,1,1,18,19]]],[8,4,4,19,23,[[237,1,1,19,20],[244,1,1,20,21],[247,1,1,21,22],[258,1,1,22,23]]],[10,3,3,23,26,[[305,1,1,23,24],[312,2,2,24,26]]],[13,6,5,26,31,[[382,1,1,26,27],[384,2,2,27,29],[391,2,1,29,30],[401,1,1,30,31]]],[17,7,7,31,38,[[438,1,1,31,32],[442,1,1,32,33],[445,1,1,33,34],[449,2,2,34,36],[451,1,1,36,37],[454,1,1,37,38]]],[18,2,2,38,40,[[513,1,1,38,39],[526,1,1,39,40]]],[19,3,3,40,43,[[637,1,1,40,41],[646,1,1,41,42],[650,1,1,42,43]]],[22,3,3,43,46,[[679,1,1,43,44],[680,1,1,44,45],[702,1,1,45,46]]],[23,4,4,46,50,[[784,1,1,46,47],[785,1,1,47,48],[788,1,1,48,49],[795,1,1,49,50]]],[25,4,4,50,54,[[803,2,2,50,52],[804,2,2,52,54]]],[29,1,1,54,55,[[885,1,1,54,55]]],[37,1,1,55,56,[[921,1,1,55,56]]]],[274,435,1244,1771,1775,1776,1901,2149,3978,5330,5522,6629,6630,6763,6765,6767,6936,7082,7145,7245,7396,7483,7823,9270,9486,9495,11514,11547,11556,11720,11987,12921,13024,13106,13187,13188,13244,13311,14441,14656,16675,16952,17048,17670,17707,18103,19945,19965,20028,20242,20497,20499,20513,20529,22469,23040]]],["+",[6,6,[[1,1,1,0,1,[[63,1,1,0,1]]],[6,3,3,1,4,[[219,3,3,1,4]]],[8,1,1,4,5,[[247,1,1,4,5]]],[17,1,1,5,6,[[442,1,1,5,6]]]],[1901,6763,6765,6767,7483,13024]]],["Cease",[2,2,[[19,1,1,0,1,[[646,1,1,0,1]]],[22,1,1,1,2,[[680,1,1,1,2]]]],[16952,17707]]],["cease",[10,10,[[1,1,1,0,1,[[58,1,1,0,1]]],[4,1,1,1,2,[[167,1,1,1,2]]],[6,2,2,2,4,[[225,1,1,2,3],[230,1,1,3,4]]],[17,3,3,4,7,[[438,1,1,4,5],[445,1,1,5,6],[449,1,1,6,7]]],[19,1,1,7,8,[[650,1,1,7,8]]],[22,1,1,8,9,[[679,1,1,8,9]]],[29,1,1,9,10,[[885,1,1,9,10]]]],[1771,5330,6936,7082,12921,13106,13188,17048,17670,22469]]],["ceased",[6,5,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,2,2,1,3,[[58,2,2,1,3]]],[6,2,1,3,4,[[215,2,1,3,4]]],[8,1,1,4,5,[[237,1,1,4,5]]]],[435,1775,1776,6630,7245]]],["ceaseth",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14656]]],["endeth",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18103]]],["failed",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13311]]],["forbare",[3,3,[[8,1,1,0,1,[[258,1,1,0,1]]],[13,1,1,1,2,[[391,1,1,1,2]]],[23,1,1,2,3,[[785,1,1,2,3]]]],[7823,11720,19965]]],["forbear",[15,15,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,1,1,1,2,[[175,1,1,1,2]]],[10,2,2,2,4,[[312,2,2,2,4]]],[13,4,4,4,8,[[384,2,2,4,6],[391,1,1,6,7],[401,1,1,7,8]]],[17,1,1,8,9,[[451,1,1,8,9]]],[23,1,1,9,10,[[784,1,1,9,10]]],[25,4,4,10,14,[[803,2,2,10,12],[804,2,2,12,14]]],[37,1,1,14,15,[[921,1,1,14,15]]]],[2149,5522,9486,9495,11547,11556,11720,11987,13244,19945,20497,20499,20513,20529,23040]]],["forbeareth",[1,1,[[3,1,1,0,1,[[125,1,1,0,1]]]],[3978]]],["forborn",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20242]]],["leave",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7396]]],["left",[2,2,[[0,1,1,0,1,[[40,1,1,0,1]]],[7,1,1,1,2,[[232,1,1,1,2]]]],[1244,7145]]],["off",[5,5,[[0,1,1,0,1,[[10,1,1,0,1]]],[10,1,1,1,2,[[305,1,1,1,2]]],[13,1,1,2,3,[[382,1,1,2,3]]],[18,1,1,3,4,[[513,1,1,3,4]]],[23,1,1,4,5,[[788,1,1,4,5]]]],[274,9270,11514,14441,20028]]],["rest",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13187]]],["unoccupied",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6629]]],["wanteth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16675]]]]},{"k":"H2309","v":[["world",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18401]]]]},{"k":"H2310","v":[["*",[3,3,[[18,1,1,0,1,[[516,1,1,0,1]]],[22,1,1,1,2,[[731,1,1,1,2]]],[25,1,1,2,3,[[804,1,1,2,3]]]],[14516,18714,20529]]],["forbeareth",[1,1,[[25,1,1,0,1,[[804,1,1,0,1]]]],[20529]]],["frail",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14516]]],["rejected",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18714]]]]},{"k":"H2311","v":[["Hadlai",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11776]]]]},{"k":"H2312","v":[["*",[2,2,[[19,1,1,0,1,[[642,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]]],[16826,22668]]],["brier",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22668]]],["thorns",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16826]]]]},{"k":"H2313","v":[["Hiddekel",[2,2,[[0,1,1,0,1,[[1,1,1,0,1]]],[26,1,1,1,2,[[859,1,1,1,2]]]],[44,22019]]]]},{"k":"H2314","v":[["chambers",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20958]]]]},{"k":"H2315","v":[["*",[38,33,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,1,1,1,2,[[57,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[6,4,4,3,7,[[213,1,1,3,4],[225,1,1,4,5],[226,2,2,5,7]]],[9,3,2,7,9,[[270,1,1,7,8],[279,2,1,8,9]]],[10,5,3,9,12,[[291,1,1,9,10],[310,2,1,10,11],[312,2,1,11,12]]],[11,4,3,12,15,[[318,1,1,12,13],[321,2,1,13,14],[323,1,1,14,15]]],[12,1,1,15,16,[[365,1,1,15,16]]],[13,3,2,16,18,[[384,2,1,16,17],[388,1,1,17,18]]],[17,2,2,18,20,[[444,1,1,18,19],[472,1,1,19,20]]],[18,1,1,20,21,[[582,1,1,20,21]]],[19,6,6,21,27,[[634,1,1,21,22],[645,1,1,22,23],[647,2,2,23,25],[651,1,1,25,26],[653,1,1,26,27]]],[20,1,1,27,28,[[668,1,1,27,28]]],[21,2,2,28,30,[[671,1,1,28,29],[673,1,1,29,30]]],[22,1,1,30,31,[[704,1,1,30,31]]],[25,1,1,31,32,[[809,1,1,31,32]]],[28,1,1,32,33,[[877,1,1,32,33]]]],[1320,1713,5783,6592,6930,6958,6961,8127,8327,8732,9438,9505,9686,9758,9831,11154,11566,11655,13060,13778,15636,16602,16909,16981,16984,17083,17163,17513,17541,17575,18150,20616,22327]]],["+",[12,10,[[1,1,1,0,1,[[57,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[9,1,1,2,3,[[270,1,1,2,3]]],[10,2,1,3,4,[[310,2,1,3,4]]],[11,2,2,4,6,[[318,1,1,4,5],[323,1,1,5,6]]],[13,3,2,6,8,[[384,2,1,6,7],[388,1,1,7,8]]],[20,1,1,8,9,[[668,1,1,8,9]]],[28,1,1,9,10,[[877,1,1,9,10]]]],[1713,5783,8127,9438,9686,9831,11566,11655,17513,22327]]],["chamber",[11,10,[[0,1,1,0,1,[[42,1,1,0,1]]],[6,4,4,1,5,[[213,1,1,1,2],[225,1,1,2,3],[226,2,2,3,5]]],[9,2,1,5,6,[[279,2,1,5,6]]],[10,2,2,6,8,[[291,1,1,6,7],[312,1,1,7,8]]],[11,1,1,8,9,[[321,1,1,8,9]]],[21,1,1,9,10,[[673,1,1,9,10]]]],[1320,6592,6930,6958,6961,8327,8732,9505,9758,17575]]],["chambers",[7,7,[[17,1,1,0,1,[[444,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]],[19,2,2,2,4,[[634,1,1,2,3],[651,1,1,3,4]]],[21,1,1,4,5,[[671,1,1,4,5]]],[22,1,1,5,6,[[704,1,1,5,6]]],[25,1,1,6,7,[[809,1,1,6,7]]]],[13060,15636,16602,17083,17541,18150,20616]]],["inner",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[11,1,1,1,2,[[321,1,1,1,2]]]],[9505,9758]]],["parlours",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11154]]],["parts",[4,4,[[19,4,4,0,4,[[645,1,1,0,1],[647,2,2,1,3],[653,1,1,3,4]]]],[16909,16981,16984,17163]]],["south",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13778]]]]},{"k":"H2316","v":[["Hadar",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[673]]]]},{"k":"H2317","v":[["Hadrach",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23000]]]]},{"k":"H2318","v":[["*",[10,10,[[8,1,1,0,1,[[246,1,1,0,1]]],[13,3,3,1,4,[[381,1,1,1,2],[390,2,2,2,4]]],[17,1,1,4,5,[[445,1,1,4,5]]],[18,3,3,5,8,[[528,1,1,5,6],[580,1,1,6,7],[581,1,1,7,8]]],[22,1,1,8,9,[[739,1,1,8,9]]],[24,1,1,9,10,[[801,1,1,9,10]]]],[7459,11498,11681,11689,13103,14701,15554,15601,18847,20463]]],["+",[2,2,[[13,2,2,0,2,[[381,1,1,0,1],[390,1,1,1,2]]]],[11498,11681]]],["renew",[3,3,[[8,1,1,0,1,[[246,1,1,0,1]]],[18,1,1,1,2,[[528,1,1,1,2]]],[24,1,1,2,3,[[801,1,1,2,3]]]],[7459,14701,20463]]],["renewed",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15554]]],["renewest",[2,2,[[17,1,1,0,1,[[445,1,1,0,1]]],[18,1,1,1,2,[[581,1,1,1,2]]]],[13103,15601]]],["repair",[2,2,[[13,1,1,0,1,[[390,1,1,0,1]]],[22,1,1,1,2,[[739,1,1,1,2]]]],[11689,18847]]]]},{"k":"H2319","v":[["*",[53,48,[[1,1,1,0,1,[[50,1,1,0,1]]],[2,2,2,1,3,[[112,1,1,1,2],[115,1,1,2,3]]],[3,1,1,3,4,[[144,1,1,3,4]]],[4,4,4,4,8,[[172,1,1,4,5],[174,1,1,5,6],[176,1,1,6,7],[184,1,1,7,8]]],[5,1,1,8,9,[[195,1,1,8,9]]],[6,4,4,9,13,[[215,1,1,9,10],[225,1,1,10,11],[226,2,2,11,13]]],[8,1,1,13,14,[[241,1,1,13,14]]],[9,3,2,14,16,[[272,2,1,14,15],[287,1,1,15,16]]],[10,2,2,16,18,[[301,2,2,16,18]]],[11,1,1,18,19,[[314,1,1,18,19]]],[12,1,1,19,20,[[350,1,1,19,20]]],[13,1,1,20,21,[[386,1,1,20,21]]],[17,2,2,21,23,[[464,1,1,21,22],[467,1,1,22,23]]],[18,6,6,23,29,[[510,1,1,23,24],[517,1,1,24,25],[573,1,1,25,26],[575,1,1,26,27],[621,1,1,27,28],[626,1,1,28,29]]],[20,2,2,29,31,[[659,2,2,29,31]]],[21,1,1,31,32,[[677,1,1,31,32]]],[22,10,8,32,40,[[719,1,1,32,33],[720,2,2,33,35],[721,1,1,35,36],[726,1,1,36,37],[740,1,1,37,38],[743,2,1,38,39],[744,2,1,39,40]]],[23,4,4,40,44,[[770,1,1,40,41],[775,2,2,41,43],[780,1,1,43,44]]],[24,1,1,44,45,[[799,1,1,44,45]]],[25,5,3,45,48,[[812,1,1,45,46],[819,2,1,46,47],[837,2,1,47,48]]]],[1540,3418,3534,4603,5432,5478,5530,5775,6050,6631,6942,6960,6961,7338,8160,8596,9137,9138,9571,10767,11592,13552,13647,14369,14528,15466,15491,16314,16386,17324,17325,17640,18466,18489,18490,18524,18620,18856,18914,18944,19582,19713,19722,19852,20377,20674,20880,21385]]],["fresh",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13552]]],["new",[48,43,[[1,1,1,0,1,[[50,1,1,0,1]]],[2,2,2,1,3,[[112,1,1,1,2],[115,1,1,2,3]]],[3,1,1,3,4,[[144,1,1,3,4]]],[4,4,4,4,8,[[172,1,1,4,5],[174,1,1,5,6],[176,1,1,6,7],[184,1,1,7,8]]],[5,1,1,8,9,[[195,1,1,8,9]]],[6,4,4,9,13,[[215,1,1,9,10],[225,1,1,10,11],[226,2,2,11,13]]],[8,1,1,13,14,[[241,1,1,13,14]]],[9,3,2,14,16,[[272,2,1,14,15],[287,1,1,15,16]]],[10,2,2,16,18,[[301,2,2,16,18]]],[11,1,1,18,19,[[314,1,1,18,19]]],[12,1,1,19,20,[[350,1,1,19,20]]],[13,1,1,20,21,[[386,1,1,20,21]]],[17,1,1,21,22,[[467,1,1,21,22]]],[18,6,6,22,28,[[510,1,1,22,23],[517,1,1,23,24],[573,1,1,24,25],[575,1,1,25,26],[621,1,1,26,27],[626,1,1,27,28]]],[20,2,2,28,30,[[659,2,2,28,30]]],[21,1,1,30,31,[[677,1,1,30,31]]],[22,7,5,31,36,[[719,1,1,31,32],[720,1,1,32,33],[740,1,1,33,34],[743,2,1,34,35],[744,2,1,35,36]]],[23,3,3,36,39,[[770,1,1,36,37],[775,1,1,37,38],[780,1,1,38,39]]],[24,1,1,39,40,[[799,1,1,39,40]]],[25,5,3,40,43,[[812,1,1,40,41],[819,2,1,41,42],[837,2,1,42,43]]]],[1540,3418,3534,4603,5432,5478,5530,5775,6050,6631,6942,6960,6961,7338,8160,8596,9137,9138,9571,10767,11592,13647,14369,14528,15466,15491,16314,16386,17324,17325,17640,18466,18490,18856,18914,18944,19582,19722,19852,20377,20674,20880,21385]]],["thing",[2,2,[[22,1,1,0,1,[[721,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[18524,19713]]],["things",[2,2,[[22,2,2,0,2,[[720,1,1,0,1],[726,1,1,1,2]]]],[18489,18620]]]]},{"k":"H2320","v":[["*",[279,224,[[0,12,7,0,7,[[6,3,1,0,1],[7,7,4,1,5],[28,1,1,5,6],[37,1,1,6,7]]],[1,18,12,7,19,[[61,7,4,7,11],[62,2,2,11,13],[65,1,1,13,14],[68,1,1,14,15],[72,1,1,15,16],[83,2,1,16,17],[89,4,2,17,19]]],[2,13,11,19,30,[[105,2,1,19,20],[112,9,8,20,28],[114,1,1,28,29],[116,1,1,29,30]]],[3,35,31,30,61,[[117,2,2,30,32],[119,7,7,32,39],[125,5,5,39,44],[126,2,2,44,46],[127,2,2,46,48],[134,1,1,48,49],[136,1,1,49,50],[142,1,1,50,51],[144,6,4,51,55],[145,5,4,55,59],[149,3,2,59,61]]],[4,4,2,61,63,[[153,2,1,61,62],[168,2,1,62,63]]],[5,2,2,63,65,[[190,1,1,63,64],[191,1,1,64,65]]],[6,5,5,65,70,[[221,3,3,65,68],[229,1,1,68,69],[230,1,1,69,70]]],[8,7,7,70,77,[[241,1,1,70,71],[255,5,5,71,76],[262,1,1,76,77]]],[9,5,5,77,82,[[268,1,1,77,78],[271,1,1,78,79],[272,1,1,79,80],[290,2,2,80,82]]],[10,14,9,82,91,[[294,2,2,82,84],[295,3,1,84,85],[296,3,2,85,87],[298,1,1,87,88],[301,1,1,88,89],[302,4,2,89,91]]],[11,12,9,91,100,[[316,1,1,91,92],[327,1,1,92,93],[335,1,1,93,94],[336,1,1,94,95],[337,8,5,95,100]]],[12,21,19,100,119,[[340,1,1,100,101],[349,1,1,101,102],[350,1,1,102,103],[358,1,1,103,104],[360,1,1,104,105],[364,16,14,105,119]]],[13,19,16,119,135,[[368,1,1,119,120],[369,1,1,120,121],[371,1,1,121,122],[373,1,1,122,123],[374,1,1,123,124],[381,1,1,124,125],[395,4,2,125,127],[396,3,3,127,130],[397,3,2,130,132],[401,1,1,132,133],[402,2,2,133,135]]],[14,13,11,135,146,[[405,4,4,135,139],[408,1,1,139,140],[409,3,2,140,142],[410,1,1,142,143],[412,4,3,143,146]]],[15,7,7,146,153,[[413,1,1,146,147],[414,1,1,147,148],[419,1,1,148,149],[420,2,2,149,151],[421,1,1,151,152],[422,1,1,152,153]]],[16,24,13,153,166,[[427,5,2,153,155],[428,8,3,155,158],[433,4,2,158,160],[434,7,6,160,166]]],[17,2,2,166,168,[[449,1,1,166,167],[456,1,1,167,168]]],[18,1,1,168,169,[[558,1,1,168,169]]],[22,5,4,169,173,[[679,2,2,169,171],[725,1,1,171,172],[744,2,1,172,173]]],[23,18,13,173,186,[[745,1,1,173,174],[746,1,1,174,175],[772,2,2,175,177],[780,2,2,177,179],[783,3,2,179,181],[785,1,1,181,182],[796,8,4,182,186]]],[25,27,25,186,211,[[802,2,2,186,188],[809,1,1,188,189],[821,1,1,189,190],[825,2,1,190,191],[827,1,1,191,192],[830,2,2,192,194],[831,1,1,194,195],[832,1,1,195,196],[833,3,2,196,198],[834,1,1,198,199],[840,2,2,199,201],[841,1,1,201,202],[846,5,5,202,207],[847,3,3,207,210],[848,1,1,210,211]]],[26,1,1,211,212,[[859,1,1,211,212]]],[27,2,2,212,214,[[863,1,1,212,213],[866,1,1,213,214]]],[29,2,2,214,216,[[882,1,1,214,215],[886,1,1,215,216]]],[36,5,4,216,220,[[909,3,2,216,218],[910,2,2,218,220]]],[37,5,4,220,224,[[911,3,2,220,222],[917,2,2,222,224]]]],[170,187,188,196,197,809,1143,1818,1819,1822,1834,1871,1872,1948,2027,2159,2514,2709,2724,3230,3407,3408,3426,3429,3434,3436,3441,3443,3478,3576,3605,3622,3707,3714,3720,3726,3731,3732,3735,3966,3968,3970,3976,3987,3998,3999,4044,4045,4273,4312,4551,4588,4591,4593,4594,4609,4614,4615,4620,4763,4798,4895,5343,5929,5944,6866,6867,6868,7026,7101,7332,7735,7748,7754,7757,7764,7937,8060,8137,8168,8700,8705,8851,8871,8892,8897,8934,8987,9124,9183,9184,9626,9933,10196,10210,10223,10225,10230,10247,10249,10365,10735,10774,10946,11014,11110,11111,11112,11113,11114,11116,11117,11118,11119,11120,11121,11122,11123,11124,11215,11231,11271,11334,11359,11500,11794,11808,11829,11840,11842,11857,11861,11967,11995,12002,12098,12102,12103,12105,12170,12181,12182,12232,12261,12268,12269,12297,12308,12493,12495,12507,12512,12582,12736,12740,12754,12759,12760,12826,12829,12835,12849,12851,12853,12855,12856,13186,13376,15220,17667,17668,18612,18945,18949,18989,19619,19635,19851,19864,19924,19925,19958,20280,20282,20288,20307,20465,20466,20605,20896,21057,21101,21184,21200,21224,21231,21249,21265,21301,21460,21462,21478,21647,21648,21650,21651,21655,21656,21658,21661,21691,22019,22116,22159,22417,22486,22841,22855,22856,22875,22879,22885,22963,22965]]],["+",[7,5,[[1,1,1,0,1,[[89,1,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]],[3,2,1,2,3,[[144,2,1,2,3]]],[12,2,1,3,4,[[364,2,1,3,4]]],[16,1,1,4,5,[[428,1,1,4,5]]]],[2709,3576,4591,11110,12754]]],["another",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18945]]],["month",[212,169,[[0,10,6,0,6,[[6,2,1,0,1],[7,7,4,1,5],[28,1,1,5,6]]],[1,16,12,6,18,[[61,6,4,6,10],[62,2,2,10,12],[65,1,1,12,13],[68,1,1,13,14],[72,1,1,14,15],[83,2,1,15,16],[89,3,2,16,18]]],[2,12,10,18,28,[[105,2,1,18,19],[112,9,8,19,27],[114,1,1,27,28]]],[3,30,28,28,56,[[117,2,2,28,30],[119,7,7,30,37],[125,5,5,37,42],[126,1,1,42,43],[127,2,2,43,45],[134,1,1,45,46],[136,1,1,46,47],[142,1,1,47,48],[144,2,2,48,50],[145,5,4,50,54],[149,3,2,54,56]]],[4,4,2,56,58,[[153,2,1,56,57],[168,2,1,57,58]]],[5,2,2,58,60,[[190,1,1,58,59],[191,1,1,59,60]]],[8,2,2,60,62,[[255,2,2,60,62]]],[10,12,8,62,70,[[294,2,2,62,64],[295,2,1,64,65],[296,3,2,65,67],[298,1,1,67,68],[302,4,2,68,70]]],[11,8,5,70,75,[[337,8,5,70,75]]],[12,14,14,75,89,[[349,1,1,75,76],[364,13,13,76,89]]],[13,14,11,89,100,[[369,1,1,89,90],[371,1,1,90,91],[373,1,1,91,92],[381,1,1,92,93],[395,4,2,93,95],[396,3,3,95,98],[397,2,1,98,99],[401,1,1,99,100]]],[14,12,10,100,110,[[405,3,3,100,103],[408,1,1,103,104],[409,3,2,104,106],[410,1,1,106,107],[412,4,3,107,110]]],[15,6,6,110,116,[[413,1,1,110,111],[414,1,1,111,112],[419,1,1,112,113],[420,2,2,113,115],[421,1,1,115,116]]],[16,20,12,116,128,[[427,2,1,116,117],[428,7,3,117,120],[433,4,2,120,122],[434,7,6,122,128]]],[23,18,13,128,141,[[745,1,1,128,129],[746,1,1,129,130],[772,2,2,130,132],[780,2,2,132,134],[783,3,2,134,136],[785,1,1,136,137],[796,8,4,137,141]]],[25,20,18,141,159,[[802,2,2,141,143],[809,1,1,143,144],[821,1,1,144,145],[825,2,1,145,146],[827,1,1,146,147],[830,2,2,147,149],[831,1,1,149,150],[832,1,1,150,151],[833,3,2,151,153],[834,1,1,153,154],[841,1,1,154,155],[846,4,4,155,159]]],[26,1,1,159,160,[[859,1,1,159,160]]],[27,1,1,160,161,[[866,1,1,160,161]]],[36,5,4,161,165,[[909,3,2,161,163],[910,2,2,163,165]]],[37,5,4,165,169,[[911,3,2,165,167],[917,2,2,167,169]]]],[170,187,188,196,197,809,1818,1819,1822,1834,1871,1872,1948,2027,2159,2514,2709,2724,3230,3407,3408,3426,3429,3434,3436,3441,3443,3478,3605,3622,3707,3714,3720,3726,3731,3732,3735,3966,3968,3970,3976,3987,3999,4044,4045,4273,4312,4551,4593,4594,4609,4614,4615,4620,4763,4798,4895,5343,5929,5944,7757,7764,8851,8871,8892,8897,8934,8987,9183,9184,10223,10225,10230,10247,10249,10735,11111,11112,11113,11114,11116,11117,11118,11119,11120,11121,11122,11123,11124,11231,11271,11334,11500,11794,11808,11829,11840,11842,11861,11967,12098,12103,12105,12170,12181,12182,12232,12261,12268,12269,12297,12308,12493,12495,12507,12512,12740,12754,12759,12760,12826,12829,12835,12849,12851,12853,12855,12856,18949,18989,19619,19635,19851,19864,19924,19925,19958,20280,20282,20288,20307,20465,20466,20605,20896,21057,21101,21184,21200,21224,21231,21249,21265,21301,21478,21648,21650,21651,21655,22019,22159,22841,22855,22856,22875,22879,22885,22963,22965]]],["monthly",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18612]]],["months",[37,35,[[0,1,1,0,1,[[37,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[3,3,3,2,5,[[126,1,1,2,3],[144,2,2,3,5]]],[6,5,5,5,10,[[221,3,3,5,8],[229,1,1,8,9],[230,1,1,9,10]]],[8,2,2,10,12,[[241,1,1,10,11],[262,1,1,11,12]]],[9,5,5,12,17,[[268,1,1,12,13],[271,1,1,13,14],[272,1,1,14,15],[290,2,2,15,17]]],[10,2,2,17,19,[[295,1,1,17,18],[301,1,1,18,19]]],[11,3,3,19,22,[[327,1,1,19,20],[335,1,1,20,21],[336,1,1,21,22]]],[12,4,4,22,26,[[340,1,1,22,23],[350,1,1,23,24],[358,1,1,24,25],[364,1,1,25,26]]],[13,2,2,26,28,[[402,2,2,26,28]]],[16,3,1,28,29,[[427,3,1,28,29]]],[17,2,2,29,31,[[449,1,1,29,30],[456,1,1,30,31]]],[25,3,3,31,34,[[840,2,2,31,33],[848,1,1,33,34]]],[29,1,1,34,35,[[882,1,1,34,35]]]],[1143,1818,3998,4588,4591,6866,6867,6868,7026,7101,7332,7937,8060,8137,8168,8700,8705,8892,9124,9933,10196,10210,10365,10774,10946,11110,11995,12002,12736,13186,13376,21460,21462,21691,22417]]],["moon",[9,9,[[8,3,3,0,3,[[255,3,3,0,3]]],[11,1,1,3,4,[[316,1,1,3,4]]],[18,1,1,4,5,[[558,1,1,4,5]]],[22,1,1,5,6,[[744,1,1,5,6]]],[25,2,2,6,8,[[847,2,2,6,8]]],[29,1,1,8,9,[[886,1,1,8,9]]]],[7735,7748,7754,9626,15220,18945,21656,21661,22486]]],["moons",[11,11,[[12,1,1,0,1,[[360,1,1,0,1]]],[13,3,3,1,4,[[368,1,1,1,2],[374,1,1,2,3],[397,1,1,3,4]]],[14,1,1,4,5,[[405,1,1,4,5]]],[15,1,1,5,6,[[422,1,1,5,6]]],[22,2,2,6,8,[[679,2,2,6,8]]],[25,2,2,8,10,[[846,1,1,8,9],[847,1,1,9,10]]],[27,1,1,10,11,[[863,1,1,10,11]]]],[11014,11215,11359,11857,12102,12582,17667,17668,21647,21658,22116]]],["same",[1,1,[[0,1,1,0,1,[[6,1,1,0,1]]]],[170]]]]},{"k":"H2321","v":[["Hodesh",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10584]]]]},{"k":"H2322","v":[["Hadashah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6239]]]]},{"k":"H2323","v":[["new",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12155]]]]},{"k":"H2324","v":[["shew",[14,13,[[26,14,13,0,13,[[851,10,9,0,9],[853,1,1,9,10],[854,3,3,10,13]]]],[21762,21764,21765,21767,21768,21769,21774,21782,21785,21839,21881,21886,21889]]]]},{"k":"H2325","v":[["+",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21747]]]]},{"k":"H2326","v":[["debtor",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20856]]]]},{"k":"H2327","v":[["Hobah",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[351]]]]},{"k":"H2328","v":[["+",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13477]]]]},{"k":"H2329","v":[["*",[3,3,[[17,1,1,0,1,[[457,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]]],[13403,16629,18442]]],["circle",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18442]]],["circuit",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13403]]],["compass",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16629]]]]},{"k":"H2330","v":[["forth",[4,4,[[6,3,3,0,3,[[224,3,3,0,3]]],[25,1,1,3,4,[[818,1,1,3,4]]]],[6921,6922,6925,20827]]]]},{"k":"H2331","v":[["*",[6,6,[[17,5,5,0,5,[[450,1,1,0,1],[467,3,3,1,4],[471,1,1,4,5]]],[18,1,1,5,6,[[496,1,1,5,6]]]],[13220,13634,13638,13645,13738,14170]]],["+",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13634]]],["shew",[4,4,[[17,4,4,0,4,[[450,1,1,0,1],[467,2,2,1,3],[471,1,1,3,4]]]],[13220,13638,13645,13738]]],["sheweth",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14170]]]]},{"k":"H2332","v":[["Eve",[2,2,[[0,2,2,0,2,[[2,1,1,0,1],[3,1,1,1,2]]]],[75,80]]]]},{"k":"H2333","v":[["towns",[4,4,[[3,1,1,0,1,[[148,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]],[10,1,1,2,3,[[294,1,1,2,3]]],[12,1,1,3,4,[[339,1,1,3,4]]]],[4759,6184,8857,10329]]]]},{"k":"H2334","v":[["*",[3,3,[[3,1,1,0,1,[[148,1,1,0,1]]],[4,1,1,1,2,[[155,1,1,1,2]]],[6,1,1,2,3,[[220,1,1,2,3]]]],[4759,4989,6815]]],["+",[1,1,[[4,1,1,0,1,[[155,1,1,0,1]]]],[4989]]],["Havothjair",[2,2,[[3,1,1,0,1,[[148,1,1,0,1]]],[6,1,1,1,2,[[220,1,1,1,2]]]],[4759,6815]]]]},{"k":"H2335","v":[["seers",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11927]]]]},{"k":"H2336","v":[["*",[11,9,[[11,2,1,0,1,[[326,2,1,0,1]]],[13,3,2,1,3,[[391,2,1,1,2],[399,1,1,2,3]]],[17,2,2,3,5,[[466,1,1,3,4],[476,1,1,4,5]]],[19,1,1,5,6,[[653,1,1,5,6]]],[21,1,1,6,7,[[672,1,1,6,7]]],[22,1,1,7,8,[[712,1,1,7,8]]],[27,1,1,8,9,[[870,1,1,8,9]]]],[9905,11722,11919,13628,13890,17150,17556,18316,22214]]],["brambles",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18316]]],["thistle",[4,2,[[11,2,1,0,1,[[326,2,1,0,1]]],[13,2,1,1,2,[[391,2,1,1,2]]]],[9905,11722]]],["thistles",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13628]]],["thorn",[2,2,[[17,1,1,0,1,[[476,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]]],[13890,17150]]],["thorns",[3,3,[[13,1,1,0,1,[[399,1,1,0,1]]],[21,1,1,1,2,[[672,1,1,1,2]]],[27,1,1,2,3,[[870,1,1,2,3]]]],[11919,17556,22214]]]]},{"k":"H2337","v":[["thickets",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7491]]]]},{"k":"H2338","v":[["joined",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12122]]]]},{"k":"H2339","v":[["*",[7,7,[[0,1,1,0,1,[[13,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]],[6,1,1,2,3,[[226,1,1,2,3]]],[10,1,1,3,4,[[297,1,1,3,4]]],[20,1,1,4,5,[[662,1,1,4,5]]],[21,1,1,5,6,[[674,1,1,5,6]]],[23,1,1,6,7,[[796,1,1,6,7]]]],[359,5887,6961,8949,17393,17585,20297]]],["+",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[359]]],["cord",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17393]]],["fillet",[1,1,[[23,1,1,0,1,[[796,1,1,0,1]]]],[20297]]],["line",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8949]]],["thread",[3,3,[[5,1,1,0,1,[[188,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[21,1,1,2,3,[[674,1,1,2,3]]]],[5887,6961,17585]]]]},{"k":"H2340","v":[["*",[25,25,[[0,3,3,0,3,[[9,1,1,0,1],[33,1,1,1,2],[35,1,1,2,3]]],[1,7,7,3,10,[[52,2,2,3,5],[62,1,1,5,6],[72,2,2,6,8],[82,1,1,8,9],[83,1,1,9,10]]],[4,2,2,10,12,[[159,1,1,10,11],[172,1,1,11,12]]],[5,7,7,12,19,[[189,1,1,12,13],[195,2,2,13,15],[197,2,2,15,17],[198,1,1,17,18],[210,1,1,18,19]]],[6,2,2,19,21,[[213,2,2,19,21]]],[9,1,1,21,22,[[290,1,1,21,22]]],[10,1,1,22,23,[[299,1,1,22,23]]],[12,1,1,23,24,[[338,1,1,23,24]]],[13,1,1,24,25,[[374,1,1,24,25]]]],[251,982,1042,1587,1596,1872,2167,2172,2475,2507,5112,5444,5903,6038,6044,6110,6126,6138,6487,6571,6573,8699,9071,10267,11353]]],["+",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2172]]],["Hivite",[8,8,[[0,3,3,0,3,[[9,1,1,0,1],[33,1,1,1,2],[35,1,1,2,3]]],[1,2,2,3,5,[[82,1,1,3,4],[83,1,1,4,5]]],[5,2,2,5,7,[[195,1,1,5,6],[197,1,1,6,7]]],[12,1,1,7,8,[[338,1,1,7,8]]]],[251,982,1042,2475,2507,6038,6110,10267]]],["Hivites",[16,16,[[1,4,4,0,4,[[52,2,2,0,2],[62,1,1,2,3],[72,1,1,3,4]]],[4,2,2,4,6,[[159,1,1,4,5],[172,1,1,5,6]]],[5,5,5,6,11,[[189,1,1,6,7],[195,1,1,7,8],[197,1,1,8,9],[198,1,1,9,10],[210,1,1,10,11]]],[6,2,2,11,13,[[213,2,2,11,13]]],[9,1,1,13,14,[[290,1,1,13,14]]],[10,1,1,14,15,[[299,1,1,14,15]]],[13,1,1,15,16,[[374,1,1,15,16]]]],[1587,1596,1872,2167,5112,5444,5903,6044,6126,6138,6487,6571,6573,8699,9071,11353]]]]},{"k":"H2341","v":[["*",[7,7,[[0,4,4,0,4,[[1,1,1,0,1],[9,2,2,1,3],[24,1,1,3,4]]],[8,1,1,4,5,[[250,1,1,4,5]]],[12,2,2,5,7,[[338,2,2,5,7]]]],[41,241,263,676,7567,10261,10275]]],["+",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]]],[676,7567]]],["Havilah",[5,5,[[0,3,3,0,3,[[1,1,1,0,1],[9,2,2,1,3]]],[12,2,2,3,5,[[338,2,2,3,5]]]],[41,241,263,10261,10275]]]]},{"k":"H2342","v":[["*",[58,54,[[0,1,1,0,1,[[7,1,1,0,1]]],[4,2,2,1,3,[[154,1,1,1,2],[184,1,1,2,3]]],[6,3,3,3,6,[[213,1,1,3,4],[231,2,2,4,6]]],[8,1,1,6,7,[[266,1,1,6,7]]],[9,1,1,7,8,[[269,1,1,7,8]]],[12,2,2,8,10,[[347,1,1,8,9],[353,1,1,9,10]]],[16,1,1,10,11,[[429,1,1,10,11]]],[17,6,6,11,17,[[450,2,2,11,13],[455,1,1,13,14],[461,1,1,14,15],[470,1,1,15,16],[474,1,1,16,17]]],[18,12,11,17,28,[[487,1,1,17,18],[506,3,2,18,20],[514,1,1,20,21],[528,1,1,21,22],[532,1,1,22,23],[554,1,1,23,24],[567,1,1,24,25],[573,1,1,25,26],[574,1,1,26,27],[591,1,1,27,28]]],[19,4,4,28,32,[[635,2,2,28,30],[652,1,1,30,31],[653,1,1,31,32]]],[22,11,10,32,42,[[691,1,1,32,33],[701,2,2,33,35],[704,2,2,35,37],[723,1,1,37,38],[729,1,1,38,39],[732,1,1,39,40],[744,3,2,40,42]]],[23,6,5,42,47,[[749,2,2,42,44],[767,2,1,44,45],[774,1,1,45,46],[795,1,1,46,47]]],[24,1,1,47,48,[[800,1,1,47,48]]],[25,2,1,48,49,[[831,2,1,48,49]]],[27,1,1,49,50,[[872,1,1,49,50]]],[28,1,1,50,51,[[877,1,1,50,51]]],[32,1,1,51,52,[[896,1,1,51,52]]],[34,1,1,52,53,[[905,1,1,52,53]]],[37,1,1,53,54,[[919,1,1,53,54]]]],[193,4963,5776,6593,7123,7125,8012,8110,10662,10850,12766,13210,13223,13347,13472,13734,13835,14046,14316,14317,14457,14696,14736,15109,15380,15474,15482,15829,16626,16627,17136,17151,17914,18081,18082,18147,18148,18571,18675,18724,18929,18930,19061,19080,19503,19690,20241,20426,21220,22246,22317,22630,22778,23004]]],["+",[3,2,[[25,2,1,0,1,[[831,2,1,0,1]]],[37,1,1,1,2,[[919,1,1,1,2]]]],[21220,23004]]],["Fear",[1,1,[[12,1,1,0,1,[[353,1,1,0,1]]]],[10850]]],["Tremble",[1,1,[[18,1,1,0,1,[[591,1,1,0,1]]]],[15829]]],["abide",[1,1,[[27,1,1,0,1,[[872,1,1,0,1]]]],[22246]]],["afraid",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15109]]],["anguish",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4963]]],["away",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17136]]],["bare",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18675]]],["calve",[2,2,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,1,1,1,2,[[506,1,1,1,2]]]],[13835,14317]]],["child",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18724]]],["dance",[1,1,[[6,1,1,0,1,[[231,1,1,0,1]]]],[7123]]],["danced",[1,1,[[6,1,1,0,1,[[231,1,1,0,1]]]],[7125]]],["fear",[1,1,[[18,1,1,0,1,[[573,1,1,0,1]]]],[15474]]],["formed",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[461,1,1,1,2]]],[18,1,1,2,3,[[567,1,1,2,3]]],[19,1,1,3,4,[[653,1,1,3,4]]]],[5776,13472,15380,17151]]],["forth",[4,4,[[19,2,2,0,2,[[635,2,2,0,2]]],[22,2,2,2,4,[[723,1,1,2,3],[744,1,1,3,4]]]],[16626,16627,18571,18930]]],["grieved",[2,2,[[16,1,1,0,1,[[429,1,1,0,1]]],[23,1,1,1,2,[[749,1,1,1,2]]]],[12766,19061]]],["grievous",[2,2,[[18,1,1,0,1,[[487,1,1,0,1]]],[23,1,1,1,2,[[767,1,1,1,2]]]],[14046,19503]]],["grievously",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19503]]],["look",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13347]]],["made",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13210]]],["pain",[6,6,[[17,1,1,0,1,[[450,1,1,0,1]]],[22,3,3,1,4,[[691,1,1,1,2],[704,2,2,2,4]]],[23,1,1,4,5,[[774,1,1,4,5]]],[32,1,1,5,6,[[896,1,1,5,6]]]],[13223,17914,18147,18148,19690,22630]]],["pained",[3,3,[[18,1,1,0,1,[[532,1,1,0,1]]],[22,1,1,1,2,[[701,1,1,1,2]]],[28,1,1,2,3,[[877,1,1,2,3]]]],[14736,18082,22317]]],["patiently",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14457]]],["rest",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8110]]],["shaketh",[2,1,[[18,2,1,0,1,[[506,2,1,0,1]]]],[14316]]],["shapen",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14696]]],["sorrow",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20241]]],["stayed",[2,2,[[0,1,1,0,1,[[7,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[193,20426]]],["tarried",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6593]]],["travail",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18081]]],["travailed",[2,2,[[22,2,2,0,2,[[744,2,2,0,2]]]],[18929,18930]]],["tremble",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19080]]],["trembled",[2,2,[[18,1,1,0,1,[[574,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[15482,22778]]],["trust",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13734]]],["wounded",[2,2,[[8,1,1,0,1,[[266,1,1,0,1]]],[12,1,1,1,2,[[347,1,1,1,2]]]],[8012,10662]]]]},{"k":"H2343","v":[["Hul",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[257,10269]]]]},{"k":"H2344","v":[["*",[23,23,[[0,3,3,0,3,[[21,1,1,0,1],[31,1,1,1,2],[40,1,1,2,3]]],[1,1,1,3,4,[[51,1,1,3,4]]],[4,1,1,4,5,[[185,1,1,4,5]]],[5,1,1,5,6,[[197,1,1,5,6]]],[6,1,1,6,7,[[217,1,1,6,7]]],[8,1,1,7,8,[[248,1,1,7,8]]],[9,1,1,8,9,[[283,1,1,8,9]]],[10,2,2,9,11,[[294,2,2,9,11]]],[17,2,2,11,13,[[441,1,1,11,12],[464,1,1,12,13]]],[18,2,2,13,15,[[555,1,1,13,14],[616,1,1,14,15]]],[19,1,1,15,16,[[654,1,1,15,16]]],[22,2,2,16,18,[[688,1,1,16,17],[726,1,1,17,18]]],[23,3,3,18,21,[[749,1,1,18,19],[759,1,1,19,20],[777,1,1,20,21]]],[27,1,1,21,22,[[862,1,1,21,22]]],[34,1,1,22,23,[[903,1,1,22,23]]]],[564,940,1244,1566,5829,6111,6706,7490,8460,8864,8873,12981,13550,15140,16257,17172,17872,18633,19080,19323,19797,22104,22740]]],["+",[3,3,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]],[23,1,1,2,3,[[759,1,1,2,3]]]],[12981,16257,19323]]],["sand",[20,20,[[0,3,3,0,3,[[21,1,1,0,1],[31,1,1,1,2],[40,1,1,2,3]]],[1,1,1,3,4,[[51,1,1,3,4]]],[4,1,1,4,5,[[185,1,1,4,5]]],[5,1,1,5,6,[[197,1,1,5,6]]],[6,1,1,6,7,[[217,1,1,6,7]]],[8,1,1,7,8,[[248,1,1,7,8]]],[9,1,1,8,9,[[283,1,1,8,9]]],[10,2,2,9,11,[[294,2,2,9,11]]],[17,1,1,11,12,[[464,1,1,11,12]]],[18,1,1,12,13,[[555,1,1,12,13]]],[19,1,1,13,14,[[654,1,1,13,14]]],[22,2,2,14,16,[[688,1,1,14,15],[726,1,1,15,16]]],[23,2,2,16,18,[[749,1,1,16,17],[777,1,1,17,18]]],[27,1,1,18,19,[[862,1,1,18,19]]],[34,1,1,19,20,[[903,1,1,19,20]]]],[564,940,1244,1566,5829,6111,6706,7490,8460,8864,8873,13550,15140,17172,17872,18633,19080,19797,22104,22740]]]]},{"k":"H2345","v":[["brown",[4,4,[[0,4,4,0,4,[[29,4,4,0,4]]]],[862,863,865,870]]]]},{"k":"H2346","v":[["*",[133,123,[[1,2,2,0,2,[[63,2,2,0,2]]],[2,3,3,2,5,[[114,3,3,2,5]]],[4,2,2,5,7,[[155,1,1,5,6],[180,1,1,6,7]]],[5,4,3,7,10,[[188,2,1,7,8],[192,2,2,8,10]]],[8,3,3,10,13,[[260,1,1,10,11],[266,2,2,11,13]]],[9,7,6,13,19,[[277,4,3,13,16],[284,1,1,16,17],[286,2,2,17,19]]],[10,4,4,19,23,[[293,1,1,19,20],[294,1,1,20,21],[299,1,1,21,22],[310,1,1,22,23]]],[11,8,8,23,31,[[315,1,1,23,24],[318,2,2,24,26],[326,1,1,26,27],[330,2,2,27,29],[337,2,2,29,31]]],[13,12,9,31,40,[[374,1,1,31,32],[380,1,1,32,33],[391,1,1,33,34],[392,3,1,34,35],[393,1,1,35,36],[398,3,2,36,38],[399,1,1,38,39],[402,1,1,39,40]]],[15,32,29,40,69,[[413,1,1,40,41],[414,4,4,41,45],[415,4,4,45,49],[416,10,9,49,58],[417,1,1,58,59],[418,3,3,59,62],[419,1,1,62,63],[424,7,5,63,68],[425,1,1,68,69]]],[18,2,2,69,71,[[528,1,1,69,70],[532,1,1,70,71]]],[19,2,2,71,73,[[645,1,1,71,72],[652,1,1,72,73]]],[21,3,3,73,76,[[675,1,1,73,74],[678,2,2,74,76]]],[22,13,13,76,89,[[680,1,1,76,77],[700,2,2,77,79],[703,1,1,79,80],[704,1,1,80,81],[708,1,1,81,82],[714,2,2,82,84],[727,1,1,84,85],[734,1,1,85,86],[738,2,2,86,88],[740,1,1,88,89]]],[23,13,13,89,102,[[745,2,2,89,91],[759,1,1,91,92],[765,1,1,92,93],[783,2,2,93,95],[793,1,1,95,96],[794,1,1,96,97],[795,3,3,97,100],[796,2,2,100,102]]],[24,4,3,102,105,[[798,4,3,102,105]]],[25,10,9,105,114,[[827,4,4,105,109],[828,2,1,109,110],[839,2,2,110,112],[841,1,1,112,113],[843,1,1,113,114]]],[28,2,2,114,116,[[877,2,2,114,116]]],[29,4,4,116,120,[[879,3,3,116,119],[885,1,1,119,120]]],[33,2,2,120,122,[[901,1,1,120,121],[902,1,1,121,122]]],[37,1,1,122,123,[[912,1,1,122,123]]]],[1911,1918,3498,3499,3500,4980,5663,5884,5954,5969,7877,8019,8021,8279,8280,8283,8502,8569,8575,8817,8857,9066,9438,9603,9700,9704,9909,10050,10051,10226,10232,11351,11482,11727,11738,11758,11880,11893,11922,12012,12299,12315,12320,12322,12324,12335,12340,12342,12354,12360,12362,12365,12366,12369,12372,12374,12376,12378,12398,12402,12407,12416,12421,12651,12654,12655,12661,12662,12692,14709,14742,16912,17141,17605,17649,17650,17700,18062,18063,18130,18131,18230,18341,18342,18652,18758,18831,18839,18860,18961,18964,19335,19444,19927,19931,20154,20181,20224,20256,20270,20283,20290,20339,20340,20350,21104,21109,21110,21112,21132,21436,21445,21482,21572,22318,22320,22371,22374,22378,22471,22704,22720,22904]]],["+",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[8,1,1,1,2,[[266,1,1,1,2]]]],[3499,8021]]],["town",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5884]]],["wall",[90,82,[[1,2,2,0,2,[[63,2,2,0,2]]],[2,1,1,2,3,[[114,1,1,2,3]]],[5,3,3,3,6,[[188,1,1,3,4],[192,2,2,4,6]]],[8,2,2,6,8,[[260,1,1,6,7],[266,1,1,7,8]]],[9,7,6,8,14,[[277,4,3,8,11],[284,1,1,11,12],[286,2,2,12,14]]],[10,3,3,14,17,[[293,1,1,14,15],[299,1,1,15,16],[310,1,1,16,17]]],[11,6,6,17,23,[[315,1,1,17,18],[318,2,2,18,20],[326,1,1,20,21],[330,2,2,21,23]]],[13,10,7,23,30,[[391,1,1,23,24],[392,3,1,24,25],[393,1,1,25,26],[398,3,2,26,28],[399,1,1,28,29],[402,1,1,29,30]]],[15,30,27,30,57,[[413,1,1,30,31],[414,3,3,31,34],[415,4,4,34,38],[416,9,8,38,46],[417,1,1,46,47],[418,3,3,47,50],[419,1,1,50,51],[424,7,5,51,56],[425,1,1,56,57]]],[19,1,1,57,58,[[645,1,1,57,58]]],[21,2,2,58,60,[[678,2,2,58,60]]],[22,5,5,60,65,[[680,1,1,60,61],[700,1,1,61,62],[708,1,1,62,63],[714,2,2,63,65]]],[23,3,3,65,68,[[759,1,1,65,66],[793,1,1,66,67],[795,1,1,67,68]]],[24,3,2,68,70,[[798,3,2,68,70]]],[25,3,3,70,73,[[839,1,1,70,71],[841,1,1,71,72],[843,1,1,72,73]]],[28,2,2,73,75,[[877,2,2,73,75]]],[29,4,4,75,79,[[879,3,3,75,78],[885,1,1,78,79]]],[33,2,2,79,81,[[901,1,1,79,80],[902,1,1,80,81]]],[37,1,1,81,82,[[912,1,1,81,82]]]],[1911,1918,3500,5884,5954,5969,7877,8019,8279,8280,8283,8502,8569,8575,8817,9066,9438,9603,9700,9704,9909,10050,10051,11727,11738,11758,11880,11893,11922,12012,12299,12315,12322,12324,12335,12340,12342,12354,12360,12362,12365,12369,12372,12374,12376,12378,12398,12402,12407,12416,12421,12651,12654,12655,12661,12662,12692,16912,17649,17650,17700,18062,18230,18341,18342,19335,20154,20256,20340,20350,21445,21482,21572,22318,22320,22371,22374,22378,22471,22704,22720,22904]]],["walled",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3498]]],["walls",[39,38,[[4,2,2,0,2,[[155,1,1,0,1],[180,1,1,1,2]]],[10,1,1,2,3,[[294,1,1,2,3]]],[11,2,2,3,5,[[337,2,2,3,5]]],[13,2,2,5,7,[[374,1,1,5,6],[380,1,1,6,7]]],[15,2,2,7,9,[[414,1,1,7,8],[416,1,1,8,9]]],[18,2,2,9,11,[[528,1,1,9,10],[532,1,1,10,11]]],[19,1,1,11,12,[[652,1,1,11,12]]],[21,1,1,12,13,[[675,1,1,12,13]]],[22,8,8,13,21,[[700,1,1,13,14],[703,1,1,14,15],[704,1,1,15,16],[727,1,1,16,17],[734,1,1,17,18],[738,2,2,18,20],[740,1,1,20,21]]],[23,10,10,21,31,[[745,2,2,21,23],[765,1,1,23,24],[783,2,2,24,26],[794,1,1,26,27],[795,2,2,27,29],[796,2,2,29,31]]],[24,1,1,31,32,[[798,1,1,31,32]]],[25,7,6,32,38,[[827,4,4,32,36],[828,2,1,36,37],[839,1,1,37,38]]]],[4980,5663,8857,10226,10232,11351,11482,12320,12366,14709,14742,17141,17605,18063,18130,18131,18652,18758,18831,18839,18860,18961,18964,19444,19927,19931,20181,20224,20270,20283,20290,20339,21104,21109,21110,21112,21132,21436]]]]},{"k":"H2347","v":[["*",[24,24,[[0,1,1,0,1,[[44,1,1,0,1]]],[4,5,5,1,6,[[159,1,1,1,2],[165,1,1,2,3],[171,2,2,3,5],[177,1,1,5,6]]],[8,1,1,6,7,[[259,1,1,6,7]]],[15,1,1,7,8,[[425,1,1,7,8]]],[18,1,1,8,9,[[549,1,1,8,9]]],[22,1,1,9,10,[[691,1,1,9,10]]],[23,2,2,10,12,[[757,1,1,10,11],[765,1,1,11,12]]],[25,9,9,12,21,[[806,1,1,12,13],[808,2,2,13,15],[809,1,1,15,16],[810,2,2,16,18],[817,1,1,18,19],[821,1,1,19,20],[825,1,1,20,21]]],[28,1,1,21,22,[[877,1,1,21,22]]],[31,2,2,22,24,[[892,2,2,22,24]]]],[1378,5127,5280,5419,5427,5559,7849,12693,15013,17924,19280,19447,20557,20581,20586,20622,20627,20632,20767,20912,21070,22328,22578,22579]]],["+",[14,14,[[0,1,1,0,1,[[44,1,1,0,1]]],[4,3,3,1,4,[[159,1,1,1,2],[165,1,1,2,3],[171,1,1,3,4]]],[8,1,1,4,5,[[259,1,1,4,5]]],[15,1,1,5,6,[[425,1,1,5,6]]],[18,1,1,6,7,[[549,1,1,6,7]]],[22,1,1,7,8,[[691,1,1,7,8]]],[23,1,1,8,9,[[765,1,1,8,9]]],[25,3,3,9,12,[[808,1,1,9,10],[817,1,1,10,11],[821,1,1,11,12]]],[28,1,1,12,13,[[877,1,1,12,13]]],[31,1,1,13,14,[[892,1,1,13,14]]]],[1378,5127,5280,5419,7849,12693,15013,17924,19447,20581,20767,20912,22328,22579]]],["pity",[3,3,[[4,2,2,0,2,[[171,1,1,0,1],[177,1,1,1,2]]],[31,1,1,2,3,[[892,1,1,2,3]]]],[5427,5559,22578]]],["spare",[7,7,[[23,1,1,0,1,[[757,1,1,0,1]]],[25,6,6,1,7,[[806,1,1,1,2],[808,1,1,2,3],[809,1,1,3,4],[810,2,2,4,6],[825,1,1,6,7]]]],[19280,20557,20586,20622,20627,20632,21070]]]]},{"k":"H2348","v":[["*",[7,6,[[0,2,1,0,1,[[48,2,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[5,1,1,2,3,[[195,1,1,2,3]]],[6,1,1,3,4,[[215,1,1,3,4]]],[23,1,1,4,5,[[791,1,1,4,5]]],[25,1,1,5,6,[[826,1,1,5,6]]]],[1486,4899,6038,6640,20080,21099]]],["coast",[1,1,[[25,1,1,0,1,[[826,1,1,0,1]]]],[21099]]],["coasts",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6038]]],["haven",[2,1,[[0,2,1,0,1,[[48,2,1,0,1]]]],[1486]]],["shore",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[23,1,1,1,2,[[791,1,1,1,2]]]],[6640,20080]]],["side",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4899]]]]},{"k":"H2349","v":[["Hupham",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4528]]]]},{"k":"H2350","v":[["Huphamites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4528]]]]},{"k":"H2351","v":[["*",[164,158,[[0,12,12,0,12,[[5,1,1,0,1],[8,1,1,1,2],[14,1,1,2,3],[18,2,2,3,5],[23,3,3,5,8],[38,4,4,8,12]]],[1,10,9,12,21,[[61,1,1,12,13],[70,1,1,13,14],[74,1,1,14,15],[75,1,1,15,16],[76,1,1,16,17],[78,1,1,17,18],[82,2,1,18,19],[86,1,1,19,20],[89,1,1,20,21]]],[2,20,20,21,41,[[93,2,2,21,23],[95,1,1,23,24],[97,1,1,24,25],[98,1,1,25,26],[99,2,2,26,28],[102,1,1,28,29],[103,6,6,29,35],[105,1,1,35,36],[106,1,1,36,37],[107,1,1,37,38],[113,3,3,38,41]]],[3,13,13,41,54,[[121,2,2,41,43],[128,2,2,43,45],[131,2,2,45,47],[135,2,2,47,49],[147,2,2,49,51],[151,3,3,51,54]]],[4,8,6,54,60,[[175,4,3,54,57],[176,2,1,57,58],[177,1,1,58,59],[184,1,1,59,60]]],[5,2,2,60,62,[[188,1,1,60,61],[192,1,1,61,62]]],[6,3,2,62,64,[[222,2,1,62,63],[229,1,1,63,64]]],[8,1,1,64,65,[[244,1,1,64,65]]],[9,4,4,65,69,[[267,1,1,65,66],[279,2,2,66,68],[288,1,1,68,69]]],[10,6,5,69,74,[[296,1,1,69,70],[297,2,1,70,71],[298,1,1,71,72],[310,1,1,72,73],[311,1,1,73,74]]],[11,4,4,74,78,[[316,1,1,74,75],[322,1,1,75,76],[335,2,2,76,78]]],[13,6,6,78,84,[[371,1,1,78,79],[390,1,1,79,80],[395,1,1,80,81],[398,2,2,81,83],[399,1,1,83,84]]],[14,1,1,84,85,[[412,1,1,84,85]]],[15,2,2,85,87,[[425,2,2,85,87]]],[17,3,3,87,90,[[440,1,1,87,88],[453,1,1,88,89],[466,1,1,89,90]]],[18,4,4,90,94,[[495,1,1,90,91],[508,1,1,91,92],[518,1,1,92,93],[621,1,1,93,94]]],[19,6,6,94,100,[[628,1,1,94,95],[632,1,1,95,96],[634,1,1,96,97],[635,1,1,97,98],[649,1,1,98,99],[651,1,1,99,100]]],[20,1,1,100,101,[[660,1,1,100,101]]],[21,1,1,101,102,[[678,1,1,101,102]]],[22,8,8,102,110,[[683,1,1,102,103],[688,1,1,103,104],[693,1,1,104,105],[702,1,1,105,106],[711,1,1,106,107],[720,1,1,107,108],[729,2,2,108,110]]],[23,16,16,110,126,[[749,1,1,110,111],[750,1,1,111,112],[751,2,2,112,114],[753,1,1,114,115],[755,2,2,115,117],[758,1,1,117,118],[765,1,1,118,119],[777,1,1,119,120],[781,1,1,120,121],[788,4,4,121,125],[795,1,1,125,126]]],[24,7,7,126,133,[[797,1,1,126,127],[798,2,2,127,129],[800,4,4,129,133]]],[25,18,17,133,150,[[808,2,2,133,135],[812,1,1,135,136],[827,1,1,136,137],[829,1,1,137,138],[835,1,1,138,139],[841,4,4,139,143],[842,3,3,143,146],[843,1,1,146,147],[844,1,1,147,148],[847,1,1,148,149],[848,2,1,149,150]]],[27,1,1,150,151,[[868,1,1,150,151]]],[29,1,1,151,152,[[883,1,1,151,152]]],[32,1,1,152,153,[[899,1,1,152,153]]],[33,2,2,153,155,[[901,1,1,153,154],[902,1,1,154,155]]],[35,1,1,155,156,[[908,1,1,155,156]]],[37,2,2,156,158,[[919,1,1,156,157],[920,1,1,157,158]]]],[151,227,365,473,474,602,620,622,1161,1162,1164,1167,1862,2096,2206,2270,2293,2350,2480,2606,2729,2807,2816,2860,2934,2964,2981,2982,3098,3114,3119,3151,3152,3156,3164,3228,3238,3260,3449,3460,3469,3795,3796,4073,4074,4188,4189,4292,4298,4677,4683,4849,4850,4872,5510,5512,5513,5536,5552,5783,5888,5972,6878,7049,7417,8042,8334,8335,8645,8902,8943,8993,9442,9464,9606,9817,10169,10171,11277,11685,11807,11878,11880,11923,12265,12679,12691,12961,13293,13620,14160,14342,14548,16318,16420,16533,16587,16628,17028,17106,17358,17641,17764,17856,17963,18106,18286,18482,18693,18696,19059,19100,19136,19153,19196,19232,19239,19309,19444,19785,19895,20016,20019,20027,20031,20216,20330,20351,20353,20421,20425,20428,20434,20592,20596,20661,21111,21180,21334,21482,21496,21517,21521,21535,21543,21551,21559,21593,21657,21681,22179,22439,22674,22703,22722,22826,23002,23021]]],["+",[70,68,[[0,3,3,0,3,[[5,1,1,0,1],[18,1,1,1,2],[23,1,1,2,3]]],[1,8,7,3,10,[[74,1,1,3,4],[75,1,1,4,5],[76,1,1,5,6],[78,1,1,6,7],[82,2,1,7,8],[86,1,1,8,9],[89,1,1,9,10]]],[2,19,19,10,29,[[93,2,2,10,12],[95,1,1,12,13],[97,1,1,13,14],[98,1,1,14,15],[99,2,2,15,17],[102,1,1,17,18],[103,6,6,18,24],[105,1,1,24,25],[106,1,1,25,26],[113,3,3,26,29]]],[3,12,12,29,41,[[121,2,2,29,31],[128,2,2,31,33],[131,2,2,33,35],[135,2,2,35,37],[147,2,2,37,39],[151,2,2,39,41]]],[4,3,3,41,44,[[175,2,2,41,43],[184,1,1,43,44]]],[5,1,1,44,45,[[192,1,1,44,45]]],[6,1,1,45,46,[[229,1,1,45,46]]],[9,1,1,46,47,[[279,1,1,46,47]]],[10,3,2,47,49,[[297,2,1,47,48],[311,1,1,48,49]]],[11,3,3,49,52,[[316,1,1,49,50],[335,2,2,50,52]]],[13,1,1,52,53,[[398,1,1,52,53]]],[15,1,1,53,54,[[425,1,1,53,54]]],[17,1,1,54,55,[[453,1,1,54,55]]],[23,4,4,55,59,[[751,1,1,55,56],[753,1,1,56,57],[765,1,1,57,58],[781,1,1,58,59]]],[24,1,1,59,60,[[797,1,1,59,60]]],[25,7,7,60,67,[[835,1,1,60,61],[841,4,4,61,65],[844,1,1,65,66],[847,1,1,66,67]]],[35,1,1,67,68,[[908,1,1,67,68]]]],[151,473,602,2206,2270,2293,2350,2480,2606,2729,2807,2816,2860,2934,2964,2981,2982,3098,3114,3119,3151,3152,3156,3164,3228,3238,3449,3460,3469,3795,3796,4073,4074,4188,4189,4292,4298,4677,4683,4850,4872,5510,5512,5783,5972,7049,8334,8943,9464,9606,10169,10171,11878,12691,13293,19153,19196,19444,19895,20330,21334,21482,21496,21517,21521,21593,21657,22826]]],["abroad",[16,14,[[0,2,2,0,2,[[14,1,1,0,1],[18,1,1,1,2]]],[1,2,2,2,4,[[61,1,1,2,3],[70,1,1,3,4]]],[2,1,1,4,5,[[107,1,1,4,5]]],[4,4,3,5,8,[[175,2,2,5,7],[176,2,1,7,8]]],[6,2,1,8,9,[[222,2,1,8,9]]],[8,1,1,9,10,[[244,1,1,9,10]]],[13,1,1,10,11,[[395,1,1,10,11]]],[18,1,1,11,12,[[518,1,1,11,12]]],[19,1,1,12,13,[[632,1,1,12,13]]],[23,1,1,13,14,[[750,1,1,13,14]]]],[365,474,1862,2096,3260,5512,5513,5536,6878,7417,11807,14548,16533,19100]]],["fields",[2,2,[[17,1,1,0,1,[[440,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]]],[12961,16628]]],["forth",[1,1,[[0,1,1,0,1,[[38,1,1,0,1]]]],[1162]]],["highways",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22439]]],["more",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17358]]],["of",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11923]]],["out",[6,6,[[0,4,4,0,4,[[23,1,1,0,1],[38,3,3,1,4]]],[9,1,1,4,5,[[279,1,1,4,5]]],[15,1,1,5,6,[[425,1,1,5,6]]]],[620,1161,1164,1167,8335,12679]]],["outward",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4849]]],["street",[7,7,[[5,1,1,0,1,[[188,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,1,1,2,3,[[466,1,1,2,3]]],[22,2,2,3,5,[[720,1,1,3,4],[729,1,1,4,5]]],[24,2,2,5,7,[[798,1,1,5,6],[800,1,1,6,7]]]],[5888,8645,13620,18482,18696,20351,20421]]],["streets",[33,33,[[9,1,1,0,1,[[267,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[18,2,2,2,4,[[495,1,1,2,3],[621,1,1,3,4]]],[22,5,5,4,9,[[683,1,1,4,5],[688,1,1,5,6],[693,1,1,6,7],[702,1,1,7,8],[729,1,1,8,9]]],[23,11,11,9,20,[[749,1,1,9,10],[751,1,1,10,11],[755,2,2,11,13],[758,1,1,13,14],[777,1,1,14,15],[788,4,4,15,19],[795,1,1,19,20]]],[24,4,4,20,24,[[798,1,1,20,21],[800,3,3,21,24]]],[25,4,4,24,28,[[808,1,1,24,25],[812,1,1,25,26],[827,1,1,26,27],[829,1,1,27,28]]],[32,1,1,28,29,[[899,1,1,28,29]]],[33,2,2,29,31,[[901,1,1,29,30],[902,1,1,30,31]]],[37,2,2,31,33,[[919,1,1,31,32],[920,1,1,32,33]]]],[8042,9442,14160,16318,17764,17856,17963,18106,18693,19059,19136,19232,19239,19309,19785,20016,20019,20027,20031,20216,20353,20425,20428,20434,20596,20661,21111,21180,22674,22703,22722,23002,23021]]],["utter",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21681]]],["without",[24,24,[[0,2,2,0,2,[[8,1,1,0,1],[23,1,1,1,2]]],[4,1,1,2,3,[[177,1,1,2,3]]],[10,2,2,3,5,[[296,1,1,3,4],[298,1,1,4,5]]],[11,1,1,5,6,[[322,1,1,5,6]]],[13,3,3,6,9,[[371,1,1,6,7],[390,1,1,7,8],[398,1,1,8,9]]],[14,1,1,9,10,[[412,1,1,9,10]]],[18,1,1,10,11,[[508,1,1,10,11]]],[19,4,4,11,15,[[628,1,1,11,12],[634,1,1,12,13],[649,1,1,13,14],[651,1,1,14,15]]],[21,1,1,15,16,[[678,1,1,15,16]]],[22,1,1,16,17,[[711,1,1,16,17]]],[25,6,6,17,23,[[808,1,1,17,18],[842,3,3,18,21],[843,1,1,21,22],[848,1,1,22,23]]],[27,1,1,23,24,[[868,1,1,23,24]]]],[227,622,5552,8902,8993,9817,11277,11685,11880,12265,14342,16420,16587,17028,17106,17641,18286,20592,21535,21543,21551,21559,21681,22179]]]]},{"k":"H2352","v":[["*",[2,2,[[22,2,2,0,2,[[689,1,1,0,1],[720,1,1,1,2]]]],[17892,18502]]],["hole",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17892]]],["holes",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18502]]]]},{"k":"H2353","v":[["white",[2,2,[[16,2,2,0,2,[[426,1,1,0,1],[433,1,1,1,2]]]],[12708,12832]]]]},{"k":"H2354","v":[["Hur",[15,15,[[1,6,6,0,6,[[66,2,2,0,2],[73,1,1,2,3],[80,1,1,3,4],[84,1,1,4,5],[87,1,1,5,6]]],[3,1,1,6,7,[[147,1,1,6,7]]],[5,1,1,7,8,[[199,1,1,7,8]]],[12,5,5,8,13,[[339,3,3,8,11],[341,2,2,11,13]]],[13,1,1,13,14,[[367,1,1,13,14]]],[15,1,1,14,15,[[415,1,1,14,15]]]],[1993,1995,2191,2422,2561,2655,4672,6175,10325,10326,10356,10386,10389,11199,12336]]]]},{"k":"H2355","v":[["networks",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18013]]]]},{"k":"H2356","v":[["*",[7,7,[[8,1,1,0,1,[[249,1,1,0,1]]],[11,1,1,1,2,[[324,1,1,1,2]]],[17,1,1,2,3,[[465,1,1,2,3]]],[21,1,1,3,4,[[675,1,1,3,4]]],[25,1,1,4,5,[[809,1,1,4,5]]],[33,1,1,5,6,[[901,1,1,5,6]]],[37,1,1,6,7,[[924,1,1,6,7]]]],[7519,9859,13563,17602,20611,22711,23080]]],["caves",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13563]]],["hole",[3,3,[[11,1,1,0,1,[[324,1,1,0,1]]],[21,1,1,1,2,[[675,1,1,1,2]]],[25,1,1,2,3,[[809,1,1,2,3]]]],[9859,17602,20611]]],["holes",[3,3,[[8,1,1,0,1,[[249,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]],[37,1,1,2,3,[[924,1,1,2,3]]]],[7519,22711,23080]]]]},{"k":"H2357","v":[["pale",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18215]]]]},{"k":"H2358","v":[["white",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21942]]]]},{"k":"H2359","v":[["Huri",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10442]]]]},{"k":"H2360","v":[["Hurai",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10705]]]]},{"k":"H2361","v":[["Huram",[10,9,[[12,1,1,0,1,[[345,1,1,0,1]]],[13,9,8,1,9,[[368,4,4,1,5],[370,3,2,5,7],[374,1,1,7,8],[375,1,1,8,9]]]],[10580,11214,11222,11223,11224,11257,11262,11364,11385]]]]},{"k":"H2362","v":[["Hauran",[2,2,[[25,2,2,0,2,[[848,2,2,0,2]]]],[21695,21697]]]]},{"k":"H2363","v":[["*",[19,19,[[3,1,1,0,1,[[148,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[6,1,1,2,3,[[230,1,1,2,3]]],[8,1,1,3,4,[[255,1,1,3,4]]],[17,2,2,4,6,[[455,1,1,4,5],[466,1,1,5,6]]],[18,8,8,6,14,[[499,1,1,6,7],[515,1,1,7,8],[517,1,1,8,9],[532,1,1,9,10],[547,2,2,10,12],[596,1,1,12,13],[618,1,1,13,14]]],[20,1,1,14,15,[[660,1,1,14,15]]],[22,3,3,15,18,[[683,1,1,15,16],[706,1,1,16,17],[738,1,1,17,18]]],[34,1,1,18,19,[[903,1,1,18,19]]]],[4735,5793,7091,7768,13328,13593,14223,14512,14538,14740,14972,14976,15958,16277,17358,17758,18180,18843,22739]]],["+",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4735]]],["haste",[10,10,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[455,1,1,1,2]]],[18,7,7,2,9,[[499,1,1,2,3],[515,1,1,3,4],[517,1,1,4,5],[547,2,2,5,7],[596,1,1,7,8],[618,1,1,8,9]]],[22,1,1,9,10,[[706,1,1,9,10]]]],[5793,13328,14223,14512,14538,14972,14976,15958,16277,18180]]],["hasted",[2,2,[[6,1,1,0,1,[[230,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]]],[7091,13593]]],["hasten",[4,4,[[18,1,1,0,1,[[532,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]],[22,2,2,2,4,[[683,1,1,2,3],[738,1,1,3,4]]]],[14740,17358,17758,18843]]],["hasteth",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22739]]],["speed",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7768]]]]},{"k":"H2364","v":[["Hushah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10389]]]]},{"k":"H2365","v":[["Hushai",[14,13,[[9,12,11,0,11,[[281,2,2,0,2],[282,4,3,2,5],[283,6,6,5,11]]],[10,1,1,11,12,[[294,1,1,11,12]]],[12,1,1,12,13,[[364,1,1,12,13]]]],[8421,8426,8442,8443,8444,8454,8455,8456,8457,8463,8464,8860,11142]]]]},{"k":"H2366","v":[["*",[4,4,[[0,1,1,0,1,[[45,1,1,0,1]]],[12,3,3,1,4,[[344,1,1,1,2],[345,2,2,2,4]]]],[1409,10547,10583,10586]]],["+",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10586]]],["Hushim",[3,3,[[0,1,1,0,1,[[45,1,1,0,1]]],[12,2,2,1,3,[[344,1,1,1,2],[345,1,1,2,3]]]],[1409,10547,10583]]]]},{"k":"H2367","v":[["Husham",[4,4,[[0,2,2,0,2,[[35,2,2,0,2]]],[12,2,2,2,4,[[338,2,2,2,4]]]],[1074,1075,10297,10298]]]]},{"k":"H2368","v":[["*",[14,13,[[0,1,1,0,1,[[37,1,1,0,1]]],[1,6,6,1,7,[[77,3,3,1,4],[88,3,3,4,7]]],[10,1,1,7,8,[[311,1,1,7,8]]],[17,2,2,8,10,[[473,1,1,8,9],[476,1,1,9,10]]],[21,2,1,10,11,[[678,2,1,10,11]]],[23,1,1,11,12,[[766,1,1,11,12]]],[36,1,1,12,13,[[910,1,1,12,13]]]],[1137,2304,2314,2329,2670,2678,2694,9459,13807,13903,17646,19478,22878]]],["seal",[5,4,[[10,1,1,0,1,[[311,1,1,0,1]]],[17,2,2,1,3,[[473,1,1,1,2],[476,1,1,2,3]]],[21,2,1,3,4,[[678,2,1,3,4]]]],[9459,13807,13903,17646]]],["signet",[8,8,[[0,1,1,0,1,[[37,1,1,0,1]]],[1,5,5,1,6,[[77,3,3,1,4],[88,2,2,4,6]]],[23,1,1,6,7,[[766,1,1,6,7]]],[36,1,1,7,8,[[910,1,1,7,8]]]],[1137,2304,2314,2329,2678,2694,19478,22878]]],["signets",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2670]]]]},{"k":"H2369","v":[["*",[2,2,[[12,2,2,0,2,[[344,1,1,0,1],[348,1,1,1,2]]]],[10567,10717]]],["Hotham",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10567]]],["Hothan",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10717]]]]},{"k":"H2370","v":[["*",[31,29,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,30,28,1,29,[[851,8,7,1,8],[852,3,3,8,11],[853,7,7,11,18],[854,2,2,18,20],[856,10,9,20,29]]]],[12124,21766,21784,21789,21792,21799,21801,21803,21826,21832,21834,21842,21846,21847,21850,21855,21857,21860,21879,21897,21934,21935,21937,21939,21940,21942,21944,21946,21954]]],["+",[14,13,[[26,14,13,0,13,[[851,3,3,0,3],[853,2,2,3,5],[856,9,8,5,13]]]],[21766,21789,21792,21847,21850,21935,21937,21939,21940,21942,21944,21946,21954]]],["had",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21934]]],["saw",[4,4,[[26,4,4,0,4,[[852,1,1,0,1],[853,2,2,1,3],[854,1,1,3,4]]]],[21834,21842,21860,21879]]],["sawest",[5,4,[[26,5,4,0,4,[[851,4,3,0,3],[853,1,1,3,4]]]],[21799,21801,21803,21857]]],["see",[3,3,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,2,2,1,3,[[852,1,1,1,2],[854,1,1,2,3]]]],[12124,21832,21897]]],["seen",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[853,2,2,1,3]]]],[21784,21846,21855]]],["wont",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21826]]]]},{"k":"H2371","v":[["*",[23,21,[[10,2,2,0,2,[[309,2,2,0,2]]],[11,18,16,2,18,[[320,7,7,2,9],[321,2,2,9,11],[322,1,1,11,12],[324,3,2,12,14],[325,5,4,14,18]]],[13,2,2,18,20,[[388,2,2,18,20]]],[29,1,1,20,21,[[879,1,1,20,21]]]],[9402,9404,9735,9736,9739,9740,9742,9755,9756,9770,9771,9825,9867,9868,9874,9893,9895,9896,11649,11650,22368]]],["+",[1,1,[[11,1,1,0,1,[[325,1,1,0,1]]]],[9896]]],["Hazael",[22,20,[[10,2,2,0,2,[[309,2,2,0,2]]],[11,17,15,2,17,[[320,7,7,2,9],[321,2,2,9,11],[322,1,1,11,12],[324,3,2,12,14],[325,4,3,14,17]]],[13,2,2,17,19,[[388,2,2,17,19]]],[29,1,1,19,20,[[879,1,1,19,20]]]],[9402,9404,9735,9736,9739,9740,9742,9755,9756,9770,9771,9825,9867,9868,9874,9893,9895,11649,11650,22368]]]]},{"k":"H2372","v":[["*",[54,50,[[1,2,2,0,2,[[67,1,1,0,1],[73,1,1,1,2]]],[3,2,2,2,4,[[140,2,2,2,4]]],[17,9,9,4,13,[[443,1,1,4,5],[450,1,1,5,6],[454,2,2,6,8],[458,1,1,8,9],[459,1,1,9,10],[462,1,1,10,11],[469,1,1,11,12],[471,1,1,12,13]]],[18,9,9,13,22,[[488,2,2,13,15],[494,2,2,15,17],[504,1,1,17,18],[523,1,1,18,19],[535,2,2,19,21],[540,1,1,21,22]]],[19,3,3,22,25,[[649,1,1,22,23],[651,1,1,23,24],[656,1,1,24,25]]],[21,2,1,25,26,[[676,2,1,25,26]]],[22,12,10,26,36,[[679,1,1,26,27],[680,1,1,27,28],[691,1,1,28,29],[704,2,1,29,30],[708,2,1,30,31],[711,2,2,31,33],[725,1,1,33,34],[726,1,1,34,35],[735,1,1,35,36]]],[24,2,1,36,37,[[798,2,1,36,37]]],[25,8,8,37,45,[[813,1,1,37,38],[814,6,6,38,44],[822,1,1,44,45]]],[29,1,1,45,46,[[879,1,1,45,46]]],[32,2,2,46,48,[[893,1,1,46,47],[896,1,1,47,48]]],[34,1,1,48,49,[[903,1,1,48,49]]],[37,1,1,49,50,[[920,1,1,49,50]]]],[2020,2188,4450,4462,13046,13220,13323,13324,13428,13437,13493,13715,13761,14063,14066,14105,14118,14289,14622,14787,14789,14841,17044,17111,17244,17627,17655,17686,17907,18141,18227,18296,18299,18612,18620,18773,20346,20707,20714,20715,20716,20717,20724,20731,20973,22365,22580,22631,22732,23018]]],["+",[2,2,[[1,1,1,0,1,[[73,1,1,0,1]]],[22,1,1,1,2,[[725,1,1,1,2]]]],[2188,18612]]],["Look",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18299]]],["Prophesy",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18227]]],["Seest",[2,2,[[19,2,2,0,2,[[649,1,1,0,1],[656,1,1,1,2]]]],[17044,17244]]],["behold",[7,7,[[17,1,1,0,1,[[458,1,1,0,1]]],[18,6,6,1,7,[[488,2,2,1,3],[494,2,2,3,5],[504,1,1,5,6],[523,1,1,6,7]]]],[13428,14063,14066,14105,14118,14289,14622]]],["look",[2,2,[[21,1,1,0,1,[[676,1,1,0,1]]],[32,1,1,1,2,[[896,1,1,1,2]]]],[17627,22631]]],["prophesy",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18227]]],["provide",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2020]]],["saw",[7,7,[[3,2,2,0,2,[[140,2,2,0,2]]],[19,1,1,2,3,[[651,1,1,2,3]]],[22,2,2,3,5,[[679,1,1,3,4],[680,1,1,4,5]]],[29,1,1,5,6,[[879,1,1,5,6]]],[32,1,1,6,7,[[893,1,1,6,7]]]],[4450,4462,17111,17655,17686,22365,22580]]],["sawest",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18773]]],["see",[17,16,[[17,5,5,0,5,[[454,2,2,0,2],[459,1,1,2,3],[469,1,1,3,4],[471,1,1,4,5]]],[18,1,1,5,6,[[535,1,1,5,6]]],[21,1,1,6,7,[[676,1,1,6,7]]],[22,5,4,7,11,[[691,1,1,7,8],[704,2,1,8,9],[711,1,1,9,10],[726,1,1,10,11]]],[25,4,4,11,15,[[814,3,3,11,14],[822,1,1,14,15]]],[34,1,1,15,16,[[903,1,1,15,16]]]],[13323,13324,13437,13715,13761,14787,17627,17907,18141,18296,18620,20717,20724,20731,20973,22732]]],["seen",[9,8,[[17,2,2,0,2,[[450,1,1,0,1],[462,1,1,1,2]]],[18,1,1,2,3,[[540,1,1,2,3]]],[24,2,1,3,4,[[798,2,1,3,4]]],[25,3,3,4,7,[[814,3,3,4,7]]],[37,1,1,7,8,[[920,1,1,7,8]]]],[13220,13493,14841,20346,20714,20715,20716,23018]]],["seeth",[3,3,[[17,1,1,0,1,[[443,1,1,0,1]]],[18,1,1,1,2,[[535,1,1,1,2]]],[25,1,1,2,3,[[813,1,1,2,3]]]],[13046,14789,20707]]]]},{"k":"H2373","v":[["*",[13,12,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,9,8,2,10,[[96,4,3,2,5],[97,1,1,5,6],[98,2,2,6,8],[99,2,2,8,10]]],[3,2,2,10,12,[[122,1,1,10,11],[134,1,1,11,12]]]],[2362,2363,2909,2910,2913,2946,2973,2974,2991,2992,3843,4275]]],["breast",[11,10,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,7,6,2,8,[[96,4,3,2,5],[97,1,1,5,6],[99,2,2,6,8]]],[3,2,2,8,10,[[122,1,1,8,9],[134,1,1,9,10]]]],[2362,2363,2909,2910,2913,2946,2991,2992,3843,4275]]],["breasts",[2,2,[[2,2,2,0,2,[[98,2,2,0,2]]]],[2973,2974]]]]},{"k":"H2374","v":[["*",[18,18,[[9,1,1,0,1,[[290,1,1,0,1]]],[11,1,1,1,2,[[329,1,1,1,2]]],[12,3,3,2,5,[[358,1,1,2,3],[362,1,1,3,4],[366,1,1,4,5]]],[13,7,7,5,12,[[375,1,1,5,6],[378,1,1,6,7],[385,1,1,7,8],[395,2,2,8,10],[399,1,1,10,11],[401,1,1,11,12]]],[22,3,3,12,15,[[706,1,1,12,13],[707,1,1,13,14],[708,1,1,14,15]]],[25,1,1,15,16,[[823,1,1,15,16]]],[29,1,1,16,17,[[885,1,1,16,17]]],[32,1,1,17,18,[[895,1,1,17,18]]]],[8703,9996,10943,11051,11193,11393,11452,11578,11816,11821,11926,11981,18179,18203,18227,21004,22476,22615]]],["agreement",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18179]]],["prophets",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18227]]],["seeing",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[21004]]],["seer",[11,11,[[9,1,1,0,1,[[290,1,1,0,1]]],[12,3,3,1,4,[[358,1,1,1,2],[362,1,1,2,3],[366,1,1,3,4]]],[13,6,6,4,10,[[375,1,1,4,5],[378,1,1,5,6],[385,1,1,6,7],[395,2,2,7,9],[401,1,1,9,10]]],[29,1,1,10,11,[[885,1,1,10,11]]]],[8703,10943,11051,11193,11393,11452,11578,11816,11821,11981,22476]]],["seers",[4,4,[[11,1,1,0,1,[[329,1,1,0,1]]],[13,1,1,1,2,[[399,1,1,1,2]]],[22,1,1,2,3,[[707,1,1,2,3]]],[32,1,1,3,4,[[895,1,1,3,4]]]],[9996,11926,18203,22615]]]]},{"k":"H2375","v":[["Hazo",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[569]]]]},{"k":"H2376","v":[["*",[12,12,[[26,12,12,0,12,[[851,2,2,0,2],[853,4,4,2,6],[856,6,6,6,12]]]],[21777,21786,21842,21846,21847,21850,21934,21935,21940,21946,21948,21953]]],["look",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21953]]],["vision",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[856,1,1,1,2]]]],[21777,21935]]],["visions",[9,9,[[26,9,9,0,9,[[851,1,1,0,1],[853,4,4,1,5],[856,4,4,5,9]]]],[21786,21842,21846,21847,21850,21934,21940,21946,21948]]]]},{"k":"H2377","v":[["*",[35,34,[[8,1,1,0,1,[[238,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]],[13,1,1,2,3,[[398,1,1,2,3]]],[18,1,1,3,4,[[566,1,1,3,4]]],[19,1,1,4,5,[[656,1,1,4,5]]],[22,2,2,5,7,[[679,1,1,5,6],[707,1,1,6,7]]],[23,2,2,7,9,[[758,1,1,7,8],[767,1,1,8,9]]],[24,1,1,9,10,[[798,1,1,9,10]]],[25,7,7,10,17,[[808,2,2,10,12],[813,4,4,12,16],[814,1,1,16,17]]],[26,12,11,17,28,[[850,1,1,17,18],[857,7,6,18,24],[858,2,2,24,26],[859,1,1,26,27],[860,1,1,27,28]]],[27,1,1,28,29,[[873,1,1,28,29]]],[30,1,1,29,30,[[888,1,1,29,30]]],[32,1,1,30,31,[[895,1,1,30,31]]],[33,1,1,31,32,[[900,1,1,31,32]]],[34,2,2,32,34,[[904,2,2,32,34]]]],[7277,10878,11907,15345,17242,17655,18200,19307,19500,20341,20590,20603,20702,20703,20704,20707,20724,21754,21962,21963,21974,21976,21978,21987,22009,22012,22029,22050,22262,22511,22614,22685,22750,22751]]],["+",[1,1,[[32,1,1,0,1,[[895,1,1,0,1]]]],[22614]]],["vision",[31,30,[[8,1,1,0,1,[[238,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]],[13,1,1,2,3,[[398,1,1,2,3]]],[18,1,1,3,4,[[566,1,1,3,4]]],[19,1,1,4,5,[[656,1,1,4,5]]],[22,2,2,5,7,[[679,1,1,5,6],[707,1,1,6,7]]],[23,2,2,7,9,[[758,1,1,7,8],[767,1,1,8,9]]],[24,1,1,9,10,[[798,1,1,9,10]]],[25,6,6,10,16,[[808,2,2,10,12],[813,4,4,12,16]]],[26,11,10,16,26,[[857,7,6,16,22],[858,2,2,22,24],[859,1,1,24,25],[860,1,1,25,26]]],[30,1,1,26,27,[[888,1,1,26,27]]],[33,1,1,27,28,[[900,1,1,27,28]]],[34,2,2,28,30,[[904,2,2,28,30]]]],[7277,10878,11907,15345,17242,17655,18200,19307,19500,20341,20590,20603,20702,20703,20704,20707,21962,21963,21974,21976,21978,21987,22009,22012,22029,22050,22511,22685,22750,22751]]],["visions",[3,3,[[25,1,1,0,1,[[814,1,1,0,1]]],[26,1,1,1,2,[[850,1,1,1,2]]],[27,1,1,2,3,[[873,1,1,2,3]]]],[20724,21754,22262]]]]},{"k":"H2378","v":[["visions",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11393]]]]},{"k":"H2379","v":[["sight",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21848,21857]]]]},{"k":"H2380","v":[["*",[5,5,[[22,3,3,0,3,[[699,1,1,0,1],[706,1,1,1,2],[707,1,1,2,3]]],[26,2,2,3,5,[[857,2,2,3,5]]]],[18037,18182,18204,21966,21969]]],["agreement",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18182]]],["notable",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21966]]],["ones",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21969]]],["vision",[2,2,[[22,2,2,0,2,[[699,1,1,0,1],[707,1,1,1,2]]]],[18037,18204]]]]},{"k":"H2381","v":[["Haziel",[1,1,[[12,1,1,0,1,[[360,1,1,0,1]]]],[10992]]]]},{"k":"H2382","v":[["Hazaiah",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12593]]]]},{"k":"H2383","v":[["Hezion",[1,1,[[10,1,1,0,1,[[305,1,1,0,1]]]],[9267]]]]},{"k":"H2384","v":[["*",[9,9,[[9,1,1,0,1,[[273,1,1,0,1]]],[17,4,4,1,5,[[439,1,1,1,2],[442,1,1,2,3],[455,1,1,3,4],[468,1,1,4,5]]],[22,2,2,5,7,[[700,2,2,5,7]]],[28,1,1,7,8,[[877,1,1,7,8]]],[37,1,1,8,9,[[923,1,1,8,9]]]],[8197,12943,13022,13334,13665,18053,18057,22339,23063]]],["+",[3,3,[[17,2,2,0,2,[[439,1,1,0,1],[442,1,1,1,2]]],[37,1,1,2,3,[[923,1,1,2,3]]]],[12943,13022,23063]]],["vision",[5,5,[[9,1,1,0,1,[[273,1,1,0,1]]],[17,2,2,1,3,[[455,1,1,1,2],[468,1,1,2,3]]],[22,2,2,3,5,[[700,2,2,3,5]]]],[8197,13334,13665,18053,18057]]],["visions",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22339]]]]},{"k":"H2385","v":[["*",[3,3,[[17,2,2,0,2,[[463,1,1,0,1],[473,1,1,1,2]]],[37,1,1,2,3,[[920,1,1,2,3]]]],[13530,13818,23017]]],["clouds",[1,1,[[37,1,1,0,1,[[920,1,1,0,1]]]],[23017]]],["lightning",[2,2,[[17,2,2,0,2,[[463,1,1,0,1],[473,1,1,1,2]]]],[13530,13818]]]]},{"k":"H2386","v":[["*",[7,7,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[18,1,1,2,3,[[557,1,1,2,3]]],[19,1,1,3,4,[[638,1,1,3,4]]],[22,3,3,4,7,[[743,1,1,4,5],[744,2,2,5,7]]]],[3004,5298,15211,16710,18901,18925,18939]]],["boar",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15211]]],["swine",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3004,5298]]],["swine's",[4,4,[[19,1,1,0,1,[[638,1,1,0,1]]],[22,3,3,1,4,[[743,1,1,1,2],[744,2,2,2,4]]]],[16710,18901,18925,18939]]]]},{"k":"H2387","v":[["Hezir",[2,2,[[12,1,1,0,1,[[361,1,1,0,1]]],[15,1,1,1,2,[[422,1,1,1,2]]]],[11030,12569]]]]},{"k":"H2388","v":[["*",[290,266,[[0,6,6,0,6,[[18,1,1,0,1],[20,1,1,1,2],[40,2,2,2,4],[46,1,1,4,5],[47,1,1,5,6]]],[1,16,16,6,22,[[53,2,2,6,8],[56,2,2,8,10],[57,1,1,10,11],[58,3,3,11,14],[59,2,2,14,16],[60,1,1,16,17],[61,1,1,17,18],[63,3,3,18,21],[68,1,1,21,22]]],[2,1,1,22,23,[[114,1,1,22,23]]],[3,1,1,23,24,[[129,1,1,23,24]]],[4,9,9,24,33,[[153,1,1,24,25],[155,1,1,25,26],[163,1,1,26,27],[164,1,1,27,28],[174,1,1,28,29],[177,1,1,29,30],[183,3,3,30,33]]],[5,8,8,33,41,[[187,4,4,33,37],[196,1,1,37,38],[197,1,1,38,39],[203,1,1,39,40],[209,1,1,40,41]]],[6,12,12,41,53,[[211,1,1,41,42],[213,1,1,42,43],[217,3,3,43,46],[219,1,1,46,47],[226,2,2,47,49],[229,3,3,49,52],[230,1,1,52,53]]],[8,6,6,53,59,[[239,1,1,53,54],[250,1,1,54,55],[252,2,2,55,57],[258,1,1,57,58],[265,1,1,58,59]]],[9,18,15,59,74,[[267,1,1,59,60],[268,2,2,60,62],[269,2,2,62,64],[276,4,2,64,66],[277,2,1,66,67],[279,3,3,67,70],[281,1,1,70,71],[282,1,1,71,72],[284,1,1,72,73],[290,1,1,73,74]]],[10,9,8,74,82,[[291,1,1,74,75],[292,2,2,75,77],[299,1,1,77,78],[306,1,1,78,79],[310,4,3,79,82]]],[11,15,15,82,97,[[314,1,1,82,83],[315,1,1,83,84],[316,2,2,84,86],[324,6,6,86,92],[326,1,1,92,93],[327,1,1,93,94],[334,2,2,94,96],[337,1,1,96,97]]],[12,12,10,97,107,[[348,1,1,97,98],[356,4,2,98,100],[358,1,1,100,101],[359,1,1,101,102],[363,1,1,102,103],[365,3,3,103,106],[366,1,1,106,107]]],[13,39,38,107,145,[[367,1,1,107,108],[370,1,1,108,109],[373,1,1,109,110],[374,1,1,110,111],[377,3,3,111,114],[378,1,1,114,115],[379,3,3,115,118],[381,2,2,118,120],[382,1,1,120,121],[383,1,1,121,122],[385,1,1,122,123],[387,1,1,123,124],[389,1,1,124,125],[390,2,2,125,127],[391,3,3,127,130],[392,3,3,130,133],[393,2,2,133,135],[394,2,2,135,137],[395,2,2,137,139],[397,1,1,139,140],[398,3,2,140,142],[400,2,2,142,144],[401,1,1,144,145]]],[14,5,5,145,150,[[403,1,1,145,146],[408,1,1,146,147],[409,1,1,147,148],[411,1,1,148,149],[412,1,1,149,150]]],[15,42,34,150,184,[[414,1,1,150,151],[415,35,27,151,178],[416,3,3,178,181],[417,1,1,181,182],[418,1,1,182,183],[422,1,1,183,184]]],[17,7,7,184,191,[[437,2,2,184,186],[439,1,1,186,187],[443,2,2,187,189],[453,1,1,189,190],[462,1,1,190,191]]],[18,5,5,191,196,[[504,1,1,191,192],[508,1,1,192,193],[512,1,1,193,194],[541,1,1,194,195],[624,1,1,195,196]]],[19,4,4,196,200,[[630,1,1,196,197],[631,1,1,197,198],[634,1,1,198,199],[653,1,1,199,200]]],[22,21,20,200,220,[[682,1,1,200,201],[700,1,1,201,202],[705,1,1,202,203],[706,1,1,203,204],[711,1,1,204,205],[713,2,2,205,207],[717,1,1,207,208],[719,5,4,208,212],[720,1,1,212,213],[723,1,1,213,214],[729,1,1,214,215],[732,1,1,215,216],[734,3,3,216,219],[742,1,1,219,220]]],[23,15,15,220,235,[[749,1,1,220,221],[750,2,2,221,223],[752,2,2,223,225],[754,1,1,225,226],[764,1,1,226,227],[767,1,1,227,228],[775,1,1,228,229],[793,1,1,229,230],[794,3,3,230,233],[795,1,1,233,234],[796,1,1,234,235]]],[25,11,11,235,246,[[808,1,1,235,236],[814,1,1,236,237],[817,1,1,237,238],[823,1,1,238,239],[828,2,2,239,241],[831,3,3,241,244],[835,2,2,244,246]]],[26,13,9,246,255,[[859,6,3,246,249],[860,7,6,249,255]]],[27,1,1,255,256,[[868,1,1,255,256]]],[32,2,2,256,258,[[896,1,1,256,257],[899,1,1,257,258]]],[33,3,2,258,260,[[901,1,1,258,259],[902,2,1,259,260]]],[36,3,1,260,261,[[910,3,1,260,261]]],[37,5,4,261,265,[[918,4,3,261,264],[924,1,1,264,265]]],[38,1,1,265,266,[[927,1,1,265,266]]]],[473,531,1251,1252,1440,1453,1605,1622,1698,1707,1729,1744,1754,1777,1797,1804,1816,1849,1893,1897,1906,2045,3504,4095,4930,5003,5216,5263,5495,5558,5734,5735,5751,5857,5858,5860,5869,6089,6127,6288,6466,6537,6580,6702,6705,6714,6778,6975,6977,7028,7049,7053,7076,7306,7587,7653,7668,7826,7984,8033,8056,8065,8087,8110,8251,8252,8284,8328,8331,8345,8394,8447,8487,8696,8767,8772,8798,9060,9305,9430,9431,9433,9563,9602,9611,9630,9855,9856,9857,9858,9862,9864,9901,9944,10150,10151,10225,10683,10919,10920,10938,10977,11104,11150,11153,11163,11176,11195,11251,11346,11349,11425,11426,11431,11450,11460,11461,11474,11497,11498,11518,11524,11587,11628,11657,11682,11689,11707,11712,11715,11740,11741,11747,11760,11761,11779,11784,11794,11825,11858,11880,11882,11941,11943,11968,12022,12173,12201,12249,12256,12325,12331,12332,12333,12334,12335,12336,12337,12338,12339,12340,12341,12342,12343,12344,12345,12346,12347,12348,12349,12350,12351,12354,12355,12356,12357,12358,12359,12375,12376,12380,12398,12410,12578,12894,12900,12933,13044,13049,13285,13487,14299,14355,14412,14855,16364,16473,16503,16588,17158,17734,18073,18156,18186,18302,18323,18324,18413,18457,18458,18460,18464,18486,18562,18691,18725,18755,18757,18759,18892,19061,19112,19113,19158,19174,19205,19429,19498,19723,20151,20199,20208,20209,20224,20282,20590,20730,20811,20990,21130,21148,21225,21228,21229,21317,21329,22033,22034,22036,22037,22041,22042,22043,22057,22068,22193,22629,22682,22700,22726,22859,22985,22989,22999,23081,23133]]],["+",[37,37,[[1,9,9,0,9,[[53,1,1,0,1],[58,1,1,1,2],[59,2,2,2,4],[60,1,1,4,5],[63,3,3,5,8],[68,1,1,8,9]]],[5,1,1,9,10,[[197,1,1,9,10]]],[6,2,2,10,12,[[213,1,1,10,11],[219,1,1,11,12]]],[8,1,1,12,13,[[258,1,1,12,13]]],[10,2,2,13,15,[[306,1,1,13,14],[310,1,1,14,15]]],[11,5,5,15,20,[[324,4,4,15,19],[334,1,1,19,20]]],[13,9,9,20,29,[[377,3,3,20,23],[379,1,1,23,24],[381,1,1,24,25],[390,2,2,25,27],[398,1,1,27,28],[400,1,1,28,29]]],[15,1,1,29,30,[[418,1,1,29,30]]],[17,1,1,30,31,[[443,1,1,30,31]]],[22,1,1,31,32,[[719,1,1,31,32]]],[25,4,4,32,36,[[828,2,2,32,34],[831,2,2,34,36]]],[33,1,1,36,37,[[901,1,1,36,37]]]],[1622,1754,1797,1804,1816,1893,1897,1906,2045,6127,6580,6778,7826,9305,9431,9855,9856,9858,9862,10151,11425,11426,11431,11460,11497,11682,11689,11880,11941,12410,13049,18458,21130,21148,21228,21229,22700]]],["Strengthen",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18323]]],["amend",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11943]]],["caught",[5,5,[[1,1,1,0,1,[[53,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[9,1,1,2,3,[[268,1,1,2,3]]],[11,1,1,3,4,[[316,1,1,3,4]]],[19,1,1,4,5,[[634,1,1,4,5]]]],[1605,7653,8065,9630,16588]]],["clave",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12578]]],["confirm",[2,2,[[11,1,1,0,1,[[327,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[9944,22037]]],["confirmed",[1,1,[[11,1,1,0,1,[[326,1,1,0,1]]]],[9901]]],["constant",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11150]]],["constrained",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9611]]],["continued",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12398]]],["courage",[8,8,[[3,1,1,0,1,[[129,1,1,0,1]]],[9,1,1,1,2,[[276,1,1,1,2]]],[12,1,1,2,3,[[356,1,1,2,3]]],[13,1,1,3,4,[[381,1,1,3,4]]],[14,1,1,4,5,[[412,1,1,4,5]]],[18,2,2,5,7,[[504,1,1,5,6],[508,1,1,6,7]]],[22,1,1,7,8,[[719,1,1,7,8]]]],[4095,8252,10920,11498,12256,14299,14355,18457]]],["courageous",[2,2,[[5,1,1,0,1,[[209,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]]],[6466,8345]]],["courageously",[1,1,[[13,1,1,0,1,[[385,1,1,0,1]]]],[11587]]],["encourage",[4,4,[[4,2,2,0,2,[[153,1,1,0,1],[155,1,1,1,2]]],[9,1,1,2,3,[[277,1,1,2,3]]],[18,1,1,3,4,[[541,1,1,3,4]]]],[4930,5003,8284,14855]]],["encouraged",[2,2,[[13,2,2,0,2,[[397,1,1,0,1],[401,1,1,1,2]]]],[11858,11968]]],["established",[1,1,[[13,1,1,0,1,[[391,1,1,0,1]]]],[11707]]],["fast",[5,5,[[17,3,3,0,3,[[437,1,1,0,1],[443,1,1,1,2],[462,1,1,2,3]]],[23,2,2,3,5,[[752,1,1,3,4],[794,1,1,4,5]]]],[12894,13044,13487,19158,20199]]],["fasten",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19205]]],["fastened",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18458]]],["force",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5495]]],["fortified",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11741]]],["fortify",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22726]]],["hardened",[4,4,[[1,4,4,0,4,[[56,2,2,0,2],[57,1,1,2,3],[58,1,1,3,4]]]],[1698,1707,1729,1777]]],["harder",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19061]]],["held",[5,5,[[6,2,2,0,2,[[217,1,1,0,1],[226,1,1,1,2]]],[15,3,3,2,5,[[416,3,3,2,5]]]],[6714,6975,12375,12376,12380]]],["help",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11825]]],["himself",[9,9,[[0,1,1,0,1,[[47,1,1,0,1]]],[8,1,1,1,2,[[265,1,1,1,2]]],[13,6,6,2,8,[[378,1,1,2,3],[383,1,1,3,4],[387,1,1,4,5],[389,1,1,5,6],[391,1,1,6,7],[398,1,1,7,8]]],[25,1,1,8,9,[[808,1,1,8,9]]]],[1453,7984,11450,11524,11628,11657,11715,11880,20590]]],["hold",[32,31,[[0,2,2,0,2,[[18,1,1,0,1],[20,1,1,1,2]]],[1,1,1,2,3,[[58,1,1,2,3]]],[6,1,1,3,4,[[229,1,1,3,4]]],[8,1,1,4,5,[[250,1,1,4,5]]],[9,3,3,5,8,[[267,1,1,5,6],[279,1,1,6,7],[284,1,1,7,8]]],[10,3,3,8,11,[[291,1,1,8,9],[292,1,1,9,10],[299,1,1,10,11]]],[11,1,1,11,12,[[314,1,1,11,12]]],[13,1,1,12,13,[[373,1,1,12,13]]],[18,1,1,13,14,[[512,1,1,13,14]]],[19,2,2,14,16,[[630,1,1,14,15],[631,1,1,15,16]]],[22,8,8,16,24,[[682,1,1,16,17],[705,1,1,17,18],[719,1,1,18,19],[720,1,1,19,20],[734,3,3,20,23],[742,1,1,23,24]]],[23,5,5,24,29,[[750,2,2,24,26],[752,1,1,26,27],[794,2,2,27,29]]],[37,3,2,29,31,[[918,2,1,29,30],[924,1,1,30,31]]]],[473,531,1744,7053,7587,8033,8328,8487,8767,8798,9060,9563,11346,14412,16473,16503,17734,18156,18464,18486,18755,18757,18759,18892,19112,19113,19174,20208,20209,22999,23081]]],["holden",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18562]]],["holdeth",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22036]]],["leaneth",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8110]]],["maintain",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11104]]],["men",[1,1,[[9,1,1,0,1,[[276,1,1,0,1]]]],[8252]]],["mighty",[2,2,[[13,2,2,0,2,[[379,1,1,0,1],[393,1,1,1,2]]]],[11474,11761]]],["obtain",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22057]]],["prevail",[2,2,[[17,1,1,0,1,[[453,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[13285,22043]]],["prevailed",[7,7,[[0,1,1,0,1,[[46,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[9,1,1,2,3,[[290,1,1,2,3]]],[11,1,1,3,4,[[337,1,1,3,4]]],[12,1,1,4,5,[[358,1,1,4,5]]],[13,2,2,5,7,[[374,1,1,5,6],[393,1,1,6,7]]]],[1440,7668,8696,10225,10938,11349,11760]]],["received",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11251]]],["recovered",[1,1,[[22,1,1,0,1,[[717,1,1,0,1]]]],[18413]]],["relieve",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3504]]],["repair",[2,2,[[11,2,2,0,2,[[324,1,1,0,1],[334,1,1,1,2]]]],[9857,10150]]],["repaired",[37,29,[[11,1,1,0,1,[[324,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]],[15,35,27,2,29,[[415,35,27,2,29]]]],[9864,11794,12331,12332,12333,12334,12335,12336,12337,12338,12339,12340,12341,12342,12343,12344,12345,12346,12347,12348,12349,12350,12351,12354,12355,12356,12357,12358,12359]]],["retain",[1,1,[[17,1,1,0,1,[[437,1,1,0,1]]]],[12900]]],["retained",[2,2,[[6,2,2,0,2,[[217,1,1,0,1],[229,1,1,1,2]]]],[6702,7028]]],["retaineth",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22682]]],["seized",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20151]]],["sore",[4,4,[[0,2,2,0,2,[[40,2,2,0,2]]],[11,1,1,2,3,[[315,1,1,2,3]]],[23,1,1,3,4,[[796,1,1,3,4]]]],[1251,1252,9602,20282]]],["stout",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23133]]],["strength",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11176]]],["strengthen",[8,8,[[6,1,1,0,1,[[226,1,1,0,1]]],[14,1,1,1,2,[[408,1,1,1,2]]],[22,3,3,2,5,[[700,1,1,2,3],[711,1,1,3,4],[732,1,1,4,5]]],[23,1,1,5,6,[[767,1,1,5,6]]],[25,2,2,6,8,[[817,1,1,6,7],[835,1,1,7,8]]]],[6977,12173,18073,18302,18725,19498,20811,21329]]],["strengthened",[17,16,[[6,1,1,0,1,[[217,1,1,0,1]]],[9,1,1,1,2,[[268,1,1,1,2]]],[13,3,3,2,5,[[367,1,1,2,3],[392,1,1,3,4],[394,1,1,4,5]]],[14,2,2,5,7,[[403,1,1,5,6],[409,1,1,6,7]]],[15,1,1,7,8,[[414,1,1,7,8]]],[17,1,1,8,9,[[439,1,1,8,9]]],[18,1,1,9,10,[[624,1,1,9,10]]],[25,2,2,10,12,[[814,1,1,10,11],[835,1,1,11,12]]],[26,4,3,12,15,[[859,3,2,12,14],[860,1,1,14,15]]],[27,1,1,15,16,[[868,1,1,15,16]]]],[6705,8056,11195,11740,11784,12022,12201,12325,12933,16364,20730,21317,22033,22034,22042,22193]]],["strong",[44,38,[[4,4,4,0,4,[[163,1,1,0,1],[183,3,3,1,4]]],[5,6,6,4,10,[[187,4,4,4,8],[196,1,1,8,9],[203,1,1,9,10]]],[6,1,1,10,11,[[211,1,1,10,11]]],[8,1,1,11,12,[[239,1,1,11,12]]],[9,5,4,12,16,[[269,1,1,12,13],[276,2,1,13,14],[277,1,1,14,15],[282,1,1,15,16]]],[10,1,1,16,17,[[292,1,1,16,17]]],[12,5,4,17,21,[[356,2,1,17,18],[359,1,1,18,19],[365,2,2,19,21]]],[13,4,4,21,25,[[382,1,1,21,22],[391,1,1,22,23],[392,1,1,23,24],[398,1,1,24,25]]],[14,1,1,25,26,[[411,1,1,25,26]]],[22,2,2,26,28,[[706,1,1,26,27],[713,1,1,27,28]]],[23,1,1,28,29,[[795,1,1,28,29]]],[25,2,2,29,31,[[823,1,1,29,30],[831,1,1,30,31]]],[26,5,3,31,34,[[859,2,1,31,32],[860,3,2,32,34]]],[33,1,1,34,35,[[902,1,1,34,35]]],[36,3,1,35,36,[[910,3,1,35,36]]],[37,2,2,36,38,[[918,2,2,36,38]]]],[5216,5734,5735,5751,5857,5858,5860,5869,6089,6288,6537,7306,8087,8251,8284,8447,8772,10919,10977,11153,11163,11518,11712,11747,11882,12249,18186,18324,20224,20990,21225,22034,22041,22068,22726,22859,22985,22989]]],["stronger",[4,4,[[9,1,1,0,1,[[279,1,1,0,1]]],[10,2,2,1,3,[[310,2,2,1,3]]],[23,1,1,3,4,[[764,1,1,3,4]]]],[8331,9431,9433,19429]]],["sure",[1,1,[[4,1,1,0,1,[[164,1,1,0,1]]]],[5263]]],["taken",[2,2,[[22,1,1,0,1,[[719,1,1,0,1]]],[32,1,1,1,2,[[896,1,1,1,2]]]],[18460,22629]]],["taketh",[3,3,[[4,1,1,0,1,[[177,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]],[22,1,1,2,3,[[729,1,1,2,3]]]],[5558,17158,18691]]],["themselves",[2,2,[[6,1,1,0,1,[[230,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[7076,10683]]],["thyself",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9430]]],["took",[4,4,[[6,1,1,0,1,[[229,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]],[13,1,1,2,3,[[394,1,1,2,3]]],[23,1,1,3,4,[[775,1,1,3,4]]]],[7049,8394,11779,19723]]],["urgent",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1849]]],["valiantly",[1,1,[[12,1,1,0,1,[[356,1,1,0,1]]]],[10920]]],["withstand",[1,1,[[13,1,1,0,1,[[379,1,1,0,1]]]],[11461]]]]},{"k":"H2389","v":[["*",[57,55,[[1,7,6,0,6,[[52,1,1,0,1],[55,2,1,1,2],[59,1,1,2,3],[62,1,1,3,4],[68,1,1,4,5],[81,1,1,5,6]]],[3,3,3,6,9,[[129,2,2,6,8],[136,1,1,8,9]]],[4,10,10,9,19,[[155,1,1,9,10],[156,1,1,10,11],[157,1,1,11,12],[158,1,1,12,13],[159,2,2,13,15],[161,1,1,15,16],[163,1,1,16,17],[178,1,1,17,18],[186,1,1,18,19]]],[5,3,3,19,22,[[190,1,1,19,20],[200,1,1,20,21],[203,1,1,21,22]]],[6,1,1,22,23,[[228,1,1,22,23]]],[8,1,1,23,24,[[249,1,1,23,24]]],[9,1,1,24,25,[[277,1,1,24,25]]],[10,4,4,25,29,[[298,1,1,25,26],[307,1,1,26,27],[308,1,1,27,28],[309,1,1,28,29]]],[13,1,1,29,30,[[372,1,1,29,30]]],[15,1,1,30,31,[[413,1,1,30,31]]],[17,2,2,31,33,[[440,1,1,31,32],[472,1,1,32,33]]],[18,2,2,33,35,[[512,1,1,33,34],[613,1,1,34,35]]],[19,1,1,35,36,[[650,1,1,35,36]]],[22,3,3,36,39,[[705,1,1,36,37],[706,1,1,37,38],[718,1,1,38,39]]],[23,4,4,39,43,[[765,1,1,39,40],[775,1,1,40,41],[776,1,1,41,42],[794,1,1,42,43]]],[25,11,10,43,53,[[803,1,1,43,44],[804,5,4,44,48],[821,2,2,48,50],[827,1,1,50,51],[831,1,1,51,52],[835,1,1,52,53]]],[26,1,1,53,54,[[858,1,1,53,54]]],[29,1,1,54,55,[[880,1,1,54,55]]]],[1598,1656,1796,1876,2042,2449,4093,4106,4331,4999,5038,5068,5107,5119,5130,5183,5210,5574,5851,5934,6198,6293,7019,7560,8274,9027,9334,9343,9398,11314,12306,12966,13787,14420,16208,17055,18152,18166,18430,19445,19702,19752,20200,20496,20509,20510,20511,20516,20928,20929,21117,21226,21329,22003,22393]]],["+",[3,3,[[18,1,1,0,1,[[512,1,1,0,1]]],[25,2,2,1,3,[[803,1,1,1,2],[804,1,1,2,3]]]],[14420,20496,20509]]],["harder",[1,1,[[25,1,1,0,1,[[804,1,1,0,1]]]],[20511]]],["hottest",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8274]]],["loud",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2042]]],["mighty",[20,20,[[1,2,2,0,2,[[52,1,1,0,1],[81,1,1,1,2]]],[4,10,10,2,12,[[155,1,1,2,3],[156,1,1,3,4],[157,1,1,4,5],[158,1,1,5,6],[159,2,2,6,8],[161,1,1,8,9],[163,1,1,9,10],[178,1,1,10,11],[186,1,1,11,12]]],[5,1,1,12,13,[[190,1,1,12,13]]],[13,1,1,13,14,[[372,1,1,13,14]]],[17,1,1,14,15,[[440,1,1,14,15]]],[19,1,1,15,16,[[650,1,1,15,16]]],[22,1,1,16,17,[[706,1,1,16,17]]],[25,2,2,17,19,[[821,2,2,17,19]]],[26,1,1,19,20,[[858,1,1,19,20]]]],[1598,2449,4999,5038,5068,5107,5119,5130,5183,5210,5574,5851,5934,11314,12966,17055,18166,20928,20929,22003]]],["sore",[3,3,[[8,1,1,0,1,[[249,1,1,0,1]]],[10,2,2,1,3,[[307,1,1,1,2],[308,1,1,2,3]]]],[7560,9334,9343]]],["strong",[26,24,[[1,4,3,0,3,[[55,2,1,0,1],[59,1,1,1,2],[62,1,1,2,3]]],[3,2,2,3,5,[[129,1,1,3,4],[136,1,1,4,5]]],[5,2,2,5,7,[[200,1,1,5,6],[203,1,1,6,7]]],[6,1,1,7,8,[[228,1,1,7,8]]],[10,2,2,8,10,[[298,1,1,8,9],[309,1,1,9,10]]],[15,1,1,10,11,[[413,1,1,10,11]]],[17,1,1,11,12,[[472,1,1,11,12]]],[18,1,1,12,13,[[613,1,1,12,13]]],[22,2,2,13,15,[[705,1,1,13,14],[718,1,1,14,15]]],[23,3,3,15,18,[[765,1,1,15,16],[776,1,1,16,17],[794,1,1,17,18]]],[25,6,5,18,23,[[804,3,2,18,20],[827,1,1,20,21],[831,1,1,21,22],[835,1,1,22,23]]],[29,1,1,23,24,[[880,1,1,23,24]]]],[1656,1796,1876,4093,4331,6198,6293,7019,9027,9398,12306,13787,16208,18152,18430,19445,19752,20200,20510,20516,21117,21226,21329,22393]]],["stronger",[2,2,[[3,1,1,0,1,[[129,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[4106,19702]]]]},{"k":"H2390","v":[["+",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8082]]]]},{"k":"H2391","v":[["strength",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14119]]]]},{"k":"H2392","v":[["strength",[5,5,[[1,3,3,0,3,[[62,3,3,0,3]]],[29,1,1,3,4,[[884,1,1,3,4]]],[36,1,1,4,5,[[910,1,1,4,5]]]],[1870,1881,1883,22463,22877]]]]},{"k":"H2393","v":[["*",[3,3,[[6,1,1,0,1,[[214,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[6602,17818,22038]]],["mightily",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6602]]],["strength",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22038]]],["strong",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17818]]]]},{"k":"H2394","v":[["*",[7,7,[[6,1,1,0,1,[[218,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[11,1,1,2,3,[[324,1,1,2,3]]],[13,2,2,3,5,[[378,1,1,3,4],[392,1,1,4,5]]],[25,1,1,5,6,[[835,1,1,5,6]]],[31,1,1,6,7,[[891,1,1,6,7]]]],[6720,7256,9862,11438,11748,21317,22566]]],["force",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[25,1,1,1,2,[[835,1,1,1,2]]]],[7256,21317]]],["mightily",[1,1,[[31,1,1,0,1,[[891,1,1,0,1]]]],[22566]]],["repair",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9862]]],["sharply",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6720]]],["strengthened",[1,1,[[13,1,1,0,1,[[378,1,1,0,1]]]],[11438]]],["strong",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11748]]]]},{"k":"H2395","v":[["Hezeki",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10592]]]]},{"k":"H2396","v":[["*",[87,78,[[11,43,37,0,37,[[328,1,1,0,1],[330,17,15,1,16],[331,9,8,16,24],[332,15,12,24,36],[333,1,1,36,37]]],[12,2,2,37,39,[[340,2,2,37,39]]],[13,4,4,39,43,[[395,2,2,39,41],[396,1,1,41,42],[398,1,1,42,43]]],[15,2,2,43,45,[[419,1,1,43,44],[422,1,1,44,45]]],[19,1,1,45,46,[[652,1,1,45,46]]],[22,32,29,46,75,[[714,9,9,46,55],[715,9,8,55,63],[716,6,6,63,69],[717,8,6,69,75]]],[23,2,2,75,77,[[770,2,2,75,77]]],[35,1,1,77,78,[[906,1,1,77,78]]]],[9983,10025,10033,10034,10037,10038,10039,10040,10041,10043,10046,10053,10054,10055,10056,10061,10062,10064,10066,10070,10071,10075,10076,10081,10099,10101,10103,10106,10110,10111,10112,10113,10114,10117,10118,10119,10122,10374,10384,11809,11818,11851,11890,12441,12566,17114,18331,18332,18334,18337,18344,18345,18346,18348,18352,18353,18355,18357,18361,18362,18366,18367,18373,18391,18392,18393,18395,18399,18412,18413,18414,18415,18416,18417,18420,19590,19591,22788]]],["+",[2,2,[[11,1,1,0,1,[[332,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]]],[10099,18391]]],["Hezekiah",[83,74,[[11,42,36,0,36,[[328,1,1,0,1],[330,17,15,1,16],[331,9,8,16,24],[332,14,11,24,35],[333,1,1,35,36]]],[12,2,2,36,38,[[340,2,2,36,38]]],[13,4,4,38,42,[[395,2,2,38,40],[396,1,1,40,41],[398,1,1,41,42]]],[15,1,1,42,43,[[419,1,1,42,43]]],[19,1,1,43,44,[[652,1,1,43,44]]],[22,31,28,44,72,[[714,9,9,44,53],[715,9,8,53,61],[716,5,5,61,66],[717,8,6,66,72]]],[23,2,2,72,74,[[770,2,2,72,74]]]],[9983,10025,10033,10034,10037,10038,10039,10040,10041,10043,10046,10053,10054,10055,10056,10061,10062,10064,10066,10070,10071,10075,10076,10081,10101,10103,10106,10110,10111,10112,10113,10114,10117,10118,10119,10122,10374,10384,11809,11818,11851,11890,12441,17114,18331,18332,18334,18337,18344,18345,18346,18348,18352,18353,18355,18357,18361,18362,18366,18367,18373,18392,18393,18395,18399,18412,18413,18414,18415,18416,18417,18420,19590,19591]]],["Hizkiah",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22788]]],["Hizkijah",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12566]]]]},{"k":"H2397","v":[["*",[7,7,[[1,1,1,0,1,[[84,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]],[25,4,4,3,7,[[820,2,2,3,5],[830,1,1,5,6],[839,1,1,6,7]]]],[2553,10089,18381,20885,20890,21187,21429]]],["bracelets",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2553]]],["chains",[2,2,[[25,2,2,0,2,[[820,2,2,0,2]]]],[20885,20890]]],["hook",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10089,18381]]],["hooks",[2,2,[[25,2,2,0,2,[[830,1,1,0,1],[839,1,1,1,2]]]],[21187,21429]]]]},{"k":"H2398","v":[["*",[238,220,[[0,8,8,0,8,[[19,2,2,0,2],[30,1,1,2,3],[38,1,1,3,4],[39,1,1,4,5],[41,1,1,5,6],[42,1,1,6,7],[43,1,1,7,8]]],[1,10,10,8,18,[[54,1,1,8,9],[58,2,2,9,11],[59,1,1,11,12],[69,1,1,12,13],[72,1,1,13,14],[78,1,1,14,15],[81,3,3,15,18]]],[2,30,27,18,45,[[93,10,8,18,26],[94,10,10,26,36],[95,4,4,36,40],[97,1,1,40,41],[98,1,1,41,42],[103,2,2,42,44],[108,2,1,44,45]]],[3,18,17,45,62,[[122,1,1,45,46],[124,1,1,46,47],[128,1,1,47,48],[130,1,1,48,49],[131,2,2,49,51],[132,1,1,51,52],[135,5,4,52,56],[137,1,1,56,57],[138,1,1,57,58],[147,3,3,58,61],[148,1,1,61,62]]],[4,6,6,62,68,[[153,1,1,62,63],[161,2,2,63,65],[171,1,1,65,66],[172,1,1,66,67],[176,1,1,67,68]]],[5,2,2,68,70,[[193,2,2,68,70]]],[6,4,4,70,74,[[220,2,2,70,72],[221,1,1,72,73],[230,1,1,73,74]]],[8,14,12,74,86,[[237,2,1,74,75],[242,1,1,75,76],[247,2,2,76,78],[249,2,2,78,80],[250,2,2,80,82],[254,3,2,82,84],[259,1,1,84,85],[261,1,1,85,86]]],[9,4,4,86,90,[[278,1,1,86,87],[285,1,1,87,88],[290,2,2,88,90]]],[10,23,18,90,108,[[298,7,6,90,96],[304,3,2,96,98],[305,4,3,98,101],[306,6,4,101,105],[308,1,1,105,106],[311,1,1,106,107],[312,1,1,107,108]]],[11,18,18,108,126,[[315,1,1,108,109],[322,2,2,109,111],[325,3,3,111,114],[326,1,1,114,115],[327,4,4,115,119],[329,2,2,119,121],[330,1,1,121,122],[333,3,3,122,125],[335,1,1,125,126]]],[12,2,2,126,128,[[358,2,2,126,128]]],[13,8,7,128,135,[[372,7,6,128,134],[395,1,1,134,135]]],[15,6,4,135,139,[[413,2,1,135,136],[418,1,1,136,137],[421,1,1,137,138],[425,2,1,138,139]]],[17,12,12,139,151,[[436,2,2,139,141],[437,1,1,141,142],[440,1,1,142,143],[442,1,1,143,144],[443,1,1,144,145],[445,1,1,145,146],[459,1,1,146,147],[466,1,1,147,148],[468,1,1,148,149],[470,1,1,149,150],[476,1,1,150,151]]],[18,9,9,151,160,[[481,1,1,151,152],[516,1,1,152,153],[518,1,1,153,154],[528,2,2,154,156],[555,2,2,156,158],[583,1,1,158,159],[596,1,1,159,160]]],[19,6,6,160,166,[[635,1,1,160,161],[638,1,1,161,162],[640,1,1,162,163],[641,1,1,163,164],[646,1,1,164,165],[647,1,1,165,166]]],[20,7,7,166,173,[[660,1,1,166,167],[663,1,1,167,168],[665,2,2,168,170],[666,1,1,170,171],[667,2,2,171,173]]],[22,6,6,173,179,[[679,1,1,173,174],[707,1,1,174,175],[720,1,1,175,176],[721,1,1,176,177],[742,1,1,177,178],[743,1,1,178,179]]],[23,14,13,179,192,[[746,1,1,179,180],[747,1,1,180,181],[752,1,1,181,182],[758,2,2,182,184],[760,1,1,184,185],[776,1,1,185,186],[777,2,1,186,187],[781,1,1,187,188],[784,1,1,188,189],[788,1,1,189,190],[794,2,2,190,192]]],[24,3,3,192,195,[[797,1,1,192,193],[801,2,2,193,195]]],[25,16,14,195,209,[[804,2,1,195,196],[815,1,1,196,197],[817,1,1,197,198],[819,3,3,198,201],[829,1,1,201,202],[834,2,2,202,204],[838,1,1,204,205],[844,4,3,205,208],[846,1,1,208,209]]],[26,4,4,209,213,[[858,4,4,209,213]]],[27,5,4,213,217,[[865,1,1,213,214],[869,2,1,214,215],[871,1,1,215,216],[874,1,1,216,217]]],[32,1,1,217,218,[[899,1,1,217,218]]],[34,1,1,218,219,[[904,1,1,218,219]]],[35,1,1,219,220,[[906,1,1,219,220]]]],[501,504,912,1158,1173,1274,1299,1356,1648,1769,1776,1793,2071,2177,2372,2468,2469,2471,2797,2798,2809,2817,2818,2822,2823,2830,2831,2835,2836,2837,2840,2841,2843,2845,2846,2847,2851,2852,2853,2875,2932,2968,3160,3163,3303,3834,3960,4070,4148,4180,4181,4216,4301,4302,4308,4309,4347,4409,4683,4684,4687,4741,4933,5173,5175,5421,5445,5529,5987,5996,6821,6826,6856,7070,7265,7358,7470,7483,7541,7542,7584,7590,7710,7711,7850,7926,8299,8531,8702,8709,9016,9018,9020,9031,9032,9035,9234,9240,9275,9279,9283,9285,9296,9302,9309,9350,9473,9532,9579,9822,9824,9873,9877,9882,9920,9934,9943,9949,9953,9990,10004,10038,10130,10135,10136,10180,10942,10951,11304,11306,11308,11318,11319,11321,11815,12302,12414,12540,12697,12874,12891,12901,12975,13028,13033,13100,13455,13618,13677,13726,13913,13969,14513,14546,14695,14698,15130,15145,15657,15909,16638,16719,16769,16793,16927,16956,17359,17403,17449,17455,17470,17477,17493,17658,18214,18504,18532,18890,18917,19000,19027,19167,19300,19313,19346,19766,19783,19892,19944,20033,20173,20180,20318,20449,20458,20523,20744,20813,20853,20869,20873,21173,21292,21296,21420,21592,21594,21595,21648,21993,21996,21999,22003,22140,22205,22234,22268,22673,22758,22804]]],["+",[28,28,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,2,2,1,3,[[72,1,1,1,2],[78,1,1,2,3]]],[2,5,5,3,8,[[94,1,1,3,4],[95,1,1,4,5],[97,1,1,5,6],[103,2,2,6,8]]],[3,2,2,8,10,[[135,2,2,8,10]]],[8,1,1,10,11,[[247,1,1,10,11]]],[10,9,9,11,20,[[304,1,1,11,12],[305,3,3,12,15],[306,3,3,15,18],[311,1,1,18,19],[312,1,1,19,20]]],[11,1,1,20,21,[[333,1,1,20,21]]],[17,1,1,21,22,[[440,1,1,21,22]]],[18,1,1,22,23,[[516,1,1,22,23]]],[22,1,1,23,24,[[707,1,1,23,24]]],[24,1,1,24,25,[[797,1,1,24,25]]],[25,3,3,25,28,[[844,2,2,25,27],[846,1,1,27,28]]]],[501,2177,2372,2846,2875,2932,3160,3163,4301,4302,7483,9234,9275,9279,9283,9296,9302,9309,9473,9532,10135,12975,14513,18214,20318,21594,21595,21648]]],["Purge",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14698]]],["against",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16638]]],["blame",[2,2,[[0,2,2,0,2,[[42,1,1,0,1],[43,1,1,1,2]]]],[1299,1356]]],["cleanse",[2,2,[[25,2,2,0,2,[[844,2,2,0,2]]]],[21592,21594]]],["committed",[6,6,[[2,2,2,0,2,[[93,1,1,0,1],[94,1,1,1,2]]],[10,1,1,2,3,[[304,1,1,2,3]]],[23,1,1,3,4,[[760,1,1,3,4]]],[25,2,2,4,6,[[817,1,1,4,5],[834,1,1,5,6]]]],[2830,2837,9240,19346,20813,21296]]],["done",[2,1,[[2,2,1,0,1,[[108,2,1,0,1]]]],[3303]]],["fault",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1648]]],["himself",[2,2,[[3,2,2,0,2,[[135,2,2,0,2]]]],[4301,4309]]],["loss",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[912]]],["miss",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7070]]],["offended",[4,4,[[0,2,2,0,2,[[19,1,1,0,1],[39,1,1,1,2]]],[11,1,1,2,3,[[330,1,1,2,3]]],[23,1,1,3,4,[[781,1,1,3,4]]]],[504,1173,10038,19892]]],["purified",[2,2,[[3,2,2,0,2,[[124,1,1,0,1],[147,1,1,1,2]]]],[3960,4687]]],["purify",[3,3,[[3,3,3,0,3,[[135,1,1,0,1],[147,2,2,1,3]]]],[4308,4683,4684]]],["reconciliation",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11815]]],["sin",[55,51,[[0,2,2,0,2,[[38,1,1,0,1],[41,1,1,1,2]]],[1,1,1,2,3,[[69,1,1,2,3]]],[2,8,8,3,11,[[93,3,3,3,6],[94,3,3,6,9],[95,1,1,9,10],[98,1,1,10,11]]],[3,2,2,11,13,[[131,1,1,11,12],[132,1,1,12,13]]],[4,2,2,13,15,[[172,1,1,13,14],[176,1,1,14,15]]],[8,6,5,15,20,[[237,2,1,15,16],[249,2,2,16,18],[254,2,2,18,20]]],[10,3,3,20,23,[[298,1,1,20,21],[304,1,1,21,22],[306,1,1,22,23]]],[11,14,14,23,37,[[315,1,1,23,24],[322,2,2,24,26],[325,3,3,26,29],[326,1,1,29,30],[327,4,4,30,34],[329,1,1,34,35],[333,1,1,35,36],[335,1,1,36,37]]],[13,2,2,37,39,[[372,2,2,37,39]]],[15,3,2,39,41,[[418,1,1,39,40],[425,2,1,40,41]]],[17,3,3,41,44,[[437,1,1,41,42],[445,1,1,42,43],[466,1,1,43,44]]],[18,2,2,44,46,[[481,1,1,44,45],[596,1,1,45,46]]],[20,1,1,46,47,[[663,1,1,46,47]]],[23,1,1,47,48,[[776,1,1,47,48]]],[25,2,1,48,49,[[804,2,1,48,49]]],[27,3,2,49,51,[[869,2,1,49,50],[874,1,1,50,51]]]],[1158,1274,2071,2797,2798,2822,2831,2845,2847,2851,2968,4180,4216,5445,5529,7265,7541,7542,7710,7711,9031,9234,9285,9579,9822,9824,9873,9877,9882,9920,9934,9943,9949,9953,10004,10130,10180,11304,11318,12414,12697,12901,13100,13618,13969,15909,17403,19766,20523,22205,22268]]],["sinful",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17658]]],["sinned",[101,98,[[1,6,6,0,6,[[58,2,2,0,2],[59,1,1,2,3],[81,3,3,3,6]]],[2,12,11,6,17,[[93,6,5,6,11],[94,5,5,11,16],[95,1,1,16,17]]],[3,6,6,17,23,[[122,1,1,17,18],[128,1,1,18,19],[130,1,1,19,20],[137,1,1,20,21],[138,1,1,21,22],[148,1,1,22,23]]],[4,3,3,23,26,[[153,1,1,23,24],[161,2,2,24,26]]],[5,2,2,26,28,[[193,2,2,26,28]]],[6,3,3,28,31,[[220,2,2,28,30],[221,1,1,30,31]]],[8,7,7,31,38,[[242,1,1,31,32],[247,1,1,32,33],[250,2,2,33,35],[254,1,1,35,36],[259,1,1,36,37],[261,1,1,37,38]]],[9,4,4,38,42,[[278,1,1,38,39],[285,1,1,39,40],[290,2,2,40,42]]],[10,8,8,42,50,[[298,4,4,42,46],[305,1,1,46,47],[306,2,2,47,49],[308,1,1,49,50]]],[11,2,2,50,52,[[329,1,1,50,51],[333,1,1,51,52]]],[12,2,2,52,54,[[358,2,2,52,54]]],[13,4,4,54,58,[[372,4,4,54,58]]],[15,3,2,58,60,[[413,2,1,58,59],[421,1,1,59,60]]],[17,6,6,60,66,[[436,2,2,60,62],[442,1,1,62,63],[443,1,1,63,64],[459,1,1,64,65],[468,1,1,65,66]]],[18,5,5,66,71,[[518,1,1,66,67],[528,1,1,67,68],[555,2,2,68,70],[583,1,1,70,71]]],[22,3,3,71,74,[[720,1,1,71,72],[721,1,1,72,73],[742,1,1,73,74]]],[23,11,10,74,84,[[746,1,1,74,75],[747,1,1,75,76],[752,1,1,76,77],[758,2,2,77,79],[777,2,1,79,80],[784,1,1,80,81],[788,1,1,81,82],[794,2,2,82,84]]],[24,2,2,84,86,[[801,2,2,84,86]]],[25,3,3,86,89,[[819,1,1,86,87],[829,1,1,87,88],[838,1,1,88,89]]],[26,4,4,89,93,[[858,4,4,89,93]]],[27,2,2,93,95,[[865,1,1,93,94],[871,1,1,94,95]]],[32,1,1,95,96,[[899,1,1,95,96]]],[34,1,1,96,97,[[904,1,1,96,97]]],[35,1,1,97,98,[[906,1,1,97,98]]]],[1769,1776,1793,2468,2469,2471,2798,2809,2817,2818,2823,2835,2836,2840,2841,2843,2853,3834,4070,4148,4347,4409,4741,4933,5173,5175,5987,5996,6821,6826,6856,7358,7470,7584,7590,7710,7850,7926,8299,8531,8702,8709,9018,9020,9032,9035,9279,9296,9302,9350,9990,10136,10942,10951,11306,11308,11319,11321,12302,12540,12874,12891,13028,13033,13455,13677,14546,14695,15130,15145,15657,18504,18532,18890,19000,19027,19167,19300,19313,19783,19944,20033,20173,20180,20449,20458,20873,21173,21420,21993,21996,21999,22003,22140,22234,22673,22758,22804]]],["sinner",[8,8,[[19,2,2,0,2,[[638,1,1,0,1],[640,1,1,1,2]]],[20,5,5,2,7,[[660,1,1,2,3],[665,1,1,3,4],[666,1,1,4,5],[667,2,2,5,7]]],[22,1,1,7,8,[[743,1,1,7,8]]]],[16719,16769,17359,17455,17470,17477,17493,18917]]],["sinnest",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13726]]],["sinneth",[12,12,[[3,1,1,0,1,[[131,1,1,0,1]]],[4,1,1,1,2,[[171,1,1,1,2]]],[10,1,1,2,3,[[298,1,1,2,3]]],[13,1,1,3,4,[[372,1,1,3,4]]],[19,3,3,4,7,[[641,1,1,4,5],[646,1,1,5,6],[647,1,1,6,7]]],[20,1,1,7,8,[[665,1,1,7,8]]],[25,4,4,8,12,[[815,1,1,8,9],[819,2,2,9,11],[834,1,1,11,12]]]],[4181,5421,9031,11318,16793,16927,16956,17449,20744,20853,20869,21292]]],["sinning",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2852]]],["themselves",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13913]]],["trespass",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9016]]]]},{"k":"H2399","v":[["*",[33,33,[[0,1,1,0,1,[[40,1,1,0,1]]],[2,4,4,1,5,[[108,1,1,1,2],[109,1,1,2,3],[111,1,1,3,4],[113,1,1,4,5]]],[3,4,4,5,9,[[125,1,1,5,6],[134,2,2,6,8],[143,1,1,8,9]]],[4,8,8,9,17,[[167,1,1,9,10],[171,1,1,10,11],[173,1,1,11,12],[174,1,1,12,13],[175,2,2,13,15],[176,2,2,15,17]]],[11,2,2,17,19,[[322,1,1,17,18],[326,1,1,18,19]]],[13,1,1,19,20,[[391,1,1,19,20]]],[18,3,3,20,23,[[528,2,2,20,22],[580,1,1,22,23]]],[20,1,1,23,24,[[668,1,1,23,24]]],[22,4,4,24,28,[[679,1,1,24,25],[709,1,1,25,26],[716,1,1,26,27],[731,1,1,27,28]]],[24,2,2,28,30,[[797,1,1,28,29],[799,1,1,29,30]]],[25,1,1,30,31,[[824,1,1,30,31]]],[26,1,1,31,32,[[858,1,1,31,32]]],[27,1,1,32,33,[[873,1,1,32,33]]]],[1204,3298,3338,3378,3461,3978,4279,4289,4557,5328,5421,5469,5496,5521,5522,5540,5541,9822,9902,11708,14696,14700,15559,17497,17672,18257,18407,18723,20318,20393,21056,22004,22260]]],["+",[2,2,[[18,1,1,0,1,[[528,1,1,0,1]]],[24,1,1,1,2,[[797,1,1,1,2]]]],[14700,20318]]],["faults",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1204]]],["offences",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17497]]],["sin",[22,22,[[2,4,4,0,4,[[108,1,1,0,1],[109,1,1,1,2],[111,1,1,2,3],[113,1,1,3,4]]],[3,4,4,4,8,[[125,1,1,4,5],[134,2,2,5,7],[143,1,1,7,8]]],[4,8,8,8,16,[[167,1,1,8,9],[171,1,1,9,10],[173,1,1,10,11],[174,1,1,11,12],[175,2,2,12,14],[176,2,2,14,16]]],[11,1,1,16,17,[[326,1,1,16,17]]],[13,1,1,17,18,[[391,1,1,17,18]]],[18,1,1,18,19,[[528,1,1,18,19]]],[22,2,2,19,21,[[709,1,1,19,20],[731,1,1,20,21]]],[27,1,1,21,22,[[873,1,1,21,22]]]],[3298,3338,3378,3461,3978,4279,4289,4557,5328,5421,5469,5496,5521,5522,5540,5541,9902,11708,14696,18257,18723,22260]]],["sins",[7,7,[[11,1,1,0,1,[[322,1,1,0,1]]],[18,1,1,1,2,[[580,1,1,1,2]]],[22,2,2,2,4,[[679,1,1,2,3],[716,1,1,3,4]]],[24,1,1,4,5,[[799,1,1,4,5]]],[25,1,1,5,6,[[824,1,1,5,6]]],[26,1,1,6,7,[[858,1,1,6,7]]]],[9822,15559,17672,18407,20393,21056,22004]]]]},{"k":"H2400","v":[["*",[19,19,[[0,1,1,0,1,[[12,1,1,0,1]]],[3,2,2,1,3,[[132,1,1,1,2],[148,1,1,2,3]]],[8,1,1,3,4,[[250,1,1,3,4]]],[10,1,1,4,5,[[291,1,1,4,5]]],[18,6,6,5,11,[[478,2,2,5,7],[502,1,1,7,8],[503,1,1,8,9],[528,1,1,9,10],[581,1,1,10,11]]],[19,3,3,11,14,[[628,1,1,11,12],[640,1,1,12,13],[650,1,1,13,14]]],[22,3,3,14,17,[[679,1,1,14,15],[691,1,1,15,16],[711,1,1,16,17]]],[29,2,2,17,19,[[887,2,2,17,19]]]],[331,4232,4732,7578,8738,13940,13944,14259,14282,14704,15606,16410,16768,17061,17682,17915,18293,22503,22505]]],["+",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7578]]],["offenders",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8738]]],["sinful",[2,2,[[3,1,1,0,1,[[148,1,1,0,1]]],[29,1,1,1,2,[[887,1,1,1,2]]]],[4732,22503]]],["sinners",[15,15,[[0,1,1,0,1,[[12,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[18,6,6,2,8,[[478,2,2,2,4],[502,1,1,4,5],[503,1,1,5,6],[528,1,1,6,7],[581,1,1,7,8]]],[19,3,3,8,11,[[628,1,1,8,9],[640,1,1,9,10],[650,1,1,10,11]]],[22,3,3,11,14,[[679,1,1,11,12],[691,1,1,12,13],[711,1,1,13,14]]],[29,1,1,14,15,[[887,1,1,14,15]]]],[331,4232,13940,13944,14259,14282,14704,15606,16410,16768,17061,17682,17915,18293,22505]]]]},{"k":"H2401","v":[["*",[8,8,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,3,3,1,4,[[81,3,3,1,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[18,3,3,5,8,[[509,1,1,5,6],[517,1,1,6,7],[586,1,1,7,8]]]],[504,2459,2468,2469,10004,14356,14531,15762]]],["offering",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14531]]],["sin",[7,7,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,3,3,1,4,[[81,3,3,1,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[18,2,2,5,7,[[509,1,1,5,6],[586,1,1,6,7]]]],[504,2459,2468,2469,10004,14356,15762]]]]},{"k":"H2402","v":[["sin",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17757]]]]},{"k":"H2403","v":[["*",[294,270,[[0,4,4,0,4,[[3,1,1,0,1],[17,1,1,1,2],[30,1,1,2,3],[49,1,1,3,4]]],[1,9,9,4,13,[[59,1,1,4,5],[78,2,2,5,7],[79,1,1,7,8],[81,3,3,8,11],[83,2,2,11,13]]],[2,82,66,13,79,[[93,20,15,13,28],[94,12,8,28,36],[95,4,3,36,39],[96,2,2,39,41],[97,3,2,41,43],[98,7,7,43,50],[99,4,3,50,53],[101,2,2,53,55],[103,5,4,55,59],[104,2,2,59,61],[105,14,12,61,73],[108,2,1,73,74],[112,1,1,74,75],[115,4,4,75,79]]],[3,43,42,79,121,[[121,2,2,79,81],[122,3,3,81,84],[123,13,13,84,97],[124,3,3,97,100],[128,1,1,100,101],[131,3,3,101,104],[132,1,1,104,105],[134,1,1,105,106],[135,2,2,106,108],[144,2,2,108,110],[145,11,10,110,120],[148,1,1,120,121]]],[4,4,4,121,125,[[161,3,3,121,124],[171,1,1,124,125]]],[5,1,1,125,126,[[210,1,1,125,126]]],[8,6,6,126,132,[[237,1,1,126,127],[247,1,1,127,128],[249,1,1,128,129],[250,2,2,129,131],[255,1,1,131,132]]],[9,1,1,132,133,[[278,1,1,132,133]]],[10,18,16,133,149,[[298,3,3,133,136],[302,1,1,136,137],[303,1,1,137,138],[304,2,2,138,140],[305,4,4,140,144],[306,7,5,144,149]]],[11,15,15,149,164,[[315,1,1,149,150],[322,1,1,150,151],[324,1,1,151,152],[325,3,3,152,155],[326,1,1,155,156],[327,4,4,156,160],[329,1,1,160,161],[333,2,2,161,163],[336,1,1,163,164]]],[13,9,9,164,173,[[372,3,3,164,167],[373,1,1,167,168],[394,1,1,168,169],[395,3,3,169,172],[399,1,1,172,173]]],[14,1,1,173,174,[[410,1,1,173,174]]],[15,5,5,174,179,[[413,1,1,174,175],[416,1,1,175,176],[421,2,2,176,178],[422,1,1,178,179]]],[17,6,5,179,184,[[445,1,1,179,180],[448,2,1,180,181],[449,1,1,181,182],[469,1,1,182,183],[470,1,1,183,184]]],[18,13,12,184,196,[[502,2,2,184,186],[509,2,1,186,187],[515,2,2,187,189],[528,2,2,189,191],[536,2,2,191,193],[556,1,1,193,194],[562,1,1,194,195],[586,1,1,195,196]]],[19,7,7,196,203,[[632,1,1,196,197],[637,1,1,197,198],[640,1,1,198,199],[641,1,1,199,200],[647,1,1,200,201],[648,1,1,201,202],[651,1,1,202,203]]],[22,12,11,203,214,[[681,1,1,203,204],[684,1,1,204,205],[705,1,1,205,206],[708,2,1,206,207],[718,1,1,207,208],[721,2,2,208,210],[722,1,1,210,211],[736,1,1,211,212],[737,2,2,212,214]]],[23,13,13,214,227,[[749,1,1,214,215],[758,1,1,215,216],[759,1,1,216,217],[760,2,2,217,219],[761,2,2,219,221],[762,1,1,221,222],[774,2,2,222,224],[775,1,1,224,225],[780,1,1,225,226],[794,1,1,226,227]]],[24,3,3,227,230,[[800,3,3,227,230]]],[25,24,24,230,254,[[804,1,1,230,231],[817,2,2,231,233],[819,3,3,233,236],[822,1,1,236,237],[834,3,3,237,240],[841,1,1,240,241],[843,1,1,241,242],[844,4,4,242,246],[845,2,2,246,248],[846,5,5,248,253],[847,1,1,253,254]]],[26,3,2,254,256,[[858,3,2,254,256]]],[27,5,5,256,261,[[865,1,1,256,257],[869,1,1,257,258],[870,1,1,258,259],[871,1,1,259,260],[874,1,1,260,261]]],[29,1,1,261,262,[[883,1,1,261,262]]],[32,6,6,262,268,[[893,2,2,262,264],[895,1,1,264,265],[898,2,2,265,267],[899,1,1,267,268]]],[37,3,2,268,270,[[923,1,1,268,269],[924,2,1,269,270]]]],[86,444,909,1523,1794,2350,2372,2392,2468,2470,2472,2503,2505,2798,2803,2809,2815,2816,2818,2819,2820,2821,2823,2824,2827,2828,2829,2830,2836,2837,2838,2839,2840,2841,2842,2843,2866,2874,2879,2886,2916,2919,2931,2955,2956,2960,2961,2963,2968,2975,2993,2994,2996,3050,3052,3124,3130,3133,3142,3183,3198,3204,3206,3207,3210,3212,3216,3217,3222,3226,3228,3231,3235,3303,3421,3542,3545,3548,3552,3798,3799,3834,3837,3839,3866,3872,3878,3884,3890,3896,3902,3908,3914,3920,3926,3932,3937,3946,3947,3951,4070,4177,4178,4180,4220,4266,4298,4306,4592,4599,4613,4619,4624,4627,4630,4633,4636,4639,4642,4646,4741,5175,5178,5184,5421,6495,7257,7479,7546,7583,7585,7731,8299,9019,9020,9021,9181,9218,9234,9240,9252,9275,9279,9283,9285,9296,9302,9309,9314,9579,9824,9866,9873,9877,9882,9920,9934,9943,9949,9953,10005,10135,10136,10205,11307,11308,11309,11338,11777,11812,11814,11815,11927,12236,12302,12364,12513,12548,12582,13092,13176,13197,13720,13723,14258,14269,14360,14493,14508,14693,14694,14793,14802,15194,15273,15769,16539,16672,16753,16806,16963,16988,17088,17716,17776,18160,18218,18422,18529,18530,18555,18787,18802,18812,19083,19303,19328,19346,19354,19358,19360,19407,19681,19682,19725,19845,20186,20426,20433,20442,20522,20813,20814,20863,20870,20873,20968,21290,21294,21296,21516,21565,21591,21593,21594,21597,21626,21628,21647,21649,21652,21653,21655,21675,22008,22012,22141,22207,22217,22233,22278,22435,22584,22592,22616,22655,22661,22683,23060,23087]]],["+",[20,20,[[2,6,6,0,6,[[93,2,2,0,2],[94,2,2,2,4],[105,1,1,4,5],[108,1,1,5,6]]],[4,1,1,6,7,[[161,1,1,6,7]]],[10,1,1,7,8,[[298,1,1,7,8]]],[11,4,4,8,12,[[325,1,1,8,9],[327,2,2,9,11],[333,1,1,11,12]]],[13,1,1,12,13,[[372,1,1,12,13]]],[17,1,1,13,14,[[470,1,1,13,14]]],[18,2,2,14,16,[[515,1,1,14,15],[528,1,1,15,16]]],[19,1,1,16,17,[[647,1,1,16,17]]],[24,2,2,17,19,[[800,2,2,17,19]]],[25,1,1,19,20,[[834,1,1,19,20]]]],[2803,2821,2836,2840,3228,3303,5178,9020,9877,9934,9949,10135,11308,13723,14508,14693,16963,20426,20433,21294]]],["offering",[113,103,[[1,3,3,0,3,[[78,2,2,0,2],[79,1,1,2,3]]],[2,57,48,3,51,[[93,10,8,3,11],[94,8,6,11,17],[95,4,3,17,20],[96,2,2,20,22],[97,3,2,22,24],[98,7,7,24,31],[99,4,3,31,34],[101,2,2,34,36],[103,5,4,36,40],[104,2,2,40,42],[105,9,8,42,50],[112,1,1,50,51]]],[3,35,34,51,85,[[122,3,3,51,54],[123,13,13,54,67],[124,2,2,67,69],[131,3,3,69,72],[134,1,1,72,73],[144,2,2,73,75],[145,11,10,75,85]]],[13,3,3,85,88,[[395,3,3,85,88]]],[14,1,1,88,89,[[410,1,1,88,89]]],[25,14,14,89,103,[[841,1,1,89,90],[843,1,1,90,91],[844,4,4,91,95],[845,2,2,95,97],[846,5,5,97,102],[847,1,1,102,103]]]],[2350,2372,2392,2798,2815,2816,2819,2820,2824,2828,2829,2836,2837,2838,2839,2841,2842,2866,2874,2879,2886,2916,2919,2931,2955,2956,2960,2961,2963,2968,2975,2993,2994,2996,3050,3052,3124,3130,3133,3142,3183,3198,3204,3206,3207,3210,3212,3216,3226,3228,3421,3834,3837,3839,3866,3872,3878,3884,3890,3896,3902,3908,3914,3920,3926,3932,3937,3947,3951,4177,4178,4180,4266,4592,4599,4613,4619,4624,4627,4630,4633,4636,4639,4642,4646,11812,11814,11815,12236,21516,21565,21591,21593,21594,21597,21626,21628,21647,21649,21652,21653,21655,21675]]],["offerings",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12582]]],["punishment",[2,1,[[37,2,1,0,1,[[924,2,1,0,1]]]],[23087]]],["purifying",[1,1,[[3,1,1,0,1,[[124,1,1,0,1]]]],[3946]]],["sin",[89,84,[[0,4,4,0,4,[[3,1,1,0,1],[17,1,1,1,2],[30,1,1,2,3],[49,1,1,3,4]]],[1,6,6,4,10,[[59,1,1,4,5],[81,3,3,5,8],[83,2,2,8,10]]],[2,11,9,10,19,[[93,8,6,10,16],[94,2,2,16,18],[108,1,1,18,19]]],[3,6,6,19,25,[[121,2,2,19,21],[128,1,1,21,22],[135,2,2,22,24],[148,1,1,24,25]]],[4,2,2,25,27,[[161,1,1,25,26],[171,1,1,26,27]]],[8,5,5,27,32,[[237,1,1,27,28],[249,1,1,28,29],[250,2,2,29,31],[255,1,1,31,32]]],[9,1,1,32,33,[[278,1,1,32,33]]],[10,8,8,33,41,[[298,2,2,33,35],[302,1,1,35,36],[303,1,1,36,37],[305,2,2,37,39],[306,2,2,39,41]]],[11,2,2,41,43,[[324,1,1,41,42],[333,1,1,42,43]]],[13,4,4,43,47,[[372,2,2,43,45],[373,1,1,45,46],[399,1,1,46,47]]],[15,1,1,47,48,[[416,1,1,47,48]]],[17,4,4,48,52,[[445,1,1,48,49],[448,1,1,49,50],[449,1,1,50,51],[469,1,1,51,52]]],[18,8,7,52,59,[[509,2,1,52,53],[515,1,1,53,54],[528,1,1,54,55],[536,2,2,55,57],[562,1,1,57,58],[586,1,1,58,59]]],[19,4,4,59,63,[[637,1,1,59,60],[641,1,1,60,61],[648,1,1,61,62],[651,1,1,62,63]]],[22,5,4,63,67,[[681,1,1,63,64],[684,1,1,64,65],[705,1,1,65,66],[708,2,1,66,67]]],[23,7,7,67,74,[[760,2,2,67,69],[761,2,2,69,71],[762,1,1,71,72],[775,1,1,72,73],[780,1,1,73,74]]],[25,2,2,74,76,[[804,1,1,74,75],[819,1,1,75,76]]],[26,2,1,76,77,[[858,2,1,76,77]]],[27,3,3,77,80,[[865,1,1,77,78],[871,1,1,78,79],[874,1,1,79,80]]],[32,3,3,80,83,[[893,1,1,80,81],[895,1,1,81,82],[898,1,1,82,83]]],[37,1,1,83,84,[[923,1,1,83,84]]]],[86,444,909,1523,1794,2468,2470,2472,2503,2505,2798,2809,2818,2823,2827,2830,2836,2843,3303,3798,3799,4070,4298,4306,4741,5184,5421,7257,7546,7583,7585,7731,8299,9019,9021,9181,9218,9275,9283,9302,9309,9866,10136,11307,11309,11338,11927,12364,13092,13176,13197,13720,14360,14493,14694,14793,14802,15273,15769,16672,16806,16988,17088,17716,17776,18160,18218,19346,19354,19358,19360,19407,19725,19845,20522,20873,22008,22141,22233,22278,22592,22616,22655,23060]]],["sinner",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16753]]],["sins",[67,66,[[2,8,8,0,8,[[105,4,4,0,4],[115,4,4,4,8]]],[3,1,1,8,9,[[132,1,1,8,9]]],[4,1,1,9,10,[[161,1,1,9,10]]],[5,1,1,10,11,[[210,1,1,10,11]]],[8,1,1,11,12,[[247,1,1,11,12]]],[10,9,8,12,20,[[304,2,2,12,14],[305,2,2,14,16],[306,5,4,16,20]]],[11,9,9,20,29,[[315,1,1,20,21],[322,1,1,21,22],[325,2,2,22,24],[326,1,1,24,25],[327,2,2,25,27],[329,1,1,27,28],[336,1,1,28,29]]],[13,1,1,29,30,[[394,1,1,29,30]]],[15,3,3,30,33,[[413,1,1,30,31],[421,2,2,31,33]]],[17,1,1,33,34,[[448,1,1,33,34]]],[18,3,3,34,37,[[502,2,2,34,36],[556,1,1,36,37]]],[19,1,1,37,38,[[632,1,1,37,38]]],[22,7,7,38,45,[[718,1,1,38,39],[721,2,2,39,41],[722,1,1,41,42],[736,1,1,42,43],[737,2,2,43,45]]],[23,6,6,45,51,[[749,1,1,45,46],[758,1,1,46,47],[759,1,1,47,48],[774,2,2,48,50],[794,1,1,50,51]]],[24,1,1,51,52,[[800,1,1,51,52]]],[25,7,7,52,59,[[817,2,2,52,54],[819,2,2,54,56],[822,1,1,56,57],[834,2,2,57,59]]],[26,1,1,59,60,[[858,1,1,59,60]]],[27,2,2,60,62,[[869,1,1,60,61],[870,1,1,61,62]]],[29,1,1,62,63,[[883,1,1,62,63]]],[32,3,3,63,66,[[893,1,1,63,64],[898,1,1,64,65],[899,1,1,65,66]]]],[3217,3222,3231,3235,3542,3545,3548,3552,4220,5175,6495,7479,9234,9240,9252,9279,9285,9296,9302,9314,9579,9824,9873,9882,9920,9943,9953,10005,10205,11777,12302,12513,12548,13176,14258,14269,15194,16539,18422,18529,18530,18555,18787,18802,18812,19083,19303,19328,19681,19682,20186,20442,20813,20814,20863,20870,20968,21290,21296,22012,22207,22217,22435,22584,22661,22683]]]]},{"k":"H2404","v":[["*",[9,9,[[4,2,2,0,2,[[171,1,1,0,1],[181,1,1,1,2]]],[5,3,3,2,5,[[195,3,3,2,5]]],[13,1,1,5,6,[[368,1,1,5,6]]],[18,1,1,6,7,[[621,1,1,6,7]]],[23,1,1,7,8,[[790,1,1,7,8]]],[25,1,1,8,9,[[840,1,1,8,9]]]],[5411,5690,6058,6060,6064,11221,16317,20067,21458]]],["+",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5690]]],["down",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21458]]],["hew",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5411]]],["hewers",[5,5,[[5,3,3,0,3,[[195,3,3,0,3]]],[13,1,1,3,4,[[368,1,1,3,4]]],[23,1,1,4,5,[[790,1,1,4,5]]]],[6058,6060,6064,11221,20067]]],["polished",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16317]]]]},{"k":"H2405","v":[["carved",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16591]]]]},{"k":"H2406","v":[["*",[30,30,[[0,1,1,0,1,[[29,1,1,0,1]]],[1,3,3,1,4,[[58,1,1,1,2],[78,1,1,2,3],[83,1,1,3,4]]],[4,2,2,4,6,[[160,1,1,4,5],[184,1,1,5,6]]],[6,2,2,6,8,[[216,1,1,6,7],[225,1,1,7,8]]],[7,1,1,8,9,[[233,1,1,8,9]]],[8,2,2,9,11,[[241,1,1,9,10],[247,1,1,10,11]]],[9,2,2,11,13,[[270,1,1,11,12],[283,1,1,12,13]]],[10,1,1,13,14,[[295,1,1,13,14]]],[12,2,2,14,16,[[358,2,2,14,16]]],[13,3,3,16,19,[[368,2,2,16,18],[393,1,1,18,19]]],[17,1,1,19,20,[[466,1,1,19,20]]],[18,2,2,20,22,[[558,1,1,20,21],[624,1,1,21,22]]],[21,1,1,22,23,[[677,1,1,22,23]]],[22,1,1,23,24,[[706,1,1,23,24]]],[23,2,2,24,26,[[756,1,1,24,25],[785,1,1,25,26]]],[25,3,3,26,29,[[805,1,1,26,27],[828,1,1,27,28],[846,1,1,28,29]]],[28,1,1,29,30,[[876,1,1,29,30]]]],[844,1774,2338,2518,5145,5772,6665,6930,7172,7344,7477,8126,8477,8889,10954,10957,11221,11226,11760,13628,15233,16365,17629,18189,19262,19965,20538,21138,21643,22302]]],["wheat",[29,29,[[0,1,1,0,1,[[29,1,1,0,1]]],[1,2,2,1,3,[[58,1,1,1,2],[83,1,1,2,3]]],[4,2,2,3,5,[[160,1,1,3,4],[184,1,1,4,5]]],[6,2,2,5,7,[[216,1,1,5,6],[225,1,1,6,7]]],[7,1,1,7,8,[[233,1,1,7,8]]],[8,2,2,8,10,[[241,1,1,8,9],[247,1,1,9,10]]],[9,2,2,10,12,[[270,1,1,10,11],[283,1,1,11,12]]],[10,1,1,12,13,[[295,1,1,12,13]]],[12,2,2,13,15,[[358,2,2,13,15]]],[13,3,3,15,18,[[368,2,2,15,17],[393,1,1,17,18]]],[17,1,1,18,19,[[466,1,1,18,19]]],[18,2,2,19,21,[[558,1,1,19,20],[624,1,1,20,21]]],[21,1,1,21,22,[[677,1,1,21,22]]],[22,1,1,22,23,[[706,1,1,22,23]]],[23,2,2,23,25,[[756,1,1,23,24],[785,1,1,24,25]]],[25,3,3,25,28,[[805,1,1,25,26],[828,1,1,26,27],[846,1,1,27,28]]],[28,1,1,28,29,[[876,1,1,28,29]]]],[844,1774,2518,5145,5772,6665,6930,7172,7344,7477,8126,8477,8889,10954,10957,11221,11226,11760,13628,15233,16365,17629,18189,19262,19965,20538,21138,21643,22302]]],["wheaten",[1,1,[[1,1,1,0,1,[[78,1,1,0,1]]]],[2338]]]]},{"k":"H2407","v":[["Hattush",[5,5,[[12,1,1,0,1,[[340,1,1,0,1]]],[14,1,1,1,2,[[410,1,1,1,2]]],[15,3,3,2,5,[[415,1,1,2,3],[422,1,1,3,4],[424,1,1,4,5]]]],[10383,12203,12337,12553,12626]]]]},{"k":"H2408","v":[["sins",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]]]},{"k":"H2409","v":[["offering",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12168]]]]},{"k":"H2410","v":[["Hatita",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12069,12465]]]]},{"k":"H2411","v":[["Hattil",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12084,12479]]]]},{"k":"H2412","v":[["Hatipha",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12081,12476]]]]},{"k":"H2413","v":[["refrain",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18623]]]]},{"k":"H2414","v":[["catch",[3,2,[[6,1,1,0,1,[[231,1,1,0,1]]],[18,2,1,1,2,[[487,2,1,1,2]]]],[7123,14050]]]]},{"k":"H2415","v":[["rod",[2,2,[[19,1,1,0,1,[[641,1,1,0,1]]],[22,1,1,1,2,[[689,1,1,1,2]]]],[16775,17885]]]]},{"k":"H2416","v":[["*",[502,450,[[0,67,56,0,56,[[0,8,6,0,6],[1,6,4,6,10],[2,7,6,10,16],[5,2,2,16,18],[6,5,5,18,23],[7,4,4,23,27],[8,9,7,27,34],[17,2,2,34,36],[22,2,1,36,37],[24,4,3,37,40],[25,1,1,40,41],[26,2,1,41,42],[36,2,2,42,44],[41,2,2,44,46],[42,3,3,46,49],[44,3,3,49,52],[45,1,1,52,53],[46,4,3,53,56]]],[1,9,9,56,65,[[50,1,1,56,57],[53,1,1,57,58],[55,3,3,58,61],[70,1,1,61,62],[71,1,1,62,63],[72,2,2,63,65]]],[2,33,27,65,92,[[94,1,1,65,66],[100,6,5,66,71],[102,5,4,71,75],[103,12,8,75,83],[104,1,1,83,84],[105,3,3,84,87],[106,1,1,87,88],[107,1,1,88,89],[114,1,1,89,90],[115,2,2,90,92]]],[3,7,7,92,99,[[130,2,2,92,94],[132,3,3,94,97],[135,1,1,97,98],[151,1,1,98,99]]],[4,21,19,99,118,[[156,3,3,99,102],[157,2,2,102,104],[158,1,1,104,105],[159,1,1,105,106],[164,1,1,106,107],[168,1,1,107,108],[169,1,1,108,109],[180,2,1,109,110],[182,5,4,110,114],[183,2,2,114,116],[184,2,2,116,118]]],[5,4,4,118,122,[[187,1,1,118,119],[189,1,1,119,120],[190,1,1,120,121],[194,1,1,121,122]]],[6,2,2,122,124,[[218,1,1,122,123],[226,1,1,123,124]]],[7,2,2,124,126,[[233,1,1,124,125],[234,1,1,125,126]]],[8,27,25,126,151,[[236,2,2,126,128],[237,1,1,128,129],[242,1,1,129,130],[249,2,2,130,132],[250,1,1,132,133],[252,4,4,133,137],[253,1,1,137,138],[254,1,1,138,139],[255,5,4,139,143],[260,5,4,143,147],[261,2,2,147,149],[263,1,1,149,150],[264,1,1,150,151]]],[9,23,19,151,170,[[267,1,1,151,152],[268,1,1,152,153],[270,1,1,153,154],[277,2,1,154,155],[278,5,4,155,159],[280,2,2,159,161],[281,3,1,161,162],[284,2,2,162,164],[285,2,2,164,166],[287,1,1,166,167],[288,1,1,167,168],[289,2,2,168,170]]],[10,26,22,170,192,[[291,1,1,170,171],[292,1,1,171,172],[293,8,5,172,177],[294,1,1,177,178],[298,1,1,178,179],[301,1,1,179,180],[302,1,1,180,181],[305,2,2,181,183],[307,3,3,183,186],[308,2,2,186,188],[310,3,2,188,190],[311,1,1,190,191],[312,1,1,191,192]]],[11,21,16,192,208,[[314,6,3,192,195],[315,1,1,195,196],[316,4,3,196,199],[317,2,2,199,201],[319,1,1,201,202],[322,2,1,202,203],[326,1,1,203,204],[331,2,2,204,206],[337,2,2,206,208]]],[13,5,5,208,213,[[372,1,1,208,209],[376,1,1,209,210],[384,1,1,210,211],[391,2,2,211,213]]],[17,24,24,213,237,[[438,1,1,213,214],[440,2,2,214,216],[442,1,1,216,217],[444,1,1,217,218],[445,2,2,218,220],[447,1,1,220,221],[454,1,1,221,222],[459,1,1,222,223],[462,1,1,223,224],[463,2,2,224,226],[465,1,1,226,227],[468,5,5,227,232],[471,1,1,232,233],[472,1,1,233,234],[473,1,1,234,235],[474,1,1,235,236],[475,1,1,236,237]]],[18,51,50,237,287,[[484,1,1,237,238],[493,1,1,238,239],[494,1,1,239,240],[495,1,1,240,241],[498,1,1,241,242],[500,1,1,242,243],[503,1,1,243,244],[504,3,3,244,247],[507,1,1,247,248],[508,1,1,248,249],[511,1,1,249,250],[513,1,1,250,251],[515,1,1,251,252],[519,2,2,252,254],[526,1,1,254,255],[527,1,1,255,256],[529,1,1,256,257],[532,1,1,257,258],[533,1,1,258,259],[535,1,1,259,260],[540,2,2,260,262],[541,1,1,262,263],[543,1,1,263,264],[545,2,2,264,266],[546,1,1,266,267],[551,2,1,267,268],[555,1,1,268,269],[556,1,1,269,270],[561,1,1,270,271],[565,1,1,271,272],[580,1,1,272,273],[581,4,4,273,277],[593,1,1,277,278],[601,1,1,278,279],[605,1,1,279,280],[610,1,1,280,281],[619,1,1,281,282],[620,2,2,282,284],[622,1,1,284,285],[623,1,1,285,286],[625,1,1,286,287]]],[19,34,34,287,321,[[628,1,1,287,288],[629,1,1,288,289],[630,3,3,289,292],[631,4,4,292,296],[632,1,1,296,297],[633,1,1,297,298],[635,1,1,298,299],[636,1,1,299,300],[637,3,3,300,303],[638,2,2,303,305],[639,1,1,305,306],[640,2,2,306,308],[641,2,2,308,310],[642,3,3,310,313],[643,2,2,313,315],[645,1,1,315,316],[646,1,1,316,317],[648,1,1,317,318],[649,1,1,318,319],[654,1,1,319,320],[658,1,1,320,321]]],[20,21,16,321,337,[[660,2,2,321,323],[661,1,1,323,324],[662,3,2,324,326],[663,2,2,326,328],[664,3,2,328,330],[665,1,1,330,331],[666,1,1,331,332],[667,7,4,332,336],[668,1,1,336,337]]],[21,1,1,337,338,[[674,1,1,337,338]]],[22,19,17,338,355,[[682,1,1,338,339],[686,1,1,339,340],[713,1,1,340,341],[715,2,2,341,343],[716,6,5,343,348],[718,1,1,348,349],[721,1,1,349,350],[724,1,1,350,351],[727,1,1,351,352],[731,1,1,352,353],[734,2,1,353,354],[735,1,1,354,355]]],[23,23,23,355,378,[[746,1,1,355,356],[748,1,1,356,357],[749,1,1,357,358],[752,1,1,358,359],[754,1,1,359,360],[755,1,1,360,361],[756,2,2,361,363],[760,2,2,363,365],[761,1,1,365,366],[765,1,1,366,367],[766,1,1,367,368],[767,3,3,368,371],[771,1,1,371,372],[772,1,1,372,373],[782,1,1,373,374],[788,1,1,374,375],[790,1,1,375,376],[796,2,2,376,378]]],[24,3,3,378,381,[[799,3,3,378,381]]],[25,60,51,381,432,[[802,11,8,381,389],[804,1,1,389,390],[806,2,2,390,392],[808,3,1,392,393],[811,3,3,393,396],[815,6,5,396,401],[817,1,1,401,402],[818,2,2,402,404],[819,1,1,404,405],[821,3,3,405,408],[827,1,1,408,409],[830,1,1,409,410],[832,2,2,410,412],[833,7,7,412,419],[834,4,3,419,422],[835,5,4,422,426],[836,2,2,426,428],[839,1,1,428,429],[840,2,2,429,431],[848,2,1,431,432]]],[26,3,3,432,435,[[857,1,1,432,433],[861,2,2,433,435]]],[27,6,6,435,441,[[862,1,1,435,436],[863,2,2,436,438],[865,2,2,438,440],[874,1,1,440,441]]],[29,2,1,441,442,[[886,2,1,441,442]]],[31,3,3,442,445,[[890,1,1,442,443],[892,2,2,443,445]]],[35,3,3,445,448,[[907,3,3,445,448]]],[37,1,1,448,449,[[924,1,1,448,449]]],[38,1,1,449,450,[[926,1,1,449,450]]]],[19,20,23,24,27,29,37,39,49,50,56,69,72,75,77,79,154,156,170,173,174,180,181,184,200,202,204,207,208,210,215,217,220,221,434,438,572,664,665,675,711,773,1103,1116,1267,1268,1297,1317,1318,1361,1384,1386,1416,1428,1429,1448,1546,1619,1671,1673,1675,2112,2117,2155,2173,2832,2999,3007,3024,3043,3044,3062,3066,3067,3068,3115,3116,3117,3118,3161,3162,3163,3164,3181,3211,3221,3222,3248,3269,3476,3530,3546,4129,4136,4224,4227,4242,4306,4848,5008,5013,5014,5056,5079,5088,5133,5241,5345,5383,5677,5714,5723,5727,5728,5741,5755,5798,5805,5856,5903,5924,6025,6738,6979,7169,7185,7223,7238,7255,7367,7547,7553,7568,7644,7654,7664,7673,7694,7712,7733,7744,7751,7761,7867,7887,7890,7895,7915,7921,7952,7973,8045,8076,8129,8270,8291,8304,8307,8308,8367,8375,8410,8492,8496,8517,8545,8590,8649,8664,8666,8746,8794,8838,8839,8841,8842,8843,8865,9025,9142,9157,9254,9255,9318,9329,9340,9351,9356,9426,9440,9466,9494,9553,9555,9557,9590,9619,9620,9633,9663,9667,9719,9807,9905,10065,10077,10251,10252,11313,11401,11555,11716,11722,12924,12973,12974,13015,13072,13087,13098,13138,13322,13458,13483,13517,13525,13580,13668,13670,13672,13678,13680,13750,13777,13832,13849,13884,14000,14103,14117,14164,14195,14241,14282,14286,14289,14298,14324,14341,14400,14447,14509,14557,14563,14666,14678,14715,14747,14768,14788,14842,14843,14851,14882,14910,14930,14963,15067,15163,15187,15261,15311,15553,15582,15591,15596,15604,15857,16105,16131,16172,16291,16295,16296,16336,16343,16381,16412,16452,16457,16473,16477,16500,16503,16512,16513,16523,16563,16637,16649,16667,16672,16673,16707,16718,16747,16759,16761,16799,16802,16811,16831,16838,16855,16862,16922,16948,17005,17019,17196,17296,17336,17350,17371,17383,17396,17415,17417,17425,17429,17431,17473,17478,17479,17480,17484,17512,17597,17736,17826,18329,18356,18369,18401,18402,18406,18409,18410,18436,18525,18587,18654,18719,18762,18775,18978,19029,19060,19156,19211,19245,19258,19265,19350,19351,19370,19448,19478,19491,19492,19520,19602,19632,19911,20036,20063,20309,20310,20393,20407,20412,20469,20477,20478,20479,20483,20484,20485,20486,20515,20557,20563,20590,20648,20650,20653,20746,20747,20749,20751,20752,20810,20841,20844,20852,20898,20926,20928,21120,21188,21236,21243,21252,21271,21272,21273,21274,21275,21280,21291,21295,21307,21318,21321,21338,21341,21350,21355,21445,21452,21465,21688,21965,22083,22088,22104,22117,22123,22136,22148,22274,22495,22554,22571,22576,22814,22819,22820,23076,23108]]],["+",[16,15,[[0,4,4,0,4,[[0,2,2,0,2],[46,2,2,2,4]]],[3,1,1,4,5,[[130,1,1,4,5]]],[13,1,1,5,6,[[376,1,1,5,6]]],[17,1,1,6,7,[[440,1,1,6,7]]],[18,1,1,7,8,[[540,1,1,7,8]]],[20,2,2,8,10,[[667,1,1,8,9],[668,1,1,9,10]]],[23,2,2,10,12,[[752,1,1,10,11],[782,1,1,11,12]]],[25,2,1,12,13,[[808,2,1,12,13]]],[31,2,2,13,15,[[892,2,2,13,15]]]],[19,29,1428,1448,4129,11401,12973,14842,17484,17512,19156,19911,20590,22571,22576]]],["Beasts",[1,1,[[18,1,1,0,1,[[625,1,1,0,1]]]],[16381]]],["alive",[30,28,[[0,6,6,0,6,[[42,3,3,0,3],[44,2,2,3,5],[45,1,1,5,6]]],[1,2,2,6,8,[[53,1,1,6,7],[71,1,1,7,8]]],[2,2,2,8,10,[[103,1,1,8,9],[105,1,1,9,10]]],[3,1,1,10,11,[[132,1,1,10,11]]],[4,3,3,11,14,[[156,1,1,11,12],[157,1,1,12,13],[183,1,1,13,14]]],[5,1,1,14,15,[[194,1,1,14,15]]],[8,1,1,15,16,[[250,1,1,15,16]]],[9,4,4,16,20,[[278,3,3,16,19],[284,1,1,19,20]]],[10,4,3,20,23,[[310,3,2,20,22],[311,1,1,22,23]]],[11,3,2,23,25,[[319,1,1,23,24],[322,2,1,24,25]]],[13,1,1,25,26,[[391,1,1,25,26]]],[19,1,1,26,27,[[628,1,1,26,27]]],[20,1,1,27,28,[[662,1,1,27,28]]]],[1297,1317,1318,1384,1386,1416,1619,2117,3115,3211,4227,5008,5056,5755,6025,7568,8304,8307,8308,8492,9426,9440,9466,9719,9807,11716,16412,17383]]],["appetite",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13832]]],["beast",[34,32,[[0,16,15,0,15,[[0,3,3,0,3],[1,2,2,3,5],[2,2,2,5,7],[6,2,2,7,9],[7,1,1,9,10],[8,4,3,10,13],[36,2,2,13,15]]],[1,1,1,15,16,[[72,1,1,15,16]]],[2,5,4,16,20,[[94,1,1,16,17],[100,2,1,17,18],[106,1,1,18,19],[114,1,1,19,20]]],[11,1,1,20,21,[[326,1,1,20,21]]],[13,1,1,21,22,[[391,1,1,21,22]]],[17,1,1,22,23,[[474,1,1,22,23]]],[18,2,2,23,25,[[527,1,1,23,24],[581,1,1,24,25]]],[22,2,2,25,27,[[713,1,1,25,26],[721,1,1,26,27]]],[25,4,4,27,31,[[815,1,1,27,28],[835,2,2,28,30],[840,1,1,30,31]]],[27,1,1,31,32,[[874,1,1,31,32]]]],[23,24,29,49,50,56,69,173,180,202,207,210,215,1103,1116,2173,2832,3044,3248,3476,9905,11722,13849,14678,15582,18329,18525,20752,21321,21341,21465,22274]]],["beasts",[40,38,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,4,4,1,5,[[100,2,2,1,3],[115,2,2,3,5]]],[3,1,1,5,6,[[151,1,1,5,6]]],[4,1,1,6,7,[[159,1,1,6,7]]],[8,1,1,7,8,[[252,1,1,7,8]]],[9,1,1,8,9,[[287,1,1,8,9]]],[17,3,3,9,12,[[440,1,1,9,10],[472,1,1,10,11],[475,1,1,11,12]]],[18,3,3,12,15,[[556,1,1,12,13],[581,2,2,13,15]]],[22,4,3,15,18,[[718,1,1,15,16],[724,1,1,16,17],[734,2,1,17,18]]],[23,3,3,18,21,[[756,1,1,18,19],[771,1,1,19,20],[772,1,1,20,21]]],[25,12,11,21,32,[[806,1,1,21,22],[815,2,1,22,23],[830,1,1,23,24],[832,2,2,24,26],[833,1,1,26,27],[834,1,1,27,28],[835,2,2,28,30],[839,1,1,30,31],[840,1,1,31,32]]],[26,1,1,32,33,[[857,1,1,32,33]]],[27,3,3,33,36,[[863,2,2,33,35],[865,1,1,35,36]]],[35,2,2,36,38,[[907,2,2,36,38]]]],[2155,2999,3024,3530,3546,4848,5133,7664,8590,12974,13777,13884,15187,15591,15596,18436,18587,18762,19258,19602,19632,20563,20746,21188,21236,21243,21252,21307,21318,21338,21445,21452,21965,22117,22123,22136,22819,22820]]],["company",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14930]]],["congregation",[2,2,[[18,2,2,0,2,[[545,1,1,0,1],[551,1,1,1,2]]]],[14910,15067]]],["creature",[6,6,[[25,6,6,0,6,[[802,3,3,0,3],[811,3,3,3,6]]]],[20484,20485,20486,20648,20650,20653]]],["creatures",[9,6,[[25,9,6,0,6,[[802,8,5,0,5],[804,1,1,5,6]]]],[20469,20477,20478,20479,20483,20515]]],["life",[140,134,[[0,21,19,0,19,[[1,2,2,0,2],[2,4,4,2,6],[5,1,1,6,7],[6,3,3,7,10],[17,2,2,10,12],[22,1,1,12,13],[24,2,2,13,15],[26,2,1,15,16],[41,2,2,16,18],[46,2,1,18,19]]],[1,3,3,19,22,[[55,3,3,19,22]]],[2,1,1,22,23,[[107,1,1,22,23]]],[4,11,9,23,32,[[156,1,1,23,24],[158,1,1,24,25],[168,1,1,25,26],[169,1,1,26,27],[180,2,1,27,28],[182,4,3,28,31],[184,1,1,31,32]]],[5,2,2,32,34,[[187,1,1,32,33],[190,1,1,33,34]]],[6,1,1,34,35,[[226,1,1,34,35]]],[8,4,4,35,39,[[236,1,1,35,36],[242,1,1,36,37],[253,1,1,37,38],[260,1,1,38,39]]],[9,1,1,39,40,[[281,1,1,39,40]]],[10,4,4,40,44,[[294,1,1,40,41],[301,1,1,41,42],[305,2,2,42,44]]],[11,4,4,44,48,[[316,2,2,44,46],[337,2,2,46,48]]],[17,11,11,48,59,[[438,1,1,48,49],[442,1,1,49,50],[444,1,1,50,51],[445,2,2,51,53],[459,1,1,53,54],[468,4,4,54,58],[471,1,1,58,59]]],[18,21,21,59,80,[[484,1,1,59,60],[493,1,1,60,61],[494,1,1,61,62],[498,1,1,62,63],[500,1,1,63,64],[503,1,1,64,65],[504,2,2,65,67],[507,1,1,67,68],[508,1,1,68,69],[511,1,1,69,70],[513,1,1,70,71],[519,1,1,71,72],[541,1,1,72,73],[543,1,1,73,74],[555,1,1,74,75],[565,1,1,75,76],[580,1,1,76,77],[605,1,1,77,78],[610,1,1,78,79],[620,1,1,79,80]]],[19,32,32,80,112,[[629,1,1,80,81],[630,3,3,81,84],[631,4,4,84,88],[632,1,1,88,89],[633,1,1,89,90],[635,1,1,90,91],[636,1,1,91,92],[637,3,3,92,95],[638,2,2,95,97],[639,1,1,97,98],[640,2,2,98,100],[641,2,2,100,102],[642,3,3,102,105],[643,2,2,105,107],[645,1,1,107,108],[646,1,1,108,109],[648,1,1,109,110],[649,1,1,110,111],[658,1,1,111,112]]],[20,10,8,112,120,[[660,2,2,112,114],[661,1,1,114,115],[663,2,2,115,117],[664,2,1,117,118],[666,1,1,118,119],[667,2,1,119,120]]],[22,4,4,120,124,[[716,3,3,120,123],[735,1,1,123,124]]],[23,3,3,124,127,[[765,1,1,124,125],[796,2,2,125,127]]],[24,2,2,127,129,[[799,2,2,127,129]]],[25,2,2,129,131,[[808,1,1,129,130],[834,1,1,130,131]]],[26,1,1,131,132,[[861,1,1,131,132]]],[31,1,1,132,133,[[890,1,1,132,133]]],[38,1,1,133,134,[[926,1,1,133,134]]]],[37,39,69,72,77,79,154,170,174,181,434,438,572,665,675,773,1267,1268,1429,1671,1673,1675,3269,5013,5088,5345,5383,5677,5723,5727,5728,5805,5856,5924,6979,7223,7367,7694,7890,8410,8865,9142,9254,9255,9619,9620,10251,10252,12924,13015,13072,13087,13098,13458,13668,13670,13672,13678,13750,14000,14103,14117,14195,14241,14282,14286,14289,14324,14341,14400,14447,14563,14851,14882,15163,15311,15553,16131,16172,16296,16452,16457,16473,16477,16500,16503,16512,16513,16523,16563,16637,16649,16667,16672,16673,16707,16718,16747,16759,16761,16799,16802,16811,16831,16838,16855,16862,16922,16948,17005,17019,17296,17336,17350,17371,17415,17417,17429,17473,17484,18402,18406,18410,18775,19448,20309,20310,20407,20412,20590,21295,22083,22554,23108]]],["lifetime",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8496]]],["live",[40,40,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,1,1,1,2,[[70,1,1,1,2]]],[2,2,2,2,4,[[105,2,2,2,4]]],[3,1,1,4,5,[[130,1,1,4,5]]],[4,5,5,5,10,[[156,1,1,5,6],[164,1,1,6,7],[182,1,1,7,8],[183,1,1,8,9],[184,1,1,9,10]]],[8,1,1,10,11,[[255,1,1,10,11]]],[9,2,2,11,13,[[278,1,1,11,12],[285,1,1,12,13]]],[10,1,1,13,14,[[298,1,1,13,14]]],[13,1,1,14,15,[[372,1,1,14,15]]],[18,3,3,15,18,[[540,1,1,15,16],[581,1,1,16,17],[623,1,1,17,18]]],[20,1,1,18,19,[[667,1,1,18,19]]],[22,1,1,19,20,[[727,1,1,19,20]]],[23,2,2,20,22,[[766,1,1,20,21],[790,1,1,21,22]]],[25,17,17,22,39,[[806,1,1,22,23],[815,3,3,23,26],[817,1,1,26,27],[818,2,2,27,29],[819,1,1,29,30],[821,3,3,30,33],[834,2,2,33,35],[835,1,1,35,36],[836,2,2,36,38],[848,1,1,38,39]]],[35,1,1,39,40,[[907,1,1,39,40]]]],[1361,2112,3221,3222,4136,5014,5241,5714,5741,5798,7744,8308,8545,9025,11313,14843,15604,16343,17478,18654,19478,20063,20557,20747,20749,20751,20810,20841,20844,20852,20898,20926,20928,21291,21307,21321,21350,21355,21688,22814]]],["lived",[5,5,[[0,2,2,0,2,[[24,2,2,0,2]]],[9,1,1,2,3,[[285,1,1,2,3]]],[10,1,1,3,4,[[302,1,1,3,4]]],[18,1,1,4,5,[[526,1,1,4,5]]]],[664,665,8517,9157,14666]]],["lively",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14509]]],["lives",[2,2,[[1,1,1,0,1,[[50,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]]],[1546,8045]]],["livest",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8270]]],["liveth",[66,58,[[0,1,1,0,1,[[8,1,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[8,17,15,3,18,[[236,1,1,3,4],[249,2,2,4,6],[252,1,1,6,7],[254,1,1,7,8],[255,4,3,8,11],[260,4,3,11,14],[261,2,2,14,16],[263,1,1,16,17],[264,1,1,17,18]]],[9,9,8,18,26,[[268,1,1,18,19],[270,1,1,19,20],[277,1,1,20,21],[278,1,1,21,22],[280,2,2,22,24],[281,2,1,24,25],[288,1,1,25,26]]],[10,9,9,26,35,[[291,1,1,26,27],[292,1,1,27,28],[293,1,1,28,29],[307,3,3,29,32],[308,2,2,32,34],[312,1,1,34,35]]],[11,11,7,35,42,[[314,6,3,35,38],[315,1,1,38,39],[316,2,1,39,40],[317,2,2,40,42]]],[13,1,1,42,43,[[384,1,1,42,43]]],[17,2,2,43,45,[[454,1,1,43,44],[462,1,1,44,45]]],[18,1,1,45,46,[[495,1,1,45,46]]],[23,8,8,46,54,[[748,1,1,46,47],[749,1,1,47,48],[756,1,1,48,49],[760,2,2,49,51],[767,2,2,51,53],[788,1,1,53,54]]],[25,1,1,54,55,[[848,1,1,54,55]]],[26,1,1,55,56,[[861,1,1,55,56]]],[27,1,1,56,57,[[865,1,1,56,57]]],[29,2,1,57,58,[[886,2,1,57,58]]]],[208,6738,7185,7238,7547,7553,7673,7712,7733,7751,7761,7867,7887,7895,7915,7921,7952,7973,8076,8129,8270,8291,8367,8375,8410,8649,8746,8794,8839,9318,9329,9340,9351,9356,9494,9553,9555,9557,9590,9633,9663,9667,11555,13322,13483,14164,19029,19060,19265,19350,19351,19491,19492,20036,21688,22088,22148,22495]]],["living",[78,73,[[0,10,10,0,10,[[0,2,2,0,2],[1,2,2,2,4],[2,1,1,4,5],[7,1,1,5,6],[8,4,4,6,10]]],[2,8,7,10,17,[[100,2,2,10,12],[103,6,5,12,17]]],[3,1,1,17,18,[[132,1,1,17,18]]],[4,1,1,18,19,[[157,1,1,18,19]]],[5,1,1,19,20,[[189,1,1,19,20]]],[7,1,1,20,21,[[233,1,1,20,21]]],[8,2,2,21,23,[[252,2,2,21,23]]],[10,7,5,23,28,[[293,7,5,23,28]]],[11,2,2,28,30,[[331,2,2,28,30]]],[17,4,4,30,34,[[463,2,2,30,32],[465,1,1,32,33],[468,1,1,33,34]]],[18,10,10,34,44,[[504,1,1,34,35],[519,1,1,35,36],[529,1,1,36,37],[533,1,1,37,38],[535,1,1,38,39],[546,1,1,39,40],[561,1,1,40,41],[593,1,1,41,42],[619,1,1,42,43],[620,1,1,43,44]]],[20,7,6,44,50,[[662,2,2,44,46],[664,1,1,46,47],[665,1,1,47,48],[667,3,2,48,50]]],[21,1,1,50,51,[[674,1,1,50,51]]],[22,8,7,51,58,[[682,1,1,51,52],[686,1,1,52,53],[715,2,2,53,55],[716,3,2,55,57],[731,1,1,57,58]]],[23,5,5,58,63,[[746,1,1,58,59],[754,1,1,59,60],[755,1,1,60,61],[761,1,1,61,62],[767,1,1,62,63]]],[24,1,1,63,64,[[799,1,1,63,64]]],[25,7,7,64,71,[[827,1,1,64,65],[833,6,6,65,71]]],[27,1,1,71,72,[[862,1,1,71,72]]],[37,1,1,72,73,[[924,1,1,72,73]]]],[20,23,37,49,75,204,215,217,220,221,3007,3043,3117,3118,3162,3163,3164,4242,5079,5903,7169,7644,7654,8838,8839,8841,8842,8843,10065,10077,13517,13525,13580,13680,14298,14557,14715,14768,14788,14963,15261,15857,16291,16295,17383,17396,17425,17431,17479,17480,17597,17736,17826,18356,18369,18401,18409,18719,18978,19211,19245,19370,19520,20393,21120,21271,21272,21273,21274,21275,21280,22104,23076]]],["maintenance",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17196]]],["multitude",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15067]]],["old",[1,1,[[0,1,1,0,1,[[22,1,1,0,1]]]],[572]]],["quick",[3,3,[[3,1,1,0,1,[[132,1,1,0,1]]],[18,2,2,1,3,[[532,1,1,1,2],[601,1,1,2,3]]]],[4224,14747,16105]]],["raw",[6,5,[[2,5,4,0,4,[[102,5,4,0,4]]],[8,1,1,4,5,[[237,1,1,4,5]]]],[3062,3066,3067,3068,7255]]],["running",[7,7,[[2,6,6,0,6,[[103,5,5,0,5],[104,1,1,5,6]]],[3,1,1,6,7,[[135,1,1,6,7]]]],[3116,3117,3161,3162,3163,3181,4306]]],["springing",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[711]]],["thing",[6,6,[[0,4,4,0,4,[[0,1,1,0,1],[5,1,1,1,2],[7,2,2,2,4]]],[17,1,1,4,5,[[447,1,1,4,5]]],[18,1,1,5,6,[[622,1,1,5,6]]]],[27,156,184,200,13138,16336]]],["troop",[2,2,[[9,2,2,0,2,[[289,2,2,0,2]]]],[8664,8666]]]]},{"k":"H2417","v":[["*",[7,7,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,6,6,1,7,[[851,1,1,1,2],[853,2,2,2,4],[855,2,2,4,6],[856,1,1,6,7]]]],[12161,21788,21854,21871,21925,21931,21945]]],["life",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12161]]],["lives",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21945]]],["liveth",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21871]]],["living",[4,4,[[26,4,4,0,4,[[851,1,1,0,1],[853,1,1,1,2],[855,2,2,2,4]]]],[21788,21854,21925,21931]]]]},{"k":"H2418","v":[["*",[6,6,[[26,6,6,0,6,[[851,1,1,0,1],[852,1,1,1,2],[854,2,2,2,4],[855,2,2,4,6]]]],[21762,21816,21884,21893,21911,21926]]],["+",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21893]]],["live",[5,5,[[26,5,5,0,5,[[851,1,1,0,1],[852,1,1,1,2],[854,1,1,2,3],[855,2,2,3,5]]]],[21762,21816,21884,21911,21926]]]]},{"k":"H2419","v":[["Hiel",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9317]]]]},{"k":"H2420","v":[["*",[17,17,[[3,1,1,0,1,[[128,1,1,0,1]]],[6,8,8,1,9,[[224,8,8,1,9]]],[10,1,1,9,10,[[300,1,1,9,10]]],[13,1,1,10,11,[[375,1,1,10,11]]],[18,2,2,11,13,[[526,1,1,11,12],[555,1,1,12,13]]],[19,1,1,13,14,[[628,1,1,13,14]]],[25,1,1,14,15,[[818,1,1,14,15]]],[26,1,1,15,16,[[857,1,1,15,16]]],[34,1,1,16,17,[[904,1,1,16,17]]]],[4067,6921,6922,6923,6924,6925,6926,6927,6928,9080,11365,14652,15115,16406,20827,21984,22754]]],["proverb",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22754]]],["questions",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9080,11365]]],["riddle",[9,9,[[6,8,8,0,8,[[224,8,8,0,8]]],[25,1,1,8,9,[[818,1,1,8,9]]]],[6921,6922,6923,6924,6925,6926,6927,6928,20827]]],["saying",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14652]]],["sayings",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[19,1,1,1,2,[[628,1,1,1,2]]]],[15115,16406]]],["sentences",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21984]]],["speeches",[1,1,[[3,1,1,0,1,[[128,1,1,0,1]]]],[4067]]]]},{"k":"H2421","v":[["*",[264,241,[[0,54,54,0,54,[[4,16,16,0,16],[5,2,2,16,18],[6,1,1,18,19],[8,1,1,19,20],[10,14,14,20,34],[11,2,2,34,36],[16,1,1,36,37],[18,4,4,37,41],[19,1,1,41,42],[26,1,1,42,43],[30,1,1,43,44],[41,2,2,44,46],[42,1,1,46,47],[44,2,2,47,49],[46,3,3,49,52],[49,2,2,52,54]]],[1,5,5,54,59,[[50,3,3,54,57],[68,1,1,57,58],[71,1,1,58,59]]],[2,2,2,59,61,[[114,2,2,59,61]]],[3,6,6,61,67,[[120,1,1,61,62],[130,1,1,62,63],[138,1,1,63,64],[140,1,1,64,65],[147,2,2,65,67]]],[4,14,13,67,80,[[156,2,2,67,69],[157,2,2,69,71],[158,1,1,71,72],[160,3,2,72,74],[168,1,1,74,75],[172,1,1,75,76],[182,2,2,76,78],[184,1,1,78,79],[185,1,1,79,80]]],[5,8,8,80,88,[[188,1,1,80,81],[191,1,1,81,82],[192,2,2,82,84],[195,3,3,84,87],[200,1,1,87,88]]],[6,3,3,88,91,[[218,1,1,88,89],[225,1,1,89,90],[231,1,1,90,91]]],[8,4,4,91,95,[[237,1,1,91,92],[245,1,1,92,93],[262,2,2,93,95]]],[9,5,4,95,99,[[267,1,1,95,96],[274,1,1,96,97],[278,1,1,97,98],[282,2,1,98,99]]],[10,8,8,99,107,[[291,4,4,99,103],[307,1,1,103,104],[308,1,1,104,105],[310,2,2,105,107]]],[11,22,17,107,124,[[313,1,1,107,108],[316,1,1,108,109],[317,1,1,109,110],[319,2,1,110,111],[320,10,6,111,117],[322,1,1,117,118],[323,1,1,118,119],[325,1,1,119,120],[326,1,1,120,121],[330,1,1,121,122],[332,2,2,122,124]]],[12,1,1,124,125,[[348,1,1,124,125]]],[13,2,2,125,127,[[389,1,1,125,126],[391,1,1,126,127]]],[15,5,5,127,132,[[414,1,1,127,128],[416,1,1,128,129],[417,1,1,129,130],[421,2,2,130,132]]],[16,1,1,132,133,[[429,1,1,132,133]]],[17,6,6,133,139,[[442,1,1,133,134],[449,1,1,134,135],[456,1,1,135,136],[468,1,1,136,137],[471,1,1,137,138],[477,1,1,138,139]]],[18,31,31,139,170,[[499,2,2,139,141],[507,1,1,141,142],[510,1,1,142,143],[518,1,1,143,144],[526,1,1,144,145],[546,1,1,145,146],[548,1,1,146,147],[549,1,1,147,148],[557,1,1,148,149],[562,1,1,149,150],[566,1,1,150,151],[595,1,1,151,152],[596,16,16,152,168],[615,1,1,168,169],[620,1,1,169,170]]],[19,4,4,170,174,[[631,1,1,170,171],[634,1,1,171,172],[636,1,1,172,173],[642,1,1,173,174]]],[20,4,4,174,178,[[664,2,2,174,176],[665,1,1,176,177],[669,1,1,177,178]]],[22,11,9,178,187,[[685,1,1,178,179],[704,2,2,179,181],[716,5,4,181,185],[733,1,1,185,186],[735,2,1,186,187]]],[23,9,8,187,195,[[765,1,1,187,188],[771,2,2,188,190],[779,1,1,190,191],[782,4,3,191,194],[793,1,1,194,195]]],[24,1,1,195,196,[[800,1,1,195,196]]],[25,47,35,196,231,[[804,3,2,196,198],[814,4,3,198,201],[817,2,1,201,202],[819,17,11,202,213],[821,4,4,213,217],[834,10,7,217,224],[838,6,6,224,230],[848,1,1,230,231]]],[27,3,2,231,233,[[867,2,1,231,232],[875,1,1,232,233]]],[29,3,3,233,236,[[883,3,3,233,236]]],[34,2,2,236,238,[[904,1,1,236,237],[905,1,1,237,238]]],[37,3,3,238,241,[[911,1,1,238,239],[920,1,1,239,240],[923,1,1,240,241]]]],[108,111,112,114,115,117,118,120,121,123,124,126,130,131,133,135,156,157,162,233,277,279,281,282,283,284,285,286,287,288,289,290,291,292,310,311,415,476,477,489,491,502,767,905,1254,1270,1298,1365,1385,1439,1445,1448,1526,1528,1549,1550,1554,2039,2131,3504,3505,3762,4146,4408,4469,4679,4682,5005,5037,5079,5086,5110,5138,5140,5362,5443,5724,5727,5797,5816,5882,5942,5966,5974,6052,6057,6058,6197,6738,6948,7116,7246,7442,7939,7941,8032,8211,8289,8442,8742,8748,8751,8756,9339,9346,9439,9440,9535,9610,9654,9711,9728,9732,9735,9736,9737,9741,9812,9841,9892,9913,10056,10099,10105,10681,11667,11729,12310,12361,12384,12517,12540,12773,13024,13195,13362,13654,13742,13938,14230,14233,14322,14385,14544,14657,14967,14996,15015,15216,15277,15374,15886,15915,15923,15935,15938,15948,15975,15986,15991,16005,16014,16042,16047,16052,16054,16057,16073,16238,16304,16494,16577,16644,16834,17420,17423,17441,17521,17803,18144,18149,18391,18399,18406,18411,18743,18780,19449,19608,19613,19830,19897,19912,19915,20138,20440,20520,20523,20726,20727,20730,20768,20858,20862,20866,20868,20870,20871,20872,20873,20876,20877,20881,20906,20908,20916,20920,21290,21291,21292,21293,21295,21296,21299,21400,21402,21403,21406,21407,21411,21688,22169,22289,22427,22429,22437,22752,22770,22883,23025,23062]]],["+",[43,32,[[0,2,2,0,2,[[18,1,1,0,1],[49,1,1,1,2]]],[1,3,3,2,5,[[50,2,2,2,4],[71,1,1,4,5]]],[3,2,2,5,7,[[138,1,1,5,6],[147,1,1,6,7]]],[5,3,3,7,10,[[188,1,1,7,8],[195,1,1,8,9],[200,1,1,9,10]]],[6,1,1,10,11,[[218,1,1,10,11]]],[10,2,2,11,13,[[308,1,1,11,12],[310,1,1,12,13]]],[11,5,3,13,16,[[320,5,3,13,16]]],[12,1,1,16,17,[[348,1,1,16,17]]],[15,2,2,17,19,[[416,1,1,17,18],[421,1,1,18,19]]],[17,1,1,19,20,[[471,1,1,19,20]]],[25,21,12,20,32,[[804,2,1,20,21],[814,2,2,21,23],[819,11,6,23,29],[834,6,3,29,32]]]],[476,1526,1549,1550,2131,4408,4679,5882,6057,6197,6738,9346,9439,9732,9737,9741,10681,12361,12517,13742,20523,20726,20727,20858,20866,20868,20870,20876,20877,21293,21295,21296]]],["Live",[2,1,[[25,2,1,0,1,[[817,2,1,0,1]]]],[20768]]],["Quicken",[2,2,[[18,2,2,0,2,[[596,1,1,0,1],[620,1,1,1,2]]]],[15986,16304]]],["alive",[19,19,[[0,4,4,0,4,[[5,2,2,0,2],[6,1,1,2,3],[11,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[3,1,1,5,6,[[147,1,1,5,6]]],[4,3,3,6,9,[[158,1,1,6,7],[172,1,1,7,8],[184,1,1,8,9]]],[6,1,1,9,10,[[231,1,1,9,10]]],[8,1,1,10,11,[[237,1,1,10,11]]],[9,1,1,11,12,[[274,1,1,11,12]]],[11,2,2,12,14,[[317,1,1,12,13],[319,1,1,13,14]]],[18,4,4,14,18,[[499,1,1,14,15],[507,1,1,15,16],[510,1,1,16,17],[518,1,1,17,18]]],[23,1,1,18,19,[[793,1,1,18,19]]]],[156,157,162,310,1554,4682,5110,5443,5797,7116,7246,8211,9654,9711,14233,14322,14385,14544,20138]]],["left",[1,1,[[8,1,1,0,1,[[262,1,1,0,1]]]],[7939]]],["life",[7,6,[[11,3,2,0,2,[[320,3,2,0,2]]],[17,1,1,2,3,[[468,1,1,2,3]]],[20,1,1,3,4,[[665,1,1,3,4]]],[25,2,2,4,6,[[804,1,1,4,5],[814,1,1,5,6]]]],[9728,9732,13654,17441,20520,20730]]],["live",[104,100,[[0,10,10,0,10,[[11,1,1,0,1],[16,1,1,1,2],[18,1,1,2,3],[19,1,1,3,4],[26,1,1,4,5],[30,1,1,5,6],[41,2,2,6,8],[42,1,1,8,9],[46,1,1,9,10]]],[1,1,1,10,11,[[68,1,1,10,11]]],[2,2,2,11,13,[[114,2,2,11,13]]],[3,2,2,13,15,[[120,1,1,13,14],[140,1,1,14,15]]],[4,10,9,15,24,[[156,2,2,15,17],[157,1,1,17,18],[160,3,2,18,20],[168,1,1,20,21],[182,2,2,21,23],[185,1,1,23,24]]],[5,3,3,24,27,[[192,1,1,24,25],[195,2,2,25,27]]],[9,1,1,27,28,[[267,1,1,27,28]]],[10,2,2,28,30,[[291,1,1,28,29],[310,1,1,29,30]]],[11,5,5,30,35,[[316,1,1,30,31],[319,1,1,31,32],[322,1,1,32,33],[330,1,1,33,34],[332,1,1,34,35]]],[15,3,3,35,38,[[414,1,1,35,36],[417,1,1,36,37],[421,1,1,37,38]]],[16,1,1,38,39,[[429,1,1,38,39]]],[17,3,3,39,42,[[442,1,1,39,40],[449,1,1,40,41],[456,1,1,41,42]]],[18,10,10,42,52,[[499,1,1,42,43],[526,1,1,43,44],[546,1,1,44,45],[549,1,1,45,46],[595,1,1,46,47],[596,5,5,47,52]]],[19,4,4,52,56,[[631,1,1,52,53],[634,1,1,53,54],[636,1,1,54,55],[642,1,1,55,56]]],[20,3,3,56,59,[[664,2,2,56,58],[669,1,1,58,59]]],[22,6,5,59,64,[[704,2,2,59,61],[716,3,2,61,63],[733,1,1,63,64]]],[23,8,7,64,71,[[765,1,1,64,65],[771,2,2,65,67],[779,1,1,67,68],[782,4,3,68,71]]],[24,1,1,71,72,[[800,1,1,71,72]]],[25,21,20,72,92,[[814,1,1,72,73],[819,6,5,73,78],[821,4,4,78,82],[834,4,4,82,86],[838,5,5,86,91],[848,1,1,91,92]]],[27,1,1,92,93,[[867,1,1,92,93]]],[29,3,3,93,96,[[883,3,3,93,96]]],[34,1,1,96,97,[[904,1,1,96,97]]],[37,3,3,97,100,[[911,1,1,97,98],[920,1,1,98,99],[923,1,1,99,100]]]],[311,415,477,502,767,905,1254,1270,1298,1439,2039,3504,3505,3762,4469,5005,5037,5086,5138,5140,5362,5724,5727,5816,5966,6052,6058,8032,8748,9440,9610,9711,9812,10056,10099,12310,12384,12540,12773,13024,13195,13362,14230,14657,14967,15015,15886,15915,15975,16014,16042,16073,16494,16577,16644,16834,17420,17423,17521,18144,18149,18391,18406,18743,19449,19608,19613,19830,19897,19912,19915,20440,20727,20862,20871,20872,20873,20881,20906,20908,20916,20920,21290,21291,21292,21299,21400,21402,21403,21406,21411,21688,22169,22427,22429,22437,22752,22883,23025,23062]]],["lived",[39,39,[[0,33,33,0,33,[[4,16,16,0,16],[8,1,1,16,17],[10,14,14,17,31],[46,1,1,31,32],[49,1,1,32,33]]],[3,1,1,33,34,[[130,1,1,33,34]]],[4,1,1,34,35,[[157,1,1,34,35]]],[11,1,1,35,36,[[326,1,1,35,36]]],[13,1,1,36,37,[[391,1,1,36,37]]],[17,1,1,37,38,[[477,1,1,37,38]]],[25,1,1,38,39,[[838,1,1,38,39]]]],[108,111,112,114,115,117,118,120,121,123,124,126,130,131,133,135,233,277,279,281,282,283,284,285,286,287,288,289,290,291,292,1448,1528,4146,5079,9913,11729,13938,21407]]],["lives",[2,2,[[0,2,2,0,2,[[44,1,1,0,1],[46,1,1,1,2]]]],[1365,1445]]],["liveth",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15374]]],["nourish",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17803]]],["preserve",[2,2,[[0,2,2,0,2,[[18,2,2,0,2]]]],[489,491]]],["quicken",[10,10,[[18,10,10,0,10,[[548,1,1,0,1],[557,1,1,1,2],[596,8,8,2,10]]]],[14996,15216,15923,15935,15938,16005,16047,16052,16054,16057]]],["quickened",[2,2,[[18,2,2,0,2,[[596,2,2,0,2]]]],[15948,15991]]],["recover",[4,4,[[11,3,3,0,3,[[313,1,1,0,1],[320,2,2,1,3]]],[22,1,1,3,4,[[716,1,1,3,4]]]],[9535,9735,9736,18411]]],["recovered",[2,2,[[11,1,1,0,1,[[332,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]]],[10105,18399]]],["revive",[7,6,[[18,2,2,0,2,[[562,1,1,0,1],[615,1,1,1,2]]],[22,2,1,2,3,[[735,2,1,2,3]]],[27,2,2,3,5,[[867,1,1,3,4],[875,1,1,4,5]]],[34,1,1,5,6,[[905,1,1,5,6]]]],[15277,16238,18780,22169,22289,22770]]],["revived",[4,4,[[0,1,1,0,1,[[44,1,1,0,1]]],[6,1,1,1,2,[[225,1,1,1,2]]],[10,1,1,2,3,[[307,1,1,2,3]]],[11,1,1,3,4,[[325,1,1,3,4]]]],[1385,6948,9339,9892]]],["save",[8,7,[[8,1,1,0,1,[[245,1,1,0,1]]],[9,2,1,1,2,[[282,2,1,1,2]]],[10,3,3,2,5,[[291,3,3,2,5]]],[11,1,1,5,6,[[323,1,1,5,6]]],[13,1,1,6,7,[[389,1,1,6,7]]]],[7442,8442,8742,8751,8756,9841,11667]]],["saved",[2,2,[[5,1,1,0,1,[[192,1,1,0,1]]],[8,1,1,1,2,[[262,1,1,1,2]]]],[5974,7941]]],["up",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8289]]],["whole",[1,1,[[5,1,1,0,1,[[191,1,1,0,1]]]],[5942]]]]},{"k":"H2422","v":[["lively",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1551]]]]},{"k":"H2423","v":[["*",[20,19,[[26,20,19,0,19,[[851,1,1,0,1],[853,8,8,1,9],[854,1,1,9,10],[856,10,9,10,19]]]],[21796,21849,21851,21852,21853,21858,21860,21862,21869,21895,21936,21938,21939,21940,21944,21945,21950,21952,21956]]],["beast",[6,6,[[26,6,6,0,6,[[856,6,6,0,6]]]],[21938,21939,21940,21944,21952,21956]]],["beast's",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21853]]],["beasts",[13,13,[[26,13,13,0,13,[[851,1,1,0,1],[853,7,7,1,8],[854,1,1,8,9],[856,4,4,9,13]]]],[21796,21849,21851,21852,21858,21860,21862,21869,21895,21936,21940,21945,21950]]]]},{"k":"H2424","v":[["living",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8557]]]]},{"k":"H2425","v":[["*",[15,15,[[0,4,4,0,4,[[2,1,1,0,1],[4,1,1,1,2],[10,2,2,2,4]]],[1,2,2,4,6,[[50,1,1,4,5],[82,1,1,5,6]]],[2,1,1,6,7,[[107,1,1,6,7]]],[3,2,2,7,9,[[137,2,2,7,9]]],[4,4,4,9,13,[[156,1,1,9,10],[157,1,1,10,11],[171,2,2,11,13]]],[15,1,1,13,14,[[418,1,1,13,14]]],[23,1,1,14,15,[[782,1,1,14,15]]]],[77,110,278,280,1548,2493,3256,4348,4349,5046,5077,5410,5411,12412,19897]]],["life",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12412]]],["live",[9,9,[[0,1,1,0,1,[[2,1,1,0,1]]],[1,2,2,1,3,[[50,1,1,1,2],[82,1,1,2,3]]],[2,1,1,3,4,[[107,1,1,3,4]]],[3,1,1,4,5,[[137,1,1,4,5]]],[4,3,3,5,8,[[156,1,1,5,6],[171,2,2,6,8]]],[23,1,1,8,9,[[782,1,1,8,9]]]],[77,1548,2493,3256,4348,5046,5410,5411,19897]]],["lived",[4,4,[[0,3,3,0,3,[[4,1,1,0,1],[10,2,2,1,3]]],[3,1,1,3,4,[[137,1,1,3,4]]]],[110,278,280,4349]]],["liveth",[1,1,[[4,1,1,0,1,[[157,1,1,0,1]]]],[5077]]]]},{"k":"H2426","v":[["*",[8,8,[[9,1,1,0,1,[[286,1,1,0,1]]],[10,1,1,1,2,[[311,1,1,1,2]]],[11,1,1,2,3,[[330,1,1,2,3]]],[18,1,1,3,4,[[599,1,1,3,4]]],[22,1,1,4,5,[[704,1,1,4,5]]],[24,1,1,5,6,[[798,1,1,5,6]]],[30,1,1,6,7,[[888,1,1,6,7]]],[33,1,1,7,8,[[902,1,1,7,8]]]],[8569,9474,10041,16096,18131,20340,22530,22720]]],["bulwarks",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18131]]],["host",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[30,1,1,1,2,[[888,1,1,1,2]]]],[10041,22530]]],["rampart",[2,2,[[24,1,1,0,1,[[798,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[20340,22720]]],["trench",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8569]]],["wall",[1,1,[[10,1,1,0,1,[[311,1,1,0,1]]]],[9474]]],["walls",[1,1,[[18,1,1,0,1,[[599,1,1,0,1]]]],[16096]]]]},{"k":"H2427","v":[["*",[7,7,[[1,1,1,0,1,[[64,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]],[18,1,1,2,3,[[525,1,1,2,3]]],[23,3,3,3,6,[[750,1,1,3,4],[766,1,1,4,5],[794,1,1,5,6]]],[32,1,1,6,7,[[896,1,1,6,7]]]],[1934,12988,14640,19113,19477,20209,22629]]],["pain",[3,3,[[18,1,1,0,1,[[525,1,1,0,1]]],[23,2,2,1,3,[[750,1,1,1,2],[766,1,1,2,3]]]],[14640,19113,19477]]],["pangs",[2,2,[[23,1,1,0,1,[[794,1,1,0,1]]],[32,1,1,1,2,[[896,1,1,1,2]]]],[20209,22629]]],["sorrow",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]]],[1934,12988]]]]},{"k":"H2428","v":[["*",[244,229,[[0,2,2,0,2,[[33,1,1,0,1],[46,1,1,1,2]]],[1,7,7,2,9,[[63,4,4,2,6],[64,1,1,6,7],[67,2,2,7,9]]],[3,3,3,9,12,[[140,1,1,9,10],[147,2,2,10,12]]],[4,5,5,12,17,[[155,1,1,12,13],[160,2,2,13,15],[163,1,1,15,16],[185,1,1,16,17]]],[5,4,4,17,21,[[187,1,1,17,18],[192,1,1,18,19],[194,1,1,19,20],[196,1,1,20,21]]],[6,7,7,21,28,[[213,1,1,21,22],[216,1,1,22,23],[221,1,1,23,24],[228,1,1,24,25],[230,2,2,25,27],[231,1,1,27,28]]],[7,3,3,28,31,[[233,1,1,28,29],[234,1,1,29,30],[235,1,1,30,31]]],[8,9,9,31,40,[[237,1,1,31,32],[244,1,1,32,33],[245,1,1,33,34],[249,2,2,34,36],[251,1,1,36,37],[252,1,1,37,38],[253,1,1,38,39],[266,1,1,39,40]]],[9,13,11,40,51,[[268,1,1,40,41],[274,1,1,41,42],[277,1,1,42,43],[279,1,1,43,44],[283,2,1,44,45],[288,2,2,45,47],[289,1,1,47,48],[290,4,3,48,51]]],[10,9,8,51,59,[[291,2,2,51,53],[300,1,1,53,54],[301,1,1,54,55],[305,1,1,55,56],[310,4,3,56,59]]],[11,16,15,59,74,[[314,1,1,59,60],[317,1,1,60,61],[318,2,2,61,63],[319,1,1,63,64],[321,1,1,64,65],[323,1,1,65,66],[327,1,1,66,67],[336,2,2,67,69],[337,6,5,69,74]]],[12,28,28,74,102,[[342,2,2,74,76],[344,6,6,76,82],[345,1,1,82,83],[346,1,1,83,84],[347,1,1,84,85],[348,2,2,85,87],[349,5,5,87,92],[355,1,1,92,93],[357,1,1,93,94],[363,7,7,94,101],[365,1,1,101,102]]],[13,27,23,102,125,[[375,1,1,102,103],[379,2,1,103,104],[380,3,2,104,106],[382,3,3,106,109],[383,5,5,109,114],[389,1,1,114,115],[390,3,2,115,117],[391,1,1,117,118],[392,5,4,118,122],[394,1,1,122,123],[398,1,1,123,124],[399,1,1,124,125]]],[14,1,1,125,126,[[410,1,1,125,126]]],[15,4,4,126,130,[[414,1,1,126,127],[416,1,1,127,128],[423,2,2,128,130]]],[16,2,2,130,132,[[426,1,1,130,131],[433,1,1,131,132]]],[17,6,6,132,138,[[440,1,1,132,133],[450,1,1,133,134],[455,2,2,134,136],[456,1,1,136,137],[466,1,1,137,138]]],[18,18,17,138,155,[[495,2,2,138,140],[510,2,2,140,142],[526,2,2,142,144],[536,1,1,144,145],[537,1,1,145,146],[539,1,1,146,147],[550,1,1,147,148],[553,1,1,148,149],[561,2,1,149,150],[585,1,1,150,151],[587,1,1,151,152],[595,2,2,152,154],[613,1,1,154,155]]],[19,5,5,155,160,[[639,1,1,155,156],[640,1,1,156,157],[658,3,3,157,160]]],[20,2,2,160,162,[[668,1,1,160,161],[670,1,1,161,162]]],[22,9,9,162,171,[[683,1,1,162,163],[686,1,1,163,164],[688,1,1,164,165],[708,1,1,165,166],[714,1,1,166,167],[721,1,1,167,168],[738,2,2,168,170],[739,1,1,170,171]]],[23,32,29,171,200,[[759,1,1,171,172],[761,1,1,172,173],[776,1,1,173,174],[778,3,3,174,177],[779,2,1,177,178],[781,5,4,178,182],[782,1,1,182,183],[783,2,2,183,185],[784,2,2,185,187],[785,3,3,187,190],[786,2,2,190,192],[787,2,2,192,194],[790,2,2,194,196],[792,1,1,196,197],[796,4,3,197,200]]],[25,14,12,200,212,[[818,1,1,200,201],[827,1,1,201,202],[828,2,2,202,204],[829,3,2,204,206],[830,3,2,206,208],[833,1,1,208,209],[838,1,1,209,210],[839,2,2,210,212]]],[26,6,5,212,217,[[860,6,5,212,217]]],[28,3,3,217,220,[[877,3,3,217,220]]],[30,2,2,220,222,[[888,2,2,220,222]]],[32,1,1,222,223,[[896,1,1,222,223]]],[33,1,1,223,224,[[901,1,1,223,224]]],[34,1,1,224,225,[[905,1,1,224,225]]],[35,1,1,225,226,[[906,1,1,225,226]]],[37,3,3,226,229,[[914,1,1,226,227],[919,1,1,227,228],[924,1,1,228,229]]]],[1009,1426,1893,1898,1906,1917,1924,2020,2024,4464,4673,4678,4993,5154,5155,5212,5821,5865,5951,6005,6071,6597,6666,6830,6995,7098,7100,7112,7150,7183,7201,7244,7392,7444,7556,7560,7613,7638,7693,8021,8056,8218,8275,8345,8459,8635,8642,8673,8694,8696,8701,8759,8769,9081,9136,9269,9409,9427,9433,9567,9648,9688,9689,9713,9761,9844,9945,10216,10218,10223,10227,10232,10245,10248,10446,10452,10537,10540,10542,10544,10546,10575,10615,10628,10671,10695,10699,10728,10741,10745,10748,10750,10899,10927,11083,11084,11085,11086,11107,11108,11109,11144,11365,11456,11483,11484,11513,11516,11517,11525,11536,11537,11539,11540,11670,11700,11701,11710,11743,11744,11745,11749,11770,11896,11922,12223,12316,12361,12594,12602,12705,12828,12956,13232,13341,13344,13362,13613,14150,14157,14382,14383,14654,14658,14801,14819,14837,15032,15086,15266,15755,15789,15884,15885,16211,16723,16769,17287,17294,17313,17503,17526,17761,17811,17864,18223,18332,18522,18826,18832,18849,19328,19360,19733,19802,19808,19822,19834,19879,19881,19884,19885,19898,19924,19928,19948,19954,19968,19970,19973,19976,19983,20001,20002,20047,20067,20094,20280,20284,20290,20842,21112,21131,21132,21161,21162,21201,21202,21279,21407,21429,21440,22043,22046,22049,22061,22062,22322,22333,22336,22521,22523,22633,22702,22787,22800,22928,23003,23082]]],["+",[17,17,[[4,1,1,0,1,[[155,1,1,0,1]]],[6,1,1,1,2,[[231,1,1,1,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[9,3,3,3,6,[[268,1,1,3,4],[279,1,1,4,5],[283,1,1,5,6]]],[10,1,1,6,7,[[310,1,1,6,7]]],[11,1,1,7,8,[[314,1,1,7,8]]],[12,5,5,8,13,[[342,1,1,8,9],[346,1,1,9,10],[363,3,3,10,13]]],[13,3,3,13,16,[[392,2,2,13,15],[394,1,1,15,16]]],[18,1,1,16,17,[[561,1,1,16,17]]]],[4993,7112,7693,8056,8345,8459,9409,9567,10446,10628,11084,11086,11107,11745,11749,11770,15266]]],["able",[3,3,[[1,2,2,0,2,[[67,2,2,0,2]]],[12,1,1,2,3,[[363,1,1,2,3]]]],[2020,2024,11085]]],["activity",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1426]]],["armies",[4,4,[[11,2,2,0,2,[[337,2,2,0,2]]],[12,1,1,2,3,[[348,1,1,2,3]]],[13,1,1,3,4,[[382,1,1,3,4]]]],[10245,10248,10699,11513]]],["army",[52,45,[[1,1,1,0,1,[[63,1,1,0,1]]],[4,1,1,1,2,[[163,1,1,1,2]]],[10,3,2,2,4,[[310,3,2,2,4]]],[11,3,2,4,6,[[337,3,2,4,6]]],[13,3,3,6,9,[[379,1,1,6,7],[380,1,1,7,8],[390,1,1,8,9]]],[15,2,2,9,11,[[414,1,1,9,10],[416,1,1,10,11]]],[22,2,2,11,13,[[714,1,1,11,12],[721,1,1,12,13]]],[23,20,17,13,30,[[776,1,1,13,14],[778,3,3,14,17],[779,2,1,17,18],[781,5,4,18,22],[782,1,1,22,23],[783,2,2,23,25],[790,2,2,25,27],[796,4,3,27,30]]],[25,10,9,30,39,[[818,1,1,30,31],[828,2,2,31,33],[830,3,2,33,35],[833,1,1,35,36],[838,1,1,36,37],[839,2,2,37,39]]],[26,5,4,39,43,[[860,5,4,39,43]]],[28,2,2,43,45,[[877,2,2,43,45]]]],[1898,5212,9427,9433,10227,10232,11456,11483,11701,12316,12361,18332,18522,19733,19802,19808,19822,19834,19879,19881,19884,19885,19898,19924,19928,20047,20067,20280,20284,20290,20842,21131,21132,21201,21202,21279,21407,21429,21440,22043,22049,22061,22062,22322,22336]]],["company",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11365]]],["forces",[14,14,[[13,1,1,0,1,[[383,1,1,0,1]]],[22,2,2,1,3,[[738,2,2,1,3]]],[23,9,9,3,12,[[784,2,2,3,5],[785,3,3,5,8],[786,2,2,8,10],[787,2,2,10,12]]],[26,1,1,12,13,[[860,1,1,12,13]]],[30,1,1,13,14,[[888,1,1,13,14]]]],[11525,18826,18832,19948,19954,19968,19970,19973,19976,19983,20001,20002,22046,22521]]],["goods",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]]],[4673,22800]]],["host",[27,26,[[1,4,4,0,4,[[63,3,3,0,3],[64,1,1,3,4]]],[3,1,1,4,5,[[147,1,1,4,5]]],[8,2,2,5,7,[[249,1,1,5,6],[252,1,1,6,7]]],[9,4,3,7,10,[[274,1,1,7,8],[290,3,2,8,10]]],[11,6,6,10,16,[[318,2,2,10,12],[319,1,1,12,13],[321,1,1,13,14],[323,1,1,14,15],[337,1,1,15,16]]],[12,1,1,16,17,[[355,1,1,16,17]]],[13,7,7,17,24,[[380,1,1,17,18],[382,2,2,18,20],[389,1,1,20,21],[390,2,2,21,23],[392,1,1,23,24]]],[18,2,2,24,26,[[510,1,1,24,25],[613,1,1,25,26]]]],[1893,1906,1917,1924,4678,7556,7638,8218,8694,8696,9688,9689,9713,9761,9844,10223,10899,11484,11516,11517,11670,11700,11701,11743,14382,16211]]],["hosts",[1,1,[[10,1,1,0,1,[[305,1,1,0,1]]]],[9269]]],["man",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7613]]],["men",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7444]]],["might",[6,6,[[11,1,1,0,1,[[336,1,1,0,1]]],[12,3,3,1,4,[[344,2,2,1,3],[349,1,1,3,4]]],[18,1,1,4,5,[[553,1,1,4,5]]],[37,1,1,5,6,[[914,1,1,5,6]]]],[10218,10537,10540,10728,15086,22928]]],["mighty",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11745]]],["power",[9,9,[[8,1,1,0,1,[[244,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[12,1,1,2,3,[[357,1,1,2,3]]],[16,2,2,3,5,[[426,1,1,3,4],[433,1,1,4,5]]],[17,1,1,5,6,[[456,1,1,5,6]]],[18,2,2,6,8,[[536,1,1,6,7],[587,1,1,7,8]]],[37,1,1,8,9,[[919,1,1,8,9]]]],[7392,8635,10927,12705,12828,13362,14801,15789,23003]]],["riches",[11,10,[[17,1,1,0,1,[[455,1,1,0,1]]],[18,2,2,1,3,[[539,1,1,1,2],[550,1,1,2,3]]],[22,4,4,3,7,[[686,1,1,3,4],[688,1,1,4,5],[708,1,1,5,6],[739,1,1,6,7]]],[25,4,3,7,10,[[827,1,1,7,8],[829,3,2,8,10]]]],[13341,14837,15032,17811,17864,18223,18849,21112,21161,21162]]],["soldiers",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12223]]],["strength",[11,11,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,4,4,2,6,[[495,2,2,2,4],[510,1,1,4,5],[561,1,1,5,6]]],[19,1,1,6,7,[[658,1,1,6,7]]],[20,1,1,7,8,[[668,1,1,7,8]]],[22,1,1,8,9,[[683,1,1,8,9]]],[28,1,1,9,10,[[877,1,1,9,10]]],[34,1,1,10,11,[[905,1,1,10,11]]]],[7244,8642,14150,14157,14383,15266,17287,17503,17761,22333,22787]]],["strong",[2,2,[[20,1,1,0,1,[[670,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[17526,20094]]],["substance",[8,8,[[4,1,1,0,1,[[185,1,1,0,1]]],[17,3,3,1,4,[[440,1,1,1,2],[450,1,1,2,3],[455,1,1,3,4]]],[23,2,2,4,6,[[759,1,1,4,5],[761,1,1,5,6]]],[30,1,1,6,7,[[888,1,1,6,7]]],[32,1,1,7,8,[[896,1,1,7,8]]]],[5821,12956,13232,13344,19328,19360,22523,22633]]],["train",[1,1,[[10,1,1,0,1,[[300,1,1,0,1]]]],[9081]]],["valiant",[12,12,[[8,2,2,0,2,[[249,1,1,0,1],[266,1,1,1,2]]],[9,4,4,2,6,[[277,1,1,2,3],[283,1,1,3,4],[289,1,1,4,5],[290,1,1,5,6]]],[10,1,1,6,7,[[291,1,1,6,7]]],[12,3,3,7,10,[[347,1,1,7,8],[348,1,1,8,9],[365,1,1,9,10]]],[15,1,1,10,11,[[423,1,1,10,11]]],[33,1,1,11,12,[[901,1,1,11,12]]]],[7560,8021,8275,8459,8673,8701,8759,10671,10695,11144,12594,22702]]],["valiantly",[5,5,[[3,1,1,0,1,[[140,1,1,0,1]]],[18,4,4,1,5,[[537,1,1,1,2],[585,1,1,2,3],[595,2,2,3,5]]]],[4464,14819,15755,15884,15885]]],["valour",[36,36,[[5,4,4,0,4,[[187,1,1,0,1],[192,1,1,1,2],[194,1,1,2,3],[196,1,1,3,4]]],[6,6,6,4,10,[[213,1,1,4,5],[216,1,1,5,6],[221,1,1,6,7],[228,1,1,7,8],[230,2,2,8,10]]],[10,1,1,10,11,[[301,1,1,10,11]]],[11,2,2,11,13,[[317,1,1,11,12],[336,1,1,12,13]]],[12,13,13,13,26,[[342,1,1,13,14],[344,4,4,14,18],[345,1,1,18,19],[349,4,4,19,23],[363,3,3,23,26]]],[13,9,9,26,35,[[379,1,1,26,27],[380,1,1,27,28],[383,4,4,28,32],[391,1,1,32,33],[392,1,1,33,34],[398,1,1,34,35]]],[15,1,1,35,36,[[423,1,1,35,36]]]],[5865,5951,6005,6071,6597,6666,6830,6995,7098,7100,9136,9648,10216,10452,10542,10544,10546,10575,10615,10741,10745,10748,10750,11083,11108,11109,11456,11483,11536,11537,11539,11540,11710,11744,11896,12602]]],["virtuous",[3,3,[[7,1,1,0,1,[[234,1,1,0,1]]],[19,2,2,1,3,[[639,1,1,1,2],[658,1,1,2,3]]]],[7183,16723,17294]]],["virtuously",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17313]]],["war",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11922]]],["wealth",[10,10,[[0,1,1,0,1,[[33,1,1,0,1]]],[4,2,2,1,3,[[160,2,2,1,3]]],[7,1,1,3,4,[[233,1,1,3,4]]],[11,1,1,4,5,[[327,1,1,4,5]]],[17,1,1,5,6,[[466,1,1,5,6]]],[18,2,2,6,8,[[526,2,2,6,8]]],[19,1,1,8,9,[[640,1,1,8,9]]],[37,1,1,9,10,[[924,1,1,9,10]]]],[1009,5154,5155,7150,9945,13613,14654,14658,16769,23082]]],["worthily",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7201]]],["worthy",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8769]]]]},{"k":"H2429","v":[["*",[7,6,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,6,5,1,6,[[852,3,2,1,3],[853,2,2,3,5],[854,1,1,5,6]]]],[12133,21811,21827,21851,21872,21881]]],["+",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21827]]],["aloud",[3,3,[[26,3,3,0,3,[[852,1,1,0,1],[853,1,1,1,2],[854,1,1,2,3]]]],[21811,21851,21881]]],["army",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[853,1,1,1,2]]]],[21827,21872]]],["power",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12133]]]]},{"k":"H2430","v":[["bulwarks",[1,1,[[18,1,1,0,1,[[525,1,1,0,1]]]],[14647]]]]},{"k":"H2431","v":[["Helam",[2,2,[[9,2,2,0,2,[[276,2,2,0,2]]]],[8256,8257]]]]},{"k":"H2432","v":[["Hilen",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10512]]]]},{"k":"H2433","v":[["comely",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13900]]]]},{"k":"H2434","v":[["wall",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20718]]]]},{"k":"H2435","v":[["*",[25,24,[[10,2,2,0,2,[[296,2,2,0,2]]],[11,1,1,2,3,[[328,1,1,2,3]]],[12,1,1,3,4,[[363,1,1,3,4]]],[13,1,1,4,5,[[399,1,1,4,5]]],[15,1,1,5,6,[[423,1,1,5,6]]],[16,1,1,6,7,[[431,1,1,6,7]]],[25,18,17,7,24,[[811,1,1,7,8],[841,5,5,8,13],[842,1,1,13,14],[843,6,6,14,20],[845,3,2,20,22],[847,2,2,22,24]]]],[8925,8926,9981,11106,11922,12604,12797,20638,21494,21497,21508,21511,21514,21543,21553,21555,21559,21560,21561,21566,21600,21618,21675,21676]]],["+",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21561]]],["outer",[1,1,[[25,1,1,0,1,[[811,1,1,0,1]]]],[20638]]],["outward",[7,7,[[12,1,1,0,1,[[363,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]],[16,1,1,2,3,[[431,1,1,2,3]]],[25,4,4,3,7,[[841,3,3,3,6],[845,1,1,6,7]]]],[11106,12604,12797,21494,21497,21511,21600]]],["utter",[11,10,[[25,11,10,0,10,[[841,2,2,0,2],[843,5,5,2,7],[845,2,1,7,8],[847,2,2,8,10]]]],[21508,21514,21553,21555,21559,21560,21566,21618,21675,21676]]],["without",[5,5,[[10,2,2,0,2,[[296,2,2,0,2]]],[11,1,1,2,3,[[328,1,1,2,3]]],[13,1,1,3,4,[[399,1,1,3,4]]],[25,1,1,4,5,[[842,1,1,4,5]]]],[8925,8926,9981,11922,21543]]]]},{"k":"H2436","v":[["*",[38,34,[[0,1,1,0,1,[[15,1,1,0,1]]],[1,5,2,1,3,[[53,5,2,1,3]]],[3,1,1,3,4,[[127,1,1,3,4]]],[4,3,3,4,7,[[165,1,1,4,5],[180,2,2,5,7]]],[7,1,1,7,8,[[235,1,1,7,8]]],[9,2,2,8,10,[[278,2,2,8,10]]],[10,5,4,10,14,[[291,1,1,10,11],[293,2,1,11,12],[307,1,1,12,13],[312,1,1,13,14]]],[17,1,1,14,15,[[454,1,1,14,15]]],[18,4,4,15,19,[[512,1,1,15,16],[551,1,1,16,17],[556,1,1,17,18],[566,1,1,18,19]]],[19,5,5,19,24,[[632,1,1,19,20],[633,1,1,20,21],[643,1,1,21,22],[644,1,1,22,23],[648,1,1,23,24]]],[20,1,1,24,25,[[665,1,1,24,25]]],[22,3,3,25,28,[[718,1,1,25,26],[743,2,2,26,28]]],[23,1,1,28,29,[[776,1,1,28,29]]],[24,1,1,29,30,[[798,1,1,29,30]]],[25,3,3,30,33,[[844,3,3,30,33]]],[32,1,1,33,34,[[899,1,1,33,34]]]],[386,1607,1608,4036,5278,5665,5667,7206,8289,8294,8719,8836,9336,9515,13324,14423,15059,15197,15376,16537,16567,16873,16896,16998,17438,18431,18903,18904,19749,20344,21585,21586,21589,22669]]],["+",[4,4,[[1,1,1,0,1,[[53,1,1,0,1]]],[10,1,1,1,2,[[307,1,1,1,2]]],[19,1,1,2,3,[[644,1,1,2,3]]],[25,1,1,3,4,[[844,1,1,3,4]]]],[1608,9336,16896,21586]]],["bosom",[29,26,[[0,1,1,0,1,[[15,1,1,0,1]]],[1,4,2,1,3,[[53,4,2,1,3]]],[3,1,1,3,4,[[127,1,1,3,4]]],[4,3,3,4,7,[[165,1,1,4,5],[180,2,2,5,7]]],[7,1,1,7,8,[[235,1,1,7,8]]],[9,2,2,8,10,[[278,2,2,8,10]]],[10,3,2,10,12,[[291,1,1,10,11],[293,2,1,11,12]]],[18,4,4,12,16,[[512,1,1,12,13],[551,1,1,13,14],[556,1,1,14,15],[566,1,1,15,16]]],[19,3,3,16,19,[[632,1,1,16,17],[633,1,1,17,18],[648,1,1,18,19]]],[20,1,1,19,20,[[665,1,1,19,20]]],[22,3,3,20,23,[[718,1,1,20,21],[743,2,2,21,23]]],[23,1,1,23,24,[[776,1,1,23,24]]],[24,1,1,24,25,[[798,1,1,24,25]]],[32,1,1,25,26,[[899,1,1,25,26]]]],[386,1607,1608,4036,5278,5665,5667,7206,8289,8294,8719,8836,14423,15059,15197,15376,16537,16567,16998,17438,18431,18903,18904,19749,20344,22669]]],["bottom",[2,2,[[25,2,2,0,2,[[844,2,2,0,2]]]],[21585,21589]]],["lap",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16873]]],["midst",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9515]]],["within",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13324]]]]},{"k":"H2437","v":[["Hirah",[2,2,[[0,2,2,0,2,[[37,2,2,0,2]]]],[1120,1131]]]]},{"k":"H2438","v":[["*",[25,21,[[9,1,1,0,1,[[271,1,1,0,1]]],[10,21,17,1,18,[[295,10,8,1,9],[297,4,3,9,12],[299,5,4,12,16],[300,2,2,16,18]]],[12,1,1,18,19,[[351,1,1,18,19]]],[13,2,2,19,21,[[374,1,1,19,20],[375,1,1,20,21]]]],[8143,8879,8880,8885,8886,8888,8889,8890,8896,8947,8974,8979,9062,9063,9065,9078,9090,9101,10775,11348,11374]]],["Hiram",[22,18,[[9,1,1,0,1,[[271,1,1,0,1]]],[10,20,16,1,17,[[295,9,7,1,8],[297,4,3,8,11],[299,5,4,11,15],[300,2,2,15,17]]],[12,1,1,17,18,[[351,1,1,17,18]]]],[8143,8879,8880,8885,8886,8888,8889,8890,8947,8974,8979,9062,9063,9065,9078,9090,9101,10775]]],["Hiram's",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8896]]],["Huram",[2,2,[[13,2,2,0,2,[[374,1,1,0,1],[375,1,1,1,2]]]],[11348,11374]]]]},{"k":"H2439","v":[["haste",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14988]]]]},{"k":"H2440","v":[["soon",[1,1,[[18,1,1,0,1,[[567,1,1,0,1]]]],[15388]]]]},{"k":"H2441","v":[["*",[18,18,[[17,7,7,0,7,[[441,1,1,0,1],[447,1,1,1,2],[455,1,1,2,3],[464,1,1,3,4],[466,1,1,4,5],[468,1,1,5,6],[469,1,1,6,7]]],[18,2,2,7,9,[[596,1,1,7,8],[614,1,1,8,9]]],[19,3,3,9,12,[[632,1,1,9,10],[635,1,1,10,11],[651,1,1,11,12]]],[21,3,3,12,15,[[672,1,1,12,13],[675,1,1,13,14],[677,1,1,14,15]]],[24,1,1,15,16,[[800,1,1,15,16]]],[25,1,1,16,17,[[804,1,1,16,17]]],[27,1,1,17,18,[[869,1,1,17,18]]]],[13008,13139,13339,13542,13618,13652,13686,16001,16228,16520,16609,17092,17557,17614,17636,20424,20528,22195]]],["mouth",[14,14,[[17,6,6,0,6,[[447,1,1,0,1],[455,1,1,1,2],[464,1,1,2,3],[466,1,1,3,4],[468,1,1,4,5],[469,1,1,5,6]]],[18,1,1,6,7,[[614,1,1,6,7]]],[19,2,2,7,9,[[632,1,1,7,8],[635,1,1,8,9]]],[21,2,2,9,11,[[675,1,1,9,10],[677,1,1,10,11]]],[24,1,1,11,12,[[800,1,1,11,12]]],[25,1,1,12,13,[[804,1,1,12,13]]],[27,1,1,13,14,[[869,1,1,13,14]]]],[13139,13339,13542,13618,13652,13686,16228,16520,16609,17614,17636,20424,20528,22195]]],["taste",[4,4,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[19,1,1,2,3,[[651,1,1,2,3]]],[21,1,1,3,4,[[672,1,1,3,4]]]],[13008,16001,17092,17557]]]]},{"k":"H2442","v":[["*",[14,13,[[11,2,2,0,2,[[319,1,1,0,1],[321,1,1,1,2]]],[17,2,2,2,4,[[438,1,1,2,3],[467,1,1,3,4]]],[18,2,2,4,6,[[510,1,1,4,5],[583,1,1,5,6]]],[22,4,3,6,9,[[686,1,1,6,7],[708,2,1,7,8],[742,1,1,8,9]]],[26,1,1,9,10,[[861,1,1,9,10]]],[27,1,1,10,11,[[867,1,1,10,11]]],[34,1,1,11,12,[[904,1,1,11,12]]],[35,1,1,12,13,[[908,1,1,12,13]]]],[9716,9759,12925,13632,14386,15664,17824,18235,18889,22093,22176,22751,22828]]],["long",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12925]]],["tarry",[2,2,[[11,2,2,0,2,[[319,1,1,0,1],[321,1,1,1,2]]]],[9716,9759]]],["wait",[6,5,[[22,3,2,0,2,[[686,1,1,0,1],[708,2,1,1,2]]],[27,1,1,2,3,[[867,1,1,2,3]]],[34,1,1,3,4,[[904,1,1,3,4]]],[35,1,1,4,5,[[908,1,1,4,5]]]],[17824,18235,22176,22751,22828]]],["waited",[2,2,[[17,1,1,0,1,[[467,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]]],[13632,15664]]],["waiteth",[3,3,[[18,1,1,0,1,[[510,1,1,0,1]]],[22,1,1,1,2,[[742,1,1,1,2]]],[26,1,1,2,3,[[861,1,1,2,3]]]],[14386,18889,22093]]]]},{"k":"H2443","v":[["*",[3,3,[[17,1,1,0,1,[[476,1,1,0,1]]],[22,1,1,1,2,[[697,1,1,1,2]]],[34,1,1,2,3,[[903,1,1,2,3]]]],[13889,18012,22746]]],["angle",[2,2,[[22,1,1,0,1,[[697,1,1,0,1]]],[34,1,1,1,2,[[903,1,1,1,2]]]],[18012,22746]]],["hook",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13889]]]]},{"k":"H2444","v":[["Hachilah",[3,3,[[8,3,3,0,3,[[258,1,1,0,1],[261,2,2,1,3]]]],[7829,7906,7908]]]]},{"k":"H2445","v":[["wise",[14,13,[[26,14,13,0,13,[[851,9,8,0,8],[853,2,2,8,10],[854,3,3,10,13]]]],[21770,21771,21772,21776,21779,21782,21785,21806,21843,21855,21881,21882,21889]]]]},{"k":"H2446","v":[["Hachaliah",[2,2,[[15,2,2,0,2,[[413,1,1,0,1],[422,1,1,1,2]]]],[12297,12550]]]]},{"k":"H2447","v":[["red",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1485]]]]},{"k":"H2448","v":[["redness",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17073]]]]},{"k":"H2449","v":[["*",[27,26,[[1,1,1,0,1,[[50,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[10,1,1,2,3,[[294,1,1,2,3]]],[17,2,2,3,5,[[467,1,1,3,4],[470,1,1,4,5]]],[18,4,4,5,9,[[496,1,1,5,6],[535,1,1,6,7],[582,1,1,7,8],[596,1,1,8,9]]],[19,13,12,9,21,[[633,1,1,9,10],[635,1,1,10,11],[636,3,2,11,13],[640,1,1,13,14],[646,1,1,14,15],[647,1,1,15,16],[648,1,1,16,17],[650,2,2,17,19],[654,1,1,19,20],[657,1,1,20,21]]],[20,4,4,21,25,[[660,2,2,21,23],[665,2,2,23,25]]],[37,1,1,25,26,[[919,1,1,25,26]]]],[1542,5787,8875,13637,13731,14175,14784,15628,15996,16546,16635,16647,16650,16767,16945,16955,16995,17059,17063,17180,17275,17348,17352,17445,17452,23001]]],["+",[3,3,[[19,1,1,0,1,[[657,1,1,0,1]]],[20,2,2,1,3,[[660,1,1,1,2],[665,1,1,2,3]]]],[17275,17352,17445]]],["wisdom",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15628]]],["wise",[17,16,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[467,1,1,1,2]]],[18,1,1,2,3,[[496,1,1,2,3]]],[19,11,10,3,13,[[633,1,1,3,4],[635,1,1,4,5],[636,2,1,5,6],[640,1,1,6,7],[646,1,1,7,8],[647,1,1,8,9],[648,1,1,9,10],[650,2,2,10,12],[654,1,1,12,13]]],[20,2,2,13,15,[[660,1,1,13,14],[665,1,1,14,15]]],[37,1,1,15,16,[[919,1,1,15,16]]]],[5787,13637,14175,16546,16635,16650,16767,16945,16955,16995,17059,17063,17180,17348,17452,23001]]],["wisely",[2,2,[[1,1,1,0,1,[[50,1,1,0,1]]],[18,1,1,1,2,[[535,1,1,1,2]]]],[1542,14784]]],["wiser",[4,4,[[10,1,1,0,1,[[294,1,1,0,1]]],[17,1,1,1,2,[[470,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[19,1,1,3,4,[[636,1,1,3,4]]]],[8875,13731,15996,16647]]]]},{"k":"H2450","v":[["*",[137,133,[[0,3,3,0,3,[[40,3,3,0,3]]],[1,9,9,3,12,[[56,1,1,3,4],[77,1,1,4,5],[80,1,1,5,6],[84,2,2,6,8],[85,4,4,8,12]]],[4,5,5,12,17,[[153,2,2,12,14],[156,1,1,14,15],[168,1,1,15,16],[184,1,1,16,17]]],[6,1,1,17,18,[[215,1,1,17,18]]],[9,4,4,18,22,[[279,1,1,18,19],[280,2,2,19,21],[286,1,1,21,22]]],[10,3,3,22,25,[[292,1,1,22,23],[293,1,1,23,24],[295,1,1,24,25]]],[12,1,1,25,26,[[359,1,1,25,26]]],[13,6,4,26,30,[[368,6,4,26,30]]],[16,2,2,30,32,[[426,1,1,30,31],[431,1,1,31,32]]],[17,8,8,32,40,[[440,1,1,32,33],[444,1,1,33,34],[450,2,2,34,36],[452,1,1,36,37],[469,2,2,37,39],[472,1,1,39,40]]],[18,2,2,40,42,[[526,1,1,40,41],[584,1,1,41,42]]],[19,46,46,42,88,[[628,2,2,42,44],[630,2,2,44,46],[636,2,2,46,48],[637,3,3,48,51],[638,2,2,51,53],[639,2,2,53,55],[640,3,3,55,58],[641,3,3,58,61],[642,5,5,61,66],[643,3,3,66,69],[644,1,1,69,70],[645,1,1,70,71],[647,1,1,71,72],[648,3,3,72,75],[649,1,1,75,76],[650,1,1,76,77],[651,2,2,77,79],[652,1,1,79,80],[653,3,3,80,83],[655,1,1,83,84],[656,3,3,84,87],[657,1,1,87,88]]],[20,21,20,88,108,[[660,4,3,88,91],[662,1,1,91,92],[664,1,1,92,93],[665,4,4,93,97],[666,3,3,97,100],[667,4,4,100,104],[668,2,2,104,106],[670,2,2,106,108]]],[22,9,8,108,116,[[681,1,1,108,109],[683,1,1,109,110],[697,3,2,110,112],[707,1,1,112,113],[709,1,1,113,114],[718,1,1,114,115],[722,1,1,115,116]]],[23,11,11,116,127,[[748,1,1,116,117],[752,2,2,117,119],[753,3,3,119,122],[754,2,2,122,124],[762,1,1,124,125],[794,1,1,125,126],[795,1,1,126,127]]],[25,3,3,127,130,[[828,2,2,127,129],[829,1,1,129,130]]],[27,2,2,130,132,[[874,1,1,130,131],[875,1,1,131,132]]],[30,1,1,132,133,[[888,1,1,132,133]]]],[1203,1228,1234,1696,2296,2426,2541,2556,2567,2568,2570,2574,4905,4907,5010,5361,5764,6652,8320,8358,8376,8570,8779,8828,8885,10979,11218,11223,11224,11225,12715,12806,12964,13055,13205,13221,13270,13685,13717,13793,14658,15742,16405,16406,16462,16490,16646,16647,16657,16664,16670,16717,16718,16734,16737,16748,16761,16767,16775,16788,16796,16809,16814,16819,16827,16838,16854,16861,16863,16901,16916,16980,16995,17004,17006,17032,17068,17084,17102,17125,17146,17153,17157,17207,17232,17233,17235,17275,17347,17349,17352,17394,17425,17433,17434,17436,17448,17459,17463,17475,17476,17486,17490,17492,17495,17505,17532,17534,17710,17760,18015,18016,18207,18252,18440,18558,19049,19161,19162,19187,19192,19198,19208,19210,19402,20201,20269,21129,21130,21160,22279,22291,22518]]],["+",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]],[23,1,1,2,3,[[762,1,1,2,3]]],[27,1,1,3,4,[[874,1,1,3,4]]]],[5764,17275,19402,22279]]],["Wise",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16670]]],["cunning",[6,6,[[13,2,2,0,2,[[368,2,2,0,2]]],[22,2,2,2,4,[[681,1,1,2,3],[718,1,1,3,4]]],[23,2,2,4,6,[[753,1,1,4,5],[754,1,1,5,6]]]],[11218,11224,17710,18440,19192,19210]]],["man",[2,2,[[19,1,1,0,1,[[636,1,1,0,1]]],[20,1,1,1,2,[[665,1,1,1,2]]]],[16646,17436]]],["man's",[4,4,[[20,4,4,0,4,[[660,1,1,0,1],[666,1,1,1,2],[668,2,2,2,4]]]],[17347,17463,17495,17505]]],["men",[10,9,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,2,2,1,3,[[56,1,1,1,2],[85,1,1,2,3]]],[12,1,1,3,4,[[359,1,1,3,4]]],[13,3,2,4,6,[[368,3,2,4,6]]],[16,2,2,6,8,[[426,1,1,6,7],[431,1,1,7,8]]],[18,1,1,8,9,[[526,1,1,8,9]]]],[1203,1696,2570,10979,11218,11225,12715,12806,14658]]],["subtil",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8320]]],["wise",[107,105,[[0,2,2,0,2,[[40,2,2,0,2]]],[1,7,7,2,9,[[77,1,1,2,3],[80,1,1,3,4],[84,2,2,4,6],[85,3,3,6,9]]],[4,4,4,9,13,[[153,2,2,9,11],[156,1,1,11,12],[168,1,1,12,13]]],[6,1,1,13,14,[[215,1,1,13,14]]],[9,3,3,14,17,[[280,2,2,14,16],[286,1,1,16,17]]],[10,3,3,17,20,[[292,1,1,17,18],[293,1,1,18,19],[295,1,1,19,20]]],[13,1,1,20,21,[[368,1,1,20,21]]],[17,8,8,21,29,[[440,1,1,21,22],[444,1,1,22,23],[450,2,2,23,25],[452,1,1,25,26],[469,2,2,26,28],[472,1,1,28,29]]],[18,1,1,29,30,[[584,1,1,29,30]]],[19,42,42,30,72,[[628,2,2,30,32],[630,2,2,32,34],[636,1,1,34,35],[637,2,2,35,37],[638,2,2,37,39],[639,2,2,39,41],[640,3,3,41,44],[641,3,3,44,47],[642,5,5,47,52],[643,3,3,52,55],[644,1,1,55,56],[645,1,1,56,57],[647,1,1,57,58],[648,3,3,58,61],[649,1,1,61,62],[650,1,1,62,63],[651,2,2,63,65],[652,1,1,65,66],[653,2,2,66,68],[655,1,1,68,69],[656,3,3,69,72]]],[20,16,15,72,87,[[660,3,2,72,74],[662,1,1,74,75],[664,1,1,75,76],[665,3,3,76,79],[666,2,2,79,81],[667,4,4,81,85],[670,2,2,85,87]]],[22,7,6,87,93,[[683,1,1,87,88],[697,3,2,88,90],[707,1,1,90,91],[709,1,1,91,92],[722,1,1,92,93]]],[23,8,8,93,101,[[748,1,1,93,94],[752,2,2,94,96],[753,2,2,96,98],[754,1,1,98,99],[794,1,1,99,100],[795,1,1,100,101]]],[25,2,2,101,103,[[828,2,2,101,103]]],[27,1,1,103,104,[[875,1,1,103,104]]],[30,1,1,104,105,[[888,1,1,104,105]]]],[1228,1234,2296,2426,2541,2556,2567,2568,2574,4905,4907,5010,5361,6652,8358,8376,8570,8779,8828,8885,11223,12964,13055,13205,13221,13270,13685,13717,13793,15742,16405,16406,16462,16490,16647,16657,16664,16717,16718,16734,16737,16748,16761,16767,16775,16788,16796,16809,16814,16819,16827,16838,16854,16861,16863,16901,16916,16980,16995,17004,17006,17032,17068,17084,17102,17125,17146,17153,17207,17232,17233,17235,17349,17352,17394,17425,17433,17434,17448,17459,17475,17476,17486,17490,17492,17532,17534,17760,18015,18016,18207,18252,18558,19049,19161,19162,19187,19198,19208,20201,20269,21129,21130,22291,22518]]],["wiser",[2,2,[[19,1,1,0,1,[[653,1,1,0,1]]],[25,1,1,1,2,[[829,1,1,1,2]]]],[17157,21160]]]]},{"k":"H2451","v":[["*",[149,141,[[1,8,8,0,8,[[77,1,1,0,1],[80,2,2,1,3],[84,3,3,3,6],[85,2,2,6,8]]],[4,2,2,8,10,[[156,1,1,8,9],[186,1,1,9,10]]],[9,2,2,10,12,[[280,1,1,10,11],[286,1,1,11,12]]],[10,17,14,12,26,[[292,1,1,12,13],[293,1,1,13,14],[294,6,3,14,17],[295,1,1,17,18],[297,1,1,18,19],[300,6,6,19,25],[301,1,1,25,26]]],[12,1,1,26,27,[[365,1,1,26,27]]],[13,9,9,27,36,[[367,3,3,27,30],[375,6,6,30,36]]],[17,18,18,36,54,[[439,1,1,36,37],[446,1,1,37,38],[447,3,3,38,41],[448,1,1,41,42],[450,1,1,42,43],[461,1,1,43,44],[463,4,4,44,48],[467,2,2,48,50],[468,1,1,50,51],[473,2,2,51,53],[474,1,1,53,54]]],[18,6,6,54,60,[[514,1,1,54,55],[528,1,1,55,56],[567,1,1,56,57],[581,1,1,57,58],[584,1,1,58,59],[588,1,1,59,60]]],[19,39,38,60,98,[[628,2,2,60,62],[629,3,3,62,65],[630,2,2,65,67],[631,4,3,67,70],[632,1,1,70,71],[634,1,1,71,72],[635,3,3,72,75],[636,1,1,75,76],[637,3,3,76,79],[638,1,1,79,80],[640,1,1,80,81],[641,3,3,81,84],[642,1,1,84,85],[643,1,1,85,86],[644,2,2,86,88],[645,1,1,88,89],[648,1,1,89,90],[650,1,1,90,91],[651,2,2,91,93],[655,1,1,93,94],[656,2,2,94,96],[657,1,1,96,97],[658,1,1,97,98]]],[20,28,25,98,123,[[659,5,4,98,102],[660,6,6,102,108],[665,7,6,108,114],[666,2,2,114,116],[667,6,5,116,121],[668,2,2,121,123]]],[22,5,5,123,128,[[688,1,1,123,124],[689,1,1,124,125],[707,1,1,125,126],[711,1,1,126,127],[725,1,1,127,128]]],[23,6,5,128,133,[[752,1,1,128,129],[753,1,1,129,130],[754,1,1,130,131],[793,2,1,131,132],[795,1,1,132,133]]],[25,5,5,133,138,[[829,5,5,133,138]]],[26,3,3,138,141,[[850,3,3,138,141]]]],[2296,2423,2426,2557,2562,2566,2567,2568,5010,5848,8376,8576,8776,8844,8873,8874,8878,8890,8948,9083,9085,9086,9087,9102,9103,9149,11164,11204,11205,11206,11367,11369,11370,11371,11386,11387,12951,13114,13130,13140,13141,13158,13211,13470,13516,13522,13524,13532,13635,13641,13683,13829,13830,13851,14480,14697,15390,15595,15726,15803,16402,16407,16435,16439,16443,16468,16474,16495,16497,16501,16518,16579,16603,16613,16614,16648,16669,16679,16687,16690,16757,16778,16780,16805,16840,16856,16889,16897,16905,17014,17067,17082,17093,17222,17227,17239,17254,17310,17328,17331,17332,17333,17336,17342,17345,17346,17354,17359,17439,17440,17441,17448,17452,17454,17459,17474,17485,17488,17490,17491,17493,17494,17503,17863,17886,18207,18285,18609,19162,19198,19213,20134,20227,21161,21162,21164,21169,21174,21741,21754,21757]]],["+",[4,4,[[10,1,1,0,1,[[294,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]],[20,2,2,2,4,[[665,1,1,2,3],[668,1,1,3,4]]]],[8874,15726,17439,17494]]],["Wisdom",[8,8,[[13,1,1,0,1,[[367,1,1,0,1]]],[19,3,3,1,4,[[631,1,1,1,2],[641,1,1,2,3],[644,1,1,3,4]]],[20,4,4,4,8,[[665,2,2,4,6],[667,2,2,6,8]]]],[11206,16497,16805,16897,17440,17448,17491,17493]]],["man",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11164]]],["wisdom",[135,130,[[1,8,8,0,8,[[77,1,1,0,1],[80,2,2,1,3],[84,3,3,3,6],[85,2,2,6,8]]],[4,2,2,8,10,[[156,1,1,8,9],[186,1,1,9,10]]],[9,2,2,10,12,[[280,1,1,10,11],[286,1,1,11,12]]],[10,16,14,12,26,[[292,1,1,12,13],[293,1,1,13,14],[294,5,3,14,17],[295,1,1,17,18],[297,1,1,18,19],[300,6,6,19,25],[301,1,1,25,26]]],[13,8,8,26,34,[[367,2,2,26,28],[375,6,6,28,34]]],[17,18,18,34,52,[[439,1,1,34,35],[446,1,1,35,36],[447,3,3,36,39],[448,1,1,39,40],[450,1,1,40,41],[461,1,1,41,42],[463,4,4,42,46],[467,2,2,46,48],[468,1,1,48,49],[473,2,2,49,51],[474,1,1,51,52]]],[18,5,5,52,57,[[514,1,1,52,53],[528,1,1,53,54],[567,1,1,54,55],[581,1,1,55,56],[588,1,1,56,57]]],[19,35,35,57,92,[[628,2,2,57,59],[629,3,3,59,62],[630,2,2,62,64],[631,3,3,64,67],[632,1,1,67,68],[634,1,1,68,69],[635,3,3,69,72],[636,1,1,72,73],[637,3,3,73,76],[638,1,1,76,77],[640,1,1,77,78],[641,2,2,78,80],[642,1,1,80,81],[643,1,1,81,82],[644,1,1,82,83],[645,1,1,83,84],[648,1,1,84,85],[650,1,1,85,86],[651,2,2,86,88],[656,2,2,88,90],[657,1,1,90,91],[658,1,1,91,92]]],[20,22,20,92,112,[[659,5,4,92,96],[660,6,6,96,102],[665,4,3,102,105],[666,2,2,105,107],[667,4,4,107,111],[668,1,1,111,112]]],[22,5,5,112,117,[[688,1,1,112,113],[689,1,1,113,114],[707,1,1,114,115],[711,1,1,115,116],[725,1,1,116,117]]],[23,6,5,117,122,[[752,1,1,117,118],[753,1,1,118,119],[754,1,1,119,120],[793,2,1,120,121],[795,1,1,121,122]]],[25,5,5,122,127,[[829,5,5,122,127]]],[26,3,3,127,130,[[850,3,3,127,130]]]],[2296,2423,2426,2557,2562,2566,2567,2568,5010,5848,8376,8576,8776,8844,8873,8874,8878,8890,8948,9083,9085,9086,9087,9102,9103,9149,11204,11205,11367,11369,11370,11371,11386,11387,12951,13114,13130,13140,13141,13158,13211,13470,13516,13522,13524,13532,13635,13641,13683,13829,13830,13851,14480,14697,15390,15595,15803,16402,16407,16435,16439,16443,16468,16474,16495,16497,16501,16518,16579,16603,16613,16614,16648,16669,16679,16687,16690,16757,16778,16780,16840,16856,16889,16905,17014,17067,17082,17093,17227,17239,17254,17310,17328,17331,17332,17333,17336,17342,17345,17346,17354,17359,17441,17452,17454,17459,17474,17485,17488,17490,17491,17503,17863,17886,18207,18285,18609,19162,19198,19213,20134,20227,21161,21162,21164,21169,21174,21741,21754,21757]]],["wisely",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17222]]]]},{"k":"H2452","v":[["wisdom",[8,7,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,7,6,1,7,[[851,4,4,1,5],[854,3,2,5,7]]]],[12198,21778,21779,21781,21788,21885,21888]]]]},{"k":"H2453","v":[["*",[2,2,[[12,2,2,0,2,[[348,1,1,0,1],[364,1,1,1,2]]]],[10684,11141]]],["+",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10684]]],["Hachmoni",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11141]]]]},{"k":"H2454","v":[["*",[5,5,[[18,1,1,0,1,[[526,1,1,0,1]]],[19,4,4,1,5,[[628,1,1,1,2],[636,1,1,2,3],[641,1,1,3,4],[651,1,1,4,5]]]],[14651,16420,16639,16773,17086]]],["Wisdom",[3,3,[[19,3,3,0,3,[[628,1,1,0,1],[636,1,1,1,2],[651,1,1,2,3]]]],[16420,16639,17086]]],["wisdom",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14651]]],["wise",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16773]]]]},{"k":"H2455","v":[["*",[7,7,[[2,1,1,0,1,[[99,1,1,0,1]]],[8,2,2,1,3,[[256,2,2,1,3]]],[25,4,4,3,7,[[823,1,1,3,4],[843,1,1,4,5],[845,1,1,5,6],[849,1,1,6,7]]]],[2987,7776,7777,21002,21572,21622,21717]]],["common",[2,2,[[8,2,2,0,2,[[256,2,2,0,2]]]],[7776,7777]]],["place",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21572]]],["profane",[3,3,[[25,3,3,0,3,[[823,1,1,0,1],[845,1,1,1,2],[849,1,1,2,3]]]],[21002,21622,21717]]],["unholy",[1,1,[[2,1,1,0,1,[[99,1,1,0,1]]]],[2987]]]]},{"k":"H2456","v":[["diseased",[1,1,[[13,1,1,0,1,[[382,1,1,0,1]]]],[11521]]]]},{"k":"H2457","v":[["scum",[5,3,[[25,5,3,0,3,[[825,5,3,0,3]]]],[21062,21067,21068]]]]},{"k":"H2458","v":[["Helah",[2,2,[[12,2,2,0,2,[[341,2,2,0,2]]]],[10390,10392]]]]},{"k":"H2459","v":[["*",[92,69,[[0,2,2,0,2,[[3,1,1,0,1],[44,1,1,1,2]]],[1,6,3,2,5,[[72,1,1,2,3],[78,5,2,3,5]]],[2,48,33,5,38,[[92,12,8,5,13],[93,11,6,13,19],[95,1,1,19,20],[96,10,8,20,28],[97,6,3,28,31],[98,5,4,31,35],[99,1,1,35,36],[105,1,1,36,37],[106,1,1,37,38]]],[3,6,5,38,43,[[134,6,5,38,43]]],[4,3,2,43,45,[[184,3,2,43,45]]],[6,1,1,45,46,[[213,1,1,45,46]]],[8,3,3,46,49,[[237,2,2,46,48],[250,1,1,48,49]]],[9,1,1,49,50,[[267,1,1,49,50]]],[10,2,1,50,51,[[298,2,1,50,51]]],[13,4,3,51,54,[[373,2,1,51,52],[395,1,1,52,53],[401,1,1,53,54]]],[17,1,1,54,55,[[450,1,1,54,55]]],[18,6,6,55,61,[[494,1,1,55,56],[540,1,1,56,57],[550,1,1,57,58],[558,1,1,58,59],[596,1,1,59,60],[624,1,1,60,61]]],[22,5,4,61,65,[[679,1,1,61,62],[712,3,2,62,64],[721,1,1,64,65]]],[25,4,4,65,69,[[835,1,1,65,66],[840,1,1,66,67],[845,2,2,67,69]]]],[83,1376,2162,2349,2358,2781,2782,2787,2788,2792,2793,2794,2795,2803,2804,2814,2821,2826,2830,2861,2882,2883,2902,2903,2904,2909,2910,2912,2933,2942,2943,2963,2972,2973,2977,2992,3226,3241,4269,4274,4286,4287,4289,5772,5796,6590,7255,7256,7582,8044,9049,11331,11826,11980,13230,14113,14844,15027,15233,15968,16365,17665,18309,18310,18529,21316,21467,21606,21614]]],["+",[8,7,[[0,1,1,0,1,[[3,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]],[9,1,1,2,3,[[267,1,1,2,3]]],[18,2,2,3,5,[[550,1,1,3,4],[558,1,1,4,5]]],[22,3,2,5,7,[[712,3,2,5,7]]]],[83,7582,8044,15027,15233,18309,18310]]],["best",[5,4,[[3,5,4,0,4,[[134,5,4,0,4]]]],[4269,4286,4287,4289]]],["fat",[75,54,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,6,3,1,4,[[72,1,1,1,2],[78,5,2,2,4]]],[2,48,33,4,37,[[92,12,8,4,12],[93,11,6,12,18],[95,1,1,18,19],[96,10,8,19,27],[97,6,3,27,30],[98,5,4,30,34],[99,1,1,34,35],[105,1,1,35,36],[106,1,1,36,37]]],[3,1,1,37,38,[[134,1,1,37,38]]],[4,3,2,38,40,[[184,3,2,38,40]]],[6,1,1,40,41,[[213,1,1,40,41]]],[8,2,2,41,43,[[237,2,2,41,43]]],[10,2,1,43,44,[[298,2,1,43,44]]],[13,4,3,44,47,[[373,2,1,44,45],[395,1,1,45,46],[401,1,1,46,47]]],[18,1,1,47,48,[[494,1,1,47,48]]],[22,2,2,48,50,[[679,1,1,48,49],[721,1,1,49,50]]],[25,4,4,50,54,[[835,1,1,50,51],[840,1,1,51,52],[845,2,2,52,54]]]],[1376,2162,2349,2358,2781,2782,2787,2788,2792,2793,2794,2795,2803,2804,2814,2821,2826,2830,2861,2882,2883,2902,2903,2904,2909,2910,2912,2933,2942,2943,2963,2972,2973,2977,2992,3226,3241,4274,5772,5796,6590,7255,7256,9049,11331,11826,11980,14113,17665,18529,21316,21467,21606,21614]]],["fatness",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13230]]],["finest",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16365]]],["grease",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15968]]],["marrow",[1,1,[[18,1,1,0,1,[[540,1,1,0,1]]]],[14844]]]]},{"k":"H2460","v":[["Heleb",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8682]]]]},{"k":"H2461","v":[["*",[44,44,[[0,2,2,0,2,[[17,1,1,0,1],[48,1,1,1,2]]],[1,6,6,2,8,[[52,2,2,2,4],[62,1,1,4,5],[72,1,1,5,6],[82,1,1,6,7],[83,1,1,7,8]]],[2,1,1,8,9,[[109,1,1,8,9]]],[3,4,4,9,13,[[129,1,1,9,10],[130,1,1,10,11],[132,2,2,11,13]]],[4,8,8,13,21,[[158,1,1,13,14],[163,1,1,14,15],[166,1,1,15,16],[178,2,2,16,18],[179,1,1,18,19],[183,1,1,19,20],[184,1,1,20,21]]],[5,1,1,21,22,[[191,1,1,21,22]]],[6,2,2,22,24,[[214,1,1,22,23],[215,1,1,23,24]]],[8,2,2,24,26,[[242,1,1,24,25],[252,1,1,25,26]]],[17,2,2,26,28,[[445,1,1,26,27],[456,1,1,27,28]]],[19,2,2,28,30,[[654,1,1,28,29],[657,1,1,29,30]]],[21,3,3,30,33,[[674,1,1,30,31],[675,2,2,31,33]]],[22,4,4,33,37,[[685,1,1,33,34],[706,1,1,34,35],[733,1,1,35,36],[738,1,1,36,37]]],[23,2,2,37,39,[[755,1,1,37,38],[776,1,1,38,39]]],[24,1,1,39,40,[[800,1,1,39,40]]],[25,3,3,40,43,[[821,2,2,40,42],[826,1,1,42,43]]],[28,1,1,43,44,[[878,1,1,43,44]]]],[432,1485,1587,1596,1872,2163,2476,2522,3342,4102,4116,4207,4208,5089,5217,5311,5575,5581,5588,5748,5772,5940,6618,6648,7361,7636,13096,13379,17196,17284,17593,17599,17610,17804,18173,18741,18837,19231,19753,20427,20901,20910,21087,22361]]],["+",[4,4,[[0,1,1,0,1,[[48,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[22,1,1,2,3,[[706,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]]],[1485,7636,18173,20427]]],["milk",[39,39,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,6,6,1,7,[[52,2,2,1,3],[62,1,1,3,4],[72,1,1,4,5],[82,1,1,5,6],[83,1,1,6,7]]],[2,1,1,7,8,[[109,1,1,7,8]]],[3,4,4,8,12,[[129,1,1,8,9],[130,1,1,9,10],[132,2,2,10,12]]],[4,8,8,12,20,[[158,1,1,12,13],[163,1,1,13,14],[166,1,1,14,15],[178,2,2,15,17],[179,1,1,17,18],[183,1,1,18,19],[184,1,1,19,20]]],[5,1,1,20,21,[[191,1,1,20,21]]],[6,2,2,21,23,[[214,1,1,21,22],[215,1,1,22,23]]],[17,2,2,23,25,[[445,1,1,23,24],[456,1,1,24,25]]],[19,2,2,25,27,[[654,1,1,25,26],[657,1,1,26,27]]],[21,3,3,27,30,[[674,1,1,27,28],[675,2,2,28,30]]],[22,3,3,30,33,[[685,1,1,30,31],[733,1,1,31,32],[738,1,1,32,33]]],[23,2,2,33,35,[[755,1,1,33,34],[776,1,1,34,35]]],[25,3,3,35,38,[[821,2,2,35,37],[826,1,1,37,38]]],[28,1,1,38,39,[[878,1,1,38,39]]]],[432,1587,1596,1872,2163,2476,2522,3342,4102,4116,4207,4208,5089,5217,5311,5575,5581,5588,5748,5772,5940,6618,6648,13096,13379,17196,17284,17593,17599,17610,17804,18741,18837,19231,19753,20901,20910,21087,22361]]],["sucking",[1,1,[[8,1,1,0,1,[[242,1,1,0,1]]]],[7361]]]]},{"k":"H2462","v":[["Helbah",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6540]]]]},{"k":"H2463","v":[["Helbon",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21139]]]]},{"k":"H2464","v":[["galbanum",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2416]]]]},{"k":"H2465","v":[["*",[5,5,[[17,1,1,0,1,[[446,1,1,0,1]]],[18,4,4,1,5,[[494,1,1,1,2],[516,1,1,2,3],[526,1,1,3,4],[566,1,1,4,5]]]],[13125,14117,14517,14649,15373]]],["+",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14117]]],["age",[2,2,[[17,1,1,0,1,[[446,1,1,0,1]]],[18,1,1,1,2,[[516,1,1,1,2]]]],[13125,14517]]],["short",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15373]]],["world",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14649]]]]},{"k":"H2466","v":[["Heled",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10703]]]]},{"k":"H2467","v":[["weasel",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3026]]]]},{"k":"H2468","v":[["Huldah",[2,2,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]]],[10159,11955]]]]},{"k":"H2469","v":[["*",[2,2,[[12,1,1,0,1,[[364,1,1,0,1]]],[37,1,1,1,2,[[916,1,1,1,2]]]],[11124,22957]]],["+",[1,1,[[37,1,1,0,1,[[916,1,1,0,1]]]],[22957]]],["Heldai",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11124]]]]},{"k":"H2470","v":[["*",[76,74,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,1,1,1,2,[[81,1,1,1,2]]],[4,1,1,2,3,[[181,1,1,2,3]]],[6,3,3,3,6,[[226,3,3,3,6]]],[8,4,4,6,10,[[248,1,1,6,7],[254,1,1,7,8],[257,1,1,8,9],[265,1,1,9,10]]],[9,3,3,10,13,[[279,3,3,10,13]]],[10,7,6,13,19,[[303,2,1,13,14],[304,2,2,14,16],[305,1,1,16,17],[307,1,1,17,18],[312,1,1,18,19]]],[11,7,7,19,26,[[313,1,1,19,20],[320,2,2,20,22],[325,2,2,22,24],[332,2,2,24,26]]],[13,5,5,26,31,[[384,1,1,26,27],[388,1,1,27,28],[398,1,1,28,29],[399,1,1,29,30],[401,1,1,30,31]]],[15,1,1,31,32,[[414,1,1,31,32]]],[17,1,1,32,33,[[446,1,1,32,33]]],[18,4,4,33,37,[[512,1,1,33,34],[522,1,1,34,35],[554,1,1,35,36],[596,1,1,36,37]]],[19,3,3,37,40,[[640,1,1,37,38],[646,1,1,38,39],[650,1,1,39,40]]],[20,2,2,40,42,[[663,2,2,40,42]]],[21,2,2,42,44,[[672,1,1,42,43],[675,1,1,43,44]]],[22,8,8,44,52,[[692,1,1,44,45],[695,1,1,45,46],[711,1,1,46,47],[716,2,2,47,49],[717,1,1,49,50],[731,1,1,50,51],[735,1,1,51,52]]],[23,6,6,52,58,[[748,1,1,52,53],[754,1,1,53,54],[756,1,1,54,55],[758,1,1,55,56],[770,1,1,56,57],[774,1,1,57,58]]],[25,4,3,58,61,[[835,4,3,58,61]]],[26,2,2,61,63,[[857,1,1,61,62],[858,1,1,62,63]]],[27,1,1,63,64,[[868,1,1,63,64]]],[29,1,1,64,65,[[884,1,1,64,65]]],[32,2,2,65,67,[[893,1,1,65,66],[898,1,1,66,67]]],[33,1,1,67,68,[[902,1,1,67,68]]],[37,3,3,68,71,[[917,1,1,68,69],[918,2,2,69,71]]],[38,3,3,71,74,[[925,3,3,71,74]]]],[1452,2449,5701,6956,6960,6966,7497,7720,7795,7991,8319,8322,8323,9190,9219,9223,9272,9334,9514,9535,9734,9756,9875,9885,10099,10110,11575,11650,11899,11920,11989,12309,13127,14423,14609,15103,15956,16759,16931,17079,17410,17413,17559,17606,17938,17994,18303,18391,18399,18413,18721,18775,19058,19220,19262,19310,19591,19679,21317,21329,21334,21988,22001,22183,22456,22591,22661,22731,22964,22997,22998,23097,23098,23102]]],["+",[13,13,[[1,1,1,0,1,[[81,1,1,0,1]]],[10,1,1,1,2,[[303,1,1,1,2]]],[11,2,2,2,4,[[325,1,1,2,3],[332,1,1,3,4]]],[13,2,2,4,6,[[399,1,1,4,5],[401,1,1,5,6]]],[21,1,1,6,7,[[675,1,1,6,7]]],[22,1,1,7,8,[[716,1,1,7,8]]],[23,1,1,8,9,[[770,1,1,8,9]]],[26,1,1,9,10,[[858,1,1,9,10]]],[37,3,3,10,13,[[917,1,1,10,11],[918,2,2,11,13]]]],[2449,9190,9875,10099,11920,11989,17606,18391,19591,22001,22964,22997,22998]]],["Intreat",[1,1,[[10,1,1,0,1,[[303,1,1,0,1]]]],[9190]]],["beseech",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23098]]],["carefully",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22591]]],["diseased",[3,3,[[10,1,1,0,1,[[305,1,1,0,1]]],[25,2,2,1,3,[[835,2,2,1,3]]]],[9272,21317,21334]]],["grief",[2,2,[[22,2,2,0,2,[[695,1,1,0,1],[731,1,1,1,2]]]],[17994,18721]]],["grieved",[2,2,[[22,1,1,0,1,[[735,1,1,0,1]]],[29,1,1,1,2,[[884,1,1,1,2]]]],[18775,22456]]],["grievous",[4,4,[[23,3,3,0,3,[[754,1,1,0,1],[758,1,1,1,2],[774,1,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[19220,19310,19679,22731]]],["infirmity",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15103]]],["intreat",[2,2,[[18,1,1,0,1,[[522,1,1,0,1]]],[19,1,1,1,2,[[646,1,1,1,2]]]],[14609,16931]]],["intreated",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15956]]],["laid",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5701]]],["pain",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19262]]],["sick",[31,31,[[0,1,1,0,1,[[47,1,1,0,1]]],[8,2,2,1,3,[[254,1,1,1,2],[265,1,1,2,3]]],[9,3,3,3,6,[[279,3,3,3,6]]],[10,3,3,6,9,[[304,2,2,6,8],[307,1,1,8,9]]],[11,5,5,9,14,[[313,1,1,9,10],[320,2,2,10,12],[325,1,1,12,13],[332,1,1,13,14]]],[13,2,2,14,16,[[388,1,1,14,15],[398,1,1,15,16]]],[15,1,1,16,17,[[414,1,1,16,17]]],[18,1,1,17,18,[[512,1,1,17,18]]],[19,2,2,18,20,[[640,1,1,18,19],[650,1,1,19,20]]],[21,1,1,20,21,[[672,1,1,20,21]]],[22,3,3,21,24,[[711,1,1,21,22],[716,1,1,22,23],[717,1,1,23,24]]],[25,2,2,24,26,[[835,2,2,24,26]]],[26,1,1,26,27,[[857,1,1,26,27]]],[27,1,1,27,28,[[868,1,1,27,28]]],[32,1,1,28,29,[[898,1,1,28,29]]],[38,2,2,29,31,[[925,2,2,29,31]]]],[1452,7720,7991,8319,8322,8323,9219,9223,9334,9535,9734,9756,9885,10110,11650,11899,12309,14423,16759,17079,17559,18303,18399,18413,21317,21329,21988,22183,22661,23097,23102]]],["sore",[2,2,[[20,2,2,0,2,[[663,2,2,0,2]]]],[17410,17413]]],["sorry",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7795]]],["suit",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13127]]],["supplication",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7497]]],["travail",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19058]]],["weak",[4,4,[[6,3,3,0,3,[[226,3,3,0,3]]],[22,1,1,3,4,[[692,1,1,3,4]]]],[6956,6960,6966,17938]]],["wounded",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[9514,11575]]]]},{"k":"H2471","v":[["*",[14,11,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,8,5,2,7,[[91,1,1,2,3],[96,3,2,3,5],[97,2,1,5,6],[113,2,1,6,7]]],[3,3,3,7,10,[[122,2,2,7,9],[131,1,1,9,10]]],[9,1,1,10,11,[[272,1,1,10,11]]]],[2338,2359,2766,2891,2892,2943,3451,3838,3842,4173,8176]]],["cake",[7,6,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,3,2,1,3,[[97,2,1,1,2],[113,1,1,2,3]]],[3,2,2,3,5,[[122,1,1,3,4],[131,1,1,4,5]]],[9,1,1,5,6,[[272,1,1,5,6]]]],[2359,2943,3451,3842,4173,8176]]],["cakes",[7,6,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,5,4,1,5,[[91,1,1,1,2],[96,3,2,2,4],[113,1,1,4,5]]],[3,1,1,5,6,[[122,1,1,5,6]]]],[2338,2766,2891,2892,3451,3838]]]]},{"k":"H2472","v":[["*",[65,55,[[0,34,27,0,27,[[19,2,2,0,2],[30,3,3,2,5],[36,8,7,5,12],[39,7,4,12,16],[40,13,10,16,26],[41,1,1,26,27]]],[3,1,1,27,28,[[128,1,1,27,28]]],[4,3,3,28,31,[[165,3,3,28,31]]],[6,3,2,31,33,[[217,3,2,31,33]]],[8,2,2,33,35,[[263,2,2,33,35]]],[10,2,2,35,37,[[293,2,2,35,37]]],[17,3,3,37,40,[[442,1,1,37,38],[455,1,1,38,39],[468,1,1,39,40]]],[18,1,1,40,41,[[550,1,1,40,41]]],[20,2,2,41,43,[[663,2,2,41,43]]],[22,1,1,43,44,[[707,1,1,43,44]]],[23,6,5,44,49,[[767,4,3,44,47],[771,1,1,47,48],[773,1,1,48,49]]],[26,5,4,49,53,[[850,1,1,49,50],[851,4,3,50,53]]],[28,1,1,53,54,[[877,1,1,53,54]]],[37,1,1,54,55,[[920,1,1,54,55]]]],[498,501,883,884,897,1088,1089,1091,1092,1093,1102,1103,1177,1180,1181,1188,1202,1203,1206,1207,1210,1212,1217,1220,1221,1227,1261,4065,5273,5275,5277,6707,6709,7948,7957,8821,8831,13022,13334,13665,15040,17400,17404,18200,19511,19512,19516,19605,19643,21754,21759,21760,21761,22339,23018]]],["+",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1102]]],["dream",[44,35,[[0,29,23,0,23,[[19,2,2,0,2],[30,3,3,2,5],[36,5,4,5,9],[39,7,4,9,13],[40,12,10,13,23]]],[3,1,1,23,24,[[128,1,1,23,24]]],[6,3,2,24,26,[[217,3,2,24,26]]],[10,2,2,26,28,[[293,2,2,26,28]]],[17,2,2,28,30,[[455,1,1,28,29],[468,1,1,29,30]]],[18,1,1,30,31,[[550,1,1,30,31]]],[20,1,1,31,32,[[663,1,1,31,32]]],[22,1,1,32,33,[[707,1,1,32,33]]],[23,2,1,33,34,[[767,2,1,33,34]]],[26,2,1,34,35,[[851,2,1,34,35]]]],[498,501,883,884,897,1088,1089,1092,1093,1177,1180,1181,1188,1202,1203,1206,1207,1210,1212,1217,1220,1221,1227,4065,6707,6709,8821,8831,13334,13665,15040,17400,18200,19512,21761]]],["dreamers",[1,1,[[23,1,1,0,1,[[771,1,1,0,1]]]],[19605]]],["dreams",[19,19,[[0,4,4,0,4,[[36,2,2,0,2],[40,1,1,2,3],[41,1,1,3,4]]],[4,3,3,4,7,[[165,3,3,4,7]]],[8,2,2,7,9,[[263,2,2,7,9]]],[17,1,1,9,10,[[442,1,1,9,10]]],[20,1,1,10,11,[[663,1,1,10,11]]],[23,3,3,11,14,[[767,2,2,11,13],[773,1,1,13,14]]],[26,3,3,14,17,[[850,1,1,14,15],[851,2,2,15,17]]],[28,1,1,17,18,[[877,1,1,17,18]]],[37,1,1,18,19,[[920,1,1,18,19]]]],[1091,1103,1207,1261,5273,5275,5277,7948,7957,13022,17404,19511,19516,19643,21754,21759,21760,22339,23018]]]]},{"k":"H2473","v":[["Holon",[3,3,[[5,2,2,0,2,[[201,1,1,0,1],[207,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[6253,6396,20101]]]]},{"k":"H2474","v":[["*",[31,27,[[0,2,2,0,2,[[7,1,1,0,1],[25,1,1,1,2]]],[5,3,3,2,5,[[188,3,3,2,5]]],[6,1,1,5,6,[[215,1,1,5,6]]],[8,1,1,6,7,[[254,1,1,6,7]]],[9,1,1,7,8,[[272,1,1,7,8]]],[10,1,1,8,9,[[296,1,1,8,9]]],[11,3,3,9,12,[[321,2,2,9,11],[325,1,1,11,12]]],[12,1,1,12,13,[[352,1,1,12,13]]],[19,1,1,13,14,[[634,1,1,13,14]]],[21,1,1,14,15,[[672,1,1,14,15]]],[23,2,2,15,17,[[753,1,1,15,16],[766,1,1,16,17]]],[25,12,8,17,25,[[841,8,6,17,23],[842,4,2,23,25]]],[28,1,1,25,26,[[877,1,1,25,26]]],[35,1,1,26,27,[[907,1,1,26,27]]]],[189,700,5884,5887,5890,6651,7718,8173,8900,9786,9788,9888,10820,16581,17563,19196,19468,21493,21499,21502,21506,21510,21513,21542,21552,22320,22819]]],["window",[13,13,[[0,2,2,0,2,[[7,1,1,0,1],[25,1,1,1,2]]],[5,3,3,2,5,[[188,3,3,2,5]]],[6,1,1,5,6,[[215,1,1,5,6]]],[8,1,1,6,7,[[254,1,1,6,7]]],[9,1,1,7,8,[[272,1,1,7,8]]],[11,3,3,8,11,[[321,2,2,8,10],[325,1,1,10,11]]],[12,1,1,11,12,[[352,1,1,11,12]]],[19,1,1,12,13,[[634,1,1,12,13]]]],[189,700,5884,5887,5890,6651,7718,8173,9786,9788,9888,10820,16581]]],["windows",[18,14,[[10,1,1,0,1,[[296,1,1,0,1]]],[21,1,1,1,2,[[672,1,1,1,2]]],[23,2,2,2,4,[[753,1,1,2,3],[766,1,1,3,4]]],[25,12,8,4,12,[[841,8,6,4,10],[842,4,2,10,12]]],[28,1,1,12,13,[[877,1,1,12,13]]],[35,1,1,13,14,[[907,1,1,13,14]]]],[8900,17563,19196,19468,21493,21499,21502,21506,21510,21513,21542,21552,22320,22819]]]]},{"k":"H2475","v":[["destruction",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17292]]]]},{"k":"H2476","v":[["overcome",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2456]]]]},{"k":"H2477","v":[["Halah",[3,3,[[11,2,2,0,2,[[329,1,1,0,1],[330,1,1,1,2]]],[12,1,1,2,3,[[342,1,1,2,3]]]],[9989,10035,10454]]]]},{"k":"H2478","v":[["Halhul",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6260]]]]},{"k":"H2479","v":[["pain",[4,4,[[22,1,1,0,1,[[699,1,1,0,1]]],[25,2,2,1,3,[[831,2,2,1,3]]],[33,1,1,3,4,[[901,1,1,3,4]]]],[18038,21208,21213,22709]]]]},{"k":"H2480","v":[["catch",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9441]]]]},{"k":"H2481","v":[["*",[2,2,[[19,1,1,0,1,[[652,1,1,0,1]]],[21,1,1,1,2,[[677,1,1,1,2]]]],[17125,17628]]],["jewels",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17628]]],["ornament",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17125]]]]},{"k":"H2482","v":[["Hali",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6346]]]]},{"k":"H2483","v":[["*",[24,22,[[4,3,3,0,3,[[159,1,1,0,1],[180,2,2,1,3]]],[10,1,1,3,4,[[307,1,1,3,4]]],[11,4,4,4,8,[[313,1,1,4,5],[320,2,2,5,7],[325,1,1,7,8]]],[13,6,4,8,12,[[382,2,1,8,9],[387,4,3,9,12]]],[18,1,1,12,13,[[518,1,1,12,13]]],[20,2,2,13,15,[[663,1,1,13,14],[664,1,1,14,15]]],[22,4,4,15,19,[[679,1,1,15,16],[716,1,1,16,17],[731,2,2,17,19]]],[23,2,2,19,21,[[750,1,1,19,20],[754,1,1,20,21]]],[27,1,1,21,22,[[866,1,1,21,22]]]],[5126,5670,5672,9334,9535,9735,9736,9885,11521,11639,11642,11643,14545,17414,17419,17659,18399,18714,18715,19096,19220,22165]]],["+",[4,4,[[11,3,3,0,3,[[313,1,1,0,1],[320,2,2,1,3]]],[22,1,1,3,4,[[716,1,1,3,4]]]],[9535,9735,9736,18399]]],["disease",[4,3,[[13,3,2,0,2,[[382,2,1,0,1],[387,1,1,1,2]]],[20,1,1,2,3,[[664,1,1,2,3]]]],[11521,11642,17419]]],["grief",[3,3,[[22,1,1,0,1,[[731,1,1,0,1]]],[23,2,2,1,3,[[750,1,1,1,2],[754,1,1,2,3]]]],[18714,19096,19220]]],["griefs",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18715]]],["sick",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17659]]],["sickness",[10,9,[[4,2,2,0,2,[[159,1,1,0,1],[180,1,1,1,2]]],[10,1,1,2,3,[[307,1,1,2,3]]],[11,1,1,3,4,[[325,1,1,3,4]]],[13,3,2,4,6,[[387,3,2,4,6]]],[18,1,1,6,7,[[518,1,1,6,7]]],[20,1,1,7,8,[[663,1,1,7,8]]],[27,1,1,8,9,[[866,1,1,8,9]]]],[5126,5672,9334,9885,11639,11643,14545,17414,22165]]],["sicknesses",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5670]]]]},{"k":"H2484","v":[["jewels",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22118]]]]},{"k":"H2485","v":[["*",[6,5,[[8,1,1,0,1,[[245,1,1,0,1]]],[10,1,1,1,2,[[291,1,1,1,2]]],[22,2,2,2,4,[[683,1,1,2,3],[708,1,1,3,4]]],[23,2,1,4,5,[[792,2,1,4,5]]]],[7423,8757,17751,18246,20116]]],["pipe",[3,3,[[8,1,1,0,1,[[245,1,1,0,1]]],[22,2,2,1,3,[[683,1,1,1,2],[708,1,1,2,3]]]],[7423,17751,18246]]],["pipes",[3,2,[[10,1,1,0,1,[[291,1,1,0,1]]],[23,2,1,1,2,[[792,2,1,1,2]]]],[8757,20116]]]]},{"k":"H2486","v":[["*",[21,19,[[0,4,3,0,3,[[17,2,1,0,1],[43,2,2,1,3]]],[5,2,2,3,5,[[208,1,1,3,4],[210,1,1,4,5]]],[8,8,8,5,13,[[237,1,1,5,6],[247,1,1,6,7],[249,1,1,7,8],[255,2,2,8,10],[257,1,1,10,11],[259,1,1,11,12],[261,1,1,12,13]]],[9,3,2,13,15,[[286,2,1,13,14],[289,1,1,14,15]]],[10,1,1,15,16,[[311,1,1,15,16]]],[12,1,1,16,17,[[348,1,1,16,17]]],[17,2,2,17,19,[[462,1,1,17,18],[469,1,1,18,19]]]],[449,1331,1341,6455,6492,7270,7483,7553,7732,7739,7802,7845,7916,8574,8670,9454,10692,13486,13693]]],["far",[5,4,[[0,2,1,0,1,[[17,2,1,0,1]]],[8,2,2,1,3,[[237,1,1,1,2],[257,1,1,2,3]]],[9,1,1,3,4,[[289,1,1,3,4]]]],[449,7270,7802,8670]]],["forbid",[11,11,[[0,2,2,0,2,[[43,2,2,0,2]]],[5,2,2,2,4,[[208,1,1,2,3],[210,1,1,3,4]]],[8,5,5,4,9,[[247,1,1,4,5],[249,1,1,5,6],[255,1,1,6,7],[259,1,1,7,8],[261,1,1,8,9]]],[10,1,1,9,10,[[311,1,1,9,10]]],[17,1,1,10,11,[[462,1,1,10,11]]]],[1331,1341,6455,6492,7483,7553,7732,7845,7916,9454,13486]]],["it",[5,4,[[8,1,1,0,1,[[255,1,1,0,1]]],[9,2,1,1,2,[[286,2,1,1,2]]],[12,1,1,2,3,[[348,1,1,2,3]]],[17,1,1,3,4,[[469,1,1,3,4]]]],[7739,8574,10692,13693]]]]},{"k":"H2487","v":[["*",[12,11,[[0,2,1,0,1,[[44,2,1,0,1]]],[6,3,3,1,4,[[224,3,3,1,4]]],[10,1,1,4,5,[[295,1,1,4,5]]],[11,3,3,5,8,[[317,3,3,5,8]]],[17,2,2,8,10,[[445,1,1,8,9],[449,1,1,9,10]]],[18,1,1,10,11,[[532,1,1,10,11]]]],[1380,6921,6922,6928,8892,9652,9669,9670,13103,13195,14751]]],["change",[3,3,[[6,2,2,0,2,[[224,2,2,0,2]]],[17,1,1,2,3,[[449,1,1,2,3]]]],[6921,6922,13195]]],["changes",[7,6,[[0,2,1,0,1,[[44,2,1,0,1]]],[11,3,3,1,4,[[317,3,3,1,4]]],[17,1,1,4,5,[[445,1,1,4,5]]],[18,1,1,5,6,[[532,1,1,5,6]]]],[1380,9652,9669,9670,13103,14751]]],["courses",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8892]]],["garments",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6928]]]]},{"k":"H2488","v":[["*",[2,2,[[6,1,1,0,1,[[224,1,1,0,1]]],[9,1,1,1,2,[[268,1,1,1,2]]]],[6928,8070]]],["armour",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8070]]],["spoil",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6928]]]]},{"k":"H2489","v":[["poor",[3,3,[[18,3,3,0,3,[[487,3,3,0,3]]]],[14049,14051,14055]]]]},{"k":"H2490","v":[["*",[142,132,[[0,8,8,0,8,[[3,1,1,0,1],[5,1,1,1,2],[8,1,1,2,3],[9,1,1,3,4],[10,1,1,4,5],[40,1,1,5,6],[43,1,1,6,7],[48,1,1,7,8]]],[1,2,2,8,10,[[69,1,1,8,9],[80,1,1,9,10]]],[2,16,15,10,25,[[107,1,1,10,11],[108,3,3,11,14],[109,1,1,14,15],[110,7,6,15,21],[111,4,4,21,25]]],[3,5,5,25,30,[[132,2,2,25,27],[134,1,1,27,28],[141,1,1,28,29],[146,1,1,29,30]]],[4,10,7,30,37,[[154,4,3,30,33],[155,1,1,33,34],[168,2,1,34,35],[172,2,1,35,36],[180,1,1,36,37]]],[5,1,1,37,38,[[189,1,1,37,38]]],[6,8,8,38,46,[[220,1,1,38,39],[223,2,2,39,41],[226,2,2,41,43],[230,3,3,43,46]]],[8,4,4,46,50,[[238,2,2,46,48],[249,1,1,48,49],[257,1,1,49,50]]],[10,1,1,50,51,[[291,1,1,50,51]]],[11,2,2,51,53,[[322,1,1,51,52],[327,1,1,52,53]]],[12,3,3,53,56,[[338,1,1,53,54],[342,1,1,54,55],[364,1,1,55,56]]],[13,11,9,56,65,[[369,2,2,56,58],[386,1,1,58,59],[395,3,2,59,61],[397,3,3,61,64],[400,2,1,64,65]]],[14,2,2,65,67,[[405,2,2,65,67]]],[15,3,3,67,70,[[416,1,1,67,68],[425,2,2,68,70]]],[16,2,2,70,72,[[431,1,1,70,71],[434,1,1,71,72]]],[17,1,1,72,73,[[461,1,1,72,73]]],[18,7,7,73,80,[[532,1,1,73,74],[551,1,1,74,75],[564,1,1,75,76],[566,3,3,76,79],[586,1,1,79,80]]],[22,8,8,80,88,[[701,1,1,80,81],[721,1,1,81,82],[725,1,1,82,83],[726,1,1,83,84],[729,1,1,84,85],[731,1,1,85,86],[734,2,2,86,88]]],[23,4,4,88,92,[[760,1,1,88,89],[769,1,1,89,90],[775,1,1,90,91],[778,1,1,91,92]]],[24,1,1,92,93,[[798,1,1,92,93]]],[25,35,31,93,124,[[808,4,3,93,96],[810,2,1,96,97],[814,1,1,97,98],[821,8,8,98,106],[823,4,3,106,109],[824,2,2,109,111],[825,1,1,111,112],[826,1,1,112,113],[829,4,4,113,117],[833,1,1,117,118],[837,5,4,118,122],[840,1,1,122,123],[845,1,1,123,124]]],[26,1,1,124,125,[[860,1,1,124,125]]],[27,1,1,125,126,[[869,1,1,125,126]]],[29,1,1,126,127,[[880,1,1,126,127]]],[31,1,1,127,128,[[891,1,1,127,128]]],[35,1,1,128,129,[[908,1,1,128,129]]],[38,3,3,129,132,[[925,1,1,129,130],[926,2,2,130,132]]]],[105,138,225,242,272,1249,1336,1477,2076,2434,3272,3289,3293,3310,3321,3349,3351,3354,3357,3360,3368,3371,3378,3384,3401,4240,4241,4289,4472,4650,4962,4963,4969,4999,5351,5433,5641,5900,6829,6889,6909,6968,6971,7085,7093,7094,7278,7288,7543,7802,8757,9825,9962,10262,10429,11133,11230,11231,11609,11808,11818,11861,11864,11875,11936,12103,12105,12366,12688,12689,12806,12857,13480,14752,15055,15308,15357,15360,15365,15777,18086,18533,18605,18625,18682,18716,18755,18759,19354,19563,19696,19817,20334,20598,20599,20601,20628,20727,20904,20908,20909,20911,20916,20917,20919,20934,20984,20992,21002,21045,21046,21077,21086,21164,21166,21173,21175,21274,21379,21380,21381,21382,21455,21606,22067,22204,22386,22562,22824,23101,23113,23114]]],["+",[23,23,[[2,9,9,0,9,[[107,1,1,0,1],[108,3,3,1,4],[109,1,1,4,5],[110,2,2,5,7],[111,2,2,7,9]]],[4,1,1,9,10,[[168,1,1,9,10]]],[13,1,1,10,11,[[397,1,1,10,11]]],[15,2,2,11,13,[[425,2,2,11,13]]],[22,2,2,13,15,[[734,2,2,13,15]]],[23,2,2,15,17,[[760,1,1,15,16],[778,1,1,16,17]]],[25,5,5,17,22,[[808,1,1,17,18],[821,1,1,18,19],[825,1,1,19,20],[837,1,1,20,21],[840,1,1,21,22]]],[29,1,1,22,23,[[880,1,1,22,23]]]],[3272,3289,3293,3310,3321,3354,3357,3384,3401,5351,11864,12688,12689,18755,18759,19354,19817,20599,20916,21077,21379,21455,22386]]],["began",[33,31,[[0,6,6,0,6,[[3,1,1,0,1],[5,1,1,1,2],[8,1,1,2,3],[9,1,1,3,4],[40,1,1,4,5],[43,1,1,5,6]]],[3,1,1,6,7,[[141,1,1,6,7]]],[6,6,6,7,13,[[223,1,1,7,8],[226,2,2,8,10],[230,3,3,10,13]]],[8,1,1,13,14,[[238,1,1,13,14]]],[11,2,2,14,16,[[322,1,1,14,15],[327,1,1,15,16]]],[12,2,2,16,18,[[338,1,1,16,17],[364,1,1,17,18]]],[13,10,8,18,26,[[369,2,2,18,20],[386,1,1,20,21],[395,3,2,21,23],[397,2,2,23,25],[400,2,1,25,26]]],[14,2,2,26,28,[[405,2,2,26,28]]],[15,1,1,28,29,[[416,1,1,28,29]]],[25,1,1,29,30,[[810,1,1,29,30]]],[31,1,1,30,31,[[891,1,1,30,31]]]],[105,138,225,242,1249,1336,4472,6909,6968,6971,7085,7093,7094,7278,9825,9962,10262,11133,11230,11231,11609,11808,11818,11861,11875,11936,12103,12105,12366,20628,22562]]],["begin",[12,12,[[0,1,1,0,1,[[10,1,1,0,1]]],[4,4,4,1,5,[[154,3,3,1,4],[168,1,1,4,5]]],[5,1,1,5,6,[[189,1,1,5,6]]],[6,2,2,6,8,[[220,1,1,6,7],[223,1,1,7,8]]],[8,2,2,8,10,[[238,1,1,8,9],[257,1,1,9,10]]],[23,1,1,10,11,[[769,1,1,10,11]]],[25,1,1,11,12,[[810,1,1,11,12]]]],[272,4962,4963,4969,5351,5900,6829,6889,7288,7802,19563,20628]]],["begun",[6,6,[[3,2,2,0,2,[[132,2,2,0,2]]],[4,2,2,2,4,[[154,1,1,2,3],[155,1,1,3,4]]],[16,2,2,4,6,[[431,1,1,4,5],[434,1,1,5,6]]]],[4240,4241,4969,4999,12806,12857]]],["break",[3,3,[[3,1,1,0,1,[[146,1,1,0,1]]],[18,2,2,1,3,[[566,2,2,1,3]]]],[4650,15357,15360]]],["broken",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14752]]],["defile",[2,2,[[25,2,2,0,2,[[808,1,1,0,1],[829,1,1,1,2]]]],[20599,21164]]],["defiled",[4,4,[[12,1,1,0,1,[[342,1,1,0,1]]],[18,1,1,1,2,[[551,1,1,1,2]]],[25,2,2,2,4,[[808,1,1,2,3],[829,1,1,3,4]]]],[10429,15055,20601,21175]]],["defiledst",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1477]]],["defileth",[1,1,[[1,1,1,0,1,[[80,1,1,0,1]]]],[2434]]],["eat",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5433]]],["eaten",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5433]]],["first",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7543]]],["formed",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13480]]],["grapes",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5641]]],["herself",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3354]]],["himself",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3349]]],["inheritance",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[20992]]],["instruments",[1,1,[[18,1,1,0,1,[[564,1,1,0,1]]]],[15308]]],["piped",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8757]]],["pollute",[6,6,[[3,1,1,0,1,[[134,1,1,0,1]]],[25,4,4,1,5,[[808,1,1,1,2],[814,1,1,2,3],[821,1,1,3,4],[845,1,1,4,5]]],[26,1,1,5,6,[[860,1,1,5,6]]]],[4289,20598,20727,20934,21606,22067]]],["polluted",[11,11,[[1,1,1,0,1,[[69,1,1,0,1]]],[22,2,2,1,3,[[725,1,1,1,2],[726,1,1,2,3]]],[24,1,1,3,4,[[798,1,1,3,4]]],[25,6,6,4,10,[[821,6,6,4,10]]],[35,1,1,10,11,[[908,1,1,10,11]]]],[2076,18605,18625,20334,20904,20908,20909,20911,20917,20919,22824]]],["profane",[7,7,[[2,5,5,0,5,[[110,3,3,0,3],[111,2,2,3,5]]],[25,2,2,5,7,[[824,1,1,5,6],[829,1,1,6,7]]]],[3351,3360,3368,3371,3378,21046,21173]]],["profaned",[13,11,[[18,1,1,0,1,[[566,1,1,0,1]]],[22,1,1,1,2,[[721,1,1,1,2]]],[25,9,7,2,9,[[823,3,2,2,4],[824,1,1,4,5],[826,1,1,5,6],[837,4,3,6,9]]],[38,2,2,9,11,[[925,1,1,9,10],[926,1,1,10,11]]]],[15365,18533,20984,21002,21045,21086,21380,21381,21382,23101,23114]]],["profaning",[1,1,[[38,1,1,0,1,[[926,1,1,0,1]]]],[23113]]],["slain",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21274]]],["slayeth",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21166]]],["sorrow",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22204]]],["stain",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18086]]],["things",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19696]]],["wounded",[3,3,[[18,1,1,0,1,[[586,1,1,0,1]]],[22,2,2,1,3,[[729,1,1,1,2],[731,1,1,2,3]]]],[15777,18682,18716]]]]},{"k":"H2491","v":[["*",[94,85,[[0,1,1,0,1,[[33,1,1,0,1]]],[2,2,2,1,3,[[110,2,2,1,3]]],[3,5,5,3,8,[[135,2,2,3,5],[139,1,1,5,6],[147,2,2,6,8]]],[4,5,5,8,13,[[173,4,4,8,12],[184,1,1,12,13]]],[5,2,2,13,15,[[197,1,1,13,14],[199,1,1,14,15]]],[6,4,4,15,19,[[219,1,1,15,16],[226,1,1,16,17],[230,2,2,17,19]]],[8,3,3,19,22,[[252,1,1,19,20],[266,2,2,20,22]]],[9,5,5,22,27,[[267,3,3,22,25],[289,2,2,25,27]]],[10,1,1,27,28,[[301,1,1,27,28]]],[12,5,5,28,33,[[342,1,1,28,29],[347,2,2,29,31],[348,2,2,31,33]]],[13,1,1,33,34,[[379,1,1,33,34]]],[17,2,2,34,36,[[459,1,1,34,35],[474,1,1,35,36]]],[18,3,3,36,39,[[546,1,1,36,37],[565,1,1,37,38],[566,1,1,38,39]]],[19,1,1,39,40,[[634,1,1,39,40]]],[22,4,3,40,43,[[700,2,1,40,41],[712,1,1,41,42],[744,1,1,42,43]]],[23,9,8,43,51,[[753,1,1,43,44],[758,1,1,44,45],[769,1,1,45,46],[785,1,1,46,47],[795,5,4,47,51]]],[24,3,2,51,53,[[798,1,1,51,52],[800,2,1,52,53]]],[25,35,29,53,82,[[807,3,3,53,56],[810,1,1,56,57],[812,3,2,57,59],[822,4,3,59,62],[827,1,1,62,63],[829,2,2,63,65],[831,3,3,65,68],[832,2,2,68,70],[833,14,11,70,81],[836,2,1,81,82]]],[26,1,1,82,83,[[860,1,1,82,83]]],[33,1,1,83,84,[[902,1,1,83,84]]],[35,1,1,84,85,[[907,1,1,84,85]]]],[1007,3352,3359,4305,4307,4440,4672,4683,5448,5449,5450,5453,5800,6113,6176,6794,6973,7085,7093,7670,8010,8017,8041,8044,8047,8661,8671,9123,10450,10660,10667,10684,10693,11470,13448,13864,14961,15313,15336,16601,18054,18306,18938,19176,19311,19567,19966,20216,20259,20261,20264,20344,20429,20567,20570,20576,20629,20661,20662,20958,20969,20973,21115,21165,21180,21208,21215,21228,21247,21248,21268,21269,21270,21271,21272,21273,21276,21277,21278,21279,21280,21352,22062,22715,22817]]],["+",[2,2,[[6,1,1,0,1,[[226,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[6973,20429]]],["kill",[2,2,[[6,2,2,0,2,[[230,2,2,0,2]]]],[7085,7093]]],["man",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5450]]],["profane",[3,3,[[2,2,2,0,2,[[110,2,2,0,2]]],[25,1,1,2,3,[[822,1,1,2,3]]]],[3352,3359,20969]]],["slain",[73,65,[[0,1,1,0,1,[[33,1,1,0,1]]],[3,5,5,1,6,[[135,2,2,1,3],[139,1,1,3,4],[147,2,2,4,6]]],[4,4,4,6,10,[[173,3,3,6,9],[184,1,1,9,10]]],[5,2,2,10,12,[[197,1,1,10,11],[199,1,1,11,12]]],[8,2,2,12,14,[[266,2,2,12,14]]],[9,3,3,14,17,[[267,3,3,14,17]]],[10,1,1,17,18,[[301,1,1,17,18]]],[12,4,4,18,22,[[342,1,1,18,19],[347,2,2,19,21],[348,1,1,21,22]]],[13,1,1,22,23,[[379,1,1,22,23]]],[17,1,1,23,24,[[474,1,1,23,24]]],[18,2,2,24,26,[[565,1,1,24,25],[566,1,1,25,26]]],[22,4,3,26,29,[[700,2,1,26,27],[712,1,1,27,28],[744,1,1,28,29]]],[23,8,7,29,36,[[753,1,1,29,30],[758,1,1,30,31],[769,1,1,31,32],[785,1,1,32,33],[795,4,3,33,36]]],[24,1,1,36,37,[[800,1,1,36,37]]],[25,31,25,37,62,[[807,3,3,37,40],[810,1,1,40,41],[812,3,2,41,43],[822,3,2,43,45],[829,1,1,45,46],[831,2,2,46,48],[832,2,2,48,50],[833,14,11,50,61],[836,2,1,61,62]]],[26,1,1,62,63,[[860,1,1,62,63]]],[33,1,1,63,64,[[902,1,1,63,64]]],[35,1,1,64,65,[[907,1,1,64,65]]]],[1007,4305,4307,4440,4672,4683,5448,5449,5453,5800,6113,6176,8010,8017,8041,8044,8047,9123,10450,10660,10667,10684,11470,13864,15313,15336,18054,18306,18938,19176,19311,19567,19966,20216,20259,20261,20429,20567,20570,20576,20629,20661,20662,20958,20973,21165,21208,21215,21247,21248,21268,21269,21270,21271,21272,21273,21276,21277,21278,21279,21280,21352,22062,22715,22817]]],["slew",[3,3,[[9,2,2,0,2,[[289,2,2,0,2]]],[12,1,1,2,3,[[348,1,1,2,3]]]],[8661,8671,10693]]],["wounded",[10,10,[[6,1,1,0,1,[[219,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[17,1,1,2,3,[[459,1,1,2,3]]],[18,1,1,3,4,[[546,1,1,3,4]]],[19,1,1,4,5,[[634,1,1,4,5]]],[23,1,1,5,6,[[795,1,1,5,6]]],[24,1,1,6,7,[[798,1,1,6,7]]],[25,3,3,7,10,[[827,1,1,7,8],[829,1,1,8,9],[831,1,1,9,10]]]],[6794,7670,13448,14961,16601,20264,20344,21115,21180,21228]]]]},{"k":"H2492","v":[["*",[29,25,[[0,14,12,0,12,[[27,1,1,0,1],[36,5,4,1,5],[39,2,2,5,7],[40,5,4,7,11],[41,1,1,11,12]]],[4,3,3,12,15,[[165,3,3,12,15]]],[6,1,1,15,16,[[217,1,1,15,16]]],[17,1,1,16,17,[[474,1,1,16,17]]],[18,1,1,17,18,[[603,1,1,17,18]]],[22,3,2,18,20,[[707,2,1,18,19],[716,1,1,19,20]]],[23,3,2,20,22,[[767,2,1,20,21],[773,1,1,21,22]]],[26,2,2,22,24,[[851,2,2,22,24]]],[28,1,1,24,25,[[877,1,1,24,25]]]],[785,1088,1089,1092,1093,1177,1180,1196,1200,1206,1210,1261,5273,5275,5277,6707,13838,16116,18201,18406,19509,19643,21759,21761,22339]]],["dream",[2,2,[[18,1,1,0,1,[[603,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[16116,22339]]],["dreamed",[20,17,[[0,14,12,0,12,[[27,1,1,0,1],[36,5,4,1,5],[39,2,2,5,7],[40,5,4,7,11],[41,1,1,11,12]]],[6,1,1,12,13,[[217,1,1,12,13]]],[23,3,2,13,15,[[767,2,1,13,14],[773,1,1,14,15]]],[26,2,2,15,17,[[851,2,2,15,17]]]],[785,1088,1089,1092,1093,1177,1180,1196,1200,1206,1210,1261,6707,19509,19643,21759,21761]]],["dreamer",[3,3,[[4,3,3,0,3,[[165,3,3,0,3]]]],[5273,5275,5277]]],["dreameth",[2,1,[[22,2,1,0,1,[[707,2,1,0,1]]]],[18201]]],["liking",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13838]]],["recover",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18406]]]]},{"k":"H2493","v":[["*",[22,18,[[26,22,18,0,18,[[851,11,9,0,9],[853,8,7,9,16],[854,1,1,16,17],[856,2,1,17,18]]]],[21762,21763,21764,21765,21767,21784,21786,21794,21803,21842,21843,21844,21845,21846,21855,21856,21886,21934]]],["dream",[21,17,[[26,21,17,0,17,[[851,11,9,0,9],[853,8,7,9,16],[856,2,1,16,17]]]],[21762,21763,21764,21765,21767,21784,21786,21794,21803,21842,21843,21844,21845,21846,21855,21856,21934]]],["dreams",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21886]]]]},{"k":"H2494","v":[["Helem",[1,1,[[37,1,1,0,1,[[916,1,1,0,1]]]],[22961]]]]},{"k":"H2495","v":[["egg",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12984]]]]},{"k":"H2496","v":[["*",[5,5,[[4,2,2,0,2,[[160,1,1,0,1],[184,1,1,1,2]]],[17,1,1,2,3,[[463,1,1,2,3]]],[18,1,1,3,4,[[591,1,1,3,4]]],[22,1,1,4,5,[[728,1,1,4,5]]]],[5152,5771,13513,15830,18669]]],["+",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5771]]],["flint",[3,3,[[4,1,1,0,1,[[160,1,1,0,1]]],[18,1,1,1,2,[[591,1,1,1,2]]],[22,1,1,2,3,[[728,1,1,2,3]]]],[5152,15830,18669]]],["rock",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13513]]]]},{"k":"H2497","v":[["Helon",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3613,3665,3874,3879,4004]]]]},{"k":"H2498","v":[["*",[28,27,[[0,4,4,0,4,[[30,2,2,0,2],[34,1,1,2,3],[40,1,1,3,4]]],[2,1,1,4,5,[[116,1,1,4,5]]],[6,1,1,5,6,[[215,1,1,5,6]]],[8,1,1,6,7,[[245,1,1,6,7]]],[9,1,1,7,8,[[278,1,1,7,8]]],[17,7,7,8,15,[[439,1,1,8,9],[444,2,2,9,11],[446,1,1,11,12],[449,1,1,12,13],[455,1,1,13,14],[464,1,1,14,15]]],[18,4,3,15,18,[[567,2,2,15,17],[579,2,1,17,18]]],[21,1,1,18,19,[[672,1,1,18,19]]],[22,7,7,19,26,[[680,1,1,19,20],[686,1,1,20,21],[687,1,1,21,22],[699,1,1,22,23],[702,1,1,23,24],[718,1,1,24,25],[719,1,1,25,26]]],[34,1,1,26,27,[[903,1,1,26,27]]]],[880,914,1013,1209,3580,6649,7421,8306,12945,13062,13077,13118,13188,13350,13552,15383,15384,15547,17565,17703,17815,17839,18036,18100,18451,18452,22742]]],["+",[2,2,[[0,2,2,0,2,[[30,2,2,0,2]]]],[880,914]]],["abolish",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17703]]],["alter",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3580]]],["away",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13077]]],["change",[4,4,[[0,1,1,0,1,[[34,1,1,0,1]]],[18,1,1,1,2,[[579,1,1,1,2]]],[22,1,1,2,3,[[687,1,1,2,3]]],[34,1,1,3,4,[[903,1,1,3,4]]]],[1013,15547,17839,22742]]],["changed",[4,4,[[0,1,1,0,1,[[40,1,1,0,1]]],[9,1,1,1,2,[[278,1,1,1,2]]],[18,1,1,2,3,[[579,1,1,2,3]]],[22,1,1,3,4,[[702,1,1,3,4]]]],[1209,8306,15547,18100]]],["off",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13118]]],["on",[2,2,[[8,1,1,0,1,[[245,1,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]]],[7421,13062]]],["over",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17565]]],["pass",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17815]]],["passed",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12945]]],["renew",[2,2,[[22,2,2,0,2,[[718,1,1,0,1],[719,1,1,1,2]]]],[18451,18452]]],["renewed",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13552]]],["sprout",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13188]]],["through",[3,3,[[6,1,1,0,1,[[215,1,1,0,1]]],[17,1,1,1,2,[[455,1,1,1,2]]],[22,1,1,2,3,[[699,1,1,2,3]]]],[6649,13350,18036]]],["up",[2,2,[[18,2,2,0,2,[[567,2,2,0,2]]]],[15383,15384]]]]},{"k":"H2499","v":[["pass",[4,4,[[26,4,4,0,4,[[853,4,4,0,4]]]],[21853,21860,21862,21869]]]]},{"k":"H2500","v":[["for",[2,2,[[3,2,2,0,2,[[134,2,2,0,2]]]],[4278,4288]]]]},{"k":"H2501","v":[["+",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6354]]]]},{"k":"H2502","v":[["*",[44,44,[[2,2,2,0,2,[[103,2,2,0,2]]],[3,9,9,2,11,[[147,2,2,2,4],[148,7,7,4,11]]],[4,3,3,11,14,[[155,1,1,11,12],[177,2,2,12,14]]],[5,4,4,14,18,[[190,1,1,14,15],[192,3,3,15,18]]],[9,1,1,18,19,[[288,1,1,18,19]]],[12,2,2,19,21,[[349,2,2,19,21]]],[13,3,3,21,24,[[383,1,1,21,22],[386,1,1,22,23],[394,1,1,23,24]]],[17,1,1,24,25,[[471,1,1,24,25]]],[18,12,12,25,37,[[483,1,1,25,26],[484,1,1,26,27],[495,1,1,27,28],[511,1,1,28,29],[527,1,1,29,30],[537,1,1,30,31],[558,1,1,31,32],[568,1,1,32,33],[585,1,1,33,34],[593,1,1,34,35],[596,1,1,35,36],[617,1,1,36,37]]],[19,2,2,37,39,[[638,2,2,37,39]]],[22,3,3,39,42,[[693,1,1,39,40],[698,1,1,40,41],[736,1,1,41,42]]],[24,1,1,42,43,[[800,1,1,42,43]]],[27,1,1,43,44,[[866,1,1,43,44]]]],[3151,3154,4667,4669,4735,4738,4739,4745,4747,4748,4750,4993,5556,5557,5923,5956,5958,5962,8622,10743,10744,11541,11608,11778,13751,13989,13999,14137,14395,14683,14812,15224,15410,15748,15856,16051,16264,16696,16697,17964,18031,18797,20423,22158]]],["+",[3,3,[[2,2,2,0,2,[[103,2,2,0,2]]],[3,1,1,2,3,[[148,1,1,2,3]]]],[3151,3154,4735]]],["Arm",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4667]]],["Deliver",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16264]]],["armed",[11,11,[[3,7,7,0,7,[[147,1,1,0,1],[148,6,6,1,7]]],[4,1,1,7,8,[[155,1,1,7,8]]],[5,1,1,8,9,[[192,1,1,8,9]]],[12,2,2,9,11,[[349,2,2,9,11]]]],[4669,4738,4739,4745,4747,4748,4750,4993,5956,10743,10744]]],["army",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11608]]],["deliver",[4,4,[[18,4,4,0,4,[[483,1,1,0,1],[527,1,1,1,2],[568,1,1,2,3],[596,1,1,3,4]]]],[13989,14683,15410,16051]]],["delivered",[9,9,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,6,6,1,7,[[484,1,1,1,2],[495,1,1,2,3],[537,1,1,3,4],[558,1,1,4,5],[585,1,1,5,6],[593,1,1,6,7]]],[19,2,2,7,9,[[638,2,2,7,9]]]],[8622,13999,14137,14812,15224,15748,15856,16696,16697]]],["delivereth",[2,2,[[17,1,1,0,1,[[471,1,1,0,1]]],[18,1,1,1,2,[[511,1,1,1,2]]]],[13751,14395]]],["fat",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18797]]],["loose",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5556]]],["loosed",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5557]]],["men",[3,3,[[5,2,2,0,2,[[192,2,2,0,2]]],[13,1,1,2,3,[[394,1,1,2,3]]]],[5958,5962,11778]]],["off",[1,1,[[22,1,1,0,1,[[698,1,1,0,1]]]],[18031]]],["out",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20423]]],["prepared",[2,2,[[5,1,1,0,1,[[190,1,1,0,1]]],[13,1,1,1,2,[[383,1,1,1,2]]]],[5923,11541]]],["soldiers",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17964]]],["withdrawn",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22158]]]]},{"k":"H2503","v":[["Helez",[5,4,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,4,3,1,4,[[339,2,1,1,2],[348,1,1,2,3],[364,1,1,3,4]]]],[8679,10345,10700,11119]]]]},{"k":"H2504","v":[["*",[10,10,[[0,1,1,0,1,[[34,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[13,1,1,2,3,[[372,1,1,2,3]]],[17,3,3,3,6,[[466,1,1,3,4],[473,1,1,4,5],[475,1,1,5,6]]],[22,3,3,6,9,[[683,1,1,6,7],[689,1,1,7,8],[710,1,1,8,9]]],[23,1,1,9,10,[[774,1,1,9,10]]]],[1022,9004,11291,13608,13796,13871,17766,17889,18270,19673]]],["+",[2,2,[[0,1,1,0,1,[[34,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]]],[1022,9004]]],["loins",[7,7,[[13,1,1,0,1,[[372,1,1,0,1]]],[17,3,3,1,4,[[466,1,1,1,2],[473,1,1,2,3],[475,1,1,3,4]]],[22,2,2,4,6,[[683,1,1,4,5],[710,1,1,5,6]]],[23,1,1,6,7,[[774,1,1,6,7]]]],[11291,13608,13796,13871,17766,18270,19673]]],["reins",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17889]]]]},{"k":"H2505","v":[["*",[65,64,[[0,3,3,0,3,[[13,1,1,0,1],[48,2,2,1,3]]],[1,1,1,3,4,[[64,1,1,3,4]]],[3,3,3,4,7,[[142,3,3,4,7]]],[4,2,2,7,9,[[156,1,1,7,8],[181,1,1,8,9]]],[5,7,7,9,16,[[199,1,1,9,10],[200,1,1,10,11],[204,3,3,11,14],[205,1,1,14,15],[208,1,1,15,16]]],[6,1,1,16,17,[[215,1,1,16,17]]],[8,1,1,17,18,[[265,1,1,17,18]]],[9,2,2,18,20,[[272,1,1,18,19],[285,1,1,19,20]]],[10,2,2,20,22,[[306,1,1,20,21],[308,1,1,21,22]]],[12,5,5,22,27,[[353,1,1,22,23],[360,1,1,23,24],[361,3,3,24,27]]],[13,2,2,27,29,[[389,1,1,27,28],[394,1,1,28,29]]],[15,2,2,29,31,[[421,1,1,29,30],[425,1,1,30,31]]],[17,4,4,31,35,[[456,1,1,31,32],[462,1,1,32,33],[473,1,1,33,34],[474,1,1,34,35]]],[18,7,7,35,42,[[482,1,1,35,36],[499,1,1,36,37],[513,1,1,37,38],[532,1,1,38,39],[537,1,1,39,40],[545,1,1,40,41],[585,1,1,41,42]]],[19,7,7,42,49,[[629,1,1,42,43],[634,1,1,43,44],[643,1,1,44,45],[644,1,1,45,46],[655,1,1,46,47],[656,2,2,47,49]]],[22,6,5,49,54,[[687,1,1,49,50],[711,1,1,50,51],[712,1,1,51,52],[719,1,1,52,53],[731,2,1,53,54]]],[23,1,1,54,55,[[781,1,1,54,55]]],[24,1,1,55,56,[[800,1,1,55,56]]],[25,2,2,56,58,[[806,1,1,56,57],[848,1,1,57,58]]],[26,1,1,58,59,[[860,1,1,58,59]]],[27,1,1,59,60,[[871,1,1,59,60]]],[28,1,1,60,61,[[878,1,1,60,61]]],[29,1,1,61,62,[[885,1,1,61,62]]],[32,1,1,62,63,[[894,1,1,62,63]]],[37,1,1,63,64,[[924,1,1,63,64]]]],[351,1480,1500,1929,4542,4544,4545,5023,5705,6161,6192,6295,6298,6303,6372,6434,6653,8002,8176,8540,9304,9347,10823,10989,11018,11019,11020,11674,11785,12533,12684,13372,13498,13817,13851,13982,14222,14440,14753,14813,14912,15749,16449,16580,16859,16875,17219,17229,17248,17832,18302,18320,18458,18723,19886,20436,20547,21700,22075,22227,22345,22481,22599,23069]]],["+",[13,13,[[4,1,1,0,1,[[156,1,1,0,1]]],[5,5,5,1,6,[[199,1,1,1,2],[200,1,1,2,3],[204,2,2,3,5],[205,1,1,5,6]]],[9,1,1,6,7,[[285,1,1,6,7]]],[10,1,1,7,8,[[308,1,1,7,8]]],[18,1,1,8,9,[[513,1,1,8,9]]],[19,3,3,9,12,[[643,1,1,9,10],[655,1,1,10,11],[656,1,1,11,12]]],[25,1,1,12,13,[[848,1,1,12,13]]]],[5023,6161,6192,6295,6303,6372,8540,9347,14440,16859,17219,17229,21700]]],["dealt",[2,2,[[9,1,1,0,1,[[272,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]]],[8176,10823]]],["distribute",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12684]]],["distributed",[2,2,[[12,1,1,0,1,[[361,1,1,0,1]]],[13,1,1,1,2,[[389,1,1,1,2]]]],[11018,11674]]],["distributeth",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13372]]],["divide",[14,13,[[0,2,2,0,2,[[48,2,2,0,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[5,2,2,3,5,[[204,1,1,3,4],[208,1,1,4,5]]],[15,1,1,5,6,[[421,1,1,5,6]]],[17,1,1,6,7,[[462,1,1,6,7]]],[18,2,2,7,9,[[537,1,1,7,8],[585,1,1,8,9]]],[22,3,2,9,11,[[687,1,1,9,10],[731,2,1,10,11]]],[25,1,1,11,12,[[806,1,1,11,12]]],[26,1,1,12,13,[[860,1,1,12,13]]]],[1480,1500,1929,6298,6434,12533,13498,14813,15749,17832,18723,20547,22075]]],["divided",[16,16,[[3,3,3,0,3,[[142,3,3,0,3]]],[6,1,1,3,4,[[215,1,1,3,4]]],[10,1,1,4,5,[[306,1,1,4,5]]],[12,3,3,5,8,[[360,1,1,5,6],[361,2,2,6,8]]],[18,1,1,8,9,[[545,1,1,8,9]]],[22,2,2,9,11,[[711,1,1,9,10],[712,1,1,10,11]]],[24,1,1,11,12,[[800,1,1,11,12]]],[27,1,1,12,13,[[871,1,1,12,13]]],[29,1,1,13,14,[[885,1,1,13,14]]],[32,1,1,14,15,[[894,1,1,14,15]]],[37,1,1,15,16,[[924,1,1,15,16]]]],[4542,4544,4545,6653,9304,10989,11019,11020,14912,18302,18320,20436,22227,22481,22599,23069]]],["flatter",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13982]]],["flattereth",[2,2,[[19,2,2,0,2,[[629,1,1,0,1],[634,1,1,1,2]]]],[16449,16580]]],["given",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5705]]],["himself",[2,2,[[0,1,1,0,1,[[13,1,1,0,1]]],[23,1,1,1,2,[[781,1,1,1,2]]]],[351,19886]]],["imparted",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13851]]],["part",[3,3,[[8,1,1,0,1,[[265,1,1,0,1]]],[18,1,1,1,2,[[499,1,1,1,2]]],[19,1,1,2,3,[[644,1,1,2,3]]]],[8002,14222,16875]]],["parted",[2,2,[[17,1,1,0,1,[[473,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]]],[13817,22345]]],["partner",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17248]]],["portion",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11785]]],["smoother",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14753]]],["smootheth",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18458]]]]},{"k":"H2506","v":[["*",[67,63,[[0,3,2,0,2,[[13,2,1,0,1],[30,1,1,1,2]]],[2,1,1,2,3,[[95,1,1,2,3]]],[3,3,2,3,5,[[134,2,1,3,4],[147,1,1,4,5]]],[4,8,7,5,12,[[162,1,1,5,6],[164,1,1,6,7],[166,2,2,7,9],[170,3,2,9,11],[184,1,1,11,12]]],[5,9,9,12,21,[[200,1,1,12,13],[201,1,1,13,14],[204,4,4,14,18],[205,1,1,18,19],[208,2,2,19,21]]],[8,2,1,21,22,[[265,2,1,21,22]]],[9,1,1,22,23,[[286,1,1,22,23]]],[10,1,1,23,24,[[302,1,1,23,24]]],[11,3,3,24,27,[[321,3,3,24,27]]],[13,1,1,27,28,[[376,1,1,27,28]]],[15,1,1,28,29,[[414,1,1,28,29]]],[17,5,5,29,34,[[452,1,1,29,30],[455,1,1,30,31],[462,1,1,31,32],[466,1,1,32,33],[467,1,1,33,34]]],[18,6,6,34,40,[[493,1,1,34,35],[494,1,1,35,36],[527,1,1,36,37],[550,1,1,37,38],[596,1,1,38,39],[619,1,1,39,40]]],[19,1,1,40,41,[[634,1,1,40,41]]],[20,8,8,41,49,[[660,2,2,41,43],[661,1,1,43,44],[663,2,2,44,46],[667,2,2,46,48],[669,1,1,48,49]]],[22,3,3,49,52,[[695,1,1,49,50],[735,1,1,50,51],[739,1,1,51,52]]],[23,2,2,52,54,[[754,1,1,52,53],[795,1,1,53,54]]],[24,1,1,54,55,[[799,1,1,54,55]]],[25,3,3,55,58,[[846,1,1,55,56],[849,2,2,56,58]]],[27,1,1,58,59,[[866,1,1,58,59]]],[29,1,1,59,60,[[885,1,1,59,60]]],[32,1,1,60,61,[[894,1,1,60,61]]],[34,1,1,61,62,[[903,1,1,61,62]]],[37,1,1,62,63,[[912,1,1,62,63]]]],[360,887,2866,4277,4700,5195,5252,5317,5319,5385,5392,5767,6191,6215,6298,6299,6300,6302,6330,6451,6453,8002,8555,9167,9766,9792,9793,11411,12327,13265,13355,13494,13590,13645,14097,14117,14686,15046,15955,16291,16596,17343,17354,17381,17415,17416,17481,17484,17515,17997,18771,18850,19217,20231,20378,21637,21710,21723,22159,22468,22599,22747,22911]]],["+",[2,1,[[4,2,1,0,1,[[170,2,1,0,1]]]],[5392]]],["flattering",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16596]]],["flattery",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13265]]],["inheritance",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14097]]],["part",[18,16,[[3,2,1,0,1,[[134,2,1,0,1]]],[4,5,5,1,6,[[162,1,1,1,2],[164,1,1,2,3],[166,2,2,3,5],[170,1,1,5,6]]],[5,6,6,6,12,[[200,1,1,6,7],[201,1,1,7,8],[204,1,1,8,9],[205,1,1,9,10],[208,2,2,10,12]]],[8,2,1,12,13,[[265,2,1,12,13]]],[9,1,1,13,14,[[286,1,1,13,14]]],[17,1,1,14,15,[[467,1,1,14,15]]],[29,1,1,15,16,[[885,1,1,15,16]]]],[4277,5195,5252,5317,5319,5385,6191,6215,6300,6330,6451,6453,8002,8555,13645,22468]]],["partaker",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14686]]],["parts",[4,4,[[5,3,3,0,3,[[204,3,3,0,3]]],[25,1,1,3,4,[[849,1,1,3,4]]]],[6298,6299,6302,21710]]],["portion",[36,35,[[0,3,2,0,2,[[13,2,1,0,1],[30,1,1,1,2]]],[2,1,1,2,3,[[95,1,1,2,3]]],[3,1,1,3,4,[[147,1,1,3,4]]],[4,1,1,4,5,[[184,1,1,4,5]]],[10,1,1,5,6,[[302,1,1,5,6]]],[11,3,3,6,9,[[321,3,3,6,9]]],[13,1,1,9,10,[[376,1,1,9,10]]],[15,1,1,10,11,[[414,1,1,10,11]]],[17,3,3,11,14,[[455,1,1,11,12],[462,1,1,12,13],[466,1,1,13,14]]],[18,4,4,14,18,[[494,1,1,14,15],[550,1,1,15,16],[596,1,1,16,17],[619,1,1,17,18]]],[20,8,8,18,26,[[660,2,2,18,20],[661,1,1,20,21],[663,2,2,21,23],[667,2,2,23,25],[669,1,1,25,26]]],[22,3,3,26,29,[[695,1,1,26,27],[735,1,1,27,28],[739,1,1,28,29]]],[23,2,2,29,31,[[754,1,1,29,30],[795,1,1,30,31]]],[24,1,1,31,32,[[799,1,1,31,32]]],[32,1,1,32,33,[[894,1,1,32,33]]],[34,1,1,33,34,[[903,1,1,33,34]]],[37,1,1,34,35,[[912,1,1,34,35]]]],[360,887,2866,4700,5767,9167,9766,9792,9793,11411,12327,13355,13494,13590,14117,15046,15955,16291,17343,17354,17381,17415,17416,17481,17484,17515,17997,18771,18850,19217,20231,20378,22599,22747,22911]]],["portions",[3,3,[[25,2,2,0,2,[[846,1,1,0,1],[849,1,1,1,2]]],[27,1,1,2,3,[[866,1,1,2,3]]]],[21637,21723,22159]]]]},{"k":"H2507","v":[["Helek",[2,2,[[3,1,1,0,1,[[142,1,1,0,1]]],[5,1,1,1,2,[[203,1,1,1,2]]]],[4519,6277]]]]},{"k":"H2508","v":[["portion",[3,3,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,2,2,1,3,[[853,2,2,1,3]]]],[12126,21852,21860]]]]},{"k":"H2509","v":[["*",[4,4,[[0,1,1,0,1,[[26,1,1,0,1]]],[19,2,2,1,3,[[632,1,1,1,2],[653,1,1,2,3]]],[25,1,1,3,4,[[813,1,1,3,4]]]],[738,16520,17169,20704]]],["flattering",[2,2,[[19,1,1,0,1,[[653,1,1,0,1]]],[25,1,1,1,2,[[813,1,1,1,2]]]],[17169,20704]]],["smooth",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[738]]],["smoother",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16520]]]]},{"k":"H2510","v":[["Halak",[2,2,[[5,2,2,0,2,[[197,1,1,0,1],[198,1,1,1,2]]]],[6124,6137]]]]},{"k":"H2511","v":[["smooth",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18771]]]]},{"k":"H2512","v":[["smooth",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7658]]]]},{"k":"H2513","v":[["*",[29,25,[[0,2,2,0,2,[[26,1,1,0,1],[32,1,1,1,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[5,1,1,3,4,[[210,1,1,3,4]]],[7,2,2,4,6,[[233,1,1,4,5],[235,1,1,5,6]]],[9,5,4,6,10,[[280,3,2,6,8],[289,2,2,8,10]]],[11,6,5,10,15,[[315,2,2,10,12],[321,4,3,12,15]]],[12,2,2,15,17,[[348,2,2,15,17]]],[17,1,1,17,18,[[459,1,1,17,18]]],[18,3,3,18,21,[[489,2,2,18,20],[550,1,1,20,21]]],[19,1,1,21,22,[[633,1,1,21,22]]],[22,1,1,22,23,[[708,1,1,22,23]]],[23,2,1,23,24,[[756,2,1,23,24]]],[29,2,1,24,25,[[882,2,1,24,25]]]],[743,979,5831,6508,7152,7193,8386,8387,8664,8665,9595,9601,9777,9781,9782,10686,10687,13454,14068,14069,15038,16564,18227,19259,22417]]],["+",[2,2,[[19,1,1,0,1,[[633,1,1,0,1]]],[23,1,1,1,2,[[756,1,1,1,2]]]],[16564,19259]]],["field",[3,2,[[9,3,2,0,2,[[280,3,2,0,2]]]],[8386,8387]]],["flattering",[2,2,[[18,2,2,0,2,[[489,2,2,0,2]]]],[14068,14069]]],["ground",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8665]]],["land",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9595]]],["parcel",[5,5,[[0,1,1,0,1,[[32,1,1,0,1]]],[5,1,1,1,2,[[210,1,1,1,2]]],[7,1,1,2,3,[[235,1,1,2,3]]],[12,2,2,3,5,[[348,2,2,3,5]]]],[979,6508,7193,10686,10687]]],["part",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7152]]],["piece",[4,3,[[9,1,1,0,1,[[289,1,1,0,1]]],[11,1,1,1,2,[[315,1,1,1,2]]],[29,2,1,2,3,[[882,2,1,2,3]]]],[8664,9601,22417]]],["places",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15038]]],["plat",[2,1,[[11,2,1,0,1,[[321,2,1,0,1]]]],[9782]]],["portion",[5,5,[[4,1,1,0,1,[[185,1,1,0,1]]],[11,2,2,1,3,[[321,2,2,1,3]]],[17,1,1,3,4,[[459,1,1,3,4]]],[23,1,1,4,5,[[756,1,1,4,5]]]],[5831,9777,9781,13454,19259]]],["smooth",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[743]]],["things",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18227]]]]},{"k":"H2514","v":[["flatteries",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22068]]]]},{"k":"H2515","v":[["division",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11971]]]]},{"k":"H2516","v":[["Helekites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4519]]]]},{"k":"H2517","v":[["Helkai",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12639]]]]},{"k":"H2518","v":[["*",[34,31,[[11,11,10,0,10,[[330,3,3,0,3],[334,6,5,3,8],[335,2,2,8,10]]],[12,5,4,10,14,[[343,3,2,10,12],[346,1,1,12,13],[363,1,1,13,14]]],[13,8,7,14,21,[[400,7,6,14,20],[401,1,1,20,21]]],[14,1,1,21,22,[[409,1,1,21,22]]],[15,4,4,22,26,[[420,1,1,22,23],[423,1,1,23,24],[424,2,2,24,26]]],[22,3,3,26,29,[[700,1,1,26,27],[714,2,2,27,29]]],[23,2,2,29,31,[[745,1,1,29,30],[773,1,1,30,31]]]],[10042,10050,10061,10149,10153,10155,10157,10159,10169,10189,10467,10499,10626,11088,11942,11947,11948,11951,11953,11955,11974,12174,12497,12599,12631,12645,18072,18333,18352,18947,19638]]],["Hilkiah",[33,30,[[11,11,10,0,10,[[330,3,3,0,3],[334,6,5,3,8],[335,2,2,8,10]]],[12,5,4,10,14,[[343,3,2,10,12],[346,1,1,12,13],[363,1,1,13,14]]],[13,8,7,14,21,[[400,7,6,14,20],[401,1,1,20,21]]],[14,1,1,21,22,[[409,1,1,21,22]]],[15,4,4,22,26,[[420,1,1,22,23],[423,1,1,23,24],[424,2,2,24,26]]],[22,2,2,26,28,[[700,1,1,26,27],[714,1,1,27,28]]],[23,2,2,28,30,[[745,1,1,28,29],[773,1,1,29,30]]]],[10042,10050,10061,10149,10153,10155,10157,10159,10169,10189,10467,10499,10626,11088,11942,11947,11948,11951,11953,11955,11974,12174,12497,12599,12631,12645,18072,18352,18947,19638]]],["Hilkiah's",[1,1,[[22,1,1,0,1,[[714,1,1,0,1]]]],[18333]]]]},{"k":"H2519","v":[["*",[4,4,[[18,1,1,0,1,[[512,1,1,0,1]]],[23,1,1,1,2,[[767,1,1,1,2]]],[26,2,2,2,4,[[860,2,2,2,4]]]],[14416,19496,22057,22070]]],["flatteries",[2,2,[[26,2,2,0,2,[[860,2,2,0,2]]]],[22057,22070]]],["slippery",[2,2,[[18,1,1,0,1,[[512,1,1,0,1]]],[23,1,1,1,2,[[767,1,1,1,2]]]],[14416,19496]]]]},{"k":"H2520","v":[["Helkath",[2,2,[[5,2,2,0,2,[[205,1,1,0,1],[207,1,1,1,2]]]],[6346,6412]]]]},{"k":"H2521","v":[["Helkathhazzurim",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8065]]]]},{"k":"H2522","v":[["*",[3,3,[[1,1,1,0,1,[[66,1,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]]],[1996,13191,17940]]],["+",[2,2,[[1,1,1,0,1,[[66,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]]],[1996,17940]]],["away",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13191]]]]},{"k":"H2523","v":[["weak",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22353]]]]},{"k":"H2524","v":[["law",[4,4,[[0,2,2,0,2,[[37,2,2,0,2]]],[8,2,2,2,4,[[239,2,2,2,4]]]],[1132,1144,7316,7318]]]]},{"k":"H2525","v":[["*",[2,2,[[5,1,1,0,1,[[195,1,1,0,1]]],[17,1,1,1,2,[[472,1,1,1,2]]]],[6049,13786]]],["hot",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6049]]],["warm",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13786]]]]},{"k":"H2526","v":[["Ham",[16,15,[[0,9,8,0,8,[[4,1,1,0,1],[5,1,1,1,2],[6,1,1,2,3],[8,3,2,3,5],[9,3,3,5,8]]],[12,3,3,8,11,[[338,2,2,8,10],[341,1,1,10,11]]],[18,4,4,11,15,[[555,1,1,11,12],[582,2,2,12,14],[583,1,1,14,15]]]],[137,147,172,223,227,235,240,254,10256,10260,10425,15164,15629,15633,15673]]]]},{"k":"H2527","v":[["*",[12,11,[[0,2,2,0,2,[[7,1,1,0,1],[17,1,1,1,2]]],[8,3,3,2,5,[[246,2,2,2,4],[256,1,1,4,5]]],[9,1,1,5,6,[[270,1,1,5,6]]],[17,2,2,6,8,[[441,1,1,6,7],[459,1,1,7,8]]],[22,2,1,8,9,[[696,2,1,8,9]]],[23,2,2,9,11,[[761,1,1,9,10],[795,1,1,10,11]]]],[205,425,7454,7456,7778,8125,12995,13455,18001,19365,20251]]],["heat",[9,8,[[0,2,2,0,2,[[7,1,1,0,1],[17,1,1,1,2]]],[8,1,1,2,3,[[246,1,1,2,3]]],[9,1,1,3,4,[[270,1,1,3,4]]],[17,1,1,4,5,[[459,1,1,4,5]]],[22,2,1,5,6,[[696,2,1,5,6]]],[23,2,2,6,8,[[761,1,1,6,7],[795,1,1,7,8]]]],[205,425,7456,8125,13455,18001,19365,20251]]],["hot",[3,3,[[8,2,2,0,2,[[246,1,1,0,1],[256,1,1,1,2]]],[17,1,1,2,3,[[441,1,1,2,3]]]],[7454,7778,12995]]]]},{"k":"H2528","v":[["fury",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21820,21826]]]]},{"k":"H2529","v":[["*",[10,9,[[0,1,1,0,1,[[17,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[9,1,1,3,4,[[283,1,1,3,4]]],[17,2,2,4,6,[[455,1,1,4,5],[464,1,1,5,6]]],[19,1,1,6,7,[[657,1,1,6,7]]],[22,3,2,7,9,[[685,3,2,7,9]]]],[432,5772,6648,8478,13343,13538,17284,17797,17804]]],["Butter",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]]],[5772,17797]]],["butter",[8,7,[[0,1,1,0,1,[[17,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[9,1,1,2,3,[[283,1,1,2,3]]],[17,2,2,3,5,[[455,1,1,3,4],[464,1,1,4,5]]],[19,1,1,5,6,[[657,1,1,5,6]]],[22,2,1,6,7,[[685,2,1,6,7]]]],[432,6648,8478,13343,13538,17284,17804]]]]},{"k":"H2530","v":[["*",[30,29,[[0,3,3,0,3,[[1,1,1,0,1],[2,1,1,1,2],[26,1,1,2,3]]],[1,3,2,3,5,[[69,2,1,3,4],[83,1,1,4,5]]],[4,2,2,5,7,[[157,1,1,5,6],[159,1,1,6,7]]],[5,1,1,7,8,[[193,1,1,7,8]]],[13,1,1,8,9,[[386,1,1,8,9]]],[14,1,1,9,10,[[410,1,1,9,10]]],[17,1,1,10,11,[[455,1,1,10,11]]],[18,3,3,11,14,[[496,1,1,11,12],[516,1,1,12,13],[545,1,1,13,14]]],[19,4,4,14,18,[[628,1,1,14,15],[633,1,1,15,16],[639,1,1,16,17],[648,1,1,17,18]]],[21,1,1,18,19,[[672,1,1,18,19]]],[22,3,3,19,22,[[679,1,1,19,20],[722,1,1,20,21],[731,1,1,21,22]]],[26,6,6,22,28,[[858,1,1,22,23],[859,3,3,23,26],[860,2,2,26,28]]],[32,1,1,28,29,[[894,1,1,28,29]]]],[39,61,742,2068,2520,5074,5136,5997,11612,12228,13346,14178,14523,14916,16422,16565,16731,17004,17557,17683,18542,18713,22011,22018,22026,22034,22074,22079,22597]]],["+",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2520]]],["Lust",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16565]]],["beauty",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14523]]],["beloved",[3,3,[[26,3,3,0,3,[[858,1,1,0,1],[859,2,2,1,3]]]],[22011,22026,22034]]],["covet",[3,2,[[1,2,1,0,1,[[69,2,1,0,1]]],[32,1,1,1,2,[[894,1,1,1,2]]]],[2068,22597]]],["coveted",[1,1,[[5,1,1,0,1,[[193,1,1,0,1]]]],[5997]]],["delight",[2,2,[[19,1,1,0,1,[[628,1,1,0,1]]],[21,1,1,1,2,[[672,1,1,1,2]]]],[16422,17557]]],["desire",[3,3,[[4,2,2,0,2,[[157,1,1,0,1],[159,1,1,1,2]]],[22,1,1,2,3,[[731,1,1,2,3]]]],[5074,5136,18713]]],["desired",[5,5,[[0,1,1,0,1,[[2,1,1,0,1]]],[17,1,1,1,2,[[455,1,1,1,2]]],[18,1,1,2,3,[[496,1,1,2,3]]],[19,1,1,3,4,[[648,1,1,3,4]]],[22,1,1,4,5,[[679,1,1,4,5]]]],[61,13346,14178,17004,17683]]],["desireth",[2,2,[[18,1,1,0,1,[[545,1,1,0,1]]],[19,1,1,1,2,[[639,1,1,1,2]]]],[14916,16731]]],["goodly",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[742]]],["pleasant",[2,2,[[0,1,1,0,1,[[1,1,1,0,1]]],[26,1,1,1,2,[[859,1,1,1,2]]]],[39,22018]]],["precious",[2,2,[[13,1,1,0,1,[[386,1,1,0,1]]],[14,1,1,1,2,[[410,1,1,1,2]]]],[11612,12228]]],["things",[3,3,[[22,1,1,0,1,[[722,1,1,0,1]]],[26,2,2,1,3,[[860,2,2,1,3]]]],[18542,22074,22079]]]]},{"k":"H2531","v":[["*",[6,6,[[22,2,2,0,2,[[705,1,1,0,1],[710,1,1,1,2]]],[25,3,3,2,5,[[824,3,3,2,5]]],[29,1,1,5,6,[[883,1,1,5,6]]]],[18153,18271,21013,21019,21030,22434]]],["desirable",[3,3,[[25,3,3,0,3,[[824,3,3,0,3]]]],[21013,21019,21030]]],["pleasant",[2,2,[[22,1,1,0,1,[[710,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[18271,22434]]],["wine",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18153]]]]},{"k":"H2532","v":[["*",[16,16,[[8,1,1,0,1,[[244,1,1,0,1]]],[13,3,3,1,4,[[387,1,1,1,2],[398,1,1,2,3],[402,1,1,3,4]]],[18,1,1,4,5,[[583,1,1,4,5]]],[22,1,1,5,6,[[680,1,1,5,6]]],[23,3,3,6,9,[[747,1,1,6,7],[756,1,1,7,8],[769,1,1,8,9]]],[25,1,1,9,10,[[827,1,1,9,10]]],[26,2,2,10,12,[[860,2,2,10,12]]],[27,1,1,12,13,[[874,1,1,12,13]]],[33,1,1,13,14,[[901,1,1,13,14]]],[36,1,1,14,15,[[910,1,1,14,15]]],[37,1,1,15,16,[[917,1,1,15,16]]]],[7411,11644,11902,12003,15675,17701,19021,19259,19568,21112,22044,22073,22281,22708,22862,22976]]],["desire",[3,3,[[8,1,1,0,1,[[244,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]],[36,1,1,2,3,[[910,1,1,2,3]]]],[7411,22073,22862]]],["desired",[1,1,[[13,1,1,0,1,[[387,1,1,0,1]]]],[11644]]],["goodly",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[12003]]],["pleasant",[10,10,[[13,1,1,0,1,[[398,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]],[22,1,1,2,3,[[680,1,1,2,3]]],[23,3,3,3,6,[[747,1,1,3,4],[756,1,1,4,5],[769,1,1,5,6]]],[25,1,1,6,7,[[827,1,1,6,7]]],[27,1,1,7,8,[[874,1,1,7,8]]],[33,1,1,8,9,[[901,1,1,8,9]]],[37,1,1,9,10,[[917,1,1,9,10]]]],[11902,15675,17701,19021,19259,19568,21112,22281,22708,22976]]],["precious",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22044]]]]},{"k":"H2533","v":[["Hemdan",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1066]]]]},{"k":"H2534","v":[["*",[124,117,[[0,1,1,0,1,[[26,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,1,1,2,3,[[141,1,1,2,3]]],[4,5,5,3,8,[[161,1,1,3,4],[181,2,2,4,6],[184,2,2,6,8]]],[9,1,1,8,9,[[277,1,1,8,9]]],[11,3,3,9,12,[[317,1,1,9,10],[334,2,2,10,12]]],[13,5,5,12,17,[[378,1,1,12,13],[394,1,1,13,14],[400,2,2,14,16],[402,1,1,16,17]]],[16,6,6,17,23,[[426,1,1,17,18],[427,1,1,18,19],[428,1,1,19,20],[430,1,1,20,21],[432,2,2,21,23]]],[17,4,4,23,27,[[441,1,1,23,24],[454,1,1,24,25],[456,1,1,25,26],[471,1,1,26,27]]],[18,15,13,27,40,[[483,1,1,27,28],[514,1,1,28,29],[515,1,1,29,30],[535,2,1,30,31],[536,1,1,31,32],[553,2,1,32,33],[555,1,1,33,34],[556,1,1,34,35],[565,1,1,35,36],[566,1,1,36,37],[567,1,1,37,38],[583,1,1,38,39],[617,1,1,39,40]]],[19,9,9,40,49,[[633,1,1,40,41],[642,2,2,41,43],[643,1,1,43,44],[646,1,1,44,45],[648,1,1,45,46],[649,1,1,46,47],[654,1,1,47,48],[656,1,1,48,49]]],[22,13,12,49,61,[[705,1,1,49,50],[712,1,1,50,51],[720,1,1,51,52],[729,5,4,52,56],[737,1,1,56,57],[741,3,3,57,60],[744,1,1,60,61]]],[23,17,16,61,77,[[748,1,1,61,62],[750,1,1,62,63],[751,1,1,63,64],[754,1,1,64,65],[762,1,1,65,66],[765,2,2,66,68],[767,1,1,68,69],[769,1,1,69,70],[774,1,1,70,71],[776,2,2,71,73],[777,1,1,73,74],[780,1,1,74,75],[786,2,1,75,76],[788,1,1,76,77]]],[24,2,2,77,79,[[798,1,1,77,78],[800,1,1,78,79]]],[25,33,30,79,109,[[804,1,1,79,80],[806,4,2,80,82],[807,1,1,82,83],[808,1,1,83,84],[809,1,1,84,85],[810,1,1,85,86],[814,3,2,86,88],[815,1,1,88,89],[817,2,2,89,91],[820,1,1,91,92],[821,5,5,92,97],[822,1,1,97,98],[823,2,2,98,100],[824,1,1,100,101],[825,2,2,101,103],[826,2,2,103,105],[831,1,1,105,106],[837,2,2,106,108],[839,1,1,108,109]]],[26,3,3,109,112,[[857,1,1,109,110],[858,1,1,110,111],[860,1,1,111,112]]],[27,1,1,112,113,[[868,1,1,112,113]]],[32,1,1,113,114,[[897,1,1,113,114]]],[33,2,2,114,116,[[900,2,2,114,116]]],[37,1,1,116,117,[[918,1,1,116,117]]]],[771,3552,4482,5176,5702,5707,5782,5791,8279,9659,10158,10162,11444,11773,11954,11958,12009,12714,12725,12752,12788,12814,12817,12982,13326,13375,13754,13986,14458,14491,14783,14803,15091,15151,15191,15315,15372,15385,15674,16266,16574,16808,16825,16854,16944,16998,17039,17173,17246,18155,18305,18505,18686,18690,18693,18695,18818,18869,18871,18872,18937,19031,19100,19139,19226,19404,19445,19452,19503,19549,19690,19762,19768,19780,19849,19993,20016,20336,20431,20516,20559,20561,20575,20585,20622,20630,20721,20723,20750,20800,20804,20893,20903,20908,20916,20928,20929,20961,20996,20998,21032,21064,21069,21097,21100,21219,21365,21377,21443,21967,22004,22080,22183,22648,22686,22690,22978]]],["+",[3,3,[[3,1,1,0,1,[[141,1,1,0,1]]],[17,1,1,1,2,[[456,1,1,1,2]]],[33,1,1,2,3,[[900,1,1,2,3]]]],[4482,13375,22686]]],["Fury",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18155]]],["Wrath",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17173]]],["anger",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12714]]],["bottles",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22183]]],["displeasure",[3,3,[[4,1,1,0,1,[[161,1,1,0,1]]],[18,2,2,1,3,[[483,1,1,1,2],[515,1,1,2,3]]]],[5176,13986,14491]]],["furious",[4,4,[[19,2,2,0,2,[[649,1,1,0,1],[656,1,1,1,2]]],[25,2,2,2,4,[[806,1,1,2,3],[826,1,1,3,4]]]],[17039,17246,20561,21100]]],["furiously",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21032]]],["fury",[66,62,[[0,1,1,0,1,[[26,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[22,12,11,2,13,[[712,1,1,2,3],[720,1,1,3,4],[729,5,4,4,8],[737,1,1,8,9],[741,3,3,9,12],[744,1,1,12,13]]],[23,16,15,13,28,[[748,1,1,13,14],[750,1,1,14,15],[751,1,1,15,16],[754,1,1,16,17],[765,2,2,17,19],[767,1,1,19,20],[769,1,1,20,21],[774,1,1,21,22],[776,2,2,22,24],[777,1,1,24,25],[780,1,1,25,26],[786,2,1,26,27],[788,1,1,27,28]]],[24,2,2,28,30,[[798,1,1,28,29],[800,1,1,29,30]]],[25,28,26,30,56,[[806,3,2,30,32],[807,1,1,32,33],[808,1,1,33,34],[809,1,1,34,35],[810,1,1,35,36],[814,2,1,36,37],[815,1,1,37,38],[817,2,2,38,40],[820,1,1,40,41],[821,5,5,41,46],[822,1,1,46,47],[823,2,2,47,49],[825,2,2,49,51],[826,1,1,51,52],[831,1,1,52,53],[837,2,2,53,55],[839,1,1,55,56]]],[26,3,3,56,59,[[857,1,1,56,57],[858,1,1,57,58],[860,1,1,58,59]]],[32,1,1,59,60,[[897,1,1,59,60]]],[33,1,1,60,61,[[900,1,1,60,61]]],[37,1,1,61,62,[[918,1,1,61,62]]]],[771,3552,18305,18505,18686,18690,18693,18695,18818,18869,18871,18872,18937,19031,19100,19139,19226,19445,19452,19503,19549,19690,19762,19768,19780,19849,19993,20016,20336,20431,20559,20561,20575,20585,20622,20630,20721,20750,20800,20804,20893,20903,20908,20916,20928,20929,20961,20996,20998,21064,21069,21097,21219,21365,21377,21443,21967,22004,22080,22648,22690,22978]]],["heat",[1,1,[[25,1,1,0,1,[[804,1,1,0,1]]]],[20516]]],["indignation",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12788]]],["poison",[6,5,[[4,2,2,0,2,[[184,2,2,0,2]]],[17,1,1,2,3,[[441,1,1,2,3]]],[18,3,2,3,5,[[535,2,1,3,4],[617,1,1,4,5]]]],[5782,5791,12982,14783,16266]]],["rage",[2,2,[[11,1,1,0,1,[[317,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]]],[9659,16574]]],["wrath",[31,30,[[4,2,2,0,2,[[181,2,2,0,2]]],[9,1,1,2,3,[[277,1,1,2,3]]],[11,2,2,3,5,[[334,2,2,3,5]]],[13,4,4,5,9,[[378,1,1,5,6],[400,2,2,6,8],[402,1,1,8,9]]],[16,4,4,9,13,[[427,1,1,9,10],[428,1,1,10,11],[432,2,2,11,13]]],[17,2,2,13,15,[[454,1,1,13,14],[471,1,1,14,15]]],[18,10,9,15,24,[[514,1,1,15,16],[536,1,1,16,17],[553,2,1,17,18],[555,1,1,18,19],[556,1,1,19,20],[565,1,1,20,21],[566,1,1,21,22],[567,1,1,22,23],[583,1,1,23,24]]],[19,4,4,24,28,[[642,1,1,24,25],[643,1,1,25,26],[646,1,1,26,27],[648,1,1,27,28]]],[23,1,1,28,29,[[762,1,1,28,29]]],[25,1,1,29,30,[[814,1,1,29,30]]]],[5702,5707,8279,10158,10162,11444,11954,11958,12009,12725,12752,12814,12817,13326,13754,14458,14803,15091,15151,15191,15315,15372,15385,15674,16808,16854,16944,16998,19404,20723]]],["wrathful",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16825]]],["wroth",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11773]]]]},{"k":"H2535","v":[["*",[6,5,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,1,1,1,2,[[496,1,1,1,2]]],[21,1,1,2,3,[[676,1,1,2,3]]],[22,3,2,3,5,[[702,1,1,3,4],[708,2,1,4,5]]]],[13585,14174,17624,18118,18243]]],["+",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14174]]],["sun",[5,4,[[17,1,1,0,1,[[465,1,1,0,1]]],[21,1,1,1,2,[[676,1,1,1,2]]],[22,3,2,2,4,[[702,1,1,2,3],[708,2,1,3,4]]]],[13585,17624,18118,18243]]]]},{"k":"H2536","v":[["Hamuel",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10411]]]]},{"k":"H2537","v":[["Hamutal",[3,3,[[11,2,2,0,2,[[335,1,1,0,1],[336,1,1,1,2]]],[23,1,1,2,3,[[796,1,1,2,3]]]],[10196,10220,20277]]]]},{"k":"H2538","v":[["Hamul",[3,3,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[12,1,1,2,3,[[339,1,1,2,3]]]],[1398,4510,10311]]]]},{"k":"H2539","v":[["Hamulites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4510]]]]},{"k":"H2540","v":[["Hammon",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]]],[6349,10530]]]]},{"k":"H2541","v":[["oppressed",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17671]]]]},{"k":"H2542","v":[["joints",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17628]]]]},{"k":"H2543","v":[["*",[96,93,[[0,17,17,0,17,[[11,1,1,0,1],[21,2,2,1,3],[23,1,1,3,4],[29,1,1,4,5],[31,1,1,5,6],[33,1,1,6,7],[35,1,1,7,8],[41,2,2,8,10],[42,2,2,10,12],[43,2,2,12,14],[44,1,1,14,15],[46,1,1,15,16],[48,1,1,16,17]]],[1,12,12,17,29,[[53,1,1,17,18],[58,1,1,18,19],[62,1,1,19,20],[69,1,1,20,21],[70,1,1,21,22],[71,3,3,22,25],[72,3,3,25,28],[83,1,1,28,29]]],[3,6,6,29,35,[[132,1,1,29,30],[147,5,5,30,35]]],[4,6,6,35,41,[[157,2,2,35,37],[174,3,3,37,40],[180,1,1,40,41]]],[5,4,4,41,45,[[192,1,1,41,42],[193,1,1,42,43],[195,1,1,43,44],[201,1,1,44,45]]],[6,10,9,45,54,[[211,1,1,45,46],[216,1,1,46,47],[225,3,2,47,49],[229,5,5,49,54]]],[8,10,10,54,64,[[243,1,1,54,55],[247,1,1,55,56],[250,1,1,56,57],[251,1,1,57,58],[257,1,1,58,59],[260,4,4,59,63],[262,1,1,63,64]]],[9,4,4,64,68,[[282,2,2,64,66],[283,1,1,66,67],[285,1,1,67,68]]],[10,9,7,68,75,[[292,1,1,68,69],[303,8,6,69,75]]],[11,3,3,75,78,[[318,1,1,75,76],[319,2,2,76,78]]],[12,2,2,78,80,[[342,1,1,78,79],[349,1,1,79,80]]],[13,1,1,80,81,[[394,1,1,80,81]]],[14,1,1,81,82,[[404,1,1,81,82]]],[15,2,2,82,84,[[419,1,1,82,83],[425,1,1,83,84]]],[17,1,1,84,85,[[459,1,1,84,85]]],[19,1,1,85,86,[[653,1,1,85,86]]],[22,3,3,86,89,[[679,1,1,86,87],[699,1,1,87,88],[710,1,1,88,89]]],[23,1,1,89,90,[[766,1,1,89,90]]],[25,1,1,90,91,[[824,1,1,90,91]]],[37,2,2,91,93,[[919,1,1,91,92],[924,1,1,92,93]]]],[314,550,552,626,873,933,1008,1064,1278,1279,1308,1314,1327,1337,1381,1437,1487,1621,1745,1880,2068,2110,2117,2122,2123,2148,2149,2156,2516,4209,4692,4694,4698,4703,4709,5067,5074,5473,5474,5480,5642,5970,6000,6041,6220,6523,6658,6944,6945,7027,7034,7043,7045,7052,7385,7463,7563,7615,7806,7879,7881,7884,7903,7939,8427,8428,8472,8537,8810,9197,9207,9208,9211,9212,9213,9699,9714,9717,10449,10760,11779,12094,12489,12686,13439,17144,17657,18042,18279,19473,21027,23008,23083]]],["ass",[55,52,[[0,5,5,0,5,[[21,2,2,0,2],[41,1,1,2,3],[43,1,1,3,4],[48,1,1,4,5]]],[1,11,11,5,16,[[53,1,1,5,6],[62,1,1,6,7],[69,1,1,7,8],[70,1,1,8,9],[71,3,3,9,12],[72,3,3,12,15],[83,1,1,15,16]]],[3,1,1,16,17,[[132,1,1,16,17]]],[4,6,6,17,23,[[157,2,2,17,19],[174,3,3,19,22],[180,1,1,22,23]]],[5,2,2,23,25,[[192,1,1,23,24],[201,1,1,24,25]]],[6,6,5,25,30,[[211,1,1,25,26],[216,1,1,26,27],[225,3,2,27,29],[229,1,1,29,30]]],[8,6,6,30,36,[[247,1,1,30,31],[250,1,1,31,32],[251,1,1,32,33],[260,3,3,33,36]]],[9,2,2,36,38,[[283,1,1,36,37],[285,1,1,37,38]]],[10,9,7,38,45,[[292,1,1,38,39],[303,8,6,39,45]]],[17,1,1,45,46,[[459,1,1,45,46]]],[19,1,1,46,47,[[653,1,1,46,47]]],[22,2,2,47,49,[[679,1,1,47,48],[710,1,1,48,49]]],[23,1,1,49,50,[[766,1,1,49,50]]],[37,2,2,50,52,[[919,1,1,50,51],[924,1,1,51,52]]]],[550,552,1279,1337,1487,1621,1880,2068,2110,2117,2122,2123,2148,2149,2156,2516,4209,5067,5074,5473,5474,5480,5642,5970,6220,6523,6658,6944,6945,7052,7463,7563,7615,7881,7884,7903,8472,8537,8810,9197,9207,9208,9211,9212,9213,13439,17144,17657,18279,19473,23008,23083]]],["ass's",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9699]]],["asses",[40,40,[[0,12,12,0,12,[[11,1,1,0,1],[23,1,1,1,2],[29,1,1,2,3],[31,1,1,3,4],[33,1,1,4,5],[35,1,1,5,6],[41,1,1,6,7],[42,2,2,7,9],[43,1,1,9,10],[44,1,1,10,11],[46,1,1,11,12]]],[1,1,1,12,13,[[58,1,1,12,13]]],[3,5,5,13,18,[[147,5,5,13,18]]],[5,2,2,18,20,[[193,1,1,18,19],[195,1,1,19,20]]],[6,4,4,20,24,[[229,4,4,20,24]]],[8,4,4,24,28,[[243,1,1,24,25],[257,1,1,25,26],[260,1,1,26,27],[262,1,1,27,28]]],[9,2,2,28,30,[[282,2,2,28,30]]],[11,2,2,30,32,[[319,2,2,30,32]]],[12,2,2,32,34,[[342,1,1,32,33],[349,1,1,33,34]]],[13,1,1,34,35,[[394,1,1,34,35]]],[14,1,1,35,36,[[404,1,1,35,36]]],[15,2,2,36,38,[[419,1,1,36,37],[425,1,1,37,38]]],[22,1,1,38,39,[[699,1,1,38,39]]],[25,1,1,39,40,[[824,1,1,39,40]]]],[314,626,873,933,1008,1064,1278,1308,1314,1327,1381,1437,1745,4692,4694,4698,4703,4709,6000,6041,7027,7034,7043,7045,7385,7806,7879,7939,8427,8428,9714,9717,10449,10760,11779,12094,12489,12686,18042,21027]]]]},{"k":"H2544","v":[["*",[13,12,[[0,11,10,0,10,[[32,1,1,0,1],[33,10,9,1,10]]],[5,1,1,10,11,[[210,1,1,10,11]]],[6,1,1,11,12,[[219,1,1,11,12]]]],[979,982,984,986,988,993,998,1000,1004,1006,6508,6782]]],["Hamor",[12,12,[[0,10,10,0,10,[[32,1,1,0,1],[33,9,9,1,10]]],[5,1,1,10,11,[[210,1,1,10,11]]],[6,1,1,11,12,[[219,1,1,11,12]]]],[979,982,984,986,988,993,998,1000,1004,1006,6508,6782]]],["Hamor's",[1,1,[[0,1,1,0,1,[[33,1,1,0,1]]]],[998]]]]},{"k":"H2545","v":[["*",[11,10,[[7,10,9,0,9,[[232,1,1,0,1],[233,5,4,1,5],[234,4,4,5,9]]],[32,1,1,9,10,[[899,1,1,9,10]]]],[7141,7160,7167,7168,7172,7173,7178,7188,7189,22670]]],["+",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7168]]],["law",[10,10,[[7,9,9,0,9,[[232,1,1,0,1],[233,4,4,1,5],[234,4,4,5,9]]],[32,1,1,9,10,[[899,1,1,9,10]]]],[7141,7160,7167,7168,7172,7173,7178,7188,7189,22670]]]]},{"k":"H2546","v":[["snail",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3027]]]]},{"k":"H2547","v":[["Humtah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6256]]]]},{"k":"H2548","v":[["clean",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18241]]]]},{"k":"H2549","v":[["*",[45,44,[[0,3,3,0,3,[[0,1,1,0,1],[29,1,1,1,2],[46,1,1,2,3]]],[2,9,9,3,12,[[94,1,1,3,4],[95,1,1,4,5],[108,1,1,5,6],[111,1,1,6,7],[116,5,5,7,12]]],[3,4,4,12,16,[[121,1,1,12,13],[123,1,1,13,14],[145,1,1,14,15],[149,1,1,15,16]]],[5,1,1,16,17,[[205,1,1,16,17]]],[6,1,1,17,18,[[229,1,1,17,18]]],[9,1,1,18,19,[[269,1,1,18,19]]],[10,2,2,19,21,[[296,1,1,19,20],[304,1,1,20,21]]],[11,1,1,21,22,[[337,1,1,21,22]]],[12,10,9,22,31,[[339,1,1,22,23],[340,1,1,23,24],[345,1,1,24,25],[349,1,1,25,26],[361,1,1,26,27],[362,1,1,27,28],[363,2,2,28,30],[364,2,1,30,31]]],[13,1,1,31,32,[[378,1,1,31,32]]],[14,2,2,32,34,[[409,2,2,32,34]]],[15,1,1,34,35,[[418,1,1,34,35]]],[23,4,4,35,39,[[745,1,1,35,36],[772,1,1,36,37],[780,1,1,37,38],[796,1,1,38,39]]],[25,2,2,39,41,[[802,1,1,39,40],[821,1,1,40,41]]],[37,3,3,41,44,[[917,2,2,41,43],[918,1,1,43,44]]]],[22,847,1444,2846,2854,3306,3383,3583,3585,3589,3597,3601,3799,3886,4634,4798,6345,7032,8085,8927,9243,10230,10320,10364,10577,10730,11024,11058,11080,11081,11117,11439,12181,12182,12406,18949,19619,19851,20288,20466,20896,22965,22967,22995]]],["fifth",[42,41,[[0,3,3,0,3,[[0,1,1,0,1],[29,1,1,1,2],[46,1,1,2,3]]],[2,7,7,3,10,[[108,1,1,3,4],[111,1,1,4,5],[116,5,5,5,10]]],[3,4,4,10,14,[[121,1,1,10,11],[123,1,1,11,12],[145,1,1,12,13],[149,1,1,13,14]]],[5,1,1,14,15,[[205,1,1,14,15]]],[6,1,1,15,16,[[229,1,1,15,16]]],[9,1,1,16,17,[[269,1,1,16,17]]],[10,1,1,17,18,[[304,1,1,17,18]]],[11,1,1,18,19,[[337,1,1,18,19]]],[12,10,9,19,28,[[339,1,1,19,20],[340,1,1,20,21],[345,1,1,21,22],[349,1,1,22,23],[361,1,1,23,24],[362,1,1,24,25],[363,2,2,25,27],[364,2,1,27,28]]],[13,1,1,28,29,[[378,1,1,28,29]]],[14,2,2,29,31,[[409,2,2,29,31]]],[15,1,1,31,32,[[418,1,1,31,32]]],[23,4,4,32,36,[[745,1,1,32,33],[772,1,1,33,34],[780,1,1,34,35],[796,1,1,35,36]]],[25,2,2,36,38,[[802,1,1,36,37],[821,1,1,37,38]]],[37,3,3,38,41,[[917,2,2,38,40],[918,1,1,40,41]]]],[22,847,1444,3306,3383,3583,3585,3589,3597,3601,3799,3886,4634,4798,6345,7032,8085,9243,10230,10320,10364,10577,10730,11024,11058,11080,11081,11117,11439,12181,12182,12406,18949,19619,19851,20288,20466,20896,22965,22967,22995]]],["part",[3,3,[[2,2,2,0,2,[[94,1,1,0,1],[95,1,1,1,2]]],[10,1,1,2,3,[[296,1,1,2,3]]]],[2846,2854,8927]]]]},{"k":"H2550","v":[["*",[41,40,[[1,1,1,0,1,[[51,1,1,0,1]]],[4,1,1,1,2,[[165,1,1,1,2]]],[8,4,4,2,6,[[250,3,3,2,5],[258,1,1,5,6]]],[9,3,3,6,9,[[278,2,2,6,8],[287,1,1,8,9]]],[13,2,2,9,11,[[402,2,2,9,11]]],[17,4,4,11,15,[[441,1,1,11,12],[451,1,1,12,13],[455,1,1,13,14],[462,1,1,14,15]]],[19,1,1,15,16,[[633,1,1,15,16]]],[22,2,2,16,18,[[687,1,1,16,17],[708,1,1,17,18]]],[23,5,5,18,23,[[757,1,1,18,19],[759,1,1,19,20],[765,1,1,20,21],[794,1,1,21,22],[795,1,1,22,23]]],[24,4,4,23,27,[[798,3,3,23,26],[799,1,1,26,27]]],[25,8,8,27,35,[[806,1,1,27,28],[808,2,2,28,30],[809,1,1,30,31],[810,2,2,31,33],[817,1,1,33,34],[837,1,1,34,35]]],[28,1,1,35,36,[[877,1,1,35,36]]],[34,1,1,36,37,[[903,1,1,36,37]]],[37,2,2,37,39,[[921,2,2,37,39]]],[38,2,1,39,40,[[927,2,1,39,40]]]],[1560,5280,7563,7569,7575,7831,8290,8292,8587,12008,12010,12988,13251,13339,13503,16574,17848,18231,19280,19320,19447,20180,20215,20334,20349,20353,20397,20557,20581,20586,20622,20627,20632,20767,21380,22329,22748,23033,23034,23137]]],["+",[12,11,[[8,3,3,0,3,[[250,3,3,0,3]]],[9,1,1,3,4,[[287,1,1,3,4]]],[13,1,1,4,5,[[402,1,1,4,5]]],[17,1,1,5,6,[[455,1,1,5,6]]],[22,1,1,6,7,[[687,1,1,6,7]]],[28,1,1,7,8,[[877,1,1,7,8]]],[37,2,2,8,10,[[921,2,2,8,10]]],[38,2,1,10,11,[[927,2,1,10,11]]]],[7563,7569,7575,8587,12010,13339,17848,22329,23033,23034,23137]]],["compassion",[4,4,[[1,1,1,0,1,[[51,1,1,0,1]]],[8,1,1,1,2,[[258,1,1,1,2]]],[13,1,1,2,3,[[402,1,1,2,3]]],[25,1,1,3,4,[[817,1,1,3,4]]]],[1560,7831,12008,20767]]],["pitied",[4,4,[[24,4,4,0,4,[[798,3,3,0,3],[799,1,1,3,4]]]],[20334,20349,20353,20397]]],["pity",[11,11,[[9,1,1,0,1,[[278,1,1,0,1]]],[23,3,3,1,4,[[757,1,1,1,2],[759,1,1,2,3],[765,1,1,3,4]]],[25,7,7,4,11,[[806,1,1,4,5],[808,2,2,5,7],[809,1,1,7,8],[810,2,2,8,10],[837,1,1,10,11]]]],[8292,19280,19320,19447,20557,20581,20586,20622,20627,20632,21380]]],["spare",[9,9,[[4,1,1,0,1,[[165,1,1,0,1]]],[17,3,3,1,4,[[441,1,1,1,2],[451,1,1,2,3],[462,1,1,3,4]]],[19,1,1,4,5,[[633,1,1,4,5]]],[22,1,1,5,6,[[708,1,1,5,6]]],[23,2,2,6,8,[[794,1,1,6,7],[795,1,1,7,8]]],[34,1,1,8,9,[[903,1,1,8,9]]]],[5280,12988,13251,13503,16574,18231,20180,20215,22748]]],["spared",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8290]]]]},{"k":"H2551","v":[["*",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[22,1,1,1,2,[[741,1,1,1,2]]]],[473,18875]]],["merciful",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[473]]],["pity",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18875]]]]},{"k":"H2552","v":[["*",[16,15,[[1,1,1,0,1,[[65,1,1,0,1]]],[10,1,1,1,2,[[291,1,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]],[15,1,1,3,4,[[419,1,1,3,4]]],[17,2,2,4,6,[[466,1,1,4,5],[474,1,1,5,6]]],[18,1,1,6,7,[[516,1,1,6,7]]],[20,1,1,7,8,[[662,1,1,7,8]]],[22,5,4,8,12,[[722,3,2,8,10],[725,1,1,10,11],[735,1,1,11,12]]],[25,1,1,12,13,[[825,1,1,12,13]]],[27,1,1,13,14,[[868,1,1,13,14]]],[36,1,1,14,15,[[909,1,1,14,15]]]],[1968,8719,9637,12423,13608,13848,14515,17392,18548,18549,18613,18770,21067,22185,22846]]],["+",[2,2,[[27,1,1,0,1,[[868,1,1,0,1]]],[36,1,1,1,2,[[909,1,1,1,2]]]],[22185,22846]]],["heat",[2,2,[[10,1,1,0,1,[[291,1,1,0,1]]],[20,1,1,1,2,[[662,1,1,1,2]]]],[8719,17392]]],["hot",[4,4,[[1,1,1,0,1,[[65,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]],[18,1,1,2,3,[[516,1,1,2,3]]],[25,1,1,3,4,[[825,1,1,3,4]]]],[1968,12423,14515,21067]]],["warm",[4,4,[[11,1,1,0,1,[[316,1,1,0,1]]],[22,3,3,1,4,[[722,2,2,1,3],[725,1,1,3,4]]]],[9637,18548,18549,18613]]],["warmed",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13608]]],["warmeth",[2,2,[[17,1,1,0,1,[[474,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[13848,18549]]],["yourselves",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18770]]]]},{"k":"H2553","v":[["*",[8,8,[[2,1,1,0,1,[[115,1,1,0,1]]],[13,3,3,1,4,[[380,1,1,1,2],[400,2,2,2,4]]],[22,2,2,4,6,[[695,1,1,4,5],[705,1,1,5,6]]],[25,2,2,6,8,[[807,2,2,6,8]]]],[3554,11480,11937,11940,17991,18160,20567,20569]]],["idols",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11940]]],["images",[7,7,[[2,1,1,0,1,[[115,1,1,0,1]]],[13,2,2,1,3,[[380,1,1,1,2],[400,1,1,2,3]]],[22,2,2,3,5,[[695,1,1,3,4],[705,1,1,4,5]]],[25,2,2,5,7,[[807,2,2,5,7]]]],[3554,11480,11937,17991,18160,20567,20569]]]]},{"k":"H2554","v":[["*",[8,8,[[17,2,2,0,2,[[450,1,1,0,1],[456,1,1,1,2]]],[19,1,1,2,3,[[635,1,1,2,3]]],[23,2,2,3,5,[[757,1,1,3,4],[766,1,1,4,5]]],[24,1,1,5,6,[[798,1,1,5,6]]],[25,1,1,6,7,[[823,1,1,6,7]]],[35,1,1,7,8,[[908,1,1,7,8]]]],[13236,13382,16638,19288,19457,20338,21002,22824]]],["away",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20338]]],["bare",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19288]]],["imagine",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13382]]],["off",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13236]]],["violated",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[21002]]],["violence",[2,2,[[23,1,1,0,1,[[766,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[19457,22824]]],["wrongeth",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16638]]]]},{"k":"H2555","v":[["*",[60,59,[[0,4,4,0,4,[[5,2,2,0,2],[15,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[72,1,1,4,5]]],[4,1,1,5,6,[[171,1,1,5,6]]],[6,1,1,6,7,[[219,1,1,6,7]]],[9,2,2,7,9,[[288,2,2,7,9]]],[12,1,1,9,10,[[349,1,1,9,10]]],[17,2,2,10,12,[[451,1,1,10,11],[454,1,1,11,12]]],[18,14,14,12,26,[[484,1,1,12,13],[488,1,1,13,14],[495,1,1,14,15],[502,1,1,15,16],[504,1,1,16,17],[512,1,1,17,18],[532,1,1,18,19],[535,1,1,19,20],[549,1,1,20,21],[550,1,1,21,22],[551,1,1,22,23],[617,3,3,23,26]]],[19,7,7,26,33,[[630,1,1,26,27],[631,1,1,27,28],[637,2,2,28,30],[640,1,1,30,31],[643,1,1,31,32],[653,1,1,32,33]]],[22,3,3,33,36,[[731,1,1,33,34],[737,1,1,34,35],[738,1,1,35,36]]],[23,4,4,36,40,[[750,1,1,36,37],[764,1,1,37,38],[795,2,2,38,40]]],[25,6,6,40,46,[[808,2,2,40,42],[809,1,1,42,43],[813,1,1,43,44],[829,1,1,44,45],[846,1,1,45,46]]],[28,1,1,46,47,[[878,1,1,46,47]]],[29,2,2,47,49,[[881,1,1,47,48],[884,1,1,48,49]]],[30,1,1,49,50,[[888,1,1,49,50]]],[31,1,1,50,51,[[891,1,1,50,51]]],[32,1,1,51,52,[[898,1,1,51,52]]],[34,6,5,52,57,[[903,3,3,52,55],[904,3,2,55,57]]],[35,1,1,57,58,[[906,1,1,57,58]]],[38,1,1,58,59,[[926,1,1,58,59]]]],[148,150,386,1478,2145,5422,6778,8605,8651,10737,13255,13304,14011,14064,14166,14270,14297,14421,14741,14781,15014,15026,15068,16264,16267,16274,16486,16507,16662,16667,16749,16869,17147,18720,18806,18839,19096,19430,20247,20258,20588,20600,20621,20699,21173,21639,22362,22405,22453,22520,22566,22660,22733,22734,22740,22756,22765,22796,23119]]],["+",[7,7,[[9,2,2,0,2,[[288,2,2,0,2]]],[18,2,2,2,4,[[549,1,1,2,3],[617,1,1,3,4]]],[19,1,1,4,5,[[630,1,1,4,5]]],[25,1,1,5,6,[[813,1,1,5,6]]],[30,1,1,6,7,[[888,1,1,6,7]]]],[8605,8651,15014,16267,16486,20699,22520]]],["False",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14421]]],["Violence",[2,2,[[22,1,1,0,1,[[738,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]]],[18839,20588]]],["cruel",[1,1,[[18,1,1,0,1,[[502,1,1,0,1]]]],[14270]]],["cruelty",[4,4,[[0,1,1,0,1,[[48,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[18,2,2,2,4,[[504,1,1,2,3],[551,1,1,3,4]]]],[1478,6778,14297,15068]]],["damage",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17147]]],["dealing",[1,1,[[18,1,1,0,1,[[484,1,1,0,1]]]],[14011]]],["false",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5422]]],["injustice",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13255]]],["unrighteous",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2145]]],["violence",[33,32,[[0,2,2,0,2,[[5,2,2,0,2]]],[18,4,4,2,6,[[488,1,1,2,3],[532,1,1,3,4],[535,1,1,4,5],[550,1,1,5,6]]],[19,4,4,6,10,[[631,1,1,6,7],[637,2,2,7,9],[640,1,1,9,10]]],[22,2,2,10,12,[[731,1,1,10,11],[737,1,1,11,12]]],[23,4,4,12,16,[[750,1,1,12,13],[764,1,1,13,14],[795,2,2,14,16]]],[25,4,4,16,20,[[808,1,1,16,17],[809,1,1,17,18],[829,1,1,18,19],[846,1,1,19,20]]],[28,1,1,20,21,[[878,1,1,20,21]]],[29,2,2,21,23,[[881,1,1,21,22],[884,1,1,22,23]]],[31,1,1,23,24,[[891,1,1,23,24]]],[32,1,1,24,25,[[898,1,1,24,25]]],[34,6,5,25,30,[[903,3,3,25,28],[904,3,2,28,30]]],[35,1,1,30,31,[[906,1,1,30,31]]],[38,1,1,31,32,[[926,1,1,31,32]]]],[148,150,14064,14741,14781,15026,16507,16662,16667,16749,18720,18806,19096,19430,20247,20258,20600,20621,21173,21639,22362,22405,22453,22566,22660,22733,22734,22740,22756,22765,22796,23119]]],["violent",[4,4,[[18,3,3,0,3,[[495,1,1,0,1],[617,2,2,1,3]]],[19,1,1,3,4,[[643,1,1,3,4]]]],[14166,16264,16274,16869]]],["wrong",[3,3,[[0,1,1,0,1,[[15,1,1,0,1]]],[12,1,1,1,2,[[349,1,1,1,2]]],[17,1,1,2,3,[[454,1,1,2,3]]]],[386,10737,13304]]]]},{"k":"H2556","v":[["*",[6,6,[[1,2,2,0,2,[[61,2,2,0,2]]],[18,2,2,2,4,[[548,1,1,2,3],[550,1,1,3,4]]],[22,1,1,4,5,[[741,1,1,4,5]]],[27,1,1,5,6,[[868,1,1,5,6]]]],[1850,1855,14980,15041,18867,22182]]],["+",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1855]]],["cruel",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14980]]],["dyed",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18867]]],["grieved",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15041]]],["leavened",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[27,1,1,1,2,[[868,1,1,1,2]]]],[1850,22182]]]]},{"k":"H2557","v":[["*",[13,13,[[1,7,7,0,7,[[61,3,3,0,3],[62,2,2,3,5],[72,1,1,5,6],[83,1,1,6,7]]],[2,4,4,7,11,[[91,1,1,7,8],[95,1,1,8,9],[96,1,1,9,10],[112,1,1,10,11]]],[4,1,1,11,12,[[168,1,1,11,12]]],[29,1,1,12,13,[[882,1,1,12,13]]]],[1831,1835,1836,1870,1874,2162,2521,2773,2866,2892,3419,5345,22415]]],["bread",[5,5,[[1,4,4,0,4,[[61,1,1,0,1],[62,2,2,1,3],[72,1,1,3,4]]],[4,1,1,4,5,[[168,1,1,4,5]]]],[1831,1870,1874,2162,5345]]],["leaven",[5,5,[[1,1,1,0,1,[[83,1,1,0,1]]],[2,3,3,1,4,[[91,1,1,1,2],[95,1,1,2,3],[112,1,1,3,4]]],[29,1,1,4,5,[[882,1,1,4,5]]]],[2521,2773,2866,3419,22415]]],["leavened",[3,3,[[1,2,2,0,2,[[61,2,2,0,2]]],[2,1,1,2,3,[[96,1,1,2,3]]]],[1835,1836,2892]]]]},{"k":"H2558","v":[["vinegar",[6,5,[[3,2,1,0,1,[[122,2,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[18,1,1,2,3,[[546,1,1,2,3]]],[19,2,2,3,5,[[637,1,1,3,4],[652,1,1,4,5]]]],[3826,7163,14956,16682,17133]]]]},{"k":"H2559","v":[["*",[2,2,[[21,1,1,0,1,[[675,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[17604,19713]]],["about",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19713]]],["withdrawn",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17604]]]]},{"k":"H2560","v":[["*",[6,6,[[1,1,1,0,1,[[51,1,1,0,1]]],[17,1,1,1,2,[[451,1,1,1,2]]],[18,2,2,2,4,[[523,1,1,2,3],[552,1,1,3,4]]],[24,2,2,4,6,[[797,1,1,4,5],[798,1,1,5,6]]]],[1557,13254,14617,15079,20330,20343]]],["daubed",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1557]]],["foul",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13254]]],["red",[1,1,[[18,1,1,0,1,[[552,1,1,0,1]]]],[15079]]],["troubled",[3,3,[[18,1,1,0,1,[[523,1,1,0,1]]],[24,2,2,1,3,[[797,1,1,1,2],[798,1,1,2,3]]]],[14617,20330,20343]]]]},{"k":"H2561","v":[["pure",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5772]]]]},{"k":"H2562","v":[["wine",[6,6,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]],[26,4,4,2,6,[[854,4,4,2,6]]]],[12160,12195,21875,21876,21878,21897]]]]},{"k":"H2563","v":[["*",[31,26,[[0,1,1,0,1,[[10,1,1,0,1]]],[1,3,2,1,3,[[50,1,1,1,2],[57,2,1,2,3]]],[2,1,1,3,4,[[116,1,1,3,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[17,7,7,5,12,[[439,1,1,5,6],[445,1,1,6,7],[448,1,1,7,8],[462,1,1,8,9],[465,1,1,9,10],[468,1,1,10,11],[473,1,1,11,12]]],[22,6,6,12,18,[[683,1,1,12,13],[688,1,1,13,14],[707,1,1,14,15],[719,1,1,15,16],[723,1,1,16,17],[742,1,1,17,18]]],[23,2,2,18,20,[[762,2,2,18,20]]],[25,7,3,20,23,[[846,7,3,20,23]]],[27,1,1,23,24,[[864,1,1,23,24]]],[33,1,1,24,25,[[902,1,1,24,25]]],[34,1,1,25,26,[[905,1,1,25,26]]]],[269,1546,1724,3586,4056,12949,13095,13165,13497,13576,13656,13807,17749,17856,18209,18476,18570,18893,19388,19390,21641,21643,21644,22130,22726,22783]]],["+",[5,3,[[1,2,1,0,1,[[57,2,1,0,1]]],[17,1,1,1,2,[[468,1,1,1,2]]],[25,2,1,2,3,[[846,2,1,2,3]]]],[1724,13656,21643]]],["clay",[10,10,[[17,5,5,0,5,[[439,1,1,0,1],[445,1,1,1,2],[448,1,1,2,3],[462,1,1,3,4],[473,1,1,4,5]]],[22,3,3,5,8,[[707,1,1,5,6],[723,1,1,6,7],[742,1,1,7,8]]],[23,2,2,8,10,[[762,2,2,8,10]]]],[12949,13095,13165,13497,13807,18209,18570,18893,19388,19390]]],["heap",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22783]]],["homer",[8,5,[[2,1,1,0,1,[[116,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]],[25,5,2,2,4,[[846,5,2,2,4]]],[27,1,1,4,5,[[864,1,1,4,5]]]],[3586,17749,21641,21644,22130]]],["homers",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4056]]],["mire",[2,2,[[17,1,1,0,1,[[465,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[13576,17856]]],["morter",[4,4,[[0,1,1,0,1,[[10,1,1,0,1]]],[1,1,1,1,2,[[50,1,1,1,2]]],[22,1,1,2,3,[[719,1,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[269,1546,18476,22726]]]]},{"k":"H2564","v":[["*",[3,3,[[0,2,2,0,2,[[10,1,1,0,1],[13,1,1,1,2]]],[1,1,1,2,3,[[51,1,1,2,3]]]],[269,346,1557]]],["+",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[346]]],["slime",[2,2,[[0,1,1,0,1,[[10,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]]],[269,1557]]]]},{"k":"H2565","v":[["+",[2,1,[[6,2,1,0,1,[[225,2,1,0,1]]]],[6945]]]]},{"k":"H2566","v":[["Amram",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10293]]]]},{"k":"H2567","v":[["part",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1229]]]]},{"k":"H2568","v":[["*",[344,273,[[0,25,22,0,22,[[4,10,9,0,9],[6,1,1,9,10],[10,3,3,10,13],[11,1,1,13,14],[13,1,1,14,15],[17,3,1,15,16],[24,1,1,16,17],[42,1,1,17,18],[44,3,3,18,21],[46,1,1,21,22]]],[1,33,25,22,47,[[65,1,1,22,23],[71,1,1,23,24],[75,8,5,24,29],[76,5,4,29,33],[79,2,2,33,35],[85,8,5,35,40],[87,8,7,40,47]]],[2,8,7,47,54,[[112,3,3,47,50],[115,1,1,50,51],[116,4,3,51,54]]],[3,73,48,54,102,[[117,6,6,54,60],[118,6,6,60,66],[119,4,3,66,69],[120,1,1,69,70],[123,36,12,70,82],[124,1,1,82,83],[127,1,1,83,84],[134,1,1,84,85],[142,6,6,85,91],[144,1,1,91,92],[145,1,1,92,93],[147,8,8,93,101],[149,1,1,101,102]]],[5,10,9,102,111,[[194,1,1,102,103],[196,6,6,103,109],[199,1,1,109,110],[200,2,1,110,111]]],[6,9,9,111,120,[[213,1,1,111,112],[218,1,1,112,113],[228,4,4,113,117],[230,3,3,117,120]]],[8,11,9,120,129,[[241,4,3,120,123],[252,2,2,123,125],[256,1,1,125,126],[257,1,1,126,127],[260,3,2,127,129]]],[9,5,5,129,134,[[270,1,1,129,130],[275,1,1,130,131],[285,1,1,131,132],[287,1,1,132,133],[290,1,1,133,134]]],[10,19,13,134,147,[[294,1,1,134,135],[296,4,3,135,138],[297,9,5,138,143],[299,1,1,143,144],[302,2,2,144,146],[312,2,1,146,147]]],[11,14,14,147,161,[[318,1,1,147,148],[319,1,1,148,149],[320,1,1,149,150],[325,1,1,150,151],[326,3,3,151,154],[327,1,1,154,155],[330,1,1,155,156],[331,1,1,156,157],[332,1,1,157,158],[333,1,1,158,159],[335,1,1,159,160],[337,1,1,160,161]]],[12,11,11,161,172,[[339,2,2,161,163],[340,1,1,163,164],[341,2,2,164,166],[344,2,2,166,168],[348,1,1,168,169],[361,1,1,169,170],[362,1,1,170,171],[366,1,1,171,172]]],[13,30,21,172,193,[[369,6,3,172,175],[370,7,4,175,179],[372,2,1,179,180],[379,1,1,180,181],[381,2,2,181,183],[386,2,1,183,184],[391,2,2,184,186],[392,1,1,186,187],[393,2,2,187,189],[395,1,1,189,190],[399,1,1,190,191],[401,2,1,191,192],[402,1,1,192,193]]],[14,9,9,193,202,[[403,1,1,193,194],[404,8,8,194,202]]],[15,9,9,202,211,[[418,1,1,202,203],[419,8,8,203,211]]],[16,5,5,211,216,[[434,5,5,211,216]]],[17,2,1,216,217,[[436,2,1,216,217]]],[22,6,6,217,223,[[685,1,1,217,218],[695,1,1,218,219],[697,1,1,219,220],[708,1,1,220,221],[715,1,1,221,222],[716,1,1,222,223]]],[23,3,3,223,226,[[796,3,3,223,226]]],[25,60,45,226,271,[[802,2,2,226,228],[809,2,2,228,230],[812,1,1,230,231],[833,1,1,231,232],[834,1,1,232,233],[841,12,10,233,243],[842,5,4,243,247],[843,6,5,247,252],[846,10,7,252,259],[849,20,12,259,271]]],[26,1,1,271,272,[[861,1,1,271,272]]],[27,1,1,272,273,[[864,1,1,272,273]]]],[111,115,116,120,122,126,128,135,137,179,277,278,298,302,345,452,665,1324,1364,1369,1380,1422,1948,2114,2238,2244,2261,2262,2272,2273,2286,2287,2290,2405,2406,2576,2582,2597,2598,2604,2634,2647,2648,2651,2658,2659,2661,3408,3436,3441,3532,3575,3576,3577,3625,3629,3637,3641,3645,3650,3669,3673,3677,3681,3686,3690,3714,3739,3742,3791,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3963,4043,4273,4507,4511,4516,4526,4530,4539,4594,4620,4672,4692,4696,4700,4701,4703,4707,4709,4763,6014,6069,6080,6081,6086,6087,6090,6157,6197,6571,6729,6995,7000,7007,7010,7089,7099,7100,7335,7347,7349,7623,7658,7775,7805,7879,7903,8124,8237,8528,8588,8701,8876,8902,8906,8920,8937,8950,8957,8973,8983,9074,9183,9184,9522,9699,9720,9743,9890,9898,9913,9919,9958,10026,10096,10104,10120,10201,10241,10310,10312,10381,10417,10427,10538,10542,10696,11029,11068,11171,11240,11241,11244,11248,11252,11253,11254,11295,11470,11500,11509,11618,11705,11729,11745,11756,11763,11792,11909,11975,11998,12027,12032,12035,12047,12060,12061,12093,12094,12096,12416,12433,12440,12445,12456,12487,12488,12489,12490,12840,12846,12850,12852,12855,12872,17790,17989,18022,18234,18388,18395,20298,20306,20307,20465,20466,20605,20620,20656,21265,21301,21478,21484,21490,21498,21502,21506,21507,21510,21513,21525,21528,21535,21537,21538,21568,21569,21570,21571,21572,21631,21632,21633,21635,21636,21642,21655,21710,21711,21712,21715,21717,21718,21722,21723,21732,21734,21735,21736,22093,22130]]],["+",[42,41,[[0,4,4,0,4,[[4,1,1,0,1],[6,1,1,1,2],[24,1,1,2,3],[42,1,1,3,4]]],[1,6,6,4,10,[[65,1,1,4,5],[76,2,2,5,7],[87,3,3,7,10]]],[2,5,5,10,15,[[112,3,3,10,13],[116,2,2,13,15]]],[3,7,6,15,21,[[119,2,1,15,16],[144,1,1,16,17],[145,1,1,17,18],[147,2,2,18,20],[149,1,1,20,21]]],[6,1,1,21,22,[[218,1,1,21,22]]],[9,2,2,22,24,[[275,1,1,22,23],[285,1,1,23,24]]],[10,3,3,24,27,[[297,1,1,24,25],[302,2,2,25,27]]],[11,3,3,27,30,[[326,2,2,27,29],[332,1,1,29,30]]],[12,2,2,30,32,[[361,1,1,30,31],[362,1,1,31,32]]],[13,2,2,32,34,[[381,1,1,32,33],[391,1,1,33,34]]],[16,2,2,34,36,[[434,2,2,34,36]]],[22,1,1,36,37,[[716,1,1,36,37]]],[25,3,3,37,40,[[833,1,1,37,38],[846,2,2,38,40]]],[27,1,1,40,41,[[864,1,1,40,41]]]],[115,179,665,1324,1948,2286,2287,2647,2648,2658,3408,3436,3441,3575,3577,3739,4594,4620,4692,4701,4763,6729,8237,8528,8937,9183,9184,9913,9919,10104,11029,11068,11500,11729,12852,12855,18395,21265,21642,21655,22130]]],["Five",[2,2,[[8,1,1,0,1,[[241,1,1,0,1]]],[11,1,1,1,2,[[327,1,1,1,2]]]],[7335,9958]]],["fifth",[6,6,[[11,1,1,0,1,[[320,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]],[25,4,4,2,6,[[802,2,2,2,4],[809,1,1,4,5],[834,1,1,5,6]]]],[9743,12416,20465,20466,20605,21301]]],["five",[294,227,[[0,21,18,0,18,[[4,9,8,0,8],[10,3,3,8,11],[11,1,1,11,12],[13,1,1,12,13],[17,3,1,13,14],[44,3,3,14,17],[46,1,1,17,18]]],[1,27,19,18,37,[[71,1,1,18,19],[75,8,5,19,24],[76,3,2,24,26],[79,2,2,26,28],[85,8,5,28,33],[87,5,4,33,37]]],[2,3,2,37,39,[[115,1,1,37,38],[116,2,1,38,39]]],[3,66,42,39,81,[[117,6,6,39,45],[118,6,6,45,51],[119,2,2,51,53],[120,1,1,53,54],[123,36,12,54,66],[124,1,1,66,67],[127,1,1,67,68],[134,1,1,68,69],[142,6,6,69,75],[147,6,6,75,81]]],[5,10,9,81,90,[[194,1,1,81,82],[196,6,6,82,88],[199,1,1,88,89],[200,2,1,89,90]]],[6,8,8,90,98,[[213,1,1,90,91],[228,4,4,91,95],[230,3,3,95,98]]],[8,10,9,98,107,[[241,3,3,98,101],[252,2,2,101,103],[256,1,1,103,104],[257,1,1,104,105],[260,3,2,105,107]]],[9,3,3,107,110,[[270,1,1,107,108],[287,1,1,108,109],[290,1,1,109,110]]],[10,16,11,110,121,[[294,1,1,110,111],[296,4,3,111,114],[297,8,5,114,119],[299,1,1,119,120],[312,2,1,120,121]]],[11,9,9,121,130,[[318,1,1,121,122],[319,1,1,122,123],[325,1,1,123,124],[326,1,1,124,125],[330,1,1,125,126],[331,1,1,126,127],[333,1,1,127,128],[335,1,1,128,129],[337,1,1,129,130]]],[12,9,9,130,139,[[339,2,2,130,132],[340,1,1,132,133],[341,2,2,133,135],[344,2,2,135,137],[348,1,1,137,138],[366,1,1,138,139]]],[13,28,19,139,158,[[369,6,3,139,142],[370,7,4,142,146],[372,2,1,146,147],[379,1,1,147,148],[381,1,1,148,149],[386,2,1,149,150],[391,1,1,150,151],[392,1,1,151,152],[393,2,2,152,154],[395,1,1,154,155],[399,1,1,155,156],[401,2,1,156,157],[402,1,1,157,158]]],[14,9,9,158,167,[[403,1,1,158,159],[404,8,8,159,167]]],[15,8,8,167,175,[[419,8,8,167,175]]],[16,3,3,175,178,[[434,3,3,175,178]]],[17,2,1,178,179,[[436,2,1,178,179]]],[22,5,5,179,184,[[685,1,1,179,180],[695,1,1,180,181],[697,1,1,181,182],[708,1,1,182,183],[715,1,1,183,184]]],[23,3,3,184,187,[[796,3,3,184,187]]],[25,53,39,187,226,[[809,1,1,187,188],[812,1,1,188,189],[841,12,10,189,199],[842,5,4,199,203],[843,6,5,203,208],[846,8,6,208,214],[849,20,12,214,226]]],[26,1,1,226,227,[[861,1,1,226,227]]]],[111,116,120,122,126,128,135,137,277,278,298,302,345,452,1364,1369,1380,1422,2114,2238,2244,2261,2262,2272,2273,2290,2405,2406,2576,2582,2597,2598,2604,2634,2651,2659,2661,3532,3576,3625,3629,3637,3641,3645,3650,3669,3673,3677,3681,3686,3690,3714,3742,3791,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3963,4043,4273,4507,4511,4516,4526,4530,4539,4672,4696,4700,4703,4707,4709,6014,6069,6080,6081,6086,6087,6090,6157,6197,6571,6995,7000,7007,7010,7089,7099,7100,7335,7347,7349,7623,7658,7775,7805,7879,7903,8124,8588,8701,8876,8902,8906,8920,8937,8950,8957,8973,8983,9074,9522,9699,9720,9890,9898,10026,10096,10120,10201,10241,10310,10312,10381,10417,10427,10538,10542,10696,11171,11240,11241,11244,11248,11252,11253,11254,11295,11470,11509,11618,11705,11745,11756,11763,11792,11909,11975,11998,12027,12032,12035,12047,12060,12061,12093,12094,12096,12433,12440,12445,12456,12487,12488,12489,12490,12840,12846,12850,12872,17790,17989,18022,18234,18388,20298,20306,20307,20620,20656,21478,21484,21490,21498,21502,21506,21507,21510,21513,21525,21528,21535,21537,21538,21568,21569,21570,21571,21572,21631,21632,21633,21635,21636,21642,21710,21711,21712,21715,21717,21718,21722,21723,21732,21734,21735,21736,22093]]]]},{"k":"H2569","v":[["fifth",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1446]]]]},{"k":"H2570","v":[["fifth",[4,4,[[9,4,4,0,4,[[268,1,1,0,1],[269,1,1,1,2],[270,1,1,2,3],[286,1,1,3,4]]]],[8072,8108,8126,8564]]]]},{"k":"H2571","v":[["*",[4,4,[[1,1,1,0,1,[[62,1,1,0,1]]],[5,2,2,1,3,[[187,1,1,1,2],[190,1,1,2,3]]],[6,1,1,3,4,[[217,1,1,3,4]]]],[1885,5865,5922,6705]]],["armed",[2,2,[[5,2,2,0,2,[[187,1,1,0,1],[190,1,1,1,2]]]],[5865,5922]]],["harnessed",[1,1,[[1,1,1,0,1,[[62,1,1,0,1]]]],[1885]]],["men",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6705]]]]},{"k":"H2572","v":[["*",[163,141,[[0,9,8,0,8,[[5,1,1,0,1],[6,1,1,1,2],[7,1,1,2,3],[8,2,2,3,5],[17,4,3,5,8]]],[1,23,17,8,25,[[67,2,2,8,10],[75,6,4,10,14],[76,4,3,14,17],[79,2,1,17,18],[85,6,4,18,22],[87,3,3,22,25]]],[2,5,5,25,30,[[112,1,1,25,26],[114,2,2,26,28],[116,2,2,28,30]]],[3,33,32,30,62,[[117,6,6,30,36],[118,9,8,36,44],[120,8,8,44,52],[124,1,1,52,53],[132,3,3,53,56],[142,3,3,56,59],[147,3,3,59,62]]],[4,2,2,62,64,[[153,1,1,62,63],[174,1,1,63,64]]],[5,1,1,64,65,[[193,1,1,64,65]]],[8,2,2,65,67,[[241,1,1,65,66],[243,1,1,66,67]]],[9,2,2,67,69,[[281,1,1,67,68],[290,1,1,68,69]]],[10,10,9,69,78,[[291,1,1,69,70],[297,2,2,70,72],[299,1,1,72,73],[300,1,1,73,74],[308,5,4,74,78]]],[11,25,16,78,94,[[313,15,6,78,84],[314,3,3,84,87],[325,1,1,87,88],[327,5,5,88,93],[333,1,1,93,94]]],[12,5,4,94,98,[[342,2,1,94,95],[345,1,1,95,96],[346,1,1,96,97],[349,1,1,97,98]]],[13,7,7,98,105,[[367,1,1,98,99],[368,1,1,99,100],[369,1,1,100,101],[374,2,2,101,103],[392,1,1,103,104],[399,1,1,104,105]]],[14,12,12,105,117,[[404,9,9,105,114],[410,3,3,114,117]]],[15,9,9,117,126,[[417,1,1,117,118],[418,1,1,118,119],[419,7,7,119,126]]],[16,2,2,126,128,[[430,1,1,126,127],[432,1,1,127,128]]],[22,1,1,128,129,[[681,1,1,128,129]]],[25,14,11,129,140,[[841,6,6,129,135],[843,3,3,135,138],[846,1,1,138,139],[849,4,1,139,140]]],[36,1,1,140,141,[[910,1,1,140,141]]]],[152,183,186,233,234,448,450,452,2020,2024,2240,2241,2245,2246,2284,2285,2290,2405,2578,2579,2583,2584,2645,2646,2659,3418,3479,3480,3573,3586,3627,3629,3633,3635,3647,3650,3664,3666,3671,3673,3674,3688,3689,3690,3746,3766,3773,3778,3779,3782,3786,3790,3964,4196,4211,4229,4499,4523,4536,4694,4711,4716,4907,5499,5997,7350,7381,8390,8716,8722,8936,8940,9074,9108,9345,9354,9360,9363,9542,9543,9544,9545,9546,9547,9558,9567,9568,9878,9927,9945,9948,9950,9952,10120,10449,10615,10624,10753,11211,11228,11238,11356,11364,11735,11909,12034,12041,12042,12049,12056,12057,12058,12064,12087,12204,12207,12227,12399,12416,12430,12432,12440,12453,12454,12460,12490,12793,12816,17710,21492,21498,21502,21506,21510,21513,21554,21559,21560,21632,21719,22871]]],["+",[6,4,[[1,2,1,0,1,[[76,2,1,0,1]]],[10,3,2,1,3,[[308,3,2,1,3]]],[15,1,1,3,4,[[417,1,1,3,4]]]],[2290,9345,9354,12399]]],["Fifty",[2,2,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]]],[2240,2578]]],["fifties",[6,5,[[1,2,2,0,2,[[67,2,2,0,2]]],[4,1,1,2,3,[[153,1,1,2,3]]],[8,1,1,3,4,[[243,1,1,3,4]]],[11,2,1,4,5,[[313,2,1,4,5]]]],[2020,2024,4907,7381,9547]]],["fiftieth",[4,4,[[2,2,2,0,2,[[114,2,2,0,2]]],[11,2,2,2,4,[[327,2,2,2,4]]]],[3479,3480,9948,9952]]],["fifty",[145,128,[[0,9,8,0,8,[[5,1,1,0,1],[6,1,1,1,2],[7,1,1,2,3],[8,2,2,3,5],[17,4,3,5,8]]],[1,17,14,8,22,[[75,5,4,8,12],[76,2,2,12,14],[79,2,1,14,15],[85,5,4,15,19],[87,3,3,19,22]]],[2,3,3,22,25,[[112,1,1,22,23],[116,2,2,23,25]]],[3,33,32,25,57,[[117,6,6,25,31],[118,9,8,31,39],[120,8,8,39,47],[124,1,1,47,48],[132,3,3,48,51],[142,3,3,51,54],[147,3,3,54,57]]],[4,1,1,57,58,[[174,1,1,57,58]]],[5,1,1,58,59,[[193,1,1,58,59]]],[8,1,1,59,60,[[241,1,1,59,60]]],[9,2,2,60,62,[[281,1,1,60,61],[290,1,1,61,62]]],[10,7,7,62,69,[[291,1,1,62,63],[297,2,2,63,65],[299,1,1,65,66],[300,1,1,66,67],[308,2,2,67,69]]],[11,21,13,69,82,[[313,13,5,69,74],[314,3,3,74,77],[325,1,1,77,78],[327,3,3,78,81],[333,1,1,81,82]]],[12,5,4,82,86,[[342,2,1,82,83],[345,1,1,83,84],[346,1,1,84,85],[349,1,1,85,86]]],[13,7,7,86,93,[[367,1,1,86,87],[368,1,1,87,88],[369,1,1,88,89],[374,2,2,89,91],[392,1,1,91,92],[399,1,1,92,93]]],[14,12,12,93,105,[[404,9,9,93,102],[410,3,3,102,105]]],[15,8,8,105,113,[[418,1,1,105,106],[419,7,7,106,113]]],[16,2,2,113,115,[[430,1,1,113,114],[432,1,1,114,115]]],[22,1,1,115,116,[[681,1,1,115,116]]],[25,14,11,116,127,[[841,6,6,116,122],[843,3,3,122,125],[846,1,1,125,126],[849,4,1,126,127]]],[36,1,1,127,128,[[910,1,1,127,128]]]],[152,183,186,233,234,448,450,452,2240,2241,2245,2246,2284,2285,2405,2578,2579,2583,2584,2645,2646,2659,3418,3573,3586,3627,3629,3633,3635,3647,3650,3664,3666,3671,3673,3674,3688,3689,3690,3746,3766,3773,3778,3779,3782,3786,3790,3964,4196,4211,4229,4499,4523,4536,4694,4711,4716,5499,5997,7350,8390,8716,8722,8936,8940,9074,9108,9360,9363,9542,9543,9544,9545,9546,9558,9567,9568,9878,9927,9945,9950,10120,10449,10615,10624,10753,11211,11228,11238,11356,11364,11735,11909,12034,12041,12042,12049,12056,12057,12058,12064,12087,12204,12207,12227,12416,12430,12432,12440,12453,12454,12460,12490,12793,12816,17710,21492,21498,21502,21506,21510,21513,21554,21559,21560,21632,21719,22871]]]]},{"k":"H2573","v":[["bottle",[4,4,[[0,3,3,0,3,[[20,3,3,0,3]]],[34,1,1,3,4,[[904,1,1,3,4]]]],[527,528,532,22763]]]]},{"k":"H2574","v":[["*",[36,34,[[3,2,2,0,2,[[129,1,1,0,1],[150,1,1,1,2]]],[5,1,1,2,3,[[199,1,1,2,3]]],[6,1,1,3,4,[[213,1,1,3,4]]],[9,1,1,4,5,[[274,1,1,4,5]]],[10,1,1,5,6,[[298,1,1,5,6]]],[11,8,8,6,14,[[326,2,2,6,8],[329,2,2,8,10],[330,1,1,10,11],[331,1,1,11,12],[335,1,1,12,13],[337,1,1,13,14]]],[12,3,3,14,17,[[350,1,1,14,15],[355,2,2,15,17]]],[13,2,2,17,19,[[373,1,1,17,18],[374,1,1,18,19]]],[22,4,4,19,23,[[688,1,1,19,20],[689,1,1,20,21],[714,1,1,21,22],[715,1,1,22,23]]],[23,4,4,23,27,[[783,1,1,23,24],[793,1,1,24,25],[796,2,2,25,27]]],[25,6,4,27,31,[[848,4,3,27,30],[849,2,1,30,31]]],[29,2,2,31,33,[[884,2,2,31,33]]],[37,1,1,33,34,[[919,1,1,33,34]]]],[4096,4824,6159,6571,8218,9050,9921,9924,10007,10013,10058,10074,10198,10243,10765,10893,10899,11332,11350,17859,17895,18349,18365,19928,20150,20285,20303,21695,21696,21699,21703,22452,22464,23001]]],["+",[2,2,[[11,1,1,0,1,[[329,1,1,0,1]]],[22,1,1,1,2,[[689,1,1,1,2]]]],[10007,17895]]],["Hamath",[32,30,[[3,2,2,0,2,[[129,1,1,0,1],[150,1,1,1,2]]],[5,1,1,2,3,[[199,1,1,2,3]]],[6,1,1,3,4,[[213,1,1,3,4]]],[9,1,1,4,5,[[274,1,1,4,5]]],[10,1,1,5,6,[[298,1,1,5,6]]],[11,7,7,6,13,[[326,2,2,6,8],[329,1,1,8,9],[330,1,1,9,10],[331,1,1,10,11],[335,1,1,11,12],[337,1,1,12,13]]],[12,2,2,13,15,[[355,2,2,13,15]]],[13,2,2,15,17,[[373,1,1,15,16],[374,1,1,16,17]]],[22,3,3,17,20,[[688,1,1,17,18],[714,1,1,18,19],[715,1,1,19,20]]],[23,4,4,20,24,[[783,1,1,20,21],[793,1,1,21,22],[796,2,2,22,24]]],[25,6,4,24,28,[[848,4,3,24,27],[849,2,1,27,28]]],[29,1,1,28,29,[[884,1,1,28,29]]],[37,1,1,29,30,[[919,1,1,29,30]]]],[4096,4824,6159,6571,8218,9050,9921,9924,10013,10058,10074,10198,10243,10893,10899,11332,11350,17859,18349,18365,19928,20150,20285,20303,21695,21696,21699,21703,22452,23001]]],["Hemath",[2,2,[[12,1,1,0,1,[[350,1,1,0,1]]],[29,1,1,1,2,[[884,1,1,1,2]]]],[10765,22464]]]]},{"k":"H2575","v":[["*",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[12,1,1,1,2,[[339,1,1,1,2]]]],[6356,10361]]],["+",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10361]]],["Hammath",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6356]]]]},{"k":"H2576","v":[["Hammothdor",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6413]]]]},{"k":"H2577","v":[["Hamathite",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[252,10268]]]]},{"k":"H2578","v":[["Hamathzobah",[1,1,[[13,1,1,0,1,[[374,1,1,0,1]]]],[11349]]]]},{"k":"H2579","v":[]},{"k":"H2580","v":[["*",[69,67,[[0,14,14,0,14,[[5,1,1,0,1],[17,1,1,1,2],[18,1,1,2,3],[29,1,1,3,4],[31,1,1,4,5],[32,3,3,5,8],[33,1,1,8,9],[38,2,2,9,11],[46,2,2,11,13],[49,1,1,13,14]]],[1,9,8,14,22,[[52,1,1,14,15],[60,1,1,15,16],[61,1,1,16,17],[82,5,4,17,21],[83,1,1,21,22]]],[3,3,3,22,25,[[127,2,2,22,24],[148,1,1,24,25]]],[4,1,1,25,26,[[176,1,1,25,26]]],[6,1,1,26,27,[[216,1,1,26,27]]],[7,3,3,27,30,[[233,3,3,27,30]]],[8,6,6,30,36,[[236,1,1,30,31],[251,1,1,31,32],[255,2,2,32,34],[260,1,1,34,35],[262,1,1,35,36]]],[9,3,3,36,39,[[280,1,1,36,37],[281,1,1,37,38],[282,1,1,38,39]]],[10,1,1,39,40,[[301,1,1,39,40]]],[16,6,6,40,46,[[427,2,2,40,42],[430,2,2,42,44],[432,1,1,44,45],[433,1,1,45,46]]],[18,2,2,46,48,[[522,1,1,46,47],[561,1,1,47,48]]],[19,13,13,48,61,[[628,1,1,48,49],[630,3,3,49,52],[631,1,1,52,53],[632,1,1,53,54],[638,1,1,54,55],[640,1,1,55,56],[644,1,1,56,57],[649,2,2,57,59],[655,1,1,59,60],[658,1,1,60,61]]],[20,2,2,61,63,[[667,1,1,61,62],[668,1,1,62,63]]],[23,1,1,63,64,[[775,1,1,63,64]]],[33,1,1,64,65,[[902,1,1,64,65]]],[37,3,2,65,67,[[914,2,1,65,66],[922,1,1,66,67]]]],[145,427,476,857,933,968,970,975,991,1153,1170,1445,1449,1510,1600,1809,1852,2485,2486,2489,2490,2505,4035,4039,4723,5526,6671,7151,7159,7162,7230,7617,7733,7759,7869,7935,8378,8414,8430,9127,12739,12741,12781,12787,12810,12822,14599,15270,16409,16459,16477,16489,16499,16536,16704,16762,16881,17016,17026,17219,17314,17486,17505,19693,22716,22929,23055]]],["+",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22716]]],["Favour",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17314]]],["Grace",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22929]]],["favour",[25,25,[[0,3,3,0,3,[[17,1,1,0,1],[29,1,1,1,2],[38,1,1,2,3]]],[1,3,3,3,6,[[52,1,1,3,4],[60,1,1,4,5],[61,1,1,5,6]]],[3,2,2,6,8,[[127,2,2,6,8]]],[4,1,1,8,9,[[176,1,1,8,9]]],[7,1,1,9,10,[[233,1,1,9,10]]],[8,3,3,10,13,[[251,1,1,10,11],[255,1,1,11,12],[260,1,1,12,13]]],[9,1,1,13,14,[[281,1,1,13,14]]],[10,1,1,14,15,[[301,1,1,14,15]]],[16,5,5,15,20,[[427,1,1,15,16],[430,2,2,16,18],[432,1,1,18,19],[433,1,1,19,20]]],[19,4,4,20,24,[[630,1,1,20,21],[640,1,1,21,22],[649,1,1,22,23],[655,1,1,23,24]]],[20,1,1,24,25,[[667,1,1,24,25]]]],[427,857,1170,1600,1809,1852,4035,4039,5526,7162,7617,7759,7869,8414,9127,12739,12781,12787,12810,12822,16459,16762,17016,17219,17486]]],["grace",[37,36,[[0,11,11,0,11,[[5,1,1,0,1],[18,1,1,1,2],[31,1,1,2,3],[32,3,3,3,6],[33,1,1,6,7],[38,1,1,7,8],[46,2,2,8,10],[49,1,1,10,11]]],[1,6,5,11,16,[[82,5,4,11,15],[83,1,1,15,16]]],[3,1,1,16,17,[[148,1,1,16,17]]],[6,1,1,17,18,[[216,1,1,17,18]]],[7,2,2,18,20,[[233,2,2,18,20]]],[8,3,3,20,23,[[236,1,1,20,21],[255,1,1,21,22],[262,1,1,22,23]]],[9,2,2,23,25,[[280,1,1,23,24],[282,1,1,24,25]]],[16,1,1,25,26,[[427,1,1,25,26]]],[18,2,2,26,28,[[522,1,1,26,27],[561,1,1,27,28]]],[19,5,5,28,33,[[628,1,1,28,29],[630,2,2,29,31],[631,1,1,31,32],[649,1,1,32,33]]],[23,1,1,33,34,[[775,1,1,33,34]]],[37,2,2,34,36,[[914,1,1,34,35],[922,1,1,35,36]]]],[145,476,933,968,970,975,991,1153,1445,1449,1510,2485,2486,2489,2490,2505,4723,6671,7151,7159,7230,7733,7935,8378,8430,12741,14599,15270,16409,16477,16489,16499,17026,19693,22929,23055]]],["gracious",[2,2,[[19,1,1,0,1,[[638,1,1,0,1]]],[20,1,1,1,2,[[668,1,1,1,2]]]],[16704,17505]]],["pleasant",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16536]]],["precious",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16881]]]]},{"k":"H2581","v":[["Hen",[1,1,[[37,1,1,0,1,[[916,1,1,0,1]]]],[22961]]]]},{"k":"H2582","v":[["Henadad",[4,4,[[14,1,1,0,1,[[405,1,1,0,1]]],[15,3,3,1,4,[[415,2,2,1,3],[422,1,1,3,4]]]],[12106,12345,12351,12558]]]]},{"k":"H2583","v":[["*",[143,135,[[0,2,2,0,2,[[25,1,1,0,1],[32,1,1,1,2]]],[1,9,7,2,9,[[62,1,1,2,3],[63,3,2,3,5],[64,1,1,5,6],[66,1,1,6,7],[67,1,1,7,8],[68,2,1,8,9]]],[3,74,72,9,81,[[117,4,4,9,13],[118,8,7,13,20],[119,4,4,20,24],[125,6,5,24,29],[126,3,3,29,32],[128,1,1,32,33],[137,4,4,33,37],[138,1,1,37,38],[147,1,1,38,39],[149,42,42,39,81]]],[4,1,1,81,82,[[153,1,1,81,82]]],[5,7,7,82,89,[[190,1,1,82,83],[191,1,1,83,84],[194,1,1,84,85],[196,3,3,85,88],[197,1,1,88,89]]],[6,12,11,89,100,[[216,2,2,89,91],[217,1,1,91,92],[219,1,1,92,93],[220,2,1,93,94],[221,2,2,94,96],[225,1,1,96,97],[228,1,1,97,98],[229,1,1,98,99],[230,1,1,99,100]]],[8,13,10,100,110,[[239,2,1,100,101],[246,1,1,101,102],[248,2,2,102,104],[252,2,2,104,106],[261,3,2,106,108],[263,2,1,108,109],[264,1,1,109,110]]],[9,5,5,110,115,[[277,1,1,110,111],[278,1,1,111,112],[283,1,1,112,113],[289,1,1,113,114],[290,1,1,114,115]]],[10,4,4,115,119,[[306,2,2,115,117],[310,2,2,117,119]]],[11,1,1,119,120,[[337,1,1,119,120]]],[12,2,2,120,122,[[348,1,1,120,121],[356,1,1,121,122]]],[13,1,1,122,123,[[398,1,1,122,123]]],[14,1,1,123,124,[[410,1,1,123,124]]],[15,1,1,124,125,[[423,1,1,124,125]]],[17,1,1,125,126,[[454,1,1,125,126]]],[18,3,3,126,129,[[504,1,1,126,127],[511,1,1,127,128],[530,1,1,128,129]]],[22,2,2,129,131,[[707,2,2,129,131]]],[23,2,2,131,133,[[794,1,1,131,132],[796,1,1,132,133]]],[33,1,1,133,134,[[902,1,1,133,134]]],[37,1,1,134,135,[[919,1,1,134,135]]]],[709,978,1887,1891,1898,1947,1984,2004,2028,3654,3655,3656,3657,3660,3661,3663,3670,3675,3685,3692,3715,3721,3727,3730,3982,3983,3985,3987,3988,3993,3994,4019,4075,4350,4351,4352,4353,4376,4683,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4801,4802,4803,4804,4805,4806,4807,4808,4809,4925,5929,5944,6013,6069,6095,6098,6112,6658,6687,6695,6804,6828,6847,6849,6938,7005,7033,7073,7298,7446,7490,7501,7619,7620,7908,7910,7946,7968,8270,8314,8475,8666,8697,9298,9299,9435,9437,10223,10688,10914,11876,12216,12618,13309,14288,14395,14724,18194,18196,20195,20280,22729,23007]]],["+",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[978]]],["abide",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4683]]],["camp",[3,3,[[22,1,1,0,1,[[707,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]],[33,1,1,2,3,[[902,1,1,2,3]]]],[18196,20195,22729]]],["camped",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2028]]],["dwelt",[2,2,[[15,1,1,0,1,[[423,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]]],[12618,18194]]],["encamp",[11,10,[[1,2,1,0,1,[[63,2,1,0,1]]],[3,5,5,1,6,[[117,1,1,1,2],[118,2,2,2,4],[119,1,1,4,5],[126,1,1,5,6]]],[9,1,1,6,7,[[278,1,1,6,7]]],[17,1,1,7,8,[[454,1,1,7,8]]],[18,1,1,8,9,[[504,1,1,8,9]]],[37,1,1,9,10,[[919,1,1,9,10]]]],[1891,3654,3675,3685,3730,4019,8314,13309,14288,23007]]],["encamped",[33,32,[[1,3,3,0,3,[[62,1,1,0,1],[64,1,1,1,2],[67,1,1,2,3]]],[3,13,13,3,16,[[149,13,13,3,16]]],[5,5,5,16,21,[[190,1,1,16,17],[191,1,1,17,18],[196,3,3,18,21]]],[6,5,4,21,25,[[216,1,1,21,22],[219,1,1,22,23],[220,2,1,23,24],[230,1,1,24,25]]],[8,2,2,25,27,[[246,1,1,25,26],[248,1,1,26,27]]],[9,1,1,27,28,[[277,1,1,27,28]]],[10,2,2,28,30,[[306,2,2,28,30]]],[12,1,1,30,31,[[348,1,1,30,31]]],[13,1,1,31,32,[[398,1,1,31,32]]]],[1887,1947,2004,4770,4771,4772,4773,4774,4777,4784,4786,4790,4792,4794,4795,4806,5929,5944,6069,6095,6098,6658,6804,6828,7073,7446,7501,8270,9298,9299,10688,11876]]],["encampeth",[2,2,[[18,2,2,0,2,[[511,1,1,0,1],[530,1,1,1,2]]]],[14395,14724]]],["encamping",[1,1,[[1,1,1,0,1,[[63,1,1,0,1]]]],[1898]]],["end",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7033]]],["lie",[2,2,[[3,2,2,0,2,[[126,2,2,0,2]]]],[3993,3994]]],["pitch",[9,8,[[3,9,8,0,8,[[117,1,1,0,1],[118,5,4,1,5],[119,3,3,5,8]]]],[3657,3660,3661,3663,3670,3715,3721,3727]]],["pitched",[67,64,[[1,2,2,0,2,[[66,1,1,0,1],[68,1,1,1,2]]],[3,38,38,2,40,[[117,1,1,2,3],[118,1,1,3,4],[125,1,1,4,5],[128,1,1,5,6],[137,4,4,6,10],[138,1,1,10,11],[149,29,29,11,40]]],[5,2,2,40,42,[[194,1,1,40,41],[197,1,1,41,42]]],[6,6,6,42,48,[[216,1,1,42,43],[217,1,1,43,44],[221,2,2,44,46],[225,1,1,46,47],[228,1,1,47,48]]],[8,11,8,48,56,[[239,2,1,48,49],[248,1,1,49,50],[252,2,2,50,52],[261,3,2,52,54],[263,2,1,54,55],[264,1,1,55,56]]],[9,3,3,56,59,[[283,1,1,56,57],[289,1,1,57,58],[290,1,1,58,59]]],[10,2,2,59,61,[[310,2,2,59,61]]],[11,1,1,61,62,[[337,1,1,61,62]]],[12,1,1,62,63,[[356,1,1,62,63]]],[23,1,1,63,64,[[796,1,1,63,64]]]],[1984,2028,3655,3692,3983,4075,4350,4351,4352,4353,4376,4765,4766,4767,4768,4769,4775,4776,4778,4779,4780,4781,4782,4783,4785,4787,4788,4789,4791,4793,4796,4797,4801,4802,4803,4804,4805,4807,4808,4809,6013,6112,6687,6695,6847,6849,6938,7005,7298,7490,7619,7620,7908,7910,7946,7968,8475,8666,8697,9435,9437,10223,10914,20280]]],["tent",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[709]]],["tents",[8,8,[[3,6,6,0,6,[[117,1,1,0,1],[125,5,5,1,6]]],[4,1,1,6,7,[[153,1,1,6,7]]],[14,1,1,7,8,[[410,1,1,7,8]]]],[3656,3982,3983,3985,3987,3988,4925,12216]]]]},{"k":"H2584","v":[["Hannah",[13,11,[[8,13,11,0,11,[[236,11,9,0,9],[237,2,2,9,11]]]],[7214,7217,7220,7221,7225,7227,7231,7232,7234,7241,7261]]]]},{"k":"H2585","v":[["*",[16,15,[[0,11,10,0,10,[[3,3,2,0,2],[4,6,6,2,8],[24,1,1,8,9],[45,1,1,9,10]]],[1,1,1,10,11,[[55,1,1,10,11]]],[3,1,1,11,12,[[142,1,1,11,12]]],[12,3,3,12,15,[[338,2,2,12,14],[342,1,1,14,15]]]],[96,97,123,124,126,127,128,129,662,1395,1669,4494,10255,10285,10431]]],["Enoch",[9,8,[[0,9,8,0,8,[[3,3,2,0,2],[4,6,6,2,8]]]],[96,97,123,124,126,127,128,129]]],["Hanoch",[5,5,[[0,2,2,0,2,[[24,1,1,0,1],[45,1,1,1,2]]],[1,1,1,2,3,[[55,1,1,2,3]]],[3,1,1,3,4,[[142,1,1,3,4]]],[12,1,1,4,5,[[342,1,1,4,5]]]],[662,1395,1669,4494,10431]]],["Henoch",[2,2,[[12,2,2,0,2,[[338,2,2,0,2]]]],[10255,10285]]]]},{"k":"H2586","v":[["Hanun",[11,10,[[9,4,4,0,4,[[276,4,4,0,4]]],[12,5,4,4,8,[[356,5,4,4,8]]],[15,2,2,8,10,[[415,2,2,8,10]]]],[8241,8242,8243,8244,10909,10910,10911,10913,12340,12357]]]]},{"k":"H2587","v":[["*",[13,13,[[1,2,2,0,2,[[71,1,1,0,1],[83,1,1,1,2]]],[13,1,1,2,3,[[396,1,1,2,3]]],[15,2,2,3,5,[[421,2,2,3,5]]],[18,6,6,5,11,[[563,1,1,5,6],[580,1,1,6,7],[588,1,1,7,8],[589,1,1,8,9],[593,1,1,9,10],[622,1,1,10,11]]],[28,1,1,11,12,[[877,1,1,11,12]]],[31,1,1,12,13,[[892,1,1,12,13]]]],[2140,2502,11836,12528,12542,15299,15557,15797,15807,15853,16328,22324,22570]]],["Gracious",[1,1,[[18,1,1,0,1,[[593,1,1,0,1]]]],[15853]]],["gracious",[12,12,[[1,2,2,0,2,[[71,1,1,0,1],[83,1,1,1,2]]],[13,1,1,2,3,[[396,1,1,2,3]]],[15,2,2,3,5,[[421,2,2,3,5]]],[18,5,5,5,10,[[563,1,1,5,6],[580,1,1,6,7],[588,1,1,7,8],[589,1,1,8,9],[622,1,1,9,10]]],[28,1,1,10,11,[[877,1,1,10,11]]],[31,1,1,11,12,[[892,1,1,11,12]]]],[2140,2502,11836,12528,12542,15299,15557,15797,15807,16328,22324,22570]]]]},{"k":"H2588","v":[["cabins",[1,1,[[23,1,1,0,1,[[781,1,1,0,1]]]],[19890]]]]},{"k":"H2589","v":[["gracious",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15102]]]]},{"k":"H2590","v":[["*",[5,4,[[0,4,3,0,3,[[49,4,3,0,3]]],[21,1,1,3,4,[[672,1,1,3,4]]]],[1508,1509,1532,17567]]],["+",[2,1,[[0,2,1,0,1,[[49,2,1,0,1]]]],[1508]]],["embalmed",[2,2,[[0,2,2,0,2,[[49,2,2,0,2]]]],[1509,1532]]],["forth",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17567]]]]},{"k":"H2591","v":[["wheat",[2,2,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]]],[12160,12195]]]]},{"k":"H2592","v":[["*",[2,2,[[3,1,1,0,1,[[150,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]]],[4839,10574]]],["Haniel",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10574]]],["Hanniel",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4839]]]]},{"k":"H2593","v":[["trained",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[350]]]]},{"k":"H2594","v":[["favour",[1,1,[[23,1,1,0,1,[[760,1,1,0,1]]]],[19349]]]]},{"k":"H2595","v":[["*",[47,40,[[8,20,18,0,18,[[248,2,2,0,2],[252,4,3,2,5],[253,2,2,5,7],[254,3,2,7,9],[255,1,1,9,10],[256,1,1,10,11],[257,1,1,11,12],[261,6,6,12,18]]],[9,9,6,18,24,[[267,1,1,18,19],[268,2,1,19,20],[287,1,1,20,21],[289,5,3,21,24]]],[11,1,1,24,25,[[323,1,1,24,25]]],[12,7,5,25,30,[[348,5,3,25,28],[349,1,1,28,29],[357,1,1,29,30]]],[13,1,1,30,31,[[389,1,1,30,31]]],[17,2,2,31,33,[[474,1,1,31,32],[476,1,1,32,33]]],[18,3,3,33,36,[[512,1,1,33,34],[523,1,1,34,35],[534,1,1,35,36]]],[22,1,1,36,37,[[680,1,1,36,37]]],[32,1,1,37,38,[[896,1,1,37,38]]],[33,1,1,38,39,[[902,1,1,38,39]]],[34,1,1,39,40,[[905,1,1,39,40]]]],[7504,7507,7625,7663,7665,7686,7687,7715,7716,7763,7780,7793,7912,7913,7916,7917,7921,7927,8028,8072,8599,8660,8671,8674,9839,10684,10693,10696,10754,10931,11665,13857,13914,14413,14623,14772,17689,22623,22715,22779]]],["javelin",[6,5,[[8,6,5,0,5,[[253,2,2,0,2],[254,3,2,2,4],[255,1,1,4,5]]]],[7686,7687,7715,7716,7763]]],["spear",[34,29,[[8,12,12,0,12,[[248,1,1,0,1],[252,3,3,1,4],[256,1,1,4,5],[257,1,1,5,6],[261,6,6,6,12]]],[9,9,6,12,18,[[267,1,1,12,13],[268,2,1,13,14],[287,1,1,14,15],[289,5,3,15,18]]],[12,7,5,18,23,[[348,5,3,18,21],[349,1,1,21,22],[357,1,1,22,23]]],[17,2,2,23,25,[[474,1,1,23,24],[476,1,1,24,25]]],[18,2,2,25,27,[[512,1,1,25,26],[523,1,1,26,27]]],[33,1,1,27,28,[[902,1,1,27,28]]],[34,1,1,28,29,[[905,1,1,28,29]]]],[7507,7625,7663,7665,7780,7793,7912,7913,7916,7917,7921,7927,8028,8072,8599,8660,8671,8674,10684,10693,10696,10754,10931,13857,13914,14413,14623,22715,22779]]],["spear's",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7625]]],["spears",[6,6,[[8,1,1,0,1,[[248,1,1,0,1]]],[11,1,1,1,2,[[323,1,1,1,2]]],[13,1,1,2,3,[[389,1,1,2,3]]],[18,1,1,3,4,[[534,1,1,3,4]]],[22,1,1,4,5,[[680,1,1,4,5]]],[32,1,1,5,6,[[896,1,1,5,6]]]],[7504,9839,11665,14772,17689,22623]]]]},{"k":"H2596","v":[["*",[5,4,[[4,2,1,0,1,[[172,2,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[13,1,1,2,3,[[373,1,1,2,3]]],[19,1,1,3,4,[[649,1,1,3,4]]]],[5432,9048,11329,17021]]],["+",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[373,1,1,1,2]]]],[9048,11329]]],["dedicate",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5432]]],["dedicated",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5432]]],["up",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17021]]]]},{"k":"H2597","v":[["dedication",[4,4,[[14,2,2,0,2,[[408,2,2,0,2]]],[26,2,2,2,4,[[852,2,2,2,4]]]],[12167,12168,21809,21810]]]]},{"k":"H2598","v":[["*",[7,6,[[3,4,4,0,4,[[123,4,4,0,4]]],[13,1,1,4,5,[[373,1,1,4,5]]],[15,2,1,5,6,[[424,2,1,5,6]]]],[3860,3861,3934,3938,11333,12651]]],["dedicating",[2,2,[[3,2,2,0,2,[[123,2,2,0,2]]]],[3860,3861]]],["dedication",[5,4,[[3,2,2,0,2,[[123,2,2,0,2]]],[13,1,1,2,3,[[373,1,1,2,3]]],[15,2,1,3,4,[[424,2,1,3,4]]]],[3934,3938,11333,12651]]]]},{"k":"H2599","v":[["Hanochites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4494]]]]},{"k":"H2600","v":[["*",[32,31,[[0,1,1,0,1,[[28,1,1,0,1]]],[1,2,2,1,3,[[70,2,2,1,3]]],[3,1,1,3,4,[[127,1,1,3,4]]],[8,2,2,4,6,[[254,1,1,4,5],[260,1,1,5,6]]],[9,1,1,6,7,[[290,1,1,6,7]]],[10,1,1,7,8,[[292,1,1,7,8]]],[12,1,1,8,9,[[358,1,1,8,9]]],[17,4,4,9,13,[[436,1,1,9,10],[437,1,1,10,11],[444,1,1,11,12],[457,1,1,12,13]]],[18,6,5,13,18,[[512,3,2,13,15],[546,1,1,15,16],[586,1,1,16,17],[596,1,1,17,18]]],[19,6,6,18,24,[[628,2,2,18,20],[630,1,1,20,21],[650,1,1,21,22],[651,1,1,22,23],[653,1,1,23,24]]],[22,2,2,24,26,[[730,2,2,24,26]]],[23,1,1,26,27,[[766,1,1,26,27]]],[24,1,1,27,28,[[799,1,1,27,28]]],[25,2,2,28,30,[[807,1,1,28,29],[815,1,1,29,30]]],[38,1,1,30,31,[[925,1,1,30,31]]]],[810,2079,2088,4029,7711,7892,8716,8801,10958,12878,12894,13068,13395,14417,14429,14939,15758,16059,16411,16417,16485,17073,17107,17143,18699,18701,19467,20406,20573,20754,23099]]],["+",[3,3,[[3,1,1,0,1,[[127,1,1,0,1]]],[25,2,2,1,3,[[807,1,1,1,2],[815,1,1,2,3]]]],[4029,20573,20754]]],["cause",[14,13,[[8,1,1,0,1,[[254,1,1,0,1]]],[17,2,2,1,3,[[437,1,1,1,2],[444,1,1,2,3]]],[18,6,5,3,8,[[512,3,2,3,5],[546,1,1,5,6],[586,1,1,6,7],[596,1,1,7,8]]],[19,4,4,8,12,[[628,1,1,8,9],[630,1,1,9,10],[650,1,1,10,11],[651,1,1,11,12]]],[24,1,1,12,13,[[799,1,1,12,13]]]],[7711,12894,13068,14417,14429,14939,15758,16059,16411,16485,17073,17107,20406]]],["causeless",[2,2,[[8,1,1,0,1,[[260,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]]],[7892,17143]]],["cost",[1,1,[[12,1,1,0,1,[[358,1,1,0,1]]]],[10958]]],["free",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2088]]],["innocent",[1,1,[[10,1,1,0,1,[[292,1,1,0,1]]]],[8801]]],["nothing",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[9,1,1,1,2,[[290,1,1,1,2]]]],[2079,8716]]],["nought",[6,6,[[0,1,1,0,1,[[28,1,1,0,1]]],[17,2,2,1,3,[[436,1,1,1,2],[457,1,1,2,3]]],[22,2,2,3,5,[[730,2,2,3,5]]],[38,1,1,5,6,[[925,1,1,5,6]]]],[810,12878,13395,18699,18701,23099]]],["vain",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16417]]],["wages",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19467]]]]},{"k":"H2601","v":[["Hanameel",[4,4,[[23,4,4,0,4,[[776,4,4,0,4]]]],[19738,19739,19740,19743]]]]},{"k":"H2602","v":[["frost",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15160]]]]},{"k":"H2603","v":[["*",[77,72,[[0,4,4,0,4,[[32,2,2,0,2],[41,1,1,2,3],[42,1,1,3,4]]],[1,2,1,4,5,[[82,2,1,4,5]]],[3,1,1,5,6,[[122,1,1,5,6]]],[4,3,3,6,9,[[155,1,1,6,7],[159,1,1,7,8],[180,1,1,8,9]]],[6,1,1,9,10,[[231,1,1,9,10]]],[9,1,1,10,11,[[278,1,1,10,11]]],[10,3,3,11,14,[[298,3,3,11,14]]],[11,2,2,14,16,[[313,1,1,14,15],[325,1,1,15,16]]],[13,2,2,16,18,[[372,2,2,16,18]]],[16,2,2,18,20,[[429,1,1,18,19],[433,1,1,19,20]]],[17,7,6,20,26,[[443,1,1,20,21],[444,1,1,21,22],[454,4,3,22,25],[468,1,1,25,26]]],[18,32,30,26,56,[[481,1,1,26,27],[483,1,1,27,28],[486,1,1,28,29],[502,1,1,29,30],[503,1,1,30,31],[504,1,1,31,32],[507,2,2,32,34],[508,1,1,34,35],[514,2,2,35,37],[518,2,2,37,39],[528,1,1,39,40],[533,1,1,40,41],[534,2,1,41,42],[536,1,1,42,43],[544,1,1,43,44],[563,2,2,44,46],[579,2,2,46,48],[586,1,1,48,49],[589,1,1,49,50],[596,3,3,50,53],[600,3,2,53,55],[619,1,1,55,56]]],[19,6,6,56,62,[[641,2,2,56,58],[646,1,1,58,59],[648,1,1,59,60],[653,1,1,60,61],[655,1,1,61,62]]],[22,6,5,62,67,[[704,1,1,62,63],[705,1,1,63,64],[708,3,2,64,66],[711,1,1,66,67]]],[23,1,1,67,68,[[766,1,1,67,68]]],[24,1,1,68,69,[[800,1,1,68,69]]],[27,1,1,69,70,[[873,1,1,69,70]]],[29,1,1,70,71,[[883,1,1,70,71]]],[38,1,1,71,72,[[925,1,1,71,72]]]],[965,971,1273,1319,2492,3848,4998,5113,5661,7124,8308,9018,9032,9044,9546,9894,11306,11319,12770,12820,13034,13066,13313,13314,13318,13674,13966,13987,14034,14267,14284,14292,14327,14329,14340,14471,14476,14546,14552,14692,14756,14769,14795,14894,15287,15300,15534,15535,15767,15808,15927,15956,16030,16100,16101,16287,16793,16803,16942,16994,17166,17204,18140,18162,18235,18236,18281,19477,20436,22256,22438,23098]]],["+",[9,8,[[0,2,2,0,2,[[32,1,1,0,1],[41,1,1,1,2]]],[1,1,1,2,3,[[82,1,1,2,3]]],[4,1,1,3,4,[[155,1,1,3,4]]],[11,1,1,4,5,[[313,1,1,4,5]]],[18,1,1,5,6,[[600,1,1,5,6]]],[22,3,2,6,8,[[705,1,1,6,7],[708,2,1,7,8]]]],[965,1273,2492,4998,9546,16100,18162,18236]]],["besought",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12820]]],["fair",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17166]]],["favour",[6,6,[[4,1,1,0,1,[[180,1,1,0,1]]],[18,4,4,1,5,[[579,2,2,1,3],[586,1,1,3,4],[589,1,1,4,5]]],[19,1,1,5,6,[[648,1,1,5,6]]]],[5661,15534,15535,15767,15808,16994]]],["favourable",[1,1,[[6,1,1,0,1,[[231,1,1,0,1]]]],[7124]]],["favoured",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20436]]],["gracious",[11,11,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,1,1,1,2,[[82,1,1,1,2]]],[3,1,1,2,3,[[122,1,1,2,3]]],[9,1,1,3,4,[[278,1,1,3,4]]],[11,1,1,4,5,[[325,1,1,4,5]]],[17,1,1,5,6,[[468,1,1,5,6]]],[22,2,2,6,8,[[708,1,1,6,7],[711,1,1,7,8]]],[23,1,1,8,9,[[766,1,1,8,9]]],[29,1,1,9,10,[[883,1,1,9,10]]],[38,1,1,10,11,[[925,1,1,10,11]]]],[1319,2492,3848,8308,9894,13674,18235,18281,19477,22438,23098]]],["graciously",[2,2,[[0,1,1,0,1,[[32,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[971,15927]]],["intreated",[2,2,[[17,2,2,0,2,[[454,2,2,0,2]]]],[13313,13314]]],["merciful",[12,11,[[18,12,11,0,11,[[503,1,1,0,1],[514,1,1,1,2],[518,2,2,2,4],[533,1,1,4,5],[534,2,1,5,6],[536,1,1,6,7],[544,1,1,7,8],[563,1,1,8,9],[596,2,2,9,11]]]],[14284,14476,14546,14552,14756,14769,14795,14894,15287,15956,16030]]],["mercy",[12,12,[[4,1,1,0,1,[[159,1,1,0,1]]],[18,10,10,1,11,[[481,1,1,1,2],[483,1,1,2,3],[486,1,1,3,4],[502,1,1,4,5],[504,1,1,5,6],[507,1,1,6,7],[508,1,1,7,8],[514,1,1,8,9],[528,1,1,9,10],[563,1,1,10,11]]],[19,1,1,11,12,[[641,1,1,11,12]]]],[5113,13966,13987,14034,14267,14292,14329,14340,14471,14692,15300,16803]]],["on",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16793]]],["pity",[2,2,[[19,2,2,0,2,[[646,1,1,0,1],[655,1,1,1,2]]]],[16942,17204]]],["pray",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11319]]],["shewed",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18140]]],["supplication",[10,10,[[10,3,3,0,3,[[298,3,3,0,3]]],[13,1,1,3,4,[[372,1,1,3,4]]],[16,1,1,4,5,[[429,1,1,4,5]]],[17,2,2,5,7,[[443,1,1,5,6],[444,1,1,6,7]]],[18,2,2,7,9,[[507,1,1,7,8],[619,1,1,8,9]]],[27,1,1,9,10,[[873,1,1,9,10]]]],[9018,9032,9044,11306,12770,13034,13066,14327,16287,22256]]],["upon",[4,2,[[17,2,1,0,1,[[454,2,1,0,1]]],[18,2,1,1,2,[[600,2,1,1,2]]]],[13318,16101]]]]},{"k":"H2604","v":[["*",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[855,1,1,1,2]]]],[21864,21916]]],["mercy",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]],["supplication",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21916]]]]},{"k":"H2605","v":[["Hanan",[12,12,[[12,4,4,0,4,[[345,2,2,0,2],[346,1,1,2,3],[348,1,1,3,4]]],[14,1,1,4,5,[[404,1,1,4,5]]],[15,6,6,5,11,[[419,1,1,5,6],[420,1,1,6,7],[422,3,3,7,10],[425,1,1,10,11]]],[23,1,1,11,12,[[779,1,1,11,12]]]],[10598,10613,10659,10716,12073,12469,12500,12559,12571,12575,12684,19827]]]]},{"k":"H2606","v":[["Hananeel",[4,4,[[15,2,2,0,2,[[415,1,1,0,1],[424,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[12328,12663,19729,23078]]]]},{"k":"H2607","v":[["Hanani",[11,11,[[10,2,2,0,2,[[306,2,2,0,2]]],[12,2,2,2,4,[[362,2,2,2,4]]],[13,3,3,4,7,[[382,1,1,4,5],[385,1,1,5,6],[386,1,1,6,7]]],[14,1,1,7,8,[[412,1,1,7,8]]],[15,3,3,8,11,[[413,1,1,8,9],[419,1,1,9,10],[424,1,1,10,11]]]],[9284,9290,11050,11071,11516,11578,11621,12272,12298,12422,12660]]]]},{"k":"H2608","v":[["Hananiah",[29,28,[[12,5,5,0,5,[[340,2,2,0,2],[345,1,1,2,3],[362,2,2,3,5]]],[13,1,1,5,6,[[392,1,1,5,6]]],[14,1,1,6,7,[[412,1,1,6,7]]],[15,6,6,7,13,[[415,2,2,7,9],[419,1,1,9,10],[422,1,1,10,11],[424,2,2,11,13]]],[23,11,10,13,23,[[772,9,8,13,21],[780,1,1,21,22],[781,1,1,22,23]]],[26,5,5,23,28,[[850,4,4,23,27],[851,1,1,27,28]]]],[10380,10382,10599,11050,11069,11743,12280,12335,12357,12422,12572,12636,12665,19619,19623,19628,19629,19630,19631,19633,19635,19854,19887,21743,21744,21748,21756,21775]]]]},{"k":"H2609","v":[["Hanes",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18221]]]]},{"k":"H2610","v":[["*",[11,9,[[3,2,1,0,1,[[151,2,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]],[22,1,1,2,3,[[702,1,1,2,3]]],[23,5,4,3,7,[[747,4,3,3,6],[767,1,1,6,7]]],[26,1,1,7,8,[[860,1,1,7,8]]],[32,1,1,8,9,[[896,1,1,8,9]]]],[4878,15689,18100,19003,19004,19011,19495,22068,22631]]],["+",[5,3,[[3,2,1,0,1,[[151,2,1,0,1]]],[23,3,2,1,3,[[747,3,2,1,3]]]],[4878,19003,19011]]],["corrupt",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22068]]],["defiled",[2,2,[[22,1,1,0,1,[[702,1,1,0,1]]],[32,1,1,1,2,[[896,1,1,1,2]]]],[18100,22631]]],["polluted",[2,2,[[18,1,1,0,1,[[583,1,1,0,1]]],[23,1,1,1,2,[[747,1,1,1,2]]]],[15689,19004]]],["profane",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19495]]]]},{"k":"H2611","v":[["*",[13,13,[[17,8,8,0,8,[[443,1,1,0,1],[448,1,1,1,2],[450,1,1,2,3],[452,1,1,3,4],[455,1,1,4,5],[462,1,1,5,6],[469,1,1,6,7],[471,1,1,7,8]]],[18,1,1,8,9,[[512,1,1,8,9]]],[19,1,1,9,10,[[638,1,1,9,10]]],[22,3,3,10,13,[[687,1,1,10,11],[688,1,1,11,12],[711,1,1,12,13]]]],[13042,13169,13237,13268,13331,13489,13713,13749,14426,16697,17846,17856,18293]]],["+",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13713]]],["hypocrite",[6,6,[[17,4,4,0,4,[[448,1,1,0,1],[452,1,1,1,2],[455,1,1,2,3],[462,1,1,3,4]]],[19,1,1,4,5,[[638,1,1,4,5]]],[22,1,1,5,6,[[687,1,1,5,6]]]],[13169,13268,13331,13489,16697,17846]]],["hypocrite's",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13042]]],["hypocrites",[3,3,[[17,2,2,0,2,[[450,1,1,0,1],[471,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]]],[13237,13749,18293]]],["hypocritical",[2,2,[[18,1,1,0,1,[[512,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[14426,17856]]]]},{"k":"H2612","v":[["hypocrisy",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18265]]]]},{"k":"H2613","v":[["profaneness",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19499]]]]},{"k":"H2614","v":[["*",[2,2,[[9,1,1,0,1,[[283,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[8472,22711]]],["himself",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8472]]],["strangled",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22711]]]]},{"k":"H2615","v":[["Hannathon",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6335]]]]},{"k":"H2616","v":[["*",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]],[19,1,1,2,3,[[652,1,1,2,3]]]],[8628,14143,17123]]],["merciful",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8628,14143]]],["shame",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17123]]]]},{"k":"H2617","v":[["*",[247,241,[[0,11,11,0,11,[[18,1,1,0,1],[19,1,1,1,2],[20,1,1,2,3],[23,4,4,3,7],[31,1,1,7,8],[38,1,1,8,9],[39,1,1,9,10],[46,1,1,10,11]]],[1,4,4,11,15,[[64,1,1,11,12],[69,1,1,12,13],[83,2,2,13,15]]],[2,1,1,15,16,[[109,1,1,15,16]]],[3,2,2,16,18,[[130,2,2,16,18]]],[4,3,3,18,21,[[157,1,1,18,19],[159,2,2,19,21]]],[5,3,2,21,23,[[188,3,2,21,23]]],[6,2,2,23,25,[[211,1,1,23,24],[218,1,1,24,25]]],[7,3,3,25,28,[[232,1,1,25,26],[233,1,1,26,27],[234,1,1,27,28]]],[8,4,4,28,32,[[250,1,1,28,29],[255,3,3,29,32]]],[9,12,11,32,43,[[268,2,2,32,34],[269,1,1,34,35],[273,1,1,35,36],[275,3,3,36,39],[276,2,1,39,40],[281,1,1,40,41],[282,1,1,41,42],[288,1,1,42,43]]],[10,5,4,43,47,[[292,1,1,43,44],[293,2,1,44,45],[298,1,1,45,46],[310,1,1,46,47]]],[12,5,4,47,51,[[353,2,2,47,49],[354,1,1,49,50],[356,2,1,50,51]]],[13,10,10,51,61,[[367,1,1,51,52],[371,1,1,52,53],[372,2,2,53,55],[373,2,2,55,57],[386,1,1,57,58],[390,1,1,58,59],[398,1,1,59,60],[401,1,1,60,61]]],[14,3,3,61,64,[[405,1,1,61,62],[409,1,1,62,63],[411,1,1,63,64]]],[15,5,5,64,69,[[413,1,1,64,65],[421,2,2,65,67],[425,2,2,67,69]]],[16,2,2,69,71,[[427,2,2,69,71]]],[17,3,3,71,74,[[441,1,1,71,72],[445,1,1,72,73],[472,1,1,73,74]]],[18,127,127,74,201,[[482,1,1,74,75],[483,1,1,75,76],[490,1,1,76,77],[494,1,1,77,78],[495,1,1,78,79],[498,1,1,79,80],[500,1,1,80,81],[502,3,3,81,84],[503,1,1,84,85],[508,3,3,85,88],[509,1,1,88,89],[510,3,3,89,92],[513,3,3,92,95],[517,2,2,95,97],[519,1,1,97,98],[521,1,1,98,99],[525,1,1,99,100],[528,1,1,100,101],[529,2,2,101,103],[534,2,2,103,105],[536,3,3,105,108],[538,1,1,108,109],[539,1,1,109,110],[540,1,1,110,111],[543,1,1,111,112],[546,2,2,112,114],[554,1,1,114,115],[562,2,2,115,117],[563,3,3,117,120],[565,1,1,120,121],[566,7,7,121,128],[567,1,1,128,129],[569,1,1,129,130],[571,1,1,130,131],[575,1,1,131,132],[577,1,1,132,133],[578,1,1,133,134],[580,4,4,134,138],[583,3,3,138,141],[584,6,6,141,147],[585,1,1,147,148],[586,4,4,148,152],[592,1,1,152,153],[594,1,1,153,154],[595,5,5,154,159],[596,7,7,159,166],[607,1,1,166,167],[613,26,26,167,193],[615,2,2,193,195],[618,1,1,195,196],[620,2,2,196,198],[621,1,1,198,199],[622,1,1,199,200],[624,1,1,200,201]]],[19,11,10,201,211,[[630,1,1,201,202],[638,1,1,202,203],[641,2,2,203,205],[643,1,1,205,206],[646,1,1,206,207],[647,3,2,207,209],[648,1,1,209,210],[658,1,1,210,211]]],[22,8,7,211,218,[[694,1,1,211,212],[718,1,1,212,213],[732,2,2,213,215],[733,1,1,215,216],[735,1,1,216,217],[741,2,1,217,218]]],[23,6,6,218,224,[[746,1,1,218,219],[753,1,1,219,220],[760,1,1,220,221],[775,1,1,221,222],[776,1,1,222,223],[777,1,1,223,224]]],[24,2,2,224,226,[[799,2,2,224,226]]],[26,2,2,226,228,[[850,1,1,226,227],[858,1,1,227,228]]],[27,6,6,228,234,[[863,1,1,228,229],[865,1,1,229,230],[867,2,2,230,232],[871,1,1,232,233],[873,1,1,233,234]]],[28,1,1,234,235,[[877,1,1,234,235]]],[31,2,2,235,237,[[890,1,1,235,236],[892,1,1,236,237]]],[32,3,3,237,240,[[898,1,1,237,238],[899,2,2,238,240]]],[37,1,1,240,241,[[917,1,1,240,241]]]],[476,508,536,603,605,618,640,938,1170,1186,1449,1933,2057,2502,2503,3335,4126,4127,5063,5120,5123,5881,5883,6533,6754,7135,7169,7182,7566,7738,7744,7745,8054,8055,8089,8195,8228,8230,8234,8242,8409,8443,8653,8777,8822,9008,9439,10854,10861,10876,10909,11202,11281,11296,11324,11327,11330,11608,11699,11907,11992,12108,12201,12246,12301,12528,12543,12685,12693,12733,12741,12992,13098,13782,13980,13989,14079,14110,14168,14198,14241,14257,14258,14261,14276,14338,14347,14352,14365,14371,14384,14388,14443,14445,14448,14535,14536,14563,14597,14643,14692,14711,14718,14771,14778,14800,14806,14807,14826,14839,14842,14893,14948,14951,15101,15278,15281,15289,15297,15299,15319,15327,15328,15340,15350,15354,15359,15375,15392,15413,15449,15493,15513,15514,15553,15557,15560,15566,15652,15658,15696,15700,15707,15714,15720,15730,15742,15746,15767,15771,15776,15781,15831,15869,15870,15871,15872,15873,15898,15939,15962,15974,15986,16022,16047,16057,16147,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,16215,16216,16217,16218,16219,16220,16221,16222,16233,16239,16281,16301,16305,16307,16328,16362,16458,16705,16794,16806,16846,16947,16960,16982,17005,17310,17974,18426,18731,18733,18743,18766,18873,18967,19199,19341,19694,19749,19786,20376,20386,21746,21992,22124,22134,22171,22173,22237,22258,22324,22556,22570,22656,22682,22684,22971]]],["+",[6,6,[[5,1,1,0,1,[[188,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]],[18,4,4,2,6,[[483,1,1,2,3],[494,1,1,3,4],[508,1,1,4,5],[521,1,1,5,6]]]],[5881,10876,13989,14110,14352,14597]]],["Mercy",[3,3,[[18,2,2,0,2,[[562,1,1,0,1],[566,1,1,1,2]]],[19,1,1,2,3,[[647,1,1,2,3]]]],[15281,15328,16982]]],["deeds",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12685]]],["favour",[3,3,[[16,1,1,0,1,[[427,1,1,0,1]]],[17,1,1,1,2,[[445,1,1,1,2]]],[26,1,1,2,3,[[850,1,1,2,3]]]],[12741,13098,21746]]],["goodliness",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18426]]],["goodness",[12,12,[[1,1,1,0,1,[[83,1,1,0,1]]],[13,2,2,1,3,[[398,1,1,1,2],[401,1,1,2,3]]],[18,7,7,3,10,[[510,1,1,3,4],[529,1,1,4,5],[584,4,4,5,9],[621,1,1,9,10]]],[19,1,1,10,11,[[647,1,1,10,11]]],[27,1,1,11,12,[[867,1,1,11,12]]]],[2502,11907,11992,14371,14711,15707,15714,15720,15730,16307,16960,22171]]],["kindly",[5,5,[[0,2,2,0,2,[[23,1,1,0,1],[46,1,1,1,2]]],[5,1,1,2,3,[[188,1,1,2,3]]],[7,1,1,3,4,[[232,1,1,3,4]]],[8,1,1,4,5,[[255,1,1,4,5]]]],[640,1449,5883,7135,7738]]],["kindness",[38,36,[[0,5,5,0,5,[[19,1,1,0,1],[20,1,1,1,2],[23,2,2,2,4],[39,1,1,4,5]]],[5,1,1,5,6,[[188,1,1,5,6]]],[6,1,1,6,7,[[218,1,1,6,7]]],[7,2,2,7,9,[[233,1,1,7,8],[234,1,1,8,9]]],[8,3,3,9,12,[[250,1,1,9,10],[255,2,2,10,12]]],[9,9,8,12,20,[[268,2,2,12,14],[269,1,1,14,15],[275,3,3,15,18],[276,2,1,18,19],[282,1,1,19,20]]],[10,2,2,20,22,[[292,1,1,20,21],[293,1,1,21,22]]],[12,2,1,22,23,[[356,2,1,22,23]]],[13,1,1,23,24,[[390,1,1,23,24]]],[15,1,1,24,25,[[421,1,1,24,25]]],[16,1,1,25,26,[[427,1,1,25,26]]],[18,3,3,26,29,[[594,1,1,26,27],[596,1,1,27,28],[618,1,1,28,29]]],[19,2,2,29,31,[[646,1,1,29,30],[658,1,1,30,31]]],[22,2,2,31,33,[[732,2,2,31,33]]],[23,1,1,33,34,[[746,1,1,33,34]]],[28,1,1,34,35,[[877,1,1,34,35]]],[31,1,1,35,36,[[892,1,1,35,36]]]],[508,536,603,605,1186,5881,6754,7169,7182,7566,7744,7745,8054,8055,8089,8228,8230,8234,8242,8443,8777,8822,10909,11699,12528,12733,15869,15974,16281,16947,17310,18731,18733,18967,22324,22570]]],["lovingkindness",[25,25,[[18,20,20,0,20,[[503,1,1,0,1],[513,2,2,1,3],[517,2,2,3,5],[519,1,1,5,6],[525,1,1,6,7],[528,1,1,7,8],[540,1,1,8,9],[546,1,1,9,10],[565,1,1,10,11],[566,1,1,11,12],[569,1,1,12,13],[580,1,1,13,14],[584,1,1,14,15],[596,3,3,15,18],[615,1,1,18,19],[620,1,1,19,20]]],[23,4,4,20,24,[[753,1,1,20,21],[760,1,1,21,22],[775,1,1,22,23],[776,1,1,23,24]]],[27,1,1,24,25,[[863,1,1,24,25]]]],[14276,14445,14448,14535,14536,14563,14643,14692,14842,14951,15319,15359,15413,15553,15742,15986,16047,16057,16233,16301,19199,19341,19694,19749,22124]]],["lovingkindnesses",[4,3,[[18,2,2,0,2,[[502,1,1,0,1],[566,1,1,1,2]]],[22,2,1,2,3,[[741,2,1,2,3]]]],[14257,15375,18873]]],["mercies",[9,9,[[0,1,1,0,1,[[31,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[18,4,4,2,6,[[566,1,1,2,3],[583,2,2,3,5],[596,1,1,5,6]]],[22,1,1,6,7,[[733,1,1,6,7]]],[24,2,2,7,9,[[799,2,2,7,9]]]],[938,11324,15327,15658,15696,15939,18743,20376,20386]]],["mercies'",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14347]]],["merciful",[3,3,[[10,1,1,0,1,[[310,1,1,0,1]]],[19,1,1,1,2,[[638,1,1,1,2]]],[22,1,1,2,3,[[735,1,1,2,3]]]],[9439,16705,18766]]],["mercy",[133,133,[[0,3,3,0,3,[[18,1,1,0,1],[23,1,1,1,2],[38,1,1,2,3]]],[1,3,3,3,6,[[64,1,1,3,4],[69,1,1,4,5],[83,1,1,5,6]]],[3,2,2,6,8,[[130,2,2,6,8]]],[4,3,3,8,11,[[157,1,1,8,9],[159,2,2,9,11]]],[6,1,1,11,12,[[211,1,1,11,12]]],[9,3,3,12,15,[[273,1,1,12,13],[281,1,1,13,14],[288,1,1,14,15]]],[10,2,2,15,17,[[293,1,1,15,16],[298,1,1,16,17]]],[12,2,2,17,19,[[353,2,2,17,19]]],[13,6,6,19,25,[[367,1,1,19,20],[371,1,1,20,21],[372,1,1,21,22],[373,2,2,22,24],[386,1,1,24,25]]],[14,3,3,25,28,[[405,1,1,25,26],[409,1,1,26,27],[411,1,1,27,28]]],[15,3,3,28,31,[[413,1,1,28,29],[421,1,1,29,30],[425,1,1,30,31]]],[17,1,1,31,32,[[472,1,1,31,32]]],[18,84,84,32,116,[[482,1,1,32,33],[490,1,1,33,34],[495,1,1,34,35],[498,1,1,35,36],[500,1,1,36,37],[502,2,2,37,39],[508,1,1,39,40],[509,1,1,40,41],[510,2,2,41,43],[513,1,1,43,44],[529,1,1,44,45],[534,2,2,45,47],[536,3,3,47,50],[538,1,1,50,51],[539,1,1,51,52],[543,1,1,52,53],[546,1,1,53,54],[554,1,1,54,55],[562,1,1,55,56],[563,3,3,56,59],[566,3,3,59,62],[567,1,1,62,63],[571,1,1,63,64],[575,1,1,64,65],[577,1,1,65,66],[578,1,1,66,67],[580,3,3,67,70],[583,1,1,70,71],[584,1,1,71,72],[585,1,1,72,73],[586,4,4,73,77],[592,1,1,77,78],[595,5,5,78,83],[596,2,2,83,85],[607,1,1,85,86],[613,26,26,86,112],[615,1,1,112,113],[620,1,1,113,114],[622,1,1,114,115],[624,1,1,115,116]]],[19,5,5,116,121,[[630,1,1,116,117],[641,1,1,117,118],[643,1,1,118,119],[647,1,1,119,120],[648,1,1,120,121]]],[22,1,1,121,122,[[694,1,1,121,122]]],[23,1,1,122,123,[[777,1,1,122,123]]],[26,1,1,123,124,[[858,1,1,123,124]]],[27,4,4,124,128,[[865,1,1,124,125],[867,1,1,125,126],[871,1,1,126,127],[873,1,1,127,128]]],[31,1,1,128,129,[[890,1,1,128,129]]],[32,3,3,129,132,[[898,1,1,129,130],[899,2,2,130,132]]],[37,1,1,132,133,[[917,1,1,132,133]]]],[476,618,1170,1933,2057,2503,4126,4127,5063,5120,5123,6533,8195,8409,8653,8822,9008,10854,10861,11202,11281,11296,11327,11330,11608,12108,12201,12246,12301,12543,12693,13782,13980,14079,14168,14198,14241,14258,14261,14338,14365,14384,14388,14443,14718,14771,14778,14800,14806,14807,14826,14839,14893,14948,15101,15278,15289,15297,15299,15340,15350,15354,15392,15449,15493,15513,15514,15557,15560,15566,15652,15700,15746,15767,15771,15776,15781,15831,15870,15871,15872,15873,15898,15962,16022,16147,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,16215,16216,16217,16218,16219,16220,16221,16222,16239,16305,16328,16362,16458,16794,16846,16982,17005,17974,19786,21992,22134,22173,22237,22258,22556,22656,22682,22684,22971]]],["pity",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12992]]],["reproach",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16806]]],["thing",[1,1,[[2,1,1,0,1,[[109,1,1,0,1]]]],[3335]]]]},{"k":"H2618","v":[]},{"k":"H2619","v":[["Hasadiah",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10381]]]]},{"k":"H2620","v":[["*",[37,36,[[4,1,1,0,1,[[184,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[7,1,1,2,3,[[233,1,1,2,3]]],[9,2,2,3,5,[[288,2,2,3,5]]],[18,25,24,5,29,[[479,1,1,5,6],[482,1,1,6,7],[484,1,1,7,8],[488,1,1,8,9],[493,1,1,9,10],[494,1,1,10,11],[495,2,2,11,13],[502,1,1,13,14],[508,2,2,14,16],[511,2,2,16,18],[513,1,1,18,19],[514,1,1,19,20],[534,2,1,20,21],[538,1,1,21,22],[541,1,1,22,23],[548,1,1,23,24],[568,1,1,24,25],[595,2,2,25,27],[618,1,1,27,28],[621,1,1,28,29]]],[19,2,2,29,31,[[641,1,1,29,30],[657,1,1,30,31]]],[22,3,3,31,34,[[692,1,1,31,32],[708,1,1,32,33],[735,1,1,33,34]]],[33,1,1,34,35,[[900,1,1,34,35]]],[35,1,1,35,36,[[908,1,1,35,36]]]],[5795,6769,7161,8605,8633,13957,13984,13996,14060,14093,14110,14120,14148,14271,14332,14350,14396,14410,14445,14490,14769,14823,14860,14977,15399,15877,15878,16284,16307,16804,17256,17960,18219,18778,22691,22832]]],["hope",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16804]]],["refuge",[1,1,[[18,1,1,0,1,[[534,1,1,0,1]]]],[14769]]],["trust",[32,32,[[6,1,1,0,1,[[219,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[9,2,2,2,4,[[288,2,2,2,4]]],[18,22,22,4,26,[[479,1,1,4,5],[482,1,1,5,6],[484,1,1,6,7],[488,1,1,7,8],[493,1,1,8,9],[494,1,1,9,10],[495,2,2,10,12],[502,1,1,12,13],[508,2,2,13,15],[511,1,1,15,16],[513,1,1,16,17],[514,1,1,17,18],[538,1,1,18,19],[541,1,1,19,20],[548,1,1,20,21],[568,1,1,21,22],[595,2,2,22,24],[618,1,1,24,25],[621,1,1,25,26]]],[19,1,1,26,27,[[657,1,1,26,27]]],[22,3,3,27,30,[[692,1,1,27,28],[708,1,1,28,29],[735,1,1,29,30]]],[33,1,1,30,31,[[900,1,1,30,31]]],[35,1,1,31,32,[[908,1,1,31,32]]]],[6769,7161,8605,8633,13957,13984,13996,14060,14093,14110,14120,14148,14271,14332,14350,14410,14445,14490,14823,14860,14977,15399,15877,15878,16284,16307,17256,17960,18219,18778,22691,22832]]],["trusted",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5795]]],["trusteth",[2,2,[[18,2,2,0,2,[[511,1,1,0,1],[534,1,1,1,2]]]],[14396,14769]]]]},{"k":"H2621","v":[["Hosah",[5,5,[[5,1,1,0,1,[[205,1,1,0,1]]],[12,4,4,1,5,[[353,1,1,1,2],[363,3,3,2,5]]]],[6350,10858,11087,11088,11093]]]]},{"k":"H2622","v":[["trust",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18220]]]]},{"k":"H2623","v":[["*",[32,32,[[4,1,1,0,1,[[185,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[13,1,1,3,4,[[372,1,1,3,4]]],[18,25,25,4,29,[[481,1,1,4,5],[489,1,1,5,6],[493,1,1,6,7],[495,1,1,7,8],[507,1,1,8,9],[508,1,1,9,10],[509,1,1,10,11],[514,1,1,11,12],[520,1,1,12,13],[527,1,1,13,14],[529,1,1,14,15],[556,1,1,15,16],[562,1,1,16,17],[563,1,1,17,18],[566,1,1,18,19],[574,1,1,19,20],[593,1,1,20,21],[609,2,2,21,23],[622,2,2,23,25],[625,1,1,25,26],[626,3,3,26,29]]],[19,1,1,29,30,[[629,1,1,29,30]]],[23,1,1,30,31,[[747,1,1,30,31]]],[32,1,1,31,32,[[899,1,1,31,32]]]],[5818,7249,8628,11323,13968,14067,14102,14143,14323,14354,14361,14478,14567,14673,14719,15187,15279,15286,15345,15488,15863,16160,16167,16330,16337,16385,16386,16390,16394,16441,19014,22666]]],["+",[2,2,[[18,2,2,0,2,[[520,1,1,0,1],[527,1,1,1,2]]]],[14567,14673]]],["One",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14102]]],["godly",[2,2,[[18,2,2,0,2,[[481,1,1,0,1],[509,1,1,1,2]]]],[13968,14361]]],["good",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22666]]],["holy",[3,3,[[4,1,1,0,1,[[185,1,1,0,1]]],[18,2,2,1,3,[[563,1,1,1,2],[622,1,1,2,3]]]],[5818,15286,16337]]],["man",[1,1,[[18,1,1,0,1,[[489,1,1,0,1]]]],[14067]]],["merciful",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]],[23,1,1,2,3,[[747,1,1,2,3]]]],[8628,14143,19014]]],["one",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15345]]],["saints",[18,18,[[8,1,1,0,1,[[237,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[18,15,15,2,17,[[507,1,1,2,3],[508,1,1,3,4],[514,1,1,4,5],[529,1,1,5,6],[556,1,1,6,7],[562,1,1,7,8],[574,1,1,8,9],[593,1,1,9,10],[609,2,2,10,12],[622,1,1,12,13],[625,1,1,13,14],[626,3,3,14,17]]],[19,1,1,17,18,[[629,1,1,17,18]]]],[7249,11323,14323,14354,14478,14719,15187,15279,15488,15863,16160,16167,16330,16385,16386,16390,16394,16441]]]]},{"k":"H2624","v":[["*",[6,6,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[17,1,1,2,3,[[474,1,1,2,3]]],[18,1,1,3,4,[[581,1,1,3,4]]],[23,1,1,4,5,[[752,1,1,4,5]]],[37,1,1,5,6,[[915,1,1,5,6]]]],[3016,5308,13847,15588,19160,22945]]],["feathers",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13847]]],["stork",[5,5,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[23,1,1,3,4,[[752,1,1,3,4]]],[37,1,1,4,5,[[915,1,1,4,5]]]],[3016,5308,15588,19160,22945]]]]},{"k":"H2625","v":[["*",[6,6,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[18,1,1,2,3,[[555,1,1,2,3]]],[22,1,1,3,4,[[711,1,1,3,4]]],[28,2,2,4,6,[[876,1,1,4,5],[877,1,1,5,6]]]],[9022,11310,15159,18283,22295,22336]]],["caterpiller",[5,5,[[10,1,1,0,1,[[298,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]],[28,2,2,3,5,[[876,1,1,3,4],[877,1,1,4,5]]]],[9022,15159,18283,22295,22336]]],["caterpillers",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11310]]]]},{"k":"H2626","v":[["strong",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15334]]]]},{"k":"H2627","v":[["wanting",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21901]]]]},{"k":"H2628","v":[["consume",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5649]]]]},{"k":"H2629","v":[["*",[2,2,[[4,1,1,0,1,[[177,1,1,0,1]]],[25,1,1,1,2,[[840,1,1,1,2]]]],[5551,21459]]],["+",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21459]]],["muzzle",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5551]]]]},{"k":"H2630","v":[["up",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18095]]]]},{"k":"H2631","v":[["*",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21951,21955]]],["possess",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21951]]],["possessed",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21955]]]]},{"k":"H2632","v":[["power",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21795,21867]]]]},{"k":"H2633","v":[["*",[5,5,[[19,2,2,0,2,[[642,1,1,0,1],[654,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]],[23,1,1,3,4,[[764,1,1,3,4]]],[25,1,1,4,5,[[823,1,1,4,5]]]],[16813,17193,18285,19427,21001]]],["riches",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17193]]],["strength",[2,2,[[22,1,1,0,1,[[711,1,1,0,1]]],[23,1,1,1,2,[[764,1,1,1,2]]]],[18285,19427]]],["treasure",[2,2,[[19,1,1,0,1,[[642,1,1,0,1]]],[25,1,1,1,2,[[823,1,1,1,2]]]],[16813,21001]]]]},{"k":"H2634","v":[["strong",[2,2,[[22,1,1,0,1,[[679,1,1,0,1]]],[29,1,1,1,2,[[880,1,1,1,2]]]],[17685,22388]]]]},{"k":"H2635","v":[["clay",[9,7,[[26,9,7,0,7,[[851,9,7,0,7]]]],[21791,21792,21793,21799,21800,21801,21803]]]]},{"k":"H2636","v":[["thing",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1961]]]]},{"k":"H2637","v":[["*",[22,22,[[0,3,3,0,3,[[7,2,2,0,2],[17,1,1,2,3]]],[1,1,1,3,4,[[65,1,1,3,4]]],[4,3,3,4,7,[[154,1,1,4,5],[160,1,1,5,6],[167,1,1,6,7]]],[10,2,2,7,9,[[307,2,2,7,9]]],[15,1,1,9,10,[[421,1,1,9,10]]],[18,3,3,10,13,[[485,1,1,10,11],[500,1,1,11,12],[511,1,1,12,13]]],[19,2,2,13,15,[[640,1,1,13,14],[658,1,1,14,15]]],[20,2,2,15,17,[[662,1,1,15,16],[667,1,1,16,17]]],[21,1,1,17,18,[[677,1,1,17,18]]],[22,2,2,18,20,[[710,1,1,18,19],[729,1,1,19,20]]],[23,1,1,20,21,[[788,1,1,20,21]]],[25,1,1,21,22,[[805,1,1,21,22]]]],[186,188,452,1965,4945,5146,5327,9331,9333,12532,14017,14236,14398,16772,17295,17389,17483,17629,18265,18687,20028,20546]]],["+",[2,2,[[18,1,1,0,1,[[485,1,1,0,1]]],[20,1,1,1,2,[[662,1,1,1,2]]]],[14017,17389]]],["abated",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[186]]],["decreased",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[188]]],["fail",[4,4,[[10,2,2,0,2,[[307,2,2,0,2]]],[22,2,2,2,4,[[710,1,1,2,3],[729,1,1,3,4]]]],[9331,9333,18265,18687]]],["lack",[4,4,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[65,1,1,1,2]]],[4,1,1,2,3,[[160,1,1,2,3]]],[20,1,1,3,4,[[667,1,1,3,4]]]],[452,1965,5146,17483]]],["lacked",[2,2,[[4,1,1,0,1,[[154,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]]],[4945,12532]]],["need",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17295]]],["want",[4,4,[[18,2,2,0,2,[[500,1,1,0,1],[511,1,1,1,2]]],[19,1,1,2,3,[[640,1,1,2,3]]],[25,1,1,3,4,[[805,1,1,3,4]]]],[14236,14398,16772,20546]]],["wanted",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20028]]],["wanteth",[2,2,[[4,1,1,0,1,[[167,1,1,0,1]]],[21,1,1,1,2,[[677,1,1,1,2]]]],[5327,17629]]]]},{"k":"H2638","v":[["*",[18,18,[[8,1,1,0,1,[[256,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]],[10,1,1,2,3,[[301,1,1,2,3]]],[19,13,13,3,16,[[633,1,1,3,4],[634,1,1,4,5],[636,2,2,5,7],[637,2,2,7,9],[638,1,1,9,10],[639,2,2,10,12],[642,1,1,12,13],[644,1,1,13,14],[651,1,1,14,15],[655,1,1,15,16]]],[20,2,2,16,18,[[664,1,1,16,17],[668,1,1,17,18]]]],[7787,8110,9130,16572,16582,16642,16654,16669,16677,16700,16728,16730,16828,16891,17109,17212,17419,17496]]],["destitute",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16828]]],["faileth",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17496]]],["lacked",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9130]]],["lacketh",[3,3,[[9,1,1,0,1,[[269,1,1,0,1]]],[19,2,2,1,3,[[633,1,1,1,2],[639,1,1,2,3]]]],[8110,16572,16728]]],["need",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7787]]],["void",[6,6,[[19,6,6,0,6,[[634,1,1,0,1],[637,1,1,1,2],[638,1,1,2,3],[639,1,1,3,4],[644,1,1,4,5],[651,1,1,5,6]]]],[16582,16669,16700,16730,16891,17109]]],["want",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16677]]],["wanteth",[4,4,[[19,3,3,0,3,[[636,2,2,0,2],[655,1,1,2,3]]],[20,1,1,3,4,[[664,1,1,3,4]]]],[16642,16654,17212,17419]]]]},{"k":"H2639","v":[["*",[2,2,[[17,1,1,0,1,[[465,1,1,0,1]]],[19,1,1,1,2,[[655,1,1,1,2]]]],[13560,17218]]],["poverty",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17218]]],["want",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13560]]]]},{"k":"H2640","v":[["want",[3,3,[[4,2,2,0,2,[[180,2,2,0,2]]],[29,1,1,2,3,[[882,1,1,2,3]]]],[5659,5668,22416]]]]},{"k":"H2641","v":[["Hasrah",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11955]]]]},{"k":"H2642","v":[["wanting",[1,1,[[20,1,1,0,1,[[659,1,1,0,1]]]],[17330]]]]},{"k":"H2643","v":[["innocent",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13659]]]]},{"k":"H2644","v":[["secretly",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[9992]]]]},{"k":"H2645","v":[["*",[12,10,[[9,2,1,0,1,[[281,2,1,0,1]]],[13,5,4,1,5,[[369,5,4,1,5]]],[16,2,2,5,7,[[431,1,1,5,6],[432,1,1,6,7]]],[18,1,1,7,8,[[545,1,1,7,8]]],[23,2,2,8,10,[[758,2,2,8,10]]]],[8419,11234,11236,11237,11238,12805,12815,14913,19296,19297]]],["cieled",[1,1,[[13,1,1,0,1,[[369,1,1,0,1]]]],[11234]]],["covered",[7,6,[[9,2,1,0,1,[[281,2,1,0,1]]],[16,2,2,1,3,[[431,1,1,1,2],[432,1,1,2,3]]],[18,1,1,3,4,[[545,1,1,3,4]]],[23,2,2,4,6,[[758,2,2,4,6]]]],[8419,12805,12815,14913,19296,19297]]],["overlaid",[4,4,[[13,4,4,0,4,[[369,4,4,0,4]]]],[11234,11236,11237,11238]]]]},{"k":"H2646","v":[["*",[3,3,[[18,1,1,0,1,[[496,1,1,0,1]]],[22,1,1,1,2,[[682,1,1,1,2]]],[28,1,1,2,3,[[877,1,1,2,3]]]],[14173,17738,22327]]],["+",[2,2,[[18,1,1,0,1,[[496,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[14173,22327]]],["defence",[1,1,[[22,1,1,0,1,[[682,1,1,0,1]]]],[17738]]]]},{"k":"H2647","v":[["Huppah",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11028]]]]},{"k":"H2648","v":[["*",[9,9,[[4,1,1,0,1,[[172,1,1,0,1]]],[8,1,1,1,2,[[258,1,1,1,2]]],[9,1,1,2,3,[[270,1,1,2,3]]],[11,1,1,3,4,[[319,1,1,3,4]]],[17,1,1,4,5,[[475,1,1,4,5]]],[18,4,4,5,9,[[508,1,1,5,6],[525,1,1,6,7],[581,1,1,7,8],[593,1,1,8,9]]]],[5430,7836,8124,9722,13887,14353,14639,15578,15859]]],["+",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7836]]],["away",[2,2,[[18,2,2,0,2,[[525,1,1,0,1],[581,1,1,1,2]]]],[14639,15578]]],["haste",[4,4,[[9,1,1,0,1,[[270,1,1,0,1]]],[11,1,1,1,2,[[319,1,1,1,2]]],[18,2,2,2,4,[[508,1,1,2,3],[593,1,1,3,4]]]],[8124,9722,14353,15859]]],["hasteth",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13887]]],["tremble",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5430]]]]},{"k":"H2649","v":[["haste",[3,3,[[1,1,1,0,1,[[61,1,1,0,1]]],[4,1,1,1,2,[[168,1,1,1,2]]],[22,1,1,2,3,[[730,1,1,2,3]]]],[1827,5345,18708]]]]},{"k":"H2650","v":[["Huppim",[3,3,[[0,1,1,0,1,[[45,1,1,0,1]]],[12,2,2,1,3,[[344,2,2,1,3]]]],[1407,10547,10550]]]]},{"k":"H2651","v":[["*",[6,6,[[1,1,1,0,1,[[58,1,1,0,1]]],[2,1,1,1,2,[[105,1,1,1,2]]],[19,1,1,2,3,[[657,1,1,2,3]]],[20,1,1,3,4,[[662,1,1,3,4]]],[25,2,2,4,6,[[811,2,2,4,6]]]],[1750,3213,17255,17387,20635,20640]]],["+",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1750]]],["fists",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17255]]],["hand",[1,1,[[25,1,1,0,1,[[811,1,1,0,1]]]],[20635]]],["hands",[3,3,[[2,1,1,0,1,[[105,1,1,0,1]]],[20,1,1,1,2,[[662,1,1,1,2]]],[25,1,1,2,3,[[811,1,1,2,3]]]],[3213,17387,20640]]]]},{"k":"H2652","v":[["Hophni",[5,5,[[8,5,5,0,5,[[236,1,1,0,1],[237,1,1,1,2],[239,3,3,2,5]]]],[7215,7274,7301,7308,7314]]]]},{"k":"H2653","v":[["+",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5822]]]]},{"k":"H2654","v":[["*",[76,72,[[0,1,1,0,1,[[33,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[4,3,3,2,5,[[173,1,1,2,3],[177,2,2,3,5]]],[6,1,1,5,6,[[223,1,1,5,6]]],[7,1,1,6,7,[[234,1,1,6,7]]],[8,3,3,7,10,[[237,1,1,7,8],[253,1,1,8,9],[254,1,1,9,10]]],[9,4,4,10,14,[[281,1,1,10,11],[286,1,1,11,12],[288,1,1,12,13],[290,1,1,13,14]]],[10,3,3,14,17,[[299,1,1,14,15],[300,1,1,15,16],[311,1,1,16,17]]],[13,1,1,17,18,[[375,1,1,17,18]]],[16,7,5,18,23,[[427,1,1,18,19],[431,6,4,19,23]]],[17,5,5,23,28,[[444,1,1,23,24],[448,1,1,24,25],[456,1,1,25,26],[468,1,1,26,27],[475,1,1,27,28]]],[18,17,17,28,45,[[495,1,1,28,29],[499,1,1,29,30],[514,1,1,30,31],[517,2,2,31,33],[518,1,1,33,34],[528,3,3,34,37],[545,1,1,37,38],[550,1,1,38,39],[586,1,1,39,40],[589,1,1,40,41],[592,1,1,41,42],[596,1,1,42,43],[612,1,1,43,44],[624,1,1,44,45]]],[19,2,2,45,47,[[645,1,1,45,46],[648,1,1,46,47]]],[20,1,1,47,48,[[666,1,1,47,48]]],[21,3,3,48,51,[[672,1,1,48,49],[673,1,1,49,50],[678,1,1,50,51]]],[22,12,11,51,62,[[679,1,1,51,52],[691,1,1,52,53],[720,1,1,53,54],[731,1,1,54,55],[733,1,1,55,56],[734,1,1,56,57],[736,2,1,57,58],[740,1,1,58,59],[743,1,1,59,60],[744,2,2,60,62]]],[23,3,3,62,65,[[750,1,1,62,63],[753,1,1,63,64],[786,1,1,64,65]]],[25,4,3,65,68,[[819,3,2,65,67],[834,1,1,67,68]]],[27,1,1,68,69,[[867,1,1,68,69]]],[31,1,1,69,70,[[889,1,1,69,70]]],[32,1,1,70,71,[[899,1,1,70,71]]],[38,1,1,71,72,[[926,1,1,71,72]]]],[999,4116,5461,5554,5555,6907,7185,7265,7698,7708,8415,8565,8622,8695,9052,9088,9457,11372,12738,12799,12800,12802,12804,13054,13156,13369,13682,13881,14137,14212,14473,14531,14533,14553,14697,14707,14710,14930,15045,15772,15804,15833,15933,16181,16361,16903,16985,17461,17561,17576,17644,17665,17923,18501,18721,18751,18757,18788,18858,18909,18925,18926,19099,19199,19997,20872,20881,21291,22173,22545,22682,23120]]],["+",[8,7,[[4,1,1,0,1,[[173,1,1,0,1]]],[21,3,3,1,4,[[672,1,1,1,2],[673,1,1,2,3],[678,1,1,3,4]]],[25,4,3,4,7,[[819,3,2,4,6],[834,1,1,6,7]]]],[5461,17561,17576,17644,20872,20881,21291]]],["delight",[16,15,[[0,1,1,0,1,[[33,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[9,2,2,3,5,[[281,1,1,3,4],[290,1,1,4,5]]],[16,1,1,5,6,[[431,1,1,5,6]]],[18,3,3,6,9,[[517,1,1,6,7],[545,1,1,7,8],[596,1,1,8,9]]],[19,1,1,9,10,[[645,1,1,9,10]]],[22,4,3,10,13,[[679,1,1,10,11],[691,1,1,11,12],[736,2,1,12,13]]],[23,2,2,13,15,[[750,1,1,13,14],[753,1,1,14,15]]]],[999,4116,7698,8415,8695,12799,14533,14930,15933,16903,17665,17923,18788,19099,19199]]],["delighted",[10,10,[[8,1,1,0,1,[[254,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[10,1,1,2,3,[[300,1,1,2,3]]],[13,1,1,3,4,[[375,1,1,3,4]]],[16,1,1,4,5,[[427,1,1,4,5]]],[18,3,3,5,8,[[495,1,1,5,6],[499,1,1,6,7],[586,1,1,7,8]]],[22,2,2,8,10,[[743,1,1,8,9],[744,1,1,9,10]]]],[7708,8622,9088,11372,12738,14137,14212,15772,18909,18926]]],["delighteth",[12,11,[[16,5,4,0,4,[[431,5,4,0,4]]],[18,3,3,4,7,[[514,1,1,4,5],[589,1,1,5,6],[624,1,1,6,7]]],[22,2,2,7,9,[[740,1,1,7,8],[744,1,1,8,9]]],[32,1,1,9,10,[[899,1,1,9,10]]],[38,1,1,10,11,[[926,1,1,10,11]]]],[12799,12800,12802,12804,14473,15804,16361,18858,18925,22682,23120]]],["desire",[6,6,[[17,3,3,0,3,[[448,1,1,0,1],[456,1,1,1,2],[468,1,1,2,3]]],[18,2,2,3,5,[[517,1,1,3,4],[550,1,1,4,5]]],[23,1,1,5,6,[[786,1,1,5,6]]]],[13156,13369,13682,14531,15045,19997]]],["desired",[1,1,[[27,1,1,0,1,[[867,1,1,0,1]]]],[22173]]],["desirest",[2,2,[[18,2,2,0,2,[[528,2,2,0,2]]]],[14697,14707]]],["favourest",[1,1,[[18,1,1,0,1,[[518,1,1,0,1]]]],[14553]]],["favoureth",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8565]]],["like",[2,2,[[4,2,2,0,2,[[177,2,2,0,2]]]],[5554,5555]]],["moveth",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13881]]],["please",[3,3,[[10,1,1,0,1,[[311,1,1,0,1]]],[22,2,2,1,3,[[733,1,1,1,2],[734,1,1,2,3]]]],[9457,18751,18757]]],["pleased",[8,8,[[6,1,1,0,1,[[223,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[18,3,3,2,5,[[528,1,1,2,3],[592,1,1,3,4],[612,1,1,4,5]]],[22,2,2,5,7,[[720,1,1,5,6],[731,1,1,6,7]]],[31,1,1,7,8,[[889,1,1,7,8]]]],[6907,9052,14710,15833,16181,18501,18721,22545]]],["pleaseth",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17461]]],["will",[3,3,[[7,1,1,0,1,[[234,1,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]],[19,1,1,2,3,[[648,1,1,2,3]]]],[7185,13054,16985]]],["would",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7265]]]]},{"k":"H2655","v":[["*",[10,9,[[10,1,1,0,1,[[303,1,1,0,1]]],[12,1,1,1,2,[[365,1,1,1,2]]],[15,1,1,2,3,[[413,1,1,2,3]]],[18,6,5,3,8,[[482,1,1,3,4],[511,1,1,4,5],[512,2,1,5,6],[517,1,1,6,7],[547,1,1,7,8]]],[38,1,1,8,9,[[927,1,1,8,9]]]],[9217,11152,12307,13977,14400,14437,14539,14973,23121]]],["delight",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23121]]],["desire",[2,2,[[15,1,1,0,1,[[413,1,1,0,1]]],[18,1,1,1,2,[[547,1,1,1,2]]]],[12307,14973]]],["desireth",[1,1,[[18,1,1,0,1,[[511,1,1,0,1]]]],[14400]]],["favour",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14437]]],["pleasure",[2,2,[[18,2,2,0,2,[[482,1,1,0,1],[512,1,1,1,2]]]],[13977,14437]]],["willing",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11152]]],["wish",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14539]]],["would",[1,1,[[10,1,1,0,1,[[303,1,1,0,1]]]],[9217]]]]},{"k":"H2656","v":[["*",[39,38,[[8,2,2,0,2,[[250,1,1,0,1],[253,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[10,5,5,3,8,[[295,3,3,3,6],[299,1,1,6,7],[300,1,1,7,8]]],[13,1,1,8,9,[[375,1,1,8,9]]],[17,3,3,9,12,[[456,1,1,9,10],[457,1,1,10,11],[466,1,1,11,12]]],[18,4,4,12,16,[[478,1,1,12,13],[493,1,1,13,14],[584,1,1,14,15],[588,1,1,15,16]]],[19,3,3,16,19,[[630,1,1,16,17],[635,1,1,17,18],[658,1,1,18,19]]],[20,7,7,19,26,[[661,2,2,19,21],[663,2,2,21,23],[666,1,1,23,24],[670,2,2,24,26]]],[22,8,7,26,33,[[722,1,1,26,27],[724,1,1,27,28],[726,1,1,28,29],[731,1,1,29,30],[732,1,1,30,31],[736,3,2,31,33]]],[23,2,2,33,35,[[766,1,1,33,34],[792,1,1,34,35]]],[27,1,1,35,36,[[869,1,1,35,36]]],[38,2,2,36,38,[[925,1,1,36,37],[927,1,1,37,38]]]],[7582,7701,8658,8886,8887,8888,9062,9092,11376,13376,13392,13604,13941,14095,15729,15795,16470,16613,17297,17360,17376,17401,17405,17464,17524,17533,18561,18596,18628,18721,18735,18789,18799,19482,20118,22202,23099,23132]]],["+",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13604]]],["acceptable",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17533]]],["delight",[3,3,[[8,1,1,0,1,[[250,1,1,0,1]]],[18,2,2,1,3,[[478,1,1,1,2],[493,1,1,2,3]]]],[7582,13941,14095]]],["delightsome",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23132]]],["desire",[8,8,[[9,1,1,0,1,[[289,1,1,0,1]]],[10,5,5,1,6,[[295,3,3,1,4],[299,1,1,4,5],[300,1,1,5,6]]],[13,1,1,6,7,[[375,1,1,6,7]]],[19,1,1,7,8,[[630,1,1,7,8]]]],[8658,8886,8887,8888,9062,9092,11376,16470]]],["desired",[2,2,[[18,1,1,0,1,[[584,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]]],[15729,16613]]],["desireth",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7701]]],["matter",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17405]]],["pleasant",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18735]]],["pleasure",[16,15,[[17,2,2,0,2,[[456,1,1,0,1],[457,1,1,1,2]]],[18,1,1,2,3,[[588,1,1,2,3]]],[20,2,2,3,5,[[663,1,1,3,4],[670,1,1,4,5]]],[22,7,6,5,11,[[722,1,1,5,6],[724,1,1,6,7],[726,1,1,7,8],[731,1,1,8,9],[736,3,2,9,11]]],[23,2,2,11,13,[[766,1,1,11,12],[792,1,1,12,13]]],[27,1,1,13,14,[[869,1,1,13,14]]],[38,1,1,14,15,[[925,1,1,14,15]]]],[13376,13392,15795,17401,17524,18561,18596,18628,18721,18789,18799,19482,20118,22202,23099]]],["purpose",[3,3,[[20,3,3,0,3,[[661,2,2,0,2],[666,1,1,2,3]]]],[17360,17376,17464]]],["willingly",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17297]]]]},{"k":"H2657","v":[["Hephzibah",[2,2,[[11,1,1,0,1,[[333,1,1,0,1]]],[22,1,1,1,2,[[740,1,1,1,2]]]],[10120,18858]]]]},{"k":"H2658","v":[["*",[22,21,[[0,8,7,0,7,[[20,1,1,0,1],[25,7,6,1,7]]],[1,1,1,7,8,[[56,1,1,7,8]]],[3,1,1,8,9,[[137,1,1,8,9]]],[4,2,2,9,11,[[153,1,1,9,10],[175,1,1,10,11]]],[5,2,2,11,13,[[188,2,2,11,13]]],[17,4,4,13,17,[[438,1,1,13,14],[446,1,1,14,15],[474,2,2,15,17]]],[18,2,2,17,19,[[484,1,1,17,18],[512,1,1,18,19]]],[20,1,1,19,20,[[668,1,1,19,20]]],[23,1,1,20,21,[[757,1,1,20,21]]]],[543,707,710,711,713,714,724,1709,4358,4914,5513,5871,5872,12925,13126,13855,13863,14010,14417,17501,19273]]],["+",[4,4,[[0,1,1,0,1,[[20,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[5,2,2,2,4,[[188,2,2,2,4]]]],[543,4914,5871,5872]]],["dig",[3,3,[[4,1,1,0,1,[[175,1,1,0,1]]],[17,2,2,1,3,[[438,1,1,1,2],[446,1,1,2,3]]]],[5513,12925,13126]]],["digged",[12,11,[[0,7,6,0,6,[[25,7,6,0,6]]],[1,1,1,6,7,[[56,1,1,6,7]]],[3,1,1,7,8,[[137,1,1,7,8]]],[18,2,2,8,10,[[484,1,1,8,9],[512,1,1,9,10]]],[23,1,1,10,11,[[757,1,1,10,11]]]],[707,710,711,713,714,724,1709,4358,14010,14417,19273]]],["diggeth",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17501]]],["paweth",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13855]]],["seeketh",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13863]]]]},{"k":"H2659","v":[["*",[17,17,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,7,7,1,8,[[511,1,1,1,2],[512,2,2,2,4],[517,1,1,4,5],[547,1,1,5,6],[548,1,1,6,7],[560,1,1,7,8]]],[19,2,2,8,10,[[640,1,1,8,9],[646,1,1,9,10]]],[22,4,4,10,14,[[679,1,1,10,11],[702,1,1,11,12],[711,1,1,12,13],[732,1,1,13,14]]],[23,2,2,14,16,[[759,1,1,14,15],[794,1,1,15,16]]],[32,1,1,16,17,[[895,1,1,16,17]]]],[12998,14393,14414,14436,14539,14973,15000,15258,16752,16951,17683,18118,18288,18727,19324,20178,22615]]],["ashamed",[4,4,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,1,1,1,2,[[511,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]],[23,1,1,3,4,[[794,1,1,3,4]]]],[12998,14393,18288,20178]]],["confounded",[6,6,[[18,2,2,0,2,[[517,1,1,0,1],[547,1,1,1,2]]],[22,2,2,2,4,[[679,1,1,2,3],[702,1,1,3,4]]],[23,1,1,4,5,[[759,1,1,4,5]]],[32,1,1,5,6,[[895,1,1,5,6]]]],[14539,14973,17683,18118,19324,22615]]],["confusion",[2,2,[[18,2,2,0,2,[[512,2,2,0,2]]]],[14414,14436]]],["reproach",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16951]]],["shame",[4,4,[[18,2,2,0,2,[[548,1,1,0,1],[560,1,1,1,2]]],[19,1,1,2,3,[[640,1,1,2,3]]],[22,1,1,3,4,[[732,1,1,3,4]]]],[15000,15258,16752,18727]]]]},{"k":"H2660","v":[["Hepher",[9,9,[[3,3,3,0,3,[[142,2,2,0,2],[143,1,1,2,3]]],[5,3,3,3,6,[[198,1,1,3,4],[203,2,2,4,6]]],[10,1,1,6,7,[[294,1,1,6,7]]],[12,2,2,7,9,[[341,1,1,7,8],[348,1,1,8,9]]]],[4521,4522,4555,6147,6277,6278,8854,10391,10709]]]]},{"k":"H2661","v":[["+",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17705]]]]},{"k":"H2662","v":[["Hepherites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4521]]]]},{"k":"H2663","v":[["Hapharaim",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6340]]]]},{"k":"H2664","v":[["*",[23,20,[[0,2,2,0,2,[[30,1,1,0,1],[43,1,1,1,2]]],[8,2,2,2,4,[[258,1,1,2,3],[263,1,1,3,4]]],[10,4,3,4,7,[[310,2,2,4,6],[312,2,1,6,7]]],[11,1,1,7,8,[[322,1,1,7,8]]],[13,3,2,8,10,[[384,2,1,8,9],[401,1,1,9,10]]],[17,1,1,10,11,[[465,1,1,10,11]]],[18,3,2,11,13,[[541,2,1,11,12],[554,1,1,12,13]]],[19,3,3,13,16,[[629,1,1,13,14],[647,1,1,14,15],[655,1,1,15,16]]],[24,1,1,16,17,[[799,1,1,16,17]]],[29,1,1,17,18,[[887,1,1,17,18]]],[30,1,1,18,19,[[888,1,1,18,19]]],[35,1,1,19,20,[[906,1,1,19,20]]]],[908,1336,7833,7950,9414,9446,9510,9816,11571,11988,13575,14856,15099,16437,16981,17208,20394,22498,22516,22799]]],["+",[4,4,[[8,1,1,0,1,[[258,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[18,1,1,2,3,[[541,1,1,2,3]]],[35,1,1,3,4,[[906,1,1,3,4]]]],[7833,9414,14856,22799]]],["Search",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9816]]],["changed",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13575]]],["hidden",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17208]]],["himself",[5,5,[[8,1,1,0,1,[[263,1,1,0,1]]],[10,2,2,1,3,[[310,1,1,1,2],[312,1,1,2,3]]],[13,2,2,3,5,[[384,1,1,3,4],[401,1,1,4,5]]]],[7950,9446,9510,11571,11988]]],["myself",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[9510,11571]]],["out",[2,2,[[18,1,1,0,1,[[541,1,1,0,1]]],[30,1,1,1,2,[[888,1,1,1,2]]]],[14856,22516]]],["search",[3,3,[[18,1,1,0,1,[[554,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]],[29,1,1,2,3,[[887,1,1,2,3]]]],[15099,20394,22498]]],["searched",[2,2,[[0,2,2,0,2,[[30,1,1,0,1],[43,1,1,1,2]]]],[908,1336]]],["searchest",[1,1,[[19,1,1,0,1,[[629,1,1,0,1]]]],[16437]]],["searching",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16981]]]]},{"k":"H2665","v":[["+",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14856]]]]},{"k":"H2666","v":[["+",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3301]]]]},{"k":"H2667","v":[["precious",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21141]]]]},{"k":"H2668","v":[["freedom",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3301]]]]},{"k":"H2669","v":[["several",[2,2,[[11,1,1,0,1,[[327,1,1,0,1]]],[13,1,1,1,2,[[392,1,1,1,2]]]],[9930,11753]]]]},{"k":"H2670","v":[["*",[17,17,[[1,4,4,0,4,[[70,4,4,0,4]]],[4,3,3,4,7,[[167,3,3,4,7]]],[8,1,1,7,8,[[252,1,1,7,8]]],[17,2,2,8,10,[[438,1,1,8,9],[474,1,1,9,10]]],[18,1,1,10,11,[[565,1,1,10,11]]],[22,1,1,11,12,[[736,1,1,11,12]]],[23,5,5,12,17,[[778,5,5,12,17]]]],[2079,2082,2103,2104,5331,5332,5337,7643,12923,13839,15313,18792,19810,19811,19812,19815,19817]]],["Free",[1,1,[[18,1,1,0,1,[[565,1,1,0,1]]]],[15313]]],["free",[15,15,[[1,4,4,0,4,[[70,4,4,0,4]]],[4,3,3,4,7,[[167,3,3,4,7]]],[8,1,1,7,8,[[252,1,1,7,8]]],[17,2,2,8,10,[[438,1,1,8,9],[474,1,1,9,10]]],[22,1,1,10,11,[[736,1,1,10,11]]],[23,4,4,11,15,[[778,4,4,11,15]]]],[2079,2082,2103,2104,5331,5332,5337,7643,12923,13839,18792,19810,19811,19812,19815]]],["liberty",[1,1,[[23,1,1,0,1,[[778,1,1,0,1]]]],[19817]]]]},{"k":"H2671","v":[["*",[53,50,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[4,2,2,2,4,[[184,2,2,2,4]]],[8,6,5,4,9,[[252,1,1,4,5],[255,5,4,5,9]]],[9,1,1,9,10,[[288,1,1,9,10]]],[11,6,4,10,14,[[325,5,3,10,13],[331,1,1,13,14]]],[12,1,1,14,15,[[349,1,1,14,15]]],[13,1,1,15,16,[[392,1,1,15,16]]],[17,2,2,16,18,[[441,1,1,16,17],[469,1,1,17,18]]],[18,14,14,18,32,[[484,1,1,18,19],[488,1,1,19,20],[495,1,1,20,21],[515,1,1,21,22],[522,1,1,22,23],[534,1,1,23,24],[535,1,1,24,25],[541,2,2,25,27],[554,1,1,27,28],[568,1,1,28,29],[597,1,1,29,30],[604,1,1,30,31],[621,1,1,31,32]]],[19,3,3,32,35,[[634,1,1,32,33],[652,1,1,33,34],[653,1,1,34,35]]],[22,4,4,35,39,[[683,1,1,35,36],[685,1,1,36,37],[715,1,1,37,38],[727,1,1,38,39]]],[23,4,4,39,43,[[753,1,1,39,40],[794,2,2,40,42],[795,1,1,42,43]]],[24,1,1,43,44,[[799,1,1,43,44]]],[25,4,4,44,48,[[806,1,1,44,45],[822,1,1,45,46],[840,2,2,46,48]]],[34,1,1,48,49,[[905,1,1,48,49]]],[37,1,1,49,50,[[919,1,1,49,50]]]],[1496,4454,5781,5800,7625,7750,7751,7752,7766,8617,9886,9888,9889,10093,10722,11747,12982,13689,14008,14061,14132,14492,14602,14772,14786,14853,14857,15110,15400,16078,16125,16311,16598,17131,17159,17767,17806,18385,18638,19183,20175,20180,20223,20366,20562,20965,21451,21457,22779,23013]]],["+",[3,3,[[0,1,1,0,1,[[48,1,1,0,1]]],[18,1,1,1,2,[[568,1,1,1,2]]],[25,1,1,2,3,[[822,1,1,2,3]]]],[1496,15400,20965]]],["arrow",[10,9,[[11,3,2,0,2,[[325,2,1,0,1],[331,1,1,1,2]]],[18,2,2,2,4,[[488,1,1,2,3],[541,1,1,3,4]]],[19,1,1,4,5,[[652,1,1,4,5]]],[22,1,1,5,6,[[715,1,1,5,6]]],[23,1,1,6,7,[[753,1,1,6,7]]],[24,1,1,7,8,[[799,1,1,7,8]]],[37,1,1,8,9,[[919,1,1,8,9]]]],[9888,10093,14061,14857,17131,18385,19183,20366,23013]]],["arrows",[36,34,[[3,1,1,0,1,[[140,1,1,0,1]]],[4,2,2,1,3,[[184,2,2,1,3]]],[8,5,4,3,7,[[255,5,4,3,7]]],[9,1,1,7,8,[[288,1,1,7,8]]],[11,3,2,8,10,[[325,3,2,8,10]]],[12,1,1,10,11,[[349,1,1,10,11]]],[13,1,1,11,12,[[392,1,1,11,12]]],[17,1,1,12,13,[[441,1,1,12,13]]],[18,11,11,13,24,[[484,1,1,13,14],[495,1,1,14,15],[515,1,1,15,16],[522,1,1,16,17],[534,1,1,17,18],[535,1,1,18,19],[541,1,1,19,20],[554,1,1,20,21],[597,1,1,21,22],[604,1,1,22,23],[621,1,1,23,24]]],[19,1,1,24,25,[[653,1,1,24,25]]],[22,2,2,25,27,[[683,1,1,25,26],[685,1,1,26,27]]],[23,3,3,27,30,[[794,2,2,27,29],[795,1,1,29,30]]],[25,3,3,30,33,[[806,1,1,30,31],[840,2,2,31,33]]],[34,1,1,33,34,[[905,1,1,33,34]]]],[4454,5781,5800,7750,7751,7752,7766,8617,9886,9889,10722,11747,12982,14008,14132,14492,14602,14772,14786,14853,15110,16078,16125,16311,17159,17767,17806,20175,20180,20223,20562,21451,21457,22779]]],["dart",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16598]]],["shaft",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18638]]],["staff",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7625]]],["wound",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13689]]]]},{"k":"H2672","v":[["*",[25,22,[[4,3,2,0,2,[[158,2,1,0,1],[160,1,1,1,2]]],[10,1,1,2,3,[[295,1,1,2,3]]],[11,1,1,3,4,[[324,1,1,3,4]]],[12,3,2,4,6,[[359,3,2,4,6]]],[13,4,4,6,10,[[368,2,2,6,8],[390,1,1,8,9],[392,1,1,9,10]]],[14,1,1,10,11,[[405,1,1,10,11]]],[15,1,1,11,12,[[421,1,1,11,12]]],[17,1,1,12,13,[[454,1,1,12,13]]],[18,1,1,13,14,[[506,1,1,13,14]]],[19,1,1,14,15,[[636,1,1,14,15]]],[22,6,5,15,20,[[683,1,1,15,16],[688,1,1,16,17],[700,2,1,17,18],[729,2,2,18,20]]],[23,1,1,20,21,[[746,1,1,20,21]]],[27,1,1,21,22,[[867,1,1,21,22]]]],[5097,5146,8893,9862,10966,10979,11213,11229,11689,11742,12104,12536,13321,14315,16639,17741,17865,18068,18674,18682,18978,22172]]],["cut",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18682]]],["dig",[1,1,[[4,1,1,0,1,[[160,1,1,0,1]]]],[5146]]],["digged",[3,3,[[4,1,1,0,1,[[158,1,1,0,1]]],[13,1,1,1,2,[[392,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]]],[5097,11742,12536]]],["diggedst",[1,1,[[4,1,1,0,1,[[158,1,1,0,1]]]],[5097]]],["divideth",[1,1,[[18,1,1,0,1,[[506,1,1,0,1]]]],[14315]]],["graven",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13321]]],["hew",[2,2,[[12,1,1,0,1,[[359,1,1,0,1]]],[13,1,1,1,2,[[368,1,1,1,2]]]],[10966,11213]]],["hewed",[1,1,[[27,1,1,0,1,[[867,1,1,0,1]]]],[22172]]],["hewers",[4,4,[[10,1,1,0,1,[[295,1,1,0,1]]],[11,1,1,1,2,[[324,1,1,1,2]]],[12,1,1,2,3,[[359,1,1,2,3]]],[13,1,1,3,4,[[368,1,1,3,4]]]],[8893,9862,10979,11229]]],["heweth",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17865]]],["hewn",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18674]]],["made",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17741]]],["masons",[3,3,[[12,1,1,0,1,[[359,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]],[14,1,1,2,3,[[405,1,1,2,3]]]],[10966,11689,12104]]],["out",[4,3,[[19,1,1,0,1,[[636,1,1,0,1]]],[22,2,1,1,2,[[700,2,1,1,2]]],[23,1,1,2,3,[[746,1,1,2,3]]]],[16639,18068,18978]]]]},{"k":"H2673","v":[["*",[15,14,[[0,2,2,0,2,[[31,1,1,0,1],[32,1,1,1,2]]],[1,2,1,2,3,[[70,2,1,2,3]]],[3,2,2,3,5,[[147,2,2,3,5]]],[6,2,2,5,7,[[217,1,1,5,6],[219,1,1,6,7]]],[11,2,2,7,9,[[314,2,2,7,9]]],[17,1,1,9,10,[[476,1,1,9,10]]],[18,1,1,10,11,[[532,1,1,10,11]]],[22,1,1,11,12,[[708,1,1,11,12]]],[25,1,1,12,13,[[838,1,1,12,13]]],[26,1,1,13,14,[[860,1,1,13,14]]]],[935,961,2112,4691,4706,6710,6797,9559,9565,13894,14755,18245,21419,22040]]],["+",[5,5,[[0,2,2,0,2,[[31,1,1,0,1],[32,1,1,1,2]]],[1,1,1,2,3,[[70,1,1,2,3]]],[3,1,1,3,4,[[147,1,1,3,4]]],[6,1,1,4,5,[[217,1,1,4,5]]]],[935,961,2112,4691,6710]]],["divide",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2112]]],["divided",[5,5,[[3,1,1,0,1,[[147,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[11,1,1,2,3,[[314,1,1,2,3]]],[25,1,1,3,4,[[838,1,1,3,4]]],[26,1,1,4,5,[[860,1,1,4,5]]]],[4706,6797,9559,21419,22040]]],["half",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14755]]],["midst",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18245]]],["part",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13894]]],["parted",[1,1,[[11,1,1,0,1,[[314,1,1,0,1]]]],[9565]]]]},{"k":"H2674","v":[["Hazor",[19,17,[[5,10,8,0,8,[[197,5,4,0,4],[198,1,1,4,5],[201,3,2,5,7],[205,1,1,7,8]]],[6,2,2,8,10,[[214,2,2,8,10]]],[8,1,1,10,11,[[247,1,1,10,11]]],[10,1,1,11,12,[[299,1,1,11,12]]],[11,1,1,12,13,[[327,1,1,12,13]]],[15,1,1,13,14,[[423,1,1,13,14]]],[23,3,3,14,17,[[793,3,3,14,17]]]],[6108,6117,6118,6120,6149,6225,6227,6357,6601,6616,7469,9066,9954,12621,20155,20157,20160]]]]},{"k":"H2675","v":[["Hadattah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6227]]]]},{"k":"H2676","v":[["+",[3,3,[[1,1,1,0,1,[[60,1,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]]],[1810,13703,15960]]]]},{"k":"H2677","v":[["*",[125,103,[[1,20,13,0,13,[[61,1,1,0,1],[73,2,1,1,2],[74,6,3,2,5],[75,2,2,5,7],[76,1,1,7,8],[85,1,1,8,9],[86,6,3,9,12],[87,1,1,12,13]]],[3,8,8,13,21,[[128,1,1,13,14],[131,2,2,14,16],[144,1,1,16,17],[148,1,1,17,18],[150,3,3,18,21]]],[4,3,3,21,24,[[155,2,2,21,23],[181,1,1,23,24]]],[5,29,25,24,49,[[187,1,1,24,25],[190,1,1,25,26],[194,2,1,26,27],[196,1,1,27,28],[198,3,3,28,31],[199,6,4,31,35],[200,2,2,35,37],[204,1,1,37,38],[207,3,3,38,41],[208,9,8,41,49]]],[6,2,1,49,50,[[226,2,1,49,50]]],[7,1,1,50,51,[[234,1,1,50,51]]],[8,1,1,51,52,[[249,1,1,51,52]]],[9,4,3,52,55,[[276,2,1,52,53],[284,1,1,53,54],[285,1,1,54,55]]],[10,10,7,55,62,[[293,2,1,55,56],[297,3,3,56,59],[300,1,1,59,60],[303,1,1,60,61],[306,3,1,61,62]]],[12,13,13,62,75,[[339,2,2,62,64],[342,3,3,64,67],[343,2,2,67,69],[349,2,2,69,71],[356,1,1,71,72],[363,1,1,72,73],[364,2,2,73,75]]],[13,1,1,75,76,[[375,1,1,75,76]]],[15,13,12,76,88,[[415,5,5,76,81],[416,4,3,81,84],[424,3,3,84,87],[425,1,1,87,88]]],[16,3,3,88,91,[[430,2,2,88,90],[432,1,1,90,91]]],[18,1,1,91,92,[[579,1,1,91,92]]],[22,3,2,92,94,[[722,3,2,92,94]]],[23,1,1,94,95,[[761,1,1,94,95]]],[25,4,3,95,98,[[817,1,1,95,96],[841,2,1,96,97],[844,1,1,97,98]]],[26,2,2,98,100,[[858,1,1,98,99],[861,1,1,99,100]]],[37,6,3,100,103,[[924,6,3,100,103]]]],[1845,2183,2205,2212,2218,2247,2251,2277,2587,2605,2610,2614,2637,4071,4162,4163,4591,4751,4829,4830,4831,4987,4988,5687,5863,5922,6035,6077,6132,6135,6136,6161,6179,6183,6185,6189,6190,6300,6386,6387,6408,6427,6433,6435,6436,6437,6439,6441,6447,6952,7180,7522,8244,8481,8551,8841,8965,8966,8969,9086,9192,9304,10358,10360,10446,10451,10454,10515,10525,10751,10757,10911,11109,11129,11130,11370,12336,12339,12343,12344,12345,12365,12375,12380,12656,12662,12664,12695,12782,12785,12809,15545,18549,18552,19368,20813,21519,21589,22015,22088,23070,23072,23076]]],["+",[11,10,[[1,1,1,0,1,[[61,1,1,0,1]]],[5,3,3,1,4,[[207,3,3,1,4]]],[6,2,1,4,5,[[226,2,1,4,5]]],[7,1,1,5,6,[[234,1,1,5,6]]],[10,1,1,6,7,[[297,1,1,6,7]]],[12,2,2,7,9,[[343,1,1,7,8],[349,1,1,8,9]]],[37,1,1,9,10,[[924,1,1,9,10]]]],[1845,6386,6387,6408,6952,7180,8965,10515,10751,23072]]],["half",[102,85,[[1,17,10,0,10,[[73,2,1,0,1],[74,6,3,1,4],[75,2,2,4,6],[85,1,1,6,7],[86,6,3,7,10]]],[3,8,8,10,18,[[128,1,1,10,11],[131,2,2,11,13],[144,1,1,13,14],[148,1,1,14,15],[150,3,3,15,18]]],[4,3,3,18,21,[[155,2,2,18,20],[181,1,1,20,21]]],[5,25,21,21,42,[[187,1,1,21,22],[190,1,1,22,23],[194,2,1,23,24],[198,3,3,24,27],[199,6,4,27,31],[200,2,2,31,33],[204,1,1,33,34],[208,9,8,34,42]]],[8,1,1,42,43,[[249,1,1,42,43]]],[9,3,3,43,46,[[276,1,1,43,44],[284,1,1,44,45],[285,1,1,45,46]]],[10,8,6,46,52,[[293,2,1,46,47],[297,2,2,47,49],[300,1,1,49,50],[303,1,1,50,51],[306,2,1,51,52]]],[12,10,10,52,62,[[339,2,2,52,54],[342,3,3,54,57],[343,1,1,57,58],[349,1,1,58,59],[363,1,1,59,60],[364,2,2,60,62]]],[13,1,1,62,63,[[375,1,1,62,63]]],[15,13,12,63,75,[[415,5,5,63,68],[416,4,3,68,71],[424,3,3,71,74],[425,1,1,74,75]]],[16,3,3,75,78,[[430,2,2,75,77],[432,1,1,77,78]]],[25,4,3,78,81,[[817,1,1,78,79],[841,2,1,79,80],[844,1,1,80,81]]],[26,1,1,81,82,[[861,1,1,81,82]]],[37,5,3,82,85,[[924,5,3,82,85]]]],[2183,2205,2212,2218,2247,2251,2587,2605,2610,2614,4071,4162,4163,4591,4751,4829,4830,4831,4987,4988,5687,5863,5922,6035,6132,6135,6136,6161,6179,6183,6185,6189,6190,6300,6427,6433,6435,6436,6437,6439,6441,6447,7522,8244,8481,8551,8841,8966,8969,9086,9192,9304,10358,10360,10446,10451,10454,10525,10757,11109,11129,11130,11370,12336,12339,12343,12344,12345,12365,12375,12380,12656,12662,12664,12695,12782,12785,12809,20813,21519,21589,22088,23070,23072,23076]]],["middle",[1,1,[[9,1,1,0,1,[[276,1,1,0,1]]]],[8244]]],["midst",[7,7,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[5,1,1,2,3,[[196,1,1,2,3]]],[12,1,1,3,4,[[356,1,1,3,4]]],[18,1,1,4,5,[[579,1,1,4,5]]],[23,1,1,5,6,[[761,1,1,5,6]]],[26,1,1,6,7,[[858,1,1,6,7]]]],[2277,2637,6077,10911,15545,19368,22015]]],["part",[3,2,[[22,3,2,0,2,[[722,3,2,0,2]]]],[18549,18552]]],["parts",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9304]]]]},{"k":"H2678","v":[["*",[5,4,[[8,4,3,0,3,[[255,4,3,0,3]]],[11,1,1,3,4,[[321,1,1,3,4]]]],[7766,7767,7768,9780]]],["arrow",[4,3,[[8,3,2,0,2,[[255,3,2,0,2]]],[11,1,1,2,3,[[321,1,1,2,3]]]],[7766,7767,9780]]],["arrows",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7768]]]]},{"k":"H2679","v":[]},{"k":"H2680","v":[["Manahethites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10360]]]]},{"k":"H2681","v":[["court",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18316]]]]},{"k":"H2682","v":[["*",[21,20,[[3,1,1,0,1,[[127,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[17,2,2,3,5,[[443,1,1,3,4],[475,1,1,4,5]]],[18,6,6,5,11,[[514,1,1,5,6],[567,1,1,6,7],[580,1,1,7,8],[581,1,1,8,9],[606,1,1,9,10],[624,1,1,10,11]]],[19,1,1,11,12,[[654,1,1,11,12]]],[22,9,8,12,20,[[693,1,1,12,13],[713,1,1,13,14],[715,1,1,14,15],[718,4,3,15,18],[722,1,1,18,19],[729,1,1,19,20]]]],[4029,9346,10087,13041,13879,14452,15383,15564,15585,16138,16359,17194,17966,18327,18379,18426,18427,18428,18537,18685]]],["grass",[17,16,[[10,1,1,0,1,[[308,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[17,1,1,2,3,[[475,1,1,2,3]]],[18,6,6,3,9,[[514,1,1,3,4],[567,1,1,4,5],[580,1,1,5,6],[581,1,1,6,7],[606,1,1,7,8],[624,1,1,8,9]]],[22,8,7,9,16,[[713,1,1,9,10],[715,1,1,10,11],[718,4,3,11,14],[722,1,1,14,15],[729,1,1,15,16]]]],[9346,10087,13879,14452,15383,15564,15585,16138,16359,18327,18379,18426,18427,18428,18537,18685]]],["hay",[2,2,[[19,1,1,0,1,[[654,1,1,0,1]]],[22,1,1,1,2,[[693,1,1,1,2]]]],[17194,17966]]],["herb",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13041]]],["leeks",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4029]]]]},{"k":"H2683","v":[["bosom",[1,1,[[18,1,1,0,1,[[606,1,1,0,1]]]],[16139]]]]},{"k":"H2684","v":[["*",[2,2,[[15,1,1,0,1,[[417,1,1,0,1]]],[22,1,1,1,2,[[727,1,1,1,2]]]],[12395,18658]]],["arms",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18658]]],["lap",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12395]]]]},{"k":"H2685","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21773,21829]]],["hasty",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21773]]],["urgent",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21829]]]]},{"k":"H2686","v":[["*",[3,3,[[6,1,1,0,1,[[215,1,1,0,1]]],[17,1,1,1,2,[[456,1,1,1,2]]],[19,1,1,2,3,[[657,1,1,2,3]]]],[6634,13376,17278]]],["archers",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6634]]],["bands",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17278]]],["midst",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13376]]]]},{"k":"H2687","v":[["*",[2,2,[[19,1,1,0,1,[[647,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]]],[16971,20370]]],["gravel",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16971]]],["stones",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20370]]]]},{"k":"H2688","v":[["*",[2,2,[[0,1,1,0,1,[[13,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]]],[343,11589]]],["Hazazontamar",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11589]]],["Hazezontamar",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[343]]]]},{"k":"H2689","v":[["*",[29,27,[[3,5,5,0,5,[[126,4,4,0,4],[147,1,1,4,5]]],[11,3,2,5,7,[[323,2,1,5,6],[324,1,1,6,7]]],[12,5,5,7,12,[[350,1,1,7,8],[352,2,2,8,10],[353,2,2,10,12]]],[13,11,10,12,22,[[371,2,2,12,14],[379,2,2,14,16],[381,1,1,16,17],[386,1,1,17,18],[389,2,1,18,19],[395,3,3,19,22]]],[14,1,1,22,23,[[405,1,1,22,23]]],[15,2,2,23,25,[[424,2,2,23,25]]],[18,1,1,25,26,[[575,1,1,25,26]]],[27,1,1,26,27,[[866,1,1,26,27]]]],[3990,3996,3997,3998,4670,9843,9863,10768,10815,10819,10826,10862,11280,11281,11465,11467,11504,11615,11669,11817,11818,11819,12107,12659,12665,15496,22160]]],["trumpet",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22160]]],["trumpeters",[2,2,[[11,1,1,0,1,[[323,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]]],[9843,11819]]],["trumpets",[26,25,[[3,5,5,0,5,[[126,4,4,0,4],[147,1,1,4,5]]],[11,2,2,5,7,[[323,1,1,5,6],[324,1,1,6,7]]],[12,5,5,7,12,[[350,1,1,7,8],[352,2,2,8,10],[353,2,2,10,12]]],[13,10,9,12,21,[[371,2,2,12,14],[379,2,2,14,16],[381,1,1,16,17],[386,1,1,17,18],[389,2,1,18,19],[395,2,2,19,21]]],[14,1,1,21,22,[[405,1,1,21,22]]],[15,2,2,22,24,[[424,2,2,22,24]]],[18,1,1,24,25,[[575,1,1,24,25]]]],[3990,3996,3997,3998,4670,9843,9863,10768,10815,10819,10826,10862,11280,11281,11465,11467,11504,11615,11669,11817,11818,12107,12659,12665,15496]]]]},{"k":"H2690","v":[["*",[6,6,[[12,1,1,0,1,[[352,1,1,0,1]]],[13,5,5,1,6,[[371,2,2,1,3],[373,1,1,3,4],[379,1,1,4,5],[395,1,1,5,6]]]],[10815,11280,11281,11330,11467,11819]]],["blow",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10815]]],["sounded",[3,3,[[13,3,3,0,3,[[373,1,1,0,1],[379,1,1,1,2],[395,1,1,2,3]]]],[11330,11467,11819]]],["sounding",[1,1,[[13,1,1,0,1,[[371,1,1,0,1]]]],[11280]]],["trumpeters",[1,1,[[13,1,1,0,1,[[371,1,1,0,1]]]],[11281]]]]},{"k":"H2691","v":[["*",[190,163,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,29,20,1,21,[[57,1,1,1,2],[76,8,7,2,9],[84,3,2,9,11],[87,11,7,11,18],[88,2,1,18,19],[89,4,2,19,21]]],[2,3,3,21,24,[[95,2,2,21,23],[114,1,1,23,24]]],[3,6,4,24,28,[[119,3,2,24,26],[120,3,2,26,28]]],[5,32,31,28,59,[[199,2,2,28,30],[201,14,13,30,43],[202,1,1,43,44],[204,2,2,44,46],[205,12,12,46,58],[207,1,1,58,59]]],[9,1,1,59,60,[[283,1,1,59,60]]],[10,6,5,60,65,[[296,1,1,60,61],[297,4,3,61,64],[298,1,1,64,65]]],[11,3,3,65,68,[[332,1,1,65,66],[333,1,1,66,67],[335,1,1,67,68]]],[12,9,9,68,77,[[341,2,2,68,70],[343,1,1,70,71],[346,3,3,71,74],[360,1,1,74,75],[365,2,2,75,77]]],[13,7,7,77,84,[[370,1,1,77,78],[373,1,1,78,79],[386,1,1,79,80],[389,1,1,80,81],[390,1,1,81,82],[395,1,1,82,83],[399,1,1,83,84]]],[15,9,7,84,91,[[415,1,1,84,85],[420,2,1,85,86],[423,3,2,86,88],[424,2,2,88,90],[425,1,1,90,91]]],[16,8,7,91,98,[[426,1,1,91,92],[427,1,1,92,93],[429,1,1,93,94],[430,2,2,94,96],[431,3,2,96,98]]],[18,9,9,98,107,[[487,1,1,98,99],[542,1,1,99,100],[561,2,2,100,102],[569,1,1,102,103],[573,1,1,103,104],[577,1,1,104,105],[593,1,1,105,106],[612,1,1,106,107]]],[22,3,3,107,110,[[679,1,1,107,108],[720,1,1,108,109],[740,1,1,109,110]]],[23,15,14,110,124,[[763,1,1,110,111],[770,1,1,111,112],[776,3,3,112,115],[777,1,1,115,116],[780,2,2,116,118],[781,2,1,118,119],[782,3,3,119,122],[783,2,2,122,124]]],[25,48,38,124,162,[[809,2,2,124,126],[810,1,1,126,127],[811,3,3,127,130],[841,14,13,130,143],[842,1,1,143,144],[843,9,8,144,152],[844,1,1,152,153],[845,6,4,153,157],[846,1,1,157,158],[847,10,4,158,162]]],[37,1,1,162,163,[[913,1,1,162,163]]]],[674,1723,2281,2284,2285,2288,2289,2290,2291,2548,2549,2642,2648,2649,2650,2651,2653,2664,2704,2715,2740,2865,2875,3500,3718,3729,3769,3775,6177,6182,6234,6238,6243,6246,6247,6248,6249,6253,6256,6259,6261,6262,6264,6274,6317,6321,6327,6328,6329,6336,6337,6343,6344,6351,6352,6359,6360,6369,6393,8467,8932,8942,8943,8946,9049,10102,10124,10177,10417,10418,10510,10631,10637,10640,11011,11149,11155,11255,11331,11592,11661,11698,11807,11913,12352,12509,12613,12618,12652,12653,12678,12707,12735,12773,12780,12781,12797,12798,14049,14864,15261,15269,15424,15473,15512,15867,16177,17666,18491,18863,19421,19574,19733,19739,19743,19776,19852,19862,19895,19901,19908,19923,19937,19938,20611,20620,20629,20636,20637,20638,21491,21494,21496,21497,21500,21504,21505,21508,21509,21511,21514,21521,21524,21541,21553,21555,21558,21559,21560,21561,21562,21566,21577,21616,21618,21620,21626,21649,21656,21675,21676,21677,22919]]],["+",[7,5,[[1,2,2,0,2,[[84,1,1,0,1],[88,1,1,1,2]]],[23,1,1,2,3,[[783,1,1,2,3]]],[25,4,2,3,5,[[843,1,1,3,4],[847,3,1,4,5]]]],[2548,2704,19937,21561,21676]]],["court",[111,93,[[1,26,19,0,19,[[76,8,7,0,7],[84,2,2,7,9],[87,11,7,9,16],[88,1,1,16,17],[89,4,2,17,19]]],[2,2,2,19,21,[[95,2,2,19,21]]],[3,6,4,21,25,[[119,3,2,21,23],[120,3,2,23,25]]],[9,1,1,25,26,[[283,1,1,25,26]]],[10,6,5,26,31,[[296,1,1,26,27],[297,4,3,27,30],[298,1,1,30,31]]],[11,1,1,31,32,[[332,1,1,31,32]]],[13,5,5,32,37,[[370,1,1,32,33],[373,1,1,33,34],[386,1,1,34,35],[390,1,1,35,36],[395,1,1,36,37]]],[15,1,1,37,38,[[415,1,1,37,38]]],[16,8,7,38,45,[[426,1,1,38,39],[427,1,1,39,40],[429,1,1,40,41],[430,2,2,41,43],[431,3,2,43,45]]],[23,14,13,45,58,[[763,1,1,45,46],[770,1,1,46,47],[776,3,3,47,50],[777,1,1,50,51],[780,2,2,51,53],[781,2,1,53,54],[782,3,3,54,57],[783,1,1,57,58]]],[25,41,35,58,93,[[809,2,2,58,60],[811,3,3,60,63],[841,14,13,63,76],[842,1,1,76,77],[843,7,6,77,83],[844,1,1,83,84],[845,6,4,84,88],[846,1,1,88,89],[847,6,4,89,93]]]],[2281,2284,2285,2288,2289,2290,2291,2548,2549,2642,2648,2649,2650,2651,2653,2664,2704,2715,2740,2865,2875,3718,3729,3769,3775,8467,8932,8942,8943,8946,9049,10102,11255,11331,11592,11698,11807,12352,12707,12735,12773,12780,12781,12797,12798,19421,19574,19733,19739,19743,19776,19852,19862,19895,19901,19908,19923,19938,20611,20620,20636,20637,20638,21491,21494,21496,21497,21500,21504,21505,21508,21509,21511,21514,21521,21524,21541,21553,21555,21559,21560,21562,21566,21577,21616,21618,21620,21626,21649,21656,21675,21676,21677]]],["courts",[24,23,[[11,2,2,0,2,[[333,1,1,0,1],[335,1,1,1,2]]],[12,3,3,2,5,[[360,1,1,2,3],[365,2,2,3,5]]],[13,2,2,5,7,[[389,1,1,5,6],[399,1,1,6,7]]],[15,3,2,7,9,[[420,2,1,7,8],[425,1,1,8,9]]],[18,8,8,9,17,[[542,1,1,9,10],[561,2,2,10,12],[569,1,1,12,13],[573,1,1,13,14],[577,1,1,14,15],[593,1,1,15,16],[612,1,1,16,17]]],[22,2,2,17,19,[[679,1,1,17,18],[740,1,1,18,19]]],[25,3,3,19,22,[[810,1,1,19,20],[843,1,1,20,21],[847,1,1,21,22]]],[37,1,1,22,23,[[913,1,1,22,23]]]],[10124,10177,11011,11149,11155,11661,11913,12509,12678,14864,15261,15269,15424,15473,15512,15867,16177,17666,18863,20629,21558,21677,22919]]],["towns",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[674]]],["villages",[47,45,[[1,1,1,0,1,[[57,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[5,32,31,2,33,[[199,2,2,2,4],[201,14,13,4,17],[202,1,1,17,18],[204,2,2,18,20],[205,12,12,20,32],[207,1,1,32,33]]],[12,6,6,33,39,[[341,2,2,33,35],[343,1,1,35,36],[346,3,3,36,39]]],[15,5,4,39,43,[[423,3,2,39,41],[424,2,2,41,43]]],[18,1,1,43,44,[[487,1,1,43,44]]],[22,1,1,44,45,[[720,1,1,44,45]]]],[1723,3500,6177,6182,6234,6238,6243,6246,6247,6248,6249,6253,6256,6259,6261,6262,6264,6274,6317,6321,6327,6328,6329,6336,6337,6343,6344,6351,6352,6359,6360,6369,6393,10417,10418,10510,10631,10637,10640,12613,12618,12652,12653,14049,18491]]]]},{"k":"H2692","v":[["Hazaraddar",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4820]]]]},{"k":"H2693","v":[["Hazargaddah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6229]]]]},{"k":"H2694","v":[["Hazarhatticon",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21695]]]]},{"k":"H2695","v":[["*",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8688,10710]]],["Hezrai",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8688]]],["Hezro",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10710]]]]},{"k":"H2696","v":[["*",[18,17,[[0,2,2,0,2,[[45,2,2,0,2]]],[1,1,1,2,3,[[55,1,1,2,3]]],[3,2,2,3,5,[[142,2,2,3,5]]],[5,2,2,5,7,[[201,2,2,5,7]]],[7,2,2,7,9,[[235,2,2,7,9]]],[12,9,8,9,17,[[339,7,6,9,15],[341,1,1,15,16],[342,1,1,16,17]]]],[1395,1398,1669,4495,4510,6205,6227,7208,7209,10311,10315,10324,10327,10330,10331,10386,10431]]],["Hezron",[17,17,[[0,2,2,0,2,[[45,2,2,0,2]]],[1,1,1,2,3,[[55,1,1,2,3]]],[3,2,2,3,5,[[142,2,2,3,5]]],[5,2,2,5,7,[[201,2,2,5,7]]],[7,2,2,7,9,[[235,2,2,7,9]]],[12,8,8,9,17,[[339,6,6,9,15],[341,1,1,15,16],[342,1,1,16,17]]]],[1395,1398,1669,4495,4510,6205,6227,7208,7209,10311,10315,10324,10327,10330,10331,10386,10431]]],["Hezron's",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10330]]]]},{"k":"H2697","v":[["Hezronites",[2,2,[[3,2,2,0,2,[[142,2,2,0,2]]]],[4495,4510]]]]},{"k":"H2698","v":[["*",[6,5,[[3,5,4,0,4,[[127,2,1,0,1],[128,1,1,1,2],[149,2,2,2,4]]],[4,1,1,4,5,[[153,1,1,4,5]]]],[4059,4075,4777,4778,4893]]],["+",[2,2,[[3,2,2,0,2,[[128,1,1,0,1],[149,1,1,1,2]]]],[4075,4778]]],["Hazeroth",[4,3,[[3,3,2,0,2,[[127,2,1,0,1],[149,1,1,1,2]]],[4,1,1,2,3,[[153,1,1,2,3]]]],[4059,4777,4893]]]]},{"k":"H2699","v":[["Hazerim",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4961]]]]},{"k":"H2700","v":[["Hazarmaveth",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[260,10272]]]]},{"k":"H2701","v":[["Hazarsusah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6326]]]]},{"k":"H2702","v":[["Hazarsusim",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10416]]]]},{"k":"H2703","v":[["Hazarenan",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21696]]]]},{"k":"H2704","v":[["*",[3,3,[[3,2,2,0,2,[[150,2,2,0,2]]],[25,1,1,2,3,[[849,1,1,2,3]]]],[4825,4826,21703]]],["+",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4826]]],["Hazarenan",[2,2,[[3,1,1,0,1,[[150,1,1,0,1]]],[25,1,1,1,2,[[849,1,1,1,2]]]],[4825,21703]]]]},{"k":"H2705","v":[["Hazarshual",[4,4,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]],[12,1,1,2,3,[[341,1,1,2,3]]],[15,1,1,3,4,[[423,1,1,3,4]]]],[6230,6324,10413,12615]]]]},{"k":"H2706","v":[["*",[127,124,[[0,3,2,0,2,[[46,3,2,0,2]]],[1,8,8,2,10,[[54,1,1,2,3],[61,1,1,3,4],[64,2,2,4,6],[67,2,2,6,8],[78,1,1,8,9],[79,1,1,9,10]]],[2,11,9,10,19,[[95,2,2,10,12],[96,1,1,12,13],[99,6,4,13,17],[113,1,1,17,18],[115,1,1,18,19]]],[3,4,4,19,23,[[134,3,3,19,22],[146,1,1,22,23]]],[4,21,21,23,44,[[156,7,7,23,30],[157,2,2,30,32],[158,4,4,32,36],[159,1,1,36,37],[163,1,1,37,38],[164,1,1,38,39],[168,1,1,39,40],[169,1,1,40,41],[178,2,2,41,43],[179,1,1,43,44]]],[5,1,1,44,45,[[210,1,1,44,45]]],[6,1,1,45,46,[[221,1,1,45,46]]],[8,1,1,46,47,[[265,1,1,46,47]]],[10,4,4,47,51,[[293,1,1,47,48],[298,2,2,48,50],[299,1,1,50,51]]],[11,2,2,51,53,[[329,2,2,51,53]]],[12,3,3,53,56,[[353,1,1,53,54],[359,1,1,54,55],[366,1,1,55,56]]],[13,5,5,56,61,[[373,1,1,56,57],[385,1,1,57,58],[399,1,1,58,59],[400,1,1,59,60],[401,1,1,60,61]]],[14,2,2,61,63,[[409,2,2,61,63]]],[15,4,4,63,67,[[413,1,1,63,64],[421,2,2,64,66],[422,1,1,66,67]]],[17,7,7,67,74,[[449,2,2,67,69],[458,2,2,69,71],[461,1,1,71,72],[463,1,1,72,73],[473,1,1,73,74]]],[18,30,30,74,104,[[479,1,1,74,75],[527,1,1,75,76],[558,1,1,76,77],[571,1,1,77,78],[576,1,1,78,79],[582,2,2,79,81],[596,21,21,81,102],[624,1,1,102,103],[625,1,1,103,104]]],[19,3,3,104,107,[[635,1,1,104,105],[657,1,1,105,106],[658,1,1,106,107]]],[22,2,2,107,109,[[683,1,1,107,108],[702,1,1,108,109]]],[23,3,3,109,112,[[749,1,1,109,110],[775,1,1,110,111],[776,1,1,111,112]]],[25,6,6,112,118,[[812,1,1,112,113],[817,1,1,113,114],[821,2,2,114,116],[837,1,1,116,117],[846,1,1,117,118]]],[29,1,1,118,119,[[880,1,1,118,119]]],[32,1,1,119,120,[[899,1,1,119,120]]],[35,1,1,120,121,[[907,1,1,120,121]]],[37,1,1,121,122,[[911,1,1,121,122]]],[38,2,2,122,124,[[927,1,1,122,123],[928,1,1,123,124]]]],[1442,1446,1646,1840,1945,1946,2015,2019,2364,2403,2867,2871,2913,2988,2990,2991,2992,3455,3570,4265,4268,4276,4664,5005,5009,5010,5012,5018,5044,5049,5054,5084,5087,5103,5106,5110,5122,5240,5241,5354,5383,5582,5583,5595,6501,6868,8003,8830,9043,9046,9055,9998,10020,10837,10977,11183,11341,11586,11916,11964,11991,12183,12184,12303,12524,12525,12578,13186,13194,13431,13433,13477,13530,13803,13952,14684,15221,15451,15506,15616,15651,15903,15906,15910,15921,15924,15931,15946,15952,15962,15966,15969,15978,15981,16010,16015,16016,16022,16033,16043,16053,16069,16370,16377,16631,17259,17299,17753,18100,19080,19727,19742,20667,20789,20913,20920,21386,21644,22383,22675,22807,22884,23127,23142]]],["+",[3,3,[[17,1,1,0,1,[[458,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[38,1,1,2,3,[[927,1,1,2,3]]]],[13431,16016,23127]]],["appointed",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13433]]],["bounds",[2,2,[[17,2,2,0,2,[[449,1,1,0,1],[461,1,1,1,2]]]],[13186,13477]]],["commandments",[1,1,[[29,1,1,0,1,[[880,1,1,0,1]]]],[22383]]],["convenient",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17259]]],["custom",[2,2,[[6,1,1,0,1,[[221,1,1,0,1]]],[23,1,1,1,2,[[776,1,1,1,2]]]],[6868,19742]]],["decree",[7,7,[[17,1,1,0,1,[[463,1,1,0,1]]],[18,2,2,1,3,[[479,1,1,1,2],[625,1,1,2,3]]],[19,1,1,3,4,[[635,1,1,3,4]]],[23,1,1,4,5,[[749,1,1,4,5]]],[32,1,1,5,6,[[899,1,1,5,6]]],[35,1,1,6,7,[[907,1,1,6,7]]]],[13530,13952,16377,16631,19080,22675,22807]]],["decreed",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13803]]],["due",[4,2,[[2,4,2,0,2,[[99,4,2,0,2]]]],[2990,2991]]],["law",[4,4,[[0,1,1,0,1,[[46,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[18,2,2,2,4,[[571,1,1,2,3],[582,1,1,3,4]]]],[1446,10837,15451,15616]]],["measure",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17753]]],["ordinance",[6,6,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[134,1,1,1,2]]],[13,1,1,2,3,[[401,1,1,2,3]]],[18,1,1,3,4,[[576,1,1,3,4]]],[22,1,1,4,5,[[702,1,1,4,5]]],[25,1,1,5,6,[[846,1,1,5,6]]]],[1840,4265,11991,15506,18100,21644]]],["ordinances",[2,2,[[1,1,1,0,1,[[67,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[2019,19727]]],["ordinary",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20789]]],["portion",[3,2,[[0,2,1,0,1,[[46,2,1,0,1]]],[19,1,1,1,2,[[658,1,1,1,2]]]],[1442,17299]]],["statute",[13,13,[[1,3,3,0,3,[[64,1,1,0,1],[78,1,1,1,2],[79,1,1,2,3]]],[2,5,5,3,8,[[95,2,2,3,5],[96,1,1,5,6],[99,1,1,6,7],[113,1,1,7,8]]],[3,2,2,8,10,[[134,2,2,8,10]]],[5,1,1,10,11,[[210,1,1,10,11]]],[8,1,1,11,12,[[265,1,1,11,12]]],[18,1,1,12,13,[[558,1,1,12,13]]]],[1945,2364,2403,2867,2871,2913,2992,3455,4268,4276,6501,8003,15221]]],["statutes",[73,73,[[1,2,2,0,2,[[64,1,1,0,1],[67,1,1,1,2]]],[2,2,2,2,4,[[99,1,1,2,3],[115,1,1,3,4]]],[3,1,1,4,5,[[146,1,1,4,5]]],[4,21,21,5,26,[[156,7,7,5,12],[157,2,2,12,14],[158,4,4,14,18],[159,1,1,18,19],[163,1,1,19,20],[164,1,1,20,21],[168,1,1,21,22],[169,1,1,22,23],[178,2,2,23,25],[179,1,1,25,26]]],[10,4,4,26,30,[[293,1,1,26,27],[298,2,2,27,29],[299,1,1,29,30]]],[11,2,2,30,32,[[329,2,2,30,32]]],[12,2,2,32,34,[[359,1,1,32,33],[366,1,1,33,34]]],[13,4,4,34,38,[[373,1,1,34,35],[385,1,1,35,36],[399,1,1,36,37],[400,1,1,37,38]]],[14,2,2,38,40,[[409,2,2,38,40]]],[15,4,4,40,44,[[413,1,1,40,41],[421,2,2,41,43],[422,1,1,43,44]]],[18,23,23,44,67,[[527,1,1,44,45],[582,1,1,45,46],[596,20,20,46,66],[624,1,1,66,67]]],[25,4,4,67,71,[[812,1,1,67,68],[821,2,2,68,70],[837,1,1,70,71]]],[37,1,1,71,72,[[911,1,1,71,72]]],[38,1,1,72,73,[[928,1,1,72,73]]]],[1946,2015,2988,3570,4664,5005,5009,5010,5012,5018,5044,5049,5054,5084,5087,5103,5106,5110,5122,5240,5241,5354,5383,5582,5583,5595,8830,9043,9046,9055,9998,10020,10977,11183,11341,11586,11916,11964,12183,12184,12303,12524,12525,12578,14684,15651,15903,15906,15910,15921,15924,15931,15946,15952,15962,15966,15969,15978,15981,16010,16015,16022,16033,16043,16053,16069,16370,20667,20913,20920,21386,22884,23142]]],["task",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1646]]],["time",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13194]]]]},{"k":"H2707","v":[["*",[4,4,[[10,1,1,0,1,[[296,1,1,0,1]]],[17,1,1,1,2,[[448,1,1,1,2]]],[25,2,2,2,4,[[809,1,1,2,3],[824,1,1,3,4]]]],[8931,13180,20614,21021]]],["pourtrayed",[2,2,[[25,2,2,0,2,[[809,1,1,0,1],[824,1,1,1,2]]]],[20614,21021]]],["print",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13180]]],["work",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8931]]]]},{"k":"H2708","v":[["*",[104,100,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,7,7,1,8,[[61,3,3,1,4],[62,1,1,4,5],[76,1,1,5,6],[77,1,1,6,7],[78,1,1,7,8]]],[2,26,26,8,34,[[92,1,1,8,9],[96,1,1,9,10],[99,1,1,10,11],[105,3,3,11,14],[106,1,1,14,15],[107,5,5,15,20],[108,2,2,20,22],[109,3,3,22,25],[112,4,4,25,29],[113,1,1,29,30],[114,1,1,30,31],[115,3,3,31,34]]],[3,14,12,34,46,[[125,4,3,34,37],[126,1,1,37,38],[131,2,1,38,39],[134,1,1,39,40],[135,3,3,40,43],[143,1,1,43,44],[147,1,1,44,45],[151,1,1,45,46]]],[4,8,8,46,54,[[158,1,1,46,47],[160,1,1,47,48],[162,1,1,48,49],[163,1,1,49,50],[180,2,2,50,52],[182,2,2,52,54]]],[9,1,1,54,55,[[288,1,1,54,55]]],[10,8,8,55,63,[[292,1,1,55,56],[293,1,1,56,57],[296,1,1,57,58],[299,1,1,58,59],[301,4,4,59,63]]],[11,5,5,63,68,[[329,4,4,63,67],[335,1,1,67,68]]],[13,1,1,68,69,[[373,1,1,68,69]]],[17,1,1,69,70,[[473,1,1,69,70]]],[18,3,3,70,73,[[495,1,1,70,71],[566,1,1,71,72],[596,1,1,72,73]]],[23,6,6,73,79,[[749,1,1,73,74],[754,1,1,74,75],[775,1,1,75,76],[777,1,1,76,77],[788,2,2,77,79]]],[25,22,20,79,99,[[806,3,2,79,81],[812,1,1,81,82],[819,4,4,82,86],[821,6,6,86,92],[834,1,1,92,93],[838,1,1,93,94],[844,3,2,94,96],[845,2,2,96,98],[847,1,1,98,99]]],[32,1,1,99,100,[[898,1,1,99,100]]]],[697,1830,1833,1859,1877,2293,2336,2345,2795,2915,2986,3230,3232,3235,3242,3254,3255,3256,3277,3281,3300,3318,3326,3340,3341,3416,3423,3433,3443,3449,3487,3527,3539,3567,3968,3977,3979,3996,4168,4280,4291,4299,4310,4565,4685,4874,5088,5148,5199,5209,5626,5656,5718,5724,8625,8773,8819,8908,9057,9119,9141,9142,9146,9991,9996,10002,10017,10168,11343,13826,14140,15357,15914,19082,19204,19726,19800,20020,20033,20552,20553,20675,20858,20866,20868,20870,20906,20908,20911,20914,20916,20919,21295,21421,21583,21590,21604,21623,21669,22664]]],["+",[1,1,[[2,1,1,0,1,[[107,1,1,0,1]]]],[3281]]],["appointed",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19082]]],["customs",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19204]]],["manners",[1,1,[[2,1,1,0,1,[[109,1,1,0,1]]]],[3341]]],["ordinance",[12,10,[[1,4,4,0,4,[[61,3,3,0,3],[62,1,1,3,4]]],[3,7,5,4,9,[[125,2,1,4,5],[126,1,1,5,6],[131,2,1,6,7],[135,1,1,7,8],[147,1,1,8,9]]],[25,1,1,9,10,[[847,1,1,9,10]]]],[1830,1833,1859,1877,3979,3996,4168,4291,4685,21669]]],["ordinances",[10,9,[[2,2,2,0,2,[[107,2,2,0,2]]],[3,1,1,2,3,[[125,1,1,2,3]]],[17,1,1,3,4,[[473,1,1,3,4]]],[23,2,2,4,6,[[775,1,1,4,5],[777,1,1,5,6]]],[25,4,3,6,9,[[844,3,2,6,8],[845,1,1,8,9]]]],[3254,3255,3977,13826,19726,19800,21583,21590,21604]]],["rites",[1,1,[[3,1,1,0,1,[[125,1,1,0,1]]]],[3968]]],["statute",[20,20,[[1,3,3,0,3,[[76,1,1,0,1],[77,1,1,1,2],[78,1,1,2,3]]],[2,12,12,3,15,[[92,1,1,3,4],[96,1,1,4,5],[99,1,1,5,6],[105,3,3,6,9],[106,1,1,9,10],[112,4,4,10,14],[113,1,1,14,15]]],[3,5,5,15,20,[[134,1,1,15,16],[135,2,2,16,18],[143,1,1,18,19],[151,1,1,19,20]]]],[2293,2336,2345,2795,2915,2986,3230,3232,3235,3242,3416,3423,3433,3443,3449,4280,4299,4310,4565,4874]]],["statutes",[57,56,[[0,1,1,0,1,[[25,1,1,0,1]]],[2,10,10,1,11,[[107,2,2,1,3],[108,2,2,3,5],[109,2,2,5,7],[114,1,1,7,8],[115,3,3,8,11]]],[4,8,8,11,19,[[158,1,1,11,12],[160,1,1,12,13],[162,1,1,13,14],[163,1,1,14,15],[180,2,2,15,17],[182,2,2,17,19]]],[9,1,1,19,20,[[288,1,1,19,20]]],[10,8,8,20,28,[[292,1,1,20,21],[293,1,1,21,22],[296,1,1,22,23],[299,1,1,23,24],[301,4,4,24,28]]],[11,5,5,28,33,[[329,4,4,28,32],[335,1,1,32,33]]],[13,1,1,33,34,[[373,1,1,33,34]]],[18,3,3,34,37,[[495,1,1,34,35],[566,1,1,35,36],[596,1,1,36,37]]],[23,2,2,37,39,[[788,2,2,37,39]]],[25,17,16,39,55,[[806,3,2,39,41],[812,1,1,41,42],[819,4,4,42,46],[821,6,6,46,52],[834,1,1,52,53],[838,1,1,53,54],[845,1,1,54,55]]],[32,1,1,55,56,[[898,1,1,55,56]]]],[697,3256,3277,3300,3318,3326,3340,3487,3527,3539,3567,5088,5148,5199,5209,5626,5656,5718,5724,8625,8773,8819,8908,9057,9119,9141,9142,9146,9991,9996,10002,10017,10168,11343,14140,15357,15914,20020,20033,20552,20553,20675,20858,20866,20868,20870,20906,20908,20911,20914,20916,20919,21295,21421,21623,22664]]]]},{"k":"H2709","v":[["Hakupha",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12078,12473]]]]},{"k":"H2710","v":[["*",[19,19,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[6,2,2,3,5,[[215,2,2,3,5]]],[17,1,1,5,6,[[454,1,1,5,6]]],[18,2,2,6,8,[[537,1,1,6,7],[585,1,1,7,8]]],[19,4,4,8,12,[[635,3,3,8,11],[658,1,1,11,12]]],[22,5,5,12,17,[[688,1,1,12,13],[700,1,1,13,14],[708,1,1,14,15],[711,1,1,15,16],[727,1,1,16,17]]],[25,2,2,17,19,[[805,1,1,17,18],[824,1,1,18,19]]]],[1483,4358,5831,6632,6637,13320,14814,15750,16617,16629,16631,17289,17851,18068,18225,18301,18652,20530,21021]]],["appointed",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16631]]],["decree",[2,2,[[19,1,1,0,1,[[635,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[16617,17851]]],["governors",[2,2,[[6,2,2,0,2,[[215,2,2,0,2]]]],[6632,6637]]],["graven",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18652]]],["graveth",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18068]]],["law",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17289]]],["lawgiver",[6,6,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[18,2,2,3,5,[[537,1,1,3,4],[585,1,1,4,5]]],[22,1,1,5,6,[[711,1,1,5,6]]]],[1483,4358,5831,14814,15750,18301]]],["note",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18225]]],["pourtray",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20530]]],["pourtrayed",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21021]]],["printed",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13320]]],["set",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16629]]]]},{"k":"H2711","v":[["*",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[6638,17851]]],["decrees",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17851]]],["thoughts",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6638]]]]},{"k":"H2712","v":[["*",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]]],[6355,10529]]],["Hukkok",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6355]]],["Hukok",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10529]]]]},{"k":"H2713","v":[["*",[27,26,[[4,1,1,0,1,[[165,1,1,0,1]]],[6,2,1,1,2,[[228,2,1,1,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[9,1,1,3,4,[[276,1,1,3,4]]],[10,1,1,4,5,[[297,1,1,4,5]]],[12,1,1,5,6,[[356,1,1,5,6]]],[13,1,1,6,7,[[370,1,1,6,7]]],[17,6,6,7,13,[[440,1,1,7,8],[448,1,1,8,9],[463,2,2,9,11],[464,1,1,11,12],[467,1,1,12,13]]],[18,3,3,13,16,[[521,1,1,13,14],[616,2,2,14,16]]],[19,4,4,16,20,[[645,1,1,16,17],[650,1,1,17,18],[652,1,1,18,19],[655,1,1,19,20]]],[20,1,1,20,21,[[670,1,1,20,21]]],[23,3,3,21,24,[[761,1,1,21,22],[775,1,1,22,23],[790,1,1,23,24]]],[24,1,1,24,25,[[799,1,1,24,25]]],[25,1,1,25,26,[[840,1,1,25,26]]]],[5286,6995,7742,8243,8981,10910,11264,12978,13162,13507,13531,13548,13639,14592,16240,16262,16918,17074,17115,17207,17532,19367,19728,20068,20394,21462]]],["+",[5,5,[[6,1,1,0,1,[[228,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[9,1,1,2,3,[[276,1,1,2,3]]],[17,2,2,3,5,[[448,1,1,3,4],[463,1,1,4,5]]]],[6995,7742,8243,13162,13507]]],["Search",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16262]]],["out",[9,9,[[10,1,1,0,1,[[297,1,1,0,1]]],[13,1,1,1,2,[[370,1,1,1,2]]],[17,3,3,2,5,[[463,1,1,2,3],[464,1,1,3,4],[467,1,1,4,5]]],[19,2,2,5,7,[[652,1,1,5,6],[655,1,1,6,7]]],[20,1,1,7,8,[[670,1,1,7,8]]],[23,1,1,8,9,[[775,1,1,8,9]]]],[8981,11264,13531,13548,13639,17115,17207,17532,19728]]],["search",[6,6,[[4,1,1,0,1,[[165,1,1,0,1]]],[6,1,1,1,2,[[228,1,1,1,2]]],[12,1,1,2,3,[[356,1,1,2,3]]],[18,1,1,3,4,[[521,1,1,3,4]]],[23,1,1,4,5,[[761,1,1,4,5]]],[25,1,1,5,6,[[840,1,1,5,6]]]],[5286,6995,10910,14592,19367,21462]]],["searched",[3,3,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]],[23,1,1,2,3,[[790,1,1,2,3]]]],[12978,16240,20068]]],["searcheth",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16918]]],["seek",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17074]]],["try",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20394]]]]},{"k":"H2714","v":[["*",[12,12,[[6,1,1,0,1,[[215,1,1,0,1]]],[17,7,7,1,8,[[440,1,1,1,2],[443,1,1,2,3],[444,1,1,3,4],[446,1,1,4,5],[469,1,1,5,6],[471,1,1,6,7],[473,1,1,7,8]]],[18,1,1,8,9,[[622,1,1,8,9]]],[19,2,2,9,11,[[652,2,2,9,11]]],[22,1,1,11,12,[[718,1,1,11,12]]]],[6639,12960,13037,13061,13115,13707,13762,13809,16323,17116,17140,18448]]],["+",[3,3,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,1,1,1,2,[[622,1,1,1,2]]],[19,1,1,2,3,[[652,1,1,2,3]]]],[12960,16323,17116]]],["number",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13707]]],["out",[2,2,[[17,2,2,0,2,[[444,1,1,0,1],[471,1,1,1,2]]]],[13061,13762]]],["search",[3,3,[[17,2,2,0,2,[[443,1,1,0,1],[473,1,1,1,2]]],[19,1,1,2,3,[[652,1,1,2,3]]]],[13037,13809,17140]]],["searching",[2,2,[[17,1,1,0,1,[[446,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[13115,18448]]],["searchings",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6639]]]]},{"k":"H2715","v":[["nobles",[13,13,[[10,2,2,0,2,[[311,2,2,0,2]]],[15,7,7,2,9,[[414,1,1,2,3],[416,2,2,3,5],[417,1,1,5,6],[418,1,1,6,7],[419,1,1,7,8],[425,1,1,8,9]]],[20,1,1,9,10,[[668,1,1,9,10]]],[22,1,1,10,11,[[712,1,1,10,11]]],[23,2,2,11,13,[[771,1,1,11,12],[783,1,1,12,13]]]],[9459,9462,12323,12373,12378,12389,12418,12425,12688,17510,18315,19616,19929]]]]},{"k":"H2716","v":[["dung",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]]],[10051,18342]]]]},{"k":"H2717","v":[["*",[40,36,[[0,2,1,0,1,[[7,2,1,0,1]]],[6,3,3,1,4,[[226,3,3,1,4]]],[11,4,3,4,7,[[315,2,1,4,5],[331,2,2,5,7]]],[17,1,1,7,8,[[449,1,1,7,8]]],[18,1,1,8,9,[[583,1,1,8,9]]],[22,12,11,9,20,[[697,2,2,9,11],[712,1,1,11,12],[715,2,2,12,14],[720,1,1,14,15],[722,1,1,15,16],[727,1,1,16,17],[728,1,1,17,18],[729,1,1,18,19],[738,2,1,19,20]]],[23,5,5,20,25,[[746,1,1,20,21],[770,1,1,21,22],[794,2,2,22,24],[795,1,1,24,25]]],[25,8,7,25,32,[[807,2,1,25,26],[813,1,1,26,27],[820,1,1,27,28],[827,2,2,28,30],[830,1,1,30,31],[831,1,1,31,32]]],[27,1,1,32,33,[[874,1,1,32,33]]],[29,1,1,33,34,[[885,1,1,33,34]]],[33,1,1,34,35,[[900,1,1,34,35]]],[35,1,1,35,36,[[908,1,1,35,36]]]],[196,6956,6957,6973,9599,10078,10085,13192,15660,18009,18010,18313,18370,18377,18495,18560,18653,18664,18683,18833,18977,19581,20187,20193,20248,20569,20700,20888,21102,21119,21195,21211,22281,22473,22688,22826]]],["+",[7,5,[[11,2,1,0,1,[[315,2,1,0,1]]],[22,3,2,1,3,[[715,1,1,1,2],[738,2,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]],[35,1,1,4,5,[[908,1,1,4,5]]]],[9599,18370,18833,20248,22826]]],["Slay",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20193]]],["decayeth",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13192]]],["desolate",[3,3,[[23,2,2,0,2,[[746,1,1,0,1],[770,1,1,1,2]]],[25,1,1,2,3,[[827,1,1,2,3]]]],[18977,19581,21119]]],["destroyed",[1,1,[[11,1,1,0,1,[[331,1,1,0,1]]]],[10078]]],["destroyer",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6973]]],["dried",[3,3,[[6,2,2,0,2,[[226,2,2,0,2]]],[22,1,1,2,3,[[729,1,1,2,3]]]],[6956,6957,18683]]],["dry",[2,2,[[0,1,1,0,1,[[7,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[196,18560]]],["up",[8,8,[[0,1,1,0,1,[[7,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[18,1,1,2,3,[[583,1,1,2,3]]],[22,3,3,3,6,[[697,1,1,3,4],[715,1,1,4,5],[728,1,1,5,6]]],[27,1,1,6,7,[[874,1,1,6,7]]],[33,1,1,7,8,[[900,1,1,7,8]]]],[196,10085,15660,18010,18377,18664,22281,22688]]],["waste",[11,10,[[22,3,3,0,3,[[712,1,1,0,1],[720,1,1,1,2],[727,1,1,2,3]]],[23,1,1,3,4,[[794,1,1,3,4]]],[25,6,5,4,9,[[807,2,1,4,5],[813,1,1,5,6],[820,1,1,6,7],[827,1,1,7,8],[830,1,1,8,9]]],[29,1,1,9,10,[[885,1,1,9,10]]]],[18313,18495,18653,20187,20569,20700,20888,21102,21195,22473]]],["wasted",[2,2,[[22,1,1,0,1,[[697,1,1,0,1]]],[25,1,1,1,2,[[831,1,1,1,2]]]],[18009,21211]]]]},{"k":"H2718","v":[["destroyed",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12125]]]]},{"k":"H2719","v":[["*",[413,372,[[0,6,6,0,6,[[2,1,1,0,1],[26,1,1,1,2],[30,1,1,2,3],[33,2,2,3,5],[47,1,1,5,6]]],[1,8,8,6,14,[[54,2,2,6,8],[64,1,1,8,9],[66,1,1,9,10],[67,1,1,10,11],[69,1,1,11,12],[71,1,1,12,13],[81,1,1,13,14]]],[2,7,7,14,21,[[115,7,7,14,21]]],[3,9,9,21,30,[[130,2,2,21,23],[135,1,1,23,24],[136,1,1,24,25],[137,1,1,25,26],[138,3,3,26,29],[147,1,1,29,30]]],[4,8,7,30,37,[[165,2,1,30,31],[172,1,1,31,32],[180,1,1,32,33],[184,3,3,33,36],[185,1,1,36,37]]],[5,20,19,37,56,[[191,3,3,37,40],[192,1,1,40,41],[194,2,1,41,42],[196,7,7,42,49],[197,4,4,49,53],[199,1,1,53,54],[205,1,1,54,55],[210,1,1,55,56]]],[6,23,23,56,79,[[211,2,2,56,58],[213,3,3,58,61],[214,2,2,61,63],[217,3,3,63,66],[218,2,2,66,68],[219,1,1,68,69],[228,1,1,69,70],[230,8,8,70,78],[231,1,1,78,79]]],[8,24,19,79,98,[[248,2,2,79,81],[249,1,1,81,82],[250,2,2,82,84],[252,5,5,84,89],[253,1,1,89,90],[256,3,2,90,92],[257,4,3,92,95],[260,3,1,95,96],[266,3,2,96,98]]],[9,15,14,98,112,[[267,2,2,98,100],[268,2,2,100,102],[269,1,1,102,103],[277,1,1,103,104],[278,3,2,104,106],[281,1,1,106,107],[284,1,1,107,108],[286,2,2,108,110],[289,1,1,110,111],[290,1,1,111,112]]],[10,11,9,112,121,[[291,1,1,112,113],[292,2,2,113,115],[293,2,1,115,116],[308,1,1,116,117],[309,5,4,117,121]]],[11,8,8,121,129,[[315,1,1,121,122],[318,1,1,122,123],[320,1,1,123,124],[322,1,1,124,125],[323,2,2,125,127],[331,2,2,127,129]]],[12,11,8,129,137,[[342,1,1,129,130],[347,3,2,130,132],[358,7,5,132,137]]],[13,9,9,137,146,[[386,1,1,137,138],[387,1,1,138,139],[389,2,2,139,141],[395,1,1,141,142],[398,1,1,142,143],[400,1,1,143,144],[402,2,2,144,146]]],[14,1,1,146,147,[[411,1,1,146,147]]],[15,2,2,147,149,[[416,2,2,147,149]]],[16,1,1,149,150,[[434,1,1,149,150]]],[17,11,10,150,160,[[436,2,2,150,152],[440,2,2,152,154],[450,1,1,154,155],[454,2,1,155,156],[462,1,1,156,157],[474,1,1,157,158],[475,1,1,158,159],[476,1,1,159,160]]],[18,18,18,160,178,[[484,1,1,160,161],[494,1,1,161,162],[499,1,1,162,163],[514,2,2,163,165],[521,2,2,165,167],[522,1,1,167,168],[534,1,1,168,169],[536,1,1,169,170],[540,1,1,170,171],[541,1,1,171,172],[553,1,1,172,173],[555,2,2,173,175],[566,1,1,175,176],[621,1,1,176,177],[626,1,1,177,178]]],[19,4,4,178,182,[[632,1,1,178,179],[639,1,1,179,180],[652,1,1,180,181],[657,1,1,181,182]]],[21,2,1,182,183,[[673,2,1,182,183]]],[22,22,18,183,201,[[679,1,1,183,184],[680,2,1,184,185],[681,1,1,185,186],[691,1,1,186,187],[692,1,1,187,188],[699,2,1,188,189],[700,1,1,189,190],[705,1,1,190,191],[709,3,1,191,192],[712,2,2,192,194],[715,2,2,194,196],[719,1,1,196,197],[727,1,1,197,198],[729,1,1,198,199],[743,1,1,199,200],[744,1,1,200,201]]],[23,71,62,201,263,[[746,1,1,201,202],[748,1,1,202,203],[749,2,2,203,205],[750,1,1,205,206],[753,1,1,206,207],[755,1,1,207,208],[756,1,1,208,209],[758,6,5,209,214],[759,4,3,214,217],[760,1,1,217,218],[762,2,1,218,219],[763,1,1,219,220],[764,2,1,220,221],[765,3,2,221,223],[768,1,1,223,224],[769,4,4,224,228],[770,1,1,228,229],[771,2,2,229,231],[773,2,2,231,233],[775,1,1,233,234],[776,2,2,234,236],[777,1,1,236,237],[778,2,2,237,239],[782,1,1,239,240],[783,1,1,240,241],[785,1,1,241,242],[786,3,3,242,245],[787,2,1,245,246],[788,6,5,246,251],[790,3,3,251,254],[791,1,1,254,255],[792,2,2,255,257],[793,1,1,257,258],[794,6,4,258,262],[795,1,1,262,263]]],[24,4,4,263,267,[[797,1,1,263,264],[798,1,1,264,265],[800,1,1,265,266],[801,1,1,266,267]]],[25,91,79,267,346,[[806,6,4,267,271],[807,4,4,271,275],[808,2,1,275,276],[812,3,2,276,278],[813,2,2,278,280],[815,3,2,280,282],[817,1,1,282,283],[818,1,1,283,284],[822,15,11,284,295],[824,3,3,295,298],[825,1,1,298,299],[826,1,1,299,300],[827,4,4,300,304],[829,2,2,304,306],[830,1,1,306,307],[831,9,9,307,316],[832,2,2,316,318],[833,17,16,318,334],[834,7,6,334,340],[836,2,2,340,342],[839,4,3,342,345],[840,1,1,345,346]]],[26,1,1,346,347,[[860,1,1,346,347]]],[27,5,5,347,352,[[862,1,1,347,348],[863,1,1,348,349],[868,1,1,349,350],[872,1,1,350,351],[874,1,1,351,352]]],[28,1,1,352,353,[[878,1,1,352,353]]],[29,8,8,353,361,[[879,1,1,353,354],[882,1,1,354,355],[885,3,3,355,358],[887,3,3,358,361]]],[32,4,3,361,364,[[896,2,1,361,362],[897,1,1,362,363],[898,1,1,363,364]]],[33,3,3,364,367,[[901,1,1,364,365],[902,2,2,365,367]]],[35,1,1,367,368,[[907,1,1,367,368]]],[36,1,1,368,369,[[910,1,1,368,369]]],[37,3,3,369,372,[[919,1,1,369,370],[921,1,1,370,371],[923,1,1,371,372]]]],[79,767,899,1005,1006,1473,1635,1653,1929,1996,2003,2076,2137,2465,3530,3531,3532,3549,3557,3560,3561,4111,4151,4305,4329,4364,4398,4404,4406,4672,5287,5440,5633,5783,5799,5800,5839,5936,5937,5947,5970,6026,6075,6092,6094,6096,6099,6101,6103,6117,6118,6119,6121,6176,6368,6488,6517,6534,6584,6589,6590,6614,6615,6708,6714,6716,6729,6739,6808,7020,7056,7069,7071,7079,7089,7091,7100,7102,7112,7504,7507,7528,7568,7593,7657,7663,7665,7668,7669,7680,7780,7781,7797,7800,7806,7874,8013,8014,8034,8044,8065,8075,8110,8284,8295,8296,8403,8486,8562,8564,8663,8701,8768,8778,8802,8840,9369,9388,9397,9401,9404,9602,9696,9739,9818,9844,9849,10068,10098,10446,10663,10664,10939,10946,10950,10961,10964,11596,11628,11670,11677,11800,11896,11939,12010,12013,12244,12372,12377,12839,12884,12886,12966,12971,13225,13326,13495,13856,13883,13914,14007,14116,14224,14464,14465,14574,14577,14600,14772,14797,14849,14853,15084,15175,15177,15369,16315,16391,16521,16737,17131,17265,17579,17674,17689,17732,17921,17947,18050,18054,18152,18258,18308,18309,18359,18390,18453,18638,18692,18909,18938,18995,19037,19070,19075,19114,19191,19248,19261,19305,19306,19308,19309,19311,19317,19318,19324,19340,19405,19414,19426,19447,19449,19534,19550,19561,19563,19565,19595,19604,19609,19652,19653,19693,19755,19767,19779,19805,19818,19897,19941,19959,19991,19992,19997,20008,20022,20023,20028,20037,20038,20055,20059,20061,20079,20082,20090,20164,20182,20201,20202,20203,20262,20330,20353,20429,20451,20547,20548,20558,20563,20566,20571,20574,20575,20592,20663,20665,20694,20696,20748,20752,20802,20846,20947,20948,20949,20953,20955,20956,20958,20959,20963,20964,20972,21017,21032,21054,21077,21096,21106,21108,21109,21111,21164,21180,21191,21208,21209,21210,21215,21221,21225,21226,21228,21229,21247,21248,21258,21259,21260,21268,21269,21270,21271,21272,21273,21274,21275,21276,21277,21278,21279,21280,21282,21283,21284,21286,21306,21307,21349,21352,21429,21433,21446,21471,22069,22101,22123,22194,22246,22282,22353,22375,22420,22473,22475,22481,22496,22499,22505,22623,22639,22662,22712,22715,22727,22817,22877,23012,23045,23066]]],["+",[13,12,[[1,1,1,0,1,[[67,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[10,2,1,2,3,[[309,2,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[17,1,1,4,5,[[440,1,1,4,5]]],[18,2,2,5,7,[[499,1,1,5,6],[621,1,1,6,7]]],[23,3,3,7,10,[[768,1,1,7,8],[773,1,1,8,9],[795,1,1,9,10]]],[25,2,2,10,12,[[813,1,1,10,11],[839,1,1,11,12]]]],[2003,7100,9404,10961,12966,14224,16315,19534,19652,20262,20696,21433]]],["Sword",[2,2,[[23,1,1,0,1,[[758,1,1,0,1]]],[25,1,1,1,2,[[815,1,1,1,2]]]],[19308,20748]]],["axes",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21109]]],["dagger",[3,3,[[6,3,3,0,3,[[213,3,3,0,3]]]],[6584,6589,6590]]],["knife",[2,2,[[25,2,2,0,2,[[806,2,2,0,2]]]],[20547,20548]]],["knives",[3,3,[[5,2,2,0,2,[[191,2,2,0,2]]],[10,1,1,2,3,[[308,1,1,2,3]]]],[5936,5937,9369]]],["mattocks",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11939]]],["sword",[370,337,[[0,6,6,0,6,[[2,1,1,0,1],[26,1,1,1,2],[30,1,1,2,3],[33,2,2,3,5],[47,1,1,5,6]]],[1,6,6,6,12,[[54,2,2,6,8],[64,1,1,8,9],[66,1,1,9,10],[71,1,1,10,11],[81,1,1,11,12]]],[2,7,7,12,19,[[115,7,7,12,19]]],[3,9,9,19,28,[[130,2,2,19,21],[135,1,1,21,22],[136,1,1,22,23],[137,1,1,23,24],[138,3,3,24,27],[147,1,1,27,28]]],[4,8,7,28,35,[[165,2,1,28,29],[172,1,1,29,30],[180,1,1,30,31],[184,3,3,31,34],[185,1,1,34,35]]],[5,18,17,35,52,[[191,1,1,35,36],[192,1,1,36,37],[194,2,1,37,38],[196,7,7,38,45],[197,4,4,45,49],[199,1,1,49,50],[205,1,1,50,51],[210,1,1,51,52]]],[6,19,19,52,71,[[211,2,2,52,54],[214,2,2,54,56],[217,3,3,56,59],[218,2,2,59,61],[219,1,1,61,62],[228,1,1,62,63],[230,7,7,63,70],[231,1,1,70,71]]],[8,23,18,71,89,[[248,1,1,71,72],[249,1,1,72,73],[250,2,2,73,75],[252,5,5,75,80],[253,1,1,80,81],[256,3,2,81,83],[257,4,3,83,86],[260,3,1,86,87],[266,3,2,87,89]]],[9,15,14,89,103,[[267,2,2,89,91],[268,2,2,91,93],[269,1,1,93,94],[277,1,1,94,95],[278,3,2,95,97],[281,1,1,97,98],[284,1,1,98,99],[286,2,2,99,101],[289,1,1,101,102],[290,1,1,102,103]]],[10,8,7,103,110,[[291,1,1,103,104],[292,2,2,104,106],[293,2,1,106,107],[309,3,3,107,110]]],[11,7,7,110,117,[[318,1,1,110,111],[320,1,1,111,112],[322,1,1,112,113],[323,2,2,113,115],[331,2,2,115,117]]],[12,10,7,117,124,[[342,1,1,117,118],[347,3,2,118,120],[358,6,4,120,124]]],[13,8,8,124,132,[[386,1,1,124,125],[387,1,1,125,126],[389,2,2,126,128],[395,1,1,128,129],[398,1,1,129,130],[402,2,2,130,132]]],[14,1,1,132,133,[[411,1,1,132,133]]],[15,1,1,133,134,[[416,1,1,133,134]]],[16,1,1,134,135,[[434,1,1,134,135]]],[17,10,9,135,144,[[436,2,2,135,137],[440,1,1,137,138],[450,1,1,138,139],[454,2,1,139,140],[462,1,1,140,141],[474,1,1,141,142],[475,1,1,142,143],[476,1,1,143,144]]],[18,15,15,144,159,[[484,1,1,144,145],[494,1,1,145,146],[514,2,2,146,148],[521,2,2,148,150],[522,1,1,150,151],[534,1,1,151,152],[540,1,1,152,153],[541,1,1,153,154],[553,1,1,154,155],[555,2,2,155,157],[566,1,1,157,158],[626,1,1,158,159]]],[19,3,3,159,162,[[632,1,1,159,160],[639,1,1,160,161],[652,1,1,161,162]]],[21,1,1,162,163,[[673,1,1,162,163]]],[22,20,18,163,181,[[679,1,1,163,164],[680,1,1,164,165],[681,1,1,165,166],[691,1,1,166,167],[692,1,1,167,168],[699,1,1,168,169],[700,1,1,169,170],[705,1,1,170,171],[709,3,1,171,172],[712,2,2,172,174],[715,2,2,174,176],[719,1,1,176,177],[727,1,1,177,178],[729,1,1,178,179],[743,1,1,179,180],[744,1,1,180,181]]],[23,67,59,181,240,[[746,1,1,181,182],[748,1,1,182,183],[749,2,2,183,185],[750,1,1,185,186],[753,1,1,186,187],[755,1,1,187,188],[756,1,1,188,189],[758,5,5,189,194],[759,4,3,194,197],[760,1,1,197,198],[762,2,1,198,199],[763,1,1,199,200],[764,2,1,200,201],[765,3,2,201,203],[769,4,4,203,207],[770,1,1,207,208],[771,2,2,208,210],[773,1,1,210,211],[775,1,1,211,212],[776,2,2,212,214],[777,1,1,214,215],[778,2,2,215,217],[782,1,1,217,218],[783,1,1,218,219],[785,1,1,219,220],[786,3,3,220,223],[787,2,1,223,224],[788,6,5,224,229],[790,3,3,229,232],[791,1,1,232,233],[792,2,2,233,235],[793,1,1,235,236],[794,6,4,236,240]]],[24,4,4,240,244,[[797,1,1,240,241],[798,1,1,241,242],[800,1,1,242,243],[801,1,1,243,244]]],[25,78,68,244,312,[[806,4,3,244,247],[807,4,4,247,251],[808,2,1,251,252],[812,3,2,252,254],[813,1,1,254,255],[815,2,2,255,257],[818,1,1,257,258],[822,15,11,258,269],[824,2,2,269,271],[825,1,1,271,272],[826,1,1,272,273],[827,3,3,273,276],[829,1,1,276,277],[830,1,1,277,278],[831,8,8,278,286],[832,2,2,286,288],[833,15,14,288,302],[834,7,6,302,308],[836,2,2,308,310],[839,2,1,310,311],[840,1,1,311,312]]],[26,1,1,312,313,[[860,1,1,312,313]]],[27,5,5,313,318,[[862,1,1,313,314],[863,1,1,314,315],[868,1,1,315,316],[872,1,1,316,317],[874,1,1,317,318]]],[29,8,8,318,326,[[879,1,1,318,319],[882,1,1,319,320],[885,3,3,320,323],[887,3,3,323,326]]],[32,3,3,326,329,[[896,1,1,326,327],[897,1,1,327,328],[898,1,1,328,329]]],[33,3,3,329,332,[[901,1,1,329,330],[902,2,2,330,332]]],[35,1,1,332,333,[[907,1,1,332,333]]],[36,1,1,333,334,[[910,1,1,333,334]]],[37,3,3,334,337,[[919,1,1,334,335],[921,1,1,335,336],[923,1,1,336,337]]]],[79,767,899,1005,1006,1473,1635,1653,1929,1996,2137,2465,3530,3531,3532,3549,3557,3560,3561,4111,4151,4305,4329,4364,4398,4404,4406,4672,5287,5440,5633,5783,5799,5800,5839,5947,5970,6026,6075,6092,6094,6096,6099,6101,6103,6117,6118,6119,6121,6176,6368,6488,6517,6534,6614,6615,6708,6714,6716,6729,6739,6808,7020,7056,7069,7071,7079,7089,7091,7102,7112,7507,7528,7568,7593,7657,7663,7665,7668,7669,7680,7780,7781,7797,7800,7806,7874,8013,8014,8034,8044,8065,8075,8110,8284,8295,8296,8403,8486,8562,8564,8663,8701,8768,8778,8802,8840,9388,9397,9401,9696,9739,9818,9844,9849,10068,10098,10446,10663,10664,10939,10946,10950,10964,11596,11628,11670,11677,11800,11896,12010,12013,12244,12377,12839,12884,12886,12971,13225,13326,13495,13856,13883,13914,14007,14116,14464,14465,14574,14577,14600,14772,14849,14853,15084,15175,15177,15369,16391,16521,16737,17131,17579,17674,17689,17732,17921,17947,18050,18054,18152,18258,18308,18309,18359,18390,18453,18638,18692,18909,18938,18995,19037,19070,19075,19114,19191,19248,19261,19305,19306,19308,19309,19311,19317,19318,19324,19340,19405,19414,19426,19447,19449,19550,19561,19563,19565,19595,19604,19609,19653,19693,19755,19767,19779,19805,19818,19897,19941,19959,19991,19992,19997,20008,20022,20023,20028,20037,20038,20055,20059,20061,20079,20082,20090,20164,20182,20201,20202,20203,20330,20353,20429,20451,20548,20558,20563,20566,20571,20574,20575,20592,20663,20665,20694,20748,20752,20846,20947,20948,20949,20953,20955,20956,20958,20959,20963,20964,20972,21017,21032,21077,21096,21106,21108,21111,21180,21191,21208,21209,21210,21221,21225,21226,21228,21229,21247,21248,21258,21259,21268,21269,21270,21271,21272,21273,21274,21276,21277,21278,21279,21280,21282,21283,21284,21286,21306,21307,21349,21352,21446,21471,22069,22101,22123,22194,22246,22282,22375,22420,22473,22475,22481,22496,22499,22505,22623,22639,22662,22712,22715,22727,22817,22877,23012,23045,23066]]],["swords",[17,17,[[8,1,1,0,1,[[248,1,1,0,1]]],[11,1,1,1,2,[[315,1,1,1,2]]],[15,1,1,2,3,[[416,1,1,2,3]]],[18,1,1,3,4,[[536,1,1,3,4]]],[19,1,1,4,5,[[657,1,1,4,5]]],[21,1,1,5,6,[[673,1,1,5,6]]],[22,2,2,6,8,[[680,1,1,6,7],[699,1,1,7,8]]],[25,7,7,8,15,[[817,1,1,8,9],[824,1,1,9,10],[829,1,1,10,11],[831,1,1,11,12],[833,2,2,12,14],[839,1,1,14,15]]],[28,1,1,15,16,[[878,1,1,15,16]]],[32,1,1,16,17,[[896,1,1,16,17]]]],[7504,9602,12372,14797,17265,17579,17689,18050,20802,21054,21164,21215,21260,21275,21429,22353,22623]]],["tool",[1,1,[[1,1,1,0,1,[[69,1,1,0,1]]]],[2076]]]]},{"k":"H2720","v":[["*",[10,10,[[2,1,1,0,1,[[96,1,1,0,1]]],[15,2,2,1,3,[[414,2,2,1,3]]],[19,1,1,3,4,[[644,1,1,3,4]]],[23,2,2,4,6,[[777,2,2,4,6]]],[25,2,2,6,8,[[837,2,2,6,8]]],[36,2,2,8,10,[[909,2,2,8,10]]]],[2889,12310,12324,16874,19785,19787,21394,21397,22844,22849]]],["desolate",[2,2,[[23,2,2,0,2,[[777,2,2,0,2]]]],[19785,19787]]],["dry",[2,2,[[2,1,1,0,1,[[96,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]]],[2889,16874]]],["waste",[6,6,[[15,2,2,0,2,[[414,2,2,0,2]]],[25,2,2,2,4,[[837,2,2,2,4]]],[36,2,2,4,6,[[909,2,2,4,6]]]],[12310,12324,21394,21397,22844,22849]]]]},{"k":"H2721","v":[["*",[16,15,[[0,1,1,0,1,[[30,1,1,0,1]]],[6,3,3,1,4,[[216,3,3,1,4]]],[17,1,1,4,5,[[465,1,1,4,5]]],[22,5,4,5,9,[[682,1,1,5,6],[703,3,2,6,8],[739,1,1,8,9]]],[23,3,3,9,12,[[780,1,1,9,10],[793,1,1,10,11],[794,1,1,11,12]]],[25,1,1,12,13,[[830,1,1,12,13]]],[35,1,1,13,14,[[907,1,1,13,14]]],[36,1,1,14,15,[[909,1,1,14,15]]]],[913,6691,6693,6694,13587,17739,18122,18123,18847,19872,20140,20204,21193,22819,22851]]],["+",[3,3,[[22,2,2,0,2,[[682,1,1,0,1],[703,1,1,1,2]]],[25,1,1,2,3,[[830,1,1,2,3]]]],[17739,18122,21193]]],["desolation",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22819]]],["drought",[3,3,[[0,1,1,0,1,[[30,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]],[36,1,1,2,3,[[909,1,1,2,3]]]],[913,20204,22851]]],["dry",[3,3,[[6,3,3,0,3,[[216,3,3,0,3]]]],[6691,6693,6694]]],["heat",[4,3,[[17,1,1,0,1,[[465,1,1,0,1]]],[22,2,1,1,2,[[703,2,1,1,2]]],[23,1,1,2,3,[[780,1,1,2,3]]]],[13587,18123,19872]]],["waste",[2,2,[[22,1,1,0,1,[[739,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]]],[18847,20140]]]]},{"k":"H2722","v":[["*",[17,17,[[1,3,3,0,3,[[52,1,1,0,1],[66,1,1,1,2],[82,1,1,2,3]]],[4,9,9,3,12,[[153,3,3,3,6],[156,2,2,6,8],[157,1,1,8,9],[161,1,1,9,10],[170,1,1,10,11],[181,1,1,11,12]]],[10,2,2,12,14,[[298,1,1,12,13],[309,1,1,13,14]]],[13,1,1,14,15,[[371,1,1,14,15]]],[18,1,1,15,16,[[583,1,1,15,16]]],[38,1,1,16,17,[[928,1,1,16,17]]]],[1580,1989,2479,4894,4898,4911,5014,5019,5055,5165,5400,5680,8994,9395,11278,15670,23142]]],["+",[2,2,[[4,2,2,0,2,[[153,2,2,0,2]]]],[4894,4911]]],["Horeb",[15,15,[[1,3,3,0,3,[[52,1,1,0,1],[66,1,1,1,2],[82,1,1,2,3]]],[4,7,7,3,10,[[153,1,1,3,4],[156,2,2,4,6],[157,1,1,6,7],[161,1,1,7,8],[170,1,1,8,9],[181,1,1,9,10]]],[10,2,2,10,12,[[298,1,1,10,11],[309,1,1,11,12]]],[13,1,1,12,13,[[371,1,1,12,13]]],[18,1,1,13,14,[[583,1,1,13,14]]],[38,1,1,14,15,[[928,1,1,14,15]]]],[1580,1989,2479,4898,5014,5019,5055,5165,5400,5680,8994,9395,11278,15670,23142]]]]},{"k":"H2723","v":[["*",[42,42,[[2,2,2,0,2,[[115,2,2,0,2]]],[14,1,1,2,3,[[411,1,1,2,3]]],[17,1,1,3,4,[[438,1,1,3,4]]],[18,3,3,4,7,[[486,1,1,4,5],[579,1,1,5,6],[586,1,1,6,7]]],[22,9,9,7,16,[[683,1,1,7,8],[722,1,1,8,9],[726,1,1,9,10],[727,1,1,10,11],[729,1,1,11,12],[730,1,1,12,13],[736,1,1,13,14],[739,1,1,14,15],[742,1,1,15,16]]],[23,10,10,16,26,[[751,1,1,16,17],[766,1,1,17,18],[769,3,3,18,21],[771,1,1,21,22],[788,3,3,22,25],[793,1,1,25,26]]],[25,14,14,26,40,[[806,1,1,26,27],[814,1,1,27,28],[826,1,1,28,29],[827,1,1,29,30],[830,2,2,30,32],[834,2,2,32,34],[836,1,1,34,35],[837,3,3,35,38],[839,2,2,38,40]]],[26,1,1,40,41,[[858,1,1,40,41]]],[38,1,1,41,42,[[925,1,1,41,42]]]],[3555,3557,12246,12918,14027,15527,15765,17756,18559,18635,18655,18676,18705,18798,18847,18896,19153,19459,19543,19545,19552,19613,20012,20016,20032,20140,20560,20712,21096,21120,21192,21193,21304,21307,21348,21363,21369,21392,21433,21437,21990,23093]]],["+",[2,2,[[18,1,1,0,1,[[586,1,1,0,1]]],[25,1,1,1,2,[[830,1,1,1,2]]]],[15765,21193]]],["desert",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15527]]],["deserts",[2,2,[[22,1,1,0,1,[[726,1,1,0,1]]],[25,1,1,1,2,[[814,1,1,1,2]]]],[18635,20712]]],["desolate",[3,3,[[23,1,1,0,1,[[751,1,1,0,1]]],[25,2,2,1,3,[[826,1,1,1,2],[827,1,1,2,3]]]],[19153,21096,21120]]],["desolation",[5,5,[[23,5,5,0,5,[[766,1,1,0,1],[769,2,2,1,3],[788,2,2,3,5]]]],[19459,19545,19552,20012,20032]]],["desolations",[3,3,[[14,1,1,0,1,[[411,1,1,0,1]]],[23,1,1,1,2,[[769,1,1,1,2]]],[26,1,1,2,3,[[858,1,1,2,3]]]],[12246,19543,21990]]],["destructions",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14027]]],["places",[8,8,[[17,1,1,0,1,[[438,1,1,0,1]]],[22,5,5,1,6,[[683,1,1,1,2],[722,1,1,2,3],[729,1,1,3,4],[730,1,1,4,5],[736,1,1,5,6]]],[25,1,1,6,7,[[839,1,1,6,7]]],[38,1,1,7,8,[[925,1,1,7,8]]]],[12918,17756,18559,18676,18705,18798,21437,23093]]],["waste",[9,9,[[2,2,2,0,2,[[115,2,2,0,2]]],[22,2,2,2,4,[[727,1,1,2,3],[742,1,1,3,4]]],[23,1,1,4,5,[[771,1,1,4,5]]],[25,4,4,5,9,[[806,1,1,5,6],[830,1,1,6,7],[836,1,1,7,8],[839,1,1,8,9]]]],[3555,3557,18655,18896,19613,20560,21192,21348,21433]]],["wasted",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20016]]],["wastes",[7,7,[[22,1,1,0,1,[[739,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]],[25,5,5,2,7,[[834,2,2,2,4],[837,3,3,4,7]]]],[18847,20140,21304,21307,21363,21369,21392]]]]},{"k":"H2724","v":[["*",[8,7,[[0,1,1,0,1,[[6,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[5,3,2,2,4,[[189,2,1,2,3],[190,1,1,3,4]]],[11,1,1,4,5,[[314,1,1,4,5]]],[25,1,1,5,6,[[831,1,1,5,6]]],[36,1,1,6,7,[[910,1,1,6,7]]]],[181,1910,5910,5928,9559,21216,22861]]],["dry",[4,4,[[0,1,1,0,1,[[6,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[25,1,1,2,3,[[831,1,1,2,3]]],[36,1,1,3,4,[[910,1,1,3,4]]]],[181,1910,21216,22861]]],["ground",[3,2,[[5,2,1,0,1,[[189,2,1,0,1]]],[11,1,1,1,2,[[314,1,1,1,2]]]],[5910,9559]]],["land",[1,1,[[5,1,1,0,1,[[190,1,1,0,1]]]],[5928]]]]},{"k":"H2725","v":[["drought",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14359]]]]},{"k":"H2726","v":[["*",[2,2,[[16,2,2,0,2,[[426,1,1,0,1],[432,1,1,1,2]]]],[12712,12816]]],["Harbona",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12712]]],["Harbonah",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12816]]]]},{"k":"H2727","v":[["afraid",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14163]]]]},{"k":"H2728","v":[["beetle",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3019]]]]},{"k":"H2729","v":[["*",[39,39,[[0,2,2,0,2,[[26,1,1,0,1],[41,1,1,1,2]]],[1,2,2,2,4,[[68,2,2,2,4]]],[2,1,1,4,5,[[115,1,1,4,5]]],[4,1,1,5,6,[[180,1,1,5,6]]],[6,1,1,6,7,[[218,1,1,6,7]]],[7,1,1,7,8,[[234,1,1,7,8]]],[8,5,5,8,13,[[248,1,1,8,9],[249,1,1,9,10],[251,1,1,10,11],[256,1,1,11,12],[263,1,1,12,13]]],[9,1,1,13,14,[[283,1,1,13,14]]],[10,1,1,14,15,[[291,1,1,14,15]]],[11,1,1,15,16,[[316,1,1,15,16]]],[17,2,2,16,18,[[446,1,1,16,17],[472,1,1,17,18]]],[22,5,5,18,23,[[688,1,1,18,19],[695,1,1,19,20],[697,1,1,20,21],[710,1,1,21,22],[719,1,1,22,23]]],[23,3,3,23,26,[[751,1,1,23,24],[774,1,1,24,25],[790,1,1,25,26]]],[25,6,6,26,32,[[827,2,2,26,28],[831,1,1,28,29],[833,1,1,29,30],[835,1,1,30,31],[840,1,1,31,32]]],[27,2,2,32,34,[[872,2,2,32,34]]],[29,1,1,34,35,[[881,1,1,34,35]]],[32,1,1,35,36,[[896,1,1,35,36]]],[33,1,1,36,37,[[901,1,1,36,37]]],[35,1,1,37,38,[[908,1,1,37,38]]],[37,1,1,38,39,[[911,1,1,38,39]]]],[760,1280,2042,2044,3530,5637,6731,7180,7492,7523,7599,7773,7947,8451,8766,9616,13127,13770,17879,17985,18020,18270,18456,19152,19677,20072,21116,21118,21213,21258,21341,21474,22250,22251,22401,22624,22710,22833,22899]]],["+",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8451]]],["Tremble",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18270]]],["afraid",[19,19,[[0,1,1,0,1,[[41,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[8,1,1,3,4,[[256,1,1,3,4]]],[10,1,1,4,5,[[291,1,1,4,5]]],[17,1,1,5,6,[[446,1,1,5,6]]],[22,4,4,6,10,[[688,1,1,6,7],[695,1,1,7,8],[697,1,1,8,9],[719,1,1,9,10]]],[23,2,2,10,12,[[774,1,1,10,11],[790,1,1,11,12]]],[25,3,3,12,15,[[831,1,1,12,13],[835,1,1,13,14],[840,1,1,14,15]]],[29,1,1,15,16,[[881,1,1,15,16]]],[32,1,1,16,17,[[896,1,1,16,17]]],[33,1,1,17,18,[[901,1,1,17,18]]],[35,1,1,18,19,[[908,1,1,18,19]]]],[1280,3530,7180,7773,8766,13127,17879,17985,18020,18456,19677,20072,21213,21341,21474,22401,22624,22710,22833]]],["away",[2,2,[[4,1,1,0,1,[[180,1,1,0,1]]],[23,1,1,1,2,[[751,1,1,1,2]]]],[5637,19152]]],["careful",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9616]]],["discomfited",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6731]]],["fray",[1,1,[[37,1,1,0,1,[[911,1,1,0,1]]]],[22899]]],["quaked",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2044]]],["tremble",[5,5,[[25,3,3,0,3,[[827,2,2,0,2],[833,1,1,2,3]]],[27,2,2,3,5,[[872,2,2,3,5]]]],[21116,21118,21258,22250,22251]]],["trembled",[5,5,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,1,1,1,2,[[68,1,1,1,2]]],[8,3,3,2,5,[[249,1,1,2,3],[251,1,1,3,4],[263,1,1,4,5]]]],[760,2042,7523,7599,7947]]],["trembleth",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13770]]],["trembling",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7492]]]]},{"k":"H2730","v":[["*",[6,6,[[6,1,1,0,1,[[217,1,1,0,1]]],[8,1,1,1,2,[[239,1,1,1,2]]],[14,2,2,2,4,[[411,1,1,2,3],[412,1,1,3,4]]],[22,2,2,4,6,[[744,2,2,4,6]]]],[6697,7310,12241,12255,18924,18927]]],["afraid",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6697]]],["tremble",[2,2,[[14,1,1,0,1,[[412,1,1,0,1]]],[22,1,1,1,2,[[744,1,1,1,2]]]],[12255,18927]]],["trembled",[2,2,[[8,1,1,0,1,[[239,1,1,0,1]]],[14,1,1,1,2,[[411,1,1,1,2]]]],[7310,12241]]],["trembleth",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18924]]]]},{"k":"H2731","v":[["*",[9,8,[[0,1,1,0,1,[[26,1,1,0,1]]],[8,2,1,1,2,[[249,2,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]],[19,1,1,3,4,[[656,1,1,3,4]]],[22,1,1,4,5,[[699,1,1,4,5]]],[23,1,1,5,6,[[774,1,1,5,6]]],[25,1,1,6,7,[[827,1,1,6,7]]],[26,1,1,7,8,[[859,1,1,7,8]]]],[760,7523,9616,17249,18039,19672,21116,22022]]],["+",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[760]]],["care",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9616]]],["fear",[2,2,[[19,1,1,0,1,[[656,1,1,0,1]]],[22,1,1,1,2,[[699,1,1,1,2]]]],[17249,18039]]],["quaking",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22022]]],["trembling",[4,3,[[8,2,1,0,1,[[249,2,1,0,1]]],[23,1,1,1,2,[[774,1,1,1,2]]],[25,1,1,2,3,[[827,1,1,2,3]]]],[7523,19672,21116]]]]},{"k":"H2732","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4784,4785]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4785]]],["Haradah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4784]]]]},{"k":"H2733","v":[["Harodite",[2,1,[[9,2,1,0,1,[[289,2,1,0,1]]]],[8678]]]]},{"k":"H2734","v":[["*",[91,88,[[0,11,11,0,11,[[3,2,2,0,2],[17,2,2,2,4],[29,1,1,4,5],[30,2,2,5,7],[33,1,1,7,8],[38,1,1,8,9],[43,1,1,9,10],[44,1,1,10,11]]],[1,6,6,11,17,[[53,1,1,11,12],[71,1,1,12,13],[81,4,4,13,17]]],[3,11,11,17,28,[[127,3,3,17,20],[128,1,1,20,21],[132,1,1,21,22],[138,2,2,22,24],[140,1,1,24,25],[141,1,1,25,26],[148,2,2,26,28]]],[4,5,5,28,33,[[158,1,1,28,29],[159,1,1,29,30],[163,1,1,30,31],[181,1,1,31,32],[183,1,1,32,33]]],[5,2,2,33,35,[[193,1,1,33,34],[209,1,1,34,35]]],[6,7,7,35,42,[[212,2,2,35,37],[213,1,1,37,38],[216,1,1,38,39],[219,1,1,39,40],[220,1,1,40,41],[224,1,1,41,42]]],[8,7,6,42,48,[[246,1,1,42,43],[250,1,1,43,44],[252,1,1,44,45],[253,1,1,45,46],[255,3,2,46,48]]],[9,8,8,48,56,[[269,1,1,48,49],[272,2,2,49,51],[278,1,1,51,52],[279,1,1,52,53],[285,1,1,53,54],[288,1,1,54,55],[290,1,1,55,56]]],[11,2,2,56,58,[[325,1,1,56,57],[335,1,1,57,58]]],[12,2,2,58,60,[[350,2,2,58,60]]],[13,2,2,60,62,[[391,2,2,60,62]]],[15,4,4,62,66,[[415,1,1,62,63],[416,2,2,63,65],[417,1,1,65,66]]],[17,6,5,66,71,[[454,1,1,66,67],[467,4,3,67,70],[477,1,1,70,71]]],[18,6,6,71,77,[[495,1,1,71,72],[514,3,3,72,75],[583,1,1,75,76],[601,1,1,76,77]]],[19,1,1,77,78,[[651,1,1,77,78]]],[21,1,1,78,79,[[671,1,1,78,79]]],[22,3,3,79,82,[[683,1,1,79,80],[719,1,1,80,81],[723,1,1,81,82]]],[27,1,1,82,83,[[869,1,1,82,83]]],[31,4,3,83,86,[[892,4,3,83,86]]],[34,1,1,86,87,[[905,1,1,86,87]]],[37,1,1,87,88,[[920,1,1,87,88]]]],[84,85,454,456,832,908,909,987,1168,1342,1363,1615,2137,2448,2449,2457,2460,4025,4034,4057,4068,4209,4397,4402,4456,4474,4728,4731,5101,5115,5225,5706,5745,5977,6476,6559,6565,6576,6693,6784,6818,6928,7451,7571,7646,7684,7737,7760,8089,8164,8165,8291,8338,8553,8610,8693,9874,10191,10770,10771,11714,11719,12347,12360,12366,12388,13308,13630,13631,13633,13929,14125,14451,14457,14458,15691,16105,17098,17543,17764,18462,18585,22199,22569,22572,22577,22776,23019]]],["+",[9,8,[[0,2,2,0,2,[[30,1,1,0,1],[33,1,1,1,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[8,2,1,3,4,[[255,2,1,3,4]]],[18,3,3,4,7,[[514,3,3,4,7]]],[19,1,1,7,8,[[651,1,1,7,8]]]],[908,987,4209,7737,14451,14457,14458,17098]]],["angry",[10,9,[[0,3,3,0,3,[[17,2,2,0,2],[44,1,1,2,3]]],[9,1,1,3,4,[[285,1,1,3,4]]],[15,1,1,4,5,[[417,1,1,4,5]]],[21,1,1,5,6,[[671,1,1,5,6]]],[31,4,3,6,9,[[892,4,3,6,9]]]],[454,456,1363,8553,12388,17543,22569,22572,22577]]],["burn",[1,1,[[0,1,1,0,1,[[43,1,1,0,1]]]],[1342]]],["displeased",[3,3,[[9,1,1,0,1,[[272,1,1,0,1]]],[12,1,1,1,2,[[350,1,1,1,2]]],[34,1,1,2,3,[[905,1,1,2,3]]]],[8165,10771,22776]]],["earnestly",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12347]]],["grieved",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7571]]],["hot",[10,10,[[1,5,5,0,5,[[71,1,1,0,1],[81,4,4,1,5]]],[6,5,5,5,10,[[212,2,2,5,7],[213,1,1,7,8],[216,1,1,8,9],[220,1,1,9,10]]]],[2137,2448,2449,2457,2460,6559,6565,6576,6693,6818]]],["incensed",[2,2,[[22,2,2,0,2,[[719,1,1,0,1],[723,1,1,1,2]]]],[18462,18585]]],["kindled",[44,43,[[0,2,2,0,2,[[29,1,1,0,1],[38,1,1,1,2]]],[1,1,1,2,3,[[53,1,1,2,3]]],[3,10,10,3,13,[[127,3,3,3,6],[128,1,1,6,7],[138,2,2,7,9],[140,1,1,9,10],[141,1,1,10,11],[148,2,2,11,13]]],[4,5,5,13,18,[[158,1,1,13,14],[159,1,1,14,15],[163,1,1,15,16],[181,1,1,16,17],[183,1,1,17,18]]],[5,2,2,18,20,[[193,1,1,18,19],[209,1,1,19,20]]],[6,2,2,20,22,[[219,1,1,20,21],[224,1,1,21,22]]],[8,3,3,22,25,[[246,1,1,22,23],[252,1,1,23,24],[255,1,1,24,25]]],[9,3,3,25,28,[[272,1,1,25,26],[278,1,1,26,27],[290,1,1,27,28]]],[11,2,2,28,30,[[325,1,1,28,29],[335,1,1,29,30]]],[12,1,1,30,31,[[350,1,1,30,31]]],[13,2,2,31,33,[[391,2,2,31,33]]],[17,6,5,33,38,[[454,1,1,33,34],[467,4,3,34,37],[477,1,1,37,38]]],[18,2,2,38,40,[[583,1,1,38,39],[601,1,1,39,40]]],[22,1,1,40,41,[[683,1,1,40,41]]],[27,1,1,41,42,[[869,1,1,41,42]]],[37,1,1,42,43,[[920,1,1,42,43]]]],[832,1168,1615,4025,4034,4057,4068,4397,4402,4456,4474,4728,4731,5101,5115,5225,5706,5745,5977,6476,6784,6928,7451,7646,7760,8164,8291,8693,9874,10191,10770,11714,11719,13308,13630,13631,13633,13929,15691,16105,17764,22199,23019]]],["wroth",[10,10,[[0,3,3,0,3,[[3,2,2,0,2],[30,1,1,2,3]]],[8,1,1,3,4,[[253,1,1,3,4]]],[9,3,3,4,7,[[269,1,1,4,5],[279,1,1,5,6],[288,1,1,6,7]]],[15,2,2,7,9,[[416,2,2,7,9]]],[18,1,1,9,10,[[495,1,1,9,10]]]],[84,85,909,7684,8089,8338,8610,12360,12366,14125]]]]},{"k":"H2735","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4792,4793]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4793]]],["Horhagidgad",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4792]]]]},{"k":"H2736","v":[["Harhaiah",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12335]]]]},{"k":"H2737","v":[["chains",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17547]]]]},{"k":"H2738","v":[["nettles",[3,3,[[17,1,1,0,1,[[465,1,1,0,1]]],[19,1,1,1,2,[[651,1,1,1,2]]],[35,1,1,2,3,[[907,1,1,2,3]]]],[13564,17110,22814]]]]},{"k":"H2739","v":[["Harumaph",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12337]]]]},{"k":"H2740","v":[["*",[41,40,[[1,2,2,0,2,[[64,1,1,0,1],[81,1,1,1,2]]],[3,2,2,2,4,[[141,1,1,2,3],[148,1,1,3,4]]],[4,1,1,4,5,[[165,1,1,4,5]]],[5,1,1,5,6,[[193,1,1,5,6]]],[8,1,1,6,7,[[263,1,1,6,7]]],[11,1,1,7,8,[[335,1,1,7,8]]],[13,4,4,8,12,[[394,2,2,8,10],[395,1,1,10,11],[396,1,1,11,12]]],[14,1,1,12,13,[[412,1,1,12,13]]],[15,1,1,13,14,[[425,1,1,13,14]]],[17,1,1,14,15,[[455,1,1,14,15]]],[18,6,6,15,21,[[479,1,1,15,16],[535,1,1,16,17],[546,1,1,17,18],[555,1,1,18,19],[562,1,1,19,20],[565,1,1,20,21]]],[22,2,2,21,23,[[691,2,2,21,23]]],[23,9,8,23,31,[[748,2,2,23,25],[756,1,1,25,26],[769,3,2,26,28],[774,1,1,28,29],[793,1,1,29,30],[795,1,1,30,31]]],[24,2,2,31,33,[[797,1,1,31,32],[800,1,1,32,33]]],[25,2,2,33,35,[[808,2,2,33,35]]],[27,1,1,35,36,[[872,1,1,35,36]]],[31,1,1,36,37,[[891,1,1,36,37]]],[33,1,1,37,38,[[900,1,1,37,38]]],[35,2,2,38,40,[[907,1,1,38,39],[908,1,1,39,40]]]],[1927,2450,4475,4732,5289,6002,7960,10191,11775,11777,11801,11835,12266,12689,13349,13950,14788,14959,15162,15274,15324,17915,17919,19035,19053,19262,19571,19572,19691,20164,20257,20322,20431,20589,20591,22249,22567,22690,22807,22828]]],["+",[8,8,[[1,1,1,0,1,[[81,1,1,0,1]]],[4,1,1,1,2,[[165,1,1,1,2]]],[5,1,1,2,3,[[193,1,1,2,3]]],[11,1,1,3,4,[[335,1,1,3,4]]],[18,1,1,4,5,[[562,1,1,4,5]]],[23,2,2,5,7,[[756,1,1,5,6],[795,1,1,6,7]]],[31,1,1,7,8,[[891,1,1,7,8]]]],[2450,5289,6002,10191,15274,19262,20257,22567]]],["displeasure",[1,1,[[18,1,1,0,1,[[479,1,1,0,1]]]],[13950]]],["fierce",[19,19,[[3,2,2,0,2,[[141,1,1,0,1],[148,1,1,1,2]]],[8,1,1,2,3,[[263,1,1,2,3]]],[13,3,3,3,6,[[394,2,2,3,5],[395,1,1,5,6]]],[14,1,1,6,7,[[412,1,1,6,7]]],[22,2,2,7,9,[[691,2,2,7,9]]],[23,6,6,9,15,[[748,2,2,9,11],[769,2,2,11,13],[774,1,1,13,14],[793,1,1,14,15]]],[24,2,2,15,17,[[797,1,1,15,16],[800,1,1,16,17]]],[35,2,2,17,19,[[907,1,1,17,18],[908,1,1,18,19]]]],[4475,4732,7960,11775,11777,11801,12266,17915,17919,19035,19053,19571,19572,19691,20164,20322,20431,22807,22828]]],["fierceness",[5,5,[[13,1,1,0,1,[[396,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]],[23,1,1,2,3,[[769,1,1,2,3]]],[27,1,1,3,4,[[872,1,1,3,4]]],[33,1,1,4,5,[[900,1,1,4,5]]]],[11835,15162,19572,22249,22690]]],["fury",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13349]]],["wrath",[6,6,[[1,1,1,0,1,[[64,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]],[18,2,2,2,4,[[535,1,1,2,3],[565,1,1,3,4]]],[25,2,2,4,6,[[808,2,2,4,6]]]],[1927,12689,14788,15324,20589,20591]]],["wrathful",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14959]]]]},{"k":"H2741","v":[["Haruphite",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10725]]]]},{"k":"H2742","v":[["*",[18,17,[[17,1,1,0,1,[[476,1,1,0,1]]],[18,1,1,1,2,[[545,1,1,1,2]]],[19,9,9,2,11,[[630,1,1,2,3],[635,2,2,3,5],[637,1,1,5,6],[639,2,2,6,8],[640,1,1,8,9],[643,1,1,9,10],[648,1,1,10,11]]],[22,2,2,11,13,[[706,1,1,11,12],[719,1,1,12,13]]],[26,1,1,13,14,[[858,1,1,13,14]]],[28,2,1,14,15,[[878,2,1,14,15]]],[29,1,1,15,16,[[879,1,1,15,16]]],[37,1,1,16,17,[[919,1,1,16,17]]]],[13918,14913,16469,16612,16621,16660,16743,16746,16751,16856,16989,18191,18466,22013,22357,22367,23002]]],["+",[4,4,[[19,4,4,0,4,[[630,1,1,0,1],[635,2,2,1,3],[643,1,1,3,4]]]],[16469,16612,16621,16856]]],["decision",[2,1,[[28,2,1,0,1,[[878,2,1,0,1]]]],[22357]]],["diligent",[5,5,[[19,5,5,0,5,[[637,1,1,0,1],[639,2,2,1,3],[640,1,1,3,4],[648,1,1,4,5]]]],[16660,16743,16746,16751,16989]]],["gold",[2,2,[[18,1,1,0,1,[[545,1,1,0,1]]],[37,1,1,1,2,[[919,1,1,1,2]]]],[14913,23002]]],["instrument",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18191]]],["instruments",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22367]]],["sharp",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18466]]],["things",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13918]]],["wall",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22013]]]]},{"k":"H2743","v":[["Haruz",[1,1,[[11,1,1,0,1,[[333,1,1,0,1]]]],[10138]]]]},{"k":"H2744","v":[["Harhur",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12078,12473]]]]},{"k":"H2745","v":[["Harhas",[1,1,[[11,1,1,0,1,[[334,1,1,0,1]]]],[10159]]]]},{"k":"H2746","v":[["burning",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5633]]]]},{"k":"H2747","v":[["*",[2,2,[[1,1,1,0,1,[[81,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]]],[2442,17808]]],["pen",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17808]]],["tool",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2442]]]]},{"k":"H2748","v":[["magicians",[11,10,[[0,2,2,0,2,[[40,2,2,0,2]]],[1,7,6,2,8,[[56,2,2,2,4],[57,3,3,4,7],[58,2,1,7,8]]],[26,2,2,8,10,[[850,1,1,8,9],[851,1,1,9,10]]]],[1203,1219,1696,1707,1717,1728,1729,1753,21757,21760]]]]},{"k":"H2749","v":[["*",[5,5,[[26,5,5,0,5,[[851,2,2,0,2],[853,2,2,2,4],[854,1,1,4,5]]]],[21768,21785,21844,21846,21885]]],["magician",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21768]]],["magicians",[4,4,[[26,4,4,0,4,[[851,1,1,0,1],[853,2,2,1,3],[854,1,1,3,4]]]],[21785,21844,21846,21885]]]]},{"k":"H2750","v":[["*",[6,6,[[1,1,1,0,1,[[60,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[13,1,1,3,4,[[391,1,1,3,4]]],[22,1,1,4,5,[[685,1,1,4,5]]],[24,1,1,5,6,[[798,1,1,5,6]]]],[1814,5703,7764,11714,17786,20335]]],["fierce",[3,3,[[8,1,1,0,1,[[255,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]]],[7764,17786,20335]]],["great",[2,2,[[1,1,1,0,1,[[60,1,1,0,1]]],[13,1,1,1,2,[[391,1,1,1,2]]]],[1814,11714]]],["heat",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5703]]]]},{"k":"H2751","v":[["white",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1188]]]]},{"k":"H2752","v":[["*",[6,6,[[0,4,4,0,4,[[13,1,1,0,1],[35,3,3,1,4]]],[4,2,2,4,6,[[154,2,2,4,6]]]],[342,1060,1061,1069,4950,4960]]],["Horims",[2,2,[[4,2,2,0,2,[[154,2,2,0,2]]]],[4950,4960]]],["Horite",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1060]]],["Horites",[3,3,[[0,3,3,0,3,[[13,1,1,0,1],[35,2,2,1,3]]]],[342,1061,1069]]]]},{"k":"H2753","v":[["Hori",[4,4,[[0,2,2,0,2,[[35,2,2,0,2]]],[3,1,1,2,3,[[129,1,1,2,3]]],[12,1,1,3,4,[[338,1,1,3,4]]]],[1062,1070,4080,10291]]]]},{"k":"H2754","v":[["*",[2,2,[[11,1,1,0,1,[[317,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]]],[9670,17729]]],["bags",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9670]]],["pins",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17729]]]]},{"k":"H2755","v":[["dung",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9699]]]]},{"k":"H2756","v":[["Hariph",[2,2,[[15,2,2,0,2,[[419,1,1,0,1],[422,1,1,1,2]]]],[12444,12568]]]]},{"k":"H2757","v":[["*",[3,3,[[8,1,1,0,1,[[252,1,1,0,1]]],[9,1,1,1,2,[[278,1,1,1,2]]],[12,1,1,2,3,[[357,1,1,2,3]]]],[7636,8317,10929]]],["+",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7636]]],["harrows",[2,2,[[9,1,1,0,1,[[278,1,1,0,1]]],[12,1,1,1,2,[[357,1,1,1,2]]]],[8317,10929]]]]},{"k":"H2758","v":[["*",[3,3,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,1,1,1,2,[[83,1,1,1,2]]],[8,1,1,2,3,[[243,1,1,2,3]]]],[1364,2517,7381]]],["earing",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1364]]],["ground",[1,1,[[8,1,1,0,1,[[243,1,1,0,1]]]],[7381]]],["time",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2517]]]]},{"k":"H2759","v":[["vehement",[1,1,[[31,1,1,0,1,[[892,1,1,0,1]]]],[22576]]]]},{"k":"H2760","v":[["roasteth",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16746]]]]},{"k":"H2761","v":[["singed",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21834]]]]},{"k":"H2762","v":[["lattice",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17563]]]]},{"k":"H2763","v":[["*",[52,48,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,3,3,1,4,[[110,1,1,1,2],[116,2,2,2,4]]],[3,2,2,4,6,[[137,2,2,4,6]]],[4,8,5,6,11,[[154,1,1,6,7],[155,2,1,7,8],[159,2,1,8,9],[165,1,1,9,10],[172,2,1,10,11]]],[5,14,14,11,25,[[188,1,1,11,12],[192,2,2,12,14],[194,1,1,14,15],[196,6,6,15,21],[197,4,4,21,25]]],[6,2,2,25,27,[[211,1,1,25,26],[231,1,1,26,27]]],[8,7,6,27,33,[[250,7,6,27,33]]],[10,1,1,33,34,[[299,1,1,33,34]]],[11,1,1,34,35,[[331,1,1,34,35]]],[12,1,1,35,36,[[341,1,1,35,36]]],[13,2,2,36,38,[[386,1,1,36,37],[398,1,1,37,38]]],[14,1,1,38,39,[[412,1,1,38,39]]],[22,3,3,39,42,[[689,1,1,39,40],[712,1,1,40,41],[715,1,1,41,42]]],[23,4,4,42,46,[[769,1,1,42,43],[794,2,2,43,45],[795,1,1,45,46]]],[26,1,1,46,47,[[860,1,1,46,47]]],[32,1,1,47,48,[[896,1,1,47,48]]]],[2133,3363,3598,3599,4342,4343,4972,4981,5113,5287,5444,5879,5967,5970,6028,6065,6092,6099,6101,6103,6104,6118,6119,6127,6128,6526,7113,7563,7568,7569,7575,7578,7580,9072,10072,10426,11610,11889,12260,17899,18305,18363,19543,20187,20192,20215,22080,22633]]],["+",[13,11,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,5,3,1,4,[[159,2,1,1,2],[165,1,1,2,3],[172,2,1,3,4]]],[5,4,4,4,8,[[188,1,1,4,5],[192,1,1,5,6],[194,1,1,6,7],[196,1,1,7,8]]],[8,2,2,8,10,[[250,2,2,8,10]]],[22,1,1,10,11,[[689,1,1,10,11]]]],[4342,5113,5287,5444,5879,5970,6028,6103,7563,7578,17899]]],["accursed",[1,1,[[5,1,1,0,1,[[192,1,1,0,1]]]],[5967]]],["away",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22080]]],["consecrate",[1,1,[[32,1,1,0,1,[[896,1,1,0,1]]]],[22633]]],["destroy",[7,7,[[5,1,1,0,1,[[197,1,1,0,1]]],[6,1,1,1,2,[[231,1,1,1,2]]],[8,1,1,2,3,[[250,1,1,2,3]]],[10,1,1,3,4,[[299,1,1,3,4]]],[23,3,3,4,7,[[769,1,1,4,5],[794,2,2,5,7]]]],[6127,7113,7569,9072,19543,20187,20192]]],["destroyed",[17,17,[[1,1,1,0,1,[[71,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[4,2,2,2,4,[[154,1,1,2,3],[155,1,1,3,4]]],[5,7,7,4,11,[[196,5,5,4,9],[197,2,2,9,11]]],[6,1,1,11,12,[[211,1,1,11,12]]],[8,3,3,12,15,[[250,3,3,12,15]]],[13,1,1,15,16,[[398,1,1,15,16]]],[22,1,1,16,17,[[712,1,1,16,17]]]],[2133,4343,4972,4981,6065,6092,6099,6101,6104,6119,6128,6526,7568,7575,7580,11889,18305]]],["destroying",[2,2,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,1,1,1,2,[[197,1,1,1,2]]]],[4981,6118]]],["devote",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3598]]],["devoted",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3599]]],["forfeited",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12260]]],["nose",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3363]]],["slay",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11610]]],["utterly",[5,5,[[8,1,1,0,1,[[250,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[12,1,1,2,3,[[341,1,1,2,3]]],[22,1,1,3,4,[[715,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]]],[7569,10072,10426,18363,20215]]]]},{"k":"H2764","v":[["*",[38,31,[[2,4,3,0,3,[[116,4,3,0,3]]],[3,1,1,3,4,[[134,1,1,3,4]]],[4,3,2,4,6,[[159,2,1,4,5],[165,1,1,5,6]]],[5,13,8,6,14,[[192,4,2,6,8],[193,8,5,8,13],[208,1,1,13,14]]],[8,1,1,14,15,[[250,1,1,14,15]]],[10,1,1,15,16,[[310,1,1,15,16]]],[12,1,1,16,17,[[339,1,1,16,17]]],[20,1,1,17,18,[[665,1,1,17,18]]],[22,2,2,18,20,[[712,1,1,18,19],[721,1,1,19,20]]],[25,5,5,20,25,[[827,2,2,20,22],[833,1,1,22,23],[845,1,1,23,24],[848,1,1,24,25]]],[32,1,1,25,26,[[899,1,1,25,26]]],[34,3,3,26,29,[[903,3,3,26,29]]],[37,1,1,29,30,[[924,1,1,29,30]]],[38,1,1,30,31,[[928,1,1,30,31]]]],[3591,3598,3599,4271,5137,5289,5966,5967,5977,5987,5988,5989,5991,6446,7581,9450,10313,17455,18308,18533,21105,21114,21251,21628,21689,22666,22746,22747,22748,23079,23144]]],["+",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21114]]],["accursed",[4,3,[[5,3,2,0,2,[[192,1,1,0,1],[193,2,1,1,2]]],[12,1,1,2,3,[[339,1,1,2,3]]]],[5966,5988,10313]]],["curse",[4,4,[[5,1,1,0,1,[[192,1,1,0,1]]],[22,2,2,1,3,[[712,1,1,1,2],[721,1,1,2,3]]],[38,1,1,3,4,[[928,1,1,3,4]]]],[5967,18308,18533,23144]]],["destroyed",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7581]]],["destruction",[2,2,[[10,1,1,0,1,[[310,1,1,0,1]]],[37,1,1,1,2,[[924,1,1,1,2]]]],[9450,23079]]],["devoted",[3,3,[[2,2,2,0,2,[[116,2,2,0,2]]],[3,1,1,2,3,[[134,1,1,2,3]]]],[3591,3599,4271]]],["net",[5,5,[[25,1,1,0,1,[[833,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]],[34,3,3,2,5,[[903,3,3,2,5]]]],[21251,22666,22746,22747,22748]]],["nets",[3,3,[[20,1,1,0,1,[[665,1,1,0,1]]],[25,2,2,1,3,[[827,1,1,1,2],[848,1,1,2,3]]]],[17455,21105,21689]]],["thing",[15,10,[[2,2,1,0,1,[[116,2,1,0,1]]],[4,3,2,1,3,[[159,2,1,1,2],[165,1,1,2,3]]],[5,9,6,3,9,[[192,2,1,3,4],[193,6,4,4,8],[208,1,1,8,9]]],[25,1,1,9,10,[[845,1,1,9,10]]]],[3598,5137,5289,5967,5977,5987,5989,5991,6446,21628]]]]},{"k":"H2765","v":[["Horem",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6359]]]]},{"k":"H2766","v":[["Harim",[11,11,[[12,1,1,0,1,[[361,1,1,0,1]]],[14,4,4,1,5,[[404,2,2,1,3],[412,2,2,3,5]]],[15,6,6,5,11,[[415,1,1,5,6],[419,2,2,6,8],[422,2,2,8,10],[424,1,1,10,11]]]],[11023,12059,12066,12273,12283,12338,12455,12462,12554,12576,12639]]]]},{"k":"H2767","v":[["Hormah",[9,9,[[3,2,2,0,2,[[130,1,1,0,1],[137,1,1,1,2]]],[4,1,1,2,3,[[153,1,1,2,3]]],[5,3,3,3,6,[[198,1,1,3,4],[201,1,1,4,5],[205,1,1,5,6]]],[6,1,1,6,7,[[211,1,1,6,7]]],[8,1,1,7,8,[[265,1,1,7,8]]],[12,1,1,8,9,[[341,1,1,8,9]]]],[4153,4343,4936,6144,6232,6325,6526,8008,10415]]]]},{"k":"H2768","v":[["Hermon",[13,13,[[4,3,3,0,3,[[155,2,2,0,2],[156,1,1,2,3]]],[5,6,6,3,9,[[197,2,2,3,5],[198,2,2,5,7],[199,2,2,7,9]]],[12,1,1,9,10,[[342,1,1,9,10]]],[18,2,2,10,12,[[566,1,1,10,11],[610,1,1,11,12]]],[21,1,1,12,13,[[674,1,1,12,13]]]],[4983,4984,5052,6110,6124,6131,6135,6159,6165,10451,15338,16172,17590]]]]},{"k":"H2769","v":[["Hermonites",[1,1,[[18,1,1,0,1,[[519,1,1,0,1]]]],[14561]]]]},{"k":"H2770","v":[["sickle",[2,2,[[4,2,2,0,2,[[168,1,1,0,1],[175,1,1,1,2]]]],[5351,5525]]]]},{"k":"H2771","v":[["*",[12,11,[[0,7,7,0,7,[[10,2,2,0,2],[11,2,2,2,4],[26,1,1,4,5],[27,1,1,5,6],[28,1,1,6,7]]],[11,1,1,7,8,[[331,1,1,7,8]]],[12,2,1,8,9,[[339,2,1,8,9]]],[22,1,1,9,10,[[715,1,1,9,10]]],[25,1,1,10,11,[[828,1,1,10,11]]]],[297,298,302,303,770,783,799,10073,10352,18364,21144]]],["+",[2,2,[[0,2,2,0,2,[[11,1,1,0,1],[28,1,1,1,2]]]],[302,799]]],["Haran",[10,9,[[0,5,5,0,5,[[10,2,2,0,2],[11,1,1,2,3],[26,1,1,3,4],[27,1,1,4,5]]],[11,1,1,5,6,[[331,1,1,5,6]]],[12,2,1,6,7,[[339,2,1,6,7]]],[22,1,1,7,8,[[715,1,1,7,8]]],[25,1,1,8,9,[[828,1,1,8,9]]]],[297,298,303,770,783,10073,10352,18364,21144]]]]},{"k":"H2772","v":[["Horonite",[3,3,[[15,3,3,0,3,[[414,2,2,0,2],[425,1,1,2,3]]]],[12317,12326,12699]]]]},{"k":"H2773","v":[["*",[4,4,[[22,1,1,0,1,[[693,1,1,0,1]]],[23,3,3,1,4,[[792,3,3,1,4]]]],[17965,20083,20085,20114]]],["+",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20083]]],["Horonaim",[3,3,[[22,1,1,0,1,[[693,1,1,0,1]]],[23,2,2,1,3,[[792,2,2,1,3]]]],[17965,20085,20114]]]]},{"k":"H2774","v":[["Harnepher",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10571]]]]},{"k":"H2775","v":[["*",[4,4,[[4,1,1,0,1,[[180,1,1,0,1]]],[6,2,2,1,3,[[218,1,1,1,2],[224,1,1,2,3]]],[17,1,1,3,4,[[444,1,1,3,4]]]],[5638,6732,6927,13058]]],["itch",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5638]]],["sun",[3,3,[[6,2,2,0,2,[[218,1,1,0,1],[224,1,1,1,2]]],[17,1,1,2,3,[[444,1,1,2,3]]]],[6732,6927,13058]]]]},{"k":"H2776","v":[["Heres",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6544]]]]},{"k":"H2777","v":[["east",[1,1,[[23,1,1,0,1,[[763,1,1,0,1]]]],[19409]]]]},{"k":"H2778","v":[["*",[41,40,[[2,1,1,0,1,[[108,1,1,0,1]]],[6,2,2,1,3,[[215,1,1,1,2],[218,1,1,2,3]]],[8,5,5,3,8,[[252,5,5,3,8]]],[9,2,2,8,10,[[287,1,1,8,9],[289,1,1,9,10]]],[11,4,4,10,14,[[331,4,4,10,14]]],[12,1,1,14,15,[[357,1,1,14,15]]],[13,1,1,15,16,[[398,1,1,15,16]]],[15,1,1,16,17,[[418,1,1,16,17]]],[17,1,1,17,18,[[462,1,1,17,18]]],[18,12,11,18,29,[[519,1,1,18,19],[521,1,1,19,20],[532,1,1,20,21],[534,1,1,21,22],[546,1,1,22,23],[551,2,2,23,25],[556,1,1,25,26],[566,2,1,26,27],[579,1,1,27,28],[596,1,1,28,29]]],[19,3,3,29,32,[[641,1,1,29,30],[644,1,1,30,31],[654,1,1,31,32]]],[22,6,6,32,38,[[696,1,1,32,33],[715,4,4,33,37],[743,1,1,37,38]]],[35,2,2,38,40,[[907,2,2,38,40]]]],[3301,6641,6734,7628,7643,7644,7654,7663,8601,8662,10065,10077,10083,10084,10933,11892,12414,13487,14565,14587,14744,14771,14944,15058,15066,15197,15377,15529,15940,16803,16878,17180,18003,18356,18369,18375,18376,18904,22813,22815]]],["+",[5,5,[[8,2,2,0,2,[[252,2,2,0,2]]],[9,1,1,2,3,[[287,1,1,2,3]]],[12,1,1,3,4,[[357,1,1,3,4]]],[35,1,1,4,5,[[907,1,1,4,5]]]],[7628,7643,8601,10933,22813]]],["betrothed",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3301]]],["blasphemed",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18904]]],["defied",[3,3,[[8,2,2,0,2,[[252,2,2,0,2]]],[9,1,1,2,3,[[289,1,1,2,3]]]],[7654,7663,8662]]],["defy",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7644]]],["jeoparded",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6641]]],["rail",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11892]]],["reproach",[10,10,[[11,2,2,0,2,[[331,2,2,0,2]]],[15,1,1,2,3,[[418,1,1,2,3]]],[17,1,1,3,4,[[462,1,1,3,4]]],[18,4,4,4,8,[[519,1,1,4,5],[534,1,1,5,6],[551,1,1,6,7],[579,1,1,7,8]]],[22,2,2,8,10,[[715,2,2,8,10]]]],[10065,10077,12414,13487,14565,14771,15058,15529,18356,18369]]],["reproached",[11,10,[[11,2,2,0,2,[[331,2,2,0,2]]],[18,6,5,2,7,[[532,1,1,2,3],[546,1,1,3,4],[551,1,1,4,5],[556,1,1,5,6],[566,2,1,6,7]]],[22,2,2,7,9,[[715,2,2,7,9]]],[35,1,1,9,10,[[907,1,1,9,10]]]],[10083,10084,14744,14944,15066,15197,15377,18375,18376,22815]]],["reproacheth",[5,5,[[18,2,2,0,2,[[521,1,1,0,1],[596,1,1,1,2]]],[19,3,3,2,5,[[641,1,1,2,3],[644,1,1,3,4],[654,1,1,4,5]]]],[14587,15940,16803,16878,17180]]],["upbraid",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6734]]],["winter",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18003]]]]},{"k":"H2779","v":[["*",[7,7,[[0,1,1,0,1,[[7,1,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]],[18,1,1,2,3,[[551,1,1,2,3]]],[19,1,1,3,4,[[647,1,1,3,4]]],[23,1,1,4,5,[[780,1,1,4,5]]],[29,1,1,5,6,[[881,1,1,5,6]]],[37,1,1,6,7,[[924,1,1,6,7]]]],[205,13536,15065,16958,19864,22410,23076]]],["+",[2,2,[[19,1,1,0,1,[[647,1,1,0,1]]],[23,1,1,1,2,[[780,1,1,1,2]]]],[16958,19864]]],["winter",[4,4,[[0,1,1,0,1,[[7,1,1,0,1]]],[18,1,1,1,2,[[551,1,1,1,2]]],[29,1,1,2,3,[[881,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[205,15065,22410,23076]]],["youth",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13536]]]]},{"k":"H2780","v":[["Hareph",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10357]]]]},{"k":"H2781","v":[["*",[73,72,[[0,2,2,0,2,[[29,1,1,0,1],[33,1,1,1,2]]],[5,1,1,2,3,[[191,1,1,2,3]]],[8,3,3,3,6,[[246,1,1,3,4],[252,1,1,4,5],[260,1,1,5,6]]],[9,1,1,6,7,[[279,1,1,6,7]]],[15,4,4,7,11,[[413,1,1,7,8],[414,1,1,8,9],[416,1,1,9,10],[417,1,1,10,11]]],[17,2,2,11,13,[[451,1,1,11,12],[454,1,1,12,13]]],[18,20,20,13,33,[[492,1,1,13,14],[499,1,1,14,15],[508,1,1,15,16],[516,1,1,16,17],[521,1,1,17,18],[546,5,5,18,23],[548,1,1,23,24],[551,1,1,24,25],[555,1,1,25,26],[556,2,2,26,28],[566,2,2,28,30],[586,1,1,30,31],[596,2,2,31,33]]],[19,2,2,33,35,[[633,1,1,33,34],[645,1,1,34,35]]],[22,6,6,35,41,[[682,1,1,35,36],[703,1,1,36,37],[708,1,1,37,38],[725,1,1,38,39],[729,1,1,39,40],[732,1,1,40,41]]],[23,12,12,41,53,[[750,1,1,41,42],[759,1,1,42,43],[764,1,1,43,44],[767,1,1,44,45],[768,1,1,45,46],[773,1,1,46,47],[775,1,1,47,48],[786,1,1,48,49],[788,2,2,49,51],[793,1,1,51,52],[795,1,1,52,53]]],[24,3,3,53,56,[[799,2,2,53,55],[801,1,1,55,56]]],[25,7,7,56,63,[[806,2,2,56,58],[817,1,1,58,59],[822,1,1,59,60],[823,1,1,60,61],[837,2,2,61,63]]],[26,4,3,63,66,[[858,1,1,63,64],[860,2,1,64,65],[861,1,1,65,66]]],[27,1,1,66,67,[[873,1,1,66,67]]],[28,2,2,67,69,[[877,2,2,67,69]]],[32,1,1,69,70,[[898,1,1,69,70]]],[35,2,2,70,72,[[907,1,1,70,71],[908,1,1,71,72]]]],[853,994,5943,7447,7644,7900,8330,12299,12324,12363,12391,13248,13302,14090,14210,14342,14520,14584,14942,14944,14945,14954,14955,14989,15070,15179,15189,15197,15367,15376,15780,15920,15937,16573,16904,17734,18126,18222,18602,18680,18727,19099,19330,19430,19524,19533,19653,19710,19993,20018,20022,20140,20263,20384,20415,20443,20560,20561,20819,20972,20980,21374,21389,22004,22054,22083,22266,22328,22330,22664,22813,22838]]],["+",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12391]]],["Reproach",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14955]]],["rebuke",[2,2,[[22,1,1,0,1,[[703,1,1,0,1]]],[23,1,1,1,2,[[759,1,1,1,2]]]],[18126,19330]]],["reproach",[63,62,[[0,2,2,0,2,[[29,1,1,0,1],[33,1,1,1,2]]],[5,1,1,2,3,[[191,1,1,2,3]]],[8,3,3,3,6,[[246,1,1,3,4],[252,1,1,4,5],[260,1,1,5,6]]],[15,3,3,6,9,[[413,1,1,6,7],[414,1,1,7,8],[416,1,1,8,9]]],[17,1,1,9,10,[[454,1,1,9,10]]],[18,17,17,10,27,[[492,1,1,10,11],[499,1,1,11,12],[508,1,1,12,13],[516,1,1,13,14],[521,1,1,14,15],[546,3,3,15,18],[548,1,1,18,19],[555,1,1,19,20],[556,2,2,20,22],[566,2,2,22,24],[586,1,1,24,25],[596,2,2,25,27]]],[19,2,2,27,29,[[633,1,1,27,28],[645,1,1,28,29]]],[22,4,4,29,33,[[682,1,1,29,30],[708,1,1,30,31],[729,1,1,31,32],[732,1,1,32,33]]],[23,11,11,33,44,[[750,1,1,33,34],[764,1,1,34,35],[767,1,1,35,36],[768,1,1,36,37],[773,1,1,37,38],[775,1,1,38,39],[786,1,1,39,40],[788,2,2,40,42],[793,1,1,42,43],[795,1,1,43,44]]],[24,3,3,44,47,[[799,2,2,44,46],[801,1,1,46,47]]],[25,7,7,47,54,[[806,2,2,47,49],[817,1,1,49,50],[822,1,1,50,51],[823,1,1,51,52],[837,2,2,52,54]]],[26,3,2,54,56,[[858,1,1,54,55],[860,2,1,55,56]]],[27,1,1,56,57,[[873,1,1,56,57]]],[28,2,2,57,59,[[877,2,2,57,59]]],[32,1,1,59,60,[[898,1,1,59,60]]],[35,2,2,60,62,[[907,1,1,60,61],[908,1,1,61,62]]]],[853,994,5943,7447,7644,7900,12299,12324,12363,13302,14090,14210,14342,14520,14584,14942,14945,14954,14989,15179,15189,15197,15367,15376,15780,15920,15937,16573,16904,17734,18222,18680,18727,19099,19430,19524,19533,19653,19710,19993,20018,20022,20140,20263,20384,20415,20443,20560,20561,20819,20972,20980,21374,21389,22004,22054,22266,22328,22330,22664,22813,22838]]],["reproaches",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14944]]],["reproacheth",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15070]]],["reproachfully",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13248]]],["shame",[3,3,[[9,1,1,0,1,[[279,1,1,0,1]]],[22,1,1,1,2,[[725,1,1,1,2]]],[26,1,1,2,3,[[861,1,1,2,3]]]],[8330,18602,22083]]]]},{"k":"H2782","v":[["*",[12,12,[[1,1,1,0,1,[[60,1,1,0,1]]],[2,1,1,1,2,[[111,1,1,1,2]]],[5,1,1,2,3,[[196,1,1,2,3]]],[9,1,1,3,4,[[271,1,1,3,4]]],[10,1,1,4,5,[[310,1,1,4,5]]],[17,1,1,5,6,[[449,1,1,5,6]]],[22,3,3,6,9,[[688,2,2,6,8],[706,1,1,8,9]]],[26,3,3,9,12,[[858,2,2,9,11],[860,1,1,11,12]]]],[1813,3391,6085,8156,9448,13186,17872,17873,18186,22014,22015,22072]]],["+",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6085]]],["bestir",[1,1,[[9,1,1,0,1,[[271,1,1,0,1]]]],[8156]]],["decided",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9448]]],["decreed",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17872]]],["determined",[6,6,[[17,1,1,0,1,[[449,1,1,0,1]]],[22,2,2,1,3,[[688,1,1,1,2],[706,1,1,2,3]]],[26,3,3,3,6,[[858,2,2,3,5],[860,1,1,5,6]]]],[13186,17873,18186,22014,22015,22072]]],["maimed",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3391]]],["move",[1,1,[[1,1,1,0,1,[[60,1,1,0,1]]]],[1813]]]]},{"k":"H2783","v":[["loins",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21880]]]]},{"k":"H2784","v":[["bands",[2,2,[[18,1,1,0,1,[[550,1,1,0,1]]],[22,1,1,1,2,[[736,1,1,1,2]]]],[15024,18792]]]]},{"k":"H2785","v":[["+",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3827]]]]},{"k":"H2786","v":[["*",[5,5,[[17,1,1,0,1,[[451,1,1,0,1]]],[18,3,3,1,4,[[512,1,1,1,2],[514,1,1,2,3],[589,1,1,3,4]]],[24,1,1,4,5,[[798,1,1,4,5]]]],[13247,14426,14462,15813,20348]]],["gnash",[2,2,[[18,1,1,0,1,[[589,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]]],[15813,20348]]],["gnashed",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14426]]],["gnasheth",[2,2,[[17,1,1,0,1,[[451,1,1,0,1]]],[18,1,1,1,2,[[514,1,1,1,2]]]],[13247,14462]]]]},{"k":"H2787","v":[["*",[10,10,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,2,2,1,3,[[546,1,1,1,2],[579,1,1,2,3]]],[19,1,1,3,4,[[653,1,1,3,4]]],[22,1,1,4,5,[[702,1,1,4,5]]],[23,1,1,5,6,[[750,1,1,5,6]]],[25,4,4,6,10,[[816,2,2,6,8],[825,2,2,8,10]]]],[13587,14938,15524,17162,18101,19118,20758,20759,21066,21067]]],["burn",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21067]]],["burned",[7,7,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,1,1,1,2,[[579,1,1,1,2]]],[22,1,1,2,3,[[702,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]],[25,3,3,4,7,[[816,2,2,4,6],[825,1,1,6,7]]]],[13587,15524,18101,19118,20758,20759,21066]]],["dried",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14938]]],["kindle",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17162]]]]},{"k":"H2788","v":[["places",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19363]]]]},{"k":"H2789","v":[["*",[17,16,[[2,5,5,0,5,[[95,1,1,0,1],[100,1,1,1,2],[103,2,2,2,4],[104,1,1,4,5]]],[3,1,1,5,6,[[121,1,1,5,6]]],[17,2,2,6,8,[[437,1,1,6,7],[476,1,1,7,8]]],[18,1,1,8,9,[[499,1,1,8,9]]],[19,1,1,9,10,[[653,1,1,9,10]]],[22,3,2,10,12,[[708,1,1,10,11],[723,2,1,11,12]]],[23,2,2,12,14,[[763,1,1,12,13],[776,1,1,13,14]]],[24,1,1,14,15,[[800,1,1,14,15]]],[25,1,1,15,16,[[824,1,1,15,16]]]],[2877,3030,3116,3161,3180,3809,12899,13918,14219,17164,18231,18570,19408,19745,20422,21041]]],["earth",[1,1,[[2,1,1,0,1,[[104,1,1,0,1]]]],[3180]]],["earthen",[8,8,[[2,4,4,0,4,[[95,1,1,0,1],[100,1,1,1,2],[103,2,2,2,4]]],[3,1,1,4,5,[[121,1,1,4,5]]],[23,2,2,5,7,[[763,1,1,5,6],[776,1,1,6,7]]],[24,1,1,7,8,[[800,1,1,7,8]]]],[2877,3030,3116,3161,3809,19408,19745,20422]]],["potsherd",[4,4,[[17,1,1,0,1,[[437,1,1,0,1]]],[18,1,1,1,2,[[499,1,1,1,2]]],[19,1,1,2,3,[[653,1,1,2,3]]],[22,1,1,3,4,[[723,1,1,3,4]]]],[12899,14219,17164,18570]]],["potsherds",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18570]]],["sherd",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18231]]],["sherds",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21041]]],["stones",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13918]]]]},{"k":"H2790","v":[["*",[74,66,[[0,2,2,0,2,[[23,1,1,0,1],[33,1,1,1,2]]],[1,1,1,2,3,[[63,1,1,2,3]]],[3,6,4,3,7,[[146,6,4,3,7]]],[4,1,1,7,8,[[174,1,1,7,8]]],[6,3,3,8,11,[[224,1,1,8,9],[226,1,1,9,10],[228,1,1,10,11]]],[8,4,4,11,15,[[242,1,1,11,12],[243,1,1,12,13],[245,1,1,13,14],[258,1,1,14,15]]],[9,2,2,15,17,[[279,1,1,15,16],[285,1,1,16,17]]],[10,2,2,17,19,[[297,1,1,17,18],[309,1,1,18,19]]],[11,1,1,19,20,[[330,1,1,19,20]]],[15,1,1,20,21,[[417,1,1,20,21]]],[16,3,2,21,23,[[429,2,1,21,22],[432,1,1,22,23]]],[17,11,10,23,33,[[436,1,1,23,24],[439,1,1,24,25],[441,1,1,25,26],[446,1,1,26,27],[448,4,3,27,30],[468,2,2,30,32],[476,1,1,32,33]]],[18,11,9,33,42,[[505,2,1,33,34],[509,1,1,34,35],[512,1,1,35,36],[516,1,1,36,37],[527,2,2,37,39],[560,1,1,39,40],[586,1,1,40,41],[606,2,1,41,42]]],[19,9,8,42,50,[[630,1,1,42,43],[633,2,2,43,45],[638,1,1,45,46],[639,1,1,46,47],[641,2,1,47,48],[644,1,1,48,49],[647,1,1,49,50]]],[22,5,4,50,54,[[706,2,1,50,51],[714,1,1,51,52],[719,1,1,52,53],[720,1,1,53,54]]],[23,4,4,54,58,[[748,1,1,54,55],[761,1,1,55,56],[770,1,1,56,57],[782,1,1,57,58]]],[27,2,2,58,60,[[871,2,2,58,60]]],[29,2,2,60,62,[[884,1,1,60,61],[887,1,1,61,62]]],[32,2,2,62,64,[[895,1,1,62,63],[899,1,1,63,64]]],[34,1,1,64,65,[[903,1,1,64,65]]],[35,1,1,65,66,[[908,1,1,65,66]]]],[612,985,1903,4652,4655,4659,4662,5480,6927,6951,7012,7360,7381,7445,7819,8337,8521,8948,9406,10060,12390,12776,12811,12883,12938,13002,13111,13158,13166,13172,13681,13683,13900,14300,14358,14432,14524,14671,14689,15242,15756,16135,16484,16554,16558,16700,16739,16794,16901,16958,18188,18351,18452,18494,19046,19358,19590,19922,22236,22238,22462,22508,22620,22680,22744,22837]]],["+",[8,5,[[3,2,1,0,1,[[146,2,1,0,1]]],[16,2,1,1,2,[[429,2,1,1,2]]],[17,2,1,2,3,[[448,2,1,2,3]]],[18,2,2,3,5,[[516,1,1,3,4],[560,1,1,4,5]]]],[4662,12776,13158,14524,15242]]],["Cease",[1,1,[[8,1,1,0,1,[[242,1,1,0,1]]]],[7360]]],["Devise",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16484]]],["Hold",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15756]]],["conceal",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13900]]],["deaf",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22680]]],["devise",[2,1,[[19,2,1,0,1,[[641,2,1,0,1]]]],[16794]]],["deviseth",[2,2,[[19,2,2,0,2,[[633,2,2,0,2]]]],[16554,16558]]],["ear",[1,1,[[8,1,1,0,1,[[243,1,1,0,1]]]],[7381]]],["graven",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19358]]],["hold",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8337]]],["imagine",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16739]]],["peace",[19,19,[[0,2,2,0,2,[[23,1,1,0,1],[33,1,1,1,2]]],[1,1,1,2,3,[[63,1,1,2,3]]],[3,4,4,3,7,[[146,4,4,3,7]]],[6,1,1,7,8,[[228,1,1,7,8]]],[8,1,1,8,9,[[245,1,1,8,9]]],[11,1,1,9,10,[[330,1,1,9,10]]],[15,1,1,10,11,[[417,1,1,10,11]]],[17,4,4,11,15,[[446,1,1,11,12],[448,1,1,12,13],[468,2,2,13,15]]],[19,2,2,15,17,[[638,1,1,15,16],[644,1,1,16,17]]],[22,1,1,17,18,[[714,1,1,17,18]]],[23,1,1,18,19,[[748,1,1,18,19]]]],[612,985,1903,4652,4655,4659,4662,7012,7445,10060,12390,13111,13166,13681,13683,16700,16901,18351,19046]]],["plow",[6,6,[[4,1,1,0,1,[[174,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]],[19,1,1,2,3,[[647,1,1,2,3]]],[22,1,1,3,4,[[706,1,1,3,4]]],[27,1,1,4,5,[[871,1,1,4,5]]],[29,1,1,5,6,[[884,1,1,5,6]]]],[5480,12938,16958,18188,22236,22462]]],["plowed",[5,5,[[6,1,1,0,1,[[224,1,1,0,1]]],[18,1,1,1,2,[[606,1,1,1,2]]],[23,1,1,2,3,[[770,1,1,2,3]]],[27,1,1,3,4,[[871,1,1,3,4]]],[32,1,1,4,5,[[895,1,1,4,5]]]],[6927,16135,19590,22238,22620]]],["plowers",[1,1,[[18,1,1,0,1,[[606,1,1,0,1]]]],[16135]]],["plowing",[2,2,[[10,1,1,0,1,[[309,1,1,0,1]]],[17,1,1,1,2,[[436,1,1,1,2]]]],[9406,12883]]],["plowman",[2,2,[[22,1,1,0,1,[[706,1,1,0,1]]],[29,1,1,1,2,[[887,1,1,1,2]]]],[18188,22508]]],["practised",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7819]]],["quiet",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6951]]],["rest",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22837]]],["silence",[5,5,[[18,4,4,0,4,[[509,1,1,0,1],[512,1,1,1,2],[527,2,2,2,4]]],[22,1,1,4,5,[[719,1,1,4,5]]]],[14358,14432,14671,14689,18452]]],["silent",[2,1,[[18,2,1,0,1,[[505,2,1,0,1]]]],[14300]]],["speak",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8521]]],["speaking",[1,1,[[23,1,1,0,1,[[782,1,1,0,1]]]],[19922]]],["still",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18494]]],["tongue",[4,4,[[16,1,1,0,1,[[432,1,1,0,1]]],[17,2,2,1,3,[[441,1,1,1,2],[448,1,1,2,3]]],[34,1,1,3,4,[[903,1,1,3,4]]]],[12811,13002,13172,22744]]],["worker",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8948]]]]},{"k":"H2791","v":[["secretly",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5870]]]]},{"k":"H2792","v":[["Heresh",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10630]]]]},{"k":"H2793","v":[["*",[7,7,[[8,4,4,0,4,[[258,4,4,0,4]]],[13,1,1,4,5,[[393,1,1,4,5]]],[22,1,1,5,6,[[695,1,1,5,6]]],[25,1,1,6,7,[[832,1,1,6,7]]]],[7825,7826,7828,7829,11759,17992,21233]]],["bough",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17992]]],["forests",[1,1,[[13,1,1,0,1,[[393,1,1,0,1]]]],[11759]]],["shroud",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21233]]],["wood",[4,4,[[8,4,4,0,4,[[258,4,4,0,4]]]],[7825,7826,7828,7829]]]]},{"k":"H2794","v":[["artificer",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[101]]]]},{"k":"H2795","v":[["deaf",[9,9,[[1,1,1,0,1,[[53,1,1,0,1]]],[2,1,1,1,2,[[108,1,1,1,2]]],[18,2,2,2,4,[[515,1,1,2,3],[535,1,1,3,4]]],[22,5,5,4,9,[[707,1,1,4,5],[713,1,1,5,6],[720,2,2,6,8],[721,1,1,8,9]]]],[1612,3295,14503,14783,18211,18325,18498,18499,18513]]]]},{"k":"H2796","v":[["*",[37,34,[[1,3,3,0,3,[[77,1,1,0,1],[84,1,1,1,2],[87,1,1,2,3]]],[4,1,1,3,4,[[179,1,1,3,4]]],[8,1,1,4,5,[[248,1,1,4,5]]],[9,2,1,5,6,[[271,2,1,5,6]]],[11,4,4,6,10,[[324,1,1,6,7],[334,1,1,7,8],[336,2,2,8,10]]],[12,5,4,10,14,[[341,1,1,10,11],[351,2,1,11,12],[359,1,1,12,13],[366,1,1,13,14]]],[13,3,2,14,16,[[390,2,1,14,15],[400,1,1,15,16]]],[14,1,1,16,17,[[405,1,1,16,17]]],[22,9,9,17,26,[[681,1,1,17,18],[718,2,2,18,20],[719,1,1,20,21],[722,3,3,21,24],[723,1,1,24,25],[732,1,1,25,26]]],[23,4,4,26,30,[[754,2,2,26,28],[768,1,1,28,29],[773,1,1,29,30]]],[25,1,1,30,31,[[822,1,1,30,31]]],[27,2,2,31,33,[[869,1,1,31,32],[874,1,1,32,33]]],[37,1,1,33,34,[[911,1,1,33,34]]]],[2304,2566,2656,5600,7504,8143,9861,10151,10216,10218,10399,10775,10979,11169,11689,11944,12104,17710,18439,18440,18458,18544,18545,18546,18577,18739,19204,19210,19525,19637,20975,22200,22268,22898]]],["+",[7,5,[[9,2,1,0,1,[[271,2,1,0,1]]],[11,1,1,1,2,[[324,1,1,1,2]]],[12,2,1,2,3,[[351,2,1,2,3]]],[22,2,2,3,5,[[722,2,2,3,5]]]],[8143,9861,10775,18545,18546]]],["artificer",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17710]]],["artificers",[2,2,[[12,1,1,0,1,[[366,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]]],[11169,11944]]],["carpenter",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18458]]],["carpenters",[6,6,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]],[14,1,1,2,3,[[405,1,1,2,3]]],[23,2,2,3,5,[[768,1,1,3,4],[773,1,1,4,5]]],[37,1,1,5,6,[[911,1,1,5,6]]]],[10151,11689,12104,19525,19637,22898]]],["craftsman",[1,1,[[4,1,1,0,1,[[179,1,1,0,1]]]],[5600]]],["craftsmen",[4,4,[[11,2,2,0,2,[[336,2,2,0,2]]],[12,1,1,2,3,[[341,1,1,2,3]]],[27,1,1,3,4,[[874,1,1,3,4]]]],[10216,10218,10399,22268]]],["engraver",[3,3,[[1,3,3,0,3,[[77,1,1,0,1],[84,1,1,1,2],[87,1,1,2,3]]]],[2304,2566,2656]]],["makers",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18577]]],["skilful",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20975]]],["smith",[2,2,[[8,1,1,0,1,[[248,1,1,0,1]]],[22,1,1,1,2,[[732,1,1,1,2]]]],[7504,18739]]],["workers",[1,1,[[12,1,1,0,1,[[359,1,1,0,1]]]],[10979]]],["workman",[5,5,[[22,2,2,0,2,[[718,2,2,0,2]]],[23,2,2,2,4,[[754,2,2,2,4]]],[27,1,1,4,5,[[869,1,1,4,5]]]],[18439,18440,19204,19210,22200]]],["workmen",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18544]]],["wrought",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11689]]]]},{"k":"H2797","v":[["Harsha",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12079,12474]]]]},{"k":"H2798","v":[["*",[2,2,[[12,1,1,0,1,[[341,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[10399,12623]]],["Charashim",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10399]]],["craftsmen",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12623]]]]},{"k":"H2799","v":[["*",[4,2,[[1,4,2,0,2,[[80,2,1,0,1],[84,2,1,1,2]]]],[2425,2564]]],["carving",[2,2,[[1,2,2,0,2,[[80,1,1,0,1],[84,1,1,1,2]]]],[2425,2564]]],["cutting",[2,2,[[1,2,2,0,2,[[80,1,1,0,1],[84,1,1,1,2]]]],[2425,2564]]]]},{"k":"H2800","v":[["*",[3,3,[[6,3,3,0,3,[[214,3,3,0,3]]]],[6601,6612,6615]]],["+",[2,2,[[6,2,2,0,2,[[214,2,2,0,2]]]],[6601,6612]]],["Gentiles",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6615]]]]},{"k":"H2801","v":[["graven",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2454]]]]},{"k":"H2802","v":[["Hareth",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7792]]]]},{"k":"H2803","v":[["*",[124,122,[[0,5,4,0,4,[[14,1,1,0,1],[30,1,1,1,2],[37,1,1,2,3],[49,2,1,3,4]]],[1,13,12,4,16,[[75,2,2,4,6],[77,2,2,6,8],[80,1,1,8,9],[84,3,2,9,11],[85,2,2,11,13],[87,1,1,13,14],[88,2,2,14,16]]],[2,8,8,16,24,[[96,1,1,16,17],[106,1,1,17,18],[114,4,4,18,22],[116,2,2,22,24]]],[3,3,3,24,27,[[134,2,2,24,26],[139,1,1,26,27]]],[4,2,2,27,29,[[154,2,2,27,29]]],[5,1,1,29,30,[[199,1,1,29,30]]],[8,2,2,30,32,[[236,1,1,30,31],[253,1,1,31,32]]],[9,4,4,32,36,[[270,1,1,32,33],[280,2,2,33,35],[285,1,1,35,36]]],[10,1,1,36,37,[[300,1,1,36,37]]],[11,2,2,37,39,[[324,1,1,37,38],[334,1,1,38,39]]],[13,3,3,39,42,[[368,1,1,39,40],[375,1,1,40,41],[392,1,1,41,42]]],[15,3,3,42,45,[[418,2,2,42,44],[425,1,1,44,45]]],[16,3,3,45,48,[[433,1,1,45,46],[434,2,2,46,48]]],[17,10,10,48,58,[[441,1,1,48,49],[448,1,1,49,50],[453,1,1,50,51],[454,2,2,51,53],[468,1,1,53,54],[470,1,1,54,55],[476,3,3,55,58]]],[18,18,18,58,76,[[487,1,1,58,59],[498,1,1,59,60],[509,1,1,60,61],[512,2,2,61,63],[513,1,1,63,64],[517,1,1,64,65],[518,1,1,65,66],[521,1,1,66,67],[529,1,1,67,68],[550,1,1,68,69],[554,1,1,69,70],[565,1,1,70,71],[583,1,1,71,72],[596,1,1,72,73],[617,2,2,73,75],[621,1,1,75,76]]],[19,5,5,76,81,[[643,2,2,76,78],[644,1,1,78,79],[651,1,1,79,80],[654,1,1,80,81]]],[22,12,12,81,93,[[680,1,1,81,82],[683,1,1,82,83],[688,1,1,83,84],[691,1,1,84,85],[707,2,2,85,87],[710,1,1,87,88],[711,1,1,88,89],[718,2,2,89,91],[731,2,2,91,93]]],[23,12,12,93,105,[[755,1,1,93,94],[762,3,3,94,97],[767,1,1,97,98],[770,1,1,98,99],[773,1,1,99,100],[780,1,1,100,101],[792,1,1,101,102],[793,2,2,102,104],[794,1,1,104,105]]],[24,2,2,105,107,[[798,1,1,105,106],[800,1,1,106,107]]],[25,2,2,107,109,[[812,1,1,107,108],[839,1,1,108,109]]],[26,2,2,109,111,[[860,2,2,109,111]]],[27,2,2,111,113,[[868,1,1,111,112],[869,1,1,112,113]]],[29,1,1,113,114,[[884,1,1,113,114]]],[31,1,1,114,115,[[889,1,1,114,115]]],[32,2,2,115,117,[[894,2,2,115,117]]],[33,2,2,117,119,[[900,2,2,117,119]]],[37,2,2,119,121,[[917,1,1,119,120],[918,1,1,120,121]]],[38,1,1,121,122,[[927,1,1,121,122]]]],[366,888,1134,1526,2236,2266,2299,2308,2424,2563,2566,2574,2601,2656,2667,2672,2897,3239,3496,3500,3519,3521,3588,3593,4284,4287,4425,4949,4958,6157,7225,7701,8122,8369,8370,8530,9100,9865,10152,11225,11384,11747,12403,12407,12684,12820,12858,12859,13004,13177,13279,13308,13312,13660,13722,13915,13917,13920,14043,14202,14357,14414,14430,14442,14542,14549,14593,14712,15036,15098,15312,15682,15957,16265,16267,16308,16849,16870,16901,17087,17183,17707,17767,17857,17923,18209,18210,18274,18287,18435,18437,18714,18715,19245,19392,19395,19402,19511,19575,19646,19845,20082,20147,20157,20211,20340,20422,20657,21435,22060,22061,22193,22206,22455,22535,22596,22598,22693,22695,22972,22993,23136]]],["+",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[37,1,1,1,2,[[918,1,1,1,2]]]],[3496,22993]]],["Thinkest",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13722]]],["account",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16308]]],["accounted",[5,5,[[4,2,2,0,2,[[154,2,2,0,2]]],[10,1,1,2,3,[[300,1,1,2,3]]],[13,1,1,3,4,[[375,1,1,3,4]]],[22,1,1,4,5,[[680,1,1,4,5]]]],[4949,4958,9100,11384,17707]]],["conceived",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20157]]],["considered",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15098]]],["count",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[17,1,1,1,2,[[454,1,1,1,2]]]],[3521,13312]]],["counted",[18,18,[[0,2,2,0,2,[[14,1,1,0,1],[30,1,1,1,2]]],[2,1,1,2,3,[[114,1,1,2,3]]],[3,1,1,3,4,[[134,1,1,3,4]]],[5,1,1,4,5,[[199,1,1,4,5]]],[15,1,1,5,6,[[425,1,1,5,6]]],[17,2,2,6,8,[[453,1,1,6,7],[476,1,1,7,8]]],[18,3,3,8,11,[[521,1,1,8,9],[565,1,1,9,10],[583,1,1,10,11]]],[19,2,2,11,13,[[644,1,1,11,12],[654,1,1,12,13]]],[22,4,4,13,17,[[683,1,1,13,14],[710,1,1,14,15],[718,2,2,15,17]]],[27,1,1,17,18,[[869,1,1,17,18]]]],[366,888,3500,4287,6157,12684,13279,13917,14593,15312,15682,16901,17183,17767,18274,18435,18437,22206]]],["counteth",[2,2,[[17,2,2,0,2,[[454,1,1,0,1],[468,1,1,1,2]]]],[13308,13660]]],["cunning",[8,8,[[1,8,8,0,8,[[75,2,2,0,2],[77,2,2,2,4],[85,2,2,4,6],[88,2,2,6,8]]]],[2236,2266,2299,2308,2574,2601,2667,2672]]],["devise",[13,13,[[1,3,3,0,3,[[80,1,1,0,1],[84,2,2,1,3]]],[9,1,1,3,4,[[280,1,1,3,4]]],[18,3,3,4,7,[[512,2,2,4,6],[518,1,1,6,7]]],[19,1,1,7,8,[[643,1,1,7,8]]],[23,2,2,8,10,[[762,2,2,8,10]]],[25,1,1,10,11,[[812,1,1,10,11]]],[32,2,2,11,13,[[894,2,2,11,13]]]],[2424,2563,2566,8370,14414,14430,14549,16870,19395,19402,20657,22596,22598]]],["devised",[5,5,[[16,3,3,0,3,[[433,1,1,0,1],[434,2,2,1,3]]],[23,2,2,3,5,[[755,1,1,3,4],[792,1,1,4,5]]]],[12820,12858,12859,19245,20082]]],["deviseth",[4,4,[[18,2,2,0,2,[[513,1,1,0,1],[529,1,1,1,2]]],[19,2,2,2,4,[[643,1,1,2,3],[651,1,1,3,4]]]],[14442,14712,16849,17087]]],["esteem",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18715]]],["esteemed",[4,4,[[22,3,3,0,3,[[707,2,2,0,2],[731,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]]],[18209,18210,18714,20422]]],["esteemeth",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13915]]],["forecast",[2,2,[[26,2,2,0,2,[[860,2,2,0,2]]]],[22060,22061]]],["holdest",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13177]]],["imagine",[5,5,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,1,1,1,2,[[617,1,1,1,2]]],[27,1,1,2,3,[[868,1,1,2,3]]],[33,1,1,3,4,[[900,1,1,3,4]]],[37,1,1,4,5,[[917,1,1,4,5]]]],[13004,16265,22193,22693,22972]]],["imagined",[2,2,[[18,2,2,0,2,[[487,1,1,0,1],[498,1,1,1,2]]]],[14043,14202]]],["imagineth",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22695]]],["impute",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8530]]],["imputed",[2,2,[[2,2,2,0,2,[[96,1,1,0,1],[106,1,1,1,2]]]],[2897,3239]]],["imputeth",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14357]]],["invent",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22455]]],["like",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22535]]],["meant",[1,1,[[0,1,1,0,1,[[49,1,1,0,1]]]],[1526]]],["men",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11747]]],["out",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11225]]],["purpose",[2,2,[[23,2,2,0,2,[[770,1,1,0,1],[780,1,1,1,2]]]],[19575,19845]]],["purposed",[4,4,[[18,1,1,0,1,[[617,1,1,0,1]]],[23,2,2,1,3,[[793,1,1,1,2],[794,1,1,2,3]]],[24,1,1,3,4,[[798,1,1,3,4]]]],[16267,20147,20211,20340]]],["reckon",[3,3,[[2,3,3,0,3,[[114,1,1,0,1],[116,2,2,1,3]]]],[3519,3588,3593]]],["reckoned",[4,4,[[3,2,2,0,2,[[134,1,1,0,1],[139,1,1,1,2]]],[9,1,1,2,3,[[270,1,1,2,3]]],[11,1,1,3,4,[[324,1,1,3,4]]]],[4284,4425,8122,9865]]],["reckoning",[1,1,[[11,1,1,0,1,[[334,1,1,0,1]]]],[10152]]],["regard",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17923]]],["regardeth",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18287]]],["think",[6,6,[[15,1,1,0,1,[[418,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[22,1,1,2,3,[[688,1,1,2,3]]],[23,2,2,3,5,[[767,1,1,3,4],[773,1,1,4,5]]],[25,1,1,5,6,[[839,1,1,5,6]]]],[12407,13920,17857,19511,19646,21435]]],["thinketh",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14542]]],["thought",[10,10,[[0,2,2,0,2,[[37,1,1,0,1],[49,1,1,1,2]]],[8,2,2,2,4,[[236,1,1,2,3],[253,1,1,3,4]]],[9,1,1,4,5,[[280,1,1,4,5]]],[15,1,1,5,6,[[418,1,1,5,6]]],[18,2,2,6,8,[[550,1,1,6,7],[596,1,1,7,8]]],[23,1,1,8,9,[[762,1,1,8,9]]],[38,1,1,9,10,[[927,1,1,9,10]]]],[1134,1526,7225,7701,8369,12403,15036,15957,19392,23136]]],["workman",[2,2,[[1,2,2,0,2,[[84,1,1,0,1],[87,1,1,1,2]]]],[2566,2656]]]]},{"k":"H2804","v":[["reputed",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21872]]]]},{"k":"H2805","v":[["girdle",[8,8,[[1,7,7,0,7,[[77,3,3,0,3],[78,1,1,3,4],[88,3,3,4,7]]],[2,1,1,7,8,[[97,1,1,7,8]]]],[2301,2320,2321,2341,2669,2684,2685,2924]]]]},{"k":"H2806","v":[["Hashbadana",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12497]]]]},{"k":"H2807","v":[["Hashubah",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10381]]]]},{"k":"H2808","v":[["*",[3,3,[[20,3,3,0,3,[[665,2,2,0,2],[667,1,1,2,3]]]],[17454,17456,17485]]],["account",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17456]]],["device",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17485]]],["reason",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17454]]]]},{"k":"H2809","v":[["*",[38,37,[[3,8,8,0,8,[[137,6,6,0,6],[148,2,2,6,8]]],[4,8,8,8,16,[[153,1,1,8,9],[154,3,3,9,12],[155,2,2,12,14],[156,1,1,14,15],[181,1,1,15,16]]],[5,9,9,16,25,[[195,1,1,16,17],[198,2,2,17,19],[199,5,5,19,24],[207,1,1,24,25]]],[6,2,2,25,27,[[221,2,2,25,27]]],[12,1,1,27,28,[[343,1,1,27,28]]],[15,1,1,28,29,[[421,1,1,28,29]]],[21,1,1,29,30,[[677,1,1,29,30]]],[22,3,3,30,33,[[693,1,1,30,31],[694,2,2,31,33]]],[23,5,4,33,37,[[792,4,3,33,36],[793,1,1,36,37]]]],[4365,4366,4367,4368,4370,4374,4721,4755,4896,4962,4964,4968,4977,4981,5050,5686,6047,6132,6135,6164,6171,6175,6180,6181,6420,6848,6855,10535,12533,17631,17964,17977,17978,20082,20114,20125,20130]]],["+",[3,3,[[3,1,1,0,1,[[137,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[4368,6180,20125]]],["Heshbon",[35,35,[[3,7,7,0,7,[[137,5,5,0,5],[148,2,2,5,7]]],[4,8,8,7,15,[[153,1,1,7,8],[154,3,3,8,11],[155,2,2,11,13],[156,1,1,13,14],[181,1,1,14,15]]],[5,8,8,15,23,[[195,1,1,15,16],[198,2,2,16,18],[199,4,4,18,22],[207,1,1,22,23]]],[6,2,2,23,25,[[221,2,2,23,25]]],[12,1,1,25,26,[[343,1,1,25,26]]],[15,1,1,26,27,[[421,1,1,26,27]]],[21,1,1,27,28,[[677,1,1,27,28]]],[22,3,3,28,31,[[693,1,1,28,29],[694,2,2,29,31]]],[23,4,4,31,35,[[792,3,3,31,34],[793,1,1,34,35]]]],[4365,4366,4367,4370,4374,4721,4755,4896,4962,4964,4968,4977,4981,5050,5686,6047,6132,6135,6164,6171,6175,6181,6420,6848,6855,10535,12533,17631,17964,17977,17978,20082,20114,20125,20130]]]]},{"k":"H2810","v":[["*",[2,2,[[13,1,1,0,1,[[392,1,1,0,1]]],[20,1,1,1,2,[[665,1,1,1,2]]]],[11747,17458]]],["engines",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11747]]],["inventions",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17458]]]]},{"k":"H2811","v":[["Hashabiah",[15,15,[[12,6,6,0,6,[[343,1,1,0,1],[346,1,1,1,2],[362,2,2,2,4],[363,1,1,4,5],[364,1,1,5,6]]],[13,1,1,6,7,[[401,1,1,6,7]]],[14,2,2,7,9,[[410,2,2,7,9]]],[15,6,6,9,15,[[415,1,1,9,10],[422,1,1,10,11],[423,2,2,11,13],[424,2,2,13,15]]]],[10499,10629,11049,11065,11107,11126,11975,12220,12225,12344,12560,12603,12610,12645,12648]]]]},{"k":"H2812","v":[["Hashabnah",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12574]]]]},{"k":"H2813","v":[["Hashabniah",[2,2,[[15,2,2,0,2,[[415,1,1,0,1],[421,1,1,1,2]]]],[12337,12516]]]]},{"k":"H2814","v":[["*",[15,15,[[6,1,1,0,1,[[228,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]],[11,3,3,2,5,[[314,2,2,2,4],[319,1,1,4,5]]],[15,1,1,5,6,[[420,1,1,5,6]]],[18,2,2,6,8,[[516,1,1,6,7],[584,1,1,7,8]]],[20,1,1,8,9,[[661,1,1,8,9]]],[22,6,6,9,15,[[720,1,1,9,10],[735,1,1,10,11],[740,2,2,11,13],[742,1,1,13,14],[743,1,1,14,15]]]],[7002,9483,9554,9556,9716,12504,14514,15728,17366,18494,18776,18855,18860,18897,18903]]],["peace",[9,9,[[11,3,3,0,3,[[314,2,2,0,2],[319,1,1,2,3]]],[18,1,1,3,4,[[516,1,1,3,4]]],[22,5,5,4,9,[[720,1,1,4,5],[735,1,1,5,6],[740,2,2,6,8],[742,1,1,8,9]]]],[9554,9556,9716,14514,18494,18776,18855,18860,18897]]],["silence",[2,2,[[20,1,1,0,1,[[661,1,1,0,1]]],[22,1,1,1,2,[[743,1,1,1,2]]]],[17366,18903]]],["still",[3,3,[[6,1,1,0,1,[[228,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]],[18,1,1,2,3,[[584,1,1,2,3]]]],[7002,9483,15728]]],["stilled",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12504]]]]},{"k":"H2815","v":[["*",[5,5,[[12,1,1,0,1,[[346,1,1,0,1]]],[15,4,4,1,5,[[415,2,2,1,3],[422,1,1,3,4],[423,1,1,4,5]]]],[10629,12338,12350,12572,12603]]],["Hashub",[4,4,[[15,4,4,0,4,[[415,2,2,0,2],[422,1,1,2,3],[423,1,1,3,4]]]],[12338,12350,12572,12603]]],["Hasshub",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10629]]]]},{"k":"H2816","v":[["darkness",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21780]]]]},{"k":"H2817","v":[["*",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12070,12466]]],["Hashupha",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12466]]],["Hasupha",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12070]]]]},{"k":"H2818","v":[["*",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[852,1,1,1,2]]]],[12160,21823]]],["careful",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21823]]],["of",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12160]]]]},{"k":"H2819","v":[["needful",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12193]]]]},{"k":"H2820","v":[["*",[28,28,[[0,4,4,0,4,[[19,1,1,0,1],[21,2,2,1,3],[38,1,1,3,4]]],[8,1,1,4,5,[[260,1,1,4,5]]],[9,1,1,5,6,[[284,1,1,5,6]]],[11,1,1,6,7,[[317,1,1,6,7]]],[14,1,1,7,8,[[411,1,1,7,8]]],[17,7,7,8,15,[[442,1,1,8,9],[451,2,2,9,11],[456,1,1,11,12],[465,1,1,12,13],[468,1,1,13,14],[473,1,1,14,15]]],[18,2,2,15,17,[[496,1,1,15,16],[555,1,1,16,17]]],[19,6,6,17,23,[[637,1,1,17,18],[638,1,1,18,19],[640,1,1,19,20],[644,1,1,20,21],[648,1,1,21,22],[651,1,1,22,23]]],[22,3,3,23,26,[[692,1,1,23,24],[732,1,1,24,25],[736,1,1,25,26]]],[23,1,1,26,27,[[758,1,1,26,27]]],[25,1,1,27,28,[[831,1,1,27,28]]]],[501,559,563,1158,7900,8494,9667,12250,13019,13243,13244,13385,13567,13668,13816,14181,15163,16675,16712,16771,16900,17010,17090,17934,18725,18787,19303,21222]]],["+",[4,4,[[0,2,2,0,2,[[21,2,2,0,2]]],[9,1,1,2,3,[[284,1,1,2,3]]],[11,1,1,3,4,[[317,1,1,3,4]]]],[559,563,8494,9667]]],["asswage",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13243]]],["asswaged",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13244]]],["back",[3,3,[[0,1,1,0,1,[[38,1,1,0,1]]],[17,1,1,1,2,[[468,1,1,1,2]]],[18,1,1,2,3,[[496,1,1,2,3]]]],[1158,13668,14181]]],["darkened",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21222]]],["forbear",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17090]]],["hindereth",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17934]]],["kept",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7900]]],["punished",[1,1,[[14,1,1,0,1,[[411,1,1,0,1]]]],[12250]]],["refrain",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13019]]],["refrained",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19303]]],["refraineth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16675]]],["reserved",[2,2,[[17,2,2,0,2,[[456,1,1,0,1],[473,1,1,1,2]]]],[13385,13816]]],["spare",[3,3,[[17,1,1,0,1,[[465,1,1,0,1]]],[22,2,2,1,3,[[732,1,1,1,2],[736,1,1,2,3]]]],[13567,18725,18787]]],["spared",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15163]]],["spareth",[3,3,[[19,3,3,0,3,[[640,1,1,0,1],[644,1,1,1,2],[648,1,1,2,3]]]],[16771,16900,17010]]],["withheld",[1,1,[[0,1,1,0,1,[[19,1,1,0,1]]]],[501]]],["withholdeth",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16712]]]]},{"k":"H2821","v":[["*",[17,17,[[1,1,1,0,1,[[59,1,1,0,1]]],[17,3,3,1,4,[[438,1,1,1,2],[453,1,1,2,3],[473,1,1,3,4]]],[18,3,3,4,7,[[546,1,1,4,5],[582,1,1,5,6],[616,1,1,6,7]]],[20,2,2,7,9,[[670,2,2,7,9]]],[22,2,2,9,11,[[683,1,1,9,10],[691,1,1,10,11]]],[23,1,1,11,12,[[757,1,1,11,12]]],[24,2,2,12,14,[[800,1,1,12,13],[801,1,1,13,14]]],[29,2,2,14,16,[[883,1,1,14,15],[886,1,1,15,16]]],[32,1,1,16,17,[[895,1,1,16,17]]]],[1792,12913,13282,13795,14958,15634,16251,17525,17526,17769,17916,19282,20428,20459,22431,22490,22614]]],["+",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22431]]],["blacker",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20428]]],["dark",[4,4,[[17,2,2,0,2,[[438,1,1,0,1],[453,1,1,1,2]]],[18,1,1,2,3,[[582,1,1,2,3]]],[32,1,1,3,4,[[895,1,1,3,4]]]],[12913,13282,15634,22614]]],["darken",[1,1,[[29,1,1,0,1,[[886,1,1,0,1]]]],[22490]]],["darkened",[6,6,[[1,1,1,0,1,[[59,1,1,0,1]]],[18,1,1,1,2,[[546,1,1,1,2]]],[20,2,2,2,4,[[670,2,2,2,4]]],[22,2,2,4,6,[[683,1,1,4,5],[691,1,1,5,6]]]],[1792,14958,17525,17526,17769,17916]]],["darkeneth",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13795]]],["darkness",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19282]]],["dim",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20459]]],["hideth",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16251]]]]},{"k":"H2822","v":[["*",[79,76,[[0,4,4,0,4,[[0,4,4,0,4]]],[1,4,3,4,7,[[59,3,2,4,6],[63,1,1,6,7]]],[4,2,2,7,9,[[156,1,1,7,8],[157,1,1,8,9]]],[5,1,1,9,10,[[188,1,1,9,10]]],[8,1,1,10,11,[[237,1,1,10,11]]],[9,2,2,11,13,[[288,2,2,11,13]]],[17,23,23,13,36,[[438,2,2,13,15],[440,1,1,15,16],[445,1,1,16,17],[447,2,2,17,19],[450,3,3,19,22],[452,2,2,22,24],[453,1,1,24,25],[454,1,1,25,26],[455,1,1,26,27],[457,1,1,27,28],[458,1,1,28,29],[459,1,1,29,30],[461,1,1,30,31],[463,1,1,31,32],[464,1,1,32,33],[469,1,1,33,34],[472,1,1,34,35],[473,1,1,35,36]]],[18,10,10,36,46,[[495,1,1,36,37],[512,1,1,37,38],[565,1,1,38,39],[581,1,1,39,40],[582,1,1,40,41],[584,2,2,41,43],[589,1,1,43,44],[616,2,2,44,46]]],[19,2,2,46,48,[[629,1,1,46,47],[647,1,1,47,48]]],[20,6,5,48,53,[[660,2,2,48,50],[663,1,1,50,51],[664,2,1,51,52],[669,1,1,52,53]]],[22,14,13,53,66,[[683,3,2,53,55],[687,1,1,55,56],[707,1,1,56,57],[720,1,1,57,58],[723,3,3,58,61],[725,1,1,61,62],[727,1,1,62,63],[736,1,1,63,64],[737,1,1,64,65],[738,1,1,65,66]]],[24,1,1,66,67,[[799,1,1,66,67]]],[25,2,2,67,69,[[809,1,1,67,68],[833,1,1,68,69]]],[28,2,2,69,71,[[877,2,2,69,71]]],[29,2,2,71,73,[[883,2,2,71,73]]],[32,1,1,73,74,[[899,1,1,73,74]]],[33,1,1,74,75,[[900,1,1,74,75]]],[35,1,1,75,76,[[906,1,1,75,76]]]],[1,3,4,17,1798,1799,1909,5015,5076,5874,7249,8614,8631,12908,12909,12965,13107,13150,13153,13225,13226,13233,13272,13273,13294,13305,13352,13400,13436,13452,13477,13507,13535,13705,13788,13812,14146,14416,15320,15591,15634,15709,15713,15807,16250,16251,16446,16974,17346,17347,17414,17421,17521,17759,17769,17831,18211,18487,18564,18568,18580,18604,18645,18796,18809,18823,20356,20616,21256,22313,22342,22441,22443,22672,22692,22802]]],["+",[3,3,[[18,1,1,0,1,[[584,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]],[22,1,1,2,3,[[707,1,1,2,3]]]],[15713,17346,18211]]],["dark",[7,7,[[5,1,1,0,1,[[188,1,1,0,1]]],[17,2,2,1,3,[[447,1,1,1,2],[459,1,1,2,3]]],[18,2,2,3,5,[[512,1,1,3,4],[565,1,1,4,5]]],[22,1,1,5,6,[[723,1,1,5,6]]],[25,1,1,6,7,[[809,1,1,6,7]]]],[5874,13153,13452,14416,15320,18580,20616]]],["darkness",[66,63,[[0,4,4,0,4,[[0,4,4,0,4]]],[1,4,3,4,7,[[59,3,2,4,6],[63,1,1,6,7]]],[4,2,2,7,9,[[156,1,1,7,8],[157,1,1,8,9]]],[8,1,1,9,10,[[237,1,1,9,10]]],[9,2,2,10,12,[[288,2,2,10,12]]],[17,20,20,12,32,[[438,2,2,12,14],[440,1,1,14,15],[445,1,1,15,16],[447,1,1,16,17],[450,3,3,17,20],[452,2,2,20,22],[453,1,1,22,23],[454,1,1,23,24],[455,1,1,24,25],[457,1,1,25,26],[458,1,1,26,27],[463,1,1,27,28],[464,1,1,28,29],[469,1,1,29,30],[472,1,1,30,31],[473,1,1,31,32]]],[18,7,7,32,39,[[495,1,1,32,33],[581,1,1,33,34],[582,1,1,34,35],[584,1,1,35,36],[589,1,1,36,37],[616,2,2,37,39]]],[19,2,2,39,41,[[629,1,1,39,40],[647,1,1,40,41]]],[20,5,4,41,45,[[660,1,1,41,42],[663,1,1,42,43],[664,2,1,43,44],[669,1,1,44,45]]],[22,10,9,45,54,[[683,3,2,45,47],[687,1,1,47,48],[720,1,1,48,49],[723,2,2,49,51],[725,1,1,51,52],[727,1,1,52,53],[738,1,1,53,54]]],[24,1,1,54,55,[[799,1,1,54,55]]],[25,1,1,55,56,[[833,1,1,55,56]]],[28,2,2,56,58,[[877,2,2,56,58]]],[29,2,2,58,60,[[883,2,2,58,60]]],[32,1,1,60,61,[[899,1,1,60,61]]],[33,1,1,61,62,[[900,1,1,61,62]]],[35,1,1,62,63,[[906,1,1,62,63]]]],[1,3,4,17,1798,1799,1909,5015,5076,7249,8614,8631,12908,12909,12965,13107,13150,13225,13226,13233,13272,13273,13294,13305,13352,13400,13436,13507,13535,13705,13788,13812,14146,15591,15634,15709,15807,16250,16251,16446,16974,17347,17414,17421,17521,17759,17769,17831,18487,18564,18568,18604,18645,18823,20356,21256,22313,22342,22441,22443,22672,22692,22802]]],["night",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13477]]],["obscurity",[2,2,[[22,2,2,0,2,[[736,1,1,0,1],[737,1,1,1,2]]]],[18796,18809]]]]},{"k":"H2823","v":[["mean",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17044]]]]},{"k":"H2824","v":[["*",[2,1,[[18,2,1,0,1,[[495,2,1,0,1]]]],[14129]]],["dark",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14129]]],["darkness",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14129]]]]},{"k":"H2825","v":[["darkness",[5,5,[[0,1,1,0,1,[[14,1,1,0,1]]],[18,2,2,1,3,[[559,1,1,1,2],[616,1,1,2,3]]],[22,2,2,3,5,[[686,1,1,3,4],[728,1,1,4,5]]]],[372,15238,16251,17829,18672]]]]},{"k":"H2826","v":[["feeble",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5565]]]]},{"k":"H2827","v":[["subdueth",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21798]]]]},{"k":"H2828","v":[["Hashum",[5,5,[[14,2,2,0,2,[[404,1,1,0,1],[412,1,1,1,2]]],[15,3,3,2,5,[[419,1,1,2,3],[420,1,1,3,4],[422,1,1,4,5]]]],[12046,12285,12442,12497,12567]]]]},{"k":"H2829","v":[["Heshmon",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6229]]]]},{"k":"H2830","v":[["amber",[3,3,[[25,3,3,0,3,[[802,2,2,0,2],[809,1,1,2,3]]]],[20468,20491,20606]]]]},{"k":"H2831","v":[["Princes",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14931]]]]},{"k":"H2832","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4789,4790]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4790]]],["Hashmonah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4789]]]]},{"k":"H2833","v":[["*",[25,21,[[1,23,20,0,20,[[74,1,1,0,1],[77,11,9,1,10],[78,1,1,10,11],[84,2,2,11,13],[88,8,7,13,20]]],[2,2,1,20,21,[[97,2,1,20,21]]]],[2202,2297,2308,2315,2316,2317,2319,2321,2322,2323,2341,2540,2558,2672,2673,2679,2680,2681,2683,2685,2925]]],["+",[1,1,[[2,1,1,0,1,[[97,1,1,0,1]]]],[2925]]],["breastplate",[24,21,[[1,23,20,0,20,[[74,1,1,0,1],[77,11,9,1,10],[78,1,1,10,11],[84,2,2,11,13],[88,8,7,13,20]]],[2,1,1,20,21,[[97,1,1,20,21]]]],[2202,2297,2308,2315,2316,2317,2319,2321,2322,2323,2341,2540,2558,2672,2673,2679,2680,2681,2683,2685,2925]]]]},{"k":"H2834","v":[["*",[11,10,[[18,1,1,0,1,[[506,1,1,0,1]]],[22,4,4,1,5,[[698,1,1,1,2],[708,1,1,2,3],[725,1,1,3,4],[730,1,1,4,5]]],[23,2,2,5,7,[[757,1,1,5,6],[793,1,1,6,7]]],[25,1,1,7,8,[[805,1,1,7,8]]],[28,2,1,8,9,[[876,2,1,8,9]]],[36,1,1,9,10,[[910,1,1,9,10]]]],[14317,18033,18231,18601,18706,19292,20137,20536,22298,22871]]],["+",[3,2,[[22,1,1,0,1,[[730,1,1,0,1]]],[28,2,1,1,2,[[876,2,1,1,2]]]],[18706,22298]]],["bare",[2,2,[[22,1,1,0,1,[[725,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]]],[18601,20137]]],["discover",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19292]]],["discovereth",[1,1,[[18,1,1,0,1,[[506,1,1,0,1]]]],[14317]]],["out",[1,1,[[36,1,1,0,1,[[910,1,1,0,1]]]],[22871]]],["take",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18231]]],["uncovered",[2,2,[[22,1,1,0,1,[[698,1,1,0,1]]],[25,1,1,1,2,[[805,1,1,1,2]]]],[18033,20536]]]]},{"k":"H2835","v":[["flocks",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9435]]]]},{"k":"H2836","v":[["*",[11,11,[[0,1,1,0,1,[[33,1,1,0,1]]],[1,3,3,1,4,[[76,1,1,1,2],[87,2,2,2,4]]],[4,3,3,4,7,[[159,1,1,4,5],[162,1,1,5,6],[173,1,1,6,7]]],[10,1,1,7,8,[[299,1,1,7,8]]],[13,1,1,8,9,[[374,1,1,8,9]]],[18,1,1,9,10,[[568,1,1,9,10]]],[22,1,1,10,11,[[716,1,1,10,11]]]],[988,2289,2650,2661,5118,5201,5458,9070,11352,15409,18407]]],["+",[1,1,[[13,1,1,0,1,[[374,1,1,0,1]]]],[11352]]],["delight",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5201]]],["desire",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5458]]],["desired",[1,1,[[10,1,1,0,1,[[299,1,1,0,1]]]],[9070]]],["filleted",[3,3,[[1,3,3,0,3,[[76,1,1,0,1],[87,2,2,1,3]]]],[2289,2650,2661]]],["longeth",[1,1,[[0,1,1,0,1,[[33,1,1,0,1]]]],[988]]],["love",[3,3,[[4,1,1,0,1,[[159,1,1,0,1]]],[18,1,1,1,2,[[568,1,1,1,2]]],[22,1,1,2,3,[[716,1,1,2,3]]]],[5118,15409,18407]]]]},{"k":"H2837","v":[["*",[3,3,[[10,1,1,0,1,[[299,1,1,0,1]]],[13,1,1,1,2,[[374,1,1,1,2]]],[22,1,1,2,3,[[699,1,1,2,3]]]],[9052,11352,18039]]],["+",[1,1,[[13,1,1,0,1,[[374,1,1,0,1]]]],[11352]]],["desire",[1,1,[[10,1,1,0,1,[[299,1,1,0,1]]]],[9052]]],["pleasure",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18039]]]]},{"k":"H2838","v":[["fillets",[8,8,[[1,8,8,0,8,[[76,2,2,0,2],[85,1,1,2,3],[87,5,5,3,8]]]],[2282,2283,2604,2643,2644,2645,2650,2652]]]]},{"k":"H2839","v":[["felloes",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8967]]]]},{"k":"H2840","v":[["spokes",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8967]]]]},{"k":"H2841","v":[["dark",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8614]]]]},{"k":"H2842","v":[["chaff",[2,2,[[22,2,2,0,2,[[683,1,1,0,1],[711,1,1,1,2]]]],[17763,18290]]]]},{"k":"H2843","v":[["Hushathite",[5,5,[[9,2,2,0,2,[[287,1,1,0,1],[289,1,1,1,2]]],[12,3,3,2,5,[[348,1,1,2,3],[357,1,1,3,4],[364,1,1,4,5]]]],[8598,8680,10702,10930,11120]]]]},{"k":"H2844","v":[["*",[9,7,[[0,1,1,0,1,[[8,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[17,1,1,2,3,[[476,1,1,2,3]]],[22,4,2,3,5,[[685,1,1,3,4],[686,3,1,4,5]]],[23,2,2,5,7,[[790,1,1,5,6],[794,1,1,6,7]]]],[207,7244,13921,17790,17816,20050,20168]]],["broken",[5,3,[[8,1,1,0,1,[[237,1,1,0,1]]],[22,4,2,1,3,[[685,1,1,1,2],[686,3,1,2,3]]]],[7244,17790,17816]]],["dismayed",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20050]]],["dread",[1,1,[[0,1,1,0,1,[[8,1,1,0,1]]]],[207]]],["fear",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13921]]],["pieces",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20168]]]]},{"k":"H2845","v":[["Heth",[14,12,[[0,13,11,0,11,[[9,1,1,0,1],[22,8,7,1,8],[24,1,1,8,9],[26,2,1,9,10],[48,1,1,10,11]]],[12,1,1,11,12,[[338,1,1,11,12]]]],[249,574,576,578,581,587,589,591,668,773,1505,10265]]]]},{"k":"H2846","v":[["*",[4,4,[[18,1,1,0,1,[[529,1,1,0,1]]],[19,2,2,1,3,[[633,1,1,1,2],[652,1,1,2,3]]],[22,1,1,3,4,[[708,1,1,3,4]]]],[14715,16567,17135,18231]]],["away",[1,1,[[18,1,1,0,1,[[529,1,1,0,1]]]],[14715]]],["heap",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17135]]],["take",[2,2,[[19,1,1,0,1,[[633,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]]],[16567,18231]]]]},{"k":"H2847","v":[["terror",[1,1,[[0,1,1,0,1,[[34,1,1,0,1]]]],[1016]]]]},{"k":"H2848","v":[["roller",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21225]]]]},{"k":"H2849","v":[["fears",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17528]]]]},{"k":"H2850","v":[["*",[46,45,[[0,9,8,0,8,[[14,1,1,0,1],[22,1,1,1,2],[24,1,1,2,3],[25,2,1,3,4],[35,1,1,4,5],[48,2,2,5,7],[49,1,1,7,8]]],[1,7,7,8,15,[[52,2,2,8,10],[62,1,1,10,11],[72,2,2,11,13],[82,1,1,13,14],[83,1,1,14,15]]],[3,1,1,15,16,[[129,1,1,15,16]]],[4,2,2,16,18,[[159,1,1,16,17],[172,1,1,17,18]]],[5,6,6,18,24,[[187,1,1,18,19],[189,1,1,19,20],[195,1,1,20,21],[197,1,1,21,22],[198,1,1,22,23],[210,1,1,23,24]]],[6,2,2,24,26,[[211,1,1,24,25],[213,1,1,25,26]]],[8,1,1,26,27,[[261,1,1,26,27]]],[9,8,8,27,35,[[277,5,5,27,32],[278,2,2,32,34],[289,1,1,34,35]]],[10,4,4,35,39,[[299,1,1,35,36],[300,1,1,36,37],[301,1,1,37,38],[305,1,1,38,39]]],[11,1,1,39,40,[[319,1,1,39,40]]],[12,1,1,40,41,[[348,1,1,40,41]]],[13,2,2,41,43,[[367,1,1,41,42],[374,1,1,42,43]]],[14,1,1,43,44,[[411,1,1,43,44]]],[15,1,1,44,45,[[421,1,1,44,45]]]],[380,581,667,726,1042,1502,1503,1519,1587,1596,1872,2167,2172,2475,2507,4104,5112,5444,5855,5903,6038,6110,6138,6487,6535,6573,7911,8262,8265,8276,8280,8283,8295,8296,8692,9071,9108,9109,9254,9713,10714,11211,11353,12238,12519]]],["Hittite",[24,23,[[0,8,7,0,7,[[22,1,1,0,1],[24,1,1,1,2],[25,2,1,2,3],[35,1,1,3,4],[48,2,2,4,6],[49,1,1,6,7]]],[1,3,3,7,10,[[72,1,1,7,8],[82,1,1,8,9],[83,1,1,9,10]]],[5,2,2,10,12,[[195,1,1,10,11],[197,1,1,11,12]]],[8,1,1,12,13,[[261,1,1,12,13]]],[9,8,8,13,21,[[277,5,5,13,18],[278,2,2,18,20],[289,1,1,20,21]]],[10,1,1,21,22,[[305,1,1,21,22]]],[12,1,1,22,23,[[348,1,1,22,23]]]],[581,667,726,1042,1502,1503,1519,2172,2475,2507,6038,6110,7911,8262,8265,8276,8280,8283,8295,8296,8692,9254,10714]]],["Hittites",[22,22,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,4,4,1,5,[[52,2,2,1,3],[62,1,1,3,4],[72,1,1,4,5]]],[3,1,1,5,6,[[129,1,1,5,6]]],[4,2,2,6,8,[[159,1,1,6,7],[172,1,1,7,8]]],[5,4,4,8,12,[[187,1,1,8,9],[189,1,1,9,10],[198,1,1,10,11],[210,1,1,11,12]]],[6,2,2,12,14,[[211,1,1,12,13],[213,1,1,13,14]]],[10,3,3,14,17,[[299,1,1,14,15],[300,1,1,15,16],[301,1,1,16,17]]],[11,1,1,17,18,[[319,1,1,17,18]]],[13,2,2,18,20,[[367,1,1,18,19],[374,1,1,19,20]]],[14,1,1,20,21,[[411,1,1,20,21]]],[15,1,1,21,22,[[421,1,1,21,22]]]],[380,1587,1596,1872,2167,4104,5112,5444,5855,5903,6138,6487,6535,6573,9071,9108,9109,9713,11211,11353,12238,12519]]]]},{"k":"H2851","v":[["*",[10,10,[[25,10,10,0,10,[[817,2,2,0,2],[827,1,1,2,3],[833,7,7,3,10]]]],[20765,20807,21117,21271,21272,21273,21274,21275,21278,21280]]],["Hittite",[2,2,[[25,2,2,0,2,[[817,2,2,0,2]]]],[20765,20807]]],["terror",[8,8,[[25,8,8,0,8,[[827,1,1,0,1],[833,7,7,1,8]]]],[21117,21271,21272,21273,21274,21275,21278,21280]]]]},{"k":"H2852","v":[["determined",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22012]]]]},{"k":"H2853","v":[["+",[2,1,[[25,2,1,0,1,[[817,2,1,0,1]]]],[20766]]]]},{"k":"H2854","v":[["swaddlingband",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13802]]]]},{"k":"H2855","v":[["Hethlon",[2,2,[[25,2,2,0,2,[[848,1,1,0,1],[849,1,1,1,2]]]],[21694,21703]]]]},{"k":"H2856","v":[["*",[27,24,[[2,1,1,0,1,[[104,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[10,1,1,2,3,[[311,1,1,2,3]]],[15,2,2,3,5,[[421,1,1,3,4],[422,1,1,4,5]]],[16,4,3,5,8,[[428,1,1,5,6],[433,3,2,6,8]]],[17,5,5,8,13,[[444,1,1,8,9],[449,1,1,9,10],[459,1,1,10,11],[468,1,1,11,12],[472,1,1,12,13]]],[21,1,1,13,14,[[674,1,1,13,14]]],[22,3,2,14,16,[[686,1,1,14,15],[707,2,1,15,16]]],[23,4,4,16,20,[[776,4,4,16,20]]],[25,1,1,20,21,[[829,1,1,20,21]]],[26,4,3,21,24,[[858,2,1,21,22],[861,2,2,22,24]]]],[3171,5792,9459,12549,12550,12759,12825,12827,13058,13198,13452,13666,13776,17594,17823,18204,19741,19742,19745,19775,21169,22012,22085,22090]]],["+",[2,2,[[15,2,2,0,2,[[421,1,1,0,1],[422,1,1,1,2]]]],[12549,12550]]],["end",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22012]]],["marked",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13452]]],["seal",[4,4,[[16,1,1,0,1,[[433,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]],[23,1,1,2,3,[[776,1,1,2,3]]],[26,1,1,3,4,[[861,1,1,3,4]]]],[12825,17823,19775,22085]]],["sealed",[11,10,[[10,1,1,0,1,[[311,1,1,0,1]]],[16,3,3,1,4,[[428,1,1,1,2],[433,2,2,2,4]]],[21,1,1,4,5,[[674,1,1,4,5]]],[22,2,1,5,6,[[707,2,1,5,6]]],[23,3,3,6,9,[[776,3,3,6,9]]],[26,1,1,9,10,[[861,1,1,9,10]]]],[9459,12759,12825,12827,17594,18204,19741,19742,19745,22090]]],["sealeth",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13666]]],["stopped",[1,1,[[2,1,1,0,1,[[104,1,1,0,1]]]],[3171]]],["up",[6,6,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,3,3,1,4,[[444,1,1,1,2],[449,1,1,2,3],[472,1,1,3,4]]],[25,1,1,4,5,[[829,1,1,4,5]]],[26,1,1,5,6,[[858,1,1,5,6]]]],[5792,13058,13198,13776,21169,22012]]]]},{"k":"H2857","v":[["sealed",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21922]]]]},{"k":"H2858","v":[["signet",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1144]]]]},{"k":"H2859","v":[["*",[28,27,[[0,1,1,0,1,[[33,1,1,0,1]]],[1,15,14,1,15,[[52,1,1,1,2],[53,1,1,2,3],[67,13,12,3,15]]],[3,1,1,15,16,[[126,1,1,15,16]]],[4,2,2,16,18,[[159,1,1,16,17],[179,1,1,17,18]]],[5,1,1,18,19,[[209,1,1,18,19]]],[6,5,5,19,24,[[211,1,1,19,20],[214,1,1,20,21],[229,3,3,21,24]]],[10,1,1,24,25,[[293,1,1,24,25]]],[13,1,1,25,26,[[384,1,1,25,26]]],[14,1,1,26,27,[[411,1,1,26,27]]]],[989,1580,1619,2000,2001,2004,2005,2006,2007,2011,2013,2014,2016,2023,2026,4017,5114,5608,6472,6525,6610,7028,7031,7033,8817,11543,12251]]],["+",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2007]]],["affinity",[3,3,[[10,1,1,0,1,[[293,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]],[14,1,1,2,3,[[411,1,1,2,3]]]],[8817,11543,12251]]],["law",[21,20,[[1,14,13,0,13,[[52,1,1,0,1],[53,1,1,1,2],[67,12,11,2,13]]],[3,1,1,13,14,[[126,1,1,13,14]]],[4,1,1,14,15,[[179,1,1,14,15]]],[6,5,5,15,20,[[211,1,1,15,16],[214,1,1,16,17],[229,3,3,17,20]]]],[1580,1619,2000,2001,2004,2005,2006,2011,2013,2014,2016,2023,2026,4017,5608,6525,6610,7028,7031,7033]]],["marriages",[3,3,[[0,1,1,0,1,[[33,1,1,0,1]]],[4,1,1,1,2,[[159,1,1,1,2]]],[5,1,1,2,3,[[209,1,1,2,3]]]],[989,5114,6472]]]]},{"k":"H2860","v":[["*",[25,24,[[0,3,2,0,2,[[18,3,2,0,2]]],[1,2,2,2,4,[[53,2,2,2,4]]],[6,2,2,4,6,[[225,1,1,4,5],[229,1,1,5,6]]],[8,7,7,6,13,[[253,6,6,6,12],[257,1,1,12,13]]],[11,1,1,13,14,[[320,1,1,13,14]]],[15,2,2,14,16,[[418,1,1,14,15],[425,1,1,15,16]]],[18,1,1,16,17,[[496,1,1,16,17]]],[22,2,2,17,19,[[739,1,1,17,18],[740,1,1,18,19]]],[23,4,4,19,23,[[751,1,1,19,20],[760,1,1,20,21],[769,1,1,21,22],[777,1,1,22,23]]],[28,1,1,23,24,[[877,1,1,23,24]]]],[469,471,1626,1627,6935,7029,7694,7697,7698,7699,7702,7703,7801,9754,12419,12699,14173,18853,18859,19153,19345,19544,19786,22327]]],["bridegroom",[8,8,[[18,1,1,0,1,[[496,1,1,0,1]]],[22,2,2,1,3,[[739,1,1,1,2],[740,1,1,2,3]]],[23,4,4,3,7,[[751,1,1,3,4],[760,1,1,4,5],[769,1,1,5,6],[777,1,1,6,7]]],[28,1,1,7,8,[[877,1,1,7,8]]]],[14173,18853,18859,19153,19345,19544,19786,22327]]],["husband",[2,2,[[1,2,2,0,2,[[53,2,2,0,2]]]],[1626,1627]]],["law",[15,14,[[0,3,2,0,2,[[18,3,2,0,2]]],[6,2,2,2,4,[[225,1,1,2,3],[229,1,1,3,4]]],[8,7,7,4,11,[[253,6,6,4,10],[257,1,1,10,11]]],[11,1,1,11,12,[[320,1,1,11,12]]],[15,2,2,12,14,[[418,1,1,12,13],[425,1,1,13,14]]]],[469,471,6935,7029,7694,7697,7698,7699,7702,7703,7801,9754,12419,12699]]]]},{"k":"H2861","v":[["espousals",[1,1,[[21,1,1,0,1,[[673,1,1,0,1]]]],[17582]]]]},{"k":"H2862","v":[["away",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13063]]]]},{"k":"H2863","v":[["prey",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17072]]]]},{"k":"H2864","v":[["*",[8,7,[[17,1,1,0,1,[[459,1,1,0,1]]],[25,5,4,1,5,[[809,2,1,1,2],[813,3,3,2,5]]],[29,1,1,5,6,[[887,1,1,5,6]]],[31,1,1,6,7,[[889,1,1,6,7]]]],[13452,20612,20685,20687,20692,22497,22544]]],["Dig",[1,1,[[25,1,1,0,1,[[813,1,1,0,1]]]],[20685]]],["dig",[3,3,[[25,2,2,0,2,[[809,1,1,0,1],[813,1,1,1,2]]],[29,1,1,2,3,[[887,1,1,2,3]]]],[20612,20692,22497]]],["digged",[2,2,[[25,2,2,0,2,[[809,1,1,0,1],[813,1,1,1,2]]]],[20612,20687]]],["rowed",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22544]]],["through",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13452]]]]},{"k":"H2865","v":[["*",[48,45,[[4,2,2,0,2,[[153,1,1,0,1],[183,1,1,1,2]]],[5,3,3,2,5,[[187,1,1,2,3],[194,1,1,3,4],[196,1,1,4,5]]],[8,2,2,5,7,[[237,1,1,5,6],[252,1,1,6,7]]],[11,1,1,7,8,[[331,1,1,7,8]]],[12,2,2,8,10,[[359,1,1,8,9],[365,1,1,9,10]]],[13,3,3,10,13,[[386,2,2,10,12],[398,1,1,12,13]]],[17,4,4,13,17,[[442,1,1,13,14],[466,1,1,14,15],[467,1,1,15,16],[474,1,1,16,17]]],[22,8,8,17,25,[[687,1,1,17,18],[698,1,1,18,19],[708,1,1,19,20],[709,2,2,20,22],[715,1,1,22,23],[729,2,2,23,25]]],[23,18,15,25,40,[[745,2,1,25,26],[752,1,1,26,27],[754,2,1,27,28],[758,1,1,28,29],[761,2,1,29,30],[767,1,1,30,31],[774,1,1,31,32],[790,1,1,32,33],[792,3,3,33,36],[793,1,1,36,37],[794,2,2,37,39],[795,1,1,39,40]]],[25,2,2,40,42,[[803,1,1,40,41],[804,1,1,41,42]]],[30,1,1,42,43,[[888,1,1,42,43]]],[34,1,1,43,44,[[904,1,1,43,44]]],[38,1,1,44,45,[[926,1,1,44,45]]]],[4913,5736,5860,6003,6089,7250,7629,10087,10977,11163,11602,11604,11882,13022,13622,13643,13856,17833,18034,18248,18254,18259,18379,18679,18680,18963,19162,19203,19297,19375,19488,19677,20072,20081,20100,20119,20164,20168,20202,20268,20498,20511,22519,22765,23108]]],["+",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17833]]],["abolished",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18679]]],["affrighted",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13856]]],["afraid",[6,6,[[22,4,4,0,4,[[698,1,1,0,1],[709,2,2,1,3],[729,1,1,3,4]]],[34,1,1,4,5,[[904,1,1,4,5]]],[38,1,1,5,6,[[926,1,1,5,6]]]],[18034,18254,18259,18680,22765,23108]]],["amazed",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13643]]],["broken",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20268]]],["chapt",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19297]]],["confound",[1,1,[[23,1,1,0,1,[[745,1,1,0,1]]]],[18963]]],["discouraged",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4913]]],["dismayed",[27,25,[[4,1,1,0,1,[[183,1,1,0,1]]],[5,3,3,1,4,[[187,1,1,1,2],[194,1,1,2,3],[196,1,1,3,4]]],[8,1,1,4,5,[[252,1,1,4,5]]],[11,1,1,5,6,[[331,1,1,5,6]]],[12,2,2,6,8,[[359,1,1,6,7],[365,1,1,7,8]]],[13,3,3,8,11,[[386,2,2,8,10],[398,1,1,10,11]]],[22,1,1,11,12,[[715,1,1,11,12]]],[23,12,10,12,22,[[745,1,1,12,13],[752,1,1,13,14],[754,2,1,14,15],[761,2,1,15,16],[767,1,1,16,17],[774,1,1,17,18],[790,1,1,18,19],[792,1,1,19,20],[793,1,1,20,21],[794,1,1,21,22]]],[25,2,2,22,24,[[803,1,1,22,23],[804,1,1,23,24]]],[30,1,1,24,25,[[888,1,1,24,25]]]],[5736,5860,6003,6089,7629,10087,10977,11163,11602,11604,11882,18379,18963,19162,19203,19375,19488,19677,20072,20081,20164,20202,20498,20511,22519]]],["down",[3,3,[[22,1,1,0,1,[[708,1,1,0,1]]],[23,2,2,1,3,[[792,2,2,1,3]]]],[18248,20100,20119]]],["pieces",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]]],[7250,20168]]],["scarest",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13022]]],["terrify",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13622]]]]},{"k":"H2866","v":[["down",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12999]]]]},{"k":"H2867","v":[["Hathath",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10398]]]]},{"k":"H2868","v":[["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21928]]]]},{"k":"H2869","v":[["*",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[851,1,1,1,2]]]],[12151,21790]]],["fine",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21790]]],["good",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12151]]]]},{"k":"H2870","v":[["*",[2,2,[[14,1,1,0,1,[[406,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]]],[12117,17788]]],["Tabeal",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17788]]],["Tabeel",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12117]]]]},{"k":"H2871","v":[["attire",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21022]]]]},{"k":"H2872","v":[["*",[2,2,[[6,1,1,0,1,[[219,1,1,0,1]]],[25,1,1,1,2,[[839,1,1,1,2]]]],[6791,21437]]],["middle",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6791]]],["midst",[1,1,[[25,1,1,0,1,[[839,1,1,0,1]]]],[21437]]]]},{"k":"H2873","v":[["*",[11,11,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[8,1,1,3,4,[[260,1,1,3,4]]],[18,1,1,4,5,[[514,1,1,4,5]]],[19,1,1,5,6,[[636,1,1,5,6]]],[23,3,3,6,9,[[755,1,1,6,7],[769,1,1,7,8],[795,1,1,8,9]]],[24,1,1,9,10,[[798,1,1,9,10]]],[25,1,1,10,11,[[822,1,1,10,11]]]],[1306,2114,5642,7872,14464,16640,19245,19568,20252,20353,20954]]],["+",[2,2,[[0,1,1,0,1,[[42,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[1306,20954]]],["kill",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2114]]],["killed",[3,3,[[8,1,1,0,1,[[260,1,1,0,1]]],[19,1,1,1,2,[[636,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]]],[7872,16640,20353]]],["slain",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5642]]],["slaughter",[3,3,[[23,3,3,0,3,[[755,1,1,0,1],[769,1,1,1,2],[795,1,1,2,3]]]],[19245,19568,20252]]],["slay",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14464]]]]},{"k":"H2874","v":[["*",[12,12,[[0,1,1,0,1,[[42,1,1,0,1]]],[19,2,2,1,3,[[634,1,1,1,2],[636,1,1,2,3]]],[22,4,4,3,7,[[712,2,2,3,5],[731,1,1,5,6],[743,1,1,6,7]]],[23,2,2,7,9,[[792,1,1,7,8],[794,1,1,8,9]]],[25,3,3,9,12,[[822,3,3,9,12]]]],[1306,16597,16640,18305,18309,18718,18909,20095,20193,20954,20959,20972]]],["+",[2,2,[[0,1,1,0,1,[[42,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[1306,20954]]],["beasts",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16640]]],["slaughter",[9,9,[[19,1,1,0,1,[[634,1,1,0,1]]],[22,4,4,1,5,[[712,2,2,1,3],[731,1,1,3,4],[743,1,1,4,5]]],[23,2,2,5,7,[[792,1,1,5,6],[794,1,1,6,7]]],[25,2,2,7,9,[[822,2,2,7,9]]]],[16597,18305,18309,18718,18909,20095,20193,20959,20972]]]]},{"k":"H2875","v":[["Tebah",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[571]]]]},{"k":"H2876","v":[["*",[32,32,[[0,6,6,0,6,[[36,1,1,0,1],[38,1,1,1,2],[39,2,2,2,4],[40,2,2,4,6]]],[8,2,2,6,8,[[244,2,2,6,8]]],[11,7,7,8,15,[[337,7,7,8,15]]],[23,17,17,15,32,[[783,4,4,15,19],[784,3,3,19,22],[785,1,1,22,23],[787,1,1,23,24],[796,8,8,24,32]]]],[1119,1150,1175,1176,1205,1207,7414,7415,10230,10232,10233,10234,10237,10240,10242,19932,19933,19934,19936,19942,19943,19946,19967,20003,20288,20290,20291,20292,20295,20300,20302,20306]]],["cook",[2,2,[[8,2,2,0,2,[[244,2,2,0,2]]]],[7414,7415]]],["guard",[29,29,[[0,5,5,0,5,[[36,1,1,0,1],[38,1,1,1,2],[39,2,2,2,4],[40,1,1,4,5]]],[11,7,7,5,12,[[337,7,7,5,12]]],[23,17,17,12,29,[[783,4,4,12,16],[784,3,3,16,19],[785,1,1,19,20],[787,1,1,20,21],[796,8,8,21,29]]]],[1119,1150,1175,1176,1207,10230,10232,10233,10234,10237,10240,10242,19932,19933,19934,19936,19942,19943,19946,19967,20003,20288,20290,20291,20292,20295,20300,20302,20306]]],["guard's",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1205]]]]},{"k":"H2877","v":[["guard",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21772]]]]},{"k":"H2878","v":[["*",[3,3,[[8,1,1,0,1,[[260,1,1,0,1]]],[18,1,1,1,2,[[521,1,1,1,2]]],[23,1,1,2,3,[[756,1,1,2,3]]]],[7872,14593,19252]]],["flesh",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7872]]],["slaughter",[2,2,[[18,1,1,0,1,[[521,1,1,0,1]]],[23,1,1,1,2,[[756,1,1,1,2]]]],[14593,19252]]]]},{"k":"H2879","v":[["cooks",[1,1,[[8,1,1,0,1,[[243,1,1,0,1]]]],[7382]]]]},{"k":"H2880","v":[["+",[1,1,[[12,1,1,0,1,[[355,1,1,0,1]]]],[10898]]]]},{"k":"H2881","v":[["*",[16,16,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[2,6,6,2,8,[[93,2,2,2,4],[98,1,1,4,5],[103,3,3,5,8]]],[3,1,1,8,9,[[135,1,1,8,9]]],[4,1,1,9,10,[[185,1,1,9,10]]],[5,1,1,10,11,[[189,1,1,10,11]]],[7,1,1,11,12,[[233,1,1,11,12]]],[8,1,1,12,13,[[249,1,1,12,13]]],[11,2,2,13,15,[[317,1,1,13,14],[320,1,1,14,15]]],[17,1,1,15,16,[[444,1,1,15,16]]]],[1114,1838,2801,2812,2962,3117,3127,3162,4307,5834,5908,7163,7535,9661,9742,13082]]],["+",[3,3,[[0,1,1,0,1,[[36,1,1,0,1]]],[2,2,2,1,3,[[93,1,1,1,2],[103,1,1,2,3]]]],[1114,2801,3127]]],["dip",[7,7,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,3,3,1,4,[[93,1,1,1,2],[103,2,2,2,4]]],[3,1,1,4,5,[[135,1,1,4,5]]],[4,1,1,5,6,[[185,1,1,5,6]]],[7,1,1,6,7,[[233,1,1,6,7]]]],[1838,2812,3117,3162,4307,5834,7163]]],["dipped",[5,5,[[2,1,1,0,1,[[98,1,1,0,1]]],[5,1,1,1,2,[[189,1,1,1,2]]],[8,1,1,2,3,[[249,1,1,2,3]]],[11,2,2,3,5,[[317,1,1,3,4],[320,1,1,4,5]]]],[2962,5908,7535,9661,9742]]],["plunge",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13082]]]]},{"k":"H2882","v":[["Tebaliah",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11088]]]]},{"k":"H2883","v":[["*",[10,10,[[1,1,1,0,1,[[64,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[17,1,1,2,3,[[473,1,1,2,3]]],[18,3,3,3,6,[[486,1,1,3,4],[546,2,2,4,6]]],[19,1,1,6,7,[[635,1,1,6,7]]],[23,2,2,7,9,[[782,2,2,7,9]]],[24,1,1,9,10,[[798,1,1,9,10]]]],[1924,7667,13799,14036,14937,14949,16627,19901,19917,20341]]],["down",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14036]]],["drowned",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1924]]],["fastened",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13799]]],["settled",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16627]]],["sink",[2,2,[[18,2,2,0,2,[[546,2,2,0,2]]]],[14937,14949]]],["sunk",[4,4,[[8,1,1,0,1,[[252,1,1,0,1]]],[23,2,2,1,3,[[782,2,2,1,3]]],[24,1,1,3,4,[[798,1,1,3,4]]]],[7667,19901,19917,20341]]]]},{"k":"H2884","v":[["Tabbaoth",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12070,12466]]]]},{"k":"H2885","v":[["*",[49,38,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,40,30,1,31,[[74,8,5,1,6],[75,2,2,6,8],[76,2,2,8,10],[77,7,5,10,15],[79,1,1,15,16],[84,1,1,16,17],[85,2,2,17,19],[86,8,5,19,24],[87,2,2,24,26],[88,7,5,26,31]]],[3,1,1,31,32,[[147,1,1,31,32]]],[16,6,5,32,37,[[428,2,2,32,34],[433,4,3,34,37]]],[22,1,1,37,38,[[681,1,1,37,38]]]],[1237,2207,2209,2210,2221,2222,2259,2264,2276,2279,2316,2317,2319,2320,2321,2386,2553,2595,2600,2607,2609,2617,2618,2631,2638,2640,2680,2681,2683,2684,2685,4714,12757,12759,12819,12825,12827,17728]]],["+",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2321,2685]]],["ring",[9,8,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,2,2,1,3,[[75,1,1,1,2],[85,1,1,2,3]]],[16,6,5,3,8,[[428,2,2,3,5],[433,4,3,5,8]]]],[1237,2259,2595,12757,12759,12819,12825,12827]]],["rings",[38,30,[[1,36,28,0,28,[[74,8,5,0,5],[75,1,1,5,6],[76,2,2,6,8],[77,6,5,8,13],[79,1,1,13,14],[84,1,1,14,15],[85,1,1,15,16],[86,8,5,16,21],[87,2,2,21,23],[88,6,5,23,28]]],[3,1,1,28,29,[[147,1,1,28,29]]],[22,1,1,29,30,[[681,1,1,29,30]]]],[2207,2209,2210,2221,2222,2264,2276,2279,2316,2317,2319,2320,2321,2386,2553,2600,2607,2609,2617,2618,2631,2638,2640,2680,2681,2683,2684,2685,4714,17728]]]]},{"k":"H2886","v":[["Tabrimon",[1,1,[[10,1,1,0,1,[[305,1,1,0,1]]]],[9267]]]]},{"k":"H2887","v":[["Tebeth",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12740]]]]},{"k":"H2888","v":[["Tabbath",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6716]]]]},{"k":"H2889","v":[["*",[95,88,[[0,6,3,0,3,[[6,4,2,0,2],[7,2,1,2,3]]],[1,28,28,3,31,[[74,8,8,3,11],[77,3,3,11,14],[79,2,2,14,16],[80,1,1,16,17],[86,10,10,17,27],[88,4,4,27,31]]],[2,21,20,31,51,[[93,1,1,31,32],[95,1,1,32,33],[96,1,1,33,34],[99,2,2,34,36],[100,3,3,36,39],[102,6,6,39,45],[103,2,2,45,47],[104,1,1,47,48],[109,2,1,48,49],[113,2,2,49,51]]],[3,8,7,51,58,[[121,1,1,51,52],[125,1,1,52,53],[134,2,2,53,55],[135,4,3,55,58]]],[4,6,6,58,64,[[164,2,2,58,60],[166,2,2,60,62],[167,1,1,62,63],[175,1,1,63,64]]],[8,2,1,64,65,[[255,2,1,64,65]]],[9,1,1,65,66,[[288,1,1,65,66]]],[12,1,1,66,67,[[365,1,1,66,67]]],[13,4,4,67,71,[[369,1,1,67,68],[375,1,1,68,69],[379,1,1,69,70],[396,1,1,70,71]]],[14,1,1,71,72,[[408,1,1,71,72]]],[17,3,3,72,75,[[449,1,1,72,73],[452,1,1,73,74],[463,1,1,74,75]]],[18,3,3,75,78,[[489,1,1,75,76],[496,1,1,76,77],[528,1,1,77,78]]],[19,2,2,78,80,[[642,1,1,78,79],[657,1,1,79,80]]],[20,1,1,80,81,[[667,1,1,80,81]]],[22,1,1,81,82,[[744,1,1,81,82]]],[25,3,3,82,85,[[823,1,1,82,83],[837,1,1,83,84],[845,1,1,84,85]]],[34,1,1,85,86,[[903,1,1,85,86]]],[37,2,1,86,87,[[913,2,1,86,87]]],[38,1,1,87,88,[[925,1,1,87,88]]]],[161,167,203,2206,2212,2219,2224,2226,2231,2233,2234,2307,2315,2329,2385,2417,2428,2606,2610,2615,2620,2621,2626,2627,2628,2630,2633,2679,2689,2694,2701,2807,2860,2898,2987,2991,3033,3034,3044,3065,3069,3089,3091,3092,3093,3115,3168,3176,3343,3450,3452,3820,3978,4268,4270,4298,4307,4308,5255,5262,5301,5310,5341,5510,7756,8629,11160,11233,11381,11464,11844,12171,13185,13269,13523,14072,14177,14701,16833,17263,17477,18942,21002,21384,21622,22744,22917,23100]]],["clean",[51,45,[[0,6,3,0,3,[[6,4,2,0,2],[7,2,1,2,3]]],[2,19,18,3,21,[[93,1,1,3,4],[95,1,1,4,5],[96,1,1,5,6],[99,2,2,6,8],[100,3,3,8,11],[102,6,6,11,17],[103,2,2,17,19],[104,1,1,19,20],[109,2,1,20,21]]],[3,8,7,21,28,[[121,1,1,21,22],[125,1,1,22,23],[134,2,2,23,25],[135,4,3,25,28]]],[4,6,6,28,34,[[164,2,2,28,30],[166,2,2,30,32],[167,1,1,32,33],[175,1,1,33,34]]],[8,2,1,34,35,[[255,2,1,34,35]]],[13,1,1,35,36,[[396,1,1,35,36]]],[17,2,2,36,38,[[449,1,1,36,37],[452,1,1,37,38]]],[18,2,2,38,40,[[496,1,1,38,39],[528,1,1,39,40]]],[20,1,1,40,41,[[667,1,1,40,41]]],[22,1,1,41,42,[[744,1,1,41,42]]],[25,3,3,42,45,[[823,1,1,42,43],[837,1,1,43,44],[845,1,1,44,45]]]],[161,167,203,2807,2860,2898,2987,2991,3033,3034,3044,3065,3069,3089,3091,3092,3093,3115,3168,3176,3343,3820,3978,4268,4270,4298,4307,4308,5255,5262,5301,5310,5341,5510,7756,11844,13185,13269,14177,14701,17477,18942,21002,21384,21622]]],["fair",[2,1,[[37,2,1,0,1,[[913,2,1,0,1]]]],[22917]]],["pure",[41,41,[[1,28,28,0,28,[[74,8,8,0,8],[77,3,3,8,11],[79,2,2,11,13],[80,1,1,13,14],[86,10,10,14,24],[88,4,4,24,28]]],[2,2,2,28,30,[[113,2,2,28,30]]],[9,1,1,30,31,[[288,1,1,30,31]]],[12,1,1,31,32,[[365,1,1,31,32]]],[13,3,3,32,35,[[369,1,1,32,33],[375,1,1,33,34],[379,1,1,34,35]]],[14,1,1,35,36,[[408,1,1,35,36]]],[17,1,1,36,37,[[463,1,1,36,37]]],[18,1,1,37,38,[[489,1,1,37,38]]],[19,2,2,38,40,[[642,1,1,38,39],[657,1,1,39,40]]],[38,1,1,40,41,[[925,1,1,40,41]]]],[2206,2212,2219,2224,2226,2231,2233,2234,2307,2315,2329,2385,2417,2428,2606,2610,2615,2620,2621,2626,2627,2628,2630,2633,2679,2689,2694,2701,3450,3452,8629,11160,11233,11381,11464,12171,13523,14072,16833,17263,23100]]],["purer",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22744]]]]},{"k":"H2890","v":[["pureness",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17026]]]]},{"k":"H2891","v":[["*",[94,79,[[0,1,1,0,1,[[34,1,1,0,1]]],[2,43,35,1,36,[[100,1,1,1,2],[101,2,2,2,4],[102,11,9,4,13],[103,19,16,13,29],[104,4,2,29,31],[105,3,2,31,33],[106,1,1,33,34],[111,2,2,34,36]]],[3,10,8,36,44,[[124,5,4,36,40],[135,3,2,40,42],[147,2,2,42,44]]],[5,1,1,44,45,[[208,1,1,44,45]]],[11,4,4,45,49,[[317,4,4,45,49]]],[13,7,7,49,56,[[395,3,3,49,52],[396,1,1,52,53],[400,3,3,53,56]]],[14,1,1,56,57,[[408,1,1,56,57]]],[15,5,4,57,61,[[424,2,1,57,58],[425,3,3,58,61]]],[17,2,2,61,63,[[439,1,1,61,62],[472,1,1,62,63]]],[18,2,2,63,65,[[528,2,2,63,65]]],[19,1,1,65,66,[[647,1,1,65,66]]],[22,1,1,66,67,[[744,1,1,66,67]]],[23,2,2,67,69,[[757,1,1,67,68],[777,1,1,68,69]]],[25,12,9,69,78,[[823,1,1,69,70],[825,3,1,70,71],[837,3,2,71,73],[838,1,1,73,74],[840,3,3,74,77],[844,1,1,77,78]]],[38,2,1,78,79,[[927,2,1,78,79]]]],[1013,3029,3051,3052,3058,3065,3069,3075,3080,3086,3089,3110,3111,3115,3118,3119,3120,3122,3125,3128,3129,3130,3131,3136,3139,3140,3142,3159,3164,3181,3196,3220,3231,3250,3373,3376,3945,3946,3954,3960,4301,4308,4687,4688,6443,9657,9659,9660,9661,11806,11807,11809,11845,11936,11938,11941,12171,12654,12680,12693,12701,12947,13790,14693,14698,16963,18939,19293,19783,21000,21069,21384,21392,21420,21460,21462,21464,21598,23123]]],["+",[8,8,[[2,2,2,0,2,[[102,1,1,0,1],[103,1,1,1,2]]],[13,3,3,2,5,[[395,1,1,2,3],[400,2,2,3,5]]],[15,1,1,5,6,[[424,1,1,5,6]]],[25,1,1,6,7,[[840,1,1,6,7]]],[38,1,1,7,8,[[927,1,1,7,8]]]],[3086,3159,11809,11936,11938,12654,21460,23123]]],["clean",[38,35,[[0,1,1,0,1,[[34,1,1,0,1]]],[2,24,22,1,23,[[101,1,1,1,2],[102,10,9,2,11],[103,7,6,11,17],[104,2,2,17,19],[105,1,1,19,20],[106,1,1,20,21],[111,2,2,21,23]]],[3,6,5,23,28,[[124,1,1,23,24],[135,3,2,24,26],[147,2,2,26,28]]],[11,4,4,28,32,[[317,4,4,28,32]]],[18,1,1,32,33,[[528,1,1,32,33]]],[23,1,1,33,34,[[757,1,1,33,34]]],[25,1,1,34,35,[[837,1,1,34,35]]]],[1013,3052,3058,3065,3069,3075,3080,3086,3089,3110,3111,3118,3119,3120,3122,3131,3164,3181,3196,3231,3250,3373,3376,3946,4301,4308,4687,4688,9657,9659,9660,9661,14698,19293,21384]]],["cleanse",[14,14,[[2,2,2,0,2,[[105,2,2,0,2]]],[3,4,4,2,6,[[124,4,4,2,6]]],[13,2,2,6,8,[[395,2,2,6,8]]],[18,1,1,8,9,[[528,1,1,8,9]]],[23,1,1,9,10,[[777,1,1,9,10]]],[25,4,4,10,14,[[837,1,1,10,11],[838,1,1,11,12],[840,2,2,12,14]]]],[3220,3231,3945,3946,3954,3960,11806,11807,14693,19783,21384,21420,21462,21464]]],["cleansed",[20,20,[[2,15,15,0,15,[[100,1,1,0,1],[101,1,1,1,2],[103,11,11,2,13],[104,2,2,13,15]]],[5,1,1,15,16,[[208,1,1,15,16]]],[15,2,2,16,18,[[425,2,2,16,18]]],[25,2,2,18,20,[[823,1,1,18,19],[837,1,1,19,20]]]],[3029,3051,3115,3118,3119,3125,3128,3129,3130,3136,3139,3140,3142,3181,3196,6443,12680,12701,21000,21392]]],["cleanseth",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13790]]],["pure",[2,2,[[17,1,1,0,1,[[439,1,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]]],[12947,16963]]],["purged",[4,2,[[13,1,1,0,1,[[400,1,1,0,1]]],[25,3,1,1,2,[[825,3,1,1,2]]]],[11941,21069]]],["purified",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12171]]],["purifier",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23123]]],["purify",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21598]]],["themselves",[4,4,[[13,1,1,0,1,[[396,1,1,0,1]]],[15,2,2,1,3,[[424,1,1,1,2],[425,1,1,2,3]]],[22,1,1,3,4,[[744,1,1,3,4]]]],[11845,12654,12693,18939]]]]},{"k":"H2892","v":[["*",[4,4,[[1,1,1,0,1,[[73,1,1,0,1]]],[2,2,2,1,3,[[101,2,2,1,3]]],[18,1,1,3,4,[[566,1,1,3,4]]]],[2187,3048,3050,15370]]],["+",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15370]]],["clearness",[1,1,[[1,1,1,0,1,[[73,1,1,0,1]]]],[2187]]],["purifying",[2,2,[[2,2,2,0,2,[[101,2,2,0,2]]]],[3048,3050]]]]},{"k":"H2893","v":[["*",[13,13,[[2,8,8,0,8,[[101,2,2,0,2],[102,2,2,2,4],[103,3,3,4,7],[104,1,1,7,8]]],[3,1,1,8,9,[[122,1,1,8,9]]],[12,1,1,9,10,[[360,1,1,9,10]]],[13,1,1,10,11,[[396,1,1,10,11]]],[15,1,1,11,12,[[424,1,1,11,12]]],[25,1,1,12,13,[[845,1,1,12,13]]]],[3048,3049,3059,3087,3113,3134,3143,3181,3832,11011,11846,12669,21625]]],["cleansed",[1,1,[[25,1,1,0,1,[[845,1,1,0,1]]]],[21625]]],["cleansing",[7,7,[[2,6,6,0,6,[[102,2,2,0,2],[103,3,3,2,5],[104,1,1,5,6]]],[3,1,1,6,7,[[122,1,1,6,7]]]],[3059,3087,3113,3134,3143,3181,3832]]],["purification",[2,2,[[13,1,1,0,1,[[396,1,1,0,1]]],[15,1,1,1,2,[[424,1,1,1,2]]]],[11846,12669]]],["purifying",[3,3,[[2,2,2,0,2,[[101,2,2,0,2]]],[12,1,1,2,3,[[360,1,1,2,3]]]],[3048,3049,11011]]]]},{"k":"H2894","v":[["sweep",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17951]]]]},{"k":"H2895","v":[["*",[31,30,[[3,3,3,0,3,[[127,1,1,0,1],[140,2,2,1,3]]],[4,2,2,3,5,[[157,1,1,3,4],[171,1,1,4,5]]],[8,2,2,5,7,[[251,2,2,5,7]]],[9,2,2,7,9,[[269,1,1,7,8],[279,1,1,8,9]]],[10,2,2,9,11,[[298,1,1,9,10],[311,1,1,10,11]]],[11,1,1,11,12,[[322,1,1,11,12]]],[12,1,1,12,13,[[350,1,1,12,13]]],[13,1,1,13,14,[[372,1,1,13,14]]],[15,2,2,14,16,[[414,2,2,14,16]]],[16,9,8,16,24,[[426,2,2,16,18],[428,1,1,18,19],[430,2,2,19,21],[432,1,1,21,22],[433,2,1,22,23],[434,1,1,23,24]]],[18,1,1,24,25,[[596,1,1,24,25]]],[21,1,1,25,26,[[674,1,1,25,26]]],[22,1,1,26,27,[[681,1,1,26,27]]],[23,1,1,27,28,[[776,1,1,27,28]]],[27,1,1,28,29,[[875,1,1,28,29]]],[37,1,1,29,30,[[921,1,1,29,30]]]],[4042,4447,4451,5086,5419,7611,7618,8117,8345,9003,9453,9823,10762,11290,12312,12314,12712,12721,12756,12783,12787,12810,12822,12847,15966,17592,17717,19772,22284,23040]]],["+",[13,13,[[3,1,1,0,1,[[140,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]],[10,1,1,2,3,[[311,1,1,2,3]]],[15,2,2,3,5,[[414,2,2,3,5]]],[16,6,6,5,11,[[426,1,1,5,6],[428,1,1,6,7],[430,1,1,7,8],[432,1,1,8,9],[433,1,1,9,10],[434,1,1,10,11]]],[23,1,1,11,12,[[776,1,1,11,12]]],[37,1,1,12,13,[[921,1,1,12,13]]]],[4447,8117,9453,12312,12314,12721,12756,12787,12810,12822,12847,19772,23040]]],["better",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17592]]],["good",[3,3,[[12,1,1,0,1,[[350,1,1,0,1]]],[16,1,1,1,2,[[430,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]]],[10762,12783,15966]]],["goodly",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4451]]],["graciously",[1,1,[[27,1,1,0,1,[[875,1,1,0,1]]]],[22284]]],["merry",[2,2,[[9,1,1,0,1,[[279,1,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]]],[8345,12712]]],["pleasing",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12822]]],["well",[9,9,[[3,1,1,0,1,[[127,1,1,0,1]]],[4,2,2,1,3,[[157,1,1,1,2],[171,1,1,2,3]]],[8,2,2,3,5,[[251,2,2,3,5]]],[10,1,1,5,6,[[298,1,1,5,6]]],[11,1,1,6,7,[[322,1,1,6,7]]],[13,1,1,7,8,[[372,1,1,7,8]]],[22,1,1,8,9,[[681,1,1,8,9]]]],[4042,5086,5419,7611,7618,9003,9823,11290,17717]]]]},{"k":"H2896","v":[["*",[554,513,[[0,41,39,0,39,[[0,7,7,0,7],[1,5,4,7,11],[2,3,3,11,14],[5,1,1,14,15],[14,1,1,15,16],[15,1,1,16,17],[17,1,1,17,18],[18,1,1,18,19],[19,1,1,19,20],[23,2,2,20,22],[24,1,1,22,23],[25,2,2,23,25],[26,1,1,25,26],[28,1,1,26,27],[29,1,1,27,28],[30,2,2,28,30],[39,1,1,30,31],[40,6,5,31,36],[43,1,1,36,37],[48,1,1,37,38],[49,1,1,38,39]]],[1,5,5,39,44,[[51,1,1,39,40],[52,1,1,40,41],[63,1,1,41,42],[67,2,2,42,44]]],[2,5,4,44,48,[[116,5,4,44,48]]],[3,7,7,48,55,[[126,2,2,48,50],[129,1,1,50,51],[130,2,2,51,53],[140,1,1,53,54],[152,1,1,54,55]]],[4,28,25,55,80,[[153,4,4,55,59],[155,2,1,59,60],[156,2,2,60,62],[158,4,3,62,65],[160,3,3,65,68],[161,1,1,68,69],[162,1,1,69,70],[163,1,1,70,71],[164,1,1,71,72],[167,1,1,72,73],[175,2,2,73,75],[178,1,1,75,76],[180,2,2,76,78],[182,3,2,78,80]]],[5,8,7,80,87,[[193,1,1,80,81],[195,1,1,81,82],[207,1,1,82,83],[209,5,4,83,87]]],[6,14,13,87,100,[[218,3,3,87,90],[219,3,3,90,93],[220,1,1,93,94],[221,2,1,94,95],[225,1,1,95,96],[226,1,1,96,97],[228,2,2,97,99],[229,1,1,99,100]]],[7,3,3,100,103,[[233,1,1,100,101],[234,1,1,101,102],[235,1,1,102,103]]],[8,37,33,103,136,[[236,2,2,103,105],[237,2,2,105,107],[238,1,1,107,108],[243,2,2,108,110],[244,3,2,110,112],[246,1,1,112,113],[247,1,1,113,114],[249,2,2,114,116],[250,3,3,116,119],[251,1,1,119,120],[254,2,1,120,121],[255,2,2,121,123],[259,4,3,123,126],[260,6,6,126,132],[261,1,1,132,133],[262,1,1,133,134],[264,3,2,134,136]]],[9,24,22,136,158,[[268,1,1,136,137],[269,2,2,137,139],[273,1,1,139,140],[276,1,1,140,141],[277,1,1,141,142],[279,1,1,142,143],[280,2,2,143,145],[281,2,2,145,147],[282,1,1,147,148],[283,3,2,148,150],[284,3,2,150,152],[285,5,5,152,157],[290,1,1,157,158]]],[10,23,21,158,179,[[291,2,2,158,160],[292,4,4,160,164],[293,1,1,164,165],[298,4,3,165,168],[300,1,1,168,169],[302,1,1,169,170],[304,2,2,170,172],[308,1,1,172,173],[309,1,1,173,174],[310,1,1,174,175],[311,1,1,175,176],[312,4,3,176,179]]],[11,12,10,179,189,[[314,1,1,179,180],[315,4,2,180,182],[317,1,1,182,183],[322,2,2,183,185],[332,3,3,185,188],[337,1,1,188,189]]],[12,7,7,189,196,[[341,1,1,189,190],[353,1,1,190,191],[354,1,1,191,192],[356,1,1,192,193],[358,1,1,193,194],[365,1,1,194,195],[366,1,1,195,196]]],[13,23,20,196,216,[[369,2,2,196,198],[371,1,1,198,199],[372,2,2,199,201],[373,3,2,201,203],[376,2,1,203,204],[378,1,1,204,205],[380,1,1,205,206],[384,4,3,206,209],[385,2,2,209,211],[387,1,1,211,212],[390,1,1,212,213],[396,2,2,213,215],[397,1,1,215,216]]],[14,6,6,216,222,[[405,1,1,216,217],[409,1,1,217,218],[410,3,3,218,221],[411,1,1,221,222]]],[15,10,9,222,231,[[414,4,3,222,225],[417,2,2,225,227],[418,1,1,227,228],[421,2,2,228,230],[425,1,1,230,231]]],[16,14,14,231,245,[[426,2,2,231,233],[427,4,4,233,237],[428,1,1,237,238],[430,1,1,238,239],[432,1,1,239,240],[433,2,2,240,242],[434,2,2,242,244],[435,1,1,244,245]]],[17,12,12,245,257,[[437,1,1,245,246],[442,1,1,246,247],[444,1,1,247,248],[445,1,1,248,249],[448,1,1,249,250],[456,2,2,250,252],[457,2,2,252,254],[465,1,1,254,255],[469,1,1,255,256],[471,1,1,256,257]]],[18,69,68,257,325,[[481,1,1,257,258],[491,2,2,258,260],[493,1,1,260,261],[498,1,1,261,262],[500,1,1,262,263],[502,2,2,263,265],[511,4,4,265,269],[512,1,1,269,270],[513,1,1,270,271],[514,3,3,271,274],[515,2,1,274,275],[516,1,1,275,276],[522,1,1,276,277],[529,2,2,277,279],[530,2,2,279,281],[531,1,1,281,282],[540,1,1,282,283],[542,1,1,283,284],[545,1,1,284,285],[546,1,1,285,286],[550,2,2,286,288],[561,2,2,288,290],[562,1,1,290,291],[563,2,2,291,293],[569,1,1,293,294],[577,1,1,294,295],[580,1,1,295,296],[581,1,1,296,297],[583,2,2,297,299],[584,2,2,299,301],[586,2,2,301,303],[588,1,1,303,304],[589,1,1,304,305],[595,4,4,305,309],[596,6,6,309,315],[599,1,1,315,316],[602,1,1,316,317],[605,1,1,317,318],[610,2,2,318,320],[612,1,1,320,321],[613,1,1,321,322],[620,1,1,322,323],[622,1,1,323,324],[624,1,1,324,325]]],[19,62,62,325,387,[[629,2,2,325,327],[630,3,3,327,330],[631,1,1,330,331],[635,2,2,331,333],[638,2,2,333,335],[639,4,4,335,339],[640,4,4,339,343],[641,3,3,343,346],[642,6,6,346,352],[643,6,6,352,358],[644,4,4,358,362],[645,2,2,362,364],[646,4,4,364,368],[647,1,1,368,369],[648,2,2,369,371],[649,2,2,371,373],[651,3,3,373,376],[652,4,4,376,380],[654,2,2,380,382],[655,3,3,382,385],[658,2,2,385,387]]],[20,52,41,387,428,[[660,6,4,387,391],[661,4,3,391,394],[662,6,5,394,399],[663,4,3,399,402],[664,5,4,402,406],[665,14,11,406,417],[666,3,3,417,420],[667,7,5,420,425],[669,2,2,425,427],[670,1,1,427,428]]],[21,3,3,428,431,[[671,2,2,428,430],[677,1,1,430,431]]],[22,13,12,431,443,[[683,3,2,431,433],[685,2,2,433,435],[716,1,1,435,436],[717,2,2,436,438],[719,1,1,438,439],[730,1,1,439,440],[733,1,1,440,441],[734,1,1,441,442],[743,1,1,442,443]]],[23,37,32,443,475,[[749,1,1,443,444],[750,2,2,444,446],[752,1,1,446,447],[756,1,1,447,448],[758,2,2,448,450],[759,1,1,450,451],[761,1,1,451,452],[762,3,2,452,454],[765,1,1,454,455],[766,2,2,455,457],[768,6,4,457,461],[770,1,1,461,462],[773,2,2,462,464],[776,2,2,464,466],[777,4,3,466,469],[783,1,1,469,470],[784,2,1,470,471],[786,1,1,471,472],[788,2,2,472,474],[796,1,1,474,475]]],[24,7,7,475,482,[[799,5,5,475,480],[800,2,2,480,482]]],[25,9,8,482,490,[[818,1,1,482,483],[819,1,1,483,484],[821,1,1,484,485],[825,1,1,485,486],[832,1,1,486,487],[835,3,2,487,489],[837,1,1,489,490]]],[26,2,2,490,492,[[850,2,2,490,492]]],[27,4,4,492,496,[[863,1,1,492,493],[865,1,1,493,494],[869,1,1,494,495],[871,1,1,495,496]]],[28,1,1,496,497,[[878,1,1,496,497]]],[29,4,4,497,501,[[883,2,2,497,499],[884,1,1,499,500],[887,1,1,500,501]]],[31,2,2,501,503,[[892,2,2,501,503]]],[32,4,4,503,507,[[893,1,1,503,504],[895,1,1,504,505],[898,1,1,505,506],[899,1,1,506,507]]],[33,2,2,507,509,[[900,1,1,507,508],[902,1,1,508,509]]],[37,3,3,509,512,[[911,2,2,509,511],[918,1,1,511,512]]],[38,1,1,512,513,[[926,1,1,512,513]]]],[3,9,11,17,20,24,30,39,42,47,48,60,61,77,139,375,387,431,465,510,607,641,666,699,721,736,814,850,897,902,1188,1200,1217,1219,1221,1230,1328,1488,1526,1556,1587,1901,2008,2016,3580,3582,3584,3603,4017,4020,4094,4111,4115,4459,4885,4906,4917,4927,4931,5000,5025,5026,5096,5104,5110,5144,5147,5149,5163,5199,5225,5268,5335,5506,5516,5577,5622,5623,5717,5723,5997,6062,6426,6473,6474,6475,6476,6721,6751,6754,6756,6765,6770,6826,6854,6931,6974,7002,7012,7048,7171,7185,7205,7220,7235,7264,7266,7294,7383,7385,7393,7401,7455,7483,7544,7548,7569,7582,7588,7607,7710,7737,7742,7856,7857,7858,7864,7869,7876,7882,7891,7897,7921,7931,7973,7976,8055,8094,8100,8208,8252,8261,8339,8373,8388,8392,8415,8438,8456,8463,8481,8505,8529,8538,8546,8548,8549,8714,8723,8759,8788,8802,8808,8812,8825,9021,9041,9051,9086,9158,9231,9233,9365,9391,9411,9453,9488,9493,9498,9570,9595,9601,9659,9796,9798,10101,10111,10117,10250,10425,10854,10889,10920,10957,11151,11192,11234,11237,11281,11309,11323,11327,11334,11402,11449,11477,11549,11554,11559,11579,11587,11637,11693,11845,11849,11874,12108,12182,12219,12223,12228,12249,12315,12317,12325,12391,12401,12420,12524,12531,12702,12713,12721,12726,12727,12731,12733,12758,12788,12816,12825,12834,12853,12856,12869,12901,13015,13076,13089,13162,13368,13380,13407,13410,13583,13687,13747,13971,14081,14083,14094,14194,14241,14259,14264,14396,14398,14400,14402,14422,14442,14453,14466,14477,14510,14514,14598,14713,14719,14720,14722,14731,14842,14871,14910,14951,15021,15048,15269,15270,15283,15289,15301,15412,15513,15554,15599,15652,15656,15700,15708,15760,15776,15803,15808,15870,15877,15878,15898,15937,15963,15966,15969,15970,16020,16098,16114,16128,16170,16171,16178,16197,16303,16329,16352,16442,16453,16459,16469,16482,16492,16613,16621,16711,16715,16721,16728,16733,16744,16749,16762,16768,16769,16786,16791,16794,16810,16822,16823,16824,16830,16837,16848,16856,16859,16860,16869,16872,16874,16886,16893,16899,16906,16923,16926,16927,16933,16947,16977,16993,17003,17016,17024,17092,17102,17104,17120,17137,17138,17140,17174,17179,17202,17206,17217,17296,17302,17334,17336,17357,17359,17371,17372,17381,17384,17387,17389,17390,17394,17402,17408,17415,17420,17423,17426,17429,17430,17431,17432,17434,17437,17439,17440,17443,17447,17449,17455,17470,17471,17473,17477,17479,17482,17491,17493,17519,17520,17537,17539,17540,17636,17748,17759,17797,17798,18393,18414,18420,18458,18703,18742,18758,18899,19083,19105,19109,19168,19255,19304,19312,19326,19363,19394,19404,19450,19469,19470,19526,19527,19529,19530,19586,19645,19667,19770,19773,19784,19786,19789,19939,19945,19981,20027,20037,20308,20371,20379,20380,20381,20392,20421,20429,20833,20867,20920,21060,21246,21327,21331,21390,21741,21752,22112,22146,22197,22226,22348,22437,22438,22452,22499,22571,22576,22591,22610,22656,22668,22691,22716,22891,22895,22995,23120]]],["+",[27,26,[[0,4,4,0,4,[[15,1,1,0,1],[19,1,1,1,2],[30,2,2,2,4]]],[3,1,1,4,5,[[152,1,1,4,5]]],[6,2,1,5,6,[[221,2,1,5,6]]],[9,1,1,6,7,[[269,1,1,6,7]]],[10,2,2,7,9,[[291,2,2,7,9]]],[12,1,1,9,10,[[366,1,1,9,10]]],[14,1,1,10,11,[[410,1,1,10,11]]],[15,1,1,11,12,[[417,1,1,11,12]]],[16,5,5,12,17,[[427,3,3,12,15],[428,1,1,15,16],[433,1,1,16,17]]],[18,2,2,17,19,[[516,1,1,17,18],[529,1,1,18,19]]],[20,3,3,19,22,[[660,1,1,19,20],[662,1,1,20,21],[665,1,1,21,22]]],[23,1,1,22,23,[[784,1,1,22,23]]],[26,1,1,23,24,[[850,1,1,23,24]]],[33,1,1,24,25,[[902,1,1,24,25]]],[37,1,1,25,26,[[911,1,1,25,26]]]],[387,510,897,902,4885,6854,8100,8723,8759,11192,12228,12391,12726,12727,12731,12758,12825,14514,14713,17359,17389,17455,19945,21741,22716,22895]]],["Better",[12,12,[[19,7,7,0,7,[[642,2,2,0,2],[643,2,2,2,4],[644,1,1,4,5],[646,1,1,5,6],[655,1,1,6,7]]],[20,5,5,7,12,[[662,2,2,7,9],[663,1,1,9,10],[664,1,1,10,11],[665,1,1,11,12]]]],[16823,16824,16848,16859,16874,16926,17202,17387,17394,17402,17426,17437]]],["Good",[4,4,[[11,1,1,0,1,[[332,1,1,0,1]]],[18,1,1,1,2,[[502,1,1,1,2]]],[19,1,1,2,3,[[640,1,1,2,3]]],[22,1,1,3,4,[[717,1,1,3,4]]]],[10117,14259,16762,18420]]],["Well",[3,3,[[8,1,1,0,1,[[244,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]],[10,1,1,2,3,[[292,1,1,2,3]]]],[7401,8094,8788]]],["beautiful",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8261]]],["best",[7,7,[[4,1,1,0,1,[[175,1,1,0,1]]],[8,1,1,1,2,[[243,1,1,1,2]]],[11,1,1,2,3,[[322,1,1,2,3]]],[16,1,1,3,4,[[427,1,1,3,4]]],[21,1,1,4,5,[[677,1,1,4,5]]],[25,1,1,5,6,[[832,1,1,5,6]]],[32,1,1,6,7,[[899,1,1,6,7]]]],[5516,7383,9796,12733,17636,21246,22668]]],["better",[60,60,[[0,1,1,0,1,[[28,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[6,3,3,3,6,[[218,1,1,3,4],[219,1,1,4,5],[228,1,1,5,6]]],[7,1,1,6,7,[[235,1,1,6,7]]],[8,4,4,7,11,[[236,1,1,7,8],[250,2,2,8,10],[262,1,1,10,11]]],[9,2,2,11,13,[[283,1,1,11,12],[284,1,1,12,13]]],[10,3,3,13,16,[[292,1,1,13,14],[309,1,1,14,15],[311,1,1,15,16]]],[11,1,1,16,17,[[317,1,1,16,17]]],[13,1,1,17,18,[[387,1,1,17,18]]],[16,1,1,18,19,[[426,1,1,18,19]]],[18,6,6,19,25,[[514,1,1,19,20],[540,1,1,20,21],[561,1,1,21,22],[595,2,2,22,24],[596,1,1,24,25]]],[19,13,13,25,38,[[630,1,1,25,26],[635,2,2,26,28],[639,1,1,28,29],[643,2,2,29,31],[646,1,1,31,32],[648,2,2,32,34],[652,2,2,34,36],[654,2,2,36,38]]],[20,15,15,38,53,[[660,1,1,38,39],[661,1,1,39,40],[662,2,2,40,42],[664,1,1,42,43],[665,6,6,43,49],[666,1,1,49,50],[667,3,3,50,53]]],[21,1,1,53,54,[[671,1,1,53,54]]],[22,1,1,54,55,[[734,1,1,54,55]]],[24,1,1,55,56,[[800,1,1,55,56]]],[27,1,1,56,57,[[863,1,1,56,57]]],[29,1,1,57,58,[[884,1,1,57,58]]],[31,2,2,58,60,[[892,2,2,58,60]]]],[814,1901,4111,6721,6756,7012,7205,7220,7582,7588,7931,8463,8481,8802,9391,9453,9659,11637,12721,14466,14842,15269,15877,15878,15970,16469,16613,16621,16728,16856,16872,16947,16993,17003,17120,17137,17174,17179,17357,17381,17384,17390,17420,17430,17431,17432,17434,17437,17439,17473,17479,17491,17493,17539,18758,20429,22112,22452,22571,22576]]],["bountiful",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17024]]],["cheerful",[1,1,[[37,1,1,0,1,[[918,1,1,0,1]]]],[22995]]],["deeds",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12420]]],["ease",[1,1,[[18,1,1,0,1,[[502,1,1,0,1]]]],[14264]]],["fair",[5,5,[[0,3,3,0,3,[[5,1,1,0,1],[23,1,1,1,2],[25,1,1,2,3]]],[16,1,1,3,4,[[426,1,1,3,4]]],[22,1,1,4,5,[[683,1,1,4,5]]]],[139,607,699,12713,17748]]],["fairer",[2,2,[[6,1,1,0,1,[[225,1,1,0,1]]],[26,1,1,1,2,[[850,1,1,1,2]]]],[6931,21752]]],["favour",[2,2,[[8,2,2,0,2,[[237,1,1,0,1],[264,1,1,1,2]]]],[7266,7973]]],["fine",[2,2,[[13,2,2,0,2,[[369,2,2,0,2]]]],[11234,11237]]],["glad",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[16,1,1,1,2,[[430,1,1,1,2]]]],[9051,12788]]],["good",[346,324,[[0,33,31,0,31,[[0,7,7,0,7],[1,5,4,7,11],[2,3,3,11,14],[14,1,1,14,15],[17,1,1,15,16],[18,1,1,16,17],[23,1,1,17,18],[24,1,1,18,19],[25,1,1,19,20],[26,1,1,20,21],[29,1,1,21,22],[39,1,1,22,23],[40,6,5,23,28],[43,1,1,28,29],[48,1,1,29,30],[49,1,1,30,31]]],[1,2,2,31,33,[[52,1,1,31,32],[67,1,1,32,33]]],[2,5,4,33,37,[[116,5,4,33,37]]],[3,4,4,37,41,[[126,1,1,37,38],[129,1,1,38,39],[130,1,1,39,40],[140,1,1,40,41]]],[4,21,19,41,60,[[153,4,4,41,45],[155,1,1,45,46],[156,2,2,46,48],[158,3,2,48,50],[160,2,2,50,52],[161,1,1,52,53],[162,1,1,53,54],[163,1,1,54,55],[164,1,1,55,56],[178,1,1,56,57],[180,1,1,57,58],[182,3,2,58,60]]],[5,7,6,60,66,[[195,1,1,60,61],[207,1,1,61,62],[209,5,4,62,66]]],[6,5,5,66,71,[[218,1,1,66,67],[219,1,1,67,68],[220,1,1,68,69],[228,1,1,69,70],[229,1,1,70,71]]],[7,1,1,71,72,[[233,1,1,71,72]]],[8,21,20,72,92,[[236,1,1,72,73],[237,1,1,73,74],[238,1,1,74,75],[246,1,1,75,76],[247,1,1,76,77],[249,2,2,77,79],[250,1,1,79,80],[254,2,1,80,81],[255,1,1,81,82],[259,2,2,82,84],[260,5,5,84,89],[261,1,1,89,90],[264,2,2,90,92]]],[9,17,16,92,108,[[276,1,1,92,93],[279,1,1,93,94],[280,2,2,94,96],[281,2,2,96,98],[282,1,1,98,99],[283,2,2,99,101],[284,2,1,101,102],[285,5,5,102,107],[290,1,1,107,108]]],[10,12,11,108,119,[[292,2,2,108,110],[293,1,1,110,111],[298,2,2,111,113],[302,1,1,113,114],[304,2,2,114,116],[312,4,3,116,119]]],[11,6,4,119,123,[[315,4,2,119,121],[322,1,1,121,122],[332,1,1,122,123]]],[12,5,5,123,128,[[341,1,1,123,124],[353,1,1,124,125],[356,1,1,125,126],[358,1,1,126,127],[365,1,1,127,128]]],[13,15,14,128,142,[[371,1,1,128,129],[372,1,1,129,130],[373,1,1,130,131],[376,1,1,131,132],[380,1,1,132,133],[384,4,3,133,136],[385,2,2,136,138],[390,1,1,138,139],[396,2,2,139,141],[397,1,1,141,142]]],[14,4,4,142,146,[[405,1,1,142,143],[409,1,1,143,144],[410,2,2,144,146]]],[15,7,6,146,152,[[414,3,2,146,148],[417,1,1,148,149],[421,2,2,149,151],[425,1,1,151,152]]],[16,4,4,152,156,[[432,1,1,152,153],[433,1,1,153,154],[434,2,2,154,156]]],[17,9,9,156,165,[[437,1,1,156,157],[442,1,1,157,158],[444,1,1,158,159],[445,1,1,159,160],[448,1,1,160,161],[457,2,2,161,163],[465,1,1,163,164],[469,1,1,164,165]]],[18,50,49,165,214,[[481,1,1,165,166],[491,2,2,166,168],[511,4,4,168,172],[512,1,1,172,173],[513,1,1,173,174],[514,2,2,174,176],[515,2,1,176,177],[522,1,1,177,178],[529,1,1,178,179],[530,2,2,179,181],[531,1,1,181,182],[546,1,1,182,183],[550,2,2,183,185],[561,1,1,185,186],[562,1,1,186,187],[563,2,2,187,189],[569,1,1,189,190],[577,1,1,190,191],[580,1,1,191,192],[581,1,1,192,193],[583,2,2,193,195],[584,1,1,195,196],[586,2,2,196,198],[588,1,1,198,199],[589,1,1,199,200],[595,2,2,200,202],[596,4,4,202,206],[599,1,1,206,207],[602,1,1,207,208],[610,1,1,208,209],[612,1,1,209,210],[613,1,1,210,211],[620,1,1,211,212],[622,1,1,212,213],[624,1,1,213,214]]],[19,38,38,214,252,[[629,2,2,214,216],[630,2,2,216,218],[631,1,1,218,219],[638,2,2,219,221],[639,3,3,221,224],[640,3,3,224,227],[641,3,3,227,230],[642,3,3,230,233],[643,2,2,233,235],[644,3,3,235,238],[645,2,2,238,240],[646,2,2,240,242],[647,1,1,242,243],[651,3,3,243,246],[652,2,2,246,248],[655,2,2,248,250],[658,2,2,250,252]]],[20,20,17,252,269,[[660,3,3,252,255],[661,3,2,255,257],[662,1,1,257,258],[663,2,1,258,259],[664,3,3,259,262],[665,3,3,262,265],[667,3,2,265,267],[669,1,1,267,268],[670,1,1,268,269]]],[21,1,1,269,270,[[671,1,1,269,270]]],[22,8,7,270,277,[[683,2,1,270,271],[685,2,2,271,273],[716,1,1,273,274],[730,1,1,274,275],[733,1,1,275,276],[743,1,1,276,277]]],[23,28,25,277,302,[[749,1,1,277,278],[750,1,1,278,279],[752,1,1,279,280],[758,2,2,280,282],[761,1,1,282,283],[762,3,2,283,285],[765,1,1,285,286],[768,6,4,286,290],[770,1,1,290,291],[773,2,2,291,293],[776,2,2,293,295],[777,3,3,295,298],[783,1,1,298,299],[784,1,1,299,300],[786,1,1,300,301],[788,1,1,301,302]]],[24,4,4,302,306,[[799,4,4,302,306]]],[25,8,7,306,313,[[818,1,1,306,307],[819,1,1,307,308],[821,1,1,308,309],[825,1,1,309,310],[835,3,2,310,312],[837,1,1,312,313]]],[27,2,2,313,315,[[865,1,1,313,314],[869,1,1,314,315]]],[29,3,3,315,318,[[883,2,2,315,317],[887,1,1,317,318]]],[32,3,3,318,321,[[893,1,1,318,319],[895,1,1,319,320],[898,1,1,320,321]]],[33,1,1,321,322,[[900,1,1,321,322]]],[37,1,1,322,323,[[911,1,1,322,323]]],[38,1,1,323,324,[[926,1,1,323,324]]]],[3,9,11,17,20,24,30,39,42,47,48,60,61,77,375,431,465,641,666,721,736,850,1188,1200,1217,1219,1221,1230,1328,1488,1526,1587,2016,3580,3582,3584,3603,4017,4094,4115,4459,4906,4917,4927,4931,5000,5025,5026,5104,5110,5144,5147,5163,5199,5225,5268,5577,5623,5717,5723,6062,6426,6473,6474,6475,6476,6751,6765,6826,7002,7048,7171,7235,7264,7294,7455,7483,7544,7548,7569,7710,7742,7856,7858,7864,7869,7876,7882,7891,7921,7973,7976,8252,8339,8373,8388,8392,8415,8438,8456,8463,8505,8529,8538,8546,8548,8549,8714,8808,8812,8825,9021,9041,9158,9231,9233,9488,9493,9498,9595,9601,9798,10101,10425,10854,10920,10957,11151,11281,11309,11327,11402,11477,11549,11554,11559,11579,11587,11693,11845,11849,11874,12108,12182,12219,12223,12315,12325,12401,12524,12531,12702,12816,12834,12853,12856,12901,13015,13076,13089,13162,13407,13410,13583,13687,13971,14081,14083,14396,14398,14400,14402,14422,14442,14453,14477,14510,14598,14719,14720,14722,14731,14951,15021,15048,15270,15283,15289,15301,15412,15513,15554,15599,15652,15656,15700,15760,15776,15803,15808,15870,15898,15937,15966,15969,16020,16098,16114,16170,16178,16197,16303,16329,16352,16442,16453,16459,16482,16492,16711,16715,16721,16733,16744,16749,16768,16769,16786,16791,16794,16810,16830,16837,16860,16869,16886,16893,16899,16906,16923,16927,16933,16977,17092,17102,17104,17138,17140,17206,17217,17296,17302,17336,17357,17359,17371,17372,17390,17415,17420,17423,17429,17440,17447,17449,17477,17493,17519,17537,17540,17759,17797,17798,18393,18703,18742,18899,19083,19105,19168,19304,19312,19363,19394,19404,19450,19526,19527,19529,19530,19586,19645,19667,19770,19773,19784,19786,19789,19939,19945,19981,20037,20379,20380,20381,20392,20833,20867,20920,21060,21327,21331,21390,22146,22197,22437,22438,22499,22591,22610,22656,22691,22891,23120]]],["goodlier",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7393]]],["goodliest",[2,2,[[8,1,1,0,1,[[243,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]]],[7385,9411]]],["goodly",[8,8,[[1,1,1,0,1,[[51,1,1,0,1]]],[4,3,3,1,4,[[155,1,1,1,2],[158,1,1,2,3],[160,1,1,3,4]]],[5,1,1,4,5,[[193,1,1,4,5]]],[8,2,2,5,7,[[244,1,1,5,6],[251,1,1,6,7]]],[28,1,1,7,8,[[878,1,1,7,8]]]],[1556,5000,5096,5149,5997,7393,7607,22348]]],["goodness",[16,16,[[1,1,1,0,1,[[67,1,1,0,1]]],[3,1,1,1,2,[[126,1,1,1,2]]],[6,1,1,2,3,[[218,1,1,2,3]]],[9,1,1,3,4,[[273,1,1,3,4]]],[10,1,1,4,5,[[298,1,1,4,5]]],[12,1,1,5,6,[[354,1,1,5,6]]],[13,2,2,6,8,[[372,1,1,6,7],[373,1,1,7,8]]],[18,6,6,8,14,[[493,1,1,8,9],[498,1,1,9,10],[500,1,1,10,11],[542,1,1,11,12],[545,1,1,12,13],[584,1,1,13,14]]],[23,1,1,14,15,[[777,1,1,14,15]]],[27,1,1,15,16,[[871,1,1,15,16]]]],[2008,4020,6754,8208,9051,10889,11323,11334,14094,14194,14241,14871,14910,15708,19784,22226]]],["goods",[2,2,[[4,1,1,0,1,[[180,1,1,0,1]]],[20,1,1,1,2,[[663,1,1,1,2]]]],[5622,17408]]],["joyful",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17443]]],["kind",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11402]]],["kindly",[2,2,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,1,1,1,2,[[796,1,1,1,2]]]],[10250,20308]]],["kindness",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8055]]],["loving",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17016]]],["merry",[5,5,[[6,1,1,0,1,[[226,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]],[13,1,1,2,3,[[373,1,1,2,3]]],[19,1,1,3,4,[[642,1,1,3,4]]],[20,1,1,4,5,[[667,1,1,4,5]]]],[6974,7897,11334,16822,17482]]],["most",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20421]]],["pleasant",[2,2,[[11,1,1,0,1,[[314,1,1,0,1]]],[20,1,1,1,2,[[669,1,1,1,2]]]],[9570,17520]]],["pleasure",[2,2,[[17,1,1,0,1,[[456,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[13380,17334]]],["precious",[4,4,[[11,1,1,0,1,[[332,1,1,0,1]]],[18,1,1,1,2,[[610,1,1,1,2]]],[20,1,1,2,3,[[665,1,1,2,3]]],[22,1,1,3,4,[[717,1,1,3,4]]]],[10111,16171,17430,18414]]],["prosperity",[5,5,[[4,1,1,0,1,[[175,1,1,0,1]]],[10,1,1,1,2,[[300,1,1,1,2]]],[17,1,1,2,3,[[471,1,1,2,3]]],[20,1,1,3,4,[[665,1,1,3,4]]],[24,1,1,4,5,[[799,1,1,4,5]]]],[5506,9086,13747,17443,20371]]],["ready",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18458]]],["sweet",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19109]]],["wealth",[3,3,[[14,1,1,0,1,[[411,1,1,0,1]]],[16,1,1,1,2,[[435,1,1,1,2]]],[17,1,1,2,3,[[456,1,1,2,3]]]],[12249,12869,13368]]],["welfare",[1,1,[[15,1,1,0,1,[[414,1,1,0,1]]]],[12317]]],["well",[16,16,[[4,1,1,0,1,[[167,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[8,3,3,3,6,[[255,1,1,3,4],[259,2,2,4,6]]],[10,1,1,6,7,[[308,1,1,6,7]]],[13,1,1,7,8,[[378,1,1,7,8]]],[18,2,2,8,10,[[596,1,1,8,9],[605,1,1,9,10]]],[20,2,2,10,12,[[666,2,2,10,12]]],[23,4,4,12,16,[[759,1,1,12,13],[766,2,2,13,15],[788,1,1,15,16]]]],[5335,6770,7185,7737,7857,7858,9365,11449,15963,16128,17470,17471,19326,19469,19470,20027]]],["words",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19255]]]]},{"k":"H2897","v":[["Tob",[2,2,[[6,2,2,0,2,[[221,2,2,0,2]]]],[6832,6834]]]]},{"k":"H2898","v":[["*",[32,31,[[0,4,4,0,4,[[23,1,1,0,1],[44,3,3,1,4]]],[1,1,1,4,5,[[82,1,1,4,5]]],[4,2,2,5,7,[[158,1,1,5,6],[180,1,1,6,7]]],[11,1,1,7,8,[[320,1,1,7,8]]],[14,1,1,8,9,[[411,1,1,8,9]]],[15,4,3,9,12,[[421,4,3,9,12]]],[17,2,2,12,14,[[455,1,1,12,13],[456,1,1,13,14]]],[18,7,7,14,21,[[502,1,1,14,15],[504,1,1,15,16],[508,1,1,16,17],[542,1,1,17,18],[596,1,1,18,19],[605,1,1,19,20],[622,1,1,20,21]]],[19,1,1,21,22,[[638,1,1,21,22]]],[22,3,3,22,25,[[679,1,1,22,23],[741,1,1,23,24],[743,1,1,24,25]]],[23,3,3,25,28,[[746,1,1,25,26],[775,2,2,26,28]]],[27,2,2,28,30,[[864,1,1,28,29],[871,1,1,29,30]]],[37,1,1,30,31,[[919,1,1,30,31]]]],[601,1376,1378,1381,2492,5097,5658,9736,12249,12536,12546,12547,13347,13371,14258,14298,14350,14864,15964,16131,16327,16698,17673,18873,18911,18972,19703,19705,22133,22236,23016]]],["+",[3,3,[[0,1,1,0,1,[[44,1,1,0,1]]],[18,1,1,1,2,[[502,1,1,1,2]]],[22,1,1,2,3,[[743,1,1,2,3]]]],[1381,14258,18911]]],["fair",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22236]]],["gladness",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5658]]],["good",[9,9,[[0,2,2,0,2,[[44,2,2,0,2]]],[4,1,1,2,3,[[158,1,1,2,3]]],[14,1,1,3,4,[[411,1,1,3,4]]],[15,1,1,4,5,[[421,1,1,4,5]]],[17,1,1,5,6,[[456,1,1,5,6]]],[18,2,2,6,8,[[596,1,1,6,7],[605,1,1,7,8]]],[22,1,1,8,9,[[679,1,1,8,9]]]],[1376,1378,5097,12249,12547,13371,15964,16131,17673]]],["goodness",[13,13,[[1,1,1,0,1,[[82,1,1,0,1]]],[15,2,2,1,3,[[421,2,2,1,3]]],[18,4,4,3,7,[[504,1,1,3,4],[508,1,1,4,5],[542,1,1,5,6],[622,1,1,6,7]]],[22,1,1,7,8,[[741,1,1,7,8]]],[23,3,3,8,11,[[746,1,1,8,9],[775,2,2,9,11]]],[27,1,1,11,12,[[864,1,1,11,12]]],[37,1,1,12,13,[[919,1,1,12,13]]]],[2492,12536,12546,14298,14350,14864,16327,18873,18972,19703,19705,22133,23016]]],["goods",[3,3,[[0,1,1,0,1,[[23,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[17,1,1,2,3,[[455,1,1,2,3]]]],[601,12536,13347]]],["thing",[1,1,[[11,1,1,0,1,[[320,1,1,0,1]]]],[9736]]],["well",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16698]]]]},{"k":"H2899","v":[["Tobadonijah",[1,1,[[13,1,1,0,1,[[383,1,1,0,1]]]],[11531]]]]},{"k":"H2900","v":[["*",[18,17,[[13,1,1,0,1,[[383,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,14,13,2,15,[[414,2,2,2,4],[416,2,2,4,6],[418,6,5,6,11],[419,1,1,11,12],[425,3,3,12,15]]],[37,2,2,15,17,[[916,2,2,15,17]]]],[11531,12087,12317,12326,12362,12366,12402,12413,12415,12418,12420,12482,12675,12678,12679,22957,22961]]],["Tobiah",[15,14,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,14,13,1,14,[[414,2,2,1,3],[416,2,2,3,5],[418,6,5,5,10],[419,1,1,10,11],[425,3,3,11,14]]]],[12087,12317,12326,12362,12366,12402,12413,12415,12418,12420,12482,12675,12678,12679]]],["Tobijah",[3,3,[[13,1,1,0,1,[[383,1,1,0,1]]],[37,2,2,1,3,[[916,2,2,1,3]]]],[11531,22957,22961]]]]},{"k":"H2901","v":[["*",[2,2,[[1,2,2,0,2,[[84,2,2,0,2]]]],[2556,2557]]],["+",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2557]]],["spin",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2556]]]]},{"k":"H2902","v":[["*",[12,11,[[2,3,3,0,3,[[103,3,3,0,3]]],[12,1,1,3,4,[[366,1,1,3,4]]],[22,1,1,4,5,[[722,1,1,4,5]]],[25,7,6,5,11,[[814,6,5,5,10],[823,1,1,10,11]]]],[3153,3154,3159,11168,18551,20718,20719,20720,20722,20723,21004]]],["+",[1,1,[[2,1,1,0,1,[[103,1,1,0,1]]]],[3153]]],["daub",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20719]]],["daubed",[6,5,[[25,6,5,0,5,[[814,5,4,0,4],[823,1,1,4,5]]]],[20718,20720,20722,20723,21004]]],["overlay",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11168]]],["plaistered",[2,2,[[2,2,2,0,2,[[103,2,2,0,2]]]],[3154,3159]]],["shut",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18551]]]]},{"k":"H2903","v":[["frontlets",[3,3,[[1,1,1,0,1,[[62,1,1,0,1]]],[4,2,2,1,3,[[158,1,1,1,2],[163,1,1,2,3]]]],[1883,5094,5226]]]]},{"k":"H2904","v":[["*",[14,14,[[8,2,2,0,2,[[253,1,1,0,1],[255,1,1,1,2]]],[17,1,1,2,3,[[476,1,1,2,3]]],[18,1,1,3,4,[[514,1,1,3,4]]],[19,1,1,4,5,[[643,1,1,4,5]]],[22,1,1,5,6,[[700,1,1,5,6]]],[23,3,3,6,9,[[760,1,1,6,7],[766,2,2,7,9]]],[25,1,1,9,10,[[833,1,1,9,10]]],[31,4,4,10,14,[[889,4,4,10,14]]]],[7687,7763,13897,14474,16873,18069,19349,19480,19482,21252,22535,22536,22543,22546]]],["+",[4,4,[[8,2,2,0,2,[[253,1,1,0,1],[255,1,1,1,2]]],[23,1,1,2,3,[[766,1,1,2,3]]],[31,1,1,3,4,[[889,1,1,3,4]]]],[7687,7763,19480,22536]]],["away",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18069]]],["cast",[2,2,[[19,1,1,0,1,[[643,1,1,0,1]]],[23,1,1,1,2,[[760,1,1,1,2]]]],[16873,19349]]],["down",[2,2,[[17,1,1,0,1,[[476,1,1,0,1]]],[18,1,1,1,2,[[514,1,1,1,2]]]],[13897,14474]]],["forth",[3,3,[[25,1,1,0,1,[[833,1,1,0,1]]],[31,2,2,1,3,[[889,2,2,1,3]]]],[21252,22543,22546]]],["out",[2,2,[[23,1,1,0,1,[[766,1,1,0,1]]],[31,1,1,1,2,[[889,1,1,1,2]]]],[19482,22535]]]]},{"k":"H2905","v":[["*",[26,20,[[1,12,8,0,8,[[77,6,4,0,4],[88,6,4,4,8]]],[10,11,9,8,17,[[296,2,1,8,9],[297,9,8,9,17]]],[13,2,2,17,19,[[370,2,2,17,19]]],[25,1,1,19,20,[[847,1,1,19,20]]]],[2310,2311,2312,2313,2674,2675,2676,2677,8932,8936,8937,8938,8946,8952,8954,8958,8976,11249,11259,21678]]],["row",[14,12,[[1,10,8,0,8,[[77,5,4,0,4],[88,5,4,4,8]]],[10,3,3,8,11,[[296,1,1,8,9],[297,2,2,9,11]]],[25,1,1,11,12,[[847,1,1,11,12]]]],[2310,2311,2312,2313,2674,2675,2676,2677,8932,8937,8946,21678]]],["rows",[12,12,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[10,8,8,2,10,[[296,1,1,2,3],[297,7,7,3,10]]],[13,2,2,10,12,[[370,2,2,10,12]]]],[2310,2674,8932,8936,8938,8946,8952,8954,8958,8976,11249,11259]]]]},{"k":"H2906","v":[["*",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21793,21803]]],["+",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21803]]],["mountain",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21793]]]]},{"k":"H2907","v":[["hasteth",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13077]]]]},{"k":"H2908","v":[["fasting",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21923]]]]},{"k":"H2909","v":[["+",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[529]]]]},{"k":"H2910","v":[["parts",[2,2,[[17,1,1,0,1,[[473,1,1,0,1]]],[18,1,1,1,2,[[528,1,1,1,2]]]],[13829,14697]]]]},{"k":"H2911","v":[["grind",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20455]]]]},{"k":"H2912","v":[["*",[8,8,[[1,1,1,0,1,[[81,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[4,1,1,2,3,[[161,1,1,2,3]]],[6,1,1,3,4,[[226,1,1,3,4]]],[17,1,1,4,5,[[466,1,1,4,5]]],[20,1,1,5,6,[[670,1,1,5,6]]],[22,2,2,6,8,[[681,1,1,6,7],[725,1,1,7,8]]]],[2458,4032,5178,6970,13598,17526,17722,18601]]],["grind",[4,4,[[6,1,1,0,1,[[226,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]],[22,2,2,2,4,[[681,1,1,2,3],[725,1,1,3,4]]]],[6970,13598,17722,18601]]],["grinders",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17526]]],["ground",[3,3,[[1,1,1,0,1,[[81,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[4,1,1,2,3,[[161,1,1,2,3]]]],[2458,4032,5178]]]]},{"k":"H2913","v":[["grinding",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17527]]]]},{"k":"H2914","v":[["emerods",[2,2,[[8,2,2,0,2,[[241,2,2,0,2]]]],[7342,7348]]]]},{"k":"H2915","v":[["daubing",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20720]]]]},{"k":"H2916","v":[["*",[13,12,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[18,3,3,2,5,[[495,1,1,2,3],[517,1,1,3,4],[546,1,1,4,5]]],[22,2,2,5,7,[[719,1,1,5,6],[735,1,1,6,7]]],[23,2,1,7,8,[[782,2,1,7,8]]],[32,1,1,8,9,[[899,1,1,8,9]]],[33,1,1,9,10,[[902,1,1,9,10]]],[37,2,2,10,12,[[919,1,1,10,11],[920,1,1,11,12]]]],[8645,13918,14160,14527,14949,18476,18785,19901,22674,22726,23002,23021]]],["+",[2,2,[[18,2,2,0,2,[[517,1,1,0,1],[546,1,1,1,2]]]],[14527,14949]]],["clay",[2,2,[[22,1,1,0,1,[[719,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[18476,22726]]],["dirt",[2,2,[[18,1,1,0,1,[[495,1,1,0,1]]],[22,1,1,1,2,[[735,1,1,1,2]]]],[14160,18785]]],["mire",[7,6,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[23,2,1,2,3,[[782,2,1,2,3]]],[32,1,1,3,4,[[899,1,1,3,4]]],[37,2,2,4,6,[[919,1,1,4,5],[920,1,1,5,6]]]],[8645,13918,19901,22674,23002,23021]]]]},{"k":"H2917","v":[["miry",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21799,21801]]]]},{"k":"H2918","v":[["*",[7,7,[[0,1,1,0,1,[[24,1,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]],[12,1,1,2,3,[[343,1,1,2,3]]],[18,1,1,3,4,[[546,1,1,3,4]]],[21,1,1,4,5,[[678,1,1,4,5]]],[25,2,2,5,7,[[826,1,1,5,6],[847,1,1,6,7]]]],[674,4674,10508,14960,17649,21087,21678]]],["castles",[3,3,[[0,1,1,0,1,[[24,1,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]],[12,1,1,2,3,[[343,1,1,2,3]]]],[674,4674,10508]]],["habitation",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14960]]],["palace",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17649]]],["palaces",[1,1,[[25,1,1,0,1,[[826,1,1,0,1]]]],[21087]]],["rows",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21678]]]]},{"k":"H2919","v":[["*",[31,30,[[0,2,2,0,2,[[26,2,2,0,2]]],[1,2,2,2,4,[[65,2,2,2,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[4,3,3,5,8,[[184,1,1,5,6],[185,2,2,6,8]]],[6,4,4,8,12,[[216,4,4,8,12]]],[9,2,2,12,14,[[267,1,1,12,13],[283,1,1,13,14]]],[10,1,1,14,15,[[307,1,1,14,15]]],[17,2,2,15,17,[[464,1,1,15,16],[473,1,1,16,17]]],[18,2,2,17,19,[[587,1,1,17,18],[610,1,1,18,19]]],[19,2,2,19,21,[[630,1,1,19,20],[646,1,1,20,21]]],[21,1,1,21,22,[[675,1,1,21,22]]],[22,3,2,22,24,[[696,1,1,22,23],[704,2,1,23,24]]],[27,3,3,24,27,[[867,1,1,24,25],[874,1,1,25,26],[875,1,1,26,27]]],[32,1,1,27,28,[[897,1,1,27,28]]],[36,1,1,28,29,[[909,1,1,28,29]]],[37,1,1,29,30,[[918,1,1,29,30]]]],[755,766,1960,1961,4033,5760,5823,5838,6691,6692,6693,6694,8043,8461,9318,13551,13821,15789,16172,16475,16937,17600,18001,18149,22171,22269,22287,22640,22850,22988]]],["+",[4,4,[[0,2,2,0,2,[[26,2,2,0,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[36,1,1,3,4,[[909,1,1,3,4]]]],[755,766,5823,22850]]],["dew",[27,26,[[1,2,2,0,2,[[65,2,2,0,2]]],[3,1,1,2,3,[[127,1,1,2,3]]],[4,2,2,3,5,[[184,1,1,3,4],[185,1,1,4,5]]],[6,4,4,5,9,[[216,4,4,5,9]]],[9,2,2,9,11,[[267,1,1,9,10],[283,1,1,10,11]]],[10,1,1,11,12,[[307,1,1,11,12]]],[17,2,2,12,14,[[464,1,1,12,13],[473,1,1,13,14]]],[18,2,2,14,16,[[587,1,1,14,15],[610,1,1,15,16]]],[19,2,2,16,18,[[630,1,1,16,17],[646,1,1,17,18]]],[21,1,1,18,19,[[675,1,1,18,19]]],[22,3,2,19,21,[[696,1,1,19,20],[704,2,1,20,21]]],[27,3,3,21,24,[[867,1,1,21,22],[874,1,1,22,23],[875,1,1,23,24]]],[32,1,1,24,25,[[897,1,1,24,25]]],[37,1,1,25,26,[[918,1,1,25,26]]]],[1960,1961,4033,5760,5838,6691,6692,6693,6694,8043,8461,9318,13551,13821,15789,16172,16475,16937,17600,18001,18149,22171,22269,22287,22640,22988]]]]},{"k":"H2920","v":[["*",[5,5,[[26,5,5,0,5,[[853,4,4,0,4],[854,1,1,4,5]]]],[21852,21860,21862,21870,21895]]],["+",[3,3,[[26,3,3,0,3,[[853,2,2,0,2],[854,1,1,2,3]]]],[21862,21870,21895]]],["dew",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21852,21860]]]]},{"k":"H2921","v":[["*",[8,6,[[0,6,4,0,4,[[29,6,4,0,4]]],[5,1,1,4,5,[[195,1,1,4,5]]],[25,1,1,5,6,[[817,1,1,5,6]]]],[862,863,865,869,6042,20778]]],["clouted",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6042]]],["colours",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20778]]],["spotted",[6,4,[[0,6,4,0,4,[[29,6,4,0,4]]]],[862,863,865,869]]]]},{"k":"H2922","v":[["lambs",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18431]]]]},{"k":"H2923","v":[["Telaim",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7564]]]]},{"k":"H2924","v":[["lamb",[2,2,[[8,1,1,0,1,[[242,1,1,0,1]]],[22,1,1,1,2,[[743,1,1,1,2]]]],[7361,18922]]]]},{"k":"H2925","v":[["captivity",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18069]]]]},{"k":"H2926","v":[["covered",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12342]]]]},{"k":"H2927","v":[["shadow",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21849]]]]},{"k":"H2928","v":[["Telem",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]]],[6226,12276]]]]},{"k":"H2929","v":[["Talmon",[5,5,[[12,1,1,0,1,[[346,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,3,3,2,5,[[419,1,1,2,3],[423,1,1,3,4],[424,1,1,4,5]]]],[10632,12069,12465,12607,12649]]]]},{"k":"H2930","v":[["*",[162,142,[[0,3,3,0,3,[[33,3,3,0,3]]],[2,85,71,3,74,[[94,1,1,3,4],[100,20,15,4,19],[101,3,2,19,21],[102,14,13,21,34],[103,2,2,34,36],[104,25,20,36,56],[106,1,1,56,57],[107,8,7,57,64],[108,1,1,64,65],[109,2,2,65,67],[110,4,4,67,71],[111,4,3,71,74]]],[3,24,21,74,95,[[121,8,7,74,81],[122,3,3,81,84],[135,12,10,84,94],[151,1,1,94,95]]],[4,2,2,95,97,[[173,1,1,95,96],[176,1,1,96,97]]],[11,4,4,97,101,[[335,4,4,97,101]]],[13,1,1,101,102,[[402,1,1,101,102]]],[18,2,2,102,104,[[556,1,1,102,103],[583,1,1,103,104]]],[22,1,1,104,105,[[708,1,1,104,105]]],[23,4,4,105,109,[[746,2,2,105,107],[751,1,1,107,108],[776,1,1,108,109]]],[25,30,28,109,137,[[805,1,1,109,110],[806,1,1,110,111],[810,1,1,111,112],[815,1,1,112,113],[819,3,3,113,116],[821,6,6,116,122],[823,3,3,122,125],[824,6,5,125,130],[834,1,1,130,131],[837,2,2,131,133],[838,1,1,133,134],[844,2,2,134,136],[845,2,1,136,137]]],[27,3,3,137,140,[[866,1,1,137,138],[867,1,1,138,139],[870,1,1,139,140]]],[32,1,1,140,141,[[894,1,1,140,141]]],[36,2,1,141,142,[[910,2,1,141,142]]]],[985,993,1007,2833,3021,3022,3023,3024,3025,3028,3029,3030,3031,3032,3033,3036,3037,3040,3041,3046,3049,3055,3060,3063,3066,3067,3072,3074,3077,3079,3082,3096,3098,3111,3147,3157,3172,3173,3174,3175,3176,3177,3178,3179,3184,3185,3186,3187,3188,3189,3190,3191,3192,3195,3199,3200,3250,3271,3274,3275,3276,3278,3279,3281,3312,3321,3343,3346,3348,3349,3356,3374,3375,3377,3795,3805,3806,3812,3819,3820,3821,3830,3832,3835,4296,4297,4299,4300,4302,4303,4305,4309,4310,4311,4879,5470,5529,10173,10175,10178,10181,12007,15186,15690,18239,18972,18988,19149,19765,20543,20557,20629,20742,20855,20860,20864,20902,20913,20921,20925,20926,20938,20979,20980,20987,21014,21020,21024,21037,21045,21306,21376,21377,21420,21579,21580,21624,22155,22177,22212,22605,22868]]],["+",[26,25,[[0,2,2,0,2,[[33,2,2,0,2]]],[2,12,11,2,13,[[100,1,1,2,3],[102,7,6,3,9],[104,1,1,9,10],[107,2,2,10,12],[109,1,1,12,13]]],[3,2,2,13,15,[[135,2,2,13,15]]],[11,2,2,15,17,[[335,2,2,15,17]]],[13,1,1,17,18,[[402,1,1,17,18]]],[23,1,1,18,19,[[746,1,1,18,19]]],[25,6,6,19,25,[[806,1,1,19,20],[810,1,1,20,21],[821,1,1,21,22],[823,1,1,22,23],[824,1,1,23,24],[844,1,1,24,25]]]],[985,993,3041,3055,3074,3077,3079,3082,3096,3199,3275,3281,3321,4302,4309,10173,10175,12007,18972,20557,20629,20902,20987,21045,21580]]],["Defile",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4879]]],["defile",[13,13,[[2,4,4,0,4,[[107,3,3,0,3],[111,1,1,3,4]]],[3,1,1,4,5,[[121,1,1,4,5]]],[11,1,1,5,6,[[335,1,1,5,6]]],[22,1,1,6,7,[[708,1,1,6,7]]],[23,1,1,7,8,[[776,1,1,7,8]]],[25,5,5,8,13,[[823,1,1,8,9],[834,1,1,9,10],[838,1,1,10,11],[844,1,1,11,12],[845,1,1,12,13]]]],[3271,3274,3279,3377,3795,10178,18239,19765,20979,21306,21420,21579,21624]]],["defiled",[34,33,[[0,1,1,0,1,[[33,1,1,0,1]]],[2,10,10,1,11,[[94,1,1,1,2],[100,1,1,2,3],[102,1,1,3,4],[104,1,1,4,5],[107,3,3,5,8],[108,1,1,8,9],[110,2,2,9,11]]],[3,9,8,11,19,[[121,7,6,11,17],[122,2,2,17,19]]],[4,2,2,19,21,[[173,1,1,19,20],[176,1,1,20,21]]],[18,2,2,21,23,[[556,1,1,21,22],[583,1,1,22,23]]],[25,8,8,23,31,[[819,3,3,23,26],[821,1,1,26,27],[823,1,1,27,28],[824,2,2,28,30],[837,1,1,30,31]]],[27,2,2,31,33,[[866,1,1,31,32],[867,1,1,32,33]]]],[1007,2833,3040,3098,3200,3275,3276,3278,3312,3346,3348,3805,3806,3812,3819,3820,3821,3832,3835,5470,5529,15186,15690,20855,20860,20864,20938,20980,21020,21024,21376,22155,22177]]],["herself",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21014]]],["himself",[2,2,[[2,2,2,0,2,[[110,2,2,0,2]]]],[3349,3356]]],["pollute",[1,1,[[23,1,1,0,1,[[751,1,1,0,1]]]],[19149]]],["polluted",[11,11,[[11,1,1,0,1,[[335,1,1,0,1]]],[23,1,1,1,2,[[746,1,1,1,2]]],[25,7,7,2,9,[[805,1,1,2,3],[815,1,1,3,4],[821,2,2,4,6],[824,2,2,6,8],[837,1,1,8,9]]],[27,1,1,9,10,[[870,1,1,9,10]]],[32,1,1,10,11,[[894,1,1,10,11]]]],[10181,18988,20543,20742,20921,20925,21024,21037,21377,22212,22605]]],["themselves",[1,1,[[25,1,1,0,1,[[845,1,1,0,1]]]],[21624]]],["unclean",[69,57,[[2,56,46,0,46,[[100,18,14,0,14],[101,3,2,14,16],[102,6,6,16,22],[103,2,2,22,24],[104,23,18,24,42],[106,1,1,42,43],[109,1,1,43,44],[111,2,2,44,46]]],[3,11,10,46,56,[[122,1,1,46,47],[135,10,9,47,56]]],[36,2,1,56,57,[[910,2,1,56,57]]]],[3021,3022,3023,3024,3025,3028,3029,3030,3031,3032,3033,3036,3037,3040,3046,3049,3060,3063,3066,3067,3072,3111,3147,3157,3172,3173,3174,3175,3176,3177,3178,3179,3184,3185,3186,3187,3188,3189,3190,3191,3192,3195,3250,3343,3374,3375,3830,4296,4297,4299,4300,4303,4305,4309,4310,4311,22868]]],["uncleanness",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3374]]],["yourselves",[2,2,[[25,2,2,0,2,[[821,2,2,0,2]]]],[20913,20926]]]]},{"k":"H2931","v":[["*",[88,78,[[2,47,38,0,38,[[94,5,1,0,1],[96,4,2,1,3],[99,1,1,3,4],[100,14,13,4,17],[102,9,8,17,25],[103,5,5,25,30],[104,4,4,30,34],[109,2,1,34,35],[111,1,1,35,36],[116,2,2,36,38]]],[3,11,11,38,49,[[121,1,1,38,39],[125,3,3,39,42],[134,1,1,42,43],[135,6,6,43,49]]],[4,8,8,49,57,[[164,2,2,49,51],[166,4,4,51,55],[167,1,1,55,56],[178,1,1,56,57]]],[5,1,1,57,58,[[208,1,1,57,58]]],[6,1,1,58,59,[[223,1,1,58,59]]],[13,1,1,59,60,[[389,1,1,59,60]]],[17,1,1,60,61,[[449,1,1,60,61]]],[20,1,1,61,62,[[667,1,1,61,62]]],[22,6,5,62,67,[[684,2,1,62,63],[713,1,1,63,64],[730,2,2,64,66],[742,1,1,66,67]]],[23,1,1,67,68,[[763,1,1,67,68]]],[24,1,1,68,69,[[800,1,1,68,69]]],[25,5,5,69,74,[[805,1,1,69,70],[823,3,3,70,73],[845,1,1,73,74]]],[27,1,1,74,75,[[870,1,1,74,75]]],[29,1,1,75,76,[[885,1,1,75,76]]],[36,2,2,76,78,[[910,2,2,76,78]]]],[2832,2898,2900,2987,3001,3002,3003,3004,3005,3023,3024,3025,3026,3028,3032,3035,3044,3063,3067,3088,3096,3097,3098,3103,3107,3151,3152,3155,3156,3168,3170,3193,3194,3201,3343,3373,3581,3597,3794,3971,3972,3975,4272,4302,4304,4306,4308,4309,4311,5255,5262,5297,5298,5300,5309,5341,5580,6445,6888,11675,13185,17477,17774,18328,18697,18707,18891,19420,20435,20542,20981,20986,21002,21622,22211,22481,22868,22869]]],["+",[3,3,[[17,1,1,0,1,[[449,1,1,0,1]]],[25,2,2,1,3,[[805,1,1,1,2],[823,1,1,2,3]]]],[13185,20542,20981]]],["Unclean",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3097]]],["defiled",[4,4,[[3,3,3,0,3,[[121,1,1,0,1],[125,2,2,1,3]]],[23,1,1,3,4,[[763,1,1,3,4]]]],[3794,3971,3972,19420]]],["polluted",[1,1,[[29,1,1,0,1,[[885,1,1,0,1]]]],[22481]]],["pollution",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[20986]]],["unclean",[78,69,[[2,46,38,0,38,[[94,5,1,0,1],[96,4,2,1,3],[99,1,1,3,4],[100,14,13,4,17],[102,8,8,17,25],[103,5,5,25,30],[104,4,4,30,34],[109,2,1,34,35],[111,1,1,35,36],[116,2,2,36,38]]],[3,8,8,38,46,[[125,1,1,38,39],[134,1,1,39,40],[135,6,6,40,46]]],[4,8,8,46,54,[[164,2,2,46,48],[166,4,4,48,52],[167,1,1,52,53],[178,1,1,53,54]]],[5,1,1,54,55,[[208,1,1,54,55]]],[6,1,1,55,56,[[223,1,1,55,56]]],[13,1,1,56,57,[[389,1,1,56,57]]],[20,1,1,57,58,[[667,1,1,57,58]]],[22,6,5,58,63,[[684,2,1,58,59],[713,1,1,59,60],[730,2,2,60,62],[742,1,1,62,63]]],[24,1,1,63,64,[[800,1,1,63,64]]],[25,2,2,64,66,[[823,1,1,64,65],[845,1,1,65,66]]],[27,1,1,66,67,[[870,1,1,66,67]]],[36,2,2,67,69,[[910,2,2,67,69]]]],[2832,2898,2900,2987,3001,3002,3003,3004,3005,3023,3024,3025,3026,3028,3032,3035,3044,3063,3067,3088,3096,3097,3098,3103,3107,3151,3152,3155,3156,3168,3170,3193,3194,3201,3343,3373,3581,3597,3975,4272,4302,4304,4306,4308,4309,4311,5255,5262,5297,5298,5300,5309,5341,5580,6445,6888,11675,17477,17774,18328,18697,18707,18891,20435,21002,21622,22211,22868,22869]]]]},{"k":"H2932","v":[["*",[36,31,[[2,18,14,0,14,[[94,2,1,0,1],[96,2,2,1,3],[103,1,1,3,4],[104,7,5,4,9],[105,3,2,9,11],[107,1,1,11,12],[111,2,2,12,14]]],[3,2,2,14,16,[[121,1,1,14,15],[135,1,1,15,16]]],[6,2,2,16,18,[[223,2,2,16,18]]],[9,1,1,18,19,[[277,1,1,18,19]]],[13,1,1,19,20,[[395,1,1,19,20]]],[14,2,2,20,22,[[408,1,1,20,21],[411,1,1,21,22]]],[24,1,1,22,23,[[797,1,1,22,23]]],[25,8,7,23,30,[[823,1,1,23,24],[825,3,2,24,26],[837,3,3,26,29],[840,1,1,29,30]]],[37,1,1,30,31,[[923,1,1,30,31]]]],[2833,2899,2900,3130,3171,3193,3194,3198,3199,3217,3220,3270,3372,3374,3811,4302,6891,6898,8263,11807,12172,12248,20319,20991,21067,21069,21376,21384,21388,21472,23061]]],["+",[7,7,[[2,4,4,0,4,[[103,1,1,0,1],[104,1,1,1,2],[105,2,2,2,4]]],[9,1,1,4,5,[[277,1,1,4,5]]],[14,1,1,5,6,[[408,1,1,5,6]]],[25,1,1,6,7,[[825,1,1,6,7]]]],[3130,3199,3217,3220,8263,12172,21069]]],["filthiness",[5,5,[[24,1,1,0,1,[[797,1,1,0,1]]],[25,4,4,1,5,[[823,1,1,1,2],[825,2,2,2,4],[837,1,1,4,5]]]],[20319,20991,21067,21069,21384]]],["unclean",[3,3,[[6,2,2,0,2,[[223,2,2,0,2]]],[37,1,1,2,3,[[923,1,1,2,3]]]],[6891,6898,23061]]],["uncleanness",[20,18,[[2,14,12,0,12,[[94,2,1,0,1],[96,2,2,1,3],[104,6,5,3,8],[105,1,1,8,9],[107,1,1,9,10],[111,2,2,10,12]]],[3,2,2,12,14,[[121,1,1,12,13],[135,1,1,13,14]]],[13,1,1,14,15,[[395,1,1,14,15]]],[14,1,1,15,16,[[411,1,1,15,16]]],[25,2,2,16,18,[[837,1,1,16,17],[840,1,1,17,18]]]],[2833,2899,2900,3171,3193,3194,3198,3199,3217,3270,3372,3374,3811,4302,11807,12248,21376,21472]]],["uncleannesses",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21388]]]]},{"k":"H2933","v":[["vile",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13279]]]]},{"k":"H2934","v":[["*",[31,29,[[0,1,1,0,1,[[34,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[5,3,3,3,6,[[188,1,1,3,4],[193,2,2,4,6]]],[11,2,1,6,7,[[319,2,1,6,7]]],[17,6,5,7,12,[[438,1,1,7,8],[453,1,1,8,9],[455,1,1,9,10],[466,1,1,10,11],[475,2,1,11,12]]],[18,7,7,12,19,[[486,1,1,12,13],[508,1,1,13,14],[512,2,2,14,16],[541,1,1,16,17],[617,1,1,17,18],[619,1,1,18,19]]],[19,2,2,19,21,[[646,1,1,19,20],[653,1,1,20,21]]],[22,1,1,21,22,[[680,1,1,21,22]]],[23,7,7,22,29,[[757,4,4,22,26],[762,1,1,26,27],[787,2,2,27,29]]]],[1015,1566,5829,5875,5997,5998,9715,12920,13286,13352,13621,13877,14036,14335,14417,14418,14855,16268,16289,16949,17156,17695,19270,19271,19272,19273,19406,20006,20007]]],["+",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14855]]],["Hide",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13877]]],["hid",[17,16,[[0,1,1,0,1,[[34,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[5,3,3,3,6,[[188,1,1,3,4],[193,2,2,4,6]]],[11,2,1,6,7,[[319,2,1,6,7]]],[17,1,1,7,8,[[455,1,1,7,8]]],[18,4,4,8,12,[[486,1,1,8,9],[512,2,2,9,11],[617,1,1,11,12]]],[23,4,4,12,16,[[757,2,2,12,14],[762,1,1,14,15],[787,1,1,15,16]]]],[1015,1566,5829,5875,5997,5998,9715,13352,14036,14417,14418,16268,19271,19273,19406,20007]]],["hidden",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12920]]],["hide",[4,4,[[22,1,1,0,1,[[680,1,1,0,1]]],[23,3,3,1,4,[[757,2,2,1,3],[787,1,1,3,4]]]],[17695,19270,19272,20006]]],["hideth",[2,2,[[19,2,2,0,2,[[646,1,1,0,1],[653,1,1,1,2]]]],[16949,17156]]],["hiding",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13621]]],["laid",[2,2,[[17,1,1,0,1,[[453,1,1,0,1]]],[18,1,1,1,2,[[619,1,1,1,2]]]],[13286,16289]]],["privily",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14335]]],["secret",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13877]]]]},{"k":"H2935","v":[["basket",[4,4,[[4,4,4,0,4,[[178,2,2,0,2],[180,2,2,2,4]]]],[5568,5570,5616,5628]]]]},{"k":"H2936","v":[["defile",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17601]]]]},{"k":"H2937","v":[["+",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20718]]]]},{"k":"H2938","v":[["*",[11,10,[[8,4,3,0,3,[[249,4,3,0,3]]],[9,2,2,3,5,[[269,1,1,3,4],[285,1,1,4,5]]],[17,2,2,5,7,[[447,1,1,5,6],[469,1,1,6,7]]],[18,1,1,7,8,[[511,1,1,7,8]]],[19,1,1,8,9,[[658,1,1,8,9]]],[31,1,1,9,10,[[891,1,1,9,10]]]],[7532,7537,7551,8116,8546,13139,13686,14396,17302,22565]]],["+",[3,2,[[8,2,1,0,1,[[249,2,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]]],[7551,8546]]],["perceiveth",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17302]]],["taste",[4,4,[[9,1,1,0,1,[[269,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[18,1,1,2,3,[[511,1,1,2,3]]],[31,1,1,3,4,[[891,1,1,3,4]]]],[8116,13139,14396,22565]]],["tasted",[2,2,[[8,2,2,0,2,[[249,2,2,0,2]]]],[7532,7537]]],["tasteth",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13686]]]]},{"k":"H2939","v":[["*",[3,3,[[26,3,3,0,3,[[853,2,2,0,2],[854,1,1,2,3]]]],[21862,21869,21895]]],["eat",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21862,21869]]],["fed",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21895]]]]},{"k":"H2940","v":[["*",[12,11,[[1,1,1,0,1,[[65,1,1,0,1]]],[3,2,1,1,2,[[127,2,1,1,2]]],[8,2,2,2,4,[[256,1,1,2,3],[260,1,1,3,4]]],[17,2,2,4,6,[[441,1,1,4,5],[447,1,1,5,6]]],[18,1,1,6,7,[[596,1,1,6,7]]],[19,2,2,7,9,[[638,1,1,7,8],[653,1,1,8,9]]],[23,1,1,9,10,[[792,1,1,9,10]]],[31,1,1,10,11,[[891,1,1,10,11]]]],[1978,4032,7785,7894,12984,13148,15964,16710,17157,20091,22565]]],["+",[1,1,[[31,1,1,0,1,[[891,1,1,0,1]]]],[22565]]],["advice",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7894]]],["behaviour",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7785]]],["discretion",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16710]]],["judgment",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15964]]],["reason",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17157]]],["taste",[5,4,[[1,1,1,0,1,[[65,1,1,0,1]]],[3,2,1,1,2,[[127,2,1,1,2]]],[17,1,1,2,3,[[441,1,1,2,3]]],[23,1,1,3,4,[[792,1,1,3,4]]]],[1978,4032,12984,20091]]],["understanding",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13148]]]]},{"k":"H2941","v":[["*",[5,5,[[14,4,4,0,4,[[406,1,1,0,1],[407,1,1,1,2],[408,1,1,2,3],[409,1,1,3,4]]],[26,1,1,4,5,[[855,1,1,4,5]]]],[12131,12139,12165,12196,21907]]],["accounts",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21907]]],["commanded",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12196]]],["commandment",[2,2,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]]],[12131,12165]]],["matter",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12139]]]]},{"k":"H2942","v":[["*",[25,25,[[14,17,17,0,17,[[406,5,5,0,5],[407,4,4,5,9],[408,6,6,9,15],[409,2,2,15,17]]],[26,8,8,17,25,[[851,1,1,17,18],[852,3,3,18,21],[853,1,1,21,22],[854,1,1,22,23],[855,2,2,23,25]]]],[12118,12119,12127,12129,12131,12137,12143,12147,12151,12152,12154,12159,12162,12163,12165,12186,12194,21772,21817,21819,21836,21843,21876,21918,21931]]],["+",[8,8,[[14,6,6,0,6,[[406,4,4,0,4],[407,2,2,4,6]]],[26,2,2,6,8,[[852,1,1,6,7],[855,1,1,7,8]]]],[12118,12119,12127,12129,12137,12143,21819,21918]]],["commandment",[2,2,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]]],[12131,12165]]],["decree",[13,13,[[14,9,9,0,9,[[407,2,2,0,2],[408,5,5,2,7],[409,2,2,7,9]]],[26,4,4,9,13,[[852,2,2,9,11],[853,1,1,11,12],[855,1,1,12,13]]]],[12147,12151,12152,12154,12159,12162,12163,12186,12194,21817,21836,21843,21931]]],["tasted",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21876]]],["wisdom",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21772]]]]},{"k":"H2943","v":[["+",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1375]]]]},{"k":"H2944","v":[["through",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17947]]]]},{"k":"H2945","v":[["*",[42,42,[[0,8,8,0,8,[[33,1,1,0,1],[42,1,1,1,2],[44,1,1,2,3],[45,1,1,3,4],[46,2,2,4,6],[49,2,2,6,8]]],[1,3,3,8,11,[[59,2,2,8,10],[61,1,1,10,11]]],[3,10,10,11,21,[[130,2,2,11,13],[132,1,1,13,14],[147,3,3,14,17],[148,4,4,17,21]]],[4,7,7,21,28,[[153,1,1,21,22],[154,1,1,22,23],[155,2,2,23,25],[172,1,1,25,26],[181,1,1,26,27],[183,1,1,27,28]]],[5,2,2,28,30,[[187,1,1,28,29],[194,1,1,29,30]]],[6,2,2,30,32,[[228,1,1,30,31],[231,1,1,31,32]]],[9,1,1,32,33,[[281,1,1,32,33]]],[13,2,2,33,35,[[386,1,1,33,34],[397,1,1,34,35]]],[14,1,1,35,36,[[410,1,1,35,36]]],[16,2,2,36,38,[[428,1,1,36,37],[433,1,1,37,38]]],[23,3,3,38,41,[[784,1,1,38,39],[785,1,1,39,40],[787,1,1,40,41]]],[25,1,1,41,42,[[810,1,1,41,42]]]],[1009,1298,1377,1391,1432,1444,1514,1527,1787,1801,1853,4111,4139,4221,4673,4681,4682,4734,4735,4742,4744,4931,4972,4981,4994,5441,5690,5740,5865,6037,7014,7112,8411,11600,11872,12222,12760,12828,19948,19973,20003,20628]]],["+",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]]],[1853,4972]]],["children",[11,11,[[3,3,3,0,3,[[130,1,1,0,1],[132,1,1,1,2],[147,1,1,2,3]]],[4,2,2,3,5,[[155,1,1,3,4],[183,1,1,4,5]]],[6,1,1,5,6,[[231,1,1,5,6]]],[16,1,1,6,7,[[428,1,1,6,7]]],[23,3,3,7,10,[[784,1,1,7,8],[785,1,1,8,9],[787,1,1,9,10]]],[25,1,1,10,11,[[810,1,1,10,11]]]],[4111,4221,4682,4981,5740,7112,12760,19948,19973,20003,20628]]],["families",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1432]]],["little",[1,1,[[5,1,1,0,1,[[194,1,1,0,1]]]],[6037]]],["ones",[27,27,[[0,7,7,0,7,[[33,1,1,0,1],[42,1,1,1,2],[44,1,1,2,3],[45,1,1,3,4],[46,1,1,4,5],[49,2,2,5,7]]],[1,2,2,7,9,[[59,2,2,7,9]]],[3,7,7,9,16,[[130,1,1,9,10],[147,2,2,10,12],[148,4,4,12,16]]],[4,4,4,16,20,[[153,1,1,16,17],[155,1,1,17,18],[172,1,1,18,19],[181,1,1,19,20]]],[5,1,1,20,21,[[187,1,1,20,21]]],[6,1,1,21,22,[[228,1,1,21,22]]],[9,1,1,22,23,[[281,1,1,22,23]]],[13,2,2,23,25,[[386,1,1,23,24],[397,1,1,24,25]]],[14,1,1,25,26,[[410,1,1,25,26]]],[16,1,1,26,27,[[433,1,1,26,27]]]],[1009,1298,1377,1391,1444,1514,1527,1787,1801,4139,4673,4681,4734,4735,4742,4744,4931,4994,5441,5690,5865,7014,8411,11600,11872,12222,12828]]]]},{"k":"H2946","v":[["*",[2,2,[[22,1,1,0,1,[[726,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]]],[18627,20354]]],["spanned",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18627]]],["swaddled",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20354]]]]},{"k":"H2947","v":[["*",[3,3,[[10,1,1,0,1,[[297,1,1,0,1]]],[13,1,1,1,2,[[370,1,1,1,2]]],[18,1,1,2,3,[[516,1,1,2,3]]]],[8960,11251,14517]]],["breadth",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8960]]],["handbreadth",[2,2,[[13,1,1,0,1,[[370,1,1,0,1]]],[18,1,1,1,2,[[516,1,1,1,2]]]],[11251,14517]]]]},{"k":"H2948","v":[["*",[6,6,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[25,3,3,3,6,[[841,2,2,3,5],[844,1,1,5,6]]]],[2220,2616,8943,21482,21520,21585]]],["breadth",[3,3,[[1,1,1,0,1,[[74,1,1,0,1]]],[25,2,2,1,3,[[841,1,1,1,2],[844,1,1,2,3]]]],[2220,21482,21585]]],["broad",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21520]]],["coping",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8943]]],["handbreadth",[1,1,[[1,1,1,0,1,[[86,1,1,0,1]]]],[2616]]]]},{"k":"H2949","v":[["long",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20352]]]]},{"k":"H2950","v":[["*",[3,3,[[17,2,2,0,2,[[448,1,1,0,1],[449,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]]],[13157,13198,15967]]],["+",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13198]]],["forged",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15967]]],["forgers",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13157]]]]},{"k":"H2951","v":[["*",[2,2,[[23,1,1,0,1,[[795,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[20239,22729]]],["captain",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20239]]],["captains",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22729]]]]},{"k":"H2952","v":[["mincing",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17723]]]]},{"k":"H2953","v":[["*",[3,2,[[26,3,2,0,2,[[853,1,1,0,1],[856,2,1,1,2]]]],[21870,21952]]],["nails",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[856,1,1,1,2]]]],[21870,21952]]],["of",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21952]]]]},{"k":"H2954","v":[["fat",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15968]]]]},{"k":"H2955","v":[["Taphath",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8855]]]]},{"k":"H2956","v":[["continual",[2,2,[[19,2,2,0,2,[[646,1,1,0,1],[654,1,1,1,2]]]],[16938,17184]]]]},{"k":"H2957","v":[["*",[4,4,[[26,4,4,0,4,[[853,3,3,0,3],[854,1,1,3,4]]]],[21862,21869,21870,21895]]],["drive",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21862,21869]]],["driven",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[854,1,1,1,2]]]],[21870,21895]]]]},{"k":"H2958","v":[["before",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7186]]]]},{"k":"H2959","v":[["wearieth",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13780]]]]},{"k":"H2960","v":[["*",[2,2,[[4,1,1,0,1,[[153,1,1,0,1]]],[22,1,1,1,2,[[679,1,1,1,2]]]],[4904,17668]]],["cumbrance",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4904]]],["trouble",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17668]]]]},{"k":"H2961","v":[["*",[2,2,[[6,1,1,0,1,[[225,1,1,0,1]]],[22,1,1,1,2,[[679,1,1,1,2]]]],[6944,17660]]],["new",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6944]]],["putrifying",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17660]]]]},{"k":"H2962","v":[["*",[55,48,[[0,10,9,0,9,[[1,2,1,0,1],[18,1,1,1,2],[23,2,2,2,4],[26,2,2,4,6],[36,1,1,6,7],[40,1,1,7,8],[44,1,1,8,9]]],[1,4,4,9,13,[[50,1,1,9,10],[58,1,1,10,11],[59,1,1,11,12],[61,1,1,12,13]]],[2,1,1,13,14,[[103,1,1,13,14]]],[3,1,1,14,15,[[127,1,1,14,15]]],[4,1,1,15,16,[[183,1,1,15,16]]],[5,2,2,16,18,[[188,1,1,16,17],[189,1,1,17,18]]],[6,1,1,18,19,[[224,1,1,18,19]]],[8,5,4,19,23,[[237,1,1,19,20],[238,3,2,20,22],[244,1,1,22,23]]],[11,2,2,23,25,[[314,1,1,23,24],[318,1,1,24,25]]],[17,1,1,25,26,[[445,1,1,25,26]]],[18,4,4,26,30,[[516,1,1,26,27],[535,1,1,27,28],[567,1,1,28,29],[596,1,1,29,30]]],[19,3,3,30,33,[[635,1,1,30,31],[645,1,1,31,32],[657,1,1,32,33]]],[22,9,8,33,41,[[685,1,1,33,34],[686,1,1,34,35],[695,1,1,35,36],[706,1,1,36,37],[720,1,1,37,38],[726,1,1,38,39],[743,1,1,39,40],[744,2,1,40,41]]],[23,6,4,41,45,[[745,2,1,41,42],[757,2,1,42,43],[782,1,1,43,44],[791,1,1,44,45]]],[25,1,1,45,46,[[817,1,1,45,46]]],[35,3,1,46,47,[[907,3,1,46,47]]],[36,1,1,47,48,[[910,1,1,47,48]]]],[35,461,606,636,731,760,1101,1245,1386,1551,1772,1784,1850,3147,4057,5749,5877,5894,6927,7255,7279,7283,7404,9560,9706,13107,14525,14788,15380,15965,16627,16914,17258,17798,17811,17997,18168,18489,18619,18921,18929,18951,19282,19905,20074,20819,22807,22870]]],["+",[1,1,[[36,1,1,0,1,[[910,1,1,0,1]]]],[22870]]],["Before",[9,9,[[17,1,1,0,1,[[445,1,1,0,1]]],[18,3,3,1,4,[[535,1,1,1,2],[567,1,1,2,3],[596,1,1,3,4]]],[19,1,1,4,5,[[635,1,1,4,5]]],[22,1,1,5,6,[[744,1,1,5,6]]],[23,1,1,6,7,[[745,1,1,6,7]]],[25,1,1,7,8,[[817,1,1,7,8]]],[35,1,1,8,9,[[907,1,1,8,9]]]],[13107,14788,15380,15965,16627,18929,18951,20819,22807]]],["before",[37,34,[[0,10,9,0,9,[[1,2,1,0,1],[18,1,1,1,2],[23,2,2,2,4],[26,2,2,4,6],[36,1,1,6,7],[40,1,1,7,8],[44,1,1,8,9]]],[1,1,1,9,10,[[61,1,1,9,10]]],[2,1,1,10,11,[[103,1,1,10,11]]],[4,1,1,11,12,[[183,1,1,11,12]]],[5,2,2,12,14,[[188,1,1,12,13],[189,1,1,13,14]]],[6,1,1,14,15,[[224,1,1,14,15]]],[8,2,2,15,17,[[237,1,1,15,16],[244,1,1,16,17]]],[11,1,1,17,18,[[314,1,1,17,18]]],[18,1,1,18,19,[[516,1,1,18,19]]],[19,2,2,19,21,[[645,1,1,19,20],[657,1,1,20,21]]],[22,8,8,21,29,[[685,1,1,21,22],[686,1,1,22,23],[695,1,1,23,24],[706,1,1,24,25],[720,1,1,25,26],[726,1,1,26,27],[743,1,1,27,28],[744,1,1,28,29]]],[23,5,4,29,33,[[745,1,1,29,30],[757,2,1,30,31],[782,1,1,31,32],[791,1,1,32,33]]],[35,2,1,33,34,[[907,2,1,33,34]]]],[35,461,606,636,731,760,1101,1245,1386,1850,3147,5749,5877,5894,6927,7255,7404,9560,14525,16914,17258,17798,17811,17997,18168,18489,18619,18921,18929,18951,19282,19905,20074,22807]]],["ere",[4,4,[[1,1,1,0,1,[[50,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[8,1,1,2,3,[[238,1,1,2,3]]],[11,1,1,3,4,[[318,1,1,3,4]]]],[1551,4057,7279,9706]]],["yet",[4,3,[[1,2,2,0,2,[[58,1,1,0,1],[59,1,1,1,2]]],[8,2,1,2,3,[[238,2,1,2,3]]]],[1772,1784,7283]]]]},{"k":"H2963","v":[["*",[25,22,[[0,5,3,0,3,[[36,2,1,0,1],[43,2,1,1,2],[48,1,1,2,3]]],[1,2,1,3,4,[[71,2,1,3,4]]],[4,1,1,4,5,[[185,1,1,4,5]]],[17,2,2,5,7,[[451,1,1,5,6],[453,1,1,6,7]]],[18,4,4,7,11,[[484,1,1,7,8],[494,1,1,8,9],[499,1,1,9,10],[527,1,1,10,11]]],[19,1,1,11,12,[[657,1,1,11,12]]],[23,1,1,12,13,[[749,1,1,12,13]]],[25,4,4,13,17,[[820,2,2,13,15],[823,2,2,15,17]]],[27,2,2,17,19,[[866,1,1,17,18],[867,1,1,18,19]]],[29,1,1,19,20,[[879,1,1,19,20]]],[32,1,1,20,21,[[897,1,1,20,21]]],[33,1,1,21,22,[[901,1,1,21,22]]]],[1116,1352,1500,2126,5830,13247,13280,13997,14115,14217,14690,17259,19064,20884,20887,21001,21003,22166,22168,22375,22641,22711]]],["+",[6,3,[[0,4,2,0,2,[[36,2,1,0,1],[43,2,1,1,2]]],[1,2,1,2,3,[[71,2,1,2,3]]]],[1116,1352,2126]]],["catch",[2,2,[[25,2,2,0,2,[[820,2,2,0,2]]]],[20884,20887]]],["feed",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17259]]],["pieces",[4,4,[[18,1,1,0,1,[[527,1,1,0,1]]],[23,1,1,1,2,[[749,1,1,1,2]]],[32,1,1,2,3,[[897,1,1,2,3]]],[33,1,1,3,4,[[901,1,1,3,4]]]],[14690,19064,22641,22711]]],["prey",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14115]]],["ravening",[3,3,[[18,1,1,0,1,[[499,1,1,0,1]]],[25,2,2,1,3,[[823,2,2,1,3]]]],[14217,21001,21003]]],["ravin",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1500]]],["tear",[3,3,[[18,1,1,0,1,[[484,1,1,0,1]]],[27,1,1,1,2,[[866,1,1,1,2]]],[29,1,1,2,3,[[879,1,1,2,3]]]],[13997,22166,22375]]],["teareth",[3,3,[[4,1,1,0,1,[[185,1,1,0,1]]],[17,2,2,1,3,[[451,1,1,1,2],[453,1,1,2,3]]]],[5830,13247,13280]]],["torn",[1,1,[[27,1,1,0,1,[[867,1,1,0,1]]]],[22168]]]]},{"k":"H2964","v":[["*",[22,22,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[17,4,4,2,6,[[439,1,1,2,3],[459,1,1,3,4],[464,1,1,4,5],[473,1,1,5,6]]],[18,4,4,6,10,[[553,1,1,6,7],[581,1,1,7,8],[588,1,1,8,9],[601,1,1,9,10]]],[19,1,1,10,11,[[658,1,1,10,11]]],[22,2,2,11,13,[[683,1,1,11,12],[709,1,1,12,13]]],[25,4,4,13,17,[[820,2,2,13,15],[823,2,2,15,17]]],[29,1,1,17,18,[[881,1,1,17,18]]],[33,3,3,18,21,[[901,2,2,18,20],[902,1,1,20,21]]],[38,1,1,21,22,[[927,1,1,21,22]]]],[1482,4440,12941,13441,13549,13832,15085,15592,15798,16108,17299,17768,18254,20884,20887,21001,21003,22399,22711,22712,22713,23130]]],["+",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1482]]],["meat",[3,3,[[18,1,1,0,1,[[588,1,1,0,1]]],[19,1,1,1,2,[[658,1,1,1,2]]],[38,1,1,2,3,[[927,1,1,2,3]]]],[15798,17299,23130]]],["prey",[17,17,[[3,1,1,0,1,[[139,1,1,0,1]]],[17,3,3,1,4,[[439,1,1,1,2],[459,1,1,2,3],[473,1,1,3,4]]],[18,3,3,4,7,[[553,1,1,4,5],[581,1,1,5,6],[601,1,1,6,7]]],[22,2,2,7,9,[[683,1,1,7,8],[709,1,1,8,9]]],[25,4,4,9,13,[[820,2,2,9,11],[823,2,2,11,13]]],[29,1,1,13,14,[[881,1,1,13,14]]],[33,3,3,14,17,[[901,2,2,14,16],[902,1,1,16,17]]]],[4440,12941,13441,13832,15085,15592,16108,17768,18254,20884,20887,21001,21003,22399,22711,22712,22713]]],["spoil",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13549]]]]},{"k":"H2965","v":[["*",[2,2,[[0,1,1,0,1,[[7,1,1,0,1]]],[25,1,1,1,2,[[818,1,1,1,2]]]],[194,20834]]],["leaves",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20834]]],["off",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[194]]]]},{"k":"H2966","v":[["*",[9,9,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,2,2,1,3,[[71,2,2,1,3]]],[2,3,3,3,6,[[96,1,1,3,4],[106,1,1,4,5],[111,1,1,5,6]]],[25,2,2,6,8,[[805,1,1,6,7],[845,1,1,7,8]]],[33,1,1,8,9,[[901,1,1,8,9]]]],[912,2126,2144,2903,3250,3377,20543,21630,22711]]],["beasts",[2,2,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,1,1,1,2,[[96,1,1,1,2]]]],[2144,2903]]],["pieces",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20543]]],["ravin",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22711]]],["torn",[5,5,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[2,2,2,2,4,[[106,1,1,2,3],[111,1,1,3,4]]],[25,1,1,4,5,[[845,1,1,4,5]]]],[912,2126,3250,3377,21630]]]]},{"k":"H2967","v":[["Tarpelites",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12119]]]]},{"k":"H2968","v":[["longed",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16029]]]]},{"k":"H2969","v":[["appertain",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19208]]]]},{"k":"H2970","v":[["Jaazaniah",[4,4,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,1,1,1,2,[[779,1,1,1,2]]],[25,2,2,2,4,[[809,1,1,2,3],[812,1,1,3,4]]]],[10245,19826,20615,20656]]]]},{"k":"H2971","v":[["Jair",[9,9,[[3,1,1,0,1,[[148,1,1,0,1]]],[4,1,1,1,2,[[155,1,1,1,2]]],[5,1,1,2,3,[[199,1,1,2,3]]],[6,2,2,3,5,[[220,2,2,3,5]]],[10,1,1,5,6,[[294,1,1,5,6]]],[12,2,2,6,8,[[339,2,2,6,8]]],[16,1,1,8,9,[[427,1,1,8,9]]]],[4759,4989,6184,6814,6816,8857,10328,10329,12729]]]]},{"k":"H2972","v":[["Jairite",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8580]]]]},{"k":"H2973","v":[["*",[4,4,[[3,1,1,0,1,[[128,1,1,0,1]]],[22,1,1,1,2,[[697,1,1,1,2]]],[23,2,2,2,4,[[749,1,1,2,3],[794,1,1,3,4]]]],[4070,18017,19062,20202]]],["dote",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20202]]],["foolish",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19062]]],["foolishly",[1,1,[[3,1,1,0,1,[[128,1,1,0,1]]]],[4070]]],["fools",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18017]]]]},{"k":"H2974","v":[["*",[19,19,[[0,2,2,0,2,[[17,2,2,0,2]]],[1,1,1,2,3,[[51,1,1,2,3]]],[4,1,1,3,4,[[153,1,1,3,4]]],[5,2,2,4,6,[[193,1,1,4,5],[203,1,1,5,6]]],[6,4,4,6,10,[[211,2,2,6,8],[227,1,1,8,9],[229,1,1,9,10]]],[8,2,2,10,12,[[247,1,1,10,11],[252,1,1,11,12]]],[9,1,1,12,13,[[273,1,1,12,13]]],[11,2,2,13,15,[[317,1,1,13,14],[318,1,1,14,15]]],[12,1,1,15,16,[[354,1,1,15,16]]],[17,2,2,16,18,[[441,2,2,16,18]]],[27,1,1,18,19,[[866,1,1,18,19]]]],[451,455,1575,4897,5983,6287,6536,6544,6991,7030,7482,7657,8209,9670,9677,10890,12987,13006,22163]]],["assayed",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7657]]],["began",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4897]]],["content",[7,7,[[1,1,1,0,1,[[51,1,1,0,1]]],[5,1,1,1,2,[[193,1,1,1,2]]],[6,2,2,2,4,[[227,1,1,2,3],[229,1,1,3,4]]],[11,2,2,4,6,[[317,1,1,4,5],[318,1,1,5,6]]],[17,1,1,6,7,[[441,1,1,6,7]]]],[1575,5983,6991,7030,9670,9677,13006]]],["please",[3,3,[[9,1,1,0,1,[[273,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]],[17,1,1,2,3,[[441,1,1,2,3]]]],[8209,10890,12987]]],["pleased",[1,1,[[8,1,1,0,1,[[247,1,1,0,1]]]],[7482]]],["upon",[2,2,[[0,2,2,0,2,[[17,2,2,0,2]]]],[451,455]]],["willingly",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22163]]],["would",[3,3,[[5,1,1,0,1,[[203,1,1,0,1]]],[6,2,2,1,3,[[211,2,2,1,3]]]],[6287,6536,6544]]]]},{"k":"H2975","v":[["*",[65,48,[[0,6,5,0,5,[[40,6,5,0,5]]],[1,25,17,5,22,[[50,1,1,5,6],[51,3,2,6,8],[53,2,1,8,9],[56,14,8,9,17],[57,4,4,17,21],[66,1,1,21,22]]],[11,1,1,22,23,[[331,1,1,22,23]]],[17,1,1,23,24,[[463,1,1,23,24]]],[18,1,1,24,25,[[555,1,1,24,25]]],[22,10,8,25,33,[[685,1,1,25,26],[697,5,3,26,29],[701,2,2,29,31],[711,1,1,31,32],[715,1,1,32,33]]],[23,2,2,33,35,[[790,2,2,33,35]]],[25,9,6,35,41,[[830,8,5,35,40],[831,1,1,40,41]]],[26,4,3,41,44,[[861,4,3,41,44]]],[29,4,2,44,46,[[886,2,1,44,45],[887,2,1,45,46]]],[33,1,1,46,47,[[902,1,1,46,47]]],[37,1,1,47,48,[[920,1,1,47,48]]]],[1196,1197,1198,1212,1213,1554,1557,1559,1610,1700,1702,1703,1704,1705,1706,1709,1710,1713,1715,1719,1721,1988,10085,13514,15157,17800,18010,18011,18012,18080,18087,18300,18377,20052,20053,21186,21187,21188,21192,21193,21216,22086,22087,22088,22489,22500,22720,23027]]],["brooks",[5,3,[[22,5,3,0,3,[[697,5,3,0,3]]]],[18010,18011,18012]]],["flood",[6,4,[[23,2,2,0,2,[[790,2,2,0,2]]],[29,4,2,2,4,[[886,2,1,2,3],[887,2,1,3,4]]]],[20052,20053,22489,22500]]],["river",[35,26,[[0,6,5,0,5,[[40,6,5,0,5]]],[1,20,13,5,18,[[50,1,1,5,6],[51,1,1,6,7],[53,2,1,7,8],[56,12,6,8,14],[57,3,3,14,17],[66,1,1,17,18]]],[22,2,2,18,20,[[701,2,2,18,20]]],[25,2,2,20,22,[[830,2,2,20,22]]],[26,4,3,22,25,[[861,4,3,22,25]]],[37,1,1,25,26,[[920,1,1,25,26]]]],[1196,1197,1198,1212,1213,1554,1559,1610,1702,1703,1705,1706,1709,1710,1713,1719,1721,1988,18080,18087,21186,21192,22086,22087,22088,23027]]],["river's",[3,3,[[1,3,3,0,3,[[51,2,2,0,2],[56,1,1,2,3]]]],[1557,1559,1700]]],["rivers",[15,13,[[1,2,2,0,2,[[56,1,1,0,1],[57,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[17,1,1,3,4,[[463,1,1,3,4]]],[18,1,1,4,5,[[555,1,1,4,5]]],[22,2,2,5,7,[[685,1,1,5,6],[715,1,1,6,7]]],[25,7,5,7,12,[[830,6,4,7,11],[831,1,1,11,12]]],[33,1,1,12,13,[[902,1,1,12,13]]]],[1704,1715,10085,13514,15157,17800,18377,21186,21187,21188,21193,21216,22720]]],["streams",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18300]]]]},{"k":"H2976","v":[["*",[6,6,[[8,1,1,0,1,[[262,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]],[20,1,1,2,3,[[660,1,1,2,3]]],[22,1,1,3,4,[[735,1,1,3,4]]],[23,2,2,4,6,[[746,1,1,4,5],[762,1,1,5,6]]]],[7931,13004,17353,18775,18990,19396]]],["despair",[2,2,[[8,1,1,0,1,[[262,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[7931,17353]]],["desperate",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[13004]]],["hope",[3,3,[[22,1,1,0,1,[[735,1,1,0,1]]],[23,2,2,1,3,[[746,1,1,1,2],[762,1,1,2,3]]]],[18775,18990,19396]]]]},{"k":"H2977","v":[["*",[53,48,[[10,1,1,0,1,[[303,1,1,0,1]]],[11,13,12,1,13,[[333,2,2,1,3],[334,2,2,3,5],[335,9,8,5,13]]],[12,2,2,13,15,[[340,2,2,13,15]]],[13,17,15,15,30,[[399,1,1,15,16],[400,2,2,16,18],[401,13,11,18,29],[402,1,1,29,30]]],[23,18,16,30,46,[[745,3,2,30,32],[747,1,1,32,33],[766,3,2,33,35],[769,2,2,35,37],[770,1,1,37,38],[771,1,1,38,39],[779,1,1,39,40],[780,3,3,40,43],[781,1,1,43,44],[789,1,1,44,45],[790,1,1,45,46]]],[35,1,1,46,47,[[906,1,1,46,47]]],[37,1,1,47,48,[[916,1,1,47,48]]]],[9186,10143,10145,10146,10148,10181,10184,10188,10189,10193,10194,10195,10199,10375,10376,11933,11934,11966,11967,11973,11982,11984,11985,11986,11988,11989,11990,11991,11992,11994,18948,18949,19008,19465,19472,19535,19537,19573,19597,19824,19843,19844,19851,19875,20041,20047,22788,22957]]],["+",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11933]]],["Josiah",[52,47,[[10,1,1,0,1,[[303,1,1,0,1]]],[11,13,12,1,13,[[333,2,2,1,3],[334,2,2,3,5],[335,9,8,5,13]]],[12,2,2,13,15,[[340,2,2,13,15]]],[13,16,14,15,29,[[400,2,2,15,17],[401,13,11,17,28],[402,1,1,28,29]]],[23,18,16,29,45,[[745,3,2,29,31],[747,1,1,31,32],[766,3,2,32,34],[769,2,2,34,36],[770,1,1,36,37],[771,1,1,37,38],[779,1,1,38,39],[780,3,3,39,42],[781,1,1,42,43],[789,1,1,43,44],[790,1,1,44,45]]],[35,1,1,45,46,[[906,1,1,45,46]]],[37,1,1,46,47,[[916,1,1,46,47]]]],[9186,10143,10145,10146,10148,10181,10184,10188,10189,10193,10194,10195,10199,10375,10376,11934,11966,11967,11973,11982,11984,11985,11986,11988,11989,11990,11991,11992,11994,18948,18949,19008,19465,19472,19535,19537,19573,19597,19824,19843,19844,19851,19875,20041,20047,22788,22957]]]]},{"k":"H2978","v":[["entrance",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21492]]]]},{"k":"H2979","v":[["Jeaterai",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10475]]]]},{"k":"H2980","v":[["cried",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6651]]]]},{"k":"H2981","v":[["*",[13,13,[[2,2,2,0,2,[[115,2,2,0,2]]],[4,2,2,2,4,[[163,1,1,2,3],[184,1,1,3,4]]],[6,1,1,4,5,[[216,1,1,4,5]]],[17,1,1,5,6,[[455,1,1,5,6]]],[18,3,3,6,9,[[544,1,1,6,7],[555,1,1,7,8],[562,1,1,8,9]]],[25,1,1,9,10,[[835,1,1,9,10]]],[34,1,1,10,11,[[905,1,1,10,11]]],[36,1,1,11,12,[[909,1,1,11,12]]],[37,1,1,12,13,[[918,1,1,12,13]]]],[3528,3544,5225,5780,6658,13354,14899,15159,15283,21340,22785,22850,22988]]],["fruit",[3,3,[[4,1,1,0,1,[[163,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]],[36,1,1,2,3,[[909,1,1,2,3]]]],[5225,22785,22850]]],["increase",[10,10,[[2,2,2,0,2,[[115,2,2,0,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[6,1,1,3,4,[[216,1,1,3,4]]],[17,1,1,4,5,[[455,1,1,4,5]]],[18,3,3,5,8,[[544,1,1,5,6],[555,1,1,6,7],[562,1,1,7,8]]],[25,1,1,8,9,[[835,1,1,8,9]]],[37,1,1,9,10,[[918,1,1,9,10]]]],[3528,3544,5780,6658,13354,14899,15159,15283,21340,22988]]]]},{"k":"H2982","v":[["Jebus",[4,4,[[6,2,2,0,2,[[229,2,2,0,2]]],[12,2,2,2,4,[[348,2,2,2,4]]]],[7034,7035,10677,10678]]]]},{"k":"H2983","v":[["*",[41,39,[[0,2,2,0,2,[[9,1,1,0,1],[14,1,1,1,2]]],[1,6,6,2,8,[[52,2,2,2,4],[62,1,1,4,5],[72,1,1,5,6],[82,1,1,6,7],[83,1,1,7,8]]],[3,1,1,8,9,[[129,1,1,8,9]]],[4,2,2,9,11,[[159,1,1,9,10],[172,1,1,10,11]]],[5,10,9,11,20,[[189,1,1,11,12],[195,1,1,12,13],[197,1,1,13,14],[198,1,1,14,15],[201,3,2,15,17],[204,2,2,17,19],[210,1,1,19,20]]],[6,4,3,20,23,[[211,2,1,20,21],[213,1,1,21,22],[229,1,1,22,23]]],[9,4,4,23,27,[[271,2,2,23,25],[290,2,2,25,27]]],[10,1,1,27,28,[[299,1,1,27,28]]],[12,6,6,28,34,[[338,1,1,28,29],[348,2,2,29,31],[358,3,3,31,34]]],[13,2,2,34,36,[[369,1,1,34,35],[374,1,1,35,36]]],[14,1,1,36,37,[[411,1,1,36,37]]],[15,1,1,37,38,[[421,1,1,37,38]]],[37,1,1,38,39,[[919,1,1,38,39]]]],[250,381,1587,1596,1872,2167,2475,2507,4104,5112,5444,5903,6038,6110,6138,6210,6265,6309,6321,6487,6530,6573,7035,8138,8140,8708,8710,9071,10266,10677,10679,10949,10952,10962,11230,11353,12238,12519,23006]]],["Jebusi",[2,2,[[5,2,2,0,2,[[204,2,2,0,2]]]],[6309,6321]]],["Jebusite",[14,14,[[0,1,1,0,1,[[9,1,1,0,1]]],[1,2,2,1,3,[[82,1,1,1,2],[83,1,1,2,3]]],[5,3,3,3,6,[[195,1,1,3,4],[197,1,1,4,5],[201,1,1,5,6]]],[9,2,2,6,8,[[290,2,2,6,8]]],[12,4,4,8,12,[[338,1,1,8,9],[358,3,3,9,12]]],[13,1,1,12,13,[[369,1,1,12,13]]],[37,1,1,13,14,[[919,1,1,13,14]]]],[250,2475,2507,6038,6110,6210,8708,8710,10266,10949,10952,10962,11230,23006]]],["Jebusites",[25,23,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,4,4,1,5,[[52,2,2,1,3],[62,1,1,3,4],[72,1,1,4,5]]],[3,1,1,5,6,[[129,1,1,5,6]]],[4,2,2,6,8,[[159,1,1,6,7],[172,1,1,7,8]]],[5,5,4,8,12,[[189,1,1,8,9],[198,1,1,9,10],[201,2,1,10,11],[210,1,1,11,12]]],[6,4,3,12,15,[[211,2,1,12,13],[213,1,1,13,14],[229,1,1,14,15]]],[9,2,2,15,17,[[271,2,2,15,17]]],[10,1,1,17,18,[[299,1,1,17,18]]],[12,2,2,18,20,[[348,2,2,18,20]]],[13,1,1,20,21,[[374,1,1,20,21]]],[14,1,1,21,22,[[411,1,1,21,22]]],[15,1,1,22,23,[[421,1,1,22,23]]]],[381,1587,1596,1872,2167,4104,5112,5444,5903,6138,6265,6487,6530,6573,7035,8138,8140,9071,10677,10679,11353,12238,12519]]]]},{"k":"H2984","v":[["Ibhar",[3,3,[[9,1,1,0,1,[[271,1,1,0,1]]],[12,2,2,1,3,[[340,1,1,1,2],[351,1,1,2,3]]]],[8147,10367,10779]]]]},{"k":"H2985","v":[["*",[8,7,[[5,1,1,0,1,[[197,1,1,0,1]]],[6,6,5,1,6,[[214,6,5,1,6]]],[18,1,1,6,7,[[560,1,1,6,7]]]],[6108,6601,6606,6616,6622,6623,15250]]],["Jabin",[7,6,[[5,1,1,0,1,[[197,1,1,0,1]]],[6,5,4,1,5,[[214,5,4,1,5]]],[18,1,1,5,6,[[560,1,1,5,6]]]],[6108,6601,6616,6622,6623,15250]]],["Jabin's",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6606]]]]},{"k":"H2986","v":[["*",[18,18,[[17,3,3,0,3,[[445,1,1,0,1],[456,2,2,1,3]]],[18,6,6,3,9,[[522,2,2,3,5],[537,1,1,5,6],[545,1,1,6,7],[553,1,1,7,8],[585,1,1,8,9]]],[22,4,4,9,13,[[696,1,1,9,10],[701,1,1,10,11],[731,1,1,11,12],[733,1,1,12,13]]],[23,2,2,13,15,[[755,1,1,13,14],[775,1,1,14,15]]],[27,2,2,15,17,[[871,1,1,15,16],[873,1,1,16,17]]],[35,1,1,17,18,[[908,1,1,17,18]]]],[13105,13385,13387,14611,14612,14816,14929,15092,15752,18004,18084,18718,18752,19245,19700,22231,22253,22830]]],["bring",[5,5,[[18,4,4,0,4,[[537,1,1,0,1],[545,1,1,1,2],[553,1,1,2,3],[585,1,1,3,4]]],[35,1,1,4,5,[[908,1,1,4,5]]]],[14816,14929,15092,15752,22830]]],["brought",[6,6,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,2,2,1,3,[[522,2,2,1,3]]],[22,2,2,3,5,[[696,1,1,3,4],[731,1,1,4,5]]],[23,1,1,5,6,[[755,1,1,5,6]]]],[13387,14611,14612,18004,18718,19245]]],["carried",[3,3,[[17,1,1,0,1,[[445,1,1,0,1]]],[27,2,2,1,3,[[871,1,1,1,2],[873,1,1,2,3]]]],[13105,22231,22253]]],["carry",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18084]]],["forth",[2,2,[[17,1,1,0,1,[[456,1,1,0,1]]],[22,1,1,1,2,[[733,1,1,1,2]]]],[13385,18752]]],["lead",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19700]]]]},{"k":"H2987","v":[["*",[3,3,[[14,3,3,0,3,[[407,1,1,0,1],[408,1,1,1,2],[409,1,1,2,3]]]],[12148,12156,12188]]],["brought",[2,2,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]]],[12148,12156]]],["carry",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12188]]]]},{"k":"H2988","v":[["*",[2,2,[[22,2,2,0,2,[[708,1,1,0,1],[722,1,1,1,2]]]],[18242,18537]]],["courses",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18537]]],["streams",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18242]]]]},{"k":"H2989","v":[["Jabal",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[99]]]]},{"k":"H2990","v":[["wen",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3391]]]]},{"k":"H2991","v":[["Ibleam",[3,3,[[5,1,1,0,1,[[203,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]],[11,1,1,2,3,[[321,1,1,2,3]]]],[6286,6536,9783]]]]},{"k":"H2992","v":[["*",[3,3,[[0,1,1,0,1,[[37,1,1,0,1]]],[4,2,2,1,3,[[177,2,2,1,3]]]],[1127,5552,5554]]],["brother",[2,2,[[4,2,2,0,2,[[177,2,2,0,2]]]],[5552,5554]]],["marry",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1127]]]]},{"k":"H2993","v":[["brother",[2,2,[[4,2,2,0,2,[[177,2,2,0,2]]]],[5552,5554]]]]},{"k":"H2994","v":[["*",[5,3,[[4,3,2,0,2,[[177,3,2,0,2]]],[7,2,1,2,3,[[232,2,1,2,3]]]],[5554,5556,7142]]],["law",[2,1,[[7,2,1,0,1,[[232,2,1,0,1]]]],[7142]]],["wife",[3,2,[[4,3,2,0,2,[[177,3,2,0,2]]]],[5554,5556]]]]},{"k":"H2995","v":[["Jabneel",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]]],[6213,6354]]]]},{"k":"H2996","v":[["Jabneh",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11738]]]]},{"k":"H2997","v":[["Ibneiah",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10623]]]]},{"k":"H2998","v":[["Ibnijah",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10623]]]]},{"k":"H2999","v":[["Jabbok",[7,7,[[0,1,1,0,1,[[31,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[4,2,2,2,4,[[154,1,1,2,3],[155,1,1,3,4]]],[5,1,1,4,5,[[198,1,1,4,5]]],[6,2,2,5,7,[[221,2,2,5,7]]]],[950,4364,4975,4991,6132,6842,6851]]]]},{"k":"H3000","v":[["Jeberechiah",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17809]]]]},{"k":"H3001","v":[["*",[69,58,[[0,2,2,0,2,[[7,2,2,0,2]]],[5,6,5,2,7,[[188,1,1,2,3],[190,2,1,3,4],[191,1,1,4,5],[195,2,2,5,7]]],[9,1,1,7,8,[[285,1,1,7,8]]],[10,2,2,8,10,[[303,1,1,8,9],[307,1,1,9,10]]],[17,5,5,10,15,[[443,1,1,10,11],[447,1,1,11,12],[449,1,1,12,13],[450,1,1,13,14],[453,1,1,14,15]]],[18,6,6,15,21,[[499,1,1,15,16],[551,1,1,16,17],[567,1,1,17,18],[579,2,2,18,20],[606,1,1,20,21]]],[19,1,1,21,22,[[644,1,1,21,22]]],[22,10,9,22,31,[[693,1,1,22,23],[697,2,2,23,25],[705,1,1,25,26],[718,3,3,26,29],[720,2,1,29,30],[722,1,1,30,31]]],[23,12,10,31,41,[[754,1,1,31,32],[756,1,1,32,33],[767,1,1,33,34],[790,1,1,34,35],[792,3,2,35,37],[794,3,2,37,39],[795,2,2,39,41]]],[24,1,1,41,42,[[800,1,1,41,42]]],[25,9,5,42,47,[[818,6,3,42,45],[820,2,1,45,46],[838,1,1,46,47]]],[27,1,1,47,48,[[870,1,1,47,48]]],[28,6,4,48,52,[[876,6,4,48,52]]],[29,2,2,52,54,[[879,1,1,52,53],[882,1,1,53,54]]],[31,1,1,54,55,[[892,1,1,54,55]]],[33,1,1,55,56,[[900,1,1,55,56]]],[37,3,2,56,58,[[920,1,1,56,57],[921,2,1,57,58]]]],[190,197,5879,5933,5935,6042,6049,8516,9188,9324,13041,13143,13192,13233,13292,14219,15063,15384,15525,15532,16138,16895,17966,18009,18011,18162,18427,18428,18444,18495,18560,19215,19253,19494,20069,20081,20100,20168,20204,20229,20248,20428,20834,20835,20849,20893,21408,22224,22301,22303,22308,22311,22366,22417,22575,22688,23027,23045]]],["+",[7,5,[[5,3,3,0,3,[[188,1,1,0,1],[190,1,1,1,2],[191,1,1,2,3]]],[25,2,1,3,4,[[818,2,1,3,4]]],[37,2,1,4,5,[[921,2,1,4,5]]]],[5879,5933,5935,20835,23045]]],["away",[2,2,[[22,1,1,0,1,[[693,1,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]]],[17966,22303]]],["confounded",[8,6,[[23,8,6,0,6,[[754,1,1,0,1],[790,1,1,1,2],[792,3,2,2,4],[794,2,1,4,5],[795,1,1,5,6]]]],[19215,20069,20081,20100,20168,20229]]],["dried",[2,2,[[0,1,1,0,1,[[7,1,1,0,1]]],[25,1,1,1,2,[[838,1,1,1,2]]]],[197,21408]]],["drieth",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16895]]],["dry",[4,4,[[5,2,2,0,2,[[195,2,2,0,2]]],[23,1,1,2,3,[[795,1,1,2,3]]],[33,1,1,3,4,[[900,1,1,3,4]]]],[6042,6049,20248,22688]]],["shamed",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8516]]],["up",[23,22,[[0,1,1,0,1,[[7,1,1,0,1]]],[5,1,1,1,2,[[190,1,1,1,2]]],[10,2,2,2,4,[[303,1,1,2,3],[307,1,1,3,4]]],[17,4,4,4,8,[[447,1,1,4,5],[449,1,1,5,6],[450,1,1,6,7],[453,1,1,7,8]]],[18,2,2,8,10,[[499,1,1,8,9],[551,1,1,9,10]]],[22,4,3,10,13,[[697,1,1,10,11],[720,2,1,11,12],[722,1,1,12,13]]],[23,2,2,13,15,[[767,1,1,13,14],[794,1,1,14,15]]],[25,2,2,15,17,[[818,1,1,15,16],[820,1,1,16,17]]],[27,1,1,17,18,[[870,1,1,17,18]]],[28,3,3,18,21,[[876,3,3,18,21]]],[37,1,1,21,22,[[920,1,1,21,22]]]],[190,5933,9188,9324,13143,13192,13233,13292,14219,15063,18009,18495,18560,19494,20204,20849,20893,22224,22301,22303,22311,23027]]],["wither",[7,6,[[22,2,2,0,2,[[697,1,1,0,1],[718,1,1,1,2]]],[23,1,1,2,3,[[756,1,1,2,3]]],[25,3,2,3,5,[[818,3,2,3,5]]],[29,1,1,5,6,[[879,1,1,5,6]]]],[18011,18444,19253,20834,20835,22366]]],["withered",[9,9,[[18,2,2,0,2,[[579,2,2,0,2]]],[22,1,1,2,3,[[705,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]],[25,1,1,4,5,[[820,1,1,4,5]]],[28,2,2,5,7,[[876,2,2,5,7]]],[29,1,1,7,8,[[882,1,1,7,8]]],[31,1,1,8,9,[[892,1,1,8,9]]]],[15525,15532,18162,20428,20893,22303,22308,22417,22575]]],["withereth",[5,5,[[17,1,1,0,1,[[443,1,1,0,1]]],[18,2,2,1,3,[[567,1,1,1,2],[606,1,1,2,3]]],[22,2,2,3,5,[[718,2,2,3,5]]]],[13041,15384,16138,18427,18428]]]]},{"k":"H3002","v":[["*",[9,9,[[3,2,2,0,2,[[122,1,1,0,1],[127,1,1,1,2]]],[17,1,1,2,3,[[448,1,1,2,3]]],[22,1,1,3,4,[[734,1,1,3,4]]],[25,4,4,4,8,[[818,1,1,4,5],[821,1,1,5,6],[838,2,2,6,8]]],[33,1,1,8,9,[[900,1,1,8,9]]]],[3826,4030,13178,18756,20849,20942,21399,21401,22694]]],["away",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4030]]],["dried",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3826]]],["dry",[7,7,[[17,1,1,0,1,[[448,1,1,0,1]]],[22,1,1,1,2,[[734,1,1,1,2]]],[25,4,4,2,6,[[818,1,1,2,3],[821,1,1,3,4],[838,2,2,4,6]]],[33,1,1,6,7,[[900,1,1,6,7]]]],[13178,18756,20849,20942,21399,21401,22694]]]]},{"k":"H3003","v":[["*",[24,21,[[6,5,5,0,5,[[231,5,5,0,5]]],[8,10,8,5,13,[[246,7,5,5,10],[266,3,3,10,13]]],[9,3,3,13,16,[[268,2,2,13,15],[287,1,1,15,16]]],[11,3,3,16,19,[[327,3,3,16,19]]],[12,3,2,19,21,[[347,3,2,19,21]]]],[7110,7111,7112,7114,7116,7446,7448,7450,7454,7455,8020,8021,8022,8053,8054,8592,9935,9938,9939,10670,10671]]],["+",[12,12,[[6,5,5,0,5,[[231,5,5,0,5]]],[8,3,3,5,8,[[246,2,2,5,7],[266,1,1,7,8]]],[9,3,3,8,11,[[268,2,2,8,10],[287,1,1,10,11]]],[12,1,1,11,12,[[347,1,1,11,12]]]],[7110,7111,7112,7114,7116,7446,7454,8020,8053,8054,8592,10670]]],["Jabesh",[12,11,[[8,7,7,0,7,[[246,5,5,0,5],[266,2,2,5,7]]],[11,3,3,7,10,[[327,3,3,7,10]]],[12,2,1,10,11,[[347,2,1,10,11]]]],[7446,7448,7450,7454,7455,8021,8022,9935,9938,9939,10671]]]]},{"k":"H3004","v":[["*",[14,14,[[0,2,2,0,2,[[0,2,2,0,2]]],[1,5,5,2,7,[[53,1,1,2,3],[63,3,3,3,6],[64,1,1,6,7]]],[5,1,1,7,8,[[190,1,1,7,8]]],[15,1,1,8,9,[[421,1,1,8,9]]],[18,1,1,9,10,[[543,1,1,9,10]]],[22,1,1,10,11,[[722,1,1,10,11]]],[31,3,3,11,14,[[889,2,2,11,13],[890,1,1,13,14]]]],[8,9,1610,1905,1911,1918,1939,5932,12522,14879,18536,22540,22544,22558]]],["dry",[10,10,[[0,2,2,0,2,[[0,2,2,0,2]]],[1,5,5,2,7,[[53,1,1,2,3],[63,3,3,3,6],[64,1,1,6,7]]],[18,1,1,7,8,[[543,1,1,7,8]]],[31,2,2,8,10,[[889,1,1,8,9],[890,1,1,9,10]]]],[8,9,1610,1905,1911,1918,1939,14879,22540,22558]]],["ground",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18536]]],["land",[3,3,[[5,1,1,0,1,[[190,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[31,1,1,2,3,[[889,1,1,2,3]]]],[5932,12522,22544]]]]},{"k":"H3005","v":[["Jibsam",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10537]]]]},{"k":"H3006","v":[["dry",[2,2,[[1,1,1,0,1,[[53,1,1,0,1]]],[18,1,1,1,2,[[572,1,1,1,2]]]],[1610,15459]]]]},{"k":"H3007","v":[["earth",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21768]]]]},{"k":"H3008","v":[["*",[3,3,[[3,1,1,0,1,[[129,1,1,0,1]]],[9,1,1,1,2,[[289,1,1,1,2]]],[12,1,1,2,3,[[340,1,1,2,3]]]],[4082,8689,10383]]],["Igal",[2,2,[[3,1,1,0,1,[[129,1,1,0,1]]],[9,1,1,1,2,[[289,1,1,1,2]]]],[4082,8689]]],["Igeal",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10383]]]]},{"k":"H3009","v":[["husbandmen",[1,1,[[23,1,1,0,1,[[796,1,1,0,1]]]],[20292]]]]},{"k":"H3010","v":[["fields",[1,1,[[23,1,1,0,1,[[783,1,1,0,1]]]],[19933]]]]},{"k":"H3011","v":[["Jogbehah",[2,2,[[3,1,1,0,1,[[148,1,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]]],[4753,6730]]]]},{"k":"H3012","v":[["Igdaliah",[1,1,[[23,1,1,0,1,[[779,1,1,0,1]]]],[19827]]]]},{"k":"H3013","v":[["*",[8,8,[[17,1,1,0,1,[[454,1,1,0,1]]],[22,1,1,1,2,[[729,1,1,1,2]]],[24,5,5,2,7,[[797,3,3,2,5],[799,2,2,5,7]]],[35,1,1,7,8,[[908,1,1,7,8]]]],[13299,18696,20314,20315,20322,20386,20387,22838]]],["afflict",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18696]]],["afflicted",[3,3,[[24,3,3,0,3,[[797,3,3,0,3]]]],[20314,20315,20322]]],["grief",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20386]]],["grieve",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20387]]],["sorrowful",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22838]]],["vex",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13299]]]]},{"k":"H3014","v":[["removed",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8567]]]]},{"k":"H3015","v":[["*",[14,14,[[0,2,2,0,2,[[41,1,1,0,1],[43,1,1,1,2]]],[16,1,1,2,3,[[434,1,1,2,3]]],[18,4,4,3,7,[[490,1,1,3,4],[508,1,1,4,5],[584,1,1,5,6],[593,1,1,6,7]]],[22,2,2,7,9,[[713,1,1,7,8],[729,1,1,8,9]]],[23,4,4,9,13,[[752,1,1,9,10],[764,1,1,10,11],[775,1,1,11,12],[789,1,1,12,13]]],[25,1,1,13,14,[[824,1,1,13,14]]]],[1290,1355,12856,14076,14341,15738,15851,18330,18684,19171,19440,19704,20043,21040]]],["+",[2,2,[[16,1,1,0,1,[[434,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[12856,19704]]],["grief",[2,2,[[18,1,1,0,1,[[508,1,1,0,1]]],[23,1,1,1,2,[[789,1,1,1,2]]]],[14341,20043]]],["sorrow",[10,10,[[0,2,2,0,2,[[41,1,1,0,1],[43,1,1,1,2]]],[18,3,3,2,5,[[490,1,1,2,3],[584,1,1,3,4],[593,1,1,4,5]]],[22,2,2,5,7,[[713,1,1,5,6],[729,1,1,6,7]]],[23,2,2,7,9,[[752,1,1,7,8],[764,1,1,8,9]]],[25,1,1,9,10,[[824,1,1,9,10]]]],[1290,1355,14076,15738,15851,18330,18684,19171,19440,21040]]]]},{"k":"H3016","v":[["*",[2,2,[[23,2,2,0,2,[[766,1,1,0,1],[783,1,1,1,2]]]],[19479,19940]]],["+",[1,1,[[23,1,1,0,1,[[783,1,1,0,1]]]],[19940]]],["fearest",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19479]]]]},{"k":"H3017","v":[["Jagur",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6223]]]]},{"k":"H3018","v":[["*",[16,16,[[0,1,1,0,1,[[30,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[15,1,1,2,3,[[417,1,1,2,3]]],[17,3,3,3,6,[[445,1,1,3,4],[474,2,2,4,6]]],[18,3,3,6,9,[[555,1,1,6,7],[586,1,1,7,8],[605,1,1,8,9]]],[22,2,2,9,11,[[723,1,1,9,10],[733,1,1,10,11]]],[23,2,2,11,13,[[747,1,1,11,12],[764,1,1,12,13]]],[25,1,1,13,14,[[824,1,1,13,14]]],[27,1,1,14,15,[[873,1,1,14,15]]],[36,1,1,15,16,[[909,1,1,15,16]]]],[915,5644,12395,13089,13845,13850,15159,15766,16128,18575,18742,19026,19427,21036,22260,22851]]],["+",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12395]]],["labour",[11,11,[[0,1,1,0,1,[[30,1,1,0,1]]],[17,2,2,1,3,[[474,2,2,1,3]]],[18,3,3,3,6,[[555,1,1,3,4],[586,1,1,4,5],[605,1,1,5,6]]],[22,2,2,6,8,[[723,1,1,6,7],[733,1,1,7,8]]],[23,1,1,8,9,[[747,1,1,8,9]]],[25,1,1,9,10,[[824,1,1,9,10]]],[36,1,1,10,11,[[909,1,1,10,11]]]],[915,13845,13850,15159,15766,16128,18575,18742,19026,21036,22851]]],["labours",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[23,1,1,1,2,[[764,1,1,1,2]]],[27,1,1,2,3,[[873,1,1,2,3]]]],[5644,19427,22260]]],["work",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13089]]]]},{"k":"H3019","v":[["+",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12921]]]]},{"k":"H3020","v":[["Jogli",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4838]]]]},{"k":"H3021","v":[["*",[26,25,[[5,2,2,0,2,[[193,1,1,0,1],[210,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[17,1,1,3,4,[[444,1,1,3,4]]],[18,2,2,4,6,[[483,1,1,4,5],[546,1,1,5,6]]],[19,1,1,6,7,[[650,1,1,6,7]]],[20,1,1,7,8,[[668,1,1,7,8]]],[22,12,12,8,20,[[718,3,3,8,11],[721,3,3,11,14],[725,2,2,14,16],[727,1,1,16,17],[735,1,1,17,18],[740,1,1,18,19],[743,1,1,19,20]]],[23,2,2,20,22,[[789,1,1,20,21],[795,1,1,21,22]]],[24,1,1,22,23,[[801,1,1,22,23]]],[34,1,1,23,24,[[904,1,1,23,24]]],[38,2,1,24,25,[[926,2,1,24,25]]]],[5979,6489,8663,13080,13991,14938,17048,17508,18448,18450,18451,18527,18528,18529,18611,18614,18640,18775,18862,18920,20043,20270,20447,22761,23120]]],["Labour",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17048]]],["fainted",[1,1,[[23,1,1,0,1,[[789,1,1,0,1]]]],[20043]]],["labour",[7,7,[[5,2,2,0,2,[[193,1,1,0,1],[210,1,1,1,2]]],[17,1,1,2,3,[[444,1,1,2,3]]],[22,1,1,3,4,[[743,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]],[24,1,1,5,6,[[801,1,1,5,6]]],[34,1,1,6,7,[[904,1,1,6,7]]]],[5979,6489,13080,18920,20270,20447,22761]]],["laboured",[4,4,[[22,4,4,0,4,[[725,2,2,0,2],[727,1,1,2,3],[740,1,1,3,4]]]],[18611,18614,18640,18862]]],["wearied",[5,4,[[22,3,3,0,3,[[721,2,2,0,2],[735,1,1,2,3]]],[38,2,1,3,4,[[926,2,1,3,4]]]],[18528,18529,18775,23120]]],["wearieth",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17508]]],["weary",[7,7,[[9,1,1,0,1,[[289,1,1,0,1]]],[18,2,2,1,3,[[483,1,1,1,2],[546,1,1,2,3]]],[22,4,4,3,7,[[718,3,3,3,6],[721,1,1,6,7]]]],[8663,13991,14938,18448,18450,18451,18527]]]]},{"k":"H3022","v":[["for",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13344]]]]},{"k":"H3023","v":[["*",[3,3,[[4,1,1,0,1,[[177,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[20,1,1,2,3,[[659,1,1,2,3]]]],[5565,8451,17323]]],["labour",[1,1,[[20,1,1,0,1,[[659,1,1,0,1]]]],[17323]]],["weary",[2,2,[[4,1,1,0,1,[[177,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]]],[5565,8451]]]]},{"k":"H3024","v":[["weariness",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17535]]]]},{"k":"H3025","v":[["*",[5,5,[[4,2,2,0,2,[[161,1,1,0,1],[180,1,1,1,2]]],[17,2,2,2,4,[[438,1,1,2,3],[444,1,1,3,4]]],[18,1,1,4,5,[[596,1,1,4,5]]]],[5176,5671,12929,13079,15937]]],["afraid",[3,3,[[4,2,2,0,2,[[161,1,1,0,1],[180,1,1,1,2]]],[17,1,1,2,3,[[444,1,1,2,3]]]],[5176,5671,13079]]],["fear",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15937]]],["of",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12929]]]]},{"k":"H3026","v":[["Jegarsahadutha",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[920]]]]},{"k":"H3027","v":[["*",[1611,1442,[[0,95,80,0,80,[[2,1,1,0,1],[3,1,1,1,2],[4,1,1,2,3],[7,1,1,3,4],[8,4,2,4,6],[13,2,2,6,8],[15,4,3,8,11],[18,4,2,11,13],[20,2,2,13,15],[21,3,3,15,18],[23,7,7,18,25],[24,1,1,25,26],[26,6,4,26,30],[29,1,1,30,31],[30,2,2,31,33],[31,4,3,33,36],[32,2,2,36,38],[33,1,1,38,39],[34,1,1,39,40],[36,4,3,40,43],[37,7,5,43,48],[38,9,9,48,57],[39,2,2,57,59],[40,4,3,59,62],[41,1,1,62,63],[42,8,7,63,70],[43,2,2,70,72],[45,1,1,72,73],[46,2,2,73,75],[47,4,3,75,78],[48,3,2,78,80]]],[1,108,93,80,173,[[51,2,2,80,82],[52,3,3,82,85],[53,12,8,85,93],[54,1,1,93,94],[55,3,2,94,96],[56,5,5,96,101],[57,3,3,101,104],[58,4,4,104,108],[59,4,4,108,112],[61,1,1,112,113],[62,6,4,113,117],[63,7,7,117,124],[64,3,3,124,127],[65,1,1,127,128],[66,8,5,128,133],[67,4,2,133,135],[68,1,1,135,136],[70,5,4,136,140],[71,3,3,140,143],[72,2,2,143,145],[73,1,1,145,146],[75,3,2,146,148],[77,1,1,148,149],[78,9,9,149,158],[79,2,2,158,160],[81,5,5,160,165],[83,2,2,165,167],[84,2,2,167,169],[85,3,2,169,171],[87,1,1,171,172],[89,1,1,172,173]]],[2,50,48,173,221,[[90,1,1,173,174],[92,3,3,174,177],[93,5,5,177,182],[94,2,2,182,184],[95,1,1,184,185],[96,1,1,185,186],[97,7,7,186,193],[98,1,1,193,194],[99,1,1,194,195],[101,1,1,195,196],[103,9,9,196,205],[104,1,1,205,206],[105,3,2,206,208],[110,2,2,208,210],[111,1,1,210,211],[113,1,1,211,212],[114,7,6,212,218],[115,2,2,218,220],[116,1,1,220,221]]],[3,45,44,221,265,[[118,1,1,221,222],[119,1,1,222,223],[120,5,5,223,228],[121,2,2,228,230],[122,1,1,230,231],[123,1,1,231,232],[124,2,2,232,234],[125,1,1,234,235],[126,1,1,235,236],[127,1,1,236,237],[129,1,1,237,238],[130,1,1,238,239],[131,2,2,239,241],[132,1,1,241,242],[136,2,2,242,244],[137,3,3,244,247],[138,4,4,247,251],[140,1,1,251,252],[141,1,1,252,253],[143,3,2,253,255],[147,2,2,255,257],[149,2,2,257,259],[150,1,1,259,260],[151,4,4,260,264],[152,1,1,264,265]]],[4,83,78,265,343,[[153,2,2,265,267],[154,5,5,267,272],[155,4,4,272,276],[156,2,2,276,278],[157,1,1,278,279],[158,2,2,279,281],[159,4,3,281,284],[160,1,1,284,285],[161,3,3,285,288],[162,1,1,288,289],[163,2,2,289,291],[164,5,5,291,296],[165,3,2,296,298],[166,2,2,298,300],[167,6,6,300,306],[168,3,3,306,309],[169,2,1,309,310],[171,4,3,310,313],[172,1,1,313,314],[173,3,3,314,317],[175,3,3,317,320],[176,3,3,320,323],[177,2,1,323,324],[178,2,2,324,326],[179,1,1,326,327],[180,4,4,327,331],[182,1,1,331,332],[183,1,1,332,333],[184,5,5,333,338],[185,3,3,338,341],[186,2,2,341,343]]],[5,36,34,343,377,[[188,2,2,343,345],[190,1,1,345,346],[191,1,1,346,347],[192,1,1,347,348],[193,1,1,348,349],[194,8,6,349,355],[195,3,3,355,358],[196,5,5,358,363],[197,1,1,363,364],[200,1,1,364,365],[201,1,1,365,366],[206,3,3,366,369],[207,3,3,369,372],[208,2,2,372,374],[210,3,3,374,377]]],[6,91,83,377,460,[[211,5,5,377,382],[212,6,5,382,387],[213,9,7,387,394],[214,6,6,394,400],[215,1,1,400,401],[216,7,6,401,407],[217,13,11,407,418],[218,6,6,418,424],[219,6,6,424,430],[220,3,2,430,432],[221,4,4,432,436],[222,2,2,436,438],[223,3,3,438,441],[224,1,1,441,442],[225,7,6,442,448],[226,4,4,448,452],[227,3,3,452,455],[228,2,2,455,457],[229,1,1,457,458],[230,2,2,458,460]]],[7,3,3,460,463,[[232,1,1,460,461],[235,2,2,461,463]]],[8,118,99,463,562,[[237,1,1,463,464],[239,2,2,464,466],[240,5,5,466,471],[241,3,3,471,474],[242,4,4,474,478],[244,2,2,478,480],[245,4,3,480,483],[246,1,1,483,484],[247,9,7,484,491],[248,1,1,491,492],[249,11,10,492,502],[250,1,1,502,503],[251,4,4,503,507],[252,11,8,507,515],[253,6,4,515,519],[254,3,2,519,521],[255,1,1,521,522],[256,6,4,522,526],[257,3,2,526,528],[258,9,9,528,537],[259,11,9,537,546],[260,5,5,546,551],[261,6,5,551,556],[262,2,1,556,557],[263,5,3,557,560],[265,2,2,560,562]]],[9,62,52,562,614,[[267,1,1,562,563],[268,1,1,563,564],[269,6,4,564,568],[270,3,3,568,571],[271,2,1,571,572],[274,3,3,572,575],[276,2,2,575,577],[277,1,1,577,578],[278,2,2,578,580],[279,4,4,580,584],[280,2,2,584,586],[281,4,4,586,590],[282,2,2,590,592],[283,1,1,592,593],[284,8,6,593,599],[285,1,1,599,600],[286,3,3,600,603],[287,4,3,603,606],[288,2,2,606,608],[289,5,3,608,611],[290,5,3,611,614]]],[10,49,45,614,659,[[292,2,2,614,616],[297,4,4,616,620],[298,5,5,620,625],[300,4,3,625,628],[301,6,6,628,634],[302,1,1,634,635],[303,5,3,635,638],[304,3,3,638,641],[305,2,2,641,643],[306,4,3,643,646],[307,2,2,646,648],[308,2,2,648,650],[310,4,4,650,654],[312,5,5,654,659]]],[11,73,64,659,723,[[315,5,5,659,664],[316,1,1,664,665],[317,5,5,665,670],[318,1,1,670,671],[319,2,2,671,673],[320,4,4,673,677],[321,6,6,677,683],[322,4,3,683,686],[323,4,4,686,690],[324,2,2,690,692],[325,9,4,692,696],[326,3,3,696,699],[327,2,1,699,700],[329,6,5,700,705],[330,6,5,705,710],[331,6,6,710,716],[333,2,2,716,718],[334,4,4,718,722],[336,1,1,722,723]]],[12,45,37,723,760,[[341,2,2,723,725],[342,2,2,725,727],[343,2,2,727,729],[344,1,1,729,730],[348,3,2,730,732],[350,2,2,732,734],[351,3,2,734,736],[353,1,1,736,737],[355,3,3,737,740],[356,1,1,740,741],[357,2,1,741,742],[358,5,4,742,746],[359,1,1,746,747],[360,1,1,747,748],[361,1,1,748,749],[362,5,3,749,752],[363,1,1,752,753],[365,1,1,753,754],[366,8,6,754,760]]],[13,81,70,760,830,[[367,1,1,760,761],[372,3,3,761,764],[373,1,1,764,765],[374,1,1,765,766],[375,2,1,766,767],[376,1,1,767,768],[378,3,3,768,771],[379,3,3,771,774],[381,1,1,774,775],[382,2,2,775,777],[383,4,4,777,781],[384,4,4,781,785],[386,1,1,785,786],[387,4,3,786,789],[389,5,4,789,793],[390,3,3,793,796],[391,2,2,796,798],[392,4,3,798,801],[394,3,2,801,803],[395,4,4,803,807],[396,4,4,807,811],[397,2,2,811,813],[398,11,6,813,819],[399,1,1,819,820],[400,7,6,820,826],[401,2,2,826,828],[402,2,2,828,830]]],[14,17,17,830,847,[[403,2,2,830,832],[405,1,1,832,833],[406,1,1,833,834],[408,1,1,834,835],[409,3,3,835,838],[410,5,5,838,843],[411,3,3,843,846],[412,1,1,846,847]]],[15,41,32,847,879,[[413,1,1,847,848],[414,3,2,848,850],[415,15,10,850,860],[416,1,1,860,861],[417,1,1,861,862],[418,3,2,862,864],[419,1,1,864,865],[420,2,2,865,867],[421,8,6,867,873],[422,2,2,873,875],[423,2,2,875,877],[425,2,2,877,879]]],[16,22,21,879,900,[[426,3,3,879,882],[427,6,5,882,887],[428,4,4,887,891],[430,1,1,891,892],[431,2,2,892,894],[433,2,2,894,896],[434,4,4,896,900]]],[17,53,51,900,951,[[436,5,4,900,904],[437,2,2,904,906],[439,1,1,906,907],[440,4,4,907,911],[441,3,2,911,913],[443,2,2,913,915],[444,2,2,915,917],[445,2,2,917,919],[446,1,1,919,920],[447,3,3,920,923],[449,1,1,923,924],[450,2,2,924,926],[451,1,1,926,927],[452,2,2,927,929],[454,1,1,929,930],[455,2,2,930,932],[456,2,2,932,934],[458,1,1,934,935],[461,1,1,935,936],[462,2,2,936,938],[463,1,1,938,939],[464,1,1,939,940],[465,3,3,940,943],[466,3,3,943,946],[469,2,2,946,948],[470,1,1,948,949],[472,1,1,949,950],[475,1,1,950,951]]],[18,93,88,951,1039,[[485,1,1,951,952],[487,2,2,952,954],[494,1,1,954,955],[495,3,3,955,958],[496,1,1,958,959],[498,1,1,959,960],[499,2,2,960,962],[503,1,1,962,963],[505,3,3,963,966],[508,4,3,966,969],[509,1,1,969,970],[513,1,1,970,971],[514,2,2,971,973],[515,1,1,973,974],[516,1,1,974,975],[521,1,1,975,976],[526,1,1,976,977],[532,1,1,977,978],[535,1,1,978,979],[540,1,1,979,980],[545,1,1,980,981],[548,1,1,981,982],[550,1,1,982,983],[551,1,1,983,984],[552,1,1,984,985],[553,1,1,985,986],[554,2,2,986,988],[555,2,2,988,990],[557,1,1,990,991],[558,1,1,991,992],[559,1,1,992,993],[565,1,1,993,994],[566,4,4,994,998],[567,2,1,998,999],[569,1,1,999,1000],[572,3,3,1000,1003],[574,1,1,1003,1004],[579,1,1,1004,1005],[581,2,2,1005,1007],[583,5,4,1007,1011],[584,1,1,1011,1012],[586,1,1,1012,1013],[588,1,1,1013,1014],[592,2,2,1014,1016],[596,2,2,1016,1018],[598,1,1,1018,1019],[600,2,1,1019,1020],[602,1,1,1020,1021],[604,1,1,1021,1022],[611,1,1,1022,1023],[612,1,1,1023,1024],[613,1,1,1024,1025],[615,2,2,1025,1027],[616,1,1,1027,1028],[617,2,2,1028,1030],[618,2,2,1030,1032],[620,2,2,1032,1034],[621,4,3,1034,1037],[622,1,1,1037,1038],[626,1,1,1038,1039]]],[19,31,28,1039,1067,[[628,1,1,1039,1040],[630,1,1,1040,1041],[633,4,3,1041,1044],[634,1,1,1044,1045],[635,1,1,1045,1046],[637,1,1,1046,1047],[638,2,1,1047,1048],[639,2,2,1048,1050],[640,1,1,1050,1051],[641,1,1,1051,1052],[643,2,1,1052,1053],[644,1,1,1053,1054],[645,1,1,1054,1055],[646,1,1,1055,1056],[648,2,2,1056,1058],[651,1,1,1058,1059],[653,3,3,1059,1062],[657,2,2,1062,1064],[658,3,3,1064,1067]]],[20,13,13,1067,1080,[[660,2,2,1067,1069],[662,2,2,1069,1071],[663,3,3,1071,1074],[665,2,2,1074,1076],[667,2,2,1076,1078],[668,1,1,1078,1079],[669,1,1,1079,1080]]],[21,4,4,1080,1084,[[675,3,3,1080,1083],[677,1,1,1083,1084]]],[22,91,88,1084,1172,[[679,3,3,1084,1087],[680,1,1,1087,1088],[681,2,2,1088,1090],[683,3,2,1090,1092],[684,1,1,1092,1093],[686,1,1,1093,1094],[687,3,3,1094,1097],[688,6,6,1097,1103],[689,4,4,1103,1107],[691,2,2,1107,1109],[692,2,2,1109,1111],[695,1,1,1111,1112],[697,3,3,1112,1115],[698,1,1,1115,1116],[700,2,2,1116,1118],[701,1,1,1118,1119],[703,3,2,1119,1121],[704,1,1,1121,1122],[706,1,1,1122,1123],[707,1,1,1123,1124],[709,2,2,1124,1126],[712,1,1,1126,1127],[713,1,1,1127,1128],[714,5,4,1128,1132],[715,6,6,1132,1138],[718,1,1,1138,1139],[719,1,1,1139,1140],[720,1,1,1140,1141],[721,1,1,1141,1142],[722,1,1,1142,1143],[723,3,3,1143,1146],[725,2,2,1146,1148],[726,1,1,1148,1149],[727,2,2,1149,1151],[728,2,2,1151,1153],[729,5,5,1153,1158],[731,1,1,1158,1159],[734,2,2,1159,1161],[735,2,2,1161,1163],[737,1,1,1163,1164],[738,1,1,1164,1165],[740,1,1,1165,1166],[742,2,2,1166,1168],[743,2,2,1168,1170],[744,2,2,1170,1172]]],[23,117,96,1172,1268,[[745,2,2,1172,1174],[746,1,1,1174,1175],[749,1,1,1175,1176],[750,4,4,1176,1180],[754,2,2,1180,1182],[755,1,1,1182,1183],[759,3,3,1183,1186],[760,1,1,1186,1187],[762,4,3,1187,1190],[763,1,1,1190,1191],[764,3,3,1191,1194],[765,7,5,1194,1199],[766,6,3,1199,1202],[767,1,1,1202,1203],[769,6,6,1203,1209],[770,3,2,1209,1211],[771,3,3,1211,1214],[773,2,2,1214,1216],[774,1,1,1216,1217],[775,2,2,1217,1219],[776,11,9,1219,1228],[777,1,1,1228,1229],[778,9,5,1229,1234],[780,2,1,1234,1235],[781,2,2,1235,1237],[782,13,10,1237,1247],[783,2,2,1247,1249],[784,1,1,1249,1250],[785,2,2,1250,1252],[786,1,1,1252,1253],[787,2,2,1253,1255],[788,5,3,1255,1258],[790,5,3,1258,1261],[791,1,1,1261,1262],[792,1,1,1262,1263],[794,3,3,1263,1266],[795,2,2,1266,1268]]],[24,15,14,1268,1282,[[797,5,4,1268,1272],[798,2,2,1272,1274],[799,2,2,1274,1276],[800,3,3,1276,1279],[801,3,3,1279,1282]]],[25,108,100,1282,1382,[[802,2,2,1282,1284],[803,1,1,1284,1285],[804,4,4,1285,1289],[807,1,1,1289,1290],[808,3,3,1290,1293],[809,3,3,1293,1296],[810,2,2,1296,1298],[811,4,4,1298,1302],[812,1,1,1302,1303],[813,1,1,1303,1304],[814,6,5,1304,1309],[815,2,2,1309,1311],[817,4,4,1311,1315],[818,1,1,1315,1316],[819,2,2,1316,1318],[821,10,9,1318,1327],[822,4,4,1327,1331],[823,1,1,1331,1332],[824,8,6,1332,1338],[826,5,5,1338,1343],[828,2,2,1343,1345],[829,2,2,1345,1347],[831,6,5,1347,1352],[832,1,1,1352,1353],[834,3,3,1353,1356],[835,2,2,1356,1358],[836,2,2,1358,1360],[837,1,1,1360,1361],[838,5,4,1361,1365],[839,2,2,1365,1367],[840,5,4,1367,1371],[841,3,3,1371,1374],[844,1,1,1374,1375],[845,1,1,1375,1376],[847,3,3,1376,1379],[848,2,2,1379,1381],[849,2,1,1381,1382]]],[26,16,14,1382,1396,[[850,2,2,1382,1384],[857,4,3,1384,1387],[858,2,2,1387,1389],[859,3,2,1389,1391],[860,4,4,1391,1395],[861,1,1,1395,1396]]],[27,6,6,1396,1402,[[863,1,1,1396,1397],[868,1,1,1397,1398],[873,2,2,1398,1400],[874,1,1,1400,1401],[875,1,1,1401,1402]]],[28,1,1,1402,1403,[[878,1,1,1402,1403]]],[29,4,4,1403,1407,[[879,1,1,1403,1404],[883,1,1,1404,1405],[885,1,1,1405,1406],[887,1,1,1406,1407]]],[32,5,5,1407,1412,[[894,1,1,1407,1408],[897,3,3,1408,1411],[899,1,1,1411,1412]]],[34,2,2,1412,1414,[[905,2,2,1412,1414]]],[35,4,4,1414,1418,[[906,1,1,1414,1415],[907,2,2,1415,1417],[908,1,1,1417,1418]]],[36,5,5,1418,1423,[[909,2,2,1418,1420],[910,3,3,1420,1423]]],[37,19,14,1423,1437,[[912,2,2,1423,1425],[914,4,3,1425,1428],[917,2,2,1428,1430],[918,3,3,1430,1433],[921,3,1,1433,1434],[923,2,2,1434,1436],[924,3,1,1436,1437]]],[38,5,5,1437,1442,[[925,4,4,1437,1441],[926,1,1,1441,1442]]]],[77,90,134,192,207,210,356,358,387,390,393,467,473,531,543,553,557,559,593,600,601,609,613,621,638,684,743,744,749,750,865,902,912,939,941,944,970,979,1001,1015,1104,1105,1110,1137,1139,1147,1148,1149,1150,1152,1153,1155,1157,1161,1162,1171,1172,1183,1185,1230,1237,1239,1289,1299,1302,1305,1311,1312,1316,1324,1340,1341,1390,1444,1449,1465,1468,1473,1481,1497,1559,1573,1587,1598,1599,1603,1605,1607,1608,1614,1618,1621,1622,1653,1656,1663,1689,1690,1700,1702,1704,1715,1716,1727,1745,1757,1764,1777,1789,1798,1799,1802,1827,1870,1876,1881,1883,1897,1905,1910,1915,1916,1919,1920,1929,1937,1940,1950,1988,1992,1994,1995,1999,2008,2009,2039,2090,2093,2097,2101,2117,2121,2124,2145,2175,2188,2252,2254,2334,2345,2346,2351,2355,2356,2361,2365,2369,2371,2401,2403,2442,2449,2453,2457,2467,2500,2525,2556,2560,2588,2590,2654,2738,2749,2780,2786,2791,2799,2810,2819,2824,2828,2837,2841,2851,2909,2931,2935,2939,2940,2941,2950,2953,2975,2988,3052,3125,3128,3132,3133,3136,3139,3141,3142,3143,3179,3222,3233,3355,3364,3394,3460,3483,3495,3497,3504,3516,3518,3549,3570,3578,3675,3695,3771,3776,3780,3788,3792,3810,3817,3844,3858,3949,3951,3988,4001,4047,4104,4138,4176,4183,4234,4322,4331,4342,4366,4374,4382,4398,4404,4406,4470,4478,4572,4577,4670,4713,4761,4763,4819,4862,4863,4866,4870,4892,4917,4919,4945,4953,4962,4968,4975,4977,4978,4983,4999,5032,5038,5068,5094,5107,5119,5130,5135,5154,5172,5174,5183,5189,5210,5226,5246,5247,5251,5257,5258,5281,5289,5315,5319,5321,5322,5326,5327,5329,5330,5352,5357,5359,5371,5411,5418,5427,5440,5453,5454,5457,5512,5520,5525,5526,5528,5544,5558,5570,5574,5600,5619,5623,5631,5643,5717,5757,5785,5794,5797,5798,5799,5813,5817,5821,5848,5851,5888,5893,5934,5947,5951,5983,6003,6009,6020,6021,6022,6028,6048,6062,6063,6070,6072,6083,6094,6096,6115,6189,6248,6374,6377,6381,6383,6389,6425,6435,6457,6484,6486,6487,6511,6513,6515,6516,6544,6559,6560,6561,6563,6568,6572,6576,6578,6583,6589,6596,6598,6601,6606,6608,6613,6620,6623,6649,6655,6656,6663,6675,6690,6691,6696,6700,6701,6702,6703,6705,6708,6709,6710,6713,6714,6722,6725,6726,6734,6741,6753,6770,6771,6778,6783,6787,6802,6818,6823,6850,6855,6859,6861,6871,6872,6885,6889,6907,6915,6941,6942,6943,6944,6946,6947,6967,6972,6973,6975,6983,6985,6992,7003,7012,7051,7070,7082,7140,7195,7199,7253,7305,7315,7323,7325,7326,7328,7330,7334,7336,7340,7355,7360,7365,7366,7399,7407,7422,7425,7436,7452,7463,7464,7465,7469,7470,7471,7475,7507,7518,7520,7521,7527,7534,7535,7542,7545,7551,7556,7572,7597,7611,7615,7618,7640,7655,7658,7664,7665,7667,7668,7675,7686,7693,7697,7701,7709,7715,7746,7775,7776,7780,7785,7793,7804,7814,7816,7817,7821,7822,7824,7826,7827,7830,7843,7845,7849,7850,7851,7852,7854,7857,7859,7869,7887,7894,7896,7900,7913,7914,7916,7923,7928,7931,7957,7959,7961,7993,8001,8036,8056,8089,8093,8099,8115,8121,8131,8132,8151,8210,8212,8219,8242,8250,8273,8293,8311,8322,8323,8327,8336,8375,8386,8391,8394,8407,8425,8434,8447,8451,8480,8482,8490,8496,8506,8509,8554,8563,8564,8575,8589,8600,8602,8623,8637,8659,8663,8674,8706,8708,8709,8795,8816,8966,8967,8969,8970,9000,9009,9027,9038,9041,9092,9098,9108,9120,9134,9135,9139,9142,9143,9166,9188,9190,9217,9221,9236,9245,9267,9278,9290,9295,9317,9328,9333,9350,9387,9414,9421,9436,9450,9483,9486,9492,9495,9514,9586,9587,9589,9591,9594,9632,9652,9658,9665,9667,9671,9681,9709,9724,9735,9736,9747,9749,9757,9763,9779,9780,9791,9792,9803,9808,9817,9836,9837,9840,9845,9861,9865,9874,9876,9887,9896,9901,9921,9923,9944,9990,9996,10003,10006,10022,10053,10054,10057,10058,10059,10071,10075,10079,10080,10084,10087,10129,10133,10150,10152,10154,10162,10204,10395,10425,10438,10448,10469,10485,10564,10676,10696,10769,10770,10784,10785,10827,10891,10893,10907,10918,10934,10947,10949,10950,10951,10982,11011,11034,11048,11049,11052,11105,11162,11169,11172,11176,11178,11180,11188,11211,11286,11297,11314,11330,11364,11382,11410,11442,11444,11447,11461,11462,11469,11497,11516,11517,11528,11538,11539,11541,11547,11553,11556,11575,11593,11632,11634,11640,11663,11666,11671,11674,11688,11690,11701,11719,11724,11743,11745,11751,11769,11773,11814,11816,11818,11822,11833,11835,11839,11843,11867,11869,11888,11889,11890,11892,11894,11897,11916,11942,11943,11947,11949,11950,11958,11972,11977,12008,12010,12022,12024,12107,12114,12173,12179,12182,12201,12219,12223,12227,12232,12234,12239,12244,12248,12271,12306,12315,12325,12329,12331,12332,12334,12335,12336,12337,12339,12344,12346,12376,12387,12406,12410,12424,12499,12507,12525,12526,12535,12538,12539,12541,12578,12580,12589,12612,12684,12692,12709,12714,12717,12727,12732,12738,12742,12745,12753,12756,12757,12760,12781,12795,12802,12824,12827,12836,12844,12849,12850,12879,12880,12881,12883,12896,12897,12933,12963,12966,12969,12971,12987,13001,13033,13049,13075,13084,13093,13094,13122,13134,13137,13138,13196,13226,13228,13249,13263,13269,13318,13336,13348,13360,13371,13421,13480,13492,13503,13513,13552,13559,13578,13581,13609,13613,13615,13702,13703,13727,13776,13868,14018,14053,14055,14117,14138,14142,14152,14169,14199,14220,14224,14283,14301,14303,14304,14336,14339,14346,14359,14449,14474,14483,14492,14522,14573,14663,14752,14781,14849,14931,14980,15043,15059,15079,15086,15095,15113,15155,15174,15215,15231,15237,15313,15339,15347,15351,15374,15395,15415,15458,15459,15461,15488,15546,15596,15599,15661,15677,15692,15693,15701,15782,15800,15834,15837,15971,16071,16086,16100,16113,16125,16174,16190,16208,16238,16239,16249,16267,16268,16282,16285,16298,16299,16306,16312,16316,16336,16391,16424,16482,16545,16550,16557,16595,16605,16660,16709,16733,16743,16758,16773,16845,16889,16922,16949,16985,17009,17112,17147,17150,17156,17279,17283,17303,17304,17315,17344,17357,17382,17386,17403,17411,17412,17447,17455,17476,17485,17511,17519,17602,17603,17612,17628,17666,17669,17679,17693,17713,17718,17751,17764,17775,17818,17841,17846,17850,17854,17855,17860,17863,17864,17882,17892,17895,17898,17899,17908,17913,17954,17955,17991,18008,18020,18029,18031,18070,18073,18088,18128,18129,18141,18166,18216,18253,18257,18320,18323,18345,18348,18349,18350,18362,18366,18371,18372,18376,18379,18422,18471,18486,18518,18538,18570,18572,18573,18605,18613,18627,18638,18658,18664,18673,18689,18690,18691,18695,18696,18721,18755,18758,18773,18775,18801,18842,18857,18892,18893,18899,18919,18924,18936,18955,18962,19002,19089,19092,19098,19101,19113,19204,19210,19247,19321,19332,19336,19357,19388,19390,19405,19414,19426,19427,19435,19444,19445,19447,19450,19452,19457,19478,19479,19498,19540,19541,19548,19549,19551,19562,19586,19596,19599,19602,19604,19638,19656,19673,19702,19723,19734,19735,19752,19755,19756,19759,19761,19767,19774,19788,19802,19803,19804,19821,19822,19856,19876,19891,19898,19899,19900,19905,19906,19907,19911,19913,19914,19918,19934,19940,19945,19962,19966,19986,20000,20006,20018,20035,20040,20051,20069,20071,20076,20117,20167,20181,20209,20219,20237,20317,20320,20324,20327,20339,20340,20357,20418,20422,20426,20430,20448,20450,20454,20467,20472,20501,20516,20520,20522,20524,20577,20594,20598,20604,20605,20607,20615,20623,20624,20640,20641,20645,20654,20664,20687,20717,20726,20729,20730,20731,20740,20744,20773,20789,20801,20811,20843,20857,20866,20900,20901,20910,20917,20918,20923,20928,20929,20937,20951,20955,20963,20975,20990,21016,21035,21038,21044,21049,21052,21089,21090,21096,21097,21099,21136,21142,21166,21167,21214,21216,21226,21228,21229,21241,21286,21288,21302,21323,21340,21347,21349,21366,21398,21414,21416,21417,21437,21442,21451,21457,21469,21471,21478,21480,21482,21598,21611,21660,21662,21666,21682,21693,21703,21739,21757,21965,21968,21986,21998,22003,22019,22025,22047,22052,22077,22078,22088,22115,22183,22259,22262,22280,22285,22351,22372,22442,22471,22497,22596,22642,22645,22646,22680,22772,22778,22791,22818,22820,22836,22841,22843,22856,22869,22872,22900,22908,22931,22932,22934,22969,22974,22980,22985,22989,23034,23065,23066,23081,23090,23098,23099,23102,23116]]],["+",[298,277,[[0,22,19,0,19,[[3,1,1,0,1],[8,3,1,1,2],[20,1,1,2,3],[30,1,1,3,4],[31,2,1,4,5],[32,2,2,5,7],[33,1,1,7,8],[36,2,2,8,10],[37,1,1,10,11],[38,2,2,11,13],[42,2,2,13,15],[43,1,1,15,16],[47,2,2,16,18],[48,1,1,18,19]]],[1,17,16,19,35,[[51,1,1,19,20],[52,1,1,20,21],[55,1,1,21,22],[63,1,1,22,23],[66,1,1,23,24],[67,3,2,24,26],[77,1,1,26,27],[78,5,5,27,32],[81,3,3,32,35]]],[2,19,19,35,54,[[94,2,2,35,37],[95,1,1,37,38],[97,1,1,38,39],[101,1,1,39,40],[103,4,4,40,44],[105,1,1,44,45],[110,2,2,45,47],[111,1,1,47,48],[114,5,5,48,53],[116,1,1,53,54]]],[3,7,7,54,61,[[119,1,1,54,55],[121,1,1,55,56],[130,1,1,56,57],[131,1,1,57,58],[137,1,1,58,59],[140,1,1,59,60],[151,1,1,60,61]]],[4,9,9,61,70,[[154,1,1,61,62],[155,2,2,62,64],[159,1,1,64,65],[167,1,1,65,66],[168,1,1,66,67],[177,1,1,67,68],[178,1,1,68,69],[184,1,1,69,70]]],[5,7,7,70,77,[[188,1,1,70,71],[192,1,1,71,72],[194,1,1,72,73],[195,1,1,73,74],[201,1,1,74,75],[208,1,1,75,76],[210,1,1,76,77]]],[6,23,22,77,99,[[211,2,2,77,79],[212,2,2,79,81],[213,1,1,81,82],[216,2,1,82,83],[217,1,1,83,84],[218,3,3,84,87],[219,2,2,87,89],[220,1,1,89,90],[222,1,1,90,91],[223,2,2,91,93],[225,1,1,93,94],[226,1,1,94,95],[227,3,3,95,98],[230,1,1,98,99]]],[7,2,2,99,101,[[235,2,2,99,101]]],[8,23,20,101,121,[[239,1,1,101,102],[242,3,3,102,105],[244,1,1,105,106],[245,4,3,106,109],[247,4,4,109,113],[249,1,1,113,114],[252,3,1,114,115],[255,1,1,115,116],[259,1,1,116,117],[260,2,2,117,119],[262,1,1,119,120],[263,1,1,120,121]]],[9,12,11,121,132,[[269,2,1,121,122],[270,1,1,122,123],[274,1,1,123,124],[278,1,1,124,125],[279,3,3,125,128],[281,2,2,128,130],[284,1,1,130,131],[289,1,1,131,132]]],[10,8,8,132,140,[[300,1,1,132,133],[301,4,4,133,137],[303,1,1,137,138],[310,1,1,138,139],[312,1,1,139,140]]],[11,13,11,140,151,[[317,2,2,140,142],[321,1,1,142,143],[325,2,1,143,144],[329,1,1,144,145],[330,5,4,145,149],[331,2,2,149,151]]],[12,8,8,151,159,[[341,1,1,151,152],[348,1,1,152,153],[355,1,1,153,154],[365,1,1,154,155],[366,4,4,155,159]]],[13,28,23,159,182,[[379,1,1,159,160],[382,1,1,160,161],[383,3,3,161,164],[387,1,1,164,165],[389,1,1,165,166],[391,1,1,166,167],[395,2,2,167,169],[396,3,3,169,172],[397,2,2,172,174],[398,10,5,174,179],[400,2,2,179,181],[401,1,1,181,182]]],[15,5,5,182,187,[[417,1,1,182,183],[419,1,1,183,184],[421,2,2,184,186],[425,1,1,186,187]]],[16,1,1,187,188,[[426,1,1,187,188]]],[17,9,8,188,196,[[436,1,1,188,189],[440,2,2,189,191],[441,2,1,191,192],[443,1,1,192,193],[445,1,1,193,194],[462,1,1,194,195],[470,1,1,195,196]]],[18,19,18,196,214,[[496,1,1,196,197],[499,1,1,197,198],[508,1,1,198,199],[526,1,1,199,200],[540,1,1,200,201],[548,1,1,201,202],[559,1,1,202,203],[565,1,1,203,204],[566,1,1,204,205],[574,1,1,205,206],[581,1,1,206,207],[583,2,1,207,208],[584,1,1,208,209],[617,2,2,209,211],[618,1,1,211,212],[621,2,2,212,214]]],[19,2,1,214,215,[[633,2,1,214,215]]],[20,4,4,215,219,[[660,2,2,215,217],[662,2,2,217,219]]],[22,14,13,219,232,[[679,1,1,219,220],[700,1,1,220,221],[714,4,3,221,224],[715,2,2,224,226],[718,1,1,226,227],[721,1,1,227,228],[725,1,1,228,229],[728,1,1,229,230],[729,2,2,230,232]]],[23,16,16,232,248,[[759,1,1,232,233],[764,1,1,233,234],[765,1,1,234,235],[766,1,1,235,236],[769,3,3,236,239],[775,1,1,239,240],[776,1,1,240,241],[778,2,2,241,243],[782,3,3,243,246],[786,1,1,246,247],[790,1,1,247,248]]],[24,1,1,248,249,[[801,1,1,248,249]]],[25,17,16,249,265,[[804,2,2,249,251],[814,3,3,251,254],[828,1,1,254,255],[831,1,1,255,256],[834,2,2,256,258],[835,2,2,258,260],[840,3,2,260,262],[844,1,1,262,263],[847,2,2,263,265]]],[26,3,3,265,268,[[857,2,2,265,267],[860,1,1,267,268]]],[27,2,2,268,270,[[863,1,1,268,269],[874,1,1,269,270]]],[32,1,1,270,271,[[897,1,1,270,271]]],[34,1,1,271,272,[[905,1,1,271,272]]],[37,1,1,272,273,[[921,1,1,272,273]]],[38,4,4,273,277,[[925,3,3,273,276],[926,1,1,276,277]]]],[90,210,543,912,939,970,979,1001,1104,1105,1139,1150,1171,1299,1324,1340,1465,1473,1497,1573,1587,1663,1919,1999,2008,2009,2334,2345,2361,2365,2369,2371,2442,2457,2467,2837,2841,2851,2950,3052,3132,3133,3141,3142,3233,3355,3364,3394,3483,3495,3504,3516,3518,3578,3695,3817,4138,4183,4366,4470,4870,4962,4978,4983,5119,5321,5359,5558,5570,5797,5893,5951,6003,6063,6248,6457,6486,6515,6516,6561,6563,6583,6663,6709,6722,6741,6753,6771,6778,6823,6871,6889,6907,6946,6973,6983,6985,6992,7070,7195,7199,7305,7355,7360,7366,7407,7422,7425,7436,7463,7464,7470,7471,7556,7655,7746,7854,7896,7900,7931,7959,8099,8131,8210,8293,8322,8323,8327,8391,8407,8509,8674,9092,9120,9139,9142,9143,9217,9450,9483,9667,9671,9763,9896,10022,10053,10057,10058,10059,10075,10080,10425,10696,10891,11162,11169,11178,11180,11188,11462,11516,11538,11539,11541,11640,11674,11719,11818,11822,11833,11835,11843,11867,11869,11888,11889,11890,11892,11897,11942,11949,11977,12387,12424,12526,12538,12684,12714,12883,12966,12971,13001,13049,13093,13503,13727,14169,14224,14346,14663,14849,14980,15237,15313,15374,15488,15596,15661,15701,16267,16268,16285,16312,16316,16545,17344,17357,17382,17386,17666,18070,18348,18349,18350,18366,18372,18422,18518,18613,18673,18690,18695,19336,19435,19452,19457,19549,19551,19562,19702,19735,19802,19804,19907,19913,19918,19986,20051,20450,20520,20522,20726,20729,20731,21142,21226,21286,21288,21323,21340,21451,21457,21598,21660,21666,21965,21968,22077,22115,22280,22645,22772,23034,23098,23099,23102,23116]]],["By",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10084,18376]]],["Next",[3,2,[[15,3,2,0,2,[[415,3,2,0,2]]]],[12335,12344]]],["about",[1,1,[[12,1,1,0,1,[[355,1,1,0,1]]]],[10907]]],["at",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16605]]],["axletrees",[2,2,[[10,2,2,0,2,[[297,2,2,0,2]]]],[8966,8967]]],["because",[2,2,[[22,1,1,0,1,[[742,1,1,0,1]]],[23,1,1,1,2,[[785,1,1,1,2]]]],[18892,19966]]],["beside",[1,1,[[8,1,1,0,1,[[254,1,1,0,1]]]],[7709]]],["border",[1,1,[[9,1,1,0,1,[[274,1,1,0,1]]]],[8212]]],["borders",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10564]]],["by",[39,38,[[1,1,1,0,1,[[58,1,1,0,1]]],[8,3,3,1,4,[[251,1,1,1,2],[263,2,2,2,4]]],[9,1,1,4,5,[[281,1,1,4,5]]],[10,5,5,5,10,[[302,1,1,5,6],[305,1,1,6,7],[306,2,2,7,9],[307,1,1,9,10]]],[11,7,6,10,16,[[321,1,1,10,11],[322,1,1,11,12],[329,3,2,12,14],[333,1,1,14,15],[336,1,1,15,16]]],[12,1,1,16,17,[[348,1,1,16,17]]],[13,4,4,17,21,[[390,1,1,17,18],[395,1,1,18,19],[400,1,1,19,20],[402,1,1,20,21]]],[14,1,1,21,22,[[411,1,1,21,22]]],[15,2,2,22,24,[[420,1,1,22,23],[422,1,1,23,24]]],[16,3,3,24,27,[[426,1,1,24,25],[428,1,1,25,26],[433,1,1,26,27]]],[22,1,1,27,28,[[698,1,1,27,28]]],[23,2,2,28,30,[[781,1,1,28,29],[794,1,1,29,30]]],[25,1,1,30,31,[[839,1,1,30,31]]],[26,1,1,31,32,[[858,1,1,31,32]]],[36,3,3,32,35,[[909,2,2,32,34],[910,1,1,34,35]]],[37,2,2,35,37,[[917,2,2,35,37]]],[38,1,1,37,38,[[925,1,1,37,38]]]],[1777,7615,7957,7959,8425,9166,9278,9295,9317,9333,9792,9803,9996,10006,10129,10204,10676,11690,11816,11947,12008,12248,12507,12578,12717,12760,12827,18031,19876,20167,21442,21998,22841,22843,22856,22969,22974,23090]]],["charge",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4713]]],["coast",[4,3,[[3,2,2,0,2,[[129,1,1,0,1],[150,1,1,1,2]]],[25,2,1,2,3,[[849,2,1,2,3]]]],[4104,4819,21703]]],["coasts",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6855]]],["custody",[4,3,[[16,4,3,0,3,[[427,4,3,0,3]]]],[12727,12732,12738]]],["debt",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12580]]],["dominion",[2,2,[[12,1,1,0,1,[[355,1,1,0,1]]],[13,1,1,1,2,[[387,1,1,1,2]]]],[10893,11632]]],["for",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13033]]],["force",[2,2,[[23,1,1,0,1,[[762,1,1,0,1]]],[25,1,1,1,2,[[836,1,1,1,2]]]],[19405,21349]]],["hand",[905,820,[[0,60,53,0,53,[[2,1,1,0,1],[7,1,1,1,2],[8,1,1,2,3],[13,2,2,3,5],[15,3,2,5,7],[18,4,2,7,9],[20,1,1,9,10],[21,3,3,10,13],[23,4,4,13,17],[24,1,1,17,18],[26,1,1,18,19],[29,1,1,19,20],[30,1,1,20,21],[31,2,2,21,23],[34,1,1,23,24],[36,2,2,24,26],[37,6,5,26,31],[38,7,7,31,38],[39,2,2,38,40],[40,4,3,40,43],[41,1,1,43,44],[42,5,4,44,48],[43,1,1,48,49],[45,1,1,49,50],[46,1,1,50,51],[47,2,1,51,52],[48,1,1,52,53]]],[1,70,61,53,114,[[52,2,2,53,55],[53,12,8,55,63],[54,1,1,63,64],[55,2,1,64,65],[56,5,5,65,70],[57,3,3,70,73],[58,3,3,73,76],[59,3,3,76,79],[61,1,1,79,80],[62,6,4,80,84],[63,5,5,84,89],[64,2,2,89,91],[65,1,1,91,92],[66,4,3,92,95],[67,1,1,95,96],[68,1,1,96,97],[70,5,4,97,101],[71,3,3,101,104],[72,2,2,104,106],[73,1,1,106,107],[78,1,1,107,108],[81,2,2,108,110],[83,2,2,110,112],[84,1,1,112,113],[87,1,1,113,114]]],[2,21,21,114,135,[[90,1,1,114,115],[92,3,3,115,118],[93,4,4,118,122],[97,2,2,122,124],[98,1,1,124,125],[99,1,1,125,126],[103,5,5,126,131],[105,1,1,131,132],[114,1,1,132,133],[115,2,2,133,135]]],[3,30,30,135,165,[[120,5,5,135,140],[121,1,1,140,141],[122,1,1,141,142],[123,1,1,142,143],[125,1,1,143,144],[126,1,1,144,145],[127,1,1,145,146],[131,1,1,146,147],[132,1,1,147,148],[136,2,2,148,150],[137,2,2,150,152],[138,4,4,152,156],[141,1,1,156,157],[143,2,2,157,159],[147,1,1,159,160],[149,2,2,160,162],[151,2,2,162,164],[152,1,1,164,165]]],[4,53,51,165,216,[[153,1,1,165,166],[154,3,3,166,169],[155,2,2,169,171],[156,1,1,171,172],[157,1,1,172,173],[158,2,2,173,175],[159,3,3,175,178],[160,1,1,178,179],[161,1,1,179,180],[162,1,1,180,181],[163,2,2,181,183],[164,4,4,183,187],[165,3,2,187,189],[166,2,2,189,191],[167,5,5,191,196],[168,1,1,196,197],[171,4,3,197,200],[175,2,2,200,202],[176,2,2,202,204],[177,1,1,204,205],[178,1,1,205,206],[180,4,4,206,210],[182,1,1,210,211],[184,3,3,211,214],[185,1,1,214,215],[186,1,1,215,216]]],[5,27,25,216,241,[[188,1,1,216,217],[190,1,1,217,218],[191,1,1,218,219],[193,1,1,219,220],[194,6,4,220,224],[195,1,1,224,225],[196,5,5,225,230],[197,1,1,230,231],[200,1,1,231,232],[206,3,3,232,235],[207,3,3,235,238],[208,1,1,238,239],[210,2,2,239,241]]],[6,50,48,241,289,[[211,3,3,241,244],[212,2,2,244,246],[213,7,6,246,252],[214,6,6,252,258],[215,1,1,258,259],[216,5,5,259,264],[217,7,7,264,271],[218,3,3,271,274],[219,2,2,274,276],[221,1,1,276,277],[222,1,1,277,278],[223,1,1,278,279],[224,1,1,279,280],[225,5,4,280,284],[226,3,3,284,287],[228,1,1,287,288],[230,1,1,288,289]]],[7,1,1,289,290,[[232,1,1,289,290]]],[8,80,67,290,357,[[237,1,1,290,291],[240,4,4,291,295],[241,3,3,295,298],[242,1,1,298,299],[244,1,1,299,300],[247,5,3,300,303],[248,1,1,303,304],[249,8,7,304,311],[251,2,2,311,313],[252,7,6,313,319],[253,6,4,319,323],[254,2,1,323,324],[256,4,3,324,327],[257,3,2,327,329],[258,9,9,329,338],[259,10,8,338,346],[260,3,3,346,349],[261,6,5,349,354],[262,1,1,354,355],[263,2,1,355,356],[265,1,1,356,357]]],[9,33,26,357,383,[[267,1,1,357,358],[269,3,3,358,361],[271,2,1,361,362],[276,2,2,362,364],[277,1,1,364,365],[278,1,1,365,366],[279,1,1,366,367],[280,1,1,367,368],[281,1,1,368,369],[282,1,1,369,370],[284,5,3,370,373],[286,3,3,373,376],[287,3,2,376,378],[289,3,2,378,380],[290,5,3,380,383]]],[10,26,24,383,407,[[292,2,2,383,385],[298,5,5,385,390],[301,2,2,390,392],[303,4,2,392,394],[304,1,1,394,395],[305,1,1,395,396],[306,1,1,396,397],[307,1,1,397,398],[308,2,2,398,400],[310,3,3,400,403],[312,4,4,403,407]]],[11,37,33,407,440,[[315,4,4,407,411],[316,1,1,411,412],[317,2,2,412,414],[318,1,1,414,415],[319,2,2,415,417],[320,3,3,417,420],[321,1,1,420,421],[322,2,1,421,422],[323,2,2,422,424],[324,1,1,424,425],[325,5,3,425,428],[326,3,3,428,431],[327,2,1,431,432],[329,2,2,432,434],[330,1,1,434,435],[331,1,1,435,436],[333,1,1,436,437],[334,3,3,437,440]]],[12,24,20,440,460,[[341,1,1,440,441],[342,2,2,441,443],[343,1,1,443,444],[348,1,1,444,445],[350,2,2,445,447],[351,3,2,447,449],[353,1,1,449,450],[356,1,1,450,451],[357,2,1,451,452],[358,5,4,452,456],[359,1,1,456,457],[363,1,1,457,458],[366,3,2,458,460]]],[13,36,32,460,492,[[372,2,2,460,462],[376,1,1,462,463],[378,2,2,463,465],[379,2,2,465,467],[382,1,1,467,468],[383,1,1,468,469],[384,4,4,469,473],[386,1,1,473,474],[387,2,1,474,475],[389,3,3,475,478],[390,2,2,478,480],[391,1,1,480,481],[392,4,3,481,484],[394,3,2,484,486],[396,1,1,486,487],[399,1,1,487,488],[400,3,2,488,490],[401,1,1,490,491],[402,1,1,491,492]]],[14,11,11,492,503,[[403,1,1,492,493],[409,3,3,493,496],[410,5,5,496,501],[411,2,2,501,503]]],[15,9,9,503,512,[[413,1,1,503,504],[414,2,2,504,506],[418,1,1,506,507],[421,4,4,507,511],[423,1,1,511,512]]],[16,9,9,512,521,[[427,1,1,512,513],[428,1,1,513,514],[430,1,1,514,515],[431,2,2,515,517],[433,1,1,517,518],[434,3,3,518,521]]],[17,29,29,521,550,[[436,2,2,521,523],[437,2,2,523,525],[441,1,1,525,526],[444,2,2,526,528],[446,1,1,528,529],[447,3,3,529,532],[450,2,2,532,534],[454,1,1,534,535],[455,1,1,535,536],[456,2,2,536,538],[461,1,1,538,539],[462,1,1,539,540],[463,1,1,540,541],[464,1,1,541,542],[465,2,2,542,544],[466,3,3,544,547],[469,1,1,547,548],[472,1,1,548,549],[475,1,1,549,550]]],[18,43,42,550,592,[[487,2,2,550,552],[494,1,1,552,553],[498,1,1,553,554],[508,3,3,554,557],[509,1,1,557,558],[513,1,1,558,559],[514,2,2,559,561],[515,1,1,561,562],[516,1,1,562,563],[521,1,1,563,564],[550,1,1,564,565],[551,1,1,565,566],[552,1,1,566,567],[554,1,1,567,568],[555,2,2,568,570],[557,1,1,570,571],[558,1,1,571,572],[566,3,3,572,575],[572,2,2,575,577],[581,1,1,577,578],[583,3,3,578,581],[586,1,1,581,582],[596,1,1,582,583],[598,1,1,583,584],[600,2,1,584,585],[604,1,1,585,586],[613,1,1,586,587],[615,1,1,587,588],[616,1,1,588,589],[621,1,1,589,590],[622,1,1,590,591],[626,1,1,591,592]]],[19,15,13,592,605,[[628,1,1,592,593],[630,1,1,593,594],[637,1,1,594,595],[638,2,1,595,596],[639,1,1,596,597],[643,2,1,597,598],[644,1,1,598,599],[646,1,1,599,600],[648,1,1,600,601],[653,3,3,601,604],[657,1,1,604,605]]],[20,6,6,605,611,[[663,2,2,605,607],[665,1,1,607,608],[667,2,2,608,610],[669,1,1,610,611]]],[21,1,1,611,612,[[675,1,1,611,612]]],[22,52,51,612,663,[[679,1,1,612,613],[681,1,1,613,614],[683,2,1,614,615],[684,1,1,615,616],[686,1,1,616,617],[687,3,3,617,620],[688,6,6,620,626],[689,4,4,626,630],[691,1,1,630,631],[692,2,2,631,633],[697,2,2,633,635],[700,1,1,635,636],[701,1,1,636,637],[703,1,1,637,638],[704,1,1,638,639],[706,1,1,639,640],[709,1,1,640,641],[712,1,1,641,642],[714,1,1,642,643],[715,1,1,643,644],[719,1,1,644,645],[720,1,1,645,646],[722,1,1,646,647],[725,1,1,647,648],[726,1,1,648,649],[727,2,2,649,651],[728,1,1,651,652],[729,3,3,652,655],[731,1,1,655,656],[734,1,1,656,657],[735,1,1,657,658],[737,1,1,658,659],[740,1,1,659,660],[742,1,1,660,661],[744,2,2,661,663]]],[23,72,56,663,719,[[745,1,1,663,664],[750,2,2,664,666],[755,1,1,666,667],[759,2,2,667,669],[760,1,1,669,670],[762,3,2,670,672],[764,2,2,672,674],[765,5,3,674,677],[766,5,2,677,679],[770,3,2,679,681],[771,3,3,681,684],[773,2,2,684,686],[775,1,1,686,687],[776,9,8,687,695],[778,7,4,695,699],[780,2,1,699,700],[781,1,1,700,701],[782,6,6,701,707],[783,1,1,707,708],[784,1,1,708,709],[785,1,1,709,710],[787,2,2,710,712],[788,4,2,712,714],[790,4,2,714,716],[794,1,1,716,717],[795,2,2,717,719]]],[24,8,8,719,727,[[797,3,3,719,722],[798,2,2,722,724],[799,1,1,724,725],[801,2,2,725,727]]],[25,71,66,727,793,[[802,1,1,727,728],[803,1,1,728,729],[804,2,2,729,731],[807,1,1,731,732],[809,3,3,732,735],[810,2,2,735,737],[811,2,2,737,739],[813,1,1,739,740],[814,2,2,740,742],[815,2,2,742,744],[817,3,3,744,747],[818,1,1,747,748],[819,2,2,748,750],[821,10,9,750,759],[822,2,2,759,761],[824,5,3,761,764],[826,4,4,764,768],[828,1,1,768,769],[829,2,2,769,771],[831,5,4,771,775],[832,1,1,775,776],[834,1,1,776,777],[836,1,1,777,778],[837,1,1,778,779],[838,5,4,779,783],[839,1,1,783,784],[840,2,2,784,786],[841,3,3,786,789],[845,1,1,789,790],[847,1,1,790,791],[848,2,2,791,793]]],[26,8,7,793,800,[[850,1,1,793,794],[857,2,1,794,795],[858,1,1,795,796],[859,1,1,796,797],[860,3,3,797,800]]],[27,2,2,800,802,[[868,1,1,800,801],[873,1,1,801,802]]],[28,1,1,802,803,[[878,1,1,802,803]]],[29,4,4,803,807,[[879,1,1,803,804],[883,1,1,804,805],[885,1,1,805,806],[887,1,1,806,807]]],[32,3,3,807,810,[[894,1,1,807,808],[897,1,1,808,809],[899,1,1,809,810]]],[35,3,3,810,813,[[906,1,1,810,811],[907,2,2,811,813]]],[37,10,7,813,820,[[912,2,2,813,815],[914,1,1,815,816],[918,1,1,816,817],[921,2,1,817,818],[923,1,1,818,819],[924,3,1,819,820]]]],[77,192,207,356,358,387,393,467,473,531,553,557,559,593,600,601,609,684,744,865,902,941,944,1015,1105,1110,1137,1139,1147,1148,1149,1152,1153,1155,1157,1161,1162,1172,1183,1185,1230,1237,1239,1289,1302,1305,1311,1316,1341,1390,1449,1468,1481,1598,1599,1603,1605,1607,1608,1614,1618,1621,1622,1653,1656,1689,1690,1700,1702,1704,1715,1716,1727,1745,1757,1764,1789,1798,1799,1827,1870,1876,1881,1883,1897,1905,1910,1915,1916,1929,1940,1950,1988,1992,1994,2009,2039,2090,2093,2097,2101,2117,2121,2124,2145,2175,2188,2356,2449,2453,2500,2525,2560,2654,2749,2780,2786,2791,2799,2819,2824,2828,2940,2953,2975,2988,3125,3128,3136,3139,3143,3222,3497,3549,3570,3771,3776,3780,3788,3792,3810,3844,3858,3988,4001,4047,4176,4234,4322,4331,4342,4374,4382,4398,4404,4406,4478,4572,4577,4670,4761,4763,4863,4866,4892,4919,4945,4953,4968,4977,4999,5038,5068,5094,5107,5119,5130,5135,5154,5183,5189,5210,5226,5246,5247,5251,5257,5281,5289,5315,5319,5322,5326,5327,5329,5330,5352,5411,5418,5427,5520,5525,5526,5528,5558,5574,5619,5623,5631,5643,5717,5785,5798,5799,5813,5851,5888,5934,5947,5983,6009,6020,6021,6028,6062,6070,6072,6083,6094,6096,6115,6189,6374,6377,6381,6383,6389,6425,6435,6484,6487,6511,6513,6544,6560,6568,6572,6576,6578,6589,6596,6598,6601,6606,6608,6613,6620,6623,6649,6655,6656,6675,6690,6691,6696,6700,6701,6702,6703,6708,6710,6725,6726,6734,6783,6802,6850,6872,6885,6915,6941,6942,6944,6947,6967,6972,6975,7012,7082,7140,7253,7325,7326,7328,7330,7334,7336,7340,7365,7399,7465,7469,7475,7507,7518,7520,7527,7534,7535,7545,7551,7611,7618,7640,7658,7664,7667,7668,7675,7686,7693,7697,7701,7715,7775,7776,7780,7793,7804,7814,7816,7817,7821,7822,7824,7826,7827,7830,7843,7845,7849,7850,7851,7852,7857,7859,7869,7887,7894,7913,7914,7916,7923,7928,7931,7961,8001,8036,8089,8093,8099,8151,8242,8250,8273,8311,8336,8375,8394,8434,8480,8490,8506,8563,8564,8575,8600,8602,8663,8674,8706,8708,8709,8795,8816,9000,9009,9027,9038,9041,9134,9135,9188,9190,9236,9267,9290,9328,9350,9387,9414,9421,9436,9486,9492,9495,9514,9586,9589,9591,9594,9632,9658,9665,9681,9709,9724,9735,9747,9749,9757,9808,9837,9840,9865,9874,9876,9887,9901,9921,9923,9944,9990,10003,10054,10071,10133,10150,10152,10154,10395,10438,10448,10469,10696,10769,10770,10784,10785,10827,10918,10934,10947,10949,10950,10951,10982,11105,11172,11176,11297,11314,11410,11442,11444,11461,11469,11517,11528,11547,11553,11556,11575,11593,11634,11663,11666,11674,11688,11701,11724,11743,11745,11751,11769,11773,11839,11916,11943,11950,11972,12010,12024,12179,12182,12201,12219,12223,12227,12232,12234,12239,12244,12306,12315,12325,12406,12525,12538,12539,12541,12612,12745,12757,12781,12795,12802,12824,12836,12844,12849,12880,12881,12896,12897,12987,13075,13084,13122,13134,13137,13138,13226,13228,13318,13348,13360,13371,13480,13492,13513,13552,13578,13581,13609,13613,13615,13703,13776,13868,14053,14055,14117,14199,14336,14339,14346,14359,14449,14474,14483,14492,14522,14573,15043,15059,15079,15113,15155,15174,15215,15231,15339,15347,15351,15458,15461,15599,15677,15692,15693,15782,16071,16086,16100,16125,16208,16238,16249,16312,16336,16391,16424,16482,16660,16709,16743,16845,16889,16949,16985,17147,17150,17156,17283,17411,17412,17447,17476,17485,17519,17602,17679,17713,17764,17775,17818,17841,17846,17850,17854,17855,17860,17863,17864,17882,17892,17895,17898,17899,17908,17954,17955,18008,18020,18073,18088,18128,18141,18166,18253,18320,18345,18362,18471,18486,18538,18605,18627,18638,18658,18664,18689,18691,18696,18721,18755,18775,18801,18857,18893,18924,18936,18955,19098,19101,19247,19321,19332,19357,19388,19390,19426,19427,19445,19447,19450,19478,19479,19586,19596,19599,19602,19604,19638,19656,19723,19734,19735,19752,19755,19756,19759,19767,19774,19803,19804,19821,19822,19856,19891,19898,19900,19911,19913,19914,19918,19940,19945,19962,20000,20006,20035,20040,20069,20071,20181,20219,20237,20317,20320,20324,20339,20340,20357,20448,20454,20467,20501,20516,20524,20577,20605,20607,20615,20623,20624,20640,20641,20687,20717,20729,20740,20744,20789,20801,20811,20843,20857,20866,20900,20901,20910,20917,20918,20923,20928,20929,20937,20955,20975,21016,21035,21038,21090,21096,21097,21099,21136,21166,21167,21214,21216,21228,21229,21241,21302,21347,21366,21398,21414,21416,21417,21437,21469,21471,21478,21480,21482,21611,21662,21682,21693,21739,21986,22003,22025,22047,22052,22078,22183,22259,22351,22372,22442,22471,22497,22596,22642,22680,22791,22818,22820,22900,22908,22932,22980,23034,23066,23081]]],["handed",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8451]]],["hands",[250,236,[[0,12,10,0,10,[[4,1,1,0,1],[15,1,1,1,2],[23,3,3,2,5],[26,5,3,5,8],[42,1,1,8,9],[48,1,1,9,10]]],[1,11,9,10,19,[[64,1,1,10,11],[66,3,1,11,12],[78,3,3,12,15],[79,2,2,15,17],[84,1,1,17,18],[89,1,1,18,19]]],[2,9,9,19,28,[[93,1,1,19,20],[96,1,1,20,21],[97,4,4,21,25],[104,1,1,25,26],[105,1,1,26,27],[113,1,1,27,28]]],[3,3,3,28,31,[[124,2,2,28,30],[143,1,1,30,31]]],[4,18,17,31,48,[[153,1,1,31,32],[156,1,1,32,33],[161,2,2,33,35],[164,1,1,35,36],[168,1,1,36,37],[169,2,1,37,38],[172,1,1,38,39],[173,3,3,39,42],[176,1,1,42,43],[179,1,1,43,44],[183,1,1,44,45],[185,2,2,45,47],[186,1,1,47,48]]],[6,15,12,48,60,[[212,2,1,48,49],[217,5,4,49,53],[219,1,1,53,54],[220,2,1,54,55],[221,2,2,55,57],[225,1,1,57,58],[228,1,1,58,59],[229,1,1,59,60]]],[8,6,6,60,66,[[240,1,1,60,61],[246,1,1,61,62],[249,1,1,62,63],[252,1,1,63,64],[256,1,1,64,65],[265,1,1,65,66]]],[9,9,9,66,75,[[268,1,1,66,67],[269,1,1,67,68],[270,2,2,68,70],[282,1,1,70,71],[287,1,1,71,72],[288,2,2,72,74],[289,1,1,74,75]]],[10,2,2,75,77,[[304,1,1,75,76],[306,1,1,76,77]]],[11,10,9,77,86,[[315,1,1,77,78],[321,2,2,78,80],[322,1,1,80,81],[323,1,1,81,82],[324,1,1,82,83],[325,2,1,83,84],[331,1,1,84,85],[334,1,1,85,86]]],[12,4,4,86,90,[[362,3,3,86,89],[366,1,1,89,90]]],[13,8,8,90,98,[[372,1,1,90,91],[374,1,1,91,92],[378,1,1,92,93],[381,1,1,93,94],[389,1,1,94,95],[395,1,1,95,96],[398,1,1,96,97],[400,1,1,97,98]]],[14,4,4,98,102,[[403,1,1,98,99],[406,1,1,99,100],[408,1,1,100,101],[412,1,1,101,102]]],[15,7,6,102,108,[[414,1,1,102,103],[416,1,1,103,104],[418,2,1,104,105],[420,1,1,105,106],[421,1,1,106,107],[425,1,1,107,108]]],[16,3,3,108,111,[[428,2,2,108,110],[434,1,1,110,111]]],[17,12,12,111,123,[[436,1,1,111,112],[439,1,1,112,113],[440,2,2,113,115],[445,1,1,115,116],[449,1,1,116,117],[451,1,1,117,118],[452,2,2,118,120],[455,1,1,120,121],[465,1,1,121,122],[469,1,1,122,123]]],[18,29,28,123,151,[[485,1,1,123,124],[495,3,3,124,127],[499,1,1,127,128],[503,1,1,128,129],[505,3,3,129,132],[532,1,1,132,133],[535,1,1,133,134],[545,1,1,134,135],[553,1,1,135,136],[567,2,1,136,137],[569,1,1,137,138],[572,1,1,138,139],[579,1,1,139,140],[588,1,1,140,141],[592,2,2,141,143],[596,1,1,143,144],[602,1,1,144,145],[611,1,1,145,146],[612,1,1,146,147],[615,1,1,147,148],[620,2,2,148,150],[621,1,1,150,151]]],[19,10,10,151,161,[[633,2,2,151,153],[639,1,1,153,154],[641,1,1,154,155],[648,1,1,155,156],[651,1,1,156,157],[657,1,1,157,158],[658,3,3,158,161]]],[20,3,3,161,164,[[663,1,1,161,162],[665,1,1,162,163],[668,1,1,163,164]]],[21,3,3,164,167,[[675,2,2,164,166],[677,1,1,166,167]]],[22,19,18,167,185,[[679,1,1,167,168],[680,1,1,168,169],[681,1,1,169,170],[683,1,1,170,171],[691,1,1,171,172],[695,1,1,172,173],[697,1,1,173,174],[703,2,1,174,175],[707,1,1,175,176],[709,1,1,176,177],[713,1,1,177,178],[715,1,1,178,179],[723,3,3,179,182],[738,1,1,182,183],[743,2,2,183,185]]],[23,20,19,185,204,[[745,1,1,185,186],[746,1,1,186,187],[750,1,1,187,188],[754,2,2,188,190],[763,1,1,190,191],[765,1,1,191,192],[767,1,1,192,193],[769,3,3,193,196],[774,1,1,196,197],[776,1,1,197,198],[777,1,1,198,199],[782,2,1,199,200],[788,1,1,200,201],[791,1,1,201,202],[792,1,1,202,203],[794,1,1,203,204]]],[24,6,6,204,210,[[797,2,2,204,206],[799,1,1,206,207],[800,3,3,207,210]]],[25,15,15,210,225,[[802,1,1,210,211],[808,3,3,211,214],[811,2,2,214,216],[812,1,1,216,217],[814,1,1,217,218],[817,1,1,218,219],[822,1,1,219,220],[823,1,1,220,221],[824,3,3,221,224],[826,1,1,224,225]]],[26,1,1,225,226,[[859,1,1,225,226]]],[27,1,1,226,227,[[875,1,1,226,227]]],[32,1,1,227,228,[[897,1,1,227,228]]],[34,1,1,228,229,[[905,1,1,228,229]]],[35,1,1,229,230,[[908,1,1,229,230]]],[36,2,2,230,232,[[910,2,2,230,232]]],[37,5,4,232,236,[[914,2,1,232,233],[918,2,2,233,235],[923,1,1,235,236]]]],[134,390,613,621,638,743,749,750,1312,1497,1937,1995,2346,2351,2355,2401,2403,2556,2738,2810,2909,2931,2935,2939,2941,3179,3222,3460,3949,3951,4577,4917,5032,5172,5174,5258,5357,5371,5440,5453,5454,5457,5544,5600,5757,5817,5821,5848,6559,6696,6705,6713,6714,6770,6818,6859,6861,6943,7003,7051,7323,7452,7521,7665,7785,7993,8056,8115,8121,8132,8447,8589,8623,8637,8659,9245,9290,9587,9779,9791,9817,9845,9861,9887,10079,10162,11048,11049,11052,11169,11286,11364,11447,11497,11671,11814,11894,11958,12022,12114,12173,12271,12325,12376,12410,12499,12535,12692,12753,12756,12850,12879,12933,12963,12969,13094,13196,13249,13263,13269,13336,13559,13702,14018,14138,14142,14152,14220,14283,14301,14303,14304,14752,14781,14931,15086,15395,15415,15459,15546,15800,15834,15837,15971,16113,16174,16190,16239,16298,16299,16306,16550,16557,16733,16773,17009,17112,17279,17303,17304,17315,17403,17455,17511,17603,17612,17628,17669,17693,17718,17751,17913,17991,18029,18129,18216,18257,18323,18371,18570,18572,18573,18842,18899,18919,18962,19002,19113,19204,19210,19414,19444,19498,19540,19541,19548,19673,19761,19788,19899,20018,20076,20117,20209,20324,20327,20418,20422,20426,20430,20472,20594,20598,20604,20645,20654,20664,20730,20773,20951,20990,21044,21049,21052,21089,22025,22285,22646,22778,22836,22869,22872,22931,22985,22989,23065]]],["he",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3497]]],["him",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6583]]],["in",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12541]]],["labour",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16758]]],["ledges",[2,2,[[10,2,2,0,2,[[297,2,2,0,2]]]],[8969,8970]]],["means",[3,3,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[367,1,1,1,2]]],[23,1,1,2,3,[[749,1,1,2,3]]]],[9108,11211,19089]]],["mine",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8386]]],["ministry",[2,2,[[13,1,1,0,1,[[373,1,1,0,1]]],[27,1,1,1,2,[[873,1,1,1,2]]]],[11330,22262]]],["next",[12,8,[[15,12,8,0,8,[[415,12,8,0,8]]]],[12329,12331,12332,12334,12336,12337,12339,12346]]],["occasion",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6787]]],["on",[1,1,[[12,1,1,0,1,[[360,1,1,0,1]]]],[11011]]],["order",[2,2,[[12,2,2,0,2,[[362,2,2,0,2]]]],[11048,11052]]],["ordinance",[1,1,[[14,1,1,0,1,[[405,1,1,0,1]]]],[12107]]],["parts",[4,4,[[0,1,1,0,1,[[46,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]],[11,1,1,2,3,[[323,1,1,2,3]]],[15,1,1,3,4,[[423,1,1,3,4]]]],[1444,8554,9836,12589]]],["place",[8,8,[[3,1,1,0,1,[[118,1,1,0,1]]],[4,2,2,1,3,[[154,1,1,1,2],[175,1,1,2,3]]],[8,1,1,3,4,[[250,1,1,3,4]]],[9,1,1,4,5,[[284,1,1,4,5]]],[22,1,1,5,6,[[734,1,1,5,6]]],[23,1,1,6,7,[[750,1,1,6,7]]],[25,1,1,7,8,[[822,1,1,7,8]]]],[3675,4975,5512,7572,8496,18758,19092,20963]]],["places",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16282]]],["power",[7,7,[[4,1,1,0,1,[[184,1,1,0,1]]],[5,1,1,1,2,[[194,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[17,1,1,3,4,[[436,1,1,3,4]]],[19,1,1,4,5,[[645,1,1,4,5]]],[22,1,1,5,6,[[715,1,1,5,6]]],[26,1,1,6,7,[[861,1,1,6,7]]]],[5794,6022,10087,12881,16922,18379,22088]]],["service",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10485]]],["side",[4,4,[[1,1,1,0,1,[[51,1,1,0,1]]],[8,1,1,1,2,[[239,1,1,1,2]]],[9,1,1,2,3,[[284,1,1,2,3]]],[26,1,1,3,4,[[859,1,1,3,4]]]],[1559,7315,8482,22019]]],["sore",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15095]]],["state",[2,2,[[16,2,2,0,2,[[426,1,1,0,1],[427,1,1,1,2]]]],[12709,12742]]],["stays",[4,2,[[10,2,1,0,1,[[300,2,1,0,1]]],[13,2,1,1,2,[[375,2,1,1,2]]]],[9098,11382]]],["strength",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9780]]],["stroke",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13421]]],["tenons",[6,4,[[1,6,4,0,4,[[75,3,2,0,2],[85,3,2,2,4]]]],[2252,2254,2588,2590]]],["through",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22934]]],["throwing",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4862]]],["times",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21757]]],["to",[1,1,[[23,1,1,0,1,[[783,1,1,0,1]]]],[19934]]],["under",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11034]]],["us",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1802]]],["where",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18773]]],["with",[10,10,[[8,3,3,0,3,[[249,1,1,0,1],[251,1,1,1,2],[256,1,1,2,3]]],[9,1,1,3,4,[[274,1,1,3,4]]],[10,1,1,4,5,[[304,1,1,4,5]]],[11,2,2,5,7,[[317,1,1,5,6],[320,1,1,6,7]]],[19,1,1,7,8,[[634,1,1,7,8]]],[23,2,2,8,10,[[782,2,2,8,10]]]],[7542,7597,7780,8219,9221,9652,9736,16595,19905,19906]]],["work",[1,1,[[1,1,1,0,1,[[63,1,1,0,1]]]],[1920]]],["you",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6048]]]]},{"k":"H3028","v":[["*",[17,16,[[14,5,5,0,5,[[407,2,2,0,2],[408,1,1,2,3],[409,2,2,3,5]]],[26,12,11,5,16,[[851,3,3,5,8],[852,2,2,8,10],[853,1,1,10,11],[854,4,3,11,14],[855,1,1,14,15],[856,1,1,15,16]]]],[12142,12146,12163,12187,12198,21792,21796,21803,21822,21824,21872,21879,21897,21898,21932,21958]]],["hand",[12,11,[[14,4,4,0,4,[[407,1,1,0,1],[408,1,1,1,2],[409,2,2,2,4]]],[26,8,7,4,11,[[851,1,1,4,5],[852,1,1,5,6],[853,1,1,6,7],[854,4,3,7,10],[856,1,1,10,11]]]],[12146,12163,12187,12198,21796,21824,21872,21879,21897,21898,21958]]],["hands",[4,4,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,3,3,1,4,[[851,2,2,1,3],[852,1,1,3,4]]]],[12142,21792,21803,21822]]],["power",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21932]]]]},{"k":"H3029","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[855,1,1,1,2]]]],[21781,21915]]],["thank",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21781]]],["thanks",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21915]]]]},{"k":"H3030","v":[["Idalah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6336]]]]},{"k":"H3031","v":[["Idbash",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10388]]]]},{"k":"H3032","v":[["cast",[3,3,[[28,1,1,0,1,[[878,1,1,0,1]]],[30,1,1,1,2,[[888,1,1,1,2]]],[33,1,1,2,3,[[902,1,1,2,3]]]],[22346,22521,22722]]]]},{"k":"H3033","v":[["beloved",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19256]]]]},{"k":"H3034","v":[["*",[114,111,[[0,2,2,0,2,[[28,1,1,0,1],[48,1,1,1,2]]],[2,3,3,2,5,[[94,1,1,2,3],[105,1,1,3,4],[115,1,1,4,5]]],[3,1,1,5,6,[[121,1,1,5,6]]],[9,1,1,6,7,[[288,1,1,6,7]]],[10,2,2,7,9,[[298,2,2,7,9]]],[12,9,9,9,18,[[353,6,6,9,15],[360,1,1,15,16],[362,1,1,16,17],[366,1,1,17,18]]],[13,8,8,18,26,[[371,1,1,18,19],[372,2,2,19,21],[373,2,2,21,23],[386,1,1,23,24],[396,1,1,24,25],[397,1,1,25,26]]],[14,2,2,26,28,[[405,1,1,26,27],[412,1,1,27,28]]],[15,6,6,28,34,[[413,1,1,28,29],[421,2,2,29,31],[423,1,1,31,32],[424,2,2,32,34]]],[17,1,1,34,35,[[475,1,1,34,35]]],[18,67,64,35,99,[[483,1,1,35,36],[484,1,1,36,37],[486,1,1,37,38],[495,1,1,38,39],[505,1,1,39,40],[507,3,3,40,43],[509,1,1,43,44],[510,1,1,44,45],[512,1,1,45,46],[519,2,2,46,48],[520,2,2,48,50],[521,1,1,50,51],[522,1,1,51,52],[526,1,1,52,53],[529,1,1,53,54],[531,1,1,54,55],[534,1,1,55,56],[544,4,2,56,58],[548,1,1,58,59],[552,2,1,59,60],[553,1,1,60,61],[556,1,1,61,62],[563,1,1,62,63],[565,1,1,63,64],[566,1,1,64,65],[569,1,1,65,66],[574,1,1,66,67],[576,1,1,67,68],[577,1,1,68,69],[582,1,1,69,70],[583,2,2,70,72],[584,5,5,72,77],[585,1,1,77,78],[586,1,1,78,79],[588,1,1,79,80],[595,5,5,80,85],[596,2,2,85,87],[599,1,1,87,88],[613,4,4,88,92],[615,3,3,92,95],[616,1,1,95,96],[617,1,1,96,97],[619,1,1,97,98],[622,1,1,98,99]]],[19,1,1,99,100,[[655,1,1,99,100]]],[22,5,5,100,105,[[690,2,2,100,102],[703,1,1,102,103],[716,2,2,103,105]]],[23,2,2,105,107,[[777,1,1,105,106],[794,1,1,106,107]]],[24,1,1,107,108,[[799,1,1,107,108]]],[26,2,2,108,110,[[858,2,2,108,110]]],[37,1,1,110,111,[[911,1,1,110,111]]]],[830,1481,2835,3222,3564,3799,8652,9018,9020,10824,10827,10828,10854,10855,10861,11013,11049,11177,11281,11306,11308,11327,11330,11608,11849,11856,12108,12253,12302,12513,12514,12605,12648,12670,13878,13990,14012,14022,14167,14306,14323,14328,14331,14360,14368,14428,14560,14566,14570,14571,14579,14614,14666,14719,14731,14777,14896,14898,14998,15072,15091,15198,15296,15318,15331,15412,15490,15502,15512,15607,15652,15698,15700,15707,15714,15720,15730,15745,15785,15794,15870,15888,15890,15897,15898,15905,15960,16093,16197,16198,16199,16222,16232,16233,16235,16253,16276,16293,16330,17209,17901,17904,18119,18408,18409,19786,20180,20407,21992,22008,22899]]],["+",[13,13,[[0,1,1,0,1,[[28,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,1,1,2,3,[[121,1,1,2,3]]],[10,2,2,3,5,[[298,2,2,3,5]]],[13,2,2,5,7,[[372,2,2,5,7]]],[15,2,2,7,9,[[413,1,1,7,8],[421,1,1,8,9]]],[18,2,2,9,11,[[615,1,1,9,10],[619,1,1,10,11]]],[23,1,1,11,12,[[777,1,1,11,12]]],[37,1,1,12,13,[[911,1,1,12,13]]]],[830,3564,3799,9018,9020,11306,11308,12302,12513,16233,16293,19786,22899]]],["Praise",[3,3,[[13,1,1,0,1,[[386,1,1,0,1]]],[18,1,1,1,2,[[510,1,1,1,2]]],[22,1,1,2,3,[[690,1,1,2,3]]]],[11608,14368,17904]]],["cast",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20407]]],["confess",[4,4,[[2,2,2,0,2,[[94,1,1,0,1],[105,1,1,1,2]]],[17,1,1,2,3,[[475,1,1,2,3]]],[18,1,1,3,4,[[509,1,1,3,4]]]],[2835,3222,13878,14360]]],["confessed",[2,2,[[14,1,1,0,1,[[412,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]]],[12253,12514]]],["confesseth",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17209]]],["confessing",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22008]]],["confession",[2,2,[[13,1,1,0,1,[[396,1,1,0,1]]],[26,1,1,1,2,[[858,1,1,1,2]]]],[11849,21992]]],["praise",[45,43,[[0,1,1,0,1,[[48,1,1,0,1]]],[13,1,1,1,2,[[373,1,1,1,2]]],[18,39,37,2,39,[[484,1,1,2,3],[486,1,1,3,4],[505,1,1,4,5],[507,1,1,5,6],[519,2,2,6,8],[520,2,2,8,10],[521,1,1,10,11],[522,1,1,11,12],[526,1,1,12,13],[529,1,1,13,14],[531,1,1,14,15],[534,1,1,15,16],[544,4,2,16,18],[548,1,1,18,19],[553,1,1,19,20],[563,1,1,20,21],[565,1,1,21,22],[566,1,1,22,23],[576,1,1,23,24],[584,4,4,24,28],[585,1,1,28,29],[586,1,1,29,30],[588,1,1,30,31],[595,3,3,31,34],[596,1,1,34,35],[615,2,2,35,37],[616,1,1,37,38],[622,1,1,38,39]]],[22,4,4,39,43,[[690,1,1,39,40],[703,1,1,40,41],[716,2,2,41,43]]]],[1481,11330,14012,14022,14306,14328,14560,14566,14570,14571,14579,14614,14666,14719,14731,14777,14896,14898,14998,15091,15296,15318,15331,15502,15707,15714,15720,15730,15745,15785,15794,15888,15890,15897,15905,16232,16235,16253,16330,17901,18119,18408,18409]]],["praised",[1,1,[[13,1,1,0,1,[[373,1,1,0,1]]]],[11327]]],["shoot",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20180]]],["thank",[4,4,[[12,4,4,0,4,[[353,2,2,0,2],[360,1,1,2,3],[366,1,1,3,4]]]],[10824,10827,11013,11177]]],["thankful",[1,1,[[18,1,1,0,1,[[577,1,1,0,1]]]],[15512]]],["thanking",[1,1,[[13,1,1,0,1,[[371,1,1,0,1]]]],[11281]]],["thanks",[32,31,[[9,1,1,0,1,[[288,1,1,0,1]]],[12,5,5,1,6,[[353,4,4,1,5],[362,1,1,5,6]]],[13,1,1,6,7,[[397,1,1,6,7]]],[14,1,1,7,8,[[405,1,1,7,8]]],[15,1,1,8,9,[[424,1,1,8,9]]],[18,23,22,9,31,[[483,1,1,9,10],[495,1,1,10,11],[507,2,2,11,13],[512,1,1,13,14],[552,2,1,14,15],[556,1,1,15,16],[569,1,1,16,17],[574,1,1,17,18],[582,1,1,18,19],[583,2,2,19,21],[584,1,1,21,22],[595,2,2,22,24],[596,1,1,24,25],[599,1,1,25,26],[613,4,4,26,30],[617,1,1,30,31]]]],[8652,10828,10854,10855,10861,11049,11856,12108,12648,13990,14167,14323,14331,14428,15072,15198,15412,15490,15607,15652,15698,15700,15870,15898,15960,16093,16197,16198,16199,16222,16276]]],["thanksgiving",[2,2,[[15,2,2,0,2,[[423,1,1,0,1],[424,1,1,1,2]]]],[12605,12670]]]]},{"k":"H3035","v":[["*",[2,2,[[12,1,1,0,1,[[364,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]]],[11130,12295]]],["Iddo",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11130]]],["Jadau",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12295]]]]},{"k":"H3036","v":[["Jadon",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12334]]]]},{"k":"H3037","v":[["Jaddua",[3,3,[[15,3,3,0,3,[[422,1,1,0,1],[424,2,2,1,3]]]],[12570,12635,12646]]]]},{"k":"H3038","v":[["Jeduthun",[14,11,[[12,10,7,0,7,[[346,1,1,0,1],[353,4,3,1,4],[362,5,3,4,7]]],[13,3,3,7,10,[[371,1,1,7,8],[395,1,1,8,9],[401,1,1,9,10]]],[15,1,1,10,11,[[423,1,1,10,11]]]],[10631,10858,10861,10862,11047,11049,11052,11280,11805,11981,12605]]]]},{"k":"H3039","v":[["*",[8,7,[[4,1,1,0,1,[[185,1,1,0,1]]],[18,4,4,1,5,[[537,1,1,1,2],[561,1,1,2,3],[585,1,1,3,4],[604,1,1,4,5]]],[22,2,1,5,6,[[683,2,1,5,6]]],[23,1,1,6,7,[[755,1,1,6,7]]]],[5822,14812,15260,15748,16123,17740,19241]]],["amiable",[1,1,[[18,1,1,0,1,[[561,1,1,0,1]]]],[15260]]],["beloved",[5,5,[[4,1,1,0,1,[[185,1,1,0,1]]],[18,3,3,1,4,[[537,1,1,1,2],[585,1,1,2,3],[604,1,1,3,4]]],[23,1,1,4,5,[[755,1,1,4,5]]]],[5822,14812,15748,16123,19241]]],["wellbeloved",[2,1,[[22,2,1,0,1,[[683,2,1,0,1]]]],[17740]]]]},{"k":"H3040","v":[["Jedidah",[1,1,[[11,1,1,0,1,[[334,1,1,0,1]]]],[10146]]]]},{"k":"H3041","v":[["Jedidiah",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8311]]]]},{"k":"H3042","v":[["Jedaiah",[2,2,[[12,1,1,0,1,[[341,1,1,0,1]]],[15,1,1,1,2,[[415,1,1,1,2]]]],[10422,12337]]]]},{"k":"H3043","v":[["Jediael",[6,6,[[12,6,6,0,6,[[344,3,3,0,3],[348,1,1,3,4],[349,1,1,4,5],[363,1,1,5,6]]]],[10541,10545,10546,10718,10740,11079]]]]},{"k":"H3044","v":[["Jidlaph",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[569]]]]},{"k":"H3045","v":[["*",[946,873,[[0,57,52,0,52,[[2,4,3,0,3],[3,4,4,3,7],[7,1,1,7,8],[8,1,1,8,9],[11,1,1,9,10],[14,3,2,10,12],[17,2,2,12,14],[18,4,4,14,18],[19,2,2,18,20],[20,1,1,20,21],[21,1,1,21,22],[23,3,3,22,25],[24,1,1,25,26],[26,1,1,26,27],[27,1,1,27,28],[28,2,1,28,29],[29,2,2,29,31],[30,2,2,31,33],[32,1,1,33,34],[37,3,3,34,37],[38,2,2,37,39],[40,3,3,39,42],[41,3,3,42,45],[42,3,2,45,47],[43,2,2,47,49],[44,1,1,49,50],[46,1,1,50,51],[47,2,1,51,52]]],[1,45,43,52,95,[[50,1,1,52,53],[51,3,3,53,56],[52,2,2,56,58],[53,1,1,58,59],[54,1,1,59,60],[55,2,2,60,62],[56,2,2,62,64],[57,2,2,64,66],[58,3,3,66,69],[59,3,3,69,72],[60,1,1,72,73],[63,2,2,73,75],[65,3,3,75,78],[67,3,3,78,81],[70,1,1,81,82],[72,1,1,82,83],[78,1,1,83,84],[80,1,1,84,85],[81,3,3,85,88],[82,7,5,88,93],[83,1,1,93,94],[85,1,1,94,95]]],[2,9,9,95,104,[[93,3,3,95,98],[94,5,5,98,103],[112,1,1,103,104]]],[3,17,17,104,121,[[126,1,1,104,105],[127,1,1,105,106],[128,1,1,106,107],[130,2,2,107,109],[132,3,3,109,112],[136,1,1,112,113],[138,3,3,113,116],[140,1,1,116,117],[147,3,3,117,120],[148,1,1,120,121]]],[4,46,43,121,164,[[153,3,3,121,124],[154,1,1,124,125],[155,1,1,125,126],[156,3,3,126,129],[159,2,2,129,131],[160,6,4,131,135],[161,4,4,135,139],[163,3,2,139,141],[165,4,4,141,145],[170,1,1,145,146],[172,1,1,146,147],[173,1,1,147,148],[174,1,1,148,149],[180,3,3,149,152],[181,4,4,152,156],[183,4,4,156,160],[184,1,1,160,161],[185,1,1,161,162],[186,2,2,162,164]]],[5,17,15,164,179,[[188,3,3,164,167],[189,3,3,167,170],[190,2,2,170,172],[194,1,1,172,173],[200,1,1,173,174],[208,3,2,174,176],[209,3,2,176,178],[210,1,1,178,179]]],[6,23,21,179,200,[[212,1,1,179,180],[213,4,3,180,183],[216,1,1,183,184],[218,1,1,184,185],[221,1,1,185,186],[223,2,2,186,188],[224,1,1,188,189],[225,1,1,189,190],[226,2,2,190,192],[227,1,1,192,193],[228,3,2,193,195],[229,2,2,195,197],[230,1,1,197,198],[231,2,2,198,200]]],[7,7,7,200,207,[[233,1,1,200,201],[234,5,5,201,206],[235,1,1,206,207]]],[8,57,51,207,258,[[236,1,1,207,208],[237,1,1,208,209],[238,3,3,209,212],[239,1,1,212,213],[241,3,3,213,216],[245,2,2,216,218],[247,1,1,218,219],[249,3,3,219,222],[251,3,3,222,225],[252,4,4,225,229],[253,1,1,229,230],[255,10,6,230,236],[256,2,1,236,237],[257,5,5,237,242],[258,4,4,242,246],[259,2,2,246,248],[260,2,2,248,250],[261,2,2,250,252],[263,6,5,252,257],[264,1,1,257,258]]],[9,30,28,258,286,[[267,2,2,258,260],[268,1,1,260,261],[269,6,4,261,265],[271,1,1,265,266],[273,2,2,266,268],[277,2,2,268,270],[278,1,1,270,271],[280,3,3,271,274],[281,1,1,274,275],[283,3,3,275,278],[284,1,1,278,279],[285,4,4,279,283],[288,1,1,283,284],[290,2,2,284,286]]],[10,35,29,286,315,[[291,4,4,286,290],[292,10,7,290,297],[293,1,1,297,298],[295,3,2,298,300],[298,6,4,300,304],[299,1,1,304,305],[304,1,1,305,306],[307,1,1,306,307],[308,3,3,307,310],[310,4,4,310,314],[312,1,1,314,315]]],[11,19,16,315,331,[[314,4,2,315,317],[316,3,3,317,320],[317,3,3,320,323],[319,1,1,323,324],[320,1,1,324,325],[321,1,1,325,326],[322,2,2,326,328],[329,2,1,328,329],[331,2,2,329,331]]],[12,9,8,331,339,[[349,2,1,331,332],[351,1,1,332,333],[353,1,1,333,334],[354,2,2,334,336],[358,1,1,336,337],[365,1,1,337,338],[366,1,1,338,339]]],[13,20,17,339,356,[[368,6,5,339,344],[372,5,3,344,347],[374,1,1,347,348],[378,1,1,348,349],[379,1,1,349,350],[386,1,1,350,351],[389,1,1,351,352],[391,1,1,352,353],[398,2,2,353,355],[399,1,1,355,356]]],[15,9,9,356,365,[[414,1,1,356,357],[416,2,2,357,359],[418,1,1,359,360],[420,1,1,360,361],[421,2,2,361,363],[422,1,1,363,364],[425,1,1,364,365]]],[16,8,7,365,372,[[426,2,1,365,366],[427,2,2,366,368],[429,4,4,368,372]]],[17,70,69,372,441,[[440,3,3,372,375],[443,1,1,375,376],[444,4,4,376,380],[445,2,2,380,382],[446,3,3,382,385],[447,1,1,385,386],[448,3,3,386,389],[449,1,1,389,390],[450,3,2,390,392],[453,1,1,392,393],[454,5,5,393,398],[455,2,2,398,400],[456,2,2,400,402],[457,1,1,402,403],[458,3,3,403,406],[459,2,2,406,408],[461,1,1,408,409],[463,3,3,409,412],[464,1,1,412,413],[465,1,1,413,414],[466,1,1,414,415],[467,2,2,415,417],[469,3,3,417,420],[470,1,1,420,421],[471,1,1,421,422],[472,5,5,422,427],[473,7,7,427,434],[474,2,2,434,436],[475,1,1,436,437],[477,4,4,437,441]]],[18,93,91,441,532,[[478,1,1,441,442],[481,1,1,442,443],[486,3,3,443,446],[491,1,1,446,447],[493,1,1,447,448],[495,1,1,448,449],[497,1,1,449,450],[502,2,2,450,452],[508,2,2,452,454],[509,1,1,454,455],[512,3,3,455,458],[513,1,1,458,459],[514,1,1,459,460],[516,3,2,460,462],[517,1,1,462,463],[518,1,1,463,464],[521,1,1,464,465],[523,1,1,465,466],[525,1,1,466,467],[527,1,1,467,468],[528,2,2,468,470],[530,1,1,470,471],[532,1,1,471,472],[533,1,1,472,473],[536,1,1,473,474],[544,1,1,474,475],[546,2,2,475,477],[548,1,1,477,478],[550,3,3,478,481],[551,2,2,481,483],[553,1,1,483,484],[554,2,2,484,486],[555,3,3,486,489],[556,2,2,489,491],[558,1,1,491,492],[559,1,1,492,493],[560,1,1,493,494],[564,1,1,494,495],[565,3,3,495,498],[566,2,2,498,500],[567,2,2,500,502],[568,1,1,502,503],[569,1,1,503,504],[571,1,1,504,505],[572,1,1,505,506],[575,1,1,506,507],[577,1,1,507,508],[578,1,1,508,509],[580,2,2,509,511],[581,1,1,511,512],[582,1,1,512,513],[583,1,1,513,514],[586,1,1,514,515],[596,4,4,515,519],[612,1,1,519,520],[615,1,1,520,521],[616,6,5,521,526],[617,1,1,526,527],[619,1,1,527,528],[620,1,1,528,529],[621,1,1,529,530],[622,1,1,530,531],[624,1,1,531,532]]],[19,35,33,532,565,[[628,2,2,532,534],[630,1,1,534,535],[631,2,2,535,537],[632,1,1,537,538],[634,1,1,538,539],[636,3,3,539,542],[637,2,2,542,544],[639,2,2,544,546],[641,3,3,546,549],[644,1,1,549,550],[649,2,2,550,552],[650,1,1,552,553],[651,4,3,553,556],[654,3,2,556,558],[655,2,2,558,560],[656,1,1,560,561],[657,3,3,561,564],[658,1,1,564,565]]],[20,36,30,565,595,[[659,3,1,565,566],[660,2,2,566,568],[661,3,3,568,571],[662,1,1,571,572],[663,1,1,572,573],[664,4,4,573,577],[665,3,2,577,579],[666,7,6,579,585],[667,5,4,585,589],[668,2,2,589,591],[669,5,4,591,595]]],[21,2,2,595,597,[[671,1,1,595,596],[676,1,1,596,597]]],[22,75,66,597,663,[[679,2,1,597,598],[683,2,2,598,600],[684,1,1,600,601],[685,2,2,601,603],[686,1,1,603,604],[687,1,1,604,605],[690,2,2,605,607],[697,3,2,607,609],[707,5,4,609,613],[710,1,1,613,614],[711,1,1,614,615],[715,2,2,615,617],[716,1,1,617,618],[718,4,4,618,622],[719,4,4,622,626],[720,3,2,626,628],[721,2,2,628,630],[722,3,3,630,633],[723,5,5,633,638],[725,4,3,638,641],[726,5,4,641,645],[727,2,2,645,647],[728,2,2,647,649],[729,1,1,649,650],[730,1,1,650,651],[731,1,1,651,652],[733,2,1,652,653],[734,3,2,653,655],[736,1,1,655,656],[737,3,2,656,658],[738,1,1,658,659],[739,1,1,659,660],[741,1,1,660,661],[742,1,1,661,662],[744,1,1,662,663]]],[23,74,62,663,725,[[745,2,2,663,665],[746,3,3,665,668],[747,1,1,668,669],[748,2,1,669,670],[749,4,4,670,674],[750,3,3,674,677],[751,1,1,677,678],[752,3,2,678,680],[753,4,4,680,684],[754,2,2,684,686],[755,3,2,686,688],[756,1,1,688,689],[757,2,1,689,690],[758,2,2,690,692],[759,3,2,692,694],[760,4,2,694,696],[761,3,3,696,699],[762,1,1,699,700],[763,1,1,700,701],[766,1,1,701,702],[768,1,1,702,703],[770,2,1,703,704],[772,1,1,704,705],[773,2,2,705,707],[775,3,2,707,709],[776,1,1,709,710],[777,1,1,710,711],[780,1,1,711,712],[782,1,1,712,713],[784,3,2,713,715],[785,1,1,715,716],[786,4,2,716,718],[788,4,4,718,722],[792,2,2,722,724],[794,1,1,724,725]]],[25,100,97,725,822,[[803,1,1,725,726],[806,1,1,726,727],[807,4,4,727,731],[808,3,3,731,734],[811,1,1,734,735],[812,3,3,735,738],[813,3,3,738,741],[814,4,4,741,745],[815,2,2,745,747],[816,1,1,747,748],[817,2,2,748,750],[818,3,3,750,753],[820,1,1,753,754],[821,10,10,754,764],[822,1,1,764,765],[823,4,4,765,769],[824,1,1,769,770],[825,2,2,770,772],[826,5,5,772,777],[827,1,1,777,778],[829,5,5,778,783],[830,4,4,783,787],[831,4,4,787,791],[833,2,2,791,793],[834,2,2,793,795],[835,2,2,795,797],[836,5,5,797,802],[837,5,5,802,807],[838,5,5,807,812],[839,4,3,812,815],[840,7,5,815,820],[844,1,1,820,821],[845,1,1,821,822]]],[26,7,7,822,829,[[850,1,1,822,823],[851,1,1,823,824],[857,1,1,824,825],[858,1,1,825,826],[859,1,1,826,827],[860,2,2,827,829]]],[27,16,14,829,843,[[863,2,2,829,831],[866,3,3,831,834],[867,2,1,834,835],[868,2,1,835,836],[869,2,2,836,838],[870,1,1,838,839],[872,1,1,839,840],[874,2,2,840,842],[875,1,1,842,843]]],[28,3,3,843,846,[[877,2,2,843,845],[878,1,1,845,846]]],[29,4,4,846,850,[[881,2,2,846,848],[883,2,2,848,850]]],[31,6,6,850,856,[[889,3,3,850,853],[891,1,1,853,854],[892,2,2,854,856]]],[32,3,3,856,859,[[895,1,1,856,857],[896,1,1,857,858],[898,1,1,858,859]]],[33,2,2,859,861,[[900,1,1,859,860],[902,1,1,860,861]]],[34,1,1,861,862,[[905,1,1,861,862]]],[35,1,1,862,863,[[908,1,1,862,863]]],[37,9,9,863,872,[[912,2,2,863,865],[914,3,3,865,868],[916,1,1,868,869],[917,1,1,869,870],[921,1,1,870,871],[924,1,1,871,872]]],[38,1,1,872,873,[[926,1,1,872,873]]]],[60,62,77,80,88,96,104,194,229,309,368,373,443,445,462,465,490,492,501,502,539,559,605,607,612,685,729,789,800,856,859,879,905,973,1128,1135,1145,1155,1157,1216,1226,1234,1275,1285,1286,1297,1312,1339,1351,1359,1426,1470,1540,1558,1568,1579,1586,1598,1615,1634,1658,1662,1690,1702,1720,1732,1756,1771,1772,1779,1784,1803,1813,1893,1907,1953,1959,1962,2010,2015,2019,2113,2153,2382,2433,2439,2460,2461,2478,2485,2486,2489,2490,2525,2567,2809,2818,2823,2831,2833,2834,2847,2848,3445,4019,4040,4065,4139,4142,4199,4222,4224,4325,4381,4394,4409,4462,4681,4682,4699,4741,4905,4907,4931,4945,4994,5013,5039,5043,5120,5126,5139,5140,5142,5153,5159,5160,5163,5181,5210,5236,5274,5275,5278,5285,5405,5447,5448,5472,5644,5647,5675,5683,5685,5695,5705,5741,5749,5755,5757,5775,5819,5845,5849,5873,5874,5878,5897,5900,5903,5932,5934,6016,6193,6448,6457,6473,6474,6507,6555,6569,6570,6572,6691,6735,6868,6900,6905,6913,6940,6958,6969,6993,6998,7007,7046,7049,7088,7113,7114,7160,7175,7176,7183,7186,7190,7194,7231,7252,7283,7289,7296,7303,7333,7334,7340,7426,7429,7477,7511,7520,7546,7598,7611,7613,7646,7664,7665,7673,7704,7733,7737,7739,7760,7763,7769,7774,7790,7793,7802,7804,7809,7819,7827,7832,7833,7850,7859,7872,7878,7909,7917,7943,7944,7951,7956,7957,7976,8027,8032,8075,8106,8107,8118,8119,8144,8200,8201,8275,8279,8308,8357,8376,8378,8400,8457,8459,8468,8507,8517,8531,8533,8546,8646,8694,8705,8721,8728,8735,8744,8775,8779,8785,8802,8807,8812,8814,8823,8881,8884,9023,9024,9028,9045,9078,9220,9341,9353,9377,9378,9415,9421,9430,9436,9483,9554,9556,9604,9612,9642,9654,9655,9662,9719,9739,9767,9803,9804,10009,10080,10088,10752,10776,10828,10881,10882,10936,11152,11181,11218,11219,11223,11224,11225,11311,11312,11315,11364,11445,11458,11599,11669,11720,11888,11906,11921,12323,12370,12374,12417,12505,12521,12525,12577,12681,12715,12735,12746,12763,12767,12773,12776,12975,12976,12978,13038,13053,13056,13072,13079,13088,13099,13114,13116,13119,13137,13155,13171,13176,13202,13212,13226,13297,13303,13310,13311,13322,13326,13330,13346,13374,13382,13402,13422,13424,13429,13437,13452,13470,13511,13517,13527,13548,13580,13594,13635,13650,13685,13687,13716,13735,13762,13774,13776,13784,13785,13788,13796,13797,13798,13805,13811,13814,13826,13835,13836,13871,13924,13925,13926,13933,13945,13968,14031,14037,14041,14084,14103,14161,14188,14255,14265,14338,14342,14360,14418,14421,14425,14448,14468,14516,14518,14534,14553,14592,14624,14637,14679,14694,14697,14723,14745,14764,14803,14895,14940,14954,14991,15031,15036,15042,15053,15057,15082,15107,15112,15116,15118,15119,15191,15195,15222,15238,15259,15305,15316,15320,15326,15327,15341,15389,15390,15409,15417,15442,15464,15492,15511,15517,15556,15563,15590,15607,15659,15782,15973,15977,16023,16050,16180,16237,16240,16241,16243,16253,16262,16275,16289,16301,16308,16332,16371,16402,16423,16461,16491,16509,16523,16598,16647,16651,16656,16665,16688,16729,16735,16779,16782,16805,16900,17034,17036,17079,17091,17093,17101,17170,17192,17198,17218,17231,17254,17255,17269,17307,17332,17347,17352,17371,17373,17380,17394,17398,17422,17425,17427,17429,17451,17454,17459,17463,17465,17470,17474,17475,17476,17480,17486,17487,17507,17508,17515,17518,17519,17522,17545,17626,17657,17744,17758,17778,17797,17798,17811,17838,17904,17905,18016,18025,18204,18205,18208,18217,18263,18292,18372,18380,18409,18433,18434,18441,18448,18471,18473,18474,18477,18496,18505,18515,18524,18541,18542,18551,18564,18565,18566,18567,18581,18607,18610,18612,18618,18620,18621,18622,18659,18662,18666,18669,18680,18702,18714,18745,18763,18764,18789,18808,18812,18837,18852,18882,18887,18936,18951,18952,18973,18984,18988,19015,19049,19059,19062,19063,19073,19104,19107,19116,19128,19160,19165,19178,19181,19191,19199,19224,19226,19244,19245,19252,19278,19311,19313,19329,19330,19349,19357,19361,19366,19373,19407,19411,19482,19531,19587,19627,19646,19658,19710,19725,19739,19778,19861,19919,19955,19956,19961,19994,19997,20013,20025,20038,20039,20097,20110,20190,20497,20559,20570,20573,20576,20577,20581,20586,20604,20653,20660,20665,20667,20695,20696,20700,20717,20722,20729,20731,20739,20754,20761,20764,20824,20837,20846,20849,20888,20899,20900,20904,20906,20907,20915,20921,20933,20937,20939,20949,20978,20992,20998,21002,21056,21080,21083,21088,21090,21094,21097,21100,21106,21176,21179,21180,21181,21183,21189,21192,21199,21204,21212,21223,21229,21230,21257,21263,21309,21313,21340,21343,21348,21353,21355,21356,21359,21370,21382,21391,21395,21397,21400,21403,21410,21411,21425,21439,21441,21448,21454,21455,21470,21471,21476,21583,21622,21741,21761,21980,22013,22035,22068,22074,22113,22125,22155,22156,22161,22170,22187,22196,22198,22215,22243,22270,22271,22291,22325,22338,22360,22397,22405,22435,22439,22538,22541,22543,22567,22570,22579,22609,22632,22653,22691,22729,22770,22825,22908,22910,22927,22931,22935,22962,22976,23039,23075,23107]]],["+",[116,100,[[0,10,8,0,8,[[3,3,3,0,3],[8,1,1,3,4],[14,2,1,4,5],[29,2,2,5,7],[42,2,1,7,8]]],[1,5,5,8,13,[[52,1,1,8,9],[67,1,1,9,10],[72,1,1,10,11],[81,1,1,11,12],[82,1,1,12,13]]],[2,2,2,13,15,[[93,2,2,13,15]]],[3,5,5,15,20,[[130,2,2,15,17],[132,1,1,17,18],[136,1,1,18,19],[138,1,1,19,20]]],[4,6,6,20,26,[[153,1,1,20,21],[160,1,1,21,22],[170,1,1,22,23],[181,1,1,23,24],[183,2,2,24,26]]],[5,6,5,26,31,[[189,1,1,26,27],[190,1,1,27,28],[200,1,1,28,29],[209,2,1,29,30],[210,1,1,30,31]]],[6,3,3,31,34,[[213,1,1,31,32],[218,1,1,32,33],[231,1,1,33,34]]],[7,2,2,34,36,[[234,2,2,34,36]]],[8,12,9,36,45,[[236,1,1,36,37],[238,1,1,37,38],[252,1,1,38,39],[255,5,3,39,42],[263,4,3,42,45]]],[9,7,5,45,50,[[269,3,1,45,46],[273,1,1,46,47],[280,1,1,47,48],[283,1,1,48,49],[290,1,1,49,50]]],[10,7,6,50,56,[[291,1,1,50,51],[292,4,3,51,54],[298,2,2,54,56]]],[11,1,1,56,57,[[320,1,1,56,57]]],[12,2,2,57,59,[[354,2,2,57,59]]],[13,2,2,59,61,[[372,2,2,59,61]]],[16,2,2,61,63,[[427,1,1,61,62],[429,1,1,62,63]]],[17,3,3,63,66,[[463,1,1,63,64],[472,1,1,64,65],[473,1,1,65,66]]],[18,2,2,66,68,[[512,1,1,66,67],[550,1,1,67,68]]],[19,3,2,68,70,[[644,1,1,68,69],[654,2,1,69,70]]],[22,12,11,70,81,[[683,1,1,70,71],[697,1,1,71,72],[707,3,2,72,74],[716,1,1,74,75],[723,1,1,75,76],[726,1,1,76,77],[734,2,2,77,79],[736,1,1,79,80],[741,1,1,80,81]]],[23,15,10,81,91,[[745,1,1,81,82],[757,2,1,82,83],[760,1,1,83,84],[762,1,1,84,85],[770,2,1,85,86],[773,1,1,86,87],[775,1,1,87,88],[784,2,1,88,89],[786,4,2,89,91]]],[25,3,3,91,94,[[817,1,1,91,92],[821,1,1,92,93],[826,1,1,93,94]]],[26,2,2,94,96,[[851,1,1,94,95],[857,1,1,95,96]]],[27,2,2,96,98,[[863,1,1,96,97],[867,1,1,97,98]]],[32,1,1,98,99,[[895,1,1,98,99]]],[33,1,1,99,100,[[902,1,1,99,100]]]],[80,96,104,229,373,856,859,1297,1586,2015,2153,2460,2485,2818,2823,4139,4142,4199,4325,4381,4931,5139,5405,5695,5749,5755,5897,5934,6193,6473,6507,6569,6735,7113,7175,7176,7231,7283,7646,7733,7739,7769,7943,7944,7951,8106,8200,8376,8457,8694,8744,8779,8812,8814,9024,9028,9739,10881,10882,11312,11315,12735,12763,13527,13785,13797,14418,15042,16900,17192,17744,18025,18204,18205,18409,18581,18618,18763,18764,18789,18882,18952,19278,19357,19407,19587,19646,19725,19955,19994,19997,20764,20899,21097,21761,21980,22125,22170,22609,22729]]],["Know",[12,12,[[0,1,1,0,1,[[28,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[159,1,1,2,3]]],[9,1,1,3,4,[[269,1,1,3,4]]],[10,1,1,4,5,[[312,1,1,4,5]]],[11,1,1,5,6,[[322,1,1,5,6]]],[13,1,1,6,7,[[398,1,1,6,7]]],[17,2,2,7,9,[[446,1,1,7,8],[454,1,1,8,9]]],[18,1,1,9,10,[[577,1,1,9,10]]],[25,1,1,10,11,[[818,1,1,10,11]]],[26,1,1,11,12,[[858,1,1,11,12]]]],[800,5043,5120,8119,9483,9803,11888,13114,13303,15511,20837,22013]]],["Knowest",[10,10,[[6,1,1,0,1,[[225,1,1,0,1]]],[11,2,2,1,3,[[314,2,2,1,3]]],[17,4,4,3,7,[[455,1,1,3,4],[473,2,2,4,6],[474,1,1,6,7]]],[26,1,1,7,8,[[859,1,1,7,8]]],[37,2,2,8,10,[[914,2,2,8,10]]]],[6940,9554,9556,13330,13814,13826,13835,22035,22927,22935]]],["Mark",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9415]]],["Shew",[1,1,[[18,1,1,0,1,[[502,1,1,0,1]]]],[14255]]],["Teach",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13788]]],["Understand",[2,2,[[4,2,2,0,2,[[161,2,2,0,2]]]],[5160,5163]]],["acknowledge",[5,5,[[18,1,1,0,1,[[528,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]],[23,2,2,3,5,[[747,1,1,3,4],[758,1,1,4,5]]]],[14694,16461,18292,19015,19313]]],["acknowledged",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14360]]],["acquaintance",[6,6,[[17,2,2,0,2,[[454,1,1,0,1],[477,1,1,1,2]]],[18,4,4,2,6,[[508,1,1,2,3],[532,1,1,3,4],[565,2,2,4,6]]]],[13310,13933,14342,14745,15316,15326]]],["acquainted",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18714]]],["advise",[1,1,[[9,1,1,0,1,[[290,1,1,0,1]]]],[8705]]],["answer",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13796]]],["appointed",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7774]]],["aware",[2,2,[[21,1,1,0,1,[[676,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]]],[17626,20190]]],["certain",[1,1,[[10,1,1,0,1,[[292,1,1,0,1]]]],[8807]]],["come",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18217]]],["comprehend",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13774]]],["consider",[4,4,[[4,1,1,0,1,[[160,1,1,0,1]]],[6,1,1,1,2,[[228,1,1,1,2]]],[11,1,1,2,3,[[317,1,1,2,3]]],[20,1,1,3,4,[[663,1,1,3,4]]]],[5142,7007,9654,17398]]],["considereth",[2,2,[[19,2,2,0,2,[[655,1,1,0,1],[656,1,1,1,2]]]],[17218,17231]]],["could",[2,2,[[23,2,2,0,2,[[750,1,1,0,1],[752,1,1,1,2]]]],[19104,19165]]],["cunning",[4,4,[[0,1,1,0,1,[[24,1,1,0,1]]],[8,2,2,1,3,[[251,2,2,1,3]]],[26,1,1,3,4,[[850,1,1,3,4]]]],[685,7611,7613,21741]]],["declare",[3,3,[[17,2,2,0,2,[[475,1,1,0,1],[477,1,1,1,2]]],[22,1,1,2,3,[[690,1,1,2,3]]]],[13871,13926,17904]]],["declared",[3,3,[[15,1,1,0,1,[[420,1,1,0,1]]],[17,1,1,1,2,[[461,1,1,1,2]]],[18,1,1,2,3,[[554,1,1,2,3]]]],[12505,13470,15107]]],["discern",[3,3,[[9,1,1,0,1,[[285,1,1,0,1]]],[25,1,1,1,2,[[845,1,1,1,2]]],[31,1,1,2,3,[[892,1,1,2,3]]]],[8546,21622,22579]]],["discerneth",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17463]]],["discovered",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7793]]],["endued",[2,2,[[13,2,2,0,2,[[368,2,2,0,2]]]],[11223,11224]]],["famous",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15053]]],["feel",[2,2,[[17,1,1,0,1,[[455,1,1,0,1]]],[20,1,1,1,2,[[666,1,1,1,2]]]],[13346,17463]]],["felt",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17079]]],["friends",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13311]]],["had",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10752]]],["have",[2,2,[[19,1,1,0,1,[[657,1,1,0,1]]],[22,1,1,1,2,[[734,1,1,1,2]]]],[17254,18764]]],["instructed",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19710]]],["kinsfolks",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9804]]],["knew",[77,76,[[0,9,9,0,9,[[2,1,1,0,1],[7,1,1,1,2],[27,1,1,2,3],[30,1,1,3,4],[37,3,3,4,7],[38,1,1,7,8],[41,1,1,8,9]]],[1,1,1,9,10,[[50,1,1,9,10]]],[3,2,2,10,12,[[138,1,1,10,11],[140,1,1,11,12]]],[4,6,6,12,18,[[160,1,1,12,13],[161,1,1,13,14],[181,1,1,14,15],[184,1,1,15,16],[185,1,1,16,17],[186,1,1,17,18]]],[6,8,8,18,26,[[212,1,1,18,19],[213,1,1,19,20],[221,1,1,20,21],[223,2,2,21,23],[224,1,1,23,24],[229,1,1,24,25],[230,1,1,25,26]]],[8,12,12,26,38,[[237,1,1,26,27],[238,1,1,27,28],[245,1,1,28,29],[249,1,1,29,30],[253,1,1,30,31],[255,2,2,31,33],[257,3,3,33,36],[258,1,1,36,37],[261,1,1,37,38]]],[9,6,6,38,44,[[269,1,1,38,39],[277,2,2,39,41],[281,1,1,41,42],[284,1,1,42,43],[288,1,1,43,44]]],[10,1,1,44,45,[[291,1,1,44,45]]],[11,1,1,45,46,[[316,1,1,45,46]]],[13,1,1,46,47,[[399,1,1,46,47]]],[15,1,1,47,48,[[414,1,1,47,48]]],[16,2,1,48,49,[[426,2,1,48,49]]],[17,3,3,49,52,[[458,1,1,49,50],[464,1,1,50,51],[477,1,1,51,52]]],[18,2,2,52,54,[[512,2,2,52,54]]],[19,1,1,54,55,[[651,1,1,54,55]]],[22,5,5,55,60,[[720,2,2,55,57],[726,2,2,57,59],[733,1,1,59,60]]],[23,7,7,60,67,[[745,1,1,60,61],[746,1,1,61,62],[755,1,1,62,63],[776,1,1,63,64],[785,1,1,64,65],[788,2,2,65,67]]],[25,2,2,67,69,[[811,1,1,67,68],[820,1,1,68,69]]],[26,1,1,69,70,[[860,1,1,69,70]]],[27,2,2,70,72,[[869,1,1,70,71],[872,1,1,71,72]]],[31,2,2,72,74,[[889,1,1,72,73],[892,1,1,73,74]]],[37,2,2,74,76,[[917,1,1,74,75],[921,1,1,75,76]]]],[62,194,789,905,1128,1135,1145,1155,1275,1540,4409,4462,5153,5181,5705,5775,5819,5849,6555,6570,6868,6900,6905,6913,7049,7088,7252,7296,7429,7511,7704,7763,7769,7802,7804,7809,7819,7917,8107,8275,8279,8400,8507,8646,8721,9642,11921,12323,12715,13422,13548,13925,14421,14425,17091,18496,18505,18621,18622,18745,18951,18973,19245,19739,19961,20013,20025,20653,20888,22074,22198,22243,22541,22570,22976,23039]]],["knewest",[5,5,[[4,1,1,0,1,[[160,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[18,1,1,3,4,[[619,1,1,3,4]]],[22,1,1,4,5,[[726,1,1,4,5]]]],[5140,7160,12521,16289,18622]]],["know",[370,359,[[0,20,19,0,19,[[2,2,2,0,2],[3,1,1,2,3],[11,1,1,3,4],[14,1,1,4,5],[17,2,2,5,7],[18,1,1,7,8],[19,2,2,8,10],[21,1,1,10,11],[23,1,1,11,12],[26,1,1,12,13],[28,1,1,13,14],[30,1,1,14,15],[41,2,2,15,17],[43,1,1,17,18],[47,2,1,18,19]]],[1,25,25,19,44,[[53,1,1,19,20],[54,1,1,20,21],[55,1,1,21,22],[56,2,2,22,24],[57,2,2,24,26],[58,3,3,26,29],[59,2,2,29,31],[60,1,1,31,32],[63,2,2,32,34],[65,2,2,34,36],[67,1,1,36,37],[78,1,1,37,38],[80,1,1,38,39],[82,4,4,39,43],[85,1,1,43,44]]],[2,1,1,44,45,[[112,1,1,44,45]]],[3,2,2,45,47,[[132,1,1,45,46],[138,1,1,46,47]]],[4,9,8,47,55,[[155,1,1,47,48],[156,1,1,48,49],[160,2,1,49,50],[163,1,1,50,51],[165,1,1,51,52],[174,1,1,52,53],[181,1,1,53,54],[183,1,1,54,55]]],[5,6,6,55,61,[[188,1,1,55,56],[189,2,2,56,58],[190,1,1,58,59],[208,1,1,59,60],[209,1,1,60,61]]],[6,7,7,61,68,[[213,2,2,61,63],[216,1,1,63,64],[227,1,1,64,65],[228,2,2,65,67],[229,1,1,67,68]]],[7,3,3,68,71,[[234,2,2,68,70],[235,1,1,70,71]]],[8,13,13,71,84,[[241,1,1,71,72],[249,1,1,72,73],[252,2,2,73,75],[255,2,2,75,77],[256,1,1,77,78],[257,1,1,78,79],[258,1,1,79,80],[259,1,1,80,81],[260,2,2,81,83],[264,1,1,83,84]]],[9,3,3,84,87,[[273,1,1,84,85],[285,2,2,85,87]]],[10,10,10,87,97,[[292,1,1,87,88],[293,1,1,88,89],[298,3,3,89,92],[307,1,1,92,93],[308,2,2,93,95],[310,2,2,95,97]]],[11,10,9,97,106,[[314,2,2,97,99],[317,2,2,99,101],[319,1,1,101,102],[321,1,1,102,103],[329,2,1,103,104],[331,2,2,104,106]]],[12,4,4,106,110,[[349,1,1,106,107],[358,1,1,107,108],[365,1,1,108,109],[366,1,1,109,110]]],[13,8,8,110,118,[[368,1,1,110,111],[372,2,2,111,113],[378,1,1,113,114],[379,1,1,114,115],[386,1,1,115,116],[391,1,1,116,117],[398,1,1,117,118]]],[15,1,1,118,119,[[416,1,1,118,119]]],[16,2,2,119,121,[[429,2,2,119,121]]],[17,31,31,121,152,[[440,3,3,121,124],[443,1,1,124,125],[444,4,4,125,129],[445,1,1,129,130],[446,1,1,130,131],[448,3,3,131,134],[450,1,1,134,135],[454,2,2,135,137],[456,2,2,137,139],[457,1,1,139,140],[458,1,1,140,141],[459,2,2,141,143],[465,1,1,143,144],[466,1,1,144,145],[467,1,1,145,146],[469,1,1,146,147],[471,1,1,147,148],[472,2,2,148,150],[473,1,1,150,151],[477,1,1,151,152]]],[18,30,28,152,180,[[481,1,1,152,153],[486,2,2,153,155],[497,1,1,155,156],[513,1,1,156,157],[516,2,1,157,158],[518,1,1,158,159],[523,1,1,159,160],[527,1,1,160,161],[528,1,1,161,162],[533,1,1,162,163],[536,1,1,163,164],[548,1,1,164,165],[550,2,2,165,167],[555,1,1,167,168],[559,1,1,168,169],[560,1,1,169,170],[564,1,1,170,171],[566,1,1,171,172],[578,1,1,172,173],[586,1,1,173,174],[596,2,2,174,176],[612,1,1,176,177],[616,2,1,177,178],[617,1,1,178,179],[620,1,1,179,180]]],[19,8,8,180,188,[[628,1,1,180,181],[631,2,2,181,183],[632,1,1,183,184],[637,1,1,184,185],[649,1,1,185,186],[651,1,1,186,187],[657,1,1,187,188]]],[20,12,9,188,197,[[659,2,1,188,189],[661,2,2,189,191],[665,2,1,191,192],[666,3,3,192,195],[667,2,1,195,196],[669,1,1,196,197]]],[21,1,1,197,198,[[671,1,1,197,198]]],[22,32,30,198,228,[[679,1,1,198,199],[683,1,1,199,200],[685,2,2,200,202],[687,1,1,202,203],[697,1,1,203,204],[715,2,2,204,206],[719,4,4,206,210],[721,2,2,210,212],[722,2,2,212,214],[723,2,2,214,216],[725,3,2,216,218],[726,1,1,218,219],[727,2,2,219,221],[728,2,2,221,223],[729,1,1,223,224],[730,1,1,224,225],[737,3,2,225,227],[738,1,1,227,228]]],[23,30,29,228,257,[[746,2,2,228,230],[749,2,2,230,232],[750,2,2,232,234],[751,1,1,234,235],[752,1,1,235,236],[753,2,2,236,238],[754,2,2,238,240],[755,1,1,240,241],[758,1,1,241,242],[759,1,1,242,243],[760,3,2,243,245],[761,1,1,245,246],[766,1,1,246,247],[768,1,1,247,248],[773,1,1,248,249],[775,1,1,249,250],[780,1,1,250,251],[782,1,1,251,252],[784,1,1,252,253],[788,2,2,253,255],[792,2,2,255,257]]],[25,80,80,257,337,[[803,1,1,257,258],[806,1,1,258,259],[807,4,4,259,263],[808,3,3,263,266],[812,3,3,266,269],[813,3,3,269,272],[814,4,4,272,276],[815,2,2,276,278],[816,1,1,278,279],[817,1,1,279,280],[818,2,2,280,282],[821,6,6,282,288],[822,1,1,288,289],[823,2,2,289,291],[824,1,1,291,292],[825,2,2,292,294],[826,4,4,294,298],[827,1,1,298,299],[829,5,5,299,304],[830,4,4,304,308],[831,4,4,308,312],[833,1,1,312,313],[834,2,2,313,315],[835,2,2,315,317],[836,4,4,317,321],[837,4,4,321,325],[838,4,4,325,329],[839,3,3,329,332],[840,5,5,332,337]]],[26,1,1,337,338,[[860,1,1,337,338]]],[27,8,8,338,346,[[863,1,1,338,339],[866,1,1,339,340],[867,1,1,340,341],[869,1,1,341,342],[870,1,1,342,343],[874,2,2,343,345],[875,1,1,345,346]]],[28,2,2,346,348,[[877,1,1,346,347],[878,1,1,347,348]]],[29,2,2,348,350,[[881,1,1,348,349],[883,1,1,349,350]]],[31,2,2,350,352,[[889,2,2,350,352]]],[32,2,2,352,354,[[896,1,1,352,353],[898,1,1,353,354]]],[37,4,4,354,358,[[912,2,2,354,356],[914,1,1,356,357],[916,1,1,357,358]]],[38,1,1,358,359,[[926,1,1,358,359]]]],[60,77,88,309,368,443,445,462,501,502,559,605,729,800,879,1285,1286,1351,1470,1615,1634,1662,1690,1702,1720,1732,1756,1771,1772,1779,1803,1813,1893,1907,1953,1959,2010,2382,2433,2478,2485,2486,2490,2567,3445,4222,4394,4994,5039,5140,5210,5275,5472,5685,5757,5878,5900,5903,5932,6448,6474,6570,6572,6691,6993,6998,7007,7046,7183,7190,7194,7340,7546,7664,7665,7733,7760,7774,7790,7832,7850,7872,7878,7976,8201,8531,8533,8807,8823,9023,9028,9045,9341,9353,9378,9421,9436,9554,9556,9655,9662,9719,9767,10009,10080,10088,10752,10936,11152,11181,11219,11311,11315,11445,11458,11599,11720,11906,12370,12767,12773,12975,12976,12978,13038,13053,13056,13072,13079,13099,13116,13155,13171,13176,13212,13322,13326,13374,13382,13402,13424,13437,13452,13580,13594,13650,13687,13762,13776,13784,13805,13924,13968,14031,14041,14188,14448,14516,14553,14624,14679,14697,14764,14803,14991,15031,15036,15119,15238,15259,15305,15341,15517,15782,15973,16023,16180,16262,16275,16301,16402,16491,16509,16523,16688,17036,17091,17269,17332,17371,17373,17454,17470,17474,17475,17480,17522,17545,17657,17758,17797,17798,17838,18016,18372,18380,18471,18473,18474,18477,18515,18524,18541,18542,18564,18567,18607,18610,18620,18659,18662,18666,18669,18680,18702,18808,18812,18837,18984,18988,19059,19062,19107,19116,19128,19160,19178,19181,19224,19226,19244,19311,19330,19349,19357,19366,19482,19531,19658,19725,19861,19919,19956,20038,20039,20097,20110,20497,20559,20570,20573,20576,20577,20581,20586,20604,20660,20665,20667,20695,20696,20700,20717,20722,20729,20731,20739,20754,20761,20824,20846,20849,20907,20915,20921,20933,20937,20939,20949,20992,20998,21056,21080,21083,21088,21090,21094,21100,21106,21176,21179,21180,21181,21183,21189,21192,21199,21204,21212,21223,21229,21230,21263,21309,21313,21340,21343,21348,21353,21356,21359,21370,21382,21395,21397,21403,21410,21411,21425,21439,21441,21448,21454,21455,21470,21471,21476,22068,22113,22155,22170,22196,22215,22270,22271,22291,22338,22360,22405,22435,22538,22543,22632,22653,22908,22910,22931,22962,23107]]],["knowest",[41,40,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,1,1,1,2,[[59,1,1,1,2]]],[3,2,2,2,4,[[126,1,1,2,3],[127,1,1,3,4]]],[4,4,4,4,8,[[159,1,1,4,5],[161,1,1,5,6],[172,1,1,6,7],[180,1,1,7,8]]],[9,2,2,8,10,[[267,1,1,8,9],[268,1,1,9,10]]],[10,6,6,10,16,[[291,1,1,10,11],[292,2,2,11,13],[295,2,2,13,15],[298,1,1,15,16]]],[11,1,1,16,17,[[316,1,1,16,17]]],[13,1,1,17,18,[[372,1,1,17,18]]],[17,5,5,18,23,[[450,1,1,18,19],[469,1,1,19,20],[473,2,2,20,22],[474,1,1,22,23]]],[18,4,4,23,27,[[517,1,1,23,24],[546,1,1,24,25],[616,2,2,25,27]]],[19,1,1,27,28,[[654,1,1,27,28]]],[20,4,3,28,31,[[669,4,3,28,31]]],[22,1,1,31,32,[[733,1,1,31,32]]],[23,7,7,32,39,[[749,1,1,32,33],[756,1,1,33,34],[759,2,2,34,36],[761,2,2,36,38],[777,1,1,38,39]]],[25,1,1,39,40,[[838,1,1,39,40]]]],[1426,1784,4019,4040,5126,5159,5447,5644,8027,8075,8735,8775,8785,8881,8884,9024,9604,11312,13212,13716,13798,13811,13836,14534,14940,16241,16243,17170,17515,17518,17519,18745,19073,19252,19329,19330,19361,19373,19778,21400]]],["knoweth",[57,56,[[0,1,1,0,1,[[32,1,1,0,1]]],[2,2,2,1,3,[[94,2,2,1,3]]],[4,2,2,3,5,[[154,1,1,3,4],[186,1,1,4,5]]],[5,1,1,5,6,[[208,1,1,5,6]]],[8,2,2,6,8,[[238,1,1,6,7],[258,1,1,7,8]]],[9,2,2,8,10,[[280,1,1,8,9],[283,1,1,9,10]]],[10,1,1,10,11,[[291,1,1,10,11]]],[16,1,1,11,12,[[429,1,1,11,12]]],[17,9,9,12,21,[[446,1,1,12,13],[447,1,1,13,14],[449,1,1,14,15],[450,1,1,15,16],[453,1,1,16,17],[458,1,1,17,18],[463,2,2,18,20],[470,1,1,20,21]]],[18,12,12,21,33,[[478,1,1,21,22],[514,1,1,22,23],[516,1,1,23,24],[521,1,1,24,25],[551,1,1,25,26],[567,1,1,26,27],[569,1,1,27,28],[571,1,1,28,29],[580,1,1,29,30],[581,1,1,30,31],[615,1,1,31,32],[616,1,1,32,33]]],[19,5,5,33,38,[[634,1,1,33,34],[636,2,2,34,36],[641,1,1,36,37],[651,1,1,37,38]]],[20,10,10,38,48,[[660,1,1,38,39],[661,1,1,39,40],[664,2,2,40,42],[665,1,1,42,43],[666,2,2,43,45],[667,2,2,45,47],[668,1,1,47,48]]],[22,2,2,48,50,[[679,1,1,48,49],[707,1,1,49,50]]],[23,2,2,50,52,[[752,1,1,50,51],[753,1,1,51,52]]],[27,2,1,52,53,[[868,2,1,52,53]]],[28,1,1,53,54,[[877,1,1,53,54]]],[33,1,1,54,55,[[900,1,1,54,55]]],[35,1,1,55,56,[[908,1,1,55,56]]]],[973,2833,2834,4945,5845,6448,7289,7827,8378,8459,8728,12776,13119,13137,13202,13226,13297,13429,13511,13517,13735,13945,14468,14518,14592,15057,15389,15417,15442,15563,15590,16237,16253,16598,16651,16656,16782,17101,17352,17380,17425,17429,17451,17459,17465,17476,17487,17508,17657,18208,19160,19199,22187,22325,22691,22825]]],["knowing",[2,2,[[0,1,1,0,1,[[2,1,1,0,1]]],[10,1,1,1,2,[[292,1,1,1,2]]]],[60,8802]]],["knowledge",[14,14,[[8,1,1,0,1,[[258,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[13,1,1,2,3,[[374,1,1,2,3]]],[15,1,1,3,4,[[422,1,1,3,4]]],[17,1,1,4,5,[[469,1,1,4,5]]],[18,3,3,5,8,[[491,1,1,5,6],[530,1,1,6,7],[621,1,1,7,8]]],[19,2,2,8,10,[[651,1,1,8,9],[655,1,1,9,10]]],[22,2,2,10,12,[[686,1,1,10,11],[710,1,1,11,12]]],[23,2,2,12,14,[[748,1,1,12,13],[755,1,1,13,14]]]],[7833,9078,11364,12577,13685,14084,14723,16308,17093,17198,17811,18263,19049,19244]]],["known",[99,99,[[0,5,5,0,5,[[18,1,1,0,1],[23,1,1,1,2],[40,2,2,2,4],[44,1,1,4,5]]],[1,4,4,5,9,[[51,1,1,5,6],[55,1,1,6,7],[70,1,1,7,8],[82,1,1,8,9]]],[2,2,2,9,11,[[93,1,1,9,10],[94,1,1,10,11]]],[3,4,4,11,15,[[128,1,1,11,12],[147,3,3,12,15]]],[4,11,11,15,26,[[153,2,2,15,17],[163,2,2,17,19],[165,3,3,19,22],[173,1,1,22,23],[180,2,2,23,25],[183,1,1,25,26]]],[6,2,2,26,28,[[226,1,1,26,27],[231,1,1,27,28]]],[7,1,1,28,29,[[234,1,1,28,29]]],[8,2,2,29,31,[[241,1,1,29,30],[263,1,1,30,31]]],[9,1,1,31,32,[[283,1,1,31,32]]],[10,2,2,32,34,[[304,1,1,32,33],[308,1,1,33,34]]],[12,1,1,34,35,[[353,1,1,34,35]]],[15,2,2,35,37,[[416,1,1,35,36],[421,1,1,36,37]]],[16,1,1,37,38,[[427,1,1,37,38]]],[18,25,25,38,63,[[486,1,1,38,39],[495,1,1,39,40],[508,1,1,40,41],[525,1,1,41,42],[544,1,1,42,43],[546,1,1,43,44],[553,1,1,44,45],[554,1,1,45,46],[555,2,2,46,48],[556,2,2,48,50],[565,1,1,50,51],[566,1,1,51,52],[568,1,1,52,53],[572,1,1,53,54],[575,1,1,54,55],[580,1,1,55,56],[582,1,1,56,57],[583,1,1,57,58],[596,2,2,58,60],[616,1,1,60,61],[622,1,1,61,62],[624,1,1,62,63]]],[19,6,6,63,69,[[628,1,1,63,64],[637,1,1,64,65],[639,1,1,65,66],[641,1,1,66,67],[649,1,1,67,68],[658,1,1,68,69]]],[20,2,2,69,71,[[664,2,2,69,71]]],[22,11,11,71,82,[[690,1,1,71,72],[697,1,1,72,73],[718,2,2,73,75],[720,1,1,75,76],[722,1,1,76,77],[723,2,2,77,79],[739,1,1,79,80],[742,1,1,80,81],[744,1,1,81,82]]],[23,5,5,82,87,[[748,1,1,82,83],[749,1,1,83,84],[753,1,1,84,85],[763,1,1,85,86],[772,1,1,86,87]]],[25,7,7,87,94,[[821,2,2,87,89],[833,1,1,89,90],[836,1,1,90,91],[837,1,1,91,92],[839,1,1,92,93],[840,1,1,93,94]]],[27,2,2,94,96,[[866,2,2,94,96]]],[29,1,1,96,97,[[881,1,1,96,97]]],[34,1,1,97,98,[[905,1,1,97,98]]],[37,1,1,98,99,[[924,1,1,98,99]]]],[465,607,1216,1226,1359,1568,1658,2113,2489,2809,2831,4065,4681,4682,4699,4905,4907,5210,5236,5274,5278,5285,5448,5647,5675,5741,6958,7114,7186,7334,7957,8468,9220,9377,10828,12374,12525,12746,14037,14161,14338,14637,14895,14954,15082,15112,15116,15118,15191,15195,15320,15327,15409,15464,15492,15556,15607,15659,15977,16050,16240,16332,16371,16423,16665,16735,16805,17034,17307,17422,17427,17905,18025,18441,18448,18496,18551,18565,18566,18852,18887,18936,19049,19063,19191,19411,19627,20900,20904,21257,21355,21391,21448,21455,22156,22161,22397,22770,23075]]],["make",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21455]]],["mark",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9430]]],["perceive",[6,6,[[4,1,1,0,1,[[181,1,1,0,1]]],[5,1,1,1,2,[[208,1,1,1,2]]],[8,1,1,2,3,[[247,1,1,2,3]]],[9,1,1,3,4,[[285,1,1,3,4]]],[11,1,1,4,5,[[316,1,1,4,5]]],[22,1,1,5,6,[[684,1,1,5,6]]]],[5683,6457,7477,8517,9612,17778]]],["perceived",[10,10,[[0,2,2,0,2,[[18,2,2,0,2]]],[8,1,1,2,3,[[263,1,1,2,3]]],[9,2,2,3,5,[[271,1,1,3,4],[280,1,1,4,5]]],[12,1,1,5,6,[[351,1,1,5,6]]],[15,2,2,6,8,[[418,1,1,6,7],[425,1,1,7,8]]],[20,2,2,8,10,[[659,1,1,8,9],[660,1,1,9,10]]]],[490,492,7956,8144,8357,10776,12417,12681,17332,17347]]],["perceivest",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16779]]],["prognosticators",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18612]]],["regardeth",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16729]]],["respect",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1579]]],["shew",[10,10,[[1,2,2,0,2,[[67,1,1,0,1],[82,1,1,1,2]]],[8,3,3,2,5,[[245,1,1,2,3],[249,1,1,3,4],[251,1,1,4,5]]],[17,1,1,5,6,[[445,1,1,5,6]]],[18,2,2,6,8,[[493,1,1,6,7],[502,1,1,7,8]]],[25,2,2,8,10,[[823,1,1,8,9],[844,1,1,9,10]]]],[2019,2486,7426,7520,7598,13088,14103,14265,20978,21583]]],["shewed",[4,4,[[0,1,1,0,1,[[40,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]],[25,2,2,2,4,[[821,1,1,2,3],[823,1,1,3,4]]]],[1234,18434,20906,21002]]],["skilful",[2,2,[[13,1,1,0,1,[[368,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[11225,22439]]],["skill",[4,4,[[10,1,1,0,1,[[295,1,1,0,1]]],[13,2,2,1,3,[[368,2,2,1,3]]],[20,1,1,3,4,[[667,1,1,3,4]]]],[8884,11218,11219,17486]]],["sure",[4,4,[[1,1,1,0,1,[[52,1,1,0,1]]],[3,1,1,1,2,[[148,1,1,1,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[9,1,1,3,4,[[267,1,1,3,4]]]],[1598,4741,7737,8032]]],["taught",[2,2,[[13,1,1,0,1,[[389,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[11669,18433]]],["teach",[4,4,[[4,1,1,0,1,[[156,1,1,0,1]]],[17,1,1,1,2,[[467,1,1,1,2]]],[18,1,1,2,3,[[567,1,1,2,3]]],[19,1,1,3,4,[[636,1,1,3,4]]]],[5013,13635,15390,16647]]],["tell",[7,7,[[0,1,1,0,1,[[42,1,1,0,1]]],[8,2,2,1,3,[[241,1,1,1,2],[252,1,1,2,3]]],[9,1,1,3,4,[[278,1,1,3,4]]],[19,1,1,4,5,[[657,1,1,4,5]]],[20,1,1,5,6,[[668,1,1,5,6]]],[31,1,1,6,7,[[891,1,1,6,7]]]],[1312,7333,7673,8308,17255,17507,22567]]],["to",[1,1,[[10,1,1,0,1,[[292,1,1,0,1]]]],[8814]]],["understand",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4224]]],["understood",[4,4,[[8,2,2,0,2,[[239,1,1,0,1],[261,1,1,1,2]]],[9,1,1,2,3,[[269,1,1,2,3]]],[18,1,1,3,4,[[558,1,1,3,4]]]],[7303,7909,8118,15222]]],["well",[1,1,[[8,1,1,0,1,[[259,1,1,0,1]]]],[7859]]],["will",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17394]]],["wist",[7,7,[[1,2,2,0,2,[[65,1,1,0,1],[83,1,1,1,2]]],[2,2,2,2,4,[[94,2,2,2,4]]],[5,2,2,4,6,[[188,1,1,4,5],[194,1,1,5,6]]],[6,1,1,6,7,[[226,1,1,6,7]]]],[1962,2525,2847,2848,5873,6016,6969]]],["wit",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]]],[612,1558]]],["wot",[5,5,[[0,2,2,0,2,[[20,1,1,0,1],[43,1,1,1,2]]],[1,2,2,2,4,[[81,2,2,2,4]]],[5,1,1,4,5,[[188,1,1,4,5]]]],[539,1339,2439,2461,5874]]],["wotteth",[1,1,[[0,1,1,0,1,[[38,1,1,0,1]]]],[1157]]]]},{"k":"H3046","v":[["*",[48,43,[[14,11,9,0,9,[[406,5,5,0,5],[407,2,2,5,7],[409,4,2,7,9]]],[26,37,34,9,43,[[851,17,14,9,23],[852,1,1,23,24],[853,8,8,24,32],[854,7,7,32,39],[855,2,2,39,41],[856,2,2,41,43]]]],[12122,12123,12124,12125,12126,12142,12144,12197,12198,21763,21766,21767,21773,21775,21779,21780,21781,21783,21784,21786,21787,21788,21803,21825,21843,21844,21846,21854,21855,21862,21863,21869,21882,21889,21890,21891,21895,21896,21897,21915,21920,21949,21952]]],["+",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21773,21775]]],["Know",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21920]]],["certified",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12124]]],["certify",[3,3,[[14,3,3,0,3,[[406,1,1,0,1],[407,1,1,1,2],[409,1,1,2,3]]]],[12126,12144,12197]]],["knew",[2,2,[[26,2,2,0,2,[[854,1,1,0,1],[855,1,1,1,2]]]],[21895,21915]]],["knewest",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21896]]],["know",[14,13,[[14,3,2,0,2,[[406,1,1,0,1],[409,2,1,1,2]]],[26,11,11,2,13,[[851,4,4,2,6],[853,4,4,6,10],[854,1,1,10,11],[856,2,2,11,13]]]],[12125,12198,21766,21767,21779,21788,21846,21854,21862,21869,21897,21949,21952]]],["knoweth",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21780]]],["known",[22,21,[[14,3,3,0,3,[[406,2,2,0,2],[407,1,1,2,3]]],[26,19,18,3,21,[[851,10,9,3,12],[852,1,1,12,13],[853,4,4,13,17],[854,4,4,17,21]]]],[12122,12123,12142,21763,21767,21781,21783,21784,21786,21787,21788,21803,21825,21843,21844,21855,21863,21882,21889,21890,21891]]],["teach",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12198]]]]},{"k":"H3047","v":[["Jada",[2,2,[[12,2,2,0,2,[[339,2,2,0,2]]]],[10334,10338]]]]},{"k":"H3048","v":[["Jedaiah",[11,11,[[12,2,2,0,2,[[346,1,1,0,1],[361,1,1,1,2]]],[14,1,1,2,3,[[404,1,1,2,3]]],[15,6,6,3,9,[[419,1,1,3,4],[423,1,1,4,5],[424,4,4,5,9]]],[37,2,2,9,11,[[916,2,2,9,11]]]],[10625,11022,12063,12459,12598,12630,12631,12643,12645,22957,22961]]]]},{"k":"H3049","v":[["*",[11,11,[[2,3,3,0,3,[[108,1,1,0,1],[109,2,2,1,3]]],[4,1,1,3,4,[[170,1,1,3,4]]],[8,2,2,4,6,[[263,2,2,4,6]]],[11,2,2,6,8,[[333,1,1,6,7],[335,1,1,7,8]]],[13,1,1,8,9,[[399,1,1,8,9]]],[22,2,2,9,11,[[686,1,1,9,10],[697,1,1,10,11]]]],[3312,3324,3345,5395,7945,7951,10125,10189,11914,17826,18007]]],["wizard",[2,2,[[2,1,1,0,1,[[109,1,1,0,1]]],[4,1,1,1,2,[[170,1,1,1,2]]]],[3345,5395]]],["wizards",[9,9,[[2,2,2,0,2,[[108,1,1,0,1],[109,1,1,1,2]]],[8,2,2,2,4,[[263,2,2,2,4]]],[11,2,2,4,6,[[333,1,1,4,5],[335,1,1,5,6]]],[13,1,1,6,7,[[399,1,1,6,7]]],[22,2,2,7,9,[[686,1,1,7,8],[697,1,1,8,9]]]],[3312,3324,7945,7951,10125,10189,11914,17826,18007]]]]},{"k":"H3050","v":[["*",[49,45,[[1,2,2,0,2,[[64,1,1,0,1],[66,1,1,1,2]]],[18,43,40,2,42,[[545,2,2,2,4],[554,1,1,4,5],[566,1,1,5,6],[571,2,2,6,8],[579,1,1,8,9],[581,1,1,9,10],[582,1,1,10,11],[583,2,2,11,13],[588,1,1,13,14],[589,1,1,14,15],[590,2,2,15,17],[592,3,2,17,19],[593,1,1,19,20],[594,1,1,20,21],[595,6,5,21,26],[599,1,1,26,27],[607,1,1,27,28],[612,4,4,28,32],[623,2,2,32,34],[624,2,2,34,36],[625,2,2,36,38],[626,2,2,38,40],[627,3,2,40,42]]],[22,4,3,42,45,[[690,1,1,42,43],[704,1,1,43,44],[716,2,1,44,45]]]],[1922,1999,14904,14918,15104,15334,15438,15443,15539,15606,15651,15652,15699,15794,15804,15814,15822,15847,15848,15867,15869,15874,15883,15886,15887,15888,16093,16143,16176,16178,16179,16196,16342,16351,16352,16371,16372,16385,16386,16394,16395,16400,17902,18134,18401]]],["JAH",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14904]]],["LORD",[48,44,[[1,2,2,0,2,[[64,1,1,0,1],[66,1,1,1,2]]],[18,42,39,2,41,[[545,1,1,2,3],[554,1,1,3,4],[566,1,1,4,5],[571,2,2,5,7],[579,1,1,7,8],[581,1,1,8,9],[582,1,1,9,10],[583,2,2,10,12],[588,1,1,12,13],[589,1,1,13,14],[590,2,2,14,16],[592,3,2,16,18],[593,1,1,18,19],[594,1,1,19,20],[595,6,5,20,25],[599,1,1,25,26],[607,1,1,26,27],[612,4,4,27,31],[623,2,2,31,33],[624,2,2,33,35],[625,2,2,35,37],[626,2,2,37,39],[627,3,2,39,41]]],[22,4,3,41,44,[[690,1,1,41,42],[704,1,1,42,43],[716,2,1,43,44]]]],[1922,1999,14918,15104,15334,15438,15443,15539,15606,15651,15652,15699,15794,15804,15814,15822,15847,15848,15867,15869,15874,15883,15886,15887,15888,16093,16143,16176,16178,16179,16196,16342,16351,16352,16371,16372,16385,16386,16394,16395,16400,17902,18134,18401]]]]},{"k":"H3051","v":[["*",[34,30,[[0,8,8,0,8,[[10,3,3,0,3],[28,1,1,3,4],[29,1,1,4,5],[37,1,1,5,6],[46,2,2,6,8]]],[1,1,1,8,9,[[50,1,1,8,9]]],[4,2,2,9,11,[[153,1,1,9,10],[184,1,1,10,11]]],[5,1,1,11,12,[[204,1,1,11,12]]],[6,2,2,12,14,[[211,1,1,12,13],[230,1,1,13,14]]],[7,1,1,14,15,[[234,1,1,14,15]]],[8,1,1,15,16,[[249,1,1,15,16]]],[9,2,2,16,18,[[277,1,1,16,17],[282,1,1,17,18]]],[12,3,2,18,20,[[353,3,2,18,20]]],[17,1,1,20,21,[[441,1,1,20,21]]],[18,8,6,21,27,[[506,3,2,21,23],[537,1,1,23,24],[573,3,2,24,26],[585,1,1,26,27]]],[19,2,1,27,28,[[657,2,1,27,28]]],[27,1,1,28,29,[[865,1,1,28,29]]],[37,1,1,29,30,[[921,1,1,29,30]]]],[269,270,273,816,831,1135,1435,1436,1542,4905,5761,6297,6524,7061,7187,7549,8274,8446,10848,10849,13000,14309,14310,14818,15472,15473,15754,17266,22151,23040]]],["Bring",[2,2,[[7,1,1,0,1,[[234,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]]],[7187,13000]]],["Come",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1542]]],["Give",[18,18,[[0,4,4,0,4,[[28,1,1,0,1],[29,1,1,1,2],[46,2,2,2,4]]],[5,1,1,4,5,[[204,1,1,4,5]]],[6,1,1,5,6,[[211,1,1,5,6]]],[8,1,1,6,7,[[249,1,1,6,7]]],[9,1,1,7,8,[[282,1,1,7,8]]],[12,2,2,8,10,[[353,2,2,8,10]]],[18,6,6,10,16,[[506,2,2,10,12],[537,1,1,12,13],[573,2,2,13,15],[585,1,1,15,16]]],[19,1,1,16,17,[[657,1,1,16,17]]],[27,1,1,17,18,[[865,1,1,17,18]]]],[816,831,1435,1436,6297,6524,7549,8446,10848,10849,14309,14310,14818,15472,15473,15754,17266,22151]]],["Set",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8274]]],["Take",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4905]]],["ascribe",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5761]]],["give",[6,6,[[6,1,1,0,1,[[230,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[18,2,2,2,4,[[506,1,1,2,3],[573,1,1,3,4]]],[19,1,1,4,5,[[657,1,1,4,5]]],[37,1,1,5,6,[[921,1,1,5,6]]]],[7061,10848,14309,15472,17266,23040]]],["to",[4,4,[[0,4,4,0,4,[[10,3,3,0,3],[37,1,1,3,4]]]],[269,270,273,1135]]]]},{"k":"H3052","v":[["*",[28,28,[[14,8,8,0,8,[[406,1,1,0,1],[407,3,3,1,4],[408,3,3,4,7],[409,1,1,7,8]]],[26,20,20,8,28,[[851,5,5,8,13],[852,1,1,13,14],[853,1,1,14,15],[854,4,4,15,19],[855,1,1,19,20],[856,8,8,20,28]]]],[12130,12146,12148,12150,12155,12159,12160,12192,21779,21781,21795,21796,21806,21835,21853,21891,21892,21893,21902,21907,21937,21939,21944,21945,21947,21955,21958,21960]]],["+",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21945]]],["delivered",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12148]]],["gave",[4,4,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,3,3,1,4,[[851,1,1,1,2],[854,2,2,2,4]]]],[12146,21806,21892,21893]]],["give",[2,2,[[26,2,2,0,2,[[854,1,1,0,1],[855,1,1,1,2]]]],[21891,21907]]],["given",[16,16,[[14,4,4,0,4,[[408,3,3,0,3],[409,1,1,3,4]]],[26,12,12,4,16,[[851,3,3,4,7],[853,1,1,7,8],[854,1,1,8,9],[856,7,7,9,16]]]],[12155,12159,12160,12192,21781,21795,21796,21853,21902,21937,21939,21944,21947,21955,21958,21960]]],["giveth",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21779]]],["laid",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12150]]],["paid",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12130]]],["yielded",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21835]]]]},{"k":"H3053","v":[["burden",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14754]]]]},{"k":"H3054","v":[["Jews",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12834]]]]},{"k":"H3055","v":[["Jehud",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6366]]]]},{"k":"H3056","v":[["Jahdai",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10353]]]]},{"k":"H3057","v":[["Jehudijah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10403]]]]},{"k":"H3058","v":[["Jehu",[58,54,[[10,6,5,0,5,[[306,3,3,0,3],[309,3,2,3,5]]],[11,41,39,5,44,[[321,18,17,5,22],[322,19,18,22,40],[324,1,1,40,41],[325,1,1,41,42],[326,1,1,42,43],[327,1,1,43,44]]],[12,4,3,44,47,[[339,2,1,44,45],[341,1,1,45,46],[349,1,1,46,47]]],[13,6,6,47,53,[[385,1,1,47,48],[386,1,1,48,49],[388,3,3,49,52],[391,1,1,52,53]]],[27,1,1,53,54,[[862,1,1,53,54]]]],[9284,9290,9295,9403,9404,9758,9761,9767,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9780,9783,9786,9787,9794,9798,9804,9806,9811,9812,9813,9814,9816,9817,9818,9821,9822,9823,9824,9827,9828,9829,9851,9872,9904,9937,10344,10420,10723,11578,11621,11651,11652,11653,11721,22098]]]]},{"k":"H3059","v":[["Jehoahaz",[23,22,[[11,16,15,0,15,[[322,1,1,0,1],[325,9,8,1,9],[326,3,3,9,12],[335,3,3,12,15]]],[13,7,7,15,22,[[387,1,1,15,16],[391,3,3,16,19],[402,3,3,19,22]]]],[9828,9872,9875,9878,9879,9880,9881,9893,9896,9897,9904,9913,10195,10196,10199,11641,11721,11727,11729,11994,11995,11997]]]]},{"k":"H3060","v":[["Jehoash",[17,16,[[11,17,16,0,16,[[323,1,1,0,1],[324,6,6,1,7],[325,2,2,7,9],[326,8,7,9,16]]]],[9850,9851,9852,9854,9856,9857,9868,9881,9896,9904,9905,9907,9909,9911,9912,9913]]]]},{"k":"H3061","v":[["*",[7,6,[[14,3,3,0,3,[[407,2,2,0,2],[409,1,1,2,3]]],[26,4,3,3,6,[[851,1,1,3,4],[854,2,1,4,5],[855,1,1,5,6]]]],[12135,12142,12187,21783,21887,21918]]],["Jewry",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21887]]],["Judah",[5,5,[[14,2,2,0,2,[[407,1,1,0,1],[409,1,1,1,2]]],[26,3,3,2,5,[[851,1,1,2,3],[854,1,1,3,4],[855,1,1,4,5]]]],[12135,12187,21783,21887,21918]]],["Judea",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12142]]]]},{"k":"H3062","v":[["*",[10,9,[[14,8,7,0,7,[[406,2,2,0,2],[407,2,2,2,4],[408,4,3,4,7]]],[26,2,2,7,9,[[852,2,2,7,9]]]],[12122,12133,12135,12139,12158,12159,12165,21815,21819]]],["+",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21815]]],["Jews",[9,8,[[14,8,7,0,7,[[406,2,2,0,2],[407,2,2,2,4],[408,4,3,4,7]]],[26,1,1,7,8,[[852,1,1,7,8]]]],[12122,12133,12135,12139,12158,12159,12165,21819]]]]},{"k":"H3063","v":[["*",[819,754,[[0,28,26,0,26,[[28,1,1,0,1],[34,1,1,1,2],[36,1,1,2,3],[37,15,13,3,16],[42,2,2,16,18],[43,3,3,18,21],[45,2,2,21,23],[48,3,3,23,26]]],[1,4,4,26,30,[[50,1,1,26,27],[80,1,1,27,28],[84,1,1,28,29],[87,1,1,29,30]]],[3,13,12,30,42,[[117,3,3,30,33],[118,3,2,33,35],[123,1,1,35,36],[126,1,1,36,37],[129,1,1,37,38],[142,3,3,38,41],[150,1,1,41,42]]],[4,4,3,42,45,[[179,1,1,42,43],[185,2,1,43,44],[186,1,1,44,45]]],[5,24,22,45,67,[[193,4,4,45,49],[197,1,1,49,50],[200,1,1,50,51],[201,7,6,51,57],[204,3,3,57,60],[205,4,3,60,63],[206,1,1,63,64],[207,3,3,64,67]]],[6,25,22,67,89,[[211,11,10,67,77],[220,1,1,77,78],[225,3,3,78,81],[227,4,3,81,84],[228,1,1,84,85],[229,4,3,85,88],[230,1,1,88,89]]],[7,4,4,89,93,[[232,3,3,89,92],[235,1,1,92,93]]],[8,13,13,93,106,[[246,1,1,93,94],[250,1,1,94,95],[252,2,2,95,97],[253,1,1,97,98],[257,1,1,98,99],[258,2,2,99,101],[262,2,2,101,103],[265,3,3,103,106]]],[9,30,27,106,133,[[267,1,1,106,107],[268,6,5,107,112],[269,2,2,112,114],[271,2,1,114,115],[272,1,1,115,116],[277,1,1,116,117],[278,1,1,117,118],[285,9,8,118,126],[286,3,3,126,129],[287,1,1,129,130],[290,3,3,130,133]]],[10,42,39,133,172,[[291,2,2,133,135],[292,1,1,135,136],[294,2,2,136,138],[302,8,6,138,144],[303,4,4,144,148],[304,3,3,148,151],[305,10,9,151,160],[306,5,5,160,165],[309,1,1,165,166],[312,6,6,166,172]]],[11,95,88,172,260,[[313,1,1,172,173],[315,4,4,173,177],[320,8,7,177,184],[321,4,4,184,188],[322,1,1,188,189],[324,3,2,189,191],[325,3,3,191,194],[326,14,13,194,207],[327,10,10,207,217],[328,2,2,217,219],[329,4,4,219,223],[330,7,6,223,229],[331,2,2,229,231],[332,1,1,231,232],[333,6,5,232,237],[334,3,3,237,240],[335,13,12,240,252],[336,5,5,252,257],[337,4,3,257,260]]],[12,25,23,260,283,[[339,5,4,260,264],[341,4,4,264,268],[342,2,2,268,270],[343,4,4,270,274],[346,3,3,274,277],[349,2,2,277,279],[350,1,1,279,280],[358,1,1,280,281],[364,1,1,281,282],[365,2,1,282,283]]],[13,161,145,283,428,[[368,1,1,283,284],[375,1,1,284,285],[376,1,1,285,286],[377,9,8,286,294],[378,3,3,294,297],[379,8,6,297,303],[380,6,6,303,309],[381,4,4,309,313],[382,5,4,313,317],[383,12,10,317,327],[384,3,3,327,330],[385,3,3,330,333],[386,14,13,333,346],[387,8,7,346,353],[388,4,4,353,357],[389,3,2,357,359],[390,6,6,359,365],[391,15,13,365,378],[392,2,2,378,380],[393,2,2,380,382],[394,9,8,382,390],[395,2,2,390,392],[396,6,5,392,397],[397,5,3,397,400],[398,9,8,400,408],[399,3,3,408,411],[400,9,9,411,420],[401,4,4,420,424],[402,4,4,424,428]]],[14,13,13,428,441,[[403,4,4,428,432],[404,1,1,432,433],[405,1,1,433,434],[406,3,3,434,437],[411,1,1,437,438],[412,3,3,438,441]]],[15,28,27,441,468,[[413,1,1,441,442],[414,2,2,442,444],[416,2,2,444,446],[417,1,1,446,447],[418,3,3,447,450],[419,1,1,450,451],[423,8,7,451,458],[424,6,6,458,464],[425,4,4,464,468]]],[16,1,1,468,469,[[427,1,1,468,469]]],[18,9,9,469,478,[[525,1,1,469,470],[537,1,1,470,471],[545,1,1,471,472],[546,1,1,472,473],[553,1,1,473,474],[555,1,1,474,475],[574,1,1,475,476],[585,1,1,476,477],[591,1,1,477,478]]],[19,1,1,478,479,[[652,1,1,478,479]]],[22,29,26,479,505,[[679,2,1,479,480],[680,1,1,480,481],[681,2,2,481,483],[683,2,2,483,485],[685,3,3,485,488],[686,1,1,488,489],[687,1,1,489,490],[689,4,2,490,492],[697,1,1,492,493],[700,2,2,493,495],[704,1,1,495,496],[714,2,2,496,498],[715,2,2,498,500],[716,1,1,500,501],[718,1,1,501,502],[722,1,1,502,503],[726,1,1,503,504],[743,1,1,504,505]]],[23,183,165,505,670,[[745,5,4,505,509],[746,1,1,509,510],[747,5,5,510,515],[748,4,4,515,519],[749,2,2,519,521],[751,4,4,521,525],[752,1,1,525,526],[753,2,2,526,528],[754,1,1,528,529],[755,7,7,529,536],[756,1,1,536,537],[757,3,3,537,540],[758,2,2,540,542],[759,1,1,542,543],[761,6,5,543,548],[762,1,1,548,549],[763,4,4,549,553],[764,2,2,553,555],[765,2,2,555,557],[766,7,7,557,564],[767,1,1,564,565],[768,4,3,565,568],[769,5,4,568,572],[770,7,5,572,577],[771,7,6,577,583],[772,3,2,583,585],[773,3,3,585,588],[774,2,2,588,590],[775,4,4,590,594],[776,9,8,594,602],[777,6,6,602,608],[778,8,7,608,615],[779,3,3,615,618],[780,11,10,618,628],[781,2,2,628,630],[782,1,1,630,631],[783,4,4,631,635],[784,6,5,635,640],[786,2,2,640,642],[787,3,2,642,644],[788,18,14,644,658],[789,1,1,658,659],[790,1,1,659,660],[793,1,1,660,661],[794,3,3,661,664],[795,2,2,664,666],[796,5,4,666,670]]],[24,5,5,670,675,[[797,2,2,670,672],[798,2,2,672,674],[801,1,1,674,675]]],[25,15,15,675,690,[[805,1,1,675,676],[809,2,2,676,678],[810,1,1,678,679],[822,1,1,679,680],[826,3,3,680,683],[828,1,1,683,684],[838,2,2,684,686],[849,4,4,686,690]]],[26,4,4,690,694,[[850,3,3,690,693],[858,1,1,693,694]]],[27,15,15,694,709,[[862,3,3,694,697],[865,1,1,697,698],[866,5,5,698,703],[867,2,2,703,705],[869,1,1,705,706],[871,1,1,706,707],[872,1,1,707,708],[873,1,1,708,709]]],[28,6,6,709,715,[[878,6,6,709,715]]],[29,4,4,715,719,[[879,1,1,715,716],[880,2,2,716,718],[885,1,1,718,719]]],[30,1,1,719,720,[[888,1,1,719,720]]],[32,4,4,720,724,[[893,3,3,720,723],[897,1,1,723,724]]],[33,1,1,724,725,[[900,1,1,724,725]]],[35,3,3,725,728,[[906,2,2,725,727],[907,1,1,727,728]]],[36,4,4,728,732,[[909,2,2,728,730],[910,2,2,730,732]]],[37,22,20,732,752,[[911,4,3,732,735],[912,1,1,735,736],[918,3,3,736,739],[919,2,2,739,741],[920,2,2,741,743],[921,1,1,743,744],[922,6,5,744,749],[924,3,3,749,752]]],[38,3,2,752,754,[[926,2,1,752,753],[927,1,1,753,754]]]],[830,1034,1109,1120,1121,1125,1126,1127,1130,1131,1134,1139,1141,1142,1143,1145,1293,1298,1338,1340,1342,1398,1414,1481,1482,1483,1534,2422,2561,2655,3611,3630,3631,3661,3667,3862,4002,4081,4508,4509,4511,4835,5597,5817,5841,5977,5992,5993,5994,6128,6193,6203,6214,6215,6222,6223,6265,6298,6304,6307,6322,6330,6355,6379,6385,6390,6392,6511,6512,6513,6517,6518,6519,6525,6526,6527,6528,6820,6938,6939,6940,6987,6988,6989,7005,7025,7026,7042,7072,7128,7129,7134,7202,7453,7564,7619,7670,7692,7792,7813,7833,7936,7940,7992,7994,8004,8040,8050,8053,8056,8059,8060,8089,8091,8137,8159,8270,8294,8522,8525,8526,8527,8551,8552,8553,8554,8556,8558,8559,8582,8693,8699,8701,8726,8752,8802,8864,8869,9168,9171,9172,9174,9178,9183,9185,9196,9198,9205,9239,9240,9247,9250,9256,9258,9266,9271,9272,9274,9277,9282,9291,9293,9298,9306,9312,9390,9482,9490,9509,9521,9525,9531,9550,9577,9583,9585,9590,9743,9746,9747,9749,9750,9752,9756,9772,9777,9783,9785,9806,9868,9869,9872,9881,9883,9897,9905,9906,9907,9908,9909,9911,9913,9914,9917,9918,9919,9924,9926,9931,9933,9938,9942,9948,9952,9957,9961,9962,9964,9982,9984,9996,10001,10002,10025,10029,10037,10038,10040,10046,10071,10091,10118,10130,10131,10135,10136,10144,10158,10161,10163,10166,10167,10170,10173,10176,10177,10182,10187,10189,10191,10192,10193,10204,10205,10207,10214,10222,10243,10244,10249,10307,10309,10310,10316,10386,10406,10412,10426,10430,10445,10469,10509,10511,10519,10616,10618,10619,10736,10744,10766,10939,11127,11147,11218,11375,11412,11415,11417,11419,11424,11426,11428,11431,11437,11441,11442,11449,11454,11466,11467,11468,11469,11471,11479,11480,11481,11482,11483,11487,11492,11498,11499,11505,11510,11515,11516,11520,11525,11528,11529,11530,11532,11533,11535,11536,11537,11542,11545,11551,11570,11577,11581,11587,11590,11591,11592,11600,11602,11604,11605,11607,11609,11611,11614,11618,11622,11627,11632,11634,11635,11636,11637,11641,11645,11650,11652,11654,11658,11664,11682,11683,11686,11694,11695,11700,11709,11714,11716,11717,11721,11722,11723,11725,11726,11727,11729,11730,11732,11733,11734,11759,11762,11770,11773,11774,11781,11782,11783,11789,11790,11799,11812,11828,11833,11839,11851,11852,11855,11860,11874,11876,11883,11884,11887,11898,11900,11907,11908,11917,11922,11924,11936,11938,11942,11944,11954,11957,11959,11962,11963,11984,11987,11990,11993,11997,12001,12003,12016,12018,12019,12021,12024,12028,12106,12111,12114,12116,12246,12259,12261,12275,12298,12312,12314,12369,12375,12396,12408,12418,12419,12426,12591,12592,12597,12608,12612,12613,12624,12632,12655,12656,12658,12660,12668,12683,12686,12687,12688,12730,14645,14814,14927,14970,15082,15181,15486,15750,15824,17114,17655,17686,17708,17715,17742,17746,17783,17788,17799,17815,17850,17896,17897,18021,18060,18073,18131,18331,18337,18362,18383,18399,18429,18559,18615,18906,18948,18949,18961,18964,18993,19009,19010,19012,19013,19020,19030,19031,19032,19043,19069,19078,19121,19136,19149,19153,19154,19186,19201,19223,19228,19232,19235,19236,19238,19239,19243,19263,19275,19277,19285,19295,19312,19319,19358,19376,19377,19382,19383,19395,19410,19411,19414,19420,19426,19427,19447,19451,19455,19456,19460,19465,19472,19478,19484,19490,19525,19529,19532,19535,19536,19537,19552,19573,19574,19582,19590,19591,19597,19599,19608,19614,19616,19617,19619,19622,19637,19638,19657,19670,19671,19714,19715,19718,19722,19732,19733,19734,19735,19761,19763,19766,19775,19779,19782,19785,19788,19789,19791,19803,19805,19807,19808,19820,19822,19823,19824,19836,19840,19843,19844,19845,19848,19851,19870,19871,19872,19873,19874,19875,19881,19917,19924,19927,19929,19933,19942,19946,19952,19953,19956,19990,19994,20001,20002,20012,20016,20017,20019,20021,20022,20024,20027,20031,20034,20036,20037,20038,20040,20041,20047,20161,20170,20186,20199,20217,20271,20279,20286,20303,20307,20313,20325,20334,20337,20453,20535,20605,20621,20631,20964,21086,21091,21095,21138,21413,21416,21709,21710,21724,21733,21738,21739,21743,21995,22095,22101,22105,22148,22157,22162,22164,22165,22166,22171,22178,22208,22236,22252,22254,22344,22349,22351,22361,22362,22363,22365,22383,22384,22476,22522,22580,22584,22588,22635,22699,22788,22791,22812,22841,22854,22857,22876,22890,22897,22899,22911,22989,22991,22995,23006,23012,23019,23022,23042,23047,23049,23050,23051,23052,23073,23082,23089,23114,23124]]],["+",[26,25,[[0,1,1,0,1,[[48,1,1,0,1]]],[6,8,7,1,8,[[225,1,1,1,2],[227,3,3,2,5],[229,4,3,5,8]]],[7,2,2,8,10,[[232,2,2,8,10]]],[10,2,2,10,12,[[303,2,2,10,12]]],[11,2,2,12,14,[[333,1,1,12,13],[335,1,1,13,14]]],[13,5,5,14,19,[[380,1,1,14,15],[383,1,1,15,16],[390,1,1,16,17],[391,1,1,17,18],[394,1,1,18,19]]],[15,1,1,19,20,[[413,1,1,19,20]]],[18,1,1,20,21,[[555,1,1,20,21]]],[22,2,2,21,23,[[681,1,1,21,22],[743,1,1,22,23]]],[23,1,1,23,24,[[780,1,1,23,24]]],[37,1,1,24,25,[[911,1,1,24,25]]]],[1483,6940,6987,6988,6989,7025,7026,7042,7128,7129,9185,9196,10135,10182,11480,11529,11683,11709,11783,12298,15181,17708,18906,19873,22897]]],["Jews",[1,1,[[23,1,1,0,1,[[784,1,1,0,1]]]],[19956]]],["Judah",[788,729,[[0,25,24,0,24,[[28,1,1,0,1],[34,1,1,1,2],[36,1,1,2,3],[37,13,12,3,15],[42,2,2,15,17],[43,3,3,17,20],[45,2,2,20,22],[48,2,2,22,24]]],[1,4,4,24,28,[[50,1,1,24,25],[80,1,1,25,26],[84,1,1,26,27],[87,1,1,27,28]]],[3,13,12,28,40,[[117,3,3,28,31],[118,3,2,31,33],[123,1,1,33,34],[126,1,1,34,35],[129,1,1,35,36],[142,3,3,36,39],[150,1,1,39,40]]],[4,4,3,40,43,[[179,1,1,40,41],[185,2,1,41,42],[186,1,1,42,43]]],[5,24,22,43,65,[[193,4,4,43,47],[197,1,1,47,48],[200,1,1,48,49],[201,7,6,49,55],[204,3,3,55,58],[205,4,3,58,61],[206,1,1,61,62],[207,3,3,62,65]]],[6,17,16,65,81,[[211,11,10,65,75],[220,1,1,75,76],[225,2,2,76,78],[227,1,1,78,79],[228,1,1,79,80],[230,1,1,80,81]]],[7,2,2,81,83,[[232,1,1,81,82],[235,1,1,82,83]]],[8,13,13,83,96,[[246,1,1,83,84],[250,1,1,84,85],[252,2,2,85,87],[253,1,1,87,88],[257,1,1,88,89],[258,2,2,89,91],[262,2,2,91,93],[265,3,3,93,96]]],[9,30,27,96,123,[[267,1,1,96,97],[268,6,5,97,102],[269,2,2,102,104],[271,2,1,104,105],[272,1,1,105,106],[277,1,1,106,107],[278,1,1,107,108],[285,9,8,108,116],[286,3,3,116,119],[287,1,1,119,120],[290,3,3,120,123]]],[10,40,37,123,160,[[291,2,2,123,125],[292,1,1,125,126],[294,2,2,126,128],[302,8,6,128,134],[303,2,2,134,136],[304,3,3,136,139],[305,10,9,139,148],[306,5,5,148,153],[309,1,1,153,154],[312,6,6,154,160]]],[11,93,86,160,246,[[313,1,1,160,161],[315,4,4,161,165],[320,8,7,165,172],[321,4,4,172,176],[322,1,1,176,177],[324,3,2,177,179],[325,3,3,179,182],[326,14,13,182,195],[327,10,10,195,205],[328,2,2,205,207],[329,4,4,207,211],[330,7,6,211,217],[331,2,2,217,219],[332,1,1,219,220],[333,5,4,220,224],[334,3,3,224,227],[335,12,11,227,238],[336,5,5,238,243],[337,4,3,243,246]]],[12,25,23,246,269,[[339,5,4,246,250],[341,4,4,250,254],[342,2,2,254,256],[343,4,4,256,260],[346,3,3,260,263],[349,2,2,263,265],[350,1,1,265,266],[358,1,1,266,267],[364,1,1,267,268],[365,2,1,268,269]]],[13,156,142,269,411,[[368,1,1,269,270],[375,1,1,270,271],[376,1,1,271,272],[377,9,8,272,280],[378,3,3,280,283],[379,8,6,283,289],[380,5,5,289,294],[381,4,4,294,298],[382,5,4,298,302],[383,11,9,302,311],[384,3,3,311,314],[385,3,3,314,317],[386,14,13,317,330],[387,8,7,330,337],[388,4,4,337,341],[389,3,2,341,343],[390,5,5,343,348],[391,14,13,348,361],[392,2,2,361,363],[393,2,2,363,365],[394,8,8,365,373],[395,2,2,373,375],[396,6,5,375,380],[397,5,3,380,383],[398,9,8,383,391],[399,3,3,391,394],[400,9,9,394,403],[401,4,4,403,407],[402,4,4,407,411]]],[14,13,13,411,424,[[403,4,4,411,415],[404,1,1,415,416],[405,1,1,416,417],[406,3,3,417,420],[411,1,1,420,421],[412,3,3,421,424]]],[15,27,26,424,450,[[414,2,2,424,426],[416,2,2,426,428],[417,1,1,428,429],[418,3,3,429,432],[419,1,1,432,433],[423,8,7,433,440],[424,6,6,440,446],[425,4,4,446,450]]],[16,1,1,450,451,[[427,1,1,450,451]]],[18,8,8,451,459,[[525,1,1,451,452],[537,1,1,452,453],[545,1,1,453,454],[546,1,1,454,455],[553,1,1,455,456],[574,1,1,456,457],[585,1,1,457,458],[591,1,1,458,459]]],[19,1,1,459,460,[[652,1,1,459,460]]],[22,27,24,460,484,[[679,2,1,460,461],[680,1,1,461,462],[681,1,1,462,463],[683,2,2,463,465],[685,3,3,465,468],[686,1,1,468,469],[687,1,1,469,470],[689,4,2,470,472],[697,1,1,472,473],[700,2,2,473,475],[704,1,1,475,476],[714,2,2,476,478],[715,2,2,478,480],[716,1,1,480,481],[718,1,1,481,482],[722,1,1,482,483],[726,1,1,483,484]]],[23,179,162,484,646,[[745,5,4,484,488],[746,1,1,488,489],[747,5,5,489,494],[748,4,4,494,498],[749,2,2,498,500],[751,4,4,500,504],[752,1,1,504,505],[753,2,2,505,507],[754,1,1,507,508],[755,7,7,508,515],[756,1,1,515,516],[757,3,3,516,519],[758,2,2,519,521],[759,1,1,521,522],[761,6,5,522,527],[762,1,1,527,528],[763,4,4,528,532],[764,2,2,532,534],[765,2,2,534,536],[766,7,7,536,543],[767,1,1,543,544],[768,4,3,544,547],[769,5,4,547,551],[770,7,5,551,556],[771,7,6,556,562],[772,3,2,562,564],[773,3,3,564,567],[774,2,2,567,569],[775,4,4,569,573],[776,8,7,573,580],[777,6,6,580,586],[778,8,7,586,593],[779,3,3,593,596],[780,10,9,596,605],[781,2,2,605,607],[783,4,4,607,611],[784,5,5,611,616],[786,2,2,616,618],[787,3,2,618,620],[788,18,14,620,634],[789,1,1,634,635],[790,1,1,635,636],[793,1,1,636,637],[794,3,3,637,640],[795,2,2,640,642],[796,5,4,642,646]]],[24,5,5,646,651,[[797,2,2,646,648],[798,2,2,648,650],[801,1,1,650,651]]],[25,15,15,651,666,[[805,1,1,651,652],[809,2,2,652,654],[810,1,1,654,655],[822,1,1,655,656],[826,3,3,656,659],[828,1,1,659,660],[838,2,2,660,662],[849,4,4,662,666]]],[26,4,4,666,670,[[850,3,3,666,669],[858,1,1,669,670]]],[27,15,15,670,685,[[862,3,3,670,673],[865,1,1,673,674],[866,5,5,674,679],[867,2,2,679,681],[869,1,1,681,682],[871,1,1,682,683],[872,1,1,683,684],[873,1,1,684,685]]],[28,6,6,685,691,[[878,6,6,685,691]]],[29,4,4,691,695,[[879,1,1,691,692],[880,2,2,692,694],[885,1,1,694,695]]],[30,1,1,695,696,[[888,1,1,695,696]]],[32,4,4,696,700,[[893,3,3,696,699],[897,1,1,699,700]]],[33,1,1,700,701,[[900,1,1,700,701]]],[35,3,3,701,704,[[906,2,2,701,703],[907,1,1,703,704]]],[36,4,4,704,708,[[909,2,2,704,706],[910,2,2,706,708]]],[37,21,19,708,727,[[911,3,2,708,710],[912,1,1,710,711],[918,3,3,711,714],[919,2,2,714,716],[920,2,2,716,718],[921,1,1,718,719],[922,6,5,719,724],[924,3,3,724,727]]],[38,3,2,727,729,[[926,2,1,727,728],[927,1,1,728,729]]]],[830,1034,1109,1120,1121,1125,1127,1130,1131,1134,1139,1141,1142,1143,1145,1293,1298,1338,1340,1342,1398,1414,1481,1482,1534,2422,2561,2655,3611,3630,3631,3661,3667,3862,4002,4081,4508,4509,4511,4835,5597,5817,5841,5977,5992,5993,5994,6128,6193,6203,6214,6215,6222,6223,6265,6298,6304,6307,6322,6330,6355,6379,6385,6390,6392,6511,6512,6513,6517,6518,6519,6525,6526,6527,6528,6820,6938,6939,6987,7005,7072,7134,7202,7453,7564,7619,7670,7692,7792,7813,7833,7936,7940,7992,7994,8004,8040,8050,8053,8056,8059,8060,8089,8091,8137,8159,8270,8294,8522,8525,8526,8527,8551,8552,8553,8554,8556,8558,8559,8582,8693,8699,8701,8726,8752,8802,8864,8869,9168,9171,9172,9174,9178,9183,9198,9205,9239,9240,9247,9250,9256,9258,9266,9271,9272,9274,9277,9282,9291,9293,9298,9306,9312,9390,9482,9490,9509,9521,9525,9531,9550,9577,9583,9585,9590,9743,9746,9747,9749,9750,9752,9756,9772,9777,9783,9785,9806,9868,9869,9872,9881,9883,9897,9905,9906,9907,9908,9909,9911,9913,9914,9917,9918,9919,9924,9926,9931,9933,9938,9942,9948,9952,9957,9961,9962,9964,9982,9984,9996,10001,10002,10025,10029,10037,10038,10040,10046,10071,10091,10118,10130,10131,10136,10144,10158,10161,10163,10166,10167,10170,10173,10176,10177,10187,10189,10191,10192,10193,10204,10205,10207,10214,10222,10243,10244,10249,10307,10309,10310,10316,10386,10406,10412,10426,10430,10445,10469,10509,10511,10519,10616,10618,10619,10736,10744,10766,10939,11127,11147,11218,11375,11412,11415,11417,11419,11424,11426,11428,11431,11437,11441,11442,11449,11454,11466,11467,11468,11469,11471,11479,11481,11482,11483,11487,11492,11498,11499,11505,11510,11515,11516,11520,11525,11528,11530,11532,11533,11535,11536,11537,11542,11545,11551,11570,11577,11581,11587,11590,11591,11592,11600,11602,11604,11605,11607,11609,11611,11614,11618,11622,11627,11632,11634,11635,11636,11637,11641,11645,11650,11652,11654,11658,11664,11682,11686,11694,11695,11700,11709,11714,11716,11717,11721,11722,11723,11725,11726,11727,11729,11730,11732,11733,11734,11759,11762,11770,11773,11774,11781,11782,11783,11789,11790,11799,11812,11828,11833,11839,11851,11852,11855,11860,11874,11876,11883,11884,11887,11898,11900,11907,11908,11917,11922,11924,11936,11938,11942,11944,11954,11957,11959,11962,11963,11984,11987,11990,11993,11997,12001,12003,12016,12018,12019,12021,12024,12028,12106,12111,12114,12116,12246,12259,12261,12275,12312,12314,12369,12375,12396,12408,12418,12419,12426,12591,12592,12597,12608,12612,12613,12624,12632,12655,12656,12658,12660,12668,12683,12686,12687,12688,12730,14645,14814,14927,14970,15082,15486,15750,15824,17114,17655,17686,17715,17742,17746,17783,17788,17799,17815,17850,17896,17897,18021,18060,18073,18131,18331,18337,18362,18383,18399,18429,18559,18615,18948,18949,18961,18964,18993,19009,19010,19012,19013,19020,19030,19031,19032,19043,19069,19078,19121,19136,19149,19153,19154,19186,19201,19223,19228,19232,19235,19236,19238,19239,19243,19263,19275,19277,19285,19295,19312,19319,19358,19376,19377,19382,19383,19395,19410,19411,19414,19420,19426,19427,19447,19451,19455,19456,19460,19465,19472,19478,19484,19490,19525,19529,19532,19535,19536,19537,19552,19573,19574,19582,19590,19591,19597,19599,19608,19614,19616,19617,19619,19622,19637,19638,19657,19670,19671,19714,19715,19718,19722,19732,19734,19735,19761,19763,19766,19775,19779,19782,19785,19788,19789,19791,19803,19805,19807,19808,19820,19822,19823,19824,19836,19840,19843,19844,19845,19848,19851,19870,19871,19872,19874,19875,19881,19924,19927,19929,19933,19942,19946,19952,19953,19956,19990,19994,20001,20002,20012,20016,20017,20019,20021,20022,20024,20027,20031,20034,20036,20037,20038,20040,20041,20047,20161,20170,20186,20199,20217,20271,20279,20286,20303,20307,20313,20325,20334,20337,20453,20535,20605,20621,20631,20964,21086,21091,21095,21138,21413,21416,21709,21710,21724,21733,21738,21739,21743,21995,22095,22101,22105,22148,22157,22162,22164,22165,22166,22171,22178,22208,22236,22252,22254,22344,22349,22351,22361,22362,22363,22365,22383,22384,22476,22522,22580,22584,22588,22635,22699,22788,22791,22812,22841,22854,22857,22876,22890,22899,22911,22989,22991,22995,23006,23012,23019,23022,23042,23047,23049,23050,23051,23052,23073,23082,23089,23114,23124]]],["Judah's",[4,4,[[0,2,2,0,2,[[37,2,2,0,2]]],[23,2,2,2,4,[[776,1,1,2,3],[782,1,1,3,4]]]],[1126,1131,19733,19917]]]]},{"k":"H3064","v":[["*",[75,69,[[11,2,2,0,2,[[328,1,1,0,1],[337,1,1,1,2]]],[15,10,10,2,12,[[413,1,1,2,3],[414,1,1,3,4],[416,3,3,4,7],[417,3,3,7,10],[418,1,1,10,11],[425,1,1,11,12]]],[16,52,46,12,58,[[427,1,1,12,13],[428,4,4,13,17],[429,5,5,17,22],[430,1,1,22,23],[431,2,2,23,25],[433,13,10,25,35],[434,24,22,35,57],[435,2,1,57,58]]],[23,10,10,58,68,[[776,1,1,58,59],[778,1,1,59,60],[782,1,1,60,61],[784,2,2,61,63],[785,1,1,63,64],[787,1,1,64,65],[788,1,1,65,66],[796,2,2,66,68]]],[37,1,1,68,69,[[918,1,1,68,69]]]],[9969,10247,12298,12323,12360,12361,12371,12383,12390,12399,12407,12694,12729,12751,12753,12757,12760,12765,12769,12775,12776,12778,12792,12803,12806,12818,12820,12822,12824,12825,12826,12828,12830,12833,12834,12835,12836,12837,12839,12840,12844,12846,12847,12849,12850,12852,12853,12854,12856,12857,12858,12859,12861,12862,12863,12864,12865,12869,19743,19810,19914,19952,19953,19960,20006,20011,20304,20306,22999]]],["Jew",[10,10,[[16,8,8,0,8,[[427,1,1,0,1],[428,1,1,1,2],[430,1,1,2,3],[431,1,1,3,4],[433,1,1,4,5],[434,2,2,5,7],[435,1,1,7,8]]],[23,1,1,8,9,[[778,1,1,8,9]]],[37,1,1,9,10,[[918,1,1,9,10]]]],[12729,12751,12792,12803,12824,12863,12865,12869,19810,22999]]],["Jews",[62,58,[[11,2,2,0,2,[[328,1,1,0,1],[337,1,1,1,2]]],[15,10,10,2,12,[[413,1,1,2,3],[414,1,1,3,4],[416,3,3,4,7],[417,3,3,7,10],[418,1,1,10,11],[425,1,1,11,12]]],[16,42,38,12,50,[[428,2,2,12,14],[429,5,5,14,19],[431,1,1,19,20],[433,11,9,20,29],[434,22,20,29,49],[435,1,1,49,50]]],[23,8,8,50,58,[[776,1,1,50,51],[782,1,1,51,52],[784,2,2,52,54],[785,1,1,54,55],[788,1,1,55,56],[796,2,2,56,58]]]],[9969,10247,12298,12323,12360,12361,12371,12383,12390,12399,12407,12694,12753,12760,12765,12769,12775,12776,12778,12806,12820,12822,12824,12825,12826,12828,12830,12833,12834,12835,12836,12837,12839,12840,12844,12846,12847,12849,12850,12852,12853,12854,12856,12857,12858,12859,12861,12862,12864,12869,19743,19914,19952,19953,19960,20011,20304,20306]]],["Jews'",[2,2,[[16,2,2,0,2,[[428,1,1,0,1],[433,1,1,1,2]]]],[12757,12818]]],["Judah",[1,1,[[23,1,1,0,1,[[787,1,1,0,1]]]],[20006]]]]},{"k":"H3065","v":[["Jehudi",[4,3,[[23,4,3,0,3,[[780,4,3,0,3]]]],[19856,19863,19865]]]]},{"k":"H3066","v":[["*",[6,6,[[11,2,2,0,2,[[330,2,2,0,2]]],[13,1,1,2,3,[[398,1,1,2,3]]],[15,1,1,3,4,[[425,1,1,3,4]]],[22,2,2,4,6,[[714,2,2,4,6]]]],[10050,10052,11893,12695,18341,18343]]],["language",[5,5,[[11,2,2,0,2,[[330,2,2,0,2]]],[15,1,1,2,3,[[425,1,1,2,3]]],[22,2,2,3,5,[[714,2,2,3,5]]]],[10050,10052,12695,18341,18343]]],["speech",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11893]]]]},{"k":"H3067","v":[["Judith",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[726]]]]},{"k":"H3068","v":[["*",[6515,5523,[[0,162,141,0,141,[[1,11,11,0,11],[2,9,8,11,19],[3,10,9,19,28],[4,1,1,28,29],[5,5,5,29,34],[6,3,3,34,37],[7,3,2,37,39],[8,1,1,39,40],[9,2,1,40,41],[10,5,4,41,45],[11,7,5,45,50],[12,6,5,50,55],[13,1,1,55,56],[14,5,5,56,61],[15,8,7,61,68],[16,1,1,68,69],[17,10,9,69,78],[18,7,5,78,83],[19,1,1,83,84],[20,3,2,84,86],[21,4,4,86,90],[23,19,17,90,107],[24,4,3,107,110],[25,7,7,110,117],[26,3,3,117,120],[27,4,3,120,123],[28,4,4,123,127],[29,3,3,127,130],[30,2,2,130,132],[31,1,1,132,133],[37,3,2,133,135],[38,8,5,135,140],[48,1,1,140,141]]],[1,397,341,141,482,[[52,7,6,141,147],[53,17,16,147,163],[54,7,6,163,169],[55,14,13,169,182],[56,14,13,182,195],[57,22,18,195,213],[58,24,18,213,231],[59,21,20,231,251],[60,6,6,251,257],[61,19,17,257,274],[62,15,12,274,286],[63,17,15,286,301],[64,16,11,301,312],[65,22,18,312,330],[66,8,7,330,337],[67,6,5,337,342],[68,18,12,342,354],[69,9,7,354,361],[71,2,2,361,363],[72,3,3,363,366],[73,11,10,366,376],[74,1,1,376,377],[76,1,1,377,378],[77,7,6,378,384],[78,13,10,384,394],[79,13,13,394,407],[80,5,5,407,412],[81,13,12,412,424],[82,8,8,424,432],[83,16,13,432,445],[84,12,10,445,455],[85,4,3,455,458],[87,1,1,458,459],[88,11,11,459,470],[89,14,12,470,482]]],[2,311,281,482,763,[[90,9,9,482,491],[91,11,10,491,501],[92,10,10,501,511],[93,17,15,511,526],[94,8,7,526,533],[95,14,14,533,547],[96,17,13,547,560],[97,16,14,560,574],[98,11,9,574,583],[99,15,12,583,595],[100,3,3,595,598],[101,2,2,598,600],[102,1,1,600,601],[103,11,11,601,612],[104,4,4,612,616],[105,12,11,616,627],[106,9,6,627,633],[107,7,7,633,640],[108,22,22,640,662],[109,5,5,662,667],[110,8,8,667,675],[111,21,19,675,694],[112,36,31,694,725],[113,12,12,725,737],[114,6,6,737,743],[115,6,6,743,749],[116,18,14,749,763]]],[3,396,350,763,1113,[[117,4,4,763,767],[118,3,3,767,770],[119,16,14,770,784],[120,8,7,784,791],[121,12,11,791,802],[122,15,15,802,817],[123,3,3,817,820],[124,13,12,820,832],[125,17,12,832,844],[126,12,10,844,854],[127,20,14,854,868],[128,9,8,868,876],[129,2,2,876,878],[130,23,20,878,898],[131,28,24,898,922],[132,26,22,922,944],[133,6,6,944,950],[134,16,14,950,964],[135,4,4,964,968],[136,10,10,968,978],[137,9,8,978,986],[138,16,15,986,1001],[139,8,8,1001,1009],[140,5,4,1009,1013],[141,6,4,1013,1017],[142,6,6,1017,1023],[143,12,12,1023,1035],[144,13,13,1035,1048],[145,8,8,1048,1056],[146,7,7,1056,1063],[147,23,19,1063,1082],[148,18,15,1082,1097],[149,5,4,1097,1101],[150,4,4,1101,1105],[151,3,3,1105,1108],[152,6,5,1108,1113]]],[4,548,438,1113,1551,[[153,24,21,1113,1134],[154,16,15,1134,1149],[155,11,8,1149,1157],[156,29,24,1157,1181],[157,24,18,1181,1199],[158,22,18,1199,1217],[159,20,17,1217,1234],[160,13,12,1234,1246],[161,33,21,1246,1267],[162,21,14,1267,1281],[163,18,16,1281,1297],[164,26,19,1297,1316],[165,11,8,1316,1324],[166,11,8,1324,1332],[167,15,13,1332,1345],[168,22,15,1345,1360],[169,11,9,1360,1369],[170,19,14,1369,1383],[171,9,8,1383,1391],[172,7,7,1391,1398],[173,7,6,1398,1404],[174,1,1,1404,1405],[175,16,10,1405,1415],[176,7,6,1415,1421],[177,4,3,1421,1424],[178,20,15,1424,1439],[179,10,8,1439,1447],[180,40,34,1447,1481],[181,20,17,1481,1498],[182,18,12,1498,1510],[183,19,18,1510,1528],[184,9,9,1528,1537],[185,8,8,1537,1545],[186,7,6,1545,1551]]],[5,223,169,1551,1720,[[187,10,6,1551,1557],[188,6,6,1557,1563],[189,6,6,1563,1569],[190,14,12,1569,1581],[191,8,6,1581,1587],[192,16,13,1587,1600],[193,13,11,1600,1611],[194,10,8,1611,1619],[195,6,6,1619,1625],[196,13,11,1625,1636],[197,9,7,1636,1643],[198,2,1,1643,1644],[199,4,4,1644,1648],[200,12,9,1648,1657],[201,1,1,1657,1658],[203,3,2,1658,1660],[204,6,5,1660,1665],[205,2,2,1665,1667],[206,1,1,1667,1668],[207,7,6,1668,1674],[208,36,18,1674,1692],[209,17,11,1692,1703],[210,21,17,1703,1720]]],[6,172,137,1720,1857,[[211,5,5,1720,1725],[212,23,17,1725,1742],[213,15,9,1742,1751],[214,8,7,1751,1758],[215,14,9,1758,1767],[216,25,18,1767,1785],[217,9,9,1785,1794],[218,4,4,1794,1798],[220,7,6,1798,1804],[221,14,13,1804,1817],[222,1,1,1817,1818],[223,18,14,1818,1832],[224,3,3,1832,1835],[225,2,2,1835,1837],[226,2,2,1837,1839],[227,3,3,1839,1842],[228,1,1,1842,1843],[229,1,1,1843,1844],[230,10,7,1844,1851],[231,7,6,1851,1857]]],[7,18,15,1857,1872,[[232,7,6,1857,1863],[233,5,3,1863,1866],[234,2,2,1866,1868],[235,4,4,1868,1872]]],[8,320,240,1872,2112,[[236,23,18,1872,1890],[237,25,18,1890,1908],[238,19,14,1908,1922],[239,5,4,1922,1926],[240,4,4,1926,1930],[241,13,11,1930,1941],[242,17,12,1941,1953],[243,6,6,1953,1959],[244,2,2,1959,1961],[245,9,8,1961,1969],[246,4,3,1969,1972],[247,32,20,1972,1992],[248,6,3,1992,1995],[249,13,11,1995,2006],[250,28,22,2006,2028],[251,16,13,2028,2041],[252,6,4,2041,2045],[253,4,4,2045,2049],[254,3,3,2049,2052],[255,13,11,2052,2063],[256,2,2,2063,2065],[257,4,3,2065,2068],[258,10,7,2068,2075],[259,12,8,2075,2083],[260,12,9,2083,2092],[261,16,9,2092,2101],[263,11,6,2101,2107],[264,1,1,2107,2108],[265,4,4,2108,2112]]],[9,145,124,2112,2236,[[267,3,3,2112,2115],[268,4,3,2115,2118],[269,4,4,2118,2122],[270,2,2,2122,2124],[271,10,9,2124,2133],[272,21,15,2133,2148],[273,11,11,2148,2159],[274,3,3,2159,2162],[276,1,1,2162,2163],[277,1,1,2163,2164],[278,13,12,2164,2176],[280,3,2,2176,2178],[281,6,5,2178,2183],[282,7,5,2183,2188],[283,2,1,2188,2189],[284,3,3,2189,2192],[285,2,2,2192,2194],[286,1,1,2194,2195],[287,7,5,2195,2200],[288,18,16,2200,2216],[289,5,5,2216,2221],[290,18,15,2221,2236]]],[10,257,212,2236,2448,[[291,6,6,2236,2242],[292,18,17,2242,2259],[293,5,5,2259,2264],[295,7,5,2264,2269],[296,5,5,2269,2274],[297,6,5,2274,2279],[298,36,29,2279,2308],[299,10,8,2308,2316],[300,5,4,2316,2320],[301,10,8,2320,2328],[302,6,3,2328,2331],[303,18,12,2331,2343],[304,13,12,2343,2355],[305,11,11,2355,2366],[306,11,10,2366,2376],[307,14,11,2376,2387],[308,23,19,2387,2406],[309,12,8,2406,2414],[310,9,6,2414,2420],[311,9,8,2420,2428],[312,23,20,2428,2448]]],[11,277,227,2448,2675,[[313,6,6,2448,2454],[314,13,10,2454,2464],[315,11,10,2464,2474],[316,6,6,2474,2480],[317,7,6,2480,2486],[318,8,5,2486,2491],[319,5,4,2491,2495],[320,7,7,2495,2502],[321,10,7,2502,2509],[322,9,7,2509,2516],[323,11,9,2516,2525],[324,14,10,2525,2535],[325,8,7,2535,2542],[326,7,7,2542,2549],[327,10,10,2549,2559],[328,6,5,2559,2564],[329,28,25,2564,2589],[330,16,12,2589,2601],[331,19,14,2601,2615],[332,14,11,2615,2626],[333,14,11,2626,2637],[334,15,11,2637,2648],[335,19,17,2648,2665],[336,10,7,2665,2672],[337,4,3,2672,2675]]],[12,174,144,2675,2819,[[339,1,1,2675,2676],[343,3,3,2676,2679],[346,3,3,2679,2682],[347,3,2,2682,2684],[348,7,6,2684,2690],[349,1,1,2690,2691],[350,5,5,2691,2696],[351,3,3,2696,2699],[352,10,10,2699,2709],[353,25,20,2709,2729],[354,14,13,2729,2742],[355,3,3,2742,2745],[356,1,1,2745,2746],[358,23,19,2746,2765],[359,18,12,2765,2777],[360,10,9,2777,2786],[361,2,1,2786,2787],[362,3,3,2787,2790],[363,4,4,2790,2794],[364,1,1,2794,2795],[365,15,11,2795,2806],[366,19,13,2806,2819]]],[13,384,307,2819,3126,[[367,5,5,2819,2824],[368,6,4,2824,2828],[369,1,1,2828,2829],[370,1,1,2829,2830],[371,8,6,2830,2836],[372,16,13,2836,2849],[373,16,11,2849,2860],[374,6,4,2860,2864],[375,4,3,2864,2867],[376,1,1,2867,2868],[377,6,4,2868,2872],[378,11,10,2872,2882],[379,11,9,2882,2891],[380,11,8,2891,2899],[381,10,9,2899,2908],[382,5,5,2908,2913],[383,6,6,2913,2919],[384,18,15,2919,2934],[385,11,8,2934,2942],[386,23,19,2942,2961],[387,7,7,2961,2968],[388,3,3,2968,2971],[389,12,9,2971,2980],[390,19,14,2980,2994],[391,6,6,2994,3000],[392,10,8,3000,3008],[393,4,3,3008,3011],[394,15,13,3011,3024],[395,27,20,3024,3044],[396,19,14,3044,3058],[397,11,10,3058,3068],[398,9,9,3068,3077],[399,19,15,3077,3092],[400,22,14,3092,3106],[401,9,7,3106,3113],[402,16,13,3113,3126]]],[14,37,28,3126,3154,[[403,6,5,3126,3131],[404,1,1,3131,3132],[405,11,6,3132,3138],[406,2,2,3138,3140],[408,2,2,3140,3142],[409,7,5,3142,3147],[410,4,3,3147,3150],[411,3,3,3150,3153],[412,1,1,3153,3154]]],[15,17,15,3154,3169,[[413,1,1,3154,3155],[417,1,1,3155,3156],[420,6,5,3156,3161],[421,6,5,3161,3166],[422,3,3,3166,3169]]],[17,32,23,3169,3192,[[436,10,6,3169,3175],[437,8,6,3175,3181],[447,1,1,3181,3182],[473,1,1,3182,3183],[475,3,3,3183,3186],[477,9,6,3186,3192]]],[18,681,623,3192,3815,[[478,2,2,3192,3194],[479,3,3,3194,3197],[480,6,6,3197,3203],[481,5,4,3203,3207],[482,5,5,3207,3212],[483,8,6,3212,3218],[484,7,5,3218,3223],[485,2,2,3223,3225],[486,9,9,3225,3234],[487,5,5,3234,3239],[488,5,4,3239,3243],[489,5,5,3243,3248],[490,3,3,3248,3251],[491,4,4,3251,3255],[492,2,2,3255,3257],[493,4,4,3257,3261],[494,3,3,3261,3264],[495,16,16,3264,3280],[496,7,4,3280,3284],[497,5,5,3284,3289],[498,4,4,3289,3293],[499,6,6,3293,3299],[500,2,2,3299,3301],[501,6,5,3301,3306],[502,10,10,3306,3316],[503,6,5,3316,3321],[504,13,9,3321,3330],[505,5,5,3330,3335],[506,18,10,3335,3345],[507,9,8,3345,3353],[508,10,9,3353,3362],[509,4,4,3362,3366],[510,13,13,3366,3379],[511,16,16,3379,3395],[512,8,8,3395,3403],[513,2,2,3403,3405],[514,15,15,3405,3420],[515,3,3,3420,3423],[516,2,2,3423,3425],[517,9,8,3425,3433],[518,6,6,3433,3439],[519,1,1,3439,3440],[523,3,3,3440,3443],[524,2,2,3443,3445],[525,2,2,3445,3447],[527,1,1,3447,3448],[531,1,1,3448,3449],[532,2,2,3449,3451],[533,1,1,3451,3452],[535,1,1,3452,3453],[536,3,3,3453,3456],[541,1,1,3456,3457],[545,2,2,3457,3459],[546,4,4,3459,3463],[547,2,2,3463,3465],[548,1,1,3465,3466],[549,1,1,3466,3467],[551,1,1,3467,3468],[552,1,1,3468,3469],[553,1,1,3469,3470],[555,2,2,3470,3472],[556,1,1,3472,3473],[557,2,2,3473,3475],[558,2,2,3475,3477],[560,2,2,3477,3479],[561,7,6,3479,3485],[562,4,4,3485,3489],[563,4,4,3489,3493],[564,2,2,3493,3495],[565,4,4,3495,3499],[566,10,9,3499,3508],[567,1,1,3508,3509],[568,2,2,3509,3511],[569,7,7,3511,3518],[570,5,4,3518,3522],[571,9,9,3522,3531],[572,3,3,3531,3534],[573,11,9,3534,3543],[574,6,6,3543,3549],[575,6,6,3549,3555],[576,7,6,3555,3561],[577,4,4,3561,3565],[578,2,2,3565,3567],[579,7,7,3567,3574],[580,11,10,3574,3584],[581,9,7,3584,3591],[582,5,5,3591,3596],[583,9,9,3596,3605],[584,12,12,3605,3617],[585,1,1,3617,3618],[586,6,6,3618,3624],[587,3,3,3624,3627],[588,4,4,3627,3631],[589,2,2,3631,3633],[590,6,5,3633,3638],[592,10,9,3638,3647],[593,15,14,3647,3661],[594,2,2,3661,3663],[595,22,19,3663,3682],[596,24,24,3682,3706],[597,2,2,3706,3708],[598,5,4,3708,3712],[599,3,3,3712,3715],[600,2,2,3715,3717],[601,4,4,3717,3721],[602,4,4,3721,3725],[603,4,4,3725,3729],[604,3,2,3729,3731],[605,3,3,3731,3734],[606,3,2,3734,3736],[607,4,3,3736,3739],[608,2,2,3739,3741],[609,6,6,3741,3747],[610,1,1,3747,3748],[611,5,3,3748,3751],[612,15,10,3751,3761],[613,1,1,3761,3762],[614,2,2,3762,3764],[615,6,4,3764,3768],[616,3,3,3768,3771],[617,6,5,3771,3776],[618,2,2,3776,3778],[619,3,2,3778,3780],[620,4,4,3780,3784],[621,4,4,3784,3788],[622,9,9,3788,3797],[623,9,7,3797,3804],[624,5,5,3804,3809],[625,4,4,3809,3813],[626,2,2,3813,3815]]],[19,87,87,3815,3902,[[628,2,2,3815,3817],[629,2,2,3817,3819],[630,9,9,3819,3828],[632,1,1,3828,3829],[633,1,1,3829,3830],[635,3,3,3830,3833],[636,1,1,3833,3834],[637,4,4,3834,3838],[638,2,2,3838,3840],[639,2,2,3840,3842],[641,3,3,3842,3845],[642,9,9,3845,3854],[643,11,11,3854,3865],[644,2,2,3865,3867],[645,2,2,3867,3869],[646,5,5,3869,3874],[647,6,6,3874,3880],[648,5,5,3880,3885],[649,6,6,3885,3891],[650,1,1,3891,3892],[651,2,2,3892,3894],[652,1,1,3894,3895],[655,2,2,3895,3897],[656,3,3,3897,3900],[657,1,1,3900,3901],[658,1,1,3901,3902]]],[22,426,373,3902,4275,[[679,9,9,3902,3911],[680,10,9,3911,3920],[681,7,7,3920,3927],[682,2,2,3927,3929],[683,6,6,3929,3935],[684,3,3,3935,3938],[685,6,6,3938,3944],[686,8,7,3944,3951],[687,5,5,3951,3956],[688,4,4,3956,3960],[689,5,4,3960,3964],[690,4,4,3964,3968],[691,5,5,3968,3973],[692,10,9,3973,3982],[694,2,2,3982,3984],[695,2,2,3984,3986],[696,3,2,3986,3988],[697,17,12,3988,4000],[698,2,2,4000,4002],[699,2,2,4002,4004],[700,4,3,4004,4007],[701,5,4,4007,4011],[702,7,6,4011,4017],[703,5,5,4017,4022],[704,11,10,4022,4032],[705,4,4,4032,4036],[706,5,5,4036,4041],[707,5,5,4041,4046],[708,11,10,4046,4056],[709,6,5,4056,4061],[710,1,1,4061,4062],[711,8,6,4062,4068],[712,5,4,4068,4072],[713,2,2,4072,4074],[714,7,5,4074,4079],[715,19,15,4079,4094],[716,10,8,4094,4102],[717,3,3,4102,4105],[718,9,8,4105,4113],[719,7,7,4113,4120],[720,9,9,4120,4129],[721,8,8,4129,4137],[722,9,5,4137,4142],[723,16,15,4142,4157],[725,1,1,4157,4158],[726,7,6,4158,4164],[727,13,11,4164,4175],[728,3,2,4175,4177],[729,11,9,4177,4186],[730,8,7,4186,4193],[731,4,3,4193,4196],[732,8,7,4196,4203],[733,5,5,4203,4208],[734,6,4,4208,4212],[735,1,1,4212,4213],[736,7,6,4213,4219],[737,8,6,4219,4225],[738,9,9,4225,4234],[739,7,7,4234,4241],[740,8,8,4241,4249],[741,6,4,4249,4253],[742,3,3,4253,4256],[743,5,5,4256,4261],[744,18,14,4261,4275]]],[23,712,614,4275,4889,[[745,12,11,4275,4286],[746,15,14,4286,4300],[747,19,14,4300,4314],[748,9,9,4314,4323],[749,15,15,4323,4338],[750,10,10,4338,4348],[751,16,12,4348,4360],[752,12,11,4360,4371],[753,14,13,4371,4384],[754,9,9,4384,4393],[755,13,12,4393,4405],[756,7,7,4405,4412],[757,15,15,4412,4427],[758,10,9,4427,4436],[759,10,10,4436,4446],[760,14,11,4446,4457],[761,14,11,4457,4468],[762,7,7,4468,4475],[763,9,7,4475,4482],[764,11,10,4482,4492],[765,11,10,4492,4502],[766,13,13,4502,4515],[767,41,29,4515,4544],[768,7,6,4544,4550],[769,20,18,4550,4568],[770,21,14,4568,4582],[771,16,12,4582,4594],[772,16,13,4594,4607],[773,25,20,4607,4627],[774,16,15,4627,4642],[775,34,27,4642,4669],[776,17,16,4669,4685],[777,20,15,4685,4700],[778,13,9,4700,4709],[779,9,8,4709,4717],[780,17,13,4717,4730],[781,6,6,4730,4736],[782,7,7,4736,4743],[783,4,4,4743,4747],[784,4,3,4747,4750],[785,1,1,4750,4751],[786,20,14,4751,4765],[787,7,6,4765,4771],[788,14,12,4771,4783],[789,4,4,4783,4787],[790,9,9,4787,4796],[791,5,5,4796,4801],[792,15,15,4801,4816],[793,21,20,4816,4836],[794,23,21,4836,4857],[795,29,27,4857,4884],[796,6,5,4884,4889]]],[24,32,32,4889,4921,[[797,7,7,4889,4896],[798,7,7,4896,4903],[799,12,12,4903,4915],[800,3,3,4915,4918],[801,3,3,4918,4921]]],[25,217,200,4921,5121,[[802,3,2,4921,4923],[804,5,5,4923,4928],[805,1,1,4928,4929],[806,3,3,4929,4932],[807,5,5,4932,4937],[808,5,5,4937,4942],[809,6,3,4942,4945],[810,3,2,4945,4947],[811,4,3,4947,4950],[812,9,8,4950,4958],[813,9,9,4958,4967],[814,9,8,4967,4975],[815,6,6,4975,4981],[816,2,2,4981,4983],[817,4,4,4983,4987],[818,5,4,4987,4991],[819,1,1,4991,4992],[821,14,14,4992,5006],[822,7,7,5006,5013],[823,7,7,5013,5020],[824,2,2,5020,5022],[825,5,5,5022,5027],[826,5,5,5027,5032],[827,3,3,5032,5035],[828,1,1,5035,5036],[829,6,6,5036,5042],[830,5,5,5042,5047],[831,9,9,5047,5056],[832,1,1,5056,5057],[833,3,3,5057,5060],[834,5,5,5060,5065],[835,7,6,5065,5071],[836,6,6,5071,5077],[837,8,7,5077,5084],[838,9,7,5084,5091],[839,2,2,5091,5093],[840,4,4,5093,5097],[841,2,2,5097,5099],[842,1,1,5099,5100],[843,1,1,5100,5101],[844,4,3,5101,5104],[845,7,4,5104,5108],[846,3,3,5108,5111],[847,6,6,5111,5117],[849,4,4,5117,5121]]],[26,8,7,5121,5128,[[858,8,7,5121,5128]]],[27,46,39,5128,5167,[[862,6,4,5128,5132],[863,4,4,5132,5136],[864,4,2,5136,5138],[865,5,4,5138,5142],[866,3,3,5142,5145],[867,2,2,5145,5147],[868,1,1,5147,5148],[869,2,2,5148,5150],[870,5,4,5150,5154],[871,2,2,5154,5156],[872,2,2,5156,5158],[873,5,4,5158,5162],[874,2,2,5162,5164],[875,3,3,5164,5167]]],[28,33,26,5167,5193,[[876,7,5,5167,5172],[877,18,14,5172,5186],[878,8,7,5186,5193]]],[29,60,56,5193,5249,[[879,8,8,5193,5201],[880,7,6,5201,5207],[881,5,5,5207,5212],[882,7,7,5212,5219],[883,11,10,5219,5229],[884,4,4,5229,5233],[885,8,6,5233,5239],[886,4,4,5239,5243],[887,6,6,5243,5249]]],[30,6,6,5249,5255,[[888,6,6,5249,5255]]],[31,26,21,5255,5276,[[889,12,8,5255,5263],[890,6,6,5263,5269],[891,2,2,5269,5271],[892,6,5,5271,5276]]],[32,39,35,5276,5311,[[893,3,3,5276,5279],[894,4,4,5279,5283],[895,5,4,5283,5287],[896,10,9,5287,5296],[897,4,3,5296,5299],[898,8,7,5299,5306],[899,5,5,5306,5311]]],[33,13,10,5311,5321,[[900,10,7,5311,5318],[901,2,2,5318,5320],[902,1,1,5320,5321]]],[34,13,11,5321,5332,[[903,3,2,5321,5323],[904,5,5,5323,5328],[905,5,4,5328,5332]]],[35,33,27,5332,5359,[[906,15,12,5332,5344],[907,9,7,5344,5351],[908,9,8,5351,5359]]],[36,35,24,5359,5383,[[909,16,10,5359,5369],[910,19,14,5369,5383]]],[37,132,102,5383,5485,[[911,20,14,5383,5397],[912,10,8,5397,5405],[913,9,7,5405,5412],[914,5,4,5412,5416],[915,1,1,5416,5417],[916,8,5,5417,5422],[917,10,9,5422,5431],[918,22,16,5431,5447],[919,5,4,5447,5451],[920,8,6,5451,5457],[921,7,6,5457,5463],[922,7,5,5463,5468],[923,5,5,5468,5473],[924,15,12,5473,5485]]],[38,46,38,5485,5523,[[925,15,12,5485,5497],[926,13,10,5497,5507],[927,15,13,5507,5520],[928,3,3,5520,5523]]]],[34,35,37,38,39,45,46,48,49,51,52,56,63,64,68,69,76,77,78,80,82,83,85,88,92,94,95,105,134,140,142,143,144,145,160,164,175,203,204,231,243,271,272,274,275,299,302,305,306,315,322,328,331,332,336,358,361,364,366,367,378,383,386,388,390,391,392,394,398,425,437,438,441,443,444,446,450,457,470,471,473,481,484,513,514,546,558,561,562,563,592,594,598,603,612,617,618,622,626,631,633,635,639,641,642,643,647,679,680,681,694,704,714,716,717,720,721,734,747,754,786,789,794,826,827,828,830,854,857,860,876,922,937,1126,1129,1151,1152,1154,1170,1172,1491,1581,1583,1586,1594,1595,1597,1602,1603,1605,1606,1607,1611,1612,1615,1620,1622,1623,1625,1628,1629,1631,1632,1633,1634,1635,1649,1653,1654,1656,1657,1658,1661,1662,1663,1665,1667,1668,1681,1683,1684,1685,1686,1690,1691,1693,1695,1698,1699,1701,1702,1704,1705,1707,1710,1711,1715,1718,1720,1722,1723,1725,1726,1729,1730,1732,1734,1736,1737,1738,1739,1740,1741,1743,1745,1746,1747,1748,1750,1754,1755,1762,1763,1764,1765,1769,1770,1771,1772,1775,1777,1778,1779,1780,1784,1785,1786,1787,1788,1789,1790,1793,1794,1795,1796,1797,1798,1801,1802,1803,1804,1807,1809,1810,1813,1815,1816,1817,1827,1828,1830,1839,1841,1843,1844,1845,1847,1852,1857,1858,1859,1864,1866,1867,1868,1870,1872,1873,1875,1876,1878,1879,1881,1882,1883,1888,1890,1893,1897,1899,1902,1903,1904,1907,1910,1913,1914,1915,1916,1919,1920,1921,1923,1926,1931,1936,1937,1938,1939,1941,1945,1946,1950,1951,1953,1954,1955,1956,1957,1958,1959,1962,1963,1970,1972,1975,1976,1979,1980,1981,1984,1985,1987,1988,1990,1997,1999,2000,2007,2008,2009,2010,2029,2033,2034,2035,2036,2037,2044,2046,2047,2048,2049,2050,2053,2056,2058,2061,2062,2063,2073,2124,2133,2161,2163,2169,2178,2179,2180,2181,2182,2184,2185,2189,2193,2194,2196,2293,2305,2322,2323,2328,2329,2331,2347,2354,2359,2360,2361,2362,2364,2377,2378,2382,2390,2392,2393,2394,2395,2396,2397,2398,2399,2402,2404,2416,2419,2421,2432,2433,2435,2437,2443,2445,2447,2449,2452,2464,2465,2467,2468,2469,2471,2473,2474,2478,2480,2484,2485,2490,2492,2494,2497,2500,2501,2502,2506,2510,2519,2520,2522,2523,2524,2528,2530,2532,2533,2535,2536,2541,2552,2553,2555,2560,2561,2567,2568,2571,2655,2665,2669,2671,2685,2690,2693,2694,2695,2696,2706,2707,2708,2723,2726,2728,2730,2732,2734,2736,2739,2741,2742,2745,2746,2747,2748,2750,2754,2756,2758,2759,2762,2763,2764,2765,2770,2771,2772,2773,2774,2776,2778,2779,2781,2783,2784,2785,2787,2789,2790,2792,2794,2796,2797,2798,2799,2801,2802,2808,2810,2812,2813,2817,2819,2822,2826,2830,2836,2837,2842,2844,2845,2847,2849,2850,2851,2855,2856,2857,2863,2864,2867,2868,2869,2870,2871,2873,2874,2884,2890,2893,2899,2900,2901,2904,2907,2908,2909,2914,2915,2917,2918,2921,2922,2926,2930,2934,2938,2943,2944,2945,2946,2951,2952,2953,2955,2957,2958,2959,2960,2963,2974,2976,2977,2978,2979,2980,2983,2984,2985,2988,2989,2990,2992,2994,2996,2998,3041,3042,3045,3051,3053,3112,3122,3123,3127,3129,3134,3135,3138,3140,3142,3144,3169,3182,3183,3198,3202,3203,3208,3209,3210,3211,3213,3214,3219,3231,3235,3236,3237,3239,3240,3241,3244,3252,3253,3255,3256,3257,3272,3281,3282,3283,3284,3285,3286,3289,3291,3293,3295,3297,3299,3302,3303,3305,3306,3309,3311,3312,3313,3315,3317,3318,3319,3325,3326,3342,3344,3346,3351,3353,3357,3360,3361,3366,3368,3370,3371,3372,3377,3378,3384,3385,3386,3387,3390,3391,3393,3395,3396,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3410,3411,3413,3414,3415,3418,3419,3420,3422,3424,3425,3427,3428,3429,3430,3435,3436,3438,3439,3440,3441,3442,3443,3445,3446,3447,3449,3450,3452,3453,3454,3455,3458,3459,3462,3468,3469,3470,3471,3473,3486,3507,3524,3525,3526,3537,3568,3569,3570,3571,3572,3579,3581,3584,3586,3591,3592,3593,3596,3598,3600,3602,3604,3605,3623,3652,3658,3659,3691,3692,3693,3696,3697,3703,3705,3706,3708,3731,3732,3733,3734,3736,3737,3743,3744,3760,3764,3780,3784,3788,3792,3793,3796,3797,3798,3800,3803,3808,3810,3813,3817,3822,3824,3825,3828,3829,3831,3835,3837,3839,3840,3843,3844,3845,3847,3848,3849,3853,3854,3861,3940,3942,3943,3944,3949,3950,3951,3952,3959,3960,3961,3962,3966,3970,3972,3973,3974,3975,3978,3979,3983,3984,3985,3988,3989,3997,3998,4001,4017,4020,4021,4022,4023,4024,4025,4026,4027,4034,4035,4040,4042,4044,4047,4048,4049,4053,4055,4057,4061,4063,4064,4065,4067,4068,4072,4073,4076,4078,4111,4116,4117,4118,4119,4121,4122,4124,4126,4128,4129,4134,4136,4143,4145,4148,4149,4150,4151,4152,4154,4156,4157,4160,4161,4163,4166,4167,4168,4170,4172,4174,4175,4176,4177,4178,4181,4183,4184,4188,4189,4190,4192,4194,4197,4199,4201,4203,4205,4209,4210,4211,4213,4214,4217,4222,4223,4224,4229,4230,4232,4234,4235,4236,4238,4240,4245,4251,4253,4254,4255,4257,4258,4263,4265,4269,4270,4272,4274,4276,4277,4281,4282,4283,4285,4286,4290,4291,4302,4309,4314,4315,4317,4318,4320,4323,4324,4327,4334,4338,4342,4343,4346,4347,4348,4354,4356,4374,4383,4388,4393,4394,4397,4398,4399,4400,4401,4402,4403,4406,4407,4409,4410,4419,4421,4424,4428,4432,4433,4437,4442,4447,4452,4457,4459,4474,4475,4481,4487,4490,4493,4498,4541,4550,4554,4557,4559,4560,4565,4566,4569,4570,4571,4572,4575,4576,4577,4578,4580,4583,4584,4585,4588,4590,4592,4593,4596,4601,4603,4604,4610,4614,4616,4620,4621,4644,4647,4648,4649,4650,4651,4653,4656,4660,4664,4665,4667,4671,4680,4685,4689,4692,4693,4694,4695,4701,4702,4703,4704,4705,4711,4714,4716,4718,4722,4725,4727,4728,4730,4731,4732,4738,4739,4740,4741,4745,4747,4749,4750,4762,4764,4798,4810,4817,4829,4832,4845,4846,4854,4879,4881,4884,4885,4889,4892,4895,4898,4900,4902,4903,4911,4912,4913,4917,4918,4919,4922,4923,4924,4926,4928,4929,4933,4934,4935,4937,4939,4940,4945,4947,4950,4952,4953,4955,4959,4967,4968,4969,4971,4974,4975,4977,4978,4993,4995,4996,4997,4998,5001,5005,5006,5007,5008,5009,5011,5014,5016,5018,5019,5023,5024,5025,5027,5028,5029,5031,5033,5034,5035,5038,5039,5043,5044,5055,5056,5057,5058,5059,5062,5064,5065,5067,5068,5069,5075,5077,5078,5080,5081,5085,5086,5087,5088,5089,5090,5091,5096,5098,5099,5101,5102,5103,5104,5105,5106,5107,5108,5110,5111,5112,5113,5115,5117,5118,5119,5120,5123,5126,5127,5129,5130,5131,5132,5133,5134,5136,5138,5139,5140,5142,5143,5144,5147,5148,5151,5155,5156,5157,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5173,5175,5176,5177,5179,5180,5181,5182,5183,5185,5187,5190,5191,5194,5195,5196,5197,5198,5199,5200,5201,5203,5206,5208,5209,5210,5212,5215,5217,5220,5221,5225,5229,5230,5231,5233,5235,5236,5237,5239,5241,5244,5245,5247,5249,5250,5251,5252,5254,5255,5258,5260,5261,5265,5266,5267,5268,5269,5271,5275,5276,5277,5282,5284,5288,5289,5290,5291,5292,5311,5313,5314,5315,5316,5319,5321,5323,5324,5325,5326,5328,5329,5333,5334,5337,5338,5339,5340,5343,5344,5347,5348,5349,5350,5352,5353,5357,5358,5359,5360,5362,5363,5364,5365,5366,5372,5374,5376,5378,5379,5380,5383,5385,5386,5389,5390,5391,5393,5396,5397,5398,5399,5400,5401,5405,5406,5407,5408,5409,5414,5415,5416,5420,5423,5428,5431,5440,5441,5443,5444,5445,5448,5452,5455,5456,5457,5470,5475,5501,5502,5503,5505,5508,5514,5518,5520,5521,5523,5529,5534,5538,5540,5543,5544,5562,5563,5566,5567,5568,5569,5570,5571,5573,5574,5576,5577,5579,5580,5582,5583,5584,5585,5587,5588,5590,5591,5592,5594,5595,5600,5612,5613,5618,5619,5620,5621,5622,5623,5624,5626,5631,5632,5633,5635,5636,5638,5639,5646,5647,5648,5656,5658,5659,5660,5663,5664,5669,5670,5672,5673,5674,5675,5676,5679,5680,5681,5683,5685,5689,5691,5694,5697,5699,5700,5701,5702,5703,5704,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5724,5728,5730,5731,5732,5733,5734,5735,5736,5737,5739,5740,5741,5742,5743,5744,5753,5754,5755,5757,5761,5764,5767,5770,5777,5785,5788,5794,5806,5812,5817,5821,5822,5823,5831,5833,5839,5840,5843,5844,5848,5849,5850,5852,5860,5862,5864,5866,5868,5878,5879,5880,5881,5883,5893,5896,5898,5900,5902,5906,5910,5911,5915,5917,5918,5920,5921,5923,5924,5925,5928,5933,5934,5935,5936,5940,5943,5948,5949,5951,5955,5956,5957,5960,5961,5962,5965,5966,5968,5973,5975,5976,5977,5982,5986,5989,5990,5991,5995,5996,5999,6001,6002,6003,6009,6010,6020,6029,6032,6033,6035,6046,6051,6055,6056,6061,6064,6072,6074,6075,6076,6078,6083,6089,6094,6096,6104,6106,6113,6115,6116,6119,6122,6127,6130,6136,6155,6162,6168,6187,6189,6192,6193,6194,6195,6196,6197,6199,6201,6215,6279,6289,6296,6299,6300,6301,6303,6371,6372,6373,6383,6384,6389,6424,6425,6426,6428,6429,6430,6431,6435,6442,6443,6444,6445,6448,6449,6450,6451,6453,6454,6455,6457,6460,6461,6463,6465,6468,6469,6470,6471,6473,6474,6475,6476,6478,6483,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6502,6503,6505,6507,6510,6511,6513,6528,6531,6546,6549,6550,6552,6553,6555,6556,6557,6558,6559,6560,6561,6562,6563,6565,6567,6568,6569,6572,6575,6576,6577,6578,6580,6583,6596,6600,6601,6602,6605,6608,6613,6614,6625,6626,6627,6628,6632,6634,6636,6646,6654,6655,6660,6661,6662,6664,6665,6666,6667,6668,6670,6675,6676,6677,6678,6679,6680,6681,6688,6696,6698,6699,6701,6703,6709,6712,6714,6716,6726,6738,6742,6753,6817,6818,6821,6822,6826,6827,6838,6839,6840,6850,6852,6853,6856,6858,6859,6860,6861,6864,6865,6872,6885,6887,6892,6897,6899,6900,6901,6902,6903,6904,6905,6907,6908,6909,6913,6915,6928,6943,6947,6969,6977,6982,6983,6993,6999,7042,7055,7072,7077,7080,7081,7082,7089,7105,7107,7109,7110,7117,7121,7133,7135,7136,7140,7144,7148,7153,7161,7169,7182,7185,7201,7202,7203,7204,7215,7217,7218,7219,7221,7222,7223,7224,7227,7231,7232,7233,7234,7235,7236,7238,7239,7240,7241,7242,7243,7246,7247,7248,7250,7251,7252,7257,7258,7260,7261,7264,7265,7266,7267,7270,7277,7279,7280,7282,7283,7284,7285,7286,7287,7291,7294,7295,7296,7297,7300,7301,7302,7303,7322,7323,7325,7328,7332,7333,7339,7342,7345,7346,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7360,7361,7362,7364,7365,7369,7375,7376,7379,7387,7390,7391,7406,7408,7419,7424,7435,7436,7437,7440,7442,7443,7452,7458,7460,7463,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7482,7483,7484,7497,7498,7499,7511,7514,7518,7520,7531,7541,7542,7543,7547,7549,7553,7561,7562,7570,7571,7573,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7588,7590,7591,7593,7595,7596,7597,7599,7600,7601,7602,7603,7604,7605,7607,7608,7609,7613,7655,7663,7664,7665,7688,7690,7693,7704,7711,7712,7715,7733,7738,7742,7743,7744,7745,7746,7751,7752,7753,7772,7778,7779,7797,7804,7808,7812,7814,7820,7821,7822,7828,7831,7843,7845,7849,7851,7854,7857,7858,7860,7887,7889,7890,7891,7892,7893,7895,7899,7900,7914,7915,7916,7917,7921,7924,7925,7928,7929,7948,7952,7958,7959,7960,7961,7973,7984,7986,8001,8004,8034,8036,8038,8050,8054,8055,8090,8099,8109,8120,8128,8129,8134,8135,8142,8144,8151,8152,8155,8156,8157,8159,8162,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8178,8181,8183,8184,8185,8188,8191,8202,8204,8205,8206,8207,8215,8220,8223,8252,8286,8287,8291,8293,8295,8297,8299,8300,8301,8306,8308,8310,8311,8367,8373,8396,8397,8410,8414,8420,8434,8436,8437,8438,8444,8463,8497,8506,8509,8518,8532,8573,8581,8583,8586,8587,8589,8603,8604,8606,8609,8616,8618,8621,8623,8624,8627,8631,8633,8634,8644,8649,8652,8655,8663,8665,8669,8670,8693,8695,8702,8703,8704,8706,8707,8708,8709,8710,8711,8713,8715,8716,8717,8734,8746,8747,8753,8754,8765,8773,8774,8778,8785,8793,8794,8796,8797,8798,8799,8800,8802,8803,8812,8813,8814,8815,8817,8818,8819,8821,8823,8881,8882,8883,8885,8890,8897,8898,8907,8915,8933,8946,8974,8979,8982,8985,8986,8989,8991,8994,8995,8996,8997,9000,9002,9003,9005,9006,9007,9008,9010,9013,9029,9038,9039,9041,9042,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9059,9060,9061,9066,9076,9080,9084,9088,9091,9110,9112,9114,9117,9118,9119,9122,9139,9166,9175,9178,9185,9186,9187,9189,9190,9193,9201,9202,9204,9205,9210,9216,9223,9225,9229,9231,9232,9233,9236,9239,9240,9242,9244,9246,9252,9253,9254,9260,9263,9264,9267,9275,9278,9279,9283,9284,9290,9295,9296,9302,9308,9309,9313,9316,9317,9318,9319,9322,9325,9329,9331,9333,9337,9338,9339,9341,9342,9344,9345,9351,9353,9354,9356,9359,9362,9363,9365,9371,9372,9373,9377,9378,9379,9380,9387,9391,9394,9396,9397,9398,9399,9401,9402,9421,9422,9436,9443,9444,9450,9454,9468,9470,9471,9474,9476,9477,9479,9485,9487,9488,9491,9492,9494,9495,9496,9497,9499,9500,9501,9502,9503,9504,9508,9518,9523,9532,9533,9536,9537,9539,9548,9549,9550,9552,9553,9554,9555,9556,9557,9565,9567,9572,9575,9578,9586,9587,9588,9589,9590,9591,9592,9593,9594,9604,9630,9633,9636,9646,9647,9648,9658,9663,9664,9665,9667,9691,9692,9694,9701,9707,9708,9709,9723,9726,9728,9735,9737,9740,9745,9746,9754,9759,9762,9763,9768,9781,9782,9792,9803,9809,9810,9816,9823,9824,9825,9832,9833,9836,9839,9842,9844,9846,9847,9848,9852,9854,9859,9860,9861,9862,9863,9864,9866,9868,9873,9874,9875,9876,9882,9888,9894,9899,9902,9910,9920,9921,9922,9923,9928,9930,9934,9937,9943,9949,9953,9959,9960,9962,9965,9966,9971,9977,9981,9985,9990,9991,9992,9994,9995,9996,9997,9998,9999,10000,10001,10002,10003,10004,10006,10008,10011,10015,10016,10017,10018,10019,10022,10024,10027,10029,10030,10031,10036,10039,10040,10046,10049,10054,10056,10059,10062,10065,10067,10075,10076,10077,10078,10080,10081,10082,10092,10093,10094,10096,10099,10100,10101,10102,10103,10106,10107,10109,10114,10115,10117,10121,10123,10124,10125,10126,10128,10129,10131,10135,10139,10141,10147,10148,10149,10150,10153,10154,10158,10160,10161,10163,10164,10167,10168,10169,10171,10172,10174,10176,10177,10181,10186,10188,10189,10190,10191,10192,10197,10202,10204,10205,10206,10211,10215,10221,10222,10231,10235,10238,10309,10469,10485,10486,10634,10635,10638,10672,10673,10675,10676,10682,10683,10687,10691,10743,10762,10766,10770,10771,10774,10776,10784,10791,10793,10794,10803,10804,10805,10806,10816,10817,10819,10820,10822,10824,10827,10828,10830,10831,10834,10843,10845,10846,10848,10849,10851,10853,10854,10856,10857,10859,10860,10861,10864,10867,10870,10873,10879,10880,10882,10883,10885,10886,10887,10889,10890,10896,10901,10903,10920,10937,10943,10944,10945,10946,10947,10948,10949,10950,10951,10952,10953,10956,10958,10960,10961,10962,10963,10964,10965,10969,10970,10971,10972,10975,10976,10977,10978,10980,10982,10983,10987,10988,10996,11007,11008,11011,11013,11014,11015,11034,11049,11052,11053,11089,11099,11104,11107,11132,11145,11147,11148,11151,11152,11153,11155,11156,11161,11162,11163,11165,11169,11172,11173,11174,11175,11180,11182,11184,11185,11186,11187,11189,11195,11197,11199,11200,11203,11212,11215,11222,11223,11230,11262,11269,11270,11275,11278,11281,11282,11283,11286,11289,11290,11292,11293,11294,11296,11298,11299,11301,11323,11324,11325,11326,11327,11328,11330,11331,11334,11335,11336,11345,11346,11347,11357,11358,11362,11368,11372,11375,11410,11416,11418,11428,11430,11438,11439,11442,11443,11444,11446,11448,11449,11450,11451,11458,11461,11462,11463,11464,11465,11467,11471,11473,11477,11479,11481,11482,11486,11487,11488,11489,11492,11494,11498,11499,11501,11502,11503,11504,11505,11511,11516,11517,11518,11521,11526,11528,11529,11532,11533,11539,11546,11548,11549,11552,11553,11555,11557,11558,11560,11561,11562,11564,11565,11569,11573,11578,11580,11582,11583,11584,11585,11586,11587,11590,11591,11592,11593,11600,11601,11602,11604,11605,11606,11607,11608,11609,11613,11614,11615,11616,11619,11624,11630,11631,11634,11636,11638,11640,11642,11648,11651,11653,11659,11661,11662,11668,11670,11672,11674,11675,11676,11679,11681,11683,11684,11685,11686,11689,11691,11695,11696,11697,11698,11699,11701,11706,11708,11711,11713,11719,11731,11736,11737,11748,11749,11750,11751,11752,11753,11757,11758,11761,11765,11767,11769,11770,11773,11774,11775,11777,11783,11785,11786,11788,11789,11793,11794,11796,11797,11799,11801,11802,11806,11807,11808,11809,11810,11811,11812,11816,11818,11821,11822,11823,11826,11828,11832,11833,11834,11835,11836,11839,11842,11844,11845,11846,11847,11848,11849,11856,11857,11858,11860,11862,11864,11865,11868,11870,11874,11883,11886,11891,11892,11896,11897,11898,11899,11901,11910,11912,11913,11914,11917,11918,11919,11920,11921,11923,11924,11925,11926,11930,11931,11935,11941,11943,11947,11948,11950,11954,11956,11957,11959,11960,11963,11964,11966,11967,11968,11969,11972,11978,11982,11992,11998,12000,12002,12003,12005,12006,12007,12008,12009,12011,12014,12015,12016,12017,12018,12019,12021,12023,12095,12100,12102,12103,12105,12107,12108,12111,12113,12172,12173,12179,12183,12184,12200,12201,12229,12230,12236,12242,12245,12252,12263,12301,12395,12494,12499,12502,12503,12507,12514,12515,12516,12517,12518,12578,12583,12584,12875,12876,12877,12878,12881,12890,12892,12893,12894,12895,12897,12898,13137,13794,13865,13867,13870,13923,13929,13931,13932,13933,13934,13941,13945,13947,13952,13956,13958,13960,13961,13962,13964,13965,13968,13970,13971,13973,13974,13976,13979,13981,13985,13986,13987,13988,13989,13993,13994,13996,13998,14001,14003,14012,14013,14021,14022,14028,14030,14031,14032,14034,14037,14040,14041,14042,14044,14053,14057,14058,14060,14063,14064,14066,14067,14069,14071,14072,14073,14075,14077,14080,14082,14084,14086,14087,14088,14091,14094,14097,14099,14100,14104,14116,14117,14119,14120,14121,14124,14131,14133,14136,14138,14139,14142,14146,14148,14149,14159,14164,14167,14175,14176,14177,14182,14183,14187,14188,14189,14191,14192,14198,14200,14204,14212,14223,14227,14230,14231,14232,14236,14241,14242,14244,14246,14249,14251,14252,14255,14257,14258,14259,14261,14262,14263,14265,14266,14274,14275,14279,14281,14285,14286,14289,14291,14292,14293,14295,14296,14298,14299,14300,14304,14305,14306,14307,14309,14310,14311,14312,14313,14315,14316,14317,14318,14319,14320,14321,14322,14323,14326,14327,14329,14331,14332,14336,14337,14340,14345,14348,14352,14354,14355,14357,14360,14365,14366,14367,14368,14370,14371,14372,14374,14376,14377,14378,14379,14384,14386,14388,14389,14390,14391,14392,14394,14395,14396,14397,14398,14399,14403,14404,14405,14406,14407,14410,14411,14415,14416,14419,14420,14432,14434,14437,14443,14444,14453,14454,14455,14457,14459,14467,14468,14470,14473,14474,14478,14483,14484,14489,14490,14491,14505,14511,14516,14524,14526,14528,14529,14530,14534,14536,14538,14541,14543,14544,14545,14546,14552,14555,14563,14621,14622,14625,14627,14630,14635,14642,14669,14731,14748,14754,14765,14785,14793,14795,14798,14860,14916,14926,14948,14951,14966,14968,14972,14976,14977,15018,15066,15079,15092,15117,15134,15190,15202,15217,15227,15232,15257,15259,15260,15261,15262,15267,15270,15271,15272,15278,15279,15283,15285,15290,15295,15301,15303,15307,15309,15317,15321,15322,15327,15331,15332,15334,15341,15344,15372,15377,15378,15391,15397,15404,15412,15415,15416,15419,15420,15424,15426,15427,15429,15430,15431,15432,15434,15436,15442,15445,15448,15449,15453,15454,15455,15457,15460,15466,15467,15469,15470,15472,15473,15474,15475,15478,15479,15483,15486,15487,15488,15490,15491,15492,15494,15495,15496,15499,15500,15501,15504,15505,15507,15508,15509,15510,15511,15513,15514,15521,15522,15533,15536,15537,15540,15542,15543,15550,15551,15555,15557,15562,15566,15568,15569,15570,15571,15572,15587,15595,15602,15604,15605,15606,15607,15609,15610,15613,15625,15652,15653,15655,15667,15676,15685,15691,15698,15699,15700,15701,15705,15707,15712,15714,15718,15720,15723,15727,15730,15742,15745,15769,15770,15775,15781,15782,15785,15787,15788,15790,15794,15795,15797,15803,15804,15810,15814,15815,15816,15817,15818,15831,15839,15840,15841,15842,15843,15844,15845,15846,15849,15852,15853,15854,15855,15857,15860,15861,15862,15863,15864,15865,15866,15867,15868,15869,15870,15873,15875,15876,15877,15878,15879,15880,15881,15882,15884,15885,15889,15892,15893,15894,15895,15896,15898,15899,15910,15929,15931,15939,15950,15953,15955,15962,15963,15973,15987,16005,16006,16024,16035,16043,16047,16049,16054,16057,16064,16067,16072,16075,16076,16083,16086,16088,16089,16090,16093,16098,16100,16101,16103,16104,16108,16110,16111,16112,16114,16115,16116,16117,16118,16119,16122,16124,16127,16130,16131,16136,16140,16141,16145,16147,16149,16151,16152,16153,16156,16159,16162,16164,16172,16173,16174,16175,16176,16177,16178,16180,16181,16188,16189,16194,16195,16196,16197,16226,16229,16235,16236,16237,16239,16240,16243,16260,16264,16267,16269,16271,16275,16277,16279,16287,16291,16294,16300,16302,16304,16306,16308,16310,16320,16323,16328,16329,16330,16334,16337,16338,16340,16341,16342,16343,16346,16348,16349,16350,16351,16353,16357,16358,16362,16363,16372,16376,16378,16384,16386,16389,16407,16429,16438,16439,16460,16462,16464,16466,16467,16474,16481,16487,16488,16538,16556,16615,16624,16637,16648,16659,16678,16683,16685,16689,16708,16721,16741,16774,16798,16799,16810,16815,16816,16818,16823,16832,16833,16836,16840,16841,16842,16843,16844,16845,16846,16847,16849,16851,16860,16873,16876,16888,16911,16923,16928,16939,16942,16946,16948,16964,16966,16976,16977,16978,16981,16985,16986,16987,17014,17015,17017,17019,17027,17029,17034,17038,17061,17097,17100,17135,17201,17221,17237,17249,17250,17260,17314,17656,17658,17663,17664,17665,17672,17674,17678,17682,17687,17688,17690,17695,17696,17697,17702,17704,17706,17708,17715,17720,17721,17722,17723,17724,17735,17738,17746,17748,17751,17755,17763,17764,17772,17774,17781,17785,17792,17793,17794,17799,17800,17808,17810,17812,17818,17820,17824,17825,17836,17840,17842,17843,17848,17866,17870,17876,17883,17886,17887,17893,17899,17901,17902,17904,17905,17910,17911,17912,17915,17919,17929,17930,17931,17933,17950,17951,17952,17955,17960,17982,17983,17986,17989,18001,18004,18005,18008,18016,18018,18020,18021,18022,18023,18024,18025,18026,18029,18031,18032,18045,18052,18066,18069,18077,18086,18088,18094,18095,18096,18098,18109,18110,18116,18118,18119,18124,18126,18127,18128,18134,18138,18140,18141,18142,18143,18145,18146,18147,18151,18152,18154,18163,18164,18169,18177,18178,18185,18193,18199,18203,18208,18212,18215,18218,18226,18235,18243,18244,18246,18247,18248,18249,18250,18251,18253,18254,18255,18259,18265,18281,18284,18285,18289,18300,18301,18305,18309,18311,18319,18322,18330,18337,18340,18345,18348,18350,18353,18356,18358,18366,18367,18368,18369,18370,18372,18373,18374,18384,18385,18386,18388,18391,18392,18393,18394,18395,18397,18410,18412,18417,18418,18420,18422,18423,18425,18427,18433,18447,18448,18451,18455,18464,18465,18467,18468,18471,18472,18485,18486,18488,18490,18492,18493,18499,18501,18504,18506,18508,18515,18516,18517,18519,18520,18521,18535,18538,18539,18556,18557,18562,18564,18566,18567,18568,18569,18572,18574,18575,18578,18579,18580,18582,18585,18586,18603,18615,18616,18628,18631,18634,18636,18637,18640,18641,18643,18644,18649,18650,18654,18659,18661,18662,18663,18672,18674,18676,18682,18684,18686,18688,18690,18693,18695,18699,18701,18704,18705,18706,18707,18708,18712,18717,18721,18724,18728,18729,18731,18733,18736,18740,18745,18746,18747,18748,18753,18754,18756,18757,18759,18784,18791,18794,18795,18797,18799,18800,18801,18813,18815,18819,18820,18821,18822,18823,18827,18830,18835,18837,18840,18841,18843,18844,18845,18846,18849,18851,18852,18853,18856,18857,18858,18860,18862,18863,18865,18866,18873,18880,18882,18883,18893,18894,18897,18904,18905,18908,18920,18922,18923,18924,18927,18928,18931,18934,18936,18937,18938,18939,18942,18943,18944,18945,18948,18950,18953,18954,18955,18957,18958,18959,18960,18961,18965,18966,18967,18968,18969,18970,18971,18973,18974,18977,18982,18984,18994,18996,19002,19003,19008,19012,19013,19014,19015,19016,19018,19019,19022,19023,19024,19025,19027,19028,19029,19030,19031,19035,19036,19044,19053,19054,19060,19061,19062,19063,19067,19068,19069,19070,19072,19073,19076,19077,19080,19082,19087,19095,19098,19099,19100,19101,19104,19105,19110,19111,19119,19120,19121,19122,19123,19130,19132,19138,19140,19147,19148,19149,19151,19154,19156,19157,19160,19161,19162,19165,19166,19167,19170,19172,19178,19181,19182,19184,19187,19188,19190,19192,19195,19197,19198,19199,19200,19202,19203,19207,19211,19217,19219,19222,19224,19225,19227,19229,19231,19232,19235,19237,19242,19243,19244,19246,19247,19248,19250,19252,19261,19262,19263,19265,19266,19267,19268,19269,19271,19272,19274,19275,19277,19278,19279,19280,19281,19282,19283,19291,19294,19300,19302,19303,19304,19307,19308,19313,19315,19316,19317,19318,19321,19324,19326,19330,19331,19334,19335,19337,19339,19341,19345,19346,19347,19350,19351,19352,19355,19357,19362,19364,19367,19370,19371,19372,19376,19377,19378,19381,19383,19385,19389,19390,19395,19397,19403,19407,19408,19410,19413,19418,19419,19421,19422,19423,19424,19425,19426,19429,19430,19433,19434,19435,19438,19441,19442,19444,19447,19448,19450,19451,19452,19453,19454,19455,19456,19457,19459,19460,19462,19463,19465,19470,19472,19478,19483,19484,19485,19486,19488,19489,19490,19491,19492,19493,19495,19496,19499,19500,19501,19502,19503,19504,19507,19508,19512,19513,19514,19515,19516,19517,19518,19519,19520,19521,19522,19525,19527,19528,19529,19531,19532,19537,19538,19539,19541,19542,19543,19546,19549,19551,19561,19562,19563,19564,19565,19566,19567,19570,19571,19573,19574,19576,19579,19580,19581,19582,19584,19585,19587,19588,19590,19591,19592,19597,19598,19600,19604,19607,19609,19611,19612,19614,19615,19617,19618,19619,19620,19621,19622,19623,19624,19627,19629,19630,19631,19632,19633,19634,19639,19642,19643,19644,19645,19646,19649,19650,19651,19652,19654,19655,19656,19657,19658,19660,19661,19665,19666,19667,19668,19669,19670,19671,19672,19675,19676,19677,19678,19679,19684,19685,19688,19690,19691,19692,19693,19694,19697,19698,19701,19702,19703,19705,19706,19707,19708,19709,19711,19713,19714,19718,19719,19722,19723,19724,19725,19726,19727,19728,19729,19731,19732,19734,19736,19737,19739,19745,19746,19747,19749,19757,19758,19759,19761,19767,19773,19775,19776,19777,19779,19785,19786,19787,19788,19789,19791,19792,19794,19795,19798,19799,19800,19802,19803,19805,19806,19809,19813,19814,19818,19823,19824,19825,19827,19835,19836,19840,19841,19842,19843,19846,19847,19848,19849,19850,19851,19852,19853,19868,19869,19871,19872,19876,19877,19880,19881,19883,19891,19897,19898,19909,19911,19912,19915,19916,19938,19939,19940,19941,19942,19943,19944,19962,19977,19978,19979,19980,19981,19982,19984,19986,19988,19990,19993,19994,19995,19996,19998,19999,20001,20004,20005,20007,20012,20017,20021,20026,20031,20032,20033,20034,20035,20036,20039,20040,20042,20043,20044,20045,20046,20050,20058,20060,20063,20068,20070,20071,20073,20074,20075,20077,20079,20080,20081,20088,20090,20092,20095,20105,20106,20110,20115,20118,20120,20122,20123,20124,20127,20128,20129,20133,20134,20139,20140,20141,20143,20145,20147,20153,20155,20157,20158,20159,20161,20162,20164,20165,20166,20167,20170,20171,20173,20176,20179,20180,20181,20184,20186,20187,20190,20191,20194,20195,20196,20199,20200,20201,20206,20211,20213,20217,20218,20219,20222,20223,20224,20226,20231,20236,20237,20238,20241,20245,20248,20251,20257,20260,20262,20263,20264,20265,20267,20268,20269,20270,20274,20278,20279,20289,20293,20296,20315,20319,20321,20322,20327,20328,20330,20338,20339,20340,20341,20349,20352,20354,20372,20376,20378,20379,20380,20394,20404,20409,20413,20415,20418,20420,20431,20436,20440,20443,20461,20463,20467,20492,20514,20516,20518,20524,20525,20542,20559,20561,20563,20564,20570,20573,20576,20577,20578,20581,20586,20596,20604,20616,20618,20620,20626,20631,20637,20651,20652,20656,20660,20665,20667,20669,20670,20678,20680,20681,20688,20695,20696,20697,20700,20701,20705,20706,20709,20710,20713,20714,20715,20722,20729,20731,20733,20735,20738,20739,20740,20743,20755,20761,20763,20797,20820,20824,20826,20836,20846,20849,20850,20896,20897,20900,20902,20907,20914,20915,20921,20933,20937,20939,20940,20942,20943,20945,20947,20949,20952,20961,20962,20976,20977,20990,20992,20993,20998,20999,21004,21008,21043,21057,21070,21071,21076,21083,21084,21088,21090,21094,21100,21101,21106,21114,21122,21158,21168,21177,21179,21180,21183,21184,21189,21192,21200,21204,21205,21207,21210,21212,21216,21223,21224,21229,21230,21231,21249,21263,21265,21281,21302,21303,21309,21310,21314,21320,21322,21337,21340,21343,21345,21348,21353,21354,21356,21359,21360,21370,21375,21379,21382,21395,21397,21398,21401,21403,21410,21411,21412,21425,21426,21448,21454,21455,21470,21476,21478,21523,21548,21565,21576,21577,21596,21601,21602,21603,21604,21631,21634,21653,21658,21659,21664,21667,21668,21669,21711,21712,21716,21737,21990,21992,21996,21998,22001,22002,22008,22095,22096,22098,22101,22118,22121,22125,22126,22129,22133,22134,22143,22148,22149,22156,22158,22159,22168,22170,22188,22195,22207,22211,22212,22213,22222,22228,22237,22250,22251,22254,22257,22261,22265,22270,22281,22283,22284,22291,22292,22300,22305,22306,22310,22312,22322,22323,22324,22325,22328,22329,22330,22332,22334,22337,22338,22342,22343,22351,22354,22357,22359,22360,22361,22364,22366,22367,22369,22370,22373,22375,22377,22379,22380,22382,22383,22385,22390,22395,22396,22401,22405,22407,22410,22413,22416,22418,22419,22420,22421,22423,22427,22429,22431,22437,22438,22439,22440,22441,22443,22450,22458,22460,22461,22464,22467,22470,22472,22479,22480,22481,22483,22488,22492,22493,22501,22502,22503,22507,22508,22510,22511,22514,22518,22525,22528,22531,22532,22534,22535,22540,22541,22545,22547,22548,22549,22550,22554,22555,22557,22558,22559,22561,22570,22571,22572,22574,22578,22580,22582,22591,22598,22600,22602,22608,22612,22613,22616,22619,22621,22622,22624,22625,22626,22627,22630,22632,22633,22637,22640,22643,22649,22650,22653,22654,22655,22656,22657,22671,22672,22673,22674,22681,22686,22687,22691,22693,22695,22696,22698,22701,22712,22717,22733,22743,22750,22761,22762,22764,22768,22770,22776,22786,22787,22788,22789,22790,22792,22793,22794,22795,22797,22799,22801,22804,22805,22807,22808,22810,22812,22814,22815,22816,22822,22825,22828,22829,22832,22835,22837,22840,22841,22842,22843,22845,22847,22848,22849,22852,22853,22854,22856,22859,22861,22862,22863,22864,22865,22866,22869,22870,22872,22873,22875,22878,22879,22880,22881,22882,22884,22885,22888,22889,22890,22891,22892,22894,22895,22898,22904,22905,22907,22908,22909,22910,22911,22912,22913,22914,22917,22918,22919,22921,22922,22928,22930,22931,22932,22940,22956,22959,22960,22961,22962,22963,22964,22965,22966,22969,22970,22971,22974,22975,22977,22978,22979,22980,22982,22983,22985,22987,22990,22993,22994,22995,22996,22997,22998,22999,23000,23013,23014,23015,23017,23019,23021,23022,23023,23028,23032,23033,23034,23039,23041,23043,23046,23049,23050,23052,23053,23061,23062,23066,23067,23068,23069,23071,23073,23075,23077,23080,23081,23084,23085,23086,23088,23089,23090,23091,23093,23094,23095,23096,23097,23098,23099,23100,23102,23103,23105,23107,23110,23111,23114,23115,23116,23117,23119,23120,23121,23123,23124,23125,23126,23127,23130,23131,23132,23133,23134,23136,23137,23139,23141,23143]]],["+",[66,65,[[0,2,2,0,2,[[17,1,1,0,1],[23,1,1,1,2]]],[2,16,15,2,17,[[91,3,3,2,5],[92,2,2,5,7],[93,1,1,7,8],[95,1,1,8,9],[96,3,2,9,11],[99,2,2,11,13],[110,2,2,13,15],[113,1,1,15,16],[116,1,1,16,17]]],[3,3,3,17,20,[[122,1,1,17,18],[137,1,1,18,19],[148,1,1,19,20]]],[4,2,2,20,22,[[161,1,1,20,21],[170,1,1,21,22]]],[5,2,2,22,24,[[199,1,1,22,23],[207,1,1,23,24]]],[6,1,1,24,25,[[224,1,1,24,25]]],[8,5,5,25,30,[[236,2,2,25,27],[237,1,1,27,28],[259,1,1,28,29],[261,1,1,29,30]]],[9,1,1,30,31,[[288,1,1,30,31]]],[10,6,6,31,37,[[292,1,1,31,32],[297,1,1,32,33],[303,1,1,33,34],[304,1,1,34,35],[308,1,1,35,36],[311,1,1,36,37]]],[11,2,2,37,39,[[325,1,1,37,38],[335,1,1,38,39]]],[13,3,3,39,42,[[379,1,1,39,40],[392,1,1,40,41],[399,1,1,41,42]]],[14,1,1,42,43,[[405,1,1,42,43]]],[18,4,4,43,47,[[510,1,1,43,44],[514,2,2,44,46],[621,1,1,46,47]]],[19,8,8,47,55,[[635,1,1,47,48],[639,1,1,48,49],[643,2,2,49,51],[645,1,1,51,52],[646,1,1,52,53],[647,1,1,53,54],[656,1,1,54,55]]],[22,3,3,55,58,[[707,1,1,55,56],[718,1,1,56,57],[729,1,1,57,58]]],[23,3,3,58,61,[[759,1,1,58,59],[794,1,1,59,60],[795,1,1,60,61]]],[24,2,2,61,63,[[798,1,1,61,62],[799,1,1,62,63]]],[36,1,1,63,64,[[910,1,1,63,64]]],[37,1,1,64,65,[[920,1,1,64,65]]]],[438,641,2765,2772,2773,2781,2792,2801,2867,2909,2914,2989,2990,3351,3366,3455,3592,3835,4354,4740,5182,5385,6168,6384,6913,7232,7233,7251,7845,7916,8603,8785,8982,9190,9233,9354,9454,9875,10169,11462,11750,11920,12108,14374,14473,14489,16320,16637,16721,16841,16873,16923,16939,16978,17250,18208,18447,18690,19318,20186,20217,20341,20372,22873,23017]]],["GOD",[7,7,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,2,2,1,3,[[72,1,1,1,2],[83,1,1,2,3]]],[9,1,1,3,4,[[278,1,1,3,4]]],[10,2,2,4,6,[[292,1,1,4,5],[298,1,1,5,6]]],[22,1,1,6,7,[[681,1,1,6,7]]]],[142,2161,2519,8308,8796,9038,17722]]],["JEHOVAH",[4,4,[[1,1,1,0,1,[[55,1,1,0,1]]],[18,1,1,1,2,[[560,1,1,1,2]]],[22,2,2,2,4,[[690,1,1,2,3],[704,1,1,3,4]]]],[1658,15259,17902,18134]]],["LORD",[6329,5396,[[0,159,138,0,138,[[1,11,11,0,11],[2,9,8,11,19],[3,10,9,19,28],[4,1,1,28,29],[5,4,4,29,33],[6,3,3,33,36],[7,3,2,36,38],[8,1,1,38,39],[9,2,1,39,40],[10,5,4,40,44],[11,7,5,44,49],[12,6,5,49,54],[13,1,1,54,55],[14,5,5,55,60],[15,8,7,60,67],[16,1,1,67,68],[17,9,8,68,76],[18,7,5,76,81],[19,1,1,81,82],[20,3,2,82,84],[21,4,4,84,88],[23,18,16,88,104],[24,4,3,104,107],[25,7,7,107,114],[26,3,3,114,117],[27,4,3,117,120],[28,4,4,120,124],[29,3,3,124,127],[30,2,2,127,129],[31,1,1,129,130],[37,3,2,130,132],[38,8,5,132,137],[48,1,1,137,138]]],[1,386,333,138,471,[[52,7,6,138,144],[53,17,16,144,160],[54,7,6,160,166],[55,13,12,166,178],[56,14,13,178,191],[57,22,18,191,209],[58,23,18,209,227],[59,21,20,227,247],[60,6,6,247,253],[61,17,15,253,268],[62,13,12,268,280],[63,17,15,280,295],[64,16,11,295,306],[65,22,18,306,324],[66,8,7,324,331],[67,6,5,331,336],[68,18,12,336,348],[69,9,7,348,355],[71,2,2,355,357],[72,2,2,357,359],[73,11,10,359,369],[74,1,1,369,370],[76,1,1,370,371],[77,7,6,371,377],[78,13,10,377,387],[79,13,13,387,400],[80,5,5,400,405],[81,12,11,405,416],[82,8,8,416,424],[83,15,12,424,436],[84,10,8,436,444],[85,4,3,444,447],[87,1,1,447,448],[88,11,11,448,459],[89,14,12,459,471]]],[2,289,264,471,735,[[90,9,9,471,480],[91,8,8,480,488],[92,7,7,488,495],[93,16,14,495,509],[94,8,7,509,516],[95,13,13,516,529],[96,14,12,529,541],[97,16,14,541,555],[98,11,9,555,564],[99,13,10,564,574],[100,3,3,574,577],[101,2,2,577,579],[102,1,1,579,580],[103,11,11,580,591],[104,4,4,591,595],[105,11,10,595,605],[106,9,6,605,611],[107,7,7,611,618],[108,22,22,618,640],[109,5,5,640,645],[110,6,6,645,651],[111,21,19,651,670],[112,35,30,670,700],[113,11,11,700,711],[114,6,6,711,717],[115,6,6,717,723],[116,14,12,723,735]]],[3,383,343,735,1078,[[117,4,4,735,739],[118,3,3,739,742],[119,16,14,742,756],[120,8,7,756,763],[121,12,11,763,774],[122,14,14,774,788],[123,3,3,788,791],[124,13,12,791,803],[125,17,12,803,815],[126,12,10,815,825],[127,18,14,825,839],[128,9,8,839,847],[129,2,2,847,849],[130,23,20,849,869],[131,28,24,869,893],[132,26,22,893,915],[133,6,6,915,921],[134,15,14,921,935],[135,4,4,935,939],[136,10,10,939,949],[137,8,7,949,956],[138,16,15,956,971],[139,8,8,971,979],[140,5,4,979,983],[141,6,4,983,987],[142,6,6,987,993],[143,12,12,993,1005],[144,13,13,1005,1018],[145,8,8,1018,1026],[146,7,7,1026,1033],[147,18,15,1033,1048],[148,15,14,1048,1062],[149,5,4,1062,1066],[150,4,4,1066,1070],[151,3,3,1070,1073],[152,6,5,1073,1078]]],[4,542,434,1078,1512,[[153,24,21,1078,1099],[154,16,15,1099,1114],[155,11,8,1114,1122],[156,29,24,1122,1146],[157,24,18,1146,1164],[158,22,18,1164,1182],[159,20,17,1182,1199],[160,13,12,1199,1211],[161,32,21,1211,1232],[162,20,13,1232,1245],[163,17,16,1245,1261],[164,26,19,1261,1280],[165,11,8,1280,1288],[166,11,8,1288,1296],[167,14,12,1296,1308],[168,22,15,1308,1323],[169,11,9,1323,1332],[170,18,13,1332,1345],[171,9,8,1345,1353],[172,7,7,1353,1360],[173,7,6,1360,1366],[174,1,1,1366,1367],[175,16,10,1367,1377],[176,7,6,1377,1383],[177,4,3,1383,1386],[178,20,15,1386,1401],[179,10,8,1401,1409],[180,40,34,1409,1443],[181,20,17,1443,1460],[182,18,12,1460,1472],[183,19,18,1472,1490],[184,8,8,1490,1498],[185,8,8,1498,1506],[186,7,6,1506,1512]]],[5,218,166,1512,1678,[[187,9,6,1512,1518],[188,6,6,1518,1524],[189,6,6,1524,1530],[190,14,12,1530,1542],[191,7,5,1542,1547],[192,16,13,1547,1560],[193,13,11,1560,1571],[194,10,8,1571,1579],[195,6,6,1579,1585],[196,13,11,1585,1596],[197,9,7,1596,1603],[198,2,1,1603,1604],[199,3,3,1604,1607],[200,12,9,1607,1616],[201,1,1,1616,1617],[203,3,2,1617,1619],[204,6,5,1619,1624],[205,2,2,1624,1626],[206,1,1,1626,1627],[207,6,5,1627,1632],[208,35,18,1632,1650],[209,17,11,1650,1661],[210,21,17,1661,1678]]],[6,170,135,1678,1813,[[211,5,5,1678,1683],[212,23,17,1683,1700],[213,15,9,1700,1709],[214,8,7,1709,1716],[215,14,9,1716,1725],[216,25,18,1725,1743],[217,9,9,1743,1752],[218,4,4,1752,1756],[220,7,6,1756,1762],[221,13,12,1762,1774],[222,1,1,1774,1775],[223,18,14,1775,1789],[224,2,2,1789,1791],[225,2,2,1791,1793],[226,2,2,1793,1795],[227,3,3,1795,1798],[228,1,1,1798,1799],[229,1,1,1799,1800],[230,10,7,1800,1807],[231,7,6,1807,1813]]],[7,18,15,1813,1828,[[232,7,6,1813,1819],[233,5,3,1819,1822],[234,2,2,1822,1824],[235,4,4,1824,1828]]],[8,302,229,1828,2057,[[236,21,16,1828,1844],[237,22,15,1844,1859],[238,19,14,1859,1873],[239,5,4,1873,1877],[240,4,4,1877,1881],[241,13,11,1881,1892],[242,17,12,1892,1904],[243,6,6,1904,1910],[244,2,2,1910,1912],[245,9,8,1912,1920],[246,4,3,1920,1923],[247,32,20,1923,1943],[248,6,3,1943,1946],[249,12,10,1946,1956],[250,28,22,1956,1978],[251,15,12,1978,1990],[252,5,4,1990,1994],[253,3,3,1994,1997],[254,3,3,1997,2000],[255,13,11,2000,2011],[256,2,2,2011,2013],[257,3,2,2013,2015],[258,10,7,2015,2022],[259,9,8,2022,2030],[260,12,9,2030,2039],[261,11,7,2039,2046],[263,11,6,2046,2052],[264,1,1,2052,2053],[265,4,4,2053,2057]]],[9,139,119,2057,2176,[[267,1,1,2057,2058],[268,4,3,2058,2061],[269,4,4,2061,2065],[270,2,2,2065,2067],[271,10,9,2067,2076],[272,21,15,2076,2091],[273,11,11,2091,2102],[274,3,3,2102,2105],[276,1,1,2105,2106],[277,1,1,2106,2107],[278,12,11,2107,2118],[280,3,2,2118,2120],[281,6,5,2120,2125],[282,7,5,2125,2130],[283,2,1,2130,2131],[284,3,3,2131,2134],[285,1,1,2134,2135],[286,1,1,2135,2136],[287,6,4,2136,2140],[288,17,16,2140,2156],[289,5,5,2156,2161],[290,18,15,2161,2176]]],[10,249,207,2176,2383,[[291,6,6,2176,2182],[292,16,15,2182,2197],[293,5,5,2197,2202],[295,7,5,2202,2207],[296,5,5,2207,2212],[297,5,4,2212,2216],[298,35,28,2216,2244],[299,10,8,2244,2252],[300,5,4,2252,2256],[301,10,8,2256,2264],[302,6,3,2264,2267],[303,17,12,2267,2279],[304,12,12,2279,2291],[305,11,11,2291,2302],[306,11,10,2302,2312],[307,14,11,2312,2323],[308,22,19,2323,2342],[309,12,8,2342,2350],[310,9,6,2350,2356],[311,8,7,2356,2363],[312,23,20,2363,2383]]],[11,273,225,2383,2608,[[313,6,6,2383,2389],[314,13,10,2389,2399],[315,11,10,2399,2409],[316,6,6,2409,2415],[317,7,6,2415,2421],[318,8,5,2421,2426],[319,5,4,2426,2430],[320,7,7,2430,2437],[321,10,7,2437,2444],[322,9,7,2444,2451],[323,10,9,2451,2460],[324,14,10,2460,2470],[325,6,6,2470,2476],[326,7,7,2476,2483],[327,10,10,2483,2493],[328,6,5,2493,2498],[329,28,25,2498,2523],[330,16,12,2523,2535],[331,19,14,2535,2549],[332,14,11,2549,2560],[333,14,11,2560,2571],[334,15,11,2571,2582],[335,18,16,2582,2598],[336,10,7,2598,2605],[337,4,3,2605,2608]]],[12,174,144,2608,2752,[[339,1,1,2608,2609],[343,3,3,2609,2612],[346,3,3,2612,2615],[347,3,2,2615,2617],[348,7,6,2617,2623],[349,1,1,2623,2624],[350,5,5,2624,2629],[351,3,3,2629,2632],[352,10,10,2632,2642],[353,25,20,2642,2662],[354,14,13,2662,2675],[355,3,3,2675,2678],[356,1,1,2678,2679],[358,23,19,2679,2698],[359,18,12,2698,2710],[360,10,9,2710,2719],[361,2,1,2719,2720],[362,3,3,2720,2723],[363,4,4,2723,2727],[364,1,1,2727,2728],[365,15,11,2728,2739],[366,19,13,2739,2752]]],[13,379,304,2752,3056,[[367,5,5,2752,2757],[368,6,4,2757,2761],[369,1,1,2761,2762],[370,1,1,2762,2763],[371,8,6,2763,2769],[372,16,13,2769,2782],[373,15,11,2782,2793],[374,6,4,2793,2797],[375,4,3,2797,2800],[376,1,1,2800,2801],[377,6,4,2801,2805],[378,11,10,2805,2815],[379,10,8,2815,2823],[380,11,8,2823,2831],[381,10,9,2831,2840],[382,5,5,2840,2845],[383,6,6,2845,2851],[384,18,15,2851,2866],[385,11,8,2866,2874],[386,23,19,2874,2893],[387,7,7,2893,2900],[388,3,3,2900,2903],[389,11,8,2903,2911],[390,19,14,2911,2925],[391,6,6,2925,2931],[392,9,8,2931,2939],[393,4,3,2939,2942],[394,15,13,2942,2955],[395,27,20,2955,2975],[396,19,14,2975,2989],[397,11,10,2989,2999],[398,9,9,2999,3008],[399,18,14,3008,3022],[400,22,14,3022,3036],[401,9,7,3036,3043],[402,16,13,3043,3056]]],[14,36,28,3056,3084,[[403,6,5,3056,3061],[404,1,1,3061,3062],[405,10,6,3062,3068],[406,2,2,3068,3070],[408,2,2,3070,3072],[409,7,5,3072,3077],[410,4,3,3077,3080],[411,3,3,3080,3083],[412,1,1,3083,3084]]],[15,17,15,3084,3099,[[413,1,1,3084,3085],[417,1,1,3085,3086],[420,6,5,3086,3091],[421,6,5,3091,3096],[422,3,3,3096,3099]]],[17,32,23,3099,3122,[[436,10,6,3099,3105],[437,8,6,3105,3111],[447,1,1,3111,3112],[473,1,1,3112,3113],[475,3,3,3113,3116],[477,9,6,3116,3122]]],[18,667,610,3122,3732,[[478,2,2,3122,3124],[479,3,3,3124,3127],[480,6,6,3127,3133],[481,5,4,3133,3137],[482,5,5,3137,3142],[483,8,6,3142,3148],[484,7,5,3148,3153],[485,2,2,3153,3155],[486,9,9,3155,3164],[487,5,5,3164,3169],[488,4,4,3169,3173],[489,5,5,3173,3178],[490,3,3,3178,3181],[491,4,4,3181,3185],[492,2,2,3185,3187],[493,4,4,3187,3191],[494,3,3,3191,3194],[495,16,16,3194,3210],[496,7,4,3210,3214],[497,5,5,3214,3219],[498,4,4,3219,3223],[499,5,5,3223,3228],[500,2,2,3228,3230],[501,5,4,3230,3234],[502,10,10,3234,3244],[503,6,5,3244,3249],[504,13,9,3249,3258],[505,5,5,3258,3263],[506,18,10,3263,3273],[507,9,8,3273,3281],[508,10,9,3281,3290],[509,4,4,3290,3294],[510,12,12,3294,3306],[511,16,16,3306,3322],[512,8,8,3322,3330],[513,2,2,3330,3332],[514,13,13,3332,3345],[515,3,3,3345,3348],[516,2,2,3348,3350],[517,9,8,3350,3358],[518,6,6,3358,3364],[519,1,1,3364,3365],[523,3,3,3365,3368],[524,2,2,3368,3370],[525,2,2,3370,3372],[527,1,1,3372,3373],[531,1,1,3373,3374],[532,2,2,3374,3376],[533,1,1,3376,3377],[535,1,1,3377,3378],[536,3,3,3378,3381],[541,1,1,3381,3382],[545,1,1,3382,3383],[546,4,4,3383,3387],[547,2,2,3387,3389],[548,1,1,3389,3390],[549,1,1,3390,3391],[551,1,1,3391,3392],[552,1,1,3392,3393],[553,1,1,3393,3394],[555,2,2,3394,3396],[556,1,1,3396,3397],[557,2,2,3397,3399],[558,2,2,3399,3401],[560,1,1,3401,3402],[561,7,6,3402,3408],[562,4,4,3408,3412],[563,4,4,3412,3416],[564,2,2,3416,3418],[565,4,4,3418,3422],[566,10,9,3422,3431],[567,1,1,3431,3432],[568,2,2,3432,3434],[569,7,7,3434,3441],[570,5,4,3441,3445],[571,9,9,3445,3454],[572,3,3,3454,3457],[573,11,9,3457,3466],[574,6,6,3466,3472],[575,6,6,3472,3478],[576,7,6,3478,3484],[577,4,4,3484,3488],[578,2,2,3488,3490],[579,7,7,3490,3497],[580,11,10,3497,3507],[581,9,7,3507,3514],[582,5,5,3514,3519],[583,9,9,3519,3528],[584,12,12,3528,3540],[585,1,1,3540,3541],[586,6,6,3541,3547],[587,3,3,3547,3550],[588,4,4,3550,3554],[589,2,2,3554,3556],[590,5,4,3556,3560],[592,9,8,3560,3568],[593,14,13,3568,3581],[594,2,2,3581,3583],[595,21,18,3583,3601],[596,24,24,3601,3625],[597,2,2,3625,3627],[598,5,4,3627,3631],[599,3,3,3631,3634],[600,2,2,3634,3636],[601,4,4,3636,3640],[602,4,4,3640,3644],[603,4,4,3644,3648],[604,3,2,3648,3650],[605,3,3,3650,3653],[606,3,2,3653,3655],[607,4,3,3655,3658],[608,2,2,3658,3660],[609,6,6,3660,3666],[610,1,1,3666,3667],[611,5,3,3667,3670],[612,15,10,3670,3680],[613,1,1,3680,3681],[614,1,1,3681,3682],[615,6,4,3682,3686],[616,3,3,3686,3689],[617,6,5,3689,3694],[618,2,2,3694,3696],[619,3,2,3696,3698],[620,4,4,3698,3702],[621,3,3,3702,3705],[622,9,9,3705,3714],[623,9,7,3714,3721],[624,5,5,3721,3726],[625,4,4,3726,3730],[626,2,2,3730,3732]]],[19,78,78,3732,3810,[[628,2,2,3732,3734],[629,2,2,3734,3736],[630,9,9,3736,3745],[632,1,1,3745,3746],[633,1,1,3746,3747],[635,2,2,3747,3749],[636,1,1,3749,3750],[637,4,4,3750,3754],[638,2,2,3754,3756],[639,1,1,3756,3757],[641,3,3,3757,3760],[642,9,9,3760,3769],[643,8,8,3769,3777],[644,2,2,3777,3779],[645,1,1,3779,3780],[646,4,4,3780,3784],[647,5,5,3784,3789],[648,5,5,3789,3794],[649,6,6,3794,3800],[650,1,1,3800,3801],[651,2,2,3801,3803],[652,1,1,3803,3804],[655,2,2,3804,3806],[656,2,2,3806,3808],[657,1,1,3808,3809],[658,1,1,3809,3810]]],[22,413,362,3810,4172,[[679,9,9,3810,3819],[680,9,8,3819,3827],[681,6,6,3827,3833],[682,2,2,3833,3835],[683,6,6,3835,3841],[684,3,3,3841,3844],[685,6,6,3844,3850],[686,8,7,3850,3857],[687,5,5,3857,3862],[688,3,3,3862,3865],[689,5,4,3865,3869],[690,3,3,3869,3872],[691,5,5,3872,3877],[692,10,9,3877,3886],[694,2,2,3886,3888],[695,2,2,3888,3890],[696,3,2,3890,3892],[697,17,12,3892,3904],[698,2,2,3904,3906],[699,2,2,3906,3908],[700,4,3,3908,3911],[701,5,4,3911,3915],[702,7,6,3915,3921],[703,5,5,3921,3926],[704,10,10,3926,3936],[705,4,4,3936,3940],[706,5,5,3940,3945],[707,4,4,3945,3949],[708,11,10,3949,3959],[709,6,5,3959,3964],[710,1,1,3964,3965],[711,8,6,3965,3971],[712,4,3,3971,3974],[713,2,2,3974,3976],[714,7,5,3976,3981],[715,19,15,3981,3996],[716,10,8,3996,4004],[717,3,3,4004,4007],[718,7,6,4007,4013],[719,7,7,4013,4020],[720,8,8,4020,4028],[721,8,8,4028,4036],[722,8,5,4036,4041],[723,16,15,4041,4056],[725,1,1,4056,4057],[726,7,6,4057,4063],[727,13,11,4063,4074],[728,3,2,4074,4076],[729,10,8,4076,4084],[730,8,7,4084,4091],[731,4,3,4091,4094],[732,8,7,4094,4101],[733,5,5,4101,4106],[734,6,4,4106,4110],[735,1,1,4110,4111],[736,7,6,4111,4117],[737,7,5,4117,4122],[738,9,9,4122,4131],[739,7,7,4131,4138],[740,8,8,4138,4146],[741,6,4,4146,4150],[742,3,3,4150,4153],[743,5,5,4153,4158],[744,18,14,4158,4172]]],[23,692,605,4172,4777,[[745,12,11,4172,4183],[746,15,14,4183,4197],[747,19,14,4197,4211],[748,9,9,4211,4220],[749,14,14,4220,4234],[750,10,10,4234,4244],[751,15,12,4244,4256],[752,12,11,4256,4267],[753,14,13,4267,4280],[754,9,9,4280,4289],[755,13,12,4289,4301],[756,7,7,4301,4308],[757,14,14,4308,4322],[758,10,9,4322,4331],[759,9,9,4331,4340],[760,14,11,4340,4351],[761,14,11,4351,4362],[762,7,7,4362,4369],[763,8,7,4369,4376],[764,11,10,4376,4386],[765,11,10,4386,4396],[766,13,13,4396,4409],[767,41,29,4409,4438],[768,7,6,4438,4444],[769,19,18,4444,4462],[770,18,14,4462,4476],[771,15,12,4476,4488],[772,14,12,4488,4500],[773,25,20,4500,4520],[774,16,15,4520,4535],[775,34,27,4535,4562],[776,17,16,4562,4578],[777,20,15,4578,4593],[778,13,9,4593,4602],[779,9,8,4602,4610],[780,14,13,4610,4623],[781,6,6,4623,4629],[782,7,7,4629,4636],[783,4,4,4636,4640],[784,4,3,4640,4643],[785,1,1,4643,4644],[786,20,14,4644,4658],[787,7,6,4658,4664],[788,14,12,4664,4676],[789,4,4,4676,4680],[790,9,9,4680,4689],[791,5,5,4689,4694],[792,15,15,4694,4709],[793,21,20,4709,4729],[794,22,20,4729,4749],[795,25,23,4749,4772],[796,6,5,4772,4777]]],[24,28,28,4777,4805,[[797,7,7,4777,4784],[798,5,5,4784,4789],[799,10,10,4789,4799],[800,3,3,4799,4802],[801,3,3,4802,4805]]],[25,212,197,4805,5002,[[802,3,2,4805,4807],[804,5,5,4807,4812],[805,1,1,4812,4813],[806,3,3,4813,4816],[807,5,5,4816,4821],[808,5,5,4821,4826],[809,4,2,4826,4828],[810,3,2,4828,4830],[811,2,2,4830,4832],[812,8,7,4832,4839],[813,9,9,4839,4848],[814,9,8,4848,4856],[815,6,6,4856,4862],[816,2,2,4862,4864],[817,4,4,4864,4868],[818,5,4,4868,4872],[819,1,1,4872,4873],[821,14,14,4873,4887],[822,7,7,4887,4894],[823,7,7,4894,4901],[824,2,2,4901,4903],[825,5,5,4903,4908],[826,5,5,4908,4913],[827,3,3,4913,4916],[828,1,1,4916,4917],[829,6,6,4917,4923],[830,5,5,4923,4928],[831,9,9,4928,4937],[832,1,1,4937,4938],[833,3,3,4938,4941],[834,5,5,4941,4946],[835,7,6,4946,4952],[836,6,6,4952,4958],[837,8,7,4958,4965],[838,9,7,4965,4972],[839,2,2,4972,4974],[840,4,4,4974,4978],[841,2,2,4978,4980],[842,1,1,4980,4981],[843,1,1,4981,4982],[844,4,3,4982,4985],[845,7,4,4985,4989],[846,3,3,4989,4992],[847,6,6,4992,4998],[849,4,4,4998,5002]]],[26,7,6,5002,5008,[[858,7,6,5002,5008]]],[27,45,38,5008,5046,[[862,6,4,5008,5012],[863,4,4,5012,5016],[864,4,2,5016,5018],[865,5,4,5018,5022],[866,3,3,5022,5025],[867,2,2,5025,5027],[868,1,1,5027,5028],[869,2,2,5028,5030],[870,4,3,5030,5033],[871,2,2,5033,5035],[872,2,2,5035,5037],[873,5,4,5037,5041],[874,2,2,5041,5043],[875,3,3,5043,5046]]],[28,32,26,5046,5072,[[876,6,5,5046,5051],[877,18,14,5051,5065],[878,8,7,5065,5072]]],[29,60,56,5072,5128,[[879,8,8,5072,5080],[880,7,6,5080,5086],[881,5,5,5086,5091],[882,7,7,5091,5098],[883,11,10,5098,5108],[884,4,4,5108,5112],[885,8,6,5112,5118],[886,4,4,5118,5122],[887,6,6,5122,5128]]],[30,5,5,5128,5133,[[888,5,5,5128,5133]]],[31,26,21,5133,5154,[[889,12,8,5133,5141],[890,6,6,5141,5147],[891,2,2,5147,5149],[892,6,5,5149,5154]]],[32,37,34,5154,5188,[[893,3,3,5154,5157],[894,4,4,5157,5161],[895,5,4,5161,5165],[896,10,9,5165,5174],[897,4,3,5174,5177],[898,6,6,5177,5183],[899,5,5,5183,5188]]],[33,13,10,5188,5198,[[900,10,7,5188,5195],[901,2,2,5195,5197],[902,1,1,5197,5198]]],[34,12,10,5198,5208,[[903,3,2,5198,5200],[904,4,4,5200,5204],[905,5,4,5204,5208]]],[35,29,25,5208,5233,[[906,13,10,5208,5218],[907,7,7,5218,5225],[908,9,8,5225,5233]]],[36,31,23,5233,5256,[[909,13,10,5233,5243],[910,18,13,5243,5256]]],[37,130,102,5256,5358,[[911,20,14,5256,5270],[912,10,8,5270,5278],[913,9,7,5278,5285],[914,5,4,5285,5289],[915,1,1,5289,5290],[916,8,5,5290,5295],[917,10,9,5295,5304],[918,22,16,5304,5320],[919,5,4,5320,5324],[920,7,6,5324,5330],[921,7,6,5330,5336],[922,7,5,5336,5341],[923,5,5,5341,5346],[924,14,12,5346,5358]]],[38,46,38,5358,5396,[[925,15,12,5358,5370],[926,13,10,5370,5380],[927,15,13,5380,5393],[928,3,3,5393,5396]]]],[34,35,37,38,39,45,46,48,49,51,52,56,63,64,68,69,76,77,78,80,82,83,85,88,92,94,95,105,134,140,143,144,145,160,164,175,203,204,231,243,271,272,274,275,299,302,305,306,315,322,328,331,332,336,358,361,364,366,367,378,383,386,388,390,391,392,394,398,425,437,441,443,444,446,450,457,470,471,473,481,484,513,514,546,558,561,562,563,592,594,598,603,612,617,618,622,626,631,633,635,639,642,643,647,679,680,681,694,704,714,716,717,720,721,734,747,754,786,789,794,826,827,828,830,854,857,860,876,922,937,1126,1129,1151,1152,1154,1170,1172,1491,1581,1583,1586,1594,1595,1597,1602,1603,1605,1606,1607,1611,1612,1615,1620,1622,1623,1625,1628,1629,1631,1632,1633,1634,1635,1649,1653,1654,1656,1657,1661,1662,1663,1665,1667,1668,1681,1683,1684,1685,1686,1690,1691,1693,1695,1698,1699,1701,1702,1704,1705,1707,1710,1711,1715,1718,1720,1722,1723,1725,1726,1729,1730,1732,1734,1736,1737,1738,1739,1740,1741,1743,1745,1746,1747,1748,1750,1754,1755,1762,1763,1764,1765,1769,1770,1771,1772,1775,1777,1778,1779,1780,1784,1785,1786,1787,1788,1789,1790,1793,1794,1795,1796,1797,1798,1801,1802,1803,1804,1807,1809,1810,1813,1815,1816,1817,1828,1830,1839,1841,1844,1845,1847,1852,1857,1858,1859,1864,1866,1867,1868,1870,1872,1873,1875,1876,1878,1879,1881,1882,1883,1888,1890,1893,1897,1899,1902,1903,1904,1907,1910,1913,1914,1915,1916,1919,1920,1921,1923,1926,1931,1936,1937,1938,1939,1941,1945,1946,1950,1951,1953,1954,1955,1956,1957,1958,1959,1962,1963,1970,1972,1975,1976,1979,1980,1981,1984,1985,1987,1988,1990,1997,1999,2000,2007,2008,2009,2010,2029,2033,2034,2035,2036,2037,2044,2046,2047,2048,2049,2050,2053,2056,2058,2061,2062,2063,2073,2124,2133,2163,2169,2178,2179,2180,2181,2182,2184,2185,2189,2193,2194,2196,2293,2305,2322,2323,2328,2329,2331,2347,2354,2359,2360,2361,2362,2364,2377,2378,2382,2390,2392,2393,2394,2395,2396,2397,2398,2399,2402,2404,2416,2419,2421,2432,2433,2435,2437,2443,2445,2447,2449,2452,2465,2467,2468,2469,2471,2473,2474,2478,2480,2484,2485,2490,2492,2494,2497,2500,2501,2502,2506,2510,2520,2522,2523,2524,2528,2530,2532,2533,2535,2536,2541,2553,2560,2561,2567,2568,2571,2655,2665,2669,2671,2685,2690,2693,2694,2695,2696,2706,2707,2708,2723,2726,2728,2730,2732,2734,2736,2739,2741,2742,2745,2746,2747,2748,2750,2754,2756,2758,2759,2762,2763,2764,2770,2771,2773,2774,2776,2778,2779,2783,2784,2785,2787,2789,2790,2796,2797,2798,2799,2802,2808,2810,2812,2813,2817,2819,2822,2826,2830,2836,2837,2842,2844,2845,2847,2849,2850,2851,2855,2856,2857,2863,2864,2868,2869,2870,2871,2873,2874,2884,2890,2893,2899,2900,2901,2904,2907,2908,2909,2915,2917,2918,2921,2922,2926,2930,2934,2938,2943,2944,2945,2946,2951,2952,2953,2955,2957,2958,2959,2960,2963,2974,2976,2977,2978,2979,2980,2983,2984,2985,2988,2992,2994,2996,2998,3041,3042,3045,3051,3053,3112,3122,3123,3127,3129,3134,3135,3138,3140,3142,3144,3169,3182,3183,3198,3202,3203,3208,3209,3211,3213,3214,3219,3231,3235,3236,3237,3239,3240,3241,3244,3252,3253,3255,3256,3257,3272,3281,3282,3283,3284,3285,3286,3289,3291,3293,3295,3297,3299,3302,3303,3305,3306,3309,3311,3312,3313,3315,3317,3318,3319,3325,3326,3342,3344,3346,3353,3357,3360,3361,3368,3370,3371,3372,3377,3378,3384,3385,3386,3387,3390,3391,3393,3395,3396,3398,3399,3400,3401,3402,3403,3404,3405,3406,3408,3410,3411,3413,3414,3415,3418,3419,3420,3422,3424,3425,3427,3428,3429,3430,3435,3436,3438,3439,3440,3441,3442,3443,3445,3446,3447,3449,3450,3452,3453,3454,3458,3459,3462,3468,3469,3470,3471,3473,3486,3507,3524,3525,3526,3537,3568,3569,3570,3571,3572,3579,3581,3584,3586,3591,3593,3598,3600,3602,3604,3605,3623,3652,3658,3659,3691,3692,3693,3696,3697,3703,3705,3706,3708,3731,3732,3733,3734,3736,3737,3743,3744,3760,3764,3780,3784,3788,3792,3793,3796,3797,3798,3800,3803,3808,3810,3813,3817,3822,3824,3825,3828,3829,3831,3837,3839,3840,3843,3844,3845,3847,3848,3849,3853,3854,3861,3940,3942,3943,3944,3949,3950,3951,3952,3959,3960,3961,3962,3966,3970,3972,3973,3974,3975,3978,3979,3983,3984,3985,3988,3989,3997,3998,4001,4017,4020,4021,4022,4023,4024,4025,4026,4027,4034,4035,4040,4042,4044,4047,4048,4049,4053,4055,4057,4061,4063,4064,4065,4067,4068,4072,4073,4076,4078,4111,4116,4117,4118,4119,4121,4122,4124,4126,4128,4129,4134,4136,4143,4145,4148,4149,4150,4151,4152,4154,4156,4157,4160,4161,4163,4166,4167,4168,4170,4172,4174,4175,4176,4177,4178,4181,4183,4184,4188,4189,4190,4192,4194,4197,4199,4201,4203,4205,4209,4210,4211,4213,4214,4217,4222,4223,4224,4229,4230,4232,4234,4235,4236,4238,4240,4245,4251,4253,4254,4255,4257,4258,4263,4265,4269,4270,4272,4274,4276,4277,4281,4282,4283,4285,4286,4290,4291,4302,4309,4314,4315,4317,4318,4320,4323,4324,4327,4334,4338,4342,4343,4346,4347,4348,4356,4374,4383,4388,4393,4394,4397,4398,4399,4400,4401,4402,4403,4406,4407,4409,4410,4419,4421,4424,4428,4432,4433,4437,4442,4447,4452,4457,4459,4474,4475,4481,4487,4490,4493,4498,4541,4550,4554,4557,4559,4560,4565,4566,4569,4570,4571,4572,4575,4576,4577,4578,4580,4583,4584,4585,4588,4590,4592,4593,4596,4601,4603,4604,4610,4614,4616,4620,4621,4644,4647,4648,4649,4650,4651,4653,4656,4660,4664,4665,4667,4671,4680,4685,4689,4692,4693,4694,4695,4705,4711,4714,4716,4718,4722,4725,4727,4730,4731,4732,4738,4739,4740,4741,4745,4747,4749,4750,4762,4764,4798,4810,4817,4829,4832,4845,4846,4854,4879,4881,4884,4885,4889,4892,4895,4898,4900,4902,4903,4911,4912,4913,4917,4918,4919,4922,4923,4924,4926,4928,4929,4933,4934,4935,4937,4939,4940,4945,4947,4950,4952,4953,4955,4959,4967,4968,4969,4971,4974,4975,4977,4978,4993,4995,4996,4997,4998,5001,5005,5006,5007,5008,5009,5011,5014,5016,5018,5019,5023,5024,5025,5027,5028,5029,5031,5033,5034,5035,5038,5039,5043,5044,5055,5056,5057,5058,5059,5062,5064,5065,5067,5068,5069,5075,5077,5078,5080,5081,5085,5086,5087,5088,5089,5090,5091,5096,5098,5099,5101,5102,5103,5104,5105,5106,5107,5108,5110,5111,5112,5113,5115,5117,5118,5119,5120,5123,5126,5127,5129,5130,5131,5132,5133,5134,5136,5138,5139,5140,5142,5143,5144,5147,5148,5151,5155,5156,5157,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5173,5175,5176,5177,5179,5180,5181,5182,5183,5185,5187,5190,5191,5194,5195,5196,5197,5198,5199,5201,5203,5206,5208,5209,5210,5212,5215,5217,5220,5221,5225,5229,5230,5231,5233,5235,5236,5237,5239,5241,5244,5245,5247,5249,5250,5251,5252,5254,5255,5258,5260,5261,5265,5266,5267,5268,5269,5271,5275,5276,5277,5282,5284,5288,5289,5290,5291,5292,5311,5313,5314,5315,5316,5319,5323,5324,5325,5326,5328,5329,5333,5334,5337,5338,5339,5340,5343,5344,5347,5348,5349,5350,5352,5353,5357,5358,5359,5360,5362,5363,5364,5365,5366,5372,5374,5376,5378,5379,5380,5383,5386,5389,5390,5391,5393,5396,5397,5398,5399,5400,5401,5405,5406,5407,5408,5409,5414,5415,5416,5420,5423,5428,5431,5440,5441,5443,5444,5445,5448,5452,5455,5456,5457,5470,5475,5501,5502,5503,5505,5508,5514,5518,5520,5521,5523,5529,5534,5538,5540,5543,5544,5562,5563,5566,5567,5568,5569,5570,5571,5573,5574,5576,5577,5579,5580,5582,5583,5584,5585,5587,5588,5590,5591,5592,5594,5595,5600,5612,5613,5618,5619,5620,5621,5622,5623,5624,5626,5631,5632,5633,5635,5636,5638,5639,5646,5647,5648,5656,5658,5659,5660,5663,5664,5669,5670,5672,5673,5674,5675,5676,5679,5680,5681,5683,5685,5689,5691,5694,5697,5699,5700,5701,5702,5703,5704,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5724,5728,5730,5731,5732,5733,5734,5735,5736,5737,5739,5740,5741,5742,5743,5744,5753,5754,5755,5757,5761,5764,5770,5777,5785,5788,5794,5806,5812,5817,5821,5822,5823,5831,5833,5839,5840,5843,5844,5848,5849,5850,5852,5860,5862,5864,5866,5868,5878,5879,5880,5881,5883,5893,5896,5898,5900,5902,5906,5910,5911,5915,5917,5918,5920,5921,5923,5924,5925,5928,5933,5934,5935,5936,5940,5943,5948,5951,5955,5956,5957,5960,5961,5962,5965,5966,5968,5973,5975,5976,5977,5982,5986,5989,5990,5991,5995,5996,5999,6001,6002,6003,6009,6010,6020,6029,6032,6033,6035,6046,6051,6055,6056,6061,6064,6072,6074,6075,6076,6078,6083,6089,6094,6096,6104,6106,6113,6115,6116,6119,6122,6127,6130,6136,6155,6162,6187,6189,6192,6193,6194,6195,6196,6197,6199,6201,6215,6279,6289,6296,6299,6300,6301,6303,6371,6372,6373,6383,6389,6424,6425,6426,6428,6429,6430,6431,6435,6442,6443,6444,6445,6448,6449,6450,6451,6453,6454,6455,6457,6460,6461,6463,6465,6468,6469,6470,6471,6473,6474,6475,6476,6478,6483,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6502,6503,6505,6507,6510,6511,6513,6528,6531,6546,6549,6550,6552,6553,6555,6556,6557,6558,6559,6560,6561,6562,6563,6565,6567,6568,6569,6572,6575,6576,6577,6578,6580,6583,6596,6600,6601,6602,6605,6608,6613,6614,6625,6626,6627,6628,6632,6634,6636,6646,6654,6655,6660,6661,6662,6664,6665,6666,6667,6668,6670,6675,6676,6677,6678,6679,6680,6681,6688,6696,6698,6699,6701,6703,6709,6712,6714,6716,6726,6738,6742,6753,6817,6818,6821,6822,6826,6827,6838,6839,6840,6850,6852,6853,6856,6858,6859,6861,6864,6865,6872,6885,6887,6892,6897,6899,6900,6901,6902,6903,6904,6905,6907,6908,6909,6915,6928,6943,6947,6969,6977,6982,6983,6993,6999,7042,7055,7072,7077,7080,7081,7082,7089,7105,7107,7109,7110,7117,7121,7133,7135,7136,7140,7144,7148,7153,7161,7169,7182,7185,7201,7202,7203,7204,7215,7217,7218,7219,7221,7222,7223,7224,7227,7231,7234,7235,7236,7238,7239,7240,7241,7242,7243,7246,7247,7250,7252,7257,7258,7260,7261,7265,7266,7267,7270,7277,7279,7280,7282,7283,7284,7285,7286,7287,7291,7294,7295,7296,7297,7300,7301,7302,7303,7322,7323,7325,7328,7332,7333,7339,7342,7345,7346,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7360,7361,7362,7364,7365,7369,7375,7376,7379,7387,7390,7391,7406,7408,7419,7424,7435,7436,7437,7440,7442,7443,7452,7458,7460,7463,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7482,7483,7484,7497,7498,7499,7514,7518,7520,7531,7541,7542,7543,7547,7549,7553,7561,7562,7570,7571,7573,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7588,7590,7591,7593,7595,7596,7597,7599,7600,7602,7603,7604,7605,7607,7608,7609,7613,7655,7663,7664,7665,7688,7690,7704,7711,7712,7715,7733,7738,7742,7743,7744,7745,7746,7751,7752,7753,7772,7778,7779,7797,7804,7812,7814,7820,7821,7822,7828,7831,7843,7845,7849,7851,7854,7857,7858,7860,7887,7889,7890,7891,7892,7893,7895,7899,7900,7915,7917,7921,7924,7925,7928,7929,7948,7952,7958,7959,7960,7961,7973,7984,7986,8001,8004,8034,8050,8054,8055,8090,8099,8109,8120,8128,8129,8134,8135,8142,8144,8151,8152,8155,8156,8157,8159,8162,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8178,8181,8183,8184,8185,8188,8191,8202,8204,8205,8206,8207,8215,8220,8223,8252,8286,8287,8291,8293,8295,8297,8299,8300,8301,8306,8310,8311,8367,8373,8396,8397,8410,8414,8420,8434,8436,8437,8438,8444,8463,8497,8506,8509,8518,8573,8581,8583,8586,8589,8603,8604,8606,8609,8616,8618,8621,8623,8624,8627,8631,8633,8634,8644,8649,8652,8655,8663,8665,8669,8670,8693,8695,8702,8703,8704,8706,8707,8708,8709,8710,8711,8713,8715,8716,8717,8734,8746,8747,8753,8754,8765,8773,8774,8778,8793,8794,8797,8798,8799,8800,8802,8803,8812,8813,8814,8815,8817,8818,8819,8821,8823,8881,8882,8883,8885,8890,8897,8898,8907,8915,8933,8946,8974,8979,8985,8986,8989,8991,8994,8995,8996,8997,9000,9002,9003,9005,9006,9007,9008,9010,9013,9029,9039,9041,9042,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9059,9060,9061,9066,9076,9080,9084,9088,9091,9110,9112,9114,9117,9118,9119,9122,9139,9166,9175,9178,9185,9186,9187,9189,9190,9193,9201,9202,9204,9205,9210,9216,9223,9225,9229,9231,9232,9233,9236,9239,9240,9242,9244,9246,9252,9253,9254,9260,9263,9264,9267,9275,9278,9279,9283,9284,9290,9295,9296,9302,9308,9309,9313,9316,9317,9318,9319,9322,9325,9329,9331,9333,9337,9338,9339,9341,9342,9344,9345,9351,9353,9354,9356,9359,9362,9363,9365,9371,9372,9373,9377,9378,9379,9380,9387,9391,9394,9396,9397,9398,9399,9401,9402,9421,9422,9436,9443,9444,9450,9468,9470,9471,9474,9476,9477,9479,9485,9487,9488,9491,9492,9494,9495,9496,9497,9499,9500,9501,9502,9503,9504,9508,9518,9523,9532,9533,9536,9537,9539,9548,9549,9550,9552,9553,9554,9555,9556,9557,9565,9567,9572,9575,9578,9586,9587,9588,9589,9590,9591,9592,9593,9594,9604,9630,9633,9636,9646,9647,9648,9658,9663,9664,9665,9667,9691,9692,9694,9701,9707,9708,9709,9723,9726,9728,9735,9737,9740,9745,9746,9754,9759,9762,9763,9768,9781,9782,9792,9803,9809,9810,9816,9823,9824,9825,9832,9833,9836,9839,9842,9844,9846,9847,9848,9852,9854,9859,9860,9861,9862,9863,9864,9866,9868,9873,9874,9875,9876,9882,9894,9899,9902,9910,9920,9921,9922,9923,9928,9930,9934,9937,9943,9949,9953,9959,9960,9962,9965,9966,9971,9977,9981,9985,9990,9991,9992,9994,9995,9996,9997,9998,9999,10000,10001,10002,10003,10004,10006,10008,10011,10015,10016,10017,10018,10019,10022,10024,10027,10029,10030,10031,10036,10039,10040,10046,10049,10054,10056,10059,10062,10065,10067,10075,10076,10077,10078,10080,10081,10082,10092,10093,10094,10096,10099,10100,10101,10102,10103,10106,10107,10109,10114,10115,10117,10121,10123,10124,10125,10126,10128,10129,10131,10135,10139,10141,10147,10148,10149,10150,10153,10154,10158,10160,10161,10163,10164,10167,10168,10171,10172,10174,10176,10177,10181,10186,10188,10189,10190,10191,10192,10197,10202,10204,10205,10206,10211,10215,10221,10222,10231,10235,10238,10309,10469,10485,10486,10634,10635,10638,10672,10673,10675,10676,10682,10683,10687,10691,10743,10762,10766,10770,10771,10774,10776,10784,10791,10793,10794,10803,10804,10805,10806,10816,10817,10819,10820,10822,10824,10827,10828,10830,10831,10834,10843,10845,10846,10848,10849,10851,10853,10854,10856,10857,10859,10860,10861,10864,10867,10870,10873,10879,10880,10882,10883,10885,10886,10887,10889,10890,10896,10901,10903,10920,10937,10943,10944,10945,10946,10947,10948,10949,10950,10951,10952,10953,10956,10958,10960,10961,10962,10963,10964,10965,10969,10970,10971,10972,10975,10976,10977,10978,10980,10982,10983,10987,10988,10996,11007,11008,11011,11013,11014,11015,11034,11049,11052,11053,11089,11099,11104,11107,11132,11145,11147,11148,11151,11152,11153,11155,11156,11161,11162,11163,11165,11169,11172,11173,11174,11175,11180,11182,11184,11185,11186,11187,11189,11195,11197,11199,11200,11203,11212,11215,11222,11223,11230,11262,11269,11270,11275,11278,11281,11282,11283,11286,11289,11290,11292,11293,11294,11296,11298,11299,11301,11323,11324,11325,11326,11327,11328,11330,11331,11334,11335,11336,11345,11346,11347,11357,11358,11362,11368,11372,11375,11410,11416,11418,11428,11430,11438,11439,11442,11443,11444,11446,11448,11449,11450,11451,11458,11461,11463,11464,11465,11467,11471,11473,11477,11479,11481,11482,11486,11487,11488,11489,11492,11494,11498,11499,11501,11502,11503,11504,11505,11511,11516,11517,11518,11521,11526,11528,11529,11532,11533,11539,11546,11548,11549,11552,11553,11555,11557,11558,11560,11561,11562,11564,11565,11569,11573,11578,11580,11582,11583,11584,11585,11586,11587,11590,11591,11592,11593,11600,11601,11602,11604,11605,11606,11607,11608,11609,11613,11614,11615,11616,11619,11624,11630,11631,11634,11636,11638,11640,11642,11648,11651,11653,11659,11661,11662,11668,11670,11674,11675,11676,11679,11681,11683,11684,11685,11686,11689,11691,11695,11696,11697,11698,11699,11701,11706,11708,11711,11713,11719,11731,11736,11737,11748,11749,11750,11751,11752,11753,11757,11758,11761,11765,11767,11769,11770,11773,11774,11775,11777,11783,11785,11786,11788,11789,11793,11794,11796,11797,11799,11801,11802,11806,11807,11808,11809,11810,11811,11812,11816,11818,11821,11822,11823,11826,11828,11832,11833,11834,11835,11836,11839,11842,11844,11845,11846,11847,11848,11849,11856,11857,11858,11860,11862,11864,11865,11868,11870,11874,11883,11886,11891,11892,11896,11897,11898,11899,11901,11910,11912,11913,11914,11917,11918,11919,11921,11923,11924,11925,11926,11930,11931,11935,11941,11943,11947,11948,11950,11954,11956,11957,11959,11960,11963,11964,11966,11967,11968,11969,11972,11978,11982,11992,11998,12000,12002,12003,12005,12006,12007,12008,12009,12011,12014,12015,12016,12017,12018,12019,12021,12023,12095,12100,12102,12103,12105,12107,12108,12111,12113,12172,12173,12179,12183,12184,12200,12201,12229,12230,12236,12242,12245,12252,12263,12301,12395,12494,12499,12502,12503,12507,12514,12515,12516,12517,12518,12578,12583,12584,12875,12876,12877,12878,12881,12890,12892,12893,12894,12895,12897,12898,13137,13794,13865,13867,13870,13923,13929,13931,13932,13933,13934,13941,13945,13947,13952,13956,13958,13960,13961,13962,13964,13965,13968,13970,13971,13973,13974,13976,13979,13981,13985,13986,13987,13988,13989,13993,13994,13996,13998,14001,14003,14012,14013,14021,14022,14028,14030,14031,14032,14034,14037,14040,14041,14042,14044,14053,14057,14058,14060,14063,14064,14066,14067,14069,14071,14072,14073,14075,14077,14080,14082,14084,14086,14087,14088,14091,14094,14097,14099,14100,14104,14116,14117,14119,14120,14121,14124,14131,14133,14136,14138,14139,14142,14146,14148,14149,14159,14164,14167,14175,14176,14177,14182,14183,14187,14188,14189,14191,14192,14198,14200,14204,14212,14223,14227,14230,14231,14236,14241,14244,14246,14249,14251,14252,14255,14257,14258,14259,14261,14262,14263,14265,14266,14274,14275,14279,14281,14285,14286,14289,14291,14292,14293,14295,14296,14298,14299,14300,14304,14305,14306,14307,14309,14310,14311,14312,14313,14315,14316,14317,14318,14319,14320,14321,14322,14323,14326,14327,14329,14331,14332,14336,14337,14340,14345,14348,14352,14354,14355,14357,14360,14365,14366,14367,14368,14370,14371,14372,14376,14377,14378,14379,14384,14386,14388,14389,14390,14391,14392,14394,14395,14396,14397,14398,14399,14403,14404,14405,14406,14407,14410,14411,14415,14416,14419,14420,14432,14434,14437,14443,14444,14453,14454,14455,14457,14459,14467,14468,14470,14474,14478,14483,14484,14490,14491,14505,14511,14516,14524,14526,14528,14529,14530,14534,14536,14538,14541,14543,14544,14545,14546,14552,14555,14563,14621,14622,14625,14627,14630,14635,14642,14669,14731,14748,14754,14765,14785,14793,14795,14798,14860,14916,14948,14951,14966,14968,14972,14976,14977,15018,15066,15079,15092,15117,15134,15190,15202,15217,15227,15232,15257,15260,15261,15262,15267,15270,15271,15272,15278,15279,15283,15285,15290,15295,15301,15303,15307,15309,15317,15321,15322,15327,15331,15332,15334,15341,15344,15372,15377,15378,15391,15397,15404,15412,15415,15416,15419,15420,15424,15426,15427,15429,15430,15431,15432,15434,15436,15442,15445,15448,15449,15453,15454,15455,15457,15460,15466,15467,15469,15470,15472,15473,15474,15475,15478,15479,15483,15486,15487,15488,15490,15491,15492,15494,15495,15496,15499,15500,15501,15504,15505,15507,15508,15509,15510,15511,15513,15514,15521,15522,15533,15536,15537,15540,15542,15543,15550,15551,15555,15557,15562,15566,15568,15569,15570,15571,15572,15587,15595,15602,15604,15605,15606,15607,15609,15610,15613,15625,15652,15653,15655,15667,15676,15685,15691,15698,15699,15700,15701,15705,15707,15712,15714,15718,15720,15723,15727,15730,15742,15745,15769,15770,15775,15781,15782,15785,15787,15788,15790,15794,15795,15797,15803,15804,15810,15814,15815,15817,15818,15831,15839,15840,15841,15842,15843,15844,15845,15849,15852,15853,15854,15855,15857,15860,15861,15862,15863,15864,15865,15866,15868,15869,15870,15873,15875,15876,15877,15878,15879,15880,15881,15882,15884,15885,15889,15893,15894,15895,15896,15898,15899,15910,15929,15931,15939,15950,15953,15955,15962,15963,15973,15987,16005,16006,16024,16035,16043,16047,16049,16054,16057,16064,16067,16072,16075,16076,16083,16086,16088,16089,16090,16093,16098,16100,16101,16103,16104,16108,16110,16111,16112,16114,16115,16116,16117,16118,16119,16122,16124,16127,16130,16131,16136,16140,16141,16145,16147,16149,16151,16152,16153,16156,16159,16162,16164,16172,16173,16174,16175,16176,16177,16178,16180,16181,16188,16189,16194,16195,16196,16197,16229,16235,16236,16237,16239,16240,16243,16260,16264,16267,16269,16271,16275,16277,16279,16287,16291,16294,16300,16302,16304,16306,16308,16310,16323,16328,16329,16330,16334,16337,16338,16340,16341,16342,16343,16346,16348,16349,16350,16351,16353,16357,16358,16362,16363,16372,16376,16378,16384,16386,16389,16407,16429,16438,16439,16460,16462,16464,16466,16467,16474,16481,16487,16488,16538,16556,16615,16624,16648,16659,16678,16683,16685,16689,16708,16741,16774,16798,16799,16810,16815,16816,16818,16823,16832,16833,16836,16840,16842,16843,16844,16845,16846,16847,16849,16860,16876,16888,16911,16928,16942,16946,16948,16964,16966,16976,16977,16981,16985,16986,16987,17014,17015,17017,17019,17027,17029,17034,17038,17061,17097,17100,17135,17201,17221,17237,17249,17260,17314,17656,17658,17663,17664,17665,17672,17674,17678,17682,17688,17690,17695,17696,17697,17702,17704,17706,17708,17715,17720,17721,17723,17724,17735,17738,17746,17748,17751,17755,17763,17764,17772,17774,17781,17785,17792,17793,17794,17799,17800,17808,17810,17812,17818,17820,17824,17825,17836,17840,17842,17843,17848,17870,17876,17883,17886,17887,17893,17899,17901,17904,17905,17910,17911,17912,17915,17919,17929,17930,17931,17933,17950,17951,17952,17955,17960,17982,17983,17986,17989,18001,18004,18005,18008,18016,18018,18020,18021,18022,18023,18024,18025,18026,18029,18031,18032,18045,18052,18066,18069,18077,18086,18088,18094,18095,18096,18098,18109,18110,18116,18118,18119,18124,18126,18127,18128,18134,18138,18140,18141,18142,18143,18145,18146,18147,18151,18152,18154,18163,18164,18169,18177,18178,18185,18193,18199,18203,18212,18215,18218,18226,18235,18243,18244,18246,18247,18248,18249,18250,18251,18253,18254,18255,18259,18265,18281,18284,18285,18289,18300,18301,18305,18309,18319,18322,18330,18337,18340,18345,18348,18350,18353,18356,18358,18366,18367,18368,18369,18370,18372,18373,18374,18384,18385,18386,18388,18391,18392,18393,18394,18395,18397,18410,18412,18417,18418,18420,18423,18425,18427,18433,18448,18451,18455,18464,18465,18467,18468,18471,18472,18485,18486,18488,18490,18492,18493,18501,18504,18506,18508,18515,18516,18517,18519,18520,18521,18535,18538,18539,18556,18557,18562,18564,18566,18567,18568,18569,18572,18574,18575,18578,18579,18580,18582,18585,18586,18603,18615,18616,18628,18631,18634,18636,18637,18640,18641,18643,18644,18649,18650,18654,18659,18661,18662,18663,18672,18674,18676,18682,18684,18686,18688,18693,18695,18699,18701,18704,18705,18706,18707,18708,18712,18717,18721,18724,18728,18729,18731,18733,18736,18740,18745,18746,18747,18748,18753,18754,18756,18757,18759,18784,18791,18794,18795,18797,18799,18800,18813,18815,18819,18820,18821,18822,18823,18827,18830,18835,18837,18840,18841,18843,18844,18845,18846,18849,18851,18852,18853,18856,18857,18858,18860,18862,18863,18865,18866,18873,18880,18882,18883,18893,18894,18897,18904,18905,18908,18920,18922,18923,18924,18927,18928,18931,18934,18936,18937,18938,18939,18942,18943,18944,18945,18948,18950,18953,18954,18955,18957,18958,18959,18960,18961,18965,18966,18967,18968,18969,18970,18971,18973,18974,18977,18982,18984,18994,18996,19002,19003,19008,19012,19013,19014,19015,19016,19018,19019,19022,19023,19024,19025,19027,19028,19029,19030,19031,19035,19036,19044,19053,19054,19060,19061,19062,19063,19067,19069,19070,19072,19073,19076,19077,19080,19082,19087,19095,19098,19099,19100,19101,19104,19105,19110,19111,19119,19120,19121,19122,19123,19130,19132,19138,19140,19147,19148,19149,19151,19154,19156,19157,19160,19161,19162,19165,19166,19167,19170,19172,19178,19181,19182,19184,19187,19188,19190,19192,19195,19197,19198,19199,19200,19202,19203,19207,19211,19217,19219,19222,19224,19225,19227,19229,19231,19232,19235,19237,19242,19243,19244,19246,19247,19248,19250,19252,19261,19262,19263,19265,19266,19267,19268,19269,19271,19272,19274,19275,19277,19278,19279,19280,19281,19282,19291,19294,19300,19302,19303,19304,19307,19308,19313,19315,19316,19317,19321,19324,19326,19330,19331,19334,19335,19337,19339,19341,19345,19346,19347,19350,19351,19352,19355,19357,19362,19364,19367,19370,19371,19372,19376,19377,19378,19381,19383,19385,19389,19390,19395,19397,19403,19407,19408,19410,19413,19418,19419,19421,19422,19423,19424,19425,19426,19429,19430,19433,19434,19435,19438,19441,19442,19444,19447,19448,19450,19451,19452,19453,19454,19455,19456,19457,19459,19460,19462,19463,19465,19470,19472,19478,19483,19484,19485,19486,19488,19489,19490,19491,19492,19493,19495,19496,19499,19500,19501,19502,19503,19504,19507,19508,19512,19513,19514,19515,19516,19517,19518,19519,19520,19521,19522,19525,19527,19528,19529,19531,19532,19537,19538,19539,19541,19542,19543,19546,19549,19551,19561,19562,19563,19564,19565,19566,19567,19570,19571,19573,19574,19576,19579,19580,19581,19582,19584,19585,19587,19588,19590,19591,19592,19597,19598,19600,19604,19607,19609,19611,19612,19614,19615,19617,19618,19619,19620,19622,19623,19624,19627,19629,19630,19631,19632,19633,19634,19639,19642,19643,19644,19645,19646,19649,19650,19651,19652,19654,19655,19656,19657,19658,19660,19661,19665,19666,19667,19668,19669,19670,19671,19672,19675,19676,19677,19678,19679,19684,19685,19688,19690,19691,19692,19693,19694,19697,19698,19701,19702,19703,19705,19706,19707,19708,19709,19711,19713,19714,19718,19719,19722,19723,19724,19725,19726,19727,19728,19729,19731,19732,19734,19736,19737,19739,19745,19746,19747,19749,19757,19758,19759,19761,19767,19773,19775,19776,19777,19779,19785,19786,19787,19788,19789,19791,19792,19794,19795,19798,19799,19800,19802,19803,19805,19806,19809,19813,19814,19818,19823,19824,19825,19827,19835,19836,19840,19841,19842,19843,19846,19847,19848,19849,19850,19851,19852,19853,19868,19869,19871,19872,19876,19877,19880,19881,19883,19891,19897,19898,19909,19911,19912,19915,19916,19938,19939,19940,19941,19942,19943,19944,19962,19977,19978,19979,19980,19981,19982,19984,19986,19988,19990,19993,19994,19995,19996,19998,19999,20001,20004,20005,20007,20012,20017,20021,20026,20031,20032,20033,20034,20035,20036,20039,20040,20042,20043,20044,20045,20046,20050,20058,20060,20063,20068,20070,20071,20073,20074,20075,20077,20079,20080,20081,20088,20090,20092,20095,20105,20106,20110,20115,20118,20120,20122,20123,20124,20127,20128,20129,20133,20134,20139,20140,20141,20143,20145,20147,20153,20155,20157,20158,20159,20161,20162,20164,20165,20166,20167,20170,20171,20173,20176,20179,20180,20181,20184,20187,20190,20191,20194,20195,20196,20199,20200,20201,20206,20211,20213,20222,20223,20224,20226,20231,20236,20237,20238,20241,20245,20248,20251,20257,20260,20262,20264,20265,20267,20268,20269,20270,20274,20278,20279,20289,20293,20296,20315,20319,20321,20322,20327,20328,20330,20338,20339,20340,20349,20352,20378,20379,20380,20394,20404,20409,20413,20415,20418,20420,20431,20436,20440,20443,20461,20463,20467,20492,20514,20516,20518,20524,20525,20542,20559,20561,20563,20564,20570,20573,20576,20577,20578,20581,20586,20596,20604,20616,20620,20626,20631,20637,20651,20660,20665,20667,20669,20670,20678,20680,20681,20688,20695,20696,20697,20700,20701,20705,20706,20709,20710,20713,20714,20715,20722,20729,20731,20733,20735,20738,20739,20740,20743,20755,20761,20763,20797,20820,20824,20826,20836,20846,20849,20850,20896,20897,20900,20902,20907,20914,20915,20921,20933,20937,20939,20940,20942,20943,20945,20947,20949,20952,20961,20962,20976,20977,20990,20992,20993,20998,20999,21004,21008,21043,21057,21070,21071,21076,21083,21084,21088,21090,21094,21100,21101,21106,21114,21122,21158,21168,21177,21179,21180,21183,21184,21189,21192,21200,21204,21205,21207,21210,21212,21216,21223,21224,21229,21230,21231,21249,21263,21265,21281,21302,21303,21309,21310,21314,21320,21322,21337,21340,21343,21345,21348,21353,21354,21356,21359,21360,21370,21375,21379,21382,21395,21397,21398,21401,21403,21410,21411,21412,21425,21426,21448,21454,21455,21470,21476,21478,21523,21548,21565,21576,21577,21596,21601,21602,21603,21604,21631,21634,21653,21658,21659,21664,21667,21668,21669,21711,21712,21716,21737,21990,21992,21998,22001,22002,22008,22095,22096,22098,22101,22118,22121,22125,22126,22129,22133,22134,22143,22148,22149,22156,22158,22159,22168,22170,22188,22195,22207,22212,22213,22222,22228,22237,22250,22251,22254,22257,22261,22265,22270,22281,22283,22284,22291,22292,22300,22305,22306,22310,22312,22322,22323,22324,22325,22328,22329,22330,22332,22334,22337,22338,22342,22343,22351,22354,22357,22359,22360,22361,22364,22366,22367,22369,22370,22373,22375,22377,22379,22380,22382,22383,22385,22390,22395,22396,22401,22405,22407,22410,22413,22416,22418,22419,22420,22421,22423,22427,22429,22431,22437,22438,22439,22440,22441,22443,22450,22458,22460,22461,22464,22467,22470,22472,22479,22480,22481,22483,22488,22492,22493,22501,22502,22503,22507,22508,22510,22511,22514,22518,22525,22528,22532,22534,22535,22540,22541,22545,22547,22548,22549,22550,22554,22555,22557,22558,22559,22561,22570,22571,22572,22574,22578,22580,22582,22591,22598,22600,22602,22608,22612,22613,22616,22619,22621,22622,22624,22625,22626,22627,22630,22632,22633,22637,22640,22643,22649,22650,22653,22654,22655,22656,22671,22672,22673,22674,22681,22686,22687,22691,22693,22695,22696,22698,22701,22712,22717,22733,22743,22750,22761,22762,22768,22770,22776,22786,22787,22788,22789,22790,22792,22793,22794,22797,22799,22801,22804,22807,22808,22810,22812,22814,22815,22816,22822,22825,22828,22829,22832,22835,22837,22840,22841,22842,22843,22845,22847,22848,22849,22852,22853,22854,22856,22859,22861,22862,22863,22864,22865,22866,22869,22870,22872,22875,22878,22879,22880,22881,22882,22884,22885,22888,22889,22890,22891,22892,22894,22895,22898,22904,22905,22907,22908,22909,22910,22911,22912,22913,22914,22917,22918,22919,22921,22922,22928,22930,22931,22932,22940,22956,22959,22960,22961,22962,22963,22964,22965,22966,22969,22970,22971,22974,22975,22977,22978,22979,22980,22982,22983,22985,22987,22990,22993,22994,22995,22996,22997,22998,22999,23000,23013,23014,23015,23017,23019,23021,23022,23023,23028,23032,23033,23034,23039,23041,23043,23046,23049,23050,23052,23053,23061,23062,23066,23067,23068,23069,23071,23073,23075,23077,23080,23081,23084,23085,23086,23088,23089,23090,23091,23093,23094,23095,23096,23097,23098,23099,23100,23102,23103,23105,23107,23110,23111,23114,23115,23116,23117,23119,23120,23121,23123,23124,23125,23126,23127,23130,23131,23132,23133,23134,23136,23137,23139,23141,23143]]],["LORD'S",[106,103,[[1,8,8,0,8,[[58,1,1,0,1],[61,2,2,1,3],[62,2,2,3,5],[81,1,1,5,6],[84,2,2,6,8]]],[2,6,5,8,13,[[92,1,1,8,9],[105,1,1,9,10],[112,1,1,10,11],[116,3,2,11,13]]],[3,10,10,13,23,[[127,2,2,13,15],[134,1,1,15,16],[147,5,5,16,21],[148,2,2,21,23]]],[4,4,4,23,27,[[162,1,1,23,24],[163,1,1,24,25],[167,1,1,25,26],[184,1,1,26,27]]],[5,3,3,27,30,[[187,1,1,27,28],[191,1,1,28,29],[208,1,1,29,30]]],[6,1,1,30,31,[[221,1,1,30,31]]],[8,13,13,31,44,[[237,2,2,31,33],[249,1,1,33,34],[251,1,1,34,35],[252,1,1,35,36],[253,1,1,36,37],[257,1,1,37,38],[259,2,2,38,40],[261,4,4,40,44]]],[9,4,4,44,48,[[267,2,2,44,46],[285,1,1,46,47],[287,1,1,47,48]]],[11,2,2,48,50,[[323,1,1,48,49],[325,1,1,49,50]]],[13,2,2,50,52,[[373,1,1,50,51],[389,1,1,51,52]]],[18,8,8,52,60,[[488,1,1,52,53],[499,1,1,53,54],[501,1,1,54,55],[590,1,1,55,56],[592,1,1,56,57],[593,1,1,57,58],[595,1,1,58,59],[614,1,1,59,60]]],[19,1,1,60,61,[[643,1,1,60,61]]],[22,6,6,61,67,[[680,1,1,61,62],[712,1,1,62,63],[718,1,1,63,64],[720,1,1,64,65],[722,1,1,65,66],[737,1,1,66,67]]],[23,17,16,67,83,[[749,1,1,67,68],[751,1,1,68,69],[757,1,1,69,70],[763,1,1,70,71],[769,1,1,71,72],[770,3,2,72,74],[771,1,1,74,75],[772,2,2,75,77],[780,3,3,77,80],[795,3,3,80,83]]],[24,2,2,83,85,[[798,1,1,83,84],[799,1,1,84,85]]],[25,5,5,85,90,[[809,2,2,85,87],[811,2,2,87,89],[812,1,1,89,90]]],[27,1,1,90,91,[[870,1,1,90,91]]],[28,1,1,91,92,[[876,1,1,91,92]]],[30,1,1,92,93,[[888,1,1,92,93]]],[32,2,2,93,95,[[898,2,2,93,95]]],[34,1,1,95,96,[[904,1,1,95,96]]],[35,4,4,96,100,[[906,2,2,96,98],[907,2,2,98,100]]],[36,3,2,100,102,[[909,3,2,100,102]]],[37,1,1,102,103,[[924,1,1,102,103]]]],[1771,1827,1843,1876,1879,2464,2552,2555,2794,3210,3407,3596,3600,4047,4053,4285,4701,4702,4703,4704,4705,4728,4731,5200,5225,5321,5767,5866,5949,6445,6860,7248,7264,7511,7601,7665,7693,7808,7845,7849,7914,7916,7921,7928,8036,8038,8532,8587,9846,9888,11326,11672,14063,14232,14242,15816,15846,15867,15892,16226,16851,17687,18311,18422,18499,18538,18801,19068,19121,19283,19421,19551,19574,19582,19612,19621,19624,19848,19850,19852,20218,20219,20263,20354,20376,20618,20620,20637,20652,20656,22211,22300,22531,22650,22657,22764,22795,22805,22807,22808,22842,22853,23088]]],["Lord",[3,3,[[18,1,1,0,1,[[545,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]],[26,1,1,2,3,[[858,1,1,2,3]]]],[14926,17866,21996]]]]},{"k":"H3069","v":[["*",[302,291,[[0,2,2,0,2,[[14,2,2,0,2]]],[4,2,2,2,4,[[155,1,1,2,3],[161,1,1,3,4]]],[5,1,1,4,5,[[193,1,1,4,5]]],[6,2,2,5,7,[[216,1,1,5,6],[226,1,1,6,7]]],[9,7,5,7,12,[[273,7,5,7,12]]],[18,8,8,12,20,[[545,1,1,12,13],[546,1,1,13,14],[548,2,2,14,16],[550,1,1,16,17],[586,1,1,17,18],[617,1,1,18,19],[618,1,1,19,20]]],[22,24,24,20,44,[[685,1,1,20,21],[688,2,2,21,23],[700,4,4,23,27],[703,1,1,27,28],[706,2,2,28,30],[708,1,1,30,31],[718,1,1,31,32],[726,1,1,32,33],[727,1,1,33,34],[728,4,4,34,38],[730,1,1,38,39],[734,1,1,39,40],[739,2,2,40,42],[743,2,2,42,44]]],[23,14,13,44,57,[[745,1,1,44,45],[746,2,2,45,47],[748,1,1,47,48],[751,1,1,48,49],[758,1,1,49,50],[776,2,2,50,52],[788,1,1,52,53],[790,2,1,53,54],[793,1,1,54,55],[794,2,2,55,57]]],[25,217,210,57,267,[[803,1,1,57,58],[804,2,2,58,60],[805,1,1,60,61],[806,4,4,61,65],[807,3,2,65,67],[808,2,2,67,69],[809,1,1,69,70],[810,1,1,70,71],[812,6,6,71,77],[813,6,5,77,82],[814,8,7,82,89],[815,9,9,89,98],[816,2,2,98,100],[817,11,11,100,111],[818,5,5,111,116],[819,5,5,116,121],[821,13,12,121,133],[822,5,5,133,138],[823,5,5,138,143],[824,7,7,143,150],[825,6,6,150,156],[826,9,8,156,164],[827,7,7,164,171],[828,1,1,171,172],[829,7,7,172,179],[830,6,6,179,185],[831,5,5,185,190],[832,3,3,190,193],[833,7,7,193,200],[834,3,3,200,203],[835,9,9,203,212],[836,4,4,212,216],[837,15,14,216,230],[838,6,6,230,236],[839,6,6,236,242],[840,9,9,242,251],[844,3,3,251,254],[845,5,5,254,259],[846,4,3,259,262],[847,2,2,262,264],[848,2,2,264,266],[849,1,1,266,267]]],[29,21,20,267,287,[[879,1,1,267,268],[881,4,4,268,272],[882,2,2,272,274],[883,1,1,274,275],[884,1,1,275,276],[885,6,5,276,281],[886,4,4,281,285],[887,2,2,285,287]]],[30,1,1,287,288,[[888,1,1,287,288]]],[32,1,1,288,289,[[893,1,1,288,289]]],[35,1,1,289,290,[[906,1,1,289,290]]],[37,1,1,290,291,[[919,1,1,290,291]]]],[362,368,4999,5183,5983,6676,6977,8198,8199,8200,8208,8209,14920,14941,14981,14992,15048,15776,16270,16284,17789,17873,17874,18057,18064,18066,18067,18126,18180,18186,18232,18430,18630,18658,18666,18667,18669,18671,18700,18761,18844,18854,18910,18912,18952,18984,18987,19037,19139,19306,19748,19756,20036,20055,20132,20191,20197,20496,20513,20529,20543,20551,20553,20554,20557,20566,20574,20579,20582,20605,20630,20662,20663,20668,20671,20672,20676,20690,20699,20703,20705,20708,20711,20716,20717,20721,20724,20726,20728,20735,20737,20742,20745,20747,20749,20751,20752,20754,20760,20762,20765,20770,20776,20781,20785,20792,20798,20805,20810,20821,20825,20828,20834,20841,20844,20847,20852,20858,20872,20879,20881,20898,20900,20922,20925,20926,20928,20931,20934,20935,20939,20942,20944,20951,20957,20968,20970,20972,20979,20988,20995,21004,21007,21029,21035,21039,21041,21042,21053,21056,21059,21062,21065,21070,21077,21080,21086,21089,21091,21095,21096,21097,21098,21099,21103,21105,21107,21114,21115,21119,21121,21124,21159,21163,21167,21169,21179,21181,21182,21186,21191,21196,21199,21202,21203,21206,21210,21214,21217,21226,21240,21245,21248,21251,21256,21259,21262,21264,21279,21280,21291,21305,21307,21315,21321,21323,21324,21328,21330,21333,21343,21344,21347,21350,21355,21358,21361,21362,21363,21364,21365,21366,21372,21373,21374,21381,21382,21391,21392,21396,21400,21402,21406,21409,21416,21418,21428,21435,21439,21442,21443,21446,21449,21453,21456,21458,21461,21465,21468,21473,21477,21590,21591,21599,21605,21608,21611,21614,21626,21639,21645,21648,21656,21671,21692,21702,21731,22372,22402,22403,22406,22408,22412,22415,22426,22458,22465,22466,22468,22469,22470,22482,22484,22490,22492,22500,22503,22511,22581,22794,23013]]],["GOD",[301,291,[[0,2,2,0,2,[[14,2,2,0,2]]],[4,2,2,2,4,[[155,1,1,2,3],[161,1,1,3,4]]],[5,1,1,4,5,[[193,1,1,4,5]]],[6,2,2,5,7,[[216,1,1,5,6],[226,1,1,6,7]]],[9,6,5,7,12,[[273,6,5,7,12]]],[18,8,8,12,20,[[545,1,1,12,13],[546,1,1,13,14],[548,2,2,14,16],[550,1,1,16,17],[586,1,1,17,18],[617,1,1,18,19],[618,1,1,19,20]]],[22,24,24,20,44,[[685,1,1,20,21],[688,2,2,21,23],[700,4,4,23,27],[703,1,1,27,28],[706,2,2,28,30],[708,1,1,30,31],[718,1,1,31,32],[726,1,1,32,33],[727,1,1,33,34],[728,4,4,34,38],[730,1,1,38,39],[734,1,1,39,40],[739,2,2,40,42],[743,2,2,42,44]]],[23,14,13,44,57,[[745,1,1,44,45],[746,2,2,45,47],[748,1,1,47,48],[751,1,1,48,49],[758,1,1,49,50],[776,2,2,50,52],[788,1,1,52,53],[790,2,1,53,54],[793,1,1,54,55],[794,2,2,55,57]]],[25,217,210,57,267,[[803,1,1,57,58],[804,2,2,58,60],[805,1,1,60,61],[806,4,4,61,65],[807,3,2,65,67],[808,2,2,67,69],[809,1,1,69,70],[810,1,1,70,71],[812,6,6,71,77],[813,6,5,77,82],[814,8,7,82,89],[815,9,9,89,98],[816,2,2,98,100],[817,11,11,100,111],[818,5,5,111,116],[819,5,5,116,121],[821,13,12,121,133],[822,5,5,133,138],[823,5,5,138,143],[824,7,7,143,150],[825,6,6,150,156],[826,9,8,156,164],[827,7,7,164,171],[828,1,1,171,172],[829,7,7,172,179],[830,6,6,179,185],[831,5,5,185,190],[832,3,3,190,193],[833,7,7,193,200],[834,3,3,200,203],[835,9,9,203,212],[836,4,4,212,216],[837,15,14,216,230],[838,6,6,230,236],[839,6,6,236,242],[840,9,9,242,251],[844,3,3,251,254],[845,5,5,254,259],[846,4,3,259,262],[847,2,2,262,264],[848,2,2,264,266],[849,1,1,266,267]]],[29,21,20,267,287,[[879,1,1,267,268],[881,4,4,268,272],[882,2,2,272,274],[883,1,1,274,275],[884,1,1,275,276],[885,6,5,276,281],[886,4,4,281,285],[887,2,2,285,287]]],[30,1,1,287,288,[[888,1,1,287,288]]],[32,1,1,288,289,[[893,1,1,288,289]]],[35,1,1,289,290,[[906,1,1,289,290]]],[37,1,1,290,291,[[919,1,1,290,291]]]],[362,368,4999,5183,5983,6676,6977,8198,8199,8200,8208,8209,14920,14941,14981,14992,15048,15776,16270,16284,17789,17873,17874,18057,18064,18066,18067,18126,18180,18186,18232,18430,18630,18658,18666,18667,18669,18671,18700,18761,18844,18854,18910,18912,18952,18984,18987,19037,19139,19306,19748,19756,20036,20055,20132,20191,20197,20496,20513,20529,20543,20551,20553,20554,20557,20566,20574,20579,20582,20605,20630,20662,20663,20668,20671,20672,20676,20690,20699,20703,20705,20708,20711,20716,20717,20721,20724,20726,20728,20735,20737,20742,20745,20747,20749,20751,20752,20754,20760,20762,20765,20770,20776,20781,20785,20792,20798,20805,20810,20821,20825,20828,20834,20841,20844,20847,20852,20858,20872,20879,20881,20898,20900,20922,20925,20926,20928,20931,20934,20935,20939,20942,20944,20951,20957,20968,20970,20972,20979,20988,20995,21004,21007,21029,21035,21039,21041,21042,21053,21056,21059,21062,21065,21070,21077,21080,21086,21089,21091,21095,21096,21097,21098,21099,21103,21105,21107,21114,21115,21119,21121,21124,21159,21163,21167,21169,21179,21181,21182,21186,21191,21196,21199,21202,21203,21206,21210,21214,21217,21226,21240,21245,21248,21251,21256,21259,21262,21264,21279,21280,21291,21305,21307,21315,21321,21323,21324,21328,21330,21333,21343,21344,21347,21350,21355,21358,21361,21362,21363,21364,21365,21366,21372,21373,21374,21381,21382,21391,21392,21396,21400,21402,21406,21409,21416,21418,21428,21435,21439,21442,21443,21446,21449,21453,21456,21458,21461,21465,21468,21473,21477,21590,21591,21599,21605,21608,21611,21614,21626,21639,21645,21648,21656,21671,21692,21702,21731,22372,22402,22403,22406,22408,22412,22415,22426,22458,22465,22466,22468,22469,22470,22482,22484,22490,22492,22500,22503,22511,22581,22794,23013]]],["LORD",[1,1,[[9,1,1,0,1,[[273,1,1,0,1]]]],[8198]]]]},{"k":"H3070","v":[["Jehovahjireh",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[561]]]]},{"k":"H3071","v":[["Jehovahnissi",[1,1,[[1,1,1,0,1,[[66,1,1,0,1]]]],[1998]]]]},{"k":"H3072","v":[]},{"k":"H3073","v":[["Jehovahshalom",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6678]]]]},{"k":"H3074","v":[]},{"k":"H3075","v":[["Jehozabad",[4,4,[[11,1,1,0,1,[[324,1,1,0,1]]],[12,1,1,1,2,[[363,1,1,1,2]]],[13,2,2,2,4,[[383,1,1,2,3],[390,1,1,3,4]]]],[9871,11081,11541,11703]]]]},{"k":"H3076","v":[["*",[9,9,[[12,1,1,0,1,[[363,1,1,0,1]]],[13,3,3,1,4,[[383,1,1,1,2],[389,1,1,2,3],[394,1,1,3,4]]],[14,2,2,4,6,[[412,2,2,4,6]]],[15,3,3,6,9,[[418,1,1,6,7],[424,2,2,7,9]]]],[11080,11538,11657,11776,12258,12280,12419,12637,12666]]],["Jehohanan",[6,6,[[12,1,1,0,1,[[363,1,1,0,1]]],[13,2,2,1,3,[[383,1,1,1,2],[389,1,1,2,3]]],[14,1,1,3,4,[[412,1,1,3,4]]],[15,2,2,4,6,[[424,2,2,4,6]]]],[11080,11538,11657,12280,12637,12666]]],["Johanan",[3,3,[[13,1,1,0,1,[[394,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]],[15,1,1,2,3,[[418,1,1,2,3]]]],[11776,12258,12419]]]]},{"k":"H3077","v":[["*",[48,44,[[9,4,4,0,4,[[274,1,1,0,1],[286,1,1,1,2],[289,2,2,2,4]]],[10,12,12,4,16,[[291,6,6,4,10],[292,5,5,10,15],[294,1,1,15,16]]],[11,8,7,16,23,[[323,5,4,16,20],[324,3,3,20,23]]],[12,2,2,23,25,[[364,2,2,23,25]]],[13,21,18,25,43,[[388,1,1,25,26],[389,8,7,26,33],[390,12,10,33,43]]],[23,1,1,43,44,[[773,1,1,43,44]]]],[8227,8577,8673,8675,8725,8743,8749,8753,8755,8761,8795,8799,8804,8805,8816,8848,9833,9838,9844,9846,9852,9857,9859,11114,11143,11655,11657,11664,11665,11667,11670,11672,11674,11679,11680,11683,11689,11691,11692,11694,11697,11699,11702,19661]]],["Jehoiada",[47,44,[[9,4,4,0,4,[[274,1,1,0,1],[286,1,1,1,2],[289,2,2,2,4]]],[10,12,12,4,16,[[291,6,6,4,10],[292,5,5,10,15],[294,1,1,15,16]]],[11,8,7,16,23,[[323,5,4,16,20],[324,3,3,20,23]]],[12,2,2,23,25,[[364,2,2,23,25]]],[13,20,18,25,43,[[388,1,1,25,26],[389,8,7,26,33],[390,11,10,33,43]]],[23,1,1,43,44,[[773,1,1,43,44]]]],[8227,8577,8673,8675,8725,8743,8749,8753,8755,8761,8795,8799,8804,8805,8816,8848,9833,9838,9844,9846,9852,9857,9859,11114,11143,11655,11657,11664,11665,11667,11670,11672,11674,11679,11680,11683,11689,11691,11692,11694,11697,11699,11702,19661]]],["Joash",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11679]]]]},{"k":"H3078","v":[["Jehoiachin",[10,8,[[11,6,5,0,5,[[336,4,4,0,4],[337,2,1,4,5]]],[13,2,2,5,7,[[402,2,2,5,7]]],[23,2,1,7,8,[[796,2,1,7,8]]]],[10208,10210,10214,10217,10249,12001,12002,20307]]]]},{"k":"H3079","v":[["Jehoiakim",[37,37,[[11,7,7,0,7,[[335,3,3,0,3],[336,4,4,3,7]]],[12,2,2,7,9,[[340,2,2,7,9]]],[13,3,3,9,12,[[402,3,3,9,12]]],[23,23,23,12,35,[[745,1,1,12,13],[766,2,2,13,15],[768,1,1,15,16],[769,1,1,16,17],[770,4,4,17,21],[771,2,2,21,23],[772,1,1,23,24],[779,1,1,24,25],[780,6,6,25,31],[781,1,1,31,32],[789,1,1,32,33],[790,1,1,33,34],[796,1,1,34,35]]],[26,2,2,35,37,[[850,2,2,35,37]]]],[10199,10200,10201,10203,10207,10208,10221,10376,10377,11997,11998,12001,18949,19472,19478,19525,19535,19573,19593,19594,19595,19597,19616,19622,19824,19843,19851,19870,19871,19872,19874,19875,20041,20047,20278,21738,21739]]]]},{"k":"H3080","v":[["Jehoiarib",[2,2,[[12,2,2,0,2,[[346,1,1,0,1],[361,1,1,1,2]]]],[10625,11022]]]]},{"k":"H3081","v":[["Jehucal",[1,1,[[23,1,1,0,1,[[781,1,1,0,1]]]],[19877]]]]},{"k":"H3082","v":[["*",[7,6,[[11,3,2,0,2,[[322,3,2,0,2]]],[23,4,4,2,6,[[779,4,4,2,6]]]],[9808,9816,19831,19837,19839,19841]]],["Jehonadab",[3,2,[[11,3,2,0,2,[[322,3,2,0,2]]]],[9808,9816]]],["Jonadab",[4,4,[[23,4,4,0,4,[[779,4,4,0,4]]]],[19831,19837,19839,19841]]]]},{"k":"H3083","v":[["*",[111,96,[[6,1,1,0,1,[[228,1,1,0,1]]],[8,73,60,1,61,[[248,5,4,1,5],[249,25,20,5,25],[253,4,3,25,28],[254,8,5,28,33],[255,28,25,33,58],[258,2,2,58,60],[266,1,1,60,61]]],[9,24,22,61,83,[[267,8,8,61,69],[270,2,1,69,70],[275,3,3,70,73],[281,2,2,73,75],[283,2,2,75,77],[287,6,5,77,82],[289,1,1,82,83]]],[12,7,7,83,90,[[345,2,2,83,85],[346,2,2,85,87],[357,1,1,87,88],[364,2,2,88,90]]],[13,1,1,90,91,[[383,1,1,90,91]]],[14,2,2,91,93,[[410,1,1,91,92],[412,1,1,92,93]]],[15,1,1,93,94,[[424,1,1,93,94]]],[23,2,2,94,96,[[781,2,2,94,96]]]],[7023,7487,7488,7501,7507,7509,7511,7512,7514,7516,7520,7521,7522,7525,7529,7535,7537,7547,7548,7549,7550,7551,7552,7553,7557,7677,7679,7680,7707,7708,7710,7712,7713,7731,7733,7734,7735,7739,7740,7741,7742,7743,7746,7747,7748,7755,7757,7758,7760,7762,7763,7764,7765,7767,7768,7769,7770,7772,7826,7828,8011,8026,8027,8034,8039,8044,8045,8047,8048,8124,8230,8233,8234,8416,8425,8466,8469,8587,8592,8593,8594,8601,8685,10608,10609,10654,10655,10933,11134,11141,11531,12207,12267,12642,19889,19894]]],["Jehonathan",[3,3,[[12,1,1,0,1,[[364,1,1,0,1]]],[13,1,1,1,2,[[383,1,1,1,2]]],[15,1,1,2,3,[[424,1,1,2,3]]]],[11134,11531,12642]]],["Jonathan",[107,93,[[6,1,1,0,1,[[228,1,1,0,1]]],[8,72,60,1,61,[[248,5,4,1,5],[249,25,20,5,25],[253,4,3,25,28],[254,8,5,28,33],[255,27,25,33,58],[258,2,2,58,60],[266,1,1,60,61]]],[9,24,22,61,83,[[267,8,8,61,69],[270,2,1,69,70],[275,3,3,70,73],[281,2,2,73,75],[283,2,2,75,77],[287,6,5,77,82],[289,1,1,82,83]]],[12,6,6,83,89,[[345,2,2,83,85],[346,2,2,85,87],[357,1,1,87,88],[364,1,1,88,89]]],[14,2,2,89,91,[[410,1,1,89,90],[412,1,1,90,91]]],[23,2,2,91,93,[[781,2,2,91,93]]]],[7023,7487,7488,7501,7507,7509,7511,7512,7514,7516,7520,7521,7522,7525,7529,7535,7537,7547,7548,7549,7550,7551,7552,7553,7557,7677,7679,7680,7707,7708,7710,7712,7713,7731,7733,7734,7735,7739,7740,7741,7742,7743,7746,7747,7748,7755,7757,7758,7760,7762,7763,7764,7765,7767,7768,7769,7770,7772,7826,7828,8011,8026,8027,8034,8039,8044,8045,8047,8048,8124,8230,8233,8234,8416,8425,8466,8469,8587,8592,8593,8594,8601,8685,10608,10609,10654,10655,10933,11141,12207,12267,19889,19894]]],["Jonathan's",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7768]]]]},{"k":"H3084","v":[["Joseph",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15222]]]]},{"k":"H3085","v":[["Jehoadah",[2,1,[[12,2,1,0,1,[[345,2,1,0,1]]]],[10611]]]]},{"k":"H3086","v":[["Jehoaddan",[2,2,[[11,1,1,0,1,[[326,1,1,0,1]]],[13,1,1,1,2,[[391,1,1,1,2]]]],[9898,11705]]]]},{"k":"H3087","v":[["*",[8,8,[[12,2,2,0,2,[[343,2,2,0,2]]],[36,5,5,2,7,[[909,3,3,2,5],[910,2,2,5,7]]],[37,1,1,7,8,[[916,1,1,7,8]]]],[10468,10469,22841,22852,22854,22857,22859,22958]]],["Jehozadak",[2,2,[[12,2,2,0,2,[[343,2,2,0,2]]]],[10468,10469]]],["Josedech",[6,6,[[36,5,5,0,5,[[909,3,3,0,3],[910,2,2,3,5]]],[37,1,1,5,6,[[916,1,1,5,6]]]],[22841,22852,22854,22857,22859,22958]]]]},{"k":"H3088","v":[["*",[29,26,[[10,1,1,0,1,[[312,1,1,0,1]]],[11,15,13,1,14,[[313,2,1,1,2],[315,2,2,2,4],[320,3,3,4,7],[321,7,6,7,13],[324,1,1,13,14]]],[13,13,12,14,26,[[383,1,1,14,15],[387,6,6,15,21],[388,6,5,21,26]]]],[9530,9550,9577,9582,9743,9752,9756,9771,9773,9777,9778,9779,9780,9868,11531,11625,11627,11628,11629,11633,11640,11645,11649,11650,11651,11655]]],["+",[1,1,[[13,1,1,0,1,[[387,1,1,0,1]]]],[11640]]],["Jehoram",[22,20,[[10,1,1,0,1,[[312,1,1,0,1]]],[11,9,8,1,9,[[313,2,1,1,2],[315,2,2,2,4],[320,3,3,4,7],[321,1,1,7,8],[324,1,1,8,9]]],[13,12,11,9,20,[[383,1,1,9,10],[387,5,5,10,15],[388,6,5,15,20]]]],[9530,9550,9577,9582,9743,9752,9756,9780,9868,11531,11625,11627,11628,11629,11633,11645,11649,11650,11651,11655]]],["Joram",[6,5,[[11,6,5,0,5,[[321,6,5,0,5]]]],[9771,9773,9777,9778,9779]]]]},{"k":"H3089","v":[["Jehosheba",[1,1,[[11,1,1,0,1,[[323,1,1,0,1]]]],[9831]]]]},{"k":"H3090","v":[["Jehoshabeath",[2,1,[[13,2,1,0,1,[[388,2,1,0,1]]]],[11655]]]]},{"k":"H3091","v":[["*",[218,199,[[1,7,7,0,7,[[66,4,4,0,4],[73,1,1,4,5],[81,1,1,5,6],[82,1,1,6,7]]],[3,11,11,7,18,[[127,1,1,7,8],[129,1,1,8,9],[130,3,3,9,12],[142,1,1,12,13],[143,2,2,13,15],[148,2,2,15,17],[150,1,1,17,18]]],[4,9,8,18,26,[[153,1,1,18,19],[155,2,2,19,21],[183,5,4,21,25],[186,1,1,25,26]]],[5,168,151,26,177,[[187,4,4,26,30],[188,3,3,30,33],[189,6,6,33,39],[190,12,10,39,49],[191,10,8,49,57],[192,11,10,57,67],[193,12,12,67,79],[194,19,16,79,95],[195,9,8,95,103],[196,29,28,103,131],[197,14,11,131,142],[198,2,1,142,143],[199,1,1,143,144],[200,3,3,144,147],[201,1,1,147,148],[203,4,4,148,152],[204,5,4,152,156],[205,2,2,156,158],[206,1,1,158,159],[207,1,1,159,160],[208,4,3,160,163],[209,2,2,163,165],[210,13,12,165,177]]],[6,7,6,177,183,[[211,1,1,177,178],[212,6,5,178,183]]],[8,2,2,183,185,[[241,2,2,183,185]]],[10,1,1,185,186,[[306,1,1,185,186]]],[11,1,1,186,187,[[335,1,1,186,187]]],[12,1,1,187,188,[[344,1,1,187,188]]],[36,5,5,188,193,[[909,3,3,188,191],[910,2,2,191,193]]],[37,6,6,193,199,[[913,5,5,193,198],[916,1,1,198,199]]]],[1992,1993,1996,1997,2190,2455,2484,4052,4091,4114,4138,4146,4554,4572,4576,4730,4746,4833,4930,4996,5003,5731,5735,5742,5751,5848,5852,5861,5863,5867,5870,5892,5893,5894,5898,5899,5900,5902,5903,5911,5914,5915,5918,5919,5920,5924,5925,5927,5930,5936,5937,5938,5941,5943,5947,5948,5949,5951,5955,5957,5959,5961,5965,5971,5974,5975,5976,5978,5979,5982,5983,5986,5992,5995,5996,5998,5999,6000,6001,6003,6005,6011,6012,6015,6017,6018,6020,6023,6025,6028,6029,6030,6031,6032,6037,6039,6040,6043,6045,6052,6059,6061,6064,6065,6068,6070,6071,6072,6073,6076,6079,6081,6082,6084,6085,6086,6088,6089,6090,6091,6092,6093,6095,6097,6098,6100,6102,6104,6105,6106,6107,6113,6114,6116,6117,6119,6120,6122,6123,6125,6128,6130,6137,6155,6188,6193,6200,6215,6279,6289,6290,6292,6296,6301,6302,6303,6370,6372,6373,6382,6427,6432,6433,6461,6462,6477,6478,6495,6497,6498,6500,6501,6502,6503,6504,6505,6507,6510,6551,6552,6553,6566,6568,7345,7349,9317,10173,10562,22841,22852,22854,22857,22859,22913,22915,22918,22920,22921,22958]]],["+",[1,1,[[5,1,1,0,1,[[210,1,1,0,1]]]],[6500]]],["Jehoshua",[2,2,[[3,1,1,0,1,[[129,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]]],[4091,10562]]],["Joshua",[215,196,[[1,7,7,0,7,[[66,4,4,0,4],[73,1,1,4,5],[81,1,1,5,6],[82,1,1,6,7]]],[3,10,10,7,17,[[127,1,1,7,8],[130,3,3,8,11],[142,1,1,11,12],[143,2,2,12,14],[148,2,2,14,16],[150,1,1,16,17]]],[4,9,8,17,25,[[153,1,1,17,18],[155,2,2,18,20],[183,5,4,20,24],[186,1,1,24,25]]],[5,167,150,25,175,[[187,4,4,25,29],[188,3,3,29,32],[189,6,6,32,38],[190,12,10,38,48],[191,10,8,48,56],[192,11,10,56,66],[193,12,12,66,78],[194,19,16,78,94],[195,9,8,94,102],[196,29,28,102,130],[197,14,11,130,141],[198,2,1,141,142],[199,1,1,142,143],[200,3,3,143,146],[201,1,1,146,147],[203,4,4,147,151],[204,5,4,151,155],[205,2,2,155,157],[206,1,1,157,158],[207,1,1,158,159],[208,4,3,159,162],[209,2,2,162,164],[210,12,11,164,175]]],[6,7,6,175,181,[[211,1,1,175,176],[212,6,5,176,181]]],[8,2,2,181,183,[[241,2,2,181,183]]],[10,1,1,183,184,[[306,1,1,183,184]]],[11,1,1,184,185,[[335,1,1,184,185]]],[36,5,5,185,190,[[909,3,3,185,188],[910,2,2,188,190]]],[37,6,6,190,196,[[913,5,5,190,195],[916,1,1,195,196]]]],[1992,1993,1996,1997,2190,2455,2484,4052,4114,4138,4146,4554,4572,4576,4730,4746,4833,4930,4996,5003,5731,5735,5742,5751,5848,5852,5861,5863,5867,5870,5892,5893,5894,5898,5899,5900,5902,5903,5911,5914,5915,5918,5919,5920,5924,5925,5927,5930,5936,5937,5938,5941,5943,5947,5948,5949,5951,5955,5957,5959,5961,5965,5971,5974,5975,5976,5978,5979,5982,5983,5986,5992,5995,5996,5998,5999,6000,6001,6003,6005,6011,6012,6015,6017,6018,6020,6023,6025,6028,6029,6030,6031,6032,6037,6039,6040,6043,6045,6052,6059,6061,6064,6065,6068,6070,6071,6072,6073,6076,6079,6081,6082,6084,6085,6086,6088,6089,6090,6091,6092,6093,6095,6097,6098,6100,6102,6104,6105,6106,6107,6113,6114,6116,6117,6119,6120,6122,6123,6125,6128,6130,6137,6155,6188,6193,6200,6215,6279,6289,6290,6292,6296,6301,6302,6303,6370,6372,6373,6382,6427,6432,6433,6461,6462,6477,6478,6495,6497,6498,6501,6502,6503,6504,6505,6507,6510,6551,6552,6553,6566,6568,7345,7349,9317,10173,22841,22852,22854,22857,22859,22913,22915,22918,22920,22921,22958]]]]},{"k":"H3092","v":[["Jehoshaphat",[84,75,[[9,2,2,0,2,[[274,1,1,0,1],[286,1,1,1,2]]],[10,25,21,2,23,[[294,2,2,2,4],[305,1,1,4,5],[312,22,18,5,23]]],[11,12,10,23,33,[[313,1,1,23,24],[315,6,5,24,29],[320,2,1,29,30],[321,2,2,30,32],[324,1,1,32,33]]],[12,2,2,33,35,[[340,1,1,33,34],[355,1,1,34,35]]],[13,41,38,35,73,[[383,6,6,35,41],[384,12,10,41,51],[385,4,4,51,55],[386,14,14,55,69],[387,4,3,69,72],[388,1,1,72,73]]],[28,2,2,73,75,[[878,2,2,73,75]]]],[8225,8578,8847,8861,9273,9482,9484,9485,9487,9488,9490,9498,9509,9510,9512,9521,9522,9524,9525,9528,9529,9530,9531,9550,9577,9583,9587,9588,9590,9743,9758,9770,9868,10371,10905,11524,11526,11528,11533,11534,11535,11543,11545,11546,11548,11549,11551,11559,11570,11571,11573,11577,11578,11580,11584,11588,11589,11590,11592,11602,11605,11607,11612,11614,11617,11618,11621,11622,11624,11625,11626,11636,11653,22345,22355]]]]},{"k":"H3093","v":[["*",[2,2,[[19,1,1,0,1,[[648,1,1,0,1]]],[34,1,1,1,2,[[904,1,1,1,2]]]],[17008,22753]]],["haughty",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17008]]],["proud",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22753]]]]},{"k":"H3094","v":[["*",[2,2,[[12,1,1,0,1,[[341,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]]],[10401,11803]]],["Jehaleleel",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10401]]],["Jehalelel",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11803]]]]},{"k":"H3095","v":[["diamond",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[25,1,1,2,3,[[829,1,1,2,3]]]],[2311,2675,21170]]]]},{"k":"H3096","v":[["*",[9,9,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]],[5,2,2,2,4,[[199,1,1,2,3],[207,1,1,3,4]]],[6,1,1,4,5,[[221,1,1,4,5]]],[12,1,1,5,6,[[343,1,1,5,6]]],[22,1,1,6,7,[[693,1,1,6,7]]],[23,2,2,7,9,[[792,2,2,7,9]]]],[4363,4970,6172,6417,6849,10532,17964,20101,20114]]],["Jahaz",[5,5,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]],[6,1,1,2,3,[[221,1,1,2,3]]],[22,1,1,3,4,[[693,1,1,3,4]]],[23,1,1,4,5,[[792,1,1,4,5]]]],[4363,4970,6849,17964,20114]]],["Jahazah",[3,3,[[5,2,2,0,2,[[199,1,1,0,1],[207,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[6172,6417,20101]]],["Jahzah",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10532]]]]},{"k":"H3097","v":[["*",[144,123,[[8,1,1,0,1,[[261,1,1,0,1]]],[9,101,84,1,85,[[268,11,10,1,11],[269,10,8,11,19],[274,1,1,19,20],[276,4,4,20,24],[277,11,10,24,34],[278,2,2,34,36],[280,15,13,36,49],[283,2,1,49,50],[284,16,12,50,62],[285,3,3,62,65],[286,18,13,65,78],[289,3,3,78,81],[290,5,4,81,85]]],[10,15,13,85,98,[[291,3,3,85,88],[292,9,7,88,95],[301,3,3,95,98]]],[12,24,22,98,120,[[339,1,1,98,99],[341,1,1,99,100],[348,5,5,100,105],[355,1,1,105,106],[356,4,4,106,110],[357,2,1,110,111],[358,6,5,111,116],[363,1,1,116,117],[364,3,3,117,120]]],[14,2,2,120,122,[[404,1,1,120,121],[410,1,1,121,122]]],[15,1,1,122,123,[[419,1,1,122,123]]]],[7911,8062,8063,8067,8071,8073,8075,8076,8077,8079,8081,8103,8104,8105,8107,8108,8110,8111,8112,8225,8247,8249,8253,8254,8260,8265,8266,8270,8273,8275,8276,8277,8281,8284,8312,8313,8357,8358,8359,8375,8376,8377,8378,8379,8385,8386,8387,8388,8389,8474,8480,8483,8488,8489,8490,8492,8493,8494,8498,8499,8500,8507,8512,8516,8524,8561,8562,8563,8564,8565,8567,8569,8570,8571,8574,8575,8576,8577,8671,8677,8690,8694,8695,8696,8701,8724,8736,8758,8775,8792,8798,8799,8800,8801,8803,9123,9124,9129,10322,10399,10679,10681,10693,10699,10712,10905,10915,10917,10921,10922,10927,10936,10937,10938,10939,10940,11105,11116,11133,11143,12033,12210,12431]]],["+",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8565]]],["Joab",[136,119,[[8,1,1,0,1,[[261,1,1,0,1]]],[9,93,80,1,81,[[268,11,10,1,11],[269,10,8,11,19],[274,1,1,19,20],[276,4,4,20,24],[277,11,10,24,34],[278,2,2,34,36],[280,14,12,36,48],[283,1,1,48,49],[284,14,11,49,60],[285,3,3,60,63],[286,14,11,63,74],[289,3,3,74,77],[290,5,4,77,81]]],[10,15,13,81,94,[[291,3,3,81,84],[292,9,7,84,91],[301,3,3,91,94]]],[12,24,22,94,116,[[339,1,1,94,95],[341,1,1,95,96],[348,5,5,96,101],[355,1,1,101,102],[356,4,4,102,106],[357,2,1,106,107],[358,6,5,107,112],[363,1,1,112,113],[364,3,3,113,116]]],[14,2,2,116,118,[[404,1,1,116,117],[410,1,1,117,118]]],[15,1,1,118,119,[[419,1,1,118,119]]]],[7911,8062,8063,8067,8071,8073,8075,8076,8077,8079,8081,8103,8104,8105,8107,8108,8110,8111,8112,8225,8247,8249,8253,8254,8260,8265,8266,8270,8273,8275,8276,8277,8281,8284,8312,8313,8357,8358,8359,8375,8376,8377,8378,8379,8385,8387,8388,8389,8474,8480,8483,8488,8489,8490,8492,8494,8498,8499,8500,8507,8512,8516,8524,8563,8564,8565,8567,8569,8570,8571,8574,8575,8576,8577,8671,8677,8690,8694,8695,8696,8701,8724,8736,8758,8775,8792,8798,8799,8800,8801,8803,9123,9124,9129,10322,10399,10679,10681,10693,10699,10712,10905,10915,10917,10921,10922,10927,10936,10937,10938,10939,10940,11105,11116,11133,11143,12033,12210,12431]]],["Joab's",[7,7,[[9,7,7,0,7,[[280,1,1,0,1],[283,1,1,1,2],[284,2,2,2,4],[286,3,3,4,7]]]],[8386,8474,8480,8493,8561,8562,8564]]]]},{"k":"H3098","v":[["Joah",[11,10,[[11,3,3,0,3,[[330,3,3,0,3]]],[12,2,2,3,5,[[343,1,1,3,4],[363,1,1,4,5]]],[13,3,2,5,7,[[395,2,1,5,6],[400,1,1,6,7]]],[22,3,3,7,10,[[714,3,3,7,10]]]],[10042,10050,10061,10475,11081,11803,11941,18333,18341,18352]]]]},{"k":"H3099","v":[["Joahaz",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11941]]]]},{"k":"H3100","v":[["Joel",[19,19,[[8,1,1,0,1,[[243,1,1,0,1]]],[12,14,14,1,15,[[341,1,1,1,2],[342,3,3,2,5],[343,2,2,5,7],[344,1,1,7,8],[348,1,1,8,9],[352,3,3,9,12],[360,1,1,12,13],[363,1,1,13,14],[364,1,1,14,15]]],[13,1,1,15,16,[[395,1,1,15,16]]],[14,1,1,16,17,[[412,1,1,16,17]]],[15,1,1,17,18,[[423,1,1,17,18]]],[28,1,1,18,19,[[876,1,1,18,19]]]],[7371,10420,10432,10436,10440,10487,10490,10538,10711,10798,10802,10808,10991,11099,11129,11803,12295,12597,22292]]]]},{"k":"H3101","v":[["Joash",[46,40,[[6,9,8,0,8,[[216,4,4,0,4],[217,1,1,4,5],[218,4,3,5,8]]],[10,1,1,8,9,[[312,1,1,8,9]]],[11,18,15,9,24,[[323,1,1,9,10],[324,2,2,10,12],[325,8,7,12,19],[326,7,5,19,24]]],[12,3,3,24,27,[[340,1,1,24,25],[341,1,1,25,26],[349,1,1,26,27]]],[13,13,11,27,38,[[384,1,1,27,28],[388,1,1,28,29],[390,4,4,29,33],[391,7,5,33,38]]],[27,1,1,38,39,[[862,1,1,38,39]]],[29,1,1,39,40,[[879,1,1,39,40]]]],[6665,6683,6684,6685,6708,6732,6748,6751,9506,9831,9869,9870,9872,9880,9881,9883,9884,9885,9896,9897,9899,9913,9919,9923,10372,10407,10723,11567,11655,11678,11681,11699,11701,11721,11722,11725,11727,11729,22095,22365]]]]},{"k":"H3102","v":[["Job",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1399]]]]},{"k":"H3103","v":[["Jobab",[9,9,[[0,3,3,0,3,[[9,1,1,0,1],[35,2,2,1,3]]],[5,1,1,3,4,[[197,1,1,3,4]]],[12,5,5,4,9,[[338,3,3,4,7],[345,2,2,7,9]]]],[263,1073,1074,6108,10275,10296,10297,10584,10593]]]]},{"k":"H3104","v":[["*",[27,25,[[1,1,1,0,1,[[68,1,1,0,1]]],[2,20,18,1,19,[[114,14,13,1,14],[116,6,5,14,19]]],[3,1,1,19,20,[[152,1,1,19,20]]],[5,5,5,20,25,[[192,5,5,20,25]]]],[2039,3479,3480,3481,3482,3484,3497,3499,3500,3502,3509,3519,3521,3523,3587,3588,3591,3593,3594,4883,5953,5954,5955,5957,5962]]],["horns",[4,4,[[5,4,4,0,4,[[192,4,4,0,4]]]],[5953,5955,5957,5962]]],["jubile",[21,19,[[2,20,18,0,18,[[114,14,13,0,13],[116,6,5,13,18]]],[3,1,1,18,19,[[152,1,1,18,19]]]],[3479,3480,3481,3482,3484,3497,3499,3500,3502,3509,3519,3521,3523,3587,3588,3591,3593,3594,4883]]],["ram's",[1,1,[[5,1,1,0,1,[[192,1,1,0,1]]]],[5954]]],["trumpet",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2039]]]]},{"k":"H3105","v":[["river",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19365]]]]},{"k":"H3106","v":[["Jubal",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[100]]]]},{"k":"H3107","v":[["*",[10,9,[[12,3,2,0,2,[[349,3,2,0,2]]],[13,2,2,2,4,[[397,1,1,2,3],[401,1,1,3,4]]],[14,3,3,4,7,[[410,1,1,4,5],[412,2,2,5,7]]],[15,2,2,7,9,[[420,1,1,7,8],[423,1,1,8,9]]]],[10724,10740,11867,11975,12234,12274,12275,12500,12604]]],["Josabad",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10724]]],["Jozabad",[9,8,[[12,2,1,0,1,[[349,2,1,0,1]]],[13,2,2,1,3,[[397,1,1,1,2],[401,1,1,2,3]]],[14,3,3,3,6,[[410,1,1,3,4],[412,2,2,4,6]]],[15,2,2,6,8,[[420,1,1,6,7],[423,1,1,7,8]]]],[10740,11867,11975,12234,12274,12275,12500,12604]]]]},{"k":"H3108","v":[["Jozachar",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9871]]]]},{"k":"H3109","v":[["Joha",[2,2,[[12,2,2,0,2,[[345,1,1,0,1],[348,1,1,1,2]]]],[10591,10718]]]]},{"k":"H3110","v":[["Johanan",[24,24,[[11,1,1,0,1,[[337,1,1,0,1]]],[12,6,6,1,7,[[340,2,2,1,3],[343,2,2,3,5],[349,2,2,5,7]]],[14,1,1,7,8,[[410,1,1,7,8]]],[15,2,2,8,10,[[424,2,2,8,10]]],[23,14,14,10,24,[[784,4,4,10,14],[785,5,5,14,19],[786,2,2,19,21],[787,3,3,21,24]]]],[10245,10376,10385,10463,10464,10724,10732,12213,12646,12647,19949,19954,19956,19957,19968,19970,19971,19972,19973,19976,19983,19999,20001,20002]]]]},{"k":"H3111","v":[["*",[9,9,[[12,4,4,0,4,[[348,2,2,0,2],[349,1,1,2,3],[355,1,1,3,4]]],[15,5,5,4,9,[[415,1,1,4,5],[424,3,3,5,8],[425,1,1,8,9]]]],[10695,10697,10747,10907,12333,12634,12635,12646,12699]]],["Jehoiada",[5,5,[[12,4,4,0,4,[[348,2,2,0,2],[349,1,1,2,3],[355,1,1,3,4]]],[15,1,1,4,5,[[415,1,1,4,5]]]],[10695,10697,10747,10907,12333]]],["Joiada",[4,4,[[15,4,4,0,4,[[424,3,3,0,3],[425,1,1,3,4]]]],[12634,12635,12646,12699]]]]},{"k":"H3112","v":[["Jehoiachin's",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20466]]]]},{"k":"H3113","v":[["Joiakim",[4,3,[[15,4,3,0,3,[[424,4,3,0,3]]]],[12634,12636,12650]]]]},{"k":"H3114","v":[["Joiarib",[5,5,[[14,1,1,0,1,[[410,1,1,0,1]]],[15,4,4,1,5,[[423,2,2,1,3],[424,2,2,3,5]]]],[12217,12593,12598,12630,12643]]]]},{"k":"H3115","v":[["Jochebed",[2,2,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1675,4548]]]]},{"k":"H3116","v":[["Jucal",[1,1,[[23,1,1,0,1,[[782,1,1,0,1]]]],[19896]]]]},{"k":"H3117","v":[["*",[2293,1925,[[0,152,139,0,139,[[0,11,9,0,9],[1,5,4,9,13],[2,4,4,13,17],[3,2,2,17,19],[4,12,12,19,31],[5,3,3,31,34],[6,9,7,34,41],[7,8,7,41,48],[8,1,1,48,49],[9,1,1,49,50],[10,1,1,50,51],[13,1,1,51,52],[14,1,1,52,53],[16,3,3,53,56],[17,2,2,56,58],[18,2,2,58,60],[20,4,4,60,64],[21,2,2,64,66],[23,4,4,66,70],[24,4,4,70,74],[25,6,6,74,80],[26,4,4,80,84],[28,4,4,84,88],[29,5,5,88,93],[30,6,6,93,99],[31,1,1,99,100],[32,2,2,100,102],[33,1,1,102,103],[34,4,4,103,107],[36,1,1,107,108],[37,1,1,108,109],[38,3,2,109,111],[39,8,7,111,118],[40,2,2,118,120],[41,4,4,120,124],[42,1,1,124,125],[43,1,1,125,126],[46,9,6,126,132],[47,2,2,132,134],[48,1,1,134,135],[49,6,4,135,139]]],[1,114,82,139,221,[[51,4,4,139,143],[52,1,1,143,144],[54,7,5,144,149],[55,1,1,149,150],[56,1,1,150,151],[57,2,2,151,153],[58,1,1,153,154],[59,6,5,154,159],[61,15,9,159,168],[62,8,6,168,174],[63,3,2,174,176],[64,1,1,176,177],[65,17,9,177,186],[68,6,5,186,191],[69,7,5,191,196],[70,2,1,196,197],[71,2,1,197,198],[72,4,3,198,201],[73,3,2,201,203],[78,5,5,203,208],[80,4,2,208,210],[81,4,3,210,213],[83,5,4,213,217],[84,3,2,217,219],[89,2,2,219,221]]],[2,109,86,221,307,[[95,1,1,221,222],[96,7,7,222,229],[97,5,3,229,232],[98,2,2,232,234],[99,2,1,234,235],[101,7,5,235,240],[102,16,15,240,255],[103,10,9,255,264],[104,10,8,264,272],[105,1,1,272,273],[108,3,2,273,275],[111,4,3,275,278],[112,32,21,278,299],[113,2,1,299,300],[114,4,4,300,304],[115,2,2,304,306],[116,1,1,306,307]]],[3,121,88,307,395,[[119,2,2,307,309],[122,13,9,309,318],[123,19,16,318,334],[124,1,1,334,335],[125,11,9,335,344],[126,3,2,344,346],[127,11,5,346,351],[128,3,2,351,353],[129,3,2,353,355],[130,4,1,355,356],[131,2,2,356,358],[135,10,5,358,363],[136,2,2,363,365],[138,1,1,365,366],[140,1,1,366,367],[141,1,1,367,368],[144,10,8,368,376],[145,10,9,376,385],[146,7,5,385,390],[147,4,2,390,392],[148,1,1,392,393],[149,2,2,393,395]]],[4,167,146,395,541,[[153,5,4,395,399],[154,6,6,399,405],[155,1,1,405,406],[156,17,12,406,418],[157,10,10,418,428],[158,5,3,428,431],[159,1,1,431,432],[160,4,4,432,436],[161,9,9,436,445],[162,6,5,445,450],[163,13,11,450,461],[164,3,3,461,464],[165,1,1,464,465],[166,1,1,465,466],[167,2,2,466,468],[168,9,5,468,473],[169,3,3,473,476],[170,2,2,476,478],[171,3,2,478,480],[172,2,2,480,482],[173,3,3,482,485],[174,3,3,485,488],[175,1,1,488,489],[176,1,1,489,490],[177,1,1,490,491],[178,5,4,491,495],[179,6,6,495,501],[180,7,7,501,508],[181,8,7,508,515],[182,9,8,515,523],[183,10,9,523,532],[184,5,5,532,537],[185,2,2,537,539],[186,3,2,539,541]]],[5,78,62,541,603,[[187,2,2,541,543],[188,2,2,543,545],[189,3,3,545,548],[190,4,3,548,551],[191,4,3,551,554],[192,8,6,554,560],[193,3,2,560,562],[194,3,3,562,565],[195,5,4,565,569],[196,8,7,569,576],[197,1,1,576,577],[199,3,2,577,579],[200,7,5,579,584],[201,1,1,584,585],[202,1,1,585,586],[206,1,1,586,587],[208,10,7,587,594],[209,6,5,594,599],[210,6,4,599,603]]],[6,75,62,603,665,[[211,2,2,603,605],[212,4,2,605,607],[213,1,1,607,608],[214,2,2,608,610],[215,3,2,610,612],[216,2,2,612,614],[218,1,1,614,615],[219,3,3,615,618],[220,2,2,618,620],[221,5,3,620,623],[222,1,1,623,624],[223,2,2,624,626],[224,7,6,626,632],[225,4,3,632,635],[226,1,1,635,636],[227,2,2,636,638],[228,6,4,638,642],[229,11,8,642,650],[230,11,11,650,661],[231,5,4,661,665]]],[7,8,7,665,672,[[232,1,1,665,666],[233,2,1,666,667],[234,1,1,667,668],[235,4,4,668,672]]],[8,150,131,672,803,[[236,7,6,672,678],[237,8,6,678,684],[238,3,3,684,687],[239,3,3,687,690],[240,1,1,690,691],[241,3,3,691,694],[242,6,5,694,699],[243,4,2,699,701],[244,10,8,701,709],[245,4,4,709,713],[246,4,3,713,716],[247,4,4,716,720],[248,3,3,720,723],[249,12,12,723,735],[250,2,2,735,737],[251,1,1,737,738],[252,5,4,738,742],[253,7,6,742,748],[254,1,1,748,749],[255,6,6,749,755],[256,4,4,755,759],[257,6,6,759,765],[258,1,1,765,766],[259,5,4,766,770],[260,9,9,770,779],[261,6,6,779,785],[262,7,5,785,790],[263,4,4,790,794],[264,7,3,794,797],[265,5,4,797,801],[266,2,2,801,803]]],[9,75,61,803,864,[[267,2,2,803,805],[268,2,2,805,807],[269,6,5,807,812],[270,3,3,812,815],[271,1,1,815,816],[272,5,4,816,820],[273,4,3,820,823],[277,2,1,823,824],[278,1,1,824,825],[279,3,3,825,828],[280,5,4,828,832],[281,1,1,832,833],[282,3,3,833,836],[284,7,5,836,841],[285,18,11,841,852],[286,2,2,852,854],[287,3,3,854,857],[288,2,2,857,859],[289,2,2,859,861],[290,3,3,861,864]]],[10,100,92,864,956,[[291,6,6,864,870],[292,8,8,870,878],[293,6,6,878,884],[294,3,3,884,887],[295,2,2,887,889],[298,14,11,889,900],[299,3,3,900,903],[300,2,2,903,905],[301,6,6,905,911],[302,8,6,911,917],[303,2,2,917,919],[304,5,5,919,924],[305,8,8,924,932],[306,7,7,932,939],[307,3,3,939,942],[308,3,3,942,945],[309,2,2,945,947],[310,4,2,947,949],[311,2,1,949,950],[312,6,6,950,956]]],[11,79,72,956,1028,[[313,1,1,956,957],[314,4,4,957,961],[315,2,2,961,963],[316,4,4,963,967],[318,3,3,967,970],[319,2,1,970,971],[320,5,5,971,976],[322,4,4,976,980],[324,2,2,980,982],[325,4,4,982,986],[326,4,4,986,990],[327,12,12,990,1002],[328,2,2,1002,1004],[329,4,4,1004,1008],[330,1,1,1008,1009],[331,3,2,1009,1011],[332,8,7,1011,1018],[333,4,3,1018,1021],[335,4,3,1021,1024],[336,2,2,1024,1026],[337,4,2,1026,1028]]],[12,41,34,1028,1062,[[338,1,1,1028,1029],[341,3,2,1029,1031],[342,4,3,1031,1034],[344,2,2,1034,1036],[346,1,1,1036,1037],[347,1,1,1037,1038],[348,1,1,1038,1039],[349,3,2,1039,1041],[350,3,3,1041,1044],[353,5,3,1044,1047],[354,4,3,1047,1050],[358,1,1,1050,1051],[359,1,1,1051,1052],[360,1,1,1052,1053],[363,2,1,1053,1054],[364,1,1,1054,1055],[365,1,1,1055,1056],[366,6,6,1056,1062]]],[13,75,58,1062,1120,[[367,1,1,1062,1063],[371,1,1,1063,1064],[372,3,3,1064,1067],[373,6,4,1067,1071],[374,6,4,1071,1075],[375,1,1,1075,1076],[376,5,4,1076,1080],[378,1,1,1080,1081],[379,1,1,1081,1082],[380,1,1,1082,1083],[381,3,3,1083,1086],[384,4,4,1086,1090],[386,3,2,1090,1092],[387,8,5,1092,1097],[390,5,4,1097,1101],[392,3,2,1101,1103],[394,1,1,1103,1104],[395,3,1,1104,1105],[396,7,4,1105,1109],[397,2,1,1109,1110],[398,2,2,1110,1112],[400,1,1,1112,1113],[401,5,5,1113,1118],[402,2,2,1118,1120]]],[14,21,16,1120,1136,[[405,5,2,1120,1122],[406,3,3,1122,1125],[408,1,1,1125,1126],[410,3,3,1126,1129],[411,4,2,1129,1131],[412,5,5,1131,1136]]],[15,59,43,1136,1179,[[413,3,3,1136,1139],[414,1,1,1139,1140],[416,3,3,1140,1143],[417,4,3,1143,1146],[418,2,2,1146,1148],[420,14,8,1148,1156],[421,6,5,1156,1161],[422,2,1,1161,1162],[423,2,1,1162,1163],[424,13,9,1163,1172],[425,9,7,1172,1179]]],[16,52,39,1179,1218,[[426,8,6,1179,1185],[427,4,3,1185,1188],[428,7,5,1188,1193],[429,3,2,1193,1195],[430,3,3,1195,1198],[431,1,1,1198,1199],[432,1,1,1199,1200],[433,4,4,1200,1204],[434,20,13,1204,1217],[435,1,1,1217,1218]]],[17,59,54,1218,1272,[[436,5,4,1218,1222],[437,2,2,1222,1224],[438,6,6,1224,1230],[442,4,3,1230,1233],[443,1,1,1233,1234],[444,1,1,1234,1235],[445,4,2,1235,1237],[447,1,1,1237,1238],[449,4,4,1238,1242],[450,4,4,1242,1246],[452,3,3,1246,1249],[453,1,1,1249,1250],[455,1,1,1250,1251],[456,3,2,1251,1253],[458,1,1,1253,1254],[459,1,1,1254,1255],[462,1,1,1255,1256],[464,3,3,1256,1259],[465,4,4,1259,1263],[467,3,3,1263,1266],[468,1,1,1266,1267],[471,1,1,1267,1268],[473,3,3,1268,1271],[477,1,1,1271,1272]]],[18,113,105,1272,1377,[[479,1,1,1272,1273],[484,1,1,1273,1274],[495,1,1,1274,1275],[496,2,1,1275,1276],[497,2,2,1276,1278],[498,1,1,1278,1279],[500,2,1,1279,1280],[502,1,1,1280,1281],[504,2,2,1281,1283],[509,1,1,1283,1284],[511,1,1,1284,1285],[512,1,1,1285,1286],[514,4,4,1286,1290],[515,2,2,1290,1292],[516,2,2,1292,1294],[518,1,1,1294,1295],[519,2,2,1295,1297],[521,5,4,1297,1301],[526,1,1,1301,1302],[527,1,1,1302,1303],[529,1,1,1303,1304],[532,1,1,1304,1305],[533,5,5,1305,1310],[536,1,1,1310,1311],[538,4,2,1311,1313],[545,2,1,1313,1314],[548,3,3,1314,1317],[549,2,2,1317,1319],[550,1,1,1319,1320],[551,2,2,1320,1322],[554,2,2,1322,1324],[555,3,3,1324,1327],[558,1,1,1327,1328],[561,1,1,1328,1329],[563,2,2,1329,1331],[565,3,3,1331,1334],[566,3,3,1334,1337],[567,6,6,1337,1343],[568,1,1,1343,1344],[570,1,1,1344,1345],[571,1,1,1345,1346],[572,2,2,1346,1348],[573,2,1,1348,1349],[579,7,6,1349,1355],[580,1,1,1355,1356],[586,1,1,1356,1357],[587,2,2,1357,1359],[593,1,1,1359,1360],[595,1,1,1360,1361],[596,4,4,1361,1365],[605,1,1,1365,1366],[613,1,1,1366,1367],[614,1,1,1367,1368],[615,1,1,1368,1369],[616,2,2,1369,1371],[617,2,2,1371,1373],[620,1,1,1373,1374],[621,1,1,1374,1375],[622,1,1,1375,1376],[623,1,1,1376,1377]]],[19,32,29,1377,1406,[[630,2,2,1377,1379],[631,1,1,1379,1380],[633,1,1,1380,1381],[634,3,3,1381,1384],[635,4,2,1384,1386],[636,1,1,1386,1387],[637,1,1,1387,1388],[638,1,1,1388,1389],[639,1,1,1389,1390],[642,1,1,1390,1391],[643,1,1,1391,1392],[648,2,2,1392,1394],[649,1,1,1394,1395],[650,1,1,1395,1396],[651,1,1,1396,1397],[652,3,3,1397,1400],[654,4,3,1400,1403],[655,1,1,1403,1404],[658,2,2,1404,1406]]],[20,26,22,1406,1428,[[660,3,3,1406,1409],[663,3,3,1409,1412],[664,2,2,1412,1414],[665,6,4,1414,1418],[666,4,4,1418,1422],[667,2,1,1422,1423],[669,3,3,1423,1426],[670,3,2,1426,1428]]],[21,5,4,1428,1432,[[672,1,1,1428,1429],[673,2,1,1429,1430],[674,1,1,1430,1431],[678,1,1,1431,1432]]],[22,120,110,1432,1542,[[679,1,1,1432,1433],[680,5,5,1433,1438],[681,2,2,1438,1440],[682,2,2,1440,1442],[683,1,1,1442,1443],[685,7,6,1443,1449],[687,2,2,1449,1451],[688,5,5,1451,1456],[689,3,3,1456,1459],[690,2,2,1459,1461],[691,4,4,1461,1465],[692,1,1,1465,1466],[695,5,4,1466,1470],[697,6,6,1470,1476],[698,1,1,1476,1477],[700,5,5,1477,1482],[701,3,2,1482,1484],[702,2,2,1484,1486],[703,1,1,1486,1487],[704,1,1,1487,1488],[705,6,6,1488,1494],[706,3,3,1494,1497],[707,1,1,1497,1498],[708,5,4,1498,1502],[709,1,1,1502,1503],[710,1,1,1503,1504],[712,1,1,1504,1505],[715,3,2,1505,1507],[716,7,7,1507,1514],[717,3,2,1514,1516],[721,1,1,1516,1517],[725,1,1,1517,1518],[726,1,1,1518,1519],[727,1,1,1519,1520],[729,2,2,1520,1522],[730,2,2,1522,1524],[731,1,1,1524,1525],[734,1,1,1525,1526],[736,7,5,1526,1531],[738,1,1,1531,1532],[739,1,1,1532,1533],[740,1,1,1533,1534],[741,3,3,1534,1537],[743,6,4,1537,1541],[744,1,1,1541,1542]]],[23,137,121,1542,1663,[[745,4,4,1542,1546],[746,1,1,1546,1547],[747,4,4,1547,1551],[748,1,1,1551,1552],[749,1,1,1552,1553],[750,2,2,1553,1555],[751,5,3,1555,1558],[753,1,1,1558,1559],[755,4,3,1559,1562],[756,1,1,1562,1563],[757,1,1,1563,1564],[760,3,3,1564,1567],[761,11,8,1567,1575],[762,1,1,1575,1576],[763,1,1,1576,1577],[764,5,4,1577,1581],[766,1,1,1581,1582],[767,4,4,1582,1586],[769,4,4,1586,1590],[770,1,1,1590,1591],[771,1,1,1591,1592],[772,2,2,1592,1594],[774,4,4,1594,1598],[775,8,8,1598,1606],[776,6,4,1606,1610],[777,5,5,1610,1615],[778,2,2,1615,1617],[779,6,5,1617,1622],[780,5,3,1622,1625],[781,2,2,1625,1627],[782,1,1,1627,1628],[783,3,3,1628,1631],[784,1,1,1631,1632],[785,1,1,1632,1633],[786,3,3,1633,1636],[788,5,5,1636,1641],[790,4,3,1641,1644],[791,1,1,1644,1645],[792,3,3,1645,1648],[793,4,4,1648,1652],[794,5,5,1652,1657],[795,3,3,1657,1660],[796,6,3,1660,1663]]],[24,19,17,1663,1680,[[797,5,4,1663,1667],[798,7,6,1667,1673],[799,4,4,1673,1677],[800,1,1,1677,1678],[801,2,2,1678,1680]]],[25,107,84,1680,1764,[[802,1,1,1680,1681],[803,1,1,1681,1682],[804,2,2,1682,1684],[805,10,6,1684,1690],[806,1,1,1690,1691],[808,4,4,1691,1695],[813,4,4,1695,1699],[814,1,1,1699,1700],[817,6,6,1700,1706],[821,4,4,1706,1710],[822,1,1,1710,1711],[823,3,3,1711,1714],[824,3,3,1714,1717],[825,6,4,1717,1721],[827,1,1,1721,1722],[828,1,1,1722,1723],[829,2,2,1723,1725],[830,1,1,1725,1726],[831,7,4,1726,1730],[832,1,1,1730,1731],[833,1,1,1731,1732],[834,3,1,1732,1733],[835,2,1,1733,1734],[837,1,1,1734,1735],[839,9,7,1735,1742],[840,4,4,1742,1746],[841,1,1,1746,1747],[844,7,5,1747,1752],[845,2,2,1752,1754],[846,9,4,1754,1758],[847,7,5,1758,1763],[849,1,1,1763,1764]]],[26,23,20,1764,1784,[[850,6,5,1764,1769],[857,2,2,1769,1771],[858,2,2,1771,1773],[859,8,6,1773,1779],[860,2,2,1779,1781],[861,3,3,1781,1784]]],[27,28,23,1784,1807,[[862,4,3,1784,1787],[863,7,6,1787,1793],[864,3,3,1793,1796],[865,1,1,1796,1797],[866,1,1,1797,1798],[867,2,1,1798,1799],[868,1,1,1799,1800],[870,5,3,1800,1803],[871,2,2,1803,1805],[873,2,2,1805,1807]]],[28,13,10,1807,1817,[[876,4,2,1807,1809],[877,6,5,1809,1814],[878,3,3,1814,1817]]],[29,22,17,1817,1834,[[879,4,2,1817,1819],[880,1,1,1819,1820],[881,1,1,1820,1821],[882,2,2,1821,1823],[883,4,3,1823,1826],[884,1,1,1826,1827],[886,6,5,1827,1832],[887,3,2,1832,1834]]],[30,12,6,1834,1840,[[888,12,6,1834,1840]]],[31,4,3,1840,1843,[[889,1,1,1840,1841],[891,3,2,1841,1843]]],[32,14,13,1843,1856,[[893,1,1,1843,1844],[894,1,1,1844,1845],[895,1,1,1845,1846],[896,2,2,1846,1848],[897,2,2,1848,1850],[899,7,6,1850,1856]]],[33,4,4,1856,1860,[[900,1,1,1856,1857],[901,2,2,1857,1859],[902,1,1,1859,1860]]],[34,2,2,1860,1862,[[903,1,1,1860,1861],[905,1,1,1861,1862]]],[35,21,14,1862,1876,[[906,15,9,1862,1871],[907,3,2,1871,1873],[908,3,3,1873,1876]]],[36,8,6,1876,1882,[[909,2,2,1876,1878],[910,6,4,1878,1882]]],[37,40,36,1882,1918,[[911,1,1,1882,1883],[912,1,1,1883,1884],[913,2,2,1884,1886],[914,1,1,1886,1887],[916,1,1,1887,1888],[918,8,7,1888,1895],[919,2,2,1895,1897],[921,1,1,1897,1898],[922,7,6,1898,1904],[923,3,3,1904,1907],[924,13,11,1907,1918]]],[38,8,7,1918,1925,[[927,4,4,1918,1922],[928,4,3,1922,1925]]]],[4,7,12,13,15,17,18,22,30,32,33,34,47,60,63,69,72,82,93,106,107,109,110,113,116,119,122,125,128,132,136,140,141,142,163,169,170,171,172,176,183,186,187,189,193,195,197,205,234,259,298,337,378,409,420,423,425,435,494,495,517,521,539,547,551,561,592,603,633,646,665,682,689,691,693,700,707,710,724,725,729,768,771,772,802,809,815,816,844,862,863,865,866,895,896,912,913,916,921,960,973,976,1005,1014,1031,1039,1040,1117,1131,1159,1160,1176,1179,1184,1185,1190,1191,1192,1196,1204,1265,1269,1270,1284,1299,1356,1428,1429,1443,1446,1448,1449,1466,1471,1474,1509,1510,1516,1526,1565,1567,1572,1577,1597,1635,1638,1645,1646,1651,1683,1710,1732,1737,1760,1783,1790,1799,1800,1805,1822,1830,1831,1832,1833,1834,1835,1857,1867,1870,1871,1873,1874,1875,1877,1902,1919,1942,1948,1951,1952,1969,1972,1973,1974,1976,1977,2027,2036,2037,2041,2042,2059,2060,2061,2062,2063,2098,2143,2156,2159,2170,2193,2195,2366,2371,2372,2373,2374,2435,2437,2466,2467,2472,2507,2514,2517,2524,2533,2534,2709,2744,2869,2894,2895,2896,2897,2914,2915,2917,2950,2951,2952,2954,2957,2996,3046,3047,3048,3049,3050,3056,3057,3058,3066,3073,3078,3079,3083,3084,3085,3086,3098,3102,3103,3106,3113,3119,3120,3121,3134,3149,3150,3157,3168,3181,3182,3187,3192,3193,3194,3196,3197,3231,3287,3288,3396,3397,3399,3405,3408,3409,3410,3414,3416,3417,3418,3423,3429,3430,3431,3432,3436,3437,3438,3439,3441,3442,3443,3444,3454,3477,3478,3498,3519,3558,3559,3593,3693,3705,3827,3828,3829,3831,3832,3833,3834,3835,3836,3851,3860,3861,3862,3868,3874,3880,3886,3892,3898,3904,3910,3916,3922,3928,3934,3956,3968,3970,3971,3976,3980,3983,3984,3985,3987,3998,4021,4043,4044,4045,4055,4056,4073,4074,4095,4100,4142,4176,4185,4300,4301,4303,4305,4308,4326,4340,4405,4460,4489,4580,4586,4593,4594,4595,4601,4602,4603,4609,4620,4625,4628,4631,4634,4637,4640,4643,4653,4655,4656,4660,4662,4683,4688,4728,4763,4768,4894,4902,4931,4938,4939,4952,4956,4960,4963,4968,4989,5008,5012,5013,5014,5019,5024,5030,5034,5036,5042,5043,5044,5054,5056,5065,5066,5067,5068,5069,5077,5082,5086,5088,5092,5110,5122,5138,5148,5155,5156,5158,5160,5164,5166,5167,5168,5175,5181,5182,5190,5194,5196,5199,5201,5209,5210,5212,5216,5217,5221,5229,5234,5235,5236,5240,5241,5248,5259,5290,5313,5324,5334,5345,5346,5350,5355,5357,5373,5383,5384,5389,5400,5415,5423,5430,5446,5460,5463,5470,5477,5489,5499,5506,5540,5562,5569,5582,5583,5584,5586,5587,5589,5594,5595,5596,5612,5624,5625,5626,5640,5643,5644,5683,5689,5691,5692,5694,5697,5707,5710,5716,5719,5723,5724,5726,5727,5728,5730,5741,5742,5745,5746,5749,5750,5755,5757,5765,5793,5804,5805,5806,5822,5835,5845,5847,5856,5862,5885,5891,5895,5900,5908,5919,5924,5934,5943,5944,5945,5952,5953,5959,5963,5964,5974,6001,6002,6027,6030,6031,6049,6053,6054,6064,6076,6077,6078,6091,6092,6096,6099,6125,6155,6167,6196,6197,6198,6199,6201,6265,6275,6378,6429,6442,6443,6444,6448,6455,6457,6461,6462,6468,6469,6474,6483,6491,6501,6507,6530,6535,6552,6563,6598,6613,6622,6624,6629,6678,6686,6747,6772,6773,6799,6815,6826,6833,6856,6869,6872,6891,6894,6917,6921,6923,6924,6926,6927,6930,6948,6949,6965,6986,6990,6994,7005,7023,7024,7025,7026,7028,7029,7032,7033,7035,7054,7069,7075,7076,7078,7079,7080,7081,7082,7084,7089,7100,7105,7108,7121,7127,7128,7168,7190,7195,7199,7200,7204,7215,7216,7223,7232,7233,7240,7256,7259,7271,7272,7274,7275,7277,7278,7288,7300,7309,7313,7324,7346,7347,7349,7354,7358,7362,7365,7367,7377,7387,7400,7403,7404,7406,7410,7411,7415,7418,7420,7426,7427,7437,7448,7456,7458,7462,7465,7477,7478,7493,7496,7507,7509,7526,7531,7532,7536,7538,7539,7541,7545,7546,7553,7560,7588,7595,7608,7628,7630,7634,7664,7678,7685,7686,7697,7702,7705,7730,7736,7749,7756,7757,7761,7764,7777,7778,7779,7782,7791,7795,7800,7802,7805,7809,7824,7843,7849,7857,7858,7868,7869,7871,7876,7877,7889,7893,7894,7899,7913,7915,7924,7926,7928,7929,7931,7936,7937,7940,7941,7943,7944,7960,7962,7970,7973,7975,7979,7990,7991,8003,8015,8022,8023,8024,8060,8066,8089,8116,8118,8119,8120,8123,8125,8128,8140,8165,8166,8177,8180,8186,8191,8192,8271,8304,8340,8349,8354,8358,8378,8382,8384,8409,8429,8438,8449,8485,8486,8496,8498,8509,8513,8514,8516,8517,8524,8530,8531,8533,8535,8545,8546,8557,8558,8581,8589,8592,8603,8621,8663,8673,8700,8705,8710,8718,8723,8742,8747,8765,8768,8771,8778,8781,8794,8796,8807,8808,8812,8818,8822,8827,8829,8830,8834,8865,8866,8869,8879,8885,8993,9001,9009,9013,9014,9025,9044,9046,9049,9050,9051,9054,9064,9072,9091,9100,9120,9133,9142,9144,9147,9150,9156,9158,9163,9170,9183,9184,9187,9195,9232,9237,9238,9247,9248,9254,9255,9256,9263,9265,9272,9280,9281,9288,9297,9298,9299,9303,9310,9317,9324,9331,9332,9342,9356,9377,9391,9395,9421,9437,9480,9485,9505,9515,9519,9525,9526,9551,9554,9556,9568,9573,9582,9585,9611,9614,9621,9626,9702,9703,9705,9716,9733,9746,9747,9749,9750,9820,9825,9827,9829,9852,9869,9874,9879,9883,9893,9903,9911,9914,9924,9930,9931,9936,9938,9940,9943,9946,9951,9954,9956,9961,9962,9969,9982,10006,10017,10020,10024,10028,10064,10086,10099,10103,10104,10106,10115,10117,10118,10134,10136,10144,10187,10193,10194,10203,10207,10251,10252,10271,10426,10428,10438,10445,10454,10537,10557,10640,10671,10695,10742,10759,10763,10771,10772,10827,10843,10857,10868,10873,10874,10946,10973,10984,11094,11133,11150,11169,11179,11185,11186,11191,11192,11205,11277,11287,11297,11313,11332,11333,11334,11340,11354,11359,11360,11362,11384,11400,11402,11407,11414,11452,11473,11476,11493,11501,11507,11546,11549,11566,11576,11612,11613,11631,11632,11634,11639,11643,11679,11688,11691,11692,11737,11753,11770,11808,11848,11849,11850,11853,11870,11899,11901,11966,11982,11983,11984,11987,11991,12002,12014,12101,12103,12112,12115,12117,12173,12216,12233,12234,12244,12252,12260,12261,12265,12268,12269,12300,12302,12307,12318,12361,12375,12381,12393,12396,12400,12416,12418,12495,12496,12502,12503,12504,12506,12510,12511,12512,12514,12521,12543,12547,12580,12611,12631,12636,12646,12647,12650,12667,12668,12670,12671,12672,12677,12686,12688,12690,12693,12694,12703,12704,12706,12707,12712,12720,12735,12736,12745,12751,12754,12759,12760,12761,12773,12778,12780,12783,12788,12794,12809,12818,12829,12830,12834,12835,12845,12847,12849,12851,12852,12853,12855,12856,12860,12861,12862,12865,12868,12873,12874,12875,12882,12892,12904,12905,12907,12908,12909,12910,12912,13009,13014,13024,13038,13076,13091,13106,13140,13182,13186,13187,13195,13213,13223,13226,13235,13261,13271,13272,13296,13354,13368,13385,13421,13437,13487,13534,13536,13550,13558,13573,13582,13584,13632,13634,13635,13675,13747,13805,13814,13816,13939,13952,14006,14136,14170,14183,14191,14195,14241,14256,14289,14290,14358,14400,14438,14463,14468,14469,14476,14496,14502,14516,14517,14543,14558,14565,14572,14579,14586,14593,14653,14683,14711,14755,14756,14757,14758,14760,14764,14806,14825,14827,14919,14984,14991,15000,15007,15015,15034,15064,15070,15095,15098,15122,15146,15155,15220,15269,15287,15291,15309,15317,15325,15342,15355,15371,15382,15387,15388,15390,15392,15393,15411,15431,15444,15461,15462,15467,15523,15524,15529,15532,15544,15545,15564,15763,15789,15791,15850,15893,15982,15989,15995,16062,16131,16204,16229,16234,16251,16255,16265,16270,16298,16309,16322,16345,16457,16471,16508,16574,16584,16589,16595,16632,16636,16649,16683,16692,16735,16822,16844,17010,17015,17034,17061,17089,17126,17132,17133,17170,17179,17184,17212,17296,17309,17336,17349,17356,17414,17415,17417,17420,17429,17430,17439,17443,17444,17466,17471,17473,17474,17484,17514,17521,17522,17524,17526,17571,17582,17588,17648,17655,17687,17696,17697,17702,17705,17714,17725,17734,17735,17769,17783,17799,17800,17802,17803,17805,17833,17843,17853,17867,17870,17877,17882,17894,17895,17900,17901,17904,17912,17915,17919,17928,17931,17987,17990,17992,17994,18020,18022,18023,18025,18027,18028,18035,18057,18060,18064,18072,18077,18084,18092,18116,18117,18127,18131,18152,18153,18154,18159,18163,18164,18169,18183,18188,18211,18225,18240,18242,18243,18257,18269,18311,18355,18378,18391,18395,18400,18402,18403,18409,18410,18418,18420,18518,18608,18621,18644,18682,18686,18701,18702,18721,18765,18788,18789,18790,18791,18799,18841,18845,18860,18870,18875,18877,18899,18902,18917,18919,18930,18948,18949,18956,18964,18997,19008,19018,19020,19027,19036,19076,19093,19100,19141,19144,19151,19200,19230,19231,19233,19252,19272,19345,19350,19355,19368,19373,19374,19375,19378,19379,19381,19384,19401,19413,19429,19430,19436,19440,19484,19489,19490,19491,19504,19537,19552,19567,19568,19590,19618,19621,19629,19670,19674,19675,19691,19697,19718,19720,19722,19723,19724,19727,19729,19745,19751,19762,19770,19789,19790,19791,19793,19795,19814,19816,19824,19830,19831,19837,19842,19844,19848,19872,19890,19895,19923,19933,19939,19940,19945,19961,19982,19994,19996,20012,20016,20020,20032,20033,20055,20066,20071,20077,20092,20121,20127,20129,20149,20153,20166,20170,20186,20193,20196,20197,20214,20259,20264,20287,20309,20310,20317,20322,20323,20331,20333,20339,20348,20349,20353,20354,20357,20368,20411,20416,20438,20462,20463,20492,20495,20517,20518,20533,20534,20535,20537,20538,20539,20548,20584,20587,20589,20596,20702,20703,20705,20707,20713,20766,20767,20784,20805,20818,20822,20900,20901,20924,20926,20969,20980,20990,21000,21026,21045,21046,21058,21081,21082,21083,21118,21148,21170,21172,21204,21206,21207,21213,21222,21245,21258,21292,21325,21392,21433,21435,21439,21441,21442,21443,21444,21456,21459,21461,21470,21478,21590,21594,21597,21598,21599,21625,21626,21651,21652,21653,21655,21656,21659,21661,21667,21668,21737,21742,21749,21751,21752,21755,21987,21988,21995,22003,22017,22018,22019,22027,22028,22029,22056,22069,22092,22093,22094,22095,22099,22105,22108,22118,22120,22121,22123,22126,22131,22132,22133,22138,22161,22169,22183,22213,22215,22217,22234,22239,22253,22261,22293,22306,22312,22313,22322,22340,22342,22344,22357,22361,22365,22378,22395,22409,22412,22414,22431,22441,22443,22453,22484,22490,22491,22492,22494,22506,22508,22518,22521,22522,22523,22524,22525,22548,22561,22562,22580,22599,22614,22621,22626,22635,22643,22668,22675,22676,22678,22679,22684,22691,22702,22707,22729,22736,22784,22788,22794,22795,22796,22797,22801,22802,22803,22805,22807,22808,22828,22831,22836,22841,22855,22870,22873,22874,22878,22885,22910,22921,22922,22932,22957,22980,22982,22985,22986,22987,22991,22999,23011,23015,23039,23048,23049,23051,23053,23054,23056,23060,23061,23063,23069,23071,23072,23073,23074,23075,23076,23077,23081,23088,23089,23122,23124,23127,23137,23139,23141,23143]]],["+",[279,243,[[0,11,11,0,11,[[5,1,1,0,1],[7,1,1,1,2],[24,1,1,2,3],[29,1,1,3,4],[37,1,1,4,5],[39,1,1,5,6],[40,1,1,6,7],[42,1,1,7,8],[43,1,1,8,9],[46,2,2,9,11]]],[1,16,12,11,23,[[51,1,1,11,12],[54,5,3,12,15],[57,1,1,15,16],[58,1,1,16,17],[59,1,1,17,18],[61,1,1,18,19],[62,1,1,19,20],[65,4,2,20,22],[89,1,1,22,23]]],[2,9,7,23,30,[[111,1,1,23,24],[112,4,3,24,27],[113,2,1,27,28],[115,2,2,28,30]]],[3,8,6,30,36,[[123,4,3,30,33],[125,1,1,33,34],[130,2,1,34,35],[146,1,1,35,36]]],[4,13,13,36,49,[[156,1,1,36,37],[157,1,1,37,38],[158,1,1,38,39],[161,1,1,39,40],[163,1,1,40,41],[164,1,1,41,42],[166,1,1,42,43],[170,1,1,43,44],[171,1,1,44,45],[180,2,2,45,47],[182,1,1,47,48],[183,1,1,48,49]]],[5,4,4,49,53,[[190,1,1,49,50],[209,1,1,50,51],[210,2,2,51,53]]],[6,12,10,53,63,[[212,1,1,53,54],[214,1,1,54,55],[221,3,2,55,57],[224,1,1,57,58],[225,1,1,58,59],[226,1,1,59,60],[229,2,2,60,62],[231,2,1,62,63]]],[8,23,20,63,83,[[236,2,1,63,64],[237,4,3,64,67],[242,1,1,67,68],[243,1,1,68,69],[251,1,1,69,70],[253,4,3,70,73],[255,2,2,73,75],[259,1,1,75,76],[260,2,2,76,78],[263,1,1,78,79],[264,3,3,79,82],[265,1,1,82,83]]],[9,10,9,83,92,[[268,1,1,83,84],[273,1,1,84,85],[279,2,2,85,87],[280,3,2,87,89],[285,3,3,89,92]]],[10,17,17,92,109,[[291,1,1,92,93],[295,1,1,93,94],[299,1,1,94,95],[301,2,2,95,97],[302,1,1,97,98],[304,2,2,98,100],[305,3,3,100,103],[306,4,4,103,107],[312,2,2,107,109]]],[11,27,27,109,136,[[313,1,1,109,110],[320,3,3,110,113],[322,1,1,113,114],[324,1,1,114,115],[325,2,2,115,117],[326,3,3,117,120],[327,7,7,120,127],[328,1,1,127,128],[329,1,1,128,129],[331,1,1,129,130],[332,1,1,130,131],[333,2,2,131,133],[335,2,2,133,135],[336,1,1,135,136]]],[12,5,4,136,140,[[353,3,2,136,138],[354,1,1,138,139],[364,1,1,139,140]]],[13,19,15,140,155,[[367,1,1,140,141],[372,1,1,141,142],[373,1,1,142,143],[374,4,2,143,145],[376,1,1,145,146],[378,1,1,146,147],[381,1,1,147,148],[384,1,1,148,149],[387,3,2,149,151],[396,1,1,151,152],[397,2,1,152,153],[401,1,1,153,154],[402,1,1,154,155]]],[14,7,4,155,159,[[405,5,2,155,157],[406,1,1,157,158],[411,1,1,158,159]]],[15,9,7,159,166,[[417,2,2,159,161],[420,2,2,161,163],[421,1,1,163,164],[423,2,1,164,165],[424,2,1,165,166]]],[16,7,5,166,171,[[427,2,1,166,167],[428,3,2,167,169],[431,1,1,169,170],[435,1,1,170,171]]],[17,8,8,171,179,[[436,1,1,171,172],[450,1,1,172,173],[462,1,1,173,174],[465,2,2,174,176],[467,2,2,176,178],[473,1,1,178,179]]],[18,24,21,179,200,[[500,1,1,179,180],[514,1,1,180,181],[519,2,2,181,183],[521,1,1,183,184],[529,1,1,184,185],[533,2,2,185,187],[538,4,2,187,189],[545,2,1,189,190],[549,1,1,190,191],[551,1,1,191,192],[563,1,1,192,193],[565,2,2,193,195],[567,1,1,195,196],[570,1,1,196,197],[571,1,1,197,198],[573,1,1,198,199],[617,1,1,199,200]]],[19,6,4,200,204,[[634,1,1,200,201],[635,4,2,201,203],[654,1,1,203,204]]],[20,2,2,204,206,[[665,2,2,204,206]]],[21,1,1,206,207,[[672,1,1,206,207]]],[22,8,7,207,214,[[685,1,1,207,208],[701,1,1,208,209],[715,1,1,209,210],[716,2,2,210,212],[721,1,1,212,213],[736,2,1,213,214]]],[23,12,10,214,224,[[764,2,2,214,216],[772,2,2,216,218],[775,1,1,218,219],[776,1,1,219,220],[777,1,1,220,221],[779,1,1,221,222],[780,2,1,222,223],[796,2,1,223,224]]],[24,2,2,224,226,[[797,1,1,224,225],[798,1,1,225,226]]],[25,7,6,226,232,[[805,2,1,226,227],[825,1,1,227,228],[829,1,1,228,229],[839,1,1,229,230],[847,1,1,230,231],[849,1,1,231,232]]],[26,2,1,232,233,[[850,2,1,232,233]]],[27,3,3,233,236,[[867,1,1,233,234],[871,1,1,234,235],[873,1,1,235,236]]],[29,1,1,236,237,[[883,1,1,236,237]]],[32,2,2,237,239,[[897,1,1,237,238],[899,1,1,238,239]]],[33,1,1,239,240,[[901,1,1,239,240]]],[36,1,1,240,241,[[910,1,1,240,241]]],[37,1,1,241,242,[[918,1,1,241,242]]],[38,1,1,242,243,[[927,1,1,242,243]]]],[142,205,689,865,1131,1192,1196,1299,1356,1428,1448,1577,1638,1645,1651,1732,1760,1783,1831,1877,1951,1952,2709,3396,3417,3432,3439,3454,3558,3559,3861,3922,3928,3983,4142,4662,5044,5082,5110,5181,5209,5259,5313,5389,5415,5640,5644,5723,5741,5934,6461,6491,6507,6552,6622,6833,6869,6917,6930,6965,7032,7054,7121,7215,7259,7272,7275,7354,7377,7608,7685,7686,7705,7749,7761,7857,7876,7889,7944,7970,7973,7975,8003,8060,8186,8340,8349,8382,8384,8516,8524,8545,8723,8879,9054,9144,9147,9158,9237,9247,9256,9272,9280,9288,9297,9303,9310,9519,9525,9551,9733,9746,9750,9827,9869,9879,9883,9911,9914,9924,9931,9936,9940,9946,9951,9956,9961,9982,10020,10086,10118,10136,10144,10187,10193,10207,10843,10857,10873,11133,11205,11313,11340,11359,11360,11402,11452,11493,11549,11631,11643,11853,11870,11984,12014,12101,12103,12112,12244,12396,12400,12496,12510,12543,12611,12671,12735,12751,12754,12794,12868,12874,13213,13487,13558,13582,13632,13634,13805,14241,14476,14558,14565,14586,14711,14756,14757,14825,14827,14919,15015,15070,15287,15317,15325,15382,15431,15444,15467,16265,16584,16632,16636,17170,17430,17439,17571,17799,18084,18378,18402,18403,18518,18788,19429,19430,19621,19629,19727,19770,19793,19842,19844,20310,20317,20349,20535,21058,21172,21433,21656,21737,21742,22169,22234,22253,22431,22635,22684,22707,22873,22985,23127]]],["Day",[2,2,[[0,1,1,0,1,[[0,1,1,0,1]]],[18,1,1,1,2,[[496,1,1,1,2]]]],[4,14170]]],["Days",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13635]]],["When",[1,1,[[18,1,1,0,1,[[533,1,1,0,1]]]],[14764]]],["age",[5,5,[[0,2,2,0,2,[[17,1,1,0,1],[23,1,1,1,2]]],[5,2,2,2,4,[[209,2,2,2,4]]],[37,1,1,4,5,[[918,1,1,4,5]]]],[435,592,6461,6462,22980]]],["ago",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7411]]],["as",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11737]]],["continuance",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16255]]],["daily",[7,6,[[3,1,1,0,1,[[144,1,1,0,1]]],[11,1,1,1,2,[[337,1,1,1,2]]],[23,2,2,2,4,[[751,1,1,2,3],[781,1,1,3,4]]],[25,3,2,4,6,[[846,2,1,4,5],[847,1,1,5,6]]]],[4601,10252,19144,19895,21653,21668]]],["day",[1221,1089,[[0,68,65,0,65,[[0,9,9,0,9],[1,5,4,9,13],[2,2,2,13,15],[3,1,1,15,16],[4,2,2,16,18],[6,3,2,18,20],[7,3,3,20,23],[14,1,1,23,24],[16,2,2,24,26],[17,1,1,26,27],[18,2,2,27,29],[20,2,2,29,31],[21,2,2,31,33],[23,2,2,33,35],[24,1,1,35,36],[25,2,2,36,38],[26,2,2,38,40],[28,1,1,40,41],[29,1,1,41,42],[30,5,5,42,47],[31,1,1,47,48],[32,2,2,48,50],[33,1,1,50,51],[34,2,2,51,53],[38,2,1,53,54],[39,2,2,54,56],[40,1,1,56,57],[41,3,3,57,60],[46,2,2,60,62],[47,2,2,62,64],[49,1,1,64,65]]],[1,64,53,65,118,[[51,2,2,65,67],[54,1,1,67,68],[55,1,1,68,69],[59,3,3,69,72],[61,12,8,72,80],[62,4,4,80,84],[63,3,2,84,86],[65,11,8,86,94],[68,6,5,94,99],[69,4,3,99,102],[70,1,1,102,103],[71,1,1,103,104],[72,1,1,104,105],[73,1,1,105,106],[78,2,2,106,108],[80,2,2,108,110],[81,4,3,110,113],[83,2,2,113,115],[84,2,2,115,117],[89,1,1,117,118]]],[2,53,48,118,166,[[95,1,1,118,119],[96,7,7,119,126],[97,1,1,126,127],[98,2,2,127,129],[99,2,1,129,130],[101,1,1,130,131],[102,6,6,131,137],[103,5,5,137,142],[104,2,2,142,144],[105,1,1,144,145],[108,3,2,145,147],[111,2,2,147,149],[112,18,15,149,164],[114,1,1,164,165],[116,1,1,165,166]]],[3,69,59,166,225,[[119,2,2,166,168],[122,4,3,168,171],[123,15,15,171,186],[124,1,1,186,187],[125,6,5,187,192],[126,1,1,192,193],[127,3,2,193,195],[131,2,2,195,197],[135,7,2,197,199],[138,1,1,199,200],[141,1,1,200,201],[144,7,7,201,208],[145,9,9,208,217],[146,6,5,217,222],[147,3,2,222,224],[149,1,1,224,225]]],[4,98,96,225,321,[[153,2,2,225,227],[154,4,4,227,231],[155,1,1,231,232],[156,10,10,232,242],[157,6,6,242,248],[158,2,2,248,250],[159,1,1,250,251],[160,4,4,251,255],[161,4,4,255,259],[162,4,4,259,263],[163,8,8,263,271],[164,1,1,271,272],[165,1,1,272,273],[167,2,2,273,275],[168,3,3,275,278],[170,1,1,278,279],[171,1,1,279,280],[172,1,1,280,281],[173,1,1,281,282],[176,1,1,282,283],[178,4,4,283,287],[179,6,6,287,293],[180,5,5,293,298],[181,8,7,298,305],[182,6,6,305,311],[183,6,5,311,316],[184,3,3,316,319],[185,1,1,319,320],[186,1,1,320,321]]],[5,54,45,321,366,[[189,1,1,321,322],[190,2,2,322,324],[191,4,3,324,327],[192,6,5,327,332],[193,3,2,332,334],[194,3,3,334,337],[195,4,3,337,340],[196,8,7,340,347],[199,1,1,347,348],[200,7,5,348,353],[201,1,1,353,354],[202,1,1,354,355],[208,9,7,355,362],[209,3,3,362,365],[210,1,1,365,366]]],[6,39,38,366,404,[[211,2,2,366,368],[213,1,1,368,369],[214,1,1,369,370],[215,1,1,370,371],[216,2,2,371,373],[219,3,3,373,376],[220,2,2,376,378],[221,1,1,378,379],[222,1,1,379,380],[223,2,2,380,382],[224,3,3,382,385],[225,1,1,385,386],[228,3,3,386,389],[229,6,5,389,394],[230,8,8,394,402],[231,2,2,402,404]]],[7,7,6,404,410,[[233,2,1,404,405],[234,1,1,405,406],[235,4,4,406,410]]],[8,85,79,410,489,[[237,1,1,410,411],[238,1,1,411,412],[239,3,3,412,415],[240,1,1,415,416],[241,3,3,416,419],[242,2,2,419,421],[243,3,2,421,423],[244,5,4,423,427],[245,3,3,427,430],[246,3,2,430,432],[247,4,4,432,436],[248,1,1,436,437],[249,10,10,437,447],[250,2,2,447,449],[252,3,2,449,451],[253,2,2,451,453],[254,1,1,453,454],[255,3,3,454,457],[256,4,4,457,461],[257,4,4,461,465],[258,1,1,465,466],[259,4,3,466,469],[260,3,3,469,472],[261,6,6,472,478],[262,4,3,478,481],[263,2,2,481,483],[264,3,3,483,486],[265,2,2,486,488],[266,1,1,488,489]]],[9,53,42,489,531,[[267,1,1,489,490],[268,1,1,490,491],[269,6,5,491,496],[270,3,3,496,499],[271,1,1,499,500],[272,5,4,500,504],[273,1,1,504,505],[277,2,1,505,506],[278,1,1,506,507],[279,1,1,507,508],[280,1,1,508,509],[281,1,1,509,510],[282,2,2,510,512],[284,7,5,512,517],[285,15,9,517,526],[286,1,1,526,527],[288,2,2,527,529],[289,1,1,529,530],[290,1,1,530,531]]],[10,42,40,531,571,[[291,4,4,531,535],[292,4,4,535,539],[293,2,2,539,541],[294,1,1,541,542],[295,1,1,542,543],[298,8,8,543,551],[299,2,2,551,553],[300,1,1,553,554],[302,6,5,554,559],[303,2,2,559,561],[304,1,1,561,562],[306,1,1,562,563],[307,1,1,563,564],[308,2,2,564,566],[310,3,2,566,568],[312,3,3,568,571]]],[11,28,25,571,596,[[314,3,3,571,574],[316,4,4,574,578],[318,3,3,578,581],[319,2,1,581,582],[320,1,1,582,583],[322,1,1,583,584],[326,1,1,584,585],[327,1,1,585,586],[328,1,1,586,587],[329,3,3,587,590],[331,2,1,590,591],[332,3,3,591,594],[333,2,1,594,595],[337,1,1,595,596]]],[12,18,15,596,611,[[341,2,2,596,598],[342,1,1,598,599],[348,1,1,599,600],[349,2,1,600,601],[350,2,2,601,603],[353,2,2,603,605],[354,2,1,605,606],[363,2,1,606,607],[365,1,1,607,608],[366,3,3,608,611]]],[13,29,23,611,634,[[371,1,1,611,612],[372,2,2,612,614],[373,2,2,614,616],[374,2,2,616,618],[376,3,2,618,620],[384,3,3,620,623],[386,2,1,623,624],[387,3,2,624,626],[390,2,1,626,627],[392,1,1,627,628],[394,1,1,628,629],[395,2,1,629,630],[396,2,1,630,631],[401,3,3,631,634]]],[14,7,6,634,640,[[410,1,1,634,635],[411,3,2,635,637],[412,3,3,637,640]]],[15,29,23,640,663,[[413,1,1,640,641],[416,2,2,641,643],[417,1,1,643,644],[420,11,7,644,651],[421,5,5,651,656],[422,2,1,656,657],[424,1,1,657,658],[425,6,5,658,663]]],[16,27,23,663,686,[[426,2,2,663,665],[428,4,4,665,669],[429,1,1,669,670],[430,3,3,670,673],[432,1,1,673,674],[433,4,4,674,678],[434,12,8,678,686]]],[17,18,17,686,703,[[436,3,3,686,689],[437,1,1,689,690],[438,5,5,690,695],[449,1,1,695,696],[450,1,1,696,697],[452,1,1,697,698],[453,1,1,698,699],[455,1,1,699,700],[456,2,1,700,701],[458,1,1,701,702],[473,1,1,702,703]]],[18,48,47,703,750,[[479,1,1,703,704],[484,1,1,704,705],[495,1,1,705,706],[496,1,1,706,707],[497,1,1,707,708],[502,1,1,708,709],[509,1,1,709,710],[512,1,1,710,711],[514,1,1,711,712],[515,2,2,712,714],[521,2,2,714,716],[527,1,1,716,717],[533,1,1,717,718],[536,1,1,718,719],[548,3,3,719,722],[550,1,1,722,723],[551,1,1,723,724],[554,1,1,724,725],[555,2,2,725,727],[558,1,1,727,728],[561,1,1,728,729],[563,1,1,729,730],[565,1,1,730,731],[566,1,1,731,732],[572,2,2,732,734],[573,1,1,734,735],[579,3,2,735,737],[587,2,2,737,739],[595,1,1,739,740],[596,3,3,740,743],[613,1,1,743,744],[614,1,1,744,745],[615,1,1,745,746],[616,1,1,746,747],[617,1,1,747,748],[622,1,1,748,749],[623,1,1,749,750]]],[19,14,14,750,764,[[631,1,1,750,751],[633,1,1,751,752],[634,2,2,752,754],[638,1,1,754,755],[643,1,1,755,756],[648,2,2,756,758],[649,1,1,758,759],[650,1,1,759,760],[651,1,1,760,761],[654,3,3,761,764]]],[20,6,5,764,769,[[665,3,2,764,766],[666,2,2,766,768],[670,1,1,768,769]]],[21,4,3,769,772,[[673,2,1,769,770],[674,1,1,770,771],[678,1,1,771,772]]],[22,87,84,772,856,[[680,4,4,772,776],[681,2,2,776,778],[682,2,2,778,780],[683,1,1,780,781],[685,4,4,781,785],[687,2,2,785,787],[688,5,5,787,792],[689,3,3,792,795],[690,2,2,795,797],[691,3,3,797,800],[692,1,1,800,801],[695,5,4,801,805],[697,6,6,805,811],[698,1,1,811,812],[700,5,5,812,817],[701,1,1,817,818],[702,1,1,818,819],[703,1,1,819,820],[704,1,1,820,821],[705,6,6,821,827],[706,3,3,827,830],[707,1,1,830,831],[708,3,3,831,834],[709,1,1,834,835],[712,1,1,835,836],[715,2,1,836,837],[716,1,1,837,838],[717,1,1,838,839],[725,1,1,839,840],[726,1,1,840,841],[727,1,1,841,842],[729,1,1,842,843],[730,2,2,843,845],[734,1,1,845,846],[736,5,4,846,850],[739,1,1,850,851],[740,1,1,851,852],[741,1,1,852,853],[743,2,2,853,855],[744,1,1,855,856]]],[23,70,61,856,917,[[745,2,2,856,858],[747,1,1,858,859],[748,1,1,859,860],[750,1,1,860,861],[751,3,2,861,863],[755,4,3,863,866],[756,1,1,866,867],[760,1,1,867,868],[761,10,7,868,875],[762,1,1,875,876],[764,2,1,876,877],[769,3,3,877,880],[771,1,1,880,881],[774,2,2,881,883],[775,2,2,883,885],[776,4,2,885,887],[777,1,1,887,888],[778,1,1,888,889],[779,1,1,889,890],[780,3,3,890,893],[782,1,1,893,894],[783,2,2,894,896],[784,1,1,896,897],[785,1,1,897,898],[786,2,2,898,900],[788,5,5,900,905],[790,3,2,905,907],[791,1,1,907,908],[792,1,1,908,909],[793,2,2,909,911],[794,3,3,911,914],[795,1,1,914,915],[796,2,2,915,917]]],[24,13,12,917,929,[[797,3,3,917,920],[798,6,5,920,925],[799,4,4,925,929]]],[25,62,55,929,984,[[802,1,1,929,930],[803,1,1,930,931],[805,1,1,931,932],[808,4,4,932,936],[814,1,1,936,937],[817,3,3,937,940],[821,4,4,940,944],[822,1,1,944,945],[823,1,1,945,946],[824,2,2,946,948],[825,5,4,948,952],[827,1,1,952,953],[828,1,1,953,954],[829,1,1,954,955],[830,1,1,955,956],[831,7,4,956,960],[832,1,1,960,961],[833,1,1,961,962],[834,3,1,962,963],[835,2,1,963,964],[837,1,1,964,965],[839,2,2,965,967],[840,4,4,967,971],[841,1,1,971,972],[844,4,4,972,976],[845,1,1,976,977],[846,3,3,977,980],[847,4,4,980,984]]],[26,4,4,984,988,[[858,2,2,984,986],[859,2,2,986,988]]],[27,14,13,988,1001,[[862,2,2,988,990],[863,5,5,990,995],[865,1,1,995,996],[866,1,1,996,997],[867,1,1,997,998],[868,1,1,998,999],[870,2,1,999,1000],[871,1,1,1000,1001]]],[28,9,7,1001,1008,[[876,2,1,1001,1002],[877,5,4,1002,1006],[878,2,2,1006,1008]]],[29,14,11,1008,1019,[[879,2,1,1008,1009],[880,1,1,1009,1010],[881,1,1,1010,1011],[883,3,2,1011,1013],[884,1,1,1013,1014],[886,5,4,1014,1018],[887,1,1,1018,1019]]],[30,12,6,1019,1025,[[888,12,6,1019,1025]]],[32,8,7,1025,1032,[[894,1,1,1025,1026],[895,1,1,1026,1027],[896,1,1,1027,1028],[897,1,1,1028,1029],[899,4,3,1029,1032]]],[33,3,3,1032,1035,[[900,1,1,1032,1033],[901,1,1,1033,1034],[902,1,1,1034,1035]]],[34,1,1,1035,1036,[[905,1,1,1035,1036]]],[35,20,13,1036,1049,[[906,14,8,1036,1044],[907,3,2,1044,1046],[908,3,3,1046,1049]]],[36,7,6,1049,1055,[[909,2,2,1049,1051],[910,5,4,1051,1055]]],[37,31,29,1055,1084,[[911,1,1,1055,1056],[912,1,1,1056,1057],[913,2,2,1057,1059],[914,1,1,1059,1060],[916,1,1,1060,1061],[918,1,1,1061,1062],[919,2,2,1062,1064],[921,1,1,1064,1065],[922,7,6,1065,1071],[923,3,3,1071,1074],[924,11,10,1074,1084]]],[38,6,5,1084,1089,[[927,2,2,1084,1086],[928,4,3,1086,1089]]]],[4,7,12,13,15,17,18,22,30,32,33,34,47,60,63,93,106,107,170,172,187,197,205,378,420,423,425,494,495,521,539,551,561,603,633,691,724,725,729,772,802,862,895,912,913,916,921,960,973,976,1005,1014,1031,1159,1179,1192,1204,1265,1270,1284,1443,1446,1466,1471,1526,1567,1572,1646,1683,1783,1790,1805,1822,1830,1831,1832,1833,1834,1857,1867,1870,1871,1873,1875,1902,1919,1948,1952,1969,1972,1973,1974,1976,1977,2027,2036,2037,2041,2042,2059,2061,2062,2098,2143,2156,2193,2372,2374,2435,2437,2466,2467,2472,2507,2517,2533,2534,2744,2869,2894,2895,2896,2897,2914,2915,2917,2951,2954,2957,2996,3047,3057,3058,3079,3084,3086,3103,3113,3120,3121,3134,3150,3182,3197,3231,3287,3288,3397,3399,3405,3408,3409,3410,3414,3416,3423,3429,3430,3431,3436,3437,3438,3441,3442,3478,3593,3693,3705,3832,3833,3834,3851,3860,3862,3868,3874,3880,3886,3892,3898,3904,3910,3916,3922,3928,3934,3956,3968,3970,3971,3976,3980,3998,4043,4056,4176,4185,4301,4308,4405,4489,4580,4586,4593,4594,4595,4602,4603,4609,4620,4625,4628,4631,4634,4637,4640,4643,4653,4655,4656,4660,4662,4683,4688,4763,4902,4931,4956,4960,4963,4968,4989,5008,5012,5014,5019,5024,5030,5036,5042,5043,5044,5054,5056,5065,5067,5068,5077,5092,5110,5122,5138,5148,5155,5156,5158,5160,5164,5167,5190,5194,5199,5201,5210,5212,5216,5221,5234,5235,5236,5240,5248,5290,5324,5334,5345,5346,5350,5400,5415,5430,5470,5540,5569,5582,5583,5584,5586,5587,5589,5594,5595,5596,5612,5624,5625,5626,5643,5683,5689,5691,5692,5694,5697,5707,5710,5716,5719,5724,5726,5727,5730,5745,5746,5750,5755,5793,5804,5806,5822,5845,5900,5919,5924,5943,5944,5945,5953,5959,5963,5964,5974,6001,6002,6027,6030,6031,6049,6054,6064,6076,6077,6078,6091,6092,6096,6099,6167,6196,6197,6198,6199,6201,6265,6275,6429,6442,6443,6444,6448,6455,6457,6468,6469,6474,6501,6530,6535,6598,6613,6624,6678,6686,6772,6773,6799,6815,6826,6856,6872,6891,6894,6924,6926,6927,6948,6994,7005,7023,7029,7032,7033,7035,7054,7075,7076,7078,7079,7080,7084,7089,7100,7105,7108,7168,7190,7195,7199,7200,7204,7274,7288,7300,7309,7313,7324,7346,7347,7349,7358,7362,7377,7387,7403,7406,7410,7415,7420,7427,7437,7456,7458,7462,7465,7477,7478,7507,7509,7531,7532,7536,7538,7539,7541,7545,7546,7553,7588,7595,7628,7664,7678,7697,7730,7756,7757,7764,7777,7778,7779,7782,7795,7800,7805,7809,7824,7843,7849,7858,7869,7893,7894,7913,7915,7924,7926,7928,7929,7931,7936,7940,7960,7962,7970,7973,7975,7979,8003,8015,8024,8066,8089,8116,8118,8119,8120,8123,8125,8128,8140,8165,8166,8177,8180,8186,8271,8304,8354,8378,8409,8429,8438,8485,8486,8496,8498,8509,8513,8514,8516,8517,8530,8531,8533,8535,8546,8557,8603,8621,8663,8710,8742,8747,8765,8768,8778,8794,8807,8812,8822,8834,8866,8885,8993,9001,9009,9013,9014,9046,9049,9051,9064,9072,9091,9158,9163,9170,9183,9184,9187,9195,9232,9299,9331,9356,9377,9421,9437,9485,9505,9515,9554,9556,9573,9611,9614,9621,9626,9702,9703,9705,9716,9749,9820,9903,9930,9969,10006,10017,10024,10064,10103,10106,10115,10134,10252,10426,10428,10454,10695,10742,10771,10772,10827,10843,10868,11094,11150,11169,11185,11186,11277,11287,11297,11333,11334,11354,11362,11407,11414,11546,11566,11576,11613,11634,11639,11688,11753,11770,11808,11848,11982,11987,11991,12234,12244,12252,12265,12268,12269,12307,12361,12381,12393,12495,12502,12503,12504,12506,12510,12511,12512,12514,12521,12543,12547,12580,12667,12672,12686,12688,12690,12693,12712,12720,12754,12759,12760,12761,12778,12780,12783,12788,12809,12818,12829,12830,12834,12835,12845,12849,12851,12852,12853,12855,12856,12873,12875,12882,12892,12905,12907,12908,12909,12912,13187,13226,13272,13296,13354,13385,13421,13816,13952,14006,14136,14170,14183,14256,14358,14438,14463,14496,14502,14579,14593,14683,14760,14806,14984,14991,15000,15034,15064,15095,15122,15155,15220,15269,15291,15309,15342,15461,15462,15467,15523,15529,15789,15791,15893,15989,15995,16062,16204,16229,16234,16251,16270,16322,16345,16508,16574,16589,16595,16692,16844,17010,17015,17034,17061,17089,17170,17179,17184,17430,17443,17466,17474,17526,17582,17588,17648,17696,17697,17702,17705,17714,17725,17734,17735,17769,17800,17802,17803,17805,17833,17843,17853,17867,17870,17877,17882,17894,17895,17900,17901,17904,17912,17915,17919,17931,17987,17990,17992,17994,18020,18022,18023,18025,18027,18028,18035,18057,18060,18064,18072,18077,18092,18116,18127,18131,18152,18153,18154,18159,18163,18164,18169,18183,18188,18211,18240,18242,18243,18257,18311,18355,18409,18418,18608,18621,18644,18686,18701,18702,18765,18789,18790,18791,18799,18845,18860,18870,18899,18902,18930,18956,18964,19027,19036,19093,19141,19144,19230,19231,19233,19252,19355,19373,19374,19375,19378,19379,19381,19384,19401,19436,19537,19552,19567,19618,19674,19675,19697,19723,19751,19762,19795,19814,19837,19844,19848,19872,19923,19939,19940,19945,19961,19994,19996,20012,20016,20020,20032,20033,20055,20066,20077,20121,20149,20153,20193,20196,20197,20214,20287,20310,20322,20323,20331,20333,20339,20348,20353,20354,20357,20368,20411,20416,20492,20495,20539,20584,20587,20589,20596,20713,20766,20767,20818,20900,20901,20924,20926,20969,21000,21045,21046,21058,21081,21082,21083,21118,21148,21170,21204,21206,21207,21213,21222,21245,21258,21292,21325,21392,21439,21444,21456,21459,21461,21470,21478,21590,21594,21597,21599,21626,21651,21652,21655,21656,21659,21661,21667,21995,22003,22019,22027,22099,22105,22108,22120,22121,22123,22126,22138,22161,22169,22183,22213,22239,22306,22312,22313,22322,22342,22357,22361,22378,22395,22409,22441,22443,22453,22484,22490,22491,22494,22506,22518,22521,22522,22523,22524,22525,22599,22614,22626,22643,22668,22675,22676,22691,22702,22729,22784,22794,22795,22796,22797,22801,22802,22803,22805,22807,22808,22828,22831,22836,22841,22855,22870,22873,22874,22878,22885,22910,22921,22922,22932,22957,22985,23011,23015,23039,23048,23049,23051,23053,23054,23056,23060,23061,23063,23069,23071,23072,23074,23075,23076,23077,23081,23088,23089,23122,23137,23139,23141,23143]]],["day's",[5,4,[[3,2,1,0,1,[[127,2,1,0,1]]],[10,1,1,1,2,[[309,1,1,1,2]]],[16,1,1,2,3,[[434,1,1,2,3]]],[31,1,1,3,4,[[891,1,1,3,4]]]],[4055,9391,12847,22562]]],["days",[651,594,[[0,61,55,0,55,[[0,1,1,0,1],[2,2,2,1,3],[4,10,10,3,13],[5,2,2,13,15],[6,6,5,15,20],[7,4,4,20,24],[8,1,1,24,25],[9,1,1,25,26],[10,1,1,26,27],[13,1,1,27,28],[16,1,1,28,29],[20,2,2,29,31],[23,1,1,31,32],[24,2,2,32,34],[25,3,3,34,37],[26,2,2,37,39],[28,2,2,39,41],[29,1,1,41,42],[34,2,2,42,44],[36,1,1,44,45],[39,4,4,45,49],[41,1,1,49,50],[46,4,1,50,51],[48,1,1,51,52],[49,5,3,52,55]]],[1,29,29,55,84,[[51,1,1,55,56],[56,1,1,56,57],[59,2,2,57,59],[61,2,2,59,61],[62,2,2,61,63],[64,1,1,63,64],[65,2,2,64,66],[69,3,3,66,69],[71,1,1,69,70],[72,3,3,70,73],[73,2,2,73,75],[78,3,3,75,78],[80,2,2,78,80],[83,3,3,80,83],[84,1,1,83,84]]],[2,40,34,84,118,[[97,4,2,84,86],[101,6,4,86,90],[102,9,9,90,99],[103,2,2,99,101],[104,8,6,101,107],[111,1,1,107,108],[112,10,10,108,118]]],[3,30,23,118,141,[[122,8,6,118,124],[125,3,3,124,127],[127,4,1,127,128],[128,3,2,128,130],[129,1,1,130,131],[130,2,1,131,132],[135,3,3,132,135],[136,1,1,135,136],[140,1,1,136,137],[144,2,2,137,139],[145,1,1,139,140],[147,1,1,140,141]]],[4,49,43,141,184,[[153,2,1,141,142],[154,1,1,142,143],[156,6,6,143,149],[157,3,3,149,152],[158,2,1,152,153],[161,4,4,153,157],[162,1,1,157,158],[163,4,2,158,160],[164,1,1,160,161],[168,6,5,161,166],[169,3,3,166,169],[171,1,1,169,170],[174,3,3,170,173],[175,1,1,173,174],[177,1,1,174,175],[178,1,1,175,176],[182,2,2,176,178],[183,2,2,178,180],[184,2,2,180,182],[185,1,1,182,183],[186,2,1,183,184]]],[5,13,12,184,196,[[187,2,2,184,186],[188,2,2,186,188],[189,1,1,188,189],[190,1,1,189,190],[192,2,2,190,192],[195,1,1,192,193],[206,1,1,193,194],[208,1,1,194,195],[210,2,1,195,196]]],[6,19,16,196,212,[[212,3,2,196,198],[215,2,1,198,199],[218,1,1,199,200],[221,1,1,200,201],[224,3,3,201,204],[225,1,1,204,205],[227,1,1,205,206],[228,2,1,206,207],[229,2,2,207,209],[230,2,2,209,211],[231,1,1,211,212]]],[7,1,1,212,213,[[232,1,1,212,213]]],[8,20,20,213,233,[[236,1,1,213,214],[237,1,1,214,215],[238,1,1,215,216],[242,2,2,216,218],[244,1,1,218,219],[245,1,1,219,220],[248,2,2,220,222],[249,1,1,222,223],[252,2,2,223,225],[253,1,1,225,226],[260,2,2,226,228],[263,1,1,228,229],[264,1,1,229,230],[265,2,2,230,232],[266,1,1,232,233]]],[9,7,7,233,240,[[267,1,1,233,234],[273,1,1,234,235],[282,1,1,235,236],[286,1,1,236,237],[287,2,2,237,239],[290,1,1,239,240]]],[10,33,30,240,270,[[292,3,3,240,243],[293,3,3,243,246],[294,2,2,246,248],[298,4,2,248,250],[300,1,1,250,251],[301,3,3,251,254],[302,1,1,254,255],[304,2,2,255,257],[305,5,5,257,262],[306,2,2,262,264],[307,1,1,264,265],[308,1,1,265,266],[309,1,1,266,267],[310,1,1,267,268],[311,2,1,268,269],[312,1,1,269,270]]],[11,19,19,270,289,[[314,1,1,270,271],[320,1,1,271,272],[322,1,1,272,273],[324,1,1,273,274],[325,2,2,274,276],[327,3,3,276,279],[330,1,1,279,280],[332,4,4,280,284],[335,2,2,284,286],[336,1,1,286,287],[337,2,2,287,289]]],[12,17,16,289,305,[[338,1,1,289,290],[341,1,1,290,291],[342,3,2,291,293],[344,2,2,293,295],[346,1,1,295,296],[347,1,1,296,297],[349,1,1,297,298],[350,1,1,298,299],[354,1,1,299,300],[358,1,1,300,301],[359,1,1,301,302],[360,1,1,302,303],[366,2,2,303,305]]],[13,24,22,305,327,[[373,3,2,305,307],[375,1,1,307,308],[376,1,1,308,309],[379,1,1,309,310],[380,1,1,310,311],[381,1,1,311,312],[386,1,1,312,313],[387,1,1,313,314],[390,3,3,314,317],[392,1,1,317,318],[395,1,1,318,319],[396,4,3,319,322],[398,2,2,322,324],[400,1,1,324,325],[401,1,1,325,326],[402,1,1,326,327]]],[14,7,7,327,334,[[406,2,2,327,329],[408,1,1,329,330],[410,2,2,330,332],[412,2,2,332,334]]],[15,18,16,334,350,[[413,1,1,334,335],[414,1,1,335,336],[417,1,1,336,337],[418,2,2,337,339],[420,1,1,339,340],[424,9,7,340,347],[425,3,3,347,350]]],[16,17,13,350,363,[[426,6,4,350,354],[427,2,2,354,356],[429,2,2,356,358],[434,7,5,358,363]]],[17,31,28,363,391,[[436,1,1,363,364],[437,1,1,364,365],[438,1,1,365,366],[442,4,3,366,369],[443,1,1,369,370],[444,1,1,370,371],[445,4,2,371,373],[447,1,1,373,374],[449,3,3,374,377],[450,1,1,377,378],[452,2,2,378,380],[456,1,1,380,381],[459,1,1,381,382],[464,3,3,382,385],[465,2,2,385,387],[468,1,1,387,388],[471,1,1,388,389],[473,1,1,389,390],[477,1,1,390,391]]],[18,31,31,391,422,[[498,1,1,391,392],[500,1,1,392,393],[504,1,1,393,394],[511,1,1,394,395],[514,2,2,395,397],[516,2,2,397,399],[521,1,1,399,400],[526,1,1,400,401],[532,1,1,401,402],[549,1,1,402,403],[554,1,1,403,404],[555,1,1,404,405],[566,2,2,405,407],[567,5,5,407,412],[579,4,4,412,416],[580,1,1,416,417],[586,1,1,417,418],[596,1,1,418,419],[605,1,1,419,420],[620,1,1,420,421],[621,1,1,421,422]]],[19,7,7,422,429,[[630,2,2,422,424],[636,1,1,424,425],[637,1,1,425,426],[642,1,1,426,427],[655,1,1,427,428],[658,1,1,428,429]]],[20,18,16,429,445,[[660,3,3,429,432],[663,3,3,432,435],[664,2,2,435,437],[665,1,1,437,438],[666,2,2,438,440],[667,2,1,440,441],[669,3,3,441,444],[670,2,1,444,445]]],[22,24,22,445,467,[[679,1,1,445,446],[680,1,1,446,447],[685,2,2,447,449],[691,1,1,449,450],[701,1,1,450,451],[702,1,1,451,452],[708,1,1,452,453],[710,1,1,453,454],[716,4,4,454,458],[717,2,2,458,460],[729,1,1,460,461],[731,1,1,461,462],[738,1,1,462,463],[741,2,2,463,465],[743,4,2,465,467]]],[23,51,50,467,517,[[745,2,2,467,469],[746,1,1,469,470],[747,3,3,470,473],[749,1,1,473,474],[750,1,1,474,475],[751,1,1,475,476],[753,1,1,476,477],[757,1,1,477,478],[760,2,2,478,480],[761,1,1,480,481],[763,1,1,481,482],[764,1,1,482,483],[766,1,1,483,484],[767,4,4,484,488],[769,1,1,488,489],[770,1,1,489,490],[774,2,2,490,492],[775,5,5,492,497],[776,1,1,497,498],[777,3,3,498,501],[779,4,3,501,504],[781,1,1,504,505],[786,1,1,505,506],[790,1,1,506,507],[792,2,2,507,509],[793,2,2,509,511],[794,2,2,511,513],[795,2,2,513,515],[796,2,2,515,517]]],[24,3,3,517,520,[[797,1,1,517,518],[800,1,1,518,519],[801,1,1,519,520]]],[25,31,28,520,548,[[804,2,2,520,522],[805,7,5,522,527],[806,1,1,527,528],[813,4,4,528,532],[817,3,3,532,535],[823,2,2,535,537],[824,1,1,537,538],[839,2,2,538,540],[844,3,3,540,543],[845,1,1,543,544],[846,4,3,544,547],[847,1,1,547,548]]],[26,15,14,548,562,[[850,4,4,548,552],[857,2,2,552,554],[859,4,3,554,557],[860,2,2,557,559],[861,3,3,559,562]]],[27,11,9,562,571,[[862,2,1,562,563],[863,2,2,563,565],[864,3,3,565,568],[870,3,2,568,570],[873,1,1,570,571]]],[28,4,3,571,574,[[876,2,1,571,572],[877,1,1,572,573],[878,1,1,573,574]]],[29,6,5,574,579,[[879,2,1,574,575],[882,1,1,575,576],[886,1,1,576,577],[887,2,2,577,579]]],[31,2,2,579,581,[[889,1,1,579,580],[891,1,1,580,581]]],[32,4,4,581,585,[[893,1,1,581,582],[896,1,1,582,583],[899,2,2,583,585]]],[34,1,1,585,586,[[903,1,1,585,586]]],[35,1,1,586,587,[[906,1,1,586,587]]],[37,6,6,587,593,[[918,5,5,587,592],[924,1,1,592,593]]],[38,1,1,593,594,[[927,1,1,593,594]]]],[13,69,72,109,110,113,116,119,122,125,128,132,136,140,141,163,169,171,176,183,186,189,193,195,234,259,298,337,409,517,547,646,665,682,693,707,710,768,771,815,816,844,1039,1040,1117,1184,1185,1190,1191,1269,1429,1474,1509,1510,1516,1565,1710,1799,1800,1831,1835,1873,1874,1942,1973,1976,2060,2062,2063,2143,2156,2159,2170,2193,2195,2366,2371,2373,2435,2437,2514,2517,2524,2533,2950,2952,3046,3048,3049,3050,3056,3057,3073,3078,3083,3085,3098,3102,3106,3119,3149,3181,3187,3192,3193,3194,3196,3396,3405,3408,3410,3418,3436,3438,3441,3442,3443,3444,3827,3828,3829,3831,3835,3836,3984,3985,3987,4043,4073,4074,4100,4142,4300,4303,4305,4340,4460,4594,4601,4620,4683,4938,4939,5013,5014,5030,5034,5036,5044,5066,5069,5086,5088,5166,5168,5175,5182,5196,5217,5229,5241,5345,5346,5350,5355,5357,5373,5383,5384,5423,5477,5489,5499,5506,5562,5569,5726,5728,5742,5757,5765,5805,5835,5847,5856,5862,5885,5891,5895,5924,5952,5963,6053,6378,6429,6507,6552,6563,6629,6747,6869,6921,6923,6926,6949,6986,6994,7025,7028,7081,7082,7127,7128,7223,7271,7277,7365,7367,7411,7426,7493,7496,7560,7630,7634,7702,7871,7899,7943,7970,7990,7991,8022,8023,8192,8449,8558,8581,8589,8700,8771,8781,8808,8818,8829,8830,8865,8869,9025,9050,9100,9120,9133,9142,9156,9238,9248,9254,9255,9263,9265,9281,9298,9317,9332,9342,9395,9437,9480,9526,9568,9747,9825,9852,9874,9893,9943,9954,9962,10028,10099,10104,10115,10117,10187,10194,10203,10251,10252,10271,10426,10438,10445,10537,10557,10640,10671,10759,10763,10874,10946,10973,10984,11179,11192,11332,11333,11384,11400,11473,11476,11507,11612,11632,11679,11691,11692,11737,11808,11848,11849,11850,11899,11901,11966,11983,12002,12115,12117,12173,12216,12233,12260,12261,12300,12318,12400,12416,12418,12511,12631,12636,12646,12647,12650,12670,12671,12677,12686,12694,12703,12704,12706,12707,12736,12745,12773,12778,12856,12860,12861,12862,12865,12874,12904,12910,13009,13014,13024,13038,13076,13091,13106,13140,13182,13186,13195,13223,13261,13271,13368,13437,13534,13536,13550,13573,13584,13675,13747,13814,13939,14195,14241,14289,14400,14468,14469,14516,14517,14572,14653,14755,15007,15098,15146,15355,15371,15387,15388,15390,15392,15393,15524,15532,15544,15545,15564,15763,15982,16131,16298,16309,16457,16471,16649,16683,16822,17212,17296,17336,17349,17356,17414,17415,17417,17420,17429,17444,17471,17473,17484,17514,17521,17522,17524,17655,17687,17783,17799,17928,18092,18117,18243,18269,18391,18395,18400,18410,18418,18420,18682,18721,18841,18875,18877,18917,18919,18948,18949,18997,19008,19018,19020,19076,19100,19151,19200,19272,19345,19350,19368,19413,19440,19484,19489,19490,19491,19504,19568,19590,19670,19691,19718,19720,19722,19724,19729,19745,19789,19790,19791,19824,19830,19831,19890,19982,20071,20092,20127,20129,20166,20170,20186,20259,20264,20309,20310,20317,20438,20463,20517,20518,20533,20534,20535,20537,20538,20548,20702,20703,20705,20707,20784,20805,20822,20980,20990,21026,21441,21442,21597,21598,21599,21625,21651,21653,21655,21656,21749,21751,21752,21755,21987,21988,22017,22028,22029,22056,22069,22092,22093,22094,22095,22118,22120,22131,22132,22133,22215,22217,22261,22293,22340,22344,22365,22412,22492,22506,22508,22548,22562,22580,22621,22678,22679,22736,22788,22982,22986,22987,22991,22999,23073,23124]]],["days'",[13,12,[[0,2,2,0,2,[[29,1,1,0,1],[30,1,1,1,2]]],[1,3,3,2,5,[[52,1,1,2,3],[54,1,1,3,4],[57,1,1,4,5]]],[3,3,2,5,7,[[126,2,1,5,6],[149,1,1,6,7]]],[4,1,1,7,8,[[153,1,1,7,8]]],[8,1,1,8,9,[[246,1,1,8,9]]],[9,1,1,9,10,[[290,1,1,9,10]]],[11,1,1,10,11,[[315,1,1,10,11]]],[31,1,1,11,12,[[891,1,1,11,12]]]],[866,896,1597,1635,1737,4021,4768,4894,7448,8705,9585,22561]]],["full",[3,3,[[4,1,1,0,1,[[173,1,1,0,1]]],[11,1,1,1,2,[[327,1,1,1,2]]],[26,1,1,2,3,[[859,1,1,2,3]]]],[5460,9938,22017]]],["life",[2,2,[[10,1,1,0,1,[[293,1,1,0,1]]],[18,1,1,1,2,[[568,1,1,1,2]]]],[8827,15411]]],["live",[1,1,[[18,1,1,0,1,[[593,1,1,0,1]]]],[15850]]],["liveth",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7240]]],["now",[4,4,[[4,1,1,0,1,[[183,1,1,0,1]]],[8,1,1,1,2,[[244,1,1,1,2]]],[15,1,1,2,3,[[413,1,1,2,3]]],[23,1,1,3,4,[[778,1,1,3,4]]]],[5749,7400,12302,19816]]],["presently",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[19,1,1,1,2,[[639,1,1,1,2]]]],[7256,16735]]],["require",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9044]]],["season",[2,2,[[0,1,1,0,1,[[39,1,1,0,1]]],[5,1,1,1,2,[[210,1,1,1,2]]]],[1176,6483]]],["space",[3,3,[[0,1,1,0,1,[[28,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[4,1,1,2,3,[[154,1,1,2,3]]]],[809,3477,4952]]],["then",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7802]]],["time",[48,47,[[0,5,5,0,5,[[3,1,1,0,1],[25,1,1,1,2],[29,1,1,2,3],[38,1,1,3,4],[46,1,1,4,5]]],[2,1,1,5,6,[[114,1,1,5,6]]],[3,4,3,6,9,[[129,2,1,6,7],[136,1,1,7,8],[148,1,1,8,9]]],[4,2,2,9,11,[[162,1,1,9,10],[172,1,1,10,11]]],[5,2,2,11,13,[[189,1,1,11,12],[197,1,1,12,13]]],[6,3,3,13,16,[[225,1,1,13,14],[228,1,1,14,15],[230,1,1,15,16]]],[8,7,7,16,23,[[236,2,2,16,18],[238,1,1,18,19],[242,1,1,19,20],[244,1,1,20,21],[249,1,1,21,22],[262,1,1,22,23]]],[9,3,3,23,26,[[273,1,1,23,24],[280,1,1,24,25],[289,1,1,25,26]]],[10,2,2,26,28,[[292,1,1,26,27],[301,1,1,27,28]]],[11,2,2,28,30,[[315,1,1,28,29],[322,1,1,29,30]]],[12,1,1,30,31,[[366,1,1,30,31]]],[13,1,1,31,32,[[381,1,1,31,32]]],[15,2,2,32,34,[[416,1,1,32,33],[424,1,1,33,34]]],[17,1,1,34,35,[[450,1,1,34,35]]],[18,3,3,35,38,[[504,1,1,35,36],[518,1,1,36,37],[533,1,1,37,38]]],[19,3,3,38,41,[[652,2,2,38,40],[658,1,1,40,41]]],[22,1,1,41,42,[[708,1,1,41,42]]],[23,1,1,42,43,[[783,1,1,42,43]]],[24,1,1,43,44,[[801,1,1,43,44]]],[25,3,3,44,47,[[839,3,3,44,47]]]],[82,700,863,1160,1449,3519,4095,4326,4728,5196,5446,5908,6125,6930,7024,7069,7216,7232,7278,7354,7404,7526,7937,8191,8358,8673,8796,9150,9582,9829,11191,11501,12375,12668,13235,14290,14543,14758,17126,17132,17309,18225,19933,20462,21435,21442,21443]]],["times",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[18,1,1,1,2,[[521,1,1,1,2]]]],[9044,14572]]],["two",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2098]]],["weather",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17133]]],["when",[9,8,[[2,3,2,0,2,[[102,1,1,0,1],[103,2,1,1,2]]],[3,1,1,2,3,[[122,1,1,2,3]]],[4,1,1,3,4,[[173,1,1,3,4]]],[9,1,1,4,5,[[287,1,1,4,5]]],[18,1,1,5,6,[[497,1,1,5,6]]],[25,1,1,6,7,[[839,1,1,6,7]]],[37,1,1,7,8,[[924,1,1,7,8]]]],[3066,3168,3836,5463,8592,14191,21443,23071]]],["while",[7,7,[[2,1,1,0,1,[[103,1,1,0,1]]],[8,5,5,1,6,[[244,1,1,1,2],[257,1,1,2,3],[260,2,2,3,5],[262,1,1,5,6]]],[10,1,1,6,7,[[307,1,1,6,7]]]],[3157,7418,7791,7868,7877,7941,9324]]],["whole",[4,4,[[3,2,2,0,2,[[127,2,2,0,2]]],[6,1,1,2,3,[[229,1,1,2,3]]],[26,1,1,3,4,[[859,1,1,3,4]]]],[4044,4045,7026,22018]]],["year",[5,5,[[1,1,1,0,1,[[62,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[3,1,1,2,3,[[125,1,1,2,3]]],[6,1,1,3,4,[[227,1,1,3,4]]],[8,1,1,4,5,[[262,1,1,4,5]]]],[1877,3498,3987,6990,7937]]],["yearly",[3,3,[[8,3,3,0,3,[[236,1,1,0,1],[237,1,1,1,2],[255,1,1,2,3]]]],[7233,7259,7736]]],["years",[5,4,[[5,2,1,0,1,[[199,2,1,0,1]]],[10,1,1,1,2,[[291,1,1,1,2]]],[13,1,1,2,3,[[387,1,1,2,3]]],[29,1,1,3,4,[[882,1,1,3,4]]]],[6155,8718,11643,22414]]]]},{"k":"H3118","v":[["*",[16,15,[[14,5,4,0,4,[[406,2,2,0,2],[408,3,2,2,4]]],[26,11,11,4,15,[[851,2,2,4,6],[853,1,1,6,7],[854,1,1,7,8],[855,4,4,8,12],[856,3,3,12,15]]]],[12125,12129,12160,12166,21786,21802,21871,21885,21912,21915,21917,21918,21942,21946,21955]]],["day",[5,4,[[14,3,2,0,2,[[408,3,2,0,2]]],[26,2,2,2,4,[[855,2,2,2,4]]]],[12160,12166,21915,21918]]],["days",[9,9,[[26,9,9,0,9,[[851,2,2,0,2],[853,1,1,2,3],[854,1,1,3,4],[855,2,2,4,6],[856,3,3,6,9]]]],[21786,21802,21871,21885,21912,21917,21942,21946,21955]]],["time",[2,2,[[14,2,2,0,2,[[406,2,2,0,2]]]],[12125,12129]]]]},{"k":"H3119","v":[["*",[53,52,[[1,4,3,0,3,[[62,3,2,0,2],[89,1,1,2,3]]],[2,2,2,3,5,[[95,1,1,3,4],[97,1,1,4,5]]],[3,3,3,5,8,[[125,1,1,5,6],[126,1,1,6,7],[130,1,1,7,8]]],[4,2,2,8,10,[[153,1,1,8,9],[180,1,1,9,10]]],[5,1,1,10,11,[[187,1,1,10,11]]],[6,1,1,11,12,[[216,1,1,11,12]]],[8,1,1,12,13,[[260,1,1,12,13]]],[9,1,1,13,14,[[287,1,1,13,14]]],[10,1,1,14,15,[[298,1,1,14,15]]],[12,1,1,15,16,[[346,1,1,15,16]]],[13,1,1,16,17,[[372,1,1,16,17]]],[15,4,4,17,21,[[413,1,1,17,18],[416,1,1,18,19],[421,2,2,19,21]]],[17,2,2,21,23,[[440,1,1,21,22],[459,1,1,22,23]]],[18,10,10,23,33,[[478,1,1,23,24],[490,1,1,24,25],[499,1,1,25,26],[509,1,1,26,27],[519,2,2,27,29],[532,1,1,29,30],[555,1,1,30,31],[568,1,1,31,32],[598,1,1,32,33]]],[22,6,6,33,39,[[682,2,2,33,35],[699,1,1,35,36],[712,1,1,36,37],[738,2,2,37,39]]],[23,7,7,39,46,[[753,1,1,39,40],[758,1,1,40,41],[759,1,1,41,42],[760,1,1,42,43],[775,1,1,43,44],[777,2,2,44,46]]],[24,1,1,46,47,[[798,1,1,46,47]]],[25,5,5,47,52,[[813,3,3,47,50],[822,1,1,50,51],[831,1,1,51,52]]]],[1888,1889,2745,2854,2952,3986,4022,4122,4925,5677,5859,6681,7877,8590,9044,10648,11302,12302,12368,12523,12530,12965,13452,13941,14076,14206,14359,14558,14563,14742,15127,15400,16087,17738,17739,18043,18313,18832,18840,19176,19310,19324,19349,19726,19795,19800,20350,20683,20684,20687,20973,21220]]],["Day",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14742]]],["daily",[2,2,[[18,1,1,0,1,[[490,1,1,0,1]]],[25,1,1,1,2,[[831,1,1,1,2]]]],[14076,21220]]],["day",[42,41,[[1,4,3,0,3,[[62,3,2,0,2],[89,1,1,2,3]]],[2,2,2,3,5,[[95,1,1,3,4],[97,1,1,4,5]]],[3,2,2,5,7,[[125,1,1,5,6],[126,1,1,6,7]]],[4,2,2,7,9,[[153,1,1,7,8],[180,1,1,8,9]]],[5,1,1,9,10,[[187,1,1,9,10]]],[6,1,1,10,11,[[216,1,1,10,11]]],[8,1,1,11,12,[[260,1,1,11,12]]],[9,1,1,12,13,[[287,1,1,12,13]]],[10,1,1,13,14,[[298,1,1,13,14]]],[12,1,1,14,15,[[346,1,1,14,15]]],[13,1,1,15,16,[[372,1,1,15,16]]],[15,4,4,16,20,[[413,1,1,16,17],[416,1,1,17,18],[421,2,2,18,20]]],[18,5,5,20,25,[[478,1,1,20,21],[509,1,1,21,22],[519,1,1,22,23],[568,1,1,23,24],[598,1,1,24,25]]],[22,4,4,25,29,[[682,1,1,25,26],[712,1,1,26,27],[738,2,2,27,29]]],[23,7,7,29,36,[[753,1,1,29,30],[758,1,1,30,31],[759,1,1,31,32],[760,1,1,32,33],[775,1,1,33,34],[777,2,2,34,36]]],[24,1,1,36,37,[[798,1,1,36,37]]],[25,4,4,37,41,[[813,3,3,37,40],[822,1,1,40,41]]]],[1888,1889,2745,2854,2952,3986,4022,4925,5677,5859,6681,7877,8590,9044,10648,11302,12302,12368,12523,12530,13941,14359,14558,15400,16087,17738,18313,18832,18840,19176,19310,19324,19349,19726,19795,19800,20350,20683,20684,20687,20973]]],["daytime",[7,7,[[17,2,2,0,2,[[440,1,1,0,1],[459,1,1,1,2]]],[18,3,3,2,5,[[499,1,1,2,3],[519,1,1,3,4],[555,1,1,4,5]]],[22,2,2,5,7,[[682,1,1,5,6],[699,1,1,6,7]]]],[12965,13452,14206,14563,15127,17739,18043]]],["time",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4122]]]]},{"k":"H3120","v":[["*",[11,11,[[0,2,2,0,2,[[9,2,2,0,2]]],[12,2,2,2,4,[[338,2,2,2,4]]],[22,1,1,4,5,[[744,1,1,4,5]]],[25,2,2,5,7,[[828,2,2,5,7]]],[26,3,3,7,10,[[857,1,1,7,8],[859,1,1,8,9],[860,1,1,9,10]]],[37,1,1,10,11,[[919,1,1,10,11]]]],[236,238,10257,10259,18941,21134,21140,21982,22035,22038,23012]]],["Grecia",[3,3,[[26,3,3,0,3,[[857,1,1,0,1],[859,1,1,1,2],[860,1,1,2,3]]]],[21982,22035,22038]]],["Greece",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23012]]],["Javan",[7,7,[[0,2,2,0,2,[[9,2,2,0,2]]],[12,2,2,2,4,[[338,2,2,2,4]]],[22,1,1,4,5,[[744,1,1,4,5]]],[25,2,2,5,7,[[828,2,2,5,7]]]],[236,238,10257,10259,18941,21134,21140]]]]},{"k":"H3121","v":[["*",[2,2,[[18,2,2,0,2,[[517,1,1,0,1],[546,1,1,1,2]]]],[14527,14937]]],["mire",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14937]]],["miry",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14527]]]]},{"k":"H3122","v":[["Jonadab",[8,7,[[9,5,4,0,4,[[279,5,4,0,4]]],[23,3,3,4,7,[[779,3,3,4,7]]]],[8320,8322,8349,8352,19829,19833,19842]]]]},{"k":"H3123","v":[["*",[31,31,[[0,5,5,0,5,[[7,5,5,0,5]]],[2,9,9,5,14,[[90,1,1,5,6],[94,2,2,6,8],[101,2,2,8,10],[103,2,2,10,12],[104,2,2,12,14]]],[3,1,1,14,15,[[122,1,1,14,15]]],[18,2,2,15,17,[[532,1,1,15,16],[545,1,1,16,17]]],[21,6,6,17,23,[[671,1,1,17,18],[672,1,1,18,19],[674,1,1,19,20],[675,2,2,20,22],[676,1,1,22,23]]],[22,3,3,23,26,[[716,1,1,23,24],[737,1,1,24,25],[738,1,1,25,26]]],[23,1,1,26,27,[[792,1,1,26,27]]],[25,1,1,27,28,[[808,1,1,27,28]]],[27,2,2,28,30,[[868,1,1,28,29],[872,1,1,29,30]]],[33,1,1,30,31,[[901,1,1,30,31]]]],[191,192,193,194,195,2759,2837,2841,3050,3052,3133,3141,3182,3197,3833,14738,14913,17552,17568,17583,17600,17610,17623,18404,18811,18829,20108,20593,22189,22251,22706]]],["dove",[14,14,[[0,5,5,0,5,[[7,5,5,0,5]]],[18,2,2,5,7,[[532,1,1,5,6],[545,1,1,6,7]]],[21,3,3,7,10,[[672,1,1,7,8],[675,1,1,8,9],[676,1,1,9,10]]],[22,1,1,10,11,[[716,1,1,10,11]]],[23,1,1,11,12,[[792,1,1,11,12]]],[27,2,2,12,14,[[868,1,1,12,13],[872,1,1,13,14]]]],[191,192,193,194,195,14738,14913,17568,17600,17623,18404,20108,22189,22251]]],["doves",[5,5,[[21,1,1,0,1,[[675,1,1,0,1]]],[22,2,2,1,3,[[737,1,1,1,2],[738,1,1,2,3]]],[25,1,1,3,4,[[808,1,1,3,4]]],[33,1,1,4,5,[[901,1,1,4,5]]]],[17610,18811,18829,20593,22706]]],["doves'",[2,2,[[21,2,2,0,2,[[671,1,1,0,1],[674,1,1,1,2]]]],[17552,17583]]],["pigeon",[1,1,[[2,1,1,0,1,[[101,1,1,0,1]]]],[3050]]],["pigeons",[9,9,[[2,8,8,0,8,[[90,1,1,0,1],[94,2,2,1,3],[101,1,1,3,4],[103,2,2,4,6],[104,2,2,6,8]]],[3,1,1,8,9,[[122,1,1,8,9]]]],[2759,2837,2841,3052,3133,3141,3182,3197,3833]]]]},{"k":"H3124","v":[["Jonah",[19,17,[[11,1,1,0,1,[[326,1,1,0,1]]],[31,18,16,1,17,[[889,7,6,1,7],[890,2,2,7,9],[891,3,3,9,12],[892,6,5,12,17]]]],[9921,22532,22534,22536,22538,22546,22548,22549,22558,22559,22561,22562,22569,22573,22574,22576,22577]]]]},{"k":"H3125","v":[["+",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22349]]]]},{"k":"H3126","v":[["*",[3,3,[[12,2,2,0,2,[[339,2,2,0,2]]],[22,1,1,2,3,[[731,1,1,2,3]]]],[10338,10339,18713]]],["Jonathan",[2,2,[[12,2,2,0,2,[[339,2,2,0,2]]]],[10338,10339]]],["plant",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18713]]]]},{"k":"H3127","v":[["*",[6,6,[[17,3,3,0,3,[[443,1,1,0,1],[449,1,1,1,2],[450,1,1,2,3]]],[18,1,1,3,4,[[557,1,1,3,4]]],[25,1,1,4,5,[[818,1,1,4,5]]],[27,1,1,5,6,[[875,1,1,5,6]]]],[13045,13188,13233,15209,20847,22288]]],["branch",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13045]]],["branches",[3,3,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,1,1,1,2,[[557,1,1,1,2]]],[27,1,1,2,3,[[875,1,1,2,3]]]],[13233,15209,22288]]],["tender",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13188]]],["twigs",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20847]]]]},{"k":"H3128","v":[]},{"k":"H3129","v":[["*",[11,10,[[9,1,1,0,1,[[275,1,1,0,1]]],[10,2,2,1,3,[[291,2,2,1,3]]],[12,2,2,3,5,[[347,1,1,3,4],[348,1,1,4,5]]],[15,4,3,5,8,[[424,4,3,5,8]]],[23,2,2,8,10,[[782,1,1,8,9],[784,1,1,9,10]]]],[8228,8759,8760,10661,10707,12635,12638,12659,19921,19949]]],["Jonathan",[9,8,[[10,2,2,0,2,[[291,2,2,0,2]]],[12,2,2,2,4,[[347,1,1,2,3],[348,1,1,3,4]]],[15,4,3,4,7,[[424,4,3,4,7]]],[23,1,1,7,8,[[784,1,1,7,8]]]],[8759,8760,10661,10707,12635,12638,12659,19949]]],["Jonathan's",[2,2,[[9,1,1,0,1,[[275,1,1,0,1]]],[23,1,1,1,2,[[782,1,1,1,2]]]],[8228,19921]]]]},{"k":"H3130","v":[["*",[213,193,[[0,156,137,0,137,[[29,2,2,0,2],[32,2,2,2,4],[34,1,1,4,5],[36,14,10,5,15],[38,11,10,15,25],[39,10,10,25,35],[40,20,18,35,53],[41,12,11,53,64],[42,10,9,64,73],[43,4,4,73,77],[44,14,10,77,87],[45,8,8,87,95],[46,15,13,95,108],[47,12,12,108,120],[48,2,2,120,122],[49,19,15,122,137]]],[1,4,4,137,141,[[50,3,3,137,140],[62,1,1,140,141]]],[3,12,12,141,153,[[117,2,2,141,143],[129,2,2,143,145],[142,2,2,145,147],[143,1,1,147,148],[148,1,1,148,149],[150,1,1,149,150],[152,3,3,150,153]]],[4,3,3,153,156,[[179,1,1,153,154],[185,2,2,154,156]]],[5,12,11,156,167,[[200,1,1,156,157],[202,2,2,157,159],[203,5,5,159,164],[204,2,2,164,166],[210,2,1,166,167]]],[6,3,3,167,170,[[211,3,3,167,170]]],[9,1,1,170,171,[[285,1,1,170,171]]],[10,1,1,171,172,[[301,1,1,171,172]]],[12,6,6,172,178,[[339,1,1,172,173],[342,2,2,173,175],[344,1,1,175,176],[362,2,2,176,178]]],[14,1,1,178,179,[[412,1,1,178,179]]],[15,1,1,179,180,[[424,1,1,179,180]]],[18,4,4,180,184,[[554,1,1,180,181],[555,1,1,181,182],[557,1,1,182,183],[582,1,1,183,184]]],[25,4,4,184,188,[[838,2,2,184,186],[848,1,1,186,187],[849,1,1,187,188]]],[29,3,3,188,191,[[883,2,2,188,190],[884,1,1,190,191]]],[30,1,1,191,192,[[888,1,1,191,192]]],[37,1,1,192,193,[[920,1,1,192,193]]]],[854,855,962,967,1035,1085,1086,1088,1096,1100,1106,1111,1112,1114,1116,1150,1151,1153,1154,1155,1156,1159,1169,1170,1171,1175,1176,1178,1180,1181,1184,1188,1190,1194,1195,1209,1210,1211,1212,1220,1234,1236,1237,1239,1240,1241,1244,1245,1246,1249,1250,1251,1252,1255,1256,1258,1259,1260,1261,1266,1270,1275,1277,1288,1305,1306,1307,1308,1309,1314,1315,1316,1320,1326,1328,1338,1339,1359,1361,1362,1367,1374,1375,1379,1384,1385,1386,1390,1405,1406,1413,1414,1415,1416,1417,1421,1425,1427,1431,1432,1434,1435,1436,1437,1440,1443,1446,1449,1452,1453,1454,1459,1460,1462,1463,1464,1466,1468,1469,1472,1495,1499,1507,1508,1510,1513,1514,1520,1521,1522,1523,1525,1528,1529,1530,1531,1532,1537,1538,1540,1886,3614,3636,4082,4086,4517,4526,4555,4751,4839,4880,4884,4891,5597,5823,5826,6191,6266,6269,6276,6277,6289,6291,6292,6298,6304,6508,6531,6532,6544,8531,9136,10308,10429,10430,10564,11048,11055,12294,12638,15108,15180,15199,15623,21413,21416,21692,21734,22429,22438,22456,22528,23022]]],["+",[4,4,[[0,3,3,0,3,[[32,1,1,0,1],[38,1,1,1,2],[47,1,1,2,3]]],[3,1,1,3,4,[[148,1,1,3,4]]]],[967,1154,1459,4751]]],["Joseph",[191,177,[[0,136,123,0,123,[[29,2,2,0,2],[32,1,1,2,3],[34,1,1,3,4],[36,13,9,4,13],[38,7,7,13,20],[39,10,10,20,30],[40,18,17,30,47],[41,9,9,47,56],[42,6,6,56,62],[43,3,3,62,65],[44,13,9,65,74],[45,8,8,74,82],[46,15,13,82,95],[47,11,11,95,106],[48,2,2,106,108],[49,17,15,108,123]]],[1,4,4,123,127,[[50,3,3,123,126],[62,1,1,126,127]]],[3,11,11,127,138,[[117,2,2,127,129],[129,2,2,129,131],[142,2,2,131,133],[143,1,1,133,134],[150,1,1,134,135],[152,3,3,135,138]]],[4,3,3,138,141,[[179,1,1,138,139],[185,2,2,139,141]]],[5,12,11,141,152,[[200,1,1,141,142],[202,2,2,142,144],[203,5,5,144,149],[204,2,2,149,151],[210,2,1,151,152]]],[6,3,3,152,155,[[211,3,3,152,155]]],[9,1,1,155,156,[[285,1,1,155,156]]],[10,1,1,156,157,[[301,1,1,156,157]]],[12,5,5,157,162,[[339,1,1,157,158],[342,1,1,158,159],[344,1,1,159,160],[362,2,2,160,162]]],[14,1,1,162,163,[[412,1,1,162,163]]],[15,1,1,163,164,[[424,1,1,163,164]]],[18,4,4,164,168,[[554,1,1,164,165],[555,1,1,165,166],[557,1,1,166,167],[582,1,1,167,168]]],[25,4,4,168,172,[[838,2,2,168,170],[848,1,1,170,171],[849,1,1,171,172]]],[29,3,3,172,175,[[883,2,2,172,174],[884,1,1,174,175]]],[30,1,1,175,176,[[888,1,1,175,176]]],[37,1,1,176,177,[[920,1,1,176,177]]]],[854,855,962,1035,1085,1086,1088,1096,1100,1106,1111,1112,1116,1150,1151,1153,1155,1156,1159,1170,1175,1176,1178,1180,1181,1184,1188,1190,1194,1195,1209,1210,1211,1212,1220,1234,1236,1239,1240,1241,1244,1245,1246,1249,1250,1251,1252,1258,1259,1260,1261,1266,1270,1275,1277,1288,1305,1306,1307,1315,1316,1320,1326,1328,1339,1359,1361,1362,1367,1375,1379,1384,1385,1386,1390,1405,1406,1413,1414,1415,1416,1417,1421,1425,1427,1431,1432,1434,1435,1436,1437,1440,1443,1446,1449,1452,1453,1454,1460,1462,1463,1464,1466,1468,1469,1472,1495,1499,1507,1508,1510,1513,1514,1520,1521,1522,1523,1525,1528,1529,1530,1531,1532,1537,1538,1540,1886,3614,3636,4082,4086,4517,4526,4555,4839,4880,4884,4891,5597,5823,5826,6191,6266,6269,6276,6277,6289,6291,6292,6298,6304,6508,6531,6532,6544,8531,9136,10308,10429,10564,11048,11055,12294,12638,15108,15180,15199,15623,21413,21416,21692,21734,22429,22438,22456,22528,23022]]],["Joseph's",[18,18,[[0,17,17,0,17,[[36,1,1,0,1],[38,3,3,1,4],[40,2,2,4,6],[41,3,3,6,9],[42,4,4,9,13],[43,1,1,13,14],[44,1,1,14,15],[49,2,2,15,17]]],[12,1,1,17,18,[[342,1,1,17,18]]]],[1114,1155,1169,1171,1237,1240,1255,1256,1258,1307,1308,1309,1314,1338,1374,1521,1529,10430]]]]},{"k":"H3131","v":[["Josiphiah",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12211]]]]},{"k":"H3132","v":[["Joelah",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10727]]]]},{"k":"H3133","v":[["Joed",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12595]]]]},{"k":"H3134","v":[["Joezer",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10726]]]]},{"k":"H3135","v":[["Joash",[2,2,[[12,2,2,0,2,[[344,1,1,0,1],[364,1,1,1,2]]]],[10543,11137]]]]},{"k":"H3136","v":[["Jozadak",[5,5,[[14,4,4,0,4,[[405,2,2,0,2],[407,1,1,2,3],[412,1,1,3,4]]],[15,1,1,4,5,[[424,1,1,4,5]]]],[12099,12105,12136,12270,12650]]]]},{"k":"H3137","v":[["Jokim",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10407]]]]},{"k":"H3138","v":[["*",[3,3,[[4,1,1,0,1,[[163,1,1,0,1]]],[23,1,1,1,2,[[749,1,1,1,2]]],[27,1,1,2,3,[[867,1,1,2,3]]]],[5222,19082,22170]]],["former",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19082]]],["rain",[2,2,[[4,1,1,0,1,[[163,1,1,0,1]]],[27,1,1,1,2,[[867,1,1,1,2]]]],[5222,22170]]]]},{"k":"H3139","v":[["Jorah",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12045]]]]},{"k":"H3140","v":[["Jorai",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10441]]]]},{"k":"H3141","v":[["Joram",[20,16,[[9,1,1,0,1,[[274,1,1,0,1]]],[11,15,11,1,12,[[320,9,7,1,8],[321,5,3,8,11],[323,1,1,11,12]]],[12,2,2,12,14,[[340,1,1,12,13],[363,1,1,13,14]]],[13,2,2,14,16,[[388,2,2,14,16]]]],[8219,9743,9748,9750,9751,9752,9755,9756,9770,9772,9785,9831,10372,11102,11649,11651]]]]},{"k":"H3142","v":[["Jushabhesed",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10381]]]]},{"k":"H3143","v":[["Josibiah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10420]]]]},{"k":"H3144","v":[["Joshah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10419]]]]},{"k":"H3145","v":[["Joshaviah",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10719]]]]},{"k":"H3146","v":[["*",[2,2,[[12,2,2,0,2,[[348,1,1,0,1],[352,1,1,1,2]]]],[10716,10815]]],["Jehoshaphat",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10815]]],["Joshaphat",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10716]]]]},{"k":"H3147","v":[["Jotham",[24,24,[[6,4,4,0,4,[[219,4,4,0,4]]],[11,7,7,4,11,[[327,6,6,4,10],[328,1,1,10,11]]],[12,3,3,11,14,[[339,1,1,11,12],[340,1,1,12,13],[342,1,1,13,14]]],[13,6,6,14,20,[[392,2,2,14,16],[393,4,4,16,20]]],[22,2,2,20,22,[[679,1,1,20,21],[685,1,1,21,22]]],[27,1,1,22,23,[[862,1,1,22,23]]],[32,1,1,23,24,[[893,1,1,23,24]]]],[6759,6761,6775,6811,9930,9932,9955,9957,9961,9963,9964,10353,10373,10445,11753,11755,11756,11761,11762,11764,17655,17783,22095,22580]]]]},{"k":"H3148","v":[["*",[8,8,[[16,1,1,0,1,[[431,1,1,0,1]]],[20,7,7,1,8,[[660,1,1,1,2],[664,2,2,2,4],[665,2,2,4,6],[670,2,2,6,8]]]],[12799,17348,17425,17428,17440,17445,17532,17535]]],["+",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17445]]],["better",[1,1,[[20,1,1,0,1,[[664,1,1,0,1]]]],[17428]]],["further",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17535]]],["more",[2,2,[[20,2,2,0,2,[[660,1,1,0,1],[664,1,1,1,2]]]],[17348,17425]]],["moreover",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17532]]],["profit",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17440]]],["than",[1,1,[[16,1,1,0,1,[[431,1,1,0,1]]]],[12799]]]]},{"k":"H3149","v":[["Jeziel",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10723]]]]},{"k":"H3150","v":[["Jeziah",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12277]]]]},{"k":"H3151","v":[["Jaziz",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11140]]]]},{"k":"H3152","v":[["Jezliah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10593]]]]},{"k":"H3153","v":[["Jezaniah",[2,2,[[23,2,2,0,2,[[784,1,1,0,1],[786,1,1,1,2]]]],[19949,19976]]]]},{"k":"H3154","v":[["sweat",[1,1,[[25,1,1,0,1,[[845,1,1,0,1]]]],[21617]]]]},{"k":"H3155","v":[["Izrahite",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11117]]]]},{"k":"H3156","v":[["*",[3,2,[[12,2,1,0,1,[[344,2,1,0,1]]],[15,1,1,1,2,[[424,1,1,1,2]]]],[10538,12666]]],["Izrahiah",[2,1,[[12,2,1,0,1,[[344,2,1,0,1]]]],[10538]]],["Jezrahiah",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12666]]]]},{"k":"H3157","v":[["*",[36,32,[[5,3,3,0,3,[[201,1,1,0,1],[203,1,1,1,2],[205,1,1,2,3]]],[6,1,1,3,4,[[216,1,1,3,4]]],[8,3,3,4,7,[[260,1,1,4,5],[264,2,2,5,7]]],[9,2,2,7,9,[[268,1,1,7,8],[270,1,1,8,9]]],[10,5,5,9,14,[[294,1,1,9,10],[308,2,2,10,12],[311,2,2,12,14]]],[11,14,12,14,26,[[320,2,1,14,15],[321,8,7,15,22],[322,4,4,22,26]]],[12,1,1,26,27,[[341,1,1,26,27]]],[13,2,1,27,28,[[388,2,1,27,28]]],[27,5,4,28,32,[[862,4,3,28,31],[863,1,1,31,32]]]],[6258,6291,6339,6687,7904,7968,7978,8058,8124,8856,9386,9387,9452,9474,9756,9766,9771,9772,9773,9786,9792,9793,9794,9799,9800,9804,10388,11650,22098,22099,22105,22127]]],["+",[2,2,[[8,1,1,0,1,[[260,1,1,0,1]]],[9,1,1,1,2,[[270,1,1,1,2]]]],[7904,8124]]],["Jezreel",[34,30,[[5,3,3,0,3,[[201,1,1,0,1],[203,1,1,1,2],[205,1,1,2,3]]],[6,1,1,3,4,[[216,1,1,3,4]]],[8,2,2,4,6,[[264,2,2,4,6]]],[9,1,1,6,7,[[268,1,1,6,7]]],[10,5,5,7,12,[[294,1,1,7,8],[308,2,2,8,10],[311,2,2,10,12]]],[11,14,12,12,24,[[320,2,1,12,13],[321,8,7,13,20],[322,4,4,20,24]]],[12,1,1,24,25,[[341,1,1,24,25]]],[13,2,1,25,26,[[388,2,1,25,26]]],[27,5,4,26,30,[[862,4,3,26,29],[863,1,1,29,30]]]],[6258,6291,6339,6687,7968,7978,8058,8856,9386,9387,9452,9474,9756,9766,9771,9772,9773,9786,9792,9793,9794,9799,9800,9804,10388,11650,22098,22099,22105,22127]]]]},{"k":"H3158","v":[["Jezreelite",[8,8,[[10,6,6,0,6,[[311,6,6,0,6]]],[11,2,2,6,8,[[321,2,2,6,8]]]],[9452,9455,9457,9458,9466,9467,9777,9781]]]]},{"k":"H3159","v":[["Jezreelitess",[5,5,[[8,2,2,0,2,[[262,1,1,0,1],[265,1,1,1,2]]],[9,2,2,2,4,[[268,1,1,2,3],[269,1,1,3,4]]],[12,1,1,4,5,[[340,1,1,4,5]]]],[7933,7983,8051,8083,10362]]]]},{"k":"H3160","v":[["Jehubbah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10569]]]]},{"k":"H3161","v":[["*",[3,3,[[0,1,1,0,1,[[48,1,1,0,1]]],[18,1,1,1,2,[[563,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]]],[1479,15295,17948]]],["joined",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17948]]],["unite",[1,1,[[18,1,1,0,1,[[563,1,1,0,1]]]],[15295]]],["united",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1479]]]]},{"k":"H3162","v":[["*",[141,139,[[0,6,5,0,5,[[12,2,1,0,1],[21,3,3,1,4],[35,1,1,4,5]]],[1,3,3,5,8,[[68,1,1,5,6],[75,1,1,6,7],[85,1,1,7,8]]],[4,8,8,8,16,[[164,1,1,8,9],[167,1,1,9,10],[174,2,2,10,12],[177,2,2,12,14],[185,2,2,14,16]]],[5,2,2,16,18,[[195,1,1,16,17],[197,1,1,17,18]]],[6,2,2,18,20,[[216,1,1,18,19],[229,1,1,19,20]]],[8,4,4,20,24,[[246,1,1,20,21],[252,1,1,21,22],[265,1,1,22,23],[266,1,1,23,24]]],[9,6,6,24,30,[[268,2,2,24,26],[276,1,1,26,27],[278,1,1,27,28],[280,1,1,28,29],[287,1,1,29,30]]],[10,1,1,30,31,[[293,1,1,30,31]]],[12,2,2,31,33,[[347,1,1,31,32],[349,1,1,32,33]]],[14,1,1,33,34,[[406,1,1,33,34]]],[15,3,3,34,37,[[416,1,1,34,35],[418,2,2,35,37]]],[17,16,16,37,53,[[437,1,1,37,38],[438,1,1,38,39],[441,1,1,39,40],[444,1,1,40,41],[445,1,1,41,42],[451,1,1,42,43],[452,1,1,43,44],[454,1,1,44,45],[456,1,1,45,46],[459,2,2,46,48],[466,1,1,48,49],[469,2,2,49,51],[473,1,1,51,52],[475,1,1,52,53]]],[18,27,27,53,80,[[479,1,1,53,54],[481,1,1,54,55],[491,1,1,55,56],[496,1,1,56,57],[508,1,1,57,58],[510,1,1,58,59],[511,1,1,59,60],[512,1,1,60,61],[514,1,1,61,62],[517,1,1,62,63],[518,1,1,63,64],[525,1,1,64,65],[526,2,2,65,67],[530,1,1,67,68],[532,1,1,68,69],[539,1,1,69,70],[548,1,1,70,71],[551,2,2,71,73],[560,1,1,73,74],[565,1,1,74,75],[575,1,1,75,76],[579,1,1,76,77],[599,1,1,77,78],[610,1,1,78,79],[618,1,1,79,80]]],[19,1,1,80,81,[[649,1,1,80,81]]],[22,34,33,81,114,[[679,2,2,81,83],[687,1,1,83,84],[688,1,1,84,85],[689,3,3,85,88],[696,1,1,88,89],[700,2,1,89,90],[705,1,1,90,91],[709,1,1,91,92],[718,1,1,92,93],[719,4,4,93,97],[720,1,1,97,98],[721,3,3,98,101],[722,1,1,101,102],[723,4,4,102,106],[724,1,1,106,107],[726,1,1,107,108],[728,1,1,108,109],[730,2,2,109,111],[738,1,1,111,112],[743,1,1,112,113],[744,1,1,113,114]]],[23,17,17,114,131,[[747,1,1,114,115],[749,1,1,115,116],[750,3,3,116,119],[757,1,1,119,120],[775,3,3,120,123],[785,1,1,123,124],[790,2,2,124,126],[792,1,1,126,127],[793,1,1,127,128],[794,2,2,128,130],[795,1,1,130,131]]],[24,1,1,131,132,[[798,1,1,131,132]]],[27,3,3,132,135,[[862,1,1,132,133],[872,2,2,133,135]]],[29,2,2,135,137,[[879,1,1,135,136],[881,1,1,136,137]]],[32,1,1,137,138,[[894,1,1,137,138]]],[37,1,1,138,139,[[920,1,1,138,139]]]],[324,553,555,566,1047,2034,2259,2595,5262,5341,5480,5481,5552,5558,5815,5827,6039,6112,6687,7030,7456,7628,8002,8015,8062,8065,8255,8289,8372,8589,8834,10665,10737,12113,12367,12403,12408,12902,12922,12980,13083,13094,13248,13276,13309,13381,13440,13453,13626,13698,13712,13800,13877,13947,13973,14083,14177,14344,14381,14391,14436,14488,14539,14549,14638,14650,14658,14722,14746,14836,14986,15054,15056,15246,15325,15498,15543,16092,16170,16286,17033,17682,17685,17850,17858,17890,17891,17898,18003,18055,18155,18253,18425,18452,18470,18471,18474,18494,18514,18522,18531,18544,18569,18577,18581,18582,18588,18627,18670,18704,18705,18834,18904,18939,19020,19063,19100,19101,19110,19280,19699,19704,19715,19958,20057,20066,20087,20130,20170,20199,20250,20340,22105,22247,22248,22379,22398,22607,23020]]],["+",[5,5,[[1,1,1,0,1,[[75,1,1,0,1]]],[18,2,2,1,3,[[560,1,1,1,2],[610,1,1,2,3]]],[27,2,2,3,5,[[862,1,1,3,4],[872,1,1,4,5]]]],[2259,15246,16170,22105,22247]]],["alike",[5,5,[[4,2,2,0,2,[[164,1,1,0,1],[167,1,1,1,2]]],[8,1,1,2,3,[[265,1,1,2,3]]],[17,1,1,3,4,[[456,1,1,3,4]]],[18,1,1,4,5,[[510,1,1,4,5]]]],[5262,5341,8002,13381,14381]]],["altogether",[5,5,[[18,3,3,0,3,[[496,1,1,0,1],[530,1,1,1,2],[539,1,1,2,3]]],[22,1,1,3,4,[[688,1,1,3,4]]],[23,1,1,4,5,[[749,1,1,4,5]]]],[14177,14722,14836,17858,19063]]],["as",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13453]]],["both",[1,1,[[18,1,1,0,1,[[481,1,1,0,1]]]],[13973]]],["knit",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10737]]],["likewise",[2,2,[[17,1,1,0,1,[[466,1,1,0,1]]],[18,1,1,1,2,[[526,1,1,1,2]]]],[13626,14658]]],["once",[2,2,[[18,1,1,0,1,[[551,1,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]]],[15054,18494]]],["only",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13712]]],["together",[116,114,[[0,6,5,0,5,[[12,2,1,0,1],[21,3,3,1,4],[35,1,1,4,5]]],[1,2,2,5,7,[[68,1,1,5,6],[85,1,1,6,7]]],[4,6,6,7,13,[[174,2,2,7,9],[177,2,2,9,11],[185,2,2,11,13]]],[5,2,2,13,15,[[195,1,1,13,14],[197,1,1,14,15]]],[6,2,2,15,17,[[216,1,1,15,16],[229,1,1,16,17]]],[8,3,3,17,20,[[246,1,1,17,18],[252,1,1,18,19],[266,1,1,19,20]]],[9,6,6,20,26,[[268,2,2,20,22],[276,1,1,22,23],[278,1,1,23,24],[280,1,1,24,25],[287,1,1,25,26]]],[10,1,1,26,27,[[293,1,1,26,27]]],[12,1,1,27,28,[[347,1,1,27,28]]],[14,1,1,28,29,[[406,1,1,28,29]]],[15,3,3,29,32,[[416,1,1,29,30],[418,2,2,30,32]]],[17,12,12,32,44,[[437,1,1,32,33],[438,1,1,33,34],[441,1,1,34,35],[444,1,1,35,36],[445,1,1,36,37],[451,1,1,37,38],[452,1,1,38,39],[454,1,1,39,40],[459,1,1,40,41],[469,1,1,41,42],[473,1,1,42,43],[475,1,1,43,44]]],[18,17,17,44,61,[[479,1,1,44,45],[491,1,1,45,46],[508,1,1,46,47],[511,1,1,47,48],[512,1,1,48,49],[514,1,1,49,50],[517,1,1,50,51],[518,1,1,51,52],[525,1,1,52,53],[526,1,1,53,54],[532,1,1,54,55],[548,1,1,55,56],[551,1,1,56,57],[565,1,1,57,58],[575,1,1,58,59],[579,1,1,59,60],[599,1,1,60,61]]],[22,32,31,61,92,[[679,2,2,61,63],[687,1,1,63,64],[689,3,3,64,67],[696,1,1,67,68],[700,2,1,68,69],[705,1,1,69,70],[709,1,1,70,71],[718,1,1,71,72],[719,4,4,72,76],[721,3,3,76,79],[722,1,1,79,80],[723,4,4,80,84],[724,1,1,84,85],[726,1,1,85,86],[728,1,1,86,87],[730,2,2,87,89],[738,1,1,89,90],[743,1,1,90,91],[744,1,1,91,92]]],[23,16,16,92,108,[[747,1,1,92,93],[750,3,3,93,96],[757,1,1,96,97],[775,3,3,97,100],[785,1,1,100,101],[790,2,2,101,103],[792,1,1,103,104],[793,1,1,104,105],[794,2,2,105,107],[795,1,1,107,108]]],[24,1,1,108,109,[[798,1,1,108,109]]],[27,1,1,109,110,[[872,1,1,109,110]]],[29,2,2,110,112,[[879,1,1,110,111],[881,1,1,111,112]]],[32,1,1,112,113,[[894,1,1,112,113]]],[37,1,1,113,114,[[920,1,1,113,114]]]],[324,553,555,566,1047,2034,2595,5480,5481,5552,5558,5815,5827,6039,6112,6687,7030,7456,7628,8015,8062,8065,8255,8289,8372,8589,8834,10665,12113,12367,12403,12408,12902,12922,12980,13083,13094,13248,13276,13309,13440,13698,13800,13877,13947,14083,14344,14391,14436,14488,14539,14549,14638,14650,14746,14986,15056,15325,15498,15543,16092,17682,17685,17850,17890,17891,17898,18003,18055,18155,18253,18425,18452,18470,18471,18474,18514,18522,18531,18544,18569,18577,18581,18582,18588,18627,18670,18704,18705,18834,18904,18939,19020,19100,19101,19110,19280,19699,19704,19715,19958,20057,20066,20087,20130,20170,20199,20250,20340,22248,22379,22398,22607,23020]]],["withal",[2,2,[[18,1,1,0,1,[[618,1,1,0,1]]],[19,1,1,1,2,[[649,1,1,1,2]]]],[16286,17033]]]]},{"k":"H3163","v":[["Jahdo",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10442]]]]},{"k":"H3164","v":[["Jahdiel",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10452]]]]},{"k":"H3165","v":[["Jehdeiah",[2,2,[[12,2,2,0,2,[[361,1,1,0,1],[364,1,1,1,2]]]],[11035,11139]]]]},{"k":"H3166","v":[["Jahaziel",[6,6,[[12,4,4,0,4,[[349,1,1,0,1],[353,1,1,1,2],[360,1,1,2,3],[361,1,1,3,4]]],[13,1,1,4,5,[[386,1,1,4,5]]],[14,1,1,5,6,[[410,1,1,5,6]]]],[10724,10826,11002,11038,11601,12206]]]]},{"k":"H3167","v":[["Jahaziah",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12267]]]]},{"k":"H3168","v":[["*",[3,3,[[12,1,1,0,1,[[361,1,1,0,1]]],[25,2,2,1,3,[[802,1,1,1,2],[825,1,1,2,3]]]],[11031,20467,21080]]],["Ezekiel",[2,2,[[25,2,2,0,2,[[802,1,1,0,1],[825,1,1,1,2]]]],[20467,21080]]],["Jehezekel",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11031]]]]},{"k":"H3169","v":[["*",[44,42,[[11,1,1,0,1,[[332,1,1,0,1]]],[12,1,1,1,2,[[341,1,1,1,2]]],[13,37,35,2,37,[[394,2,2,2,4],[395,5,5,4,9],[396,4,4,9,13],[397,6,6,13,19],[398,19,17,19,36],[399,1,1,36,37]]],[14,1,1,37,38,[[404,1,1,37,38]]],[22,1,1,38,39,[[679,1,1,38,39]]],[23,1,1,39,40,[[759,1,1,39,40]]],[27,1,1,40,41,[[862,1,1,40,41]]],[32,1,1,41,42,[[893,1,1,41,42]]]],[10108,10426,11776,11791,11792,11811,11821,11822,11827,11828,11845,11847,11849,11856,11862,11863,11865,11867,11874,11877,11883,11884,11886,11887,11891,11892,11895,11897,11898,11899,11900,11901,11902,11905,11907,11908,11911,12043,17655,19319,22095,22580]]],["Hezekiah",[43,41,[[11,1,1,0,1,[[332,1,1,0,1]]],[12,1,1,1,2,[[341,1,1,1,2]]],[13,36,34,2,36,[[394,1,1,2,3],[395,5,5,3,8],[396,4,4,8,12],[397,6,6,12,18],[398,19,17,18,35],[399,1,1,35,36]]],[14,1,1,36,37,[[404,1,1,36,37]]],[22,1,1,37,38,[[679,1,1,37,38]]],[23,1,1,38,39,[[759,1,1,38,39]]],[27,1,1,39,40,[[862,1,1,39,40]]],[32,1,1,40,41,[[893,1,1,40,41]]]],[10108,10426,11791,11792,11811,11821,11822,11827,11828,11845,11847,11849,11856,11862,11863,11865,11867,11874,11877,11883,11884,11886,11887,11891,11892,11895,11897,11898,11899,11900,11901,11902,11905,11907,11908,11911,12043,17655,19319,22095,22580]]],["Jehizkiah",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11776]]]]},{"k":"H3170","v":[["Jahzerah",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10627]]]]},{"k":"H3171","v":[["Jehiel",[14,14,[[12,6,6,0,6,[[352,2,2,0,2],[353,1,1,2,3],[360,1,1,3,4],[364,1,1,4,5],[366,1,1,5,6]]],[13,4,4,6,10,[[387,1,1,6,7],[395,1,1,7,8],[397,1,1,8,9],[401,1,1,9,10]]],[14,4,4,10,14,[[410,1,1,10,11],[412,3,3,11,14]]]],[10809,10811,10825,10991,11141,11172,11626,11805,11867,11974,12210,12254,12273,12278]]]]},{"k":"H3172","v":[["Jehieli",[2,2,[[12,2,2,0,2,[[363,2,2,0,2]]]],[11098,11099]]]]},{"k":"H3173","v":[["*",[12,12,[[0,3,3,0,3,[[21,3,3,0,3]]],[6,1,1,3,4,[[221,1,1,3,4]]],[18,4,4,4,8,[[499,1,1,4,5],[502,1,1,5,6],[512,1,1,6,7],[545,1,1,7,8]]],[19,1,1,8,9,[[631,1,1,8,9]]],[23,1,1,9,10,[[750,1,1,9,10]]],[29,1,1,10,11,[[886,1,1,10,11]]],[37,1,1,11,12,[[922,1,1,11,12]]]],[549,559,563,6863,14224,14267,14427,14906,16493,19115,22491,23055]]],["child",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6863]]],["darling",[2,2,[[18,2,2,0,2,[[499,1,1,0,1],[512,1,1,1,2]]]],[14224,14427]]],["desolate",[1,1,[[18,1,1,0,1,[[502,1,1,0,1]]]],[14267]]],["only",[6,6,[[0,3,3,0,3,[[21,3,3,0,3]]],[19,1,1,3,4,[[631,1,1,3,4]]],[29,1,1,4,5,[[886,1,1,4,5]]],[37,1,1,5,6,[[922,1,1,5,6]]]],[549,559,563,16493,22491,23055]]],["solitary",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14906]]],["son",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19115]]]]},{"k":"H3174","v":[["Jehiah",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10815]]]]},{"k":"H3175","v":[["hope",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20380]]]]},{"k":"H3176","v":[["*",[41,41,[[0,1,1,0,1,[[7,1,1,0,1]]],[8,2,2,1,3,[[245,1,1,1,2],[248,1,1,2,3]]],[9,1,1,3,4,[[284,1,1,3,4]]],[11,1,1,4,5,[[318,1,1,4,5]]],[17,8,8,5,13,[[441,1,1,5,6],[448,1,1,6,7],[449,1,1,7,8],[464,2,2,8,10],[465,1,1,10,11],[467,2,2,11,13]]],[18,19,19,13,32,[[508,1,1,13,14],[510,2,2,14,16],[515,1,1,16,17],[519,2,2,17,19],[520,1,1,19,20],[546,1,1,20,21],[548,1,1,21,22],[596,6,6,22,28],[607,2,2,28,30],[608,1,1,30,31],[624,1,1,31,32]]],[22,2,2,32,34,[[720,1,1,32,33],[729,1,1,33,34]]],[23,1,1,34,35,[[748,1,1,34,35]]],[24,2,2,35,37,[[799,2,2,35,37]]],[25,2,2,37,39,[[814,1,1,37,38],[820,1,1,38,39]]],[32,2,2,39,41,[[897,1,1,39,40],[899,1,1,40,41]]]],[195,7426,7493,8492,9707,12989,13168,13195,13553,13555,13583,13639,13644,14355,14384,14388,14505,14560,14566,14571,14938,14990,15941,15947,15972,15979,16012,16045,16145,16147,16151,16362,18484,18678,19046,20375,20378,20714,20886,22640,22671]]],["hope",[19,19,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,15,15,1,16,[[508,1,1,1,2],[510,2,2,2,4],[515,1,1,4,5],[519,2,2,5,7],[520,1,1,7,8],[548,1,1,8,9],[596,3,3,9,12],[607,2,2,12,14],[608,1,1,14,15],[624,1,1,15,16]]],[24,2,2,16,18,[[799,2,2,16,18]]],[25,1,1,18,19,[[814,1,1,18,19]]]],[12989,14355,14384,14388,14505,14560,14566,14571,14990,15947,15979,16012,16145,16147,16151,16362,20375,20378,20714]]],["hoped",[3,3,[[18,3,3,0,3,[[596,3,3,0,3]]]],[15941,15972,16045]]],["pained",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19046]]],["stayed",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[195]]],["tarried",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7493]]],["tarry",[2,2,[[8,1,1,0,1,[[245,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]]],[7426,8492]]],["trust",[2,2,[[17,1,1,0,1,[[448,1,1,0,1]]],[22,1,1,1,2,[[729,1,1,1,2]]]],[13168,18678]]],["wait",[5,5,[[11,1,1,0,1,[[318,1,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[18,1,1,2,3,[[546,1,1,2,3]]],[22,1,1,3,4,[[720,1,1,3,4]]],[32,1,1,4,5,[[899,1,1,4,5]]]],[9707,13195,14938,18484,22671]]],["waited",[6,6,[[17,5,5,0,5,[[464,2,2,0,2],[465,1,1,2,3],[467,2,2,3,5]]],[25,1,1,5,6,[[820,1,1,5,6]]]],[13553,13555,13583,13639,13644,20886]]],["waiteth",[1,1,[[32,1,1,0,1,[[897,1,1,0,1]]]],[22640]]]]},{"k":"H3177","v":[["Jahleel",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1400,4515]]]]},{"k":"H3178","v":[["Jahleelites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4515]]]]},{"k":"H3179","v":[["*",[9,8,[[0,5,4,0,4,[[29,4,3,0,3],[30,1,1,3,4]]],[4,1,1,4,5,[[171,1,1,4,5]]],[10,1,1,5,6,[[291,1,1,5,6]]],[18,1,1,6,7,[[528,1,1,6,7]]],[20,1,1,7,8,[[662,1,1,7,8]]]],[868,869,871,883,5412,8718,14696,17392]]],["+",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8718]]],["conceive",[4,3,[[0,3,2,0,2,[[29,3,2,0,2]]],[18,1,1,2,3,[[528,1,1,2,3]]]],[868,871,14696]]],["conceived",[2,2,[[0,2,2,0,2,[[29,1,1,0,1],[30,1,1,1,2]]]],[869,883]]],["hot",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5412]]],["warm",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17392]]]]},{"k":"H3180","v":[["*",[2,2,[[4,1,1,0,1,[[166,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]]],[5295,8867]]],["deer",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5295]]],["fallowdeer",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8867]]]]},{"k":"H3181","v":[["Jahmai",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10537]]]]},{"k":"H3182","v":[["*",[5,5,[[9,1,1,0,1,[[281,1,1,0,1]]],[22,3,3,1,4,[[698,3,3,1,4]]],[23,1,1,4,5,[[746,1,1,4,5]]]],[8419,18031,18032,18033,18990]]],["+",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18990]]],["barefoot",[4,4,[[9,1,1,0,1,[[281,1,1,0,1]]],[22,3,3,1,4,[[698,3,3,1,4]]]],[8419,18031,18032,18033]]]]},{"k":"H3183","v":[["Jahzeel",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1410,4537]]]]},{"k":"H3184","v":[["Jahzeelites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4537]]]]},{"k":"H3185","v":[["Jahziel",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10548]]]]},{"k":"H3186","v":[["longer",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8559]]]]},{"k":"H3187","v":[["*",[21,20,[[12,11,10,0,10,[[341,1,1,0,1],[342,3,3,1,4],[344,5,4,4,8],[346,2,2,8,10]]],[13,5,5,10,15,[[378,1,1,10,11],[397,4,4,11,15]]],[14,3,3,15,18,[[404,1,1,15,16],[410,2,2,16,18]]],[15,2,2,18,20,[[419,2,2,18,20]]]],[10418,10429,10435,10445,10540,10542,10544,10575,10616,10637,11452,11870,11871,11872,11873,12089,12202,12204,12425,12484]]],["+",[3,3,[[12,3,3,0,3,[[342,1,1,0,1],[344,2,2,1,3]]]],[10429,10540,10575]]],["genealogies",[5,5,[[12,3,3,0,3,[[342,1,1,0,1],[344,1,1,1,2],[346,1,1,2,3]]],[13,2,2,3,5,[[378,1,1,3,4],[397,1,1,4,5]]]],[10445,10542,10616,11452,11873]]],["genealogy",[12,12,[[12,4,4,0,4,[[341,1,1,0,1],[342,1,1,1,2],[344,1,1,2,3],[346,1,1,3,4]]],[13,3,3,4,7,[[397,3,3,4,7]]],[14,3,3,7,10,[[404,1,1,7,8],[410,2,2,8,10]]],[15,2,2,10,12,[[419,2,2,10,12]]]],[10418,10435,10544,10637,11870,11871,11872,12089,12202,12204,12425,12484]]],["number",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10544]]]]},{"k":"H3188","v":[["genealogy",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12425]]]]},{"k":"H3189","v":[["Jahath",[8,7,[[12,7,6,0,6,[[341,2,1,0,1],[343,2,2,1,3],[360,2,2,3,5],[361,1,1,5,6]]],[13,1,1,6,7,[[400,1,1,6,7]]]],[10387,10474,10497,10993,10994,11037,11945]]]]},{"k":"H3190","v":[["*",[115,108,[[0,11,9,0,9,[[3,2,1,0,1],[11,2,2,1,3],[31,3,2,3,5],[33,1,1,5,6],[39,1,1,6,7],[40,1,1,7,8],[44,1,1,8,9]]],[1,2,2,9,11,[[50,1,1,9,10],[79,1,1,10,11]]],[2,3,3,11,14,[[94,1,1,11,12],[99,2,2,12,14]]],[3,3,2,14,16,[[126,3,2,14,16]]],[4,19,19,16,35,[[153,1,1,16,17],[156,1,1,17,18],[157,3,3,18,21],[158,2,2,21,23],[160,1,1,23,24],[161,1,1,24,25],[164,2,2,25,27],[165,1,1,27,28],[169,1,1,28,29],[170,1,1,29,30],[171,1,1,30,31],[174,1,1,31,32],[179,1,1,32,33],[180,1,1,33,34],[182,1,1,34,35]]],[5,3,3,35,38,[[208,2,2,35,37],[210,1,1,37,38]]],[6,5,5,38,43,[[227,1,1,38,39],[228,1,1,39,40],[229,3,3,40,43]]],[7,3,3,43,46,[[234,3,3,43,46]]],[8,6,6,46,52,[[237,1,1,46,47],[251,1,1,47,48],[253,1,1,48,49],[255,1,1,49,50],[259,1,1,50,51],[260,1,1,51,52]]],[9,2,2,52,54,[[269,1,1,52,53],[284,1,1,53,54]]],[10,3,3,54,57,[[291,1,1,54,55],[293,1,1,55,56],[311,1,1,56,57]]],[11,3,3,57,60,[[321,1,1,57,58],[323,1,1,58,59],[337,1,1,59,60]]],[15,2,2,60,62,[[414,2,2,60,62]]],[16,5,4,62,66,[[426,1,1,62,63],[427,3,2,63,65],[430,1,1,65,66]]],[17,1,1,66,67,[[459,1,1,66,67]]],[18,6,6,67,73,[[510,1,1,67,68],[513,1,1,68,69],[526,1,1,69,70],[528,1,1,70,71],[546,1,1,71,72],[602,1,1,72,73]]],[19,5,4,73,77,[[642,2,2,73,75],[644,1,1,75,76],[657,2,1,76,77]]],[20,2,2,77,79,[[665,1,1,77,78],[669,1,1,78,79]]],[22,3,3,79,82,[[679,1,1,79,80],[701,1,1,80,81],[719,1,1,81,82]]],[23,17,16,82,98,[[745,1,1,82,83],[746,1,1,83,84],[748,1,1,84,85],[751,4,3,85,88],[754,1,1,88,89],[757,1,1,89,90],[762,2,2,90,92],[770,1,1,92,93],[776,1,1,93,94],[779,1,1,94,95],[782,1,1,95,96],[784,1,1,96,97],[786,1,1,97,98]]],[25,2,2,98,100,[[834,1,1,98,99],[837,1,1,99,100]]],[27,1,1,100,101,[[871,1,1,100,101]]],[31,3,2,101,103,[[892,3,2,101,103]]],[32,2,2,103,105,[[894,1,1,103,104],[899,1,1,104,105]]],[33,1,1,105,106,[[902,1,1,105,106]]],[35,1,1,106,107,[[906,1,1,106,107]]],[37,1,1,107,108,[[918,1,1,107,108]]]],[86,311,314,937,940,998,1186,1232,1374,1552,2389,2834,2996,2997,4017,4020,4915,5044,5069,5081,5082,5089,5104,5153,5178,5265,5268,5286,5368,5401,5424,5477,5593,5674,5713,6456,6459,6496,6993,7013,7030,7033,7046,7173,7179,7182,7272,7612,7681,7743,7843,7892,8117,8482,8764,8826,9458,9786,9847,10246,12312,12313,12723,12728,12733,12793,13457,14369,14441,14666,14709,14966,16114,16809,16820,16895,17280,17432,17522,17671,18093,18474,18958,18998,19049,19122,19124,19142,19206,19289,19394,19395,19585,19771,19838,19915,19950,19981,21312,21370,22226,22572,22577,22602,22667,22720,22799,22991]]],["+",[30,27,[[0,5,4,0,4,[[11,1,1,0,1],[31,2,1,1,2],[33,1,1,2,3],[44,1,1,3,4]]],[1,1,1,4,5,[[79,1,1,4,5]]],[2,1,1,5,6,[[99,1,1,5,6]]],[4,4,4,6,10,[[153,1,1,6,7],[171,1,1,7,8],[179,1,1,8,9],[180,1,1,9,10]]],[5,2,2,10,12,[[208,2,2,10,12]]],[6,1,1,12,13,[[229,1,1,12,13]]],[8,3,3,13,16,[[237,1,1,13,14],[255,1,1,14,15],[259,1,1,15,16]]],[9,1,1,16,17,[[269,1,1,16,17]]],[10,1,1,17,18,[[293,1,1,17,18]]],[11,1,1,18,19,[[321,1,1,18,19]]],[15,1,1,19,20,[[414,1,1,19,20]]],[16,5,4,20,24,[[426,1,1,20,21],[427,3,2,21,23],[430,1,1,23,24]]],[23,3,2,24,26,[[751,2,1,24,25],[776,1,1,25,26]]],[25,1,1,26,27,[[834,1,1,26,27]]]],[314,940,998,1374,2389,2997,4915,5424,5593,5674,6456,6459,7046,7272,7743,7843,8117,8826,9786,12313,12723,12728,12733,12793,19124,19771,21312]]],["Amend",[1,1,[[23,1,1,0,1,[[751,1,1,0,1]]]],[19122]]],["accepted",[2,2,[[2,1,1,0,1,[[99,1,1,0,1]]],[8,1,1,1,2,[[253,1,1,1,2]]]],[2996,7681]]],["amend",[2,2,[[23,2,2,0,2,[[770,1,1,0,1],[779,1,1,1,2]]]],[19585,19838]]],["aright",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16809]]],["benefit",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19394]]],["best",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8482]]],["better",[4,4,[[10,1,1,0,1,[[291,1,1,0,1]]],[20,1,1,1,2,[[665,1,1,1,2]]],[25,1,1,2,3,[[837,1,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[8764,17432,21370,22720]]],["cheer",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17522]]],["cheerful",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16820]]],["comely",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17280]]],["diligently",[2,2,[[4,2,2,0,2,[[165,1,1,0,1],[169,1,1,1,2]]]],[5286,5368]]],["do",[2,1,[[3,2,1,0,1,[[126,2,1,0,1]]]],[4020]]],["earnestly",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22667]]],["favour",[1,1,[[15,1,1,0,1,[[414,1,1,0,1]]]],[12312]]],["glad",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7013]]],["good",[19,19,[[0,1,1,0,1,[[40,1,1,0,1]]],[2,1,1,1,2,[[94,1,1,1,2]]],[3,1,1,2,3,[[126,1,1,2,3]]],[4,2,2,3,5,[[160,1,1,3,4],[182,1,1,4,5]]],[5,1,1,5,6,[[210,1,1,5,6]]],[6,1,1,6,7,[[227,1,1,6,7]]],[17,1,1,7,8,[[459,1,1,7,8]]],[18,3,3,8,11,[[513,1,1,8,9],[528,1,1,9,10],[602,1,1,10,11]]],[19,1,1,11,12,[[644,1,1,11,12]]],[22,1,1,12,13,[[719,1,1,12,13]]],[23,4,4,13,17,[[748,1,1,13,14],[754,1,1,14,15],[757,1,1,15,16],[762,1,1,16,17]]],[32,1,1,17,18,[[894,1,1,17,18]]],[35,1,1,18,19,[[906,1,1,18,19]]]],[1232,2834,4017,5153,5713,6496,6993,13457,14441,14709,16114,16895,18474,19049,19206,19289,19395,22602,22799]]],["goodly",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22226]]],["merry",[4,4,[[6,2,2,0,2,[[229,2,2,0,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[10,1,1,3,4,[[311,1,1,3,4]]]],[7030,7033,7179,9458]]],["more",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7182]]],["please",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14966]]],["said",[1,1,[[4,1,1,0,1,[[157,1,1,0,1]]]],[5081]]],["skilfully",[1,1,[[18,1,1,0,1,[[510,1,1,0,1]]]],[14369]]],["small",[1,1,[[4,1,1,0,1,[[161,1,1,0,1]]]],[5178]]],["sweet",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18093]]],["thoroughly",[1,1,[[11,1,1,0,1,[[323,1,1,0,1]]]],[9847]]],["trimmest",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18998]]],["well",[31,29,[[0,5,4,0,4,[[3,2,1,0,1],[11,1,1,1,2],[31,1,1,2,3],[39,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[4,9,9,5,14,[[156,1,1,5,6],[157,2,2,6,8],[158,2,2,8,10],[164,2,2,10,12],[170,1,1,12,13],[174,1,1,13,14]]],[7,1,1,14,15,[[234,1,1,14,15]]],[8,2,2,15,17,[[251,1,1,15,16],[260,1,1,16,17]]],[11,1,1,17,18,[[337,1,1,17,18]]],[18,1,1,18,19,[[526,1,1,18,19]]],[19,1,1,19,20,[[657,1,1,19,20]]],[22,1,1,20,21,[[679,1,1,20,21]]],[23,5,5,21,26,[[745,1,1,21,22],[751,1,1,22,23],[782,1,1,23,24],[784,1,1,24,25],[786,1,1,25,26]]],[31,3,2,26,28,[[892,3,2,26,28]]],[37,1,1,28,29,[[918,1,1,28,29]]]],[86,311,937,1186,1552,5044,5069,5082,5089,5104,5265,5268,5401,5477,7173,7612,7892,10246,14666,17280,17671,18958,19142,19915,19950,19981,22572,22577,22991]]]]},{"k":"H3191","v":[["good",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12191]]]]},{"k":"H3192","v":[["Jotbah",[1,1,[[11,1,1,0,1,[[333,1,1,0,1]]]],[10138]]]]},{"k":"H3193","v":[["*",[3,3,[[3,2,2,0,2,[[149,2,2,0,2]]],[4,1,1,2,3,[[162,1,1,2,3]]]],[4793,4794,5193]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4794]]],["Jotbath",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5193]]],["Jotbathah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4793]]]]},{"k":"H3194","v":[["Juttah",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[207,1,1,1,2]]]],[6257,6397]]]]},{"k":"H3195","v":[["Jetur",[3,3,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,2,2,1,3,[[338,1,1,1,2],[342,1,1,2,3]]]],[673,10283,10447]]]]},{"k":"H3196","v":[["*",[140,134,[[0,10,10,0,10,[[8,2,2,0,2],[13,1,1,2,3],[18,4,4,3,7],[26,1,1,7,8],[48,2,2,8,10]]],[1,1,1,10,11,[[78,1,1,10,11]]],[2,2,2,11,13,[[99,1,1,11,12],[112,1,1,12,13]]],[3,8,7,13,20,[[122,4,3,13,16],[131,3,3,16,19],[144,1,1,19,20]]],[4,5,5,20,25,[[166,1,1,20,21],[180,1,1,21,22],[181,1,1,22,23],[184,2,2,23,25]]],[5,2,2,25,27,[[195,2,2,25,27]]],[6,4,4,27,31,[[223,3,3,27,30],[229,1,1,30,31]]],[8,7,7,31,38,[[236,3,3,31,34],[245,1,1,34,35],[251,1,1,35,36],[260,2,2,36,38]]],[9,3,3,38,41,[[279,1,1,38,39],[282,2,2,39,41]]],[12,3,3,41,44,[[346,1,1,41,42],[349,1,1,42,43],[364,1,1,43,44]]],[13,3,3,44,47,[[368,2,2,44,46],[377,1,1,46,47]]],[15,5,4,47,51,[[414,2,1,47,48],[417,2,2,48,50],[425,1,1,50,51]]],[16,6,6,51,57,[[426,2,2,51,53],[430,1,1,53,54],[432,3,3,54,57]]],[17,3,3,57,60,[[436,2,2,57,59],[467,1,1,59,60]]],[18,4,4,60,64,[[537,1,1,60,61],[552,1,1,61,62],[555,1,1,62,63],[581,1,1,63,64]]],[19,10,10,64,74,[[631,1,1,64,65],[636,2,2,65,67],[647,1,1,67,68],[648,1,1,68,69],[650,3,3,69,72],[658,2,2,72,74]]],[20,3,3,74,77,[[660,1,1,74,75],[667,1,1,75,76],[668,1,1,76,77]]],[21,7,7,77,84,[[671,2,2,77,79],[672,1,1,79,80],[674,1,1,80,81],[675,1,1,81,82],[677,1,1,82,83],[678,1,1,83,84]]],[22,14,13,84,97,[[683,3,3,84,87],[694,1,1,87,88],[700,1,1,88,89],[702,2,2,89,91],[706,3,2,91,93],[707,1,1,93,94],[729,1,1,94,95],[733,1,1,95,96],[734,1,1,96,97]]],[23,15,12,97,109,[[757,2,1,97,98],[767,1,1,98,99],[769,1,1,99,100],[779,7,5,100,105],[784,2,2,105,107],[792,1,1,107,108],[795,1,1,108,109]]],[24,1,1,109,110,[[798,1,1,109,110]]],[25,2,2,110,112,[[828,1,1,110,111],[845,1,1,111,112]]],[26,4,4,112,116,[[850,3,3,112,115],[859,1,1,115,116]]],[27,4,4,116,120,[[865,1,1,116,117],[868,1,1,117,118],[870,1,1,118,119],[875,1,1,119,120]]],[28,2,2,120,122,[[876,1,1,120,121],[878,1,1,121,122]]],[29,5,5,122,127,[[880,2,2,122,124],[883,1,1,124,125],[884,1,1,125,126],[887,1,1,126,127]]],[32,2,2,127,129,[[894,1,1,127,128],[898,1,1,128,129]]],[34,1,1,129,130,[[904,1,1,129,130]]],[35,1,1,130,131,[[906,1,1,130,131]]],[36,1,1,131,132,[[910,1,1,131,132]]],[37,2,2,132,134,[[919,1,1,132,133],[920,1,1,133,134]]]],[226,229,354,489,490,491,492,752,1484,1485,2376,2986,3415,3826,3827,3843,4158,4160,4163,4591,5316,5650,5685,5791,5796,6041,6050,6888,6891,6898,7043,7226,7227,7236,7421,7615,7879,7898,8345,8427,8428,10644,10760,11136,11221,11226,11425,12308,12397,12400,12686,12709,12712,12785,12809,12814,12815,12882,12887,13647,14810,15079,15178,15586,16507,16640,16643,16955,17001,17064,17074,17075,17288,17290,17336,17482,17512,17539,17541,17558,17592,17599,17636,17642,17750,17751,17761,17979,18065,18104,18106,18165,18171,18202,18694,18741,18765,19278,19493,19549,19825,19828,19829,19831,19837,19951,19953,20113,20219,20344,21139,21620,21742,21745,21753,22018,22144,22183,22212,22289,22296,22346,22387,22391,22434,22456,22509,22606,22663,22753,22800,22867,23014,23023]]],["+",[13,13,[[0,2,2,0,2,[[8,1,1,0,1],[48,1,1,1,2]]],[3,1,1,2,3,[[122,1,1,2,3]]],[18,1,1,3,4,[[555,1,1,3,4]]],[19,1,1,4,5,[[650,1,1,4,5]]],[21,4,4,5,9,[[671,2,2,5,7],[674,1,1,7,8],[678,1,1,8,9]]],[22,1,1,9,10,[[729,1,1,9,10]]],[23,1,1,10,11,[[795,1,1,10,11]]],[26,1,1,11,12,[[850,1,1,11,12]]],[27,1,1,12,13,[[868,1,1,12,13]]]],[229,1485,3826,15178,17064,17539,17541,17592,17642,18694,20219,21742,22183]]],["Wine",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16955]]],["banqueting",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17558]]],["vine",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3827]]],["wine",[124,119,[[0,8,8,0,8,[[8,1,1,0,1],[13,1,1,1,2],[18,4,4,2,6],[26,1,1,6,7],[48,1,1,7,8]]],[1,1,1,8,9,[[78,1,1,8,9]]],[2,2,2,9,11,[[99,1,1,9,10],[112,1,1,10,11]]],[3,6,6,11,17,[[122,2,2,11,13],[131,3,3,13,16],[144,1,1,16,17]]],[4,5,5,17,22,[[166,1,1,17,18],[180,1,1,18,19],[181,1,1,19,20],[184,2,2,20,22]]],[5,2,2,22,24,[[195,2,2,22,24]]],[6,4,4,24,28,[[223,3,3,24,27],[229,1,1,27,28]]],[8,7,7,28,35,[[236,3,3,28,31],[245,1,1,31,32],[251,1,1,32,33],[260,2,2,33,35]]],[9,3,3,35,38,[[279,1,1,35,36],[282,2,2,36,38]]],[12,3,3,38,41,[[346,1,1,38,39],[349,1,1,39,40],[364,1,1,40,41]]],[13,3,3,41,44,[[368,2,2,41,43],[377,1,1,43,44]]],[15,5,4,44,48,[[414,2,1,44,45],[417,2,2,45,47],[425,1,1,47,48]]],[16,6,6,48,54,[[426,2,2,48,50],[430,1,1,50,51],[432,3,3,51,54]]],[17,3,3,54,57,[[436,2,2,54,56],[467,1,1,56,57]]],[18,3,3,57,60,[[537,1,1,57,58],[552,1,1,58,59],[581,1,1,59,60]]],[19,8,8,60,68,[[631,1,1,60,61],[636,2,2,61,63],[648,1,1,63,64],[650,2,2,64,66],[658,2,2,66,68]]],[20,3,3,68,71,[[660,1,1,68,69],[667,1,1,69,70],[668,1,1,70,71]]],[21,2,2,71,73,[[675,1,1,71,72],[677,1,1,72,73]]],[22,13,12,73,85,[[683,3,3,73,76],[694,1,1,76,77],[700,1,1,77,78],[702,2,2,78,80],[706,3,2,80,82],[707,1,1,82,83],[733,1,1,83,84],[734,1,1,84,85]]],[23,14,11,85,96,[[757,2,1,85,86],[767,1,1,86,87],[769,1,1,87,88],[779,7,5,88,93],[784,2,2,93,95],[792,1,1,95,96]]],[24,1,1,96,97,[[798,1,1,96,97]]],[25,2,2,97,99,[[828,1,1,97,98],[845,1,1,98,99]]],[26,3,3,99,102,[[850,2,2,99,101],[859,1,1,101,102]]],[27,3,3,102,105,[[865,1,1,102,103],[870,1,1,103,104],[875,1,1,104,105]]],[28,2,2,105,107,[[876,1,1,105,106],[878,1,1,106,107]]],[29,5,5,107,112,[[880,2,2,107,109],[883,1,1,109,110],[884,1,1,110,111],[887,1,1,111,112]]],[32,2,2,112,114,[[894,1,1,112,113],[898,1,1,113,114]]],[34,1,1,114,115,[[904,1,1,114,115]]],[35,1,1,115,116,[[906,1,1,115,116]]],[36,1,1,116,117,[[910,1,1,116,117]]],[37,2,2,117,119,[[919,1,1,117,118],[920,1,1,118,119]]]],[226,354,489,490,491,492,752,1484,2376,2986,3415,3826,3843,4158,4160,4163,4591,5316,5650,5685,5791,5796,6041,6050,6888,6891,6898,7043,7226,7227,7236,7421,7615,7879,7898,8345,8427,8428,10644,10760,11136,11221,11226,11425,12308,12397,12400,12686,12709,12712,12785,12809,12814,12815,12882,12887,13647,14810,15079,15586,16507,16640,16643,17001,17074,17075,17288,17290,17336,17482,17512,17599,17636,17750,17751,17761,17979,18065,18104,18106,18165,18171,18202,18741,18765,19278,19493,19549,19825,19828,19829,19831,19837,19951,19953,20113,20344,21139,21620,21745,21753,22018,22144,22212,22289,22296,22346,22387,22391,22434,22456,22509,22606,22663,22753,22800,22867,23014,23023]]]]},{"k":"H3197","v":[["+",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7310]]]]},{"k":"H3198","v":[["*",[59,55,[[0,6,6,0,6,[[19,1,1,0,1],[20,1,1,1,2],[23,2,2,2,4],[30,2,2,4,6]]],[2,2,1,6,7,[[108,2,1,6,7]]],[9,1,1,7,8,[[273,1,1,7,8]]],[11,1,1,8,9,[[331,1,1,8,9]]],[12,2,2,9,11,[[349,1,1,9,10],[353,1,1,10,11]]],[17,17,15,11,26,[[440,1,1,11,12],[441,3,2,12,14],[444,1,1,14,15],[448,4,3,15,18],[450,1,1,18,19],[451,1,1,19,20],[454,1,1,20,21],[457,1,1,21,22],[458,1,1,22,23],[467,1,1,23,24],[468,1,1,24,25],[475,1,1,25,26]]],[18,7,7,26,33,[[483,1,1,26,27],[515,1,1,27,28],[527,2,2,28,30],[571,1,1,30,31],[582,1,1,31,32],[618,1,1,32,33]]],[19,10,9,33,42,[[630,1,1,33,34],[636,3,2,34,36],[642,1,1,36,37],[646,1,1,37,38],[651,1,1,38,39],[652,1,1,39,40],[655,1,1,40,41],[657,1,1,41,42]]],[22,6,6,42,48,[[679,1,1,42,43],[680,1,1,43,44],[689,2,2,44,46],[707,1,1,46,47],[715,1,1,47,48]]],[23,1,1,48,49,[[746,1,1,48,49]]],[25,1,1,49,50,[[804,1,1,49,50]]],[27,1,1,50,51,[[865,1,1,50,51]]],[29,1,1,51,52,[[883,1,1,51,52]]],[32,2,2,52,54,[[896,1,1,52,53],[898,1,1,53,54]]],[34,1,1,54,55,[[903,1,1,54,55]]]],[511,538,605,635,910,915,3298,8194,10065,10737,10841,12968,13003,13004,13084,13156,13163,13168,13206,13259,13302,13393,13426,13640,13669,13866,13986,14491,14676,14689,15441,15620,16281,16467,16645,16646,16819,16950,17104,17125,17219,17257,17672,17689,17887,17888,18214,18356,18984,20528,22137,22433,22623,22650,22743]]],["+",[7,5,[[0,1,1,0,1,[[20,1,1,0,1]]],[2,2,1,1,2,[[108,2,1,1,2]]],[17,3,2,2,4,[[441,1,1,2,3],[448,2,1,3,4]]],[25,1,1,4,5,[[804,1,1,4,5]]]],[538,3298,13003,13163,20528]]],["Reprove",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16646]]],["appointed",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[605]]],["arguing",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[13003]]],["chasten",[1,1,[[9,1,1,0,1,[[273,1,1,0,1]]]],[8194]]],["chastened",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13669]]],["convinced",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13640]]],["correct",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15441]]],["correcteth",[2,2,[[17,1,1,0,1,[[440,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]]],[12968,16467]]],["correction",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22743]]],["daysman",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13084]]],["dispute",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13426]]],["judge",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[910]]],["maintain",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13168]]],["out",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[635]]],["plead",[3,3,[[17,2,2,0,2,[[451,1,1,0,1],[454,1,1,1,2]]],[32,1,1,2,3,[[898,1,1,2,3]]]],[13259,13302,22650]]],["reason",[2,2,[[17,2,2,0,2,[[448,1,1,0,1],[450,1,1,1,2]]]],[13156,13206]]],["rebuke",[7,7,[[12,1,1,0,1,[[349,1,1,0,1]]],[18,2,2,1,3,[[483,1,1,1,2],[515,1,1,2,3]]],[19,2,2,3,5,[[636,1,1,3,4],[651,1,1,4,5]]],[22,1,1,5,6,[[680,1,1,5,6]]],[32,1,1,6,7,[[896,1,1,6,7]]]],[10737,13986,14491,16646,17104,17689,22623]]],["rebuked",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[915]]],["rebuketh",[3,3,[[19,2,2,0,2,[[636,1,1,0,1],[655,1,1,1,2]]],[29,1,1,2,3,[[883,1,1,2,3]]]],[16645,17219,22433]]],["reprove",[13,13,[[11,1,1,0,1,[[331,1,1,0,1]]],[17,2,2,1,3,[[441,1,1,1,2],[457,1,1,2,3]]],[18,3,3,3,6,[[527,2,2,3,5],[618,1,1,5,6]]],[19,2,2,6,8,[[646,1,1,6,7],[657,1,1,7,8]]],[22,3,3,8,11,[[689,2,2,8,10],[715,1,1,10,11]]],[23,1,1,11,12,[[746,1,1,11,12]]],[27,1,1,12,13,[[865,1,1,12,13]]]],[10065,13004,13393,14676,14689,16281,16950,17257,17887,17888,18356,18984,22137]]],["reproved",[3,3,[[0,1,1,0,1,[[19,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[18,1,1,2,3,[[582,1,1,2,3]]]],[511,10841,15620]]],["reprover",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17125]]],["reproveth",[3,3,[[17,1,1,0,1,[[475,1,1,0,1]]],[19,1,1,1,2,[[642,1,1,1,2]]],[22,1,1,2,3,[[707,1,1,2,3]]]],[13866,16819,18214]]],["together",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17672]]]]},{"k":"H3199","v":[["Jachin",[8,8,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]],[3,1,1,2,3,[[142,1,1,2,3]]],[10,1,1,3,4,[[297,1,1,3,4]]],[12,2,2,4,6,[[346,1,1,4,5],[361,1,1,5,6]]],[13,1,1,6,7,[[369,1,1,6,7]]],[15,1,1,7,8,[[423,1,1,7,8]]]],[1396,1670,4501,8955,10625,11032,11246,12598]]]]},{"k":"H3200","v":[["Jachinites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4501]]]]},{"k":"H3201","v":[["*",[194,183,[[0,22,21,0,21,[[12,2,2,0,2],[14,1,1,2,3],[18,2,2,3,5],[23,1,1,5,6],[28,1,1,6,7],[29,1,1,7,8],[30,1,1,8,9],[31,2,2,9,11],[33,1,1,11,12],[35,1,1,12,13],[36,1,1,13,14],[42,1,1,14,15],[43,4,3,15,18],[44,2,2,18,20],[47,1,1,20,21]]],[1,13,13,21,34,[[51,1,1,21,22],[56,2,2,22,24],[57,1,1,24,25],[58,1,1,25,26],[59,1,1,26,27],[61,1,1,27,28],[64,1,1,28,29],[67,2,2,29,31],[68,1,1,31,32],[82,1,1,32,33],[89,1,1,33,34]]],[3,13,11,34,45,[[125,1,1,34,35],[127,1,1,35,36],[129,3,2,36,38],[130,1,1,38,39],[138,6,5,39,44],[140,1,1,44,45]]],[4,16,16,45,61,[[153,1,1,45,46],[159,2,2,46,48],[161,1,1,48,49],[164,1,1,49,50],[166,1,1,50,51],[168,1,1,51,52],[169,1,1,52,53],[173,1,1,53,54],[174,3,3,54,57],[176,1,1,57,58],[180,2,2,58,60],[183,1,1,60,61]]],[5,6,6,61,67,[[193,2,2,61,63],[195,1,1,63,64],[201,1,1,64,65],[203,1,1,65,66],[210,1,1,66,67]]],[6,7,7,67,74,[[212,1,1,67,68],[218,1,1,68,69],[221,1,1,69,70],[224,2,2,70,72],[226,1,1,72,73],[231,1,1,73,74]]],[7,2,1,74,75,[[235,2,1,74,75]]],[8,9,7,75,82,[[238,1,1,75,76],[239,1,1,76,77],[241,1,1,77,78],[252,4,3,78,81],[261,2,1,81,82]]],[9,3,3,82,85,[[269,1,1,82,83],[278,1,1,83,84],[283,1,1,84,85]]],[10,9,9,85,94,[[293,1,1,85,86],[295,1,1,86,87],[298,1,1,87,88],[299,1,1,88,89],[303,2,2,89,91],[304,1,1,91,92],[310,1,1,92,93],[312,1,1,93,94]]],[11,5,5,94,99,[[315,1,1,94,95],[316,1,1,95,96],[328,1,1,96,97],[330,2,2,97,99]]],[12,1,1,99,100,[[358,1,1,99,100]]],[13,11,9,100,109,[[371,1,1,100,101],[373,2,2,101,103],[384,1,1,103,104],[395,1,1,104,105],[396,1,1,105,106],[398,5,3,106,109]]],[14,1,1,109,110,[[404,1,1,109,110]]],[15,3,3,110,113,[[416,1,1,110,111],[418,1,1,111,112],[419,1,1,112,113]]],[16,3,2,113,115,[[431,1,1,113,114],[433,2,1,114,115]]],[17,4,4,115,119,[[439,1,1,115,116],[466,1,1,116,117],[468,1,1,117,118],[477,1,1,118,119]]],[18,10,10,119,129,[[490,1,1,119,120],[495,1,1,120,121],[498,1,1,121,122],[513,1,1,122,123],[517,1,1,123,124],[555,2,2,124,126],[578,1,1,126,127],[606,1,1,127,128],[616,1,1,128,129]]],[19,1,1,129,130,[[657,1,1,129,130]]],[20,7,5,130,135,[[659,3,2,130,132],[664,1,1,132,133],[665,1,1,133,134],[666,2,1,134,135]]],[21,1,1,135,136,[[678,1,1,135,136]]],[22,12,12,136,148,[[679,1,1,136,137],[685,1,1,137,138],[694,1,1,138,139],[707,1,1,139,140],[714,2,2,140,142],[724,1,1,142,143],[725,2,2,143,145],[734,1,1,145,146],[735,1,1,146,147],[737,1,1,147,148]]],[23,20,20,148,168,[[745,1,1,148,149],[747,1,1,149,150],[749,1,1,150,151],[750,1,1,151,152],[755,1,1,152,153],[757,1,1,153,154],[758,1,1,154,155],[759,1,1,155,156],[762,1,1,156,157],[763,1,1,157,158],[764,4,4,158,162],[780,1,1,162,163],[782,2,2,163,165],[788,1,1,165,166],[793,2,2,166,168]]],[24,2,2,168,170,[[797,1,1,168,169],[800,1,1,169,170]]],[25,4,4,170,174,[[808,1,1,170,171],[834,1,1,171,172],[843,1,1,172,173],[848,1,1,173,174]]],[26,1,1,174,175,[[859,1,1,174,175]]],[27,3,3,175,178,[[866,1,1,175,176],[869,1,1,176,177],[873,1,1,177,178]]],[29,1,1,178,179,[[885,1,1,178,179]]],[30,1,1,179,180,[[888,1,1,179,180]]],[31,1,1,180,181,[[889,1,1,180,181]]],[34,1,1,181,182,[[903,1,1,181,182]]],[35,1,1,182,183,[[906,1,1,182,183]]]],[324,334,365,476,479,641,803,838,908,953,956,994,1047,1087,1322,1325,1346,1350,1359,1361,1461,1557,1706,1709,1728,1753,1782,1855,1943,2017,2022,2049,2493,2742,3971,4038,4105,4106,4124,4381,4386,4393,4412,4413,4459,4901,5128,5133,5185,5257,5314,5347,5379,5463,5473,5489,5499,5529,5638,5646,5730,5988,5989,6056,6265,6287,6495,6559,6722,6864,6922,6923,6954,7120,7196,7278,7312,7351,7627,7651,7657,7930,8092,8309,8466,8825,8881,8996,9072,9188,9200,9222,9417,9502,9602,9643,9968,10047,10053,10964,11282,11326,11331,11563,11825,11830,11888,11889,11890,12086,12369,12404,12481,12806,12823,12932,13611,13655,13924,14078,14156,14202,14450,14537,15132,15133,15518,16134,16245,17272,17323,17330,17427,17442,17475,17647,17667,17783,17981,18204,18338,18344,18588,18610,18611,18763,18785,18814,18965,19007,19080,19099,19237,19289,19302,19335,19390,19418,19429,19431,19432,19433,19847,19900,19917,20032,20137,20150,20324,20434,20596,21292,21557,21684,22032,22165,22199,22256,22474,22517,22544,22744,22805]]],["+",[52,47,[[0,8,8,0,8,[[18,2,2,0,2],[23,1,1,2,3],[28,1,1,3,4],[30,1,1,4,5],[33,1,1,5,6],[43,2,2,6,8]]],[1,1,1,8,9,[[68,1,1,8,9]]],[3,7,6,9,15,[[127,1,1,9,10],[129,1,1,10,11],[138,4,3,11,14],[140,1,1,14,15]]],[4,4,4,15,19,[[153,1,1,15,16],[161,1,1,16,17],[166,1,1,17,18],[180,1,1,18,19]]],[5,1,1,19,20,[[210,1,1,19,20]]],[6,2,2,20,22,[[221,1,1,20,21],[224,1,1,21,22]]],[7,2,1,22,23,[[235,2,1,22,23]]],[8,3,2,23,25,[[252,1,1,23,24],[261,2,1,24,25]]],[13,3,2,25,27,[[373,1,1,25,26],[398,2,1,26,27]]],[15,1,1,27,28,[[418,1,1,27,28]]],[18,1,1,28,29,[[616,1,1,28,29]]],[19,1,1,29,30,[[657,1,1,29,30]]],[20,4,3,30,33,[[659,3,2,30,32],[666,1,1,32,33]]],[21,1,1,33,34,[[678,1,1,33,34]]],[22,5,5,34,39,[[679,1,1,34,35],[707,1,1,35,36],[734,1,1,36,37],[735,1,1,37,38],[737,1,1,38,39]]],[23,6,6,39,45,[[750,1,1,39,40],[758,1,1,40,41],[762,1,1,41,42],[763,1,1,42,43],[780,1,1,43,44],[793,1,1,44,45]]],[24,1,1,45,46,[[797,1,1,45,46]]],[29,1,1,46,47,[[885,1,1,46,47]]]],[476,479,641,803,908,994,1346,1350,2049,4038,4106,4393,4412,4413,4459,4901,5185,5314,5646,6495,6864,6922,7196,7657,7930,11331,11888,12404,16245,17272,17323,17330,17475,17647,17667,18204,18763,18785,18814,19099,19302,19390,19418,19847,20150,20324,22474]]],["Can",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15132]]],["able",[33,33,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,4,4,1,5,[[59,1,1,1,2],[67,2,2,2,4],[89,1,1,4,5]]],[3,3,3,5,8,[[129,1,1,5,6],[130,1,1,6,7],[138,1,1,7,8]]],[6,1,1,8,9,[[218,1,1,8,9]]],[8,3,3,9,12,[[241,1,1,9,10],[252,2,2,10,12]]],[10,2,2,12,14,[[293,1,1,12,13],[299,1,1,13,14]]],[11,2,2,14,16,[[330,2,2,14,16]]],[13,2,2,16,18,[[398,2,2,16,18]]],[15,1,1,18,19,[[416,1,1,18,19]]],[18,4,4,19,23,[[495,1,1,19,20],[498,1,1,20,21],[513,1,1,21,22],[517,1,1,22,23]]],[20,1,1,23,24,[[666,1,1,23,24]]],[22,4,4,24,28,[[714,2,2,24,26],[725,2,2,26,28]]],[23,2,2,28,30,[[755,1,1,28,29],[793,1,1,29,30]]],[25,2,2,30,32,[[808,1,1,30,31],[834,1,1,31,32]]],[35,1,1,32,33,[[906,1,1,32,33]]]],[365,1782,2017,2022,2742,4105,4124,4386,6722,7351,7627,7651,8825,9072,10047,10053,11889,11890,12369,14156,14202,14450,14537,17475,18338,18344,18610,18611,19237,20137,20596,21292,22805]]],["against",[1,1,[[18,1,1,0,1,[[490,1,1,0,1]]]],[14078]]],["attain",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22199]]],["can",[9,9,[[0,2,2,0,2,[[12,1,1,0,1],[43,1,1,1,2]]],[4,2,2,2,4,[[159,1,1,2,3],[183,1,1,3,4]]],[9,1,1,4,5,[[278,1,1,4,5]]],[17,1,1,5,6,[[439,1,1,5,6]]],[18,1,1,6,7,[[555,1,1,6,7]]],[20,1,1,7,8,[[665,1,1,7,8]]],[26,1,1,8,9,[[859,1,1,8,9]]]],[334,1325,5128,5730,8309,12932,15133,17442,22032]]],["canst",[5,5,[[1,1,1,0,1,[[82,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[5,1,1,2,3,[[193,1,1,2,3]]],[17,1,1,3,4,[[468,1,1,3,4]]],[34,1,1,4,5,[[903,1,1,4,5]]]],[2493,5638,5989,13655,22744]]],["could",[46,46,[[0,6,6,0,6,[[12,1,1,0,1],[35,1,1,1,2],[36,1,1,2,3],[44,2,2,3,5],[47,1,1,5,6]]],[1,7,7,6,13,[[51,1,1,6,7],[56,2,2,7,9],[57,1,1,9,10],[58,1,1,10,11],[61,1,1,11,12],[64,1,1,12,13]]],[3,1,1,13,14,[[125,1,1,13,14]]],[5,3,3,14,17,[[193,1,1,14,15],[201,1,1,15,16],[203,1,1,16,17]]],[6,2,2,17,19,[[212,1,1,17,18],[224,1,1,18,19]]],[8,2,2,19,21,[[238,1,1,19,20],[239,1,1,20,21]]],[9,1,1,21,22,[[269,1,1,21,22]]],[10,4,4,22,26,[[295,1,1,22,23],[298,1,1,23,24],[303,1,1,24,25],[304,1,1,25,26]]],[11,3,3,26,29,[[315,1,1,26,27],[316,1,1,27,28],[328,1,1,28,29]]],[12,1,1,29,30,[[358,1,1,29,30]]],[13,5,5,30,35,[[371,1,1,30,31],[373,1,1,31,32],[395,1,1,32,33],[396,1,1,33,34],[398,1,1,34,35]]],[14,1,1,35,36,[[404,1,1,35,36]]],[15,1,1,36,37,[[419,1,1,36,37]]],[17,1,1,37,38,[[466,1,1,37,38]]],[22,2,2,38,40,[[685,1,1,38,39],[724,1,1,39,40]]],[23,2,2,40,42,[[764,1,1,40,41],[788,1,1,41,42]]],[24,1,1,42,43,[[800,1,1,42,43]]],[25,1,1,43,44,[[848,1,1,43,44]]],[27,1,1,44,45,[[866,1,1,44,45]]],[31,1,1,45,46,[[889,1,1,45,46]]]],[324,1047,1087,1359,1361,1461,1557,1706,1709,1728,1753,1855,1943,3971,5988,6265,6287,6559,6923,7278,7312,8092,8881,8996,9188,9222,9602,9643,9968,10964,11282,11326,11825,11830,11889,12086,12481,13611,17783,18588,19431,20032,20434,21684,22165,22544]]],["couldest",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19007]]],["do",[2,2,[[17,1,1,0,1,[[477,1,1,0,1]]],[23,1,1,1,2,[[782,1,1,1,2]]]],[13924,19900]]],["endure",[2,1,[[16,2,1,0,1,[[433,2,1,0,1]]]],[12823]]],["higher",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21557]]],["may",[11,11,[[0,1,1,0,1,[[43,1,1,0,1]]],[4,4,4,1,5,[[173,1,1,1,2],[174,2,2,2,4],[176,1,1,4,5]]],[5,1,1,5,6,[[195,1,1,5,6]]],[6,1,1,6,7,[[231,1,1,6,7]]],[10,2,2,7,9,[[303,1,1,7,8],[310,1,1,8,9]]],[20,1,1,9,10,[[664,1,1,9,10]]],[23,1,1,10,11,[[757,1,1,10,11]]]],[1350,5463,5489,5499,5529,6056,7120,9200,9417,17427,19289]]],["mayest",[5,5,[[4,5,5,0,5,[[159,1,1,0,1],[164,1,1,1,2],[168,1,1,2,3],[169,1,1,3,4],[174,1,1,4,5]]]],[5133,5257,5347,5379,5473]]],["might",[2,2,[[0,1,1,0,1,[[42,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]]],[1322,8466]]],["overcome",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4105]]],["prevail",[12,12,[[3,1,1,0,1,[[138,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[8,1,1,2,3,[[252,1,1,2,3]]],[10,1,1,3,4,[[312,1,1,3,4]]],[13,1,1,4,5,[[384,1,1,4,5]]],[16,1,1,5,6,[[431,1,1,5,6]]],[22,1,1,6,7,[[694,1,1,6,7]]],[23,5,5,7,12,[[745,1,1,7,8],[749,1,1,8,9],[759,1,1,9,10],[764,2,2,10,12]]]],[4381,6954,7627,9502,11563,12806,17981,18965,19080,19335,19432,19433]]],["prevailed",[8,8,[[0,3,3,0,3,[[29,1,1,0,1],[31,2,2,1,3]]],[18,1,1,3,4,[[606,1,1,3,4]]],[23,2,2,4,6,[[764,1,1,4,5],[782,1,1,5,6]]],[27,1,1,6,7,[[873,1,1,6,7]]],[30,1,1,7,8,[[888,1,1,7,8]]]],[838,953,956,16134,19429,19917,22256,22517]]],["suffer",[1,1,[[18,1,1,0,1,[[578,1,1,0,1]]]],[15518]]]]},{"k":"H3202","v":[["*",[12,11,[[26,12,11,0,11,[[851,3,3,0,3],[852,2,2,3,5],[853,2,2,5,7],[854,2,1,7,8],[855,2,2,8,10],[856,1,1,10,11]]]],[21768,21785,21805,21824,21836,21855,21874,21890,21909,21925,21954]]],["+",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21785,21855]]],["able",[3,3,[[26,3,3,0,3,[[852,1,1,0,1],[853,1,1,1,2],[855,1,1,2,3]]]],[21824,21874,21925]]],["can",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21768,21836]]],["canst",[2,1,[[26,2,1,0,1,[[854,2,1,0,1]]]],[21890]]],["could",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21909]]],["couldest",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21805]]],["prevailed",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21954]]]]},{"k":"H3203","v":[["*",[2,2,[[11,1,1,0,1,[[327,1,1,0,1]]],[13,1,1,1,2,[[392,1,1,1,2]]]],[9927,11735]]],["Jecholiah",[1,1,[[11,1,1,0,1,[[327,1,1,0,1]]]],[9927]]],["Jecoliah",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11735]]]]},{"k":"H3204","v":[["Jeconiah",[7,7,[[12,2,2,0,2,[[340,2,2,0,2]]],[16,1,1,2,3,[[427,1,1,2,3]]],[23,4,4,3,7,[[768,1,1,3,4],[771,1,1,4,5],[772,1,1,5,6],[773,1,1,6,7]]]],[10377,10378,12730,19525,19616,19622,19637]]]]},{"k":"H3205","v":[["*",[497,403,[[0,170,133,0,133,[[2,1,1,0,1],[3,11,8,1,9],[4,28,19,9,28],[5,3,3,28,31],[9,9,8,31,39],[10,27,18,39,57],[15,6,5,57,62],[16,5,4,62,66],[17,1,1,66,67],[18,2,2,67,69],[19,1,1,69,70],[20,6,5,70,75],[21,4,3,75,78],[23,4,4,78,82],[24,6,6,82,88],[28,6,4,88,92],[29,14,14,92,106],[30,3,2,106,108],[33,1,1,108,109],[34,5,3,109,112],[35,6,4,112,116],[37,7,5,116,121],[39,1,1,121,122],[40,2,1,122,123],[43,1,1,123,124],[45,7,6,124,130],[47,2,2,130,132],[49,1,1,132,133]]],[1,15,13,133,146,[[50,9,7,133,140],[51,2,2,140,142],[55,3,3,142,145],[70,1,1,145,146]]],[2,5,5,146,151,[[101,3,3,146,149],[111,1,1,149,150],[114,1,1,150,151]]],[3,7,6,151,157,[[117,1,1,151,152],[127,1,1,152,153],[142,5,4,153,157]]],[4,8,8,157,165,[[156,1,1,157,158],[167,1,1,158,159],[173,1,1,159,160],[175,1,1,160,161],[177,1,1,161,162],[180,2,2,162,164],[184,1,1,164,165]]],[6,11,10,165,175,[[218,1,1,165,166],[221,2,2,166,168],[223,7,6,168,174],[228,1,1,174,175]]],[7,14,10,175,185,[[232,1,1,175,176],[235,13,9,176,185]]],[8,6,5,185,190,[[236,1,1,185,186],[237,2,2,186,188],[239,3,2,188,190]]],[9,11,10,190,200,[[269,2,2,190,192],[271,1,1,192,193],[277,1,1,193,194],[278,2,2,194,196],[280,1,1,196,197],[287,4,3,197,200]]],[10,9,8,200,208,[[291,1,1,200,201],[293,6,5,201,206],[301,1,1,206,207],[303,1,1,207,208]]],[11,3,3,208,211,[[316,1,1,208,209],[331,1,1,209,210],[332,1,1,210,211]]],[12,117,83,211,294,[[338,9,8,211,219],[339,38,26,219,245],[340,3,3,245,248],[341,10,8,248,256],[343,21,11,256,267],[344,7,6,267,273],[345,14,10,273,283],[346,9,5,283,288],[351,2,2,288,290],[357,2,2,290,292],[359,1,1,292,293],[363,1,1,293,294]]],[13,5,5,294,299,[[377,3,3,294,297],[379,1,1,297,298],[390,1,1,298,299]]],[14,1,1,299,300,[[412,1,1,299,300]]],[15,5,2,300,302,[[424,5,2,300,302]]],[17,15,15,302,317,[[436,1,1,302,303],[438,1,1,303,304],[440,1,1,304,305],[446,1,1,305,306],[449,1,1,306,307],[450,3,3,307,310],[459,1,1,310,311],[460,1,1,311,312],[473,3,3,312,315],[474,2,2,315,317]]],[18,9,9,317,326,[[479,1,1,317,318],[484,1,1,318,319],[499,1,1,319,320],[525,1,1,320,321],[555,1,1,321,322],[564,3,3,322,325],[567,1,1,325,326]]],[19,7,7,326,333,[[644,3,3,326,329],[650,3,3,329,332],[654,1,1,332,333]]],[20,5,5,333,338,[[661,1,1,333,334],[662,1,1,334,335],[663,1,1,335,336],[664,1,1,336,337],[665,1,1,337,338]]],[21,2,2,338,340,[[676,1,1,338,339],[678,1,1,339,340]]],[22,24,22,340,362,[[685,1,1,340,341],[686,1,1,341,342],[687,1,1,342,343],[691,1,1,343,344],[699,1,1,344,345],[701,1,1,345,346],[704,2,2,346,348],[711,1,1,348,349],[715,1,1,349,350],[717,1,1,350,351],[720,1,1,351,352],[723,1,1,352,353],[727,1,1,353,354],[729,1,1,354,355],[732,1,1,355,356],[733,1,1,356,357],[737,1,1,357,358],[743,1,1,358,359],[744,5,3,359,362]]],[23,23,18,362,380,[[746,1,1,362,363],[750,1,1,363,364],[757,1,1,364,365],[758,1,1,365,366],[759,2,2,366,368],[760,2,1,368,369],[761,1,1,369,370],[764,3,2,370,372],[766,3,2,372,374],[773,2,1,374,375],[774,2,1,375,376],[775,1,1,376,377],[793,1,1,377,378],[794,2,2,378,380]]],[25,9,9,380,389,[[817,3,3,380,383],[819,2,2,383,385],[824,2,2,385,387],[832,1,1,387,388],[848,1,1,388,389]]],[26,1,1,389,390,[[860,1,1,389,390]]],[27,8,8,390,398,[[862,3,3,390,393],[863,1,1,393,394],[866,1,1,394,395],[870,2,2,395,397],[874,1,1,397,398]]],[32,4,3,398,401,[[896,2,2,398,400],[897,2,1,400,401]]],[35,1,1,401,402,[[907,1,1,401,402]]],[37,2,1,402,403,[[923,2,1,402,403]]]],[71,80,81,96,97,99,101,104,105,108,109,111,112,114,115,117,118,120,121,123,124,126,127,130,131,133,135,137,138,141,147,235,242,247,249,255,258,259,260,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,382,383,392,396,397,414,416,417,418,437,494,495,512,515,516,518,520,522,567,570,571,606,615,627,638,660,661,670,677,682,684,827,828,829,830,831,833,835,837,839,840,842,847,849,850,851,853,855,869,881,916,981,1027,1028,1037,1044,1045,1052,1054,1122,1123,1124,1146,1147,1192,1245,1351,1401,1404,1406,1408,1411,1413,1456,1457,1529,1547,1548,1549,1550,1551,1552,1553,1556,1576,1675,1678,1680,2081,3046,3049,3051,3396,3514,3622,4036,4518,4547,4548,4549,5029,5338,5462,5508,5553,5652,5668,5776,6750,6830,6831,6886,6887,6889,6891,6892,6908,7022,7139,7202,7203,7205,7207,7208,7209,7210,7211,7212,7232,7245,7261,7316,7317,8083,8086,8145,8286,8301,8310,8383,8588,8600,8602,8723,8833,8834,8837,8842,8843,9128,9186,9620,10064,10116,10262,10263,10265,10270,10271,10272,10284,10286,10309,10310,10315,10316,10317,10318,10319,10323,10324,10325,10326,10327,10328,10330,10335,10341,10342,10343,10344,10345,10346,10347,10350,10352,10354,10355,10362,10365,10366,10387,10391,10393,10394,10396,10397,10399,10403,10458,10459,10460,10461,10462,10463,10464,10465,10466,10467,10468,10549,10551,10553,10556,10558,10567,10576,10582,10583,10584,10586,10607,10608,10609,10611,10612,10653,10654,10655,10657,10658,10777,10778,10932,10934,10973,11083,11433,11434,11435,11474,11680,12255,12634,12635,12871,12907,12958,13120,13182,13210,13217,13238,13457,13465,13814,13821,13822,13835,13836,13952,14009,14235,14640,15119,15305,15306,15307,15380,16890,16894,16898,17066,17068,17069,17170,17361,17395,17411,17420,17430,17623,17645,17796,17810,17835,17914,18038,18081,18147,18148,18290,18355,18419,18494,18571,18657,18691,18724,18750,18804,18920,18929,18930,18931,18992,19113,19287,19298,19324,19325,19339,19368,19436,19437,19477,19480,19641,19673,19699,20151,20178,20209,20766,20767,20782,20859,20863,21011,21044,21236,21701,22042,22097,22100,22102,22108,22159,22219,22224,22279,22629,22630,22636,22807,23062]]],["+",[173,129,[[0,66,61,0,61,[[3,9,6,0,6],[4,17,17,6,23],[9,6,5,23,28],[10,19,18,28,46],[15,3,3,46,49],[21,1,1,49,50],[24,2,2,50,52],[28,1,1,52,53],[29,3,3,53,56],[35,2,2,56,58],[39,1,1,58,59],[45,2,2,59,61]]],[3,3,3,61,64,[[142,3,3,61,64]]],[6,1,1,64,65,[[221,1,1,64,65]]],[7,8,5,65,70,[[235,8,5,65,70]]],[12,88,55,70,125,[[338,8,7,70,77],[339,27,15,77,92],[341,8,6,92,98],[343,21,11,98,109],[344,3,3,109,112],[345,12,8,112,120],[346,9,5,120,125]]],[15,5,2,125,127,[[424,5,2,125,127]]],[22,1,1,127,128,[[744,1,1,127,128]]],[27,1,1,128,129,[[870,1,1,128,129]]]],[80,81,96,97,99,101,109,111,112,114,115,117,118,120,121,123,124,126,127,130,131,135,137,242,247,249,258,260,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,382,383,397,570,661,677,830,831,839,855,1044,1045,1192,1406,1411,4518,4547,4549,6830,7208,7209,7210,7211,7212,10262,10263,10265,10270,10272,10284,10286,10316,10317,10318,10319,10323,10326,10328,10342,10343,10344,10345,10346,10347,10350,10352,10387,10393,10396,10397,10399,10403,10458,10459,10460,10461,10462,10463,10464,10465,10466,10467,10468,10549,10553,10567,10576,10582,10586,10607,10608,10609,10611,10612,10653,10654,10655,10657,10658,12634,12635,18930,22219]]],["bare",[94,90,[[0,43,40,0,40,[[3,1,1,0,1],[5,1,1,1,2],[15,2,1,2,3],[18,2,2,3,5],[19,1,1,5,6],[20,2,2,6,8],[21,1,1,8,9],[23,3,3,9,12],[24,3,3,12,15],[28,4,4,15,19],[29,8,8,19,27],[30,2,1,27,28],[33,1,1,28,29],[35,3,3,29,32],[37,4,3,32,35],[40,1,1,35,36],[43,1,1,36,37],[45,3,3,37,40]]],[1,5,5,40,45,[[51,2,2,40,42],[55,3,3,42,45]]],[3,2,1,45,46,[[142,2,1,45,46]]],[6,4,4,46,50,[[218,1,1,46,47],[221,1,1,47,48],[223,2,2,48,50]]],[7,2,2,50,52,[[235,2,2,50,52]]],[8,2,2,52,54,[[236,1,1,52,53],[237,1,1,53,54]]],[9,4,4,54,58,[[277,1,1,54,55],[278,2,2,55,57],[287,1,1,57,58]]],[10,2,2,58,60,[[291,1,1,58,59],[301,1,1,59,60]]],[11,1,1,60,61,[[316,1,1,60,61]]],[12,13,13,61,74,[[339,8,8,61,69],[341,2,2,69,71],[344,3,3,71,74]]],[13,2,2,74,76,[[377,2,2,74,76]]],[19,2,2,76,78,[[644,1,1,76,77],[650,1,1,77,78]]],[21,2,2,78,80,[[676,1,1,78,79],[678,1,1,79,80]]],[22,1,1,80,81,[[686,1,1,80,81]]],[23,4,4,81,85,[[760,1,1,81,82],[764,1,1,82,83],[766,1,1,83,84],[794,1,1,84,85]]],[25,2,2,85,87,[[824,2,2,85,87]]],[27,3,3,87,90,[[862,3,3,87,90]]]],[104,141,396,494,495,512,515,516,571,615,627,638,660,670,684,827,828,829,830,835,837,840,842,847,849,851,853,881,981,1044,1052,1054,1122,1123,1124,1245,1351,1401,1404,1406,1556,1576,1675,1678,1680,4548,6750,6831,6886,6908,7202,7203,7232,7261,8286,8301,8310,8588,8723,9128,9620,10310,10325,10327,10330,10335,10341,10354,10355,10391,10394,10549,10551,10558,11433,11434,16898,17069,17623,17645,17810,19339,19436,19480,20178,21011,21044,22097,22100,22102]]],["bear",[16,16,[[0,6,6,0,6,[[15,1,1,0,1],[16,3,3,1,4],[21,1,1,4,5],[29,1,1,5,6]]],[2,1,1,6,7,[[101,1,1,6,7]]],[4,1,1,7,8,[[180,1,1,7,8]]],[6,3,3,8,11,[[223,3,3,8,11]]],[7,1,1,11,12,[[232,1,1,11,12]]],[10,1,1,12,13,[[293,1,1,12,13]]],[22,2,2,13,15,[[685,1,1,13,14],[732,1,1,14,15]]],[23,1,1,15,16,[[773,1,1,15,16]]]],[392,414,416,418,570,833,3049,5668,6887,6889,6891,7139,8837,17796,18724,19641]]],["bearest",[1,1,[[6,1,1,0,1,[[223,1,1,0,1]]]],[6887]]],["beareth",[2,2,[[4,1,1,0,1,[[177,1,1,0,1]]],[17,1,1,1,2,[[459,1,1,1,2]]]],[5553,13457]]],["begat",[35,34,[[0,20,20,0,20,[[4,11,11,0,11],[5,1,1,11,12],[10,8,8,12,20]]],[2,1,1,20,21,[[114,1,1,20,21]]],[4,1,1,21,22,[[184,1,1,21,22]]],[7,1,1,22,23,[[235,1,1,22,23]]],[12,4,4,23,27,[[339,1,1,23,24],[345,2,2,24,26],[351,1,1,26,27]]],[13,3,3,27,30,[[377,1,1,27,28],[379,1,1,28,29],[390,1,1,29,30]]],[19,1,1,30,31,[[650,1,1,30,31]]],[23,1,1,31,32,[[760,1,1,31,32]]],[26,1,1,32,33,[[860,1,1,32,33]]],[37,2,1,33,34,[[923,2,1,33,34]]]],[108,109,112,115,118,121,124,127,131,133,135,147,277,279,281,283,285,287,289,291,3514,5776,7209,10324,10583,10584,10777,11435,11474,11680,17066,19339,22042,23062]]],["beget",[10,10,[[0,1,1,0,1,[[16,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[180,1,1,2,3]]],[11,1,1,3,4,[[332,1,1,3,4]]],[20,1,1,4,5,[[664,1,1,4,5]]],[22,1,1,5,6,[[717,1,1,5,6]]],[23,1,1,6,7,[[773,1,1,6,7]]],[25,3,3,7,10,[[819,2,2,7,9],[848,1,1,9,10]]]],[417,5029,5652,10116,17420,18419,19641,20859,20863,21701]]],["begettest",[2,2,[[0,1,1,0,1,[[47,1,1,0,1]]],[22,1,1,1,2,[[723,1,1,1,2]]]],[1457,18571]]],["begetteth",[3,3,[[19,2,2,0,2,[[644,1,1,0,1],[650,1,1,1,2]]],[20,1,1,2,3,[[663,1,1,2,3]]]],[16894,17068,17411]]],["begotten",[6,6,[[3,1,1,0,1,[[127,1,1,0,1]]],[4,1,1,1,2,[[175,1,1,1,2]]],[17,1,1,2,3,[[473,1,1,2,3]]],[18,1,1,3,4,[[479,1,1,3,4]]],[22,1,1,4,5,[[727,1,1,4,5]]],[27,1,1,5,6,[[866,1,1,5,6]]]],[4036,5508,13821,13952,18657,22159]]],["birth",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17430]]],["born",[74,74,[[0,21,21,0,21,[[3,1,1,0,1],[5,1,1,1,2],[9,3,3,2,5],[16,1,1,5,6],[20,4,4,6,10],[21,1,1,10,11],[23,1,1,11,12],[28,1,1,12,13],[29,1,1,13,14],[30,1,1,14,15],[34,1,1,15,16],[35,1,1,16,17],[40,1,1,17,18],[45,2,2,18,20],[47,1,1,20,21]]],[1,1,1,21,22,[[70,1,1,21,22]]],[2,2,2,22,24,[[101,2,2,22,24]]],[4,1,1,24,25,[[173,1,1,24,25]]],[6,2,2,25,27,[[223,1,1,25,26],[228,1,1,26,27]]],[7,2,2,27,29,[[235,2,2,27,29]]],[8,2,2,29,31,[[237,1,1,29,30],[239,1,1,30,31]]],[9,6,6,31,37,[[269,2,2,31,33],[271,1,1,33,34],[280,1,1,34,35],[287,2,2,35,37]]],[10,1,1,37,38,[[303,1,1,37,38]]],[12,10,10,38,48,[[338,1,1,38,39],[339,2,2,39,41],[340,3,3,41,44],[344,1,1,44,45],[357,1,1,45,46],[359,1,1,46,47],[363,1,1,47,48]]],[14,1,1,48,49,[[412,1,1,48,49]]],[17,9,9,49,58,[[436,1,1,49,50],[438,1,1,50,51],[440,1,1,51,52],[446,1,1,52,53],[449,1,1,53,54],[450,2,2,54,56],[460,1,1,56,57],[473,1,1,57,58]]],[18,5,5,58,63,[[499,1,1,58,59],[555,1,1,59,60],[564,3,3,60,63]]],[19,1,1,63,64,[[644,1,1,63,64]]],[20,2,2,64,66,[[661,1,1,64,65],[662,1,1,65,66]]],[22,2,2,66,68,[[687,1,1,66,67],[744,1,1,67,68]]],[23,3,3,68,71,[[764,2,2,68,70],[766,1,1,70,71]]],[25,2,2,71,73,[[817,2,2,71,73]]],[27,1,1,73,74,[[863,1,1,73,74]]]],[105,138,235,255,259,414,516,518,520,522,567,606,829,850,916,1037,1045,1245,1408,1413,1456,2081,3046,3051,5462,6892,7022,7205,7207,7245,7317,8083,8086,8145,8383,8600,8602,9186,10271,10309,10315,10362,10365,10366,10556,10934,10973,11083,12255,12871,12907,12958,13120,13182,13210,13217,13465,13814,14235,15119,15305,15306,15307,16890,17361,17395,17835,18930,19436,19437,19480,20766,20767,22108]]],["borne",[3,3,[[23,2,2,0,2,[[759,2,2,0,2]]],[25,1,1,2,3,[[817,1,1,2,3]]]],[19324,19325,20782]]],["calved",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19298]]],["child",[6,6,[[0,1,1,0,1,[[17,1,1,0,1]]],[10,3,3,1,4,[[293,3,3,1,4]]],[23,2,2,4,6,[[774,1,1,4,5],[775,1,1,5,6]]]],[437,8833,8842,8843,19673,19699]]],["children",[2,2,[[12,1,1,0,1,[[351,1,1,0,1]]],[22,1,1,1,2,[[701,1,1,1,2]]]],[10778,18081]]],["come",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5338]]],["delivered",[5,4,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,1,1,1,2,[[50,1,1,1,2]]],[8,1,1,2,3,[[239,1,1,2,3]]],[10,2,1,3,4,[[293,2,1,3,4]]]],[682,1551,7316,8834]]],["delivery",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18147]]],["forth",[24,23,[[0,2,2,0,2,[[2,1,1,0,1],[29,1,1,1,2]]],[2,1,1,2,3,[[111,1,1,2,3]]],[11,1,1,3,4,[[331,1,1,3,4]]],[17,3,3,4,7,[[450,1,1,4,5],[474,2,2,5,7]]],[18,2,2,7,9,[[484,1,1,7,8],[567,1,1,8,9]]],[19,1,1,9,10,[[654,1,1,9,10]]],[22,10,9,10,19,[[704,1,1,10,11],[711,1,1,11,12],[715,1,1,12,13],[729,1,1,13,14],[733,1,1,14,15],[737,1,1,15,16],[743,1,1,16,17],[744,3,2,17,19]]],[23,1,1,19,20,[[746,1,1,19,20]]],[27,1,1,20,21,[[870,1,1,20,21]]],[32,1,1,21,22,[[897,1,1,21,22]]],[35,1,1,22,23,[[907,1,1,22,23]]]],[71,869,3396,10064,13238,13835,13836,14009,15380,17170,18148,18290,18355,18691,18750,18804,18920,18929,18931,18992,22224,22636,22807]]],["gendered",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13822]]],["hatcheth",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19368]]],["labour",[2,2,[[0,2,2,0,2,[[34,2,2,0,2]]]],[1027,1028]]],["midwife",[3,3,[[0,2,2,0,2,[[34,1,1,0,1],[37,1,1,1,2]]],[1,1,1,2,3,[[50,1,1,2,3]]]],[1028,1147,1548]]],["midwives",[7,6,[[1,7,6,0,6,[[50,7,6,0,6]]]],[1547,1549,1550,1551,1552,1553]]],["pedigrees",[1,1,[[3,1,1,0,1,[[117,1,1,0,1]]]],[3622]]],["son",[1,1,[[12,1,1,0,1,[[357,1,1,0,1]]]],[10932]]],["travail",[10,10,[[0,1,1,0,1,[[37,1,1,0,1]]],[18,1,1,1,2,[[525,1,1,1,2]]],[23,6,6,2,8,[[750,1,1,2,3],[757,1,1,3,4],[766,1,1,4,5],[774,1,1,5,6],[793,1,1,6,7],[794,1,1,7,8]]],[32,2,2,8,10,[[896,2,2,8,10]]]],[1146,14640,19113,19287,19477,19673,20151,20209,22629,22630]]],["travailed",[3,3,[[0,2,2,0,2,[[34,1,1,0,1],[37,1,1,1,2]]],[8,1,1,2,3,[[239,1,1,2,3]]]],[1027,1147,7316]]],["travaileth",[3,3,[[22,2,2,0,2,[[691,1,1,0,1],[699,1,1,1,2]]],[32,1,1,2,3,[[897,1,1,2,3]]]],[17914,18038,22636]]],["up",[2,2,[[0,1,1,0,1,[[49,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]]],[1529,8588]]],["woman",[2,2,[[22,1,1,0,1,[[720,1,1,0,1]]],[27,1,1,1,2,[[874,1,1,1,2]]]],[18494,22279]]],["young",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21236]]]]},{"k":"H3206","v":[["*",[90,76,[[0,19,17,0,17,[[3,1,1,0,1],[20,4,4,1,5],[29,1,1,5,6],[31,1,1,6,7],[32,9,7,7,14],[36,1,1,14,15],[41,1,1,15,16],[43,1,1,16,17]]],[1,12,10,17,27,[[50,2,2,17,19],[51,8,6,19,25],[70,2,2,25,27]]],[7,2,2,27,29,[[232,1,1,27,28],[235,1,1,28,29]]],[8,2,1,29,30,[[236,2,1,29,30]]],[9,13,6,30,36,[[272,1,1,30,31],[278,12,5,31,36]]],[10,9,8,36,44,[[293,1,1,36,37],[302,3,3,37,40],[304,1,1,40,41],[307,4,3,41,44]]],[11,6,5,44,49,[[314,1,1,44,45],[316,5,4,45,49]]],[13,3,3,49,52,[[376,3,3,49,52]]],[14,1,1,52,53,[[412,1,1,52,53]]],[15,1,1,53,54,[[424,1,1,53,54]]],[17,3,3,54,57,[[456,1,1,54,55],[473,1,1,55,56],[474,1,1,56,57]]],[20,2,2,57,59,[[662,2,2,57,59]]],[22,7,7,59,66,[[680,1,1,59,60],[686,1,1,60,61],[687,1,1,61,62],[689,1,1,62,63],[707,1,1,63,64],[735,2,2,64,66]]],[23,1,1,66,67,[[775,1,1,66,67]]],[24,1,1,67,68,[[800,1,1,67,68]]],[26,5,5,68,73,[[850,5,5,68,73]]],[27,1,1,73,74,[[862,1,1,73,74]]],[28,1,1,74,75,[[878,1,1,74,75]]],[37,1,1,75,76,[[918,1,1,75,76]]]],[102,521,527,528,529,856,950,961,962,965,966,967,973,974,1113,1274,1344,1549,1550,1557,1560,1561,1562,1563,1564,2081,2099,7132,7206,7214,8180,8301,8304,8305,8307,8308,8841,9159,9161,9165,9230,9338,9339,9340,9575,9604,9621,9629,9637,11403,11405,11409,12253,12667,13366,13834,13837,17394,17396,17691,17825,17835,17891,18216,18769,18770,19711,20430,21741,21747,21750,21752,21754,22096,22346,22981]]],["+",[6,5,[[1,3,3,0,3,[[51,3,3,0,3]]],[7,1,1,3,4,[[232,1,1,3,4]]],[9,2,1,4,5,[[278,2,1,4,5]]]],[1560,1562,1563,7132,8307]]],["Children",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21741]]],["boy",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22346]]],["boys",[1,1,[[37,1,1,0,1,[[918,1,1,0,1]]]],[22981]]],["child",[37,31,[[0,7,7,0,7,[[20,4,4,0,4],[36,1,1,4,5],[41,1,1,5,6],[43,1,1,6,7]]],[1,5,5,7,12,[[51,5,5,7,12]]],[7,1,1,12,13,[[235,1,1,12,13]]],[9,11,6,13,19,[[272,1,1,13,14],[278,10,5,14,19]]],[10,5,5,19,24,[[293,1,1,19,20],[304,1,1,20,21],[307,3,3,21,24]]],[11,4,3,24,27,[[316,4,3,24,27]]],[20,2,2,27,29,[[662,2,2,27,29]]],[22,1,1,29,30,[[687,1,1,29,30]]],[23,1,1,30,31,[[775,1,1,30,31]]]],[521,527,528,529,1113,1274,1344,1557,1560,1561,1563,1564,7206,8180,8301,8304,8305,8307,8308,8841,9230,9338,9339,9340,9621,9629,9637,17394,17396,17835,19711]]],["child's",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9338]]],["children",[30,27,[[0,10,8,0,8,[[29,1,1,0,1],[32,9,7,1,8]]],[1,3,3,8,11,[[50,2,2,8,10],[70,1,1,10,11]]],[8,2,1,11,12,[[236,2,1,11,12]]],[11,1,1,12,13,[[314,1,1,12,13]]],[14,1,1,13,14,[[412,1,1,13,14]]],[15,1,1,14,15,[[424,1,1,14,15]]],[17,1,1,15,16,[[456,1,1,15,16]]],[22,5,5,16,21,[[680,1,1,16,17],[686,1,1,17,18],[707,1,1,18,19],[735,2,2,19,21]]],[24,1,1,21,22,[[800,1,1,21,22]]],[26,4,4,22,26,[[850,4,4,22,26]]],[27,1,1,26,27,[[862,1,1,26,27]]]],[856,961,962,965,966,967,973,974,1549,1550,2081,7214,9575,12253,12667,13366,17691,17825,18216,18769,18770,20430,21747,21750,21752,21754,22096]]],["fruit",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2099]]],["man",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[102]]],["men",[6,6,[[10,3,3,0,3,[[302,3,3,0,3]]],[13,3,3,3,6,[[376,3,3,3,6]]]],[9159,9161,9165,11403,11405,11409]]],["ones",[3,3,[[17,2,2,0,2,[[473,1,1,0,1],[474,1,1,1,2]]],[22,1,1,2,3,[[689,1,1,2,3]]]],[13834,13837,17891]]],["sons",[2,2,[[0,1,1,0,1,[[31,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]]],[950,9604]]]]},{"k":"H3207","v":[["*",[3,3,[[0,1,1,0,1,[[33,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]],[37,1,1,2,3,[[918,1,1,2,3]]]],[984,22346,22981]]],["damsel",[1,1,[[0,1,1,0,1,[[33,1,1,0,1]]]],[984]]],["girl",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22346]]],["girls",[1,1,[[37,1,1,0,1,[[918,1,1,0,1]]]],[22981]]]]},{"k":"H3208","v":[["*",[3,3,[[18,1,1,0,1,[[587,1,1,0,1]]],[20,2,2,1,3,[[669,2,2,1,3]]]],[15789,17522,17523]]],["childhood",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17523]]],["youth",[2,2,[[18,1,1,0,1,[[587,1,1,0,1]]],[20,1,1,1,2,[[669,1,1,1,2]]]],[15789,17522]]]]},{"k":"H3209","v":[["born",[5,5,[[1,1,1,0,1,[[50,1,1,0,1]]],[5,1,1,1,2,[[191,1,1,1,2]]],[9,2,2,2,4,[[271,1,1,2,3],[278,1,1,3,4]]],[23,1,1,4,5,[[760,1,1,4,5]]]],[1554,5939,8146,8300,19339]]]]},{"k":"H3210","v":[["Jalon",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10402]]]]},{"k":"H3211","v":[["*",[13,13,[[0,5,5,0,5,[[13,1,1,0,1],[16,4,4,1,5]]],[2,1,1,5,6,[[111,1,1,5,6]]],[3,2,2,6,8,[[129,2,2,6,8]]],[5,1,1,8,9,[[201,1,1,8,9]]],[9,2,2,9,11,[[287,2,2,9,11]]],[12,1,1,11,12,[[357,1,1,11,12]]],[23,1,1,12,13,[[746,1,1,12,13]]]],[350,409,410,420,424,3380,4097,4103,6216,8596,8598,10930,18979]]],["+",[2,2,[[12,1,1,0,1,[[357,1,1,0,1]]],[23,1,1,1,2,[[746,1,1,1,2]]]],[10930,18979]]],["born",[6,6,[[0,5,5,0,5,[[13,1,1,0,1],[16,4,4,1,5]]],[2,1,1,5,6,[[111,1,1,5,6]]]],[350,409,410,420,424,3380]]],["children",[3,3,[[3,2,2,0,2,[[129,2,2,0,2]]],[5,1,1,2,3,[[201,1,1,2,3]]]],[4097,4103,6216]]],["sons",[2,2,[[9,2,2,0,2,[[287,2,2,0,2]]]],[8596,8598]]]]},{"k":"H3212","v":[]},{"k":"H3213","v":[["*",[32,29,[[22,13,11,0,11,[[691,1,1,0,1],[692,1,1,1,2],[693,4,3,2,5],[694,2,1,5,6],[701,3,3,6,9],[730,1,1,9,10],[743,1,1,10,11]]],[23,8,8,11,19,[[748,1,1,11,12],[769,1,1,12,13],[791,1,1,13,14],[792,3,3,14,17],[793,1,1,17,18],[795,1,1,18,19]]],[25,2,2,19,21,[[822,1,1,19,20],[831,1,1,20,21]]],[27,1,1,21,22,[[868,1,1,21,22]]],[28,3,3,22,25,[[876,3,3,22,25]]],[29,1,1,25,26,[[886,1,1,25,26]]],[32,1,1,26,27,[[893,1,1,26,27]]],[35,1,1,27,28,[[906,1,1,27,28]]],[37,2,1,28,29,[[921,2,1,28,29]]]],[17912,17959,17962,17963,17968,17976,18078,18083,18091,18701,18911,19035,19568,20075,20100,20111,20119,20130,20220,20956,21206,22192,22296,22302,22304,22484,22587,22798,23030]]],["Howl",[9,9,[[22,4,4,0,4,[[691,1,1,0,1],[692,1,1,1,2],[701,2,2,2,4]]],[23,2,2,4,6,[[769,1,1,4,5],[793,1,1,5,6]]],[25,1,1,6,7,[[831,1,1,6,7]]],[35,1,1,7,8,[[906,1,1,7,8]]],[37,1,1,8,9,[[921,1,1,8,9]]]],[17912,17959,18078,18091,19568,20130,21206,22798,23030]]],["howl",[19,18,[[22,7,6,0,6,[[693,2,2,0,2],[694,2,1,2,3],[701,1,1,3,4],[730,1,1,4,5],[743,1,1,5,6]]],[23,6,6,6,12,[[748,1,1,6,7],[791,1,1,7,8],[792,3,3,8,11],[795,1,1,11,12]]],[25,1,1,12,13,[[822,1,1,12,13]]],[28,3,3,13,16,[[876,3,3,13,16]]],[32,1,1,16,17,[[893,1,1,16,17]]],[37,1,1,17,18,[[921,1,1,17,18]]]],[17962,17963,17976,18083,18701,18911,19035,20075,20100,20111,20119,20220,20956,22296,22302,22304,22587,23030]]],["howled",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22192]]],["howling",[2,1,[[22,2,1,0,1,[[693,2,1,0,1]]]],[17968]]],["howlings",[1,1,[[29,1,1,0,1,[[886,1,1,0,1]]]],[22484]]]]},{"k":"H3214","v":[["howling",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5768]]]]},{"k":"H3215","v":[["howling",[3,3,[[23,1,1,0,1,[[769,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]],[37,1,1,2,3,[[921,1,1,2,3]]]],[19570,22797,23031]]]]},{"k":"H3216","v":[["devoureth",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16979]]]]},{"k":"H3217","v":[["scabbed",[2,2,[[2,2,2,0,2,[[110,1,1,0,1],[111,1,1,1,2]]]],[3365,3391]]]]},{"k":"H3218","v":[["*",[9,7,[[18,1,1,0,1,[[582,1,1,0,1]]],[23,2,2,1,3,[[795,2,2,1,3]]],[28,3,2,3,5,[[876,2,1,3,4],[877,1,1,4,5]]],[33,3,2,5,7,[[902,3,2,5,7]]]],[15640,20226,20239,22295,22336,22727,22728]]],["cankerworm",[6,4,[[28,3,2,0,2,[[876,2,1,0,1],[877,1,1,1,2]]],[33,3,2,2,4,[[902,3,2,2,4]]]],[22295,22336,22727,22728]]],["caterpillers",[3,3,[[18,1,1,0,1,[[582,1,1,0,1]]],[23,2,2,1,3,[[795,2,2,1,3]]]],[15640,20226,20239]]]]},{"k":"H3219","v":[["scrip",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7658]]]]},{"k":"H3220","v":[["*",[396,339,[[0,13,13,0,13,[[0,4,4,0,4],[8,1,1,4,5],[11,1,1,5,6],[12,1,1,6,7],[13,1,1,7,8],[21,1,1,8,9],[27,1,1,9,10],[31,1,1,10,11],[40,1,1,11,12],[48,1,1,12,13]]],[1,39,28,13,41,[[59,2,1,13,14],[62,1,1,14,15],[63,17,11,15,26],[64,10,7,26,33],[69,1,1,33,34],[72,2,1,34,35],[75,2,2,35,37],[76,1,1,37,38],[85,2,2,38,40],[87,1,1,40,41]]],[2,2,2,41,43,[[100,2,2,41,43]]],[3,19,17,43,60,[[118,1,1,43,44],[119,1,1,44,45],[127,2,2,45,47],[129,1,1,47,48],[130,1,1,48,49],[137,1,1,49,50],[149,3,3,50,53],[150,8,6,53,59],[151,1,1,59,60]]],[4,14,12,60,72,[[153,2,2,60,62],[154,1,1,62,63],[155,3,2,63,65],[156,1,1,65,66],[163,2,2,66,68],[182,2,1,68,69],[185,2,2,69,71],[186,1,1,71,72]]],[5,52,41,72,113,[[187,1,1,72,73],[188,1,1,73,74],[189,2,1,74,75],[190,1,1,75,76],[191,2,1,76,77],[194,3,3,77,80],[195,1,1,80,81],[197,3,3,81,84],[198,4,2,84,86],[199,1,1,86,87],[201,11,9,87,96],[202,5,3,96,99],[203,2,2,99,101],[204,5,4,101,105],[205,5,4,105,109],[208,1,1,109,110],[209,1,1,110,111],[210,3,2,111,113]]],[6,3,3,113,116,[[215,1,1,113,114],[217,1,1,114,115],[221,1,1,115,116]]],[8,1,1,116,117,[[248,1,1,116,117]]],[9,2,2,117,119,[[283,1,1,117,118],[288,1,1,118,119]]],[10,16,13,119,132,[[294,2,2,119,121],[295,2,1,121,122],[297,7,5,122,127],[299,2,2,127,129],[300,1,1,129,130],[308,2,2,130,132]]],[11,4,4,132,136,[[326,1,1,132,133],[328,1,1,133,134],[337,2,2,134,136]]],[12,3,3,136,139,[[346,1,1,136,137],[353,1,1,137,138],[355,1,1,138,139]]],[13,11,10,139,149,[[368,1,1,139,140],[370,7,6,140,146],[374,2,2,146,148],[386,1,1,148,149]]],[14,1,1,149,150,[[405,1,1,149,150]]],[15,4,3,150,153,[[421,4,3,150,153]]],[16,1,1,153,154,[[435,1,1,153,154]]],[17,12,12,154,166,[[441,1,1,154,155],[442,1,1,155,156],[444,1,1,156,157],[446,1,1,157,158],[447,1,1,158,159],[449,1,1,159,160],[461,1,1,160,161],[463,1,1,161,162],[471,1,1,162,163],[473,2,2,163,165],[476,1,1,165,166]]],[18,38,35,166,201,[[485,2,1,166,167],[501,1,1,167,168],[510,1,1,168,169],[523,1,1,169,170],[542,2,2,170,172],[543,1,1,172,173],[545,1,1,173,174],[546,1,1,174,175],[549,2,1,175,176],[551,1,1,176,177],[554,1,1,177,178],[555,3,3,178,181],[557,1,1,181,182],[566,2,2,182,184],[570,1,1,184,185],[572,1,1,185,186],[573,1,1,186,187],[575,1,1,187,188],[581,1,1,188,189],[583,4,3,189,192],[584,2,2,192,194],[591,2,2,194,196],[612,1,1,196,197],[613,2,2,197,199],[616,1,1,199,200],[623,1,1,200,201]]],[19,3,3,201,204,[[635,1,1,201,202],[650,1,1,202,203],[657,1,1,203,204]]],[20,2,1,204,205,[[659,2,1,204,205]]],[22,31,29,205,234,[[683,1,1,205,206],[687,1,1,206,207],[688,2,2,207,209],[689,4,4,209,213],[694,1,1,213,214],[695,1,1,214,215],[696,1,1,215,216],[697,1,1,216,217],[699,1,1,217,218],[701,4,3,218,221],[702,2,2,221,223],[705,1,1,223,224],[720,1,1,224,225],[721,1,1,225,226],[726,1,1,226,227],[727,1,1,227,228],[728,1,1,228,229],[729,3,2,229,231],[735,1,1,231,232],[738,1,1,232,233],[741,1,1,233,234]]],[23,18,17,234,251,[[749,1,1,234,235],[750,1,1,235,236],[759,1,1,236,237],[769,1,1,237,238],[771,1,1,238,239],[775,1,1,239,240],[777,1,1,240,241],[790,1,1,241,242],[791,1,1,242,243],[792,2,1,243,244],[793,2,2,244,246],[794,1,1,246,247],[795,2,2,247,249],[796,2,2,249,251]]],[24,1,1,251,252,[[798,1,1,251,252]]],[25,60,52,252,304,[[826,1,1,252,253],[827,6,5,253,258],[828,10,10,258,268],[829,2,2,268,270],[833,1,1,270,271],[839,1,1,271,272],[840,1,1,272,273],[842,1,1,273,274],[843,1,1,274,275],[846,3,1,275,276],[847,1,1,276,277],[848,10,7,277,284],[849,22,20,284,304]]],[26,2,2,304,306,[[857,1,1,304,305],[860,1,1,305,306]]],[27,3,3,306,309,[[862,1,1,306,307],[865,1,1,307,308],[872,1,1,308,309]]],[28,2,1,309,310,[[877,2,1,309,310]]],[29,5,4,310,314,[[883,1,1,310,311],[886,2,1,311,312],[887,2,2,312,314]]],[31,12,8,314,322,[[889,11,7,314,321],[890,1,1,321,322]]],[32,3,2,322,324,[[899,3,2,322,324]]],[33,3,2,324,326,[[900,1,1,324,325],[902,2,1,325,326]]],[34,4,4,326,330,[[903,1,1,326,327],[904,1,1,327,328],[905,2,2,328,330]]],[35,3,3,330,333,[[906,1,1,330,331],[907,2,2,331,333]]],[36,1,1,333,334,[[910,1,1,333,334]]],[37,8,5,334,339,[[919,3,2,334,336],[920,2,1,336,337],[924,3,2,337,339]]]],[9,21,25,27,207,306,332,339,564,787,940,1244,1486,1796,1885,1891,1898,1905,1910,1911,1912,1915,1916,1917,1918,1919,1921,1924,1928,1930,1939,1941,1942,2062,2175,2257,2262,2284,2593,2598,2645,3006,3007,3676,3715,4046,4055,4104,4133,4344,4768,4770,4771,4819,4821,4822,4823,4827,4828,4850,4899,4932,4939,4992,5002,5053,5212,5232,5721,5829,5833,5841,5855,5879,5909,5933,5935,6011,6014,6015,6038,6109,6110,6111,6133,6137,6181,6204,6206,6207,6210,6212,6213,6214,6248,6249,6268,6271,6273,6284,6285,6305,6307,6308,6312,6332,6347,6350,6355,6433,6464,6482,6483,6640,6706,6845,7490,8460,8618,8864,8873,8887,8957,8958,8959,8973,8978,9077,9078,9101,9384,9385,9921,9980,10235,10238,10639,10852,10898,11227,11248,11249,11250,11252,11256,11261,11363,11364,11589,12104,12517,12520,12522,12867,12981,13020,13059,13117,13136,13192,13479,13518,13766,13801,13809,13919,14020,14243,14373,14616,14865,14867,14879,14922,14969,15008,15061,15112,15126,15140,15166,15209,15335,15351,15430,15459,15476,15497,15596,15658,15660,15673,15702,15722,15825,15827,16181,16209,16211,16248,16347,16631,17078,17270,17322,17769,17830,17872,17876,17893,17895,17898,17899,17977,17995,17999,18009,18036,18079,18081,18088,18109,18110,18152,18490,18521,18632,18648,18664,18683,18688,18785,18826,18877,19080,19112,19323,19556,19615,19726,19797,20063,20080,20112,20148,20150,20208,20248,20254,20293,20296,20345,21099,21103,21105,21116,21117,21118,21124,21125,21130,21146,21147,21148,21150,21153,21154,21155,21159,21165,21250,21445,21459,21538,21571,21637,21674,21687,21689,21694,21696,21697,21698,21699,21703,21704,21705,21706,21707,21708,21709,21710,21712,21718,21719,21720,21723,21725,21726,21727,21728,21729,21730,21736,21965,22081,22104,22136,22250,22331,22431,22493,22498,22501,22535,22536,22540,22542,22543,22544,22546,22551,22676,22683,22688,22720,22745,22762,22776,22783,22790,22810,22811,22861,23003,23009,23027,23072,23076]]],["+",[25,25,[[0,1,1,0,1,[[11,1,1,0,1]]],[1,2,2,1,3,[[64,1,1,1,2],[72,1,1,2,3]]],[3,1,1,3,4,[[149,1,1,3,4]]],[5,6,6,4,10,[[194,3,3,4,7],[197,2,2,7,9],[205,1,1,9,10]]],[10,1,1,10,11,[[308,1,1,10,11]]],[18,2,2,11,13,[[549,1,1,11,12],[584,1,1,12,13]]],[22,4,4,13,17,[[697,1,1,13,14],[702,1,1,14,15],[727,1,1,15,16],[741,1,1,16,17]]],[25,3,3,17,20,[[827,1,1,17,18],[828,2,2,18,20]]],[27,1,1,20,21,[[872,1,1,20,21]]],[29,1,1,21,22,[[886,1,1,21,22]]],[32,1,1,22,23,[[899,1,1,22,23]]],[33,1,1,23,24,[[902,1,1,23,24]]],[37,1,1,24,25,[[919,1,1,24,25]]]],[306,1942,2175,4771,6011,6014,6015,6109,6110,6355,9385,15008,15702,18009,18109,18648,18877,21117,21154,21155,22250,22493,22676,22720,23009]]],["Seas",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[9]]],["sea",[285,253,[[0,8,8,0,8,[[0,2,2,0,2],[8,1,1,2,3],[13,1,1,3,4],[21,1,1,4,5],[31,1,1,5,6],[40,1,1,6,7],[48,1,1,7,8]]],[1,30,21,8,29,[[59,1,1,8,9],[62,1,1,9,10],[63,17,11,10,21],[64,9,6,21,27],[69,1,1,27,28],[72,1,1,28,29]]],[3,13,13,29,42,[[127,2,2,29,31],[129,1,1,31,32],[130,1,1,32,33],[137,1,1,33,34],[149,2,2,34,36],[150,6,6,36,42]]],[4,11,9,42,51,[[153,2,2,42,44],[154,1,1,44,45],[155,2,1,45,46],[156,1,1,46,47],[163,2,2,47,49],[182,2,1,49,50],[186,1,1,50,51]]],[5,33,28,51,79,[[187,1,1,51,52],[188,1,1,52,53],[189,2,1,53,54],[190,1,1,54,55],[191,1,1,55,56],[195,1,1,56,57],[197,1,1,57,58],[198,3,1,58,59],[199,1,1,59,60],[201,8,7,60,67],[202,3,3,67,70],[203,2,2,70,72],[204,2,2,72,74],[205,2,2,74,76],[209,1,1,76,77],[210,3,2,77,79]]],[6,3,3,79,82,[[215,1,1,79,80],[217,1,1,80,81],[221,1,1,81,82]]],[8,1,1,82,83,[[248,1,1,82,83]]],[9,2,2,83,85,[[283,1,1,83,84],[288,1,1,84,85]]],[10,14,12,85,97,[[294,2,2,85,87],[295,2,1,87,88],[297,6,5,88,93],[299,2,2,93,95],[300,1,1,95,96],[308,1,1,96,97]]],[11,4,4,97,101,[[326,1,1,97,98],[328,1,1,98,99],[337,2,2,99,101]]],[12,2,2,101,103,[[353,1,1,101,102],[355,1,1,102,103]]],[13,10,10,103,113,[[368,1,1,103,104],[370,6,6,104,110],[374,2,2,110,112],[386,1,1,112,113]]],[14,1,1,113,114,[[405,1,1,113,114]]],[15,3,2,114,116,[[421,3,2,114,116]]],[16,1,1,116,117,[[435,1,1,116,117]]],[17,12,12,117,129,[[441,1,1,117,118],[442,1,1,118,119],[444,1,1,119,120],[446,1,1,120,121],[447,1,1,121,122],[449,1,1,122,123],[461,1,1,123,124],[463,1,1,124,125],[471,1,1,125,126],[473,2,2,126,128],[476,1,1,128,129]]],[18,31,30,129,159,[[485,1,1,129,130],[510,1,1,130,131],[523,1,1,131,132],[542,1,1,132,133],[543,1,1,133,134],[545,1,1,134,135],[549,1,1,135,136],[551,1,1,136,137],[554,1,1,137,138],[555,3,3,138,141],[557,1,1,141,142],[566,2,2,142,144],[570,1,1,144,145],[572,1,1,145,146],[573,1,1,146,147],[575,1,1,147,148],[581,1,1,148,149],[583,4,3,149,152],[584,1,1,152,153],[591,2,2,153,155],[613,2,2,155,157],[616,1,1,157,158],[623,1,1,158,159]]],[19,3,3,159,162,[[635,1,1,159,160],[650,1,1,160,161],[657,1,1,161,162]]],[20,2,1,162,163,[[659,2,1,162,163]]],[22,25,23,163,186,[[683,1,1,163,164],[687,1,1,164,165],[688,2,2,165,167],[689,3,3,167,170],[694,1,1,170,171],[696,1,1,171,172],[699,1,1,172,173],[701,4,3,173,176],[702,1,1,176,177],[705,1,1,177,178],[720,1,1,178,179],[721,1,1,179,180],[726,1,1,180,181],[728,1,1,181,182],[729,3,2,182,184],[735,1,1,184,185],[738,1,1,185,186]]],[23,17,16,186,202,[[749,1,1,186,187],[750,1,1,187,188],[769,1,1,188,189],[771,1,1,189,190],[775,1,1,190,191],[777,1,1,191,192],[790,1,1,192,193],[791,1,1,193,194],[792,2,1,194,195],[793,2,2,195,197],[794,1,1,197,198],[795,2,2,198,200],[796,2,2,200,202]]],[24,1,1,202,203,[[798,1,1,202,203]]],[25,21,20,203,223,[[826,1,1,203,204],[827,5,5,204,209],[828,4,4,209,213],[839,1,1,213,214],[840,1,1,214,215],[848,8,7,215,222],[849,1,1,222,223]]],[27,2,2,223,225,[[862,1,1,223,224],[865,1,1,224,225]]],[28,2,1,225,226,[[877,2,1,225,226]]],[29,4,4,226,230,[[883,1,1,226,227],[886,1,1,227,228],[887,2,2,228,230]]],[31,11,7,230,237,[[889,11,7,230,237]]],[32,2,2,237,239,[[899,2,2,237,239]]],[33,2,2,239,241,[[900,1,1,239,240],[902,1,1,240,241]]],[34,4,4,241,245,[[903,1,1,241,242],[904,1,1,242,243],[905,2,2,243,245]]],[35,3,3,245,248,[[906,1,1,245,246],[907,2,2,246,248]]],[36,1,1,248,249,[[910,1,1,248,249]]],[37,6,4,249,253,[[919,2,2,249,251],[920,2,1,251,252],[924,2,1,252,253]]]],[25,27,207,339,564,940,1244,1486,1796,1885,1891,1898,1905,1910,1911,1912,1915,1916,1917,1918,1919,1921,1924,1928,1930,1939,1941,2062,2175,4046,4055,4104,4133,4344,4768,4770,4819,4821,4822,4823,4827,4828,4899,4932,4939,4992,5053,5212,5232,5721,5841,5855,5879,5909,5933,5935,6038,6111,6133,6181,6204,6206,6207,6213,6214,6248,6249,6268,6271,6273,6284,6285,6307,6312,6332,6350,6464,6482,6483,6640,6706,6845,7490,8460,8618,8864,8873,8887,8957,8958,8959,8973,8978,9077,9078,9101,9384,9921,9980,10235,10238,10852,10898,11227,11248,11249,11250,11252,11256,11261,11363,11364,11589,12104,12520,12522,12867,12981,13020,13059,13117,13136,13192,13479,13518,13766,13801,13809,13919,14020,14373,14616,14865,14879,14922,15008,15061,15112,15126,15140,15166,15209,15335,15351,15430,15459,15476,15497,15596,15658,15660,15673,15722,15825,15827,16209,16211,16248,16347,16631,17078,17270,17322,17769,17830,17872,17876,17893,17895,17899,17977,17999,18036,18079,18081,18088,18110,18152,18490,18521,18632,18664,18683,18688,18785,18826,19080,19112,19556,19615,19726,19797,20063,20080,20112,20148,20150,20208,20248,20254,20293,20296,20345,21099,21103,21105,21116,21117,21118,21124,21130,21150,21153,21445,21459,21687,21689,21694,21696,21697,21698,21699,21730,22104,22136,22331,22431,22493,22498,22501,22535,22536,22540,22542,22543,22544,22546,22676,22683,22688,22720,22745,22762,22776,22783,22790,22810,22811,22861,23003,23009,23027,23076]]],["seas",[21,21,[[0,1,1,0,1,[[0,1,1,0,1]]],[2,2,2,1,3,[[100,2,2,1,3]]],[4,1,1,3,4,[[185,1,1,3,4]]],[15,1,1,4,5,[[421,1,1,4,5]]],[18,5,5,5,10,[[485,1,1,5,6],[501,1,1,6,7],[542,1,1,7,8],[546,1,1,8,9],[612,1,1,9,10]]],[22,1,1,10,11,[[695,1,1,10,11]]],[23,1,1,11,12,[[759,1,1,11,12]]],[25,7,7,12,19,[[828,4,4,12,16],[829,2,2,16,18],[833,1,1,18,19]]],[26,1,1,19,20,[[860,1,1,19,20]]],[31,1,1,20,21,[[890,1,1,20,21]]]],[21,3006,3007,5829,12517,14020,14243,14867,14969,16181,17995,19323,21125,21146,21147,21148,21159,21165,21250,22081,22551]]],["side",[1,1,[[3,1,1,0,1,[[118,1,1,0,1]]]],[3676]]],["west",[41,38,[[0,1,1,0,1,[[27,1,1,0,1]]],[1,3,3,1,4,[[59,1,1,1,2],[76,1,1,2,3],[87,1,1,3,4]]],[3,2,2,4,6,[[150,1,1,4,5],[151,1,1,5,6]]],[4,1,1,6,7,[[185,1,1,6,7]]],[5,4,4,7,11,[[198,1,1,7,8],[201,1,1,8,9],[204,2,2,9,11]]],[10,1,1,11,12,[[297,1,1,11,12]]],[12,1,1,12,13,[[346,1,1,12,13]]],[13,1,1,13,14,[[370,1,1,13,14]]],[22,1,1,14,15,[[689,1,1,14,15]]],[25,25,22,15,37,[[842,1,1,15,16],[843,1,1,16,17],[846,2,1,17,18],[848,2,1,18,19],[849,19,18,19,37]]],[37,1,1,37,38,[[924,1,1,37,38]]]],[787,1796,2284,2645,4822,4850,5833,6137,6214,6307,6308,8959,10639,11250,17898,21538,21571,21637,21699,21703,21704,21705,21706,21707,21708,21709,21710,21712,21718,21719,21723,21725,21726,21727,21728,21729,21736,23072]]],["western",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4822]]],["westward",[21,21,[[0,1,1,0,1,[[12,1,1,0,1]]],[1,4,4,1,5,[[75,2,2,1,3],[85,2,2,3,5]]],[3,1,1,5,6,[[119,1,1,5,6]]],[4,1,1,6,7,[[155,1,1,6,7]]],[5,9,9,7,16,[[191,1,1,7,8],[201,2,2,8,10],[202,2,2,10,12],[204,1,1,12,13],[205,2,2,13,15],[208,1,1,15,16]]],[25,4,4,16,20,[[846,1,1,16,17],[847,1,1,17,18],[849,2,2,18,20]]],[26,1,1,20,21,[[857,1,1,20,21]]]],[332,2257,2262,2593,2598,3715,5002,5935,6210,6212,6268,6273,6305,6347,6355,6433,21637,21674,21720,21723,21965]]]]},{"k":"H3221","v":[["sea",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21935,21936]]]]},{"k":"H3222","v":[["mules",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1064]]]]},{"k":"H3223","v":[["Jemuel",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]]],[1396,1670]]]]},{"k":"H3224","v":[["Jemima",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13936]]]]},{"k":"H3225","v":[["*",[139,133,[[0,7,6,0,6,[[12,1,1,0,1],[23,1,1,1,2],[47,5,4,2,6]]],[1,6,5,6,11,[[63,2,2,6,8],[64,3,2,8,10],[78,1,1,10,11]]],[2,5,5,11,16,[[96,2,2,11,13],[97,2,2,13,15],[98,1,1,15,16]]],[3,3,3,16,19,[[134,1,1,16,17],[136,1,1,17,18],[138,1,1,18,19]]],[4,6,6,19,25,[[154,1,1,19,20],[157,1,1,20,21],[169,2,2,21,23],[180,1,1,23,24],[185,1,1,24,25]]],[5,3,3,25,28,[[187,1,1,25,26],[203,1,1,26,27],[209,1,1,27,28]]],[6,7,7,28,35,[[213,3,3,28,31],[215,1,1,31,32],[217,1,1,32,33],[226,1,1,33,34],[230,1,1,34,35]]],[8,4,4,35,39,[[241,1,1,35,36],[246,1,1,36,37],[258,2,2,37,39]]],[9,5,5,39,44,[[268,2,2,39,41],[282,1,1,41,42],[286,1,1,42,43],[290,1,1,43,44]]],[10,4,4,44,48,[[292,1,1,44,45],[297,2,2,45,47],[312,1,1,47,48]]],[11,3,3,48,51,[[324,1,1,48,49],[334,1,1,49,50],[335,1,1,50,51]]],[12,1,1,51,52,[[343,1,1,51,52]]],[13,6,6,52,58,[[369,1,1,52,53],[370,3,3,53,56],[384,1,1,56,57],[400,1,1,57,58]]],[15,2,2,58,60,[[420,1,1,58,59],[424,1,1,59,60]]],[17,3,3,60,63,[[458,1,1,60,61],[465,1,1,61,62],[475,1,1,62,63]]],[18,42,39,63,102,[[493,2,2,63,65],[494,1,1,65,66],[495,1,1,66,67],[497,1,1,67,68],[498,1,1,68,69],[503,1,1,69,70],[521,1,1,70,71],[522,2,2,71,73],[525,1,1,73,74],[537,1,1,74,75],[540,1,1,75,76],[550,1,1,76,77],[551,1,1,77,78],[554,1,1,78,79],[555,1,1,79,80],[557,2,2,80,82],[566,4,4,82,86],[568,1,1,86,87],[575,1,1,87,88],[585,1,1,88,89],[586,2,2,89,91],[587,2,2,91,93],[595,3,2,93,95],[598,1,1,95,96],[614,1,1,96,97],[615,1,1,97,98],[616,1,1,98,99],[619,1,1,99,100],[621,4,2,100,102]]],[19,3,3,102,105,[[630,1,1,102,103],[631,1,1,103,104],[654,1,1,104,105]]],[20,1,1,105,106,[[668,1,1,105,106]]],[21,2,2,106,108,[[672,1,1,106,107],[678,1,1,107,108]]],[22,9,9,108,117,[[687,1,1,108,109],[719,2,2,109,111],[722,1,1,111,112],[723,1,1,112,113],[726,1,1,113,114],[732,1,1,114,115],[740,1,1,115,116],[741,1,1,116,117]]],[23,1,1,117,118,[[766,1,1,117,118]]],[24,2,2,118,120,[[798,2,2,118,120]]],[25,5,5,120,125,[[802,1,1,120,121],[811,1,1,121,122],[817,1,1,122,123],[822,1,1,123,124],[840,1,1,124,125]]],[26,1,1,125,126,[[861,1,1,125,126]]],[31,1,1,126,127,[[892,1,1,126,127]]],[34,1,1,127,128,[[904,1,1,127,128]]],[37,6,5,128,133,[[913,1,1,128,129],[914,2,2,129,131],[921,2,1,131,132],[922,1,1,132,133]]]],[327,640,1464,1465,1468,1469,1911,1918,1926,1932,2358,2911,2912,2942,2943,2974,4275,4328,4401,4965,5085,5375,5384,5625,5812,5858,6282,6466,6583,6584,6589,6649,6714,6978,7070,7343,7447,7829,7834,8068,8070,8432,8563,8697,8789,8973,8983,9499,9859,10147,10178,10493,11246,11252,11253,11254,11560,11935,12497,12655,13428,13569,13878,14100,14103,14110,14153,14188,14199,14283,14574,14601,14606,14644,14812,14847,15043,15059,15103,15167,15213,15215,15338,15339,15351,15368,15402,15491,15748,15761,15786,15787,15791,15884,15885,16086,16227,16238,16249,16290,16313,16316,16471,16517,17185,17495,17560,17643,17849,18461,18464,18553,18562,18627,18726,18862,18878,19478,20335,20336,20474,20636,20808,20966,21451,22088,22579,22764,22913,22925,22933,23045,23051]]],["+",[21,21,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,2,2,1,3,[[63,2,2,1,3]]],[4,1,1,3,4,[[185,1,1,3,4]]],[6,2,2,4,6,[[213,1,1,4,5],[230,1,1,5,6]]],[8,1,1,6,7,[[258,1,1,6,7]]],[9,1,1,7,8,[[282,1,1,7,8]]],[10,3,3,8,11,[[297,2,2,8,10],[312,1,1,10,11]]],[11,1,1,11,12,[[335,1,1,11,12]]],[13,4,4,12,16,[[369,1,1,12,13],[370,3,3,13,16]]],[18,2,2,16,18,[[493,1,1,16,17],[568,1,1,17,18]]],[25,2,2,18,20,[[811,1,1,18,19],[817,1,1,19,20]]],[37,1,1,20,21,[[914,1,1,20,21]]]],[1464,1911,1918,5812,6583,7070,7829,8432,8973,8983,9499,10178,11246,11252,11253,11254,14100,15402,20636,20808,22925]]],["hand",[90,86,[[0,5,5,0,5,[[12,1,1,0,1],[23,1,1,1,2],[47,3,3,2,5]]],[1,3,2,5,7,[[64,3,2,5,7]]],[3,2,2,7,9,[[136,1,1,7,8],[138,1,1,8,9]]],[4,5,5,9,14,[[154,1,1,9,10],[157,1,1,10,11],[169,2,2,11,13],[180,1,1,13,14]]],[5,3,3,14,17,[[187,1,1,14,15],[203,1,1,15,16],[209,1,1,16,17]]],[6,2,2,17,19,[[215,1,1,17,18],[226,1,1,18,19]]],[8,1,1,19,20,[[241,1,1,19,20]]],[10,1,1,20,21,[[292,1,1,20,21]]],[11,1,1,21,22,[[334,1,1,21,22]]],[12,1,1,22,23,[[343,1,1,22,23]]],[13,2,2,23,25,[[384,1,1,23,24],[400,1,1,24,25]]],[15,2,2,25,27,[[420,1,1,25,26],[424,1,1,26,27]]],[17,2,2,27,29,[[458,1,1,27,28],[475,1,1,28,29]]],[18,37,34,29,63,[[493,1,1,29,30],[494,1,1,30,31],[495,1,1,31,32],[497,1,1,32,33],[498,1,1,33,34],[503,1,1,34,35],[521,1,1,35,36],[522,2,2,36,38],[525,1,1,38,39],[537,1,1,39,40],[540,1,1,40,41],[551,1,1,41,42],[554,1,1,42,43],[555,1,1,43,44],[557,2,2,44,46],[566,3,3,46,49],[575,1,1,49,50],[585,1,1,50,51],[586,2,2,51,53],[587,2,2,53,55],[595,3,2,55,57],[614,1,1,57,58],[615,1,1,58,59],[616,1,1,59,60],[619,1,1,60,61],[621,4,2,61,63]]],[19,3,3,63,66,[[630,1,1,63,64],[631,1,1,64,65],[654,1,1,65,66]]],[20,1,1,66,67,[[668,1,1,66,67]]],[21,2,2,67,69,[[672,1,1,67,68],[678,1,1,68,69]]],[22,9,9,69,78,[[687,1,1,69,70],[719,2,2,70,72],[722,1,1,72,73],[723,1,1,73,74],[726,1,1,74,75],[732,1,1,75,76],[740,1,1,76,77],[741,1,1,77,78]]],[24,2,2,78,80,[[798,2,2,78,80]]],[25,1,1,80,81,[[822,1,1,80,81]]],[26,1,1,81,82,[[861,1,1,81,82]]],[31,1,1,82,83,[[892,1,1,82,83]]],[34,1,1,83,84,[[904,1,1,83,84]]],[37,2,2,84,86,[[913,1,1,84,85],[922,1,1,85,86]]]],[327,640,1464,1465,1469,1926,1932,4328,4401,4965,5085,5375,5384,5625,5858,6282,6466,6649,6978,7343,8789,10147,10493,11560,11935,12497,12655,13428,13878,14103,14110,14153,14188,14199,14283,14574,14601,14606,14644,14812,14847,15059,15103,15167,15213,15215,15339,15351,15368,15491,15748,15761,15786,15787,15791,15884,15885,16227,16238,16249,16290,16313,16316,16471,16517,17185,17495,17560,17643,17849,18461,18464,18553,18562,18627,18726,18862,18878,20335,20336,20966,22088,22579,22764,22913,23051]]],["right",[23,22,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,1,1,1,2,[[78,1,1,1,2]]],[2,5,5,2,7,[[96,2,2,2,4],[97,2,2,4,6],[98,1,1,6,7]]],[3,1,1,7,8,[[134,1,1,7,8]]],[6,3,3,8,11,[[213,2,2,8,10],[217,1,1,10,11]]],[8,1,1,11,12,[[246,1,1,11,12]]],[9,3,3,12,15,[[268,2,2,12,14],[286,1,1,14,15]]],[17,1,1,15,16,[[465,1,1,15,16]]],[18,2,2,16,18,[[550,1,1,16,17],[598,1,1,17,18]]],[23,1,1,18,19,[[766,1,1,18,19]]],[25,1,1,19,20,[[840,1,1,19,20]]],[37,3,2,20,22,[[914,1,1,20,21],[921,2,1,21,22]]]],[1468,2358,2911,2912,2942,2943,2974,4275,6584,6589,6714,7447,8068,8070,8563,13569,15043,16086,19478,21451,22933,23045]]],["side",[3,3,[[9,1,1,0,1,[[290,1,1,0,1]]],[11,1,1,1,2,[[324,1,1,1,2]]],[25,1,1,2,3,[[802,1,1,2,3]]]],[8697,9859,20474]]],["south",[2,2,[[8,1,1,0,1,[[258,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]]],[7834,15338]]]]},{"k":"H3226","v":[["Jamin",[6,6,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]],[3,1,1,2,3,[[142,1,1,2,3]]],[12,2,2,3,5,[[339,1,1,3,4],[341,1,1,4,5]]],[15,1,1,5,6,[[420,1,1,5,6]]]],[1396,1670,4501,10333,10409,12500]]]]},{"k":"H3227","v":[["hand",[1,1,[[13,1,1,0,1,[[369,1,1,0,1]]]],[11246]]]]},{"k":"H3228","v":[["Jaminites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4501]]]]},{"k":"H3229","v":[["*",[4,4,[[10,2,2,0,2,[[312,2,2,0,2]]],[13,2,2,2,4,[[384,2,2,2,4]]]],[9488,9489,11549,11550]]],["Imla",[2,2,[[13,2,2,0,2,[[384,2,2,0,2]]]],[11549,11550]]],["Imlah",[2,2,[[10,2,2,0,2,[[312,2,2,0,2]]]],[9488,9489]]]]},{"k":"H3230","v":[["Jamlech",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10419]]]]},{"k":"H3231","v":[["*",[4,4,[[0,1,1,0,1,[[12,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]],[12,1,1,2,3,[[349,1,1,2,3]]],[25,1,1,3,4,[[822,1,1,3,4]]]],[327,8375,10722,20960]]],["hand",[2,2,[[12,1,1,0,1,[[349,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[10722,20960]]],["right",[2,2,[[0,1,1,0,1,[[12,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]]],[327,8375]]]]},{"k":"H3232","v":[["*",[5,4,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,2,1,1,2,[[142,2,1,1,2]]],[12,1,1,2,3,[[344,1,1,2,3]]],[13,1,1,3,4,[[397,1,1,3,4]]]],[1403,4533,10565,11868]]],["Imnah",[2,2,[[12,1,1,0,1,[[344,1,1,0,1]]],[13,1,1,1,2,[[397,1,1,1,2]]]],[10565,11868]]],["Jimna",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4533]]],["Jimnah",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1403]]],["Jimnites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4533]]]]},{"k":"H3233","v":[["*",[32,18,[[1,3,1,0,1,[[78,3,1,0,1]]],[2,20,8,1,9,[[97,6,2,1,3],[103,14,6,3,9]]],[10,3,3,9,12,[[296,1,1,9,10],[297,2,2,10,12]]],[11,1,1,12,13,[[323,1,1,12,13]]],[13,2,2,13,15,[[370,1,1,13,14],[389,1,1,14,15]]],[25,3,3,15,18,[[805,1,1,15,16],[848,2,2,16,18]]]],[2356,2940,2941,3125,3127,3128,3136,3138,3139,8904,8955,8973,9840,11256,11666,20535,21680,21681]]],["+",[3,3,[[10,1,1,0,1,[[297,1,1,0,1]]],[11,1,1,1,2,[[323,1,1,1,2]]],[25,1,1,2,3,[[848,1,1,2,3]]]],[8955,9840,21680]]],["right",[29,15,[[1,3,1,0,1,[[78,3,1,0,1]]],[2,20,8,1,9,[[97,6,2,1,3],[103,14,6,3,9]]],[10,2,2,9,11,[[296,1,1,9,10],[297,1,1,10,11]]],[13,2,2,11,13,[[370,1,1,11,12],[389,1,1,12,13]]],[25,2,2,13,15,[[805,1,1,13,14],[848,1,1,14,15]]]],[2356,2940,2941,3125,3127,3128,3136,3138,3139,8904,8973,11256,11666,20535,21681]]]]},{"k":"H3234","v":[["Imna",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10570]]]]},{"k":"H3235","v":[["yourselves",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18849]]]]},{"k":"H3236","v":[["Imrah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10571]]]]},{"k":"H3237","v":[]},{"k":"H3238","v":[["*",[19,19,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,3,3,1,4,[[108,1,1,1,2],[114,2,2,2,4]]],[4,1,1,4,5,[[175,1,1,4,5]]],[18,1,1,5,6,[[551,1,1,5,6]]],[22,1,1,6,7,[[727,1,1,6,7]]],[23,4,4,7,11,[[766,1,1,7,8],[769,1,1,8,9],[790,1,1,9,10],[794,1,1,10,11]]],[25,7,7,11,18,[[819,3,3,11,14],[823,2,2,14,16],[846,1,1,16,17],[847,1,1,17,18]]],[35,1,1,18,19,[[908,1,1,18,19]]]],[2134,3314,3483,3486,5516,15056,18662,19457,19572,20061,20182,20856,20861,20865,20983,21005,21638,21673,22821]]],["+",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[25,1,1,1,2,[[846,1,1,1,2]]]],[3486,21638]]],["destroy",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15056]]],["oppress",[3,3,[[2,1,1,0,1,[[114,1,1,0,1]]],[4,1,1,1,2,[[175,1,1,1,2]]],[22,1,1,2,3,[[727,1,1,2,3]]]],[3483,5516,18662]]],["oppressed",[3,3,[[25,3,3,0,3,[[819,3,3,0,3]]]],[20856,20861,20865]]],["oppressing",[3,3,[[23,2,2,0,2,[[790,1,1,0,1],[794,1,1,1,2]]],[35,1,1,2,3,[[908,1,1,2,3]]]],[20061,20182,22821]]],["oppressor",[1,1,[[23,1,1,0,1,[[769,1,1,0,1]]]],[19572]]],["out",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21673]]],["vex",[2,2,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,1,1,1,2,[[108,1,1,1,2]]]],[2134,3314]]],["vexed",[2,2,[[25,2,2,0,2,[[823,2,2,0,2]]]],[20983,21005]]],["wrong",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19457]]]]},{"k":"H3239","v":[["*",[3,3,[[5,2,2,0,2,[[202,2,2,0,2]]],[11,1,1,2,3,[[327,1,1,2,3]]]],[6271,6272,9954]]],["+",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6272]]],["Janoah",[1,1,[[11,1,1,0,1,[[327,1,1,0,1]]]],[9954]]],["Janohah",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6271]]]]},{"k":"H3240","v":[]},{"k":"H3241","v":[["Janum",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6255]]]]},{"k":"H3242","v":[["*",[2,2,[[10,1,1,0,1,[[293,1,1,0,1]]],[25,1,1,1,2,[[818,1,1,1,2]]]],[8837,20829]]],["+",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8837]]],["twigs",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20829]]]]},{"k":"H3243","v":[["*",[31,29,[[0,4,4,0,4,[[20,1,1,0,1],[23,1,1,1,2],[31,1,1,2,3],[34,1,1,3,4]]],[1,3,2,4,6,[[51,3,2,4,6]]],[3,1,1,6,7,[[127,1,1,6,7]]],[4,3,3,7,10,[[184,2,2,7,9],[185,1,1,9,10]]],[8,3,3,10,13,[[236,1,1,10,11],[250,1,1,11,12],[257,1,1,12,13]]],[11,1,1,13,14,[[323,1,1,13,14]]],[13,1,1,14,15,[[388,1,1,14,15]]],[17,2,2,15,17,[[438,1,1,15,16],[455,1,1,16,17]]],[18,1,1,17,18,[[485,1,1,17,18]]],[21,1,1,18,19,[[678,1,1,18,19]]],[22,6,5,19,24,[[689,1,1,19,20],[727,1,1,20,21],[738,2,1,21,22],[744,2,2,22,24]]],[23,1,1,24,25,[[788,1,1,24,25]]],[24,3,3,25,28,[[798,1,1,25,26],[800,2,2,26,28]]],[28,1,1,28,29,[[877,1,1,28,29]]]],[520,650,943,1019,1561,1563,4036,5771,5783,5829,7235,7563,7806,9831,11655,12916,13342,14014,17641,17892,18659,18837,18933,18934,20017,20343,20423,20424,22327]]],["+",[4,3,[[0,1,1,0,1,[[20,1,1,0,1]]],[1,2,1,1,2,[[51,2,1,1,2]]],[8,1,1,2,3,[[236,1,1,2,3]]]],[520,1561,7235]]],["child",[2,2,[[3,1,1,0,1,[[127,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[4036,20424]]],["milch",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[943]]],["mothers",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18659]]],["nurse",[5,5,[[0,2,2,0,2,[[23,1,1,0,1],[34,1,1,1,2]]],[1,1,1,2,3,[[51,1,1,2,3]]],[11,1,1,3,4,[[323,1,1,3,4]]],[13,1,1,4,5,[[388,1,1,4,5]]]],[650,1019,1563,9831,11655]]],["suck",[10,9,[[4,2,2,0,2,[[184,1,1,0,1],[185,1,1,1,2]]],[17,2,2,2,4,[[438,1,1,2,3],[455,1,1,3,4]]],[22,4,3,4,7,[[738,2,1,4,5],[744,2,2,5,7]]],[24,1,1,7,8,[[800,1,1,7,8]]],[28,1,1,8,9,[[877,1,1,8,9]]]],[5771,5829,12916,13342,18837,18933,18934,20423,22327]]],["sucked",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17641]]],["sucking",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17892]]],["suckling",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]],[23,1,1,2,3,[[788,1,1,2,3]]]],[5783,7563,20017]]],["sucklings",[3,3,[[8,1,1,0,1,[[257,1,1,0,1]]],[18,1,1,1,2,[[485,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]]],[7806,14014,20343]]]]},{"k":"H3244","v":[["owl",[3,3,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[22,1,1,2,3,[[712,1,1,2,3]]]],[3014,5306,18314]]]]},{"k":"H3245","v":[["*",[43,41,[[1,1,1,0,1,[[58,1,1,0,1]]],[5,1,1,1,2,[[192,1,1,1,2]]],[10,4,4,2,6,[[295,1,1,2,3],[296,1,1,3,4],[297,1,1,4,5],[306,1,1,5,6]]],[12,1,1,6,7,[[346,1,1,6,7]]],[13,2,2,7,9,[[369,1,1,7,8],[397,1,1,8,9]]],[14,4,4,9,13,[[405,4,4,9,13]]],[16,1,1,13,14,[[426,1,1,13,14]]],[17,1,1,14,15,[[473,1,1,14,15]]],[18,10,10,15,25,[[479,1,1,15,16],[485,1,1,16,17],[501,1,1,17,18],[508,1,1,18,19],[555,1,1,19,20],[566,1,1,20,21],[579,1,1,21,22],[581,2,2,22,24],[596,1,1,24,25]]],[19,1,1,25,26,[[630,1,1,25,26]]],[21,1,1,26,27,[[675,1,1,26,27]]],[22,10,8,27,35,[[692,1,1,27,28],[701,1,1,28,29],[706,3,1,29,30],[722,1,1,30,31],[726,1,1,31,32],[729,2,2,32,34],[732,1,1,34,35]]],[29,1,1,35,36,[[887,1,1,35,36]]],[34,1,1,36,37,[[903,1,1,36,37]]],[36,1,1,37,38,[[910,1,1,37,38]]],[37,3,3,38,41,[[914,1,1,38,39],[918,1,1,39,40],[922,1,1,40,41]]]],[1760,5975,8895,8933,8944,9317,10637,11232,11861,12103,12107,12108,12109,12710,13797,13947,14014,14243,14344,15182,15337,15546,15576,15579,16050,16474,17613,17960,18090,18180,18561,18627,18686,18689,18734,22501,22743,22873,22931,22985,23046]]],["+",[4,4,[[14,2,2,0,2,[[405,2,2,0,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[36,1,1,3,4,[[910,1,1,3,4]]]],[12108,12109,15576,22873]]],["appointed",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12710]]],["counsel",[2,2,[[18,2,2,0,2,[[479,1,1,0,1],[508,1,1,1,2]]]],[13947,14344]]],["established",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[34,1,1,1,2,[[903,1,1,1,2]]]],[15182,22743]]],["foundation",[14,14,[[1,1,1,0,1,[[58,1,1,0,1]]],[5,1,1,1,2,[[192,1,1,1,2]]],[10,4,4,2,6,[[295,1,1,2,3],[296,1,1,3,4],[297,1,1,4,5],[306,1,1,5,6]]],[13,1,1,6,7,[[397,1,1,6,7]]],[14,2,2,7,9,[[405,2,2,7,9]]],[18,1,1,9,10,[[579,1,1,9,10]]],[22,2,2,10,12,[[706,1,1,10,11],[726,1,1,11,12]]],[37,2,2,12,14,[[914,1,1,12,13],[922,1,1,13,14]]]],[1760,5975,8895,8933,8944,9317,11861,12103,12107,15546,18180,18627,22931,23046]]],["foundations",[4,4,[[17,1,1,0,1,[[473,1,1,0,1]]],[22,3,3,1,4,[[729,2,2,1,3],[732,1,1,3,4]]]],[13797,18686,18689,18734]]],["founded",[8,8,[[18,4,4,0,4,[[501,1,1,0,1],[566,1,1,1,2],[581,1,1,2,3],[596,1,1,3,4]]],[19,1,1,4,5,[[630,1,1,4,5]]],[22,2,2,5,7,[[692,1,1,5,6],[701,1,1,6,7]]],[29,1,1,7,8,[[887,1,1,7,8]]]],[14243,15337,15579,16050,16474,17960,18090,22501]]],["instructed",[1,1,[[13,1,1,0,1,[[369,1,1,0,1]]]],[11232]]],["laid",[2,2,[[22,1,1,0,1,[[722,1,1,0,1]]],[37,1,1,1,2,[[918,1,1,1,2]]]],[18561,22985]]],["lay",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18180]]],["ordain",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10637]]],["ordained",[1,1,[[18,1,1,0,1,[[485,1,1,0,1]]]],[14014]]],["set",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17613]]],["sure",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18180]]]]},{"k":"H3246","v":[["began",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12182]]]]},{"k":"H3247","v":[["*",[20,20,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,8,8,1,9,[[93,5,5,1,6],[94,1,1,6,7],[97,1,1,7,8],[98,1,1,8,9]]],[13,2,2,9,11,[[389,1,1,9,10],[390,1,1,10,11]]],[17,2,2,11,13,[[439,1,1,11,12],[457,1,1,12,13]]],[18,1,1,13,14,[[614,1,1,13,14]]],[19,1,1,14,15,[[637,1,1,14,15]]],[24,1,1,15,16,[[800,1,1,15,16]]],[25,2,2,16,18,[[814,1,1,16,17],[831,1,1,17,18]]],[32,1,1,18,19,[[893,1,1,18,19]]],[34,1,1,19,20,[[905,1,1,19,20]]]],[2348,2802,2813,2820,2825,2829,2839,2932,2962,11661,11704,12949,13405,16229,16681,20431,20722,21208,22585,22781]]],["bottom",[9,9,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,8,8,1,9,[[93,5,5,1,6],[94,1,1,6,7],[97,1,1,7,8],[98,1,1,8,9]]]],[2348,2802,2813,2820,2825,2829,2839,2932,2962]]],["foundation",[7,7,[[13,1,1,0,1,[[389,1,1,0,1]]],[17,2,2,1,3,[[439,1,1,1,2],[457,1,1,2,3]]],[18,1,1,3,4,[[614,1,1,3,4]]],[19,1,1,4,5,[[637,1,1,4,5]]],[25,1,1,5,6,[[814,1,1,5,6]]],[34,1,1,6,7,[[905,1,1,6,7]]]],[11661,12949,13405,16229,16681,20722,22781]]],["foundations",[3,3,[[24,1,1,0,1,[[800,1,1,0,1]]],[25,1,1,1,2,[[831,1,1,1,2]]],[32,1,1,2,3,[[893,1,1,2,3]]]],[20431,21208,22585]]],["repairing",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11704]]]]},{"k":"H3248","v":[["foundation",[1,1,[[18,1,1,0,1,[[564,1,1,0,1]]]],[15302]]]]},{"k":"H3249","v":[["from",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19370]]]]},{"k":"H3250","v":[["instruct",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13866]]]]},{"k":"H3251","v":[["poured",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2414]]]]},{"k":"H3252","v":[["Iscah",[1,1,[[0,1,1,0,1,[[10,1,1,0,1]]]],[295]]]]},{"k":"H3253","v":[["Ismachiah",[1,1,[[13,1,1,0,1,[[397,1,1,0,1]]]],[11867]]]]},{"k":"H3254","v":[["*",[209,205,[[0,14,13,0,13,[[3,2,2,0,2],[7,4,3,2,5],[17,1,1,5,6],[24,1,1,6,7],[29,1,1,7,8],[36,2,2,8,10],[37,2,2,10,12],[43,1,1,12,13]]],[1,9,9,13,22,[[50,1,1,13,14],[54,1,1,14,15],[57,1,1,15,16],[58,2,2,16,18],[59,2,2,18,20],[60,1,1,20,21],[63,1,1,21,22]]],[2,11,11,22,33,[[94,1,1,22,23],[95,1,1,23,24],[108,1,1,24,25],[111,1,1,25,26],[115,2,2,26,28],[116,5,5,28,33]]],[3,9,9,33,42,[[121,1,1,33,34],[127,1,1,34,35],[138,4,4,35,39],[148,1,1,39,40],[152,2,2,40,42]]],[4,15,14,42,56,[[153,1,1,42,43],[155,1,1,43,44],[156,1,1,44,45],[157,2,2,45,47],[164,1,1,47,48],[165,1,1,48,49],[169,1,1,49,50],[170,1,1,50,51],[171,2,2,51,53],[172,1,1,53,54],[177,2,1,54,55],[180,1,1,55,56]]],[5,2,2,56,58,[[193,1,1,56,57],[209,1,1,57,58]]],[6,13,13,58,71,[[212,1,1,58,59],[213,1,1,59,60],[214,1,1,60,61],[218,1,1,61,62],[219,1,1,62,63],[220,2,2,63,65],[221,1,1,65,66],[223,2,2,66,68],[230,3,3,68,71]]],[7,1,1,71,72,[[232,1,1,71,72]]],[8,17,17,72,89,[[238,4,4,72,76],[242,1,1,76,77],[244,1,1,77,78],[247,1,1,78,79],[249,1,1,79,80],[250,1,1,80,81],[253,1,1,81,82],[254,2,2,82,84],[255,2,2,84,86],[258,1,1,86,87],[260,1,1,87,88],[262,1,1,88,89]]],[9,14,14,89,103,[[268,2,2,89,91],[269,3,3,91,94],[271,1,1,94,95],[273,2,2,95,97],[278,1,1,97,98],[280,1,1,98,99],[284,1,1,99,100],[285,1,1,100,101],[290,2,2,101,103]]],[10,7,7,103,110,[[292,1,1,103,104],[300,1,1,104,105],[302,2,2,105,107],[306,1,1,107,108],[309,1,1,108,109],[310,1,1,109,110]]],[11,6,6,110,116,[[318,2,2,110,112],[331,1,1,112,113],[332,1,1,113,114],[333,1,1,114,115],[336,1,1,115,116]]],[12,5,5,116,121,[[351,1,1,116,117],[354,2,2,117,119],[358,1,1,119,120],[359,1,1,120,121]]],[13,6,6,121,127,[[375,1,1,121,122],[376,2,2,122,124],[394,2,2,124,126],[399,1,1,126,127]]],[14,1,1,127,128,[[412,1,1,127,128]]],[15,1,1,128,129,[[425,1,1,128,129]]],[16,1,1,129,130,[[433,1,1,129,130]]],[17,11,11,130,141,[[452,1,1,130,131],[455,1,1,131,132],[462,1,1,132,133],[464,1,1,133,134],[469,2,2,134,136],[471,1,1,136,137],[473,1,1,137,138],[475,1,1,138,139],[476,1,1,139,140],[477,1,1,140,141]]],[18,8,8,141,149,[[487,1,1,141,142],[518,1,1,142,143],[538,1,1,143,144],[548,1,1,144,145],[554,1,1,145,146],[555,1,1,146,147],[592,1,1,147,148],[597,1,1,148,149]]],[19,14,14,149,163,[[628,1,1,149,150],[630,1,1,150,151],[636,2,2,151,153],[637,2,2,153,155],[638,1,1,155,156],[643,2,2,156,158],[646,2,2,158,160],[650,2,2,160,162],[657,1,1,162,163]]],[20,5,4,163,167,[[659,3,2,163,165],[660,1,1,165,166],[661,1,1,166,167]]],[22,18,17,167,184,[[679,2,2,167,169],[685,1,1,169,170],[686,1,1,170,171],[688,1,1,171,172],[689,1,1,172,173],[693,1,1,173,174],[702,1,1,174,175],[704,2,1,175,176],[707,2,2,176,178],[715,1,1,178,179],[716,1,1,179,180],[725,2,2,180,182],[729,1,1,182,183],[730,1,1,183,184]]],[23,3,3,184,187,[[775,1,1,184,185],[780,1,1,185,186],[789,1,1,186,187]]],[24,3,3,187,190,[[800,3,3,187,190]]],[25,3,3,190,193,[[806,1,1,190,191],[824,1,1,191,192],[837,1,1,192,193]]],[26,1,1,193,194,[[859,1,1,193,194]]],[27,3,3,194,197,[[862,1,1,194,195],[870,1,1,195,196],[874,1,1,196,197]]],[28,1,1,197,198,[[877,1,1,197,198]]],[29,4,4,198,202,[[883,1,1,198,199],[885,2,2,199,201],[886,1,1,201,202]]],[31,1,1,202,203,[[890,1,1,202,203]]],[33,1,1,203,204,[[900,1,1,203,204]]],[35,1,1,204,205,[[908,1,1,204,205]]]],[81,91,193,195,204,453,659,854,1088,1091,1124,1145,1347,1542,1639,1739,1770,1776,1805,1806,1812,1902,2846,2854,3306,3383,3542,3545,3583,3585,3589,3597,3601,3799,4049,4390,4394,4400,4401,4733,4882,4883,4903,5001,5006,5075,5078,5272,5283,5380,5400,5415,5426,5435,5550,5679,5988,6473,6566,6580,6600,6747,6791,6817,6824,6843,6885,6905,7076,7077,7082,7144,7282,7284,7293,7297,7365,7399,7479,7552,7595,7705,7714,7727,7743,7747,7814,7883,7934,8071,8077,8090,8115,8116,8154,8190,8200,8294,8366,8500,8524,8693,8695,8793,9086,9162,9165,9316,9389,9418,9697,9705,10091,10104,10127,10209,10787,10872,10881,10937,10978,11370,11406,11409,11777,11786,11916,12262,12689,12820,13269,13335,13482,13533,13715,13720,13737,13804,13869,13896,13932,14059,14550,14825,14990,15100,15130,15844,16077,16405,16457,16647,16649,16678,16683,16712,16861,16863,16929,16944,17072,17079,17257,17331,17333,17342,17373,17659,17667,17792,17812,17870,17895,17969,18115,18145,18207,18212,18383,18395,18600,18604,18695,18697,19703,19874,20043,20435,20436,20442,20562,21021,21371,22033,22100,22223,22268,22313,22425,22472,22477,22483,22552,22699,22831]]],["+",[22,22,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,4,4,1,5,[[155,1,1,1,2],[157,2,2,2,4],[170,1,1,4,5]]],[6,1,1,5,6,[[221,1,1,5,6]]],[8,1,1,6,7,[[242,1,1,6,7]]],[9,1,1,7,8,[[273,1,1,7,8]]],[10,1,1,8,9,[[300,1,1,8,9]]],[11,1,1,9,10,[[318,1,1,9,10]]],[12,1,1,10,11,[[354,1,1,10,11]]],[13,1,1,11,12,[[375,1,1,11,12]]],[14,1,1,12,13,[[412,1,1,12,13]]],[17,2,2,13,15,[[452,1,1,13,14],[475,1,1,14,15]]],[18,3,3,15,18,[[487,1,1,15,16],[554,1,1,16,17],[592,1,1,17,18]]],[25,1,1,18,19,[[824,1,1,18,19]]],[27,1,1,19,20,[[862,1,1,19,20]]],[33,1,1,20,21,[[900,1,1,20,21]]],[35,1,1,21,22,[[908,1,1,21,22]]]],[3545,5001,5075,5078,5400,6843,7365,8200,9086,9697,10881,11370,12262,13269,13869,14059,15100,15844,21021,22100,22699,22831]]],["Add",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17257]]],["Moreover",[2,2,[[17,2,2,0,2,[[462,1,1,0,1],[464,1,1,1,2]]]],[13482,13533]]],["add",[21,21,[[0,1,1,0,1,[[29,1,1,0,1]]],[2,7,7,1,8,[[94,1,1,1,2],[95,1,1,2,3],[116,5,5,3,8]]],[3,1,1,8,9,[[121,1,1,8,9]]],[4,3,3,9,12,[[156,1,1,9,10],[164,1,1,10,11],[171,1,1,11,12]]],[9,1,1,12,13,[[290,1,1,12,13]]],[10,2,2,13,15,[[302,2,2,13,15]]],[11,1,1,15,16,[[332,1,1,15,16]]],[12,1,1,16,17,[[359,1,1,16,17]]],[13,2,2,17,19,[[376,1,1,17,18],[394,1,1,18,19]]],[19,1,1,19,20,[[630,1,1,19,20]]],[22,1,1,20,21,[[716,1,1,20,21]]]],[854,2846,2854,3583,3585,3589,3597,3601,3799,5006,5272,5415,8695,9162,9165,10104,10978,11409,11777,16457,18395]]],["added",[3,3,[[8,1,1,0,1,[[247,1,1,0,1]]],[23,2,2,1,3,[[780,1,1,1,2],[789,1,1,2,3]]]],[7479,19874,20043]]],["addeth",[3,3,[[17,1,1,0,1,[[469,1,1,0,1]]],[19,2,2,1,3,[[637,1,1,1,2],[643,1,1,2,3]]]],[13720,16678,16863]]],["again",[50,49,[[0,8,7,0,7,[[3,1,1,0,1],[7,4,3,1,4],[17,1,1,4,5],[24,1,1,5,6],[37,1,1,6,7]]],[1,1,1,7,8,[[59,1,1,7,8]]],[3,3,3,8,11,[[138,2,2,8,10],[148,1,1,10,11]]],[6,8,8,11,19,[[213,1,1,11,12],[214,1,1,12,13],[219,1,1,13,14],[220,1,1,14,15],[223,1,1,15,16],[230,3,3,16,19]]],[8,9,9,19,28,[[238,3,3,19,22],[244,1,1,22,23],[254,2,2,23,25],[255,1,1,25,26],[258,1,1,26,27],[262,1,1,27,28]]],[9,5,5,28,33,[[268,1,1,28,29],[269,1,1,29,30],[271,1,1,30,31],[284,1,1,31,32],[290,1,1,32,33]]],[11,2,2,33,35,[[331,1,1,33,34],[336,1,1,34,35]]],[12,1,1,35,36,[[351,1,1,35,36]]],[16,1,1,36,37,[[433,1,1,36,37]]],[19,1,1,37,38,[[646,1,1,37,38]]],[22,6,6,38,44,[[685,1,1,38,39],[686,1,1,39,40],[688,1,1,40,41],[689,1,1,41,42],[702,1,1,42,43],[715,1,1,43,44]]],[26,1,1,44,45,[[859,1,1,44,45]]],[29,3,3,45,48,[[885,2,2,45,47],[886,1,1,47,48]]],[31,1,1,48,49,[[890,1,1,48,49]]]],[81,193,195,204,453,659,1145,1806,4390,4400,4733,6580,6600,6791,6817,6885,7076,7077,7082,7282,7284,7297,7399,7714,7727,7747,7814,7934,8071,8115,8154,8500,8693,10091,10209,10787,12820,16944,17792,17812,17870,17895,18115,18383,22033,22472,22477,22483,22552]]],["any",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8366]]],["cease",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4049]]],["conceived",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1124]]],["do",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13715]]],["done",[1,1,[[18,1,1,0,1,[[597,1,1,0,1]]]],[16077]]],["exceed",[2,1,[[4,2,1,0,1,[[177,2,1,0,1]]]],[5550]]],["further",[3,3,[[3,1,1,0,1,[[138,1,1,0,1]]],[4,1,1,1,2,[[172,1,1,1,2]]],[17,1,1,2,3,[[473,1,1,2,3]]]],[4401,5435,13804]]],["gave",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13932]]],["given",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8294]]],["henceforth",[5,5,[[0,1,1,0,1,[[3,1,1,0,1]]],[4,2,2,1,3,[[169,1,1,1,2],[171,1,1,2,3]]],[6,1,1,3,4,[[212,1,1,3,4]]],[22,1,1,4,5,[[730,1,1,4,5]]]],[91,5380,5426,6566,18697]]],["increase",[4,4,[[19,2,2,0,2,[[628,1,1,0,1],[636,1,1,1,2]]],[22,1,1,2,3,[[707,1,1,2,3]]],[25,1,1,3,4,[[806,1,1,3,4]]]],[16405,16647,18212,20562]]],["increased",[3,2,[[19,1,1,0,1,[[636,1,1,0,1]]],[22,2,1,1,2,[[704,2,1,1,2]]]],[16649,18145]]],["increaseth",[5,4,[[19,3,3,0,3,[[638,1,1,0,1],[643,1,1,1,2],[650,1,1,2,3]]],[20,2,1,3,4,[[659,2,1,3,4]]]],[16712,16861,17072,17333]]],["join",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1542]]],["longer",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1770]]],["maketh",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16929]]],["more",[65,65,[[0,3,3,0,3,[[36,2,2,0,2],[43,1,1,2,3]]],[1,6,6,3,9,[[54,1,1,3,4],[57,1,1,4,5],[58,1,1,5,6],[59,1,1,6,7],[60,1,1,7,8],[63,1,1,8,9]]],[2,1,1,9,10,[[115,1,1,9,10]]],[3,1,1,10,11,[[138,1,1,10,11]]],[4,3,3,11,14,[[153,1,1,11,12],[165,1,1,12,13],[180,1,1,13,14]]],[5,2,2,14,16,[[193,1,1,14,15],[209,1,1,15,16]]],[6,3,3,16,19,[[218,1,1,16,17],[220,1,1,17,18],[223,1,1,18,19]]],[7,1,1,19,20,[[232,1,1,19,20]]],[8,6,6,20,26,[[238,1,1,20,21],[249,1,1,21,22],[250,1,1,22,23],[253,1,1,23,24],[255,1,1,24,25],[260,1,1,25,26]]],[9,5,5,26,31,[[268,1,1,26,27],[269,2,2,27,29],[273,1,1,29,30],[285,1,1,30,31]]],[10,4,4,31,35,[[292,1,1,31,32],[306,1,1,32,33],[309,1,1,33,34],[310,1,1,34,35]]],[11,2,2,35,37,[[318,1,1,35,36],[333,1,1,36,37]]],[12,2,2,37,39,[[354,1,1,37,38],[358,1,1,38,39]]],[13,3,3,39,42,[[376,1,1,39,40],[394,1,1,40,41],[399,1,1,41,42]]],[15,1,1,42,43,[[425,1,1,42,43]]],[17,2,2,43,45,[[455,1,1,43,44],[476,1,1,44,45]]],[18,3,3,45,48,[[518,1,1,45,46],[548,1,1,46,47],[555,1,1,47,48]]],[20,2,2,48,50,[[659,1,1,48,49],[660,1,1,49,50]]],[22,6,6,50,56,[[679,2,2,50,52],[693,1,1,52,53],[725,2,2,53,55],[729,1,1,55,56]]],[23,1,1,56,57,[[775,1,1,56,57]]],[24,3,3,57,60,[[800,3,3,57,60]]],[25,1,1,60,61,[[837,1,1,60,61]]],[27,2,2,61,63,[[870,1,1,61,62],[874,1,1,62,63]]],[28,1,1,63,64,[[877,1,1,63,64]]],[29,1,1,64,65,[[883,1,1,64,65]]]],[1088,1091,1347,1639,1739,1776,1805,1812,1902,3542,4394,4903,5283,5679,5988,6473,6747,6824,6905,7144,7293,7552,7595,7705,7743,7883,8077,8090,8116,8190,8524,8793,9316,9389,9418,9705,10127,10872,10937,11406,11786,11916,12689,13335,13896,14550,14990,15130,17331,17342,17659,17667,17969,18600,18604,18695,19703,20435,20436,20442,21371,22223,22268,22313,22425]]],["proceed",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18207]]],["proceeded",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13737]]],["prolong",[1,1,[[18,1,1,0,1,[[538,1,1,0,1]]]],[14825]]],["prolongeth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16683]]],["put",[4,4,[[2,1,1,0,1,[[111,1,1,0,1]]],[3,2,2,1,3,[[152,2,2,1,3]]],[20,1,1,3,4,[[661,1,1,3,4]]]],[3383,4882,4883,17373]]],["yet",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17079]]],["yield",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3306]]]]},{"k":"H3255","v":[["added",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21873]]]]},{"k":"H3256","v":[["*",[43,38,[[2,3,3,0,3,[[115,3,3,0,3]]],[4,5,4,3,7,[[156,1,1,3,4],[160,2,1,4,5],[173,1,1,5,6],[174,1,1,6,7]]],[10,4,2,7,9,[[302,4,2,7,9]]],[12,1,1,9,10,[[352,1,1,9,10]]],[13,2,2,10,12,[[376,2,2,10,12]]],[17,1,1,12,13,[[439,1,1,12,13]]],[18,9,8,13,21,[[479,1,1,13,14],[483,1,1,14,15],[493,1,1,15,16],[515,1,1,16,17],[516,1,1,17,18],[571,2,2,18,20],[595,2,1,20,21]]],[19,5,5,21,26,[[636,1,1,21,22],[646,1,1,22,23],[656,2,2,23,25],[658,1,1,25,26]]],[22,2,2,26,28,[[686,1,1,26,27],[706,1,1,27,28]]],[23,7,6,28,34,[[746,1,1,28,29],[750,1,1,29,30],[754,1,1,30,31],[774,1,1,31,32],[775,2,1,32,33],[790,1,1,33,34]]],[25,1,1,34,35,[[824,1,1,34,35]]],[27,3,3,35,38,[[868,2,2,35,37],[871,1,1,37,38]]]],[3542,3547,3552,5040,5142,5465,5488,9162,9165,10813,11406,11409,12933,13955,13986,14099,14491,14523,15441,15443,15887,16645,16943,17241,17243,17285,17818,18190,18984,19097,19225,19678,19709,20073,21055,22190,22193,22235]]],["+",[3,2,[[4,1,1,0,1,[[160,1,1,0,1]]],[18,2,1,1,2,[[595,2,1,1,2]]]],[5142,15887]]],["Chasten",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16943]]],["Correct",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17241]]],["bound",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22193]]],["chasten",[2,2,[[18,2,2,0,2,[[483,1,1,0,1],[515,1,1,1,2]]]],[13986,14491]]],["chastened",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5465]]],["chastenest",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15443]]],["chasteneth",[1,1,[[4,1,1,0,1,[[160,1,1,0,1]]]],[5142]]],["chastise",[6,6,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[174,1,1,1,2]]],[10,2,2,2,4,[[302,2,2,2,4]]],[27,2,2,4,6,[[868,1,1,4,5],[871,1,1,5,6]]]],[3552,5488,9162,9165,22190,22235]]],["chastised",[6,5,[[10,2,2,0,2,[[302,2,2,0,2]]],[13,2,2,2,4,[[376,2,2,2,4]]],[23,2,1,4,5,[[775,2,1,4,5]]]],[9162,9165,11406,11409,19709]]],["chastiseth",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15441]]],["correct",[5,5,[[18,1,1,0,1,[[516,1,1,0,1]]],[23,4,4,1,5,[[746,1,1,1,2],[754,1,1,2,3],[774,1,1,3,4],[790,1,1,4,5]]]],[14523,18984,19225,19678,20073]]],["corrected",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17243]]],["instruct",[3,3,[[4,1,1,0,1,[[156,1,1,0,1]]],[18,1,1,1,2,[[493,1,1,1,2]]],[22,1,1,2,3,[[706,1,1,2,3]]]],[5040,14099,18190]]],["instructed",[5,5,[[12,1,1,0,1,[[352,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]],[18,1,1,2,3,[[479,1,1,2,3]]],[22,1,1,3,4,[[686,1,1,3,4]]],[23,1,1,4,5,[[750,1,1,4,5]]]],[10813,12933,13955,17818,19097]]],["punish",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3542]]],["reformed",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3547]]],["reproveth",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16645]]],["taught",[2,2,[[19,1,1,0,1,[[658,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[17285,21055]]]]},{"k":"H3257","v":[["shovels",[9,9,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]],[10,2,2,3,5,[[297,2,2,3,5]]],[11,1,1,5,6,[[337,1,1,5,6]]],[13,2,2,6,8,[[370,2,2,6,8]]],[23,1,1,8,9,[[796,1,1,8,9]]]],[2275,2636,3757,8974,8979,10236,11257,11262,20294]]]]},{"k":"H3258","v":[["Jabez",[4,3,[[12,4,3,0,3,[[339,1,1,0,1],[341,3,2,1,3]]]],[10361,10394,10395]]]]},{"k":"H3259","v":[["*",[29,29,[[1,7,7,0,7,[[70,2,2,0,2],[74,1,1,2,3],[78,2,2,3,5],[79,2,2,5,7]]],[3,6,6,7,13,[[126,2,2,7,9],[130,1,1,9,10],[132,1,1,10,11],[133,1,1,11,12],[143,1,1,12,13]]],[5,1,1,13,14,[[197,1,1,13,14]]],[9,1,1,14,15,[[286,1,1,14,15]]],[10,1,1,15,16,[[298,1,1,15,16]]],[13,1,1,16,17,[[371,1,1,16,17]]],[15,2,2,17,19,[[418,2,2,17,19]]],[17,2,2,19,21,[[437,1,1,19,20],[444,1,1,20,21]]],[18,1,1,21,22,[[525,1,1,21,22]]],[23,4,4,22,26,[[768,1,1,22,23],[791,1,1,23,24],[793,1,1,24,25],[794,1,1,25,26]]],[25,1,1,26,27,[[822,1,1,26,27]]],[29,1,1,27,28,[[881,1,1,27,28]]],[32,1,1,28,29,[[898,1,1,28,29]]]],[2085,2086,2217,2378,2379,2388,2418,3991,3992,4143,4205,4248,4557,6112,8559,8990,11274,12403,12411,12902,13070,14638,19525,20080,20146,20210,20960,22398,22657]]],["+",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2085]]],["agreed",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22398]]],["appoint",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20146]]],["appointed",[3,3,[[9,1,1,0,1,[[286,1,1,0,1]]],[23,1,1,1,2,[[791,1,1,1,2]]],[32,1,1,2,3,[[898,1,1,2,3]]]],[8559,20080,22657]]],["appointment",[1,1,[[17,1,1,0,1,[[437,1,1,0,1]]]],[12902]]],["assembled",[3,3,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[371,1,1,1,2]]],[18,1,1,2,3,[[525,1,1,2,3]]]],[8990,11274,14638]]],["betrothed",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2086]]],["meet",[7,7,[[1,5,5,0,5,[[74,1,1,0,1],[78,2,2,1,3],[79,2,2,3,5]]],[3,1,1,5,6,[[133,1,1,5,6]]],[15,1,1,6,7,[[418,1,1,6,7]]]],[2217,2378,2379,2388,2418,4248,12403]]],["set",[2,2,[[23,1,1,0,1,[[768,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[19525,20960]]],["themselves",[2,2,[[3,2,2,0,2,[[126,2,2,0,2]]]],[3991,3992]]],["time",[2,2,[[17,1,1,0,1,[[444,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]]],[13070,20210]]],["together",[5,5,[[3,3,3,0,3,[[130,1,1,0,1],[132,1,1,1,2],[143,1,1,2,3]]],[5,1,1,3,4,[[197,1,1,3,4]]],[15,1,1,4,5,[[418,1,1,4,5]]]],[4143,4205,4557,6112,12411]]]]},{"k":"H3260","v":[["Iddo",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11393]]]]},{"k":"H3261","v":[["away",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18181]]]]},{"k":"H3262","v":[["Jeuel",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10621]]]]},{"k":"H3263","v":[["Jeuz",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10585]]]]},{"k":"H3264","v":[]},{"k":"H3265","v":[["Jair",[1,1,[[12,1,1,0,1,[[357,1,1,0,1]]]],[10931]]]]},{"k":"H3266","v":[["*",[9,9,[[0,3,3,0,3,[[35,3,3,0,3]]],[12,5,5,3,8,[[338,1,1,3,4],[344,1,1,4,5],[345,1,1,5,6],[360,2,2,6,8]]],[13,1,1,8,9,[[377,1,1,8,9]]]],[1045,1054,1058,10287,10545,10614,10993,10994,11433]]],["Jehush",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10614]]],["Jeush",[8,8,[[0,3,3,0,3,[[35,3,3,0,3]]],[12,4,4,3,7,[[338,1,1,3,4],[344,1,1,4,5],[360,2,2,5,7]]],[13,1,1,7,8,[[377,1,1,7,8]]]],[1045,1054,1058,10287,10545,10993,10994,11433]]]]},{"k":"H3267","v":[["fierce",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18298]]]]},{"k":"H3268","v":[["Jaaziel",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10809]]]]},{"k":"H3269","v":[["Jaaziah",[2,2,[[12,2,2,0,2,[[361,2,2,0,2]]]],[11041,11042]]]]},{"k":"H3270","v":[["*",[13,12,[[3,4,4,0,4,[[137,1,1,0,1],[148,3,3,1,4]]],[5,2,2,4,6,[[199,1,1,4,5],[207,1,1,5,6]]],[9,1,1,6,7,[[290,1,1,6,7]]],[12,2,2,7,9,[[343,1,1,7,8],[363,1,1,8,9]]],[22,2,2,9,11,[[694,2,2,9,11]]],[23,2,1,11,12,[[792,2,1,11,12]]]],[4372,4719,4721,4753,6179,6420,8697,10535,11108,17977,17978,20112]]],["Jaazer",[2,2,[[3,2,2,0,2,[[137,1,1,0,1],[148,1,1,1,2]]]],[4372,4753]]],["Jazer",[11,10,[[3,2,2,0,2,[[148,2,2,0,2]]],[5,2,2,2,4,[[199,1,1,2,3],[207,1,1,3,4]]],[9,1,1,4,5,[[290,1,1,4,5]]],[12,2,2,5,7,[[343,1,1,5,6],[363,1,1,6,7]]],[22,2,2,7,9,[[694,2,2,7,9]]],[23,2,1,9,10,[[792,2,1,9,10]]]],[4719,4721,6179,6420,8697,10535,11108,17977,17978,20112]]]]},{"k":"H3271","v":[["covered",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18853]]]]},{"k":"H3272","v":[["*",[3,3,[[14,2,2,0,2,[[409,2,2,0,2]]],[26,1,1,2,3,[[855,1,1,2,3]]]],[12187,12188,21912]]],["counsellors",[2,2,[[14,2,2,0,2,[[409,2,2,0,2]]]],[12187,12188]]],["together",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21912]]]]},{"k":"H3273","v":[["*",[13,12,[[12,7,6,0,6,[[342,1,1,0,1],[346,1,1,1,2],[348,1,1,2,3],[352,2,2,3,5],[353,2,1,5,6]]],[13,4,4,6,10,[[386,1,1,6,7],[392,1,1,7,8],[395,1,1,8,9],[401,1,1,9,10]]],[14,2,2,10,12,[[410,1,1,10,11],[412,1,1,11,12]]]],[10435,10650,10717,10809,10812,10825,11601,11743,11804,11975,12214,12295]]],["Jehiel",[2,2,[[12,2,2,0,2,[[346,1,1,0,1],[348,1,1,1,2]]]],[10650,10717]]],["Jeiel",[11,10,[[12,5,4,0,4,[[342,1,1,0,1],[352,2,2,1,3],[353,2,1,3,4]]],[13,4,4,4,8,[[386,1,1,4,5],[392,1,1,5,6],[395,1,1,6,7],[401,1,1,7,8]]],[14,2,2,8,10,[[410,1,1,8,9],[412,1,1,9,10]]]],[10435,10809,10812,10825,11601,11743,11804,11975,12214,12295]]]]},{"k":"H3274","v":[]},{"k":"H3275","v":[["Jachan",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10441]]]]},{"k":"H3276","v":[["*",[23,21,[[8,1,1,0,1,[[247,1,1,0,1]]],[17,4,4,1,5,[[450,1,1,1,2],[456,1,1,2,3],[465,1,1,3,4],[470,1,1,4,5]]],[19,2,2,5,7,[[637,1,1,5,6],[638,1,1,6,7]]],[22,8,7,7,14,[[708,3,2,7,9],[722,2,2,9,11],[725,1,1,11,12],[726,1,1,12,13],[735,1,1,13,14]]],[23,7,6,14,20,[[746,2,2,14,16],[751,1,1,16,17],[756,1,1,17,18],[760,1,1,18,19],[767,2,1,19,20]]],[34,1,1,20,21,[[904,1,1,20,21]]]],[7481,13206,13370,13570,13723,16658,16692,18222,18223,18542,18543,18611,18631,18777,18973,18976,19127,19262,19355,19516,22766]]],["+",[2,1,[[23,2,1,0,1,[[767,2,1,0,1]]]],[19516]]],["forward",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13570]]],["good",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13206]]],["profit",[17,16,[[8,1,1,0,1,[[247,1,1,0,1]]],[17,2,2,1,3,[[456,1,1,1,2],[470,1,1,2,3]]],[19,2,2,3,5,[[637,1,1,3,4],[638,1,1,4,5]]],[22,7,6,5,11,[[708,3,2,5,7],[722,1,1,7,8],[725,1,1,8,9],[726,1,1,9,10],[735,1,1,10,11]]],[23,5,5,11,16,[[746,2,2,11,13],[751,1,1,13,14],[756,1,1,14,15],[760,1,1,15,16]]]],[7481,13370,13723,16658,16692,18222,18223,18542,18611,18631,18777,18973,18976,19127,19262,19355]]],["profitable",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18543]]],["profiteth",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22766]]]]},{"k":"H3277","v":[["goats",[3,3,[[8,1,1,0,1,[[259,1,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]]],[7841,13835,15589]]]]},{"k":"H3278","v":[["Jael",[6,6,[[6,6,6,0,6,[[214,4,4,0,4],[215,2,2,4,6]]]],[6616,6617,6620,6621,6629,6647]]]]},{"k":"H3279","v":[["*",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12083,12478]]],["Jaala",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12478]]],["Jaalah",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12083]]]]},{"k":"H3280","v":[["roe",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16536]]]]},{"k":"H3281","v":[["Jaalam",[4,4,[[0,3,3,0,3,[[35,3,3,0,3]]],[12,1,1,3,4,[[338,1,1,3,4]]]],[1045,1054,1058,10287]]]]},{"k":"H3282","v":[["*",[96,91,[[0,1,1,0,1,[[21,1,1,0,1]]],[2,2,1,1,2,[[115,2,1,1,2]]],[3,2,2,2,4,[[127,1,1,2,3],[136,1,1,3,4]]],[4,1,1,4,5,[[153,1,1,4,5]]],[5,1,1,5,6,[[200,1,1,5,6]]],[6,1,1,6,7,[[212,1,1,6,7]]],[8,2,2,7,9,[[250,1,1,7,8],[265,1,1,8,9]]],[10,14,14,9,23,[[293,1,1,9,10],[298,1,1,10,11],[301,2,2,11,13],[303,1,1,13,14],[304,3,3,14,17],[306,1,1,17,18],[310,3,3,18,21],[311,2,2,21,23]]],[11,6,6,23,29,[[313,1,1,23,24],[322,1,1,24,25],[331,1,1,25,26],[333,2,2,26,28],[334,1,1,28,29]]],[13,2,2,29,31,[[367,1,1,29,30],[400,1,1,30,31]]],[18,1,1,31,32,[[586,1,1,31,32]]],[19,1,1,32,33,[[628,1,1,32,33]]],[22,9,9,33,42,[[681,1,1,33,34],[685,1,1,34,35],[686,1,1,35,36],[707,1,1,36,37],[708,1,1,37,38],[715,1,1,38,39],[739,1,1,39,40],[743,1,1,40,41],[744,1,1,41,42]]],[23,9,9,42,51,[[749,1,1,42,43],[751,1,1,43,44],[763,1,1,44,45],[767,1,1,45,46],[769,1,1,46,47],[773,2,2,47,49],[779,1,1,49,50],[792,1,1,50,51]]],[25,40,37,51,88,[[806,3,3,51,54],[813,1,1,54,55],[814,4,3,55,58],[816,1,1,58,59],[817,2,2,59,61],[821,2,2,61,63],[822,3,2,63,65],[823,1,1,65,66],[824,1,1,66,67],[825,1,1,67,68],[826,5,5,68,73],[827,1,1,73,74],[829,2,2,74,76],[830,2,2,76,78],[832,1,1,78,79],[835,2,2,79,81],[836,2,2,81,83],[837,5,4,83,87],[845,1,1,87,88]]],[27,1,1,88,89,[[869,1,1,88,89]]],[29,1,1,89,90,[[883,1,1,89,90]]],[36,2,1,90,91,[[909,2,1,90,91]]]],[563,3567,4044,4323,4928,6201,6565,7583,8000,8827,9003,9119,9141,9205,9225,9231,9233,9285,9436,9444,9450,9471,9480,9549,9823,10089,10130,10134,10164,11205,11960,15771,16424,17723,17787,17813,18206,18229,18381,18844,18909,18926,19072,19132,19411,19522,19542,19658,19660,19840,20087,20553,20555,20557,20692,20716,20718,20730,20762,20798,20805,20911,20919,20948,20968,20995,21042,21069,21086,21089,21091,21095,21098,21102,21159,21163,21189,21192,21240,21321,21334,21349,21354,21361,21362,21365,21372,21611,22195,22434,22849]]],["+",[33,32,[[0,1,1,0,1,[[21,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[8,1,1,2,3,[[265,1,1,2,3]]],[10,9,9,3,12,[[293,1,1,3,4],[298,1,1,4,5],[303,1,1,5,6],[304,2,2,6,8],[306,1,1,8,9],[310,2,2,9,11],[311,1,1,11,12]]],[11,4,4,12,16,[[313,1,1,12,13],[322,1,1,13,14],[333,2,2,14,16]]],[13,1,1,16,17,[[367,1,1,16,17]]],[22,4,4,17,21,[[681,1,1,17,18],[685,1,1,18,19],[686,1,1,19,20],[707,1,1,20,21]]],[23,4,4,21,25,[[763,1,1,21,22],[769,1,1,22,23],[773,2,2,23,25]]],[25,7,6,25,31,[[813,1,1,25,26],[817,1,1,26,27],[827,1,1,27,28],[832,1,1,28,29],[837,2,1,29,30],[845,1,1,30,31]]],[36,1,1,31,32,[[909,1,1,31,32]]]],[563,4928,8000,8827,9003,9205,9225,9233,9285,9436,9444,9480,9549,9823,10130,10134,11205,17723,17787,17813,18206,19411,19542,19658,19660,20692,20805,21102,21240,21362,21611,22849]]],["Because",[35,35,[[3,1,1,0,1,[[136,1,1,0,1]]],[6,1,1,1,2,[[212,1,1,1,2]]],[8,1,1,2,3,[[250,1,1,2,3]]],[10,2,2,3,5,[[301,1,1,3,4],[310,1,1,4,5]]],[11,2,2,5,7,[[331,1,1,5,6],[334,1,1,6,7]]],[13,1,1,7,8,[[400,1,1,7,8]]],[18,1,1,8,9,[[586,1,1,8,9]]],[19,1,1,9,10,[[628,1,1,9,10]]],[22,2,2,10,12,[[708,1,1,10,11],[715,1,1,11,12]]],[23,2,2,12,14,[[749,1,1,12,13],[767,1,1,13,14]]],[25,20,20,14,34,[[806,1,1,14,15],[814,3,3,15,18],[817,1,1,18,19],[821,2,2,19,21],[822,1,1,21,22],[823,1,1,22,23],[824,1,1,23,24],[826,3,3,24,27],[829,2,2,27,29],[835,1,1,29,30],[836,2,2,30,32],[837,2,2,32,34]]],[36,1,1,34,35,[[909,1,1,34,35]]]],[4323,6565,7583,9141,9450,10089,10164,11960,15771,16424,18229,18381,19072,19522,20553,20716,20718,20730,20798,20911,20919,20968,20995,21042,21086,21089,21098,21159,21163,21334,21349,21354,21361,21372,22849]]],["Forasmuch",[2,2,[[10,1,1,0,1,[[301,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[9119,22434]]],["because",[22,21,[[2,2,1,0,1,[[115,2,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[5,1,1,2,3,[[200,1,1,2,3]]],[10,2,2,3,5,[[304,1,1,3,4],[311,1,1,4,5]]],[22,3,3,5,8,[[739,1,1,5,6],[743,1,1,6,7],[744,1,1,7,8]]],[23,3,3,8,11,[[751,1,1,8,9],[779,1,1,9,10],[792,1,1,10,11]]],[25,9,9,11,20,[[806,1,1,11,12],[814,1,1,12,13],[816,1,1,13,14],[822,1,1,14,15],[825,1,1,15,16],[830,2,2,16,18],[835,1,1,18,19],[837,1,1,19,20]]],[27,1,1,20,21,[[869,1,1,20,21]]]],[3567,4044,6201,9231,9471,18844,18909,18926,19132,19840,20087,20557,20718,20762,20968,21069,21189,21192,21321,21365,22195]]],["of",[1,1,[[25,1,1,0,1,[[806,1,1,0,1]]]],[20555]]],["that",[2,2,[[25,2,2,0,2,[[826,2,2,0,2]]]],[21091,21095]]],["then",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20948]]]]},{"k":"H3283","v":[["*",[3,3,[[23,2,2,0,2,[[773,1,1,0,1],[779,1,1,1,2]]],[24,1,1,2,3,[[800,1,1,2,3]]]],[19666,19841,20423]]],["+",[2,2,[[23,2,2,0,2,[[773,1,1,0,1],[779,1,1,1,2]]]],[19666,19841]]],["ostriches",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20423]]]]},{"k":"H3284","v":[["+",[8,8,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[17,1,1,2,3,[[465,1,1,2,3]]],[22,3,3,3,6,[[691,1,1,3,4],[712,1,1,4,5],[721,1,1,5,6]]],[23,1,1,6,7,[[794,1,1,6,7]]],[32,1,1,7,8,[[893,1,1,7,8]]]],[3013,5305,13586,17927,18316,18525,20205,22587]]]]},{"k":"H3285","v":[["Jaanai",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10440]]]]},{"k":"H3286","v":[["*",[9,9,[[22,4,4,0,4,[[718,3,3,0,3],[722,1,1,3,4]]],[23,3,3,4,7,[[746,1,1,4,5],[795,2,2,5,7]]],[26,1,1,7,8,[[858,1,1,7,8]]],[34,1,1,8,9,[[904,1,1,8,9]]]],[18448,18450,18451,18545,18989,20270,20276,22009,22761]]],["faint",[3,3,[[22,3,3,0,3,[[718,2,2,0,2],[722,1,1,2,3]]]],[18450,18451,18545]]],["fainteth",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18448]]],["fly",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22009]]],["weary",[4,4,[[23,3,3,0,3,[[746,1,1,0,1],[795,2,2,1,3]]],[34,1,1,3,4,[[904,1,1,3,4]]]],[18989,20270,20276,22761]]]]},{"k":"H3287","v":[["*",[4,4,[[6,1,1,0,1,[[218,1,1,0,1]]],[9,1,1,1,2,[[282,1,1,1,2]]],[22,2,2,2,4,[[718,1,1,2,3],[728,1,1,3,4]]]],[6734,8428,18449,18666]]],["faint",[2,2,[[9,1,1,0,1,[[282,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[8428,18449]]],["weary",[2,2,[[6,1,1,0,1,[[218,1,1,0,1]]],[22,1,1,1,2,[[728,1,1,1,2]]]],[6734,18666]]]]},{"k":"H3288","v":[["swiftly",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22009]]]]},{"k":"H3289","v":[["*",[80,74,[[1,1,1,0,1,[[67,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[9,7,6,2,8,[[281,1,1,2,3],[282,1,1,3,4],[283,5,4,4,8]]],[10,8,6,8,14,[[291,1,1,8,9],[302,7,5,9,14]]],[11,1,1,14,15,[[318,1,1,14,15]]],[12,4,4,15,19,[[350,1,1,15,16],[363,1,1,16,17],[364,2,2,17,19]]],[13,14,11,19,30,[[376,5,3,19,22],[386,1,1,22,23],[388,2,2,23,25],[391,3,2,25,27],[396,2,2,27,29],[398,1,1,29,30]]],[14,3,3,30,33,[[406,1,1,30,31],[409,1,1,31,32],[410,1,1,32,33]]],[15,1,1,33,34,[[418,1,1,33,34]]],[17,3,3,34,37,[[438,1,1,34,35],[447,1,1,35,36],[461,1,1,36,37]]],[18,6,6,37,43,[[493,1,1,37,38],[509,1,1,38,39],[539,1,1,39,40],[548,1,1,40,41],[560,2,2,41,43]]],[19,5,5,43,48,[[638,1,1,43,44],[639,1,1,44,45],[640,1,1,45,46],[642,1,1,46,47],[651,1,1,47,48]]],[22,17,17,48,65,[[679,1,1,48,49],[681,1,1,49,50],[685,1,1,50,51],[687,1,1,51,52],[692,3,3,52,55],[697,3,3,55,58],[701,2,2,58,60],[710,2,2,60,62],[718,1,1,62,63],[719,1,1,63,64],[723,1,1,64,65]]],[23,4,4,65,69,[[782,1,1,65,66],[793,2,2,66,68],[794,1,1,68,69]]],[25,1,1,69,70,[[812,1,1,69,70]]],[32,2,2,70,72,[[896,1,1,70,71],[898,1,1,71,72]]],[33,1,1,72,73,[[900,1,1,72,73]]],[34,1,1,73,74,[[904,1,1,73,74]]]],[2018,4460,8401,8449,8456,8460,8464,8470,8729,9157,9159,9160,9164,9179,9682,10761,11091,11141,11142,11401,11403,11404,11608,11647,11648,11720,11721,11829,11850,11878,12115,12201,12226,12408,12918,13145,13470,14099,14363,14831,14986,15244,15246,16702,16739,16757,16829,17085,17680,17710,17787,17835,17952,17954,17955,18015,18016,18021,18085,18086,18266,18267,18434,18479,18582,19910,20147,20157,20211,20657,22629,22653,22695,22758]]],["+",[3,3,[[9,1,1,0,1,[[283,1,1,0,1]]],[18,1,1,1,2,[[509,1,1,1,2]]],[22,1,1,2,3,[[701,1,1,2,3]]]],[8464,14363,18085]]],["Counsellor",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17835]]],["advertise",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4460]]],["advice",[1,1,[[13,1,1,0,1,[[391,1,1,0,1]]]],[11721]]],["advise",[1,1,[[10,1,1,0,1,[[302,1,1,0,1]]]],[9157]]],["advised",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16757]]],["consult",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14831]]],["consulted",[7,7,[[10,2,2,0,2,[[302,2,2,0,2]]],[12,1,1,2,3,[[350,1,1,2,3]]],[13,1,1,3,4,[[386,1,1,3,4]]],[18,1,1,4,5,[[560,1,1,4,5]]],[32,1,1,5,6,[[898,1,1,5,6]]],[34,1,1,6,7,[[904,1,1,6,7]]]],[9157,9159,10761,11608,15244,22653,22758]]],["counsel",[18,18,[[1,1,1,0,1,[[67,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[10,2,2,2,4,[[302,2,2,2,4]]],[11,1,1,4,5,[[318,1,1,4,5]]],[13,6,6,5,11,[[376,2,2,5,7],[391,1,1,7,8],[396,2,2,8,10],[398,1,1,10,11]]],[15,1,1,11,12,[[418,1,1,11,12]]],[18,2,2,12,14,[[493,1,1,12,13],[548,1,1,13,14]]],[22,3,3,14,17,[[685,1,1,14,15],[718,1,1,15,16],[723,1,1,16,17]]],[23,1,1,17,18,[[782,1,1,17,18]]]],[2018,8460,9160,9179,9682,11401,11403,11720,11829,11850,11878,12408,14099,14986,17787,18434,18582,19910]]],["counselled",[4,4,[[9,3,3,0,3,[[282,1,1,0,1],[283,2,2,1,3]]],[17,1,1,3,4,[[461,1,1,3,4]]]],[8449,8464,8470,13470]]],["counsellor",[9,9,[[9,1,1,0,1,[[281,1,1,0,1]]],[12,3,3,1,4,[[363,1,1,1,2],[364,2,2,2,4]]],[13,1,1,4,5,[[388,1,1,4,5]]],[22,2,2,5,7,[[681,1,1,5,6],[719,1,1,6,7]]],[32,1,1,7,8,[[896,1,1,7,8]]],[33,1,1,8,9,[[900,1,1,8,9]]]],[8401,11091,11141,11142,11647,17710,18479,22629,22695]]],["counsellors",[12,12,[[13,1,1,0,1,[[388,1,1,0,1]]],[14,3,3,1,4,[[406,1,1,1,2],[409,1,1,2,3],[410,1,1,3,4]]],[17,2,2,4,6,[[438,1,1,4,5],[447,1,1,5,6]]],[19,4,4,6,10,[[638,1,1,6,7],[639,1,1,7,8],[642,1,1,8,9],[651,1,1,9,10]]],[22,2,2,10,12,[[679,1,1,10,11],[697,1,1,11,12]]]],[11648,12115,12201,12226,12918,13145,16702,16739,16829,17085,17680,18015]]],["determined",[2,2,[[13,1,1,0,1,[[391,1,1,0,1]]],[22,1,1,1,2,[[697,1,1,1,2]]]],[11720,18021]]],["deviseth",[2,2,[[22,2,2,0,2,[[710,2,2,0,2]]]],[18266,18267]]],["gave",[2,2,[[10,1,1,0,1,[[302,1,1,0,1]]],[13,1,1,1,2,[[376,1,1,1,2]]]],[9164,11403]]],["give",[4,4,[[10,1,1,0,1,[[291,1,1,0,1]]],[13,2,2,1,3,[[376,2,2,1,3]]],[25,1,1,3,4,[[812,1,1,3,4]]]],[8729,11401,11404,20657]]],["given",[2,2,[[9,1,1,0,1,[[283,1,1,0,1]]],[10,1,1,1,2,[[302,1,1,1,2]]]],[8456,9159]]],["purposed",[5,5,[[22,5,5,0,5,[[692,3,3,0,3],[697,1,1,3,4],[701,1,1,4,5]]]],[17952,17954,17955,18016,18086]]],["taken",[3,3,[[23,3,3,0,3,[[793,2,2,0,2],[794,1,1,2,3]]]],[20147,20157,20211]]],["together",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15246]]]]},{"k":"H3290","v":[["*",[349,319,[[0,180,159,0,159,[[24,9,8,0,8],[26,15,12,8,20],[27,9,8,20,28],[28,12,11,28,39],[29,20,18,39,57],[30,25,23,57,80],[31,16,16,80,96],[32,4,4,96,100],[33,12,10,100,110],[34,17,15,110,125],[35,1,1,125,126],[36,3,3,126,129],[41,5,4,129,133],[44,2,2,133,135],[45,15,11,135,146],[46,7,5,146,151],[47,2,2,151,153],[48,5,5,153,158],[49,1,1,158,159]]],[1,11,11,159,170,[[50,2,2,159,161],[51,1,1,161,162],[52,3,3,162,165],[53,1,1,165,166],[55,2,2,166,168],[68,1,1,168,169],[82,1,1,169,170]]],[2,1,1,170,171,[[115,1,1,170,171]]],[3,9,8,171,179,[[139,5,4,171,175],[140,3,3,175,178],[148,1,1,178,179]]],[4,11,11,179,190,[[153,1,1,179,180],[158,1,1,180,181],[161,2,2,181,183],[181,1,1,183,184],[182,1,1,184,185],[184,1,1,185,186],[185,3,3,186,189],[186,1,1,189,190]]],[5,3,2,190,192,[[210,3,2,190,192]]],[8,1,1,192,193,[[247,1,1,192,193]]],[9,1,1,193,194,[[289,1,1,193,194]]],[10,1,1,194,195,[[308,1,1,194,195]]],[11,2,2,195,197,[[325,1,1,195,196],[329,1,1,196,197]]],[12,2,2,197,199,[[353,2,2,197,199]]],[18,34,34,199,233,[[491,1,1,199,200],[497,1,1,200,201],[499,1,1,201,202],[501,1,1,202,203],[521,1,1,203,204],[523,2,2,204,206],[524,1,1,206,207],[530,1,1,207,208],[536,1,1,208,209],[552,1,1,209,210],[553,1,1,210,211],[554,1,1,211,212],[555,3,3,212,215],[556,1,1,215,216],[558,2,2,216,218],[561,1,1,218,219],[562,1,1,219,220],[564,1,1,220,221],[571,1,1,221,222],[576,1,1,222,223],[582,3,3,223,226],[591,2,2,226,228],[609,2,2,228,230],[612,1,1,230,231],[623,1,1,231,232],[624,1,1,232,233]]],[22,42,40,233,273,[[680,3,3,233,236],[686,1,1,236,237],[687,1,1,237,238],[688,2,2,238,240],[692,2,1,240,241],[695,1,1,241,242],[705,2,2,242,244],[707,3,2,244,246],[718,1,1,246,247],[719,3,3,247,250],[720,1,1,250,251],[721,3,3,251,254],[722,5,5,254,259],[723,2,2,259,261],[724,1,1,261,262],[726,3,3,262,265],[727,3,3,265,268],[736,2,2,268,270],[737,1,1,270,271],[738,1,1,271,272],[743,1,1,272,273]]],[23,16,13,273,286,[[746,1,1,273,274],[749,1,1,274,275],[754,2,2,275,277],[774,4,3,277,280],[775,2,2,280,282],[777,2,1,282,283],[790,3,2,283,285],[795,1,1,285,286]]],[24,3,3,286,289,[[797,1,1,286,287],[798,2,2,287,289]]],[25,4,4,289,293,[[821,1,1,289,290],[829,1,1,290,291],[838,1,1,291,292],[840,1,1,292,293]]],[27,3,3,293,296,[[871,1,1,293,294],[873,2,2,294,296]]],[29,6,6,296,302,[[881,1,1,296,297],[884,1,1,297,298],[885,2,2,298,300],[886,1,1,300,301],[887,1,1,301,302]]],[30,3,3,302,305,[[888,3,3,302,305]]],[32,11,10,305,315,[[893,2,1,305,306],[894,2,2,306,308],[895,3,3,308,311],[896,1,1,311,312],[897,2,2,312,314],[899,1,1,314,315]]],[33,1,1,315,316,[[901,1,1,315,316]]],[38,4,3,316,319,[[925,2,1,316,317],[926,1,1,317,318],[927,1,1,318,319]]]],[684,685,686,687,688,689,691,692,733,738,742,744,746,748,749,757,763,768,769,773,774,778,779,780,783,789,791,793,796,799,805,806,807,808,810,813,815,816,823,831,832,834,835,837,839,840,842,846,847,849,855,861,866,867,870,871,872,874,875,876,877,884,890,893,895,897,898,899,902,904,905,906,909,916,918,919,920,924,926,927,929,930,931,932,934,935,937,946,948,952,953,955,956,957,958,960,961,970,977,978,981,983,985,986,987,993,999,1005,1007,1010,1012,1013,1015,1016,1017,1020,1021,1025,1026,1031,1033,1034,1037,1038,1040,1046,1084,1085,1117,1253,1256,1281,1288,1383,1385,1388,1391,1392,1394,1401,1404,1405,1408,1411,1412,1413,1427,1428,1429,1430,1448,1453,1454,1474,1475,1480,1497,1506,1530,1533,1537,1578,1585,1594,1595,1606,1658,1663,2029,2474,3566,4423,4426,4437,4439,4451,4463,4465,4729,4900,5096,5162,5184,5692,5728,5767,5814,5820,5838,5843,6480,6508,7468,8654,9372,9894,10017,10833,10837,14087,14183,14227,14247,14575,14621,14625,14629,14725,14803,15080,15087,15108,15118,15134,15184,15192,15218,15221,15267,15272,15303,15438,15503,15612,15616,15629,15823,15829,16153,16156,16179,16346,16370,17688,17690,17691,17824,17837,17870,17871,17929,17987,18157,18160,18215,18216,18447,18459,18465,18472,18504,18506,18527,18533,18534,18535,18538,18554,18556,18565,18580,18589,18615,18626,18634,18641,18642,18662,18787,18800,18820,18837,18906,18969,19078,19217,19226,19674,19677,19685,19698,19702,19801,20072,20073,20231,20327,20334,20335,20900,21182,21422,21473,22236,22254,22264,22408,22458,22466,22469,22488,22503,22520,22527,22528,22584,22602,22607,22609,22616,22617,22622,22640,22641,22684,22701,23091,23115,23126]]],["+",[6,6,[[0,2,2,0,2,[[29,1,1,0,1],[34,1,1,1,2]]],[3,2,2,2,4,[[140,2,2,2,4]]],[22,2,2,4,6,[[727,1,1,4,5],[743,1,1,5,6]]]],[831,1015,4463,4465,18641,18906]]],["Jacob",[326,304,[[0,164,150,0,150,[[24,9,8,0,8],[26,14,12,8,20],[27,8,8,20,28],[28,12,11,28,39],[29,17,16,39,55],[30,24,22,55,77],[31,13,13,77,90],[32,4,4,90,94],[33,10,9,94,103],[34,15,14,103,117],[35,1,1,117,118],[36,3,3,118,121],[41,5,4,121,125],[44,2,2,125,127],[45,12,10,127,137],[46,7,5,137,142],[47,2,2,142,144],[48,5,5,144,149],[49,1,1,149,150]]],[1,11,11,150,161,[[50,2,2,150,152],[51,1,1,152,153],[52,3,3,153,156],[53,1,1,156,157],[55,2,2,157,159],[68,1,1,159,160],[82,1,1,160,161]]],[2,1,1,161,162,[[115,1,1,161,162]]],[3,7,6,162,168,[[139,5,4,162,166],[140,1,1,166,167],[148,1,1,167,168]]],[4,11,11,168,179,[[153,1,1,168,169],[158,1,1,169,170],[161,2,2,170,172],[181,1,1,172,173],[182,1,1,173,174],[184,1,1,174,175],[185,3,3,175,178],[186,1,1,178,179]]],[5,3,2,179,181,[[210,3,2,179,181]]],[8,1,1,181,182,[[247,1,1,181,182]]],[9,1,1,182,183,[[289,1,1,182,183]]],[10,1,1,183,184,[[308,1,1,183,184]]],[11,2,2,184,186,[[325,1,1,184,185],[329,1,1,185,186]]],[12,2,2,186,188,[[353,2,2,186,188]]],[18,34,34,188,222,[[491,1,1,188,189],[497,1,1,189,190],[499,1,1,190,191],[501,1,1,191,192],[521,1,1,192,193],[523,2,2,193,195],[524,1,1,195,196],[530,1,1,196,197],[536,1,1,197,198],[552,1,1,198,199],[553,1,1,199,200],[554,1,1,200,201],[555,3,3,201,204],[556,1,1,204,205],[558,2,2,205,207],[561,1,1,207,208],[562,1,1,208,209],[564,1,1,209,210],[571,1,1,210,211],[576,1,1,211,212],[582,3,3,212,215],[591,2,2,215,217],[609,2,2,217,219],[612,1,1,219,220],[623,1,1,220,221],[624,1,1,221,222]]],[22,40,38,222,260,[[680,3,3,222,225],[686,1,1,225,226],[687,1,1,226,227],[688,2,2,227,229],[692,2,1,229,230],[695,1,1,230,231],[705,2,2,231,233],[707,3,2,233,235],[718,1,1,235,236],[719,3,3,236,239],[720,1,1,239,240],[721,3,3,240,243],[722,5,5,243,248],[723,2,2,248,250],[724,1,1,250,251],[726,3,3,251,254],[727,2,2,254,256],[736,2,2,256,258],[737,1,1,258,259],[738,1,1,259,260]]],[23,14,11,260,271,[[746,1,1,260,261],[749,1,1,261,262],[754,2,2,262,264],[774,2,1,264,265],[775,2,2,265,267],[777,2,1,267,268],[790,3,2,268,270],[795,1,1,270,271]]],[24,3,3,271,274,[[797,1,1,271,272],[798,2,2,272,274]]],[25,4,4,274,278,[[821,1,1,274,275],[829,1,1,275,276],[838,1,1,276,277],[840,1,1,277,278]]],[27,3,3,278,281,[[871,1,1,278,279],[873,2,2,279,281]]],[29,6,6,281,287,[[881,1,1,281,282],[884,1,1,282,283],[885,2,2,283,285],[886,1,1,285,286],[887,1,1,286,287]]],[30,3,3,287,290,[[888,3,3,287,290]]],[32,11,10,290,300,[[893,2,1,290,291],[894,2,2,291,293],[895,3,3,293,296],[896,1,1,296,297],[897,2,2,297,299],[899,1,1,299,300]]],[33,1,1,300,301,[[901,1,1,300,301]]],[38,3,3,301,304,[[925,1,1,301,302],[926,1,1,302,303],[927,1,1,303,304]]]],[684,685,686,687,688,689,691,692,733,738,742,744,746,748,749,757,763,768,769,773,774,778,779,780,783,789,791,793,796,799,805,806,807,808,810,813,815,816,823,831,834,835,837,839,840,842,846,847,849,855,861,866,867,870,871,874,875,876,877,884,890,893,895,897,898,899,902,904,905,909,916,918,919,920,924,926,927,929,930,931,932,934,935,937,948,952,955,956,957,958,961,970,977,978,981,983,985,986,987,993,1005,1007,1010,1012,1013,1015,1016,1017,1020,1021,1025,1026,1031,1033,1037,1038,1040,1046,1084,1085,1117,1253,1256,1281,1288,1383,1385,1388,1391,1392,1394,1401,1404,1408,1411,1412,1413,1427,1428,1429,1430,1448,1453,1454,1474,1475,1480,1497,1506,1530,1533,1537,1578,1585,1594,1595,1606,1658,1663,2029,2474,3566,4423,4426,4437,4439,4451,4729,4900,5096,5162,5184,5692,5728,5767,5814,5820,5838,5843,6480,6508,7468,8654,9372,9894,10017,10833,10837,14087,14183,14227,14247,14575,14621,14625,14629,14725,14803,15080,15087,15108,15118,15134,15184,15192,15218,15221,15267,15272,15303,15438,15503,15612,15616,15629,15823,15829,16153,16156,16179,16346,16370,17688,17690,17691,17824,17837,17870,17871,17929,17987,18157,18160,18215,18216,18447,18459,18465,18472,18504,18506,18527,18533,18534,18535,18538,18554,18556,18565,18580,18589,18615,18626,18634,18642,18662,18787,18800,18820,18837,18969,19078,19217,19226,19677,19698,19702,19801,20072,20073,20231,20327,20334,20335,20900,21182,21422,21473,22236,22254,22264,22408,22458,22466,22469,22488,22503,22520,22527,22528,22584,22602,22607,22609,22616,22617,22622,22640,22641,22684,22701,23091,23115,23126]]],["Jacob's",[17,17,[[0,14,14,0,14,[[26,1,1,0,1],[27,1,1,1,2],[29,2,2,2,4],[30,1,1,4,5],[31,3,3,5,8],[33,2,2,8,10],[34,1,1,10,11],[45,3,3,11,14]]],[23,2,2,14,16,[[774,2,2,14,16]]],[38,1,1,16,17,[[925,1,1,16,17]]]],[749,778,832,872,906,946,953,960,987,999,1034,1394,1405,1412,19674,19685,23091]]]]},{"k":"H3291","v":[["Jaakobah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10421]]]]},{"k":"H3292","v":[["*",[2,2,[[4,1,1,0,1,[[162,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[5192,10294]]],["Jaakan",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5192]]],["Jakan",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10294]]]]},{"k":"H3293","v":[["*",[58,58,[[4,1,1,0,1,[[171,1,1,0,1]]],[5,2,2,1,3,[[203,2,2,1,3]]],[8,3,3,3,6,[[249,2,2,3,5],[257,1,1,5,6]]],[9,3,3,6,9,[[284,3,3,6,9]]],[10,3,3,9,12,[[297,1,1,9,10],[300,2,2,10,12]]],[11,2,2,12,14,[[314,1,1,12,13],[331,1,1,13,14]]],[12,1,1,14,15,[[353,1,1,14,15]]],[13,2,2,15,17,[[375,2,2,15,17]]],[18,6,6,17,23,[[527,1,1,17,18],[557,1,1,18,19],[560,1,1,19,20],[573,1,1,20,21],[581,1,1,21,22],[609,1,1,22,23]]],[20,1,1,23,24,[[660,1,1,23,24]]],[21,2,2,24,26,[[672,1,1,24,25],[675,1,1,25,26]]],[22,14,14,26,40,[[685,1,1,26,27],[687,1,1,27,28],[688,3,3,28,31],[699,1,1,31,32],[700,1,1,32,33],[707,1,1,33,34],[710,2,2,34,36],[715,1,1,36,37],[722,2,2,37,39],[734,1,1,39,40]]],[23,6,6,40,46,[[749,1,1,40,41],[754,1,1,41,42],[756,1,1,42,43],[765,1,1,43,44],[770,1,1,44,45],[790,1,1,45,46]]],[25,6,6,46,52,[[816,2,2,46,48],[821,2,2,48,50],[835,1,1,50,51],[840,1,1,51,52]]],[27,1,1,52,53,[[863,1,1,52,53]]],[29,1,1,53,54,[[881,1,1,53,54]]],[32,3,3,54,57,[[895,1,1,54,55],[897,1,1,55,56],[899,1,1,56,57]]],[37,1,1,57,58,[[921,1,1,57,58]]]],[5411,6290,6293,7533,7534,7792,8484,8486,8495,8936,9096,9100,9575,10084,10853,11380,11384,14678,15211,15255,15477,15591,16157,17339,17557,17599,17784,17847,17868,17869,17884,18048,18060,18210,18274,18278,18376,18547,18556,18762,19064,19204,19257,19454,19590,20068,20756,20760,20941,20942,21338,21458,22117,22399,22620,22641,22678,23030]]],["+",[3,3,[[18,1,1,0,1,[[557,1,1,0,1]]],[23,2,2,1,3,[[749,1,1,1,2],[754,1,1,2,3]]]],[15211,19064,19204]]],["forest",[35,35,[[8,1,1,0,1,[[257,1,1,0,1]]],[10,3,3,1,4,[[297,1,1,1,2],[300,2,2,2,4]]],[11,1,1,4,5,[[331,1,1,4,5]]],[13,2,2,5,7,[[375,2,2,5,7]]],[18,2,2,7,9,[[527,1,1,7,8],[581,1,1,8,9]]],[22,13,13,9,22,[[687,1,1,9,10],[688,3,3,10,13],[699,1,1,13,14],[700,1,1,14,15],[707,1,1,15,16],[710,2,2,16,18],[715,1,1,18,19],[722,2,2,19,21],[734,1,1,21,22]]],[23,4,4,22,26,[[756,1,1,22,23],[765,1,1,23,24],[770,1,1,24,25],[790,1,1,25,26]]],[25,4,4,26,30,[[816,2,2,26,28],[821,2,2,28,30]]],[27,1,1,30,31,[[863,1,1,30,31]]],[29,1,1,31,32,[[881,1,1,31,32]]],[32,2,2,32,34,[[895,1,1,32,33],[897,1,1,33,34]]],[37,1,1,34,35,[[921,1,1,34,35]]]],[7792,8936,9096,9100,10084,11380,11384,14678,15591,17847,17868,17869,17884,18048,18060,18210,18274,18278,18376,18547,18556,18762,19257,19454,19590,20068,20756,20760,20941,20942,22117,22399,22620,22641,23030]]],["forests",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21458]]],["honeycomb",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17599]]],["wood",[17,17,[[4,1,1,0,1,[[171,1,1,0,1]]],[5,2,2,1,3,[[203,2,2,1,3]]],[8,2,2,3,5,[[249,2,2,3,5]]],[9,3,3,5,8,[[284,3,3,5,8]]],[11,1,1,8,9,[[314,1,1,8,9]]],[12,1,1,9,10,[[353,1,1,9,10]]],[18,3,3,10,13,[[560,1,1,10,11],[573,1,1,11,12],[609,1,1,12,13]]],[20,1,1,13,14,[[660,1,1,13,14]]],[21,1,1,14,15,[[672,1,1,14,15]]],[22,1,1,15,16,[[685,1,1,15,16]]],[32,1,1,16,17,[[899,1,1,16,17]]]],[5411,6290,6293,7533,7534,8484,8486,8495,9575,10853,15255,15477,16157,17339,17557,17784,22678]]],["woods",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21338]]]]},{"k":"H3294","v":[["Jarah",[2,1,[[12,2,1,0,1,[[346,2,1,0,1]]]],[10657]]]]},{"k":"H3295","v":[["*",[2,2,[[8,1,1,0,1,[[249,1,1,0,1]]],[18,1,1,1,2,[[506,1,1,1,2]]]],[7535,14317]]],["+",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7535]]],["forests",[1,1,[[18,1,1,0,1,[[506,1,1,0,1]]]],[14317]]]]},{"k":"H3296","v":[["Jaareoregim",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8599]]]]},{"k":"H3297","v":[["Jearim",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6212]]]]},{"k":"H3298","v":[["Jaresiah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10602]]]]},{"k":"H3299","v":[["Jaasau",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12289]]]]},{"k":"H3300","v":[["*",[2,2,[[12,2,2,0,2,[[348,1,1,0,1],[364,1,1,1,2]]]],[10720,11130]]],["Jaasiel",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11130]]],["Jasiel",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10720]]]]},{"k":"H3301","v":[["Iphedeiah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10600]]]]},{"k":"H3302","v":[["*",[8,8,[[18,1,1,0,1,[[522,1,1,0,1]]],[21,3,3,1,4,[[674,1,1,1,2],[677,2,2,2,4]]],[23,2,2,4,6,[[748,1,1,4,5],[754,1,1,5,6]]],[25,2,2,6,8,[[817,1,1,6,7],[832,1,1,7,8]]]],[14599,17592,17628,17633,19057,19205,20775,21237]]],["+",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20775]]],["beautiful",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17628]]],["deck",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19205]]],["fair",[4,4,[[21,2,2,0,2,[[674,1,1,0,1],[677,1,1,1,2]]],[23,1,1,2,3,[[748,1,1,2,3]]],[25,1,1,3,4,[[832,1,1,3,4]]]],[17592,17633,19057,21237]]],["fairer",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14599]]]]},{"k":"H3303","v":[["*",[42,38,[[0,9,7,0,7,[[11,2,2,0,2],[28,2,1,2,3],[38,2,1,3,4],[40,3,3,4,7]]],[4,1,1,7,8,[[173,1,1,7,8]]],[8,3,3,8,11,[[251,1,1,8,9],[252,1,1,9,10],[260,1,1,10,11]]],[9,3,3,11,14,[[279,1,1,11,12],[280,2,2,12,14]]],[10,2,2,14,16,[[291,2,2,14,16]]],[16,1,1,16,17,[[427,1,1,16,17]]],[17,1,1,17,18,[[477,1,1,17,18]]],[18,1,1,18,19,[[525,1,1,18,19]]],[19,1,1,19,20,[[638,1,1,19,20]]],[20,2,2,20,22,[[661,1,1,20,21],[663,1,1,21,22]]],[21,13,11,22,33,[[671,4,3,22,25],[672,2,2,25,27],[674,3,2,27,29],[675,1,1,29,30],[676,3,3,30,33]]],[23,1,1,33,34,[[755,1,1,33,34]]],[25,3,3,34,37,[[832,2,2,34,36],[834,1,1,36,37]]],[29,1,1,37,38,[[886,1,1,37,38]]]],[309,312,812,1155,1197,1199,1213,5458,7607,7660,7864,8318,8381,8383,8720,8721,12731,13937,14636,16710,17370,17415,17545,17552,17553,17564,17567,17583,17589,17607,17615,17618,17624,19242,21233,21239,21312,22494]]],["+",[4,4,[[0,2,2,0,2,[[28,1,1,0,1],[38,1,1,1,2]]],[4,1,1,2,3,[[173,1,1,2,3]]],[16,1,1,3,4,[[427,1,1,3,4]]]],[812,1155,5458,12731]]],["Beautiful",[1,1,[[18,1,1,0,1,[[525,1,1,0,1]]]],[14636]]],["beautiful",[4,4,[[8,2,2,0,2,[[251,1,1,0,1],[260,1,1,1,2]]],[20,1,1,2,3,[[661,1,1,2,3]]],[21,1,1,3,4,[[676,1,1,3,4]]]],[7607,7864,17370,17618]]],["beauty",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8381]]],["comely",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17415]]],["fair",[20,18,[[0,2,2,0,2,[[11,2,2,0,2]]],[8,1,1,2,3,[[252,1,1,2,3]]],[9,2,2,3,5,[[279,1,1,3,4],[280,1,1,4,5]]],[10,2,2,5,7,[[291,2,2,5,7]]],[17,1,1,7,8,[[477,1,1,7,8]]],[19,1,1,8,9,[[638,1,1,8,9]]],[21,7,5,9,14,[[671,3,2,9,11],[674,3,2,11,13],[676,1,1,13,14]]],[23,1,1,14,15,[[755,1,1,14,15]]],[25,2,2,15,17,[[832,2,2,15,17]]],[29,1,1,17,18,[[886,1,1,17,18]]]],[309,312,7660,8318,8383,8720,8721,13937,16710,17552,17553,17583,17589,17624,19242,21233,21239,22494]]],["fairest",[3,3,[[21,3,3,0,3,[[671,1,1,0,1],[675,1,1,1,2],[676,1,1,2,3]]]],[17545,17607,17615]]],["one",[2,2,[[21,2,2,0,2,[[672,2,2,0,2]]]],[17564,17567]]],["pleasant",[1,1,[[25,1,1,0,1,[[834,1,1,0,1]]]],[21312]]],["well",[5,5,[[0,5,5,0,5,[[28,1,1,0,1],[38,1,1,1,2],[40,3,3,2,5]]]],[812,1155,1197,1199,1213]]]]},{"k":"H3304","v":[["fair",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20065]]]]},{"k":"H3305","v":[["*",[4,4,[[5,1,1,0,1,[[205,1,1,0,1]]],[13,1,1,1,2,[[368,1,1,1,2]]],[14,1,1,2,3,[[405,1,1,2,3]]],[31,1,1,3,4,[[889,1,1,3,4]]]],[6367,11227,12104,22534]]],["Japho",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6367]]],["Joppa",[3,3,[[13,1,1,0,1,[[368,1,1,0,1]]],[14,1,1,1,2,[[405,1,1,1,2]]],[31,1,1,2,3,[[889,1,1,2,3]]]],[11227,12104,22534]]]]},{"k":"H3306","v":[["herself",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19058]]]]},{"k":"H3307","v":[["out",[1,1,[[18,1,1,0,1,[[504,1,1,0,1]]]],[14297]]]]},{"k":"H3308","v":[["*",[19,19,[[16,1,1,0,1,[[426,1,1,0,1]]],[18,2,2,1,3,[[522,1,1,1,2],[527,1,1,2,3]]],[19,2,2,3,5,[[633,1,1,3,4],[658,1,1,4,5]]],[22,2,2,5,7,[[681,1,1,5,6],[711,1,1,6,7]]],[24,1,1,7,8,[[798,1,1,7,8]]],[25,10,10,8,18,[[817,3,3,8,11],[828,3,3,11,14],[829,3,3,14,17],[832,1,1,17,18]]],[37,1,1,18,19,[[919,1,1,18,19]]]],[12713,14608,14670,16565,17314,17731,18296,20347,20776,20777,20787,21124,21125,21132,21164,21169,21174,21238,23016]]],["+",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21132]]],["beauty",[18,18,[[16,1,1,0,1,[[426,1,1,0,1]]],[18,2,2,1,3,[[522,1,1,1,2],[527,1,1,2,3]]],[19,2,2,3,5,[[633,1,1,3,4],[658,1,1,4,5]]],[22,2,2,5,7,[[681,1,1,5,6],[711,1,1,6,7]]],[24,1,1,7,8,[[798,1,1,7,8]]],[25,9,9,8,17,[[817,3,3,8,11],[828,2,2,11,13],[829,3,3,13,16],[832,1,1,16,17]]],[37,1,1,17,18,[[919,1,1,17,18]]]],[12713,14608,14670,16565,17314,17731,18296,20347,20776,20777,20787,21124,21125,21164,21169,21174,21238,23016]]]]},{"k":"H3309","v":[["Japhia",[5,5,[[5,2,2,0,2,[[196,1,1,0,1],[205,1,1,1,2]]],[9,1,1,2,3,[[271,1,1,2,3]]],[12,2,2,3,5,[[340,1,1,3,4],[351,1,1,4,5]]]],[6067,6333,8147,10368,10780]]]]},{"k":"H3310","v":[["Japhlet",[3,2,[[12,3,2,0,2,[[344,3,2,0,2]]]],[10567,10568]]]]},{"k":"H3311","v":[["Japhleti",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6268]]]]},{"k":"H3312","v":[["*",[16,16,[[3,7,7,0,7,[[129,1,1,0,1],[130,3,3,1,4],[142,1,1,4,5],[148,1,1,5,6],[150,1,1,6,7]]],[4,1,1,7,8,[[153,1,1,7,8]]],[5,5,5,8,13,[[200,3,3,8,11],[201,1,1,11,12],[207,1,1,12,13]]],[12,3,3,13,16,[[341,1,1,13,14],[343,1,1,14,15],[344,1,1,15,16]]]],[4081,4114,4138,4146,4554,4730,4835,4928,6193,6200,6201,6215,6393,10400,10510,10573]]],["+",[1,1,[[5,1,1,0,1,[[200,1,1,0,1]]]],[6200]]],["Jephunneh",[15,15,[[3,7,7,0,7,[[129,1,1,0,1],[130,3,3,1,4],[142,1,1,4,5],[148,1,1,5,6],[150,1,1,6,7]]],[4,1,1,7,8,[[153,1,1,7,8]]],[5,4,4,8,12,[[200,2,2,8,10],[201,1,1,10,11],[207,1,1,11,12]]],[12,3,3,12,15,[[341,1,1,12,13],[343,1,1,13,14],[344,1,1,14,15]]]],[4081,4114,4138,4146,4554,4730,4835,4928,6193,6201,6215,6393,10400,10510,10573]]]]},{"k":"H3313","v":[["*",[8,8,[[4,1,1,0,1,[[185,1,1,0,1]]],[17,4,4,1,5,[[438,1,1,1,2],[445,2,2,2,4],[472,1,1,4,5]]],[18,3,3,5,8,[[527,1,1,5,6],[557,1,1,6,7],[571,1,1,7,8]]]],[5812,12908,13089,13108,13784,14670,15199,15432]]],["forth",[2,2,[[4,1,1,0,1,[[185,1,1,0,1]]],[18,1,1,1,2,[[557,1,1,1,2]]]],[5812,15199]]],["light",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13108]]],["shine",[3,3,[[17,3,3,0,3,[[438,1,1,0,1],[445,1,1,1,2],[472,1,1,2,3]]]],[12908,13089,13784]]],["shined",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14670]]],["thyself",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15432]]]]},{"k":"H3314","v":[["brightness",[2,2,[[25,2,2,0,2,[[829,2,2,0,2]]]],[21164,21174]]]]},{"k":"H3315","v":[["Japheth",[11,11,[[0,9,9,0,9,[[4,1,1,0,1],[5,1,1,1,2],[6,1,1,2,3],[8,3,3,3,6],[9,3,3,6,9]]],[12,2,2,9,11,[[338,2,2,9,11]]]],[137,147,172,223,228,232,235,236,255,10256,10257]]]]},{"k":"H3316","v":[["*",[30,26,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,28,24,1,25,[[221,23,20,1,21],[222,5,4,21,25]]],[8,1,1,25,26,[[247,1,1,25,26]]]],[6245,6830,6831,6832,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6857,6858,6859,6861,6863,6869,6870,6871,6873,6876,7471]]],["Jephthah",[29,25,[[6,28,24,0,24,[[221,23,20,0,20],[222,5,4,20,24]]],[8,1,1,24,25,[[247,1,1,24,25]]]],[6830,6831,6832,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6857,6858,6859,6861,6863,6869,6870,6871,6873,6876,7471]]],["Jiphtah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6245]]]]},{"k":"H3317","v":[["Jiphthahel",[2,2,[[5,2,2,0,2,[[205,2,2,0,2]]]],[6335,6348]]]]},{"k":"H3318","v":[["*",[1068,991,[[0,79,75,0,75,[[0,2,2,0,2],[1,1,1,2,3],[3,1,1,3,4],[7,6,5,4,9],[8,2,2,9,11],[9,2,2,11,13],[10,1,1,13,14],[11,2,2,14,16],[13,3,3,16,19],[14,4,4,19,23],[16,1,1,23,24],[18,9,8,24,32],[23,9,9,32,41],[24,2,2,41,43],[26,3,2,43,45],[27,1,1,45,46],[29,1,1,46,47],[30,2,2,47,49],[33,5,4,49,53],[34,2,2,53,55],[37,5,5,55,60],[38,2,2,60,62],[39,1,1,62,63],[40,2,2,63,65],[41,2,2,65,67],[42,2,2,67,69],[43,2,2,69,71],[44,1,1,71,72],[45,1,1,72,73],[46,1,1,73,74],[47,1,1,74,75]]],[1,94,88,75,163,[[50,1,1,75,76],[51,2,2,76,78],[52,3,3,78,81],[53,3,3,81,84],[54,2,2,84,86],[55,5,5,86,91],[56,3,3,91,94],[57,5,5,94,99],[58,2,2,99,101],[59,2,2,101,103],[60,4,2,103,105],[61,8,8,105,113],[62,7,6,113,119],[63,2,2,119,121],[64,2,2,121,123],[65,7,7,123,130],[66,2,2,130,132],[67,2,2,132,134],[68,2,2,134,136],[69,1,1,136,137],[70,9,7,137,144],[71,1,1,144,145],[72,2,2,145,147],[74,3,3,147,150],[77,1,1,150,151],[78,1,1,151,152],[81,3,3,152,155],[82,2,2,155,157],[83,3,2,157,159],[84,1,1,159,160],[86,3,3,160,163]]],[2,38,38,163,201,[[93,2,2,163,165],[95,1,1,165,166],[97,1,1,166,167],[98,2,2,167,169],[99,2,2,169,171],[103,3,3,171,174],[104,2,2,174,176],[105,4,4,176,180],[108,1,1,180,181],[110,1,1,181,182],[111,2,2,182,184],[112,1,1,184,185],[113,3,3,185,188],[114,9,9,188,197],[115,3,3,197,200],[116,1,1,200,201]]],[3,70,66,201,267,[[117,15,15,201,216],[125,1,1,216,217],[127,4,3,217,220],[128,4,3,220,223],[129,1,1,223,224],[130,2,2,224,226],[131,2,2,226,228],[132,3,3,228,231],[133,2,2,231,233],[135,1,1,233,234],[136,6,6,234,240],[137,4,4,240,244],[138,4,4,244,248],[139,1,1,248,249],[140,1,1,249,250],[142,2,2,250,252],[143,3,2,252,254],[146,1,1,254,255],[147,4,4,255,259],[148,1,1,259,260],[149,4,4,260,264],[150,2,2,264,266],[151,2,1,266,267]]],[4,66,64,267,331,[[153,2,2,267,269],[154,2,2,269,271],[155,1,1,271,272],[156,4,4,272,276],[157,2,2,276,278],[158,3,3,278,281],[159,2,2,281,283],[160,3,3,283,286],[161,6,5,286,291],[163,1,1,291,292],[165,3,3,292,295],[166,2,2,295,297],[167,1,1,297,298],[168,4,3,298,301],[169,1,1,301,302],[172,1,1,302,303],[173,3,3,303,306],[174,5,5,306,311],[175,4,4,311,315],[176,4,4,315,319],[177,1,1,319,320],[178,1,1,320,321],[180,6,6,321,327],[181,2,2,327,329],[183,1,1,329,330],[185,1,1,330,331]]],[5,53,47,331,378,[[188,5,5,331,336],[191,5,3,336,339],[192,5,4,339,343],[194,5,5,343,348],[195,1,1,348,349],[196,3,3,349,352],[197,1,1,352,353],[200,1,1,353,354],[201,5,4,354,358],[202,4,4,358,362],[204,5,3,362,365],[205,10,10,365,375],[207,1,1,375,376],[210,2,2,376,378]]],[6,53,50,378,428,[[211,1,1,378,379],[212,2,2,379,381],[213,5,5,381,386],[214,3,3,386,389],[215,2,2,389,391],[216,4,4,391,395],[218,1,1,395,396],[219,11,10,396,406],[221,4,4,406,410],[223,1,1,410,411],[224,2,1,411,412],[225,1,1,412,413],[226,1,1,413,414],[229,5,5,414,419],[230,7,7,419,426],[231,3,2,426,428]]],[7,4,4,428,432,[[232,2,2,428,430],[233,2,2,430,432]]],[8,46,42,432,474,[[237,1,1,432,433],[239,1,1,433,434],[242,1,1,434,435],[243,1,1,435,436],[244,3,3,436,439],[246,4,3,439,442],[247,1,1,442,443],[248,3,3,443,446],[249,2,2,446,448],[252,5,5,448,453],[253,6,5,453,458],[254,2,2,458,460],[255,3,2,460,462],[256,1,1,462,463],[257,1,1,463,464],[258,3,2,464,466],[259,3,3,466,469],[260,1,1,469,470],[261,1,1,470,471],[263,1,1,471,472],[264,1,1,472,473],[265,1,1,473,474]]],[9,47,39,474,513,[[268,3,3,474,477],[269,1,1,477,478],[271,2,2,478,480],[272,1,1,480,481],[273,1,1,481,482],[276,2,2,482,484],[277,6,5,484,489],[278,2,2,489,491],[279,4,3,491,494],[281,2,2,494,496],[282,6,3,496,499],[284,5,4,499,503],[285,3,2,503,505],[286,3,2,505,507],[287,1,1,507,508],[288,2,2,508,510],[290,3,3,510,513]]],[10,42,38,513,551,[[292,5,5,513,518],[293,1,1,518,519],[294,1,1,519,520],[296,1,1,520,521],[298,8,8,521,529],[299,2,2,529,531],[300,2,1,531,532],[301,1,1,532,533],[302,1,1,533,534],[305,1,1,534,535],[307,1,1,535,536],[309,2,2,536,538],[310,10,8,538,546],[311,2,2,546,548],[312,4,3,548,551]]],[11,52,48,551,599,[[314,4,4,551,555],[315,1,1,555,556],[316,4,4,556,560],[317,4,3,560,563],[318,1,1,563,564],[319,3,2,564,566],[320,1,1,566,567],[321,5,4,567,571],[322,5,4,571,575],[323,5,5,575,580],[324,2,2,580,582],[325,1,1,582,583],[327,1,1,583,584],[330,3,3,584,587],[331,4,4,587,591],[332,2,2,591,593],[333,1,1,593,594],[335,2,2,594,596],[336,3,3,596,599]]],[12,24,23,599,622,[[338,1,1,599,600],[339,1,1,600,601],[342,1,1,601,602],[344,1,1,602,603],[346,1,1,603,604],[348,1,1,604,605],[349,3,3,605,608],[351,4,3,608,611],[356,2,2,611,613],[357,3,3,613,616],[358,2,2,616,618],[361,1,1,618,619],[362,1,1,619,620],[363,1,1,620,621],[364,1,1,621,622]]],[13,49,43,622,665,[[367,3,2,622,624],[371,2,2,624,626],[372,3,3,626,629],[373,1,1,629,630],[375,1,1,630,631],[380,2,2,631,633],[381,2,2,633,635],[382,2,2,635,637],[384,4,3,637,640],[385,2,2,640,642],[386,4,3,642,645],[387,3,2,645,647],[388,1,1,647,648],[389,5,4,648,652],[390,1,1,652,653],[391,1,1,653,654],[392,5,5,654,659],[394,1,1,659,660],[395,3,2,660,662],[397,1,1,662,663],[400,1,1,663,664],[401,1,1,664,665]]],[14,5,4,665,669,[[403,3,2,665,667],[412,2,2,667,669]]],[15,10,10,669,679,[[414,1,1,669,670],[415,3,3,670,673],[416,1,1,673,674],[418,1,1,674,675],[420,2,2,675,677],[421,2,2,677,679]]],[16,9,9,679,688,[[426,2,2,679,681],[428,1,1,681,682],[429,2,2,682,684],[430,1,1,684,685],[432,1,1,685,686],[433,2,2,686,688]]],[17,28,28,688,716,[[436,2,2,688,690],[437,1,1,690,691],[438,1,1,691,692],[440,1,1,692,693],[443,2,2,693,695],[445,1,1,695,696],[447,1,1,696,697],[449,1,1,697,698],[450,1,1,698,699],[455,1,1,699,700],[458,1,1,700,701],[459,1,1,701,702],[461,1,1,702,703],[463,2,2,703,705],[464,1,1,705,706],[466,2,2,706,708],[472,1,1,708,709],[473,3,3,709,712],[474,2,2,712,714],[476,2,2,714,716]]],[18,36,35,716,751,[[494,1,1,716,717],[495,1,1,717,718],[496,2,2,718,720],[502,2,2,720,722],[508,1,1,722,723],[514,1,1,723,724],[518,1,1,724,725],[521,1,1,725,726],[537,1,1,726,727],[543,1,1,727,728],[545,2,2,728,730],[550,1,1,730,731],[555,1,1,731,732],[558,1,1,732,733],[565,1,1,733,734],[581,2,2,734,736],[582,3,3,736,739],[584,2,2,739,741],[585,1,1,741,742],[586,2,1,742,743],[591,1,1,743,744],[598,1,1,744,745],[612,1,1,745,746],[613,1,1,746,747],[619,1,1,747,748],[620,1,1,748,749],[621,1,1,749,750],[623,1,1,750,751]]],[19,11,9,751,760,[[634,1,1,751,752],[637,1,1,752,753],[639,1,1,753,754],[649,1,1,754,755],[652,2,2,755,757],[656,1,1,757,758],[657,4,2,758,760]]],[20,5,5,760,765,[[662,1,1,760,761],[663,2,2,761,763],[665,1,1,763,764],[668,1,1,764,765]]],[21,4,4,765,769,[[671,1,1,765,766],[673,1,1,766,767],[675,1,1,767,768],[677,1,1,768,769]]],[22,41,39,769,808,[[680,1,1,769,770],[685,1,1,770,771],[689,1,1,771,772],[691,1,1,772,773],[692,1,1,773,774],[704,1,1,774,775],[706,1,1,775,776],[708,1,1,776,777],[714,2,2,777,779],[715,4,4,779,783],[717,1,1,783,784],[718,1,1,784,785],[720,4,4,785,789],[721,2,2,789,791],[723,1,1,791,792],[726,4,3,792,795],[727,2,2,795,797],[729,2,2,797,799],[730,3,2,799,801],[732,1,1,801,802],[733,2,2,802,804],[739,1,1,804,805],[740,1,1,805,806],[743,1,1,806,807],[744,1,1,807,808]]],[23,70,68,808,876,[[745,1,1,808,809],[746,1,1,809,810],[748,2,2,810,812],[749,1,1,812,813],[750,1,1,813,814],[751,2,2,814,816],[752,1,1,816,817],[753,1,1,817,818],[754,2,2,818,820],[755,2,2,820,822],[758,1,1,822,823],[759,3,3,823,826],[761,2,2,826,828],[763,1,1,828,829],[764,2,2,829,831],[765,2,2,831,833],[766,1,1,833,834],[767,2,2,834,836],[769,1,1,836,837],[770,1,1,837,838],[773,2,2,838,840],[774,3,3,840,843],[775,3,3,843,846],[776,1,1,846,847],[778,1,1,847,848],[781,4,4,848,852],[782,8,7,852,859],[783,3,2,859,861],[785,1,1,861,862],[787,1,1,862,863],[788,1,1,863,864],[790,1,1,864,865],[792,3,3,865,868],[794,2,2,868,870],[795,4,4,870,874],[796,2,2,874,876]]],[24,3,3,876,879,[[797,1,1,876,877],[799,2,2,877,879]]],[25,74,63,879,942,[[802,1,1,879,880],[804,3,3,880,883],[806,1,1,883,884],[808,1,1,884,885],[810,2,1,885,886],[811,3,3,886,889],[812,2,2,889,891],[813,8,5,891,896],[815,2,1,896,897],[816,1,1,897,898],[817,1,1,898,899],[820,1,1,899,900],[821,8,8,900,908],[822,4,4,908,912],[825,3,2,912,914],[827,1,1,914,915],[828,1,1,915,916],[829,1,1,916,917],[831,1,1,917,918],[834,1,1,918,919],[835,1,1,919,920],[837,1,1,920,921],[838,1,1,921,922],[839,2,2,922,924],[840,1,1,924,925],[843,3,3,925,928],[845,2,2,928,930],[847,11,7,930,937],[848,6,5,937,942]]],[26,7,7,942,949,[[857,1,1,942,943],[858,3,3,943,946],[859,1,1,946,947],[860,2,2,947,949]]],[27,2,2,949,951,[[867,1,1,949,950],[870,1,1,950,951]]],[28,2,2,951,953,[[877,1,1,951,952],[878,1,1,952,953]]],[29,4,3,953,956,[[882,1,1,953,954],[883,2,1,954,955],[884,1,1,955,956]]],[31,1,1,956,957,[[892,1,1,956,957]]],[32,8,8,957,965,[[893,2,2,957,959],[894,1,1,959,960],[896,2,2,960,962],[897,1,1,962,963],[899,2,2,963,965]]],[33,1,1,965,966,[[900,1,1,965,966]]],[34,5,4,966,970,[[903,3,2,966,968],[905,2,2,968,970]]],[36,2,2,970,972,[[909,1,1,970,971],[910,1,1,971,972]]],[37,22,18,972,990,[[912,2,1,972,973],[914,1,1,973,974],[915,6,5,974,979],[916,7,5,979,984],[918,1,1,984,985],[919,1,1,985,986],[920,1,1,986,987],[924,3,3,987,990]]],[38,1,1,990,991,[[928,1,1,990,991]]]],[11,23,40,95,190,199,200,201,202,215,223,245,248,297,302,303,344,353,354,364,365,367,374,403,462,463,465,469,471,473,474,480,596,602,604,606,634,636,641,644,654,683,684,730,757,783,846,886,906,981,986,1004,1006,1022,1029,1143,1144,1147,1148,1149,1161,1164,1186,1240,1241,1267,1280,1313,1321,1328,1352,1359,1412,1430,1463,1537,1565,1567,1589,1590,1591,1607,1608,1615,1642,1652,1661,1662,1668,1681,1682,1689,1690,1700,1722,1728,1730,1739,1740,1771,1775,1783,1795,1810,1814,1833,1838,1847,1855,1857,1858,1862,1867,1870,1871,1875,1876,1881,1883,1897,1900,1940,1942,1948,1950,1951,1953,1974,1976,1979,1989,1992,2000,2006,2027,2043,2053,2079,2080,2081,2082,2084,2088,2099,2119,2159,2160,2227,2228,2230,2328,2382,2449,2450,2462,2480,2481,2514,2530,2551,2622,2623,2625,2807,2816,2860,2950,2976,2977,2979,2984,3114,3149,3156,3184,3200,3218,3219,3225,3228,3317,3357,3373,3402,3445,3456,3460,3469,3497,3499,3500,3502,3507,3510,3511,3523,3524,3534,3537,3569,3591,3605,3607,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3966,4044,4048,4050,4063,4064,4071,4107,4144,4145,4189,4194,4221,4229,4240,4252,4253,4292,4319,4321,4322,4327,4329,4331,4353,4363,4368,4373,4380,4386,4407,4411,4438,4454,4491,4493,4571,4575,4650,4677,4691,4692,4700,4742,4761,4763,4798,4814,4820,4825,4871,4919,4936,4961,4970,4976,5024,5041,5049,5050,5059,5068,5098,5107,5109,5119,5130,5144,5151,5152,5164,5169,5183,5185,5186,5218,5277,5282,5285,5312,5318,5335,5343,5345,5348,5369,5428,5449,5457,5466,5484,5485,5489,5491,5494,5504,5509,5510,5512,5527,5530,5534,5536,5564,5574,5617,5618,5630,5636,5649,5668,5686,5704,5730,5828,5872,5874,5876,5879,5888,5938,5939,5940,5950,5959,5971,5972,6007,6008,6016,6019,6024,6049,6086,6087,6088,6111,6198,6205,6206,6211,6213,6266,6267,6271,6272,6304,6308,6310,6322,6333,6334,6338,6345,6348,6353,6355,6361,6368,6385,6481,6482,6533,6557,6560,6578,6587,6590,6591,6592,6613,6617,6621,6627,6654,6662,6672,6673,6684,6749,6769,6774,6781,6783,6787,6789,6792,6793,6796,6797,6832,6860,6863,6865,6898,6923,6948,6969,7046,7047,7048,7049,7051,7055,7068,7074,7075,7079,7082,7085,7123,7126,7134,7140,7167,7171,7243,7298,7363,7389,7402,7405,7417,7448,7452,7455,7468,7495,7502,7508,7519,7549,7622,7626,7638,7653,7673,7681,7682,7689,7692,7706,7709,7714,7741,7765,7777,7790,7823,7825,7847,7852,7853,7898,7925,7943,7973,7999,8061,8062,8072,8107,8134,8156,8177,8192,8248,8256,8260,8267,8272,8276,8282,8316,8317,8326,8335,8356,8405,8406,8431,8433,8437,8480,8481,8482,8484,8518,8530,8561,8562,8597,8622,8651,8696,8699,8712,8800,8806,8807,8812,8816,8823,8877,8897,8994,8995,9001,9004,9006,9029,9036,9038,9060,9063,9108,9137,9176,9266,9330,9398,9400,9424,9425,9426,9427,9429,9439,9441,9447,9461,9464,9501,9502,9514,9554,9572,9574,9575,9582,9621,9624,9640,9642,9649,9658,9674,9689,9719,9723,9730,9767,9771,9777,9780,9802,9815,9818,9819,9836,9837,9838,9841,9844,9861,9862,9876,9945,10031,10042,10055,10070,10088,10092,10096,10102,10116,10134,10169,10171,10209,10214,10215,10264,10359,10446,10546,10643,10675,10737,10753,10756,10782,10789,10791,10916,10923,10927,10928,10929,10938,10955,11022,11055,11091,11110,11204,11211,11278,11279,11287,11291,11316,11346,11392,11484,11485,11492,11495,11510,11511,11562,11563,11575,11578,11580,11604,11607,11608,11639,11643,11651,11663,11664,11667,11670,11682,11709,11738,11743,11747,11750,11752,11773,11796,11807,11855,11947,11986,12023,12024,12255,12271,12320,12352,12353,12354,12380,12420,12508,12509,12518,12526,12719,12721,12762,12763,12768,12788,12815,12831,12832,12881,12890,12898,12915,12957,13039,13045,13104,13150,13183,13216,13351,13429,13441,13471,13509,13515,13539,13622,13628,13771,13801,13822,13825,13838,13855,13908,13909,14105,14137,14172,14173,14266,14268,14335,14456,14548,14580,14817,14885,14906,14907,15027,15129,15222,15316,15585,15594,15643,15644,15649,15713,15727,15753,15762,15823,16089,16182,16207,16293,16304,16319,16345,16590,16674,16732,17025,17117,17121,17235,17278,17284,17395,17399,17412,17447,17498,17545,17582,17604,17638,17688,17785,17885,17916,17957,18151,18193,18239,18333,18346,18361,18380,18384,18388,18419,18446,18481,18483,18487,18493,18513,18522,18584,18615,18617,18634,18645,18653,18677,18678,18707,18708,18739,18751,18752,18854,18855,18906,18946,18951,19002,19031,19034,19064,19114,19141,19144,19154,19178,19214,19221,19230,19237,19311,19316,19317,19334,19376,19379,19409,19425,19440,19449,19452,19465,19499,19503,19566,19595,19637,19651,19686,19688,19690,19695,19723,19730,19752,19814,19878,19879,19881,19886,19897,19903,19912,19913,19916,19917,19918,19927,19937,19963,20009,20027,20054,20087,20089,20125,20174,20191,20222,20228,20256,20257,20283,20307,20316,20361,20392,20477,20524,20525,20527,20550,20587,20629,20640,20651,20652,20662,20664,20684,20685,20686,20687,20692,20753,20761,20776,20895,20901,20904,20905,20909,20917,20929,20933,20936,20947,20948,20949,20963,21062,21068,21118,21154,21175,21213,21310,21326,21379,21398,21429,21433,21457,21553,21566,21567,21602,21618,21657,21663,21664,21665,21667,21675,21676,21680,21681,21682,21687,21691,21970,22003,22010,22011,22035,22047,22080,22172,22221,22327,22361,22413,22426,22460,22573,22582,22590,22608,22622,22630,22635,22673,22679,22695,22735,22738,22773,22781,22851,22860,22902,22929,22939,22940,22941,22942,22945,22948,22952,22953,22954,22955,22986,23013,23020,23070,23071,23076,23140]]],["+",[142,137,[[0,9,8,0,8,[[7,1,1,0,1],[14,1,1,1,2],[18,2,2,2,4],[26,2,1,4,5],[42,1,1,5,6],[43,1,1,6,7],[47,1,1,7,8]]],[1,22,22,8,30,[[52,3,3,8,11],[55,5,5,11,16],[56,2,2,16,18],[57,1,1,18,19],[60,1,1,19,20],[61,2,2,20,22],[62,2,2,22,24],[65,3,3,24,27],[67,1,1,27,28],[68,1,1,28,29],[78,1,1,29,30]]],[2,10,10,30,40,[[93,1,1,30,31],[95,1,1,31,32],[98,1,1,32,33],[108,1,1,33,34],[111,1,1,34,35],[112,1,1,35,36],[113,2,2,36,38],[114,1,1,38,39],[115,1,1,39,40]]],[3,6,5,40,45,[[127,1,1,40,41],[131,1,1,41,42],[133,1,1,42,43],[135,1,1,43,44],[151,2,1,44,45]]],[4,13,13,45,58,[[156,1,1,45,46],[158,1,1,46,47],[159,1,1,47,48],[165,1,1,48,49],[166,1,1,49,50],[169,1,1,50,51],[173,1,1,51,52],[174,3,3,52,55],[176,1,1,55,56],[180,1,1,56,57],[181,1,1,57,58]]],[5,7,7,58,65,[[192,1,1,58,59],[194,1,1,59,60],[196,3,3,60,63],[210,2,2,63,65]]],[6,6,6,65,71,[[212,1,1,65,66],[216,3,3,66,69],[229,2,2,69,71]]],[8,2,2,71,73,[[246,1,1,71,72],[247,1,1,72,73]]],[9,5,4,73,77,[[276,1,1,73,74],[277,1,1,74,75],[284,2,1,75,76],[285,1,1,76,77]]],[10,5,5,77,82,[[292,1,1,77,78],[298,3,3,78,81],[299,1,1,81,82]]],[11,7,6,82,88,[[317,2,1,82,83],[322,1,1,83,84],[323,2,2,84,86],[327,1,1,86,87],[335,1,1,87,88]]],[12,2,2,88,90,[[356,1,1,88,89],[357,1,1,89,90]]],[13,7,7,90,97,[[372,1,1,90,91],[387,1,1,91,92],[389,2,2,92,94],[395,2,2,94,96],[400,1,1,96,97]]],[14,1,1,97,98,[[403,1,1,97,98]]],[15,1,1,98,99,[[418,1,1,98,99]]],[16,1,1,99,100,[[430,1,1,99,100]]],[17,3,3,100,103,[[437,1,1,100,101],[440,1,1,101,102],[466,1,1,102,103]]],[18,6,6,103,109,[[502,1,1,103,104],[521,1,1,104,105],[555,1,1,105,106],[586,1,1,106,107],[619,1,1,107,108],[620,1,1,108,109]]],[19,1,1,109,110,[[652,1,1,109,110]]],[20,2,2,110,112,[[665,1,1,110,111],[668,1,1,111,112]]],[23,13,12,112,124,[[750,1,1,112,113],[752,1,1,113,114],[755,2,2,114,116],[764,1,1,116,117],[770,1,1,117,118],[776,1,1,118,119],[778,1,1,119,120],[782,2,1,120,121],[794,1,1,121,122],[795,1,1,122,123],[796,1,1,123,124]]],[25,9,9,124,133,[[812,1,1,124,125],[821,4,4,125,129],[825,1,1,129,130],[827,1,1,130,131],[839,1,1,131,132],[847,1,1,132,133]]],[26,1,1,133,134,[[858,1,1,133,134]]],[32,1,1,134,135,[[893,1,1,134,135]]],[37,2,2,135,137,[[914,1,1,135,136],[916,1,1,136,137]]]],[190,365,465,474,757,1313,1328,1463,1589,1590,1591,1661,1662,1668,1681,1682,1689,1690,1728,1814,1833,1867,1870,1871,1950,1953,1979,2000,2043,2382,2816,2860,2977,3317,3402,3445,3460,3469,3507,3537,4050,4194,4253,4292,4871,5024,5109,5119,5277,5318,5369,5466,5485,5491,5494,5536,5649,5704,5972,6019,6086,6087,6088,6481,6482,6557,6662,6672,6684,7046,7049,7452,7468,8256,8267,8480,8518,8806,9001,9006,9038,9060,9658,9819,9841,9844,9945,10171,10923,10928,11287,11643,11667,11670,11796,11807,11947,12023,12420,12788,12898,12957,13622,14266,14580,15129,15762,16293,16304,17121,17447,17498,19114,19154,19230,19237,19425,19595,19752,19814,19912,20191,20222,20307,20662,20917,20929,20933,20936,21068,21118,21429,21675,22003,22590,22929,22948]]],["abroad",[2,2,[[4,1,1,0,1,[[175,1,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]]],[5510,12719]]],["appeared",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12380]]],["away",[4,4,[[4,1,1,0,1,[[167,1,1,0,1]]],[14,2,2,1,3,[[412,2,2,1,3]]],[23,1,1,3,4,[[792,1,1,3,4]]]],[5335,12255,12271,20089]]],["begotten",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6749]]],["bring",[4,4,[[0,1,1,0,1,[[18,1,1,0,1]]],[10,1,1,1,2,[[307,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]],[25,1,1,3,4,[[812,1,1,3,4]]]],[469,9330,19723,20664]]],["bringeth",[1,1,[[18,1,1,0,1,[[612,1,1,0,1]]]],[16182]]],["brought",[6,6,[[0,1,1,0,1,[[14,1,1,0,1]]],[3,1,1,1,2,[[131,1,1,1,2]]],[4,1,1,2,3,[[157,1,1,2,3]]],[9,1,1,3,4,[[279,1,1,3,4]]],[13,1,1,4,5,[[375,1,1,4,5]]],[23,1,1,5,6,[[751,1,1,5,6]]]],[367,4189,5059,8335,11392,19141]]],["came",[9,9,[[0,2,2,0,2,[[9,1,1,0,1],[24,1,1,1,2]]],[6,1,1,2,3,[[225,1,1,2,3]]],[9,1,1,3,4,[[282,1,1,3,4]]],[11,1,1,4,5,[[336,1,1,4,5]]],[12,2,2,5,7,[[338,1,1,5,6],[339,1,1,6,7]]],[17,2,2,7,9,[[461,1,1,7,8],[473,1,1,8,9]]]],[248,684,6948,8431,10209,10264,10359,13471,13822]]],["camest",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[596]]],["carry",[1,1,[[23,1,1,0,1,[[783,1,1,0,1]]]],[19937]]],["come",[1,1,[[1,1,1,0,1,[[66,1,1,0,1]]]],[1989]]],["cometh",[4,4,[[6,1,1,0,1,[[223,1,1,0,1]]],[17,1,1,1,2,[[463,1,1,1,2]]],[20,1,1,2,3,[[662,1,1,2,3]]],[22,1,1,3,4,[[704,1,1,3,4]]]],[6898,13509,17395,18151]]],["depart",[3,3,[[1,1,1,0,1,[[70,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[4,1,1,2,3,[[161,1,1,2,3]]]],[2099,3510,5164]]],["departed",[10,10,[[0,1,1,0,1,[[11,1,1,0,1]]],[1,1,1,1,2,[[84,1,1,1,2]]],[4,1,1,2,3,[[176,1,1,2,3]]],[8,1,1,3,4,[[258,1,1,3,4]]],[9,1,1,4,5,[[277,1,1,4,5]]],[12,1,1,5,6,[[358,1,1,5,6]]],[18,1,1,6,7,[[582,1,1,6,7]]],[23,1,1,7,8,[[773,1,1,7,8]]],[24,1,1,8,9,[[797,1,1,8,9]]],[25,1,1,9,10,[[811,1,1,9,10]]]],[302,2551,5527,7823,8267,10938,15644,19637,20316,20651]]],["departing",[1,1,[[0,1,1,0,1,[[34,1,1,0,1]]]],[1029]]],["do",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2084]]],["end",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2160]]],["escaped",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7549]]],["failed",[2,2,[[0,1,1,0,1,[[41,1,1,0,1]]],[21,1,1,1,2,[[675,1,1,1,2]]]],[1280,17604]]],["falleth",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4814]]],["fell",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6266]]],["fetch",[1,1,[[3,1,1,0,1,[[136,1,1,0,1]]]],[4321]]],["forth",[347,328,[[0,20,20,0,20,[[0,2,2,0,2],[7,5,5,2,7],[8,1,1,7,8],[9,1,1,8,9],[10,1,1,9,10],[11,1,1,10,11],[13,1,1,11,12],[14,1,1,12,13],[18,1,1,13,14],[23,3,3,14,17],[37,2,2,17,19],[41,1,1,19,20]]],[1,11,11,20,31,[[53,1,1,20,21],[54,1,1,21,22],[57,1,1,22,23],[61,3,3,23,26],[62,2,2,26,28],[63,1,1,28,29],[68,1,1,29,30],[81,1,1,30,31]]],[2,9,9,31,40,[[93,1,1,31,32],[103,2,2,32,34],[105,2,2,34,36],[114,2,2,36,38],[115,2,2,38,40]]],[3,23,23,40,63,[[117,14,14,40,54],[127,1,1,54,55],[128,1,1,55,56],[133,1,1,56,57],[136,2,2,57,59],[140,1,1,59,60],[142,1,1,60,61],[147,1,1,61,62],[149,1,1,62,63]]],[4,22,21,63,84,[[153,1,1,63,64],[154,1,1,64,65],[156,2,2,65,67],[158,1,1,67,68],[160,2,2,68,70],[161,2,2,70,72],[166,1,1,72,73],[168,4,3,73,76],[173,2,2,76,78],[175,3,3,78,81],[176,1,1,81,82],[177,1,1,82,83],[178,1,1,83,84]]],[5,7,6,84,90,[[188,1,1,84,85],[191,1,1,85,86],[195,1,1,86,87],[204,3,2,87,89],[205,1,1,89,90]]],[6,9,8,90,98,[[211,1,1,90,91],[213,1,1,91,92],[215,1,1,92,93],[219,1,1,93,94],[221,1,1,94,95],[224,2,1,95,96],[230,2,2,96,98]]],[7,2,2,98,100,[[232,1,1,98,99],[233,1,1,99,100]]],[8,8,7,100,107,[[249,1,1,100,101],[252,2,2,101,103],[253,2,1,103,104],[257,1,1,104,105],[258,1,1,105,106],[265,1,1,106,107]]],[9,13,13,107,120,[[277,1,1,107,108],[278,2,2,108,110],[279,1,1,110,111],[281,2,2,111,113],[282,2,2,113,115],[284,1,1,115,116],[285,1,1,116,117],[286,1,1,117,118],[288,2,2,118,120]]],[10,9,8,120,128,[[292,1,1,120,121],[298,2,2,121,123],[309,1,1,123,124],[310,1,1,124,125],[311,1,1,125,126],[312,3,2,126,128]]],[11,16,15,128,143,[[314,4,4,128,132],[318,1,1,132,133],[320,1,1,133,134],[321,2,2,134,136],[322,3,2,136,138],[323,1,1,138,139],[330,1,1,139,140],[331,1,1,140,141],[333,1,1,141,142],[335,1,1,142,143]]],[12,5,5,143,148,[[349,2,2,143,145],[351,1,1,145,146],[361,1,1,146,147],[362,1,1,147,148]]],[13,8,7,148,155,[[367,1,1,148,149],[372,1,1,149,150],[373,1,1,150,151],[386,2,1,151,152],[389,1,1,152,153],[391,1,1,153,154],[392,1,1,154,155]]],[14,2,2,155,157,[[403,2,2,155,157]]],[15,4,4,157,161,[[420,2,2,157,159],[421,2,2,159,161]]],[16,1,1,161,162,[[429,1,1,161,162]]],[17,9,9,162,171,[[436,1,1,162,163],[443,1,1,163,164],[445,1,1,164,165],[449,1,1,165,166],[458,1,1,166,167],[459,1,1,167,168],[463,1,1,168,169],[473,1,1,169,170],[474,1,1,170,171]]],[18,11,11,171,182,[[494,1,1,171,172],[495,1,1,172,173],[514,1,1,173,174],[545,1,1,174,175],[565,1,1,175,176],[581,2,2,176,178],[582,2,2,178,180],[585,1,1,180,181],[623,1,1,181,182]]],[19,6,4,182,186,[[634,1,1,182,183],[652,1,1,183,184],[657,4,2,184,186]]],[20,1,1,186,187,[[663,1,1,186,187]]],[21,3,3,187,190,[[671,1,1,187,188],[673,1,1,188,189],[677,1,1,189,190]]],[22,27,27,190,217,[[680,1,1,190,191],[685,1,1,191,192],[689,1,1,192,193],[691,1,1,193,194],[692,1,1,194,195],[706,1,1,195,196],[714,1,1,196,197],[715,3,3,197,200],[720,3,3,200,203],[721,2,2,203,205],[726,3,3,205,208],[727,2,2,208,210],[729,1,1,210,211],[732,1,1,211,212],[733,1,1,212,213],[739,1,1,213,214],[740,1,1,214,215],[743,1,1,215,216],[744,1,1,216,217]]],[23,41,41,217,258,[[745,1,1,217,218],[746,1,1,218,219],[748,2,2,219,221],[751,1,1,221,222],[754,2,2,222,224],[758,1,1,224,225],[759,3,3,225,228],[761,1,1,228,229],[763,1,1,229,230],[764,1,1,230,231],[766,1,1,231,232],[767,2,2,232,234],[769,1,1,234,235],[773,1,1,235,236],[774,1,1,236,237],[775,2,2,237,239],[781,3,3,239,242],[782,5,5,242,247],[783,1,1,247,248],[785,1,1,248,249],[787,1,1,249,250],[788,1,1,250,251],[790,1,1,251,252],[792,2,2,252,254],[794,1,1,254,255],[795,2,2,255,257],[796,1,1,257,258]]],[25,44,37,258,295,[[802,1,1,258,259],[804,2,2,259,261],[806,1,1,261,262],[808,1,1,262,263],[810,2,1,263,264],[813,6,4,264,268],[815,2,1,268,269],[817,1,1,269,270],[821,3,3,270,273],[822,4,4,273,277],[828,1,1,277,278],[829,1,1,278,279],[831,1,1,279,280],[834,1,1,280,281],[837,1,1,281,282],[839,1,1,282,283],[840,1,1,283,284],[843,2,2,284,286],[845,1,1,286,287],[847,9,6,287,293],[848,2,2,293,295]]],[26,6,6,295,301,[[857,1,1,295,296],[858,2,2,296,298],[859,1,1,298,299],[860,2,2,299,301]]],[27,2,2,301,303,[[867,1,1,301,302],[870,1,1,302,303]]],[28,2,2,303,305,[[877,1,1,303,304],[878,1,1,304,305]]],[29,1,1,305,306,[[883,1,1,305,306]]],[32,5,5,306,311,[[893,1,1,306,307],[896,2,2,307,309],[897,1,1,309,310],[899,1,1,310,311]]],[34,3,3,311,314,[[903,1,1,311,312],[905,2,2,312,314]]],[36,1,1,314,315,[[909,1,1,314,315]]],[37,15,12,315,327,[[912,1,1,315,316],[915,5,4,316,320],[916,5,3,320,323],[919,1,1,323,324],[920,1,1,324,325],[924,2,2,325,327]]],[38,1,1,327,328,[[928,1,1,327,328]]]],[11,23,190,199,200,201,202,223,245,297,303,354,364,473,634,636,644,1143,1144,1267,1615,1652,1730,1847,1855,1862,1875,1883,1900,2027,2449,2807,3114,3156,3225,3228,3511,3524,3534,3569,3607,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,4044,4064,4252,4319,4327,4454,4493,4677,4761,4919,4961,5049,5050,5098,5151,5152,5169,5183,5312,5343,5345,5348,5449,5457,5504,5509,5512,5534,5564,5574,5872,5939,6049,6304,6310,6322,6533,6591,6654,6797,6860,6923,7075,7079,7134,7167,7519,7638,7673,7706,7790,7823,7999,8260,8316,8317,8356,8405,8406,8431,8437,8481,8518,8562,8622,8651,8800,9004,9036,9398,9441,9464,9501,9502,9554,9572,9574,9575,9689,9730,9767,9771,9815,9818,9836,10031,10092,10134,10169,10753,10756,10789,11022,11055,11211,11291,11346,11607,11670,11709,11738,12023,12024,12508,12509,12518,12526,12768,12881,13045,13104,13183,13429,13441,13515,13825,13838,14105,14137,14456,14907,15316,15585,15594,15643,15649,15753,16345,16590,17117,17278,17284,17412,17545,17582,17638,17688,17785,17885,17916,17957,18193,18333,18361,18384,18388,18481,18483,18493,18513,18522,18615,18617,18634,18645,18653,18678,18739,18751,18854,18855,18906,18946,18951,19002,19031,19034,19144,19214,19221,19311,19316,19317,19334,19379,19409,19440,19465,19499,19503,19566,19651,19690,19695,19730,19879,19881,19886,19897,19903,19913,19916,19917,19927,19963,20009,20027,20054,20087,20125,20174,20228,20256,20283,20477,20524,20525,20550,20587,20629,20684,20686,20687,20692,20753,20776,20901,20904,20905,20947,20948,20949,20963,21154,21175,21213,21310,21379,21433,21457,21553,21567,21618,21657,21663,21664,21665,21667,21676,21682,21687,21970,22010,22011,22035,22047,22080,22172,22221,22327,22361,22426,22582,22622,22630,22635,22673,22735,22773,22781,22851,22902,22939,22940,22941,22942,22952,22953,22954,23013,23020,23070,23071,23140]]],["go",[6,6,[[3,1,1,0,1,[[142,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]],[13,1,1,2,3,[[389,1,1,2,3]]],[16,1,1,3,4,[[426,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]],[37,1,1,5,6,[[916,1,1,5,6]]]],[4491,8597,11664,12721,20257,22955]]],["goeth",[4,4,[[2,2,2,0,2,[[104,1,1,0,1],[111,1,1,1,2]]],[17,1,1,2,3,[[476,1,1,2,3]]],[18,1,1,3,4,[[518,1,1,3,4]]]],[3200,3373,13908,14548]]],["got",[2,2,[[0,2,2,0,2,[[38,2,2,0,2]]]],[1161,1164]]],["grow",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13628]]],["hence",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18239]]],["issue",[2,2,[[11,1,1,0,1,[[332,1,1,0,1]]],[22,1,1,1,2,[[717,1,1,1,2]]]],[10116,18419]]],["let",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15762]]],["on",[3,3,[[3,2,2,0,2,[[150,2,2,0,2]]],[17,1,1,2,3,[[474,1,1,2,3]]]],[4820,4825,13855]]],["out",[479,454,[[0,37,35,0,35,[[1,1,1,0,1],[3,1,1,1,2],[8,1,1,2,3],[13,2,2,3,5],[14,1,1,5,6],[16,1,1,6,7],[18,4,3,7,10],[23,4,4,10,14],[24,1,1,14,15],[26,1,1,15,16],[27,1,1,16,17],[29,1,1,17,18],[30,1,1,18,19],[33,5,4,19,23],[34,1,1,23,24],[37,3,3,24,27],[39,1,1,27,28],[40,2,2,28,30],[42,1,1,30,31],[43,1,1,31,32],[44,1,1,32,33],[45,1,1,33,34],[46,1,1,34,35]]],[1,56,53,35,88,[[50,1,1,35,36],[51,2,2,36,38],[53,2,2,38,40],[54,1,1,40,41],[56,1,1,41,42],[57,3,3,42,45],[58,2,2,45,47],[59,2,2,47,49],[60,3,2,49,51],[61,3,3,51,54],[62,3,3,54,57],[63,1,1,57,58],[64,2,2,58,60],[65,4,4,60,64],[66,1,1,64,65],[67,1,1,65,66],[69,1,1,66,67],[70,7,6,67,73],[71,1,1,73,74],[72,1,1,74,75],[74,3,3,75,78],[77,1,1,78,79],[81,2,2,79,81],[82,2,2,81,83],[83,3,2,83,85],[86,3,3,85,88]]],[2,16,16,88,104,[[97,1,1,88,89],[98,1,1,89,90],[99,2,2,90,92],[103,1,1,92,93],[104,1,1,93,94],[105,2,2,94,96],[110,1,1,96,97],[113,1,1,97,98],[114,5,5,98,103],[116,1,1,103,104]]],[3,32,30,104,134,[[117,1,1,104,105],[125,1,1,105,106],[127,2,2,106,108],[128,3,2,108,110],[132,3,3,110,113],[136,3,3,113,116],[137,4,4,116,120],[138,4,4,120,124],[139,1,1,124,125],[143,3,2,125,127],[146,1,1,127,128],[147,3,3,128,131],[148,1,1,131,132],[149,2,2,132,134]]],[4,24,23,134,157,[[153,1,1,134,135],[154,1,1,135,136],[155,1,1,136,137],[156,1,1,137,138],[157,1,1,138,139],[158,1,1,139,140],[159,1,1,140,141],[160,1,1,141,142],[161,3,2,142,144],[163,1,1,144,145],[165,2,2,145,147],[172,1,1,147,148],[176,1,1,148,149],[180,5,5,149,154],[181,1,1,154,155],[183,1,1,155,156],[185,1,1,156,157]]],[5,38,35,157,192,[[188,4,4,157,161],[191,4,3,161,164],[192,4,4,164,168],[194,4,4,168,172],[197,1,1,172,173],[200,1,1,173,174],[201,5,4,174,178],[202,3,3,178,181],[204,2,1,181,182],[205,9,9,182,191],[207,1,1,191,192]]],[6,35,33,192,225,[[212,1,1,192,193],[213,4,4,193,197],[214,3,3,197,200],[215,1,1,200,201],[216,1,1,201,202],[219,10,9,202,211],[221,3,3,211,214],[226,1,1,214,215],[229,3,3,215,218],[230,5,5,218,223],[231,3,2,223,225]]],[7,2,2,225,227,[[232,1,1,225,226],[233,1,1,226,227]]],[8,33,32,227,259,[[237,1,1,227,228],[239,1,1,228,229],[242,1,1,229,230],[243,1,1,230,231],[244,3,3,231,234],[246,3,3,234,237],[248,3,3,237,240],[252,3,3,240,243],[253,4,4,243,247],[254,2,2,247,249],[255,3,2,249,251],[256,1,1,251,252],[258,1,1,252,253],[259,2,2,253,255],[260,1,1,255,256],[261,1,1,256,257],[263,1,1,257,258],[264,1,1,258,259]]],[9,24,21,259,280,[[268,3,3,259,262],[269,1,1,262,263],[271,2,2,263,265],[272,1,1,265,266],[276,1,1,266,267],[277,3,3,267,270],[279,2,1,270,271],[282,3,2,271,273],[284,2,2,273,275],[285,1,1,275,276],[286,2,1,276,277],[290,3,3,277,280]]],[10,27,24,280,304,[[292,3,3,280,283],[293,1,1,283,284],[294,1,1,284,285],[296,1,1,285,286],[298,3,3,286,289],[299,1,1,289,290],[300,2,1,290,291],[301,1,1,291,292],[302,1,1,292,293],[305,1,1,293,294],[309,1,1,294,295],[310,9,7,295,302],[311,1,1,302,303],[312,1,1,303,304]]],[11,27,25,304,329,[[315,1,1,304,305],[316,4,4,305,309],[317,2,2,309,311],[319,3,2,311,313],[321,3,2,313,315],[322,1,1,315,316],[323,2,2,316,318],[324,2,2,318,320],[325,1,1,320,321],[330,2,2,321,323],[331,3,3,323,326],[332,1,1,326,327],[336,2,2,327,329]]],[12,14,14,329,343,[[342,1,1,329,330],[344,1,1,330,331],[346,1,1,331,332],[348,1,1,332,333],[349,1,1,333,334],[351,3,3,334,337],[356,1,1,337,338],[357,2,2,338,340],[358,1,1,340,341],[363,1,1,341,342],[364,1,1,342,343]]],[13,31,30,343,373,[[367,2,2,343,345],[371,2,2,345,347],[372,1,1,347,348],[380,2,2,348,350],[381,2,2,350,352],[382,2,2,352,354],[384,4,3,354,357],[385,2,2,357,359],[386,2,2,359,361],[387,2,2,361,363],[388,1,1,363,364],[389,1,1,364,365],[390,1,1,365,366],[392,3,3,366,369],[394,1,1,369,370],[395,1,1,370,371],[397,1,1,371,372],[401,1,1,372,373]]],[15,4,4,373,377,[[414,1,1,373,374],[415,3,3,374,377]]],[16,5,5,377,382,[[428,1,1,377,378],[429,1,1,378,379],[432,1,1,379,380],[433,2,2,380,382]]],[17,9,9,382,391,[[436,1,1,382,383],[438,1,1,383,384],[447,1,1,384,385],[450,1,1,385,386],[455,1,1,386,387],[464,1,1,387,388],[472,1,1,388,389],[473,1,1,389,390],[476,1,1,390,391]]],[18,15,15,391,406,[[496,2,2,391,393],[502,1,1,393,394],[508,1,1,394,395],[537,1,1,395,396],[543,1,1,396,397],[545,1,1,397,398],[550,1,1,398,399],[558,1,1,399,400],[584,2,2,400,402],[591,1,1,402,403],[598,1,1,403,404],[613,1,1,404,405],[621,1,1,405,406]]],[19,2,2,406,408,[[639,1,1,406,407],[649,1,1,407,408]]],[22,9,8,408,416,[[714,1,1,408,409],[715,1,1,409,410],[718,1,1,410,411],[720,1,1,411,412],[723,1,1,412,413],[730,3,2,413,415],[733,1,1,415,416]]],[23,7,7,416,423,[[749,1,1,416,417],[761,1,1,417,418],[765,2,2,418,420],[781,1,1,420,421],[782,1,1,421,422],[783,1,1,422,423]]],[24,1,1,423,424,[[799,1,1,423,424]]],[25,19,18,424,442,[[804,1,1,424,425],[811,2,2,425,427],[813,2,2,427,429],[816,1,1,429,430],[820,1,1,430,431],[821,1,1,431,432],[825,2,1,432,433],[835,1,1,433,434],[838,1,1,434,435],[843,1,1,435,436],[845,1,1,436,437],[847,1,1,437,438],[848,4,4,438,442]]],[29,3,3,442,445,[[882,1,1,442,443],[883,1,1,443,444],[884,1,1,444,445]]],[31,1,1,445,446,[[892,1,1,445,446]]],[32,2,2,446,448,[[894,1,1,446,447],[899,1,1,447,448]]],[33,1,1,448,449,[[900,1,1,448,449]]],[36,1,1,449,450,[[910,1,1,449,450]]],[37,4,4,450,454,[[912,1,1,450,451],[915,1,1,451,452],[918,1,1,452,453],[924,1,1,453,454]]]],[40,95,215,344,353,374,403,462,463,471,602,604,606,654,683,730,783,846,886,981,986,1004,1006,1022,1147,1148,1149,1186,1240,1241,1321,1352,1359,1412,1430,1537,1565,1567,1607,1608,1642,1700,1722,1739,1740,1771,1775,1783,1795,1810,1814,1838,1857,1858,1870,1876,1881,1897,1940,1942,1948,1951,1974,1976,1992,2006,2053,2079,2080,2081,2082,2084,2088,2119,2159,2227,2228,2230,2328,2450,2462,2480,2481,2514,2530,2622,2623,2625,2950,2976,2979,2984,3149,3184,3218,3219,3357,3456,3497,3499,3500,3502,3523,3591,3605,3966,4044,4048,4063,4071,4221,4229,4240,4322,4329,4331,4353,4363,4368,4373,4380,4386,4407,4411,4438,4571,4575,4650,4691,4692,4700,4742,4763,4798,4936,4970,4976,5041,5068,5107,5130,5144,5185,5186,5218,5282,5285,5428,5530,5617,5618,5630,5636,5668,5686,5730,5828,5874,5876,5879,5888,5938,5939,5940,5950,5959,5971,5972,6007,6008,6016,6024,6111,6198,6205,6206,6211,6213,6267,6271,6272,6308,6333,6334,6338,6345,6348,6353,6355,6361,6368,6385,6560,6578,6587,6590,6592,6613,6617,6621,6627,6673,6769,6774,6781,6783,6787,6789,6792,6793,6796,6832,6863,6865,6969,7047,7048,7051,7055,7068,7074,7082,7085,7123,7126,7140,7171,7243,7298,7363,7389,7402,7405,7417,7448,7452,7455,7495,7502,7508,7622,7626,7653,7681,7682,7689,7692,7709,7714,7741,7765,7777,7825,7847,7853,7898,7925,7943,7973,8061,8062,8072,8107,8134,8156,8177,8248,8272,8276,8282,8326,8431,8433,8482,8484,8530,8561,8696,8699,8712,8807,8812,8816,8823,8877,8897,8994,8995,9029,9063,9108,9137,9176,9266,9400,9424,9425,9426,9427,9429,9439,9447,9461,9514,9582,9621,9624,9640,9642,9649,9674,9719,9723,9777,9780,9802,9837,9838,9861,9862,9876,10042,10055,10070,10088,10096,10102,10214,10215,10446,10546,10643,10675,10737,10782,10789,10791,10916,10927,10929,10955,11091,11110,11204,11211,11278,11279,11316,11484,11485,11492,11495,11510,11511,11562,11563,11575,11578,11580,11604,11608,11639,11643,11651,11663,11682,11743,11750,11752,11773,11807,11855,11986,12320,12352,12353,12354,12762,12763,12815,12831,12832,12890,12915,13150,13216,13351,13539,13771,13801,13909,14172,14173,14268,14335,14817,14885,14906,15027,15222,15713,15727,15823,16089,16207,16319,16732,17025,18346,18380,18446,18487,18584,18707,18708,18752,19064,19376,19449,19452,19878,19918,19927,20361,20527,20640,20652,20685,20692,20761,20895,20909,21062,21326,21398,21566,21602,21664,21680,21681,21687,21691,22413,22426,22460,22573,22608,22679,22695,22860,22902,22945,22986,23076]]],["proceed",[6,6,[[9,1,1,0,1,[[273,1,1,0,1]]],[22,1,1,1,2,[[729,1,1,1,2]]],[23,3,3,2,5,[[753,1,1,2,3],[774,2,2,3,5]]],[34,1,1,5,6,[[903,1,1,5,6]]]],[8192,18677,19178,19686,19688,22738]]],["proceedeth",[4,4,[[0,1,1,0,1,[[23,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]],[34,1,1,3,4,[[903,1,1,3,4]]]],[641,7852,20392,22735]]],["risen",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[480]]],["spread",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11747]]],["up",[5,5,[[3,3,3,0,3,[[129,1,1,0,1],[130,2,2,1,3]]],[4,2,2,3,5,[[174,2,2,3,5]]]],[4107,4144,4145,5484,5489]]],["utter",[3,3,[[17,1,1,0,1,[[443,1,1,0,1]]],[20,1,1,1,2,[[663,1,1,1,2]]],[22,1,1,2,3,[[726,1,1,2,3]]]],[13039,17399,18634]]],["uttereth",[2,2,[[19,2,2,0,2,[[637,1,1,0,1],[656,1,1,1,2]]]],[16674,17235]]],["went",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[906]]]]},{"k":"H3319","v":[["finished",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12166]]]]},{"k":"H3320","v":[["*",[48,45,[[1,6,6,0,6,[[51,1,1,0,1],[57,1,1,1,2],[58,1,1,2,3],[63,1,1,3,4],[68,1,1,4,5],[83,1,1,5,6]]],[3,4,4,6,10,[[127,1,1,6,7],[138,1,1,7,8],[139,2,2,8,10]]],[4,5,4,10,14,[[159,1,1,10,11],[161,1,1,11,12],[163,1,1,12,13],[183,2,1,13,14]]],[5,2,2,14,16,[[187,1,1,14,15],[210,1,1,15,16]]],[6,1,1,16,17,[[230,1,1,16,17]]],[8,6,6,17,23,[[238,1,1,17,18],[245,2,2,18,20],[247,2,2,20,22],[252,1,1,22,23]]],[9,4,4,23,27,[[284,2,2,23,25],[287,1,1,25,26],[289,1,1,26,27]]],[12,1,1,27,28,[[348,1,1,27,28]]],[13,3,3,28,31,[[377,1,1,28,29],[386,2,2,29,31]]],[17,6,5,31,36,[[436,1,1,31,32],[437,2,1,32,33],[468,1,1,33,34],[473,1,1,34,35],[476,1,1,35,36]]],[18,4,4,36,40,[[479,1,1,36,37],[482,1,1,37,38],[513,1,1,38,39],[571,1,1,39,40]]],[19,2,1,40,41,[[649,2,1,40,41]]],[23,2,2,41,43,[[790,2,2,41,43]]],[34,1,1,43,44,[[904,1,1,43,44]]],[37,1,1,44,45,[[916,1,1,44,45]]]],[1558,1730,1755,1902,2043,2501,4040,4397,4419,4431,5135,5159,5233,5742,5856,6477,7056,7286,7437,7441,7467,7476,7634,8491,8508,8585,8665,10687,11427,11593,11604,12875,12892,13655,13807,13898,13947,13978,14442,15447,17044,20049,20059,22749,22952]]],["+",[3,3,[[9,1,1,0,1,[[287,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]],[37,1,1,2,3,[[916,1,1,2,3]]]],[8585,11593,22952]]],["Stand",[2,2,[[3,2,2,0,2,[[139,2,2,0,2]]]],[4419,4431]]],["fast",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20059]]],["forth",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20049]]],["himself",[3,3,[[8,1,1,0,1,[[252,1,1,0,1]]],[17,1,1,1,2,[[437,1,1,1,2]]],[18,1,1,2,3,[[513,1,1,2,3]]]],[7634,12892,14442]]],["resorted",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11427]]],["set",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22749]]],["stand",[14,13,[[1,2,2,0,2,[[57,1,1,0,1],[58,1,1,1,2]]],[3,1,1,2,3,[[127,1,1,2,3]]],[4,3,3,3,6,[[159,1,1,3,4],[161,1,1,4,5],[163,1,1,5,6]]],[5,1,1,6,7,[[187,1,1,6,7]]],[8,1,1,7,8,[[247,1,1,7,8]]],[9,1,1,8,9,[[284,1,1,8,9]]],[17,2,2,9,11,[[473,1,1,9,10],[476,1,1,10,11]]],[18,1,1,11,12,[[482,1,1,11,12]]],[19,2,1,12,13,[[649,2,1,12,13]]]],[1730,1755,4040,5135,5159,5233,5856,7476,8508,13807,13898,13978,17044]]],["still",[2,2,[[1,1,1,0,1,[[63,1,1,0,1]]],[8,1,1,1,2,[[247,1,1,1,2]]]],[1902,7467]]],["stood",[7,7,[[1,3,3,0,3,[[51,1,1,0,1],[68,1,1,1,2],[83,1,1,2,3]]],[3,1,1,3,4,[[138,1,1,3,4]]],[8,2,2,4,6,[[238,1,1,4,5],[245,1,1,5,6]]],[9,1,1,6,7,[[289,1,1,6,7]]]],[1558,2043,2501,4397,7286,7441,8665]]],["themselves",[7,7,[[4,1,1,0,1,[[183,1,1,0,1]]],[5,1,1,1,2,[[210,1,1,1,2]]],[6,1,1,2,3,[[230,1,1,2,3]]],[12,1,1,3,4,[[348,1,1,3,4]]],[17,2,2,4,6,[[436,1,1,4,5],[437,1,1,5,6]]],[18,1,1,6,7,[[479,1,1,6,7]]]],[5742,6477,7056,10687,12875,12892,13947]]],["thyself",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8491]]],["up",[2,2,[[17,1,1,0,1,[[468,1,1,0,1]]],[18,1,1,1,2,[[571,1,1,1,2]]]],[13655,15447]]],["yourselves",[3,3,[[4,1,1,0,1,[[183,1,1,0,1]]],[8,1,1,1,2,[[245,1,1,1,2]]],[13,1,1,2,3,[[386,1,1,2,3]]]],[5742,7437,11604]]]]},{"k":"H3321","v":[["truth",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21952]]]]},{"k":"H3322","v":[["*",[16,16,[[0,4,4,0,4,[[29,1,1,0,1],[32,1,1,1,2],[42,1,1,2,3],[46,1,1,3,4]]],[1,1,1,4,5,[[59,1,1,4,5]]],[4,1,1,5,6,[[180,1,1,5,6]]],[6,3,3,6,9,[[216,1,1,6,7],[217,1,1,7,8],[218,1,1,8,9]]],[8,1,1,9,10,[[240,1,1,9,10]]],[9,1,1,10,11,[[272,1,1,10,11]]],[12,1,1,11,12,[[353,1,1,11,12]]],[17,1,1,12,13,[[452,1,1,12,13]]],[23,1,1,13,14,[[795,1,1,13,14]]],[27,1,1,14,15,[[863,1,1,14,15]]],[29,1,1,15,16,[[883,1,1,15,16]]]],[868,975,1299,1422,1801,5667,6691,6699,6746,7321,8174,10821,13266,20246,22108,22438]]],["+",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[6,1,1,1,2,[[216,1,1,1,2]]]],[868,6691]]],["establish",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22438]]],["leave",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[975]]],["made",[2,2,[[17,1,1,0,1,[[452,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[13266,20246]]],["presented",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1422]]],["put",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6746]]],["set",[7,7,[[0,1,1,0,1,[[42,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]],[8,1,1,3,4,[[240,1,1,3,4]]],[9,1,1,4,5,[[272,1,1,4,5]]],[12,1,1,5,6,[[353,1,1,5,6]]],[27,1,1,6,7,[[863,1,1,6,7]]]],[1299,5667,6699,7321,8174,10821,22108]]],["stayed",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1801]]]]},{"k":"H3323","v":[["*",[23,23,[[3,1,1,0,1,[[134,1,1,0,1]]],[4,6,6,1,7,[[159,1,1,1,2],[163,1,1,2,3],[164,1,1,3,4],[166,1,1,4,5],[170,1,1,5,6],[180,1,1,6,7]]],[11,1,1,7,8,[[330,1,1,7,8]]],[13,2,2,8,10,[[397,1,1,8,9],[398,1,1,9,10]]],[15,5,5,10,15,[[417,1,1,10,11],[422,2,2,11,13],[425,2,2,13,15]]],[23,1,1,15,16,[[775,1,1,15,16]]],[27,2,2,16,18,[[863,2,2,16,18]]],[28,3,3,18,21,[[876,1,1,18,19],[877,2,2,19,21]]],[36,1,1,21,22,[[909,1,1,21,22]]],[37,1,1,22,23,[[914,1,1,22,23]]]],[4269,5124,5222,5257,5313,5388,5662,10056,11859,11903,12393,12586,12588,12676,12683,19703,22113,22127,22301,22330,22335,22851,22936]]],["+",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22936]]],["oil",[22,22,[[3,1,1,0,1,[[134,1,1,0,1]]],[4,6,6,1,7,[[159,1,1,1,2],[163,1,1,2,3],[164,1,1,3,4],[166,1,1,4,5],[170,1,1,5,6],[180,1,1,6,7]]],[11,1,1,7,8,[[330,1,1,7,8]]],[13,2,2,8,10,[[397,1,1,8,9],[398,1,1,9,10]]],[15,5,5,10,15,[[417,1,1,10,11],[422,2,2,11,13],[425,2,2,13,15]]],[23,1,1,15,16,[[775,1,1,15,16]]],[27,2,2,16,18,[[863,2,2,16,18]]],[28,3,3,18,21,[[876,1,1,18,19],[877,2,2,19,21]]],[36,1,1,21,22,[[909,1,1,21,22]]]],[4269,5124,5222,5257,5313,5388,5662,10056,11859,11903,12393,12586,12588,12676,12683,19703,22113,22127,22301,22330,22335,22851]]]]},{"k":"H3324","v":[["*",[9,9,[[1,2,2,0,2,[[55,2,2,0,2]]],[3,2,2,2,4,[[119,1,1,2,3],[132,1,1,3,4]]],[12,5,5,4,9,[[343,3,3,4,7],[360,2,2,7,9]]]],[1673,1676,3711,4195,10456,10472,10492,10995,11001]]],["Izehar",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3711]]],["Izhar",[8,8,[[1,2,2,0,2,[[55,2,2,0,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[12,5,5,3,8,[[343,3,3,3,6],[360,2,2,6,8]]]],[1673,1676,4195,10456,10472,10492,10995,11001]]]]},{"k":"H3325","v":[["*",[4,4,[[3,1,1,0,1,[[119,1,1,0,1]]],[12,3,3,1,4,[[361,1,1,1,2],[363,2,2,2,4]]]],[3719,11037,11100,11106]]],["Izeharites",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3719]]],["Izharites",[3,3,[[12,3,3,0,3,[[361,1,1,0,1],[363,2,2,1,3]]]],[11037,11100,11106]]]]},{"k":"H3326","v":[["*",[8,8,[[0,1,1,0,1,[[48,1,1,0,1]]],[10,3,3,1,4,[[296,3,3,1,4]]],[12,1,1,4,5,[[342,1,1,4,5]]],[17,1,1,5,6,[[452,1,1,5,6]]],[18,2,2,6,8,[[540,1,1,6,7],[609,1,1,7,8]]]],[1477,8901,8902,8906,10429,13273,14845,16154]]],["+",[1,1,[[18,1,1,0,1,[[609,1,1,0,1]]]],[16154]]],["bed",[3,3,[[12,1,1,0,1,[[342,1,1,0,1]]],[17,1,1,1,2,[[452,1,1,1,2]]],[18,1,1,2,3,[[540,1,1,2,3]]]],[10429,13273,14845]]],["chamber",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8902]]],["chambers",[2,2,[[10,2,2,0,2,[[296,2,2,0,2]]]],[8901,8906]]],["couch",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1477]]]]},{"k":"H3327","v":[["*",[108,101,[[0,80,74,0,74,[[16,2,2,0,2],[20,6,6,2,8],[21,5,5,8,13],[23,8,7,13,20],[24,11,9,20,29],[25,16,15,29,44],[26,13,12,44,56],[27,5,5,56,61],[30,3,3,61,64],[31,1,1,64,65],[34,5,4,65,69],[45,1,1,69,70],[47,2,2,70,72],[48,1,1,72,73],[49,1,1,73,74]]],[1,9,9,74,83,[[51,1,1,74,75],[52,3,3,75,78],[53,1,1,78,79],[55,2,2,79,81],[81,1,1,81,82],[82,1,1,82,83]]],[2,1,1,83,84,[[115,1,1,83,84]]],[3,1,1,84,85,[[148,1,1,84,85]]],[4,7,7,85,92,[[153,1,1,85,86],[158,1,1,86,87],[161,2,2,87,89],[181,1,1,89,90],[182,1,1,90,91],[186,1,1,91,92]]],[5,2,2,92,94,[[210,2,2,92,94]]],[10,1,1,94,95,[[308,1,1,94,95]]],[11,1,1,95,96,[[325,1,1,95,96]]],[12,5,4,96,100,[[338,3,2,96,98],[353,1,1,98,99],[366,1,1,99,100]]],[13,1,1,100,101,[[396,1,1,100,101]]]],[416,418,516,517,518,521,523,525,549,550,553,554,556,595,605,653,654,655,657,658,663,664,667,669,677,678,679,684,686,693,698,700,701,704,708,709,710,711,712,717,719,723,724,727,728,732,747,748,749,753,757,759,760,764,766,773,774,778,779,781,786,891,915,926,937,1023,1038,1039,1040,1387,1466,1467,1504,1530,1578,1585,1594,1595,1606,1658,1663,2451,2474,3566,4729,4900,5096,5162,5184,5692,5728,5843,6479,6480,9377,9894,10280,10286,10836,11182,11833]]],["+",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[5,1,1,1,2,[[210,1,1,1,2]]]],[657,6480]]],["Isaac",[102,95,[[0,75,69,0,69,[[16,2,2,0,2],[20,6,6,2,8],[21,5,5,8,13],[23,7,6,13,19],[24,11,9,19,28],[25,12,11,28,39],[26,13,12,39,51],[27,5,5,51,56],[30,3,3,56,59],[31,1,1,59,60],[34,5,4,60,64],[45,1,1,64,65],[47,2,2,65,67],[48,1,1,67,68],[49,1,1,68,69]]],[1,9,9,69,78,[[51,1,1,69,70],[52,3,3,70,73],[53,1,1,73,74],[55,2,2,74,76],[81,1,1,76,77],[82,1,1,77,78]]],[2,1,1,78,79,[[115,1,1,78,79]]],[3,1,1,79,80,[[148,1,1,79,80]]],[4,7,7,80,87,[[153,1,1,80,81],[158,1,1,81,82],[161,2,2,82,84],[181,1,1,84,85],[182,1,1,85,86],[186,1,1,86,87]]],[5,1,1,87,88,[[210,1,1,87,88]]],[10,1,1,88,89,[[308,1,1,88,89]]],[11,1,1,89,90,[[325,1,1,89,90]]],[12,5,4,90,94,[[338,3,2,90,92],[353,1,1,92,93],[366,1,1,93,94]]],[13,1,1,94,95,[[396,1,1,94,95]]]],[416,418,516,517,518,521,523,525,549,550,553,554,556,595,605,653,654,655,658,663,664,667,669,677,678,679,684,686,693,698,700,701,704,708,709,710,719,723,727,728,732,747,748,749,753,757,759,760,764,766,773,774,778,779,781,786,891,915,926,937,1023,1038,1039,1040,1387,1466,1467,1504,1530,1578,1585,1594,1595,1606,1658,1663,2451,2474,3566,4729,4900,5096,5162,5184,5692,5728,5843,6479,9377,9894,10280,10286,10836,11182,11833]]],["Isaac's",[4,4,[[0,4,4,0,4,[[25,4,4,0,4]]]],[711,712,717,724]]]]},{"k":"H3328","v":[["Jezoar",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10392]]]]},{"k":"H3329","v":[["+",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11896]]]]},{"k":"H3330","v":[["*",[5,5,[[26,5,5,0,5,[[851,2,2,0,2],[852,1,1,2,3],[855,1,1,3,4],[856,1,1,4,5]]]],[21766,21803,21831,21917,21949]]],["True",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21831]]],["certain",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21803]]],["certainty",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21766]]],["true",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21917]]],["truth",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21949]]]]},{"k":"H3331","v":[["*",[4,4,[[16,1,1,0,1,[[429,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]],[22,2,2,2,4,[[692,1,1,2,3],[736,1,1,3,4]]]],[12765,16247,17939,18791]]],["bed",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16247]]],["lay",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12765]]],["spread",[2,2,[[22,2,2,0,2,[[692,1,1,0,1],[736,1,1,1,2]]]],[17939,18791]]]]},{"k":"H3332","v":[["*",[53,51,[[0,2,2,0,2,[[27,1,1,0,1],[34,1,1,1,2]]],[1,8,8,2,10,[[74,1,1,2,3],[75,1,1,3,4],[78,1,1,4,5],[85,1,1,5,6],[86,2,2,6,8],[87,2,2,8,10]]],[2,8,8,10,18,[[91,2,2,10,12],[97,2,2,12,14],[98,1,1,14,15],[103,2,2,15,17],[110,1,1,17,18]]],[3,1,1,18,19,[[121,1,1,18,19]]],[5,1,1,19,20,[[193,1,1,19,20]]],[8,1,1,20,21,[[245,1,1,20,21]]],[9,2,2,21,23,[[279,1,1,21,22],[281,1,1,22,23]]],[10,8,8,23,31,[[297,6,6,23,29],[308,1,1,29,30],[312,1,1,30,31]]],[11,7,7,31,38,[[315,1,1,31,32],[316,4,4,32,36],[321,2,2,36,38]]],[13,3,3,38,41,[[370,3,3,38,41]]],[17,7,6,41,47,[[446,1,1,41,42],[457,1,1,42,43],[472,1,1,43,44],[473,1,1,44,45],[476,3,2,45,47]]],[18,2,2,47,49,[[518,1,1,47,48],[522,1,1,48,49]]],[22,2,1,49,50,[[722,2,1,49,50]]],[25,1,1,50,51,[[825,1,1,50,51]]]],[791,1025,2207,2272,2343,2602,2607,2617,2638,2660,2763,2768,2929,2932,2962,3126,3137,3355,3807,5999,7419,8326,8413,8950,8957,8958,8964,8967,8980,9374,9515,9587,9607,9608,9643,9644,9759,9762,11248,11249,11263,13123,13405,13787,13831,13911,13912,14550,14599,18536,21059]]],["+",[2,2,[[1,1,1,0,1,[[87,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]]],[2660,8413]]],["cast",[10,10,[[1,6,6,0,6,[[74,1,1,0,1],[75,1,1,1,2],[85,1,1,2,3],[86,2,2,3,5],[87,1,1,5,6]]],[10,2,2,6,8,[[297,2,2,6,8]]],[13,2,2,8,10,[[370,2,2,8,10]]]],[2207,2272,2602,2607,2617,2638,8958,8980,11249,11263]]],["fast",[1,1,[[18,1,1,0,1,[[518,1,1,0,1]]]],[14550]]],["firm",[2,2,[[17,2,2,0,2,[[476,2,2,0,2]]]],[13911,13912]]],["groweth",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13831]]],["hard",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13912]]],["molten",[6,6,[[10,4,4,0,4,[[297,4,4,0,4]]],[13,1,1,4,5,[[370,1,1,4,5]]],[17,1,1,5,6,[[472,1,1,5,6]]]],[8950,8957,8964,8967,11248,13787]]],["out",[8,8,[[2,1,1,0,1,[[98,1,1,0,1]]],[5,1,1,1,2,[[193,1,1,1,2]]],[9,1,1,2,3,[[279,1,1,2,3]]],[10,1,1,3,4,[[312,1,1,3,4]]],[11,4,4,4,8,[[316,4,4,4,8]]]],[2962,5999,8326,9515,9607,9608,9643,9644]]],["overflown",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13405]]],["pour",[11,10,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,4,4,1,5,[[91,2,2,1,3],[103,2,2,3,5]]],[3,1,1,5,6,[[121,1,1,5,6]]],[10,1,1,6,7,[[308,1,1,6,7]]],[11,1,1,7,8,[[321,1,1,7,8]]],[22,2,1,8,9,[[722,2,1,8,9]]],[25,1,1,9,10,[[825,1,1,9,10]]]],[2343,2763,2768,3126,3137,3807,9374,9759,18536,21059]]],["poured",[9,9,[[0,2,2,0,2,[[27,1,1,0,1],[34,1,1,1,2]]],[2,3,3,2,5,[[97,2,2,2,4],[110,1,1,4,5]]],[8,1,1,5,6,[[245,1,1,5,6]]],[11,2,2,6,8,[[315,1,1,6,7],[321,1,1,7,8]]],[18,1,1,8,9,[[522,1,1,8,9]]]],[791,1025,2929,2932,3355,7419,9587,9762,14599]]],["stedfast",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13123]]]]},{"k":"H3333","v":[["cast",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8958]]]]},{"k":"H3334","v":[["*",[8,8,[[0,1,1,0,1,[[31,1,1,0,1]]],[6,2,2,1,3,[[212,1,1,1,2],[220,1,1,2,3]]],[8,1,1,3,4,[[265,1,1,3,4]]],[17,2,2,4,6,[[453,1,1,4,5],[455,1,1,5,6]]],[19,1,1,6,7,[[631,1,1,6,7]]],[22,1,1,7,8,[[727,1,1,7,8]]]],[935,6560,6820,7984,13283,13348,16502,18655]]],["distressed",[4,4,[[0,1,1,0,1,[[31,1,1,0,1]]],[6,2,2,1,3,[[212,1,1,1,2],[220,1,1,2,3]]],[8,1,1,3,4,[[265,1,1,3,4]]]],[935,6560,6820,7984]]],["narrow",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18655]]],["straitened",[2,2,[[17,1,1,0,1,[[453,1,1,0,1]]],[19,1,1,1,2,[[631,1,1,1,2]]]],[13283,16502]]],["straits",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13348]]]]},{"k":"H3335","v":[["*",[62,55,[[0,3,3,0,3,[[1,3,3,0,3]]],[9,1,1,3,4,[[283,1,1,3,4]]],[11,1,1,4,5,[[331,1,1,4,5]]],[12,1,1,5,6,[[341,1,1,5,6]]],[18,8,8,6,14,[[479,1,1,6,7],[510,1,1,7,8],[551,1,1,8,9],[571,2,2,9,11],[572,1,1,11,12],[581,1,1,12,13],[616,1,1,13,14]]],[22,27,24,14,38,[[700,1,1,14,15],[705,1,1,15,16],[707,2,1,16,17],[708,1,1,17,18],[715,1,1,18,19],[719,1,1,19,20],[721,4,4,20,24],[722,6,6,24,30],[723,6,4,30,34],[724,1,1,34,35],[727,1,1,35,36],[732,1,1,36,37],[742,1,1,37,38]]],[23,13,11,38,49,[[745,1,1,38,39],[754,1,1,39,40],[762,7,5,40,45],[763,2,2,45,47],[777,1,1,47,48],[795,1,1,48,49]]],[24,1,1,49,50,[[800,1,1,49,50]]],[29,2,2,50,52,[[882,1,1,50,51],[885,1,1,51,52]]],[34,2,1,52,53,[[904,2,1,52,53]]],[37,3,2,53,55,[[921,2,1,53,54],[922,1,1,54,55]]]],[37,38,49,8477,10086,10408,13954,14381,15065,15440,15451,15459,15597,16255,18063,18162,18209,18231,18378,18476,18506,18512,18515,18526,18535,18542,18543,18545,18554,18557,18568,18570,18572,18579,18597,18641,18740,18893,18951,19217,19386,19387,19388,19390,19395,19408,19418,19777,20231,20422,22423,22465,22766,23041,23046]]],["+",[1,1,[[0,1,1,0,1,[[1,1,1,0,1]]]],[37]]],["Maker",[2,2,[[22,2,2,0,2,[[723,2,2,0,2]]]],[18570,18572]]],["earthen",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8477]]],["fashioned",[2,2,[[18,1,1,0,1,[[616,1,1,0,1]]],[22,1,1,1,2,[[700,1,1,1,2]]]],[16255,18063]]],["fashioneth",[3,3,[[18,1,1,0,1,[[510,1,1,0,1]]],[22,2,2,1,3,[[722,1,1,1,2],[723,1,1,2,3]]]],[14381,18545,18570]]],["form",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18568]]],["formed",[22,21,[[0,2,2,0,2,[[1,2,2,0,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[18,2,2,3,5,[[571,1,1,3,4],[572,1,1,4,5]]],[22,14,13,5,18,[[705,1,1,5,6],[715,1,1,6,7],[721,4,4,7,11],[722,4,4,11,15],[723,2,1,15,16],[727,1,1,16,17],[732,1,1,17,18]]],[23,2,2,18,20,[[745,1,1,18,19],[777,1,1,19,20]]],[29,1,1,20,21,[[885,1,1,20,21]]]],[38,49,10086,15440,15459,18162,18378,18506,18512,18515,18526,18535,18543,18554,18557,18579,18641,18740,18951,19777,22465]]],["former",[2,2,[[23,2,2,0,2,[[754,1,1,0,1],[795,1,1,1,2]]]],[19217,20231]]],["formeth",[2,2,[[29,1,1,0,1,[[882,1,1,0,1]]],[37,1,1,1,2,[[922,1,1,1,2]]]],[22423,23046]]],["frame",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19395]]],["framed",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18209]]],["frameth",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15451]]],["made",[2,2,[[18,2,2,0,2,[[551,1,1,0,1],[581,1,1,1,2]]]],[15065,15597]]],["make",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18542]]],["maker",[2,1,[[34,2,1,0,1,[[904,2,1,0,1]]]],[22766]]],["potter",[8,6,[[22,2,2,0,2,[[719,1,1,0,1],[742,1,1,1,2]]],[23,3,2,2,4,[[762,3,2,2,4]]],[24,1,1,4,5,[[800,1,1,4,5]]],[37,2,1,5,6,[[921,2,1,5,6]]]],[18476,18893,19388,19390,20422,23041]]],["potter's",[7,7,[[18,1,1,0,1,[[479,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]],[23,5,5,2,7,[[762,3,3,2,5],[763,2,2,5,7]]]],[13954,18209,19386,19387,19390,19408,19418]]],["potters",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10408]]],["potters'",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18231]]],["purposed",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18597]]]]},{"k":"H3336","v":[["*",[9,9,[[0,2,2,0,2,[[5,1,1,0,1],[7,1,1,1,2]]],[4,1,1,2,3,[[183,1,1,2,3]]],[12,2,2,3,5,[[365,1,1,3,4],[366,1,1,4,5]]],[18,1,1,5,6,[[580,1,1,5,6]]],[22,2,2,6,8,[[704,1,1,6,7],[707,1,1,7,8]]],[34,1,1,8,9,[[904,1,1,8,9]]]],[142,204,5749,11152,11182,15563,18133,18209,22766]]],["frame",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15563]]],["framed",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18209]]],["imagination",[4,4,[[0,2,2,0,2,[[5,1,1,0,1],[7,1,1,1,2]]],[4,1,1,2,3,[[183,1,1,2,3]]],[12,1,1,3,4,[[366,1,1,3,4]]]],[142,204,5749,11182]]],["imaginations",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11152]]],["mind",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18133]]],["work",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22766]]]]},{"k":"H3337","v":[["Jezer",[3,3,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[12,1,1,2,3,[[344,1,1,2,3]]]],[1410,4538,10548]]]]},{"k":"H3338","v":[["members",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13267]]]]},{"k":"H3339","v":[["Jezerites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4538]]]]},{"k":"H3340","v":[["Izri",[1,1,[[12,1,1,0,1,[[362,1,1,0,1]]]],[11057]]]]},{"k":"H3341","v":[["*",[29,28,[[5,2,2,0,2,[[194,2,2,0,2]]],[6,1,1,2,3,[[219,1,1,2,3]]],[9,3,2,3,5,[[280,3,2,3,5]]],[11,2,2,5,7,[[334,2,2,5,7]]],[15,2,2,7,9,[[413,1,1,7,8],[414,1,1,8,9]]],[22,2,2,9,11,[[687,1,1,9,10],[711,1,1,10,11]]],[23,14,14,11,25,[[746,1,1,11,12],[753,2,2,12,14],[755,1,1,14,15],[761,1,1,15,16],[765,1,1,16,17],[776,1,1,17,18],[787,1,1,18,19],[790,1,1,19,20],[793,2,2,20,22],[794,1,1,22,23],[795,2,2,23,25]]],[24,1,1,25,26,[[800,1,1,25,26]]],[25,1,1,26,27,[[821,1,1,26,27]]],[29,1,1,27,28,[[879,1,1,27,28]]]],[6010,6021,6803,8386,8387,10158,10162,12299,12324,17847,18291,18980,19185,19187,19242,19384,19454,19760,20009,20064,20129,20154,20198,20242,20270,20431,20942,22378]]],["+",[5,5,[[5,2,2,0,2,[[194,2,2,0,2]]],[6,1,1,2,3,[[219,1,1,2,3]]],[9,2,2,3,5,[[280,2,2,3,5]]]],[6010,6021,6803,8386,8387]]],["burned",[7,7,[[15,2,2,0,2,[[413,1,1,0,1],[414,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]],[23,4,4,3,7,[[746,1,1,3,4],[793,1,1,4,5],[795,2,2,5,7]]]],[12299,12324,18291,18980,20129,20242,20270]]],["desolate",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20064]]],["kindle",[8,8,[[22,1,1,0,1,[[687,1,1,0,1]]],[23,5,5,1,6,[[761,1,1,1,2],[765,1,1,2,3],[787,1,1,3,4],[793,1,1,4,5],[794,1,1,5,6]]],[25,1,1,6,7,[[821,1,1,6,7]]],[29,1,1,7,8,[[879,1,1,7,8]]]],[17847,19384,19454,20009,20154,20198,20942,22378]]],["kindled",[4,4,[[11,2,2,0,2,[[334,2,2,0,2]]],[23,1,1,2,3,[[755,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]]],[10158,10162,19242,20431]]],["set",[2,2,[[9,1,1,0,1,[[280,1,1,0,1]]],[23,1,1,1,2,[[776,1,1,1,2]]]],[8386,19760]]],["up",[2,2,[[23,2,2,0,2,[[753,2,2,0,2]]]],[19185,19187]]]]},{"k":"H3342","v":[["*",[16,16,[[3,2,2,0,2,[[134,2,2,0,2]]],[4,2,2,2,4,[[167,1,1,2,3],[168,1,1,3,4]]],[6,1,1,4,5,[[217,1,1,4,5]]],[11,1,1,5,6,[[318,1,1,5,6]]],[17,1,1,6,7,[[459,1,1,6,7]]],[19,1,1,7,8,[[630,1,1,7,8]]],[22,2,2,8,10,[[683,1,1,8,9],[694,1,1,9,10]]],[23,1,1,10,11,[[792,1,1,10,11]]],[27,1,1,11,12,[[870,1,1,11,12]]],[28,2,2,12,14,[[877,1,1,12,13],[878,1,1,13,14]]],[36,1,1,14,15,[[910,1,1,14,15]]],[37,1,1,15,16,[[924,1,1,15,16]]]],[4284,4287,5333,5355,6719,9701,13447,16465,17741,17979,20113,22210,22335,22356,22871,23078]]],["+",[3,3,[[4,2,2,0,2,[[167,1,1,0,1],[168,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[5333,5355,20113]]],["fats",[2,2,[[28,2,2,0,2,[[877,1,1,0,1],[878,1,1,1,2]]]],[22335,22356]]],["presses",[2,2,[[19,1,1,0,1,[[630,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]]],[16465,17979]]],["pressfat",[1,1,[[36,1,1,0,1,[[910,1,1,0,1]]]],[22871]]],["winepress",[6,6,[[3,2,2,0,2,[[134,2,2,0,2]]],[6,1,1,2,3,[[217,1,1,2,3]]],[11,1,1,3,4,[[318,1,1,3,4]]],[22,1,1,4,5,[[683,1,1,4,5]]],[27,1,1,5,6,[[870,1,1,5,6]]]],[4284,4287,6719,9701,17741,22210]]],["winepresses",[2,2,[[17,1,1,0,1,[[459,1,1,0,1]]],[37,1,1,1,2,[[924,1,1,1,2]]]],[13447,23078]]]]},{"k":"H3343","v":[["Jekabzeel",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12613]]]]},{"k":"H3344","v":[["*",[9,9,[[2,3,3,0,3,[[95,3,3,0,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[22,3,3,4,7,[[688,1,1,4,5],[708,1,1,5,6],[743,1,1,6,7]]],[23,2,2,7,9,[[759,1,1,7,8],[761,1,1,8,9]]]],[2858,2861,2862,5780,17866,18231,18902,19329,19361]]],["+",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18231]]],["burn",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[23,2,2,1,3,[[759,1,1,1,2],[761,1,1,2,3]]]],[5780,19329,19361]]],["burneth",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18902]]],["burning",[3,3,[[2,3,3,0,3,[[95,3,3,0,3]]]],[2858,2861,2862]]],["kindle",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17866]]]]},{"k":"H3345","v":[["burning",[8,8,[[26,8,8,0,8,[[852,8,8,0,8]]]],[21813,21818,21822,21824,21827,21828,21830,21833]]]]},{"k":"H3346","v":[["burning",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21944]]]]},{"k":"H3347","v":[["Jokdeam",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6258]]]]},{"k":"H3348","v":[["Jakeh",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17252]]]]},{"k":"H3349","v":[["*",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[1483,17268]]],["gathering",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1483]]],["obey",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17268]]]]},{"k":"H3350","v":[["burning",[2,1,[[22,2,1,0,1,[[688,2,1,0,1]]]],[17866]]]]},{"k":"H3351","v":[["substance",[3,3,[[0,2,2,0,2,[[6,2,2,0,2]]],[4,1,1,2,3,[[163,1,1,2,3]]]],[163,182,5214]]]]},{"k":"H3352","v":[["fowler",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22216]]]]},{"k":"H3353","v":[["*",[3,3,[[18,1,1,0,1,[[568,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]],[23,1,1,2,3,[[749,1,1,2,3]]]],[15398,16545,19084]]],["fowler",[2,2,[[18,1,1,0,1,[[568,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]]],[15398,16545]]],["snares",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19084]]]]},{"k":"H3354","v":[["Jekuthiel",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10403]]]]},{"k":"H3355","v":[["Joktan",[6,6,[[0,3,3,0,3,[[9,3,3,0,3]]],[12,3,3,3,6,[[338,3,3,3,6]]]],[259,260,263,10271,10272,10275]]]]},{"k":"H3356","v":[["Jakim",[2,2,[[12,2,2,0,2,[[345,1,1,0,1],[361,1,1,1,2]]]],[10594,11027]]]]},{"k":"H3357","v":[["dear",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19711]]]]},{"k":"H3358","v":[["*",[2,2,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,1,1,1,2,[[851,1,1,1,2]]]],[12120,21769]]],["noble",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12120]]],["rare",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21769]]]]},{"k":"H3359","v":[["*",[3,2,[[12,3,2,0,2,[[339,2,1,0,1],[340,1,1,1,2]]]],[10347,10379]]],["Jecamiah",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10379]]],["Jekamiah",[2,1,[[12,2,1,0,1,[[339,2,1,0,1]]]],[10347]]]]},{"k":"H3360","v":[["Jekameam",[2,2,[[12,2,2,0,2,[[360,1,1,0,1],[361,1,1,1,2]]]],[11002,11038]]]]},{"k":"H3361","v":[["*",[2,2,[[10,1,1,0,1,[[294,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]]],[8856,10522]]],["Jokmeam",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10522]]],["Jokneam",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8856]]]]},{"k":"H3362","v":[["Jokneam",[3,3,[[5,3,3,0,3,[[198,1,1,0,1],[205,1,1,1,2],[207,1,1,2,3]]]],[6152,6332,6415]]]]},{"k":"H3363","v":[["*",[8,8,[[0,1,1,0,1,[[31,1,1,0,1]]],[3,1,1,1,2,[[141,1,1,1,2]]],[9,3,3,2,5,[[287,3,3,2,5]]],[23,1,1,5,6,[[750,1,1,5,6]]],[25,2,2,6,8,[[824,2,2,6,8]]]],[953,4475,8586,8589,8593,19097,21024,21025]]],["+",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4475]]],["alienated",[2,2,[[25,2,2,0,2,[[824,2,2,0,2]]]],[21024,21025]]],["depart",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19097]]],["hang",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8586]]],["hanged",[2,2,[[9,2,2,0,2,[[287,2,2,0,2]]]],[8589,8593]]],["joint",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[953]]]]},{"k":"H3364","v":[["*",[11,11,[[0,5,5,0,5,[[8,1,1,0,1],[27,1,1,1,2],[40,3,3,2,5]]],[6,2,2,5,7,[[226,2,2,5,7]]],[10,2,2,7,9,[[293,1,1,7,8],[308,1,1,8,9]]],[18,1,1,9,10,[[555,1,1,9,10]]],[34,1,1,10,11,[[904,1,1,10,11]]]],[229,789,1199,1202,1216,6963,6969,8831,9368,15178,22755]]],["awake",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22755]]],["awaked",[4,4,[[0,1,1,0,1,[[27,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[18,1,1,3,4,[[555,1,1,3,4]]]],[789,6963,9368,15178]]],["awoke",[6,6,[[0,4,4,0,4,[[8,1,1,0,1],[40,3,3,1,4]]],[6,1,1,4,5,[[226,1,1,4,5]]],[10,1,1,5,6,[[293,1,1,5,6]]]],[229,1199,1202,1216,6969,8831]]]]},{"k":"H3365","v":[["*",[11,11,[[8,2,2,0,2,[[253,1,1,0,1],[261,1,1,1,2]]],[11,2,2,2,4,[[313,2,2,2,4]]],[18,3,3,4,7,[[526,1,1,4,5],[549,1,1,5,6],[616,1,1,6,7]]],[19,1,1,7,8,[[652,1,1,7,8]]],[22,2,2,8,10,[[691,1,1,8,9],[721,1,1,9,10]]],[37,1,1,10,11,[[921,1,1,10,11]]]],[7706,7926,9546,9547,14656,15014,16256,17130,17918,18509,23041]]],["Withdraw",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17130]]],["at",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23041]]],["by",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7706]]],["precious",[8,8,[[8,1,1,0,1,[[261,1,1,0,1]]],[11,2,2,1,3,[[313,2,2,1,3]]],[18,3,3,3,6,[[526,1,1,3,4],[549,1,1,4,5],[616,1,1,5,6]]],[22,2,2,6,8,[[691,1,1,6,7],[721,1,1,7,8]]]],[7926,9546,9547,14656,15014,16256,17918,18509]]]]},{"k":"H3366","v":[["*",[17,15,[[16,10,8,0,8,[[426,2,2,0,2],[431,7,5,2,7],[433,1,1,7,8]]],[17,1,1,8,9,[[463,1,1,8,9]]],[18,2,2,9,11,[[526,2,2,9,11]]],[19,1,1,11,12,[[647,1,1,11,12]]],[23,1,1,12,13,[[764,1,1,12,13]]],[25,1,1,13,14,[[823,1,1,13,14]]],[37,1,1,14,15,[[921,1,1,14,15]]]],[12706,12722,12796,12799,12800,12802,12804,12833,13514,14660,14668,16969,19427,21001,23041]]],["honour",[12,10,[[16,10,8,0,8,[[426,2,2,0,2],[431,7,5,2,7],[433,1,1,7,8]]],[18,2,2,8,10,[[526,2,2,8,10]]]],[12706,12722,12796,12799,12800,12802,12804,12833,14660,14668]]],["precious",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16969]]],["price",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23041]]],["thing",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13514]]],["things",[2,2,[[23,1,1,0,1,[[764,1,1,0,1]]],[25,1,1,1,2,[[823,1,1,1,2]]]],[19427,21001]]]]},{"k":"H3367","v":[["*",[7,7,[[26,7,7,0,7,[[851,2,2,0,2],[853,2,2,2,4],[854,2,2,4,6],[856,1,1,6,7]]]],[21764,21795,21867,21873,21892,21894,21947]]],["glory",[5,5,[[26,5,5,0,5,[[851,1,1,0,1],[853,1,1,1,2],[854,2,2,2,4],[856,1,1,4,5]]]],[21795,21873,21892,21894,21947]]],["honour",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21764,21867]]]]},{"k":"H3368","v":[["*",[36,36,[[8,1,1,0,1,[[238,1,1,0,1]]],[9,1,1,1,2,[[278,1,1,1,2]]],[10,7,7,2,9,[[295,1,1,2,3],[297,3,3,3,6],[300,3,3,6,9]]],[12,2,2,9,11,[[357,1,1,9,10],[366,1,1,10,11]]],[13,5,5,11,16,[[369,1,1,11,12],[375,3,3,12,15],[398,1,1,15,16]]],[17,2,2,16,18,[[463,1,1,16,17],[466,1,1,17,18]]],[18,4,4,18,22,[[513,1,1,18,19],[514,1,1,19,20],[522,1,1,20,21],[593,1,1,21,22]]],[19,6,6,22,28,[[628,1,1,22,23],[630,1,1,23,24],[633,1,1,24,25],[639,1,1,25,26],[644,1,1,26,27],[651,1,1,27,28]]],[20,1,1,28,29,[[668,1,1,28,29]]],[22,1,1,29,30,[[706,1,1,29,30]]],[23,1,1,30,31,[[759,1,1,30,31]]],[24,1,1,31,32,[[800,1,1,31,32]]],[25,2,2,32,34,[[828,1,1,32,33],[829,1,1,33,34]]],[26,1,1,34,35,[[860,1,1,34,35]]],[37,1,1,35,36,[[924,1,1,35,36]]]],[7277,8316,8895,8943,8944,8945,9081,9089,9090,10928,11166,11235,11365,11373,11374,11902,13520,13614,14445,14470,14606,15863,16413,16470,16566,16746,16900,17083,17494,18180,19334,20422,21143,21170,22074,23074]]],["Precious",[1,1,[[18,1,1,0,1,[[593,1,1,0,1]]]],[15863]]],["brightness",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13614]]],["clear",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23074]]],["costly",[4,4,[[10,4,4,0,4,[[295,1,1,0,1],[297,3,3,1,4]]]],[8895,8943,8944,8945]]],["excellent",[2,2,[[18,1,1,0,1,[[513,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]]],[14445,16900]]],["fat",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14470]]],["honourable",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14606]]],["precious",[24,24,[[8,1,1,0,1,[[238,1,1,0,1]]],[9,1,1,1,2,[[278,1,1,1,2]]],[10,3,3,2,5,[[300,3,3,2,5]]],[12,2,2,5,7,[[357,1,1,5,6],[366,1,1,6,7]]],[13,5,5,7,12,[[369,1,1,7,8],[375,3,3,8,11],[398,1,1,11,12]]],[17,1,1,12,13,[[463,1,1,12,13]]],[19,5,5,13,18,[[628,1,1,13,14],[630,1,1,14,15],[633,1,1,15,16],[639,1,1,16,17],[651,1,1,17,18]]],[22,1,1,18,19,[[706,1,1,18,19]]],[23,1,1,19,20,[[759,1,1,19,20]]],[24,1,1,20,21,[[800,1,1,20,21]]],[25,2,2,21,23,[[828,1,1,21,22],[829,1,1,22,23]]],[26,1,1,23,24,[[860,1,1,23,24]]]],[7277,8316,9081,9089,9090,10928,11166,11235,11365,11373,11374,11902,13520,16413,16470,16566,16746,17083,18180,19334,20422,21143,21170,22074]]],["reputation",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17494]]]]},{"k":"H3369","v":[["*",[9,9,[[4,1,1,0,1,[[159,1,1,0,1]]],[18,3,3,1,4,[[486,1,1,1,2],[601,1,1,2,3],[618,1,1,3,4]]],[19,1,1,4,5,[[633,1,1,4,5]]],[20,1,1,5,6,[[667,1,1,5,6]]],[22,2,2,6,8,[[686,1,1,6,7],[706,1,1,7,8]]],[23,1,1,8,9,[[794,1,1,8,9]]]],[5136,14037,16109,16285,16542,17487,17822,18177,20190]]],["fowlers",[1,1,[[18,1,1,0,1,[[601,1,1,0,1]]]],[16109]]],["laid",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16285]]],["snare",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20190]]],["snared",[6,6,[[4,1,1,0,1,[[159,1,1,0,1]]],[18,1,1,1,2,[[486,1,1,1,2]]],[19,1,1,2,3,[[633,1,1,2,3]]],[20,1,1,3,4,[[667,1,1,3,4]]],[22,2,2,4,6,[[686,1,1,4,5],[706,1,1,5,6]]]],[5136,14037,16542,17487,17822,18177]]]]},{"k":"H3370","v":[["Jokshan",[4,3,[[0,2,2,0,2,[[24,2,2,0,2]]],[12,2,1,2,3,[[338,2,1,2,3]]]],[660,661,10284]]]]},{"k":"H3371","v":[["Joktheel",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[11,1,1,1,2,[[326,1,1,1,2]]]],[6240,9903]]]]},{"k":"H3372","v":[["*",[334,324,[[0,20,19,0,19,[[2,1,1,0,1],[14,1,1,1,2],[17,1,1,2,3],[18,1,1,3,4],[19,1,1,4,5],[20,1,1,5,6],[25,2,2,6,8],[27,2,1,8,9],[30,1,1,9,10],[31,2,2,10,12],[34,1,1,12,13],[41,1,1,13,14],[42,2,2,14,16],[45,1,1,16,17],[49,2,2,17,19]]],[1,13,13,19,32,[[50,2,2,19,21],[51,1,1,21,22],[52,1,1,22,23],[58,2,2,23,25],[63,3,3,25,28],[64,1,1,28,29],[69,1,1,29,30],[83,2,2,30,32]]],[2,8,8,32,40,[[108,4,4,32,36],[114,3,3,36,39],[115,1,1,39,40]]],[3,4,3,40,43,[[128,1,1,40,41],[130,2,1,41,42],[137,1,1,42,43]]],[4,38,37,43,80,[[153,3,3,43,46],[154,1,1,46,47],[155,2,2,47,49],[156,1,1,49,50],[157,2,2,50,52],[158,3,3,52,55],[159,3,3,55,58],[160,2,2,58,60],[162,4,4,60,64],[165,2,2,64,66],[166,1,1,66,67],[169,2,2,67,69],[171,1,1,69,70],[172,2,2,70,72],[173,1,1,72,73],[177,1,1,73,74],[180,3,2,74,76],[183,4,4,76,80]]],[5,11,10,80,90,[[190,3,2,80,82],[194,1,1,82,83],[195,1,1,83,84],[196,3,3,84,87],[197,1,1,87,88],[208,1,1,88,89],[210,1,1,89,90]]],[6,7,7,90,97,[[214,1,1,90,91],[216,3,3,91,94],[217,1,1,94,95],[218,1,1,95,96],[223,1,1,96,97]]],[7,1,1,97,98,[[234,1,1,97,98]]],[8,22,22,98,120,[[238,1,1,98,99],[239,2,2,99,101],[242,1,1,101,102],[247,4,4,102,106],[249,1,1,106,107],[250,1,1,107,108],[252,2,2,108,110],[253,2,2,110,112],[256,1,1,112,113],[257,1,1,113,114],[258,2,2,114,116],[263,3,3,116,119],[266,1,1,119,120]]],[9,9,9,120,129,[[267,1,1,120,121],[269,1,1,121,122],[272,1,1,122,123],[273,1,1,123,124],[275,1,1,124,125],[276,1,1,125,126],[278,1,1,126,127],[279,1,1,127,128],[280,1,1,128,129]]],[10,8,8,129,137,[[291,2,2,129,131],[293,1,1,131,132],[298,2,2,132,134],[307,1,1,134,135],[308,2,2,135,137]]],[11,19,19,137,156,[[313,1,1,137,138],[316,1,1,138,139],[318,1,1,139,140],[322,1,1,140,141],[329,12,12,141,153],[331,1,1,153,154],[337,2,2,154,156]]],[12,6,6,156,162,[[347,1,1,156,157],[350,1,1,157,158],[353,1,1,158,159],[354,1,1,159,160],[359,1,1,160,161],[365,1,1,161,162]]],[13,7,7,162,169,[[372,2,2,162,164],[386,3,3,164,167],[398,2,2,167,169]]],[15,11,10,169,179,[[413,2,2,169,171],[414,1,1,171,172],[416,2,1,172,173],[418,4,4,173,177],[419,1,1,177,178],[421,1,1,178,179]]],[17,9,9,179,188,[[436,1,1,179,180],[440,2,2,180,182],[441,1,1,182,183],[444,1,1,183,184],[446,1,1,184,185],[467,1,1,185,186],[472,2,2,186,188]]],[18,47,47,188,235,[[480,1,1,188,189],[492,1,1,189,190],[500,1,1,190,191],[504,2,2,191,193],[510,1,1,193,194],[511,1,1,194,195],[517,1,1,195,196],[522,1,1,196,197],[523,1,1,197,198],[524,1,1,198,199],[526,2,2,199,201],[529,1,1,201,202],[532,1,1,202,203],[533,3,3,203,206],[541,2,2,206,208],[542,2,2,208,210],[543,2,2,210,212],[544,1,1,212,213],[545,1,1,213,214],[549,1,1,214,215],[553,3,3,215,218],[563,1,1,218,219],[566,1,1,219,220],[568,1,1,220,221],[573,1,1,221,222],[576,1,1,222,223],[579,1,1,223,224],[583,1,1,224,225],[588,1,1,225,226],[589,3,3,226,229],[595,1,1,229,230],[596,2,2,230,232],[607,1,1,232,233],[616,1,1,233,234],[622,1,1,234,235]]],[19,5,5,235,240,[[630,2,2,235,237],[641,1,1,237,238],[651,1,1,238,239],[658,1,1,239,240]]],[20,7,7,240,247,[[661,1,1,240,241],[663,1,1,241,242],[666,2,2,242,244],[667,1,1,244,245],[670,2,2,245,247]]],[22,25,24,247,271,[[685,1,1,247,248],[686,1,1,248,249],[688,1,1,249,250],[696,2,2,250,252],[699,1,1,252,253],[703,1,1,253,254],[713,1,1,254,255],[715,1,1,255,256],[718,1,1,256,257],[719,4,4,257,261],[721,2,2,261,263],[722,1,1,263,264],[729,2,2,264,266],[732,2,2,266,268],[735,2,1,268,269],[737,1,1,269,270],[742,1,1,270,271]]],[23,20,18,271,289,[[745,1,1,271,272],[747,1,1,272,273],[749,2,2,273,275],[754,2,2,275,277],[767,1,1,277,278],[770,2,2,278,280],[774,1,1,280,281],[776,1,1,281,282],[784,1,1,282,283],[785,1,1,283,284],[786,3,1,284,285],[788,1,1,285,286],[790,2,2,286,288],[795,1,1,288,289]]],[24,1,1,289,290,[[799,1,1,289,290]]],[25,6,4,290,294,[[802,1,1,290,291],[803,3,1,291,292],[804,1,1,292,293],[812,1,1,293,294]]],[26,4,4,294,298,[[850,1,1,294,295],[858,1,1,295,296],[859,2,2,296,298]]],[27,1,1,298,299,[[871,1,1,298,299]]],[28,4,4,299,303,[[877,4,4,299,303]]],[29,1,1,303,304,[[881,1,1,303,304]]],[31,4,4,304,308,[[889,4,4,304,308]]],[32,1,1,308,309,[[899,1,1,308,309]]],[34,2,2,309,311,[[903,1,1,309,310],[905,1,1,310,311]]],[35,3,3,311,314,[[907,1,1,311,312],[908,2,2,312,314]]],[36,2,2,314,316,[[909,1,1,314,315],[910,1,1,315,316]]],[37,3,3,316,319,[[918,2,2,316,318],[919,1,1,318,319]]],[38,5,5,319,324,[[925,1,1,319,320],[926,1,1,320,321],[927,2,2,321,323],[928,1,1,323,324]]]],[65,361,439,487,503,530,699,716,790,904,935,939,1028,1287,1308,1313,1389,1525,1527,1549,1553,1568,1585,1762,1772,1899,1902,1920,1931,2071,2506,2526,3284,3295,3311,3313,3486,3505,3512,3526,4067,4117,4374,4911,4913,4921,4942,4977,4997,5014,5058,5082,5088,5099,5110,5129,5130,5132,5143,5152,5198,5203,5206,5207,5276,5283,5313,5377,5383,5426,5428,5430,5468,5565,5621,5669,5734,5736,5740,5741,5924,5934,6003,6061,6066,6072,6089,6113,6451,6490,6617,6664,6677,6681,6704,6739,6890,7183,7291,7304,7317,7359,7474,7478,7480,7484,7534,7584,7629,7642,7688,7705,7784,7810,7813,7827,7947,7955,7962,8013,8036,8092,8166,8203,8234,8259,8304,8345,8371,8767,8768,8844,9025,9028,9330,9344,9353,9548,9604,9690,9797,9990,10008,10011,10015,10016,10017,10018,10019,10020,10021,10022,10024,10067,10246,10248,10663,10772,10845,10884,10977,11163,11313,11315,11590,11602,11604,11882,11893,12301,12307,12309,12373,12410,12414,12415,12420,12422,12543,12878,12972,12973,12999,13086,13123,13634,13791,13793,13963,14091,14239,14286,14288,14374,14397,14528,14601,14616,14627,14653,14664,14716,14751,14758,14759,14766,14854,14859,14865,14868,14876,14878,14900,14935,15005,15088,15089,15093,15295,15333,15400,15469,15502,15536,15673,15802,15804,15810,15811,15875,15961,16018,16144,16253,16326,16462,16480,16774,17100,17305,17373,17404,17470,17471,17477,17528,17536,17786,17819,17874,17999,18004,18036,18121,18324,18358,18429,18456,18461,18464,18465,18506,18510,18535,18680,18685,18727,18737,18776,18819,18888,18954,19010,19080,19082,19206,19208,19488,19591,19593,19677,19770,19950,19975,19986,20020,20072,20073,20258,20411,20486,20498,20511,20663,21747,21992,22027,22034,22228,22322,22332,22333,22342,22403,22536,22540,22541,22547,22681,22738,22770,22816,22827,22836,22852,22860,22989,22991,23004,23103,23108,23125,23136,23143]]],["+",[71,70,[[0,2,2,0,2,[[19,1,1,0,1],[31,1,1,1,2]]],[1,5,5,2,7,[[50,2,2,2,4],[58,2,2,4,6],[63,1,1,6,7]]],[2,5,5,7,12,[[108,2,2,7,9],[114,3,3,9,12]]],[3,1,1,12,13,[[128,1,1,12,13]]],[4,11,11,13,24,[[158,2,2,13,15],[159,1,1,15,16],[162,2,2,16,18],[166,1,1,18,19],[169,1,1,19,20],[172,1,1,20,21],[180,1,1,21,22],[183,2,2,22,24]]],[5,4,4,24,28,[[190,2,2,24,26],[208,1,1,26,27],[210,1,1,27,28]]],[6,1,1,28,29,[[216,1,1,28,29]]],[8,5,5,29,34,[[247,3,3,29,32],[249,1,1,32,33],[250,1,1,33,34]]],[9,1,1,34,35,[[269,1,1,34,35]]],[10,4,4,35,39,[[291,1,1,35,36],[293,1,1,36,37],[308,2,2,37,39]]],[11,7,7,39,46,[[313,1,1,39,40],[316,1,1,40,41],[329,4,4,41,45],[331,1,1,45,46]]],[12,2,2,46,48,[[347,1,1,46,47],[350,1,1,47,48]]],[13,2,2,48,50,[[386,1,1,48,49],[398,1,1,49,50]]],[15,3,3,50,53,[[413,1,1,50,51],[418,1,1,51,52],[419,1,1,52,53]]],[18,3,3,53,56,[[511,1,1,53,54],[579,1,1,54,55],[589,1,1,55,56]]],[19,1,1,56,57,[[630,1,1,56,57]]],[20,2,2,57,59,[[661,1,1,57,58],[670,1,1,58,59]]],[22,3,3,59,62,[[715,1,1,59,60],[718,1,1,60,61],[737,1,1,61,62]]],[23,3,3,62,65,[[749,1,1,62,63],[770,1,1,63,64],[786,1,1,64,65]]],[25,2,1,65,66,[[803,2,1,65,66]]],[26,1,1,66,67,[[850,1,1,66,67]]],[28,1,1,67,68,[[877,1,1,67,68]]],[31,2,2,68,70,[[889,2,2,68,70]]]],[503,935,1549,1553,1762,1772,1920,3295,3313,3486,3505,3512,4067,5088,5099,5130,5198,5206,5313,5383,5428,5669,5740,5741,5924,5934,6451,6490,6681,7474,7478,7484,7534,7584,8092,8768,8844,9344,9353,9548,9604,10011,10015,10016,10024,10067,10663,10772,11602,11882,12307,12410,12422,14397,15536,15804,16462,17373,17536,18358,18429,18819,19082,19591,19986,20498,21747,22333,22541,22547]]],["Fear",[31,31,[[0,3,3,0,3,[[14,1,1,0,1],[34,1,1,1,2],[49,1,1,2,3]]],[1,2,2,3,5,[[63,1,1,3,4],[69,1,1,4,5]]],[3,1,1,5,6,[[137,1,1,5,6]]],[4,1,1,6,7,[[155,1,1,6,7]]],[5,3,3,7,10,[[194,1,1,7,8],[196,2,2,8,10]]],[8,3,3,10,13,[[239,1,1,10,11],[247,1,1,11,12],[258,1,1,12,13]]],[9,1,1,13,14,[[275,1,1,13,14]]],[10,1,1,14,15,[[307,1,1,14,15]]],[11,2,2,15,17,[[318,1,1,15,16],[337,1,1,16,17]]],[22,7,7,17,24,[[719,3,3,17,20],[721,2,2,20,22],[722,1,1,22,23],[732,1,1,23,24]]],[23,3,3,24,27,[[749,1,1,24,25],[784,1,1,25,26],[790,1,1,26,27]]],[24,1,1,27,28,[[799,1,1,27,28]]],[26,1,1,28,29,[[859,1,1,28,29]]],[28,1,1,29,30,[[877,1,1,29,30]]],[35,1,1,30,31,[[908,1,1,30,31]]]],[361,1028,1525,1902,2071,4374,4977,6003,6072,6089,7317,7480,7827,8234,9330,9690,10246,18461,18464,18465,18506,18510,18535,18727,19080,19950,20073,20411,22027,22332,22836]]],["acts",[1,1,[[18,1,1,0,1,[[622,1,1,0,1]]]],[16326]]],["affright",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11893]]],["afraid",[62,61,[[0,6,6,0,6,[[2,1,1,0,1],[17,1,1,1,2],[27,1,1,2,3],[30,1,1,3,4],[41,1,1,4,5],[42,1,1,5,6]]],[1,3,3,6,9,[[52,1,1,6,7],[63,1,1,7,8],[83,1,1,8,9]]],[4,5,5,9,14,[[153,1,1,9,10],[154,1,1,10,11],[157,1,1,11,12],[159,1,1,12,13],[180,1,1,13,14]]],[5,2,2,14,16,[[195,1,1,14,15],[197,1,1,15,16]]],[8,12,12,16,28,[[239,1,1,16,17],[242,1,1,17,18],[252,2,2,18,20],[253,2,2,20,22],[256,1,1,22,23],[258,1,1,23,24],[263,3,3,24,27],[266,1,1,27,28]]],[9,3,3,28,31,[[267,1,1,28,29],[272,1,1,29,30],[280,1,1,30,31]]],[11,2,2,31,33,[[322,1,1,31,32],[337,1,1,32,33]]],[15,3,3,33,36,[[414,1,1,33,34],[416,1,1,34,35],[418,1,1,35,36]]],[17,3,3,36,39,[[440,2,2,36,38],[441,1,1,38,39]]],[18,9,9,39,48,[[480,1,1,39,40],[526,1,1,40,41],[533,2,2,41,43],[542,1,1,43,44],[568,1,1,44,45],[589,2,2,45,47],[596,1,1,47,48]]],[19,2,2,48,50,[[630,1,1,48,49],[658,1,1,49,50]]],[20,1,1,50,51,[[670,1,1,50,51]]],[22,2,2,51,53,[[688,1,1,51,52],[729,1,1,52,53]]],[23,6,5,53,58,[[745,1,1,53,54],[754,1,1,54,55],[770,1,1,55,56],[785,1,1,56,57],[786,2,1,57,58]]],[25,1,1,58,59,[[803,1,1,58,59]]],[31,1,1,59,60,[[889,1,1,59,60]]],[34,1,1,60,61,[[905,1,1,60,61]]]],[65,439,790,904,1287,1308,1585,1899,2526,4921,4942,5058,5129,5621,6061,6113,7304,7359,7629,7642,7688,7705,7784,7813,7947,7955,7962,8013,8036,8166,8371,9797,10248,12309,12373,12414,12972,12973,12999,13963,14664,14758,14766,14868,15400,15810,15811,16018,16480,17305,17528,17874,18685,18954,19206,19593,19975,19986,20498,22536,22770]]],["dread",[1,1,[[12,1,1,0,1,[[359,1,1,0,1]]]],[10977]]],["dreadful",[5,5,[[0,1,1,0,1,[[27,1,1,0,1]]],[26,1,1,1,2,[[858,1,1,1,2]]],[34,1,1,2,3,[[903,1,1,2,3]]],[38,2,2,3,5,[[925,1,1,3,4],[928,1,1,4,5]]]],[790,21992,22738,23103,23143]]],["durst",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13634]]],["fear",[93,92,[[0,6,6,0,6,[[20,1,1,0,1],[25,1,1,1,2],[31,1,1,2,3],[42,1,1,3,4],[45,1,1,4,5],[49,1,1,5,6]]],[2,1,1,6,7,[[108,1,1,6,7]]],[3,2,1,7,8,[[130,2,1,7,8]]],[4,14,14,8,22,[[153,1,1,8,9],[155,1,1,9,10],[156,1,1,10,11],[157,1,1,11,12],[158,1,1,12,13],[160,1,1,13,14],[165,2,2,14,16],[169,1,1,16,17],[171,1,1,17,18],[172,1,1,18,19],[173,1,1,19,20],[183,2,2,20,22]]],[6,4,4,22,26,[[214,1,1,22,23],[216,2,2,23,25],[217,1,1,25,26]]],[7,1,1,26,27,[[234,1,1,26,27]]],[8,1,1,27,28,[[257,1,1,27,28]]],[9,1,1,28,29,[[279,1,1,28,29]]],[10,2,2,29,31,[[298,2,2,29,31]]],[11,6,6,31,37,[[329,6,6,31,37]]],[12,1,1,37,38,[[365,1,1,37,38]]],[13,3,3,38,41,[[372,2,2,38,40],[386,1,1,40,41]]],[15,2,2,41,43,[[418,2,2,41,43]]],[17,4,4,43,47,[[436,1,1,43,44],[444,1,1,44,45],[446,1,1,45,46],[472,1,1,46,47]]],[18,18,18,47,65,[[492,1,1,47,48],[500,1,1,48,49],[504,2,2,49,51],[510,1,1,51,52],[517,1,1,52,53],[523,1,1,53,54],[526,1,1,54,55],[529,1,1,55,56],[532,1,1,56,57],[533,1,1,57,58],[541,2,2,58,60],[544,1,1,60,61],[549,1,1,61,62],[563,1,1,62,63],[595,1,1,63,64],[596,1,1,64,65]]],[19,1,1,65,66,[[651,1,1,65,66]]],[20,2,2,66,68,[[663,1,1,66,67],[666,1,1,67,68]]],[22,6,6,68,74,[[685,1,1,68,69],[686,1,1,69,70],[703,1,1,70,71],[713,1,1,71,72],[729,1,1,72,73],[732,1,1,73,74]]],[23,6,6,74,80,[[754,1,1,74,75],[767,1,1,75,76],[774,1,1,76,77],[776,1,1,77,78],[790,1,1,78,79],[795,1,1,79,80]]],[25,1,1,80,81,[[804,1,1,80,81]]],[26,1,1,81,82,[[859,1,1,81,82]]],[29,1,1,82,83,[[881,1,1,82,83]]],[31,1,1,83,84,[[889,1,1,83,84]]],[32,1,1,84,85,[[899,1,1,84,85]]],[35,1,1,85,86,[[908,1,1,85,86]]],[36,2,2,86,88,[[909,1,1,86,87],[910,1,1,87,88]]],[37,3,3,88,91,[[918,2,2,88,90],[919,1,1,90,91]]],[38,1,1,91,92,[[927,1,1,91,92]]]],[530,716,939,1313,1389,1527,3284,4117,4913,4997,5014,5082,5110,5143,5276,5283,5377,5426,5430,5468,5734,5736,6617,6664,6677,6704,7183,7810,8345,9025,9028,10017,10018,10019,10020,10021,10022,11163,11313,11315,11604,12415,12420,12878,13086,13123,13793,14091,14239,14286,14288,14374,14528,14616,14653,14716,14751,14759,14854,14859,14900,15005,15295,15875,15961,17100,17404,17470,17786,17819,18121,18324,18680,18737,19208,19488,19677,19770,20072,20258,20511,22034,22403,22540,22681,22827,22852,22860,22989,22991,23004,23125]]],["feared",[27,27,[[0,2,2,0,2,[[18,1,1,0,1],[25,1,1,1,2]]],[1,1,1,2,3,[[51,1,1,2,3]]],[4,1,1,3,4,[[177,1,1,3,4]]],[5,2,2,4,6,[[190,1,1,4,5],[196,1,1,5,6]]],[6,1,1,6,7,[[218,1,1,6,7]]],[8,1,1,7,8,[[238,1,1,7,8]]],[9,2,2,8,10,[[276,1,1,8,9],[278,1,1,9,10]]],[10,1,1,10,11,[[291,1,1,10,11]]],[11,2,2,11,13,[[329,2,2,11,13]]],[12,1,1,13,14,[[353,1,1,13,14]]],[13,1,1,14,15,[[386,1,1,14,15]]],[18,4,4,15,19,[[553,2,2,15,17],[573,1,1,17,18],[607,1,1,18,19]]],[22,2,2,19,21,[[719,1,1,19,20],[735,1,1,20,21]]],[23,2,2,21,23,[[747,1,1,21,22],[788,1,1,22,23]]],[25,1,1,23,24,[[812,1,1,23,24]]],[27,1,1,24,25,[[871,1,1,24,25]]],[38,2,2,25,27,[[926,1,1,25,26],[927,1,1,26,27]]]],[487,699,1568,5565,5924,6066,6739,7291,8259,8304,8767,9990,10008,10845,11590,15088,15089,15469,16144,18456,18776,19010,20020,20663,22228,23108,23136]]],["fearest",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18776]]],["feareth",[3,3,[[19,1,1,0,1,[[641,1,1,0,1]]],[20,2,2,1,3,[[666,1,1,1,2],[667,1,1,2,3]]]],[16774,17471,17477]]],["fearful",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]]],[1931,5669]]],["fearfully",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16253]]],["reverence",[3,3,[[2,2,2,0,2,[[108,1,1,0,1],[115,1,1,1,2]]],[18,1,1,2,3,[[566,1,1,2,3]]]],[3311,3526,15333]]],["reverend",[1,1,[[18,1,1,0,1,[[588,1,1,0,1]]]],[15802]]],["terrible",[24,24,[[4,4,4,0,4,[[153,1,1,0,1],[159,1,1,1,2],[160,1,1,2,3],[162,1,1,3,4]]],[6,1,1,4,5,[[223,1,1,4,5]]],[9,1,1,5,6,[[273,1,1,5,6]]],[15,3,3,6,9,[[413,1,1,6,7],[416,1,1,7,8],[421,1,1,8,9]]],[17,1,1,9,10,[[472,1,1,9,10]]],[18,7,7,10,17,[[522,1,1,10,11],[524,1,1,11,12],[543,2,2,12,14],[545,1,1,14,15],[553,1,1,15,16],[576,1,1,16,17]]],[22,3,3,17,20,[[696,2,2,17,19],[699,1,1,19,20]]],[25,1,1,20,21,[[802,1,1,20,21]]],[28,2,2,21,23,[[877,2,2,21,23]]],[35,1,1,23,24,[[907,1,1,23,24]]]],[4911,5132,5152,5203,6890,8203,12301,12373,12543,13791,14601,14627,14876,14878,14935,15093,15502,17999,18004,18036,20486,22322,22342,22816]]],["terribleness",[1,1,[[12,1,1,0,1,[[354,1,1,0,1]]]],[10884]]],["thing",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2506]]],["things",[4,4,[[4,1,1,0,1,[[162,1,1,0,1]]],[18,2,2,1,3,[[542,1,1,1,2],[583,1,1,2,3]]],[22,1,1,3,4,[[742,1,1,3,4]]]],[5207,14865,15673,18888]]]]},{"k":"H3373","v":[["*",[43,43,[[0,2,2,0,2,[[21,1,1,0,1],[41,1,1,1,2]]],[1,1,1,2,3,[[67,1,1,2,3]]],[4,1,1,3,4,[[172,1,1,3,4]]],[6,1,1,4,5,[[217,1,1,4,5]]],[17,3,3,5,8,[[436,2,2,5,7],[437,1,1,7,8]]],[18,26,26,8,34,[[499,2,2,8,10],[502,2,2,10,12],[508,1,1,12,13],[510,1,1,13,14],[511,2,2,14,16],[537,1,1,16,17],[538,1,1,17,18],[543,1,1,18,19],[562,1,1,19,20],[580,3,3,20,23],[588,1,1,23,24],[592,2,2,24,26],[595,1,1,26,27],[596,2,2,27,29],[605,2,2,29,31],[612,1,1,31,32],[622,1,1,32,33],[624,1,1,33,34]]],[19,3,3,34,37,[[640,1,1,34,35],[641,1,1,35,36],[658,1,1,36,37]]],[20,2,2,37,39,[[665,1,1,37,38],[666,1,1,38,39]]],[22,1,1,39,40,[[728,1,1,39,40]]],[23,1,1,40,41,[[786,1,1,40,41]]],[38,2,2,41,43,[[927,1,1,41,42],[928,1,1,42,43]]]],[559,1270,2020,5435,6697,12870,12877,12894,14227,14229,14263,14265,14350,14384,14395,14397,14811,14824,14889,15280,15560,15562,15566,15798,15841,15843,15873,15972,15977,16127,16130,16195,16339,16362,16760,16788,17314,17447,17470,18672,19991,23136,23140]]],["+",[2,2,[[0,1,1,0,1,[[41,1,1,0,1]]],[23,1,1,1,2,[[786,1,1,1,2]]]],[1270,19991]]],["fear",[26,26,[[1,1,1,0,1,[[67,1,1,0,1]]],[18,23,23,1,24,[[499,2,2,1,3],[502,1,1,3,4],[508,1,1,4,5],[510,1,1,5,6],[511,2,2,6,8],[537,1,1,8,9],[538,1,1,9,10],[543,1,1,10,11],[562,1,1,11,12],[580,3,3,12,15],[588,1,1,15,16],[592,2,2,16,18],[595,1,1,18,19],[596,2,2,19,21],[612,1,1,21,22],[622,1,1,22,23],[624,1,1,23,24]]],[20,1,1,24,25,[[666,1,1,24,25]]],[38,1,1,25,26,[[928,1,1,25,26]]]],[2020,14227,14229,14265,14350,14384,14395,14397,14811,14824,14889,15280,15560,15562,15566,15798,15841,15843,15873,15972,15977,16195,16339,16362,17470,23140]]],["feared",[2,2,[[17,1,1,0,1,[[436,1,1,0,1]]],[38,1,1,1,2,[[927,1,1,1,2]]]],[12870,23136]]],["fearest",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[559]]],["feareth",[10,10,[[17,2,2,0,2,[[436,1,1,0,1],[437,1,1,1,2]]],[18,3,3,2,5,[[502,1,1,2,3],[605,2,2,3,5]]],[19,3,3,5,8,[[640,1,1,5,6],[641,1,1,6,7],[658,1,1,7,8]]],[20,1,1,8,9,[[665,1,1,8,9]]],[22,1,1,9,10,[[728,1,1,9,10]]]],[12877,12894,14263,16127,16130,16760,16788,17314,17447,18672]]],["fearful",[2,2,[[4,1,1,0,1,[[172,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]]],[5435,6697]]]]},{"k":"H3374","v":[["*",[45,45,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,1,1,1,2,[[69,1,1,1,2]]],[4,1,1,2,3,[[154,1,1,2,3]]],[9,1,1,3,4,[[289,1,1,3,4]]],[13,1,1,4,5,[[385,1,1,4,5]]],[15,2,2,5,7,[[417,2,2,5,7]]],[17,5,5,7,12,[[439,1,1,7,8],[441,1,1,8,9],[450,1,1,9,10],[457,1,1,10,11],[463,1,1,11,12]]],[18,8,8,12,20,[[479,1,1,12,13],[482,1,1,13,14],[496,1,1,14,15],[511,1,1,15,16],[532,1,1,16,17],[567,1,1,17,18],[588,1,1,18,19],[596,1,1,19,20]]],[19,14,14,20,34,[[628,2,2,20,22],[629,1,1,22,23],[635,1,1,23,24],[636,1,1,24,25],[637,1,1,25,26],[641,2,2,26,28],[642,2,2,28,30],[643,1,1,30,31],[646,1,1,31,32],[649,1,1,32,33],[650,1,1,33,34]]],[22,6,6,34,40,[[685,1,1,34,35],[689,2,2,35,37],[707,1,1,37,38],[711,1,1,38,39],[741,1,1,39,40]]],[23,1,1,40,41,[[776,1,1,40,41]]],[25,2,2,41,43,[[802,1,1,41,42],[831,1,1,42,43]]],[31,2,2,43,45,[[889,2,2,43,45]]]],[506,2071,4963,8656,11585,12391,12397,12936,12992,13207,13393,13532,13956,13980,14177,14399,14737,15389,15803,15936,16407,16429,16438,16615,16648,16683,16798,16799,16823,16840,16846,16948,17019,17061,17807,17886,17887,18206,18285,18883,19771,20482,21217,22541,22547]]],["+",[4,4,[[17,1,1,0,1,[[457,1,1,0,1]]],[22,1,1,1,2,[[741,1,1,1,2]]],[31,2,2,2,4,[[889,2,2,2,4]]]],[13393,18883,22541,22547]]],["Fearfulness",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14737]]],["dreadful",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20482]]],["fear",[39,39,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,1,1,1,2,[[69,1,1,1,2]]],[4,1,1,2,3,[[154,1,1,2,3]]],[9,1,1,3,4,[[289,1,1,3,4]]],[13,1,1,4,5,[[385,1,1,4,5]]],[15,2,2,5,7,[[417,2,2,5,7]]],[17,4,4,7,11,[[439,1,1,7,8],[441,1,1,8,9],[450,1,1,9,10],[463,1,1,10,11]]],[18,7,7,11,18,[[479,1,1,11,12],[482,1,1,12,13],[496,1,1,13,14],[511,1,1,14,15],[567,1,1,15,16],[588,1,1,16,17],[596,1,1,17,18]]],[19,14,14,18,32,[[628,2,2,18,20],[629,1,1,20,21],[635,1,1,21,22],[636,1,1,22,23],[637,1,1,23,24],[641,2,2,24,26],[642,2,2,26,28],[643,1,1,28,29],[646,1,1,29,30],[649,1,1,30,31],[650,1,1,31,32]]],[22,5,5,32,37,[[685,1,1,32,33],[689,2,2,33,35],[707,1,1,35,36],[711,1,1,36,37]]],[23,1,1,37,38,[[776,1,1,37,38]]],[25,1,1,38,39,[[831,1,1,38,39]]]],[506,2071,4963,8656,11585,12391,12397,12936,12992,13207,13532,13956,13980,14177,14399,15389,15803,15936,16407,16429,16438,16615,16648,16683,16798,16799,16823,16840,16846,16948,17019,17061,17807,17886,17887,18206,18285,19771,21217]]]]},{"k":"H3375","v":[["Iron",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6359]]]]},{"k":"H3376","v":[["Irijah",[2,2,[[23,2,2,0,2,[[781,2,2,0,2]]]],[19887,19888]]]]},{"k":"H3377","v":[["Jareb",[2,2,[[27,2,2,0,2,[[866,1,1,0,1],[871,1,1,1,2]]]],[22165,22231]]]]},{"k":"H3378","v":[["Jerubbaal",[14,13,[[6,13,12,0,12,[[216,1,1,0,1],[217,1,1,1,2],[218,2,2,2,4],[219,9,8,4,12]]],[8,1,1,12,13,[[247,1,1,12,13]]]],[6686,6695,6748,6754,6755,6756,6759,6770,6773,6778,6782,6811,7471]]]]},{"k":"H3379","v":[["*",[104,95,[[10,55,48,0,48,[[301,6,5,0,5],[302,9,8,5,13],[303,4,4,13,17],[304,19,15,17,32],[305,9,8,32,40],[306,6,6,40,46],[311,1,1,46,47],[312,1,1,47,48]]],[11,24,23,48,71,[[315,1,1,48,49],[321,1,1,49,50],[322,2,2,50,52],[325,4,4,52,56],[326,6,6,56,62],[327,6,6,62,68],[329,3,2,68,70],[335,1,1,70,71]]],[12,1,1,71,72,[[342,1,1,71,72]]],[13,19,18,72,90,[[375,1,1,72,73],[376,5,4,73,77],[377,2,2,77,79],[378,1,1,79,80],[379,10,10,80,90]]],[27,1,1,90,91,[[862,1,1,90,91]]],[29,4,4,91,95,[[879,1,1,91,92],[885,3,3,92,95]]]],[9134,9136,9137,9139,9148,9153,9154,9163,9166,9171,9176,9177,9183,9185,9188,9217,9218,9219,9220,9222,9223,9224,9225,9228,9229,9231,9232,9234,9235,9237,9238,9248,9250,9255,9256,9258,9274,9278,9279,9283,9285,9286,9290,9302,9309,9314,9473,9532,9579,9765,9822,9824,9873,9877,9882,9884,9912,9919,9920,9923,9924,9925,9926,9933,9934,9943,9949,9953,10004,10005,10180,10445,11393,11397,11398,11407,11410,11418,11428,11452,11454,11455,11456,11457,11459,11461,11466,11468,11472,11473,22095,22365,22473,22474,22475]]],["Jeroboam",[102,93,[[10,53,46,0,46,[[301,6,5,0,5],[302,9,8,5,13],[303,4,4,13,17],[304,17,13,17,30],[305,9,8,30,38],[306,6,6,38,44],[311,1,1,44,45],[312,1,1,45,46]]],[11,24,23,46,69,[[315,1,1,46,47],[321,1,1,47,48],[322,2,2,48,50],[325,4,4,50,54],[326,6,6,54,60],[327,6,6,60,66],[329,3,2,66,68],[335,1,1,68,69]]],[12,1,1,69,70,[[342,1,1,69,70]]],[13,19,18,70,88,[[375,1,1,70,71],[376,5,4,71,75],[377,2,2,75,77],[378,1,1,77,78],[379,10,10,78,88]]],[27,1,1,88,89,[[862,1,1,88,89]]],[29,4,4,89,93,[[879,1,1,89,90],[885,3,3,90,93]]]],[9134,9136,9137,9139,9148,9153,9154,9163,9166,9171,9176,9177,9183,9185,9188,9217,9218,9219,9220,9223,9224,9225,9228,9229,9231,9232,9234,9237,9238,9248,9250,9255,9256,9258,9274,9278,9279,9283,9285,9286,9290,9302,9309,9314,9473,9532,9579,9765,9822,9824,9873,9877,9882,9884,9912,9919,9920,9923,9924,9925,9926,9933,9934,9943,9949,9953,10004,10005,10180,10445,11393,11397,11398,11407,11410,11418,11428,11452,11454,11455,11456,11457,11459,11461,11466,11468,11472,11473,22095,22365,22473,22474,22475]]],["Jeroboam's",[2,2,[[10,2,2,0,2,[[304,2,2,0,2]]]],[9222,9235]]]]},{"k":"H3380","v":[["Jerubbesheth",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8280]]]]},{"k":"H3381","v":[["*",[378,343,[[0,39,35,0,35,[[10,2,2,0,2],[11,1,1,2,3],[14,1,1,3,4],[17,1,1,4,5],[23,4,4,5,9],[25,1,1,9,10],[27,1,1,10,11],[36,2,2,11,13],[37,1,1,13,14],[38,2,1,14,15],[41,4,3,15,18],[42,8,7,18,25],[43,7,6,25,31],[44,2,2,31,33],[45,2,2,33,35]]],[1,20,19,35,54,[[51,1,1,35,36],[52,1,1,36,37],[58,1,1,37,38],[60,1,1,38,39],[64,1,1,39,40],[68,7,7,40,47],[81,3,3,47,50],[82,2,2,50,52],[83,3,2,52,54]]],[2,1,1,54,55,[[98,1,1,54,55]]],[3,16,14,55,69,[[117,1,1,55,56],[120,1,1,56,57],[126,1,1,57,58],[127,4,3,58,61],[128,1,1,61,62],[130,1,1,62,63],[132,2,2,63,65],[136,2,2,65,67],[150,3,2,67,69]]],[4,12,12,69,81,[[153,1,1,69,70],[161,3,3,70,73],[162,2,2,73,75],[172,1,1,75,76],[173,1,1,76,77],[178,1,1,77,78],[180,3,3,78,81]]],[5,19,16,81,97,[[188,3,3,81,84],[189,3,2,84,86],[194,1,1,86,87],[196,1,1,87,88],[201,1,1,88,89],[202,2,2,89,91],[203,1,1,91,92],[204,6,4,92,96],[210,1,1,96,97]]],[6,30,27,97,124,[[211,2,2,97,99],[213,2,2,99,101],[214,2,2,101,103],[215,2,2,103,105],[217,9,6,105,111],[219,2,2,111,113],[221,1,1,113,114],[224,5,5,114,119],[225,3,3,119,122],[226,2,2,122,124]]],[7,2,2,124,126,[[234,2,2,124,126]]],[8,42,35,126,161,[[237,1,1,126,127],[241,2,2,127,129],[244,2,2,129,131],[245,3,2,131,133],[248,2,2,133,135],[249,2,2,135,137],[250,2,2,137,139],[252,3,2,139,141],[254,1,1,141,142],[255,1,1,142,143],[256,1,1,143,144],[257,1,1,144,145],[258,8,6,145,151],[260,4,3,151,154],[261,4,3,154,157],[264,1,1,157,158],[265,4,3,158,161]]],[9,16,15,161,176,[[271,1,1,161,162],[277,5,4,162,166],[283,1,1,166,167],[285,4,4,167,171],[287,1,1,171,172],[288,1,1,172,173],[289,3,3,173,176]]],[10,15,14,176,190,[[291,4,4,176,180],[292,3,3,180,183],[295,1,1,183,184],[307,1,1,184,185],[308,2,2,185,187],[311,3,2,187,189],[312,1,1,189,190]]],[11,26,23,190,213,[[313,12,9,190,199],[314,1,1,199,200],[315,1,1,200,201],[317,1,1,201,202],[318,2,2,202,204],[319,1,1,204,205],[320,1,1,205,206],[321,1,1,206,207],[322,1,1,207,208],[323,1,1,208,209],[324,1,1,209,210],[325,1,1,210,211],[328,1,1,211,212],[332,1,1,212,213]]],[12,4,4,213,217,[[344,1,1,213,214],[348,3,3,214,217]]],[13,6,6,217,223,[[373,2,2,217,219],[384,1,1,219,220],[386,1,1,220,221],[388,1,1,221,222],[389,1,1,222,223]]],[15,4,3,223,226,[[415,1,1,223,224],[418,2,1,224,225],[421,1,1,225,226]]],[17,3,3,226,229,[[442,1,1,226,227],[452,1,1,227,228],[468,1,1,228,229]]],[18,24,23,229,252,[[484,1,1,229,230],[495,1,1,230,231],[499,1,1,231,232],[505,1,1,232,233],[507,2,2,233,235],[526,1,1,235,236],[532,2,2,236,238],[533,1,1,238,239],[536,1,1,239,240],[549,1,1,240,241],[555,1,1,241,242],[565,1,1,242,243],[581,1,1,243,244],[584,2,2,244,246],[592,1,1,246,247],[596,1,1,247,248],[610,3,2,248,250],[620,1,1,250,251],[621,1,1,251,252]]],[19,7,7,252,259,[[628,1,1,252,253],[632,1,1,253,254],[634,1,1,254,255],[645,1,1,255,256],[648,1,1,256,257],[653,1,1,257,258],[657,1,1,258,259]]],[20,1,1,259,260,[[661,1,1,259,260]]],[21,2,2,260,262,[[676,2,2,260,262]]],[22,24,23,262,285,[[683,1,1,262,263],[688,1,1,263,264],[692,3,3,264,267],[693,1,1,267,268],[708,1,1,268,269],[709,2,2,269,271],[710,1,1,271,272],[712,2,2,272,274],[716,3,2,274,276],[720,1,1,276,277],[721,1,1,277,278],[725,1,1,278,279],[730,1,1,279,280],[733,1,1,280,281],[741,2,2,281,283],[742,2,2,283,285]]],[23,13,13,285,298,[[753,1,1,285,286],[757,2,2,286,288],[758,1,1,288,289],[762,2,2,289,291],[766,1,1,291,292],[780,1,1,292,293],[792,2,2,293,295],[793,1,1,295,296],[794,1,1,296,297],[795,1,1,297,298]]],[24,5,5,298,303,[[797,2,2,298,300],[798,2,2,300,302],[799,1,1,302,303]]],[25,29,23,303,326,[[827,5,3,303,306],[828,1,1,306,307],[829,1,1,307,308],[831,1,1,308,309],[832,7,6,309,315],[833,11,8,315,323],[835,1,1,323,324],[848,2,2,324,326]]],[27,1,1,326,327,[[868,1,1,326,327]]],[28,3,3,327,330,[[877,1,1,327,328],[878,2,2,328,330]]],[29,3,3,330,333,[[881,1,1,330,331],[884,1,1,331,332],[887,1,1,332,333]]],[30,2,2,333,335,[[888,2,2,333,335]]],[31,4,3,335,338,[[889,3,2,335,337],[890,1,1,337,338]]],[32,2,2,338,340,[[893,2,2,338,340]]],[36,1,1,340,341,[[910,1,1,340,341]]],[37,2,2,341,343,[[920,1,1,341,342],[921,1,1,342,343]]]],[271,273,308,371,445,607,609,636,637,694,785,1108,1118,1120,1150,1254,1255,1290,1294,1295,1297,1301,1305,1310,1312,1335,1345,1347,1350,1353,1355,1367,1371,1389,1390,1559,1587,1761,1814,1925,2037,2040,2044,2046,2047,2050,2051,2439,2445,2453,2478,2482,2501,2525,2975,3655,3748,4005,4033,4041,4049,4064,4153,4224,4227,4326,4339,4827,4828,4917,5169,5172,5178,5191,5208,5447,5451,5571,5635,5654,5663,5884,5887,5892,5906,5909,6031,6091,6212,6268,6272,6284,6306,6309,6310,6311,6480,6518,6543,6595,6596,6613,6614,6634,6637,6698,6699,6703,6704,6705,6718,6790,6791,6866,6910,6914,6916,6919,6928,6937,6940,6941,6970,6980,7175,7178,7246,7346,7352,7416,7418,7423,7426,7497,7505,7544,7545,7566,7572,7626,7646,7718,7749,7785,7788,7814,7816,7818,7821,7830,7835,7862,7881,7884,7907,7911,7915,7971,7993,7994,8002,8149,8267,8268,8269,8272,8467,8527,8531,8535,8542,8595,8612,8666,8673,8674,8742,8750,8755,8770,8776,8778,8779,8887,9340,9381,9385,9467,9469,9482,9537,9539,9542,9543,9544,9545,9547,9548,9549,9553,9588,9661,9692,9707,9724,9756,9772,9806,9848,9870,9885,9980,10109,10556,10688,10695,10696,11325,11327,11544,11603,11650,11676,12342,12404,12524,13017,13276,13674,14011,14127,14233,14300,14322,14328,14665,14747,14755,14762,14801,15006,15129,15312,15579,15722,15725,15847,16034,16171,16172,16300,16310,16412,16522,16602,16909,17006,17163,17255,17380,17616,17625,17753,17863,17939,17943,17947,17963,18219,18251,18254,18278,18308,18310,18398,18408,18490,18519,18600,18700,18750,18872,18880,18886,18888,19193,19283,19284,19310,19386,19387,19455,19854,20095,20098,20143,20193,20252,20319,20326,20342,20350,20402,21111,21116,21120,21150,21165,21210,21242,21244,21245,21246,21247,21248,21266,21267,21269,21272,21273,21275,21277,21278,21339,21680,21687,22190,22334,22345,22356,22406,22452,22497,22513,22514,22534,22536,22554,22582,22591,22877,23027,23030]]],["+",[30,29,[[0,9,8,0,8,[[25,1,1,0,1],[41,1,1,1,2],[42,3,2,2,4],[43,2,2,4,6],[44,1,1,6,7],[45,1,1,7,8]]],[3,1,1,8,9,[[117,1,1,8,9]]],[4,1,1,9,10,[[173,1,1,9,10]]],[5,1,1,10,11,[[194,1,1,10,11]]],[6,6,6,11,17,[[217,2,2,11,13],[219,2,2,13,15],[224,1,1,15,16],[226,1,1,16,17]]],[8,2,2,17,19,[[241,1,1,17,18],[254,1,1,18,19]]],[9,1,1,19,20,[[277,1,1,19,20]]],[10,1,1,20,21,[[291,1,1,20,21]]],[11,2,2,21,23,[[313,1,1,21,22],[323,1,1,22,23]]],[13,1,1,23,24,[[389,1,1,23,24]]],[17,1,1,24,25,[[468,1,1,24,25]]],[18,3,3,25,28,[[507,1,1,25,26],[610,2,2,26,28]]],[25,1,1,28,29,[[832,1,1,28,29]]]],[694,1290,1297,1310,1353,1355,1371,1389,3655,5451,6031,6698,6699,6790,6791,6914,6970,7346,7718,8269,8750,9547,9848,11676,13674,14322,16171,16172,21246]]],["abundantly",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17963]]],["descend",[6,6,[[3,1,1,0,1,[[150,1,1,0,1]]],[8,1,1,1,2,[[261,1,1,1,2]]],[18,1,1,2,3,[[526,1,1,2,3]]],[22,1,1,3,4,[[683,1,1,3,4]]],[25,2,2,4,6,[[827,1,1,4,5],[832,1,1,5,6]]]],[4827,7915,14665,17753,21120,21246]]],["descended",[11,10,[[1,3,3,0,3,[[68,1,1,0,1],[82,1,1,1,2],[83,1,1,2,3]]],[4,1,1,3,4,[[161,1,1,3,4]]],[5,6,5,4,9,[[188,1,1,4,5],[203,1,1,5,6],[204,4,3,6,9]]],[19,1,1,9,10,[[657,1,1,9,10]]]],[2044,2482,2501,5178,5892,6284,6306,6309,6310,17255]]],["descending",[1,1,[[0,1,1,0,1,[[27,1,1,0,1]]]],[785]]],["down",[318,294,[[0,29,27,0,27,[[10,2,2,0,2],[11,1,1,2,3],[14,1,1,3,4],[17,1,1,4,5],[23,4,4,5,9],[36,2,2,9,11],[37,1,1,11,12],[38,2,1,12,13],[41,3,3,13,16],[42,5,5,16,21],[43,5,4,21,25],[44,1,1,25,26],[45,1,1,26,27]]],[1,15,14,27,41,[[51,1,1,27,28],[52,1,1,28,29],[58,1,1,29,30],[60,1,1,30,31],[68,6,6,31,37],[81,3,3,37,40],[83,2,1,40,41]]],[2,1,1,41,42,[[98,1,1,41,42]]],[3,12,12,42,54,[[120,1,1,42,43],[126,1,1,43,44],[127,2,2,44,46],[128,1,1,46,47],[130,1,1,47,48],[132,2,2,48,50],[136,2,2,50,52],[150,2,2,52,54]]],[4,9,9,54,63,[[153,1,1,54,55],[161,2,2,55,57],[162,2,2,57,59],[178,1,1,59,60],[180,3,3,60,63]]],[5,12,11,63,74,[[188,2,2,63,65],[189,3,2,65,67],[196,1,1,67,68],[201,1,1,68,69],[202,2,2,69,71],[204,2,2,71,73],[210,1,1,73,74]]],[6,22,20,74,94,[[211,2,2,74,76],[213,2,2,76,78],[214,2,2,78,80],[215,2,2,80,82],[217,6,4,82,86],[221,1,1,86,87],[224,4,4,87,91],[225,2,2,91,93],[226,1,1,93,94]]],[7,2,2,94,96,[[234,2,2,94,96]]],[8,38,31,96,127,[[237,1,1,96,97],[241,1,1,97,98],[244,2,2,98,100],[245,3,2,100,102],[248,2,2,102,104],[249,2,2,104,106],[250,2,2,106,108],[252,3,2,108,110],[255,1,1,110,111],[256,1,1,111,112],[257,1,1,112,113],[258,8,6,113,119],[260,3,2,119,121],[261,3,2,121,123],[264,1,1,123,124],[265,4,3,124,127]]],[9,13,13,127,140,[[271,1,1,127,128],[277,2,2,128,130],[283,1,1,130,131],[285,4,4,131,135],[287,1,1,135,136],[288,1,1,136,137],[289,3,3,137,140]]],[10,14,13,140,153,[[291,3,3,140,143],[292,3,3,143,146],[295,1,1,146,147],[307,1,1,147,148],[308,2,2,148,150],[311,3,2,150,152],[312,1,1,152,153]]],[11,24,21,153,174,[[313,11,8,153,161],[314,1,1,161,162],[315,1,1,162,163],[317,1,1,163,164],[318,2,2,164,166],[319,1,1,166,167],[320,1,1,167,168],[321,1,1,168,169],[322,1,1,169,170],[324,1,1,170,171],[325,1,1,171,172],[328,1,1,172,173],[332,1,1,173,174]]],[12,4,4,174,178,[[344,1,1,174,175],[348,3,3,175,178]]],[13,5,5,178,183,[[373,2,2,178,180],[384,1,1,180,181],[386,1,1,181,182],[388,1,1,182,183]]],[15,4,3,183,186,[[415,1,1,183,184],[418,2,1,184,185],[421,1,1,185,186]]],[17,2,2,186,188,[[442,1,1,186,187],[452,1,1,187,188]]],[18,20,20,188,208,[[484,1,1,188,189],[495,1,1,189,190],[499,1,1,190,191],[505,1,1,191,192],[507,1,1,192,193],[532,2,2,193,195],[533,1,1,195,196],[536,1,1,196,197],[549,1,1,197,198],[555,1,1,198,199],[565,1,1,199,200],[581,1,1,200,201],[584,2,2,201,203],[592,1,1,203,204],[596,1,1,204,205],[610,1,1,205,206],[620,1,1,206,207],[621,1,1,207,208]]],[19,6,6,208,214,[[628,1,1,208,209],[632,1,1,209,210],[634,1,1,210,211],[645,1,1,211,212],[648,1,1,212,213],[653,1,1,213,214]]],[21,2,2,214,216,[[676,2,2,214,216]]],[22,22,21,216,237,[[688,1,1,216,217],[692,3,3,217,220],[708,1,1,220,221],[709,2,2,221,223],[710,1,1,223,224],[712,2,2,224,226],[716,3,2,226,228],[720,1,1,228,229],[721,1,1,229,230],[725,1,1,230,231],[730,1,1,231,232],[733,1,1,232,233],[741,2,2,233,235],[742,2,2,235,237]]],[23,13,13,237,250,[[753,1,1,237,238],[757,2,2,238,240],[758,1,1,240,241],[762,2,2,241,243],[766,1,1,243,244],[780,1,1,244,245],[792,2,2,245,247],[793,1,1,247,248],[794,1,1,248,249],[795,1,1,249,250]]],[24,5,5,250,255,[[797,2,2,250,252],[798,2,2,252,254],[799,1,1,254,255]]],[25,26,22,255,277,[[827,4,3,255,258],[828,1,1,258,259],[829,1,1,259,260],[831,1,1,260,261],[832,5,5,261,266],[833,11,8,266,274],[835,1,1,274,275],[848,2,2,275,277]]],[27,1,1,277,278,[[868,1,1,277,278]]],[28,3,3,278,281,[[877,1,1,278,279],[878,2,2,279,281]]],[29,3,3,281,284,[[881,1,1,281,282],[884,1,1,282,283],[887,1,1,283,284]]],[30,2,2,284,286,[[888,2,2,284,286]]],[31,4,3,286,289,[[889,3,2,286,288],[890,1,1,288,289]]],[32,2,2,289,291,[[893,2,2,289,291]]],[36,1,1,291,292,[[910,1,1,291,292]]],[37,2,2,292,294,[[920,1,1,292,293],[921,1,1,293,294]]]],[271,273,308,371,445,607,609,636,637,1108,1118,1120,1150,1254,1255,1290,1294,1295,1301,1305,1312,1335,1345,1347,1350,1367,1390,1559,1587,1761,1814,2037,2040,2046,2047,2050,2051,2439,2445,2453,2525,2975,3748,4005,4041,4049,4064,4153,4224,4227,4326,4339,4827,4828,4917,5169,5172,5191,5208,5571,5635,5654,5663,5884,5887,5906,5909,6091,6212,6268,6272,6309,6311,6480,6518,6543,6595,6596,6613,6614,6634,6637,6703,6704,6705,6718,6866,6910,6916,6919,6928,6937,6941,6980,7175,7178,7246,7352,7416,7418,7423,7426,7497,7505,7544,7545,7566,7572,7626,7646,7749,7785,7788,7814,7816,7818,7821,7830,7835,7862,7881,7907,7911,7971,7993,7994,8002,8149,8267,8269,8467,8527,8531,8535,8542,8595,8612,8666,8673,8674,8742,8755,8770,8776,8778,8779,8887,9340,9381,9385,9467,9469,9482,9537,9539,9542,9543,9544,9545,9548,9549,9553,9588,9661,9692,9707,9724,9756,9772,9806,9870,9885,9980,10109,10556,10688,10695,10696,11325,11327,11544,11603,11650,12342,12404,12524,13017,13276,14011,14127,14233,14300,14328,14747,14755,14762,14801,15006,15129,15312,15579,15722,15725,15847,16034,16171,16300,16310,16412,16522,16602,16909,17006,17163,17616,17625,17863,17939,17943,17947,18219,18251,18254,18278,18308,18310,18398,18408,18490,18519,18600,18700,18750,18872,18880,18886,18888,19193,19283,19284,19310,19386,19387,19455,19854,20095,20098,20143,20193,20252,20319,20326,20342,20350,20402,21111,21116,21120,21150,21165,21210,21242,21244,21245,21247,21248,21266,21267,21269,21272,21273,21275,21277,21278,21339,21680,21687,22190,22334,22345,22356,22406,22452,22497,22513,22514,22534,22536,22554,22582,22591,22877,23027,23030]]],["fell",[2,1,[[3,2,1,0,1,[[127,2,1,0,1]]]],[4033]]],["go",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6704]]],["goeth",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17380]]],["lighted",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7884]]],["off",[1,1,[[1,1,1,0,1,[[82,1,1,0,1]]]],[2478]]],["sank",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1925]]],["subdued",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5447]]],["went",[3,3,[[6,1,1,0,1,[[225,1,1,0,1]]],[9,2,2,1,3,[[277,2,2,1,3]]]],[6940,8268,8272]]]]},{"k":"H3382","v":[["*",[7,7,[[0,5,5,0,5,[[4,5,5,0,5]]],[12,2,2,5,7,[[338,1,1,5,6],[341,1,1,6,7]]]],[120,121,123,124,125,10254,10403]]],["Jared",[5,5,[[0,5,5,0,5,[[4,5,5,0,5]]]],[120,121,123,124,125]]],["Jered",[2,2,[[12,2,2,0,2,[[338,1,1,0,1],[341,1,1,1,2]]]],[10254,10403]]]]},{"k":"H3383","v":[["*",[182,164,[[0,5,5,0,5,[[12,2,2,0,2],[31,1,1,2,3],[49,2,2,3,5]]],[3,21,20,5,25,[[129,1,1,5,6],[138,1,1,6,7],[142,2,2,7,9],[147,1,1,9,10],[148,6,5,10,15],[149,4,4,15,19],[150,2,2,19,21],[151,3,3,21,24],[152,1,1,24,25]]],[4,26,26,25,51,[[153,2,2,25,27],[154,1,1,27,28],[155,5,5,28,33],[156,7,7,33,40],[161,1,1,40,41],[163,2,2,41,43],[164,1,1,43,44],[179,3,3,44,47],[182,1,1,47,48],[183,2,2,48,50],[184,1,1,50,51]]],[5,70,58,51,109,[[187,4,4,51,55],[188,2,2,55,57],[189,11,7,57,64],[190,17,14,64,78],[191,2,1,78,79],[193,2,1,79,80],[195,2,2,80,82],[198,2,2,82,84],[199,5,4,84,88],[200,1,1,88,89],[201,2,1,89,90],[202,2,2,90,92],[203,1,1,92,93],[204,4,4,93,97],[205,3,3,97,100],[206,1,1,100,101],[208,6,5,101,106],[209,1,1,106,107],[210,2,2,107,109]]],[6,12,11,109,120,[[213,1,1,109,110],[215,1,1,110,111],[217,3,2,111,113],[218,1,1,113,114],[220,2,2,114,116],[221,2,2,116,118],[222,2,2,118,120]]],[8,2,2,120,122,[[248,1,1,120,121],[266,1,1,121,122]]],[9,16,13,122,135,[[268,1,1,122,123],[276,1,1,123,124],[283,3,2,124,126],[285,9,7,126,133],[286,1,1,133,134],[290,1,1,134,135]]],[10,4,4,135,139,[[292,1,1,135,136],[297,1,1,136,137],[307,2,2,137,139]]],[11,9,9,139,148,[[314,3,3,139,142],[317,2,2,142,144],[318,2,2,144,146],[319,1,1,146,147],[322,1,1,147,148]]],[12,6,5,148,153,[[343,2,1,148,149],[349,2,2,149,151],[356,1,1,151,152],[363,1,1,152,153]]],[13,1,1,153,154,[[370,1,1,153,154]]],[17,1,1,154,155,[[475,1,1,154,155]]],[18,3,3,155,158,[[519,1,1,155,156],[591,2,2,156,158]]],[22,1,1,158,159,[[687,1,1,158,159]]],[23,3,3,159,162,[[756,1,1,159,160],[793,1,1,160,161],[794,1,1,161,162]]],[25,1,1,162,163,[[848,1,1,162,163]]],[37,1,1,163,164,[[921,1,1,163,164]]]],[328,329,938,1516,1517,4104,4376,4492,4552,4676,4723,4737,4739,4747,4750,4808,4809,4810,4811,4828,4831,4846,4855,4859,4892,4893,4897,4967,4983,4992,4995,5000,5002,5025,5026,5030,5045,5050,5051,5053,5158,5238,5239,5250,5587,5589,5597,5726,5730,5741,5805,5853,5862,5865,5866,5876,5879,5894,5901,5904,5906,5907,5908,5910,5911,5913,5915,5917,5918,5919,5920,5926,5927,5928,5929,5930,5932,5933,5935,5983,6038,6047,6131,6137,6162,6177,6181,6186,6190,6207,6266,6272,6280,6300,6305,6312,6313,6343,6354,6355,6380,6430,6433,6436,6437,6451,6464,6484,6487,6596,6640,6718,6719,6723,6819,6820,6842,6851,6874,6875,7492,8016,8078,8257,8471,8473,8526,8528,8529,8542,8547,8550,8552,8556,8697,8778,8980,9320,9322,9557,9558,9564,9657,9661,9676,9678,9722,9826,10532,10735,10757,10924,11107,11263,13887,14561,15825,15827,17830,19254,20146,20210,21697,23031]]],["+",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6266]]],["Jordan",[181,163,[[0,5,5,0,5,[[12,2,2,0,2],[31,1,1,2,3],[49,2,2,3,5]]],[3,21,20,5,25,[[129,1,1,5,6],[138,1,1,6,7],[142,2,2,7,9],[147,1,1,9,10],[148,6,5,10,15],[149,4,4,15,19],[150,2,2,19,21],[151,3,3,21,24],[152,1,1,24,25]]],[4,26,26,25,51,[[153,2,2,25,27],[154,1,1,27,28],[155,5,5,28,33],[156,7,7,33,40],[161,1,1,40,41],[163,2,2,41,43],[164,1,1,43,44],[179,3,3,44,47],[182,1,1,47,48],[183,2,2,48,50],[184,1,1,50,51]]],[5,69,57,51,108,[[187,4,4,51,55],[188,2,2,55,57],[189,11,7,57,64],[190,17,14,64,78],[191,2,1,78,79],[193,2,1,79,80],[195,2,2,80,82],[198,2,2,82,84],[199,5,4,84,88],[200,1,1,88,89],[201,2,1,89,90],[202,1,1,90,91],[203,1,1,91,92],[204,4,4,92,96],[205,3,3,96,99],[206,1,1,99,100],[208,6,5,100,105],[209,1,1,105,106],[210,2,2,106,108]]],[6,12,11,108,119,[[213,1,1,108,109],[215,1,1,109,110],[217,3,2,110,112],[218,1,1,112,113],[220,2,2,113,115],[221,2,2,115,117],[222,2,2,117,119]]],[8,2,2,119,121,[[248,1,1,119,120],[266,1,1,120,121]]],[9,16,13,121,134,[[268,1,1,121,122],[276,1,1,122,123],[283,3,2,123,125],[285,9,7,125,132],[286,1,1,132,133],[290,1,1,133,134]]],[10,4,4,134,138,[[292,1,1,134,135],[297,1,1,135,136],[307,2,2,136,138]]],[11,9,9,138,147,[[314,3,3,138,141],[317,2,2,141,143],[318,2,2,143,145],[319,1,1,145,146],[322,1,1,146,147]]],[12,6,5,147,152,[[343,2,1,147,148],[349,2,2,148,150],[356,1,1,150,151],[363,1,1,151,152]]],[13,1,1,152,153,[[370,1,1,152,153]]],[17,1,1,153,154,[[475,1,1,153,154]]],[18,3,3,154,157,[[519,1,1,154,155],[591,2,2,155,157]]],[22,1,1,157,158,[[687,1,1,157,158]]],[23,3,3,158,161,[[756,1,1,158,159],[793,1,1,159,160],[794,1,1,160,161]]],[25,1,1,161,162,[[848,1,1,161,162]]],[37,1,1,162,163,[[921,1,1,162,163]]]],[328,329,938,1516,1517,4104,4376,4492,4552,4676,4723,4737,4739,4747,4750,4808,4809,4810,4811,4828,4831,4846,4855,4859,4892,4893,4897,4967,4983,4992,4995,5000,5002,5025,5026,5030,5045,5050,5051,5053,5158,5238,5239,5250,5587,5589,5597,5726,5730,5741,5805,5853,5862,5865,5866,5876,5879,5894,5901,5904,5906,5907,5908,5910,5911,5913,5915,5917,5918,5919,5920,5926,5927,5928,5929,5930,5932,5933,5935,5983,6038,6047,6131,6137,6162,6177,6181,6186,6190,6207,6272,6280,6300,6305,6312,6313,6343,6354,6355,6380,6430,6433,6436,6437,6451,6464,6484,6487,6596,6640,6718,6719,6723,6819,6820,6842,6851,6874,6875,7492,8016,8078,8257,8471,8473,8526,8528,8529,8542,8547,8550,8552,8556,8697,8778,8980,9320,9322,9557,9558,9564,9657,9661,9676,9678,9722,9826,10532,10735,10757,10924,11107,11263,13887,14561,15825,15827,17830,19254,20146,20210,21697,23031]]]]},{"k":"H3384","v":[["*",[83,74,[[0,2,2,0,2,[[30,1,1,0,1],[45,1,1,1,2]]],[1,8,7,2,9,[[53,2,2,2,4],[64,2,2,4,6],[68,2,1,6,7],[73,1,1,7,8],[84,1,1,8,9]]],[2,2,2,9,11,[[99,1,1,9,10],[103,1,1,10,11]]],[3,1,1,11,12,[[137,1,1,11,12]]],[4,4,4,12,16,[[169,2,2,12,14],[176,1,1,14,15],[185,1,1,15,16]]],[5,1,1,16,17,[[204,1,1,16,17]]],[6,1,1,17,18,[[223,1,1,17,18]]],[8,7,5,18,23,[[247,1,1,18,19],[255,4,3,19,22],[266,2,1,22,23]]],[9,3,2,23,25,[[277,3,2,23,25]]],[10,1,1,25,26,[[298,1,1,25,26]]],[11,6,5,26,31,[[324,1,1,26,27],[325,2,1,27,28],[329,2,2,28,30],[331,1,1,30,31]]],[12,2,1,31,32,[[347,2,1,31,32]]],[13,5,4,32,36,[[372,1,1,32,33],[381,1,1,33,34],[392,1,1,34,35],[401,2,1,35,36]]],[17,9,9,36,45,[[441,1,1,36,37],[443,1,1,37,38],[447,2,2,38,40],[462,1,1,40,41],[465,1,1,41,42],[469,1,1,42,43],[471,1,1,43,44],[473,1,1,44,45]]],[18,12,11,45,56,[[488,1,1,45,46],[502,2,2,46,48],[504,1,1,48,49],[509,1,1,49,50],[522,1,1,50,51],[541,3,2,51,53],[563,1,1,53,54],[596,2,2,54,56]]],[19,6,6,56,62,[[631,2,2,56,58],[632,1,1,58,59],[633,1,1,59,60],[638,1,1,60,61],[653,1,1,61,62]]],[22,7,6,62,68,[[680,1,1,62,63],[687,1,1,63,64],[706,2,2,64,66],[708,2,1,66,67],[715,1,1,67,68]]],[25,1,1,68,69,[[845,1,1,68,69]]],[27,1,1,69,70,[[871,1,1,69,70]]],[32,2,2,70,72,[[895,1,1,70,71],[896,1,1,71,72]]],[34,2,2,72,74,[[904,2,2,72,74]]]],[924,1414,1613,1616,1924,1945,2039,2189,2565,2988,3168,4370,5374,5375,5533,5820,6299,6892,7483,7750,7766,7767,8012,8279,8283,9021,9852,9888,10010,10011,10093,10662,11309,11493,11747,11989,13002,13039,13135,13136,13492,13576,13715,13758,13799,14061,14259,14263,14296,14363,14601,14854,14857,15295,15931,16000,16494,16501,16530,16553,16713,17159,17688,17844,18173,18190,18237,18385,21622,22237,22619,22622,22766,22767]]],["+",[6,4,[[1,2,1,0,1,[[68,2,1,0,1]]],[2,1,1,1,2,[[99,1,1,1,2]]],[8,2,1,2,3,[[266,2,1,2,3]]],[12,1,1,3,4,[[347,1,1,3,4]]]],[2039,2988,8012,10662]]],["Shoot",[1,1,[[11,1,1,0,1,[[325,1,1,0,1]]]],[9888]]],["Teach",[4,4,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,3,3,1,4,[[504,1,1,1,2],[563,1,1,2,3],[596,1,1,3,4]]]],[13002,14296,15295,15931]]],["archers",[2,2,[[12,1,1,0,1,[[347,1,1,0,1]]],[13,1,1,1,2,[[401,1,1,1,2]]]],[10662,11989]]],["cast",[4,4,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[5,1,1,2,3,[[204,1,1,2,3]]],[17,1,1,3,4,[[465,1,1,3,4]]]],[924,1924,6299,13576]]],["casteth",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17159]]],["direct",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1414]]],["inform",[1,1,[[4,1,1,0,1,[[169,1,1,0,1]]]],[5374]]],["instructed",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9852]]],["laid",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13799]]],["rain",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22237]]],["shewed",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1945]]],["shoot",[10,9,[[8,2,2,0,2,[[255,2,2,0,2]]],[9,1,1,2,3,[[277,1,1,2,3]]],[11,1,1,3,4,[[331,1,1,3,4]]],[13,1,1,4,5,[[392,1,1,4,5]]],[18,4,3,5,8,[[488,1,1,5,6],[541,3,2,6,8]]],[22,1,1,8,9,[[715,1,1,8,9]]]],[7750,7766,8279,10093,11747,14061,14854,14857,18385]]],["shooters",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8283]]],["shot",[6,6,[[3,1,1,0,1,[[137,1,1,0,1]]],[8,2,2,1,3,[[255,2,2,1,3]]],[9,1,1,3,4,[[277,1,1,3,4]]],[11,1,1,4,5,[[325,1,1,4,5]]],[13,1,1,5,6,[[401,1,1,5,6]]]],[4370,7766,7767,8283,9888,11989]]],["taught",[5,5,[[11,1,1,0,1,[[329,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[19,2,2,3,5,[[631,2,2,3,5]]]],[10011,11309,16000,16494,16501]]],["teach",[28,28,[[1,4,4,0,4,[[53,2,2,0,2],[73,1,1,2,3],[84,1,1,3,4]]],[2,1,1,4,5,[[103,1,1,4,5]]],[4,3,3,5,8,[[169,1,1,5,6],[176,1,1,6,7],[185,1,1,7,8]]],[6,1,1,8,9,[[223,1,1,8,9]]],[8,1,1,9,10,[[247,1,1,9,10]]],[10,1,1,10,11,[[298,1,1,10,11]]],[11,1,1,11,12,[[329,1,1,11,12]]],[17,5,5,12,17,[[443,1,1,12,13],[447,2,2,13,15],[462,1,1,15,16],[469,1,1,16,17]]],[18,4,4,17,21,[[502,2,2,17,19],[509,1,1,19,20],[522,1,1,20,21]]],[22,3,3,21,24,[[680,1,1,21,22],[706,2,2,22,24]]],[25,1,1,24,25,[[845,1,1,24,25]]],[32,2,2,25,27,[[895,1,1,25,26],[896,1,1,26,27]]],[34,1,1,27,28,[[904,1,1,27,28]]]],[1613,1616,2189,2565,3168,5375,5533,5820,6892,7483,9021,10010,13039,13135,13136,13492,13715,14259,14263,14363,14601,17688,18173,18190,21622,22619,22622,22767]]],["teacher",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22766]]],["teachers",[3,2,[[19,1,1,0,1,[[632,1,1,0,1]]],[22,2,1,1,2,[[708,2,1,1,2]]]],[16530,18237]]],["teacheth",[3,3,[[17,1,1,0,1,[[471,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]],[22,1,1,2,3,[[687,1,1,2,3]]]],[13758,16553,17844]]],["teaching",[1,1,[[13,1,1,0,1,[[381,1,1,0,1]]]],[11493]]],["watered",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16713]]]]},{"k":"H3385","v":[["Jeruel",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11603]]]]},{"k":"H3386","v":[["Jaroah",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10442]]]]},{"k":"H3387","v":[["thing",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13842]]]]},{"k":"H3388","v":[["*",[2,2,[[11,1,1,0,1,[[327,1,1,0,1]]],[13,1,1,1,2,[[393,1,1,1,2]]]],[9958,11756]]],["Jerusha",[1,1,[[11,1,1,0,1,[[327,1,1,0,1]]]],[9958]]],["Jerushah",[1,1,[[13,1,1,0,1,[[393,1,1,0,1]]]],[11756]]]]},{"k":"H3389","v":[["*",[643,600,[[5,9,8,0,8,[[196,4,4,0,4],[198,1,1,4,5],[201,3,2,5,7],[204,1,1,7,8]]],[6,5,4,8,12,[[211,4,3,8,11],[229,1,1,11,12]]],[8,1,1,12,13,[[252,1,1,12,13]]],[9,30,30,13,43,[[271,4,4,13,17],[274,1,1,17,18],[275,1,1,18,19],[276,1,1,19,20],[277,2,2,20,22],[278,1,1,22,23],[280,2,2,23,25],[281,5,5,25,30],[282,2,2,30,32],[283,1,1,32,33],[285,4,4,33,37],[286,4,4,37,41],[290,2,2,41,43]]],[10,29,28,43,71,[[292,4,4,43,47],[293,2,2,47,49],[298,1,1,49,50],[299,2,2,50,52],[300,3,3,52,55],[301,6,6,55,61],[302,4,4,61,65],[304,2,2,65,67],[305,4,3,67,70],[312,1,1,70,71]]],[11,63,56,71,127,[[320,2,2,71,73],[321,1,1,73,74],[324,3,3,74,77],[326,6,4,77,81],[327,3,2,81,83],[328,2,2,83,85],[330,6,4,85,89],[331,3,3,89,92],[333,8,7,92,99],[334,2,2,99,101],[335,15,15,101,116],[336,8,7,116,123],[337,4,4,123,127]]],[12,24,24,127,151,[[340,2,2,127,129],[343,3,3,129,132],[345,2,2,132,134],[346,3,3,134,137],[348,1,1,137,138],[351,2,2,138,140],[352,1,1,140,141],[355,1,1,141,142],[356,1,1,142,143],[357,2,2,143,145],[358,3,3,145,148],[360,1,1,148,149],[365,1,1,149,150],[366,1,1,150,151]]],[13,127,117,151,268,[[367,4,4,151,155],[368,2,2,155,157],[369,1,1,157,158],[371,1,1,158,159],[372,1,1,159,160],[374,1,1,160,161],[375,4,4,161,165],[376,1,1,165,166],[377,4,4,166,170],[378,7,6,170,176],[379,1,1,176,177],[380,1,1,177,178],[381,1,1,178,179],[383,1,1,179,180],[385,4,3,180,183],[386,9,8,183,191],[387,4,4,191,195],[388,2,2,195,197],[389,1,1,197,198],[390,5,5,198,203],[391,5,3,203,206],[392,4,3,206,209],[393,2,2,209,211],[394,4,4,211,215],[395,2,2,215,217],[396,10,9,217,226],[397,1,1,226,227],[398,12,11,227,238],[399,7,7,238,245],[400,10,9,245,254],[401,4,3,254,257],[402,11,11,257,268]]],[14,25,22,268,290,[[403,7,6,268,274],[404,2,2,274,276],[405,3,2,276,278],[406,1,1,278,279],[409,4,4,279,283],[410,4,4,283,287],[411,1,1,287,288],[412,3,2,288,290]]],[15,38,34,290,324,[[413,2,2,290,292],[414,6,5,292,297],[415,3,3,297,300],[416,3,3,300,303],[418,1,1,303,304],[419,4,3,304,307],[420,1,1,307,308],[423,7,6,308,314],[424,5,4,314,318],[425,6,6,318,324]]],[16,1,1,324,325,[[427,1,1,324,325]]],[18,17,17,325,342,[[528,1,1,325,326],[545,1,1,326,327],[556,2,2,327,329],[579,1,1,329,330],[593,1,1,330,331],[599,3,3,331,334],[602,1,1,334,335],[605,1,1,335,336],[612,1,1,336,337],[614,3,3,337,340],[624,2,2,340,342]]],[20,5,5,342,347,[[659,3,3,342,345],[660,2,2,345,347]]],[21,8,8,347,355,[[671,1,1,347,348],[672,1,1,348,349],[673,2,2,349,351],[675,2,2,351,353],[676,1,1,353,354],[678,1,1,354,355]]],[22,49,47,355,402,[[679,1,1,355,356],[680,2,2,356,358],[681,2,2,358,360],[682,3,2,360,362],[683,1,1,362,363],[685,1,1,363,364],[686,1,1,364,365],[688,4,4,365,369],[700,2,2,369,371],[702,1,1,371,372],[705,1,1,372,373],[706,1,1,373,374],[708,1,1,374,375],[709,2,2,375,377],[711,1,1,377,378],[714,3,3,378,381],[715,3,3,381,384],[718,2,2,384,386],[719,1,1,386,387],[722,2,2,387,389],[729,1,1,389,390],[730,4,3,390,393],[740,3,3,393,396],[742,1,1,396,397],[743,2,2,397,399],[744,3,3,399,402]]],[23,107,98,402,500,[[745,2,2,402,404],[746,1,1,404,405],[747,2,1,405,406],[748,7,7,406,413],[749,1,1,413,414],[750,3,3,414,417],[751,2,2,417,419],[752,2,2,419,421],[753,1,1,421,422],[755,5,5,422,427],[757,3,3,427,430],[758,2,2,430,432],[759,2,2,432,434],[761,7,6,434,440],[762,1,1,440,441],[763,3,3,441,444],[766,1,1,444,445],[767,2,2,445,447],[768,2,2,447,449],[769,2,2,449,451],[770,1,1,451,452],[771,5,4,452,456],[773,7,5,456,461],[776,3,3,461,464],[777,3,3,464,467],[778,5,5,467,472],[779,4,3,472,475],[780,3,2,475,477],[781,4,3,477,480],[782,2,1,480,481],[783,2,2,481,483],[784,1,1,483,484],[786,1,1,484,485],[788,6,6,485,491],[795,2,2,491,493],[796,7,7,493,500]]],[24,7,7,500,507,[[797,3,3,500,503],[798,3,3,503,506],[800,1,1,506,507]]],[25,26,26,507,533,[[805,3,3,507,510],[806,1,1,510,511],[809,1,1,511,512],[810,2,2,512,514],[812,1,1,514,515],[813,2,2,515,517],[814,1,1,517,518],[815,2,2,518,520],[816,1,1,520,521],[817,2,2,521,523],[818,1,1,523,524],[822,3,3,524,527],[823,1,1,527,528],[824,1,1,528,529],[825,1,1,529,530],[827,1,1,530,531],[834,1,1,531,532],[837,1,1,532,533]]],[26,7,6,533,539,[[850,1,1,533,534],[858,6,5,534,539]]],[28,6,6,539,545,[[877,1,1,539,540],[878,5,5,540,545]]],[29,2,2,545,547,[[879,1,1,545,546],[880,1,1,546,547]]],[30,2,2,547,549,[[888,2,2,547,549]]],[32,8,8,549,557,[[893,4,4,549,553],[895,2,2,553,555],[896,2,2,555,557]]],[35,4,4,557,561,[[906,2,2,557,559],[908,2,2,559,561]]],[37,41,37,561,598,[[911,6,5,561,566],[912,3,3,566,569],[913,1,1,569,570],[917,1,1,570,571],[918,6,5,571,576],[919,2,2,576,578],[922,11,9,578,587],[923,1,1,587,588],[924,10,10,588,598]]],[38,2,2,598,600,[[926,1,1,598,599],[927,1,1,599,600]]]],[6065,6067,6069,6087,6140,6210,6265,6321,6516,6517,6530,7034,7672,8137,8138,8145,8146,8216,8240,8254,8260,8271,8317,8379,8384,8397,8400,8403,8418,8426,8429,8441,8469,8530,8536,8544,8545,8556,8557,8561,8576,8700,8708,8781,8806,8808,8811,8817,8831,8986,9066,9070,9081,9105,9106,9115,9121,9137,9140,9144,9150,9169,9172,9178,9179,9239,9243,9251,9253,9259,9522,9744,9753,9784,9851,9867,9868,9898,9909,9915,9916,9927,9958,9965,9968,10026,10041,10046,10059,10071,10082,10092,10120,10123,10126,10131,10132,10135,10138,10146,10159,10166,10167,10169,10170,10171,10174,10178,10185,10188,10189,10192,10195,10196,10198,10201,10206,10210,10212,10216,10217,10220,10222,10223,10230,10231,10232,10365,10366,10464,10469,10486,10603,10607,10618,10649,10653,10677,10777,10778,10794,10897,10922,10927,10929,10938,10949,10950,11008,11144,11191,11198,11207,11208,11209,11218,11227,11230,11270,11288,11352,11365,11389,11391,11394,11413,11415,11419,11428,11430,11439,11441,11442,11444,11446,11450,11455,11490,11500,11536,11577,11580,11584,11592,11602,11604,11605,11607,11614,11615,11618,11629,11635,11637,11644,11645,11646,11658,11678,11683,11686,11695,11700,11705,11727,11731,11735,11741,11747,11756,11763,11765,11774,11788,11791,11792,11799,11828,11829,11830,11832,11838,11840,11841,11848,11853,11858,11877,11884,11885,11887,11893,11894,11897,11898,11900,11901,11908,11909,11912,11915,11917,11921,11923,11929,11934,11936,11938,11940,11942,11955,11962,11963,11965,11967,11984,11990,11994,11995,11996,11997,11998,12002,12003,12004,12007,12012,12016,12018,12019,12020,12021,12023,12027,12028,12095,12098,12105,12116,12180,12181,12182,12200,12230,12231,12232,12233,12246,12259,12261,12298,12299,12318,12319,12320,12324,12327,12335,12336,12339,12366,12367,12381,12408,12422,12423,12426,12508,12589,12590,12591,12592,12594,12610,12651,12652,12653,12667,12677,12678,12686,12687,12690,12691,12730,14709,14929,15186,15188,15542,15867,16091,16092,16095,16112,16131,16196,16227,16228,16229,16353,16363,17316,17327,17331,17340,17342,17542,17561,17576,17581,17606,17614,17618,17644,17655,17686,17688,17708,17715,17736,17737,17742,17783,17821,17860,17861,17862,17882,18062,18073,18118,18164,18178,18236,18255,18259,18299,18332,18337,18350,18362,18374,18384,18422,18429,18478,18559,18561,18690,18697,18698,18705,18855,18860,18861,18895,18915,18916,18932,18935,18942,18949,18961,18967,19019,19030,19031,19032,19037,19038,19041,19043,19059,19090,19095,19097,19136,19153,19154,19158,19186,19228,19232,19235,19238,19239,19275,19279,19293,19295,19309,19319,19320,19376,19377,19378,19382,19383,19384,19395,19410,19414,19420,19473,19498,19499,19525,19532,19536,19552,19590,19599,19614,19616,19617,19636,19637,19639,19655,19660,19733,19763,19775,19785,19788,19791,19802,19807,19808,19809,19820,19834,19836,19840,19851,19873,19879,19885,19886,19923,19924,19931,19942,19993,20012,20016,20019,20023,20027,20031,20247,20262,20277,20279,20280,20288,20289,20290,20305,20317,20318,20327,20342,20345,20347,20432,20530,20536,20545,20551,20607,20626,20630,20670,20690,20699,20724,20752,20753,20760,20764,20765,20837,20946,20964,20966,20995,21011,21058,21102,21301,21397,21738,21990,21995,22000,22004,22013,22343,22344,22349,22359,22360,22363,22366,22384,22521,22530,22580,22584,22588,22591,22618,22620,22622,22628,22791,22799,22834,22836,22890,22892,22894,22895,22897,22901,22903,22911,22914,22969,22979,22980,22984,22991,22998,23008,23009,23047,23048,23050,23051,23052,23053,23054,23055,23056,23060,23070,23072,23076,23078,23079,23080,23082,23084,23085,23089,23114,23124]]],["+",[39,38,[[5,1,1,0,1,[[196,1,1,0,1]]],[9,4,4,1,5,[[271,1,1,1,2],[281,1,1,2,3],[285,1,1,3,4],[286,1,1,4,5]]],[10,4,4,5,9,[[292,1,1,5,6],[301,3,3,6,9]]],[11,5,5,9,14,[[327,1,1,9,10],[331,1,1,10,11],[333,1,1,11,12],[336,2,2,12,14]]],[13,2,2,14,16,[[390,1,1,14,15],[391,1,1,15,16]]],[14,1,1,16,17,[[403,1,1,16,17]]],[16,1,1,17,18,[[427,1,1,17,18]]],[22,5,5,18,23,[[680,1,1,18,19],[681,1,1,19,20],[688,1,1,20,21],[715,1,1,21,22],[740,1,1,22,23]]],[23,10,9,23,32,[[768,1,1,23,24],[771,1,1,24,25],[773,5,4,25,29],[779,1,1,29,30],[781,1,1,30,31],[796,1,1,31,32]]],[25,1,1,32,33,[[834,1,1,32,33]]],[28,1,1,33,34,[[878,1,1,33,34]]],[29,1,1,34,35,[[879,1,1,34,35]]],[32,1,1,35,36,[[896,1,1,35,36]]],[37,2,2,36,38,[[919,1,1,36,37],[924,1,1,37,38]]]],[6087,8145,8400,8530,8561,8811,9121,9137,9140,9927,10092,10132,10210,10217,11683,11705,12023,12730,17688,17708,17860,18384,18855,19525,19616,19636,19637,19639,19655,19840,19886,20305,21301,22359,22366,22622,23009,23076]]],["Jerusalem",[604,568,[[5,8,7,0,7,[[196,3,3,0,3],[198,1,1,3,4],[201,3,2,4,6],[204,1,1,6,7]]],[6,5,4,7,11,[[211,4,3,7,10],[229,1,1,10,11]]],[8,1,1,11,12,[[252,1,1,11,12]]],[9,26,26,12,38,[[271,3,3,12,15],[274,1,1,15,16],[275,1,1,16,17],[276,1,1,17,18],[277,2,2,18,20],[278,1,1,20,21],[280,2,2,21,23],[281,4,4,23,27],[282,2,2,27,29],[283,1,1,29,30],[285,3,3,30,33],[286,3,3,33,36],[290,2,2,36,38]]],[10,25,24,38,62,[[292,3,3,38,41],[293,2,2,41,43],[298,1,1,43,44],[299,2,2,44,46],[300,3,3,46,49],[301,3,3,49,52],[302,4,4,52,56],[304,2,2,56,58],[305,4,3,58,61],[312,1,1,61,62]]],[11,58,54,62,116,[[320,2,2,62,64],[321,1,1,64,65],[324,3,3,65,68],[326,6,4,68,72],[327,2,2,72,74],[328,2,2,74,76],[330,6,4,76,80],[331,2,2,80,82],[333,7,7,82,89],[334,2,2,89,91],[335,15,15,91,106],[336,6,6,106,112],[337,4,4,112,116]]],[12,24,24,116,140,[[340,2,2,116,118],[343,3,3,118,121],[345,2,2,121,123],[346,3,3,123,126],[348,1,1,126,127],[351,2,2,127,129],[352,1,1,129,130],[355,1,1,130,131],[356,1,1,131,132],[357,2,2,132,134],[358,3,3,134,137],[360,1,1,137,138],[365,1,1,138,139],[366,1,1,139,140]]],[13,125,116,140,256,[[367,4,4,140,144],[368,2,2,144,146],[369,1,1,146,147],[371,1,1,147,148],[372,1,1,148,149],[374,1,1,149,150],[375,4,4,150,154],[376,1,1,154,155],[377,4,4,155,159],[378,7,6,159,165],[379,1,1,165,166],[380,1,1,166,167],[381,1,1,167,168],[383,1,1,168,169],[385,4,3,169,172],[386,9,8,172,180],[387,4,4,180,184],[388,2,2,184,186],[389,1,1,186,187],[390,4,4,187,191],[391,4,3,191,194],[392,4,3,194,197],[393,2,2,197,199],[394,4,4,199,203],[395,2,2,203,205],[396,10,9,205,214],[397,1,1,214,215],[398,12,11,215,226],[399,7,7,226,233],[400,10,9,233,242],[401,4,3,242,245],[402,11,11,245,256]]],[14,24,21,256,277,[[403,6,5,256,261],[404,2,2,261,263],[405,3,2,263,265],[406,1,1,265,266],[409,4,4,266,270],[410,4,4,270,274],[411,1,1,274,275],[412,3,2,275,277]]],[15,38,34,277,311,[[413,2,2,277,279],[414,6,5,279,284],[415,3,3,284,287],[416,3,3,287,290],[418,1,1,290,291],[419,4,3,291,294],[420,1,1,294,295],[423,7,6,295,301],[424,5,4,301,305],[425,6,6,305,311]]],[18,17,17,311,328,[[528,1,1,311,312],[545,1,1,312,313],[556,2,2,313,315],[579,1,1,315,316],[593,1,1,316,317],[599,3,3,317,320],[602,1,1,320,321],[605,1,1,321,322],[612,1,1,322,323],[614,3,3,323,326],[624,2,2,326,328]]],[20,5,5,328,333,[[659,3,3,328,331],[660,2,2,331,333]]],[21,8,8,333,341,[[671,1,1,333,334],[672,1,1,334,335],[673,2,2,335,337],[675,2,2,337,339],[676,1,1,339,340],[678,1,1,340,341]]],[22,44,42,341,383,[[679,1,1,341,342],[680,1,1,342,343],[681,1,1,343,344],[682,3,2,344,346],[683,1,1,346,347],[685,1,1,347,348],[686,1,1,348,349],[688,3,3,349,352],[700,2,2,352,354],[702,1,1,354,355],[705,1,1,355,356],[706,1,1,356,357],[708,1,1,357,358],[709,2,2,358,360],[711,1,1,360,361],[714,3,3,361,364],[715,2,2,364,366],[718,2,2,366,368],[719,1,1,368,369],[722,2,2,369,371],[729,1,1,371,372],[730,4,3,372,375],[740,2,2,375,377],[742,1,1,377,378],[743,2,2,378,380],[744,3,3,380,383]]],[23,97,91,383,474,[[745,2,2,383,385],[746,1,1,385,386],[747,2,1,386,387],[748,7,7,387,394],[749,1,1,394,395],[750,3,3,395,398],[751,2,2,398,400],[752,2,2,400,402],[753,1,1,402,403],[755,5,5,403,408],[757,3,3,408,411],[758,2,2,411,413],[759,2,2,413,415],[761,7,6,415,421],[762,1,1,421,422],[763,3,3,422,425],[766,1,1,425,426],[767,2,2,426,428],[768,1,1,428,429],[769,2,2,429,431],[770,1,1,431,432],[771,4,4,432,436],[773,2,2,436,438],[776,3,3,438,441],[777,3,3,441,444],[778,5,5,444,449],[779,3,2,449,451],[780,3,2,451,453],[781,3,2,453,455],[782,2,1,455,456],[783,2,2,456,458],[784,1,1,458,459],[786,1,1,459,460],[788,6,6,460,466],[795,2,2,466,468],[796,6,6,468,474]]],[24,7,7,474,481,[[797,3,3,474,477],[798,3,3,477,480],[800,1,1,480,481]]],[25,25,25,481,506,[[805,3,3,481,484],[806,1,1,484,485],[809,1,1,485,486],[810,2,2,486,488],[812,1,1,488,489],[813,2,2,489,491],[814,1,1,491,492],[815,2,2,492,494],[816,1,1,494,495],[817,2,2,495,497],[818,1,1,497,498],[822,3,3,498,501],[823,1,1,501,502],[824,1,1,502,503],[825,1,1,503,504],[827,1,1,504,505],[837,1,1,505,506]]],[26,7,6,506,512,[[850,1,1,506,507],[858,6,5,507,512]]],[28,5,5,512,517,[[877,1,1,512,513],[878,4,4,513,517]]],[29,1,1,517,518,[[880,1,1,517,518]]],[30,2,2,518,520,[[888,2,2,518,520]]],[32,7,7,520,527,[[893,4,4,520,524],[895,2,2,524,526],[896,1,1,526,527]]],[35,4,4,527,531,[[906,2,2,527,529],[908,2,2,529,531]]],[37,39,35,531,566,[[911,6,5,531,536],[912,3,3,536,539],[913,1,1,539,540],[917,1,1,540,541],[918,6,5,541,546],[919,1,1,546,547],[922,11,9,547,556],[923,1,1,556,557],[924,9,9,557,566]]],[38,2,2,566,568,[[926,1,1,566,567],[927,1,1,567,568]]]],[6065,6067,6069,6140,6210,6265,6321,6516,6517,6530,7034,7672,8137,8138,8146,8216,8240,8254,8260,8271,8317,8379,8384,8397,8403,8418,8426,8429,8441,8469,8536,8544,8545,8556,8557,8576,8700,8708,8781,8806,8808,8817,8831,8986,9066,9070,9081,9105,9106,9115,9144,9150,9169,9172,9178,9179,9239,9243,9251,9253,9259,9522,9744,9753,9784,9851,9867,9868,9898,9909,9915,9916,9927,9958,9965,9968,10026,10041,10046,10059,10071,10082,10120,10123,10126,10131,10132,10135,10138,10146,10159,10166,10167,10169,10170,10171,10174,10178,10185,10188,10189,10192,10195,10196,10198,10201,10206,10210,10212,10216,10220,10222,10223,10230,10231,10232,10365,10366,10464,10469,10486,10603,10607,10618,10649,10653,10677,10777,10778,10794,10897,10922,10927,10929,10938,10949,10950,11008,11144,11191,11198,11207,11208,11209,11218,11227,11230,11270,11288,11352,11365,11389,11391,11394,11413,11415,11419,11428,11430,11439,11441,11442,11444,11446,11450,11455,11490,11500,11536,11577,11580,11584,11592,11602,11604,11605,11607,11614,11615,11618,11629,11635,11637,11644,11645,11646,11658,11678,11686,11695,11700,11705,11727,11731,11735,11741,11747,11756,11763,11765,11774,11788,11791,11792,11799,11828,11829,11830,11832,11838,11840,11841,11848,11853,11858,11877,11884,11885,11887,11893,11894,11897,11898,11900,11901,11908,11909,11912,11915,11917,11921,11923,11929,11934,11936,11938,11940,11942,11955,11962,11963,11965,11967,11984,11990,11994,11995,11996,11997,11998,12002,12003,12004,12007,12012,12016,12018,12019,12020,12021,12027,12028,12095,12098,12105,12116,12180,12181,12182,12200,12230,12231,12232,12233,12246,12259,12261,12298,12299,12318,12319,12320,12324,12327,12335,12336,12339,12366,12367,12381,12408,12422,12423,12426,12508,12589,12590,12591,12592,12594,12610,12651,12652,12653,12667,12677,12678,12686,12687,12690,12691,14709,14929,15186,15188,15542,15867,16091,16092,16095,16112,16131,16196,16227,16228,16229,16353,16363,17316,17327,17331,17340,17342,17542,17561,17576,17581,17606,17614,17618,17644,17655,17686,17715,17736,17737,17742,17783,17821,17861,17862,17882,18062,18073,18118,18164,18178,18236,18255,18259,18299,18332,18337,18350,18362,18374,18422,18429,18478,18559,18561,18690,18697,18698,18705,18860,18861,18895,18915,18916,18932,18935,18942,18949,18961,18967,19019,19030,19031,19032,19037,19038,19041,19043,19059,19090,19095,19097,19136,19153,19154,19158,19186,19228,19232,19235,19238,19239,19275,19279,19293,19295,19309,19319,19320,19376,19377,19378,19382,19383,19384,19395,19410,19414,19420,19473,19498,19499,19532,19536,19552,19590,19599,19614,19616,19617,19637,19660,19733,19763,19775,19785,19788,19791,19802,19807,19808,19809,19820,19834,19836,19851,19873,19879,19885,19923,19924,19931,19942,19993,20012,20016,20019,20023,20027,20031,20247,20262,20277,20279,20280,20288,20289,20290,20317,20318,20327,20342,20345,20347,20432,20530,20536,20545,20551,20607,20626,20630,20670,20690,20699,20724,20752,20753,20760,20764,20765,20837,20946,20964,20966,20995,21011,21058,21102,21397,21738,21990,21995,22000,22004,22013,22343,22344,22349,22360,22363,22384,22521,22530,22580,22584,22588,22591,22618,22620,22628,22791,22799,22834,22836,22890,22892,22894,22895,22897,22901,22903,22911,22914,22969,22979,22980,22984,22991,22998,23008,23047,23048,23050,23051,23052,23053,23054,23055,23056,23060,23070,23072,23078,23079,23080,23082,23084,23085,23089,23114,23124]]]]},{"k":"H3390","v":[["Jerusalem",[26,25,[[14,23,22,0,22,[[406,5,5,0,5],[407,6,6,5,11],[408,6,5,11,16],[409,6,6,16,22]]],[26,3,3,22,25,[[854,2,2,22,24],[855,1,1,24,25]]]],[12118,12122,12130,12133,12134,12135,12136,12148,12149,12150,12151,12154,12156,12160,12163,12169,12186,12187,12188,12189,12190,12192,21876,21877,21915]]]]},{"k":"H3391","v":[["*",[13,13,[[1,1,1,0,1,[[51,1,1,0,1]]],[4,2,2,1,3,[[173,1,1,1,2],[185,1,1,2,3]]],[10,3,3,3,6,[[296,2,2,3,5],[298,1,1,5,6]]],[11,1,1,6,7,[[327,1,1,6,7]]],[17,4,4,7,11,[[438,1,1,7,8],[442,1,1,8,9],[464,1,1,9,10],[474,1,1,10,11]]],[22,1,1,11,12,[[738,1,1,11,12]]],[37,1,1,12,13,[[921,1,1,12,13]]]],[1556,5460,5824,8933,8934,8987,9938,12910,13011,13534,13836,18841,23036]]],["month",[6,6,[[4,1,1,0,1,[[173,1,1,0,1]]],[10,3,3,1,4,[[296,2,2,1,3],[298,1,1,3,4]]],[11,1,1,4,5,[[327,1,1,4,5]]],[37,1,1,5,6,[[921,1,1,5,6]]]],[5460,8933,8934,8987,9938,23036]]],["months",[5,5,[[1,1,1,0,1,[[51,1,1,0,1]]],[17,4,4,1,5,[[438,1,1,1,2],[442,1,1,2,3],[464,1,1,3,4],[474,1,1,4,5]]]],[1556,12910,13011,13534,13836]]],["moon",[2,2,[[4,1,1,0,1,[[185,1,1,0,1]]],[22,1,1,1,2,[[738,1,1,1,2]]]],[5824,18841]]]]},{"k":"H3392","v":[["Jerah",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[260,10272]]]]},{"k":"H3393","v":[["*",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[12166,21866]]],["month",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12166]]],["months",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21866]]]]},{"k":"H3394","v":[["*",[26,26,[[0,1,1,0,1,[[36,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[169,1,1,2,3]]],[5,2,2,3,5,[[196,2,2,3,5]]],[11,1,1,5,6,[[335,1,1,5,6]]],[17,2,2,6,8,[[460,1,1,6,7],[466,1,1,7,8]]],[18,8,8,8,16,[[485,1,1,8,9],[549,2,2,9,11],[566,1,1,11,12],[581,1,1,12,13],[598,1,1,13,14],[613,1,1,14,15],[625,1,1,15,16]]],[20,1,1,16,17,[[670,1,1,16,17]]],[22,2,2,17,19,[[691,1,1,17,18],[738,1,1,18,19]]],[23,2,2,19,21,[[752,1,1,19,20],[775,1,1,20,21]]],[25,1,1,21,22,[[833,1,1,21,22]]],[28,3,3,22,25,[[877,2,2,22,24],[878,1,1,24,25]]],[34,1,1,25,26,[[905,1,1,25,26]]]],[1092,5023,5367,6076,6077,10170,13466,13614,14015,15005,15007,15363,15590,16087,16205,16374,17525,17916,18840,19155,19726,21255,22321,22342,22358,22779]]],["Moon",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6076]]],["moon",[25,25,[[0,1,1,0,1,[[36,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[169,1,1,2,3]]],[5,1,1,3,4,[[196,1,1,3,4]]],[11,1,1,4,5,[[335,1,1,4,5]]],[17,2,2,5,7,[[460,1,1,5,6],[466,1,1,6,7]]],[18,8,8,7,15,[[485,1,1,7,8],[549,2,2,8,10],[566,1,1,10,11],[581,1,1,11,12],[598,1,1,12,13],[613,1,1,13,14],[625,1,1,14,15]]],[20,1,1,15,16,[[670,1,1,15,16]]],[22,2,2,16,18,[[691,1,1,16,17],[738,1,1,17,18]]],[23,2,2,18,20,[[752,1,1,18,19],[775,1,1,19,20]]],[25,1,1,20,21,[[833,1,1,20,21]]],[28,3,3,21,24,[[877,2,2,21,23],[878,1,1,23,24]]],[34,1,1,24,25,[[905,1,1,24,25]]]],[1092,5023,5367,6077,10170,13466,13614,14015,15005,15007,15363,15590,16087,16205,16374,17525,17916,18840,19155,19726,21255,22321,22342,22358,22779]]]]},{"k":"H3395","v":[["Jeroham",[10,10,[[8,1,1,0,1,[[236,1,1,0,1]]],[12,7,7,1,8,[[343,2,2,1,3],[345,1,1,3,4],[346,2,2,4,6],[349,1,1,6,7],[364,1,1,7,8]]],[13,1,1,8,9,[[389,1,1,8,9]]],[15,1,1,9,10,[[423,1,1,9,10]]]],[7213,10481,10488,10602,10623,10627,10727,11131,11657,12600]]]]},{"k":"H3396","v":[["Jerahmeel",[8,8,[[12,7,7,0,7,[[339,6,6,0,6],[361,1,1,6,7]]],[23,1,1,7,8,[[780,1,1,7,8]]]],[10315,10331,10332,10333,10339,10348,11044,19868]]]]},{"k":"H3397","v":[["Jerahmeelites",[2,2,[[8,2,2,0,2,[[262,1,1,0,1],[265,1,1,1,2]]]],[7940,8007]]]]},{"k":"H3398","v":[["Jarha",[2,2,[[12,2,2,0,2,[[339,2,2,0,2]]]],[10340,10341]]]]},{"k":"H3399","v":[["*",[2,2,[[3,1,1,0,1,[[138,1,1,0,1]]],[17,1,1,1,2,[[451,1,1,1,2]]]],[4407,13249]]],["over",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13249]]],["perverse",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4407]]]]},{"k":"H3400","v":[["Jeriel",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10537]]]]},{"k":"H3401","v":[["*",[3,3,[[18,1,1,0,1,[[512,1,1,0,1]]],[22,1,1,1,2,[[727,1,1,1,2]]],[23,1,1,2,3,[[762,1,1,2,3]]]],[14411,18661,19403]]],["contend",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19403]]],["strive",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14411]]],["with",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18661]]]]},{"k":"H3402","v":[["Jarib",[3,3,[[12,1,1,0,1,[[341,1,1,0,1]]],[14,2,2,1,3,[[410,1,1,1,2],[412,1,1,2,3]]]],[10409,12217,12270]]]]},{"k":"H3403","v":[["Jeribai",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10719]]]]},{"k":"H3404","v":[["*",[3,3,[[12,3,3,0,3,[[360,1,1,0,1],[361,1,1,1,2],[363,1,1,2,3]]]],[11002,11038,11108]]],["Jeriah",[2,2,[[12,2,2,0,2,[[360,1,1,0,1],[361,1,1,1,2]]]],[11002,11038]]],["Jerijah",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11108]]]]},{"k":"H3405","v":[["*",[57,53,[[3,9,9,0,9,[[138,1,1,0,1],[142,2,2,1,3],[147,1,1,3,4],[149,2,2,4,6],[150,1,1,6,7],[151,1,1,7,8],[152,1,1,8,9]]],[4,3,3,9,12,[[184,1,1,9,10],[186,2,2,10,12]]],[5,29,26,12,38,[[188,3,3,12,15],[189,1,1,15,16],[190,2,2,16,18],[191,2,2,18,20],[192,4,4,20,24],[193,1,1,24,25],[194,1,1,25,26],[195,1,1,26,27],[196,3,3,27,30],[198,1,1,30,31],[199,1,1,31,32],[202,4,2,32,34],[204,2,2,34,36],[206,1,1,36,37],[210,2,1,37,38]]],[9,1,1,38,39,[[276,1,1,38,39]]],[10,1,1,39,40,[[306,1,1,39,40]]],[11,6,5,40,45,[[314,5,4,40,44],[337,1,1,44,45]]],[12,2,2,45,47,[[343,1,1,45,46],[356,1,1,46,47]]],[13,1,1,47,48,[[394,1,1,47,48]]],[14,1,1,48,49,[[404,1,1,48,49]]],[15,2,2,49,51,[[415,1,1,49,50],[419,1,1,50,51]]],[23,2,2,51,53,[[783,1,1,51,52],[796,1,1,52,53]]]],[4376,4492,4552,4676,4808,4810,4831,4846,4892,5807,5840,5842,5870,5871,5872,5909,5923,5929,5944,5947,5950,5951,5974,5975,5978,6004,6040,6065,6092,6094,6139,6186,6266,6272,6305,6314,6380,6487,8245,9317,9555,9556,9566,9569,10227,10532,10912,11779,12061,12329,12456,19928,20284]]],["+",[2,2,[[5,2,2,0,2,[[193,1,1,0,1],[202,1,1,1,2]]]],[5978,6266]]],["Jericho",[55,52,[[3,9,9,0,9,[[138,1,1,0,1],[142,2,2,1,3],[147,1,1,3,4],[149,2,2,4,6],[150,1,1,6,7],[151,1,1,7,8],[152,1,1,8,9]]],[4,3,3,9,12,[[184,1,1,9,10],[186,2,2,10,12]]],[5,27,25,12,37,[[188,3,3,12,15],[189,1,1,15,16],[190,2,2,16,18],[191,2,2,18,20],[192,4,4,20,24],[194,1,1,24,25],[195,1,1,25,26],[196,3,3,26,29],[198,1,1,29,30],[199,1,1,30,31],[202,3,2,31,33],[204,2,2,33,35],[206,1,1,35,36],[210,2,1,36,37]]],[9,1,1,37,38,[[276,1,1,37,38]]],[10,1,1,38,39,[[306,1,1,38,39]]],[11,6,5,39,44,[[314,5,4,39,43],[337,1,1,43,44]]],[12,2,2,44,46,[[343,1,1,44,45],[356,1,1,45,46]]],[13,1,1,46,47,[[394,1,1,46,47]]],[14,1,1,47,48,[[404,1,1,47,48]]],[15,2,2,48,50,[[415,1,1,48,49],[419,1,1,49,50]]],[23,2,2,50,52,[[783,1,1,50,51],[796,1,1,51,52]]]],[4376,4492,4552,4676,4808,4810,4831,4846,4892,5807,5840,5842,5870,5871,5872,5909,5923,5929,5944,5947,5950,5951,5974,5975,6004,6040,6065,6092,6094,6139,6186,6266,6272,6305,6314,6380,6487,8245,9317,9555,9556,9566,9569,10227,10532,10912,11779,12061,12329,12456,19928,20284]]]]},{"k":"H3406","v":[["*",[14,14,[[12,9,9,0,9,[[344,2,2,0,2],[345,1,1,2,3],[349,1,1,3,4],[360,1,1,4,5],[361,1,1,5,6],[362,2,2,6,8],[364,1,1,8,9]]],[13,2,2,9,11,[[377,1,1,9,10],[397,1,1,10,11]]],[14,3,3,11,14,[[412,3,3,11,14]]]],[10542,10543,10589,10725,11006,11045,11050,11068,11128,11432,11867,12278,12279,12281]]],["Jeremoth",[5,5,[[12,3,3,0,3,[[345,1,1,0,1],[360,1,1,1,2],[362,1,1,2,3]]],[14,2,2,3,5,[[412,2,2,3,5]]]],[10589,11006,11068,12278,12279]]],["Jerimoth",[8,8,[[12,6,6,0,6,[[344,2,2,0,2],[349,1,1,2,3],[361,1,1,3,4],[362,1,1,4,5],[364,1,1,5,6]]],[13,2,2,6,8,[[377,1,1,6,7],[397,1,1,7,8]]]],[10542,10543,10725,11045,11050,11128,11432,11867]]],["Ramoth",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12281]]]]},{"k":"H3407","v":[["*",[54,32,[[1,44,22,0,22,[[75,24,12,0,12],[85,20,10,12,22]]],[3,1,1,22,23,[[120,1,1,22,23]]],[9,1,1,23,24,[[273,1,1,23,24]]],[12,1,1,24,25,[[354,1,1,24,25]]],[18,1,1,25,26,[[581,1,1,25,26]]],[21,1,1,26,27,[[671,1,1,26,27]]],[22,1,1,27,28,[[732,1,1,27,28]]],[23,3,3,28,31,[[748,1,1,28,29],[754,1,1,29,30],[793,1,1,30,31]]],[34,1,1,31,32,[[905,1,1,31,32]]]],[2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2247,2248,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,3768,8182,10864,15573,17542,18725,19047,19221,20156,22775]]],["curtain",[23,13,[[1,22,12,0,12,[[75,12,7,0,7],[85,10,5,7,12]]],[18,1,1,12,13,[[581,1,1,12,13]]]],[2237,2239,2240,2243,2244,2245,2247,2575,2577,2578,2581,2583,15573]]],["curtains",[31,25,[[1,22,16,0,16,[[75,12,9,0,9],[85,10,7,9,16]]],[3,1,1,16,17,[[120,1,1,16,17]]],[9,1,1,17,18,[[273,1,1,17,18]]],[12,1,1,18,19,[[354,1,1,18,19]]],[21,1,1,19,20,[[671,1,1,19,20]]],[22,1,1,20,21,[[732,1,1,20,21]]],[23,3,3,21,24,[[748,1,1,21,22],[754,1,1,22,23],[793,1,1,23,24]]],[34,1,1,24,25,[[905,1,1,24,25]]]],[2236,2237,2238,2241,2242,2243,2244,2247,2248,2574,2575,2576,2579,2580,2581,2582,3768,8182,10864,17542,18725,19047,19221,20156,22775]]]]},{"k":"H3408","v":[["Jerioth",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10324]]]]},{"k":"H3409","v":[["*",[34,32,[[0,9,7,0,7,[[23,2,2,0,2],[31,5,3,2,5],[45,1,1,5,6],[46,1,1,6,7]]],[1,7,7,7,14,[[50,1,1,7,8],[74,1,1,8,9],[77,1,1,9,10],[81,1,1,10,11],[86,1,1,11,12],[89,2,2,12,14]]],[2,1,1,14,15,[[90,1,1,14,15]]],[3,6,6,15,21,[[119,2,2,15,17],[121,3,3,17,20],[124,1,1,20,21]]],[6,4,4,21,25,[[213,2,2,21,23],[218,1,1,23,24],[225,1,1,24,25]]],[11,1,1,25,26,[[328,1,1,25,26]]],[18,1,1,26,27,[[522,1,1,26,27]]],[21,2,2,27,29,[[673,1,1,27,28],[677,1,1,28,29]]],[23,1,1,29,30,[[775,1,1,29,30]]],[25,2,2,30,32,[[822,1,1,30,31],[825,1,1,31,32]]]],[593,600,953,959,960,1412,1449,1537,2226,2335,2465,2621,2729,2731,2756,3721,3727,3813,3814,3819,3943,6584,6589,6749,6937,9977,14600,17579,17628,19710,20956,21060]]],["body",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6749]]],["loins",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[50,1,1,1,2]]]],[1412,1537]]],["shaft",[3,3,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[3,1,1,2,3,[[124,1,1,2,3]]]],[2226,2621,3943]]],["side",[7,7,[[1,3,3,0,3,[[81,1,1,0,1],[89,2,2,1,3]]],[2,1,1,3,4,[[90,1,1,3,4]]],[3,2,2,4,6,[[119,2,2,4,6]]],[11,1,1,6,7,[[328,1,1,6,7]]]],[2465,2729,2731,2756,3721,3727,9977]]],["thigh",[19,17,[[0,8,6,0,6,[[23,2,2,0,2],[31,5,3,2,5],[46,1,1,5,6]]],[3,3,3,6,9,[[121,3,3,6,9]]],[6,3,3,9,12,[[213,2,2,9,11],[225,1,1,11,12]]],[18,1,1,12,13,[[522,1,1,12,13]]],[21,1,1,13,14,[[673,1,1,13,14]]],[23,1,1,14,15,[[775,1,1,14,15]]],[25,2,2,15,17,[[822,1,1,15,16],[825,1,1,16,17]]]],[593,600,953,959,960,1449,3813,3814,3819,6584,6589,6937,14600,17579,19710,20956,21060]]],["thighs",[2,2,[[1,1,1,0,1,[[77,1,1,0,1]]],[21,1,1,1,2,[[677,1,1,1,2]]]],[2335,17628]]]]},{"k":"H3410","v":[["thighs",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21790]]]]},{"k":"H3411","v":[["*",[28,28,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,6,6,1,7,[[75,3,3,1,4],[85,3,3,4,7]]],[6,2,2,7,9,[[229,2,2,7,9]]],[8,1,1,9,10,[[259,1,1,9,10]]],[10,1,1,10,11,[[296,1,1,10,11]]],[11,1,1,11,12,[[331,1,1,11,12]]],[18,2,2,12,14,[[525,1,1,12,13],[605,1,1,13,14]]],[22,3,3,14,17,[[692,2,2,14,16],[715,1,1,16,17]]],[23,4,4,17,21,[[750,1,1,17,18],[769,1,1,18,19],[775,1,1,19,20],[794,1,1,20,21]]],[25,5,5,21,26,[[833,1,1,21,22],[839,2,2,22,24],[840,1,1,24,25],[847,1,1,25,26]]],[29,1,1,26,27,[[884,1,1,26,27]]],[31,1,1,27,28,[[889,1,1,27,28]]]],[1486,2257,2258,2262,2593,2594,2598,7025,7042,7842,8912,10084,14636,16129,17941,17943,18376,19111,19566,19699,20207,21271,21431,21440,21450,21674,22460,22536]]],["+",[7,7,[[10,1,1,0,1,[[296,1,1,0,1]]],[23,4,4,1,5,[[750,1,1,1,2],[769,1,1,2,3],[775,1,1,3,4],[794,1,1,4,5]]],[25,2,2,5,7,[[839,1,1,5,6],[840,1,1,6,7]]]],[8912,19111,19566,19699,20207,21440,21450]]],["border",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1486]]],["quarters",[1,1,[[25,1,1,0,1,[[839,1,1,0,1]]]],[21431]]],["side",[2,2,[[6,2,2,0,2,[[229,2,2,0,2]]]],[7025,7042]]],["sides",[17,17,[[1,6,6,0,6,[[75,3,3,0,3],[85,3,3,3,6]]],[8,1,1,6,7,[[259,1,1,6,7]]],[11,1,1,7,8,[[331,1,1,7,8]]],[18,2,2,8,10,[[525,1,1,8,9],[605,1,1,9,10]]],[22,3,3,10,13,[[692,2,2,10,12],[715,1,1,12,13]]],[25,2,2,13,15,[[833,1,1,13,14],[847,1,1,14,15]]],[29,1,1,15,16,[[884,1,1,15,16]]],[31,1,1,16,17,[[889,1,1,16,17]]]],[2257,2258,2262,2593,2594,2598,7842,10084,14636,16129,17941,17943,18376,21271,21674,22460,22536]]]]},{"k":"H3412","v":[["*",[7,7,[[5,6,6,0,6,[[196,3,3,0,3],[198,1,1,3,4],[201,1,1,4,5],[207,1,1,5,6]]],[15,1,1,6,7,[[423,1,1,6,7]]]],[6067,6069,6087,6141,6237,6410,12617]]],["+",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6087]]],["Jarmuth",[6,6,[[5,5,5,0,5,[[196,2,2,0,2],[198,1,1,2,3],[201,1,1,3,4],[207,1,1,4,5]]],[15,1,1,5,6,[[423,1,1,5,6]]]],[6067,6069,6141,6237,6410,12617]]]]},{"k":"H3413","v":[["*",[3,3,[[6,2,2,0,2,[[211,1,1,0,1],[220,1,1,1,2]]],[14,1,1,2,3,[[412,1,1,2,3]]]],[6519,6822,12285]]],["Jeremai",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12285]]],["against",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6519]]],["unto",[1,1,[[6,1,1,0,1,[[220,1,1,0,1]]]],[6822]]]]},{"k":"H3414","v":[["*",[147,133,[[11,2,2,0,2,[[335,1,1,0,1],[336,1,1,1,2]]],[12,4,4,2,6,[[342,1,1,2,3],[349,3,3,3,6]]],[13,4,4,6,10,[[401,1,1,6,7],[402,3,3,7,10]]],[14,1,1,10,11,[[403,1,1,10,11]]],[15,4,4,11,15,[[422,1,1,11,12],[424,3,3,12,15]]],[23,131,117,15,132,[[745,2,2,15,17],[751,1,1,17,18],[755,1,1,18,19],[758,1,1,19,20],[762,2,2,20,22],[763,1,1,22,23],[764,4,3,23,26],[765,2,2,26,28],[768,1,1,28,29],[769,3,3,29,32],[770,6,6,32,38],[771,1,1,38,39],[772,7,6,39,45],[773,4,4,45,49],[774,1,1,49,50],[776,4,4,50,54],[777,3,3,54,57],[778,4,4,57,61],[779,4,4,61,65],[780,12,9,65,74],[781,15,12,74,86],[782,22,17,86,103],[783,3,3,103,106],[784,3,3,106,109],[786,4,4,109,113],[787,4,4,113,117],[788,4,4,117,121],[789,2,1,121,122],[790,2,2,122,124],[791,1,1,124,125],[793,1,1,125,126],[794,1,1,126,127],[795,4,4,127,131],[796,1,1,131,132]]],[26,1,1,132,133,[[858,1,1,132,133]]]],[10196,10220,10452,10724,10730,10733,11991,12005,12014,12015,12017,12551,12625,12636,12658,18947,18957,19120,19227,19294,19385,19402,19421,19423,19424,19425,19441,19443,19527,19535,19536,19547,19579,19580,19581,19584,19592,19596,19597,19623,19624,19628,19629,19630,19633,19636,19662,19664,19665,19668,19732,19733,19737,19757,19776,19794,19798,19802,19807,19809,19813,19824,19826,19835,19841,19843,19846,19847,19850,19852,19861,19868,19869,19874,19876,19877,19878,19880,19886,19887,19888,19889,19890,19891,19892,19895,19896,19901,19902,19904,19905,19906,19907,19908,19909,19910,19911,19912,19914,19915,19919,19922,19923,19934,19937,19938,19942,19943,19947,19977,19979,19980,19982,19998,19999,20003,20005,20011,20025,20030,20034,20041,20046,20058,20074,20161,20167,20271,20272,20273,20276,20277,21990]]],["+",[2,2,[[23,2,2,0,2,[[780,2,2,0,2]]]],[19846,19874]]],["Jeremiah",[144,132,[[11,2,2,0,2,[[335,1,1,0,1],[336,1,1,1,2]]],[12,4,4,2,6,[[342,1,1,2,3],[349,3,3,3,6]]],[13,4,4,6,10,[[401,1,1,6,7],[402,3,3,7,10]]],[14,1,1,10,11,[[403,1,1,10,11]]],[15,4,4,11,15,[[422,1,1,11,12],[424,3,3,12,15]]],[23,128,116,15,131,[[745,2,2,15,17],[751,1,1,17,18],[755,1,1,18,19],[758,1,1,19,20],[762,2,2,20,22],[763,1,1,22,23],[764,4,3,23,26],[765,2,2,26,28],[768,1,1,28,29],[769,3,3,29,32],[770,6,6,32,38],[771,1,1,38,39],[772,6,5,39,44],[773,4,4,44,48],[774,1,1,48,49],[776,4,4,49,53],[777,3,3,53,56],[778,4,4,56,60],[779,4,4,60,64],[780,10,9,64,73],[781,15,12,73,85],[782,22,17,85,102],[783,3,3,102,105],[784,3,3,105,108],[786,4,4,108,112],[787,4,4,112,116],[788,4,4,116,120],[789,2,1,120,121],[790,2,2,121,123],[791,1,1,123,124],[793,1,1,124,125],[794,1,1,125,126],[795,4,4,126,130],[796,1,1,130,131]]],[26,1,1,131,132,[[858,1,1,131,132]]]],[10196,10220,10452,10724,10730,10733,11991,12005,12014,12015,12017,12551,12625,12636,12658,18947,18957,19120,19227,19294,19385,19402,19421,19423,19424,19425,19441,19443,19527,19535,19536,19547,19579,19580,19581,19584,19592,19596,19597,19623,19624,19629,19630,19633,19636,19662,19664,19665,19668,19732,19733,19737,19757,19776,19794,19798,19802,19807,19809,19813,19824,19826,19835,19841,19843,19846,19847,19850,19852,19861,19868,19869,19874,19876,19877,19878,19880,19886,19887,19888,19889,19890,19891,19892,19895,19896,19901,19902,19904,19905,19906,19907,19908,19909,19910,19911,19912,19914,19915,19919,19922,19923,19934,19937,19938,19942,19943,19947,19977,19979,19980,19982,19998,19999,20003,20005,20011,20025,20030,20034,20041,20046,20058,20074,20161,20167,20271,20272,20273,20276,20277,21990]]],["Jeremiah's",[1,1,[[23,1,1,0,1,[[772,1,1,0,1]]]],[19628]]]]},{"k":"H3415","v":[["*",[8,8,[[8,2,2,0,2,[[243,1,1,0,1],[253,1,1,1,2]]],[9,3,3,2,5,[[277,2,2,2,4],[286,1,1,4,5]]],[12,1,1,5,6,[[358,1,1,5,6]]],[18,1,1,6,7,[[583,1,1,6,7]]],[22,1,1,7,8,[[693,1,1,7,8]]]],[7375,7684,8284,8286,8560,10941,15683,17964]]],["+",[5,5,[[8,2,2,0,2,[[243,1,1,0,1],[253,1,1,1,2]]],[9,2,2,2,4,[[277,2,2,2,4]]],[12,1,1,4,5,[[358,1,1,4,5]]]],[7375,7684,8284,8286,10941]]],["grievous",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17964]]],["harm",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8560]]],["ill",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15683]]]]},{"k":"H3416","v":[["Irpeel",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6320]]]]},{"k":"H3417","v":[["*",[3,2,[[3,2,1,0,1,[[128,2,1,0,1]]],[4,1,1,1,2,[[177,1,1,1,2]]]],[4073,5556]]],["+",[2,1,[[3,2,1,0,1,[[128,2,1,0,1]]]],[4073]]],["spit",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5556]]]]},{"k":"H3418","v":[["*",[6,6,[[0,2,2,0,2,[[0,1,1,0,1],[8,1,1,1,2]]],[1,1,1,2,3,[[59,1,1,2,3]]],[3,1,1,3,4,[[138,1,1,3,4]]],[18,1,1,4,5,[[514,1,1,4,5]]],[22,1,1,5,6,[[693,1,1,5,6]]]],[29,208,1792,4379,14452,17966]]],["grass",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4379]]],["green",[3,3,[[0,2,2,0,2,[[0,1,1,0,1],[8,1,1,1,2]]],[18,1,1,2,3,[[514,1,1,2,3]]]],[29,208,14452]]],["thing",[2,2,[[1,1,1,0,1,[[59,1,1,0,1]]],[22,1,1,1,2,[[693,1,1,1,2]]]],[1792,17966]]]]},{"k":"H3419","v":[["*",[5,5,[[4,1,1,0,1,[[163,1,1,0,1]]],[10,1,1,1,2,[[311,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[19,1,1,3,4,[[642,1,1,3,4]]],[22,1,1,4,5,[[715,1,1,4,5]]]],[5218,9453,10087,16824,18379]]],["green",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10087,18379]]],["herbs",[3,3,[[4,1,1,0,1,[[163,1,1,0,1]]],[10,1,1,1,2,[[311,1,1,1,2]]],[19,1,1,2,3,[[642,1,1,2,3]]]],[5218,9453,16824]]]]},{"k":"H3420","v":[["*",[6,6,[[4,1,1,0,1,[[180,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[13,1,1,2,3,[[372,1,1,2,3]]],[23,1,1,3,4,[[774,1,1,3,4]]],[29,1,1,4,5,[[882,1,1,4,5]]],[36,1,1,5,6,[[910,1,1,5,6]]]],[5633,9022,11310,19673,22419,22872]]],["mildew",[5,5,[[4,1,1,0,1,[[180,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[13,1,1,2,3,[[372,1,1,2,3]]],[29,1,1,3,4,[[882,1,1,3,4]]],[36,1,1,4,5,[[910,1,1,4,5]]]],[5633,9022,11310,22419,22872]]],["paleness",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19673]]]]},{"k":"H3421","v":[["Jorkoam",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10350]]]]},{"k":"H3422","v":[["*",[3,3,[[2,2,2,0,2,[[102,1,1,0,1],[103,1,1,1,2]]],[18,1,1,2,3,[[545,1,1,2,3]]]],[3101,3148,14913]]],["greenish",[2,2,[[2,2,2,0,2,[[102,1,1,0,1],[103,1,1,1,2]]]],[3101,3148]]],["yellow",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14913]]]]},{"k":"H3423","v":[["*",[231,204,[[0,10,9,0,9,[[14,5,4,0,4],[20,1,1,4,5],[21,1,1,5,6],[23,1,1,6,7],[27,1,1,7,8],[44,1,1,8,9]]],[1,2,2,9,11,[[64,1,1,9,10],[83,1,1,10,11]]],[2,3,2,11,13,[[109,2,1,11,12],[114,1,1,12,13]]],[3,15,13,13,26,[[129,1,1,13,14],[130,2,2,14,16],[137,3,3,16,19],[143,1,1,19,20],[148,2,2,20,22],[149,4,3,22,25],[152,2,1,25,26]]],[4,71,63,26,89,[[153,3,3,26,29],[154,6,5,29,34],[155,3,3,34,37],[156,7,7,37,44],[157,2,2,44,46],[158,2,2,46,48],[159,2,2,48,50],[160,1,1,50,51],[161,8,6,51,57],[162,1,1,57,58],[163,9,6,58,64],[164,4,3,64,67],[167,1,1,67,68],[168,1,1,68,69],[169,1,1,69,70],[170,2,2,70,72],[171,3,3,72,75],[173,1,1,75,76],[175,1,1,76,77],[177,1,1,77,78],[178,1,1,78,79],[180,3,3,79,82],[182,4,3,82,85],[183,2,2,85,87],[184,1,1,87,88],[185,1,1,88,89]]],[5,29,24,89,113,[[187,4,2,89,91],[189,2,1,91,92],[194,1,1,92,93],[198,1,1,93,94],[199,4,4,94,98],[200,1,1,98,99],[201,2,2,99,101],[202,1,1,101,102],[203,4,3,102,105],[204,1,1,105,106],[205,1,1,106,107],[207,1,1,107,108],[209,4,3,108,111],[210,2,2,111,113]]],[6,27,21,113,134,[[211,12,10,113,123],[212,3,3,123,126],[213,1,1,126,127],[221,8,4,127,131],[224,1,1,131,132],[228,2,2,132,134]]],[8,1,1,134,135,[[237,1,1,134,135]]],[9,1,1,135,136,[[280,1,1,135,136]]],[10,6,6,136,142,[[304,1,1,136,137],[311,5,5,137,142]]],[11,4,4,142,146,[[328,1,1,142,143],[329,2,2,143,145],[333,1,1,145,146]]],[12,1,1,146,147,[[365,1,1,146,147]]],[13,4,4,147,151,[[386,2,2,147,149],[394,1,1,149,150],[399,1,1,150,151]]],[14,2,2,151,153,[[411,2,2,151,153]]],[15,5,5,153,158,[[421,5,5,153,158]]],[17,2,2,158,160,[[448,1,1,158,159],[455,1,1,159,160]]],[18,11,11,160,171,[[502,1,1,160,161],[514,5,5,161,166],[521,2,2,166,168],[546,1,1,168,169],[560,1,1,169,170],[582,1,1,170,171]]],[19,4,4,171,175,[[647,1,1,171,172],[650,1,1,172,173],[657,2,2,173,175]]],[22,10,9,175,184,[[692,1,1,175,176],[712,2,2,176,178],[732,1,1,178,179],[735,1,1,179,180],[738,1,1,180,181],[739,1,1,181,182],[741,1,1,182,183],[743,2,1,183,184]]],[23,7,5,184,189,[[752,1,1,184,185],[774,1,1,185,186],[776,1,1,186,187],[793,4,2,187,189]]],[25,6,6,189,195,[[808,1,1,189,190],[834,3,3,190,193],[836,1,1,193,194],[837,1,1,194,195]]],[27,1,1,195,196,[[870,1,1,195,196]]],[29,2,2,196,198,[[880,1,1,196,197],[887,1,1,197,198]]],[30,4,3,198,201,[[888,4,3,198,201]]],[32,1,1,201,202,[[893,1,1,201,202]]],[34,1,1,202,203,[[903,1,1,202,203]]],[37,1,1,203,204,[[919,1,1,203,204]]]],[363,364,367,368,523,564,651,777,1369,1929,2520,3342,3515,4105,4120,4132,4364,4372,4375,4565,4739,4757,4812,4813,4815,4887,4900,4913,4931,4950,4959,4960,4962,4969,4987,4993,4995,5005,5009,5018,5026,5030,5042,5051,5084,5086,5087,5104,5112,5128,5138,5158,5160,5161,5162,5163,5180,5197,5216,5218,5219,5231,5237,5239,5241,5242,5269,5323,5362,5378,5396,5398,5407,5408,5420,5448,5520,5566,5567,5632,5653,5674,5713,5724,5726,5731,5741,5805,5833,5862,5866,5903,6009,6131,6155,6160,6166,6167,6199,6216,6265,6275,6287,6288,6293,6296,6368,6424,6465,6469,6473,6480,6484,6528,6529,6530,6536,6537,6538,6539,6540,6541,6542,6551,6566,6568,6581,6850,6851,6852,6853,6924,7000,7002,7247,8363,9242,9466,9467,9469,9470,9477,9966,9991,10007,10121,11151,11594,11598,11767,11910,12248,12249,12526,12533,12534,12535,12536,13179,13341,14264,14459,14461,14472,14479,14484,14573,14574,14970,15253,15650,16967,17065,17260,17274,17949,18314,18320,18726,18778,18842,18850,18884,18906,19163,19670,19754,20128,20129,20601,21304,21305,21306,21354,21371,22214,22389,22507,22527,22529,22530,22594,22737,23003]]],["+",[74,69,[[0,3,3,0,3,[[21,1,1,0,1],[23,1,1,1,2],[27,1,1,2,3]]],[2,1,1,3,4,[[109,1,1,3,4]]],[3,7,7,4,11,[[137,3,3,4,7],[148,2,2,7,9],[149,2,2,9,11]]],[4,18,18,11,29,[[153,1,1,11,12],[154,1,1,12,13],[155,1,1,13,14],[156,3,3,14,17],[158,1,1,17,18],[160,1,1,18,19],[161,3,3,19,22],[162,1,1,22,23],[163,3,3,23,26],[168,1,1,26,27],[170,2,2,27,29]]],[5,13,11,29,40,[[187,2,2,29,31],[189,2,1,31,32],[194,1,1,32,33],[198,1,1,33,34],[202,1,1,34,35],[203,3,2,35,37],[204,1,1,37,38],[209,1,1,38,39],[210,1,1,39,40]]],[6,17,15,40,55,[[211,9,7,40,47],[212,1,1,47,48],[213,1,1,48,49],[221,4,4,49,53],[228,2,2,53,55]]],[11,1,1,55,56,[[329,1,1,55,56]]],[12,1,1,56,57,[[365,1,1,56,57]]],[13,1,1,57,58,[[386,1,1,57,58]]],[15,3,3,58,61,[[421,3,3,58,61]]],[23,1,1,61,62,[[793,1,1,61,62]]],[25,2,2,62,64,[[808,1,1,62,63],[834,1,1,63,64]]],[29,2,2,64,66,[[880,1,1,64,65],[887,1,1,65,66]]],[30,4,3,66,69,[[888,4,3,66,69]]]],[564,651,777,3342,4364,4372,4375,4739,4757,4812,4815,4900,4969,4995,5005,5026,5051,5104,5138,5161,5162,5180,5197,5216,5231,5239,5362,5396,5398,5862,5866,5903,6009,6131,6275,6288,6293,6296,6465,6484,6528,6536,6537,6538,6539,6540,6542,6551,6581,6850,6851,6852,6853,7000,7002,10007,11151,11594,12526,12533,12535,20128,20601,21304,22389,22507,22527,22529,22530]]],["consume",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5653]]],["destroy",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1929]]],["disinherit",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4120]]],["dispossess",[2,2,[[3,1,1,0,1,[[149,1,1,0,1]]],[4,1,1,1,2,[[159,1,1,1,2]]]],[4813,5128]]],["drive",[1,1,[[5,1,1,0,1,[[209,1,1,0,1]]]],[6465]]],["drove",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6216]]],["enjoy",[2,2,[[3,1,1,0,1,[[152,1,1,0,1]]],[5,1,1,1,2,[[187,1,1,1,2]]]],[4887,5866]]],["expelled",[2,2,[[5,1,1,0,1,[[199,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]]],[6167,6529]]],["have",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6924]]],["heir",[9,8,[[0,4,3,0,3,[[14,3,2,0,2],[20,1,1,2,3]]],[9,1,1,3,4,[[280,1,1,3,4]]],[19,1,1,4,5,[[657,1,1,4,5]]],[23,2,2,5,7,[[793,2,2,5,7]]],[32,1,1,7,8,[[893,1,1,7,8]]]],[363,364,523,8363,17274,20128,20129,22594]]],["heirs",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20129]]],["inherit",[15,15,[[0,2,2,0,2,[[14,2,2,0,2]]],[2,1,1,2,3,[[114,1,1,2,3]]],[13,1,1,3,4,[[386,1,1,3,4]]],[18,6,6,4,10,[[502,1,1,4,5],[514,5,5,5,10]]],[22,4,4,10,14,[[732,1,1,10,11],[735,1,1,11,12],[738,1,1,12,13],[743,1,1,13,14]]],[23,1,1,14,15,[[752,1,1,14,15]]]],[367,368,3515,11598,14264,14459,14461,14472,14479,14484,18726,18778,18842,18906,19163]]],["inheritance",[1,1,[[14,1,1,0,1,[[411,1,1,0,1]]]],[12249]]],["inherited",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15650]]],["inheritor",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18906]]],["out",[27,27,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,4,4,1,5,[[156,1,1,1,2],[161,3,3,2,5]]],[5,7,7,5,12,[[199,2,2,5,7],[200,1,1,7,8],[201,1,1,8,9],[203,1,1,9,10],[209,2,2,10,12]]],[6,5,5,12,17,[[211,2,2,12,14],[212,2,2,14,16],[221,1,1,16,17]]],[10,2,2,17,19,[[304,1,1,17,18],[311,1,1,18,19]]],[11,3,3,19,22,[[328,1,1,19,20],[329,1,1,20,21],[333,1,1,21,22]]],[13,2,2,22,24,[[394,1,1,22,23],[399,1,1,23,24]]],[17,1,1,24,25,[[455,1,1,24,25]]],[18,1,1,25,26,[[521,1,1,25,26]]],[37,1,1,26,27,[[919,1,1,26,27]]]],[2520,5042,5160,5161,5162,6160,6166,6199,6265,6287,6469,6473,6530,6541,6566,6568,6853,9242,9477,9966,9991,10121,11767,11910,13341,14573,23003]]],["poor",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[7247,17260]]],["possess",[64,63,[[2,1,1,0,1,[[109,1,1,0,1]]],[3,4,4,1,5,[[129,1,1,1,2],[130,1,1,2,3],[143,1,1,3,4],[149,1,1,4,5]]],[4,39,39,5,44,[[153,2,2,5,7],[154,2,2,7,9],[155,1,1,9,10],[156,3,3,10,13],[157,2,2,13,15],[158,1,1,15,16],[159,1,1,16,17],[161,2,2,17,19],[163,6,6,19,25],[164,3,3,25,28],[167,1,1,28,29],[169,1,1,29,30],[171,2,2,30,32],[173,1,1,32,33],[175,1,1,33,34],[177,1,1,34,35],[180,2,2,35,37],[182,3,3,37,40],[183,2,2,40,42],[184,1,1,42,43],[185,1,1,43,44]]],[5,2,2,44,46,[[187,1,1,44,45],[210,1,1,45,46]]],[6,3,2,46,48,[[221,3,2,46,48]]],[10,1,1,48,49,[[311,1,1,48,49]]],[14,1,1,49,50,[[411,1,1,49,50]]],[15,1,1,50,51,[[421,1,1,50,51]]],[17,1,1,51,52,[[448,1,1,51,52]]],[22,4,4,52,56,[[692,1,1,52,53],[712,2,2,53,55],[739,1,1,55,56]]],[23,1,1,56,57,[[774,1,1,56,57]]],[25,4,4,57,61,[[834,2,2,57,59],[836,1,1,59,60],[837,1,1,60,61]]],[27,1,1,61,62,[[870,1,1,61,62]]],[34,1,1,62,63,[[903,1,1,62,63]]]],[3342,4105,4132,4565,4813,4913,4931,4962,4969,4993,5009,5018,5030,5084,5086,5087,5112,5158,5163,5216,5218,5219,5231,5237,5239,5241,5242,5269,5323,5378,5408,5420,5448,5520,5566,5632,5674,5713,5724,5726,5731,5741,5805,5833,5862,6480,6852,6853,9469,12248,12534,13179,17949,18314,18320,18850,19670,21305,21306,21354,21371,22214,22737]]],["possessed",[8,8,[[4,2,2,0,2,[[155,1,1,0,1],[182,1,1,1,2]]],[5,3,3,2,5,[[199,1,1,2,3],[205,1,1,3,4],[207,1,1,4,5]]],[15,1,1,5,6,[[421,1,1,5,6]]],[22,1,1,6,7,[[741,1,1,6,7]]],[23,1,1,7,8,[[776,1,1,7,8]]]],[4987,5713,6155,6368,6424,12536,18884,19754]]],["possessest",[1,1,[[4,1,1,0,1,[[178,1,1,0,1]]]],[5567]]],["possesseth",[1,1,[[3,1,1,0,1,[[152,1,1,0,1]]]],[4887]]],["possession",[5,5,[[10,3,3,0,3,[[311,3,3,0,3]]],[18,2,2,3,5,[[521,1,1,3,4],[546,1,1,4,5]]]],[9466,9467,9470,14574,14970]]],["poverty",[3,3,[[0,1,1,0,1,[[44,1,1,0,1]]],[19,2,2,1,3,[[647,1,1,1,2],[650,1,1,2,3]]]],[1369,16967,17065]]],["succeeded",[3,3,[[4,3,3,0,3,[[154,3,3,0,3]]]],[4950,4959,4960]]],["succeedest",[2,2,[[4,2,2,0,2,[[164,1,1,0,1],[171,1,1,1,2]]]],[5269,5407]]],["take",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15253]]]]},{"k":"H3424","v":[["possession",[2,1,[[3,2,1,0,1,[[140,2,1,0,1]]]],[4464]]]]},{"k":"H3425","v":[["*",[14,12,[[4,7,5,0,5,[[154,6,4,0,4],[155,1,1,4,5]]],[5,3,3,5,8,[[187,1,1,5,6],[198,2,2,6,8]]],[6,1,1,8,9,[[231,1,1,8,9]]],[13,1,1,9,10,[[386,1,1,9,10]]],[18,1,1,10,11,[[538,1,1,10,11]]],[23,1,1,11,12,[[776,1,1,11,12]]]],[4943,4947,4950,4957,4995,5866,6136,6137,7119,11598,14824,19739]]],["+",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11598]]],["heritage",[1,1,[[18,1,1,0,1,[[538,1,1,0,1]]]],[14824]]],["inheritance",[2,2,[[6,1,1,0,1,[[231,1,1,0,1]]],[23,1,1,1,2,[[776,1,1,1,2]]]],[7119,19739]]],["possession",[10,8,[[4,7,5,0,5,[[154,6,4,0,4],[155,1,1,4,5]]],[5,3,3,5,8,[[187,1,1,5,6],[198,2,2,6,8]]]],[4943,4947,4950,4957,4995,5866,6136,6137]]]]},{"k":"H3426","v":[["*",[136,127,[[0,20,19,0,19,[[17,1,1,0,1],[22,1,1,1,2],[23,3,3,2,5],[27,1,1,5,6],[30,1,1,6,7],[32,2,2,7,9],[38,4,3,9,12],[41,2,2,12,14],[42,2,2,14,16],[43,3,3,16,19]]],[1,1,1,19,20,[[66,1,1,19,20]]],[3,4,4,20,24,[[125,2,2,20,22],[129,1,1,22,23],[138,1,1,23,24]]],[4,3,2,24,26,[[165,1,1,24,25],[181,2,1,25,26]]],[6,6,5,26,31,[[214,1,1,26,27],[216,2,2,27,29],[228,1,1,29,30],[229,2,1,30,31]]],[7,2,2,31,33,[[232,1,1,31,32],[234,1,1,32,33]]],[8,9,9,33,42,[[244,2,2,33,35],[249,1,1,35,36],[252,1,1,36,37],[255,1,1,37,38],[256,3,3,38,41],[258,1,1,41,42]]],[9,3,3,42,45,[[275,1,1,42,43],[280,1,1,43,44],[285,1,1,44,45]]],[10,2,2,45,47,[[307,1,1,45,46],[308,1,1,46,47]]],[11,10,8,47,55,[[314,1,1,47,48],[315,1,1,48,49],[316,2,2,49,51],[317,1,1,51,52],[321,1,1,52,53],[322,4,2,53,55]]],[12,1,1,55,56,[[366,1,1,55,56]]],[13,4,4,56,60,[[381,1,1,56,57],[382,1,1,57,58],[391,2,2,58,60]]],[14,2,2,60,62,[[412,2,2,60,62]]],[15,4,4,62,66,[[417,4,4,62,66]]],[16,1,1,66,67,[[428,1,1,66,67]]],[17,12,12,67,79,[[440,1,1,67,68],[441,2,2,68,70],[444,1,1,70,71],[446,1,1,71,72],[449,1,1,72,73],[451,1,1,73,74],[460,1,1,74,75],[463,1,1,75,76],[468,2,2,76,78],[473,1,1,78,79]]],[18,6,6,79,85,[[484,1,1,79,80],[491,1,1,80,81],[530,1,1,81,82],[535,1,1,82,83],[550,1,1,83,84],[612,1,1,84,85]]],[19,13,13,85,98,[[630,1,1,85,86],[635,1,1,86,87],[638,1,1,87,88],[639,1,1,88,89],[640,2,2,89,91],[641,1,1,91,92],[643,1,1,92,93],[645,1,1,93,94],[646,1,1,94,95],[647,1,1,95,96],[650,1,1,96,97],[651,1,1,97,98]]],[20,16,13,98,111,[[659,1,1,98,99],[660,2,2,99,101],[662,2,2,101,103],[663,1,1,103,104],[664,2,2,104,106],[665,2,1,106,107],[666,4,2,107,109],[667,1,1,109,110],[668,1,1,110,111]]],[22,2,2,111,113,[[721,1,1,111,112],[722,1,1,112,113]]],[23,10,9,113,122,[[749,1,1,113,114],[758,1,1,114,115],[767,1,1,115,116],[771,1,1,116,117],[775,3,3,117,120],[781,2,1,120,121],[785,1,1,121,122]]],[24,2,2,122,124,[[797,1,1,122,123],[799,1,1,123,124]]],[31,1,1,124,125,[[892,1,1,124,125]]],[32,1,1,125,126,[[894,1,1,125,126]]],[38,1,1,126,127,[[925,1,1,126,127]]]],[448,579,614,633,640,789,902,969,971,1153,1154,1157,1253,1254,1294,1297,1343,1344,1350,1990,3985,3986,4095,4404,5275,5697,6619,6667,6690,7007,7043,7139,7184,7402,7403,7547,7664,7738,7775,7776,7780,7833,8228,8388,8539,9329,9351,9567,9588,9605,9616,9655,9771,9808,9816,11167,11497,11518,11712,11713,12254,12296,12384,12385,12386,12387,12755,12952,12984,13008,13084,13126,13188,13242,13464,13505,13673,13682,13821,13998,14082,14721,14790,15031,16192,16483,16623,16712,16737,16754,16770,16784,16865,16925,16943,16969,17062,17093,17325,17346,17354,17389,17390,17410,17418,17428,17444,17464,17472,17479,17498,18513,18541,19059,19315,19510,19614,19697,19707,19708,19891,19965,20322,20383,22579,22596,23103]]],["+",[4,4,[[0,1,1,0,1,[[22,1,1,0,1]]],[8,1,1,1,2,[[258,1,1,1,2]]],[11,1,1,2,3,[[322,1,1,2,3]]],[20,1,1,3,4,[[660,1,1,3,4]]]],[579,7833,9808,17346]]],["Hath",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13821]]],["Have",[1,1,[[0,1,1,0,1,[[43,1,1,0,1]]]],[1343]]],["Is",[3,3,[[1,1,1,0,1,[[66,1,1,0,1]]],[6,1,1,1,2,[[214,1,1,1,2]]],[8,1,1,2,3,[[244,1,1,2,3]]]],[1990,6619,7402]]],["are",[2,2,[[15,1,1,0,1,[[417,1,1,0,1]]],[31,1,1,1,2,[[892,1,1,1,2]]]],[12387,22579]]],["be",[28,26,[[0,2,2,0,2,[[17,1,1,0,1],[43,1,1,1,2]]],[3,1,1,2,3,[[129,1,1,2,3]]],[4,2,1,3,4,[[181,2,1,3,4]]],[6,1,1,4,5,[[216,1,1,4,5]]],[8,2,2,5,7,[[249,1,1,5,6],[255,1,1,6,7]]],[9,1,1,7,8,[[280,1,1,7,8]]],[11,4,4,8,12,[[314,1,1,8,9],[321,1,1,9,10],[322,2,2,10,12]]],[13,1,1,12,13,[[381,1,1,12,13]]],[17,2,2,13,15,[[440,1,1,13,14],[468,1,1,14,15]]],[18,1,1,15,16,[[484,1,1,15,16]]],[19,1,1,16,17,[[651,1,1,16,17]]],[20,3,2,17,19,[[664,1,1,17,18],[666,2,1,18,19]]],[23,5,5,19,24,[[749,1,1,19,20],[767,1,1,20,21],[771,1,1,21,22],[775,2,2,22,24]]],[24,2,2,24,26,[[797,1,1,24,25],[799,1,1,25,26]]]],[448,1350,4095,5697,6667,7547,7738,8388,9567,9771,9808,9816,11497,12952,13673,13998,17093,17428,17472,19059,19510,19614,19697,19707,20322,20383]]],["do",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[633]]],["had",[4,3,[[0,3,2,0,2,[[38,3,2,0,2]]],[14,1,1,2,3,[[412,1,1,2,3]]]],[1153,1154,12296]]],["hast",[3,3,[[11,1,1,0,1,[[316,1,1,0,1]]],[17,1,1,1,2,[[468,1,1,1,2]]],[19,1,1,2,3,[[630,1,1,2,3]]]],[9605,13682,16483]]],["hath",[3,3,[[0,1,1,0,1,[[38,1,1,0,1]]],[13,1,1,1,2,[[391,1,1,1,2]]],[38,1,1,2,3,[[925,1,1,2,3]]]],[1157,11712,23103]]],["have",[12,12,[[0,4,4,0,4,[[32,2,2,0,2],[42,1,1,2,3],[43,1,1,3,4]]],[7,1,1,4,5,[[232,1,1,4,5]]],[9,1,1,5,6,[[285,1,1,5,6]]],[10,1,1,6,7,[[307,1,1,6,7]]],[12,1,1,7,8,[[366,1,1,7,8]]],[13,1,1,8,9,[[382,1,1,8,9]]],[20,1,1,9,10,[[662,1,1,9,10]]],[22,1,1,10,11,[[721,1,1,10,11]]],[23,1,1,11,12,[[785,1,1,11,12]]]],[969,971,1297,1344,7139,8539,9329,11167,11518,17390,18513,19965]]],["is",[44,42,[[0,3,3,0,3,[[27,1,1,0,1],[30,1,1,1,2],[41,1,1,2,3]]],[6,3,2,3,5,[[228,1,1,3,4],[229,2,1,4,5]]],[7,1,1,5,6,[[234,1,1,5,6]]],[8,4,4,6,10,[[244,1,1,6,7],[252,1,1,7,8],[256,2,2,8,10]]],[10,1,1,10,11,[[308,1,1,10,11]]],[11,3,3,11,14,[[315,1,1,11,12],[317,1,1,12,13],[322,1,1,13,14]]],[13,1,1,14,15,[[391,1,1,14,15]]],[14,1,1,15,16,[[412,1,1,15,16]]],[16,1,1,16,17,[[428,1,1,16,17]]],[17,2,2,17,19,[[449,1,1,17,18],[463,1,1,18,19]]],[18,1,1,19,20,[[535,1,1,19,20]]],[19,10,10,20,30,[[638,1,1,20,21],[639,1,1,21,22],[640,2,2,22,24],[641,1,1,24,25],[643,1,1,25,26],[645,1,1,26,27],[646,1,1,27,28],[647,1,1,28,29],[650,1,1,29,30]]],[20,10,9,30,39,[[660,1,1,30,31],[662,1,1,31,32],[663,1,1,32,33],[664,1,1,33,34],[665,2,1,34,35],[666,2,2,35,37],[667,1,1,37,38],[668,1,1,38,39]]],[23,2,2,39,41,[[775,1,1,39,40],[781,1,1,40,41]]],[32,1,1,41,42,[[894,1,1,41,42]]]],[789,902,1254,7007,7043,7184,7403,7664,7775,7776,9351,9588,9655,9808,11713,12254,12755,13188,13505,14790,16712,16737,16754,16770,16784,16865,16925,16943,16969,17062,17354,17389,17410,17418,17444,17464,17472,17479,17498,19708,19891,22596]]],["substance",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16623]]],["there",[14,14,[[0,1,1,0,1,[[23,1,1,0,1]]],[8,1,1,1,2,[[256,1,1,1,2]]],[9,1,1,2,3,[[275,1,1,2,3]]],[17,5,5,3,8,[[441,2,2,3,5],[444,1,1,5,6],[446,1,1,6,7],[460,1,1,7,8]]],[18,2,2,8,10,[[550,1,1,8,9],[612,1,1,9,10]]],[20,1,1,10,11,[[659,1,1,10,11]]],[22,1,1,11,12,[[722,1,1,11,12]]],[23,2,2,12,14,[[758,1,1,12,13],[781,1,1,13,14]]]],[614,7780,8228,12984,13008,13084,13126,13464,15031,16192,17325,18541,19315,19891]]],["thou",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6690]]],["was",[3,3,[[0,1,1,0,1,[[41,1,1,0,1]]],[3,2,2,1,3,[[125,2,2,1,3]]]],[1253,3985,3986]]],["were",[7,7,[[3,1,1,0,1,[[138,1,1,0,1]]],[15,3,3,1,4,[[417,3,3,1,4]]],[17,1,1,4,5,[[451,1,1,4,5]]],[18,2,2,5,7,[[491,1,1,5,6],[530,1,1,6,7]]]],[4404,12384,12385,12386,13242,14082,14721]]],["whether",[1,1,[[4,1,1,0,1,[[165,1,1,0,1]]]],[5275]]],["will",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[640]]],["wilt",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1294]]],["wouldest",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9616]]]]},{"k":"H3427","v":[["*",[1081,975,[[0,71,63,0,63,[[3,2,2,0,2],[10,2,2,2,4],[12,6,4,4,8],[13,2,2,8,10],[15,1,1,10,11],[17,1,1,11,12],[18,6,4,12,16],[19,2,2,16,18],[20,4,3,18,21],[21,2,2,21,23],[22,1,1,23,24],[23,4,4,24,28],[24,2,2,28,30],[25,2,2,30,32],[26,2,2,32,34],[28,2,2,34,36],[30,1,1,36,37],[33,7,6,37,43],[34,1,1,43,44],[35,3,3,44,47],[36,2,2,47,49],[37,3,2,49,51],[42,1,1,51,52],[43,1,1,52,53],[44,1,1,53,54],[45,1,1,54,55],[46,5,4,55,59],[47,1,1,59,60],[48,1,1,60,61],[49,2,2,61,63]]],[1,21,20,63,83,[[51,3,2,63,65],[60,1,1,65,66],[61,2,2,66,68],[64,3,3,68,71],[65,3,3,71,74],[66,1,1,74,75],[67,2,2,75,77],[72,2,2,77,79],[73,1,1,79,80],[81,1,1,80,81],[83,2,2,81,83]]],[2,24,22,83,105,[[97,1,1,83,84],[101,2,2,84,86],[102,1,1,86,87],[103,1,1,87,88],[104,7,6,88,94],[107,2,2,94,96],[109,1,1,96,97],[112,3,2,97,99],[114,3,3,99,102],[115,3,3,102,105]]],[3,36,31,105,136,[[129,8,5,105,110],[130,3,3,110,113],[136,2,2,113,115],[137,4,4,115,119],[138,3,3,119,122],[141,1,1,122,123],[148,4,3,123,126],[149,5,4,126,130],[151,6,6,130,136]]],[4,46,39,136,175,[[153,6,4,136,140],[154,13,9,140,149],[155,3,3,149,152],[156,1,1,152,153],[158,1,1,153,154],[160,1,1,154,155],[161,1,1,155,156],[163,3,3,156,159],[164,3,2,159,161],[165,3,3,161,164],[169,2,2,164,166],[171,1,1,166,167],[173,1,1,167,168],[175,2,2,168,170],[177,1,1,170,171],[178,1,1,171,172],[180,1,1,172,173],[181,1,1,173,174],[182,1,1,174,175]]],[5,52,47,175,222,[[187,1,1,175,176],[188,4,4,176,180],[191,1,1,180,181],[192,1,1,181,182],[193,2,2,182,184],[194,3,3,184,187],[195,6,6,187,193],[196,2,2,193,195],[197,1,1,195,196],[198,2,2,196,198],[199,3,3,198,201],[200,1,1,201,202],[201,3,2,202,204],[202,2,1,204,205],[203,7,4,205,209],[205,2,2,209,211],[206,2,2,211,213],[207,2,2,213,215],[208,1,1,215,216],[210,6,6,216,222]]],[6,71,57,222,279,[[211,27,14,222,236],[212,1,1,236,237],[213,3,3,237,240],[214,2,2,240,242],[215,4,4,242,246],[216,3,3,246,249],[218,1,1,249,250],[219,3,2,250,252],[220,2,2,252,254],[221,5,5,254,259],[223,1,1,259,260],[225,1,1,260,261],[226,2,2,261,263],[227,2,2,263,265],[228,3,3,265,268],[229,3,3,268,271],[230,3,3,271,274],[231,5,5,274,279]]],[7,11,8,279,287,[[232,1,1,279,280],[233,3,3,280,283],[234,1,1,283,284],[235,6,3,284,287]]],[8,47,42,287,329,[[236,4,3,287,290],[237,1,1,290,291],[239,2,2,291,293],[240,1,1,293,294],[241,1,1,294,295],[242,1,1,295,296],[247,2,2,296,298],[248,1,1,298,299],[249,1,1,299,300],[254,3,3,300,303],[255,6,4,303,307],[257,4,4,307,311],[258,6,5,311,316],[259,1,1,316,317],[260,1,1,317,318],[261,1,1,318,319],[262,6,5,319,324],[263,1,1,324,325],[265,2,2,325,327],[266,2,2,327,329]]],[9,30,27,329,356,[[267,1,1,329,330],[268,2,2,330,332],[271,2,2,332,334],[272,2,2,334,336],[273,6,5,336,341],[275,1,1,341,342],[276,1,1,342,343],[277,4,3,343,346],[279,1,1,346,347],[280,1,1,347,348],[281,3,3,348,351],[282,2,2,351,353],[284,1,1,353,354],[285,2,1,354,355],[289,1,1,355,356]]],[10,53,52,356,408,[[291,9,9,356,365],[292,6,5,365,370],[293,2,2,370,372],[294,1,1,372,373],[297,1,1,373,374],[298,8,8,374,382],[299,1,1,382,383],[301,2,2,383,385],[302,3,3,385,388],[303,4,4,388,392],[305,2,2,392,394],[306,1,1,394,395],[307,3,3,395,398],[309,1,1,398,399],[311,6,6,399,405],[312,3,3,405,408]]],[11,41,39,408,447,[[313,1,1,408,409],[314,4,4,409,413],[316,3,3,413,416],[318,4,3,416,419],[319,2,2,419,421],[321,1,1,421,422],[322,1,1,422,423],[323,1,1,423,424],[325,2,2,424,426],[326,1,1,426,427],[327,2,2,427,429],[328,1,1,429,430],[329,8,7,430,437],[330,1,1,437,438],[331,4,4,438,442],[334,3,3,442,445],[335,1,1,445,446],[337,1,1,446,447]]],[12,43,40,447,487,[[339,1,1,447,448],[341,6,5,448,453],[342,7,7,453,460],[344,1,1,460,461],[345,6,5,461,466],[346,6,6,466,472],[347,1,1,472,473],[348,3,3,473,476],[350,2,2,476,478],[354,5,4,478,482],[356,1,1,482,483],[357,1,1,483,484],[359,1,1,484,485],[365,1,1,485,486],[366,1,1,486,487]]],[13,50,48,487,535,[[368,1,1,487,488],[372,8,8,488,496],[374,2,2,496,498],[376,1,1,498,499],[377,1,1,499,500],[381,1,1,500,501],[382,1,1,501,502],[384,3,2,502,504],[385,2,2,504,506],[386,7,6,506,512],[387,2,2,512,514],[388,1,1,514,515],[389,1,1,515,516],[391,1,1,516,517],[392,2,2,517,519],[394,1,1,519,520],[396,1,1,520,521],[397,2,2,521,523],[398,4,4,523,527],[399,1,1,527,528],[400,6,6,528,534],[401,1,1,534,535]]],[14,12,12,535,547,[[404,1,1,535,536],[406,1,1,536,537],[410,1,1,537,538],[411,2,2,538,540],[412,7,7,540,547]]],[15,22,20,547,567,[[413,1,1,547,548],[414,1,1,548,549],[415,2,2,549,551],[416,1,1,551,552],[419,2,2,552,554],[420,2,2,554,556],[421,1,1,556,557],[423,9,7,557,564],[425,3,3,564,567]]],[16,9,9,567,576,[[426,2,2,567,569],[427,2,2,569,571],[428,1,1,571,572],[430,2,2,572,574],[431,1,1,574,575],[434,1,1,575,576]]],[17,8,8,576,584,[[437,2,2,576,578],[450,1,1,578,579],[457,1,1,579,580],[459,1,1,580,581],[464,1,1,581,582],[471,1,1,582,583],[473,1,1,583,584]]],[18,60,58,584,642,[[478,1,1,584,585],[479,1,1,585,586],[481,1,1,586,587],[486,3,3,587,590],[487,1,1,590,591],[494,1,1,591,592],[499,1,1,592,593],[500,1,1,593,594],[501,1,1,594,595],[503,2,2,595,597],[504,1,1,597,598],[506,2,1,598,599],[510,3,2,599,601],[524,1,1,601,602],[526,1,1,602,603],[527,1,1,603,604],[532,1,1,604,605],[538,1,1,605,606],[542,1,1,606,607],[545,3,3,607,610],[546,3,3,610,613],[552,1,1,613,614],[557,1,1,614,615],[560,1,1,615,616],[561,1,1,616,617],[568,1,1,617,618],[575,1,1,618,619],[576,1,1,619,620],[578,2,2,620,622],[579,1,1,622,623],[584,3,3,623,626],[587,1,1,626,627],[590,3,3,627,630],[596,1,1,630,631],[599,1,1,631,632],[600,1,1,632,633],[602,1,1,633,634],[604,1,1,634,635],[609,2,2,635,637],[610,1,1,637,638],[614,1,1,638,639],[616,1,1,639,640],[617,1,1,640,641],[620,1,1,641,642]]],[19,8,8,642,650,[[630,1,1,642,643],[636,1,1,643,644],[647,1,1,644,645],[648,2,2,645,647],[650,1,1,647,648],[652,1,1,648,649],[658,1,1,649,650]]],[20,1,1,650,651,[[668,1,1,650,651]]],[21,3,3,651,654,[[672,1,1,651,652],[675,1,1,652,653],[678,1,1,653,654]]],[22,69,63,654,717,[[681,1,1,654,655],[683,3,3,655,658],[684,3,3,658,661],[686,1,1,661,662],[687,2,2,662,664],[688,3,3,664,667],[690,1,1,667,668],[691,1,1,668,669],[692,1,1,669,670],[694,1,1,670,671],[696,1,1,671,672],[698,1,1,672,673],[699,1,1,673,674],[700,1,1,674,675],[701,3,3,675,678],[702,5,4,678,682],[704,4,4,682,686],[706,1,1,686,687],[708,1,1,687,688],[710,2,2,688,690],[711,1,1,690,691],[714,1,1,691,692],[715,4,4,692,696],[716,1,1,696,697],[718,3,1,697,698],[720,4,3,698,701],[722,2,2,701,703],[723,1,1,703,704],[725,6,4,704,708],[727,2,2,708,710],[729,1,1,710,711],[730,1,1,711,712],[732,1,1,712,713],[736,1,1,713,714],[743,3,3,714,717]]],[23,148,132,717,849,[[745,1,1,717,718],[746,2,2,718,720],[747,1,1,720,721],[748,3,3,721,724],[750,2,2,724,726],[752,3,3,726,729],[753,3,3,729,732],[754,2,2,732,734],[755,3,3,734,737],[756,1,1,737,738],[757,4,2,738,740],[759,2,1,740,741],[760,1,1,741,742],[761,5,3,742,745],[762,1,1,745,746],[763,2,2,746,748],[764,1,1,748,749],[765,3,3,749,752],[766,5,5,752,757],[767,2,2,757,759],[768,1,1,759,760],[769,5,5,760,765],[770,3,3,765,768],[771,1,1,768,769],[773,5,4,769,773],[774,1,1,773,774],[775,1,1,774,775],[776,3,3,775,778],[777,2,2,778,780],[778,1,1,780,781],[779,7,7,781,788],[780,5,5,788,793],[781,2,2,793,795],[782,4,4,795,799],[783,2,2,799,801],[784,5,4,801,805],[785,1,1,805,806],[786,4,4,806,810],[787,1,1,810,811],[788,8,7,811,818],[790,3,2,818,820],[791,2,1,820,821],[792,6,5,821,826],[793,9,7,826,833],[794,9,7,833,840],[795,10,9,840,849]]],[24,9,9,849,858,[[797,2,2,849,851],[798,1,1,851,852],[799,3,3,852,855],[800,2,2,855,857],[801,1,1,857,858]]],[25,64,50,858,908,[[803,1,1,858,859],[804,4,1,859,860],[808,1,1,860,861],[809,3,2,861,863],[812,1,1,863,864],[813,4,3,864,867],[815,1,1,867,868],[816,1,1,868,869],[817,2,1,869,870],[821,1,1,870,871],[824,1,1,871,872],[826,1,1,872,873],[827,7,4,873,877],[828,3,3,877,880],[829,4,3,880,883],[830,2,2,883,885],[832,2,2,885,887],[833,1,1,887,888],[834,2,2,888,890],[835,2,2,890,892],[836,1,1,892,893],[837,6,6,893,899],[838,3,1,899,900],[839,6,4,900,904],[840,3,3,904,907],[845,1,1,907,908]]],[26,1,1,908,909,[[858,1,1,908,909]]],[27,8,8,909,917,[[864,2,2,909,911],[865,2,2,911,913],[870,1,1,913,914],[872,1,1,914,915],[873,1,1,915,916],[875,1,1,916,917]]],[28,5,5,917,922,[[876,2,2,917,919],[877,1,1,919,920],[878,2,2,920,922]]],[29,7,7,922,929,[[879,2,2,922,924],[881,1,1,924,925],[883,1,1,925,926],[886,1,1,926,927],[887,2,2,927,929]]],[31,3,2,929,931,[[891,1,1,929,930],[892,2,1,930,931]]],[32,11,10,931,941,[[893,5,4,931,935],[896,1,1,935,936],[897,1,1,936,937],[898,2,2,937,939],[899,2,2,939,941]]],[33,2,2,941,943,[[900,1,1,941,942],[902,1,1,942,943]]],[34,2,2,943,945,[[904,2,2,943,945]]],[35,8,7,945,952,[[906,4,4,945,949],[907,3,2,949,951],[908,1,1,951,952]]],[36,1,1,952,953,[[909,1,1,952,953]]],[37,23,21,953,974,[[911,1,1,953,954],[912,2,2,954,956],[913,1,1,956,957],[915,1,1,957,958],[916,1,1,958,959],[917,2,1,959,960],[918,3,3,960,963],[919,2,2,963,965],[921,1,1,965,966],[922,5,5,966,971],[923,1,1,971,972],[924,3,2,972,974]]],[38,1,1,974,975,[[927,1,1,974,975]]]],[95,99,268,297,324,325,330,336,343,348,384,425,458,482,486,487,496,510,529,533,534,552,566,581,594,628,646,653,669,685,698,709,746,771,809,814,907,990,996,1001,1002,1003,1010,1012,1047,1048,1060,1084,1108,1130,1133,1323,1357,1368,1420,1424,1426,1431,1447,1453,1497,1517,1528,1569,1575,1811,1845,1856,1934,1935,1937,1950,1976,1982,1995,2012,2013,2175,2177,2191,2444,2508,2511,2952,3048,3049,3098,3119,3172,3174,3188,3190,3191,3194,3254,3276,3340,3444,3445,3479,3487,3488,3529,3556,3559,4093,4094,4103,4104,4107,4122,4133,4153,4312,4326,4341,4365,4371,4374,4380,4383,4394,4472,4724,4735,4758,4800,4812,4813,4815,4847,4848,4870,4873,4877,4879,4896,4898,4936,4938,4942,4946,4948,4950,4958,4959,4960,4961,4967,4977,4994,5004,5050,5093,5149,5166,5227,5238,5239,5250,5269,5284,5285,5287,5378,5382,5407,5460,5513,5516,5552,5567,5641,5695,5728,5865,5878,5884,5891,5893,5942,5974,5983,5985,6011,6026,6028,6040,6044,6048,6053,6059,6061,6065,6070,6126,6132,6134,6160,6167,6175,6191,6217,6265,6275,6282,6286,6287,6291,6368,6371,6376,6378,6383,6424,6459,6478,6483,6484,6489,6491,6494,6518,6519,6520,6525,6526,6528,6530,6536,6538,6539,6540,6541,6542,6544,6547,6571,6573,6588,6601,6604,6633,6639,6640,6646,6664,6665,6672,6748,6775,6795,6812,6829,6832,6837,6846,6850,6855,6893,6937,6958,6961,6990,6991,6994,7000,7021,7028,7030,7039,7069,7080,7101,7104,7111,7112,7114,7125,7131,7156,7163,7172,7190,7191,7192,7194,7221,7234,7235,7248,7301,7310,7326,7352,7354,7468,7471,7501,7510,7708,7715,7724,7735,7749,7754,7755,7791,7792,7793,7810,7815,7824,7828,7835,7839,7842,7874,7908,7933,7935,7937,7938,7941,7965,7999,8002,8016,8020,8023,8052,8062,8138,8141,8159,8168,8181,8182,8185,8186,8198,8240,8245,8260,8270,8271,8337,8384,8397,8408,8418,8429,8444,8502,8519,8661,8730,8734,8737,8741,8744,8747,8752,8763,8765,8782,8789,8794,8806,8808,8822,8833,8869,8942,8998,9005,9010,9012,9015,9024,9028,9034,9067,9124,9132,9153,9168,9176,9195,9198,9204,9209,9267,9270,9294,9322,9326,9336,9391,9459,9460,9461,9462,9463,9464,9481,9490,9499,9542,9553,9555,9557,9569,9616,9623,9641,9675,9676,9706,9710,9711,9761,9823,9848,9876,9884,9906,9930,9937,9969,9989,10007,10008,10009,10010,10011,10012,10051,10076,10087,10088,10097,10159,10161,10164,10167,10246,10361,10408,10413,10425,10426,10428,10436,10437,10438,10439,10444,10450,10451,10564,10581,10588,10603,10604,10607,10617,10618,10631,10649,10650,10653,10666,10677,10678,10680,10766,10774,10864,10867,10868,10879,10912,10927,10982,11148,11187,11214,11284,11292,11298,11300,11303,11312,11315,11321,11348,11357,11412,11419,11495,11511,11551,11560,11580,11586,11594,11595,11602,11605,11607,11610,11635,11637,11645,11676,11723,11739,11753,11782,11852,11858,11860,11885,11897,11901,11908,11917,11955,11957,11960,11961,11963,11965,11984,12097,12116,12233,12240,12241,12254,12261,12262,12266,12268,12269,12270,12300,12313,12340,12353,12371,12423,12493,12507,12510,12535,12589,12590,12591,12592,12594,12609,12613,12687,12694,12698,12704,12716,12743,12745,12762,12780,12792,12803,12853,12899,12904,13231,13397,13449,13557,13743,13833,13940,13949,13973,14025,14028,14032,14049,14115,14207,14241,14242,14277,14278,14289,14318,14374,14380,14633,14649,14688,14751,14826,14868,14906,14910,14916,14947,14960,14970,15074,15199,15248,15263,15396,15497,15500,15519,15520,15533,15709,15733,15735,15787,15818,15821,15822,15921,16094,16099,16111,16123,16163,16165,16170,16223,16241,16276,16296,16484,16652,16962,16993,17003,17045,17137,17307,17499,17557,17610,17653,17733,17742,17747,17748,17770,17774,17780,17821,17831,17838,17863,17874,17881,17906,17926,17941,17974,18000,18035,18049,18073,18079,18083,18095,18096,18100,18101,18112,18135,18139,18148,18151,18170,18236,18275,18277,18303,18342,18368,18379,18380,18389,18401,18442,18487,18490,18491,18546,18559,18579,18600,18604,18607,18613,18655,18656,18679,18698,18726,18798,18901,18918,18919,18960,18971,18980,19004,19031,19034,19056,19097,19101,19154,19167,19169,19181,19186,19201,19218,19219,19228,19235,19238,19253,19279,19284,19332,19344,19363,19377,19382,19395,19410,19419,19428,19446,19449,19453,19456,19458,19460,19477,19484,19492,19498,19532,19536,19539,19543,19563,19564,19581,19582,19587,19607,19640,19651,19663,19667,19685,19715,19743,19763,19768,19785,19792,19823,19830,19832,19833,19834,19836,19838,19840,19854,19857,19864,19872,19873,19890,19895,19897,19902,19908,19923,19926,19937,19946,19947,19950,19951,19974,19985,19988,19989,19993,20001,20011,20012,20023,20024,20025,20032,20036,20053,20064,20075,20089,20098,20099,20108,20123,20128,20135,20145,20147,20157,20158,20160,20169,20179,20187,20200,20201,20205,20206,20213,20224,20236,20241,20242,20247,20249,20255,20274,20311,20313,20342,20360,20382,20417,20432,20441,20461,20498,20517,20584,20605,20618,20670,20682,20699,20700,20732,20760,20808,20896,21048,21087,21116,21117,21119,21120,21124,21129,21156,21159,21182,21183,21189,21194,21236,21247,21263,21304,21311,21338,21341,21353,21369,21370,21376,21387,21392,21394,21422,21433,21436,21437,21439,21454,21457,21474,21602,21995,22131,22132,22134,22136,22211,22251,22261,22289,22293,22305,22312,22355,22363,22369,22372,22407,22434,22489,22500,22509,22564,22573,22590,22591,22592,22594,22624,22637,22660,22664,22672,22677,22689,22720,22756,22765,22791,22798,22800,22805,22810,22820,22826,22844,22889,22903,22906,22920,22943,22960,22969,22980,22996,22997,23004,23005,23034,23050,23051,23052,23053,23055,23060,23078,23079,23123]]],["+",[19,18,[[0,2,2,0,2,[[35,1,1,0,1],[46,1,1,1,2]]],[6,4,4,2,6,[[219,1,1,2,3],[230,1,1,3,4],[231,2,2,4,6]]],[8,2,1,6,7,[[255,2,1,6,7]]],[9,1,1,7,8,[[272,1,1,7,8]]],[10,2,2,8,10,[[311,2,2,8,10]]],[13,1,1,10,11,[[389,1,1,10,11]]],[15,1,1,11,12,[[415,1,1,11,12]]],[18,2,2,12,14,[[584,1,1,12,13],[617,1,1,13,14]]],[21,1,1,14,15,[[675,1,1,14,15]]],[22,1,1,15,16,[[727,1,1,15,16]]],[23,1,1,16,17,[[786,1,1,16,17]]],[25,1,1,17,18,[[837,1,1,17,18]]]],[1047,1431,6795,7069,7111,7114,7735,8159,9460,9463,11676,12353,15735,16276,17610,18655,19985,21392]]],["Abide",[3,3,[[0,1,1,0,1,[[21,1,1,0,1]]],[8,2,2,1,3,[[257,2,2,1,3]]]],[552,7792,7810]]],["Dwell",[1,1,[[6,1,1,0,1,[[227,1,1,0,1]]]],[6990]]],["Remain",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1130]]],["Sit",[2,2,[[18,1,1,0,1,[[587,1,1,0,1]]],[22,1,1,1,2,[[725,1,1,1,2]]]],[15787,18604]]],["Tarry",[6,6,[[1,1,1,0,1,[[73,1,1,0,1]]],[9,2,2,1,3,[[276,1,1,1,2],[277,1,1,2,3]]],[11,2,2,3,5,[[314,2,2,3,5]]],[12,1,1,5,6,[[356,1,1,5,6]]]],[2191,8245,8271,9553,9557,10912]]],["abide",[26,26,[[0,3,3,0,3,[[23,1,1,0,1],[28,1,1,1,2],[43,1,1,2,3]]],[1,1,1,3,4,[[65,1,1,3,4]]],[2,1,1,4,5,[[97,1,1,4,5]]],[3,2,2,5,7,[[138,1,1,5,6],[151,1,1,6,7]]],[4,1,1,7,8,[[155,1,1,7,8]]],[8,4,4,8,12,[[236,1,1,8,9],[240,1,1,9,10],[254,1,1,10,11],[265,1,1,11,12]]],[9,3,3,12,15,[[277,1,1,12,13],[281,1,1,13,14],[282,1,1,14,15]]],[13,2,2,15,17,[[391,1,1,15,16],[398,1,1,16,17]]],[17,2,2,17,19,[[459,1,1,17,18],[473,1,1,18,19]]],[18,1,1,19,20,[[538,1,1,19,20]]],[23,3,3,20,23,[[793,2,2,20,22],[794,1,1,22,23]]],[27,2,2,23,25,[[864,2,2,23,25]]],[32,1,1,25,26,[[897,1,1,25,26]]]],[646,814,1357,1976,2952,4380,4870,4994,7234,7326,7708,7999,8270,8408,8444,11723,11885,13449,13833,14826,20145,20160,20206,22131,22132,22637]]],["abideth",[4,4,[[9,1,1,0,1,[[282,1,1,0,1]]],[18,2,2,1,3,[[532,1,1,1,2],[602,1,1,2,3]]],[23,1,1,3,4,[[765,1,1,3,4]]]],[8429,14751,16111,19449]]],["abiding",[2,2,[[6,2,2,0,2,[[226,2,2,0,2]]]],[6958,6961]]],["abode",[33,32,[[0,2,2,0,2,[[28,1,1,0,1],[48,1,1,1,2]]],[3,3,3,2,5,[[136,1,1,2,3],[138,1,1,3,4],[141,1,1,4,5]]],[4,4,3,5,8,[[153,2,1,5,6],[155,1,1,6,7],[161,1,1,7,8]]],[5,3,3,8,11,[[188,1,1,8,9],[191,1,1,9,10],[194,1,1,10,11]]],[6,4,4,11,15,[[221,1,1,11,12],[229,1,1,12,13],[230,1,1,13,14],[231,1,1,14,15]]],[8,9,9,15,24,[[236,1,1,15,16],[242,1,1,16,17],[248,1,1,17,18],[257,1,1,18,19],[258,3,3,19,22],[260,1,1,22,23],[261,1,1,23,24]]],[9,3,3,24,27,[[267,1,1,24,25],[277,1,1,25,26],[281,1,1,26,27]]],[10,1,1,27,28,[[307,1,1,27,28]]],[11,1,1,28,29,[[331,1,1,28,29]]],[14,1,1,29,30,[[410,1,1,29,30]]],[22,1,1,30,31,[[715,1,1,30,31]]],[23,1,1,31,32,[[782,1,1,31,32]]]],[809,1497,4312,4383,4472,4938,5004,5166,5891,5942,6011,6846,7028,7101,7104,7235,7354,7501,7793,7824,7828,7835,7874,7908,8023,8271,8397,9336,10088,12233,18380,19923]]],["abodest",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6639]]],["continue",[2,2,[[2,2,2,0,2,[[101,2,2,0,2]]]],[3048,3049]]],["continued",[3,3,[[6,1,1,0,1,[[215,1,1,0,1]]],[9,1,1,1,2,[[272,1,1,1,2]]],[10,1,1,2,3,[[312,1,1,2,3]]]],[6640,8168,9481]]],["down",[28,25,[[0,2,2,0,2,[[20,1,1,0,1],[36,1,1,1,2]]],[1,2,2,2,4,[[51,1,1,2,3],[81,1,1,3,4]]],[6,2,2,4,6,[[229,2,2,4,6]]],[7,5,2,6,8,[[235,5,2,6,8]]],[8,1,1,8,9,[[255,1,1,8,9]]],[9,1,1,9,10,[[268,1,1,9,10]]],[10,2,2,10,12,[[292,1,1,10,11],[309,1,1,11,12]]],[14,2,2,12,14,[[411,1,1,12,13],[412,1,1,13,14]]],[15,1,1,14,15,[[413,1,1,14,15]]],[16,1,1,15,16,[[428,1,1,15,16]]],[17,2,2,16,18,[[437,2,2,16,18]]],[18,1,1,18,19,[[614,1,1,18,19]]],[21,1,1,19,20,[[672,1,1,19,20]]],[22,1,1,20,21,[[730,1,1,20,21]]],[23,3,3,21,24,[[757,1,1,21,22],[770,1,1,22,23],[780,1,1,23,24]]],[24,1,1,24,25,[[799,1,1,24,25]]]],[529,1108,1569,2444,7030,7039,7191,7192,7754,8062,8789,9391,12240,12268,12300,12762,12899,12904,16223,17557,18698,19284,19582,19857,20417]]],["downsitting",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16241]]],["dwell",[199,184,[[0,19,16,0,16,[[3,1,1,0,1],[12,2,1,1,2],[18,1,1,2,3],[19,1,1,3,4],[23,2,2,4,6],[33,6,5,6,11],[34,1,1,11,12],[44,1,1,12,13],[45,1,1,13,14],[46,3,2,14,16]]],[1,2,2,16,18,[[51,1,1,16,17],[72,1,1,17,18]]],[2,9,8,18,26,[[102,1,1,18,19],[109,1,1,19,20],[112,3,2,20,22],[114,2,2,22,24],[115,2,2,24,26]]],[3,10,7,26,33,[[129,6,3,26,29],[148,1,1,29,30],[149,2,2,30,32],[151,1,1,32,33]]],[4,13,11,33,44,[[154,3,2,33,35],[163,2,2,35,37],[164,2,1,37,38],[165,1,1,38,39],[169,1,1,39,40],[175,1,1,40,41],[177,1,1,41,42],[180,1,1,42,43],[182,1,1,43,44]]],[5,14,14,44,58,[[195,2,2,44,46],[196,1,1,46,47],[199,1,1,47,48],[200,1,1,48,49],[201,1,1,49,50],[202,1,1,50,51],[203,2,2,51,53],[206,2,2,53,55],[207,1,1,55,56],[210,2,2,56,58]]],[6,6,6,58,64,[[211,3,3,58,61],[216,1,1,61,62],[227,1,1,62,63],[228,1,1,63,64]]],[8,3,2,64,66,[[247,1,1,64,65],[262,2,1,65,66]]],[9,2,2,66,68,[[273,2,2,66,68]]],[10,4,4,68,72,[[292,1,1,68,69],[293,1,1,69,70],[298,1,1,70,71],[307,1,1,71,72]]],[11,5,5,72,77,[[316,1,1,72,73],[318,2,2,73,75],[329,1,1,75,76],[337,1,1,76,77]]],[12,1,1,77,78,[[354,1,1,77,78]]],[13,5,5,78,83,[[368,1,1,78,79],[372,1,1,79,80],[374,2,2,80,82],[385,1,1,82,83]]],[15,3,3,83,86,[[420,1,1,83,84],[423,2,2,84,86]]],[18,16,16,86,102,[[481,1,1,86,87],[500,1,1,87,88],[501,1,1,88,89],[504,1,1,89,90],[542,1,1,90,91],[545,1,1,91,92],[546,2,2,92,94],[561,1,1,94,95],[575,1,1,95,96],[578,2,2,96,98],[584,1,1,98,99],[609,1,1,99,100],[610,1,1,100,101],[620,1,1,101,102]]],[19,3,3,102,105,[[648,2,2,102,104],[652,1,1,104,105]]],[22,11,11,105,116,[[684,1,1,105,106],[687,1,1,106,107],[701,1,1,107,108],[702,1,1,108,109],[704,1,1,109,110],[708,1,1,110,111],[710,1,1,111,112],[711,1,1,112,113],[727,1,1,113,114],[729,1,1,114,115],[736,1,1,115,116]]],[23,40,37,116,153,[[748,1,1,116,117],[752,1,1,117,118],[753,1,1,118,119],[756,1,1,119,120],[764,1,1,120,121],[767,1,1,121,122],[768,1,1,122,123],[769,1,1,123,124],[771,1,1,124,125],[773,3,3,125,128],[775,1,1,128,129],[776,1,1,129,130],[779,4,4,130,134],[784,4,3,134,137],[786,2,2,137,139],[787,1,1,139,140],[788,5,4,140,144],[791,1,1,144,145],[792,2,2,145,147],[793,3,3,147,150],[794,3,2,150,152],[795,1,1,152,153]]],[25,17,15,153,168,[[803,1,1,153,154],[813,1,1,154,155],[817,1,1,155,156],[829,3,2,156,158],[833,1,1,158,159],[835,2,2,159,161],[837,1,1,161,162],[838,2,1,162,163],[839,3,3,163,166],[840,2,2,166,168]]],[27,3,3,168,171,[[870,1,1,168,169],[873,1,1,169,170],[875,1,1,170,171]]],[28,1,1,171,172,[[878,1,1,171,172]]],[29,3,3,172,175,[[881,1,1,172,173],[883,1,1,173,174],[887,1,1,174,175]]],[32,1,1,175,176,[[899,1,1,175,176]]],[33,1,1,176,177,[[900,1,1,176,177]]],[34,2,2,177,179,[[904,2,2,177,179]]],[35,1,1,179,180,[[906,1,1,179,180]]],[36,1,1,180,181,[[909,1,1,180,181]]],[37,3,3,181,184,[[918,1,1,181,182],[919,1,1,182,183],[924,1,1,183,184]]]],[99,324,487,510,594,628,990,996,1001,1002,1003,1012,1368,1420,1424,1426,1575,2177,3098,3340,3444,3445,3487,3488,3529,3556,4094,4103,4104,4735,4813,4815,4877,4942,4967,5238,5239,5250,5284,5378,5516,5552,5641,5728,6044,6059,6070,6167,6191,6265,6275,6287,6291,6376,6378,6383,6489,6491,6530,6536,6544,6664,6991,6994,7468,7935,8182,8185,8806,8833,9012,9326,9616,9675,9676,10010,10246,10864,11214,11300,11348,11357,11586,12507,12589,12590,13973,14241,14242,14289,14868,14916,14960,14970,15263,15497,15519,15520,15733,16165,16170,16296,16993,17003,17137,17774,17831,18095,18101,18135,18236,18277,18303,18656,18679,18798,19056,19169,19201,19253,19428,19492,19532,19539,19607,19640,19663,19667,19715,19768,19830,19832,19834,19838,19946,19950,19951,19988,19989,20001,20011,20023,20024,20036,20075,20089,20108,20128,20135,20157,20169,20205,20213,20498,20699,20808,21182,21183,21263,21338,21341,21387,21422,21433,21436,21437,21454,21457,22211,22261,22289,22363,22407,22434,22500,22677,22689,22756,22765,22805,22844,22980,23005,23079]]],["dwelled",[6,5,[[0,4,3,0,3,[[12,3,2,0,2],[19,1,1,2,3]]],[7,1,1,3,4,[[232,1,1,3,4]]],[8,1,1,4,5,[[247,1,1,4,5]]]],[325,330,496,7131,7471]]],["dwellest",[14,14,[[4,3,3,0,3,[[164,1,1,0,1],[171,1,1,1,2],[178,1,1,2,3]]],[11,1,1,3,4,[[331,1,1,3,4]]],[18,2,2,4,6,[[557,1,1,4,5],[600,1,1,5,6]]],[21,1,1,6,7,[[678,1,1,6,7]]],[22,3,3,7,10,[[688,1,1,7,8],[715,1,1,8,9],[725,1,1,9,10]]],[24,1,1,10,11,[[800,1,1,10,11]]],[25,2,2,11,13,[[808,1,1,11,12],[813,1,1,12,13]]],[37,1,1,13,14,[[912,1,1,13,14]]]],[5269,5407,5567,10076,15199,16099,17653,17874,18368,18607,20441,20584,20682,22906]]],["dwelleth",[19,19,[[3,1,1,0,1,[[129,1,1,0,1]]],[5,1,1,1,2,[[192,1,1,1,2]]],[8,2,2,2,4,[[239,1,1,2,3],[262,1,1,3,4]]],[9,1,1,4,5,[[273,1,1,4,5]]],[12,1,1,5,6,[[350,1,1,5,6]]],[18,3,3,6,9,[[486,1,1,6,7],[568,1,1,7,8],[590,1,1,8,9]]],[19,1,1,9,10,[[630,1,1,9,10]]],[23,4,4,10,14,[[773,1,1,10,11],[788,1,1,11,12],[793,1,1,12,13],[795,1,1,13,14]]],[24,1,1,14,15,[[797,1,1,14,15]]],[25,2,2,15,17,[[817,1,1,15,16],[839,1,1,16,17]]],[27,1,1,17,18,[[865,1,1,17,18]]],[29,1,1,18,19,[[886,1,1,18,19]]]],[4093,5974,7301,7941,8182,10766,14032,15396,15818,16484,19651,20012,20158,20255,20313,20808,21439,22136,22489]]],["dwelling",[15,15,[[0,1,1,0,1,[[24,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]],[10,5,5,2,7,[[298,4,4,2,6],[311,1,1,6,7]]],[11,1,1,7,8,[[329,1,1,7,8]]],[13,5,5,8,13,[[372,5,5,8,13]]],[23,1,1,13,14,[[790,1,1,13,14]]],[25,1,1,14,15,[[839,1,1,14,15]]]],[685,6175,9015,9024,9028,9034,9459,10008,11284,11303,11312,11315,11321,20064,21436]]],["dwelt",[188,180,[[0,23,22,0,22,[[3,1,1,0,1],[10,2,2,1,3],[12,1,1,3,4],[13,2,2,4,6],[15,1,1,6,7],[18,3,2,7,9],[20,2,2,9,11],[21,1,1,11,12],[22,1,1,12,13],[23,1,1,13,14],[24,1,1,14,15],[25,2,2,15,17],[35,1,1,17,18],[36,1,1,18,19],[37,1,1,19,20],[46,1,1,20,21],[49,1,1,21,22]]],[1,2,2,22,24,[[51,1,1,22,23],[61,1,1,23,24]]],[2,2,2,24,26,[[107,1,1,24,25],[115,1,1,25,26]]],[3,9,9,26,35,[[130,2,2,26,28],[136,1,1,28,29],[137,4,4,29,33],[148,1,1,33,34],[149,1,1,34,35]]],[4,18,14,35,49,[[153,4,3,35,38],[154,10,7,38,45],[155,1,1,45,46],[156,1,1,46,47],[160,1,1,47,48],[181,1,1,48,49]]],[5,14,14,49,63,[[188,1,1,49,50],[193,1,1,50,51],[195,1,1,51,52],[198,2,2,52,54],[202,1,1,54,55],[205,2,2,55,57],[207,1,1,57,58],[208,1,1,58,59],[210,4,4,59,63]]],[6,22,21,63,84,[[211,8,7,63,70],[213,2,2,70,72],[214,2,2,72,74],[218,1,1,74,75],[219,2,2,75,77],[220,1,1,77,78],[221,2,2,78,80],[225,1,1,80,81],[228,2,2,81,83],[231,1,1,83,84]]],[7,1,1,84,85,[[233,1,1,84,85]]],[8,6,6,85,91,[[254,1,1,85,86],[257,1,1,86,87],[258,1,1,87,88],[262,2,2,88,90],[266,1,1,90,91]]],[9,5,5,91,96,[[268,1,1,91,92],[271,1,1,92,93],[273,1,1,93,94],[275,1,1,94,95],[280,1,1,95,96]]],[10,13,13,96,109,[[292,1,1,96,97],[294,1,1,97,98],[297,1,1,98,99],[299,1,1,99,100],[301,1,1,100,101],[302,3,3,101,104],[303,2,2,104,106],[305,2,2,106,108],[307,1,1,108,109]]],[11,8,8,109,117,[[325,1,1,109,110],[327,1,1,110,111],[328,1,1,111,112],[329,3,3,112,115],[331,1,1,115,116],[334,1,1,116,117]]],[12,25,24,117,141,[[339,1,1,117,118],[341,6,5,118,123],[342,6,6,123,129],[344,1,1,129,130],[345,3,3,130,133],[346,5,5,133,138],[347,1,1,138,139],[348,1,1,139,140],[354,1,1,140,141]]],[13,12,12,141,153,[[376,1,1,141,142],[377,1,1,142,143],[382,1,1,143,144],[385,1,1,144,145],[386,1,1,145,146],[392,2,2,146,148],[394,1,1,148,149],[396,1,1,149,150],[397,2,2,150,152],[400,1,1,152,153]]],[14,1,1,153,154,[[404,1,1,153,154]]],[15,10,9,154,163,[[416,1,1,154,155],[419,1,1,155,156],[423,7,6,156,162],[425,1,1,162,163]]],[16,1,1,163,164,[[434,1,1,163,164]]],[17,1,1,164,165,[[457,1,1,164,165]]],[18,1,1,165,166,[[545,1,1,165,166]]],[22,1,1,166,167,[[715,1,1,166,167]]],[23,6,6,167,173,[[746,1,1,167,168],[779,1,1,168,169],[783,1,1,169,170],[784,1,1,170,171],[785,1,1,171,172],[788,1,1,172,173]]],[25,6,6,173,179,[[804,1,1,173,174],[832,2,2,174,176],[837,1,1,176,177],[838,1,1,177,178],[840,1,1,178,179]]],[35,1,1,179,180,[[907,1,1,179,180]]]],[95,268,297,336,343,348,384,486,487,533,534,566,581,653,669,698,709,1048,1084,1130,1447,1528,1569,1856,3254,3559,4133,4153,4326,4341,4365,4371,4374,4758,4800,4896,4898,4936,4946,4948,4950,4958,4959,4960,4961,4977,5050,5149,5695,5884,5983,6053,6132,6134,6275,6368,6371,6424,6459,6478,6483,6484,6494,6518,6519,6525,6538,6539,6541,6542,6571,6573,6601,6604,6748,6775,6795,6812,6832,6855,6937,7000,7021,7125,7172,7724,7791,7839,7933,7937,8016,8052,8141,8186,8240,8384,8808,8869,8942,9067,9132,9153,9168,9176,9195,9209,9267,9270,9322,9876,9930,9969,10007,10011,10012,10097,10159,10361,10408,10413,10425,10426,10428,10436,10438,10439,10444,10450,10451,10564,10603,10604,10607,10618,10631,10649,10650,10653,10666,10680,10868,11412,11419,11511,11580,11595,11739,11753,11782,11852,11858,11860,11955,12097,12371,12493,12589,12591,12592,12594,12609,12613,12687,12853,13397,14910,18389,18971,19833,19937,19947,19974,20025,20517,21236,21247,21376,21422,21474,22820]]],["ease",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5513]]],["endure",[2,2,[[18,2,2,0,2,[[486,1,1,0,1],[579,1,1,1,2]]]],[14028,15533]]],["establish",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13743]]],["habitation",[2,2,[[18,1,1,0,1,[[510,1,1,0,1]]],[23,1,1,1,2,[[753,1,1,1,2]]]],[14380,19181]]],["haunt",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21117]]],["in",[6,6,[[1,1,1,0,1,[[64,1,1,0,1]]],[3,2,2,1,3,[[151,2,2,1,3]]],[10,1,1,3,4,[[298,1,1,3,4]]],[12,1,1,4,5,[[354,1,1,4,5]]],[22,1,1,5,6,[[718,1,1,5,6]]]],[1937,4847,4848,8998,10867,18442]]],["inhabit",[8,8,[[3,1,1,0,1,[[151,1,1,0,1]]],[22,3,3,1,4,[[720,1,1,1,2],[743,2,2,2,4]]],[23,1,1,4,5,[[792,1,1,4,5]]],[25,1,1,5,6,[[834,1,1,5,6]]],[29,1,1,6,7,[[887,1,1,6,7]]],[35,1,1,7,8,[[906,1,1,7,8]]]],[4879,18491,18918,18919,20098,21304,22509,22800]]],["inhabitant",[31,30,[[22,6,6,0,6,[[683,1,1,0,1],[684,1,1,1,2],[687,1,1,2,3],[690,1,1,3,4],[698,1,1,4,5],[702,1,1,5,6]]],[23,16,16,6,22,[[746,1,1,6,7],[748,1,1,7,8],[753,1,1,8,9],[754,1,1,9,10],[765,1,1,10,11],[766,1,1,11,12],[770,1,1,12,13],[777,1,1,13,14],[778,1,1,14,15],[788,1,1,15,16],[790,1,1,16,17],[792,2,2,17,19],[795,3,3,19,22]]],[29,2,2,22,24,[[879,2,2,22,24]]],[32,5,4,24,28,[[893,5,4,24,28]]],[35,2,2,28,30,[[907,1,1,28,29],[908,1,1,29,30]]]],[17748,17780,17838,17906,18035,18112,18980,19034,19186,19218,19453,19477,19581,19785,19823,20032,20064,20099,20123,20241,20247,20249,22369,22372,22590,22591,22592,22594,22810,22826]]],["inhabitants",[186,173,[[0,3,3,0,3,[[18,1,1,0,1],[33,1,1,1,2],[49,1,1,2,3]]],[1,5,5,3,8,[[64,2,2,3,5],[72,1,1,5,6],[83,2,2,6,8]]],[2,2,2,8,10,[[107,1,1,8,9],[114,1,1,9,10]]],[3,5,5,10,15,[[129,1,1,10,11],[130,1,1,11,12],[148,1,1,12,13],[149,2,2,13,15]]],[4,2,2,15,17,[[165,2,2,15,17]]],[5,18,15,17,32,[[188,2,2,17,19],[193,1,1,19,20],[194,2,2,20,22],[195,3,3,22,25],[196,1,1,25,26],[197,1,1,26,27],[199,1,1,27,28],[201,2,2,28,30],[203,5,2,30,32]]],[6,20,13,32,45,[[211,14,7,32,39],[212,1,1,39,40],[215,1,1,40,41],[220,1,1,41,42],[221,2,2,42,44],[231,1,1,44,45]]],[7,1,1,45,46,[[235,1,1,45,46]]],[8,4,4,46,50,[[241,1,1,46,47],[258,1,1,47,48],[262,1,1,48,49],[266,1,1,49,50]]],[9,1,1,50,51,[[271,1,1,50,51]]],[10,1,1,51,52,[[311,1,1,51,52]]],[11,4,4,52,56,[[331,1,1,52,53],[334,2,2,53,55],[335,1,1,55,56]]],[12,7,6,56,62,[[345,3,2,56,58],[346,1,1,58,59],[348,2,2,59,61],[359,1,1,61,62]]],[13,20,19,62,81,[[381,1,1,62,63],[386,6,5,63,68],[387,2,2,68,70],[388,1,1,70,71],[398,3,3,71,74],[399,1,1,74,75],[400,5,5,75,80],[401,1,1,80,81]]],[14,1,1,81,82,[[406,1,1,81,82]]],[15,3,3,82,85,[[415,1,1,82,83],[419,1,1,83,84],[421,1,1,84,85]]],[18,5,5,85,90,[[510,2,2,85,87],[526,1,1,87,88],[552,1,1,88,89],[560,1,1,89,90]]],[22,20,20,90,110,[[683,1,1,90,91],[686,1,1,91,92],[688,2,2,92,94],[696,1,1,94,95],[699,1,1,95,96],[700,1,1,96,97],[701,2,2,97,99],[702,3,3,99,102],[704,3,3,102,105],[715,1,1,105,106],[716,1,1,106,107],[718,1,1,107,108],[720,2,2,108,110]]],[23,38,37,110,147,[[745,1,1,110,111],[748,1,1,111,112],[750,1,1,112,113],[752,1,1,113,114],[754,1,1,114,115],[755,3,3,115,118],[757,2,1,118,119],[761,2,2,119,121],[762,1,1,121,122],[763,2,2,122,124],[765,1,1,124,125],[767,1,1,125,126],[769,4,4,126,130],[770,1,1,130,131],[776,1,1,131,132],[779,2,2,132,134],[780,1,1,134,135],[786,1,1,135,136],[790,1,1,136,137],[791,1,1,137,138],[793,3,3,138,141],[794,3,3,141,144],[795,3,3,144,147]]],[24,1,1,147,148,[[800,1,1,147,148]]],[25,7,7,148,155,[[812,1,1,148,149],[813,1,1,149,150],[816,1,1,150,151],[827,1,1,151,152],[828,2,2,152,154],[830,1,1,154,155]]],[26,1,1,155,156,[[858,1,1,155,156]]],[27,1,1,156,157,[[865,1,1,156,157]]],[28,3,3,157,160,[[876,2,2,157,159],[877,1,1,159,160]]],[32,2,2,160,162,[[898,2,2,160,162]]],[35,3,3,162,165,[[906,2,2,162,164],[907,1,1,164,165]]],[37,8,8,165,173,[[918,2,2,165,167],[921,1,1,167,168],[922,4,4,168,172],[923,1,1,172,173]]]],[482,1010,1517,1934,1935,2175,2508,2511,3276,3479,4107,4122,4735,4812,4815,5285,5287,5878,5893,5985,6026,6028,6040,6048,6061,6065,6126,6160,6217,6265,6282,6286,6520,6528,6536,6539,6540,6541,6542,6547,6646,6829,6837,6850,7112,7194,7352,7815,7938,8020,8138,9462,10087,10161,10164,10167,10581,10588,10617,10677,10678,10982,11495,11594,11602,11605,11607,11610,11635,11637,11645,11897,11901,11908,11917,11957,11960,11961,11963,11965,11984,12116,12340,12423,12535,14374,14380,14649,15074,15248,17742,17821,17863,17881,18000,18049,18073,18079,18083,18096,18100,18101,18139,18148,18151,18379,18401,18442,18490,18491,18960,19031,19101,19154,19219,19228,19235,19238,19279,19377,19382,19395,19410,19419,19446,19498,19536,19543,19563,19564,19587,19763,19836,19840,19873,19993,20053,20075,20135,20147,20157,20187,20200,20201,20224,20236,20247,20432,20670,20699,20760,21117,21129,21156,21189,21995,22134,22293,22305,22312,22660,22664,22791,22798,22810,22996,22997,23034,23050,23052,23053,23055,23060]]],["inhabited",[29,28,[[0,1,1,0,1,[[35,1,1,0,1]]],[1,1,1,1,2,[[65,1,1,1,2]]],[6,2,2,2,4,[[211,2,2,2,4]]],[12,1,1,4,5,[[342,1,1,4,5]]],[22,4,4,5,9,[[691,1,1,5,6],[722,1,1,6,7],[723,1,1,7,8],[732,1,1,8,9]]],[23,5,5,9,14,[[750,1,1,9,10],[761,1,1,10,11],[766,1,1,11,12],[794,2,2,12,14]]],[25,8,8,14,22,[[813,1,1,14,15],[827,3,3,15,18],[830,1,1,18,19],[837,2,2,19,21],[839,1,1,21,22]]],[37,7,6,22,28,[[912,1,1,22,23],[917,2,1,23,24],[919,1,1,24,25],[922,1,1,25,26],[924,2,2,26,28]]]],[1060,1982,6526,6530,10437,17926,18559,18579,18726,19097,19363,19460,20179,20205,20700,21117,21119,21120,21194,21369,21394,21437,22903,22969,23004,23051,23078,23079]]],["inhabitest",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14207]]],["inhabiteth",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13231]]],["keep",[1,1,[[18,1,1,0,1,[[590,1,1,0,1]]]],[15822]]],["lurking",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14115]]],["married",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12694]]],["marrying",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12698]]],["place",[1,1,[[27,1,1,0,1,[[872,1,1,0,1]]]],[22251]]],["placed",[4,4,[[11,3,3,0,3,[[329,3,3,0,3]]],[22,1,1,3,4,[[683,1,1,3,4]]]],[9989,10007,10009,17747]]],["remain",[10,10,[[4,1,1,0,1,[[173,1,1,0,1]]],[5,1,1,1,2,[[187,1,1,1,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[10,1,1,3,4,[[301,1,1,3,4]]],[22,3,3,4,7,[[710,1,1,4,5],[722,1,1,5,6],[743,1,1,6,7]]],[23,3,3,7,10,[[761,1,1,7,8],[774,1,1,8,9],[795,1,1,9,10]]]],[5460,5865,7749,9124,18275,18546,18901,19382,19685,20274]]],["remained",[10,10,[[3,1,1,0,1,[[151,1,1,0,1]]],[8,2,2,1,3,[[258,1,1,1,2],[259,1,1,2,3]]],[9,1,1,3,4,[[279,1,1,3,4]]],[12,1,1,4,5,[[350,1,1,4,5]]],[23,4,4,5,9,[[781,2,2,5,7],[782,1,1,7,8],[795,1,1,8,9]]],[25,1,1,9,10,[[804,1,1,9,10]]]],[4873,7824,7842,8337,10774,19890,19895,19908,20242,20517]]],["remainest",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20461]]],["remaineth",[1,1,[[23,1,1,0,1,[[782,1,1,0,1]]]],[19897]]],["return",[1,1,[[25,1,1,0,1,[[836,1,1,0,1]]]],[21353]]],["sat",[72,65,[[0,7,7,0,7,[[17,1,1,0,1],[18,1,1,1,2],[20,1,1,2,3],[30,1,1,3,4],[37,1,1,4,5],[42,1,1,5,6],[47,1,1,6,7]]],[1,4,4,7,11,[[61,1,1,7,8],[65,1,1,8,9],[66,1,1,9,10],[67,1,1,10,11]]],[2,2,2,11,13,[[104,2,2,11,13]]],[6,3,3,13,16,[[216,1,1,13,14],[223,1,1,14,15],[230,1,1,15,16]]],[7,1,1,16,17,[[233,1,1,16,17]]],[8,6,5,17,22,[[236,1,1,17,18],[239,1,1,18,19],[254,1,1,19,20],[255,2,1,20,21],[263,1,1,21,22]]],[9,5,5,22,27,[[273,2,2,22,24],[284,1,1,24,25],[285,1,1,25,26],[289,1,1,26,27]]],[10,6,6,27,33,[[292,2,2,27,29],[303,1,1,29,30],[306,1,1,30,31],[311,1,1,31,32],[312,1,1,32,33]]],[11,6,5,33,38,[[313,1,1,33,34],[316,1,1,34,35],[318,2,1,35,36],[323,1,1,36,37],[325,1,1,37,38]]],[12,3,3,38,41,[[354,2,2,38,40],[366,1,1,40,41]]],[13,2,1,41,42,[[384,2,1,41,42]]],[14,2,2,42,44,[[411,1,1,42,43],[412,1,1,43,44]]],[15,1,1,44,45,[[420,1,1,44,45]]],[16,5,5,45,50,[[426,2,2,45,47],[427,2,2,47,49],[430,1,1,49,50]]],[17,1,1,50,51,[[464,1,1,50,51]]],[18,1,1,51,52,[[503,1,1,51,52]]],[23,7,6,52,58,[[747,1,1,52,53],[759,2,1,53,54],[776,1,1,54,55],[780,2,2,55,57],[783,1,1,57,58]]],[25,7,5,58,63,[[804,2,1,58,59],[809,3,2,59,61],[815,1,1,61,62],[821,1,1,62,63]]],[31,3,2,63,65,[[891,1,1,63,64],[892,2,1,64,65]]]],[425,458,529,907,1133,1323,1453,1845,1950,1995,2012,3174,3190,6665,6893,7080,7163,7221,7310,7715,7755,7965,8181,8198,8502,8519,8661,8782,8789,9204,9294,9464,9490,9542,9623,9706,9848,9884,10864,10879,11187,11551,12241,12261,12510,12704,12716,12743,12745,12780,13557,14277,19004,19332,19743,19854,19864,19926,20517,20605,20618,20732,20896,22564,22573]]],["satest",[2,2,[[18,1,1,0,1,[[486,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[14025,21048]]],["set",[9,9,[[8,1,1,0,1,[[237,1,1,0,1]]],[10,2,2,1,3,[[292,1,1,1,2],[311,1,1,2,3]]],[13,1,1,3,4,[[372,1,1,3,4]]],[18,2,2,4,6,[[590,1,1,4,5],[599,1,1,5,6]]],[24,1,1,6,7,[[799,1,1,6,7]]],[25,2,2,7,9,[[826,1,1,7,8],[827,1,1,8,9]]]],[7248,8794,9461,11292,15821,16094,20360,21087,21120]]],["setteth",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14906]]],["settle",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21370]]],["sit",[55,54,[[0,1,1,0,1,[[26,1,1,0,1]]],[3,1,1,1,2,[[148,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[9,1,1,3,4,[[285,1,1,3,4]]],[10,11,11,4,15,[[291,8,8,4,12],[293,1,1,12,13],[298,2,2,13,15]]],[11,5,5,15,20,[[319,2,2,15,17],[322,1,1,17,18],[327,1,1,18,19],[330,1,1,19,20]]],[12,1,1,20,21,[[365,1,1,20,21]]],[13,1,1,21,22,[[372,1,1,21,22]]],[18,5,5,22,27,[[503,1,1,22,23],[546,1,1,23,24],[584,1,1,24,25],[596,1,1,25,26],[609,1,1,26,27]]],[20,1,1,27,28,[[668,1,1,27,28]]],[22,9,8,28,36,[[681,1,1,28,29],[692,1,1,29,30],[694,1,1,30,31],[714,1,1,31,32],[720,1,1,32,33],[725,4,3,33,36]]],[23,6,6,36,42,[[752,1,1,36,37],[757,1,1,37,38],[760,1,1,38,39],[777,1,1,39,40],[780,1,1,40,41],[792,1,1,41,42]]],[24,2,2,42,44,[[797,1,1,42,43],[798,1,1,43,44]]],[25,4,4,44,48,[[827,1,1,44,45],[829,1,1,45,46],[834,1,1,46,47],[845,1,1,47,48]]],[28,1,1,48,49,[[878,1,1,48,49]]],[32,2,2,49,51,[[896,1,1,49,50],[899,1,1,50,51]]],[37,2,2,51,53,[[913,1,1,51,52],[916,1,1,52,53]]],[38,1,1,53,54,[[927,1,1,53,54]]]],[746,4724,6633,8519,8730,8734,8737,8741,8744,8747,8752,8765,8822,9005,9010,9710,9711,9823,9937,10051,11148,11298,14278,14947,15709,15921,16163,17499,17733,17941,17974,18342,18487,18600,18607,18613,19167,19279,19344,19792,19872,20098,20311,20342,21116,21159,21311,21602,22355,22624,22672,22920,22960,23123]]],["sittest",[6,6,[[1,1,1,0,1,[[67,1,1,0,1]]],[4,2,2,1,3,[[158,1,1,1,2],[163,1,1,2,3]]],[18,1,1,3,4,[[527,1,1,3,4]]],[19,1,1,4,5,[[650,1,1,4,5]]],[23,1,1,5,6,[[766,1,1,5,6]]]],[2013,5093,5227,14688,17045,19456]]],["sitteth",[24,23,[[1,1,1,0,1,[[60,1,1,0,1]]],[2,5,5,1,6,[[104,5,5,1,6]]],[4,1,1,6,7,[[169,1,1,6,7]]],[10,1,1,7,8,[[291,1,1,7,8]]],[16,1,1,8,9,[[431,1,1,8,9]]],[18,7,6,9,15,[[478,1,1,9,10],[479,1,1,10,11],[487,1,1,11,12],[506,2,1,12,13],[524,1,1,13,14],[576,1,1,14,15]]],[19,3,3,15,18,[[636,1,1,15,16],[647,1,1,16,17],[658,1,1,17,18]]],[22,2,2,18,20,[[706,1,1,18,19],[718,1,1,19,20]]],[23,1,1,20,21,[[773,1,1,20,21]]],[24,1,1,21,22,[[799,1,1,21,22]]],[37,1,1,22,23,[[915,1,1,22,23]]]],[1811,3172,3174,3188,3191,3194,5382,8763,12803,13940,13949,14049,14318,14633,15500,16652,16962,17307,18170,18442,19651,20382,22943]]],["sitting",[13,13,[[6,1,1,0,1,[[213,1,1,0,1]]],[10,2,2,1,3,[[303,1,1,1,2],[312,1,1,2,3]]],[11,2,2,3,5,[[316,1,1,3,4],[321,1,1,4,5]]],[13,1,1,5,6,[[384,1,1,5,6]]],[15,1,1,6,7,[[414,1,1,6,7]]],[16,1,1,7,8,[[430,1,1,7,8]]],[22,1,1,8,9,[[684,1,1,8,9]]],[23,4,4,9,13,[[761,1,1,9,10],[766,2,2,10,12],[782,1,1,12,13]]]],[6588,9198,9499,9641,9761,11560,12313,12792,17770,19382,19458,19484,19902]]],["situate",[2,2,[[25,1,1,0,1,[[828,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[21124,22720]]],["still",[2,2,[[7,1,1,0,1,[[234,1,1,0,1]]],[37,1,1,1,2,[[911,1,1,1,2]]]],[7190,22889]]],["taken",[5,5,[[14,5,5,0,5,[[412,5,5,0,5]]]],[12254,12262,12266,12269,12270]]],["tarried",[6,6,[[7,1,1,0,1,[[233,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[9,2,2,2,4,[[277,1,1,2,3],[281,1,1,3,4]]],[11,1,1,4,5,[[314,1,1,4,5]]],[12,1,1,5,6,[[357,1,1,5,6]]]],[7156,7510,8260,8418,9569,10927]]],["tarrieth",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[8002]]],["tarry",[7,7,[[0,1,1,0,1,[[26,1,1,0,1]]],[2,1,1,1,2,[[103,1,1,1,2]]],[3,1,1,2,3,[[138,1,1,2,3]]],[6,1,1,3,4,[[216,1,1,3,4]]],[8,1,1,4,5,[[236,1,1,4,5]]],[11,2,2,5,7,[[314,1,1,5,6],[326,1,1,6,7]]]],[771,3119,4394,6672,7235,9555,9906]]],["up",[1,1,[[18,1,1,0,1,[[604,1,1,0,1]]]],[16123]]]]},{"k":"H3428","v":[["Jeshebeab",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11028]]]]},{"k":"H3429","v":[]},{"k":"H3430","v":[["Ishbibenob",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8596]]]]},{"k":"H3431","v":[["Ishbah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10402]]]]},{"k":"H3432","v":[["Jashubites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4513]]]]},{"k":"H3433","v":[["Jashubilehem",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10407]]]]},{"k":"H3434","v":[["Jashobeam",[3,3,[[12,3,3,0,3,[[348,1,1,0,1],[349,1,1,1,2],[364,1,1,2,3]]]],[10684,10726,11111]]]]},{"k":"H3435","v":[["Ishbak",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[660,10284]]]]},{"k":"H3436","v":[["Joshbekashah",[2,2,[[12,2,2,0,2,[[362,2,2,0,2]]]],[11050,11070]]]]},{"k":"H3437","v":[["Jashub",[3,3,[[3,1,1,0,1,[[142,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]],[14,1,1,2,3,[[412,1,1,2,3]]]],[4513,10536,12281]]]]},{"k":"H3438","v":[["Ishuah",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1403]]]]},{"k":"H3439","v":[["Jeshohaiah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10421]]]]},{"k":"H3440","v":[["*",[5,4,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[8,1,1,2,3,[[249,1,1,2,3]]],[12,2,1,3,4,[[344,2,1,3,4]]]],[1403,4533,7557,10565]]],["Ishuai",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10565]]],["Ishui",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7557]]],["Isuah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10565]]],["Isui",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1403]]],["Jesui",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4533]]]]},{"k":"H3441","v":[["Jesuites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4533]]]]},{"k":"H3442","v":[["Jeshua",[29,29,[[12,1,1,0,1,[[361,1,1,0,1]]],[13,1,1,1,2,[[397,1,1,1,2]]],[14,10,10,2,12,[[404,4,4,2,6],[405,3,3,6,9],[406,1,1,9,10],[410,1,1,10,11],[412,1,1,11,12]]],[15,17,17,12,29,[[415,1,1,12,13],[419,4,4,13,17],[420,2,2,17,19],[421,2,2,19,21],[422,1,1,21,22],[423,1,1,22,23],[424,6,6,23,29]]]],[11026,11869,12029,12033,12063,12067,12099,12105,12106,12113,12234,12270,12346,12427,12431,12459,12463,12500,12510,12515,12516,12558,12614,12625,12631,12632,12634,12648,12650]]]]},{"k":"H3443","v":[["Jeshua",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12136]]]]},{"k":"H3444","v":[["*",[78,77,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[63,1,1,1,2],[64,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[8,2,2,4,6,[[237,1,1,4,5],[249,1,1,5,6]]],[9,2,2,6,8,[[276,1,1,6,7],[288,1,1,7,8]]],[12,1,1,8,9,[[353,1,1,8,9]]],[13,1,1,9,10,[[386,1,1,9,10]]],[17,2,2,10,12,[[448,1,1,10,11],[465,1,1,11,12]]],[18,45,45,12,57,[[480,2,2,12,14],[486,1,1,14,15],[490,1,1,15,16],[491,1,1,16,17],[495,1,1,17,18],[497,1,1,18,19],[498,2,2,19,21],[499,1,1,21,22],[505,1,1,22,23],[512,2,2,23,25],[519,2,2,25,27],[520,1,1,27,28],[521,1,1,28,29],[530,1,1,29,30],[539,3,3,30,33],[544,1,1,33,34],[545,1,1,34,35],[546,1,1,35,36],[547,1,1,36,37],[551,1,1,37,38],[555,1,1,38,39],[557,1,1,39,40],[565,1,1,40,41],[566,1,1,41,42],[568,1,1,42,43],[573,1,1,43,44],[575,2,2,44,46],[583,1,1,46,47],[593,1,1,47,48],[595,3,3,48,51],[596,4,4,51,55],[617,1,1,55,56],[626,1,1,56,57]]],[22,19,18,57,75,[[690,3,2,57,59],[703,1,1,59,60],[704,2,2,60,62],[711,2,2,62,64],[727,2,2,64,66],[729,2,2,66,68],[730,2,2,68,70],[734,1,1,70,71],[737,2,2,71,73],[738,1,1,73,74],[740,1,1,74,75]]],[31,1,1,75,76,[[890,1,1,75,76]]],[34,1,1,76,77,[[905,1,1,76,77]]]],[1491,1902,1922,5773,7241,7553,8251,8653,10843,11604,13169,13572,13959,13965,14035,14079,14087,14168,14187,14192,14196,14205,14307,14413,14419,14560,14566,14571,14575,14725,14828,14829,14833,14895,14919,14964,14975,15060,15135,15200,15309,15352,15411,15467,15492,15493,15655,15861,15883,15884,15890,16021,16053,16064,16072,16270,16389,17902,17903,18127,18131,18148,18281,18285,18642,18644,18679,18681,18703,18706,18754,18811,18817,18839,18855,22557,22776]]],["+",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14205]]],["Salvation",[4,4,[[18,2,2,0,2,[[480,1,1,0,1],[596,1,1,1,2]]],[22,1,1,2,3,[[738,1,1,2,3]]],[31,1,1,3,4,[[890,1,1,3,4]]]],[13965,16053,18839,22557]]],["deliverance",[2,2,[[18,1,1,0,1,[[495,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]]],[14168,18148]]],["deliverances",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14575]]],["health",[3,3,[[18,3,3,0,3,[[519,1,1,0,1],[520,1,1,1,2],[544,1,1,2,3]]]],[14566,14571,14895]]],["help",[3,3,[[9,1,1,0,1,[[276,1,1,0,1]]],[18,2,2,1,3,[[480,1,1,1,2],[519,1,1,2,3]]]],[8251,13959,14560]]],["salvation",[61,60,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[63,1,1,1,2],[64,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[8,2,2,4,6,[[237,1,1,4,5],[249,1,1,5,6]]],[9,1,1,6,7,[[288,1,1,6,7]]],[12,1,1,7,8,[[353,1,1,7,8]]],[13,1,1,8,9,[[386,1,1,8,9]]],[17,1,1,9,10,[[448,1,1,9,10]]],[18,33,33,10,43,[[486,1,1,10,11],[490,1,1,11,12],[491,1,1,12,13],[497,1,1,13,14],[498,2,2,14,16],[512,2,2,16,18],[530,1,1,18,19],[539,3,3,19,22],[545,1,1,22,23],[546,1,1,23,24],[547,1,1,24,25],[551,1,1,25,26],[555,1,1,26,27],[565,1,1,27,28],[566,1,1,28,29],[568,1,1,29,30],[573,1,1,30,31],[575,2,2,31,33],[583,1,1,33,34],[593,1,1,34,35],[595,3,3,35,38],[596,3,3,38,41],[617,1,1,41,42],[626,1,1,42,43]]],[22,17,16,43,59,[[690,3,2,43,45],[703,1,1,45,46],[704,1,1,46,47],[711,2,2,47,49],[727,2,2,49,51],[729,2,2,51,53],[730,2,2,53,55],[734,1,1,55,56],[737,2,2,56,58],[740,1,1,58,59]]],[34,1,1,59,60,[[905,1,1,59,60]]]],[1491,1902,1922,5773,7241,7553,8653,10843,11604,13169,14035,14079,14087,14187,14192,14196,14413,14419,14725,14828,14829,14833,14919,14964,14975,15060,15135,15309,15352,15411,15467,15492,15493,15655,15861,15883,15884,15890,16021,16064,16072,16270,16389,17902,17903,18127,18131,18281,18285,18642,18644,18679,18681,18703,18706,18754,18811,18817,18855,22776]]],["save",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15200]]],["saving",[1,1,[[18,1,1,0,1,[[505,1,1,0,1]]]],[14307]]],["welfare",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13572]]]]},{"k":"H3445","v":[["down",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22662]]]]},{"k":"H3446","v":[["Isaac",[4,4,[[18,1,1,0,1,[[582,1,1,0,1]]],[23,1,1,1,2,[[777,1,1,1,2]]],[29,2,2,2,4,[[885,2,2,2,4]]]],[15615,19801,22473,22480]]]]},{"k":"H3447","v":[["*",[3,3,[[16,3,3,0,3,[[429,1,1,0,1],[430,1,1,1,2],[433,1,1,2,3]]]],[12773,12781,12821]]],["+",[2,2,[[16,2,2,0,2,[[429,1,1,0,1],[433,1,1,1,2]]]],[12773,12821]]],["out",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12781]]]]},{"k":"H3448","v":[["Jesse",[42,39,[[7,3,2,0,2,[[235,3,2,0,2]]],[8,26,24,2,26,[[251,13,11,2,13],[252,5,5,13,18],[255,3,3,18,21],[257,4,4,21,25],[260,1,1,25,26]]],[9,2,2,26,28,[[286,1,1,26,27],[289,1,1,27,28]]],[10,1,1,28,29,[[302,1,1,28,29]]],[12,5,5,29,34,[[339,2,2,29,31],[347,1,1,31,32],[349,1,1,32,33],[366,1,1,33,34]]],[13,2,2,34,36,[[376,1,1,34,35],[377,1,1,35,36]]],[18,1,1,36,37,[[549,1,1,36,37]]],[22,2,2,37,39,[[689,2,2,37,39]]]],[7207,7212,7596,7598,7600,7603,7604,7605,7606,7613,7614,7615,7617,7630,7631,7635,7638,7676,7757,7760,7761,7794,7795,7796,7800,7871,8555,8654,9167,10318,10319,10673,10738,11190,11411,11432,15020,17885,17894]]]]},{"k":"H3449","v":[["*",[7,6,[[12,6,5,0,5,[[344,1,1,0,1],[349,1,1,1,2],[360,1,1,2,3],[361,3,2,3,5]]],[14,1,1,5,6,[[412,1,1,5,6]]]],[10538,10726,11003,11036,11040,12283]]],["Ishiah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10538]]],["Ishijah",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12283]]],["Isshiah",[3,2,[[12,3,2,0,2,[[361,3,2,0,2]]]],[11036,11040]]],["Jesiah",[2,2,[[12,2,2,0,2,[[349,1,1,0,1],[360,1,1,1,2]]]],[10726,11003]]]]},{"k":"H3450","v":[["Jesimiel",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10421]]]]},{"k":"H3451","v":[["seize",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14747]]]]},{"k":"H3452","v":[["*",[13,13,[[3,2,2,0,2,[[137,1,1,0,1],[139,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[8,4,4,3,7,[[258,2,2,3,5],[261,2,2,5,7]]],[18,4,4,7,11,[[545,1,1,7,8],[555,1,1,8,9],[583,1,1,9,10],[584,1,1,10,11]]],[22,2,2,11,13,[[721,2,2,11,13]]]],[4360,4444,5768,7829,7834,7906,7908,14907,15153,15665,15703,18524,18525]]],["Jeshimon",[6,6,[[3,2,2,0,2,[[137,1,1,0,1],[139,1,1,1,2]]],[8,4,4,2,6,[[258,2,2,2,4],[261,2,2,4,6]]]],[4360,4444,7829,7834,7906,7908]]],["desert",[4,4,[[18,2,2,0,2,[[555,1,1,0,1],[583,1,1,1,2]]],[22,2,2,2,4,[[721,2,2,2,4]]]],[15153,15665,18524,18525]]],["solitary",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15703]]],["wilderness",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,1,1,1,2,[[545,1,1,1,2]]]],[5768,14907]]]]},{"k":"H3453","v":[["*",[4,4,[[17,4,4,0,4,[[447,1,1,0,1],[450,1,1,1,2],[464,1,1,2,3],[467,1,1,3,4]]]],[13140,13213,13540,13634]]],["+",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13634]]],["aged",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13540]]],["ancient",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13140]]],["men",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13213]]]]},{"k":"H3454","v":[["Jeshishai",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10442]]]]},{"k":"H3455","v":[["put",[1,1,[[0,1,1,0,1,[[49,1,1,0,1]]]],[1532]]]]},{"k":"H3456","v":[["*",[4,4,[[0,1,1,0,1,[[46,1,1,0,1]]],[25,3,3,1,4,[[807,1,1,1,2],[813,1,1,2,3],[820,1,1,3,4]]]],[1439,20569,20699,20888]]],["+",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1439]]],["desolate",[3,3,[[25,3,3,0,3,[[807,1,1,0,1],[813,1,1,1,2],[820,1,1,2,3]]]],[20569,20699,20888]]]]},{"k":"H3457","v":[["Ishma",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10388]]]]},{"k":"H3458","v":[["*",[49,45,[[0,17,15,0,15,[[15,3,3,0,3],[16,5,5,3,8],[24,6,5,8,13],[27,2,1,13,14],[35,1,1,14,15]]],[11,2,2,15,17,[[337,2,2,15,17]]],[12,6,6,17,23,[[338,3,3,17,20],[345,1,1,20,21],[346,1,1,21,22],[364,1,1,22,23]]],[13,2,2,23,25,[[385,1,1,23,24],[389,1,1,24,25]]],[14,1,1,25,26,[[412,1,1,25,26]]],[23,21,19,26,45,[[784,4,4,26,30],[785,17,15,30,45]]]],[392,396,397,415,417,420,422,423,667,670,671,674,675,782,1043,10245,10247,10280,10281,10283,10613,10659,11139,11587,11657,12274,19949,19955,19956,19957,19958,19959,19960,19963,19964,19965,19966,19967,19968,19969,19970,19971,19972,19973,19975]]],["Ishmael",[47,43,[[0,16,14,0,14,[[15,3,3,0,3],[16,5,5,3,8],[24,6,5,8,13],[27,2,1,13,14]]],[11,2,2,14,16,[[337,2,2,14,16]]],[12,5,5,16,21,[[338,3,3,16,19],[345,1,1,19,20],[346,1,1,20,21]]],[13,2,2,21,23,[[385,1,1,21,22],[389,1,1,22,23]]],[14,1,1,23,24,[[412,1,1,23,24]]],[23,21,19,24,43,[[784,4,4,24,28],[785,17,15,28,43]]]],[392,396,397,415,417,420,422,423,667,670,671,674,675,782,10245,10247,10280,10281,10283,10613,10659,11587,11657,12274,19949,19955,19956,19957,19958,19959,19960,19963,19964,19965,19966,19967,19968,19969,19970,19971,19972,19973,19975]]],["Ishmael's",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1043]]],["Ishmaelite",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11139]]]]},{"k":"H3459","v":[["*",[7,7,[[0,4,4,0,4,[[36,3,3,0,3],[38,1,1,3,4]]],[6,1,1,4,5,[[218,1,1,4,5]]],[12,1,1,5,6,[[339,1,1,5,6]]],[18,1,1,6,7,[[560,1,1,6,7]]]],[1108,1110,1111,1150,6743,10323,15247]]],["Ishmaelites",[2,2,[[6,1,1,0,1,[[218,1,1,0,1]]],[18,1,1,1,2,[[560,1,1,1,2]]]],[6743,15247]]],["Ishmeelite",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10323]]],["Ishmeelites",[4,4,[[0,4,4,0,4,[[36,3,3,0,3],[38,1,1,3,4]]]],[1108,1110,1111,1150]]]]},{"k":"H3460","v":[["*",[2,2,[[12,2,2,0,2,[[349,1,1,0,1],[364,1,1,1,2]]]],[10724,11128]]],["Ishmaiah",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11128]]],["Ismaiah",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10724]]]]},{"k":"H3461","v":[["Ishmerai",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10593]]]]},{"k":"H3462","v":[["*",[19,19,[[0,2,2,0,2,[[1,1,1,0,1],[40,1,1,1,2]]],[2,2,2,2,4,[[102,1,1,2,3],[115,1,1,3,4]]],[4,1,1,4,5,[[156,1,1,4,5]]],[6,1,1,5,6,[[226,1,1,5,6]]],[10,1,1,6,7,[[309,1,1,6,7]]],[17,1,1,7,8,[[438,1,1,7,8]]],[18,5,5,8,13,[[480,1,1,8,9],[481,1,1,9,10],[490,1,1,10,11],[521,1,1,11,12],[598,1,1,12,13]]],[19,1,1,13,14,[[631,1,1,13,14]]],[20,1,1,14,15,[[663,1,1,14,15]]],[22,1,1,15,16,[[683,1,1,15,16]]],[23,2,2,16,18,[[795,2,2,16,18]]],[25,1,1,18,19,[[835,1,1,18,19]]]],[51,1200,3063,3534,5029,6968,9392,12917,13962,13973,14077,14594,16085,16506,17409,17766,20251,20269,21338]]],["+",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3534]]],["long",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5029]]],["old",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3063]]],["sleep",[10,10,[[6,1,1,0,1,[[226,1,1,0,1]]],[18,3,3,1,4,[[481,1,1,1,2],[490,1,1,2,3],[598,1,1,3,4]]],[19,1,1,4,5,[[631,1,1,4,5]]],[20,1,1,5,6,[[663,1,1,5,6]]],[22,1,1,6,7,[[683,1,1,6,7]]],[23,2,2,7,9,[[795,2,2,7,9]]],[25,1,1,9,10,[[835,1,1,9,10]]]],[6968,13973,14077,16085,16506,17409,17766,20251,20269,21338]]],["sleepest",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14594]]],["slept",[5,5,[[0,2,2,0,2,[[1,1,1,0,1],[40,1,1,1,2]]],[10,1,1,2,3,[[309,1,1,2,3]]],[17,1,1,3,4,[[438,1,1,3,4]]],[18,1,1,4,5,[[480,1,1,4,5]]]],[51,1200,9392,12917,13962]]]]},{"k":"H3463","v":[["*",[9,9,[[8,2,2,0,2,[[261,2,2,0,2]]],[10,2,2,2,4,[[293,1,1,2,3],[308,1,1,3,4]]],[18,1,1,4,5,[[555,1,1,4,5]]],[21,2,2,5,7,[[675,1,1,5,6],[677,1,1,6,7]]],[26,1,1,7,8,[[861,1,1,7,8]]],[27,1,1,8,9,[[868,1,1,8,9]]]],[7912,7917,8836,9368,15178,17600,17636,22083,22184]]],["+",[1,1,[[26,1,1,0,1,[[861,1,1,0,1]]]],[22083]]],["asleep",[2,2,[[8,1,1,0,1,[[261,1,1,0,1]]],[21,1,1,1,2,[[677,1,1,1,2]]]],[7917,17636]]],["sleep",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[21,1,1,1,2,[[675,1,1,1,2]]]],[15178,17600]]],["sleepeth",[2,2,[[10,1,1,0,1,[[308,1,1,0,1]]],[27,1,1,1,2,[[868,1,1,1,2]]]],[9368,22184]]],["sleeping",[1,1,[[8,1,1,0,1,[[261,1,1,0,1]]]],[7912]]],["slept",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8836]]]]},{"k":"H3464","v":[["Jashen",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8685]]]]},{"k":"H3465","v":[["*",[8,6,[[2,4,2,0,2,[[114,2,1,0,1],[115,2,1,1,2]]],[15,2,2,2,4,[[415,1,1,2,3],[424,1,1,3,4]]],[21,1,1,4,5,[[677,1,1,4,5]]],[22,1,1,5,6,[[700,1,1,5,6]]]],[3491,3534,12333,12663,17640,18063]]],["+",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3534]]],["old",[7,6,[[2,3,2,0,2,[[114,2,1,0,1],[115,1,1,1,2]]],[15,2,2,2,4,[[415,1,1,2,3],[424,1,1,3,4]]],[21,1,1,4,5,[[677,1,1,4,5]]],[22,1,1,5,6,[[700,1,1,5,6]]]],[3491,3534,12333,12663,17640,18063]]]]},{"k":"H3466","v":[["Jeshanah",[1,1,[[13,1,1,0,1,[[379,1,1,0,1]]]],[11472]]]]},{"k":"H3467","v":[["*",[205,198,[[1,2,2,0,2,[[51,1,1,0,1],[63,1,1,1,2]]],[3,1,1,2,3,[[126,1,1,2,3]]],[4,5,5,3,8,[[172,1,1,3,4],[174,1,1,4,5],[180,2,2,5,7],[185,1,1,7,8]]],[5,2,2,8,10,[[196,1,1,8,9],[208,1,1,9,10]]],[6,21,20,10,30,[[212,2,2,10,12],[213,4,3,12,15],[216,5,5,15,20],[217,2,2,20,22],[218,1,1,22,23],[220,4,4,23,27],[222,2,2,27,29],[223,1,1,29,30]]],[8,15,15,30,45,[[239,1,1,30,31],[242,1,1,31,32],[244,1,1,32,33],[245,2,2,33,35],[246,1,1,35,36],[249,3,3,36,39],[252,1,1,39,40],[258,2,2,40,42],[260,3,3,42,45]]],[9,11,10,45,55,[[269,1,1,45,46],[274,2,2,46,48],[276,2,2,48,50],[280,1,1,50,51],[288,5,4,51,55]]],[11,8,7,55,62,[[318,3,2,55,57],[325,1,1,57,58],[326,1,1,58,59],[328,1,1,59,60],[331,2,2,60,62]]],[12,6,6,62,68,[[348,1,1,62,63],[353,1,1,63,64],[355,2,2,64,66],[356,2,2,66,68]]],[13,2,2,68,70,[[386,1,1,68,69],[398,1,1,69,70]]],[15,2,1,70,71,[[421,2,1,70,71]]],[17,4,4,71,75,[[440,1,1,71,72],[457,1,1,72,73],[461,1,1,73,74],[475,1,1,74,75]]],[18,57,57,75,132,[[480,1,1,75,76],[483,1,1,76,77],[484,2,2,77,79],[489,1,1,79,80],[494,1,1,80,81],[495,3,3,81,84],[497,2,2,84,86],[499,1,1,86,87],[505,1,1,87,88],[508,2,2,88,90],[510,1,1,90,91],[511,2,2,91,93],[513,1,1,93,94],[514,1,1,94,95],[521,3,3,95,98],[531,1,1,98,99],[532,1,1,99,100],[534,1,1,100,101],[536,1,1,101,102],[537,1,1,102,103],[546,2,2,103,105],[548,2,2,105,107],[549,2,2,107,109],[553,1,1,109,110],[557,3,3,110,113],[563,2,2,113,115],[575,1,1,115,116],[583,4,4,116,120],[584,2,2,120,122],[585,1,1,122,123],[586,2,2,123,125],[593,1,1,125,126],[595,1,1,126,127],[596,3,3,127,130],[615,1,1,130,131],[622,1,1,131,132]]],[19,2,2,132,134,[[647,1,1,132,133],[655,1,1,133,134]]],[22,29,29,134,163,[[697,1,1,134,135],[703,1,1,135,136],[708,1,1,136,137],[711,1,1,137,138],[713,1,1,138,139],[715,2,2,139,141],[716,1,1,141,142],[721,3,3,142,145],[723,5,5,145,150],[724,1,1,150,151],[725,2,2,151,153],[727,2,2,153,155],[737,2,2,155,157],[738,1,1,157,158],[741,4,4,158,162],[742,1,1,162,163]]],[23,19,17,163,180,[[746,2,2,163,165],[748,1,1,165,166],[752,1,1,166,167],[755,2,1,167,168],[758,2,2,168,170],[759,1,1,170,171],[761,2,1,171,172],[767,1,1,172,173],[774,3,3,173,176],[775,1,1,176,177],[777,1,1,177,178],[786,1,1,178,179],[790,1,1,179,180]]],[24,1,1,180,181,[[800,1,1,180,181]]],[25,3,3,181,184,[[835,1,1,181,182],[837,1,1,182,183],[838,1,1,183,184]]],[27,5,4,184,188,[[862,2,1,184,185],[874,2,2,185,187],[875,1,1,187,188]]],[30,1,1,188,189,[[888,1,1,188,189]]],[34,1,1,189,190,[[903,1,1,189,190]]],[35,2,2,190,192,[[908,2,2,190,192]]],[37,6,6,192,198,[[918,2,2,192,194],[919,2,2,194,196],[920,1,1,196,197],[922,1,1,197,198]]]],[1571,1919,3997,5431,5497,5640,5642,5839,6070,6448,6561,6563,6577,6583,6599,6668,6669,6685,6690,6691,6696,6701,6741,6812,6823,6824,6825,6871,6872,6889,7300,7360,7407,7437,7445,7448,7514,7531,7547,7665,7812,7815,7887,7892,7894,8099,8215,8223,8251,8259,8360,8605,8606,8630,8644,9700,9701,9876,9923,9970,10080,10095,10687,10855,10896,10903,10919,10926,11596,11897,12538,12966,13418,13469,13878,13964,13989,13996,14005,14067,14110,14121,14145,14159,14188,14191,14225,14308,14333,14347,14382,14394,14406,14444,14490,14574,14577,14578,14726,14748,14771,14792,14812,14936,14970,14978,14979,15004,15013,15090,15201,15205,15217,15286,15300,15491,15659,15661,15672,15698,15712,15718,15748,15781,15786,15854,15894,15992,16015,16044,16238,16339,16976,17214,18024,18127,18232,18301,18324,18372,18387,18410,18508,18516,18517,18576,18578,18581,18582,18583,18593,18612,18614,18661,18662,18801,18816,18837,18867,18871,18874,18875,18890,18992,18993,19041,19173,19238,19301,19302,19335,19371,19490,19674,19677,19678,19698,19791,19986,20072,20437,21335,21388,21420,22101,22270,22276,22285,22531,22733,22837,22839,22983,22989,23008,23015,23022,23052]]],["+",[29,28,[[1,1,1,0,1,[[63,1,1,0,1]]],[6,8,8,1,9,[[213,2,2,1,3],[216,4,4,3,7],[220,1,1,7,8],[223,1,1,8,9]]],[8,5,5,9,14,[[244,1,1,9,10],[249,2,2,10,12],[258,2,2,12,14]]],[9,4,4,14,18,[[269,1,1,14,15],[274,2,2,15,17],[276,1,1,17,18]]],[12,2,2,18,20,[[355,1,1,18,19],[356,1,1,19,20]]],[13,1,1,20,21,[[398,1,1,20,21]]],[18,1,1,21,22,[[505,1,1,21,22]]],[22,1,1,22,23,[[737,1,1,22,23]]],[23,3,2,23,25,[[755,2,1,23,24],[775,1,1,24,25]]],[35,1,1,25,26,[[908,1,1,25,26]]],[37,2,2,26,28,[[918,1,1,26,27],[922,1,1,27,28]]]],[1919,6583,6599,6668,6669,6690,6691,6812,6889,7407,7531,7547,7812,7815,8099,8215,8223,8259,10903,10926,11897,14308,18801,19238,19698,22839,22983,23052]]],["Help",[3,3,[[9,1,1,0,1,[[280,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]],[18,1,1,2,3,[[489,1,1,2,3]]]],[8360,9700,14067]]],["Save",[7,7,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,6,6,1,7,[[497,1,1,1,2],[499,1,1,2,3],[531,1,1,3,4],[546,1,1,4,5],[583,1,1,5,6],[595,1,1,6,7]]]],[10855,14191,14225,14726,14936,15698,15894]]],["Saviour",[6,6,[[22,6,6,0,6,[[721,1,1,0,1],[723,2,2,1,3],[727,1,1,3,4],[738,1,1,4,5],[741,1,1,5,6]]]],[18508,18576,18582,18662,18837,18874]]],["avenged",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7892]]],["avenging",[2,2,[[8,2,2,0,2,[[260,2,2,0,2]]]],[7887,7894]]],["deliver",[2,2,[[6,2,2,0,2,[[220,2,2,0,2]]]],[6824,6825]]],["delivered",[7,7,[[6,7,7,0,7,[[212,2,2,0,2],[213,1,1,2,3],[218,1,1,3,4],[220,1,1,4,5],[222,2,2,5,7]]]],[6561,6563,6577,6741,6823,6871,6872]]],["deliverer",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6577]]],["help",[5,4,[[9,1,1,0,1,[[276,1,1,0,1]]],[11,2,1,1,2,[[318,2,1,1,2]]],[12,1,1,2,3,[[356,1,1,2,3]]],[13,1,1,3,4,[[386,1,1,3,4]]]],[8251,9701,10919,11596]]],["helped",[2,2,[[1,1,1,0,1,[[51,1,1,0,1]]],[18,1,1,1,2,[[593,1,1,1,2]]]],[1571,15854]]],["preserved",[1,1,[[12,1,1,0,1,[[355,1,1,0,1]]]],[10896]]],["preservest",[1,1,[[18,1,1,0,1,[[513,1,1,0,1]]]],[14444]]],["rescue",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5642]]],["safe",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16015]]],["salvation",[3,3,[[22,2,2,0,2,[[737,1,1,0,1],[741,1,1,1,2]]],[37,1,1,2,3,[[919,1,1,2,3]]]],[18816,18871,23008]]],["save",[83,82,[[4,3,3,0,3,[[172,1,1,0,1],[174,1,1,1,2],[180,1,1,2,3]]],[5,2,2,3,5,[[196,1,1,3,4],[208,1,1,4,5]]],[6,2,2,5,7,[[216,1,1,5,6],[217,1,1,6,7]]],[8,5,5,7,12,[[239,1,1,7,8],[242,1,1,8,9],[245,1,1,9,10],[246,1,1,10,11],[249,1,1,11,12]]],[9,2,2,12,14,[[288,2,2,12,14]]],[11,3,3,14,17,[[328,1,1,14,15],[331,2,2,15,17]]],[17,2,2,17,19,[[457,1,1,17,18],[475,1,1,18,19]]],[18,29,29,19,48,[[480,1,1,19,20],[483,1,1,20,21],[484,1,1,21,22],[495,2,2,22,24],[508,2,2,24,26],[514,1,1,26,27],[521,2,2,27,29],[532,1,1,29,30],[534,1,1,30,31],[536,1,1,31,32],[537,1,1,32,33],[546,1,1,33,34],[548,2,2,34,36],[549,2,2,36,38],[553,1,1,38,39],[563,2,2,39,41],[585,1,1,41,42],[586,2,2,42,44],[596,2,2,44,46],[615,1,1,46,47],[622,1,1,47,48]]],[19,1,1,48,49,[[647,1,1,48,49]]],[22,12,12,49,61,[[703,1,1,49,50],[711,1,1,50,51],[713,1,1,51,52],[715,2,2,52,54],[716,1,1,54,55],[723,1,1,55,56],[724,1,1,56,57],[725,2,2,57,59],[727,1,1,59,60],[741,1,1,60,61]]],[23,9,9,61,70,[[746,2,2,61,63],[758,1,1,63,64],[759,1,1,64,65],[761,1,1,65,66],[774,2,2,66,68],[786,1,1,68,69],[790,1,1,69,70]]],[24,1,1,70,71,[[800,1,1,70,71]]],[25,3,3,71,74,[[835,1,1,71,72],[837,1,1,72,73],[838,1,1,73,74]]],[27,4,3,74,77,[[862,2,1,74,75],[874,1,1,75,76],[875,1,1,76,77]]],[34,1,1,77,78,[[903,1,1,77,78]]],[35,1,1,78,79,[[908,1,1,78,79]]],[37,3,3,79,82,[[918,1,1,79,80],[919,1,1,80,81],[920,1,1,81,82]]]],[5431,5497,5640,6070,6448,6685,6701,7300,7360,7445,7448,7514,8630,8644,9970,10080,10095,13418,13878,13964,13989,13996,14145,14159,14333,14347,14490,14574,14577,14748,14771,14792,14812,14970,14978,14979,15004,15013,15090,15286,15300,15748,15781,15786,15992,16044,16238,16339,16976,18127,18301,18324,18372,18387,18410,18581,18593,18612,18614,18661,18867,18992,18993,19302,19335,19371,19677,19678,19986,20072,20437,21335,21388,21420,22101,22276,22285,22733,22837,22989,23015,23022]]],["saved",[31,31,[[3,1,1,0,1,[[126,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]],[8,1,1,3,4,[[245,1,1,3,4]]],[9,1,1,4,5,[[288,1,1,4,5]]],[11,1,1,5,6,[[326,1,1,5,6]]],[12,1,1,6,7,[[348,1,1,6,7]]],[15,1,1,7,8,[[421,1,1,7,8]]],[18,10,10,8,18,[[495,1,1,8,9],[510,1,1,9,10],[511,1,1,10,11],[521,1,1,11,12],[557,3,3,12,15],[583,2,2,15,17],[584,1,1,17,18]]],[19,1,1,18,19,[[655,1,1,18,19]]],[22,6,6,19,25,[[708,1,1,19,20],[721,1,1,20,21],[723,2,2,21,23],[741,1,1,23,24],[742,1,1,24,25]]],[23,6,6,25,31,[[748,1,1,25,26],[752,1,1,26,27],[761,1,1,27,28],[767,1,1,28,29],[774,1,1,29,30],[777,1,1,30,31]]]],[3997,5839,6696,7437,8606,9923,10687,12538,14121,14382,14394,14578,15201,15205,15217,15659,15661,15712,17214,18232,18517,18578,18583,18875,18890,19041,19173,19371,19490,19674,19791]]],["savest",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[461,1,1,1,2]]],[18,1,1,2,3,[[494,1,1,2,3]]]],[8605,13469,14110]]],["saveth",[6,6,[[8,1,1,0,1,[[252,1,1,0,1]]],[17,1,1,1,2,[[440,1,1,1,2]]],[18,4,4,2,6,[[484,1,1,2,3],[497,1,1,3,4],[511,1,1,4,5],[584,1,1,5,6]]]],[7665,12966,14005,14188,14406,15718]]],["saviour",[7,7,[[9,1,1,0,1,[[288,1,1,0,1]]],[11,1,1,1,2,[[325,1,1,1,2]]],[18,1,1,2,3,[[583,1,1,2,3]]],[22,2,2,3,5,[[697,1,1,3,4],[721,1,1,4,5]]],[23,1,1,5,6,[[758,1,1,5,6]]],[27,1,1,6,7,[[874,1,1,6,7]]]],[8605,9876,15672,18024,18516,19301,22270]]],["saviours",[2,2,[[15,1,1,0,1,[[421,1,1,0,1]]],[30,1,1,1,2,[[888,1,1,1,2]]]],[12538,22531]]],["victory",[1,1,[[18,1,1,0,1,[[575,1,1,0,1]]]],[15491]]]]},{"k":"H3468","v":[["*",[36,35,[[9,4,4,0,4,[[288,3,3,0,3],[289,1,1,3,4]]],[12,1,1,4,5,[[353,1,1,4,5]]],[17,2,2,5,7,[[440,2,2,5,7]]],[18,20,20,7,27,[[489,1,1,7,8],[495,3,3,8,11],[497,1,1,11,12],[501,1,1,12,13],[502,1,1,13,14],[504,2,2,14,16],[527,1,1,16,17],[528,1,1,17,18],[539,1,1,18,19],[542,1,1,19,20],[546,1,1,20,21],[556,1,1,21,22],[562,3,3,22,25],[572,1,1,25,26],[609,1,1,26,27]]],[22,5,5,27,32,[[695,1,1,27,28],[723,1,1,28,29],[729,1,1,29,30],[739,1,1,30,31],[740,1,1,31,32]]],[32,1,1,32,33,[[899,1,1,32,33]]],[34,3,2,33,35,[[905,3,2,33,35]]]],[8605,8638,8649,8658,10855,12955,12962,14071,14120,14153,14164,14188,14246,14256,14286,14294,14691,14703,14834,14865,14948,15194,15275,15278,15280,15455,16167,17993,18569,18678,18853,18865,22671,22781,22786]]],["+",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12955]]],["safety",[2,2,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,1,1,1,2,[[489,1,1,1,2]]]],[12962,14071]]],["salvation",[32,31,[[9,4,4,0,4,[[288,3,3,0,3],[289,1,1,3,4]]],[12,1,1,4,5,[[353,1,1,4,5]]],[18,18,18,5,23,[[495,3,3,5,8],[501,1,1,8,9],[502,1,1,9,10],[504,2,2,10,12],[527,1,1,12,13],[528,1,1,13,14],[539,1,1,14,15],[542,1,1,15,16],[546,1,1,16,17],[556,1,1,17,18],[562,3,3,18,21],[572,1,1,21,22],[609,1,1,22,23]]],[22,5,5,23,28,[[695,1,1,23,24],[723,1,1,24,25],[729,1,1,25,26],[739,1,1,26,27],[740,1,1,27,28]]],[32,1,1,28,29,[[899,1,1,28,29]]],[34,3,2,29,31,[[905,3,2,29,31]]]],[8605,8638,8649,8658,10855,14120,14153,14164,14246,14256,14286,14294,14691,14703,14834,14865,14948,15194,15275,15278,15280,15455,16167,17993,18569,18678,18853,18865,22671,22781,22786]]],["saving",[1,1,[[18,1,1,0,1,[[497,1,1,0,1]]]],[14188]]]]},{"k":"H3469","v":[["Ishi",[5,4,[[12,5,4,0,4,[[339,2,1,0,1],[341,2,2,1,3],[342,1,1,3,4]]]],[10337,10405,10427,10452]]]]},{"k":"H3470","v":[["*",[39,39,[[11,13,13,0,13,[[331,4,4,0,4],[332,9,9,4,13]]],[12,4,4,13,17,[[340,1,1,13,14],[362,2,2,14,16],[363,1,1,16,17]]],[13,3,3,17,20,[[392,1,1,17,18],[398,2,2,18,20]]],[14,2,2,20,22,[[410,2,2,20,22]]],[15,1,1,22,23,[[423,1,1,22,23]]],[22,16,16,23,39,[[679,1,1,23,24],[680,1,1,24,25],[685,1,1,25,26],[691,1,1,26,27],[698,2,2,27,29],[715,4,4,29,33],[716,3,3,33,36],[717,3,3,36,39]]]],[10063,10066,10067,10081,10099,10102,10105,10106,10107,10109,10112,10114,10117,10382,11049,11061,11102,11754,11895,11907,12208,12220,12595,17655,17686,17785,17907,18031,18032,18354,18357,18358,18373,18391,18394,18411,18415,18417,18420]]],["Isaiah",[32,32,[[11,13,13,0,13,[[331,4,4,0,4],[332,9,9,4,13]]],[13,3,3,13,16,[[392,1,1,13,14],[398,2,2,14,16]]],[22,16,16,16,32,[[679,1,1,16,17],[680,1,1,17,18],[685,1,1,18,19],[691,1,1,19,20],[698,2,2,20,22],[715,4,4,22,26],[716,3,3,26,29],[717,3,3,29,32]]]],[10063,10066,10067,10081,10099,10102,10105,10106,10107,10109,10112,10114,10117,11754,11895,11907,17655,17686,17785,17907,18031,18032,18354,18357,18358,18373,18391,18394,18411,18415,18417,18420]]],["Jesaiah",[2,2,[[12,1,1,0,1,[[340,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[10382,12595]]],["Jeshaiah",[5,5,[[12,3,3,0,3,[[362,2,2,0,2],[363,1,1,2,3]]],[14,2,2,3,5,[[410,2,2,3,5]]]],[11049,11061,11102,12208,12220]]]]},{"k":"H3471","v":[["jasper",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[25,1,1,2,3,[[829,1,1,2,3]]]],[2313,2677,21170]]]]},{"k":"H3472","v":[["Ispah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10591]]]]},{"k":"H3473","v":[["Ishpan",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10597]]]]},{"k":"H3474","v":[["*",[26,26,[[3,1,1,0,1,[[139,1,1,0,1]]],[6,2,2,1,3,[[224,2,2,1,3]]],[8,3,3,3,6,[[241,1,1,3,4],[253,2,2,4,6]]],[9,1,1,6,7,[[283,1,1,6,7]]],[10,2,2,7,9,[[296,1,1,7,8],[299,1,1,8,9]]],[12,1,1,9,10,[[350,1,1,9,10]]],[13,2,2,10,12,[[396,1,1,10,11],[398,1,1,11,12]]],[17,1,1,12,13,[[472,1,1,12,13]]],[18,2,2,13,15,[[482,1,1,13,14],[596,1,1,14,15]]],[19,5,5,15,20,[[630,1,1,15,16],[631,1,1,16,17],[636,1,1,17,18],[638,1,1,18,19],[642,1,1,19,20]]],[22,3,3,20,23,[[718,1,1,20,21],[723,2,2,21,23]]],[23,2,2,23,25,[[762,1,1,23,24],[771,1,1,24,25]]],[34,1,1,25,26,[[904,1,1,25,26]]]],[4443,6912,6916,7343,7696,7702,8453,8931,9063,10764,11831,11905,13772,13981,16026,16461,16515,16653,16693,16828,18423,18563,18574,19388,19601,22752]]],["+",[9,9,[[3,1,1,0,1,[[139,1,1,0,1]]],[6,2,2,1,3,[[224,2,2,1,3]]],[8,2,2,3,5,[[253,2,2,3,5]]],[10,1,1,5,6,[[299,1,1,5,6]]],[13,1,1,6,7,[[396,1,1,6,7]]],[22,1,1,7,8,[[723,1,1,7,8]]],[34,1,1,8,9,[[904,1,1,8,9]]]],[4443,6912,6916,7696,7702,9063,11831,18563,22752]]],["direct",[3,3,[[19,2,2,0,2,[[630,1,1,0,1],[638,1,1,1,2]]],[22,1,1,2,3,[[723,1,1,2,3]]]],[16461,16693,18574]]],["directeth",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13772]]],["fitted",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8931]]],["good",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19388]]],["meet",[1,1,[[23,1,1,0,1,[[771,1,1,0,1]]]],[19601]]],["pleased",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8453]]],["right",[3,3,[[12,1,1,0,1,[[350,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[19,1,1,2,3,[[636,1,1,2,3]]]],[10764,16026,16653]]],["straight",[5,5,[[8,1,1,0,1,[[241,1,1,0,1]]],[13,1,1,1,2,[[398,1,1,1,2]]],[18,1,1,2,3,[[482,1,1,2,3]]],[19,1,1,3,4,[[631,1,1,3,4]]],[22,1,1,4,5,[[718,1,1,4,5]]]],[7343,11905,13981,16515,18423]]],["uprightly",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16828]]]]},{"k":"H3475","v":[["Jesher",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10324]]]]},{"k":"H3476","v":[["*",[14,14,[[4,1,1,0,1,[[161,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[12,1,1,2,3,[[366,1,1,2,3]]],[17,3,3,3,6,[[441,1,1,3,4],[468,2,2,4,6]]],[18,2,2,6,8,[[502,1,1,6,7],[596,1,1,7,8]]],[19,5,5,8,13,[[629,1,1,8,9],[631,1,1,9,10],[638,1,1,10,11],[641,1,1,11,12],[644,1,1,12,13]]],[20,1,1,13,14,[[670,1,1,13,14]]]],[5162,9055,11181,13003,13653,13673,14272,15905,16446,16501,16712,16774,16899,17533]]],["+",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16712]]],["equity",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16899]]],["right",[2,2,[[17,1,1,0,1,[[441,1,1,0,1]]],[19,1,1,1,2,[[631,1,1,1,2]]]],[13003,16501]]],["upright",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17533]]],["uprightness",[9,9,[[4,1,1,0,1,[[161,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[12,1,1,2,3,[[366,1,1,2,3]]],[17,2,2,3,5,[[468,2,2,3,5]]],[18,2,2,5,7,[[502,1,1,5,6],[596,1,1,6,7]]],[19,2,2,7,9,[[629,1,1,7,8],[641,1,1,8,9]]]],[5162,9055,11181,13653,13673,14272,15905,16446,16774]]]]},{"k":"H3477","v":[["*",[119,119,[[1,1,1,0,1,[[64,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[4,7,7,2,9,[[158,1,1,2,3],[164,3,3,3,6],[165,1,1,6,7],[173,1,1,7,8],[184,1,1,8,9]]],[5,2,2,9,11,[[195,1,1,9,10],[196,1,1,10,11]]],[6,2,2,11,13,[[227,1,1,11,12],[231,1,1,12,13]]],[8,2,2,13,15,[[247,1,1,13,14],[264,1,1,14,15]]],[9,2,2,15,17,[[267,1,1,15,16],[285,1,1,16,17]]],[10,6,6,17,23,[[301,2,2,17,19],[304,1,1,19,20],[305,2,2,20,22],[312,1,1,22,23]]],[11,10,10,23,33,[[322,3,3,23,26],[324,1,1,26,27],[326,1,1,27,28],[327,2,2,28,30],[328,1,1,30,31],[330,1,1,31,32],[334,1,1,32,33]]],[13,11,11,33,44,[[380,1,1,33,34],[386,1,1,34,35],[390,1,1,35,36],[391,1,1,36,37],[392,1,1,37,38],[393,1,1,38,39],[394,1,1,39,40],[395,2,2,40,42],[397,1,1,42,43],[400,1,1,43,44]]],[14,1,1,44,45,[[410,1,1,44,45]]],[15,1,1,45,46,[[421,1,1,45,46]]],[17,8,8,46,54,[[436,2,2,46,48],[437,1,1,48,49],[439,1,1,49,50],[443,1,1,50,51],[452,1,1,51,52],[458,1,1,52,53],[468,1,1,53,54]]],[18,25,25,54,79,[[484,1,1,54,55],[488,2,2,55,57],[496,1,1,57,58],[502,1,1,58,59],[509,1,1,59,60],[510,2,2,60,62],[513,1,1,62,63],[514,2,2,63,65],[526,1,1,65,66],[541,1,1,66,67],[569,1,1,67,68],[571,1,1,68,69],[574,1,1,69,70],[584,2,2,70,72],[588,2,2,72,74],[589,2,2,74,76],[596,1,1,76,77],[602,1,1,77,78],[617,1,1,78,79]]],[19,25,25,79,104,[[629,2,2,79,81],[630,1,1,81,82],[635,1,1,82,83],[638,3,3,83,86],[639,2,2,86,88],[641,3,3,88,91],[642,2,2,91,93],[643,3,3,93,96],[647,1,1,96,97],[648,4,4,97,101],[655,1,1,101,102],[656,2,2,102,104]]],[20,1,1,104,105,[[665,1,1,104,105]]],[22,1,1,105,106,[[704,1,1,105,106]]],[23,5,5,106,111,[[770,1,1,106,107],[775,1,1,107,108],[778,1,1,108,109],[784,2,2,109,111]]],[25,2,2,111,113,[[802,2,2,111,113]]],[26,1,1,113,114,[[860,1,1,113,114]]],[27,1,1,114,115,[[875,1,1,114,115]]],[32,4,4,115,119,[[894,1,1,115,116],[895,1,1,116,117],[899,2,2,117,119]]]],[1946,4426,5104,5248,5265,5268,5290,5456,5762,6062,6077,6986,7127,7483,7973,8040,8517,9141,9146,9226,9254,9260,9523,9796,9808,9823,9852,9899,9928,9959,9965,10027,10147,11477,11619,11679,11706,11736,11757,11765,11793,11825,11874,11935,12222,12524,12870,12877,12894,12937,13035,13268,13426,13677,14005,14061,14066,14176,14259,14366,14367,14370,14448,14464,14487,14662,14860,15426,15446,15489,15706,15741,15794,15801,15805,15807,16035,16114,16276,16440,16454,16487,16611,16691,16694,16699,16725,16734,16781,16783,16784,16815,16826,16853,16857,16865,16965,16986,16992,17002,17013,17206,17234,17251,17458,18137,19586,19700,19816,19945,19946,20471,20487,22053,22291,22602,22617,22666,22668]]],["+",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8517]]],["Jasher",[2,2,[[5,1,1,0,1,[[196,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]]],[6077,8040]]],["Upright",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13268]]],["convenient",[2,2,[[23,2,2,0,2,[[784,2,2,0,2]]]],[19945,19946]]],["equity",[1,1,[[32,1,1,0,1,[[895,1,1,0,1]]]],[22617]]],["just",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17234]]],["meet",[1,1,[[23,1,1,0,1,[[770,1,1,0,1]]]],[19586]]],["meetest",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9796]]],["ones",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22053]]],["right",[53,53,[[1,1,1,0,1,[[64,1,1,0,1]]],[4,7,7,1,8,[[158,1,1,1,2],[164,3,3,2,5],[165,1,1,5,6],[173,1,1,6,7],[184,1,1,7,8]]],[5,1,1,8,9,[[195,1,1,8,9]]],[6,2,2,9,11,[[227,1,1,9,10],[231,1,1,10,11]]],[8,1,1,11,12,[[247,1,1,11,12]]],[10,6,6,12,18,[[301,2,2,12,14],[304,1,1,14,15],[305,2,2,15,17],[312,1,1,17,18]]],[11,9,9,18,27,[[322,2,2,18,20],[324,1,1,20,21],[326,1,1,21,22],[327,2,2,22,24],[328,1,1,24,25],[330,1,1,25,26],[334,1,1,26,27]]],[13,10,10,27,37,[[380,1,1,27,28],[386,1,1,28,29],[390,1,1,29,30],[391,1,1,30,31],[392,1,1,31,32],[393,1,1,32,33],[394,1,1,33,34],[395,1,1,34,35],[397,1,1,35,36],[400,1,1,36,37]]],[14,1,1,37,38,[[410,1,1,37,38]]],[15,1,1,38,39,[[421,1,1,38,39]]],[17,1,1,39,40,[[468,1,1,39,40]]],[18,3,3,40,43,[[496,1,1,40,41],[510,1,1,41,42],[584,1,1,42,43]]],[19,8,8,43,51,[[635,1,1,43,44],[639,1,1,44,45],[641,1,1,45,46],[643,2,2,46,48],[647,1,1,48,49],[648,2,2,49,51]]],[23,1,1,51,52,[[778,1,1,51,52]]],[27,1,1,52,53,[[875,1,1,52,53]]]],[1946,5104,5248,5265,5268,5290,5456,5762,6062,6986,7127,7483,9141,9146,9226,9254,9260,9523,9808,9823,9852,9899,9928,9959,9965,10027,10147,11477,11619,11679,11706,11736,11757,11765,11793,11874,11935,12222,12524,13677,14176,14370,15706,16611,16734,16784,16853,16865,16965,16986,16992,19816,22291]]],["righteous",[9,9,[[3,1,1,0,1,[[139,1,1,0,1]]],[17,2,2,1,3,[[439,1,1,1,2],[458,1,1,2,3]]],[18,1,1,3,4,[[584,1,1,3,4]]],[19,5,5,4,9,[[629,1,1,4,5],[630,1,1,5,6],[641,1,1,6,7],[642,1,1,7,8],[655,1,1,8,9]]]],[4426,12937,13426,15741,16440,16487,16781,16826,17206]]],["straight",[3,3,[[23,1,1,0,1,[[775,1,1,0,1]]],[25,2,2,1,3,[[802,2,2,1,3]]]],[19700,20471,20487]]],["upright",[41,41,[[8,1,1,0,1,[[264,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]],[17,4,4,2,6,[[436,2,2,2,4],[437,1,1,4,5],[443,1,1,5,6]]],[18,20,20,6,26,[[484,1,1,6,7],[488,2,2,7,9],[502,1,1,9,10],[509,1,1,10,11],[510,1,1,11,12],[513,1,1,12,13],[514,2,2,13,15],[526,1,1,15,16],[541,1,1,16,17],[569,1,1,17,18],[571,1,1,18,19],[574,1,1,19,20],[588,1,1,20,21],[589,2,2,21,23],[596,1,1,23,24],[602,1,1,24,25],[617,1,1,25,26]]],[19,11,11,26,37,[[629,1,1,26,27],[638,3,3,27,30],[639,1,1,30,31],[641,1,1,31,32],[642,1,1,32,33],[643,1,1,33,34],[648,2,2,34,36],[656,1,1,36,37]]],[20,1,1,37,38,[[665,1,1,37,38]]],[22,1,1,38,39,[[704,1,1,38,39]]],[32,2,2,39,41,[[899,2,2,39,41]]]],[7973,11825,12870,12877,12894,13035,14005,14061,14066,14259,14366,14367,14448,14464,14487,14662,14860,15426,15446,15489,15794,15805,15807,16035,16114,16276,16454,16691,16694,16699,16725,16783,16815,16857,17002,17013,17251,17458,18137,22666,22668]]],["uprightly",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22602]]],["uprightness",[1,1,[[18,1,1,0,1,[[588,1,1,0,1]]]],[15801]]]]},{"k":"H3478","v":[["*",[2505,2230,[[0,42,39,0,39,[[31,2,2,0,2],[33,1,1,2,3],[34,5,3,3,6],[35,1,1,6,7],[36,2,2,7,9],[41,1,1,9,10],[42,3,3,10,13],[44,2,2,13,15],[45,6,6,15,21],[46,3,3,21,24],[47,9,8,24,32],[48,5,5,32,37],[49,2,2,37,39]]],[1,170,160,39,199,[[50,5,5,39,44],[51,2,2,44,46],[52,8,8,46,54],[53,3,3,54,57],[54,6,5,57,62],[55,10,9,62,71],[56,3,3,71,74],[58,6,5,74,79],[59,2,2,79,81],[60,3,2,81,83],[61,15,15,83,98],[62,3,3,98,101],[63,17,14,101,115],[64,3,3,115,118],[65,11,11,118,129],[66,6,6,129,135],[67,6,5,135,140],[68,4,4,140,144],[69,1,1,144,145],[73,7,7,145,152],[74,2,2,152,154],[76,2,2,154,156],[77,8,8,156,164],[78,4,3,164,167],[79,4,3,167,170],[80,3,3,170,173],[81,5,5,173,178],[82,2,2,178,180],[83,6,6,180,186],[84,5,5,186,191],[85,1,1,191,192],[88,5,5,192,197],[89,2,2,197,199]]],[2,65,59,199,258,[[90,1,1,199,200],[93,2,2,200,202],[96,6,5,202,207],[98,2,2,207,209],[99,3,3,209,212],[100,1,1,212,213],[101,1,1,213,214],[104,2,2,214,216],[105,6,6,216,222],[106,8,8,222,230],[107,1,1,230,231],[108,1,1,231,232],[109,3,1,232,233],[110,1,1,233,234],[111,7,5,234,239],[112,7,7,239,246],[113,6,5,246,251],[114,4,4,251,255],[115,1,1,255,256],[116,2,2,256,258]]],[3,237,209,258,467,[[117,11,10,258,268],[118,4,4,268,272],[119,13,11,272,283],[120,1,1,283,284],[121,6,5,284,289],[122,3,3,289,292],[123,2,2,292,294],[124,16,10,294,304],[125,10,9,304,313],[126,5,5,313,318],[127,3,3,318,321],[129,5,5,321,326],[130,6,6,326,332],[131,7,7,332,339],[132,8,7,339,346],[133,5,5,346,351],[134,15,14,351,365],[135,4,4,365,369],[136,10,9,369,378],[137,15,11,378,389],[138,3,3,389,392],[139,5,4,392,396],[140,5,5,396,401],[141,14,9,401,410],[142,9,7,410,417],[143,5,5,417,422],[144,1,1,422,423],[145,1,1,423,424],[146,1,1,424,425],[147,10,10,425,435],[148,9,9,435,444],[149,6,6,444,450],[150,3,3,450,453],[151,5,5,453,458],[152,11,9,458,467]]],[4,72,65,467,532,[[153,3,3,467,470],[154,1,1,470,471],[155,1,1,471,472],[156,4,4,472,476],[157,2,1,476,477],[158,2,2,477,479],[161,1,1,479,480],[162,2,2,480,482],[163,1,1,482,483],[165,1,1,483,484],[169,3,3,484,487],[170,2,2,487,489],[171,1,1,489,490],[172,1,1,490,491],[173,3,2,491,493],[174,3,3,493,496],[175,2,1,496,497],[176,1,1,497,498],[177,3,3,498,501],[178,1,1,501,502],[179,4,3,502,505],[181,4,4,505,509],[183,10,8,509,517],[184,6,5,517,522],[185,6,6,522,528],[186,4,4,528,532]]],[5,160,139,532,671,[[187,1,1,532,533],[188,1,1,533,534],[189,5,5,534,539],[190,9,8,539,547],[191,7,6,547,553],[192,4,4,553,557],[193,15,13,557,570],[194,16,13,570,583],[195,8,7,583,590],[196,23,20,590,610],[197,11,11,610,621],[198,4,3,621,624],[199,7,5,624,629],[200,5,4,629,633],[203,1,1,633,634],[204,4,4,634,638],[205,2,2,638,640],[206,2,2,640,642],[207,6,6,642,648],[208,19,15,648,663],[209,2,2,663,665],[210,8,6,665,671]]],[6,184,154,671,825,[[211,2,2,671,673],[212,8,8,673,681],[213,19,15,681,696],[214,8,7,696,703],[215,8,7,703,710],[216,14,11,710,721],[217,5,5,721,726],[218,6,6,726,732],[219,2,2,732,734],[220,13,12,734,746],[221,22,16,746,762],[222,7,6,762,768],[223,2,2,768,770],[224,1,1,770,771],[225,1,1,771,772],[226,1,1,772,773],[227,1,1,773,774],[228,4,3,774,777],[229,4,4,777,781],[230,42,34,781,815],[231,14,10,815,825]]],[7,5,4,825,829,[[233,1,1,825,826],[235,4,3,826,829]]],[8,151,130,829,959,[[236,1,1,829,830],[237,7,6,830,836],[238,2,2,836,838],[239,12,9,838,847],[240,6,4,847,851],[241,2,2,851,853],[242,21,15,853,868],[243,3,3,868,871],[244,5,5,871,876],[245,4,2,876,878],[246,6,6,878,884],[247,1,1,884,885],[248,9,8,885,893],[249,13,13,893,906],[250,10,9,906,915],[251,1,1,915,916],[252,16,14,916,930],[253,3,3,930,933],[254,1,1,933,934],[255,1,1,934,935],[258,3,3,935,938],[259,3,3,938,941],[260,4,4,941,945],[261,3,3,945,948],[262,2,2,948,950],[263,5,4,950,954],[264,2,2,954,956],[265,1,1,956,957],[266,4,2,957,959]]],[9,117,101,959,1060,[[267,4,4,959,963],[268,4,4,963,967],[269,8,8,967,975],[270,1,1,975,976],[271,10,6,976,982],[272,6,6,982,988],[273,11,9,988,997],[274,1,1,997,998],[276,6,5,998,1003],[277,2,2,1003,1005],[278,4,3,1005,1008],[279,2,2,1008,1010],[280,1,1,1010,1011],[281,5,4,1011,1015],[282,5,5,1015,1020],[283,8,8,1020,1028],[284,4,4,1028,1032],[285,10,8,1032,1040],[286,6,5,1040,1045],[287,8,6,1045,1051],[289,4,3,1051,1054],[290,7,6,1054,1060]]],[10,203,171,1060,1231,[[291,6,6,1060,1066],[292,5,5,1066,1071],[293,1,1,1071,1072],[294,4,4,1072,1076],[295,1,1,1076,1077],[296,4,2,1077,1079],[298,35,29,1079,1108],[299,7,5,1108,1113],[300,2,1,1113,1114],[301,10,9,1114,1123],[302,14,11,1123,1134],[304,14,10,1134,1144],[305,15,13,1144,1157],[306,21,15,1157,1172],[307,2,2,1172,1174],[308,7,6,1174,1180],[309,4,4,1180,1184],[310,20,18,1184,1202],[311,5,5,1202,1207],[312,26,24,1207,1231]]],[11,164,146,1231,1377,[[313,5,5,1231,1236],[314,1,1,1236,1237],[315,14,12,1237,1249],[317,9,8,1249,1257],[318,9,8,1257,1265],[319,3,2,1265,1267],[320,5,5,1267,1272],[321,7,6,1272,1278],[322,10,8,1278,1286],[325,18,16,1286,1302],[326,19,16,1302,1318],[327,18,18,1318,1336],[328,4,3,1336,1339],[329,18,15,1339,1354],[330,6,6,1354,1360],[331,3,3,1360,1363],[333,6,6,1363,1369],[334,2,2,1369,1371],[335,6,5,1371,1376],[336,1,1,1376,1377]]],[12,114,97,1377,1474,[[338,2,2,1377,1379],[339,2,2,1379,1381],[341,1,1,1381,1382],[342,5,4,1382,1386],[343,3,3,1386,1389],[344,1,1,1389,1390],[346,3,2,1390,1392],[347,3,2,1392,1394],[348,9,5,1394,1399],[349,4,3,1399,1402],[350,5,4,1402,1406],[351,3,2,1406,1408],[352,5,5,1408,1413],[353,6,6,1413,1419],[354,10,8,1419,1427],[355,1,1,1427,1428],[356,5,5,1428,1433],[357,1,1,1433,1434],[358,10,8,1434,1442],[359,8,8,1442,1450],[360,3,3,1450,1453],[361,1,1,1453,1454],[363,2,2,1454,1456],[364,5,5,1456,1461],[365,6,4,1461,1465],[366,10,9,1465,1474]]],[13,187,162,1474,1636,[[367,3,2,1474,1476],[368,3,3,1476,1479],[371,6,5,1479,1484],[372,23,19,1484,1503],[373,5,5,1503,1508],[374,5,5,1508,1513],[375,2,2,1513,1515],[376,8,6,1515,1521],[377,5,4,1521,1525],[378,3,3,1525,1528],[379,8,7,1528,1535],[381,5,5,1535,1540],[382,4,4,1540,1544],[383,2,2,1544,1546],[384,18,17,1546,1563],[385,1,1,1563,1564],[386,6,6,1564,1570],[387,4,4,1570,1574],[388,1,1,1574,1575],[389,1,1,1575,1576],[390,4,4,1576,1580],[391,11,10,1580,1590],[393,1,1,1590,1591],[394,9,9,1591,1600],[395,5,4,1600,1604],[396,11,6,1604,1610],[397,5,4,1610,1614],[398,2,2,1614,1616],[399,7,6,1616,1622],[400,7,6,1622,1628],[401,10,6,1628,1634],[402,2,2,1634,1636]]],[14,32,29,1636,1665,[[403,1,1,1636,1637],[404,3,3,1637,1640],[405,4,4,1640,1644],[406,3,2,1644,1646],[408,3,2,1646,1648],[409,5,5,1648,1653],[410,5,4,1653,1657],[411,3,3,1657,1660],[412,5,5,1660,1665]]],[15,22,19,1665,1684,[[413,2,1,1665,1666],[414,1,1,1666,1667],[419,4,3,1667,1670],[420,3,3,1670,1673],[421,2,2,1673,1675],[422,2,2,1675,1677],[423,2,2,1677,1679],[424,1,1,1679,1680],[425,5,4,1680,1684]]],[18,62,60,1684,1744,[[491,2,1,1684,1685],[499,2,2,1685,1687],[502,1,1,1687,1688],[518,1,1,1688,1689],[527,1,1,1689,1690],[530,2,1,1690,1691],[536,1,1,1691,1692],[545,4,4,1692,1696],[546,1,1,1696,1697],[548,1,1,1697,1698],[549,1,1,1698,1699],[550,1,1,1699,1700],[553,1,1,1700,1701],[555,7,7,1701,1708],[557,1,1,1708,1709],[558,4,4,1709,1713],[560,1,1,1713,1714],[566,1,1,1714,1715],[575,1,1,1715,1716],[580,1,1,1716,1717],[582,2,2,1717,1719],[583,1,1,1719,1720],[591,2,2,1720,1722],[592,2,2,1722,1724],[595,1,1,1724,1725],[598,1,1,1725,1726],[599,1,1,1726,1727],[601,1,1,1727,1728],[602,1,1,1728,1729],[605,1,1,1729,1730],[606,1,1,1730,1731],[607,2,2,1731,1733],[608,1,1,1733,1734],[612,3,3,1734,1737],[613,3,3,1737,1740],[624,2,2,1740,1742],[625,1,1,1742,1743],[626,1,1,1743,1744]]],[19,1,1,1744,1745,[[628,1,1,1744,1745]]],[20,1,1,1745,1746,[[659,1,1,1745,1746]]],[21,1,1,1746,1747,[[673,1,1,1746,1747]]],[22,92,87,1747,1834,[[679,3,3,1747,1750],[682,1,1,1750,1751],[683,3,3,1751,1754],[685,1,1,1754,1755],[686,2,2,1755,1757],[687,3,3,1757,1760],[688,4,3,1760,1763],[689,2,2,1763,1765],[690,1,1,1765,1766],[692,2,2,1766,1768],[695,4,4,1768,1772],[697,2,2,1772,1774],[699,2,2,1774,1776],[702,1,1,1776,1777],[705,2,2,1777,1779],[707,2,2,1779,1781],[708,4,4,1781,1785],[709,2,2,1785,1787],[715,3,3,1787,1790],[718,1,1,1790,1791],[719,6,5,1791,1796],[720,1,1,1796,1797],[721,6,6,1797,1803],[722,6,5,1803,1808],[723,6,6,1808,1814],[724,2,2,1814,1816],[725,1,1,1816,1817],[726,5,4,1817,1821],[727,5,4,1821,1825],[730,1,1,1825,1826],[732,1,1,1826,1827],[733,1,1,1827,1828],[734,1,1,1828,1829],[738,2,2,1829,1831],[741,2,2,1831,1833],[744,1,1,1833,1834]]],[23,125,122,1834,1956,[[746,5,5,1834,1839],[747,8,8,1839,1847],[748,1,1,1847,1848],[749,2,2,1848,1850],[750,1,1,1850,1851],[751,3,3,1851,1854],[753,2,2,1854,1856],[754,2,2,1856,1858],[755,3,3,1858,1861],[756,1,1,1861,1862],[757,2,2,1862,1864],[758,1,1,1864,1865],[760,3,3,1865,1868],[761,1,1,1868,1869],[762,3,2,1869,1871],[763,2,2,1871,1873],[765,1,1,1873,1874],[767,5,5,1874,1879],[768,1,1,1879,1880],[769,2,2,1880,1882],[771,2,2,1882,1884],[772,2,2,1884,1886],[773,5,5,1886,1891],[774,4,4,1891,1895],[775,13,13,1895,1908],[776,8,7,1908,1915],[777,4,4,1915,1919],[778,2,2,1919,1921],[779,4,4,1921,1925],[780,1,1,1925,1926],[781,1,1,1926,1927],[782,1,1,1927,1928],[783,1,1,1928,1929],[785,1,1,1929,1930],[786,3,3,1930,1933],[787,1,1,1933,1934],[788,4,4,1934,1938],[789,1,1,1938,1939],[790,2,2,1939,1941],[792,3,3,1941,1944],[793,2,2,1944,1946],[794,7,7,1946,1953],[795,4,3,1953,1956]]],[24,3,3,1956,1959,[[798,3,3,1956,1959]]],[25,186,169,1959,2128,[[803,1,1,1959,1960],[804,6,5,1960,1965],[805,4,4,1965,1969],[806,1,1,1969,1970],[807,4,4,1970,1974],[808,1,1,1974,1975],[809,5,5,1975,1980],[810,3,3,1980,1983],[811,2,2,1983,1985],[812,7,7,1985,1992],[813,8,8,1992,2000],[814,6,5,2000,2005],[815,8,7,2005,2012],[818,2,2,2012,2014],[819,9,8,2014,2022],[820,2,2,2022,2024],[821,13,12,2024,2036],[822,4,4,2036,2040],[823,2,2,2040,2042],[825,1,1,2042,2043],[826,3,3,2043,2046],[828,1,1,2046,2047],[829,2,2,2047,2049],[830,3,3,2049,2052],[834,6,6,2052,2058],[835,6,4,2058,2062],[836,3,3,2062,2065],[837,14,11,2065,2076],[838,8,7,2076,2083],[839,6,6,2083,2089],[840,12,11,2089,2100],[841,2,2,2100,2102],[844,4,3,2102,2105],[845,10,9,2105,2114],[846,8,6,2114,2120],[848,5,4,2120,2124],[849,4,4,2124,2128]]],[26,4,4,2128,2132,[[850,1,1,2128,2129],[858,3,3,2129,2132]]],[27,44,41,2132,2173,[[862,6,6,2132,2138],[864,3,3,2138,2141],[865,3,3,2141,2144],[866,6,4,2144,2148],[867,2,1,2148,2149],[868,2,2,2149,2151],[869,5,5,2151,2156],[870,3,3,2156,2159],[871,5,5,2159,2164],[872,3,3,2164,2167],[873,2,2,2167,2169],[874,2,2,2169,2171],[875,2,2,2171,2173]]],[28,3,3,2173,2176,[[877,1,1,2173,2174],[878,2,2,2174,2176]]],[29,30,26,2176,2202,[[879,2,1,2176,2177],[880,2,2,2177,2179],[881,3,3,2179,2182],[882,3,2,2182,2184],[883,5,5,2184,2189],[884,2,2,2189,2191],[885,8,7,2191,2198],[886,1,1,2198,2199],[887,4,3,2199,2202]]],[30,1,1,2202,2203,[[888,1,1,2202,2203]]],[32,12,12,2203,2215,[[893,4,4,2203,2207],[894,1,1,2207,2208],[895,3,3,2208,2211],[897,3,3,2211,2214],[898,1,1,2214,2215]]],[33,1,1,2215,2216,[[901,1,1,2215,2216]]],[35,4,4,2216,2220,[[907,1,1,2216,2217],[908,3,3,2217,2220]]],[37,5,5,2220,2225,[[911,1,1,2220,2221],[918,1,1,2221,2222],[919,1,1,2222,2223],[921,1,1,2223,2224],[922,1,1,2224,2225]]],[38,5,5,2225,2230,[[925,2,2,2225,2227],[926,2,2,2227,2229],[928,1,1,2229,2230]]]],[956,960,987,1021,1032,1033,1071,1086,1096,1257,1296,1298,1301,1379,1386,1387,1388,1391,1394,1415,1416,1447,1449,1451,1453,1459,1461,1462,1464,1465,1471,1472,1475,1480,1489,1497,1501,1508,1531,1533,1539,1541,1544,1545,1577,1579,1588,1589,1590,1592,1593,1594,1595,1597,1623,1630,1632,1633,1634,1646,1647,1651,1660,1661,1664,1666,1667,1668,1669,1681,1682,1687,1689,1690,1746,1748,1749,1768,1777,1797,1800,1813,1816,1819,1822,1831,1835,1837,1843,1844,1847,1851,1853,1856,1858,1863,1866,1867,1869,1885,1886,1891,1892,1894,1897,1899,1904,1905,1908,1909,1911,1914,1918,1919,1920,1921,1939,1942,1948,1949,1950,1953,1956,1957,1959,1962,1964,1978,1982,1984,1988,1989,1990,1991,1994,2000,2007,2008,2011,2024,2027,2028,2029,2032,2073,2178,2181,2182,2186,2187,2188,2194,2197,2217,2292,2293,2294,2302,2304,2305,2314,2322,2323,2331,2364,2379,2381,2394,2398,2413,2433,2436,2437,2442,2446,2451,2458,2465,2478,2479,2519,2523,2526,2528,2530,2531,2532,2535,2551,2560,2561,2569,2670,2671,2678,2696,2706,2743,2745,2747,2797,2808,2902,2908,2913,2915,2917,2954,2956,2983,2988,2991,2999,3046,3170,3199,3206,3217,3218,3220,3222,3235,3237,3238,3240,3243,3245,3247,3248,3249,3253,3283,3320,3369,3371,3372,3384,3387,3401,3404,3412,3426,3436,3444,3445,3446,3448,3454,3456,3461,3469,3471,3502,3515,3524,3570,3572,3604,3606,3607,3620,3624,3648,3649,3653,3656,3657,3658,3660,3690,3691,3692,3700,3701,3704,3705,3730,3732,3733,3734,3737,3738,3742,3789,3794,3796,3798,3801,3804,3825,3846,3850,3852,3934,3945,3948,3949,3950,3953,3955,3956,3957,3958,3959,3967,3969,3970,3972,3975,3982,3983,3984,3987,3992,4000,4016,4017,4024,4028,4040,4054,4077,4078,4099,4101,4107,4110,4113,4115,4118,4135,4147,4155,4171,4178,4179,4182,4185,4191,4196,4203,4219,4228,4232,4234,4235,4246,4249,4250,4253,4256,4262,4263,4265,4268,4271,4276,4277,4278,4279,4280,4281,4283,4285,4289,4291,4298,4299,4302,4312,4323,4324,4325,4330,4332,4333,4335,4340,4341,4342,4343,4346,4350,4357,4361,4363,4364,4365,4371,4376,4377,4378,4423,4426,4437,4439,4447,4448,4451,4463,4464,4472,4474,4475,4476,4477,4479,4482,4484,4485,4491,4493,4494,4540,4551,4552,4553,4562,4565,4566,4574,4575,4579,4648,4649,4666,4668,4669,4673,4676,4680,4694,4706,4711,4718,4722,4725,4727,4731,4732,4735,4736,4740,4746,4761,4763,4765,4798,4800,4811,4818,4829,4845,4847,4853,4855,4860,4879,4880,4881,4882,4883,4884,4886,4887,4888,4892,4893,4895,4930,4950,4993,5005,5048,5049,5050,5054,5089,5090,5158,5192,5198,5214,5283,5368,5376,5384,5385,5390,5419,5430,5455,5468,5489,5491,5492,5517,5532,5553,5554,5557,5581,5586,5594,5599,5680,5681,5689,5700,5729,5735,5737,5739,5747,5750,5751,5758,5766,5803,5807,5809,5810,5811,5815,5820,5831,5838,5839,5847,5848,5849,5851,5853,5871,5894,5900,5902,5905,5910,5914,5915,5917,5918,5922,5924,5931,5932,5935,5936,5937,5940,5944,5946,5950,5967,5972,5974,5977,5982,5984,5987,5988,5989,5991,5992,5995,5996,5999,6000,6001,6012,6016,6017,6019,6023,6024,6026,6029,6032,6033,6034,6035,6037,6039,6043,6044,6054,6055,6056,6063,6065,6068,6074,6075,6076,6078,6079,6084,6085,6088,6093,6094,6095,6096,6098,6100,6102,6104,6106,6107,6112,6113,6115,6120,6121,6123,6126,6127,6128,6129,6130,6131,6136,6137,6160,6167,6168,6176,6187,6188,6192,6197,6201,6288,6294,6295,6296,6303,6370,6372,6374,6381,6382,6384,6389,6422,6424,6426,6435,6437,6438,6439,6440,6442,6444,6446,6447,6448,6450,6456,6457,6458,6459,6461,6462,6477,6478,6485,6499,6507,6508,6510,6537,6549,6551,6552,6555,6556,6559,6565,6567,6569,6570,6572,6573,6575,6576,6577,6578,6580,6581,6582,6583,6595,6598,6599,6600,6602,6603,6604,6605,6622,6623,6625,6626,6628,6630,6631,6632,6634,6655,6656,6657,6658,6660,6661,6662,6668,6669,6690,6691,6696,6702,6708,6709,6717,6741,6746,6747,6752,6753,6754,6776,6809,6812,6813,6814,6817,6818,6819,6820,6821,6822,6826,6827,6828,6833,6834,6842,6844,6845,6846,6848,6849,6850,6852,6854,6855,6856,6862,6868,6869,6876,6877,6878,6880,6882,6883,6885,6889,6913,6949,6980,6986,6994,7012,7022,7025,7036,7053,7054,7055,7056,7057,7060,7061,7064,7065,7066,7067,7068,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7083,7084,7085,7086,7087,7088,7089,7090,7092,7093,7095,7096,7102,7103,7105,7107,7108,7110,7117,7119,7120,7126,7127,7161,7197,7201,7204,7229,7254,7262,7268,7269,7270,7272,7287,7296,7298,7299,7300,7302,7307,7314,7315,7318,7319,7326,7327,7329,7330,7334,7336,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7365,7366,7367,7368,7369,7370,7373,7391,7393,7400,7407,7411,7412,7436,7438,7447,7448,7452,7453,7458,7460,7461,7486,7487,7489,7490,7491,7498,7504,7505,7520,7526,7529,7530,7531,7532,7545,7547,7548,7549,7553,7555,7556,7561,7562,7566,7577,7586,7588,7589,7590,7595,7596,7620,7621,7626,7628,7629,7637,7639,7642,7643,7644,7663,7664,7670,7671,7682,7692,7694,7711,7742,7820,7821,7827,7841,7853,7859,7862,7891,7893,7895,7907,7920,7925,7931,7942,7943,7945,7946,7961,7968,7970,8003,8010,8016,8025,8034,8041,8046,8058,8059,8066,8077,8091,8093,8098,8099,8100,8102,8118,8119,8121,8133,8134,8135,8137,8144,8149,8158,8162,8172,8176,8177,8178,8186,8187,8188,8190,8191,8203,8204,8206,8207,8224,8249,8255,8257,8258,8259,8260,8270,8293,8294,8298,8329,8330,8381,8391,8395,8399,8402,8429,8441,8444,8447,8448,8453,8459,8460,8462,8463,8464,8473,8475,8484,8485,8494,8495,8519,8520,8522,8533,8551,8552,8553,8554,8555,8556,8568,8573,8577,8582,8584,8585,8595,8597,8601,8654,8656,8662,8693,8694,8696,8701,8707,8717,8720,8737,8747,8751,8752,8765,8774,8775,8781,8785,8802,8844,8845,8851,8864,8869,8891,8897,8909,8986,8987,8988,8990,8994,8999,9000,9001,9002,9005,9007,9008,9010,9011,9015,9018,9019,9021,9023,9026,9028,9037,9040,9041,9044,9047,9048,9050,9051,9056,9058,9071,9072,9073,9088,9110,9117,9124,9133,9139,9140,9145,9146,9150,9152,9154,9167,9168,9169,9170,9171,9172,9175,9179,9184,9225,9228,9231,9232,9233,9234,9236,9237,9239,9242,9258,9265,9266,9268,9269,9274,9275,9276,9279,9280,9281,9282,9283,9285,9288,9291,9296,9297,9299,9300,9302,9303,9304,9306,9309,9310,9312,9316,9318,9331,9358,9359,9360,9361,9372,9377,9397,9401,9403,9405,9410,9412,9415,9419,9421,9423,9428,9429,9430,9434,9435,9436,9437,9439,9440,9448,9449,9451,9458,9469,9472,9473,9477,9481,9482,9483,9484,9485,9486,9488,9489,9490,9497,9498,9506,9509,9510,9511,9512,9513,9514,9519,9521,9524,9531,9532,9533,9534,9536,9539,9549,9551,9563,9577,9579,9580,9581,9582,9585,9586,9587,9588,9589,9600,9603,9649,9651,9652,9653,9654,9655,9659,9662,9682,9683,9684,9685,9686,9695,9697,9700,9713,9720,9739,9743,9745,9752,9753,9759,9762,9764,9768,9770,9777,9814,9821,9822,9823,9824,9825,9827,9829,9872,9873,9874,9875,9876,9877,9879,9881,9882,9883,9884,9885,9887,9889,9893,9896,9897,9904,9905,9907,9908,9909,9911,9912,9913,9919,9920,9921,9922,9923,9924,9925,9926,9933,9934,9936,9937,9940,9942,9943,9945,9946,9948,9949,9951,9952,9953,9954,9956,9957,9966,9968,9970,9984,9985,9989,9990,9991,9992,9996,10001,10002,10003,10004,10005,10006,10007,10017,10025,10028,10029,10033,10034,10035,10076,10081,10083,10121,10122,10126,10127,10128,10131,10160,10163,10178,10180,10184,10187,10192,10215,10286,10295,10307,10313,10395,10429,10431,10445,10454,10492,10503,10518,10564,10616,10617,10660,10666,10674,10675,10676,10677,10683,10752,10758,10760,10762,10765,10766,10768,10776,10782,10794,10803,10805,10816,10819,10823,10824,10833,10837,10856,10860,10868,10869,10870,10872,10873,10884,10885,10887,10904,10917,10923,10924,10925,10926,10933,10935,10936,10937,10938,10939,10941,10946,10948,10965,10966,10970,10973,10974,10976,10977,10981,10984,10985,11008,11034,11106,11107,11110,11125,11131,11132,11133,11144,11147,11148,11151,11170,11174,11182,11185,11187,11189,11190,11191,11194,11196,11207,11215,11223,11228,11270,11271,11272,11274,11278,11285,11286,11287,11288,11289,11292,11293,11294,11295,11296,11298,11299,11303,11306,11307,11309,11311,11314,11315,11327,11330,11332,11334,11342,11348,11353,11354,11355,11357,11372,11394,11396,11398,11411,11412,11413,11414,11415,11417,11427,11430,11438,11443,11450,11457,11458,11465,11468,11469,11470,11471,11493,11494,11499,11503,11507,11510,11512,11513,11520,11524,11527,11545,11546,11547,11549,11550,11551,11558,11559,11561,11567,11570,11571,11572,11573,11574,11575,11576,11584,11594,11597,11606,11616,11621,11622,11626,11628,11630,11637,11649,11658,11682,11683,11686,11693,11710,11711,11713,11721,11722,11725,11726,11727,11729,11730,11762,11766,11767,11769,11772,11777,11783,11787,11790,11791,11798,11801,11815,11818,11828,11832,11833,11848,11852,11853,11855,11859,11860,11862,11892,11907,11910,11915,11916,11917,11924,11926,11940,11942,11954,11956,11959,11966,11969,11970,11983,11984,11991,11993,12001,12006,12019,12029,12086,12097,12098,12099,12107,12108,12111,12113,12172,12173,12179,12180,12183,12184,12201,12219,12226,12230,12236,12238,12241,12252,12253,12254,12257,12262,12277,12302,12317,12427,12481,12493,12494,12507,12510,12512,12513,12582,12588,12591,12608,12671,12673,12674,12689,12697,14087,14207,14227,14273,14555,14675,14725,14795,14908,14926,14934,14935,14941,14998,15018,15021,15082,15118,15134,15144,15154,15168,15172,15184,15199,15221,15225,15228,15230,15245,15344,15493,15556,15616,15629,15699,15823,15824,15839,15842,15871,16085,16093,16103,16115,16132,16133,16147,16148,16151,16179,16187,16194,16207,16210,16218,16353,16370,16385,16387,16401,17327,17578,17657,17658,17678,17735,17746,17758,17763,17783,17821,17825,17837,17841,17843,17867,17870,17872,17896,17900,17906,17929,17930,17986,17989,17990,17992,18028,18029,18045,18052,18110,18157,18163,18212,18216,18228,18229,18232,18246,18251,18256,18368,18373,18375,18447,18459,18465,18467,18468,18471,18504,18506,18508,18519,18520,18527,18533,18534,18538,18539,18554,18556,18564,18565,18572,18576,18578,18586,18589,18599,18603,18615,18616,18626,18631,18639,18641,18642,18643,18708,18728,18745,18761,18830,18835,18873,18882,18942,18968,18969,18979,18991,18996,19008,19010,19013,19014,19020,19022,19023,19025,19028,19069,19073,19098,19122,19131,19140,19190,19201,19202,19217,19229,19236,19243,19263,19277,19278,19301,19345,19350,19351,19370,19390,19397,19410,19422,19444,19486,19490,19491,19492,19497,19529,19549,19561,19600,19617,19620,19632,19639,19643,19656,19658,19660,19669,19670,19671,19677,19692,19693,19695,19698,19700,19701,19712,19714,19718,19722,19724,19727,19728,19745,19746,19751,19752,19761,19763,19767,19779,19782,19789,19792,19803,19814,19836,19840,19841,19842,19844,19881,19912,19939,19966,19984,19990,19993,20007,20012,20017,20021,20035,20042,20070,20072,20081,20093,20107,20128,20129,20170,20183,20184,20185,20186,20195,20199,20217,20245,20261,20333,20335,20337,20495,20503,20506,20507,20509,20519,20532,20533,20534,20542,20550,20565,20566,20568,20574,20579,20608,20610,20614,20615,20616,20625,20630,20631,20652,20653,20660,20665,20666,20668,20670,20672,20677,20686,20689,20690,20699,20702,20703,20704,20707,20710,20712,20713,20717,20724,20732,20735,20736,20737,20738,20740,20742,20827,20848,20851,20852,20855,20864,20874,20878,20879,20880,20882,20890,20896,20898,20900,20908,20922,20925,20926,20933,20934,20935,20937,20939,20946,20947,20956,20969,20982,20994,21077,21086,21089,21097,21138,21181,21182,21189,21199,21204,21287,21290,21291,21300,21304,21308,21315,21326,21327,21343,21349,21356,21359,21360,21363,21365,21367,21369,21371,21376,21380,21381,21391,21396,21408,21409,21413,21416,21418,21419,21425,21433,21439,21441,21442,21443,21444,21450,21452,21455,21457,21459,21460,21465,21470,21471,21473,21477,21479,21481,21574,21579,21582,21601,21605,21608,21609,21611,21614,21621,21627,21628,21636,21638,21639,21645,21646,21647,21692,21697,21700,21701,21713,21721,21731,21733,21740,21995,21999,22008,22095,22098,22099,22100,22104,22105,22129,22132,22133,22134,22148,22149,22153,22155,22157,22161,22177,22179,22188,22196,22197,22200,22202,22208,22209,22215,22218,22226,22231,22233,22234,22240,22241,22248,22252,22264,22265,22267,22275,22283,22287,22338,22345,22359,22365,22385,22390,22396,22407,22409,22415,22422,22424,22425,22426,22427,22448,22451,22464,22472,22473,22474,22475,22479,22480,22481,22483,22502,22504,22509,22530,22584,22592,22593,22594,22607,22609,22616,22617,22634,22635,22636,22650,22701,22814,22833,22834,22835,22897,22989,23000,23042,23046,23090,23094,23114,23119,23142]]],["+",[63,62,[[1,4,4,0,4,[[61,1,1,0,1],[64,1,1,1,2],[67,1,1,2,3],[83,1,1,3,4]]],[2,3,3,4,7,[[99,1,1,4,5],[111,1,1,5,6],[112,1,1,6,7]]],[3,7,7,7,14,[[134,1,1,7,8],[135,1,1,8,9],[137,1,1,9,10],[140,1,1,10,11],[141,2,2,11,13],[148,1,1,13,14]]],[4,6,6,14,20,[[157,1,1,14,15],[169,1,1,15,16],[171,1,1,16,17],[174,1,1,17,18],[177,1,1,18,19],[183,1,1,19,20]]],[5,2,2,20,22,[[199,1,1,20,21],[207,1,1,21,22]]],[6,4,4,22,26,[[230,1,1,22,23],[231,3,3,23,26]]],[8,5,5,26,31,[[239,3,3,26,29],[248,1,1,29,30],[263,1,1,30,31]]],[9,1,1,31,32,[[276,1,1,31,32]]],[10,10,9,32,41,[[304,2,1,32,33],[305,3,3,33,36],[306,3,3,36,39],[311,1,1,39,40],[312,1,1,40,41]]],[11,5,5,41,46,[[315,1,1,41,42],[318,1,1,42,43],[322,2,2,43,45],[329,1,1,45,46]]],[12,1,1,46,47,[[358,1,1,46,47]]],[13,6,6,47,53,[[374,1,1,47,48],[379,1,1,48,49],[381,2,2,49,51],[391,1,1,51,52],[396,1,1,52,53]]],[14,4,4,53,57,[[404,1,1,53,54],[409,1,1,54,55],[412,2,2,55,57]]],[15,2,2,57,59,[[419,1,1,57,58],[425,1,1,58,59]]],[18,1,1,59,60,[[612,1,1,59,60]]],[22,1,1,60,61,[[687,1,1,60,61]]],[27,1,1,61,62,[[869,1,1,61,62]]]],[1831,1921,2000,2530,2988,3384,3446,4283,4302,4346,4463,4475,4485,4740,5054,5376,5419,5492,5553,5758,6168,6424,7067,7105,7108,7119,7307,7318,7319,7487,7946,8257,9234,9275,9279,9283,9296,9302,9309,9473,9532,9587,9686,9821,9825,9989,10948,11353,11470,11499,11507,11710,11852,12086,12201,12253,12277,12481,12674,16194,17843,22200]]],["Israel",[2417,2164,[[0,40,38,0,38,[[31,2,2,0,2],[33,1,1,2,3],[34,5,3,3,6],[35,1,1,6,7],[36,2,2,7,9],[41,1,1,9,10],[42,3,3,10,13],[44,2,2,13,15],[45,6,6,15,21],[46,3,3,21,24],[47,7,7,24,31],[48,5,5,31,36],[49,2,2,36,38]]],[1,164,155,38,193,[[50,5,5,38,43],[51,2,2,43,45],[52,8,8,45,53],[53,3,3,53,56],[54,6,5,56,61],[55,10,9,61,70],[56,3,3,70,73],[58,5,4,73,77],[59,2,2,77,79],[60,3,2,79,81],[61,14,14,81,95],[62,3,3,95,98],[63,17,14,98,112],[64,2,2,112,114],[65,11,11,114,125],[66,6,6,125,131],[67,4,4,131,135],[68,4,4,135,139],[69,1,1,139,140],[73,7,7,140,147],[74,2,2,147,149],[76,2,2,149,151],[77,8,8,151,159],[78,4,3,159,162],[79,4,3,162,165],[80,3,3,165,168],[81,5,5,168,173],[82,2,2,173,175],[83,5,5,175,180],[84,5,5,180,185],[85,1,1,185,186],[88,5,5,186,191],[89,2,2,191,193]]],[2,61,55,193,248,[[90,1,1,193,194],[93,2,2,194,196],[96,6,5,196,201],[98,2,2,201,203],[99,2,2,203,205],[100,1,1,205,206],[101,1,1,206,207],[104,2,2,207,209],[105,6,6,209,215],[106,8,8,215,223],[107,1,1,223,224],[108,1,1,224,225],[109,3,1,225,226],[110,1,1,226,227],[111,6,4,227,231],[112,5,5,231,236],[113,6,5,236,241],[114,4,4,241,245],[115,1,1,245,246],[116,2,2,246,248]]],[3,226,198,248,446,[[117,10,9,248,257],[118,4,4,257,261],[119,13,11,261,272],[120,1,1,272,273],[121,6,5,273,278],[122,3,3,278,281],[123,2,2,281,283],[124,16,10,283,293],[125,10,9,293,302],[126,5,5,302,307],[127,3,3,307,310],[129,5,5,310,315],[130,6,6,315,321],[131,7,7,321,328],[132,8,7,328,335],[133,5,5,335,340],[134,14,13,340,353],[135,3,3,353,356],[136,10,9,356,365],[137,14,10,365,375],[138,3,3,375,378],[139,5,4,378,382],[140,4,4,382,386],[141,12,7,386,393],[142,9,7,393,400],[143,5,5,400,405],[144,1,1,405,406],[145,1,1,406,407],[146,1,1,407,408],[147,7,7,408,415],[148,8,8,415,423],[149,6,6,423,429],[150,3,3,429,432],[151,5,5,432,437],[152,11,9,437,446]]],[4,65,60,446,506,[[153,3,3,446,449],[154,1,1,449,450],[155,1,1,450,451],[156,4,4,451,455],[157,1,1,455,456],[158,2,2,456,458],[161,1,1,458,459],[162,2,2,459,461],[163,1,1,461,462],[165,1,1,462,463],[169,2,2,463,465],[170,2,2,465,467],[172,1,1,467,468],[173,2,2,468,470],[174,2,2,470,472],[175,2,1,472,473],[176,1,1,473,474],[177,2,2,474,476],[178,1,1,476,477],[179,4,3,477,480],[181,4,4,480,484],[183,9,7,484,491],[184,6,5,491,496],[185,6,6,496,502],[186,4,4,502,506]]],[5,154,136,506,642,[[187,1,1,506,507],[188,1,1,507,508],[189,4,4,508,512],[190,9,8,512,520],[191,7,6,520,526],[192,4,4,526,530],[193,15,13,530,543],[194,15,13,543,556],[195,8,7,556,563],[196,23,20,563,583],[197,11,11,583,594],[198,4,3,594,597],[199,4,4,597,601],[200,5,4,601,605],[203,1,1,605,606],[204,4,4,606,610],[205,2,2,610,612],[206,2,2,612,614],[207,5,5,614,619],[208,19,15,619,634],[209,2,2,634,636],[210,8,6,636,642]]],[6,179,152,642,794,[[211,2,2,642,644],[212,8,8,644,652],[213,19,15,652,667],[214,8,7,667,674],[215,8,7,674,681],[216,14,11,681,692],[217,5,5,692,697],[218,6,6,697,703],[219,2,2,703,705],[220,13,12,705,717],[221,22,16,717,733],[222,7,6,733,739],[223,2,2,739,741],[224,1,1,741,742],[225,1,1,742,743],[226,1,1,743,744],[227,1,1,744,745],[228,4,3,745,748],[229,4,4,748,752],[230,40,33,752,785],[231,11,9,785,794]]],[7,5,4,794,798,[[233,1,1,794,795],[235,4,3,795,798]]],[8,141,121,798,919,[[236,1,1,798,799],[237,6,5,799,804],[238,2,2,804,806],[239,9,7,806,813],[240,6,4,813,817],[241,2,2,817,819],[242,21,15,819,834],[243,3,3,834,837],[244,5,5,837,842],[245,4,2,842,844],[246,6,6,844,850],[247,1,1,850,851],[248,7,6,851,857],[249,12,12,857,869],[250,10,9,869,878],[251,1,1,878,879],[252,16,14,879,893],[253,3,3,893,896],[254,1,1,896,897],[255,1,1,897,898],[258,3,3,898,901],[259,3,3,901,904],[260,3,3,904,907],[261,3,3,907,910],[262,2,2,910,912],[263,4,3,912,915],[264,1,1,915,916],[265,1,1,916,917],[266,4,2,917,919]]],[9,114,99,919,1018,[[267,4,4,919,923],[268,4,4,923,927],[269,8,8,927,935],[271,9,6,935,941],[272,6,6,941,947],[273,11,9,947,956],[274,1,1,956,957],[276,5,4,957,961],[277,2,2,961,963],[278,4,3,963,966],[279,2,2,966,968],[280,1,1,968,969],[281,5,4,969,973],[282,5,5,973,978],[283,8,8,978,986],[284,4,4,986,990],[285,10,8,990,998],[286,6,5,998,1003],[287,8,6,1003,1009],[289,4,3,1009,1012],[290,7,6,1012,1018]]],[10,193,165,1018,1183,[[291,6,6,1018,1024],[292,5,5,1024,1029],[293,1,1,1029,1030],[294,4,4,1030,1034],[295,1,1,1034,1035],[296,4,2,1035,1037],[298,35,29,1037,1066],[299,7,5,1066,1071],[300,2,1,1071,1072],[301,10,9,1072,1081],[302,14,11,1081,1092],[304,12,9,1092,1101],[305,12,11,1101,1112],[306,18,14,1112,1126],[307,2,2,1126,1128],[308,7,6,1128,1134],[309,4,4,1134,1138],[310,20,18,1138,1156],[311,4,4,1156,1160],[312,25,23,1160,1183]]],[11,157,143,1183,1326,[[313,5,5,1183,1188],[314,1,1,1188,1189],[315,12,11,1189,1200],[317,9,8,1200,1208],[318,8,8,1208,1216],[319,2,2,1216,1218],[320,5,5,1218,1223],[321,7,6,1223,1229],[322,8,7,1229,1236],[325,18,16,1236,1252],[326,19,16,1252,1268],[327,18,18,1268,1286],[328,4,3,1286,1289],[329,17,14,1289,1303],[330,6,6,1303,1309],[331,3,3,1309,1312],[333,6,6,1312,1318],[334,2,2,1318,1320],[335,6,5,1320,1325],[336,1,1,1325,1326]]],[12,112,96,1326,1422,[[338,2,2,1326,1328],[339,2,2,1328,1330],[341,1,1,1330,1331],[342,5,4,1331,1335],[343,3,3,1335,1338],[344,1,1,1338,1339],[346,2,1,1339,1340],[347,3,2,1340,1342],[348,9,5,1342,1347],[349,4,3,1347,1350],[350,5,4,1350,1354],[351,3,2,1354,1356],[352,5,5,1356,1361],[353,6,6,1361,1367],[354,10,8,1367,1375],[355,1,1,1375,1376],[356,5,5,1376,1381],[357,1,1,1381,1382],[358,9,8,1382,1390],[359,8,8,1390,1398],[360,3,3,1398,1401],[361,1,1,1401,1402],[363,2,2,1402,1404],[364,5,5,1404,1409],[365,6,4,1409,1413],[366,10,9,1413,1422]]],[13,181,157,1422,1579,[[367,3,2,1422,1424],[368,3,3,1424,1427],[371,6,5,1427,1432],[372,23,19,1432,1451],[373,5,5,1451,1456],[374,4,4,1456,1460],[375,2,2,1460,1462],[376,8,6,1462,1468],[377,5,4,1468,1472],[378,3,3,1472,1475],[379,7,6,1475,1481],[381,3,3,1481,1484],[382,4,4,1484,1488],[383,2,2,1488,1490],[384,18,17,1490,1507],[385,1,1,1507,1508],[386,6,6,1508,1514],[387,4,4,1514,1518],[388,1,1,1518,1519],[389,1,1,1519,1520],[390,4,4,1520,1524],[391,10,9,1524,1533],[393,1,1,1533,1534],[394,9,9,1534,1543],[395,5,4,1543,1547],[396,10,6,1547,1553],[397,5,4,1553,1557],[398,2,2,1557,1559],[399,7,6,1559,1565],[400,7,6,1565,1571],[401,10,6,1571,1577],[402,2,2,1577,1579]]],[14,28,25,1579,1604,[[403,1,1,1579,1580],[404,2,2,1580,1582],[405,4,4,1582,1586],[406,3,2,1586,1588],[408,3,2,1588,1590],[409,4,4,1590,1594],[410,5,4,1594,1598],[411,3,3,1598,1601],[412,3,3,1601,1604]]],[15,20,17,1604,1621,[[413,2,1,1604,1605],[414,1,1,1605,1606],[419,3,2,1606,1608],[420,3,3,1608,1611],[421,2,2,1611,1613],[422,2,2,1613,1615],[423,2,2,1615,1617],[424,1,1,1617,1618],[425,4,3,1618,1621]]],[18,61,59,1621,1680,[[491,2,1,1621,1622],[499,2,2,1622,1624],[502,1,1,1624,1625],[518,1,1,1625,1626],[527,1,1,1626,1627],[530,2,1,1627,1628],[536,1,1,1628,1629],[545,4,4,1629,1633],[546,1,1,1633,1634],[548,1,1,1634,1635],[549,1,1,1635,1636],[550,1,1,1636,1637],[553,1,1,1637,1638],[555,7,7,1638,1645],[557,1,1,1645,1646],[558,4,4,1646,1650],[560,1,1,1650,1651],[566,1,1,1651,1652],[575,1,1,1652,1653],[580,1,1,1653,1654],[582,2,2,1654,1656],[583,1,1,1656,1657],[591,2,2,1657,1659],[592,2,2,1659,1661],[595,1,1,1661,1662],[598,1,1,1662,1663],[599,1,1,1663,1664],[601,1,1,1664,1665],[602,1,1,1665,1666],[605,1,1,1666,1667],[606,1,1,1667,1668],[607,2,2,1668,1670],[608,1,1,1670,1671],[612,2,2,1671,1673],[613,3,3,1673,1676],[624,2,2,1676,1678],[625,1,1,1678,1679],[626,1,1,1679,1680]]],[19,1,1,1680,1681,[[628,1,1,1680,1681]]],[20,1,1,1681,1682,[[659,1,1,1681,1682]]],[21,1,1,1682,1683,[[673,1,1,1682,1683]]],[22,91,86,1683,1769,[[679,3,3,1683,1686],[682,1,1,1686,1687],[683,3,3,1687,1690],[685,1,1,1690,1691],[686,2,2,1691,1693],[687,2,2,1693,1695],[688,4,3,1695,1698],[689,2,2,1698,1700],[690,1,1,1700,1701],[692,2,2,1701,1703],[695,4,4,1703,1707],[697,2,2,1707,1709],[699,2,2,1709,1711],[702,1,1,1711,1712],[705,2,2,1712,1714],[707,2,2,1714,1716],[708,4,4,1716,1720],[709,2,2,1720,1722],[715,3,3,1722,1725],[718,1,1,1725,1726],[719,6,5,1726,1731],[720,1,1,1731,1732],[721,6,6,1732,1738],[722,6,5,1738,1743],[723,6,6,1743,1749],[724,2,2,1749,1751],[725,1,1,1751,1752],[726,5,4,1752,1756],[727,5,4,1756,1760],[730,1,1,1760,1761],[732,1,1,1761,1762],[733,1,1,1762,1763],[734,1,1,1763,1764],[738,2,2,1764,1766],[741,2,2,1766,1768],[744,1,1,1768,1769]]],[23,125,122,1769,1891,[[746,5,5,1769,1774],[747,8,8,1774,1782],[748,1,1,1782,1783],[749,2,2,1783,1785],[750,1,1,1785,1786],[751,3,3,1786,1789],[753,2,2,1789,1791],[754,2,2,1791,1793],[755,3,3,1793,1796],[756,1,1,1796,1797],[757,2,2,1797,1799],[758,1,1,1799,1800],[760,3,3,1800,1803],[761,1,1,1803,1804],[762,3,2,1804,1806],[763,2,2,1806,1808],[765,1,1,1808,1809],[767,5,5,1809,1814],[768,1,1,1814,1815],[769,2,2,1815,1817],[771,2,2,1817,1819],[772,2,2,1819,1821],[773,5,5,1821,1826],[774,4,4,1826,1830],[775,13,13,1830,1843],[776,8,7,1843,1850],[777,4,4,1850,1854],[778,2,2,1854,1856],[779,4,4,1856,1860],[780,1,1,1860,1861],[781,1,1,1861,1862],[782,1,1,1862,1863],[783,1,1,1863,1864],[785,1,1,1864,1865],[786,3,3,1865,1868],[787,1,1,1868,1869],[788,4,4,1869,1873],[789,1,1,1873,1874],[790,2,2,1874,1876],[792,3,3,1876,1879],[793,2,2,1879,1881],[794,7,7,1881,1888],[795,4,3,1888,1891]]],[24,3,3,1891,1894,[[798,3,3,1891,1894]]],[25,186,169,1894,2063,[[803,1,1,1894,1895],[804,6,5,1895,1900],[805,4,4,1900,1904],[806,1,1,1904,1905],[807,4,4,1905,1909],[808,1,1,1909,1910],[809,5,5,1910,1915],[810,3,3,1915,1918],[811,2,2,1918,1920],[812,7,7,1920,1927],[813,8,8,1927,1935],[814,6,5,1935,1940],[815,8,7,1940,1947],[818,2,2,1947,1949],[819,9,8,1949,1957],[820,2,2,1957,1959],[821,13,12,1959,1971],[822,4,4,1971,1975],[823,2,2,1975,1977],[825,1,1,1977,1978],[826,3,3,1978,1981],[828,1,1,1981,1982],[829,2,2,1982,1984],[830,3,3,1984,1987],[834,6,6,1987,1993],[835,6,4,1993,1997],[836,3,3,1997,2000],[837,14,11,2000,2011],[838,8,7,2011,2018],[839,6,6,2018,2024],[840,12,11,2024,2035],[841,2,2,2035,2037],[844,4,3,2037,2040],[845,10,9,2040,2049],[846,8,6,2049,2055],[848,5,4,2055,2059],[849,4,4,2059,2063]]],[26,4,4,2063,2067,[[850,1,1,2063,2064],[858,3,3,2064,2067]]],[27,43,40,2067,2107,[[862,6,6,2067,2073],[864,3,3,2073,2076],[865,3,3,2076,2079],[866,6,4,2079,2083],[867,2,1,2083,2084],[868,2,2,2084,2086],[869,4,4,2086,2090],[870,3,3,2090,2093],[871,5,5,2093,2098],[872,3,3,2098,2101],[873,2,2,2101,2103],[874,2,2,2103,2105],[875,2,2,2105,2107]]],[28,3,3,2107,2110,[[877,1,1,2107,2108],[878,2,2,2108,2110]]],[29,30,26,2110,2136,[[879,2,1,2110,2111],[880,2,2,2111,2113],[881,3,3,2113,2116],[882,3,2,2116,2118],[883,5,5,2118,2123],[884,2,2,2123,2125],[885,8,7,2125,2132],[886,1,1,2132,2133],[887,4,3,2133,2136]]],[30,1,1,2136,2137,[[888,1,1,2136,2137]]],[32,12,12,2137,2149,[[893,4,4,2137,2141],[894,1,1,2141,2142],[895,3,3,2142,2145],[897,3,3,2145,2148],[898,1,1,2148,2149]]],[33,1,1,2149,2150,[[901,1,1,2149,2150]]],[35,4,4,2150,2154,[[907,1,1,2150,2151],[908,3,3,2151,2154]]],[37,5,5,2154,2159,[[911,1,1,2154,2155],[918,1,1,2155,2156],[919,1,1,2156,2157],[921,1,1,2157,2158],[922,1,1,2158,2159]]],[38,5,5,2159,2164,[[925,2,2,2159,2161],[926,2,2,2161,2163],[928,1,1,2163,2164]]]],[956,960,987,1021,1032,1033,1071,1086,1096,1257,1296,1298,1301,1379,1386,1387,1388,1391,1394,1415,1416,1447,1449,1451,1453,1459,1461,1462,1465,1471,1472,1475,1480,1489,1497,1501,1508,1531,1533,1539,1541,1544,1545,1577,1579,1588,1589,1590,1592,1593,1594,1595,1597,1623,1630,1632,1633,1634,1646,1647,1651,1660,1661,1664,1666,1667,1668,1669,1681,1682,1687,1689,1690,1746,1748,1768,1777,1797,1800,1813,1816,1819,1822,1835,1837,1843,1844,1847,1851,1853,1856,1858,1863,1866,1867,1869,1885,1886,1891,1892,1894,1897,1899,1904,1905,1908,1909,1911,1914,1918,1919,1920,1939,1942,1948,1949,1950,1953,1956,1957,1959,1962,1964,1978,1982,1984,1988,1989,1990,1991,1994,2000,2008,2011,2024,2027,2028,2029,2032,2073,2178,2181,2182,2186,2187,2188,2194,2197,2217,2292,2293,2294,2302,2304,2305,2314,2322,2323,2331,2364,2379,2381,2394,2398,2413,2433,2436,2437,2442,2446,2451,2458,2465,2478,2479,2519,2523,2526,2528,2531,2532,2535,2551,2560,2561,2569,2670,2671,2678,2696,2706,2743,2745,2747,2797,2808,2902,2908,2913,2915,2917,2954,2956,2983,2991,2999,3046,3170,3199,3206,3217,3218,3220,3222,3235,3237,3238,3240,3243,3245,3247,3248,3249,3253,3283,3320,3369,3371,3372,3387,3401,3404,3412,3426,3436,3445,3448,3454,3456,3461,3469,3471,3502,3515,3524,3570,3572,3604,3606,3607,3620,3648,3649,3653,3656,3657,3658,3660,3690,3691,3692,3700,3701,3704,3705,3730,3732,3733,3734,3737,3738,3742,3789,3794,3796,3798,3801,3804,3825,3846,3850,3852,3934,3945,3948,3949,3950,3953,3955,3956,3957,3958,3959,3967,3969,3970,3972,3975,3982,3983,3984,3987,3992,4000,4016,4017,4024,4028,4040,4054,4077,4078,4099,4101,4107,4110,4113,4115,4118,4135,4147,4155,4171,4178,4179,4182,4185,4191,4196,4203,4219,4228,4232,4234,4235,4246,4249,4250,4253,4256,4262,4263,4265,4268,4271,4276,4277,4278,4279,4280,4281,4285,4289,4291,4298,4299,4312,4323,4324,4325,4330,4332,4333,4335,4340,4341,4342,4343,4350,4357,4361,4363,4364,4365,4371,4376,4377,4378,4423,4426,4437,4439,4447,4448,4451,4464,4472,4474,4476,4477,4479,4482,4484,4491,4493,4494,4540,4551,4552,4553,4562,4565,4566,4574,4575,4579,4648,4649,4666,4668,4669,4673,4676,4680,4718,4722,4725,4727,4731,4732,4735,4736,4746,4761,4763,4765,4798,4800,4811,4818,4829,4845,4847,4853,4855,4860,4879,4880,4881,4882,4883,4884,4886,4887,4888,4892,4893,4895,4930,4950,4993,5005,5048,5049,5050,5054,5089,5090,5158,5192,5198,5214,5283,5368,5384,5385,5390,5430,5455,5468,5489,5491,5517,5532,5554,5557,5581,5586,5594,5599,5680,5681,5689,5700,5729,5735,5737,5739,5747,5750,5751,5766,5803,5807,5809,5810,5811,5815,5820,5831,5838,5839,5847,5848,5849,5851,5853,5871,5894,5900,5902,5905,5914,5915,5917,5918,5922,5924,5931,5932,5935,5936,5937,5940,5944,5946,5950,5967,5972,5974,5977,5982,5984,5987,5988,5989,5991,5992,5995,5996,5999,6000,6001,6012,6016,6017,6019,6023,6024,6026,6029,6032,6033,6034,6035,6037,6039,6043,6044,6054,6055,6056,6063,6065,6068,6074,6075,6076,6078,6079,6084,6085,6088,6093,6094,6095,6096,6098,6100,6102,6104,6106,6107,6112,6113,6115,6120,6121,6123,6126,6127,6128,6129,6130,6131,6136,6137,6160,6167,6176,6187,6188,6192,6197,6201,6288,6294,6295,6296,6303,6370,6372,6374,6381,6382,6384,6389,6422,6426,6435,6437,6438,6439,6440,6442,6444,6446,6447,6448,6450,6456,6457,6458,6459,6461,6462,6477,6478,6485,6499,6507,6508,6510,6537,6549,6551,6552,6555,6556,6559,6565,6567,6569,6570,6572,6573,6575,6576,6577,6578,6580,6581,6582,6583,6595,6598,6599,6600,6602,6603,6604,6605,6622,6623,6625,6626,6628,6630,6631,6632,6634,6655,6656,6657,6658,6660,6661,6662,6668,6669,6690,6691,6696,6702,6708,6709,6717,6741,6746,6747,6752,6753,6754,6776,6809,6812,6813,6814,6817,6818,6819,6820,6821,6822,6826,6827,6828,6833,6834,6842,6844,6845,6846,6848,6849,6850,6852,6854,6855,6856,6862,6868,6869,6876,6877,6878,6880,6882,6883,6885,6889,6913,6949,6980,6986,6994,7012,7022,7025,7036,7053,7054,7055,7056,7057,7060,7061,7064,7065,7066,7067,7068,7071,7072,7073,7074,7076,7077,7078,7079,7080,7081,7083,7084,7085,7086,7087,7088,7089,7090,7092,7093,7095,7096,7102,7103,7105,7107,7108,7110,7117,7120,7126,7127,7161,7197,7201,7204,7229,7262,7268,7269,7270,7272,7287,7296,7298,7299,7300,7302,7307,7314,7315,7326,7327,7329,7330,7334,7336,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7365,7366,7367,7368,7369,7370,7373,7391,7393,7400,7407,7411,7412,7436,7438,7447,7448,7452,7453,7458,7460,7461,7486,7489,7490,7491,7498,7504,7520,7526,7530,7531,7532,7545,7547,7548,7549,7553,7555,7556,7561,7562,7566,7577,7586,7588,7589,7590,7595,7596,7620,7621,7626,7628,7629,7637,7639,7642,7643,7644,7663,7664,7670,7671,7682,7692,7694,7711,7742,7820,7821,7827,7841,7853,7859,7891,7893,7895,7907,7920,7925,7931,7942,7943,7945,7961,7970,8003,8010,8016,8025,8034,8041,8046,8058,8059,8066,8077,8091,8093,8098,8099,8100,8102,8118,8119,8133,8134,8135,8137,8144,8149,8158,8162,8172,8176,8177,8178,8186,8187,8188,8190,8191,8203,8204,8206,8207,8224,8249,8255,8258,8259,8260,8270,8293,8294,8298,8329,8330,8381,8391,8395,8399,8402,8429,8441,8444,8447,8448,8453,8459,8460,8462,8463,8464,8473,8475,8484,8485,8494,8495,8519,8520,8522,8533,8551,8552,8553,8554,8555,8556,8568,8573,8577,8582,8584,8585,8595,8597,8601,8654,8656,8662,8693,8694,8696,8701,8707,8717,8720,8737,8747,8751,8752,8765,8774,8775,8781,8785,8802,8844,8845,8851,8864,8869,8891,8897,8909,8986,8987,8988,8990,8994,8999,9000,9001,9002,9005,9007,9008,9010,9011,9015,9018,9019,9021,9023,9026,9028,9037,9040,9041,9044,9047,9048,9050,9051,9056,9058,9071,9072,9073,9088,9110,9117,9124,9133,9139,9140,9145,9146,9150,9152,9154,9167,9168,9169,9170,9171,9172,9175,9179,9184,9225,9228,9231,9232,9233,9236,9237,9239,9242,9258,9265,9266,9268,9269,9274,9276,9279,9280,9281,9282,9285,9288,9291,9296,9297,9299,9300,9303,9304,9306,9309,9310,9312,9316,9318,9331,9358,9359,9360,9361,9372,9377,9397,9401,9403,9405,9410,9412,9415,9419,9421,9423,9428,9429,9430,9434,9435,9436,9437,9439,9440,9448,9449,9451,9458,9469,9472,9477,9481,9482,9483,9484,9485,9486,9488,9489,9490,9497,9498,9506,9509,9510,9511,9512,9513,9514,9519,9521,9524,9531,9533,9534,9536,9539,9549,9551,9563,9577,9579,9580,9581,9582,9585,9586,9588,9589,9600,9603,9649,9651,9652,9653,9654,9655,9659,9662,9682,9683,9684,9685,9686,9695,9697,9700,9713,9720,9739,9743,9745,9752,9753,9759,9762,9764,9768,9770,9777,9814,9822,9823,9824,9825,9827,9829,9872,9873,9874,9875,9876,9877,9879,9881,9882,9883,9884,9885,9887,9889,9893,9896,9897,9904,9905,9907,9908,9909,9911,9912,9913,9919,9920,9921,9922,9923,9924,9925,9926,9933,9934,9936,9937,9940,9942,9943,9945,9946,9948,9949,9951,9952,9953,9954,9956,9957,9966,9968,9970,9984,9985,9990,9991,9992,9996,10001,10002,10003,10004,10005,10006,10007,10017,10025,10028,10029,10033,10034,10035,10076,10081,10083,10121,10122,10126,10127,10128,10131,10160,10163,10178,10180,10184,10187,10192,10215,10286,10295,10307,10313,10395,10429,10431,10445,10454,10492,10503,10518,10564,10616,10660,10666,10674,10675,10676,10677,10683,10752,10758,10760,10762,10765,10766,10768,10776,10782,10794,10803,10805,10816,10819,10823,10824,10833,10837,10856,10860,10868,10869,10870,10872,10873,10884,10885,10887,10904,10917,10923,10924,10925,10926,10933,10935,10936,10937,10938,10939,10941,10946,10948,10965,10966,10970,10973,10974,10976,10977,10981,10984,10985,11008,11034,11106,11107,11110,11125,11131,11132,11133,11144,11147,11148,11151,11170,11174,11182,11185,11187,11189,11190,11191,11194,11196,11207,11215,11223,11228,11270,11271,11272,11274,11278,11285,11286,11287,11288,11289,11292,11293,11294,11295,11296,11298,11299,11303,11306,11307,11309,11311,11314,11315,11327,11330,11332,11334,11342,11348,11354,11355,11357,11372,11394,11396,11398,11411,11412,11413,11414,11415,11417,11427,11430,11438,11443,11450,11457,11458,11465,11468,11469,11471,11493,11494,11503,11510,11512,11513,11520,11524,11527,11545,11546,11547,11549,11550,11551,11558,11559,11561,11567,11570,11571,11572,11573,11574,11575,11576,11584,11594,11597,11606,11616,11621,11622,11626,11628,11630,11637,11649,11658,11682,11683,11686,11693,11711,11713,11721,11722,11725,11726,11727,11729,11730,11762,11766,11767,11769,11772,11777,11783,11787,11790,11791,11798,11801,11815,11818,11828,11832,11833,11848,11852,11853,11855,11859,11860,11862,11892,11907,11910,11915,11916,11917,11924,11926,11940,11942,11954,11956,11959,11966,11969,11970,11983,11984,11991,11993,12001,12006,12019,12029,12097,12098,12099,12107,12108,12111,12113,12172,12173,12179,12180,12183,12184,12219,12226,12230,12236,12238,12241,12252,12254,12257,12262,12302,12317,12427,12493,12494,12507,12510,12512,12513,12582,12588,12591,12608,12671,12673,12689,12697,14087,14207,14227,14273,14555,14675,14725,14795,14908,14926,14934,14935,14941,14998,15018,15021,15082,15118,15134,15144,15154,15168,15172,15184,15199,15221,15225,15228,15230,15245,15344,15493,15556,15616,15629,15699,15823,15824,15839,15842,15871,16085,16093,16103,16115,16132,16133,16147,16148,16151,16179,16187,16207,16210,16218,16353,16370,16385,16387,16401,17327,17578,17657,17658,17678,17735,17746,17758,17763,17783,17821,17825,17837,17841,17867,17870,17872,17896,17900,17906,17929,17930,17986,17989,17990,17992,18028,18029,18045,18052,18110,18157,18163,18212,18216,18228,18229,18232,18246,18251,18256,18368,18373,18375,18447,18459,18465,18467,18468,18471,18504,18506,18508,18519,18520,18527,18533,18534,18538,18539,18554,18556,18564,18565,18572,18576,18578,18586,18589,18599,18603,18615,18616,18626,18631,18639,18641,18642,18643,18708,18728,18745,18761,18830,18835,18873,18882,18942,18968,18969,18979,18991,18996,19008,19010,19013,19014,19020,19022,19023,19025,19028,19069,19073,19098,19122,19131,19140,19190,19201,19202,19217,19229,19236,19243,19263,19277,19278,19301,19345,19350,19351,19370,19390,19397,19410,19422,19444,19486,19490,19491,19492,19497,19529,19549,19561,19600,19617,19620,19632,19639,19643,19656,19658,19660,19669,19670,19671,19677,19692,19693,19695,19698,19700,19701,19712,19714,19718,19722,19724,19727,19728,19745,19746,19751,19752,19761,19763,19767,19779,19782,19789,19792,19803,19814,19836,19840,19841,19842,19844,19881,19912,19939,19966,19984,19990,19993,20007,20012,20017,20021,20035,20042,20070,20072,20081,20093,20107,20128,20129,20170,20183,20184,20185,20186,20195,20199,20217,20245,20261,20333,20335,20337,20495,20503,20506,20507,20509,20519,20532,20533,20534,20542,20550,20565,20566,20568,20574,20579,20608,20610,20614,20615,20616,20625,20630,20631,20652,20653,20660,20665,20666,20668,20670,20672,20677,20686,20689,20690,20699,20702,20703,20704,20707,20710,20712,20713,20717,20724,20732,20735,20736,20737,20738,20740,20742,20827,20848,20851,20852,20855,20864,20874,20878,20879,20880,20882,20890,20896,20898,20900,20908,20922,20925,20926,20933,20934,20935,20937,20939,20946,20947,20956,20969,20982,20994,21077,21086,21089,21097,21138,21181,21182,21189,21199,21204,21287,21290,21291,21300,21304,21308,21315,21326,21327,21343,21349,21356,21359,21360,21363,21365,21367,21369,21371,21376,21380,21381,21391,21396,21408,21409,21413,21416,21418,21419,21425,21433,21439,21441,21442,21443,21444,21450,21452,21455,21457,21459,21460,21465,21470,21471,21473,21477,21479,21481,21574,21579,21582,21601,21605,21608,21609,21611,21614,21621,21627,21628,21636,21638,21639,21645,21646,21647,21692,21697,21700,21701,21713,21721,21731,21733,21740,21995,21999,22008,22095,22098,22099,22100,22104,22105,22129,22132,22133,22134,22148,22149,22153,22155,22157,22161,22177,22179,22188,22196,22197,22202,22208,22209,22215,22218,22226,22231,22233,22234,22240,22241,22248,22252,22264,22265,22267,22275,22283,22287,22338,22345,22359,22365,22385,22390,22396,22407,22409,22415,22422,22424,22425,22426,22427,22448,22451,22464,22472,22473,22474,22475,22479,22480,22481,22483,22502,22504,22509,22530,22584,22592,22593,22594,22607,22609,22616,22617,22634,22635,22636,22650,22701,22814,22833,22834,22835,22897,22989,23000,23042,23046,23090,23094,23114,23119,23142]]],["Israel's",[9,8,[[0,2,1,0,1,[[47,2,1,0,1]]],[1,1,1,1,2,[[67,1,1,1,2]]],[3,4,4,2,6,[[117,1,1,2,3],[147,3,3,3,6]]],[4,1,1,6,7,[[173,1,1,6,7]]],[9,1,1,7,8,[[271,1,1,7,8]]]],[1464,2007,3624,4694,4706,4711,5455,8144]]],["Israelites",[16,16,[[1,1,1,0,1,[[58,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[5,4,4,2,6,[[189,1,1,2,3],[194,1,1,3,4],[199,2,2,4,6]]],[6,1,1,6,7,[[230,1,1,6,7]]],[8,5,5,7,12,[[237,1,1,7,8],[248,1,1,8,9],[249,1,1,9,10],[260,1,1,10,11],[264,1,1,11,12]]],[9,1,1,12,13,[[270,1,1,12,13]]],[11,2,2,13,15,[[315,1,1,13,14],[319,1,1,14,15]]],[12,1,1,15,16,[[346,1,1,15,16]]]],[1749,3444,5910,6026,6160,6167,7075,7254,7505,7529,7862,7968,8121,9600,9720,10617]]]]},{"k":"H3479","v":[["Israel",[8,7,[[14,8,7,0,7,[[407,2,2,0,2],[408,4,3,2,5],[409,2,2,5,7]]]],[12135,12145,12165,12167,12168,12186,12188]]]]},{"k":"H3480","v":[["Jesharelah",[1,1,[[12,1,1,0,1,[[362,1,1,0,1]]]],[11060]]]]},{"k":"H3481","v":[["*",[2,2,[[2,1,1,0,1,[[113,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]]],[3456,8474]]],["Israel",[1,1,[[2,1,1,0,1,[[113,1,1,0,1]]]],[3456]]],["Israelite",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8474]]]]},{"k":"H3482","v":[["Israelitish",[3,2,[[2,3,2,0,2,[[113,3,2,0,2]]]],[3456,3457]]]]},{"k":"H3483","v":[["uprightness",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8822]]]]},{"k":"H3484","v":[["*",[4,4,[[4,3,3,0,3,[[184,1,1,0,1],[185,2,2,1,3]]],[22,1,1,3,4,[[722,1,1,3,4]]]],[5773,5815,5836,18535]]],["Jeshurun",[3,3,[[4,3,3,0,3,[[184,1,1,0,1],[185,2,2,1,3]]]],[5773,5815,5836]]],["Jesurun",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18535]]]]},{"k":"H3485","v":[["*",[43,40,[[0,4,4,0,4,[[29,1,1,0,1],[34,1,1,1,2],[45,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[3,11,10,5,15,[[117,3,3,5,8],[118,2,1,8,9],[123,1,1,9,10],[126,1,1,10,11],[129,1,1,11,12],[142,2,2,12,14],[150,1,1,14,15]]],[4,2,2,15,17,[[179,1,1,15,16],[185,1,1,16,17]]],[5,7,6,17,23,[[203,2,2,17,19],[205,3,2,19,21],[207,2,2,21,23]]],[6,3,2,23,25,[[215,2,1,23,24],[220,1,1,24,25]]],[10,2,2,25,27,[[294,1,1,25,26],[305,1,1,26,27]]],[12,9,9,27,36,[[339,1,1,27,28],[343,2,2,28,30],[344,2,2,30,32],[349,2,2,32,34],[363,1,1,34,35],[364,1,1,35,36]]],[13,1,1,36,37,[[396,1,1,36,37]]],[25,3,3,37,40,[[849,3,3,37,40]]]],[848,1034,1399,1487,1535,3612,3632,3633,3663,3868,4003,4082,4512,4514,4842,5597,5828,6285,6286,6338,6344,6387,6409,6638,6812,8861,9276,10307,10516,10526,10536,10540,10752,10760,11082,11127,11845,21727,21728,21735]]],["+",[2,2,[[5,1,1,0,1,[[207,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]]],[6409,10526]]],["Issachar",[41,38,[[0,4,4,0,4,[[29,1,1,0,1],[34,1,1,1,2],[45,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[3,11,10,5,15,[[117,3,3,5,8],[118,2,1,8,9],[123,1,1,9,10],[126,1,1,10,11],[129,1,1,11,12],[142,2,2,12,14],[150,1,1,14,15]]],[4,2,2,15,17,[[179,1,1,15,16],[185,1,1,16,17]]],[5,6,5,17,22,[[203,2,2,17,19],[205,3,2,19,21],[207,1,1,21,22]]],[6,3,2,22,24,[[215,2,1,22,23],[220,1,1,23,24]]],[10,2,2,24,26,[[294,1,1,24,25],[305,1,1,25,26]]],[12,8,8,26,34,[[339,1,1,26,27],[343,1,1,27,28],[344,2,2,28,30],[349,2,2,30,32],[363,1,1,32,33],[364,1,1,33,34]]],[13,1,1,34,35,[[396,1,1,34,35]]],[25,3,3,35,38,[[849,3,3,35,38]]]],[848,1034,1399,1487,1535,3612,3632,3633,3663,3868,4003,4082,4512,4514,4842,5597,5828,6285,6286,6338,6344,6387,6638,6812,8861,9276,10307,10516,10536,10540,10752,10760,11082,11127,11845,21727,21728,21735]]]]},{"k":"H3486","v":[["age",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[12010]]]]},{"k":"H3487","v":[]},{"k":"H3488","v":[["*",[5,5,[[14,2,2,0,2,[[406,2,2,0,2]]],[26,3,3,2,5,[[856,3,3,2,5]]]],[12120,12127,21942,21943,21959]]],["dwell",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12127]]],["set",[2,2,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,1,1,1,2,[[856,1,1,1,2]]]],[12120,21943]]],["sit",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21942,21959]]]]},{"k":"H3489","v":[["*",[24,19,[[1,8,5,0,5,[[76,2,1,0,1],[84,2,1,1,2],[87,3,2,2,4],[88,1,1,4,5]]],[3,2,2,5,7,[[119,1,1,5,6],[120,1,1,6,7]]],[4,1,1,7,8,[[175,1,1,7,8]]],[6,6,4,8,12,[[214,3,2,8,10],[215,1,1,10,11],[226,2,1,11,12]]],[14,1,1,12,13,[[411,1,1,12,13]]],[22,4,4,13,17,[[700,2,2,13,15],[711,1,1,15,16],[732,1,1,16,17]]],[25,1,1,17,18,[[816,1,1,17,18]]],[37,1,1,18,19,[[920,1,1,18,19]]]],[2291,2549,2653,2664,2704,3729,3775,5513,6620,6621,6649,6963,12245,18075,18077,18299,18725,20757,23020]]],["nail",[8,7,[[6,4,3,0,3,[[214,3,2,0,2],[215,1,1,2,3]]],[14,1,1,3,4,[[411,1,1,3,4]]],[22,2,2,4,6,[[700,2,2,4,6]]],[37,1,1,6,7,[[920,1,1,6,7]]]],[6620,6621,6649,12245,18075,18077,23020]]],["paddle",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5513]]],["pin",[3,2,[[6,2,1,0,1,[[226,2,1,0,1]]],[25,1,1,1,2,[[816,1,1,1,2]]]],[6963,20757]]],["pins",[10,7,[[1,8,5,0,5,[[76,2,1,0,1],[84,2,1,1,2],[87,3,2,2,4],[88,1,1,4,5]]],[3,2,2,5,7,[[119,1,1,5,6],[120,1,1,6,7]]]],[2291,2549,2653,2664,2704,3729,3775]]],["stakes",[2,2,[[22,2,2,0,2,[[711,1,1,0,1],[732,1,1,1,2]]]],[18299,18725]]]]},{"k":"H3490","v":[["*",[42,42,[[1,2,2,0,2,[[71,2,2,0,2]]],[4,11,11,2,13,[[162,1,1,2,3],[166,1,1,3,4],[168,2,2,4,6],[176,4,4,6,10],[178,2,2,10,12],[179,1,1,12,13]]],[17,7,7,13,20,[[441,1,1,13,14],[457,1,1,14,15],[459,2,2,15,17],[464,1,1,17,18],[466,2,2,18,20]]],[18,8,8,20,28,[[487,2,2,20,22],[545,1,1,22,23],[559,1,1,23,24],[571,1,1,24,25],[586,2,2,25,27],[623,1,1,27,28]]],[19,1,1,28,29,[[650,1,1,28,29]]],[22,4,4,29,33,[[679,2,2,29,31],[687,1,1,31,32],[688,1,1,32,33]]],[23,4,4,33,37,[[749,1,1,33,34],[751,1,1,34,35],[766,1,1,35,36],[793,1,1,36,37]]],[24,1,1,37,38,[[801,1,1,37,38]]],[25,1,1,38,39,[[823,1,1,38,39]]],[27,1,1,39,40,[[875,1,1,39,40]]],[37,1,1,40,41,[[917,1,1,40,41]]],[38,1,1,41,42,[[927,1,1,41,42]]]],[2135,2137,5204,5319,5353,5356,5542,5544,5545,5546,5578,5579,5604,13005,13398,13439,13445,13544,13605,13609,14055,14059,14905,15236,15437,15764,15767,16350,17054,17671,17677,17846,17852,19086,19125,19457,20138,20445,20983,22285,22972,23125]]],["child",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2135]]],["children",[2,2,[[18,1,1,0,1,[[586,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]]],[15767,20138]]],["fatherless",[38,38,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,11,11,1,12,[[162,1,1,1,2],[166,1,1,2,3],[168,2,2,3,5],[176,4,4,5,9],[178,2,2,9,11],[179,1,1,11,12]]],[17,7,7,12,19,[[441,1,1,12,13],[457,1,1,13,14],[459,2,2,14,16],[464,1,1,16,17],[466,2,2,17,19]]],[18,7,7,19,26,[[487,2,2,19,21],[545,1,1,21,22],[559,1,1,22,23],[571,1,1,23,24],[586,1,1,24,25],[623,1,1,25,26]]],[19,1,1,26,27,[[650,1,1,26,27]]],[22,4,4,27,31,[[679,2,2,27,29],[687,1,1,29,30],[688,1,1,30,31]]],[23,3,3,31,34,[[749,1,1,31,32],[751,1,1,32,33],[766,1,1,33,34]]],[25,1,1,34,35,[[823,1,1,34,35]]],[27,1,1,35,36,[[875,1,1,35,36]]],[37,1,1,36,37,[[917,1,1,36,37]]],[38,1,1,37,38,[[927,1,1,37,38]]]],[2137,5204,5319,5353,5356,5542,5544,5545,5546,5578,5579,5604,13005,13398,13439,13445,13544,13605,13609,14055,14059,14905,15236,15437,15764,16350,17054,17671,17677,17846,17852,19086,19125,19457,20983,22285,22972,23125]]],["orphans",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20445]]]]},{"k":"H3491","v":[["range",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13842]]]]},{"k":"H3492","v":[["Jattir",[4,4,[[5,2,2,0,2,[[201,1,1,0,1],[207,1,1,1,2]]],[8,1,1,2,3,[[265,1,1,2,3]]],[12,1,1,3,4,[[343,1,1,3,4]]]],[6250,6395,8005,10511]]]]},{"k":"H3493","v":[["*",[8,8,[[26,8,8,0,8,[[851,1,1,0,1],[852,1,1,1,2],[853,1,1,2,3],[854,2,2,3,5],[855,1,1,5,6],[856,2,2,6,8]]]],[21789,21829,21873,21886,21888,21908,21940,21952]]],["exceeding",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[856,1,1,1,2]]]],[21829,21952]]],["exceedingly",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21940]]],["excellent",[5,5,[[26,5,5,0,5,[[851,1,1,0,1],[853,1,1,1,2],[854,2,2,2,4],[855,1,1,4,5]]]],[21789,21873,21886,21888,21908]]]]},{"k":"H3494","v":[["Jethlah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6363]]]]},{"k":"H3495","v":[["Ithmah",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10719]]]]},{"k":"H3496","v":[["Jathniel",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11079]]]]},{"k":"H3497","v":[["Ithnan",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6225]]]]},{"k":"H3498","v":[["*",[107,101,[[0,4,4,0,4,[[29,1,1,0,1],[31,1,1,1,2],[43,1,1,2,3],[48,1,1,3,4]]],[1,10,7,4,11,[[59,2,1,4,5],[61,2,1,5,6],[65,2,2,6,8],[77,1,1,8,9],[78,2,1,9,10],[85,1,1,10,11]]],[2,14,13,11,24,[[91,2,2,11,13],[95,1,1,13,14],[96,2,2,14,16],[97,1,1,16,17],[99,3,2,17,19],[103,2,2,19,21],[108,1,1,21,22],[111,1,1,22,23],[116,1,1,23,24]]],[3,2,2,24,26,[[142,1,1,24,25],[149,1,1,25,26]]],[4,3,3,26,29,[[180,2,2,26,28],[182,1,1,28,29]]],[5,10,10,29,39,[[197,2,2,29,31],[203,2,2,31,33],[204,1,1,33,34],[207,5,5,34,39]]],[6,4,4,39,43,[[218,1,1,39,40],[219,1,1,40,41],[231,2,2,41,43]]],[7,2,2,43,45,[[233,2,2,43,45]]],[8,4,4,45,49,[[237,1,1,45,46],[250,1,1,46,47],[260,1,1,47,48],[265,1,1,48,49]]],[9,4,4,49,53,[[274,1,1,49,50],[275,1,1,50,51],[279,1,1,51,52],[283,1,1,52,53]]],[10,9,8,53,61,[[299,2,2,53,55],[305,1,1,55,56],[307,1,1,56,57],[308,1,1,57,58],[309,2,2,58,60],[310,2,1,60,61]]],[11,4,4,61,65,[[316,3,3,61,64],[332,1,1,64,65]]],[12,5,5,65,70,[[343,3,3,65,68],[355,1,1,68,69],[361,1,1,69,70]]],[13,4,3,70,73,[[374,2,2,70,72],[397,2,1,72,73]]],[15,1,1,73,74,[[418,1,1,73,74]]],[18,2,2,74,76,[[556,1,1,74,75],[583,1,1,75,76]]],[19,1,1,76,77,[[629,1,1,76,77]]],[22,6,6,77,83,[[679,2,2,77,79],[682,1,1,79,80],[685,1,1,80,81],[708,1,1,81,82],[717,1,1,82,83]]],[23,5,5,83,88,[[771,3,3,83,86],[778,1,1,86,87],[788,1,1,87,88]]],[25,9,9,88,97,[[807,1,1,88,89],[813,1,1,89,90],[815,1,1,90,91],[835,1,1,91,92],[840,2,2,92,94],[849,3,3,94,97]]],[26,1,1,97,98,[[859,1,1,97,98]]],[29,1,1,98,99,[[884,1,1,98,99]]],[37,2,2,99,101,[[923,1,1,99,100],[924,1,1,100,101]]]],[866,952,1344,1477,1792,1826,1966,1967,2303,2370,2573,2765,2772,2865,2895,2896,2949,2989,2993,3129,3140,3287,3399,3588,4554,4815,5622,5665,5717,6118,6129,6277,6281,6295,6386,6401,6407,6415,6421,6729,6759,7109,7118,7163,7167,7276,7575,7895,7987,8213,8228,8347,8461,9071,9072,9267,9334,9363,9397,9401,9438,9610,9646,9647,10115,10515,10524,10531,10894,11035,11353,11354,11864,12402,15196,15662,16454,17662,17663,17736,17804,18234,18418,19614,19615,19617,19808,20017,20571,20696,20753,21331,21462,21476,21717,21720,21723,22028,22459,23067,23084]]],["+",[1,1,[[13,1,1,0,1,[[397,1,1,0,1]]]],[11864]]],["behind",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7987]]],["excel",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1477]]],["leave",[6,6,[[1,1,1,0,1,[[65,1,1,0,1]]],[2,1,1,1,2,[[111,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[11,1,1,3,4,[[316,1,1,3,4]]],[23,1,1,4,5,[[788,1,1,4,5]]],[25,1,1,5,6,[[813,1,1,5,6]]]],[1966,3399,5665,9646,20017,20696]]],["left",[45,45,[[0,2,2,0,2,[[31,1,1,0,1],[43,1,1,1,2]]],[1,2,2,2,4,[[59,1,1,2,3],[65,1,1,3,4]]],[2,3,3,4,7,[[91,1,1,4,5],[99,2,2,5,7]]],[3,1,1,7,8,[[142,1,1,7,8]]],[5,2,2,8,10,[[197,2,2,8,10]]],[6,2,2,10,12,[[218,1,1,10,11],[219,1,1,11,12]]],[7,1,1,12,13,[[233,1,1,12,13]]],[8,2,2,13,15,[[237,1,1,13,14],[260,1,1,14,15]]],[9,3,3,15,18,[[275,1,1,15,16],[279,1,1,16,17],[283,1,1,17,18]]],[10,7,7,18,25,[[299,2,2,18,20],[305,1,1,20,21],[307,1,1,21,22],[309,2,2,22,24],[310,1,1,24,25]]],[11,2,2,25,27,[[316,1,1,25,26],[332,1,1,26,27]]],[12,1,1,27,28,[[343,1,1,27,28]]],[13,3,3,28,31,[[374,2,2,28,30],[397,1,1,30,31]]],[15,1,1,31,32,[[418,1,1,31,32]]],[18,1,1,32,33,[[583,1,1,32,33]]],[22,5,5,33,38,[[679,2,2,33,35],[685,1,1,35,36],[708,1,1,36,37],[717,1,1,37,38]]],[23,2,2,38,40,[[771,1,1,38,39],[778,1,1,39,40]]],[25,3,3,40,43,[[815,1,1,40,41],[840,1,1,41,42],[849,1,1,42,43]]],[37,2,2,43,45,[[923,1,1,43,44],[924,1,1,44,45]]]],[952,1344,1792,1967,2772,2989,2993,4554,6118,6129,6729,6759,7163,7276,7895,8228,8347,8461,9071,9072,9267,9334,9397,9401,9438,9647,10115,10515,11353,11354,11864,12402,15662,17662,17663,17804,18234,18418,19614,19808,20753,21476,21717,23067,23084]]],["much",[1,1,[[1,1,1,0,1,[[85,1,1,0,1]]]],[2573]]],["plenteous",[2,2,[[4,2,2,0,2,[[180,1,1,0,1],[182,1,1,1,2]]]],[5622,5717]]],["preserve",[1,1,[[18,1,1,0,1,[[556,1,1,0,1]]]],[15196]]],["remain",[13,13,[[1,2,2,0,2,[[61,1,1,0,1],[78,1,1,1,2]]],[2,2,2,2,4,[[108,1,1,2,3],[116,1,1,3,4]]],[3,1,1,4,5,[[149,1,1,4,5]]],[6,2,2,5,7,[[231,2,2,5,7]]],[10,1,1,7,8,[[308,1,1,7,8]]],[19,1,1,8,9,[[629,1,1,8,9]]],[23,2,2,9,11,[[771,2,2,9,11]]],[25,1,1,11,12,[[840,1,1,11,12]]],[29,1,1,12,13,[[884,1,1,12,13]]]],[1826,2370,3287,3588,4815,7109,7118,9363,16454,19615,19617,21462,22459]]],["remainder",[4,4,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,3,3,1,4,[[95,1,1,1,2],[96,2,2,2,4]]]],[2370,2865,2895,2896]]],["remained",[5,5,[[1,1,1,0,1,[[59,1,1,0,1]]],[5,3,3,1,4,[[204,1,1,1,2],[207,2,2,2,4]]],[26,1,1,4,5,[[859,1,1,4,5]]]],[1792,6295,6401,6407,22028]]],["remaineth",[4,4,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,2,2,1,3,[[97,1,1,1,2],[99,1,1,2,3]]],[22,1,1,3,4,[[682,1,1,3,4]]]],[1826,2949,2989,17736]]],["remaining",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6421]]],["remnant",[4,4,[[2,2,2,0,2,[[91,1,1,0,1],[103,1,1,1,2]]],[12,1,1,2,3,[[343,1,1,2,3]]],[25,1,1,3,4,[[807,1,1,3,4]]]],[2765,3129,10524,20571]]],["reserved",[3,3,[[7,1,1,0,1,[[233,1,1,0,1]]],[9,1,1,1,2,[[274,1,1,1,2]]],[12,1,1,2,3,[[355,1,1,2,3]]]],[7167,8213,10894]]],["residue",[3,3,[[25,3,3,0,3,[[835,1,1,0,1],[849,2,2,1,3]]]],[21331,21720,21723]]],["rest",[12,12,[[0,1,1,0,1,[[29,1,1,0,1]]],[1,1,1,1,2,[[77,1,1,1,2]]],[2,1,1,2,3,[[103,1,1,2,3]]],[5,4,4,3,7,[[203,2,2,3,5],[207,2,2,5,7]]],[8,1,1,7,8,[[250,1,1,7,8]]],[10,1,1,8,9,[[310,1,1,8,9]]],[11,1,1,9,10,[[316,1,1,9,10]]],[12,2,2,10,12,[[343,1,1,10,11],[361,1,1,11,12]]]],[866,2303,3140,6277,6281,6386,6415,7575,9438,9610,10531,11035]]]]},{"k":"H3499","v":[["*",[101,95,[[0,2,1,0,1,[[48,2,1,0,1]]],[1,2,2,1,3,[[59,1,1,1,2],[72,1,1,2,3]]],[2,1,1,3,4,[[103,1,1,3,4]]],[3,1,1,4,5,[[147,1,1,4,5]]],[4,3,3,5,8,[[155,2,2,5,7],[180,1,1,7,8]]],[5,4,4,8,12,[[198,1,1,8,9],[199,2,2,9,11],[209,1,1,11,12]]],[6,4,4,12,16,[[217,1,1,12,13],[226,3,3,13,16]]],[8,1,1,16,17,[[248,1,1,16,17]]],[9,3,3,17,20,[[276,1,1,17,18],[278,1,1,18,19],[287,1,1,19,20]]],[10,14,14,20,34,[[301,1,1,20,21],[302,1,1,21,22],[304,2,2,22,24],[305,3,3,24,27],[306,4,4,27,31],[312,3,3,31,34]]],[11,24,23,34,57,[[313,1,1,34,35],[320,1,1,35,36],[322,1,1,36,37],[324,1,1,37,38],[325,2,2,38,40],[326,3,3,40,43],[327,7,7,43,50],[328,1,1,50,51],[332,1,1,51,52],[333,2,2,52,54],[335,1,1,54,55],[336,1,1,55,56],[337,2,1,56,57]]],[12,1,1,57,58,[[356,1,1,57,58]]],[13,10,10,58,68,[[379,1,1,58,59],[386,1,1,59,60],[391,1,1,60,61],[392,1,1,61,62],[393,1,1,62,63],[394,1,1,63,64],[398,1,1,64,65],[399,1,1,65,66],[401,1,1,66,67],[402,1,1,67,68]]],[15,5,5,68,73,[[414,1,1,68,69],[416,2,2,69,71],[418,2,2,71,73]]],[17,3,3,73,76,[[439,1,1,73,74],[457,1,1,74,75],[465,1,1,75,76]]],[18,3,3,76,79,[[488,1,1,76,77],[494,1,1,77,78],[508,1,1,78,79]]],[19,1,1,79,80,[[644,1,1,79,80]]],[22,3,3,80,83,[[716,1,1,80,81],[722,1,1,81,82],[734,1,1,82,83]]],[23,6,4,83,87,[[771,1,1,83,84],[773,1,1,84,85],[783,2,1,85,86],[796,2,1,86,87]]],[25,2,2,87,89,[[835,1,1,87,88],[849,1,1,88,89]]],[26,1,1,89,90,[[857,1,1,89,90]]],[28,3,1,90,91,[[876,3,1,90,91]]],[32,1,1,91,92,[[897,1,1,91,92]]],[34,1,1,92,93,[[904,1,1,92,93]]],[35,1,1,93,94,[[907,1,1,93,94]]],[37,1,1,94,95,[[924,1,1,94,95]]]],[1476,1782,2155,3128,4696,4986,4988,5665,6134,6166,6181,6472,6700,6956,6957,6958,7487,8250,8314,8582,9149,9174,9237,9247,9256,9272,9280,9288,9297,9303,9310,9519,9525,9526,9551,9750,9827,9869,9879,9883,9911,9914,9924,9931,9936,9940,9946,9951,9956,9961,9982,10118,10136,10144,10193,10207,10233,10918,11475,11621,11730,11754,11762,11790,11907,11926,11992,12001,12323,12373,12378,12402,12415,12951,13409,13568,14061,14117,14354,16880,18400,18552,18765,19615,19636,19932,20291,21331,21725,21970,22295,22636,22756,22814,23070]]],["+",[8,8,[[2,1,1,0,1,[[103,1,1,0,1]]],[4,1,1,1,2,[[155,1,1,1,2]]],[5,2,2,2,4,[[198,1,1,2,3],[199,1,1,3,4]]],[9,1,1,4,5,[[287,1,1,4,5]]],[18,1,1,5,6,[[508,1,1,5,6]]],[22,1,1,6,7,[[734,1,1,6,7]]],[26,1,1,7,8,[[857,1,1,7,8]]]],[3128,4986,6134,6166,8582,14354,18765,21970]]],["Excellent",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16880]]],["cord",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13568]]],["excellency",[3,2,[[0,2,1,0,1,[[48,2,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]]],[1476,12951]]],["leave",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2155]]],["left",[3,1,[[28,3,1,0,1,[[876,3,1,0,1]]]],[22295]]],["remnant",[10,10,[[4,1,1,0,1,[[180,1,1,0,1]]],[5,1,1,1,2,[[209,1,1,1,2]]],[10,2,2,2,4,[[302,1,1,2,3],[312,1,1,3,4]]],[11,1,1,4,5,[[337,1,1,4,5]]],[17,1,1,5,6,[[457,1,1,5,6]]],[23,1,1,6,7,[[783,1,1,6,7]]],[32,1,1,7,8,[[897,1,1,7,8]]],[34,1,1,8,9,[[904,1,1,8,9]]],[35,1,1,9,10,[[907,1,1,9,10]]]],[5665,6472,9174,9526,10233,13409,19932,22636,22756,22814]]],["residue",[8,8,[[1,1,1,0,1,[[59,1,1,0,1]]],[22,2,2,1,3,[[716,1,1,1,2],[722,1,1,2,3]]],[23,3,3,3,6,[[771,1,1,3,4],[773,1,1,4,5],[796,1,1,5,6]]],[25,1,1,6,7,[[835,1,1,6,7]]],[37,1,1,7,8,[[924,1,1,7,8]]]],[1782,18400,18552,19615,19636,20291,21331,23070]]],["rest",[62,62,[[3,1,1,0,1,[[147,1,1,0,1]]],[4,1,1,1,2,[[155,1,1,1,2]]],[5,1,1,2,3,[[199,1,1,2,3]]],[6,1,1,3,4,[[217,1,1,3,4]]],[8,1,1,4,5,[[248,1,1,4,5]]],[9,2,2,5,7,[[276,1,1,5,6],[278,1,1,6,7]]],[10,12,12,7,19,[[301,1,1,7,8],[304,2,2,8,10],[305,3,3,10,13],[306,4,4,13,17],[312,2,2,17,19]]],[11,23,23,19,42,[[313,1,1,19,20],[320,1,1,20,21],[322,1,1,21,22],[324,1,1,22,23],[325,2,2,23,25],[326,3,3,25,28],[327,7,7,28,35],[328,1,1,35,36],[332,1,1,36,37],[333,2,2,37,39],[335,1,1,39,40],[336,1,1,40,41],[337,1,1,41,42]]],[12,1,1,42,43,[[356,1,1,42,43]]],[13,10,10,43,53,[[379,1,1,43,44],[386,1,1,44,45],[391,1,1,45,46],[392,1,1,46,47],[393,1,1,47,48],[394,1,1,48,49],[398,1,1,49,50],[399,1,1,50,51],[401,1,1,51,52],[402,1,1,52,53]]],[15,5,5,53,58,[[414,1,1,53,54],[416,2,2,54,56],[418,2,2,56,58]]],[18,1,1,58,59,[[494,1,1,58,59]]],[23,2,2,59,61,[[783,1,1,59,60],[796,1,1,60,61]]],[25,1,1,61,62,[[849,1,1,61,62]]]],[4696,4988,6181,6700,7487,8250,8314,9149,9237,9247,9256,9272,9280,9288,9297,9303,9310,9519,9525,9551,9750,9827,9869,9879,9883,9911,9914,9924,9931,9936,9940,9946,9951,9956,9961,9982,10118,10136,10144,10193,10207,10233,10918,11475,11621,11730,11754,11762,11790,11907,11926,11992,12001,12323,12373,12378,12402,12415,14117,19932,20291,21725]]],["string",[1,1,[[18,1,1,0,1,[[488,1,1,0,1]]]],[14061]]],["withs",[3,3,[[6,3,3,0,3,[[226,3,3,0,3]]]],[6956,6957,6958]]]]},{"k":"H3500","v":[["Jether",[8,7,[[6,1,1,0,1,[[218,1,1,0,1]]],[10,2,2,1,3,[[292,2,2,1,3]]],[12,5,4,3,7,[[339,3,2,3,5],[341,1,1,5,6],[344,1,1,6,7]]]],[6739,8775,8802,10323,10338,10402,10573]]]]},{"k":"H3501","v":[["Ithra",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8474]]]]},{"k":"H3502","v":[["*",[2,2,[[22,1,1,0,1,[[693,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[17967,20116]]],["abundance",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17967]]],["riches",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20116]]]]},{"k":"H3503","v":[["Jethro",[10,9,[[1,10,9,0,9,[[52,1,1,0,1],[53,2,1,1,2],[67,7,7,2,9]]]],[1580,1619,2000,2001,2004,2005,2008,2009,2011]]]]},{"k":"H3504","v":[["*",[10,9,[[20,10,9,0,9,[[659,1,1,0,1],[660,3,2,1,3],[661,1,1,3,4],[663,2,2,4,6],[665,1,1,6,7],[668,2,2,7,9]]]],[17318,17344,17346,17368,17406,17413,17441,17503,17504]]],["better",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17504]]],["excellency",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17441]]],["excelleth",[2,1,[[20,2,1,0,1,[[660,2,1,0,1]]]],[17346]]],["profit",[5,5,[[20,5,5,0,5,[[659,1,1,0,1],[660,1,1,1,2],[661,1,1,2,3],[663,2,2,3,5]]]],[17318,17344,17368,17406,17413]]],["profitable",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17503]]]]},{"k":"H3505","v":[["*",[5,3,[[9,2,1,0,1,[[289,2,1,0,1]]],[12,3,2,1,3,[[339,1,1,1,2],[348,2,1,2,3]]]],[8691,10359,10713]]],["Ithrite",[4,2,[[9,2,1,0,1,[[289,2,1,0,1]]],[12,2,1,1,2,[[348,2,1,1,2]]]],[8691,10713]]],["Ithrites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10359]]]]},{"k":"H3506","v":[["Ithran",[3,3,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,2,2,1,3,[[338,1,1,1,2],[344,1,1,2,3]]]],[1066,10293,10572]]]]},{"k":"H3507","v":[["Ithream",[2,2,[[9,1,1,0,1,[[269,1,1,0,1]]],[12,1,1,1,2,[[340,1,1,1,2]]]],[8086,10364]]]]},{"k":"H3508","v":[["caul",[11,11,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,9,9,2,11,[[92,3,3,2,5],[93,1,1,5,6],[96,1,1,6,7],[97,2,2,7,9],[98,2,2,9,11]]]],[2349,2358,2782,2788,2793,2804,2883,2933,2942,2963,2972]]]]},{"k":"H3509","v":[["Jetheth",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1080,10303]]]]},{"k":"H3510","v":[["*",[8,8,[[0,1,1,0,1,[[33,1,1,0,1]]],[11,1,1,1,2,[[315,1,1,1,2]]],[17,2,2,2,4,[[440,1,1,2,3],[449,1,1,3,4]]],[18,1,1,4,5,[[546,1,1,4,5]]],[19,1,1,5,6,[[641,1,1,5,6]]],[25,2,2,6,8,[[814,1,1,6,7],[829,1,1,7,8]]]],[1005,9595,12969,13203,14964,16785,20730,21181]]],["grieving",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21181]]],["mar",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9595]]],["pain",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13203]]],["sad",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20730]]],["sore",[2,2,[[0,1,1,0,1,[[33,1,1,0,1]]],[17,1,1,1,2,[[440,1,1,1,2]]]],[1005,12969]]],["sorrowful",[2,2,[[18,1,1,0,1,[[546,1,1,0,1]]],[19,1,1,1,2,[[641,1,1,1,2]]]],[14964,16785]]]]},{"k":"H3511","v":[["*",[6,6,[[17,2,2,0,2,[[437,1,1,0,1],[451,1,1,1,2]]],[18,1,1,2,3,[[516,1,1,2,3]]],[22,2,2,3,5,[[695,1,1,3,4],[743,1,1,4,5]]],[23,1,1,5,6,[[759,1,1,5,6]]]],[12904,13244,14514,17994,18911,19333]]],["+",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18911]]],["grief",[2,2,[[17,2,2,0,2,[[437,1,1,0,1],[451,1,1,1,2]]]],[12904,13244]]],["pain",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19333]]],["sorrow",[2,2,[[18,1,1,0,1,[[516,1,1,0,1]]],[22,1,1,1,2,[[695,1,1,1,2]]]],[14514,17994]]]]},{"k":"H3512","v":[["*",[3,3,[[18,1,1,0,1,[[586,1,1,0,1]]],[25,1,1,1,2,[[814,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[15771,20730,22066]]],["broken",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15771]]],["grieved",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22066]]],["sad",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20730]]]]},{"k":"H3513","v":[["*",[114,107,[[0,3,3,0,3,[[17,1,1,0,1],[33,1,1,1,2],[47,1,1,2,3]]],[1,10,10,3,13,[[54,1,1,3,4],[57,2,2,4,6],[58,2,2,6,8],[59,1,1,8,9],[63,3,3,9,12],[69,1,1,12,13]]],[2,1,1,13,14,[[99,1,1,13,14]]],[3,6,4,14,18,[[138,4,3,14,17],[140,2,1,17,18]]],[4,2,2,18,20,[[157,1,1,18,19],[180,1,1,19,20]]],[6,4,4,20,24,[[211,1,1,20,21],[219,1,1,21,22],[223,1,1,22,23],[230,1,1,23,24]]],[8,11,9,24,33,[[237,3,2,24,26],[240,2,2,26,28],[241,2,1,28,29],[244,1,1,29,30],[250,1,1,30,31],[257,1,1,31,32],[266,1,1,32,33]]],[9,7,7,33,40,[[272,2,2,33,35],[276,1,1,35,36],[279,1,1,36,37],[280,1,1,37,38],[289,2,2,38,40]]],[10,2,2,40,42,[[302,2,2,40,42]]],[11,1,1,42,43,[[326,1,1,42,43]]],[12,5,5,43,48,[[341,1,1,43,44],[347,1,1,44,45],[348,2,2,45,47],[356,1,1,47,48]]],[13,3,3,48,51,[[376,2,2,48,50],[391,1,1,50,51]]],[15,2,2,51,53,[[417,2,2,51,53]]],[17,4,4,53,57,[[441,1,1,53,54],[449,1,1,54,55],[458,1,1,55,56],[468,1,1,56,57]]],[18,11,11,57,68,[[492,1,1,57,58],[499,1,1,58,59],[509,1,1,59,60],[515,1,1,60,61],[527,2,2,61,63],[563,2,2,63,65],[564,1,1,65,66],[568,1,1,66,67],[626,1,1,67,68]]],[19,7,7,68,75,[[630,1,1,68,69],[631,1,1,69,70],[635,1,1,70,71],[639,1,1,71,72],[640,1,1,72,73],[641,1,1,73,74],[654,1,1,74,75]]],[22,20,19,75,94,[[681,1,1,75,76],[684,1,1,76,77],[687,1,1,77,78],[701,2,2,78,80],[702,2,2,80,82],[703,1,1,82,83],[704,1,1,83,84],[707,1,1,84,85],[721,3,3,85,88],[725,1,1,88,89],[727,1,1,89,90],[736,2,1,90,91],[737,1,1,91,92],[738,1,1,92,93],[744,1,1,93,94]]],[23,1,1,94,95,[[774,1,1,94,95]]],[24,2,2,95,97,[[797,1,1,95,96],[799,1,1,96,97]]],[25,3,3,97,100,[[828,1,1,97,98],[829,1,1,98,99],[840,1,1,99,100]]],[26,2,1,100,101,[[860,2,1,100,101]]],[33,3,2,101,103,[[902,3,2,101,103]]],[34,1,1,103,104,[[904,1,1,103,104]]],[36,1,1,104,105,[[909,1,1,104,105]]],[37,1,1,105,106,[[917,1,1,105,106]]],[38,1,1,106,107,[[925,1,1,106,107]]]],[444,999,1461,1641,1725,1742,1749,1776,1778,1893,1906,1907,2063,2980,4390,4392,4412,4457,5069,5669,6544,6763,6901,7088,7269,7270,7325,7330,7337,7397,7590,7801,8012,8177,8179,8243,8342,8382,8672,8676,9161,9165,9906,10394,10662,10694,10698,10910,11405,11409,11723,12397,12400,12981,13202,13421,13657,14091,14227,14359,14494,14683,14691,15293,15296,15304,15410,16393,16464,16498,16626,16728,16765,16803,17187,17712,17779,17830,18085,18086,18110,18115,18121,18145,18206,18509,18525,18528,18605,18641,18799,18801,18834,18927,19686,20318,20361,21146,21179,21461,22074,22722,22727,22754,22848,22973,23095]]],["+",[22,19,[[1,5,5,0,5,[[54,1,1,0,1],[57,2,2,1,3],[59,1,1,3,4],[69,1,1,4,5]]],[3,4,2,5,7,[[138,2,1,5,6],[140,2,1,6,7]]],[4,1,1,7,8,[[157,1,1,7,8]]],[8,3,2,8,10,[[237,1,1,8,9],[241,2,1,9,10]]],[9,1,1,10,11,[[276,1,1,10,11]]],[12,1,1,11,12,[[356,1,1,11,12]]],[13,2,2,12,14,[[376,2,2,12,14]]],[19,2,2,14,16,[[630,1,1,14,15],[639,1,1,15,16]]],[24,1,1,16,17,[[799,1,1,16,17]]],[25,1,1,17,18,[[828,1,1,17,18]]],[34,1,1,18,19,[[904,1,1,18,19]]]],[1641,1725,1742,1778,2063,4392,4457,5069,7269,7337,8243,10910,11405,11409,16464,16728,20361,21146,22754]]],["abounding",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16626]]],["afflict",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17830]]],["boast",[1,1,[[13,1,1,0,1,[[391,1,1,0,1]]]],[11723]]],["chargeable",[2,2,[[9,1,1,0,1,[[279,1,1,0,1]]],[15,1,1,1,2,[[417,1,1,1,2]]]],[8342,12397]]],["dim",[1,1,[[0,1,1,0,1,[[47,1,1,0,1]]]],[1461]]],["glorified",[6,6,[[2,1,1,0,1,[[99,1,1,0,1]]],[22,2,2,1,3,[[704,1,1,1,2],[744,1,1,2,3]]],[25,2,2,3,5,[[829,1,1,3,4],[840,1,1,4,5]]],[36,1,1,5,6,[[909,1,1,5,6]]]],[2980,18145,18927,21179,21461,22848]]],["glorifieth",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14691]]],["glorify",[7,7,[[18,4,4,0,4,[[499,1,1,0,1],[527,1,1,1,2],[563,2,2,2,4]]],[22,2,2,4,6,[[702,1,1,4,5],[703,1,1,5,6]]],[23,1,1,6,7,[[774,1,1,6,7]]]],[14227,14683,15293,15296,18110,18121,19686]]],["glorious",[4,4,[[4,1,1,0,1,[[180,1,1,0,1]]],[9,1,1,1,2,[[272,1,1,1,2]]],[22,2,2,2,4,[[727,1,1,2,3],[738,1,1,3,4]]]],[5669,8177,18641,18834]]],["glory",[1,1,[[11,1,1,0,1,[[326,1,1,0,1]]]],[9906]]],["grievous",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[444]]],["hardened",[2,2,[[1,2,2,0,2,[[58,2,2,0,2]]]],[1749,1776]]],["heavier",[2,2,[[17,2,2,0,2,[[441,1,1,0,1],[458,1,1,1,2]]]],[12981,13421]]],["heavy",[12,12,[[8,2,2,0,2,[[240,2,2,0,2]]],[9,1,1,2,3,[[280,1,1,2,3]]],[10,2,2,3,5,[[302,2,2,3,5]]],[15,1,1,5,6,[[417,1,1,5,6]]],[17,1,1,6,7,[[468,1,1,6,7]]],[18,2,2,7,9,[[509,1,1,7,8],[515,1,1,8,9]]],[22,3,3,9,12,[[684,1,1,9,10],[702,1,1,10,11],[737,1,1,11,12]]]],[7325,7330,8382,9161,9165,12400,13657,14359,14494,17779,18115,18801]]],["honour",[17,15,[[1,2,2,0,2,[[63,2,2,0,2]]],[3,1,1,2,3,[[138,1,1,2,3]]],[6,2,2,3,5,[[219,1,1,3,4],[223,1,1,4,5]]],[8,3,2,5,7,[[237,2,1,5,6],[250,1,1,6,7]]],[9,1,1,7,8,[[272,1,1,7,8]]],[17,1,1,8,9,[[449,1,1,8,9]]],[18,1,1,9,10,[[568,1,1,9,10]]],[19,1,1,10,11,[[631,1,1,10,11]]],[22,3,3,11,14,[[707,1,1,11,12],[721,1,1,12,13],[736,1,1,13,14]]],[26,2,1,14,15,[[860,2,1,14,15]]]],[1906,1907,4412,6763,6901,7270,7590,8179,13202,15410,16498,18206,18525,18799,22074]]],["honourable",[14,14,[[0,1,1,0,1,[[33,1,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]],[8,2,2,2,4,[[244,1,1,2,3],[257,1,1,3,4]]],[9,2,2,4,6,[[289,2,2,4,6]]],[12,3,3,6,9,[[341,1,1,6,7],[348,2,2,7,9]]],[22,5,5,9,14,[[681,1,1,9,10],[701,2,2,10,12],[721,1,1,12,13],[736,1,1,13,14]]]],[999,4390,7397,7801,8672,8676,10394,10694,10698,17712,18085,18086,18509,18799]]],["honoured",[5,5,[[1,1,1,0,1,[[63,1,1,0,1]]],[19,2,2,1,3,[[640,1,1,1,2],[654,1,1,2,3]]],[22,1,1,3,4,[[721,1,1,3,4]]],[24,1,1,4,5,[[797,1,1,4,5]]]],[1893,16765,17187,18528,20318]]],["honoureth",[3,3,[[18,1,1,0,1,[[492,1,1,0,1]]],[19,1,1,1,2,[[641,1,1,1,2]]],[38,1,1,2,3,[[925,1,1,2,3]]]],[14091,16803,23095]]],["laid",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18605]]],["many",[2,1,[[33,2,1,0,1,[[902,2,1,0,1]]]],[22727]]],["men",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22722]]],["nobles",[1,1,[[18,1,1,0,1,[[626,1,1,0,1]]]],[16393]]],["prevailed",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6544]]],["sore",[3,3,[[6,1,1,0,1,[[230,1,1,0,1]]],[8,1,1,1,2,[[266,1,1,1,2]]],[12,1,1,2,3,[[347,1,1,2,3]]]],[7088,8012,10662]]],["stopped",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22973]]],["things",[1,1,[[18,1,1,0,1,[[564,1,1,0,1]]]],[15304]]]]},{"k":"H3514","v":[["*",[4,4,[[19,1,1,0,1,[[654,1,1,0,1]]],[22,2,2,1,3,[[699,1,1,1,2],[708,1,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[17172,18050,18244,22715]]],["grievousness",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18050]]],["heavy",[2,2,[[19,1,1,0,1,[[654,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]]],[17172,18244]]],["number",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22715]]]]},{"k":"H3515","v":[["*",[40,39,[[0,9,9,0,9,[[11,1,1,0,1],[12,1,1,1,2],[40,1,1,2,3],[42,1,1,3,4],[46,2,2,4,6],[49,3,3,6,9]]],[1,12,11,9,20,[[53,2,1,9,10],[56,1,1,10,11],[57,1,1,11,12],[58,3,3,12,15],[59,1,1,15,16],[61,1,1,16,17],[66,1,1,17,18],[67,1,1,18,19],[68,1,1,19,20]]],[3,2,2,20,22,[[127,1,1,20,21],[136,1,1,21,22]]],[8,1,1,22,23,[[239,1,1,22,23]]],[10,4,4,23,27,[[293,1,1,23,24],[300,1,1,24,25],[302,2,2,25,27]]],[11,2,2,27,29,[[318,1,1,27,28],[330,1,1,28,29]]],[13,3,3,29,32,[[375,1,1,29,30],[376,2,2,30,32]]],[18,1,1,32,33,[[515,1,1,32,33]]],[19,1,1,33,34,[[654,1,1,33,34]]],[22,3,3,34,37,[[679,1,1,34,35],[710,1,1,35,36],[714,1,1,36,37]]],[25,2,2,37,39,[[804,2,2,37,39]]]],[308,320,1226,1291,1424,1433,1515,1516,1517,1611,1699,1734,1745,1760,1766,1791,1854,1995,2017,2042,4038,4331,7315,8825,9081,9155,9162,9688,10041,11365,11399,11406,14494,17172,17658,18261,18332,20507,20508]]],["+",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8825]]],["great",[7,7,[[0,1,1,0,1,[[49,1,1,0,1]]],[10,1,1,1,2,[[300,1,1,1,2]]],[11,2,2,2,4,[[318,1,1,2,3],[330,1,1,3,4]]],[13,1,1,4,5,[[375,1,1,4,5]]],[22,2,2,5,7,[[710,1,1,5,6],[714,1,1,6,7]]]],[1515,9081,9688,10041,11365,18261,18332]]],["grievous",[8,8,[[0,3,3,0,3,[[11,1,1,0,1],[40,1,1,1,2],[49,1,1,2,3]]],[1,5,5,3,8,[[57,1,1,3,4],[58,3,3,4,7],[59,1,1,7,8]]]],[308,1226,1517,1734,1745,1760,1766,1791]]],["hard",[2,2,[[25,2,2,0,2,[[804,2,2,0,2]]]],[20507,20508]]],["hardened",[1,1,[[1,1,1,0,1,[[56,1,1,0,1]]]],[1699]]],["heavier",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17172]]],["heavy",[9,9,[[1,2,2,0,2,[[66,1,1,0,1],[67,1,1,1,2]]],[3,1,1,2,3,[[127,1,1,2,3]]],[8,1,1,3,4,[[239,1,1,3,4]]],[10,2,2,4,6,[[302,2,2,4,6]]],[13,2,2,6,8,[[376,2,2,6,8]]],[18,1,1,8,9,[[515,1,1,8,9]]]],[1995,2017,4038,7315,9155,9162,11399,11406,14494]]],["laden",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17658]]],["much",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[136,1,1,1,2]]]],[1854,4331]]],["rich",[1,1,[[0,1,1,0,1,[[12,1,1,0,1]]]],[320]]],["slow",[2,1,[[1,2,1,0,1,[[53,2,1,0,1]]]],[1611]]],["sore",[4,4,[[0,4,4,0,4,[[42,1,1,0,1],[46,2,2,1,3],[49,1,1,3,4]]]],[1291,1424,1433,1516]]],["thick",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2042]]]]},{"k":"H3516","v":[["liver",[14,14,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,9,9,2,11,[[92,3,3,2,5],[93,1,1,5,6],[96,1,1,6,7],[97,2,2,7,9],[98,2,2,9,11]]],[19,1,1,11,12,[[634,1,1,11,12]]],[24,1,1,12,13,[[798,1,1,12,13]]],[25,1,1,13,14,[[822,1,1,13,14]]]],[2349,2358,2782,2788,2793,2804,2883,2933,2942,2963,2972,16598,20343,20965]]]]},{"k":"H3517","v":[["heavily",[1,1,[[1,1,1,0,1,[[63,1,1,0,1]]]],[1914]]]]},{"k":"H3518","v":[["*",[24,24,[[2,2,2,0,2,[[95,2,2,0,2]]],[8,1,1,2,3,[[238,1,1,2,3]]],[9,2,2,3,5,[[280,1,1,3,4],[287,1,1,4,5]]],[11,1,1,5,6,[[334,1,1,5,6]]],[13,2,2,6,8,[[395,1,1,6,7],[400,1,1,7,8]]],[19,2,2,8,10,[[653,1,1,8,9],[658,1,1,9,10]]],[21,1,1,10,11,[[678,1,1,10,11]]],[22,5,5,11,16,[[679,1,1,11,12],[712,1,1,12,13],[720,1,1,13,14],[721,1,1,14,15],[744,1,1,15,16]]],[23,4,4,16,20,[[748,1,1,16,17],[751,1,1,17,18],[761,1,1,18,19],[765,1,1,19,20]]],[25,3,3,20,23,[[821,2,2,20,22],[833,1,1,22,23]]],[29,1,1,23,24,[[883,1,1,23,24]]]],[2861,2862,7279,8363,8597,10162,11798,11958,17161,17302,17647,17685,18313,18483,18522,18946,19031,19139,19384,19452,20942,20943,21255,22429]]],["+",[3,3,[[9,1,1,0,1,[[280,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]],[19,1,1,2,3,[[658,1,1,2,3]]]],[8363,11798,17302]]],["out",[5,5,[[2,2,2,0,2,[[95,2,2,0,2]]],[8,1,1,2,3,[[238,1,1,2,3]]],[19,1,1,3,4,[[653,1,1,3,4]]],[25,1,1,4,5,[[833,1,1,4,5]]]],[2861,2862,7279,17161,21255]]],["quench",[7,7,[[9,1,1,0,1,[[287,1,1,0,1]]],[21,1,1,1,2,[[678,1,1,1,2]]],[22,2,2,2,4,[[679,1,1,2,3],[720,1,1,3,4]]],[23,2,2,4,6,[[748,1,1,4,5],[765,1,1,5,6]]],[29,1,1,6,7,[[883,1,1,6,7]]]],[8597,17647,17685,18483,19031,19452,22429]]],["quenched",[9,9,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]],[22,3,3,2,5,[[712,1,1,2,3],[721,1,1,3,4],[744,1,1,4,5]]],[23,2,2,5,7,[[751,1,1,5,6],[761,1,1,6,7]]],[25,2,2,7,9,[[821,2,2,7,9]]]],[10162,11958,18313,18522,18946,19139,19384,20942,20943]]]]},{"k":"H3519","v":[["*",[200,189,[[0,3,3,0,3,[[30,1,1,0,1],[44,1,1,1,2],[48,1,1,2,3]]],[1,11,11,3,14,[[65,2,2,3,5],[73,2,2,5,7],[77,2,2,7,9],[78,1,1,9,10],[82,2,2,10,12],[89,2,2,12,14]]],[2,2,2,14,16,[[98,2,2,14,16]]],[3,7,7,16,23,[[130,3,3,16,19],[132,2,2,19,21],[136,1,1,21,22],[140,1,1,22,23]]],[4,1,1,23,24,[[157,1,1,23,24]]],[5,1,1,24,25,[[193,1,1,24,25]]],[8,4,4,25,29,[[237,1,1,25,26],[239,2,2,26,28],[241,1,1,28,29]]],[10,2,2,29,31,[[293,1,1,29,30],[298,1,1,30,31]]],[12,6,6,31,37,[[353,3,3,31,34],[354,1,1,34,35],[366,2,2,35,37]]],[13,11,11,37,48,[[367,2,2,37,39],[371,1,1,39,40],[373,3,3,40,43],[383,1,1,43,44],[384,1,1,44,45],[392,1,1,45,46],[398,2,2,46,48]]],[15,1,1,48,49,[[421,1,1,48,49]]],[16,2,2,49,51,[[426,1,1,49,50],[430,1,1,50,51]]],[17,2,2,51,53,[[454,1,1,51,52],[464,1,1,52,53]]],[18,51,48,53,101,[[480,1,1,53,54],[481,1,1,54,55],[484,1,1,55,56],[485,1,1,56,57],[493,1,1,57,58],[496,1,1,58,59],[498,1,1,59,60],[501,5,4,60,64],[503,1,1,64,65],[506,4,4,65,69],[507,1,1,69,70],[526,2,2,70,72],[534,3,3,72,75],[539,1,1,75,76],[540,1,1,76,77],[543,2,1,77,78],[549,2,1,78,79],[550,1,1,79,80],[556,1,1,80,81],[561,1,1,81,82],[562,1,1,82,83],[573,3,3,83,86],[574,1,1,86,87],[579,2,2,87,89],[581,1,1,89,90],[583,1,1,90,91],[585,2,2,91,93],[589,1,1,93,94],[590,1,1,94,95],[592,1,1,95,96],[615,1,1,96,97],[622,3,3,97,100],[626,1,1,100,101]]],[19,16,14,101,115,[[630,2,2,101,103],[635,1,1,103,104],[638,1,1,104,105],[642,1,1,105,106],[645,1,1,106,107],[647,1,1,107,108],[648,1,1,108,109],[649,1,1,109,110],[652,4,2,110,112],[653,2,2,112,114],[656,1,1,114,115]]],[20,2,2,115,117,[[664,1,1,115,116],[668,1,1,116,117]]],[22,38,36,117,153,[[681,1,1,117,118],[682,2,2,118,120],[683,1,1,120,121],[684,1,1,121,122],[686,1,1,122,123],[688,3,3,123,126],[689,1,1,126,127],[692,1,1,127,128],[694,1,1,128,129],[695,2,2,129,131],[699,1,1,131,132],[700,3,3,132,135],[702,1,1,135,136],[713,2,1,136,137],[718,1,1,137,138],[720,2,2,138,140],[721,1,1,140,141],[726,1,1,141,142],[736,1,1,142,143],[737,1,1,143,144],[738,3,3,144,147],[739,1,1,147,148],[740,1,1,148,149],[744,5,4,149,153]]],[23,5,5,153,158,[[746,1,1,153,154],[757,1,1,154,155],[758,1,1,155,156],[761,1,1,156,157],[792,1,1,157,158]]],[25,19,16,158,174,[[802,1,1,158,159],[804,3,2,159,161],[809,1,1,161,162],[810,1,1,162,163],[811,4,3,163,166],[812,2,2,166,168],[832,1,1,168,169],[840,1,1,169,170],[844,4,3,170,173],[845,1,1,173,174]]],[26,1,1,174,175,[[860,1,1,174,175]]],[27,3,3,175,178,[[865,1,1,175,176],[870,1,1,176,177],[871,1,1,177,178]]],[32,1,1,178,179,[[893,1,1,178,179]]],[33,1,1,179,180,[[901,1,1,179,180]]],[34,3,2,180,182,[[904,3,2,180,182]]],[36,3,3,182,185,[[910,3,3,182,185]]],[37,2,2,185,187,[[912,2,2,185,187]]],[38,2,2,187,189,[[925,1,1,187,188],[926,1,1,188,189]]]],[874,1371,1479,1954,1957,2193,2194,2295,2333,2379,2491,2495,2741,2742,2959,2976,4118,4129,4130,4213,4236,4317,4457,5077,5995,7248,7318,7319,7336,8829,8996,10844,10848,10849,10881,11176,11192,11205,11206,11282,11325,11326,11327,11528,11543,11750,11902,11908,12516,12706,12790,13306,13552,13960,13967,14000,14017,14101,14169,14196,14248,14249,14250,14251,14281,14309,14310,14311,14317,14331,14664,14665,14773,14776,14779,14834,14841,14875,15019,15044,15194,15270,15280,15468,15472,15473,15484,15536,15537,15602,15671,15743,15747,15812,15817,15831,16236,16325,16331,16332,16390,16471,16490,16620,16704,16840,16913,16957,17005,17019,17115,17140,17142,17149,17247,17419,17494,17715,17735,17738,17752,17772,17814,17853,17866,17868,17894,17946,17983,17986,17987,18051,18070,18075,18076,18118,18322,18425,18488,18492,18512,18625,18794,18819,18822,18823,18834,18849,18856,18933,18934,18940,18941,18976,19282,19314,19369,20098,20492,20514,20525,20608,20625,20637,20651,20652,20677,20678,21248,21469,21574,21576,21577,21603,22075,22140,22219,22230,22594,22708,22762,22764,22858,22862,22864,22904,22907,23095,23105]]],["+",[5,5,[[3,1,1,0,1,[[140,1,1,0,1]]],[20,1,1,1,2,[[668,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]],[25,1,1,3,4,[[844,1,1,3,4]]],[34,1,1,4,5,[[904,1,1,4,5]]]],[4457,17494,20098,21574,22764]]],["glorious",[10,10,[[15,1,1,0,1,[[421,1,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]],[18,4,4,2,6,[[543,1,1,2,3],[549,1,1,3,4],[622,2,2,4,6]]],[22,3,3,6,9,[[682,1,1,6,7],[689,1,1,7,8],[700,1,1,8,9]]],[23,1,1,9,10,[[761,1,1,9,10]]]],[12516,12706,14875,15019,16325,16332,17735,17894,18075,19369]]],["gloriously",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18118]]],["glory",[153,147,[[0,2,2,0,2,[[30,1,1,0,1],[44,1,1,1,2]]],[1,11,11,2,13,[[65,2,2,2,4],[73,2,2,4,6],[77,2,2,6,8],[78,1,1,8,9],[82,2,2,9,11],[89,2,2,11,13]]],[2,2,2,13,15,[[98,2,2,13,15]]],[3,6,6,15,21,[[130,3,3,15,18],[132,2,2,18,20],[136,1,1,20,21]]],[4,1,1,21,22,[[157,1,1,21,22]]],[5,1,1,22,23,[[193,1,1,22,23]]],[8,4,4,23,27,[[237,1,1,23,24],[239,2,2,24,26],[241,1,1,26,27]]],[10,1,1,27,28,[[298,1,1,27,28]]],[12,3,3,28,31,[[353,3,3,28,31]]],[13,4,4,31,35,[[371,1,1,31,32],[373,3,3,32,35]]],[16,1,1,35,36,[[430,1,1,35,36]]],[17,2,2,36,38,[[454,1,1,36,37],[464,1,1,37,38]]],[18,43,42,38,80,[[480,1,1,38,39],[481,1,1,39,40],[485,1,1,40,41],[493,1,1,41,42],[496,1,1,42,43],[498,1,1,43,44],[501,5,4,44,48],[506,4,4,48,52],[507,1,1,52,53],[526,2,2,53,55],[534,3,3,55,58],[539,1,1,58,59],[540,1,1,59,60],[549,1,1,60,61],[550,1,1,61,62],[556,1,1,62,63],[561,1,1,63,64],[562,1,1,64,65],[573,3,3,65,68],[574,1,1,68,69],[579,2,2,69,71],[581,1,1,71,72],[583,1,1,72,73],[585,2,2,73,75],[590,1,1,75,76],[592,1,1,76,77],[615,1,1,77,78],[622,1,1,78,79],[626,1,1,79,80]]],[19,4,3,80,83,[[630,1,1,80,81],[652,3,2,81,83]]],[22,33,31,83,114,[[681,1,1,83,84],[682,1,1,84,85],[684,1,1,85,86],[686,1,1,86,87],[688,3,3,87,90],[692,1,1,90,91],[694,1,1,91,92],[695,2,2,92,94],[699,1,1,94,95],[700,2,2,95,97],[713,2,1,97,98],[718,1,1,98,99],[720,2,2,99,101],[721,1,1,101,102],[726,1,1,102,103],[736,1,1,103,104],[737,1,1,104,105],[738,3,3,105,108],[739,1,1,108,109],[740,1,1,109,110],[744,5,4,110,114]]],[23,3,3,114,117,[[746,1,1,114,115],[757,1,1,115,116],[758,1,1,116,117]]],[25,18,16,117,133,[[802,1,1,117,118],[804,3,2,118,120],[809,1,1,120,121],[810,1,1,121,122],[811,4,3,122,125],[812,2,2,125,127],[832,1,1,127,128],[840,1,1,128,129],[844,3,3,129,132],[845,1,1,132,133]]],[26,1,1,133,134,[[860,1,1,133,134]]],[27,3,3,134,137,[[865,1,1,134,135],[870,1,1,135,136],[871,1,1,136,137]]],[32,1,1,137,138,[[893,1,1,137,138]]],[33,1,1,138,139,[[901,1,1,138,139]]],[34,2,2,139,141,[[904,2,2,139,141]]],[36,3,3,141,144,[[910,3,3,141,144]]],[37,2,2,144,146,[[912,2,2,144,146]]],[38,1,1,146,147,[[926,1,1,146,147]]]],[874,1371,1954,1957,2193,2194,2295,2333,2379,2491,2495,2741,2742,2959,2976,4118,4129,4130,4213,4236,4317,5077,5995,7248,7318,7319,7336,8996,10844,10848,10849,11282,11325,11326,11327,12790,13306,13552,13960,13967,14017,14101,14169,14196,14248,14249,14250,14251,14309,14310,14311,14317,14331,14664,14665,14773,14776,14779,14834,14841,15019,15044,15194,15270,15280,15468,15472,15473,15484,15536,15537,15602,15671,15743,15747,15817,15831,16236,16331,16390,16490,17115,17140,17715,17738,17772,17814,17853,17866,17868,17946,17983,17986,17987,18051,18070,18076,18322,18425,18488,18492,18512,18625,18794,18819,18822,18823,18834,18849,18856,18933,18934,18940,18941,18976,19282,19314,20492,20514,20525,20608,20625,20637,20651,20652,20677,20678,21248,21469,21574,21576,21577,21603,22075,22140,22219,22230,22594,22708,22762,22764,22858,22862,22864,22904,22907,23105]]],["honour",[30,30,[[0,1,1,0,1,[[48,1,1,0,1]]],[10,1,1,1,2,[[293,1,1,1,2]]],[12,3,3,2,5,[[354,1,1,2,3],[366,2,2,3,5]]],[13,7,7,5,12,[[367,2,2,5,7],[383,1,1,7,8],[384,1,1,8,9],[392,1,1,9,10],[398,2,2,10,12]]],[18,4,4,12,16,[[484,1,1,12,13],[503,1,1,13,14],[543,1,1,14,15],[589,1,1,15,16]]],[19,12,12,16,28,[[630,1,1,16,17],[635,1,1,17,18],[638,1,1,18,19],[642,1,1,19,20],[645,1,1,20,21],[647,1,1,21,22],[648,1,1,22,23],[649,1,1,23,24],[652,1,1,24,25],[653,2,2,25,27],[656,1,1,27,28]]],[20,1,1,28,29,[[664,1,1,28,29]]],[38,1,1,29,30,[[925,1,1,29,30]]]],[1479,8829,10881,11176,11192,11205,11206,11528,11543,11750,11902,11908,14000,14281,14875,15812,16471,16620,16704,16840,16913,16957,17005,17019,17115,17142,17149,17247,17419,23095]]],["honourable",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17752]]]]},{"k":"H3520","v":[["*",[3,3,[[6,1,1,0,1,[[228,1,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]],[25,1,1,2,3,[[824,1,1,2,3]]]],[7014,14610,21048]]],["carriage",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7014]]],["glorious",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14610]]],["stately",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21048]]]]},{"k":"H3521","v":[["Cabul",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]]],[6348,9064]]]]},{"k":"H3522","v":[["Cabbon",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6242]]]]},{"k":"H3523","v":[["pillow",[2,2,[[8,2,2,0,2,[[254,2,2,0,2]]]],[7719,7722]]]]},{"k":"H3524","v":[["*",[10,9,[[17,7,6,0,6,[[443,1,1,0,1],[450,1,1,1,2],[466,1,1,2,3],[469,2,2,3,5],[471,2,1,5,6]]],[22,3,3,6,9,[[694,1,1,6,7],[695,1,1,7,8],[706,1,1,8,9]]]],[13031,13213,13613,13700,13707,13741,17983,17995,18166]]],["+",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]]],[13213,17983]]],["men",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13707]]],["mighty",[4,3,[[17,2,1,0,1,[[471,2,1,0,1]]],[22,2,2,1,3,[[695,1,1,1,2],[706,1,1,2,3]]]],[13741,17995,18166]]],["most",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13700]]],["much",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13613]]],["strong",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13031]]]]},{"k":"H3525","v":[["fetters",[2,2,[[18,2,2,0,2,[[582,1,1,0,1],[626,1,1,1,2]]]],[15624,16393]]]]},{"k":"H3526","v":[["*",[51,48,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[68,2,2,1,3]]],[2,31,28,3,31,[[95,1,1,3,4],[100,4,3,4,7],[102,7,6,7,13],[103,4,3,13,16],[104,11,11,16,27],[105,2,2,27,29],[106,2,2,29,31]]],[3,8,8,31,39,[[124,2,2,31,33],[135,5,5,33,38],[147,1,1,38,39]]],[9,1,1,39,40,[[285,1,1,39,40]]],[11,1,1,40,41,[[330,1,1,40,41]]],[18,2,2,41,43,[[528,2,2,41,43]]],[22,2,2,43,45,[[685,1,1,43,44],[714,1,1,44,45]]],[23,2,2,45,47,[[746,1,1,45,46],[748,1,1,46,47]]],[38,1,1,47,48,[[927,1,1,47,48]]]],[1484,2036,2040,2876,3022,3025,3037,3058,3086,3106,3107,3108,3110,3119,3120,3158,3173,3174,3175,3176,3178,3179,3181,3185,3189,3190,3195,3227,3229,3250,3251,3946,3960,4296,4297,4299,4308,4310,4688,8535,10041,14693,14698,17785,18332,18987,19041,23122]]],["+",[5,4,[[2,4,3,0,3,[[103,4,3,0,3]]],[3,1,1,3,4,[[135,1,1,3,4]]]],[3119,3120,3158,4299]]],["Wash",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14693]]],["fuller's",[3,3,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,2,2,1,3,[[685,1,1,1,2],[714,1,1,2,3]]]],[10041,17785,18332]]],["fullers'",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23122]]],["wash",[33,32,[[1,1,1,0,1,[[68,1,1,0,1]]],[2,23,22,1,23,[[95,1,1,1,2],[100,4,3,2,5],[102,4,4,5,9],[104,10,10,9,19],[105,2,2,19,21],[106,2,2,21,23]]],[3,6,6,23,29,[[124,1,1,23,24],[135,4,4,24,28],[147,1,1,28,29]]],[18,1,1,29,30,[[528,1,1,29,30]]],[23,2,2,30,32,[[746,1,1,30,31],[748,1,1,31,32]]]],[2036,2876,3022,3025,3037,3058,3086,3106,3110,3173,3174,3175,3176,3178,3179,3181,3189,3190,3195,3227,3229,3250,3251,3946,4296,4297,4308,4310,4688,14698,18987,19041]]],["washed",[7,7,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,1,1,1,2,[[68,1,1,1,2]]],[2,3,3,2,5,[[102,2,2,2,4],[104,1,1,4,5]]],[3,1,1,5,6,[[124,1,1,5,6]]],[9,1,1,6,7,[[285,1,1,6,7]]]],[1484,2040,3107,3110,3185,3960,8535]]],["washing",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3108]]]]},{"k":"H3527","v":[["multiplieth",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13736]]]]},{"k":"H3528","v":[["*",[9,8,[[20,9,8,0,8,[[659,1,1,0,1],[660,2,2,1,3],[661,2,1,3,4],[662,1,1,4,5],[664,1,1,5,6],[667,2,2,6,8]]]],[17325,17345,17349,17374,17383,17427,17481,17482]]],["+",[2,2,[[20,2,2,0,2,[[660,1,1,0,1],[662,1,1,1,2]]]],[17349,17383]]],["already",[4,4,[[20,4,4,0,4,[[659,1,1,0,1],[660,1,1,1,2],[661,1,1,2,3],[664,1,1,3,4]]]],[17325,17345,17374,17427]]],["now",[3,3,[[20,3,3,0,3,[[661,1,1,0,1],[667,2,2,1,3]]]],[17374,17481,17482]]]]},{"k":"H3529","v":[["Chebar",[8,8,[[25,8,8,0,8,[[802,2,2,0,2],[804,2,2,2,4],[811,3,3,4,7],[844,1,1,7,8]]]],[20465,20467,20517,20525,20648,20653,20655,21575]]]]},{"k":"H3530","v":[["*",[3,3,[[0,2,2,0,2,[[34,1,1,0,1],[47,1,1,1,2]]],[11,1,1,2,3,[[317,1,1,2,3]]]],[1027,1458,9666]]],["+",[2,2,[[0,1,1,0,1,[[34,1,1,0,1]]],[11,1,1,1,2,[[317,1,1,1,2]]]],[1027,9666]]],["little",[1,1,[[0,1,1,0,1,[[47,1,1,0,1]]]],[1458]]]]},{"k":"H3531","v":[["sieve",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22504]]]]},{"k":"H3532","v":[["*",[107,100,[[1,6,5,0,5,[[61,1,1,0,1],[78,5,4,1,5]]],[2,13,13,5,18,[[93,1,1,5,6],[98,1,1,6,7],[101,1,1,7,8],[103,6,6,8,14],[112,4,4,14,18]]],[3,68,62,18,80,[[122,2,2,18,20],[123,26,26,20,46],[131,2,2,46,48],[144,15,12,48,60],[145,23,20,60,80]]],[12,1,1,80,81,[[366,1,1,80,81]]],[13,4,4,81,85,[[395,3,3,81,84],[401,1,1,84,85]]],[14,1,1,85,86,[[410,1,1,85,86]]],[17,1,1,86,87,[[466,1,1,86,87]]],[19,1,1,87,88,[[654,1,1,87,88]]],[22,3,3,88,91,[[679,1,1,88,89],[683,1,1,89,90],[689,1,1,90,91]]],[23,1,1,91,92,[[755,1,1,91,92]]],[25,7,7,92,99,[[847,7,7,92,99]]],[27,1,1,99,100,[[865,1,1,99,100]]]],[1821,2374,2375,2376,2377,2827,2956,3050,3121,3123,3124,3132,3135,3136,3414,3420,3421,3422,3835,3837,3865,3867,3871,3873,3877,3879,3883,3885,3889,3891,3895,3897,3901,3903,3907,3909,3913,3915,3919,3921,3925,3927,3931,3933,3937,3938,4158,4164,4580,4581,4584,4585,4586,4588,4590,4591,4596,4598,4604,4606,4610,4612,4616,4618,4621,4623,4625,4626,4628,4629,4631,4632,4634,4635,4637,4638,4640,4641,4644,4645,11185,11812,11813,11823,11973,12236,13608,17195,17665,17756,17890,19245,21659,21660,21661,21662,21666,21668,21670,22149]]],["+",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4164]]],["lamb",[44,42,[[1,4,3,0,3,[[78,4,3,0,3]]],[2,9,9,3,12,[[93,1,1,3,4],[98,1,1,4,5],[101,1,1,5,6],[103,5,5,6,11],[112,1,1,11,12]]],[3,26,25,12,37,[[122,2,2,12,14],[123,12,12,14,26],[131,1,1,26,27],[144,8,7,27,34],[145,3,3,34,37]]],[22,1,1,37,38,[[689,1,1,37,38]]],[23,1,1,38,39,[[755,1,1,38,39]]],[25,2,2,39,41,[[847,2,2,39,41]]],[27,1,1,41,42,[[865,1,1,41,42]]]],[2375,2376,2377,2827,2956,3050,3123,3124,3132,3135,3136,3414,3835,3837,3865,3871,3877,3883,3889,3895,3901,3907,3913,3919,3925,3931,4158,4581,4584,4585,4590,4591,4598,4606,4612,4618,4623,17890,19245,21668,21670,22149]]],["lambs",[60,60,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,4,4,1,5,[[103,1,1,1,2],[112,3,3,2,5]]],[3,41,41,5,46,[[123,14,14,5,19],[144,7,7,19,26],[145,20,20,26,46]]],[12,1,1,46,47,[[366,1,1,46,47]]],[13,4,4,47,51,[[395,3,3,47,50],[401,1,1,50,51]]],[14,1,1,51,52,[[410,1,1,51,52]]],[19,1,1,52,53,[[654,1,1,52,53]]],[22,2,2,53,55,[[679,1,1,53,54],[683,1,1,54,55]]],[25,5,5,55,60,[[847,5,5,55,60]]]],[2374,3121,3420,3421,3422,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3937,3938,4580,4586,4588,4596,4598,4604,4606,4610,4612,4616,4618,4621,4623,4625,4626,4628,4629,4631,4632,4634,4635,4637,4638,4640,4641,4644,4645,11185,11812,11813,11823,11973,12236,17195,17665,17756,21659,21660,21661,21662,21666]]],["sheep",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]]],[1821,13608]]]]},{"k":"H3533","v":[["*",[14,13,[[0,1,1,0,1,[[0,1,1,0,1]]],[3,2,2,1,3,[[148,2,2,1,3]]],[5,1,1,3,4,[[204,1,1,3,4]]],[9,1,1,4,5,[[274,1,1,4,5]]],[12,1,1,5,6,[[359,1,1,5,6]]],[13,1,1,6,7,[[394,1,1,6,7]]],[15,2,1,7,8,[[417,2,1,7,8]]],[16,1,1,8,9,[[432,1,1,8,9]]],[23,2,2,9,11,[[778,2,2,9,11]]],[32,1,1,11,12,[[899,1,1,11,12]]],[37,1,1,12,13,[[919,1,1,12,13]]]],[27,4740,4747,6294,8220,10982,11774,12387,12815,19812,19817,22683,23014]]],["+",[3,3,[[15,1,1,0,1,[[417,1,1,0,1]]],[16,1,1,1,2,[[432,1,1,1,2]]],[23,1,1,2,3,[[778,1,1,2,3]]]],[12387,12815,19817]]],["bondage",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12387]]],["subdue",[3,3,[[0,1,1,0,1,[[0,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]],[37,1,1,2,3,[[919,1,1,2,3]]]],[27,22683,23014]]],["subdued",[5,5,[[3,2,2,0,2,[[148,2,2,0,2]]],[5,1,1,2,3,[[204,1,1,2,3]]],[9,1,1,3,4,[[274,1,1,3,4]]],[12,1,1,4,5,[[359,1,1,4,5]]]],[4740,4747,6294,8220,10982]]],["subjection",[1,1,[[23,1,1,0,1,[[778,1,1,0,1]]]],[19812]]],["under",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11774]]]]},{"k":"H3534","v":[["footstool",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11382]]]]},{"k":"H3535","v":[["*",[8,8,[[0,3,3,0,3,[[20,3,3,0,3]]],[2,1,1,3,4,[[103,1,1,3,4]]],[3,1,1,4,5,[[122,1,1,4,5]]],[9,3,3,5,8,[[278,3,3,5,8]]]],[541,542,543,3121,3837,8289,8290,8292]]],["lamb",[5,5,[[2,1,1,0,1,[[103,1,1,0,1]]],[3,1,1,1,2,[[122,1,1,1,2]]],[9,3,3,2,5,[[278,3,3,2,5]]]],[3121,3837,8289,8290,8292]]],["lambs",[3,3,[[0,3,3,0,3,[[20,3,3,0,3]]]],[541,542,543]]]]},{"k":"H3536","v":[["furnace",[4,4,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,3,3,1,4,[[58,2,2,1,3],[68,1,1,3,4]]]],[485,1750,1752,2044]]]]},{"k":"H3537","v":[["*",[18,17,[[0,9,9,0,9,[[23,9,9,0,9]]],[6,4,3,9,12,[[217,4,3,9,12]]],[10,4,4,12,16,[[307,3,3,12,15],[308,1,1,15,16]]],[20,1,1,16,17,[[670,1,1,16,17]]]],[605,606,607,608,609,611,634,636,637,6710,6713,6714,9329,9331,9333,9374,17529]]],["+",[2,2,[[0,2,2,0,2,[[23,2,2,0,2]]]],[608,634]]],["barrel",[3,3,[[10,3,3,0,3,[[307,3,3,0,3]]]],[9329,9331,9333]]],["barrels",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9374]]],["pitcher",[8,8,[[0,7,7,0,7,[[23,7,7,0,7]]],[20,1,1,7,8,[[670,1,1,7,8]]]],[605,606,607,609,611,636,637,17529]]],["pitchers",[4,3,[[6,4,3,0,3,[[217,4,3,0,3]]]],[6710,6713,6714]]]]},{"k":"H3538","v":[["lying",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21767]]]]},{"k":"H3539","v":[["*",[2,2,[[22,1,1,0,1,[[732,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[18735,21137]]],["agate",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21137]]],["agates",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18735]]]]},{"k":"H3540","v":[["Chedorlaomer",[5,5,[[0,5,5,0,5,[[13,5,5,0,5]]]],[337,340,341,345,353]]]]},{"k":"H3541","v":[["*",[577,541,[[0,10,8,0,8,[[14,1,1,0,1],[21,1,1,1,2],[23,1,1,2,3],[30,3,2,3,5],[31,2,1,5,6],[44,1,1,6,7],[49,1,1,7,8]]],[1,19,18,8,26,[[51,2,1,8,9],[52,2,2,9,11],[53,1,1,11,12],[54,3,3,12,15],[56,2,2,15,17],[57,2,2,17,19],[58,2,2,19,21],[59,1,1,21,22],[60,1,1,22,23],[68,1,1,23,24],[69,1,1,24,25],[81,1,1,25,26]]],[3,12,10,26,36,[[122,1,1,26,27],[124,1,1,27,28],[127,2,1,28,29],[136,1,1,29,30],[138,2,2,30,32],[139,4,3,32,35],[148,1,1,35,36]]],[4,1,1,36,37,[[159,1,1,36,37]]],[5,6,6,37,43,[[192,2,2,37,39],[193,1,1,39,40],[203,1,1,40,41],[208,1,1,41,42],[210,1,1,42,43]]],[6,2,2,43,45,[[216,1,1,43,44],[221,1,1,44,45]]],[7,3,2,45,47,[[232,2,1,45,46],[233,1,1,46,47]]],[8,23,18,47,65,[[237,1,1,47,48],[238,2,1,48,49],[244,1,1,49,50],[245,1,1,50,51],[246,2,2,51,53],[249,4,3,53,56],[250,1,1,56,57],[252,1,1,57,58],[253,1,1,58,59],[255,4,3,59,62],[260,3,2,62,64],[262,2,1,64,65]]],[9,18,14,65,79,[[269,4,2,65,67],[273,3,2,67,69],[277,1,1,69,70],[278,2,2,70,72],[281,1,1,72,73],[282,2,2,73,75],[284,2,2,75,77],[285,2,1,77,78],[290,1,1,78,79]]],[10,32,23,79,102,[[292,5,2,79,81],[295,1,1,81,82],[301,1,1,82,83],[302,3,2,83,85],[303,2,2,85,87],[304,1,1,87,88],[307,1,1,88,89],[308,2,1,89,90],[309,2,1,90,91],[310,8,7,91,98],[311,2,1,98,99],[312,4,3,99,102]]],[11,32,29,102,131,[[313,4,4,102,106],[314,1,1,106,107],[315,2,2,107,109],[316,1,1,109,110],[318,2,1,110,111],[319,1,1,111,112],[321,5,5,112,117],[330,3,3,117,120],[331,6,5,120,125],[332,2,2,125,127],[333,1,1,127,128],[334,4,3,128,131]]],[12,5,4,131,135,[[354,3,2,131,133],[358,2,2,133,135]]],[13,18,16,135,151,[[376,2,1,135,136],[377,1,1,136,137],[378,1,1,137,138],[384,2,2,138,140],[385,2,2,140,142],[386,1,1,142,143],[387,1,1,143,144],[390,2,2,144,146],[398,1,1,146,147],[400,4,3,147,150],[402,1,1,150,151]]],[14,1,1,151,152,[[403,1,1,151,152]]],[15,1,1,152,153,[[425,1,1,152,153]]],[22,52,51,153,204,[[685,1,1,153,154],[686,1,1,154,155],[688,1,1,155,156],[696,1,1,156,157],[698,1,1,157,158],[699,2,2,158,160],[700,1,1,160,161],[702,1,1,161,162],[706,1,1,162,163],[707,1,1,163,164],[708,2,2,164,166],[709,1,1,166,167],[714,3,3,167,170],[715,6,5,170,175],[716,2,2,175,177],[720,1,1,177,178],[721,3,3,178,181],[722,3,3,181,184],[723,4,4,184,188],[726,1,1,188,189],[727,4,4,189,193],[728,1,1,193,194],[729,1,1,194,195],[730,2,2,195,197],[734,2,2,197,199],[735,1,1,199,200],[743,2,2,200,202],[744,2,2,202,204]]],[23,163,159,204,363,[[746,2,2,204,206],[748,2,2,206,208],[749,2,2,208,210],[750,5,5,210,215],[751,3,3,215,218],[752,1,1,218,219],[753,5,5,219,224],[754,2,2,224,226],[755,4,4,226,230],[756,1,1,230,231],[757,4,4,231,235],[758,2,2,235,237],[759,2,2,237,239],[760,3,3,239,242],[761,3,3,242,245],[762,2,2,245,247],[763,4,4,247,251],[764,1,1,251,252],[765,4,4,252,256],[766,6,6,256,262],[767,7,7,262,269],[768,2,2,269,271],[769,5,5,271,276],[770,3,3,276,279],[771,6,5,279,284],[772,5,5,284,289],[773,9,9,289,298],[774,4,4,298,302],[775,7,7,302,309],[776,6,6,309,315],[777,7,7,315,322],[778,5,4,322,326],[779,4,4,326,330],[780,2,2,330,332],[781,3,2,332,334],[782,3,3,334,337],[783,1,1,337,338],[786,3,3,338,341],[787,1,1,341,342],[788,5,5,342,347],[789,3,2,347,349],[791,1,1,349,350],[792,2,2,350,352],[793,5,5,352,357],[794,2,2,357,359],[795,4,4,359,363]]],[24,1,1,363,364,[[798,1,1,363,364]]],[25,128,127,364,491,[[803,1,1,364,365],[804,2,2,365,367],[806,3,3,367,370],[807,2,2,370,372],[808,2,2,372,374],[812,4,4,374,378],[813,4,4,378,382],[814,5,5,382,387],[815,3,3,387,390],[816,1,1,390,391],[817,3,3,391,394],[818,4,4,394,398],[821,6,6,398,404],[822,5,5,404,409],[823,3,3,409,412],[824,6,6,412,418],[825,4,4,418,422],[826,7,7,422,429],[827,4,4,429,433],[828,1,1,433,434],[829,5,5,434,439],[830,4,4,439,443],[831,5,5,443,448],[832,2,2,448,450],[833,2,2,450,452],[834,3,2,452,454],[835,5,5,454,459],[836,2,2,459,461],[837,10,10,461,471],[838,5,5,471,476],[839,4,4,476,480],[840,3,3,480,483],[844,1,1,483,484],[845,2,2,484,486],[846,2,2,486,488],[847,2,2,488,490],[848,1,1,490,491]]],[29,20,20,491,511,[[879,5,5,491,496],[880,3,3,496,499],[881,2,2,499,501],[882,1,1,501,502],[883,3,3,502,505],[885,5,5,505,510],[886,1,1,510,511]]],[30,1,1,511,512,[[888,1,1,511,512]]],[32,2,2,512,514,[[894,1,1,512,513],[895,1,1,513,514]]],[33,1,1,514,515,[[900,1,1,514,515]]],[36,5,5,515,520,[[909,3,3,515,518],[910,2,2,518,520]]],[37,20,20,520,540,[[911,5,5,520,525],[912,1,1,525,526],[913,1,1,526,527],[916,1,1,527,528],[917,1,1,528,529],[918,10,10,529,539],[921,1,1,539,540]]],[38,1,1,540,541,[[925,1,1,540,541]]]],[365,552,621,881,910,932,1367,1523,1566,1593,1594,1623,1633,1642,1647,1701,1702,1711,1730,1743,1755,1780,1810,2029,2073,2465,3846,3946,4055,4325,4391,4405,4421,4431,4432,4726,5116,5952,5963,5989,6289,6442,6478,6662,6844,7144,7157,7267,7293,7400,7436,7452,7454,7517,7518,7552,7562,7645,7701,7737,7743,7752,7867,7883,7941,8090,8116,8185,8188,8284,8293,8297,8415,8433,8436,8508,8511,8524,8704,8793,8800,8889,9139,9161,9175,9186,9205,9225,9331,9386,9389,9410,9413,9418,9421,9422,9436,9450,9470,9491,9500,9507,9537,9539,9544,9549,9572,9592,9593,9646,9705,9708,9759,9762,9768,9774,9775,10043,10053,10055,10064,10067,10071,10081,10093,10099,10103,10131,10160,10161,10163,10867,10870,10944,10945,11405,11418,11442,11552,11568,11585,11586,11602,11636,11688,11697,11885,11956,11957,11959,12016,12018,12689,17789,17818,17874,18001,18035,18041,18051,18067,18108,18180,18215,18229,18232,18254,18334,18344,18346,18355,18358,18362,18373,18385,18391,18395,18485,18506,18519,18521,18535,18539,18557,18562,18572,18575,18579,18631,18643,18644,18658,18661,18663,18695,18699,18700,18754,18757,18780,18905,18910,18923,18934,18967,18970,19030,19054,19071,19072,19095,19098,19105,19110,19111,19122,19139,19140,19157,19182,19190,19192,19197,19198,19203,19219,19229,19237,19247,19248,19263,19267,19275,19278,19279,19303,19308,19317,19334,19339,19341,19345,19362,19376,19378,19395,19397,19408,19410,19418,19422,19426,19443,19444,19448,19452,19455,19457,19460,19465,19472,19484,19486,19499,19500,19513,19519,19521,19522,19529,19532,19542,19549,19561,19562,19566,19574,19576,19590,19598,19600,19612,19615,19617,19620,19629,19631,19632,19634,19639,19643,19645,19651,19652,19656,19660,19666,19667,19669,19672,19679,19685,19693,19698,19706,19707,19714,19726,19728,19734,19745,19746,19759,19767,19773,19777,19779,19785,19787,19792,19795,19800,19803,19805,19814,19818,19836,19840,19841,19842,19871,19872,19881,19883,19897,19898,19912,19939,19984,19990,19993,20007,20012,20017,20021,20035,20040,20042,20044,20075,20081,20120,20128,20134,20139,20155,20162,20184,20199,20213,20245,20248,20270,20352,20496,20513,20529,20551,20553,20554,20566,20574,20579,20582,20660,20662,20671,20672,20690,20699,20703,20708,20711,20716,20721,20726,20728,20735,20737,20752,20760,20765,20798,20821,20828,20834,20844,20847,20898,20900,20922,20925,20934,20942,20947,20953,20968,20970,20972,20979,20995,21004,21029,21035,21039,21042,21046,21053,21059,21062,21065,21077,21086,21089,21091,21095,21096,21098,21099,21103,21107,21115,21119,21124,21159,21163,21169,21179,21182,21186,21191,21196,21202,21206,21210,21214,21217,21226,21240,21245,21251,21259,21305,21307,21315,21323,21324,21330,21333,21347,21358,21361,21362,21363,21364,21365,21366,21372,21381,21392,21396,21402,21406,21409,21416,21418,21428,21435,21439,21442,21449,21465,21473,21590,21605,21608,21639,21648,21656,21671,21692,22367,22370,22373,22375,22377,22380,22383,22385,22406,22407,22422,22426,22427,22439,22465,22468,22471,22475,22481,22482,22511,22598,22613,22696,22842,22845,22847,22861,22866,22881,22882,22892,22894,22895,22907,22919,22959,22971,22978,22979,22980,22982,22983,22985,22990,22995,22996,22999,23032,23093]]],["+",[5,4,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,1,1,1,2,[[56,1,1,1,2]]],[5,1,1,2,3,[[203,1,1,2,3]]],[10,2,1,3,4,[[308,2,1,3,4]]]],[552,1701,6289,9386]]],["So",[8,8,[[0,2,2,0,2,[[14,1,1,0,1],[49,1,1,1,2]]],[8,3,3,2,5,[[252,1,1,2,3],[260,1,1,3,4],[262,1,1,4,5]]],[9,2,2,5,7,[[269,2,2,5,7]]],[10,1,1,7,8,[[309,1,1,7,8]]]],[365,1523,7645,7883,7941,8090,8116,9389]]],["Thus",[343,336,[[0,3,3,0,3,[[23,1,1,0,1],[31,1,1,1,2],[44,1,1,2,3]]],[1,15,15,3,18,[[52,2,2,3,5],[53,1,1,5,6],[54,2,2,6,8],[56,1,1,8,9],[57,2,2,9,11],[58,2,2,11,13],[59,1,1,13,14],[60,1,1,14,15],[68,1,1,15,16],[69,1,1,16,17],[81,1,1,17,18]]],[3,3,3,18,21,[[136,1,1,18,19],[138,1,1,19,20],[148,1,1,20,21]]],[5,3,3,21,24,[[192,1,1,21,22],[208,1,1,22,23],[210,1,1,23,24]]],[6,2,2,24,26,[[216,1,1,24,25],[221,1,1,25,26]]],[8,5,5,26,31,[[237,1,1,26,27],[245,1,1,27,28],[246,1,1,28,29],[250,1,1,29,30],[253,1,1,30,31]]],[9,6,6,31,37,[[273,2,2,31,33],[277,1,1,33,34],[278,2,2,34,36],[290,1,1,36,37]]],[10,16,14,37,51,[[292,2,1,37,38],[302,2,2,38,40],[303,1,1,40,41],[304,1,1,41,42],[310,6,6,42,48],[311,2,1,48,49],[312,2,2,49,51]]],[11,22,21,51,72,[[313,2,2,51,53],[314,1,1,53,54],[315,1,1,54,55],[319,1,1,55,56],[321,5,5,56,61],[330,2,2,61,63],[331,5,4,63,67],[332,2,2,67,69],[334,3,3,69,72]]],[12,4,4,72,76,[[354,2,2,72,74],[358,2,2,74,76]]],[13,15,15,76,91,[[376,1,1,76,77],[377,1,1,77,78],[378,1,1,78,79],[384,2,2,79,81],[385,1,1,81,82],[386,1,1,82,83],[387,1,1,83,84],[390,2,2,84,86],[398,1,1,86,87],[400,3,3,87,90],[402,1,1,90,91]]],[14,1,1,91,92,[[403,1,1,91,92]]],[22,29,28,92,120,[[685,1,1,92,93],[700,1,1,93,94],[714,2,2,94,96],[715,5,4,96,100],[716,2,2,100,102],[720,1,1,102,103],[721,2,2,103,105],[722,3,3,105,108],[723,3,3,108,111],[726,1,1,111,112],[727,3,3,112,115],[728,1,1,115,116],[729,1,1,116,117],[734,1,1,117,118],[743,1,1,118,119],[744,1,1,119,120]]],[23,98,95,120,215,[[746,2,2,120,122],[750,3,3,122,125],[751,2,2,125,127],[752,1,1,127,128],[753,3,3,128,131],[754,1,1,131,132],[755,1,1,132,133],[756,1,1,133,134],[757,4,4,134,138],[758,1,1,138,139],[759,1,1,139,140],[761,3,3,140,143],[762,1,1,143,144],[763,4,4,144,148],[765,3,3,148,151],[766,3,3,151,154],[767,3,3,154,157],[768,1,1,157,158],[769,3,3,158,161],[770,3,3,161,164],[771,4,3,164,167],[772,3,3,167,170],[773,5,5,170,175],[774,2,2,175,177],[775,6,6,177,183],[776,2,2,183,185],[777,5,5,185,190],[778,4,3,190,193],[779,2,2,193,195],[780,1,1,195,196],[781,3,2,196,198],[782,3,3,198,201],[783,1,1,201,202],[786,2,2,202,204],[787,1,1,204,205],[788,3,3,205,208],[789,2,2,208,210],[791,1,1,210,211],[793,1,1,211,212],[794,1,1,212,213],[795,2,2,213,215]]],[25,85,85,215,300,[[803,1,1,215,216],[804,2,2,216,218],[806,1,1,218,219],[807,2,2,219,221],[808,1,1,221,222],[812,3,3,222,225],[813,4,4,225,229],[814,2,2,229,231],[815,2,2,231,233],[817,2,2,233,235],[818,3,3,235,238],[821,5,5,238,243],[822,4,4,243,247],[823,2,2,247,249],[824,1,1,249,250],[825,2,2,250,252],[826,4,4,252,256],[827,1,1,256,257],[828,1,1,257,258],[829,4,4,258,262],[830,1,1,262,263],[831,4,4,263,267],[832,1,1,267,268],[833,1,1,268,269],[834,2,2,269,271],[835,2,2,271,273],[836,2,2,273,275],[837,8,8,275,283],[838,5,5,283,288],[839,4,4,288,292],[840,1,1,292,293],[845,2,2,293,295],[846,2,2,295,297],[847,2,2,297,299],[848,1,1,299,300]]],[29,13,13,300,313,[[879,5,5,300,305],[880,3,3,305,308],[881,1,1,308,309],[885,3,3,309,312],[886,1,1,312,313]]],[30,1,1,313,314,[[888,1,1,313,314]]],[32,1,1,314,315,[[895,1,1,314,315]]],[33,1,1,315,316,[[900,1,1,315,316]]],[36,3,3,316,319,[[909,2,2,316,318],[910,1,1,318,319]]],[37,17,17,319,336,[[911,4,4,319,323],[913,1,1,323,324],[916,1,1,324,325],[917,1,1,325,326],[918,9,9,326,335],[921,1,1,335,336]]]],[621,932,1367,1593,1594,1623,1633,1642,1702,1711,1730,1743,1755,1780,1810,2029,2073,2465,4325,4391,4726,5952,6442,6478,6662,6844,7267,7436,7454,7562,7701,8185,8188,8284,8293,8297,8704,8800,9161,9175,9205,9225,9410,9413,9421,9422,9436,9450,9470,9491,9507,9539,9549,9572,9592,9708,9759,9762,9768,9774,9775,10043,10053,10064,10067,10071,10081,10099,10103,10160,10161,10163,10867,10870,10944,10945,11405,11418,11442,11552,11568,11585,11602,11636,11688,11697,11885,11956,11957,11959,12016,12018,17789,18067,18334,18344,18355,18358,18362,18373,18391,18395,18485,18519,18521,18535,18539,18557,18562,18572,18575,18631,18643,18644,18658,18663,18695,18754,18905,18923,18967,18970,19098,19105,19111,19122,19140,19157,19192,19197,19198,19203,19229,19263,19267,19275,19278,19279,19303,19317,19362,19376,19378,19395,19408,19410,19418,19422,19443,19444,19448,19455,19457,19484,19500,19519,19521,19529,19561,19562,19566,19574,19576,19590,19598,19600,19612,19620,19629,19631,19639,19652,19656,19660,19666,19669,19685,19693,19706,19707,19714,19726,19728,19734,19745,19777,19785,19787,19795,19800,19803,19805,19814,19836,19841,19871,19881,19883,19897,19898,19912,19939,19984,19990,20007,20012,20035,20040,20042,20044,20075,20162,20199,20213,20270,20496,20513,20529,20551,20566,20574,20582,20660,20671,20672,20690,20699,20703,20708,20711,20726,20735,20737,20765,20798,20828,20834,20847,20898,20900,20922,20925,20942,20947,20953,20970,20972,20979,21004,21039,21059,21077,21086,21091,21095,21098,21115,21124,21159,21169,21179,21182,21186,21206,21210,21214,21217,21245,21251,21305,21307,21315,21323,21347,21358,21361,21362,21363,21365,21372,21381,21392,21396,21402,21406,21409,21416,21418,21428,21435,21439,21442,21449,21605,21608,21639,21648,21656,21671,21692,22367,22370,22373,22375,22377,22380,22383,22385,22407,22465,22468,22471,22482,22511,22613,22696,22842,22847,22866,22881,22882,22892,22895,22919,22959,22971,22978,22979,22980,22982,22983,22985,22995,22996,22999,23032]]],["also",[11,11,[[7,1,1,0,1,[[232,1,1,0,1]]],[8,3,3,1,4,[[238,1,1,1,2],[249,1,1,2,3],[260,1,1,3,4]]],[9,3,3,4,7,[[269,2,2,4,6],[285,1,1,6,7]]],[10,3,3,7,10,[[292,1,1,7,8],[309,1,1,8,9],[310,1,1,9,10]]],[11,1,1,10,11,[[318,1,1,10,11]]]],[7144,7293,7552,7883,8090,8116,8524,8793,9389,9418,9705]]],["but",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7157]]],["here",[3,3,[[0,1,1,0,1,[[30,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[9,1,1,2,3,[[284,1,1,2,3]]]],[910,4431,8508]]],["like",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19513]]],["manner",[2,1,[[10,2,1,0,1,[[312,2,1,0,1]]]],[9500]]],["much",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7743]]],["side",[2,1,[[3,2,1,0,1,[[127,2,1,0,1]]]],[4055]]],["so",[15,15,[[3,1,1,0,1,[[138,1,1,0,1]]],[5,1,1,1,2,[[192,1,1,1,2]]],[7,1,1,2,3,[[232,1,1,2,3]]],[8,5,5,3,8,[[238,1,1,3,4],[246,1,1,4,5],[249,1,1,5,6],[255,1,1,6,7],[262,1,1,7,8]]],[9,2,2,8,10,[[282,1,1,8,9],[285,1,1,9,10]]],[10,2,2,10,12,[[292,1,1,10,11],[310,1,1,11,12]]],[11,1,1,12,13,[[318,1,1,12,13]]],[13,1,1,13,14,[[400,1,1,13,14]]],[22,1,1,14,15,[[696,1,1,14,15]]]],[4405,5963,7144,7293,7452,7552,7743,7941,8436,8524,8793,9418,9705,11959,18001]]],["such",[1,1,[[22,1,1,0,1,[[698,1,1,0,1]]]],[18035]]],["therefore",[1,1,[[9,1,1,0,1,[[273,1,1,0,1]]]],[8188]]],["this",[2,2,[[13,1,1,0,1,[[385,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]]],[11586,20352]]],["thus",[177,176,[[0,3,2,0,2,[[30,2,1,0,1],[31,1,1,1,2]]],[1,1,1,2,3,[[54,1,1,2,3]]],[3,3,3,3,6,[[124,1,1,3,4],[139,2,2,4,6]]],[4,1,1,6,7,[[159,1,1,6,7]]],[5,1,1,7,8,[[193,1,1,7,8]]],[8,6,6,8,14,[[244,1,1,8,9],[249,2,2,9,11],[255,2,2,11,13],[260,1,1,13,14]]],[9,3,3,14,17,[[281,1,1,14,15],[282,1,1,15,16],[284,1,1,16,17]]],[10,6,6,17,23,[[292,1,1,17,18],[295,1,1,18,19],[301,1,1,19,20],[302,1,1,20,21],[303,1,1,21,22],[307,1,1,22,23]]],[11,8,8,23,31,[[313,2,2,23,25],[315,1,1,25,26],[316,1,1,26,27],[330,1,1,27,28],[331,1,1,28,29],[333,1,1,29,30],[334,1,1,30,31]]],[12,1,1,31,32,[[354,1,1,31,32]]],[13,1,1,32,33,[[376,1,1,32,33]]],[15,1,1,33,34,[[425,1,1,33,34]]],[22,21,21,34,55,[[686,1,1,34,35],[688,1,1,35,36],[699,2,2,36,38],[702,1,1,38,39],[706,1,1,39,40],[707,1,1,40,41],[708,2,2,41,43],[709,1,1,43,44],[714,1,1,44,45],[715,1,1,45,46],[721,1,1,46,47],[723,1,1,47,48],[727,1,1,48,49],[730,2,2,49,51],[734,1,1,51,52],[735,1,1,52,53],[743,1,1,53,54],[744,1,1,54,55]]],[23,64,64,55,119,[[748,2,2,55,57],[749,2,2,57,59],[750,2,2,59,61],[751,1,1,61,62],[753,2,2,62,64],[754,1,1,64,65],[755,3,3,65,68],[758,1,1,68,69],[759,1,1,69,70],[760,3,3,70,73],[762,1,1,73,74],[764,1,1,74,75],[765,1,1,75,76],[766,3,3,76,79],[767,3,3,79,82],[768,1,1,82,83],[769,2,2,83,85],[771,2,2,85,87],[772,2,2,87,89],[773,4,4,89,93],[774,2,2,93,95],[775,1,1,95,96],[776,4,4,96,100],[777,2,2,100,102],[778,1,1,102,103],[779,2,2,103,105],[780,1,1,105,106],[786,1,1,106,107],[788,2,2,107,109],[789,1,1,109,110],[792,2,2,110,112],[793,4,4,112,116],[794,1,1,116,117],[795,2,2,117,119]]],[25,43,43,119,162,[[806,2,2,119,121],[808,1,1,121,122],[812,1,1,122,123],[814,3,3,123,126],[815,1,1,126,127],[816,1,1,127,128],[817,1,1,128,129],[818,1,1,129,130],[821,1,1,130,131],[822,1,1,131,132],[823,1,1,132,133],[824,5,5,133,138],[825,2,2,138,140],[826,3,3,140,143],[827,3,3,143,146],[829,1,1,146,147],[830,3,3,147,150],[831,1,1,150,151],[832,1,1,151,152],[833,1,1,152,153],[834,1,1,153,154],[835,3,3,154,157],[837,2,2,157,159],[840,2,2,159,161],[844,1,1,161,162]]],[29,7,7,162,169,[[881,1,1,162,163],[882,1,1,163,164],[883,3,3,164,167],[885,2,2,167,169]]],[32,1,1,169,170,[[894,1,1,169,170]]],[36,2,2,170,172,[[909,1,1,170,171],[910,1,1,171,172]]],[37,3,3,172,175,[[911,1,1,172,173],[912,1,1,173,174],[918,1,1,174,175]]],[38,1,1,175,176,[[925,1,1,175,176]]]],[881,932,1647,3946,4421,4432,5116,5989,7400,7517,7518,7737,7752,7867,8415,8433,8511,8800,8889,9139,9161,9186,9331,9537,9544,9593,9646,10055,10093,10131,10163,10870,11405,12689,17818,17874,18041,18051,18108,18180,18215,18229,18232,18254,18346,18385,18506,18579,18661,18699,18700,18757,18780,18910,18934,19030,19054,19071,19072,19095,19110,19139,19182,19190,19219,19237,19247,19248,19308,19334,19339,19341,19345,19397,19426,19452,19460,19465,19472,19486,19499,19522,19532,19542,19549,19615,19617,19632,19634,19643,19645,19651,19667,19672,19679,19698,19746,19759,19767,19773,19779,19792,19818,19840,19842,19872,19993,20017,20021,20044,20081,20120,20128,20134,20139,20155,20184,20245,20248,20553,20554,20579,20662,20716,20721,20728,20752,20760,20821,20844,20934,20968,20995,21029,21035,21042,21046,21053,21062,21065,21089,21096,21099,21103,21107,21119,21163,21191,21196,21202,21226,21240,21259,21307,21324,21330,21333,21364,21366,21465,21473,21590,22406,22422,22426,22427,22439,22475,22481,22598,22845,22861,22894,22907,22990,23093]]],["way",[2,1,[[1,2,1,0,1,[[51,2,1,0,1]]]],[1566]]],["wise",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3846]]],["yonder",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4431]]]]},{"k":"H3542","v":[["+",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21961]]]]},{"k":"H3543","v":[["*",[8,7,[[0,1,1,0,1,[[26,1,1,0,1]]],[4,1,1,1,2,[[186,1,1,1,2]]],[8,1,1,2,3,[[238,1,1,2,3]]],[17,1,1,3,4,[[452,1,1,3,4]]],[22,1,1,4,5,[[720,1,1,4,5]]],[25,1,1,5,6,[[822,1,1,5,6]]],[37,2,1,6,7,[[921,2,1,6,7]]]],[728,5846,7289,13267,18484,20951,23045]]],["+",[3,2,[[4,1,1,0,1,[[186,1,1,0,1]]],[37,2,1,1,2,[[921,2,1,1,2]]]],[5846,23045]]],["dim",[2,2,[[0,1,1,0,1,[[26,1,1,0,1]]],[17,1,1,1,2,[[452,1,1,1,2]]]],[728,13267]]],["fail",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18484]]],["faint",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20951]]],["restrained",[1,1,[[8,1,1,0,1,[[238,1,1,0,1]]]],[7289]]]]},{"k":"H3544","v":[["*",[9,9,[[2,6,6,0,6,[[102,6,6,0,6]]],[8,1,1,6,7,[[238,1,1,6,7]]],[22,2,2,7,9,[[720,1,1,7,8],[739,1,1,8,9]]]],[3058,3073,3078,3080,3091,3108,7278,18483,18846]]],["dark",[5,5,[[2,5,5,0,5,[[102,5,5,0,5]]]],[3058,3073,3078,3080,3108]]],["darkish",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3091]]],["dim",[1,1,[[8,1,1,0,1,[[238,1,1,0,1]]]],[7278]]],["heaviness",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18846]]],["smoking",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18483]]]]},{"k":"H3545","v":[["healing",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22731]]]]},{"k":"H3546","v":[["*",[4,4,[[26,4,4,0,4,[[851,1,1,0,1],[853,1,1,1,2],[854,2,2,2,4]]]],[21784,21855,21882,21889]]],["able",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21784,21855]]],["could",[2,2,[[26,2,2,0,2,[[854,2,2,0,2]]]],[21882,21889]]]]},{"k":"H3547","v":[["*",[23,23,[[1,12,12,0,12,[[77,4,4,0,4],[78,2,2,4,6],[79,1,1,6,7],[80,1,1,7,8],[84,1,1,8,9],[88,1,1,9,10],[89,2,2,10,12]]],[2,2,2,12,14,[[96,1,1,12,13],[105,1,1,13,14]]],[3,2,2,14,16,[[119,2,2,14,16]]],[4,1,1,16,17,[[162,1,1,16,17]]],[12,2,2,17,19,[[343,1,1,17,18],[361,1,1,18,19]]],[13,1,1,19,20,[[377,1,1,19,20]]],[22,1,1,20,21,[[739,1,1,20,21]]],[25,1,1,21,22,[[845,1,1,21,22]]],[27,1,1,22,23,[[865,1,1,22,23]]]],[2294,2296,2297,2334,2337,2380,2412,2430,2550,2705,2720,2722,2914,3233,3695,3696,5192,10464,11017,11428,18853,21612,22139]]],["+",[3,3,[[2,1,1,0,1,[[96,1,1,0,1]]],[13,1,1,1,2,[[377,1,1,1,2]]],[27,1,1,2,3,[[865,1,1,2,3]]]],[2914,11428,22139]]],["decketh",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18853]]],["office",[18,18,[[1,12,12,0,12,[[77,4,4,0,4],[78,2,2,4,6],[79,1,1,6,7],[80,1,1,7,8],[84,1,1,8,9],[88,1,1,9,10],[89,2,2,10,12]]],[2,1,1,12,13,[[105,1,1,12,13]]],[3,2,2,13,15,[[119,2,2,13,15]]],[4,1,1,15,16,[[162,1,1,15,16]]],[12,2,2,16,18,[[343,1,1,16,17],[361,1,1,17,18]]]],[2294,2296,2297,2334,2337,2380,2412,2430,2550,2705,2720,2722,3233,3695,3696,5192,10464,11017]]],["priest",[1,1,[[25,1,1,0,1,[[845,1,1,0,1]]]],[21612]]]]},{"k":"H3548","v":[["*",[750,653,[[0,7,6,0,6,[[13,1,1,0,1],[40,2,2,1,3],[45,1,1,3,4],[46,3,2,4,6]]],[1,11,11,6,17,[[51,1,1,6,7],[52,1,1,7,8],[67,1,1,8,9],[68,3,3,9,12],[78,1,1,12,13],[80,1,1,13,14],[84,1,1,14,15],[87,1,1,15,16],[88,1,1,16,17]]],[2,194,153,17,170,[[90,9,9,17,26],[91,5,4,26,30],[92,3,3,30,33],[93,16,14,33,47],[94,11,7,47,54],[95,8,8,54,62],[96,10,9,62,71],[101,2,2,71,73],[102,56,40,73,113],[103,39,29,113,142],[104,6,4,142,146],[105,2,2,146,148],[106,2,2,148,150],[108,1,1,150,151],[110,4,4,151,155],[111,5,5,155,160],[112,4,3,160,163],[116,11,7,163,170]]],[3,69,63,170,233,[[119,3,3,170,173],[120,3,3,173,176],[121,16,13,176,189],[122,7,6,189,195],[123,1,1,195,196],[126,1,1,196,197],[131,2,2,197,199],[132,2,2,199,201],[134,1,1,201,202],[135,5,4,202,206],[141,2,2,206,208],[142,4,4,208,212],[143,4,4,212,216],[147,10,10,216,226],[148,2,2,226,228],[149,1,1,228,229],[150,1,1,229,230],[151,4,3,230,233]]],[4,14,13,233,246,[[169,3,3,233,236],[170,3,2,236,238],[171,1,1,238,239],[172,1,1,239,240],[173,1,1,240,241],[176,1,1,241,242],[178,2,2,242,244],[179,1,1,244,245],[183,1,1,245,246]]],[5,37,34,246,280,[[189,7,7,246,253],[190,8,7,253,260],[192,9,7,260,267],[194,1,1,267,268],[200,1,1,268,269],[203,1,1,269,270],[205,1,1,270,271],[206,1,1,271,272],[207,4,4,272,276],[208,4,4,276,280]]],[6,15,13,280,293,[[227,4,4,280,284],[228,11,9,284,293]]],[8,32,26,293,319,[[236,2,2,293,295],[237,8,6,295,301],[240,1,1,301,302],[241,1,1,302,303],[249,4,3,303,306],[256,6,6,306,312],[257,8,5,312,317],[258,1,1,317,318],[265,1,1,318,319]]],[9,9,8,319,327,[[274,2,2,319,321],[281,3,2,321,323],[283,1,1,323,324],[285,1,1,324,325],[286,2,2,325,327]]],[10,29,28,327,355,[[291,12,12,327,339],[292,4,4,339,343],[294,3,3,343,346],[298,5,5,346,351],[302,2,2,351,353],[303,3,2,353,355]]],[11,44,35,355,390,[[322,2,2,355,357],[323,7,4,357,361],[324,11,9,361,370],[328,5,4,370,374],[329,3,3,374,377],[331,1,1,377,378],[334,5,5,378,383],[335,8,6,383,389],[337,2,1,389,390]]],[12,19,17,390,407,[[346,3,3,390,393],[350,1,1,393,394],[352,3,3,394,397],[353,3,2,397,399],[355,1,1,399,400],[360,1,1,400,401],[361,3,2,401,403],[364,1,1,403,404],[365,2,2,404,406],[366,1,1,406,407]]],[13,89,72,407,479,[[370,2,2,407,409],[371,6,5,409,414],[372,1,1,414,415],[373,3,2,415,417],[374,3,2,417,419],[377,2,2,419,421],[379,6,4,421,425],[381,1,1,425,426],[383,1,1,426,427],[385,2,2,427,429],[388,1,1,429,430],[389,9,7,430,437],[390,5,5,437,442],[392,7,4,442,446],[395,9,7,446,453],[396,7,7,453,460],[397,9,7,460,467],[400,5,5,467,472],[401,9,6,472,478],[402,1,1,478,479]]],[14,26,25,479,504,[[403,1,1,479,480],[404,5,5,480,485],[405,4,4,485,489],[408,2,1,489,490],[409,3,3,490,493],[410,5,5,493,498],[411,2,2,498,500],[412,4,4,500,504]]],[15,44,42,504,546,[[414,1,1,504,505],[415,5,4,505,509],[417,1,1,509,510],[419,6,6,510,516],[420,3,3,516,519],[421,3,3,519,522],[422,7,7,522,529],[423,3,3,529,532],[424,10,9,532,541],[425,5,5,541,546]]],[17,1,1,546,547,[[447,1,1,546,547]]],[18,5,5,547,552,[[555,1,1,547,548],[576,1,1,548,549],[587,1,1,549,550],[609,2,2,550,552]]],[22,6,6,552,558,[[686,1,1,552,553],[702,1,1,553,554],[706,1,1,554,555],[715,1,1,555,556],[739,1,1,556,557],[744,1,1,557,558]]],[23,41,38,558,596,[[745,2,2,558,560],[746,2,2,560,562],[748,1,1,562,563],[749,1,1,563,564],[750,1,1,564,565],[752,2,2,565,567],[757,1,1,567,568],[758,1,1,568,569],[762,1,1,569,570],[763,1,1,570,571],[764,1,1,571,572],[765,1,1,572,573],[767,3,3,573,576],[770,4,4,576,580],[771,1,1,580,581],[772,2,2,581,583],[773,6,4,583,587],[775,1,1,587,588],[776,1,1,588,589],[777,2,2,589,591],[778,1,1,591,592],[781,1,1,592,593],[792,1,1,593,594],[793,1,1,594,595],[796,2,1,595,596]]],[24,6,6,596,602,[[797,2,2,596,598],[798,2,2,598,600],[800,2,2,600,602]]],[25,24,23,602,625,[[802,1,1,602,603],[808,1,1,603,604],[823,1,1,604,605],[841,2,2,605,607],[843,2,2,607,609],[844,3,3,609,612],[845,6,5,612,617],[846,2,2,617,619],[847,3,3,619,622],[849,3,3,622,625]]],[27,4,4,625,629,[[865,2,2,625,627],[866,1,1,627,628],[867,1,1,628,629]]],[28,3,3,629,632,[[876,2,2,629,631],[877,1,1,631,632]]],[29,1,1,632,633,[[885,1,1,632,633]]],[32,1,1,633,634,[[895,1,1,633,634]]],[35,2,2,634,636,[[906,1,1,634,635],[908,1,1,635,636]]],[36,8,8,636,644,[[909,3,3,636,639],[910,5,5,639,644]]],[37,6,6,644,650,[[913,2,2,644,646],[916,2,2,646,648],[917,2,2,648,650]]],[38,3,3,650,653,[[925,1,1,650,651],[926,2,2,651,653]]]],[354,1240,1245,1406,1442,1446,1570,1580,2000,2032,2048,2050,2366,2430,2550,2654,2705,2750,2752,2753,2754,2756,2757,2758,2760,2762,2764,2770,2771,2778,2780,2789,2794,2798,2800,2801,2802,2805,2811,2812,2815,2820,2821,2825,2826,2829,2830,2836,2838,2840,2842,2843,2846,2848,2855,2856,2859,2861,2871,2872,2875,2878,2884,2885,2886,2887,2888,2893,2910,2911,2913,3050,3052,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3067,3068,3069,3071,3072,3073,3074,3075,3077,3078,3079,3080,3082,3083,3084,3085,3086,3088,3089,3091,3095,3096,3101,3102,3105,3106,3107,3108,3113,3114,3115,3116,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3134,3135,3136,3137,3138,3139,3140,3142,3146,3147,3149,3150,3151,3155,3159,3182,3183,3197,3198,3233,3234,3240,3241,3303,3346,3354,3355,3366,3379,3380,3381,3382,3383,3412,3413,3422,3578,3581,3582,3584,3588,3591,3593,3695,3698,3724,3759,3771,3776,3800,3801,3802,3807,3808,3809,3810,3811,3813,3815,3817,3818,3822,3833,3834,3839,3840,3842,3843,3858,3996,4178,4181,4231,4233,4285,4292,4293,4295,4296,4478,4482,4490,4492,4552,4553,4556,4573,4575,4576,4670,4676,4677,4685,4690,4693,4695,4705,4715,4718,4720,4746,4798,4833,4870,4873,4877,5373,5376,5382,5385,5387,5423,5429,5452,5533,5569,5570,5594,5737,5896,5899,5901,5906,5907,5908,5910,5913,5919,5920,5921,5926,5927,5928,5953,5955,5957,5958,5961,5962,5965,6035,6188,6279,6372,6378,6382,6385,6394,6400,6439,6456,6457,6458,6985,6990,6992,6993,6997,6999,7010,7011,7012,7013,7017,7020,7023,7215,7221,7251,7253,7254,7255,7268,7275,7324,7333,7511,7527,7544,7773,7774,7776,7777,7778,7781,7798,7804,7805,7806,7808,7819,7985,8226,8227,8416,8424,8464,8522,8579,8580,8724,8725,8736,8742,8743,8749,8751,8755,8756,8759,8761,8762,8792,8796,8797,8805,8846,8848,8849,8988,8989,8991,8995,8996,9182,9183,9186,9217,9804,9812,9838,9839,9844,9847,9852,9854,9855,9856,9857,9858,9859,9860,9866,9973,9974,9978,9979,10010,10011,10015,10063,10149,10153,10155,10157,10159,10167,10169,10173,10174,10185,10189,10240,10617,10625,10645,10762,10802,10805,10815,10826,10859,10906,10985,11021,11046,11114,11156,11164,11186,11252,11255,11273,11275,11279,11280,11282,11323,11326,11330,11360,11361,11427,11429,11462,11463,11465,11467,11493,11531,11584,11587,11655,11660,11662,11664,11665,11670,11673,11674,11679,11682,11688,11697,11702,11749,11750,11751,11752,11795,11807,11812,11813,11815,11817,11825,11830,11842,11843,11848,11851,11852,11854,11856,11858,11863,11864,11869,11871,11873,11938,11942,11947,11951,11963,11968,11974,11976,11977,11980,11984,12007,12021,12063,12088,12090,12096,12097,12099,12105,12107,12109,12171,12178,12180,12184,12216,12225,12230,12231,12234,12238,12244,12257,12262,12268,12270,12323,12328,12347,12349,12355,12394,12459,12483,12485,12490,12492,12493,12495,12502,12506,12543,12545,12549,12557,12577,12583,12585,12586,12587,12588,12591,12598,12608,12625,12631,12636,12646,12650,12654,12659,12665,12668,12675,12676,12684,12699,12701,13147,15177,15505,15790,16160,16167,17809,18097,18171,18354,18849,18943,18947,18964,18973,18991,19036,19089,19102,19154,19163,19279,19311,19402,19408,19423,19441,19495,19517,19518,19579,19580,19583,19588,19612,19619,19623,19636,19660,19661,19664,19705,19763,19793,19796,19820,19877,20087,20130,20300,20314,20329,20338,20352,20433,20436,20467,20603,21002,21522,21523,21565,21566,21591,21596,21599,21614,21620,21621,21629,21630,21634,21649,21657,21674,21675,21712,21713,21715,22137,22142,22153,22176,22300,22304,22328,22474,22619,22791,22824,22841,22852,22854,22857,22859,22866,22867,22868,22913,22920,22958,22960,22965,22967,23095,23104,23110]]],["+",[11,11,[[2,1,1,0,1,[[111,1,1,0,1]]],[5,1,1,1,2,[[207,1,1,1,2]]],[11,3,3,2,5,[[328,1,1,2,3],[329,2,2,3,5]]],[13,1,1,5,6,[[395,1,1,5,6]]],[14,1,1,6,7,[[405,1,1,6,7]]],[15,1,1,7,8,[[424,1,1,7,8]]],[23,1,1,8,9,[[762,1,1,8,9]]],[25,2,2,9,11,[[808,1,1,9,10],[845,1,1,10,11]]]],[3383,6394,9973,10010,10011,11825,12109,12659,19402,20603,21621]]],["Priests",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18849]]],["officer",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8849]]],["own",[2,2,[[2,2,2,0,2,[[103,2,2,0,2]]]],[3126,3137]]],["priest",[416,363,[[0,4,4,0,4,[[13,1,1,0,1],[40,2,2,1,3],[45,1,1,3,4]]],[1,8,8,4,12,[[51,1,1,4,5],[52,1,1,5,6],[67,1,1,6,7],[78,1,1,7,8],[80,1,1,8,9],[84,1,1,9,10],[87,1,1,10,11],[88,1,1,11,12]]],[2,172,137,12,149,[[90,6,6,12,18],[91,4,4,18,22],[92,2,2,22,24],[93,16,14,24,38],[94,10,7,38,45],[95,7,7,45,52],[96,7,6,52,58],[101,2,2,58,60],[102,55,40,60,100],[103,34,27,100,127],[104,6,4,127,131],[105,1,1,131,132],[106,2,2,132,134],[108,1,1,134,135],[110,3,3,135,138],[111,2,2,138,140],[112,4,3,140,143],[116,10,6,143,149]]],[3,67,61,149,210,[[119,2,2,149,151],[120,3,3,151,154],[121,16,13,154,167],[122,7,6,167,173],[123,1,1,173,174],[131,2,2,174,176],[132,2,2,176,178],[134,1,1,178,179],[135,5,4,179,183],[141,2,2,183,185],[142,4,4,185,189],[143,4,4,189,193],[147,10,10,193,203],[148,2,2,203,205],[149,1,1,205,206],[150,1,1,206,207],[151,4,3,207,210]]],[4,5,5,210,215,[[169,1,1,210,211],[170,1,1,211,212],[172,1,1,212,213],[178,2,2,213,215]]],[5,10,10,215,225,[[200,1,1,215,216],[203,1,1,216,217],[205,1,1,217,218],[206,1,1,218,219],[207,2,2,219,221],[208,4,4,221,225]]],[6,13,11,225,236,[[227,4,4,225,229],[228,9,7,229,236]]],[8,19,18,236,254,[[236,1,1,236,237],[237,5,5,237,242],[249,4,3,242,245],[256,6,6,245,251],[257,1,1,251,252],[258,1,1,252,253],[265,1,1,253,254]]],[9,1,1,254,255,[[281,1,1,254,255]]],[10,17,17,255,272,[[291,12,12,255,267],[292,4,4,267,271],[294,1,1,271,272]]],[11,24,19,272,291,[[323,7,4,272,276],[324,4,4,276,280],[328,4,3,280,283],[334,5,5,283,288],[335,2,2,288,290],[337,2,1,290,291]]],[12,4,4,291,295,[[353,1,1,291,292],[361,1,1,292,293],[364,1,1,293,294],[366,1,1,294,295]]],[13,19,17,295,312,[[379,1,1,295,296],[381,1,1,296,297],[385,1,1,297,298],[388,1,1,298,299],[389,6,4,299,303],[390,3,3,303,306],[392,2,2,306,308],[397,1,1,308,309],[400,3,3,309,312]]],[14,6,6,312,318,[[404,1,1,312,313],[409,2,2,313,315],[410,1,1,315,316],[412,2,2,316,318]]],[15,10,10,318,328,[[415,2,2,318,320],[419,1,1,320,321],[420,2,2,321,323],[422,1,1,323,324],[424,1,1,324,325],[425,3,3,325,328]]],[18,1,1,328,329,[[587,1,1,328,329]]],[22,3,3,329,332,[[686,1,1,329,330],[702,1,1,330,331],[706,1,1,331,332]]],[23,15,13,332,345,[[750,1,1,332,333],[752,1,1,333,334],[758,1,1,334,335],[764,1,1,335,336],[765,1,1,336,337],[767,3,3,337,340],[773,4,3,340,343],[781,1,1,343,344],[796,2,1,344,345]]],[24,2,2,345,347,[[798,2,2,345,347]]],[25,4,4,347,351,[[802,1,1,347,348],[845,2,2,348,350],[846,1,1,350,351]]],[27,2,2,351,353,[[865,2,2,351,353]]],[29,1,1,353,354,[[885,1,1,353,354]]],[36,5,5,354,359,[[909,3,3,354,357],[910,2,2,357,359]]],[37,4,4,359,363,[[913,2,2,359,361],[916,2,2,361,363]]]],[354,1240,1245,1406,1570,1580,2000,2366,2430,2550,2654,2705,2752,2754,2757,2758,2760,2762,2764,2770,2771,2778,2789,2794,2798,2800,2801,2802,2805,2811,2812,2815,2820,2821,2825,2826,2829,2830,2836,2838,2840,2842,2843,2846,2848,2855,2856,2859,2861,2871,2872,2875,2884,2886,2887,2910,2911,2913,3050,3052,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3067,3068,3069,3071,3072,3073,3074,3075,3077,3078,3079,3080,3082,3083,3084,3085,3086,3088,3089,3091,3095,3096,3101,3102,3105,3106,3107,3108,3113,3114,3115,3116,3122,3123,3125,3126,3127,3128,3129,3130,3131,3134,3135,3136,3137,3138,3139,3142,3146,3147,3149,3150,3151,3155,3159,3182,3183,3197,3198,3233,3240,3241,3303,3354,3355,3366,3379,3380,3412,3413,3422,3578,3581,3582,3584,3588,3593,3698,3724,3759,3771,3776,3800,3801,3802,3807,3808,3809,3810,3811,3813,3815,3817,3818,3822,3833,3834,3839,3840,3842,3843,3858,4178,4181,4231,4233,4285,4292,4293,4295,4296,4478,4482,4490,4492,4552,4553,4556,4573,4575,4576,4670,4676,4677,4685,4690,4693,4695,4705,4715,4718,4720,4746,4798,4833,4870,4873,4877,5376,5387,5429,5569,5570,6188,6279,6372,6378,6382,6385,6439,6456,6457,6458,6985,6990,6992,6993,6997,6999,7010,7011,7012,7017,7020,7221,7251,7254,7255,7268,7275,7511,7527,7544,7773,7774,7776,7777,7778,7781,7798,7819,7985,8416,8724,8725,8736,8742,8743,8749,8751,8755,8756,8759,8761,8762,8792,8796,8797,8805,8846,9838,9839,9844,9847,9852,9857,9859,9860,9974,9978,9979,10149,10153,10155,10157,10159,10169,10189,10240,10859,11021,11114,11186,11462,11493,11587,11655,11664,11665,11670,11673,11679,11697,11702,11749,11752,11864,11942,11947,11951,12090,12178,12184,12234,12262,12268,12328,12347,12485,12495,12502,12587,12650,12675,12684,12699,15790,17809,18097,18171,19102,19163,19311,19423,19441,19495,19517,19518,19660,19661,19664,19877,20300,20338,20352,20467,21620,21629,21649,22137,22142,22474,22841,22852,22854,22857,22859,22913,22920,22958,22960]]],["priest's",[16,16,[[2,9,9,0,9,[[94,1,1,0,1],[96,2,2,1,3],[103,3,3,3,6],[111,2,2,6,8],[116,1,1,8,9]]],[4,1,1,9,10,[[170,1,1,9,10]]],[6,1,1,10,11,[[228,1,1,10,11]]],[8,2,2,11,13,[[237,2,2,11,13]]],[13,1,1,13,14,[[390,1,1,13,14]]],[25,1,1,14,15,[[845,1,1,14,15]]],[38,1,1,15,16,[[926,1,1,15,16]]]],[2843,2888,2893,3124,3129,3140,3381,3382,3591,5387,7013,7253,7255,11688,21629,23110]]],["priests",[293,272,[[0,3,2,0,2,[[46,3,2,0,2]]],[1,3,3,2,5,[[68,3,3,2,5]]],[2,10,10,5,15,[[90,3,3,5,8],[91,1,1,8,9],[92,1,1,9,10],[95,1,1,10,11],[96,1,1,11,12],[102,1,1,12,13],[105,1,1,13,14],[110,1,1,14,15]]],[3,2,2,15,17,[[119,1,1,15,16],[126,1,1,16,17]]],[4,8,8,17,25,[[169,2,2,17,19],[170,1,1,19,20],[171,1,1,20,21],[173,1,1,21,22],[176,1,1,22,23],[179,1,1,23,24],[183,1,1,24,25]]],[5,24,22,25,47,[[189,7,7,25,32],[190,6,6,32,38],[192,9,7,38,45],[194,1,1,45,46],[207,1,1,46,47]]],[6,1,1,47,48,[[228,1,1,47,48]]],[8,10,8,48,56,[[236,1,1,48,49],[240,1,1,49,50],[241,1,1,50,51],[257,7,5,51,56]]],[9,6,5,56,61,[[274,1,1,56,57],[281,2,1,57,58],[283,1,1,58,59],[285,1,1,59,60],[286,1,1,60,61]]],[10,11,10,61,71,[[294,1,1,61,62],[298,5,5,62,67],[302,2,2,67,69],[303,3,2,69,71]]],[11,16,15,71,86,[[322,2,2,71,73],[324,6,6,73,79],[329,1,1,79,80],[331,1,1,80,81],[335,6,5,81,86]]],[12,15,15,86,101,[[346,3,3,86,89],[350,1,1,89,90],[352,3,3,90,93],[353,2,2,93,95],[355,1,1,95,96],[360,1,1,96,97],[361,2,2,97,99],[365,2,2,99,101]]],[13,68,57,101,158,[[370,2,2,101,103],[371,6,5,103,108],[372,1,1,108,109],[373,3,2,109,111],[374,3,2,111,113],[377,2,2,113,115],[379,5,4,115,119],[383,1,1,119,120],[385,1,1,120,121],[389,3,3,121,124],[390,1,1,124,125],[392,5,4,125,129],[395,8,7,129,136],[396,7,7,136,143],[397,8,6,143,149],[400,2,2,149,151],[401,9,6,151,157],[402,1,1,157,158]]],[14,18,17,158,175,[[403,1,1,158,159],[404,3,3,159,162],[405,3,3,162,165],[408,2,1,165,166],[409,1,1,166,167],[410,4,4,167,171],[411,2,2,171,173],[412,2,2,173,175]]],[15,31,30,175,205,[[414,1,1,175,176],[415,3,3,176,179],[417,1,1,179,180],[419,3,3,180,183],[420,1,1,183,184],[421,3,3,184,187],[422,6,6,187,193],[423,3,3,193,196],[424,8,7,196,203],[425,2,2,203,205]]],[18,4,4,205,209,[[555,1,1,205,206],[576,1,1,206,207],[609,2,2,207,209]]],[22,2,2,209,211,[[715,1,1,209,210],[744,1,1,210,211]]],[23,25,25,211,236,[[745,2,2,211,213],[746,2,2,213,215],[748,1,1,215,216],[749,1,1,216,217],[752,1,1,217,218],[757,1,1,218,219],[763,1,1,219,220],[770,4,4,220,224],[771,1,1,224,225],[772,2,2,225,227],[773,2,2,227,229],[775,1,1,229,230],[776,1,1,230,231],[777,2,2,231,233],[778,1,1,233,234],[792,1,1,234,235],[793,1,1,235,236]]],[24,4,4,236,240,[[797,2,2,236,238],[800,2,2,238,240]]],[25,17,17,240,257,[[823,1,1,240,241],[841,2,2,241,243],[843,2,2,243,245],[844,3,3,245,248],[845,2,2,248,250],[846,1,1,250,251],[847,3,3,251,254],[849,3,3,254,257]]],[27,2,2,257,259,[[866,1,1,257,258],[867,1,1,258,259]]],[28,3,3,259,262,[[876,2,2,259,261],[877,1,1,261,262]]],[32,1,1,262,263,[[895,1,1,262,263]]],[35,2,2,263,265,[[906,1,1,263,264],[908,1,1,264,265]]],[36,3,3,265,268,[[910,3,3,265,268]]],[37,2,2,268,270,[[917,2,2,268,270]]],[38,2,2,270,272,[[925,1,1,270,271],[926,1,1,271,272]]]],[1442,1446,2032,2048,2050,2750,2753,2756,2764,2780,2878,2885,3054,3234,3346,3695,3996,5373,5382,5385,5423,5452,5533,5594,5737,5896,5899,5901,5906,5907,5908,5910,5919,5920,5921,5926,5927,5928,5953,5955,5957,5958,5961,5962,5965,6035,6400,7023,7215,7324,7333,7798,7804,7805,7806,7808,8226,8424,8464,8522,8579,8848,8988,8989,8991,8995,8996,9182,9183,9186,9217,9804,9812,9854,9855,9856,9857,9858,9859,10015,10063,10167,10169,10173,10174,10185,10617,10625,10645,10762,10802,10805,10815,10826,10859,10906,10985,11021,11046,11156,11164,11252,11255,11273,11275,11279,11280,11282,11323,11326,11330,11360,11361,11427,11429,11462,11463,11465,11467,11531,11584,11660,11662,11674,11682,11749,11750,11751,11752,11795,11807,11812,11813,11815,11817,11825,11830,11842,11843,11848,11851,11852,11854,11856,11858,11863,11869,11871,11873,11938,11963,11968,11974,11976,11977,11980,11984,12007,12021,12063,12088,12097,12099,12105,12107,12171,12180,12216,12225,12230,12231,12238,12244,12257,12270,12323,12328,12349,12355,12394,12459,12483,12493,12506,12543,12545,12549,12557,12577,12583,12585,12586,12588,12591,12598,12608,12625,12631,12636,12646,12654,12665,12668,12676,12701,15177,15505,16160,16167,18354,18943,18947,18964,18973,18991,19036,19089,19154,19279,19408,19579,19580,19583,19588,19612,19619,19623,19636,19660,19705,19763,19793,19796,19820,20087,20130,20314,20329,20433,20436,21002,21522,21523,21565,21566,21591,21596,21599,21614,21630,21634,21657,21674,21675,21712,21713,21715,22153,22176,22300,22304,22328,22619,22791,22824,22866,22867,22868,22965,22967,23095,23104]]],["priests'",[7,7,[[5,2,2,0,2,[[190,2,2,0,2]]],[8,1,1,2,3,[[237,1,1,2,3]]],[11,1,1,3,4,[[324,1,1,3,4]]],[14,1,1,4,5,[[404,1,1,4,5]]],[15,2,2,5,7,[[419,2,2,5,7]]]],[5913,5928,7253,9866,12096,12490,12492]]],["princes",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13147]]],["ruler",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8580]]],["rulers",[1,1,[[9,1,1,0,1,[[274,1,1,0,1]]]],[8227]]]]},{"k":"H3549","v":[["*",[8,8,[[14,8,8,0,8,[[408,3,3,0,3],[409,5,5,3,8]]]],[12160,12167,12169,12185,12186,12189,12194,12197]]],["priest",[2,2,[[14,2,2,0,2,[[409,2,2,0,2]]]],[12185,12194]]],["priests",[6,6,[[14,6,6,0,6,[[408,3,3,0,3],[409,3,3,3,6]]]],[12160,12167,12169,12186,12189,12197]]]]},{"k":"H3550","v":[["*",[14,12,[[1,2,2,0,2,[[78,1,1,0,1],[89,1,1,1,2]]],[3,6,5,2,7,[[119,1,1,2,3],[132,1,1,3,4],[134,3,2,4,6],[141,1,1,6,7]]],[5,1,1,7,8,[[204,1,1,7,8]]],[8,1,1,8,9,[[237,1,1,8,9]]],[14,1,1,9,10,[[404,1,1,9,10]]],[15,3,2,10,12,[[419,1,1,10,11],[425,2,1,11,12]]]],[2345,2722,3702,4204,4258,4264,4484,6300,7276,12089,12484,12700]]],["office",[4,3,[[1,1,1,0,1,[[78,1,1,0,1]]],[3,3,2,1,3,[[119,1,1,1,2],[134,2,1,2,3]]]],[2345,3702,4264]]],["offices",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7276]]],["priesthood",[9,8,[[1,1,1,0,1,[[89,1,1,0,1]]],[3,3,3,1,4,[[132,1,1,1,2],[134,1,1,2,3],[141,1,1,3,4]]],[5,1,1,4,5,[[204,1,1,4,5]]],[14,1,1,5,6,[[404,1,1,5,6]]],[15,3,2,6,8,[[419,1,1,6,7],[425,2,1,7,8]]]],[2722,4204,4258,4484,6300,12089,12484,12700]]]]},{"k":"H3551","v":[["windows",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21915]]]]},{"k":"H3552","v":[["Chub",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21209]]]]},{"k":"H3553","v":[["*",[6,6,[[8,1,1,0,1,[[252,1,1,0,1]]],[13,1,1,1,2,[[392,1,1,1,2]]],[22,1,1,2,3,[[737,1,1,2,3]]],[23,1,1,3,4,[[790,1,1,3,4]]],[25,2,2,4,6,[[828,1,1,4,5],[839,1,1,5,6]]]],[7623,11746,18817,20049,21131,21430]]],["helmet",[4,4,[[8,1,1,0,1,[[252,1,1,0,1]]],[22,1,1,1,2,[[737,1,1,1,2]]],[25,2,2,2,4,[[828,1,1,2,3],[839,1,1,3,4]]]],[7623,18817,21131,21430]]],["helmets",[2,2,[[13,1,1,0,1,[[392,1,1,0,1]]],[23,1,1,1,2,[[790,1,1,1,2]]]],[11746,20049]]]]},{"k":"H3554","v":[["burned",[2,2,[[19,1,1,0,1,[[633,1,1,0,1]]],[22,1,1,1,2,[[721,1,1,1,2]]]],[16568,18507]]]]},{"k":"H3555","v":[["*",[2,1,[[1,2,1,0,1,[[70,2,1,0,1]]]],[2102]]],["Burning",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2102]]],["burning",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2102]]]]},{"k":"H3556","v":[["*",[37,37,[[0,5,5,0,5,[[0,1,1,0,1],[14,1,1,1,2],[21,1,1,2,3],[25,1,1,3,4],[36,1,1,4,5]]],[1,1,1,5,6,[[81,1,1,5,6]]],[3,1,1,6,7,[[140,1,1,6,7]]],[4,4,4,7,11,[[153,1,1,7,8],[156,1,1,8,9],[162,1,1,9,10],[180,1,1,10,11]]],[6,1,1,11,12,[[215,1,1,11,12]]],[12,1,1,12,13,[[364,1,1,12,13]]],[15,2,2,13,15,[[416,1,1,13,14],[421,1,1,14,15]]],[17,5,5,15,20,[[438,1,1,15,16],[444,1,1,16,17],[457,1,1,17,18],[460,1,1,18,19],[473,1,1,19,20]]],[18,4,4,20,24,[[485,1,1,20,21],[613,1,1,21,22],[624,1,1,22,23],[625,1,1,23,24]]],[20,1,1,24,25,[[670,1,1,24,25]]],[22,3,3,25,28,[[691,1,1,25,26],[692,1,1,26,27],[725,1,1,27,28]]],[23,1,1,28,29,[[775,1,1,28,29]]],[25,1,1,29,30,[[833,1,1,29,30]]],[26,2,2,30,32,[[857,1,1,30,31],[861,1,1,31,32]]],[28,2,2,32,34,[[877,1,1,32,33],[878,1,1,33,34]]],[29,1,1,34,35,[[883,1,1,34,35]]],[30,1,1,35,36,[[888,1,1,35,36]]],[33,1,1,36,37,[[902,1,1,36,37]]]],[15,365,564,696,1092,2451,4463,4902,5023,5208,5673,6643,11132,12380,12534,12913,13058,13401,13466,13800,14015,16205,16355,16374,17525,17916,17941,18612,19726,21255,21971,22084,22321,22358,22449,22514,22728]]],["+",[3,3,[[22,1,1,0,1,[[725,1,1,0,1]]],[25,1,1,1,2,[[833,1,1,1,2]]],[33,1,1,2,3,[[902,1,1,2,3]]]],[18612,21255,22728]]],["Star",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4463]]],["star",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22449]]],["stars",[32,32,[[0,5,5,0,5,[[0,1,1,0,1],[14,1,1,1,2],[21,1,1,2,3],[25,1,1,3,4],[36,1,1,4,5]]],[1,1,1,5,6,[[81,1,1,5,6]]],[4,4,4,6,10,[[153,1,1,6,7],[156,1,1,7,8],[162,1,1,8,9],[180,1,1,9,10]]],[6,1,1,10,11,[[215,1,1,10,11]]],[12,1,1,11,12,[[364,1,1,11,12]]],[15,2,2,12,14,[[416,1,1,12,13],[421,1,1,13,14]]],[17,5,5,14,19,[[438,1,1,14,15],[444,1,1,15,16],[457,1,1,16,17],[460,1,1,17,18],[473,1,1,18,19]]],[18,4,4,19,23,[[485,1,1,19,20],[613,1,1,20,21],[624,1,1,21,22],[625,1,1,22,23]]],[20,1,1,23,24,[[670,1,1,23,24]]],[22,2,2,24,26,[[691,1,1,24,25],[692,1,1,25,26]]],[23,1,1,26,27,[[775,1,1,26,27]]],[26,2,2,27,29,[[857,1,1,27,28],[861,1,1,28,29]]],[28,2,2,29,31,[[877,1,1,29,30],[878,1,1,30,31]]],[30,1,1,31,32,[[888,1,1,31,32]]]],[15,365,564,696,1092,2451,4902,5023,5208,5673,6643,11132,12380,12534,12913,13058,13401,13466,13800,14015,16205,16355,16374,17525,17916,17941,19726,21971,22084,22321,22358,22514]]]]},{"k":"H3557","v":[["*",[38,37,[[0,3,3,0,3,[[44,1,1,0,1],[46,1,1,1,2],[49,1,1,2,3]]],[7,1,1,3,4,[[235,1,1,3,4]]],[9,3,3,4,7,[[285,2,2,4,6],[286,1,1,6,7]]],[10,12,11,7,18,[[294,3,2,7,9],[297,2,2,9,11],[298,2,2,11,13],[307,2,2,13,15],[308,2,2,15,17],[310,1,1,17,18]]],[13,4,4,18,22,[[368,1,1,18,19],[370,1,1,19,20],[372,1,1,20,21],[373,1,1,21,22]]],[15,1,1,22,23,[[421,1,1,22,23]]],[18,2,2,23,25,[[532,1,1,23,24],[589,1,1,24,25]]],[19,1,1,25,26,[[645,1,1,25,26]]],[22,1,1,26,27,[[718,1,1,26,27]]],[23,4,4,27,31,[[746,1,1,27,28],[750,1,1,28,29],[754,1,1,29,30],[764,1,1,30,31]]],[25,2,2,31,33,[[822,1,1,31,32],[824,1,1,32,33]]],[28,1,1,33,34,[[877,1,1,33,34]]],[29,1,1,34,35,[[885,1,1,34,35]]],[37,1,1,35,36,[[921,1,1,35,36]]],[38,1,1,36,37,[[927,1,1,36,37]]]],[1369,1432,1527,7205,8543,8544,8557,8851,8871,8960,8972,9012,9049,9321,9326,9345,9354,9435,11217,11251,11300,11331,12532,14754,15808,16915,18432,18978,19100,19211,19431,20972,21039,22322,22474,23044,23122]]],["+",[5,5,[[0,1,1,0,1,[[46,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[13,1,1,2,3,[[373,1,1,2,3]]],[29,1,1,3,4,[[885,1,1,3,4]]],[38,1,1,4,5,[[927,1,1,4,5]]]],[1432,9049,11331,22474,23122]]],["abide",[2,2,[[23,1,1,0,1,[[754,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[19211,22322]]],["comprehended",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18432]]],["consume",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20972]]],["contain",[3,3,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,2,2,1,3,[[368,1,1,1,2],[372,1,1,2,3]]]],[9012,11217,11300]]],["contained",[2,2,[[10,2,2,0,2,[[297,2,2,0,2]]]],[8960,8972]]],["containeth",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21039]]],["fed",[3,3,[[9,1,1,0,1,[[286,1,1,0,1]]],[10,2,2,1,3,[[308,2,2,1,3]]]],[8557,9345,9354]]],["feed",[3,3,[[9,1,1,0,1,[[285,1,1,0,1]]],[10,1,1,1,2,[[307,1,1,1,2]]],[37,1,1,2,3,[[921,1,1,2,3]]]],[8544,9321,23044]]],["forbearing",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19431]]],["guide",[1,1,[[18,1,1,0,1,[[589,1,1,0,1]]]],[15808]]],["held",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11251]]],["hold",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18978]]],["holding",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19100]]],["nourish",[2,2,[[0,2,2,0,2,[[44,1,1,0,1],[49,1,1,1,2]]]],[1369,1527]]],["nourisher",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7205]]],["present",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9435]]],["provision",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8851]]],["sustain",[4,4,[[10,1,1,0,1,[[307,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[18,1,1,2,3,[[532,1,1,2,3]]],[19,1,1,3,4,[[645,1,1,3,4]]]],[9326,12532,14754,16915]]],["sustenance",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8543]]],["victual",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8871]]],["victuals",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8851]]]]},{"k":"H3558","v":[["tablets",[2,2,[[1,1,1,0,1,[[84,1,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]]],[2553,4714]]]]},{"k":"H3559","v":[["*",[217,209,[[0,3,3,0,3,[[40,1,1,0,1],[42,2,2,1,3]]],[1,7,7,3,10,[[57,1,1,3,4],[64,1,1,4,5],[65,1,1,5,6],[68,2,2,6,8],[72,1,1,8,9],[83,1,1,9,10]]],[3,3,3,10,13,[[137,1,1,10,11],[139,2,2,11,13]]],[4,4,4,13,17,[[165,1,1,13,14],[169,1,1,14,15],[171,1,1,15,16],[184,1,1,16,17]]],[5,5,5,17,22,[[187,1,1,17,18],[189,1,1,18,19],[190,2,2,19,21],[194,1,1,21,22]]],[6,3,3,22,25,[[222,1,1,22,23],[226,2,2,23,25]]],[8,6,6,25,31,[[242,1,1,25,26],[248,1,1,26,27],[255,1,1,27,28],[258,2,2,28,30],[261,1,1,30,31]]],[9,6,6,31,37,[[271,1,1,31,32],[273,5,5,32,37]]],[10,6,6,37,43,[[292,4,4,37,41],[295,1,1,41,42],[296,1,1,42,43]]],[12,24,22,43,65,[[346,1,1,43,44],[349,1,1,44,45],[351,1,1,45,46],[352,3,3,46,49],[353,1,1,49,50],[354,4,4,50,54],[359,6,4,54,58],[365,2,2,58,60],[366,5,5,60,65]]],[13,26,24,65,89,[[367,1,1,65,66],[368,2,2,66,68],[369,1,1,68,69],[374,1,1,69,70],[378,2,2,70,72],[383,1,1,72,73],[385,1,1,73,74],[386,1,1,74,75],[392,1,1,75,76],[393,1,1,76,77],[395,3,3,77,80],[396,1,1,80,81],[397,2,1,81,82],[401,8,7,82,89]]],[14,2,2,89,91,[[405,1,1,89,90],[409,1,1,90,91]]],[15,1,1,91,92,[[420,1,1,91,92]]],[16,2,2,92,94,[[431,1,1,92,93],[432,1,1,93,94]]],[17,15,15,94,109,[[443,1,1,94,95],[446,1,1,95,96],[447,1,1,96,97],[450,2,2,97,99],[453,1,1,99,100],[456,1,1,100,101],[462,2,2,101,103],[463,1,1,103,104],[464,1,1,104,105],[466,1,1,105,106],[473,1,1,106,107],[477,2,2,107,109]]],[18,52,49,109,158,[[482,1,1,109,110],[484,3,3,110,113],[485,1,1,113,114],[486,1,1,114,115],[487,1,1,115,116],[488,1,1,116,117],[498,1,1,117,118],[501,1,1,118,119],[514,1,1,119,120],[515,1,1,120,121],[517,1,1,121,122],[525,1,1,122,123],[528,1,1,123,124],[534,3,2,124,126],[536,1,1,126,127],[542,3,2,127,129],[545,2,2,129,131],[551,1,1,131,132],[555,3,3,132,135],[564,1,1,135,136],[566,4,4,136,140],[567,2,1,140,141],[570,2,2,141,143],[573,1,1,143,144],[576,1,1,144,145],[578,1,1,145,146],[579,1,1,146,147],[580,1,1,147,148],[584,1,1,148,149],[585,1,1,149,150],[589,1,1,150,151],[596,4,4,151,155],[617,1,1,155,156],[618,1,1,156,157],[624,1,1,157,158]]],[19,19,19,158,177,[[630,1,1,158,159],[631,2,2,159,161],[633,1,1,161,162],[635,1,1,162,163],[639,2,2,163,165],[643,3,3,165,168],[646,1,1,168,169],[647,1,1,169,170],[648,1,1,170,171],[649,1,1,171,172],[651,2,2,172,174],[652,1,1,174,175],[656,1,1,175,176],[657,1,1,176,177]]],[22,10,10,177,187,[[680,1,1,177,178],[687,1,1,178,179],[692,1,1,179,180],[694,1,1,180,181],[708,1,1,181,182],[718,1,1,182,183],[723,1,1,183,184],[729,1,1,184,185],[732,1,1,185,186],[740,1,1,186,187]]],[23,7,7,187,194,[[754,2,2,187,189],[774,1,1,189,190],[777,1,1,190,191],[790,1,1,191,192],[795,2,2,192,194]]],[25,8,7,194,201,[[805,2,2,194,196],[808,1,1,196,197],[817,1,1,197,198],[829,1,1,198,199],[839,2,1,199,200],[841,1,1,200,201]]],[27,1,1,201,202,[[867,1,1,201,202]]],[29,1,1,202,203,[[882,1,1,202,203]]],[32,1,1,203,204,[[896,1,1,203,204]]],[33,2,2,204,206,[[901,2,2,204,206]]],[34,1,1,206,207,[[904,1,1,206,207]]],[35,1,1,207,208,[[906,1,1,207,208]]],[37,1,1,208,209,[[915,1,1,208,209]]]],[1227,1306,1315,1736,1937,1952,2037,2041,2164,2498,4367,4417,4445,5286,5368,5409,5764,5862,5910,5913,5914,6006,6875,6975,6978,7355,7498,7761,7832,7833,7909,8144,8192,8193,8196,8204,8206,8782,8794,8815,8816,8896,8915,10647,10759,10776,10792,10794,10803,10850,10874,10875,10877,10887,10967,10969,10974,10978,11145,11150,11166,11167,11180,11182,11183,11198,11218,11220,11230,11362,11438,11451,11528,11579,11620,11746,11761,11810,11826,11827,11846,11865,11970,11972,11976,11980,11981,11982,11986,12100,12183,12503,12797,12817,13037,13121,13133,13226,13238,13288,13363,13497,13498,13531,13539,13603,13834,13929,13930,13982,14004,14007,14008,14015,14028,14058,14061,14203,14243,14473,14507,14527,14642,14701,14774,14775,14794,14866,14869,14909,14910,15064,15121,15133,15150,15306,15328,15330,15347,15363,15395,15427,15428,15475,15503,15520,15549,15568,15735,15743,15810,15903,15971,15988,16031,16274,16278,16359,16474,16508,16516,16548,16629,16722,16738,16843,16849,16852,16954,16972,17015,17033,17082,17106,17118,17238,17276,17687,17836,17949,17974,18250,18440,18579,18686,18737,18861,19213,19224,19687,19777,20059,20224,20227,20532,20536,20591,20769,21170,21432,21520,22170,22422,22621,22702,22704,22760,22794,22947]]],["+",[15,15,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,1,1,1,2,[[65,1,1,1,2]]],[8,1,1,2,3,[[248,1,1,2,3]]],[9,2,2,3,5,[[273,2,2,3,5]]],[12,3,3,5,8,[[354,2,2,5,7],[365,1,1,7,8]]],[13,2,2,8,10,[[383,1,1,8,9],[401,1,1,9,10]]],[18,2,2,10,12,[[555,2,2,10,12]]],[23,1,1,12,13,[[754,1,1,12,13]]],[25,2,2,13,15,[[805,1,1,13,14],[808,1,1,14,15]]]],[1315,1952,7498,8192,8193,10874,10875,11150,11528,11986,15121,15150,19224,20532,20591]]],["Order",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16031]]],["Prepare",[3,3,[[5,1,1,0,1,[[187,1,1,0,1]]],[19,1,1,1,2,[[651,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]]],[5862,17106,17949]]],["Provideth",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16548]]],["certain",[2,2,[[4,2,2,0,2,[[165,1,1,0,1],[169,1,1,1,2]]]],[5286,5368]]],["certainty",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7833]]],["confirm",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14909]]],["confirmed",[2,2,[[9,1,1,0,1,[[273,1,1,0,1]]],[12,1,1,1,2,[[351,1,1,1,2]]]],[8204,10776]]],["deed",[1,1,[[8,1,1,0,1,[[261,1,1,0,1]]]],[7909]]],["directed",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15903]]],["directeth",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16849]]],["establish",[11,10,[[12,1,1,0,1,[[359,1,1,0,1]]],[18,8,7,1,8,[[484,1,1,1,2],[525,1,1,2,3],[564,1,1,3,4],[566,2,2,4,6],[567,2,1,6,7],[576,1,1,7,8]]],[22,1,1,8,9,[[740,1,1,8,9]]],[23,1,1,9,10,[[777,1,1,9,10]]]],[10974,14004,14642,15306,15328,15330,15395,15503,18861,19777]]],["established",[43,43,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[8,1,1,3,4,[[255,1,1,3,4]]],[9,3,3,4,7,[[271,1,1,4,5],[273,2,2,5,7]]],[10,4,4,7,11,[[292,4,4,7,11]]],[12,2,2,11,13,[[354,2,2,11,13]]],[13,1,1,13,14,[[378,1,1,13,14]]],[17,1,1,14,15,[[456,1,1,14,15]]],[18,9,9,15,24,[[501,1,1,15,16],[517,1,1,16,17],[566,2,2,17,19],[570,1,1,19,20],[573,1,1,20,21],[579,1,1,21,22],[596,1,1,22,23],[617,1,1,23,24]]],[19,10,10,24,34,[[630,1,1,24,25],[631,1,1,25,26],[639,2,2,26,28],[643,2,2,28,30],[647,1,1,30,31],[651,1,1,31,32],[652,1,1,32,33],[656,1,1,33,34]]],[22,4,4,34,38,[[680,1,1,34,35],[694,1,1,35,36],[723,1,1,36,37],[732,1,1,37,38]]],[23,3,3,38,41,[[754,1,1,38,39],[774,1,1,39,40],[795,1,1,40,41]]],[32,1,1,41,42,[[896,1,1,41,42]]],[37,1,1,42,43,[[915,1,1,42,43]]]],[1227,1937,5764,7761,8144,8196,8206,8782,8794,8815,8816,10877,10887,11438,13363,14243,14527,15347,15363,15428,15475,15549,15988,16274,16474,16516,16722,16738,16843,16852,16972,17082,17118,17238,17687,17974,18579,18737,19213,19687,20227,22621,22947]]],["faithfulness",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13982]]],["fashion",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13603]]],["fashioned",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[15971,20769]]],["fast",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14866]]],["fastened",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21520]]],["firm",[2,2,[[5,2,2,0,2,[[189,1,1,0,1],[190,1,1,1,2]]]],[5910,5913]]],["fitted",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17033]]],["fixed",[4,3,[[18,4,3,0,3,[[534,2,1,0,1],[585,1,1,1,2],[589,1,1,2,3]]]],[14775,15743,15810]]],["forth",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16278]]],["frame",[1,1,[[6,1,1,0,1,[[222,1,1,0,1]]]],[6875]]],["meet",[1,1,[[1,1,1,0,1,[[57,1,1,0,1]]]],[1736]]],["ordained",[1,1,[[18,1,1,0,1,[[485,1,1,0,1]]]],[14015]]],["order",[2,2,[[13,1,1,0,1,[[395,1,1,0,1]]],[22,1,1,1,2,[[687,1,1,1,2]]]],[11826,17836]]],["ordered",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14473]]],["perfect",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16508]]],["preparation",[2,2,[[12,1,1,0,1,[[359,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[10969,22702]]],["prepare",[23,23,[[3,2,2,0,2,[[139,2,2,0,2]]],[4,1,1,2,3,[[171,1,1,2,3]]],[8,2,2,3,5,[[242,1,1,3,4],[258,1,1,4,5]]],[12,2,2,5,7,[[346,1,1,5,6],[366,1,1,6,7]]],[13,4,4,7,11,[[368,1,1,7,8],[397,1,1,8,9],[401,2,2,9,11]]],[17,4,4,11,15,[[443,1,1,11,12],[446,1,1,12,13],[462,2,2,13,15]]],[18,2,2,15,17,[[487,1,1,15,16],[584,1,1,16,17]]],[19,1,1,17,18,[[657,1,1,17,18]]],[22,1,1,18,19,[[718,1,1,18,19]]],[23,2,2,19,21,[[790,1,1,19,20],[795,1,1,20,21]]],[25,1,1,21,22,[[839,1,1,21,22]]],[29,1,1,22,23,[[882,1,1,22,23]]]],[4417,4445,5409,7355,7832,10647,11182,11220,11865,11970,11972,13037,13121,13497,13498,14058,15735,17276,18440,20059,20224,21432,22422]]],["prepared",[52,51,[[1,1,1,0,1,[[72,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[5,1,1,2,3,[[190,1,1,2,3]]],[10,2,2,3,5,[[295,1,1,3,4],[296,1,1,4,5]]],[12,11,10,5,15,[[349,1,1,5,6],[352,3,3,6,9],[359,4,3,9,12],[366,3,3,12,15]]],[13,15,15,15,30,[[367,1,1,15,16],[369,1,1,16,17],[374,1,1,17,18],[378,1,1,18,19],[385,1,1,19,20],[386,1,1,20,21],[392,1,1,21,22],[393,1,1,22,23],[395,2,2,23,25],[397,1,1,25,26],[401,4,4,26,30]]],[14,1,1,30,31,[[409,1,1,30,31]]],[15,1,1,31,32,[[420,1,1,31,32]]],[16,2,2,32,34,[[431,1,1,32,33],[432,1,1,33,34]]],[17,2,2,34,36,[[463,1,1,34,35],[464,1,1,35,36]]],[18,6,6,36,42,[[484,1,1,36,37],[486,1,1,37,38],[534,1,1,38,39],[545,1,1,39,40],[551,1,1,40,41],[580,1,1,41,42]]],[19,3,3,42,45,[[635,1,1,42,43],[646,1,1,43,44],[648,1,1,44,45]]],[22,1,1,45,46,[[708,1,1,45,46]]],[25,2,2,46,48,[[829,1,1,46,47],[839,1,1,47,48]]],[27,1,1,48,49,[[867,1,1,48,49]]],[33,1,1,49,50,[[901,1,1,49,50]]],[35,1,1,50,51,[[906,1,1,50,51]]]],[2164,4367,5914,8896,8915,10759,10792,10794,10803,10967,10969,10978,11166,11167,11180,11198,11230,11362,11451,11579,11620,11746,11761,11810,11827,11865,11976,11980,11981,11982,12183,12503,12797,12817,13531,13539,14008,14028,14774,14910,15064,15568,16629,16954,17015,18250,21170,21432,22170,22704,22794]]],["preparest",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14869]]],["prepareth",[3,3,[[13,1,1,0,1,[[396,1,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]],[18,1,1,2,3,[[624,1,1,2,3]]]],[11846,13238,16359]]],["provide",[2,2,[[13,1,1,0,1,[[368,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[11218,15133]]],["provided",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14869]]],["provideth",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13834]]],["provision",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11183]]],["ready",[15,15,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,3,3,1,4,[[68,2,2,1,3],[83,1,1,3,4]]],[5,1,1,4,5,[[194,1,1,4,5]]],[12,1,1,5,6,[[365,1,1,5,6]]],[13,1,1,6,7,[[401,1,1,6,7]]],[17,3,3,7,10,[[447,1,1,7,8],[450,1,1,8,9],[453,1,1,9,10]]],[18,4,4,10,14,[[484,1,1,10,11],[488,1,1,11,12],[498,1,1,12,13],[515,1,1,13,14]]],[22,1,1,14,15,[[729,1,1,14,15]]]],[1306,2037,2041,2498,6006,11145,11980,13133,13226,13288,14007,14061,14203,14507,18686]]],["right",[3,3,[[17,2,2,0,2,[[477,2,2,0,2]]],[18,1,1,2,3,[[528,1,1,2,3]]]],[13929,13930,14701]]],["set",[2,2,[[14,1,1,0,1,[[405,1,1,0,1]]],[25,1,1,1,2,[[805,1,1,1,2]]]],[12100,20536]]],["stable",[1,1,[[12,1,1,0,1,[[353,1,1,0,1]]]],[10850]]],["stablished",[1,1,[[18,1,1,0,1,[[570,1,1,0,1]]]],[15427]]],["stablisheth",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22760]]],["standeth",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6975]]],["stood",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6978]]],["tarry",[1,1,[[18,1,1,0,1,[[578,1,1,0,1]]]],[15520]]],["themselves",[1,1,[[18,1,1,0,1,[[536,1,1,0,1]]]],[14794]]]]},{"k":"H3560","v":[["+",[1,1,[[12,1,1,0,1,[[355,1,1,0,1]]]],[10898]]]]},{"k":"H3561","v":[["cakes",[2,2,[[23,2,2,0,2,[[751,1,1,0,1],[788,1,1,1,2]]]],[19137,20029]]]]},{"k":"H3562","v":[["*",[3,3,[[13,3,3,0,3,[[397,2,2,0,2],[401,1,1,2,3]]]],[11866,11867,11975]]],["Conaniah",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11975]]],["Cononiah",[2,2,[[13,2,2,0,2,[[397,2,2,0,2]]]],[11866,11867]]]]},{"k":"H3563","v":[["*",[34,29,[[0,5,3,0,3,[[39,5,3,0,3]]],[2,1,1,3,4,[[100,1,1,3,4]]],[4,1,1,4,5,[[166,1,1,4,5]]],[9,1,1,5,6,[[278,1,1,5,6]]],[10,1,1,6,7,[[297,1,1,6,7]]],[13,1,1,7,8,[[370,1,1,7,8]]],[18,6,6,8,14,[[488,1,1,8,9],[493,1,1,9,10],[500,1,1,10,11],[552,1,1,11,12],[579,1,1,12,13],[593,1,1,13,14]]],[19,1,1,14,15,[[650,1,1,14,15]]],[22,4,2,15,17,[[729,4,2,15,17]]],[23,7,7,17,24,[[760,1,1,17,18],[769,3,3,18,21],[779,1,1,21,22],[793,1,1,22,23],[795,1,1,23,24]]],[24,1,1,24,25,[[800,1,1,24,25]]],[25,4,3,25,28,[[824,4,3,25,28]]],[34,1,1,28,29,[[904,1,1,28,29]]]],[1183,1185,1193,3014,5306,8289,8960,11251,14065,14097,14240,15079,15527,15861,17075,18690,18695,19343,19549,19551,19562,19828,20139,20219,20441,21038,21039,21040,22764]]],["+",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8289]]],["cup",[29,24,[[0,5,3,0,3,[[39,5,3,0,3]]],[10,1,1,3,4,[[297,1,1,3,4]]],[13,1,1,4,5,[[370,1,1,4,5]]],[18,5,5,5,10,[[488,1,1,5,6],[493,1,1,6,7],[500,1,1,7,8],[552,1,1,8,9],[593,1,1,9,10]]],[19,1,1,10,11,[[650,1,1,10,11]]],[22,4,2,11,13,[[729,4,2,11,13]]],[23,6,6,13,19,[[760,1,1,13,14],[769,3,3,14,17],[793,1,1,17,18],[795,1,1,18,19]]],[24,1,1,19,20,[[800,1,1,19,20]]],[25,4,3,20,23,[[824,4,3,20,23]]],[34,1,1,23,24,[[904,1,1,23,24]]]],[1183,1185,1193,8960,11251,14065,14097,14240,15079,15861,17075,18690,18695,19343,19549,19551,19562,20139,20219,20441,21038,21039,21040,22764]]],["cups",[1,1,[[23,1,1,0,1,[[779,1,1,0,1]]]],[19828]]],["owl",[3,3,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[18,1,1,2,3,[[579,1,1,2,3]]]],[3014,5306,15527]]]]},{"k":"H3564","v":[["*",[9,9,[[4,1,1,0,1,[[156,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[19,2,2,2,4,[[644,1,1,2,3],[654,1,1,3,4]]],[22,1,1,4,5,[[726,1,1,4,5]]],[23,1,1,5,6,[[755,1,1,5,6]]],[25,3,3,6,9,[[823,3,3,6,9]]]],[5024,9036,16876,17190,18624,19230,20994,20996,20998]]],["+",[2,2,[[4,1,1,0,1,[[156,1,1,0,1]]],[23,1,1,1,2,[[755,1,1,1,2]]]],[5024,19230]]],["furnace",[7,7,[[10,1,1,0,1,[[298,1,1,0,1]]],[19,2,2,1,3,[[644,1,1,1,2],[654,1,1,2,3]]],[22,1,1,3,4,[[726,1,1,3,4]]],[25,3,3,4,7,[[823,3,3,4,7]]]],[9036,16876,17190,18624,20994,20996,20998]]]]},{"k":"H3565","v":[["Chorashan",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[8008]]]]},{"k":"H3566","v":[["Cyrus",[15,13,[[13,3,2,0,2,[[402,3,2,0,2]]],[14,8,7,2,9,[[403,5,4,2,6],[405,1,1,6,7],[406,2,2,7,9]]],[22,2,2,9,11,[[722,1,1,9,10],[723,1,1,10,11]]],[26,2,2,11,13,[[850,1,1,11,12],[859,1,1,12,13]]]],[12015,12016,12017,12018,12023,12024,12104,12113,12115,18561,18562,21758,22016]]]]},{"k":"H3567","v":[["Cyrus",[8,6,[[14,7,5,0,5,[[407,4,3,0,3],[408,3,2,3,5]]],[26,1,1,5,6,[[855,1,1,5,6]]]],[12147,12148,12151,12154,12165,21933]]]]},{"k":"H3568","v":[["*",[29,29,[[0,4,4,0,4,[[1,1,1,0,1],[9,3,3,1,4]]],[11,1,1,4,5,[[331,1,1,4,5]]],[12,3,3,5,8,[[338,3,3,5,8]]],[16,2,2,8,10,[[426,1,1,8,9],[433,1,1,9,10]]],[17,1,1,10,11,[[463,1,1,10,11]]],[18,2,2,11,13,[[545,1,1,11,12],[564,1,1,12,13]]],[22,8,8,13,21,[[689,1,1,13,14],[696,1,1,14,15],[698,3,3,15,18],[715,1,1,18,19],[721,1,1,19,20],[723,1,1,20,21]]],[23,1,1,21,22,[[790,1,1,21,22]]],[25,5,5,22,27,[[830,1,1,22,23],[831,3,3,23,26],[839,1,1,26,27]]],[33,1,1,27,28,[[902,1,1,27,28]]],[35,1,1,28,29,[[908,1,1,28,29]]]],[43,240,241,242,10070,10260,10261,10262,12703,12826,13523,14931,15305,17895,17998,18032,18033,18034,18361,18508,18575,20054,21193,21208,21209,21213,21430,22721,22830]]],["+",[2,2,[[22,2,2,0,2,[[689,1,1,0,1],[698,1,1,1,2]]]],[17895,18034]]],["Cush",[6,6,[[0,3,3,0,3,[[9,3,3,0,3]]],[12,3,3,3,6,[[338,3,3,3,6]]]],[240,241,242,10260,10261,10262]]],["Ethiopia",[18,18,[[0,1,1,0,1,[[1,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[16,2,2,2,4,[[426,1,1,2,3],[433,1,1,3,4]]],[17,1,1,4,5,[[463,1,1,4,5]]],[18,2,2,5,7,[[545,1,1,5,6],[564,1,1,6,7]]],[22,5,5,7,12,[[696,1,1,7,8],[698,1,1,8,9],[715,1,1,9,10],[721,1,1,10,11],[723,1,1,11,12]]],[25,4,4,12,16,[[830,1,1,12,13],[831,2,2,13,15],[839,1,1,15,16]]],[33,1,1,16,17,[[902,1,1,16,17]]],[35,1,1,17,18,[[908,1,1,17,18]]]],[43,10070,12703,12826,13523,14931,15305,17998,18032,18361,18508,18575,21193,21208,21209,21430,22721,22830]]],["Ethiopians",[3,3,[[22,1,1,0,1,[[698,1,1,0,1]]],[23,1,1,1,2,[[790,1,1,1,2]]],[25,1,1,2,3,[[831,1,1,2,3]]]],[18033,20054,21213]]]]},{"k":"H3569","v":[["*",[23,19,[[9,8,5,0,5,[[284,8,5,0,5]]],[13,7,6,5,11,[[378,1,1,5,6],[380,4,3,6,9],[382,1,1,9,10],[387,1,1,10,11]]],[23,5,5,11,16,[[757,1,1,11,12],[782,3,3,12,15],[783,1,1,15,16]]],[26,1,1,16,17,[[860,1,1,16,17]]],[29,1,1,17,18,[[887,1,1,17,18]]],[35,1,1,18,19,[[907,1,1,18,19]]]],[8499,8500,8501,8509,8510,11440,11484,11487,11488,11517,11640,19289,19902,19905,19907,19939,22079,22502,22817]]],["+",[1,1,[[13,1,1,0,1,[[380,1,1,0,1]]]],[11488]]],["Cushi",[8,5,[[9,8,5,0,5,[[284,8,5,0,5]]]],[8499,8500,8501,8509,8510]]],["Ethiopian",[6,6,[[13,1,1,0,1,[[380,1,1,0,1]]],[23,5,5,1,6,[[757,1,1,1,2],[782,3,3,2,5],[783,1,1,5,6]]]],[11484,19289,19902,19905,19907,19939]]],["Ethiopians",[8,7,[[13,5,4,0,4,[[378,1,1,0,1],[380,2,1,1,2],[382,1,1,2,3],[387,1,1,3,4]]],[26,1,1,4,5,[[860,1,1,4,5]]],[29,1,1,5,6,[[887,1,1,5,6]]],[35,1,1,6,7,[[907,1,1,6,7]]]],[11440,11487,11517,11640,22079,22502,22817]]]]},{"k":"H3570","v":[["Cushi",[2,2,[[23,1,1,0,1,[[780,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]]],[19856,22788]]]]},{"k":"H3571","v":[["Ethiopian",[2,1,[[3,2,1,0,1,[[128,2,1,0,1]]]],[4060]]]]},{"k":"H3572","v":[["Cushan",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22775]]]]},{"k":"H3573","v":[["Chushanrishathaim",[4,2,[[6,4,2,0,2,[[213,4,2,0,2]]]],[6576,6578]]]]},{"k":"H3574","v":[["chains",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14906]]]]},{"k":"H3575","v":[["*",[2,2,[[11,2,2,0,2,[[329,2,2,0,2]]]],[10007,10013]]],["+",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10007]]],["Cuth",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10013]]]]},{"k":"H3576","v":[["*",[17,17,[[3,1,1,0,1,[[139,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]],[17,4,4,3,7,[[441,1,1,3,4],[459,1,1,4,5],[469,1,1,5,6],[476,1,1,6,7]]],[18,3,3,7,10,[[555,1,1,7,8],[566,1,1,8,9],[593,1,1,9,10]]],[19,2,2,10,12,[[641,1,1,10,11],[657,1,1,11,12]]],[22,2,2,12,14,[[735,1,1,12,13],[736,1,1,13,14]]],[25,1,1,14,15,[[814,1,1,14,15]]],[32,1,1,15,16,[[894,1,1,15,16]]],[34,1,1,16,17,[[904,1,1,16,17]]]],[4435,6962,9619,13006,13461,13689,13897,15149,15361,15859,16777,17257,18776,18797,20727,22606,22751]]],["+",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9619]]],["fail",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18797]]],["liar",[2,2,[[17,1,1,0,1,[[459,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[13461,17257]]],["liars",[1,1,[[18,1,1,0,1,[[593,1,1,0,1]]]],[15859]]],["lie",[7,7,[[3,1,1,0,1,[[139,1,1,0,1]]],[17,2,2,1,3,[[441,1,1,1,2],[469,1,1,2,3]]],[18,1,1,3,4,[[566,1,1,3,4]]],[19,1,1,4,5,[[641,1,1,4,5]]],[32,1,1,5,6,[[894,1,1,5,6]]],[34,1,1,6,7,[[904,1,1,6,7]]]],[4435,13006,13689,15361,16777,22606,22751]]],["lied",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[22,1,1,1,2,[[735,1,1,1,2]]]],[15149,18776]]],["lies",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6962]]],["lying",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20727]]],["vain",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13897]]]]},{"k":"H3577","v":[["*",[30,30,[[6,1,1,0,1,[[226,1,1,0,1]]],[18,6,6,1,7,[[481,1,1,1,2],[482,1,1,2,3],[517,1,1,3,4],[535,1,1,4,5],[539,2,2,5,7]]],[19,9,9,7,16,[[633,1,1,7,8],[641,2,2,8,10],[646,3,3,10,13],[648,1,1,13,14],[650,1,1,14,15],[657,1,1,15,16]]],[22,2,2,16,18,[[706,2,2,16,18]]],[25,7,7,18,25,[[814,5,5,18,23],[822,1,1,23,24],[823,1,1,24,25]]],[26,1,1,25,26,[[860,1,1,25,26]]],[27,2,2,26,28,[[868,1,1,26,27],[873,1,1,27,28]]],[29,1,1,28,29,[[880,1,1,28,29]]],[35,1,1,29,30,[[908,1,1,29,30]]]],[6959,13967,13979,14529,14782,14831,14836,16559,16777,16797,16930,16934,16947,17012,17047,17259,18179,18181,20714,20715,20716,20717,20727,20973,21004,22063,22191,22253,22383,22833]]],["+",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17259]]],["deceitful",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17047]]],["false",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17012]]],["leasing",[2,2,[[18,2,2,0,2,[[481,1,1,0,1],[482,1,1,1,2]]]],[13967,13979]]],["liar",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16947]]],["lie",[2,2,[[18,1,1,0,1,[[539,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[14836,20973]]],["lies",[20,20,[[6,1,1,0,1,[[226,1,1,0,1]]],[18,3,3,1,4,[[517,1,1,1,2],[535,1,1,2,3],[539,1,1,3,4]]],[19,5,5,4,9,[[633,1,1,4,5],[641,2,2,5,7],[646,2,2,7,9]]],[22,2,2,9,11,[[706,2,2,9,11]]],[25,4,4,11,15,[[814,3,3,11,14],[823,1,1,14,15]]],[26,1,1,15,16,[[860,1,1,15,16]]],[27,2,2,16,18,[[868,1,1,16,17],[873,1,1,17,18]]],[29,1,1,18,19,[[880,1,1,18,19]]],[35,1,1,19,20,[[908,1,1,19,20]]]],[6959,14529,14782,14831,16559,16777,16797,16930,16934,18179,18181,20716,20717,20727,21004,22063,22191,22253,22383,22833]]],["lying",[2,2,[[25,2,2,0,2,[[814,2,2,0,2]]]],[20714,20715]]]]},{"k":"H3578","v":[["Chozeba",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10407]]]]},{"k":"H3579","v":[["Cozbi",[2,2,[[3,2,2,0,2,[[141,2,2,0,2]]]],[4486,4489]]]]},{"k":"H3580","v":[["Chezib",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1124]]]]},{"k":"H3581","v":[["*",[126,121,[[0,3,3,0,3,[[3,1,1,0,1],[30,1,1,1,2],[48,1,1,2,3]]],[1,3,3,3,6,[[58,1,1,3,4],[64,1,1,4,5],[81,1,1,5,6]]],[2,2,2,6,8,[[100,1,1,6,7],[115,1,1,7,8]]],[3,2,2,8,10,[[130,2,2,8,10]]],[4,4,4,10,14,[[156,1,1,10,11],[160,2,2,11,13],[161,1,1,13,14]]],[5,3,2,14,16,[[200,2,1,14,15],[203,1,1,15,16]]],[6,8,8,16,24,[[216,1,1,16,17],[226,7,7,17,24]]],[8,4,4,24,28,[[237,1,1,24,25],[263,2,2,25,27],[265,1,1,27,28]]],[10,1,1,28,29,[[309,1,1,28,29]]],[11,2,2,29,31,[[329,1,1,29,30],[331,1,1,30,31]]],[12,4,4,31,35,[[363,1,1,31,32],[366,3,3,32,35]]],[13,8,8,35,43,[[368,1,1,35,36],[379,1,1,36,37],[380,1,1,37,38],[386,2,2,38,40],[388,1,1,40,41],[391,1,1,41,42],[392,1,1,42,43]]],[14,2,2,43,45,[[404,1,1,43,44],[412,1,1,44,45]]],[15,2,2,45,47,[[413,1,1,45,46],[416,1,1,46,47]]],[17,21,20,47,67,[[438,1,1,47,48],[441,4,3,48,51],[444,2,2,51,53],[458,1,1,53,54],[459,1,1,54,55],[461,2,2,55,57],[465,2,2,57,59],[466,1,1,59,60],[471,3,3,60,63],[472,1,1,63,64],[474,2,2,64,66],[475,1,1,66,67]]],[18,11,11,67,78,[[499,1,1,67,68],[506,1,1,68,69],[508,1,1,69,70],[510,1,1,70,71],[515,1,1,71,72],[542,1,1,72,73],[548,1,1,73,74],[579,1,1,74,75],[580,1,1,75,76],[588,1,1,76,77],[624,1,1,77,78]]],[19,5,5,78,83,[[632,1,1,78,79],[641,1,1,79,80],[647,1,1,80,81],[651,2,2,81,83]]],[20,2,2,83,85,[[662,1,1,83,84],[667,1,1,84,85]]],[22,12,11,85,96,[[688,1,1,85,86],[715,1,1,86,87],[718,4,4,87,91],[719,1,1,91,92],[722,2,1,92,93],[727,1,1,93,94],[728,1,1,94,95],[741,1,1,95,96]]],[23,5,5,96,101,[[754,1,1,96,97],[771,1,1,97,98],[776,1,1,98,99],[792,1,1,99,100],[795,1,1,100,101]]],[24,2,2,101,103,[[797,2,2,101,103]]],[26,13,11,103,114,[[850,1,1,103,104],[857,5,4,104,108],[859,4,3,108,111],[860,3,3,111,114]]],[27,1,1,114,115,[[868,1,1,114,115]]],[29,1,1,115,116,[[880,1,1,115,116]]],[32,1,1,116,117,[[895,1,1,116,117]]],[33,2,2,117,119,[[900,1,1,117,118],[901,1,1,118,119]]],[34,1,1,119,120,[[903,1,1,119,120]]],[37,1,1,120,121,[[914,1,1,120,121]]]],[91,879,1476,1758,1926,2449,3027,3544,4121,4125,5041,5154,5155,5186,6198,6292,6668,6954,6955,6958,6964,6966,6968,6979,7249,7962,7964,7982,9395,10019,10064,11085,11166,11176,11178,11217,11473,11486,11593,11599,11653,11712,11745,12096,12265,12306,12369,12921,12989,12990,13000,13055,13070,13425,13458,13469,13479,13559,13575,13627,13741,13755,13758,13792,13845,13855,13880,14219,14312,14341,14382,14500,14866,14985,15544,15569,15799,16356,16527,16776,16983,17084,17089,17382,17485,17863,18355,18429,18446,18449,18451,18452,18545,18640,18664,18867,19213,19601,19748,20125,20227,20316,20324,21741,21967,21968,21983,21985,22023,22031,22032,22042,22051,22061,22187,22393,22616,22687,22700,22742,22928]]],["+",[5,5,[[12,1,1,0,1,[[366,1,1,0,1]]],[13,1,1,1,2,[[368,1,1,1,2]]],[17,2,2,2,4,[[438,1,1,2,3],[441,1,1,3,4]]],[23,1,1,4,5,[[792,1,1,4,5]]]],[11178,11217,12921,13000,20125]]],["ability",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[26,1,1,1,2,[[850,1,1,1,2]]]],[12096,21741]]],["able",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12265]]],["chameleon",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3027]]],["force",[2,2,[[17,1,1,0,1,[[465,1,1,0,1]]],[29,1,1,1,2,[[880,1,1,1,2]]]],[13575,22393]]],["fruits",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13627]]],["might",[7,7,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[6,2,2,2,4,[[216,1,1,2,3],[226,1,1,3,4]]],[12,1,1,4,5,[[366,1,1,4,5]]],[13,1,1,5,6,[[386,1,1,5,6]]],[20,1,1,6,7,[[667,1,1,6,7]]]],[1476,4121,6668,6979,11166,11599,17485]]],["power",[47,46,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,3,3,1,4,[[58,1,1,1,2],[64,1,1,2,3],[81,1,1,3,4]]],[3,1,1,4,5,[[130,1,1,4,5]]],[4,4,4,5,9,[[156,1,1,5,6],[160,2,2,6,8],[161,1,1,8,9]]],[5,1,1,9,10,[[203,1,1,9,10]]],[8,1,1,10,11,[[265,1,1,10,11]]],[11,1,1,11,12,[[329,1,1,11,12]]],[12,1,1,12,13,[[366,1,1,12,13]]],[13,5,5,13,18,[[380,1,1,13,14],[386,1,1,14,15],[388,1,1,15,16],[391,1,1,16,17],[392,1,1,17,18]]],[15,1,1,18,19,[[413,1,1,18,19]]],[17,6,6,19,25,[[458,1,1,19,20],[459,1,1,20,21],[461,2,2,21,23],[471,1,1,23,24],[472,1,1,24,25]]],[18,2,2,25,27,[[588,1,1,25,26],[624,1,1,26,27]]],[20,1,1,27,28,[[662,1,1,27,28]]],[22,3,3,28,31,[[718,2,2,28,30],[728,1,1,30,31]]],[23,4,4,31,35,[[754,1,1,31,32],[771,1,1,32,33],[776,1,1,33,34],[795,1,1,34,35]]],[26,7,6,35,41,[[857,5,4,35,39],[860,2,2,39,41]]],[32,1,1,41,42,[[895,1,1,41,42]]],[33,2,2,42,44,[[900,1,1,42,43],[901,1,1,43,44]]],[34,1,1,44,45,[[903,1,1,44,45]]],[37,1,1,45,46,[[914,1,1,45,46]]]],[879,1758,1926,2449,4125,5041,5154,5155,5186,6292,7982,10019,11176,11486,11593,11653,11712,11745,12306,13425,13458,13469,13479,13758,13792,15799,16356,17382,18446,18449,18664,19213,19601,19748,20227,21967,21968,21983,21985,22042,22061,22616,22687,22700,22742,22928]]],["powerful",[1,1,[[18,1,1,0,1,[[506,1,1,0,1]]]],[14312]]],["strength",[58,54,[[0,1,1,0,1,[[3,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[5,2,1,2,3,[[200,2,1,2,3]]],[6,6,6,3,9,[[226,6,6,3,9]]],[8,3,3,9,12,[[237,1,1,9,10],[263,2,2,10,12]]],[10,1,1,12,13,[[309,1,1,12,13]]],[11,1,1,13,14,[[331,1,1,13,14]]],[12,1,1,14,15,[[363,1,1,14,15]]],[13,1,1,15,16,[[379,1,1,15,16]]],[15,1,1,16,17,[[416,1,1,16,17]]],[17,11,10,17,27,[[441,3,2,17,19],[444,2,2,19,21],[465,1,1,21,22],[471,2,2,22,24],[474,2,2,24,26],[475,1,1,26,27]]],[18,8,8,27,35,[[499,1,1,27,28],[508,1,1,28,29],[510,1,1,29,30],[515,1,1,30,31],[542,1,1,31,32],[548,1,1,32,33],[579,1,1,33,34],[580,1,1,34,35]]],[19,4,4,35,39,[[641,1,1,35,36],[647,1,1,36,37],[651,2,2,37,39]]],[22,9,8,39,47,[[688,1,1,39,40],[715,1,1,40,41],[718,2,2,41,43],[719,1,1,43,44],[722,2,1,44,45],[727,1,1,45,46],[741,1,1,46,47]]],[24,2,2,47,49,[[797,2,2,47,49]]],[26,5,4,49,53,[[859,4,3,49,52],[860,1,1,52,53]]],[27,1,1,53,54,[[868,1,1,53,54]]]],[91,3544,6198,6954,6955,6958,6964,6966,6968,7249,7962,7964,9395,10064,11085,11473,12369,12989,12990,13055,13070,13559,13741,13755,13845,13855,13880,14219,14341,14382,14500,14866,14985,15544,15569,16776,16983,17084,17089,17863,18355,18429,18451,18452,18545,18640,18867,20316,20324,22023,22031,22032,22051,22187]]],["wealth",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16527]]]]},{"k":"H3582","v":[["*",[32,30,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,2,2,1,3,[[58,1,1,1,2],[72,1,1,2,3]]],[5,1,1,3,4,[[193,1,1,3,4]]],[8,3,2,4,6,[[238,3,2,4,6]]],[9,2,2,6,8,[[280,1,1,6,7],[284,1,1,7,8]]],[10,1,1,8,9,[[303,1,1,8,9]]],[13,1,1,9,10,[[398,1,1,9,10]]],[17,7,7,10,17,[[439,1,1,10,11],[441,1,1,11,12],[450,2,2,12,14],[455,1,1,14,15],[457,1,1,15,16],[462,1,1,16,17]]],[18,5,5,17,22,[[517,1,1,17,18],[546,1,1,18,19],[555,1,1,19,20],[560,1,1,20,21],[616,1,1,21,22]]],[22,1,1,22,23,[[681,1,1,22,23]]],[23,3,3,23,26,[[782,2,2,23,25],[794,1,1,25,26]]],[27,1,1,26,27,[[866,1,1,26,27]]],[37,4,3,27,30,[[921,4,3,27,30]]]],[1438,1757,2167,5995,7293,7294,8374,8491,9218,11896,12937,12988,13221,13231,13338,13409,13492,14535,14940,15117,15245,16254,17716,19909,19920,20168,22155,23036,23037,23044]]],["Hide",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8374]]],["conceal",[2,2,[[17,1,1,0,1,[[462,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]]],[13492,20168]]],["concealed",[2,2,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,1,1,1,2,[[517,1,1,1,2]]]],[12988,14535]]],["desolate",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13231]]],["down",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13409]]],["hid",[6,6,[[8,1,1,0,1,[[238,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[17,1,1,2,3,[[450,1,1,2,3]]],[18,2,2,3,5,[[546,1,1,3,4],[616,1,1,4,5]]],[27,1,1,5,6,[[866,1,1,5,6]]]],[7294,8491,13221,14940,16254,22155]]],["hide",[9,8,[[0,1,1,0,1,[[46,1,1,0,1]]],[5,1,1,1,2,[[193,1,1,1,2]]],[8,2,1,2,3,[[238,2,1,2,3]]],[17,1,1,3,4,[[455,1,1,3,4]]],[18,1,1,4,5,[[555,1,1,4,5]]],[22,1,1,5,6,[[681,1,1,5,6]]],[23,2,2,6,8,[[782,2,2,6,8]]]],[1438,5995,7293,13338,15117,17716,19909,19920]]],["off",[10,9,[[1,2,2,0,2,[[58,1,1,0,1],[72,1,1,1,2]]],[10,1,1,2,3,[[303,1,1,2,3]]],[13,1,1,3,4,[[398,1,1,3,4]]],[17,1,1,4,5,[[439,1,1,4,5]]],[18,1,1,5,6,[[560,1,1,5,6]]],[37,4,3,6,9,[[921,4,3,6,9]]]],[1757,2167,9218,11896,12937,15245,23036,23037,23044]]]]},{"k":"H3583","v":[["paintedst",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21047]]]]},{"k":"H3584","v":[["*",[22,22,[[0,1,1,0,1,[[17,1,1,0,1]]],[2,3,3,1,4,[[95,2,2,1,3],[108,1,1,3,4]]],[4,1,1,4,5,[[185,1,1,4,5]]],[5,2,2,5,7,[[193,1,1,5,6],[210,1,1,6,7]]],[9,1,1,7,8,[[288,1,1,7,8]]],[10,1,1,8,9,[[303,1,1,8,9]]],[17,2,2,9,11,[[443,1,1,9,10],[466,1,1,10,11]]],[18,4,4,11,15,[[495,1,1,11,12],[543,1,1,12,13],[558,1,1,13,14],[586,1,1,14,15]]],[19,1,1,15,16,[[657,1,1,15,16]]],[22,1,1,16,17,[[737,1,1,16,17]]],[23,1,1,17,18,[[749,1,1,17,18]]],[27,2,2,18,20,[[865,1,1,18,19],[870,1,1,19,20]]],[34,1,1,20,21,[[905,1,1,20,21]]],[37,1,1,21,22,[[923,1,1,21,22]]]],[439,2851,2852,3292,5839,5987,6503,8647,9202,13047,13616,14162,14876,15232,15779,17260,18813,19070,22135,22210,22785,23063]]],["belied",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19070]]],["deceive",[1,1,[[37,1,1,0,1,[[923,1,1,0,1]]]],[23063]]],["denied",[2,2,[[0,1,1,0,1,[[17,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]]],[439,13616]]],["deny",[3,3,[[5,1,1,0,1,[[210,1,1,0,1]]],[17,1,1,1,2,[[443,1,1,1,2]]],[19,1,1,2,3,[[657,1,1,2,3]]]],[6503,13047,17260]]],["dissembled",[1,1,[[5,1,1,0,1,[[193,1,1,0,1]]]],[5987]]],["fail",[2,2,[[27,1,1,0,1,[[870,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[22210,22785]]],["faileth",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15779]]],["falsely",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3292]]],["liars",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5839]]],["lie",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2851]]],["lied",[1,1,[[10,1,1,0,1,[[303,1,1,0,1]]]],[9202]]],["lieth",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2852]]],["lying",[2,2,[[22,1,1,0,1,[[737,1,1,0,1]]],[27,1,1,1,2,[[865,1,1,1,2]]]],[18813,22135]]],["submit",[2,2,[[18,2,2,0,2,[[495,1,1,0,1],[543,1,1,1,2]]]],[14162,14876]]],["submitted",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15232]]],["themselves",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8647]]]]},{"k":"H3585","v":[["*",[6,6,[[17,1,1,0,1,[[451,1,1,0,1]]],[18,1,1,1,2,[[536,1,1,1,2]]],[27,3,3,2,5,[[868,1,1,2,3],[871,1,1,3,4],[872,1,1,4,5]]],[33,1,1,5,6,[[902,1,1,5,6]]]],[13246,14802,22181,22238,22252,22713]]],["+",[1,1,[[18,1,1,0,1,[[536,1,1,0,1]]]],[14802]]],["leanness",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13246]]],["lies",[4,4,[[27,3,3,0,3,[[868,1,1,0,1],[871,1,1,1,2],[872,1,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[22181,22238,22252,22713]]]]},{"k":"H3586","v":[["lying",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18226]]]]},{"k":"H3587","v":[["burning",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17731]]]]},{"k":"H3588","v":[["*",[4453,3886,[[0,286,252,0,252,[[0,6,6,0,6],[1,4,4,6,10],[2,13,10,10,20],[3,4,4,20,24],[4,1,1,24,25],[5,8,7,25,32],[6,2,2,32,34],[7,3,3,34,37],[8,1,1,37,38],[9,1,1,38,39],[10,1,1,39,40],[11,5,5,40,45],[12,5,5,45,50],[13,1,1,50,51],[14,4,4,51,55],[15,4,4,55,59],[16,2,2,59,61],[17,6,4,61,65],[18,7,6,65,71],[19,7,6,71,77],[20,10,9,77,86],[21,4,3,86,89],[23,3,3,89,92],[24,3,3,92,95],[25,11,10,95,105],[26,4,4,105,109],[27,5,5,109,114],[28,13,9,114,123],[29,8,8,123,131],[30,17,15,131,146],[31,11,9,146,155],[32,4,3,155,158],[33,4,4,158,162],[34,3,3,162,165],[35,1,1,165,166],[36,6,6,166,172],[37,9,6,172,178],[38,5,5,178,183],[39,4,3,183,186],[40,7,7,186,193],[41,13,11,193,204],[42,12,9,204,213],[43,8,8,213,221],[44,9,8,221,229],[45,5,5,229,234],[46,8,6,234,240],[47,3,3,240,243],[48,7,5,243,248],[49,4,4,248,252]]],[1,198,178,252,430,[[50,4,3,252,255],[51,4,4,255,259],[52,10,8,259,267],[53,8,7,267,274],[54,2,2,274,276],[55,2,2,276,278],[56,4,4,278,282],[57,5,5,282,287],[58,10,9,287,296],[59,9,9,296,305],[61,11,10,305,315],[62,10,9,315,324],[63,7,6,324,330],[64,5,5,330,335],[65,9,9,335,344],[66,2,2,344,346],[67,8,7,346,353],[68,4,4,353,357],[69,6,6,357,363],[70,13,12,363,375],[71,13,11,375,386],[72,14,12,386,398],[78,5,5,398,403],[79,1,1,403,404],[80,5,3,404,407],[81,9,7,407,414],[82,6,5,414,419],[83,10,9,419,428],[89,2,2,428,430]]],[2,145,135,430,565,[[90,1,1,430,431],[91,3,3,431,434],[93,1,1,434,435],[94,6,6,435,441],[95,2,2,441,443],[96,3,3,443,446],[97,2,2,446,448],[98,1,1,448,449],[99,6,5,449,454],[100,12,10,454,464],[101,1,1,464,465],[102,15,15,465,480],[103,3,3,480,483],[104,7,6,483,489],[105,2,2,489,491],[106,4,2,491,493],[107,5,5,493,498],[108,8,7,498,505],[109,7,7,505,512],[110,12,10,512,522],[111,13,13,522,535],[112,4,4,535,539],[113,5,5,539,544],[114,18,17,544,561],[115,2,2,561,563],[116,2,2,563,565]]],[3,129,117,565,682,[[119,1,1,565,566],[121,5,4,566,570],[122,4,4,570,574],[123,1,1,574,575],[124,2,2,575,577],[125,3,3,577,580],[126,5,5,580,585],[127,9,8,585,593],[128,1,1,593,594],[129,3,3,594,597],[130,9,8,597,605],[131,8,8,605,613],[132,12,10,613,623],[133,1,1,623,624],[134,3,3,624,627],[135,3,3,627,630],[136,2,2,630,632],[137,8,8,632,640],[138,15,12,640,652],[139,2,2,652,654],[140,2,2,654,656],[141,1,1,656,657],[142,5,3,657,660],[143,3,3,660,663],[146,4,4,663,667],[148,5,4,667,671],[149,2,2,671,673],[150,2,2,673,675],[151,6,5,675,680],[152,2,2,680,682]]],[4,275,242,682,924,[[153,3,3,682,685],[154,8,5,685,690],[155,6,6,690,696],[156,15,14,696,710],[157,8,8,710,718],[158,4,4,718,722],[159,12,12,722,734],[160,6,5,734,739],[161,7,6,739,745],[162,3,3,745,748],[163,6,6,748,754],[164,14,12,754,766],[165,8,8,766,774],[166,10,7,774,781],[167,16,13,781,794],[168,6,6,794,800],[169,4,4,800,804],[170,6,6,804,810],[171,7,5,810,815],[172,9,6,815,821],[173,11,9,821,830],[174,12,11,830,841],[175,12,10,841,851],[176,14,13,851,864],[177,4,4,864,868],[178,3,3,868,871],[179,1,1,871,872],[180,11,11,872,883],[181,5,5,883,888],[182,8,7,888,895],[183,13,9,895,904],[184,19,16,904,920],[185,3,3,920,923],[186,1,1,923,924]]],[5,103,84,924,1008,[[187,4,4,924,928],[188,10,8,928,936],[189,4,4,936,940],[190,2,2,940,942],[191,6,5,942,947],[192,3,3,947,950],[193,5,4,950,954],[194,6,5,954,959],[195,4,4,959,963],[196,11,9,963,972],[197,4,3,972,975],[200,6,4,975,979],[201,1,1,979,980],[203,11,6,980,986],[204,2,1,986,987],[205,1,1,987,988],[206,2,1,988,989],[207,1,1,989,990],[208,7,5,990,995],[209,6,6,995,1001],[210,7,7,1001,1008]]],[6,112,96,1008,1104,[[211,6,5,1008,1013],[212,3,2,1013,1015],[213,3,3,1015,1018],[214,6,6,1018,1024],[215,1,1,1024,1025],[216,10,8,1025,1033],[217,2,2,1033,1035],[218,11,9,1035,1044],[219,8,8,1044,1052],[220,1,1,1052,1053],[221,5,5,1053,1058],[222,3,3,1058,1061],[223,8,6,1061,1067],[224,7,5,1067,1072],[225,6,6,1072,1078],[226,7,6,1078,1084],[227,2,1,1084,1085],[228,7,7,1085,1092],[230,9,7,1092,1099],[231,7,5,1099,1104]]],[7,27,20,1104,1124,[[232,11,8,1104,1112],[233,3,2,1112,1114],[234,9,6,1114,1120],[235,4,4,1120,1124]]],[8,251,201,1124,1325,[[236,6,6,1124,1130],[237,12,12,1130,1142],[238,10,8,1142,1150],[239,8,7,1150,1157],[240,3,2,1157,1159],[241,5,4,1159,1163],[242,2,2,1163,1165],[243,4,3,1165,1168],[244,11,7,1168,1175],[245,7,6,1175,1181],[246,2,2,1181,1183],[247,11,8,1183,1191],[248,7,5,1191,1196],[249,16,12,1196,1208],[250,9,6,1208,1214],[251,7,5,1214,1219],[252,14,11,1219,1230],[253,5,5,1230,1235],[254,2,1,1235,1236],[255,23,18,1236,1254],[256,9,6,1254,1260],[257,12,7,1260,1267],[258,12,11,1267,1278],[259,7,6,1278,1284],[260,11,9,1284,1293],[261,11,10,1293,1303],[262,3,3,1303,1306],[263,6,6,1306,1312],[264,4,3,1312,1315],[265,8,7,1315,1322],[266,4,3,1322,1325]]],[9,159,133,1325,1458,[[267,8,6,1325,1331],[268,4,3,1331,1334],[269,9,8,1334,1342],[270,4,4,1342,1346],[271,6,5,1346,1351],[272,2,2,1351,1353],[273,9,9,1353,1362],[274,2,2,1362,1364],[275,3,3,1364,1367],[276,7,7,1367,1374],[277,4,4,1374,1378],[278,10,8,1378,1386],[279,11,9,1386,1395],[280,8,8,1395,1403],[281,5,4,1403,1407],[282,7,6,1407,1413],[283,8,7,1413,1420],[284,9,7,1420,1427],[285,21,12,1427,1439],[286,2,2,1439,1441],[287,1,1,1441,1442],[288,9,9,1442,1451],[289,7,4,1451,1455],[290,3,3,1455,1458]]],[10,142,115,1458,1573,[[291,8,6,1458,1464],[292,17,14,1464,1478],[293,10,8,1478,1486],[294,1,1,1486,1487],[295,6,3,1487,1490],[296,1,1,1490,1491],[298,24,17,1491,1508],[299,1,1,1508,1509],[300,1,1,1509,1510],[301,9,7,1510,1517],[302,5,5,1517,1522],[303,4,4,1522,1526],[304,5,5,1526,1531],[305,1,1,1531,1532],[306,1,1,1532,1533],[307,5,5,1533,1538],[308,12,9,1538,1547],[309,6,6,1547,1553],[310,9,8,1553,1561],[311,8,5,1561,1566],[312,8,7,1566,1573]]],[11,109,95,1573,1668,[[313,4,4,1573,1577],[314,5,5,1577,1582],[315,6,6,1582,1588],[316,9,8,1588,1596],[317,12,7,1596,1603],[318,4,4,1603,1607],[319,3,2,1607,1609],[320,8,7,1609,1616],[321,5,5,1616,1621],[322,3,3,1621,1624],[323,2,2,1624,1626],[324,4,4,1626,1630],[325,5,2,1630,1632],[326,2,2,1632,1634],[327,1,1,1634,1635],[329,5,5,1635,1640],[330,9,9,1640,1649],[331,7,5,1649,1654],[332,6,5,1654,1659],[334,2,2,1659,1661],[335,3,3,1661,1664],[336,2,2,1664,1666],[337,2,2,1666,1668]]],[12,105,94,1668,1762,[[338,1,1,1668,1669],[339,1,1,1669,1670],[341,4,4,1670,1674],[342,7,5,1674,1679],[343,1,1,1679,1680],[344,3,3,1680,1683],[346,4,4,1683,1687],[347,4,3,1687,1690],[348,1,1,1690,1691],[349,6,6,1691,1697],[350,4,4,1697,1701],[351,4,3,1701,1704],[352,5,3,1704,1707],[353,6,5,1707,1712],[354,6,6,1712,1718],[355,2,2,1718,1720],[356,8,8,1720,1728],[358,8,7,1728,1735],[359,5,5,1735,1740],[360,4,4,1740,1744],[361,1,1,1744,1745],[363,3,3,1745,1748],[364,1,1,1748,1749],[365,7,7,1749,1756],[366,9,6,1756,1762]]],[13,188,151,1762,1913,[[367,4,4,1762,1766],[368,5,4,1766,1770],[370,1,1,1770,1771],[371,4,3,1771,1774],[372,18,12,1774,1786],[373,7,5,1786,1791],[374,4,3,1791,1794],[375,1,1,1794,1795],[376,3,3,1795,1798],[377,6,5,1798,1803],[378,5,5,1803,1808],[379,4,4,1808,1812],[380,7,5,1812,1817],[381,6,5,1817,1822],[382,4,3,1822,1825],[383,2,2,1825,1827],[384,7,6,1827,1833],[385,4,3,1833,1836],[386,10,8,1836,1844],[387,4,4,1844,1848],[388,8,7,1848,1855],[389,4,3,1855,1858],[390,7,6,1858,1864],[391,9,5,1864,1869],[392,10,7,1869,1876],[393,1,1,1876,1877],[394,8,6,1877,1883],[395,6,6,1883,1889],[396,11,7,1889,1896],[397,2,2,1896,1898],[398,7,6,1898,1904],[399,2,2,1904,1906],[400,1,1,1906,1907],[401,5,5,1907,1912],[402,1,1,1912,1913]]],[14,24,21,1913,1934,[[405,4,3,1913,1916],[406,3,3,1916,1919],[408,2,2,1919,1921],[409,2,2,1921,1923],[410,2,1,1923,1924],[411,7,6,1924,1930],[412,4,4,1930,1934]]],[15,41,37,1934,1971,[[414,2,2,1934,1936],[416,6,5,1936,1941],[417,1,1,1941,1942],[418,8,7,1942,1949],[419,1,1,1949,1950],[420,7,6,1950,1956],[421,6,5,1956,1961],[422,1,1,1961,1962],[423,1,1,1962,1963],[424,4,4,1963,1967],[425,4,4,1967,1971]]],[16,33,30,1971,2001,[[426,6,6,1971,1977],[427,5,5,1977,1982],[428,4,4,1982,1986],[429,2,2,1986,1988],[430,1,1,1988,1989],[431,1,1,1989,1990],[432,4,2,1990,1992],[433,4,4,1992,1996],[434,5,4,1996,2000],[435,1,1,2000,2001]]],[17,188,168,2001,2169,[[436,3,2,2001,2003],[437,3,2,2003,2005],[438,6,6,2005,2011],[439,1,1,2011,2012],[440,7,7,2012,2019],[441,8,7,2019,2026],[442,7,6,2026,2032],[443,4,3,2032,2035],[444,7,7,2035,2042],[445,6,5,2042,2047],[446,6,5,2047,2052],[447,2,2,2052,2054],[448,5,5,2054,2059],[449,2,2,2059,2061],[450,10,9,2061,2070],[451,2,2,2070,2072],[452,1,1,2072,2073],[453,1,1,2073,2074],[454,4,4,2074,2078],[455,3,3,2078,2081],[456,5,4,2081,2085],[457,7,6,2085,2091],[458,3,3,2091,2094],[459,2,1,2094,2095],[460,1,1,2095,2096],[462,4,2,2096,2098],[463,2,2,2098,2100],[464,2,2,2100,2102],[465,3,3,2102,2105],[466,12,10,2105,2115],[467,7,6,2115,2121],[468,4,4,2121,2125],[469,11,10,2125,2135],[470,3,3,2135,2138],[471,10,10,2138,2148],[472,4,3,2148,2151],[473,6,5,2151,2156],[474,6,6,2156,2162],[475,3,3,2162,2165],[476,1,1,2165,2166],[477,4,3,2166,2169]]],[18,439,406,2169,2575,[[478,3,3,2169,2172],[479,1,1,2172,2173],[480,2,2,2173,2175],[481,2,2,2175,2177],[482,5,5,2177,2182],[483,4,3,2182,2185],[485,3,2,2185,2187],[486,4,4,2187,2191],[487,2,2,2191,2193],[488,3,3,2193,2196],[489,2,1,2196,2197],[490,2,2,2197,2199],[491,2,2,2199,2201],[493,3,3,2201,2204],[494,1,1,2204,2205],[495,9,9,2205,2214],[497,1,1,2214,2215],[498,5,5,2215,2220],[499,8,7,2220,2227],[500,2,1,2227,2228],[501,1,1,2228,2229],[502,8,8,2229,2237],[503,2,2,2237,2239],[504,3,3,2239,2242],[505,2,2,2242,2244],[507,2,2,2244,2246],[508,7,7,2246,2253],[509,2,2,2253,2255],[510,4,3,2255,2258],[511,2,2,2258,2260],[512,2,2,2260,2262],[513,2,2,2262,2264],[514,12,10,2264,2274],[515,7,7,2274,2281],[516,2,2,2281,2283],[517,1,1,2283,2284],[518,3,2,2284,2286],[519,3,3,2286,2289],[520,2,2,2289,2291],[521,9,7,2291,2298],[522,1,1,2298,2299],[523,1,1,2299,2300],[524,3,3,2300,2303],[525,2,2,2303,2305],[526,7,5,2305,2310],[527,3,3,2310,2313],[528,2,2,2313,2315],[529,2,1,2315,2316],[530,2,1,2316,2317],[531,3,3,2317,2320],[532,5,5,2320,2325],[533,4,4,2325,2329],[534,2,2,2329,2331],[535,1,1,2331,2332],[536,6,6,2332,2338],[537,1,1,2338,2339],[538,2,2,2339,2341],[539,4,4,2341,2345],[540,3,3,2345,2348],[542,1,1,2348,2349],[543,1,1,2349,2350],[544,1,1,2350,2351],[546,8,8,2351,2359],[548,8,7,2359,2366],[549,1,1,2366,2367],[550,4,4,2367,2371],[551,1,1,2371,2372],[552,4,4,2372,2376],[553,1,1,2376,2377],[554,1,1,2377,2378],[555,3,3,2378,2381],[556,2,2,2381,2383],[558,1,1,2383,2384],[559,1,1,2384,2385],[560,3,3,2385,2388],[561,2,2,2388,2390],[562,1,1,2390,2391],[563,9,9,2391,2400],[565,1,1,2400,2401],[566,4,4,2401,2405],[567,5,4,2405,2409],[568,5,4,2409,2413],[569,4,3,2413,2416],[571,3,3,2416,2419],[572,2,2,2419,2421],[573,4,3,2421,2424],[574,1,1,2424,2425],[575,2,2,2425,2427],[576,1,1,2427,2428],[577,2,2,2428,2430],[579,9,8,2430,2438],[580,4,3,2438,2441],[582,2,2,2441,2443],[583,3,2,2443,2445],[584,6,5,2445,2450],[585,1,1,2450,2451],[586,5,5,2451,2456],[589,1,1,2456,2457],[591,1,1,2457,2458],[592,1,1,2458,2459],[593,5,5,2459,2464],[594,1,1,2464,2465],[595,9,7,2465,2472],[596,36,36,2472,2508],[597,2,2,2508,2510],[599,1,1,2510,2511],[600,1,1,2511,2512],[602,1,1,2512,2513],[604,1,1,2513,2514],[605,2,2,2514,2516],[607,2,2,2516,2518],[609,2,2,2518,2520],[610,1,1,2520,2521],[612,6,4,2521,2525],[613,27,26,2525,2551],[614,1,1,2551,2552],[615,5,4,2552,2556],[616,3,3,2556,2559],[617,1,1,2559,2560],[618,3,3,2560,2563],[619,3,2,2563,2565],[620,6,5,2565,2570],[624,3,2,2570,2572],[625,2,2,2572,2574],[626,1,1,2574,2575]]],[19,101,95,2575,2670,[[628,5,5,2575,2580],[629,5,5,2580,2585],[630,6,6,2585,2591],[631,8,8,2591,2599],[632,2,2,2599,2601],[633,7,6,2601,2607],[634,4,4,2607,2611],[635,4,4,2611,2615],[636,2,2,2615,2617],[638,1,1,2617,2618],[642,1,1,2618,2619],[643,2,2,2619,2621],[644,1,1,2621,2622],[645,1,1,2622,2623],[646,4,4,2623,2627],[647,1,1,2627,2628],[648,3,3,2628,2631],[649,6,5,2631,2636],[650,13,12,2636,2648],[651,7,7,2648,2655],[652,2,2,2655,2657],[653,2,1,2657,2658],[654,3,3,2658,2661],[655,1,1,2661,2662],[656,1,1,2662,2663],[657,7,5,2663,2668],[658,2,2,2668,2670]]],[20,87,73,2670,2743,[[659,1,1,2670,2671],[660,11,10,2671,2681],[661,9,5,2681,2686],[662,5,4,2686,2690],[663,12,10,2690,2700],[664,5,5,2700,2705],[665,10,10,2705,2715],[666,9,7,2715,2722],[667,12,9,2722,2731],[668,2,2,2731,2733],[669,7,6,2733,2739],[670,4,4,2739,2743]]],[21,5,5,2743,2748,[[671,1,1,2743,2744],[672,3,3,2744,2747],[678,1,1,2747,2748]]],[22,332,292,2748,3040,[[679,6,6,2748,2754],[680,5,4,2754,2758],[681,9,7,2758,2765],[682,1,1,2765,2766],[683,3,3,2766,2769],[684,3,1,2769,2770],[685,7,7,2770,2777],[686,6,6,2777,2783],[687,6,6,2783,2789],[688,8,7,2789,2796],[689,1,1,2796,2797],[690,5,5,2797,2802],[691,2,2,2802,2804],[692,7,6,2804,2810],[693,9,5,2810,2815],[694,5,4,2815,2819],[695,1,1,2819,2820],[696,2,2,2820,2822],[697,1,1,2822,2823],[699,4,4,2823,2827],[700,6,6,2827,2833],[701,4,4,2833,2837],[702,5,5,2837,2842],[703,6,5,2842,2847],[704,7,7,2847,2854],[705,2,2,2854,2856],[706,14,11,2856,2867],[707,6,6,2867,2873],[708,11,10,2873,2883],[709,4,3,2883,2886],[710,4,4,2886,2890],[711,3,3,2890,2893],[712,5,5,2893,2898],[713,1,1,2898,2899],[714,8,8,2899,2907],[715,7,5,2907,2912],[716,4,4,2912,2916],[717,2,2,2916,2918],[718,5,3,2918,2921],[719,5,4,2921,2925],[720,1,1,2925,2926],[721,8,7,2926,2933],[722,7,6,2933,2939],[723,5,5,2939,2944],[724,1,1,2944,2945],[725,2,2,2945,2947],[726,4,4,2947,2951],[727,8,7,2951,2958],[728,1,1,2958,2959],[729,5,5,2959,2964],[730,10,9,2964,2973],[731,1,1,2973,2974],[732,12,8,2974,2982],[733,8,7,2982,2989],[734,3,3,2989,2992],[735,7,6,2992,2998],[736,2,2,2998,3000],[737,9,7,3000,3007],[738,9,8,3007,3015],[739,4,4,3015,3019],[740,4,3,3019,3022],[741,3,2,3022,3024],[742,1,1,3024,3025],[743,11,9,3025,3034],[744,6,6,3034,3040]]],[23,432,368,3040,3408,[[745,6,6,3040,3046],[746,14,13,3046,3059],[747,9,9,3059,3068],[748,18,14,3068,3082],[749,7,7,3082,3089],[750,12,11,3089,3100],[751,9,9,3100,3109],[752,6,5,3109,3114],[753,14,10,3114,3124],[754,13,10,3124,3134],[755,7,7,3134,3141],[756,7,6,3141,3147],[757,7,7,3147,3154],[758,12,10,3154,3164],[759,7,7,3164,3171],[760,8,7,3171,3178],[761,5,5,3178,3183],[762,6,5,3183,3188],[763,2,2,3188,3190],[764,8,7,3190,3197],[765,2,2,3197,3199],[766,15,13,3199,3212],[767,9,8,3212,3220],[768,3,2,3220,3222],[769,9,8,3222,3230],[770,5,3,3230,3233],[771,6,6,3233,3239],[772,3,3,3239,3242],[773,11,10,3242,3252],[774,11,9,3252,3261],[775,16,14,3261,3275],[776,11,9,3275,3284],[777,6,4,3284,3288],[778,3,3,3288,3291],[779,4,4,3291,3295],[780,1,1,3295,3296],[781,5,5,3296,3301],[782,13,9,3301,3310],[783,3,2,3310,3312],[784,7,5,3312,3317],[785,3,2,3317,3319],[786,10,9,3319,3328],[787,2,2,3328,3330],[788,7,5,3330,3335],[789,2,2,3335,3337],[790,14,11,3337,3348],[791,1,1,3348,3349],[792,18,16,3349,3365],[793,14,10,3365,3375],[794,16,13,3375,3388],[795,24,19,3388,3407],[796,1,1,3407,3408]]],[24,28,24,3408,3432,[[797,14,11,3408,3419],[798,1,1,3419,3420],[799,8,7,3420,3427],[800,3,3,3427,3430],[801,2,2,3430,3432]]],[25,201,188,3432,3620,[[802,2,2,3432,3434],[803,5,3,3434,3437],[804,10,8,3437,3445],[806,2,2,3445,3447],[807,4,4,3447,3451],[808,10,8,3451,3459],[809,2,2,3459,3461],[810,1,1,3461,3462],[811,3,3,3462,3465],[812,4,3,3465,3468],[813,10,9,3468,3477],[814,4,4,3477,3481],[815,9,7,3481,3488],[816,2,2,3488,3490],[817,3,3,3490,3493],[818,2,2,3493,3495],[819,5,5,3495,3500],[820,1,1,3500,3501],[821,8,8,3501,3509],[822,7,6,3509,3515],[823,2,2,3515,3517],[824,9,9,3517,3526],[825,4,4,3526,3530],[826,8,6,3530,3536],[827,5,5,3536,3541],[829,5,5,3541,3546],[830,5,5,3546,3551],[831,6,6,3551,3557],[832,2,2,3557,3559],[833,6,6,3559,3565],[834,8,8,3565,3573],[835,3,3,3573,3576],[836,4,4,3576,3580],[837,7,7,3580,3587],[838,4,4,3587,3591],[839,1,1,3591,3592],[840,7,7,3592,3599],[841,1,1,3599,3600],[842,1,1,3600,3601],[843,5,5,3601,3606],[845,4,4,3606,3610],[846,1,1,3610,3611],[847,4,4,3611,3615],[848,4,4,3615,3619],[849,1,1,3619,3620]]],[26,24,23,3620,3643,[[857,3,3,3620,3623],[858,8,7,3623,3630],[859,5,5,3630,3635],[860,6,6,3635,3641],[861,2,2,3641,3643]]],[27,69,58,3643,3701,[[862,6,5,3643,3648],[863,6,5,3648,3653],[864,1,1,3653,3654],[865,10,7,3654,3661],[866,7,6,3661,3667],[867,3,3,3667,3670],[868,5,4,3670,3674],[869,6,5,3674,3679],[870,8,7,3679,3686],[871,5,3,3686,3689],[872,5,5,3689,3694],[874,4,4,3694,3698],[875,3,3,3698,3701]]],[28,32,26,3701,3727,[[876,11,11,3701,3712],[877,13,9,3712,3721],[878,8,6,3721,3727]]],[29,26,25,3727,3752,[[881,3,2,3727,3729],[882,4,4,3729,3733],[883,7,7,3733,3740],[884,4,4,3740,3744],[885,5,5,3744,3749],[886,1,1,3749,3750],[887,2,2,3750,3752]]],[30,3,3,3752,3755,[[888,3,3,3752,3755]]],[31,13,9,3755,3764,[[889,9,6,3755,3761],[891,1,1,3761,3762],[892,3,2,3762,3764]]],[32,33,28,3764,3792,[[893,8,6,3764,3770],[894,3,3,3770,3773],[895,1,1,3773,3774],[896,7,7,3774,3781],[897,5,3,3781,3784],[898,3,3,3784,3787],[899,6,5,3787,3792]]],[33,6,5,3792,3797,[[900,3,3,3792,3795],[901,2,1,3795,3796],[902,1,1,3796,3797]]],[34,16,13,3797,3810,[[903,5,4,3797,3801],[904,9,7,3801,3808],[905,2,2,3808,3810]]],[35,17,15,3810,3825,[[906,5,4,3810,3814],[907,6,6,3814,3820],[908,6,5,3820,3825]]],[36,3,3,3825,3828,[[910,3,3,3825,3828]]],[37,50,41,3828,3869,[[912,8,6,3828,3834],[913,3,2,3834,3836],[914,3,3,3836,3839],[915,1,1,3839,3840],[916,1,1,3840,3841],[917,3,2,3841,3843],[918,6,6,3843,3849],[919,7,7,3849,3856],[920,7,5,3856,3861],[921,7,5,3861,3866],[923,3,2,3866,3868],[924,1,1,3868,3869]]],[38,21,17,3869,3886,[[925,6,4,3869,3873],[926,7,6,3873,3879],[927,6,5,3879,3884],[928,2,2,3884,3886]]]],[3,9,11,17,20,24,33,35,47,53,56,60,61,62,65,66,69,72,74,75,91,102,103,104,129,138,139,142,143,144,149,150,160,163,192,194,204,211,259,275,308,309,310,312,316,324,326,328,333,335,350,364,368,373,376,385,386,392,394,402,412,429,439,443,444,459,465,470,471,479,487,501,502,504,505,506,513,520,523,525,526,529,530,531,543,544,559,563,564,595,605,632,679,686,688,695,699,700,701,705,708,712,714,716,720,728,747,750,763,779,781,784,788,790,797,804,807,810,816,826,827,828,829,831,839,843,846,850,856,860,863,878,879,885,888,889,893,895,903,904,905,908,909,910,915,922,938,939,945,948,953,954,956,958,960,970,971,973,985,987,994,999,1018,1021,1029,1047,1086,1087,1100,1109,1110,1118,1128,1130,1133,1134,1135,1145,1152,1155,1158,1162,1164,1186,1187,1188,1216,1226,1227,1244,1246,1247,1252,1253,1254,1256,1257,1264,1267,1268,1275,1285,1286,1290,1295,1297,1300,1306,1308,1311,1315,1320,1322,1339,1342,1348,1350,1351,1355,1356,1358,1361,1363,1364,1366,1369,1370,1378,1384,1389,1416,1418,1419,1420,1424,1433,1435,1438,1440,1442,1465,1468,1469,1477,1479,1480,1483,1488,1509,1521,1523,1525,1542,1551,1553,1556,1564,1566,1576,1583,1584,1585,1586,1590,1591,1598,1600,1602,1606,1611,1615,1620,1626,1632,1640,1643,1656,1662,1690,1694,1702,1709,1720,1725,1731,1732,1736,1744,1753,1756,1757,1771,1772,1773,1774,1776,1778,1779,1781,1784,1786,1787,1788,1803,1805,1825,1831,1833,1835,1841,1842,1846,1849,1855,1864,1870,1872,1876,1878,1881,1882,1883,1884,1886,1893,1894,1901,1902,1907,1914,1921,1939,1941,1943,1946,1950,1953,1954,1955,1956,1959,1962,1972,1976,1997,1999,2000,2002,2003,2010,2014,2015,2017,2031,2037,2039,2049,2056,2058,2062,2071,2073,2076,2079,2084,2091,2095,2097,2098,2099,2103,2105,2110,2112,2113,2114,2118,2119,2120,2122,2123,2127,2129,2134,2136,2140,2148,2149,2151,2152,2153,2159,2165,2166,2167,2168,2175,2177,2358,2364,2369,2370,2382,2394,2433,2434,2437,2439,2445,2459,2460,2461,2463,2467,2476,2486,2489,2490,2493,2505,2506,2509,2510,2514,2520,2523,2525,2531,2742,2745,2747,2763,2766,2773,2797,2831,2833,2834,2835,2841,2845,2851,2853,2900,2904,2913,2950,2952,2957,2984,2989,2990,2991,2994,3001,3002,3003,3004,3034,3035,3036,3039,3041,3042,3046,3054,3061,3063,3068,3070,3076,3080,3081,3083,3090,3092,3094,3099,3103,3104,3124,3145,3159,3170,3176,3181,3184,3187,3193,3203,3231,3246,3249,3261,3264,3275,3278,3280,3283,3286,3289,3301,3304,3314,3315,3321,3325,3327,3337,3341,3344,3345,3347,3351,3352,3353,3354,3357,3359,3360,3363,3368,3375,3376,3378,3380,3381,3382,3383,3385,3389,3390,3394,3396,3398,3412,3430,3431,3445,3455,3461,3463,3465,3468,3471,3481,3483,3485,3486,3489,3492,3494,3495,3498,3502,3503,3504,3508,3511,3516,3524,3525,3568,3572,3584,3705,3798,3804,3807,3812,3825,3830,3832,3835,3859,3955,3956,3975,3978,3979,3997,4017,4018,4019,4020,4027,4036,4037,4038,4042,4044,4053,4058,4060,4103,4105,4106,4117,4121,4122,4130,4138,4148,4150,4151,4155,4161,4167,4175,4178,4179,4184,4187,4197,4203,4205,4207,4222,4224,4228,4231,4232,4240,4247,4281,4283,4288,4302,4303,4309,4335,4340,4341,4345,4347,4353,4364,4366,4368,4374,4378,4381,4387,4388,4392,4397,4403,4404,4407,4408,4409,4411,4425,4439,4447,4468,4489,4522,4551,4554,4557,4558,4562,4650,4651,4653,4662,4729,4730,4733,4737,4811,4813,4818,4830,4855,4873,4876,4878,4879,4886,4888,4909,4930,4934,4943,4945,4947,4957,4968,4977,4986,4994,4997,5002,5003,5007,5010,5011,5019,5026,5028,5029,5030,5033,5035,5036,5039,5041,5043,5056,5058,5062,5064,5068,5077,5078,5079,5096,5101,5106,5111,5112,5115,5116,5117,5118,5119,5120,5127,5128,5132,5136,5137,5140,5142,5144,5155,5156,5160,5162,5163,5169,5176,5182,5198,5203,5205,5210,5215,5218,5230,5237,5239,5245,5249,5252,5254,5258,5260,5261,5263,5265,5268,5269,5271,5273,5275,5277,5278,5281,5282,5284,5290,5292,5297,5298,5311,5314,5317,5319,5321,5323,5325,5326,5327,5329,5330,5331,5332,5334,5335,5337,5340,5343,5345,5348,5354,5357,5361,5365,5366,5372,5378,5389,5390,5393,5396,5398,5405,5407,5412,5415,5417,5422,5428,5431,5437,5444,5446,5447,5448,5452,5456,5457,5462,5464,5465,5469,5470,5475,5476,5478,5483,5489,5491,5492,5493,5496,5497,5498,5505,5507,5509,5510,5514,5518,5521,5522,5524,5525,5526,5528,5529,5530,5531,5532,5535,5540,5543,5544,5545,5546,5547,5548,5552,5558,5563,5567,5569,5578,5605,5613,5620,5621,5624,5649,5650,5651,5652,5656,5668,5673,5685,5694,5695,5698,5699,5709,5717,5718,5719,5722,5726,5728,5734,5735,5745,5746,5748,5749,5751,5755,5757,5761,5762,5767,5778,5780,5786,5788,5789,5790,5793,5794,5797,5798,5801,5805,5810,5819,5829,5831,5848,5857,5859,5860,5862,5872,5874,5878,5879,5880,5881,5884,5893,5897,5898,5900,5903,5916,5934,5939,5940,5941,5948,5949,5965,5966,5974,5979,5988,5989,5991,6007,6008,6016,6020,6023,6046,6053,6055,6061,6065,6066,6068,6070,6072,6078,6083,6089,6106,6113,6117,6127,6190,6191,6196,6199,6221,6276,6278,6281,6288,6290,6293,6300,6330,6377,6391,6433,6453,6454,6457,6460,6463,6468,6470,6472,6473,6474,6493,6494,6495,6496,6497,6498,6503,6524,6528,6537,6541,6543,6562,6563,6580,6590,6596,6602,6608,6611,6613,6616,6618,6646,6659,6661,6670,6676,6684,6685,6686,6691,6703,6709,6720,6724,6725,6734,6739,6740,6741,6743,6749,6756,6757,6759,6772,6782,6792,6801,6809,6821,6831,6841,6842,6845,6847,6872,6873,6874,6889,6891,6900,6901,6905,6906,6912,6913,6918,6919,6926,6931,6932,6935,6936,6940,6942,6965,6966,6967,6969,6973,6974,6993,6994,7002,7003,7007,7016,7019,7021,7057,7060,7082,7088,7090,7093,7095,7107,7117,7118,7120,7124,7133,7137,7139,7140,7143,7144,7145,7147,7162,7171,7181,7183,7184,7186,7189,7190,7194,7196,7199,7205,7217,7218,7224,7228,7232,7234,7241,7242,7243,7248,7249,7255,7256,7257,7261,7264,7265,7270,7281,7282,7284,7285,7286,7289,7296,7297,7303,7304,7310,7315,7316,7317,7319,7326,7330,7334,7335,7340,7350,7359,7369,7376,7378,7388,7398,7400,7403,7404,7407,7411,7415,7419,7425,7432,7434,7437,7442,7450,7458,7465,7470,7472,7477,7479,7481,7482,7484,7491,7496,7498,7499,7504,7511,7514,7518,7520,7526,7530,7534,7537,7538,7547,7552,7553,7571,7583,7584,7586,7589,7595,7596,7602,7606,7607,7617,7643,7644,7646,7651,7654,7657,7660,7661,7664,7665,7666,7688,7692,7694,7701,7704,7710,7731,7733,7736,7737,7738,7739,7742,7743,7747,7748,7751,7752,7756,7759,7760,7761,7763,7764,7776,7777,7778,7780,7781,7787,7793,7795,7802,7804,7808,7809,7810,7813,7814,7817,7819,7820,7823,7825,7827,7831,7832,7837,7845,7849,7850,7856,7858,7859,7865,7868,7869,7878,7886,7889,7891,7895,7900,7908,7909,7914,7915,7917,7920,7923,7924,7925,7926,7931,7934,7938,7943,7955,7956,7962,7963,7964,7973,7975,7976,7984,7986,7990,7991,7995,8000,8002,8013,8014,8016,8027,8031,8032,8034,8038,8043,8056,8075,8076,8090,8094,8099,8103,8106,8116,8118,8119,8121,8122,8130,8131,8138,8144,8149,8151,8156,8163,8170,8181,8183,8186,8191,8192,8198,8202,8207,8209,8218,8219,8234,8235,8240,8243,8245,8246,8249,8254,8255,8259,8275,8282,8284,8285,8289,8291,8296,8298,8300,8304,8305,8308,8319,8329,8330,8332,8335,8339,8349,8350,8356,8357,8370,8371,8372,8373,8375,8378,8382,8397,8403,8408,8410,8429,8434,8436,8437,8444,8447,8457,8459,8460,8466,8470,8472,8478,8481,8490,8494,8496,8497,8498,8509,8513,8517,8518,8531,8532,8533,8536,8537,8539,8543,8545,8553,8566,8575,8582,8607,8610,8620,8622,8624,8625,8631,8632,8634,8658,8659,8663,8672,8702,8706,8716,8728,8730,8734,8742,8747,8759,8777,8779,8785,8787,8790,8792,8793,8796,8798,8799,8800,8807,8811,8812,8818,8820,8825,8826,8838,8839,8842,8844,8868,8879,8881,8884,8902,8992,8996,9003,9004,9012,9020,9021,9022,9024,9027,9028,9029,9031,9036,9038,9045,9049,9073,9101,9117,9124,9129,9130,9136,9139,9142,9152,9166,9167,9171,9175,9193,9201,9205,9216,9220,9222,9223,9229,9231,9253,9301,9318,9324,9329,9331,9341,9350,9351,9356,9359,9366,9368,9377,9378,9382,9389,9391,9394,9397,9401,9407,9413,9414,9415,9421,9430,9436,9439,9449,9453,9457,9466,9467,9480,9483,9488,9498,9511,9513,9514,9528,9537,9539,9549,9550,9553,9554,9555,9556,9557,9586,9589,9590,9593,9597,9602,9604,9605,9612,9627,9630,9632,9642,9646,9648,9654,9655,9660,9662,9664,9667,9683,9686,9690,9706,9717,9719,9728,9737,9739,9740,9745,9754,9756,9772,9776,9781,9790,9791,9803,9812,9816,9830,9844,9857,9860,9864,9865,9875,9878,9902,9922,9941,9990,10004,10019,10022,10023,10028,10044,10046,10050,10053,10055,10056,10059,10060,10064,10069,10079,10080,10092,10099,10106,10107,10108,10110,10152,10158,10174,10187,10188,10209,10222,10245,10248,10271,10340,10394,10399,10425,10426,10429,10430,10437,10448,10450,10508,10539,10556,10558,10641,10642,10643,10648,10663,10664,10666,10692,10738,10739,10741,10742,10759,10760,10763,10764,10769,10771,10776,10782,10789,10793,10804,10813,10845,10846,10853,10854,10861,10865,10868,10874,10879,10888,10890,10899,10900,10909,10910,10912,10913,10917,10922,10923,10926,10940,10942,10947,10952,10958,10962,10964,10968,10972,10973,10978,10982,11005,11008,11010,11011,11020,11082,11083,11087,11132,11146,11147,11148,11149,11152,11153,11163,11165,11173,11175,11178,11179,11181,11197,11198,11203,11204,11216,11217,11219,11220,11264,11279,11281,11282,11290,11291,11295,11300,11306,11308,11309,11310,11312,11315,11316,11318,11326,11327,11330,11331,11333,11355,11357,11360,11385,11396,11410,11411,11418,11428,11431,11435,11436,11439,11444,11445,11450,11451,11458,11464,11465,11471,11481,11482,11486,11488,11489,11495,11496,11497,11499,11505,11518,11519,11521,11526,11527,11549,11555,11559,11572,11574,11575,11579,11582,11583,11596,11597,11599,11602,11608,11613,11614,11616,11627,11630,11634,11641,11645,11647,11648,11650,11653,11654,11655,11662,11664,11670,11684,11688,11693,11697,11701,11702,11708,11711,11712,11720,11724,11740,11742,11747,11750,11752,11753,11755,11761,11775,11777,11783,11785,11787,11791,11797,11802,11815,11816,11825,11827,11830,11832,11836,11844,11845,11851,11853,11864,11872,11877,11882,11889,11890,11900,11904,11921,11931,11954,11980,11981,11987,11988,11989,12008,12100,12108,12110,12111,12112,12113,12171,12173,12182,12183,12223,12239,12243,12246,12247,12250,12252,12253,12256,12258,12265,12309,12319,12360,12363,12364,12366,12374,12400,12402,12409,12410,12411,12413,12417,12419,12422,12498,12502,12503,12504,12505,12510,12519,12521,12529,12542,12544,12588,12611,12653,12667,12668,12670,12673,12677,12681,12684,12710,12713,12715,12718,12719,12722,12731,12734,12736,12738,12739,12749,12751,12752,12753,12764,12776,12791,12806,12811,12814,12818,12823,12825,12834,12836,12837,12838,12858,12869,12874,12877,12894,12904,12914,12916,12917,12926,12928,12929,12935,12953,12957,12958,12969,12972,12974,12976,12981,12982,12988,12989,12998,12999,13000,13015,13020,13021,13024,13025,13029,13035,13037,13038,13053,13065,13067,13069,13079,13083,13086,13089,13092,13093,13095,13099,13114,13119,13123,13124,13126,13130,13137,13162,13169,13171,13172,13179,13188,13197,13208,13216,13217,13219,13226,13228,13230,13234,13237,13241,13260,13264,13284,13303,13318,13325,13326,13331,13345,13346,13370,13376,13383,13385,13391,13392,13395,13401,13415,13418,13429,13433,13436,13453,13467,13489,13490,13505,13528,13543,13544,13568,13580,13583,13599,13600,13602,13606,13609,13611,13613,13614,13616,13617,13629,13632,13633,13644,13646,13650,13662,13663,13664,13682,13686,13688,13692,13694,13702,13704,13706,13714,13716,13720,13723,13734,13735,13738,13740,13745,13746,13749,13754,13757,13760,13763,13767,13773,13775,13789,13798,13813,13814,13833,13834,13845,13846,13848,13849,13851,13858,13878,13884,13887,13898,13924,13929,13930,13941,13943,13945,13957,13962,13964,13968,13973,13975,13977,13982,13983,13985,13987,13990,13993,14015,14016,14025,14031,14033,14039,14044,14055,14061,14062,14066,14067,14078,14080,14085,14086,14093,14100,14102,14109,14125,14135,14137,14139,14140,14145,14146,14147,14149,14188,14194,14197,14198,14202,14203,14212,14213,14215,14220,14228,14232,14235,14239,14243,14256,14257,14262,14266,14267,14270,14271,14272,14274,14276,14290,14295,14297,14304,14305,14320,14324,14334,14335,14340,14341,14344,14348,14352,14358,14359,14370,14375,14387,14396,14397,14417,14430,14440,14447,14452,14459,14463,14467,14470,14472,14474,14478,14487,14490,14492,14494,14497,14505,14506,14507,14508,14521,14524,14537,14546,14553,14559,14560,14566,14568,14571,14574,14577,14578,14590,14592,14593,14596,14608,14624,14627,14632,14634,14638,14648,14658,14663,14664,14665,14666,14674,14678,14680,14694,14707,14719,14724,14728,14731,14732,14735,14741,14744,14747,14750,14756,14757,14764,14768,14769,14778,14789,14793,14797,14799,14803,14806,14807,14809,14822,14824,14832,14837,14838,14839,14842,14846,14850,14869,14883,14897,14936,14942,14944,14951,14952,14961,14968,14970,14979,14981,14986,14987,14991,14999,15000,15012,15023,15024,15041,15047,15068,15073,15077,15078,15079,15091,15104,15135,15148,15152,15192,15193,15221,15241,15243,15246,15259,15269,15270,15279,15285,15286,15287,15288,15289,15291,15294,15297,15301,15311,15328,15332,15343,15344,15382,15385,15387,15388,15398,15404,15406,15409,15415,15420,15426,15442,15445,15446,15457,15461,15469,15470,15478,15487,15491,15499,15508,15511,15513,15524,15525,15530,15531,15534,15535,15537,15540,15560,15563,15565,15644,15648,15652,15684,15700,15708,15710,15715,15729,15746,15757,15776,15777,15782,15786,15809,15827,15831,15849,15850,15855,15856,15858,15869,15870,15871,15872,15873,15886,15890,15898,15920,15930,15933,15937,15940,15941,15943,15948,15954,15964,15969,15972,15973,15975,15976,15981,15989,15991,15992,15996,15997,15998,16000,16009,16016,16029,16037,16050,16051,16053,16057,16066,16069,16070,16071,16074,16079,16081,16094,16101,16113,16126,16128,16130,16144,16147,16164,16165,16172,16178,16179,16180,16189,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,16215,16216,16217,16218,16219,16220,16221,16222,16225,16233,16235,16236,16237,16243,16252,16253,16275,16281,16282,16284,16292,16293,16295,16296,16301,16303,16305,16352,16364,16376,16384,16389,16409,16416,16417,16429,16432,16436,16439,16443,16451,16454,16457,16467,16469,16480,16481,16487,16492,16493,16498,16503,16506,16507,16512,16513,16520,16538,16543,16563,16566,16570,16574,16575,16581,16594,16598,16601,16608,16609,16613,16637,16649,16656,16719,16818,16852,16866,16880,16903,16932,16935,16943,16944,16970,16991,17009,17011,17021,17024,17033,17037,17038,17045,17049,17051,17053,17055,17057,17061,17062,17065,17066,17071,17075,17081,17085,17091,17092,17095,17099,17101,17120,17135,17166,17170,17182,17193,17218,17243,17253,17255,17273,17274,17284,17302,17305,17333,17343,17345,17349,17350,17354,17355,17356,17357,17358,17359,17371,17373,17376,17378,17381,17385,17391,17395,17397,17398,17399,17400,17401,17403,17404,17405,17408,17415,17417,17419,17421,17425,17428,17429,17432,17435,17436,17438,17439,17441,17442,17447,17449,17451,17461,17464,17465,17470,17473,17474,17475,17476,17478,17479,17480,17482,17484,17485,17486,17487,17497,17513,17514,17515,17519,17521,17522,17523,17526,17528,17536,17537,17539,17559,17565,17568,17646,17656,17666,17669,17674,17683,17684,17688,17691,17697,17707,17708,17713,17715,17716,17717,17718,17723,17738,17746,17749,17763,17774,17787,17790,17791,17795,17798,17804,17806,17811,17813,17817,17818,17826,17828,17830,17833,17834,17835,17846,17847,17857,17858,17862,17863,17872,17873,17875,17893,17901,17902,17904,17905,17906,17912,17916,17929,17948,17955,17957,17959,17960,17961,17965,17966,17968,17969,17973,17977,17978,17981,17993,18001,18002,18024,18041,18050,18051,18052,18053,18057,18061,18065,18068,18077,18078,18081,18091,18095,18098,18100,18108,18113,18118,18119,18120,18122,18126,18128,18133,18134,18135,18139,18142,18149,18151,18161,18162,18172,18174,18175,18179,18182,18183,18184,18185,18186,18191,18192,18203,18204,18206,18209,18213,18216,18221,18222,18226,18232,18233,18235,18236,18238,18248,18250,18251,18254,18257,18265,18269,18272,18273,18284,18300,18301,18305,18308,18309,18311,18319,18326,18335,18337,18341,18344,18346,18349,18350,18351,18355,18360,18371,18372,18384,18391,18407,18408,18412,18413,18420,18422,18425,18427,18461,18464,18471,18474,18499,18506,18507,18508,18510,18515,18525,18527,18536,18550,18551,18554,18555,18556,18564,18567,18579,18583,18584,18595,18600,18604,18616,18618,18622,18625,18646,18649,18654,18655,18659,18661,18662,18669,18675,18676,18677,18679,18681,18697,18699,18700,18701,18702,18704,18705,18708,18711,18719,18724,18726,18727,18728,18729,18732,18733,18737,18745,18747,18748,18749,18750,18751,18752,18754,18757,18760,18766,18773,18776,18780,18781,18785,18793,18800,18802,18803,18812,18814,18815,18816,18819,18822,18823,18826,18830,18831,18833,18837,18841,18851,18852,18853,18854,18858,18859,18863,18870,18882,18892,18902,18903,18905,18913,18914,18915,18917,18919,18920,18930,18934,18937,18938,18944,18946,18952,18953,18954,18958,18961,18965,18970,18975,18978,18984,18985,18987,18990,18991,18992,18993,18999,19000,19002,19010,19012,19014,19015,19016,19018,19023,19024,19027,19030,19033,19035,19040,19042,19044,19045,19046,19047,19049,19054,19055,19057,19058,19062,19063,19064,19068,19069,19077,19084,19090,19093,19095,19100,19101,19102,19104,19108,19114,19115,19119,19124,19131,19135,19141,19142,19148,19149,19151,19153,19163,19165,19167,19170,19175,19177,19178,19179,19182,19185,19194,19195,19196,19199,19201,19203,19204,19206,19208,19215,19217,19219,19222,19224,19226,19233,19239,19240,19241,19245,19246,19249,19250,19253,19254,19255,19260,19261,19277,19278,19281,19283,19284,19287,19288,19297,19298,19299,19300,19305,19306,19310,19311,19313,19315,19317,19320,19325,19329,19331,19332,19335,19339,19341,19345,19346,19351,19353,19357,19361,19363,19365,19370,19371,19396,19399,19402,19404,19406,19413,19422,19425,19426,19430,19432,19433,19434,19435,19442,19450,19458,19459,19460,19464,19465,19466,19469,19471,19474,19475,19476,19478,19484,19492,19494,19495,19496,19499,19502,19517,19520,19531,19532,19548,19549,19562,19563,19565,19568,19570,19572,19583,19587,19588,19606,19610,19611,19612,19615,19617,19622,19632,19634,19642,19643,19644,19645,19646,19648,19650,19651,19663,19667,19670,19672,19674,19677,19678,19679,19681,19684,19688,19697,19698,19700,19702,19706,19707,19709,19710,19711,19713,19716,19721,19724,19725,19735,19736,19738,19739,19746,19761,19762,19773,19775,19779,19786,19792,19801,19804,19806,19808,19829,19830,19837,19839,19849,19883,19884,19889,19890,19892,19899,19900,19901,19902,19904,19910,19918,19920,19922,19935,19941,19944,19948,19952,19955,19957,19965,19975,19977,19981,19985,19986,19989,19993,19994,19995,19997,20000,20004,20024,20025,20027,20029,20039,20043,20045,20055,20057,20059,20060,20063,20064,20066,20067,20068,20072,20073,20077,20081,20085,20087,20089,20098,20100,20106,20107,20114,20117,20118,20120,20122,20124,20125,20126,20130,20135,20137,20139,20140,20142,20143,20146,20150,20157,20169,20175,20177,20180,20181,20186,20190,20191,20193,20195,20197,20204,20210,20214,20217,20218,20221,20223,20224,20226,20229,20231,20238,20241,20243,20245,20260,20263,20265,20267,20268,20274,20279,20315,20318,20319,20320,20321,20326,20328,20329,20330,20331,20332,20345,20362,20376,20381,20382,20385,20386,20387,20432,20435,20438,20458,20464,20484,20485,20497,20498,20499,20507,20509,20511,20521,20522,20523,20528,20529,20552,20559,20570,20573,20576,20577,20581,20586,20589,20590,20591,20596,20600,20604,20616,20621,20631,20644,20650,20653,20665,20667,20671,20682,20683,20686,20695,20696,20700,20703,20704,20705,20717,20722,20729,20731,20738,20739,20740,20744,20749,20752,20754,20759,20761,20776,20821,20824,20846,20849,20854,20860,20867,20870,20881,20886,20907,20911,20915,20933,20935,20937,20939,20943,20949,20951,20956,20957,20965,20976,20992,20998,21015,21020,21035,21041,21044,21047,21052,21053,21056,21063,21075,21080,21083,21086,21088,21089,21090,21094,21100,21105,21106,21107,21114,21119,21167,21179,21180,21181,21183,21189,21192,21196,21199,21204,21207,21212,21213,21223,21229,21230,21237,21244,21259,21263,21273,21274,21275,21280,21282,21286,21289,21290,21291,21309,21311,21313,21324,21340,21343,21348,21353,21356,21359,21367,21368,21370,21381,21382,21395,21397,21403,21410,21411,21425,21448,21453,21454,21455,21458,21470,21471,21476,21481,21533,21557,21558,21560,21565,21566,21601,21609,21621,21624,21644,21664,21667,21671,21672,21680,21684,21688,21691,21716,21978,21980,21987,21997,21999,22002,22004,22006,22007,22011,22026,22027,22029,22034,22036,22040,22061,22063,22071,22072,22073,22088,22090,22096,22098,22100,22103,22105,22107,22109,22110,22112,22113,22132,22134,22139,22143,22145,22146,22147,22149,22153,22155,22156,22159,22163,22166,22168,22173,22176,22179,22184,22191,22192,22200,22201,22203,22204,22205,22209,22212,22214,22220,22223,22224,22225,22228,22230,22238,22241,22243,22245,22249,22250,22275,22279,22281,22282,22283,22286,22291,22296,22297,22301,22302,22303,22304,22306,22308,22309,22310,22311,22312,22322,22324,22331,22332,22333,22334,22338,22343,22344,22351,22355,22356,22357,22360,22402,22409,22412,22415,22422,22423,22426,22427,22428,22435,22436,22440,22445,22460,22461,22462,22464,22466,22469,22475,22477,22478,22492,22503,22504,22525,22526,22528,22533,22541,22542,22543,22544,22545,22568,22570,22571,22582,22586,22588,22591,22592,22595,22596,22598,22605,22615,22622,22624,22625,22629,22630,22632,22633,22637,22638,22639,22650,22652,22656,22665,22670,22672,22673,22682,22694,22698,22699,22701,22731,22735,22736,22737,22747,22751,22753,22756,22759,22762,22765,22766,22776,22785,22794,22798,22804,22805,22809,22812,22814,22815,22816,22819,22828,22829,22831,22833,22840,22859,22861,22878,22905,22907,22908,22909,22910,22912,22920,22921,22928,22931,22932,22939,22962,22967,22968,22982,22986,22988,22990,22993,22999,23000,23001,23004,23007,23012,23015,23016,23018,23019,23021,23022,23024,23030,23031,23034,23039,23044,23062,23064,23073,23093,23097,23100,23103,23105,23107,23110,23114,23117,23119,23122,23126,23128,23132,23134,23139,23141]]],["+",[196,193,[[0,15,15,0,15,[[2,1,1,0,1],[12,1,1,1,2],[14,1,1,2,3],[25,1,1,3,4],[27,1,1,4,5],[31,2,2,5,7],[34,1,1,7,8],[38,2,2,8,10],[39,1,1,10,11],[41,1,1,11,12],[46,2,2,12,14],[48,1,1,14,15]]],[1,4,4,15,19,[[61,1,1,15,16],[63,1,1,16,17],[71,1,1,17,18],[81,1,1,18,19]]],[2,10,10,19,29,[[96,1,1,19,20],[102,1,1,20,21],[107,1,1,21,22],[108,1,1,22,23],[110,3,3,23,26],[111,2,2,26,28],[113,1,1,28,29]]],[3,9,9,29,38,[[126,1,1,29,30],[129,1,1,30,31],[130,2,2,31,33],[134,1,1,33,34],[140,1,1,34,35],[142,2,2,35,37],[151,1,1,37,38]]],[4,9,9,38,47,[[156,1,1,38,39],[159,1,1,39,40],[162,1,1,40,41],[164,3,3,41,44],[168,1,1,44,45],[183,1,1,45,46],[184,1,1,46,47]]],[5,3,3,47,50,[[200,1,1,47,48],[203,1,1,48,49],[209,1,1,49,50]]],[6,2,2,50,52,[[213,1,1,50,51],[225,1,1,51,52]]],[7,3,2,52,54,[[234,3,2,52,54]]],[8,12,11,54,65,[[237,1,1,54,55],[243,1,1,55,56],[249,3,2,56,58],[256,3,3,58,61],[260,1,1,61,62],[261,1,1,62,63],[265,2,2,63,65]]],[9,14,14,65,79,[[268,1,1,65,66],[269,2,2,66,68],[271,1,1,68,69],[278,3,3,69,72],[279,1,1,72,73],[281,1,1,73,74],[282,1,1,74,75],[284,1,1,75,76],[285,1,1,76,77],[287,1,1,77,78],[289,1,1,78,79]]],[10,12,12,79,91,[[295,1,1,79,80],[298,2,2,80,82],[303,1,1,82,83],[304,1,1,83,84],[307,2,2,84,86],[308,1,1,86,87],[311,1,1,87,88],[312,3,3,88,91]]],[11,18,17,91,108,[[316,2,2,91,93],[317,4,4,93,97],[319,1,1,97,98],[321,1,1,98,99],[322,1,1,99,100],[325,2,1,100,101],[326,1,1,101,102],[329,3,3,102,105],[331,1,1,105,106],[335,2,2,106,108]]],[12,3,3,108,111,[[339,1,1,108,109],[352,1,1,109,110],[360,1,1,110,111]]],[13,9,9,111,120,[[368,1,1,111,112],[372,1,1,112,113],[384,3,3,113,116],[387,1,1,116,117],[389,1,1,117,118],[392,1,1,118,119],[398,1,1,119,120]]],[15,2,2,120,122,[[414,2,2,120,122]]],[16,3,3,122,125,[[427,2,2,122,124],[430,1,1,124,125]]],[17,7,7,125,132,[[444,2,2,125,127],[450,1,1,127,128],[460,1,1,128,129],[470,1,1,129,130],[471,1,1,130,131],[477,1,1,131,132]]],[18,3,3,132,135,[[478,2,2,132,134],[616,1,1,134,135]]],[19,8,8,135,143,[[628,1,1,135,136],[630,1,1,136,137],[638,1,1,137,138],[642,1,1,138,139],[644,1,1,139,140],[645,1,1,140,141],[646,1,1,141,142],[648,1,1,142,143]]],[20,3,3,143,146,[[663,1,1,143,144],[666,1,1,144,145],[667,1,1,145,146]]],[22,12,12,146,158,[[681,1,1,146,147],[685,1,1,147,148],[686,1,1,148,149],[707,1,1,149,150],[711,1,1,150,151],[715,1,1,151,152],[720,1,1,152,153],[733,2,2,153,155],[737,1,1,155,156],[743,2,2,156,158]]],[23,18,18,158,176,[[747,1,1,158,159],[748,1,1,159,160],[751,2,2,160,162],[753,1,1,162,163],[760,1,1,163,164],[763,1,1,164,165],[764,1,1,165,166],[766,2,2,166,168],[767,1,1,168,169],[775,1,1,169,170],[776,1,1,170,171],[782,2,2,171,173],[783,1,1,173,174],[788,1,1,174,175],[795,1,1,175,176]]],[24,1,1,176,177,[[801,1,1,176,177]]],[25,6,6,177,183,[[813,1,1,177,178],[834,1,1,178,179],[837,1,1,179,180],[845,3,3,180,183]]],[26,1,1,183,184,[[859,1,1,183,184]]],[27,1,1,184,185,[[870,1,1,184,185]]],[29,4,4,185,189,[[881,1,1,185,186],[882,1,1,186,187],[883,1,1,187,188],[886,1,1,188,189]]],[32,1,1,189,190,[[898,1,1,189,190]]],[37,2,2,190,192,[[914,1,1,190,191],[918,1,1,191,192]]],[38,1,1,192,193,[[926,1,1,192,193]]]],[56,333,364,705,790,954,956,1021,1155,1158,1186,1267,1424,1438,1483,1825,1902,2122,2463,2913,3070,3278,3301,3347,3351,3359,3375,3390,3461,4019,4103,4138,4151,4281,4468,4522,4554,4878,5041,5116,5198,5245,5254,5258,5348,5745,5788,6191,6278,6468,6580,6936,7184,7190,7255,7388,7538,7547,7776,7777,7778,7895,7915,7995,8000,8076,8094,8116,8138,8289,8291,8296,8350,8410,8437,8498,8539,8582,8663,8881,9004,9012,9205,9231,9318,9329,9359,9480,9488,9498,9511,9605,9627,9654,9662,9664,9667,9717,9791,9816,9878,9902,10019,10022,10023,10079,10174,10188,10340,10793,11005,11217,11290,11555,11559,11572,11641,11662,11747,11890,12309,12319,12738,12739,12791,13053,13065,13219,13467,13734,13757,13930,13941,13943,16253,16429,16467,16719,16818,16880,16903,16932,17011,17408,17473,17476,17723,17787,17813,18206,18300,18371,18499,18750,18751,18802,18903,18915,19012,19055,19142,19151,19199,19351,19413,19425,19471,19478,19492,19721,19762,19899,19901,19935,20024,20226,20464,20703,21291,21381,21609,21621,21624,22036,22220,22402,22422,22445,22492,22656,22928,22993,23117]]],["Although",[5,5,[[9,1,1,0,1,[[289,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[17,1,1,2,3,[[440,1,1,2,3]]],[25,1,1,3,4,[[812,1,1,3,4]]],[34,1,1,4,5,[[905,1,1,4,5]]]],[8658,9413,12957,20671,22785]]],["And",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7261]]],["Assuredly",[3,3,[[10,3,3,0,3,[[291,3,3,0,3]]]],[8730,8734,8747]]],["Because",[67,67,[[0,9,9,0,9,[[2,2,2,0,2],[17,1,1,2,3],[19,1,1,3,4],[25,1,1,4,5],[26,1,1,5,6],[28,2,2,6,8],[30,1,1,8,9]]],[1,4,4,9,13,[[50,1,1,9,10],[51,1,1,10,11],[66,1,1,11,12],[67,1,1,12,13]]],[3,5,5,13,18,[[119,1,1,13,14],[130,1,1,14,15],[131,1,1,15,16],[138,1,1,16,17],[151,1,1,17,18]]],[4,1,1,18,19,[[184,1,1,18,19]]],[5,2,2,19,21,[[195,1,1,19,20],[203,1,1,20,21]]],[6,1,1,21,22,[[221,1,1,21,22]]],[8,2,2,22,24,[[236,1,1,22,23],[248,1,1,23,24]]],[9,1,1,24,25,[[285,1,1,24,25]]],[10,1,1,25,26,[[311,1,1,25,26]]],[11,1,1,26,27,[[320,1,1,26,27]]],[12,2,2,27,29,[[341,1,1,27,28],[360,1,1,28,29]]],[13,2,2,29,31,[[388,1,1,29,30],[394,1,1,30,31]]],[15,1,1,31,32,[[425,1,1,31,32]]],[16,1,1,32,33,[[434,1,1,32,33]]],[17,9,9,33,42,[[438,1,1,33,34],[446,1,1,34,35],[450,1,1,35,36],[455,1,1,36,37],[458,1,1,37,38],[464,1,1,38,39],[465,1,1,39,40],[471,1,1,40,41],[474,1,1,41,42]]],[18,10,10,42,52,[[505,1,1,42,43],[540,2,2,43,45],[546,1,1,45,46],[555,1,1,46,47],[568,2,2,47,49],[583,1,1,49,50],[584,1,1,50,51],[593,1,1,51,52]]],[20,1,1,52,53,[[666,1,1,52,53]]],[22,4,4,53,57,[[693,1,1,53,54],[695,1,1,54,55],[706,1,1,55,56],[710,1,1,56,57]]],[23,7,7,57,64,[[746,1,1,57,58],[762,1,1,58,59],[773,1,1,59,60],[779,1,1,60,61],[794,1,1,61,62],[795,2,2,62,64]]],[25,1,1,64,65,[[822,1,1,64,65]]],[27,1,1,65,66,[[869,1,1,65,66]]],[34,1,1,66,67,[[904,1,1,66,67]]]],[69,72,444,506,701,747,810,828,904,1551,1564,1999,2014,3705,4130,4184,4404,4873,5761,6061,6281,6842,7232,7496,8553,9457,9739,10394,11011,11653,11787,12673,12858,12914,13124,13230,13345,13436,13544,13568,13754,13851,14304,14842,14846,14942,15135,15404,15409,15684,15710,15850,17464,17961,17993,18179,18273,19000,19399,19650,19839,20177,20267,20268,20957,22205,22756]]],["But",[49,49,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,2,2,1,3,[[72,1,1,1,2],[83,1,1,2,3]]],[4,9,9,3,12,[[156,1,1,3,4],[159,1,1,4,5],[163,1,1,5,6],[165,1,1,6,7],[167,1,1,7,8],[172,1,1,8,9],[173,1,1,9,10],[181,1,1,10,11],[182,1,1,11,12]]],[5,3,3,12,15,[[203,1,1,12,13],[204,1,1,13,14],[208,1,1,14,15]]],[6,1,1,15,16,[[221,1,1,15,16]]],[8,1,1,16,17,[[264,1,1,16,17]]],[10,2,2,17,19,[[298,1,1,17,18],[301,1,1,18,19]]],[11,2,2,19,21,[[320,1,1,19,20],[324,1,1,20,21]]],[12,1,1,21,22,[[366,1,1,21,22]]],[13,4,4,22,26,[[372,1,1,22,23],[383,1,1,23,24],[391,1,1,24,25],[396,1,1,25,26]]],[17,3,3,26,29,[[439,1,1,26,27],[454,1,1,27,28],[458,1,1,28,29]]],[18,7,7,29,36,[[499,1,1,29,30],[514,1,1,30,31],[521,1,1,31,32],[552,1,1,32,33],[571,1,1,33,34],[607,1,1,34,35],[618,1,1,35,36]]],[20,1,1,36,37,[[669,1,1,36,37]]],[22,3,3,37,40,[[714,1,1,37,38],[727,1,1,38,39],[740,1,1,39,40]]],[23,7,7,40,47,[[751,1,1,40,41],[766,2,2,41,43],[775,1,1,43,44],[787,1,1,44,45],[788,1,1,45,46],[793,1,1,46,47]]],[24,1,1,47,48,[[799,1,1,47,48]]],[29,1,1,48,49,[[884,1,1,48,49]]]],[595,2166,2509,5026,5119,5215,5281,5327,5444,5464,5694,5722,6293,6300,6453,6845,7975,9012,9130,9740,9864,11178,11300,11527,11712,11845,12935,13325,13429,14213,14470,14578,15078,15446,16144,16284,17521,18337,18661,18863,19131,19466,19471,19724,20000,20027,20137,20386,22464]]],["Certainly",[1,1,[[1,1,1,0,1,[[52,1,1,0,1]]]],[1591]]],["Did",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[13000]]],["Doubtless",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18882]]],["Else",[3,3,[[1,2,2,0,2,[[57,1,1,0,1],[59,1,1,1,2]]],[5,1,1,2,3,[[209,1,1,2,3]]]],[1731,1781,6472]]],["Even",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8747]]],["For",[710,710,[[0,20,20,0,20,[[2,1,1,0,1],[3,1,1,1,2],[6,1,1,2,3],[17,1,1,3,4],[18,1,1,4,5],[19,1,1,5,6],[20,1,1,6,7],[25,1,1,7,8],[29,1,1,8,9],[30,1,1,9,10],[31,1,1,10,11],[35,1,1,11,12],[36,1,1,12,13],[39,1,1,13,14],[40,2,2,14,16],[42,1,1,16,17],[43,2,2,17,19],[44,1,1,19,20]]],[1,11,11,20,31,[[58,3,3,20,23],[63,1,1,23,24],[64,1,1,24,25],[69,1,1,25,26],[71,1,1,26,27],[72,1,1,27,28],[83,2,2,28,30],[89,1,1,30,31]]],[2,13,13,31,44,[[96,1,1,31,32],[100,2,2,32,34],[105,1,1,34,35],[106,2,2,35,37],[107,1,1,37,38],[109,1,1,38,39],[110,1,1,39,40],[112,1,1,40,41],[114,3,3,41,44]]],[3,12,12,44,56,[[124,2,2,44,46],[130,1,1,46,47],[137,2,2,47,49],[138,1,1,49,50],[139,1,1,50,51],[141,1,1,51,52],[142,1,1,52,53],[148,2,2,53,55],[150,1,1,55,56]]],[4,40,40,56,96,[[154,1,1,56,57],[155,1,1,57,58],[156,4,4,58,62],[157,1,1,62,63],[158,1,1,63,64],[159,2,2,64,66],[160,1,1,66,67],[161,1,1,67,68],[162,1,1,68,69],[163,3,3,69,72],[164,1,1,72,73],[166,1,1,73,74],[167,2,2,74,76],[170,3,3,76,79],[172,1,1,79,80],[174,1,1,80,81],[175,1,1,81,82],[177,1,1,82,83],[181,1,1,83,84],[182,1,1,84,85],[183,3,3,85,88],[184,8,8,88,96]]],[5,6,6,96,102,[[188,1,1,96,97],[191,1,1,97,98],[197,1,1,98,99],[200,2,2,99,101],[210,1,1,101,102]]],[6,5,5,102,107,[[216,1,1,102,103],[218,1,1,103,104],[223,2,2,104,106],[231,1,1,106,107]]],[8,5,5,107,112,[[247,1,1,107,108],[249,2,2,108,110],[250,1,1,110,111],[255,1,1,111,112]]],[9,13,13,112,125,[[273,1,1,112,113],[278,1,1,113,114],[280,2,2,114,116],[281,1,1,116,117],[285,3,3,117,120],[288,5,5,120,125]]],[10,12,12,125,137,[[291,1,1,125,126],[294,1,1,126,127],[298,4,4,127,131],[300,1,1,131,132],[301,1,1,132,133],[303,3,3,133,136],[307,1,1,136,137]]],[11,6,6,137,143,[[315,1,1,137,138],[323,1,1,138,139],[326,1,1,139,140],[329,1,1,140,141],[331,1,1,141,142],[336,1,1,142,143]]],[12,11,11,143,154,[[342,2,2,143,145],[346,1,1,145,146],[349,1,1,146,147],[353,2,2,147,149],[354,2,2,149,151],[360,2,2,151,153],[366,1,1,153,154]]],[13,17,17,154,171,[[371,1,1,154,155],[372,1,1,155,156],[373,1,1,156,157],[375,1,1,157,158],[377,1,1,158,159],[382,1,1,159,160],[389,1,1,160,161],[390,2,2,161,163],[394,2,2,163,165],[395,1,1,165,166],[396,5,5,166,171]]],[14,6,6,171,177,[[408,1,1,171,172],[409,2,2,172,174],[410,1,1,174,175],[411,2,2,175,177]]],[15,6,6,177,183,[[418,2,2,177,179],[420,1,1,179,180],[422,1,1,180,181],[423,1,1,181,182],[424,1,1,182,183]]],[16,6,6,183,189,[[426,1,1,183,184],[429,1,1,184,185],[432,1,1,185,186],[433,1,1,186,187],[434,1,1,187,188],[435,1,1,188,189]]],[17,50,50,189,239,[[438,3,3,189,192],[440,3,3,192,195],[441,3,3,195,198],[443,2,2,198,200],[444,1,1,200,201],[446,2,2,201,203],[448,1,1,203,204],[449,2,2,204,206],[450,3,3,206,209],[452,1,1,209,210],[453,1,1,210,211],[456,2,2,211,213],[457,2,2,213,215],[458,1,1,215,216],[459,1,1,216,217],[462,1,1,217,218],[463,1,1,218,219],[465,1,1,219,220],[466,4,4,220,224],[467,2,2,224,226],[468,1,1,226,227],[469,7,7,227,234],[470,1,1,234,235],[471,3,3,235,238],[472,1,1,238,239]]],[18,142,142,239,381,[[478,1,1,239,240],[482,3,3,240,243],[483,1,1,243,244],[486,2,2,244,246],[487,1,1,246,247],[488,2,2,247,249],[493,1,1,249,250],[495,6,6,250,256],[498,4,4,256,260],[499,3,3,260,263],[501,1,1,263,264],[503,1,1,264,265],[504,1,1,265,266],[507,1,1,266,267],[508,3,3,267,270],[509,1,1,270,271],[510,3,3,271,274],[512,2,2,274,276],[513,2,2,276,278],[514,5,5,278,283],[515,7,7,283,290],[517,1,1,290,291],[520,1,1,291,292],[521,3,3,292,295],[524,2,2,295,297],[525,2,2,297,299],[526,1,1,299,300],[527,1,1,300,301],[528,2,2,301,303],[531,2,2,303,305],[532,1,1,305,306],[533,1,1,306,307],[534,1,1,307,308],[536,1,1,308,309],[538,2,2,309,311],[543,1,1,311,312],[546,4,4,312,316],[548,2,2,316,318],[549,1,1,318,319],[550,3,3,319,322],[552,2,2,322,324],[556,1,1,324,325],[558,1,1,325,326],[560,2,2,326,328],[561,2,2,328,330],[563,3,3,330,333],[565,1,1,333,334],[566,4,4,334,338],[567,3,3,338,341],[568,1,1,341,342],[569,2,2,342,344],[571,1,1,344,345],[572,2,2,345,347],[573,2,2,347,349],[574,1,1,349,350],[577,1,1,350,351],[579,4,4,351,355],[580,3,3,355,358],[582,1,1,358,359],[584,2,2,359,361],[585,1,1,361,362],[586,3,3,362,365],[593,1,1,365,366],[594,1,1,366,367],[596,1,1,367,368],[599,1,1,368,369],[602,1,1,369,370],[605,1,1,370,371],[609,1,1,371,372],[612,3,3,372,375],[614,1,1,375,376],[616,2,2,376,378],[620,1,1,378,379],[624,1,1,379,380],[626,1,1,380,381]]],[19,42,42,381,423,[[628,3,3,381,384],[629,3,3,384,387],[630,4,4,387,391],[631,5,5,391,396],[632,2,2,396,398],[633,3,3,398,401],[634,3,3,401,404],[635,3,3,404,407],[636,1,1,407,408],[649,2,2,408,410],[650,5,5,410,415],[651,5,5,415,420],[652,2,2,420,422],[654,1,1,422,423]]],[20,25,25,423,448,[[659,1,1,423,424],[660,6,6,424,430],[661,1,1,430,431],[662,2,2,431,433],[663,3,3,433,436],[664,3,3,436,439],[665,4,4,439,443],[666,1,1,443,444],[667,3,3,444,447],[670,1,1,447,448]]],[21,1,1,448,449,[[672,1,1,448,449]]],[22,96,96,449,545,[[679,2,2,449,451],[680,1,1,451,452],[681,2,2,452,454],[683,1,1,454,455],[685,2,2,455,457],[686,2,2,457,459],[687,4,4,459,463],[688,5,5,463,468],[691,1,1,468,469],[692,2,2,469,471],[693,3,3,471,474],[694,1,1,474,475],[696,2,2,475,477],[699,3,3,477,480],[700,1,1,480,481],[703,3,3,481,484],[704,2,2,484,486],[706,6,6,486,492],[707,2,2,492,494],[708,5,5,494,499],[709,2,2,499,501],[710,1,1,501,502],[711,1,1,502,503],[712,3,3,503,506],[715,1,1,506,507],[716,1,1,507,508],[717,1,1,508,509],[719,1,1,509,510],[721,1,1,510,511],[722,1,1,511,512],[723,1,1,512,513],[726,1,1,513,514],[727,1,1,514,515],[729,2,2,515,517],[730,3,3,517,520],[732,5,5,520,525],[733,4,4,525,529],[734,1,1,529,530],[735,2,2,530,532],[737,2,2,532,534],[738,2,2,534,536],[739,2,2,536,538],[740,1,1,538,539],[741,1,1,539,540],[743,1,1,540,541],[744,4,4,541,545]]],[23,85,85,545,630,[[745,1,1,545,546],[746,4,4,546,550],[748,5,5,550,555],[749,2,2,555,557],[750,2,2,557,559],[751,3,3,559,562],[752,1,1,562,563],[753,2,2,563,565],[754,3,3,565,568],[755,2,2,568,570],[756,1,1,570,571],[757,1,1,571,572],[759,1,1,572,573],[760,4,4,573,577],[764,3,3,577,580],[765,1,1,580,581],[766,3,3,581,584],[767,3,3,584,587],[769,3,3,587,590],[771,3,3,590,593],[772,1,1,593,594],[773,5,5,594,599],[774,5,5,599,604],[775,4,4,604,608],[776,3,3,608,611],[777,3,3,611,614],[781,1,1,614,615],[783,1,1,615,616],[786,2,2,616,618],[792,4,4,618,622],[793,3,3,622,625],[794,2,2,625,627],[795,2,2,627,629],[796,1,1,629,630]]],[24,2,2,630,632,[[799,2,2,630,632]]],[25,23,23,632,655,[[804,1,1,632,633],[808,1,1,633,634],[813,2,2,634,636],[815,2,2,636,638],[817,1,1,638,639],[819,1,1,639,640],[821,1,1,640,641],[822,1,1,641,642],[824,2,2,642,644],[825,1,1,644,645],[826,1,1,645,646],[827,2,2,646,648],[831,1,1,648,649],[833,2,2,649,651],[835,1,1,651,652],[837,1,1,652,653],[843,2,2,653,655]]],[27,11,11,655,666,[[863,1,1,655,656],[864,1,1,656,657],[865,1,1,657,658],[866,1,1,658,659],[867,1,1,659,660],[868,1,1,660,661],[869,3,3,661,664],[870,1,1,664,665],[871,1,1,665,666]]],[28,2,2,666,668,[[876,1,1,666,667],[878,1,1,667,668]]],[29,7,7,668,675,[[882,1,1,668,669],[883,3,3,669,672],[884,1,1,672,673],[885,1,1,673,674],[887,1,1,674,675]]],[30,2,2,675,677,[[888,2,2,675,677]]],[31,1,1,677,678,[[889,1,1,677,678]]],[32,6,6,678,684,[[893,3,3,678,681],[896,1,1,681,682],[898,1,1,682,683],[899,1,1,683,684]]],[33,2,2,684,686,[[900,1,1,684,685],[901,1,1,685,686]]],[34,5,5,686,691,[[903,1,1,686,687],[904,4,4,687,691]]],[35,2,2,691,693,[[907,1,1,691,692],[908,1,1,692,693]]],[36,1,1,693,694,[[910,1,1,693,694]]],[37,11,11,694,705,[[912,2,2,694,696],[913,1,1,696,697],[914,1,1,697,698],[918,3,3,698,701],[919,1,1,701,702],[920,1,1,702,703],[921,2,2,703,705]]],[38,5,5,705,710,[[925,1,1,705,706],[926,2,2,706,708],[927,1,1,708,709],[928,1,1,709,710]]]],[60,104,163,443,470,513,543,714,860,889,948,1047,1118,1187,1246,1247,1300,1356,1358,1364,1744,1756,1757,1901,1939,2062,2140,2167,2510,2520,2745,2904,3041,3042,3231,3246,3249,3280,3327,3363,3431,3481,3511,3524,3955,3956,4151,4366,4368,4392,4425,4489,4554,4733,4737,4830,4945,4986,5011,5028,5035,5036,5079,5101,5115,5117,5144,5176,5203,5218,5230,5239,5249,5292,5325,5330,5389,5396,5398,5431,5497,5514,5563,5695,5719,5748,5755,5757,5767,5780,5786,5789,5790,5794,5798,5805,5879,5940,6127,6190,6191,6493,6659,6743,6889,6900,7107,7482,7526,7547,7583,7761,8207,8298,8370,8372,8397,8517,8531,8539,8624,8625,8631,8632,8634,8742,8868,8992,9027,9036,9038,9101,9124,9193,9201,9216,9331,9593,9844,9922,10004,10092,10222,10430,10450,10641,10742,10845,10846,10868,10888,11008,11010,11179,11281,11295,11327,11385,11428,11518,11670,11684,11701,11783,11785,11797,11830,11836,11844,11845,11851,12171,12182,12183,12223,12239,12246,12410,12419,12502,12588,12611,12670,12719,12776,12811,12823,12838,12869,12917,12928,12929,12953,12969,12974,12981,12982,12999,13037,13038,13083,13119,13123,13179,13188,13197,13208,13228,13237,13264,13284,13376,13383,13395,13415,13433,13453,13489,13528,13580,13599,13600,13606,13611,13646,13650,13664,13686,13688,13692,13694,13704,13706,13720,13723,13740,13763,13767,13775,13945,13977,13982,13985,13990,14025,14039,14044,14061,14066,14102,14139,14140,14145,14146,14147,14149,14194,14197,14198,14202,14220,14228,14232,14243,14276,14290,14324,14334,14341,14344,14359,14370,14375,14387,14417,14430,14440,14447,14452,14459,14467,14472,14478,14492,14494,14497,14505,14506,14507,14508,14537,14568,14574,14577,14596,14627,14632,14638,14648,14658,14678,14694,14707,14728,14732,14744,14768,14778,14793,14822,14824,14883,14944,14961,14968,14970,14981,14986,15012,15023,15024,15047,15077,15079,15192,15221,15243,15246,15269,15270,15289,15294,15297,15311,15328,15332,15343,15344,15382,15385,15387,15406,15415,15420,15445,15457,15461,15469,15470,15487,15513,15524,15530,15535,15540,15560,15563,15565,15648,15708,15715,15746,15757,15777,15786,15856,15869,15981,16094,16113,16128,16164,16179,16180,16189,16225,16243,16252,16296,16364,16389,16409,16416,16432,16439,16451,16454,16457,16469,16481,16487,16492,16493,16506,16507,16512,16520,16538,16563,16566,16574,16581,16594,16601,16609,16613,16637,16649,17033,17038,17051,17055,17062,17065,17071,17081,17085,17095,17099,17101,17120,17135,17193,17333,17349,17354,17355,17356,17358,17359,17378,17391,17395,17400,17404,17417,17421,17425,17429,17435,17441,17449,17451,17465,17479,17480,17487,17537,17565,17683,17684,17697,17708,17715,17746,17790,17798,17811,17818,17833,17834,17835,17847,17858,17863,17872,17873,17875,17916,17929,17955,17966,17968,17969,17977,18001,18002,18041,18050,18051,18057,18120,18122,18128,18135,18151,18172,18174,18175,18184,18185,18191,18203,18213,18221,18232,18236,18248,18250,18254,18257,18265,18301,18305,18308,18311,18384,18408,18420,18464,18508,18536,18579,18616,18655,18676,18681,18699,18700,18708,18726,18728,18729,18732,18733,18748,18749,18750,18752,18757,18780,18781,18803,18812,18823,18833,18851,18854,18859,18870,18914,18934,18937,18938,18944,18961,18975,18978,18985,18987,19030,19042,19049,19054,19058,19069,19084,19095,19102,19124,19141,19149,19170,19194,19196,19204,19219,19222,19233,19239,19255,19277,19320,19339,19341,19345,19353,19426,19430,19432,19450,19458,19460,19465,19494,19495,19502,19548,19549,19563,19606,19611,19615,19632,19643,19644,19645,19646,19663,19670,19672,19678,19679,19684,19697,19698,19702,19716,19746,19761,19773,19779,19786,19792,19884,19941,19993,19995,20085,20087,20117,20120,20139,20140,20142,20169,20175,20217,20245,20279,20385,20387,20507,20590,20704,20705,20738,20752,20821,20881,20935,20965,21035,21053,21063,21089,21107,21119,21207,21259,21280,21324,21368,21558,21560,22110,22132,22149,22166,22173,22184,22200,22201,22203,22214,22228,22297,22344,22423,22426,22427,22435,22461,22475,22504,22525,22526,22541,22582,22588,22591,22625,22652,22670,22694,22701,22737,22751,22759,22762,22765,22809,22829,22861,22907,22908,22921,22932,22986,22988,22990,23016,23018,23034,23044,23100,23110,23119,23126,23139]]],["If",[63,63,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,10,10,1,11,[[70,3,3,1,4],[71,5,5,4,9],[72,2,2,9,11]]],[2,9,9,11,20,[[90,1,1,11,12],[93,1,1,12,13],[94,1,1,13,14],[95,1,1,14,15],[101,1,1,15,16],[102,2,2,16,18],[111,1,1,18,19],[114,1,1,19,20]]],[3,5,5,20,25,[[121,1,1,20,21],[125,1,1,21,22],[143,1,1,22,23],[146,2,2,23,25]]],[4,23,23,25,48,[[159,1,1,25,26],[164,1,1,26,27],[165,3,3,27,30],[167,1,1,30,31],[169,2,2,31,33],[171,2,2,33,35],[173,3,3,35,38],[174,5,5,38,43],[175,1,1,43,44],[176,1,1,44,45],[177,2,2,45,47],[182,1,1,47,48]]],[5,1,1,48,49,[[210,1,1,48,49]]],[7,1,1,49,50,[[232,1,1,49,50]]],[10,3,3,50,53,[[298,3,3,50,53]]],[13,3,3,53,56,[[372,3,3,53,56]]],[18,1,1,56,57,[[488,1,1,56,57]]],[19,1,1,57,58,[[651,1,1,57,58]]],[23,2,2,58,60,[[756,1,1,58,59],[782,1,1,59,60]]],[25,2,2,60,62,[[834,1,1,60,61],[847,1,1,61,62]]],[37,1,1,62,63,[[918,1,1,62,63]]]],[103,2079,2099,2105,2114,2118,2119,2120,2123,2148,2149,2747,2797,2845,2851,3046,3081,3090,3381,3494,3804,3975,4562,4650,4651,5128,5261,5273,5278,5284,5326,5366,5372,5415,5422,5448,5462,5465,5476,5483,5492,5493,5498,5510,5532,5548,5552,5718,6496,7139,9022,9029,9031,11310,11316,11318,14062,17091,19254,19910,21290,21671,22982]]],["Nevertheless",[3,3,[[10,1,1,0,1,[[305,1,1,0,1]]],[13,1,1,1,2,[[378,1,1,1,2]]],[22,1,1,2,3,[[687,1,1,2,3]]]],[9253,11445,17830]]],["Now",[1,1,[[5,1,1,0,1,[[191,1,1,0,1]]]],[5939]]],["Seeing",[1,1,[[20,1,1,0,1,[[664,1,1,0,1]]]],[17428]]],["Surely",[23,23,[[0,1,1,0,1,[[28,1,1,0,1]]],[1,1,1,1,2,[[53,1,1,1,2]]],[3,1,1,2,3,[[139,1,1,2,3]]],[6,1,1,3,4,[[216,1,1,3,4]]],[7,1,1,4,5,[[232,1,1,4,5]]],[9,1,1,5,6,[[277,1,1,5,6]]],[11,1,1,6,7,[[335,1,1,6,7]]],[17,3,3,7,10,[[455,1,1,7,8],[463,1,1,8,9],[475,1,1,9,10]]],[18,3,3,10,13,[[553,1,1,10,11],[568,1,1,11,12],[589,1,1,12,13]]],[19,3,3,13,16,[[628,1,1,13,14],[657,2,2,14,16]]],[20,2,2,16,18,[[662,1,1,16,17],[665,1,1,17,18]]],[22,1,1,18,19,[[738,1,1,18,19]]],[23,2,2,19,21,[[775,1,1,19,20],[790,1,1,20,21]]],[29,1,1,21,22,[[881,1,1,21,22]]],[35,1,1,22,23,[[907,1,1,22,23]]]],[827,1626,4439,6670,7137,8282,10187,13346,13505,13884,15091,15398,15809,16417,17253,17284,17397,17436,18830,19710,20063,22402,22814]]],["That",[14,14,[[0,1,1,0,1,[[21,1,1,0,1]]],[8,1,1,1,2,[[257,1,1,1,2]]],[17,5,5,2,7,[[445,1,1,2,3],[450,1,1,3,4],[455,1,1,4,5],[456,1,1,5,6],[473,1,1,6,7]]],[18,1,1,7,8,[[586,1,1,7,8]]],[22,3,3,8,11,[[692,1,1,8,9],[708,1,1,9,10],[723,1,1,10,11]]],[23,1,1,11,12,[[773,1,1,11,12]]],[25,1,1,12,13,[[824,1,1,12,13]]],[29,1,1,13,14,[[881,1,1,13,14]]]],[564,7795,13092,13216,13331,13385,13813,15782,17960,18226,18584,19645,21044,22409]]],["Therefore",[3,3,[[9,1,1,0,1,[[283,1,1,0,1]]],[18,1,1,1,2,[[498,1,1,1,2]]],[22,1,1,2,3,[[680,1,1,2,3]]]],[8460,14203,17691]]],["Though",[7,7,[[18,4,4,0,4,[[514,1,1,0,1],[521,1,1,1,2],[526,1,1,2,3],[615,1,1,3,4]]],[23,2,2,4,6,[[748,1,1,4,5],[795,1,1,5,6]]],[27,1,1,6,7,[[874,1,1,6,7]]]],[14474,14590,14666,16237,19057,20265,22281]]],["Thus",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15041]]],["Truly",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5893]]],["When",[74,74,[[0,2,2,0,2,[[3,1,1,0,1],[31,1,1,1,2]]],[1,3,3,2,5,[[56,1,1,2,3],[67,1,1,3,4],[79,1,1,4,5]]],[2,8,8,5,13,[[102,2,2,5,7],[103,1,1,7,8],[104,1,1,8,9],[111,1,1,9,10],[112,1,1,10,11],[114,1,1,11,12],[116,1,1,12,13]]],[3,7,7,13,20,[[121,1,1,13,14],[122,1,1,14,15],[131,1,1,15,16],[134,1,1,16,17],[149,1,1,17,18],[150,1,1,18,19],[151,1,1,19,20]]],[4,25,25,20,45,[[156,1,1,20,21],[159,1,1,21,22],[164,2,2,22,24],[165,1,1,24,25],[169,1,1,25,26],[170,1,1,26,27],[171,1,1,27,28],[172,3,3,28,31],[173,1,1,31,32],[174,1,1,32,33],[175,4,4,33,37],[176,6,6,37,43],[177,1,1,43,44],[178,1,1,44,45]]],[9,2,2,45,47,[[270,1,1,45,46],[288,1,1,46,47]]],[11,1,1,47,48,[[319,1,1,47,48]]],[17,6,6,48,54,[[442,1,1,48,49],[451,1,1,49,50],[457,1,1,50,51],[464,1,1,51,52],[465,1,1,52,53],[473,1,1,53,54]]],[18,6,6,54,60,[[485,1,1,54,55],[486,1,1,55,56],[504,1,1,56,57],[509,1,1,57,58],[552,1,1,58,59],[579,1,1,59,60]]],[19,3,3,60,63,[[629,1,1,60,61],[650,1,1,61,62],[653,1,1,62,63]]],[22,5,5,63,68,[[679,1,1,63,64],[681,1,1,64,65],[702,1,1,65,66],[721,1,1,66,67],[737,1,1,67,68]]],[23,2,2,68,70,[[758,1,1,68,69],[781,1,1,69,70]]],[25,1,1,70,71,[[834,1,1,70,71]]],[27,1,1,71,72,[[872,1,1,71,72]]],[37,2,2,72,74,[[917,1,1,72,73],[919,1,1,73,74]]]],[91,945,1694,2015,2394,3054,3061,3145,3170,3396,3412,3471,3572,3798,3825,4155,4283,4811,4818,4855,5029,5112,5260,5269,5290,5378,5393,5407,5428,5437,5446,5457,5478,5509,5521,5524,5525,5526,5530,5535,5544,5545,5546,5558,5578,8130,8607,9719,13021,13260,13418,13543,13583,13833,14015,14033,14295,14358,15073,15537,16443,17045,17166,17666,17713,18108,18507,18819,19305,19890,21282,22241,22967,23012]]],["Whereas",[3,3,[[0,1,1,0,1,[[30,1,1,0,1]]],[9,1,1,1,2,[[273,1,1,1,2]]],[38,1,1,2,3,[[925,1,1,2,3]]]],[910,8186,23093]]],["Which",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13848]]],["Yea",[4,4,[[18,1,1,0,1,[[521,1,1,0,1]]],[19,1,1,1,2,[[629,1,1,1,2]]],[22,1,1,2,3,[[683,1,1,2,3]]],[23,1,1,3,4,[[771,1,1,3,4]]]],[14593,16436,17749,19617]]],["Yet",[7,7,[[4,1,1,0,1,[[184,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[17,1,1,2,3,[[440,1,1,2,3]]],[22,1,1,3,4,[[705,1,1,3,4]]],[23,1,1,4,5,[[753,1,1,4,5]]],[25,1,1,5,6,[[830,1,1,5,6]]],[38,1,1,6,7,[[927,1,1,6,7]]]],[5810,9414,12958,18161,19195,21196,23128]]],["although",[4,4,[[1,1,1,0,1,[[62,1,1,0,1]]],[9,1,1,1,2,[[289,1,1,1,2]]],[16,1,1,2,3,[[432,1,1,2,3]]],[25,1,1,3,4,[[812,1,1,3,4]]]],[1884,8658,12811,20671]]],["and",[3,3,[[1,1,1,0,1,[[71,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]],[23,1,1,2,3,[[784,1,1,2,3]]]],[2136,18349,19948]]],["as",[2,2,[[4,1,1,0,1,[[171,1,1,0,1]]],[8,1,1,1,2,[[236,1,1,1,2]]]],[5412,7224]]],["because",[376,360,[[0,35,34,0,34,[[1,2,2,0,2],[2,2,2,2,4],[10,1,1,4,5],[15,1,1,5,6],[17,1,1,6,7],[18,1,1,7,8],[20,2,2,8,10],[24,2,2,10,12],[25,2,2,12,14],[26,1,1,14,15],[27,1,1,15,16],[28,1,1,16,17],[29,1,1,17,18],[30,1,1,18,19],[31,1,1,19,20],[32,2,1,20,21],[33,2,2,21,23],[34,1,1,23,24],[36,1,1,24,25],[37,2,2,25,27],[40,2,2,27,29],[42,2,2,29,31],[45,1,1,31,32],[46,1,1,32,33],[48,1,1,33,34]]],[1,5,5,34,39,[[50,1,1,34,35],[61,1,1,35,36],[78,2,2,36,38],[89,1,1,38,39]]],[2,12,12,39,51,[[95,1,1,39,40],[99,1,1,40,41],[100,3,3,41,44],[103,1,1,44,45],[108,2,2,45,47],[109,1,1,47,48],[110,1,1,48,49],[111,2,2,49,51]]],[3,19,19,51,70,[[122,2,2,51,53],[123,1,1,53,54],[125,1,1,54,55],[127,3,3,55,58],[131,1,1,58,59],[135,2,2,59,61],[138,3,3,61,64],[142,1,1,64,65],[143,1,1,65,66],[146,2,2,66,68],[148,2,2,68,70]]],[4,25,24,70,94,[[154,3,3,70,73],[161,1,1,73,74],[164,1,1,74,75],[165,2,2,75,77],[166,2,2,77,79],[167,3,2,79,81],[168,1,1,81,82],[171,1,1,82,83],[174,2,2,83,85],[175,2,2,85,87],[176,1,1,87,88],[179,1,1,88,89],[180,2,2,89,91],[183,1,1,91,92],[184,1,1,92,93],[185,1,1,93,94]]],[5,13,11,94,105,[[191,1,1,94,95],[192,2,2,95,97],[193,3,2,97,99],[195,1,1,99,100],[196,3,2,100,102],[200,1,1,102,103],[203,1,1,103,104],[206,1,1,104,105]]],[6,18,17,105,122,[[211,1,1,105,106],[215,1,1,106,107],[216,4,3,107,110],[218,2,2,110,112],[219,1,1,112,113],[220,1,1,113,114],[222,1,1,114,115],[223,1,1,115,116],[224,1,1,116,117],[225,1,1,117,118],[228,1,1,118,119],[230,1,1,119,120],[231,2,2,120,122]]],[8,28,25,122,147,[[236,1,1,122,123],[237,2,2,123,125],[238,1,1,125,126],[241,2,1,126,127],[244,2,2,127,129],[245,1,1,129,130],[247,2,2,130,132],[248,1,1,132,133],[249,1,1,133,134],[250,1,1,134,135],[251,1,1,135,136],[253,2,2,136,138],[254,2,1,138,139],[255,2,2,139,141],[256,1,1,141,142],[257,2,1,142,143],[260,1,1,143,144],[261,1,1,144,145],[265,2,2,145,147]]],[9,14,14,147,161,[[267,3,3,147,150],[276,1,1,150,151],[278,1,1,151,152],[280,2,2,152,154],[282,2,2,154,156],[285,2,2,156,158],[288,2,2,158,160],[289,1,1,160,161]]],[10,10,9,161,170,[[292,2,1,161,162],[293,1,1,162,163],[298,2,2,163,165],[301,1,1,165,166],[307,1,1,166,167],[309,2,2,167,169],[311,1,1,169,170]]],[11,6,6,170,176,[[313,1,1,170,171],[317,1,1,171,172],[320,1,1,172,173],[325,1,1,173,174],[327,1,1,174,175],[334,1,1,175,176]]],[12,18,18,176,194,[[338,1,1,176,177],[341,1,1,177,178],[342,3,3,178,181],[344,2,2,181,183],[346,1,1,183,184],[350,1,1,184,185],[352,2,2,185,187],[353,2,2,187,189],[356,1,1,189,190],[359,1,1,190,191],[364,1,1,191,192],[365,1,1,192,193],[366,1,1,193,194]]],[13,25,25,194,219,[[372,2,2,194,196],[373,3,3,196,199],[374,1,1,199,200],[378,2,2,200,202],[379,1,1,202,203],[380,2,2,203,205],[383,1,1,205,206],[387,2,2,206,208],[388,1,1,208,209],[390,3,3,209,212],[391,2,2,212,214],[392,1,1,214,215],[393,1,1,215,216],[396,1,1,216,217],[401,1,1,217,218],[402,1,1,218,219]]],[14,2,2,219,221,[[405,1,1,219,220],[410,1,1,220,221]]],[15,3,3,221,224,[[417,1,1,221,222],[418,1,1,222,223],[420,1,1,223,224]]],[16,1,1,224,225,[[434,1,1,224,225]]],[17,10,9,225,234,[[441,1,1,225,226],[443,1,1,226,227],[446,1,1,227,228],[466,2,1,228,229],[467,2,2,229,231],[470,1,1,231,232],[473,1,1,232,233],[474,1,1,233,234]]],[18,23,23,234,257,[[490,1,1,234,235],[491,1,1,235,236],[493,1,1,236,237],[495,2,2,237,239],[505,1,1,239,240],[510,1,1,240,241],[514,1,1,241,242],[516,1,1,242,243],[518,1,1,243,244],[521,1,1,244,245],[529,1,1,245,246],[530,1,1,246,247],[563,1,1,247,248],[568,1,1,248,249],[584,1,1,249,250],[586,1,1,250,251],[593,1,1,251,252],[595,1,1,252,253],[596,4,4,253,257]]],[19,3,3,257,260,[[648,1,1,257,258],[649,1,1,258,259],[651,1,1,259,260]]],[20,4,4,260,264,[[660,1,1,260,261],[663,1,1,261,262],[670,2,2,262,264]]],[22,19,17,264,281,[[680,1,1,264,265],[681,1,1,265,266],[683,1,1,266,267],[684,1,1,267,268],[685,1,1,268,269],[692,2,2,269,271],[693,1,1,271,272],[702,1,1,272,273],[704,1,1,273,274],[706,1,1,274,275],[709,2,1,275,276],[718,1,1,276,277],[721,1,1,277,278],[738,2,2,278,280],[743,2,1,280,281]]],[23,38,35,281,316,[[748,4,3,281,284],[749,1,1,284,285],[750,2,2,285,287],[752,1,1,287,288],[753,3,2,288,290],[754,1,1,290,291],[756,2,2,291,293],[757,1,1,293,294],[758,2,2,294,296],[761,1,1,296,297],[763,1,1,297,298],[764,1,1,298,299],[766,1,1,299,300],[772,1,1,300,301],[773,1,1,301,302],[774,1,1,302,303],[775,2,2,303,305],[783,1,1,305,306],[784,1,1,306,307],[785,1,1,307,308],[790,3,3,308,311],[792,1,1,311,312],[794,3,2,312,314],[795,2,2,314,316]]],[24,5,4,316,320,[[797,3,2,316,318],[799,2,2,318,320]]],[25,9,9,320,329,[[804,2,2,320,322],[808,1,1,322,323],[819,1,1,323,324],[822,1,1,324,325],[824,1,1,325,326],[845,1,1,326,327],[848,2,2,327,329]]],[26,3,3,329,332,[[858,2,2,329,331],[860,1,1,331,332]]],[27,12,12,332,344,[[865,4,4,332,336],[866,2,2,336,338],[868,1,1,338,339],[870,1,1,339,340],[871,3,3,340,343],[872,1,1,343,344]]],[28,4,4,344,348,[[876,3,3,344,347],[877,1,1,347,348]]],[31,1,1,348,349,[[889,1,1,348,349]]],[32,3,3,349,352,[[894,1,1,349,350],[899,2,2,350,352]]],[34,3,3,352,355,[[903,1,1,352,353],[904,2,2,353,355]]],[35,2,2,355,357,[[906,1,1,355,356],[907,1,1,356,357]]],[37,2,2,357,359,[[920,2,2,357,359]]],[38,1,1,359,360,[[926,1,1,359,360]]]],[33,53,65,75,275,392,444,470,526,544,679,686,699,712,750,784,829,850,903,960,971,987,999,1018,1086,1134,1145,1227,1252,1308,1322,1416,1440,1477,1553,1855,2369,2370,2742,2853,2990,3001,3002,3003,3159,3289,3301,3321,3368,3376,3394,3830,3835,3859,3978,4027,4038,4058,4187,4302,4309,4378,4397,4407,4551,4558,4653,4662,4729,4737,4943,4947,4957,5182,5260,5277,5282,5298,5319,5321,5335,5357,5412,5489,5491,5505,5507,5526,5605,5656,5673,5757,5805,5831,5941,5966,5974,5988,5991,6055,6066,6106,6196,6276,6377,6528,6646,6684,6685,6686,6739,6743,6772,6821,6873,6906,6926,6935,7021,7090,7117,7124,7218,7241,7265,7289,7350,7404,7407,7419,7470,7482,7499,7537,7584,7602,7688,7692,7710,7748,7764,7780,7804,7889,7917,7984,7991,8031,8032,8034,8245,8300,8371,8382,8434,8436,8532,8537,8610,8622,8659,8796,8818,9020,9049,9117,9324,9394,9401,9453,9550,9648,9756,9875,9941,10152,10271,10426,10437,10448,10450,10556,10558,10642,10771,10804,10813,10853,10861,10909,10972,11132,11146,11173,11306,11308,11326,11330,11331,11357,11439,11451,11471,11481,11482,11526,11627,11634,11650,11693,11697,11701,11720,11724,11752,11761,11830,11980,12008,12108,12223,12400,12419,12505,12837,12998,13038,13126,13613,13629,13632,13735,13814,13845,14080,14086,14100,14125,14137,14305,14387,14490,14521,14553,14574,14719,14724,15301,15409,15729,15776,15849,15870,15954,15972,15998,16037,16991,17037,17092,17350,17417,17526,17528,17691,17715,17763,17774,17806,17948,17957,17961,18100,18133,18192,18251,18427,18525,18826,18830,18913,19044,19045,19046,19064,19108,19119,19167,19185,19194,19206,19253,19260,19283,19298,19299,19370,19422,19430,19469,19634,19667,19684,19706,19710,19941,19944,19975,20060,20066,20068,20122,20177,20190,20223,20263,20318,20326,20376,20382,20522,20523,20596,20867,20951,21052,21601,21688,21691,21999,22004,22071,22134,22139,22143,22146,22153,22163,22191,22225,22228,22230,22238,22245,22302,22303,22309,22331,22541,22596,22673,22682,22747,22751,22753,22804,22815,23018,23021,23105]]],["but",[122,120,[[0,6,6,0,6,[[16,1,1,0,1],[17,1,1,1,2],[18,1,1,2,3],[41,2,2,3,5],[44,1,1,5,6]]],[1,4,4,6,10,[[53,1,1,6,7],[65,1,1,7,8],[68,1,1,8,9],[72,1,1,9,10]]],[3,4,4,10,14,[[126,1,1,10,11],[143,1,1,11,12],[151,1,1,12,13],[152,1,1,13,14]]],[4,6,6,14,20,[[156,1,1,14,15],[157,1,1,15,16],[160,1,1,16,17],[161,1,1,17,18],[173,1,1,18,19],[181,1,1,19,20]]],[5,4,4,20,24,[[191,1,1,20,21],[197,1,1,21,22],[208,1,1,22,23],[210,1,1,23,24]]],[6,3,3,24,27,[[211,1,1,24,25],[212,1,1,25,26],[225,1,1,26,27]]],[7,1,1,27,28,[[232,1,1,27,28]]],[8,8,8,28,36,[[237,1,1,28,29],[241,1,1,29,30],[243,1,1,30,31],[245,1,1,31,32],[247,1,1,32,33],[253,1,1,33,34],[257,1,1,34,35],[265,1,1,35,36]]],[9,4,4,36,40,[[282,1,1,36,37],[284,1,1,37,38],[286,1,1,38,39],[290,1,1,39,40]]],[10,7,6,40,46,[[292,1,1,40,41],[293,3,2,41,43],[299,1,1,43,44],[301,1,1,44,45],[311,1,1,45,46]]],[11,6,6,46,52,[[313,3,3,46,49],[318,1,1,49,50],[324,1,1,50,51],[332,1,1,51,52]]],[12,2,2,52,54,[[358,1,1,52,53],[366,1,1,53,54]]],[13,16,15,54,69,[[372,1,1,54,55],[374,1,1,55,56],[381,1,1,56,57],[382,1,1,57,58],[384,1,1,58,59],[385,1,1,59,60],[386,3,3,60,63],[391,2,1,63,64],[392,1,1,64,65],[394,1,1,65,66],[399,1,1,66,67],[401,2,2,67,69]]],[14,1,1,69,70,[[406,1,1,69,70]]],[15,2,2,70,72,[[418,2,2,70,72]]],[16,2,2,72,74,[[426,1,1,72,73],[431,1,1,73,74]]],[17,4,4,74,78,[[444,2,2,74,76],[447,1,1,76,77],[467,1,1,77,78]]],[18,5,5,78,83,[[521,1,1,78,79],[540,1,1,79,80],[592,1,1,80,81],[595,1,1,81,82],[604,1,1,82,83]]],[19,1,1,83,84,[[650,1,1,83,84]]],[20,3,3,84,87,[[663,1,1,84,85],[664,1,1,85,86],[667,1,1,86,87]]],[22,6,6,87,93,[[685,1,1,87,88],[688,1,1,88,89],[706,1,1,89,90],[708,1,1,90,91],[721,1,1,91,92],[740,1,1,92,93]]],[23,16,16,93,109,[[746,1,1,93,94],[758,2,2,94,96],[762,1,1,96,97],[776,1,1,97,98],[778,1,1,98,99],[779,2,2,99,101],[782,1,1,101,102],[786,1,1,102,103],[792,1,1,103,104],[793,2,2,104,106],[794,1,1,106,107],[795,2,2,107,109]]],[25,5,5,109,114,[[808,1,1,109,110],[811,1,1,110,111],[815,1,1,111,112],[819,1,1,112,113],[847,1,1,113,114]]],[26,1,1,114,115,[[858,1,1,114,115]]],[27,3,3,115,118,[[862,1,1,115,116],[869,1,1,116,117],[874,1,1,117,118]]],[29,1,1,118,119,[[885,1,1,118,119]]],[32,1,1,119,120,[[893,1,1,119,120]]]],[412,439,459,1264,1286,1366,1611,1955,2039,2168,4018,4557,4876,4888,5030,5056,5140,5162,5470,5699,5948,6127,6454,6497,6528,6562,6942,7144,7256,7334,7376,7437,7472,7701,7810,8002,8444,8481,8575,8716,8800,8838,8839,9073,9142,9466,9537,9539,9549,9686,9857,10108,10958,11165,11291,11355,11495,11521,11549,11582,11597,11599,11602,11708,11750,11791,11931,11987,11988,12113,12409,12413,12718,12806,13069,13086,13130,13644,14574,14850,15831,15886,16126,17061,17404,17419,17486,17795,17857,18191,18222,18527,18858,18999,19305,19306,19396,19735,19804,19830,19837,19918,19989,20125,20139,20146,20210,20238,20274,20581,20644,20749,20860,21664,22006,22100,22200,22275,22478,22591]]],["either",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9368]]],["even",[5,5,[[1,1,1,0,1,[[81,1,1,0,1]]],[9,2,2,1,3,[[269,1,1,1,2],[281,1,1,2,3]]],[10,1,1,3,4,[[291,1,1,3,4]]],[22,1,1,4,5,[[727,1,1,4,5]]]],[2467,8090,8410,8747,18655]]],["except",[2,2,[[3,1,1,0,1,[[132,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]]],[4207,8090]]],["for",[1609,1541,[[0,100,98,0,98,[[1,2,2,0,2],[2,2,1,2,3],[3,1,1,3,4],[4,1,1,4,5],[5,3,3,5,8],[6,1,1,8,9],[7,2,2,9,11],[8,1,1,11,12],[9,1,1,12,13],[11,1,1,13,14],[12,3,3,14,17],[14,1,1,17,18],[15,1,1,18,19],[16,1,1,19,20],[17,2,2,20,22],[18,4,4,22,26],[19,1,1,26,27],[20,6,6,27,33],[21,2,2,33,35],[24,1,1,35,36],[25,4,4,36,40],[27,1,1,40,41],[28,4,4,41,45],[29,3,3,45,48],[30,4,4,48,52],[31,5,5,52,57],[32,1,1,57,58],[33,1,1,58,59],[34,1,1,59,60],[36,2,2,60,62],[37,3,3,62,65],[40,2,2,65,67],[41,4,4,67,71],[42,5,5,71,76],[43,2,2,76,78],[44,5,5,78,83],[45,3,3,83,86],[46,5,5,86,91],[47,2,2,91,93],[48,3,2,93,95],[49,3,3,95,98]]],[1,82,79,98,177,[[50,1,1,98,99],[51,1,1,99,100],[52,3,3,100,103],[53,2,2,103,105],[54,1,1,105,106],[55,1,1,106,107],[56,1,1,107,108],[57,1,1,108,109],[58,3,3,109,112],[59,6,6,112,118],[61,6,6,118,124],[62,5,5,124,129],[63,1,1,129,130],[64,4,4,130,134],[65,5,5,134,139],[66,1,1,139,140],[67,4,4,140,144],[68,3,3,144,147],[69,4,4,147,151],[70,1,1,151,152],[71,2,2,152,154],[72,7,6,154,160],[78,2,2,160,162],[80,4,3,162,165],[81,4,4,165,169],[82,4,3,169,172],[83,5,5,172,177]]],[2,47,45,177,222,[[91,1,1,177,178],[94,1,1,178,179],[97,2,2,179,181],[98,1,1,181,182],[99,4,4,182,186],[100,3,3,186,189],[102,3,3,189,192],[103,1,1,192,193],[105,1,1,193,194],[106,2,2,194,196],[107,3,3,196,199],[108,2,2,199,201],[109,4,4,201,205],[110,6,5,205,210],[111,2,2,210,212],[112,1,1,212,213],[113,2,2,213,215],[114,6,5,215,220],[115,2,2,220,222]]],[3,38,36,222,258,[[121,1,1,222,223],[126,1,1,223,224],[127,3,2,224,226],[128,1,1,226,227],[129,2,2,227,229],[130,4,4,229,233],[131,1,1,233,234],[132,5,5,234,239],[133,1,1,239,240],[134,1,1,240,241],[136,1,1,241,242],[137,5,5,242,247],[138,6,5,247,252],[142,1,1,252,253],[148,1,1,253,254],[149,1,1,254,255],[151,2,2,255,257],[152,1,1,257,258]]],[4,74,71,258,329,[[153,3,3,258,261],[154,4,4,261,265],[155,4,4,265,269],[156,3,3,269,272],[157,4,4,272,276],[159,5,5,276,281],[160,1,1,281,282],[161,2,2,282,284],[162,1,1,284,285],[163,1,1,285,286],[164,3,2,286,288],[165,1,1,288,289],[166,3,3,289,292],[167,2,2,292,294],[168,3,3,294,297],[169,1,1,297,298],[172,3,2,298,300],[173,3,3,300,303],[174,2,2,303,305],[175,3,3,305,308],[176,3,3,308,311],[180,5,5,311,316],[182,2,2,316,318],[183,5,4,318,322],[184,4,4,322,326],[185,2,2,326,328],[186,1,1,328,329]]],[5,40,39,329,368,[[187,4,4,329,333],[188,4,4,333,337],[189,2,2,337,339],[191,2,2,339,341],[192,1,1,341,342],[193,2,2,342,344],[194,2,2,344,346],[195,1,1,346,347],[196,6,6,347,353],[197,2,2,353,355],[200,1,1,355,356],[201,1,1,356,357],[203,3,2,357,359],[204,1,1,359,360],[205,1,1,360,361],[207,1,1,361,362],[208,1,1,362,363],[209,2,2,363,365],[210,3,3,365,368]]],[6,38,38,368,406,[[211,3,3,368,371],[212,1,1,371,372],[213,1,1,372,373],[214,5,5,373,378],[216,1,1,378,379],[217,2,2,379,381],[218,5,5,381,386],[219,2,2,386,388],[221,2,2,388,390],[223,2,2,390,392],[224,2,2,392,394],[226,3,3,394,397],[228,3,3,397,400],[230,4,4,400,404],[231,2,2,404,406]]],[7,13,13,406,419,[[232,5,5,406,411],[233,1,1,411,412],[234,4,4,412,416],[235,3,3,416,419]]],[8,113,107,419,526,[[236,3,3,419,422],[237,7,7,422,429],[238,6,6,429,435],[239,7,6,435,441],[240,2,2,441,443],[241,1,1,443,444],[242,1,1,444,445],[243,1,1,445,446],[244,9,7,446,453],[245,1,1,453,454],[246,1,1,454,455],[247,4,3,455,458],[248,3,3,458,461],[249,7,7,461,468],[250,4,4,468,472],[251,6,5,472,477],[252,7,6,477,483],[255,10,10,483,493],[256,3,3,493,496],[257,2,2,496,498],[258,6,6,498,504],[259,3,3,504,507],[260,4,4,507,511],[261,7,7,511,518],[262,1,1,518,519],[263,2,2,519,521],[264,1,1,521,522],[265,3,3,522,525],[266,1,1,525,526]]],[9,52,51,526,577,[[267,3,3,526,529],[268,1,1,529,530],[269,2,2,530,532],[270,1,1,532,533],[271,2,2,533,535],[272,1,1,535,536],[273,3,3,536,539],[274,1,1,539,540],[275,2,2,540,542],[277,1,1,542,543],[278,2,2,543,545],[279,8,7,545,552],[280,2,2,552,554],[281,2,2,554,556],[282,2,2,556,558],[283,4,4,558,562],[284,5,5,562,567],[285,6,6,567,573],[288,1,1,573,574],[289,1,1,574,575],[290,2,2,575,577]]],[10,40,39,577,616,[[291,1,1,577,578],[292,8,8,578,586],[293,4,4,586,590],[295,3,2,590,592],[296,1,1,592,593],[298,4,4,593,597],[301,1,1,597,598],[302,3,3,598,601],[304,3,3,601,604],[308,3,3,604,607],[309,3,3,607,610],[310,2,2,610,612],[311,1,1,612,613],[312,3,3,613,616]]],[11,34,34,616,650,[[314,3,3,616,619],[315,1,1,619,620],[316,3,3,620,623],[317,1,1,623,624],[318,2,2,624,626],[320,3,3,626,629],[321,4,4,629,633],[322,1,1,633,634],[324,1,1,634,635],[325,2,2,635,637],[330,5,5,637,642],[331,3,3,642,645],[332,2,2,645,647],[334,1,1,647,648],[336,1,1,648,649],[337,1,1,649,650]]],[12,49,48,650,698,[[341,2,2,650,652],[342,2,2,652,654],[343,1,1,654,655],[344,1,1,655,656],[346,1,1,656,657],[347,1,1,657,658],[348,1,1,658,659],[349,5,5,659,664],[350,3,3,664,667],[351,2,2,667,669],[352,2,2,669,671],[353,2,1,671,672],[354,2,2,672,674],[355,1,1,674,675],[356,1,1,675,676],[358,5,5,676,681],[359,4,4,681,685],[361,1,1,685,686],[363,3,3,686,689],[365,6,6,689,695],[366,3,3,695,698]]],[13,86,84,698,782,[[367,4,4,698,702],[368,3,3,702,705],[370,1,1,705,706],[371,3,3,706,709],[372,2,2,709,711],[373,3,3,711,714],[374,2,2,714,716],[376,2,2,716,718],[377,5,5,718,723],[378,1,1,723,724],[379,2,2,724,726],[380,5,4,726,730],[381,4,4,730,734],[382,1,1,734,735],[384,2,2,735,737],[385,2,2,737,739],[386,6,6,739,745],[387,1,1,745,746],[388,4,4,746,750],[389,2,2,750,752],[390,1,1,752,753],[391,3,3,753,756],[392,7,6,756,762],[394,3,3,762,765],[395,5,5,765,770],[396,3,3,770,773],[397,2,2,773,775],[398,4,4,775,779],[400,1,1,779,780],[401,2,2,780,782]]],[14,13,12,782,794,[[405,3,3,782,785],[406,1,1,785,786],[408,1,1,786,787],[411,4,3,787,790],[412,4,4,790,794]]],[15,18,17,794,811,[[416,2,2,794,796],[418,1,1,796,797],[419,1,1,797,798],[420,5,4,798,802],[421,4,4,802,806],[424,3,3,806,809],[425,2,2,809,811]]],[16,17,17,811,828,[[426,4,4,811,815],[427,3,3,815,818],[428,3,3,818,821],[429,1,1,821,822],[432,1,1,822,823],[433,3,3,823,826],[434,2,2,826,828]]],[17,16,16,828,844,[[436,1,1,828,829],[437,1,1,829,830],[441,1,1,830,831],[442,2,2,831,833],[448,2,2,833,835],[450,1,1,835,836],[454,2,2,836,838],[466,1,1,838,839],[467,1,1,839,840],[468,2,2,840,842],[469,1,1,842,843],[477,1,1,843,844]]],[18,180,166,844,1010,[[480,2,2,844,846],[481,1,1,846,847],[482,2,2,847,849],[483,3,2,849,851],[486,1,1,851,852],[487,1,1,852,853],[489,2,1,853,854],[491,1,1,854,855],[493,1,1,855,856],[494,1,1,856,857],[495,1,1,857,858],[499,2,1,858,859],[500,1,1,859,860],[502,8,8,860,868],[503,1,1,868,869],[504,1,1,869,870],[507,1,1,870,871],[508,4,4,871,875],[511,1,1,875,876],[514,3,3,876,879],[516,1,1,879,880],[518,1,1,880,881],[519,3,3,881,884],[520,1,1,884,885],[521,1,1,885,886],[522,1,1,886,887],[524,1,1,887,888],[526,1,1,888,889],[527,2,2,889,891],[529,1,1,891,892],[530,1,1,892,893],[531,1,1,893,894],[532,4,4,894,898],[533,3,3,898,901],[534,1,1,901,902],[536,4,4,902,906],[537,1,1,906,907],[539,2,2,907,909],[544,1,1,909,910],[546,3,3,910,913],[548,5,4,913,917],[551,1,1,917,918],[556,1,1,918,919],[559,1,1,919,920],[562,1,1,920,921],[563,5,5,921,926],[567,1,1,926,927],[569,1,1,927,928],[573,2,1,928,929],[575,2,2,929,931],[576,1,1,931,932],[579,2,2,932,934],[582,1,1,934,935],[583,2,1,935,936],[584,2,1,936,937],[593,1,1,937,938],[595,4,3,938,941],[596,25,25,941,966],[600,1,1,966,967],[607,1,1,967,968],[609,1,1,968,969],[610,1,1,969,970],[612,2,1,970,971],[613,27,26,971,997],[615,3,2,997,999],[618,2,2,999,1001],[619,3,2,1001,1003],[620,5,4,1003,1007],[624,2,1,1007,1008],[625,2,2,1008,1010]]],[19,15,15,1010,1025,[[631,2,2,1010,1012],[635,1,1,1012,1013],[643,2,2,1013,1015],[646,2,2,1015,1017],[648,1,1,1017,1018],[649,1,1,1018,1019],[650,3,3,1019,1022],[653,1,1,1022,1023],[654,1,1,1023,1024],[658,1,1,1024,1025]]],[20,33,32,1025,1057,[[660,3,3,1025,1028],[661,5,4,1028,1032],[663,4,4,1032,1036],[665,5,5,1036,1041],[666,3,3,1041,1044],[667,5,5,1044,1049],[668,2,2,1049,1051],[669,5,5,1051,1056],[670,1,1,1056,1057]]],[21,4,4,1057,1061,[[671,1,1,1057,1058],[672,2,2,1058,1060],[678,1,1,1060,1061]]],[22,122,115,1061,1176,[[679,2,2,1061,1063],[680,2,2,1063,1065],[681,3,3,1065,1068],[682,1,1,1068,1069],[684,2,1,1069,1070],[685,1,1,1070,1071],[686,1,1,1071,1072],[687,1,1,1072,1073],[688,1,1,1073,1074],[689,1,1,1074,1075],[690,3,3,1075,1078],[691,1,1,1078,1079],[692,1,1,1079,1080],[693,4,3,1080,1083],[694,2,2,1083,1085],[697,1,1,1085,1086],[699,1,1,1086,1087],[700,2,2,1087,1089],[701,4,4,1089,1093],[702,2,2,1093,1095],[703,2,2,1095,1097],[704,4,4,1097,1101],[705,1,1,1101,1102],[706,3,3,1102,1105],[707,2,2,1105,1107],[708,2,2,1107,1109],[710,1,1,1109,1110],[711,1,1,1110,1111],[712,2,2,1111,1113],[713,1,1,1113,1114],[714,4,4,1114,1118],[715,3,3,1118,1121],[716,2,2,1121,1123],[718,2,2,1123,1125],[719,2,1,1125,1126],[721,2,2,1126,1128],[722,6,5,1128,1133],[723,1,1,1133,1134],[724,1,1,1134,1135],[725,2,2,1135,1137],[726,2,2,1137,1139],[727,2,2,1139,1141],[729,3,3,1141,1144],[730,5,5,1144,1149],[731,1,1,1149,1150],[732,6,3,1150,1153],[733,2,2,1153,1155],[734,2,2,1155,1157],[735,2,2,1157,1159],[736,1,1,1159,1160],[737,2,2,1160,1162],[738,3,3,1162,1165],[739,1,1,1165,1166],[740,1,1,1166,1167],[742,1,1,1167,1168],[743,6,6,1168,1174],[744,2,2,1174,1176]]],[23,177,171,1176,1347,[[745,5,5,1176,1181],[746,4,4,1181,1185],[747,5,5,1185,1190],[748,5,5,1190,1195],[749,3,3,1195,1198],[750,7,6,1198,1204],[751,3,3,1204,1207],[752,2,2,1207,1209],[753,6,6,1209,1215],[754,7,7,1215,1222],[755,3,3,1222,1225],[756,1,1,1225,1226],[757,2,2,1226,1228],[758,5,5,1228,1233],[759,4,4,1233,1237],[760,1,1,1237,1238],[761,2,2,1238,1240],[762,3,3,1240,1243],[764,3,3,1243,1246],[765,1,1,1246,1247],[766,3,3,1247,1250],[767,4,4,1250,1254],[768,1,1,1254,1255],[769,5,5,1255,1260],[770,3,3,1260,1263],[771,2,2,1263,1265],[772,1,1,1265,1266],[773,1,1,1266,1267],[774,4,4,1267,1271],[775,7,6,1271,1277],[776,4,4,1277,1281],[777,3,2,1281,1283],[778,2,2,1283,1285],[779,1,1,1285,1286],[780,1,1,1286,1287],[781,2,2,1287,1289],[782,5,4,1289,1293],[784,1,1,1293,1294],[785,2,2,1294,1296],[786,3,3,1296,1299],[787,1,1,1299,1300],[788,1,1,1300,1301],[789,2,2,1301,1303],[790,9,8,1303,1311],[791,1,1,1311,1312],[792,10,10,1312,1322],[793,6,5,1322,1327],[794,9,9,1327,1336],[795,11,11,1336,1347]]],[24,10,9,1347,1356,[[797,8,7,1347,1354],[798,1,1,1354,1355],[800,1,1,1355,1356]]],[25,45,44,1356,1400,[[802,2,2,1356,1358],[803,2,2,1358,1360],[804,4,3,1360,1363],[806,1,1,1363,1364],[808,4,4,1364,1368],[809,2,2,1368,1370],[810,1,1,1370,1371],[811,1,1,1371,1372],[813,3,3,1372,1375],[817,1,1,1375,1376],[821,1,1,1376,1377],[822,2,2,1377,1379],[824,2,2,1379,1381],[827,2,2,1381,1383],[829,1,1,1383,1384],[831,1,1,1384,1385],[832,2,2,1385,1387],[834,1,1,1387,1388],[837,1,1,1388,1389],[840,2,2,1389,1391],[841,1,1,1391,1392],[842,1,1,1392,1393],[843,3,3,1393,1396],[846,1,1,1396,1397],[848,2,2,1397,1399],[849,1,1,1399,1400]]],[26,17,17,1400,1417,[[857,3,3,1400,1403],[858,4,4,1403,1407],[859,4,4,1407,1411],[860,5,5,1411,1416],[861,1,1,1416,1417]]],[27,30,30,1417,1447,[[862,5,5,1417,1422],[863,4,4,1422,1426],[865,3,3,1426,1429],[866,4,4,1429,1433],[867,2,2,1433,1435],[868,2,2,1435,1437],[870,3,3,1437,1440],[871,1,1,1440,1441],[872,1,1,1441,1442],[874,2,2,1442,1444],[875,3,3,1444,1447]]],[28,24,18,1447,1465,[[876,7,7,1447,1454],[877,11,7,1454,1461],[878,6,4,1461,1465]]],[29,9,9,1465,1474,[[882,1,1,1465,1466],[883,3,3,1466,1469],[884,2,2,1469,1471],[885,3,3,1471,1474]]],[30,1,1,1474,1475,[[888,1,1,1474,1475]]],[31,7,7,1475,1482,[[889,5,5,1475,1480],[892,2,2,1480,1482]]],[32,16,16,1482,1498,[[893,4,4,1482,1486],[894,2,2,1486,1488],[895,1,1,1488,1489],[896,6,6,1489,1495],[897,1,1,1495,1496],[898,1,1,1496,1497],[899,1,1,1497,1498]]],[33,4,4,1498,1502,[[900,2,2,1498,1500],[901,1,1,1500,1501],[902,1,1,1501,1502]]],[34,2,2,1502,1504,[[903,2,2,1502,1504]]],[35,12,10,1504,1514,[[906,4,3,1504,1507],[907,3,3,1507,1510],[908,5,4,1510,1514]]],[36,2,2,1514,1516,[[910,2,2,1514,1516]]],[37,22,18,1516,1534,[[912,4,4,1516,1520],[913,2,1,1520,1521],[915,1,1,1521,1522],[918,1,1,1522,1523],[919,3,3,1523,1526],[920,4,3,1526,1529],[921,4,2,1529,1531],[923,2,2,1531,1533],[924,1,1,1533,1534]]],[38,7,7,1534,1541,[[925,2,2,1534,1536],[926,2,2,1536,1538],[927,2,2,1538,1540],[928,1,1,1540,1541]]]],[35,47,74,102,129,144,149,150,160,192,204,211,259,308,324,326,335,376,394,402,429,439,465,471,479,487,502,520,523,525,529,530,531,559,563,688,695,699,708,716,788,797,804,816,827,843,846,856,885,888,904,908,938,939,954,956,958,970,994,1029,1100,1110,1130,1133,1135,1226,1244,1256,1257,1275,1290,1295,1306,1315,1320,1322,1342,1350,1361,1363,1369,1378,1384,1389,1418,1420,1424,1433,1435,1440,1442,1465,1469,1479,1480,1509,1523,1525,1551,1576,1584,1585,1586,1602,1620,1640,1656,1709,1736,1753,1773,1774,1778,1786,1787,1788,1803,1805,1831,1833,1835,1846,1849,1855,1870,1876,1883,1884,1886,1914,1921,1941,1943,1946,1950,1956,1962,1972,1976,1997,2002,2003,2010,2017,2031,2037,2049,2056,2058,2071,2076,2098,2134,2140,2151,2152,2159,2165,2175,2177,2358,2364,2433,2434,2437,2439,2445,2461,2463,2476,2490,2493,2505,2506,2510,2514,2523,2773,2841,2950,2952,2957,2984,2989,2990,2991,3039,3041,3042,3063,3080,3104,3124,3203,3246,3249,3261,3264,3275,3283,3315,3325,3337,3341,3344,3352,3353,3357,3360,3368,3385,3389,3430,3455,3468,3485,3486,3492,3502,3503,3525,3568,3807,4017,4037,4042,4060,4105,4106,4117,4121,4148,4150,4178,4222,4228,4231,4232,4240,4247,4288,4335,4345,4347,4353,4364,4374,4381,4387,4388,4404,4409,4551,4730,4813,4878,4879,4886,4909,4930,4934,4943,4947,4957,4968,4977,4997,5002,5003,5007,5010,5019,5058,5062,5064,5078,5118,5127,5132,5136,5137,5155,5163,5169,5205,5210,5263,5271,5275,5297,5311,5317,5323,5337,5343,5345,5361,5365,5428,5446,5452,5464,5470,5475,5496,5507,5518,5521,5529,5531,5540,5649,5650,5651,5652,5668,5717,5728,5734,5735,5749,5751,5762,5778,5793,5801,5819,5829,5848,5857,5859,5860,5862,5872,5874,5880,5884,5897,5898,5941,5949,5965,5979,5989,6008,6020,6046,6068,6070,6072,6078,6083,6089,6113,6117,6199,6221,6276,6293,6300,6330,6391,6460,6463,6470,6494,6495,6503,6524,6541,6543,6563,6596,6602,6608,6613,6616,6618,6676,6703,6709,6724,6739,6740,6741,6749,6757,6759,6831,6847,6889,6891,6912,6919,6966,6967,6973,6994,7002,7003,7060,7082,7093,7095,7120,7124,7133,7139,7140,7143,7147,7162,7181,7183,7189,7190,7194,7196,7205,7217,7228,7234,7242,7243,7248,7249,7257,7264,7270,7281,7282,7284,7285,7286,7297,7304,7310,7315,7316,7317,7319,7326,7330,7335,7369,7376,7398,7400,7403,7404,7407,7411,7415,7425,7458,7479,7481,7484,7491,7498,7504,7514,7518,7520,7534,7538,7552,7553,7571,7584,7586,7589,7596,7602,7606,7607,7617,7644,7646,7651,7657,7660,7665,7736,7738,7739,7747,7751,7752,7756,7759,7761,7764,7778,7780,7781,7802,7810,7814,7817,7827,7831,7832,7837,7849,7850,7856,7869,7878,7886,7889,7914,7917,7920,7923,7924,7925,7926,7938,7955,7962,7973,7984,7986,7990,8013,8031,8038,8043,8056,8099,8103,8122,8151,8156,8163,8183,8202,8209,8219,8234,8240,8284,8304,8308,8319,8329,8330,8335,8339,8349,8356,8373,8375,8403,8408,8429,8437,8459,8466,8470,8478,8481,8490,8494,8496,8509,8513,8517,8518,8533,8537,8543,8620,8658,8702,8706,8759,8777,8779,8785,8787,8790,8792,8796,8798,8820,8825,8842,8844,8879,8884,8902,8996,9024,9031,9049,9139,9152,9166,9175,9222,9223,9229,9366,9368,9382,9391,9397,9407,9415,9430,9466,9488,9514,9528,9553,9555,9557,9589,9630,9642,9646,9664,9683,9690,9728,9745,9754,9772,9776,9781,9790,9812,9865,9875,9878,10028,10050,10053,10055,10060,10064,10069,10079,10099,10110,10158,10209,10248,10399,10425,10429,10448,10508,10539,10648,10663,10692,10738,10739,10741,10759,10760,10763,10764,10769,10776,10789,10793,10804,10854,10865,10890,10900,10912,10940,10942,10947,10958,10964,10968,10973,10978,10982,11020,11082,11083,11087,11147,11148,11149,11152,11153,11163,11165,11175,11178,11197,11198,11203,11204,11216,11219,11220,11264,11279,11281,11282,11312,11318,11327,11331,11333,11357,11360,11396,11410,11418,11428,11431,11435,11436,11450,11464,11465,11481,11486,11488,11489,11496,11497,11499,11505,11519,11549,11575,11582,11583,11596,11599,11602,11608,11613,11614,11630,11645,11647,11648,11655,11662,11664,11702,11711,11712,11724,11740,11742,11747,11750,11753,11755,11775,11777,11783,11802,11815,11816,11825,11827,11832,11836,11853,11864,11872,11882,11890,11900,11904,11954,11981,11989,12100,12108,12110,12112,12173,12243,12247,12252,12253,12256,12258,12265,12363,12364,12411,12422,12498,12503,12504,12510,12519,12521,12542,12544,12653,12667,12668,12677,12684,12710,12713,12715,12722,12731,12734,12736,12749,12751,12753,12764,12814,12818,12825,12834,12836,12838,12874,12904,12988,13024,13029,13169,13172,13234,13318,13326,13616,13644,13663,13682,13702,13929,13962,13964,13973,13975,13983,13987,13993,14031,14055,14067,14085,14093,14109,14135,14215,14239,14256,14257,14262,14266,14267,14270,14271,14272,14274,14297,14320,14335,14340,14348,14352,14397,14463,14474,14487,14524,14546,14559,14560,14566,14571,14592,14608,14634,14663,14674,14680,14719,14724,14731,14735,14741,14747,14750,14756,14757,14764,14769,14797,14799,14806,14807,14809,14832,14839,14897,14936,14951,14952,14979,14987,14991,15000,15068,15193,15241,15279,15285,15286,15287,15288,15291,15388,15420,15478,15491,15499,15508,15531,15534,15644,15652,15700,15855,15870,15890,15898,15920,15933,15937,15940,15941,15943,15948,15964,15975,15976,15989,15991,15992,15996,15997,16000,16009,16016,16029,16051,16053,16066,16070,16071,16074,16101,16147,16165,16172,16178,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,16215,16216,16217,16218,16219,16220,16221,16222,16233,16236,16281,16282,16292,16293,16295,16301,16303,16305,16352,16376,16384,16503,16513,16608,16852,16866,16935,16944,17009,17024,17049,17053,17057,17166,17170,17305,17343,17345,17350,17371,17376,17378,17381,17399,17401,17405,17415,17432,17438,17439,17442,17447,17461,17465,17474,17479,17480,17482,17484,17485,17497,17513,17514,17515,17519,17521,17523,17536,17539,17559,17568,17646,17656,17674,17688,17707,17716,17717,17718,17738,17774,17804,17817,17846,17863,17893,17902,17905,17906,17912,17959,17965,17966,17969,17973,17978,18024,18052,18065,18077,18078,18081,18091,18095,18098,18113,18119,18126,18134,18139,18142,18149,18162,18179,18183,18186,18204,18209,18233,18235,18269,18284,18309,18319,18326,18341,18344,18346,18351,18355,18360,18371,18391,18407,18422,18425,18461,18506,18510,18550,18551,18554,18555,18556,18583,18595,18600,18604,18622,18625,18646,18649,18675,18677,18679,18697,18704,18705,18708,18711,18719,18724,18727,18737,18745,18747,18754,18760,18773,18781,18800,18812,18814,18822,18831,18841,18853,18858,18892,18902,18905,18915,18917,18919,18920,18930,18946,18952,18953,18954,18958,18965,18990,18992,18993,19002,19014,19016,19023,19024,19027,19033,19035,19040,19047,19058,19062,19063,19068,19090,19093,19100,19101,19114,19115,19135,19148,19153,19163,19167,19177,19178,19179,19182,19199,19201,19203,19204,19206,19208,19215,19217,19226,19240,19246,19249,19261,19281,19284,19297,19300,19310,19313,19315,19329,19331,19332,19335,19341,19361,19371,19402,19404,19406,19433,19434,19435,19442,19464,19474,19484,19494,19496,19499,19520,19531,19563,19565,19568,19570,19572,19583,19587,19588,19610,19612,19622,19642,19674,19677,19681,19688,19700,19707,19709,19711,19713,19725,19738,19739,19761,19775,19786,19801,19806,19808,19829,19849,19883,19889,19899,19900,19904,19922,19957,19965,19975,19977,19985,19986,20004,20024,20043,20045,20055,20057,20059,20064,20066,20067,20072,20073,20077,20081,20085,20098,20100,20106,20107,20114,20118,20124,20126,20130,20135,20146,20150,20157,20180,20181,20186,20191,20193,20195,20197,20204,20210,20214,20218,20221,20223,20224,20229,20231,20241,20260,20263,20268,20315,20319,20320,20321,20328,20330,20332,20345,20438,20484,20485,20497,20499,20509,20528,20529,20552,20589,20590,20591,20600,20616,20621,20631,20650,20682,20686,20705,20776,20911,20956,20976,21015,21041,21105,21114,21167,21213,21237,21244,21311,21367,21453,21458,21481,21533,21557,21565,21566,21644,21680,21684,21716,21978,21980,21987,22002,22006,22007,22011,22026,22027,22029,22034,22040,22061,22063,22072,22073,22090,22096,22098,22100,22103,22105,22107,22109,22110,22112,22134,22145,22147,22153,22155,22156,22159,22168,22176,22179,22191,22209,22212,22223,22230,22249,22279,22282,22283,22286,22291,22296,22301,22304,22306,22308,22310,22311,22312,22322,22324,22332,22333,22334,22343,22351,22355,22356,22357,22415,22428,22436,22440,22460,22462,22466,22469,22477,22528,22533,22542,22543,22544,22545,22570,22571,22586,22588,22592,22595,22598,22605,22615,22622,22624,22629,22630,22632,22633,22637,22650,22665,22698,22699,22701,22731,22735,22736,22794,22798,22805,22812,22816,22819,22828,22831,22833,22840,22859,22878,22905,22907,22909,22912,22920,22939,22999,23004,23007,23015,23019,23022,23024,23030,23031,23062,23064,23073,23100,23103,23110,23114,23122,23132,23141]]],["forasmuch",[2,2,[[4,1,1,0,1,[[164,1,1,0,1]]],[23,1,1,1,2,[[754,1,1,1,2]]]],[5252,19208]]],["how",[12,11,[[4,1,1,0,1,[[183,1,1,0,1]]],[5,3,2,1,3,[[196,2,1,1,2],[200,1,1,2,3]]],[8,1,1,3,4,[[249,1,1,3,4]]],[10,2,2,4,6,[[310,1,1,4,5],[311,1,1,5,6]]],[11,2,2,6,8,[[317,1,1,6,7],[318,1,1,7,8]]],[12,1,1,8,9,[[355,1,1,8,9]]],[17,1,1,9,10,[[457,1,1,9,10]]],[18,1,1,10,11,[[596,1,1,10,11]]]],[5755,6065,6199,7537,9415,9480,9654,9706,10899,13401,16057]]],["howbeit",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9130]]],["if",[108,98,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,10,9,1,10,[[70,8,7,1,8],[71,2,2,8,10]]],[2,32,31,10,41,[[91,1,1,10,11],[94,3,3,11,14],[100,3,3,14,17],[102,5,5,17,22],[104,5,4,22,26],[108,2,2,26,28],[110,1,1,28,29],[111,4,4,29,33],[113,1,1,33,34],[114,7,7,34,41]]],[3,8,7,41,48,[[121,2,1,41,42],[122,1,1,42,43],[125,1,1,43,44],[126,2,2,44,46],[131,2,2,46,48]]],[4,18,17,48,65,[[156,1,1,48,49],[158,1,1,49,50],[166,2,1,50,51],[167,3,3,51,54],[170,2,2,54,56],[171,1,1,56,57],[173,1,1,57,58],[174,1,1,58,59],[175,1,1,59,60],[176,1,1,60,61],[180,3,3,61,64],[182,1,1,64,65]]],[5,2,2,65,67,[[203,1,1,65,66],[206,1,1,66,67]]],[8,3,3,67,70,[[255,1,1,67,68],[258,1,1,68,69],[259,1,1,69,70]]],[9,1,1,70,71,[[285,1,1,70,71]]],[10,5,3,71,74,[[292,1,1,71,72],[298,3,1,72,73],[309,1,1,73,74]]],[11,3,2,74,76,[[316,2,1,74,75],[330,1,1,75,76]]],[13,3,1,76,77,[[372,3,1,76,77]]],[17,3,3,77,80,[[456,1,1,77,78],[459,1,1,78,79],[473,1,1,79,80]]],[18,1,1,80,81,[[539,1,1,80,81]]],[19,3,3,81,84,[[633,1,1,81,82],[649,1,1,82,83],[657,1,1,83,84]]],[23,5,5,84,89,[[757,1,1,84,85],[759,1,1,85,86],[769,1,1,86,87],[782,2,2,87,89]]],[25,8,8,89,97,[[804,2,2,89,91],[815,1,1,91,92],[819,2,2,92,94],[834,2,2,94,96],[847,1,1,96,97]]],[38,2,1,97,98,[[925,2,1,97,98]]]],[1109,2084,2091,2095,2097,2103,2110,2112,2127,2129,2766,2831,2833,2834,3034,3035,3036,3068,3076,3083,3094,3103,3176,3184,3187,3193,3286,3314,3354,3378,3380,3382,3383,3465,3483,3489,3495,3498,3504,3508,3516,3812,3832,3979,3997,4020,4167,4175,5033,5111,5314,5331,5335,5340,5390,5405,5417,5469,5478,5522,5528,5613,5620,5624,5718,6290,6377,7743,7813,7858,8518,8793,9022,9389,9632,10046,11310,13370,13453,13798,14837,16570,17033,17255,19288,19317,19562,19910,19920,20521,20523,20740,20854,20870,21286,21289,21672,23097]]],["meet",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13714]]],["nevertheless",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7595]]],["not",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8672]]],["of",[1,1,[[13,1,1,0,1,[[388,1,1,0,1]]]],[11650]]],["or",[2,1,[[10,2,1,0,1,[[308,2,1,0,1]]]],[9368]]],["rightly",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[763]]],["seeing",[12,12,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,1,1,1,2,[[99,1,1,1,2]]],[3,2,2,2,4,[[131,1,1,2,3],[132,1,1,3,4]]],[6,2,2,4,6,[[227,1,1,4,5],[231,1,1,5,6]]],[8,2,2,6,8,[[252,1,1,6,7],[259,1,1,7,8]]],[9,1,1,8,9,[[279,1,1,8,9]]],[13,1,1,9,10,[[368,1,1,9,10]]],[14,1,1,10,11,[[411,1,1,10,11]]],[18,1,1,11,12,[[499,1,1,11,12]]]],[2153,2994,4179,4197,6993,7118,7654,7845,8356,11217,12250,14212]]],["since",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5881]]],["so",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15525]]],["surely",[19,19,[[0,3,3,0,3,[[30,1,1,0,1],[41,1,1,1,2],[42,1,1,2,3]]],[1,1,1,3,4,[[72,1,1,3,4]]],[3,1,1,4,5,[[138,1,1,4,5]]],[8,3,3,5,8,[[252,1,1,5,6],[255,1,1,6,7],[260,1,1,7,8]]],[9,1,1,8,9,[[268,1,1,8,9]]],[10,1,1,9,10,[[308,1,1,9,10]]],[11,1,1,10,11,[[315,1,1,10,11]]],[17,2,2,11,13,[[443,1,1,11,12],[472,1,1,12,13]]],[18,1,1,13,14,[[554,1,1,13,14]]],[22,2,2,14,16,[[685,1,1,14,15],[727,1,1,15,16]]],[23,3,3,16,19,[[766,1,1,16,17],[768,1,1,17,18],[770,1,1,18,19]]]],[915,1268,1300,2177,4408,7643,7756,7895,8076,9356,9590,13035,13789,15104,17791,18654,19476,19532,19587]]],["than",[1,1,[[8,1,1,0,1,[[262,1,1,0,1]]]],[7931]]],["that",[692,658,[[0,79,75,0,75,[[0,6,6,0,6],[2,5,4,6,10],[5,4,4,10,14],[7,1,1,14,15],[11,3,3,15,18],[12,1,1,18,19],[13,1,1,19,20],[14,2,2,20,22],[15,2,2,22,24],[19,4,4,24,28],[20,1,1,28,29],[21,1,1,29,30],[23,1,1,30,31],[25,1,1,31,32],[26,1,1,32,33],[27,2,2,33,35],[28,4,3,35,38],[29,2,2,38,40],[30,7,7,40,47],[31,1,1,47,48],[32,1,1,48,49],[33,1,1,49,50],[36,1,1,50,51],[37,4,3,51,54],[38,3,3,54,57],[39,2,2,57,59],[40,1,1,59,60],[41,5,5,60,65],[42,2,2,65,67],[43,3,3,67,70],[44,2,2,70,72],[47,1,1,72,73],[48,2,1,73,74],[49,1,1,74,75]]],[1,43,40,75,115,[[51,2,2,75,77],[52,5,4,77,81],[53,4,3,81,84],[55,1,1,84,85],[56,2,2,85,87],[57,3,3,87,90],[58,4,4,90,94],[59,2,2,94,96],[63,4,3,96,99],[65,3,3,99,102],[67,2,2,102,104],[69,1,1,104,105],[70,1,1,105,106],[78,1,1,106,107],[80,1,1,107,108],[81,3,3,108,111],[82,2,2,111,113],[83,2,2,113,115]]],[2,5,5,115,120,[[96,1,1,115,116],[102,1,1,116,117],[109,1,1,117,118],[112,1,1,118,119],[113,1,1,119,120]]],[3,15,15,120,135,[[127,3,3,120,123],[130,1,1,123,124],[132,5,5,124,129],[136,1,1,129,130],[137,1,1,130,131],[138,3,3,131,134],[140,1,1,134,135]]],[4,26,26,135,161,[[155,1,1,135,136],[156,3,3,136,139],[157,2,2,139,141],[159,1,1,141,142],[160,3,3,142,145],[161,2,2,145,147],[166,1,1,147,148],[167,2,2,148,150],[168,1,1,150,151],[172,1,1,151,152],[176,2,2,152,154],[178,1,1,154,155],[180,1,1,155,156],[181,1,1,156,157],[182,1,1,157,158],[183,1,1,158,159],[184,2,2,159,161]]],[5,15,12,161,173,[[188,3,1,161,162],[189,2,2,162,164],[190,1,1,164,165],[194,3,2,165,167],[195,1,1,167,168],[208,2,2,168,170],[209,2,2,170,172],[210,1,1,172,173]]],[6,31,30,173,203,[[213,1,1,173,174],[214,1,1,174,175],[216,2,2,175,177],[218,2,2,177,179],[219,5,5,179,184],[221,1,1,184,185],[222,1,1,185,186],[223,2,2,186,188],[224,4,3,188,191],[225,2,2,191,193],[226,2,2,193,195],[227,1,1,195,196],[228,3,3,196,199],[230,4,4,199,203]]],[7,8,8,203,211,[[232,3,3,203,206],[233,2,2,206,208],[234,2,2,208,210],[235,1,1,210,211]]],[8,58,57,211,268,[[238,3,3,211,214],[239,1,1,214,215],[240,1,1,215,216],[241,1,1,216,217],[242,1,1,217,218],[245,3,3,218,221],[246,1,1,221,222],[247,3,3,222,225],[248,2,2,225,227],[249,2,2,227,229],[250,2,2,229,231],[252,4,4,231,235],[253,2,2,235,237],[255,6,6,237,243],[256,1,1,243,244],[257,4,4,244,248],[258,5,5,248,253],[259,2,2,253,255],[260,3,3,255,258],[261,2,2,258,260],[262,1,1,260,261],[263,3,3,261,264],[264,2,2,264,266],[266,3,2,266,268]]],[9,41,37,268,305,[[267,2,2,268,270],[268,1,1,270,271],[269,3,3,271,274],[270,1,1,274,275],[271,3,2,275,277],[273,2,2,277,279],[274,1,1,279,280],[275,1,1,280,281],[276,6,6,281,287],[277,2,2,287,289],[278,3,2,289,291],[279,1,1,291,292],[280,2,2,292,294],[282,1,1,294,295],[283,3,3,295,298],[284,2,2,298,300],[285,6,4,300,304],[286,1,1,304,305]]],[10,34,33,305,338,[[291,1,1,305,306],[292,5,5,306,311],[293,2,2,311,313],[295,2,2,313,315],[298,4,4,315,319],[301,3,2,319,321],[302,2,2,321,323],[304,1,1,323,324],[306,1,1,324,325],[307,1,1,325,326],[308,4,4,326,330],[310,4,4,330,334],[311,2,2,334,336],[312,2,2,336,338]]],[11,26,25,338,363,[[314,2,2,338,340],[315,3,3,340,343],[316,2,2,343,345],[317,4,3,345,348],[319,1,1,348,349],[320,2,2,349,351],[322,1,1,351,352],[323,1,1,352,353],[324,1,1,353,354],[329,1,1,354,355],[330,2,2,355,357],[331,2,2,357,359],[332,3,3,359,362],[337,1,1,362,363]]],[12,17,16,363,379,[[346,1,1,363,364],[347,3,2,364,366],[351,2,2,366,368],[354,1,1,368,369],[356,6,6,369,375],[358,2,2,375,377],[366,2,2,377,379]]],[13,15,15,379,394,[[372,2,2,379,381],[376,1,1,381,382],[378,1,1,382,383],[379,1,1,383,384],[381,1,1,384,385],[384,1,1,385,386],[385,1,1,386,387],[386,1,1,387,388],[388,1,1,388,389],[390,1,1,389,390],[391,1,1,390,391],[398,2,2,391,393],[399,1,1,393,394]]],[14,1,1,394,395,[[406,1,1,394,395]]],[15,8,7,395,402,[[416,4,3,395,398],[418,2,2,398,400],[421,1,1,400,401],[425,1,1,401,402]]],[16,2,2,402,404,[[428,1,1,402,403],[432,1,1,403,404]]],[17,48,42,404,446,[[436,1,1,404,405],[437,2,2,405,407],[438,1,1,407,408],[440,1,1,408,409],[441,2,1,409,410],[442,4,3,410,413],[444,2,2,413,415],[445,5,4,415,419],[446,2,1,419,420],[447,1,1,420,421],[448,2,2,421,423],[450,3,2,423,425],[451,1,1,425,426],[454,1,1,426,427],[456,1,1,427,428],[457,3,2,428,430],[467,1,1,430,431],[468,1,1,431,432],[471,4,4,432,436],[472,1,1,436,437],[473,1,1,437,438],[474,3,3,438,441],[475,2,2,441,443],[476,1,1,443,444],[477,2,2,444,446]]],[18,29,28,446,474,[[481,1,1,446,447],[485,2,1,447,448],[497,1,1,448,449],[499,1,1,449,450],[511,1,1,450,451],[514,1,1,451,452],[518,1,1,452,453],[523,1,1,453,454],[536,1,1,454,455],[539,1,1,455,456],[555,2,2,456,458],[560,1,1,458,459],[569,1,1,459,460],[571,1,1,460,461],[577,1,1,461,462],[580,1,1,462,463],[591,1,1,463,464],[595,3,3,464,467],[596,3,3,467,470],[597,1,1,470,471],[605,1,1,471,472],[612,1,1,472,473],[617,1,1,473,474]]],[19,7,7,474,481,[[634,1,1,474,475],[636,1,1,475,476],[647,1,1,476,477],[654,1,1,477,478],[655,1,1,478,479],[657,1,1,479,480],[658,1,1,480,481]]],[20,11,11,481,492,[[660,1,1,481,482],[661,3,3,482,485],[662,1,1,485,486],[663,2,2,486,488],[666,1,1,488,489],[667,2,2,489,491],[669,1,1,491,492]]],[22,33,31,492,523,[[681,1,1,492,493],[690,1,1,493,494],[692,1,1,494,495],[694,1,1,495,496],[700,3,3,496,499],[714,2,2,499,501],[715,2,2,501,503],[716,1,1,503,504],[717,1,1,504,505],[718,2,1,505,506],[719,2,2,506,508],[721,1,1,508,509],[723,2,2,509,511],[726,1,1,511,512],[727,2,2,512,514],[728,1,1,514,515],[730,2,2,515,517],[735,2,2,517,519],[737,3,2,519,521],[738,1,1,521,522],[739,1,1,522,523]]],[23,31,29,523,552,[[746,2,2,523,525],[747,1,1,525,526],[753,1,1,526,527],[754,1,1,527,528],[755,1,1,528,529],[757,1,1,529,530],[759,1,1,530,531],[760,1,1,531,532],[766,2,2,532,534],[768,1,1,534,535],[770,1,1,535,536],[773,1,1,536,537],[776,1,1,537,538],[781,1,1,538,539],[782,2,2,539,541],[784,4,3,541,544],[786,2,2,544,546],[788,3,2,546,548],[792,2,2,548,550],[793,1,1,550,551],[795,1,1,551,552]]],[24,6,5,552,557,[[797,2,1,552,553],[799,2,2,553,555],[800,1,1,555,556],[801,1,1,556,557]]],[25,81,81,557,638,[[803,1,1,557,558],[806,1,1,558,559],[807,4,4,559,563],[808,3,3,563,566],[811,1,1,566,567],[812,2,2,567,569],[813,3,3,569,572],[814,4,4,572,576],[815,2,2,576,578],[816,1,1,578,579],[817,1,1,579,580],[818,2,2,580,582],[820,1,1,582,583],[821,6,6,583,589],[822,1,1,589,590],[823,2,2,590,592],[824,3,3,592,595],[825,3,3,595,598],[826,4,4,598,602],[827,1,1,602,603],[829,4,4,603,607],[830,4,4,607,611],[831,4,4,611,615],[833,1,1,615,616],[834,2,2,616,618],[835,2,2,618,620],[836,4,4,620,624],[837,4,4,624,628],[838,4,4,628,632],[839,1,1,632,633],[840,5,5,633,638]]],[26,1,1,638,639,[[861,1,1,638,639]]],[27,2,2,639,641,[[863,1,1,639,640],[872,1,1,640,641]]],[28,2,2,641,643,[[877,1,1,641,642],[878,1,1,642,643]]],[29,2,2,643,645,[[882,1,1,643,644],[887,1,1,644,645]]],[31,4,4,645,649,[[889,2,2,645,647],[891,1,1,647,648],[892,1,1,648,649]]],[34,3,2,649,651,[[904,2,1,649,650],[905,1,1,650,651]]],[37,5,5,651,656,[[912,2,2,651,653],[914,1,1,653,654],[916,1,1,654,655],[921,1,1,655,656]]],[38,3,2,656,658,[[926,1,1,656,657],[927,2,1,657,658]]]],[3,9,11,17,20,24,60,61,62,66,139,142,143,144,194,309,312,316,328,350,368,373,385,386,501,502,504,505,543,559,605,720,728,779,781,807,826,828,831,839,878,879,893,895,905,908,909,953,973,985,1087,1128,1133,1135,1152,1162,1164,1187,1188,1216,1253,1254,1275,1285,1286,1297,1315,1339,1351,1355,1363,1370,1468,1488,1521,1556,1566,1583,1590,1591,1598,1606,1615,1632,1662,1690,1702,1720,1725,1732,1756,1771,1772,1776,1779,1784,1893,1894,1907,1953,1954,1959,2000,2010,2073,2113,2382,2433,2439,2459,2460,2486,2489,2525,2531,2900,3099,3345,3445,3463,4036,4044,4053,4122,4203,4205,4207,4222,4224,4340,4341,4403,4409,4411,4447,4994,5030,5039,5043,5068,5077,5120,5140,5142,5156,5160,5163,5314,5329,5334,5354,5447,5543,5547,5569,5621,5685,5726,5746,5794,5797,5878,5900,5903,5934,6016,6023,6053,6457,6460,6473,6474,6498,6590,6611,6676,6691,6725,6734,6756,6782,6792,6801,6809,6841,6872,6900,6905,6912,6913,6918,6931,6940,6967,6969,6993,7007,7016,7019,7057,7088,7090,7095,7133,7140,7145,7162,7171,7183,7186,7199,7284,7289,7296,7303,7326,7340,7359,7432,7434,7442,7450,7465,7472,7477,7491,7496,7511,7530,7571,7595,7644,7661,7664,7665,7694,7704,7731,7733,7737,7739,7760,7763,7787,7793,7795,7808,7809,7817,7819,7820,7823,7825,7850,7859,7865,7868,7900,7908,7909,7934,7943,7956,7963,7975,7976,8014,8016,8027,8032,8075,8106,8118,8119,8121,8144,8149,8191,8198,8218,8235,8243,8246,8249,8254,8255,8259,8275,8285,8304,8305,8332,8357,8378,8447,8457,8459,8472,8481,8497,8517,8531,8533,8545,8566,8728,8785,8799,8807,8811,8812,8826,8844,8879,8884,9003,9021,9028,9045,9129,9136,9167,9171,9220,9301,9341,9350,9351,9377,9378,9421,9436,9439,9449,9466,9467,9483,9513,9554,9556,9586,9597,9602,9604,9612,9654,9655,9662,9719,9737,9740,9803,9830,9860,9990,10044,10059,10069,10080,10106,10107,10110,10245,10643,10664,10666,10776,10782,10879,10910,10913,10917,10922,10923,10926,10952,10962,11178,11181,11290,11315,11411,11444,11458,11499,11574,11579,11616,11654,11688,11720,11877,11889,11921,12111,12360,12366,12374,12402,12417,12521,12681,12752,12814,12877,12894,12904,12916,12976,12989,13015,13020,13025,13067,13079,13089,13093,13095,13099,13114,13137,13162,13171,13217,13226,13241,13303,13370,13391,13392,13633,13662,13738,13745,13746,13760,13789,13813,13846,13849,13858,13878,13887,13898,13924,13930,13968,14016,14188,14235,14396,14463,14553,14624,14803,14838,15148,15152,15259,15426,15442,15511,15563,15827,15871,15872,15873,15969,15973,16050,16079,16130,16180,16275,16598,16656,16970,17182,17218,17274,17302,17357,17371,17373,17381,17385,17398,17403,17475,17478,17486,17522,17717,17904,17957,17981,18053,18061,18068,18335,18350,18360,18372,18412,18413,18422,18471,18474,18515,18564,18567,18618,18659,18662,18669,18701,18702,18766,18776,18815,18816,18837,18852,18970,18984,19015,19199,19224,19245,19278,19325,19357,19459,19475,19531,19587,19651,19739,19892,19902,19920,19948,19952,19955,19994,19997,20025,20039,20089,20100,20140,20243,20331,20376,20381,20432,20458,20497,20559,20570,20573,20576,20577,20581,20586,20604,20653,20665,20667,20695,20696,20700,20717,20722,20729,20731,20739,20754,20761,20824,20846,20849,20886,20907,20915,20933,20937,20939,20943,20949,20992,20998,21020,21047,21056,21075,21080,21083,21088,21090,21094,21100,21106,21179,21180,21181,21183,21189,21192,21199,21204,21212,21223,21229,21230,21263,21309,21313,21340,21343,21348,21353,21356,21359,21370,21382,21395,21397,21403,21410,21411,21425,21448,21454,21455,21470,21471,21476,22088,22113,22243,22338,22360,22412,22503,22541,22543,22568,22570,22766,22776,22908,22910,22931,22962,23039,23107,23134]]],["then",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19175]]],["there",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7733]]],["therefore",[4,4,[[0,1,1,0,1,[[28,1,1,0,1]]],[13,1,1,1,2,[[382,1,1,1,2]]],[18,1,1,2,3,[[593,1,1,2,3]]],[20,1,1,3,4,[[666,1,1,3,4]]]],[827,11518,15858,17464]]],["though",[33,30,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[5,2,1,2,3,[[203,2,1,2,3]]],[6,1,1,3,4,[[225,1,1,3,4]]],[8,1,1,4,5,[[256,1,1,4,5]]],[17,1,1,5,6,[[462,1,1,5,6]]],[18,1,1,6,7,[[500,1,1,6,7]]],[19,2,2,7,9,[[633,1,1,7,8],[656,1,1,8,9]]],[22,2,2,9,11,[[690,1,1,9,10],[741,1,1,10,11]]],[23,9,8,11,19,[[748,2,1,11,12],[756,1,1,12,13],[774,1,1,13,14],[776,1,1,14,15],[790,1,1,15,16],[793,1,1,16,17],[795,2,2,17,19]]],[25,7,6,19,25,[[803,2,1,19,20],[804,1,1,20,21],[813,1,1,21,22],[833,3,3,22,25]]],[26,1,1,25,26,[[858,1,1,25,26]]],[27,2,2,26,28,[[869,1,1,26,27],[870,1,1,27,28]]],[34,1,1,28,29,[[903,1,1,28,29]]],[37,1,1,29,30,[[919,1,1,29,30]]]],[3004,5698,6293,6932,7777,13489,14239,16575,17243,17901,18882,19057,19255,19678,19736,20068,20143,20217,20265,20498,20511,20683,21273,21274,21275,21997,22204,22224,22736,23001]]],["when",[172,160,[[0,9,9,0,9,[[5,1,1,0,1],[11,1,1,1,2],[23,1,1,2,3],[25,1,1,3,4],[29,1,1,4,5],[30,1,1,5,6],[42,1,1,6,7],[43,1,1,7,8],[45,1,1,8,9]]],[1,10,10,9,19,[[50,1,1,9,10],[52,1,1,10,11],[61,3,3,11,14],[62,4,4,14,18],[71,1,1,18,19]]],[2,6,6,19,25,[[91,1,1,19,20],[94,1,1,20,21],[104,1,1,21,22],[108,1,1,22,23],[111,1,1,23,24],[116,1,1,24,25]]],[3,2,2,25,27,[[131,1,1,25,26],[135,1,1,26,27]]],[4,13,13,27,40,[[158,2,2,27,29],[163,1,1,29,30],[164,2,2,30,32],[166,1,1,32,33],[167,2,2,33,35],[173,1,1,35,36],[178,1,1,36,37],[182,1,1,37,38],[183,1,1,38,39],[184,1,1,39,40]]],[5,5,5,40,45,[[190,1,1,40,41],[194,1,1,41,42],[203,1,1,42,43],[208,2,2,43,45]]],[6,9,9,45,54,[[211,1,1,45,46],[212,1,1,46,47],[216,1,1,47,48],[218,1,1,48,49],[222,1,1,49,50],[223,1,1,50,51],[226,2,2,51,53],[231,1,1,53,54]]],[8,7,7,54,61,[[245,1,1,54,55],[252,1,1,55,56],[255,1,1,56,57],[257,2,2,57,59],[260,1,1,59,60],[263,1,1,60,61]]],[9,5,5,61,66,[[270,1,1,61,62],[272,1,1,62,63],[273,2,2,63,65],[285,1,1,65,66]]],[10,1,1,66,67,[[298,1,1,66,67]]],[11,2,2,67,69,[[317,1,1,67,68],[330,1,1,68,69]]],[12,1,1,69,70,[[354,1,1,69,70]]],[13,2,2,70,72,[[372,2,2,70,72]]],[15,1,1,72,73,[[421,1,1,72,73]]],[17,13,12,73,85,[[436,1,1,73,74],[438,1,1,74,75],[440,1,1,75,76],[462,2,2,76,78],[466,5,4,78,82],[471,1,1,82,83],[472,1,1,83,84],[473,1,1,84,85]]],[18,14,13,85,98,[[479,1,1,85,86],[490,1,1,86,87],[526,4,3,87,90],[535,1,1,90,91],[542,1,1,91,92],[548,1,1,92,93],[567,1,1,93,94],[596,2,2,94,96],[597,1,1,96,97],[615,1,1,97,98]]],[19,11,9,98,107,[[630,1,1,98,99],[631,1,1,99,100],[633,2,2,100,102],[649,1,1,102,103],[650,3,2,103,105],[657,3,2,105,107]]],[22,16,15,107,122,[[679,1,1,107,108],[686,2,2,108,110],[688,1,1,110,111],[694,1,1,111,112],[702,1,1,112,113],[703,1,1,113,114],[706,2,2,114,116],[707,1,1,116,117],[708,2,1,117,118],[721,1,1,118,119],[732,1,1,119,120],[735,1,1,120,121],[736,1,1,121,122]]],[23,20,20,122,142,[[746,2,2,122,124],[747,2,2,124,126],[749,1,1,126,127],[750,1,1,127,128],[752,1,1,128,129],[755,1,1,129,130],[756,1,1,130,131],[757,1,1,131,132],[758,1,1,132,133],[760,1,1,133,134],[761,2,2,134,136],[762,1,1,136,137],[767,1,1,137,138],[773,1,1,138,139],[786,2,2,139,141],[788,1,1,141,142]]],[24,2,2,142,144,[[799,1,1,142,143],[800,1,1,143,144]]],[25,9,7,144,151,[[815,3,3,144,147],[816,1,1,147,148],[822,1,1,148,149],[826,3,1,149,150],[847,1,1,150,151]]],[27,4,3,151,154,[[865,2,1,151,152],[868,1,1,152,153],[872,1,1,153,154]]],[32,6,3,154,157,[[897,4,2,154,156],[899,2,1,156,157]]],[37,4,3,157,160,[[917,2,1,157,158],[919,1,1,158,159],[923,1,1,159,160]]]],[138,310,632,700,863,922,1311,1348,1419,1542,1600,1841,1842,1864,1872,1878,1881,1882,2140,2763,2835,3181,3304,3398,3584,4161,4303,5096,5106,5237,5265,5268,5314,5323,5332,5456,5567,5709,5749,5794,5916,6007,6288,6433,6454,6537,6563,6661,6720,6874,6901,6965,6974,7124,7425,7666,7742,7804,7809,7891,7964,8131,8170,8181,8192,8536,9020,9660,10056,10874,11308,11309,12529,12874,12926,12972,13489,13490,13602,13609,13614,13617,13749,13773,13834,13957,14078,14664,14665,14666,14789,14869,14999,15382,15930,16069,16081,16235,16480,16498,16543,16570,17021,17066,17075,17273,17274,17669,17826,17828,17862,17981,18118,18122,18179,18182,18216,18238,18507,18729,18785,18793,18985,18991,19010,19018,19077,19104,19165,19241,19250,19287,19305,19346,19363,19365,19406,19517,19648,19981,19995,20029,20362,20435,20744,20752,20754,20759,20951,21086,21667,22147,22192,22250,22638,22639,22672,22968,23000,23062]]],["whereas",[2,2,[[13,1,1,0,1,[[394,1,1,0,1]]],[20,1,1,1,2,[[662,1,1,1,2]]]],[11777,17395]]],["whether",[2,1,[[17,2,1,0,1,[[469,2,1,0,1]]]],[13716]]],["while",[3,3,[[4,1,1,0,1,[[171,1,1,0,1]]],[19,1,1,1,2,[[646,1,1,1,2]]],[24,1,1,2,3,[[797,1,1,2,3]]]],[5412,16943,20329]]],["whose",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3092]]],["yea",[4,4,[[18,1,1,0,1,[[579,1,1,0,1]]],[22,1,1,1,2,[[710,1,1,1,2]]],[23,1,1,2,3,[[758,1,1,2,3]]],[27,1,1,3,4,[[870,1,1,3,4]]]],[15534,18272,19311,22220]]],["yet",[6,6,[[1,1,1,0,1,[[54,1,1,0,1]]],[8,1,1,1,2,[[243,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[13,1,1,3,4,[[396,1,1,3,4]]],[20,1,1,4,5,[[666,1,1,4,5]]],[23,1,1,5,6,[[766,1,1,5,6]]]],[1643,7378,8658,11845,17470,19478]]]]},{"k":"H3589","v":[["destruction",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13375]]]]},{"k":"H3590","v":[["sparks",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13907]]]]},{"k":"H3591","v":[["*",[9,8,[[5,3,2,0,2,[[194,3,2,0,2]]],[8,2,2,2,4,[[252,2,2,2,4]]],[17,2,2,4,6,[[474,1,1,4,5],[476,1,1,5,6]]],[23,2,2,6,8,[[750,1,1,6,7],[794,1,1,7,8]]]],[6020,6028,7624,7663,13857,13917,19112,20208]]],["lance",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20208]]],["shield",[2,2,[[8,1,1,0,1,[[252,1,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]]],[7663,13857]]],["spear",[5,4,[[5,3,2,0,2,[[194,3,2,0,2]]],[17,1,1,2,3,[[476,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]]],[6020,6028,13917,19112]]],["target",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7624]]]]},{"k":"H3592","v":[["Chidon",[1,1,[[12,1,1,0,1,[[350,1,1,0,1]]]],[10769]]]]},{"k":"H3593","v":[["battle",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13227]]]]},{"k":"H3594","v":[["Chiun",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22449]]]]},{"k":"H3595","v":[["*",[23,20,[[1,9,9,0,9,[[79,2,2,0,2],[80,1,1,2,3],[84,1,1,3,4],[87,1,1,4,5],[88,1,1,5,6],[89,3,3,6,9]]],[2,1,1,9,10,[[97,1,1,9,10]]],[8,1,1,10,11,[[237,1,1,10,11]]],[10,7,4,11,15,[[297,7,4,11,15]]],[11,1,1,15,16,[[328,1,1,15,16]]],[13,3,3,16,19,[[370,2,2,16,18],[372,1,1,18,19]]],[37,1,1,19,20,[[922,1,1,19,20]]]],[2400,2410,2429,2547,2641,2703,2714,2718,2737,2928,7254,8964,8972,8974,8977,9980,11252,11260,11295,23051]]],["hearth",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23051]]],["laver",[15,13,[[1,9,9,0,9,[[79,2,2,0,2],[80,1,1,2,3],[84,1,1,3,4],[87,1,1,4,5],[88,1,1,5,6],[89,3,3,6,9]]],[2,1,1,9,10,[[97,1,1,9,10]]],[10,4,2,10,12,[[297,4,2,10,12]]],[11,1,1,12,13,[[328,1,1,12,13]]]],[2400,2410,2429,2547,2641,2703,2714,2718,2737,2928,8964,8972,9980]]],["lavers",[5,5,[[10,3,3,0,3,[[297,3,3,0,3]]],[13,2,2,3,5,[[370,2,2,3,5]]]],[8972,8974,8977,11252,11260]]],["pan",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7254]]],["scaffold",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11295]]]]},{"k":"H3596","v":[["churl",[2,2,[[22,2,2,0,2,[[710,2,2,0,2]]]],[18264,18266]]]]},{"k":"H3597","v":[["hammers",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15054]]]]},{"k":"H3598","v":[["*",[3,3,[[17,2,2,0,2,[[444,1,1,0,1],[473,1,1,1,2]]],[29,1,1,2,3,[[883,1,1,2,3]]]],[13060,13824,22431]]],["Pleiades",[2,2,[[17,2,2,0,2,[[444,1,1,0,1],[473,1,1,1,2]]]],[13060,13824]]],["stars",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22431]]]]},{"k":"H3599","v":[["*",[5,5,[[4,1,1,0,1,[[177,1,1,0,1]]],[19,2,2,1,3,[[628,1,1,1,2],[643,1,1,2,3]]],[22,1,1,3,4,[[724,1,1,3,4]]],[32,1,1,4,5,[[898,1,1,4,5]]]],[5560,16414,16851,18592,22659]]],["+",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18592]]],["bag",[3,3,[[4,1,1,0,1,[[177,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]],[32,1,1,2,3,[[898,1,1,2,3]]]],[5560,16851,22659]]],["purse",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16414]]]]},{"k":"H3600","v":[["pots",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3032]]]]},{"k":"H3601","v":[["spindle",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17303]]]]},{"k":"H3602","v":[["*",[37,35,[[1,2,2,0,2,[[61,1,1,0,1],[78,1,1,1,2]]],[3,5,5,2,7,[[124,1,1,2,3],[127,1,1,3,4],[131,3,3,4,7]]],[4,2,2,7,9,[[177,1,1,7,8],[181,1,1,8,9]]],[5,1,1,9,10,[[196,1,1,9,10]]],[8,2,2,10,12,[[237,1,1,10,11],[254,1,1,11,12]]],[9,2,2,12,14,[[279,1,1,12,13],[283,1,1,13,14]]],[10,3,3,14,17,[[291,2,2,14,16],[299,1,1,16,17]]],[13,3,2,17,19,[[373,1,1,17,18],[384,2,1,18,19]]],[15,2,1,19,20,[[417,2,1,19,20]]],[16,3,3,20,23,[[431,2,2,20,22],[434,1,1,22,23]]],[17,1,1,23,24,[[436,1,1,23,24]]],[18,1,1,24,25,[[621,1,1,24,25]]],[20,1,1,25,26,[[669,1,1,25,26]]],[21,1,1,26,27,[[675,1,1,26,27]]],[23,5,5,27,32,[[757,1,1,27,28],[763,1,1,28,29],[766,1,1,29,30],[772,1,1,30,31],[795,1,1,31,32]]],[25,2,2,32,34,[[805,1,1,32,33],[832,1,1,33,34]]],[27,1,1,34,35,[[871,1,1,34,35]]]],[1827,2371,3965,4039,4164,4165,4166,5556,5703,6089,7254,7723,8321,8470,8723,8765,9059,11345,11561,12395,12802,12804,12860,12874,16320,17518,17607,19275,19418,19462,19629,20276,20542,21248,22240]]],["+",[4,4,[[9,1,1,0,1,[[279,1,1,0,1]]],[18,1,1,1,2,[[621,1,1,1,2]]],[21,1,1,2,3,[[675,1,1,2,3]]],[25,1,1,3,4,[[832,1,1,3,4]]]],[8321,16320,17607,21248]]],["So",[4,4,[[4,1,1,0,1,[[177,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[15,1,1,2,3,[[417,1,1,2,3]]],[27,1,1,3,4,[[871,1,1,3,4]]]],[5556,7254,12395,22240]]],["Thus",[6,6,[[3,2,2,0,2,[[124,1,1,0,1],[131,1,1,1,2]]],[16,2,2,2,4,[[431,2,2,2,4]]],[17,1,1,4,5,[[436,1,1,4,5]]],[23,1,1,5,6,[[795,1,1,5,6]]]],[3965,4164,12802,12804,12874,20276]]],["manner",[4,3,[[3,1,1,0,1,[[131,1,1,0,1]]],[13,2,1,1,2,[[384,2,1,1,2]]],[23,1,1,2,3,[[757,1,1,2,3]]]],[4166,11561,19275]]],["matter",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12860]]],["so",[6,6,[[3,1,1,0,1,[[131,1,1,0,1]]],[8,1,1,1,2,[[254,1,1,1,2]]],[10,1,1,2,3,[[291,1,1,2,3]]],[20,1,1,3,4,[[669,1,1,3,4]]],[23,2,2,4,6,[[763,1,1,4,5],[772,1,1,5,6]]]],[4165,7723,8723,17518,19418,19629]]],["thus",[12,12,[[1,2,2,0,2,[[61,1,1,0,1],[78,1,1,1,2]]],[3,1,1,2,3,[[127,1,1,2,3]]],[4,1,1,3,4,[[181,1,1,3,4]]],[5,1,1,4,5,[[196,1,1,4,5]]],[9,1,1,5,6,[[283,1,1,5,6]]],[10,2,2,6,8,[[291,1,1,6,7],[299,1,1,7,8]]],[13,1,1,8,9,[[373,1,1,8,9]]],[15,1,1,9,10,[[417,1,1,9,10]]],[23,1,1,10,11,[[766,1,1,10,11]]],[25,1,1,11,12,[[805,1,1,11,12]]]],[1827,2371,4039,5703,6089,8470,8765,9059,11345,12395,19462,20542]]]]},{"k":"H3603","v":[["*",[68,55,[[0,7,7,0,7,[[12,3,3,0,3],[18,4,4,3,7]]],[1,9,7,7,14,[[74,1,1,7,8],[78,1,1,8,9],[86,1,1,9,10],[87,6,4,10,14]]],[4,1,1,14,15,[[186,1,1,14,15]]],[6,1,1,15,16,[[218,1,1,15,16]]],[8,2,2,16,18,[[237,1,1,16,17],[245,1,1,17,18]]],[9,2,2,18,20,[[278,1,1,18,19],[284,1,1,19,20]]],[10,7,7,20,27,[[297,1,1,20,21],[299,2,2,21,23],[300,2,2,23,25],[306,1,1,25,26],[310,1,1,26,27]]],[11,9,6,27,33,[[317,4,3,27,30],[327,1,1,30,31],[330,2,1,31,32],[335,2,1,32,33]]],[12,11,6,33,39,[[353,1,1,33,34],[356,1,1,34,35],[357,1,1,35,36],[359,2,1,36,37],[366,6,2,37,39]]],[13,10,9,39,48,[[369,1,1,39,40],[370,1,1,40,41],[374,1,1,41,42],[375,2,2,42,44],[391,2,2,44,46],[393,1,1,46,47],[402,2,1,47,48]]],[14,3,1,48,49,[[410,3,1,48,49]]],[15,2,2,49,51,[[415,1,1,49,50],[424,1,1,50,51]]],[16,1,1,51,52,[[428,1,1,51,52]]],[19,1,1,52,53,[[633,1,1,52,53]]],[23,1,1,53,54,[[781,1,1,53,54]]],[37,1,1,54,55,[[915,1,1,54,55]]]],[328,329,330,474,482,485,486,2234,2359,2628,2657,2658,2660,2662,5842,6724,7276,7421,8316,8501,8980,9065,9079,9089,9093,9307,9447,9652,9669,9670,9944,10038,10198,10823,10913,10928,10978,11168,11171,11237,11263,11364,11373,11377,11710,11713,11760,11996,12227,12349,12652,12756,16566,19895,22943]]],["country",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12652]]],["loaf",[2,2,[[1,1,1,0,1,[[78,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]]],[2359,10823]]],["loaves",[2,2,[[6,1,1,0,1,[[218,1,1,0,1]]],[8,1,1,1,2,[[245,1,1,1,2]]]],[6724,7421]]],["morsel",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7276]]],["piece",[2,2,[[19,1,1,0,1,[[633,1,1,0,1]]],[23,1,1,1,2,[[781,1,1,1,2]]]],[16566,19895]]],["plain",[12,12,[[0,7,7,0,7,[[12,3,3,0,3],[18,4,4,3,7]]],[4,1,1,7,8,[[186,1,1,7,8]]],[9,1,1,8,9,[[284,1,1,8,9]]],[10,1,1,9,10,[[297,1,1,9,10]]],[13,1,1,10,11,[[370,1,1,10,11]]],[15,1,1,11,12,[[415,1,1,11,12]]]],[328,329,330,474,482,485,486,5842,8501,8980,11263,12349]]],["talent",[10,10,[[1,3,3,0,3,[[74,1,1,0,1],[86,1,1,1,2],[87,1,1,2,3]]],[9,1,1,3,4,[[278,1,1,3,4]]],[10,1,1,4,5,[[310,1,1,4,5]]],[11,2,2,5,7,[[317,1,1,5,6],[335,1,1,6,7]]],[12,1,1,7,8,[[357,1,1,7,8]]],[13,1,1,8,9,[[402,1,1,8,9]]],[37,1,1,9,10,[[915,1,1,9,10]]]],[2234,2628,2660,8316,9447,9669,10198,10928,11996,22943]]],["talents",[38,28,[[1,5,4,0,4,[[87,5,4,0,4]]],[10,5,5,4,9,[[299,2,2,4,6],[300,2,2,6,8],[306,1,1,8,9]]],[11,7,5,9,14,[[317,3,2,9,11],[327,1,1,11,12],[330,2,1,12,13],[335,1,1,13,14]]],[12,9,4,14,18,[[356,1,1,14,15],[359,2,1,15,16],[366,6,2,16,18]]],[13,8,8,18,26,[[369,1,1,18,19],[374,1,1,19,20],[375,2,2,20,22],[391,2,2,22,24],[393,1,1,24,25],[402,1,1,25,26]]],[14,3,1,26,27,[[410,3,1,26,27]]],[16,1,1,27,28,[[428,1,1,27,28]]]],[2657,2658,2660,2662,9065,9079,9089,9093,9307,9652,9670,9944,10038,10198,10913,10978,11168,11171,11237,11364,11373,11377,11710,11713,11760,11996,12227,12756]]]]},{"k":"H3604","v":[["talents",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12195]]]]},{"k":"H3605","v":[["*",[5405,4235,[[0,342,251,0,251,[[0,14,7,0,7],[1,15,11,7,18],[2,7,4,18,22],[3,5,4,22,26],[4,9,9,26,35],[5,14,9,35,44],[6,23,14,44,58],[7,14,7,58,65],[8,21,11,65,76],[9,2,2,76,78],[10,7,5,78,83],[11,3,3,83,86],[12,6,5,86,91],[13,7,6,91,97],[14,1,1,97,98],[15,3,1,98,99],[16,8,5,99,104],[17,4,4,104,108],[18,7,6,108,114],[19,7,5,114,119],[20,3,3,119,122],[21,1,1,122,123],[22,4,3,123,126],[23,6,6,126,132],[24,4,4,132,136],[25,5,4,136,140],[26,2,2,140,142],[27,3,3,142,145],[28,4,4,145,149],[29,9,5,149,154],[30,16,10,154,164],[31,3,2,164,166],[32,3,3,166,169],[33,11,7,169,176],[34,3,3,176,179],[35,3,1,179,180],[36,4,3,180,183],[38,9,7,183,190],[39,2,2,190,192],[40,24,18,192,210],[41,4,4,210,214],[42,2,2,214,216],[43,1,1,216,217],[44,14,11,217,228],[45,11,10,228,238],[46,7,7,238,245],[47,1,1,245,246],[48,1,1,246,247],[49,5,4,247,251]]],[1,309,228,251,479,[[50,8,4,251,255],[52,1,1,255,256],[53,6,5,256,261],[54,1,1,261,262],[55,1,1,262,263],[56,6,5,263,268],[57,6,5,268,273],[58,17,10,273,283],[59,17,9,283,292],[60,7,5,292,297],[61,24,18,297,315],[62,10,5,315,320],[63,9,8,320,328],[64,4,3,328,331],[65,8,8,331,339],[66,1,1,339,340],[67,17,12,340,352],[68,10,7,352,359],[69,8,8,359,367],[70,1,1,367,368],[71,5,4,368,372],[72,5,4,372,376],[73,7,4,376,380],[74,6,5,380,385],[75,2,2,385,387],[76,6,3,387,390],[77,2,2,390,392],[78,6,6,392,398],[79,5,5,398,403],[80,10,9,403,412],[81,3,3,412,415],[82,6,5,415,420],[83,13,8,420,428],[84,28,19,428,447],[85,12,8,447,455],[86,2,2,455,457],[87,12,9,457,466],[88,10,8,466,474],[89,7,5,474,479]]],[2,259,196,479,675,[[90,2,2,479,481],[91,7,4,481,485],[92,6,5,485,490],[93,16,14,490,504],[94,4,4,504,508],[95,11,10,508,518],[96,18,12,518,530],[97,8,8,530,538],[98,3,3,538,541],[99,4,3,541,544],[100,40,24,544,568],[101,1,1,568,569],[102,13,11,569,580],[103,7,6,580,586],[104,22,15,586,601],[105,12,9,601,610],[106,8,5,610,615],[107,8,6,615,621],[108,5,4,621,625],[109,6,5,625,630],[110,4,4,630,634],[111,13,9,634,643],[112,19,14,643,657],[113,4,3,657,660],[114,4,4,660,664],[115,4,4,664,668],[116,10,7,668,675]]],[3,325,252,675,927,[[117,25,19,675,694],[118,6,6,694,700],[119,22,17,700,717],[120,28,21,717,738],[121,7,4,738,742],[122,6,5,742,747],[123,6,5,747,752],[124,9,6,752,758],[125,5,4,758,762],[126,2,2,762,764],[127,10,8,764,772],[128,2,2,772,774],[129,5,4,774,778],[130,16,13,778,791],[131,12,11,791,802],[132,23,17,802,819],[133,6,5,819,824],[134,25,16,824,840],[135,8,7,840,847],[136,6,5,847,852],[137,9,7,852,859],[138,3,3,859,862],[139,3,3,862,865],[140,1,1,865,866],[141,2,2,866,868],[142,4,3,868,871],[143,7,6,871,877],[144,3,3,877,880],[145,5,5,880,885],[146,12,8,885,893],[147,27,17,893,910],[148,6,6,910,916],[149,6,3,916,919],[151,7,7,919,926],[152,1,1,926,927]]],[4,359,282,927,1209,[[153,9,9,927,936],[154,11,9,936,945],[155,18,12,945,957],[156,24,19,957,976],[157,17,14,976,990],[158,11,7,990,997],[159,10,7,997,1004],[160,5,5,1004,1009],[161,2,2,1009,1011],[162,5,3,1011,1014],[163,14,11,1014,1025],[164,22,18,1025,1043],[165,8,6,1043,1049],[166,17,15,1049,1064],[167,7,6,1064,1070],[168,7,6,1070,1076],[169,8,7,1076,1083],[170,9,7,1083,1090],[171,7,4,1090,1094],[172,7,6,1094,1100],[173,6,4,1100,1104],[174,5,5,1104,1109],[175,5,5,1109,1114],[176,3,3,1114,1117],[177,4,3,1117,1120],[178,9,8,1120,1128],[179,18,17,1128,1145],[180,34,26,1145,1171],[181,15,9,1171,1180],[182,13,8,1180,1188],[183,11,10,1188,1198],[184,7,5,1198,1203],[185,2,2,1203,1205],[186,9,4,1205,1209]]],[5,235,170,1209,1379,[[187,14,11,1209,1220],[188,10,8,1220,1228],[189,8,6,1228,1234],[190,9,6,1234,1240],[191,8,5,1240,1245],[192,12,10,1245,1255],[193,8,6,1255,1261],[194,21,16,1261,1277],[195,12,9,1277,1286],[196,33,24,1286,1310],[197,23,15,1310,1325],[198,3,3,1325,1328],[199,19,13,1328,1341],[201,2,2,1341,1343],[202,1,1,1343,1344],[203,1,1,1344,1345],[204,1,1,1345,1346],[205,1,1,1346,1347],[206,2,1,1347,1348],[207,13,10,1348,1358],[208,10,7,1358,1365],[209,13,7,1365,1372],[210,11,7,1372,1379]]],[6,138,109,1379,1488,[[211,1,1,1379,1380],[212,7,5,1380,1385],[213,6,4,1385,1389],[214,5,3,1389,1392],[215,1,1,1392,1393],[216,9,8,1393,1401],[217,17,14,1401,1415],[218,6,5,1415,1420],[219,20,15,1420,1435],[220,3,3,1435,1438],[221,8,7,1438,1445],[222,1,1,1445,1446],[223,7,5,1446,1451],[224,1,1,1451,1452],[226,10,7,1452,1459],[228,2,2,1459,1461],[229,5,5,1461,1466],[230,25,19,1466,1485],[231,4,3,1485,1488]]],[7,13,10,1488,1498,[[232,1,1,1488,1489],[233,2,2,1489,1491],[234,5,4,1491,1495],[235,5,3,1495,1498]]],[8,187,156,1498,1654,[[236,4,4,1498,1502],[237,14,10,1502,1512],[238,6,6,1512,1518],[239,4,4,1518,1522],[240,4,3,1522,1525],[241,2,2,1525,1527],[242,7,6,1527,1533],[243,7,7,1533,1540],[244,6,5,1540,1545],[245,10,8,1545,1553],[246,9,7,1553,1560],[247,9,6,1560,1566],[248,6,6,1566,1572],[249,16,13,1572,1585],[250,6,5,1585,1590],[252,5,5,1590,1595],[253,8,7,1595,1602],[254,6,5,1602,1607],[255,2,2,1607,1609],[257,16,11,1609,1620],[258,5,4,1620,1624],[259,1,1,1624,1625],[260,12,11,1625,1636],[261,2,2,1636,1638],[262,2,2,1638,1640],[263,5,4,1640,1644],[264,1,1,1644,1645],[265,9,7,1645,1652],[266,3,2,1652,1654]]],[9,208,166,1654,1820,[[267,2,2,1654,1656],[268,7,6,1656,1662],[269,19,13,1662,1675],[270,3,3,1675,1678],[271,5,5,1678,1683],[272,12,9,1683,1692],[273,11,8,1692,1700],[274,9,6,1700,1706],[275,5,4,1706,1710],[276,4,4,1710,1714],[277,4,4,1714,1718],[278,6,5,1718,1723],[279,13,12,1723,1735],[280,6,4,1735,1739],[281,23,16,1739,1755],[282,13,10,1755,1765],[283,13,11,1765,1776],[284,8,7,1776,1783],[285,21,17,1783,1800],[286,10,8,1800,1808],[287,2,2,1808,1810],[288,3,3,1810,1813],[289,5,3,1813,1816],[290,4,4,1816,1820]]],[10,237,195,1820,2015,[[291,11,10,1820,1830],[292,8,6,1830,1836],[293,3,3,1836,1839],[294,18,12,1839,1851],[295,5,5,1851,1856],[296,10,7,1856,1863],[297,13,12,1863,1875],[298,36,27,1875,1902],[299,10,9,1902,1911],[300,11,10,1911,1921],[301,16,14,1921,1935],[302,10,9,1935,1944],[303,2,2,1944,1946],[304,13,11,1946,1957],[305,21,16,1957,1973],[306,11,11,1973,1984],[308,10,8,1984,1992],[309,5,2,1992,1994],[310,12,10,1994,2004],[311,1,1,2004,2005],[312,11,10,2005,2015]]],[11,203,156,2015,2171,[[315,11,4,2015,2019],[316,4,4,2019,2023],[317,3,2,2023,2025],[318,1,1,2025,2026],[319,3,2,2026,2028],[320,7,6,2028,2034],[321,4,4,2034,2038],[322,20,13,2038,2051],[323,7,7,2051,2058],[324,10,8,2058,2066],[325,5,5,2066,2071],[326,6,5,2071,2076],[327,11,10,2076,2086],[328,7,5,2086,2091],[329,15,11,2091,2102],[330,8,8,2102,2110],[331,6,6,2110,2116],[332,6,4,2116,2120],[333,11,10,2120,2130],[334,6,5,2130,2135],[335,26,16,2135,2151],[336,13,8,2151,2159],[337,13,12,2159,2171]]],[12,183,139,2171,2310,[[338,2,2,2171,2173],[339,3,3,2173,2176],[340,1,1,2176,2177],[341,2,2,2177,2179],[342,4,4,2179,2183],[343,4,3,2183,2186],[344,6,5,2186,2191],[345,2,2,2191,2193],[346,4,4,2193,2197],[347,5,4,2197,2201],[348,5,5,2201,2206],[349,9,6,2206,2212],[350,10,7,2212,2219],[351,4,2,2219,2221],[352,3,3,2221,2224],[353,12,12,2224,2236],[354,11,7,2236,2243],[355,9,7,2243,2250],[356,3,3,2250,2253],[357,2,1,2253,2254],[358,5,5,2254,2259],[359,5,4,2259,2263],[360,5,5,2263,2268],[362,3,3,2268,2271],[363,7,6,2271,2277],[364,4,3,2277,2280],[365,26,11,2280,2291],[366,27,19,2291,2310]]],[13,300,241,2310,2551,[[367,5,3,2310,2313],[368,5,4,2313,2317],[370,4,4,2317,2321],[371,9,8,2321,2329],[372,18,11,2329,2340],[373,11,11,2340,2351],[374,8,5,2351,2356],[375,12,11,2356,2367],[376,6,5,2367,2372],[377,9,6,2372,2378],[378,4,4,2378,2382],[379,3,3,2382,2385],[380,4,3,2385,2388],[381,12,9,2388,2397],[382,3,3,2397,2400],[383,5,5,2400,2405],[384,7,7,2405,2412],[385,4,3,2412,2415],[386,8,8,2415,2423],[387,7,7,2423,2430],[388,3,3,2430,2433],[389,13,12,2433,2445],[390,8,6,2445,2451],[391,5,4,2451,2455],[392,5,5,2455,2460],[393,2,2,2460,2462],[394,9,8,2462,2470],[395,15,11,2470,2481],[396,11,10,2481,2491],[397,15,7,2491,2498],[398,17,15,2498,2513],[399,10,9,2513,2522],[400,22,14,2522,2536],[401,10,8,2536,2544],[402,11,7,2544,2551]]],[14,48,37,2551,2588,[[403,10,7,2551,2558],[404,4,4,2558,2562],[405,4,3,2562,2565],[406,1,1,2565,2566],[408,3,2,2566,2568],[409,2,2,2568,2570],[410,9,6,2570,2576],[411,2,2,2576,2578],[412,13,10,2578,2588]]],[15,71,57,2588,2645,[[416,5,5,2588,2593],[417,5,4,2593,2597],[418,3,2,2597,2599],[419,3,3,2599,2602],[420,14,11,2602,2613],[421,13,8,2613,2621],[422,10,6,2621,2627],[423,5,5,2627,2632],[424,2,2,2632,2634],[425,11,11,2634,2645]]],[16,73,54,2645,2699,[[426,13,9,2645,2654],[427,8,6,2654,2660],[428,11,7,2660,2667],[429,8,7,2667,2674],[430,4,3,2674,2677],[431,3,2,2677,2679],[433,9,6,2679,2685],[434,15,12,2685,2697],[435,2,2,2697,2699]]],[17,73,66,2699,2765,[[436,7,6,2699,2705],[437,3,3,2705,2708],[443,2,2,2708,2710],[444,1,1,2710,2711],[447,3,2,2711,2713],[448,3,3,2713,2716],[449,1,1,2716,2717],[450,1,1,2717,2718],[451,2,2,2718,2720],[452,2,2,2720,2722],[454,1,1,2722,2723],[455,2,2,2723,2725],[456,2,2,2725,2727],[459,1,1,2727,2728],[462,3,3,2728,2731],[463,4,4,2731,2735],[465,1,1,2735,2736],[466,2,2,2736,2738],[468,4,4,2738,2742],[469,5,5,2742,2747],[471,2,2,2747,2749],[472,5,4,2749,2753],[473,2,2,2753,2755],[474,1,1,2755,2756],[475,3,3,2756,2759],[476,3,2,2759,2761],[477,7,4,2761,2765]]],[18,348,317,2765,3082,[[478,1,1,2765,2766],[479,1,1,2766,2767],[480,1,1,2767,2768],[482,2,2,2768,2770],[483,4,4,2770,2774],[484,2,2,2774,2776],[485,4,4,2776,2780],[486,4,3,2780,2783],[487,3,2,2783,2785],[489,1,1,2785,2786],[491,2,2,2786,2788],[493,1,1,2788,2789],[495,2,2,2789,2791],[496,1,1,2791,2792],[497,3,3,2792,2795],[498,1,1,2795,2796],[499,9,6,2796,2802],[500,1,1,2802,2803],[502,5,5,2803,2808],[503,1,1,2808,2809],[504,1,1,2809,2810],[506,1,1,2810,2811],[508,3,3,2811,2814],[509,3,3,2814,2817],[510,7,6,2817,2823],[511,8,8,2823,2831],[512,2,2,2831,2833],[514,1,1,2833,2834],[515,3,3,2834,2837],[516,5,4,2837,2841],[517,1,1,2841,2842],[518,2,2,2842,2844],[519,3,3,2844,2847],[521,4,4,2847,2851],[522,4,4,2851,2855],[524,3,3,2855,2858],[525,1,1,2858,2859],[526,3,2,2859,2861],[527,2,2,2861,2863],[528,1,1,2863,2864],[529,2,2,2864,2866],[530,1,1,2866,2867],[531,1,1,2867,2868],[533,4,3,2868,2871],[534,2,2,2871,2873],[536,3,2,2873,2875],[539,2,2,2875,2877],[540,1,1,2877,2878],[541,3,3,2878,2881],[542,2,2,2881,2883],[543,3,3,2883,2886],[544,4,4,2886,2890],[546,2,2,2890,2892],[547,1,1,2892,2893],[548,4,4,2893,2897],[549,5,4,2897,2901],[550,3,3,2901,2904],[551,4,4,2904,2908],[552,3,3,2908,2911],[553,3,3,2911,2914],[554,1,1,2914,2915],[555,4,4,2915,2919],[557,1,1,2919,2920],[559,3,3,2920,2923],[560,2,2,2923,2925],[562,2,2,2925,2927],[563,4,4,2927,2931],[564,2,2,2931,2933],[565,3,3,2933,2936],[566,7,7,2936,2943],[567,2,2,2943,2945],[568,1,1,2945,2946],[569,2,2,2946,2948],[571,2,2,2948,2950],[572,1,1,2950,2951],[573,7,6,2951,2957],[574,6,4,2957,2961],[575,2,2,2961,2963],[576,1,1,2963,2964],[577,1,1,2964,2965],[578,2,1,2965,2966],[579,3,3,2966,2969],[580,9,7,2969,2976],[581,4,4,2976,2980],[582,8,7,2980,2987],[583,4,4,2987,2991],[584,3,3,2991,2994],[585,1,1,2994,2995],[586,1,1,2995,2996],[588,4,4,2996,3000],[590,1,1,3000,3001],[592,3,3,3001,3004],[593,4,4,3004,3008],[594,2,1,3008,3009],[595,1,1,3009,3010],[596,28,26,3010,3036],[598,1,1,3036,3037],[605,2,2,3037,3039],[606,1,1,3039,3040],[607,1,1,3040,3041],[609,1,1,3041,3042],[611,1,1,3042,3043],[612,6,5,3043,3048],[613,1,1,3048,3049],[615,3,3,3049,3052],[616,3,3,3052,3055],[617,1,1,3055,3056],[620,3,3,3056,3059],[622,17,11,3059,3070],[623,1,1,3070,3071],[624,2,2,3071,3073],[625,10,7,3073,3080],[626,1,1,3080,3081],[627,1,1,3081,3082]]],[19,77,77,3082,3159,[[628,6,6,3082,3088],[629,2,2,3088,3090],[630,6,6,3090,3096],[631,4,4,3096,3100],[632,3,3,3100,3103],[633,4,4,3103,3107],[634,2,2,3107,3109],[635,6,6,3109,3115],[637,1,1,3115,3116],[639,1,1,3116,3117],[640,2,2,3117,3119],[641,2,2,3119,3121],[642,2,2,3121,3123],[643,5,5,3123,3128],[644,2,2,3128,3130],[645,1,1,3130,3131],[646,2,2,3131,3133],[647,4,4,3133,3137],[648,4,4,3137,3141],[649,1,1,3141,3142],[650,1,1,3142,3143],[651,2,2,3143,3145],[653,1,1,3145,3146],[654,1,1,3146,3147],[655,1,1,3147,3148],[656,2,2,3148,3150],[657,4,4,3150,3154],[658,5,5,3154,3159]]],[20,91,69,3159,3228,[[659,9,8,3159,3167],[660,17,13,3167,3180],[661,13,7,3180,3187],[662,7,5,3187,3192],[663,5,5,3192,3197],[664,3,3,3197,3200],[665,6,6,3200,3206],[666,5,4,3206,3210],[667,14,9,3210,3219],[668,2,2,3219,3221],[669,4,3,3221,3224],[670,6,4,3224,3228]]],[21,12,11,3228,3239,[[673,2,2,3228,3230],[674,6,5,3230,3235],[675,1,1,3235,3236],[676,1,1,3236,3237],[677,1,1,3237,3238],[678,1,1,3238,3239]]],[22,251,200,3239,3439,[[679,4,3,3239,3242],[680,11,6,3242,3248],[681,2,1,3248,3249],[682,3,2,3249,3251],[683,2,2,3251,3253],[684,1,1,3253,3254],[685,7,5,3254,3259],[686,5,3,3259,3262],[687,8,5,3262,3267],[688,4,4,3267,3271],[689,1,1,3271,3272],[690,1,1,3272,3273],[691,5,3,3273,3276],[692,10,7,3276,3283],[693,3,2,3283,3285],[694,2,2,3285,3287],[696,2,2,3287,3289],[697,5,5,3289,3294],[699,4,4,3294,3298],[700,6,3,3298,3301],[701,3,2,3301,3303],[702,3,3,3303,3306],[703,5,3,3306,3309],[704,3,3,3309,3312],[705,2,1,3312,3313],[706,3,3,3313,3316],[707,5,4,3316,3320],[708,5,4,3320,3324],[709,1,1,3324,3325],[710,2,2,3325,3327],[711,1,1,3327,3328],[712,6,4,3328,3332],[714,3,3,3332,3335],[715,7,7,3335,3342],[716,5,5,3342,3347],[717,5,3,3347,3350],[718,8,6,3350,3356],[719,2,2,3356,3358],[720,2,2,3358,3360],[721,3,3,3360,3363],[722,6,5,3363,3368],[723,9,8,3368,3376],[724,2,2,3376,3378],[726,2,2,3378,3380],[727,5,4,3380,3384],[728,2,2,3384,3386],[729,5,4,3386,3390],[730,3,2,3390,3392],[731,2,1,3392,3393],[732,5,4,3393,3397],[733,2,2,3397,3399],[734,8,6,3399,3405],[735,2,2,3405,3407],[736,2,2,3407,3409],[737,2,2,3409,3411],[738,5,5,3411,3416],[739,3,3,3416,3419],[740,1,1,3419,3420],[741,4,3,3420,3423],[742,6,4,3423,3427],[743,5,5,3427,3432],[744,10,7,3432,3439]]],[23,476,347,3439,3786,[[745,9,6,3439,3445],[746,8,7,3445,3452],[747,8,6,3452,3458],[748,7,6,3458,3464],[749,3,3,3464,3467],[750,5,3,3467,3470],[751,8,7,3470,3477],[752,7,5,3477,3482],[753,8,4,3482,3486],[754,8,6,3486,3492],[755,3,3,3492,3495],[756,7,6,3495,3501],[757,9,6,3501,3507],[758,1,1,3507,3508],[759,5,3,3508,3511],[760,6,4,3511,3515],[761,9,7,3515,3522],[762,3,3,3522,3525],[763,8,5,3525,3530],[764,12,6,3530,3536],[765,2,2,3536,3538],[766,3,2,3538,3540],[767,6,6,3540,3546],[768,3,2,3546,3548],[769,30,18,3548,3566],[770,20,14,3566,3580],[771,5,5,3580,3585],[772,9,8,3585,3593],[773,14,11,3593,3604],[774,10,6,3604,3610],[775,10,8,3610,3618],[776,14,10,3618,3628],[777,9,5,3628,3633],[778,11,7,3633,3640],[779,12,8,3640,3648],[780,26,21,3648,3669],[781,2,2,3669,3671],[782,7,6,3671,3677],[783,6,5,3677,3682],[784,10,8,3682,3690],[785,12,8,3690,3698],[786,10,8,3698,3706],[787,10,5,3706,3711],[788,22,14,3711,3725],[789,3,2,3725,3727],[790,1,1,3727,3728],[791,3,2,3728,3730],[792,11,7,3730,3737],[793,9,7,3737,3744],[794,15,12,3744,3756],[795,20,15,3756,3771],[796,17,15,3771,3786]]],[24,36,31,3786,3817,[[797,16,14,3786,3800],[798,8,7,3800,3807],[799,10,8,3807,3815],[800,2,2,3815,3817]]],[25,330,236,3817,4053,[[804,2,2,3817,3819],[806,8,6,3819,3825],[807,9,5,3825,3830],[808,11,8,3830,3838],[809,2,1,3838,3839],[810,4,4,3839,3843],[811,1,1,3843,3844],[812,5,3,3844,3847],[813,10,8,3847,3855],[814,2,1,3855,3856],[815,5,5,3856,3861],[816,2,2,3861,3863],[817,24,17,3863,3880],[818,8,5,3880,3885],[819,13,11,3885,3896],[821,15,9,3896,3905],[822,10,7,3905,3912],[823,4,4,3912,3916],[824,12,7,3916,3923],[825,2,2,3923,3925],[826,2,2,3925,3927],[827,3,3,3927,3930],[828,13,10,3930,3940],[829,5,5,3940,3945],[830,8,6,3945,3951],[831,2,2,3951,3953],[832,19,11,3953,3964],[833,24,16,3964,3980],[834,3,3,3980,3983],[835,8,6,3983,3989],[836,5,4,3989,3993],[837,10,7,3993,4000],[838,6,5,4000,4005],[839,16,11,4005,4016],[840,12,10,4016,4026],[841,2,1,4026,4027],[842,2,2,4027,4029],[843,1,1,4029,4030],[844,8,2,4030,4032],[845,20,11,4032,4043],[846,5,5,4043,4048],[848,4,2,4048,4050],[849,3,3,4050,4053]]],[26,30,22,4053,4075,[[850,9,5,4053,4058],[857,2,2,4058,4060],[858,9,7,4060,4067],[860,7,5,4067,4072],[861,3,3,4072,4075]]],[27,22,19,4075,4094,[[863,2,1,4075,4076],[865,1,1,4076,4077],[866,1,1,4077,4078],[868,6,5,4078,4083],[870,5,4,4083,4087],[871,1,1,4087,4088],[873,2,2,4088,4090],[874,3,3,4090,4093],[875,1,1,4093,4094]]],[28,16,16,4094,4110,[[876,5,5,4094,4099],[877,5,5,4099,4104],[878,6,6,4104,4110]]],[29,25,18,4110,4128,[[880,2,2,4110,4112],[881,3,2,4112,4114],[882,2,1,4114,4115],[883,3,2,4115,4117],[885,1,1,4117,4118],[886,7,4,4118,4122],[887,7,6,4122,4128]]],[30,3,3,4128,4131,[[888,3,3,4128,4131]]],[31,1,1,4131,4132,[[890,1,1,4131,4132]]],[32,16,14,4132,4146,[[893,5,3,4132,4135],[894,1,1,4135,4136],[895,2,2,4136,4138],[896,2,2,4138,4140],[897,2,2,4140,4142],[898,1,1,4142,4143],[899,3,3,4143,4146]]],[33,12,10,4146,4156,[[900,3,3,4146,4149],[901,3,2,4149,4151],[902,6,5,4151,4156]]],[34,11,9,4156,4165,[[903,3,3,4156,4159],[904,8,6,4159,4165]]],[35,23,17,4165,4182,[[906,8,6,4165,4171],[907,5,4,4171,4175],[908,10,7,4175,4182]]],[36,10,9,4182,4191,[[909,3,3,4182,4185],[910,7,6,4185,4191]]],[37,42,35,4191,4226,[[911,1,1,4191,4192],[912,1,1,4192,4193],[914,3,3,4193,4196],[915,4,2,4196,4198],[916,1,1,4198,4199],[917,2,2,4199,4201],[918,4,4,4201,4205],[919,1,1,4205,4206],[920,2,2,4206,4208],[921,1,1,4208,4209],[922,9,6,4209,4215],[923,1,1,4215,4216],[924,12,10,4216,4226]]],[38,10,9,4226,4235,[[925,1,1,4226,4227],[926,3,3,4227,4230],[927,3,3,4230,4233],[928,3,2,4233,4235]]]],[20,24,25,27,28,29,30,31,32,33,35,36,39,41,43,46,49,50,56,69,72,75,93,94,100,101,110,113,116,119,122,125,128,132,136,139,142,149,150,154,156,157,158,159,160,161,162,163,164,167,170,173,174,175,178,180,181,182,184,192,200,202,203,204,205,207,208,210,215,216,217,220,221,222,224,234,255,263,267,270,272,274,275,301,303,318,319,327,328,329,333,339,343,347,352,356,359,370,393,405,407,409,420,424,442,449,450,452,461,469,474,482,485,488,502,503,508,511,513,519,525,535,565,581,588,589,592,593,601,611,627,657,662,663,676,683,695,696,703,707,760,764,787,788,795,798,803,808,817,862,863,865,870,871,874,879,881,885,889,891,894,907,910,916,938,947,968,971,973,995,999,1002,1003,1004,1005,1009,1013,1015,1017,1046,1086,1087,1118,1152,1153,1154,1155,1157,1171,1172,1189,1192,1203,1214,1224,1225,1230,1232,1234,1235,1236,1238,1239,1241,1243,1246,1249,1250,1251,1252,1258,1263,1281,1288,1299,1324,1356,1359,1366,1367,1368,1369,1371,1373,1378,1380,1384,1385,1387,1392,1393,1401,1408,1411,1412,1413,1418,1420,1421,1432,1433,1434,1435,1437,1440,1467,1501,1513,1514,1520,1521,1537,1538,1546,1554,1599,1620,1622,1629,1630,1631,1644,1684,1687,1704,1705,1706,1709,1712,1714,1726,1727,1734,1746,1748,1751,1753,1756,1758,1761,1764,1766,1767,1782,1783,1789,1790,1791,1792,1796,1799,1800,1811,1812,1813,1814,1816,1819,1822,1828,1831,1832,1835,1836,1837,1845,1846,1849,1857,1858,1859,1860,1863,1864,1866,1869,1874,1879,1880,1882,1893,1896,1898,1906,1909,1910,1912,1917,1935,1940,1946,1948,1949,1950,1953,1956,1957,1969,1970,1984,2000,2007,2008,2010,2011,2013,2020,2021,2022,2023,2024,2025,2031,2033,2034,2037,2038,2042,2044,2052,2055,2060,2061,2062,2068,2069,2075,2107,2122,2123,2132,2135,2157,2161,2166,2171,2180,2181,2184,2185,2197,2204,2217,2231,2234,2237,2252,2275,2289,2291,2296,2331,2348,2349,2354,2360,2371,2373,2395,2396,2409,2410,2411,2423,2425,2426,2427,2428,2429,2431,2434,2435,2441,2451,2464,2480,2481,2483,2489,2492,2499,2506,2515,2516,2519,2526,2527,2528,2532,2533,2534,2535,2536,2541,2544,2547,2551,2552,2553,2554,2555,2556,2557,2560,2562,2564,2566,2567,2568,2569,2570,2573,2574,2575,2588,2626,2628,2636,2649,2650,2653,2655,2657,2659,2663,2664,2696,2697,2700,2701,2703,2704,2706,2707,2716,2717,2723,2743,2745,2754,2758,2764,2773,2775,2778,2781,2787,2792,2794,2795,2797,2802,2803,2806,2807,2808,2813,2814,2817,2821,2825,2826,2829,2830,2832,2833,2834,2847,2852,2854,2856,2858,2864,2867,2872,2876,2878,2879,2882,2885,2888,2889,2893,2898,2900,2902,2903,2904,2905,2906,2920,2927,2928,2933,2938,2942,2944,2953,2958,2976,2977,2980,2983,2988,2999,3000,3006,3007,3009,3012,3017,3018,3020,3021,3022,3023,3024,3028,3029,3030,3031,3032,3034,3038,3039,3040,3041,3043,3048,3064,3065,3098,3100,3101,3103,3104,3105,3109,3110,3111,3119,3120,3147,3156,3157,3165,3172,3177,3178,3179,3180,3184,3185,3187,3188,3189,3190,3192,3193,3194,3195,3203,3217,3218,3222,3223,3230,3231,3234,3235,3237,3245,3247,3249,3250,3257,3274,3275,3277,3278,3280,3283,3304,3305,3318,3323,3334,3340,3341,3343,3356,3363,3366,3369,3372,3373,3374,3379,3382,3387,3389,3390,3394,3405,3409,3410,3416,3423,3427,3430,3431,3432,3433,3437,3438,3440,3444,3460,3462,3463,3476,3478,3479,3493,3538,3539,3558,3559,3579,3581,3595,3598,3599,3600,3602,3606,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3650,3654,3658,3667,3674,3682,3689,3690,3692,3699,3700,3704,3705,3707,3714,3718,3720,3723,3726,3728,3731,3732,3733,3734,3735,3737,3746,3752,3753,3755,3757,3758,3759,3766,3769,3770,3773,3774,3775,3776,3778,3780,3782,3784,3786,3789,3790,3794,3798,3801,3822,3826,3827,3828,3829,3831,3851,3935,3936,3937,3938,3946,3948,3955,3956,3957,3959,3968,3970,3977,3983,3991,4013,4030,4035,4036,4037,4038,4046,4053,4056,4062,4066,4077,4078,4101,4107,4109,4110,4113,4115,4118,4119,4129,4130,4131,4137,4143,4144,4147,4166,4175,4176,4177,4178,4179,4186,4188,4189,4192,4193,4197,4199,4200,4204,4205,4210,4213,4216,4220,4222,4223,4224,4225,4226,4227,4228,4235,4246,4250,4253,4256,4257,4260,4261,4264,4265,4266,4267,4268,4269,4270,4271,4272,4276,4278,4285,4286,4288,4300,4302,4303,4304,4305,4307,4311,4312,4325,4333,4338,4340,4348,4363,4365,4366,4373,4374,4375,4377,4379,4392,4422,4429,4442,4463,4475,4477,4491,4532,4551,4556,4570,4573,4574,4575,4576,4595,4602,4603,4609,4615,4620,4643,4648,4650,4652,4653,4657,4659,4660,4661,4662,4668,4671,4673,4674,4675,4677,4679,4681,4682,4683,4684,4687,4691,4694,4699,4715,4716,4731,4733,4739,4744,4745,4747,4763,4764,4812,4848,4852,4860,4867,4868,4874,4875,4887,4893,4895,4899,4910,4911,4914,4922,4923,4933,4945,4952,4954,4963,4970,4971,4972,4974,4975,4976,4977,4978,4979,4980,4981,4982,4985,4988,4989,4993,4996,5007,5008,5010,5011,5012,5013,5014,5019,5020,5021,5022,5023,5027,5029,5033,5034,5038,5044,5053,5054,5056,5061,5066,5067,5074,5075,5076,5079,5080,5081,5082,5084,5086,5088,5091,5097,5105,5108,5110,5111,5117,5118,5125,5126,5127,5129,5130,5138,5139,5140,5146,5150,5167,5175,5198,5200,5201,5209,5211,5214,5215,5216,5221,5230,5231,5232,5233,5240,5241,5242,5245,5247,5248,5250,5251,5253,5254,5255,5257,5258,5259,5260,5261,5268,5271,5272,5275,5281,5283,5287,5288,5290,5292,5293,5296,5299,5300,5301,5304,5309,5310,5311,5312,5313,5316,5318,5319,5321,5324,5329,5337,5338,5340,5345,5346,5357,5358,5360,5363,5365,5367,5371,5374,5377,5378,5383,5385,5389,5390,5391,5396,5400,5402,5409,5414,5415,5421,5438,5440,5441,5442,5443,5445,5452,5453,5464,5468,5473,5475,5476,5489,5499,5506,5509,5518,5519,5520,5530,5533,5544,5563,5565,5566,5568,5577,5578,5579,5580,5582,5584,5585,5586,5588,5593,5594,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5619,5621,5623,5625,5626,5631,5636,5637,5640,5643,5644,5648,5651,5653,5656,5658,5659,5663,5666,5668,5669,5671,5672,5675,5681,5688,5689,5699,5700,5702,5703,5706,5708,5709,5710,5711,5714,5715,5716,5717,5718,5729,5733,5735,5737,5739,5740,5741,5746,5756,5758,5762,5785,5802,5803,5804,5813,5822,5840,5841,5850,5851,5853,5854,5855,5856,5858,5859,5860,5865,5867,5868,5869,5872,5878,5882,5887,5888,5891,5892,5893,5894,5900,5904,5906,5908,5910,5911,5920,5921,5924,5928,5934,5935,5938,5939,5940,5942,5952,5954,5966,5968,5970,5971,5972,5973,5974,5976,5979,5985,5991,5999,6000,6001,6003,6005,6006,6007,6013,6015,6016,6017,6018,6023,6026,6027,6028,6035,6036,6037,6038,6042,6046,6047,6048,6055,6056,6058,6061,6066,6069,6070,6071,6073,6079,6085,6088,6089,6092,6093,6094,6095,6096,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6111,6112,6113,6114,6117,6118,6119,6121,6122,6123,6124,6125,6126,6128,6130,6131,6135,6154,6156,6158,6159,6160,6163,6164,6165,6166,6170,6171,6175,6179,6184,6234,6248,6274,6291,6294,6329,6381,6400,6407,6414,6420,6421,6422,6423,6424,6425,6426,6428,6431,6438,6440,6442,6444,6446,6461,6462,6463,6464,6466,6474,6475,6477,6478,6479,6493,6494,6503,6507,6534,6549,6552,6555,6560,6563,6569,6571,6587,6597,6612,6614,6615,6654,6663,6667,6685,6687,6689,6691,6693,6694,6695,6698,6699,6700,6701,6702,6706,6708,6710,6712,6715,6716,6717,6718,6729,6731,6746,6753,6754,6755,6756,6757,6760,6768,6779,6788,6798,6799,6800,6801,6802,6803,6805,6811,6819,6826,6829,6837,6840,6849,6850,6851,6853,6855,6873,6888,6891,6897,6898,6907,6912,6951,6965,6966,6967,6976,6979,6980,7003,7024,7043,7044,7049,7053,7054,7055,7056,7060,7061,7062,7064,7065,7066,7070,7071,7079,7080,7087,7088,7089,7091,7098,7100,7102,7107,7113,7115,7146,7160,7170,7177,7178,7183,7188,7197,7199,7201,7216,7223,7233,7240,7253,7254,7262,7263,7268,7269,7272,7273,7275,7276,7287,7288,7293,7294,7295,7296,7298,7302,7305,7310,7324,7327,7330,7335,7349,7354,7355,7357,7365,7367,7368,7373,7374,7376,7377,7379,7389,7390,7393,7397,7410,7411,7412,7427,7429,7436,7437,7438,7441,7442,7443,7446,7447,7448,7449,7452,7455,7460,7461,7467,7478,7479,7480,7484,7488,7489,7492,7504,7505,7507,7515,7523,7528,7530,7532,7533,7542,7544,7546,7547,7548,7555,7560,7563,7566,7568,7569,7571,7629,7637,7642,7664,7665,7681,7682,7690,7692,7698,7705,7706,7707,7711,7713,7724,7730,7736,7761,7788,7789,7791,7793,7794,7795,7798,7801,7802,7803,7809,7818,7824,7830,7833,7841,7862,7867,7868,7870,7873,7876,7877,7878,7882,7883,7891,7917,7929,7931,7941,7944,7945,7946,7962,7968,7984,7994,7996,7997,7998,8000,8009,8015,8021,8031,8033,8058,8072,8077,8078,8079,8081,8093,8099,8100,8102,8104,8106,8110,8112,8113,8115,8116,8117,8118,8121,8127,8129,8133,8135,8137,8140,8149,8158,8159,8162,8168,8169,8171,8172,8176,8178,8181,8183,8187,8189,8191,8197,8201,8202,8213,8215,8218,8220,8223,8224,8234,8236,8238,8239,8247,8249,8257,8259,8260,8268,8277,8281,8289,8298,8302,8315,8317,8326,8338,8340,8342,8344,8346,8347,8348,8349,8350,8353,8354,8363,8375,8376,8381,8391,8393,8395,8399,8400,8403,8404,8405,8406,8407,8411,8412,8413,8419,8424,8425,8430,8432,8434,8437,8440,8441,8444,8447,8448,8449,8451,8452,8453,8459,8460,8461,8462,8463,8465,8471,8473,8482,8483,8486,8491,8495,8509,8510,8513,8516,8517,8518,8519,8520,8522,8524,8525,8531,8539,8541,8549,8550,8551,8552,8553,8556,8561,8566,8567,8568,8569,8576,8577,8585,8594,8603,8625,8633,8658,8659,8692,8694,8699,8700,8715,8720,8726,8736,8737,8742,8746,8756,8757,8758,8766,8772,8773,8774,8785,8796,8814,8829,8831,8844,8845,8851,8854,8855,8856,8865,8868,8869,8871,8874,8875,8878,8879,8884,8886,8888,8891,8903,8906,8908,8914,8918,8925,8934,8935,8939,8943,8948,8959,8967,8971,8974,8979,8981,8982,8985,8986,8987,8988,8989,8990,8999,9001,9007,9008,9022,9023,9024,9025,9028,9033,9035,9037,9038,9039,9040,9041,9043,9045,9047,9048,9050,9051,9052,9054,9055,9058,9059,9060,9062,9070,9071,9081,9082,9083,9092,9094,9099,9100,9102,9103,9108,9116,9121,9123,9124,9133,9136,9140,9142,9144,9145,9146,9147,9149,9150,9152,9154,9158,9163,9167,9169,9171,9172,9174,9195,9216,9226,9227,9231,9236,9239,9240,9241,9242,9244,9247,9248,9252,9254,9255,9256,9261,9263,9265,9267,9269,9271,9272,9276,9278,9280,9281,9282,9290,9294,9295,9296,9297,9299,9300,9308,9309,9313,9316,9346,9360,9361,9362,9365,9371,9377,9380,9388,9405,9409,9412,9414,9415,9416,9417,9418,9421,9423,9436,9477,9490,9492,9497,9499,9502,9503,9508,9519,9523,9533,9582,9595,9597,9601,9605,9606,9607,9616,9659,9662,9698,9720,9722,9731,9733,9736,9746,9748,9750,9761,9763,9764,9770,9798,9802,9804,9810,9811,9812,9814,9815,9823,9824,9825,9826,9827,9830,9836,9838,9843,9847,9848,9849,9852,9854,9855,9859,9862,9863,9868,9869,9874,9879,9882,9883,9893,9899,9910,9917,9920,9924,9928,9931,9941,9943,9945,9946,9951,9954,9956,9959,9967,9973,9974,9978,9979,9988,9992,9993,9994,9996,9999,10003,10005,10006,10020,10022,10027,10029,10031,10036,10037,10039,10045,10059,10065,10072,10076,10080,10085,10096,10111,10113,10115,10118,10122,10124,10126,10127,10130,10131,10133,10136,10140,10143,10147,10158,10161,10162,10165,10166,10167,10168,10169,10170,10173,10184,10185,10186,10187,10189,10190,10191,10193,10197,10202,10205,10207,10209,10211,10215,10216,10218,10221,10223,10226,10227,10231,10232,10236,10238,10239,10245,10248,10251,10252,10275,10285,10310,10312,10329,10370,10412,10418,10438,10444,10445,10448,10502,10503,10514,10538,10540,10543,10546,10575,10613,10615,10616,10624,10637,10644,10665,10666,10670,10671,10674,10676,10677,10679,10683,10735,10741,10752,10753,10757,10758,10761,10762,10764,10765,10766,10768,10774,10782,10791,10794,10818,10819,10823,10829,10834,10843,10844,10845,10846,10850,10852,10856,10860,10863,10865,10869,10871,10873,10878,10882,10883,10894,10896,10899,10900,10901,10903,10904,10915,10917,10924,10929,10937,10938,10939,10946,10957,10969,10973,10979,10981,10985,11009,11011,11012,11014,11051,11052,11053,11085,11088,11103,11105,11107,11109,11110,11112,11140,11144,11147,11148,11151,11152,11155,11156,11157,11162,11163,11164,11165,11166,11167,11169,11174,11175,11176,11178,11179,11180,11181,11183,11184,11185,11187,11188,11189,11190,11194,11196,11197,11211,11216,11225,11227,11228,11250,11262,11264,11265,11269,11270,11271,11272,11273,11274,11279,11280,11285,11287,11294,11295,11296,11310,11311,11312,11313,11315,11320,11327,11328,11329,11330,11332,11335,11340,11341,11344,11345,11346,11350,11352,11353,11361,11362,11365,11366,11376,11378,11383,11384,11386,11387,11390,11392,11394,11396,11398,11402,11407,11411,11417,11426,11427,11430,11435,11437,11438,11446,11450,11452,11457,11462,11468,11480,11483,11489,11492,11495,11496,11498,11499,11502,11503,11505,11507,11513,11515,11518,11525,11528,11532,11533,11542,11549,11551,11553,11558,11560,11563,11569,11581,11586,11587,11590,11591,11593,11600,11602,11605,11614,11616,11626,11628,11631,11633,11638,11641,11642,11645,11653,11654,11658,11659,11661,11662,11664,11666,11669,11672,11673,11675,11676,11677,11679,11682,11684,11687,11691,11700,11709,11711,11716,11728,11733,11736,11744,11746,11752,11757,11762,11768,11770,11778,11779,11787,11788,11789,11790,11793,11807,11809,11810,11815,11819,11820,11822,11823,11825,11827,11828,11829,11831,11832,11833,11841,11844,11849,11850,11852,11855,11859,11870,11872,11873,11874,11875,11879,11880,11882,11884,11888,11889,11890,11896,11897,11898,11902,11903,11905,11906,11908,11911,11913,11915,11916,11922,11923,11927,11930,11933,11940,11942,11945,11946,11949,11954,11957,11958,11961,11962,11963,11964,11965,11966,11969,11973,11979,11982,11984,11986,11990,11991,12007,12010,12011,12012,12014,12015,12016,12017,12018,12019,12020,12021,12022,12027,12069,12085,12091,12097,12102,12105,12108,12115,12171,12172,12179,12201,12221,12222,12223,12226,12235,12236,12241,12250,12255,12257,12259,12260,12261,12264,12266,12268,12269,12296,12365,12367,12371,12374,12375,12395,12398,12400,12401,12410,12417,12480,12486,12493,12494,12495,12496,12498,12499,12502,12504,12505,12506,12508,12510,12513,12516,12517,12521,12536,12543,12544,12549,12577,12578,12580,12582,12584,12586,12590,12594,12606,12608,12612,12651,12671,12674,12677,12679,12683,12686,12687,12689,12691,12697,12698,12701,12705,12707,12710,12715,12718,12719,12720,12722,12724,12727,12735,12737,12739,12741,12742,12748,12749,12753,12755,12759,12760,12761,12763,12765,12769,12773,12775,12778,12779,12790,12792,12793,12803,12806,12822,12826,12828,12829,12830,12834,12836,12837,12838,12839,12854,12855,12858,12860,12861,12862,12863,12864,12868,12869,12872,12874,12879,12880,12881,12891,12895,12901,12902,13041,13042,13079,13137,13138,13154,13157,13180,13195,13223,13240,13245,13267,13270,13316,13348,13352,13378,13388,13460,13484,13491,13493,13507,13514,13525,13528,13580,13592,13600,13651,13661,13663,13679,13696,13698,13702,13704,13710,13755,13761,13772,13776,13781,13793,13800,13811,13842,13875,13876,13884,13899,13922,13924,13932,13933,13937,13942,13957,13964,13978,13984,13991,13992,13993,13995,13996,14006,14013,14018,14019,14021,14022,14035,14038,14045,14046,14069,14083,14084,14095,14140,14148,14172,14185,14186,14187,14199,14211,14218,14221,14227,14231,14233,14241,14254,14256,14261,14269,14273,14280,14289,14317,14342,14354,14355,14358,14361,14366,14370,14372,14374,14379,14380,14381,14389,14392,14394,14398,14405,14407,14408,14410,14420,14438,14476,14496,14499,14502,14517,14520,14523,14524,14541,14545,14549,14558,14562,14565,14579,14586,14588,14593,14605,14610,14613,14614,14626,14627,14632,14636,14649,14665,14678,14679,14700,14711,14714,14722,14732,14756,14757,14760,14773,14779,14795,14798,14830,14835,14850,14858,14859,14860,14862,14865,14874,14877,14889,14895,14896,14898,14900,14954,14969,14975,14984,14991,14994,15000,15011,15015,15017,15019,15034,15047,15048,15051,15056,15065,15070,15074,15079,15081,15086,15090,15092,15105,15127,15145,15151,15164,15210,15238,15239,15241,15252,15259,15273,15274,15287,15289,15293,15296,15303,15308,15315,15317,15325,15333,15342,15366,15367,15368,15373,15376,15387,15392,15406,15418,15420,15435,15446,15457,15466,15468,15469,15470,15474,15477,15483,15484,15485,15487,15493,15494,15501,15509,15521,15529,15536,15547,15550,15551,15552,15555,15568,15570,15571,15582,15591,15595,15598,15608,15613,15622,15627,15637,15641,15642,15653,15654,15697,15699,15717,15726,15741,15747,15766,15794,15795,15800,15803,15817,15833,15838,15847,15859,15860,15862,15866,15868,15879,15900,15904,15908,15911,15912,15918,15932,15956,15961,15967,15984,15989,15994,15995,15997,15999,16002,16016,16017,16026,16031,16043,16049,16058,16066,16070,16088,16127,16131,16137,16148,16152,16173,16180,16181,16184,16186,16193,16221,16232,16233,16235,16242,16243,16255,16265,16295,16298,16305,16322,16329,16330,16333,16334,16335,16336,16337,16338,16340,16341,16347,16355,16371,16373,16374,16378,16380,16381,16382,16385,16394,16400,16413,16414,16417,16419,16425,16430,16442,16452,16460,16461,16464,16470,16472,16486,16497,16512,16513,16516,16531,16536,16538,16554,16569,16571,16575,16587,16601,16610,16611,16613,16618,16632,16638,16668,16740,16754,16763,16787,16795,16810,16822,16842,16844,16845,16851,16873,16881,16890,16902,16931,16932,16955,16957,16962,16981,16985,16986,16989,17010,17017,17061,17083,17110,17151,17176,17201,17235,17236,17255,17256,17278,17281,17289,17292,17296,17305,17313,17317,17318,17322,17323,17324,17328,17329,17331,17338,17340,17342,17343,17344,17347,17349,17350,17351,17352,17353,17355,17356,17360,17370,17372,17373,17376,17378,17379,17382,17385,17389,17396,17397,17406,17413,17414,17415,17416,17419,17423,17424,17431,17444,17447,17450,17452,17457,17461,17464,17467,17475,17476,17477,17478,17479,17481,17483,17484,17485,17486,17496,17512,17518,17521,17522,17527,17531,17536,17537,17577,17579,17584,17586,17589,17592,17596,17614,17620,17640,17647,17659,17677,17679,17687,17697,17698,17699,17700,17701,17708,17736,17738,17764,17767,17772,17801,17804,17805,17806,17807,17814,17816,17819,17834,17838,17841,17846,17850,17854,17862,17864,17873,17893,17905,17911,17913,17921,17935,17937,17938,17946,17954,17957,17959,17962,17963,17976,17983,18000,18003,18011,18012,18014,18018,18021,18037,18043,18044,18051,18053,18055,18076,18086,18094,18102,18105,18106,18124,18125,18126,18142,18144,18145,18160,18172,18186,18188,18200,18201,18204,18213,18222,18235,18242,18249,18253,18272,18279,18299,18304,18305,18307,18315,18331,18336,18350,18363,18368,18369,18370,18372,18377,18388,18403,18405,18406,18407,18410,18414,18416,18418,18422,18424,18425,18426,18437,18446,18462,18480,18495,18502,18512,18514,18519,18542,18544,18556,18557,18561,18568,18573,18574,18577,18583,18584,18585,18586,18589,18596,18620,18628,18645,18647,18654,18662,18671,18673,18676,18686,18691,18693,18701,18706,18717,18728,18735,18736,18740,18741,18752,18755,18759,18760,18762,18763,18764,18770,18778,18789,18792,18808,18811,18825,18827,18828,18835,18842,18845,18852,18854,18856,18869,18873,18875,18891,18893,18894,18896,18899,18902,18905,18909,18922,18924,18932,18938,18940,18942,18945,18946,18953,18960,18961,18962,18963,18964,18968,18969,18985,18986,18989,18994,18999,19008,19009,19010,19012,19015,19019,19047,19051,19052,19053,19054,19056,19064,19074,19077,19095,19102,19117,19121,19129,19132,19134,19142,19144,19146,19155,19156,19159,19163,19169,19177,19179,19200,19201,19208,19210,19215,19217,19221,19222,19230,19232,19234,19250,19253,19258,19260,19261,19263,19273,19276,19277,19278,19279,19285,19315,19319,19325,19328,19346,19351,19352,19353,19360,19366,19370,19376,19377,19379,19381,19400,19402,19407,19410,19415,19420,19421,19422,19426,19427,19428,19429,19430,19432,19442,19454,19474,19476,19487,19492,19493,19498,19499,19501,19531,19533,19535,19536,19538,19543,19545,19547,19549,19551,19553,19554,19556,19557,19558,19559,19560,19563,19564,19565,19574,19578,19579,19580,19581,19583,19584,19587,19588,19589,19590,19591,19592,19593,19602,19603,19608,19612,19616,19619,19621,19622,19623,19624,19625,19629,19632,19636,19639,19648,19649,19651,19653,19655,19657,19660,19661,19666,19669,19673,19678,19681,19683,19687,19692,19715,19716,19721,19725,19727,19728,19731,19743,19748,19750,19754,19758,19763,19768,19770,19772,19773,19780,19783,19784,19787,19793,19802,19807,19808,19809,19811,19818,19820,19826,19830,19831,19833,19838,19840,19841,19842,19844,19845,19846,19848,19850,19851,19852,19853,19854,19855,19856,19858,19859,19860,19862,19863,19865,19866,19870,19873,19874,19884,19895,19896,19899,19904,19917,19918,19922,19924,19926,19927,19929,19936,19942,19945,19946,19948,19952,19953,19954,19956,19960,19966,19967,19968,19969,19970,19971,19973,19976,19977,19979,19980,19983,19992,19995,19996,19998,19999,20001,20002,20003,20011,20012,20014,20018,20021,20022,20025,20027,20028,20030,20034,20036,20037,20038,20044,20045,20073,20075,20077,20088,20097,20104,20111,20117,20118,20119,20132,20140,20144,20153,20156,20159,20163,20173,20176,20179,20180,20187,20189,20193,20195,20196,20198,20199,20203,20215,20219,20229,20231,20236,20237,20240,20253,20255,20259,20260,20261,20264,20272,20273,20278,20280,20283,20284,20286,20289,20290,20293,20294,20296,20298,20299,20306,20309,20310,20312,20313,20314,20316,20317,20318,20320,20321,20322,20323,20325,20328,20331,20332,20334,20335,20336,20337,20347,20348,20351,20357,20368,20388,20400,20405,20414,20415,20416,20421,20432,20509,20512,20550,20555,20556,20557,20558,20560,20569,20572,20574,20576,20577,20580,20585,20589,20590,20591,20593,20594,20595,20614,20626,20628,20630,20633,20645,20670,20673,20680,20690,20694,20696,20699,20702,20703,20704,20708,20726,20736,20737,20742,20753,20754,20756,20757,20777,20784,20785,20786,20787,20792,20793,20795,20798,20799,20805,20806,20809,20813,20816,20819,20825,20834,20843,20846,20848,20849,20853,20860,20862,20863,20868,20870,20871,20873,20877,20879,20880,20901,20910,20921,20923,20926,20935,20938,20942,20943,20948,20949,20951,20954,20956,20959,20968,20978,20980,20994,20995,21013,21014,21019,21022,21030,21036,21055,21060,21080,21089,21091,21111,21116,21117,21126,21130,21133,21139,21142,21143,21148,21150,21155,21156,21170,21175,21176,21181,21183,21185,21187,21188,21189,21190,21201,21209,21212,21234,21235,21236,21238,21239,21242,21243,21244,21245,21246,21248,21252,21256,21260,21261,21263,21264,21268,21270,21271,21272,21273,21274,21277,21278,21279,21280,21293,21296,21309,21318,21319,21321,21325,21326,21334,21352,21356,21358,21359,21364,21369,21383,21384,21388,21392,21393,21408,21413,21419,21420,21421,21429,21430,21431,21432,21433,21434,21436,21438,21440,21445,21446,21452,21459,21461,21465,21466,21468,21469,21471,21473,21474,21481,21543,21545,21563,21583,21584,21604,21605,21606,21608,21612,21613,21620,21623,21628,21629,21630,21631,21636,21646,21647,21652,21688,21691,21715,21721,21722,21741,21752,21754,21756,21757,21965,21966,21994,21995,21999,22000,22001,22002,22004,22038,22053,22072,22073,22079,22082,22088,22091,22116,22136,22154,22180,22182,22184,22185,22188,22209,22212,22216,22223,22239,22253,22260,22268,22276,22281,22284,22293,22296,22303,22305,22310,22312,22317,22323,22339,22343,22345,22347,22352,22354,22355,22361,22382,22387,22396,22397,22416,22439,22440,22474,22484,22488,22489,22491,22496,22500,22504,22505,22507,22508,22517,22525,22526,22551,22581,22584,22586,22607,22615,22617,22625,22633,22642,22644,22664,22666,22680,22683,22688,22689,22699,22708,22709,22713,22719,22722,22724,22731,22740,22741,22746,22753,22754,22756,22765,22767,22768,22789,22791,22795,22796,22798,22805,22808,22816,22819,22820,22827,22828,22829,22831,22834,22839,22840,22851,22852,22854,22859,22862,22867,22868,22869,22872,22889,22912,22924,22932,22936,22939,22942,22952,22967,22976,22986,22988,22993,22999,23000,23020,23027,23038,23047,23048,23049,23051,23054,23059,23067,23070,23073,23077,23078,23080,23082,23083,23084,23087,23089,23100,23112,23113,23120,23129,23130,23132,23139,23142]]],["+",[490,461,[[0,44,37,0,37,[[1,4,4,0,4],[2,4,2,4,6],[5,8,5,6,11],[6,4,4,11,15],[7,4,3,15,18],[8,1,1,18,19],[10,1,1,19,20],[13,2,2,20,22],[16,1,1,22,23],[18,1,1,23,24],[26,1,1,24,25],[30,2,2,25,27],[31,2,1,27,28],[33,1,1,28,29],[36,2,2,29,31],[38,2,2,31,33],[39,1,1,33,34],[42,1,1,34,35],[43,1,1,35,36],[47,1,1,36,37]]],[1,11,11,37,48,[[58,1,1,37,38],[61,3,3,38,41],[64,1,1,41,42],[67,3,3,42,45],[68,1,1,45,46],[70,1,1,46,47],[82,1,1,47,48]]],[2,62,55,48,103,[[91,2,1,48,49],[92,1,1,49,50],[93,3,3,50,53],[94,2,2,53,55],[95,5,5,55,60],[96,3,3,60,63],[100,11,8,63,71],[101,1,1,71,72],[103,1,1,72,73],[104,3,3,73,76],[105,3,3,76,79],[106,2,2,79,81],[107,3,2,81,83],[110,1,1,83,84],[111,7,6,84,90],[112,8,8,90,98],[115,2,2,98,100],[116,4,3,100,103]]],[3,23,22,103,125,[[121,1,1,103,104],[122,1,1,104,105],[125,1,1,105,106],[128,1,1,106,107],[132,1,1,107,108],[134,4,3,108,111],[135,2,2,111,113],[137,1,1,113,114],[138,1,1,114,115],[144,3,3,115,118],[145,3,3,118,121],[147,3,3,121,124],[151,1,1,124,125]]],[4,33,30,125,155,[[156,1,1,125,126],[157,1,1,126,127],[158,1,1,127,128],[159,5,4,128,132],[162,1,1,132,133],[163,1,1,133,134],[164,4,4,134,138],[166,6,5,138,143],[170,3,2,143,145],[171,1,1,145,146],[172,1,1,146,147],[175,1,1,147,148],[177,1,1,148,149],[180,3,3,149,152],[181,1,1,152,153],[182,1,1,153,154],[183,1,1,154,155]]],[5,16,14,155,169,[[187,4,4,155,159],[188,2,1,159,160],[190,2,2,160,162],[194,1,1,162,163],[197,3,2,163,165],[207,2,2,165,167],[209,2,2,167,169]]],[6,13,12,169,181,[[212,1,1,169,170],[213,1,1,170,171],[217,1,1,171,172],[218,1,1,172,173],[221,2,2,173,175],[223,2,2,175,177],[226,1,1,177,178],[230,3,2,178,180],[231,1,1,180,181]]],[8,26,26,181,207,[[237,3,3,181,184],[238,2,2,184,186],[244,2,2,186,188],[245,2,2,188,190],[249,3,3,190,193],[253,4,4,193,197],[255,1,1,197,198],[258,1,1,198,199],[259,1,1,199,200],[260,4,4,200,204],[261,1,1,204,205],[263,2,2,205,207]]],[9,20,20,207,227,[[268,1,1,207,208],[269,2,2,208,210],[270,1,1,210,211],[272,1,1,211,212],[273,3,3,212,215],[274,3,3,215,218],[276,2,2,218,220],[278,1,1,220,221],[280,1,1,221,222],[281,1,1,222,223],[284,1,1,223,224],[285,3,3,224,227]]],[10,26,26,227,253,[[291,1,1,227,228],[292,1,1,228,229],[294,4,4,229,233],[295,2,2,233,235],[298,4,4,235,239],[299,1,1,239,240],[300,1,1,240,241],[301,3,3,241,244],[302,1,1,244,245],[304,3,3,245,248],[305,1,1,248,249],[306,3,3,249,252],[310,1,1,252,253]]],[11,12,12,253,265,[[315,1,1,253,254],[317,1,1,254,255],[320,1,1,255,256],[321,1,1,256,257],[322,1,1,257,258],[324,1,1,258,259],[325,1,1,259,260],[326,1,1,260,261],[329,1,1,261,262],[330,1,1,262,263],[333,2,2,263,265]]],[12,13,13,265,278,[[342,1,1,265,266],[344,1,1,266,267],[353,1,1,267,268],[354,2,2,268,270],[355,3,3,270,273],[356,1,1,273,274],[359,1,1,274,275],[365,2,2,275,277],[366,1,1,277,278]]],[13,29,28,278,306,[[368,1,1,278,279],[372,2,2,279,281],[373,1,1,281,282],[375,2,2,282,284],[376,1,1,284,285],[377,4,4,285,289],[378,2,2,289,291],[380,1,1,291,292],[381,2,2,292,294],[384,1,1,294,295],[385,1,1,295,296],[386,1,1,296,297],[387,1,1,297,298],[389,1,1,298,299],[390,1,1,299,300],[397,1,1,300,301],[398,1,1,301,302],[399,1,1,302,303],[400,2,1,303,304],[402,2,2,304,306]]],[14,4,4,306,310,[[403,3,3,306,309],[412,1,1,309,310]]],[15,4,4,310,314,[[416,1,1,310,311],[421,1,1,311,312],[424,1,1,312,313],[425,1,1,313,314]]],[16,10,9,314,323,[[427,4,3,314,317],[428,1,1,317,318],[429,2,2,318,320],[430,1,1,320,321],[431,1,1,321,322],[434,1,1,322,323]]],[17,5,5,323,328,[[436,2,2,323,325],[462,1,1,325,326],[472,1,1,326,327],[477,1,1,327,328]]],[18,38,38,328,366,[[478,1,1,328,329],[484,1,1,329,330],[487,1,1,330,331],[502,2,2,331,333],[508,1,1,333,334],[511,5,5,334,339],[514,1,1,339,340],[516,1,1,340,341],[519,2,2,341,343],[521,1,1,343,344],[526,1,1,344,345],[529,1,1,345,346],[531,1,1,346,347],[533,2,2,347,349],[549,1,1,349,350],[551,1,1,350,351],[553,1,1,351,352],[563,1,1,352,353],[564,1,1,353,354],[565,2,2,354,356],[584,1,1,356,357],[592,1,1,357,358],[596,2,2,358,360],[598,1,1,360,361],[607,1,1,361,362],[612,2,2,362,364],[617,1,1,364,365],[622,1,1,365,366]]],[19,9,9,366,375,[[629,1,1,366,367],[630,1,1,367,368],[631,1,1,368,369],[633,1,1,369,370],[635,1,1,370,371],[639,1,1,371,372],[640,1,1,372,373],[644,1,1,373,374],[648,1,1,374,375]]],[20,13,10,375,385,[[659,1,1,375,376],[660,6,3,376,379],[661,2,2,379,381],[664,1,1,381,382],[666,1,1,382,383],[667,2,2,383,385]]],[21,4,4,385,389,[[673,1,1,385,386],[674,2,2,386,388],[676,1,1,388,389]]],[22,5,4,389,393,[[729,2,1,389,390],[732,1,1,390,391],[735,1,1,391,392],[744,1,1,392,393]]],[23,29,28,393,421,[[745,1,1,393,394],[756,1,1,394,395],[757,2,2,395,397],[760,1,1,397,398],[761,2,2,398,400],[764,2,2,400,402],[766,1,1,402,403],[767,2,2,403,405],[773,2,1,405,406],[775,1,1,406,407],[776,3,3,407,410],[777,2,2,410,412],[779,1,1,412,413],[784,2,2,413,415],[786,1,1,415,416],[787,1,1,416,417],[788,1,1,417,418],[793,2,2,418,420],[795,1,1,420,421]]],[24,2,2,421,423,[[797,1,1,421,422],[799,1,1,422,423]]],[25,23,22,423,445,[[808,1,1,423,424],[810,1,1,424,425],[813,1,1,425,426],[816,1,1,426,427],[817,1,1,427,428],[819,3,3,428,431],[829,1,1,431,432],[832,1,1,432,433],[834,1,1,433,434],[835,1,1,434,435],[837,5,4,435,439],[838,1,1,439,440],[844,1,1,440,441],[845,2,2,441,443],[848,1,1,443,444],[849,1,1,444,445]]],[26,6,6,445,451,[[850,2,2,445,447],[857,1,1,447,448],[860,2,2,448,450],[861,1,1,450,451]]],[27,2,2,451,453,[[868,1,1,451,452],[873,1,1,452,453]]],[28,1,1,453,454,[[877,1,1,453,454]]],[29,1,1,454,455,[[881,1,1,454,455]]],[32,1,1,455,456,[[899,1,1,455,456]]],[33,1,1,456,457,[[901,1,1,456,457]]],[35,2,2,457,459,[[908,2,2,457,459]]],[37,2,2,459,461,[[918,1,1,459,460],[924,1,1,460,461]]]],[32,33,46,49,56,69,139,142,156,157,158,161,174,175,181,200,203,205,215,272,356,359,409,469,760,889,910,938,999,1086,1087,1171,1172,1189,1299,1356,1467,1746,1836,1859,1864,1946,2010,2020,2024,2031,2107,2489,2773,2795,2797,2808,2817,2834,2847,2852,2854,2856,2876,2879,2893,2902,2905,2999,3006,3007,3009,3018,3029,3030,3031,3048,3120,3177,3179,3194,3218,3231,3235,3247,3249,3277,3280,3366,3372,3379,3382,3389,3390,3394,3405,3409,3410,3423,3427,3430,3437,3438,3558,3559,3598,3599,3602,3798,3827,3983,4062,4220,4270,4285,4286,4305,4311,4363,4392,4595,4602,4603,4609,4620,4643,4679,4694,4699,4867,5044,5082,5110,5117,5118,5125,5126,5201,5209,5245,5250,5259,5272,5292,5299,5300,5313,5316,5389,5390,5415,5443,5509,5566,5625,5640,5644,5700,5711,5741,5858,5860,5867,5869,5888,5920,5934,6037,6122,6128,6425,6426,6461,6474,6560,6569,6698,6729,6849,6853,6897,6898,6965,7070,7088,7107,7268,7272,7275,7293,7295,7393,7412,7437,7441,7532,7547,7555,7681,7682,7705,7706,7761,7833,7841,7876,7882,7883,7891,7929,7944,7946,8079,8116,8117,8129,8178,8181,8189,8191,8215,8220,8223,8249,8257,8289,8375,8404,8491,8518,8524,8549,8746,8773,8868,8874,8875,8878,8879,8891,9001,9023,9038,9041,9054,9102,9140,9144,9147,9158,9227,9239,9240,9254,9308,9313,9316,9409,9597,9659,9746,9761,9812,9855,9882,9920,10020,10031,10126,10130,10438,10540,10823,10869,10871,10896,10901,10903,10917,10973,11147,11148,11167,11216,11287,11313,11340,11386,11392,11402,11427,11430,11435,11437,11450,11452,11480,11498,11503,11549,11586,11591,11631,11658,11682,11855,11890,11915,11942,12014,12016,12019,12020,12022,12260,12371,12513,12651,12701,12735,12737,12741,12755,12773,12775,12792,12803,12855,12872,12874,13491,13781,13932,13942,13996,14046,14254,14273,14342,14392,14394,14405,14407,14410,14476,14520,14558,14565,14586,14665,14711,14732,14756,14757,15015,15070,15086,15287,15303,15317,15325,15726,15833,15997,15999,16088,16148,16180,16181,16265,16333,16452,16486,16513,16554,16632,16740,16754,16881,16985,17324,17340,17342,17343,17372,17373,17419,17461,17483,17485,17577,17584,17592,17620,18691,18740,18778,18942,18953,19261,19273,19276,19351,19366,19381,19429,19430,19476,19487,19492,19649,19727,19748,19768,19770,19783,19793,19842,19946,19953,19979,20002,20027,20132,20159,20255,20312,20405,20591,20633,20708,20756,20816,20870,20877,20879,21181,21235,21296,21325,21383,21384,21388,21392,21420,21583,21608,21629,21688,21721,21741,21756,21965,22038,22073,22091,22185,22253,22343,22397,22680,22708,22827,22831,22999,23084]]],["All",[154,153,[[0,5,5,0,5,[[6,1,1,0,1],[13,1,1,1,2],[24,1,1,2,3],[45,1,1,3,4],[48,1,1,4,5]]],[1,10,10,5,15,[[61,1,1,5,6],[68,1,1,6,7],[73,2,2,7,9],[76,2,2,9,11],[83,2,2,11,13],[87,2,2,13,15]]],[2,4,4,15,19,[[95,2,2,15,17],[100,1,1,17,18],[102,1,1,18,19]]],[3,16,16,19,35,[[118,4,4,19,23],[119,1,1,23,24],[120,1,1,24,25],[122,4,4,25,29],[123,1,1,29,30],[131,1,1,30,31],[134,2,2,31,33],[139,1,1,33,34],[142,1,1,34,35]]],[4,5,5,35,40,[[155,2,2,35,37],[160,1,1,37,38],[167,1,1,38,39],[180,1,1,39,40]]],[5,8,8,40,48,[[187,1,1,40,41],[191,1,1,41,42],[199,2,2,42,44],[207,4,4,44,48]]],[7,1,1,48,49,[[234,1,1,48,49]]],[8,1,1,49,50,[[266,1,1,49,50]]],[9,1,1,50,51,[[290,1,1,50,51]]],[10,2,2,51,53,[[297,1,1,51,52],[310,1,1,52,53]]],[11,2,2,53,55,[[324,1,1,53,54],[332,1,1,54,55]]],[12,19,19,55,74,[[338,2,2,55,57],[339,2,2,57,59],[342,1,1,59,60],[343,1,1,60,61],[344,3,3,61,64],[345,2,2,64,66],[346,2,2,66,68],[349,1,1,68,69],[362,2,2,69,71],[363,1,1,71,72],[364,1,1,72,73],[365,1,1,73,74]]],[13,2,2,74,76,[[400,1,1,74,75],[402,1,1,75,76]]],[14,4,3,76,79,[[403,2,1,76,77],[404,1,1,77,78],[412,1,1,78,79]]],[15,3,3,79,82,[[419,1,1,79,80],[423,2,2,80,82]]],[16,1,1,82,83,[[429,1,1,82,83]]],[17,4,4,83,87,[[454,1,1,83,84],[455,1,1,84,85],[462,1,1,85,86],[469,1,1,86,87]]],[18,18,18,87,105,[[485,1,1,87,88],[499,3,3,88,91],[502,1,1,91,92],[512,1,1,92,93],[518,1,1,93,94],[521,1,1,94,95],[522,1,1,95,96],[543,1,1,96,97],[552,1,1,97,98],[563,1,1,98,99],[566,1,1,99,100],[593,1,1,100,101],[595,1,1,101,102],[596,1,1,102,103],[615,1,1,103,104],[622,1,1,104,105]]],[19,4,4,105,109,[[635,1,1,105,106],[642,1,1,106,107],[643,1,1,107,108],[646,1,1,108,109]]],[20,10,10,109,119,[[659,2,2,109,111],[661,1,1,111,112],[663,1,1,112,113],[664,1,1,113,114],[665,2,2,114,116],[666,1,1,116,117],[667,1,1,117,118],[669,1,1,118,119]]],[22,11,11,119,130,[[692,2,2,119,121],[696,1,1,121,122],[700,1,1,122,123],[717,1,1,123,124],[718,2,2,124,126],[726,1,1,126,127],[731,1,1,127,128],[734,1,1,128,129],[738,1,1,129,130]]],[23,4,4,130,134,[[764,1,1,130,131],[774,1,1,131,132],[792,1,1,132,133],[794,1,1,133,134]]],[24,4,4,134,138,[[797,1,1,134,135],[798,2,2,135,137],[799,1,1,137,138]]],[25,9,9,138,147,[[808,1,1,138,139],[819,2,2,139,141],[828,1,1,141,142],[829,1,1,142,143],[832,1,1,143,144],[833,1,1,144,145],[846,1,1,145,146],[849,1,1,146,147]]],[27,1,1,147,148,[[870,1,1,147,148]]],[29,1,1,148,149,[[887,1,1,148,149]]],[30,1,1,149,150,[[888,1,1,149,150]]],[33,1,1,150,151,[[902,1,1,150,151]]],[37,2,2,151,153,[[922,1,1,151,152],[924,1,1,152,153]]]],[181,339,662,1412,1501,1863,2034,2180,2184,2289,2291,2515,2516,2649,2657,2867,2878,3017,3098,3667,3674,3682,3689,3731,3789,3827,3828,3829,3831,3937,4166,4269,4276,4442,4532,4980,4985,5138,5338,5653,5867,5938,6160,6166,6400,6407,6414,6422,7177,8021,8715,8943,9417,9854,10113,10275,10285,10310,10329,10445,10514,10543,10546,10575,10613,10615,10624,10637,10758,11051,11052,11085,11140,11162,11949,12016,12027,12085,12296,12480,12594,12606,12773,13316,13352,13484,13698,14019,14211,14231,14233,14261,14420,14549,14588,14605,14877,15081,15293,15367,15859,15879,15984,16235,16330,16610,16822,16842,16932,17322,17323,17379,17414,17424,17444,17452,17467,17477,17521,17938,17946,18000,18055,18416,18426,18437,18628,18717,18762,18828,19432,19681,20097,20173,20321,20347,20348,20400,20594,20871,20873,21156,21176,21236,21256,21646,21722,22223,22505,22517,22724,23059,23078]]],["Every",[24,24,[[0,3,3,0,3,[[7,1,1,0,1],[8,1,1,1,2],[16,1,1,2,3]]],[1,1,1,3,4,[[50,1,1,3,4]]],[2,4,4,4,8,[[96,1,1,4,5],[100,1,1,5,6],[104,2,2,6,8]]],[3,2,2,8,10,[[146,1,1,8,9],[147,1,1,9,10]]],[4,2,2,10,12,[[163,1,1,10,11],[167,1,1,11,12]]],[5,1,1,12,13,[[187,1,1,12,13]]],[17,1,1,13,14,[[471,1,1,13,14]]],[18,2,2,14,16,[[533,1,1,14,15],[622,1,1,15,16]]],[19,3,3,16,19,[[640,1,1,16,17],[648,1,1,17,18],[657,1,1,18,19]]],[20,1,1,19,20,[[663,1,1,19,20]]],[22,1,1,20,21,[[718,1,1,20,21]]],[23,3,3,21,24,[[754,1,1,21,22],[757,1,1,22,23],[795,1,1,23,24]]]],[202,208,407,1554,2885,3012,3172,3194,4661,4687,5232,5321,5854,13761,14760,16322,16763,16986,17256,17416,18424,19215,19278,20229]]],["What",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9023]]],["Whatsoever",[3,3,[[2,3,3,0,3,[[96,1,1,0,1],[100,2,2,1,3]]]],[2906,3000,3039]]],["Whoso",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4875]]],["Whosoever",[5,5,[[1,1,1,0,1,[[71,1,1,0,1]]],[3,2,2,1,3,[[133,1,1,1,2],[135,1,1,2,3]]],[9,1,1,3,4,[[271,1,1,3,4]]],[12,1,1,4,5,[[348,1,1,4,5]]]],[2132,4257,4302,8140,10679]]],["all",[3888,3210,[[0,211,178,0,178,[[0,2,2,0,2],[1,2,2,2,4],[2,3,3,4,7],[3,1,1,7,8],[4,9,9,8,17],[5,4,4,17,21],[6,7,7,21,28],[7,1,1,28,29],[8,8,6,29,35],[9,2,2,35,37],[10,4,3,37,40],[11,3,3,40,43],[12,4,4,43,47],[13,4,3,47,50],[14,1,1,50,51],[15,1,1,51,52],[16,4,3,52,55],[17,4,4,55,59],[18,6,5,59,64],[19,6,4,64,68],[20,3,3,68,71],[21,1,1,71,72],[22,4,3,72,75],[23,5,5,75,80],[24,2,2,80,82],[25,5,4,82,86],[26,1,1,86,87],[27,3,3,87,90],[28,4,4,90,94],[29,6,3,94,97],[30,14,10,97,107],[31,1,1,107,108],[32,2,2,108,110],[33,6,3,110,113],[34,3,3,113,116],[35,3,1,116,117],[36,2,1,117,118],[38,7,6,118,124],[39,1,1,124,125],[40,24,18,125,143],[41,4,4,143,147],[44,13,11,147,158],[45,9,9,158,167],[46,7,7,167,174],[49,5,4,174,178]]],[1,210,172,178,350,[[50,5,4,178,182],[52,1,1,182,183],[53,6,5,183,188],[54,1,1,188,189],[55,1,1,189,190],[56,6,5,190,195],[57,6,5,195,200],[58,12,9,200,209],[59,12,8,209,217],[60,6,4,217,221],[61,14,11,221,232],[62,7,5,232,237],[63,8,8,237,245],[64,3,3,245,248],[65,4,4,248,252],[66,1,1,252,253],[67,11,9,253,262],[68,5,5,262,267],[69,5,5,267,272],[71,1,1,272,273],[72,5,4,273,277],[73,5,3,277,280],[74,5,4,280,284],[75,1,1,284,285],[76,4,2,285,287],[77,2,2,287,289],[78,4,4,289,293],[79,2,2,293,295],[80,6,5,295,300],[81,3,3,300,303],[82,4,3,303,306],[83,9,6,306,312],[84,10,10,312,322],[85,7,6,322,328],[86,2,2,328,330],[87,9,7,330,337],[88,10,8,337,345],[89,7,5,345,350]]],[2,103,91,350,441,[[90,2,2,350,352],[91,3,3,352,355],[92,5,5,355,360],[93,11,10,360,370],[95,2,2,370,372],[96,5,4,372,376],[97,7,7,376,383],[98,3,3,383,386],[99,3,3,386,389],[100,5,5,389,394],[102,3,2,394,396],[103,5,5,396,401],[104,4,4,401,405],[105,9,7,405,412],[106,3,2,412,414],[107,2,2,414,416],[108,4,3,416,419],[109,4,3,419,422],[110,1,1,422,423],[111,3,1,423,424],[112,7,6,424,430],[113,3,2,430,432],[114,4,4,432,436],[115,2,2,436,438],[116,3,3,438,441]]],[3,223,180,441,621,[[117,21,19,441,460],[118,2,2,460,462],[119,19,15,462,477],[120,22,15,477,492],[121,2,2,492,494],[123,5,4,494,498],[124,6,5,498,503],[125,4,3,503,506],[126,2,2,506,508],[127,10,8,508,516],[128,1,1,516,517],[129,4,3,517,520],[130,13,12,520,532],[131,11,10,532,542],[132,21,17,542,559],[133,4,3,559,562],[134,7,7,562,569],[135,3,2,569,571],[136,4,3,571,574],[137,7,5,574,579],[138,2,2,579,581],[139,2,2,581,583],[140,1,1,583,584],[141,2,2,584,586],[142,3,2,586,588],[143,7,6,588,594],[145,1,1,594,595],[146,5,4,595,599],[147,19,12,599,611],[148,4,4,611,615],[149,6,3,615,618],[151,3,3,618,621]]],[4,261,212,621,833,[[153,8,8,621,629],[154,7,7,629,636],[155,15,10,636,646],[156,13,11,646,657],[157,12,11,657,668],[158,10,7,668,675],[159,5,4,675,679],[160,2,2,679,681],[161,2,2,681,683],[162,4,2,683,685],[163,12,9,685,694],[164,10,9,694,703],[165,8,6,703,709],[166,6,6,709,715],[167,4,3,715,718],[168,6,5,718,723],[169,6,5,723,728],[170,6,6,728,734],[171,2,2,734,736],[172,5,4,736,740],[173,4,3,740,743],[174,4,4,743,747],[175,2,2,747,749],[176,2,2,749,751],[177,3,2,751,753],[178,8,7,753,760],[179,17,17,760,777],[180,27,22,777,799],[181,12,8,799,807],[182,11,6,807,813],[183,10,9,813,822],[184,7,5,822,827],[185,2,2,827,829],[186,9,4,829,833]]],[5,201,154,833,987,[[187,8,8,833,841],[188,8,7,841,848],[189,8,6,848,854],[190,7,6,854,860],[191,7,5,860,865],[192,12,10,865,875],[193,8,6,875,881],[194,20,16,881,897],[195,12,9,897,906],[196,33,24,906,930],[197,16,13,930,943],[198,3,3,943,946],[199,17,12,946,958],[201,2,2,958,960],[202,1,1,960,961],[203,1,1,961,962],[205,1,1,962,963],[206,1,1,963,964],[207,7,6,964,970],[208,7,4,970,974],[209,11,6,974,980],[210,11,7,980,987]]],[6,112,91,987,1078,[[211,1,1,987,988],[212,6,4,988,992],[213,5,4,992,996],[214,5,3,996,999],[215,1,1,999,1000],[216,9,8,1000,1008],[217,13,11,1008,1019],[218,5,5,1019,1024],[219,20,15,1024,1039],[220,2,2,1039,1041],[221,6,5,1041,1046],[222,1,1,1046,1047],[223,2,2,1047,1049],[224,1,1,1049,1050],[226,8,6,1050,1056],[228,1,1,1056,1057],[229,4,4,1057,1061],[230,22,17,1061,1078]]],[7,12,9,1078,1087,[[232,1,1,1078,1079],[233,2,2,1079,1081],[234,4,3,1081,1084],[235,5,3,1084,1087]]],[8,142,125,1087,1212,[[236,3,3,1087,1090],[237,9,7,1090,1097],[238,2,2,1097,1099],[239,4,4,1099,1103],[240,3,2,1103,1105],[241,2,2,1105,1107],[242,7,6,1107,1113],[243,7,7,1113,1120],[244,4,3,1120,1123],[245,8,6,1123,1129],[246,9,7,1129,1136],[247,9,6,1136,1142],[248,5,5,1142,1147],[249,10,10,1147,1157],[250,5,5,1157,1162],[252,5,5,1162,1167],[253,4,4,1167,1171],[254,6,5,1171,1176],[255,1,1,1176,1177],[257,12,10,1177,1187],[258,3,3,1187,1190],[260,8,8,1190,1198],[261,1,1,1198,1199],[262,1,1,1199,1200],[263,3,2,1200,1202],[264,1,1,1202,1203],[265,8,7,1203,1210],[266,2,2,1210,1212]]],[9,171,138,1212,1350,[[267,1,1,1212,1213],[268,5,4,1213,1217],[269,16,13,1217,1230],[270,2,2,1230,1232],[271,4,4,1232,1236],[272,10,8,1236,1244],[273,8,6,1244,1250],[274,6,4,1250,1254],[275,5,4,1254,1258],[276,2,2,1258,1260],[277,4,4,1260,1264],[278,5,4,1264,1268],[279,11,11,1268,1279],[280,4,3,1279,1282],[281,17,10,1282,1292],[282,13,10,1292,1302],[283,13,11,1302,1313],[284,7,6,1313,1319],[285,18,14,1319,1333],[286,8,7,1333,1340],[287,1,1,1340,1341],[288,3,3,1341,1344],[289,5,3,1344,1347],[290,3,3,1347,1350]]],[10,189,167,1350,1517,[[291,10,9,1350,1359],[292,7,6,1359,1365],[293,3,3,1365,1368],[294,14,12,1368,1380],[295,3,3,1380,1383],[296,7,6,1383,1389],[297,12,11,1389,1400],[298,27,24,1400,1424],[299,8,7,1424,1431],[300,9,8,1431,1439],[301,10,10,1439,1449],[302,9,8,1449,1457],[303,2,2,1457,1459],[304,8,7,1459,1466],[305,19,16,1466,1482],[306,8,8,1482,1490],[308,10,8,1490,1498],[309,3,2,1498,1500],[310,9,7,1500,1507],[311,1,1,1507,1508],[312,10,9,1508,1517]]],[11,174,137,1517,1654,[[315,5,4,1517,1521],[316,3,3,1521,1524],[317,2,1,1524,1525],[318,1,1,1525,1526],[319,3,2,1526,1528],[320,5,4,1528,1532],[321,2,2,1532,1534],[322,19,13,1534,1547],[323,7,7,1547,1554],[324,7,6,1554,1560],[325,4,4,1560,1564],[326,4,3,1564,1567],[327,11,10,1567,1577],[328,6,4,1577,1581],[329,12,9,1581,1590],[330,7,7,1590,1597],[331,6,6,1597,1603],[332,5,3,1603,1606],[333,8,7,1606,1613],[334,6,5,1613,1618],[335,26,16,1618,1634],[336,13,8,1634,1642],[337,12,12,1642,1654]]],[12,131,103,1654,1757,[[339,1,1,1654,1655],[340,1,1,1655,1656],[341,2,2,1656,1658],[342,2,2,1658,1660],[343,2,1,1660,1661],[344,2,2,1661,1663],[346,2,2,1663,1665],[347,5,4,1665,1669],[348,4,4,1669,1673],[349,7,5,1673,1678],[350,9,6,1678,1684],[351,4,2,1684,1686],[352,3,3,1686,1689],[353,11,11,1689,1700],[354,9,7,1700,1707],[355,5,4,1707,1711],[356,2,2,1711,1713],[357,2,1,1713,1714],[358,5,5,1714,1719],[359,2,2,1719,1721],[360,3,3,1721,1724],[362,1,1,1724,1725],[363,4,4,1725,1729],[364,2,2,1729,1731],[365,19,10,1731,1741],[366,22,16,1741,1757]]],[13,234,194,1757,1951,[[367,4,3,1757,1760],[368,1,1,1760,1761],[370,4,4,1761,1765],[371,9,8,1765,1773],[372,10,8,1773,1781],[373,9,9,1781,1790],[374,7,4,1790,1794],[375,9,8,1794,1802],[376,5,4,1802,1806],[377,3,3,1806,1809],[378,2,2,1809,1811],[379,2,2,1811,1813],[380,3,2,1813,1815],[381,9,7,1815,1822],[382,2,2,1822,1824],[383,5,5,1824,1829],[384,6,6,1829,1835],[385,3,2,1835,1837],[386,6,6,1837,1843],[387,6,6,1843,1849],[388,3,3,1849,1852],[389,10,10,1852,1862],[390,7,5,1862,1867],[391,5,4,1867,1871],[392,4,4,1871,1875],[393,2,2,1875,1877],[394,6,5,1877,1882],[395,14,10,1882,1892],[396,9,8,1892,1900],[397,11,6,1900,1906],[398,13,12,1906,1918],[399,8,8,1918,1926],[400,19,12,1926,1938],[401,10,8,1938,1946],[402,8,5,1946,1951]]],[14,35,30,1951,1981,[[403,4,4,1951,1955],[404,2,2,1955,1957],[405,3,3,1957,1960],[406,1,1,1960,1961],[408,3,2,1961,1963],[409,2,2,1963,1965],[410,8,6,1965,1971],[411,1,1,1971,1972],[412,11,9,1972,1981]]],[15,59,48,1981,2029,[[416,4,4,1981,1985],[417,4,4,1985,1989],[418,3,2,1989,1991],[419,1,1,1991,1992],[420,14,11,1992,2003],[421,12,7,2003,2010],[422,7,5,2010,2015],[423,3,3,2015,2018],[424,1,1,2018,2019],[425,10,10,2019,2029]]],[16,51,44,2029,2073,[[426,12,9,2029,2038],[427,4,3,2038,2041],[428,8,7,2041,2048],[429,4,4,2048,2052],[430,3,3,2052,2055],[431,1,1,2055,2056],[433,5,5,2056,2061],[434,12,10,2061,2071],[435,2,2,2071,2073]]],[17,45,41,2073,2114,[[436,5,5,2073,2078],[437,3,3,2078,2081],[443,1,1,2081,2082],[444,1,1,2082,2083],[447,2,2,2083,2085],[448,3,3,2085,2088],[449,1,1,2088,2089],[450,1,1,2089,2090],[451,2,2,2090,2092],[452,2,2,2092,2094],[459,1,1,2094,2095],[462,1,1,2095,2096],[463,2,2,2096,2098],[465,1,1,2098,2099],[466,2,2,2099,2101],[468,3,3,2101,2104],[469,2,2,2104,2106],[471,1,1,2106,2107],[472,1,1,2107,2108],[473,2,2,2108,2110],[475,1,1,2110,2111],[476,2,1,2111,2112],[477,5,2,2112,2114]]],[18,249,228,2114,2342,[[479,1,1,2114,2115],[480,1,1,2115,2116],[482,2,2,2116,2118],[483,4,4,2118,2122],[485,3,3,2122,2125],[486,3,3,2125,2128],[487,2,2,2128,2130],[489,1,1,2130,2131],[491,2,2,2131,2133],[493,1,1,2133,2134],[495,2,2,2134,2136],[496,1,1,2136,2137],[497,3,3,2137,2140],[498,1,1,2140,2141],[499,6,5,2141,2146],[500,1,1,2146,2147],[502,2,2,2147,2149],[503,1,1,2149,2150],[504,1,1,2150,2151],[508,2,2,2151,2153],[509,2,2,2153,2155],[510,7,6,2155,2161],[511,2,2,2161,2163],[512,1,1,2163,2164],[515,3,3,2164,2167],[516,1,1,2167,2168],[517,1,1,2168,2169],[518,1,1,2169,2170],[519,1,1,2170,2171],[521,2,2,2171,2173],[522,3,3,2173,2176],[524,3,3,2176,2179],[526,2,1,2179,2180],[527,1,1,2180,2181],[528,1,1,2181,2182],[529,1,1,2182,2183],[533,1,1,2183,2184],[534,2,2,2184,2186],[536,2,2,2186,2188],[539,2,2,2188,2190],[541,3,3,2190,2193],[542,2,2,2193,2195],[543,2,2,2195,2197],[544,4,4,2197,2201],[546,1,1,2201,2202],[547,1,1,2202,2203],[548,3,3,2203,2206],[549,3,2,2206,2208],[550,3,3,2208,2211],[551,3,3,2211,2214],[552,2,2,2214,2216],[553,2,2,2216,2218],[554,1,1,2218,2219],[555,4,4,2219,2223],[557,1,1,2223,2224],[559,3,3,2224,2227],[560,2,2,2227,2229],[562,2,2,2229,2231],[563,2,2,2231,2233],[564,1,1,2233,2234],[565,1,1,2234,2235],[566,6,6,2235,2241],[567,2,2,2241,2243],[568,1,1,2243,2244],[569,2,2,2244,2246],[571,2,2,2246,2248],[572,1,1,2248,2249],[573,7,6,2249,2255],[574,5,3,2255,2258],[575,2,2,2258,2260],[576,1,1,2260,2261],[577,1,1,2261,2262],[578,2,1,2262,2263],[579,3,3,2263,2266],[580,9,7,2266,2273],[581,3,3,2273,2276],[582,7,6,2276,2282],[583,4,4,2282,2286],[584,1,1,2286,2287],[585,1,1,2287,2288],[586,1,1,2288,2289],[588,3,3,2289,2292],[590,1,1,2292,2293],[593,3,3,2293,2296],[594,2,1,2296,2297],[596,15,14,2297,2311],[605,1,1,2311,2312],[606,1,1,2312,2313],[609,1,1,2313,2314],[611,1,1,2314,2315],[612,3,3,2315,2318],[613,1,1,2318,2319],[615,1,1,2319,2320],[616,2,2,2320,2322],[620,2,2,2322,2324],[622,13,8,2324,2332],[623,1,1,2332,2333],[624,1,1,2333,2334],[625,10,7,2334,2341],[626,1,1,2341,2342]]],[19,43,43,2342,2385,[[628,4,4,2342,2346],[630,5,5,2346,2351],[631,3,3,2351,2354],[632,3,3,2354,2357],[633,1,1,2357,2358],[635,4,4,2358,2362],[637,1,1,2362,2363],[641,1,1,2363,2364],[643,2,2,2364,2366],[644,1,1,2366,2367],[645,1,1,2367,2368],[647,2,2,2368,2370],[648,1,1,2370,2371],[649,1,1,2371,2372],[650,1,1,2372,2373],[651,2,2,2373,2375],[653,1,1,2375,2376],[655,1,1,2376,2377],[656,2,2,2377,2379],[657,2,2,2379,2381],[658,4,4,2381,2385]]],[20,53,44,2385,2429,[[659,6,5,2385,2390],[660,11,10,2390,2400],[661,5,3,2400,2403],[662,6,5,2403,2408],[663,3,3,2408,2411],[664,1,1,2411,2412],[665,4,4,2412,2416],[666,1,1,2416,2417],[667,10,6,2417,2423],[668,1,1,2423,2424],[669,3,3,2424,2427],[670,2,2,2427,2429]]],[21,6,5,2429,2434,[[673,1,1,2429,2430],[674,4,3,2430,2433],[678,1,1,2433,2434]]],[22,177,149,2434,2583,[[679,1,1,2434,2435],[680,7,4,2435,2439],[682,1,1,2439,2440],[683,2,2,2440,2442],[685,5,3,2442,2445],[686,5,3,2445,2448],[687,4,4,2448,2452],[688,3,3,2452,2455],[689,1,1,2455,2456],[690,1,1,2456,2457],[691,1,1,2457,2458],[692,4,3,2458,2461],[693,1,1,2461,2462],[694,1,1,2462,2463],[696,1,1,2463,2464],[697,2,2,2464,2466],[699,3,3,2466,2469],[700,4,2,2469,2471],[701,3,2,2471,2473],[702,2,2,2473,2475],[703,5,3,2475,2478],[704,3,3,2478,2481],[705,2,1,2481,2482],[706,2,2,2482,2484],[707,5,4,2484,2488],[708,2,2,2488,2490],[709,1,1,2490,2491],[710,2,2,2491,2493],[712,5,3,2493,2496],[714,3,3,2496,2499],[715,7,7,2499,2506],[716,5,5,2506,2511],[717,4,2,2511,2513],[718,4,4,2513,2517],[719,2,2,2517,2519],[720,2,2,2519,2521],[721,2,2,2521,2523],[722,5,4,2523,2527],[723,7,7,2527,2534],[724,2,2,2534,2536],[726,1,1,2536,2537],[727,5,4,2537,2541],[728,2,2,2541,2543],[729,2,2,2543,2545],[730,2,1,2545,2546],[731,1,1,2546,2547],[732,2,2,2547,2549],[733,1,1,2549,2550],[734,5,4,2550,2554],[736,1,1,2554,2555],[737,1,1,2555,2556],[738,4,4,2556,2560],[739,3,3,2560,2563],[740,1,1,2563,2564],[741,4,3,2564,2567],[742,6,4,2567,2571],[743,5,5,2571,2576],[744,9,7,2576,2583]]],[23,367,280,2583,2863,[[745,7,5,2583,2588],[746,5,5,2588,2593],[747,4,4,2593,2597],[748,3,3,2597,2600],[749,2,2,2600,2602],[750,2,1,2602,2603],[751,7,7,2603,2610],[752,3,2,2610,2612],[753,5,3,2612,2615],[754,6,5,2615,2620],[755,3,3,2620,2623],[756,4,4,2623,2627],[757,3,2,2627,2629],[758,1,1,2629,2630],[759,3,2,2630,2632],[760,3,2,2632,2634],[761,6,4,2634,2638],[762,1,1,2638,2639],[763,6,4,2639,2643],[764,8,3,2643,2646],[765,1,1,2646,2647],[766,2,2,2647,2649],[767,3,3,2649,2652],[768,2,1,2652,2653],[769,29,17,2653,2670],[770,20,14,2670,2684],[771,5,5,2684,2689],[772,9,8,2689,2697],[773,11,9,2697,2706],[774,7,5,2706,2711],[775,6,5,2711,2716],[776,8,6,2716,2722],[777,7,4,2722,2726],[778,11,7,2726,2733],[779,10,7,2733,2740],[780,25,21,2740,2761],[781,1,1,2761,2762],[782,7,6,2762,2768],[783,6,5,2768,2773],[784,8,7,2773,2780],[785,12,8,2780,2788],[786,8,6,2788,2794],[787,8,4,2794,2798],[788,20,13,2798,2811],[789,2,1,2811,2812],[790,1,1,2812,2813],[791,2,2,2813,2815],[792,6,6,2815,2821],[793,6,6,2821,2827],[794,11,10,2827,2837],[795,14,11,2837,2848],[796,17,15,2848,2863]]],[24,27,24,2863,2887,[[797,14,13,2863,2876],[798,4,4,2876,2880],[799,8,6,2880,2886],[800,1,1,2886,2887]]],[25,240,183,2887,3070,[[804,2,2,2887,2889],[806,7,6,2889,2895],[807,6,5,2895,2900],[808,8,7,2900,2907],[809,1,1,2907,2908],[810,2,2,2908,2910],[812,4,3,2910,2913],[813,5,4,2913,2917],[814,1,1,2917,2918],[815,5,5,2918,2923],[817,16,11,2923,2934],[818,7,5,2934,2939],[819,7,7,2939,2946],[821,12,9,2946,2955],[822,7,6,2955,2961],[823,4,4,2961,2965],[824,12,7,2965,2972],[825,1,1,2972,2973],[826,2,2,2973,2975],[827,3,3,2975,2978],[828,12,9,2978,2987],[829,2,2,2987,2989],[830,6,5,2989,2994],[831,2,2,2994,2996],[832,16,9,2996,3005],[833,22,15,3005,3020],[834,2,2,3020,3022],[835,5,4,3022,3026],[836,4,3,3026,3029],[837,5,3,3029,3032],[838,3,3,3032,3035],[839,15,11,3035,3046],[840,8,8,3046,3054],[841,2,1,3054,3055],[842,2,2,3055,3057],[843,1,1,3057,3058],[844,5,1,3058,3059],[845,11,6,3059,3065],[846,3,3,3065,3068],[848,1,1,3068,3069],[849,1,1,3069,3070]]],[26,19,14,3070,3084,[[850,7,4,3070,3074],[858,8,6,3074,3080],[860,3,3,3080,3083],[861,1,1,3083,3084]]],[27,17,16,3084,3100,[[863,2,1,3084,3085],[866,1,1,3085,3086],[868,5,5,3086,3091],[870,3,3,3091,3094],[871,1,1,3094,3095],[873,1,1,3095,3096],[874,3,3,3096,3099],[875,1,1,3099,3100]]],[28,15,15,3100,3115,[[876,5,5,3100,3105],[877,4,4,3105,3109],[878,6,6,3109,3115]]],[29,15,12,3115,3127,[[880,1,1,3115,3116],[881,1,1,3116,3117],[882,2,1,3117,3118],[883,3,2,3118,3120],[885,1,1,3120,3121],[886,2,1,3121,3122],[887,5,5,3122,3127]]],[30,2,2,3127,3129,[[888,2,2,3127,3129]]],[31,1,1,3129,3130,[[890,1,1,3129,3130]]],[32,14,12,3130,3142,[[893,5,3,3130,3133],[894,1,1,3133,3134],[895,2,2,3134,3136],[896,1,1,3136,3137],[897,2,2,3137,3139],[898,1,1,3139,3140],[899,2,2,3140,3142]]],[33,9,7,3142,3149,[[900,2,2,3142,3144],[901,2,1,3144,3145],[902,5,4,3145,3149]]],[34,10,8,3149,3157,[[903,2,2,3149,3151],[904,8,6,3151,3157]]],[35,18,15,3157,3172,[[906,7,6,3157,3163],[907,4,3,3163,3166],[908,7,6,3166,3172]]],[36,7,6,3172,3178,[[909,3,3,3172,3175],[910,4,3,3175,3178]]],[37,28,26,3178,3204,[[911,1,1,3178,3179],[912,1,1,3179,3180],[914,1,1,3180,3181],[915,1,1,3181,3182],[916,1,1,3182,3183],[917,2,2,3183,3185],[918,3,3,3185,3188],[919,1,1,3188,3189],[920,1,1,3189,3190],[921,1,1,3190,3191],[922,6,4,3191,3195],[923,1,1,3195,3196],[924,8,8,3196,3204]]],[38,7,6,3204,3210,[[926,2,2,3204,3206],[927,2,2,3206,3208],[928,3,2,3208,3210]]]],[25,28,31,50,69,72,75,100,110,113,116,119,122,125,128,132,136,149,150,154,159,160,162,164,170,173,178,180,184,207,216,220,221,222,234,255,263,272,274,275,301,303,318,319,328,329,333,343,347,352,370,393,405,420,424,442,449,450,452,461,474,482,485,488,502,503,511,513,519,525,535,565,581,588,589,593,601,611,627,657,663,676,695,696,703,707,764,787,788,795,798,803,808,817,862,865,870,874,879,881,885,889,891,894,907,910,916,947,968,973,1004,1005,1009,1013,1015,1017,1046,1118,1152,1153,1154,1155,1157,1171,1192,1203,1214,1224,1225,1230,1232,1234,1235,1236,1238,1239,1241,1243,1246,1249,1250,1251,1252,1258,1263,1281,1288,1359,1366,1367,1368,1369,1371,1373,1378,1380,1384,1385,1387,1392,1393,1401,1408,1411,1412,1413,1418,1421,1432,1433,1434,1435,1437,1440,1513,1514,1520,1521,1537,1538,1546,1554,1599,1620,1622,1629,1630,1631,1644,1684,1687,1704,1705,1706,1709,1712,1714,1726,1727,1734,1748,1751,1753,1756,1758,1761,1764,1766,1767,1783,1789,1790,1791,1792,1796,1799,1800,1811,1812,1814,1816,1819,1828,1836,1837,1845,1846,1849,1857,1858,1864,1866,1869,1874,1879,1880,1882,1893,1896,1898,1906,1909,1910,1912,1917,1935,1940,1946,1948,1953,1956,1969,1984,2000,2007,2008,2011,2013,2021,2022,2023,2025,2031,2033,2034,2037,2042,2052,2060,2062,2069,2075,2122,2157,2161,2166,2171,2180,2181,2185,2204,2217,2231,2234,2252,2275,2291,2296,2331,2348,2349,2360,2371,2409,2410,2426,2427,2428,2429,2431,2441,2451,2464,2481,2483,2492,2499,2506,2519,2526,2527,2528,2532,2535,2541,2544,2547,2551,2552,2553,2556,2557,2567,2569,2570,2573,2575,2588,2626,2628,2636,2650,2653,2655,2657,2663,2664,2696,2697,2700,2701,2703,2704,2706,2707,2716,2717,2723,2743,2745,2754,2758,2764,2775,2778,2781,2787,2792,2794,2795,2802,2803,2806,2813,2814,2821,2825,2826,2829,2830,2858,2864,2882,2888,2889,2898,2920,2927,2928,2933,2942,2944,2953,2958,2976,2977,2980,2983,2988,3007,3020,3028,3031,3039,3064,3065,3119,3120,3147,3156,3157,3184,3192,3193,3194,3203,3217,3218,3222,3223,3230,3234,3237,3249,3275,3278,3283,3305,3318,3323,3340,3341,3369,3387,3405,3416,3423,3433,3440,3444,3460,3462,3476,3478,3479,3493,3538,3539,3579,3595,3600,3606,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3650,3654,3658,3690,3692,3700,3704,3705,3714,3718,3720,3723,3726,3728,3731,3732,3733,3734,3735,3737,3746,3752,3753,3755,3757,3758,3759,3766,3769,3770,3774,3775,3776,3780,3784,3801,3822,3851,3935,3936,3938,3946,3955,3956,3957,3959,3968,3970,3977,3991,4013,4030,4035,4036,4037,4038,4046,4053,4056,4066,4078,4101,4107,4109,4110,4113,4115,4118,4119,4129,4130,4137,4143,4144,4147,4175,4176,4177,4178,4179,4186,4188,4189,4192,4193,4197,4199,4200,4204,4205,4210,4213,4216,4220,4222,4223,4224,4225,4226,4227,4228,4235,4246,4253,4256,4260,4261,4265,4268,4269,4272,4278,4303,4307,4325,4338,4340,4365,4366,4373,4374,4375,4377,4379,4422,4429,4463,4475,4477,4491,4551,4556,4570,4573,4574,4575,4576,4648,4650,4652,4659,4662,4668,4671,4673,4674,4675,4677,4682,4684,4687,4691,4715,4716,4731,4733,4739,4744,4763,4764,4812,4848,4852,4874,4893,4895,4899,4910,4911,4922,4923,4933,4945,4952,4954,4970,4971,4972,4974,4976,4977,4978,4979,4982,4985,4988,4989,4993,4996,5007,5010,5011,5012,5013,5014,5023,5033,5034,5038,5053,5054,5056,5066,5075,5076,5079,5080,5081,5082,5084,5086,5088,5091,5097,5105,5108,5110,5111,5126,5127,5129,5130,5139,5150,5167,5175,5198,5200,5211,5214,5215,5216,5221,5230,5231,5233,5240,5241,5242,5247,5248,5251,5254,5255,5258,5268,5275,5281,5283,5287,5288,5290,5299,5301,5310,5312,5318,5319,5324,5329,5337,5345,5346,5357,5358,5360,5371,5374,5377,5378,5383,5385,5390,5391,5396,5400,5402,5414,5415,5438,5441,5442,5445,5453,5464,5468,5473,5475,5489,5499,5506,5520,5533,5544,5563,5565,5568,5578,5579,5580,5582,5584,5585,5586,5588,5593,5594,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5619,5621,5623,5626,5631,5636,5637,5643,5644,5648,5651,5656,5658,5659,5663,5666,5668,5669,5671,5675,5681,5688,5689,5699,5700,5703,5706,5708,5709,5710,5714,5715,5716,5718,5729,5733,5735,5737,5739,5740,5746,5756,5758,5762,5785,5802,5803,5804,5813,5822,5840,5841,5850,5851,5853,5855,5856,5858,5859,5865,5868,5869,5872,5878,5882,5887,5891,5892,5893,5894,5900,5904,5906,5908,5910,5911,5920,5921,5924,5928,5934,5935,5938,5939,5940,5942,5952,5954,5966,5968,5970,5971,5972,5973,5974,5976,5979,5985,5991,5999,6000,6001,6003,6005,6006,6007,6013,6015,6016,6017,6018,6023,6026,6027,6028,6035,6036,6037,6038,6042,6046,6047,6048,6055,6056,6058,6061,6066,6069,6070,6071,6073,6079,6085,6088,6089,6092,6093,6094,6095,6096,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6111,6112,6113,6114,6117,6118,6119,6121,6123,6124,6125,6126,6130,6131,6135,6154,6156,6158,6159,6160,6163,6164,6165,6170,6171,6175,6179,6184,6234,6248,6274,6291,6329,6381,6420,6421,6423,6424,6425,6426,6428,6431,6440,6446,6462,6463,6464,6466,6474,6475,6477,6478,6479,6493,6494,6503,6507,6534,6549,6552,6555,6563,6569,6571,6587,6597,6612,6614,6615,6654,6663,6667,6685,6687,6689,6691,6693,6694,6695,6700,6701,6702,6706,6708,6712,6715,6716,6717,6718,6729,6731,6746,6753,6754,6755,6756,6757,6760,6768,6779,6788,6798,6799,6800,6801,6802,6803,6805,6811,6819,6829,6837,6840,6850,6851,6855,6873,6898,6907,6912,6951,6966,6967,6976,6979,6980,7024,7044,7049,7053,7054,7055,7056,7060,7061,7062,7064,7065,7066,7071,7079,7080,7087,7089,7091,7098,7100,7102,7146,7160,7170,7178,7183,7188,7197,7199,7201,7216,7223,7233,7254,7262,7263,7268,7269,7272,7273,7288,7296,7298,7302,7305,7310,7327,7330,7335,7349,7354,7355,7357,7365,7367,7368,7373,7374,7376,7377,7379,7389,7390,7397,7410,7411,7427,7429,7436,7438,7442,7443,7446,7447,7448,7449,7452,7455,7460,7461,7467,7478,7479,7480,7484,7488,7489,7492,7504,7505,7515,7523,7528,7530,7533,7542,7546,7548,7555,7560,7563,7566,7568,7569,7571,7629,7637,7642,7664,7665,7681,7690,7692,7698,7707,7711,7713,7724,7730,7736,7788,7791,7793,7794,7795,7798,7801,7802,7803,7809,7818,7830,7833,7862,7867,7868,7870,7873,7877,7878,7882,7917,7941,7945,7962,7968,7984,7994,7996,7997,7998,8000,8009,8015,8021,8033,8058,8077,8078,8081,8093,8099,8100,8102,8104,8106,8110,8112,8113,8115,8116,8117,8118,8121,8127,8133,8135,8137,8149,8158,8159,8162,8168,8169,8171,8172,8176,8183,8187,8189,8197,8201,8202,8213,8218,8223,8224,8234,8236,8238,8239,8247,8259,8260,8268,8277,8281,8298,8302,8315,8317,8326,8338,8340,8342,8344,8346,8347,8348,8349,8350,8353,8375,8376,8381,8395,8399,8403,8405,8406,8407,8411,8412,8413,8419,8430,8432,8434,8437,8440,8441,8444,8447,8448,8449,8451,8452,8453,8459,8460,8461,8462,8463,8465,8471,8473,8482,8483,8486,8495,8509,8510,8513,8516,8517,8519,8520,8522,8525,8531,8539,8541,8550,8551,8552,8553,8561,8566,8567,8568,8569,8576,8577,8594,8603,8625,8633,8658,8659,8692,8694,8699,8700,8720,8726,8736,8737,8742,8756,8757,8758,8766,8772,8773,8774,8785,8796,8814,8829,8831,8844,8845,8851,8854,8855,8856,8865,8868,8869,8871,8874,8875,8878,8884,8886,8888,8906,8908,8914,8918,8925,8934,8935,8939,8948,8959,8967,8971,8974,8979,8981,8982,8985,8986,8987,8988,8989,8990,8999,9007,9008,9023,9024,9025,9028,9033,9035,9037,9039,9040,9041,9043,9045,9047,9048,9050,9051,9052,9055,9058,9060,9062,9070,9071,9081,9082,9083,9092,9094,9100,9103,9108,9116,9121,9124,9133,9136,9142,9145,9146,9149,9150,9152,9154,9163,9167,9169,9171,9172,9174,9195,9216,9226,9231,9236,9242,9244,9247,9248,9252,9254,9255,9256,9261,9263,9265,9267,9269,9271,9272,9276,9278,9280,9281,9282,9290,9294,9295,9296,9297,9299,9300,9309,9346,9360,9361,9362,9365,9371,9377,9380,9388,9405,9412,9415,9416,9418,9421,9423,9436,9477,9490,9492,9497,9499,9502,9503,9519,9523,9533,9582,9595,9597,9601,9606,9607,9616,9662,9698,9720,9722,9731,9733,9748,9750,9763,9770,9798,9802,9804,9810,9811,9812,9814,9815,9823,9824,9825,9826,9827,9830,9836,9838,9843,9847,9848,9849,9852,9854,9859,9862,9868,9869,9874,9879,9883,9893,9910,9917,9924,9928,9931,9941,9943,9945,9946,9951,9954,9956,9959,9973,9974,9978,9979,9988,9992,9994,9996,9999,10003,10005,10006,10022,10027,10029,10036,10037,10039,10045,10059,10065,10072,10076,10080,10085,10096,10111,10115,10118,10122,10124,10127,10133,10136,10140,10143,10147,10158,10161,10162,10165,10166,10167,10168,10169,10170,10173,10184,10185,10186,10187,10189,10190,10191,10193,10197,10202,10205,10207,10209,10211,10215,10216,10218,10221,10223,10226,10227,10231,10232,10236,10238,10239,10245,10248,10251,10252,10312,10370,10412,10418,10444,10448,10503,10538,10540,10616,10644,10665,10666,10670,10671,10674,10676,10677,10683,10735,10741,10752,10753,10758,10762,10764,10765,10766,10768,10774,10782,10791,10794,10818,10819,10829,10834,10843,10844,10845,10846,10850,10852,10856,10860,10863,10865,10869,10871,10873,10878,10882,10883,10894,10899,10903,10904,10915,10924,10929,10937,10938,10939,10946,10957,10969,10981,10985,11011,11014,11053,11088,11103,11105,11107,11110,11112,11144,11147,11151,11152,11155,11156,11157,11162,11163,11164,11165,11166,11174,11175,11176,11179,11180,11181,11183,11184,11185,11187,11188,11189,11190,11194,11196,11197,11211,11228,11250,11262,11264,11265,11269,11270,11271,11272,11273,11274,11279,11280,11285,11294,11295,11296,11311,11312,11315,11320,11327,11328,11329,11330,11332,11335,11341,11344,11346,11350,11352,11353,11362,11365,11366,11376,11378,11384,11387,11390,11394,11396,11398,11407,11411,11417,11427,11437,11438,11446,11457,11468,11483,11489,11492,11495,11496,11499,11502,11505,11507,11513,11515,11525,11528,11532,11533,11542,11551,11553,11558,11560,11563,11569,11581,11587,11590,11593,11600,11602,11605,11616,11626,11628,11633,11638,11641,11642,11645,11653,11654,11659,11661,11662,11664,11666,11669,11672,11673,11676,11677,11679,11684,11687,11691,11700,11709,11711,11716,11728,11733,11736,11746,11752,11757,11762,11770,11778,11779,11787,11790,11793,11807,11809,11810,11815,11819,11820,11823,11825,11827,11828,11829,11831,11832,11833,11841,11849,11852,11855,11859,11872,11873,11874,11875,11879,11880,11882,11884,11888,11889,11896,11897,11898,11905,11906,11908,11911,11913,11916,11922,11923,11927,11930,11933,11940,11945,11946,11954,11957,11958,11961,11962,11963,11964,11965,11966,11969,11973,11979,11982,11984,11986,11990,11991,12007,12010,12011,12012,12015,12017,12018,12021,12022,12069,12097,12102,12105,12108,12115,12171,12172,12179,12201,12221,12222,12223,12226,12235,12236,12250,12255,12257,12259,12260,12261,12264,12266,12268,12269,12365,12367,12374,12375,12395,12398,12400,12401,12410,12417,12493,12494,12495,12496,12498,12499,12502,12504,12505,12506,12508,12510,12516,12517,12521,12536,12543,12544,12549,12577,12578,12582,12584,12586,12590,12608,12612,12671,12674,12677,12679,12683,12686,12687,12689,12691,12697,12698,12705,12707,12710,12715,12718,12719,12720,12722,12724,12727,12739,12742,12748,12749,12753,12755,12759,12760,12761,12763,12769,12778,12779,12790,12792,12793,12806,12822,12826,12828,12829,12830,12836,12837,12838,12839,12854,12858,12860,12861,12863,12864,12868,12869,12874,12879,12880,12881,12891,12895,12901,12902,13042,13079,13137,13138,13154,13157,13180,13195,13223,13240,13245,13267,13270,13460,13493,13507,13525,13580,13592,13600,13651,13661,13679,13702,13704,13755,13776,13800,13811,13884,13922,13933,13937,13957,13964,13978,13984,13991,13992,13993,13995,14013,14018,14021,14022,14035,14038,14045,14046,14069,14083,14084,14095,14140,14148,14172,14185,14186,14187,14199,14218,14221,14227,14231,14233,14241,14256,14269,14280,14289,14354,14355,14358,14366,14370,14372,14374,14379,14380,14381,14389,14408,14438,14496,14499,14502,14524,14541,14545,14562,14579,14593,14610,14613,14614,14626,14627,14632,14649,14679,14700,14714,14760,14773,14779,14795,14798,14830,14835,14858,14859,14860,14862,14865,14874,14889,14895,14896,14898,14900,14954,14975,14984,14991,15000,15011,15017,15034,15047,15048,15051,15056,15065,15074,15079,15090,15092,15105,15127,15145,15151,15164,15210,15238,15239,15241,15252,15259,15273,15274,15289,15296,15308,15315,15333,15342,15366,15368,15373,15376,15387,15392,15406,15418,15420,15435,15446,15457,15466,15468,15469,15470,15474,15477,15484,15485,15487,15493,15494,15501,15509,15521,15529,15536,15547,15550,15551,15552,15555,15568,15570,15571,15591,15595,15598,15608,15613,15627,15637,15641,15642,15653,15654,15697,15699,15741,15747,15766,15795,15800,15803,15817,15860,15862,15866,15868,15904,15911,15912,15918,15961,15989,15994,15995,16016,16017,16026,16049,16066,16070,16131,16137,16152,16173,16181,16184,16186,16221,16233,16242,16255,16298,16305,16329,16333,16334,16335,16337,16338,16340,16341,16347,16355,16373,16374,16378,16380,16381,16382,16385,16394,16413,16414,16425,16430,16460,16461,16464,16470,16472,16497,16512,16516,16531,16536,16538,16571,16611,16613,16618,16638,16668,16795,16844,16851,16890,16902,16962,16981,17010,17017,17061,17083,17110,17151,17201,17235,17236,17255,17278,17292,17296,17305,17313,17317,17318,17328,17329,17331,17338,17344,17347,17349,17350,17351,17352,17353,17355,17356,17372,17378,17379,17382,17385,17389,17396,17397,17406,17413,17415,17423,17431,17447,17450,17457,17475,17476,17477,17478,17479,17484,17486,17512,17518,17521,17522,17527,17531,17579,17586,17589,17596,17647,17679,17687,17698,17699,17701,17738,17764,17767,17801,17806,17807,17814,17816,17819,17838,17841,17846,17850,17854,17864,17873,17893,17905,17913,17937,17946,17954,17962,17983,18003,18012,18014,18037,18044,18051,18055,18076,18086,18094,18102,18106,18124,18125,18126,18142,18144,18145,18160,18172,18188,18200,18201,18204,18213,18222,18235,18253,18272,18279,18305,18307,18315,18331,18336,18350,18363,18368,18369,18370,18372,18377,18388,18403,18405,18406,18407,18410,18414,18418,18422,18425,18426,18446,18462,18480,18495,18502,18514,18519,18542,18544,18557,18561,18568,18573,18574,18577,18583,18585,18586,18589,18596,18620,18645,18647,18654,18662,18671,18673,18676,18693,18706,18717,18735,18736,18752,18760,18762,18763,18764,18789,18811,18825,18827,18835,18842,18845,18852,18854,18856,18869,18873,18875,18891,18893,18894,18896,18899,18902,18905,18909,18922,18924,18932,18938,18940,18942,18945,18946,18953,18960,18961,18962,18963,18968,18969,18989,18994,18999,19009,19010,19012,19019,19051,19052,19053,19074,19077,19117,19121,19129,19132,19134,19142,19144,19146,19155,19156,19177,19200,19201,19208,19210,19217,19221,19222,19230,19232,19234,19250,19258,19261,19263,19279,19285,19315,19319,19328,19346,19353,19360,19370,19376,19377,19407,19415,19420,19421,19422,19426,19427,19428,19442,19474,19476,19493,19498,19499,19533,19535,19536,19538,19543,19547,19549,19551,19553,19554,19556,19557,19558,19559,19560,19563,19564,19565,19574,19578,19579,19580,19581,19583,19584,19587,19588,19589,19590,19591,19592,19593,19602,19603,19608,19612,19616,19619,19621,19622,19623,19624,19625,19629,19632,19636,19639,19648,19651,19653,19655,19657,19660,19666,19669,19673,19678,19683,19687,19692,19715,19725,19728,19731,19743,19750,19754,19758,19763,19773,19780,19783,19784,19787,19802,19807,19808,19809,19811,19818,19820,19826,19830,19831,19833,19838,19840,19841,19844,19845,19846,19848,19850,19851,19852,19853,19854,19855,19856,19858,19859,19860,19862,19863,19865,19866,19870,19873,19874,19895,19896,19899,19904,19917,19918,19922,19924,19926,19927,19929,19936,19942,19945,19948,19952,19953,19954,19956,19960,19966,19967,19968,19969,19970,19971,19973,19976,19977,19980,19983,19992,19995,19998,19999,20001,20002,20011,20012,20014,20018,20021,20022,20025,20028,20030,20034,20036,20037,20038,20045,20073,20075,20077,20097,20104,20111,20117,20118,20119,20140,20144,20153,20156,20159,20163,20176,20179,20180,20187,20193,20195,20196,20198,20199,20203,20215,20219,20236,20237,20240,20259,20260,20261,20264,20272,20273,20278,20280,20283,20284,20286,20289,20290,20293,20294,20296,20298,20299,20306,20309,20310,20312,20313,20314,20316,20317,20318,20320,20322,20323,20325,20328,20331,20332,20334,20335,20336,20337,20357,20368,20388,20414,20415,20416,20432,20509,20512,20550,20555,20556,20557,20558,20560,20569,20572,20574,20576,20577,20580,20585,20589,20591,20593,20594,20595,20614,20626,20630,20670,20673,20680,20690,20694,20696,20699,20726,20736,20737,20742,20753,20754,20784,20785,20792,20795,20798,20799,20805,20809,20813,20819,20825,20834,20843,20846,20848,20849,20853,20862,20863,20868,20870,20873,20880,20901,20910,20921,20923,20926,20935,20938,20942,20943,20948,20949,20951,20956,20959,20968,20978,20980,20994,20995,21013,21014,21019,21022,21030,21036,21055,21080,21089,21091,21111,21116,21117,21126,21130,21133,21139,21142,21143,21148,21150,21155,21175,21183,21185,21187,21188,21189,21190,21209,21212,21234,21236,21239,21242,21243,21244,21245,21246,21248,21252,21260,21261,21263,21264,21268,21270,21271,21272,21273,21274,21277,21278,21279,21280,21293,21309,21318,21319,21326,21334,21352,21356,21359,21364,21369,21393,21413,21419,21421,21429,21430,21431,21432,21433,21434,21436,21438,21440,21445,21446,21452,21459,21461,21466,21468,21469,21471,21474,21481,21543,21545,21563,21583,21604,21605,21606,21613,21623,21629,21631,21647,21652,21691,21715,21741,21752,21754,21757,21994,21995,21999,22001,22002,22004,22038,22073,22079,22088,22116,22154,22180,22182,22184,22185,22188,22212,22216,22223,22239,22260,22268,22276,22281,22284,22293,22296,22303,22305,22310,22312,22317,22323,22339,22345,22347,22352,22354,22355,22361,22382,22397,22416,22439,22440,22474,22491,22496,22500,22504,22507,22508,22525,22526,22551,22581,22584,22586,22607,22615,22617,22625,22642,22644,22664,22666,22683,22688,22689,22709,22713,22719,22722,22731,22740,22746,22753,22754,22756,22765,22767,22768,22789,22791,22795,22796,22798,22805,22808,22816,22819,22827,22828,22829,22834,22839,22840,22851,22852,22854,22859,22862,22872,22889,22912,22924,22942,22952,22967,22976,22986,22988,22993,23000,23027,23038,23047,23048,23051,23054,23067,23070,23073,23077,23080,23082,23083,23087,23089,23112,23113,23130,23132,23139,23142]]],["altogether",[4,4,[[1,1,1,0,1,[[68,1,1,0,1]]],[18,2,2,1,3,[[516,1,1,1,2],[616,1,1,2,3]]],[21,1,1,3,4,[[675,1,1,3,4]]]],[2044,14517,16243,17614]]],["any",[137,131,[[0,2,2,0,2,[[3,1,1,0,1],[42,1,1,1,2]]],[1,9,9,2,11,[[59,1,1,2,3],[60,1,1,3,4],[69,2,2,4,6],[71,2,2,6,8],[83,1,1,8,9],[84,2,2,9,11]]],[2,26,25,11,36,[[91,1,1,11,12],[94,1,1,12,13],[96,5,4,13,17],[100,2,2,17,19],[102,7,7,19,26],[104,1,1,26,27],[107,3,3,27,30],[109,1,1,30,31],[110,1,1,31,32],[111,1,1,32,33],[112,1,1,33,34],[113,1,1,34,35],[116,1,1,35,36]]],[3,6,6,36,42,[[122,1,1,36,37],[130,1,1,37,38],[135,1,1,38,39],[145,1,1,39,40],[146,1,1,40,41],[151,1,1,41,42]]],[4,27,23,42,65,[[154,1,1,42,43],[156,6,5,43,48],[157,4,3,48,51],[160,1,1,51,52],[164,1,1,52,53],[166,2,2,53,55],[167,1,1,55,56],[168,1,1,56,57],[169,2,2,57,59],[171,3,1,59,60],[174,1,1,60,61],[175,2,2,61,63],[176,1,1,63,64],[181,1,1,64,65]]],[5,2,2,65,67,[[197,2,2,65,67]]],[6,6,6,67,73,[[223,3,3,67,70],[226,1,1,70,71],[228,1,1,71,72],[229,1,1,72,73]]],[8,7,6,73,79,[[237,1,1,73,74],[240,1,1,74,75],[248,1,1,75,76],[249,2,1,76,77],[262,1,1,77,78],[265,1,1,78,79]]],[9,3,3,79,82,[[281,2,2,79,81],[287,1,1,81,82]]],[10,4,4,82,86,[[296,1,1,82,83],[298,1,1,83,84],[300,1,1,84,85],[305,1,1,85,86]]],[11,1,1,86,87,[[324,1,1,86,87]]],[12,3,3,87,90,[[360,1,1,87,88],[364,1,1,88,89],[366,1,1,89,90]]],[13,5,5,90,95,[[372,1,1,90,91],[374,1,1,91,92],[375,1,1,92,93],[389,1,1,93,94],[398,1,1,94,95]]],[15,1,1,95,96,[[422,1,1,95,96]]],[17,4,4,96,100,[[443,1,1,96,97],[468,1,1,97,98],[469,1,1,98,99],[472,1,1,99,100]]],[18,5,5,100,105,[[511,1,1,100,101],[536,1,1,101,102],[592,1,1,102,103],[596,1,1,103,104],[624,1,1,104,105]]],[19,4,4,105,109,[[628,1,1,105,106],[633,1,1,106,107],[657,1,1,107,108],[658,1,1,108,109]]],[20,1,1,109,110,[[667,1,1,109,110]]],[22,2,2,110,112,[[711,1,1,110,111],[734,1,1,111,112]]],[23,7,7,112,119,[[753,1,1,112,113],[761,1,1,113,114],[762,1,1,114,115],[776,1,1,115,116],[780,1,1,116,117],[786,1,1,117,118],[788,1,1,118,119]]],[25,9,9,119,128,[[810,1,1,119,120],[813,1,1,120,121],[816,1,1,121,122],[819,1,1,122,123],[832,1,1,123,124],[838,1,1,124,125],[845,3,3,125,128]]],[29,1,1,128,129,[[886,1,1,128,129]]],[36,2,2,129,131,[[910,2,2,129,131]]]],[94,1324,1792,1813,2055,2061,2123,2135,2506,2555,2566,2773,2832,2898,2900,2903,2905,3034,3040,3100,3101,3103,3104,3105,3109,3111,3190,3257,3274,3275,3334,3356,3374,3432,3463,3581,3826,4131,4300,4615,4653,4868,4975,5020,5021,5022,5027,5029,5061,5067,5074,5146,5257,5293,5311,5340,5363,5365,5367,5421,5476,5518,5519,5530,5702,6118,6121,6888,6891,6898,6966,7003,7043,7253,7324,7507,7560,7931,7997,8391,8400,8585,8903,9023,9099,9278,9863,11009,11110,11189,11311,11361,11383,11675,11890,12580,13041,13663,13710,13793,14398,14795,15847,16031,16371,16417,16575,17281,17289,17481,18299,18755,19179,19379,19402,19758,19866,19996,20036,20628,20704,20757,20860,21238,21420,21608,21612,21620,22488,22867,22868]]],["as",[2,2,[[1,1,1,0,1,[[84,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]]],[2553,11822]]],["concerning",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3602]]],["enough",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[971]]],["every",[316,261,[[0,49,33,0,33,[[0,9,5,0,5],[1,6,4,5,9],[3,1,1,9,10],[5,1,1,10,11],[6,9,4,11,15],[7,5,3,15,18],[8,9,6,18,24],[16,2,2,24,26],[19,1,1,26,27],[33,4,4,27,31],[44,1,1,31,32],[45,1,1,32,33]]],[1,25,23,33,56,[[50,1,1,33,34],[58,4,3,34,37],[59,3,3,37,40],[61,2,2,40,42],[62,2,2,42,44],[67,3,2,44,46],[74,1,1,46,47],[83,1,1,47,48],[84,5,5,48,53],[85,3,3,53,56]]],[2,16,14,56,70,[[91,1,1,56,57],[95,1,1,57,58],[96,1,1,58,59],[100,7,6,59,65],[104,4,3,65,68],[106,1,1,68,69],[116,1,1,69,70]]],[3,24,20,70,90,[[117,3,3,70,73],[119,1,1,73,74],[121,2,2,74,76],[124,2,2,76,78],[134,8,5,78,83],[135,1,1,83,84],[146,4,4,84,88],[147,2,1,88,89],[152,1,1,89,90]]],[4,17,15,90,105,[[154,1,1,90,91],[155,1,1,91,92],[160,1,1,92,93],[164,3,3,93,96],[166,3,3,96,99],[171,1,1,99,100],[172,1,1,100,101],[173,2,1,101,102],[178,1,1,102,103],[180,2,1,103,104],[182,1,1,104,105]]],[5,1,1,105,106,[[197,1,1,105,106]]],[6,2,1,106,107,[[231,2,1,106,107]]],[8,6,4,107,111,[[238,1,1,107,108],[250,1,1,108,109],[257,3,1,109,110],[258,1,1,110,111]]],[9,6,6,111,117,[[279,2,2,111,113],[281,2,2,113,115],[286,2,2,115,117]]],[10,6,5,117,122,[[301,2,2,117,119],[304,2,1,119,120],[309,1,1,120,121],[312,1,1,121,122]]],[11,10,6,122,128,[[315,5,2,122,124],[320,1,1,124,125],[328,1,1,125,126],[329,2,1,126,127],[337,1,1,127,128]]],[12,3,3,128,131,[[350,1,1,128,129],[363,1,1,129,130],[365,1,1,130,131]]],[13,10,10,131,141,[[367,1,1,131,132],[368,1,1,132,133],[377,2,2,133,135],[386,1,1,135,136],[394,3,3,136,139],[397,2,2,139,141]]],[15,3,3,141,144,[[417,1,1,141,142],[422,2,2,142,144]]],[16,10,9,144,153,[[426,1,1,144,145],[428,1,1,145,146],[429,1,1,146,147],[431,1,1,147,148],[433,4,3,148,151],[434,2,2,151,153]]],[17,7,7,153,160,[[447,1,1,153,154],[455,1,1,154,155],[456,1,1,155,156],[463,1,1,156,157],[472,1,1,157,158],[474,1,1,158,159],[477,1,1,159,160]]],[18,10,10,160,170,[[484,1,1,160,161],[509,1,1,161,162],[516,2,2,162,164],[527,1,1,164,165],[581,1,1,165,166],[596,2,2,166,168],[622,1,1,168,169],[627,1,1,169,170]]],[19,6,6,170,176,[[629,1,1,170,171],[634,1,1,171,172],[641,1,1,172,173],[642,1,1,173,174],[647,1,1,174,175],[654,1,1,175,176]]],[20,10,7,176,183,[[661,5,3,176,179],[662,1,1,179,180],[666,2,2,180,182],[670,2,1,182,183]]],[22,23,19,183,202,[[680,4,2,183,185],[682,1,1,185,186],[685,1,1,186,187],[687,2,2,187,189],[691,1,1,189,190],[693,1,1,190,191],[697,1,1,191,192],[702,1,1,192,193],[708,2,1,193,194],[718,1,1,194,195],[722,1,1,195,196],[723,2,1,196,197],[729,1,1,197,198],[730,1,1,198,199],[732,1,1,199,200],[735,1,1,200,201],[736,1,1,201,202]]],[23,23,18,202,220,[[746,2,1,202,203],[747,3,2,203,205],[748,1,1,205,206],[753,2,1,206,207],[754,1,1,207,208],[756,1,1,208,209],[757,1,1,209,210],[760,2,1,210,211],[773,1,1,211,212],[774,1,1,212,213],[775,2,2,213,215],[787,1,1,215,216],[791,1,1,216,217],[792,3,2,217,219],[795,1,1,219,220]]],[24,2,2,220,222,[[798,1,1,220,221],[800,1,1,221,222]]],[25,33,26,222,248,[[807,3,1,222,223],[809,1,1,223,224],[813,3,3,224,227],[814,1,1,227,228],[817,4,3,228,231],[818,1,1,231,232],[821,3,2,232,234],[822,3,2,234,236],[825,1,1,236,237],[829,1,1,237,238],[830,2,1,238,239],[835,2,2,239,241],[839,1,1,241,242],[840,3,2,242,244],[845,3,3,244,247],[848,1,1,247,248]]],[26,1,1,248,249,[[860,1,1,248,249]]],[27,1,1,249,250,[[870,1,1,249,250]]],[29,3,3,250,253,[[880,1,1,250,251],[886,2,2,251,253]]],[34,1,1,253,254,[[903,1,1,253,254]]],[35,1,1,254,255,[[908,1,1,254,255]]],[36,1,1,255,256,[[910,1,1,255,256]]],[37,5,4,256,260,[[915,1,1,256,257],[920,1,1,257,258],[922,2,1,258,259],[924,1,1,259,260]]],[38,1,1,260,261,[[925,1,1,260,261]]]],[20,25,27,28,29,35,39,49,50,101,142,163,173,180,182,184,200,202,207,210,215,217,220,221,409,420,508,995,1002,1003,1004,1359,1420,1554,1761,1764,1767,1782,1789,1792,1832,1860,1879,1880,2021,2025,2197,2515,2541,2552,2553,2554,2560,2567,2568,2574,2775,2872,2889,3023,3030,3031,3032,3038,3043,3172,3180,3185,3250,3598,3606,3624,3626,3707,3794,3801,3955,3956,4264,4266,4267,4286,4288,4304,4652,4657,4659,4661,4681,4887,4972,4981,5140,5242,5253,5271,5296,5304,5309,5409,5440,5452,5577,5672,5717,6121,7113,7294,7569,7789,7824,8326,8354,8393,8425,8556,8566,9123,9124,9241,9405,9508,9595,9601,9736,9967,9993,10231,10761,11109,11164,11196,11225,11426,11437,11614,11768,11788,11789,11873,11875,12395,12577,12580,12724,12761,12765,12806,12828,12830,12834,12861,12862,13138,13348,13388,13514,13776,13842,13924,14006,14361,14517,14523,14678,15582,16002,16026,16336,16400,16442,16587,16787,16810,16957,17176,17360,17370,17376,17385,17464,17467,17537,17697,17700,17738,17805,17834,17846,17913,17962,18018,18105,18242,18424,18556,18584,18686,18701,18740,18770,18792,18985,19008,19015,19056,19179,19215,19253,19278,19352,19661,19673,19716,19721,20003,20077,20088,20117,20229,20351,20421,20576,20614,20694,20702,20703,20726,20786,20787,20793,20848,20923,20942,20951,20954,21060,21170,21201,21319,21321,21445,21452,21465,21604,21628,21629,21688,22072,22209,22387,22484,22491,22741,22839,22869,22939,23020,23049,23089,23100]]],["generally",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20118]]],["long",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7240]]],["man",[6,6,[[0,1,1,0,1,[[15,1,1,0,1]]],[1,1,1,1,2,[[84,1,1,1,2]]],[3,2,2,2,4,[[148,2,2,2,4]]],[18,1,1,4,5,[[620,1,1,4,5]]],[19,1,1,5,6,[[646,1,1,5,6]]]],[393,2555,4745,4747,16295,16931]]],["man's",[2,2,[[0,1,1,0,1,[[15,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]]],[393,6710]]],["manner",[35,33,[[1,10,10,0,10,[[50,1,1,0,1],[61,1,1,1,2],[71,1,1,2,3],[80,2,2,3,5],[84,4,4,5,9],[85,1,1,9,10]]],[2,8,8,10,18,[[96,1,1,10,11],[100,2,2,11,13],[103,1,1,13,14],[106,1,1,14,15],[108,1,1,15,16],[109,1,1,16,17],[112,1,1,17,18]]],[4,2,2,18,20,[[156,1,1,18,19],[179,1,1,19,20]]],[12,10,8,20,28,[[343,1,1,20,21],[349,1,1,21,22],[355,1,1,22,23],[359,2,1,23,24],[360,1,1,24,25],[365,2,1,25,26],[366,2,2,26,28]]],[13,3,3,28,31,[[368,1,1,28,29],[398,2,2,29,31]]],[18,1,1,31,32,[[584,1,1,31,32]]],[21,1,1,32,33,[[677,1,1,32,33]]]],[1546,1832,2122,2423,2425,2560,2562,2564,2566,2567,2906,3024,3041,3165,3245,3304,3343,3433,5019,5606,10502,10757,10900,10979,11012,11164,11166,11169,11225,11902,11903,15717,17640]]],["many",[2,2,[[9,1,1,0,1,[[268,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]]],[8072,16601]]],["nothing",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5666]]],["one",[91,87,[[0,3,3,0,3,[[3,1,1,0,1],[29,2,2,1,3]]],[1,9,9,3,12,[[63,1,1,3,4],[75,1,1,4,5],[79,2,2,5,7],[82,1,1,7,8],[84,2,2,8,10],[85,1,1,10,11],[87,1,1,11,12]]],[2,2,2,12,14,[[95,1,1,12,13],[100,1,1,13,14]]],[3,13,13,14,27,[[120,5,5,14,19],[121,1,1,19,20],[129,1,1,20,21],[132,1,1,21,22],[133,1,1,22,23],[134,2,2,23,25],[137,1,1,25,26],[151,1,1,26,27]]],[4,2,2,27,29,[[153,1,1,27,28],[156,1,1,28,29]]],[6,2,1,29,30,[[217,2,1,29,30]]],[8,3,3,30,33,[[237,1,1,30,31],[238,1,1,31,32],[257,1,1,32,33]]],[10,1,1,33,34,[[299,1,1,33,34]]],[13,3,3,34,37,[[373,1,1,34,35],[396,1,1,35,36],[397,1,1,36,37]]],[14,3,3,37,40,[[405,1,1,37,38],[410,1,1,38,39],[411,1,1,39,40]]],[17,2,2,40,42,[[475,2,2,40,42]]],[18,8,8,42,50,[[506,1,1,42,43],[530,1,1,43,44],[540,1,1,44,45],[548,1,1,45,46],[592,1,1,46,47],[596,1,1,47,48],[605,1,1,48,49],[612,1,1,49,50]]],[19,3,3,50,53,[[628,1,1,50,51],[643,1,1,51,52],[648,1,1,52,53]]],[20,1,1,53,54,[[668,1,1,53,54]]],[22,12,11,54,65,[[679,1,1,54,55],[682,1,1,55,56],[685,1,1,56,57],[687,1,1,57,58],[691,2,1,58,59],[693,1,1,59,60],[694,1,1,60,61],[697,1,1,61,62],[721,1,1,62,63],[733,1,1,63,64],[734,1,1,64,65]]],[23,14,12,65,77,[[749,1,1,65,66],[750,2,1,66,67],[752,3,2,67,69],[759,1,1,69,70],[762,1,1,70,71],[763,1,1,71,72],[764,1,1,72,73],[767,1,1,73,74],[774,1,1,74,75],[793,1,1,75,76],[794,1,1,76,77]]],[25,3,3,77,80,[[817,3,3,77,80]]],[26,1,1,80,81,[[861,1,1,80,81]]],[27,1,1,81,82,[[865,1,1,81,82]]],[29,1,1,82,83,[[886,1,1,82,83]]],[35,1,1,83,84,[[907,1,1,83,84]]],[37,2,2,84,86,[[915,1,1,84,85],[924,1,1,85,86]]],[38,1,1,86,87,[[926,1,1,86,87]]]],[93,863,865,1896,2237,2395,2396,2480,2552,2555,2568,2659,2867,3023,3773,3778,3782,3786,3790,3794,4077,4197,4250,4268,4270,4348,4860,4914,5008,6699,7276,7287,7794,9059,11345,11844,11870,12102,12235,12241,13875,13876,14317,14722,14850,14994,15838,16058,16127,16193,16419,16845,16989,17496,17677,17736,17804,17846,17921,17963,17976,18021,18512,18741,18759,19064,19102,19159,19163,19325,19400,19415,19429,19501,19683,20144,20179,20777,20787,20806,22082,22136,22489,22820,22939,23084,23120]]],["open",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17841]]],["over",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[683]]],["place",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18249]]],["thing",[19,18,[[0,6,6,0,6,[[0,3,3,0,3],[5,1,1,3,4],[6,1,1,4,5],[7,1,1,5,6]]],[1,1,1,6,7,[[69,1,1,6,7]]],[2,4,3,7,10,[[104,3,2,7,9],[111,1,1,9,10]]],[3,2,2,10,12,[[134,2,2,10,12]]],[4,1,1,12,13,[[156,1,1,12,13]]],[11,1,1,13,14,[[316,1,1,13,14]]],[18,1,1,14,15,[[546,1,1,14,15]]],[22,1,1,15,16,[[697,1,1,15,16]]],[25,2,2,16,18,[[845,1,1,16,17],[848,1,1,17,18]]]],[24,29,30,154,167,204,2068,3178,3188,3373,4271,4272,5022,9605,14969,18011,21630,21688]]],["things",[9,9,[[0,2,2,0,2,[[8,1,1,0,1],[23,1,1,1,2]]],[3,1,1,2,3,[[117,1,1,2,3]]],[11,1,1,3,4,[[326,1,1,3,4]]],[12,1,1,4,5,[[366,1,1,4,5]]],[13,1,1,5,6,[[389,1,1,5,6]]],[22,1,1,6,7,[[712,1,1,6,7]]],[23,2,2,7,9,[[765,1,1,7,8],[795,1,1,8,9]]]],[208,592,3654,9899,11178,11664,18304,19454,20231]]],["thou",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11227]]],["throughout",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2534]]],["to",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9024]]],["utterly",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22699]]],["what",[3,2,[[9,1,1,0,1,[[281,1,1,0,1]]],[13,2,1,1,2,[[372,2,1,1,2]]]],[8424,11311]]],["whatsoever",[27,24,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,3,3,1,4,[[62,1,1,1,2],[78,1,1,2,3],[79,1,1,3,4]]],[2,10,9,4,13,[[94,1,1,4,5],[100,4,3,5,8],[102,1,1,8,9],[110,1,1,9,10],[111,1,1,10,11],[112,2,2,11,13]]],[3,1,1,13,14,[[146,1,1,13,14]]],[4,5,5,14,19,[[154,1,1,14,15],[164,4,4,15,19]]],[6,1,1,19,20,[[220,1,1,19,20]]],[8,1,1,20,21,[[249,1,1,20,21]]],[10,3,2,21,23,[[298,2,1,21,22],[310,1,1,22,23]]],[13,2,1,23,24,[[372,2,1,23,24]]]],[202,1869,2373,2411,2833,3024,3029,3039,3110,3363,3374,3431,3432,4660,4975,5248,5255,5260,5261,6826,7544,9022,9414,11310]]],["whensoever",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[871]]],["where",[1,1,[[0,1,1,0,1,[[12,1,1,0,1]]]],[328]]],["wheresoever",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3064]]],["which",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1970]]],["whole",[129,123,[[0,9,9,0,9,[[1,3,3,0,3],[6,1,1,3,4],[7,1,1,4,5],[8,1,1,5,6],[10,2,2,6,8],[12,1,1,8,9]]],[1,7,7,9,16,[[59,1,1,9,10],[61,1,1,10,11],[65,3,3,11,14],[68,1,1,14,15],[78,1,1,15,16]]],[2,4,4,16,20,[[93,2,2,16,18],[97,1,1,18,19],[99,1,1,19,20]]],[3,6,6,20,26,[[119,1,1,20,21],[124,1,1,21,22],[130,2,2,22,24],[136,2,2,24,26]]],[4,3,3,26,29,[[154,1,1,26,27],[156,1,1,27,28],[181,1,1,28,29]]],[5,5,5,29,34,[[197,1,1,29,30],[204,1,1,30,31],[208,3,3,31,34]]],[6,1,1,34,35,[[231,1,1,34,35]]],[9,4,4,35,39,[[267,1,1,35,36],[269,1,1,36,37],[272,1,1,37,38],[280,1,1,38,39]]],[10,3,2,39,41,[[296,2,1,39,40],[301,1,1,40,41]]],[11,1,1,41,42,[[321,1,1,41,42]]],[13,6,6,42,48,[[372,1,1,42,43],[381,1,1,43,44],[382,1,1,44,45],[392,1,1,45,46],[396,1,1,46,47],[399,1,1,47,48]]],[14,1,1,48,49,[[404,1,1,48,49]]],[15,1,1,49,50,[[419,1,1,49,50]]],[16,1,1,50,51,[[428,1,1,50,51]]],[17,4,4,51,55,[[463,1,1,51,52],[469,1,1,52,53],[472,1,1,53,54],[476,1,1,54,55]]],[18,13,13,55,68,[[486,1,1,55,56],[525,1,1,56,57],[549,1,1,57,58],[574,1,1,58,59],[582,1,1,59,60],[588,1,1,60,61],[596,6,6,61,67],[615,1,1,67,68]]],[19,1,1,68,69,[[643,1,1,68,69]]],[20,2,1,69,70,[[670,2,1,69,70]]],[22,14,12,70,82,[[679,2,1,70,71],[681,2,1,71,72],[684,1,1,72,73],[688,1,1,73,74],[691,1,1,74,75],[692,4,4,75,79],[699,1,1,79,80],[706,1,1,80,81],[732,1,1,81,82]]],[23,22,20,82,102,[[745,1,1,82,83],[747,1,1,83,84],[748,3,3,84,87],[751,1,1,87,88],[752,1,1,88,89],[756,1,1,89,90],[757,2,1,90,91],[759,1,1,91,92],[768,1,1,92,93],[769,1,1,93,94],[775,1,1,94,95],[776,2,1,95,96],[779,1,1,96,97],[781,1,1,97,98],[789,1,1,98,99],[794,1,1,99,100],[795,2,2,100,102]]],[24,1,1,102,103,[[798,1,1,102,103]]],[25,10,10,103,113,[[806,1,1,103,104],[808,1,1,104,105],[811,1,1,105,106],[833,1,1,106,107],[836,1,1,107,108],[838,1,1,108,109],[840,1,1,109,110],[844,2,2,110,112],[846,1,1,112,113]]],[26,3,3,113,116,[[857,1,1,113,114],[858,1,1,114,115],[860,1,1,115,116]]],[29,1,1,116,117,[[881,1,1,116,117]]],[32,1,1,117,118,[[896,1,1,117,118]]],[35,1,1,118,119,[[906,1,1,118,119]]],[37,3,3,119,122,[[914,2,2,119,121],[915,1,1,121,122]]],[38,1,1,122,123,[[927,1,1,122,123]]]],[36,41,43,178,192,224,267,270,327,1792,1822,1949,1950,1957,2044,2354,2807,2808,2938,2983,3699,3948,4110,4137,4312,4333,4963,5023,5702,6130,6294,6438,6442,6444,7115,8031,8100,8176,8363,8918,9142,9764,11285,11505,11518,11744,11850,11916,12091,12486,12753,13528,13696,13772,13899,14022,14636,15019,15483,15622,15794,15900,15908,15932,15956,15967,16043,16232,16873,17536,17659,17708,17772,17862,17911,17935,17954,17957,17959,18043,18186,18728,18964,19012,19047,19054,19056,19134,19169,19260,19277,19325,19531,19545,19731,19772,19826,19884,20044,20189,20253,20259,20347,20556,20590,20645,21252,21358,21408,21473,21583,21584,21636,21966,22000,22053,22396,22633,22805,22932,22936,22939,23129]]],["wholly",[9,9,[[12,1,1,0,1,[[365,1,1,0,1]]],[17,1,1,1,2,[[456,1,1,1,2]]],[22,1,1,2,3,[[700,1,1,2,3]]],[23,3,3,3,6,[[746,1,1,3,4],[750,1,1,4,5],[794,1,1,5,6]]],[25,1,1,6,7,[[812,1,1,6,7]]],[29,2,2,7,9,[[886,1,1,7,8],[887,1,1,8,9]]]],[11164,13378,18053,18986,19095,20179,20670,22489,22500]]],["whoso",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3024]]],["whosoever",[30,29,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,7,7,1,8,[[61,2,2,1,3],[68,1,1,3,4],[80,2,2,4,6],[84,2,2,6,8]]],[2,10,10,8,18,[[96,1,1,8,9],[100,3,3,9,12],[104,5,5,12,17],[106,1,1,17,18]]],[3,3,2,18,20,[[121,1,1,18,19],[147,2,1,19,20]]],[5,1,1,20,21,[[206,1,1,20,21]]],[11,1,1,21,22,[[333,1,1,21,22]]],[12,1,1,22,23,[[363,1,1,22,23]]],[13,1,1,23,24,[[379,1,1,23,24]]],[14,1,1,24,25,[[403,1,1,24,25]]],[19,2,2,25,27,[[633,1,1,25,26],[647,1,1,26,27]]],[22,1,1,27,28,[[737,1,1,27,28]]],[23,1,1,28,29,[[763,1,1,28,29]]]],[94,1831,1835,2038,2434,2435,2533,2536,2904,3021,3022,3028,3178,3187,3189,3190,3195,3249,3794,4683,6381,10131,11105,11462,12020,16569,16955,18808,19410]]],["withal",[1,1,[[10,1,1,0,1,[[309,1,1,0,1]]]],[9388]]]]},{"k":"H3606","v":[["*",[104,75,[[14,18,15,0,15,[[406,2,2,0,2],[407,1,1,2,3],[408,3,3,3,6],[409,12,9,6,15]]],[26,86,60,15,75,[[851,21,13,15,28],[852,15,10,28,38],[853,14,11,38,49],[854,7,6,49,55],[855,21,14,55,69],[856,8,6,69,75]]]],[12124,12130,12141,12162,12163,12168,12186,12187,12189,12190,12194,12196,12197,12198,12199,21766,21768,21770,21782,21788,21793,21796,21797,21798,21799,21802,21803,21806,21809,21810,21812,21814,21815,21817,21822,21829,21835,21836,21838,21843,21846,21848,21849,21855,21857,21858,21865,21872,21874,21881,21882,21886,21893,21896,21897,21906,21908,21909,21910,21912,21914,21915,21917,21920,21927,21928,21929,21930,21931,21940,21947,21949,21952,21956,21960]]],["+",[36,34,[[14,7,7,0,7,[[406,1,1,0,1],[408,1,1,1,2],[409,5,5,2,7]]],[26,29,27,7,34,[[851,10,9,7,16],[852,4,4,16,20],[853,2,2,20,22],[854,3,3,22,25],[855,10,9,25,34]]]],[12124,12162,12187,12190,12194,12196,12199,21766,21768,21770,21782,21793,21796,21798,21799,21803,21814,21815,21829,21836,21846,21855,21881,21886,21896,21908,21909,21912,21914,21915,21920,21927,21928,21929]]],["All",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21912]]],["all",[48,40,[[14,10,8,0,8,[[406,1,1,0,1],[407,1,1,1,2],[408,2,2,2,4],[409,6,4,4,8]]],[26,38,32,8,40,[[851,7,6,8,14],[852,8,6,14,20],[853,11,9,20,29],[854,4,4,29,33],[855,2,1,33,34],[856,6,6,34,40]]]],[12130,12141,12163,12168,12186,12189,12194,12198,21770,21796,21797,21798,21802,21806,21809,21810,21812,21814,21817,21822,21838,21843,21848,21849,21855,21857,21858,21872,21874,21882,21893,21896,21897,21930,21940,21947,21949,21952,21956,21960]]],["any",[8,8,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,7,7,1,8,[[851,2,2,1,3],[852,1,1,3,4],[855,4,4,4,8]]]],[12197,21768,21788,21835,21909,21910,21912,21917]]],["every",[4,4,[[26,4,4,0,4,[[852,2,2,0,2],[855,2,2,2,4]]]],[21817,21836,21917,21931]]],["this",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21865]]],["whole",[6,6,[[26,6,6,0,6,[[851,2,2,0,2],[855,2,2,2,4],[856,2,2,4,6]]]],[21793,21806,21906,21908,21956,21960]]]]},{"k":"H3607","v":[["*",[18,17,[[0,2,2,0,2,[[7,1,1,0,1],[22,1,1,1,2]]],[1,1,1,2,3,[[85,1,1,2,3]]],[3,1,1,3,4,[[127,1,1,3,4]]],[8,2,2,4,6,[[241,1,1,4,5],[260,1,1,5,6]]],[18,4,4,6,10,[[517,2,2,6,8],[565,1,1,8,9],[596,1,1,9,10]]],[20,1,1,10,11,[[666,1,1,10,11]]],[22,1,1,11,12,[[721,1,1,11,12]]],[23,2,2,12,14,[[776,2,2,12,14]]],[25,1,1,14,15,[[832,1,1,14,15]]],[26,1,1,15,16,[[858,1,1,15,16]]],[36,2,1,16,17,[[909,2,1,16,17]]]],[185,577,2572,4052,7341,7894,14534,14536,15316,15999,17466,18511,19733,19734,21245,22012,22850]]],["+",[2,2,[[20,1,1,0,1,[[666,1,1,0,1]]],[22,1,1,1,2,[[721,1,1,1,2]]]],[17466,18511]]],["Withhold",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14536]]],["finish",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22012]]],["forbid",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4052]]],["kept",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7894]]],["refrained",[2,2,[[18,2,2,0,2,[[517,1,1,0,1],[596,1,1,1,2]]]],[14534,15999]]],["restrained",[2,2,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,1,1,1,2,[[85,1,1,1,2]]]],[185,2572]]],["stayed",[3,2,[[25,1,1,0,1,[[832,1,1,0,1]]],[36,2,1,1,2,[[909,2,1,1,2]]]],[21245,22850]]],["up",[4,4,[[8,1,1,0,1,[[241,1,1,0,1]]],[18,1,1,1,2,[[565,1,1,1,2]]],[23,2,2,2,4,[[776,2,2,2,4]]]],[7341,15316,19733,19734]]],["withhold",[1,1,[[0,1,1,0,1,[[22,1,1,0,1]]]],[577]]]]},{"k":"H3608","v":[["*",[10,10,[[10,1,1,0,1,[[312,1,1,0,1]]],[11,3,3,1,4,[[329,1,1,1,2],[337,2,2,2,4]]],[13,1,1,4,5,[[384,1,1,4,5]]],[22,2,2,5,7,[[720,2,2,5,7]]],[23,3,3,7,10,[[781,2,2,7,9],[796,1,1,9,10]]]],[9507,9987,10249,10251,11568,18487,18502,19889,19892,20309]]],["+",[6,6,[[10,1,1,0,1,[[312,1,1,0,1]]],[11,2,2,1,3,[[329,1,1,1,2],[337,1,1,2,3]]],[13,1,1,3,4,[[384,1,1,3,4]]],[23,2,2,4,6,[[781,2,2,4,6]]]],[9507,9987,10249,11568,19889,19892]]],["prison",[4,4,[[11,1,1,0,1,[[337,1,1,0,1]]],[22,2,2,1,3,[[720,2,2,1,3]]],[23,1,1,3,4,[[796,1,1,3,4]]]],[10251,18487,18502,20309]]]]},{"k":"H3609","v":[["Chileab",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8084]]]]},{"k":"H3610","v":[["*",[4,2,[[2,3,1,0,1,[[108,3,1,0,1]]],[4,1,1,1,2,[[174,1,1,1,2]]]],[3300,5479]]],["kind",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3300]]],["mingled",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3300]]],["seed",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3300]]],["seeds",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5479]]]]},{"k":"H3611","v":[["*",[32,31,[[1,2,2,0,2,[[60,1,1,0,1],[71,1,1,1,2]]],[4,1,1,2,3,[[175,1,1,2,3]]],[6,1,1,3,4,[[217,1,1,3,4]]],[8,2,2,4,6,[[252,1,1,4,5],[259,1,1,5,6]]],[9,3,3,6,9,[[269,1,1,6,7],[275,1,1,7,8],[282,1,1,8,9]]],[10,7,6,9,15,[[304,1,1,9,10],[306,1,1,10,11],[311,4,3,11,14],[312,1,1,14,15]]],[11,3,3,15,18,[[320,1,1,15,16],[321,2,2,16,18]]],[17,1,1,18,19,[[465,1,1,18,19]]],[18,5,5,19,24,[[499,2,2,19,21],[536,2,2,21,23],[545,1,1,23,24]]],[19,2,2,24,26,[[653,2,2,24,26]]],[20,1,1,26,27,[[667,1,1,26,27]]],[22,3,3,27,30,[[734,2,2,27,29],[744,1,1,29,30]]],[23,1,1,30,31,[[759,1,1,30,31]]]],[1813,2144,5518,6699,7661,7853,8089,8235,8435,9229,9287,9470,9474,9475,9518,9740,9766,9792,13558,14220,14224,14796,14804,14923,17152,17158,17479,18763,18764,18925,19318]]],["+",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18925]]],["dog",[14,14,[[1,1,1,0,1,[[60,1,1,0,1]]],[4,1,1,1,2,[[175,1,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]],[8,2,2,3,5,[[252,1,1,3,4],[259,1,1,4,5]]],[9,2,2,5,7,[[275,1,1,5,6],[282,1,1,6,7]]],[11,1,1,7,8,[[320,1,1,7,8]]],[18,3,3,8,11,[[499,1,1,8,9],[536,2,2,9,11]]],[19,2,2,11,13,[[653,2,2,11,13]]],[20,1,1,13,14,[[667,1,1,13,14]]]],[1813,5518,6699,7661,7853,8235,8435,9740,14224,14796,14804,17152,17158,17479]]],["dog's",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8089]]],["dogs",[16,15,[[1,1,1,0,1,[[71,1,1,0,1]]],[10,7,6,1,7,[[304,1,1,1,2],[306,1,1,2,3],[311,4,3,3,6],[312,1,1,6,7]]],[11,2,2,7,9,[[321,2,2,7,9]]],[17,1,1,9,10,[[465,1,1,9,10]]],[18,2,2,10,12,[[499,1,1,10,11],[545,1,1,11,12]]],[22,2,2,12,14,[[734,2,2,12,14]]],[23,1,1,14,15,[[759,1,1,14,15]]]],[2144,9229,9287,9470,9474,9475,9518,9766,9792,13558,14220,14923,18763,18764,19318]]]]},{"k":"H3612","v":[["*",[36,36,[[3,9,9,0,9,[[129,2,2,0,2],[130,4,4,2,6],[142,1,1,6,7],[148,1,1,7,8],[150,1,1,8,9]]],[4,1,1,9,10,[[153,1,1,9,10]]],[5,9,9,10,19,[[200,3,3,10,13],[201,5,5,13,18],[207,1,1,18,19]]],[6,6,6,19,25,[[211,5,5,19,24],[213,1,1,24,25]]],[8,2,2,25,27,[[260,1,1,25,26],[265,1,1,26,27]]],[12,9,9,27,36,[[339,7,7,27,34],[341,1,1,34,35],[343,1,1,35,36]]]],[4081,4105,4114,4132,4138,4146,4554,4730,4835,4928,6193,6200,6201,6215,6216,6218,6219,6220,6393,6521,6522,6523,6524,6529,6577,7864,7992,10324,10325,10348,10352,10354,10355,10356,10400,10510]]],["Caleb",[32,32,[[3,9,9,0,9,[[129,2,2,0,2],[130,4,4,2,6],[142,1,1,6,7],[148,1,1,7,8],[150,1,1,8,9]]],[4,1,1,9,10,[[153,1,1,9,10]]],[5,9,9,10,19,[[200,3,3,10,13],[201,5,5,13,18],[207,1,1,18,19]]],[6,4,4,19,23,[[211,4,4,19,23]]],[8,2,2,23,25,[[260,1,1,23,24],[265,1,1,24,25]]],[12,7,7,25,32,[[339,5,5,25,30],[341,1,1,30,31],[343,1,1,31,32]]]],[4081,4105,4114,4132,4138,4146,4554,4730,4835,4928,6193,6200,6201,6215,6216,6218,6219,6220,6393,6521,6523,6524,6529,7864,7992,10324,10325,10348,10355,10356,10400,10510]]],["Caleb's",[4,4,[[6,2,2,0,2,[[211,1,1,0,1],[213,1,1,1,2]]],[12,2,2,2,4,[[339,2,2,2,4]]]],[6522,6577,10352,10354]]]]},{"k":"H3613","v":[["Calebephratah",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10330]]]]},{"k":"H3614","v":[]},{"k":"H3615","v":[["*",[207,201,[[0,17,16,0,16,[[1,2,2,0,2],[5,1,1,2,3],[16,1,1,3,4],[17,1,1,4,5],[20,1,1,5,6],[23,5,4,6,10],[26,1,1,10,11],[40,2,2,11,13],[42,1,1,13,14],[43,1,1,14,15],[48,1,1,15,16]]],[1,10,10,16,26,[[54,2,2,16,18],[80,1,1,18,19],[81,2,2,19,21],[82,2,2,21,23],[83,1,1,23,24],[88,1,1,24,25],[89,1,1,25,26]]],[2,5,5,26,31,[[105,1,1,26,27],[108,1,1,27,28],[112,1,1,28,29],[115,2,2,29,31]]],[3,7,7,31,38,[[120,1,1,31,32],[123,1,1,32,33],[132,3,3,33,36],[133,1,1,36,37],[141,1,1,37,38]]],[4,7,7,38,45,[[159,1,1,38,39],[172,1,1,39,40],[178,1,1,40,41],[180,1,1,41,42],[183,1,1,42,43],[184,2,2,43,45]]],[5,5,5,45,50,[[194,1,1,45,46],[196,1,1,46,47],[205,2,2,47,49],[210,1,1,49,50]]],[6,2,2,50,52,[[213,1,1,50,51],[225,1,1,51,52]]],[7,4,4,52,56,[[233,2,2,52,54],[234,2,2,54,56]]],[8,11,11,56,67,[[237,1,1,56,57],[238,1,1,57,58],[245,1,1,58,59],[248,1,1,59,60],[250,1,1,60,61],[253,1,1,61,62],[255,3,3,62,65],[259,1,1,65,66],[260,1,1,66,67]]],[9,7,7,67,74,[[272,1,1,67,68],[277,1,1,68,69],[279,2,2,69,71],[287,1,1,71,72],[288,2,2,72,74]]],[10,12,12,74,86,[[291,1,1,74,75],[293,1,1,75,76],[296,3,3,76,79],[297,2,2,79,81],[298,1,1,81,82],[299,1,1,82,83],[307,2,2,83,85],[312,1,1,85,86]]],[11,3,3,86,89,[[322,1,1,86,87],[325,2,2,87,89]]],[12,3,3,89,92,[[353,1,1,89,90],[364,1,1,90,91],[365,1,1,91,92]]],[13,17,16,92,108,[[370,1,1,92,93],[373,2,2,93,95],[374,2,2,95,97],[384,1,1,97,98],[386,1,1,98,99],[390,2,2,99,101],[395,4,4,101,105],[397,3,2,105,107],[402,1,1,107,108]]],[14,4,4,108,112,[[403,1,1,108,109],[411,2,2,109,111],[412,1,1,111,112]]],[15,1,1,112,113,[[416,1,1,112,113]]],[16,1,1,113,114,[[432,1,1,113,114]]],[17,11,11,114,125,[[439,1,1,114,115],[442,2,2,115,117],[444,1,1,117,118],[446,1,1,118,119],[452,1,1,119,120],[454,1,1,120,121],[456,1,1,121,122],[466,1,1,122,123],[468,1,1,123,124],[471,1,1,124,125]]],[18,23,21,125,146,[[495,1,1,125,126],[508,1,1,126,127],[514,2,1,127,128],[516,1,1,128,129],[536,2,1,129,130],[546,1,1,130,131],[548,2,2,131,133],[549,1,1,133,134],[550,1,1,134,135],[551,1,1,135,136],[555,1,1,136,137],[561,1,1,137,138],[567,2,2,138,140],[579,1,1,140,141],[596,4,4,141,145],[620,1,1,145,146]]],[19,3,3,146,149,[[632,1,1,146,147],[643,1,1,147,148],[649,1,1,148,149]]],[22,12,12,149,161,[[679,1,1,149,150],[688,2,2,150,152],[693,1,1,152,153],[694,1,1,153,154],[699,1,1,154,155],[702,1,1,155,156],[705,1,1,156,157],[707,1,1,157,158],[709,1,1,158,159],[710,1,1,159,160],[727,1,1,160,161]]],[23,13,13,161,174,[[749,1,1,161,162],[752,1,1,162,163],[753,1,1,163,164],[754,1,1,164,165],[758,2,2,165,167],[760,1,1,167,168],[764,1,1,168,169],[770,1,1,169,170],[787,1,1,170,171],[788,1,1,171,172],[793,1,1,172,173],[795,1,1,173,174]]],[24,5,5,174,179,[[798,2,2,174,176],[799,1,1,176,177],[800,2,2,177,179]]],[25,16,15,179,194,[[805,2,2,179,181],[806,3,2,181,183],[807,1,1,183,184],[808,1,1,184,185],[814,2,2,185,187],[821,3,3,187,190],[823,1,1,190,191],[843,1,1,191,192],[844,2,2,192,194]]],[26,4,3,194,197,[[860,2,2,194,196],[861,2,1,196,197]]],[27,1,1,197,198,[[872,1,1,197,198]]],[29,1,1,198,199,[[885,1,1,198,199]]],[37,1,1,199,200,[[915,1,1,199,200]]],[38,1,1,200,201,[[927,1,1,200,201]]]],[31,32,153,419,457,528,606,610,613,636,757,1225,1248,1292,1336,1506,1645,1646,2438,2448,2450,2476,2478,2529,2696,2740,3221,3290,3424,3540,3568,3758,3851,4215,4225,4239,4254,4482,5133,5436,5578,5632,5752,5781,5803,6026,6084,6370,6372,6496,6586,6946,7170,7172,7175,7190,7273,7288,7431,7495,7578,7677,7737,7739,7763,7855,7878,8175,8278,8353,8356,8585,8640,8641,8758,8817,8905,8910,8934,8935,8974,9039,9052,9331,9333,9491,9818,9888,9890,10822,11133,11163,11257,11325,11335,11354,11362,11552,11610,11687,11691,11808,11819,11820,11825,11855,11861,12015,12017,12238,12251,12269,12361,12814,12939,13014,13017,13073,13128,13265,13324,13368,13604,13671,13747,14155,14341,14470,14522,14803,14938,14985,14989,15020,15046,15059,15146,15261,15385,15387,15524,15979,15980,15985,16021,16300,16528,16870,17023,17682,17868,17875,17966,17973,18051,18108,18161,18213,18253,18269,18640,19061,19173,19191,19226,19299,19305,19340,19440,19580,19998,20037,20164,20275,20343,20354,20376,20431,20437,20535,20537,20558,20559,20575,20585,20722,20723,20903,20908,20916,21007,21567,21595,21599,22052,22072,22088,22246,22466,22940,23126]]],["+",[13,13,[[0,2,2,0,2,[[40,1,1,0,1],[42,1,1,1,2]]],[1,1,1,2,3,[[89,1,1,2,3]]],[2,1,1,3,4,[[108,1,1,3,4]]],[7,1,1,4,5,[[233,1,1,4,5]]],[8,1,1,5,6,[[237,1,1,5,6]]],[10,1,1,6,7,[[297,1,1,6,7]]],[13,2,2,7,9,[[370,1,1,7,8],[373,1,1,8,9]]],[19,1,1,9,10,[[643,1,1,9,10]]],[24,1,1,10,11,[[800,1,1,10,11]]],[25,2,2,11,13,[[805,1,1,11,12],[814,1,1,12,13]]]],[1225,1292,2740,3290,7170,7273,8935,11257,11335,16870,20431,20535,20723]]],["Consume",[1,1,[[18,1,1,0,1,[[536,1,1,0,1]]]],[14803]]],["Fulfil",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1645]]],["accomplish",[4,4,[[25,4,4,0,4,[[807,1,1,0,1],[808,1,1,1,2],[821,2,2,2,4]]]],[20575,20585,20903,20916]]],["accomplished",[5,4,[[13,1,1,0,1,[[402,1,1,0,1]]],[25,2,1,1,2,[[806,2,1,1,2]]],[26,2,2,2,4,[[860,1,1,2,3],[861,1,1,3,4]]]],[12015,20559,22072,22088]]],["away",[3,3,[[3,1,1,0,1,[[133,1,1,0,1]]],[17,1,1,1,2,[[468,1,1,1,2]]],[18,1,1,2,3,[[514,1,1,2,3]]]],[4254,13671,14470]]],["cease",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17875]]],["ceaseth",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17973]]],["consume",[18,18,[[1,4,4,0,4,[[81,2,2,0,2],[82,2,2,2,4]]],[2,1,1,4,5,[[115,1,1,4,5]]],[3,2,2,5,7,[[132,2,2,5,7]]],[4,1,1,7,8,[[159,1,1,7,8]]],[5,1,1,8,9,[[210,1,1,8,9]]],[18,3,3,9,12,[[514,1,1,9,10],[536,1,1,10,11],[555,1,1,11,12]]],[22,2,2,12,14,[[688,1,1,12,13],[705,1,1,13,14]]],[23,1,1,14,15,[[758,1,1,14,15]]],[25,1,1,15,16,[[821,1,1,15,16]]],[27,1,1,16,17,[[872,1,1,16,17]]],[37,1,1,17,18,[[915,1,1,17,18]]]],[2448,2450,2476,2478,3540,4215,4239,5133,6496,14470,14803,15146,17868,18161,19305,20908,22246,22940]]],["consumed",[36,36,[[3,1,1,0,1,[[141,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[8,1,1,2,3,[[250,1,1,2,3]]],[9,3,3,3,6,[[287,1,1,3,4],[288,2,2,4,6]]],[10,1,1,6,7,[[312,1,1,6,7]]],[11,2,2,7,9,[[325,2,2,7,9]]],[13,2,2,9,11,[[374,1,1,9,10],[384,1,1,10,11]]],[14,1,1,11,12,[[411,1,1,11,12]]],[17,3,3,12,15,[[439,1,1,12,13],[442,1,1,13,14],[454,1,1,14,15]]],[18,6,6,15,21,[[495,1,1,15,16],[516,1,1,16,17],[548,1,1,17,18],[567,1,1,18,19],[579,1,1,19,20],[596,1,1,20,21]]],[19,1,1,21,22,[[632,1,1,21,22]]],[22,2,2,22,24,[[679,1,1,22,23],[707,1,1,23,24]]],[23,6,6,24,30,[[749,1,1,24,25],[753,1,1,25,26],[754,1,1,26,27],[760,1,1,27,28],[764,1,1,28,29],[793,1,1,29,30]]],[24,1,1,30,31,[[798,1,1,30,31]]],[25,3,3,31,34,[[806,1,1,31,32],[814,1,1,32,33],[823,1,1,33,34]]],[26,1,1,34,35,[[860,1,1,34,35]]],[38,1,1,35,36,[[927,1,1,35,36]]]],[4482,5632,7578,8585,8640,8641,9491,9888,9890,11354,11552,12251,12939,13017,13324,14155,14522,14989,15385,15524,15985,16528,17682,18213,19061,19191,19226,19340,19440,20164,20354,20558,20722,21007,22052,23126]]],["destroyed",[1,1,[[13,1,1,0,1,[[397,1,1,0,1]]]],[11855]]],["destroyeth",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13073]]],["determined",[5,5,[[8,4,4,0,4,[[255,3,3,0,3],[260,1,1,3,4]]],[16,1,1,4,5,[[432,1,1,4,5]]]],[7737,7739,7763,7878,12814]]],["done",[9,8,[[0,5,4,0,4,[[23,5,4,0,4]]],[1,1,1,4,5,[[83,1,1,4,5]]],[7,1,1,5,6,[[234,1,1,5,6]]],[14,1,1,6,7,[[411,1,1,6,7]]],[22,1,1,7,8,[[702,1,1,7,8]]]],[606,610,613,636,2529,7175,12238,18108]]],["end",[45,45,[[0,2,2,0,2,[[26,1,1,0,1],[48,1,1,1,2]]],[1,1,1,2,3,[[80,1,1,2,3]]],[2,1,1,3,4,[[105,1,1,3,4]]],[3,2,2,4,6,[[120,1,1,4,5],[132,1,1,5,6]]],[4,4,4,6,10,[[172,1,1,6,7],[178,1,1,7,8],[183,1,1,8,9],[184,1,1,9,10]]],[5,4,4,10,14,[[194,1,1,10,11],[196,1,1,11,12],[205,2,2,12,14]]],[6,2,2,14,16,[[213,1,1,14,15],[225,1,1,15,16]]],[7,1,1,16,17,[[233,1,1,16,17]]],[8,5,5,17,22,[[238,1,1,17,18],[245,1,1,18,19],[248,1,1,19,20],[253,1,1,20,21],[259,1,1,21,22]]],[9,3,3,22,25,[[272,1,1,22,23],[277,1,1,23,24],[279,1,1,24,25]]],[10,4,4,25,29,[[291,1,1,25,26],[293,1,1,26,27],[297,1,1,27,28],[298,1,1,28,29]]],[11,1,1,29,30,[[322,1,1,29,30]]],[12,1,1,30,31,[[353,1,1,30,31]]],[13,5,5,31,36,[[373,1,1,31,32],[386,1,1,32,33],[390,1,1,33,34],[395,2,2,34,36]]],[14,1,1,36,37,[[412,1,1,36,37]]],[15,1,1,37,38,[[416,1,1,37,38]]],[23,4,4,38,42,[[770,1,1,38,39],[787,1,1,39,40],[788,1,1,40,41],[795,1,1,41,42]]],[25,2,2,42,44,[[843,1,1,42,43],[844,1,1,43,44]]],[29,1,1,44,45,[[885,1,1,44,45]]]],[757,1506,2438,3221,3758,4225,5436,5578,5752,5803,6026,6084,6370,6372,6586,6946,7172,7288,7431,7495,7677,7855,8175,8278,8353,8758,8817,8974,9039,9818,10822,11325,11610,11687,11808,11820,12269,12361,19580,19998,20037,20275,21567,21595,22466]]],["ended",[6,6,[[0,2,2,0,2,[[1,1,1,0,1],[40,1,1,1,2]]],[13,1,1,2,3,[[395,1,1,2,3]]],[18,1,1,3,4,[[549,1,1,3,4]]],[23,1,1,4,5,[[752,1,1,4,5]]],[25,1,1,5,6,[[805,1,1,5,6]]]],[32,1248,11825,15020,19173,20537]]],["expired",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21599]]],["fail",[13,13,[[17,3,3,0,3,[[446,1,1,0,1],[452,1,1,1,2],[466,1,1,2,3]]],[18,3,3,3,6,[[546,1,1,3,4],[596,2,2,4,6]]],[19,1,1,6,7,[[649,1,1,6,7]]],[22,3,3,7,10,[[699,1,1,7,8],[709,1,1,8,9],[710,1,1,9,10]]],[23,1,1,10,11,[[758,1,1,10,11]]],[24,2,2,11,13,[[798,1,1,11,12],[799,1,1,12,13]]]],[13128,13265,13604,14938,15980,16021,17023,18051,18253,18269,19299,20343,20376]]],["failed",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20437]]],["faileth",[4,4,[[18,3,3,0,3,[[548,1,1,0,1],[550,1,1,1,2],[620,1,1,2,3]]],[22,1,1,3,4,[[693,1,1,3,4]]]],[14985,15046,16300,17966]]],["fainteth",[2,2,[[18,2,2,0,2,[[561,1,1,0,1],[596,1,1,1,2]]]],[15261,15979]]],["finish",[1,1,[[0,1,1,0,1,[[5,1,1,0,1]]]],[153]]],["finished",[15,15,[[0,1,1,0,1,[[1,1,1,0,1]]],[1,1,1,1,2,[[88,1,1,1,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[10,4,4,3,7,[[296,3,3,3,6],[299,1,1,6,7]]],[12,2,2,7,9,[[364,1,1,7,8],[365,1,1,8,9]]],[13,5,5,9,14,[[374,1,1,9,10],[390,1,1,10,11],[395,1,1,11,12],[397,2,2,12,14]]],[26,1,1,14,15,[[861,1,1,14,15]]]],[31,2696,7190,8905,8910,8934,9052,11133,11163,11362,11691,11819,11855,11861,22088]]],["fulfilled",[2,2,[[1,1,1,0,1,[[54,1,1,0,1]]],[14,1,1,1,2,[[403,1,1,1,2]]]],[1646,12017]]],["fully",[1,1,[[3,1,1,0,1,[[123,1,1,0,1]]]],[3851]]],["left",[2,2,[[0,2,2,0,2,[[17,1,1,0,1],[43,1,1,1,2]]]],[457,1336]]],["longed",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8356]]],["off",[1,1,[[0,1,1,0,1,[[16,1,1,0,1]]]],[419]]],["pluck",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15059]]],["riddance",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3424]]],["spend",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,2,2,1,3,[[456,1,1,1,2],[471,1,1,2,3]]],[18,1,1,3,4,[[567,1,1,3,4]]]],[5781,13368,13747,15387]]],["spent",[4,4,[[0,1,1,0,1,[[20,1,1,0,1]]],[17,1,1,1,2,[[442,1,1,1,2]]],[18,1,1,2,3,[[508,1,1,2,3]]],[22,1,1,3,4,[[727,1,1,3,4]]]],[528,13014,14341,18640]]],["utterly",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3568]]],["waste",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9331]]],["wasted",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9333]]]]},{"k":"H3616","v":[["fail",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5643]]]]},{"k":"H3617","v":[["*",[20,18,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[60,1,1,1,2]]],[13,1,1,2,3,[[378,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[22,2,2,4,6,[[688,1,1,4,5],[706,1,1,5,6]]],[23,7,5,6,11,[[748,1,1,6,7],[749,2,2,7,9],[774,2,1,9,10],[790,2,1,10,11]]],[25,3,3,11,14,[[812,1,1,11,12],[814,1,1,12,13],[821,1,1,13,14]]],[26,1,1,14,15,[[858,1,1,14,15]]],[33,2,2,15,17,[[900,2,2,15,17]]],[35,1,1,17,18,[[906,1,1,17,18]]]],[445,1807,11449,12542,17873,18186,19054,19068,19076,19678,20073,20668,20721,20912,22015,22692,22693,22805]]],["+",[2,2,[[15,1,1,0,1,[[421,1,1,0,1]]],[25,1,1,1,2,[[812,1,1,1,2]]]],[12542,20668]]],["altogether",[3,3,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[60,1,1,1,2]]],[13,1,1,2,3,[[378,1,1,2,3]]]],[445,1807,11449]]],["consume",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20721]]],["consummation",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22015]]],["consumption",[2,2,[[22,2,2,0,2,[[688,1,1,0,1],[706,1,1,1,2]]]],[17873,18186]]],["end",[10,8,[[23,7,5,0,5,[[748,1,1,0,1],[749,2,2,1,3],[774,2,1,3,4],[790,2,1,4,5]]],[25,1,1,5,6,[[821,1,1,5,6]]],[33,2,2,6,8,[[900,2,2,6,8]]]],[19054,19068,19076,19678,20073,20912,22692,22693]]],["riddance",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22805]]]]},{"k":"H3618","v":[["*",[34,34,[[0,4,4,0,4,[[10,1,1,0,1],[37,3,3,1,4]]],[2,2,2,4,6,[[107,1,1,4,5],[109,1,1,5,6]]],[7,7,7,6,13,[[232,4,4,6,10],[233,2,2,10,12],[235,1,1,12,13]]],[8,1,1,13,14,[[239,1,1,13,14]]],[12,1,1,14,15,[[339,1,1,14,15]]],[21,6,6,15,21,[[674,5,5,15,20],[675,1,1,20,21]]],[22,3,3,21,24,[[727,1,1,21,22],[739,1,1,22,23],[740,1,1,23,24]]],[23,5,5,24,29,[[746,1,1,24,25],[751,1,1,25,26],[760,1,1,26,27],[769,1,1,27,28],[777,1,1,28,29]]],[25,1,1,29,30,[[823,1,1,29,30]]],[27,2,2,30,32,[[865,2,2,30,32]]],[28,1,1,32,33,[[877,1,1,32,33]]],[32,1,1,33,34,[[899,1,1,33,34]]]],[297,1130,1135,1143,3266,3330,7133,7134,7135,7149,7169,7171,7205,7316,10310,17590,17591,17592,17593,17594,17599,18654,18853,18859,18997,19153,19345,19544,19786,20987,22146,22147,22327,22670]]],["bride",[9,9,[[22,3,3,0,3,[[727,1,1,0,1],[739,1,1,1,2],[740,1,1,2,3]]],[23,5,5,3,8,[[746,1,1,3,4],[751,1,1,4,5],[760,1,1,5,6],[769,1,1,6,7],[777,1,1,7,8]]],[28,1,1,8,9,[[877,1,1,8,9]]]],[18654,18853,18859,18997,19153,19345,19544,19786,22327]]],["law",[17,17,[[0,4,4,0,4,[[10,1,1,0,1],[37,3,3,1,4]]],[2,2,2,4,6,[[107,1,1,4,5],[109,1,1,5,6]]],[7,7,7,6,13,[[232,4,4,6,10],[233,2,2,10,12],[235,1,1,12,13]]],[8,1,1,13,14,[[239,1,1,13,14]]],[12,1,1,14,15,[[339,1,1,14,15]]],[25,1,1,15,16,[[823,1,1,15,16]]],[32,1,1,16,17,[[899,1,1,16,17]]]],[297,1130,1135,1143,3266,3330,7133,7134,7135,7149,7169,7171,7205,7316,10310,20987,22670]]],["spouse",[6,6,[[21,6,6,0,6,[[674,5,5,0,5],[675,1,1,5,6]]]],[17590,17591,17592,17593,17594,17599]]],["spouses",[2,2,[[27,2,2,0,2,[[865,2,2,0,2]]]],[22146,22147]]]]},{"k":"H3619","v":[["*",[3,3,[[23,1,1,0,1,[[749,1,1,0,1]]],[29,2,2,1,3,[[886,2,2,1,3]]]],[19085,22482,22483]]],["basket",[2,2,[[29,2,2,0,2,[[886,2,2,0,2]]]],[22482,22483]]],["cage",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19085]]]]},{"k":"H3620","v":[["Chelub",[2,2,[[12,2,2,0,2,[[341,1,1,0,1],[364,1,1,1,2]]]],[10396,11135]]]]},{"k":"H3621","v":[["Chelubai",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10315]]]]},{"k":"H3622","v":[["Chelluh",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12287]]]]},{"k":"H3623","v":[["espousals",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18967]]]]},{"k":"H3624","v":[["age",[2,2,[[17,2,2,0,2,[[440,1,1,0,1],[465,1,1,1,2]]]],[12977,13559]]]]},{"k":"H3625","v":[["Calah",[2,2,[[0,2,2,0,2,[[9,2,2,0,2]]]],[245,246]]]]},{"k":"H3626","v":[["Colhozeh",[2,2,[[15,2,2,0,2,[[415,1,1,0,1],[423,1,1,1,2]]]],[12342,12593]]]]},{"k":"H3627","v":[["*",[325,276,[[0,9,7,0,7,[[23,2,1,0,1],[26,1,1,1,2],[30,2,1,2,3],[41,1,1,3,4],[42,1,1,4,5],[44,1,1,5,6],[48,1,1,6,7]]],[1,34,28,7,35,[[52,2,1,7,8],[60,2,1,8,9],[61,2,1,9,10],[71,1,1,10,11],[74,2,2,11,13],[76,2,2,13,15],[79,3,2,15,17],[80,4,3,17,20],[84,4,4,20,24],[86,2,2,24,26],[87,3,2,26,28],[88,5,5,28,33],[89,2,2,33,35]]],[2,22,19,35,54,[[95,2,1,35,36],[97,1,1,36,37],[100,4,3,37,40],[102,6,6,40,46],[103,2,2,46,48],[104,7,6,48,54]]],[3,31,26,54,80,[[117,2,1,54,55],[119,3,3,55,58],[120,10,8,58,66],[121,1,1,66,67],[123,3,2,67,69],[134,1,1,69,70],[135,3,3,70,73],[147,5,4,73,77],[151,3,3,77,80]]],[4,3,3,80,83,[[153,1,1,80,81],[174,1,1,81,82],[175,1,1,82,83]]],[5,3,3,83,86,[[192,2,2,83,85],[193,1,1,85,86]]],[6,4,4,86,90,[[219,1,1,86,87],[228,3,3,87,90]]],[7,1,1,90,91,[[233,1,1,90,91]]],[8,33,27,91,118,[[241,2,2,91,93],[243,2,1,93,94],[244,1,1,94,95],[245,1,1,95,96],[249,9,7,96,103],[251,1,1,103,104],[252,5,4,104,108],[255,1,1,108,109],[256,3,2,109,111],[260,1,1,111,112],[265,1,1,112,113],[266,6,5,113,118]]],[9,8,6,118,124,[[267,1,1,118,119],[274,3,1,119,120],[283,1,1,120,121],[284,1,1,121,122],[289,1,1,122,123],[290,1,1,123,124]]],[10,13,11,124,135,[[296,1,1,124,125],[297,4,4,125,129],[298,1,1,129,130],[300,4,2,130,132],[305,1,1,132,133],[307,1,1,133,134],[309,1,1,134,135]]],[11,17,13,135,148,[[316,6,3,135,138],[319,1,1,138,139],[323,2,2,139,141],[324,2,1,141,142],[326,1,1,142,143],[332,1,1,143,144],[335,1,1,144,145],[336,1,1,145,146],[337,2,2,146,148]]],[12,23,19,148,167,[[346,3,2,148,150],[347,5,4,150,154],[348,1,1,154,155],[349,2,2,155,157],[352,1,1,157,158],[353,2,2,158,160],[355,2,2,160,162],[359,1,1,162,163],[360,2,2,163,165],[365,4,2,165,167]]],[13,33,27,167,194,[[370,3,3,167,170],[371,3,3,170,173],[373,1,1,173,174],[375,4,2,174,176],[381,1,1,176,177],[386,1,1,177,178],[389,2,2,178,180],[390,3,1,180,181],[391,1,1,181,182],[394,2,1,182,183],[395,5,4,183,187],[396,1,1,187,188],[398,1,1,188,189],[400,1,1,189,190],[402,4,4,190,194]]],[14,10,10,194,204,[[403,4,4,194,198],[410,6,6,198,204]]],[15,5,5,204,209,[[422,1,1,204,205],[424,1,1,205,206],[425,3,3,206,209]]],[16,3,1,209,210,[[426,3,1,209,210]]],[17,1,1,210,211,[[463,1,1,210,211]]],[18,4,4,211,215,[[479,1,1,211,212],[484,1,1,212,213],[508,1,1,213,214],[548,1,1,214,215]]],[19,2,2,215,217,[[647,1,1,215,216],[652,1,1,216,217]]],[20,1,1,217,218,[[667,1,1,217,218]]],[22,14,12,218,230,[[688,1,1,218,219],[691,1,1,219,220],[696,1,1,220,221],[700,3,1,221,222],[710,1,1,222,223],[717,1,1,223,224],[730,1,1,224,225],[732,2,2,225,227],[739,1,1,227,228],[743,1,1,228,229],[744,1,1,229,230]]],[23,27,25,230,255,[[758,1,1,230,231],[762,2,1,231,232],[763,1,1,232,233],[765,1,1,233,234],[766,2,2,234,236],[769,1,1,236,237],[771,4,4,237,241],[772,2,2,241,243],[776,1,1,243,244],[784,1,1,244,245],[790,1,1,245,246],[792,4,3,246,249],[793,1,1,249,250],[794,1,1,250,251],[795,2,2,251,253],[796,2,2,253,255]]],[25,15,13,255,268,[[805,1,1,255,256],[810,2,2,256,258],[813,5,3,258,261],[816,1,1,261,262],[817,2,2,262,264],[824,1,1,264,265],[828,1,1,265,266],[833,1,1,266,267],[841,1,1,267,268]]],[26,3,2,268,270,[[850,2,1,268,269],[860,1,1,269,270]]],[27,2,2,270,272,[[869,1,1,270,271],[874,1,1,271,272]]],[29,1,1,272,273,[[884,1,1,272,273]]],[31,1,1,273,274,[[889,1,1,273,274]]],[33,1,1,274,275,[[901,1,1,274,275]]],[37,1,1,275,276,[[921,1,1,275,276]]]],[644,730,910,1277,1301,1378,1478,1601,1808,1851,2120,2204,2234,2275,2291,2409,2410,2427,2428,2429,2544,2545,2547,2553,2620,2628,2636,2663,2697,2700,2701,2703,2704,2716,2717,2877,2928,3029,3030,3031,3101,3104,3105,3109,3110,3111,3116,3161,3172,3174,3180,3190,3191,3194,3654,3700,3723,3728,3752,3753,3755,3757,3758,3759,3769,3775,3809,3851,3935,4260,4304,4306,4307,4670,4684,4714,4715,4861,4863,4867,4933,5475,5524,5968,5973,5987,6808,7004,7009,7010,7158,7339,7346,7381,7398,7440,7509,7514,7515,7520,7521,7522,7525,7616,7640,7658,7667,7672,7770,7777,7780,7874,8002,8013,8014,8015,8018,8019,8049,8219,8477,8493,8690,8714,8903,8979,8981,8982,8985,8989,9100,9104,9264,9327,9408,9606,9607,9609,9722,9837,9840,9863,9910,10111,10169,10215,10236,10238,10643,10644,10663,10664,10668,10669,10712,10753,10757,10807,10825,10862,10898,10900,10983,10988,11009,11156,11157,11262,11264,11265,11269,11273,11281,11330,11384,11388,11508,11612,11663,11669,11691,11728,11788,11809,11810,11817,11818,11848,11902,11945,12000,12003,12011,12012,12022,12023,12026,12027,12226,12227,12228,12229,12231,12234,12588,12660,12676,12679,12680,12709,13521,13954,14008,14343,14998,16969,17117,17493,17878,17911,17999,18076,18266,18414,18707,18739,18740,18853,18901,18942,19296,19388,19418,19444,19461,19482,19568,19612,19614,19615,19617,19621,19624,19745,19951,20064,20091,20092,20118,20156,20191,20232,20246,20294,20296,20538,20623,20624,20683,20684,20687,20757,20779,20801,21033,21134,21275,21519,21739,22044,22202,22281,22455,22536,22708,23043]]],["+",[32,28,[[1,2,2,0,2,[[84,1,1,0,1],[88,1,1,1,2]]],[2,1,1,2,3,[[104,1,1,2,3]]],[3,1,1,3,4,[[151,1,1,3,4]]],[6,1,1,4,5,[[219,1,1,4,5]]],[8,13,10,5,15,[[244,1,1,5,6],[249,7,5,6,11],[251,1,1,11,12],[266,4,3,12,15]]],[9,1,1,15,16,[[289,1,1,15,16]]],[12,5,4,16,20,[[347,3,2,16,18],[348,1,1,18,19],[353,1,1,19,20]]],[13,2,2,20,22,[[395,1,1,20,21],[402,1,1,21,22]]],[16,1,1,22,23,[[426,1,1,22,23]]],[18,1,1,23,24,[[548,1,1,23,24]]],[20,1,1,24,25,[[667,1,1,24,25]]],[22,1,1,25,26,[[700,1,1,25,26]]],[23,2,2,26,28,[[790,1,1,26,27],[792,1,1,27,28]]]],[2547,2703,3194,4867,6808,7398,7515,7520,7521,7522,7525,7616,8013,8014,8015,8690,10663,10664,10712,10825,11818,12000,12709,14998,17493,18076,20064,20091]]],["armour",[10,10,[[8,5,5,0,5,[[249,2,2,0,2],[252,1,1,2,3],[266,2,2,3,5]]],[9,1,1,5,6,[[284,1,1,5,6]]],[11,1,1,6,7,[[332,1,1,6,7]]],[12,2,2,7,9,[[347,2,2,7,9]]],[22,1,1,9,10,[[717,1,1,9,10]]]],[7509,7514,7672,8018,8019,8493,10111,10668,10669,18414]]],["artillery",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7770]]],["bag",[2,2,[[8,2,2,0,2,[[252,2,2,0,2]]]],[7658,7667]]],["carriage",[2,1,[[8,2,1,0,1,[[252,2,1,0,1]]]],[7640]]],["carriages",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17878]]],["furniture",[7,6,[[1,6,5,0,5,[[80,4,3,0,3],[84,1,1,3,4],[88,1,1,4,5]]],[33,1,1,5,6,[[901,1,1,5,6]]]],[2427,2428,2429,2545,2697,22708]]],["instrument",[2,2,[[3,1,1,0,1,[[151,1,1,0,1]]],[22,1,1,1,2,[[732,1,1,1,2]]]],[4861,18739]]],["instruments",[36,32,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,1,1,1,2,[[74,1,1,1,2]]],[3,7,6,2,8,[[119,1,1,2,3],[120,4,3,3,6],[123,1,1,6,7],[147,1,1,7,8]]],[8,2,1,8,9,[[243,2,1,8,9]]],[9,1,1,9,10,[[290,1,1,9,10]]],[10,1,1,10,11,[[309,1,1,10,11]]],[12,9,7,11,18,[[346,1,1,11,12],[349,2,2,12,14],[352,1,1,14,15],[353,1,1,15,16],[360,1,1,16,17],[365,3,1,17,18]]],[13,8,8,18,26,[[370,1,1,18,19],[371,2,2,19,21],[373,1,1,21,22],[389,1,1,22,23],[395,1,1,23,24],[396,1,1,24,25],[400,1,1,25,26]]],[15,1,1,26,27,[[424,1,1,26,27]]],[18,1,1,27,28,[[484,1,1,27,28]]],[22,1,1,28,29,[[710,1,1,28,29]]],[25,1,1,29,30,[[841,1,1,29,30]]],[29,1,1,30,31,[[884,1,1,30,31]]],[37,1,1,31,32,[[921,1,1,31,32]]]],[1478,2204,3700,3755,3769,3775,3851,4670,7381,8714,9408,10644,10753,10757,10807,10862,10988,11157,11262,11269,11281,11330,11669,11817,11848,11945,12660,14008,18266,21519,22455,23043]]],["jewel",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16969]]],["jewels",[20,16,[[0,2,1,0,1,[[23,2,1,0,1]]],[1,7,4,1,5,[[52,2,1,1,2],[60,2,1,2,3],[61,2,1,3,4],[84,1,1,4,5]]],[3,2,2,5,7,[[147,2,2,5,7]]],[8,2,2,7,9,[[241,2,2,7,9]]],[13,2,2,9,11,[[386,1,1,9,10],[398,1,1,10,11]]],[17,1,1,11,12,[[463,1,1,11,12]]],[22,1,1,12,13,[[739,1,1,12,13]]],[25,3,3,13,16,[[817,2,2,13,15],[824,1,1,15,16]]]],[644,1601,1808,1851,2553,4714,4715,7339,7346,11612,11902,13521,18853,20779,20801,21033]]],["made",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4684]]],["pertaineth",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5475]]],["pot",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2877]]],["sacks",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1277]]],["stuff",[14,11,[[0,3,2,0,2,[[30,2,1,0,1],[44,1,1,1,2]]],[1,1,1,2,3,[[71,1,1,2,3]]],[5,1,1,3,4,[[193,1,1,3,4]]],[8,3,3,4,7,[[245,1,1,4,5],[260,1,1,5,6],[265,1,1,6,7]]],[15,1,1,7,8,[[425,1,1,7,8]]],[25,5,3,8,11,[[813,5,3,8,11]]]],[910,1378,2120,5987,7440,7874,8002,12679,20683,20684,20687]]],["thing",[10,10,[[2,10,10,0,10,[[102,6,6,0,6],[104,4,4,6,10]]]],[3101,3104,3105,3109,3110,3111,3172,3174,3190,3191]]],["things",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4684]]],["tool",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8903]]],["vessel",[33,29,[[2,9,7,0,7,[[95,1,1,0,1],[100,4,3,1,4],[103,2,2,4,6],[104,2,1,6,7]]],[3,3,3,7,10,[[121,1,1,7,8],[135,2,2,8,10]]],[4,1,1,10,11,[[175,1,1,10,11]]],[8,1,1,11,12,[[256,1,1,11,12]]],[10,1,1,12,13,[[307,1,1,12,13]]],[11,2,1,13,14,[[316,2,1,13,14]]],[18,2,2,14,16,[[479,1,1,14,15],[508,1,1,15,16]]],[19,1,1,16,17,[[652,1,1,16,17]]],[22,1,1,17,18,[[744,1,1,17,18]]],[23,9,8,18,26,[[762,2,1,18,19],[763,1,1,19,20],[766,1,1,20,21],[769,1,1,21,22],[776,1,1,22,23],[792,2,2,23,25],[795,1,1,25,26]]],[25,2,2,26,28,[[805,1,1,26,27],[816,1,1,27,28]]],[27,1,1,28,29,[[869,1,1,28,29]]]],[2877,3029,3030,3031,3116,3161,3180,3809,4304,4306,5524,7777,9327,9609,13954,14343,17117,18942,19388,19418,19482,19568,19745,20091,20118,20246,20538,20757,22202]]],["vessels",[127,108,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,17,15,1,16,[[74,1,1,1,2],[76,2,2,2,4],[79,3,2,4,6],[84,1,1,6,7],[86,2,2,7,9],[87,3,2,9,11],[88,3,3,11,14],[89,2,2,14,16]]],[2,1,1,16,17,[[97,1,1,16,17]]],[3,14,12,17,29,[[117,2,1,17,18],[119,2,2,18,20],[120,6,5,20,25],[123,2,2,25,27],[134,1,1,27,28],[135,1,1,28,29]]],[5,2,2,29,31,[[192,2,2,29,31]]],[7,1,1,31,32,[[233,1,1,31,32]]],[8,1,1,32,33,[[256,1,1,32,33]]],[9,4,2,33,35,[[274,3,1,33,34],[283,1,1,34,35]]],[10,10,8,35,43,[[297,4,4,35,39],[298,1,1,39,40],[300,4,2,40,42],[305,1,1,42,43]]],[11,12,10,43,53,[[316,4,3,43,46],[319,1,1,46,47],[324,2,1,47,48],[326,1,1,48,49],[335,1,1,49,50],[336,1,1,50,51],[337,2,2,51,53]]],[12,7,7,53,60,[[346,2,2,53,55],[355,2,2,55,57],[359,1,1,57,58],[360,1,1,58,59],[365,1,1,59,60]]],[13,20,14,60,74,[[370,2,2,60,62],[371,1,1,62,63],[375,4,2,63,65],[381,1,1,65,66],[390,3,1,66,67],[391,1,1,67,68],[394,2,1,68,69],[395,3,2,69,71],[402,3,3,71,74]]],[14,10,10,74,84,[[403,4,4,74,78],[410,6,6,78,84]]],[15,3,3,84,87,[[422,1,1,84,85],[425,2,2,85,87]]],[16,2,1,87,88,[[426,2,1,87,88]]],[22,5,4,88,92,[[696,1,1,88,89],[700,2,1,89,90],[730,1,1,90,91],[743,1,1,91,92]]],[23,12,12,92,104,[[758,1,1,92,93],[771,4,4,93,97],[772,2,2,97,99],[784,1,1,99,100],[792,1,1,100,101],[793,1,1,101,102],[796,2,2,102,104]]],[25,1,1,104,105,[[828,1,1,104,105]]],[26,3,2,105,107,[[850,2,1,105,106],[860,1,1,106,107]]],[27,1,1,107,108,[[874,1,1,107,108]]]],[1301,2234,2275,2291,2409,2410,2544,2620,2628,2636,2663,2700,2701,2704,2716,2717,2928,3654,3723,3728,3752,3753,3757,3758,3759,3851,3935,4260,4307,5968,5973,7158,7777,8219,8477,8979,8981,8982,8985,8989,9100,9104,9264,9606,9607,9609,9722,9863,9910,10169,10215,10236,10238,10643,10644,10898,10900,10983,11009,11156,11264,11265,11273,11384,11388,11508,11691,11728,11788,11809,11810,12003,12011,12012,12022,12023,12026,12027,12226,12227,12228,12229,12231,12234,12588,12676,12680,12709,17999,18076,18707,18901,19296,19612,19614,19615,19617,19621,19624,19951,20092,20156,20294,20296,21134,21739,22044,22281]]],["wares",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22536]]],["weapon",[4,4,[[3,1,1,0,1,[[151,1,1,0,1]]],[22,1,1,1,2,[[732,1,1,1,2]]],[25,2,2,2,4,[[810,2,2,2,4]]]],[4863,18740,20623,20624]]],["weapons",[16,16,[[0,1,1,0,1,[[26,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[6,3,3,2,5,[[228,3,3,2,5]]],[8,1,1,5,6,[[256,1,1,5,6]]],[9,1,1,6,7,[[267,1,1,6,7]]],[11,2,2,7,9,[[323,2,2,7,9]]],[13,1,1,9,10,[[389,1,1,9,10]]],[22,1,1,10,11,[[691,1,1,10,11]]],[23,4,4,11,15,[[765,1,1,11,12],[766,1,1,12,13],[794,1,1,13,14],[795,1,1,14,15]]],[25,1,1,15,16,[[833,1,1,15,16]]]],[730,4933,7004,7009,7010,7780,8049,9837,9840,11663,17911,19444,19461,20191,20232,21275]]]]},{"k":"H3628","v":[["+",[2,2,[[23,2,2,0,2,[[781,1,1,0,1],[796,1,1,1,2]]]],[19878,20307]]]]},{"k":"H3629","v":[["*",[31,26,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,14,9,2,11,[[92,6,3,2,5],[93,2,1,5,6],[96,2,1,6,7],[97,2,2,7,9],[98,2,2,9,11]]],[4,1,1,11,12,[[184,1,1,11,12]]],[17,2,2,12,14,[[451,1,1,12,13],[454,1,1,13,14]]],[18,5,5,14,19,[[484,1,1,14,15],[493,1,1,15,16],[503,1,1,16,17],[550,1,1,17,18],[616,1,1,18,19]]],[19,1,1,19,20,[[650,1,1,19,20]]],[22,1,1,20,21,[[712,1,1,20,21]]],[23,4,4,21,25,[[755,1,1,21,22],[756,1,1,22,23],[761,1,1,23,24],[764,1,1,24,25]]],[24,1,1,25,26,[[799,1,1,25,26]]]],[2349,2358,2782,2788,2793,2804,2883,2933,2942,2963,2972,5772,13251,13324,14004,14099,14275,15041,16252,17060,18309,19246,19251,19367,19434,20367]]],["+",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19251]]],["kidneys",[18,13,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,14,9,2,11,[[92,6,3,2,5],[93,2,1,5,6],[96,2,1,6,7],[97,2,2,7,9],[98,2,2,9,11]]],[4,1,1,11,12,[[184,1,1,11,12]]],[22,1,1,12,13,[[712,1,1,12,13]]]],[2349,2358,2782,2788,2793,2804,2883,2933,2942,2963,2972,5772,18309]]],["reins",[12,12,[[17,2,2,0,2,[[451,1,1,0,1],[454,1,1,1,2]]],[18,5,5,2,7,[[484,1,1,2,3],[493,1,1,3,4],[503,1,1,4,5],[550,1,1,5,6],[616,1,1,6,7]]],[19,1,1,7,8,[[650,1,1,7,8]]],[23,3,3,8,11,[[755,1,1,8,9],[761,1,1,9,10],[764,1,1,10,11]]],[24,1,1,11,12,[[799,1,1,11,12]]]],[13251,13324,14004,14099,14275,15041,16252,17060,19246,19367,19434,20367]]]]},{"k":"H3630","v":[["*",[3,3,[[7,3,3,0,3,[[232,2,2,0,2],[235,1,1,2,3]]]],[7129,7132,7199]]],["Chilion",[2,2,[[7,2,2,0,2,[[232,2,2,0,2]]]],[7129,7132]]],["Chilion's",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7199]]]]},{"k":"H3631","v":[["*",[2,2,[[4,1,1,0,1,[[180,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[5676,17872]]],["consumption",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17872]]],["failing",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5676]]]]},{"k":"H3632","v":[["*",[15,15,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[2,2,2,2,4,[[95,2,2,2,4]]],[3,1,1,4,5,[[120,1,1,4,5]]],[4,2,2,5,7,[[165,1,1,5,6],[185,1,1,6,7]]],[6,1,1,7,8,[[230,1,1,7,8]]],[8,1,1,8,9,[[242,1,1,8,9]]],[18,1,1,9,10,[[528,1,1,9,10]]],[22,1,1,10,11,[[680,1,1,10,11]]],[24,1,1,11,12,[[798,1,1,11,12]]],[25,3,3,12,15,[[817,1,1,12,13],[828,1,1,13,14],[829,1,1,14,15]]]],[2324,2686,2871,2872,3749,5288,5820,7094,7361,14710,17703,20347,20776,21124,21169]]],["all",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2324,2686]]],["flame",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7094]]],["offering",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14710]]],["perfect",[3,3,[[25,3,3,0,3,[[817,1,1,0,1],[828,1,1,1,2],[829,1,1,2,3]]]],[20776,21124,21169]]],["perfection",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20347]]],["sacrifice",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5820]]],["utterly",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17703]]],["whit",[1,1,[[4,1,1,0,1,[[165,1,1,0,1]]]],[5288]]],["wholly",[4,4,[[2,2,2,0,2,[[95,2,2,0,2]]],[3,1,1,2,3,[[120,1,1,2,3]]],[8,1,1,3,4,[[242,1,1,3,4]]]],[2871,2872,3749,7361]]]]},{"k":"H3633","v":[["*",[2,2,[[10,1,1,0,1,[[294,1,1,0,1]]],[12,1,1,1,2,[[339,1,1,1,2]]]],[8875,10312]]],["Calcol",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10312]]],["Chalcol",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8875]]]]},{"k":"H3634","v":[["*",[2,2,[[25,2,2,0,2,[[828,2,2,0,2]]]],[21125,21132]]],["+",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21132]]],["perfected",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21125]]]]},{"k":"H3635","v":[["*",[7,7,[[14,7,7,0,7,[[406,3,3,0,3],[407,3,3,3,6],[408,1,1,6,7]]]],[12122,12123,12126,12137,12143,12145,12165]]],["finished",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12165]]],["up",[6,6,[[14,6,6,0,6,[[406,3,3,0,3],[407,3,3,3,6]]]],[12122,12123,12126,12137,12143,12145]]]]},{"k":"H3636","v":[["Chelal",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12282]]]]},{"k":"H3637","v":[["*",[38,38,[[3,1,1,0,1,[[128,1,1,0,1]]],[6,1,1,1,2,[[228,1,1,1,2]]],[7,1,1,2,3,[[233,1,1,2,3]]],[8,3,3,3,6,[[255,1,1,3,4],[260,2,2,4,6]]],[9,2,2,6,8,[[276,1,1,6,7],[285,1,1,7,8]]],[12,1,1,8,9,[[356,1,1,8,9]]],[13,1,1,9,10,[[396,1,1,9,10]]],[14,1,1,10,11,[[411,1,1,10,11]]],[17,2,2,11,13,[[446,1,1,11,12],[454,1,1,12,13]]],[18,6,6,13,19,[[512,1,1,13,14],[517,1,1,14,15],[521,1,1,15,16],[546,1,1,16,17],[547,1,1,17,18],[551,1,1,18,19]]],[19,2,2,19,21,[[652,1,1,19,20],[655,1,1,20,21]]],[22,5,5,21,26,[[719,1,1,21,22],[723,2,2,22,24],[728,1,1,24,25],[732,1,1,25,26]]],[23,6,6,26,32,[[747,1,1,26,27],[750,1,1,27,28],[752,1,1,28,29],[758,1,1,29,30],[766,1,1,30,31],[775,1,1,31,32]]],[25,6,6,32,38,[[817,3,3,32,35],[837,1,1,35,36],[844,2,2,36,38]]]],[4073,7000,7164,7764,7868,7876,8245,8514,10912,11842,12243,13111,13300,14414,14539,14580,14941,14973,15069,17121,17203,18462,18577,18578,18669,18727,19005,19104,19165,19296,19476,19710,20789,20816,20823,21391,21582,21583]]],["+",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17121]]],["ashamed",[12,12,[[3,1,1,0,1,[[128,1,1,0,1]]],[9,2,2,1,3,[[276,1,1,1,2],[285,1,1,2,3]]],[12,1,1,3,4,[[356,1,1,3,4]]],[13,1,1,4,5,[[396,1,1,4,5]]],[17,1,1,5,6,[[446,1,1,5,6]]],[18,1,1,6,7,[[551,1,1,6,7]]],[23,1,1,7,8,[[747,1,1,7,8]]],[25,4,4,8,12,[[817,2,2,8,10],[844,2,2,10,12]]]],[4073,8245,8514,10912,11842,13111,15069,19005,20789,20823,21582,21583]]],["blush",[3,3,[[14,1,1,0,1,[[411,1,1,0,1]]],[23,2,2,1,3,[[750,1,1,1,2],[752,1,1,2,3]]]],[12243,19104,19165]]],["confounded",[11,11,[[18,1,1,0,1,[[546,1,1,0,1]]],[22,5,5,1,6,[[719,1,1,1,2],[723,2,2,2,4],[728,1,1,4,5],[732,1,1,5,6]]],[23,3,3,6,9,[[758,1,1,6,7],[766,1,1,7,8],[775,1,1,8,9]]],[25,2,2,9,11,[[817,1,1,9,10],[837,1,1,10,11]]]],[14941,18462,18577,18578,18669,18727,19296,19476,19710,20816,21391]]],["confusion",[1,1,[[18,1,1,0,1,[[547,1,1,0,1]]]],[14973]]],["hurt",[2,2,[[8,2,2,0,2,[[260,2,2,0,2]]]],[7868,7876]]],["reproach",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7164]]],["reproached",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13300]]],["shame",[5,5,[[6,1,1,0,1,[[228,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[18,3,3,2,5,[[512,1,1,2,3],[517,1,1,3,4],[521,1,1,4,5]]]],[7000,7764,14414,14539,14580]]],["shameth",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17203]]]]},{"k":"H3638","v":[["Chilmad",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21144]]]]},{"k":"H3639","v":[["*",[30,29,[[17,1,1,0,1,[[455,1,1,0,1]]],[18,7,7,1,8,[[481,1,1,1,2],[512,1,1,2,3],[521,1,1,3,4],[546,2,2,4,6],[548,1,1,6,7],[586,1,1,7,8]]],[19,1,1,8,9,[[645,1,1,8,9]]],[22,4,4,9,13,[[708,1,1,9,10],[723,1,1,10,11],[728,1,1,11,12],[739,1,1,12,13]]],[23,3,3,13,16,[[747,1,1,13,14],[764,1,1,14,15],[795,1,1,15,16]]],[25,13,12,16,28,[[817,4,3,16,19],[833,3,3,19,22],[835,1,1,22,23],[837,3,3,23,26],[840,1,1,26,27],[845,1,1,27,28]]],[32,1,1,28,29,[[894,1,1,28,29]]]],[13329,13967,14436,14586,14942,14954,14989,15784,16914,18220,18577,18668,18850,19027,19433,20263,20814,20816,20825,21272,21273,21278,21342,21365,21366,21374,21474,21612,22601]]],["+",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18668]]],["confusion",[6,6,[[18,1,1,0,1,[[521,1,1,0,1]]],[22,3,3,1,4,[[708,1,1,1,2],[723,1,1,2,3],[739,1,1,3,4]]],[23,2,2,4,6,[[747,1,1,4,5],[764,1,1,5,6]]]],[14586,18220,18577,18850,19027,19433]]],["dishonour",[3,3,[[18,3,3,0,3,[[512,1,1,0,1],[546,1,1,1,2],[548,1,1,2,3]]]],[14436,14954,14989]]],["reproach",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13329]]],["shame",[19,18,[[18,3,3,0,3,[[481,1,1,0,1],[546,1,1,1,2],[586,1,1,2,3]]],[19,1,1,3,4,[[645,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]],[25,13,12,5,17,[[817,4,3,5,8],[833,3,3,8,11],[835,1,1,11,12],[837,3,3,12,15],[840,1,1,15,16],[845,1,1,16,17]]],[32,1,1,17,18,[[894,1,1,17,18]]]],[13967,14942,15784,16914,20263,20814,20816,20825,21272,21273,21278,21342,21365,21366,21374,21474,21612,22601]]]]},{"k":"H3640","v":[["shame",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19524]]]]},{"k":"H3641","v":[["*",[3,3,[[0,1,1,0,1,[[9,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]],[29,1,1,2,3,[[884,1,1,2,3]]]],[244,17859,22452]]],["Calneh",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[29,1,1,1,2,[[884,1,1,1,2]]]],[244,22452]]],["Calno",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17859]]]]},{"k":"H3642","v":[["longeth",[1,1,[[18,1,1,0,1,[[540,1,1,0,1]]]],[14840]]]]},{"k":"H3643","v":[["Chimham",[4,4,[[9,3,3,0,3,[[285,3,3,0,3]]],[23,1,1,3,4,[[785,1,1,3,4]]]],[8548,8549,8551,19974]]]]},{"k":"H3644","v":[["*",[127,114,[[0,4,4,0,4,[[18,1,1,0,1],[40,1,1,1,2],[43,2,2,2,4]]],[1,12,10,4,14,[[58,3,3,4,7],[60,2,1,7,8],[64,4,3,8,11],[79,3,3,11,14]]],[2,2,2,14,16,[[108,2,2,14,16]]],[3,1,1,16,17,[[139,1,1,16,17]]],[4,6,6,17,23,[[156,1,1,17,18],[157,1,1,18,19],[159,1,1,19,20],[170,2,2,20,22],[185,1,1,22,23]]],[6,2,2,23,25,[[218,1,1,23,24],[219,1,1,24,25]]],[8,2,2,25,27,[[245,1,1,25,26],[261,1,1,26,27]]],[9,3,3,27,30,[[273,1,1,27,28],[275,1,1,28,29],[284,1,1,29,30]]],[10,4,3,30,33,[[293,3,2,30,32],[298,1,1,32,33]]],[11,3,2,33,35,[[330,1,1,33,34],[335,2,1,34,35]]],[12,1,1,35,36,[[354,1,1,35,36]]],[13,4,3,36,39,[[372,1,1,36,37],[384,2,1,37,38],[401,1,1,38,39]]],[15,4,3,39,42,[[418,2,1,39,40],[421,1,1,40,41],[425,1,1,41,42]]],[17,18,16,42,58,[[436,1,1,42,43],[437,1,1,43,44],[441,1,1,44,45],[444,1,1,45,46],[445,2,1,46,47],[447,2,1,47,48],[449,1,1,48,49],[454,1,1,49,50],[463,1,1,50,51],[466,1,1,51,52],[470,1,1,52,53],[471,1,1,53,54],[473,1,1,54,55],[475,2,2,55,57],[476,1,1,57,58]]],[18,28,25,58,83,[[506,2,1,58,59],[512,1,1,59,60],[527,1,1,60,61],[535,6,4,61,65],[538,1,1,65,66],[540,1,1,66,67],[548,1,1,67,68],[550,1,1,68,69],[555,2,2,69,71],[556,1,1,71,72],[563,1,1,72,73],[565,1,1,73,74],[566,2,2,74,76],[567,1,1,76,77],[569,1,1,77,78],[579,1,1,78,79],[592,1,1,79,80],[612,1,1,80,81],[617,1,1,81,82],[618,1,1,82,83]]],[19,1,1,83,84,[[650,1,1,83,84]]],[21,1,1,84,85,[[677,1,1,84,85]]],[22,7,6,85,91,[[704,2,2,85,87],[708,1,1,87,88],[719,2,1,88,89],[724,1,1,89,90],[729,1,1,90,91]]],[23,7,7,91,98,[[754,2,2,91,93],[757,1,1,93,94],[759,1,1,94,95],[774,1,1,95,96],[793,1,1,96,97],[794,1,1,97,98]]],[24,2,2,98,100,[[797,1,1,98,99],[800,1,1,99,100]]],[25,2,2,100,102,[[806,1,1,100,101],[817,1,1,101,102]]],[27,3,3,102,105,[[868,1,1,102,103],[869,1,1,103,104],[874,1,1,104,105]]],[28,1,1,105,106,[[877,1,1,105,106]]],[32,1,1,106,107,[[899,1,1,106,107]]],[34,1,1,107,108,[[905,1,1,107,108]]],[36,1,1,108,109,[[910,1,1,108,109]]],[37,6,5,109,114,[[915,2,1,109,110],[919,1,1,110,111],[920,3,3,111,114]]]],[472,1234,1339,1342,1756,1760,1766,1812,1925,1928,1931,2414,2415,2420,3299,3315,4426,5036,5079,5137,5399,5402,5839,6737,6802,7442,7920,8202,8235,8481,8828,8829,9008,10029,10190,10883,11296,11545,11984,12412,12522,12697,12877,12894,12993,13083,13108,13131,13190,13319,13509,13625,13728,13758,13807,13873,13881,13912,14314,14420,14689,14783,14786,14787,14788,14825,14844,14995,15035,15126,15182,15190,15292,15313,15334,15372,15387,15418,15524,15838,16193,16266,16283,17051,17628,18147,18148,18239,18476,18595,18679,19207,19208,19287,19333,19674,20146,20210,20331,20426,20555,20819,22182,22206,22273,22313,22682,22782,22858,22939,23014,23018,23023,23024]]],["+",[3,3,[[15,1,1,0,1,[[418,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[22,1,1,2,3,[[729,1,1,2,3]]]],[12412,13131,18679]]],["As",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14787]]],["I",[6,6,[[0,1,1,0,1,[[43,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[9,1,1,2,3,[[275,1,1,2,3]]],[13,1,1,3,4,[[384,1,1,3,4]]],[15,1,1,4,5,[[418,1,1,4,5]]],[17,1,1,5,6,[[444,1,1,5,6]]]],[1339,6802,8235,11545,12412,13083]]],["as",[33,30,[[0,1,1,0,1,[[43,1,1,0,1]]],[1,3,3,1,4,[[58,1,1,1,2],[64,2,2,2,4]]],[15,1,1,4,5,[[421,1,1,4,5]]],[17,7,6,5,11,[[441,1,1,5,6],[445,2,1,6,7],[454,1,1,7,8],[466,1,1,8,9],[473,1,1,9,10],[476,1,1,10,11]]],[18,8,7,11,18,[[535,2,1,11,12],[538,1,1,12,13],[540,1,1,13,14],[555,1,1,14,15],[567,1,1,15,16],[569,1,1,16,17],[579,1,1,17,18]]],[19,1,1,18,19,[[650,1,1,18,19]]],[22,4,3,19,22,[[704,1,1,19,20],[708,1,1,20,21],[719,2,1,21,22]]],[23,2,2,22,24,[[757,1,1,22,23],[759,1,1,23,24]]],[27,3,3,24,27,[[868,1,1,24,25],[869,1,1,25,26],[874,1,1,26,27]]],[34,1,1,27,28,[[905,1,1,27,28]]],[37,2,2,28,30,[[920,2,2,28,30]]]],[1342,1760,1925,1928,12522,12993,13108,13319,13625,13807,13912,14786,14825,14844,15126,15387,15418,15524,17051,18147,18239,18476,19287,19333,22182,22206,22273,22782,23018,23024]]],["at",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20819]]],["both",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14788]]],["him",[9,8,[[8,1,1,0,1,[[245,1,1,0,1]]],[11,3,2,1,3,[[330,1,1,1,2],[335,2,1,2,3]]],[15,1,1,3,4,[[425,1,1,3,4]]],[17,4,4,4,8,[[436,1,1,4,5],[437,1,1,5,6],[471,1,1,6,7],[475,1,1,7,8]]]],[7442,10029,10190,12697,12877,12894,13758,13873]]],["his",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4426]]],["in",[2,2,[[18,1,1,0,1,[[535,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[14788,20426]]],["it",[11,9,[[1,5,4,0,4,[[58,1,1,0,1],[60,2,1,1,2],[79,2,2,2,4]]],[4,2,2,4,6,[[156,1,1,4,5],[159,1,1,5,6]]],[23,1,1,6,7,[[774,1,1,6,7]]],[36,1,1,7,8,[[910,1,1,7,8]]],[37,2,1,8,9,[[915,2,1,8,9]]]],[1766,1812,2414,2415,5036,5137,19674,22858,22939]]],["like",[13,12,[[17,2,2,0,2,[[449,1,1,0,1],[475,1,1,1,2]]],[18,8,7,2,9,[[506,2,1,2,3],[535,1,1,3,4],[555,1,1,4,5],[556,1,1,5,6],[565,1,1,6,7],[566,1,1,7,8],[617,1,1,8,9]]],[21,1,1,9,10,[[677,1,1,9,10]]],[25,1,1,10,11,[[806,1,1,10,11]]],[28,1,1,11,12,[[877,1,1,11,12]]]],[13190,13881,14314,14783,15182,15190,15313,15372,16266,17628,20555,22313]]],["me",[6,6,[[1,1,1,0,1,[[58,1,1,0,1]]],[4,1,1,1,2,[[170,1,1,1,2]]],[22,1,1,2,3,[[724,1,1,2,3]]],[23,2,2,3,5,[[793,1,1,3,4],[794,1,1,4,5]]],[24,1,1,5,6,[[797,1,1,5,6]]]],[1756,5399,18595,20146,20210,20331]]],["that",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2420]]],["thee",[19,17,[[1,2,1,0,1,[[64,2,1,0,1]]],[4,2,2,1,3,[[170,1,1,1,2],[185,1,1,2,3]]],[8,1,1,3,4,[[261,1,1,3,4]]],[9,1,1,4,5,[[273,1,1,4,5]]],[10,4,3,5,8,[[293,3,2,5,7],[298,1,1,7,8]]],[12,1,1,8,9,[[354,1,1,8,9]]],[13,1,1,9,10,[[372,1,1,9,10]]],[18,4,4,10,14,[[512,1,1,10,11],[548,1,1,11,12],[563,1,1,12,13],[566,1,1,13,14]]],[23,2,2,14,16,[[754,2,2,14,16]]],[32,1,1,16,17,[[899,1,1,16,17]]]],[1931,5402,5839,7920,8202,8828,8829,9008,10883,11296,14420,14995,15292,15334,19207,19208,22682]]],["them",[2,2,[[18,2,2,0,2,[[592,1,1,0,1],[612,1,1,1,2]]]],[15838,16193]]],["thou",[4,4,[[0,1,1,0,1,[[40,1,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]],[13,1,1,2,3,[[384,1,1,2,3]]],[17,1,1,3,4,[[470,1,1,3,4]]]],[1234,6737,11545,13728]]],["through",[2,2,[[37,2,2,0,2,[[919,1,1,0,1],[920,1,1,1,2]]]],[23014,23023]]],["thus",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15035]]],["thyself",[3,3,[[2,2,2,0,2,[[108,2,2,0,2]]],[18,1,1,2,3,[[527,1,1,2,3]]]],[3299,3315,14689]]],["to",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11984]]],["we",[1,1,[[4,1,1,0,1,[[157,1,1,0,1]]]],[5079]]],["were",[2,2,[[17,1,1,0,1,[[463,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]]],[13509,18148]]],["when",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[18,1,1,1,2,[[618,1,1,1,2]]]],[472,16283]]],["worth",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8481]]],["you",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13131]]]]},{"k":"H3645","v":[["*",[9,9,[[3,1,1,0,1,[[137,1,1,0,1]]],[6,1,1,1,2,[[221,1,1,1,2]]],[8,1,1,2,3,[[239,1,1,2,3]]],[10,2,2,3,5,[[301,2,2,3,5]]],[11,1,1,5,6,[[335,1,1,5,6]]],[23,3,3,6,9,[[792,3,3,6,9]]]],[4369,6853,7306,9115,9141,10178,20087,20093,20126]]],["+",[2,2,[[8,1,1,0,1,[[239,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[7306,20093]]],["Chemosh",[7,7,[[3,1,1,0,1,[[137,1,1,0,1]]],[6,1,1,1,2,[[221,1,1,1,2]]],[10,2,2,2,4,[[301,2,2,2,4]]],[11,1,1,4,5,[[335,1,1,4,5]]],[23,2,2,5,7,[[792,2,2,5,7]]]],[4369,6853,9115,9141,10178,20087,20126]]]]},{"k":"H3646","v":[["cummin",[3,2,[[22,3,2,0,2,[[706,3,2,0,2]]]],[18189,18191]]]]},{"k":"H3647","v":[["store",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5792]]]]},{"k":"H3648","v":[["*",[4,4,[[0,1,1,0,1,[[42,1,1,0,1]]],[10,1,1,1,2,[[293,1,1,1,2]]],[24,1,1,2,3,[[801,1,1,2,3]]],[27,1,1,3,4,[[872,1,1,3,4]]]],[1320,8842,20452,22248]]],["black",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20452]]],["kindled",[1,1,[[27,1,1,0,1,[[872,1,1,0,1]]]],[22248]]],["yearn",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1320]]],["yearned",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8842]]]]},{"k":"H3649","v":[["*",[3,3,[[11,1,1,0,1,[[335,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]],[35,1,1,2,3,[[906,1,1,2,3]]]],[10170,22230,22791]]],["Chemarims",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22791]]],["priests",[2,2,[[11,1,1,0,1,[[335,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]]],[10170,22230]]]]},{"k":"H3650","v":[["blackness",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12909]]]]},{"k":"H3651","v":[["*",[769,735,[[0,57,56,0,56,[[0,6,6,0,6],[1,1,1,6,7],[3,1,1,7,8],[5,2,2,8,10],[9,1,1,10,11],[10,1,1,11,12],[14,1,1,12,13],[15,1,1,13,14],[17,2,1,14,15],[18,2,2,15,17],[19,1,1,17,18],[20,1,1,18,19],[22,1,1,19,20],[24,3,3,20,23],[25,1,1,23,24],[28,4,4,24,28],[29,2,2,28,30],[30,1,1,30,31],[31,2,2,31,33],[32,2,2,33,35],[33,1,1,35,36],[37,1,1,36,37],[40,2,2,37,39],[41,8,8,39,47],[42,1,1,47,48],[43,1,1,48,49],[44,2,2,49,51],[46,1,1,51,52],[47,1,1,52,53],[49,3,3,53,56]]],[1,51,49,56,105,[[50,2,1,56,57],[52,1,1,57,58],[54,2,2,58,60],[55,2,2,60,62],[56,5,5,62,67],[57,5,5,67,72],[59,5,4,72,76],[60,2,2,76,78],[61,2,2,78,80],[62,1,1,80,81],[63,1,1,81,82],[64,1,1,82,83],[65,2,2,83,85],[66,1,1,85,86],[69,1,1,86,87],[71,1,1,87,88],[72,1,1,88,89],[74,2,2,89,91],[75,3,3,91,94],[76,2,2,94,96],[83,1,1,96,97],[85,3,3,97,100],[86,1,1,100,101],[88,3,3,101,104],[89,1,1,104,105]]],[2,12,12,105,117,[[93,1,1,105,106],[97,1,1,106,107],[99,1,1,107,108],[103,1,1,108,109],[105,3,3,109,112],[106,1,1,112,113],[113,2,2,113,115],[116,2,2,115,117]]],[3,38,35,117,152,[[117,1,1,117,118],[118,3,2,118,120],[120,1,1,120,121],[121,2,1,121,122],[122,1,1,122,123],[124,6,5,123,128],[125,4,4,128,132],[126,1,1,132,133],[128,1,1,133,134],[129,1,1,134,135],[130,2,2,135,137],[131,2,2,137,139],[132,1,1,139,140],[133,1,1,140,141],[134,2,2,141,143],[136,1,1,143,144],[137,2,2,144,146],[141,1,1,146,147],[143,1,1,147,148],[148,2,2,148,150],[152,2,2,150,152]]],[4,24,22,152,174,[[155,1,1,152,153],[156,1,1,153,154],[157,1,1,154,155],[159,1,1,155,156],[160,1,1,156,157],[162,1,1,157,158],[164,4,4,158,162],[167,3,3,162,165],[170,1,1,165,166],[171,1,1,166,167],[172,1,1,167,168],[173,1,1,168,169],[174,4,2,169,171],[176,2,2,171,173],[180,1,1,173,174]]],[5,18,17,174,191,[[187,1,1,174,175],[188,2,2,175,177],[190,1,1,177,178],[191,1,1,178,179],[193,1,1,179,180],[194,1,1,180,181],[195,1,1,181,182],[196,4,4,182,186],[197,2,1,186,187],[200,2,2,187,189],[207,1,1,189,190],[209,1,1,190,191]]],[6,22,21,191,212,[[211,1,1,191,192],[212,1,1,192,193],[215,2,2,193,195],[216,4,4,195,199],[217,2,1,199,200],[218,1,1,200,201],[220,1,1,201,202],[221,2,2,202,204],[222,1,1,204,205],[224,1,1,205,206],[225,2,2,206,208],[226,1,1,208,209],[228,1,1,209,210],[231,2,2,210,212]]],[8,26,23,212,235,[[236,2,1,212,213],[237,1,1,213,214],[238,1,1,214,215],[240,2,2,215,217],[241,1,1,217,218],[243,1,1,218,219],[244,2,1,219,220],[245,2,2,220,222],[250,1,1,222,223],[254,1,1,223,224],[255,1,1,224,225],[258,2,2,225,227],[259,2,2,227,229],[260,1,1,229,230],[261,1,1,230,231],[262,1,1,231,232],[263,3,2,232,234],[265,1,1,234,235]]],[9,30,30,235,265,[[268,1,1,235,236],[269,2,2,236,238],[271,3,3,238,241],[273,3,3,241,244],[274,1,1,244,245],[275,1,1,245,246],[276,1,1,246,247],[278,1,1,247,248],[279,4,4,248,252],[280,1,1,252,253],[281,1,1,253,254],[282,3,3,254,257],[284,1,1,257,258],[286,2,2,258,260],[287,2,2,260,262],[288,1,1,262,263],[289,1,1,263,264],[290,1,1,264,265]]],[10,24,24,265,289,[[291,3,3,265,268],[292,2,2,268,270],[296,2,2,270,272],[297,1,1,272,273],[299,1,1,273,274],[300,3,3,274,277],[301,1,1,277,278],[302,1,1,278,279],[303,1,1,279,280],[304,2,2,280,282],[310,3,3,282,285],[312,4,4,285,289]]],[11,14,14,289,303,[[313,3,3,289,292],[314,1,1,292,293],[318,1,1,293,294],[319,2,2,294,296],[327,1,1,296,297],[328,1,1,297,298],[329,1,1,298,299],[330,1,1,299,300],[331,1,1,300,301],[333,1,1,301,302],[334,1,1,302,303]]],[12,10,10,303,313,[[348,1,1,303,304],[350,1,1,304,305],[351,1,1,305,306],[354,2,2,306,308],[355,1,1,308,309],[356,1,1,309,310],[357,2,2,310,312],[360,1,1,312,313]]],[13,20,19,313,332,[[367,3,2,313,315],[373,1,1,315,316],[374,1,1,316,317],[375,1,1,317,318],[382,1,1,318,319],[384,4,4,319,323],[386,3,3,323,326],[390,1,1,326,327],[398,3,3,327,330],[399,1,1,330,331],[401,1,1,331,332]]],[14,2,2,332,334,[[412,2,2,332,334]]],[15,6,6,334,340,[[414,1,1,334,335],[417,2,2,335,337],[418,2,2,337,339],[420,1,1,339,340]]],[16,13,11,340,351,[[426,2,2,340,342],[427,2,2,342,344],[428,1,1,344,345],[429,2,1,345,346],[431,1,1,346,347],[432,1,1,347,348],[434,4,3,348,351]]],[17,22,22,351,373,[[438,1,1,351,352],[440,1,1,352,353],[441,1,1,353,354],[442,2,2,354,356],[443,1,1,356,357],[444,3,3,357,360],[452,1,1,360,361],[455,2,2,361,363],[457,1,1,363,364],[458,1,1,364,365],[467,2,2,365,367],[469,3,3,367,370],[472,1,1,370,371],[477,2,2,371,373]]],[18,35,35,373,408,[[478,2,2,373,375],[493,1,1,375,376],[495,1,1,376,377],[502,1,1,377,378],[519,2,2,378,380],[522,3,3,380,383],[523,1,1,383,384],[525,3,3,384,387],[538,1,1,387,388],[540,2,2,388,390],[542,1,1,390,391],[550,2,2,391,393],[555,1,1,393,394],[560,1,1,394,395],[567,1,1,395,396],[580,1,1,396,397],[587,1,1,397,398],[596,5,5,398,403],[600,1,1,403,404],[604,2,2,404,406],[605,1,1,406,407],[624,1,1,407,408]]],[19,18,18,408,426,[[628,1,1,408,409],[633,2,2,409,411],[634,1,1,411,412],[637,1,1,412,413],[638,1,1,413,414],[642,1,1,414,415],[650,1,1,415,416],[651,2,2,416,418],[653,4,4,418,422],[654,2,2,422,424],[655,1,1,424,425],[657,1,1,425,426]]],[20,7,6,426,432,[[661,1,1,426,427],[663,2,2,427,429],[665,1,1,429,430],[666,3,2,430,432]]],[21,3,3,432,435,[[671,1,1,432,433],[672,2,2,433,435]]],[22,76,70,435,505,[[679,2,2,435,437],[683,4,4,437,441],[685,1,1,441,442],[686,1,1,442,443],[687,1,1,443,444],[688,5,4,444,448],[691,2,2,448,450],[692,1,1,450,451],[693,2,2,451,453],[694,4,4,453,457],[695,1,1,457,458],[698,2,2,458,460],[699,1,1,460,461],[700,1,1,461,462],[702,3,2,462,464],[703,1,1,464,465],[704,2,2,465,467],[705,2,2,467,469],[706,2,2,469,471],[707,3,3,471,474],[708,7,5,474,479],[709,2,2,479,481],[714,1,1,481,482],[715,1,1,482,483],[716,2,2,483,485],[725,1,1,485,486],[728,2,1,486,487],[729,2,2,487,489],[730,4,3,489,492],[731,1,1,492,493],[732,1,1,493,494],[733,2,2,494,496],[735,1,1,496,497],[737,1,1,497,498],[739,2,2,498,500],[741,1,1,500,501],[743,2,2,501,503],[744,2,2,503,505]]],[23,101,98,505,603,[[746,3,3,505,508],[747,1,1,508,509],[749,7,6,509,515],[750,4,4,515,519],[751,2,2,519,521],[752,3,3,521,524],[753,2,2,524,526],[754,1,1,526,527],[755,3,3,527,530],[756,1,1,530,531],[757,1,1,531,532],[758,2,2,532,534],[759,1,1,534,535],[760,3,3,535,538],[762,3,3,538,541],[763,2,2,541,543],[764,1,1,543,544],[765,1,1,544,545],[766,1,1,545,546],[767,8,8,546,554],[768,2,2,554,556],[769,1,1,556,557],[772,2,2,557,559],[773,2,2,559,561],[774,1,1,561,562],[775,3,3,562,565],[776,3,3,565,568],[777,1,1,568,569],[778,3,3,569,572],[779,2,2,572,574],[780,1,1,574,575],[782,2,2,575,577],[783,1,1,577,578],[786,4,4,578,582],[788,3,3,582,585],[790,1,1,585,586],[792,7,5,586,591],[793,4,4,591,595],[794,4,4,595,599],[795,4,4,599,603]]],[24,3,3,603,606,[[797,1,1,603,604],[799,2,2,604,606]]],[25,86,82,606,688,[[802,1,1,606,607],[806,4,4,607,611],[808,1,1,611,612],[812,5,5,612,617],[813,4,4,617,621],[814,5,4,621,625],[815,2,2,625,627],[816,2,1,627,628],[817,2,2,628,630],[818,1,1,630,631],[819,1,1,631,632],[821,3,3,632,635],[822,3,3,635,638],[823,5,4,638,642],[824,4,4,642,646],[825,2,2,646,648],[826,5,5,648,653],[827,1,1,653,654],[829,2,2,654,656],[830,3,3,656,659],[831,1,1,659,660],[832,2,2,660,662],[834,2,2,662,664],[835,4,4,664,668],[836,3,3,668,671],[837,8,8,671,679],[838,1,1,679,680],[839,1,1,680,681],[840,1,1,681,682],[841,1,1,682,683],[842,2,1,683,684],[843,2,2,684,686],[845,1,1,686,687],[846,1,1,687,688]]],[27,10,10,688,698,[[863,3,3,688,691],[865,3,3,691,694],[867,1,1,694,695],[872,1,1,695,696],[874,2,2,696,698]]],[28,2,2,698,700,[[877,2,2,698,700]]],[29,11,11,700,711,[[881,3,3,700,703],[882,2,2,703,705],[883,4,4,705,709],[884,1,1,709,710],[885,1,1,710,711]]],[31,1,1,711,712,[[892,1,1,711,712]]],[32,6,6,712,718,[[893,1,1,712,713],[894,2,2,713,715],[895,2,2,715,717],[897,1,1,717,718]]],[33,2,1,718,719,[[900,2,1,718,719]]],[34,5,4,719,723,[[903,5,4,719,723]]],[35,2,2,723,725,[[907,1,1,723,724],[908,1,1,724,725]]],[36,4,2,725,727,[[909,1,1,725,726],[910,3,1,726,727]]],[37,8,8,727,735,[[911,2,2,727,729],[917,1,1,729,730],[918,2,2,730,732],[920,1,1,732,733],[921,1,1,733,734],[924,1,1,734,735]]]],[6,8,10,14,23,29,54,94,141,159,243,275,374,395,429,465,479,501,544,590,680,684,688,725,821,823,829,830,836,845,921,948,960,970,977,987,1145,1208,1226,1263,1271,1272,1273,1277,1283,1285,1286,1301,1334,1373,1379,1442,1469,1509,1517,1518,1544,1599,1640,1649,1661,1664,1691,1695,1696,1705,1707,1717,1727,1728,1734,1736,1787,1788,1791,1806,1807,1814,1844,1866,1882,1893,1943,1964,1976,1989,2062,2143,2155,2204,2228,2239,2252,2259,2280,2283,2528,2577,2588,2595,2623,2696,2706,2707,2723,2815,2952,2990,3147,3217,3227,3229,3247,3465,3466,3582,3584,3658,3675,3692,3758,3796,3844,3942,3943,3954,3959,3961,3970,3979,3981,3982,4019,4066,4108,4136,4151,4167,4173,4205,4255,4281,4285,4323,4354,4367,4483,4561,4741,4749,4884,4889,4996,5009,5068,5130,5157,5195,5244,5262,5270,5271,5330,5334,5336,5398,5413,5442,5460,5473,5496,5543,5547,5674,5868,5873,5890,5918,5949,6002,6036,6063,6065,6087,6090,6103,6122,6192,6201,6423,6475,6516,6562,6638,6654,6674,6676,6692,6694,6711,6726,6824,6837,6839,6875,6919,6940,6948,6953,7005,7116,7125,7219,7270,7290,7324,7326,7341,7377,7404,7423,7430,7593,7730,7759,7827,7838,7844,7847,7886,7929,7936,7944,7960,8001,8050,8090,8109,8140,8152,8157,8197,8202,8207,8210,8238,8241,8317,8318,8329,8335,8352,8373,8390,8436,8445,8449,8492,8572,8575,8594,8598,8652,8658,8702,8747,8753,8754,8777,8808,8922,8929,8952,9060,9091,9099,9108,9116,9183,9193,9222,9228,9431,9433,9448,9488,9492,9499,9502,9537,9539,9549,9561,9698,9716,9727,9937,9974,9992,10045,10093,10131,10165,10680,10764,10785,10878,10888,10891,10908,10929,10930,11013,11206,11211,11346,11360,11383,11516,11549,11553,11560,11563,11588,11613,11622,11681,11892,11898,11906,11922,11978,12264,12268,12323,12394,12397,12407,12414,12510,12710,12715,12728,12736,12749,12778,12803,12812,12848,12853,12860,12905,12978,12981,13011,13017,13042,13053,13073,13086,13264,13328,13347,13399,13434,13634,13638,13693,13708,13710,13793,13925,13928,13943,13944,14101,14167,14259,14556,14561,14599,14604,14614,14616,14639,14642,14644,14827,14841,14843,14869,15026,15030,15134,15256,15390,15564,15793,16002,16017,16025,16026,16027,16100,16123,16125,16130,16371,16419,16555,16569,16590,16682,16707,16814,17051,17093,17108,17142,17143,17149,17160,17177,17188,17198,17271,17378,17399,17413,17435,17468,17469,17540,17556,17557,17678,17680,17752,17753,17763,17764,17796,17814,17846,17857,17861,17866,17874,17913,17919,17952,17964,17967,17975,17976,17978,17980,17993,18031,18033,18038,18056,18101,18110,18121,18144,18147,18160,18162,18178,18180,18201,18207,18215,18224,18229,18230,18233,18235,18254,18255,18336,18385,18403,18404,18614,18669,18679,18694,18702,18710,18711,18723,18732,18749,18751,18775,18809,18850,18854,18880,18905,18910,18935,18944,18974,18991,18998,19022,19060,19064,19072,19077,19085,19089,19096,19104,19107,19110,19139,19151,19159,19163,19165,19182,19190,19222,19237,19247,19248,19257,19277,19303,19308,19334,19350,19352,19357,19390,19397,19405,19413,19419,19433,19447,19472,19486,19491,19494,19496,19499,19514,19522,19523,19529,19532,19542,19624,19634,19663,19667,19683,19694,19711,19719,19759,19767,19773,19797,19806,19812,19818,19840,19842,19872,19899,19907,19935,19980,19990,19993,19995,20021,20033,20036,20071,20091,20092,20110,20111,20116,20129,20133,20147,20153,20184,20196,20205,20211,20219,20248,20259,20264,20318,20375,20378,20492,20553,20554,20556,20557,20597,20659,20660,20662,20671,20672,20687,20691,20703,20708,20716,20721,20728,20731,20735,20737,20760,20797,20799,20844,20879,20922,20925,20931,20948,20956,20968,20980,20995,20996,20998,21016,21029,21042,21051,21062,21065,21087,21090,21092,21096,21099,21103,21163,21164,21191,21193,21202,21226,21235,21240,21290,21305,21320,21322,21325,21333,21350,21355,21359,21362,21363,21364,21365,21366,21373,21381,21397,21409,21439,21473,21493,21533,21558,21563,21611,21650,22111,22114,22119,22136,22140,22146,22172,22242,22269,22272,22315,22339,22397,22406,22407,22415,22422,22434,22436,22437,22439,22457,22481,22570,22593,22598,22600,22614,22620,22636,22696,22735,22746,22747,22748,22814,22828,22850,22869,22884,22894,22975,22989,22991,23018,23039,23083]]],["+",[186,180,[[0,28,28,0,28,[[1,1,1,0,1],[9,1,1,1,2],[10,1,1,2,3],[14,1,1,3,4],[15,1,1,4,5],[17,1,1,5,6],[18,2,2,6,8],[19,1,1,8,9],[20,1,1,9,10],[24,2,2,10,12],[25,1,1,12,13],[28,2,2,13,15],[29,1,1,15,16],[30,1,1,16,17],[31,2,2,17,19],[32,2,2,19,21],[37,1,1,21,22],[40,1,1,22,23],[41,1,1,23,24],[43,1,1,24,25],[46,1,1,25,26],[49,2,2,26,28]]],[1,9,9,28,37,[[50,1,1,28,29],[54,2,2,29,31],[60,1,1,31,32],[62,1,1,32,33],[64,1,1,33,34],[65,1,1,34,35],[69,1,1,35,36],[83,1,1,36,37]]],[2,4,4,37,41,[[103,1,1,37,38],[105,2,2,38,40],[106,1,1,40,41]]],[3,5,5,41,46,[[126,1,1,41,42],[130,1,1,42,43],[134,1,1,43,44],[137,2,2,44,46]]],[4,7,7,46,53,[[157,1,1,46,47],[162,1,1,47,48],[167,2,2,48,50],[171,1,1,50,51],[176,2,2,51,53]]],[5,4,4,53,57,[[193,1,1,53,54],[194,1,1,54,55],[196,1,1,55,56],[200,1,1,56,57]]],[6,4,4,57,61,[[216,1,1,57,58],[225,1,1,58,59],[226,1,1,59,60],[228,1,1,60,61]]],[8,10,10,61,71,[[240,1,1,61,62],[244,1,1,62,63],[245,2,2,63,65],[254,1,1,65,66],[255,1,1,66,67],[258,1,1,67,68],[259,2,2,68,70],[263,1,1,70,71]]],[9,7,7,71,78,[[269,1,1,71,72],[271,2,2,72,74],[273,2,2,74,76],[287,1,1,76,77],[288,1,1,77,78]]],[10,2,2,78,80,[[299,1,1,78,79],[310,1,1,79,80]]],[12,3,3,80,83,[[348,1,1,80,81],[351,1,1,81,82],[354,1,1,82,83]]],[13,5,5,83,88,[[367,1,1,83,84],[373,1,1,84,85],[382,1,1,85,86],[386,1,1,86,87],[398,1,1,87,88]]],[16,3,2,88,90,[[434,3,2,88,90]]],[17,10,10,90,100,[[441,1,1,90,91],[444,2,2,91,93],[452,1,1,93,94],[455,1,1,94,95],[457,1,1,95,96],[458,1,1,96,97],[467,1,1,97,98],[469,1,1,98,99],[477,1,1,99,100]]],[18,13,13,100,113,[[478,1,1,100,101],[495,1,1,101,102],[502,1,1,102,103],[519,1,1,103,104],[522,3,3,104,107],[523,1,1,107,108],[587,1,1,108,109],[596,4,4,109,113]]],[19,2,2,113,115,[[633,1,1,113,114],[634,1,1,114,115]]],[20,2,2,115,117,[[663,1,1,115,116],[666,1,1,116,117]]],[21,1,1,117,118,[[671,1,1,117,118]]],[22,24,21,118,139,[[679,1,1,118,119],[683,1,1,119,120],[687,1,1,120,121],[691,2,2,121,123],[693,2,2,123,125],[694,2,2,125,127],[695,1,1,127,128],[699,1,1,128,129],[700,1,1,129,130],[702,3,2,130,132],[703,1,1,132,133],[705,1,1,133,134],[708,2,1,134,135],[728,2,1,135,136],[729,1,1,136,137],[735,1,1,137,138],[737,1,1,138,139]]],[23,20,19,139,158,[[749,2,2,139,141],[754,1,1,141,142],[756,1,1,142,143],[760,1,1,143,144],[764,1,1,144,145],[765,1,1,145,146],[773,1,1,146,147],[775,2,2,147,149],[778,1,1,149,150],[782,1,1,150,151],[788,1,1,151,152],[790,1,1,152,153],[792,4,3,153,156],[793,1,1,156,157],[795,1,1,157,158]]],[24,3,3,158,161,[[797,1,1,158,159],[799,2,2,159,161]]],[25,6,6,161,167,[[808,1,1,161,162],[823,1,1,162,163],[832,1,1,163,164],[842,1,1,164,165],[843,1,1,165,166],[845,1,1,166,167]]],[27,4,4,167,171,[[865,2,2,167,169],[867,1,1,169,170],[874,1,1,170,171]]],[28,1,1,171,172,[[877,1,1,171,172]]],[29,1,1,172,173,[[881,1,1,172,173]]],[31,1,1,173,174,[[892,1,1,173,174]]],[34,5,4,174,178,[[903,5,4,174,178]]],[36,1,1,178,179,[[909,1,1,178,179]]],[37,1,1,179,180,[[920,1,1,179,180]]]],[54,243,275,374,395,429,465,479,501,544,684,688,725,829,830,836,921,948,960,970,977,1145,1226,1273,1334,1442,1517,1518,1544,1640,1649,1807,1882,1943,1976,2062,2528,3147,3227,3229,3247,4019,4151,4281,4354,4367,5068,5195,5330,5334,5413,5543,5547,6002,6036,6090,6201,6676,6948,6953,7005,7324,7404,7423,7430,7730,7759,7838,7844,7847,7960,8109,8140,8152,8202,8207,8594,8652,9060,9431,10680,10785,10888,11206,11346,11516,11613,11898,12853,12860,12981,13053,13073,13264,13347,13399,13434,13634,13710,13928,13944,14167,14259,14561,14599,14604,14614,14616,15793,16002,16025,16026,16027,16555,16590,17399,17469,17540,17680,17764,17846,17913,17919,17964,17967,17978,17980,17993,18038,18056,18101,18110,18121,18162,18233,18669,18679,18775,18809,19064,19085,19222,19257,19352,19433,19447,19663,19694,19711,19812,19899,20033,20071,20091,20111,20116,20133,20219,20318,20375,20378,20597,20980,21235,21533,21558,21611,22136,22146,22172,22272,22339,22397,22570,22735,22746,22747,22748,22850,23018]]],["As",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16707]]],["Howbeit",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11906]]],["Likewise",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2143]]],["So",[21,21,[[0,1,1,0,1,[[17,1,1,0,1]]],[3,1,1,1,2,[[125,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[10,3,3,3,6,[[296,1,1,3,4],[302,1,1,4,5],[310,1,1,5,6]]],[17,2,2,6,8,[[442,1,1,6,7],[443,1,1,7,8]]],[18,3,3,8,11,[[538,1,1,8,9],[560,1,1,9,10],[567,1,1,10,11]]],[19,4,4,11,15,[[628,1,1,11,12],[633,1,1,12,13],[651,1,1,13,14],[653,1,1,14,15]]],[22,3,3,15,18,[[698,1,1,15,16],[730,1,1,16,17],[733,1,1,17,18]]],[23,1,1,18,19,[[768,1,1,18,19]]],[36,1,1,19,20,[[910,1,1,19,20]]],[37,1,1,20,21,[[918,1,1,20,21]]]],[429,3981,6654,8929,9183,9448,13011,13042,14827,15256,15390,16419,16569,17093,17160,18033,18711,18751,19532,22869,22991]]],["Such",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17271]]],["Surely",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7944]]],["Therefore",[142,142,[[0,2,2,0,2,[[3,1,1,0,1],[29,1,1,1,2]]],[6,2,2,2,4,[[218,1,1,2,3],[221,1,1,3,4]]],[8,1,1,4,5,[[263,1,1,4,5]]],[10,1,1,5,6,[[304,1,1,5,6]]],[11,2,2,6,8,[[331,1,1,6,7],[333,1,1,7,8]]],[13,1,1,8,9,[[384,1,1,8,9]]],[17,4,4,9,13,[[455,1,1,9,10],[467,1,1,10,11],[469,2,2,11,13]]],[18,4,4,13,17,[[493,1,1,13,14],[550,2,2,14,16],[555,1,1,16,17]]],[22,17,17,17,34,[[679,1,1,17,18],[683,3,3,18,21],[685,1,1,21,22],[688,2,2,22,24],[694,1,1,24,25],[706,1,1,25,26],[707,2,2,26,28],[708,1,1,28,29],[715,1,1,29,30],[729,1,1,30,31],[730,1,1,31,32],[731,1,1,32,33],[743,1,1,33,34]]],[23,44,44,34,78,[[750,2,2,34,36],[751,2,2,36,38],[752,1,1,38,39],[753,2,2,39,41],[755,3,3,41,44],[758,1,1,44,45],[759,1,1,45,46],[760,2,2,46,48],[762,2,2,48,50],[763,1,1,50,51],[766,1,1,51,52],[767,5,5,52,57],[769,1,1,57,58],[772,1,1,58,59],[773,1,1,59,60],[774,1,1,60,61],[776,1,1,61,62],[778,1,1,62,63],[779,2,2,63,65],[780,1,1,65,66],[788,2,2,66,68],[792,1,1,68,69],[793,3,3,69,72],[794,4,4,72,76],[795,2,2,76,78]]],[25,45,45,78,123,[[806,3,3,78,81],[812,4,4,81,85],[813,1,1,85,86],[814,3,3,86,89],[815,2,2,89,91],[816,1,1,91,92],[818,1,1,92,93],[819,1,1,93,94],[821,1,1,94,95],[822,1,1,95,96],[823,1,1,96,97],[824,2,2,97,99],[825,1,1,99,100],[826,3,3,100,103],[827,1,1,103,104],[829,1,1,104,105],[830,2,2,105,107],[831,1,1,107,108],[832,1,1,108,109],[835,3,3,109,112],[836,2,2,112,114],[837,6,6,114,120],[838,1,1,120,121],[839,1,1,121,122],[840,1,1,122,123]]],[27,4,4,123,127,[[863,3,3,123,126],[874,1,1,126,127]]],[29,6,6,127,133,[[881,1,1,127,128],[882,1,1,128,129],[883,2,2,129,131],[884,1,1,131,132],[885,1,1,132,133]]],[32,6,6,133,139,[[893,1,1,133,134],[894,2,2,134,136],[895,2,2,136,138],[897,1,1,138,139]]],[35,2,2,139,141,[[907,1,1,139,140],[908,1,1,140,141]]],[37,1,1,141,142,[[911,1,1,141,142]]]],[94,845,6726,6837,7944,9228,10093,10131,11560,13328,13638,13693,13708,14101,15026,15030,15134,17678,17752,17753,17763,17796,17866,17874,17976,18180,18207,18215,18230,18385,18694,18702,18723,18910,19107,19110,19139,19151,19163,19182,19190,19237,19247,19248,19308,19334,19350,19357,19397,19405,19413,19472,19486,19491,19499,19514,19523,19542,19634,19667,19683,19759,19818,19840,19842,19872,20021,20036,20092,20129,20147,20153,20184,20196,20205,20211,20248,20259,20553,20554,20556,20659,20662,20671,20672,20708,20716,20721,20731,20735,20737,20760,20844,20879,20922,20968,20995,21029,21042,21065,21092,21096,21099,21103,21163,21191,21202,21226,21240,21320,21322,21333,21350,21355,21362,21363,21364,21366,21373,21381,21409,21439,21473,22111,22114,22119,22269,22406,22422,22436,22439,22457,22481,22593,22598,22600,22614,22620,22636,22814,22828,22894]]],["Thus",[8,8,[[3,1,1,0,1,[[134,1,1,0,1]]],[4,1,1,1,2,[[172,1,1,1,2]]],[18,1,1,2,3,[[540,1,1,2,3]]],[22,1,1,3,4,[[725,1,1,3,4]]],[23,2,2,4,6,[[758,1,1,4,5],[763,1,1,5,6]]],[25,2,2,6,8,[[812,1,1,6,7],[834,1,1,7,8]]]],[4285,5442,14843,18614,19303,19419,20660,21290]]],["Wherefore",[16,16,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,1,1,1,2,[[141,1,1,1,2]]],[8,1,1,2,3,[[237,1,1,2,3]]],[22,2,2,3,5,[[706,1,1,3,4],[708,1,1,4,5]]],[23,4,4,5,9,[[746,1,1,5,6],[749,1,1,6,7],[767,1,1,7,8],[795,1,1,8,9]]],[25,7,7,9,16,[[806,1,1,9,10],[814,1,1,10,11],[817,1,1,11,12],[821,1,1,12,13],[824,1,1,13,14],[825,1,1,14,15],[834,1,1,15,16]]]],[1661,4483,7270,18178,18229,18974,19072,19496,20264,20557,20728,20797,20925,21016,21062,21305]]],["also",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6638]]],["aright",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19159]]],["as",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21563]]],["cause",[2,2,[[3,1,1,0,1,[[132,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]]],[4205,12407]]],["even",[2,2,[[23,2,2,0,2,[[783,1,1,0,1],[786,1,1,1,2]]]],[19935,19980]]],["like",[3,3,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,2,2,1,3,[[367,1,1,1,2],[375,1,1,2,3]]]],[9099,11206,11383]]],["likewise",[11,11,[[1,3,3,0,3,[[75,1,1,0,1],[76,1,1,1,2],[85,1,1,2,3]]],[4,2,2,3,5,[[167,1,1,3,4],[174,1,1,4,5]]],[6,1,1,5,6,[[217,1,1,5,6]]],[10,1,1,6,7,[[301,1,1,6,7]]],[12,1,1,7,8,[[360,1,1,7,8]]],[16,1,1,8,9,[[429,1,1,8,9]]],[25,1,1,9,10,[[841,1,1,9,10]]],[33,1,1,10,11,[[900,1,1,10,11]]]],[2239,2283,2577,5336,5473,6711,9116,11013,12778,21493,22696]]],["manner",[3,3,[[1,2,2,0,2,[[56,1,1,0,1],[72,1,1,1,2]]],[4,1,1,2,3,[[174,1,1,2,3]]]],[1696,2155,5473]]],["more",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1544]]],["right",[4,4,[[3,1,1,0,1,[[143,1,1,0,1]]],[6,1,1,1,2,[[222,1,1,1,2]]],[11,1,1,2,3,[[329,1,1,2,3]]],[23,1,1,3,4,[[767,1,1,3,4]]]],[4561,6875,9992,19494]]],["so",[267,259,[[0,16,16,0,16,[[0,6,6,0,6],[5,1,1,6,7],[24,1,1,7,8],[28,2,2,8,10],[40,1,1,10,11],[41,1,1,11,12],[42,1,1,12,13],[44,1,1,13,14],[47,1,1,14,15],[49,1,1,15,16]]],[1,25,25,16,41,[[55,1,1,16,17],[56,4,4,17,21],[57,5,5,21,26],[59,2,2,26,28],[61,2,2,28,30],[63,1,1,30,31],[65,1,1,31,32],[66,1,1,32,33],[74,2,2,33,35],[76,1,1,35,36],[86,1,1,36,37],[88,3,3,37,40],[89,1,1,40,41]]],[2,8,8,41,49,[[93,1,1,41,42],[97,1,1,42,43],[99,1,1,43,44],[105,1,1,44,45],[113,2,2,45,47],[116,2,2,47,49]]],[3,22,20,49,69,[[117,1,1,49,50],[118,3,2,50,52],[121,2,1,52,53],[122,1,1,53,54],[124,4,4,54,58],[125,2,2,58,60],[128,1,1,60,61],[129,1,1,61,62],[130,1,1,62,63],[131,2,2,63,65],[133,1,1,65,66],[148,2,2,66,68],[152,1,1,68,69]]],[4,12,12,69,81,[[155,1,1,69,70],[156,1,1,70,71],[159,1,1,71,72],[160,1,1,72,73],[164,4,4,73,77],[170,1,1,77,78],[174,2,2,78,80],[180,1,1,80,81]]],[5,12,11,81,92,[[187,1,1,81,82],[188,1,1,82,83],[190,1,1,83,84],[191,1,1,84,85],[195,1,1,85,86],[196,3,3,86,89],[197,2,1,89,90],[200,1,1,90,91],[209,1,1,91,92]]],[6,11,11,92,103,[[211,1,1,92,93],[212,1,1,93,94],[216,3,3,94,97],[217,1,1,97,98],[221,1,1,98,99],[224,1,1,99,100],[225,1,1,100,101],[231,2,2,101,103]]],[8,9,8,103,111,[[236,2,1,103,104],[240,1,1,104,105],[241,1,1,105,106],[243,1,1,106,107],[250,1,1,107,108],[260,1,1,108,109],[261,1,1,109,110],[265,1,1,110,111]]],[9,12,12,111,123,[[269,1,1,111,112],[271,1,1,112,113],[273,1,1,113,114],[275,1,1,114,115],[279,1,1,115,116],[280,1,1,116,117],[282,3,3,117,120],[286,2,2,120,122],[289,1,1,122,123]]],[10,14,14,123,137,[[291,3,3,123,126],[292,2,2,126,128],[296,1,1,128,129],[297,1,1,129,130],[300,1,1,130,131],[303,1,1,131,132],[304,1,1,132,133],[310,1,1,133,134],[312,3,3,134,137]]],[11,5,5,137,142,[[314,1,1,137,138],[319,1,1,138,139],[327,1,1,139,140],[328,1,1,140,141],[330,1,1,141,142]]],[12,3,3,142,145,[[350,1,1,142,143],[354,1,1,143,144],[357,1,1,144,145]]],[13,7,7,145,152,[[367,1,1,145,146],[374,1,1,146,147],[384,3,3,147,150],[398,1,1,150,151],[401,1,1,151,152]]],[14,2,2,152,154,[[412,2,2,152,154]]],[15,4,4,154,158,[[417,2,2,154,156],[418,1,1,156,157],[420,1,1,157,158]]],[16,9,9,158,167,[[426,2,2,158,160],[427,2,2,160,162],[428,1,1,162,163],[429,1,1,163,164],[431,1,1,164,165],[432,1,1,165,166],[434,1,1,166,167]]],[17,3,3,167,170,[[440,1,1,167,168],[442,1,1,168,169],[444,1,1,169,170]]],[18,12,12,170,182,[[478,1,1,170,171],[519,1,1,171,172],[525,3,3,172,175],[540,1,1,175,176],[542,1,1,176,177],[580,1,1,177,178],[600,1,1,178,179],[604,2,2,179,181],[624,1,1,181,182]]],[19,9,9,182,191,[[637,1,1,182,183],[642,1,1,183,184],[650,1,1,184,185],[651,1,1,185,186],[653,3,3,186,189],[654,2,2,189,191]]],[20,5,4,191,195,[[661,1,1,191,192],[663,1,1,192,193],[665,1,1,193,194],[666,2,1,194,195]]],[21,2,2,195,197,[[672,2,2,195,197]]],[22,21,20,197,217,[[688,3,2,197,199],[692,1,1,199,200],[694,1,1,200,201],[698,1,1,201,202],[704,1,1,202,203],[707,1,1,203,204],[709,2,2,204,206],[714,1,1,206,207],[716,2,2,207,209],[730,1,1,209,210],[732,1,1,210,211],[733,1,1,211,212],[739,1,1,212,213],[741,1,1,213,214],[743,1,1,214,215],[744,2,2,215,217]]],[23,19,18,217,235,[[746,1,1,217,218],[747,1,1,218,219],[749,3,3,219,222],[750,1,1,222,223],[757,1,1,223,224],[762,1,1,224,225],[768,1,1,225,226],[772,1,1,226,227],[775,1,1,227,228],[776,1,1,228,229],[777,1,1,229,230],[778,1,1,230,231],[782,1,1,231,232],[786,2,2,232,234],[792,2,1,234,235]]],[25,13,13,235,248,[[802,1,1,235,236],[813,2,2,236,238],[816,1,1,238,239],[821,1,1,239,240],[823,2,2,240,242],[824,1,1,242,243],[835,1,1,243,244],[836,1,1,244,245],[837,1,1,245,246],[842,1,1,246,247],[846,1,1,247,248]]],[27,2,2,248,250,[[865,1,1,248,249],[872,1,1,249,250]]],[28,1,1,250,251,[[877,1,1,250,251]]],[29,2,2,251,253,[[881,1,1,251,252],[883,1,1,252,253]]],[36,2,1,253,254,[[910,2,1,253,254]]],[37,5,5,254,259,[[911,1,1,254,255],[917,1,1,255,256],[918,1,1,256,257],[921,1,1,257,258],[924,1,1,258,259]]]],[6,8,10,14,23,29,159,680,821,823,1208,1272,1301,1379,1469,1509,1664,1691,1695,1705,1707,1717,1727,1728,1734,1736,1787,1788,1844,1866,1893,1964,1989,2204,2228,2280,2623,2696,2706,2707,2723,2815,2952,2990,3217,3465,3466,3582,3584,3658,3675,3692,3796,3844,3942,3943,3959,3961,3970,3979,4066,4108,4136,4167,4173,4255,4741,4749,4889,4996,5009,5130,5157,5244,5262,5270,5271,5398,5473,5496,5674,5868,5890,5918,5949,6063,6065,6087,6103,6122,6192,6475,6516,6562,6674,6692,6694,6711,6839,6919,6940,7116,7125,7219,7326,7341,7377,7593,7886,7929,8001,8090,8157,8197,8238,8352,8373,8436,8445,8449,8572,8575,8658,8747,8753,8754,8777,8808,8922,8952,9108,9193,9222,9433,9488,9492,9502,9561,9727,9937,9974,10045,10764,10878,10929,11211,11360,11549,11553,11563,11892,11978,12264,12268,12394,12397,12414,12510,12710,12715,12728,12736,12749,12778,12803,12812,12848,12978,13017,13086,13943,14556,14639,14642,14644,14841,14869,15564,16100,16123,16125,16371,16682,16814,17051,17108,17142,17143,17149,17177,17188,17378,17413,17435,17468,17556,17557,17857,17861,17952,17975,18031,18147,18201,18254,18255,18336,18403,18404,18710,18732,18749,18854,18880,18905,18935,18944,18991,19022,19077,19085,19089,19096,19277,19390,19529,19624,19719,19773,19797,19806,19907,19993,19995,20110,20492,20687,20691,20760,20931,20996,20998,21051,21325,21359,21397,21533,21650,22140,22242,22315,22407,22437,22869,22884,22975,22989,23039,23083]]],["state",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17198]]],["straightway",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7404]]],["such",[4,3,[[1,2,1,0,1,[[59,2,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[10,1,1,2,3,[[300,1,1,2,3]]]],[1791,8335,9091]]],["surely",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19060]]],["that",[11,11,[[0,2,2,0,2,[[5,1,1,0,1],[44,1,1,1,2]]],[1,2,2,2,4,[[52,1,1,2,3],[60,1,1,3,4]]],[3,4,4,4,8,[[120,1,1,4,5],[124,2,2,5,7],[125,1,1,7,8]]],[4,1,1,8,9,[[173,1,1,8,9]]],[8,1,1,9,10,[[258,1,1,9,10]]],[9,1,1,10,11,[[290,1,1,10,11]]]],[141,1373,1599,1814,3758,3954,3961,3982,5460,7827,8702]]],["therefore",[36,35,[[3,1,1,0,1,[[136,1,1,0,1]]],[8,1,1,1,2,[[238,1,1,1,2]]],[10,1,1,2,3,[[312,1,1,2,3]]],[11,4,4,3,7,[[313,3,3,3,6],[334,1,1,6,7]]],[17,2,2,7,9,[[472,1,1,7,8],[477,1,1,8,9]]],[18,1,1,9,10,[[596,1,1,9,10]]],[22,8,7,10,17,[[686,1,1,10,11],[704,1,1,11,12],[705,1,1,12,13],[708,3,2,13,15],[730,1,1,15,16],[739,1,1,16,17]]],[23,6,6,17,23,[[746,1,1,17,18],[750,1,1,18,19],[752,1,1,19,20],[767,1,1,20,21],[776,1,1,21,22],[786,1,1,22,23]]],[25,11,11,23,34,[[813,1,1,23,24],[814,1,1,24,25],[817,1,1,25,26],[822,2,2,26,28],[823,1,1,28,29],[826,2,2,29,31],[829,1,1,31,32],[830,1,1,32,33],[837,1,1,33,34]]],[29,1,1,34,35,[[883,1,1,34,35]]]],[4323,7290,9499,9537,9539,9549,10165,13793,13925,16017,17814,18144,18160,18224,18235,18702,18850,18998,19104,19165,19522,19767,19990,20703,20716,20799,20948,20956,20995,21087,21090,21164,21193,21365,22434]]],["thing",[2,2,[[0,1,1,0,1,[[33,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]]],[987,8329]]],["this",[17,17,[[0,1,1,0,1,[[22,1,1,0,1]]],[9,6,6,1,7,[[268,1,1,1,2],[274,1,1,2,3],[276,1,1,3,4],[279,1,1,4,5],[281,1,1,5,6],[287,1,1,6,7]]],[11,1,1,7,8,[[318,1,1,7,8]]],[12,3,3,8,11,[[355,1,1,8,9],[356,1,1,9,10],[357,1,1,10,11]]],[13,4,4,11,15,[[386,2,2,11,13],[390,1,1,13,14],[399,1,1,14,15]]],[17,1,1,15,16,[[438,1,1,15,16]]],[29,1,1,16,17,[[882,1,1,16,17]]]],[590,8050,8210,8241,8318,8390,8598,9698,10891,10908,10930,11588,11622,11681,11922,12905,22415]]],["thus",[11,11,[[0,1,1,0,1,[[41,1,1,0,1]]],[1,4,4,1,5,[[75,2,2,1,3],[85,2,2,3,5]]],[5,2,2,5,7,[[188,1,1,5,6],[207,1,1,6,7]]],[9,2,2,7,9,[[278,1,1,7,8],[284,1,1,8,9]]],[18,1,1,9,10,[[605,1,1,9,10]]],[33,1,1,10,11,[[900,1,1,10,11]]]],[1277,2252,2259,2588,2595,5873,6423,8317,8492,16130,22696]]],["true",[5,5,[[0,5,5,0,5,[[41,5,5,0,5]]]],[1263,1271,1283,1285,1286]]],["well",[3,3,[[1,1,1,0,1,[[59,1,1,0,1]]],[3,1,1,1,2,[[152,1,1,1,2]]],[11,1,1,2,3,[[319,1,1,2,3]]]],[1806,4884,9716]]],["wherefore",[2,2,[[6,1,1,0,1,[[220,1,1,0,1]]],[8,1,1,1,2,[[262,1,1,1,2]]]],[6824,7936]]],["yet",[1,1,[[15,1,1,0,1,[[414,1,1,0,1]]]],[12323]]]]},{"k":"H3652","v":[["*",[8,8,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]],[26,6,6,2,8,[[851,2,2,2,4],[853,1,1,4,5],[855,1,1,5,6],[856,2,2,6,8]]]],[12137,12153,21782,21783,21851,21911,21938,21956]]],["Thus",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21956]]],["thus",[7,7,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]],[26,5,5,2,7,[[851,2,2,2,4],[853,1,1,4,5],[855,1,1,5,6],[856,1,1,6,7]]]],[12137,12153,21782,21783,21851,21911,21938]]]]},{"k":"H3653","v":[["*",[17,17,[[0,2,2,0,2,[[39,1,1,0,1],[40,1,1,1,2]]],[1,7,7,2,9,[[79,2,2,2,4],[80,1,1,4,5],[84,1,1,5,6],[87,1,1,6,7],[88,1,1,7,8],[89,1,1,8,9]]],[2,1,1,9,10,[[97,1,1,9,10]]],[10,2,2,10,12,[[297,2,2,10,12]]],[22,1,1,12,13,[[711,1,1,12,13]]],[26,4,4,13,17,[[860,4,4,13,17]]]],[1185,1208,2400,2410,2429,2547,2641,2703,2718,2928,8963,8965,18302,22043,22056,22057,22074]]],["base",[2,2,[[10,2,2,0,2,[[297,2,2,0,2]]]],[8963,8965]]],["estate",[4,4,[[26,4,4,0,4,[[860,4,4,0,4]]]],[22043,22056,22057,22074]]],["foot",[8,8,[[1,7,7,0,7,[[79,2,2,0,2],[80,1,1,2,3],[84,1,1,3,4],[87,1,1,4,5],[88,1,1,5,6],[89,1,1,6,7]]],[2,1,1,7,8,[[97,1,1,7,8]]]],[2400,2410,2429,2547,2641,2703,2718,2928]]],["office",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1208]]],["place",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1185]]],["well",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18302]]]]},{"k":"H3654","v":[["lice",[6,4,[[1,5,3,0,3,[[57,5,3,0,3]]],[18,1,1,3,4,[[582,1,1,3,4]]]],[1726,1727,1728,15637]]]]},{"k":"H3655","v":[["*",[4,4,[[17,2,2,0,2,[[467,2,2,0,2]]],[22,2,2,2,4,[[722,1,1,2,3],[723,1,1,3,4]]]],[13649,13650,18538,18565]]],["surname",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18538]]],["surnamed",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18565]]],["titles",[2,2,[[17,2,2,0,2,[[467,2,2,0,2]]]],[13649,13650]]]]},{"k":"H3656","v":[["Canneh",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21144]]]]},{"k":"H3657","v":[["vineyard",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15213]]]]},{"k":"H3658","v":[["*",[42,41,[[0,2,2,0,2,[[3,1,1,0,1],[30,1,1,1,2]]],[8,3,3,2,5,[[245,1,1,2,3],[251,2,2,3,5]]],[9,1,1,5,6,[[272,1,1,5,6]]],[10,1,1,6,7,[[300,1,1,6,7]]],[12,8,8,7,15,[[350,1,1,7,8],[352,3,3,8,11],[353,1,1,11,12],[362,3,3,12,15]]],[13,4,4,15,19,[[371,1,1,15,16],[375,1,1,16,17],[386,1,1,17,18],[395,1,1,18,19]]],[15,1,1,19,20,[[424,1,1,19,20]]],[17,2,2,20,22,[[456,1,1,20,21],[465,1,1,21,22]]],[18,14,13,22,35,[[510,1,1,22,23],[520,1,1,23,24],[526,1,1,24,25],[534,1,1,25,26],[548,1,1,26,27],[558,1,1,27,28],[569,1,1,28,29],[575,2,1,29,30],[585,1,1,30,31],[614,1,1,31,32],[624,1,1,32,33],[626,1,1,33,34],[627,1,1,34,35]]],[22,5,5,35,40,[[683,1,1,35,36],[694,1,1,36,37],[701,1,1,37,38],[702,1,1,38,39],[708,1,1,39,40]]],[25,1,1,40,41,[[827,1,1,40,41]]]],[100,900,7423,7611,7618,8162,9091,10768,10807,10812,10819,10825,11047,11049,11052,11280,11375,11615,11816,12651,13367,13588,14368,14570,14652,14776,14998,15219,15414,15495,15744,16224,16358,16388,16397,17751,17980,18093,18103,18249,21113]]],["harp",[25,24,[[0,2,2,0,2,[[3,1,1,0,1],[30,1,1,1,2]]],[8,3,3,2,5,[[245,1,1,2,3],[251,2,2,3,5]]],[12,1,1,5,6,[[362,1,1,5,6]]],[17,2,2,6,8,[[456,1,1,6,7],[465,1,1,7,8]]],[18,13,12,8,20,[[510,1,1,8,9],[520,1,1,9,10],[526,1,1,10,11],[534,1,1,11,12],[548,1,1,12,13],[558,1,1,13,14],[569,1,1,14,15],[575,2,1,15,16],[585,1,1,16,17],[624,1,1,17,18],[626,1,1,18,19],[627,1,1,19,20]]],[22,4,4,20,24,[[683,1,1,20,21],[694,1,1,21,22],[701,1,1,22,23],[702,1,1,23,24]]]],[100,900,7423,7611,7618,11049,13367,13588,14368,14570,14652,14776,14998,15219,15414,15495,15744,16358,16388,16397,17751,17980,18093,18103]]],["harps",[17,17,[[9,1,1,0,1,[[272,1,1,0,1]]],[10,1,1,1,2,[[300,1,1,1,2]]],[12,7,7,2,9,[[350,1,1,2,3],[352,3,3,3,6],[353,1,1,6,7],[362,2,2,7,9]]],[13,4,4,9,13,[[371,1,1,9,10],[375,1,1,10,11],[386,1,1,11,12],[395,1,1,12,13]]],[15,1,1,13,14,[[424,1,1,13,14]]],[18,1,1,14,15,[[614,1,1,14,15]]],[22,1,1,15,16,[[708,1,1,15,16]]],[25,1,1,16,17,[[827,1,1,16,17]]]],[8162,9091,10768,10807,10812,10819,10825,11047,11052,11280,11375,11615,11816,12651,16224,18249,21113]]]]},{"k":"H3659","v":[["Coniah",[3,3,[[23,3,3,0,3,[[766,2,2,0,2],[781,1,1,2,3]]]],[19478,19482,19875]]]]},{"k":"H3660","v":[["*",[5,5,[[14,5,5,0,5,[[406,1,1,0,1],[407,3,3,1,4],[408,1,1,4,5]]]],[12118,12138,12143,12145,12164]]],["manner",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12138]]],["so",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12164]]],["sort",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12118]]],["thus",[2,2,[[14,2,2,0,2,[[407,2,2,0,2]]]],[12143,12145]]]]},{"k":"H3661","v":[]},{"k":"H3662","v":[["Chenani",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12515]]]]},{"k":"H3663","v":[["Chenaniah",[3,3,[[12,3,3,0,3,[[352,2,2,0,2],[363,1,1,2,3]]]],[10813,10818,11106]]]]},{"k":"H3664","v":[["*",[11,11,[[12,1,1,0,1,[[359,1,1,0,1]]],[15,1,1,1,2,[[424,1,1,1,2]]],[16,1,1,2,3,[[429,1,1,2,3]]],[18,2,2,3,5,[[510,1,1,3,4],[624,1,1,4,5]]],[20,3,3,5,8,[[660,2,2,5,7],[661,1,1,7,8]]],[22,1,1,8,9,[[706,1,1,8,9]]],[25,2,2,9,11,[[823,1,1,9,10],[840,1,1,10,11]]]],[10966,12668,12778,14373,16353,17341,17359,17364,18184,20997,21476]]],["+",[3,3,[[12,1,1,0,1,[[359,1,1,0,1]]],[16,1,1,1,2,[[429,1,1,1,2]]],[20,1,1,2,3,[[661,1,1,2,3]]]],[10966,12778,17364]]],["gather",[2,2,[[15,1,1,0,1,[[424,1,1,0,1]]],[25,1,1,1,2,[[823,1,1,1,2]]]],[12668,20997]]],["gathered",[2,2,[[20,1,1,0,1,[[660,1,1,0,1]]],[25,1,1,1,2,[[840,1,1,1,2]]]],[17341,21476]]],["gathereth",[1,1,[[18,1,1,0,1,[[510,1,1,0,1]]]],[14373]]],["himself",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18184]]],["together",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16353]]],["up",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17359]]]]},{"k":"H3665","v":[["*",[36,32,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[161,1,1,1,2]]],[6,4,4,2,6,[[213,1,1,2,3],[214,1,1,3,4],[218,1,1,4,5],[221,1,1,5,6]]],[8,1,1,6,7,[[242,1,1,6,7]]],[9,1,1,7,8,[[274,1,1,7,8]]],[10,2,1,8,9,[[311,2,1,8,9]]],[11,1,1,9,10,[[334,1,1,9,10]]],[12,3,3,10,13,[[354,1,1,10,11],[355,1,1,11,12],[357,1,1,12,13]]],[13,16,13,13,26,[[373,1,1,13,14],[378,4,3,14,17],[379,1,1,17,18],[394,1,1,18,19],[396,1,1,19,20],[398,1,1,20,21],[399,4,3,21,24],[400,2,1,24,25],[402,1,1,25,26]]],[15,1,1,26,27,[[421,1,1,26,27]]],[17,1,1,27,28,[[475,1,1,27,28]]],[18,3,3,28,31,[[558,1,1,28,29],[583,1,1,29,30],[584,1,1,30,31]]],[22,1,1,31,32,[[703,1,1,31,32]]]],[3565,5160,6598,6622,6747,6862,7365,8210,9480,10164,10873,10891,10930,11338,11443,11444,11449,11471,11783,11838,11901,11920,11927,11931,11960,12005,12535,13876,15231,15693,15711,18123]]],["+",[4,4,[[12,1,1,0,1,[[354,1,1,0,1]]],[13,3,3,1,4,[[394,1,1,1,2],[399,1,1,2,3],[402,1,1,3,4]]]],[10873,11783,11931,12005]]],["down",[3,3,[[4,1,1,0,1,[[161,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]],[22,1,1,2,3,[[703,1,1,2,3]]]],[5160,15711,18123]]],["himself",[6,5,[[10,2,1,0,1,[[311,2,1,0,1]]],[13,4,4,1,5,[[378,1,1,1,2],[398,1,1,2,3],[399,2,2,3,5]]]],[9480,11449,11901,11920,11931]]],["humbled",[2,2,[[2,1,1,0,1,[[115,1,1,0,1]]],[13,1,1,1,2,[[399,1,1,1,2]]]],[3565,11927]]],["low",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13876]]],["subdued",[9,9,[[6,4,4,0,4,[[213,1,1,0,1],[214,1,1,1,2],[218,1,1,2,3],[221,1,1,3,4]]],[8,1,1,4,5,[[242,1,1,4,5]]],[9,1,1,5,6,[[274,1,1,5,6]]],[12,2,2,6,8,[[355,1,1,6,7],[357,1,1,7,8]]],[18,1,1,8,9,[[558,1,1,8,9]]]],[6598,6622,6747,6862,7365,8210,10891,10930,15231]]],["subduedst",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12535]]],["subjection",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15693]]],["themselves",[5,4,[[13,5,4,0,4,[[373,1,1,0,1],[378,3,2,1,3],[396,1,1,3,4]]]],[11338,11443,11444,11838]]],["thyself",[3,2,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,2,1,1,2,[[400,2,1,1,2]]]],[10164,11960]]],["under",[1,1,[[13,1,1,0,1,[[379,1,1,0,1]]]],[11471]]]]},{"k":"H3666","v":[["wares",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19218]]]]},{"k":"H3667","v":[["*",[93,90,[[0,46,45,0,45,[[8,5,5,0,5],[9,2,2,5,7],[10,1,1,7,8],[11,2,1,8,9],[12,1,1,9,10],[15,1,1,10,11],[16,1,1,11,12],[22,2,2,12,14],[27,3,3,14,17],[30,1,1,17,18],[32,1,1,18,19],[34,1,1,19,20],[35,3,3,20,23],[36,1,1,23,24],[41,5,5,24,29],[43,1,1,29,30],[44,2,2,30,32],[45,3,3,32,35],[46,5,5,35,40],[47,2,2,40,42],[48,1,1,42,43],[49,2,2,43,45]]],[1,3,3,45,48,[[55,1,1,45,46],[64,1,1,46,47],[65,1,1,47,48]]],[2,3,3,48,51,[[103,1,1,48,49],[107,1,1,49,50],[114,1,1,50,51]]],[3,12,11,51,62,[[129,2,2,51,53],[142,1,1,53,54],[148,2,2,54,56],[149,2,2,56,58],[150,3,2,58,60],[151,2,2,60,62]]],[4,1,1,62,63,[[184,1,1,62,63]]],[5,8,8,63,71,[[191,1,1,63,64],[200,1,1,64,65],[207,1,1,65,66],[208,4,4,66,70],[210,1,1,70,71]]],[6,7,6,71,77,[[213,1,1,71,72],[214,4,3,72,75],[215,1,1,75,76],[231,1,1,76,77]]],[12,3,3,77,80,[[338,2,2,77,79],[353,1,1,79,80]]],[18,3,3,80,83,[[582,1,1,80,81],[583,1,1,81,82],[612,1,1,82,83]]],[22,2,2,83,85,[[697,1,1,83,84],[701,1,1,84,85]]],[25,2,2,85,87,[[817,1,1,85,86],[818,1,1,86,87]]],[27,1,1,87,88,[[873,1,1,87,88]]],[35,2,2,88,90,[[906,1,1,88,89],[907,1,1,89,90]]]],[223,227,230,231,232,240,249,297,303,330,384,405,573,590,774,779,781,891,978,1017,1042,1045,1046,1084,1257,1259,1265,1281,1284,1332,1375,1383,1392,1398,1417,1421,1424,1433,1434,1435,1454,1458,1503,1511,1519,1659,1935,1982,3145,3254,3507,4077,4092,4508,4748,4750,4800,4811,4818,4845,4855,4859,5807,5946,6188,6383,6435,6436,6437,6458,6479,6569,6601,6622,6623,6642,7114,10260,10265,10838,15617,15689,16186,18022,18088,20791,20829,22259,22798,22810]]],["+",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]]],[1042,1659]]],["Canaan",[87,84,[[0,45,44,0,44,[[8,5,5,0,5],[9,2,2,5,7],[10,1,1,7,8],[11,2,1,8,9],[12,1,1,9,10],[15,1,1,10,11],[16,1,1,11,12],[22,2,2,12,14],[27,3,3,14,17],[30,1,1,17,18],[32,1,1,18,19],[34,1,1,19,20],[35,2,2,20,22],[36,1,1,22,23],[41,5,5,23,28],[43,1,1,28,29],[44,2,2,29,31],[45,3,3,31,34],[46,5,5,34,39],[47,2,2,39,41],[48,1,1,41,42],[49,2,2,42,44]]],[1,2,2,44,46,[[64,1,1,44,45],[65,1,1,45,46]]],[2,3,3,46,49,[[103,1,1,46,47],[107,1,1,47,48],[114,1,1,48,49]]],[3,12,11,49,60,[[129,2,2,49,51],[142,1,1,51,52],[148,2,2,52,54],[149,2,2,54,56],[150,3,2,56,58],[151,2,2,58,60]]],[4,1,1,60,61,[[184,1,1,60,61]]],[5,8,8,61,69,[[191,1,1,61,62],[200,1,1,62,63],[207,1,1,63,64],[208,4,4,64,68],[210,1,1,68,69]]],[6,7,6,69,75,[[213,1,1,69,70],[214,4,3,70,73],[215,1,1,73,74],[231,1,1,74,75]]],[12,3,3,75,78,[[338,2,2,75,77],[353,1,1,77,78]]],[18,3,3,78,81,[[582,1,1,78,79],[583,1,1,79,80],[612,1,1,80,81]]],[22,1,1,81,82,[[697,1,1,81,82]]],[25,1,1,82,83,[[817,1,1,82,83]]],[35,1,1,83,84,[[907,1,1,83,84]]]],[223,227,230,231,232,240,249,297,303,330,384,405,573,590,774,779,781,891,978,1017,1045,1046,1084,1257,1259,1265,1281,1284,1332,1375,1383,1392,1398,1417,1421,1424,1433,1434,1435,1454,1458,1503,1511,1519,1935,1982,3145,3254,3507,4077,4092,4508,4748,4750,4800,4811,4818,4845,4855,4859,5807,5946,6188,6383,6435,6436,6437,6458,6479,6569,6601,6622,6623,6642,7114,10260,10265,10838,15617,15689,16186,18022,20791,22810]]],["merchant",[3,3,[[22,1,1,0,1,[[701,1,1,0,1]]],[27,1,1,1,2,[[873,1,1,1,2]]],[35,1,1,2,3,[[906,1,1,2,3]]]],[18088,22259,22798]]],["traffick",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20829]]]]},{"k":"H3668","v":[["Chenaanah",[5,5,[[10,2,2,0,2,[[312,2,2,0,2]]],[12,1,1,2,3,[[344,1,1,2,3]]],[13,2,2,3,5,[[384,2,2,3,5]]]],[9491,9504,10545,11552,11565]]]]},{"k":"H3669","v":[["*",[74,72,[[0,11,11,0,11,[[9,2,2,0,2],[11,1,1,2,3],[12,1,1,3,4],[14,1,1,4,5],[23,2,2,5,7],[33,1,1,7,8],[37,1,1,8,9],[45,1,1,9,10],[49,1,1,10,11]]],[1,9,9,11,20,[[52,2,2,11,13],[55,1,1,13,14],[62,2,2,14,16],[72,2,2,16,18],[82,1,1,18,19],[83,1,1,19,20]]],[3,7,7,20,27,[[129,1,1,20,21],[130,3,3,21,24],[137,2,2,24,26],[149,1,1,26,27]]],[4,4,4,27,31,[[153,1,1,27,28],[159,1,1,28,29],[163,1,1,29,30],[172,1,1,30,31]]],[5,15,14,31,45,[[189,1,1,31,32],[191,1,1,32,33],[193,1,1,33,34],[195,1,1,34,35],[197,1,1,35,36],[198,1,1,36,37],[199,2,2,37,39],[202,2,1,39,40],[203,4,4,40,44],[210,1,1,44,45]]],[6,16,15,45,60,[[211,14,13,45,58],[213,2,2,58,60]]],[9,1,1,60,61,[[290,1,1,60,61]]],[10,1,1,61,62,[[299,1,1,61,62]]],[12,1,1,62,63,[[339,1,1,62,63]]],[14,1,1,63,64,[[411,1,1,63,64]]],[15,2,2,64,66,[[421,2,2,64,66]]],[17,1,1,66,67,[[476,1,1,66,67]]],[19,1,1,67,68,[[658,1,1,67,68]]],[22,1,1,68,69,[[701,1,1,68,69]]],[25,1,1,69,70,[[817,1,1,69,70]]],[30,1,1,70,71,[[888,1,1,70,71]]],[37,1,1,71,72,[[924,1,1,71,72]]]],[252,253,304,325,381,594,628,1010,1121,1396,1517,1587,1596,1670,1872,1878,2167,2172,2475,2507,4104,4133,4151,4153,4341,4343,4800,4899,5112,5238,5444,5903,5935,5985,6038,6110,6138,6157,6158,6275,6287,6288,6291,6293,6487,6510,6512,6513,6514,6518,6519,6526,6536,6537,6538,6539,6541,6542,6571,6573,8699,9067,10309,12238,12519,12535,13894,17308,18085,20765,22530,23089]]],["Canaan",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20765]]],["Canaanite",[12,12,[[0,3,3,0,3,[[11,1,1,0,1],[12,1,1,1,2],[37,1,1,2,3]]],[1,3,3,3,6,[[72,1,1,3,4],[82,1,1,4,5],[83,1,1,5,6]]],[3,2,2,6,8,[[137,1,1,6,7],[149,1,1,7,8]]],[5,3,3,8,11,[[195,1,1,8,9],[197,1,1,9,10],[199,1,1,10,11]]],[37,1,1,11,12,[[924,1,1,11,12]]]],[304,325,1121,2172,2475,2507,4341,4800,6038,6110,6157,23089]]],["Canaanites",[55,53,[[0,7,7,0,7,[[9,2,2,0,2],[14,1,1,2,3],[23,2,2,3,5],[33,1,1,5,6],[49,1,1,6,7]]],[1,5,5,7,12,[[52,2,2,7,9],[62,2,2,9,11],[72,1,1,11,12]]],[3,5,5,12,17,[[129,1,1,12,13],[130,3,3,13,16],[137,1,1,16,17]]],[4,4,4,17,21,[[153,1,1,17,18],[159,1,1,18,19],[163,1,1,19,20],[172,1,1,20,21]]],[5,12,11,21,32,[[189,1,1,21,22],[191,1,1,22,23],[193,1,1,23,24],[198,1,1,24,25],[199,1,1,25,26],[202,2,1,26,27],[203,4,4,27,31],[210,1,1,31,32]]],[6,16,15,32,47,[[211,14,13,32,45],[213,2,2,45,47]]],[9,1,1,47,48,[[290,1,1,47,48]]],[10,1,1,48,49,[[299,1,1,48,49]]],[14,1,1,49,50,[[411,1,1,49,50]]],[15,2,2,50,52,[[421,2,2,50,52]]],[30,1,1,52,53,[[888,1,1,52,53]]]],[252,253,381,594,628,1010,1517,1587,1596,1872,1878,2167,4104,4133,4151,4153,4343,4899,5112,5238,5444,5903,5935,5985,6138,6158,6275,6287,6288,6291,6293,6487,6510,6512,6513,6514,6518,6519,6526,6536,6537,6538,6539,6541,6542,6571,6573,8699,9067,12238,12519,12535,22530]]],["Canaanitess",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10309]]],["merchant",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17308]]],["merchants",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13894]]],["traffickers",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18085]]],["woman",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]]],[1396,1670]]]]},{"k":"H3670","v":[["corner",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18237]]]]},{"k":"H3671","v":[["*",[109,85,[[0,2,2,0,2,[[0,1,1,0,1],[6,1,1,1,2]]],[1,5,3,2,5,[[68,1,1,2,3],[74,2,1,3,4],[86,2,1,4,5]]],[2,1,1,5,6,[[90,1,1,5,6]]],[3,2,1,6,7,[[131,2,1,6,7]]],[4,5,5,7,12,[[156,1,1,7,8],[174,2,2,8,10],[179,1,1,10,11],[184,1,1,11,12]]],[7,2,2,12,14,[[233,1,1,12,13],[234,1,1,13,14]]],[8,5,4,14,18,[[250,1,1,14,15],[259,4,3,15,18]]],[9,1,1,18,19,[[288,1,1,18,19]]],[10,12,4,19,23,[[296,10,2,19,21],[298,2,2,21,23]]],[13,10,5,23,28,[[369,8,3,23,26],[371,2,2,26,28]]],[17,4,4,28,32,[[472,1,1,28,29],[473,1,1,29,30],[474,2,2,30,32]]],[18,12,12,32,44,[[494,1,1,32,33],[495,1,1,33,34],[513,1,1,34,35],[534,1,1,35,36],[538,1,1,36,37],[540,1,1,37,38],[545,1,1,38,39],[555,1,1,39,40],[568,1,1,40,41],[581,1,1,41,42],[616,1,1,42,43],[625,1,1,43,44]]],[19,2,2,44,46,[[628,1,1,44,45],[650,1,1,45,46]]],[20,1,1,46,47,[[668,1,1,46,47]]],[22,7,6,47,53,[[684,2,1,47,48],[686,1,1,48,49],[688,1,1,49,50],[689,1,1,50,51],[696,1,1,51,52],[702,1,1,52,53]]],[23,3,3,53,56,[[746,1,1,53,54],[792,1,1,54,55],[793,1,1,55,56]]],[25,26,23,56,79,[[802,9,7,56,63],[804,1,1,63,64],[806,1,1,64,65],[808,1,1,65,66],[811,7,6,66,72],[812,1,1,72,73],[817,1,1,73,74],[818,3,3,74,77],[840,2,2,77,79]]],[26,1,1,79,80,[[858,1,1,79,80]]],[27,1,1,80,81,[[865,1,1,80,81]]],[36,2,1,81,82,[[910,2,1,81,82]]],[37,4,2,82,84,[[915,3,1,82,83],[918,1,1,83,84]]],[38,1,1,84,85,[[928,1,1,84,85]]]],[20,173,2030,2215,2613,2762,4191,5021,5482,5500,5605,5769,7161,7181,7587,7843,7844,7850,8613,8920,8923,8991,8992,11240,11241,11242,11275,11276,13772,13806,13847,13860,14111,14128,14445,14769,14823,14846,14913,15140,15399,15574,16248,16381,16417,17049,17513,17771,17815,17864,17896,17998,18111,18999,20120,20149,20470,20472,20473,20475,20487,20488,20489,20515,20549,20579,20638,20641,20645,20649,20652,20654,20677,20770,20828,20832,20848,21452,21465,22015,22152,22867,22945,22999,23140]]],["+",[5,4,[[10,1,1,0,1,[[296,1,1,0,1]]],[19,1,1,1,2,[[628,1,1,1,2]]],[22,3,2,2,4,[[684,2,1,2,3],[702,1,1,3,4]]]],[8923,16417,17771,18111]]],["borders",[2,1,[[3,2,1,0,1,[[131,2,1,0,1]]]],[4191]]],["corners",[2,2,[[22,1,1,0,1,[[689,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]]],[17896,20579]]],["ends",[2,2,[[17,2,2,0,2,[[472,1,1,0,1],[473,1,1,1,2]]]],[13772,13806]]],["feathered",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[25,1,1,1,2,[[840,1,1,1,2]]]],[15140,21465]]],["flying",[1,1,[[18,1,1,0,1,[[625,1,1,0,1]]]],[16381]]],["one",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8923]]],["other",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8920]]],["overspreading",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22015]]],["quarters",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5482]]],["skirt",[12,10,[[4,2,2,0,2,[[174,1,1,0,1],[179,1,1,1,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[8,5,4,3,7,[[250,1,1,3,4],[259,4,3,4,7]]],[25,1,1,7,8,[[817,1,1,7,8]]],[36,2,1,8,9,[[910,2,1,8,9]]],[37,1,1,9,10,[[918,1,1,9,10]]]],[5500,5605,7181,7587,7843,7844,7850,20770,22867,22999]]],["skirts",[2,2,[[23,1,1,0,1,[[746,1,1,0,1]]],[25,1,1,1,2,[[806,1,1,1,2]]]],[18999,20549]]],["sort",[2,2,[[0,1,1,0,1,[[6,1,1,0,1]]],[25,1,1,1,2,[[840,1,1,1,2]]]],[173,21452]]],["wing",[13,6,[[10,5,2,0,2,[[296,5,2,0,2]]],[13,6,2,2,4,[[369,6,2,2,4]]],[22,1,1,4,5,[[688,1,1,4,5]]],[25,1,1,5,6,[[818,1,1,5,6]]]],[8920,8923,11240,11241,17864,20848]]],["winged",[2,2,[[0,1,1,0,1,[[0,1,1,0,1]]],[4,1,1,1,2,[[156,1,1,1,2]]]],[20,5021]]],["wings",[60,52,[[1,5,3,0,3,[[68,1,1,0,1],[74,2,1,1,2],[86,2,1,2,3]]],[2,1,1,3,4,[[90,1,1,3,4]]],[4,1,1,4,5,[[184,1,1,4,5]]],[7,1,1,5,6,[[233,1,1,5,6]]],[9,1,1,6,7,[[288,1,1,6,7]]],[10,4,3,7,10,[[296,2,1,7,8],[298,2,2,8,10]]],[13,4,4,10,14,[[369,2,2,10,12],[371,2,2,12,14]]],[17,2,2,14,16,[[474,2,2,14,16]]],[18,10,10,16,26,[[494,1,1,16,17],[495,1,1,17,18],[513,1,1,18,19],[534,1,1,19,20],[538,1,1,20,21],[540,1,1,21,22],[545,1,1,22,23],[568,1,1,23,24],[581,1,1,24,25],[616,1,1,25,26]]],[19,1,1,26,27,[[650,1,1,26,27]]],[20,1,1,27,28,[[668,1,1,27,28]]],[22,2,2,28,30,[[686,1,1,28,29],[696,1,1,29,30]]],[23,2,2,30,32,[[792,1,1,30,31],[793,1,1,31,32]]],[25,20,17,32,49,[[802,9,7,32,39],[804,1,1,39,40],[811,7,6,40,46],[812,1,1,46,47],[818,2,2,47,49]]],[27,1,1,49,50,[[865,1,1,49,50]]],[37,3,1,50,51,[[915,3,1,50,51]]],[38,1,1,51,52,[[928,1,1,51,52]]]],[2030,2215,2613,2762,5769,7161,8613,8923,8991,8992,11240,11242,11275,11276,13847,13860,14111,14128,14445,14769,14823,14846,14913,15399,15574,16248,17049,17513,17815,17998,20120,20149,20470,20472,20473,20475,20487,20488,20489,20515,20638,20641,20645,20649,20652,20654,20677,20828,20832,22152,22945,23140]]]]},{"k":"H3672","v":[["*",[7,7,[[3,1,1,0,1,[[150,1,1,0,1]]],[4,1,1,1,2,[[155,1,1,1,2]]],[5,4,4,2,6,[[197,1,1,2,3],[198,1,1,3,4],[199,1,1,4,5],[205,1,1,5,6]]],[10,1,1,6,7,[[305,1,1,6,7]]]],[4827,4992,6109,6133,6181,6356,9269]]],["+",[1,1,[[4,1,1,0,1,[[155,1,1,0,1]]]],[4992]]],["Chinnereth",[3,3,[[3,1,1,0,1,[[150,1,1,0,1]]],[5,2,2,1,3,[[199,1,1,1,2],[205,1,1,2,3]]]],[4827,6181,6356]]],["Chinneroth",[2,2,[[5,2,2,0,2,[[197,1,1,0,1],[198,1,1,1,2]]]],[6109,6133]]],["Cinneroth",[1,1,[[10,1,1,0,1,[[305,1,1,0,1]]]],[9269]]]]},{"k":"H3673","v":[["together",[3,3,[[26,3,3,0,3,[[852,3,3,0,3]]]],[21809,21810,21834]]]]},{"k":"H3674","v":[["companions",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12117]]]]},{"k":"H3675","v":[["companions",[7,7,[[14,7,7,0,7,[[406,3,3,0,3],[407,2,2,3,5],[408,2,2,5,7]]]],[12119,12127,12133,12137,12140,12157,12164]]]]},{"k":"H3676","v":[["*",[2,2,[[1,1,1,0,1,[[66,1,1,0,1]]],[6,1,1,1,2,[[229,1,1,1,2]]]],[1999,7040]]],["+",[1,1,[[1,1,1,0,1,[[66,1,1,0,1]]]],[1999]]],["which",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7040]]]]},{"k":"H3677","v":[["appointed",[2,2,[[18,1,1,0,1,[[558,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]]],[15220,16595]]]]},{"k":"H3678","v":[["*",[135,124,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,2,2,1,3,[[60,1,1,1,2],[61,1,1,2,3]]],[4,1,1,3,4,[[169,1,1,3,4]]],[6,1,1,4,5,[[213,1,1,4,5]]],[8,4,4,5,9,[[236,1,1,5,6],[237,1,1,6,7],[239,2,2,7,9]]],[9,4,4,9,13,[[269,1,1,9,10],[273,2,2,10,12],[280,1,1,12,13]]],[10,34,29,13,42,[[291,13,11,13,24],[292,7,6,24,30],[293,1,1,30,31],[295,1,1,31,32],[297,1,1,32,33],[298,2,2,33,35],[299,2,1,35,36],[300,4,3,36,39],[306,1,1,39,40],[312,2,2,40,42]]],[11,8,7,42,49,[[316,1,1,42,43],[322,2,2,43,45],[323,1,1,45,46],[325,1,1,46,47],[327,1,1,47,48],[337,2,1,48,49]]],[12,5,5,49,54,[[354,2,2,49,51],[359,1,1,51,52],[365,1,1,52,53],[366,1,1,53,54]]],[13,10,9,54,63,[[372,2,2,54,56],[373,1,1,56,57],[375,4,3,57,60],[384,2,2,60,62],[389,1,1,62,63]]],[15,1,1,63,64,[[415,1,1,63,64]]],[16,3,3,64,67,[[426,1,1,64,65],[428,1,1,65,66],[430,1,1,66,67]]],[17,2,2,67,69,[[461,1,1,67,68],[471,1,1,68,69]]],[18,18,17,69,86,[[486,2,2,69,71],[488,1,1,71,72],[522,1,1,72,73],[524,1,1,73,74],[566,5,5,74,79],[570,1,1,79,80],[571,1,1,80,81],[574,1,1,81,82],[580,1,1,82,83],[599,2,1,83,84],[609,2,2,84,86]]],[19,6,6,86,92,[[636,1,1,86,87],[643,1,1,87,88],[647,2,2,88,90],[652,1,1,90,91],[656,1,1,91,92]]],[22,8,8,92,100,[[684,1,1,92,93],[687,1,1,93,94],[692,2,2,94,96],[694,1,1,96,97],[700,1,1,97,98],[725,1,1,98,99],[744,1,1,99,100]]],[23,17,16,100,116,[[745,1,1,100,101],[747,1,1,101,102],[757,1,1,102,103],[758,1,1,103,104],[761,2,2,104,106],[766,3,3,106,109],[773,1,1,109,110],[777,2,2,110,112],[780,1,1,112,113],[787,1,1,113,114],[793,1,1,114,115],[796,2,1,115,116]]],[24,1,1,116,117,[[801,1,1,116,117]]],[25,5,4,117,121,[[802,2,1,117,118],[811,1,1,118,119],[827,1,1,119,120],[844,1,1,120,121]]],[31,1,1,121,122,[[891,1,1,121,122]]],[36,1,1,122,123,[[910,1,1,122,123]]],[37,2,1,123,124,[[916,2,1,123,124]]]],[1235,1811,1845,5382,6588,7221,7248,7310,7315,8091,8193,8196,8365,8730,8734,8737,8741,8744,8747,8752,8754,8763,8764,8765,8774,8782,8789,8794,8803,8815,8822,8883,8941,9005,9010,9056,9088,9097,9098,9294,9490,9499,9613,9796,9823,9848,9884,9937,10250,10875,10877,10974,11148,11187,11292,11298,11342,11372,11381,11382,11551,11560,11676,12334,12704,12748,12780,13476,13743,14025,14028,14063,14603,14633,15330,15340,15355,15362,15370,15428,15451,15480,15568,16094,16162,16163,16652,16852,16962,16982,17118,17238,17770,17836,17937,17941,17974,18075,18600,18923,18961,19019,19279,19314,19369,19382,19456,19458,19484,19651,19792,19796,19872,20007,20165,20308,20461,20490,20634,21116,21579,22564,22877,22960]]],["+",[5,4,[[10,3,2,0,2,[[291,3,2,0,2]]],[22,1,1,2,3,[[692,1,1,2,3]]],[31,1,1,3,4,[[891,1,1,3,4]]]],[8754,8764,17937,22564]]],["seat",[7,7,[[6,1,1,0,1,[[213,1,1,0,1]]],[8,3,3,1,4,[[236,1,1,1,2],[239,2,2,2,4]]],[10,1,1,4,5,[[292,1,1,4,5]]],[16,1,1,5,6,[[428,1,1,5,6]]],[19,1,1,6,7,[[636,1,1,6,7]]]],[6588,7221,7310,7315,8789,12748,16652]]],["stool",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9613]]],["throne",[119,112,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,2,2,1,3,[[60,1,1,1,2],[61,1,1,2,3]]],[4,1,1,3,4,[[169,1,1,3,4]]],[8,1,1,4,5,[[237,1,1,4,5]]],[9,4,4,5,9,[[269,1,1,5,6],[273,2,2,6,8],[280,1,1,8,9]]],[10,30,28,9,37,[[291,10,10,9,19],[292,6,6,19,25],[293,1,1,25,26],[295,1,1,26,27],[297,1,1,27,28],[298,2,2,28,30],[299,2,1,30,31],[300,4,3,31,34],[306,1,1,34,35],[312,2,2,35,37]]],[11,7,6,37,43,[[322,2,2,37,39],[323,1,1,39,40],[325,1,1,40,41],[327,1,1,41,42],[337,2,1,42,43]]],[12,5,5,43,48,[[354,2,2,43,45],[359,1,1,45,46],[365,1,1,46,47],[366,1,1,47,48]]],[13,10,9,48,57,[[372,2,2,48,50],[373,1,1,50,51],[375,4,3,51,54],[384,2,2,54,56],[389,1,1,56,57]]],[15,1,1,57,58,[[415,1,1,57,58]]],[16,2,2,58,60,[[426,1,1,58,59],[430,1,1,59,60]]],[17,2,2,60,62,[[461,1,1,60,61],[471,1,1,61,62]]],[18,16,16,62,78,[[486,2,2,62,64],[488,1,1,64,65],[522,1,1,65,66],[524,1,1,66,67],[566,5,5,67,72],[570,1,1,72,73],[571,1,1,73,74],[574,1,1,74,75],[580,1,1,75,76],[609,2,2,76,78]]],[19,5,5,78,83,[[643,1,1,78,79],[647,2,2,79,81],[652,1,1,81,82],[656,1,1,82,83]]],[22,7,7,83,90,[[684,1,1,83,84],[687,1,1,84,85],[692,1,1,85,86],[694,1,1,86,87],[700,1,1,87,88],[725,1,1,88,89],[744,1,1,89,90]]],[23,17,16,90,106,[[745,1,1,90,91],[747,1,1,91,92],[757,1,1,92,93],[758,1,1,93,94],[761,2,2,94,96],[766,3,3,96,99],[773,1,1,99,100],[777,2,2,100,102],[780,1,1,102,103],[787,1,1,103,104],[793,1,1,104,105],[796,2,1,105,106]]],[24,1,1,106,107,[[801,1,1,106,107]]],[25,4,3,107,110,[[802,2,1,107,108],[811,1,1,108,109],[844,1,1,109,110]]],[36,1,1,110,111,[[910,1,1,110,111]]],[37,2,1,111,112,[[916,2,1,111,112]]]],[1235,1811,1845,5382,7248,8091,8193,8196,8365,8730,8734,8737,8741,8744,8747,8752,8763,8764,8765,8774,8782,8789,8794,8803,8815,8822,8883,8941,9005,9010,9056,9088,9097,9098,9294,9490,9499,9796,9823,9848,9884,9937,10250,10875,10877,10974,11148,11187,11292,11298,11342,11372,11381,11382,11551,11560,11676,12334,12704,12780,13476,13743,14025,14028,14063,14603,14633,15330,15340,15355,15362,15370,15428,15451,15480,15568,16162,16163,16852,16962,16982,17118,17238,17770,17836,17941,17974,18075,18600,18923,18961,19019,19279,19314,19369,19382,19456,19458,19484,19651,19792,19796,19872,20007,20165,20308,20461,20490,20634,21579,22877,22960]]],["thrones",[3,2,[[18,2,1,0,1,[[599,2,1,0,1]]],[25,1,1,1,2,[[827,1,1,1,2]]]],[16094,21116]]]]},{"k":"H3679","v":[["Chaldean",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12146]]]]},{"k":"H3680","v":[["*",[152,149,[[0,8,8,0,8,[[6,2,2,0,2],[8,1,1,2,3],[17,1,1,3,4],[23,1,1,4,5],[36,1,1,5,6],[37,2,2,6,8]]],[1,15,15,8,23,[[57,1,1,8,9],[59,2,2,9,11],[63,1,1,11,12],[64,2,2,12,14],[65,1,1,14,15],[70,1,1,15,16],[73,2,2,16,18],[75,1,1,18,19],[77,1,1,19,20],[78,2,2,20,22],[89,1,1,22,23]]],[2,9,9,23,32,[[92,3,3,23,26],[93,1,1,26,27],[96,1,1,27,28],[102,2,2,28,30],[105,1,1,30,31],[106,1,1,31,32]]],[3,12,12,32,44,[[120,6,6,32,38],[125,2,2,38,40],[132,2,2,40,42],[138,2,2,42,44]]],[4,3,3,44,47,[[165,1,1,44,45],[174,1,1,45,46],[175,1,1,46,47]]],[5,1,1,47,48,[[210,1,1,47,48]]],[6,2,2,48,50,[[214,2,2,48,50]]],[8,1,1,50,51,[[254,1,1,50,51]]],[10,5,5,51,56,[[291,1,1,51,52],[297,3,3,52,55],[301,1,1,55,56]]],[11,2,2,56,58,[[331,2,2,56,58]]],[12,1,1,58,59,[[358,1,1,58,59]]],[13,3,3,59,62,[[370,2,2,59,61],[371,1,1,61,62]]],[15,1,1,62,63,[[416,1,1,62,63]]],[17,11,11,63,74,[[444,1,1,63,64],[450,1,1,64,65],[451,1,1,65,66],[456,1,1,66,67],[457,1,1,67,68],[458,1,1,68,69],[466,1,1,69,70],[468,1,1,70,71],[471,2,2,71,73],[473,1,1,73,74]]],[18,17,17,74,91,[[509,2,2,74,76],[517,1,1,76,77],[521,2,2,77,79],[532,1,1,79,80],[546,1,1,80,81],[555,1,1,81,82],[557,1,1,82,83],[562,1,1,83,84],[581,2,2,84,86],[583,2,2,86,88],[617,1,1,88,89],[620,1,1,89,90],[624,1,1,90,91]]],[19,11,11,91,102,[[637,4,4,91,95],[638,1,1,95,96],[639,2,2,96,98],[644,1,1,98,99],[651,1,1,99,100],[653,1,1,100,101],[655,1,1,101,102]]],[20,1,1,102,103,[[664,1,1,102,103]]],[22,12,11,103,114,[[684,2,1,103,104],[689,1,1,104,105],[704,1,1,105,106],[707,1,1,106,107],[715,2,2,107,109],[729,1,1,109,110],[736,1,1,110,111],[737,1,1,111,112],[738,2,2,112,114]]],[23,4,4,114,118,[[747,1,1,114,115],[790,1,1,115,116],[795,2,2,116,118]]],[25,22,20,118,138,[[802,3,2,118,120],[808,1,1,120,121],[813,2,2,121,123],[817,3,3,123,126],[819,2,2,126,128],[825,2,2,128,130],[827,2,2,130,132],[831,1,1,132,133],[832,1,1,133,134],[833,2,1,134,135],[839,2,2,135,137],[842,1,1,137,138]]],[27,2,2,138,140,[[863,1,1,138,139],[871,1,1,139,140]]],[30,1,1,140,141,[[888,1,1,140,141]]],[31,2,2,141,143,[[891,2,2,141,143]]],[32,1,1,143,144,[[899,1,1,143,144]]],[34,3,3,144,147,[[904,2,2,144,146],[905,1,1,146,147]]],[38,2,2,147,149,[[926,2,2,147,149]]]],[178,179,228,441,656,1109,1133,1134,1716,1782,1792,1917,1925,1930,1960,2110,2192,2193,2248,2335,2349,2358,2741,2781,2787,2792,2803,2882,3064,3065,3214,3248,3748,3751,3752,3754,3755,3758,3980,3981,4227,4236,4380,4386,5280,5482,5513,6483,6617,6618,7719,8718,8952,8975,8976,9137,10062,10063,10950,11258,11259,11276,12364,13075,13230,13256,13381,13400,13436,13621,13667,13766,13768,13827,14356,14360,14535,14586,14590,14737,14942,15166,15208,15273,15577,15580,15662,15668,16272,16302,16359,16662,16667,16668,16674,16701,16735,16742,16882,17110,17167,17209,17421,17771,17893,18151,18203,18353,18354,18689,18793,18806,18823,18827,19027,20053,20254,20263,20475,20487,20595,20686,20692,20770,20772,20780,20856,20865,21063,21064,21110,21119,21222,21245,21255,21434,21441,21542,22114,22233,22520,22564,22566,22674,22762,22765,22771,23116,23119]]],["+",[46,46,[[0,2,2,0,2,[[8,1,1,0,1],[36,1,1,1,2]]],[1,9,9,2,11,[[57,1,1,2,3],[59,2,2,3,5],[63,1,1,5,6],[65,1,1,6,7],[73,1,1,7,8],[78,2,2,8,10],[89,1,1,10,11]]],[2,8,8,11,19,[[92,3,3,11,14],[93,1,1,14,15],[96,1,1,15,16],[102,2,2,16,18],[105,1,1,18,19]]],[3,6,6,19,25,[[120,3,3,19,22],[125,1,1,22,23],[138,2,2,23,25]]],[4,2,2,25,27,[[165,1,1,25,26],[175,1,1,26,27]]],[10,3,3,27,30,[[297,3,3,27,30]]],[13,3,3,30,33,[[370,2,2,30,32],[371,1,1,32,33]]],[15,1,1,33,34,[[416,1,1,33,34]]],[17,1,1,34,35,[[456,1,1,34,35]]],[18,3,3,35,38,[[521,1,1,35,36],[583,1,1,36,37],[620,1,1,37,38]]],[19,1,1,38,39,[[637,1,1,38,39]]],[22,1,1,39,40,[[704,1,1,39,40]]],[25,3,3,40,43,[[802,1,1,40,41],[825,1,1,41,42],[832,1,1,42,43]]],[27,1,1,43,44,[[863,1,1,43,44]]],[34,1,1,44,45,[[904,1,1,44,45]]],[38,1,1,45,46,[[926,1,1,45,46]]]],[228,1109,1716,1782,1792,1917,1960,2192,2349,2358,2741,2781,2787,2792,2803,2882,3064,3065,3214,3748,3752,3758,3980,4380,4386,5280,5513,8952,8975,8976,11258,11259,11276,12364,13381,14590,15668,16302,16668,18151,20475,21063,21245,22114,22762,23116]]],["Cover",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22233]]],["closed",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4227]]],["clothed",[1,1,[[12,1,1,0,1,[[358,1,1,0,1]]]],[10950]]],["concealeth",[2,2,[[19,2,2,0,2,[[638,1,1,0,1],[639,1,1,1,2]]]],[16701,16742]]],["cover",[30,29,[[1,3,3,0,3,[[70,1,1,0,1],[75,1,1,1,2],[77,1,1,2,3]]],[2,1,1,3,4,[[106,1,1,3,4]]],[3,3,3,4,7,[[120,3,3,4,7]]],[17,3,3,7,10,[[451,1,1,7,8],[457,1,1,8,9],[473,1,1,9,10]]],[18,2,2,10,12,[[581,1,1,10,11],[617,1,1,11,12]]],[22,4,4,12,16,[[689,1,1,12,13],[736,1,1,13,14],[738,2,2,14,16]]],[23,1,1,16,17,[[790,1,1,16,17]]],[25,10,9,17,26,[[808,1,1,17,18],[813,2,2,18,20],[827,2,2,20,22],[831,1,1,22,23],[833,2,1,23,24],[839,2,2,24,26]]],[30,1,1,26,27,[[888,1,1,26,27]]],[32,1,1,27,28,[[899,1,1,27,28]]],[34,1,1,28,29,[[904,1,1,28,29]]]],[2110,2248,2335,3248,3751,3754,3755,13256,13400,13827,15580,16272,17893,18793,18823,18827,20053,20595,20686,20692,21110,21119,21222,21255,21434,21441,22520,22674,22765]]],["covered",[44,42,[[0,4,4,0,4,[[6,2,2,0,2],[37,2,2,2,4]]],[1,3,3,4,7,[[64,2,2,4,6],[73,1,1,6,7]]],[3,2,2,7,9,[[125,1,1,7,8],[132,1,1,8,9]]],[5,1,1,9,10,[[210,1,1,9,10]]],[6,2,2,10,12,[[214,2,2,10,12]]],[8,1,1,12,13,[[254,1,1,12,13]]],[10,1,1,13,14,[[291,1,1,13,14]]],[11,1,1,14,15,[[331,1,1,14,15]]],[17,2,2,15,17,[[458,1,1,15,16],[466,1,1,16,17]]],[18,6,6,17,23,[[509,1,1,17,18],[521,1,1,18,19],[546,1,1,19,20],[557,1,1,20,21],[562,1,1,21,22],[583,1,1,22,23]]],[19,2,2,23,25,[[651,1,1,23,24],[653,1,1,24,25]]],[20,1,1,25,26,[[664,1,1,25,26]]],[22,5,4,26,30,[[684,2,1,26,27],[707,1,1,27,28],[715,1,1,28,29],[729,1,1,29,30]]],[23,2,2,30,32,[[795,2,2,30,32]]],[25,8,7,32,39,[[802,2,1,32,33],[817,2,2,33,35],[819,2,2,35,37],[825,1,1,37,38],[842,1,1,38,39]]],[31,2,2,39,41,[[891,2,2,39,41]]],[34,1,1,41,42,[[905,1,1,41,42]]]],[178,179,1133,1134,1925,1930,2193,3981,4236,6483,6617,6618,7719,8718,10063,13436,13621,14356,14586,14942,15208,15273,15662,17110,17167,17421,17771,18203,18354,18689,20254,20263,20487,20770,20772,20856,20865,21064,21542,22564,22566,22771]]],["coveredst",[2,2,[[18,1,1,0,1,[[581,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[15577,20780]]],["coverest",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5482]]],["covereth",[12,12,[[17,4,4,0,4,[[444,1,1,0,1],[450,1,1,1,2],[471,2,2,2,4]]],[18,1,1,4,5,[[624,1,1,4,5]]],[19,5,5,5,10,[[637,2,2,5,7],[639,1,1,7,8],[644,1,1,8,9],[655,1,1,9,10]]],[23,1,1,10,11,[[747,1,1,10,11]]],[38,1,1,11,12,[[926,1,1,11,12]]]],[13075,13230,13766,13768,16359,16662,16667,16735,16882,17209,19027,23119]]],["herself",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[656]]],["hid",[2,2,[[18,2,2,0,2,[[509,1,1,0,1],[517,1,1,1,2]]]],[14360,14535]]],["hide",[2,2,[[0,1,1,0,1,[[17,1,1,0,1]]],[17,1,1,1,2,[[468,1,1,1,2]]]],[441,13667]]],["hideth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16674]]],["himself",[3,3,[[10,1,1,0,1,[[301,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]]],[9137,10062,18353]]],["overwhelmed",[2,2,[[18,2,2,0,2,[[532,1,1,0,1],[555,1,1,1,2]]]],[14737,15166]]],["themselves",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18806]]]]},{"k":"H3681","v":[["covering",[2,2,[[3,2,2,0,2,[[120,2,2,0,2]]]],[3749,3757]]]]},{"k":"H3682","v":[["*",[8,8,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,2,2,1,3,[[70,1,1,1,2],[71,1,1,2,3]]],[4,1,1,3,4,[[174,1,1,3,4]]],[17,3,3,4,7,[[459,1,1,4,5],[461,1,1,5,6],[466,1,1,6,7]]],[22,1,1,7,8,[[728,1,1,7,8]]]],[511,2087,2140,5482,13443,13473,13607,18665]]],["covering",[6,6,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[17,3,3,2,5,[[459,1,1,2,3],[461,1,1,3,4],[466,1,1,4,5]]],[22,1,1,5,6,[[728,1,1,5,6]]]],[511,2140,13443,13473,13607,18665]]],["raiment",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2087]]],["vesture",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5482]]]]},{"k":"H3683","v":[["*",[2,2,[[18,1,1,0,1,[[557,1,1,0,1]]],[22,1,1,1,2,[[711,1,1,1,2]]]],[15214,18291]]],["down",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15214]]],["up",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18291]]]]},{"k":"H3684","v":[["*",[70,69,[[18,3,3,0,3,[[526,1,1,0,1],[569,1,1,1,2],[571,1,1,2,3]]],[19,49,49,3,52,[[628,2,2,3,5],[630,1,1,5,6],[635,1,1,6,7],[637,3,3,7,10],[639,1,1,10,11],[640,3,3,11,14],[641,5,5,14,19],[642,4,4,19,23],[644,6,6,23,29],[645,3,3,29,32],[646,4,4,32,36],[648,1,1,36,37],[650,1,1,37,38],[653,11,11,38,49],[655,1,1,49,50],[656,2,2,50,52]]],[20,18,17,52,69,[[660,4,3,52,55],[662,2,2,55,57],[663,3,3,57,60],[664,1,1,60,61],[665,4,4,61,65],[667,1,1,65,66],[668,3,3,66,69]]]],[14658,15417,15439,16422,16432,16490,16607,16657,16674,16679,16742,16763,16766,16767,16779,16780,16788,16796,16805,16809,16814,16821,16827,16883,16885,16889,16894,16897,16898,16903,16907,16908,16926,16935,16938,16954,17004,17053,17142,17144,17145,17146,17147,17148,17149,17150,17151,17152,17153,17222,17235,17244,17347,17348,17349,17386,17394,17398,17400,17401,17425,17433,17434,17435,17438,17492,17495,17505,17508]]],["fool",[34,33,[[18,2,2,0,2,[[526,1,1,0,1],[569,1,1,1,2]]],[19,24,24,2,26,[[637,2,2,2,4],[640,1,1,4,5],[641,1,1,5,6],[644,5,5,6,11],[645,1,1,11,12],[646,2,2,12,14],[650,1,1,14,15],[653,8,8,15,23],[655,1,1,23,24],[656,2,2,24,26]]],[20,8,7,26,33,[[660,4,3,26,29],[662,1,1,29,30],[664,1,1,30,31],[665,1,1,31,32],[668,1,1,32,33]]]],[14658,15417,16674,16679,16763,16788,16883,16885,16889,16894,16897,16903,16926,16935,17053,17142,17145,17146,17147,17149,17151,17152,17153,17222,17235,17244,17347,17348,17349,17386,17425,17435,17505]]],["fool's",[5,5,[[19,3,3,0,3,[[645,2,2,0,2],[653,1,1,2,3]]],[20,2,2,3,5,[[663,1,1,3,4],[668,1,1,4,5]]]],[16907,16908,17144,17400,17495]]],["foolish",[9,9,[[19,7,7,0,7,[[637,1,1,0,1],[641,1,1,1,2],[642,2,2,2,4],[644,1,1,4,5],[646,1,1,5,6],[648,1,1,6,7]]],[20,2,2,7,9,[[662,1,1,7,8],[668,1,1,8,9]]]],[16657,16779,16814,16827,16898,16938,17004,17394,17508]]],["fools",[22,22,[[18,1,1,0,1,[[571,1,1,0,1]]],[19,15,15,1,16,[[628,2,2,1,3],[630,1,1,3,4],[635,1,1,4,5],[639,1,1,5,6],[640,2,2,6,8],[641,3,3,8,11],[642,2,2,11,13],[646,1,1,13,14],[653,2,2,14,16]]],[20,6,6,16,22,[[663,2,2,16,18],[665,3,3,18,21],[667,1,1,21,22]]]],[15439,16422,16432,16490,16607,16742,16766,16767,16780,16796,16805,16809,16821,16954,17148,17150,17398,17401,17433,17434,17438,17492]]]]},{"k":"H3685","v":[["*",[4,4,[[17,2,2,0,2,[[444,1,1,0,1],[473,1,1,1,2]]],[22,1,1,2,3,[[691,1,1,2,3]]],[29,1,1,3,4,[[883,1,1,3,4]]]],[13060,13824,17916,22431]]],["Orion",[3,3,[[17,2,2,0,2,[[444,1,1,0,1],[473,1,1,1,2]]],[29,1,1,2,3,[[883,1,1,2,3]]]],[13060,13824,22431]]],["constellations",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17916]]]]},{"k":"H3686","v":[["Chesil",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6232]]]]},{"k":"H3687","v":[["foolish",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16651]]]]},{"k":"H3688","v":[["foolish",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19209]]]]},{"k":"H3689","v":[["*",[13,13,[[2,5,5,0,5,[[92,3,3,0,3],[93,1,1,3,4],[96,1,1,4,5]]],[17,3,3,5,8,[[443,1,1,5,6],[450,1,1,6,7],[466,1,1,7,8]]],[18,3,3,8,11,[[515,1,1,8,9],[526,1,1,9,10],[555,1,1,10,11]]],[19,1,1,11,12,[[630,1,1,11,12]]],[20,1,1,12,13,[[665,1,1,12,13]]]],[2782,2788,2793,2804,2883,13043,13230,13612,14497,14661,15120,16481,17454]]],["confidence",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16481]]],["flanks",[6,6,[[2,5,5,0,5,[[92,3,3,0,3],[93,1,1,3,4],[96,1,1,4,5]]],[17,1,1,5,6,[[450,1,1,5,6]]]],[2782,2788,2793,2804,2883,13230]]],["folly",[2,2,[[18,1,1,0,1,[[526,1,1,0,1]]],[20,1,1,1,2,[[665,1,1,1,2]]]],[14661,17454]]],["hope",[3,3,[[17,2,2,0,2,[[443,1,1,0,1],[466,1,1,1,2]]],[18,1,1,2,3,[[555,1,1,2,3]]]],[13043,13612,15120]]],["loins",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14497]]]]},{"k":"H3690","v":[["*",[2,2,[[17,1,1,0,1,[[439,1,1,0,1]]],[18,1,1,1,2,[[562,1,1,1,2]]]],[12936,15279]]],["confidence",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12936]]],["folly",[1,1,[[18,1,1,0,1,[[562,1,1,0,1]]]],[15279]]]]},{"k":"H3691","v":[["Chisleu",[2,2,[[15,1,1,0,1,[[413,1,1,0,1]]],[37,1,1,1,2,[[917,1,1,1,2]]]],[12297,22963]]]]},{"k":"H3692","v":[["Chislon",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4837]]]]},{"k":"H3693","v":[["Chesalon",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6212]]]]},{"k":"H3694","v":[["Chesulloth",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6339]]]]},{"k":"H3695","v":[["Casluhim",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[248,10264]]]]},{"k":"H3696","v":[["Chislothtabor",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6333]]]]},{"k":"H3697","v":[["+",[2,1,[[25,2,1,0,1,[[845,2,1,0,1]]]],[21619]]]]},{"k":"H3698","v":[["*",[3,3,[[1,1,1,0,1,[[58,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]],[25,1,1,2,3,[[805,1,1,2,3]]]],[1774,18189,20538]]],["fitches",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20538]]],["rie",[2,2,[[1,1,1,0,1,[[58,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]]],[1774,18189]]]]},{"k":"H3699","v":[["count",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1820]]]]},{"k":"H3700","v":[["*",[6,5,[[0,2,1,0,1,[[30,2,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[18,2,2,2,4,[[494,1,1,2,3],[561,1,1,3,4]]],[35,1,1,4,5,[[907,1,1,4,5]]]],[903,13196,14115,15261,22806]]],["+",[2,1,[[0,2,1,0,1,[[30,2,1,0,1]]]],[903]]],["desire",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13196]]],["desired",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22806]]],["greedy",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14115]]],["longeth",[1,1,[[18,1,1,0,1,[[561,1,1,0,1]]]],[15261]]]]},{"k":"H3701","v":[["*",[403,343,[[0,41,32,0,32,[[12,1,1,0,1],[16,4,4,1,5],[19,1,1,5,6],[22,5,4,6,10],[23,2,2,10,12],[30,1,1,12,13],[36,1,1,13,14],[41,5,4,14,18],[42,9,6,18,24],[43,5,3,24,27],[44,1,1,27,28],[46,6,4,28,32]]],[1,41,37,32,69,[[52,1,1,32,33],[60,1,1,33,34],[61,2,2,34,36],[69,1,1,36,37],[70,5,5,37,42],[71,3,3,42,45],[74,1,1,45,46],[75,4,4,46,50],[76,4,3,50,53],[79,1,1,53,54],[80,1,1,54,55],[84,3,3,55,58],[85,4,4,58,62],[87,10,7,62,69]]],[2,12,11,69,80,[[94,1,1,69,70],[111,1,1,70,71],[114,3,3,71,74],[116,7,6,74,80]]],[3,37,23,80,103,[[119,4,4,80,84],[123,28,14,84,98],[126,1,1,98,99],[134,1,1,99,100],[138,1,1,100,101],[140,1,1,101,102],[147,1,1,102,103]]],[4,15,12,103,115,[[154,4,2,103,105],[159,1,1,105,106],[160,1,1,106,107],[166,3,2,107,109],[169,1,1,109,110],[173,1,1,110,111],[174,2,2,111,113],[175,1,1,113,114],[181,1,1,114,115]]],[5,7,6,115,121,[[192,2,2,115,117],[193,4,3,117,120],[208,1,1,120,121]]],[6,11,8,121,129,[[215,1,1,121,122],[219,1,1,122,123],[226,2,2,123,125],[227,7,4,125,129]]],[8,2,2,129,131,[[237,1,1,129,130],[244,1,1,130,131]]],[9,6,6,131,137,[[274,2,2,131,133],[284,2,2,133,135],[287,1,1,135,136],[290,1,1,136,137]]],[10,17,17,137,154,[[297,1,1,137,138],[300,5,5,138,143],[305,3,3,143,146],[306,1,1,146,147],[310,4,4,147,151],[311,3,3,151,154]]],[11,40,28,154,182,[[317,4,4,154,158],[318,2,1,158,159],[319,1,1,159,160],[324,16,9,160,169],[326,1,1,169,170],[327,3,2,170,172],[328,1,1,172,173],[330,2,2,173,175],[332,1,1,175,176],[334,3,3,176,179],[335,4,2,179,181],[337,2,1,181,182]]],[12,19,16,182,198,[[355,2,2,182,184],[356,1,1,184,185],[358,2,2,185,187],[359,2,2,187,189],[365,5,4,189,193],[366,7,5,193,198]]],[13,28,26,198,224,[[367,2,2,198,200],[368,2,2,200,202],[371,1,1,202,203],[375,5,5,203,208],[381,1,1,208,209],[382,2,2,209,211],[383,1,1,211,212],[387,1,1,212,213],[390,5,3,213,216],[391,2,2,216,218],[393,1,1,218,219],[398,1,1,219,220],[400,3,3,220,223],[402,1,1,223,224]]],[14,13,12,224,236,[[403,5,5,224,229],[404,1,1,229,230],[405,1,1,230,231],[410,6,5,231,236]]],[15,6,6,236,242,[[417,4,4,236,240],[419,2,2,240,242]]],[16,5,4,242,246,[[426,2,1,242,243],[428,2,2,243,245],[429,1,1,245,246]]],[17,7,7,246,253,[[438,1,1,246,247],[457,1,1,247,248],[462,2,2,248,250],[463,2,2,250,252],[466,1,1,252,253]]],[18,9,9,253,262,[[489,1,1,253,254],[492,1,1,254,255],[543,1,1,255,256],[545,2,2,256,258],[582,1,1,258,259],[592,1,1,259,260],[596,1,1,260,261],[612,1,1,261,262]]],[19,13,13,262,275,[[629,1,1,262,263],[630,1,1,263,264],[634,1,1,264,265],[635,2,2,265,267],[637,1,1,267,268],[643,1,1,268,269],[644,1,1,269,270],[649,1,1,270,271],[652,2,2,271,273],[653,1,1,273,274],[654,1,1,274,275]]],[20,6,5,275,280,[[660,1,1,275,276],[663,2,1,276,277],[665,1,1,277,278],[668,1,1,278,279],[670,1,1,279,280]]],[21,4,4,280,284,[[671,1,1,280,281],[673,1,1,281,282],[678,2,2,282,284]]],[22,18,17,284,301,[[679,1,1,284,285],[680,2,2,285,287],[685,1,1,287,288],[691,1,1,288,289],[708,1,1,289,290],[709,1,1,290,291],[717,1,1,291,292],[718,1,1,292,293],[721,1,1,293,294],[724,1,1,294,295],[726,1,1,295,296],[730,1,1,296,297],[733,3,2,297,299],[738,2,2,299,301]]],[23,10,8,301,309,[[750,1,1,301,302],[754,2,2,302,304],[776,5,4,304,308],[796,2,1,308,309]]],[24,1,1,309,310,[[801,1,1,309,310]]],[25,10,9,310,319,[[808,2,1,310,311],[817,2,2,311,313],[823,3,3,313,316],[828,1,1,316,317],[829,1,1,317,318],[839,1,1,318,319]]],[26,3,3,319,322,[[860,3,3,319,322]]],[27,5,5,322,327,[[863,1,1,322,323],[864,1,1,323,324],[869,1,1,324,325],[870,1,1,325,326],[874,1,1,326,327]]],[28,1,1,327,328,[[878,1,1,327,328]]],[29,2,2,328,330,[[880,1,1,328,329],[886,1,1,329,330]]],[32,1,1,330,331,[[895,1,1,330,331]]],[33,1,1,331,332,[[901,1,1,331,332]]],[34,1,1,332,333,[[904,1,1,332,333]]],[35,2,2,333,335,[[906,2,2,333,335]]],[36,1,1,335,336,[[910,1,1,335,336]]],[37,6,6,336,342,[[916,1,1,336,337],[919,1,1,337,338],[921,2,2,338,340],[923,1,1,340,341],[924,1,1,341,342]]],[38,2,1,342,343,[[927,2,1,342,343]]]],[320,409,410,420,424,511,580,584,586,587,626,644,888,1111,1277,1279,1280,1287,1302,1305,1308,1311,1312,1313,1325,1326,1332,1380,1434,1435,1436,1438,1601,1808,1851,1860,2074,2088,2098,2109,2111,2112,2120,2130,2138,2198,2254,2256,2260,2267,2282,2283,2289,2398,2424,2536,2555,2563,2590,2592,2596,2602,2643,2644,2645,2650,2652,2658,2660,2845,3380,3506,3519,3520,3573,3576,3585,3586,3588,3589,3740,3741,3742,3743,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3934,3935,3990,4273,4393,4459,4686,4944,4966,5136,5150,5315,5316,5381,5461,5489,5499,5519,5696,5968,5973,5997,5998,6000,6434,6642,6758,6954,6967,6982,6983,6984,6990,7276,7399,8219,8220,8489,8490,8584,8716,8985,9100,9101,9104,9106,9108,9264,9267,9268,9307,9411,9413,9415,9447,9453,9457,9466,9652,9669,9670,9673,9699,9715,9854,9857,9858,9859,9860,9861,9863,9865,9866,9910,9944,9945,9971,10038,10039,10111,10149,10152,10154,10198,10200,10237,10900,10901,10913,10956,10958,10978,10980,11157,11158,11159,11160,11166,11167,11168,11169,11171,11209,11211,11218,11225,11269,11378,11384,11385,11388,11391,11508,11511,11512,11534,11627,11682,11688,11691,11710,11728,11760,11902,11942,11947,11950,11996,12020,12022,12025,12026,12027,12096,12104,12226,12227,12229,12231,12234,12386,12392,12393,12397,12491,12492,12708,12756,12758,12769,12919,13414,13497,13498,13505,13519,13627,14072,14092,14883,14913,14930,15643,15834,15970,16190,16437,16469,16595,16612,16621,16676,16856,16876,17016,17117,17124,17164,17190,17341,17407,17441,17512,17529,17548,17581,17649,17651,17676,17692,17705,17805,17923,18239,18257,18414,18439,18529,18592,18624,18699,18741,18742,18830,18838,19119,19205,19210,19740,19741,19756,19775,20295,20446,20596,20775,20779,20994,20996,20998,21133,21161,21438,22044,22074,22079,22113,22130,22198,22214,22268,22348,22385,22487,22619,22708,22767,22798,22805,22863,22958,23002,23040,23041,23068,23082,23123]]],["+",[9,9,[[2,2,2,0,2,[[111,1,1,0,1],[114,1,1,1,2]]],[3,1,1,2,3,[[147,1,1,2,3]]],[19,4,4,3,7,[[635,1,1,3,4],[643,1,1,4,5],[649,1,1,5,6],[652,1,1,6,7]]],[25,1,1,7,8,[[817,1,1,7,8]]],[27,1,1,8,9,[[874,1,1,8,9]]]],[3380,3520,4686,16621,16856,17016,17117,20779,22268]]],["Silver",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19210]]],["money",[110,94,[[0,30,24,0,24,[[16,4,4,0,4],[22,2,2,4,6],[30,1,1,6,7],[41,5,4,7,11],[42,9,6,11,17],[43,3,3,17,20],[46,6,4,20,24]]],[1,9,9,24,33,[[61,1,1,24,25],[70,4,4,25,29],[71,3,3,29,32],[79,1,1,32,33]]],[2,4,4,33,37,[[114,1,1,33,34],[116,3,3,34,37]]],[3,5,5,37,42,[[119,4,4,37,41],[134,1,1,41,42]]],[4,9,6,42,48,[[154,4,2,42,44],[166,3,2,44,46],[173,1,1,46,47],[175,1,1,47,48]]],[6,3,3,48,51,[[215,1,1,48,49],[226,1,1,49,50],[227,1,1,50,51]]],[10,3,3,51,54,[[311,3,3,51,54]]],[11,19,14,54,68,[[317,1,1,54,55],[324,14,9,55,64],[327,1,1,64,65],[334,2,2,65,67],[335,1,1,67,68]]],[13,7,6,68,74,[[390,4,3,68,71],[400,3,3,71,74]]],[14,1,1,74,75,[[405,1,1,74,75]]],[15,3,3,75,78,[[417,3,3,75,78]]],[16,1,1,78,79,[[429,1,1,78,79]]],[17,1,1,79,80,[[466,1,1,79,80]]],[18,1,1,80,81,[[492,1,1,80,81]]],[19,1,1,81,82,[[634,1,1,81,82]]],[20,2,2,82,84,[[665,1,1,82,83],[668,1,1,83,84]]],[22,5,4,84,88,[[721,1,1,84,85],[730,1,1,85,86],[733,3,2,86,88]]],[23,4,4,88,92,[[776,4,4,88,92]]],[24,1,1,92,93,[[801,1,1,92,93]]],[32,1,1,93,94,[[895,1,1,93,94]]]],[409,410,420,424,580,584,888,1277,1279,1280,1287,1302,1305,1308,1311,1312,1313,1325,1326,1332,1434,1435,1436,1438,1860,2088,2098,2111,2112,2120,2130,2138,2398,3506,3585,3588,3589,3740,3741,3742,3743,4273,4944,4966,5315,5316,5461,5519,6642,6967,6984,9453,9457,9466,9673,9854,9857,9858,9859,9860,9861,9863,9865,9866,9945,10152,10154,10200,11682,11688,11691,11942,11947,11950,12104,12386,12392,12393,12769,13627,14092,16595,17441,17512,18529,18699,18741,18742,19740,19741,19756,19775,20446,22619]]],["price",[3,3,[[2,1,1,0,1,[[114,1,1,0,1]]],[12,2,2,1,3,[[358,2,2,1,3]]]],[3519,10956,10958]]],["silver",[279,243,[[0,11,10,0,10,[[12,1,1,0,1],[19,1,1,1,2],[22,3,2,2,4],[23,2,2,4,6],[36,1,1,6,7],[43,2,2,7,9],[44,1,1,9,10]]],[1,32,28,10,38,[[52,1,1,10,11],[60,1,1,11,12],[61,1,1,12,13],[69,1,1,13,14],[70,1,1,14,15],[74,1,1,15,16],[75,4,4,16,20],[76,4,3,20,23],[80,1,1,23,24],[84,3,3,24,27],[85,4,4,27,31],[87,10,7,31,38]]],[2,5,4,38,42,[[94,1,1,38,39],[116,4,3,39,42]]],[3,31,17,42,59,[[123,28,14,42,56],[126,1,1,56,57],[138,1,1,57,58],[140,1,1,58,59]]],[4,6,6,59,65,[[159,1,1,59,60],[160,1,1,60,61],[169,1,1,61,62],[174,2,2,62,64],[181,1,1,64,65]]],[5,7,6,65,71,[[192,2,2,65,67],[193,4,3,67,70],[208,1,1,70,71]]],[6,8,6,71,77,[[219,1,1,71,72],[226,1,1,72,73],[227,6,4,73,77]]],[8,2,2,77,79,[[237,1,1,77,78],[244,1,1,78,79]]],[9,6,6,79,85,[[274,2,2,79,81],[284,2,2,81,83],[287,1,1,83,84],[290,1,1,84,85]]],[10,14,14,85,99,[[297,1,1,85,86],[300,5,5,86,91],[305,3,3,91,94],[306,1,1,94,95],[310,4,4,95,99]]],[11,21,17,99,116,[[317,3,3,99,102],[318,2,1,102,103],[319,1,1,103,104],[324,2,1,104,105],[326,1,1,105,106],[327,2,2,106,108],[328,1,1,108,109],[330,2,2,109,111],[332,1,1,111,112],[334,1,1,112,113],[335,3,2,113,115],[337,2,1,115,116]]],[12,17,14,116,130,[[355,2,2,116,118],[356,1,1,118,119],[359,2,2,119,121],[365,5,4,121,125],[366,7,5,125,130]]],[13,21,21,130,151,[[367,2,2,130,132],[368,2,2,132,134],[371,1,1,134,135],[375,5,5,135,140],[381,1,1,140,141],[382,2,2,141,143],[383,1,1,143,144],[387,1,1,144,145],[390,1,1,145,146],[391,2,2,146,148],[393,1,1,148,149],[398,1,1,149,150],[402,1,1,150,151]]],[14,12,11,151,162,[[403,5,5,151,156],[404,1,1,156,157],[410,6,5,157,162]]],[15,3,3,162,165,[[417,1,1,162,163],[419,2,2,163,165]]],[16,4,3,165,168,[[426,2,1,165,166],[428,2,2,166,168]]],[17,6,6,168,174,[[438,1,1,168,169],[457,1,1,169,170],[462,2,2,170,172],[463,2,2,172,174]]],[18,8,8,174,182,[[489,1,1,174,175],[543,1,1,175,176],[545,2,2,176,178],[582,1,1,178,179],[592,1,1,179,180],[596,1,1,180,181],[612,1,1,181,182]]],[19,8,8,182,190,[[629,1,1,182,183],[630,1,1,183,184],[635,1,1,184,185],[637,1,1,185,186],[644,1,1,186,187],[652,1,1,187,188],[653,1,1,188,189],[654,1,1,189,190]]],[20,4,3,190,193,[[660,1,1,190,191],[663,2,1,191,192],[670,1,1,192,193]]],[21,4,4,193,197,[[671,1,1,193,194],[673,1,1,194,195],[678,2,2,195,197]]],[22,12,12,197,209,[[679,1,1,197,198],[680,2,2,198,200],[691,1,1,200,201],[708,1,1,201,202],[709,1,1,202,203],[717,1,1,203,204],[718,1,1,204,205],[724,1,1,205,206],[726,1,1,206,207],[738,2,2,207,209]]],[23,5,4,209,213,[[750,1,1,209,210],[754,1,1,210,211],[776,1,1,211,212],[796,2,1,212,213]]],[25,9,8,213,221,[[808,2,1,213,214],[817,1,1,214,215],[823,3,3,215,218],[828,1,1,218,219],[829,1,1,219,220],[839,1,1,220,221]]],[26,3,3,221,224,[[860,3,3,221,224]]],[27,4,4,224,228,[[863,1,1,224,225],[864,1,1,225,226],[869,1,1,226,227],[870,1,1,227,228]]],[28,1,1,228,229,[[878,1,1,228,229]]],[29,2,2,229,231,[[880,1,1,229,230],[886,1,1,230,231]]],[33,1,1,231,232,[[901,1,1,231,232]]],[34,1,1,232,233,[[904,1,1,232,233]]],[35,2,2,233,235,[[906,2,2,233,235]]],[36,1,1,235,236,[[910,1,1,235,236]]],[37,6,6,236,242,[[916,1,1,236,237],[919,1,1,237,238],[921,2,2,238,240],[923,1,1,240,241],[924,1,1,241,242]]],[38,2,1,242,243,[[927,2,1,242,243]]]],[320,511,586,587,626,644,1111,1326,1332,1380,1601,1808,1851,2074,2109,2198,2254,2256,2260,2267,2282,2283,2289,2424,2536,2555,2563,2590,2592,2596,2602,2643,2644,2645,2650,2652,2658,2660,2845,3573,3576,3586,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3934,3935,3990,4393,4459,5136,5150,5381,5489,5499,5696,5968,5973,5997,5998,6000,6434,6758,6954,6982,6983,6984,6990,7276,7399,8219,8220,8489,8490,8584,8716,8985,9100,9101,9104,9106,9108,9264,9267,9268,9307,9411,9413,9415,9447,9652,9669,9670,9699,9715,9863,9910,9944,9945,9971,10038,10039,10111,10149,10198,10200,10237,10900,10901,10913,10978,10980,11157,11158,11159,11160,11166,11167,11168,11169,11171,11209,11211,11218,11225,11269,11378,11384,11385,11388,11391,11508,11511,11512,11534,11627,11691,11710,11728,11760,11902,11996,12020,12022,12025,12026,12027,12096,12226,12227,12229,12231,12234,12397,12491,12492,12708,12756,12758,12919,13414,13497,13498,13505,13519,14072,14883,14913,14930,15643,15834,15970,16190,16437,16469,16612,16676,16876,17124,17164,17190,17341,17407,17529,17548,17581,17649,17651,17676,17692,17705,17923,18239,18257,18414,18439,18592,18624,18830,18838,19119,19205,19740,20295,20596,20775,20994,20996,20998,21133,21161,21438,22044,22074,22079,22113,22130,22198,22214,22348,22385,22487,22708,22767,22798,22805,22863,22958,23002,23040,23041,23068,23082,23123]]],["silverlings",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17805]]]]},{"k":"H3702","v":[["*",[13,13,[[14,7,7,0,7,[[407,1,1,0,1],[408,1,1,1,2],[409,5,5,2,7]]],[26,6,6,7,13,[[851,3,3,7,10],[854,3,3,10,13]]]],[12148,12156,12188,12189,12190,12191,12195,21790,21793,21803,21876,21878,21897]]],["money",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12190]]],["silver",[12,12,[[14,6,6,0,6,[[407,1,1,0,1],[408,1,1,1,2],[409,4,4,2,6]]],[26,6,6,6,12,[[851,3,3,6,9],[854,3,3,9,12]]]],[12148,12156,12188,12189,12191,12195,21790,21793,21803,21876,21878,21897]]]]},{"k":"H3703","v":[["Casiphia",[2,1,[[14,2,1,0,1,[[410,2,1,0,1]]]],[12218]]]]},{"k":"H3704","v":[["pillows",[2,2,[[25,2,2,0,2,[[814,2,2,0,2]]]],[20726,20728]]]]},{"k":"H3705","v":[["*",[13,13,[[14,6,6,0,6,[[406,3,3,0,3],[407,2,2,3,5],[408,1,1,5,6]]],[26,7,7,6,13,[[851,1,1,6,7],[852,1,1,7,8],[853,1,1,8,9],[854,3,3,9,12],[855,1,1,12,13]]]],[12123,12124,12131,12150,12151,12157,21781,21822,21874,21886,21889,21890,21913]]],["Now",[6,6,[[14,3,3,0,3,[[406,1,1,0,1],[407,1,1,1,2],[408,1,1,2,3]]],[26,3,3,3,6,[[852,1,1,3,4],[853,1,1,4,5],[855,1,1,5,6]]]],[12124,12151,12157,21822,21874,21913]]],["now",[7,7,[[14,3,3,0,3,[[406,2,2,0,2],[407,1,1,2,3]]],[26,4,4,3,7,[[851,1,1,3,4],[854,3,3,4,7]]]],[12123,12131,12150,21781,21886,21889,21890]]]]},{"k":"H3706","v":[["time",[4,4,[[14,4,4,0,4,[[406,3,3,0,3],[409,1,1,3,4]]]],[12120,12121,12127,12185]]]]},{"k":"H3707","v":[["*",[55,53,[[4,6,5,0,5,[[156,1,1,0,1],[161,1,1,1,2],[183,1,1,2,3],[184,3,2,3,5]]],[6,2,1,5,6,[[212,2,1,5,6]]],[8,2,2,6,8,[[236,2,2,6,8]]],[10,10,10,8,18,[[304,2,2,8,10],[305,1,1,10,11],[306,5,5,11,16],[311,1,1,16,17],[312,1,1,17,18]]],[11,7,7,18,25,[[329,2,2,18,20],[333,2,2,20,22],[334,1,1,22,23],[335,2,2,23,25]]],[13,4,4,25,29,[[382,1,1,25,26],[394,1,1,26,27],[399,1,1,27,28],[400,1,1,28,29]]],[15,2,2,29,31,[[416,2,2,29,31]]],[18,3,3,31,34,[[555,1,1,31,32],[583,1,1,32,33],[589,1,1,33,34]]],[20,2,2,34,36,[[663,1,1,34,35],[665,1,1,35,36]]],[22,1,1,36,37,[[743,1,1,36,37]]],[23,11,11,37,48,[[751,2,2,37,39],[752,1,1,39,40],[755,1,1,40,41],[769,2,2,41,43],[776,3,3,43,46],[788,2,2,46,48]]],[25,4,4,48,52,[[809,1,1,48,49],[817,2,2,49,51],[833,1,1,51,52]]],[27,1,1,52,53,[[873,1,1,52,53]]]],[5029,5175,5757,5774,5779,6557,7218,7219,9227,9233,9279,9285,9290,9296,9309,9316,9473,9533,9994,10000,10125,10134,10162,10184,10191,11519,11789,11914,11958,12360,12364,15171,15680,15813,17414,17438,18900,19137,19138,19172,19243,19540,19541,19760,19761,19763,20013,20018,20621,20788,20804,21257,22266]]],["+",[15,15,[[6,1,1,0,1,[[212,1,1,0,1]]],[10,6,6,1,7,[[304,1,1,1,2],[305,1,1,2,3],[306,3,3,3,6],[312,1,1,6,7]]],[11,2,2,7,9,[[329,1,1,7,8],[333,1,1,8,9]]],[13,1,1,9,10,[[394,1,1,9,10]]],[15,1,1,10,11,[[416,1,1,10,11]]],[22,1,1,11,12,[[743,1,1,11,12]]],[23,3,3,12,15,[[751,1,1,12,13],[769,1,1,13,14],[776,1,1,14,15]]]],[6557,9233,9279,9296,9309,9316,9533,9994,10134,11789,12360,18900,19138,19540,19761]]],["anger",[30,29,[[4,6,5,0,5,[[156,1,1,0,1],[161,1,1,1,2],[183,1,1,2,3],[184,3,2,3,5]]],[6,1,1,5,6,[[212,1,1,5,6]]],[10,4,4,6,10,[[304,1,1,6,7],[306,2,2,7,9],[311,1,1,9,10]]],[11,4,4,10,14,[[329,1,1,10,11],[333,1,1,11,12],[334,1,1,12,13],[335,1,1,13,14]]],[13,2,2,14,16,[[399,1,1,14,15],[400,1,1,15,16]]],[15,1,1,16,17,[[416,1,1,16,17]]],[18,2,2,17,19,[[555,1,1,17,18],[583,1,1,18,19]]],[23,7,7,19,26,[[751,1,1,19,20],[752,1,1,20,21],[755,1,1,21,22],[769,1,1,22,23],[776,2,2,23,25],[788,1,1,25,26]]],[25,2,2,26,28,[[809,1,1,26,27],[817,1,1,27,28]]],[27,1,1,28,29,[[873,1,1,28,29]]]],[5029,5175,5757,5774,5779,6557,9227,9285,9290,9473,10000,10125,10162,10184,11914,11958,12364,15171,15680,19137,19172,19243,19541,19760,19763,20013,20621,20788,22266]]],["angry",[2,2,[[20,1,1,0,1,[[665,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[17438,20804]]],["grieved",[1,1,[[18,1,1,0,1,[[589,1,1,0,1]]]],[15813]]],["provoked",[3,3,[[8,2,2,0,2,[[236,2,2,0,2]]],[11,1,1,2,3,[[335,1,1,2,3]]]],[7218,7219,10191]]],["sorrow",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17414]]],["vex",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21257]]],["wrath",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20018]]],["wroth",[1,1,[[13,1,1,0,1,[[382,1,1,0,1]]]],[11519]]]]},{"k":"H3708","v":[["*",[25,25,[[4,2,2,0,2,[[184,2,2,0,2]]],[8,2,2,2,4,[[236,2,2,2,4]]],[10,2,2,4,6,[[305,1,1,4,5],[311,1,1,5,6]]],[11,1,1,6,7,[[335,1,1,6,7]]],[17,4,4,7,11,[[440,1,1,7,8],[441,1,1,8,9],[445,1,1,9,10],[452,1,1,10,11]]],[18,4,4,11,15,[[483,1,1,11,12],[487,1,1,12,13],[508,1,1,13,14],[562,1,1,14,15]]],[19,4,4,15,19,[[639,1,1,15,16],[644,1,1,16,17],[648,1,1,17,18],[654,1,1,18,19]]],[20,5,5,19,24,[[659,1,1,19,20],[660,1,1,20,21],[665,2,2,21,23],[669,1,1,23,24]]],[25,1,1,24,25,[[821,1,1,24,25]]]],[5777,5785,7218,7228,9279,9473,10191,12953,12980,13103,13267,13992,14055,14340,15275,16735,16898,17003,17172,17333,17356,17432,17438,17523,20923]]],["+",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[452,1,1,1,2]]],[18,1,1,2,3,[[483,1,1,2,3]]]],[5777,13267,13992]]],["Sorrow",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17432]]],["anger",[2,2,[[18,1,1,0,1,[[562,1,1,0,1]]],[20,1,1,1,2,[[665,1,1,1,2]]]],[15275,17438]]],["angry",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17003]]],["grief",[6,6,[[8,1,1,0,1,[[236,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]],[18,1,1,2,3,[[508,1,1,2,3]]],[19,1,1,3,4,[[644,1,1,3,4]]],[20,2,2,4,6,[[659,1,1,4,5],[660,1,1,5,6]]]],[7228,12980,14340,16898,17333,17356]]],["indignation",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13103]]],["provocation",[3,3,[[10,2,2,0,2,[[305,1,1,0,1],[311,1,1,1,2]]],[25,1,1,2,3,[[821,1,1,2,3]]]],[9279,9473,20923]]],["provocations",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10191]]],["sore",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7218]]],["sorrow",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17523]]],["spite",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14055]]],["wrath",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[440,1,1,1,2]]],[19,2,2,2,4,[[639,1,1,2,3],[654,1,1,3,4]]]],[5785,12953,16735,17172]]]]},{"k":"H3709","v":[["*",[191,178,[[0,9,7,0,7,[[7,1,1,0,1],[19,1,1,1,2],[30,1,1,2,3],[31,4,2,3,5],[39,2,2,5,7]]],[1,9,8,7,15,[[53,1,1,7,8],[58,2,2,8,10],[74,1,1,10,11],[78,2,1,11,12],[82,2,2,12,14],[86,1,1,14,15]]],[2,14,13,15,28,[[97,3,2,15,17],[98,1,1,17,18],[100,1,1,18,19],[103,8,8,19,27],[112,1,1,27,28]]],[3,20,18,28,46,[[120,1,1,28,29],[121,1,1,29,30],[122,1,1,30,31],[123,16,14,31,45],[140,1,1,45,46]]],[4,6,6,46,52,[[154,1,1,46,47],[163,1,1,47,48],[177,1,1,48,49],[180,3,3,49,52]]],[5,3,3,52,55,[[187,1,1,52,53],[189,1,1,53,54],[190,1,1,54,55]]],[6,6,6,55,61,[[216,2,2,55,57],[218,2,2,57,59],[222,1,1,59,60],[224,1,1,60,61]]],[8,4,4,61,65,[[239,1,1,61,62],[240,1,1,62,63],[254,1,1,63,64],[263,1,1,64,65]]],[9,8,6,65,71,[[280,2,2,65,67],[284,2,2,67,69],[285,2,1,69,70],[288,2,1,70,71]]],[10,7,7,71,78,[[295,1,1,71,72],[297,1,1,72,73],[298,3,3,73,76],[307,1,1,76,77],[308,1,1,77,78]]],[11,10,8,78,86,[[316,2,1,78,79],[321,1,1,79,80],[323,1,1,80,81],[328,2,1,81,82],[330,1,1,82,83],[331,1,1,83,84],[332,1,1,84,85],[337,1,1,85,86]]],[12,1,1,86,87,[[349,1,1,86,87]]],[13,7,7,87,94,[[370,1,1,87,88],[372,3,3,88,91],[390,1,1,91,92],[396,1,1,92,93],[398,1,1,93,94]]],[14,2,2,94,96,[[410,1,1,94,95],[411,1,1,95,96]]],[17,13,13,96,109,[[437,1,1,96,97],[444,1,1,97,98],[445,1,1,98,99],[446,1,1,99,100],[448,2,2,100,102],[451,1,1,102,103],[457,1,1,103,104],[462,1,1,104,105],[464,1,1,105,106],[466,1,1,106,107],[471,1,1,107,108],[476,1,1,108,109]]],[18,20,20,109,129,[[484,1,1,109,110],[486,1,1,110,111],[501,1,1,111,112],[503,1,1,112,113],[521,1,1,113,114],[524,1,1,114,115],[540,1,1,115,116],[548,1,1,116,117],[550,1,1,117,118],[555,1,1,118,119],[558,1,1,119,120],[565,1,1,120,121],[568,1,1,121,122],[575,1,1,122,123],[596,2,2,123,125],[605,1,1,125,126],[606,1,1,126,127],[616,1,1,127,128],[618,1,1,128,129]]],[19,9,9,129,138,[[633,2,2,129,131],[637,1,1,131,132],[644,1,1,132,133],[649,1,1,133,134],[658,4,4,134,138]]],[20,1,1,138,139,[[662,1,1,138,139]]],[21,1,1,139,140,[[675,1,1,139,140]]],[22,13,13,140,153,[[679,2,2,140,142],[706,1,1,142,143],[711,1,1,143,144],[714,1,1,144,145],[715,1,1,145,146],[716,1,1,146,147],[727,1,1,147,148],[733,1,1,148,149],[737,2,2,149,151],[738,1,1,151,152],[740,1,1,152,153]]],[23,5,5,153,158,[[748,1,1,153,154],[756,1,1,154,155],[759,1,1,155,156],[796,2,2,156,158]]],[24,3,3,158,161,[[798,2,2,158,160],[799,1,1,160,161]]],[25,12,9,161,170,[[802,2,1,161,162],[807,1,1,162,163],[822,6,4,163,167],[823,1,1,167,168],[830,1,1,168,169],[844,1,1,169,170]]],[26,1,1,170,171,[[859,1,1,170,171]]],[31,1,1,171,172,[[891,1,1,171,172]]],[32,2,2,172,174,[[896,1,1,172,173],[899,1,1,173,174]]],[33,1,1,174,175,[[902,1,1,174,175]]],[34,1,1,175,176,[[904,1,1,175,176]]],[36,1,1,176,177,[[909,1,1,176,177]]],[38,1,1,177,178,[[928,1,1,177,178]]]],[192,500,915,953,960,1183,1193,1605,1771,1775,2224,2360,2495,2496,2620,2944,2945,2970,3024,3126,3127,3128,3129,3137,3138,3139,3140,3442,3750,3810,3842,3864,3870,3876,3882,3888,3894,3900,3906,3912,3918,3924,3930,3934,3936,4456,4943,5232,5559,5646,5667,5676,5854,5906,5928,6667,6668,6725,6734,6872,6918,7300,7323,7711,7963,8372,8381,8490,8492,8520,8603,8881,8984,9007,9023,9039,9329,9385,9637,9791,9841,9970,10045,10085,10104,10236,10737,11268,11294,11295,11311,11691,11833,11886,12232,12242,12898,13081,13089,13121,13167,13174,13255,13419,13504,13541,13595,13768,13896,13998,14037,14245,14279,14591,14626,14843,14980,15033,15185,15223,15317,15407,15498,15946,16007,16128,16139,16244,16278,16541,16543,16660,16891,17041,17297,17300,17303,17304,17387,17603,17660,17669,18168,18294,18336,18377,18396,18652,18752,18803,18806,18835,18857,19058,19256,19336,20294,20295,20347,20351,20395,20471,20574,20955,20958,20961,20968,20989,21190,21579,22025,22566,22630,22667,22731,22757,22851,23141]]],["+",[33,28,[[2,1,1,0,1,[[98,1,1,0,1]]],[3,2,2,1,3,[[123,1,1,1,2],[140,1,1,2,3]]],[4,2,2,3,5,[[154,1,1,3,4],[180,1,1,4,5]]],[6,1,1,5,6,[[216,1,1,5,6]]],[8,1,1,6,7,[[239,1,1,6,7]]],[9,6,4,7,11,[[280,2,2,7,9],[285,2,1,9,10],[288,2,1,10,11]]],[10,1,1,11,12,[[307,1,1,11,12]]],[11,3,2,12,14,[[328,2,1,12,13],[332,1,1,13,14]]],[13,2,2,14,16,[[396,1,1,14,15],[398,1,1,15,16]]],[14,1,1,16,17,[[410,1,1,16,17]]],[17,1,1,17,18,[[437,1,1,17,18]]],[18,1,1,18,19,[[548,1,1,18,19]]],[20,1,1,19,20,[[662,1,1,19,20]]],[22,2,2,20,22,[[679,1,1,20,21],[716,1,1,21,22]]],[23,1,1,22,23,[[759,1,1,22,23]]],[25,5,3,23,26,[[822,5,3,23,26]]],[32,1,1,26,27,[[896,1,1,26,27]]],[34,1,1,27,28,[[904,1,1,27,28]]]],[2970,3936,4456,4943,5646,6668,7300,8372,8381,8520,8603,9329,9970,10104,11833,11886,12232,12898,14980,17387,17660,18396,19336,20955,20958,20961,22630,22757]]],["branches",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3442]]],["clouds",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13768]]],["hand",[37,37,[[0,2,2,0,2,[[39,2,2,0,2]]],[1,3,3,2,5,[[53,1,1,2,3],[82,2,2,3,5]]],[2,6,6,5,11,[[103,6,6,5,11]]],[4,1,1,11,12,[[177,1,1,11,12]]],[8,2,2,12,14,[[254,1,1,12,13],[263,1,1,13,14]]],[9,2,2,14,16,[[284,2,2,14,16]]],[10,1,1,16,17,[[308,1,1,16,17]]],[11,1,1,17,18,[[330,1,1,17,18]]],[17,4,4,18,22,[[448,2,2,18,20],[464,1,1,20,21],[476,1,1,21,22]]],[18,3,3,22,25,[[596,1,1,22,23],[606,1,1,23,24],[616,1,1,24,25]]],[19,4,4,25,29,[[633,2,2,25,27],[637,1,1,27,28],[658,1,1,28,29]]],[22,3,3,29,32,[[706,1,1,29,30],[714,1,1,30,31],[740,1,1,31,32]]],[23,1,1,32,33,[[756,1,1,32,33]]],[25,4,4,33,37,[[807,1,1,33,34],[822,1,1,34,35],[823,1,1,35,36],[830,1,1,36,37]]]],[1183,1193,1605,2495,2496,3127,3128,3129,3138,3139,3140,5559,7711,7963,8490,8492,9385,10045,13167,13174,13541,13896,16007,16139,16244,16541,16543,16660,17304,18168,18336,18857,19256,20574,20968,20989,21190]]],["handles",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17603]]],["hands",[69,66,[[0,2,2,0,2,[[19,1,1,0,1],[30,1,1,1,2]]],[1,4,3,2,5,[[58,2,2,2,4],[78,2,1,4,5]]],[2,3,2,5,7,[[97,3,2,5,7]]],[3,2,2,7,9,[[121,1,1,7,8],[122,1,1,8,9]]],[6,5,5,9,14,[[216,1,1,9,10],[218,2,2,10,12],[222,1,1,12,13],[224,1,1,13,14]]],[10,3,3,14,17,[[298,3,3,14,17]]],[11,3,2,17,19,[[316,2,1,17,18],[323,1,1,18,19]]],[12,1,1,19,20,[[349,1,1,19,20]]],[13,3,3,20,23,[[372,3,3,20,23]]],[14,1,1,23,24,[[411,1,1,23,24]]],[17,7,7,24,31,[[444,1,1,24,25],[445,1,1,25,26],[446,1,1,26,27],[451,1,1,27,28],[457,1,1,28,29],[462,1,1,29,30],[466,1,1,30,31]]],[18,16,16,31,47,[[484,1,1,31,32],[486,1,1,32,33],[501,1,1,33,34],[503,1,1,34,35],[521,1,1,35,36],[524,1,1,36,37],[540,1,1,37,38],[550,1,1,38,39],[555,1,1,39,40],[558,1,1,40,41],[565,1,1,41,42],[568,1,1,42,43],[575,1,1,43,44],[596,1,1,44,45],[605,1,1,45,46],[618,1,1,46,47]]],[19,5,5,47,52,[[644,1,1,47,48],[649,1,1,48,49],[658,3,3,49,52]]],[22,6,6,52,58,[[679,1,1,52,53],[711,1,1,53,54],[727,1,1,54,55],[733,1,1,55,56],[737,2,2,56,58]]],[23,1,1,58,59,[[748,1,1,58,59]]],[24,3,3,59,62,[[798,2,2,59,61],[799,1,1,61,62]]],[31,1,1,62,63,[[891,1,1,62,63]]],[32,1,1,63,64,[[899,1,1,63,64]]],[33,1,1,64,65,[[902,1,1,64,65]]],[36,1,1,65,66,[[909,1,1,65,66]]]],[500,915,1771,1775,2360,2944,2945,3810,3842,6667,6725,6734,6872,6918,9007,9023,9039,9637,9841,10737,11294,11295,11311,12242,13081,13089,13121,13255,13419,13504,13595,13998,14037,14245,14279,14591,14626,14843,15033,15185,15223,15317,15407,15498,15946,16128,16278,16891,17041,17297,17300,17303,17669,18294,18652,18752,18803,18806,19058,20347,20351,20395,22566,22667,22731,22851]]],["hollow",[4,2,[[0,4,2,0,2,[[31,4,2,0,2]]]],[953,960]]],["palm",[2,2,[[2,2,2,0,2,[[103,2,2,0,2]]]],[3126,3137]]],["palms",[3,3,[[8,1,1,0,1,[[240,1,1,0,1]]],[11,1,1,1,2,[[321,1,1,1,2]]],[26,1,1,2,3,[[859,1,1,2,3]]]],[7323,9791,22025]]],["paws",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3024]]],["sole",[8,7,[[0,1,1,0,1,[[7,1,1,0,1]]],[4,2,2,1,3,[[180,2,2,1,3]]],[5,1,1,3,4,[[187,1,1,3,4]]],[11,1,1,4,5,[[331,1,1,4,5]]],[22,1,1,5,6,[[715,1,1,5,6]]],[25,2,1,6,7,[[802,2,1,6,7]]]],[192,5667,5676,5854,10085,18377,20471]]],["soles",[7,7,[[4,1,1,0,1,[[163,1,1,0,1]]],[5,2,2,1,3,[[189,1,1,1,2],[190,1,1,2,3]]],[10,1,1,3,4,[[295,1,1,3,4]]],[22,1,1,4,5,[[738,1,1,4,5]]],[25,1,1,5,6,[[844,1,1,5,6]]],[38,1,1,6,7,[[928,1,1,6,7]]]],[5232,5906,5928,8881,18835,21579,23141]]],["spoon",[12,12,[[3,12,12,0,12,[[123,12,12,0,12]]]],[3864,3870,3876,3882,3888,3894,3900,3906,3912,3918,3924,3930]]],["spoons",[12,11,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[3,4,3,2,5,[[120,1,1,2,3],[123,3,2,3,5]]],[10,1,1,5,6,[[297,1,1,5,6]]],[11,1,1,6,7,[[337,1,1,6,7]]],[13,2,2,7,9,[[370,1,1,7,8],[390,1,1,8,9]]],[23,2,2,9,11,[[796,2,2,9,11]]]],[2224,2620,3750,3934,3936,8984,10236,11268,11691,20294,20295]]]]},{"k":"H3710","v":[["rocks",[2,2,[[17,1,1,0,1,[[465,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]]],[13563,19056]]]]},{"k":"H3711","v":[["pacifieth",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16998]]]]},{"k":"H3712","v":[["branch",[3,3,[[17,1,1,0,1,[[450,1,1,0,1]]],[22,2,2,1,3,[[687,1,1,1,2],[697,1,1,2,3]]]],[13235,17843,18019]]]]},{"k":"H3713","v":[["*",[12,6,[[1,1,1,0,1,[[65,1,1,0,1]]],[12,6,1,1,2,[[365,6,1,1,2]]],[14,3,2,2,4,[[403,2,1,2,3],[410,1,1,3,4]]],[17,1,1,4,5,[[473,1,1,4,5]]],[18,1,1,5,6,[[624,1,1,5,6]]]],[1961,11160,12026,12228,13822,16367]]],["+",[5,1,[[12,5,1,0,1,[[365,5,1,0,1]]]],[11160]]],["basons",[4,3,[[12,1,1,0,1,[[365,1,1,0,1]]],[14,3,2,1,3,[[403,2,1,1,2],[410,1,1,2,3]]]],[11160,12026,12228]]],["frost",[2,2,[[1,1,1,0,1,[[65,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]]],[1961,13822]]],["hoarfrost",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16367]]]]},{"k":"H3714","v":[["beam",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22759]]]]},{"k":"H3715","v":[["*",[32,32,[[6,1,1,0,1,[[224,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]],[17,2,2,2,4,[[439,1,1,2,3],[473,1,1,3,4]]],[18,6,6,4,10,[[494,1,1,4,5],[511,1,1,5,6],[512,1,1,6,7],[535,1,1,7,8],[568,1,1,8,9],[581,1,1,9,10]]],[19,3,3,10,13,[[646,1,1,10,11],[647,1,1,11,12],[655,1,1,12,13]]],[22,3,3,13,16,[[683,1,1,13,14],[689,1,1,14,15],[709,1,1,15,16]]],[23,3,3,16,19,[[746,1,1,16,17],[769,1,1,17,18],[795,1,1,18,19]]],[25,7,7,19,26,[[820,4,4,19,23],[833,1,1,23,24],[839,1,1,24,25],[842,1,1,25,26]]],[27,1,1,26,27,[[866,1,1,26,27]]],[29,1,1,27,28,[[881,1,1,27,28]]],[32,1,1,28,29,[[897,1,1,28,29]]],[33,2,2,29,31,[[901,2,2,29,31]]],[37,1,1,31,32,[[921,1,1,31,32]]]],[6914,12403,12940,13832,14115,14398,14427,14785,15408,15592,16937,16956,17197,17768,17890,18254,18980,19572,20250,20883,20884,20886,20887,21250,21438,21545,22166,22399,22641,22710,22712,23031]]],["+",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14427]]],["lion",[16,16,[[18,2,2,0,2,[[494,1,1,0,1],[568,1,1,1,2]]],[19,3,3,2,5,[[646,1,1,2,3],[647,1,1,3,4],[655,1,1,4,5]]],[22,2,2,5,7,[[689,1,1,5,6],[709,1,1,6,7]]],[23,1,1,7,8,[[769,1,1,7,8]]],[25,5,5,8,13,[[820,3,3,8,11],[833,1,1,11,12],[842,1,1,12,13]]],[27,1,1,13,14,[[866,1,1,13,14]]],[29,1,1,14,15,[[881,1,1,14,15]]],[32,1,1,15,16,[[897,1,1,15,16]]]],[14115,15408,16937,16956,17197,17890,18254,19572,20884,20886,20887,21250,21545,22166,22399,22641]]],["lions",[13,13,[[17,2,2,0,2,[[439,1,1,0,1],[473,1,1,1,2]]],[18,3,3,2,5,[[511,1,1,2,3],[535,1,1,3,4],[581,1,1,4,5]]],[22,1,1,5,6,[[683,1,1,5,6]]],[23,2,2,6,8,[[746,1,1,6,7],[795,1,1,7,8]]],[25,2,2,8,10,[[820,1,1,8,9],[839,1,1,9,10]]],[33,2,2,10,12,[[901,2,2,10,12]]],[37,1,1,12,13,[[921,1,1,12,13]]]],[12940,13832,14398,14785,15592,17768,18980,20250,20883,21438,22710,22712,23031]]],["villages",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12403]]],["young",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6914]]]]},{"k":"H3716","v":[["Chephirah",[4,4,[[5,2,2,0,2,[[195,1,1,0,1],[204,1,1,1,2]]],[14,1,1,2,3,[[404,1,1,2,3]]],[15,1,1,3,4,[[419,1,1,3,4]]]],[6054,6319,12052,12449]]]]},{"k":"H3717","v":[["*",[5,4,[[1,4,3,0,3,[[75,1,1,0,1],[77,1,1,1,2],[88,2,1,2,3]]],[25,1,1,3,4,[[822,1,1,3,4]]]],[2244,2309,2673,20958]]],["double",[2,2,[[1,2,2,0,2,[[75,1,1,0,1],[88,1,1,1,2]]]],[2244,2673]]],["doubled",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[25,1,1,2,3,[[822,1,1,2,3]]]],[2309,2673,20958]]]]},{"k":"H3718","v":[["double",[3,3,[[17,2,2,0,2,[[446,1,1,0,1],[476,1,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]]],[13114,13901,18422]]]]},{"k":"H3719","v":[["bend",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20832]]]]},{"k":"H3720","v":[["famine",[2,2,[[17,2,2,0,2,[[440,1,1,0,1],[465,1,1,1,2]]]],[12973,13560]]]]},{"k":"H3721","v":[["*",[5,5,[[18,3,3,0,3,[[534,1,1,0,1],[622,1,1,1,2],[623,1,1,2,3]]],[22,1,1,3,4,[[736,1,1,3,4]]],[32,1,1,4,5,[[898,1,1,4,5]]]],[14774,16334,16349,18791,22654]]],["down",[4,4,[[18,3,3,0,3,[[534,1,1,0,1],[622,1,1,1,2],[623,1,1,2,3]]],[22,1,1,3,4,[[736,1,1,3,4]]]],[14774,16334,16349,18791]]],["myself",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22654]]]]},{"k":"H3722","v":[["*",[102,94,[[0,2,2,0,2,[[5,1,1,0,1],[31,1,1,1,2]]],[1,8,7,2,9,[[78,3,3,2,5],[79,4,3,5,8],[81,1,1,8,9]]],[2,49,44,9,53,[[90,1,1,9,10],[93,4,4,10,14],[94,5,5,14,19],[95,2,2,19,21],[96,1,1,21,22],[97,2,2,22,24],[98,2,1,24,25],[99,1,1,25,26],[101,2,2,26,28],[103,7,7,28,35],[104,2,2,35,37],[105,16,13,37,50],[106,2,1,50,51],[108,1,1,51,52],[112,1,1,52,53]]],[3,16,15,53,68,[[121,1,1,53,54],[122,1,1,54,55],[124,3,3,55,58],[131,3,2,58,60],[132,2,2,60,62],[141,1,1,62,63],[144,2,2,63,65],[145,1,1,65,66],[147,1,1,66,67],[151,1,1,67,68]]],[4,3,2,68,70,[[173,2,1,68,69],[184,1,1,69,70]]],[8,1,1,70,71,[[238,1,1,70,71]]],[9,1,1,71,72,[[287,1,1,71,72]]],[12,1,1,72,73,[[343,1,1,72,73]]],[13,2,2,73,75,[[395,1,1,73,74],[396,1,1,74,75]]],[15,1,1,75,76,[[422,1,1,75,76]]],[18,3,3,76,79,[[542,1,1,76,77],[555,1,1,77,78],[556,1,1,78,79]]],[19,2,2,79,81,[[643,2,2,79,81]]],[22,5,5,81,86,[[684,1,1,81,82],[700,1,1,82,83],[705,1,1,83,84],[706,1,1,84,85],[725,1,1,85,86]]],[23,1,1,86,87,[[762,1,1,86,87]]],[25,6,6,87,93,[[817,1,1,87,88],[844,2,2,88,90],[846,3,3,90,93]]],[26,1,1,93,94,[[858,1,1,93,94]]]],[151,948,2369,2372,2373,2392,2397,2398,2468,2749,2815,2821,2826,2830,2836,2840,2843,2846,2848,2856,2879,2886,2932,2951,2960,2994,3051,3052,3129,3130,3131,3132,3140,3142,3164,3183,3198,3207,3211,3212,3217,3218,3219,3221,3225,3228,3231,3233,3234,3235,3246,3303,3430,3800,3834,3951,3958,3960,4178,4181,4240,4241,4484,4599,4607,4613,4714,4878,5455,5801,7290,8583,10503,11815,11845,12582,14863,15151,15194,16846,16854,17776,18066,18160,18182,18610,19407,20825,21592,21598,21645,21647,21650,22012]]],["+",[5,5,[[0,1,1,0,1,[[31,1,1,0,1]]],[2,1,1,1,2,[[105,1,1,1,2]]],[18,1,1,2,3,[[556,1,1,2,3]]],[25,2,2,3,5,[[844,1,1,3,4],[846,1,1,4,5]]]],[948,3221,15194,21598,21650]]],["atonement",[71,64,[[1,7,6,0,6,[[78,2,2,0,2],[79,4,3,2,5],[81,1,1,5,6]]],[2,46,41,6,47,[[90,1,1,6,7],[93,4,4,7,11],[94,5,5,11,16],[95,1,1,16,17],[96,1,1,17,18],[97,1,1,18,19],[98,2,1,19,20],[99,1,1,20,21],[101,2,2,21,23],[103,7,7,23,30],[104,2,2,30,32],[105,15,12,32,44],[106,2,1,44,45],[108,1,1,45,46],[112,1,1,46,47]]],[3,14,13,47,60,[[122,1,1,47,48],[124,3,3,48,51],[131,3,2,51,53],[132,2,2,53,55],[141,1,1,55,56],[144,2,2,56,58],[145,1,1,58,59],[147,1,1,59,60]]],[9,1,1,60,61,[[287,1,1,60,61]]],[12,1,1,61,62,[[343,1,1,61,62]]],[13,1,1,62,63,[[395,1,1,62,63]]],[15,1,1,63,64,[[422,1,1,63,64]]]],[2372,2373,2392,2397,2398,2468,2749,2815,2821,2826,2830,2836,2840,2843,2846,2848,2856,2886,2951,2960,2994,3051,3052,3129,3130,3131,3132,3140,3142,3164,3183,3198,3207,3211,3212,3217,3218,3219,3225,3228,3231,3233,3234,3235,3246,3303,3430,3834,3951,3958,3960,4178,4181,4240,4241,4484,4599,4607,4613,4714,8583,10503,11815,12582]]],["away",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14863]]],["cleansed",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4878]]],["disannulled",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18182]]],["forgave",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15151]]],["forgive",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19407]]],["forgiven",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5455]]],["made",[2,2,[[1,1,1,0,1,[[78,1,1,0,1]]],[3,1,1,1,2,[[121,1,1,1,2]]]],[2369,3800]]],["merciful",[2,2,[[4,2,2,0,2,[[173,1,1,0,1],[184,1,1,1,2]]]],[5455,5801]]],["off",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18610]]],["pacified",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20825]]],["pacify",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16854]]],["pardon",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11845]]],["pitch",[1,1,[[0,1,1,0,1,[[5,1,1,0,1]]]],[151]]],["purge",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21592]]],["purged",[5,5,[[8,1,1,0,1,[[238,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]],[22,3,3,2,5,[[684,1,1,2,3],[700,1,1,3,4],[705,1,1,4,5]]]],[7290,16846,17776,18066,18160]]],["reconcile",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2879]]],["reconciliation",[4,4,[[2,1,1,0,1,[[97,1,1,0,1]]],[25,2,2,1,3,[[846,2,2,1,3]]],[26,1,1,3,4,[[858,1,1,3,4]]]],[2932,21645,21647,22012]]]]},{"k":"H3723","v":[["villages",[2,2,[[12,1,1,0,1,[[364,1,1,0,1]]],[21,1,1,1,2,[[677,1,1,1,2]]]],[11134,17638]]]]},{"k":"H3724","v":[["*",[17,17,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,2,2,1,3,[[70,1,1,1,2],[79,1,1,2,3]]],[3,2,2,3,5,[[151,2,2,3,5]]],[8,2,2,5,7,[[241,1,1,5,6],[247,1,1,6,7]]],[17,2,2,7,9,[[468,1,1,7,8],[471,1,1,8,9]]],[18,1,1,9,10,[[526,1,1,9,10]]],[19,3,3,10,13,[[633,1,1,10,11],[640,1,1,11,12],[648,1,1,12,13]]],[21,2,2,13,15,[[671,1,1,13,14],[674,1,1,14,15]]],[22,1,1,15,16,[[721,1,1,15,16]]],[29,1,1,16,17,[[883,1,1,16,17]]]],[151,2107,2394,4876,4877,7349,7463,13674,13754,14655,16575,16755,17002,17551,17595,18508,22435]]],["bribe",[2,2,[[8,1,1,0,1,[[247,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[7463,22435]]],["camphire",[2,2,[[21,2,2,0,2,[[671,1,1,0,1],[674,1,1,1,2]]]],[17551,17595]]],["money",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2107]]],["pitch",[1,1,[[0,1,1,0,1,[[5,1,1,0,1]]]],[151]]],["ransom",[8,8,[[1,1,1,0,1,[[79,1,1,0,1]]],[17,2,2,1,3,[[468,1,1,1,2],[471,1,1,2,3]]],[18,1,1,3,4,[[526,1,1,3,4]]],[19,3,3,4,7,[[633,1,1,4,5],[640,1,1,5,6],[648,1,1,6,7]]],[22,1,1,7,8,[[721,1,1,7,8]]]],[2394,13674,13754,14655,16575,16755,17002,18508]]],["satisfaction",[2,2,[[3,2,2,0,2,[[151,2,2,0,2]]]],[4876,4877]]],["villages",[1,1,[[8,1,1,0,1,[[241,1,1,0,1]]]],[7349]]]]},{"k":"H3725","v":[["*",[8,8,[[1,3,3,0,3,[[78,1,1,0,1],[79,2,2,1,3]]],[2,3,3,3,6,[[112,2,2,3,5],[114,1,1,5,6]]],[3,2,2,6,8,[[121,1,1,6,7],[145,1,1,7,8]]]],[2372,2392,2398,3429,3430,3478,3800,4619]]],["atonement",[7,7,[[1,2,2,0,2,[[78,1,1,0,1],[79,1,1,1,2]]],[2,3,3,2,5,[[112,2,2,2,4],[114,1,1,4,5]]],[3,2,2,5,7,[[121,1,1,5,6],[145,1,1,6,7]]]],[2372,2398,3429,3430,3478,3800,4619]]],["atonements",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2392]]]]},{"k":"H3726","v":[["Chepharhaammonai",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6317]]]]},{"k":"H3727","v":[["*",[27,22,[[1,18,16,0,16,[[74,7,6,0,6],[75,1,1,6,7],[79,1,1,7,8],[80,1,1,8,9],[84,1,1,9,10],[86,5,4,10,14],[88,1,1,14,15],[89,1,1,15,16]]],[2,7,4,16,20,[[105,7,4,16,20]]],[3,1,1,20,21,[[123,1,1,20,21]]],[12,1,1,21,22,[[365,1,1,21,22]]]],[2212,2213,2214,2215,2216,2217,2269,2388,2427,2543,2610,2611,2612,2613,2699,2727,3203,3214,3215,3216,3939,11154]]],["seat",[26,22,[[1,17,16,0,16,[[74,7,6,0,6],[75,1,1,6,7],[79,1,1,7,8],[80,1,1,8,9],[84,1,1,9,10],[86,4,4,10,14],[88,1,1,14,15],[89,1,1,15,16]]],[2,7,4,16,20,[[105,7,4,16,20]]],[3,1,1,20,21,[[123,1,1,20,21]]],[12,1,1,21,22,[[365,1,1,21,22]]]],[2212,2213,2214,2215,2216,2217,2269,2388,2427,2543,2610,2611,2612,2613,2699,2727,3203,3214,3215,3216,3939,11154]]],["seatward",[1,1,[[1,1,1,0,1,[[86,1,1,0,1]]]],[2613]]]]},{"k":"H3728","v":[["covered",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20370]]]]},{"k":"H3729","v":[["*",[4,4,[[26,4,4,0,4,[[852,4,4,0,4]]]],[21827,21828,21830,21831]]],["bind",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21827]]],["bound",[3,3,[[26,3,3,0,3,[[852,3,3,0,3]]]],[21828,21830,21831]]]]},{"k":"H3730","v":[["*",[18,12,[[1,16,10,0,10,[[74,8,5,0,5],[86,8,5,5,10]]],[29,1,1,10,11,[[887,1,1,10,11]]],[35,1,1,11,12,[[907,1,1,11,12]]]],[2226,2228,2229,2230,2231,2621,2623,2624,2625,2626,22496,22819]]],["knop",[10,4,[[1,10,4,0,4,[[74,5,2,0,2],[86,5,2,2,4]]]],[2228,2230,2623,2625]]],["knops",[6,6,[[1,6,6,0,6,[[74,3,3,0,3],[86,3,3,3,6]]]],[2226,2229,2231,2621,2624,2626]]],["lintel",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22496]]],["lintels",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22819]]]]},{"k":"H3731","v":[["*",[3,3,[[4,1,1,0,1,[[154,1,1,0,1]]],[23,1,1,1,2,[[791,1,1,1,2]]],[29,1,1,2,3,[[887,1,1,2,3]]]],[4961,20077,22502]]],["+",[2,2,[[4,1,1,0,1,[[154,1,1,0,1]]],[29,1,1,1,2,[[887,1,1,1,2]]]],[4961,22502]]],["Caphtor",[1,1,[[23,1,1,0,1,[[791,1,1,0,1]]]],[20077]]]]},{"k":"H3732","v":[["*",[3,3,[[0,1,1,0,1,[[9,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]],[12,1,1,2,3,[[338,1,1,2,3]]]],[248,4961,10264]]],["Caphthorim",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10264]]],["Caphtorim",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[248]]],["Caphtorims",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4961]]]]},{"k":"H3733","v":[["*",[16,15,[[0,1,1,0,1,[[30,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[8,1,1,2,3,[[250,1,1,2,3]]],[11,1,1,3,4,[[315,1,1,3,4]]],[18,2,2,4,6,[[514,1,1,4,5],[542,1,1,5,6]]],[22,3,3,6,9,[[694,1,1,6,7],[708,1,1,7,8],[712,1,1,8,9]]],[23,1,1,9,10,[[795,1,1,9,10]]],[25,5,4,10,14,[[805,1,1,10,11],[822,2,1,11,12],[828,1,1,12,13],[840,1,1,13,14]]],[29,1,1,14,15,[[884,1,1,14,15]]]],[907,5772,7569,9580,14470,14873,17970,18240,18309,20252,20531,20966,21142,21466,22454]]],["captains",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20966]]],["furniture",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[907]]],["lamb",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17970]]],["lambs",[9,9,[[4,1,1,0,1,[[184,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]],[11,1,1,2,3,[[315,1,1,2,3]]],[18,1,1,3,4,[[514,1,1,3,4]]],[22,1,1,4,5,[[712,1,1,4,5]]],[23,1,1,5,6,[[795,1,1,5,6]]],[25,2,2,6,8,[[828,1,1,6,7],[840,1,1,7,8]]],[29,1,1,8,9,[[884,1,1,8,9]]]],[5772,7569,9580,14470,18309,20252,21142,21466,22454]]],["pastures",[2,2,[[18,1,1,0,1,[[542,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]]],[14873,18240]]],["rams",[2,2,[[25,2,2,0,2,[[805,1,1,0,1],[822,1,1,1,2]]]],[20531,20966]]]]},{"k":"H3734","v":[["*",[9,6,[[10,4,2,0,2,[[294,2,1,0,1],[295,2,1,1,2]]],[13,3,2,2,4,[[368,2,1,2,3],[393,1,1,3,4]]],[14,1,1,4,5,[[409,1,1,4,5]]],[25,1,1,5,6,[[846,1,1,5,6]]]],[8866,8889,11221,11760,12195,21644]]],["cor",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21644]]],["measures",[8,5,[[10,4,2,0,2,[[294,2,1,0,1],[295,2,1,1,2]]],[13,3,2,2,4,[[368,2,1,2,3],[393,1,1,3,4]]],[14,1,1,4,5,[[409,1,1,4,5]]]],[8866,8889,11221,11760,12195]]]]},{"k":"H3735","v":[["grieved",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21948]]]]},{"k":"H3736","v":[["clothed",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10818]]]]},{"k":"H3737","v":[["hats",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21828]]]]},{"k":"H3738","v":[["*",[16,16,[[0,2,2,0,2,[[25,1,1,0,1],[49,1,1,1,2]]],[1,1,1,2,3,[[70,1,1,2,3]]],[3,1,1,3,4,[[137,1,1,3,4]]],[13,1,1,4,5,[[382,1,1,4,5]]],[17,2,2,5,7,[[441,1,1,5,6],[476,1,1,6,7]]],[18,5,5,7,12,[[484,1,1,7,8],[517,1,1,8,9],[534,1,1,9,10],[571,1,1,10,11],[596,1,1,11,12]]],[19,2,2,12,14,[[643,1,1,12,13],[653,1,1,13,14]]],[23,2,2,14,16,[[762,2,2,14,16]]]],[717,1511,2110,4358,11523,13005,13894,14010,14531,14774,15444,15983,16867,17168,19404,19406]]],["banquet",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13894]]],["dig",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]]],[2110,13005]]],["digged",[8,8,[[0,2,2,0,2,[[25,1,1,0,1],[49,1,1,1,2]]],[3,1,1,2,3,[[137,1,1,2,3]]],[18,3,3,3,6,[[534,1,1,3,4],[571,1,1,4,5],[596,1,1,5,6]]],[23,2,2,6,8,[[762,2,2,6,8]]]],[717,1511,4358,14774,15444,15983,19404,19406]]],["diggeth",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17168]]],["made",[2,2,[[13,1,1,0,1,[[382,1,1,0,1]]],[18,1,1,1,2,[[484,1,1,1,2]]]],[11523,14010]]],["opened",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14531]]],["up",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16867]]]]},{"k":"H3739","v":[["*",[3,3,[[4,1,1,0,1,[[154,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]],[27,1,1,2,3,[[864,1,1,2,3]]]],[4944,9697,22130]]],["bought",[1,1,[[27,1,1,0,1,[[864,1,1,0,1]]]],[22130]]],["buy",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4944]]],["prepared",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9697]]]]},{"k":"H3740","v":[["provision",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9697]]]]},{"k":"H3741","v":[["cottages",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22811]]]]},{"k":"H3742","v":[["*",[91,66,[[0,1,1,0,1,[[2,1,1,0,1]]],[1,17,11,1,12,[[74,7,4,1,5],[75,2,2,5,7],[85,2,2,7,9],[86,6,3,9,12]]],[3,1,1,12,13,[[123,1,1,12,13]]],[8,1,1,13,14,[[239,1,1,13,14]]],[9,2,2,14,16,[[272,1,1,14,15],[288,1,1,15,16]]],[10,20,13,16,29,[[296,15,9,16,25],[297,2,2,25,27],[298,3,2,27,29]]],[11,1,1,29,30,[[331,1,1,29,30]]],[12,2,2,30,32,[[350,1,1,30,31],[365,1,1,31,32]]],[13,11,8,32,40,[[369,8,6,32,38],[371,3,2,38,40]]],[18,3,3,40,43,[[495,1,1,40,41],[557,1,1,41,42],[576,1,1,42,43]]],[22,1,1,43,44,[[715,1,1,43,44]]],[25,31,22,44,66,[[810,1,1,44,45],[811,21,15,45,60],[812,1,1,60,61],[829,2,2,61,63],[842,6,3,63,66]]]],[79,2213,2214,2215,2217,2236,2266,2574,2601,2611,2612,2613,3939,7301,8159,8613,8919,8920,8921,8922,8923,8924,8925,8928,8931,8963,8970,8991,8992,10076,10766,11161,11236,11239,11240,11241,11242,11243,11275,11276,14128,15199,15500,18368,20625,20634,20635,20636,20637,20638,20639,20640,20641,20642,20647,20648,20649,20651,20652,20653,20677,21171,21173,21544,21546,21551]]],["Cherubims",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[79]]],["cherub",[27,19,[[1,4,2,0,2,[[74,2,1,0,1],[86,2,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[10,6,4,3,7,[[296,6,4,3,7]]],[13,3,2,7,9,[[369,3,2,7,9]]],[18,1,1,9,10,[[495,1,1,9,10]]],[25,12,9,10,19,[[810,1,1,10,11],[811,6,5,11,16],[829,2,2,16,18],[842,3,1,18,19]]]],[2214,2612,8613,8920,8921,8922,8923,11240,11241,14128,20625,20635,20637,20640,20642,20647,21171,21173,21544]]],["cherubims",[62,54,[[1,13,11,0,11,[[74,5,4,0,4],[75,2,2,4,6],[85,2,2,6,8],[86,4,3,8,11]]],[3,1,1,11,12,[[123,1,1,11,12]]],[8,1,1,12,13,[[239,1,1,12,13]]],[9,1,1,13,14,[[272,1,1,13,14]]],[10,14,11,14,25,[[296,9,7,14,21],[297,2,2,21,23],[298,3,2,23,25]]],[11,1,1,25,26,[[331,1,1,25,26]]],[12,2,2,26,28,[[350,1,1,26,27],[365,1,1,27,28]]],[13,8,7,28,35,[[369,5,5,28,33],[371,3,2,33,35]]],[18,2,2,35,37,[[557,1,1,35,36],[576,1,1,36,37]]],[22,1,1,37,38,[[715,1,1,37,38]]],[25,18,16,38,54,[[811,14,12,38,50],[812,1,1,50,51],[842,3,3,51,54]]]],[2213,2214,2215,2217,2236,2266,2574,2601,2611,2612,2613,3939,7301,8159,8919,8921,8923,8924,8925,8928,8931,8963,8970,8991,8992,10076,10766,11161,11236,11239,11240,11242,11243,11275,11276,15199,15500,18368,20634,20635,20636,20639,20640,20641,20642,20648,20649,20651,20652,20653,20677,21544,21546,21551]]],["cherubims'",[1,1,[[25,1,1,0,1,[[811,1,1,0,1]]]],[20638]]]]},{"k":"H3743","v":[["Cherub",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12086,12481]]]]},{"k":"H3744","v":[["herald",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21811]]]]},{"k":"H3745","v":[["proclamation",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21903]]]]},{"k":"H3746","v":[["captains",[2,2,[[11,2,2,0,2,[[323,2,2,0,2]]]],[9833,9848]]]]},{"k":"H3747","v":[["Cherith",[2,2,[[10,2,2,0,2,[[307,2,2,0,2]]]],[9320,9322]]]]},{"k":"H3748","v":[["*",[4,4,[[4,2,2,0,2,[[176,2,2,0,2]]],[22,1,1,2,3,[[728,1,1,2,3]]],[23,1,1,3,4,[[747,1,1,3,4]]]],[5526,5528,18663,19010]]],["divorce",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19010]]],["divorcement",[3,3,[[4,2,2,0,2,[[176,2,2,0,2]]],[22,1,1,2,3,[[728,1,1,2,3]]]],[5526,5528,18663]]]]},{"k":"H3749","v":[["compass",[2,2,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]]],[2277,2637]]]]},{"k":"H3750","v":[["saffron",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17596]]]]},{"k":"H3751","v":[["Carchemish",[3,3,[[13,1,1,0,1,[[401,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]],[23,1,1,2,3,[[790,1,1,2,3]]]],[11986,17859,20047]]]]},{"k":"H3752","v":[["Carcas",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12712]]]]},{"k":"H3753","v":[["beasts",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18942]]]]},{"k":"H3754","v":[["*",[93,82,[[0,1,1,0,1,[[8,1,1,0,1]]],[1,3,2,1,3,[[71,2,1,1,2],[72,1,1,2,3]]],[2,4,3,3,6,[[108,2,1,3,4],[114,2,2,4,6]]],[3,4,4,6,10,[[132,1,1,6,7],[136,1,1,7,8],[137,1,1,8,9],[138,1,1,9,10]]],[4,8,7,10,17,[[158,1,1,10,11],[172,1,1,11,12],[174,2,1,12,13],[175,1,1,13,14],[176,1,1,14,15],[180,2,2,15,17]]],[5,1,1,17,18,[[210,1,1,17,18]]],[6,6,6,18,24,[[219,1,1,18,19],[221,1,1,19,20],[224,1,1,20,21],[225,1,1,21,22],[231,2,2,22,24]]],[8,3,3,24,27,[[243,2,2,24,26],[257,1,1,26,27]]],[10,10,7,27,34,[[311,10,7,27,34]]],[11,3,3,34,37,[[317,1,1,34,35],[330,1,1,35,36],[331,1,1,36,37]]],[12,2,1,37,38,[[364,2,1,37,38]]],[15,5,5,38,43,[[417,4,4,38,42],[421,1,1,42,43]]],[17,2,2,43,45,[[459,2,2,43,45]]],[18,1,1,45,46,[[584,1,1,45,46]]],[19,2,2,46,48,[[651,1,1,46,47],[658,1,1,47,48]]],[20,1,1,48,49,[[660,1,1,48,49]]],[21,9,6,49,55,[[671,3,2,49,51],[672,2,1,51,52],[677,1,1,52,53],[678,3,2,53,55]]],[22,14,13,55,68,[[679,1,1,55,56],[681,1,1,56,57],[683,7,6,57,63],[694,1,1,63,64],[705,1,1,64,65],[714,1,1,65,66],[715,1,1,66,67],[743,1,1,67,68]]],[23,6,6,68,74,[[756,1,1,68,69],[775,1,1,69,70],[776,1,1,70,71],[779,2,2,71,73],[783,1,1,73,74]]],[25,1,1,74,75,[[829,1,1,74,75]]],[27,1,1,75,76,[[863,1,1,75,76]]],[29,4,4,76,80,[[882,1,1,76,77],[883,2,2,77,79],[887,1,1,79,80]]],[32,1,1,80,81,[[893,1,1,80,81]]],[35,1,1,81,82,[[906,1,1,81,82]]]],[225,2118,2155,3291,3472,3473,4208,4328,4362,4399,5097,5433,5479,5524,5546,5641,5650,6489,6781,6862,6914,6934,7122,7123,7383,7384,7794,9452,9453,9457,9458,9466,9467,9469,9673,10056,10090,11136,12385,12386,12387,12393,12536,13442,13454,15736,17109,17300,17337,17543,17551,17569,17639,17651,17652,17662,17721,17740,17742,17743,17744,17746,17749,17979,18153,18347,18382,18918,19259,19696,19746,19830,19832,19933,21183,22120,22419,22434,22440,22509,22585,22800]]],["+",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11136]]],["vines",[3,2,[[21,2,1,0,1,[[672,2,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[17569,19696]]],["vineyard",[44,36,[[0,1,1,0,1,[[8,1,1,0,1]]],[1,3,2,1,3,[[71,2,1,1,2],[72,1,1,2,3]]],[2,4,3,3,6,[[108,2,1,3,4],[114,2,2,4,6]]],[4,6,5,6,11,[[172,1,1,6,7],[174,2,1,7,8],[175,1,1,8,9],[176,1,1,9,10],[180,1,1,10,11]]],[10,10,7,11,18,[[311,10,7,11,18]]],[19,2,2,18,20,[[651,1,1,18,19],[658,1,1,19,20]]],[21,4,3,20,23,[[671,1,1,20,21],[678,3,2,21,23]]],[22,10,9,23,32,[[679,1,1,23,24],[681,1,1,24,25],[683,7,6,25,31],[705,1,1,31,32]]],[23,3,3,32,35,[[756,1,1,32,33],[779,2,2,33,35]]],[32,1,1,35,36,[[893,1,1,35,36]]]],[225,2118,2155,3291,3472,3473,5433,5479,5524,5546,5641,9452,9453,9457,9458,9466,9467,9469,17109,17300,17543,17651,17652,17662,17721,17740,17742,17743,17744,17746,17749,18153,19259,19830,19832,22585]]],["vineyards",[44,44,[[3,4,4,0,4,[[132,1,1,0,1],[136,1,1,1,2],[137,1,1,2,3],[138,1,1,3,4]]],[4,2,2,4,6,[[158,1,1,4,5],[180,1,1,5,6]]],[5,1,1,6,7,[[210,1,1,6,7]]],[6,6,6,7,13,[[219,1,1,7,8],[221,1,1,8,9],[224,1,1,9,10],[225,1,1,10,11],[231,2,2,11,13]]],[8,3,3,13,16,[[243,2,2,13,15],[257,1,1,15,16]]],[11,3,3,16,19,[[317,1,1,16,17],[330,1,1,17,18],[331,1,1,18,19]]],[12,1,1,19,20,[[364,1,1,19,20]]],[15,5,5,20,25,[[417,4,4,20,24],[421,1,1,24,25]]],[17,1,1,25,26,[[459,1,1,25,26]]],[18,1,1,26,27,[[584,1,1,26,27]]],[20,1,1,27,28,[[660,1,1,27,28]]],[21,3,3,28,31,[[671,2,2,28,30],[677,1,1,30,31]]],[22,4,4,31,35,[[694,1,1,31,32],[714,1,1,32,33],[715,1,1,33,34],[743,1,1,34,35]]],[23,2,2,35,37,[[776,1,1,35,36],[783,1,1,36,37]]],[25,1,1,37,38,[[829,1,1,37,38]]],[27,1,1,38,39,[[863,1,1,38,39]]],[29,4,4,39,43,[[882,1,1,39,40],[883,2,2,40,42],[887,1,1,42,43]]],[35,1,1,43,44,[[906,1,1,43,44]]]],[4208,4328,4362,4399,5097,5650,6489,6781,6862,6914,6934,7122,7123,7383,7384,7794,9673,10056,10090,11136,12385,12386,12387,12393,12536,13454,15736,17337,17543,17551,17639,17979,18347,18382,18918,19746,19933,21183,22120,22419,22434,22440,22509,22800]]],["vintage",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13442]]]]},{"k":"H3755","v":[["*",[5,5,[[11,1,1,0,1,[[337,1,1,0,1]]],[13,1,1,1,2,[[392,1,1,1,2]]],[22,1,1,2,3,[[739,1,1,2,3]]],[23,1,1,3,4,[[796,1,1,3,4]]],[28,1,1,4,5,[[876,1,1,4,5]]]],[10234,11742,18848,20292,22302]]],["dressers",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11742]]],["vinedressers",[4,4,[[11,1,1,0,1,[[337,1,1,0,1]]],[22,1,1,1,2,[[739,1,1,1,2]]],[23,1,1,2,3,[[796,1,1,2,3]]],[28,1,1,3,4,[[876,1,1,3,4]]]],[10234,18848,20292,22302]]]]},{"k":"H3756","v":[["Carmi",[8,8,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]],[3,1,1,2,3,[[142,1,1,2,3]]],[5,2,2,3,5,[[193,2,2,3,5]]],[12,3,3,5,8,[[339,1,1,5,6],[341,1,1,6,7],[342,1,1,7,8]]]],[1395,1669,4495,5977,5994,10313,10386,10431]]]]},{"k":"H3757","v":[["Carmites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4495]]]]},{"k":"H3758","v":[["crimson",[3,3,[[13,3,3,0,3,[[368,2,2,0,2],[369,1,1,2,3]]]],[11218,11225,11243]]]]},{"k":"H3759","v":[["*",[14,12,[[2,2,2,0,2,[[91,1,1,0,1],[112,1,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]],[22,8,6,3,9,[[688,1,1,3,4],[694,1,1,4,5],[707,2,1,5,6],[710,3,2,6,8],[715,1,1,8,9]]],[23,3,3,9,12,[[746,1,1,9,10],[748,1,1,10,11],[792,1,1,11,12]]]],[2776,3416,9645,17868,17979,18210,18274,18275,18376,18972,19053,20113]]],["+",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20113]]],["Carmel",[1,1,[[22,1,1,0,1,[[715,1,1,0,1]]]],[18376]]],["corn",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9645]]],["ears",[2,2,[[2,2,2,0,2,[[91,1,1,0,1],[112,1,1,1,2]]]],[2776,3416]]],["field",[7,5,[[22,7,5,0,5,[[688,1,1,0,1],[694,1,1,1,2],[707,2,1,2,3],[710,3,2,3,5]]]],[17868,17979,18210,18274,18275]]],["place",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19053]]],["plentiful",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18972]]]]},{"k":"H3760","v":[["Carmel",[25,24,[[5,3,3,0,3,[[198,1,1,0,1],[201,1,1,1,2],[205,1,1,2,3]]],[8,6,5,3,8,[[250,1,1,3,4],[260,5,4,4,8]]],[10,3,3,8,11,[[308,3,3,8,11]]],[11,3,3,11,14,[[314,1,1,11,12],[316,1,1,12,13],[331,1,1,13,14]]],[13,1,1,14,15,[[392,1,1,14,15]]],[21,1,1,15,16,[[677,1,1,15,16]]],[22,2,2,16,18,[[711,1,1,16,17],[713,1,1,17,18]]],[23,2,2,18,20,[[790,1,1,18,19],[794,1,1,19,20]]],[29,2,2,20,22,[[879,1,1,20,21],[887,1,1,21,22]]],[32,1,1,22,23,[[899,1,1,22,23]]],[33,1,1,23,24,[[900,1,1,23,24]]]],[6152,6257,6347,7572,7863,7866,7868,7901,9360,9361,9383,9576,9628,10084,11742,17632,18288,18322,20063,20185,22366,22498,22678,22688]]]]},{"k":"H3761","v":[["*",[6,6,[[8,2,2,0,2,[[262,1,1,0,1],[265,1,1,1,2]]],[9,3,3,2,5,[[268,1,1,2,3],[269,1,1,3,4],[289,1,1,4,5]]],[12,1,1,5,6,[[348,1,1,5,6]]]],[7933,7983,8051,8084,8688,10710]]],["Carmelite",[5,5,[[8,1,1,0,1,[[265,1,1,0,1]]],[9,3,3,1,4,[[268,1,1,1,2],[269,1,1,2,3],[289,1,1,3,4]]],[12,1,1,4,5,[[348,1,1,4,5]]]],[7983,8051,8084,8688,10710]]],["Carmelitess",[1,1,[[8,1,1,0,1,[[262,1,1,0,1]]]],[7933]]]]},{"k":"H3762","v":[["Carmelitess",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10362]]]]},{"k":"H3763","v":[["Cheran",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1066,10293]]]]},{"k":"H3764","v":[["*",[3,2,[[26,3,2,0,2,[[854,1,1,0,1],[856,2,1,1,2]]]],[21894,21942]]],["throne",[2,2,[[26,2,2,0,2,[[854,1,1,0,1],[856,1,1,1,2]]]],[21894,21942]]],["thrones",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21942]]]]},{"k":"H3765","v":[["waste",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15211]]]]},{"k":"H3766","v":[["*",[36,32,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[6,7,4,2,6,[[215,3,1,2,3],[217,2,2,3,5],[221,2,1,5,6]]],[8,1,1,6,7,[[239,1,1,6,7]]],[9,1,1,7,8,[[288,1,1,7,8]]],[10,2,2,8,10,[[298,1,1,8,9],[309,1,1,9,10]]],[11,2,2,10,12,[[313,1,1,10,11],[321,1,1,11,12]]],[13,2,2,12,14,[[373,1,1,12,13],[395,1,1,13,14]]],[14,1,1,14,15,[[411,1,1,14,15]]],[16,3,2,15,17,[[428,3,2,15,17]]],[17,3,3,17,20,[[439,1,1,17,18],[466,1,1,18,19],[474,1,1,19,20]]],[18,7,7,20,27,[[494,1,1,20,21],[495,1,1,21,22],[497,1,1,22,23],[499,1,1,23,24],[549,1,1,24,25],[555,1,1,25,26],[572,1,1,26,27]]],[22,5,5,27,32,[[688,1,1,27,28],[723,1,1,28,29],[724,2,2,29,31],[743,1,1,31,32]]]],[1482,4455,6650,6699,6700,6864,7316,8642,9039,9405,9546,9780,11327,11820,12242,12749,12752,12934,13598,13837,14116,14157,14190,14233,15009,15144,15460,17854,18584,18587,18588,18909]]],["+",[3,2,[[6,2,1,0,1,[[221,2,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]]],[6864,9039]]],["bow",[4,4,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,2,2,1,3,[[499,1,1,1,2],[549,1,1,2,3]]],[22,1,1,3,4,[[723,1,1,3,4]]]],[13837,14233,15009,18584]]],["bowed",[9,6,[[6,3,1,0,1,[[215,3,1,0,1]]],[10,1,1,1,2,[[309,1,1,1,2]]],[13,2,2,2,4,[[373,1,1,2,3],[395,1,1,3,4]]],[16,3,2,4,6,[[428,3,2,4,6]]]],[6650,9405,11327,11820,12749,12752]]],["couched",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4455]]],["down",[13,13,[[0,1,1,0,1,[[48,1,1,0,1]]],[6,2,2,1,3,[[217,2,2,1,3]]],[11,1,1,3,4,[[321,1,1,3,4]]],[17,1,1,4,5,[[466,1,1,4,5]]],[18,4,4,5,9,[[494,1,1,5,6],[497,1,1,6,7],[555,1,1,7,8],[572,1,1,8,9]]],[22,4,4,9,13,[[688,1,1,9,10],[724,2,2,10,12],[743,1,1,12,13]]]],[1482,6699,6700,9780,13598,14116,14190,15144,15460,17854,18587,18588,18909]]],["feeble",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12934]]],["fell",[2,2,[[11,1,1,0,1,[[313,1,1,0,1]]],[14,1,1,1,2,[[411,1,1,1,2]]]],[9546,12242]]],["herself",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7316]]],["subdued",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8642,14157]]]]},{"k":"H3767","v":[["legs",[9,9,[[1,2,2,0,2,[[61,1,1,0,1],[78,1,1,1,2]]],[2,6,6,2,8,[[90,2,2,2,4],[93,1,1,4,5],[97,1,1,5,6],[98,1,1,6,7],[100,1,1,7,8]]],[29,1,1,8,9,[[881,1,1,8,9]]]],[1825,2353,2754,2758,2806,2938,2967,3018,22407]]]]},{"k":"H3768","v":[["green",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12708]]]]},{"k":"H3769","v":[["*",[2,2,[[9,2,2,0,2,[[272,2,2,0,2]]]],[8171,8173]]],["danced",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8171]]],["dancing",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8173]]]]},{"k":"H3770","v":[["belly",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20246]]]]},{"k":"H3771","v":[["Carshena",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12716]]]]},{"k":"H3772","v":[["*",[287,279,[[0,8,8,0,8,[[8,1,1,0,1],[14,1,1,1,2],[16,1,1,2,3],[20,2,2,3,5],[25,1,1,5,6],[30,1,1,6,7],[40,1,1,7,8]]],[1,14,14,8,22,[[53,1,1,8,9],[57,1,1,9,10],[61,2,2,10,12],[72,1,1,12,13],[73,1,1,13,14],[79,2,2,14,16],[80,1,1,16,17],[83,5,5,17,22]]],[2,20,20,22,42,[[96,4,4,22,26],[106,4,4,26,30],[107,1,1,30,31],[108,1,1,31,32],[109,5,5,32,37],[111,2,2,37,39],[112,1,1,39,40],[115,2,2,40,42]]],[3,10,9,42,51,[[120,1,1,42,43],[125,1,1,43,44],[127,1,1,44,45],[129,2,2,45,47],[131,3,2,47,49],[135,2,2,49,51]]],[4,17,16,51,67,[[156,1,1,51,52],[157,2,2,52,54],[159,1,1,54,55],[161,1,1,55,56],[164,1,1,56,57],[171,2,2,57,59],[172,2,2,59,61],[175,1,1,61,62],[181,5,4,62,66],[183,1,1,66,67]]],[5,13,12,67,79,[[189,2,2,67,69],[190,2,1,69,70],[193,1,1,70,71],[195,5,5,71,76],[197,1,1,76,77],[209,1,1,77,78],[210,1,1,78,79]]],[6,8,8,79,87,[[212,1,1,79,80],[214,1,1,80,81],[216,4,4,81,85],[219,2,2,85,87]]],[7,1,1,87,88,[[235,1,1,87,88]]],[8,17,16,88,104,[[237,1,1,88,89],[240,1,1,89,90],[246,2,2,90,92],[252,1,1,92,93],[253,1,1,93,94],[255,3,2,94,96],[257,1,1,96,97],[258,1,1,97,98],[259,4,4,98,102],[263,1,1,102,103],[266,1,1,103,104]]],[9,8,8,104,112,[[269,4,4,104,108],[271,1,1,108,109],[273,1,1,109,110],[276,1,1,110,111],[286,1,1,111,112]]],[10,17,16,112,128,[[292,1,1,112,113],[295,3,2,113,115],[298,3,3,115,118],[299,2,2,118,120],[301,1,1,120,121],[304,2,2,121,123],[305,1,1,123,124],[308,2,2,124,126],[310,1,1,126,127],[311,1,1,127,128]]],[11,10,10,128,138,[[321,1,1,128,129],[323,2,2,129,131],[329,3,3,131,134],[330,1,1,134,135],[331,1,1,135,136],[335,2,2,136,138]]],[12,4,4,138,142,[[348,1,1,138,139],[353,1,1,139,140],[354,1,1,140,141],[356,1,1,141,142]]],[13,15,14,142,156,[[368,3,3,142,145],[371,1,1,145,146],[372,2,2,146,148],[373,2,1,148,149],[381,1,1,149,150],[387,1,1,150,151],[388,1,1,151,152],[389,2,2,152,154],[395,1,1,154,155],[400,1,1,155,156]]],[14,1,1,156,157,[[412,1,1,156,157]]],[15,2,2,157,159,[[421,2,2,157,159]]],[17,3,3,159,162,[[449,1,1,159,160],[466,1,1,160,161],[476,1,1,161,162]]],[18,14,14,162,176,[[489,1,1,162,163],[511,1,1,163,164],[514,5,5,164,169],[527,1,1,169,170],[560,1,1,170,171],[566,1,1,171,172],[578,1,1,172,173],[582,1,1,173,174],[586,2,2,174,176]]],[19,4,4,176,180,[[629,1,1,176,177],[637,1,1,177,178],[650,1,1,178,179],[651,1,1,179,180]]],[22,18,18,180,198,[[687,1,1,180,181],[688,1,1,181,182],[689,1,1,182,183],[692,2,2,183,185],[696,1,1,185,186],[700,1,1,186,187],[706,1,1,187,188],[707,1,1,188,189],[715,1,1,189,190],[722,1,1,190,191],[726,2,2,191,193],[733,2,2,193,195],[734,1,1,195,196],[735,1,1,196,197],[739,1,1,197,198]]],[23,27,26,198,224,[[750,1,1,198,199],[751,1,1,199,200],[753,1,1,200,201],[754,1,1,201,202],[755,2,2,202,204],[766,1,1,204,205],[775,3,3,205,208],[776,1,1,208,209],[777,2,2,209,211],[778,5,4,211,215],[779,1,1,215,216],[788,3,3,216,219],[790,1,1,219,220],[791,1,1,220,221],[792,1,1,221,222],[794,1,1,222,223],[795,1,1,223,224]]],[25,19,19,224,243,[[815,5,5,224,229],[817,1,1,229,230],[818,2,2,230,232],[822,2,2,232,234],[826,3,3,234,237],[830,1,1,237,238],[831,1,1,238,239],[832,1,1,239,240],[835,1,1,240,241],[836,1,1,241,242],[838,1,1,242,243]]],[26,1,1,243,244,[[858,1,1,243,244]]],[27,4,4,244,248,[[863,1,1,244,245],[869,1,1,245,246],[871,1,1,246,247],[873,1,1,247,248]]],[28,3,3,248,251,[[876,3,3,248,251]]],[29,3,3,251,254,[[879,2,2,251,253],[880,1,1,253,254]]],[30,3,3,254,257,[[888,3,3,254,257]]],[32,5,5,257,262,[[897,5,5,257,262]]],[33,4,4,262,266,[[900,2,2,262,264],[901,1,1,264,265],[902,1,1,265,266]]],[35,5,5,266,271,[[906,3,3,266,269],[908,2,2,269,271]]],[36,1,1,271,272,[[910,1,1,271,272]]],[37,7,6,272,278,[[919,3,2,272,274],[921,1,1,274,275],[923,2,2,275,277],[924,1,1,277,278]]],[38,1,1,278,279,[[926,1,1,278,279]]]],[216,378,411,540,545,720,917,1231,1626,1719,1831,1835,2176,2185,2415,2420,2434,2506,2508,2509,2511,2523,2899,2900,2904,2906,3239,3244,3245,3249,3280,3289,3321,3323,3324,3335,3336,3372,3393,3431,3546,3554,3761,3978,4057,4098,4099,4183,4184,4302,4309,5027,5055,5056,5113,5166,5269,5407,5411,5446,5447,5501,5680,5691,5693,5704,5744,5906,5909,5917,5985,6043,6044,6048,6053,6060,6128,6464,6501,6547,6623,6679,6680,6682,6684,6802,6803,7200,7273,7323,7446,7447,7669,7679,7745,7746,7795,7828,7843,7844,7850,7860,7951,8018,8093,8094,8102,8110,8135,8189,8244,8576,8774,8884,8890,8994,9006,9010,9056,9058,9124,9228,9232,9262,9345,9346,9442,9472,9764,9833,9846,9998,10018,10021,10028,10084,10168,10179,10676,10836,10871,10911,11219,11221,11227,11278,11293,11298,11342,11506,11631,11651,11659,11672,11801,11964,12255,12519,12549,13188,13589,13892,14069,14404,14459,14472,14478,14484,14488,14673,15246,15329,15521,15615,15768,15770,16455,16687,17062,17093,17843,17857,17897,17936,17950,18002,18077,18179,18213,18376,18547,18623,18633,18743,18753,18758,18773,18851,19095,19147,19196,19204,19236,19245,19461,19722,19723,19724,19771,19792,19793,19809,19814,19816,19819,19842,20017,20018,20021,20068,20077,20082,20182,20274,20739,20744,20748,20750,20752,20766,20838,20842,20947,20948,21090,21096,21099,21191,21219,21242,21338,21351,21423,22014,22123,22198,22229,22253,22296,22300,22307,22369,22372,22382,22519,22520,22524,22642,22643,22644,22645,22646,22698,22699,22712,22727,22790,22791,22798,22826,22827,22860,23005,23009,23038,23061,23067,23070,23115]]],["+",[52,50,[[1,1,1,0,1,[[53,1,1,0,1]]],[2,6,6,1,7,[[106,1,1,1,2],[109,3,3,2,5],[115,2,2,5,7]]],[3,3,2,7,9,[[120,1,1,7,8],[131,2,1,8,9]]],[4,4,4,9,13,[[164,1,1,9,10],[171,1,1,10,11],[172,1,1,11,12],[181,1,1,12,13]]],[5,2,2,13,15,[[193,1,1,13,14],[197,1,1,14,15]]],[6,1,1,15,16,[[214,1,1,15,16]]],[8,9,8,16,24,[[252,1,1,16,17],[255,2,1,17,18],[259,4,4,18,22],[263,1,1,22,23],[266,1,1,23,24]]],[9,3,3,24,27,[[273,1,1,24,25],[276,1,1,25,26],[286,1,1,26,27]]],[10,5,5,27,32,[[295,1,1,27,28],[299,1,1,28,29],[304,1,1,29,30],[305,1,1,30,31],[308,1,1,31,32]]],[11,4,4,32,36,[[323,1,1,32,33],[330,1,1,33,34],[335,2,2,34,36]]],[12,2,2,36,38,[[354,1,1,36,37],[356,1,1,37,38]]],[13,3,3,38,41,[[381,1,1,38,39],[388,1,1,39,40],[400,1,1,40,41]]],[18,1,1,41,42,[[560,1,1,41,42]]],[22,1,1,42,43,[[726,1,1,42,43]]],[23,1,1,43,44,[[788,1,1,43,44]]],[25,2,2,44,46,[[826,1,1,44,45],[831,1,1,45,46]]],[30,1,1,46,47,[[888,1,1,46,47]]],[35,2,2,47,49,[[906,2,2,47,49]]],[37,1,1,49,50,[[923,1,1,49,50]]]],[1626,3245,3321,3323,3324,3546,3554,3761,4184,5269,5407,5446,5693,5985,6128,6623,7669,7745,7843,7844,7850,7860,7951,8018,8189,8244,8576,8890,9058,9232,9262,9345,9846,10028,10168,10179,10871,10911,11506,11651,11964,15246,18623,20021,21099,21219,22524,22790,22791,23061]]],["Make",[2,2,[[8,1,1,0,1,[[246,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]]],[7446,8093]]],["chewed",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4057]]],["covenanted",[2,2,[[13,1,1,0,1,[[373,1,1,0,1]]],[36,1,1,1,2,[[910,1,1,1,2]]]],[11342,22860]]],["cut",[6,6,[[2,1,1,0,1,[[111,1,1,0,1]]],[13,3,3,1,4,[[368,3,3,1,4]]],[23,1,1,4,5,[[778,1,1,4,5]]],[25,1,1,5,6,[[817,1,1,5,6]]]],[3393,11219,11221,11227,19819,20766]]],["cutteth",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19204]]],["destroy",[1,1,[[1,1,1,0,1,[[57,1,1,0,1]]]],[1719]]],["down",[18,18,[[1,1,1,0,1,[[83,1,1,0,1]]],[3,2,2,1,3,[[129,2,2,1,3]]],[4,2,2,3,5,[[171,1,1,3,4],[172,1,1,4,5]]],[6,6,6,5,11,[[216,4,4,5,9],[219,2,2,9,11]]],[11,1,1,11,12,[[331,1,1,11,12]]],[17,1,1,12,13,[[449,1,1,12,13]]],[22,2,2,13,15,[[715,1,1,13,14],[722,1,1,14,15]]],[23,3,3,15,18,[[750,1,1,15,16],[766,1,1,16,17],[790,1,1,17,18]]]],[2509,4098,4099,5411,5447,6679,6680,6682,6684,6802,6803,10084,13188,18376,18547,19095,19461,20068]]],["fail",[6,6,[[9,1,1,0,1,[[269,1,1,0,1]]],[10,3,3,1,4,[[292,1,1,1,2],[298,1,1,2,3],[299,1,1,3,4]]],[13,2,2,4,6,[[372,1,1,4,5],[373,1,1,5,6]]]],[8110,8774,9010,9056,11298,11342]]],["feller",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17936]]],["freed",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6060]]],["hew",[2,1,[[10,2,1,0,1,[[295,2,1,0,1]]]],[8884]]],["league",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7795]]],["lose",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9346]]],["made",[46,46,[[0,3,3,0,3,[[14,1,1,0,1],[20,2,2,1,3]]],[1,2,2,3,5,[[73,1,1,3,4],[83,1,1,4,5]]],[4,7,7,5,12,[[156,1,1,5,6],[157,2,2,6,8],[161,1,1,8,9],[181,2,2,9,11],[183,1,1,11,12]]],[5,2,2,12,14,[[195,1,1,12,13],[210,1,1,13,14]]],[8,3,3,14,17,[[253,1,1,14,15],[255,1,1,15,16],[258,1,1,16,17]]],[9,1,1,17,18,[[271,1,1,17,18]]],[10,3,3,18,21,[[298,2,2,18,20],[310,1,1,20,21]]],[11,4,4,21,25,[[323,1,1,21,22],[329,3,3,22,25]]],[12,2,2,25,27,[[348,1,1,25,26],[353,1,1,26,27]]],[13,5,5,27,32,[[371,1,1,27,28],[372,1,1,28,29],[387,1,1,29,30],[389,2,2,30,32]]],[17,1,1,32,33,[[466,1,1,32,33]]],[18,3,3,33,36,[[527,1,1,33,34],[566,1,1,34,35],[582,1,1,35,36]]],[22,2,2,36,38,[[706,1,1,36,37],[735,1,1,37,38]]],[23,6,6,38,44,[[755,1,1,38,39],[775,1,1,39,40],[778,4,4,40,44]]],[25,1,1,44,45,[[818,1,1,44,45]]],[37,1,1,45,46,[[921,1,1,45,46]]]],[378,540,545,2185,2523,5027,5055,5056,5166,5680,5704,5744,6053,6501,7679,7746,7828,8135,8994,9006,9442,9833,9998,10018,10021,10676,10836,11278,11293,11631,11659,11672,13589,14673,15329,15615,18179,18773,19236,19723,19809,19814,19816,19819,20838,23038]]],["madest",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12519]]],["make",[28,28,[[0,2,2,0,2,[[25,1,1,0,1],[30,1,1,1,2]]],[1,4,4,2,6,[[72,1,1,2,3],[83,3,3,3,6]]],[4,2,2,6,8,[[159,1,1,6,7],[181,1,1,7,8]]],[5,3,3,8,11,[[195,3,3,8,11]]],[6,1,1,11,12,[[212,1,1,11,12]]],[8,1,1,12,13,[[246,1,1,12,13]]],[9,2,2,13,15,[[269,2,2,13,15]]],[13,1,1,15,16,[[395,1,1,15,16]]],[14,1,1,16,17,[[412,1,1,16,17]]],[15,1,1,17,18,[[421,1,1,17,18]]],[17,1,1,18,19,[[476,1,1,18,19]]],[22,2,2,19,21,[[733,1,1,19,20],[739,1,1,20,21]]],[23,3,3,21,24,[[775,2,2,21,23],[776,1,1,23,24]]],[25,2,2,24,26,[[835,1,1,24,25],[838,1,1,25,26]]],[27,2,2,26,28,[[863,1,1,26,27],[873,1,1,27,28]]]],[720,917,2176,2506,2508,2511,5113,5680,6043,6044,6048,6547,7447,8094,8102,11801,12255,12549,13892,18743,18851,19722,19724,19771,21338,21423,22123,22253]]],["maketh",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5691]]],["making",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22229]]],["off",[110,108,[[0,2,2,0,2,[[8,1,1,0,1],[16,1,1,1,2]]],[1,5,5,2,7,[[61,2,2,2,4],[79,2,2,4,6],[80,1,1,6,7]]],[2,13,13,7,20,[[96,4,4,7,11],[106,3,3,11,14],[107,1,1,14,15],[108,1,1,15,16],[109,2,2,16,18],[111,1,1,18,19],[112,1,1,19,20]]],[3,4,4,20,24,[[125,1,1,20,21],[131,1,1,21,22],[135,2,2,22,24]]],[4,1,1,24,25,[[175,1,1,24,25]]],[5,5,4,25,29,[[189,2,2,25,27],[190,2,1,27,28],[209,1,1,28,29]]],[7,1,1,29,30,[[235,1,1,29,30]]],[8,2,2,30,32,[[237,1,1,30,31],[240,1,1,31,32]]],[10,3,3,32,35,[[301,1,1,32,33],[304,1,1,33,34],[311,1,1,34,35]]],[11,1,1,35,36,[[321,1,1,35,36]]],[18,10,10,36,46,[[489,1,1,36,37],[511,1,1,37,38],[514,5,5,38,43],[578,1,1,43,44],[586,2,2,44,46]]],[19,3,3,46,49,[[629,1,1,46,47],[650,1,1,47,48],[651,1,1,48,49]]],[22,10,10,49,59,[[687,1,1,49,50],[688,1,1,50,51],[689,1,1,51,52],[692,1,1,52,53],[696,1,1,53,54],[700,1,1,54,55],[707,1,1,55,56],[726,1,1,56,57],[733,1,1,57,58],[734,1,1,58,59]]],[23,9,9,59,68,[[751,1,1,59,60],[753,1,1,60,61],[755,1,1,61,62],[788,2,2,62,64],[791,1,1,64,65],[792,1,1,65,66],[794,1,1,66,67],[795,1,1,67,68]]],[25,13,13,68,81,[[815,5,5,68,73],[818,1,1,73,74],[822,2,2,74,76],[826,2,2,76,78],[830,1,1,78,79],[832,1,1,79,80],[836,1,1,80,81]]],[26,1,1,81,82,[[858,1,1,81,82]]],[27,1,1,82,83,[[869,1,1,82,83]]],[28,3,3,83,86,[[876,3,3,83,86]]],[29,3,3,86,89,[[879,2,2,86,88],[880,1,1,88,89]]],[30,2,2,89,91,[[888,2,2,89,91]]],[32,5,5,91,96,[[897,5,5,91,96]]],[33,4,4,96,100,[[900,2,2,96,98],[901,1,1,98,99],[902,1,1,99,100]]],[35,3,3,100,103,[[906,1,1,100,101],[908,2,2,101,103]]],[37,5,4,103,107,[[919,3,2,103,105],[923,1,1,105,106],[924,1,1,106,107]]],[38,1,1,107,108,[[926,1,1,107,108]]]],[216,411,1831,1835,2415,2420,2434,2899,2900,2904,2906,3239,3244,3249,3280,3289,3335,3336,3372,3431,3978,4183,4302,4309,5501,5906,5909,5917,6464,7200,7273,7323,9124,9228,9472,9764,14069,14404,14459,14472,14478,14484,14488,15521,15768,15770,16455,17062,17093,17843,17857,17897,17950,18002,18077,18213,18633,18753,18758,19147,19196,19245,20017,20018,20077,20082,20182,20274,20739,20744,20748,20750,20752,20842,20947,20948,21090,21096,21191,21242,21351,22014,22198,22296,22300,22307,22369,22372,22382,22519,22520,22642,22643,22644,22645,22646,22698,22699,22712,22727,22798,22826,22827,23005,23009,23067,23070,23115]]],["out",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16687]]],["perish",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1231]]],["want",[3,3,[[23,3,3,0,3,[[777,2,2,0,2],[779,1,1,2,3]]]],[19792,19793,19842]]]]},{"k":"H3773","v":[["beams",[3,3,[[10,3,3,0,3,[[296,1,1,0,1],[297,2,2,1,3]]]],[8932,8936,8946]]]]},{"k":"H3774","v":[["*",[10,10,[[8,1,1,0,1,[[265,1,1,0,1]]],[9,4,4,1,5,[[274,1,1,1,2],[281,1,1,2,3],[286,2,2,3,5]]],[10,2,2,5,7,[[291,2,2,5,7]]],[12,1,1,7,8,[[355,1,1,7,8]]],[25,1,1,8,9,[[826,1,1,8,9]]],[35,1,1,9,10,[[907,1,1,9,10]]]],[7992,8227,8407,8561,8577,8755,8761,10907,21099,22810]]],["Cherethims",[1,1,[[25,1,1,0,1,[[826,1,1,0,1]]]],[21099]]],["Cherethites",[9,9,[[8,1,1,0,1,[[265,1,1,0,1]]],[9,4,4,1,5,[[274,1,1,1,2],[281,1,1,2,3],[286,2,2,3,5]]],[10,2,2,5,7,[[291,2,2,5,7]]],[12,1,1,7,8,[[355,1,1,7,8]]],[35,1,1,8,9,[[907,1,1,8,9]]]],[7992,8227,8407,8561,8577,8755,8761,10907,22810]]]]},{"k":"H3775","v":[["*",[13,13,[[0,4,4,0,4,[[29,4,4,0,4]]],[2,7,7,4,11,[[90,1,1,4,5],[92,1,1,5,6],[93,1,1,6,7],[96,1,1,7,8],[106,1,1,8,9],[111,2,2,9,11]]],[3,1,1,11,12,[[134,1,1,11,12]]],[4,1,1,12,13,[[166,1,1,12,13]]]],[862,863,865,870,2755,2785,2830,2902,3238,3388,3396,4274,5294]]],["+",[2,2,[[2,1,1,0,1,[[92,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[2785,5294]]],["lamb",[2,2,[[2,2,2,0,2,[[93,1,1,0,1],[106,1,1,1,2]]]],[2830,3238]]],["lambs",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[870]]],["sheep",[8,8,[[0,3,3,0,3,[[29,3,3,0,3]]],[2,4,4,3,7,[[90,1,1,3,4],[96,1,1,4,5],[111,2,2,5,7]]],[3,1,1,7,8,[[134,1,1,7,8]]]],[862,863,865,2755,2902,3388,3396,4274]]]]},{"k":"H3776","v":[["lamb",[1,1,[[2,1,1,0,1,[[94,1,1,0,1]]]],[2836]]]]},{"k":"H3777","v":[["Chesed",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[569]]]]},{"k":"H3778","v":[["*",[81,81,[[0,3,3,0,3,[[10,2,2,0,2],[14,1,1,2,3]]],[11,8,8,3,11,[[336,1,1,3,4],[337,7,7,4,11]]],[13,2,2,11,13,[[397,1,1,11,12],[402,1,1,12,13]]],[15,1,1,13,14,[[421,1,1,13,14]]],[17,1,1,14,15,[[436,1,1,14,15]]],[22,7,7,15,22,[[691,1,1,15,16],[701,1,1,16,17],[721,1,1,17,18],[725,2,2,18,20],[726,2,2,20,22]]],[23,46,46,22,68,[[765,2,2,22,24],[766,1,1,24,25],[768,1,1,25,26],[769,1,1,26,27],[776,7,7,27,34],[777,1,1,34,35],[779,1,1,35,36],[781,7,7,36,43],[782,4,4,43,47],[783,2,2,47,49],[784,2,2,49,51],[785,2,2,51,53],[787,1,1,53,54],[794,6,6,54,60],[795,4,4,60,64],[796,4,4,64,68]]],[25,8,8,68,76,[[802,1,1,68,69],[812,1,1,69,70],[813,1,1,70,71],[817,1,1,71,72],[824,4,4,72,76]]],[26,4,4,76,80,[[850,1,1,76,77],[851,2,2,77,79],[858,1,1,79,80]]],[34,1,1,80,81,[[903,1,1,80,81]]]],[294,297,367,10204,10226,10227,10232,10235,10246,10247,10248,11868,12010,12518,12886,17925,18090,18519,18600,18604,18628,18634,19444,19449,19479,19529,19546,19735,19736,19755,19756,19759,19760,19774,19780,19834,19879,19882,19883,19884,19885,19887,19888,19897,19913,19914,19918,19928,19931,19950,19951,19960,19975,20000,20167,20174,20176,20191,20201,20211,20216,20236,20247,20266,20283,20284,20290,20293,20467,20679,20693,20791,21021,21022,21023,21030,21741,21760,21762,21989,22737]]],["+",[2,2,[[22,1,1,0,1,[[726,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[18634,20236]]],["Chaldea",[6,6,[[23,2,2,0,2,[[794,1,1,0,1],[795,1,1,1,2]]],[25,4,4,2,6,[[812,1,1,2,3],[817,1,1,3,4],[824,2,2,4,6]]]],[20176,20247,20679,20791,21022,21023]]],["Chaldeans",[57,57,[[17,1,1,0,1,[[436,1,1,0,1]]],[22,5,5,1,6,[[701,1,1,1,2],[721,1,1,2,3],[725,2,2,3,5],[726,1,1,5,6]]],[23,42,42,6,48,[[765,2,2,6,8],[766,1,1,8,9],[768,1,1,9,10],[769,1,1,10,11],[776,7,7,11,18],[777,1,1,18,19],[779,1,1,19,20],[781,7,7,20,27],[782,4,4,27,31],[783,1,1,31,32],[784,2,2,32,34],[785,2,2,34,36],[787,1,1,36,37],[794,5,5,37,42],[795,2,2,42,44],[796,4,4,44,48]]],[25,4,4,48,52,[[802,1,1,48,49],[813,1,1,49,50],[824,2,2,50,52]]],[26,4,4,52,56,[[850,1,1,52,53],[851,2,2,53,55],[858,1,1,55,56]]],[34,1,1,56,57,[[903,1,1,56,57]]]],[12886,18090,18519,18600,18604,18628,19444,19449,19479,19529,19546,19735,19736,19755,19756,19759,19760,19774,19780,19834,19879,19882,19883,19884,19885,19887,19888,19897,19913,19914,19918,19931,19950,19951,19960,19975,20000,20167,20174,20191,20201,20211,20216,20266,20283,20284,20290,20293,20467,20693,21021,21030,21741,21760,21762,21989,22737]]],["Chaldeans'",[1,1,[[23,1,1,0,1,[[783,1,1,0,1]]]],[19928]]],["Chaldees",[13,13,[[0,3,3,0,3,[[10,2,2,0,2],[14,1,1,2,3]]],[11,8,8,3,11,[[336,1,1,3,4],[337,7,7,4,11]]],[13,1,1,11,12,[[402,1,1,11,12]]],[15,1,1,12,13,[[421,1,1,12,13]]]],[294,297,367,10204,10226,10227,10232,10235,10246,10247,10248,12010,12518]]],["Chaldees'",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17925]]],["Levite",[1,1,[[13,1,1,0,1,[[397,1,1,0,1]]]],[11868]]]]},{"k":"H3779","v":[["*",[8,7,[[26,8,7,0,7,[[851,3,2,0,2],[852,1,1,2,3],[853,1,1,3,4],[854,3,3,4,7]]]],[21763,21768,21815,21844,21881,21885,21904]]],["Chaldean",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21768]]],["Chaldeans",[7,7,[[26,7,7,0,7,[[851,2,2,0,2],[852,1,1,2,3],[853,1,1,3,4],[854,3,3,4,7]]]],[21763,21768,21815,21844,21881,21885,21904]]]]},{"k":"H3780","v":[["covered",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5773]]]]},{"k":"H3781","v":[["axes",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15054]]]]},{"k":"H3782","v":[["*",[62,58,[[2,1,1,0,1,[[115,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[13,4,3,2,5,[[391,2,1,2,3],[394,2,2,3,5]]],[15,1,1,5,6,[[416,1,1,5,6]]],[17,1,1,6,7,[[439,1,1,6,7]]],[18,7,7,7,14,[[486,1,1,7,8],[504,1,1,8,9],[508,1,1,9,10],[541,1,1,10,11],[582,1,1,11,12],[584,1,1,12,13],[586,1,1,13,14]]],[19,5,5,14,19,[[631,3,3,14,17],[651,2,2,17,19]]],[22,11,10,19,29,[[681,1,1,19,20],[683,1,1,20,21],[686,1,1,21,22],[706,1,1,22,23],[709,1,1,23,24],[713,1,1,24,25],[718,2,1,25,26],[737,2,2,26,28],[741,1,1,28,29]]],[23,11,11,29,40,[[750,2,2,29,31],[752,1,1,31,32],[762,2,2,32,34],[764,1,1,34,35],[775,1,1,35,36],[790,3,3,36,39],[794,1,1,39,40]]],[24,2,2,40,42,[[797,1,1,40,41],[801,1,1,41,42]]],[25,2,2,42,44,[[834,1,1,42,43],[837,1,1,43,44]]],[26,6,6,44,50,[[860,6,6,44,50]]],[27,6,4,50,54,[[865,2,1,50,51],[866,2,1,51,52],[875,2,2,52,54]]],[33,2,2,54,56,[[901,1,1,54,55],[902,1,1,55,56]]],[37,1,1,56,57,[[922,1,1,56,57]]],[38,1,1,57,58,[[926,1,1,57,58]]]],[3561,7244,11712,11779,11787,12369,12934,14024,14287,14341,14858,15643,15711,15779,16502,16506,16509,17095,17096,17715,17766,17822,18177,18253,18323,18450,18810,18814,18879,19104,19110,19165,19399,19407,19433,19700,20051,20057,20061,20198,20324,20455,21292,21374,22050,22055,22069,22070,22071,22077,22138,22157,22283,22291,22704,22715,23053,23111]]],["+",[3,2,[[22,2,1,0,1,[[718,2,1,0,1]]],[38,1,1,1,2,[[926,1,1,1,2]]]],[18450,23111]]],["decayed",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12369]]],["down",[4,4,[[13,1,1,0,1,[[391,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]],[23,2,2,2,4,[[750,1,1,2,3],[752,1,1,3,4]]]],[11712,15711,19104,19165]]],["faileth",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14341]]],["fall",[22,20,[[2,1,1,0,1,[[115,1,1,0,1]]],[13,1,1,1,2,[[391,1,1,1,2]]],[18,2,2,2,4,[[486,1,1,2,3],[541,1,1,3,4]]],[19,2,2,4,6,[[631,1,1,4,5],[651,1,1,5,6]]],[22,2,2,6,8,[[706,1,1,6,7],[709,1,1,7,8]]],[23,2,2,8,10,[[750,1,1,8,9],[790,1,1,9,10]]],[24,1,1,10,11,[[797,1,1,10,11]]],[25,2,2,11,13,[[834,1,1,11,12],[837,1,1,12,13]]],[26,4,4,13,17,[[860,4,4,13,17]]],[27,5,3,17,20,[[865,2,1,17,18],[866,2,1,18,19],[875,1,1,19,20]]]],[3561,11712,14024,14858,16506,17095,18177,18253,19110,20061,20324,21292,21374,22050,22069,22070,22071,22138,22157,22291]]],["fallen",[2,2,[[22,1,1,0,1,[[737,1,1,0,1]]],[27,1,1,1,2,[[875,1,1,1,2]]]],[18814,22283]]],["falling",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12934]]],["feeble",[4,4,[[13,1,1,0,1,[[394,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]],[22,1,1,2,3,[[713,1,1,2,3]]],[37,1,1,3,4,[[922,1,1,3,4]]]],[11779,15643,18323,23053]]],["fell",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20455]]],["overthrown",[2,2,[[23,1,1,0,1,[[762,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[19407,22077]]],["ruin",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11787]]],["ruined",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17715]]],["stumble",[14,14,[[19,2,2,0,2,[[631,2,2,0,2]]],[22,4,4,2,6,[[683,1,1,2,3],[686,1,1,3,4],[737,1,1,4,5],[741,1,1,5,6]]],[23,5,5,6,11,[[762,1,1,6,7],[764,1,1,7,8],[775,1,1,8,9],[790,1,1,9,10],[794,1,1,10,11]]],[26,1,1,11,12,[[860,1,1,11,12]]],[33,2,2,12,14,[[901,1,1,12,13],[902,1,1,13,14]]]],[16502,16509,17766,17822,18810,18879,19399,19433,19700,20051,20198,22055,22704,22715]]],["stumbled",[3,3,[[8,1,1,0,1,[[237,1,1,0,1]]],[18,1,1,1,2,[[504,1,1,1,2]]],[23,1,1,2,3,[[790,1,1,2,3]]]],[7244,14287,20057]]],["stumbleth",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17096]]],["weak",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15779]]]]},{"k":"H3783","v":[["fall",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16858]]]]},{"k":"H3784","v":[["*",[6,6,[[1,2,2,0,2,[[56,1,1,0,1],[71,1,1,1,2]]],[4,1,1,2,3,[[170,1,1,2,3]]],[13,1,1,3,4,[[399,1,1,3,4]]],[26,1,1,4,5,[[851,1,1,4,5]]],[38,1,1,5,6,[[927,1,1,5,6]]]],[1696,2131,5394,11914,21760,23125]]],["+",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2131]]],["sorcerers",[3,3,[[1,1,1,0,1,[[56,1,1,0,1]]],[26,1,1,1,2,[[851,1,1,1,2]]],[38,1,1,2,3,[[927,1,1,2,3]]]],[1696,21760,23125]]],["witch",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5394]]],["witchcraft",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11914]]]]},{"k":"H3785","v":[["*",[6,5,[[11,1,1,0,1,[[321,1,1,0,1]]],[22,2,2,1,3,[[725,2,2,1,3]]],[32,1,1,3,4,[[897,1,1,3,4]]],[33,2,1,4,5,[[902,2,1,4,5]]]],[9778,18608,18611,22645,22716]]],["sorceries",[2,2,[[22,2,2,0,2,[[725,2,2,0,2]]]],[18608,18611]]],["witchcrafts",[4,3,[[11,1,1,0,1,[[321,1,1,0,1]]],[32,1,1,1,2,[[897,1,1,1,2]]],[33,2,1,2,3,[[902,2,1,2,3]]]],[9778,22645,22716]]]]},{"k":"H3786","v":[["sorcerers",[1,1,[[23,1,1,0,1,[[771,1,1,0,1]]]],[19605]]]]},{"k":"H3787","v":[["*",[3,3,[[16,1,1,0,1,[[433,1,1,0,1]]],[20,2,2,1,3,[[668,1,1,1,2],[669,1,1,2,3]]]],[12822,17503,17519]]],["direct",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17503]]],["prosper",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17519]]],["right",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12822]]]]},{"k":"H3788","v":[["*",[3,3,[[20,3,3,0,3,[[660,1,1,0,1],[662,1,1,1,2],[663,1,1,2,3]]]],[17354,17385,17408]]],["equity",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17354]]],["good",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17408]]],["right",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17385]]]]},{"k":"H3789","v":[["*",[223,212,[[1,11,10,0,10,[[66,1,1,0,1],[73,2,2,1,3],[80,1,1,3,4],[81,3,2,4,6],[83,3,3,6,9],[88,1,1,9,10]]],[3,5,5,10,15,[[121,1,1,10,11],[127,1,1,11,12],[133,2,2,12,14],[149,1,1,14,15]]],[4,22,22,15,37,[[156,1,1,15,16],[157,1,1,16,17],[158,1,1,17,18],[161,1,1,18,19],[162,2,2,19,21],[163,1,1,21,22],[169,1,1,22,23],[176,2,2,23,25],[179,2,2,25,27],[180,2,2,27,29],[181,3,3,29,32],[182,1,1,32,33],[183,4,4,33,37]]],[5,13,11,37,48,[[187,1,1,37,38],[194,4,3,38,41],[196,1,1,41,42],[204,5,4,42,46],[209,1,1,46,47],[210,1,1,47,48]]],[6,1,1,48,49,[[218,1,1,48,49]]],[8,1,1,49,50,[[245,1,1,49,50]]],[9,3,3,50,53,[[267,1,1,50,51],[277,2,2,51,53]]],[10,16,16,53,69,[[292,1,1,53,54],[301,1,1,54,55],[304,2,2,55,57],[305,3,3,57,60],[306,4,4,60,64],[311,3,3,64,67],[312,2,2,67,69]]],[11,30,30,69,99,[[313,1,1,69,70],[320,1,1,70,71],[322,3,3,71,74],[324,1,1,74,75],[325,2,2,75,77],[326,4,4,77,81],[327,7,7,81,88],[328,1,1,88,89],[329,1,1,89,90],[332,1,1,90,91],[333,2,2,91,93],[334,1,1,93,94],[335,4,4,94,98],[336,1,1,98,99]]],[12,5,5,99,104,[[341,1,1,99,100],[346,1,1,100,101],[353,1,1,101,102],[361,1,1,102,103],[366,1,1,103,104]]],[13,27,27,104,131,[[375,1,1,104,105],[378,1,1,105,106],[379,1,1,106,107],[382,1,1,107,108],[386,1,1,108,109],[389,1,1,109,110],[390,1,1,110,111],[391,2,2,111,113],[392,1,1,113,114],[393,1,1,114,115],[394,1,1,115,116],[396,3,3,116,119],[397,1,1,119,120],[398,2,2,120,122],[399,1,1,122,123],[400,3,3,123,126],[401,4,4,126,130],[402,1,1,130,131]]],[14,6,5,131,136,[[405,2,2,131,133],[406,3,2,133,135],[410,1,1,135,136]]],[15,10,10,136,146,[[418,1,1,136,137],[419,1,1,137,138],[420,2,2,138,140],[421,1,1,140,141],[422,2,2,141,143],[424,2,2,143,145],[425,1,1,145,146]]],[16,17,14,146,160,[[426,1,1,146,147],[427,1,1,147,148],[428,3,2,148,150],[431,1,1,150,151],[433,6,4,151,155],[434,4,4,155,159],[435,1,1,159,160]]],[17,3,3,160,163,[[448,1,1,160,161],[454,1,1,161,162],[466,1,1,162,163]]],[18,6,6,163,169,[[517,1,1,163,164],[546,1,1,164,165],[564,1,1,165,166],[579,1,1,166,167],[616,1,1,167,168],[626,1,1,168,169]]],[19,3,3,169,172,[[630,1,1,169,170],[634,1,1,170,171],[649,1,1,171,172]]],[20,1,1,172,173,[[670,1,1,172,173]]],[22,8,7,173,180,[[682,1,1,173,174],[686,1,1,174,175],[688,3,2,175,177],[708,1,1,177,178],[722,1,1,178,179],[743,1,1,179,180]]],[23,21,20,180,200,[[761,2,2,180,182],[766,1,1,182,183],[769,1,1,183,184],[774,1,1,184,185],[775,1,1,185,186],[776,3,3,186,189],[780,9,9,189,198],[789,1,1,198,199],[795,2,1,199,200]]],[25,8,6,200,206,[[803,2,1,200,201],[814,1,1,201,202],[825,1,1,202,203],[838,3,2,203,205],[844,1,1,205,206]]],[26,3,3,206,209,[[858,2,2,206,208],[861,1,1,208,209]]],[27,1,1,209,210,[[869,1,1,209,210]]],[34,1,1,210,211,[[904,1,1,210,211]]],[38,1,1,211,212,[[927,1,1,211,212]]]],[1997,2181,2189,2438,2453,2470,2497,2523,2524,2694,3815,4050,4246,4247,4762,5017,5075,5095,5167,5188,5190,5228,5382,5526,5528,5588,5593,5669,5672,5699,5700,5706,5718,5737,5747,5750,5752,5859,6033,6034,6036,6077,6297,6299,6301,6302,6466,6502,6733,7443,8040,8273,8274,8773,9149,9237,9247,9256,9272,9280,9288,9297,9303,9310,9459,9460,9462,9519,9525,9551,9750,9794,9799,9827,9869,9879,9883,9902,9911,9914,9924,9931,9936,9940,9946,9951,9956,9961,9982,10020,10118,10136,10144,10158,10168,10186,10189,10193,10207,10426,10616,10860,11021,11193,11393,11452,11475,11520,11621,11674,11704,11708,11730,11754,11762,11790,11828,11832,11845,11857,11892,11907,11927,11954,11957,11964,11978,11991,11992,11993,12001,12099,12101,12116,12117,12235,12407,12425,12507,12508,12549,12583,12585,12646,12647,12672,12721,12747,12756,12759,12795,12822,12825,12826,12827,12854,12857,12863,12866,12868,13179,13320,13623,14532,14963,15307,15539,16255,16394,16458,16578,17035,17533,17736,17808,17851,17869,18225,18538,18903,19358,19370,19484,19547,19669,19724,19741,19743,19775,19844,19846,19848,19859,19860,19869,19870,19871,19874,20041,20272,20502,20717,21058,21413,21417,21583,21999,22001,22082,22206,22750,23136]]],["+",[11,11,[[1,1,1,0,1,[[73,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]],[4,4,4,2,6,[[183,4,4,2,6]]],[5,2,2,6,8,[[204,2,2,6,8]]],[16,1,1,8,9,[[434,1,1,8,9]]],[23,2,2,9,11,[[780,1,1,9,10],[789,1,1,10,11]]]],[2181,4762,5737,5747,5750,5752,6299,6301,12854,19859,20041]]],["Write",[6,6,[[1,2,2,0,2,[[66,1,1,0,1],[83,1,1,1,2]]],[16,1,1,2,3,[[433,1,1,2,3]]],[23,2,2,3,5,[[766,1,1,3,4],[774,1,1,4,5]]],[34,1,1,5,6,[[904,1,1,5,6]]]],[1997,2523,12825,19484,19669,22750]]],["describe",[2,2,[[5,2,2,0,2,[[204,2,2,0,2]]]],[6297,6301]]],["described",[2,2,[[5,1,1,0,1,[[204,1,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]]],[6302,6733]]],["prescribed",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17851]]],["recorded",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12646]]],["subscribe",[2,2,[[22,1,1,0,1,[[722,1,1,0,1]]],[23,1,1,1,2,[[776,1,1,1,2]]]],[18538,19775]]],["subscribed",[2,2,[[23,2,2,0,2,[[776,2,2,0,2]]]],[19741,19743]]],["up",[1,1,[[18,1,1,0,1,[[564,1,1,0,1]]]],[15307]]],["write",[27,26,[[1,1,1,0,1,[[83,1,1,0,1]]],[3,3,3,1,4,[[121,1,1,1,2],[133,2,2,2,4]]],[4,8,8,4,12,[[158,1,1,4,5],[162,1,1,5,6],[163,1,1,6,7],[169,1,1,7,8],[176,2,2,8,10],[179,2,2,10,12]]],[13,1,1,12,13,[[392,1,1,12,13]]],[15,1,1,13,14,[[421,1,1,13,14]]],[19,2,2,14,16,[[630,1,1,14,15],[634,1,1,15,16]]],[22,4,4,16,20,[[686,1,1,16,17],[688,2,2,17,19],[708,1,1,19,20]]],[23,3,3,20,23,[[775,1,1,20,21],[780,2,2,21,23]]],[25,4,3,23,26,[[825,1,1,23,24],[838,2,1,24,25],[844,1,1,25,26]]]],[2497,3815,4246,4247,5095,5188,5228,5382,5526,5528,5588,5593,11754,12549,16458,16578,17808,17851,17869,18225,19724,19844,19870,21058,21413,21583]]],["writest",[2,2,[[17,1,1,0,1,[[448,1,1,0,1]]],[25,1,1,1,2,[[838,1,1,1,2]]]],[13179,21417]]],["written",[137,134,[[1,5,4,0,4,[[73,1,1,0,1],[80,1,1,1,2],[81,3,2,2,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[4,7,7,5,12,[[161,1,1,5,6],[180,2,2,6,8],[181,3,3,8,11],[182,1,1,11,12]]],[5,5,5,12,17,[[187,1,1,12,13],[194,2,2,13,15],[196,1,1,15,16],[209,1,1,16,17]]],[9,1,1,17,18,[[267,1,1,17,18]]],[10,14,14,18,32,[[292,1,1,18,19],[301,1,1,19,20],[304,2,2,20,22],[305,3,3,22,25],[306,4,4,25,29],[311,1,1,29,30],[312,2,2,30,32]]],[11,27,27,32,59,[[313,1,1,32,33],[320,1,1,33,34],[322,1,1,34,35],[324,1,1,35,36],[325,2,2,36,38],[326,4,4,38,42],[327,7,7,42,49],[328,1,1,49,50],[332,1,1,50,51],[333,2,2,51,53],[334,1,1,53,54],[335,4,4,54,58],[336,1,1,58,59]]],[12,4,4,59,63,[[341,1,1,59,60],[346,1,1,60,61],[353,1,1,61,62],[366,1,1,62,63]]],[13,24,24,63,87,[[375,1,1,63,64],[378,1,1,64,65],[379,1,1,65,66],[382,1,1,66,67],[386,1,1,67,68],[389,1,1,68,69],[390,1,1,69,70],[391,2,2,70,72],[393,1,1,72,73],[394,1,1,73,74],[396,2,2,74,76],[397,1,1,76,77],[398,1,1,77,78],[399,1,1,78,79],[400,3,3,79,82],[401,4,4,82,86],[402,1,1,86,87]]],[14,4,4,87,91,[[405,2,2,87,89],[406,1,1,89,90],[410,1,1,90,91]]],[15,8,8,91,99,[[418,1,1,91,92],[419,1,1,92,93],[420,2,2,93,95],[422,2,2,95,97],[424,1,1,97,98],[425,1,1,98,99]]],[16,12,11,99,110,[[426,1,1,99,100],[427,1,1,100,101],[428,3,2,101,103],[431,1,1,103,104],[433,3,3,104,107],[434,2,2,107,109],[435,1,1,109,110]]],[17,2,2,110,112,[[454,1,1,110,111],[466,1,1,111,112]]],[18,5,5,112,117,[[517,1,1,112,113],[546,1,1,113,114],[579,1,1,114,115],[616,1,1,115,116],[626,1,1,116,117]]],[19,1,1,117,118,[[649,1,1,117,118]]],[20,1,1,118,119,[[670,1,1,118,119]]],[22,2,2,119,121,[[682,1,1,119,120],[743,1,1,120,121]]],[23,6,6,121,127,[[761,2,2,121,123],[769,1,1,123,124],[780,2,2,124,126],[795,1,1,126,127]]],[25,3,2,127,129,[[803,2,1,127,128],[814,1,1,128,129]]],[26,3,3,129,132,[[858,2,2,129,131],[861,1,1,131,132]]],[27,1,1,132,133,[[869,1,1,132,133]]],[38,1,1,133,134,[[927,1,1,133,134]]]],[2189,2438,2453,2470,4050,5167,5669,5672,5699,5700,5706,5718,5859,6033,6036,6077,6466,8040,8773,9149,9237,9247,9256,9272,9280,9288,9297,9303,9310,9462,9519,9525,9551,9750,9827,9869,9879,9883,9902,9911,9914,9924,9931,9936,9940,9946,9951,9956,9961,9982,10118,10136,10144,10158,10168,10186,10189,10193,10207,10426,10616,10860,11193,11393,11452,11475,11520,11621,11674,11704,11708,11730,11762,11790,11832,11845,11857,11907,11927,11954,11957,11964,11978,11991,11992,11993,12001,12099,12101,12117,12235,12407,12425,12507,12508,12583,12585,12647,12672,12721,12747,12756,12759,12795,12822,12825,12826,12857,12866,12868,13320,13623,14532,14963,15539,16255,16394,17035,17533,17736,18903,19358,19370,19547,19848,19871,20272,20502,20717,21999,22001,22082,22206,23136]]],["wrote",[29,28,[[1,2,2,0,2,[[83,1,1,0,1],[88,1,1,1,2]]],[4,3,3,2,5,[[156,1,1,2,3],[157,1,1,3,4],[162,1,1,4,5]]],[5,3,2,5,7,[[194,2,1,5,6],[210,1,1,6,7]]],[8,1,1,7,8,[[245,1,1,7,8]]],[9,2,2,8,10,[[277,2,2,8,10]]],[10,2,2,10,12,[[311,2,2,10,12]]],[11,3,3,12,15,[[322,2,2,12,14],[329,1,1,14,15]]],[12,1,1,15,16,[[361,1,1,15,16]]],[13,2,2,16,18,[[396,1,1,16,17],[398,1,1,17,18]]],[14,2,2,18,20,[[406,2,2,18,20]]],[16,3,3,20,23,[[433,2,2,20,22],[434,1,1,22,23]]],[23,5,5,23,28,[[780,4,4,23,27],[795,1,1,27,28]]]],[2524,2694,5017,5075,5190,6034,6502,7443,8273,8274,9459,9460,9794,9799,10020,11021,11828,11892,12116,12117,12822,12827,12863,19846,19860,19869,19874,20272]]]]},{"k":"H3790","v":[["*",[8,7,[[14,4,4,0,4,[[406,1,1,0,1],[407,2,2,1,3],[408,1,1,3,4]]],[26,4,3,4,7,[[854,2,1,4,5],[855,1,1,5,6],[856,1,1,6,7]]]],[12118,12141,12144,12153,21879,21930,21934]]],["write",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12144]]],["written",[2,2,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]]],[12141,12153]]],["wrote",[5,4,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,4,3,1,4,[[854,2,1,1,2],[855,1,1,2,3],[856,1,1,3,4]]]],[12118,21879,21930,21934]]]]},{"k":"H3791","v":[["*",[17,16,[[12,1,1,0,1,[[365,1,1,0,1]]],[13,2,2,1,3,[[368,1,1,1,2],[401,1,1,2,3]]],[14,2,2,3,5,[[404,1,1,3,4],[406,1,1,4,5]]],[15,1,1,5,6,[[419,1,1,5,6]]],[16,9,8,6,14,[[426,1,1,6,7],[428,2,2,7,9],[429,1,1,9,10],[433,4,3,10,13],[434,1,1,13,14]]],[25,1,1,14,15,[[814,1,1,14,15]]],[26,1,1,15,16,[[859,1,1,15,16]]]],[11162,11222,11970,12089,12117,12484,12724,12759,12761,12770,12825,12826,12830,12861,20717,22036]]],["register",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12089,12484]]],["scripture",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22036]]],["writing",[14,13,[[12,1,1,0,1,[[365,1,1,0,1]]],[13,2,2,1,3,[[368,1,1,1,2],[401,1,1,2,3]]],[14,1,1,3,4,[[406,1,1,3,4]]],[16,9,8,4,12,[[426,1,1,4,5],[428,2,2,5,7],[429,1,1,7,8],[433,4,3,8,11],[434,1,1,11,12]]],[25,1,1,12,13,[[814,1,1,12,13]]]],[11162,11222,11970,12117,12724,12759,12761,12770,12825,12826,12830,12861,20717]]]]},{"k":"H3792","v":[["*",[12,12,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]],[26,10,10,2,12,[[854,7,7,2,9],[855,3,3,9,12]]]],[12169,12195,21881,21882,21889,21890,21891,21898,21899,21913,21914,21915]]],["prescribing",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12195]]],["writing",[10,10,[[26,10,10,0,10,[[854,7,7,0,7],[855,3,3,7,10]]]],[21881,21882,21889,21890,21891,21898,21899,21913,21914,21915]]],["written",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12169]]]]},{"k":"H3793","v":[["+",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3309]]]]},{"k":"H3794","v":[["*",[8,8,[[0,1,1,0,1,[[9,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[12,1,1,2,3,[[338,1,1,2,3]]],[22,2,2,3,5,[[701,2,2,3,5]]],[23,1,1,5,6,[[746,1,1,5,6]]],[25,1,1,6,7,[[828,1,1,6,7]]],[26,1,1,7,8,[[860,1,1,7,8]]]],[238,4470,10259,18078,18089,18975,21127,22066]]],["Chittim",[6,6,[[3,1,1,0,1,[[140,1,1,0,1]]],[22,2,2,1,3,[[701,2,2,1,3]]],[23,1,1,3,4,[[746,1,1,3,4]]],[25,1,1,4,5,[[828,1,1,4,5]]],[26,1,1,5,6,[[860,1,1,5,6]]]],[4470,18078,18089,18975,21127,22066]]],["Kittim",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[238,10259]]]]},{"k":"H3795","v":[["*",[5,5,[[1,2,2,0,2,[[76,1,1,0,1],[78,1,1,1,2]]],[2,1,1,2,3,[[113,1,1,2,3]]],[3,1,1,3,4,[[144,1,1,3,4]]],[10,1,1,4,5,[[295,1,1,4,5]]]],[2292,2376,3448,4582,8889]]],["beaten",[4,4,[[1,2,2,0,2,[[76,1,1,0,1],[78,1,1,1,2]]],[2,1,1,2,3,[[113,1,1,2,3]]],[3,1,1,3,4,[[144,1,1,3,4]]]],[2292,2376,3448,4582]]],["pure",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8889]]]]},{"k":"H3796","v":[["wall",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17563]]]]},{"k":"H3797","v":[["*",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[854,1,1,1,2]]]],[12142,21879]]],["wall",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21879]]],["walls",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12142]]]]},{"k":"H3798","v":[["Kithlish",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6242]]]]},{"k":"H3799","v":[["marked",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18987]]]]},{"k":"H3800","v":[["*",[9,9,[[17,3,3,0,3,[[463,2,2,0,2],[466,1,1,2,3]]],[18,1,1,3,4,[[522,1,1,3,4]]],[19,1,1,4,5,[[652,1,1,4,5]]],[21,1,1,5,6,[[675,1,1,5,6]]],[22,1,1,6,7,[[691,1,1,6,7]]],[24,1,1,7,8,[[800,1,1,7,8]]],[26,1,1,8,9,[[859,1,1,8,9]]]],[13520,13523,13612,14606,17125,17609,17918,20421,22020]]],["+",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17918]]],["gold",[7,7,[[17,3,3,0,3,[[463,2,2,0,2],[466,1,1,2,3]]],[18,1,1,3,4,[[522,1,1,3,4]]],[19,1,1,4,5,[[652,1,1,4,5]]],[24,1,1,5,6,[[800,1,1,5,6]]],[26,1,1,6,7,[[859,1,1,6,7]]]],[13520,13523,13612,14606,17125,20421,22020]]],["most",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17609]]]]},{"k":"H3801","v":[["*",[29,26,[[0,9,6,0,6,[[2,1,1,0,1],[36,8,5,1,6]]],[1,7,7,6,13,[[77,3,3,6,9],[78,2,2,9,11],[88,1,1,11,12],[89,1,1,12,13]]],[2,4,4,13,17,[[97,2,2,13,15],[99,1,1,15,16],[105,1,1,16,17]]],[9,3,3,17,20,[[279,2,2,17,19],[281,1,1,19,20]]],[14,1,1,20,21,[[404,1,1,20,21]]],[15,2,2,21,23,[[419,2,2,21,23]]],[17,1,1,23,24,[[465,1,1,23,24]]],[21,1,1,24,25,[[675,1,1,24,25]]],[22,1,1,25,26,[[700,1,1,25,26]]]],[76,1086,1106,1114,1115,1116,2297,2332,2333,2341,2344,2691,2721,2924,2930,2982,3205,8335,8336,8421,12096,12490,12492,13575,17601,18073]]],["+",[2,2,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]]],[2344,2930]]],["coat",[16,13,[[0,8,5,0,5,[[36,8,5,0,5]]],[1,3,3,5,8,[[77,2,2,5,7],[78,1,1,7,8]]],[2,2,2,8,10,[[97,1,1,8,9],[105,1,1,9,10]]],[9,1,1,10,11,[[281,1,1,10,11]]],[17,1,1,11,12,[[465,1,1,11,12]]],[21,1,1,12,13,[[675,1,1,12,13]]]],[1086,1106,1114,1115,1116,2297,2332,2341,2924,3205,8421,13575,17601]]],["coats",[5,5,[[0,1,1,0,1,[[2,1,1,0,1]]],[1,3,3,1,4,[[77,1,1,1,2],[88,1,1,2,3],[89,1,1,3,4]]],[2,1,1,4,5,[[99,1,1,4,5]]]],[76,2333,2691,2721,2982]]],["garment",[2,2,[[9,2,2,0,2,[[279,2,2,0,2]]]],[8335,8336]]],["garments",[3,3,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,2,2,1,3,[[419,2,2,1,3]]]],[12096,12490,12492]]],["robe",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18073]]]]},{"k":"H3802","v":[["*",[67,58,[[1,13,12,0,12,[[76,2,2,0,2],[77,5,4,2,6],[87,2,2,6,8],[88,4,4,8,12]]],[3,2,2,12,14,[[123,1,1,12,13],[150,1,1,13,14]]],[4,1,1,14,15,[[185,1,1,14,15]]],[5,8,8,15,23,[[201,3,3,15,18],[204,5,5,18,23]]],[6,1,1,23,24,[[226,1,1,23,24]]],[8,1,1,24,25,[[252,1,1,24,25]]],[10,8,4,25,29,[[296,1,1,25,26],[297,7,3,26,29]]],[11,2,1,29,30,[[323,2,1,29,30]]],[12,1,1,30,31,[[352,1,1,30,31]]],[13,4,3,31,34,[[370,1,1,31,32],[389,2,1,32,33],[401,1,1,33,34]]],[15,1,1,34,35,[[421,1,1,34,35]]],[17,1,1,35,36,[[466,1,1,35,36]]],[22,4,4,36,40,[[689,1,1,36,37],[708,1,1,37,38],[724,1,1,38,39],[727,1,1,39,40]]],[25,19,17,40,57,[[813,3,3,40,43],[825,1,1,43,44],[826,1,1,44,45],[830,2,2,45,47],[835,1,1,47,48],[841,6,4,48,52],[842,2,2,52,54],[847,1,1,54,55],[848,2,2,55,57]]],[37,1,1,57,58,[[917,1,1,57,58]]]],[2286,2287,2300,2305,2318,2320,2647,2648,2668,2671,2682,2684,3859,4827,5822,6210,6212,6213,6305,6306,6309,6311,6312,6952,7624,8904,8964,8968,8973,9840,10806,11256,11666,11969,12540,13610,17898,18223,18593,18658,20686,20687,20692,21060,21092,21190,21201,21334,21495,21517,21518,21521,21528,21552,21674,21680,21681,22973]]],["+",[5,5,[[10,1,1,0,1,[[297,1,1,0,1]]],[11,1,1,1,2,[[323,1,1,1,2]]],[13,2,2,2,4,[[370,1,1,2,3],[389,1,1,3,4]]],[25,1,1,4,5,[[848,1,1,4,5]]]],[8973,9840,11256,11666,21680]]],["arm",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13610]]],["corner",[1,1,[[11,1,1,0,1,[[323,1,1,0,1]]]],[9840]]],["shoulder",[9,9,[[15,1,1,0,1,[[421,1,1,0,1]]],[22,1,1,1,2,[[724,1,1,1,2]]],[25,6,6,2,8,[[813,2,2,2,4],[825,1,1,4,5],[830,2,2,5,7],[835,1,1,7,8]]],[37,1,1,8,9,[[917,1,1,8,9]]]],[12540,18593,20687,20692,21060,21190,21201,21334,22973]]],["shoulderpieces",[4,4,[[1,4,4,0,4,[[77,2,2,0,2],[88,2,2,2,4]]]],[2300,2318,2668,2682]]],["shoulders",[13,12,[[1,3,2,0,2,[[77,2,1,0,1],[88,1,1,1,2]]],[3,1,1,2,3,[[123,1,1,2,3]]],[4,1,1,3,4,[[185,1,1,3,4]]],[6,1,1,4,5,[[226,1,1,4,5]]],[8,1,1,5,6,[[252,1,1,5,6]]],[12,1,1,6,7,[[352,1,1,6,7]]],[13,1,1,7,8,[[401,1,1,7,8]]],[22,3,3,8,11,[[689,1,1,8,9],[708,1,1,9,10],[727,1,1,10,11]]],[25,1,1,11,12,[[813,1,1,11,12]]]],[2305,2671,3859,5822,6952,7624,10806,11969,17898,18223,18658,20686]]],["side",[26,23,[[1,4,4,0,4,[[76,2,2,0,2],[87,2,2,2,4]]],[3,1,1,4,5,[[150,1,1,4,5]]],[5,8,8,5,13,[[201,3,3,5,8],[204,5,5,8,13]]],[10,3,2,13,15,[[296,1,1,13,14],[297,2,1,14,15]]],[13,1,1,15,16,[[389,1,1,15,16]]],[25,9,7,16,23,[[826,1,1,16,17],[841,6,4,17,21],[847,1,1,21,22],[848,1,1,22,23]]]],[2286,2287,2647,2648,4827,6210,6212,6213,6305,6306,6309,6311,6312,8904,8973,11666,21092,21495,21517,21518,21521,21674,21681]]],["sides",[4,4,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[25,2,2,2,4,[[842,2,2,2,4]]]],[2320,2684,21528,21552]]],["undersetters",[4,2,[[10,4,2,0,2,[[297,4,2,0,2]]]],[8964,8968]]]]},{"k":"H3803","v":[["*",[6,6,[[6,1,1,0,1,[[230,1,1,0,1]]],[17,1,1,1,2,[[471,1,1,1,2]]],[18,2,2,2,4,[[499,1,1,2,3],[619,1,1,3,4]]],[19,1,1,4,5,[[641,1,1,4,5]]],[34,1,1,5,6,[[903,1,1,5,6]]]],[7097,13738,14216,16293,16790,22735]]],["+",[2,2,[[6,1,1,0,1,[[230,1,1,0,1]]],[34,1,1,1,2,[[903,1,1,1,2]]]],[7097,22735]]],["Suffer",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13738]]],["about",[1,1,[[18,1,1,0,1,[[619,1,1,0,1]]]],[16293]]],["crowned",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16790]]],["round",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14216]]]]},{"k":"H3804","v":[["crown",[3,3,[[16,3,3,0,3,[[426,1,1,0,1],[427,1,1,1,2],[431,1,1,2,3]]]],[12713,12741,12801]]]]},{"k":"H3805","v":[["*",[24,12,[[10,15,8,0,8,[[297,15,8,0,8]]],[11,3,1,8,9,[[337,3,1,8,9]]],[13,3,2,9,11,[[370,3,2,9,11]]],[23,3,1,11,12,[[796,3,1,11,12]]]],[8950,8951,8952,8953,8954,8965,8975,8976,10239,11258,11259,20298]]],["chapiter",[12,7,[[10,7,5,0,5,[[297,7,5,0,5]]],[11,3,1,5,6,[[337,3,1,5,6]]],[23,2,1,6,7,[[796,2,1,6,7]]]],[8950,8951,8952,8954,8965,10239,20298]]],["chapiters",[12,10,[[10,8,7,0,7,[[297,8,7,0,7]]],[13,3,2,7,9,[[370,3,2,7,9]]],[23,1,1,9,10,[[796,1,1,9,10]]]],[8950,8951,8952,8953,8954,8975,8976,11258,11259,20298]]]]},{"k":"H3806","v":[["+",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17191]]]]},{"k":"H3807","v":[["*",[17,17,[[2,1,1,0,1,[[111,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[4,2,2,2,4,[[153,1,1,2,3],[161,1,1,3,4]]],[11,1,1,4,5,[[330,1,1,4,5]]],[13,2,2,5,7,[[381,1,1,5,6],[400,1,1,6,7]]],[17,1,1,7,8,[[439,1,1,7,8]]],[18,1,1,8,9,[[566,1,1,8,9]]],[22,3,3,9,12,[[680,1,1,9,10],[702,1,1,10,11],[708,1,1,11,12]]],[23,1,1,12,13,[[790,1,1,12,13]]],[28,1,1,13,14,[[878,1,1,13,14]]],[32,2,2,14,16,[[893,1,1,14,15],[896,1,1,15,16]]],[37,1,1,16,17,[[921,1,1,16,17]]]],[3393,4153,4936,5178,10028,11496,11940,12950,15349,17689,18107,18231,20050,22353,22586,22623,23034]]],["+",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23034]]],["Beat",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22353]]],["beat",[2,2,[[22,1,1,0,1,[[680,1,1,0,1]]],[32,1,1,1,2,[[896,1,1,1,2]]]],[17689,22623]]],["beaten",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11940]]],["crushed",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3393]]],["destroyed",[3,3,[[4,1,1,0,1,[[153,1,1,0,1]]],[13,1,1,1,2,[[381,1,1,1,2]]],[17,1,1,2,3,[[439,1,1,2,3]]]],[4936,11496,12950]]],["discomfited",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4153]]],["down",[2,2,[[18,1,1,0,1,[[566,1,1,0,1]]],[23,1,1,1,2,[[790,1,1,1,2]]]],[15349,20050]]],["pieces",[3,3,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]],[32,1,1,2,3,[[893,1,1,2,3]]]],[10028,18231,22586]]],["smitten",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18107]]],["stamped",[1,1,[[4,1,1,0,1,[[161,1,1,0,1]]]],[5178]]]]},{"k":"H3808","v":[["*",[5163,3950,[[0,212,189,0,189,[[1,5,5,0,5],[2,5,4,5,9],[3,5,4,9,13],[5,1,1,13,14],[6,1,1,14,15],[7,5,4,15,19],[8,5,4,19,23],[10,2,2,23,25],[11,1,1,25,26],[12,3,2,26,28],[13,1,1,28,29],[14,5,5,29,34],[15,2,2,34,36],[16,4,4,36,40],[17,10,9,40,49],[18,7,7,49,56],[19,5,5,56,61],[20,4,2,61,63],[21,2,2,63,65],[22,2,2,65,67],[23,14,13,67,80],[25,2,2,80,82],[26,5,5,82,87],[27,4,4,87,91],[28,4,4,91,95],[29,4,4,95,99],[30,15,11,99,110],[31,5,5,110,115],[33,5,5,115,120],[34,2,2,120,122],[35,1,1,122,123],[36,4,4,123,127],[37,10,8,127,135],[38,4,4,135,139],[39,3,3,139,142],[40,5,5,142,147],[41,16,15,147,162],[42,7,6,162,168],[43,10,8,168,176],[44,5,4,176,180],[46,8,5,180,185],[47,3,3,185,188],[48,1,1,188,189]]],[1,245,201,189,390,[[50,3,3,189,192],[51,1,1,192,193],[52,4,3,193,196],[53,11,7,196,203],[54,8,7,203,210],[55,3,3,210,213],[56,7,7,213,220],[57,8,7,220,227],[58,16,15,227,242],[59,14,11,242,253],[60,5,4,253,257],[61,15,12,257,269],[62,6,5,269,274],[63,4,4,274,278],[64,3,3,278,281],[65,11,9,281,290],[67,2,2,290,292],[68,3,2,292,294],[69,18,13,294,307],[70,14,13,307,320],[71,17,12,320,332],[72,22,17,332,349],[73,3,2,349,351],[74,1,1,351,352],[77,4,4,352,356],[78,2,2,356,358],[79,10,7,358,365],[81,2,2,365,367],[82,8,7,367,374],[83,14,11,374,385],[84,1,1,385,386],[88,2,2,386,388],[89,3,2,388,390]]],[2,281,209,390,599,[[90,1,1,390,391],[91,4,3,391,394],[92,1,1,394,395],[93,4,4,395,399],[94,9,6,399,405],[95,5,5,405,410],[96,7,6,410,416],[97,2,2,416,418],[99,7,6,418,424],[100,13,12,424,436],[101,3,2,436,438],[102,14,12,438,450],[103,3,3,450,453],[104,3,3,453,456],[105,4,4,456,460],[106,8,6,460,466],[107,30,22,466,488],[108,42,21,488,509],[109,5,5,509,514],[110,24,15,514,529],[111,23,18,529,547],[112,13,12,547,559],[114,24,17,559,576],[115,19,14,576,590],[116,13,9,590,599]]],[3,189,145,599,744,[[117,4,3,599,602],[118,1,1,602,603],[119,1,1,603,604],[120,3,3,604,607],[121,8,6,607,613],[122,7,5,613,618],[123,1,1,618,619],[124,3,3,619,622],[125,7,5,622,627],[126,2,2,627,629],[127,11,7,629,636],[128,6,5,636,641],[129,1,1,641,642],[130,10,10,642,652],[131,3,3,652,655],[132,10,6,655,661],[133,1,1,661,662],[134,13,9,662,671],[135,7,4,671,675],[136,10,7,675,682],[137,3,2,682,684],[138,9,5,684,689],[139,17,11,689,700],[140,5,4,700,704],[141,1,1,704,705],[142,6,5,705,710],[143,3,2,710,712],[144,3,3,712,715],[145,4,4,715,719],[146,4,4,719,723],[147,4,4,723,727],[148,5,5,727,732],[149,2,2,732,734],[151,12,8,734,742],[152,2,2,742,744]]],[4,412,305,744,1049,[[153,14,9,744,753],[154,9,9,753,762],[155,6,5,762,767],[156,12,6,767,773],[157,17,14,773,787],[158,6,4,787,791],[159,17,13,791,804],[160,10,6,804,810],[161,8,5,810,815],[162,5,4,815,819],[163,10,6,819,825],[164,11,10,825,835],[165,12,8,835,843],[166,15,10,843,853],[167,16,13,853,866],[168,11,8,866,874],[169,13,8,874,882],[170,15,10,882,892],[171,8,8,892,900],[172,12,11,900,911],[173,14,8,911,919],[174,22,19,919,938],[175,24,19,938,957],[176,18,13,957,970],[177,13,12,970,982],[178,5,2,982,984],[179,2,2,984,986],[180,34,28,986,1014],[181,12,7,1014,1021],[182,6,5,1021,1026],[183,11,6,1026,1032],[184,16,12,1032,1044],[185,3,1,1044,1045],[186,5,4,1045,1049]]],[5,103,82,1049,1131,[[187,6,4,1049,1053],[188,5,5,1053,1058],[189,1,1,1058,1059],[191,6,6,1059,1065],[192,3,1,1065,1066],[193,4,2,1066,1068],[194,8,6,1068,1074],[195,6,6,1074,1080],[196,10,9,1080,1089],[197,6,6,1089,1095],[199,3,3,1095,1098],[200,3,3,1098,1101],[201,1,1,1101,1102],[202,1,1,1102,1103],[203,5,5,1103,1108],[204,1,1,1108,1109],[206,3,2,1109,1111],[207,2,2,1111,1113],[208,12,9,1113,1122],[209,8,4,1122,1126],[210,9,5,1126,1131]]],[6,134,114,1131,1245,[[211,10,10,1131,1141],[212,13,11,1141,1152],[213,5,5,1152,1157],[214,6,5,1157,1162],[215,3,3,1162,1165],[216,6,5,1165,1170],[217,2,1,1170,1171],[218,8,7,1171,1178],[219,2,2,1178,1180],[220,3,3,1180,1183],[221,14,13,1183,1196],[222,4,4,1196,1200],[223,12,8,1200,1208],[224,10,8,1208,1216],[225,5,4,1216,1220],[226,7,7,1220,1227],[228,1,1,1227,1228],[229,7,5,1228,1233],[230,5,4,1233,1237],[231,11,8,1237,1245]]],[7,18,16,1245,1261,[[233,9,8,1245,1253],[234,4,4,1253,1257],[235,5,4,1257,1261]]],[8,196,161,1261,1422,[[236,10,7,1261,1268],[237,8,8,1268,1276],[238,6,6,1276,1282],[239,4,3,1282,1285],[240,4,4,1285,1289],[241,6,5,1289,1294],[242,1,1,1294,1295],[243,5,5,1295,1300],[244,5,4,1300,1304],[245,4,4,1304,1308],[246,2,2,1308,1310],[247,12,8,1310,1318],[248,8,7,1318,1325],[249,10,10,1325,1335],[250,10,8,1335,1343],[251,5,5,1343,1348],[252,7,5,1348,1353],[253,2,2,1353,1355],[254,1,1,1355,1356],[255,18,13,1356,1369],[256,4,3,1369,1372],[257,4,3,1372,1375],[258,3,3,1375,1378],[259,7,6,1378,1384],[260,11,9,1384,1393],[261,9,7,1393,1400],[262,3,3,1400,1403],[263,7,5,1403,1408],[264,11,7,1408,1415],[265,8,6,1415,1421],[266,1,1,1421,1422]]],[9,132,107,1422,1529,[[267,5,4,1422,1426],[268,6,4,1426,1430],[269,8,7,1430,1437],[270,1,1,1437,1438],[271,4,3,1438,1441],[272,2,2,1441,1443],[273,5,4,1443,1447],[276,1,1,1447,1448],[277,8,6,1448,1454],[278,7,6,1454,1460],[279,11,10,1460,1470],[280,11,7,1470,1477],[281,4,4,1477,1481],[282,3,3,1481,1484],[283,10,9,1484,1493],[284,10,7,1493,1500],[285,10,7,1500,1507],[286,5,4,1507,1511],[287,4,3,1511,1514],[288,7,7,1514,1521],[289,8,7,1521,1528],[290,2,1,1528,1529]]],[10,180,147,1529,1676,[[291,13,12,1529,1541],[292,11,11,1541,1552],[293,17,11,1552,1563],[294,1,1,1563,1564],[295,1,1,1564,1565],[296,2,2,1565,1567],[297,2,2,1567,1569],[298,12,11,1569,1580],[299,6,6,1580,1586],[300,10,7,1586,1593],[301,13,12,1593,1605],[302,7,5,1605,1610],[303,19,10,1610,1620],[304,4,4,1620,1624],[305,7,7,1624,1631],[306,5,5,1631,1636],[307,6,4,1636,1640],[308,12,9,1640,1649],[309,6,4,1649,1653],[310,7,7,1653,1660],[311,5,4,1660,1664],[312,14,12,1664,1676]]],[11,178,151,1676,1827,[[313,5,5,1676,1681],[314,6,6,1681,1687],[315,6,5,1687,1692],[316,11,8,1692,1700],[317,7,5,1700,1705],[318,9,7,1705,1712],[319,3,3,1712,1715],[320,2,2,1715,1717],[321,6,6,1717,1723],[322,11,9,1723,1732],[323,1,1,1732,1733],[324,6,6,1733,1739],[325,8,7,1739,1746],[326,11,9,1746,1755],[327,11,11,1755,1766],[328,3,3,1766,1769],[329,19,14,1769,1783],[330,13,10,1783,1793],[331,8,5,1793,1798],[332,10,8,1798,1806],[333,5,5,1806,1811],[334,5,5,1811,1816],[335,6,5,1816,1821],[336,4,4,1821,1825],[337,2,2,1825,1827]]],[12,54,48,1827,1875,[[339,3,3,1827,1830],[341,1,1,1830,1831],[342,1,1,1831,1832],[347,3,3,1832,1835],[348,5,5,1835,1840],[349,3,3,1840,1843],[350,2,2,1843,1845],[351,1,1,1845,1846],[352,3,2,1846,1848],[353,1,1,1848,1849],[354,6,5,1849,1854],[356,2,2,1854,1856],[358,7,5,1856,1861],[359,2,2,1861,1863],[360,3,3,1863,1866],[361,2,2,1866,1868],[363,1,1,1868,1869],[364,3,2,1869,1871],[365,3,2,1871,1873],[366,2,2,1873,1875]]],[13,156,127,1875,2002,[[367,4,2,1875,1877],[368,1,1,1877,1878],[370,1,1,1878,1879],[371,4,3,1879,1882],[372,8,7,1882,1889],[373,4,4,1889,1893],[374,5,5,1893,1898],[375,9,7,1898,1905],[376,3,2,1905,1907],[377,2,1,1907,1908],[378,5,4,1908,1912],[379,7,6,1912,1918],[381,6,4,1918,1922],[382,3,3,1922,1925],[383,3,3,1925,1928],[384,7,6,1928,1934],[385,3,2,1934,1936],[386,12,9,1936,1945],[387,6,5,1945,1950],[388,1,1,1950,1951],[389,3,3,1951,1954],[390,6,6,1954,1960],[391,8,6,1960,1966],[392,2,1,1966,1967],[393,1,1,1967,1968],[394,6,6,1968,1974],[395,3,2,1974,1976],[396,11,7,1976,1983],[398,8,7,1983,1990],[399,3,3,1990,1993],[400,4,4,1993,1997],[401,5,3,1997,2000],[402,2,2,2000,2002]]],[14,15,13,2002,2015,[[404,3,3,2002,2005],[405,1,1,2005,2006],[406,1,1,2006,2007],[410,1,1,2007,2008],[411,4,4,2008,2012],[412,5,3,2012,2015]]],[15,64,49,2015,2064,[[413,1,1,2015,2016],[414,6,5,2016,2021],[415,1,1,2021,2022],[416,3,2,2022,2024],[417,9,8,2024,2032],[418,7,6,2032,2038],[419,4,4,2038,2042],[420,1,1,2042,2043],[421,18,10,2043,2053],[422,4,3,2053,2056],[425,10,8,2056,2064]]],[16,29,23,2064,2087,[[426,5,4,2064,2068],[427,4,3,2068,2071],[428,3,2,2071,2073],[429,4,3,2073,2076],[430,3,2,2076,2078],[431,2,2,2078,2080],[434,7,6,2080,2086],[435,1,1,2086,2087]]],[17,314,257,2087,2344,[[436,3,2,2087,2089],[437,3,2,2089,2091],[438,8,5,2091,2096],[439,5,4,2096,2100],[440,6,5,2100,2105],[441,4,3,2105,2108],[442,11,9,2108,2117],[443,9,7,2117,2124],[444,17,15,2124,2139],[445,9,9,2139,2148],[446,3,3,2148,2151],[447,7,6,2151,2157],[448,4,4,2157,2161],[449,10,7,2161,2168],[450,17,11,2168,2179],[451,4,4,2179,2183],[452,3,3,2183,2186],[453,5,4,2186,2190],[454,6,6,2190,2196],[455,11,8,2196,2204],[456,9,7,2204,2211],[457,7,7,2211,2218],[458,7,6,2218,2224],[459,13,10,2224,2234],[460,3,2,2234,2236],[461,4,3,2236,2239],[462,8,7,2239,2246],[463,14,9,2246,2255],[464,5,4,2255,2259],[465,8,8,2259,2267],[466,11,10,2267,2277],[467,11,9,2277,2286],[468,8,7,2286,2293],[469,14,11,2293,2304],[470,6,5,2304,2309],[471,10,9,2309,2318],[472,7,6,2318,2324],[473,3,2,2324,2326],[474,7,6,2326,2332],[475,3,2,2332,2334],[476,5,5,2334,2339],[477,6,5,2339,2344]]],[18,335,265,2344,2609,[[478,6,4,2344,2348],[480,1,1,2348,2349],[482,3,2,2349,2351],[484,1,1,2351,2352],[486,3,3,2352,2355],[487,2,2,2355,2357],[491,2,1,2357,2358],[492,7,3,2358,2361],[493,2,1,2361,2362],[494,1,1,2362,2363],[495,7,7,2363,2370],[499,8,5,2370,2375],[500,2,2,2375,2377],[501,2,1,2377,2378],[502,1,1,2378,2379],[503,4,3,2379,2382],[504,1,1,2382,2383],[505,2,1,2383,2384],[507,2,2,2384,2386],[508,1,1,2386,2387],[509,3,3,2387,2390],[510,2,2,2390,2392],[511,3,3,2392,2395],[512,5,4,2395,2399],[513,3,2,2399,2401],[514,9,8,2401,2409],[515,4,3,2409,2412],[516,2,2,2412,2414],[517,8,6,2414,2420],[518,2,2,2420,2422],[520,1,1,2422,2423],[521,11,7,2423,2430],[523,1,1,2430,2431],[526,7,5,2431,2436],[527,3,3,2436,2439],[528,3,2,2439,2441],[529,1,1,2441,2442],[530,3,2,2442,2444],[531,1,1,2444,2445],[532,6,5,2445,2450],[533,4,4,2450,2454],[535,1,1,2454,2455],[536,3,2,2455,2457],[537,2,1,2457,2458],[539,2,2,2458,2460],[541,1,1,2460,2461],[543,3,3,2461,2464],[546,4,4,2464,2468],[548,1,1,2468,2469],[550,3,3,2469,2472],[551,2,1,2472,2473],[552,2,1,2473,2474],[553,1,1,2474,2475],[554,4,4,2475,2479],[555,22,17,2479,2496],[556,1,1,2496,2497],[557,1,1,2497,2498],[558,5,3,2498,2501],[559,2,1,2501,2502],[560,1,1,2502,2503],[561,1,1,2503,2504],[562,1,1,2504,2505],[563,1,1,2505,2506],[565,2,2,2506,2508],[566,10,7,2508,2515],[568,4,3,2515,2518],[569,3,2,2518,2520],[571,7,4,2520,2524],[572,1,1,2524,2525],[577,1,1,2525,2526],[578,6,4,2526,2530],[579,2,2,2530,2532],[580,5,3,2532,2535],[582,2,2,2535,2537],[583,7,6,2537,2543],[584,3,3,2543,2546],[585,2,1,2546,2547],[586,2,2,2547,2549],[587,1,1,2549,2550],[589,3,3,2550,2553],[592,11,5,2553,2558],[595,3,3,2558,2561],[596,23,23,2561,2584],[598,3,2,2584,2586],[601,1,1,2586,2587],[602,3,2,2587,2589],[604,3,2,2589,2591],[606,3,3,2591,2594],[608,4,2,2594,2596],[609,1,1,2596,2597],[612,3,2,2597,2599],[614,2,1,2599,2600],[616,5,5,2600,2605],[620,1,1,2605,2606],[624,3,2,2606,2608],[625,1,1,2608,2609]]],[19,133,119,2609,2728,[[628,5,4,2609,2613],[629,2,1,2613,2614],[630,4,4,2614,2618],[631,6,3,2618,2621],[632,3,2,2621,2623],[633,8,7,2623,2630],[634,2,2,2630,2632],[635,4,4,2632,2636],[636,1,1,2636,2637],[637,5,5,2637,2642],[638,2,2,2642,2644],[639,3,3,2644,2647],[640,3,3,2647,2650],[641,3,3,2650,2653],[642,3,2,2653,2655],[643,4,4,2655,2659],[644,6,6,2659,2665],[645,2,2,2665,2667],[646,8,6,2667,2673],[647,5,5,2673,2678],[648,4,4,2678,2682],[649,3,3,2682,2685],[650,2,2,2685,2687],[651,5,4,2687,2691],[652,2,2,2691,2693],[653,4,4,2693,2697],[654,6,5,2697,2702],[655,5,5,2702,2707],[656,3,3,2707,2710],[657,14,12,2710,2722],[658,6,6,2722,2728]]],[20,63,45,2728,2773,[[659,6,3,2728,2731],[660,4,3,2731,2734],[662,6,5,2734,2739],[663,5,4,2739,2743],[664,9,6,2743,2749],[665,7,6,2749,2755],[666,7,4,2755,2759],[667,7,3,2759,2762],[668,5,5,2762,2767],[669,4,3,2767,2770],[670,3,3,2770,2773]]],[21,11,9,2773,2782,[[671,2,2,2773,2775],[673,3,3,2775,2778],[675,2,1,2778,2779],[676,1,1,2779,2780],[678,3,2,2780,2782]]],[22,445,274,2782,3056,[[679,10,5,2782,2787],[680,2,1,2787,2788],[681,3,2,2788,2790],[683,11,6,2790,2796],[684,1,1,2796,2797],[685,9,6,2797,2803],[686,6,4,2803,2807],[687,11,8,2807,2815],[688,12,8,2815,2823],[689,6,3,2823,2826],[690,1,1,2826,2827],[691,11,5,2827,2832],[692,5,4,2832,2836],[693,1,1,2836,2837],[694,6,4,2837,2841],[695,3,2,2841,2843],[697,1,1,2843,2844],[700,4,2,2844,2846],[701,8,4,2846,2850],[702,2,2,2850,2852],[703,1,1,2852,2853],[704,1,1,2853,2854],[705,4,2,2854,2856],[706,8,7,2856,2863],[707,10,6,2863,2869],[708,16,11,2869,2880],[709,9,5,2880,2885],[710,3,2,2885,2887],[711,5,4,2887,2891],[712,3,2,2891,2893],[713,4,2,2893,2895],[714,6,5,2895,2900],[715,8,5,2900,2905],[716,5,3,2905,2908],[717,5,3,2908,2911],[718,13,5,2911,2916],[719,5,5,2916,2921],[720,18,8,2921,2929],[721,14,7,2929,2936],[722,11,6,2936,2942],[723,14,10,2942,2952],[724,7,4,2952,2956],[725,12,8,2956,2964],[726,15,9,2964,2973],[727,5,3,2973,2976],[728,5,3,2976,2979],[729,7,6,2979,2985],[730,6,4,2985,2989],[731,8,4,2989,2993],[732,11,6,2993,2999],[733,11,7,2999,3006],[734,5,3,3006,3009],[735,11,6,3009,3015],[736,8,6,3015,3021],[737,9,6,3021,3027],[738,7,5,3027,3032],[740,6,4,3032,3036],[741,6,4,3036,3040],[742,4,2,3040,3042],[743,19,10,3042,3052],[744,7,4,3052,3056]]],[23,513,361,3056,3417,[[745,2,2,3056,3058],[746,23,17,3058,3075],[747,18,13,3075,3088],[748,11,7,3088,3095],[749,26,14,3095,3109],[750,12,9,3109,3118],[751,21,12,3118,3130],[752,10,7,3130,3137],[753,9,6,3137,3143],[754,14,9,3143,3152],[755,12,7,3152,3159],[756,3,3,3159,3162],[757,11,9,3162,3171],[758,15,10,3171,3181],[759,11,9,3181,3190],[760,18,10,3190,3200],[761,16,8,3200,3208],[762,4,4,3208,3212],[763,6,4,3212,3216],[764,9,5,3216,3221],[765,4,2,3221,3223],[766,20,14,3223,3237],[767,21,15,3237,3252],[768,5,4,3252,3256],[769,12,8,3256,3264],[770,3,3,3264,3267],[771,7,6,3267,3273],[772,1,1,3273,3274],[773,11,9,3274,3283],[774,7,5,3283,3288],[775,9,7,3288,3295],[776,10,7,3295,3302],[777,8,6,3302,3308],[778,6,5,3308,3313],[779,16,9,3313,3322],[780,6,5,3322,3327],[781,6,6,3327,3333],[782,10,8,3333,3341],[783,3,3,3341,3344],[784,5,5,3344,3349],[785,2,2,3349,3351],[786,12,8,3351,3359],[787,4,3,3359,3362],[788,14,9,3362,3371],[789,1,1,3371,3372],[790,6,5,3372,3377],[791,2,2,3377,3379],[792,9,5,3379,3384],[793,15,10,3384,3394],[794,14,11,3394,3405],[795,11,10,3405,3415],[796,2,2,3415,3417]]],[24,39,35,3417,3452,[[797,7,6,3417,3423],[798,8,8,3423,3431],[799,12,11,3431,3442],[800,10,8,3442,3450],[801,2,2,3450,3452]]],[25,344,235,3452,3687,[[802,3,3,3452,3455],[804,15,10,3455,3465],[805,4,2,3465,3467],[806,9,4,3467,3471],[807,1,1,3471,3472],[808,15,6,3472,3478],[809,3,1,3478,3479],[810,2,1,3479,3480],[811,3,2,3480,3482],[812,4,3,3482,3485],[813,10,9,3485,3494],[814,14,9,3494,3503],[815,4,3,3503,3506],[816,1,1,3506,3507],[817,23,17,3507,3524],[818,8,7,3524,3531],[819,39,22,3531,3553],[820,2,2,3553,3555],[821,19,15,3555,3570],[822,5,5,3570,3575],[823,7,5,3575,3580],[824,4,3,3580,3583],[825,22,12,3583,3595],[826,1,1,3595,3596],[827,6,6,3596,3602],[829,4,4,3602,3606],[830,8,5,3606,3611],[831,2,2,3611,3613],[832,7,2,3613,3615],[833,5,4,3615,3619],[834,18,14,3619,3633],[835,17,8,3633,3641],[836,2,2,3641,3643],[837,13,10,3643,3653],[838,4,3,3653,3656],[839,2,2,3656,3658],[840,5,4,3658,3662],[842,1,1,3662,3663],[843,1,1,3663,3664],[844,1,1,3664,3665],[845,16,13,3665,3678],[846,1,1,3678,3679],[847,4,3,3679,3682],[848,5,3,3682,3685],[849,4,2,3685,3687]]],[26,46,35,3687,3722,[[850,3,2,3687,3689],[857,5,4,3689,3693],[858,6,6,3693,3699],[859,9,5,3699,3704],[860,20,15,3704,3719],[861,3,3,3719,3722]]],[27,66,44,3722,3766,[[862,7,4,3722,3726],[863,12,9,3726,3735],[864,2,1,3735,3736],[865,4,2,3736,3738],[866,6,4,3738,3742],[867,1,1,3742,3743],[868,6,4,3743,3747],[869,5,4,3747,3751],[870,7,5,3751,3756],[871,2,2,3756,3758],[872,7,4,3758,3762],[873,1,1,3762,3763],[874,3,2,3763,3765],[875,3,1,3765,3766]]],[28,12,10,3766,3776,[[876,1,1,3766,3767],[877,9,7,3767,3774],[878,2,2,3774,3776]]],[29,72,52,3776,3828,[[879,6,5,3776,3781],[880,10,6,3781,3787],[881,7,5,3787,3792],[882,8,6,3792,3798],[883,13,8,3798,3806],[884,4,3,3806,3809],[885,9,7,3809,3816],[886,6,5,3816,3821],[887,9,7,3821,3828]]],[30,5,4,3828,3832,[[888,5,4,3828,3832]]],[31,9,7,3832,3839,[[889,2,2,3832,3834],[891,2,2,3834,3836],[892,5,3,3836,3839]]],[32,30,20,3839,3859,[[893,3,2,3839,3841],[894,7,5,3841,3846],[895,5,4,3846,3850],[896,4,2,3850,3852],[897,5,4,3852,3856],[898,5,2,3856,3858],[899,1,1,3858,3859]]],[33,9,9,3859,3868,[[900,5,5,3859,3864],[901,1,1,3864,3865],[902,3,3,3865,3868]]],[34,21,15,3868,3883,[[903,10,8,3868,3876],[904,9,6,3876,3882],[905,2,1,3882,3883]]],[35,23,12,3883,3895,[[906,7,4,3883,3887],[907,1,1,3887,3888],[908,15,7,3888,3895]]],[36,4,4,3895,3899,[[909,1,1,3895,3896],[910,3,3,3896,3899]]],[37,52,37,3899,3936,[[911,5,4,3899,3903],[913,1,1,3903,3904],[914,6,3,3904,3907],[917,5,4,3907,3911],[918,3,3,3911,3914],[919,2,2,3914,3916],[920,2,2,3916,3918],[921,10,5,3918,3923],[922,1,1,3923,3924],[923,4,4,3924,3928],[924,13,8,3928,3936]]],[38,19,14,3936,3950,[[925,3,2,3936,3938],[926,7,5,3938,3943],[927,8,6,3943,3949],[928,1,1,3949,3950]]]],[35,47,48,50,55,56,58,59,72,84,86,88,91,140,161,192,195,204,205,209,216,220,228,272,273,316,324,327,359,363,364,370,373,376,382,391,402,409,411,412,439,445,448,449,452,453,454,455,456,459,465,476,477,479,490,492,499,500,501,504,507,523,539,559,563,577,582,594,596,599,607,612,618,624,628,629,630,632,640,641,714,721,729,739,748,750,763,774,779,788,789,802,803,820,821,831,861,870,872,880,888,900,901,905,906,907,908,911,912,925,940,953,954,956,960,987,994,997,999,1003,1016,1021,1047,1087,1096,1104,1115,1128,1133,1135,1139,1140,1141,1142,1145,1155,1157,1158,1159,1180,1187,1195,1214,1216,1226,1231,1239,1254,1256,1260,1262,1263,1264,1268,1272,1273,1274,1275,1283,1286,1289,1290,1293,1295,1298,1299,1312,1322,1328,1329,1339,1346,1347,1350,1352,1356,1359,1361,1366,1384,1429,1438,1439,1442,1446,1461,1462,1469,1483,1540,1549,1551,1557,1582,1598,1600,1602,1609,1610,1611,1612,1615,1622,1634,1639,1640,1646,1650,1651,1655,1658,1664,1667,1689,1698,1701,1706,1707,1708,1709,1725,1728,1729,1736,1738,1741,1742,1746,1748,1749,1753,1754,1760,1761,1763,1766,1768,1770,1771,1774,1775,1777,1782,1783,1788,1791,1792,1796,1797,1800,1803,1804,1806,1812,1813,1815,1816,1826,1829,1832,1835,1836,1838,1839,1855,1859,1861,1862,1864,1870,1874,1880,1884,1889,1901,1902,1909,1917,1942,1943,1946,1951,1955,1962,1965,1967,1971,1972,1973,1974,2016,2017,2039,2049,2054,2055,2056,2058,2061,2064,2065,2066,2067,2068,2074,2076,2077,2082,2084,2085,2087,2088,2090,2095,2098,2099,2105,2106,2110,2113,2121,2124,2126,2128,2129,2131,2134,2135,2138,2141,2142,2144,2145,2146,2147,2150,2151,2152,2153,2157,2159,2162,2163,2165,2168,2170,2173,2176,2177,2179,2188,2210,2321,2325,2328,2336,2369,2370,2391,2394,2397,2402,2403,2414,2419,2439,2461,2476,2477,2484,2485,2489,2493,2496,2499,2503,2506,2510,2513,2516,2520,2521,2522,2524,2525,2534,2685,2687,2742,2744,2762,2773,2774,2775,2795,2797,2808,2817,2822,2831,2837,2838,2841,2847,2848,2861,2862,2866,2872,2879,2894,2897,2898,2902,2903,2905,2950,2952,2978,2983,2984,2986,2994,2995,3001,3002,3003,3004,3005,3008,3010,3038,3039,3040,3041,3044,3048,3052,3056,3057,3058,3063,3075,3080,3084,3085,3086,3088,3105,3107,3143,3147,3159,3179,3193,3199,3203,3214,3218,3230,3239,3242,3244,3247,3249,3251,3254,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3277,3279,3281,3285,3288,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3304,3307,3308,3309,3310,3314,3316,3332,3337,3340,3341,3343,3346,3348,3349,3350,3351,3352,3355,3356,3357,3359,3360,3362,3363,3366,3368,3371,3373,3375,3377,3378,3379,3381,3382,3384,3389,3390,3391,3392,3393,3394,3397,3399,3401,3405,3409,3410,3416,3423,3424,3427,3430,3431,3433,3437,3438,3473,3474,3480,3486,3489,3492,3495,3497,3499,3503,3506,3508,3511,3512,3515,3522,3523,3525,3530,3535,3538,3542,3544,3545,3547,3550,3551,3555,3559,3561,3568,3580,3581,3590,3592,3596,3597,3598,3599,3603,3651,3653,3657,3691,3696,3758,3762,3763,3795,3805,3806,3807,3811,3820,3826,3827,3828,3829,3830,3859,3958,3964,3965,3971,3977,3978,3984,3987,3995,4018,4035,4038,4041,4043,4047,4049,4050,4061,4066,4067,4073,4074,4106,4111,4119,4126,4130,4131,4143,4149,4150,4151,4152,4175,4187,4192,4206,4208,4209,4222,4223,4234,4254,4260,4261,4262,4274,4277,4279,4280,4281,4289,4291,4301,4302,4309,4313,4316,4323,4328,4329,4331,4335,4362,4363,4387,4393,4405,4409,4412,4424,4425,4428,4429,4435,4436,4437,4439,4440,4441,4442,4447,4458,4459,4463,4482,4500,4522,4551,4553,4554,4557,4571,4595,4602,4603,4609,4615,4620,4643,4650,4653,4659,4660,4682,4687,4699,4713,4729,4736,4737,4741,4748,4774,4815,4857,4867,4868,4875,4876,4877,4878,4879,4886,4888,4901,4909,4918,4921,4929,4931,4934,4935,4937,4943,4945,4947,4957,4965,4968,4972,4974,4975,4979,4986,4997,5001,5002,5006,5019,5030,5032,5035,5046,5056,5058,5060,5061,5062,5064,5067,5070,5071,5072,5073,5074,5075,5085,5096,5097,5100,5102,5113,5114,5118,5121,5125,5126,5127,5129,5132,5133,5135,5136,5137,5139,5140,5141,5146,5153,5157,5162,5163,5166,5175,5180,5195,5196,5202,5203,5210,5218,5225,5233,5236,5238,5244,5248,5249,5256,5257,5263,5264,5265,5271,5272,5274,5275,5278,5280,5283,5285,5288,5289,5291,5293,5297,5298,5300,5302,5309,5311,5314,5317,5321,5323,5325,5326,5328,5329,5330,5332,5335,5337,5338,5340,5342,5345,5346,5347,5350,5358,5361,5363,5364,5365,5367,5370,5375,5377,5379,5380,5381,5385,5386,5393,5394,5398,5400,5403,5404,5405,5406,5410,5412,5416,5419,5420,5421,5426,5427,5428,5432,5433,5434,5435,5439,5442,5443,5445,5446,5447,5448,5450,5451,5454,5461,5463,5465,5470,5471,5472,5473,5474,5475,5476,5478,5479,5480,5481,5484,5487,5489,5490,5494,5496,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5510,5514,5515,5516,5517,5518,5519,5520,5521,5522,5524,5525,5526,5529,5530,5531,5535,5537,5539,5540,5541,5542,5544,5545,5546,5550,5551,5552,5553,5554,5555,5556,5559,5560,5561,5565,5566,5579,5580,5590,5611,5623,5624,5625,5626,5638,5640,5641,5642,5644,5646,5647,5650,5651,5652,5655,5656,5658,5660,5661,5662,5667,5669,5672,5673,5675,5676,5677,5679,5683,5684,5685,5693,5699,5702,5705,5719,5720,5721,5725,5726,5730,5734,5736,5741,5745,5749,5763,5764,5775,5778,5779,5785,5788,5789,5792,5805,5809,5810,5819,5843,5845,5846,5849,5856,5859,5860,5869,5873,5874,5880,5883,5891,5897,5935,5939,5940,5941,5946,5948,5959,5988,5989,6016,6019,6022,6028,6033,6037,6051,6055,6056,6057,6060,6063,6072,6077,6078,6085,6092,6094,6101,6103,6104,6118,6120,6121,6122,6126,6129,6167,6168,6187,6190,6191,6196,6265,6275,6278,6287,6288,6291,6292,6295,6377,6381,6425,6426,6429,6443,6446,6450,6452,6453,6454,6457,6459,6467,6469,6473,6474,6486,6488,6489,6495,6497,6528,6530,6536,6537,6538,6539,6540,6541,6542,6543,6546,6547,6548,6555,6559,6562,6564,6565,6566,6567,6568,6569,6570,6590,6596,6597,6605,6607,6608,6613,6615,6642,6646,6653,6658,6664,6667,6668,6677,6698,6721,6738,6739,6742,6747,6753,6754,6782,6792,6817,6822,6824,6831,6836,6839,6844,6846,6847,6849,6853,6855,6856,6857,6864,6868,6870,6871,6874,6875,6886,6887,6889,6890,6898,6900,6905,6907,6913,6915,6918,6922,6923,6924,6925,6927,6930,6931,6940,6942,6956,6957,6958,6960,6964,6966,6969,6994,7034,7036,7048,7049,7054,7062,7067,7070,7088,7103,7107,7110,7114,7116,7119,7120,7124,7157,7158,7160,7162,7164,7165,7169,7171,7173,7174,7185,7190,7194,7196,7200,7204,7219,7220,7223,7225,7227,7230,7234,7249,7252,7255,7256,7264,7265,7272,7273,7278,7281,7282,7289,7294,7295,7304,7312,7317,7324,7326,7330,7331,7334,7337,7338,7340,7343,7365,7372,7374,7376,7387,7388,7395,7404,7411,7412,7419,7434,7439,7445,7456,7458,7464,7465,7472,7474,7475,7477,7481,7482,7493,7496,7497,7498,7499,7504,7507,7509,7511,7517,7532,7535,7538,7542,7544,7545,7553,7563,7569,7571,7577,7579,7586,7589,7595,7602,7603,7604,7605,7606,7626,7647,7651,7657,7665,7678,7702,7710,7732,7739,7742,7744,7745,7756,7757,7759,7760,7761,7764,7767,7769,7778,7780,7783,7792,7802,7804,7824,7827,7829,7846,7849,7850,7851,7852,7857,7868,7872,7876,7880,7882,7886,7889,7892,7897,7906,7913,7919,7920,7921,7926,7928,7934,7939,7941,7948,7957,7960,7962,7965,7970,7971,7972,7973,7974,7975,7976,7980,7990,7995,7997,8000,8001,8013,8032,8036,8044,8045,8068,8070,8075,8077,8089,8092,8094,8107,8115,8118,8119,8131,8138,8140,8155,8167,8180,8186,8187,8190,8195,8243,8262,8268,8269,8272,8279,8280,8292,8296,8299,8303,8304,8309,8321,8329,8330,8331,8333,8339,8342,8343,8345,8347,8366,8367,8370,8380,8381,8384,8385,8400,8403,8415,8424,8443,8444,8445,8456,8457,8461,8462,8466,8468,8469,8471,8472,8481,8489,8490,8491,8492,8498,8507,8524,8532,8533,8534,8535,8536,8554,8555,8557,8564,8575,8582,8590,8597,8624,8625,8639,8640,8641,8644,8646,8657,8658,8659,8669,8670,8672,8676,8716,8718,8721,8723,8725,8727,8728,8730,8735,8736,8743,8744,8769,8774,8776,8787,8790,8796,8798,8800,8802,8806,8812,8813,8818,8823,8824,8827,8828,8829,8837,8838,8839,8842,8843,8871,8881,8903,8909,8965,8981,8990,8993,8996,9001,9004,9010,9012,9020,9026,9031,9041,9056,9057,9063,9071,9072,9073,9082,9084,9086,9089,9091,9099,9100,9110,9112,9114,9118,9119,9120,9121,9130,9141,9142,9147,9149,9166,9167,9171,9175,9182,9188,9192,9193,9194,9200,9201,9205,9206,9212,9217,9220,9222,9226,9247,9252,9254,9256,9263,9272,9278,9280,9288,9294,9297,9303,9310,9324,9331,9333,9334,9346,9351,9353,9354,9359,9362,9364,9366,9385,9391,9398,9399,9405,9415,9416,9417,9431,9433,9436,9444,9455,9457,9476,9480,9488,9496,9497,9498,9508,9511,9513,9519,9523,9525,9528,9529,9537,9539,9549,9550,9551,9561,9563,9567,9568,9569,9572,9578,9579,9585,9593,9602,9626,9630,9631,9632,9634,9642,9643,9644,9659,9660,9664,9672,9673,9684,9685,9686,9693,9696,9697,9706,9709,9716,9726,9746,9750,9759,9774,9776,9782,9791,9793,9797,9798,9803,9807,9812,9814,9822,9824,9827,9831,9853,9856,9863,9865,9866,9869,9873,9877,9878,9879,9882,9883,9894,9899,9900,9902,9907,9911,9914,9920,9923,9924,9929,9931,9934,9941,9943,9945,9946,9949,9953,9960,9961,9965,9968,9982,9985,9987,9992,9995,9997,10001,10002,10005,10008,10009,10018,10020,10021,10023,10029,10030,10031,10036,10046,10051,10053,10054,10056,10060,10071,10079,10086,10093,10094,10099,10102,10108,10111,10113,10115,10117,10118,10127,10128,10136,10141,10144,10147,10152,10158,10162,10165,10174,10187,10190,10191,10193,10206,10207,10209,10216,10225,10238,10336,10338,10340,10412,10429,10663,10672,10673,10678,10691,10692,10694,10698,10737,10739,10753,10763,10773,10788,10793,10804,10841,10867,10868,10869,10872,10876,10910,10926,10937,10940,10951,10958,10964,10972,10982,10994,11000,11005,11017,11043,11087,11132,11133,11146,11163,11165,11189,11205,11206,11217,11264,11274,11277,11282,11287,11291,11298,11300,11308,11314,11318,11326,11331,11337,11342,11353,11354,11355,11357,11361,11366,11368,11370,11373,11375,11383,11393,11410,11411,11418,11444,11449,11451,11452,11458,11460,11462,11463,11465,11473,11493,11503,11507,11509,11516,11517,11521,11526,11527,11533,11557,11558,11559,11569,11572,11574,11582,11586,11593,11594,11597,11599,11602,11604,11619,11620,11624,11631,11636,11641,11643,11644,11655,11664,11670,11675,11682,11683,11696,11697,11699,11702,11706,11708,11719,11720,11724,11730,11750,11757,11765,11774,11777,11784,11785,11791,11798,11825,11830,11832,11836,11844,11845,11846,11853,11886,11887,11888,11890,11892,11900,11901,11916,11918,11931,11954,11958,11961,11966,11984,11987,11988,12005,12010,12086,12089,12090,12103,12113,12216,12238,12246,12249,12251,12258,12260,12265,12303,12308,12310,12319,12323,12324,12332,12369,12370,12390,12391,12394,12395,12396,12397,12398,12400,12402,12404,12409,12410,12412,12413,12423,12481,12484,12485,12510,12527,12528,12530,12531,12532,12540,12541,12542,12545,12546,12579,12580,12588,12672,12673,12677,12681,12689,12690,12692,12697,12717,12718,12719,12721,12734,12738,12739,12749,12751,12766,12773,12778,12788,12791,12796,12806,12836,12844,12849,12850,12861,12862,12868,12879,12891,12901,12903,12914,12915,12920,12922,12930,12936,12946,12948,12951,12957,12963,12970,12972,12975,12988,12999,13008,13009,13015,13016,13017,13018,13019,13024,13027,13029,13038,13039,13040,13041,13044,13047,13049,13054,13056,13058,13062,13064,13066,13067,13069,13072,13075,13076,13079,13083,13084,13086,13093,13096,13100,13101,13104,13105,13106,13107,13108,13110,13119,13123,13131,13137,13139,13142,13152,13153,13155,13164,13169,13173,13183,13185,13186,13188,13193,13197,13202,13206,13209,13212,13218,13221,13222,13225,13231,13232,13233,13235,13244,13251,13255,13260,13262,13264,13270,13281,13293,13295,13297,13300,13304,13305,13313,13319,13324,13334,13335,13339,13344,13345,13346,13347,13352,13359,13364,13365,13369,13371,13380,13384,13394,13396,13400,13401,13403,13405,13409,13425,13427,13428,13430,13431,13436,13437,13448,13449,13451,13452,13454,13456,13457,13458,13461,13464,13466,13469,13470,13475,13486,13487,13492,13495,13496,13500,13503,13511,13512,13517,13518,13519,13520,13521,13522,13523,13544,13548,13554,13556,13567,13570,13574,13577,13581,13582,13584,13585,13591,13592,13603,13605,13608,13611,13618,13619,13620,13622,13631,13637,13641,13642,13643,13644,13647,13649,13650,13657,13659,13662,13663,13664,13671,13677,13692,13695,13702,13703,13706,13707,13710,13714,13715,13716,13718,13730,13732,13733,13734,13735,13740,13741,13742,13743,13748,13749,13752,13755,13762,13773,13774,13788,13790,13792,13793,13804,13819,13838,13841,13850,13851,13856,13858,13869,13887,13898,13900,13904,13905,13916,13924,13925,13929,13930,13937,13940,13942,13943,13944,13963,13977,13978,14007,14031,14033,14039,14047,14054,14084,14090,14091,14092,14102,14104,14139,14140,14154,14155,14156,14159,14161,14206,14209,14210,14228,14233,14236,14239,14245,14254,14274,14277,14278,14288,14304,14320,14331,14339,14357,14360,14361,14382,14383,14398,14408,14410,14418,14421,14425,14430,14442,14450,14469,14471,14474,14475,14478,14481,14483,14486,14499,14503,14504,14518,14521,14529,14531,14534,14535,14536,14537,14550,14553,14567,14574,14577,14580,14583,14588,14589,14592,14616,14655,14657,14665,14667,14668,14676,14677,14680,14707,14708,14717,14723,14724,14728,14743,14744,14751,14754,14755,14759,14763,14766,14768,14784,14793,14805,14817,14829,14833,14854,14882,14891,14893,14939,14940,14955,14968,14991,15025,15042,15045,15057,15077,15086,15095,15097,15100,15112,15117,15120,15121,15123,15135,15143,15145,15150,15151,15152,15155,15163,15166,15169,15176,15177,15180,15191,15216,15222,15226,15228,15238,15245,15270,15277,15298,15313,15316,15348,15356,15357,15359,15360,15369,15374,15400,15402,15405,15417,15426,15438,15440,15441,15445,15464,15511,15516,15517,15518,15520,15538,15548,15558,15559,15565,15620,15634,15658,15662,15664,15675,15676,15685,15703,15737,15739,15753,15771,15772,15790,15809,15810,15811,15831,15835,15836,15837,15847,15875,15886,15887,15901,15904,15909,15914,15944,15949,15958,15959,15978,15981,15983,15985,15991,16000,16007,16008,16034,16039,16051,16053,16055,16056,16074,16085,16087,16108,16111,16113,16122,16126,16134,16139,16140,16149,16150,16162,16191,16192,16228,16245,16251,16254,16255,16260,16295,16361,16371,16377,16425,16428,16429,16430,16452,16470,16478,16479,16485,16502,16506,16509,16523,16530,16567,16568,16569,16570,16573,16574,16575,16586,16598,16603,16613,16628,16631,16656,16658,16659,16675,16678,16686,16692,16709,16722,16740,16746,16748,16755,16770,16777,16782,16794,16814,16819,16845,16848,16850,16869,16878,16880,16886,16893,16894,16899,16903,16906,16927,16930,16932,16934,16935,16949,16955,16958,16973,16975,16977,16994,16997,17001,17010,17021,17035,17039,17057,17062,17086,17091,17093,17099,17123,17140,17142,17143,17158,17160,17170,17171,17189,17191,17193,17201,17209,17216,17217,17218,17231,17243,17248,17253,17254,17262,17263,17266,17267,17269,17271,17272,17276,17277,17281,17291,17295,17296,17302,17305,17311,17323,17326,17330,17343,17354,17356,17384,17389,17393,17394,17397,17402,17407,17412,17417,17419,17420,17422,17423,17424,17427,17439,17443,17446,17449,17450,17457,17463,17466,17471,17475,17486,17487,17490,17503,17504,17507,17508,17510,17515,17517,17518,17524,17525,17529,17543,17545,17572,17573,17575,17604,17626,17641,17647,17657,17660,17665,17667,17677,17689,17714,17716,17743,17745,17748,17751,17764,17766,17778,17783,17789,17791,17794,17799,17807,17817,17819,17826,17827,17830,17832,17841,17842,17846,17848,17849,17850,17854,17857,17858,17859,17861,17864,17865,17870,17887,17893,17897,17902,17916,17923,17924,17926,17928,17936,17945,17948,17952,17966,17975,17979,17981,17983,17991,17993,18019,18054,18063,18081,18089,18090,18095,18104,18115,18120,18151,18160,18162,18176,18179,18180,18182,18189,18191,18192,18202,18204,18205,18209,18210,18215,18218,18219,18222,18223,18226,18227,18231,18232,18233,18236,18237,18251,18252,18253,18254,18258,18262,18264,18280,18287,18298,18300,18313,18319,18328,18329,18337,18342,18344,18345,18351,18362,18371,18378,18385,18386,18391,18401,18408,18414,18416,18418,18440,18441,18446,18448,18451,18454,18458,18460,18463,18468,18482,18483,18484,18488,18496,18500,18504,18505,18507,18515,18524,18527,18528,18529,18530,18541,18545,18551,18552,18553,18554,18562,18565,18566,18574,18578,18579,18580,18581,18582,18584,18588,18593,18596,18599,18600,18602,18604,18605,18606,18607,18610,18613,18615,18620,18621,18622,18624,18625,18630,18633,18635,18646,18651,18659,18667,18668,18669,18679,18682,18683,18687,18694,18695,18697,18699,18708,18711,18713,18714,18718,18720,18724,18727,18733,18734,18737,18740,18741,18742,18745,18748,18750,18751,18753,18758,18763,18764,18769,18775,18776,18777,18781,18785,18788,18789,18790,18792,18793,18797,18801,18806,18808,18809,18814,18821,18832,18833,18839,18840,18841,18855,18858,18860,18866,18874,18879,18882,18885,18888,18889,18898,18899,18903,18909,18914,18916,18917,18919,18920,18922,18926,18931,18941,18946,18952,18965,18967,18971,18973,18976,18978,18982,18984,18985,18988,18989,18990,18992,18995,18996,18999,19000,19002,19003,19004,19005,19006,19009,19010,19012,19014,19015,19018,19019,19021,19027,19028,19035,19038,19046,19049,19054,19055,19061,19062,19065,19067,19068,19070,19073,19076,19077,19079,19080,19082,19086,19087,19097,19099,19104,19105,19106,19108,19109,19112,19118,19125,19128,19132,19138,19139,19141,19143,19145,19146,19147,19150,19151,19155,19157,19159,19160,19165,19173,19175,19178,19180,19184,19185,19188,19191,19205,19206,19208,19211,19215,19217,19222,19224,19226,19229,19234,19237,19238,19245,19247,19249,19253,19262,19266,19267,19273,19276,19277,19278,19280,19283,19287,19293,19296,19297,19298,19302,19303,19306,19307,19308,19311,19315,19322,19325,19326,19328,19329,19332,19333,19334,19335,19338,19340,19342,19343,19344,19347,19349,19350,19353,19356,19361,19363,19365,19368,19373,19379,19380,19384,19390,19399,19401,19402,19411,19412,19413,19418,19425,19431,19433,19438,19439,19447,19450,19459,19460,19464,19465,19466,19467,19469,19470,19472,19475,19480,19481,19482,19484,19486,19488,19491,19494,19500,19501,19504,19505,19507,19508,19513,19516,19520,19522,19524,19526,19527,19530,19532,19537,19538,19540,19541,19542,19561,19563,19567,19576,19577,19591,19604,19605,19609,19610,19611,19616,19633,19644,19646,19651,19652,19654,19658,19662,19666,19667,19675,19678,19681,19686,19691,19700,19703,19709,19720,19723,19725,19731,19735,19736,19748,19754,19764,19766,19771,19778,19792,19793,19797,19799,19800,19804,19805,19815,19818,19819,19829,19830,19832,19836,19837,19838,19839,19840,19842,19847,19866,19867,19872,19873,19876,19878,19883,19888,19893,19894,19910,19912,19913,19915,19918,19919,19920,19922,19939,19940,19941,19944,19946,19948,19955,19956,19961,19965,19979,19980,19985,19988,19989,19992,19993,19996,19999,20001,20004,20013,20015,20020,20024,20027,20031,20032,20033,20037,20043,20050,20060,20066,20068,20073,20076,20079,20088,20091,20107,20110,20113,20136,20137,20139,20145,20147,20150,20152,20158,20160,20163,20169,20171,20173,20175,20179,20186,20190,20205,20206,20208,20211,20217,20221,20229,20231,20238,20251,20255,20256,20269,20276,20282,20296,20313,20316,20319,20320,20322,20324,20333,20334,20340,20341,20346,20349,20353,20354,20356,20361,20376,20385,20387,20390,20391,20392,20396,20397,20403,20426,20428,20432,20434,20435,20436,20437,20442,20447,20454,20473,20476,20481,20507,20508,20509,20511,20520,20521,20522,20523,20527,20528,20537,20543,20552,20553,20555,20557,20573,20581,20584,20586,20588,20590,20596,20622,20632,20644,20649,20658,20666,20667,20682,20686,20689,20692,20693,20703,20704,20705,20708,20713,20714,20715,20717,20720,20727,20729,20730,20731,20742,20749,20754,20759,20766,20767,20778,20784,20790,20791,20793,20796,20803,20804,20805,20809,20811,20813,20818,20823,20825,20834,20835,20837,20841,20842,20843,20844,20855,20856,20857,20860,20861,20862,20863,20864,20865,20866,20867,20868,20869,20870,20871,20872,20873,20874,20877,20878,20879,20881,20890,20895,20903,20908,20911,20912,20916,20919,20920,20927,20928,20933,20934,20939,20942,20943,20944,20949,20957,20970,20971,20976,21000,21002,21004,21005,21006,21015,21034,21055,21062,21063,21068,21069,21070,21072,21073,21075,21078,21079,21081,21083,21093,21113,21114,21115,21119,21120,21121,21159,21160,21166,21181,21188,21194,21198,21199,21201,21217,21225,21238,21244,21255,21257,21261,21275,21284,21285,21286,21288,21289,21292,21293,21295,21296,21297,21300,21302,21307,21311,21315,21316,21317,21321,21323,21335,21341,21342,21350,21353,21364,21366,21371,21373,21374,21381,21388,21389,21390,21391,21415,21419,21420,21439,21444,21455,21458,21476,21477,21532,21566,21579,21601,21607,21608,21612,21616,21617,21618,21619,21620,21621,21624,21627,21630,21638,21657,21664,21673,21684,21690,21691,21713,21716,21745,21756,21965,21968,21983,21985,21994,21998,22000,22001,22002,22006,22018,22022,22023,22031,22032,22040,22042,22048,22051,22053,22055,22056,22057,22060,22061,22063,22065,22073,22074,22078,22082,22089,22091,22100,22101,22103,22104,22107,22109,22111,22112,22113,22115,22121,22122,22128,22131,22143,22147,22155,22156,22158,22165,22173,22187,22188,22192,22194,22198,22199,22200,22207,22210,22211,22212,22223,22225,22228,22234,22243,22245,22247,22249,22260,22270,22279,22285,22307,22313,22314,22318,22319,22330,22337,22338,22360,22364,22367,22370,22373,22375,22377,22380,22383,22385,22391,22393,22394,22400,22401,22402,22403,22405,22416,22417,22418,22419,22420,22421,22425,22428,22434,22441,22443,22444,22445,22446,22456,22460,22463,22467,22470,22472,22474,22477,22478,22480,22483,22489,22492,22493,22495,22496,22499,22502,22503,22504,22505,22510,22515,22518,22526,22528,22537,22544,22567,22568,22570,22578,22579,22584,22590,22598,22600,22601,22602,22605,22609,22612,22613,22619,22623,22632,22640,22645,22646,22648,22662,22663,22682,22687,22693,22696,22698,22699,22712,22713,22729,22731,22733,22735,22736,22737,22743,22744,22745,22748,22751,22752,22753,22754,22755,22761,22785,22793,22799,22800,22805,22806,22822,22823,22825,22827,22831,22833,22835,22842,22858,22867,22874,22882,22884,22890,22899,22914,22927,22928,22935,22968,22969,22975,22976,22986,22987,22990,23004,23007,23022,23026,23033,23034,23037,23040,23044,23052,23061,23062,23063,23064,23070,23074,23075,23079,23085,23086,23087,23089,23091,23099,23105,23109,23113,23118,23119,23125,23126,23127,23130,23131,23138,23139]]],["+",[425,399,[[0,21,20,0,20,[[3,1,1,0,1],[10,1,1,1,2],[15,1,1,2,3],[18,2,2,3,5],[22,1,1,5,6],[23,3,3,6,9],[28,1,1,9,10],[29,1,1,10,11],[30,2,1,11,12],[33,1,1,12,13],[39,1,1,13,14],[41,1,1,14,15],[43,3,3,15,18],[46,2,2,18,20]]],[1,20,18,20,38,[[50,1,1,20,21],[54,2,1,21,22],[58,1,1,22,23],[61,6,5,23,28],[62,1,1,28,29],[63,1,1,29,30],[64,1,1,30,31],[65,1,1,31,32],[68,1,1,32,33],[70,2,2,33,35],[71,1,1,35,36],[72,1,1,36,37],[83,1,1,37,38]]],[2,35,33,38,71,[[91,2,1,38,39],[92,1,1,39,40],[95,1,1,40,41],[96,3,3,41,44],[101,1,1,44,45],[105,1,1,45,46],[106,2,2,46,48],[107,3,3,48,51],[108,2,1,51,52],[109,1,1,52,53],[110,2,2,53,55],[111,4,4,55,59],[112,8,8,59,67],[114,2,2,67,69],[116,2,2,69,71]]],[3,24,23,71,94,[[121,1,1,71,72],[122,1,1,72,73],[127,2,2,73,75],[128,1,1,75,76],[129,1,1,76,77],[130,2,2,77,79],[134,2,2,79,81],[135,2,2,81,83],[138,2,2,83,85],[139,2,1,85,86],[140,1,1,86,87],[141,1,1,87,88],[144,3,3,88,91],[145,3,3,91,94]]],[4,28,28,94,122,[[153,3,3,94,97],[154,1,1,97,98],[157,3,3,98,101],[159,2,2,101,103],[160,1,1,103,104],[161,1,1,104,105],[163,1,1,105,106],[165,1,1,106,107],[166,1,1,107,108],[169,1,1,108,109],[172,4,4,109,113],[173,1,1,113,114],[174,1,1,114,115],[180,4,4,115,119],[184,2,2,119,121],[186,1,1,121,122]]],[5,8,8,122,130,[[188,1,1,122,123],[193,1,1,123,124],[194,1,1,124,125],[197,1,1,125,126],[199,1,1,126,127],[200,1,1,127,128],[202,1,1,128,129],[210,1,1,129,130]]],[6,13,11,130,141,[[212,2,2,130,132],[216,1,1,132,133],[218,1,1,133,134],[221,3,3,134,137],[224,1,1,137,138],[225,1,1,138,139],[231,4,2,139,141]]],[7,3,2,141,143,[[233,1,1,141,142],[235,2,1,142,143]]],[8,16,15,143,158,[[236,1,1,143,144],[237,1,1,144,145],[238,1,1,145,146],[241,1,1,146,147],[247,1,1,147,148],[249,1,1,148,149],[251,2,2,149,151],[252,1,1,151,152],[253,1,1,152,153],[255,2,1,153,154],[256,1,1,154,155],[260,3,3,155,158]]],[9,7,7,158,165,[[277,1,1,158,159],[278,1,1,159,160],[280,1,1,160,161],[284,2,2,161,163],[287,1,1,163,164],[288,1,1,164,165]]],[10,11,11,165,176,[[291,1,1,165,166],[292,1,1,166,167],[293,1,1,167,168],[294,1,1,168,169],[300,1,1,169,170],[301,2,2,170,172],[305,1,1,172,173],[310,2,2,173,175],[312,1,1,175,176]]],[11,13,13,176,189,[[321,3,3,176,179],[322,1,1,179,180],[325,1,1,180,181],[329,3,3,181,184],[332,3,3,184,187],[334,1,1,187,188],[335,1,1,188,189]]],[12,4,4,189,193,[[342,1,1,189,190],[350,1,1,190,191],[351,1,1,191,192],[360,1,1,192,193]]],[13,11,11,193,204,[[373,1,1,193,194],[375,1,1,194,195],[382,1,1,195,196],[383,1,1,196,197],[386,1,1,197,198],[389,1,1,198,199],[398,2,2,199,201],[399,1,1,201,202],[402,2,2,202,204]]],[15,5,5,204,209,[[417,2,2,204,206],[418,1,1,206,207],[421,1,1,207,208],[425,1,1,208,209]]],[16,6,6,209,215,[[427,1,1,209,210],[430,1,1,210,211],[431,1,1,211,212],[434,3,3,212,215]]],[17,16,16,215,231,[[438,1,1,215,216],[439,1,1,216,217],[440,2,2,217,219],[447,1,1,219,220],[450,2,2,220,222],[456,1,1,222,223],[460,1,1,223,224],[461,1,1,224,225],[464,2,2,225,227],[465,1,1,227,228],[466,1,1,228,229],[471,1,1,229,230],[475,1,1,230,231]]],[18,32,30,231,261,[[487,1,1,231,232],[492,2,1,232,233],[502,1,1,233,234],[511,1,1,234,235],[512,1,1,235,236],[514,1,1,236,237],[520,1,1,237,238],[521,2,2,238,240],[526,2,2,240,242],[532,1,1,242,243],[546,1,1,243,244],[550,1,1,244,245],[553,1,1,245,246],[555,4,4,246,250],[583,1,1,250,251],[596,1,1,251,252],[601,1,1,252,253],[602,1,1,253,254],[604,2,1,254,255],[606,1,1,255,256],[608,1,1,256,257],[614,1,1,257,258],[616,2,2,258,260],[624,1,1,260,261]]],[19,9,8,261,269,[[629,1,1,261,262],[631,2,1,262,263],[639,1,1,263,264],[652,1,1,264,265],[657,3,3,265,268],[658,1,1,268,269]]],[20,14,13,269,282,[[659,4,3,269,272],[660,2,2,272,274],[663,1,1,274,275],[664,1,1,275,276],[665,2,2,276,278],[666,1,1,278,279],[667,1,1,279,280],[669,1,1,280,281],[670,1,1,281,282]]],[21,2,2,282,284,[[675,1,1,282,283],[678,1,1,283,284]]],[22,32,30,284,314,[[679,1,1,284,285],[683,1,1,285,286],[691,1,1,286,287],[692,2,2,287,289],[694,1,1,289,290],[701,1,1,290,291],[703,1,1,291,292],[705,1,1,292,293],[707,4,3,293,296],[708,1,1,296,297],[711,1,1,297,298],[712,1,1,298,299],[717,3,3,299,302],[723,1,1,302,303],[732,1,1,303,304],[734,3,2,304,306],[735,1,1,306,307],[736,2,2,307,309],[737,1,1,309,310],[740,1,1,310,311],[741,2,2,311,313],[742,1,1,313,314]]],[23,28,23,314,337,[[745,1,1,314,315],[750,1,1,315,316],[752,1,1,316,317],[755,1,1,317,318],[757,2,2,318,320],[758,1,1,320,321],[759,3,2,321,323],[762,1,1,323,324],[763,1,1,324,325],[766,3,2,325,327],[769,2,1,327,328],[775,1,1,328,329],[776,1,1,329,330],[780,1,1,330,331],[786,1,1,331,332],[790,1,1,332,333],[793,3,2,333,335],[794,2,1,335,336],[795,1,1,336,337]]],[24,2,2,337,339,[[797,1,1,337,338],[801,1,1,338,339]]],[25,35,32,339,371,[[804,2,2,339,341],[806,1,1,341,342],[813,3,3,342,345],[818,2,2,345,347],[819,6,4,347,351],[821,1,1,351,352],[823,2,2,352,354],[825,2,2,354,356],[827,1,1,356,357],[832,1,1,357,358],[834,8,7,358,365],[835,1,1,365,366],[837,2,2,366,368],[839,1,1,368,369],[845,1,1,369,370],[849,1,1,370,371]]],[26,6,5,371,376,[[857,1,1,371,372],[858,1,1,372,373],[859,1,1,373,374],[860,2,1,374,375],[861,1,1,375,376]]],[27,4,4,376,380,[[863,1,1,376,377],[871,1,1,377,378],[872,1,1,378,379],[874,1,1,379,380]]],[28,2,2,380,382,[[877,2,2,380,382]]],[29,5,5,382,387,[[881,2,2,382,384],[882,1,1,384,385],[884,1,1,385,386],[885,1,1,386,387]]],[32,1,1,387,388,[[893,1,1,387,388]]],[33,2,2,388,390,[[900,1,1,388,389],[902,1,1,389,390]]],[34,2,2,390,392,[[903,1,1,390,391],[904,1,1,391,392]]],[35,3,3,392,395,[[906,1,1,392,393],[908,2,2,393,395]]],[37,4,3,395,398,[[921,1,1,395,396],[924,3,2,396,398]]],[38,1,1,398,399,[[926,1,1,398,399]]]],[84,272,382,476,479,577,599,629,641,803,831,908,994,1187,1268,1346,1347,1350,1439,1442,1540,1634,1746,1836,1838,1855,1859,1864,1889,1909,1946,1965,2049,2085,2090,2121,2157,2503,2773,2795,2879,2902,2903,2905,3048,3218,3247,3249,3257,3279,3281,3301,3340,3366,3368,3371,3379,3382,3390,3405,3409,3410,3423,3427,3430,3437,3438,3495,3497,3598,3599,3795,3827,4038,4050,4067,4106,4126,4143,4260,4277,4301,4302,4393,4412,4441,4459,4482,4595,4602,4603,4609,4620,4643,4901,4931,4934,4945,5056,5058,5075,5126,5127,5141,5163,5225,5289,5314,5381,5428,5435,5439,5443,5461,5496,5646,5658,5676,5677,5764,5788,5846,5883,5988,6019,6122,6167,6196,6275,6495,6546,6555,6664,6753,6844,6849,6864,6922,6942,7107,7110,7157,7196,7234,7252,7295,7343,7481,7532,7603,7604,7657,7678,7732,7780,7882,7886,7897,8269,8296,8381,8491,8498,8597,8640,8718,8806,8842,8871,9100,9114,9118,9254,9431,9433,9523,9774,9776,9782,9824,9878,10002,10008,10009,10111,10113,10115,10147,10174,10429,10773,10788,10994,11331,11366,11521,11533,11624,11664,11890,11900,11931,12005,12010,12390,12395,12404,12532,12673,12739,12788,12796,12844,12849,12850,12914,12948,12957,12975,13142,13206,13218,13365,13466,13475,13554,13556,13574,13622,13742,13869,14047,14092,14254,14410,14418,14478,14567,14580,14583,14665,14667,14754,14939,15042,15086,15121,15150,15152,15155,15658,15991,16108,16113,16122,16139,16150,16228,16245,16255,16361,16452,16506,16740,17123,17272,17277,17281,17302,17323,17326,17330,17343,17354,17412,17419,17443,17450,17475,17487,17518,17529,17604,17647,17667,17748,17926,17948,17952,17983,18089,18120,18162,18204,18205,18209,18236,18280,18319,18414,18416,18418,18581,18740,18763,18764,18785,18789,18793,18814,18860,18882,18885,18888,18952,19099,19160,19229,19273,19276,19302,19326,19333,19390,19418,19460,19467,19540,19709,19748,19847,19979,20050,20147,20150,20211,20255,20324,20447,20508,20520,20557,20686,20692,20708,20841,20844,20860,20874,20878,20881,20928,21002,21005,21068,21083,21121,21238,21284,21285,21296,21297,21300,21302,21307,21321,21364,21366,21444,21608,21713,21965,22001,22022,22073,22091,22115,22228,22247,22279,22337,22338,22400,22402,22417,22463,22474,22590,22687,22729,22735,22752,22805,22822,22823,23033,23086,23087,23119]]],["Nay",[17,17,[[0,5,5,0,5,[[17,1,1,0,1],[18,1,1,1,2],[22,1,1,2,3],[41,2,2,3,5]]],[3,1,1,5,6,[[138,1,1,5,6]]],[5,2,2,6,8,[[191,1,1,6,7],[210,1,1,7,8]]],[6,1,1,8,9,[[222,1,1,8,9]]],[8,2,2,9,11,[[243,1,1,9,10],[247,1,1,10,11]]],[9,2,2,11,13,[[282,1,1,11,12],[290,1,1,12,13]]],[10,3,3,13,16,[[292,1,1,13,14],[293,2,2,14,16]]],[12,1,1,16,17,[[358,1,1,16,17]]]],[439,459,582,1262,1264,4405,5948,6497,6874,7388,7472,8444,8716,8800,8838,8839,10958]]],["Neither",[56,56,[[0,1,1,0,1,[[16,1,1,0,1]]],[1,2,2,1,3,[[69,1,1,1,2],[72,1,1,2,3]]],[2,7,7,3,10,[[107,2,2,3,5],[110,3,3,5,8],[111,2,2,8,10]]],[3,2,2,10,12,[[134,1,1,10,11],[152,1,1,11,12]]],[4,10,10,12,22,[[157,4,4,12,16],[159,2,2,16,18],[168,1,1,18,19],[169,1,1,19,20],[181,1,1,20,21],[182,1,1,21,22]]],[6,6,6,22,28,[[211,5,5,22,27],[218,1,1,27,28]]],[11,1,1,28,29,[[333,1,1,28,29]]],[13,2,2,29,31,[[379,1,1,29,30],[399,1,1,30,31]]],[17,3,3,31,34,[[444,1,1,31,32],[458,1,1,32,33],[466,1,1,33,34]]],[18,1,1,34,35,[[606,1,1,34,35]]],[22,1,1,35,36,[[697,1,1,35,36]]],[23,6,6,36,42,[[746,1,1,36,37],[749,1,1,37,38],[760,1,1,38,39],[761,1,1,39,40],[777,1,1,40,41],[779,1,1,41,42]]],[25,10,10,42,52,[[817,1,1,42,43],[818,1,1,43,44],[819,1,1,44,45],[824,1,1,45,46],[837,1,1,46,47],[838,1,1,47,48],[840,1,1,48,49],[845,3,3,49,52]]],[26,2,2,52,54,[[858,2,2,52,54]]],[28,1,1,54,55,[[877,1,1,54,55]]],[29,1,1,55,56,[[880,1,1,55,56]]]],[402,2077,2147,3269,3274,3356,3357,3360,3394,3401,4279,4888,5071,5072,5073,5074,5114,5137,5364,5381,5693,5721,6536,6538,6539,6540,6542,6754,10127,11473,11916,13084,13431,13618,16140,18019,18971,19082,19343,19379,19793,19830,20813,20842,20865,21015,21374,21420,21477,21619,21620,21621,21994,21998,22319,22394]]],["No",[15,15,[[4,1,1,0,1,[[176,1,1,0,1]]],[6,1,1,1,2,[[225,1,1,1,2]]],[8,1,1,2,3,[[236,1,1,2,3]]],[10,1,1,3,4,[[293,1,1,3,4]]],[17,3,3,4,7,[[458,1,1,4,5],[459,1,1,5,6],[463,1,1,6,7]]],[22,2,2,7,9,[[708,1,1,7,8],[713,1,1,8,9]]],[23,2,2,9,11,[[767,1,1,9,10],[786,1,1,10,11]]],[25,1,1,11,12,[[830,1,1,11,12]]],[36,1,1,12,13,[[910,1,1,12,13]]],[37,2,2,13,15,[[914,2,2,13,15]]]],[5531,6942,7227,8838,13425,13451,13522,18233,18329,19501,19989,21194,22867,22927,22935]]],["None",[5,5,[[11,1,1,0,1,[[318,1,1,0,1]]],[12,1,1,1,2,[[352,1,1,1,2]]],[17,1,1,2,3,[[476,1,1,2,3]]],[18,1,1,3,4,[[526,1,1,3,4]]],[25,1,1,4,5,[[817,1,1,4,5]]]],[9686,10793,13898,14655,20767]]],["Not",[9,9,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,1,1,1,2,[[59,1,1,1,2]]],[4,1,1,2,3,[[161,1,1,2,3]]],[17,1,1,3,4,[[451,1,1,3,4]]],[18,1,1,4,5,[[592,1,1,4,5]]],[23,1,1,5,6,[[775,1,1,5,6]]],[25,2,2,6,8,[[804,1,1,6,7],[837,1,1,7,8]]],[37,1,1,8,9,[[914,1,1,8,9]]]],[1469,1788,5162,13255,15831,19723,20508,21391,22928]]],["Nothing",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9130]]],["Notwithstanding",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7265]]],["afore",[1,1,[[11,1,1,0,1,[[332,1,1,0,1]]]],[10102]]],["before",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[20,1,1,1,2,[[665,1,1,1,2]]]],[13235,17446]]],["but",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22403]]],["cannot",[56,53,[[0,3,3,0,3,[[31,1,1,0,1],[37,1,1,1,2],[42,1,1,2,3]]],[1,1,1,3,4,[[59,1,1,3,4]]],[3,2,2,4,6,[[139,1,1,4,5],[151,1,1,5,6]]],[8,1,1,6,7,[[247,1,1,6,7]]],[9,3,3,7,10,[[271,1,1,7,8],[280,1,1,8,9],[289,1,1,9,10]]],[10,3,3,10,13,[[293,1,1,10,11],[298,1,1,11,12],[308,1,1,12,13]]],[13,3,3,13,16,[[368,1,1,13,14],[372,1,1,14,15],[390,1,1,15,16]]],[17,19,18,16,34,[[440,1,1,16,17],[441,1,1,17,18],[444,1,1,18,19],[447,1,1,19,20],[449,1,1,20,21],[452,1,1,21,22],[454,1,1,22,23],[458,3,2,23,25],[463,3,3,25,28],[466,1,1,28,29],[472,3,3,29,32],[476,2,2,32,34]]],[18,3,3,34,37,[[554,1,1,34,35],[565,1,1,35,36],[602,1,1,36,37]]],[20,1,1,37,38,[[668,1,1,37,38]]],[22,4,3,38,41,[[716,2,1,38,39],[722,1,1,39,40],[723,1,1,40,41]]],[23,9,8,41,49,[[748,1,1,41,42],[749,1,1,42,43],[754,2,1,43,44],[768,2,2,44,46],[773,1,1,46,47],[777,1,1,47,48],[790,1,1,48,49]]],[24,1,1,49,50,[[799,1,1,49,50]]],[27,1,1,50,51,[[862,1,1,50,51]]],[31,1,1,51,52,[[892,1,1,51,52]]],[34,1,1,52,53,[[904,1,1,52,53]]]],[940,1141,1312,1782,4436,4878,7481,8138,8370,8659,8824,9012,9353,11217,11300,11697,12963,13008,13054,13142,13186,13270,13305,13427,13428,13519,13520,13521,13619,13774,13788,13792,13905,13916,15097,15316,16111,17507,18408,18553,18581,19046,19080,19206,19527,19532,19652,19797,20068,20361,22104,22579,22753]]],["ere",[4,4,[[3,1,1,0,1,[[130,1,1,0,1]]],[9,1,1,1,2,[[268,1,1,1,2]]],[23,1,1,2,3,[[791,1,1,2,3]]],[27,1,1,3,4,[[869,1,1,3,4]]]],[4119,8075,20079,22199]]],["ever",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17626]]],["forbidden",[1,1,[[2,1,1,0,1,[[94,1,1,0,1]]]],[2847]]],["lest",[12,12,[[0,1,1,0,1,[[13,1,1,0,1]]],[2,4,4,1,5,[[99,2,2,1,3],[108,1,1,3,4],[111,1,1,4,5]]],[3,1,1,5,6,[[134,1,1,5,6]]],[4,2,2,6,8,[[153,1,1,6,7],[176,1,1,7,8]]],[5,1,1,8,9,[[195,1,1,8,9]]],[8,1,1,9,10,[[264,1,1,9,10]]],[9,1,1,10,11,[[279,1,1,10,11]]],[23,1,1,11,12,[[781,1,1,11,12]]]],[359,2983,2986,3310,3378,4289,4934,5540,6057,7971,8342,19894]]],["more",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9791]]],["nay",[1,1,[[11,1,1,0,1,[[332,1,1,0,1]]]],[10108]]],["neither",[429,397,[[0,9,7,0,7,[[2,1,1,0,1],[7,1,1,1,2],[8,2,1,2,3],[20,2,1,3,4],[23,1,1,4,5],[28,1,1,5,6],[38,1,1,6,7]]],[1,27,27,7,34,[[53,2,2,7,9],[54,1,1,9,10],[56,2,2,10,12],[57,1,1,12,13],[58,2,2,13,15],[59,3,3,15,18],[61,1,1,18,19],[62,1,1,19,20],[65,1,1,20,21],[69,1,1,21,22],[71,3,3,22,25],[72,3,3,25,28],[73,1,1,28,29],[79,2,2,29,31],[83,3,3,31,34]]],[2,34,32,34,66,[[91,1,1,34,35],[94,1,1,35,36],[96,1,1,36,37],[99,1,1,37,38],[100,2,2,38,40],[106,1,1,40,41],[107,4,4,41,45],[108,9,8,45,53],[110,2,2,53,55],[111,1,1,55,56],[112,2,2,56,58],[114,3,3,58,61],[115,5,4,61,65],[116,1,1,65,66]]],[3,12,12,66,78,[[117,1,1,66,67],[121,1,1,67,68],[122,1,1,68,69],[127,1,1,69,70],[130,1,1,70,71],[132,1,1,71,72],[134,2,2,72,74],[136,1,1,74,75],[139,2,2,75,77],[151,1,1,77,78]]],[4,36,33,78,111,[[153,2,2,78,80],[154,1,1,80,81],[156,3,3,81,84],[157,1,1,84,85],[159,1,1,85,86],[160,2,2,86,88],[161,2,2,88,90],[165,3,1,90,91],[168,2,2,91,93],[169,1,1,93,94],[170,1,1,94,95],[173,2,2,95,97],[174,1,1,97,98],[176,3,3,98,101],[178,2,2,101,103],[180,4,4,103,107],[181,1,1,107,108],[182,1,1,108,109],[183,2,1,109,110],[185,1,1,110,111]]],[5,8,7,111,118,[[188,1,1,111,112],[191,2,2,112,114],[192,1,1,114,115],[193,1,1,115,116],[197,1,1,116,117],[209,2,1,117,118]]],[6,5,5,118,123,[[212,1,1,118,119],[218,1,1,119,120],[223,2,2,120,122],[230,1,1,122,123]]],[8,9,9,123,132,[[236,1,1,123,124],[239,1,1,124,125],[240,1,1,125,126],[247,1,1,126,127],[248,1,1,127,128],[260,2,2,128,130],[262,2,2,130,132]]],[9,10,10,132,142,[[268,1,1,132,133],[273,1,1,133,134],[278,1,1,134,135],[279,1,1,135,136],[280,1,1,136,137],[284,1,1,137,138],[285,1,1,138,139],[286,1,1,139,140],[287,1,1,140,141],[290,1,1,141,142]]],[10,11,11,142,153,[[293,2,2,142,144],[296,1,1,144,145],[297,1,1,145,146],[301,1,1,146,147],[302,1,1,147,148],[303,2,2,148,150],[307,2,2,150,152],[312,1,1,152,153]]],[11,8,8,153,161,[[315,1,1,153,154],[316,1,1,154,155],[317,1,1,155,156],[318,1,1,156,157],[322,1,1,157,158],[325,1,1,158,159],[329,1,1,159,160],[335,1,1,160,161]]],[12,4,4,161,165,[[341,1,1,161,162],[354,1,1,162,163],[356,1,1,163,164],[364,1,1,164,165]]],[13,10,10,165,175,[[367,2,2,165,167],[372,1,1,167,168],[375,1,1,168,169],[386,1,1,169,170],[391,1,1,170,171],[392,1,1,171,172],[396,1,1,172,173],[400,1,1,173,174],[401,1,1,174,175]]],[14,1,1,175,176,[[412,1,1,175,176]]],[15,6,6,176,182,[[414,2,2,176,178],[416,1,1,178,179],[417,1,1,179,180],[421,2,2,180,182]]],[17,25,23,182,205,[[438,2,1,182,183],[440,2,2,183,185],[442,1,1,185,186],[443,1,1,186,187],[450,2,1,187,188],[453,1,1,188,189],[455,1,1,189,190],[456,1,1,190,191],[463,3,3,191,194],[467,2,2,194,196],[468,2,2,196,198],[469,1,1,198,199],[470,1,1,199,200],[471,1,1,200,201],[474,4,4,201,205]]],[18,25,25,205,230,[[482,1,1,205,206],[493,1,1,206,207],[495,1,1,207,208],[499,1,1,208,209],[503,1,1,209,210],[510,1,1,210,211],[521,3,3,211,214],[532,1,1,214,215],[550,1,1,215,216],[551,1,1,216,217],[552,1,1,217,218],[555,1,1,218,219],[558,1,1,219,220],[559,1,1,220,221],[568,1,1,221,222],[569,1,1,222,223],[571,2,2,223,225],[580,1,1,225,226],[592,2,2,226,228],[598,1,1,228,229],[608,1,1,229,230]]],[19,4,4,230,234,[[629,1,1,230,231],[633,1,1,231,232],[642,1,1,232,233],[657,1,1,233,234]]],[20,5,5,234,239,[[662,1,1,234,235],[664,1,1,235,236],[666,2,2,236,238],[667,1,1,238,239]]],[21,1,1,239,240,[[678,1,1,239,240]]],[22,47,44,240,284,[[679,3,2,240,242],[680,1,1,242,243],[683,2,2,243,245],[685,2,2,245,247],[686,1,1,247,248],[687,2,2,248,250],[688,1,1,250,251],[689,1,1,251,252],[691,3,1,252,253],[694,1,1,253,254],[695,1,1,254,255],[700,1,1,255,256],[701,1,1,256,257],[707,1,1,257,258],[709,1,1,258,259],[711,1,1,259,260],[718,1,1,260,261],[720,1,1,261,262],[721,4,4,262,266],[722,1,1,266,267],[725,2,2,267,269],[727,1,1,269,270],[728,1,1,270,271],[731,1,1,271,272],[732,1,1,272,273],[733,1,1,273,274],[735,1,1,274,275],[737,3,3,275,278],[738,2,2,278,280],[740,1,1,280,281],[742,1,1,281,282],[744,2,2,282,284]]],[23,48,43,284,327,[[747,5,2,284,286],[748,1,1,286,287],[749,3,2,287,289],[750,1,1,289,290],[751,2,2,290,292],[752,1,1,292,293],[753,3,3,293,296],[758,3,2,296,298],[759,1,1,298,299],[760,5,5,299,304],[761,4,4,304,308],[763,2,2,308,310],[765,1,1,310,311],[767,1,1,311,312],[769,1,1,312,313],[773,1,1,313,314],[776,2,2,314,316],[777,1,1,316,317],[778,1,1,317,318],[779,1,1,318,319],[781,1,1,319,320],[788,1,1,320,321],[792,1,1,321,322],[793,2,2,322,324],[794,2,2,324,326],[795,1,1,326,327]]],[25,57,45,327,372,[[804,1,1,327,328],[805,1,1,328,329],[806,4,2,329,331],[808,5,5,331,336],[809,1,1,336,337],[810,1,1,337,338],[812,1,1,338,339],[814,2,1,339,340],[815,2,2,340,342],[817,3,3,342,345],[819,7,5,345,350],[821,3,3,350,353],[823,1,1,353,354],[825,4,2,354,356],[830,2,2,356,358],[832,2,1,358,359],[833,1,1,359,360],[834,1,1,360,361],[835,8,5,361,366],[837,3,2,366,368],[838,1,1,368,369],[840,1,1,369,370],[848,1,1,370,371],[849,1,1,371,372]]],[26,6,5,372,377,[[859,3,2,372,374],[860,3,3,374,377]]],[27,3,3,377,380,[[863,1,1,377,378],[870,1,1,378,379],[875,1,1,379,380]]],[28,1,1,380,381,[[877,1,1,380,381]]],[29,4,4,381,385,[[880,2,2,381,383],[883,1,1,383,384],[885,1,1,384,385]]],[31,1,1,385,386,[[892,1,1,385,386]]],[32,3,3,386,389,[[894,1,1,386,387],[896,2,2,387,389]]],[34,1,1,389,390,[[904,1,1,389,390]]],[35,2,2,390,392,[[906,1,1,390,391],[908,1,1,391,392]]],[37,2,2,392,394,[[921,1,1,392,393],[923,1,1,393,394]]],[38,4,3,394,397,[[925,2,1,394,395],[927,1,1,395,396],[928,1,1,396,397]]]],[58,204,216,539,607,802,1158,1609,1610,1655,1707,1708,1742,1771,1777,1783,1791,1800,1862,1874,1971,2074,2134,2138,2144,2146,2157,2162,2179,2391,2414,2520,2521,2524,2775,2841,2897,2983,3040,3041,3247,3254,3268,3272,3274,3290,3291,3292,3294,3297,3300,3307,3308,3350,3352,3393,3416,3424,3473,3474,3480,3525,3530,3544,3568,3603,3653,3805,3826,4043,4131,4209,4277,4289,4328,4437,4439,4868,4921,4934,4965,5006,5032,5035,5074,5127,5140,5141,5166,5175,5280,5346,5361,5381,5400,5451,5454,5475,5530,5540,5541,5579,5580,5647,5650,5675,5676,5685,5719,5736,5819,5880,5935,5946,5959,5988,6121,6467,6568,6742,6890,6907,7062,7227,7317,7324,7464,7507,7868,7876,7939,7941,8077,8190,8303,8339,8370,8481,8535,8555,8590,8716,8827,8828,8903,8981,9110,9167,9192,9200,9331,9333,9511,9593,9626,9664,9693,9807,9894,10021,10190,10412,10872,10926,11133,11205,11206,11287,11373,11599,11708,11750,11830,11961,11984,12265,12319,12323,12370,12398,12528,12546,12930,12957,12972,13018,13049,13232,13295,13335,13364,13517,13519,13523,13642,13649,13657,13659,13695,13733,13762,13841,13851,13856,13858,13977,14102,14155,14228,14277,14383,14574,14577,14588,14744,15025,15057,15077,15150,15226,15238,15405,15417,15438,15445,15558,15837,15847,16085,16149,16452,16575,16819,17254,17389,17427,17466,17471,17486,17647,17660,17677,17689,17751,17766,17789,17794,17819,17842,17846,17857,17887,17926,17979,17991,18063,18081,18215,18251,18300,18448,18504,18507,18515,18528,18529,18552,18606,18607,18646,18667,18720,18733,18748,18781,18801,18806,18809,18840,18841,18858,18889,18941,18946,19018,19019,19055,19070,19073,19104,19125,19150,19165,19185,19188,19191,19306,19307,19325,19338,19340,19342,19343,19353,19365,19373,19379,19380,19411,19412,19447,19488,19567,19667,19754,19766,19797,19815,19832,19876,20020,20091,20145,20158,20205,20206,20255,20511,20543,20553,20557,20581,20586,20588,20590,20596,20622,20632,20667,20717,20742,20749,20766,20778,20811,20855,20857,20864,20865,20869,20903,20912,20916,21002,21070,21072,21194,21198,21244,21261,21292,21317,21321,21323,21341,21342,21373,21374,21419,21458,21691,21716,22018,22032,22042,22053,22056,22107,22212,22285,22313,22393,22394,22445,22478,22578,22598,22623,22632,22753,22799,22833,23044,23063,23099,23131,23139]]],["never",[18,17,[[0,1,1,0,1,[[40,1,1,0,1]]],[2,1,1,1,2,[[95,1,1,1,2]]],[3,1,1,2,3,[[135,1,1,2,3]]],[4,1,1,3,4,[[167,1,1,3,4]]],[6,2,2,4,6,[[226,2,2,4,6]]],[13,1,1,6,7,[[387,1,1,6,7]]],[17,2,2,7,9,[[438,1,1,7,8],[456,1,1,8,9]]],[19,3,2,9,11,[[654,2,1,9,10],[657,1,1,10,11]]],[22,1,1,11,12,[[734,1,1,11,12]]],[23,2,2,12,14,[[764,1,1,12,13],[777,1,1,13,14]]],[25,1,1,14,15,[[817,1,1,14,15]]],[26,1,1,15,16,[[861,1,1,15,16]]],[29,1,1,16,17,[[886,1,1,16,17]]]],[1214,2862,4291,5330,6956,6960,11641,12920,13380,17189,17266,18764,19433,19792,20825,22082,22495]]],["no",[451,441,[[0,14,14,0,14,[[7,1,1,0,1],[8,1,1,1,2],[14,1,1,2,3],[31,1,1,3,4],[36,1,1,4,5],[37,3,3,5,8],[40,1,1,8,9],[41,3,3,9,12],[43,1,1,12,13],[44,1,1,13,14]]],[1,28,28,14,42,[[52,1,1,14,15],[54,2,2,15,17],[58,2,2,17,19],[59,2,2,19,21],[61,2,2,21,23],[62,2,2,23,25],[63,1,1,25,26],[64,1,1,26,27],[65,2,2,27,29],[69,1,1,29,30],[70,2,2,30,32],[72,2,2,32,34],[79,2,2,34,36],[82,2,2,36,38],[83,3,3,38,41],[84,1,1,41,42]]],[2,12,12,42,54,[[94,1,1,42,43],[102,1,1,43,44],[105,1,1,44,45],[106,1,1,45,46],[108,2,2,46,48],[109,1,1,48,49],[110,1,1,49,50],[112,1,1,50,51],[115,2,2,51,53],[116,1,1,53,54]]],[3,24,24,54,78,[[117,1,1,54,55],[119,1,1,55,56],[121,2,2,56,58],[122,3,3,58,61],[124,3,3,61,64],[132,1,1,64,65],[134,4,4,65,69],[136,2,2,69,71],[139,1,1,71,72],[142,2,2,72,74],[143,1,1,74,75],[149,1,1,75,76],[151,2,2,76,78]]],[4,27,27,78,105,[[156,1,1,78,79],[159,2,2,79,81],[160,1,1,81,82],[162,2,2,82,84],[163,2,2,84,86],[165,1,1,86,87],[167,2,2,87,89],[168,3,3,89,92],[169,2,2,92,94],[170,2,2,94,96],[171,1,1,96,97],[175,3,3,97,100],[176,1,1,100,101],[180,1,1,101,102],[183,1,1,102,103],[184,1,1,103,104],[186,1,1,104,105]]],[5,7,7,105,112,[[194,2,2,105,107],[196,1,1,107,108],[200,1,1,108,109],[203,1,1,109,110],[209,2,2,110,112]]],[6,10,10,112,122,[[212,1,1,112,113],[215,1,1,113,114],[216,1,1,114,115],[218,1,1,115,116],[220,1,1,116,117],[221,1,1,117,118],[223,2,2,118,120],[229,1,1,120,121],[231,1,1,121,122]]],[8,19,18,122,140,[[236,2,2,122,124],[237,2,2,124,126],[241,1,1,126,127],[242,1,1,127,128],[245,1,1,128,129],[248,1,1,129,130],[250,1,1,130,131],[255,1,1,131,132],[256,1,1,132,133],[260,1,1,133,134],[261,1,1,134,135],[262,1,1,135,136],[263,3,2,136,138],[264,1,1,138,139],[265,1,1,139,140]]],[9,9,9,140,149,[[268,1,1,140,141],[272,1,1,141,142],[273,1,1,142,143],[278,1,1,143,144],[279,1,1,144,145],[280,1,1,145,146],[281,1,1,146,147],[286,1,1,147,148],[287,1,1,148,149]]],[10,18,17,149,166,[[293,2,2,149,151],[298,2,2,151,153],[299,1,1,153,154],[300,3,3,154,157],[303,2,2,157,159],[307,2,2,159,161],[308,3,2,161,163],[311,1,1,163,164],[312,2,2,164,166]]],[11,11,11,166,177,[[313,1,1,166,167],[314,1,1,167,168],[315,1,1,168,169],[316,1,1,169,170],[317,1,1,170,171],[318,1,1,171,172],[329,1,1,172,173],[331,1,1,173,174],[334,1,1,174,175],[335,1,1,175,176],[337,1,1,176,177]]],[12,7,7,177,184,[[339,1,1,177,178],[349,1,1,178,179],[353,1,1,179,180],[354,1,1,180,181],[360,1,1,181,182],[361,2,2,182,184]]],[13,10,10,184,194,[[372,2,2,184,186],[373,1,1,186,187],[374,1,1,187,188],[375,1,1,188,189],[379,1,1,189,190],[381,1,1,190,191],[384,1,1,191,192],[387,1,1,192,193],[401,1,1,193,194]]],[14,1,1,194,195,[[412,1,1,194,195]]],[15,6,6,195,201,[[414,1,1,195,196],[418,2,2,196,198],[425,3,3,198,201]]],[16,4,4,201,205,[[426,1,1,201,202],[427,1,1,202,203],[430,1,1,203,204],[434,1,1,204,205]]],[17,33,32,205,237,[[440,1,1,205,206],[442,4,4,206,210],[444,1,1,210,211],[445,1,1,211,212],[447,1,1,212,213],[450,3,3,213,216],[453,1,1,216,217],[454,1,1,217,218],[455,2,2,218,220],[459,2,2,220,222],[461,2,2,222,224],[463,1,1,224,225],[465,1,1,225,226],[467,4,4,226,230],[469,1,1,230,231],[471,1,1,231,232],[473,3,2,232,234],[476,1,1,234,235],[477,2,2,235,237]]],[18,23,23,237,260,[[491,1,1,237,238],[499,1,1,238,239],[500,1,1,239,240],[518,1,1,240,241],[527,1,1,241,242],[530,2,2,242,244],[554,1,1,244,245],[555,1,1,245,246],[558,1,1,246,247],[560,1,1,247,248],[561,1,1,248,249],[565,1,1,249,250],[568,1,1,250,251],[569,1,1,251,252],[578,1,1,252,253],[579,1,1,253,254],[580,1,1,254,255],[582,1,1,255,256],[584,2,2,256,258],[596,1,1,258,259],[620,1,1,259,260]]],[19,10,10,260,270,[[630,1,1,260,261],[637,1,1,261,262],[644,2,2,262,264],[645,1,1,264,265],[648,1,1,265,266],[651,1,1,266,267],[657,1,1,267,268],[658,2,2,268,270]]],[20,5,5,270,275,[[662,1,1,270,271],[664,2,2,271,273],[666,1,1,273,274],[667,1,1,274,275]]],[22,35,33,275,308,[[679,1,1,275,276],[687,2,2,276,278],[688,2,2,278,280],[691,1,1,280,281],[692,1,1,281,282],[693,1,1,282,283],[694,2,1,283,284],[701,1,1,284,285],[704,1,1,285,286],[705,1,1,286,287],[710,1,1,287,288],[711,1,1,288,289],[712,1,1,289,290],[715,1,1,290,291],[716,1,1,291,292],[721,2,2,292,294],[722,1,1,294,295],[725,3,3,295,298],[729,1,1,298,299],[730,1,1,299,300],[731,3,2,300,302],[738,3,3,302,305],[740,1,1,305,306],[743,2,2,306,308]]],[23,52,49,308,357,[[746,7,6,308,314],[747,2,2,314,316],[748,1,1,316,317],[749,1,1,317,318],[750,2,2,318,320],[751,1,1,320,321],[754,1,1,321,322],[755,2,2,322,324],[758,3,3,324,327],[760,2,2,327,329],[763,1,1,329,330],[766,3,3,330,333],[767,3,3,333,336],[769,1,1,336,337],[774,1,1,337,338],[775,3,2,338,340],[779,2,1,340,341],[784,1,1,341,342],[785,1,1,342,343],[786,2,2,343,345],[788,2,2,345,347],[789,1,1,347,348],[792,2,2,348,350],[793,3,3,350,353],[794,2,2,353,355],[795,1,1,355,356],[796,1,1,356,357]]],[24,7,7,357,364,[[797,2,2,357,359],[798,1,1,359,360],[800,4,4,360,364]]],[25,42,41,364,405,[[813,3,3,364,367],[814,2,2,367,369],[815,1,1,369,370],[816,1,1,370,371],[817,3,3,371,374],[820,2,2,374,376],[821,1,1,376,377],[822,3,3,377,380],[825,2,2,380,382],[827,2,2,382,384],[829,3,3,384,387],[830,2,2,387,389],[831,1,1,389,390],[835,3,3,390,393],[837,4,4,393,397],[838,1,1,397,398],[840,1,1,398,399],[844,1,1,399,400],[845,5,4,400,404],[846,1,1,404,405]]],[26,6,5,405,410,[[857,1,1,405,406],[859,5,4,406,410]]],[27,5,5,410,415,[[862,1,1,410,411],[863,2,2,411,413],[870,1,1,413,414],[874,1,1,414,415]]],[28,2,2,415,417,[[877,1,1,415,416],[878,1,1,416,417]]],[29,4,4,417,421,[[883,2,2,417,419],[885,1,1,419,420],[887,1,1,420,421]]],[32,2,2,421,423,[[897,2,2,421,423]]],[33,4,4,423,427,[[900,3,3,423,426],[901,1,1,426,427]]],[34,2,2,427,429,[[903,1,1,427,428],[905,1,1,428,429]]],[35,2,2,429,431,[[908,2,2,429,431]]],[37,10,10,431,441,[[911,1,1,431,432],[918,1,1,432,433],[919,1,1,433,434],[921,1,1,434,435],[923,2,2,435,437],[924,4,4,437,441]]]],[192,220,363,956,1115,1140,1141,1145,1239,1263,1283,1286,1347,1359,1598,1639,1650,1768,1770,1791,1806,1832,1835,1870,1874,1902,1942,1951,1965,2054,2085,2099,2152,2176,2391,2394,2477,2493,2499,2510,2513,2534,2841,3084,3230,3242,3296,3316,3332,3348,3433,3525,3561,3596,3657,3696,3807,3811,3826,3828,3829,3958,3964,3965,4234,4262,4280,4281,4289,4313,4316,4439,4522,4551,4557,4774,4876,4877,5019,5113,5135,5139,5195,5202,5225,5233,5283,5323,5338,5345,5346,5350,5377,5380,5385,5386,5426,5514,5517,5522,5526,5679,5730,5778,5845,6022,6033,6078,6191,6278,6469,6473,6547,6642,6658,6747,6824,6868,6889,6905,7054,7114,7223,7230,7249,7264,7338,7365,7445,7504,7595,7764,7778,7892,7926,7934,7957,7962,7970,7990,8077,8180,8190,8292,8329,8381,8415,8564,8597,8818,8843,9001,9020,9073,9084,9089,9091,9193,9201,9324,9334,9364,9366,9455,9497,9498,9550,9563,9585,9644,9672,9697,9987,10079,10152,10190,10225,10340,10737,10841,10872,11005,11017,11043,11287,11308,11337,11355,11368,11462,11509,11558,11643,11984,12258,12324,12402,12409,12690,12692,12697,12721,12738,12791,12836,12970,13015,13016,13017,13018,13076,13104,13152,13206,13222,13231,13293,13313,13335,13347,13456,13458,13469,13470,13511,13570,13631,13643,13644,13647,13715,13752,13804,13819,13904,13924,13937,14084,14210,14239,14550,14677,14723,14724,15100,15177,15226,15245,15270,15313,15405,15426,15516,15548,15565,15620,15703,15739,15901,16295,16485,16678,16893,16894,16903,16994,17099,17271,17291,17295,17394,17420,17423,17463,17490,17667,17846,17848,17865,17870,17924,17936,17966,17979,18089,18151,18162,18264,18287,18319,18371,18401,18515,18529,18545,18600,18604,18605,18695,18697,18713,18720,18839,18840,18841,18858,18916,18917,18971,18976,18978,18990,18995,18996,19005,19018,19049,19065,19099,19112,19151,19215,19245,19249,19296,19297,19298,19350,19356,19413,19464,19466,19484,19488,19491,19520,19561,19675,19720,19725,19829,19956,19961,19989,19993,20027,20032,20043,20088,20113,20145,20160,20163,20205,20206,20229,20282,20313,20316,20341,20426,20435,20436,20442,20703,20704,20705,20729,20731,20742,20759,20796,20803,20804,20890,20895,20934,20957,20971,20976,21062,21073,21113,21114,21160,21166,21181,21199,21201,21217,21335,21341,21342,21371,21373,21388,21389,21419,21458,21579,21601,21616,21624,21627,21638,21968,22018,22023,22031,22032,22100,22121,22122,22223,22270,22330,22360,22425,22443,22478,22510,22645,22646,22696,22698,22699,22712,22745,22785,22825,22831,22899,22986,23007,23034,23061,23064,23079,23085,23086,23089]]],["none",[69,68,[[1,6,6,0,6,[[58,1,1,0,1],[60,1,1,1,2],[65,2,2,2,4],[72,1,1,4,5],[83,1,1,5,6]]],[2,2,2,6,8,[[110,1,1,6,7],[111,1,1,7,8]]],[3,2,2,8,10,[[123,1,1,8,9],[125,1,1,9,10]]],[4,2,2,10,12,[[154,1,1,10,11],[157,1,1,11,12]]],[5,11,11,12,23,[[195,1,1,12,13],[196,6,6,13,19],[197,2,2,19,21],[199,1,1,21,22],[200,1,1,22,23]]],[10,3,3,23,26,[[293,1,1,23,24],[302,1,1,24,25],[311,1,1,25,26]]],[11,3,3,26,29,[[329,1,1,26,27],[330,1,1,27,28],[336,1,1,28,29]]],[12,1,1,29,30,[[360,1,1,29,30]]],[13,4,4,30,34,[[367,1,1,30,31],[375,1,1,31,32],[376,1,1,32,33],[389,1,1,33,34]]],[14,1,1,34,35,[[410,1,1,34,35]]],[17,3,3,35,38,[[464,1,1,35,36],[470,2,2,36,38]]],[18,5,5,38,43,[[499,1,1,38,39],[514,1,1,39,40],[546,1,1,40,41],[550,1,1,41,42],[558,1,1,42,43]]],[19,2,2,43,45,[[628,2,2,43,45]]],[22,3,3,45,48,[[683,1,1,45,46],[688,1,1,46,47],[722,1,1,47,48]]],[23,9,8,48,56,[[748,1,1,48,49],[779,1,1,49,50],[780,1,1,50,51],[786,1,1,51,52],[788,2,1,52,53],[792,1,1,53,54],[794,2,2,54,56]]],[24,1,1,56,57,[[798,1,1,56,57]]],[25,6,6,57,63,[[808,1,1,57,58],[817,1,1,58,59],[819,1,1,59,60],[823,1,1,60,61],[832,1,1,61,62],[840,1,1,62,63]]],[26,2,2,63,65,[[850,1,1,63,64],[857,1,1,64,65]]],[27,1,1,65,66,[[873,1,1,65,66]]],[32,2,2,66,68,[[894,1,1,66,67],[895,1,1,67,68]]]],[1766,1812,1973,1974,2159,2516,3346,3399,3859,3977,4972,5060,6060,6085,6092,6094,6101,6103,6104,6120,6129,6168,6190,8828,9171,9476,10001,10029,10216,11000,11206,11375,11411,11675,12216,13544,13730,13732,14233,14481,14955,15045,15228,16425,16430,17766,17864,18552,19049,19837,19872,19992,20024,20113,20169,20175,20354,20588,20796,20856,21006,21244,21476,21756,21968,22260,22600,22619]]],["nor",[249,218,[[1,8,7,0,7,[[53,1,1,0,1],[60,1,1,1,2],[69,1,1,2,3],[71,2,2,3,5],[72,2,1,5,6],[83,1,1,6,7]]],[2,19,19,7,26,[[101,1,1,7,8],[106,1,1,8,9],[108,6,6,9,15],[110,5,5,15,20],[111,1,1,20,21],[114,4,4,21,25],[116,1,1,25,26]]],[3,6,4,26,30,[[121,1,1,26,27],[122,1,1,27,28],[125,1,1,28,29],[127,3,1,29,30]]],[4,32,29,30,59,[[153,1,1,30,31],[156,4,2,31,33],[157,1,1,33,34],[159,2,2,34,36],[161,3,3,36,39],[162,1,1,39,40],[164,1,1,40,41],[165,1,1,41,42],[166,2,2,42,44],[167,2,2,44,46],[169,1,1,46,47],[170,1,1,47,48],[173,1,1,48,49],[174,1,1,49,50],[175,1,1,50,51],[176,1,1,51,52],[178,1,1,52,53],[180,2,2,53,55],[181,2,1,55,56],[183,1,1,56,57],[185,1,1,57,58],[186,1,1,58,59]]],[5,7,6,59,65,[[187,1,1,59,60],[192,1,1,60,61],[208,2,2,61,63],[209,2,1,63,64],[210,1,1,64,65]]],[6,2,2,65,67,[[223,1,1,65,66],[229,1,1,66,67]]],[8,5,5,67,72,[[247,2,2,67,69],[250,1,1,69,70],[263,1,1,70,71],[265,1,1,71,72]]],[9,3,2,72,74,[[269,1,1,72,73],[285,2,1,73,74]]],[10,13,11,74,85,[[293,2,2,74,76],[298,1,1,76,77],[300,1,1,77,78],[302,1,1,78,79],[303,7,5,79,84],[310,1,1,84,85]]],[11,10,6,85,91,[[316,1,1,85,86],[318,1,1,86,87],[326,1,1,87,88],[329,3,1,88,89],[330,1,1,89,90],[331,3,1,90,91]]],[12,1,1,91,92,[[365,1,1,91,92]]],[13,3,3,92,95,[[371,1,1,92,93],[377,1,1,93,94],[395,1,1,94,95]]],[14,2,2,95,97,[[411,1,1,95,96],[412,1,1,96,97]]],[15,4,3,97,100,[[421,3,2,97,99],[422,1,1,99,100]]],[16,3,3,100,103,[[428,1,1,100,101],[430,1,1,101,102],[434,1,1,102,103]]],[17,7,7,103,110,[[436,1,1,103,104],[442,1,1,104,105],[449,1,1,105,106],[453,1,1,106,107],[459,1,1,107,108],[463,1,1,108,109],[469,1,1,109,110]]],[18,17,15,110,125,[[478,2,1,110,111],[492,3,2,111,113],[499,1,1,113,114],[501,1,1,114,115],[514,1,1,115,116],[526,1,1,116,117],[536,1,1,117,118],[552,1,1,118,119],[566,3,3,119,122],[580,1,1,122,123],[598,1,1,123,124],[608,1,1,124,125]]],[19,1,1,125,126,[[632,1,1,125,126]]],[20,5,3,126,129,[[659,1,1,126,127],[664,1,1,127,128],[667,3,1,128,129]]],[22,37,32,129,161,[[683,3,2,129,131],[686,1,1,131,132],[689,1,1,132,133],[700,1,1,133,134],[701,2,2,134,136],[706,1,1,136,137],[708,2,1,137,138],[709,1,1,138,139],[710,1,1,139,140],[715,3,1,140,141],[720,3,2,141,143],[721,1,1,143,144],[722,3,3,144,147],[723,2,2,147,149],[724,1,1,149,150],[726,2,2,150,152],[727,1,1,152,153],[729,1,1,153,154],[730,1,1,154,155],[731,1,1,155,156],[735,1,1,156,157],[742,1,1,157,158],[743,3,3,158,161]]],[23,33,28,161,189,[[748,1,1,161,162],[750,1,1,162,163],[751,4,4,163,167],[752,1,1,167,168],[755,1,1,168,169],[757,2,1,169,170],[759,1,1,170,171],[760,2,1,171,172],[763,1,1,172,173],[764,1,1,173,174],[765,1,1,174,175],[767,2,2,175,177],[769,2,2,177,179],[775,1,1,179,180],[779,4,2,180,182],[780,1,1,182,183],[786,2,1,183,184],[788,3,3,184,187],[793,2,2,187,189]]],[25,16,15,189,204,[[804,1,1,189,190],[808,2,1,190,191],[814,1,1,191,192],[817,1,1,192,193],[823,1,1,193,194],[824,1,1,194,195],[825,3,3,195,198],[830,2,2,198,200],[832,1,1,200,201],[833,1,1,201,202],[845,1,1,202,203],[849,1,1,203,204]]],[26,2,2,204,206,[[860,2,2,204,206]]],[27,3,3,206,209,[[862,1,1,206,207],[866,1,1,207,208],[868,1,1,208,209]]],[29,2,2,209,211,[[883,1,1,209,210],[886,1,1,210,211]]],[32,1,1,211,212,[[897,1,1,211,212]]],[35,2,2,212,214,[[906,1,1,212,213],[908,1,1,213,214]]],[37,5,4,214,218,[[911,1,1,214,215],[914,1,1,215,216],[921,2,1,216,217],[924,1,1,217,218]]]],[1602,1812,2056,2134,2141,2168,2524,3048,3251,3285,3295,3296,3299,3307,3309,3350,3355,3356,3357,3368,3391,3473,3480,3489,3506,3580,3807,3826,3977,4043,4937,5032,5035,5062,5113,5114,5166,5175,5180,5203,5272,5280,5291,5298,5326,5338,5380,5406,5451,5500,5517,5542,5580,5650,5661,5702,5734,5819,5846,5856,5959,6452,6454,6467,6488,6907,7054,7464,7481,7589,7960,7990,8115,8535,8824,8827,8990,9091,9175,9192,9193,9200,9201,9212,9416,9626,9684,9902,10018,10036,10093,11163,11274,11418,11798,12249,12258,12542,12545,12579,12749,12788,12862,12891,13027,13193,13295,13449,13512,13702,13940,14090,14092,14228,14245,14483,14655,14793,15077,15348,15359,15360,15559,16085,16149,16530,17323,17422,17486,17745,17766,17819,17893,18054,18081,18095,18192,18222,18254,18264,18385,18482,18484,18528,18551,18552,18553,18574,18578,18593,18615,18633,18646,18687,18708,18713,18776,18889,18914,18920,18922,19038,19109,19141,19143,19145,19147,19155,19234,19280,19325,19342,19412,19431,19447,19488,19516,19538,19567,19731,19830,19838,19866,19989,20015,20020,20033,20158,20160,20520,20588,20731,20766,21000,21034,21072,21078,21079,21188,21194,21238,21261,21619,21716,22040,22056,22104,22165,22188,22428,22492,22640,22793,22833,22882,22928,23044,23075]]],["not",[3281,2895,[[0,156,148,0,148,[[1,5,5,0,5],[2,4,4,5,9],[3,4,3,9,12],[5,1,1,12,13],[6,1,1,13,14],[7,3,3,14,17],[8,2,2,17,19],[10,1,1,19,20],[11,1,1,20,21],[12,3,2,21,23],[14,4,4,23,27],[15,1,1,27,28],[16,3,3,28,31],[17,9,9,31,40],[18,4,4,40,44],[19,5,5,44,49],[20,2,2,49,51],[21,2,2,51,53],[23,10,10,53,63],[25,2,2,63,65],[26,5,5,65,70],[27,4,4,70,74],[28,2,2,74,76],[29,3,3,76,79],[30,13,10,79,89],[31,3,3,89,92],[33,4,4,92,96],[34,2,2,96,98],[35,1,1,98,99],[36,3,3,99,102],[37,6,6,102,108],[38,3,3,108,111],[39,2,2,111,113],[40,3,3,113,116],[41,10,9,116,125],[42,6,5,125,130],[43,6,6,130,136],[44,4,4,136,140],[46,6,5,140,145],[47,2,2,145,147],[48,1,1,147,148]]],[1,150,140,148,288,[[50,2,2,148,150],[51,1,1,150,151],[52,3,3,151,154],[53,8,7,154,161],[54,3,3,161,164],[55,3,3,164,167],[56,5,5,167,172],[57,7,6,172,178],[58,10,9,178,187],[59,7,6,187,193],[60,3,3,193,196],[61,5,5,196,201],[62,2,2,201,203],[63,2,2,203,205],[64,1,1,205,206],[65,5,5,206,211],[67,2,2,211,213],[68,2,1,213,214],[69,14,12,214,226],[70,10,10,226,236],[71,11,10,236,246],[72,11,11,246,257],[73,2,2,257,259],[74,1,1,259,260],[77,4,4,260,264],[78,2,2,264,266],[79,6,5,266,271],[81,2,2,271,273],[82,6,6,273,279],[83,5,5,279,284],[88,2,2,284,286],[89,3,2,286,288]]],[2,165,150,288,438,[[90,1,1,288,289],[91,1,1,289,290],[93,4,4,290,294],[94,6,6,294,300],[95,3,3,300,303],[96,3,3,303,306],[97,2,2,306,308],[99,4,4,308,312],[100,11,10,312,322],[101,1,1,322,323],[102,13,12,323,335],[103,3,3,335,338],[104,2,2,338,340],[105,2,2,340,342],[106,3,3,342,345],[107,21,17,345,362],[108,22,18,362,380],[109,3,3,380,383],[110,10,10,383,393],[111,13,12,393,405],[112,2,2,405,407],[114,15,14,407,421],[115,12,11,421,432],[116,8,6,432,438]]],[3,111,97,438,535,[[117,2,2,438,440],[118,1,1,440,441],[120,3,3,441,444],[121,3,3,444,447],[122,1,1,447,448],[125,5,4,448,452],[126,2,2,452,454],[127,5,5,454,459],[128,5,5,459,464],[130,6,6,464,470],[131,3,3,470,473],[132,8,6,473,479],[133,1,1,479,480],[134,3,3,480,483],[135,4,3,483,486],[136,7,5,486,491],[137,3,2,491,493],[138,6,4,493,497],[139,11,8,497,505],[140,4,3,505,508],[142,4,4,508,512],[143,2,2,512,514],[145,1,1,514,515],[146,4,4,515,519],[147,4,4,519,523],[148,5,5,523,528],[149,1,1,528,529],[151,6,5,529,534],[152,1,1,534,535]]],[4,270,232,535,767,[[153,7,6,535,541],[154,6,6,541,547],[155,6,5,547,552],[156,4,4,552,556],[157,7,6,556,562],[158,6,4,562,566],[159,8,8,566,574],[160,5,4,574,578],[161,1,1,578,579],[162,2,2,579,581],[163,7,4,581,585],[164,10,10,585,595],[165,6,6,595,601],[166,12,9,601,610],[167,10,9,610,619],[168,5,4,619,623],[169,7,6,623,629],[170,11,8,629,637],[171,7,7,637,644],[172,8,7,644,651],[173,10,7,651,658],[174,19,18,658,676],[175,20,16,676,692],[176,11,10,692,702],[177,13,12,702,714],[178,2,2,714,716],[179,2,2,716,718],[180,23,20,718,738],[181,8,6,738,744],[182,4,4,744,748],[183,7,6,748,754],[184,13,10,754,764],[185,1,1,764,765],[186,2,2,765,767]]],[5,59,51,767,818,[[187,5,4,767,771],[188,3,3,771,774],[189,1,1,774,775],[191,3,3,775,778],[192,1,1,778,779],[193,2,2,779,781],[194,5,4,781,785],[195,4,4,785,789],[196,3,2,789,791],[197,2,2,791,793],[199,1,1,793,794],[201,1,1,794,795],[203,4,4,795,799],[204,1,1,799,800],[206,3,2,800,802],[207,2,2,802,804],[208,10,9,804,813],[209,2,1,813,814],[210,6,4,814,818]]],[6,93,84,818,902,[[211,5,5,818,823],[212,9,8,823,831],[213,4,4,831,835],[214,6,5,835,840],[215,2,2,840,842],[216,4,4,842,846],[217,2,1,846,847],[218,4,4,847,851],[219,2,2,851,853],[220,2,2,853,855],[221,10,9,855,864],[222,3,3,864,867],[223,7,6,867,873],[224,9,7,873,880],[225,3,3,880,883],[226,5,5,883,888],[228,1,1,888,889],[229,5,4,889,893],[230,4,4,893,897],[231,6,5,897,902]]],[7,15,15,902,917,[[233,8,8,902,910],[234,4,4,910,914],[235,3,3,914,917]]],[8,138,121,917,1038,[[236,5,4,917,921],[237,4,4,921,925],[238,4,4,925,929],[239,3,3,929,932],[240,3,3,932,935],[241,4,3,935,938],[243,4,4,938,942],[244,5,4,942,946],[245,3,3,946,949],[246,2,2,949,951],[247,6,6,951,957],[248,6,5,957,962],[249,9,9,962,971],[250,8,7,971,978],[251,3,3,978,981],[252,6,5,981,986],[253,1,1,986,987],[254,1,1,987,988],[255,15,12,988,1000],[256,2,1,1000,1001],[257,3,2,1001,1003],[258,3,3,1003,1006],[259,7,6,1006,1012],[260,5,5,1012,1017],[261,8,6,1017,1023],[263,3,3,1023,1026],[264,9,7,1026,1033],[265,5,4,1033,1037],[266,1,1,1037,1038]]],[9,95,87,1038,1125,[[267,5,4,1038,1042],[268,3,3,1042,1045],[269,7,7,1045,1052],[270,1,1,1052,1053],[271,3,3,1053,1056],[272,1,1,1056,1057],[273,3,3,1057,1060],[276,1,1,1060,1061],[277,7,6,1061,1067],[278,4,4,1067,1071],[279,8,8,1071,1079],[280,7,5,1079,1084],[281,3,3,1084,1087],[282,2,2,1087,1089],[283,10,9,1089,1098],[284,7,6,1098,1104],[285,7,6,1104,1110],[286,3,3,1110,1113],[287,1,1,1113,1114],[288,6,6,1114,1120],[289,6,5,1120,1125]]],[10,115,108,1125,1233,[[291,12,11,1125,1136],[292,9,9,1136,1145],[293,5,4,1145,1149],[295,1,1,1149,1150],[296,1,1,1150,1151],[297,1,1,1151,1152],[298,8,8,1152,1160],[299,5,5,1160,1165],[300,5,3,1165,1168],[301,9,9,1168,1177],[302,4,4,1177,1181],[303,8,8,1181,1189],[304,4,4,1189,1193],[305,6,6,1193,1199],[306,5,5,1199,1204],[307,2,2,1204,1206],[308,8,7,1206,1213],[309,6,4,1213,1217],[310,4,4,1217,1221],[311,3,3,1221,1224],[312,9,9,1224,1233]]],[11,126,118,1233,1351,[[313,4,4,1233,1237],[314,5,5,1237,1242],[315,4,4,1242,1246],[316,8,6,1246,1252],[317,5,4,1252,1256],[318,5,5,1256,1261],[319,3,3,1261,1264],[320,2,2,1264,1266],[321,2,2,1266,1268],[322,8,7,1268,1275],[323,1,1,1275,1276],[324,6,6,1276,1282],[325,6,6,1282,1288],[326,10,9,1288,1297],[327,11,11,1297,1308],[328,3,3,1308,1311],[329,10,9,1311,1320],[330,11,9,1320,1329],[331,4,4,1329,1333],[332,5,5,1333,1338],[333,4,4,1338,1342],[334,3,3,1342,1345],[335,3,3,1345,1348],[336,3,3,1348,1351]]],[12,33,31,1351,1382,[[347,3,3,1351,1354],[348,5,5,1354,1359],[349,2,2,1359,1361],[350,1,1,1361,1362],[352,2,1,1362,1363],[354,4,4,1363,1367],[356,1,1,1367,1368],[358,6,5,1368,1373],[359,2,2,1373,1375],[363,1,1,1375,1376],[364,2,2,1376,1378],[365,2,2,1378,1380],[366,2,2,1380,1382]]],[13,106,95,1382,1477,[[367,1,1,1382,1383],[370,1,1,1383,1384],[371,3,3,1384,1387],[372,4,4,1387,1391],[373,2,2,1391,1393],[374,4,4,1393,1397],[375,5,4,1397,1401],[376,2,2,1401,1403],[377,1,1,1403,1404],[378,5,4,1404,1408],[379,5,5,1408,1413],[381,2,2,1413,1415],[382,2,2,1415,1417],[383,2,2,1417,1419],[384,5,4,1419,1423],[385,3,2,1423,1425],[386,10,8,1425,1433],[387,3,3,1433,1436],[388,1,1,1436,1437],[389,1,1,1437,1438],[390,5,5,1438,1443],[391,7,6,1443,1449],[392,1,1,1449,1450],[393,1,1,1450,1451],[394,6,6,1451,1457],[395,2,2,1457,1459],[396,9,7,1459,1466],[398,6,5,1466,1471],[399,1,1,1471,1472],[400,3,3,1472,1475],[401,3,2,1475,1477]]],[14,8,8,1477,1485,[[404,3,3,1477,1480],[405,1,1,1480,1481],[411,3,3,1481,1484],[412,1,1,1484,1485]]],[15,41,38,1485,1523,[[413,1,1,1485,1486],[414,3,3,1486,1489],[415,1,1,1489,1490],[416,2,2,1490,1492],[417,5,4,1492,1496],[418,4,4,1496,1500],[419,4,4,1500,1504],[420,1,1,1504,1505],[421,11,9,1505,1514],[422,3,3,1514,1517],[425,6,6,1517,1523]]],[16,16,14,1523,1537,[[426,4,4,1523,1527],[427,2,1,1527,1528],[428,2,2,1528,1530],[429,4,3,1530,1533],[431,1,1,1533,1534],[434,2,2,1534,1536],[435,1,1,1536,1537]]],[17,186,171,1537,1708,[[436,2,2,1537,1539],[437,3,2,1539,1541],[438,4,4,1541,1545],[439,3,3,1545,1548],[441,2,1,1548,1549],[442,5,5,1549,1554],[443,6,5,1554,1559],[444,14,12,1559,1571],[445,7,7,1571,1578],[446,3,3,1578,1581],[447,3,3,1581,1584],[448,4,4,1584,1588],[449,8,6,1588,1594],[450,9,8,1594,1602],[451,3,3,1602,1605],[452,2,2,1605,1607],[453,2,2,1607,1609],[454,4,4,1609,1613],[455,8,6,1613,1619],[456,6,5,1619,1624],[457,6,6,1624,1630],[458,2,2,1630,1632],[459,9,7,1632,1639],[460,2,2,1639,1641],[462,8,7,1641,1648],[463,5,5,1648,1653],[464,2,2,1653,1655],[465,5,5,1655,1660],[466,8,8,1660,1668],[467,5,5,1668,1673],[468,6,6,1673,1679],[469,6,6,1679,1685],[470,3,3,1685,1688],[471,7,7,1688,1695],[472,4,4,1695,1699],[474,3,3,1699,1702],[475,2,2,1702,1704],[476,1,1,1704,1705],[477,4,3,1705,1708]]],[18,227,208,1708,1916,[[478,4,4,1708,1712],[480,1,1,1712,1713],[482,2,2,1713,1715],[484,1,1,1715,1716],[486,3,3,1716,1719],[487,1,1,1719,1720],[491,1,1,1720,1721],[492,2,2,1721,1723],[493,1,1,1723,1724],[494,1,1,1724,1725],[495,6,6,1725,1731],[499,4,3,1731,1734],[500,1,1,1734,1735],[501,1,1,1735,1736],[503,3,3,1736,1739],[504,1,1,1739,1740],[505,2,1,1740,1741],[507,2,2,1741,1743],[508,1,1,1743,1744],[509,3,3,1744,1747],[510,1,1,1747,1748],[511,2,2,1748,1750],[512,4,3,1750,1753],[513,3,2,1753,1755],[514,6,6,1755,1761],[515,4,3,1761,1764],[516,2,2,1764,1766],[517,8,6,1766,1772],[518,1,1,1772,1773],[521,6,6,1773,1779],[523,1,1,1779,1780],[526,3,3,1780,1783],[527,2,2,1783,1785],[528,3,2,1785,1787],[529,1,1,1787,1788],[530,1,1,1788,1789],[531,1,1,1789,1790],[532,4,4,1790,1794],[533,4,4,1794,1798],[535,1,1,1798,1799],[536,2,2,1799,1801],[537,2,1,1801,1802],[539,2,2,1802,1804],[541,1,1,1804,1805],[543,3,3,1805,1808],[546,2,2,1808,1810],[548,1,1,1810,1811],[551,1,1,1811,1812],[554,2,2,1812,1814],[555,16,13,1814,1827],[556,1,1,1827,1828],[557,1,1,1828,1829],[558,2,2,1829,1831],[559,1,1,1831,1832],[562,1,1,1832,1833],[563,1,1,1833,1834],[566,7,7,1834,1841],[568,2,2,1841,1843],[569,1,1,1843,1844],[571,5,4,1844,1848],[572,1,1,1848,1849],[577,1,1,1849,1850],[578,5,4,1850,1854],[579,1,1,1854,1855],[580,2,2,1855,1857],[582,1,1,1857,1858],[583,6,6,1858,1864],[584,1,1,1864,1865],[585,2,1,1865,1866],[586,2,2,1866,1868],[587,1,1,1868,1869],[589,3,3,1869,1872],[592,8,5,1872,1877],[595,3,3,1877,1880],[596,21,21,1880,1901],[598,1,1,1901,1902],[602,1,1,1902,1903],[604,1,1,1903,1904],[606,1,1,1904,1905],[608,1,1,1905,1906],[609,1,1,1906,1907],[612,3,2,1907,1909],[614,1,1,1909,1910],[616,3,3,1910,1913],[624,2,2,1913,1915],[625,1,1,1915,1916]]],[19,99,94,1916,2010,[[628,3,2,1916,1918],[630,3,3,1918,1921],[631,4,3,1921,1924],[632,2,2,1924,1926],[633,7,7,1926,1933],[634,2,2,1933,1935],[635,4,4,1935,1939],[636,1,1,1939,1940],[637,3,3,1940,1943],[638,2,2,1943,1945],[639,2,2,1945,1947],[640,2,2,1947,1949],[641,3,3,1949,1952],[642,2,2,1952,1954],[643,3,3,1954,1957],[644,4,4,1957,1961],[645,1,1,1961,1962],[646,6,5,1962,1967],[647,5,5,1967,1972],[648,3,3,1972,1975],[649,3,3,1975,1978],[650,2,2,1978,1980],[651,4,3,1980,1983],[652,1,1,1983,1984],[653,4,4,1984,1988],[654,4,4,1988,1992],[655,5,5,1992,1997],[656,3,3,1997,2000],[657,8,7,2000,2007],[658,3,3,2007,2010]]],[20,31,26,2010,2036,[[659,1,1,2010,2011],[660,2,2,2011,2013],[662,4,3,2013,2016],[663,4,3,2016,2019],[664,4,4,2019,2023],[665,4,3,2023,2026],[666,3,2,2026,2028],[667,1,1,2028,2029],[668,3,3,2029,2032],[669,3,2,2032,2034],[670,2,2,2034,2036]]],[21,7,7,2036,2043,[[671,2,2,2036,2038],[673,3,3,2038,2041],[675,1,1,2041,2042],[678,1,1,2042,2043]]],[22,280,219,2043,2262,[[679,5,4,2043,2047],[680,1,1,2047,2048],[681,3,2,2048,2050],[683,4,4,2050,2054],[684,1,1,2054,2055],[685,7,6,2055,2061],[686,4,4,2061,2065],[687,7,7,2065,2072],[688,8,5,2072,2077],[689,4,3,2077,2080],[690,1,1,2080,2081],[691,6,4,2081,2085],[692,2,2,2085,2087],[694,2,2,2087,2089],[695,2,2,2089,2091],[700,2,2,2091,2093],[701,3,3,2093,2096],[702,2,2,2096,2098],[705,2,2,2098,2100],[706,7,7,2100,2107],[707,5,4,2107,2111],[708,12,9,2111,2120],[709,7,5,2120,2125],[710,1,1,2125,2126],[711,2,2,2126,2128],[712,1,1,2128,2129],[713,3,2,2129,2131],[714,6,5,2131,2136],[715,4,4,2136,2140],[716,2,2,2140,2142],[717,2,2,2142,2144],[718,12,5,2144,2149],[719,5,5,2149,2154],[720,14,8,2154,2162],[721,7,5,2162,2167],[722,4,4,2167,2171],[723,10,9,2171,2180],[724,6,4,2180,2184],[725,7,5,2184,2189],[726,13,9,2189,2198],[727,3,3,2198,2201],[728,4,3,2201,2204],[729,5,5,2204,2209],[730,3,2,2209,2211],[731,3,2,2211,2213],[732,9,5,2213,2218],[733,8,6,2218,2224],[734,1,1,2224,2225],[735,8,5,2225,2230],[736,6,6,2230,2236],[737,5,4,2236,2240],[738,2,2,2240,2242],[740,3,2,2242,2244],[741,4,4,2244,2248],[742,1,1,2248,2249],[743,14,9,2249,2258],[744,5,4,2258,2262]]],[23,318,266,2262,2528,[[745,1,1,2262,2263],[746,15,12,2263,2275],[747,11,10,2275,2285],[748,6,6,2285,2291],[749,20,12,2291,2303],[750,7,7,2303,2310],[751,14,11,2310,2321],[752,7,6,2321,2327],[753,6,4,2327,2331],[754,11,8,2331,2339],[755,8,5,2339,2344],[756,3,3,2344,2347],[757,7,7,2347,2354],[758,8,6,2354,2360],[759,5,5,2360,2365],[760,8,7,2365,2372],[761,11,7,2372,2379],[762,3,3,2379,2382],[763,1,1,2382,2383],[764,7,5,2383,2388],[765,2,2,2388,2390],[766,14,12,2390,2402],[767,14,11,2402,2413],[768,3,2,2413,2415],[769,6,6,2415,2421],[770,3,3,2421,2424],[771,7,6,2424,2430],[772,1,1,2430,2431],[773,9,8,2431,2439],[774,6,4,2439,2443],[775,3,3,2443,2446],[776,6,6,2446,2452],[777,4,3,2452,2455],[778,5,5,2455,2460],[779,7,6,2460,2466],[780,3,3,2466,2469],[781,4,4,2469,2473],[782,10,8,2473,2481],[783,3,3,2481,2484],[784,4,4,2484,2488],[785,1,1,2488,2489],[786,5,4,2489,2493],[787,4,3,2493,2496],[788,6,6,2496,2502],[790,4,3,2502,2505],[791,1,1,2505,2506],[792,5,3,2506,2509],[793,5,5,2509,2514],[794,6,6,2514,2520],[795,8,8,2520,2528]]],[24,26,24,2528,2552,[[797,2,2,2528,2530],[798,6,6,2530,2536],[799,11,10,2536,2546],[800,6,5,2546,2551],[801,1,1,2551,2552]]],[25,172,147,2552,2699,[[802,3,3,2552,2555],[804,10,9,2555,2564],[805,3,2,2564,2566],[806,4,3,2566,2569],[807,1,1,2569,2570],[808,7,5,2570,2575],[809,2,1,2575,2576],[810,1,1,2576,2577],[811,3,2,2577,2579],[812,3,3,2579,2582],[813,4,3,2582,2585],[814,9,7,2585,2592],[815,1,1,2592,2593],[817,12,10,2593,2603],[818,4,4,2603,2607],[819,24,20,2607,2627],[821,14,12,2627,2639],[822,2,2,2639,2641],[823,2,2,2641,2643],[824,2,2,2643,2645],[825,11,9,2645,2654],[826,1,1,2654,2655],[827,3,3,2655,2658],[829,1,1,2658,2659],[830,1,1,2659,2660],[831,1,1,2660,2661],[832,2,1,2661,2662],[833,3,3,2662,2665],[834,9,7,2665,2672],[835,5,5,2672,2677],[836,2,2,2677,2679],[837,2,2,2679,2681],[838,1,1,2681,2682],[839,1,1,2682,2683],[840,1,1,2683,2684],[842,1,1,2684,2685],[843,1,1,2685,2686],[845,6,6,2686,2692],[847,4,3,2692,2695],[848,4,3,2695,2698],[849,1,1,2698,2699]]],[26,21,20,2699,2719,[[850,2,1,2699,2700],[857,2,2,2700,2702],[858,3,3,2702,2705],[860,13,13,2705,2718],[861,1,1,2718,2719]]],[27,48,34,2719,2753,[[862,4,3,2719,2722],[863,8,6,2722,2728],[864,2,1,2728,2729],[865,4,2,2729,2731],[866,5,4,2731,2735],[867,1,1,2735,2736],[868,5,4,2736,2740],[869,4,3,2740,2743],[870,5,4,2743,2747],[871,1,1,2747,2748],[872,6,3,2748,2751],[874,1,1,2751,2752],[875,2,1,2752,2753]]],[28,5,5,2753,2758,[[876,1,1,2753,2754],[877,3,3,2754,2757],[878,1,1,2757,2758]]],[29,54,45,2758,2803,[[879,6,5,2758,2763],[880,7,6,2763,2769],[881,4,3,2769,2772],[882,7,6,2772,2778],[883,9,7,2778,2785],[884,3,3,2785,2788],[885,6,5,2788,2793],[886,4,4,2793,2797],[887,8,6,2797,2803]]],[30,5,4,2803,2807,[[888,5,4,2803,2807]]],[31,7,7,2807,2814,[[889,2,2,2807,2809],[891,2,2,2809,2811],[892,3,3,2811,2814]]],[32,21,16,2814,2830,[[893,2,1,2814,2815],[894,5,4,2815,2819],[895,4,4,2819,2823],[896,2,2,2823,2825],[897,2,2,2825,2827],[898,5,2,2827,2829],[899,1,1,2829,2830]]],[33,3,3,2830,2833,[[900,1,1,2830,2831],[902,2,2,2831,2833]]],[34,15,11,2833,2844,[[903,8,6,2833,2839],[904,6,4,2839,2843],[905,1,1,2843,2844]]],[35,14,10,2844,2854,[[906,4,3,2844,2847],[907,1,1,2847,2848],[908,9,6,2848,2854]]],[36,3,3,2854,2857,[[909,1,1,2854,2855],[910,2,2,2855,2857]]],[37,28,27,2857,2884,[[911,3,3,2857,2860],[913,1,1,2860,2861],[914,2,2,2861,2863],[917,5,4,2863,2867],[918,2,2,2867,2869],[919,1,1,2869,2870],[920,2,2,2870,2872],[921,5,5,2872,2877],[922,1,1,2877,2878],[923,1,1,2878,2879],[924,5,5,2879,2884]]],[38,14,11,2884,2895,[[925,1,1,2884,2885],[926,6,4,2885,2889],[927,7,6,2889,2895]]]],[35,47,48,50,55,56,58,59,72,86,88,91,140,161,195,204,205,209,228,273,316,324,327,364,370,373,376,391,409,411,412,439,445,448,449,452,453,454,455,456,465,477,490,492,499,500,501,504,507,523,539,559,563,594,596,599,612,618,624,628,630,632,640,714,721,729,739,748,750,763,774,779,788,789,820,821,861,870,872,880,888,900,901,905,906,907,911,912,925,953,954,960,987,997,999,1003,1016,1021,1047,1087,1096,1104,1128,1133,1135,1139,1142,1145,1155,1157,1159,1180,1195,1216,1226,1231,1254,1256,1260,1272,1273,1274,1275,1289,1290,1293,1295,1298,1299,1322,1328,1329,1339,1350,1352,1356,1359,1361,1366,1384,1429,1438,1439,1442,1446,1461,1462,1483,1549,1551,1557,1582,1598,1600,1602,1609,1610,1611,1612,1615,1622,1640,1646,1651,1658,1664,1667,1689,1698,1701,1706,1709,1725,1728,1729,1736,1738,1741,1748,1749,1753,1754,1760,1761,1763,1774,1775,1792,1796,1797,1800,1803,1804,1813,1815,1816,1829,1839,1855,1861,1862,1880,1884,1901,1917,1943,1955,1962,1967,1971,1972,2016,2017,2039,2055,2056,2058,2061,2064,2065,2066,2067,2068,2074,2076,2077,2082,2084,2087,2088,2095,2098,2105,2106,2110,2113,2121,2124,2126,2128,2129,2131,2135,2138,2141,2142,2145,2146,2150,2151,2153,2162,2163,2165,2168,2173,2177,2179,2188,2210,2321,2325,2328,2336,2369,2370,2397,2402,2403,2414,2419,2439,2461,2476,2484,2485,2489,2493,2496,2506,2516,2521,2522,2525,2685,2687,2742,2744,2762,2774,2797,2808,2817,2822,2831,2837,2838,2841,2847,2848,2861,2866,2872,2894,2897,2898,2950,2952,2978,2984,2994,2995,3001,3002,3003,3004,3005,3008,3010,3038,3039,3044,3052,3056,3057,3058,3063,3075,3080,3084,3085,3086,3088,3105,3107,3143,3147,3159,3179,3199,3203,3214,3239,3244,3251,3254,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3270,3271,3272,3273,3277,3288,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3304,3307,3308,3309,3314,3337,3341,3343,3349,3350,3351,3352,3355,3359,3362,3363,3366,3368,3373,3375,3377,3379,3381,3384,3389,3391,3392,3393,3394,3397,3424,3431,3474,3480,3486,3489,3492,3499,3503,3506,3508,3511,3512,3515,3522,3523,3535,3538,3542,3544,3545,3547,3550,3551,3555,3559,3568,3580,3581,3590,3592,3597,3603,3651,3653,3691,3758,3762,3763,3806,3811,3820,3830,3971,3978,3984,3987,3995,4018,4035,4041,4043,4047,4049,4061,4066,4067,4073,4074,4111,4130,4149,4150,4151,4152,4175,4187,4192,4206,4208,4209,4222,4223,4234,4254,4260,4261,4274,4301,4302,4309,4323,4328,4329,4331,4335,4362,4363,4387,4405,4409,4412,4424,4425,4428,4429,4435,4437,4440,4442,4447,4458,4463,4500,4551,4553,4554,4557,4571,4615,4650,4653,4659,4660,4682,4687,4699,4713,4729,4736,4737,4741,4748,4815,4857,4868,4875,4878,4879,4886,4909,4918,4921,4929,4935,4937,4943,4947,4957,4968,4974,4975,4979,4986,4997,5001,5002,5006,5030,5035,5046,5061,5062,5064,5067,5070,5085,5096,5097,5100,5102,5114,5118,5121,5125,5129,5132,5133,5136,5140,5146,5153,5157,5180,5196,5203,5210,5218,5236,5238,5244,5248,5249,5256,5257,5263,5264,5265,5271,5272,5274,5275,5278,5280,5285,5288,5291,5293,5297,5298,5300,5302,5309,5311,5317,5321,5325,5326,5329,5332,5335,5337,5340,5342,5347,5358,5361,5363,5365,5367,5370,5375,5379,5380,5393,5394,5398,5400,5403,5404,5405,5406,5410,5412,5416,5419,5420,5421,5427,5432,5433,5434,5442,5445,5446,5447,5448,5450,5454,5461,5463,5465,5470,5471,5472,5473,5474,5475,5476,5478,5479,5480,5481,5484,5487,5489,5490,5494,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5510,5515,5516,5518,5519,5520,5521,5524,5525,5529,5530,5535,5537,5539,5541,5542,5544,5545,5546,5550,5551,5552,5553,5554,5555,5556,5559,5560,5561,5565,5566,5579,5580,5590,5611,5623,5624,5625,5626,5638,5640,5641,5642,5644,5651,5652,5655,5656,5660,5661,5662,5667,5669,5672,5673,5683,5684,5685,5699,5702,5705,5719,5720,5725,5726,5730,5734,5736,5741,5745,5749,5763,5764,5775,5779,5785,5789,5792,5805,5809,5810,5819,5843,5849,5856,5859,5860,5869,5873,5874,5891,5897,5939,5940,5941,5959,5988,5989,6016,6019,6028,6037,6051,6055,6056,6063,6072,6077,6118,6126,6187,6265,6287,6288,6291,6292,6295,6377,6381,6425,6426,6429,6443,6446,6450,6452,6453,6454,6457,6459,6474,6486,6488,6489,6495,6528,6530,6537,6541,6543,6547,6548,6559,6562,6564,6565,6566,6567,6569,6590,6596,6597,6605,6607,6608,6613,6615,6646,6653,6664,6667,6668,6677,6698,6721,6738,6739,6742,6782,6792,6817,6822,6831,6836,6839,6846,6847,6853,6855,6856,6857,6870,6871,6875,6886,6887,6890,6898,6900,6907,6913,6915,6918,6923,6924,6925,6927,6930,6931,6940,6957,6958,6964,6966,6969,6994,7034,7036,7048,7049,7062,7067,7070,7088,7103,7116,7119,7120,7124,7157,7158,7160,7162,7164,7165,7169,7171,7173,7174,7185,7190,7194,7200,7204,7219,7220,7223,7225,7255,7256,7272,7273,7278,7281,7282,7289,7304,7312,7317,7326,7330,7331,7334,7337,7340,7372,7374,7376,7387,7395,7404,7411,7412,7419,7434,7439,7456,7458,7464,7465,7474,7475,7477,7482,7493,7496,7497,7498,7499,7509,7511,7517,7535,7538,7542,7544,7545,7553,7563,7569,7571,7577,7579,7586,7589,7602,7605,7606,7626,7647,7651,7657,7665,7702,7710,7732,7739,7742,7744,7745,7756,7757,7759,7760,7761,7767,7769,7783,7792,7804,7824,7827,7829,7846,7849,7850,7851,7852,7857,7868,7872,7876,7880,7889,7906,7913,7919,7920,7921,7928,7948,7960,7965,7970,7971,7972,7973,7974,7975,7976,7980,7995,8000,8001,8013,8032,8036,8044,8045,8068,8070,8075,8089,8092,8094,8107,8115,8118,8119,8131,8138,8140,8155,8167,8186,8187,8195,8243,8262,8268,8269,8272,8279,8280,8299,8303,8304,8309,8321,8330,8331,8333,8342,8343,8345,8347,8366,8367,8380,8384,8385,8400,8403,8424,8443,8445,8456,8457,8461,8462,8466,8468,8469,8471,8472,8481,8489,8490,8492,8498,8507,8524,8532,8533,8534,8536,8554,8557,8564,8575,8582,8624,8625,8639,8641,8644,8646,8658,8669,8670,8672,8676,8721,8723,8725,8727,8728,8730,8735,8736,8743,8744,8769,8774,8776,8787,8790,8796,8798,8802,8812,8813,8823,8827,8829,8837,8881,8909,8965,8990,8993,8996,9004,9010,9026,9031,9041,9056,9057,9063,9071,9072,9082,9086,9099,9110,9112,9119,9120,9121,9141,9142,9147,9149,9166,9167,9175,9182,9188,9192,9194,9200,9205,9206,9212,9217,9220,9222,9226,9247,9252,9256,9263,9272,9278,9280,9288,9294,9297,9303,9310,9331,9333,9346,9351,9353,9354,9359,9362,9385,9391,9398,9399,9405,9415,9417,9436,9444,9455,9457,9480,9488,9498,9508,9513,9519,9523,9525,9528,9529,9537,9539,9549,9551,9561,9567,9568,9569,9572,9578,9579,9593,9602,9630,9631,9632,9634,9642,9643,9659,9660,9664,9673,9684,9685,9693,9696,9706,9709,9716,9726,9746,9750,9759,9793,9797,9798,9812,9814,9822,9824,9827,9831,9853,9856,9863,9865,9866,9869,9873,9877,9879,9882,9883,9894,9899,9900,9902,9907,9911,9914,9920,9923,9924,9929,9931,9934,9941,9943,9945,9946,9949,9953,9960,9961,9965,9968,9982,9985,9992,9995,9997,10005,10018,10020,10021,10023,10030,10031,10036,10046,10051,10053,10054,10056,10060,10071,10086,10093,10094,10099,10111,10113,10117,10118,10128,10136,10141,10144,10158,10162,10165,10187,10191,10193,10206,10207,10209,10663,10672,10673,10678,10691,10692,10694,10698,10739,10753,10763,10804,10867,10868,10869,10876,10910,10937,10940,10951,10958,10964,10972,10982,11087,11132,11133,11146,11163,11165,11189,11205,11264,11274,11277,11282,11291,11298,11314,11318,11326,11342,11353,11354,11357,11361,11366,11370,11383,11393,11410,11411,11418,11444,11449,11451,11452,11458,11460,11462,11463,11465,11503,11507,11516,11517,11526,11527,11559,11569,11572,11574,11582,11586,11593,11594,11597,11599,11602,11604,11619,11620,11631,11636,11644,11655,11670,11682,11683,11696,11699,11702,11706,11708,11719,11720,11724,11730,11750,11757,11765,11774,11777,11784,11785,11791,11798,11825,11830,11832,11836,11844,11845,11846,11853,11886,11887,11888,11892,11901,11918,11954,11958,11966,11987,11988,12086,12089,12090,12103,12238,12246,12251,12260,12303,12308,12310,12323,12332,12369,12370,12391,12396,12397,12400,12402,12410,12412,12413,12423,12481,12484,12485,12510,12527,12528,12530,12531,12532,12540,12541,12542,12546,12579,12580,12588,12672,12677,12681,12689,12690,12697,12717,12718,12719,12721,12734,12749,12751,12766,12773,12778,12806,12861,12862,12868,12879,12891,12901,12903,12915,12920,12922,12930,12936,12946,12951,12988,13009,13019,13024,13027,13029,13039,13041,13044,13047,13049,13056,13058,13062,13064,13066,13067,13069,13072,13075,13079,13083,13086,13093,13096,13100,13101,13105,13106,13107,13110,13119,13123,13131,13137,13139,13155,13164,13169,13173,13183,13185,13188,13193,13197,13202,13209,13212,13218,13221,13225,13232,13233,13235,13244,13251,13260,13262,13264,13281,13297,13300,13304,13319,13324,13334,13339,13344,13345,13346,13352,13359,13365,13369,13371,13384,13394,13396,13400,13401,13403,13409,13430,13436,13437,13448,13449,13452,13454,13457,13461,13464,13466,13486,13487,13492,13495,13496,13500,13503,13511,13512,13517,13518,13523,13548,13556,13567,13577,13581,13582,13584,13591,13592,13603,13605,13608,13611,13619,13620,13637,13641,13642,13644,13650,13657,13662,13663,13664,13671,13677,13695,13702,13706,13710,13714,13716,13733,13734,13735,13740,13741,13743,13748,13749,13755,13762,13773,13790,13792,13793,13838,13850,13856,13869,13887,13900,13925,13929,13930,13940,13942,13943,13944,13963,13977,13978,14007,14031,14033,14039,14054,14084,14090,14091,14102,14104,14139,14140,14154,14156,14159,14161,14206,14209,14228,14236,14245,14274,14277,14278,14288,14304,14320,14331,14339,14357,14360,14361,14382,14398,14408,14421,14425,14430,14442,14450,14469,14471,14474,14475,14483,14486,14499,14503,14504,14518,14521,14529,14531,14534,14535,14536,14537,14553,14574,14577,14583,14588,14589,14592,14616,14657,14665,14668,14676,14680,14707,14708,14717,14723,14728,14743,14744,14751,14755,14759,14763,14766,14768,14784,14793,14805,14817,14829,14833,14854,14882,14891,14893,14940,14968,14991,15057,15095,15112,15117,15120,15121,15123,15135,15143,15145,15151,15163,15166,15169,15176,15180,15191,15216,15222,15228,15238,15277,15298,15348,15356,15357,15359,15360,15369,15374,15400,15402,15417,15438,15440,15441,15445,15464,15511,15516,15517,15518,15520,15538,15558,15559,15634,15658,15662,15664,15675,15676,15685,15737,15753,15771,15772,15790,15809,15810,15811,15831,15835,15836,15837,15847,15875,15886,15887,15904,15909,15914,15944,15949,15958,15959,15978,15981,15983,15985,16000,16007,16008,16034,16039,16051,16053,16055,16056,16074,16087,16113,16126,16134,16149,16162,16191,16192,16228,16251,16254,16260,16361,16371,16377,16428,16429,16470,16478,16479,16502,16506,16509,16523,16530,16567,16568,16569,16570,16573,16574,16575,16586,16598,16603,16613,16628,16631,16656,16659,16675,16686,16692,16709,16722,16746,16748,16755,16777,16782,16794,16814,16819,16845,16850,16869,16878,16880,16886,16899,16906,16927,16930,16934,16935,16949,16955,16958,16973,16975,16977,16997,17001,17010,17021,17035,17039,17057,17062,17086,17091,17093,17140,17142,17143,17158,17160,17170,17171,17191,17193,17201,17209,17216,17217,17218,17231,17243,17248,17253,17262,17263,17266,17267,17269,17276,17296,17305,17311,17323,17343,17356,17384,17393,17397,17402,17407,17417,17420,17422,17423,17424,17439,17449,17457,17471,17475,17486,17503,17508,17510,17515,17517,17524,17525,17543,17545,17572,17573,17575,17604,17641,17657,17660,17665,17677,17689,17714,17716,17743,17745,17751,17764,17778,17783,17789,17791,17794,17799,17807,17817,17819,17826,17827,17830,17832,17841,17842,17846,17849,17850,17854,17857,17858,17859,17861,17887,17893,17897,17902,17916,17923,17924,17928,17945,17948,17975,17981,17991,17993,18054,18063,18081,18090,18095,18104,18115,18160,18162,18176,18179,18180,18182,18189,18191,18192,18202,18209,18210,18215,18218,18219,18222,18223,18226,18227,18231,18232,18237,18251,18252,18253,18254,18258,18262,18280,18298,18313,18328,18329,18337,18342,18344,18345,18351,18362,18378,18385,18386,18391,18401,18414,18416,18440,18441,18446,18448,18451,18454,18458,18460,18463,18468,18482,18483,18484,18488,18496,18500,18504,18505,18507,18524,18527,18528,18530,18541,18551,18553,18554,18562,18565,18566,18574,18578,18579,18580,18582,18584,18588,18593,18596,18599,18602,18606,18607,18610,18613,18615,18620,18621,18622,18624,18625,18630,18633,18635,18646,18651,18659,18667,18668,18669,18679,18682,18683,18687,18694,18708,18711,18714,18718,18724,18727,18733,18734,18737,18742,18745,18748,18750,18751,18753,18758,18769,18775,18776,18777,18781,18788,18789,18790,18792,18793,18797,18801,18806,18808,18821,18832,18833,18855,18866,18874,18879,18882,18885,18889,18898,18899,18903,18909,18914,18917,18919,18920,18922,18926,18931,18941,18946,18965,18967,18973,18976,18982,18984,18985,18988,18989,18992,18999,19000,19002,19003,19004,19006,19009,19010,19012,19014,19015,19021,19027,19028,19035,19038,19049,19054,19055,19061,19062,19067,19068,19070,19073,19076,19077,19079,19080,19086,19087,19097,19104,19105,19106,19108,19109,19118,19125,19128,19132,19138,19139,19141,19143,19145,19146,19147,19150,19155,19157,19159,19165,19173,19175,19178,19180,19184,19188,19205,19206,19208,19211,19217,19222,19224,19226,19234,19237,19238,19245,19247,19253,19262,19266,19267,19277,19278,19280,19283,19287,19293,19303,19306,19307,19308,19311,19315,19322,19329,19332,19334,19335,19338,19340,19342,19344,19347,19349,19353,19361,19363,19365,19368,19373,19380,19384,19399,19401,19402,19412,19425,19431,19433,19438,19439,19447,19450,19459,19460,19465,19467,19469,19470,19472,19475,19480,19481,19482,19484,19486,19494,19500,19504,19505,19507,19508,19513,19516,19522,19524,19526,19530,19537,19538,19541,19542,19563,19567,19576,19577,19591,19604,19605,19609,19610,19611,19616,19633,19644,19646,19651,19654,19658,19662,19666,19667,19678,19681,19686,19691,19700,19703,19731,19735,19736,19754,19764,19766,19771,19778,19799,19800,19804,19805,19815,19818,19819,19836,19837,19838,19839,19840,19842,19866,19867,19873,19878,19883,19888,19893,19910,19912,19913,19915,19918,19919,19920,19922,19939,19940,19941,19944,19946,19948,19955,19965,19980,19985,19988,19996,19999,20001,20004,20013,20015,20020,20031,20033,20037,20060,20066,20073,20076,20091,20107,20110,20136,20137,20139,20152,20163,20171,20173,20179,20186,20190,20208,20217,20221,20231,20238,20251,20256,20269,20276,20319,20320,20333,20334,20340,20346,20349,20353,20356,20376,20385,20387,20390,20391,20392,20396,20397,20403,20428,20432,20434,20436,20437,20454,20473,20476,20481,20507,20508,20509,20511,20521,20522,20523,20527,20528,20537,20543,20552,20553,20555,20573,20581,20584,20586,20590,20596,20622,20632,20644,20649,20658,20666,20667,20682,20689,20693,20713,20714,20715,20717,20720,20727,20730,20754,20766,20778,20784,20790,20791,20793,20805,20809,20818,20823,20834,20835,20837,20843,20855,20856,20857,20861,20862,20863,20864,20865,20866,20867,20868,20869,20870,20871,20872,20873,20874,20877,20878,20879,20903,20908,20911,20916,20919,20920,20927,20933,20939,20942,20943,20944,20949,20970,21000,21004,21034,21055,21062,21063,21069,21070,21073,21075,21078,21079,21081,21093,21115,21119,21120,21159,21188,21225,21238,21255,21257,21275,21286,21288,21289,21292,21293,21295,21311,21315,21316,21317,21321,21323,21350,21353,21381,21390,21415,21439,21455,21532,21566,21601,21607,21612,21617,21618,21630,21657,21664,21673,21684,21690,21691,21716,21745,21983,21985,22000,22002,22006,22040,22042,22048,22051,22053,22055,22057,22060,22061,22063,22065,22074,22078,22089,22101,22103,22104,22107,22109,22111,22112,22113,22128,22131,22143,22147,22155,22156,22158,22165,22173,22187,22188,22192,22194,22198,22200,22207,22210,22211,22212,22225,22234,22243,22245,22249,22279,22285,22307,22313,22318,22319,22364,22367,22370,22373,22375,22377,22380,22383,22385,22391,22393,22394,22401,22403,22405,22416,22417,22418,22419,22420,22421,22428,22434,22441,22443,22444,22445,22446,22456,22460,22463,22467,22470,22472,22477,22480,22483,22489,22492,22493,22496,22499,22502,22503,22504,22505,22515,22518,22526,22528,22537,22544,22567,22568,22570,22578,22579,22584,22598,22601,22602,22605,22609,22612,22613,22619,22623,22632,22640,22648,22662,22663,22682,22693,22713,22731,22733,22736,22737,22743,22744,22748,22751,22754,22755,22761,22785,22793,22799,22800,22806,22822,22825,22827,22831,22833,22835,22842,22858,22874,22882,22884,22890,22914,22927,22935,22968,22969,22975,22976,22987,22990,23004,23022,23026,23033,23034,23037,23040,23044,23052,23062,23070,23074,23075,23085,23086,23091,23105,23109,23113,23118,23125,23126,23127,23130,23131,23138]]],["nothing",[19,19,[[1,2,2,0,2,[[61,1,1,0,1],[72,1,1,1,2]]],[6,1,1,2,3,[[213,1,1,2,3]]],[8,3,3,3,6,[[238,1,1,3,4],[257,1,1,4,5],[265,1,1,5,6]]],[10,1,1,6,7,[[312,1,1,6,7]]],[11,1,1,7,8,[[322,1,1,7,8]]],[13,1,1,8,9,[[384,1,1,8,9]]],[14,1,1,9,10,[[406,1,1,9,10]]],[15,2,2,10,12,[[417,1,1,10,11],[421,1,1,11,12]]],[17,3,3,12,15,[[441,1,1,12,13],[443,1,1,13,14],[469,1,1,14,15]]],[19,1,1,15,16,[[637,1,1,15,16]]],[23,1,1,16,17,[[776,1,1,16,17]]],[24,1,1,17,18,[[797,1,1,17,18]]],[28,1,1,18,19,[[877,1,1,18,19]]]],[1826,2170,6570,7294,7802,7997,9496,9803,11557,12113,12394,12532,12999,13038,13692,16658,19754,20322,22314]]],["nought",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5328]]],["of",[2,2,[[2,1,1,0,1,[[104,1,1,0,1]]],[17,1,1,1,2,[[457,1,1,1,2]]]],[3193,13405]]],["or",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12265]]],["otherwise",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11845]]],["want",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16770]]],["wanting",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16932]]],["without",[31,26,[[3,2,1,0,1,[[151,2,1,0,1]]],[4,1,1,1,2,[[160,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[11,1,1,3,4,[[337,1,1,3,4]]],[12,2,2,4,6,[[339,2,2,4,6]]],[13,4,2,6,8,[[381,3,1,6,7],[387,1,1,7,8]]],[17,10,9,8,17,[[439,1,1,8,9],[443,1,1,9,10],[445,1,1,10,11],[447,1,1,11,12],[461,1,1,12,13],[465,1,1,13,14],[469,4,3,14,17]]],[19,2,2,17,19,[[643,1,1,17,18],[646,1,1,18,19]]],[20,1,1,19,20,[[668,1,1,19,20]]],[22,3,2,20,22,[[730,1,1,20,21],[733,2,1,21,22]]],[23,2,2,22,24,[[759,1,1,22,23],[796,1,1,23,24]]],[24,1,1,24,25,[[797,1,1,24,25]]],[25,1,1,25,26,[[818,1,1,25,26]]]],[4867,5146,8657,10238,10336,10338,11493,11644,12951,13040,13108,13153,13469,13585,13703,13707,13718,16848,16927,17504,18699,18741,19328,20296,20316,20834]]]]},{"k":"H3809","v":[["*",[82,60,[[14,12,12,0,12,[[406,4,4,0,4],[407,2,2,4,6],[408,2,2,6,8],[409,4,4,8,12]]],[23,1,1,12,13,[[754,1,1,12,13]]],[26,69,47,13,60,[[851,16,12,13,25],[852,21,12,25,37],[853,6,5,37,42],[854,7,4,42,46],[855,17,13,46,59],[856,2,1,59,60]]]],[12123,12124,12126,12131,12139,12150,12159,12160,12195,12197,12198,12199,19212,21763,21767,21768,21769,21776,21785,21788,21792,21793,21801,21802,21803,21813,21818,21819,21821,21822,21823,21825,21831,21832,21834,21835,21836,21844,21846,21855,21867,21872,21882,21889,21896,21897,21907,21909,21910,21913,21917,21918,21920,21922,21923,21927,21928,21929,21931,21947]]],["+",[17,17,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]],[26,15,15,2,17,[[851,6,6,2,8],[852,3,3,8,11],[853,2,2,11,13],[855,4,4,13,17]]]],[12160,12195,21768,21785,21792,21793,21802,21803,21813,21818,21834,21846,21855,21909,21920,21928,21929]]],["neither",[3,3,[[26,3,3,0,3,[[852,1,1,0,1],[855,2,2,1,3]]]],[21834,21909,21923]]],["no",[5,5,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,4,4,1,5,[[852,2,2,1,3],[855,2,2,3,5]]]],[12126,21832,21836,21907,21927]]],["none",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21769,21872]]],["nor",[8,6,[[26,8,6,0,6,[[852,6,5,0,5],[854,2,1,5,6]]]],[21819,21821,21825,21834,21835,21897]]],["not",[46,39,[[14,9,9,0,9,[[406,3,3,0,3],[407,2,2,3,5],[408,1,1,5,6],[409,3,3,6,9]]],[23,1,1,9,10,[[754,1,1,9,10]]],[26,36,29,10,39,[[851,9,8,10,18],[852,9,7,18,25],[853,2,2,25,27],[854,5,4,27,31],[855,9,7,31,38],[856,2,1,38,39]]]],[12123,12124,12131,12139,12150,12159,12197,12198,12199,19212,21763,21767,21768,21769,21776,21788,21801,21802,21819,21821,21822,21823,21825,21831,21835,21844,21867,21882,21889,21896,21897,21910,21913,21917,21918,21922,21927,21931,21947]]],["nothing",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21872]]]]},{"k":"H3810","v":[["*",[3,3,[[9,3,3,0,3,[[275,2,2,0,2],[283,1,1,2,3]]]],[8231,8232,8476]]],["+",[2,2,[[9,2,2,0,2,[[275,1,1,0,1],[283,1,1,1,2]]]],[8232,8476]]],["Lodebar",[1,1,[[9,1,1,0,1,[[275,1,1,0,1]]]],[8231]]]]},{"k":"H3811","v":[["*",[19,18,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,1,1,1,2,[[56,1,1,1,2]]],[17,3,3,2,5,[[439,2,2,2,4],[451,1,1,4,5]]],[18,1,1,5,6,[[545,1,1,5,6]]],[19,1,1,6,7,[[653,1,1,6,7]]],[22,5,4,7,11,[[679,1,1,7,8],[685,2,1,8,9],[694,1,1,9,10],[725,1,1,10,11]]],[23,5,5,11,16,[[750,1,1,11,12],[753,1,1,12,13],[756,1,1,13,14],[759,1,1,14,15],[764,1,1,15,16]]],[25,1,1,16,17,[[825,1,1,16,17]]],[32,1,1,17,18,[[898,1,1,17,18]]]],[468,1703,12932,12935,13245,14909,17156,17668,17795,17981,18612,19100,19180,19254,19321,19431,21068,22651]]],["+",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17795]]],["faintest",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12935]]],["grieved",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12932]]],["grieveth",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17156]]],["lothe",[1,1,[[1,1,1,0,1,[[56,1,1,0,1]]]],[1703]]],["themselves",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[23,1,1,1,2,[[753,1,1,1,2]]]],[468,19180]]],["wearied",[4,4,[[22,1,1,0,1,[[725,1,1,0,1]]],[23,1,1,1,2,[[756,1,1,1,2]]],[25,1,1,2,3,[[825,1,1,2,3]]],[32,1,1,3,4,[[898,1,1,3,4]]]],[18612,19254,21068,22651]]],["weary",[8,8,[[17,1,1,0,1,[[451,1,1,0,1]]],[18,1,1,1,2,[[545,1,1,1,2]]],[22,3,3,2,5,[[679,1,1,2,3],[685,1,1,3,4],[694,1,1,4,5]]],[23,3,3,5,8,[[750,1,1,5,6],[759,1,1,6,7],[764,1,1,7,8]]]],[13245,14909,17668,17795,17981,19100,19321,19431]]]]},{"k":"H3812","v":[["*",[34,32,[[0,33,31,0,31,[[28,8,8,0,8],[29,12,11,8,19],[30,4,3,19,22],[32,3,3,22,25],[33,1,1,25,26],[34,2,2,26,28],[45,2,2,28,30],[48,1,1,30,31]]],[7,1,1,31,32,[[235,1,1,31,32]]]],[811,812,818,819,820,825,826,827,839,840,841,842,843,844,846,847,848,849,850,877,887,906,961,962,967,981,1034,1037,1401,1404,1504,7201]]],["+",[3,3,[[0,3,3,0,3,[[28,2,2,0,2],[30,1,1,2,3]]]],[819,825,906]]],["Leah",[27,26,[[0,26,25,0,25,[[28,6,6,0,6],[29,10,9,6,15],[30,2,2,15,17],[32,3,3,17,20],[33,1,1,20,21],[34,1,1,21,22],[45,2,2,22,24],[48,1,1,24,25]]],[7,1,1,25,26,[[235,1,1,25,26]]]],[811,812,818,820,826,827,839,841,843,844,846,847,848,849,850,877,887,961,962,967,981,1034,1401,1404,1504,7201]]],["Leah's",[4,4,[[0,4,4,0,4,[[29,2,2,0,2],[30,1,1,2,3],[34,1,1,3,4]]]],[840,842,906,1037]]]]},{"k":"H3813","v":[["+",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8515]]]]},{"k":"H3814","v":[["softly",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6620]]]]},{"k":"H3815","v":[["Lael",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3716]]]]},{"k":"H3816","v":[["*",[35,31,[[0,4,2,0,2,[[24,3,1,0,1],[26,1,1,1,2]]],[18,14,13,2,15,[[479,1,1,2,3],[484,1,1,3,4],[486,1,1,4,5],[521,2,2,5,7],[524,1,1,7,8],[534,1,1,8,9],[542,1,1,9,10],[544,2,1,10,11],[582,1,1,11,12],[585,1,1,12,13],[625,1,1,13,14],[626,1,1,14,15]]],[19,4,4,15,19,[[638,1,1,15,16],[641,2,2,16,18],[651,1,1,18,19]]],[22,11,10,19,29,[[695,2,2,19,21],[712,1,1,21,22],[719,1,1,22,23],[721,2,2,23,25],[727,1,1,25,26],[729,1,1,26,27],[733,2,1,27,28],[738,1,1,28,29]]],[23,1,1,29,30,[[795,1,1,29,30]]],[34,1,1,30,31,[[904,1,1,30,31]]]],[681,756,13946,14002,14029,14573,14585,14628,14777,14867,14897,15650,15745,16382,16392,16714,16800,16806,17103,17995,17996,18304,18452,18509,18514,18637,18677,18744,18823,20270,22761]]],["+",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[681]]],["folk",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20270]]],["nation",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18677]]],["nations",[9,8,[[0,1,1,0,1,[[26,1,1,0,1]]],[18,5,4,1,5,[[524,1,1,1,2],[534,1,1,2,3],[544,2,1,3,4],[585,1,1,4,5]]],[19,1,1,5,6,[[651,1,1,5,6]]],[22,2,2,6,8,[[695,2,2,6,8]]]],[756,14628,14777,14897,15745,17103,17995,17996]]],["people",[23,21,[[0,2,1,0,1,[[24,2,1,0,1]]],[18,9,9,1,10,[[479,1,1,1,2],[484,1,1,2,3],[486,1,1,3,4],[521,2,2,4,6],[542,1,1,6,7],[582,1,1,7,8],[625,1,1,8,9],[626,1,1,9,10]]],[19,3,3,10,13,[[638,1,1,10,11],[641,2,2,11,13]]],[22,8,7,13,20,[[712,1,1,13,14],[719,1,1,14,15],[721,2,2,15,17],[727,1,1,17,18],[733,2,1,18,19],[738,1,1,19,20]]],[34,1,1,20,21,[[904,1,1,20,21]]]],[681,13946,14002,14029,14573,14585,14867,15650,16382,16392,16714,16800,16806,18304,18452,18509,18514,18637,18744,18823,22761]]]]},{"k":"H3817","v":[["Leummim",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[661]]]]},{"k":"H3818","v":[["Loammi",[1,1,[[27,1,1,0,1,[[862,1,1,0,1]]]],[22103]]]]},{"k":"H3819","v":[["Loruhamah",[2,2,[[27,2,2,0,2,[[862,2,2,0,2]]]],[22100,22102]]]]},{"k":"H3820","v":[["*",[598,553,[[0,13,12,0,12,[[5,2,2,0,2],[7,2,1,2,3],[16,1,1,3,4],[17,1,1,4,5],[23,1,1,5,6],[26,1,1,6,7],[30,1,1,7,8],[33,1,1,8,9],[41,1,1,9,10],[44,1,1,10,11],[49,1,1,11,12]]],[1,46,41,12,53,[[53,2,2,12,14],[56,5,5,14,19],[57,3,3,19,22],[58,6,6,22,28],[59,4,3,28,31],[60,1,1,31,32],[63,3,3,32,35],[64,1,1,35,36],[74,1,1,36,37],[77,4,3,37,40],[80,2,1,40,41],[84,9,9,41,50],[85,5,3,50,53]]],[3,4,4,53,57,[[132,1,1,53,54],[140,1,1,54,55],[148,2,2,55,57]]],[4,4,4,57,61,[[156,1,1,57,58],[180,1,1,58,59],[181,2,2,59,61]]],[5,2,2,61,63,[[197,1,1,61,62],[200,1,1,62,63]]],[6,14,13,63,76,[[215,3,3,63,66],[219,1,1,66,67],[226,5,4,67,71],[228,1,1,71,72],[229,4,4,72,76]]],[7,2,2,76,78,[[233,1,1,76,77],[234,1,1,77,78]]],[8,16,16,78,94,[[236,1,1,78,79],[237,1,1,79,80],[239,2,2,80,82],[241,1,1,82,83],[244,1,1,83,84],[245,2,2,84,86],[252,1,1,86,87],[259,1,1,87,88],[260,4,4,88,92],[262,1,1,92,93],[263,1,1,93,94]]],[9,18,15,94,109,[[272,1,1,94,95],[273,2,2,95,97],[279,3,3,97,100],[280,1,1,100,101],[281,2,2,101,103],[283,2,1,103,104],[284,4,2,104,106],[285,2,2,106,108],[290,1,1,108,109]]],[10,14,14,109,123,[[293,2,2,109,111],[294,1,1,111,112],[298,3,3,112,115],[299,1,1,115,116],[300,1,1,116,117],[301,1,1,117,118],[302,3,3,118,121],[308,1,1,121,122],[311,1,1,122,123]]],[11,6,6,123,129,[[317,1,1,123,124],[318,1,1,124,125],[321,1,1,125,126],[324,1,1,126,127],[326,1,1,127,128],[335,1,1,128,129]]],[12,8,7,129,136,[[349,3,2,129,131],[352,1,1,131,132],[353,1,1,132,133],[354,1,1,133,134],[365,1,1,134,135],[366,1,1,135,136]]],[13,16,16,136,152,[[372,2,2,136,138],[373,3,3,138,141],[375,1,1,141,142],[378,1,1,142,143],[383,1,1,143,144],[390,1,1,144,145],[391,1,1,145,146],[392,1,1,146,147],[395,1,1,147,148],[396,2,2,148,150],[398,2,2,150,152]]],[14,2,2,152,154,[[408,1,1,152,153],[409,1,1,153,154]]],[15,6,6,154,160,[[414,2,2,154,156],[416,1,1,156,157],[417,1,1,157,158],[418,1,1,158,159],[419,1,1,159,160]]],[16,4,4,160,164,[[426,1,1,160,161],[430,1,1,161,162],[431,1,1,162,163],[432,1,1,163,164]]],[17,20,20,164,184,[[436,1,1,164,165],[437,1,1,165,166],[442,1,1,166,167],[443,1,1,167,168],[446,1,1,168,169],[447,1,1,169,170],[450,1,1,170,171],[452,1,1,171,172],[458,1,1,172,173],[464,1,1,173,174],[466,3,3,174,177],[468,1,1,177,178],[469,1,1,178,179],[471,2,2,179,181],[472,2,2,181,183],[476,1,1,183,184]]],[18,101,98,184,282,[[481,1,1,184,185],[484,2,2,185,187],[486,1,1,187,188],[487,4,4,188,192],[488,1,1,192,193],[489,2,1,193,194],[490,1,1,194,195],[491,1,1,195,196],[493,1,1,196,197],[494,1,1,197,198],[496,2,2,198,200],[498,1,1,200,201],[499,1,1,201,202],[503,1,1,202,203],[504,3,3,203,206],[505,2,1,206,207],[508,1,1,207,208],[509,1,1,208,209],[510,3,3,209,212],[511,1,1,212,213],[512,1,1,213,214],[513,2,2,214,216],[514,3,3,216,219],[515,2,2,219,221],[516,1,1,221,222],[517,2,2,222,224],[518,1,1,224,225],[521,2,2,225,227],[522,2,2,227,229],[523,1,1,229,230],[525,1,1,230,231],[526,1,1,231,232],[528,2,2,232,234],[530,1,1,234,235],[532,2,2,235,237],[534,2,1,237,238],[535,1,1,238,239],[538,1,1,239,240],[539,1,1,240,241],[541,2,2,241,243],[543,1,1,243,244],[546,1,1,244,245],[551,1,1,245,246],[553,1,1,246,247],[555,2,2,247,249],[558,1,1,249,250],[560,1,1,250,251],[561,1,1,251,252],[571,1,1,252,253],[574,1,1,253,254],[579,1,1,254,255],[582,2,2,255,257],[584,1,1,257,258],[585,1,1,258,259],[586,1,1,259,260],[589,2,2,260,262],[596,14,14,262,276],[608,1,1,276,277],[615,1,1,277,278],[617,1,1,278,279],[618,1,1,279,280],[620,1,1,280,281],[624,1,1,281,282]]],[19,94,92,282,374,[[629,2,2,282,284],[630,3,3,284,287],[631,2,2,287,289],[632,1,1,289,290],[633,4,4,290,294],[634,4,4,294,298],[635,1,1,298,299],[636,2,2,299,301],[637,4,4,301,305],[638,3,3,305,308],[639,5,5,308,313],[640,1,1,313,314],[641,5,5,314,319],[642,9,8,319,327],[643,5,5,327,332],[644,4,4,332,336],[645,3,3,336,339],[646,3,3,339,342],[647,2,2,342,344],[648,2,2,344,346],[649,3,3,346,349],[650,9,8,349,357],[651,5,5,357,362],[652,2,2,362,364],[653,2,2,364,366],[654,4,4,366,370],[655,2,2,370,372],[657,1,1,372,373],[658,1,1,373,374]]],[20,41,34,374,408,[[659,4,3,374,377],[660,10,7,377,384],[661,3,3,384,387],[663,2,2,387,389],[665,9,8,389,397],[666,4,4,397,401],[667,3,3,401,404],[668,3,2,404,406],[669,3,2,406,408]]],[21,3,3,408,411,[[673,1,1,408,409],[675,1,1,409,410],[678,1,1,410,411]]],[22,31,30,411,441,[[684,1,1,411,412],[693,1,1,412,413],[702,1,1,413,414],[707,1,1,414,415],[710,1,1,415,416],[711,1,1,416,417],[713,1,1,417,418],[716,1,1,418,419],[718,1,1,419,420],[719,1,1,420,421],[720,1,1,421,422],[722,3,3,422,425],[724,2,2,425,427],[725,2,2,427,429],[729,1,1,429,430],[735,4,4,430,434],[737,1,1,434,435],[739,1,1,435,436],[741,2,2,436,438],[743,3,2,438,440],[744,1,1,440,441]]],[23,58,51,441,492,[[747,4,4,441,445],[748,6,4,445,449],[749,2,2,449,451],[751,2,2,451,453],[752,1,1,453,454],[753,2,2,454,456],[755,2,2,456,458],[756,2,2,458,460],[757,1,1,460,461],[758,1,1,461,462],[760,1,1,462,463],[761,4,4,463,467],[762,1,1,467,468],[763,1,1,468,469],[764,2,2,469,471],[766,1,1,471,472],[767,6,5,472,477],[768,2,1,477,478],[774,2,2,478,480],[775,2,2,480,482],[776,3,3,482,485],[788,1,1,485,486],[792,5,3,486,489],[793,3,2,489,491],[795,1,1,491,492]]],[24,9,9,492,501,[[797,2,2,492,494],[798,2,2,494,496],[799,3,3,496,499],[801,2,2,499,501]]],[25,42,32,501,533,[[803,1,1,501,502],[804,1,1,502,503],[807,1,1,503,504],[812,5,2,504,506],[814,3,3,506,509],[815,4,4,509,513],[819,1,1,513,514],[821,1,1,514,515],[822,2,2,515,517],[823,1,1,517,518],[828,4,4,518,522],[829,8,4,522,526],[833,1,1,526,527],[834,1,1,527,528],[837,3,1,528,529],[841,1,1,529,530],[845,4,3,530,533]]],[26,2,2,533,535,[[850,1,1,533,534],[859,1,1,534,535]]],[27,9,9,535,544,[[863,1,1,535,536],[865,1,1,536,537],[868,3,3,537,540],[871,1,1,540,541],[872,1,1,541,542],[874,2,2,542,544]]],[29,1,1,544,545,[[880,1,1,544,545]]],[30,2,1,545,546,[[888,2,1,545,546]]],[33,1,1,546,547,[[901,1,1,546,547]]],[35,1,1,547,548,[[908,1,1,547,548]]],[37,4,3,548,551,[[917,1,1,548,549],[920,2,1,549,550],[922,1,1,550,551]]],[38,4,2,551,553,[[926,2,1,551,552],[928,2,1,552,553]]]],[142,143,204,414,429,636,768,893,983,1280,1384,1527,1615,1622,1688,1698,1699,1707,1708,1725,1729,1742,1749,1754,1756,1763,1776,1777,1778,1797,1804,1816,1893,1897,1906,1928,2197,2296,2322,2323,2426,2536,2541,2552,2553,2556,2557,2560,2565,2566,2567,2568,2574,4222,4459,4725,4727,5015,5676,5683,5698,6127,6195,6632,6638,6639,6757,6964,6966,6967,6974,7013,7027,7029,7030,7046,7162,7179,7225,7241,7310,7317,7337,7411,7427,7444,7650,7844,7886,7892,7897,7898,7931,7947,8173,8201,8207,8337,8345,8350,8357,8395,8402,8459,8481,8492,8518,8530,8702,8825,8828,8873,9008,9032,9051,9054,9103,9111,9177,9178,9184,9378,9458,9673,9685,9780,9854,9906,10168,10753,10758,10820,10830,10882,11152,11173,11296,11320,11334,11335,11340,11387,11451,11529,11681,11723,11748,11822,11839,11849,11900,11901,12173,12200,12309,12319,12365,12389,12409,12425,12712,12788,12799,12812,12877,12894,13025,13039,13121,13152,13215,13264,13435,13545,13595,13597,13615,13653,13697,13741,13749,13770,13793,13912,13972,14004,14005,14022,14047,14052,14054,14058,14061,14068,14079,14081,14101,14106,14176,14182,14193,14218,14275,14288,14293,14299,14306,14343,14366,14377,14381,14387,14406,14435,14439,14448,14454,14465,14481,14498,14500,14515,14535,14537,14548,14589,14592,14598,14602,14616,14647,14651,14701,14708,14720,14736,14753,14775,14781,14821,14837,14856,14860,14891,14955,15056,15086,15121,15150,15229,15246,15261,15446,15489,15525,15609,15631,15711,15743,15777,15810,15811,15900,15908,15909,15930,15932,15934,15956,15967,15968,15978,16009,16010,16043,16059,16149,16232,16265,16280,16297,16354,16435,16443,16456,16458,16460,16494,16513,16529,16554,16558,16561,16572,16578,16582,16585,16600,16607,16642,16654,16664,16669,16676,16677,16700,16708,16717,16727,16730,16739,16742,16744,16759,16782,16785,16786,16802,16805,16814,16820,16821,16822,16828,16835,16837,16839,16841,16845,16849,16861,16863,16889,16891,16893,16895,16903,16913,16916,16928,16933,16946,16959,16963,16985,16988,17026,17030,17032,17051,17056,17059,17061,17063,17070,17077,17078,17081,17091,17096,17109,17111,17116,17133,17164,17166,17178,17180,17188,17192,17210,17222,17270,17295,17328,17331,17332,17334,17336,17343,17348,17353,17355,17356,17370,17376,17377,17399,17417,17431,17432,17433,17436,17450,17451,17454,17455,17463,17467,17469,17474,17476,17478,17482,17495,17496,17522,17523,17582,17600,17646,17779,17965,18102,18206,18265,18297,18324,18393,18422,18473,18505,18551,18552,18553,18594,18598,18606,18609,18680,18766,18776,18780,18782,18813,18844,18870,18883,18911,18914,18936,19012,19017,19018,19019,19036,19041,19045,19046,19079,19081,19143,19150,19171,19189,19201,19234,19246,19252,19260,19276,19307,19348,19358,19362,19366,19367,19396,19412,19431,19434,19471,19493,19500,19501,19504,19510,19531,19688,19691,19712,19724,19766,19770,19772,20031,20109,20116,20121,20143,20149,20213,20330,20332,20350,20351,20375,20387,20419,20457,20459,20496,20509,20572,20674,20676,20710,20725,20730,20734,20735,20736,20738,20880,20911,20951,20959,20990,21125,21146,21147,21148,21159,21163,21165,21174,21257,21311,21385,21481,21604,21606,21608,21745,22027,22119,22144,22184,22189,22192,22227,22248,22272,22274,22395,22513,22709,22834,22974,23023,23050,23105,23144]]],["+",[51,47,[[0,2,2,0,2,[[33,1,1,0,1],[49,1,1,1,2]]],[1,1,1,2,3,[[58,1,1,2,3]]],[3,2,2,3,5,[[132,1,1,3,4],[140,1,1,4,5]]],[6,2,2,5,7,[[229,2,2,5,7]]],[7,1,1,7,8,[[233,1,1,7,8]]],[8,2,2,8,10,[[239,1,1,8,9],[260,1,1,9,10]]],[9,4,3,10,13,[[279,1,1,10,11],[284,2,1,11,12],[285,1,1,12,13]]],[10,2,2,13,15,[[298,1,1,13,14],[302,1,1,14,15]]],[11,1,1,15,16,[[321,1,1,15,16]]],[12,2,1,16,17,[[349,2,1,16,17]]],[13,2,2,17,19,[[390,1,1,17,18],[396,1,1,18,19]]],[15,1,1,19,20,[[418,1,1,19,20]]],[17,4,4,20,24,[[436,1,1,20,21],[437,1,1,21,22],[443,1,1,22,23],[458,1,1,23,24]]],[18,7,6,24,30,[[489,2,1,24,25],[508,1,1,25,26],[525,1,1,26,27],[553,1,1,27,28],[555,1,1,28,29],[560,1,1,29,30]]],[19,2,2,30,32,[[651,1,1,30,31],[654,1,1,31,32]]],[20,1,1,32,33,[[669,1,1,32,33]]],[22,7,7,33,40,[[702,1,1,33,34],[707,1,1,34,35],[718,1,1,35,36],[719,1,1,36,37],[724,1,1,37,38],[737,1,1,38,39],[739,1,1,39,40]]],[24,1,1,40,41,[[799,1,1,40,41]]],[25,5,4,41,45,[[803,1,1,41,42],[804,1,1,42,43],[814,1,1,43,44],[845,2,1,44,45]]],[27,1,1,45,46,[[863,1,1,45,46]]],[29,1,1,46,47,[[880,1,1,46,47]]]],[983,1527,1763,4222,4459,7027,7046,7162,7317,7886,8337,8481,8518,9032,9184,9780,10753,11681,11849,12409,12877,12894,13039,13435,14068,14343,14647,15086,15121,15246,17111,17192,17523,18102,18206,18422,18473,18598,18813,18844,20387,20496,20509,20710,21604,22119,22395]]],["heart",[477,441,[[0,9,8,0,8,[[5,2,2,0,2],[7,2,1,2,3],[16,1,1,3,4],[23,1,1,4,5],[26,1,1,5,6],[41,1,1,6,7],[44,1,1,7,8]]],[1,35,32,8,40,[[53,2,2,8,10],[56,5,5,10,15],[57,3,3,15,18],[58,5,5,18,23],[59,4,3,23,26],[60,1,1,26,27],[63,2,2,27,29],[64,1,1,29,30],[74,1,1,30,31],[77,3,2,31,33],[84,6,6,33,39],[85,2,1,39,40]]],[3,2,2,40,42,[[148,2,2,40,42]]],[4,3,3,42,45,[[180,1,1,42,43],[181,2,2,43,45]]],[5,1,1,45,46,[[200,1,1,45,46]]],[6,10,9,46,55,[[215,3,3,46,49],[226,4,3,49,52],[228,1,1,52,53],[229,2,2,53,55]]],[7,1,1,55,56,[[234,1,1,55,56]]],[8,11,11,56,67,[[236,1,1,56,57],[237,1,1,57,58],[239,1,1,58,59],[245,1,1,59,60],[252,1,1,60,61],[259,1,1,61,62],[260,3,3,62,65],[262,1,1,65,66],[263,1,1,66,67]]],[9,11,10,67,77,[[272,1,1,67,68],[273,2,2,68,70],[279,2,2,70,72],[280,1,1,72,73],[283,2,1,73,74],[284,1,1,74,75],[285,1,1,75,76],[290,1,1,76,77]]],[10,12,12,77,89,[[293,2,2,77,79],[294,1,1,79,80],[298,2,2,80,82],[299,1,1,82,83],[300,1,1,83,84],[301,1,1,84,85],[302,2,2,85,87],[308,1,1,87,88],[311,1,1,88,89]]],[11,5,5,89,94,[[317,1,1,89,90],[318,1,1,90,91],[324,1,1,91,92],[326,1,1,92,93],[335,1,1,93,94]]],[12,6,6,94,100,[[349,1,1,94,95],[352,1,1,95,96],[353,1,1,96,97],[354,1,1,97,98],[365,1,1,98,99],[366,1,1,99,100]]],[13,13,13,100,113,[[372,1,1,100,101],[373,3,3,101,104],[375,1,1,104,105],[378,1,1,105,106],[383,1,1,106,107],[391,1,1,107,108],[392,1,1,108,109],[395,1,1,109,110],[396,1,1,110,111],[398,2,2,111,113]]],[14,2,2,113,115,[[408,1,1,113,114],[409,1,1,114,115]]],[15,3,3,115,118,[[414,2,2,115,117],[419,1,1,117,118]]],[16,4,4,118,122,[[426,1,1,118,119],[430,1,1,119,120],[431,1,1,120,121],[432,1,1,121,122]]],[17,15,15,122,137,[[442,1,1,122,123],[446,1,1,123,124],[447,1,1,124,125],[450,1,1,125,126],[452,1,1,126,127],[464,1,1,127,128],[466,3,3,128,131],[468,1,1,131,132],[469,1,1,132,133],[471,1,1,133,134],[472,2,2,134,136],[476,1,1,136,137]]],[18,87,85,137,222,[[481,1,1,137,138],[484,1,1,138,139],[486,1,1,139,140],[487,4,4,140,144],[488,1,1,144,145],[490,1,1,145,146],[491,1,1,146,147],[493,1,1,147,148],[494,1,1,148,149],[496,2,2,149,151],[499,1,1,151,152],[503,1,1,152,153],[504,3,3,153,156],[505,2,1,156,157],[509,1,1,157,158],[510,2,2,158,160],[511,1,1,160,161],[513,2,2,161,163],[514,3,3,163,166],[515,2,2,166,168],[516,1,1,168,169],[517,2,2,169,171],[518,1,1,171,172],[521,2,2,172,174],[522,2,2,174,176],[526,1,1,176,177],[528,2,2,177,179],[530,1,1,179,180],[532,2,2,180,182],[534,2,1,182,183],[535,1,1,183,184],[538,1,1,184,185],[539,1,1,185,186],[541,2,2,186,188],[543,1,1,188,189],[546,1,1,189,190],[555,1,1,190,191],[561,1,1,191,192],[571,1,1,192,193],[574,1,1,193,194],[579,1,1,194,195],[582,2,2,195,197],[584,1,1,197,198],[585,1,1,198,199],[586,1,1,199,200],[589,2,2,200,202],[596,14,14,202,216],[608,1,1,216,217],[615,1,1,217,218],[617,1,1,218,219],[618,1,1,219,220],[620,1,1,220,221],[624,1,1,221,222]]],[19,77,75,222,297,[[629,2,2,222,224],[630,3,3,224,227],[631,2,2,227,229],[632,1,1,229,230],[633,3,3,230,233],[634,3,3,233,236],[635,1,1,236,237],[637,2,2,237,239],[638,2,2,239,241],[639,4,4,241,245],[640,1,1,245,246],[641,5,5,246,251],[642,7,6,251,257],[643,5,5,257,262],[644,3,3,262,265],[645,3,3,265,268],[646,2,2,268,270],[647,2,2,270,272],[648,2,2,272,274],[649,3,3,274,277],[650,8,7,277,284],[651,3,3,284,287],[652,2,2,287,289],[653,2,2,289,291],[654,3,3,291,294],[655,2,2,294,296],[658,1,1,296,297]]],[20,38,31,297,328,[[659,4,3,297,300],[660,10,7,300,307],[661,3,3,307,310],[663,2,2,310,312],[665,8,7,312,319],[666,4,4,319,323],[667,3,3,323,326],[668,2,1,326,327],[669,2,1,327,328]]],[21,3,3,328,331,[[673,1,1,328,329],[675,1,1,329,330],[678,1,1,330,331]]],[22,21,20,331,351,[[684,1,1,331,332],[693,1,1,332,333],[710,1,1,333,334],[711,1,1,334,335],[713,1,1,335,336],[716,1,1,336,337],[720,1,1,337,338],[722,2,2,338,340],[725,2,2,340,342],[729,1,1,342,343],[735,4,4,343,347],[741,2,2,347,349],[743,2,1,349,350],[744,1,1,350,351]]],[23,50,44,351,395,[[747,3,3,351,354],[748,6,4,354,358],[749,1,1,358,359],[751,2,2,359,361],[752,1,1,361,362],[753,2,2,362,364],[755,2,2,364,366],[756,2,2,366,368],[757,1,1,368,369],[758,1,1,369,370],[760,1,1,370,371],[761,4,4,371,375],[762,1,1,375,376],[764,2,2,376,378],[766,1,1,378,379],[767,6,5,379,384],[768,2,1,384,385],[774,2,2,385,387],[775,1,1,387,388],[776,2,2,388,390],[792,4,3,390,393],[793,3,2,393,395]]],[24,7,7,395,402,[[797,2,2,395,397],[798,2,2,397,399],[799,1,1,399,400],[801,2,2,400,402]]],[25,30,22,402,424,[[807,1,1,402,403],[812,5,2,403,405],[814,2,2,405,407],[815,4,4,407,411],[819,1,1,411,412],[821,1,1,412,413],[822,2,2,413,415],[823,1,1,415,416],[829,6,3,416,419],[834,1,1,419,420],[837,3,1,420,421],[841,1,1,421,422],[845,2,2,422,424]]],[26,2,2,424,426,[[850,1,1,424,425],[859,1,1,425,426]]],[27,8,8,426,434,[[865,1,1,426,427],[868,3,3,427,430],[871,1,1,430,431],[872,1,1,431,432],[874,2,2,432,434]]],[30,2,1,434,435,[[888,2,1,434,435]]],[33,1,1,435,436,[[901,1,1,435,436]]],[35,1,1,436,437,[[908,1,1,436,437]]],[37,3,2,437,439,[[920,2,1,437,438],[922,1,1,438,439]]],[38,4,2,439,441,[[926,2,1,439,440],[928,2,1,440,441]]]],[142,143,204,414,636,768,1280,1384,1615,1622,1688,1698,1699,1707,1708,1725,1729,1742,1749,1754,1756,1776,1777,1778,1797,1804,1816,1893,1897,1928,2197,2322,2323,2536,2552,2557,2560,2565,2566,2568,4725,4727,5676,5683,5698,6195,6632,6638,6639,6964,6966,6967,7013,7029,7030,7179,7225,7241,7310,7427,7650,7844,7892,7897,7898,7931,7947,8173,8201,8207,8345,8350,8357,8459,8492,8530,8702,8825,8828,8873,9008,9051,9054,9103,9111,9177,9178,9378,9458,9673,9685,9854,9906,10168,10758,10820,10830,10882,11152,11173,11320,11334,11335,11340,11387,11451,11529,11723,11748,11822,11839,11900,11901,12173,12200,12309,12319,12425,12712,12788,12799,12812,13025,13121,13152,13215,13264,13545,13595,13597,13615,13653,13697,13749,13770,13793,13912,13972,14005,14022,14047,14052,14054,14058,14061,14079,14081,14101,14106,14176,14182,14218,14275,14288,14293,14299,14306,14366,14377,14387,14406,14439,14448,14454,14465,14481,14498,14500,14515,14535,14537,14548,14589,14592,14598,14602,14651,14701,14708,14720,14736,14753,14775,14781,14821,14837,14856,14860,14891,14955,15150,15261,15446,15489,15525,15609,15631,15711,15743,15777,15810,15811,15900,15908,15909,15930,15932,15934,15956,15967,15968,15978,16009,16010,16043,16059,16149,16232,16265,16280,16297,16354,16435,16443,16456,16458,16460,16494,16513,16529,16554,16558,16561,16578,16585,16600,16607,16664,16676,16708,16717,16727,16739,16742,16744,16759,16782,16785,16786,16802,16805,16814,16820,16821,16822,16835,16837,16841,16845,16849,16861,16863,16889,16893,16895,16903,16913,16916,16928,16946,16959,16963,16985,16988,17026,17030,17032,17051,17056,17059,17061,17063,17070,17077,17081,17091,17096,17116,17133,17164,17166,17178,17180,17188,17210,17222,17295,17328,17331,17332,17334,17336,17343,17348,17353,17355,17356,17370,17376,17377,17399,17417,17431,17432,17433,17436,17451,17454,17455,17463,17467,17469,17474,17476,17478,17482,17495,17522,17582,17600,17646,17779,17965,18265,18297,18324,18393,18505,18552,18553,18606,18609,18680,18766,18776,18780,18782,18870,18883,18911,18936,19012,19017,19019,19036,19041,19045,19046,19081,19143,19150,19171,19189,19201,19234,19246,19252,19260,19276,19307,19348,19358,19362,19366,19367,19396,19431,19434,19471,19493,19500,19501,19504,19510,19531,19688,19691,19712,19770,19772,20109,20116,20121,20143,20149,20330,20332,20350,20351,20419,20457,20459,20572,20674,20676,20725,20730,20734,20735,20736,20738,20880,20911,20951,20959,20990,21159,21163,21174,21311,21385,21481,21606,21608,21745,22027,22144,22184,22189,22192,22227,22248,22272,22274,22513,22709,22834,23023,23050,23105,23144]]],["heart's",[1,1,[[18,1,1,0,1,[[498,1,1,0,1]]]],[14193]]],["hearted",[8,8,[[1,8,8,0,8,[[77,1,1,0,1],[80,1,1,1,2],[84,3,3,2,5],[85,3,3,5,8]]]],[2296,2426,2541,2553,2556,2567,2568,2574]]],["hearts",[20,20,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,2,2,1,3,[[63,1,1,1,2],[80,1,1,2,3]]],[5,1,1,3,4,[[197,1,1,3,4]]],[6,2,2,4,6,[[219,1,1,4,5],[226,1,1,5,6]]],[8,2,2,6,8,[[241,1,1,6,7],[245,1,1,7,8]]],[9,2,2,8,10,[[281,2,2,8,10]]],[13,1,1,10,11,[[372,1,1,10,11]]],[18,4,4,11,15,[[484,1,1,11,12],[510,1,1,12,13],[512,1,1,13,14],[551,1,1,14,15]]],[22,1,1,15,16,[[722,1,1,15,16]]],[23,2,2,16,18,[[775,1,1,16,17],[792,1,1,17,18]]],[25,1,1,18,19,[[833,1,1,18,19]]],[37,1,1,19,20,[[917,1,1,19,20]]]],[429,1906,2426,6127,6757,6974,7337,7444,8395,8402,11296,14004,14381,14435,15056,18551,19724,20121,21257,22974]]],["hearts'",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15229]]],["heed",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17450]]],["midst",[12,12,[[4,1,1,0,1,[[156,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[18,1,1,2,3,[[523,1,1,2,3]]],[19,2,2,3,5,[[650,1,1,3,4],[657,1,1,4,5]]],[23,1,1,5,6,[[795,1,1,5,6]]],[25,6,6,6,12,[[828,4,4,6,10],[829,2,2,10,12]]]],[5015,8492,14616,17078,17270,20213,21125,21146,21147,21148,21159,21165]]],["mind",[9,9,[[8,1,1,0,1,[[244,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]],[22,2,2,2,4,[[724,1,1,2,3],[743,1,1,3,4]]],[23,4,4,4,8,[[747,1,1,4,5],[763,1,1,5,6],[776,1,1,6,7],[788,1,1,7,8]]],[24,1,1,8,9,[[799,1,1,8,9]]]],[7411,12365,18594,18914,19018,19412,19766,20031,20375]]],["myself",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12389]]],["unawares",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[893]]],["understanding",[10,10,[[19,9,9,0,9,[[633,1,1,0,1],[634,1,1,1,2],[636,2,2,2,4],[637,1,1,4,5],[639,1,1,5,6],[642,1,1,6,7],[644,1,1,7,8],[651,1,1,8,9]]],[23,1,1,9,10,[[749,1,1,9,10]]]],[16572,16582,16642,16654,16669,16730,16839,16891,17109,19079]]],["wisdom",[6,6,[[17,1,1,0,1,[[471,1,1,0,1]]],[19,4,4,1,5,[[637,1,1,1,2],[638,1,1,2,3],[642,1,1,3,4],[646,1,1,4,5]]],[20,1,1,5,6,[[668,1,1,5,6]]]],[13741,16677,16700,16828,16933,17496]]]]},{"k":"H3821","v":[["heart",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21961]]]]},{"k":"H3822","v":[["Lebaoth",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6234]]]]},{"k":"H3823","v":[["*",[5,4,[[9,2,2,0,2,[[279,2,2,0,2]]],[17,1,1,2,3,[[446,1,1,2,3]]],[21,2,1,3,4,[[674,2,1,3,4]]]],[8323,8325,13120,17591]]],["cakes",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8325]]],["heart",[2,1,[[21,2,1,0,1,[[674,2,1,0,1]]]],[17591]]],["make",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8323]]],["wise",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13120]]]]},{"k":"H3824","v":[["*",[251,229,[[0,3,3,0,3,[[19,2,2,0,2],[30,1,1,2,3]]],[1,1,1,3,4,[[63,1,1,3,4]]],[2,3,3,4,7,[[108,1,1,4,5],[115,2,2,5,7]]],[3,1,1,7,8,[[131,1,1,7,8]]],[4,47,43,8,51,[[153,1,1,8,9],[154,1,1,9,10],[156,3,3,10,13],[157,1,1,13,14],[158,2,2,14,16],[159,1,1,16,17],[160,4,4,17,21],[161,2,2,21,23],[162,2,2,23,25],[163,3,3,25,28],[165,1,1,28,29],[167,3,3,29,32],[169,2,2,32,34],[170,1,1,34,35],[171,1,1,35,36],[172,4,2,36,38],[178,1,1,38,39],[180,3,3,39,42],[181,2,2,42,44],[182,8,6,44,50],[184,1,1,50,51]]],[5,7,7,51,58,[[188,1,1,51,52],[191,1,1,52,53],[193,1,1,53,54],[200,1,1,54,55],[208,1,1,55,56],[209,1,1,56,57],[210,1,1,57,58]]],[6,2,2,58,60,[[229,2,2,58,60]]],[8,14,12,60,72,[[236,1,1,60,61],[237,1,1,61,62],[241,1,1,62,63],[242,2,1,63,64],[244,1,1,64,65],[247,2,2,65,67],[248,1,1,67,68],[249,2,1,68,69],[251,1,1,69,70],[252,1,1,70,71],[256,1,1,71,72]]],[9,2,2,72,74,[[273,1,1,72,73],[285,1,1,73,74]]],[10,23,18,74,92,[[292,2,2,74,76],[293,1,1,76,77],[298,9,7,77,84],[299,1,1,84,85],[300,1,1,85,86],[301,5,3,86,89],[304,1,1,89,90],[305,3,2,90,92]]],[11,8,6,92,98,[[322,5,3,92,95],[332,1,1,95,96],[334,1,1,96,97],[335,1,1,97,98]]],[12,12,10,98,108,[[349,2,2,98,100],[354,1,1,100,101],[359,2,2,101,103],[365,2,2,103,105],[366,5,3,105,108]]],[13,28,26,108,134,[[367,1,1,108,109],[372,6,4,109,113],[375,1,1,113,114],[377,1,1,114,115],[379,1,1,115,116],[381,3,3,116,119],[382,1,1,119,120],[385,2,2,120,122],[386,1,1,122,123],[388,1,1,123,124],[391,1,1,124,125],[395,2,2,125,127],[396,1,1,127,128],[397,1,1,128,129],[398,2,2,129,131],[400,2,2,131,133],[402,1,1,133,134]]],[14,1,1,134,135,[[409,1,1,134,135]]],[15,1,1,135,136,[[421,1,1,135,136]]],[17,9,9,136,145,[[436,1,1,136,137],[444,1,1,137,138],[445,1,1,138,139],[447,1,1,139,140],[452,1,1,140,141],[457,1,1,141,142],[462,1,1,142,143],[469,2,2,143,145]]],[18,35,33,145,178,[[481,1,1,145,146],[490,1,1,146,147],[492,1,1,147,148],[497,1,1,148,149],[499,1,1,149,150],[501,1,1,150,151],[502,1,1,151,152],[505,1,1,152,153],[508,1,1,153,154],[539,1,1,154,155],[546,1,1,155,156],[550,6,5,156,161],[554,1,1,161,162],[555,2,2,162,164],[561,1,1,164,165],[563,2,2,165,167],[567,1,1,167,168],[572,2,2,168,170],[578,3,3,170,173],[581,2,1,173,174],[586,1,1,174,175],[588,1,1,175,176],[596,1,1,176,177],[616,1,1,177,178]]],[19,2,2,178,180,[[631,1,1,178,179],[633,1,1,179,180]]],[20,1,1,180,181,[[667,1,1,180,181]]],[22,18,16,181,197,[[679,1,1,181,182],[684,1,1,182,183],[685,3,2,183,185],[687,1,1,185,186],[688,3,2,186,188],[691,1,1,188,189],[692,1,1,189,190],[697,1,1,190,191],[699,1,1,191,192],[708,1,1,192,193],[710,1,1,193,194],[725,1,1,194,195],[727,1,1,195,196],[738,1,1,196,197]]],[23,8,8,197,205,[[748,1,1,197,198],[749,1,1,198,199],[757,1,1,199,200],[759,1,1,200,201],[773,1,1,201,202],[776,1,1,202,203],[795,2,2,203,205]]],[24,1,1,205,206,[[799,1,1,205,206]]],[25,5,5,206,211,[[804,1,1,206,207],[829,1,1,207,208],[832,1,1,208,209],[837,1,1,209,210],[839,1,1,210,211]]],[26,5,5,211,216,[[857,1,1,211,212],[860,4,4,212,216]]],[27,1,1,216,217,[[868,1,1,216,217]]],[28,2,2,217,219,[[877,2,2,217,219]]],[31,1,1,219,220,[[890,1,1,219,220]]],[33,1,1,220,221,[[901,1,1,220,221]]],[35,2,2,221,223,[[906,1,1,221,222],[907,1,1,222,223]]],[36,5,4,223,227,[[909,2,2,223,225],[910,3,2,225,227]]],[37,2,2,227,229,[[917,1,1,227,228],[918,1,1,228,229]]]],[500,501,899,1894,3298,3560,3565,4192,4920,4968,5013,5033,5043,5082,5091,5092,5128,5139,5142,5151,5154,5161,5162,5198,5202,5221,5224,5226,5275,5326,5328,5329,5381,5384,5405,5412,5430,5435,5582,5639,5658,5678,5697,5698,5709,5710,5714,5718,5722,5725,5804,5880,5935,5981,6194,6431,6474,6499,7032,7033,7220,7275,7337,7355,7410,7480,7484,7499,7515,7602,7646,7784,8183,8525,8774,8814,8822,9002,9003,9023,9024,9033,9043,9046,9055,9081,9110,9112,9117,9226,9252,9263,9808,9823,9824,10101,10164,10190,10737,10758,10865,10971,10983,11145,11152,11181,11182,11183,11205,11289,11290,11312,11319,11365,11430,11460,11502,11505,11507,11518,11579,11585,11620,11653,11706,11801,11825,11846,11875,11881,11906,11960,11964,12006,12183,12519,12874,13055,13099,13131,13271,13411,13487,13693,13717,13969,14076,14089,14186,14230,14245,14268,14302,14355,14835,14967,15021,15027,15033,15041,15046,15099,15131,15185,15264,15295,15296,15390,15462,15464,15515,15517,15518,15586,15771,15794,15905,16262,16511,16565,17478,17659,17779,17784,17786,17838,17857,17862,17913,17941,18005,18039,18246,18263,18607,18657,18826,19031,19082,19288,19331,19648,19771,20258,20262,20395,20512,21162,21240,21364,21435,21986,22048,22061,22063,22064,22180,22323,22324,22551,22706,22799,22820,22845,22847,22870,22873,22972,22993]]],["+",[12,11,[[4,3,3,0,3,[[154,1,1,0,1],[156,1,1,1,2],[172,1,1,2,3]]],[13,3,3,3,6,[[372,1,1,3,4],[379,1,1,4,5],[398,1,1,5,6]]],[22,1,1,6,7,[[685,1,1,6,7]]],[36,5,4,7,11,[[909,2,2,7,9],[910,3,2,9,11]]]],[4968,5013,5435,11319,11460,11881,17786,22845,22847,22870,22873]]],["breasts",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22706]]],["courage",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22061]]],["heart",[205,188,[[0,2,2,0,2,[[19,2,2,0,2]]],[1,1,1,2,3,[[63,1,1,2,3]]],[2,1,1,3,4,[[108,1,1,3,4]]],[3,1,1,4,5,[[131,1,1,4,5]]],[4,41,38,5,43,[[153,1,1,5,6],[156,2,2,6,8],[157,1,1,8,9],[158,2,2,9,11],[159,1,1,11,12],[160,4,4,12,16],[161,2,2,16,18],[162,2,2,18,20],[163,3,3,20,23],[165,1,1,23,24],[167,3,3,24,27],[169,2,2,27,29],[170,1,1,29,30],[171,1,1,30,31],[172,2,1,31,32],[178,1,1,32,33],[180,3,3,33,36],[181,2,2,36,38],[182,7,5,38,43]]],[5,4,4,43,47,[[191,1,1,43,44],[200,1,1,44,45],[208,1,1,45,46],[210,1,1,46,47]]],[6,2,2,47,49,[[229,2,2,47,49]]],[8,11,10,49,59,[[236,1,1,49,50],[237,1,1,50,51],[244,1,1,51,52],[247,2,2,52,54],[248,1,1,54,55],[249,2,1,55,56],[251,1,1,56,57],[252,1,1,57,58],[256,1,1,58,59]]],[9,2,2,59,61,[[273,1,1,59,60],[285,1,1,60,61]]],[10,21,17,61,78,[[292,2,2,61,63],[293,1,1,63,64],[298,7,6,64,70],[299,1,1,70,71],[300,1,1,71,72],[301,5,3,72,75],[304,1,1,75,76],[305,3,2,76,78]]],[11,8,6,78,84,[[322,5,3,78,81],[332,1,1,81,82],[334,1,1,82,83],[335,1,1,83,84]]],[12,10,8,84,92,[[349,2,2,84,86],[354,1,1,86,87],[359,1,1,87,88],[365,1,1,88,89],[366,5,3,89,92]]],[13,22,21,92,113,[[367,1,1,92,93],[372,4,3,93,96],[375,1,1,96,97],[381,3,3,97,100],[382,1,1,100,101],[385,2,2,101,103],[388,1,1,103,104],[391,1,1,104,105],[395,2,2,105,107],[396,1,1,107,108],[397,1,1,108,109],[398,1,1,109,110],[400,2,2,110,112],[402,1,1,112,113]]],[14,1,1,113,114,[[409,1,1,113,114]]],[15,1,1,114,115,[[421,1,1,114,115]]],[17,5,5,115,120,[[444,1,1,115,116],[445,1,1,116,117],[452,1,1,117,118],[457,1,1,118,119],[462,1,1,119,120]]],[18,33,31,120,151,[[481,1,1,120,121],[490,1,1,121,122],[492,1,1,122,123],[497,1,1,123,124],[499,1,1,124,125],[501,1,1,125,126],[502,1,1,126,127],[508,1,1,127,128],[539,1,1,128,129],[546,1,1,129,130],[550,6,5,130,135],[554,1,1,135,136],[555,2,2,136,138],[561,1,1,138,139],[563,2,2,139,141],[572,2,2,141,143],[578,3,3,143,146],[581,2,1,146,147],[586,1,1,147,148],[588,1,1,148,149],[596,1,1,149,150],[616,1,1,150,151]]],[19,2,2,151,153,[[631,1,1,151,152],[633,1,1,152,153]]],[20,1,1,153,154,[[667,1,1,153,154]]],[22,17,15,154,169,[[679,1,1,154,155],[684,1,1,155,156],[685,2,1,156,157],[687,1,1,157,158],[688,3,2,158,160],[691,1,1,160,161],[692,1,1,161,162],[697,1,1,162,163],[699,1,1,163,164],[708,1,1,164,165],[710,1,1,165,166],[725,1,1,166,167],[727,1,1,167,168],[738,1,1,168,169]]],[23,6,6,169,175,[[748,1,1,169,170],[749,1,1,170,171],[757,1,1,171,172],[759,1,1,172,173],[773,1,1,173,174],[795,1,1,174,175]]],[24,1,1,175,176,[[799,1,1,175,176]]],[25,4,4,176,180,[[804,1,1,176,177],[829,1,1,177,178],[832,1,1,178,179],[837,1,1,179,180]]],[26,3,3,180,183,[[857,1,1,180,181],[860,2,2,181,183]]],[28,2,2,183,185,[[877,2,2,183,185]]],[35,2,2,185,187,[[906,1,1,185,186],[907,1,1,186,187]]],[37,1,1,187,188,[[917,1,1,187,188]]]],[500,501,1894,3298,4192,4920,5033,5043,5082,5091,5092,5128,5139,5142,5151,5154,5161,5162,5198,5202,5221,5224,5226,5275,5326,5328,5329,5381,5384,5405,5412,5435,5582,5639,5658,5678,5697,5698,5710,5714,5718,5722,5725,5935,6194,6431,6499,7032,7033,7220,7275,7410,7480,7484,7499,7515,7602,7646,7784,8183,8525,8774,8814,8822,9002,9003,9023,9024,9033,9046,9055,9081,9110,9112,9117,9226,9252,9263,9808,9823,9824,10101,10164,10190,10737,10758,10865,10983,11145,11181,11182,11183,11205,11289,11290,11312,11365,11502,11505,11507,11518,11579,11585,11653,11706,11801,11825,11846,11875,11906,11960,11964,12006,12183,12519,13055,13099,13271,13411,13487,13969,14076,14089,14186,14230,14245,14268,14355,14835,14967,15021,15027,15033,15041,15046,15099,15131,15185,15264,15295,15296,15462,15464,15515,15517,15518,15586,15771,15794,15905,16262,16511,16565,17478,17659,17779,17784,17838,17857,17862,17913,17941,18005,18039,18246,18263,18607,18657,18826,19031,19082,19288,19331,19648,20258,20395,20512,21162,21240,21364,21986,22048,22064,22323,22324,22799,22820,22972]]],["hearts",[23,22,[[2,2,2,0,2,[[115,2,2,0,2]]],[4,2,2,2,4,[[172,1,1,2,3],[184,1,1,3,4]]],[5,3,3,4,7,[[188,1,1,4,5],[193,1,1,5,6],[209,1,1,6,7]]],[8,3,2,7,9,[[241,1,1,7,8],[242,2,1,8,9]]],[10,2,2,9,11,[[298,2,2,9,11]]],[12,1,1,11,12,[[365,1,1,11,12]]],[13,3,3,12,15,[[372,1,1,12,13],[377,1,1,13,14],[386,1,1,14,15]]],[17,1,1,15,16,[[436,1,1,15,16]]],[18,2,2,16,18,[[505,1,1,16,17],[567,1,1,17,18]]],[23,1,1,18,19,[[776,1,1,18,19]]],[26,1,1,19,20,[[860,1,1,19,20]]],[27,1,1,20,21,[[868,1,1,20,21]]],[37,1,1,21,22,[[918,1,1,21,22]]]],[3560,3565,5430,5804,5880,5981,6474,7337,7355,9024,9043,11152,11312,11430,11620,12874,14302,15390,19771,22063,22180,22993]]],["midst",[1,1,[[31,1,1,0,1,[[890,1,1,0,1]]]],[22551]]],["mind",[4,4,[[4,1,1,0,1,[[182,1,1,0,1]]],[12,1,1,1,2,[[359,1,1,1,2]]],[23,1,1,2,3,[[795,1,1,2,3]]],[25,1,1,3,4,[[839,1,1,3,4]]]],[5709,10971,20262,21435]]],["unawares",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[899]]],["understanding",[3,3,[[17,3,3,0,3,[[447,1,1,0,1],[469,2,2,1,3]]]],[13131,13693,13717]]]]},{"k":"H3825","v":[["heart",[7,6,[[26,7,6,0,6,[[851,1,1,0,1],[853,2,1,1,2],[854,3,3,2,5],[856,1,1,5,6]]]],[21788,21853,21894,21895,21896,21937]]]]},{"k":"H3826","v":[["*",[5,5,[[18,1,1,0,1,[[602,1,1,0,1]]],[19,3,3,1,4,[[642,1,1,1,2],[644,1,1,2,3],[648,1,1,3,4]]],[25,1,1,4,5,[[817,1,1,4,5]]]],[16114,16818,16876,16986,20792]]],["heart",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20792]]],["hearts",[4,4,[[18,1,1,0,1,[[602,1,1,0,1]]],[19,3,3,1,4,[[642,1,1,1,2],[644,1,1,2,3],[648,1,1,3,4]]]],[16114,16818,16876,16986]]]]},{"k":"H3827","v":[["flame",[1,1,[[1,1,1,0,1,[[52,1,1,0,1]]]],[1581]]]]},{"k":"H3828","v":[["*",[21,21,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,7,7,1,8,[[91,4,4,1,5],[94,1,1,5,6],[95,1,1,6,7],[113,1,1,7,8]]],[3,1,1,8,9,[[121,1,1,8,9]]],[12,1,1,9,10,[[346,1,1,9,10]]],[15,2,2,10,12,[[425,2,2,10,12]]],[21,3,3,12,15,[[673,1,1,12,13],[674,2,2,13,15]]],[22,3,3,15,18,[[721,1,1,15,16],[738,1,1,16,17],[744,1,1,17,18]]],[23,3,3,18,21,[[750,1,1,18,19],[761,1,1,19,20],[785,1,1,20,21]]]],[2416,2763,2764,2777,2778,2841,2864,3453,3807,10644,12676,12680,17577,17588,17596,18528,18827,18925,19109,19383,19962]]],["frankincense",[15,15,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,7,7,1,8,[[91,4,4,1,5],[94,1,1,5,6],[95,1,1,6,7],[113,1,1,7,8]]],[3,1,1,8,9,[[121,1,1,8,9]]],[12,1,1,9,10,[[346,1,1,9,10]]],[15,2,2,10,12,[[425,2,2,10,12]]],[21,3,3,12,15,[[673,1,1,12,13],[674,2,2,13,15]]]],[2416,2763,2764,2777,2778,2841,2864,3453,3807,10644,12676,12680,17577,17588,17596]]],["incense",[6,6,[[22,3,3,0,3,[[721,1,1,0,1],[738,1,1,1,2],[744,1,1,2,3]]],[23,3,3,3,6,[[750,1,1,3,4],[761,1,1,4,5],[785,1,1,5,6]]]],[18528,18827,18925,19109,19383,19962]]]]},{"k":"H3829","v":[["Lebonah",[1,1,[[6,1,1,0,1,[[231,1,1,0,1]]]],[7121]]]]},{"k":"H3830","v":[["*",[32,32,[[0,1,1,0,1,[[48,1,1,0,1]]],[9,2,2,1,3,[[267,1,1,1,2],[286,1,1,2,3]]],[11,1,1,3,4,[[322,1,1,3,4]]],[16,6,6,4,10,[[429,1,1,4,5],[431,4,4,5,9],[433,1,1,9,10]]],[17,7,7,10,17,[[459,2,2,10,12],[465,1,1,12,13],[466,1,1,13,14],[473,2,2,14,16],[476,1,1,16,17]]],[18,6,6,17,23,[[499,1,1,17,18],[512,1,1,18,19],[522,1,1,19,20],[546,1,1,20,21],[579,1,1,21,22],[581,1,1,22,23]]],[19,3,3,23,26,[[654,1,1,23,24],[658,2,2,24,26]]],[22,3,3,26,29,[[692,1,1,26,27],[741,2,2,27,29]]],[23,1,1,29,30,[[754,1,1,29,30]]],[24,1,1,30,31,[[800,1,1,30,31]]],[38,1,1,31,32,[[926,1,1,31,32]]]],[1484,8046,8562,9815,12764,12801,12802,12803,12804,12832,13443,13446,13575,13607,13802,13807,13901,14222,14423,14610,14946,15547,15577,17195,17306,17309,17947,18867,18868,19210,20434,23119]]],["apparel",[8,8,[[9,1,1,0,1,[[267,1,1,0,1]]],[16,5,5,1,6,[[431,4,4,1,5],[433,1,1,5,6]]],[22,2,2,6,8,[[741,2,2,6,8]]]],[8046,12801,12802,12803,12804,12832,18867,18868]]],["clothed",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12764]]],["clothing",[9,9,[[17,3,3,0,3,[[459,2,2,0,2],[466,1,1,2,3]]],[18,2,2,3,5,[[512,1,1,3,4],[522,1,1,4,5]]],[19,3,3,5,8,[[654,1,1,5,6],[658,2,2,6,8]]],[23,1,1,8,9,[[754,1,1,8,9]]]],[13443,13446,13607,14423,14610,17195,17306,17309,19210]]],["garment",[7,7,[[17,4,4,0,4,[[465,1,1,0,1],[473,2,2,1,3],[476,1,1,3,4]]],[18,2,2,4,6,[[546,1,1,4,5],[581,1,1,5,6]]],[38,1,1,6,7,[[926,1,1,6,7]]]],[13575,13802,13807,13901,14946,15577,23119]]],["garments",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[1484,20434]]],["on",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8562]]],["raiment",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17947]]],["vestments",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9815]]],["vesture",[2,2,[[18,2,2,0,2,[[499,1,1,0,1],[579,1,1,1,2]]]],[14222,15547]]]]},{"k":"H3831","v":[["*",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[856,1,1,1,2]]]],[21828,21942]]],["garment",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21942]]],["garments",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21828]]]]},{"k":"H3832","v":[["fall",[3,3,[[19,2,2,0,2,[[637,2,2,0,2]]],[27,1,1,2,3,[[865,1,1,2,3]]]],[16664,16666,22147]]]]},{"k":"H3833","v":[["*",[14,14,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,2,2,1,3,[[139,1,1,1,2],[140,1,1,2,3]]],[4,1,1,3,4,[[185,1,1,3,4]]],[17,2,2,4,6,[[439,1,1,4,5],[473,1,1,5,6]]],[18,1,1,6,7,[[534,1,1,6,7]]],[22,2,2,7,9,[[683,1,1,7,8],[708,1,1,8,9]]],[25,1,1,9,10,[[820,1,1,9,10]]],[27,1,1,10,11,[[874,1,1,10,11]]],[28,1,1,11,12,[[876,1,1,11,12]]],[33,2,2,12,14,[[901,2,2,12,14]]]],[1482,4440,4455,5830,12941,13832,14772,17768,18223,20883,22274,22297,22710,22711]]],["lion",[9,9,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,2,2,1,3,[[139,1,1,1,2],[140,1,1,2,3]]],[4,1,1,3,4,[[185,1,1,3,4]]],[17,1,1,4,5,[[473,1,1,4,5]]],[22,1,1,5,6,[[683,1,1,5,6]]],[27,1,1,6,7,[[874,1,1,6,7]]],[28,1,1,7,8,[[876,1,1,7,8]]],[33,1,1,8,9,[[901,1,1,8,9]]]],[1482,4440,4455,5830,13832,17768,22274,22297,22710]]],["lion's",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12941]]],["lioness",[1,1,[[25,1,1,0,1,[[820,1,1,0,1]]]],[20883]]],["lionesses",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22711]]],["lions",[1,1,[[18,1,1,0,1,[[534,1,1,0,1]]]],[14772]]],["young",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18223]]]]},{"k":"H3834","v":[["cakes",[3,3,[[9,3,3,0,3,[[279,3,3,0,3]]]],[8323,8325,8327]]]]},{"k":"H3835","v":[["*",[8,8,[[0,1,1,0,1,[[10,1,1,0,1]]],[1,2,2,1,3,[[54,2,2,1,3]]],[18,1,1,3,4,[[528,1,1,3,4]]],[22,1,1,4,5,[[679,1,1,4,5]]],[26,2,2,5,7,[[860,1,1,5,6],[861,1,1,6,7]]],[28,1,1,7,8,[[876,1,1,7,8]]]],[269,1639,1646,14698,17672,22071,22091,22298]]],["brick",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1646]]],["make",[2,2,[[0,1,1,0,1,[[10,1,1,0,1]]],[1,1,1,1,2,[[54,1,1,1,2]]]],[269,1639]]],["white",[4,4,[[22,1,1,0,1,[[679,1,1,0,1]]],[26,2,2,1,3,[[860,1,1,1,2],[861,1,1,2,3]]],[28,1,1,3,4,[[876,1,1,3,4]]]],[17672,22071,22091,22298]]],["whiter",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14698]]]]},{"k":"H3836","v":[["white",[29,24,[[0,4,3,0,3,[[29,3,2,0,2],[48,1,1,2,3]]],[1,1,1,3,4,[[65,1,1,3,4]]],[2,20,16,4,20,[[102,20,16,4,20]]],[20,1,1,20,21,[[667,1,1,20,21]]],[37,3,3,21,24,[[911,1,1,21,22],[916,2,2,22,24]]]],[865,867,1485,1978,3055,3056,3062,3065,3068,3069,3071,3072,3073,3076,3077,3078,3090,3091,3094,3095,17483,22886,22950,22953]]]]},{"k":"H3837","v":[["*",[55,47,[[0,54,46,0,46,[[23,3,2,0,2],[24,1,1,2,3],[26,1,1,3,4],[27,2,2,4,6],[28,16,13,6,19],[29,7,6,19,25],[30,21,18,25,43],[31,1,1,43,44],[45,2,2,44,46]]],[4,1,1,46,47,[[153,1,1,46,47]]]],[620,641,678,770,775,778,800,805,808,809,810,811,814,816,817,819,820,821,824,855,857,864,866,870,872,874,875,885,892,893,895,897,898,899,904,906,907,909,916,920,921,924,928,932,1404,1411,4893]]],["+",[1,1,[[0,1,1,0,1,[[28,1,1,0,1]]]],[808]]],["Laban",[50,44,[[0,49,43,0,43,[[23,3,2,0,2],[24,1,1,2,3],[26,1,1,3,4],[27,2,2,4,6],[28,15,13,6,19],[29,4,4,19,23],[30,20,17,23,40],[31,1,1,40,41],[45,2,2,41,43]]],[4,1,1,43,44,[[153,1,1,43,44]]]],[620,641,678,770,775,778,800,805,808,809,810,811,814,816,817,819,820,821,824,855,857,864,870,875,885,892,893,895,897,898,899,904,906,907,909,916,920,921,924,928,932,1404,1411,4893]]],["Laban's",[4,4,[[0,4,4,0,4,[[29,3,3,0,3],[30,1,1,3,4]]]],[866,870,872,874]]]]},{"k":"H3838","v":[["*",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12072,12468]]],["Lebana",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12468]]],["Lebanah",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12072]]]]},{"k":"H3839","v":[["*",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[27,1,1,1,2,[[865,1,1,1,2]]]],[867,22146]]],["poplar",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[867]]],["poplars",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22146]]]]},{"k":"H3840","v":[["paved",[1,1,[[1,1,1,0,1,[[73,1,1,0,1]]]],[2187]]]]},{"k":"H3841","v":[["*",[18,17,[[3,2,2,0,2,[[149,2,2,0,2]]],[5,8,7,2,9,[[196,5,4,2,6],[198,1,1,6,7],[201,1,1,7,8],[207,1,1,8,9]]],[11,4,4,9,13,[[320,1,1,9,10],[331,1,1,10,11],[335,1,1,11,12],[336,1,1,12,13]]],[12,1,1,13,14,[[343,1,1,13,14]]],[13,1,1,14,15,[[387,1,1,14,15]]],[22,1,1,15,16,[[715,1,1,15,16]]],[23,1,1,16,17,[[796,1,1,16,17]]]],[4780,4781,6093,6095,6096,6103,6145,6244,6394,9749,10069,10196,10220,10511,11634,18360,20277]]],["+",[5,5,[[3,1,1,0,1,[[149,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[11,2,2,2,4,[[335,1,1,2,3],[336,1,1,3,4]]],[23,1,1,4,5,[[796,1,1,4,5]]]],[4781,6095,10196,10220,20277]]],["Libnah",[13,12,[[3,1,1,0,1,[[149,1,1,0,1]]],[5,7,6,1,7,[[196,4,3,1,4],[198,1,1,4,5],[201,1,1,5,6],[207,1,1,6,7]]],[11,2,2,7,9,[[320,1,1,7,8],[331,1,1,8,9]]],[12,1,1,9,10,[[343,1,1,9,10]]],[13,1,1,10,11,[[387,1,1,10,11]]],[22,1,1,11,12,[[715,1,1,11,12]]]],[4780,6093,6096,6103,6145,6244,6394,9749,10069,10511,11634,18360]]]]},{"k":"H3842","v":[["moon",[3,3,[[21,1,1,0,1,[[676,1,1,0,1]]],[22,2,2,1,3,[[702,1,1,1,2],[708,1,1,2,3]]]],[17624,18118,18243]]]]},{"k":"H3843","v":[["*",[11,10,[[0,2,1,0,1,[[10,2,1,0,1]]],[1,6,6,1,7,[[50,1,1,1,2],[54,5,5,2,7]]],[22,2,2,7,9,[[687,1,1,7,8],[743,1,1,8,9]]],[25,1,1,9,10,[[805,1,1,9,10]]]],[269,1546,1639,1640,1648,1650,1651,17839,18900,20530]]],["+",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1651]]],["brick",[6,5,[[0,2,1,0,1,[[10,2,1,0,1]]],[1,3,3,1,4,[[50,1,1,1,2],[54,2,2,2,4]]],[22,1,1,4,5,[[743,1,1,4,5]]]],[269,1546,1639,1648,18900]]],["bricks",[3,3,[[1,2,2,0,2,[[54,2,2,0,2]]],[22,1,1,2,3,[[687,1,1,2,3]]]],[1640,1650,17839]]],["tile",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20530]]]]},{"k":"H3844","v":[["*",[71,64,[[4,3,3,0,3,[[153,1,1,0,1],[155,1,1,1,2],[163,1,1,2,3]]],[5,6,6,3,9,[[187,1,1,3,4],[195,1,1,4,5],[197,1,1,5,6],[198,1,1,6,7],[199,2,2,7,9]]],[6,2,2,9,11,[[213,1,1,9,10],[219,1,1,10,11]]],[10,9,8,11,19,[[294,1,1,11,12],[295,4,3,12,15],[297,1,1,15,16],[299,1,1,16,17],[300,2,2,17,19]]],[11,4,2,19,21,[[326,3,1,19,20],[331,1,1,20,21]]],[13,9,6,21,27,[[368,3,2,21,23],[374,1,1,23,24],[375,2,2,24,26],[391,3,1,26,27]]],[14,1,1,27,28,[[405,1,1,27,28]]],[18,5,5,28,33,[[506,2,2,28,30],[549,1,1,30,31],[569,1,1,31,32],[581,1,1,32,33]]],[21,7,6,33,39,[[673,1,1,33,34],[674,4,3,34,37],[675,1,1,37,38],[677,1,1,38,39]]],[22,9,9,39,48,[[680,1,1,39,40],[688,1,1,40,41],[692,1,1,41,42],[707,1,1,42,43],[711,1,1,43,44],[713,1,1,44,45],[715,1,1,45,46],[718,1,1,46,47],[738,1,1,47,48]]],[23,4,4,48,52,[[762,1,1,48,49],[766,3,3,49,52]]],[25,5,5,52,57,[[818,1,1,52,53],[828,1,1,53,54],[832,3,3,54,57]]],[27,3,3,57,60,[[875,3,3,57,60]]],[33,1,1,60,61,[[900,1,1,60,61]]],[34,1,1,61,62,[[904,1,1,61,62]]],[37,2,2,62,64,[[920,1,1,62,63],[921,1,1,63,64]]]],[4899,5000,5232,5855,6038,6124,6137,6159,6160,6571,6769,8877,8884,8887,8892,8936,9070,9096,9100,9905,10084,11219,11227,11352,11380,11384,11722,12104,14313,14314,15016,15423,15587,17580,17590,17593,17597,17613,17631,17698,17884,17936,18210,18288,18322,18376,18436,18834,19398,19460,19474,19477,20828,21126,21233,21245,21246,22287,22288,22289,22688,22765,23026,23029]]],["+",[4,3,[[13,1,1,0,1,[[368,1,1,0,1]]],[21,2,1,1,2,[[674,2,1,1,2]]],[25,1,1,2,3,[[828,1,1,2,3]]]],[11219,17590,21126]]],["Lebanon",[67,62,[[4,3,3,0,3,[[153,1,1,0,1],[155,1,1,1,2],[163,1,1,2,3]]],[5,6,6,3,9,[[187,1,1,3,4],[195,1,1,4,5],[197,1,1,5,6],[198,1,1,6,7],[199,2,2,7,9]]],[6,2,2,9,11,[[213,1,1,9,10],[219,1,1,10,11]]],[10,9,8,11,19,[[294,1,1,11,12],[295,4,3,12,15],[297,1,1,15,16],[299,1,1,16,17],[300,2,2,17,19]]],[11,4,2,19,21,[[326,3,1,19,20],[331,1,1,20,21]]],[13,8,6,21,27,[[368,2,2,21,23],[374,1,1,23,24],[375,2,2,24,26],[391,3,1,26,27]]],[14,1,1,27,28,[[405,1,1,27,28]]],[18,5,5,28,33,[[506,2,2,28,30],[549,1,1,30,31],[569,1,1,31,32],[581,1,1,32,33]]],[21,5,5,33,38,[[673,1,1,33,34],[674,2,2,34,36],[675,1,1,36,37],[677,1,1,37,38]]],[22,9,9,38,47,[[680,1,1,38,39],[688,1,1,39,40],[692,1,1,40,41],[707,1,1,41,42],[711,1,1,42,43],[713,1,1,43,44],[715,1,1,44,45],[718,1,1,45,46],[738,1,1,46,47]]],[23,4,4,47,51,[[762,1,1,47,48],[766,3,3,48,51]]],[25,4,4,51,55,[[818,1,1,51,52],[832,3,3,52,55]]],[27,3,3,55,58,[[875,3,3,55,58]]],[33,1,1,58,59,[[900,1,1,58,59]]],[34,1,1,59,60,[[904,1,1,59,60]]],[37,2,2,60,62,[[920,1,1,60,61],[921,1,1,61,62]]]],[4899,5000,5232,5855,6038,6124,6137,6159,6160,6571,6769,8877,8884,8887,8892,8936,9070,9096,9100,9905,10084,11219,11227,11352,11380,11384,11722,12104,14313,14314,15016,15423,15587,17580,17593,17597,17613,17631,17698,17884,17936,18210,18288,18322,18376,18436,18834,19398,19460,19474,19477,20828,21233,21245,21246,22287,22288,22289,22688,22765,23026,23029]]]]},{"k":"H3845","v":[["Libni",[5,5,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,1,1,1,2,[[119,1,1,1,2]]],[12,3,3,2,5,[[343,3,3,2,5]]]],[1672,3710,10471,10474,10483]]]]},{"k":"H3846","v":[["Libnites",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3713]]]]},{"k":"H3847","v":[["*",[111,103,[[0,6,6,0,6,[[2,1,1,0,1],[26,2,2,1,3],[27,1,1,3,4],[37,1,1,4,5],[40,1,1,5,6]]],[1,6,6,6,12,[[77,1,1,6,7],[78,3,3,7,10],[89,2,2,10,12]]],[2,11,9,12,21,[[95,3,2,12,14],[97,2,2,14,16],[105,5,4,16,20],[110,1,1,20,21]]],[3,2,2,21,23,[[136,2,2,21,23]]],[4,2,2,23,25,[[174,2,2,23,25]]],[6,1,1,25,26,[[216,1,1,25,26]]],[8,4,3,26,29,[[252,3,2,26,28],[263,1,1,28,29]]],[9,3,3,29,32,[[267,1,1,29,30],[279,1,1,30,31],[280,1,1,31,32]]],[10,2,2,32,34,[[312,2,2,32,34]]],[12,1,1,34,35,[[349,1,1,34,35]]],[13,7,6,35,41,[[371,1,1,35,36],[372,1,1,36,37],[384,2,2,37,39],[390,1,1,39,40],[394,2,1,40,41]]],[14,1,1,41,42,[[405,1,1,41,42]]],[16,6,6,42,48,[[429,2,2,42,44],[430,1,1,44,45],[431,3,3,45,48]]],[17,8,7,48,55,[[442,1,1,48,49],[443,1,1,49,50],[445,1,1,50,51],[462,1,1,51,52],[464,2,1,52,53],[474,1,1,53,54],[475,1,1,54,55]]],[18,10,9,55,64,[[512,1,1,55,56],[542,1,1,56,57],[570,2,1,57,58],[581,1,1,58,59],[586,2,2,59,61],[609,3,3,61,64]]],[19,2,2,64,66,[[650,1,1,64,65],[658,1,1,65,66]]],[21,1,1,66,67,[[675,1,1,66,67]]],[22,10,8,67,75,[[682,1,1,67,68],[700,1,1,68,69],[727,1,1,69,70],[728,1,1,70,71],[729,1,1,71,72],[730,2,1,72,73],[737,2,1,73,74],[739,1,1,74,75]]],[23,2,2,75,77,[[748,1,1,75,76],[790,1,1,76,77]]],[25,16,16,77,93,[[808,1,1,77,78],[810,3,3,78,81],[811,3,3,81,84],[817,1,1,84,85],[824,2,2,85,87],[827,1,1,87,88],[835,1,1,88,89],[839,1,1,89,90],[843,1,1,90,91],[845,2,2,91,93]]],[26,3,3,93,96,[[859,1,1,93,94],[861,2,2,94,96]]],[31,1,1,96,97,[[891,1,1,96,97]]],[35,1,1,97,98,[[906,1,1,97,98]]],[36,1,1,98,99,[[909,1,1,98,99]]],[37,4,4,99,103,[[913,3,3,99,102],[923,1,1,102,103]]]],[76,742,743,793,1138,1237,2334,2341,2344,2366,2720,2721,2859,2860,2924,2930,3205,3224,3225,3233,3355,4337,4339,5475,5481,6688,7623,7656,7950,8046,8335,8358,9490,9510,10738,11280,11323,11551,11571,11697,11779,12107,12763,12766,12780,12801,12802,12804,13013,13051,13097,13498,13546,13853,13874,14436,14873,15427,15572,15773,15784,16160,16167,16169,17065,17305,17601,17734,18073,18654,18665,18682,18697,18817,18853,19057,20049,20604,20624,20625,20633,20635,20639,20640,20772,21013,21019,21116,21316,21429,21566,21616,21618,22020,22087,22088,22563,22795,22846,22915,22916,22917,23063]]],["+",[19,19,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,4,4,1,5,[[77,1,1,1,2],[78,2,2,2,4],[89,1,1,4,5]]],[2,4,4,5,9,[[97,1,1,5,6],[105,2,2,6,8],[110,1,1,8,9]]],[3,2,2,9,11,[[136,2,2,9,11]]],[6,1,1,11,12,[[216,1,1,11,12]]],[8,1,1,12,13,[[252,1,1,12,13]]],[12,1,1,13,14,[[349,1,1,13,14]]],[13,2,2,14,16,[[384,1,1,14,15],[390,1,1,15,16]]],[16,3,3,16,19,[[429,1,1,16,17],[431,2,2,17,19]]]],[742,2334,2341,2344,2720,2930,3225,3233,3355,4337,4339,6688,7656,10738,11571,11697,12766,12802,12804]]],["apparel",[1,1,[[14,1,1,0,1,[[405,1,1,0,1]]]],[12107]]],["apparelled",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8335]]],["armed",[2,2,[[8,2,2,0,2,[[252,2,2,0,2]]]],[7623,7656]]],["array",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13874]]],["arrayed",[3,3,[[0,1,1,0,1,[[40,1,1,0,1]]],[13,2,2,1,3,[[371,1,1,1,2],[394,1,1,2,3]]]],[1237,11280,11779]]],["clothe",[11,11,[[1,1,1,0,1,[[89,1,1,0,1]]],[18,2,2,1,3,[[609,2,2,1,3]]],[19,1,1,3,4,[[650,1,1,3,4]]],[22,3,3,4,7,[[700,1,1,4,5],[727,1,1,5,6],[728,1,1,6,7]]],[25,2,2,7,9,[[827,1,1,7,8],[835,1,1,8,9]]],[36,1,1,9,10,[[909,1,1,9,10]]],[37,1,1,10,11,[[913,1,1,10,11]]]],[2721,16167,16169,17065,18073,18654,18665,21116,21316,22846,22916]]],["clothed",[38,37,[[0,1,1,0,1,[[2,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]],[9,1,1,2,3,[[267,1,1,2,3]]],[13,3,3,3,6,[[372,1,1,3,4],[384,1,1,4,5],[394,1,1,5,6]]],[17,5,5,6,11,[[442,1,1,6,7],[443,1,1,7,8],[445,1,1,8,9],[464,1,1,9,10],[474,1,1,10,11]]],[18,8,7,11,18,[[512,1,1,11,12],[542,1,1,12,13],[570,2,1,13,14],[581,1,1,14,15],[586,2,2,15,17],[609,1,1,17,18]]],[19,1,1,18,19,[[658,1,1,18,19]]],[22,1,1,19,20,[[739,1,1,19,20]]],[25,11,11,20,31,[[808,1,1,20,21],[810,3,3,21,24],[811,3,3,24,27],[817,1,1,27,28],[824,2,2,28,30],[839,1,1,30,31]]],[26,3,3,31,34,[[859,1,1,31,32],[861,2,2,32,34]]],[35,1,1,34,35,[[906,1,1,34,35]]],[37,2,2,35,37,[[913,2,2,35,37]]]],[76,2924,8046,11323,11551,11779,13013,13051,13097,13546,13853,14436,14873,15427,15572,15773,15784,16160,17305,18853,20604,20624,20625,20633,20635,20639,20640,20772,21013,21019,21429,22020,22087,22088,22795,22915,22917]]],["clothest",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19057]]],["on",[26,23,[[0,2,2,0,2,[[27,1,1,0,1],[37,1,1,1,2]]],[1,1,1,2,3,[[78,1,1,2,3]]],[2,5,4,3,7,[[95,2,2,3,5],[105,3,2,5,7]]],[4,1,1,7,8,[[174,1,1,7,8]]],[8,1,1,8,9,[[263,1,1,8,9]]],[9,1,1,9,10,[[280,1,1,9,10]]],[10,1,1,10,11,[[312,1,1,10,11]]],[16,2,2,11,13,[[429,1,1,11,12],[430,1,1,12,13]]],[17,2,2,13,15,[[462,1,1,13,14],[464,1,1,14,15]]],[21,1,1,15,16,[[675,1,1,15,16]]],[22,5,3,16,19,[[729,1,1,16,17],[730,2,1,17,18],[737,2,1,18,19]]],[23,1,1,19,20,[[790,1,1,19,20]]],[25,2,2,20,22,[[843,1,1,20,21],[845,1,1,21,22]]],[31,1,1,22,23,[[891,1,1,22,23]]]],[793,1138,2366,2859,2860,3205,3224,5475,7950,8358,9490,12763,12780,13498,13546,17601,18682,18697,18817,20049,21566,21618,22563]]],["put",[3,3,[[0,1,1,0,1,[[26,1,1,0,1]]],[2,1,1,1,2,[[95,1,1,1,2]]],[10,1,1,2,3,[[312,1,1,2,3]]]],[743,2859,9510]]],["wear",[4,4,[[4,1,1,0,1,[[174,1,1,0,1]]],[16,1,1,1,2,[[431,1,1,1,2]]],[22,1,1,2,3,[[682,1,1,2,3]]],[37,1,1,3,4,[[923,1,1,3,4]]]],[5481,12801,17734,23063]]],["with",[1,1,[[25,1,1,0,1,[[845,1,1,0,1]]]],[21616]]]]},{"k":"H3848","v":[["clothed",[3,3,[[26,3,3,0,3,[[854,3,3,0,3]]]],[21881,21890,21903]]]]},{"k":"H3849","v":[["*",[5,5,[[2,5,5,0,5,[[103,5,5,0,5]]]],[3121,3123,3126,3132,3135]]],["+",[1,1,[[2,1,1,0,1,[[103,1,1,0,1]]]],[3126]]],["log",[4,4,[[2,4,4,0,4,[[103,4,4,0,4]]]],[3121,3123,3132,3135]]]]},{"k":"H3850","v":[["Lod",[4,4,[[12,1,1,0,1,[[345,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,2,2,2,4,[[419,1,1,2,3],[423,1,1,3,4]]]],[10587,12060,12457,12623]]]]},{"k":"H3851","v":[["*",[12,10,[[6,4,2,0,2,[[213,2,1,0,1],[223,2,1,1,2]]],[17,2,2,2,4,[[474,1,1,2,3],[476,1,1,3,4]]],[22,4,4,4,8,[[691,1,1,4,5],[707,1,1,5,6],[708,1,1,6,7],[744,1,1,7,8]]],[28,1,1,8,9,[[877,1,1,8,9]]],[33,1,1,9,10,[[902,1,1,9,10]]]],[6590,6904,13857,13909,17914,18199,18247,18937,22316,22715]]],["+",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17914]]],["blade",[2,1,[[6,2,1,0,1,[[213,2,1,0,1]]]],[6590]]],["bright",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22715]]],["flame",[6,5,[[6,2,1,0,1,[[223,2,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[22,2,2,2,4,[[707,1,1,2,3],[708,1,1,3,4]]],[28,1,1,4,5,[[877,1,1,4,5]]]],[6904,13909,18199,18247,22316]]],["flames",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18937]]],["glittering",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13857]]]]},{"k":"H3852","v":[["*",[19,19,[[3,1,1,0,1,[[137,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[18,4,4,2,6,[[506,1,1,2,3],[560,1,1,3,4],[582,1,1,4,5],[583,1,1,5,6]]],[22,5,5,6,11,[[682,1,1,6,7],[683,1,1,7,8],[688,1,1,8,9],[721,1,1,9,10],[725,1,1,10,11]]],[23,1,1,11,12,[[792,1,1,11,12]]],[24,1,1,12,13,[[798,1,1,12,13]]],[25,1,1,13,14,[[821,1,1,13,14]]],[26,1,1,14,15,[[860,1,1,14,15]]],[27,1,1,15,16,[[868,1,1,15,16]]],[28,2,2,16,18,[[876,1,1,16,17],[877,1,1,17,18]]],[30,1,1,18,19,[[888,1,1,18,19]]]],[4368,7625,14315,15255,15638,15669,17738,17763,17867,18507,18613,20125,20335,20942,22069,22184,22310,22314,22528]]],["flame",[12,12,[[3,1,1,0,1,[[137,1,1,0,1]]],[18,2,2,1,3,[[560,1,1,1,2],[583,1,1,2,3]]],[22,4,4,3,7,[[683,1,1,3,4],[688,1,1,4,5],[721,1,1,5,6],[725,1,1,6,7]]],[23,1,1,7,8,[[792,1,1,7,8]]],[26,1,1,8,9,[[860,1,1,8,9]]],[28,2,2,9,11,[[876,1,1,9,10],[877,1,1,10,11]]],[30,1,1,11,12,[[888,1,1,11,12]]]],[4368,15255,15669,17763,17867,18507,18613,20125,22069,22310,22314,22528]]],["flames",[1,1,[[18,1,1,0,1,[[506,1,1,0,1]]]],[14315]]],["flaming",[5,5,[[18,1,1,0,1,[[582,1,1,0,1]]],[22,1,1,1,2,[[682,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]],[25,1,1,3,4,[[821,1,1,3,4]]],[27,1,1,4,5,[[868,1,1,4,5]]]],[15638,17738,20335,20942,22184]]],["head",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7625]]]]},{"k":"H3853","v":[["Lehabim",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[247,10263]]]]},{"k":"H3854","v":[["study",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17535]]]]},{"k":"H3855","v":[["Lahad",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10387]]]]},{"k":"H3856","v":[["*",[2,2,[[0,1,1,0,1,[[46,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]]],[1433,17159]]],["fainted",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1433]]],["mad",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17159]]]]},{"k":"H3857","v":[["*",[11,11,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[18,5,5,2,7,[[534,1,1,2,3],[560,1,1,3,4],[574,1,1,4,5],[581,1,1,5,6],[583,1,1,6,7]]],[22,1,1,7,8,[[720,1,1,7,8]]],[28,2,2,8,10,[[876,1,1,8,9],[877,1,1,9,10]]],[38,1,1,10,11,[[928,1,1,10,11]]]],[5780,13909,14772,15255,15481,15575,15669,18505,22310,22314,23139]]],["+",[2,2,[[18,1,1,0,1,[[560,1,1,0,1]]],[38,1,1,1,2,[[928,1,1,1,2]]]],[15255,23139]]],["burned",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22310]]],["burneth",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22314]]],["fire",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,1,1,1,2,[[534,1,1,1,2]]],[22,1,1,2,3,[[720,1,1,2,3]]]],[5780,14772,18505]]],["flaming",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15575]]],["kindleth",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13909]]],["up",[2,2,[[18,2,2,0,2,[[574,1,1,0,1],[583,1,1,1,2]]]],[15481,15669]]]]},{"k":"H3858","v":[["*",[2,2,[[0,1,1,0,1,[[2,1,1,0,1]]],[1,1,1,1,2,[[56,1,1,1,2]]]],[79,1696]]],["enchantments",[1,1,[[1,1,1,0,1,[[56,1,1,0,1]]]],[1696]]],["flaming",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[79]]]]},{"k":"H3859","v":[["wounds",[2,2,[[19,2,2,0,2,[[645,1,1,0,1],[653,1,1,1,2]]]],[16909,17163]]]]},{"k":"H3860","v":[]},{"k":"H3861","v":[["*",[10,10,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,9,9,1,10,[[851,4,4,1,5],[852,1,1,5,6],[853,1,1,6,7],[855,3,3,7,10]]]],[12146,21764,21767,21769,21788,21835,21864,21910,21912,21917]]],["But",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12146]]],["Wherefore",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]],["but",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21788]]],["except",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[852,1,1,1,2],[855,1,1,2,3]]]],[21769,21835,21910]]],["save",[2,2,[[26,2,2,0,2,[[855,2,2,0,2]]]],[21912,21917]]],["therefore",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21764,21767]]]]},{"k":"H3862","v":[["company",[1,1,[[8,1,1,0,1,[[254,1,1,0,1]]]],[7726]]]]},{"k":"H3863","v":[["*",[22,21,[[0,4,4,0,4,[[16,1,1,0,1],[22,1,1,1,2],[29,1,1,2,3],[49,1,1,3,4]]],[3,4,3,4,7,[[130,2,1,4,5],[136,1,1,5,6],[138,1,1,6,7]]],[4,1,1,7,8,[[184,1,1,7,8]]],[5,1,1,8,9,[[193,1,1,8,9]]],[6,2,2,9,11,[[218,1,1,9,10],[223,1,1,10,11]]],[8,1,1,11,12,[[249,1,1,11,12]]],[9,2,2,12,14,[[284,1,1,12,13],[285,1,1,13,14]]],[17,2,2,14,16,[[441,1,1,14,15],[451,1,1,15,16]]],[18,1,1,16,17,[[558,1,1,16,17]]],[22,2,2,17,19,[[726,1,1,17,18],[742,1,1,18,19]]],[25,1,1,19,20,[[815,1,1,19,20]]],[32,1,1,20,21,[[894,1,1,20,21]]]],[415,584,864,1521,4110,4314,4404,5787,5983,6738,6907,7538,8490,8517,12980,13242,15230,18632,18886,20746,22606]]],["+",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7538]]],["God",[3,3,[[3,2,2,0,2,[[130,1,1,0,1],[136,1,1,1,2]]],[5,1,1,2,3,[[193,1,1,2,3]]]],[4110,4314,5983]]],["If",[3,3,[[6,1,1,0,1,[[223,1,1,0,1]]],[25,1,1,1,2,[[815,1,1,1,2]]],[32,1,1,2,3,[[894,1,1,2,3]]]],[6907,20746,22606]]],["Though",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8490]]],["if",[3,3,[[6,1,1,0,1,[[218,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]],[17,1,1,2,3,[[451,1,1,2,3]]]],[6738,8517,13242]]],["peradventure",[1,1,[[0,1,1,0,1,[[49,1,1,0,1]]]],[1521]]],["that",[7,7,[[0,1,1,0,1,[[16,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[17,1,1,3,4,[[441,1,1,3,4]]],[18,1,1,4,5,[[558,1,1,4,5]]],[22,2,2,5,7,[[726,1,1,5,6],[742,1,1,6,7]]]],[415,4110,5787,12980,15230,18632,18886]]],["thee",[1,1,[[0,1,1,0,1,[[22,1,1,0,1]]]],[584]]],["would",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]]],[864,4404]]]]},{"k":"H3864","v":[["*",[5,5,[[3,1,1,0,1,[[142,1,1,0,1]]],[13,2,2,1,3,[[378,1,1,1,2],[382,1,1,2,3]]],[26,1,1,3,4,[[860,1,1,3,4]]],[33,1,1,4,5,[[902,1,1,4,5]]]],[4547,11440,11517,22079,22721]]],["Libnites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4547]]],["Libyans",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22079]]],["Lubim",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22721]]],["Lubims",[2,2,[[13,2,2,0,2,[[378,1,1,0,1],[382,1,1,1,2]]]],[11440,11517]]]]},{"k":"H3865","v":[["*",[5,5,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]],[25,2,2,3,5,[[828,1,1,3,4],[831,1,1,4,5]]]],[256,10269,18941,21131,21209]]],["Lud",[4,4,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]],[25,1,1,3,4,[[828,1,1,3,4]]]],[256,10269,18941,21131]]],["Lydia",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21209]]]]},{"k":"H3866","v":[["*",[3,3,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[23,1,1,2,3,[[790,1,1,2,3]]]],[247,10263,20054]]],["Ludim",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[247,10263]]],["Lydians",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20054]]]]},{"k":"H3867","v":[["*",[26,22,[[0,1,1,0,1,[[28,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[3,2,2,2,4,[[134,2,2,2,4]]],[4,4,2,4,6,[[180,4,2,4,6]]],[15,1,1,6,7,[[417,1,1,6,7]]],[16,1,1,7,8,[[434,1,1,7,8]]],[18,4,4,8,12,[[514,2,2,8,10],[560,1,1,10,11],[589,1,1,11,12]]],[19,3,2,12,14,[[646,1,1,12,13],[649,2,1,13,14]]],[20,1,1,14,15,[[666,1,1,14,15]]],[22,5,4,15,19,[[692,1,1,15,16],[702,2,1,16,17],[734,2,2,17,19]]],[23,1,1,19,20,[[794,1,1,19,20]]],[26,1,1,20,21,[[860,1,1,20,21]]],[37,1,1,21,22,[[912,1,1,21,22]]]],[829,2138,4259,4261,5623,5655,12386,12861,14471,14476,15249,15808,16942,17022,17473,17929,18097,18756,18759,20171,22070,22910]]],["+",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17022]]],["abide",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17473]]],["borrow",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5623]]],["borrowed",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12386]]],["borrower",[2,2,[[19,1,1,0,1,[[649,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]]],[17022,18097]]],["borroweth",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14471]]],["cleave",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22070]]],["himself",[1,1,[[22,1,1,0,1,[[734,1,1,0,1]]]],[18756]]],["joined",[6,6,[[0,1,1,0,1,[[28,1,1,0,1]]],[3,2,2,1,3,[[134,2,2,1,3]]],[18,1,1,3,4,[[560,1,1,3,4]]],[22,1,1,4,5,[[692,1,1,4,5]]],[37,1,1,5,6,[[912,1,1,5,6]]]],[829,4259,4261,15249,17929,22910]]],["lend",[4,3,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,3,2,1,3,[[180,3,2,1,3]]]],[2138,5623,5655]]],["lender",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18097]]],["lendeth",[3,3,[[18,2,2,0,2,[[514,1,1,0,1],[589,1,1,1,2]]],[19,1,1,2,3,[[646,1,1,2,3]]]],[14476,15808,16942]]],["ourselves",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20171]]],["themselves",[2,2,[[16,1,1,0,1,[[434,1,1,0,1]]],[22,1,1,1,2,[[734,1,1,1,2]]]],[12861,18759]]]]},{"k":"H3868","v":[["*",[6,6,[[19,5,5,0,5,[[629,1,1,0,1],[630,2,2,1,3],[631,1,1,3,4],[641,1,1,4,5]]],[22,1,1,5,6,[[708,1,1,5,6]]]],[16448,16476,16487,16511,16774,18229]]],["depart",[2,2,[[19,2,2,0,2,[[630,1,1,0,1],[631,1,1,1,2]]]],[16476,16511]]],["froward",[2,2,[[19,2,2,0,2,[[629,1,1,0,1],[630,1,1,1,2]]]],[16448,16487]]],["perverse",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16774]]],["perverseness",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18229]]]]},{"k":"H3869","v":[["hazel",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[867]]]]},{"k":"H3870","v":[["Luz",[8,7,[[0,3,3,0,3,[[27,1,1,0,1],[34,1,1,1,2],[47,1,1,2,3]]],[5,3,2,3,5,[[202,1,1,3,4],[204,2,1,4,5]]],[6,2,2,5,7,[[211,2,2,5,7]]]],[792,1017,1454,6267,6306,6532,6535]]]]},{"k":"H3871","v":[["*",[43,33,[[1,17,11,0,11,[[73,1,1,0,1],[76,1,1,1,2],[80,2,1,2,3],[81,5,3,3,6],[83,7,4,6,10],[87,1,1,10,11]]],[4,16,12,11,23,[[156,1,1,11,12],[157,1,1,12,13],[161,7,5,13,18],[162,7,5,18,23]]],[10,2,2,23,25,[[297,1,1,23,24],[298,1,1,24,25]]],[13,1,1,25,26,[[371,1,1,25,26]]],[19,2,2,26,28,[[630,1,1,26,27],[634,1,1,27,28]]],[21,1,1,28,29,[[678,1,1,28,29]]],[22,1,1,29,30,[[708,1,1,29,30]]],[23,1,1,30,31,[[761,1,1,30,31]]],[25,1,1,31,32,[[828,1,1,31,32]]],[34,1,1,32,33,[[904,1,1,32,33]]]],[2189,2280,2438,2453,2454,2457,2497,2500,2524,2525,2640,5017,5075,5166,5167,5168,5172,5174,5187,5188,5189,5190,5191,8970,8994,11278,16458,16578,17649,18225,19358,21126,22750]]],["+",[3,3,[[1,2,2,0,2,[[83,2,2,0,2]]],[4,1,1,2,3,[[162,1,1,2,3]]]],[2497,2524,5188]]],["boards",[4,4,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[21,1,1,2,3,[[678,1,1,2,3]]],[25,1,1,3,4,[[828,1,1,3,4]]]],[2280,2640,17649,21126]]],["plates",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8970]]],["table",[4,4,[[19,2,2,0,2,[[630,1,1,0,1],[634,1,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]],[23,1,1,3,4,[[761,1,1,3,4]]]],[16458,16578,18225,19358]]],["tables",[31,23,[[1,13,8,0,8,[[73,1,1,0,1],[80,2,1,1,2],[81,5,3,2,5],[83,5,3,5,8]]],[4,15,12,8,20,[[156,1,1,8,9],[157,1,1,9,10],[161,7,5,10,15],[162,6,5,15,20]]],[10,1,1,20,21,[[298,1,1,20,21]]],[13,1,1,21,22,[[371,1,1,21,22]]],[34,1,1,22,23,[[904,1,1,22,23]]]],[2189,2438,2453,2454,2457,2497,2500,2525,5017,5075,5166,5167,5168,5172,5174,5187,5188,5189,5190,5191,8994,11278,22750]]]]},{"k":"H3872","v":[["Luhith",[2,2,[[22,1,1,0,1,[[693,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[17965,20085]]]]},{"k":"H3873","v":[["*",[2,2,[[15,2,2,0,2,[[415,1,1,0,1],[422,1,1,1,2]]]],[12339,12573]]],["Hallohesh",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12573]]],["Halohesh",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12339]]]]},{"k":"H3874","v":[["*",[3,3,[[8,1,1,0,1,[[256,1,1,0,1]]],[10,1,1,1,2,[[309,1,1,1,2]]],[22,1,1,2,3,[[703,1,1,2,3]]]],[7781,9400,18125]]],["cast",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18125]]],["wrapped",[2,2,[[8,1,1,0,1,[[256,1,1,0,1]]],[10,1,1,1,2,[[309,1,1,1,2]]]],[7781,9400]]]]},{"k":"H3875","v":[["covering",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18125]]]]},{"k":"H3876","v":[["*",[33,30,[[0,30,27,0,27,[[10,2,2,0,2],[11,2,2,2,4],[12,9,8,4,12],[13,2,2,12,14],[18,15,13,14,27]]],[4,2,2,27,29,[[154,2,2,27,29]]],[18,1,1,29,30,[[560,1,1,29,30]]]],[293,297,302,303,319,323,325,326,328,329,330,332,348,352,458,462,463,466,467,469,471,472,475,480,486,487,493,4947,4957,15249]]],["Lot",[32,29,[[0,29,26,0,26,[[10,2,2,0,2],[11,2,2,2,4],[12,8,7,4,11],[13,2,2,11,13],[18,15,13,13,26]]],[4,2,2,26,28,[[154,2,2,26,28]]],[18,1,1,28,29,[[560,1,1,28,29]]]],[293,297,302,303,319,323,326,328,329,330,332,348,352,458,462,463,466,467,469,471,472,475,480,486,487,493,4947,4957,15249]]],["Lot's",[1,1,[[0,1,1,0,1,[[12,1,1,0,1]]]],[325]]]]},{"k":"H3877","v":[["*",[7,5,[[0,4,3,0,3,[[35,4,3,0,3]]],[12,3,2,3,5,[[338,3,2,3,5]]]],[1060,1062,1069,10290,10291]]],["Lotan",[5,5,[[0,3,3,0,3,[[35,3,3,0,3]]],[12,2,2,3,5,[[338,2,2,3,5]]]],[1060,1062,1069,10290,10291]]],["Lotan's",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1062,10291]]]]},{"k":"H3878","v":[["*",[66,63,[[0,6,6,0,6,[[28,1,1,0,1],[33,2,2,1,3],[34,1,1,3,4],[45,1,1,4,5],[48,1,1,5,6]]],[1,8,6,6,12,[[50,1,1,6,7],[51,2,1,7,8],[55,3,2,8,10],[81,2,2,10,12]]],[3,15,14,12,26,[[117,1,1,12,13],[119,3,3,13,16],[120,1,1,16,17],[132,4,4,17,21],[133,2,2,21,23],[134,2,2,23,25],[142,2,1,25,26]]],[4,7,7,26,33,[[162,2,2,26,28],[170,1,1,28,29],[173,1,1,29,30],[179,1,1,30,31],[183,1,1,31,32],[185,1,1,32,33]]],[5,3,3,33,36,[[199,2,2,33,35],[207,1,1,35,36]]],[10,1,1,36,37,[[302,1,1,36,37]]],[12,14,14,37,51,[[339,1,1,37,38],[343,5,5,38,43],[346,1,1,43,44],[349,1,1,44,45],[358,1,1,45,46],[360,3,3,46,49],[361,2,2,49,51]]],[13,1,1,51,52,[[397,1,1,51,52]]],[14,2,2,52,54,[[410,2,2,52,54]]],[15,2,2,54,56,[[422,1,1,54,55],[424,1,1,55,56]]],[18,1,1,56,57,[[612,1,1,56,57]]],[25,2,2,57,59,[[841,1,1,57,58],[849,1,1,58,59]]],[37,1,1,59,60,[[922,1,1,59,60]]],[38,3,3,60,63,[[926,2,2,60,62],[927,1,1,62,63]]]],[829,1005,1010,1034,1397,1478,1534,1555,1671,1674,2464,2466,3653,3698,3707,3709,3745,4195,4201,4202,4204,4247,4252,4259,4278,4548,5194,5195,5385,5452,5597,5737,5818,6168,6187,6391,9182,10307,10455,10470,10492,10497,10501,10633,10746,10940,10989,10997,11007,11021,11035,11866,12216,12219,12588,12647,16195,21523,21733,23058,23107,23111,23123]]],["+",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3698]]],["Levi",[63,60,[[0,6,6,0,6,[[28,1,1,0,1],[33,2,2,1,3],[34,1,1,3,4],[45,1,1,4,5],[48,1,1,5,6]]],[1,8,6,6,12,[[50,1,1,6,7],[51,2,1,7,8],[55,3,2,8,10],[81,2,2,10,12]]],[3,14,13,12,25,[[117,1,1,12,13],[119,2,2,13,15],[120,1,1,15,16],[132,4,4,16,20],[133,2,2,20,22],[134,2,2,22,24],[142,2,1,24,25]]],[4,7,7,25,32,[[162,2,2,25,27],[170,1,1,27,28],[173,1,1,28,29],[179,1,1,29,30],[183,1,1,30,31],[185,1,1,31,32]]],[5,3,3,32,35,[[199,2,2,32,34],[207,1,1,34,35]]],[10,1,1,35,36,[[302,1,1,35,36]]],[12,13,13,36,49,[[339,1,1,36,37],[343,5,5,37,42],[346,1,1,42,43],[349,1,1,43,44],[358,1,1,44,45],[360,3,3,45,48],[361,1,1,48,49]]],[14,2,2,49,51,[[410,2,2,49,51]]],[15,2,2,51,53,[[422,1,1,51,52],[424,1,1,52,53]]],[18,1,1,53,54,[[612,1,1,53,54]]],[25,2,2,54,56,[[841,1,1,54,55],[849,1,1,55,56]]],[37,1,1,56,57,[[922,1,1,56,57]]],[38,3,3,57,60,[[926,2,2,57,59],[927,1,1,59,60]]]],[829,1005,1010,1034,1397,1478,1534,1555,1671,1674,2464,2466,3653,3707,3709,3745,4195,4201,4202,4204,4247,4252,4259,4278,4548,5194,5195,5385,5452,5597,5737,5818,6168,6187,6391,9182,10307,10455,10470,10492,10497,10501,10633,10746,10940,10989,10997,11007,11035,12216,12219,12588,12647,16195,21523,21733,23058,23107,23111,23123]]],["Levite",[1,1,[[13,1,1,0,1,[[397,1,1,0,1]]]],[11866]]],["Levites",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11021]]]]},{"k":"H3879","v":[["Levites",[4,4,[[14,4,4,0,4,[[408,2,2,0,2],[409,2,2,2,4]]]],[12167,12169,12186,12197]]]]},{"k":"H3880","v":[["ornament",[2,2,[[19,2,2,0,2,[[628,1,1,0,1],[631,1,1,1,2]]]],[16409,16499]]]]},{"k":"H3881","v":[["*",[283,256,[[1,3,3,0,3,[[53,1,1,0,1],[55,1,1,1,2],[87,1,1,2,3]]],[2,4,2,3,5,[[114,4,2,3,5]]],[3,60,48,5,53,[[117,6,4,5,9],[118,2,2,9,11],[119,13,9,11,20],[120,2,2,20,22],[123,2,2,22,24],[124,20,15,24,39],[134,5,5,39,44],[142,2,2,44,46],[147,2,2,46,48],[151,6,5,48,53]]],[4,19,19,53,72,[[164,3,3,53,56],[166,2,2,56,58],[168,2,2,58,60],[169,2,2,60,62],[170,3,3,62,65],[176,1,1,65,66],[178,3,3,66,69],[179,2,2,69,71],[183,1,1,71,72]]],[5,14,14,72,86,[[189,1,1,72,73],[194,1,1,73,74],[200,2,2,74,76],[204,1,1,76,77],[207,9,9,77,86]]],[6,10,10,86,96,[[227,6,6,86,92],[228,2,2,92,94],[229,1,1,94,95],[230,1,1,95,96]]],[8,1,1,96,97,[[241,1,1,96,97]]],[9,1,1,97,98,[[281,1,1,97,98]]],[10,1,1,98,99,[[298,1,1,98,99]]],[12,34,34,99,133,[[343,3,3,99,102],[346,6,6,102,108],[350,1,1,108,109],[352,11,11,109,120],[353,1,1,120,121],[360,4,4,121,125],[361,3,3,125,128],[363,2,2,128,130],[364,1,1,130,131],[365,2,2,131,133]]],[13,63,57,133,190,[[371,3,3,133,136],[373,1,1,136,137],[374,2,2,137,139],[377,2,2,139,141],[379,2,2,141,143],[383,2,1,143,144],[385,2,2,144,146],[386,2,2,146,148],[389,6,6,148,154],[390,4,3,154,157],[395,9,8,157,165],[396,7,7,165,172],[397,6,5,172,177],[400,5,4,177,181],[401,10,9,181,190]]],[14,18,17,190,207,[[403,1,1,190,191],[404,2,2,191,193],[405,5,4,193,197],[408,1,1,197,198],[409,1,1,198,199],[410,4,4,199,203],[411,1,1,203,204],[412,3,3,204,207]]],[15,43,37,207,244,[[415,1,1,207,208],[419,3,3,208,211],[420,4,4,211,215],[421,3,3,215,218],[422,8,5,218,223],[423,7,7,223,230],[424,10,8,230,238],[425,7,6,238,244]]],[22,1,1,244,245,[[744,1,1,244,245]]],[23,3,3,245,248,[[777,3,3,245,248]]],[25,8,8,248,256,[[844,1,1,248,249],[845,2,2,249,251],[846,1,1,251,252],[849,4,4,252,256]]]],[1615,1680,2654,3501,3502,3651,3654,3655,3657,3675,3691,3701,3704,3712,3724,3731,3733,3737,3738,3741,3761,3789,3855,3856,3945,3948,3949,3950,3951,3952,3953,3954,3957,3958,3959,3960,3961,3963,3965,4263,4280,4281,4283,4287,4546,4547,4694,4711,4847,4849,4851,4852,4853,5252,5258,5259,5317,5319,5353,5356,5373,5382,5385,5390,5391,5533,5577,5578,5579,5594,5599,5753,5896,6035,6190,6191,6300,6382,6384,6385,6389,6401,6408,6415,6421,6422,6987,6989,6990,6991,6992,6993,6996,7008,7025,7058,7346,8413,8989,10473,10502,10518,10617,10629,10641,10646,10648,10649,10762,10793,10795,10802,10803,10805,10806,10807,10808,10813,10817,10818,10824,10985,10986,11009,11010,11021,11045,11046,11094,11097,11126,11156,11164,11272,11273,11280,11330,11360,11361,11427,11428,11462,11463,11531,11584,11587,11601,11606,11658,11660,11662,11663,11664,11674,11682,11683,11688,11795,11796,11803,11807,11816,11817,11821,11825,11842,11843,11844,11848,11849,11852,11854,11856,11858,11863,11871,11873,11942,11945,11946,11963,11969,11971,11974,11975,11976,11977,11980,11981,11984,12021,12067,12097,12105,12106,12107,12109,12171,12180,12221,12230,12231,12234,12238,12257,12267,12275,12344,12421,12463,12493,12500,12502,12504,12506,12515,12516,12549,12558,12577,12583,12586,12587,12591,12603,12604,12606,12608,12610,12624,12625,12632,12646,12648,12651,12654,12668,12671,12676,12681,12684,12693,12700,12701,18943,19793,19796,19797,21591,21609,21614,21635,21713,21714,21715,21724]]],["+",[4,4,[[3,1,1,0,1,[[124,1,1,0,1]]],[5,1,1,1,2,[[207,1,1,1,2]]],[6,1,1,2,3,[[230,1,1,2,3]]],[12,1,1,3,4,[[360,1,1,3,4]]]],[3961,6389,7058,11010]]],["Levite",[23,23,[[1,1,1,0,1,[[53,1,1,0,1]]],[4,11,11,1,12,[[164,3,3,1,4],[166,2,2,4,6],[168,2,2,6,8],[170,1,1,8,9],[178,3,3,9,12]]],[6,9,9,12,21,[[227,6,6,12,18],[228,2,2,18,20],[229,1,1,20,21]]],[13,1,1,21,22,[[386,1,1,21,22]]],[14,1,1,22,23,[[412,1,1,22,23]]]],[1615,5252,5258,5259,5317,5319,5353,5356,5390,5577,5578,5579,6987,6989,6990,6991,6992,6993,6996,7008,7025,11601,12267]]],["Levites",[256,230,[[1,2,2,0,2,[[55,1,1,0,1],[87,1,1,1,2]]],[2,4,2,2,4,[[114,4,2,2,4]]],[3,59,48,4,52,[[117,6,4,4,8],[118,2,2,8,10],[119,13,9,10,19],[120,2,2,19,21],[123,2,2,21,23],[124,19,15,23,38],[134,5,5,38,43],[142,2,2,43,45],[147,2,2,45,47],[151,6,5,47,52]]],[4,8,8,52,60,[[169,2,2,52,54],[170,2,2,54,56],[176,1,1,56,57],[179,2,2,57,59],[183,1,1,59,60]]],[5,13,13,60,73,[[189,1,1,60,61],[194,1,1,61,62],[200,2,2,62,64],[204,1,1,64,65],[207,8,8,65,73]]],[8,1,1,73,74,[[241,1,1,73,74]]],[9,1,1,74,75,[[281,1,1,74,75]]],[10,1,1,75,76,[[298,1,1,75,76]]],[12,33,33,76,109,[[343,3,3,76,79],[346,6,6,79,85],[350,1,1,85,86],[352,11,11,86,97],[353,1,1,97,98],[360,3,3,98,101],[361,3,3,101,104],[363,2,2,104,106],[364,1,1,106,107],[365,2,2,107,109]]],[13,62,56,109,165,[[371,3,3,109,112],[373,1,1,112,113],[374,2,2,113,115],[377,2,2,115,117],[379,2,2,117,119],[383,2,1,119,120],[385,2,2,120,122],[386,1,1,122,123],[389,6,6,123,129],[390,4,3,129,132],[395,9,8,132,140],[396,7,7,140,147],[397,6,5,147,152],[400,5,4,152,156],[401,10,9,156,165]]],[14,17,16,165,181,[[403,1,1,165,166],[404,2,2,166,168],[405,5,4,168,172],[408,1,1,172,173],[409,1,1,173,174],[410,4,4,174,178],[411,1,1,178,179],[412,2,2,179,181]]],[15,43,37,181,218,[[415,1,1,181,182],[419,3,3,182,185],[420,4,4,185,189],[421,3,3,189,192],[422,8,5,192,197],[423,7,7,197,204],[424,10,8,204,212],[425,7,6,212,218]]],[22,1,1,218,219,[[744,1,1,218,219]]],[23,3,3,219,222,[[777,3,3,219,222]]],[25,8,8,222,230,[[844,1,1,222,223],[845,2,2,223,225],[846,1,1,225,226],[849,4,4,226,230]]]],[1680,2654,3501,3502,3651,3654,3655,3657,3675,3691,3701,3704,3712,3724,3731,3733,3737,3738,3741,3761,3789,3855,3856,3945,3948,3949,3950,3951,3952,3953,3954,3957,3958,3959,3960,3961,3963,3965,4263,4280,4281,4283,4287,4546,4547,4694,4711,4847,4849,4851,4852,4853,5373,5382,5385,5391,5533,5594,5599,5753,5896,6035,6190,6191,6300,6382,6384,6385,6401,6408,6415,6421,6422,7346,8413,8989,10473,10502,10518,10617,10629,10641,10646,10648,10649,10762,10793,10795,10802,10803,10805,10806,10807,10808,10813,10817,10818,10824,10985,10986,11009,11021,11045,11046,11094,11097,11126,11156,11164,11272,11273,11280,11330,11360,11361,11427,11428,11462,11463,11531,11584,11587,11606,11658,11660,11662,11663,11664,11674,11682,11683,11688,11795,11796,11803,11807,11816,11817,11821,11825,11842,11843,11844,11848,11849,11852,11854,11856,11858,11863,11871,11873,11942,11945,11946,11963,11969,11971,11974,11975,11976,11977,11980,11981,11984,12021,12067,12097,12105,12106,12107,12109,12171,12180,12221,12230,12231,12234,12238,12257,12275,12344,12421,12463,12493,12500,12502,12504,12506,12515,12516,12549,12558,12577,12583,12586,12587,12591,12603,12604,12606,12608,12610,12624,12625,12632,12646,12648,12651,12654,12668,12671,12676,12681,12684,12693,12700,12701,18943,19793,19796,19797,21591,21609,21614,21635,21713,21714,21715,21724]]]]},{"k":"H3882","v":[["*",[6,5,[[17,2,2,0,2,[[438,1,1,0,1],[476,1,1,1,2]]],[18,2,2,2,4,[[551,1,1,2,3],[581,1,1,3,4]]],[22,2,1,4,5,[[705,2,1,4,5]]]],[12912,13889,15062,15597,18152]]],["leviathan",[5,4,[[17,1,1,0,1,[[476,1,1,0,1]]],[18,2,2,1,3,[[551,1,1,1,2],[581,1,1,2,3]]],[22,2,1,3,4,[[705,2,1,3,4]]]],[13889,15062,15597,18152]]],["mourning",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12912]]]]},{"k":"H3883","v":[["stairs",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8904]]]]},{"k":"H3884","v":[["*",[14,14,[[0,2,2,0,2,[[30,1,1,0,1],[42,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[6,1,1,3,4,[[224,1,1,3,4]]],[8,1,1,4,5,[[260,1,1,4,5]]],[9,1,1,5,6,[[268,1,1,5,6]]],[11,1,1,6,7,[[315,1,1,6,7]]],[18,6,6,7,13,[[504,1,1,7,8],[571,1,1,8,9],[583,1,1,9,10],[596,1,1,10,11],[601,2,2,11,13]]],[22,1,1,13,14,[[679,1,1,13,14]]]],[915,1300,5785,6927,7895,8076,9590,14298,15448,15674,15990,16103,16104,17663]]],["+",[2,2,[[8,1,1,0,1,[[260,1,1,0,1]]],[9,1,1,1,2,[[268,1,1,1,2]]]],[7895,8076]]],["Except",[2,2,[[0,1,1,0,1,[[30,1,1,0,1]]],[22,1,1,1,2,[[679,1,1,1,2]]]],[915,17663]]],["If",[3,3,[[6,1,1,0,1,[[224,1,1,0,1]]],[18,2,2,1,3,[[601,2,2,1,3]]]],[6927,16103,16104]]],["Unless",[2,2,[[18,2,2,0,2,[[571,1,1,0,1],[596,1,1,1,2]]]],[15448,15990]]],["except",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1300]]],["not",[2,2,[[11,1,1,0,1,[[315,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]]],[9590,15674]]],["that",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5785]]],["unless",[1,1,[[18,1,1,0,1,[[504,1,1,0,1]]]],[14298]]]]},{"k":"H3885","v":[["*",[84,79,[[0,9,8,0,8,[[18,2,1,0,1],[23,3,3,1,4],[27,1,1,4,5],[30,1,1,5,6],[31,2,2,6,8]]],[1,7,7,8,15,[[64,1,1,8,9],[65,3,3,9,12],[66,1,1,12,13],[72,1,1,13,14],[83,1,1,14,15]]],[2,1,1,15,16,[[108,1,1,15,16]]],[3,9,8,16,24,[[130,5,4,16,20],[132,2,2,20,22],[133,1,1,22,23],[138,1,1,23,24]]],[4,2,2,24,26,[[168,1,1,24,25],[173,1,1,25,26]]],[5,5,5,26,31,[[189,1,1,26,27],[190,1,1,27,28],[192,1,1,28,29],[194,1,1,29,30],[195,1,1,30,31]]],[6,13,11,31,42,[[228,1,1,31,32],[229,11,9,32,41],[230,1,1,41,42]]],[7,3,2,42,44,[[232,2,1,42,43],[234,1,1,43,44]]],[9,4,4,44,48,[[278,1,1,44,45],[283,2,2,45,47],[285,1,1,47,48]]],[10,1,1,48,49,[[309,1,1,48,49]]],[12,1,1,49,50,[[346,1,1,49,50]]],[15,3,3,50,53,[[416,1,1,50,51],[425,2,2,51,53]]],[17,8,8,53,61,[[452,1,1,53,54],[454,1,1,54,55],[459,1,1,55,56],[464,1,1,56,57],[466,1,1,57,58],[474,2,2,58,60],[476,1,1,60,61]]],[18,6,6,61,67,[[502,1,1,61,62],[507,1,1,62,63],[526,1,1,63,64],[532,1,1,64,65],[536,1,1,65,66],[568,1,1,66,67]]],[19,2,2,67,69,[[642,1,1,67,68],[646,1,1,68,69]]],[21,2,2,69,71,[[671,1,1,69,70],[677,1,1,70,71]]],[22,3,3,71,74,[[679,1,1,71,72],[699,1,1,72,73],[743,1,1,73,74]]],[23,2,2,74,76,[[748,1,1,74,75],[758,1,1,75,76]]],[28,1,1,76,77,[[876,1,1,76,77]]],[35,1,1,77,78,[[907,1,1,77,78]]],[37,1,1,78,79,[[915,1,1,78,79]]]],[459,614,616,645,784,927,941,949,1944,1949,1954,1955,1986,2162,2521,3294,4110,4135,4137,4144,4205,4235,4249,4383,5346,5470,5894,5913,5960,6011,6055,6995,7028,7030,7031,7033,7034,7035,7037,7039,7044,7058,7143,7185,8302,8457,8465,8518,9396,10642,12381,12691,12692,13262,13301,13443,13551,13620,13843,13862,13910,14264,14324,14660,14739,14805,15396,16838,16948,17550,17638,17675,18048,18901,19041,19301,22304,22819,22940]]],["+",[3,3,[[0,2,2,0,2,[[18,1,1,0,1],[27,1,1,1,2]]],[2,1,1,2,3,[[108,1,1,2,3]]]],[459,784,3294]]],["Lodge",[2,2,[[3,1,1,0,1,[[138,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]]],[4383,8465]]],["Tarry",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7185]]],["abide",[3,3,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,1,1,1,2,[[568,1,1,1,2]]],[19,1,1,2,3,[[646,1,1,2,3]]]],[13843,15396,16948]]],["abideth",[3,3,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,1,1,1,2,[[526,1,1,1,2]]],[19,1,1,2,3,[[642,1,1,2,3]]]],[13862,14660,16838]]],["continue",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13262]]],["dwell",[1,1,[[18,1,1,0,1,[[502,1,1,0,1]]]],[14264]]],["endure",[1,1,[[18,1,1,0,1,[[507,1,1,0,1]]]],[14324]]],["grudge",[1,1,[[18,1,1,0,1,[[536,1,1,0,1]]]],[14805]]],["in",[2,2,[[0,2,2,0,2,[[23,2,2,0,2]]]],[614,616]]],["left",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2521]]],["lodge",[17,17,[[5,1,1,0,1,[[190,1,1,0,1]]],[6,5,5,1,6,[[229,4,4,1,5],[230,1,1,5,6]]],[7,1,1,6,7,[[232,1,1,6,7]]],[9,1,1,7,8,[[283,1,1,7,8]]],[15,2,2,8,10,[[416,1,1,8,9],[425,1,1,9,10]]],[17,2,2,10,12,[[459,1,1,10,11],[466,1,1,11,12]]],[21,1,1,12,13,[[677,1,1,12,13]]],[22,2,2,13,15,[[699,1,1,13,14],[743,1,1,14,15]]],[23,1,1,15,16,[[748,1,1,15,16]]],[35,1,1,16,17,[[907,1,1,16,17]]]],[5913,7033,7035,7039,7044,7058,7143,8457,12381,12692,13443,13620,17638,18048,18901,19041,22819]]],["lodged",[12,12,[[0,2,2,0,2,[[31,2,2,0,2]]],[5,3,3,2,5,[[189,1,1,2,3],[192,1,1,3,4],[194,1,1,4,5]]],[6,3,3,5,8,[[228,1,1,5,6],[229,2,2,6,8]]],[10,1,1,8,9,[[309,1,1,8,9]]],[12,1,1,9,10,[[346,1,1,9,10]]],[15,1,1,10,11,[[425,1,1,10,11]]],[22,1,1,11,12,[[679,1,1,11,12]]]],[941,949,5894,5960,6011,6995,7028,7031,9396,10642,12691,17675]]],["lodgest",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7143]]],["lodging",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7039]]],["murmur",[7,6,[[1,2,2,0,2,[[65,2,2,0,2]]],[3,5,4,2,6,[[130,3,2,2,4],[132,1,1,4,5],[133,1,1,5,6]]]],[1954,1955,4135,4144,4205,4249]]],["murmured",[7,7,[[1,3,3,0,3,[[64,1,1,0,1],[65,1,1,1,2],[66,1,1,2,3]]],[3,3,3,3,6,[[130,2,2,3,5],[132,1,1,5,6]]],[5,1,1,6,7,[[195,1,1,6,7]]]],[1944,1949,1986,4110,4137,4235,6055]]],["night",[13,13,[[0,3,3,0,3,[[18,1,1,0,1],[23,1,1,1,2],[30,1,1,2,3]]],[4,2,2,3,5,[[168,1,1,3,4],[173,1,1,4,5]]],[6,4,4,5,9,[[229,4,4,5,9]]],[9,1,1,9,10,[[278,1,1,9,10]]],[17,1,1,10,11,[[464,1,1,10,11]]],[21,1,1,11,12,[[671,1,1,11,12]]],[28,1,1,12,13,[[876,1,1,12,13]]]],[459,645,927,5346,5470,7030,7033,7034,7037,8302,13551,17550,22304]]],["remain",[3,3,[[1,1,1,0,1,[[72,1,1,0,1]]],[18,1,1,1,2,[[532,1,1,1,2]]],[37,1,1,2,3,[[915,1,1,2,3]]]],[2162,14739,22940]]],["remaineth",[2,2,[[17,2,2,0,2,[[454,1,1,0,1],[476,1,1,1,2]]]],[13301,13910]]],["tarry",[2,2,[[9,1,1,0,1,[[285,1,1,0,1]]],[23,1,1,1,2,[[758,1,1,1,2]]]],[8518,19301]]]]},{"k":"H3886","v":[["*",[2,2,[[17,1,1,0,1,[[441,1,1,0,1]]],[30,1,1,1,2,[[888,1,1,1,2]]]],[12981,22526]]],["down",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22526]]],["up",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12981]]]]},{"k":"H3887","v":[["*",[27,26,[[0,1,1,0,1,[[41,1,1,0,1]]],[13,1,1,1,2,[[398,1,1,1,2]]],[17,2,2,2,4,[[451,1,1,2,3],[468,1,1,3,4]]],[18,2,2,4,6,[[478,1,1,4,5],[596,1,1,5,6]]],[19,18,17,6,23,[[628,1,1,6,7],[630,2,1,7,8],[636,3,3,8,11],[640,1,1,11,12],[641,2,2,12,14],[642,1,1,14,15],[646,3,3,15,18],[647,1,1,18,19],[648,2,2,19,21],[649,1,1,21,22],[651,1,1,22,23]]],[22,3,3,23,26,[[706,1,1,23,24],[707,1,1,24,25],[721,1,1,25,26]]]],[1275,11906,13258,13673,13940,15949,16422,16489,16645,16646,16650,16748,16778,16781,16819,16950,16953,16954,16955,16995,17008,17025,17088,18186,18213,18532]]],["+",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18186]]],["ambassadors",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11906]]],["derision",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15949]]],["interpreter",[2,2,[[0,1,1,0,1,[[41,1,1,0,1]]],[17,1,1,1,2,[[468,1,1,1,2]]]],[1275,13673]]],["mock",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16781]]],["mocker",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16955]]],["scorn",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13258]]],["scorner",[11,11,[[19,10,10,0,10,[[636,2,2,0,2],[640,1,1,2,3],[641,1,1,3,4],[642,1,1,4,5],[646,1,1,5,6],[648,2,2,6,8],[649,1,1,8,9],[651,1,1,9,10]]],[22,1,1,10,11,[[707,1,1,10,11]]]],[16645,16646,16748,16778,16819,16950,16995,17008,17025,17088,18213]]],["scorners",[3,3,[[19,3,3,0,3,[[628,1,1,0,1],[630,1,1,1,2],[646,1,1,2,3]]]],[16422,16489,16954]]],["scornest",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16650]]],["scorneth",[2,2,[[19,2,2,0,2,[[630,1,1,0,1],[646,1,1,1,2]]]],[16489,16953]]],["scornful",[1,1,[[18,1,1,0,1,[[478,1,1,0,1]]]],[13940]]],["teachers",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18532]]]]},{"k":"H3888","v":[["*",[5,5,[[0,1,1,0,1,[[17,1,1,0,1]]],[8,1,1,1,2,[[263,1,1,1,2]]],[9,1,1,2,3,[[279,1,1,2,3]]],[23,1,1,3,4,[[751,1,1,3,4]]],[27,1,1,4,5,[[868,1,1,4,5]]]],[430,7966,8325,19137,22182]]],["+",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22182]]],["knead",[2,2,[[0,1,1,0,1,[[17,1,1,0,1]]],[23,1,1,1,2,[[751,1,1,1,2]]]],[430,19137]]],["kneaded",[2,2,[[8,1,1,0,1,[[263,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]]],[7966,8325]]]]},{"k":"H3889","v":[]},{"k":"H3890","v":[["+",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12122]]]]},{"k":"H3891","v":[["perverse",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16514]]]]},{"k":"H3892","v":[["*",[6,6,[[0,1,1,0,1,[[29,1,1,0,1]]],[3,1,1,1,2,[[122,1,1,1,2]]],[6,2,2,2,4,[[226,2,2,2,4]]],[25,2,2,4,6,[[818,1,1,4,5],[821,1,1,5,6]]]],[867,3826,6956,6957,20849,20942]]],["green",[5,5,[[0,1,1,0,1,[[29,1,1,0,1]]],[6,2,2,1,3,[[226,2,2,1,3]]],[25,2,2,3,5,[[818,1,1,3,4],[821,1,1,4,5]]]],[867,6956,6957,20849,20942]]],["moist",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3826]]]]},{"k":"H3893","v":[["force",[1,1,[[4,1,1,0,1,[[186,1,1,0,1]]]],[5846]]]]},{"k":"H3894","v":[["*",[2,2,[[17,1,1,0,1,[[455,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]]],[13349,22804]]],["eating",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13349]]],["flesh",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22804]]]]},{"k":"H3895","v":[["*",[21,20,[[4,1,1,0,1,[[170,1,1,0,1]]],[6,5,4,1,5,[[225,5,4,1,5]]],[10,1,1,5,6,[[312,1,1,5,6]]],[13,1,1,6,7,[[384,1,1,6,7]]],[17,2,2,7,9,[[451,1,1,7,8],[476,1,1,8,9]]],[18,1,1,9,10,[[480,1,1,9,10]]],[21,2,2,10,12,[[671,1,1,10,11],[675,1,1,11,12]]],[22,2,2,12,14,[[708,1,1,12,13],[728,1,1,13,14]]],[24,2,2,14,16,[[797,1,1,14,15],[799,1,1,15,16]]],[25,2,2,16,18,[[830,1,1,16,17],[839,1,1,17,18]]],[27,1,1,18,19,[[872,1,1,18,19]]],[32,1,1,19,20,[[897,1,1,19,20]]]],[5387,6944,6945,6946,6948,9504,11565,13248,13890,13964,17547,17611,18245,18668,20312,20384,21187,21429,22244,22634]]],["bone",[1,1,[[18,1,1,0,1,[[480,1,1,0,1]]]],[13964]]],["cheek",[5,5,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]],[17,1,1,2,3,[[451,1,1,2,3]]],[24,1,1,3,4,[[799,1,1,3,4]]],[32,1,1,4,5,[[897,1,1,4,5]]]],[9504,11565,13248,20384,22634]]],["cheeks",[5,5,[[4,1,1,0,1,[[170,1,1,0,1]]],[21,2,2,1,3,[[671,1,1,1,2],[675,1,1,2,3]]],[22,1,1,3,4,[[728,1,1,3,4]]],[24,1,1,4,5,[[797,1,1,4,5]]]],[5387,17547,17611,18668,20312]]],["jaw",[3,3,[[6,2,2,0,2,[[225,2,2,0,2]]],[17,1,1,2,3,[[476,1,1,2,3]]]],[6945,6948,13890]]],["jawbone",[3,3,[[6,3,3,0,3,[[225,3,3,0,3]]]],[6944,6945,6946]]],["jaws",[4,4,[[22,1,1,0,1,[[708,1,1,0,1]]],[25,2,2,1,3,[[830,1,1,1,2],[839,1,1,2,3]]],[27,1,1,3,4,[[872,1,1,3,4]]]],[18245,21187,21429,22244]]]]},{"k":"H3896","v":[["Lehi",[3,3,[[6,3,3,0,3,[[225,3,3,0,3]]]],[6938,6943,6948]]]]},{"k":"H3897","v":[["*",[6,5,[[3,2,1,0,1,[[138,2,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]],[18,1,1,2,3,[[549,1,1,2,3]]],[22,1,1,3,4,[[727,1,1,3,4]]],[32,1,1,4,5,[[899,1,1,4,5]]]],[4379,9379,15009,18659,22681]]],["+",[2,1,[[3,2,1,0,1,[[138,2,1,0,1]]]],[4379]]],["lick",[2,2,[[18,1,1,0,1,[[549,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]]],[15009,22681]]],["up",[2,2,[[10,1,1,0,1,[[308,1,1,0,1]]],[22,1,1,1,2,[[727,1,1,1,2]]]],[9379,18659]]]]},{"k":"H3898","v":[["*",[177,171,[[1,6,6,0,6,[[50,1,1,0,1],[63,2,2,1,3],[66,3,3,3,6]]],[3,4,4,6,10,[[137,3,3,6,9],[138,1,1,9,10]]],[4,8,8,10,18,[[153,3,3,10,13],[155,1,1,13,14],[172,3,3,14,17],[184,1,1,17,18]]],[5,17,17,18,35,[[195,1,1,18,19],[196,9,9,19,28],[197,1,1,28,29],[205,1,1,29,30],[209,2,2,30,32],[210,3,3,32,35]]],[6,31,28,35,63,[[211,5,5,35,40],[215,4,2,40,42],[218,1,1,42,43],[219,5,5,43,48],[220,2,2,48,50],[221,11,10,50,60],[222,3,3,60,63]]],[8,21,21,63,84,[[239,2,2,63,65],[243,1,1,65,66],[247,1,1,66,67],[248,1,1,67,68],[249,1,1,68,69],[250,1,1,69,70],[252,5,5,70,75],[253,1,1,75,76],[254,1,1,76,77],[258,2,2,77,79],[260,1,1,79,80],[263,2,2,80,82],[264,1,1,82,83],[266,1,1,83,84]]],[9,9,9,84,93,[[268,1,1,84,85],[274,1,1,85,86],[276,1,1,86,87],[277,2,2,87,89],[278,3,3,89,92],[287,1,1,92,93]]],[10,9,9,93,102,[[302,2,2,93,95],[304,1,1,95,96],[310,3,3,96,99],[312,3,3,99,102]]],[11,12,12,102,114,[[315,1,1,102,103],[318,1,1,103,104],[320,1,1,104,105],[321,1,1,105,106],[322,1,1,106,107],[324,1,1,107,108],[325,1,1,108,109],[326,2,2,109,111],[328,1,1,111,112],[331,2,2,112,114]]],[12,3,3,114,117,[[347,1,1,114,115],[355,1,1,115,116],[356,1,1,116,117]]],[13,15,14,117,131,[[377,2,2,117,119],[379,1,1,119,120],[383,1,1,120,121],[384,2,2,121,123],[386,2,2,123,125],[388,1,1,125,126],[392,1,1,126,127],[393,1,1,127,128],[398,1,1,128,129],[401,3,2,129,131]]],[15,3,3,131,134,[[416,3,3,131,134]]],[18,6,5,134,139,[[512,2,1,134,135],[533,2,2,135,137],[586,1,1,137,138],[618,1,1,138,139]]],[19,4,4,139,143,[[631,1,1,139,140],[636,1,1,140,141],[650,2,2,141,143]]],[22,7,7,143,150,[[685,1,1,143,144],[697,1,1,144,145],[698,1,1,145,146],[708,1,1,146,147],[715,2,2,147,149],[741,1,1,149,150]]],[23,16,16,150,166,[[745,1,1,150,151],[759,1,1,151,152],[765,3,3,152,155],[776,3,3,155,158],[777,1,1,158,159],[778,3,3,159,162],[781,2,2,162,164],[785,1,1,164,165],[795,1,1,165,166]]],[26,2,2,166,168,[[859,1,1,166,167],[860,1,1,167,168]]],[37,4,3,168,171,[[920,1,1,168,169],[924,3,2,169,171]]]],[1542,1903,1914,1991,1992,1993,4341,4363,4366,4386,4922,4933,4934,4997,5431,5437,5446,5782,6039,6069,6078,6089,6093,6095,6098,6100,6102,6106,6112,6368,6463,6470,6484,6485,6487,6510,6512,6514,6517,6518,6642,6643,6720,6771,6792,6793,6799,6806,6820,6829,6833,6834,6835,6837,6838,6841,6849,6854,6856,6861,6870,6872,6873,7306,7307,7389,7469,7490,7555,7578,7627,7628,7637,7650,7651,7693,7714,7811,7815,7889,7943,7957,7975,8010,8077,8219,8257,8276,8279,8312,8313,8315,8595,9172,9175,9237,9409,9431,9433,9511,9512,9525,9597,9682,9756,9771,9796,9867,9883,9911,9924,9968,10069,10070,10660,10900,10924,11415,11418,11465,11533,11572,11573,11604,11616,11650,11738,11760,11883,11986,11988,12367,12373,12379,14411,14756,14757,15758,16280,16507,16643,17045,17050,17783,18006,18030,18249,18360,18361,18876,18965,19335,19442,19444,19445,19736,19755,19760,19780,19802,19808,19823,19882,19884,19969,20242,22035,22047,23021,23071,23082]]],["+",[7,6,[[6,2,1,0,1,[[221,2,1,0,1]]],[8,1,1,1,2,[[243,1,1,1,2]]],[9,1,1,2,3,[[287,1,1,2,3]]],[13,2,2,3,5,[[383,1,1,3,4],[388,1,1,4,5]]],[18,1,1,5,6,[[512,1,1,5,6]]]],[6854,7389,8595,11533,11650,14411]]],["Eat",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17050]]],["Fight",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[9511,11572]]],["against",[4,4,[[10,1,1,0,1,[[310,1,1,0,1]]],[18,2,2,1,3,[[512,1,1,1,2],[586,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[9433,14411,15758,23071]]],["devoured",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5782]]],["eat",[4,4,[[18,1,1,0,1,[[618,1,1,0,1]]],[19,3,3,1,4,[[631,1,1,1,2],[636,1,1,2,3],[650,1,1,3,4]]]],[16280,16507,16643,17045]]],["fight",[78,77,[[1,3,3,0,3,[[50,1,1,0,1],[63,1,1,1,2],[66,1,1,2,3]]],[4,6,6,3,9,[[153,3,3,3,6],[155,1,1,6,7],[172,2,2,7,9]]],[5,4,4,9,13,[[195,1,1,9,10],[196,1,1,10,11],[197,1,1,11,12],[205,1,1,12,13]]],[6,14,14,13,27,[[211,3,3,13,16],[218,1,1,16,17],[219,1,1,17,18],[220,2,2,18,20],[221,5,5,20,25],[222,2,2,25,27]]],[8,11,11,27,38,[[239,1,1,27,28],[248,1,1,28,29],[250,1,1,29,30],[252,4,4,30,34],[253,1,1,34,35],[258,1,1,35,36],[263,1,1,36,37],[264,1,1,37,38]]],[9,1,1,38,39,[[277,1,1,38,39]]],[10,4,4,39,43,[[302,2,2,39,41],[310,1,1,41,42],[312,1,1,42,43]]],[11,3,3,43,46,[[315,1,1,43,44],[322,1,1,44,45],[331,1,1,45,46]]],[13,9,8,46,54,[[377,2,2,46,48],[379,1,1,48,49],[384,1,1,49,50],[386,1,1,50,51],[398,1,1,51,52],[401,3,2,52,54]]],[15,3,3,54,57,[[416,3,3,54,57]]],[18,1,1,57,58,[[533,1,1,57,58]]],[22,2,2,58,60,[[697,1,1,58,59],[708,1,1,59,60]]],[23,13,13,60,73,[[745,1,1,60,61],[759,1,1,61,62],[765,2,2,62,64],[776,3,3,64,67],[777,1,1,67,68],[778,1,1,68,69],[781,2,2,69,71],[785,1,1,71,72],[795,1,1,72,73]]],[26,2,2,73,75,[[859,1,1,73,74],[860,1,1,74,75]]],[37,2,2,75,77,[[920,1,1,75,76],[924,1,1,76,77]]]],[1542,1903,1992,4922,4933,4934,4997,5431,5437,6039,6089,6112,6368,6510,6512,6518,6720,6792,6820,6829,6835,6837,6838,6841,6861,6870,6872,7306,7490,7578,7627,7628,7650,7651,7693,7811,7943,7975,8279,9172,9175,9431,9512,9597,9796,10070,11415,11418,11465,11573,11604,11883,11986,11988,12367,12373,12379,14757,18006,18249,18965,19335,19444,19445,19736,19755,19760,19780,19823,19882,19884,19969,20242,22035,22047,23021,23082]]],["fighteth",[3,3,[[1,1,1,0,1,[[63,1,1,0,1]]],[5,1,1,1,2,[[209,1,1,1,2]]],[8,1,1,2,3,[[260,1,1,2,3]]]],[1914,6470,7889]]],["fighting",[2,2,[[8,1,1,0,1,[[252,1,1,0,1]]],[18,1,1,1,2,[[533,1,1,1,2]]]],[7637,14756]]],["fought",[55,53,[[1,2,2,0,2,[[66,2,2,0,2]]],[3,3,3,2,5,[[137,3,3,2,5]]],[5,10,10,5,15,[[196,7,7,5,12],[209,1,1,12,13],[210,2,2,13,15]]],[6,12,10,15,25,[[211,2,2,15,17],[215,4,2,17,19],[219,4,4,19,23],[221,1,1,23,24],[222,1,1,24,25]]],[8,6,6,25,31,[[239,1,1,25,26],[247,1,1,26,27],[249,1,1,27,28],[254,1,1,28,29],[258,1,1,29,30],[266,1,1,30,31]]],[9,7,7,31,38,[[268,1,1,31,32],[274,1,1,32,33],[276,1,1,33,34],[277,1,1,34,35],[278,3,3,35,38]]],[11,5,5,38,43,[[320,1,1,38,39],[321,1,1,39,40],[324,1,1,40,41],[325,1,1,41,42],[326,1,1,42,43]]],[12,3,3,43,46,[[347,1,1,43,44],[355,1,1,44,45],[356,1,1,45,46]]],[13,2,2,46,48,[[386,1,1,46,47],[393,1,1,47,48]]],[22,2,2,48,50,[[698,1,1,48,49],[741,1,1,49,50]]],[23,2,2,50,52,[[778,2,2,50,52]]],[37,1,1,52,53,[[924,1,1,52,53]]]],[1991,1993,4341,4363,4366,6078,6093,6095,6098,6100,6102,6106,6463,6484,6487,6514,6517,6642,6643,6771,6793,6799,6806,6849,6873,7307,7469,7555,7714,7815,8010,8077,8219,8257,8276,8312,8313,8315,9756,9771,9867,9883,9911,10660,10900,10924,11616,11760,18030,18876,19802,19808,23071]]],["overcome",[2,2,[[3,1,1,0,1,[[138,1,1,0,1]]],[11,1,1,1,2,[[328,1,1,1,2]]]],[4386,9968]]],["prevail",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17783]]],["war",[8,8,[[4,1,1,0,1,[[172,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[6,3,3,2,5,[[221,3,3,2,5]]],[8,1,1,5,6,[[263,1,1,5,6]]],[22,1,1,6,7,[[715,1,1,6,7]]],[23,1,1,7,8,[[765,1,1,7,8]]]],[5446,6069,6833,6834,6856,7957,18361,19442]]],["warred",[7,7,[[5,1,1,0,1,[[210,1,1,0,1]]],[10,3,3,1,4,[[304,1,1,1,2],[310,1,1,2,3],[312,1,1,3,4]]],[11,2,2,4,6,[[318,1,1,4,5],[326,1,1,5,6]]],[13,1,1,6,7,[[392,1,1,6,7]]]],[6485,9237,9409,9525,9682,9924,11738]]],["warring",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10069,18360]]]]},{"k":"H3899","v":[["*",[298,277,[[0,24,22,0,22,[[2,1,1,0,1],[13,1,1,1,2],[17,1,1,2,3],[20,1,1,3,4],[24,1,1,4,5],[26,1,1,5,6],[27,1,1,6,7],[30,2,1,7,8],[36,1,1,8,9],[38,1,1,9,10],[40,2,2,10,12],[42,3,3,12,15],[44,1,1,15,16],[46,6,5,16,21],[48,1,1,21,22]]],[1,21,20,22,42,[[51,1,1,22,23],[65,8,8,23,31],[67,1,1,31,32],[72,1,1,32,33],[74,1,1,33,34],[78,5,4,34,38],[83,1,1,38,39],[84,1,1,39,40],[88,1,1,40,41],[89,1,1,41,42]]],[2,24,22,42,64,[[92,2,2,42,44],[96,1,1,44,45],[97,3,3,45,48],[110,5,5,48,53],[111,4,4,53,57],[112,4,4,57,61],[113,1,1,61,62],[115,4,2,62,64]]],[3,7,6,64,70,[[120,1,1,64,65],[130,1,1,65,66],[131,1,1,66,67],[137,2,1,67,68],[144,2,2,68,70]]],[4,8,8,70,78,[[160,2,2,70,72],[161,2,2,72,74],[162,1,1,74,75],[168,1,1,75,76],[175,1,1,76,77],[181,1,1,77,78]]],[5,2,2,78,80,[[195,2,2,78,80]]],[6,7,7,80,87,[[217,1,1,80,81],[218,3,3,81,84],[223,1,1,84,85],[229,2,2,85,87]]],[7,2,2,87,89,[[232,1,1,87,88],[233,1,1,88,89]]],[8,27,22,89,111,[[237,3,2,89,91],[244,1,1,91,92],[245,2,2,92,94],[249,3,2,94,96],[251,1,1,96,97],[252,1,1,97,98],[255,3,3,98,101],[256,6,3,101,104],[257,1,1,104,105],[260,2,2,105,107],[263,2,2,107,109],[265,2,2,109,111]]],[9,13,11,111,122,[[269,3,2,111,113],[272,1,1,113,114],[275,3,2,114,116],[278,3,3,116,119],[279,1,1,119,120],[282,2,2,120,122]]],[10,24,22,122,144,[[294,1,1,122,123],[295,1,1,123,124],[297,1,1,124,125],[301,1,1,125,126],[303,10,9,126,135],[304,1,1,135,136],[307,3,2,136,138],[308,2,2,138,140],[311,3,3,140,143],[312,1,1,143,144]]],[11,8,6,144,150,[[316,4,2,144,146],[318,1,1,146,147],[330,1,1,147,148],[337,2,2,148,150]]],[12,4,4,150,154,[[346,1,1,150,151],[349,1,1,151,152],[353,1,1,152,153],[360,1,1,153,154]]],[13,3,3,154,157,[[370,1,1,154,155],[379,1,1,155,156],[384,1,1,156,157]]],[14,1,1,157,158,[[412,1,1,157,158]]],[15,6,6,158,164,[[417,3,3,158,161],[421,1,1,161,162],[422,1,1,162,163],[425,1,1,163,164]]],[17,11,11,164,175,[[438,1,1,164,165],[441,1,1,165,166],[450,1,1,166,167],[455,1,1,167,168],[457,1,1,168,169],[459,1,1,169,170],[462,1,1,170,171],[463,1,1,171,172],[465,1,1,172,173],[468,1,1,173,174],[477,1,1,174,175]]],[18,19,19,175,194,[[491,1,1,175,176],[514,1,1,176,177],[518,1,1,177,178],[519,1,1,178,179],[530,1,1,179,180],[555,2,2,180,182],[557,1,1,182,183],[579,2,2,183,185],[581,2,2,185,187],[582,2,2,187,189],[604,1,1,189,190],[609,1,1,190,191],[613,1,1,191,192],[623,1,1,192,193],[624,1,1,193,194]]],[19,23,22,194,216,[[631,1,1,194,195],[633,2,2,195,197],[636,2,2,197,199],[639,2,2,199,201],[647,2,2,201,203],[649,1,1,203,204],[650,2,2,204,206],[652,1,1,206,207],[654,2,1,207,208],[655,3,3,208,211],[657,3,3,211,214],[658,2,2,214,216]]],[20,4,4,216,220,[[667,2,2,216,218],[668,1,1,218,219],[669,1,1,219,220]]],[22,16,16,220,236,[[681,2,2,220,222],[682,1,1,222,223],[699,1,1,223,224],[706,1,1,224,225],[708,2,2,225,227],[711,1,1,227,228],[714,1,1,228,229],[722,2,2,229,231],[729,1,1,231,232],[733,2,2,232,234],[736,1,1,234,235],[743,1,1,235,236]]],[23,10,9,236,245,[[749,1,1,236,237],[755,1,1,237,238],[781,2,1,238,239],[782,1,1,239,240],[785,1,1,240,241],[786,1,1,241,242],[788,1,1,242,243],[796,2,2,243,245]]],[24,4,4,245,249,[[797,1,1,245,246],[800,1,1,246,247],[801,2,2,247,249]]],[25,20,19,249,268,[[805,6,5,249,254],[806,1,1,254,255],[813,2,2,255,257],[814,1,1,257,258],[815,1,1,258,259],[817,2,2,259,261],[819,2,2,261,263],[825,2,2,263,265],[845,2,2,265,267],[849,1,1,267,268]]],[26,1,1,268,269,[[859,1,1,268,269]]],[27,3,2,269,271,[[863,1,1,269,270],[870,2,1,270,271]]],[29,3,3,271,274,[[882,1,1,271,272],[885,1,1,272,273],[886,1,1,273,274]]],[30,1,1,274,275,[[888,1,1,274,275]]],[36,1,1,275,276,[[910,1,1,275,276]]],[38,1,1,276,277,[[925,1,1,276,277]]]],[74,354,429,527,692,744,793,927,1108,1155,1249,1250,1315,1321,1322,1381,1432,1433,1435,1437,1439,1493,1574,1950,1951,1955,1959,1962,1969,1976,1979,2011,2169,2225,2338,2359,2368,2370,2524,2544,2700,2730,2789,2794,2892,2943,2948,2949,3351,3353,3362,3366,3367,3376,3380,3382,3394,3416,3419,3420,3422,3453,3529,3550,3750,4117,4172,4345,4579,4601,5140,5146,5166,5175,5204,5345,5504,5685,6042,6049,6707,6724,6725,6734,6900,7029,7043,7133,7163,7245,7276,7398,7421,7422,7532,7536,7615,7635,7754,7757,7764,7775,7776,7778,7800,7872,7879,7962,7964,7989,7990,8110,8116,8176,8234,8237,8303,8306,8307,8322,8427,8428,8866,8887,8982,9126,9192,9193,9199,9200,9201,9202,9203,9206,9207,9221,9323,9328,9345,9354,9455,9456,9458,9507,9611,9645,9696,10056,10225,10251,10647,10760,10823,11012,11265,11464,11568,12258,12396,12397,12400,12526,12582,12673,12928,12985,13226,13340,13396,13441,13495,13509,13561,13670,13933,14084,14475,14551,14558,14723,15133,15138,15203,15525,15530,15585,15586,15622,15646,16123,16166,16221,16348,16360,16507,16548,16566,16643,16655,16728,16730,16967,16971,17024,17047,17050,17134,17196,17199,17215,17217,17259,17273,17276,17298,17311,17482,17486,17512,17514,17708,17714,17734,18049,18192,18237,18240,18295,18347,18548,18552,18687,18742,18750,18793,18922,19075,19245,19895,19904,19958,19989,20027,20282,20309,20321,20424,20448,20451,20538,20542,20544,20545,20546,20562,20698,20699,20727,20744,20781,20811,20856,20865,21073,21078,21602,21606,21720,22018,22110,22212,22416,22476,22492,22517,22867,23096]]],["+",[14,14,[[1,3,3,0,3,[[74,1,1,0,1],[84,1,1,1,2],[88,1,1,2,3]]],[2,2,2,3,5,[[111,1,1,3,4],[115,1,1,4,5]]],[3,1,1,5,6,[[131,1,1,5,6]]],[8,1,1,6,7,[[256,1,1,6,7]]],[10,1,1,7,8,[[297,1,1,7,8]]],[12,2,2,8,10,[[346,1,1,8,9],[360,1,1,9,10]]],[13,2,2,10,12,[[370,1,1,10,11],[379,1,1,11,12]]],[15,1,1,12,13,[[422,1,1,12,13]]],[19,1,1,13,14,[[649,1,1,13,14]]]],[2225,2544,2700,3382,3550,4172,7778,8982,10647,11012,11265,11464,12582,17024]]],["Bread",[2,2,[[19,1,1,0,1,[[647,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]]],[16971,18192]]],["bread",[233,219,[[0,24,22,0,22,[[2,1,1,0,1],[13,1,1,1,2],[17,1,1,2,3],[20,1,1,3,4],[24,1,1,4,5],[26,1,1,5,6],[27,1,1,6,7],[30,2,1,7,8],[36,1,1,8,9],[38,1,1,9,10],[40,2,2,10,12],[42,3,3,12,15],[44,1,1,15,16],[46,6,5,16,21],[48,1,1,21,22]]],[1,18,17,22,39,[[51,1,1,22,23],[65,8,8,23,31],[67,1,1,31,32],[72,1,1,32,33],[78,5,4,33,37],[83,1,1,37,38],[89,1,1,38,39]]],[2,17,16,39,55,[[96,1,1,39,40],[97,3,3,40,43],[110,5,5,43,48],[111,1,1,48,49],[112,3,3,49,52],[113,1,1,52,53],[115,3,2,53,55]]],[3,5,4,55,59,[[120,1,1,55,56],[130,1,1,56,57],[137,2,1,57,58],[144,1,1,58,59]]],[4,7,7,59,66,[[160,2,2,59,61],[161,2,2,61,63],[168,1,1,63,64],[175,1,1,64,65],[181,1,1,65,66]]],[5,2,2,66,68,[[195,2,2,66,68]]],[6,7,7,68,75,[[217,1,1,68,69],[218,3,3,69,72],[223,1,1,72,73],[229,2,2,73,75]]],[7,2,2,75,77,[[232,1,1,75,76],[233,1,1,76,77]]],[8,18,15,77,92,[[237,3,2,77,79],[244,1,1,79,80],[245,2,2,80,82],[251,1,1,82,83],[256,5,3,83,86],[257,1,1,86,87],[260,1,1,87,88],[263,2,2,88,90],[265,2,2,90,92]]],[9,10,10,92,102,[[269,2,2,92,94],[272,1,1,94,95],[275,2,2,95,97],[278,3,3,97,100],[282,2,2,100,102]]],[10,19,17,102,119,[[303,10,9,102,111],[307,3,2,111,113],[308,2,2,113,115],[311,3,3,115,118],[312,1,1,118,119]]],[11,7,6,119,125,[[316,3,2,119,121],[318,1,1,121,122],[330,1,1,122,123],[337,2,2,123,125]]],[12,2,2,125,127,[[349,1,1,125,126],[353,1,1,126,127]]],[13,1,1,127,128,[[384,1,1,127,128]]],[14,1,1,128,129,[[412,1,1,128,129]]],[15,5,5,129,134,[[417,3,3,129,132],[421,1,1,132,133],[425,1,1,133,134]]],[17,6,6,134,140,[[450,1,1,134,135],[457,1,1,135,136],[462,1,1,136,137],[463,1,1,137,138],[468,1,1,138,139],[477,1,1,139,140]]],[18,13,13,140,153,[[491,1,1,140,141],[514,1,1,141,142],[518,1,1,142,143],[530,1,1,143,144],[555,1,1,144,145],[557,1,1,145,146],[579,2,2,146,148],[581,1,1,148,149],[582,2,2,149,151],[604,1,1,151,152],[609,1,1,152,153]]],[19,12,12,153,165,[[631,1,1,153,154],[633,1,1,154,155],[636,2,2,155,157],[639,2,2,157,159],[647,1,1,159,160],[650,1,1,160,161],[652,1,1,161,162],[655,2,2,162,164],[658,1,1,164,165]]],[20,3,3,165,168,[[667,2,2,165,167],[669,1,1,167,168]]],[22,14,14,168,182,[[681,2,2,168,170],[682,1,1,170,171],[699,1,1,171,172],[708,2,2,172,174],[711,1,1,174,175],[714,1,1,175,176],[722,2,2,176,178],[729,1,1,178,179],[733,2,2,179,181],[736,1,1,181,182]]],[23,8,7,182,189,[[749,1,1,182,183],[781,2,1,183,184],[782,1,1,184,185],[785,1,1,185,186],[786,1,1,186,187],[796,2,2,187,189]]],[24,4,4,189,193,[[797,1,1,189,190],[800,1,1,190,191],[801,2,2,191,193]]],[25,18,17,193,210,[[805,6,5,193,198],[806,1,1,198,199],[813,2,2,199,201],[814,1,1,201,202],[815,1,1,202,203],[817,1,1,203,204],[819,2,2,204,206],[825,2,2,206,208],[845,2,2,208,210]]],[26,1,1,210,211,[[859,1,1,210,211]]],[27,3,2,211,213,[[863,1,1,211,212],[870,2,1,212,213]]],[29,3,3,213,216,[[882,1,1,213,214],[885,1,1,214,215],[886,1,1,215,216]]],[30,1,1,216,217,[[888,1,1,216,217]]],[36,1,1,217,218,[[910,1,1,217,218]]],[38,1,1,218,219,[[925,1,1,218,219]]]],[74,354,429,527,692,744,793,927,1108,1155,1249,1250,1315,1321,1322,1381,1432,1433,1435,1437,1439,1493,1574,1950,1951,1955,1959,1962,1969,1976,1979,2011,2169,2338,2359,2368,2370,2524,2730,2892,2943,2948,2949,3351,3353,3362,3366,3367,3394,3416,3420,3422,3453,3529,3550,3750,4117,4345,4579,5140,5146,5166,5175,5345,5504,5685,6042,6049,6707,6724,6725,6734,6900,7029,7043,7133,7163,7245,7276,7398,7421,7422,7615,7775,7776,7778,7800,7872,7962,7964,7989,7990,8110,8116,8176,8234,8237,8303,8306,8307,8427,8428,9192,9193,9199,9200,9201,9202,9203,9206,9207,9323,9328,9345,9354,9455,9456,9458,9507,9611,9645,9696,10056,10225,10251,10760,10823,11568,12258,12396,12397,12400,12526,12673,13226,13396,13495,13509,13670,13933,14084,14475,14551,14723,15133,15203,15525,15530,15586,15622,15646,16123,16166,16507,16566,16643,16655,16728,16730,16967,17050,17134,17215,17217,17311,17482,17486,17514,17708,17714,17734,18049,18237,18240,18295,18347,18548,18552,18687,18742,18750,18793,19075,19895,19904,19958,19989,20282,20309,20321,20424,20448,20451,20538,20542,20544,20545,20546,20562,20698,20699,20727,20744,20811,20856,20865,21073,21078,21602,21606,22018,22110,22212,22416,22476,22492,22517,22867,23096]]],["eat",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12928]]],["feast",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17512]]],["food",[21,19,[[2,3,3,0,3,[[92,2,2,0,2],[111,1,1,2,3]]],[4,1,1,3,4,[[162,1,1,3,4]]],[8,3,2,4,6,[[249,3,2,4,6]]],[9,1,1,6,7,[[275,1,1,6,7]]],[10,1,1,7,8,[[295,1,1,7,8]]],[17,1,1,8,9,[[459,1,1,8,9]]],[18,5,5,9,14,[[555,1,1,9,10],[581,1,1,10,11],[613,1,1,11,12],[623,1,1,12,13],[624,1,1,13,14]]],[19,5,4,14,18,[[654,2,1,14,15],[655,1,1,15,16],[657,1,1,16,17],[658,1,1,17,18]]],[25,1,1,18,19,[[849,1,1,18,19]]]],[2789,2794,3376,5204,7532,7536,8237,8887,13441,15138,15585,16221,16348,16360,17196,17199,17259,17298,21720]]],["fruit",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19245]]],["loaves",[5,5,[[2,1,1,0,1,[[112,1,1,0,1]]],[8,2,2,1,3,[[252,1,1,1,2],[260,1,1,2,3]]],[10,1,1,3,4,[[304,1,1,3,4]]],[11,1,1,4,5,[[316,1,1,4,5]]]],[3419,7635,7879,9221,9645]]],["meat",[17,17,[[2,1,1,0,1,[[111,1,1,0,1]]],[3,1,1,1,2,[[144,1,1,1,2]]],[8,3,3,2,5,[[255,3,3,2,5]]],[9,2,2,5,7,[[269,1,1,5,6],[279,1,1,6,7]]],[17,3,3,7,10,[[441,1,1,7,8],[455,1,1,8,9],[465,1,1,9,10]]],[18,1,1,10,11,[[519,1,1,10,11]]],[19,4,4,11,15,[[633,1,1,11,12],[650,1,1,12,13],[657,2,2,13,15]]],[22,1,1,15,16,[[743,1,1,15,16]]],[25,1,1,16,17,[[817,1,1,16,17]]]],[3380,4601,7754,7757,7764,8116,8322,12985,13340,13561,14558,16548,17047,17273,17276,18922,20781]]],["provision",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8866]]],["victuals",[2,2,[[10,1,1,0,1,[[301,1,1,0,1]]],[23,1,1,1,2,[[788,1,1,1,2]]]],[9126,20027]]]]},{"k":"H3900","v":[["feast",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21875]]]]},{"k":"H3901","v":[["war",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6631]]]]},{"k":"H3902","v":[["Lahmi",[1,1,[[12,1,1,0,1,[[357,1,1,0,1]]]],[10931]]]]},{"k":"H3903","v":[["Lahmam",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6242]]]]},{"k":"H3904","v":[["concubines",[3,3,[[26,3,3,0,3,[[854,3,3,0,3]]]],[21876,21877,21897]]]]},{"k":"H3905","v":[["*",[19,18,[[1,3,3,0,3,[[52,1,1,0,1],[71,1,1,1,2],[72,1,1,2,3]]],[3,2,1,3,4,[[138,2,1,3,4]]],[6,5,5,4,9,[[211,1,1,4,5],[212,1,1,5,6],[214,1,1,6,7],[216,1,1,7,8],[220,1,1,8,9]]],[8,1,1,9,10,[[245,1,1,9,10]]],[11,3,3,10,13,[[318,1,1,10,11],[325,2,2,11,13]]],[18,2,2,13,15,[[533,1,1,13,14],[583,1,1,14,15]]],[22,1,1,15,16,[[697,1,1,15,16]]],[23,1,1,16,17,[[774,1,1,16,17]]],[29,1,1,17,18,[[884,1,1,17,18]]]],[1588,2134,2153,4400,6543,6563,6602,6663,6823,7436,9706,9875,9893,14756,15693,18024,19687,22464]]],["+",[5,5,[[3,1,1,0,1,[[138,1,1,0,1]]],[6,2,2,1,3,[[211,1,1,1,2],[214,1,1,2,3]]],[11,2,2,3,5,[[318,1,1,3,4],[325,1,1,4,5]]]],[4400,6543,6602,9706,9893]]],["afflict",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22464]]],["herself",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4400]]],["oppress",[5,5,[[1,3,3,0,3,[[52,1,1,0,1],[71,1,1,1,2],[72,1,1,2,3]]],[6,1,1,3,4,[[220,1,1,3,4]]],[23,1,1,4,5,[[774,1,1,4,5]]]],[1588,2134,2153,6823,19687]]],["oppressed",[5,5,[[6,2,2,0,2,[[212,1,1,0,1],[216,1,1,1,2]]],[8,1,1,2,3,[[245,1,1,2,3]]],[11,1,1,3,4,[[325,1,1,3,4]]],[18,1,1,4,5,[[583,1,1,4,5]]]],[6563,6663,7436,9875,15693]]],["oppresseth",[1,1,[[18,1,1,0,1,[[533,1,1,0,1]]]],[14756]]],["oppressors",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18024]]]]},{"k":"H3906","v":[["*",[12,10,[[1,1,1,0,1,[[52,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]],[10,2,1,2,3,[[312,2,1,2,3]]],[11,1,1,3,4,[[325,1,1,3,4]]],[13,2,1,4,5,[[384,2,1,4,5]]],[17,1,1,5,6,[[471,1,1,5,6]]],[18,3,3,6,9,[[519,1,1,6,7],[520,1,1,7,8],[521,1,1,8,9]]],[22,1,1,9,10,[[708,1,1,9,10]]]],[1588,5573,9507,9875,11568,13751,14564,14568,14595,18237]]],["affliction",[5,3,[[10,2,1,0,1,[[312,2,1,0,1]]],[13,2,1,1,2,[[384,2,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]]],[9507,11568,18237]]],["oppression",[7,7,[[1,1,1,0,1,[[52,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]],[11,1,1,2,3,[[325,1,1,2,3]]],[17,1,1,3,4,[[471,1,1,3,4]]],[18,3,3,4,7,[[519,1,1,4,5],[520,1,1,5,6],[521,1,1,6,7]]]],[1588,5573,9875,13751,14564,14568,14595]]]]},{"k":"H3907","v":[["*",[3,3,[[9,1,1,0,1,[[278,1,1,0,1]]],[18,2,2,1,3,[[518,1,1,1,2],[535,1,1,2,3]]]],[8305,14549,14784]]],["charmers",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14784]]],["whisper",[1,1,[[18,1,1,0,1,[[518,1,1,0,1]]]],[14549]]],["whispered",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8305]]]]},{"k":"H3908","v":[["*",[5,5,[[20,1,1,0,1,[[668,1,1,0,1]]],[22,3,3,1,4,[[681,2,2,1,3],[704,1,1,3,4]]],[23,1,1,4,5,[[752,1,1,4,5]]]],[17504,17710,17727,18146,19170]]],["charmed",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19170]]],["earrings",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17727]]],["enchantment",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17504]]],["orator",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17710]]],["prayer",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18146]]]]},{"k":"H3909","v":[["*",[6,6,[[1,3,3,0,3,[[56,1,1,0,1],[57,2,2,1,3]]],[7,1,1,3,4,[[234,1,1,3,4]]],[8,2,2,4,6,[[253,1,1,4,5],[259,1,1,5,6]]]],[1707,1717,1728,7179,7698,7843]]],["enchantments",[3,3,[[1,3,3,0,3,[[56,1,1,0,1],[57,2,2,1,3]]]],[1707,1717,1728]]],["privily",[1,1,[[8,1,1,0,1,[[259,1,1,0,1]]]],[7843]]],["secretly",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7698]]],["softly",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7179]]]]},{"k":"H3910","v":[["myrrh",[2,2,[[0,2,2,0,2,[[36,1,1,0,1],[42,1,1,1,2]]]],[1108,1301]]]]},{"k":"H3911","v":[["lizard",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3027]]]]},{"k":"H3912","v":[["Letushim",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[661]]]]},{"k":"H3913","v":[["*",[5,5,[[0,1,1,0,1,[[3,1,1,0,1]]],[8,1,1,1,2,[[248,1,1,1,2]]],[17,1,1,2,3,[[451,1,1,2,3]]],[18,2,2,3,5,[[484,1,1,3,4],[529,1,1,4,5]]]],[101,7505,13247,14007,14712]]],["instructer",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[101]]],["sharp",[1,1,[[18,1,1,0,1,[[529,1,1,0,1]]]],[14712]]],["sharpen",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7505]]],["sharpeneth",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13247]]],["whet",[1,1,[[18,1,1,0,1,[[484,1,1,0,1]]]],[14007]]]]},{"k":"H3914","v":[["*",[3,3,[[10,3,3,0,3,[[297,3,3,0,3]]]],[8963,8964,8970]]],["addition",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8964]]],["additions",[2,2,[[10,2,2,0,2,[[297,2,2,0,2]]]],[8963,8970]]]]},{"k":"H3915","v":[["*",[233,223,[[0,25,25,0,25,[[0,4,4,0,4],[6,2,2,4,6],[7,1,1,6,7],[13,1,1,7,8],[18,4,4,8,12],[19,1,1,12,13],[25,1,1,13,14],[29,2,2,14,16],[30,3,3,16,19],[31,3,3,19,22],[39,1,1,22,23],[40,1,1,23,24],[45,1,1,24,25]]],[1,18,15,25,40,[[59,1,1,25,26],[60,1,1,26,27],[61,7,6,27,33],[62,3,2,33,35],[63,3,2,35,37],[73,1,1,37,38],[83,1,1,38,39],[89,1,1,39,40]]],[2,2,2,40,42,[[95,1,1,40,41],[97,1,1,41,42]]],[3,9,9,42,51,[[125,2,2,42,44],[127,2,2,44,46],[130,2,2,46,48],[138,3,3,48,51]]],[4,9,9,51,60,[[153,1,1,51,52],[161,4,4,52,56],[162,1,1,56,57],[168,1,1,57,58],[175,1,1,58,59],[180,1,1,59,60]]],[5,7,7,60,67,[[187,1,1,60,61],[188,1,1,61,62],[190,1,1,62,63],[194,3,3,63,66],[196,1,1,66,67]]],[6,12,10,67,77,[[216,3,3,67,70],[217,1,1,70,71],[219,2,2,71,73],[226,4,2,73,75],[229,1,1,75,76],[230,1,1,76,77]]],[7,4,4,77,81,[[232,1,1,77,78],[234,3,3,78,81]]],[8,14,14,81,95,[[249,2,2,81,83],[250,2,2,83,85],[254,3,3,85,88],[260,1,1,88,89],[261,1,1,89,90],[263,3,3,90,93],[265,1,1,93,94],[266,1,1,94,95]]],[9,8,8,95,103,[[268,2,2,95,97],[270,1,1,97,98],[273,1,1,98,99],[283,2,2,99,101],[285,1,1,101,102],[287,1,1,102,103]]],[10,6,6,103,109,[[293,3,3,103,106],[298,2,2,106,108],[309,1,1,108,109]]],[11,5,5,109,114,[[318,1,1,109,110],[319,1,1,110,111],[320,1,1,111,112],[331,1,1,112,113],[337,1,1,113,114]]],[12,2,2,114,116,[[346,1,1,114,115],[354,1,1,115,116]]],[13,5,5,116,121,[[367,1,1,116,117],[372,1,1,117,118],[373,1,1,118,119],[387,1,1,119,120],[401,1,1,120,121]]],[15,9,9,121,130,[[413,1,1,121,122],[414,3,3,122,125],[416,2,2,125,127],[418,1,1,127,128],[421,2,2,128,130]]],[16,2,2,130,132,[[429,1,1,130,131],[431,1,1,131,132]]],[17,17,17,132,149,[[437,1,1,132,133],[438,3,3,133,136],[439,1,1,136,137],[440,1,1,137,138],[442,1,1,138,139],[452,1,1,139,140],[455,1,1,140,141],[459,1,1,141,142],[462,1,1,142,143],[465,1,1,143,144],[468,1,1,144,145],[469,2,2,145,147],[470,1,1,147,148],[471,1,1,148,149]]],[18,28,27,149,176,[[478,1,1,149,150],[483,1,1,150,151],[493,1,1,151,152],[494,1,1,152,153],[496,2,1,153,154],[499,1,1,154,155],[509,1,1,155,156],[519,2,2,156,158],[532,1,1,158,159],[551,1,1,159,160],[554,2,2,160,162],[555,1,1,162,163],[565,1,1,163,164],[567,1,1,164,165],[568,1,1,165,166],[569,1,1,166,167],[581,1,1,167,168],[582,1,1,168,169],[596,2,2,169,171],[598,1,1,171,172],[611,1,1,172,173],[613,1,1,173,174],[616,2,2,174,176]]],[19,3,3,176,179,[[634,1,1,176,177],[658,2,2,177,179]]],[20,2,2,179,181,[[660,1,1,179,180],[666,1,1,180,181]]],[21,3,3,181,184,[[673,2,2,181,183],[675,1,1,183,184]]],[22,18,16,184,200,[[682,1,1,184,185],[693,2,1,185,186],[694,1,1,186,187],[699,4,3,187,190],[704,1,1,190,191],[705,1,1,191,192],[706,1,1,192,193],[707,1,1,193,194],[708,1,1,194,195],[712,1,1,195,196],[716,2,2,196,198],[738,1,1,198,199],[740,1,1,199,200]]],[23,12,11,200,211,[[750,1,1,200,201],[753,1,1,201,202],[758,1,1,202,203],[760,1,1,203,204],[775,1,1,204,205],[777,3,2,205,207],[780,1,1,207,208],[783,1,1,208,209],[793,1,1,209,210],[796,1,1,210,211]]],[24,3,3,211,214,[[797,1,1,211,212],[798,2,2,212,214]]],[27,2,2,214,216,[[865,1,1,214,215],[868,1,1,215,216]]],[29,1,1,216,217,[[883,1,1,216,217]]],[30,1,1,217,218,[[888,1,1,217,218]]],[31,3,2,218,220,[[889,1,1,218,219],[892,2,1,219,220]]],[32,1,1,220,221,[[895,1,1,220,221]]],[37,2,2,221,223,[[911,1,1,221,222],[924,1,1,222,223]]]],[4,13,15,17,163,171,205,351,462,490,491,492,498,716,845,846,897,912,913,941,949,950,1177,1206,1388,1790,1810,1824,1828,1845,1846,1847,1858,1888,1889,1909,1910,2195,2524,2745,2858,2952,3981,3986,4033,4056,4109,4122,4383,4394,4395,4925,5166,5168,5175,5182,5196,5343,5510,5677,5859,5871,5913,6005,6011,6015,6073,6679,6681,6694,6703,6786,6788,6951,6952,7049,7059,7139,7174,7180,7185,7542,7544,7571,7576,7716,7717,7730,7877,7912,7950,7962,7967,7990,8021,8078,8081,8127,8184,8450,8465,8518,8590,8821,8835,8836,9014,9044,9395,9688,9719,9748,10096,10226,10648,10866,11201,11302,11336,11633,11980,12302,12319,12320,12322,12368,12381,12411,12523,12530,12778,12794,12904,12907,12910,12911,12943,12965,13011,13272,13334,13450,13501,13574,13665,13703,13708,13730,13756,13941,13991,14099,14106,14170,14206,14359,14558,14563,14742,15064,15095,15099,15127,15309,15382,15400,15413,15591,15645,15953,15960,16087,16173,16205,16250,16251,16584,17299,17302,17356,17474,17572,17579,17600,17738,17961,17972,18043,18046,18047,18139,18154,18183,18200,18246,18313,18402,18403,18832,18860,19094,19176,19310,19349,19726,19795,19800,19872,19927,20136,20283,20312,20350,20351,22138,22184,22431,22515,22548,22578,22614,22886,23075]]],["+",[10,8,[[1,2,2,0,2,[[60,1,1,0,1],[61,1,1,1,2]]],[6,2,1,2,3,[[226,2,1,2,3]]],[7,1,1,3,4,[[234,1,1,3,4]]],[10,1,1,4,5,[[293,1,1,4,5]]],[17,1,1,5,6,[[469,1,1,5,6]]],[18,1,1,6,7,[[596,1,1,6,7]]],[22,2,1,7,8,[[699,2,1,7,8]]]],[1810,1845,6952,7180,8836,13703,15960,18046]]],["Night",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[4]]],["night",[204,196,[[0,22,22,0,22,[[0,3,3,0,3],[7,1,1,3,4],[13,1,1,4,5],[18,4,4,5,9],[19,1,1,9,10],[25,1,1,10,11],[29,2,2,11,13],[30,3,3,13,16],[31,3,3,16,19],[39,1,1,19,20],[40,1,1,20,21],[45,1,1,21,22]]],[1,14,11,22,33,[[59,1,1,22,23],[61,6,5,23,28],[62,3,2,28,30],[63,3,2,30,32],[89,1,1,32,33]]],[2,2,2,33,35,[[95,1,1,33,34],[97,1,1,34,35]]],[3,9,9,35,44,[[125,2,2,35,37],[127,2,2,37,39],[130,2,2,39,41],[138,3,3,41,44]]],[4,4,4,44,48,[[153,1,1,44,45],[168,1,1,45,46],[175,1,1,46,47],[180,1,1,47,48]]],[5,7,7,48,55,[[187,1,1,48,49],[188,1,1,49,50],[190,1,1,50,51],[194,3,3,51,54],[196,1,1,54,55]]],[6,10,9,55,64,[[216,3,3,55,58],[217,1,1,58,59],[219,2,2,59,61],[226,2,1,61,62],[229,1,1,62,63],[230,1,1,63,64]]],[7,3,3,64,67,[[232,1,1,64,65],[234,2,2,65,67]]],[8,13,13,67,80,[[249,2,2,67,69],[250,2,2,69,71],[254,3,3,71,74],[260,1,1,74,75],[261,1,1,75,76],[263,3,3,76,79],[266,1,1,79,80]]],[9,8,8,80,88,[[268,2,2,80,82],[270,1,1,82,83],[273,1,1,83,84],[283,2,2,84,86],[285,1,1,86,87],[287,1,1,87,88]]],[10,4,4,88,92,[[293,2,2,88,90],[298,2,2,90,92]]],[11,5,5,92,97,[[318,1,1,92,93],[319,1,1,93,94],[320,1,1,94,95],[331,1,1,95,96],[337,1,1,96,97]]],[12,2,2,97,99,[[346,1,1,97,98],[354,1,1,98,99]]],[13,5,5,99,104,[[367,1,1,99,100],[372,1,1,100,101],[373,1,1,101,102],[387,1,1,102,103],[401,1,1,103,104]]],[15,9,9,104,113,[[413,1,1,104,105],[414,3,3,105,108],[416,2,2,108,110],[418,1,1,110,111],[421,2,2,111,113]]],[16,2,2,113,115,[[429,1,1,113,114],[431,1,1,114,115]]],[17,13,13,115,128,[[438,3,3,115,118],[439,1,1,118,119],[440,1,1,119,120],[452,1,1,120,121],[455,1,1,121,122],[459,1,1,122,123],[462,1,1,123,124],[468,1,1,124,125],[469,1,1,125,126],[470,1,1,126,127],[471,1,1,127,128]]],[18,25,24,128,152,[[478,1,1,128,129],[483,1,1,129,130],[494,1,1,130,131],[496,2,1,131,132],[509,1,1,132,133],[519,2,2,133,135],[532,1,1,135,136],[551,1,1,136,137],[554,2,2,137,139],[555,1,1,139,140],[565,1,1,140,141],[567,1,1,141,142],[568,1,1,142,143],[569,1,1,143,144],[581,1,1,144,145],[582,1,1,145,146],[596,1,1,146,147],[598,1,1,147,148],[611,1,1,148,149],[613,1,1,149,150],[616,2,2,150,152]]],[19,3,3,152,155,[[634,1,1,152,153],[658,2,2,153,155]]],[20,2,2,155,157,[[660,1,1,155,156],[666,1,1,156,157]]],[21,3,3,157,160,[[673,2,2,157,159],[675,1,1,159,160]]],[22,15,14,160,174,[[682,1,1,160,161],[693,2,1,161,162],[694,1,1,162,163],[699,1,1,163,164],[704,1,1,164,165],[705,1,1,165,166],[706,1,1,166,167],[707,1,1,167,168],[708,1,1,168,169],[712,1,1,169,170],[716,2,2,170,172],[738,1,1,172,173],[740,1,1,173,174]]],[23,12,11,174,185,[[750,1,1,174,175],[753,1,1,175,176],[758,1,1,176,177],[760,1,1,177,178],[775,1,1,178,179],[777,3,2,179,181],[780,1,1,181,182],[783,1,1,182,183],[793,1,1,183,184],[796,1,1,184,185]]],[24,3,3,185,188,[[797,1,1,185,186],[798,2,2,186,188]]],[27,2,2,188,190,[[865,1,1,188,189],[868,1,1,189,190]]],[29,1,1,190,191,[[883,1,1,190,191]]],[30,1,1,191,192,[[888,1,1,191,192]]],[31,2,1,192,193,[[892,2,1,192,193]]],[32,1,1,193,194,[[895,1,1,193,194]]],[37,2,2,194,196,[[911,1,1,194,195],[924,1,1,195,196]]]],[13,15,17,205,351,462,490,491,492,498,716,845,846,897,912,913,941,949,950,1177,1206,1388,1790,1824,1828,1846,1847,1858,1888,1889,1909,1910,2745,2858,2952,3981,3986,4033,4056,4109,4122,4383,4394,4395,4925,5343,5510,5677,5859,5871,5913,6005,6011,6015,6073,6679,6681,6694,6703,6786,6788,6951,7049,7059,7139,7174,7185,7542,7544,7571,7576,7716,7717,7730,7877,7912,7950,7962,7967,8021,8078,8081,8127,8184,8450,8465,8518,8590,8821,8835,9014,9044,9688,9719,9748,10096,10226,10648,10866,11201,11302,11336,11633,11980,12302,12319,12320,12322,12368,12381,12411,12523,12530,12778,12794,12907,12910,12911,12943,12965,13272,13334,13450,13501,13665,13708,13730,13756,13941,13991,14106,14170,14359,14558,14563,14742,15064,15095,15099,15127,15309,15382,15400,15413,15591,15645,15953,16087,16173,16205,16250,16251,16584,17299,17302,17356,17474,17572,17579,17600,17738,17961,17972,18047,18139,18154,18183,18200,18246,18313,18402,18403,18832,18860,19094,19176,19310,19349,19726,19795,19800,19872,19927,20136,20283,20312,20350,20351,22138,22184,22431,22515,22578,22614,22886,23075]]],["nights",[15,15,[[0,2,2,0,2,[[6,2,2,0,2]]],[1,2,2,2,4,[[73,1,1,2,3],[83,1,1,3,4]]],[4,5,5,4,9,[[161,4,4,4,8],[162,1,1,8,9]]],[8,1,1,9,10,[[265,1,1,9,10]]],[10,1,1,10,11,[[309,1,1,10,11]]],[17,2,2,11,13,[[437,1,1,11,12],[442,1,1,12,13]]],[22,1,1,13,14,[[699,1,1,13,14]]],[31,1,1,14,15,[[889,1,1,14,15]]]],[163,171,2195,2524,5166,5168,5175,5182,5196,7990,9395,12904,13011,18043,22548]]],["season",[2,2,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,1,1,1,2,[[499,1,1,1,2]]]],[13574,14206]]],["seasons",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14099]]]]},{"k":"H3916","v":[["*",[5,5,[[26,5,5,0,5,[[851,1,1,0,1],[854,1,1,1,2],[856,3,3,2,5]]]],[21777,21904,21935,21940,21946]]],["+",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21777]]],["night",[4,4,[[26,4,4,0,4,[[854,1,1,0,1],[856,3,3,1,4]]]],[21904,21935,21940,21946]]]]},{"k":"H3917","v":[["owl",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18317]]]]},{"k":"H3918","v":[["lion",[3,3,[[17,1,1,0,1,[[439,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]]],[12941,17281,18223]]]]},{"k":"H3919","v":[["Laish",[7,7,[[6,4,4,0,4,[[228,4,4,0,4]]],[8,1,1,4,5,[[260,1,1,4,5]]],[9,1,1,5,6,[[269,1,1,5,6]]],[22,1,1,6,7,[[688,1,1,6,7]]]],[7000,7007,7020,7022,7905,8096,17880]]]]},{"k":"H3920","v":[["*",[121,112,[[3,4,4,0,4,[[137,1,1,0,1],[148,3,3,1,4]]],[4,3,3,4,7,[[154,2,2,4,6],[155,1,1,6,7]]],[5,24,21,7,28,[[192,1,1,7,8],[193,8,5,8,13],[194,2,2,13,15],[196,7,7,15,22],[197,3,3,22,25],[201,2,2,25,27],[205,1,1,27,28]]],[6,14,13,28,41,[[211,4,4,28,32],[213,1,1,32,33],[217,3,2,33,35],[218,2,2,35,37],[219,2,2,37,39],[222,1,1,39,40],[225,1,1,40,41]]],[8,6,5,41,46,[[245,3,2,41,43],[249,3,3,43,46]]],[9,7,6,46,52,[[271,1,1,46,47],[274,1,1,47,48],[278,5,4,48,52]]],[10,2,2,52,54,[[299,1,1,52,53],[306,1,1,53,54]]],[11,4,3,54,57,[[324,1,1,54,55],[329,1,1,55,56],[330,2,1,56,57]]],[12,2,2,57,59,[[348,1,1,57,58],[355,1,1,58,59]]],[13,8,8,59,67,[[378,1,1,59,60],[379,1,1,60,61],[381,1,1,61,62],[383,1,1,62,63],[388,1,1,63,64],[394,1,1,64,65],[398,1,1,65,66],[399,1,1,66,67]]],[15,1,1,67,68,[[421,1,1,67,68]]],[17,4,4,68,72,[[440,1,1,68,69],[471,1,1,69,70],[473,1,1,70,71],[476,1,1,71,72]]],[18,3,3,72,75,[[486,1,1,72,73],[512,1,1,73,74],[536,1,1,74,75]]],[19,4,4,75,79,[[632,1,1,75,76],[633,1,1,76,77],[638,1,1,77,78],[643,1,1,78,79]]],[20,1,1,79,80,[[665,1,1,79,80]]],[22,4,4,80,84,[[686,1,1,80,81],[698,1,1,81,82],[702,1,1,82,83],[706,1,1,83,84]]],[23,22,21,84,105,[[749,1,1,84,85],[750,1,1,85,86],[752,1,1,86,87],[762,1,1,87,88],[776,3,3,88,91],[778,1,1,91,92],[781,1,1,92,93],[782,3,2,93,95],[792,4,4,95,99],[794,3,3,99,102],[795,3,3,102,105]]],[24,1,1,105,106,[[800,1,1,105,106]]],[26,2,2,106,108,[[860,2,2,106,108]]],[29,3,2,108,110,[[881,3,2,108,110]]],[34,1,1,110,111,[[903,1,1,110,111]]],[37,1,1,111,112,[[924,1,1,111,112]]]],[4372,4757,4759,4760,4972,4973,4979,5969,5990,5991,5992,5993,5994,6021,6023,6065,6092,6096,6099,6101,6103,6106,6117,6119,6124,6218,6219,6368,6517,6521,6522,6527,6596,6718,6719,6731,6733,6799,6804,6874,6933,7438,7439,7549,7550,7555,8139,8213,8312,8313,8314,8315,9067,9301,9867,9989,10034,10678,10894,11441,11472,11498,11525,11653,11782,11893,11919,12536,12964,13744,13823,13905,14036,14418,14802,16539,16542,16694,16872,17455,17822,18030,18113,18177,19084,19100,19162,19406,19734,19755,19759,19823,19882,19898,19923,20081,20087,20121,20124,20168,20175,20190,20243,20253,20268,20440,22051,22054,22399,22400,22741,23070]]],["+",[30,29,[[3,2,2,0,2,[[148,2,2,0,2]]],[4,2,2,2,4,[[154,1,1,2,3],[155,1,1,3,4]]],[5,5,5,4,9,[[192,1,1,4,5],[193,1,1,5,6],[194,1,1,6,7],[196,1,1,7,8],[197,1,1,8,9]]],[6,6,6,9,15,[[211,1,1,9,10],[213,1,1,10,11],[217,1,1,11,12],[218,1,1,12,13],[219,1,1,13,14],[222,1,1,14,15]]],[9,4,4,15,19,[[271,1,1,15,16],[278,3,3,16,19]]],[10,1,1,19,20,[[299,1,1,19,20]]],[11,1,1,20,21,[[329,1,1,20,21]]],[12,1,1,21,22,[[348,1,1,21,22]]],[13,4,4,22,26,[[378,1,1,22,23],[394,1,1,23,24],[398,1,1,24,25],[399,1,1,25,26]]],[19,2,2,26,28,[[632,1,1,26,27],[643,1,1,27,28]]],[29,2,1,28,29,[[881,2,1,28,29]]]],[4759,4760,4972,4979,5969,5993,6023,6065,6117,6527,6596,6718,6731,6799,6874,8139,8312,8313,8314,9067,9989,10678,11441,11782,11893,11919,16539,16872,22400]]],["catch",[2,2,[[18,1,1,0,1,[[512,1,1,0,1]]],[23,1,1,1,2,[[749,1,1,1,2]]]],[14418,19084]]],["caught",[3,3,[[6,2,2,0,2,[[218,1,1,0,1],[225,1,1,1,2]]],[13,1,1,2,3,[[388,1,1,2,3]]]],[6733,6933,11653]]],["frozen",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13823]]],["holden",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13744]]],["take",[16,15,[[5,4,3,0,3,[[193,2,1,0,1],[196,1,1,1,2],[197,1,1,2,3]]],[6,1,1,3,4,[[217,1,1,3,4]]],[9,1,1,4,5,[[278,1,1,4,5]]],[23,7,7,5,12,[[762,1,1,5,6],[776,3,3,6,9],[778,1,1,9,10],[781,1,1,10,11],[782,1,1,11,12]]],[26,2,2,12,14,[[860,2,2,12,14]]],[34,1,1,14,15,[[903,1,1,14,15]]]],[5990,6106,6119,6718,8314,19406,19734,19755,19759,19823,19882,19898,22051,22054,22741]]],["taken",[39,37,[[5,4,4,0,4,[[193,4,4,0,4]]],[6,1,1,4,5,[[211,1,1,4,5]]],[8,5,4,5,9,[[245,3,2,5,7],[249,2,2,7,9]]],[10,1,1,9,10,[[306,1,1,9,10]]],[11,1,1,10,11,[[330,1,1,10,11]]],[13,2,2,11,13,[[381,1,1,11,12],[383,1,1,12,13]]],[18,2,2,13,15,[[486,1,1,13,14],[536,1,1,14,15]]],[19,2,2,15,17,[[633,1,1,15,16],[638,1,1,16,17]]],[20,1,1,17,18,[[665,1,1,17,18]]],[22,3,3,18,21,[[686,1,1,18,19],[702,1,1,19,20],[706,1,1,20,21]]],[23,14,13,21,34,[[750,1,1,21,22],[752,1,1,22,23],[782,2,1,23,24],[792,4,4,24,28],[794,3,3,28,31],[795,3,3,31,34]]],[24,1,1,34,35,[[800,1,1,34,35]]],[29,1,1,35,36,[[881,1,1,35,36]]],[37,1,1,36,37,[[924,1,1,36,37]]]],[5991,5992,5993,5994,6517,7438,7439,7549,7550,9301,10034,11498,11525,14036,14802,16542,16694,17455,17822,18113,18177,19100,19162,19923,20081,20087,20121,20124,20168,20175,20190,20243,20253,20268,20440,22399,23070]]],["taketh",[4,4,[[5,2,2,0,2,[[193,1,1,0,1],[201,1,1,1,2]]],[6,1,1,2,3,[[211,1,1,2,3]]],[17,1,1,3,4,[[440,1,1,3,4]]]],[5990,6218,6521,12964]]],["together",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13905]]],["took",[24,24,[[3,2,2,0,2,[[137,1,1,0,1],[148,1,1,1,2]]],[4,1,1,2,3,[[154,1,1,2,3]]],[5,9,9,3,12,[[194,1,1,3,4],[196,5,5,4,9],[197,1,1,9,10],[201,1,1,10,11],[205,1,1,11,12]]],[6,3,3,12,15,[[211,1,1,12,13],[217,1,1,13,14],[219,1,1,14,15]]],[8,1,1,15,16,[[249,1,1,15,16]]],[9,2,2,16,18,[[274,1,1,16,17],[278,1,1,17,18]]],[11,2,2,18,20,[[324,1,1,18,19],[330,1,1,19,20]]],[12,1,1,20,21,[[355,1,1,20,21]]],[13,1,1,21,22,[[379,1,1,21,22]]],[15,1,1,22,23,[[421,1,1,22,23]]],[22,1,1,23,24,[[698,1,1,23,24]]]],[4372,4757,4973,6021,6092,6096,6099,6101,6103,6124,6219,6368,6522,6719,6804,7555,8213,8315,9867,10034,10894,11472,12536,18030]]]]},{"k":"H3921","v":[["+",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16481]]]]},{"k":"H3922","v":[["Lecah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10406]]]]},{"k":"H3923","v":[["*",[24,22,[[5,10,10,0,10,[[196,8,8,0,8],[198,1,1,8,9],[201,1,1,9,10]]],[11,5,4,10,14,[[326,2,1,10,11],[330,2,2,11,13],[331,1,1,13,14]]],[13,4,3,14,17,[[377,1,1,14,15],[391,2,1,15,16],[398,1,1,16,17]]],[15,1,1,17,18,[[423,1,1,17,18]]],[22,2,2,18,20,[[714,1,1,18,19],[715,1,1,19,20]]],[23,1,1,20,21,[[778,1,1,20,21]]],[32,1,1,21,22,[[893,1,1,21,22]]]],[6067,6069,6087,6095,6096,6097,6098,6099,6141,6241,9915,10038,10041,10069,11423,11731,11884,12618,18332,18360,19808,22592]]],["+",[4,4,[[5,1,1,0,1,[[196,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[22,2,2,2,4,[[714,1,1,2,3],[715,1,1,3,4]]]],[6098,10069,18332,18360]]],["Lachish",[20,18,[[5,9,9,0,9,[[196,7,7,0,7],[198,1,1,7,8],[201,1,1,8,9]]],[11,4,3,9,12,[[326,2,1,9,10],[330,2,2,10,12]]],[13,4,3,12,15,[[377,1,1,12,13],[391,2,1,13,14],[398,1,1,14,15]]],[15,1,1,15,16,[[423,1,1,15,16]]],[23,1,1,16,17,[[778,1,1,16,17]]],[32,1,1,17,18,[[893,1,1,17,18]]]],[6067,6069,6087,6095,6096,6097,6099,6141,6241,9915,10038,10041,11423,11731,11884,12618,19808,22592]]]]},{"k":"H3924","v":[["loops",[13,7,[[1,13,7,0,7,[[75,7,4,0,4],[85,6,3,4,7]]]],[2239,2240,2245,2246,2577,2578,2583]]]]},{"k":"H3925","v":[["*",[85,79,[[4,17,16,0,16,[[156,5,4,0,4],[157,2,2,4,6],[158,1,1,6,7],[163,1,1,7,8],[166,1,1,8,9],[169,1,1,9,10],[170,1,1,10,11],[172,1,1,11,12],[183,4,4,12,16]]],[6,1,1,16,17,[[213,1,1,16,17]]],[9,2,2,17,19,[[267,1,1,17,18],[288,1,1,18,19]]],[12,2,2,19,21,[[342,1,1,19,20],[362,1,1,20,21]]],[13,3,2,21,23,[[383,3,2,21,23]]],[14,1,1,23,24,[[409,1,1,23,24]]],[17,1,1,24,25,[[456,1,1,24,25]]],[18,26,26,25,51,[[495,1,1,25,26],[502,3,3,26,29],[511,1,1,29,30],[528,1,1,30,31],[548,1,1,31,32],[571,2,2,32,34],[583,1,1,34,35],[596,13,13,35,48],[609,1,1,48,49],[620,1,1,49,50],[621,1,1,50,51]]],[19,2,2,51,53,[[632,1,1,51,52],[657,1,1,52,53]]],[20,1,1,53,54,[[670,1,1,53,54]]],[21,2,2,54,56,[[673,1,1,54,55],[678,1,1,55,56]]],[22,9,8,56,64,[[679,1,1,56,57],[680,1,1,57,58],[704,2,2,58,60],[707,2,2,60,62],[718,2,1,62,63],[726,1,1,63,64]]],[23,13,10,64,74,[[746,1,1,64,65],[753,3,3,65,68],[754,1,1,68,69],[756,3,1,69,70],[757,1,1,70,71],[775,2,2,71,73],[776,2,1,73,74]]],[25,2,2,74,76,[[820,2,2,74,76]]],[26,1,1,76,77,[[850,1,1,76,77]]],[27,1,1,77,78,[[871,1,1,77,78]]],[32,1,1,78,79,[[896,1,1,78,79]]]],[5005,5009,5014,5018,5054,5084,5087,5227,5313,5383,5393,5445,5740,5741,5747,5750,6570,8040,8637,10446,11053,11530,11532,12183,13377,14152,14255,14256,14260,14399,14704,14993,15441,15443,15686,15905,15910,15924,15962,15964,15966,15969,15971,15997,16006,16022,16033,16069,16163,16303,16306,16530,17254,17532,17579,17642,17671,17689,18139,18140,18206,18217,18434,18631,18998,19180,19189,19195,19203,19265,19287,19709,19725,19764,20884,20887,21741,22236,22623]]],["+",[6,4,[[20,1,1,0,1,[[670,1,1,0,1]]],[23,5,3,1,4,[[746,1,1,1,2],[756,3,1,2,3],[775,1,1,3,4]]]],[17532,18998,19265,19709]]],["Learn",[2,2,[[22,1,1,0,1,[[679,1,1,0,1]]],[23,1,1,1,2,[[754,1,1,1,2]]]],[17671,19203]]],["Teach",[2,2,[[18,2,2,0,2,[[596,1,1,0,1],[620,1,1,1,2]]]],[15964,16303]]],["expert",[1,1,[[21,1,1,0,1,[[673,1,1,0,1]]]],[17579]]],["instruct",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17642]]],["instructed",[2,2,[[12,1,1,0,1,[[362,1,1,0,1]]],[19,1,1,1,2,[[632,1,1,1,2]]]],[11053,16530]]],["learn",[14,14,[[4,7,7,0,7,[[156,1,1,0,1],[157,1,1,1,2],[166,1,1,2,3],[169,1,1,3,4],[170,1,1,4,5],[183,2,2,5,7]]],[18,2,2,7,9,[[596,2,2,7,9]]],[22,4,4,9,13,[[680,1,1,9,10],[704,2,2,10,12],[707,1,1,12,13]]],[32,1,1,13,14,[[896,1,1,13,14]]]],[5014,5054,5313,5383,5393,5740,5741,15969,15971,17689,18139,18140,18217,22623]]],["learned",[5,5,[[18,2,2,0,2,[[583,1,1,0,1],[596,1,1,1,2]]],[19,1,1,2,3,[[657,1,1,2,3]]],[25,2,2,3,5,[[820,2,2,3,5]]]],[15686,15905,17254,20884,20887]]],["skilful",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10446]]],["taught",[14,12,[[4,2,2,0,2,[[156,1,1,0,1],[183,1,1,1,2]]],[13,2,1,2,3,[[383,2,1,2,3]]],[18,2,2,3,5,[[548,1,1,3,4],[596,1,1,4,5]]],[22,3,2,5,7,[[707,1,1,5,6],[718,2,1,6,7]]],[23,4,4,7,11,[[753,2,2,7,9],[757,1,1,9,10],[776,1,1,10,11]]],[27,1,1,11,12,[[871,1,1,11,12]]]],[5009,5750,11532,14993,16069,18206,18434,19180,19189,19287,19764,22236]]],["teach",[29,29,[[4,8,8,0,8,[[156,3,3,0,3],[157,1,1,3,4],[158,1,1,4,5],[163,1,1,5,6],[172,1,1,6,7],[183,1,1,7,8]]],[6,1,1,8,9,[[213,1,1,8,9]]],[9,1,1,9,10,[[267,1,1,9,10]]],[13,1,1,10,11,[[383,1,1,10,11]]],[14,1,1,11,12,[[409,1,1,11,12]]],[17,1,1,12,13,[[456,1,1,12,13]]],[18,13,13,13,26,[[502,3,3,13,16],[511,1,1,16,17],[528,1,1,17,18],[596,7,7,18,25],[609,1,1,25,26]]],[23,2,2,26,28,[[753,1,1,26,27],[775,1,1,27,28]]],[26,1,1,28,29,[[850,1,1,28,29]]]],[5005,5014,5018,5084,5087,5227,5445,5747,6570,8040,11530,12183,13377,14255,14256,14260,14399,14704,15910,15924,15962,15966,16006,16022,16033,16163,19195,19725,21741]]],["teachers",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15997]]],["teachest",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15443]]],["teacheth",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,3,3,1,4,[[495,1,1,1,2],[571,1,1,2,3],[621,1,1,3,4]]],[22,1,1,4,5,[[726,1,1,4,5]]]],[8637,14152,15441,16306,18631]]],["teaching",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19764]]]]},{"k":"H3926","v":[["*",[7,7,[[17,6,6,0,6,[[441,1,1,0,1],[449,1,1,1,2],[462,1,1,2,3],[464,1,1,3,4],[473,1,1,4,5],[475,1,1,5,6]]],[18,1,1,6,7,[[533,1,1,6,7]]]],[12997,13202,13495,13553,13833,13868,14762]]],["+",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13833]]],["at",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13553]]],["for",[2,2,[[17,2,2,0,2,[[441,1,1,0,1],[462,1,1,1,2]]]],[12997,13495]]],["them",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13202]]],["they",[1,1,[[18,1,1,0,1,[[533,1,1,0,1]]]],[14762]]],["upon",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13868]]]]},{"k":"H3927","v":[["Lemuel",[2,2,[[19,2,2,0,2,[[658,2,2,0,2]]]],[17285,17288]]]]},{"k":"H3928","v":[["*",[6,5,[[22,4,3,0,3,[[686,1,1,0,1],[728,2,1,1,2],[732,1,1,2,3]]],[23,2,2,3,5,[[746,1,1,3,4],[757,1,1,4,5]]]],[17823,18666,18736,18989,19289]]],["accustomed",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19289]]],["disciples",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17823]]],["learned",[2,1,[[22,2,1,0,1,[[728,2,1,0,1]]]],[18666]]],["taught",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18736]]],["used",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18989]]]]},{"k":"H3929","v":[["Lamech",[11,10,[[0,10,9,0,9,[[3,5,4,0,4],[4,5,5,4,9]]],[12,1,1,9,10,[[338,1,1,9,10]]]],[97,98,102,103,130,131,133,135,136,10255]]]]},{"k":"H3930","v":[["throat",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17046]]]]},{"k":"H3931","v":[["+",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[12009]]]]},{"k":"H3932","v":[["*",[18,18,[[11,1,1,0,1,[[331,1,1,0,1]]],[13,1,1,1,2,[[396,1,1,1,2]]],[15,2,2,2,4,[[414,1,1,2,3],[416,1,1,3,4]]],[17,4,4,4,8,[[444,1,1,4,5],[446,1,1,5,6],[456,1,1,6,7],[457,1,1,7,8]]],[18,4,4,8,12,[[479,1,1,8,9],[499,1,1,9,10],[536,1,1,10,11],[557,1,1,11,12]]],[19,3,3,12,15,[[628,1,1,12,13],[644,1,1,13,14],[657,1,1,14,15]]],[22,2,2,15,17,[[711,1,1,15,16],[715,1,1,16,17]]],[23,1,1,17,18,[[764,1,1,17,18]]]],[10082,11837,12326,12360,13074,13111,13358,13408,13949,14211,14798,15204,16426,16878,17268,18298,18374,19429]]],["+",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12360]]],["derision",[2,2,[[18,2,2,0,2,[[479,1,1,0,1],[536,1,1,1,2]]]],[13949,14798]]],["laugh",[3,3,[[17,1,1,0,1,[[444,1,1,0,1]]],[18,2,2,1,3,[[499,1,1,1,2],[557,1,1,2,3]]]],[13074,14211,15204]]],["mock",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16426]]],["mocked",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11837]]],["mockest",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13111]]],["mocketh",[3,3,[[19,2,2,0,2,[[644,1,1,0,1],[657,1,1,1,2]]],[23,1,1,2,3,[[764,1,1,2,3]]]],[16878,17268,19429]]],["on",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13358]]],["scorn",[4,4,[[11,1,1,0,1,[[331,1,1,0,1]]],[15,1,1,1,2,[[414,1,1,1,2]]],[17,1,1,2,3,[[457,1,1,2,3]]],[22,1,1,3,4,[[715,1,1,3,4]]]],[10082,12326,13408,18374]]],["stammering",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18298]]]]},{"k":"H3933","v":[["*",[7,7,[[17,1,1,0,1,[[469,1,1,0,1]]],[18,3,3,1,4,[[521,1,1,1,2],[556,1,1,2,3],[600,1,1,3,4]]],[25,2,2,4,6,[[824,1,1,4,5],[837,1,1,5,6]]],[27,1,1,6,7,[[868,1,1,6,7]]]],[13690,14584,15189,16102,21039,21363,22194]]],["derision",[3,3,[[25,2,2,0,2,[[824,1,1,0,1],[837,1,1,1,2]]],[27,1,1,2,3,[[868,1,1,2,3]]]],[21039,21363,22194]]],["scorn",[2,2,[[18,2,2,0,2,[[521,1,1,0,1],[556,1,1,1,2]]]],[14584,15189]]],["scorning",[2,2,[[17,1,1,0,1,[[469,1,1,0,1]]],[18,1,1,1,2,[[600,1,1,1,2]]]],[13690,16102]]]]},{"k":"H3934","v":[["*",[2,2,[[18,1,1,0,1,[[512,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]]],[14426,18175]]],["mockers",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14426]]],["stammering",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18175]]]]},{"k":"H3935","v":[["Laadah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10406]]]]},{"k":"H3936","v":[["Laadan",[7,5,[[12,7,5,0,5,[[344,1,1,0,1],[360,3,3,1,4],[363,3,1,4,5]]]],[10561,10990,10991,10992,11098]]]]},{"k":"H3937","v":[["language",[1,1,[[18,1,1,0,1,[[591,1,1,0,1]]]],[15823]]]]},{"k":"H3938","v":[["Feed",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[688]]]]},{"k":"H3939","v":[["*",[8,8,[[4,1,1,0,1,[[181,1,1,0,1]]],[19,1,1,1,2,[[632,1,1,1,2]]],[23,2,2,2,4,[[753,1,1,2,3],[767,1,1,3,4]]],[24,2,2,4,6,[[799,2,2,4,6]]],[29,2,2,6,8,[[883,1,1,6,7],[884,1,1,7,8]]]],[5697,16521,19190,19499,20369,20373,22430,22462]]],["hemlock",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22462]]],["wormwood",[7,7,[[4,1,1,0,1,[[181,1,1,0,1]]],[19,1,1,1,2,[[632,1,1,1,2]]],[23,2,2,2,4,[[753,1,1,2,3],[767,1,1,3,4]]],[24,2,2,4,6,[[799,2,2,4,6]]],[29,1,1,6,7,[[883,1,1,6,7]]]],[5697,16521,19190,19499,20369,20373,22430]]]]},{"k":"H3940","v":[["*",[14,13,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,1,1,1,2,[[69,1,1,1,2]]],[6,5,4,2,6,[[217,2,2,2,4],[225,3,2,4,6]]],[17,2,2,6,8,[[447,1,1,6,7],[476,1,1,7,8]]],[22,1,1,8,9,[[740,1,1,8,9]]],[25,1,1,9,10,[[802,1,1,9,10]]],[26,1,1,10,11,[[859,1,1,10,11]]],[33,1,1,11,12,[[901,1,1,11,12]]],[37,1,1,12,13,[[922,1,1,12,13]]]],[377,2069,6710,6714,6933,6934,13133,13907,18855,20477,22021,22703,23051]]],["brands",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6934]]],["firebrand",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6933]]],["firebrands",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6933]]],["lamp",[3,3,[[0,1,1,0,1,[[14,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[22,1,1,2,3,[[740,1,1,2,3]]]],[377,13133,18855]]],["lamps",[5,5,[[6,2,2,0,2,[[217,2,2,0,2]]],[17,1,1,2,3,[[476,1,1,2,3]]],[25,1,1,3,4,[[802,1,1,3,4]]],[26,1,1,4,5,[[859,1,1,4,5]]]],[6710,6714,13907,20477,22021]]],["lightnings",[1,1,[[1,1,1,0,1,[[69,1,1,0,1]]]],[2069]]],["torch",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23051]]],["torches",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22703]]]]},{"k":"H3941","v":[["Lapidoth",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6603]]]]},{"k":"H3942","v":[["before",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8913]]]]},{"k":"H3943","v":[["*",[3,3,[[6,1,1,0,1,[[226,1,1,0,1]]],[7,1,1,1,2,[[234,1,1,1,2]]],[17,1,1,2,3,[[441,1,1,2,3]]]],[6978,7180,12996]]],["aside",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12996]]],["himself",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7180]]],["hold",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6978]]]]},{"k":"H3944","v":[["*",[3,3,[[19,2,2,0,2,[[628,1,1,0,1],[656,1,1,1,2]]],[22,1,1,2,3,[[706,1,1,2,3]]]],[16422,17232,18178]]],["Scornful",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17232]]],["scornful",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18178]]],["scorning",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16422]]]]},{"k":"H3945","v":[["scorners",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22183]]]]},{"k":"H3946","v":[["Lakum",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6354]]]]},{"k":"H3947","v":[["*",[966,909,[[0,142,134,0,134,[[1,4,4,0,4],[2,4,4,4,8],[3,2,2,8,10],[4,1,1,10,11],[5,2,2,11,13],[6,1,1,13,14],[7,2,2,14,16],[8,1,1,16,17],[10,2,2,17,19],[11,4,3,19,22],[13,5,5,22,27],[14,2,2,27,29],[15,1,1,29,30],[16,1,1,30,31],[17,4,4,31,35],[18,2,2,35,37],[19,3,3,37,40],[20,4,4,40,44],[21,6,5,44,49],[22,1,1,49,50],[23,14,13,50,63],[24,2,2,63,65],[25,1,1,65,66],[26,9,8,66,74],[27,7,6,74,80],[28,1,1,80,81],[29,4,3,81,84],[30,7,7,84,91],[31,3,3,91,94],[32,3,2,94,96],[33,9,9,96,105],[35,2,2,105,107],[36,2,2,107,109],[37,5,5,109,114],[38,1,1,114,115],[39,1,1,115,116],[41,4,4,116,120],[42,6,5,120,125],[43,1,1,125,126],[44,2,2,126,128],[45,1,1,128,129],[46,1,1,129,130],[47,4,4,130,134]]],[1,80,76,134,210,[[51,4,4,134,138],[53,6,4,138,142],[54,1,1,142,143],[55,4,4,143,147],[56,3,3,147,150],[58,3,3,150,153],[59,1,1,153,154],[61,7,7,154,161],[62,1,1,161,162],[63,3,3,162,165],[64,1,1,165,166],[65,2,2,166,168],[66,3,2,168,170],[67,2,2,170,172],[70,2,2,172,174],[71,1,1,174,175],[72,1,1,175,176],[73,3,3,176,179],[74,3,2,179,181],[76,1,1,181,182],[77,2,2,182,184],[78,14,14,184,198],[79,3,3,198,201],[81,2,2,201,203],[82,1,1,203,204],[83,2,2,204,206],[84,1,1,206,207],[85,1,1,207,208],[89,2,2,208,210]]],[2,56,53,210,263,[[93,4,4,210,214],[96,1,1,214,215],[97,10,10,215,225],[98,4,4,225,229],[99,2,2,229,231],[101,1,1,231,232],[103,13,12,232,244],[104,2,2,244,246],[105,5,5,246,251],[107,2,2,251,253],[109,3,3,253,256],[110,5,3,256,259],[112,1,1,259,260],[113,2,2,260,262],[114,1,1,262,263]]],[3,70,65,263,328,[[117,1,1,263,264],[119,7,6,264,270],[120,2,2,270,272],[121,3,2,272,274],[122,2,2,274,276],[123,2,2,276,278],[124,5,4,278,282],[127,1,1,282,283],[128,2,1,283,284],[129,1,1,284,285],[132,7,7,285,292],[133,2,2,292,294],[134,3,3,294,297],[135,5,5,297,302],[136,3,3,302,305],[137,2,2,305,307],[138,1,1,307,308],[139,5,5,308,313],[141,2,2,313,315],[143,2,2,315,317],[147,6,6,317,323],[150,4,3,323,326],[151,2,2,326,328]]],[4,45,43,328,371,[[153,3,3,328,331],[155,3,3,331,334],[156,2,2,334,336],[159,2,2,336,338],[161,2,2,338,340],[162,1,1,340,341],[167,1,1,341,342],[168,1,1,342,343],[171,1,1,343,344],[172,2,1,344,345],[173,2,2,345,347],[174,7,7,347,354],[176,6,5,354,359],[177,3,3,359,362],[178,2,2,362,364],[179,1,1,364,365],[181,1,1,365,366],[182,3,3,366,369],[183,1,1,369,370],[184,1,1,370,371]]],[5,22,22,371,393,[[188,1,1,371,372],[189,1,1,372,373],[190,2,2,373,375],[192,1,1,375,376],[193,5,5,376,381],[194,2,2,381,383],[195,3,3,383,386],[197,3,3,386,389],[199,1,1,389,390],[204,1,1,390,391],[210,2,2,391,393]]],[6,44,41,393,434,[[213,3,3,393,396],[214,2,2,396,398],[215,1,1,398,399],[216,4,4,399,403],[217,1,1,403,404],[218,2,2,404,406],[219,2,2,406,408],[221,3,3,408,411],[223,2,2,411,413],[224,6,5,413,418],[225,3,3,418,421],[226,1,1,421,422],[227,3,2,422,424],[228,5,5,424,429],[229,3,3,429,432],[230,2,1,432,433],[231,1,1,433,434]]],[7,3,3,434,437,[[235,3,3,434,437]]],[8,80,76,437,513,[[237,4,3,437,440],[239,6,6,440,446],[240,3,3,446,449],[241,3,3,449,452],[242,3,3,452,455],[243,5,5,455,460],[244,2,2,460,462],[245,3,3,462,465],[246,1,1,465,466],[247,4,2,466,468],[249,1,1,468,469],[250,1,1,469,470],[251,5,5,470,475],[252,8,8,475,483],[253,1,1,483,484],[254,3,3,484,487],[255,2,2,487,489],[256,4,3,489,492],[259,2,2,492,494],[260,6,6,494,500],[261,3,3,500,503],[262,1,1,503,504],[263,1,1,504,505],[265,5,5,505,510],[266,3,3,510,513]]],[9,39,38,513,551,[[267,1,1,513,514],[268,2,2,514,516],[269,1,1,516,517],[270,3,3,517,520],[271,1,1,520,521],[273,1,1,521,522],[274,3,3,522,525],[275,1,1,525,526],[276,1,1,526,527],[277,1,1,527,528],[278,6,5,528,533],[279,4,4,533,537],[280,1,1,537,538],[283,1,1,538,539],[284,3,3,539,542],[285,1,1,542,543],[286,2,2,543,545],[287,3,3,545,548],[288,1,1,548,549],[289,1,1,549,550],[290,1,1,550,551]]],[10,38,35,551,586,[[291,2,2,551,553],[293,3,3,553,556],[294,1,1,556,557],[297,2,2,557,559],[299,1,1,559,560],[300,1,1,560,561],[301,5,5,561,566],[304,4,2,566,568],[305,1,1,568,569],[306,1,1,569,570],[307,5,4,570,574],[308,3,3,574,577],[309,4,4,577,581],[310,3,3,581,584],[312,2,2,584,586]]],[11,72,64,586,650,[[314,8,7,586,593],[315,3,3,593,596],[316,3,3,596,599],[317,10,7,599,606],[318,3,3,606,609],[319,2,2,609,611],[320,3,3,611,614],[321,4,4,614,618],[322,2,2,618,620],[323,4,4,620,624],[324,5,5,624,629],[325,6,3,629,632],[326,2,2,632,634],[327,1,1,634,635],[328,1,1,635,636],[330,1,1,636,637],[331,1,1,637,638],[332,3,2,638,640],[335,3,3,640,643],[336,2,2,643,645],[337,5,5,645,650]]],[12,15,15,650,665,[[339,3,3,650,653],[341,1,1,653,654],[344,2,2,654,656],[347,1,1,656,657],[351,1,1,657,658],[354,1,1,658,659],[355,3,3,659,662],[356,1,1,662,663],[357,1,1,663,664],[358,1,1,664,665]]],[13,16,14,665,679,[[367,1,1,665,666],[374,1,1,666,667],[377,2,2,667,669],[378,3,1,669,670],[382,1,1,670,671],[384,1,1,671,672],[388,1,1,672,673],[389,3,3,673,676],[392,1,1,676,677],[402,2,2,677,679]]],[14,1,1,679,680,[[404,1,1,679,680]]],[15,7,7,680,687,[[417,3,3,680,683],[418,1,1,683,684],[419,1,1,684,685],[422,2,2,685,687]]],[16,6,6,687,693,[[427,4,4,687,691],[431,2,2,691,693]]],[17,17,17,693,710,[[436,3,3,693,696],[437,1,1,696,697],[438,1,1,697,698],[439,1,1,698,699],[440,1,1,699,700],[447,1,1,700,701],[450,1,1,701,702],[457,1,1,702,703],[462,1,1,703,704],[463,1,1,704,705],[470,1,1,705,706],[473,1,1,706,707],[475,1,1,707,708],[476,1,1,708,709],[477,1,1,709,710]]],[18,13,13,710,723,[[483,1,1,710,711],[492,1,1,711,712],[495,1,1,712,713],[508,1,1,713,714],[526,2,2,714,716],[527,1,1,716,717],[528,1,1,717,718],[545,1,1,718,719],[550,1,1,719,720],[552,1,1,720,721],[555,1,1,721,722],[586,1,1,722,723]]],[19,19,19,723,742,[[628,2,2,723,725],[629,1,1,725,726],[631,1,1,726,727],[633,1,1,727,728],[634,1,1,728,729],[635,1,1,729,730],[636,1,1,730,731],[637,1,1,731,732],[638,1,1,732,733],[644,1,1,733,734],[647,1,1,734,735],[648,1,1,735,736],[649,2,2,736,738],[651,2,2,738,740],[654,1,1,740,741],[658,1,1,741,742]]],[22,21,21,742,763,[[684,1,1,742,743],[686,1,1,743,744],[692,1,1,744,745],[701,1,1,745,746],[706,1,1,746,747],[714,1,1,747,748],[715,1,1,748,749],[717,1,1,749,750],[718,1,1,750,751],[722,2,2,751,753],[725,2,2,753,755],[727,2,2,755,757],[729,1,1,757,758],[730,1,1,758,759],[731,1,1,759,760],[734,1,1,760,761],[735,1,1,761,762],[744,1,1,762,763]]],[23,65,61,763,824,[[746,1,1,763,764],[747,1,1,764,765],[749,1,1,765,766],[751,1,1,766,767],[753,1,1,767,768],[757,3,3,768,771],[759,1,1,771,772],[760,1,1,772,773],[761,1,1,773,774],[764,2,2,774,776],[767,1,1,776,777],[769,4,4,777,781],[771,1,1,781,782],[772,2,2,782,784],[773,3,2,784,786],[776,3,3,786,789],[777,1,1,789,790],[779,2,2,790,792],[780,8,6,792,798],[781,1,1,798,799],[782,5,4,799,803],[783,3,3,803,806],[784,2,2,806,808],[785,2,2,808,810],[787,3,3,810,813],[788,1,1,813,814],[790,1,1,814,815],[792,1,1,815,816],[793,1,1,816,817],[795,2,2,817,819],[796,5,5,819,824]]],[25,65,56,824,880,[[802,1,1,824,825],[804,2,2,825,827],[805,3,3,827,830],[806,6,4,830,834],[809,1,1,834,835],[811,2,2,835,837],[816,2,1,837,838],[817,7,7,838,845],[818,7,5,845,850],[819,3,3,850,853],[820,1,1,853,854],[823,3,2,854,856],[824,4,4,856,860],[825,3,3,860,863],[828,1,1,863,864],[831,1,1,864,865],[834,4,3,865,868],[837,2,2,868,870],[838,4,3,870,873],[839,1,1,873,874],[844,2,2,874,876],[845,2,1,876,877],[846,2,2,877,879],[847,1,1,879,880]]],[27,9,8,880,888,[[862,2,2,880,882],[863,1,1,882,883],[865,1,1,883,884],[871,1,1,884,885],[872,1,1,885,886],[874,1,1,886,887],[875,2,1,887,888]]],[28,1,1,888,889,[[878,1,1,888,889]]],[29,6,6,889,895,[[883,2,2,889,891],[884,1,1,891,892],[885,1,1,892,893],[887,2,2,893,895]]],[31,1,1,895,896,[[892,1,1,895,896]]],[32,2,2,896,898,[[893,1,1,896,897],[894,1,1,897,898]]],[35,2,2,898,900,[[908,2,2,898,900]]],[36,1,1,900,901,[[910,1,1,900,901]]],[37,7,7,901,908,[[916,2,2,901,903],[921,4,4,903,907],[924,1,1,907,908]]],[38,1,1,908,909,[[926,1,1,908,909]]]],[45,51,52,53,61,74,77,78,90,98,129,139,158,161,192,203,228,295,297,303,313,317,347,348,357,359,360,369,370,384,420,428,429,431,432,471,472,497,498,509,527,534,540,543,549,550,553,557,560,584,594,595,598,601,613,628,629,631,639,642,652,656,658,659,678,726,736,740,741,742,762,763,772,773,774,775,779,782,784,791,818,839,845,867,874,896,905,907,918,919,923,941,950,951,970,971,982,984,989,996,997,1001,1005,1006,1008,1042,1046,1107,1114,1121,1125,1139,1142,1147,1169,1183,1268,1276,1285,1288,1301,1302,1303,1305,1308,1353,1376,1377,1392,1422,1452,1460,1464,1473,1555,1557,1559,1563,1610,1618,1621,1626,1643,1662,1675,1678,1680,1694,1700,1704,1750,1752,1766,1803,1819,1820,1821,1823,1837,1838,1848,1886,1895,1896,1900,1940,1963,1980,1988,1995,2001,2011,2087,2091,2124,2152,2183,2184,2185,2197,2198,2292,2298,2302,2337,2341,2343,2348,2349,2351,2352,2355,2356,2357,2358,2361,2362,2367,2398,2405,2416,2442,2458,2480,2500,2512,2536,2569,2716,2727,2800,2820,2825,2829,2913,2919,2927,2932,2933,2940,2942,2943,2945,2946,2947,2955,2956,2958,2968,2978,2989,3052,3115,3117,3121,3123,3125,3126,3132,3135,3136,3153,3160,3162,3182,3197,3206,3208,3213,3215,3219,3268,3269,3332,3335,3339,3352,3358,3359,3442,3448,3451,3505,3621,3704,3733,3737,3739,3741,3742,3752,3755,3809,3817,3841,3842,3855,3856,3945,3947,3955,3957,4040,4060,4095,4195,4200,4211,4212,4233,4240,4241,4246,4253,4263,4283,4285,4291,4293,4295,4306,4307,4319,4320,4336,4365,4366,4416,4427,4430,4436,4443,4444,4475,4478,4572,4576,4675,4693,4694,4711,4715,4718,4830,4831,4834,4876,4877,4907,4915,4917,4979,4983,4989,5024,5038,5114,5136,5166,5178,5203,5336,5361,5418,5434,5450,5458,5476,5477,5483,5484,5485,5488,5500,5526,5528,5529,5530,5544,5552,5554,5555,5568,5570,5610,5687,5712,5720,5721,5754,5769,5873,5905,5912,5930,5967,5977,5987,5997,5999,6000,6003,6014,6041,6048,6051,6123,6126,6130,6162,6300,6479,6502,6574,6589,6593,6605,6620,6642,6674,6679,6680,6681,6702,6735,6740,6797,6802,6834,6842,6844,6903,6907,6911,6912,6917,6920,6928,6933,6935,6944,6961,6982,6984,7010,7011,7013,7017,7020,7025,7052,7053,7064,7124,7192,7203,7206,7254,7255,7256,7300,7308,7314,7316,7318,7319,7320,7321,7322,7338,7339,7341,7361,7364,7366,7372,7380,7382,7383,7385,7394,7413,7419,7422,7441,7452,7463,7464,7540,7581,7597,7606,7608,7615,7618,7635,7636,7649,7658,7667,7669,7672,7675,7678,7719,7720,7726,7751,7761,7778,7780,7781,7841,7850,7872,7879,7896,7900,7901,7904,7916,7917,7927,7939,7966,7989,7994,7996,7997,7998,8013,8021,8022,8032,8057,8070,8096,8126,8127,8132,8145,8188,8210,8216,8217,8232,8244,8263,8290,8295,8296,8297,8316,8325,8326,8327,8336,8358,8468,8492,8495,8496,8541,8557,8560,8588,8590,8592,8619,8659,8714,8750,8756,8817,8836,8840,8859,8942,8947,9079,9107,9126,9139,9142,9143,9145,9221,9244,9267,9314,9327,9328,9336,9340,9345,9367,9372,9391,9397,9401,9408,9414,9441,9442,9483,9506,9554,9556,9559,9560,9561,9565,9571,9591,9602,9603,9604,9632,9644,9652,9662,9663,9667,9670,9671,9673,9676,9681,9687,9720,9721,9735,9736,9742,9757,9759,9769,9773,9799,9800,9831,9833,9838,9848,9855,9857,9858,9859,9868,9886,9889,9896,9910,9917,9954,9971,10056,10075,10105,10116,10181,10195,10199,10209,10214,10236,10237,10240,10241,10242,10325,10327,10329,10403,10550,10556,10663,10777,10870,10891,10897,10898,10911,10928,10957,11210,11364,11432,11434,11446,11515,11567,11655,11657,11664,11676,11733,11994,11997,12088,12384,12385,12397,12419,12483,12579,12580,12731,12732,12739,12740,12803,12804,12884,12886,12890,12899,12910,12942,12956,13148,13215,13411,13494,13506,13727,13813,13888,13892,13930,13994,14092,14134,14344,14663,14665,14677,14702,14918,15044,15073,15183,15763,16403,16419,16434,16500,16565,16595,16612,16645,16664,16718,16896,16970,16995,17040,17042,17090,17111,17182,17300,17775,17808,17930,18093,18183,18347,18366,18419,18422,18547,18548,18601,18602,18660,18661,18695,18701,18719,18765,18778,18943,18995,19016,19061,19147,19195,19270,19272,19273,19330,19338,19380,19427,19432,19515,19543,19549,19551,19562,19616,19621,19628,19641,19657,19742,19745,19764,19801,19826,19836,19844,19856,19863,19868,19870,19874,19891,19901,19905,19906,19909,19928,19935,19937,19942,19943,19969,19973,20002,20006,20007,20022,20056,20126,20156,20220,20238,20294,20295,20300,20301,20302,20468,20512,20516,20530,20532,20538,20547,20548,20549,20550,20607,20639,20640,20757,20778,20779,20780,20782,20794,20801,20823,20828,20830,20837,20838,20847,20857,20862,20866,20886,20988,21001,21017,21032,21033,21036,21061,21072,21081,21126,21208,21282,21284,21286,21383,21389,21413,21416,21418,21438,21592,21593,21621,21648,21649,21673,22096,22097,22114,22144,22231,22243,22277,22284,22348,22434,22435,22463,22479,22497,22498,22571,22590,22604,22822,22827,22878,22957,22958,23035,23038,23041,23043,23089,23116]]],["+",[278,272,[[0,44,42,0,42,[[1,1,1,0,1],[8,1,1,1,2],[10,1,1,2,3],[11,1,1,3,4],[13,2,2,4,6],[15,1,1,6,7],[16,1,1,7,8],[18,1,1,8,9],[19,1,1,9,10],[21,5,4,10,14],[23,3,3,14,17],[24,1,1,17,18],[26,2,2,18,20],[27,1,1,20,21],[28,1,1,21,22],[29,3,2,22,24],[30,3,3,24,27],[31,1,1,27,28],[33,4,4,28,32],[35,2,2,32,34],[36,1,1,34,35],[39,1,1,35,36],[41,1,1,36,37],[42,1,1,37,38],[43,1,1,38,39],[44,1,1,39,40],[45,1,1,40,41],[47,1,1,41,42]]],[1,22,21,42,63,[[53,2,1,42,43],[56,1,1,43,44],[58,1,1,44,45],[62,1,1,45,46],[64,1,1,46,47],[67,1,1,47,48],[73,1,1,48,49],[74,1,1,49,50],[76,1,1,50,51],[77,2,2,51,53],[78,6,6,53,59],[79,1,1,59,60],[81,1,1,60,61],[82,1,1,61,62],[89,1,1,62,63]]],[2,17,17,63,80,[[97,6,6,63,69],[98,2,2,69,71],[99,1,1,71,72],[103,3,3,72,75],[105,1,1,75,76],[107,1,1,76,77],[109,3,3,77,80]]],[3,27,27,80,107,[[117,1,1,80,81],[119,3,3,81,84],[120,1,1,84,85],[121,1,1,85,86],[122,2,2,86,88],[123,1,1,88,89],[124,2,2,89,91],[132,2,2,91,93],[134,1,1,93,94],[135,1,1,94,95],[136,3,3,95,98],[137,2,2,98,100],[138,1,1,100,101],[139,1,1,101,102],[141,1,1,102,103],[143,1,1,103,104],[147,3,3,104,107]]],[4,9,9,107,116,[[153,1,1,107,108],[155,1,1,108,109],[167,1,1,109,110],[174,3,3,110,113],[177,1,1,113,114],[181,1,1,114,115],[183,1,1,115,116]]],[5,6,6,116,122,[[188,1,1,116,117],[193,1,1,117,118],[194,1,1,118,119],[197,2,2,119,121],[210,1,1,121,122]]],[6,24,24,122,146,[[213,3,3,122,125],[214,1,1,125,126],[216,3,3,126,129],[217,1,1,129,130],[218,2,2,130,132],[219,2,2,132,134],[221,3,3,134,137],[223,1,1,137,138],[224,1,1,138,139],[225,1,1,139,140],[228,5,5,140,145],[229,1,1,145,146]]],[7,2,2,146,148,[[235,2,2,146,148]]],[8,22,22,148,170,[[239,1,1,148,149],[240,3,3,149,152],[241,1,1,152,153],[243,1,1,153,154],[244,1,1,154,155],[245,1,1,155,156],[251,2,2,156,158],[252,2,2,158,160],[254,3,3,160,163],[255,1,1,163,164],[260,1,1,164,165],[261,1,1,165,166],[265,1,1,166,167],[266,3,3,167,170]]],[9,16,16,170,186,[[268,1,1,170,171],[270,1,1,171,172],[274,2,2,172,174],[278,3,3,174,177],[279,3,3,177,180],[284,1,1,180,181],[285,1,1,181,182],[286,1,1,182,183],[287,3,3,183,186]]],[10,14,13,186,199,[[291,1,1,186,187],[293,2,2,187,189],[294,1,1,189,190],[297,1,1,190,191],[301,1,1,191,192],[304,2,1,192,193],[305,1,1,193,194],[307,1,1,194,195],[308,1,1,195,196],[309,1,1,196,197],[312,2,2,197,199]]],[11,21,21,199,220,[[314,4,4,199,203],[315,1,1,203,204],[317,2,2,204,206],[322,1,1,206,207],[323,3,3,207,210],[324,1,1,210,211],[326,2,2,211,213],[327,1,1,213,214],[328,1,1,214,215],[330,1,1,215,216],[331,1,1,216,217],[335,2,2,217,219],[337,1,1,219,220]]],[12,6,6,220,226,[[344,1,1,220,221],[347,1,1,221,222],[355,2,2,222,224],[356,1,1,224,225],[357,1,1,225,226]]],[13,10,8,226,234,[[377,1,1,226,227],[378,3,1,227,228],[382,1,1,228,229],[388,1,1,229,230],[389,2,2,230,232],[392,1,1,232,233],[402,1,1,233,234]]],[15,1,1,234,235,[[418,1,1,234,235]]],[16,1,1,235,236,[[431,1,1,235,236]]],[19,1,1,236,237,[[628,1,1,236,237]]],[22,2,2,237,239,[[714,1,1,237,238],[715,1,1,238,239]]],[23,21,21,239,260,[[757,3,3,239,242],[769,2,2,242,244],[772,1,1,244,245],[776,2,2,245,247],[777,1,1,247,248],[779,1,1,248,249],[780,3,3,249,252],[782,2,2,252,254],[783,1,1,254,255],[785,1,1,255,256],[787,2,2,256,258],[788,1,1,258,259],[796,1,1,259,260]]],[25,10,10,260,270,[[806,1,1,260,261],[817,3,3,261,264],[818,2,2,264,266],[838,2,2,266,268],[844,1,1,268,269],[847,1,1,269,270]]],[27,1,1,270,271,[[862,1,1,270,271]]],[37,1,1,271,272,[[921,1,1,271,272]]]],[45,228,297,303,347,348,384,420,472,497,550,553,557,560,639,652,658,678,742,763,791,818,839,845,874,896,907,950,997,1001,1006,1008,1042,1046,1114,1183,1268,1305,1353,1376,1392,1464,1621,1694,1752,1886,1940,2001,2185,2197,2292,2298,2302,2341,2343,2349,2352,2355,2362,2398,2458,2480,2716,2919,2927,2932,2933,2942,2946,2958,2968,2989,3123,3135,3162,3208,3268,3332,3335,3339,3621,3704,3733,3737,3755,3817,3841,3842,3856,3945,3957,4233,4240,4263,4291,4319,4320,4336,4365,4366,4416,4444,4475,4576,4675,4715,4718,4907,4989,5336,5484,5488,5500,5554,5687,5754,5873,6000,6003,6123,6130,6479,6574,6589,6593,6620,6674,6679,6680,6702,6735,6740,6797,6802,6834,6842,6844,6903,6928,6935,7010,7011,7013,7017,7020,7053,7203,7206,7300,7320,7321,7322,7339,7380,7413,7419,7608,7618,7669,7672,7719,7720,7726,7761,7872,7917,7998,8013,8021,8022,8057,8127,8210,8216,8296,8297,8316,8325,8326,8327,8495,8541,8557,8588,8590,8592,8756,8817,8836,8859,8947,9142,9244,9267,9340,9367,9408,9483,9506,9554,9556,9559,9565,9603,9667,9673,9800,9831,9833,9848,9868,9910,9917,9954,9971,10056,10075,10181,10195,10240,10556,10663,10891,10897,10911,10928,11434,11446,11515,11655,11657,11676,11733,11994,12419,12803,16419,18347,18366,19270,19272,19273,19543,19549,19628,19742,19745,19801,19826,19856,19863,19868,19906,19909,19937,19969,20002,20007,20022,20300,20548,20782,20794,20823,20828,20837,21416,21418,21593,21673,22097,23038]]],["Bring",[4,4,[[0,1,1,0,1,[[47,1,1,0,1]]],[10,2,2,1,3,[[293,1,1,1,2],[307,1,1,2,3]]],[11,1,1,3,4,[[314,1,1,3,4]]]],[1460,8840,9328,9571]]],["Fetch",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9327]]],["Get",[2,2,[[0,1,1,0,1,[[33,1,1,0,1]]],[6,1,1,1,2,[[224,1,1,1,2]]]],[984,6912]]],["Receive",[2,2,[[17,1,1,0,1,[[457,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]]],[13411,16612]]],["Take",[50,50,[[0,4,4,0,4,[[14,1,1,0,1],[21,1,1,1,2],[32,1,1,2,3],[42,1,1,3,4]]],[1,7,7,4,11,[[56,1,1,4,5],[58,1,1,5,6],[65,1,1,6,7],[78,1,1,7,8],[79,2,2,8,10],[84,1,1,10,11]]],[2,3,3,11,14,[[98,2,2,11,13],[114,1,1,13,14]]],[3,4,4,14,18,[[123,1,1,14,15],[132,1,1,15,16],[143,1,1,16,17],[147,1,1,17,18]]],[5,2,2,18,20,[[190,1,1,18,19],[195,1,1,19,20]]],[8,3,3,20,23,[[244,1,1,20,21],[251,1,1,21,22],[252,1,1,22,23]]],[10,2,2,23,25,[[291,1,1,23,24],[301,1,1,24,25]]],[11,5,5,25,30,[[320,1,1,25,26],[321,1,1,26,27],[325,2,2,27,29],[332,1,1,29,30]]],[12,1,1,30,31,[[358,1,1,30,31]]],[13,1,1,31,32,[[384,1,1,31,32]]],[19,2,2,32,34,[[647,1,1,32,33],[654,1,1,33,34]]],[22,3,3,34,37,[[686,1,1,34,35],[701,1,1,35,36],[725,1,1,36,37]]],[23,7,7,37,44,[[773,1,1,37,38],[780,3,3,38,41],[782,1,1,41,42],[783,1,1,42,43],[787,1,1,43,44]]],[25,3,3,44,47,[[805,1,1,44,45],[811,1,1,45,46],[825,1,1,46,47]]],[27,1,1,47,48,[[875,1,1,47,48]]],[37,2,2,48,50,[[916,1,1,48,49],[921,1,1,49,50]]]],[369,549,971,1303,1704,1750,1980,2337,2405,2416,2536,2955,2956,3505,3855,4200,4572,4693,5912,6048,7394,7597,7635,8750,9139,9735,9773,9886,9889,10105,10957,11567,16970,17182,17808,18093,18601,19641,19844,19856,19870,19905,19935,20006,20538,20639,21061,22284,22957,23043]]],["accept",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2124]]],["away",[40,40,[[0,2,2,0,2,[[26,2,2,0,2]]],[1,1,1,2,3,[[63,1,1,2,3]]],[8,3,3,3,6,[[256,1,1,3,4],[262,1,1,4,5],[265,1,1,5,6]]],[10,5,5,6,11,[[304,1,1,6,7],[309,3,3,7,10],[310,1,1,10,11]]],[11,4,4,11,15,[[314,1,1,11,12],[332,1,1,12,13],[337,2,2,13,15]]],[17,5,5,15,20,[[436,3,3,15,18],[447,1,1,18,19],[450,1,1,19,20]]],[18,1,1,20,21,[[508,1,1,20,21]]],[19,1,1,21,22,[[649,1,1,21,22]]],[22,3,3,22,25,[[717,1,1,22,23],[727,1,1,23,24],[730,1,1,24,25]]],[23,3,3,25,28,[[772,1,1,25,26],[793,1,1,26,27],[796,1,1,27,28]]],[25,8,8,28,36,[[804,1,1,28,29],[824,2,2,29,31],[825,1,1,31,32],[831,1,1,32,33],[834,2,2,33,35],[839,1,1,35,36]]],[27,3,3,36,39,[[863,1,1,36,37],[865,1,1,37,38],[874,1,1,38,39]]],[32,1,1,39,40,[[894,1,1,39,40]]]],[762,763,1900,7778,7939,7996,9244,9391,9397,9401,9414,9560,10116,10236,10237,12884,12886,12890,13148,13215,14344,17042,18419,18661,18701,19621,20156,20294,20516,21033,21036,21072,21208,21284,21286,21438,22114,22144,22277,22604]]],["bring",[11,11,[[1,1,1,0,1,[[74,1,1,0,1]]],[2,2,2,1,3,[[101,1,1,1,2],[113,1,1,2,3]]],[3,3,3,3,6,[[127,1,1,3,4],[129,1,1,4,5],[139,1,1,5,6]]],[4,2,2,6,8,[[182,2,2,6,8]]],[10,1,1,8,9,[[310,1,1,8,9]]],[11,2,2,9,11,[[315,1,1,9,10],[316,1,1,10,11]]]],[2197,3052,3448,4040,4095,4443,5720,5721,9441,9591,9644]]],["brought",[7,7,[[3,1,1,0,1,[[139,1,1,0,1]]],[6,1,1,1,2,[[224,1,1,1,2]]],[8,2,2,2,4,[[256,1,1,2,3],[265,1,1,3,4]]],[11,1,1,4,5,[[314,1,1,4,5]]],[12,1,1,5,6,[[355,1,1,5,6]]],[16,1,1,6,7,[[427,1,1,6,7]]]],[4430,6920,7780,7989,9571,10898,12732]]],["buy",[2,2,[[15,2,2,0,2,[[417,1,1,0,1],[422,1,1,1,2]]]],[12385,12580]]],["buyeth",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17300]]],["carry",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14665]]],["drawn",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17090]]],["fetch",[14,14,[[0,4,4,0,4,[[17,1,1,0,1],[26,3,3,1,4]]],[1,1,1,4,5,[[51,1,1,4,5]]],[4,3,3,5,8,[[171,1,1,5,6],[176,1,1,6,7],[182,1,1,7,8]]],[6,1,1,8,9,[[230,1,1,8,9]]],[8,2,2,9,11,[[251,1,1,9,10],[261,1,1,10,11]]],[10,1,1,11,12,[[307,1,1,11,12]]],[11,1,1,12,13,[[318,1,1,12,13]]],[22,1,1,13,14,[[734,1,1,13,14]]]],[429,736,740,772,1559,5418,5544,5712,7064,7606,7927,9328,9687,18765]]],["fetched",[7,7,[[0,2,2,0,2,[[17,1,1,0,1],[26,1,1,1,2]]],[8,1,1,2,3,[[245,1,1,2,3]]],[9,3,3,3,6,[[270,1,1,3,4],[275,1,1,4,5],[280,1,1,5,6]]],[10,1,1,6,7,[[299,1,1,6,7]]]],[428,741,7441,8126,8232,8358,9079]]],["fetcht",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[431]]],["get",[3,3,[[1,1,1,0,1,[[54,1,1,0,1]]],[6,1,1,1,2,[[224,1,1,1,2]]],[19,1,1,2,3,[[649,1,1,2,3]]]],[1643,6911,17040]]],["getteth",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16645]]],["have",[2,2,[[4,1,1,0,1,[[173,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]]],[5458,7255]]],["itself",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20468]]],["married",[4,3,[[0,1,1,0,1,[[18,1,1,0,1]]],[3,2,1,1,2,[[128,2,1,1,2]]],[12,1,1,2,3,[[339,1,1,2,3]]]],[471,4060,10327]]],["mingled",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1766]]],["out",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1821]]],["placed",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20830]]],["put",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8336]]],["receive",[31,31,[[0,3,3,0,3,[[3,1,1,0,1],[32,1,1,1,2],[37,1,1,2,3]]],[1,1,1,3,4,[[78,1,1,3,4]]],[3,1,1,4,5,[[134,1,1,4,5]]],[4,1,1,5,6,[[161,1,1,5,6]]],[8,1,1,6,7,[[245,1,1,6,7]]],[11,4,4,7,11,[[317,2,2,7,9],[324,2,2,9,11]]],[17,1,1,11,12,[[462,1,1,11,12]]],[18,4,4,12,16,[[483,1,1,12,13],[526,1,1,13,14],[550,1,1,14,15],[552,1,1,15,16]]],[19,4,4,16,20,[[628,1,1,16,17],[629,1,1,17,18],[631,1,1,18,19],[637,1,1,19,20]]],[23,5,5,20,25,[[749,1,1,20,21],[753,1,1,21,22],[761,1,1,22,23],[776,1,1,23,24],[779,1,1,24,25]]],[25,2,2,25,27,[[804,1,1,25,26],[837,1,1,26,27]]],[27,2,2,27,29,[[871,1,1,27,28],[875,1,1,28,29]]],[32,1,1,29,30,[[893,1,1,29,30]]],[35,1,1,30,31,[[908,1,1,30,31]]]],[90,970,1139,2361,4285,5166,7422,9663,9673,9857,9858,13494,13994,14663,15044,15073,16403,16434,16500,16664,19061,19195,19380,19764,19836,20512,21389,22231,22284,22590,22827]]],["received",[20,19,[[1,2,2,0,2,[[81,1,1,0,1],[85,1,1,1,2]]],[3,4,3,2,5,[[139,1,1,2,3],[150,3,2,3,5]]],[5,2,2,5,7,[[199,1,1,5,6],[204,1,1,6,7]]],[6,1,1,7,8,[[223,1,1,7,8]]],[8,2,2,8,10,[[247,1,1,8,9],[260,1,1,9,10]]],[10,1,1,10,11,[[300,1,1,10,11]]],[13,1,1,11,12,[[367,1,1,11,12]]],[17,1,1,12,13,[[439,1,1,12,13]]],[18,1,1,13,14,[[545,1,1,13,14]]],[19,1,1,14,15,[[651,1,1,14,15]]],[22,1,1,15,16,[[718,1,1,15,16]]],[23,1,1,16,17,[[746,1,1,16,17]]],[25,1,1,17,18,[[819,1,1,17,18]]],[35,1,1,18,19,[[908,1,1,18,19]]]],[2442,2569,4436,4830,4831,6162,6300,6907,7463,7896,9107,11210,12942,14918,17111,18422,18995,20866,22822]]],["receiveth",[4,4,[[17,1,1,0,1,[[470,1,1,0,1]]],[19,1,1,1,2,[[648,1,1,1,2]]],[23,1,1,2,3,[[751,1,1,2,3]]],[38,1,1,3,4,[[926,1,1,3,4]]]],[13727,16995,19147,23116]]],["reserved",[1,1,[[6,1,1,0,1,[[231,1,1,0,1]]]],[7124]]],["sent",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7649]]],["take",[213,199,[[0,32,31,0,31,[[2,1,1,0,1],[5,1,1,1,2],[6,1,1,2,3],[11,1,1,3,4],[13,3,3,4,7],[20,1,1,7,8],[22,1,1,8,9],[23,7,7,9,16],[26,1,1,16,17],[27,4,3,17,20],[30,2,2,20,22],[33,2,2,22,24],[37,1,1,24,25],[41,2,2,25,27],[42,3,3,27,30],[44,1,1,30,31]]],[1,25,24,31,55,[[53,2,2,31,33],[55,1,1,33,34],[56,1,1,34,35],[59,1,1,35,36],[61,6,6,36,42],[65,1,1,42,43],[66,2,1,43,44],[70,2,2,44,46],[72,1,1,46,47],[74,1,1,47,48],[78,6,6,48,54],[83,1,1,54,55]]],[2,28,25,55,80,[[93,4,4,55,59],[103,10,9,59,68],[104,2,2,68,70],[105,4,4,70,74],[107,1,1,74,75],[110,5,3,75,78],[112,1,1,78,79],[113,1,1,79,80]]],[3,18,15,80,95,[[119,2,1,80,81],[120,1,1,81,82],[121,2,1,82,83],[124,2,1,83,84],[132,1,1,84,85],[133,1,1,85,86],[134,1,1,86,87],[135,4,4,87,91],[147,1,1,91,92],[150,1,1,92,93],[151,2,2,93,95]]],[4,15,15,95,110,[[156,1,1,95,96],[159,2,2,96,98],[168,1,1,98,99],[172,1,1,99,100],[173,1,1,100,101],[174,4,4,101,105],[176,1,1,105,106],[177,2,2,106,108],[178,2,2,108,110]]],[5,2,2,110,112,[[189,1,1,110,111],[192,1,1,111,112]]],[6,4,4,112,116,[[214,1,1,112,113],[224,2,2,113,115],[230,1,1,115,116]]],[8,14,12,116,128,[[237,2,1,116,117],[241,1,1,117,118],[243,3,3,118,121],[252,1,1,121,122],[255,1,1,122,123],[256,2,1,123,124],[259,1,1,124,125],[260,2,2,125,127],[261,1,1,127,128]]],[9,4,4,128,132,[[268,1,1,128,129],[278,1,1,129,130],[286,1,1,130,131],[290,1,1,131,132]]],[10,3,3,132,135,[[301,2,2,132,134],[304,1,1,134,135]]],[11,12,12,135,147,[[316,2,2,135,137],[317,4,4,137,141],[318,1,1,141,142],[319,1,1,142,143],[321,2,2,143,145],[322,1,1,145,146],[324,1,1,146,147]]],[15,1,1,147,148,[[422,1,1,147,148]]],[17,3,3,148,151,[[473,1,1,148,149],[476,1,1,149,150],[477,1,1,150,151]]],[18,3,3,151,154,[[527,1,1,151,152],[528,1,1,152,153],[586,1,1,153,154]]],[19,1,1,154,155,[[633,1,1,154,155]]],[22,6,6,155,161,[[692,1,1,155,156],[706,1,1,156,157],[722,1,1,157,158],[725,1,1,158,159],[735,1,1,159,160],[744,1,1,160,161]]],[23,10,10,161,171,[[747,1,1,161,162],[759,1,1,162,163],[760,1,1,163,164],[764,2,2,164,166],[769,1,1,166,167],[773,1,1,167,168],[790,1,1,168,169],[795,2,2,169,171]]],[25,23,19,171,190,[[805,2,2,171,173],[806,5,3,173,176],[816,1,1,176,177],[817,2,2,177,179],[818,1,1,179,180],[824,1,1,180,181],[825,1,1,181,182],[834,2,2,182,184],[837,1,1,184,185],[838,2,1,185,186],[844,1,1,186,187],[845,2,1,187,188],[846,2,2,188,190]]],[27,1,1,190,191,[[862,1,1,190,191]]],[29,4,4,191,195,[[883,2,2,191,193],[887,2,2,193,195]]],[31,1,1,195,196,[[892,1,1,195,196]]],[36,1,1,196,197,[[910,1,1,196,197]]],[37,2,2,197,199,[[916,1,1,197,198],[924,1,1,198,199]]]],[77,158,161,317,357,359,360,543,584,594,595,598,628,629,631,642,773,774,775,779,905,923,989,996,1142,1285,1288,1301,1302,1308,1377,1610,1618,1662,1700,1803,1819,1820,1823,1837,1838,1848,1963,1988,2087,2091,2152,2198,2348,2351,2356,2357,2358,2367,2512,2800,2820,2825,2829,3115,3117,3121,3125,3126,3132,3136,3153,3160,3182,3197,3206,3213,3215,3219,3269,3352,3358,3359,3442,3451,3739,3752,3809,3947,4211,4246,4283,4293,4295,4306,4307,4694,4834,4876,4877,5038,5114,5136,5361,5434,5450,5476,5477,5483,5485,5529,5552,5555,5568,5570,5905,5967,6605,6912,6917,7064,7256,7338,7382,7383,7385,7636,7751,7781,7850,7900,7901,7916,8070,8290,8560,8714,9143,9145,9221,9604,9632,9662,9663,9667,9670,9676,9720,9757,9759,9799,9855,12579,13813,13892,13930,14677,14702,15763,16565,17930,18183,18548,18602,18778,18943,19016,19330,19338,19427,19432,19562,19641,20056,20220,20238,20530,20532,20547,20549,20550,20757,20778,20801,20847,21032,21081,21282,21286,21383,21413,21592,21621,21648,21649,22096,22434,22435,22497,22498,22571,22878,22958,23089]]],["taken",[58,54,[[0,7,7,0,7,[[1,2,2,0,2],[2,2,2,2,4],[11,2,2,4,6],[19,1,1,6,7]]],[2,1,1,7,8,[[96,1,1,7,8]]],[3,1,1,8,9,[[124,1,1,8,9]]],[4,5,4,9,13,[[156,1,1,9,10],[172,1,1,10,11],[176,3,2,11,13]]],[5,1,1,13,14,[[193,1,1,13,14]]],[6,1,1,14,15,[[227,1,1,14,15]]],[8,11,10,15,25,[[239,5,5,15,20],[242,1,1,20,21],[247,3,2,21,23],[265,2,2,23,25]]],[9,3,3,25,28,[[278,1,1,25,26],[284,1,1,26,27],[289,1,1,27,28]]],[10,1,1,28,29,[[297,1,1,28,29]]],[11,3,3,29,32,[[314,1,1,29,30],[325,1,1,30,31],[336,1,1,31,32]]],[15,1,1,32,33,[[417,1,1,32,33]]],[16,2,2,33,35,[[427,2,2,33,35]]],[17,1,1,35,36,[[463,1,1,35,36]]],[19,1,1,36,37,[[634,1,1,36,37]]],[22,4,4,37,41,[[684,1,1,37,38],[727,1,1,38,39],[729,1,1,39,40],[731,1,1,40,41]]],[23,3,3,41,44,[[783,1,1,41,42],[784,1,1,42,43],[792,1,1,43,44]]],[25,10,8,44,52,[[816,1,1,44,45],[817,1,1,45,46],[818,2,1,46,47],[819,2,2,47,49],[823,3,2,49,51],[828,1,1,51,52]]],[28,1,1,52,53,[[878,1,1,52,53]]],[29,1,1,53,54,[[884,1,1,53,54]]]],[52,53,74,78,313,317,498,2913,3955,5024,5434,5526,5530,5987,6982,7308,7314,7316,7318,7319,7366,7463,7464,7994,7997,8295,8496,8659,8942,9561,9896,10209,12397,12739,12740,13506,16595,17775,18660,18695,18719,19928,19942,20126,20757,20779,20838,20857,20862,20988,21001,21126,22348,22463]]],["takest",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1610]]],["taketh",[8,8,[[4,3,3,0,3,[[162,1,1,0,1],[179,1,1,1,2],[184,1,1,2,3]]],[17,2,2,3,5,[[440,1,1,3,4],[475,1,1,4,5]]],[18,1,1,5,6,[[492,1,1,5,6]]],[19,1,1,6,7,[[644,1,1,6,7]]],[22,1,1,7,8,[[722,1,1,7,8]]]],[5203,5610,5769,12956,13888,14092,16896,18547]]],["taking",[1,1,[[27,1,1,0,1,[[872,1,1,0,1]]]],[22243]]],["took",[184,184,[[0,40,40,0,40,[[1,1,1,0,1],[2,1,1,1,2],[3,1,1,2,3],[4,1,1,3,4],[5,1,1,4,5],[7,2,2,5,7],[10,1,1,7,8],[14,1,1,8,9],[17,1,1,9,10],[19,1,1,10,11],[20,3,3,11,14],[23,4,4,14,18],[24,1,1,18,19],[25,1,1,19,20],[27,2,2,20,22],[29,1,1,22,23],[30,2,2,23,25],[31,2,2,25,27],[32,1,1,27,28],[33,2,2,28,30],[36,1,1,30,31],[37,3,3,31,34],[38,1,1,34,35],[41,1,1,35,36],[42,1,1,36,37],[46,1,1,37,38],[47,2,2,38,40]]],[1,15,15,40,55,[[51,3,3,40,43],[53,1,1,43,44],[55,3,3,44,47],[63,2,2,47,49],[66,1,1,49,50],[67,1,1,50,51],[73,2,2,51,53],[83,1,1,53,54],[89,1,1,54,55]]],[2,5,5,55,60,[[97,4,4,55,59],[99,1,1,59,60]]],[3,9,9,60,69,[[119,2,2,60,62],[132,3,3,62,65],[133,1,1,65,66],[139,1,1,66,67],[141,1,1,67,68],[147,1,1,68,69]]],[4,6,6,69,75,[[153,2,2,69,71],[155,2,2,71,73],[161,1,1,73,74],[176,1,1,74,75]]],[5,9,9,75,84,[[190,1,1,75,76],[193,3,3,76,79],[194,1,1,79,80],[195,2,2,80,82],[197,1,1,82,83],[210,1,1,83,84]]],[6,9,9,84,93,[[215,1,1,84,85],[216,1,1,85,86],[225,2,2,86,88],[226,1,1,88,89],[227,2,2,89,91],[229,2,2,91,93]]],[7,1,1,93,94,[[235,1,1,93,94]]],[8,17,17,94,111,[[237,1,1,94,95],[241,1,1,95,96],[242,2,2,96,98],[243,1,1,98,99],[246,1,1,99,100],[249,1,1,100,101],[250,1,1,101,102],[251,1,1,102,103],[252,3,3,103,106],[253,1,1,106,107],[259,1,1,107,108],[260,2,2,108,110],[263,1,1,110,111]]],[9,12,12,111,123,[[267,1,1,111,112],[269,1,1,112,113],[270,1,1,113,114],[271,1,1,114,115],[273,1,1,115,116],[274,1,1,116,117],[276,1,1,117,118],[277,1,1,118,119],[278,1,1,119,120],[283,1,1,120,121],[284,1,1,121,122],[288,1,1,122,123]]],[10,6,6,123,129,[[301,1,1,123,124],[306,1,1,124,125],[307,1,1,125,126],[308,2,2,126,128],[310,1,1,128,129]]],[11,18,18,129,147,[[315,1,1,129,130],[317,2,2,130,132],[318,1,1,132,133],[319,1,1,133,134],[320,2,2,134,136],[321,1,1,136,137],[323,1,1,137,138],[324,1,1,138,139],[325,3,3,139,142],[332,1,1,142,143],[335,1,1,143,144],[336,1,1,144,145],[337,2,2,145,147]]],[12,6,6,147,153,[[339,2,2,147,149],[341,1,1,149,150],[344,1,1,150,151],[351,1,1,151,152],[354,1,1,152,153]]],[13,4,4,153,157,[[374,1,1,153,154],[377,1,1,154,155],[389,1,1,155,156],[402,1,1,156,157]]],[14,1,1,157,158,[[404,1,1,157,158]]],[15,1,1,158,159,[[419,1,1,158,159]]],[16,2,2,159,161,[[427,1,1,159,160],[431,1,1,160,161]]],[17,1,1,161,162,[[437,1,1,161,162]]],[18,2,2,162,164,[[495,1,1,162,163],[555,1,1,163,164]]],[23,12,12,164,176,[[769,1,1,164,165],[771,1,1,165,166],[780,2,2,166,168],[781,1,1,168,169],[782,2,2,169,171],[784,1,1,171,172],[785,1,1,172,173],[796,3,3,173,176]]],[25,5,5,176,181,[[809,1,1,176,177],[811,1,1,177,178],[818,1,1,178,179],[820,1,1,179,180],[824,1,1,180,181]]],[29,1,1,181,182,[[885,1,1,181,182]]],[37,2,2,182,184,[[921,2,2,182,184]]]],[51,61,98,129,139,192,203,295,370,432,509,527,534,540,598,601,613,656,659,726,782,784,867,918,919,941,951,971,982,1005,1107,1121,1125,1147,1169,1276,1305,1422,1452,1473,1555,1557,1563,1626,1675,1678,1680,1895,1896,1995,2011,2183,2184,2500,2727,2940,2943,2945,2947,2978,3741,3742,4195,4212,4241,4253,4427,4478,4711,4915,4917,4979,4983,5178,5528,5930,5977,5997,5999,6014,6041,6051,6126,6502,6642,6681,6933,6944,6961,6982,6984,7025,7052,7192,7254,7341,7361,7364,7372,7452,7540,7581,7615,7658,7667,7675,7678,7841,7879,7904,7966,8032,8096,8132,8145,8188,8217,8244,8263,8290,8468,8492,8619,9126,9314,9336,9345,9372,9442,9602,9652,9671,9681,9721,9736,9742,9769,9838,9859,9886,9889,9896,10105,10199,10214,10241,10242,10325,10329,10403,10550,10777,10870,11364,11432,11664,11997,12088,12483,12731,12804,12899,14134,15183,19551,19616,19863,19874,19891,19901,19906,19943,19973,20295,20301,20302,20607,20640,20830,20886,21017,22479,23035,23041]]],["tookest",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20780]]],["up",[2,2,[[15,1,1,0,1,[[417,1,1,0,1]]],[23,1,1,1,2,[[773,1,1,1,2]]]],[12384,19657]]],["upon",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12910]]],["use",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19515]]],["winneth",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16718]]]]},{"k":"H3948","v":[["*",[9,9,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[446,1,1,1,2]]],[19,6,6,2,8,[[628,1,1,2,3],[631,1,1,3,4],[634,1,1,4,5],[636,1,1,5,6],[643,2,2,6,8]]],[22,1,1,8,9,[[707,1,1,8,9]]]],[5760,13112,16405,16492,16596,16647,16861,16863,18217]]],["doctrine",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[446,1,1,1,2]]],[19,1,1,2,3,[[631,1,1,2,3]]],[22,1,1,3,4,[[707,1,1,3,4]]]],[5760,13112,16492,18217]]],["learning",[4,4,[[19,4,4,0,4,[[628,1,1,0,1],[636,1,1,1,2],[643,2,2,2,4]]]],[16405,16647,16861,16863]]],["speech",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16596]]]]},{"k":"H3949","v":[["Likhi",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10554]]]]},{"k":"H3950","v":[["*",[37,34,[[0,2,2,0,2,[[30,1,1,0,1],[46,1,1,1,2]]],[1,9,9,2,11,[[65,9,9,2,11]]],[2,3,3,11,14,[[108,2,2,11,13],[112,1,1,13,14]]],[3,1,1,14,15,[[127,1,1,14,15]]],[6,2,2,15,17,[[211,1,1,15,16],[221,1,1,16,17]]],[7,12,10,17,27,[[233,12,10,17,27]]],[8,1,1,27,28,[[255,1,1,27,28]]],[11,2,1,28,29,[[316,2,1,28,29]]],[18,1,1,29,30,[[581,1,1,29,30]]],[21,1,1,30,31,[[676,1,1,30,31]]],[22,2,2,31,33,[[695,1,1,31,32],[705,1,1,32,33]]],[23,1,1,33,34,[[751,1,1,33,34]]]],[919,1434,1951,1952,1963,1964,1965,1968,1969,1973,1974,3290,3291,3424,4032,6516,6832,7151,7152,7156,7157,7164,7165,7166,7167,7168,7172,7768,9642,15599,17616,17988,18163,19137]]],["+",[2,2,[[0,1,1,0,1,[[46,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]]],[1434,7768]]],["Gather",[2,2,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,1,1,1,2,[[65,1,1,1,2]]]],[919,1963]]],["gather",[11,11,[[1,4,4,0,4,[[65,4,4,0,4]]],[2,3,3,4,7,[[108,2,2,4,6],[112,1,1,6,7]]],[11,1,1,7,8,[[316,1,1,7,8]]],[18,1,1,8,9,[[581,1,1,8,9]]],[21,1,1,9,10,[[676,1,1,9,10]]],[23,1,1,10,11,[[751,1,1,10,11]]]],[1951,1952,1973,1974,3290,3291,3424,9642,15599,17616,19137]]],["gathered",[9,9,[[1,4,4,0,4,[[65,4,4,0,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[6,2,2,5,7,[[211,1,1,5,6],[221,1,1,6,7]]],[11,1,1,7,8,[[316,1,1,7,8]]],[22,1,1,8,9,[[705,1,1,8,9]]]],[1964,1965,1968,1969,4032,6516,6832,9642,18163]]],["gathereth",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17988]]],["glean",[7,6,[[7,7,6,0,6,[[233,7,6,0,6]]]],[7151,7156,7157,7164,7165,7172]]],["gleaned",[5,4,[[7,5,4,0,4,[[233,5,4,0,4]]]],[7152,7166,7167,7168]]]]},{"k":"H3951","v":[["*",[2,2,[[2,2,2,0,2,[[108,1,1,0,1],[112,1,1,1,2]]]],[3290,3424]]],["gleaning",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3424]]],["gleanings",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3290]]]]},{"k":"H3952","v":[["*",[7,5,[[6,4,3,0,3,[[217,4,3,0,3]]],[10,3,2,3,5,[[311,2,1,3,4],[312,1,1,4,5]]]],[6699,6700,6701,9470,9518]]],["+",[3,2,[[10,3,2,0,2,[[311,2,1,0,1],[312,1,1,1,2]]]],[9470,9518]]],["lapped",[2,2,[[6,2,2,0,2,[[217,2,2,0,2]]]],[6700,6701]]],["lappeth",[2,1,[[6,2,1,0,1,[[217,2,1,0,1]]]],[6699]]]]},{"k":"H3953","v":[["gather",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13442]]]]},{"k":"H3954","v":[["growth",[2,1,[[29,2,1,0,1,[[885,2,1,0,1]]]],[22465]]]]},{"k":"H3955","v":[["*",[2,2,[[3,1,1,0,1,[[127,1,1,0,1]]],[18,1,1,1,2,[[509,1,1,1,2]]]],[4032,14359]]],["fresh",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4032]]],["moisture",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14359]]]]},{"k":"H3956","v":[["*",[116,114,[[0,3,3,0,3,[[9,3,3,0,3]]],[1,2,2,3,5,[[53,1,1,3,4],[60,1,1,4,5]]],[4,1,1,5,6,[[180,1,1,5,6]]],[5,6,6,6,12,[[193,2,2,6,8],[196,1,1,8,9],[201,2,2,9,11],[204,1,1,11,12]]],[6,1,1,12,13,[[217,1,1,12,13]]],[9,1,1,13,14,[[289,1,1,13,14]]],[15,1,1,14,15,[[425,1,1,14,15]]],[16,5,3,15,18,[[426,2,1,15,16],[428,1,1,16,17],[433,2,1,17,18]]],[17,9,9,18,27,[[440,1,1,18,19],[441,1,1,19,20],[450,1,1,20,21],[455,2,2,21,23],[462,1,1,23,24],[464,1,1,24,25],[468,1,1,25,26],[476,1,1,26,27]]],[18,35,35,27,62,[[482,1,1,27,28],[487,1,1,28,29],[489,2,2,29,31],[492,1,1,31,32],[499,1,1,32,33],[508,1,1,33,34],[511,1,1,34,35],[512,1,1,35,36],[514,1,1,36,37],[516,2,2,37,39],[522,1,1,39,40],[527,1,1,40,41],[528,1,1,41,42],[529,2,2,42,44],[532,1,1,44,45],[534,1,1,45,46],[541,2,2,46,48],[543,1,1,48,49],[545,1,1,49,50],[548,1,1,50,51],[550,1,1,51,52],[555,1,1,52,53],[586,1,1,53,54],[596,1,1,54,55],[597,2,2,55,57],[603,1,1,57,58],[614,1,1,58,59],[616,1,1,59,60],[617,2,2,60,62]]],[19,19,19,62,81,[[633,2,2,62,64],[637,2,2,64,66],[639,2,2,66,68],[642,2,2,68,70],[643,1,1,70,71],[644,2,2,71,73],[645,1,1,73,74],[648,2,2,74,76],[652,2,2,76,78],[653,1,1,78,79],[655,1,1,79,80],[658,1,1,80,81]]],[20,1,1,81,82,[[668,1,1,81,82]]],[21,1,1,82,83,[[674,1,1,82,83]]],[22,14,14,83,97,[[681,1,1,83,84],[689,1,1,84,85],[706,1,1,85,86],[708,1,1,86,87],[710,1,1,87,88],[711,1,1,88,89],[713,1,1,89,90],[719,1,1,90,91],[723,1,1,91,92],[728,1,1,92,93],[732,1,1,93,94],[735,1,1,94,95],[737,1,1,95,96],[744,1,1,96,97]]],[23,6,6,97,103,[[749,1,1,97,98],[753,3,3,98,101],[762,1,1,101,102],[767,1,1,102,103]]],[24,1,1,103,104,[[800,1,1,103,104]]],[25,4,4,104,108,[[804,3,3,104,107],[837,1,1,107,108]]],[26,1,1,108,109,[[850,1,1,108,109]]],[27,1,1,109,110,[[868,1,1,109,110]]],[32,1,1,110,111,[[898,1,1,110,111]]],[35,1,1,111,112,[[908,1,1,111,112]]],[37,2,2,112,114,[[918,1,1,112,113],[924,1,1,113,114]]]],[239,254,265,1611,1813,5660,5997,6000,6085,6204,6207,6312,6699,8655,12695,12724,12759,12826,12972,13008,13208,13338,13342,13485,13542,13652,13889,13982,14048,14069,14070,14090,14219,14351,14401,14438,14480,14513,14515,14598,14687,14705,14712,14714,14741,14772,14853,14858,14890,14923,15000,15029,15149,15757,16070,16076,16077,16117,16228,16243,16266,16274,16557,16564,16676,16687,16737,16738,16809,16811,16841,16877,16893,16922,16990,17007,17128,17136,17169,17219,17310,17504,17593,17715,17899,18175,18244,18263,18298,18326,18468,18584,18666,18740,18769,18803,18940,19073,19178,19180,19183,19402,19515,20424,20507,20508,20528,21362,21741,22194,22660,22833,22999,23080]]],["+",[4,4,[[5,1,1,0,1,[[201,1,1,0,1]]],[18,2,2,1,3,[[597,1,1,1,2],[617,1,1,2,3]]],[20,1,1,3,4,[[668,1,1,3,4]]]],[6207,16076,16274,17504]]],["bay",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[204,1,1,1,2]]]],[6204,6312]]],["language",[9,7,[[15,1,1,0,1,[[425,1,1,0,1]]],[16,5,3,1,4,[[426,2,1,1,2],[428,1,1,2,3],[433,2,1,3,4]]],[23,1,1,4,5,[[749,1,1,4,5]]],[25,2,2,5,7,[[804,2,2,5,7]]]],[12695,12724,12759,12826,19073,20507,20508]]],["languages",[1,1,[[37,1,1,0,1,[[918,1,1,0,1]]]],[22999]]],["talkers",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21362]]],["tongue",[88,88,[[0,1,1,0,1,[[9,1,1,0,1]]],[1,2,2,1,3,[[53,1,1,1,2],[60,1,1,2,3]]],[4,1,1,3,4,[[180,1,1,3,4]]],[5,1,1,4,5,[[196,1,1,4,5]]],[6,1,1,5,6,[[217,1,1,5,6]]],[9,1,1,6,7,[[289,1,1,6,7]]],[17,9,9,7,16,[[440,1,1,7,8],[441,1,1,8,9],[450,1,1,9,10],[455,2,2,10,12],[462,1,1,12,13],[464,1,1,13,14],[468,1,1,14,15],[476,1,1,15,16]]],[18,29,29,16,45,[[482,1,1,16,17],[487,1,1,17,18],[489,2,2,18,20],[492,1,1,20,21],[499,1,1,21,22],[511,1,1,22,23],[512,1,1,23,24],[514,1,1,24,25],[516,2,2,25,27],[522,1,1,27,28],[527,1,1,28,29],[528,1,1,29,30],[529,2,2,30,32],[534,1,1,32,33],[541,2,2,33,35],[543,1,1,35,36],[545,1,1,36,37],[548,1,1,37,38],[550,1,1,38,39],[586,1,1,39,40],[596,1,1,40,41],[597,1,1,41,42],[603,1,1,42,43],[614,1,1,43,44],[616,1,1,44,45]]],[19,19,19,45,64,[[633,2,2,45,47],[637,2,2,47,49],[639,2,2,49,51],[642,2,2,51,53],[643,1,1,53,54],[644,2,2,54,56],[645,1,1,56,57],[648,2,2,57,59],[652,2,2,59,61],[653,1,1,61,62],[655,1,1,62,63],[658,1,1,63,64]]],[21,1,1,64,65,[[674,1,1,64,65]]],[22,13,13,65,78,[[681,1,1,65,66],[689,1,1,66,67],[706,1,1,67,68],[708,1,1,68,69],[710,1,1,69,70],[711,1,1,70,71],[713,1,1,71,72],[719,1,1,72,73],[723,1,1,73,74],[728,1,1,74,75],[732,1,1,75,76],[735,1,1,76,77],[737,1,1,77,78]]],[23,3,3,78,81,[[753,2,2,78,80],[762,1,1,80,81]]],[24,1,1,81,82,[[800,1,1,81,82]]],[25,1,1,82,83,[[804,1,1,82,83]]],[26,1,1,83,84,[[850,1,1,83,84]]],[27,1,1,84,85,[[868,1,1,84,85]]],[32,1,1,85,86,[[898,1,1,85,86]]],[35,1,1,86,87,[[908,1,1,86,87]]],[37,1,1,87,88,[[924,1,1,87,88]]]],[239,1611,1813,5660,6085,6699,8655,12972,13008,13208,13338,13342,13485,13542,13652,13889,13982,14048,14069,14070,14090,14219,14401,14438,14480,14513,14515,14598,14687,14705,14712,14714,14772,14853,14858,14890,14923,15000,15029,15757,16070,16077,16117,16228,16243,16557,16564,16676,16687,16737,16738,16809,16811,16841,16877,16893,16922,16990,17007,17128,17136,17169,17219,17310,17593,17715,17899,18175,18244,18263,18298,18326,18468,18584,18666,18740,18769,18803,19180,19183,19402,20424,20528,21741,22194,22660,22833,23080]]],["tongues",[9,9,[[0,2,2,0,2,[[9,2,2,0,2]]],[18,4,4,2,6,[[508,1,1,2,3],[532,1,1,3,4],[555,1,1,4,5],[617,1,1,5,6]]],[22,1,1,6,7,[[744,1,1,6,7]]],[23,2,2,7,9,[[753,1,1,7,8],[767,1,1,8,9]]]],[254,265,14351,14741,15149,16266,18940,19178,19515]]],["wedge",[2,2,[[5,2,2,0,2,[[193,2,2,0,2]]]],[5997,6000]]]]},{"k":"H3957","v":[["*",[47,41,[[8,1,1,0,1,[[244,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]],[12,4,4,2,6,[[346,2,2,2,4],[360,1,1,4,5],[365,1,1,5,6]]],[13,1,1,6,7,[[397,1,1,6,7]]],[14,2,2,7,9,[[410,1,1,7,8],[412,1,1,8,9]]],[15,7,7,9,16,[[422,3,3,9,12],[425,4,4,12,16]]],[23,8,6,16,22,[[779,4,2,16,18],[780,4,4,18,22]]],[25,23,19,22,41,[[841,6,5,22,27],[842,1,1,27,28],[843,13,10,28,38],[845,1,1,38,39],[846,1,1,39,40],[847,1,1,40,41]]]],[7413,10176,10641,10648,11011,11155,11865,12230,12258,12586,12587,12588,12675,12676,12679,12680,19825,19827,19852,19854,19862,19863,21494,21515,21521,21522,21523,21536,21553,21556,21557,21559,21560,21561,21562,21563,21564,21565,21618,21635,21674]]],["+",[1,1,[[23,1,1,0,1,[[780,1,1,0,1]]]],[19863]]],["chamber",[14,12,[[11,1,1,0,1,[[335,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]],[15,3,3,2,5,[[425,3,3,2,5]]],[23,6,4,5,9,[[779,3,1,5,6],[780,3,3,6,9]]],[25,3,3,9,12,[[841,2,2,9,11],[843,1,1,11,12]]]],[10176,12258,12675,12676,12679,19827,19852,19854,19862,21522,21523,21553]]],["chambers",[31,27,[[12,4,4,0,4,[[346,2,2,0,2],[360,1,1,2,3],[365,1,1,3,4]]],[13,1,1,4,5,[[397,1,1,4,5]]],[14,1,1,5,6,[[410,1,1,5,6]]],[15,4,4,6,10,[[422,3,3,6,9],[425,1,1,9,10]]],[23,1,1,10,11,[[779,1,1,10,11]]],[25,20,16,11,27,[[841,4,3,11,14],[842,1,1,14,15],[843,12,9,15,24],[845,1,1,24,25],[846,1,1,25,26],[847,1,1,26,27]]]],[10641,10648,11011,11155,11865,12230,12586,12587,12588,12680,19825,21494,21515,21521,21536,21556,21557,21559,21560,21561,21562,21563,21564,21565,21618,21635,21674]]],["parlour",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7413]]]]},{"k":"H3958","v":[["ligure",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2312,2676]]]]},{"k":"H3959","v":[["Leshem",[2,1,[[5,2,1,0,1,[[205,2,1,0,1]]]],[6368]]]]},{"k":"H3960","v":[["*",[2,2,[[18,1,1,0,1,[[578,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[15518,17261]]],["Accuse",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17261]]],["slandereth",[1,1,[[18,1,1,0,1,[[578,1,1,0,1]]]],[15518]]]]},{"k":"H3961","v":[["*",[7,7,[[26,7,7,0,7,[[852,3,3,0,3],[853,1,1,3,4],[854,1,1,4,5],[855,1,1,5,6],[856,1,1,6,7]]]],[21811,21814,21836,21838,21893,21930,21947]]],["language",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21836]]],["languages",[6,6,[[26,6,6,0,6,[[852,2,2,0,2],[853,1,1,2,3],[854,1,1,3,4],[855,1,1,4,5],[856,1,1,5,6]]]],[21811,21814,21838,21893,21930,21947]]]]},{"k":"H3962","v":[["Lasha",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[253]]]]},{"k":"H3963","v":[["homer",[1,1,[[27,1,1,0,1,[[864,1,1,0,1]]]],[22130]]]]},{"k":"H3964","v":[["+",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12159]]]]},{"k":"H3965","v":[["storehouses",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20192]]]]},{"k":"H3966","v":[["*",[300,278,[[0,38,33,0,33,[[0,1,1,0,1],[3,1,1,1,2],[6,3,2,2,4],[11,1,1,4,5],[12,2,2,5,7],[14,1,1,7,8],[16,6,3,8,11],[17,1,1,11,12],[18,2,2,12,14],[19,1,1,14,15],[20,1,1,15,16],[23,2,2,16,18],[25,2,2,18,20],[26,2,2,20,22],[29,2,1,22,23],[31,1,1,23,24],[33,2,2,24,26],[40,3,3,26,29],[46,2,2,29,31],[49,2,2,31,33]]],[1,14,13,33,46,[[50,3,2,33,35],[58,3,3,35,38],[59,2,2,38,40],[60,1,1,40,41],[61,1,1,41,42],[63,1,1,42,43],[68,3,3,43,46]]],[3,11,10,46,56,[[127,2,2,46,48],[128,1,1,48,49],[129,1,1,49,50],[130,3,2,50,52],[132,1,1,52,53],[138,2,2,53,55],[148,1,1,55,56]]],[4,12,12,56,68,[[154,1,1,56,57],[155,1,1,57,58],[156,2,2,58,60],[158,2,2,60,62],[161,1,1,62,63],[169,1,1,63,64],[172,1,1,64,65],[176,1,1,65,66],[180,1,1,66,67],[182,1,1,67,68]]],[5,16,15,68,83,[[187,1,1,68,69],[189,1,1,69,70],[194,1,1,70,71],[195,4,4,71,75],[196,2,2,75,77],[197,1,1,77,78],[199,1,1,78,79],[208,3,2,79,81],[209,2,2,81,83]]],[6,10,10,83,93,[[212,1,1,83,84],[213,1,1,84,85],[216,1,1,85,86],[220,1,1,86,87],[221,1,1,87,88],[222,1,1,88,89],[223,1,1,89,90],[225,1,1,90,91],[228,1,1,91,92],[229,1,1,92,93]]],[7,2,2,93,95,[[232,2,2,93,95]]],[8,31,31,95,126,[[237,2,2,95,97],[239,1,1,97,98],[240,2,2,98,100],[246,2,2,100,102],[247,1,1,102,103],[249,2,2,103,105],[251,1,1,105,106],[252,2,2,106,108],[253,3,3,108,111],[254,2,2,111,113],[255,1,1,113,114],[256,1,1,114,115],[260,3,3,115,118],[261,1,1,118,119],[263,4,4,119,123],[265,1,1,123,124],[266,2,2,124,126]]],[9,20,18,126,144,[[267,1,1,126,127],[268,1,1,127,128],[269,1,1,128,129],[274,1,1,129,130],[276,1,1,130,131],[277,1,1,131,132],[278,3,3,132,135],[279,4,4,135,139],[280,1,1,139,140],[284,1,1,140,141],[285,2,1,141,142],[290,3,2,142,144]]],[10,16,14,144,158,[[291,3,3,144,147],[292,1,1,147,148],[294,1,1,148,149],[295,1,1,149,150],[297,2,1,150,151],[300,4,3,151,154],[301,1,1,154,155],[307,1,1,155,156],[308,1,1,156,157],[311,1,1,157,158]]],[11,6,5,158,163,[[322,2,1,158,159],[326,1,1,159,160],[329,1,1,160,161],[333,1,1,161,162],[335,1,1,162,163]]],[12,9,7,163,170,[[347,1,1,163,164],[353,1,1,164,165],[355,1,1,165,166],[356,1,1,166,167],[357,1,1,167,168],[358,4,2,168,170]]],[13,16,16,170,186,[[370,1,1,170,171],[373,1,1,171,172],[375,2,2,172,174],[377,1,1,174,175],[380,1,1,175,176],[382,2,2,176,178],[390,1,1,178,179],[391,1,1,179,180],[396,1,1,180,181],[398,2,2,181,183],[399,2,2,183,185],[401,1,1,185,186]]],[14,1,1,186,187,[[412,1,1,186,187]]],[15,6,6,187,193,[[414,1,1,187,188],[416,1,1,188,189],[417,1,1,189,190],[418,1,1,190,191],[420,1,1,191,192],[425,1,1,192,193]]],[16,2,2,193,195,[[426,1,1,193,194],[429,1,1,194,195]]],[17,4,4,195,199,[[436,1,1,195,196],[437,1,1,196,197],[443,1,1,197,198],[470,1,1,198,199]]],[18,35,35,199,234,[[483,2,2,199,201],[498,1,1,201,202],[508,1,1,202,203],[515,2,2,203,205],[523,1,1,205,206],[524,1,1,206,207],[525,1,1,207,208],[527,1,1,208,209],[555,2,2,209,211],[556,1,1,211,212],[569,1,1,212,213],[570,1,1,213,214],[573,1,1,214,215],[574,1,1,215,216],[581,1,1,216,217],[582,1,1,217,218],[584,1,1,218,219],[586,1,1,219,220],[589,1,1,220,221],[593,1,1,221,222],[596,9,9,222,231],[616,1,1,231,232],[619,1,1,232,233],[622,1,1,233,234]]],[22,8,8,234,242,[[694,1,1,234,235],[709,1,1,235,236],[725,2,2,236,238],[730,1,1,238,239],[734,1,1,239,240],[742,2,2,240,242]]],[23,16,14,242,256,[[746,3,3,242,245],[753,1,1,245,246],[758,1,1,246,247],[762,1,1,247,248],[764,1,1,248,249],[768,4,2,249,251],[784,1,1,251,252],[792,2,2,252,254],[793,1,1,254,255],[794,1,1,255,256]]],[24,1,1,256,257,[[801,1,1,256,257]]],[25,14,10,257,267,[[810,2,1,257,258],[817,2,1,258,259],[821,1,1,259,260],[828,1,1,260,261],[838,4,2,261,263],[841,1,1,263,264],[848,3,3,264,267]]],[26,2,2,267,269,[[857,1,1,267,268],[860,1,1,268,269]]],[28,2,1,269,270,[[877,2,1,269,270]]],[30,1,1,270,271,[[888,1,1,270,271]]],[33,1,1,271,272,[[901,1,1,271,272]]],[35,1,1,272,273,[[906,1,1,272,273]]],[37,5,5,273,278,[[919,3,3,273,276],[924,2,2,276,278]]]],[30,84,177,178,312,320,331,361,399,403,417,444,460,466,503,524,607,626,705,708,760,761,873,935,987,992,1214,1226,1244,1433,1447,1515,1516,1539,1552,1745,1760,1766,1791,1796,1809,1854,1899,2042,2044,2045,4034,4057,4062,4103,4115,4147,4209,4378,4392,4719,4942,4980,5013,5019,5089,5091,5177,5381,5442,5533,5665,5722,5858,5909,6006,6046,6050,6059,6061,6066,6084,6111,6155,6431,6434,6466,6471,6560,6585,6660,6820,6862,6871,6890,6947,7002,7035,7140,7147,7257,7262,7307,7328,7330,7451,7460,7478,7528,7539,7616,7629,7642,7684,7691,7706,7708,7710,7749,7784,7863,7876,7897,7926,7947,7957,7962,7963,7984,8012,8013,8048,8066,8089,8217,8245,8261,8288,8291,8316,8320,8332,8338,8353,8381,8495,8543,8702,8706,8721,8723,8732,8782,8873,8885,8981,9081,9089,9090,9127,9334,9344,9477,9797,9922,10001,10135,10190,10663,10845,10898,10912,10928,10942,10947,11264,11332,11365,11373,11426,11488,11517,11523,11701,11714,11840,11902,11904,11920,11922,11989,12253,12309,12366,12388,12417,12510,12679,12714,12766,12872,12904,13036,13735,13988,13995,14192,14342,14496,14498,14615,14634,14635,14671,15142,15172,15193,15416,15431,15469,15487,15572,15630,15737,15785,15804,15858,15902,15906,15941,15949,15994,16005,16036,16038,16065,16253,16292,16323,17975,18251,18605,18608,18709,18765,18894,18897,18975,18977,19001,19194,19310,19397,19433,19526,19527,19953,20096,20109,20157,20178,20464,20631,20775,20908,21146,21399,21407,21479,21686,21688,21689,21969,22061,22322,22512,22700,22801,23001,23004,23008,23072,23082]]],["+",[76,64,[[0,17,12,0,12,[[6,2,1,0,1],[16,6,3,1,4],[19,1,1,4,5],[20,1,1,5,6],[25,2,2,6,8],[26,1,1,8,9],[29,2,1,9,10],[31,1,1,10,11],[33,1,1,11,12]]],[1,4,3,12,15,[[50,3,2,12,14],[68,1,1,14,15]]],[3,5,4,15,19,[[130,2,1,15,16],[132,1,1,16,17],[138,2,2,17,19]]],[4,3,3,19,22,[[154,1,1,19,20],[156,1,1,20,21],[161,1,1,21,22]]],[5,1,1,22,23,[[195,1,1,22,23]]],[6,2,2,23,25,[[222,1,1,23,24],[225,1,1,24,25]]],[7,1,1,25,26,[[232,1,1,25,26]]],[8,3,3,26,29,[[253,1,1,26,27],[260,1,1,27,28],[261,1,1,28,29]]],[9,2,2,29,31,[[268,1,1,29,30],[279,1,1,30,31]]],[10,3,2,31,33,[[291,1,1,31,32],[297,2,1,32,33]]],[11,3,2,33,35,[[322,2,1,33,34],[329,1,1,34,35]]],[12,4,4,35,39,[[347,1,1,35,36],[357,1,1,36,37],[358,2,2,37,39]]],[13,4,4,39,43,[[377,1,1,39,40],[382,1,1,40,41],[399,1,1,41,42],[401,1,1,42,43]]],[17,1,1,43,44,[[437,1,1,43,44]]],[18,8,8,44,52,[[515,2,2,44,46],[556,1,1,46,47],[596,4,4,47,51],[619,1,1,51,52]]],[22,4,4,52,56,[[709,1,1,52,53],[730,1,1,53,54],[742,2,2,54,56]]],[24,1,1,56,57,[[801,1,1,56,57]]],[25,7,4,57,61,[[810,2,1,57,58],[817,2,1,58,59],[828,1,1,59,60],[838,2,1,60,61]]],[26,2,2,61,63,[[857,1,1,61,62],[860,1,1,62,63]]],[37,1,1,63,64,[[919,1,1,63,64]]]],[178,399,403,417,503,524,705,708,760,873,935,987,1539,1552,2045,4115,4209,4378,4392,4942,5019,5177,6046,6871,6947,7147,7691,7897,7926,8066,8332,8721,8981,9797,10001,10663,10928,10942,10947,11426,11523,11922,11989,12904,14496,14498,15193,15906,15941,15949,16005,16292,18251,18709,18894,18897,20464,20631,20775,21146,21407,21969,22061,23004]]],["diligent",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6431]]],["diligently",[4,4,[[4,2,2,0,2,[[156,1,1,0,1],[176,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[23,1,1,3,4,[[746,1,1,3,4]]]],[5013,5533,15902,18975]]],["especially",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14342]]],["exceeding",[10,10,[[0,2,2,0,2,[[14,1,1,0,1],[26,1,1,1,2]]],[1,1,1,2,3,[[68,1,1,2,3]]],[9,2,2,3,5,[[274,1,1,3,4],[278,1,1,4,5]]],[10,1,1,5,6,[[294,1,1,5,6]]],[13,1,1,6,7,[[398,1,1,6,7]]],[18,1,1,7,8,[[596,1,1,7,8]]],[23,1,1,8,9,[[792,1,1,8,9]]],[25,1,1,9,10,[[848,1,1,9,10]]]],[361,761,2042,8217,8288,8873,11902,15994,20109,21689]]],["exceedingly",[4,4,[[0,2,2,0,2,[[12,1,1,0,1],[46,1,1,1,2]]],[16,1,1,2,3,[[429,1,1,2,3]]],[18,1,1,3,4,[[596,1,1,3,4]]]],[331,1447,12766,16065]]],["far",[2,2,[[6,1,1,0,1,[[229,1,1,0,1]]],[18,1,1,1,2,[[574,1,1,1,2]]]],[7035,15487]]],["fast",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20096]]],["good",[1,1,[[5,1,1,0,1,[[209,1,1,0,1]]]],[6471]]],["great",[10,10,[[4,1,1,0,1,[[155,1,1,0,1]]],[9,2,2,1,3,[[278,1,1,1,2],[290,1,1,2,3]]],[10,2,2,3,5,[[300,1,1,3,4],[301,1,1,4,5]]],[13,2,2,5,7,[[370,1,1,5,6],[375,1,1,6,7]]],[17,1,1,7,8,[[470,1,1,7,8]]],[22,1,1,8,9,[[725,1,1,8,9]]],[37,1,1,9,10,[[924,1,1,9,10]]]],[4980,8316,8706,9090,9127,11264,11373,13735,18608,23082]]],["greatly",[46,46,[[0,3,3,0,3,[[6,1,1,0,1],[18,1,1,1,2],[23,1,1,2,3]]],[1,1,1,3,4,[[68,1,1,3,4]]],[3,2,2,4,6,[[127,1,1,4,5],[130,1,1,5,6]]],[4,1,1,6,7,[[169,1,1,6,7]]],[5,1,1,7,8,[[196,1,1,7,8]]],[6,2,2,8,10,[[212,1,1,8,9],[216,1,1,9,10]]],[8,7,7,10,17,[[246,2,2,10,12],[247,1,1,12,13],[251,1,1,13,14],[252,1,1,14,15],[263,1,1,15,16],[265,1,1,16,17]]],[9,3,3,17,20,[[276,1,1,17,18],[278,1,1,18,19],[290,1,1,19,20]]],[10,3,3,20,23,[[292,1,1,20,21],[295,1,1,21,22],[308,1,1,22,23]]],[12,3,3,23,26,[[353,1,1,23,24],[356,1,1,24,25],[358,1,1,25,26]]],[13,2,2,26,28,[[391,1,1,26,27],[399,1,1,27,28]]],[17,1,1,28,29,[[443,1,1,28,29]]],[18,11,11,29,40,[[498,1,1,29,30],[524,1,1,30,31],[525,1,1,31,32],[555,1,1,32,33],[573,1,1,33,34],[582,1,1,34,35],[584,1,1,35,36],[586,1,1,36,37],[589,1,1,37,38],[593,1,1,38,39],[622,1,1,39,40]]],[23,2,2,40,42,[[753,1,1,40,41],[764,1,1,41,42]]],[25,1,1,42,43,[[821,1,1,42,43]]],[30,1,1,43,44,[[888,1,1,43,44]]],[35,1,1,44,45,[[906,1,1,44,45]]],[37,1,1,45,46,[[919,1,1,45,46]]]],[177,460,626,2044,4034,4147,5381,6066,6560,6660,7451,7460,7478,7616,7629,7947,7984,8245,8291,8702,8782,8885,9344,10845,10912,10942,11714,11920,13036,14192,14634,14635,15172,15469,15630,15737,15785,15804,15858,16323,19194,19433,20908,22512,22801,23008]]],["might",[2,2,[[4,1,1,0,1,[[158,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]]],[5091,10190]]],["mightily",[2,2,[[4,1,1,0,1,[[158,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[5089,22700]]],["mighty",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1796]]],["much",[8,8,[[0,1,1,0,1,[[33,1,1,0,1]]],[7,1,1,1,2,[[232,1,1,1,2]]],[8,2,2,2,4,[[253,1,1,2,3],[254,1,1,3,4]]],[9,1,1,4,5,[[280,1,1,4,5]]],[15,1,1,5,6,[[418,1,1,5,6]]],[22,1,1,6,7,[[734,1,1,6,7]]],[23,1,1,7,8,[[746,1,1,7,8]]]],[992,7140,7706,7708,8381,12417,18765,19001]]],["off",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20157]]],["quickly",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7749]]],["so",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9334]]],["sore",[15,15,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[5,1,1,2,3,[[195,1,1,2,3]]],[6,1,1,3,4,[[220,1,1,3,4]]],[8,7,7,4,11,[[252,1,1,4,5],[256,1,1,5,6],[263,3,3,6,9],[266,2,2,9,11]]],[15,1,1,11,12,[[425,1,1,11,12]]],[18,2,2,12,14,[[483,2,2,12,14]]],[23,1,1,14,15,[[794,1,1,14,15]]]],[466,1899,6061,6820,7642,7784,7957,7962,7963,8012,8013,12679,13988,13995,20178]]],["very",[111,104,[[0,12,12,0,12,[[0,1,1,0,1],[3,1,1,1,2],[11,1,1,2,3],[12,1,1,3,4],[17,1,1,4,5],[23,1,1,5,6],[40,3,3,6,9],[46,1,1,9,10],[49,2,2,10,12]]],[1,6,6,12,18,[[58,3,3,12,15],[59,1,1,15,16],[60,1,1,16,17],[61,1,1,17,18]]],[3,4,4,18,22,[[127,1,1,18,19],[128,1,1,19,20],[129,1,1,20,21],[148,1,1,21,22]]],[4,3,3,22,25,[[172,1,1,22,23],[180,1,1,23,24],[182,1,1,24,25]]],[5,11,10,25,35,[[187,1,1,25,26],[189,1,1,26,27],[194,1,1,27,28],[195,2,2,28,30],[196,1,1,30,31],[197,1,1,31,32],[199,1,1,32,33],[208,2,1,33,34],[209,1,1,34,35]]],[6,4,4,35,39,[[213,1,1,35,36],[221,1,1,36,37],[223,1,1,37,38],[228,1,1,38,39]]],[8,11,11,39,50,[[237,2,2,39,41],[239,1,1,41,42],[240,2,2,42,44],[249,2,2,44,46],[253,1,1,46,47],[254,1,1,47,48],[260,2,2,48,50]]],[9,10,9,50,59,[[267,1,1,50,51],[269,1,1,51,52],[277,1,1,52,53],[279,3,3,53,56],[284,1,1,56,57],[285,2,1,57,58],[290,1,1,58,59]]],[10,6,5,59,64,[[291,2,2,59,61],[300,3,2,61,63],[311,1,1,63,64]]],[11,2,2,64,66,[[326,1,1,64,65],[333,1,1,65,66]]],[12,2,2,66,68,[[355,1,1,66,67],[358,1,1,67,68]]],[13,7,7,68,75,[[373,1,1,68,69],[375,1,1,69,70],[380,1,1,70,71],[382,1,1,71,72],[390,1,1,72,73],[396,1,1,73,74],[398,1,1,74,75]]],[14,1,1,75,76,[[412,1,1,75,76]]],[15,4,4,76,80,[[414,1,1,76,77],[416,1,1,77,78],[417,1,1,78,79],[420,1,1,79,80]]],[16,1,1,80,81,[[426,1,1,80,81]]],[17,1,1,81,82,[[436,1,1,81,82]]],[18,7,7,82,89,[[523,1,1,82,83],[527,1,1,83,84],[569,1,1,84,85],[570,1,1,85,86],[581,1,1,86,87],[596,2,2,87,89]]],[22,2,2,89,91,[[694,1,1,89,90],[725,1,1,90,91]]],[23,8,6,91,97,[[746,1,1,91,92],[758,1,1,92,93],[762,1,1,93,94],[768,4,2,94,96],[784,1,1,96,97]]],[25,5,4,97,101,[[838,2,1,97,98],[841,1,1,98,99],[848,2,2,99,101]]],[28,2,1,101,102,[[877,2,1,101,102]]],[37,2,2,102,104,[[919,1,1,102,103],[924,1,1,103,104]]]],[30,84,312,320,444,607,1214,1226,1244,1433,1515,1516,1745,1760,1766,1791,1809,1854,4057,4062,4103,4719,5442,5665,5722,5858,5909,6006,6050,6059,6084,6111,6155,6434,6466,6585,6862,6890,7002,7257,7262,7307,7328,7330,7528,7539,7684,7710,7863,7876,8048,8089,8261,8320,8338,8353,8495,8543,8702,8723,8732,9081,9089,9477,9922,10135,10898,10947,11332,11365,11488,11517,11701,11840,11904,12253,12309,12366,12388,12510,12714,12872,14615,14671,15416,15431,15572,16036,16038,17975,18605,18977,19310,19397,19526,19527,19953,21399,21479,21686,21688,22322,23001,23072]]],["well",[2,2,[[18,2,2,0,2,[[555,1,1,0,1],[616,1,1,1,2]]]],[15142,16253]]]]},{"k":"H3967","v":[["*",[581,512,[[0,64,63,0,63,[[4,24,24,0,24],[5,2,2,24,26],[6,3,3,26,29],[7,2,2,29,31],[8,2,2,31,33],[10,10,10,33,43],[13,1,1,43,44],[14,1,1,44,45],[16,1,1,45,46],[20,1,1,46,47],[22,3,3,47,50],[24,2,2,50,52],[25,1,1,52,53],[31,3,2,53,55],[32,2,2,55,57],[34,1,1,57,58],[44,1,1,58,59],[46,2,2,59,61],[49,2,2,61,63]]],[1,28,22,63,85,[[55,3,3,63,66],[61,3,3,66,69],[63,1,1,69,70],[67,2,2,70,72],[76,3,3,72,75],[79,4,2,75,77],[87,12,8,77,85]]],[2,2,1,85,86,[[115,2,1,85,86]]],[3,96,85,86,171,[[117,14,13,86,99],[118,22,17,99,116],[119,6,6,116,122],[120,4,4,122,126],[123,15,14,126,140],[127,1,1,140,141],[132,4,4,141,145],[142,15,14,145,159],[147,14,11,159,170],[149,1,1,170,171]]],[4,4,4,171,175,[[153,1,1,171,172],[174,1,1,172,173],[183,1,1,173,174],[186,1,1,174,175]]],[5,3,3,175,178,[[193,1,1,175,176],[210,2,2,176,178]]],[6,31,30,178,208,[[212,1,1,178,179],[213,1,1,179,180],[214,2,2,180,182],[217,6,6,182,188],[218,3,3,188,191],[221,1,1,191,192],[225,1,1,192,193],[226,1,1,193,194],[227,3,3,194,197],[228,3,3,197,200],[230,8,7,200,207],[231,1,1,207,208]]],[8,22,18,208,226,[[246,1,1,208,209],[248,1,1,209,210],[249,1,1,210,211],[250,1,1,211,212],[252,1,1,212,213],[253,2,2,213,215],[257,2,2,215,217],[258,1,1,217,218],[260,5,2,218,220],[262,1,1,220,221],[264,1,1,221,222],[265,5,4,222,226]]],[9,19,15,226,241,[[268,1,1,226,227],[269,1,1,227,228],[274,2,1,228,229],[276,1,1,229,230],[280,1,1,230,231],[281,2,2,231,233],[282,3,1,233,234],[284,2,2,234,236],[287,1,1,236,237],[289,2,2,237,239],[290,3,2,239,241]]],[10,29,25,241,266,[[294,1,1,241,242],[295,1,1,242,243],[296,1,1,243,244],[297,3,3,244,247],[298,1,1,247,248],[299,3,3,248,251],[300,8,6,251,257],[301,2,1,257,258],[302,1,1,258,259],[308,5,4,259,263],[310,2,2,263,265],[312,1,1,265,266]]],[11,13,12,266,278,[[315,3,2,266,268],[316,1,1,268,269],[323,5,5,269,274],[326,1,1,274,275],[330,1,1,275,276],[331,1,1,276,277],[335,1,1,277,278]]],[12,43,41,278,319,[[341,1,1,278,279],[342,3,2,279,281],[344,3,3,281,284],[345,1,1,284,285],[346,4,4,285,289],[348,2,2,289,291],[349,9,9,291,300],[350,1,1,300,301],[352,5,5,301,306],[355,1,1,306,307],[358,4,3,307,310],[359,1,1,310,311],[362,1,1,311,312],[363,3,3,312,315],[364,1,1,315,316],[365,1,1,316,317],[366,2,2,317,319]]],[13,64,52,319,371,[[367,4,3,319,322],[368,4,3,322,325],[369,3,3,325,328],[370,2,2,328,330],[371,1,1,330,331],[373,1,1,331,332],[374,2,2,332,334],[375,6,4,334,338],[377,1,1,338,339],[378,1,1,339,340],[379,3,2,340,342],[380,3,2,342,344],[381,1,1,344,345],[383,7,6,345,351],[384,1,1,351,352],[389,4,4,352,356],[390,1,1,356,357],[391,6,4,357,361],[392,3,2,361,363],[393,1,1,363,364],[394,2,2,364,366],[395,3,2,366,368],[401,3,2,368,370],[402,1,1,370,371]]],[14,53,48,371,419,[[403,2,2,371,373],[404,41,38,373,411],[410,10,8,411,419]]],[15,50,47,419,466,[[417,2,2,419,421],[419,41,38,421,459],[423,7,7,459,466]]],[16,7,7,466,473,[[426,2,2,466,468],[433,1,1,468,469],[434,4,4,469,473]]],[17,3,2,473,475,[[436,2,1,473,474],[477,1,1,474,475]]],[19,1,1,475,476,[[644,1,1,475,476]]],[20,2,2,476,478,[[664,1,1,476,477],[666,1,1,477,478]]],[21,1,1,478,479,[[678,1,1,478,479]]],[22,3,2,479,481,[[715,1,1,479,480],[743,2,1,480,481]]],[23,4,3,481,484,[[796,4,3,481,484]]],[25,34,24,484,508,[[805,2,2,484,486],[841,5,4,486,490],[842,4,3,490,493],[843,8,7,493,500],[846,3,2,500,502],[849,12,6,502,508]]],[26,3,3,508,511,[[857,1,1,508,509],[861,2,2,509,511]]],[29,2,1,511,512,[[883,2,1,511,512]]]],[108,109,110,111,112,113,115,116,118,119,121,122,123,124,125,127,128,130,131,132,133,135,136,137,140,152,165,170,183,186,196,233,234,276,277,279,281,283,285,287,289,291,298,350,373,414,518,572,586,587,665,675,704,934,942,961,979,1039,1380,1429,1448,1528,1532,1671,1673,1675,1853,1856,1857,1896,2020,2024,2281,2283,2290,2405,2406,2642,2644,2657,2658,2659,2660,2661,2662,3532,3625,3627,3629,3631,3633,3635,3637,3639,3641,3643,3645,3647,3650,3662,3664,3666,3667,3669,3671,3673,3674,3677,3679,3681,3682,3684,3686,3688,3689,3690,3714,3720,3726,3735,3738,3742,3779,3783,3787,3791,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935,3936,4045,4196,4211,4229,4243,4496,4499,4503,4507,4511,4514,4516,4523,4526,4530,4532,4536,4539,4540,4678,4692,4696,4700,4701,4703,4707,4709,4712,4716,4718,4799,4907,5489,5730,5846,5997,6505,6508,6553,6599,6602,6612,6700,6701,6702,6710,6713,6716,6723,6729,6745,6855,6933,6954,6982,6983,6984,7004,7009,7010,7056,7064,7069,7070,7071,7089,7101,7114,7453,7500,7510,7564,7625,7701,7703,7789,7794,7823,7874,7879,7932,7969,7987,7988,7995,7999,8080,8095,8213,8258,8382,8400,8407,8427,8479,8482,8596,8661,8671,8695,8701,8867,8894,8897,8936,8954,8976,9048,9065,9074,9079,9089,9093,9095,9096,9105,9108,9111,9172,9345,9354,9360,9363,9423,9437,9486,9580,9602,9646,9833,9838,9839,9844,9848,9909,10038,10096,10198,10427,10446,10449,10537,10544,10546,10615,10621,10624,10628,10637,10684,10693,10734,10744,10745,10746,10747,10750,10752,10755,10757,10761,10796,10797,10798,10799,10801,10894,10937,10939,10959,10978,11053,11103,11107,11109,11110,11144,11170,11171,11196,11208,11211,11213,11228,11229,11233,11237,11245,11254,11259,11280,11329,11356,11364,11373,11377,11379,11380,11415,11440,11456,11470,11483,11484,11501,11534,11537,11538,11539,11540,11541,11547,11657,11665,11670,11676,11692,11709,11710,11713,11727,11744,11745,11760,11770,11772,11823,11824,11974,11975,11996,12026,12027,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12042,12044,12045,12046,12048,12050,12052,12053,12054,12055,12057,12058,12059,12060,12061,12062,12063,12065,12068,12069,12085,12087,12091,12092,12093,12094,12096,12204,12205,12206,12210,12211,12213,12221,12227,12393,12399,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12440,12442,12443,12444,12446,12447,12449,12450,12451,12452,12454,12455,12456,12457,12458,12459,12461,12464,12465,12480,12482,12486,12487,12488,12489,12490,12491,12594,12596,12600,12601,12602,12606,12607,12703,12706,12826,12840,12846,12849,12864,12872,13938,16883,17420,17470,17652,18388,18917,20299,20305,20306,20534,20538,21496,21500,21504,21524,21539,21540,21541,21554,21560,21568,21569,21570,21571,21572,21632,21645,21718,21719,21732,21734,21735,21736,21975,22092,22093,22426]]],["+",[10,10,[[0,1,1,0,1,[[25,1,1,0,1]]],[6,3,3,1,4,[[226,1,1,1,2],[227,2,2,2,4]]],[8,2,2,4,6,[[258,1,1,4,5],[265,1,1,5,6]]],[9,1,1,6,7,[[290,1,1,6,7]]],[10,1,1,7,8,[[299,1,1,7,8]]],[13,2,2,8,10,[[378,1,1,8,9],[389,1,1,9,10]]]],[704,6954,6982,6983,7823,7988,8695,9065,11440,11665]]],["hundred",[541,475,[[0,61,60,0,60,[[4,24,24,0,24],[5,2,2,24,26],[6,2,2,26,28],[7,1,1,28,29],[8,2,2,29,31],[10,10,10,31,41],[13,1,1,41,42],[14,1,1,42,43],[16,1,1,43,44],[20,1,1,44,45],[22,3,3,45,48],[24,2,2,48,50],[31,3,2,50,52],[32,2,2,52,54],[34,1,1,54,55],[44,1,1,55,56],[46,2,2,56,58],[49,2,2,58,60]]],[1,26,20,60,80,[[55,3,3,60,63],[61,3,3,63,66],[63,1,1,66,67],[76,3,3,67,70],[79,4,2,70,72],[87,12,8,72,80]]],[2,2,1,80,81,[[115,2,1,80,81]]],[3,92,82,81,163,[[117,14,13,81,94],[118,22,17,94,111],[119,6,6,111,117],[120,4,4,117,121],[123,15,14,121,135],[127,1,1,135,136],[132,4,4,136,140],[142,15,14,140,154],[147,10,8,154,162],[149,1,1,162,163]]],[4,3,3,163,166,[[174,1,1,163,164],[183,1,1,164,165],[186,1,1,165,166]]],[5,3,3,166,169,[[193,1,1,166,167],[210,2,2,167,169]]],[6,28,27,169,196,[[212,1,1,169,170],[213,1,1,170,171],[214,2,2,171,173],[217,6,6,173,179],[218,3,3,179,182],[221,1,1,182,183],[225,1,1,183,184],[227,1,1,184,185],[228,3,3,185,188],[230,8,7,188,195],[231,1,1,195,196]]],[8,18,15,196,211,[[246,1,1,196,197],[248,1,1,197,198],[249,1,1,198,199],[250,1,1,199,200],[252,1,1,200,201],[253,2,2,201,203],[257,1,1,203,204],[260,5,2,204,206],[262,1,1,206,207],[265,4,4,207,211]]],[9,16,12,211,223,[[268,1,1,211,212],[269,1,1,212,213],[274,2,1,213,214],[276,1,1,214,215],[280,1,1,215,216],[281,2,2,216,218],[282,3,1,218,219],[287,1,1,219,220],[289,2,2,220,222],[290,2,1,222,223]]],[10,28,24,223,247,[[294,1,1,223,224],[295,1,1,224,225],[296,1,1,225,226],[297,3,3,226,229],[298,1,1,229,230],[299,2,2,230,232],[300,8,6,232,238],[301,2,1,238,239],[302,1,1,239,240],[308,5,4,240,244],[310,2,2,244,246],[312,1,1,246,247]]],[11,8,7,247,254,[[315,3,2,247,249],[316,1,1,249,250],[326,1,1,250,251],[330,1,1,251,252],[331,1,1,252,253],[335,1,1,253,254]]],[12,38,36,254,290,[[341,1,1,254,255],[342,3,2,255,257],[344,3,3,257,260],[345,1,1,260,261],[346,4,4,261,265],[348,2,2,265,267],[349,9,9,267,276],[352,5,5,276,281],[355,1,1,281,282],[358,4,3,282,285],[359,1,1,285,286],[362,1,1,286,287],[363,2,2,287,289],[366,1,1,289,290]]],[13,57,46,290,336,[[367,3,2,290,292],[368,4,3,292,295],[369,3,3,295,298],[370,2,2,298,300],[371,1,1,300,301],[373,1,1,301,302],[374,2,2,302,304],[375,6,4,304,308],[377,1,1,308,309],[379,3,2,309,311],[380,3,2,311,313],[381,1,1,313,314],[383,7,6,314,320],[384,1,1,320,321],[390,1,1,321,322],[391,5,4,322,326],[392,3,2,326,328],[393,1,1,328,329],[394,2,2,329,331],[395,3,2,331,333],[401,3,2,333,335],[402,1,1,335,336]]],[14,53,48,336,384,[[403,2,2,336,338],[404,41,38,338,376],[410,10,8,376,384]]],[15,49,46,384,430,[[417,1,1,384,385],[419,41,38,385,423],[423,7,7,423,430]]],[16,7,7,430,437,[[426,2,2,430,432],[433,1,1,432,433],[434,4,4,433,437]]],[17,3,2,437,439,[[436,2,1,437,438],[477,1,1,438,439]]],[19,1,1,439,440,[[644,1,1,439,440]]],[20,1,1,440,441,[[664,1,1,440,441]]],[21,1,1,441,442,[[678,1,1,441,442]]],[22,3,2,442,444,[[715,1,1,442,443],[743,2,1,443,444]]],[23,4,3,444,447,[[796,4,3,444,447]]],[25,34,24,447,471,[[805,2,2,447,449],[841,5,4,449,453],[842,4,3,453,456],[843,8,7,456,463],[846,3,2,463,465],[849,12,6,465,471]]],[26,3,3,471,474,[[857,1,1,471,472],[861,2,2,472,474]]],[29,2,1,474,475,[[883,2,1,474,475]]]],[108,109,110,111,112,113,115,116,118,119,121,122,123,124,125,127,128,130,131,132,133,135,136,137,140,152,165,183,186,233,234,276,277,279,281,283,285,287,289,291,298,350,373,414,518,572,586,587,665,675,934,942,961,979,1039,1380,1429,1448,1528,1532,1671,1673,1675,1853,1856,1857,1896,2281,2283,2290,2405,2406,2642,2644,2657,2658,2659,2660,2661,2662,3532,3625,3627,3629,3631,3633,3635,3637,3639,3641,3643,3645,3647,3650,3662,3664,3666,3667,3669,3671,3673,3674,3677,3679,3681,3682,3684,3686,3688,3689,3690,3714,3720,3726,3735,3738,3742,3779,3783,3787,3791,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935,3936,4045,4196,4211,4229,4243,4496,4499,4503,4507,4511,4514,4516,4523,4526,4530,4532,4536,4539,4540,4692,4696,4700,4701,4703,4707,4709,4716,4799,5489,5730,5846,5997,6505,6508,6553,6599,6602,6612,6700,6701,6702,6710,6713,6716,6723,6729,6745,6855,6933,6984,7004,7009,7010,7056,7064,7069,7070,7071,7089,7101,7114,7453,7500,7510,7564,7625,7701,7703,7789,7874,7879,7932,7987,7988,7995,7999,8080,8095,8213,8258,8382,8400,8407,8427,8596,8661,8671,8701,8867,8894,8897,8936,8954,8976,9048,9074,9079,9089,9093,9095,9096,9105,9108,9111,9172,9345,9354,9360,9363,9423,9437,9486,9580,9602,9646,9909,10038,10096,10198,10427,10446,10449,10537,10544,10546,10615,10621,10624,10628,10637,10684,10693,10734,10744,10745,10746,10747,10750,10752,10755,10757,10796,10797,10798,10799,10801,10894,10937,10939,10959,10978,11053,11107,11109,11171,11208,11211,11213,11228,11229,11233,11237,11245,11254,11259,11280,11329,11356,11364,11373,11377,11379,11380,11415,11456,11470,11483,11484,11501,11534,11537,11538,11539,11540,11541,11547,11692,11709,11710,11713,11727,11744,11745,11760,11770,11772,11823,11824,11974,11975,11996,12026,12027,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12042,12044,12045,12046,12048,12050,12052,12053,12054,12055,12057,12058,12059,12060,12061,12062,12063,12065,12068,12069,12085,12087,12091,12092,12093,12094,12096,12204,12205,12206,12210,12211,12213,12221,12227,12399,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12440,12442,12443,12444,12446,12447,12449,12450,12451,12452,12454,12455,12456,12457,12458,12459,12461,12464,12465,12480,12482,12486,12487,12488,12489,12490,12491,12594,12596,12600,12601,12602,12606,12607,12703,12706,12826,12840,12846,12849,12864,12872,13938,16883,17420,17652,18388,18917,20299,20305,20306,20534,20538,21496,21500,21504,21524,21539,21540,21541,21554,21560,21568,21569,21570,21571,21572,21632,21645,21718,21719,21732,21734,21735,21736,21975,22092,22093,22426]]],["hundreds",[26,26,[[1,2,2,0,2,[[67,2,2,0,2]]],[3,4,4,2,6,[[147,4,4,2,6]]],[4,1,1,6,7,[[153,1,1,6,7]]],[8,2,2,7,9,[[257,1,1,7,8],[264,1,1,8,9]]],[9,2,2,9,11,[[284,2,2,9,11]]],[11,5,5,11,16,[[323,5,5,11,16]]],[12,5,5,16,21,[[350,1,1,16,17],[363,1,1,17,18],[364,1,1,18,19],[365,1,1,19,20],[366,1,1,20,21]]],[13,5,5,21,26,[[367,1,1,21,22],[389,3,3,22,25],[391,1,1,25,26]]]],[2020,2024,4678,4712,4716,4718,4907,7794,7969,8479,8482,9833,9838,9839,9844,9848,10761,11103,11110,11144,11170,11196,11657,11670,11676,11709]]],["hundredth",[3,3,[[0,2,2,0,2,[[6,1,1,0,1],[7,1,1,1,2]]],[15,1,1,2,3,[[417,1,1,2,3]]]],[170,196,12393]]],["times",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17470]]]]},{"k":"H3968","v":[["Meah",[2,2,[[15,2,2,0,2,[[415,1,1,0,1],[424,1,1,1,2]]]],[12328,12663]]]]},{"k":"H3969","v":[["hundred",[8,3,[[14,7,2,0,2,[[408,3,1,0,1],[409,4,1,1,2]]],[26,1,1,2,3,[[855,1,1,2,3]]]],[12168,12195,21906]]]]},{"k":"H3970","v":[["desires",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16271]]]]},{"k":"H3971","v":[["*",[21,19,[[2,10,9,0,9,[[110,5,4,0,4],[111,3,3,4,7],[113,2,2,7,9]]],[3,1,1,9,10,[[135,1,1,9,10]]],[4,4,3,10,13,[[167,2,1,10,11],[169,1,1,11,12],[184,1,1,12,13]]],[9,1,1,13,14,[[280,1,1,13,14]]],[17,2,2,14,16,[[446,1,1,14,15],[466,1,1,15,16]]],[19,1,1,16,17,[[636,1,1,16,17]]],[21,1,1,17,18,[[674,1,1,17,18]]],[26,1,1,18,19,[[850,1,1,18,19]]]],[3362,3363,3366,3368,3389,3390,3394,3465,3466,4291,5340,5365,5763,8381,13123,13595,16645,17589,21741]]],["+",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13123]]],["blemish",[15,13,[[2,9,8,0,8,[[110,5,4,0,4],[111,2,2,4,6],[113,2,2,6,8]]],[3,1,1,8,9,[[135,1,1,8,9]]],[4,3,2,9,11,[[167,2,1,9,10],[169,1,1,10,11]]],[9,1,1,11,12,[[280,1,1,11,12]]],[26,1,1,12,13,[[850,1,1,12,13]]]],[3362,3363,3366,3368,3389,3390,3465,3466,4291,5340,5365,8381,21741]]],["blemishes",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3394]]],["blot",[2,2,[[17,1,1,0,1,[[466,1,1,0,1]]],[19,1,1,1,2,[[636,1,1,1,2]]]],[13595,16645]]],["spot",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[21,1,1,1,2,[[674,1,1,1,2]]]],[5763,17589]]]]},{"k":"H3972","v":[["*",[32,32,[[0,6,6,0,6,[[21,1,1,0,1],[29,1,1,1,2],[38,3,3,2,5],[39,1,1,5,6]]],[3,1,1,6,7,[[138,1,1,6,7]]],[4,2,2,7,9,[[165,1,1,7,8],[176,1,1,8,9]]],[6,1,1,9,10,[[224,1,1,9,10]]],[8,9,9,10,19,[[247,2,2,10,12],[255,2,2,12,14],[256,1,1,14,15],[260,3,3,15,18],[264,1,1,18,19]]],[9,2,2,19,21,[[269,1,1,19,20],[279,1,1,20,21]]],[10,2,2,21,23,[[300,1,1,21,22],[308,1,1,22,23]]],[11,1,1,23,24,[[317,1,1,23,24]]],[13,1,1,24,25,[[375,1,1,24,25]]],[20,4,4,25,29,[[663,2,2,25,27],[665,1,1,27,28],[667,1,1,28,29]]],[23,2,2,29,31,[[783,2,2,29,31]]],[31,1,1,31,32,[[891,1,1,31,32]]]],[559,861,1155,1158,1172,1187,4413,5289,5535,6915,7464,7465,7756,7769,7774,7868,7876,7882,7970,8116,8319,9100,9384,9667,11384,17411,17412,17443,17480,19933,19935,22565]]],["+",[13,13,[[0,2,2,0,2,[[38,1,1,0,1],[39,1,1,1,2]]],[4,1,1,2,3,[[165,1,1,2,3]]],[6,1,1,3,4,[[224,1,1,3,4]]],[8,1,1,4,5,[[260,1,1,4,5]]],[9,1,1,5,6,[[269,1,1,5,6]]],[10,2,2,6,8,[[300,1,1,6,7],[308,1,1,7,8]]],[20,3,3,8,11,[[663,2,2,8,10],[665,1,1,10,11]]],[23,2,2,11,13,[[783,2,2,11,13]]]],[1172,1187,5289,6915,7882,8116,9100,9384,17411,17412,17443,19933,19935]]],["any",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5535]]],["fault",[1,1,[[8,1,1,0,1,[[264,1,1,0,1]]]],[7970]]],["ought",[4,4,[[0,1,1,0,1,[[38,1,1,0,1]]],[8,3,3,1,4,[[247,2,2,1,3],[260,1,1,3,4]]]],[1155,7464,7465,7868]]],["somewhat",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9667]]],["thing",[12,12,[[0,3,3,0,3,[[21,1,1,0,1],[29,1,1,1,2],[38,1,1,2,3]]],[3,1,1,3,4,[[138,1,1,3,4]]],[8,4,4,4,8,[[255,2,2,4,6],[256,1,1,6,7],[260,1,1,7,8]]],[9,1,1,8,9,[[279,1,1,8,9]]],[13,1,1,9,10,[[375,1,1,9,10]]],[20,1,1,10,11,[[667,1,1,10,11]]],[31,1,1,11,12,[[891,1,1,11,12]]]],[559,861,1158,4413,7756,7769,7774,7876,8319,11384,17480,22565]]]]},{"k":"H3973","v":[["refuse",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20399]]]]},{"k":"H3974","v":[["*",[19,16,[[0,5,3,0,3,[[0,5,3,0,3]]],[1,7,6,3,9,[[74,1,1,3,4],[76,1,1,4,5],[84,4,3,5,8],[88,1,1,8,9]]],[2,1,1,9,10,[[113,1,1,9,10]]],[3,2,2,10,12,[[120,2,2,10,12]]],[18,2,2,12,14,[[551,1,1,12,13],[567,1,1,13,14]]],[19,1,1,14,15,[[642,1,1,14,15]]],[25,1,1,15,16,[[833,1,1,15,16]]]],[13,14,15,2201,2292,2539,2545,2559,2701,3448,3752,3759,15064,15386,16837,21256]]],["+",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[15]]],["light",[15,13,[[0,2,1,0,1,[[0,2,1,0,1]]],[1,7,6,1,7,[[74,1,1,1,2],[76,1,1,2,3],[84,4,3,3,6],[88,1,1,6,7]]],[2,1,1,7,8,[[113,1,1,7,8]]],[3,2,2,8,10,[[120,2,2,8,10]]],[18,2,2,10,12,[[551,1,1,10,11],[567,1,1,11,12]]],[19,1,1,12,13,[[642,1,1,12,13]]]],[15,2201,2292,2539,2545,2559,2701,3448,3752,3759,15064,15386,16837]]],["lights",[3,3,[[0,2,2,0,2,[[0,2,2,0,2]]],[25,1,1,2,3,[[833,1,1,2,3]]]],[13,14,21256]]]]},{"k":"H3975","v":[["den",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17892]]]]},{"k":"H3976","v":[["*",[15,15,[[2,1,1,0,1,[[108,1,1,0,1]]],[17,2,2,1,3,[[441,1,1,1,2],[466,1,1,2,3]]],[18,1,1,3,4,[[539,1,1,3,4]]],[19,3,3,4,7,[[638,1,1,4,5],[643,1,1,5,6],[647,1,1,6,7]]],[22,2,2,7,9,[[718,2,2,7,9]]],[23,1,1,9,10,[[776,1,1,9,10]]],[25,2,2,10,12,[[806,1,1,10,11],[846,1,1,11,12]]],[27,1,1,12,13,[[873,1,1,12,13]]],[29,1,1,13,14,[[886,1,1,13,14]]],[32,1,1,14,15,[[898,1,1,14,15]]]],[3317,12980,13594,14836,16689,16851,16977,18432,18435,19741,20547,21640,22259,22486,22659]]],["balance",[7,7,[[17,1,1,0,1,[[466,1,1,0,1]]],[18,1,1,1,2,[[539,1,1,1,2]]],[19,3,3,2,5,[[638,1,1,2,3],[643,1,1,3,4],[647,1,1,4,5]]],[22,2,2,5,7,[[718,2,2,5,7]]]],[13594,14836,16689,16851,16977,18432,18435]]],["balances",[8,8,[[2,1,1,0,1,[[108,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]],[23,1,1,2,3,[[776,1,1,2,3]]],[25,2,2,3,5,[[806,1,1,3,4],[846,1,1,4,5]]],[27,1,1,5,6,[[873,1,1,5,6]]],[29,1,1,6,7,[[886,1,1,6,7]]],[32,1,1,7,8,[[898,1,1,7,8]]]],[3317,12980,19741,20547,21640,22259,22486,22659]]]]},{"k":"H3977","v":[["balances",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21901]]]]},{"k":"H3978","v":[["*",[30,29,[[0,4,4,0,4,[[1,1,1,0,1],[2,1,1,1,2],[5,1,1,2,3],[39,1,1,3,4]]],[2,1,1,4,5,[[108,1,1,4,5]]],[4,2,2,5,7,[[172,1,1,5,6],[180,1,1,6,7]]],[6,1,1,7,8,[[224,1,1,7,8]]],[10,1,1,8,9,[[300,1,1,8,9]]],[12,1,1,9,10,[[349,1,1,9,10]]],[13,2,2,10,12,[[375,1,1,10,11],[377,1,1,11,12]]],[14,1,1,12,13,[[405,1,1,12,13]]],[15,1,1,13,14,[[421,1,1,13,14]]],[17,1,1,14,15,[[468,1,1,14,15]]],[18,3,3,15,18,[[521,1,1,15,16],[551,1,1,16,17],[556,1,1,17,18]]],[19,1,1,18,19,[[633,1,1,18,19]]],[22,1,1,19,20,[[740,1,1,19,20]]],[23,4,4,20,24,[[751,1,1,20,21],[760,1,1,21,22],[763,1,1,22,23],[778,1,1,23,24]]],[25,3,2,24,26,[[805,1,1,24,25],[848,2,1,25,26]]],[26,1,1,26,27,[[850,1,1,26,27]]],[34,1,1,27,28,[[903,1,1,27,28]]],[36,1,1,28,29,[[910,1,1,28,29]]]],[39,61,158,1189,3304,5447,5637,6923,9084,10760,11368,11425,12104,12536,13670,14582,15062,15187,16548,18862,19152,19340,19414,19821,20539,21691,21747,22747,22867]]],["+",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1189]]],["food",[5,5,[[0,3,3,0,3,[[1,1,1,0,1],[2,1,1,1,2],[5,1,1,2,3]]],[2,1,1,3,4,[[108,1,1,3,4]]],[19,1,1,4,5,[[633,1,1,4,5]]]],[39,61,158,3304,16548]]],["fruit",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12536]]],["meat",[22,21,[[4,2,2,0,2,[[172,1,1,0,1],[180,1,1,1,2]]],[6,1,1,2,3,[[224,1,1,2,3]]],[10,1,1,3,4,[[300,1,1,3,4]]],[12,1,1,4,5,[[349,1,1,4,5]]],[13,1,1,5,6,[[375,1,1,5,6]]],[14,1,1,6,7,[[405,1,1,6,7]]],[17,1,1,7,8,[[468,1,1,7,8]]],[18,3,3,8,11,[[521,1,1,8,9],[551,1,1,9,10],[556,1,1,10,11]]],[22,1,1,11,12,[[740,1,1,11,12]]],[23,4,4,12,16,[[751,1,1,12,13],[760,1,1,13,14],[763,1,1,14,15],[778,1,1,15,16]]],[25,3,2,16,18,[[805,1,1,16,17],[848,2,1,17,18]]],[26,1,1,18,19,[[850,1,1,18,19]]],[34,1,1,19,20,[[903,1,1,19,20]]],[36,1,1,20,21,[[910,1,1,20,21]]]],[5447,5637,6923,9084,10760,11368,12104,13670,14582,15062,15187,18862,19152,19340,19414,19821,20539,21691,21747,22747,22867]]],["victual",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11425]]]]},{"k":"H3979","v":[["*",[4,4,[[0,2,2,0,2,[[21,2,2,0,2]]],[6,1,1,2,3,[[229,1,1,2,3]]],[19,1,1,3,4,[[657,1,1,3,4]]]],[553,557,7053,17265]]],["knife",[3,3,[[0,2,2,0,2,[[21,2,2,0,2]]],[6,1,1,2,3,[[229,1,1,2,3]]]],[553,557,7053]]],["knives",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17265]]]]},{"k":"H3980","v":[["fuel",[2,2,[[22,2,2,0,2,[[687,2,2,0,2]]]],[17834,17848]]]]},{"k":"H3981","v":[["forces",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13755]]]]},{"k":"H3982","v":[["*",[3,3,[[16,3,3,0,3,[[426,1,1,0,1],[427,1,1,1,2],[434,1,1,2,3]]]],[12717,12744,12866]]],["commandment",[2,2,[[16,2,2,0,2,[[426,1,1,0,1],[427,1,1,1,2]]]],[12717,12744]]],["decree",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12866]]]]},{"k":"H3983","v":[["*",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[12160,21854]]],["appointment",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12160]]],["word",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21854]]]]},{"k":"H3984","v":[["vessels",[7,7,[[14,4,4,0,4,[[407,2,2,0,2],[408,1,1,2,3],[409,1,1,3,4]]],[26,3,3,4,7,[[854,3,3,4,7]]]],[12148,12149,12156,12192,21876,21877,21897]]]]},{"k":"H3985","v":[["*",[41,39,[[0,3,3,0,3,[[36,1,1,0,1],[38,1,1,1,2],[47,1,1,2,3]]],[1,6,5,3,8,[[53,1,1,3,4],[56,1,1,4,5],[59,1,1,5,6],[65,1,1,6,7],[71,2,1,7,8]]],[3,3,3,8,11,[[136,1,1,8,9],[138,2,2,9,11]]],[4,1,1,11,12,[[177,1,1,11,12]]],[8,2,2,12,14,[[243,1,1,12,13],[263,1,1,13,14]]],[9,2,2,14,16,[[268,1,1,14,15],[279,1,1,15,16]]],[10,2,2,16,18,[[310,1,1,16,17],[311,1,1,17,18]]],[11,1,1,18,19,[[317,1,1,18,19]]],[15,1,1,19,20,[[421,1,1,19,20]]],[16,1,1,20,21,[[426,1,1,20,21]]],[17,1,1,21,22,[[441,1,1,21,22]]],[18,2,2,22,24,[[554,1,1,22,23],[555,1,1,23,24]]],[19,3,3,24,27,[[628,1,1,24,25],[648,2,2,25,27]]],[22,1,1,27,28,[[679,1,1,27,28]]],[23,10,9,28,37,[[747,1,1,28,29],[749,2,1,29,30],[752,1,1,30,31],[753,1,1,31,32],[755,1,1,32,33],[759,1,1,33,34],[769,1,1,34,35],[775,1,1,35,36],[794,1,1,36,37]]],[27,1,1,37,38,[[872,1,1,37,38]]],[37,1,1,38,39,[[917,1,1,38,39]]]],[1118,1157,1470,1624,1699,1780,1975,2130,4332,4388,4389,5554,7388,7965,8072,8326,9443,9466,9663,12528,12714,12985,15095,15123,16424,16991,17009,17674,19005,19061,19158,19181,19236,19333,19562,19706,20199,22245,22973]]],["+",[2,1,[[1,2,1,0,1,[[71,2,1,0,1]]]],[2130]]],["refuse",[9,9,[[1,3,3,0,3,[[53,1,1,0,1],[59,1,1,1,2],[65,1,1,2,3]]],[19,2,2,3,5,[[648,2,2,3,5]]],[22,1,1,5,6,[[679,1,1,5,6]]],[23,3,3,6,9,[[752,1,1,6,7],[753,1,1,7,8],[769,1,1,8,9]]]],[1624,1780,1975,16991,17009,17674,19158,19181,19562]]],["refused",[24,23,[[0,3,3,0,3,[[36,1,1,0,1],[38,1,1,1,2],[47,1,1,2,3]]],[3,1,1,3,4,[[136,1,1,3,4]]],[8,2,2,4,6,[[243,1,1,4,5],[263,1,1,5,6]]],[9,2,2,6,8,[[268,1,1,6,7],[279,1,1,7,8]]],[10,2,2,8,10,[[310,1,1,8,9],[311,1,1,9,10]]],[11,1,1,10,11,[[317,1,1,10,11]]],[15,1,1,11,12,[[421,1,1,11,12]]],[16,1,1,12,13,[[426,1,1,12,13]]],[17,1,1,13,14,[[441,1,1,13,14]]],[18,2,2,14,16,[[554,1,1,14,15],[555,1,1,15,16]]],[19,1,1,16,17,[[628,1,1,16,17]]],[23,5,4,17,21,[[749,2,1,17,18],[755,1,1,18,19],[775,1,1,19,20],[794,1,1,20,21]]],[27,1,1,21,22,[[872,1,1,21,22]]],[37,1,1,22,23,[[917,1,1,22,23]]]],[1118,1157,1470,4332,7388,7965,8072,8326,9443,9466,9663,12528,12714,12985,15095,15123,16424,19061,19236,19706,20199,22245,22973]]],["refusedst",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19005]]],["refuseth",[5,5,[[1,1,1,0,1,[[56,1,1,0,1]]],[3,2,2,1,3,[[138,2,2,1,3]]],[4,1,1,3,4,[[177,1,1,3,4]]],[23,1,1,4,5,[[759,1,1,4,5]]]],[1699,4388,4389,5554,19333]]]]},{"k":"H3986","v":[["refuse",[4,4,[[1,3,3,0,3,[[57,1,1,0,1],[58,1,1,1,2],[59,1,1,2,3]]],[23,1,1,3,4,[[782,1,1,3,4]]]],[1712,1744,1781,19916]]]]},{"k":"H3987","v":[["refuse",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19276]]]]},{"k":"H3988","v":[["*",[76,69,[[2,3,3,0,3,[[115,3,3,0,3]]],[3,2,2,3,5,[[127,1,1,3,4],[130,1,1,4,5]]],[6,1,1,5,6,[[219,1,1,5,6]]],[8,9,6,6,12,[[243,2,1,6,7],[245,1,1,7,8],[250,4,2,8,10],[251,2,2,10,12]]],[11,3,3,12,15,[[329,2,2,12,14],[335,1,1,14,15]]],[17,12,12,15,27,[[440,1,1,15,16],[442,2,2,16,18],[443,1,1,18,19],[444,1,1,19,20],[445,1,1,20,21],[454,1,1,21,22],[465,1,1,22,23],[466,1,1,23,24],[469,1,1,24,25],[471,1,1,25,26],[477,1,1,26,27]]],[18,9,9,27,36,[[492,1,1,27,28],[513,1,1,28,29],[530,1,1,29,30],[535,1,1,30,31],[555,2,2,31,33],[566,1,1,33,34],[583,1,1,34,35],[595,1,1,35,36]]],[19,2,2,36,38,[[630,1,1,36,37],[642,1,1,37,38]]],[22,10,10,38,48,[[683,1,1,38,39],[685,2,2,39,41],[686,1,1,41,42],[708,1,1,42,43],[709,1,1,43,44],[711,2,2,44,46],[719,1,1,46,47],[732,1,1,47,48]]],[23,12,10,48,58,[[746,1,1,48,49],[748,1,1,49,50],[750,3,2,50,52],[751,1,1,52,53],[752,1,1,53,54],[758,2,1,54,55],[775,1,1,55,56],[777,2,2,56,58]]],[24,2,1,58,59,[[801,2,1,58,59]]],[25,6,6,59,65,[[806,1,1,59,60],[821,3,3,60,63],[822,2,2,63,65]]],[27,3,2,65,67,[[865,2,1,65,66],[870,1,1,66,67]]],[29,2,2,67,69,[[880,1,1,67,68],[883,1,1,68,69]]]],[3539,3567,3568,4044,4139,6792,7376,7437,7583,7586,7596,7602,9998,10003,10192,12968,13013,13024,13049,13072,13089,13315,13558,13601,13716,13741,13928,14091,14442,14724,14786,15172,15180,15364,15675,15891,16466,16839,17763,17797,17798,17813,18229,18257,18287,18294,18460,18729,19002,19057,19108,19119,19148,19162,19312,19728,19799,19801,20464,20552,20908,20911,20919,20954,20957,22139,22225,22383,22444]]],["+",[13,11,[[3,1,1,0,1,[[127,1,1,0,1]]],[8,3,3,1,4,[[245,1,1,1,2],[250,2,2,2,4]]],[11,2,2,4,6,[[329,1,1,4,5],[335,1,1,5,6]]],[22,2,2,6,8,[[683,1,1,6,7],[686,1,1,7,8]]],[23,2,1,8,9,[[758,2,1,8,9]]],[24,2,1,9,10,[[801,2,1,9,10]]],[29,1,1,10,11,[[880,1,1,10,11]]]],[4044,7437,7583,7586,9998,10192,17763,17813,19312,20464,22383]]],["Reprobate",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19119]]],["abhor",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13928]]],["abhorred",[2,2,[[18,2,2,0,2,[[555,1,1,0,1],[566,1,1,1,2]]]],[15172,15364]]],["abhorreth",[1,1,[[18,1,1,0,1,[[513,1,1,0,1]]]],[14442]]],["away",[7,7,[[2,1,1,0,1,[[115,1,1,0,1]]],[17,1,1,1,2,[[443,1,1,1,2]]],[18,1,1,2,3,[[535,1,1,2,3]]],[22,2,2,3,5,[[709,1,1,3,4],[719,1,1,4,5]]],[23,1,1,5,6,[[777,1,1,5,6]]],[27,1,1,6,7,[[870,1,1,6,7]]]],[3568,13049,14786,18257,18460,19801,22225]]],["contemn",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20957]]],["contemneth",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20954]]],["despise",[9,9,[[2,1,1,0,1,[[115,1,1,0,1]]],[17,4,4,1,5,[[440,1,1,1,2],[444,1,1,2,3],[445,1,1,3,4],[466,1,1,4,5]]],[19,1,1,5,6,[[630,1,1,5,6]]],[22,1,1,6,7,[[708,1,1,6,7]]],[23,1,1,7,8,[[748,1,1,7,8]]],[29,1,1,8,9,[[883,1,1,8,9]]]],[3539,12968,13072,13089,13601,16466,18229,19057,22444]]],["despised",[10,10,[[2,1,1,0,1,[[115,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[6,1,1,2,3,[[219,1,1,2,3]]],[17,1,1,3,4,[[454,1,1,3,4]]],[18,2,2,4,6,[[530,1,1,4,5],[583,1,1,5,6]]],[22,1,1,6,7,[[711,1,1,6,7]]],[25,3,3,7,10,[[821,3,3,7,10]]]],[3567,4139,6792,13315,14724,15675,18287,20908,20911,20919]]],["despiseth",[3,3,[[17,1,1,0,1,[[471,1,1,0,1]]],[19,1,1,1,2,[[642,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]]],[13741,16839,18294]]],["disdained",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13558]]],["loathe",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13024]]],["loathsome",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13013]]],["off",[2,2,[[23,2,2,0,2,[[775,1,1,0,1],[777,1,1,1,2]]]],[19728,19799]]],["person",[1,1,[[18,1,1,0,1,[[492,1,1,0,1]]]],[14091]]],["refuse",[3,3,[[17,1,1,0,1,[[469,1,1,0,1]]],[22,2,2,1,3,[[685,2,2,1,3]]]],[13716,17797,17798]]],["refused",[5,5,[[8,1,1,0,1,[[251,1,1,0,1]]],[18,2,2,1,3,[[555,1,1,1,2],[595,1,1,2,3]]],[22,1,1,3,4,[[732,1,1,3,4]]],[25,1,1,4,5,[[806,1,1,4,5]]]],[7602,15180,15891,18729,20552]]],["reject",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22139]]],["rejected",[12,11,[[8,5,4,0,4,[[243,2,1,0,1],[250,2,2,1,3],[251,1,1,3,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[23,5,5,5,10,[[746,1,1,5,6],[750,2,2,6,8],[751,1,1,8,9],[752,1,1,9,10]]],[27,1,1,10,11,[[865,1,1,10,11]]]],[7376,7583,7586,7596,10003,19002,19108,19119,19148,19162,22139]]]]},{"k":"H3989","v":[["baken",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2766]]]]},{"k":"H3990","v":[["darkness",[1,1,[[5,1,1,0,1,[[210,1,1,0,1]]]],[6483]]]]},{"k":"H3991","v":[["darkness",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18996]]]]},{"k":"H3992","v":[["*",[4,4,[[2,3,3,0,3,[[102,2,2,0,2],[103,1,1,2,3]]],[25,1,1,3,4,[[829,1,1,3,4]]]],[3103,3104,3155,21181]]],["fretting",[3,3,[[2,3,3,0,3,[[102,2,2,0,2],[103,1,1,2,3]]]],[3103,3104,3155]]],["pricking",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21181]]]]},{"k":"H3993","v":[["*",[5,4,[[5,1,1,0,1,[[194,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[13,2,1,2,3,[[379,2,1,2,3]]],[18,1,1,3,4,[[487,1,1,3,4]]]],[6011,6789,11466,14049]]],["ambush",[1,1,[[5,1,1,0,1,[[194,1,1,0,1]]]],[6011]]],["ambushment",[2,1,[[13,2,1,0,1,[[379,2,1,0,1]]]],[11466]]],["places",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14049]]],["wait",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6789]]]]},{"k":"H3994","v":[["*",[5,5,[[4,1,1,0,1,[[180,1,1,0,1]]],[19,2,2,1,3,[[630,1,1,1,2],[655,1,1,2,3]]],[38,2,2,3,5,[[926,1,1,3,4],[927,1,1,4,5]]]],[5631,16488,17223,23105,23129]]],["+",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5631]]],["curse",[4,4,[[19,2,2,0,2,[[630,1,1,0,1],[655,1,1,1,2]]],[38,2,2,2,4,[[926,1,1,2,3],[927,1,1,3,4]]]],[16488,17223,23105,23129]]]]},{"k":"H3995","v":[["separate",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6274]]]]},{"k":"H3996","v":[["*",[23,23,[[4,1,1,0,1,[[163,1,1,0,1]]],[5,2,2,1,3,[[187,1,1,1,2],[209,1,1,2,3]]],[6,2,2,3,5,[[211,2,2,3,5]]],[11,2,2,5,7,[[323,1,1,5,6],[328,1,1,6,7]]],[12,2,2,7,9,[[341,1,1,7,8],[346,1,1,8,9]]],[13,2,2,9,11,[[389,2,2,9,11]]],[18,3,3,11,14,[[527,1,1,11,12],[581,1,1,12,13],[590,1,1,13,14]]],[19,1,1,14,15,[[635,1,1,14,15]]],[23,1,1,15,16,[[782,1,1,15,16]]],[25,5,5,16,21,[[827,1,1,16,17],[834,1,1,17,18],[843,1,1,18,19],[845,1,1,19,20],[847,1,1,20,21]]],[37,1,1,21,22,[[918,1,1,21,22]]],[38,1,1,22,23,[[925,1,1,22,23]]]],[5238,5855,6464,6533,6534,9845,9981,10424,10634,11669,11671,14669,15590,15816,16605,19909,21110,21311,21561,21604,21674,22983,23100]]],["+",[2,2,[[5,1,1,0,1,[[209,1,1,0,1]]],[37,1,1,1,2,[[918,1,1,1,2]]]],[6464,22983]]],["came",[1,1,[[11,1,1,0,1,[[323,1,1,0,1]]]],[9845]]],["cometh",[1,1,[[25,1,1,0,1,[[834,1,1,0,1]]]],[21311]]],["coming",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16605]]],["down",[6,6,[[4,1,1,0,1,[[163,1,1,0,1]]],[5,1,1,1,2,[[187,1,1,1,2]]],[18,3,3,2,5,[[527,1,1,2,3],[581,1,1,3,4],[590,1,1,4,5]]],[38,1,1,5,6,[[925,1,1,5,6]]]],[5238,5855,14669,15590,15816,23100]]],["entering",[1,1,[[13,1,1,0,1,[[389,1,1,0,1]]]],[11671]]],["entrance",[3,3,[[6,2,2,0,2,[[211,2,2,0,2]]],[12,1,1,2,3,[[341,1,1,2,3]]]],[6533,6534,10424]]],["entry",[5,5,[[11,1,1,0,1,[[328,1,1,0,1]]],[12,1,1,1,2,[[346,1,1,1,2]]],[23,1,1,2,3,[[782,1,1,2,3]]],[25,2,2,3,5,[[843,1,1,3,4],[847,1,1,4,5]]]],[9981,10634,19909,21561,21674]]],["in",[2,2,[[13,1,1,0,1,[[389,1,1,0,1]]],[25,1,1,1,2,[[845,1,1,1,2]]]],[11669,21604]]],["into",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21110]]]]},{"k":"H3997","v":[["entry",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21124]]]]},{"k":"H3998","v":[["perplexity",[2,2,[[22,1,1,0,1,[[700,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]]],[18057,22668]]]]},{"k":"H3999","v":[["flood",[13,12,[[0,12,11,0,11,[[5,1,1,0,1],[6,4,4,1,5],[8,4,3,5,8],[9,2,2,8,10],[10,1,1,10,11]]],[18,1,1,11,12,[[506,1,1,11,12]]]],[154,165,166,169,176,216,220,233,235,266,276,14318]]]]},{"k":"H4000","v":[["taught",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11969]]]]},{"k":"H4001","v":[["*",[3,3,[[22,3,3,0,3,[[696,2,2,0,2],[700,1,1,2,3]]]],[17999,18004,18057]]],["down",[2,2,[[22,2,2,0,2,[[696,1,1,0,1],[700,1,1,1,2]]]],[17999,18057]]],["foot",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18004]]]]},{"k":"H4002","v":[["*",[3,3,[[20,1,1,0,1,[[670,1,1,0,1]]],[22,2,2,1,3,[[713,1,1,1,2],[727,1,1,2,3]]]],[17529,18327,18646]]],["fountain",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17529]]],["springs",[2,2,[[22,2,2,0,2,[[713,1,1,0,1],[727,1,1,1,2]]]],[18327,18646]]]]},{"k":"H4003","v":[["void",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22709]]]]},{"k":"H4004","v":[["choice",[2,2,[[11,2,2,0,2,[[315,1,1,0,1],[331,1,1,1,2]]]],[9595,10084]]]]},{"k":"H4005","v":[["*",[11,11,[[0,1,1,0,1,[[22,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[4,1,1,2,3,[[164,1,1,2,3]]],[22,1,1,3,4,[[715,1,1,3,4]]],[23,2,2,4,6,[[766,1,1,4,5],[792,1,1,5,6]]],[25,4,4,6,10,[[824,1,1,6,7],[825,2,2,7,9],[832,1,1,9,10]]],[26,1,1,10,11,[[860,1,1,10,11]]]],[577,1924,5251,18376,19461,20095,21014,21060,21061,21246,22051]]],["choice",[7,7,[[0,1,1,0,1,[[22,1,1,0,1]]],[4,1,1,1,2,[[164,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]],[23,1,1,3,4,[[766,1,1,3,4]]],[25,3,3,4,7,[[825,2,2,4,6],[832,1,1,6,7]]]],[577,5251,18376,19461,21060,21061,21246]]],["chosen",[4,4,[[1,1,1,0,1,[[64,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]],[25,1,1,2,3,[[824,1,1,2,3]]],[26,1,1,3,4,[[860,1,1,3,4]]]],[1924,20095,21014,22051]]]]},{"k":"H4006","v":[["Mibhar",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10711]]]]},{"k":"H4007","v":[["expectation",[3,3,[[22,2,2,0,2,[[698,2,2,0,2]]],[37,1,1,2,3,[[919,1,1,2,3]]]],[18034,18035,23004]]]]},{"k":"H4008","v":[["uttered",[2,2,[[3,2,2,0,2,[[146,2,2,0,2]]]],[4654,4656]]]]},{"k":"H4009","v":[["*",[15,15,[[17,3,3,0,3,[[443,1,1,0,1],[453,1,1,1,2],[466,1,1,2,3]]],[18,3,3,3,6,[[517,1,1,3,4],[542,1,1,4,5],[548,1,1,5,6]]],[19,4,4,6,10,[[641,1,1,6,7],[648,1,1,7,8],[649,1,1,8,9],[652,1,1,9,10]]],[22,1,1,10,11,[[710,1,1,10,11]]],[23,3,3,11,14,[[746,1,1,11,12],[761,1,1,12,13],[792,1,1,13,14]]],[25,1,1,14,15,[[830,1,1,14,15]]]],[13043,13290,13612,14529,14865,14981,16798,17006,17034,17132,18277,19002,19364,20093,21199]]],["Confidence",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17132]]],["confidence",[7,7,[[17,2,2,0,2,[[453,1,1,0,1],[466,1,1,1,2]]],[18,1,1,2,3,[[542,1,1,2,3]]],[19,2,2,3,5,[[641,1,1,3,4],[648,1,1,4,5]]],[23,1,1,5,6,[[792,1,1,5,6]]],[25,1,1,6,7,[[830,1,1,6,7]]]],[13290,13612,14865,16798,17006,20093,21199]]],["confidences",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[19002]]],["hope",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19364]]],["sure",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18277]]],["trust",[4,4,[[17,1,1,0,1,[[443,1,1,0,1]]],[18,2,2,1,3,[[517,1,1,1,2],[548,1,1,2,3]]],[19,1,1,3,4,[[649,1,1,3,4]]]],[13043,14529,14981,17034]]]]},{"k":"H4010","v":[["comfort",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19171]]]]},{"k":"H4011","v":[["frame",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21479]]]]},{"k":"H4012","v":[["Mebunnai",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8680]]]]},{"k":"H4013","v":[["*",[37,37,[[3,3,3,0,3,[[129,1,1,0,1],[148,2,2,1,3]]],[5,3,3,3,6,[[196,1,1,3,4],[205,2,2,4,6]]],[8,1,1,6,7,[[241,1,1,6,7]]],[9,1,1,7,8,[[290,1,1,7,8]]],[11,5,5,8,13,[[315,1,1,8,9],[320,1,1,9,10],[322,1,1,10,11],[329,1,1,11,12],[330,1,1,12,13]]],[13,1,1,13,14,[[383,1,1,13,14]]],[18,2,2,14,16,[[566,1,1,14,15],[585,1,1,15,16]]],[22,3,3,16,19,[[695,1,1,16,17],[703,1,1,17,18],[712,1,1,18,19]]],[23,7,7,19,26,[[745,1,1,19,20],[748,1,1,20,21],[749,1,1,21,22],[750,1,1,22,23],[752,1,1,23,24],[778,1,1,24,25],[792,1,1,25,26]]],[24,2,2,26,28,[[798,2,2,26,28]]],[26,3,3,28,31,[[860,3,3,28,31]]],[27,1,1,31,32,[[871,1,1,31,32]]],[29,1,1,32,33,[[883,1,1,32,33]]],[32,1,1,33,34,[[897,1,1,33,34]]],[33,2,2,34,36,[[902,2,2,34,36]]],[34,1,1,36,37,[[903,1,1,36,37]]]],[4094,4735,4754,6084,6350,6356,7349,8699,9595,9739,9795,9992,10032,11542,15366,15752,17986,18130,18316,18964,19032,19075,19116,19167,19808,20098,20334,20337,22051,22060,22075,22239,22432,22644,22724,22726,22741]]],["+",[2,2,[[8,1,1,0,1,[[241,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[7349,22075]]],["defenced",[4,4,[[23,4,4,0,4,[[745,1,1,0,1],[748,1,1,1,2],[752,1,1,2,3],[778,1,1,3,4]]]],[18964,19032,19167,19808]]],["fenced",[11,11,[[3,2,2,0,2,[[148,2,2,0,2]]],[5,2,2,2,4,[[196,1,1,2,3],[205,1,1,3,4]]],[11,4,4,4,8,[[315,1,1,4,5],[322,1,1,5,6],[329,1,1,6,7],[330,1,1,7,8]]],[13,1,1,8,9,[[383,1,1,8,9]]],[23,1,1,9,10,[[749,1,1,9,10]]],[26,1,1,10,11,[[860,1,1,10,11]]]],[4735,4754,6084,6356,9595,9795,9992,10032,11542,19075,22051]]],["fortress",[4,4,[[22,2,2,0,2,[[695,1,1,0,1],[703,1,1,1,2]]],[23,1,1,2,3,[[750,1,1,2,3]]],[29,1,1,3,4,[[883,1,1,3,4]]]],[17986,18130,19116,22432]]],["fortresses",[2,2,[[22,1,1,0,1,[[712,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]]],[18316,22239]]],["hold",[2,2,[[9,1,1,0,1,[[290,1,1,0,1]]],[34,1,1,1,2,[[903,1,1,1,2]]]],[8699,22741]]],["holds",[10,10,[[3,1,1,0,1,[[129,1,1,0,1]]],[11,1,1,1,2,[[320,1,1,1,2]]],[18,1,1,2,3,[[566,1,1,2,3]]],[23,1,1,3,4,[[792,1,1,3,4]]],[24,2,2,4,6,[[798,2,2,4,6]]],[26,1,1,6,7,[[860,1,1,6,7]]],[32,1,1,7,8,[[897,1,1,7,8]]],[33,2,2,8,10,[[902,2,2,8,10]]]],[4094,9739,15366,20098,20334,20337,22060,22644,22724,22726]]],["strong",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[18,1,1,1,2,[[585,1,1,1,2]]]],[6350,15752]]]]},{"k":"H4014","v":[["Mibzar",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1082,10305]]]]},{"k":"H4015","v":[["fugitives",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20846]]]]},{"k":"H4016","v":[["secrets",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5558]]]]},{"k":"H4017","v":[["Mibsam",[3,3,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,2,2,1,3,[[338,1,1,1,2],[341,1,1,2,3]]]],[671,10281,10410]]]]},{"k":"H4018","v":[["places",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21678]]]]},{"k":"H4019","v":[["Magbish",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12057]]]]},{"k":"H4020","v":[["ends",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2307]]]]},{"k":"H4021","v":[["bonnets",[4,4,[[1,3,3,0,3,[[77,1,1,0,1],[78,1,1,1,2],[88,1,1,2,3]]],[2,1,1,3,4,[[97,1,1,3,4]]]],[2333,2345,2692,2930]]]]},{"k":"H4022","v":[["*",[8,7,[[4,5,4,0,4,[[185,5,4,0,4]]],[21,3,3,4,7,[[674,2,2,4,6],[677,1,1,6,7]]]],[5823,5824,5825,5826,17595,17598,17640]]],["+",[5,4,[[4,5,4,0,4,[[185,5,4,0,4]]]],[5823,5824,5825,5826]]],["pleasant",[3,3,[[21,3,3,0,3,[[674,2,2,0,2],[677,1,1,2,3]]]],[17595,17598,17640]]]]},{"k":"H4023","v":[["*",[12,12,[[5,2,2,0,2,[[198,1,1,0,1],[203,1,1,1,2]]],[6,2,2,2,4,[[211,1,1,2,3],[215,1,1,3,4]]],[10,2,2,4,6,[[294,1,1,4,5],[299,1,1,5,6]]],[11,3,3,6,9,[[321,1,1,6,7],[335,2,2,7,9]]],[12,1,1,9,10,[[344,1,1,9,10]]],[13,1,1,10,11,[[401,1,1,10,11]]],[37,1,1,11,12,[[922,1,1,11,12]]]],[6151,6286,6536,6642,8856,9066,9783,10194,10195,10564,11988,23056]]],["+",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10195]]],["Megiddo",[10,10,[[5,2,2,0,2,[[198,1,1,0,1],[203,1,1,1,2]]],[6,2,2,2,4,[[211,1,1,2,3],[215,1,1,3,4]]],[10,2,2,4,6,[[294,1,1,4,5],[299,1,1,5,6]]],[11,2,2,6,8,[[321,1,1,6,7],[335,1,1,7,8]]],[12,1,1,8,9,[[344,1,1,8,9]]],[13,1,1,9,10,[[401,1,1,9,10]]]],[6151,6286,6536,6642,8856,9066,9783,10194,10564,11988]]],["Megiddon",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23056]]]]},{"k":"H4024","v":[["*",[7,7,[[1,1,1,0,1,[[63,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[23,2,2,3,5,[[788,1,1,3,4],[790,1,1,4,5]]],[25,2,2,5,7,[[830,1,1,5,6],[831,1,1,6,7]]]],[1891,4767,8653,20011,20059,21193,21210]]],["+",[2,2,[[25,2,2,0,2,[[830,1,1,0,1],[831,1,1,1,2]]]],[21193,21210]]],["Migdol",[4,4,[[1,1,1,0,1,[[63,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]],[23,2,2,2,4,[[788,1,1,2,3],[790,1,1,3,4]]]],[1891,4767,20011,20059]]],["tower",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8653]]]]},{"k":"H4025","v":[["Magdiel",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1083,10306]]]]},{"k":"H4026","v":[["*",[50,45,[[0,3,3,0,3,[[10,2,2,0,2],[34,1,1,2,3]]],[6,9,7,3,10,[[218,2,2,3,5],[219,7,5,5,10]]],[11,3,3,10,13,[[321,1,1,10,11],[329,1,1,11,12],[330,1,1,12,13]]],[12,1,1,13,14,[[364,1,1,13,14]]],[13,6,6,14,20,[[380,1,1,14,15],[392,3,3,15,18],[393,1,1,18,19],[398,1,1,19,20]]],[15,10,8,20,28,[[415,6,5,20,25],[420,1,1,25,26],[424,3,2,26,28]]],[18,2,2,28,30,[[525,1,1,28,29],[538,1,1,29,30]]],[19,1,1,30,31,[[645,1,1,30,31]]],[21,5,4,31,35,[[674,1,1,31,32],[675,1,1,32,33],[677,2,1,33,34],[678,1,1,34,35]]],[22,4,4,35,39,[[680,1,1,35,36],[683,1,1,36,37],[708,1,1,37,38],[711,1,1,38,39]]],[23,1,1,39,40,[[775,1,1,39,40]]],[25,3,3,40,43,[[827,2,2,40,42],[828,1,1,42,43]]],[32,1,1,43,44,[[896,1,1,43,44]]],[37,1,1,44,45,[[924,1,1,44,45]]]],[270,271,1032,6728,6736,6800,6801,6803,6805,6806,9773,9992,10032,11134,11482,11741,11742,11747,11759,11880,12328,12338,12352,12353,12354,12497,12662,12663,14646,14822,16911,17586,17611,17631,17650,17700,17741,18242,18297,19729,21104,21109,21132,22628,23078]]],["+",[3,3,[[11,2,2,0,2,[[329,1,1,0,1],[330,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]]],[9992,10032,19729]]],["castles",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11134]]],["flowers",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17611]]],["pulpit",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12497]]],["tower",[31,26,[[0,3,3,0,3,[[10,2,2,0,2],[34,1,1,2,3]]],[6,9,7,3,10,[[218,2,2,3,5],[219,7,5,5,10]]],[11,1,1,10,11,[[321,1,1,10,11]]],[15,9,7,11,18,[[415,6,5,11,16],[424,3,2,16,18]]],[18,1,1,18,19,[[538,1,1,18,19]]],[19,1,1,19,20,[[645,1,1,19,20]]],[21,3,2,20,22,[[674,1,1,20,21],[677,2,1,21,22]]],[22,2,2,22,24,[[680,1,1,22,23],[683,1,1,23,24]]],[32,1,1,24,25,[[896,1,1,24,25]]],[37,1,1,25,26,[[924,1,1,25,26]]]],[270,271,1032,6728,6736,6800,6801,6803,6805,6806,9773,12328,12338,12352,12353,12354,12662,12663,14822,16911,17586,17631,17700,17741,22628,23078]]],["towers",[13,13,[[13,6,6,0,6,[[380,1,1,0,1],[392,3,3,1,4],[393,1,1,4,5],[398,1,1,5,6]]],[18,1,1,6,7,[[525,1,1,6,7]]],[21,1,1,7,8,[[678,1,1,7,8]]],[22,2,2,8,10,[[708,1,1,8,9],[711,1,1,9,10]]],[25,3,3,10,13,[[827,2,2,10,12],[828,1,1,12,13]]]],[11482,11741,11742,11747,11759,11880,14646,17650,18242,18297,21104,21109,21132]]]]},{"k":"H4027","v":[["Migdalel",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6359]]]]},{"k":"H4028","v":[["Migdalgad",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6239]]]]},{"k":"H4029","v":[["Edar",[1,1,[[0,1,1,0,1,[[34,1,1,0,1]]]],[1032]]]]},{"k":"H4030","v":[["*",[4,4,[[0,1,1,0,1,[[23,1,1,0,1]]],[13,2,2,1,3,[[387,1,1,1,2],[398,1,1,2,3]]],[14,1,1,3,4,[[403,1,1,3,4]]]],[644,11627,11898,12022]]],["presents",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11898]]],["things",[3,3,[[0,1,1,0,1,[[23,1,1,0,1]]],[13,1,1,1,2,[[387,1,1,1,2]]],[14,1,1,2,3,[[403,1,1,2,3]]]],[644,11627,12022]]]]},{"k":"H4031","v":[["Magog",[4,4,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[25,2,2,2,4,[[839,1,1,2,3],[840,1,1,3,4]]]],[236,10257,21427,21454]]]]},{"k":"H4032","v":[["*",[8,8,[[18,1,1,0,1,[[508,1,1,0,1]]],[22,1,1,1,2,[[709,1,1,1,2]]],[23,5,5,2,7,[[750,1,1,2,3],[764,2,2,3,5],[790,1,1,5,6],[793,1,1,6,7]]],[24,1,1,7,8,[[798,1,1,7,8]]]],[14344,18259,19114,19426,19432,20050,20156,20354]]],["+",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18259]]],["Fear",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20156]]],["fear",[4,4,[[18,1,1,0,1,[[508,1,1,0,1]]],[23,3,3,1,4,[[750,1,1,1,2],[764,1,1,2,3],[790,1,1,3,4]]]],[14344,19114,19432,20050]]],["terror",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19426]]],["terrors",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20354]]]]},{"k":"H4033","v":[["*",[11,10,[[0,6,5,0,5,[[16,1,1,0,1],[27,1,1,1,2],[35,1,1,2,3],[36,1,1,3,4],[46,2,1,4,5]]],[1,1,1,5,6,[[55,1,1,5,6]]],[17,1,1,6,7,[[453,1,1,6,7]]],[18,2,2,7,9,[[532,1,1,7,8],[596,1,1,8,9]]],[25,1,1,9,10,[[821,1,1,9,10]]]],[405,777,1047,1084,1429,1659,13295,14747,15952,20933]]],["+",[1,1,[[0,1,1,0,1,[[16,1,1,0,1]]]],[405]]],["dwellings",[2,2,[[17,1,1,0,1,[[453,1,1,0,1]]],[18,1,1,1,2,[[532,1,1,1,2]]]],[13295,14747]]],["pilgrimage",[4,3,[[0,2,1,0,1,[[46,2,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]]],[1429,1659,15952]]],["sojourn",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20933]]],["stranger",[2,2,[[0,2,2,0,2,[[27,1,1,0,1],[36,1,1,1,2]]]],[777,1084]]],["strangers",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1047]]]]},{"k":"H4034","v":[["fear",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16680]]]]},{"k":"H4035","v":[["*",[3,3,[[18,1,1,0,1,[[511,1,1,0,1]]],[22,1,1,1,2,[[744,1,1,1,2]]],[36,1,1,2,3,[[910,1,1,2,3]]]],[14392,18926,22874]]],["barn",[1,1,[[36,1,1,0,1,[[910,1,1,0,1]]]],[22874]]],["fears",[2,2,[[18,1,1,0,1,[[511,1,1,0,1]]],[22,1,1,1,2,[[744,1,1,1,2]]]],[14392,18926]]]]},{"k":"H4036","v":[["Magormissabib",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19425]]]]},{"k":"H4037","v":[["axes",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8317]]]]},{"k":"H4038","v":[["sickle",[2,2,[[23,1,1,0,1,[[794,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]]],[20182,22356]]]]},{"k":"H4039","v":[["*",[21,19,[[18,1,1,0,1,[[517,1,1,0,1]]],[23,14,12,1,13,[[780,14,12,1,13]]],[25,4,4,13,17,[[803,1,1,13,14],[804,3,3,14,17]]],[37,2,2,17,19,[[915,2,2,17,19]]]],[14532,19844,19846,19848,19856,19862,19863,19865,19867,19869,19870,19871,19874,20501,20503,20504,20505,22937,22938]]],["roll",[20,18,[[23,14,12,0,12,[[780,14,12,0,12]]],[25,4,4,12,16,[[803,1,1,12,13],[804,3,3,13,16]]],[37,2,2,16,18,[[915,2,2,16,18]]]],[19844,19846,19848,19856,19862,19863,19865,19867,19869,19870,19871,19874,20501,20503,20504,20505,22937,22938]]],["volume",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14532]]]]},{"k":"H4040","v":[["roll",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12153]]]]},{"k":"H4041","v":[["up",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22740]]]]},{"k":"H4042","v":[["*",[3,3,[[0,1,1,0,1,[[13,1,1,0,1]]],[19,1,1,1,2,[[631,1,1,1,2]]],[27,1,1,2,3,[[872,1,1,2,3]]]],[356,16499,22248]]],["deliver",[2,2,[[19,1,1,0,1,[[631,1,1,0,1]]],[27,1,1,1,2,[[872,1,1,1,2]]]],[16499,22248]]],["delivered",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[356]]]]},{"k":"H4043","v":[["*",[63,60,[[0,1,1,0,1,[[14,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[9,5,4,3,7,[[267,2,1,3,4],[288,3,3,4,7]]],[10,4,3,7,10,[[300,2,1,7,8],[304,2,2,8,10]]],[11,1,1,10,11,[[331,1,1,10,11]]],[12,1,1,11,12,[[342,1,1,11,12]]],[13,10,9,12,21,[[375,2,1,12,13],[378,2,2,13,15],[380,1,1,15,16],[383,1,1,16,17],[389,1,1,17,18],[392,1,1,18,19],[398,2,2,19,21]]],[15,1,1,21,22,[[416,1,1,21,22]]],[17,2,2,22,24,[[450,1,1,22,23],[476,1,1,23,24]]],[18,19,19,24,43,[[480,1,1,24,25],[484,1,1,25,26],[495,3,3,26,29],[505,1,1,29,30],[510,1,1,30,31],[512,1,1,31,32],[524,1,1,32,33],[536,1,1,33,34],[553,1,1,34,35],[561,2,2,35,37],[566,1,1,37,38],[592,3,3,38,41],[596,1,1,41,42],[621,1,1,42,43]]],[19,4,4,43,47,[[629,1,1,43,44],[633,1,1,44,45],[651,1,1,45,46],[657,1,1,46,47]]],[21,1,1,47,48,[[674,1,1,47,48]]],[22,3,3,48,51,[[699,1,1,48,49],[700,1,1,49,50],[715,1,1,50,51]]],[23,2,2,51,53,[[790,2,2,51,53]]],[25,5,5,53,58,[[824,1,1,53,54],[828,1,1,54,55],[839,2,2,55,57],[840,1,1,57,58]]],[27,1,1,58,59,[[865,1,1,58,59]]],[33,1,1,59,60,[[901,1,1,59,60]]]],[361,5839,6631,8043,8605,8633,8638,9096,9244,9245,10093,10446,11380,11446,11447,11483,11540,11665,11746,11880,11902,12375,13229,13903,13960,14005,14120,14148,14153,14306,14386,14412,14634,14801,15084,15268,15270,15344,15839,15840,15841,16012,16307,16440,16551,17113,17256,17586,18040,18058,18385,20048,20054,21031,21131,21429,21430,21457,22151,22702]]],["+",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13903]]],["armed",[2,2,[[19,2,2,0,2,[[633,1,1,0,1],[651,1,1,1,2]]]],[16551,17113]]],["buckler",[6,6,[[9,1,1,0,1,[[288,1,1,0,1]]],[12,1,1,1,2,[[342,1,1,1,2]]],[18,2,2,2,4,[[495,2,2,2,4]]],[19,1,1,4,5,[[629,1,1,4,5]]],[23,1,1,5,6,[[790,1,1,5,6]]]],[8633,10446,14120,14148,16440,20048]]],["bucklers",[3,3,[[13,1,1,0,1,[[389,1,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]],[21,1,1,2,3,[[674,1,1,2,3]]]],[11665,13229,17586]]],["defence",[2,2,[[18,2,2,0,2,[[484,1,1,0,1],[566,1,1,1,2]]]],[14005,15344]]],["rulers",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22151]]],["shield",[33,32,[[0,1,1,0,1,[[14,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[9,4,3,3,6,[[267,2,1,3,4],[288,2,2,4,6]]],[10,1,1,6,7,[[300,1,1,6,7]]],[11,1,1,7,8,[[331,1,1,7,8]]],[13,2,2,8,10,[[375,1,1,8,9],[383,1,1,9,10]]],[18,14,14,10,24,[[480,1,1,10,11],[495,1,1,11,12],[505,1,1,12,13],[510,1,1,13,14],[512,1,1,14,15],[536,1,1,15,16],[553,1,1,16,17],[561,2,2,17,19],[592,3,3,19,22],[596,1,1,22,23],[621,1,1,23,24]]],[19,1,1,24,25,[[657,1,1,24,25]]],[22,2,2,25,27,[[699,1,1,25,26],[700,1,1,26,27]]],[23,1,1,27,28,[[790,1,1,27,28]]],[25,3,3,28,31,[[824,1,1,28,29],[828,1,1,29,30],[839,1,1,30,31]]],[33,1,1,31,32,[[901,1,1,31,32]]]],[361,5839,6631,8043,8605,8638,9096,10093,11380,11540,13960,14153,14306,14386,14412,14801,15084,15268,15270,15839,15840,15841,16012,16307,17256,18040,18058,20054,21031,21131,21430,22702]]],["shields",[15,15,[[10,3,3,0,3,[[300,1,1,0,1],[304,2,2,1,3]]],[13,7,7,3,10,[[375,1,1,3,4],[378,2,2,4,6],[380,1,1,6,7],[392,1,1,7,8],[398,2,2,8,10]]],[15,1,1,10,11,[[416,1,1,10,11]]],[18,1,1,11,12,[[524,1,1,11,12]]],[22,1,1,12,13,[[715,1,1,12,13]]],[25,2,2,13,15,[[839,1,1,13,14],[840,1,1,14,15]]]],[9096,9244,9245,11380,11446,11447,11483,11746,11880,11902,12375,14634,18385,21429,21457]]]]},{"k":"H4044","v":[["sorrow",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20419]]]]},{"k":"H4045","v":[["rebuke",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5631]]]]},{"k":"H4046","v":[["*",[26,25,[[1,1,1,0,1,[[58,1,1,0,1]]],[3,9,9,1,10,[[130,1,1,1,2],[132,3,3,2,5],[141,3,3,5,8],[142,1,1,8,9],[147,1,1,9,10]]],[8,2,2,10,12,[[239,1,1,10,11],[241,1,1,11,12]]],[9,4,4,12,16,[[283,1,1,12,13],[284,1,1,13,14],[290,2,2,14,16]]],[12,2,2,16,18,[[358,2,2,16,18]]],[13,1,1,18,19,[[387,1,1,18,19]]],[18,2,2,19,21,[[583,2,2,19,21]]],[25,1,1,21,22,[[825,1,1,21,22]]],[37,4,3,22,25,[[924,4,3,22,25]]]],[1756,4145,4242,4243,4244,4479,4480,4489,4490,4680,7314,7335,8458,8485,8713,8717,10951,10956,11638,15680,15681,21072,23080,23083,23086]]],["plague",[20,19,[[3,9,9,0,9,[[130,1,1,0,1],[132,3,3,1,4],[141,3,3,4,7],[142,1,1,7,8],[147,1,1,8,9]]],[8,1,1,9,10,[[241,1,1,9,10]]],[9,2,2,10,12,[[290,2,2,10,12]]],[12,1,1,12,13,[[358,1,1,12,13]]],[13,1,1,13,14,[[387,1,1,13,14]]],[18,2,2,14,16,[[583,2,2,14,16]]],[37,4,3,16,19,[[924,4,3,16,19]]]],[4145,4242,4243,4244,4479,4480,4489,4490,4680,7335,8713,8717,10956,11638,15680,15681,23080,23083,23086]]],["plagued",[1,1,[[12,1,1,0,1,[[358,1,1,0,1]]]],[10951]]],["plagues",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1756]]],["slaughter",[3,3,[[8,1,1,0,1,[[239,1,1,0,1]]],[9,2,2,1,3,[[283,1,1,1,2],[284,1,1,2,3]]]],[7314,8458,8485]]],["stroke",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21072]]]]},{"k":"H4047","v":[["Magpiash",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12569]]]]},{"k":"H4048","v":[["*",[2,2,[[18,1,1,0,1,[[566,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[15370,20956]]],["cast",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15370]]],["terrors",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20956]]]]},{"k":"H4049","v":[["destroy",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12163]]]]},{"k":"H4050","v":[["*",[4,3,[[9,1,1,0,1,[[278,1,1,0,1]]],[10,1,1,1,2,[[297,1,1,1,2]]],[12,2,1,2,3,[[357,2,1,2,3]]]],[8317,8943,10929]]],["axes",[1,1,[[12,1,1,0,1,[[357,1,1,0,1]]]],[10929]]],["saws",[3,3,[[9,1,1,0,1,[[278,1,1,0,1]]],[10,1,1,1,2,[[297,1,1,1,2]]],[12,1,1,2,3,[[357,1,1,2,3]]]],[8317,8943,10929]]]]},{"k":"H4051","v":[["Migron",[2,2,[[8,1,1,0,1,[[249,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[7510,17878]]]]},{"k":"H4052","v":[["rests",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8902]]]]},{"k":"H4053","v":[["clods",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22308]]]]},{"k":"H4054","v":[["*",[114,68,[[2,1,1,0,1,[[114,1,1,0,1]]],[3,5,5,1,6,[[151,5,5,1,6]]],[5,58,33,6,39,[[200,1,1,6,7],[207,57,32,7,39]]],[12,44,23,39,62,[[342,1,1,39,40],[343,42,21,40,61],[350,1,1,61,62]]],[13,2,2,62,64,[[377,1,1,62,63],[397,1,1,63,64]]],[25,4,4,64,68,[[828,1,1,64,65],[846,1,1,65,66],[849,2,2,66,68]]]],[3503,4847,4848,4849,4850,4852,6191,6383,6384,6389,6392,6394,6395,6396,6397,6398,6399,6400,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6422,6423,10444,10509,10511,10512,10513,10514,10518,10521,10522,10523,10524,10525,10526,10527,10528,10529,10530,10531,10532,10533,10534,10535,10762,11428,11873,21149,21632,21717,21719]]],["+",[10,10,[[5,7,7,0,7,[[207,7,7,0,7]]],[12,3,3,7,10,[[343,3,3,7,10]]]],[6398,6404,6405,6409,6411,6416,6420,10512,10526,10531]]],["suburbs",[104,68,[[2,1,1,0,1,[[114,1,1,0,1]]],[3,5,5,1,6,[[151,5,5,1,6]]],[5,51,33,6,39,[[200,1,1,6,7],[207,50,32,7,39]]],[12,41,23,39,62,[[342,1,1,39,40],[343,39,21,40,61],[350,1,1,61,62]]],[13,2,2,62,64,[[377,1,1,62,63],[397,1,1,63,64]]],[25,4,4,64,68,[[828,1,1,64,65],[846,1,1,65,66],[849,2,2,66,68]]]],[3503,4847,4848,4849,4850,4852,6191,6383,6384,6389,6392,6394,6395,6396,6397,6398,6399,6400,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6422,6423,10444,10509,10511,10512,10513,10514,10518,10521,10522,10523,10524,10525,10526,10527,10528,10529,10530,10531,10532,10533,10534,10535,10762,11428,11873,21149,21632,21717,21719]]]]},{"k":"H4055","v":[["*",[13,13,[[2,1,1,0,1,[[95,1,1,0,1]]],[6,2,2,1,3,[[213,1,1,1,2],[215,1,1,2,3]]],[8,4,4,3,7,[[239,1,1,3,4],[252,2,2,4,6],[253,1,1,6,7]]],[9,2,2,7,9,[[286,1,1,7,8],[287,1,1,8,9]]],[17,1,1,9,10,[[446,1,1,9,10]]],[18,1,1,10,11,[[586,1,1,10,11]]],[22,1,1,11,12,[[700,1,1,11,12]]],[23,1,1,12,13,[[757,1,1,12,13]]]],[2859,6584,6633,7309,7656,7657,7680,8562,8600,13117,15773,18059,19291]]],["armour",[2,2,[[8,2,2,0,2,[[252,2,2,0,2]]]],[7656,7657]]],["choicest",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18059]]],["clothes",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7309]]],["garment",[3,3,[[2,1,1,0,1,[[95,1,1,0,1]]],[9,1,1,1,2,[[286,1,1,1,2]]],[18,1,1,2,3,[[586,1,1,2,3]]]],[2859,8562,15773]]],["garments",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7680]]],["judgment",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6633]]],["measure",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13117]]],["measures",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19291]]],["raiment",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6584]]],["stature",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8600]]]]},{"k":"H4056","v":[["altar",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12190]]]]},{"k":"H4057","v":[["*",[270,256,[[0,7,7,0,7,[[13,1,1,0,1],[15,1,1,1,2],[20,3,3,2,5],[35,1,1,5,6],[36,1,1,6,7]]],[1,27,25,7,32,[[52,2,2,7,9],[53,1,1,9,10],[54,2,2,10,12],[56,1,1,12,13],[57,2,2,13,15],[62,2,2,15,17],[63,3,3,17,20],[64,2,1,20,21],[65,6,6,21,27],[66,1,1,27,28],[67,1,1,28,29],[68,3,2,29,31],[72,1,1,31,32]]],[2,4,4,32,36,[[96,1,1,32,33],[105,3,3,33,36]]],[3,48,44,36,80,[[117,2,2,36,38],[119,2,2,38,40],[125,2,2,40,42],[126,3,2,42,44],[128,1,1,44,45],[129,3,3,45,48],[130,9,8,48,56],[131,1,1,56,57],[132,1,1,57,58],[136,2,2,58,60],[137,5,5,60,65],[140,1,1,65,66],[142,2,2,66,68],[143,3,2,68,70],[148,2,2,70,72],[149,8,7,72,79],[150,1,1,79,80]]],[4,19,19,80,99,[[153,4,4,80,84],[154,4,4,84,88],[156,1,1,88,89],[160,3,3,89,92],[161,2,2,92,94],[163,2,2,94,96],[181,1,1,96,97],[184,2,2,97,99]]],[5,15,15,99,114,[[187,1,1,99,100],[191,3,3,100,103],[194,3,3,103,106],[198,1,1,106,107],[200,1,1,107,108],[201,2,2,108,110],[202,1,1,110,111],[204,1,1,111,112],[206,1,1,112,113],[210,1,1,113,114]]],[6,9,9,114,123,[[211,1,1,114,115],[218,2,2,115,117],[221,3,3,117,120],[230,3,3,120,123]]],[8,18,14,123,137,[[239,1,1,123,124],[248,1,1,124,125],[252,1,1,125,126],[258,6,4,126,130],[259,1,1,130,131],[260,4,4,131,135],[261,4,2,135,137]]],[9,6,6,137,143,[[268,1,1,137,138],[281,2,2,138,140],[282,1,1,140,141],[283,2,2,141,143]]],[10,4,4,143,147,[[292,1,1,143,144],[299,1,1,144,145],[309,2,2,145,147]]],[11,1,1,147,148,[[315,1,1,147,148]]],[12,4,4,148,152,[[342,1,1,148,149],[343,1,1,149,150],[349,1,1,150,151],[358,1,1,151,152]]],[13,7,7,152,159,[[367,1,1,152,153],[374,1,1,153,154],[386,3,3,154,157],[390,1,1,157,158],[392,1,1,158,159]]],[15,2,2,159,161,[[421,2,2,159,161]]],[17,3,3,161,164,[[436,1,1,161,162],[459,1,1,162,163],[473,1,1,163,164]]],[18,18,17,164,181,[[506,2,1,164,165],[532,1,1,165,166],[542,1,1,166,167],[552,1,1,167,168],[555,4,4,168,172],[572,1,1,172,173],[579,1,1,173,174],[583,3,3,174,177],[584,3,3,177,180],[613,1,1,180,181]]],[19,1,1,181,182,[[648,1,1,181,182]]],[21,3,3,182,185,[[673,1,1,182,183],[674,1,1,183,184],[678,1,1,184,185]]],[22,21,19,185,204,[[692,1,1,185,186],[694,2,2,186,188],[699,2,1,188,189],[705,1,1,189,190],[710,2,2,190,192],[713,2,2,192,194],[718,1,1,194,195],[719,2,2,195,197],[720,1,1,197,198],[721,2,2,198,200],[728,1,1,200,201],[729,1,1,201,202],[741,1,1,202,203],[742,2,1,203,204]]],[23,21,21,204,225,[[746,4,4,204,208],[747,1,1,208,209],[748,2,2,209,211],[753,4,4,211,215],[756,2,2,215,217],[757,1,1,217,218],[761,1,1,218,219],[766,1,1,219,220],[767,1,1,220,221],[769,1,1,221,222],[775,1,1,222,223],[792,1,1,223,224],[794,1,1,224,225]]],[24,3,3,225,228,[[800,2,2,225,227],[801,1,1,227,228]]],[25,15,14,228,242,[[807,1,1,228,229],[820,1,1,229,230],[821,10,9,230,239],[824,1,1,239,240],[830,1,1,240,241],[835,1,1,241,242]]],[27,5,5,242,247,[[863,2,2,242,244],[870,1,1,244,245],[874,2,2,245,247]]],[28,5,5,247,252,[[876,2,2,247,249],[877,2,2,249,251],[878,1,1,251,252]]],[29,2,2,252,254,[[880,1,1,252,253],[883,1,1,253,254]]],[35,1,1,254,255,[[907,1,1,254,255]]],[38,1,1,255,256,[[925,1,1,255,256]]]],[342,388,527,533,534,1064,1105,1580,1597,1628,1633,1635,1701,1737,1738,1885,1887,1892,1900,1901,1942,1948,1949,1950,1957,1961,1979,1984,2004,2027,2028,2175,2917,3211,3222,3223,3605,3623,3696,3706,3966,3970,4000,4019,4075,4078,4096,4101,4110,4124,4130,4133,4137,4140,4141,4143,4185,4207,4312,4315,4345,4351,4353,4358,4363,4447,4553,4554,4557,4568,4731,4733,4766,4768,4771,4772,4775,4776,4796,4819,4893,4911,4923,4932,4939,4945,4946,4964,5047,5139,5152,5153,5164,5185,5213,5232,5684,5768,5809,5855,5938,5939,5940,6017,6022,6026,6138,6197,6203,6263,6266,6305,6380,6483,6525,6726,6735,6845,6847,6851,7096,7099,7101,7305,7503,7646,7824,7825,7834,7835,7840,7862,7865,7875,7882,7907,7908,8073,8412,8417,8428,8465,8478,8804,9069,9391,9402,9584,10437,10532,10728,10963,11197,11350,11603,11607,11611,11686,11742,12530,12532,12888,13441,13819,14316,14739,14872,15077,15128,15132,15153,15165,15462,15527,15660,15665,15677,15703,15732,15734,16212,17003,17577,17585,17645,17945,17970,17977,18036,18161,18274,18275,18321,18326,18423,18469,18470,18491,18524,18525,18664,18676,18879,18895,18967,18971,18989,18996,19004,19038,19053,19177,19185,19187,19201,19259,19261,19290,19363,19460,19494,19558,19693,20086,20178,20423,20439,20451,20577,20894,20905,20908,20910,20912,20913,20916,20918,20930,20931,21049,21188,21338,22108,22119,22218,22271,22281,22310,22311,22314,22333,22362,22389,22448,22818,23092]]],["+",[20,20,[[1,2,2,0,2,[[66,1,1,0,1],[72,1,1,1,2]]],[3,7,7,2,9,[[126,1,1,2,3],[129,2,2,3,5],[137,1,1,5,6],[149,2,2,6,8],[150,1,1,8,9]]],[4,1,1,9,10,[[154,1,1,9,10]]],[5,1,1,10,11,[[187,1,1,10,11]]],[6,1,1,11,12,[[211,1,1,11,12]]],[8,1,1,12,13,[[260,1,1,12,13]]],[15,1,1,13,14,[[421,1,1,13,14]]],[18,1,1,14,15,[[552,1,1,14,15]]],[19,1,1,15,16,[[648,1,1,15,16]]],[22,1,1,16,17,[[699,1,1,16,17]]],[25,2,2,17,19,[[807,1,1,17,18],[824,1,1,18,19]]],[27,1,1,19,20,[[874,1,1,19,20]]]],[1984,2175,4000,4078,4096,4358,4772,4776,4819,4964,5855,6525,7875,12530,15077,17003,18036,20577,21049,22281]]],["desert",[10,10,[[1,3,3,0,3,[[52,1,1,0,1],[54,1,1,1,2],[68,1,1,2,3]]],[3,2,2,3,5,[[136,1,1,3,4],[143,1,1,4,5]]],[4,1,1,5,6,[[184,1,1,5,6]]],[13,1,1,6,7,[[392,1,1,6,7]]],[17,1,1,7,8,[[459,1,1,7,8]]],[22,1,1,8,9,[[699,1,1,8,9]]],[23,1,1,9,10,[[769,1,1,9,10]]]],[1580,1635,2028,4312,4568,5768,11742,13441,18036,19558]]],["speech",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17585]]],["wilderness",[239,229,[[0,7,7,0,7,[[13,1,1,0,1],[15,1,1,1,2],[20,3,3,2,5],[35,1,1,5,6],[36,1,1,6,7]]],[1,22,21,7,28,[[52,1,1,7,8],[53,1,1,8,9],[54,1,1,9,10],[56,1,1,10,11],[57,2,2,11,13],[62,2,2,13,15],[63,3,3,15,18],[64,2,1,18,19],[65,6,6,19,25],[67,1,1,25,26],[68,2,2,26,28]]],[2,4,4,28,32,[[96,1,1,28,29],[105,3,3,29,32]]],[3,39,37,32,69,[[117,2,2,32,34],[119,2,2,34,36],[125,2,2,36,38],[126,2,2,38,40],[128,1,1,40,41],[129,1,1,41,42],[130,9,8,42,50],[131,1,1,50,51],[132,1,1,51,52],[136,1,1,52,53],[137,4,4,53,57],[140,1,1,57,58],[142,2,2,58,60],[143,2,2,60,62],[148,2,2,62,64],[149,6,5,64,69]]],[4,17,17,69,86,[[153,4,4,69,73],[154,3,3,73,76],[156,1,1,76,77],[160,3,3,77,80],[161,2,2,80,82],[163,2,2,82,84],[181,1,1,84,85],[184,1,1,85,86]]],[5,14,14,86,100,[[191,3,3,86,89],[194,3,3,89,92],[198,1,1,92,93],[200,1,1,93,94],[201,2,2,94,96],[202,1,1,96,97],[204,1,1,97,98],[206,1,1,98,99],[210,1,1,99,100]]],[6,8,8,100,108,[[218,2,2,100,102],[221,3,3,102,105],[230,3,3,105,108]]],[8,17,13,108,121,[[239,1,1,108,109],[248,1,1,109,110],[252,1,1,110,111],[258,6,4,111,115],[259,1,1,115,116],[260,3,3,116,119],[261,4,2,119,121]]],[9,6,6,121,127,[[268,1,1,121,122],[281,2,2,122,124],[282,1,1,124,125],[283,2,2,125,127]]],[10,4,4,127,131,[[292,1,1,127,128],[299,1,1,128,129],[309,2,2,129,131]]],[11,1,1,131,132,[[315,1,1,131,132]]],[12,4,4,132,136,[[342,1,1,132,133],[343,1,1,133,134],[349,1,1,134,135],[358,1,1,135,136]]],[13,6,6,136,142,[[367,1,1,136,137],[374,1,1,137,138],[386,3,3,138,141],[390,1,1,141,142]]],[15,1,1,142,143,[[421,1,1,142,143]]],[17,2,2,143,145,[[436,1,1,143,144],[473,1,1,144,145]]],[18,17,16,145,161,[[506,2,1,145,146],[532,1,1,146,147],[542,1,1,147,148],[555,4,4,148,152],[572,1,1,152,153],[579,1,1,153,154],[583,3,3,154,157],[584,3,3,157,160],[613,1,1,160,161]]],[21,2,2,161,163,[[673,1,1,161,162],[678,1,1,162,163]]],[22,19,18,163,181,[[692,1,1,163,164],[694,2,2,164,166],[705,1,1,166,167],[710,2,2,167,169],[713,2,2,169,171],[718,1,1,171,172],[719,2,2,172,174],[720,1,1,174,175],[721,2,2,175,177],[728,1,1,177,178],[729,1,1,178,179],[741,1,1,179,180],[742,2,1,180,181]]],[23,20,20,181,201,[[746,4,4,181,185],[747,1,1,185,186],[748,2,2,186,188],[753,4,4,188,192],[756,2,2,192,194],[757,1,1,194,195],[761,1,1,195,196],[766,1,1,196,197],[767,1,1,197,198],[775,1,1,198,199],[792,1,1,199,200],[794,1,1,200,201]]],[24,3,3,201,204,[[800,2,2,201,203],[801,1,1,203,204]]],[25,13,12,204,216,[[820,1,1,204,205],[821,10,9,205,214],[830,1,1,214,215],[835,1,1,215,216]]],[27,4,4,216,220,[[863,2,2,216,218],[870,1,1,218,219],[874,1,1,219,220]]],[28,5,5,220,225,[[876,2,2,220,222],[877,2,2,222,224],[878,1,1,224,225]]],[29,2,2,225,227,[[880,1,1,225,226],[883,1,1,226,227]]],[35,1,1,227,228,[[907,1,1,227,228]]],[38,1,1,228,229,[[925,1,1,228,229]]]],[342,388,527,533,534,1064,1105,1597,1628,1633,1701,1737,1738,1885,1887,1892,1900,1901,1942,1948,1949,1950,1957,1961,1979,2004,2027,2028,2917,3211,3222,3223,3605,3623,3696,3706,3966,3970,4000,4019,4075,4101,4110,4124,4130,4133,4137,4140,4141,4143,4185,4207,4315,4345,4351,4353,4363,4447,4553,4554,4557,4568,4731,4733,4766,4768,4771,4775,4796,4893,4911,4923,4932,4939,4945,4946,5047,5139,5152,5153,5164,5185,5213,5232,5684,5809,5938,5939,5940,6017,6022,6026,6138,6197,6203,6263,6266,6305,6380,6483,6726,6735,6845,6847,6851,7096,7099,7101,7305,7503,7646,7824,7825,7834,7835,7840,7862,7865,7882,7907,7908,8073,8412,8417,8428,8465,8478,8804,9069,9391,9402,9584,10437,10532,10728,10963,11197,11350,11603,11607,11611,11686,12532,12888,13819,14316,14739,14872,15128,15132,15153,15165,15462,15527,15660,15665,15677,15703,15732,15734,16212,17577,17645,17945,17970,17977,18161,18274,18275,18321,18326,18423,18469,18470,18491,18524,18525,18664,18676,18879,18895,18967,18971,18989,18996,19004,19038,19053,19177,19185,19187,19201,19259,19261,19290,19363,19460,19494,19693,20086,20178,20423,20439,20451,20894,20905,20908,20910,20912,20913,20916,20918,20930,20931,21188,21338,22108,22119,22218,22271,22310,22311,22314,22333,22362,22389,22448,22818,23092]]]]},{"k":"H4058","v":[["*",[51,49,[[1,1,1,0,1,[[65,1,1,0,1]]],[3,1,1,1,2,[[151,1,1,1,2]]],[4,1,1,2,3,[[173,1,1,2,3]]],[7,1,1,3,4,[[234,1,1,3,4]]],[9,2,1,4,5,[[274,2,1,4,5]]],[10,1,1,5,6,[[307,1,1,5,6]]],[18,2,2,6,8,[[537,1,1,6,7],[585,1,1,7,8]]],[22,2,2,8,10,[[718,1,1,8,9],[743,1,1,9,10]]],[23,2,2,10,12,[[775,1,1,10,11],[777,1,1,11,12]]],[25,36,35,12,47,[[841,16,16,12,28],[842,7,7,28,35],[843,6,6,35,41],[844,1,1,41,42],[846,1,1,42,43],[848,5,4,43,47]]],[27,1,1,47,48,[[862,1,1,47,48]]],[37,1,1,48,49,[[912,1,1,48,49]]]],[1965,4850,5449,7187,8211,9338,14813,15749,18432,18904,19728,19797,21482,21483,21485,21486,21488,21490,21496,21497,21500,21501,21504,21505,21509,21512,21524,21525,21527,21528,21529,21530,21531,21539,21541,21567,21568,21569,21570,21571,21572,21582,21633,21682,21683,21684,21697,22104,22901]]],["+",[12,12,[[25,11,11,0,11,[[841,6,6,0,6],[842,3,3,6,9],[843,1,1,9,10],[844,1,1,10,11]]],[37,1,1,11,12,[[912,1,1,11,12]]]],[21482,21483,21488,21505,21509,21524,21527,21530,21539,21570,21582,22901]]],["himself",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9338]]],["measure",[5,5,[[3,1,1,0,1,[[151,1,1,0,1]]],[4,1,1,1,2,[[173,1,1,1,2]]],[22,1,1,2,3,[[743,1,1,2,3]]],[25,2,2,3,5,[[846,1,1,3,4],[848,1,1,4,5]]]],[4850,5449,18904,21633,21697]]],["measured",[30,28,[[7,1,1,0,1,[[234,1,1,0,1]]],[9,2,1,1,2,[[274,2,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]],[23,2,2,3,5,[[775,1,1,3,4],[777,1,1,4,5]]],[25,23,22,5,27,[[841,10,10,5,15],[842,4,4,15,19],[843,5,5,19,24],[848,4,3,24,27]]],[27,1,1,27,28,[[862,1,1,27,28]]]],[7187,8211,18432,19728,19797,21485,21486,21490,21496,21497,21500,21501,21504,21512,21525,21528,21529,21531,21541,21567,21568,21569,21571,21572,21682,21683,21684,22104]]],["mete",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1965]]],["out",[2,2,[[18,2,2,0,2,[[537,1,1,0,1],[585,1,1,1,2]]]],[14813,15749]]]]},{"k":"H4059","v":[["gone",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13012]]]]},{"k":"H4060","v":[["*",[55,53,[[1,4,4,0,4,[[75,2,2,0,2],[85,2,2,2,4]]],[2,1,1,4,5,[[108,1,1,4,5]]],[3,1,1,5,6,[[129,1,1,5,6]]],[5,1,1,6,7,[[189,1,1,6,7]]],[10,4,4,7,11,[[296,1,1,7,8],[297,3,3,8,11]]],[12,3,3,11,14,[[348,1,1,11,12],[357,1,1,12,13],[360,1,1,13,14]]],[13,1,1,14,15,[[369,1,1,14,15]]],[15,8,8,15,23,[[415,7,7,15,22],[417,1,1,22,23]]],[17,1,1,23,24,[[463,1,1,23,24]]],[18,2,2,24,26,[[516,1,1,24,25],[610,1,1,25,26]]],[22,1,1,26,27,[[723,1,1,26,27]]],[23,2,2,27,29,[[766,1,1,27,28],[775,1,1,28,29]]],[25,25,23,29,52,[[841,12,11,29,40],[842,1,1,40,41],[843,6,5,41,46],[844,1,1,46,47],[846,1,1,47,48],[847,1,1,48,49],[849,3,3,49,52]]],[37,1,1,52,53,[[912,1,1,52,53]]]],[2237,2243,2575,2581,3316,4107,5897,8921,8943,8945,8971,10696,10932,11012,11232,12338,12346,12347,12348,12351,12354,12357,12386,13529,14516,16171,18575,19468,19730,21480,21482,21487,21498,21499,21501,21505,21506,21509,21510,21512,21543,21567,21568,21569,21570,21571,21585,21633,21677,21718,21732,21735,22900]]],["garments",[1,1,[[18,1,1,0,1,[[610,1,1,0,1]]]],[16171]]],["measure",[15,14,[[1,2,2,0,2,[[75,2,2,0,2]]],[5,1,1,2,3,[[189,1,1,2,3]]],[10,2,2,3,5,[[296,1,1,3,4],[297,1,1,4,5]]],[13,1,1,5,6,[[369,1,1,5,6]]],[17,1,1,6,7,[[463,1,1,6,7]]],[18,1,1,7,8,[[516,1,1,7,8]]],[25,7,6,8,14,[[841,4,3,8,11],[842,1,1,11,12],[846,1,1,12,13],[847,1,1,13,14]]]],[2237,2243,5897,8921,8971,11232,13529,14516,21487,21498,21499,21543,21633,21677]]],["measures",[12,12,[[10,2,2,0,2,[[297,2,2,0,2]]],[25,10,10,2,12,[[841,6,6,2,8],[844,1,1,8,9],[849,3,3,9,12]]]],[8943,8945,21501,21505,21506,21509,21510,21512,21585,21718,21732,21735]]],["measuring",[10,9,[[23,1,1,0,1,[[775,1,1,0,1]]],[25,8,7,1,8,[[841,2,2,1,3],[843,6,5,3,8]]],[37,1,1,8,9,[[912,1,1,8,9]]]],[19730,21480,21482,21567,21568,21569,21570,21571,22900]]],["meteyard",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3316]]],["piece",[7,7,[[15,7,7,0,7,[[415,7,7,0,7]]]],[12338,12346,12347,12348,12351,12354,12357]]],["size",[3,3,[[1,2,2,0,2,[[85,2,2,0,2]]],[12,1,1,2,3,[[360,1,1,2,3]]]],[2575,2581,11012]]],["stature",[4,4,[[3,1,1,0,1,[[129,1,1,0,1]]],[12,2,2,1,3,[[348,1,1,1,2],[357,1,1,2,3]]],[22,1,1,3,4,[[723,1,1,3,4]]]],[4107,10696,10932,18575]]],["tribute",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12386]]],["wide",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19468]]]]},{"k":"H4061","v":[["*",[5,5,[[14,4,4,0,4,[[406,2,2,0,2],[408,1,1,2,3],[409,1,1,3,4]]],[26,1,1,4,5,[[851,1,1,4,5]]]],[12123,12130,12159,12197,21804]]],["oblation",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21804]]],["toll",[3,3,[[14,3,3,0,3,[[406,2,2,0,2],[409,1,1,2,3]]]],[12123,12130,12197]]],["tribute",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12159]]]]},{"k":"H4062","v":[["city",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17932]]]]},{"k":"H4063","v":[["garments",[2,2,[[9,1,1,0,1,[[276,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]]],[8244,10911]]]]},{"k":"H4064","v":[["diseases",[2,2,[[4,2,2,0,2,[[159,1,1,0,1],[180,1,1,1,2]]]],[5126,5671]]]]},{"k":"H4065","v":[["banishment",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20346]]]]},{"k":"H4066","v":[["*",[11,11,[[18,1,1,0,1,[[557,1,1,0,1]]],[19,8,8,1,9,[[633,1,1,1,2],[642,1,1,2,3],[643,1,1,3,4],[644,1,1,4,5],[649,1,1,5,6],[653,1,1,6,7],[655,1,1,7,8],[656,1,1,8,9]]],[23,1,1,9,10,[[759,1,1,9,10]]],[34,1,1,10,11,[[903,1,1,10,11]]]],[15204,16554,16825,16868,16887,17025,17161,17221,17246,19325,22734]]],["contention",[3,3,[[19,1,1,0,1,[[649,1,1,0,1]]],[23,1,1,1,2,[[759,1,1,1,2]]],[34,1,1,2,3,[[903,1,1,2,3]]]],[17025,19325,22734]]],["discord",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16554]]],["strife",[7,7,[[18,1,1,0,1,[[557,1,1,0,1]]],[19,6,6,1,7,[[642,1,1,1,2],[643,1,1,2,3],[644,1,1,3,4],[653,1,1,4,5],[655,1,1,5,6],[656,1,1,6,7]]]],[15204,16825,16868,16887,17161,17221,17246]]]]},{"k":"H4067","v":[]},{"k":"H4068","v":[["Madon",[2,2,[[5,2,2,0,2,[[197,1,1,0,1],[198,1,1,1,2]]]],[6108,6149]]]]},{"k":"H4069","v":[["*",[72,71,[[0,2,2,0,2,[[25,1,1,0,1],[39,1,1,1,2]]],[1,5,5,2,7,[[50,1,1,2,3],[51,1,1,3,4],[52,1,1,4,5],[54,1,1,5,6],[67,1,1,6,7]]],[2,1,1,7,8,[[99,1,1,7,8]]],[3,2,2,8,10,[[128,1,1,8,9],[132,1,1,9,10]]],[5,1,1,10,11,[[203,1,1,10,11]]],[6,6,5,11,16,[[215,2,1,11,12],[219,1,1,12,13],[221,2,2,13,15],[222,1,1,15,16]]],[7,1,1,16,17,[[233,1,1,16,17]]],[8,3,3,17,20,[[255,2,2,17,19],[256,1,1,19,20]]],[9,10,10,20,30,[[269,1,1,20,21],[277,2,2,21,23],[278,1,1,23,24],[279,1,1,24,25],[282,1,1,25,26],[284,1,1,26,27],[285,2,2,27,29],[290,1,1,29,30]]],[10,4,4,30,34,[[291,3,3,30,33],[292,1,1,33,34]]],[11,4,4,34,38,[[316,1,1,34,35],[320,1,1,35,36],[321,1,1,36,37],[324,1,1,37,38]]],[13,1,1,38,39,[[390,1,1,38,39]]],[15,4,4,39,43,[[414,2,2,39,41],[425,2,2,41,43]]],[16,1,1,43,44,[[428,1,1,43,44]]],[17,6,6,44,50,[[438,1,1,44,45],[453,1,1,45,46],[456,2,2,46,48],[459,1,1,48,49],[468,1,1,49,50]]],[22,3,3,50,53,[[683,1,1,50,51],[728,1,1,51,52],[741,1,1,52,53]]],[23,16,16,53,69,[[746,2,2,53,55],[752,3,3,55,58],[756,1,1,58,59],[757,1,1,59,60],[758,1,1,60,61],[766,1,1,61,62],[770,1,1,62,63],[774,1,1,63,64],[776,1,1,64,65],[780,1,1,65,66],[790,2,2,66,68],[793,1,1,68,69]]],[25,1,1,69,70,[[819,1,1,69,70]]],[38,1,1,70,71,[[926,1,1,70,71]]]],[719,1179,1550,1572,1582,1646,2013,2994,4067,4197,6289,6651,6782,6836,6855,6870,7159,7732,7757,7773,8088,8269,8279,8295,8321,8436,8489,8552,8554,8713,8723,8730,8758,8813,9626,9739,9767,9857,11683,12309,12310,12682,12692,12750,12916,13279,13359,13362,13437,13663,17743,18664,18868,18979,18996,19158,19172,19175,19250,19288,19312,19482,19581,19673,19734,19871,20050,20060,20128,20868,23113]]],["How",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1572]]],["Wherefore",[21,21,[[0,2,2,0,2,[[25,1,1,0,1],[39,1,1,1,2]]],[1,1,1,2,3,[[54,1,1,2,3]]],[2,1,1,3,4,[[99,1,1,3,4]]],[6,1,1,4,5,[[222,1,1,4,5]]],[8,1,1,5,6,[[255,1,1,5,6]]],[9,5,5,6,11,[[269,1,1,6,7],[277,1,1,7,8],[278,1,1,8,9],[282,1,1,9,10],[290,1,1,10,11]]],[10,1,1,11,12,[[291,1,1,11,12]]],[11,1,1,12,13,[[316,1,1,12,13]]],[17,2,2,13,15,[[453,1,1,13,14],[456,1,1,14,15]]],[22,2,2,15,17,[[728,1,1,15,16],[741,1,1,16,17]]],[23,4,4,17,21,[[756,1,1,17,18],[757,1,1,18,19],[776,1,1,19,20],[790,1,1,20,21]]]],[719,1179,1646,2994,6870,7757,8088,8279,8295,8436,8713,8758,9626,13279,13362,18664,18868,19250,19288,19734,20050]]],["Why",[25,25,[[1,1,1,0,1,[[50,1,1,0,1]]],[5,1,1,1,2,[[203,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[7,1,1,3,4,[[233,1,1,3,4]]],[8,1,1,4,5,[[256,1,1,4,5]]],[9,2,2,5,7,[[279,1,1,5,6],[285,1,1,6,7]]],[10,2,2,7,9,[[291,1,1,7,8],[292,1,1,8,9]]],[11,2,2,9,11,[[320,1,1,9,10],[324,1,1,10,11]]],[13,1,1,11,12,[[390,1,1,11,12]]],[15,3,3,12,15,[[414,1,1,12,13],[425,2,2,13,15]]],[16,1,1,15,16,[[428,1,1,15,16]]],[17,3,3,16,19,[[438,1,1,16,17],[459,1,1,17,18],[468,1,1,18,19]]],[23,5,5,19,24,[[752,2,2,19,21],[770,1,1,21,22],[780,1,1,22,23],[790,1,1,23,24]]],[25,1,1,24,25,[[819,1,1,24,25]]]],[1550,6289,6651,7159,7773,8321,8552,8723,8813,9739,9857,11683,12309,12682,12692,12750,12916,13437,13663,19158,19172,19581,19871,20060,20868]]],["wherefore",[7,7,[[3,2,2,0,2,[[128,1,1,0,1],[132,1,1,1,2]]],[11,1,1,2,3,[[321,1,1,2,3]]],[22,1,1,3,4,[[683,1,1,3,4]]],[23,3,3,4,7,[[746,1,1,4,5],[766,1,1,5,6],[774,1,1,6,7]]]],[4067,4197,9767,17743,18996,19482,19673]]],["why",[18,18,[[1,2,2,0,2,[[52,1,1,0,1],[67,1,1,1,2]]],[6,4,4,2,6,[[215,1,1,2,3],[219,1,1,3,4],[221,2,2,4,6]]],[8,1,1,6,7,[[255,1,1,6,7]]],[9,3,3,7,10,[[277,1,1,7,8],[284,1,1,8,9],[285,1,1,9,10]]],[10,1,1,10,11,[[291,1,1,10,11]]],[15,1,1,11,12,[[414,1,1,11,12]]],[17,1,1,12,13,[[456,1,1,12,13]]],[23,4,4,13,17,[[746,1,1,13,14],[752,1,1,14,15],[758,1,1,15,16],[793,1,1,16,17]]],[38,1,1,17,18,[[926,1,1,17,18]]]],[1582,2013,6651,6782,6836,6855,7732,8269,8489,8554,8730,12310,13359,18979,19175,19312,20128,23113]]]]},{"k":"H4070","v":[["dwelling",[4,4,[[26,4,4,0,4,[[851,1,1,0,1],[853,2,2,1,3],[854,1,1,3,4]]]],[21769,21862,21869,21895]]]]},{"k":"H4071","v":[["*",[2,2,[[22,1,1,0,1,[[708,1,1,0,1]]],[25,1,1,1,2,[[825,1,1,1,2]]]],[18250,21065]]],["fire",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21065]]],["pile",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18250]]]]},{"k":"H4072","v":[["ruin",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17169]]]]},{"k":"H4073","v":[["overthrow",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16274]]]]},{"k":"H4074","v":[["*",[16,16,[[0,1,1,0,1,[[9,1,1,0,1]]],[11,2,2,1,3,[[329,1,1,1,2],[330,1,1,2,3]]],[12,1,1,3,4,[[338,1,1,3,4]]],[16,5,5,4,9,[[426,4,4,4,8],[435,1,1,8,9]]],[22,2,2,9,11,[[691,1,1,9,10],[699,1,1,10,11]]],[23,3,3,11,14,[[769,1,1,11,12],[795,2,2,12,14]]],[26,2,2,14,16,[[857,1,1,14,15],[858,1,1,15,16]]]],[236,9989,10035,10257,12705,12716,12720,12721,12868,17923,18037,19559,20223,20240,21981,21989]]],["+",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20240]]],["Madai",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[236,10257]]],["Medes",[7,7,[[11,2,2,0,2,[[329,1,1,0,1],[330,1,1,1,2]]],[16,1,1,2,3,[[426,1,1,2,3]]],[22,1,1,3,4,[[691,1,1,3,4]]],[23,2,2,4,6,[[769,1,1,4,5],[795,1,1,5,6]]],[26,1,1,6,7,[[858,1,1,6,7]]]],[9989,10035,12721,17923,19559,20223,21989]]],["Media",[6,6,[[16,4,4,0,4,[[426,3,3,0,3],[435,1,1,3,4]]],[22,1,1,4,5,[[699,1,1,4,5]]],[26,1,1,5,6,[[857,1,1,5,6]]]],[12705,12716,12720,12868,18037,21981]]]]},{"k":"H4075","v":[["Mede",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22037]]]]},{"k":"H4076","v":[["Medes",[5,5,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,4,4,1,5,[[854,1,1,1,2],[855,3,3,2,5]]]],[12153,21902,21913,21917,21920]]]]},{"k":"H4077","v":[["Median",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21905]]]]},{"k":"H4078","v":[["sufficiently",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11830]]]]},{"k":"H4079","v":[["*",[9,9,[[19,9,9,0,9,[[645,2,2,0,2],[646,1,1,2,3],[648,2,2,3,5],[650,1,1,5,6],[652,1,1,6,7],[653,1,1,7,8],[654,1,1,8,9]]]],[16919,16920,16938,16993,17003,17073,17137,17162,17184]]],["+",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17137]]],["brawling",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16993]]],["contentions",[4,4,[[19,4,4,0,4,[[645,2,2,0,2],[646,1,1,2,3],[650,1,1,3,4]]]],[16919,16920,16938,17073]]],["contentious",[3,3,[[19,3,3,0,3,[[648,1,1,0,1],[653,1,1,1,2],[654,1,1,2,3]]]],[17003,17162,17184]]]]},{"k":"H4080","v":[["*",[59,55,[[0,3,3,0,3,[[24,2,2,0,2],[35,1,1,2,3]]],[1,5,5,3,8,[[51,2,2,3,5],[52,1,1,5,6],[53,1,1,6,7],[67,1,1,7,8]]],[3,10,8,8,16,[[138,2,2,8,10],[141,2,2,10,12],[147,6,4,12,16]]],[5,1,1,16,17,[[199,1,1,16,17]]],[6,31,29,17,46,[[216,11,10,17,27],[217,12,11,27,38],[218,7,7,38,45],[219,1,1,45,46]]],[10,1,1,46,47,[[301,1,1,46,47]]],[12,3,3,47,50,[[338,3,3,47,50]]],[18,1,1,50,51,[[560,1,1,50,51]]],[22,3,3,51,54,[[687,1,1,51,52],[688,1,1,52,53],[738,1,1,53,54]]],[34,1,1,54,55,[[905,1,1,54,55]]]],[660,662,1075,1569,1570,1580,1620,2000,4379,4382,4486,4489,4667,4671,4672,4673,6175,6655,6656,6657,6660,6661,6665,6667,6668,6670,6687,6695,6696,6701,6702,6706,6707,6708,6709,6717,6718,6719,6720,6722,6724,6731,6741,6745,6747,6771,9126,10284,10285,10298,15250,17833,17876,18827,22775]]],["+",[5,5,[[5,1,1,0,1,[[199,1,1,0,1]]],[6,3,3,1,4,[[217,1,1,1,2],[218,2,2,2,4]]],[10,1,1,4,5,[[301,1,1,4,5]]]],[6175,6719,6722,6731,9126]]],["Midian",[35,34,[[0,3,3,0,3,[[24,2,2,0,2],[35,1,1,2,3]]],[1,5,5,3,8,[[51,2,2,3,5],[52,1,1,5,6],[53,1,1,6,7],[67,1,1,7,8]]],[3,8,7,8,15,[[138,2,2,8,10],[141,2,2,10,12],[147,4,3,12,15]]],[6,12,12,15,27,[[216,2,2,15,17],[217,5,5,17,22],[218,4,4,22,26],[219,1,1,26,27]]],[12,3,3,27,30,[[338,3,3,27,30]]],[22,3,3,30,33,[[687,1,1,30,31],[688,1,1,31,32],[738,1,1,32,33]]],[34,1,1,33,34,[[905,1,1,33,34]]]],[660,662,1075,1569,1570,1580,1620,2000,4379,4382,4486,4489,4667,4672,4673,6655,6656,6702,6707,6708,6709,6719,6724,6741,6745,6747,6771,10284,10285,10298,17833,17876,18827,22775]]],["Midianites",[19,19,[[3,2,2,0,2,[[147,2,2,0,2]]],[6,16,16,2,18,[[216,9,9,2,11],[217,6,6,11,17],[218,1,1,17,18]]],[18,1,1,18,19,[[560,1,1,18,19]]]],[4667,4671,6656,6657,6660,6661,6665,6667,6668,6670,6687,6695,6696,6701,6706,6717,6718,6720,15250]]]]},{"k":"H4081","v":[["Middin",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6263]]]]},{"k":"H4082","v":[["*",[53,40,[[10,4,4,0,4,[[310,4,4,0,4]]],[14,1,1,4,5,[[404,1,1,4,5]]],[15,3,3,5,8,[[413,1,1,5,6],[419,1,1,6,7],[423,1,1,7,8]]],[16,39,26,8,34,[[426,6,4,8,12],[427,2,2,12,14],[428,8,4,14,18],[429,3,2,18,20],[433,11,6,20,26],[434,9,8,26,34]]],[20,2,2,34,36,[[660,1,1,34,35],[663,1,1,35,36]]],[24,1,1,36,37,[[797,1,1,36,37]]],[25,1,1,37,38,[[820,1,1,37,38]]],[26,2,2,38,40,[[857,1,1,38,39],[860,1,1,39,40]]]],[9422,9423,9425,9427,12028,12299,12426,12591,12703,12705,12718,12724,12727,12742,12755,12759,12760,12761,12765,12773,12822,12826,12828,12829,12830,12834,12836,12837,12838,12846,12850,12854,12862,12864,17341,17405,20311,20889,21963,22060]]],["+",[19,9,[[16,18,8,0,8,[[426,2,1,0,1],[428,6,2,1,3],[429,2,1,3,4],[433,6,3,4,7],[434,2,1,7,8]]],[25,1,1,8,9,[[820,1,1,8,9]]]],[12724,12759,12761,12765,12826,12830,12834,12862,20889]]],["province",[8,8,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,3,3,1,4,[[413,1,1,1,2],[419,1,1,2,3],[423,1,1,3,4]]],[16,1,1,4,5,[[433,1,1,4,5]]],[20,1,1,5,6,[[663,1,1,5,6]]],[26,2,2,6,8,[[857,1,1,6,7],[860,1,1,7,8]]]],[12028,12299,12426,12591,12828,17405,21963,22060]]],["provinces",[26,25,[[10,4,4,0,4,[[310,4,4,0,4]]],[16,20,19,4,23,[[426,4,4,4,8],[427,2,2,8,10],[428,2,2,10,12],[429,1,1,12,13],[433,4,3,13,16],[434,7,7,16,23]]],[20,1,1,23,24,[[660,1,1,23,24]]],[24,1,1,24,25,[[797,1,1,24,25]]]],[9422,9423,9425,9427,12703,12705,12718,12724,12727,12742,12755,12760,12773,12822,12826,12829,12836,12837,12838,12846,12850,12854,12864,17341,20311]]]]},{"k":"H4083","v":[["*",[11,11,[[14,4,4,0,4,[[406,1,1,0,1],[407,1,1,1,2],[408,1,1,2,3],[409,1,1,3,4]]],[26,7,7,4,11,[[851,2,2,4,6],[852,5,5,6,11]]]],[12125,12142,12153,12189,21806,21807,21808,21809,21810,21819,21837]]],["province",[8,8,[[14,3,3,0,3,[[407,1,1,0,1],[408,1,1,1,2],[409,1,1,2,3]]],[26,5,5,3,8,[[851,2,2,3,5],[852,3,3,5,8]]]],[12142,12153,12189,21806,21807,21808,21819,21837]]],["provinces",[3,3,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,2,2,1,3,[[852,2,2,1,3]]]],[12125,21809,21810]]]]},{"k":"H4084","v":[["*",[7,7,[[0,1,1,0,1,[[36,1,1,0,1]]],[3,6,6,1,7,[[126,1,1,1,2],[141,4,4,2,6],[147,1,1,6,7]]]],[1111,4017,4477,4485,4486,4488,4666]]],["+",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1111]]],["Midianite",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[4017]]],["Midianites",[2,2,[[3,2,2,0,2,[[141,1,1,0,1],[147,1,1,1,2]]]],[4488,4666]]],["Midianitish",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4486]]],["woman",[2,2,[[3,2,2,0,2,[[141,2,2,0,2]]]],[4477,4485]]]]},{"k":"H4085","v":[["mortar",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4032]]]]},{"k":"H4086","v":[["Madmen",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20082]]]]},{"k":"H4087","v":[["dunghill",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18128]]]]},{"k":"H4088","v":[["Madmenah",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17881]]]]},{"k":"H4089","v":[["*",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[12,1,1,1,2,[[339,1,1,1,2]]]],[6233,10355]]],["+",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10355]]],["Madmannah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6233]]]]},{"k":"H4090","v":[["*",[2,2,[[19,2,2,0,2,[[633,1,1,0,1],[637,1,1,1,2]]]],[16559,16668]]],["discord",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16559]]],["strifes",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16668]]]]},{"k":"H4091","v":[["Medan",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[660,10284]]]]},{"k":"H4092","v":[["Midianites",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1119]]]]},{"k":"H4093","v":[["*",[6,6,[[13,3,3,0,3,[[367,3,3,0,3]]],[20,1,1,3,4,[[668,1,1,3,4]]],[26,2,2,4,6,[[850,2,2,4,6]]]],[11204,11205,11206,17513,21741,21754]]],["knowledge",[4,4,[[13,3,3,0,3,[[367,3,3,0,3]]],[26,1,1,3,4,[[850,1,1,3,4]]]],[11204,11205,11206,21754]]],["science",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21741]]],["thought",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17513]]]]},{"k":"H4094","v":[["piercings",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16737]]]]},{"k":"H4095","v":[["*",[2,2,[[21,1,1,0,1,[[672,1,1,0,1]]],[25,1,1,1,2,[[839,1,1,1,2]]]],[17568,21445]]],["places",[1,1,[[25,1,1,0,1,[[839,1,1,0,1]]]],[21445]]],["stairs",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17568]]]]},{"k":"H4096","v":[["+",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4943]]]]},{"k":"H4097","v":[["story",[2,2,[[13,2,2,0,2,[[379,1,1,0,1],[390,1,1,1,2]]]],[11475,11704]]]]},{"k":"H4098","v":[["threshing",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18045]]]]},{"k":"H4099","v":[["Hammedatha",[5,5,[[16,5,5,0,5,[[428,2,2,0,2],[433,1,1,2,3],[434,2,2,3,5]]]],[12748,12757,12822,12844,12858]]]]},{"k":"H4100","v":[["*",[751,657,[[0,63,56,0,56,[[1,1,1,0,1],[2,1,1,1,2],[3,3,2,2,4],[11,3,2,4,6],[14,2,2,6,8],[17,1,1,8,9],[19,3,2,9,11],[20,2,2,11,13],[22,1,1,13,14],[23,1,1,14,15],[24,2,2,15,17],[25,1,1,17,18],[26,4,4,18,22],[27,1,1,22,23],[28,3,2,23,25],[29,1,1,25,26],[30,8,7,26,33],[31,2,2,33,35],[32,1,1,35,36],[36,4,4,36,40],[37,3,3,40,43],[38,1,1,43,44],[41,2,2,44,46],[42,1,1,46,47],[43,6,4,47,51],[45,1,1,51,52],[46,4,4,52,56]]],[1,33,30,56,86,[[51,3,3,56,59],[52,2,1,59,60],[53,1,1,60,61],[54,4,3,61,64],[59,1,1,64,65],[61,1,1,65,66],[62,1,1,66,67],[63,3,3,67,70],[64,1,1,70,71],[65,3,3,71,74],[66,4,3,74,77],[67,1,1,77,78],[71,1,1,78,79],[81,5,5,79,84],[82,2,2,84,86]]],[2,1,1,86,87,[[114,1,1,86,87]]],[3,30,27,87,114,[[125,2,2,87,89],[127,3,2,89,91],[129,4,3,91,94],[130,2,2,94,96],[131,1,1,96,97],[132,1,1,97,98],[136,2,2,98,100],[137,1,1,100,101],[138,4,4,101,105],[139,6,5,105,110],[140,2,2,110,112],[143,1,1,112,113],[148,1,1,113,114]]],[4,6,5,114,119,[[157,1,1,114,115],[158,1,1,115,116],[162,1,1,116,117],[181,2,1,117,118],[184,1,1,118,119]]],[5,13,13,119,132,[[190,2,2,119,121],[191,1,1,121,122],[193,6,6,122,128],[195,1,1,128,129],[201,1,1,129,130],[208,2,2,130,132]]],[6,41,35,132,167,[[211,1,1,132,133],[212,1,1,133,134],[215,2,2,134,136],[216,2,2,136,138],[217,1,1,138,139],[218,3,3,139,142],[219,2,2,142,144],[221,1,1,144,145],[222,1,1,145,146],[223,3,3,146,149],[224,2,1,149,150],[225,2,2,150,152],[226,7,5,152,157],[228,9,6,157,163],[230,1,1,163,164],[231,3,3,164,167]]],[7,2,2,167,169,[[232,2,2,167,169]]],[8,68,56,169,225,[[236,3,1,169,170],[237,2,2,170,172],[238,1,1,172,173],[239,4,4,173,177],[240,1,1,177,178],[241,5,4,178,182],[244,3,2,182,184],[245,4,4,184,188],[246,1,1,188,189],[248,1,1,189,190],[249,2,2,190,192],[250,2,2,192,194],[251,1,1,194,195],[252,4,4,195,199],[254,4,3,199,202],[255,8,5,202,207],[256,2,2,207,209],[257,2,2,209,211],[259,1,1,211,212],[260,1,1,212,213],[261,4,2,213,215],[262,1,1,215,216],[263,7,6,216,222],[264,4,3,222,225]]],[9,46,43,225,268,[[267,2,2,225,227],[268,1,1,227,228],[269,2,1,228,229],[272,1,1,229,230],[273,2,2,230,232],[275,1,1,232,233],[277,1,1,233,234],[278,2,2,234,236],[279,1,1,236,237],[280,4,4,237,241],[281,1,1,241,242],[282,5,5,242,247],[283,1,1,247,248],[284,4,3,248,251],[285,11,11,251,262],[286,1,1,262,263],[287,3,2,263,265],[290,3,3,265,268]]],[10,19,19,268,287,[[291,1,1,268,269],[292,1,1,269,270],[293,1,1,270,271],[299,2,2,271,273],[301,1,1,273,274],[302,2,2,274,276],[304,3,3,276,279],[307,1,1,279,280],[308,1,1,280,281],[309,3,3,281,284],[311,1,1,284,285],[312,2,2,285,287]]],[11,24,23,287,310,[[313,2,2,287,289],[314,1,1,289,290],[315,1,1,290,291],[316,5,4,291,295],[317,1,1,295,296],[318,2,2,296,298],[319,1,1,298,299],[320,2,2,299,301],[321,3,3,301,304],[326,1,1,304,305],[330,1,1,305,306],[332,3,3,306,309],[335,1,1,309,310]]],[12,7,6,310,316,[[349,1,1,310,311],[354,2,2,311,313],[358,4,3,313,316]]],[13,17,17,316,333,[[367,1,1,316,317],[373,1,1,317,318],[376,2,2,318,320],[384,2,2,320,322],[385,1,1,322,323],[386,1,1,323,324],[390,1,1,324,325],[391,4,4,325,329],[398,3,3,329,332],[401,1,1,332,333]]],[14,2,2,333,335,[[408,1,1,333,334],[411,1,1,334,335]]],[15,7,7,335,342,[[414,4,4,335,339],[416,1,1,339,340],[418,1,1,340,341],[425,1,1,341,342]]],[16,18,11,342,353,[[426,1,1,342,343],[427,1,1,343,344],[429,2,1,344,345],[430,4,2,345,347],[431,2,2,347,349],[432,2,1,349,350],[433,1,1,350,351],[434,5,2,351,353]]],[17,62,51,353,404,[[438,3,3,353,356],[441,5,3,356,359],[442,5,4,359,363],[444,3,3,363,366],[445,2,2,366,368],[446,2,1,368,369],[448,4,4,369,373],[450,4,3,373,376],[451,2,2,376,378],[454,2,2,378,380],[456,4,3,380,383],[457,2,2,383,385],[458,1,1,385,386],[460,2,1,386,387],[461,3,3,387,390],[462,2,2,390,392],[465,1,1,392,393],[466,4,3,393,396],[469,2,2,396,398],[470,6,3,398,401],[472,1,1,401,402],[473,1,1,402,403],[475,1,1,403,404]]],[18,66,57,404,461,[[479,1,1,404,405],[480,1,1,405,406],[481,1,1,406,407],[485,3,3,407,410],[487,2,2,410,412],[488,1,1,412,413],[498,1,1,413,414],[499,1,1,414,415],[507,1,1,415,416],[508,1,1,416,417],[512,1,1,417,418],[513,1,1,418,419],[516,3,2,419,421],[519,5,3,421,424],[520,4,2,424,426],[521,2,2,426,428],[526,1,1,428,429],[527,1,1,429,430],[529,1,1,430,431],[533,2,2,431,433],[543,1,1,433,434],[545,1,1,434,435],[551,3,3,435,438],[555,1,1,438,439],[556,2,2,439,441],[557,1,1,441,442],[561,1,1,442,443],[562,1,1,443,444],[565,1,1,444,445],[566,3,2,445,447],[569,1,1,447,448],[581,1,1,448,449],[591,1,1,449,450],[592,1,1,450,451],[593,1,1,451,452],[595,1,1,452,453],[596,4,4,453,457],[597,2,1,457,458],[610,2,1,458,459],[616,2,1,459,460],[621,1,1,460,461]]],[19,16,13,461,474,[[631,1,1,461,462],[632,1,1,462,463],[636,1,1,463,464],[642,1,1,464,465],[643,1,1,465,466],[644,1,1,466,467],[647,1,1,467,468],[649,1,1,468,469],[652,1,1,469,470],[654,1,1,470,471],[657,3,2,471,473],[658,3,1,473,474]]],[20,28,25,474,499,[[659,3,2,474,476],[660,4,4,476,480],[661,3,3,480,483],[663,3,3,483,486],[664,6,4,486,490],[665,4,4,490,494],[666,2,2,494,496],[668,1,1,496,497],[669,2,2,497,499]]],[21,13,9,499,508,[[671,1,1,499,500],[674,2,1,500,501],[675,3,2,501,503],[676,1,1,503,504],[677,3,2,504,506],[678,3,2,506,508]]],[22,29,27,508,535,[[679,2,2,508,510],[680,1,1,510,511],[681,1,1,511,512],[683,1,1,512,513],[688,1,1,513,514],[692,1,1,514,515],[697,1,1,515,516],[699,2,1,516,517],[700,2,2,517,519],[714,1,1,519,520],[716,2,2,520,522],[717,2,2,522,524],[718,3,3,524,527],[719,1,1,527,528],[723,3,2,528,530],[730,2,2,530,532],[733,1,1,532,533],[736,1,1,533,534],[741,1,1,534,535]]],[23,50,43,535,578,[[745,2,2,535,537],[746,7,6,537,543],[748,1,1,543,544],[749,3,3,544,547],[750,1,1,547,548],[751,1,1,548,549],[752,3,3,549,552],[753,1,1,552,553],[755,1,1,553,554],[757,1,1,554,555],[758,2,2,555,557],[759,1,1,557,558],[760,3,1,558,559],[764,1,1,559,560],[766,2,2,560,562],[767,7,4,562,566],[768,1,1,566,567],[771,2,2,567,569],[773,1,1,569,570],[774,1,1,570,571],[777,1,1,571,572],[781,1,1,572,573],[782,2,1,573,574],[784,1,1,574,575],[788,1,1,575,576],[792,1,1,576,577],[793,1,1,577,578]]],[24,6,4,578,582,[[798,3,1,578,579],[799,1,1,579,580],[801,2,2,580,582]]],[25,16,16,582,598,[[809,1,1,582,583],[813,2,2,583,585],[816,1,1,585,586],[817,1,1,586,587],[818,1,1,587,588],[819,2,2,588,590],[820,1,1,590,591],[821,1,1,591,592],[822,2,2,592,594],[825,1,1,594,595],[834,2,2,595,597],[838,1,1,597,598]]],[26,3,3,598,601,[[850,1,1,598,599],[859,1,1,599,600],[861,1,1,600,601]]],[27,6,5,601,606,[[867,2,1,601,602],[870,2,2,602,604],[871,1,1,604,605],[875,1,1,605,606]]],[28,3,3,606,609,[[876,1,1,606,607],[877,1,1,607,608],[878,1,1,608,609]]],[29,4,4,609,613,[[882,1,1,609,610],[883,1,1,610,611],[885,1,1,611,612],[886,1,1,612,613]]],[31,6,5,613,618,[[889,5,4,613,617],[892,1,1,617,618]]],[32,8,5,618,623,[[896,1,1,618,619],[898,7,4,619,623]]],[33,1,1,623,624,[[900,1,1,623,624]]],[34,5,4,624,628,[[903,2,2,624,626],[904,3,2,626,628]]],[36,2,2,628,630,[[909,1,1,628,629],[910,1,1,629,630]]],[37,20,17,630,647,[[911,4,3,630,633],[912,2,1,633,634],[914,6,6,634,640],[915,3,3,640,643],[916,1,1,643,644],[917,1,1,644,645],[919,2,1,645,646],[923,1,1,646,647]]],[38,10,10,647,657,[[925,3,3,647,650],[926,3,3,650,653],[927,4,4,653,657]]]],[49,68,85,89,316,317,362,368,437,504,505,530,542,586,622,680,690,702,747,764,772,773,790,810,820,861,899,900,903,905,909,910,916,955,957,975,1093,1098,1103,1109,1135,1137,1148,1157,1253,1280,1296,1328,1331,1339,1340,1419,1423,1428,1435,1439,1558,1567,1574,1592,1603,1636,1647,1654,1803,1842,1881,1894,1900,1904,1944,1954,1955,1962,1985,1986,1987,2013,2140,2439,2449,2450,2459,2461,2478,2489,3489,3972,3973,4035,4044,4093,4094,4095,4111,4149,4187,4205,4315,4316,4345,4394,4403,4407,4412,4419,4424,4427,4433,4439,4451,4468,4558,4725,5078,5106,5198,5703,5778,5916,5931,5948,5983,5984,5985,5986,5995,6001,6059,6220,6442,6450,6523,6547,6639,6640,6667,6669,6705,6720,6721,6722,6756,6802,6841,6872,6892,6896,6902,6927,6939,6940,6954,6955,6959,6962,6964,6996,7001,7007,7011,7016,7017,7066,7105,7109,7118,7138,7148,7220,7263,7269,7293,7300,7303,7311,7313,7327,7333,7334,7335,7337,7398,7412,7420,7429,7433,7445,7450,7496,7546,7551,7574,7579,7596,7626,7644,7646,7647,7709,7711,7723,7731,7734,7738,7740,7762,7775,7786,7790,7800,7848,7878,7920,7923,7935,7951,7954,7955,7956,7957,7958,7970,7971,7975,8026,8035,8071,8105,8177,8187,8200,8235,8280,8307,8309,8343,8361,8369,8387,8388,8408,8428,8435,8436,8443,8446,8454,8500,8501,8507,8521,8522,8523,8533,8536,8539,8540,8545,8546,8547,8553,8573,8583,8584,8695,8705,8709,8733,8792,8821,9059,9064,9130,9160,9167,9221,9224,9232,9335,9350,9396,9400,9407,9456,9496,9502,9538,9540,9560,9589,9605,9616,9617,9646,9655,9702,9707,9710,9740,9741,9774,9775,9778,9906,10043,10106,10112,10113,10182,10752,10869,10881,10937,10946,10951,11201,11345,11404,11411,11557,11562,11582,11599,11697,11713,11719,11720,11723,11879,11885,11888,11987,12160,12247,12311,12319,12323,12326,12361,12404,12688,12717,12735,12767,12782,12785,12796,12799,12809,12818,12846,12860,12915,12916,12924,12989,13002,13003,13025,13027,13028,13029,13053,13063,13080,13088,13104,13116,13166,13167,13176,13177,13212,13215,13217,13241,13244,13319,13325,13370,13372,13376,13402,13406,13424,13465,13469,13470,13481,13489,13493,13559,13589,13590,13602,13687,13716,13723,13726,13727,13788,13799,13868,13946,13958,13967,14013,14016,14021,14042,14054,14062,14192,14205,14328,14350,14427,14445,14516,14519,14560,14564,14566,14568,14571,14594,14595,14653,14684,14711,14759,14766,14876,14916,15049,15057,15059,15153,15190,15195,15210,15260,15279,15322,15372,15373,15416,15595,15827,15832,15860,15875,15907,15982,15995,16001,16077,16170,16256,16308,16509,16537,16651,16830,16856,16889,16978,17042,17121,17170,17255,17264,17286,17318,17324,17335,17345,17348,17355,17368,17374,17381,17403,17408,17413,17425,17427,17428,17429,17439,17445,17446,17453,17462,17465,17507,17515,17518,17544,17592,17606,17607,17627,17628,17633,17644,17648,17659,17665,17707,17722,17743,17853,17960,18016,18046,18053,18068,18334,18405,18412,18415,18416,18426,18438,18447,18473,18570,18571,18701,18703,18742,18789,18883,18957,18959,18970,18983,18988,18994,18998,19001,19057,19073,19077,19089,19109,19136,19159,19162,19167,19187,19241,19287,19301,19302,19333,19346,19440,19462,19477,19512,19517,19519,19521,19527,19609,19613,19662,19682,19799,19892,19920,19956,20017,20099,20131,20345,20393,20443,20462,20610,20689,20702,20756,20792,20837,20851,20880,20883,20924,20951,20957,21075,21291,21310,21415,21747,22035,22089,22171,22213,22222,22228,22290,22309,22328,22347,22423,22441,22472,22483,22537,22539,22541,22542,22573,22629,22651,22653,22654,22656,22693,22734,22744,22749,22766,22849,22858,22887,22897,22899,22901,22924,22926,22927,22933,22934,22935,22938,22941,22942,22951,22965,23016,23065,23091,23095,23096,23117,23118,23120,23127,23128,23133,23134]]],["+",[45,44,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[53,1,1,1,2]]],[3,4,4,2,6,[[127,1,1,2,3],[138,1,1,3,4],[139,1,1,4,5],[140,1,1,5,6]]],[4,1,1,6,7,[[181,1,1,6,7]]],[8,1,1,7,8,[[251,1,1,7,8]]],[9,6,5,8,13,[[267,1,1,8,9],[278,1,1,9,10],[284,3,2,10,12],[285,1,1,12,13]]],[10,2,2,13,15,[[304,1,1,13,14],[311,1,1,14,15]]],[13,2,2,15,17,[[384,1,1,15,16],[398,1,1,16,17]]],[15,1,1,17,18,[[414,1,1,17,18]]],[16,1,1,18,19,[[429,1,1,18,19]]],[17,4,4,19,23,[[445,1,1,19,20],[448,1,1,20,21],[451,1,1,21,22],[473,1,1,22,23]]],[18,6,6,23,29,[[481,1,1,23,24],[487,1,1,24,25],[551,1,1,25,26],[556,1,1,26,27],[566,2,2,27,29]]],[19,2,2,29,31,[[636,1,1,29,30],[644,1,1,30,31]]],[20,4,4,31,35,[[661,2,2,31,33],[665,1,1,33,34],[668,1,1,34,35]]],[21,1,1,35,36,[[671,1,1,35,36]]],[22,1,1,36,37,[[679,1,1,36,37]]],[23,4,4,37,41,[[749,1,1,37,38],[752,1,1,38,39],[760,1,1,39,40],[766,1,1,40,41]]],[25,1,1,41,42,[[822,1,1,41,42]]],[36,1,1,42,43,[[909,1,1,42,43]]],[38,1,1,43,44,[[926,1,1,43,44]]]],[437,1603,4044,4407,4419,4468,5703,7596,8035,8309,8500,8501,8553,9224,9456,11557,11885,12311,12767,13088,13167,13244,13799,13967,14054,15057,15190,15372,15373,16651,16889,17374,17381,17453,17507,17544,17659,19077,19167,19346,19462,20951,22849,23117]]],["How",[30,30,[[0,4,4,0,4,[[26,1,1,0,1],[27,1,1,1,2],[37,1,1,2,3],[46,1,1,3,4]]],[3,2,2,4,6,[[139,1,1,4,5],[140,1,1,5,6]]],[6,3,3,6,9,[[223,1,1,6,7],[231,2,2,7,9]]],[8,1,1,9,10,[[245,1,1,9,10]]],[9,3,3,10,13,[[267,1,1,10,11],[272,1,1,11,12],[285,1,1,12,13]]],[17,6,6,13,19,[[441,1,1,13,14],[448,1,1,14,15],[457,1,1,15,16],[460,1,1,16,17],[461,2,2,17,19]]],[18,5,5,19,24,[[513,1,1,19,20],[543,1,1,20,21],[561,1,1,21,22],[596,1,1,22,23],[616,1,1,23,24]]],[21,3,3,24,27,[[674,1,1,24,25],[677,2,2,25,27]]],[22,1,1,27,28,[[730,1,1,27,28]]],[25,1,1,28,29,[[817,1,1,28,29]]],[28,1,1,29,30,[[876,1,1,29,30]]]],[747,790,1148,1428,4424,4451,6896,7109,7118,7445,8026,8177,8545,13003,13176,13402,13465,13469,13470,14445,14876,15260,16001,16256,17592,17628,17633,18703,20792,22309]]],["That",[1,1,[[20,1,1,0,1,[[664,1,1,0,1]]]],[17427]]],["What",[190,185,[[0,24,24,0,24,[[2,1,1,0,1],[3,1,1,1,2],[11,1,1,2,3],[19,2,2,3,5],[20,2,2,5,7],[25,1,1,7,8],[28,1,1,8,9],[29,1,1,9,10],[30,2,2,10,12],[31,1,1,12,13],[32,1,1,13,14],[36,3,3,14,17],[37,2,2,17,19],[41,1,1,19,20],[43,2,2,20,22],[45,1,1,22,23],[46,1,1,23,24]]],[1,7,7,24,31,[[52,1,1,24,25],[61,1,1,25,26],[62,1,1,26,27],[64,1,1,27,28],[66,1,1,28,29],[67,1,1,29,30],[81,1,1,30,31]]],[2,1,1,31,32,[[114,1,1,31,32]]],[3,4,4,32,36,[[138,1,1,32,33],[139,3,3,33,36]]],[4,1,1,36,37,[[158,1,1,36,37]]],[5,6,6,37,43,[[190,2,2,37,39],[191,1,1,39,40],[201,1,1,40,41],[208,2,2,41,43]]],[6,10,10,43,53,[[211,1,1,43,44],[218,1,1,44,45],[219,1,1,45,46],[221,1,1,46,47],[224,1,1,47,48],[228,4,4,48,52],[230,1,1,52,53]]],[8,17,17,53,70,[[238,1,1,53,54],[239,3,3,54,57],[240,1,1,57,58],[241,2,2,58,60],[245,2,2,60,62],[246,1,1,62,63],[248,1,1,63,64],[250,1,1,64,65],[252,2,2,65,67],[255,1,1,67,68],[263,1,1,68,69],[264,1,1,69,70]]],[9,10,10,70,80,[[269,1,1,70,71],[275,1,1,71,72],[278,1,1,72,73],[280,1,1,73,74],[282,2,2,74,76],[285,2,2,76,78],[287,2,2,78,80]]],[10,8,8,80,88,[[291,1,1,80,81],[299,1,1,81,82],[302,2,2,82,84],[307,1,1,84,85],[308,1,1,85,86],[309,2,2,86,88]]],[11,15,15,88,103,[[313,1,1,88,89],[315,1,1,89,90],[316,3,3,90,93],[318,1,1,93,94],[320,1,1,94,95],[321,3,3,95,98],[330,1,1,98,99],[332,3,3,99,102],[335,1,1,102,103]]],[12,1,1,103,104,[[354,1,1,103,104]]],[13,3,3,104,107,[[376,2,2,104,106],[401,1,1,106,107]]],[15,3,3,107,110,[[414,1,1,107,108],[416,1,1,108,109],[425,1,1,109,110]]],[16,6,6,110,116,[[426,1,1,110,111],[430,2,2,111,113],[431,2,2,113,115],[432,1,1,115,116]]],[17,9,8,116,124,[[441,1,1,116,117],[442,1,1,117,118],[444,1,1,118,119],[450,2,2,119,121],[456,1,1,121,122],[466,1,1,122,123],[470,2,1,123,124]]],[18,6,6,124,130,[[485,1,1,124,125],[507,1,1,125,126],[527,1,1,126,127],[591,1,1,127,128],[593,1,1,128,129],[597,1,1,129,130]]],[19,1,1,130,131,[[658,1,1,130,131]]],[20,5,5,131,136,[[659,1,1,131,132],[660,1,1,132,133],[661,1,1,133,134],[665,1,1,134,135],[666,1,1,135,136]]],[21,2,2,136,138,[[675,1,1,136,137],[676,1,1,137,138]]],[22,13,12,138,150,[[683,1,1,138,139],[692,1,1,139,140],[700,2,2,140,142],[714,1,1,142,143],[716,2,2,143,145],[717,2,2,145,147],[718,1,1,147,148],[723,3,2,148,150]]],[23,15,12,150,162,[[745,1,1,150,151],[746,1,1,151,152],[752,1,1,152,153],[755,1,1,153,154],[757,1,1,154,155],[767,7,4,155,159],[768,1,1,159,160],[781,1,1,160,161],[792,1,1,161,162]]],[25,5,5,162,167,[[813,1,1,162,163],[816,1,1,163,164],[819,1,1,164,165],[820,1,1,165,166],[821,1,1,166,167]]],[27,2,2,167,169,[[870,1,1,167,168],[875,1,1,168,169]]],[31,3,3,169,172,[[889,3,3,169,172]]],[33,1,1,172,173,[[900,1,1,172,173]]],[34,1,1,173,174,[[904,1,1,173,174]]],[37,10,10,174,184,[[911,2,2,174,176],[914,4,4,176,180],[915,2,2,180,182],[916,1,1,182,183],[923,1,1,183,184]]],[38,1,1,184,185,[[927,1,1,184,185]]]],[68,89,316,504,505,530,542,702,820,861,899,909,955,975,1093,1098,1109,1135,1137,1280,1339,1340,1419,1423,1592,1842,1881,1944,1987,2013,2459,3489,4403,4427,4433,4439,5106,5916,5931,5948,6220,6442,6450,6523,6721,6802,6841,6927,7001,7011,7016,7017,7066,7293,7303,7311,7313,7327,7333,7335,7420,7429,7450,7496,7574,7644,7647,7731,7956,7970,8105,8235,8307,8361,8428,8436,8533,8539,8583,8584,8733,9064,9160,9167,9335,9350,9396,9400,9540,9589,9605,9617,9646,9702,9741,9774,9775,9778,10043,10106,10112,10113,10182,10881,11404,11411,11987,12326,12361,12688,12717,12782,12785,12796,12799,12809,12989,13025,13063,13212,13217,13370,13602,13723,14016,14328,14684,15827,15860,16077,17286,17318,17335,17368,17439,17462,17607,17627,17743,17960,18053,18068,18334,18405,18412,18415,18416,18426,18570,18571,18959,18970,19159,19241,19287,19512,19517,19519,19521,19527,19892,20099,20689,20756,20851,20883,20924,22213,22290,22537,22539,22542,22693,22766,22897,22899,22924,22926,22933,22934,22938,22942,22951,23065,23133]]],["Whatsoever",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7734]]],["Wherefore",[45,45,[[0,6,6,0,6,[[30,1,1,0,1],[31,1,1,1,2],[42,1,1,2,3],[43,2,2,3,5],[46,1,1,5,6]]],[1,6,6,6,12,[[51,1,1,6,7],[54,2,2,7,9],[63,1,1,9,10],[66,1,1,10,11],[81,1,1,11,12]]],[3,3,3,12,15,[[127,1,1,12,13],[130,1,1,13,14],[137,1,1,14,15]]],[5,1,1,15,16,[[195,1,1,15,16]]],[8,8,8,16,24,[[237,1,1,16,17],[239,1,1,17,18],[241,1,1,18,19],[250,1,1,19,20],[255,1,1,20,21],[259,1,1,21,22],[261,1,1,22,23],[263,1,1,23,24]]],[9,5,5,24,29,[[280,3,3,24,27],[281,1,1,27,28],[285,1,1,28,29]]],[11,1,1,29,30,[[317,1,1,29,30]]],[17,3,3,30,33,[[438,1,1,30,31],[445,1,1,31,32],[448,1,1,32,33]]],[18,4,4,33,37,[[521,1,1,33,34],[526,1,1,34,35],[556,1,1,35,36],[592,1,1,36,37]]],[22,2,2,37,39,[[733,1,1,37,38],[736,1,1,38,39]]],[23,4,4,39,43,[[746,1,1,39,40],[764,1,1,40,41],[788,1,1,41,42],[793,1,1,42,43]]],[24,2,2,43,45,[[799,1,1,43,44],[801,1,1,44,45]]]],[900,957,1296,1328,1331,1439,1567,1636,1647,1904,1986,2450,4035,4149,4345,6059,7269,7300,7337,7579,7762,7848,7923,7958,8369,8387,8388,8408,8536,9655,12924,13104,13177,14595,14653,15195,15832,18742,18789,18994,19440,20017,20131,20393,20462]]],["Wherein",[6,6,[[38,6,6,0,6,[[925,3,3,0,3],[926,1,1,3,4],[927,2,2,4,6]]]],[23091,23095,23096,23120,23127,23128]]],["Wherewith",[3,3,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]],[32,1,1,2,3,[[898,1,1,2,3]]]],[9502,11562,22654]]],["Wherewithal",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15907]]],["Whether",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6756]]],["Why",[54,54,[[0,3,3,0,3,[[3,1,1,0,1],[11,1,1,1,2],[41,1,1,2,3]]],[1,2,2,3,5,[[63,1,1,3,4],[66,1,1,4,5]]],[3,1,1,5,6,[[143,1,1,5,6]]],[5,1,1,6,7,[[193,1,1,6,7]]],[6,4,4,7,11,[[215,1,1,7,8],[218,1,1,8,9],[223,1,1,9,10],[225,1,1,10,11]]],[8,7,7,11,18,[[237,1,1,11,12],[252,2,2,12,14],[254,1,1,14,15],[257,1,1,15,16],[263,2,2,16,18]]],[9,5,5,18,23,[[273,1,1,18,19],[279,1,1,19,20],[282,1,1,20,21],[285,2,2,21,23]]],[10,1,1,23,24,[[299,1,1,23,24]]],[11,2,2,24,26,[[313,1,1,24,25],[319,1,1,25,26]]],[12,1,1,26,27,[[354,1,1,26,27]]],[13,4,4,27,31,[[373,1,1,27,28],[390,1,1,28,29],[391,1,1,29,30],[398,1,1,30,31]]],[17,4,4,31,35,[[438,1,1,31,32],[450,1,1,32,33],[454,2,2,33,35]]],[18,10,10,35,45,[[479,1,1,35,36],[487,1,1,36,37],[519,3,3,37,40],[520,1,1,40,41],[529,1,1,41,42],[545,1,1,42,43],[551,1,1,43,44],[557,1,1,44,45]]],[22,1,1,45,46,[[718,1,1,45,46]]],[23,6,6,46,52,[[746,2,2,46,48],[758,1,1,48,49],[759,1,1,49,50],[771,1,1,50,51],[774,1,1,51,52]]],[31,1,1,52,53,[[889,1,1,52,53]]],[34,1,1,53,54,[[903,1,1,53,54]]]],[85,317,1253,1894,1985,4558,6001,6639,6720,6902,6939,7263,7626,7646,7723,7800,7954,7957,8187,8343,8435,8522,8540,9059,9538,9710,10869,11345,11697,11719,11879,12915,13215,13319,13325,13946,14042,14560,14564,14566,14571,14711,14916,15059,15210,18447,18998,19001,19302,19333,19609,19682,22541,22734]]],["end",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22441]]],["good",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[773]]],["how",[27,25,[[0,1,1,0,1,[[43,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[17,3,3,2,5,[[444,1,1,2,3],[460,1,1,3,4],[461,1,1,4,5]]],[18,13,12,5,17,[[480,1,1,5,6],[485,2,2,6,8],[498,1,1,8,9],[508,1,1,9,10],[516,1,1,10,11],[566,1,1,11,12],[569,1,1,12,13],[581,1,1,13,14],[596,1,1,14,15],[610,2,1,15,16],[616,1,1,16,17]]],[19,3,3,17,20,[[642,1,1,17,18],[647,1,1,18,19],[657,1,1,19,20]]],[21,2,2,20,22,[[674,1,1,20,21],[677,1,1,21,22]]],[23,1,1,22,23,[[766,1,1,22,23]]],[36,1,1,23,24,[[910,1,1,23,24]]],[37,2,1,24,25,[[919,2,1,24,25]]]],[1340,4424,13053,13465,13481,13958,14013,14021,14192,14350,14516,15373,15416,15595,15995,16170,16256,16830,16978,17264,17592,17633,19477,22858,23016]]],["long",[2,2,[[17,1,1,0,1,[[442,1,1,0,1]]],[18,1,1,1,2,[[512,1,1,1,2]]]],[13027,14427]]],["many",[3,3,[[10,1,1,0,1,[[312,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[37,1,1,2,3,[[917,1,1,2,3]]]],[9496,15982,22965]]],["much",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16856]]],["nor",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17644]]],["oft",[2,2,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[13372,15153]]],["profit",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[690]]],["that",[5,5,[[14,1,1,0,1,[[408,1,1,0,1]]],[20,2,2,1,3,[[659,1,1,1,2],[666,1,1,2,3]]],[21,2,2,3,5,[[675,1,1,3,4],[678,1,1,4,5]]]],[12160,17324,17465,17606,17644]]],["thing",[3,2,[[20,1,1,0,1,[[659,1,1,0,1]]],[24,2,1,1,2,[[798,2,1,1,2]]]],[17324,20345]]],["what",[212,186,[[0,13,13,0,13,[[1,1,1,0,1],[14,1,1,1,2],[19,1,1,2,3],[22,1,1,3,4],[26,1,1,4,5],[28,1,1,5,6],[30,4,4,6,10],[36,1,1,10,11],[38,1,1,11,12],[43,1,1,12,13]]],[1,9,9,13,22,[[51,1,1,13,14],[52,1,1,14,15],[59,1,1,15,16],[65,3,3,16,19],[81,2,2,19,21],[82,1,1,21,22]]],[3,8,7,22,29,[[125,1,1,22,23],[129,4,3,23,26],[131,1,1,26,27],[132,1,1,27,28],[138,1,1,28,29]]],[4,3,3,29,32,[[162,1,1,29,30],[181,1,1,30,31],[184,1,1,31,32]]],[5,3,3,32,35,[[193,3,3,32,35]]],[6,11,9,35,44,[[217,1,1,35,36],[218,1,1,36,37],[223,1,1,37,38],[224,1,1,38,39],[225,1,1,39,40],[226,1,1,40,41],[228,5,3,41,44]]],[8,18,14,44,58,[[244,2,1,44,45],[245,1,1,45,46],[249,1,1,46,47],[254,1,1,47,48],[255,4,3,48,51],[256,1,1,51,52],[257,1,1,52,53],[260,1,1,53,54],[261,2,1,54,55],[263,2,2,55,57],[264,2,1,57,58]]],[9,6,6,58,64,[[273,1,1,58,59],[282,1,1,59,60],[283,1,1,60,61],[284,1,1,61,62],[290,2,2,62,64]]],[10,5,5,64,69,[[293,1,1,64,65],[301,1,1,65,66],[304,2,2,66,68],[309,1,1,68,69]]],[11,5,5,69,74,[[314,1,1,69,70],[316,2,2,70,72],[318,1,1,72,73],[320,1,1,73,74]]],[12,3,3,74,77,[[349,1,1,74,75],[358,2,2,75,77]]],[13,5,5,77,82,[[367,1,1,77,78],[385,1,1,78,79],[386,1,1,79,80],[391,1,1,80,81],[398,1,1,81,82]]],[14,1,1,82,83,[[411,1,1,82,83]]],[15,2,2,83,85,[[414,2,2,83,85]]],[16,9,7,85,92,[[427,1,1,85,86],[429,1,1,86,87],[430,2,2,87,89],[432,1,1,89,90],[433,1,1,90,91],[434,3,1,91,92]]],[17,23,20,92,112,[[441,2,2,92,94],[442,1,1,94,95],[446,2,1,95,96],[448,1,1,96,97],[450,1,1,97,98],[451,1,1,98,99],[456,2,2,99,101],[457,1,1,101,102],[458,1,1,102,103],[462,1,1,103,104],[466,2,2,104,106],[469,2,2,106,108],[470,4,2,108,110],[472,1,1,110,111],[475,1,1,111,112]]],[18,9,9,112,121,[[488,1,1,112,113],[516,2,2,113,115],[533,2,2,115,117],[562,1,1,117,118],[595,1,1,118,119],[597,1,1,119,120],[621,1,1,120,121]]],[19,7,5,121,126,[[631,1,1,121,122],[652,1,1,122,123],[654,1,1,123,124],[657,2,1,124,125],[658,2,1,125,126]]],[20,11,9,126,135,[[660,2,2,126,128],[663,2,2,128,130],[664,5,3,130,133],[669,2,2,133,135]]],[21,2,2,135,137,[[675,1,1,135,136],[678,1,1,136,137]]],[22,8,7,137,144,[[679,1,1,137,138],[688,1,1,138,139],[697,1,1,139,140],[699,2,1,140,141],[718,1,1,141,142],[719,1,1,142,143],[730,1,1,143,144]]],[23,16,13,144,157,[[745,1,1,144,145],[746,3,2,145,147],[748,1,1,147,148],[749,2,2,148,150],[750,1,1,150,151],[751,1,1,151,152],[752,1,1,152,153],[753,1,1,153,154],[760,2,1,154,155],[777,1,1,155,156],[782,2,1,156,157]]],[24,2,2,157,159,[[798,1,1,157,158],[801,1,1,158,159]]],[25,7,7,159,166,[[809,1,1,159,160],[813,1,1,160,161],[818,1,1,161,162],[822,1,1,162,163],[825,1,1,163,164],[834,1,1,164,165],[838,1,1,165,166]]],[26,1,1,166,167,[[861,1,1,166,167]]],[27,4,3,167,170,[[867,2,1,167,168],[870,1,1,168,169],[871,1,1,169,170]]],[28,1,1,170,171,[[878,1,1,170,171]]],[29,3,3,171,174,[[882,1,1,171,172],[885,1,1,172,173],[886,1,1,173,174]]],[31,2,2,174,176,[[889,1,1,174,175],[892,1,1,175,176]]],[32,5,3,176,179,[[898,5,3,176,179]]],[34,2,1,179,180,[[904,2,1,179,180]]],[37,7,5,180,185,[[911,2,1,180,181],[912,2,1,181,182],[914,2,2,182,184],[915,1,1,184,185]]],[38,1,1,185,186,[[927,1,1,185,186]]]],[49,362,504,586,764,810,905,909,910,916,1103,1157,1340,1558,1592,1803,1954,1955,1962,2439,2461,2478,3973,4093,4094,4095,4187,4205,4394,5198,5703,5778,5984,5985,5995,6705,6722,6892,6927,6940,6954,6996,7007,7017,7398,7433,7551,7709,7731,7740,7762,7775,7790,7878,7923,7955,7957,7975,8200,8446,8454,8507,8705,8709,8821,9130,9221,9232,9407,9560,9605,9616,9707,9740,10752,10946,10951,11201,11582,11599,11713,11888,12247,12319,12323,12735,12767,12782,12785,12809,12818,12846,12989,13003,13028,13116,13166,13215,13241,13370,13376,13406,13424,13489,13590,13602,13687,13716,13726,13727,13788,13868,14062,14516,14519,14759,14766,15279,15875,16077,16308,16509,17121,17170,17255,17286,17345,17355,17408,17413,17425,17428,17429,17515,17518,17607,17648,17665,17853,18016,18046,18438,18473,18701,18957,18983,18988,19057,19073,19089,19109,19136,19162,19187,19346,19799,19920,20345,20443,20610,20702,20837,20957,21075,21310,21415,22089,22171,22222,22228,22347,22423,22472,22483,22539,22573,22651,22653,22656,22749,22887,22901,22927,22935,22941,23134]]],["whereby",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[368]]],["wherefore",[30,30,[[0,3,3,0,3,[[23,1,1,0,1],[28,1,1,1,2],[30,1,1,2,3]]],[1,3,3,3,6,[[54,1,1,3,4],[63,1,1,4,5],[66,1,1,5,6]]],[3,6,6,6,12,[[125,1,1,6,7],[127,1,1,7,8],[130,1,1,8,9],[136,1,1,9,10],[138,1,1,10,11],[148,1,1,11,12]]],[5,2,2,12,14,[[193,2,2,12,14]]],[6,1,1,14,15,[[222,1,1,14,15]]],[8,5,5,15,20,[[244,1,1,15,16],[254,1,1,16,17],[256,1,1,17,18],[261,1,1,18,19],[263,1,1,19,20]]],[9,3,3,20,23,[[268,1,1,20,21],[285,2,2,21,23]]],[20,1,1,23,24,[[663,1,1,23,24]]],[23,2,2,24,26,[[771,1,1,24,25],[784,1,1,25,26]]],[26,1,1,26,27,[[859,1,1,26,27]]],[28,1,1,27,28,[[877,1,1,27,28]]],[34,1,1,28,29,[[903,1,1,28,29]]],[38,1,1,29,30,[[926,1,1,29,30]]]],[622,820,903,1654,1900,1985,3972,4035,4111,4316,4412,4725,5983,5986,6872,7412,7711,7786,7920,7951,8071,8523,8546,17403,19613,19956,22035,22328,22744,23118]]],["wherein",[9,9,[[1,2,2,0,2,[[71,1,1,0,1],[82,1,1,1,2]]],[6,3,3,2,5,[[226,3,3,2,5]]],[8,1,1,5,6,[[249,1,1,5,6]]],[17,1,1,6,7,[[441,1,1,6,7]]],[22,1,1,7,8,[[680,1,1,7,8]]],[32,1,1,8,9,[[898,1,1,8,9]]]],[2140,2489,6954,6955,6964,7546,13002,17707,22651]]],["whereto",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13559]]],["wherewith",[7,7,[[6,4,4,0,4,[[216,1,1,0,1],[226,3,3,1,4]]],[8,2,2,4,6,[[241,1,1,4,5],[264,1,1,5,6]]],[9,1,1,6,7,[[287,1,1,6,7]]]],[6669,6955,6959,6962,7333,7971,8583]]],["which",[2,1,[[16,2,1,0,1,[[434,2,1,0,1]]]],[12860]]],["why",[64,60,[[0,5,5,0,5,[[3,1,1,0,1],[11,1,1,1,2],[24,1,1,2,3],[26,1,1,3,4],[46,1,1,4,5]]],[1,3,3,5,8,[[51,1,1,5,6],[54,1,1,6,7],[81,1,1,7,8]]],[3,1,1,8,9,[[136,1,1,8,9]]],[4,1,1,9,10,[[157,1,1,9,10]]],[6,4,4,10,14,[[212,1,1,10,11],[215,1,1,11,12],[216,1,1,12,13],[231,1,1,13,14]]],[7,2,2,14,16,[[232,2,2,14,16]]],[8,7,5,16,21,[[236,3,1,16,17],[241,1,1,17,18],[254,1,1,18,19],[255,1,1,19,20],[262,1,1,20,21]]],[9,7,7,21,28,[[269,1,1,21,22],[277,1,1,22,23],[282,1,1,23,24],[285,2,2,24,26],[286,1,1,26,27],[290,1,1,27,28]]],[10,1,1,28,29,[[292,1,1,28,29]]],[11,1,1,29,30,[[326,1,1,29,30]]],[12,2,1,30,31,[[358,2,1,30,31]]],[13,2,2,31,33,[[391,2,2,31,33]]],[15,1,1,33,34,[[418,1,1,33,34]]],[17,6,6,34,40,[[438,1,1,34,35],[442,2,2,35,37],[444,1,1,37,38],[462,1,1,38,39],[466,1,1,39,40]]],[18,9,8,40,48,[[499,1,1,40,41],[519,2,2,41,43],[520,3,2,43,45],[521,1,1,45,46],[551,1,1,46,47],[565,1,1,47,48]]],[19,2,2,48,50,[[632,1,1,48,49],[649,1,1,49,50]]],[20,3,3,50,53,[[660,1,1,50,51],[665,2,2,51,53]]],[22,1,1,53,54,[[741,1,1,53,54]]],[23,2,2,54,56,[[758,1,1,54,55],[773,1,1,55,56]]],[25,2,2,56,58,[[819,1,1,56,57],[834,1,1,57,58]]],[26,1,1,58,59,[[850,1,1,58,59]]],[32,1,1,59,60,[[896,1,1,59,60]]]],[85,316,680,772,1435,1574,1654,2449,4315,5078,6547,6640,6667,7105,7138,7148,7220,7334,7723,7738,7935,8105,8280,8443,8521,8547,8573,8695,8792,9906,10937,11720,11723,12404,12916,13028,13029,13080,13493,13589,14205,14564,14566,14568,14571,14594,15049,15322,16537,17042,17348,17445,17446,18883,19301,19662,20880,21291,21747,22629]]],["ye",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17722]]]]},{"k":"H4101","v":[["*",[12,10,[[14,3,3,0,3,[[406,1,1,0,1],[409,2,2,1,3]]],[26,9,7,3,10,[[851,6,5,3,8],[853,3,2,8,10]]]],[12132,12191,12196,21773,21780,21786,21787,21803,21840,21872]]],["+",[6,5,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,5,4,1,5,[[851,5,4,1,5]]]],[12191,21773,21786,21787,21803]]],["How",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21840]]],["What",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21872]]],["how",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21840]]],["what",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21780]]],["why",[2,2,[[14,2,2,0,2,[[406,1,1,0,1],[409,1,1,1,2]]]],[12132,12196]]]]},{"k":"H4102","v":[["*",[9,9,[[0,2,2,0,2,[[18,1,1,0,1],[42,1,1,1,2]]],[1,1,1,2,3,[[61,1,1,2,3]]],[6,2,2,3,5,[[213,1,1,3,4],[229,1,1,4,5]]],[9,1,1,5,6,[[281,1,1,5,6]]],[18,1,1,6,7,[[596,1,1,6,7]]],[22,1,1,7,8,[[707,1,1,7,8]]],[34,1,1,8,9,[[904,1,1,8,9]]]],[473,1300,1855,6594,7032,8417,15958,18202,22751]]],["delayed",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15958]]],["lingered",[2,2,[[0,2,2,0,2,[[18,1,1,0,1],[42,1,1,1,2]]]],[473,1300]]],["tarried",[2,2,[[6,2,2,0,2,[[213,1,1,0,1],[229,1,1,1,2]]]],[6594,7032]]],["tarry",[3,3,[[1,1,1,0,1,[[61,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[1855,8417,22751]]],["yourselves",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18202]]]]},{"k":"H4103","v":[["*",[12,12,[[4,2,2,0,2,[[159,1,1,0,1],[180,1,1,1,2]]],[8,3,3,2,5,[[240,2,2,2,4],[249,1,1,4,5]]],[13,1,1,5,6,[[381,1,1,5,6]]],[19,1,1,6,7,[[642,1,1,6,7]]],[22,1,1,7,8,[[700,1,1,7,8]]],[25,2,2,8,10,[[808,1,1,8,9],[823,1,1,9,10]]],[29,1,1,10,11,[[881,1,1,10,11]]],[37,1,1,11,12,[[924,1,1,11,12]]]],[5134,5631,7328,7330,7528,11495,16823,18057,20584,20981,22404,23081]]],["destruction",[3,3,[[4,1,1,0,1,[[159,1,1,0,1]]],[8,2,2,1,3,[[240,2,2,1,3]]]],[5134,7328,7330]]],["discomfiture",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7528]]],["trouble",[3,3,[[19,1,1,0,1,[[642,1,1,0,1]]],[22,1,1,1,2,[[700,1,1,1,2]]],[25,1,1,2,3,[[808,1,1,2,3]]]],[16823,18057,20584]]],["tumult",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23081]]],["tumults",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22404]]],["vexation",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5631]]],["vexations",[1,1,[[13,1,1,0,1,[[381,1,1,0,1]]]],[11495]]],["vexed",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[20981]]]]},{"k":"H4104","v":[["Mehuman",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12712]]]]},{"k":"H4105","v":[["*",[3,3,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[15,1,1,2,3,[[418,1,1,2,3]]]],[1079,10302,12411]]],["Mehetabeel",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12411]]],["Mehetabel",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1079,10302]]]]},{"k":"H4106","v":[["*",[4,4,[[14,1,1,0,1,[[409,1,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]],[19,1,1,2,3,[[649,1,1,2,3]]],[22,1,1,3,4,[[694,1,1,3,4]]]],[12179,14598,17044,17974]]],["diligent",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17044]]],["hasting",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17974]]],["ready",[2,2,[[14,1,1,0,1,[[409,1,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]]],[12179,14598]]]]},{"k":"H4107","v":[["mixed",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17676]]]]},{"k":"H4108","v":[["walk",[1,1,[[37,1,1,0,1,[[913,1,1,0,1]]]],[22919]]]]},{"k":"H4109","v":[["*",[4,4,[[15,1,1,0,1,[[414,1,1,0,1]]],[25,1,1,1,2,[[843,1,1,1,2]]],[31,2,2,2,4,[[891,2,2,2,4]]]],[12313,21556,22561,22562]]],["journey",[3,3,[[15,1,1,0,1,[[414,1,1,0,1]]],[31,2,2,1,3,[[891,2,2,1,3]]]],[12313,22561,22562]]],["walk",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21556]]]]},{"k":"H4110","v":[["praise",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17190]]]]},{"k":"H4111","v":[["Mahalaleel",[7,7,[[0,5,5,0,5,[[4,5,5,0,5]]],[12,1,1,5,6,[[338,1,1,5,6]]],[15,1,1,6,7,[[423,1,1,6,7]]]],[117,118,120,121,122,10254,12592]]]]},{"k":"H4112","v":[["*",[2,2,[[19,2,2,0,2,[[645,1,1,0,1],[646,1,1,1,2]]]],[16907,16954]]],["stripes",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16954]]],["strokes",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16907]]]]},{"k":"H4113","v":[["pits",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16273]]]]},{"k":"H4114","v":[["*",[6,6,[[4,1,1,0,1,[[181,1,1,0,1]]],[22,2,2,1,3,[[679,1,1,1,2],[691,1,1,2,3]]],[23,2,2,3,5,[[793,1,1,3,4],[794,1,1,4,5]]],[29,1,1,5,6,[[882,1,1,5,6]]]],[5702,17661,17925,20145,20206,22421]]],["+",[3,3,[[22,1,1,0,1,[[691,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]],[29,1,1,2,3,[[882,1,1,2,3]]]],[17925,20206,22421]]],["overthrow",[2,2,[[4,1,1,0,1,[[181,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]]],[5702,20145]]],["overthrown",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17661]]]]},{"k":"H4115","v":[["*",[4,4,[[13,1,1,0,1,[[382,1,1,0,1]]],[23,3,3,1,4,[[764,2,2,1,3],[773,1,1,3,4]]]],[11519,19424,19425,19661]]],["prison",[2,2,[[13,1,1,0,1,[[382,1,1,0,1]]],[23,1,1,1,2,[[773,1,1,1,2]]]],[11519,19661]]],["stocks",[2,2,[[23,2,2,0,2,[[764,2,2,0,2]]]],[19424,19425]]]]},{"k":"H4116","v":[["*",[68,64,[[0,13,12,0,12,[[17,3,2,0,2],[18,1,1,2,3],[23,3,3,3,6],[26,1,1,6,7],[40,1,1,7,8],[42,1,1,8,9],[43,1,1,9,10],[44,2,2,10,12]]],[1,4,4,12,16,[[51,1,1,12,13],[59,1,1,13,14],[61,1,1,14,15],[83,1,1,15,16]]],[5,3,3,16,19,[[190,1,1,16,17],[194,2,2,17,19]]],[6,2,2,19,21,[[219,1,1,19,20],[223,1,1,20,21]]],[8,10,10,21,31,[[239,1,1,21,22],[244,1,1,22,23],[252,1,1,23,24],[258,1,1,24,25],[260,4,4,25,29],[263,2,2,29,31]]],[9,3,2,31,33,[[281,2,1,31,32],[285,1,1,32,33]]],[10,3,3,33,36,[[310,2,2,33,35],[312,1,1,35,36]]],[11,1,1,36,37,[[321,1,1,36,37]]],[12,1,1,37,38,[[349,1,1,37,38]]],[13,3,2,38,40,[[384,1,1,38,39],[390,2,1,39,40]]],[16,2,2,40,42,[[430,1,1,40,41],[431,1,1,41,42]]],[17,1,1,42,43,[[440,1,1,42,43]]],[18,6,6,43,49,[[493,1,1,43,44],[546,1,1,44,45],[556,1,1,45,46],[579,1,1,46,47],[583,1,1,47,48],[620,1,1,48,49]]],[19,3,3,49,52,[[628,1,1,49,50],[633,1,1,50,51],[634,1,1,51,52]]],[20,1,1,52,53,[[663,1,1,52,53]]],[22,7,6,53,59,[[683,1,1,53,54],[710,2,1,54,55],[713,1,1,55,56],[727,1,1,56,57],[729,1,1,57,58],[737,1,1,58,59]]],[23,2,2,59,61,[[753,1,1,59,60],[792,1,1,60,61]]],[33,1,1,61,62,[[901,1,1,61,62]]],[34,1,1,62,63,[[903,1,1,62,63]]],[38,1,1,63,64,[[927,1,1,63,64]]]],[430,431,479,609,611,637,747,1227,1320,1335,1367,1371,1572,1793,1849,2504,5920,6016,6021,6802,6894,7311,7403,7666,7837,7879,7884,7895,7903,7962,7966,8403,8527,9441,9449,9489,9769,10728,11550,11682,12784,12803,12964,14096,14952,15193,15523,15664,16300,16416,16558,16598,17399,17758,18263,18324,18653,18687,18807,19193,20096,22704,22737,23125]]],["Haste",[3,3,[[0,2,2,0,2,[[18,1,1,0,1],[44,1,1,1,2]]],[8,1,1,2,3,[[258,1,1,2,3]]]],[479,1367,7837]]],["Hasten",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9489]]],["fearful",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18324]]],["haste",[17,17,[[0,3,3,0,3,[[23,1,1,0,1],[42,1,1,1,2],[44,1,1,2,3]]],[1,3,3,3,6,[[59,1,1,3,4],[61,1,1,4,5],[83,1,1,5,6]]],[6,2,2,6,8,[[219,1,1,6,7],[223,1,1,7,8]]],[8,2,2,8,10,[[244,1,1,8,9],[260,1,1,9,10]]],[16,2,2,10,12,[[430,1,1,10,11],[431,1,1,11,12]]],[19,1,1,12,13,[[628,1,1,12,13]]],[22,2,2,13,15,[[727,1,1,13,14],[737,1,1,14,15]]],[23,1,1,15,16,[[753,1,1,15,16]]],[33,1,1,16,17,[[901,1,1,16,17]]]],[637,1320,1371,1793,1849,2504,6802,6894,7403,7879,12784,12803,16416,18653,18807,19193,22704]]],["hasted",[14,14,[[0,3,3,0,3,[[17,1,1,0,1],[23,2,2,1,3]]],[5,3,3,3,6,[[190,1,1,3,4],[194,2,2,4,6]]],[8,5,5,6,11,[[252,1,1,6,7],[260,3,3,7,10],[263,1,1,10,11]]],[9,1,1,11,12,[[285,1,1,11,12]]],[10,1,1,12,13,[[310,1,1,12,13]]],[11,1,1,13,14,[[321,1,1,13,14]]]],[431,609,611,5920,6016,6021,7666,7884,7895,7903,7966,8527,9449,9769]]],["hasten",[2,2,[[13,1,1,0,1,[[390,1,1,0,1]]],[18,1,1,1,2,[[493,1,1,1,2]]]],[11682,14096]]],["hastened",[2,2,[[0,1,1,0,1,[[17,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]]],[430,11682]]],["hasteneth",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18687]]],["hasteth",[2,2,[[19,1,1,0,1,[[634,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[16598,20096]]],["hastily",[2,2,[[8,1,1,0,1,[[239,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]]],[7311,9441]]],["hasty",[2,2,[[20,1,1,0,1,[[663,1,1,0,1]]],[34,1,1,1,2,[[903,1,1,1,2]]]],[17399,22737]]],["headlong",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12964]]],["quickly",[3,3,[[0,2,2,0,2,[[17,1,1,0,1],[26,1,1,1,2]]],[13,1,1,2,3,[[384,1,1,2,3]]]],[430,747,11550]]],["rash",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18263]]],["ready",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18263]]],["shortly",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1227]]],["soon",[2,2,[[1,1,1,0,1,[[51,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]]],[1572,15664]]],["speed",[2,2,[[9,1,1,0,1,[[281,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]]],[8403,17758]]],["speedily",[5,5,[[0,1,1,0,1,[[43,1,1,0,1]]],[18,4,4,1,5,[[546,1,1,1,2],[556,1,1,2,3],[579,1,1,3,4],[620,1,1,4,5]]]],[1335,14952,15193,15523,16300]]],["straightway",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7962]]],["suddenly",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8403]]],["swift",[3,3,[[12,1,1,0,1,[[349,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]],[38,1,1,2,3,[[927,1,1,2,3]]]],[10728,16558,23125]]]]},{"k":"H4117","v":[["+",[2,1,[[1,2,1,0,1,[[71,2,1,0,1]]]],[2129]]]]},{"k":"H4118","v":[["*",[14,13,[[1,1,1,0,1,[[81,1,1,0,1]]],[4,8,7,1,8,[[156,1,1,1,2],[159,2,2,2,4],[161,4,3,4,7],[180,1,1,7,8]]],[5,1,1,8,9,[[188,1,1,8,9]]],[6,2,2,9,11,[[212,2,2,9,11]]],[19,1,1,11,12,[[652,1,1,11,12]]],[35,1,1,12,13,[[906,1,1,12,13]]]],[2446,5030,5115,5133,5160,5169,5173,5631,5874,6562,6568,17121,22801]]],["hasteth",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22801]]],["hastily",[2,2,[[6,1,1,0,1,[[212,1,1,0,1]]],[19,1,1,1,2,[[652,1,1,1,2]]]],[6568,17121]]],["once",[1,1,[[4,1,1,0,1,[[159,1,1,0,1]]]],[5133]]],["quickly",[8,7,[[1,1,1,0,1,[[81,1,1,0,1]]],[4,5,4,1,5,[[161,4,3,1,4],[180,1,1,4,5]]],[5,1,1,5,6,[[188,1,1,5,6]]],[6,1,1,6,7,[[212,1,1,6,7]]]],[2446,5160,5169,5173,5631,5874,6562]]],["soon",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5030]]],["suddenly",[1,1,[[4,1,1,0,1,[[159,1,1,0,1]]]],[5115]]]]},{"k":"H4119","v":[["dowry",[3,3,[[0,1,1,0,1,[[33,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[8,1,1,2,3,[[253,1,1,2,3]]]],[992,2130,7701]]]]},{"k":"H4120","v":[["*",[20,20,[[3,1,1,0,1,[[132,1,1,0,1]]],[4,1,1,1,2,[[163,1,1,1,2]]],[5,3,3,2,5,[[194,1,1,2,3],[196,1,1,3,4],[209,1,1,4,5]]],[6,1,1,5,6,[[219,1,1,5,6]]],[8,1,1,6,7,[[255,1,1,6,7]]],[9,3,3,7,10,[[283,3,3,7,10]]],[11,1,1,10,11,[[313,1,1,10,11]]],[18,3,3,11,14,[[508,1,1,11,12],[514,1,1,12,13],[624,1,1,13,14]]],[20,2,2,14,16,[[662,1,1,14,15],[666,1,1,15,16]]],[22,2,2,16,18,[[683,1,1,16,17],[736,1,1,17,18]]],[23,1,1,18,19,[[771,1,1,18,19]]],[28,1,1,19,20,[[878,1,1,19,20]]]],[4240,5225,6021,6070,6476,6808,7768,8465,8467,8470,9544,14333,14452,16366,17393,17469,17765,18794,19612,22347]]],["+",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8470]]],["haste",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7768]]],["hastily",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6808]]],["quickly",[9,9,[[3,1,1,0,1,[[132,1,1,0,1]]],[4,1,1,1,2,[[163,1,1,1,2]]],[5,3,3,2,5,[[194,1,1,2,3],[196,1,1,3,4],[209,1,1,4,5]]],[9,2,2,5,7,[[283,2,2,5,7]]],[11,1,1,7,8,[[313,1,1,7,8]]],[20,1,1,8,9,[[662,1,1,8,9]]]],[4240,5225,6021,6070,6476,8465,8467,9544,17393]]],["shortly",[1,1,[[23,1,1,0,1,[[771,1,1,0,1]]]],[19612]]],["soon",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14452]]],["speed",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17765]]],["speedily",[4,4,[[18,1,1,0,1,[[508,1,1,0,1]]],[20,1,1,1,2,[[666,1,1,1,2]]],[22,1,1,2,3,[[736,1,1,2,3]]],[28,1,1,3,4,[[878,1,1,3,4]]]],[14333,17469,18794,22347]]],["swiftly",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16366]]]]},{"k":"H4121","v":[["Maharai",[3,3,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,2,2,1,3,[[348,1,1,1,2],[364,1,1,2,3]]]],[8681,10703,11122]]]]},{"k":"H4122","v":[["Mahershalalhashbaz",[2,2,[[22,2,2,0,2,[[686,2,2,0,2]]]],[17808,17810]]]]},{"k":"H4123","v":[["deceits",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18227]]]]},{"k":"H4124","v":[["*",[181,158,[[0,3,2,0,2,[[18,2,1,0,1],[35,1,1,1,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[3,33,30,3,33,[[137,8,7,3,10],[138,11,9,10,19],[139,3,3,19,22],[140,1,1,22,23],[141,1,1,23,24],[142,2,2,24,26],[147,1,1,26,27],[149,4,4,27,31],[151,1,1,31,32],[152,1,1,32,33]]],[4,10,10,33,43,[[153,1,1,33,34],[154,3,3,34,37],[181,1,1,37,38],[184,1,1,38,39],[186,4,4,39,43]]],[5,2,2,43,45,[[199,1,1,43,44],[210,1,1,44,45]]],[6,16,12,45,57,[[213,8,7,45,52],[220,1,1,52,53],[221,7,4,53,57]]],[7,7,6,57,63,[[232,5,4,57,61],[233,1,1,61,62],[235,1,1,62,63]]],[8,5,4,63,67,[[247,1,1,63,64],[249,1,1,64,65],[257,3,2,65,67]]],[9,4,3,67,70,[[274,3,2,67,69],[289,1,1,69,70]]],[10,2,2,70,72,[[301,2,2,70,72]]],[11,17,15,72,87,[[313,1,1,72,73],[315,13,11,73,84],[325,1,1,84,85],[335,1,1,85,86],[336,1,1,86,87]]],[12,7,6,87,93,[[338,1,1,87,88],[341,1,1,88,89],[345,1,1,89,90],[348,1,1,90,91],[355,3,2,91,93]]],[13,4,4,93,97,[[386,4,4,93,97]]],[18,3,3,97,100,[[537,1,1,97,98],[560,1,1,98,99],[585,1,1,99,100]]],[22,19,16,100,116,[[689,1,1,100,101],[693,8,6,101,107],[694,9,8,107,115],[703,1,1,115,116]]],[23,38,33,116,149,[[753,1,1,116,117],[769,1,1,117,118],[771,1,1,118,119],[784,1,1,119,120],[792,34,29,120,149]]],[25,3,3,149,152,[[826,3,3,149,152]]],[26,1,1,152,153,[[860,1,1,152,153]]],[29,3,2,153,155,[[880,3,2,153,155]]],[32,1,1,155,156,[[898,1,1,155,156]]],[35,2,2,156,158,[[907,2,2,156,158]]]],[494,1075,1935,4351,4353,4355,4360,4366,4368,4369,4376,4378,4379,4382,4383,4385,4389,4396,4411,4422,4423,4433,4463,4472,4492,4552,4676,4804,4808,4809,4810,4846,4892,4897,4946,4947,4956,5680,5807,5840,5844,5845,5847,6186,6485,6580,6582,6583,6585,6596,6597,6598,6817,6844,6846,6847,6854,7128,7129,7133,7149,7155,7193,7469,7555,7790,7791,8211,8221,8673,9115,9141,9534,9580,9581,9583,9586,9589,9594,9597,9598,9599,9600,9602,9891,10178,10204,10298,10407,10583,10695,10892,10901,11588,11597,11609,11610,14815,15247,15751,17898,17961,17962,17964,17965,17968,17969,17971,17973,17975,17976,17980,17981,17982,17983,18128,19201,19555,19599,19952,20081,20082,20084,20089,20091,20093,20095,20096,20098,20100,20104,20105,20106,20108,20109,20111,20113,20115,20116,20118,20119,20120,20121,20122,20123,20124,20125,20126,20127,21091,21092,21094,22077,22380,22381,22653,22813,22814]]],["+",[2,2,[[9,1,1,0,1,[[274,1,1,0,1]]],[12,1,1,1,2,[[355,1,1,1,2]]]],[8221,10901]]],["Moab",[164,147,[[0,2,2,0,2,[[18,1,1,0,1],[35,1,1,1,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[3,32,30,3,33,[[137,8,7,3,10],[138,10,9,10,19],[139,3,3,19,22],[140,1,1,22,23],[141,1,1,23,24],[142,2,2,24,26],[147,1,1,26,27],[149,4,4,27,31],[151,1,1,31,32],[152,1,1,32,33]]],[4,9,9,33,42,[[153,1,1,33,34],[154,2,2,34,36],[181,1,1,36,37],[184,1,1,37,38],[186,4,4,38,42]]],[5,2,2,42,44,[[199,1,1,42,43],[210,1,1,43,44]]],[6,15,12,44,56,[[213,7,7,44,51],[220,1,1,51,52],[221,7,4,52,56]]],[7,7,6,56,62,[[232,5,4,56,60],[233,1,1,60,61],[235,1,1,61,62]]],[8,5,4,62,66,[[247,1,1,62,63],[249,1,1,63,64],[257,3,2,64,66]]],[9,2,2,66,68,[[274,1,1,66,67],[289,1,1,67,68]]],[10,1,1,68,69,[[301,1,1,68,69]]],[11,9,8,69,77,[[313,1,1,69,70],[315,8,7,70,77]]],[12,5,5,77,82,[[338,1,1,77,78],[341,1,1,78,79],[345,1,1,79,80],[348,1,1,80,81],[355,1,1,81,82]]],[13,4,4,82,86,[[386,4,4,82,86]]],[18,3,3,86,89,[[537,1,1,86,87],[560,1,1,87,88],[585,1,1,88,89]]],[22,19,16,89,105,[[689,1,1,89,90],[693,8,6,90,96],[694,9,8,96,104],[703,1,1,104,105]]],[23,38,33,105,138,[[753,1,1,105,106],[769,1,1,106,107],[771,1,1,107,108],[784,1,1,108,109],[792,34,29,109,138]]],[25,3,3,138,141,[[826,3,3,138,141]]],[26,1,1,141,142,[[860,1,1,141,142]]],[29,3,2,142,144,[[880,3,2,142,144]]],[32,1,1,144,145,[[898,1,1,144,145]]],[35,2,2,145,147,[[907,2,2,145,147]]]],[494,1075,1935,4351,4353,4355,4360,4366,4368,4369,4376,4378,4379,4382,4383,4385,4389,4396,4411,4422,4423,4433,4463,4472,4492,4552,4676,4804,4808,4809,4810,4846,4892,4897,4946,4956,5680,5807,5840,5844,5845,5847,6186,6485,6580,6582,6583,6585,6596,6597,6598,6817,6844,6846,6847,6854,7128,7129,7133,7149,7155,7193,7469,7555,7790,7791,8211,8673,9115,9534,9580,9581,9583,9586,9589,9599,9602,10298,10407,10583,10695,10892,11588,11597,11609,11610,14815,15247,15751,17898,17961,17962,17964,17965,17968,17969,17971,17973,17975,17976,17980,17981,17982,17983,18128,19201,19555,19599,19952,20081,20082,20084,20089,20091,20093,20095,20096,20098,20100,20104,20105,20106,20108,20109,20111,20113,20115,20116,20118,20119,20120,20121,20122,20123,20124,20125,20126,20127,21091,21092,21094,22077,22380,22381,22653,22813,22814]]],["Moabites",[15,14,[[0,1,1,0,1,[[18,1,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]],[4,1,1,2,3,[[154,1,1,2,3]]],[6,1,1,3,4,[[213,1,1,3,4]]],[9,1,1,4,5,[[274,1,1,4,5]]],[10,1,1,5,6,[[301,1,1,5,6]]],[11,8,7,6,13,[[315,5,4,6,10],[325,1,1,10,11],[335,1,1,11,12],[336,1,1,12,13]]],[12,1,1,13,14,[[355,1,1,13,14]]]],[494,4379,4947,6596,8211,9141,9594,9597,9598,9600,9891,10178,10204,10892]]]]},{"k":"H4125","v":[["*",[16,16,[[4,3,3,0,3,[[154,2,2,0,2],[175,1,1,2,3]]],[7,7,7,3,10,[[232,2,2,3,5],[233,3,3,5,8],[235,2,2,8,10]]],[10,1,1,10,11,[[301,1,1,10,11]]],[12,1,1,11,12,[[348,1,1,11,12]]],[13,1,1,12,13,[[390,1,1,12,13]]],[14,1,1,13,14,[[411,1,1,13,14]]],[15,2,2,14,16,[[425,2,2,14,16]]]],[4949,4967,5503,7131,7149,7151,7155,7170,7195,7200,9109,10719,11703,12238,12672,12694]]],["Moab",[2,2,[[7,1,1,0,1,[[232,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]]],[7131,12694]]],["Moabite",[3,3,[[4,1,1,0,1,[[175,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]],[15,1,1,2,3,[[425,1,1,2,3]]]],[5503,10719,12672]]],["Moabites",[4,4,[[4,2,2,0,2,[[154,2,2,0,2]]],[10,1,1,2,3,[[301,1,1,2,3]]],[14,1,1,3,4,[[411,1,1,3,4]]]],[4949,4967,9109,12238]]],["Moabitess",[6,6,[[7,5,5,0,5,[[232,1,1,0,1],[233,2,2,1,3],[235,2,2,3,5]]],[13,1,1,5,6,[[390,1,1,5,6]]]],[7149,7151,7170,7195,7200,11703]]],["Moabitish",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7155]]]]},{"k":"H4126","v":[["in",[2,2,[[9,1,1,0,1,[[269,1,1,0,1]]],[25,1,1,1,2,[[844,1,1,1,2]]]],[8106,21583]]]]},{"k":"H4127","v":[["*",[17,17,[[1,1,1,0,1,[[64,1,1,0,1]]],[5,2,2,1,3,[[188,2,2,1,3]]],[8,1,1,3,4,[[249,1,1,3,4]]],[17,1,1,4,5,[[465,1,1,4,5]]],[18,4,4,5,9,[[523,1,1,5,6],[542,1,1,6,7],[552,1,1,7,8],[584,1,1,8,9]]],[22,2,2,9,11,[[692,1,1,9,10],[742,1,1,10,11]]],[23,1,1,11,12,[[793,1,1,11,12]]],[25,1,1,12,13,[[822,1,1,12,13]]],[29,2,2,13,15,[[887,2,2,13,15]]],[33,2,2,15,17,[[900,1,1,15,16],[901,1,1,16,17]]]],[1935,5878,5893,7524,13579,14620,14870,15074,15725,17959,18892,20150,20959,22500,22508,22689,22705]]],["away",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]]],[1935,7524]]],["consumed",[1,1,[[22,1,1,0,1,[[742,1,1,0,1]]]],[18892]]],["dissolved",[3,3,[[18,1,1,0,1,[[552,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]],[33,1,1,2,3,[[901,1,1,2,3]]]],[15074,17959,22705]]],["dissolvest",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13579]]],["faint",[3,3,[[5,2,2,0,2,[[188,2,2,0,2]]],[25,1,1,2,3,[[822,1,1,2,3]]]],[5878,5893,20959]]],["fainthearted",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20150]]],["melt",[3,3,[[29,2,2,0,2,[[887,2,2,0,2]]],[33,1,1,2,3,[[900,1,1,2,3]]]],[22500,22508,22689]]],["melted",[2,2,[[18,2,2,0,2,[[523,1,1,0,1],[584,1,1,1,2]]]],[14620,15725]]],["soft",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14870]]]]},{"k":"H4128","v":[["measured",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22774]]]]},{"k":"H4129","v":[["*",[2,2,[[7,1,1,0,1,[[233,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]]],[7150,16579]]],["kinsman",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7150]]],["kinswoman",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16579]]]]},{"k":"H4130","v":[["kindred",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7174]]]]},{"k":"H4131","v":[["*",[38,36,[[2,1,1,0,1,[[114,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[17,1,1,3,4,[[476,1,1,3,4]]],[18,24,24,4,28,[[487,1,1,4,5],[490,1,1,5,6],[492,1,1,6,7],[493,1,1,7,8],[494,1,1,8,9],[498,1,1,9,10],[507,1,1,10,11],[515,1,1,11,12],[523,3,3,12,15],[532,2,2,15,17],[537,1,1,17,18],[539,2,2,18,20],[559,1,1,20,21],[570,1,1,21,22],[571,1,1,22,23],[573,1,1,23,24],[581,1,1,24,25],[589,1,1,25,26],[602,1,1,26,27],[617,1,1,27,28]]],[19,4,4,28,32,[[637,1,1,28,29],[639,1,1,29,30],[651,1,1,30,31],[652,1,1,31,32]]],[22,6,4,32,36,[[702,2,1,32,33],[718,1,1,33,34],[719,1,1,34,35],[732,2,1,35,36]]]],[3504,5793,10850,13911,14047,14078,14092,14100,14108,14198,14325,14506,14616,14619,14620,14735,14754,14809,14829,14833,15238,15427,15449,15475,15576,15809,16111,16273,16686,16722,17090,17139,18114,18440,18458,18733]]],["+",[3,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[22,2,1,1,2,[[702,2,1,1,2]]]],[3504,18114]]],["carried",[1,1,[[18,1,1,0,1,[[523,1,1,0,1]]]],[14616]]],["cast",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14735]]],["course",[1,1,[[18,1,1,0,1,[[559,1,1,0,1]]]],[15238]]],["down",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17139]]],["fall",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16273]]],["moved",[19,19,[[12,1,1,0,1,[[353,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[18,14,14,2,16,[[487,1,1,2,3],[490,1,1,3,4],[492,1,1,4,5],[493,1,1,5,6],[498,1,1,6,7],[507,1,1,7,8],[523,2,2,8,10],[532,1,1,10,11],[539,2,2,11,13],[570,1,1,13,14],[573,1,1,14,15],[589,1,1,15,16]]],[19,1,1,16,17,[[639,1,1,16,17]]],[22,2,2,17,19,[[718,1,1,17,18],[719,1,1,18,19]]]],[10850,13911,14047,14078,14092,14100,14198,14325,14619,14620,14754,14829,14833,15427,15475,15809,16722,18440,18458]]],["ready",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17090]]],["removed",[5,4,[[18,2,2,0,2,[[581,1,1,0,1],[602,1,1,1,2]]],[19,1,1,2,3,[[637,1,1,2,3]]],[22,2,1,3,4,[[732,2,1,3,4]]]],[15576,16111,16686,18733]]],["shaketh",[1,1,[[18,1,1,0,1,[[537,1,1,0,1]]]],[14809]]],["slide",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5793]]],["slip",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14108]]],["slippeth",[2,2,[[18,2,2,0,2,[[515,1,1,0,1],[571,1,1,1,2]]]],[14506,15449]]]]},{"k":"H4132","v":[["*",[6,6,[[3,3,3,0,3,[[120,2,2,0,2],[129,1,1,2,3]]],[18,2,2,3,5,[[543,1,1,3,4],[598,1,1,4,5]]],[33,1,1,5,6,[[900,1,1,5,6]]]],[3753,3755,4098,14882,16084,22697]]],["bar",[2,2,[[3,2,2,0,2,[[120,2,2,0,2]]]],[3753,3755]]],["moved",[2,2,[[18,2,2,0,2,[[543,1,1,0,1],[598,1,1,1,2]]]],[14882,16084]]],["staff",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4098]]],["yoke",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22697]]]]},{"k":"H4133","v":[["*",[12,10,[[2,1,1,0,1,[[115,1,1,0,1]]],[12,1,1,1,2,[[352,1,1,1,2]]],[22,3,2,2,4,[[736,3,2,2,4]]],[23,5,4,4,8,[[771,1,1,4,5],[772,4,3,5,8]]],[25,2,2,8,10,[[831,1,1,8,9],[835,1,1,9,10]]]],[3537,10806,18792,18795,19598,19628,19630,19631,21222,21340]]],["bands",[2,2,[[2,1,1,0,1,[[115,1,1,0,1]]],[25,1,1,1,2,[[835,1,1,1,2]]]],[3537,21340]]],["heavy",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18792]]],["staves",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10806]]],["yoke",[4,4,[[22,2,2,0,2,[[736,2,2,0,2]]],[23,2,2,2,4,[[772,2,2,2,4]]]],[18792,18795,19628,19630]]],["yokes",[4,3,[[23,3,2,0,2,[[771,1,1,0,1],[772,2,1,1,2]]],[25,1,1,2,3,[[831,1,1,2,3]]]],[19598,19631,21222]]]]},{"k":"H4134","v":[["*",[5,5,[[2,5,5,0,5,[[114,4,4,0,4],[116,1,1,4,5]]]],[3494,3504,3508,3516,3578]]],["poor",[4,4,[[2,4,4,0,4,[[114,4,4,0,4]]]],[3494,3504,3508,3516]]],["poorer",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3578]]]]},{"k":"H4135","v":[["*",[37,33,[[0,17,15,0,15,[[16,11,10,0,10],[20,1,1,10,11],[33,5,4,11,15]]],[1,2,2,15,17,[[61,2,2,15,17]]],[2,1,1,17,18,[[101,1,1,17,18]]],[4,2,2,18,20,[[162,1,1,18,19],[182,1,1,19,20]]],[5,8,6,20,26,[[191,8,6,20,26]]],[18,5,5,26,31,[[535,1,1,26,27],[567,1,1,27,28],[595,3,3,28,31]]],[23,2,2,31,33,[[748,1,1,31,32],[753,1,1,32,33]]]],[407,408,409,410,411,420,421,422,423,424,517,995,997,1002,1004,1860,1864,3047,5202,5714,5936,5937,5938,5939,5941,5942,14786,15384,15879,15880,15881,19031,19200]]],["+",[7,6,[[0,5,4,0,4,[[16,5,4,0,4]]],[4,1,1,4,5,[[182,1,1,4,5]]],[5,1,1,5,6,[[191,1,1,5,6]]]],[408,410,420,422,5714,5937]]],["Circumcise",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5202]]],["circumcise",[2,2,[[5,2,2,0,2,[[191,2,2,0,2]]]],[5936,5938]]],["circumcised",[20,17,[[0,12,11,0,11,[[16,6,6,0,6],[20,1,1,6,7],[33,5,4,7,11]]],[1,2,2,11,13,[[61,2,2,11,13]]],[2,1,1,13,14,[[101,1,1,13,14]]],[5,4,2,14,16,[[191,4,2,14,16]]],[23,1,1,16,17,[[753,1,1,16,17]]]],[407,409,411,421,423,424,517,995,997,1002,1004,1860,1864,3047,5939,5941,19200]]],["circumcising",[1,1,[[5,1,1,0,1,[[191,1,1,0,1]]]],[5942]]],["destroy",[3,3,[[18,3,3,0,3,[[595,3,3,0,3]]]],[15879,15880,15881]]],["down",[1,1,[[18,1,1,0,1,[[567,1,1,0,1]]]],[15384]]],["pieces",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14786]]],["yourselves",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19031]]]]},{"k":"H4136","v":[["*",[35,33,[[1,8,8,0,8,[[67,1,1,0,1],[75,1,1,1,2],[77,3,3,2,5],[83,1,1,5,6],[88,2,2,6,8]]],[2,2,2,8,10,[[94,1,1,8,9],[97,1,1,9,10]]],[3,3,3,10,13,[[124,2,2,10,12],[138,1,1,12,13]]],[4,6,6,13,19,[[153,1,1,13,14],[154,1,1,14,15],[155,1,1,15,16],[156,1,1,16,17],[163,1,1,17,18],[186,1,1,18,19]]],[5,6,5,19,24,[[194,2,1,19,20],[195,1,1,20,21],[204,1,1,21,22],[205,1,1,22,23],[208,1,1,23,24]]],[8,3,2,24,26,[[249,2,1,24,25],[252,1,1,25,26]]],[9,2,2,26,28,[[271,1,1,26,27],[277,1,1,27,28]]],[10,1,1,28,29,[[297,1,1,28,29]]],[12,1,1,29,30,[[351,1,1,29,30]]],[13,1,1,30,31,[[370,1,1,30,31]]],[15,1,1,31,32,[[424,1,1,31,32]]],[32,1,1,32,33,[[894,1,1,32,33]]]],[2018,2244,2318,2320,2330,2499,2682,2684,2838,2926,3941,3942,4380,4893,4957,5004,5050,5238,5845,6035,6038,6311,6367,6437,7513,7648,8155,8274,8973,10788,11256,12662,22603]]],["+",[21,21,[[1,8,8,0,8,[[67,1,1,0,1],[75,1,1,1,2],[77,3,3,2,5],[83,1,1,5,6],[88,2,2,6,8]]],[2,2,2,8,10,[[94,1,1,8,9],[97,1,1,9,10]]],[3,3,3,10,13,[[124,2,2,10,12],[138,1,1,12,13]]],[5,1,1,13,14,[[208,1,1,13,14]]],[8,1,1,14,15,[[252,1,1,14,15]]],[9,2,2,15,17,[[271,1,1,15,16],[277,1,1,16,17]]],[10,1,1,17,18,[[297,1,1,17,18]]],[12,1,1,18,19,[[351,1,1,18,19]]],[13,1,1,19,20,[[370,1,1,19,20]]],[32,1,1,20,21,[[894,1,1,20,21]]]],[2018,2244,2318,2320,2330,2499,2682,2684,2838,2926,3941,3942,4380,6437,7648,8155,8274,8973,10788,11256,22603]]],["against",[13,11,[[4,6,6,0,6,[[153,1,1,0,1],[154,1,1,1,2],[155,1,1,2,3],[156,1,1,3,4],[163,1,1,4,5],[186,1,1,5,6]]],[5,4,3,6,9,[[194,2,1,6,7],[195,1,1,7,8],[204,1,1,8,9]]],[8,2,1,9,10,[[249,2,1,9,10]]],[15,1,1,10,11,[[424,1,1,10,11]]]],[4893,4957,5004,5050,5238,5845,6035,6038,6311,7513,12662]]],["before",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6367]]]]},{"k":"H4137","v":[["Moladah",[4,4,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]],[12,1,1,2,3,[[341,1,1,2,3]]],[15,1,1,3,4,[[423,1,1,3,4]]]],[6228,6323,10413,12614]]]]},{"k":"H4138","v":[["*",[22,21,[[0,9,9,0,9,[[10,1,1,0,1],[11,1,1,1,2],[23,2,2,2,4],[30,2,2,4,6],[31,1,1,6,7],[42,1,1,7,8],[47,1,1,8,9]]],[2,3,2,9,11,[[107,3,2,9,11]]],[3,1,1,11,12,[[126,1,1,11,12]]],[7,1,1,12,13,[[233,1,1,12,13]]],[16,3,3,13,16,[[427,2,2,13,15],[433,1,1,15,16]]],[23,2,2,16,18,[[766,1,1,16,17],[790,1,1,17,18]]],[25,3,3,18,21,[[817,2,2,18,20],[824,1,1,20,21]]]],[294,299,595,598,876,886,937,1297,1457,3260,3262,4018,7160,12734,12744,12823,19464,20061,20765,20766,21022]]],["+",[1,1,[[0,1,1,0,1,[[11,1,1,0,1]]]],[299]]],["begotten",[1,1,[[2,1,1,0,1,[[107,1,1,0,1]]]],[3262]]],["born",[2,1,[[2,2,1,0,1,[[107,2,1,0,1]]]],[3260]]],["issue",[1,1,[[0,1,1,0,1,[[47,1,1,0,1]]]],[1457]]],["kindred",[10,10,[[0,6,6,0,6,[[23,2,2,0,2],[30,2,2,2,4],[31,1,1,4,5],[42,1,1,5,6]]],[3,1,1,6,7,[[126,1,1,6,7]]],[16,3,3,7,10,[[427,2,2,7,9],[433,1,1,9,10]]]],[595,598,876,886,937,1297,4018,12734,12744,12823]]],["native",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19464]]],["nativity",[6,6,[[0,1,1,0,1,[[10,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[23,1,1,2,3,[[790,1,1,2,3]]],[25,3,3,3,6,[[817,2,2,3,5],[824,1,1,5,6]]]],[294,7160,20061,20765,20766,21022]]]]},{"k":"H4139","v":[["circumcision",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1627]]]]},{"k":"H4140","v":[["Molid",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10335]]]]},{"k":"H4141","v":[["about",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21533]]]]},{"k":"H4142","v":[["*",[4,4,[[1,3,3,0,3,[[77,1,1,0,1],[88,2,2,1,3]]],[25,1,1,3,4,[[842,1,1,3,4]]]],[2304,2670,2677,21550]]],["in",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2670]]],["inclosed",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2677]]],["set",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2304]]],["turning",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21550]]]]},{"k":"H4143","v":[["foundation",[2,2,[[13,1,1,0,1,[[374,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]]],[11362,18180]]]]},{"k":"H4144","v":[]},{"k":"H4145","v":[["grounded",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18249]]]]},{"k":"H4146","v":[["*",[13,13,[[4,1,1,0,1,[[184,1,1,0,1]]],[9,2,2,1,3,[[288,2,2,1,3]]],[18,3,3,3,6,[[495,2,2,3,5],[559,1,1,5,6]]],[19,1,1,6,7,[[635,1,1,6,7]]],[22,3,3,7,10,[[702,1,1,7,8],[718,1,1,8,9],[736,1,1,9,10]]],[23,2,2,10,12,[[775,1,1,10,11],[795,1,1,11,12]]],[32,1,1,12,13,[[898,1,1,12,13]]]],[5780,8610,8618,14125,14133,15238,16631,18113,18441,18798,19728,20238,22650]]],["+",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18441]]],["foundations",[12,12,[[4,1,1,0,1,[[184,1,1,0,1]]],[9,2,2,1,3,[[288,2,2,1,3]]],[18,3,3,3,6,[[495,2,2,3,5],[559,1,1,5,6]]],[19,1,1,6,7,[[635,1,1,6,7]]],[22,2,2,7,9,[[702,1,1,7,8],[736,1,1,8,9]]],[23,2,2,9,11,[[775,1,1,9,10],[795,1,1,10,11]]],[32,1,1,11,12,[[898,1,1,11,12]]]],[5780,8610,8618,14125,14133,15238,16631,18113,18798,19728,20238,22650]]]]},{"k":"H4147","v":[["*",[11,11,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,3,3,1,4,[[479,1,1,1,2],[584,1,1,2,3],[593,1,1,3,4]]],[22,2,2,4,6,[[706,1,1,4,5],[730,1,1,5,6]]],[23,4,4,6,10,[[746,1,1,6,7],[749,1,1,7,8],[771,1,1,8,9],[774,1,1,9,10]]],[33,1,1,10,11,[[900,1,1,10,11]]]],[13839,13948,15713,15864,18186,18698,18985,19063,19598,19675,22697]]],["+",[2,2,[[18,1,1,0,1,[[479,1,1,0,1]]],[33,1,1,1,2,[[900,1,1,1,2]]]],[13948,22697]]],["bands",[5,5,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]],[22,2,2,2,4,[[706,1,1,2,3],[730,1,1,3,4]]],[23,1,1,4,5,[[746,1,1,4,5]]]],[13839,15713,18186,18698,18985]]],["bonds",[4,4,[[18,1,1,0,1,[[593,1,1,0,1]]],[23,3,3,1,4,[[749,1,1,1,2],[771,1,1,2,3],[774,1,1,3,4]]]],[15864,19063,19598,19675]]]]},{"k":"H4148","v":[["*",[50,50,[[4,1,1,0,1,[[163,1,1,0,1]]],[17,4,4,1,5,[[440,1,1,1,2],[447,1,1,2,3],[455,1,1,3,4],[471,1,1,4,5]]],[18,1,1,5,6,[[527,1,1,5,6]]],[19,30,30,6,36,[[628,4,4,6,10],[630,1,1,10,11],[631,2,2,11,13],[632,2,2,13,15],[633,1,1,15,16],[634,1,1,16,17],[635,2,2,17,19],[637,1,1,19,20],[639,1,1,20,21],[640,3,3,21,24],[642,4,4,24,28],[643,1,1,28,29],[646,2,2,29,31],[649,1,1,31,32],[650,3,3,32,35],[651,1,1,35,36]]],[22,2,2,36,38,[[704,1,1,36,37],[731,1,1,37,38]]],[23,8,8,38,46,[[746,1,1,38,39],[749,1,1,39,40],[751,1,1,40,41],[754,1,1,41,42],[761,1,1,42,43],[774,1,1,43,44],[776,1,1,44,45],[779,1,1,45,46]]],[25,1,1,46,47,[[806,1,1,46,47]]],[27,1,1,47,48,[[866,1,1,47,48]]],[35,2,2,48,50,[[908,2,2,48,50]]]],[5210,12968,13146,13329,13746,14685,16402,16403,16407,16408,16466,16491,16503,16529,16540,16563,16597,16612,16635,16673,16720,16748,16765,16771,16812,16817,16839,16840,16862,16945,16952,17030,17056,17057,17067,17111,18146,18716,18995,19061,19147,19209,19380,19681,19764,19836,20561,22154,22822,22827]]],["Correction",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16817]]],["bond",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13146]]],["chasteneth",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16771]]],["chastening",[3,3,[[17,1,1,0,1,[[440,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]],[22,1,1,2,3,[[704,1,1,2,3]]]],[12968,16466,18146]]],["chastisement",[3,3,[[4,1,1,0,1,[[163,1,1,0,1]]],[22,1,1,1,2,[[731,1,1,1,2]]],[23,1,1,2,3,[[774,1,1,2,3]]]],[5210,18716,19681]]],["check",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13329]]],["correction",[7,7,[[19,3,3,0,3,[[634,1,1,0,1],[649,1,1,1,2],[650,1,1,2,3]]],[23,3,3,3,6,[[746,1,1,3,4],[749,1,1,4,5],[751,1,1,5,6]]],[35,1,1,6,7,[[908,1,1,6,7]]]],[16597,17030,17057,18995,19061,19147,22822]]],["discipline",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13746]]],["doctrine",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19209]]],["instruction",[30,30,[[18,1,1,0,1,[[527,1,1,0,1]]],[19,24,24,1,25,[[628,4,4,1,5],[631,2,2,5,7],[632,2,2,7,9],[633,1,1,9,10],[635,2,2,10,12],[637,1,1,12,13],[639,1,1,13,14],[640,2,2,14,16],[642,3,3,16,19],[643,1,1,19,20],[646,2,2,20,22],[650,2,2,22,24],[651,1,1,24,25]]],[23,3,3,25,28,[[761,1,1,25,26],[776,1,1,26,27],[779,1,1,27,28]]],[25,1,1,28,29,[[806,1,1,28,29]]],[35,1,1,29,30,[[908,1,1,29,30]]]],[14685,16402,16403,16407,16408,16491,16503,16529,16540,16563,16612,16635,16673,16720,16748,16765,16812,16839,16840,16862,16945,16952,17056,17067,17111,19380,19764,19836,20561,22827]]],["rebuker",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22154]]]]},{"k":"H4149","v":[["*",[3,3,[[3,2,2,0,2,[[149,2,2,0,2]]],[4,1,1,2,3,[[162,1,1,2,3]]]],[4790,4791,5192]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4791]]],["Mosera",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5192]]],["Moseroth",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4790]]]]},{"k":"H4150","v":[["*",[223,213,[[0,4,4,0,4,[[0,1,1,0,1],[16,1,1,1,2],[17,1,1,2,3],[20,1,1,3,4]]],[1,38,37,4,41,[[58,1,1,4,5],[62,1,1,5,6],[72,1,1,6,7],[76,1,1,7,8],[77,1,1,8,9],[78,7,7,9,16],[79,5,5,16,21],[80,1,1,21,22],[82,2,1,22,23],[83,1,1,23,24],[84,1,1,24,25],[87,2,2,25,27],[88,2,2,27,29],[89,12,12,29,41]]],[2,49,45,41,86,[[90,3,3,41,44],[92,3,3,44,47],[93,8,6,47,53],[95,3,3,53,56],[97,5,5,56,61],[98,2,2,61,63],[99,2,2,63,65],[101,1,1,65,66],[103,2,2,66,68],[104,2,2,68,70],[105,6,6,70,76],[106,4,4,76,80],[108,1,1,80,81],[112,6,4,81,85],[113,1,1,85,86]]],[3,65,63,86,149,[[117,1,1,86,87],[118,2,2,87,89],[119,5,4,89,93],[120,16,15,93,108],[122,3,3,108,111],[123,2,2,111,113],[124,6,6,113,119],[125,4,4,119,123],[126,2,2,123,125],[127,1,1,125,126],[128,1,1,126,127],[130,1,1,127,128],[131,1,1,128,129],[132,6,6,129,135],[133,1,1,135,136],[134,6,6,136,142],[135,1,1,142,143],[136,1,1,143,144],[141,1,1,144,145],[143,1,1,145,146],[144,1,1,146,147],[145,1,1,147,148],[147,1,1,148,149]]],[4,4,3,149,152,[[168,1,1,149,150],[183,3,2,150,152]]],[5,3,3,152,155,[[194,1,1,152,153],[204,1,1,153,154],[205,1,1,154,155]]],[6,1,1,155,156,[[230,1,1,155,156]]],[8,5,5,156,161,[[237,1,1,156,157],[244,1,1,157,158],[248,2,2,158,160],[255,1,1,160,161]]],[9,2,2,161,163,[[286,1,1,161,162],[290,1,1,162,163]]],[10,1,1,163,164,[[298,1,1,163,164]]],[11,2,2,164,166,[[316,2,2,164,166]]],[12,4,4,166,170,[[343,1,1,166,167],[346,1,1,167,168],[360,2,2,168,170]]],[13,8,8,170,178,[[367,3,3,170,173],[368,1,1,173,174],[371,1,1,174,175],[374,1,1,175,176],[396,1,1,176,177],[397,1,1,177,178]]],[14,1,1,178,179,[[405,1,1,178,179]]],[15,1,1,179,180,[[422,1,1,179,180]]],[17,1,1,180,181,[[465,1,1,180,181]]],[18,5,5,181,186,[[551,2,2,181,183],[552,1,1,183,184],[579,1,1,184,185],[581,1,1,185,186]]],[22,3,3,186,189,[[679,1,1,186,187],[692,1,1,187,188],[711,1,1,188,189]]],[23,2,2,189,191,[[752,1,1,189,190],[790,1,1,190,191]]],[24,6,5,191,196,[[797,2,2,191,193],[798,4,3,193,196]]],[25,5,5,196,201,[[837,1,1,196,197],[845,1,1,197,198],[846,1,1,198,199],[847,2,2,199,201]]],[26,6,5,201,206,[[857,1,1,201,202],[860,3,3,202,205],[861,2,1,205,206]]],[27,4,4,206,210,[[863,2,2,206,208],[870,1,1,208,209],[873,1,1,209,210]]],[34,1,1,210,211,[[904,1,1,210,211]]],[35,1,1,211,212,[[908,1,1,211,212]]],[37,1,1,212,213,[[918,1,1,212,213]]]],[13,418,438,515,1747,1877,2159,2293,2336,2340,2346,2347,2366,2368,2378,2380,2398,2400,2402,2408,2418,2427,2480,2514,2552,2641,2663,2696,2704,2709,2713,2714,2719,2729,2731,2733,2736,2737,2739,2741,2742,2746,2748,2750,2780,2786,2791,2799,2800,2802,2809,2811,2813,2865,2875,2879,2920,2921,2948,2950,2952,2958,2976,2984,2986,3050,3122,3134,3182,3197,3208,3217,3218,3221,3224,3234,3239,3240,3241,3244,3302,3404,3406,3439,3446,3449,3605,3660,3675,3699,3700,3717,3730,3746,3747,3758,3766,3768,3771,3773,3774,3776,3778,3780,3782,3784,3786,3790,3833,3836,3841,3855,3939,3948,3954,3958,3961,3963,3965,3967,3968,3972,3978,3991,3998,4040,4063,4118,4156,4196,4212,4213,4236,4237,4244,4248,4261,4263,4278,4279,4280,4288,4293,4317,4477,4556,4579,4647,4718,5348,5738,5742,6016,6294,6372,7092,7262,7415,7493,7496,7765,8559,8707,8989,9619,9620,10486,10636,11014,11015,11197,11200,11207,11215,11273,11359,11849,11857,12102,12582,13580,15052,15056,15073,15534,15590,17668,17941,18299,19160,20062,20314,20325,20338,20339,20354,21397,21623,21647,21664,21666,21980,22063,22065,22071,22088,22114,22116,22213,22261,22751,22838,22995]]],["+",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22838]]],["appointed",[12,12,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[72,1,1,1,2]]],[5,1,1,2,3,[[194,1,1,2,3]]],[8,2,2,3,5,[[248,1,1,3,4],[255,1,1,4,5]]],[9,1,1,5,6,[[290,1,1,5,6]]],[17,1,1,6,7,[[465,1,1,6,7]]],[23,1,1,7,8,[[790,1,1,7,8]]],[26,4,4,8,12,[[857,1,1,8,9],[860,3,3,9,12]]]],[438,2159,6016,7496,7765,8707,13580,20062,21980,22063,22065,22071]]],["assemblies",[1,1,[[25,1,1,0,1,[[845,1,1,0,1]]]],[21623]]],["assembly",[2,2,[[24,2,2,0,2,[[797,1,1,0,1],[798,1,1,1,2]]]],[20325,20338]]],["congregation",[149,143,[[1,34,33,0,33,[[76,1,1,0,1],[77,1,1,1,2],[78,7,7,2,9],[79,5,5,9,14],[80,1,1,14,15],[82,2,1,15,16],[84,1,1,16,17],[87,2,2,17,19],[88,2,2,19,21],[89,12,12,21,33]]],[2,43,41,33,74,[[90,3,3,33,36],[92,3,3,36,39],[93,8,6,39,45],[95,3,3,45,48],[97,5,5,48,53],[98,2,2,53,55],[99,2,2,55,57],[101,1,1,57,58],[103,2,2,58,60],[104,2,2,60,62],[105,6,6,62,68],[106,4,4,68,72],[108,1,1,72,73],[113,1,1,73,74]]],[3,57,55,74,129,[[117,1,1,74,75],[118,2,2,75,77],[119,5,4,77,81],[120,16,15,81,96],[122,3,3,96,99],[123,2,2,99,101],[124,6,6,101,107],[126,1,1,107,108],[127,1,1,108,109],[128,1,1,109,110],[130,1,1,110,111],[132,6,6,111,117],[133,1,1,117,118],[134,6,6,118,124],[135,1,1,124,125],[136,1,1,125,126],[141,1,1,126,127],[143,1,1,127,128],[147,1,1,128,129]]],[4,2,1,129,130,[[183,2,1,129,130]]],[5,2,2,130,132,[[204,1,1,130,131],[205,1,1,131,132]]],[8,1,1,132,133,[[237,1,1,132,133]]],[10,1,1,133,134,[[298,1,1,133,134]]],[12,3,3,134,137,[[343,1,1,134,135],[346,1,1,135,136],[360,1,1,136,137]]],[13,4,4,137,141,[[367,3,3,137,140],[371,1,1,140,141]]],[18,1,1,141,142,[[552,1,1,141,142]]],[22,1,1,142,143,[[692,1,1,142,143]]]],[2293,2336,2340,2346,2347,2366,2368,2378,2380,2398,2400,2402,2408,2418,2427,2480,2552,2641,2663,2696,2704,2709,2713,2714,2719,2729,2731,2733,2736,2737,2739,2741,2742,2746,2748,2750,2780,2786,2791,2799,2800,2802,2809,2811,2813,2865,2875,2879,2920,2921,2948,2950,2952,2958,2976,2984,2986,3050,3122,3134,3182,3197,3208,3217,3218,3221,3224,3234,3239,3240,3241,3244,3302,3449,3605,3660,3675,3699,3700,3717,3730,3746,3747,3758,3766,3768,3771,3773,3774,3776,3778,3780,3782,3784,3786,3790,3833,3836,3841,3855,3939,3948,3954,3958,3961,3963,3965,3991,4040,4063,4118,4196,4212,4213,4236,4237,4244,4248,4261,4263,4278,4279,4280,4288,4293,4317,4477,4556,4718,5742,6294,6372,7262,8989,10486,10636,11015,11197,11200,11207,11273,15073,17941]]],["congregations",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15052]]],["days",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[3998]]],["feast",[3,3,[[13,1,1,0,1,[[396,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]],[27,1,1,2,3,[[873,1,1,2,3]]]],[11849,20339,22261]]],["feasts",[20,19,[[2,5,4,0,4,[[112,5,4,0,4]]],[3,2,2,4,6,[[131,1,1,4,5],[145,1,1,5,6]]],[12,1,1,6,7,[[360,1,1,6,7]]],[13,3,3,7,10,[[368,1,1,7,8],[374,1,1,8,9],[397,1,1,9,10]]],[14,1,1,10,11,[[405,1,1,10,11]]],[15,1,1,11,12,[[422,1,1,11,12]]],[22,1,1,12,13,[[679,1,1,12,13]]],[24,2,2,13,15,[[797,1,1,13,14],[798,1,1,14,15]]],[25,2,2,15,17,[[837,1,1,15,16],[847,1,1,16,17]]],[27,1,1,17,18,[[863,1,1,17,18]]],[37,1,1,18,19,[[918,1,1,18,19]]]],[3404,3406,3439,3446,4156,4647,11014,11215,11359,11857,12102,12582,17668,20314,20338,21397,21664,22116,22995]]],["season",[10,10,[[1,1,1,0,1,[[62,1,1,0,1]]],[3,5,5,1,6,[[125,4,4,1,5],[144,1,1,5,6]]],[4,1,1,6,7,[[168,1,1,6,7]]],[11,2,2,7,9,[[316,2,2,7,9]]],[27,1,1,9,10,[[863,1,1,9,10]]]],[1877,3967,3968,3972,3978,4579,5348,9619,9620,22114]]],["seasons",[3,3,[[0,1,1,0,1,[[0,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]]],[13,3406,15590]]],["sign",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7092]]],["solemn",[2,2,[[24,1,1,0,1,[[798,1,1,0,1]]],[27,1,1,1,2,[[870,1,1,1,2]]]],[20354,22213]]],["solemnities",[3,3,[[22,1,1,0,1,[[711,1,1,0,1]]],[25,2,2,1,3,[[846,1,1,1,2],[847,1,1,2,3]]]],[18299,21647,21666]]],["solemnity",[1,1,[[4,1,1,0,1,[[183,1,1,0,1]]]],[5738]]],["synagogues",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15056]]],["time",[10,10,[[0,2,2,0,2,[[16,1,1,0,1],[20,1,1,1,2]]],[1,2,2,2,4,[[58,1,1,2,3],[83,1,1,3,4]]],[8,2,2,4,6,[[244,1,1,4,5],[248,1,1,5,6]]],[9,1,1,6,7,[[286,1,1,6,7]]],[18,1,1,7,8,[[579,1,1,7,8]]],[26,1,1,8,9,[[861,1,1,8,9]]],[34,1,1,9,10,[[904,1,1,9,10]]]],[418,515,1747,2514,7415,7493,8559,15534,22088,22751]]],["times",[2,2,[[23,1,1,0,1,[[752,1,1,0,1]]],[26,1,1,1,2,[[861,1,1,1,2]]]],[19160,22088]]]]},{"k":"H4151","v":[["times",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17959]]]]},{"k":"H4152","v":[["appointed",[1,1,[[5,1,1,0,1,[[206,1,1,0,1]]]],[6381]]]]},{"k":"H4153","v":[["Moadiah",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12641]]]]},{"k":"H4154","v":[["joint",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17132]]]]},{"k":"H4155","v":[["dimness",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17830]]]]},{"k":"H4156","v":[["*",[7,7,[[18,2,2,0,2,[[482,1,1,0,1],[558,1,1,1,2]]],[19,2,2,2,4,[[628,1,1,2,3],[649,1,1,3,4]]],[23,1,1,4,5,[[751,1,1,4,5]]],[27,1,1,5,6,[[872,1,1,5,6]]],[32,1,1,6,7,[[898,1,1,6,7]]]],[13983,15229,16431,17035,19143,22246,22664]]],["+",[3,3,[[18,1,1,0,1,[[482,1,1,0,1]]],[19,1,1,1,2,[[628,1,1,1,2]]],[27,1,1,2,3,[[872,1,1,2,3]]]],[13983,16431,22246]]],["counsels",[4,4,[[18,1,1,0,1,[[558,1,1,0,1]]],[19,1,1,1,2,[[649,1,1,1,2]]],[23,1,1,2,3,[[751,1,1,2,3]]],[32,1,1,3,4,[[898,1,1,3,4]]]],[15229,17035,19143,22664]]]]},{"k":"H4157","v":[["affliction",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14884]]]]},{"k":"H4158","v":[["Mephaath",[4,4,[[5,2,2,0,2,[[199,1,1,0,1],[207,1,1,1,2]]],[12,1,1,2,3,[[343,1,1,2,3]]],[23,1,1,3,4,[[792,1,1,3,4]]]],[6172,6418,10533,20101]]]]},{"k":"H4159","v":[["*",[36,35,[[1,5,5,0,5,[[53,1,1,0,1],[56,2,2,1,3],[60,2,2,3,5]]],[4,9,9,5,14,[[156,1,1,5,6],[158,1,1,6,7],[159,1,1,7,8],[165,2,2,8,10],[178,1,1,10,11],[180,1,1,11,12],[181,1,1,12,13],[186,1,1,13,14]]],[10,3,2,14,16,[[303,3,2,14,16]]],[12,1,1,16,17,[[353,1,1,16,17]]],[13,2,2,17,19,[[398,2,2,17,19]]],[15,1,1,19,20,[[421,1,1,19,20]]],[18,5,5,20,25,[[548,1,1,20,21],[555,1,1,21,22],[582,2,2,22,24],[612,1,1,24,25]]],[22,2,2,25,27,[[686,1,1,25,26],[698,1,1,26,27]]],[23,2,2,27,29,[[776,2,2,27,29]]],[25,4,4,29,33,[[813,2,2,29,31],[825,2,2,31,33]]],[28,1,1,33,34,[[877,1,1,33,34]]],[37,1,1,34,35,[[913,1,1,34,35]]]],[1622,1688,1694,1815,1816,5038,5108,5130,5273,5274,5574,5657,5682,5850,9187,9189,10832,11899,11906,12521,14983,15156,15611,15633,16184,17825,18032,19751,19752,20686,20691,21080,21083,22341,22920]]],["miracle",[1,1,[[1,1,1,0,1,[[56,1,1,0,1]]]],[1694]]],["miracles",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5682]]],["sign",[8,7,[[10,3,2,0,2,[[303,3,2,0,2]]],[13,1,1,2,3,[[398,1,1,2,3]]],[25,4,4,3,7,[[813,2,2,3,5],[825,2,2,5,7]]]],[9187,9189,11899,20686,20691,21080,21083]]],["wonder",[6,6,[[4,3,3,0,3,[[165,2,2,0,2],[180,1,1,2,3]]],[13,1,1,3,4,[[398,1,1,3,4]]],[18,1,1,4,5,[[548,1,1,4,5]]],[22,1,1,5,6,[[698,1,1,5,6]]]],[5273,5274,5657,11906,14983,18032]]],["wondered",[1,1,[[37,1,1,0,1,[[913,1,1,0,1]]]],[22920]]],["wonders",[19,19,[[1,4,4,0,4,[[53,1,1,0,1],[56,1,1,1,2],[60,2,2,2,4]]],[4,5,5,4,9,[[156,1,1,4,5],[158,1,1,5,6],[159,1,1,6,7],[178,1,1,7,8],[186,1,1,8,9]]],[12,1,1,9,10,[[353,1,1,9,10]]],[15,1,1,10,11,[[421,1,1,10,11]]],[18,4,4,11,15,[[555,1,1,11,12],[582,2,2,12,14],[612,1,1,14,15]]],[22,1,1,15,16,[[686,1,1,15,16]]],[23,2,2,16,18,[[776,2,2,16,18]]],[28,1,1,18,19,[[877,1,1,18,19]]]],[1622,1688,1815,1816,5038,5108,5130,5574,5850,10832,12521,15156,15611,15633,16184,17825,19751,19752,22341]]]]},{"k":"H4160","v":[["extortioner",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17973]]]]},{"k":"H4161","v":[["*",[27,26,[[3,3,2,0,2,[[146,1,1,0,1],[149,2,1,1,2]]],[4,2,2,2,4,[[160,1,1,2,3],[175,1,1,3,4]]],[9,1,1,4,5,[[269,1,1,4,5]]],[10,1,1,5,6,[[300,1,1,5,6]]],[11,1,1,6,7,[[314,1,1,6,7]]],[13,2,2,7,9,[[367,1,1,7,8],[398,1,1,8,9]]],[17,2,2,9,11,[[463,1,1,9,10],[473,1,1,10,11]]],[18,6,6,11,17,[[496,1,1,11,12],[542,1,1,12,13],[552,1,1,13,14],[566,1,1,14,15],[584,2,2,15,17]]],[22,2,2,17,19,[[719,1,1,17,18],[736,1,1,18,19]]],[23,1,1,19,20,[[761,1,1,19,20]]],[25,4,4,20,24,[[813,1,1,20,21],[843,1,1,21,22],[844,1,1,22,23],[845,1,1,23,24]]],[26,1,1,24,25,[[858,1,1,24,25]]],[27,1,1,25,26,[[867,1,1,25,26]]]],[4660,4762,5140,5523,8106,9107,9572,11210,11905,13505,13820,14174,14868,15077,15360,15732,15734,18469,18797,19373,20684,21563,21583,21604,22013,22170]]],["+",[4,4,[[13,1,1,0,1,[[398,1,1,0,1]]],[18,3,3,1,4,[[552,1,1,1,2],[584,2,2,2,4]]]],[11905,15077,15732,15734]]],["brought",[1,1,[[10,1,1,0,1,[[300,1,1,0,1]]]],[9107]]],["bud",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13820]]],["came",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19373]]],["forth",[5,5,[[18,1,1,0,1,[[496,1,1,0,1]]],[25,2,2,1,3,[[813,1,1,1,2],[845,1,1,2,3]]],[26,1,1,3,4,[[858,1,1,3,4]]],[27,1,1,4,5,[[867,1,1,4,5]]]],[14174,20684,21604,22013,22170]]],["out",[10,9,[[3,3,2,0,2,[[146,1,1,0,1],[149,2,1,1,2]]],[4,2,2,2,4,[[160,1,1,2,3],[175,1,1,3,4]]],[9,1,1,4,5,[[269,1,1,4,5]]],[13,1,1,5,6,[[367,1,1,5,6]]],[18,1,1,6,7,[[566,1,1,6,7]]],[25,2,2,7,9,[[843,1,1,7,8],[844,1,1,8,9]]]],[4660,4762,5140,5523,8106,11210,15360,21563,21583]]],["outgoings",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14868]]],["spring",[2,2,[[11,1,1,0,1,[[314,1,1,0,1]]],[22,1,1,1,2,[[736,1,1,1,2]]]],[9572,18797]]],["springs",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18469]]],["vein",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13505]]]]},{"k":"H4162","v":[["Moza",[5,5,[[12,5,5,0,5,[[339,1,1,0,1],[345,2,2,1,3],[346,2,2,3,5]]]],[10352,10611,10612,10657,10658]]]]},{"k":"H4163","v":[["*",[2,2,[[11,1,1,0,1,[[322,1,1,0,1]]],[32,1,1,1,2,[[897,1,1,1,2]]]],[9820,22635]]],["forth",[1,1,[[32,1,1,0,1,[[897,1,1,0,1]]]],[22635]]],["house",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9820]]]]},{"k":"H4164","v":[["*",[3,3,[[17,2,2,0,2,[[471,1,1,0,1],[472,1,1,1,2]]],[22,1,1,2,3,[[687,1,1,2,3]]]],[13752,13779,17830]]],["straitened",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13779]]],["straitness",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13752]]],["vexation",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17830]]]]},{"k":"H4165","v":[["*",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]]],[8971,13831]]],["casting",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8971]]],["hardness",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13831]]]]},{"k":"H4166","v":[["*",[2,2,[[13,1,1,0,1,[[370,1,1,0,1]]],[37,1,1,1,2,[[914,1,1,1,2]]]],[11249,22924]]],["cast",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11249]]],["pipes",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22924]]]]},{"k":"H4167","v":[["corrupt",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15028]]]]},{"k":"H4168","v":[["*",[2,2,[[18,1,1,0,1,[[579,1,1,0,1]]],[22,1,1,1,2,[[711,1,1,1,2]]]],[15524,18293]]],["burnings",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18293]]],["hearth",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15524]]]]},{"k":"H4169","v":[["burning",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2858]]]]},{"k":"H4170","v":[["*",[27,27,[[1,3,3,0,3,[[59,1,1,0,1],[72,1,1,1,2],[83,1,1,2,3]]],[4,1,1,3,4,[[159,1,1,3,4]]],[5,1,1,4,5,[[209,1,1,4,5]]],[6,2,2,5,7,[[212,1,1,5,6],[218,1,1,6,7]]],[8,1,1,7,8,[[253,1,1,7,8]]],[9,1,1,8,9,[[288,1,1,8,9]]],[17,2,2,9,11,[[469,1,1,9,10],[475,1,1,10,11]]],[18,6,6,11,17,[[495,1,1,11,12],[541,1,1,12,13],[546,1,1,13,14],[583,1,1,14,15],[617,1,1,15,16],[618,1,1,16,17]]],[19,8,8,17,25,[[639,1,1,17,18],[640,1,1,18,19],[641,1,1,19,20],[645,1,1,20,21],[647,1,1,21,22],[649,1,1,22,23],[656,2,2,23,25]]],[22,1,1,25,26,[[686,1,1,25,26]]],[29,1,1,26,27,[[881,1,1,26,27]]]],[1784,2177,2508,5127,6473,6548,6746,7697,8608,13713,13888,14123,14855,14957,15687,16268,16285,16732,16761,16799,16908,16979,17040,17230,17249,17821,22400]]],["+",[4,4,[[17,1,1,0,1,[[469,1,1,0,1]]],[18,1,1,1,2,[[541,1,1,1,2]]],[19,2,2,2,4,[[640,1,1,2,3],[641,1,1,3,4]]]],[13713,14855,16761,16799]]],["gin",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22400]]],["gins",[2,2,[[18,2,2,0,2,[[617,1,1,0,1],[618,1,1,1,2]]]],[16268,16285]]],["snare",[14,14,[[1,3,3,0,3,[[59,1,1,0,1],[72,1,1,1,2],[83,1,1,2,3]]],[4,1,1,3,4,[[159,1,1,3,4]]],[6,2,2,4,6,[[212,1,1,4,5],[218,1,1,5,6]]],[8,1,1,6,7,[[253,1,1,6,7]]],[18,1,1,7,8,[[583,1,1,7,8]]],[19,5,5,8,13,[[645,1,1,8,9],[647,1,1,9,10],[649,1,1,10,11],[656,2,2,11,13]]],[22,1,1,13,14,[[686,1,1,13,14]]]],[1784,2177,2508,5127,6548,6746,7697,15687,16908,16979,17040,17230,17249,17821]]],["snared",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16732]]],["snares",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[475,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]]],[8608,13888,14123]]],["trap",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14957]]],["traps",[1,1,[[5,1,1,0,1,[[209,1,1,0,1]]]],[6473]]]]},{"k":"H4171","v":[["*",[15,10,[[2,6,2,0,2,[[116,6,2,0,2]]],[18,3,3,2,5,[[492,1,1,2,3],[523,1,1,3,4],[583,1,1,4,5]]],[23,3,2,5,7,[[746,2,1,5,6],[792,1,1,6,7]]],[25,1,1,7,8,[[849,1,1,7,8]]],[27,1,1,8,9,[[865,1,1,8,9]]],[32,1,1,9,10,[[894,1,1,9,10]]]],[3580,3603,14091,14616,15671,18976,20091,21716,22140,22599]]],["+",[5,3,[[2,4,2,0,2,[[116,4,2,0,2]]],[18,1,1,2,3,[[583,1,1,2,3]]]],[3580,3603,15671]]],["change",[3,3,[[2,2,2,0,2,[[116,2,2,0,2]]],[27,1,1,2,3,[[865,1,1,2,3]]]],[3580,3603,22140]]],["changed",[4,3,[[23,3,2,0,2,[[746,2,1,0,1],[792,1,1,1,2]]],[32,1,1,2,3,[[894,1,1,2,3]]]],[18976,20091,22599]]],["changeth",[1,1,[[18,1,1,0,1,[[492,1,1,0,1]]]],[14091]]],["exchange",[1,1,[[25,1,1,0,1,[[849,1,1,0,1]]]],[21716]]],["removed",[1,1,[[18,1,1,0,1,[[523,1,1,0,1]]]],[14616]]]]},{"k":"H4172","v":[["*",[12,12,[[0,1,1,0,1,[[8,1,1,0,1]]],[4,4,4,1,5,[[156,1,1,1,2],[163,1,1,2,3],[178,1,1,3,4],[186,1,1,4,5]]],[18,2,2,5,7,[[486,1,1,5,6],[553,1,1,6,7]]],[22,2,2,7,9,[[686,2,2,7,9]]],[23,1,1,9,10,[[776,1,1,9,10]]],[38,2,2,10,12,[[925,1,1,10,11],[926,1,1,11,12]]]],[207,5038,5233,5574,5851,14041,15092,17819,17820,19752,23095,23108]]],["dread",[1,1,[[4,1,1,0,1,[[163,1,1,0,1]]]],[5233]]],["fear",[6,6,[[0,1,1,0,1,[[8,1,1,0,1]]],[18,1,1,1,2,[[486,1,1,1,2]]],[22,2,2,2,4,[[686,2,2,2,4]]],[38,2,2,4,6,[[925,1,1,4,5],[926,1,1,5,6]]]],[207,14041,17819,17820,23095,23108]]],["feared",[1,1,[[18,1,1,0,1,[[553,1,1,0,1]]]],[15092]]],["terribleness",[1,1,[[4,1,1,0,1,[[178,1,1,0,1]]]],[5574]]],["terror",[2,2,[[4,1,1,0,1,[[186,1,1,0,1]]],[23,1,1,1,2,[[776,1,1,1,2]]]],[5851,19752]]],["terrors",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5038]]]]},{"k":"H4173","v":[["*",[3,3,[[9,1,1,0,1,[[290,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]],[22,1,1,2,3,[[719,1,1,2,3]]]],[8714,10957,18466]]],["instrument",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18466]]],["instruments",[2,2,[[9,1,1,0,1,[[290,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]]],[8714,10957]]]]},{"k":"H4174","v":[["*",[5,5,[[5,2,2,0,2,[[193,1,1,0,1],[196,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[23,1,1,3,4,[[792,1,1,3,4]]],[32,1,1,4,5,[[893,1,1,4,5]]]],[5981,6075,8963,20085,22583]]],["down",[3,3,[[5,2,2,0,2,[[193,1,1,0,1],[196,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[5981,6075,20085]]],["place",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22583]]],["thin",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8963]]]]},{"k":"H4175","v":[["rain",[3,2,[[18,1,1,0,1,[[561,1,1,0,1]]],[28,2,1,1,2,[[877,2,1,1,2]]]],[15265,22334]]]]},{"k":"H4176","v":[["Moreh",[3,3,[[0,1,1,0,1,[[11,1,1,0,1]]],[4,1,1,1,2,[[163,1,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]]],[304,5238,6695]]]]},{"k":"H4177","v":[["razor",[3,3,[[6,2,2,0,2,[[223,1,1,0,1],[226,1,1,1,2]]],[8,1,1,2,3,[[236,1,1,2,3]]]],[6889,6966,7223]]]]},{"k":"H4178","v":[["peeled",[2,2,[[22,2,2,0,2,[[696,2,2,0,2]]]],[17999,18004]]]]},{"k":"H4179","v":[["Moriah",[2,2,[[0,1,1,0,1,[[21,1,1,0,1]]],[13,1,1,1,2,[[369,1,1,1,2]]]],[549,11230]]]]},{"k":"H4180","v":[["*",[3,3,[[17,1,1,0,1,[[452,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]],[30,1,1,2,3,[[888,1,1,2,3]]]],[13271,17951,22527]]],["possession",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17951]]],["possessions",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22527]]],["thoughts",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13271]]]]},{"k":"H4181","v":[["*",[9,9,[[1,1,1,0,1,[[55,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[25,7,7,2,9,[[812,1,1,2,3],[826,2,2,3,5],[834,1,1,5,6],[837,3,3,6,9]]]],[1663,5814,20670,21087,21093,21304,21361,21362,21364]]],["heritage",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1663]]],["inheritance",[2,2,[[4,1,1,0,1,[[185,1,1,0,1]]],[25,1,1,1,2,[[834,1,1,1,2]]]],[5814,21304]]],["possession",[6,6,[[25,6,6,0,6,[[812,1,1,0,1],[826,2,2,1,3],[837,3,3,3,6]]]],[20670,21087,21093,21361,21362,21364]]]]},{"k":"H4182","v":[["Moreshethgath",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22593]]]]},{"k":"H4183","v":[["Morasthite",[2,2,[[23,1,1,0,1,[[770,1,1,0,1]]],[32,1,1,1,2,[[893,1,1,1,2]]]],[19590,22580]]]]},{"k":"H4184","v":[["*",[3,3,[[0,1,1,0,1,[[26,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[18,1,1,2,3,[[592,1,1,2,3]]]],[748,6975,15837]]],["+",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6975]]],["feel",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[748]]],["handle",[1,1,[[18,1,1,0,1,[[592,1,1,0,1]]]],[15837]]]]},{"k":"H4185","v":[["*",[20,19,[[1,2,2,0,2,[[62,1,1,0,1],[82,1,1,1,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[5,1,1,3,4,[[187,1,1,3,4]]],[6,1,1,4,5,[[216,1,1,4,5]]],[17,1,1,5,6,[[458,1,1,5,6]]],[18,1,1,6,7,[[532,1,1,6,7]]],[19,1,1,7,8,[[644,1,1,7,8]]],[22,5,4,8,12,[[700,1,1,8,9],[724,1,1,9,10],[732,2,1,10,11],[737,1,1,11,12]]],[23,2,2,12,14,[[761,1,1,12,13],[775,1,1,13,14]]],[32,2,2,14,16,[[894,2,2,14,16]]],[33,1,1,16,17,[[902,1,1,16,17]]],[37,2,2,17,19,[[913,1,1,17,18],[924,1,1,18,19]]]],[1889,2484,4152,5859,6672,13431,14743,16886,18077,18593,18733,18821,19365,19727,22598,22599,22713,22921,23072]]],["+",[2,2,[[1,1,1,0,1,[[62,1,1,0,1]]],[37,1,1,1,2,[[913,1,1,1,2]]]],[1889,22921]]],["Depart",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6672]]],["back",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13431]]],["cease",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19365]]],["depart",[7,6,[[5,1,1,0,1,[[187,1,1,0,1]]],[18,1,1,1,2,[[532,1,1,1,2]]],[19,1,1,2,3,[[644,1,1,2,3]]],[22,3,2,3,5,[[732,2,1,3,4],[737,1,1,4,5]]],[23,1,1,5,6,[[775,1,1,5,6]]]],[5859,14743,16886,18733,18821,19727]]],["departed",[2,2,[[1,1,1,0,1,[[82,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]]],[2484,4152]]],["departeth",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22713]]],["remove",[3,3,[[22,1,1,0,1,[[724,1,1,0,1]]],[32,1,1,1,2,[[894,1,1,1,2]]],[37,1,1,2,3,[[924,1,1,2,3]]]],[18593,22598,23072]]],["removed",[2,2,[[22,1,1,0,1,[[700,1,1,0,1]]],[32,1,1,1,2,[[894,1,1,1,2]]]],[18077,22599]]]]},{"k":"H4186","v":[["*",[44,43,[[0,3,3,0,3,[[9,1,1,0,1],[26,1,1,1,2],[35,1,1,2,3]]],[1,4,4,3,7,[[59,1,1,3,4],[61,2,2,4,6],[84,1,1,6,7]]],[2,9,9,7,16,[[92,1,1,7,8],[96,1,1,8,9],[102,1,1,9,10],[112,5,5,10,15],[114,1,1,15,16]]],[3,4,4,16,20,[[131,1,1,16,17],[140,1,1,17,18],[147,1,1,18,19],[151,1,1,19,20]]],[8,3,2,20,22,[[255,3,2,20,22]]],[9,1,1,22,23,[[275,1,1,22,23]]],[10,1,1,23,24,[[300,1,1,23,24]]],[11,1,1,24,25,[[314,1,1,24,25]]],[12,3,3,25,28,[[341,1,1,25,26],[343,1,1,26,27],[344,1,1,27,28]]],[13,1,1,28,29,[[375,1,1,28,29]]],[17,1,1,29,30,[[464,1,1,29,30]]],[18,6,6,30,36,[[478,1,1,30,31],[584,4,4,31,35],[609,1,1,35,36]]],[25,7,7,36,43,[[807,2,2,36,38],[809,1,1,38,39],[829,1,1,39,40],[835,1,1,40,41],[838,1,1,41,42],[849,1,1,42,43]]]],[264,766,1083,1800,1836,1856,2534,2795,2905,3098,3405,3416,3419,3423,3433,3498,4155,4467,4674,4874,7748,7755,8239,9084,9570,10418,10508,10563,11368,13539,13940,15703,15706,15731,15735,16164,20569,20577,20607,21159,21326,21420,21717]]],["+",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3419]]],["assembly",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15731]]],["dwell",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15703]]],["dwelling",[4,4,[[0,2,2,0,2,[[9,1,1,0,1],[26,1,1,1,2]]],[2,1,1,2,3,[[114,1,1,2,3]]],[25,1,1,3,4,[[849,1,1,3,4]]]],[264,766,3498,21717]]],["dwellingplace",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4467]]],["dwellingplaces",[2,2,[[25,2,2,0,2,[[807,1,1,0,1],[838,1,1,1,2]]]],[20569,21420]]],["dwellings",[8,8,[[1,1,1,0,1,[[59,1,1,0,1]]],[2,6,6,1,7,[[92,1,1,1,2],[96,1,1,2,3],[112,4,4,3,7]]],[3,1,1,7,8,[[151,1,1,7,8]]]],[1800,2795,2905,3405,3416,3423,3433,4874]]],["dwelt",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[9,1,1,1,2,[[275,1,1,1,2]]]],[4674,8239]]],["habitation",[4,4,[[2,1,1,0,1,[[102,1,1,0,1]]],[18,3,3,1,4,[[584,2,2,1,3],[609,1,1,3,4]]]],[3098,15706,15735,16164]]],["habitations",[7,7,[[0,1,1,0,1,[[35,1,1,0,1]]],[1,2,2,1,3,[[61,1,1,1,2],[84,1,1,2,3]]],[3,1,1,3,4,[[131,1,1,3,4]]],[12,2,2,4,6,[[341,1,1,4,5],[344,1,1,5,6]]],[25,1,1,6,7,[[807,1,1,6,7]]]],[1083,1836,2534,4155,10418,10563,20577]]],["places",[2,2,[[12,1,1,0,1,[[343,1,1,0,1]]],[25,1,1,1,2,[[835,1,1,1,2]]]],[10508,21326]]],["seat",[7,6,[[8,3,2,0,2,[[255,3,2,0,2]]],[17,1,1,2,3,[[464,1,1,2,3]]],[18,1,1,3,4,[[478,1,1,3,4]]],[25,2,2,4,6,[[809,1,1,4,5],[829,1,1,5,6]]]],[7748,7755,13539,13940,20607,21159]]],["sitting",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9084,11368]]],["situation",[1,1,[[11,1,1,0,1,[[314,1,1,0,1]]]],[9570]]],["sojourning",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1856]]]]},{"k":"H4187","v":[["Mushi",[8,8,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,1,1,1,2,[[119,1,1,1,2]]],[12,6,6,2,8,[[343,2,2,2,4],[360,2,2,4,6],[361,2,2,6,8]]]],[1674,3712,10473,10501,11004,11006,11041,11045]]]]},{"k":"H4188","v":[["Mushites",[2,2,[[3,2,2,0,2,[[119,1,1,0,1],[142,1,1,1,2]]]],[3725,4547]]]]},{"k":"H4189","v":[["bands",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13824]]]]},{"k":"H4190","v":[["salvation",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14920]]]]},{"k":"H4191","v":[["*",[838,697,[[0,78,72,0,72,[[1,2,1,0,1],[2,3,2,1,3],[4,8,8,3,11],[6,1,1,11,12],[8,1,1,12,13],[10,2,2,13,15],[17,1,1,15,16],[18,1,1,16,17],[19,3,2,17,19],[22,9,8,19,27],[24,3,3,27,30],[25,3,2,30,32],[26,1,1,32,33],[29,1,1,33,34],[32,1,1,34,35],[34,4,4,35,39],[35,7,7,39,46],[36,1,1,46,47],[37,4,4,47,51],[41,4,4,51,55],[42,1,1,55,56],[43,4,4,56,60],[44,1,1,60,61],[45,2,2,61,63],[46,4,3,63,66],[47,2,2,66,68],[49,4,4,68,72]]],[1,59,46,72,118,[[50,2,2,72,74],[51,1,1,74,75],[53,2,2,75,77],[56,2,2,77,79],[57,1,1,79,80],[58,5,4,80,84],[59,1,1,84,85],[60,1,1,85,86],[61,2,2,86,88],[63,3,3,88,91],[65,2,1,91,92],[66,1,1,92,93],[68,2,1,93,94],[69,1,1,94,95],[70,19,12,95,107],[71,5,4,107,111],[77,2,2,111,113],[79,2,2,113,115],[80,4,2,115,117],[84,1,1,117,118]]],[2,41,28,118,146,[[97,1,1,118,119],[99,4,4,119,123],[100,1,1,123,124],[104,1,1,124,125],[105,3,3,125,128],[108,1,1,128,129],[109,20,11,129,140],[110,1,1,140,141],[111,1,1,141,142],[113,6,3,142,145],[116,2,1,145,146]]],[3,81,59,146,205,[[117,1,1,146,147],[119,3,3,147,150],[120,3,3,150,153],[122,4,3,153,156],[128,1,1,156,157],[130,5,4,157,161],[131,3,2,161,163],[132,6,5,163,168],[133,2,2,168,170],[134,4,4,170,174],[135,6,5,174,179],[136,4,4,179,183],[137,2,2,183,185],[139,1,1,185,186],[141,1,1,186,187],[142,6,5,187,192],[143,3,2,192,194],[149,1,1,194,195],[151,25,10,195,205]]],[4,46,39,205,244,[[154,1,1,205,206],[156,1,1,206,207],[157,2,1,207,208],[161,1,1,208,209],[162,1,1,209,210],[165,3,3,210,213],[166,1,1,213,214],[169,6,4,214,218],[170,3,3,218,221],[171,3,3,221,224],[172,3,3,224,227],[173,2,2,227,229],[174,4,4,229,233],[176,5,3,233,236],[177,3,2,236,238],[178,1,1,238,239],[183,1,1,239,240],[184,3,2,240,242],[185,1,1,242,243],[186,1,1,243,244]]],[5,10,9,244,253,[[187,2,2,244,246],[191,1,1,246,247],[196,3,2,247,249],[197,1,1,249,250],[206,1,1,250,251],[210,2,2,251,253]]],[6,40,33,253,286,[[211,1,1,253,254],[212,3,3,254,257],[213,2,2,257,259],[214,3,3,259,262],[215,1,1,262,263],[216,3,3,263,266],[218,2,2,266,268],[219,4,3,268,271],[220,2,2,271,273],[222,4,4,273,277],[223,3,2,277,279],[225,3,2,279,281],[226,5,2,281,283],[230,2,2,283,285],[231,2,1,285,286]]],[7,10,7,286,293,[[232,5,4,286,290],[233,1,1,290,291],[235,4,2,291,293]]],[8,59,52,293,345,[[237,4,4,293,297],[239,5,5,297,302],[240,3,3,302,305],[246,2,2,305,307],[247,1,1,307,308],[249,8,5,308,313],[250,1,1,313,314],[252,4,3,314,317],[254,8,7,317,324],[255,5,5,324,329],[257,4,3,329,332],[259,1,1,332,333],[260,4,4,333,337],[261,1,1,337,338],[263,2,2,338,340],[265,2,2,340,342],[266,4,3,342,345]]],[9,74,62,345,407,[[267,7,6,345,351],[268,4,3,351,354],[269,4,4,354,358],[270,3,3,358,361],[272,1,1,361,362],[274,1,1,362,363],[275,1,1,363,364],[276,2,2,364,366],[277,7,5,366,371],[278,11,6,371,377],[279,6,4,377,381],[280,7,6,381,387],[282,1,1,387,388],[283,1,1,388,389],[284,4,4,389,393],[285,6,6,393,399],[286,3,3,399,402],[287,4,4,402,406],[290,1,1,406,407]]],[10,58,47,407,454,[[291,2,2,407,409],[292,12,10,409,419],[293,11,7,419,426],[301,2,2,426,428],[302,1,1,428,429],[303,3,3,429,432],[304,4,3,432,435],[305,1,1,435,436],[306,5,4,436,440],[307,3,3,440,443],[308,1,1,443,444],[309,3,2,444,446],[311,8,6,446,452],[312,2,2,452,454]]],[11,56,43,454,497,[[313,7,4,454,458],[316,3,3,458,461],[317,1,1,461,462],[319,7,4,462,466],[320,4,3,466,469],[321,1,1,469,470],[323,8,6,470,476],[324,1,1,476,477],[325,3,3,477,480],[326,5,2,480,482],[327,4,4,482,486],[328,1,1,486,487],[329,1,1,487,488],[330,1,1,488,489],[331,1,1,489,490],[332,2,1,490,491],[333,1,1,491,492],[335,3,3,492,495],[337,2,2,495,497]]],[12,25,23,497,520,[[338,8,8,497,505],[339,4,4,505,509],[347,7,5,509,514],[350,1,1,514,515],[356,2,2,515,517],[360,1,1,517,518],[361,1,1,518,519],[366,1,1,519,520]]],[13,27,22,520,542,[[376,1,1,520,521],[379,1,1,521,522],[381,1,1,522,523],[382,1,1,523,524],[384,1,1,524,525],[387,1,1,525,526],[388,4,3,526,529],[389,5,4,529,533],[390,3,3,533,536],[391,5,2,536,538],[398,2,2,538,540],[399,1,1,540,541],[401,1,1,541,542]]],[16,1,1,542,543,[[429,1,1,542,543]]],[17,16,16,543,559,[[436,1,1,543,544],[437,1,1,544,545],[438,1,1,545,546],[439,1,1,546,547],[440,1,1,547,548],[444,1,1,548,549],[447,1,1,549,550],[449,3,3,550,553],[456,2,2,553,555],[468,1,1,555,556],[469,1,1,556,557],[471,1,1,557,558],[477,1,1,558,559]]],[18,15,15,559,574,[[508,1,1,559,560],[511,1,1,560,561],[514,1,1,561,562],[518,1,1,562,563],[525,1,1,563,564],[526,1,1,564,565],[559,1,1,565,566],[565,2,2,566,568],[582,1,1,568,569],[583,1,1,569,570],[586,1,1,570,571],[592,1,1,571,572],[595,1,1,572,573],[620,1,1,573,574]]],[19,8,8,574,582,[[632,1,1,574,575],[637,1,1,575,576],[642,1,1,576,577],[646,2,2,577,579],[648,1,1,579,580],[650,1,1,580,581],[657,1,1,581,582]]],[20,9,7,582,589,[[660,1,1,582,583],[661,1,1,583,584],[662,2,1,584,585],[665,1,1,585,586],[667,4,3,586,589]]],[22,21,20,589,609,[[686,1,1,589,590],[689,1,1,590,591],[692,1,1,591,592],[700,4,4,592,596],[704,2,2,596,598],[715,1,1,598,599],[716,2,1,599,600],[728,1,1,600,601],[729,3,3,601,604],[737,2,2,604,606],[743,2,2,606,608],[744,1,1,608,609]]],[23,47,42,609,651,[[755,3,2,609,611],[760,3,3,611,614],[764,2,2,614,616],[765,2,2,616,618],[766,3,3,618,621],[770,7,5,621,626],[771,1,1,626,627],[772,2,2,627,629],[775,1,1,629,630],[778,2,2,630,632],[781,1,1,632,633],[782,10,9,633,642],[785,4,3,642,645],[786,3,3,645,648],[787,1,1,648,649],[788,1,1,649,650],[796,1,1,650,651]]],[24,1,1,651,652,[[799,1,1,651,652]]],[25,44,34,652,686,[[804,6,3,652,655],[806,1,1,655,656],[807,2,1,656,657],[808,1,1,657,658],[812,1,1,658,659],[813,1,1,659,660],[814,2,1,660,661],[818,1,1,661,662],[819,13,11,662,673],[825,2,2,673,675],[829,2,2,675,677],[834,11,8,677,685],[845,1,1,685,686]]],[27,3,3,686,689,[[863,1,1,686,687],[870,1,1,687,688],[874,1,1,688,689]]],[29,5,5,689,694,[[880,1,1,689,690],[884,1,1,690,691],[885,2,2,691,693],[887,1,1,693,694]]],[31,1,1,694,695,[[892,1,1,694,695]]],[34,1,1,695,696,[[903,1,1,695,696]]],[37,2,1,696,697,[[921,2,1,696,697]]]],[47,58,59,110,113,116,119,122,125,132,136,181,234,294,298,449,476,498,502,573,574,575,577,579,582,584,586,666,675,690,701,703,731,831,973,1019,1029,1030,1040,1073,1074,1075,1076,1077,1078,1079,1101,1126,1129,1130,1131,1254,1272,1289,1290,1298,1333,1344,1346,1355,1386,1398,1416,1435,1439,1449,1458,1472,1511,1521,1530,1532,1538,1548,1577,1620,1625,1703,1706,1723,1746,1748,1749,1761,1805,1811,1846,1849,1900,1901,1919,1950,1986,2038,2070,2089,2091,2092,2093,2094,2095,2097,2105,2106,2111,2112,2113,2115,2123,2127,2132,2328,2336,2402,2403,2434,2435,2533,2952,2979,2983,2984,2986,3036,3199,3202,3203,3214,3301,3320,3322,3327,3328,3329,3330,3331,3333,3334,3338,3345,3356,3378,3462,3463,3467,3599,3655,3696,3702,3730,3758,3762,3763,3829,3830,3832,4071,4110,4123,4143,4145,4188,4189,4207,4223,4235,4242,4243,4254,4257,4260,4264,4279,4289,4300,4302,4303,4305,4307,4312,4315,4337,4339,4345,4346,4426,4480,4499,4500,4508,4550,4554,4557,4562,4798,4857,4861,4862,4863,4864,4865,4866,4868,4875,4876,4954,5026,5078,5185,5192,5277,5281,5282,5291,5369,5370,5371,5376,5395,5400,5404,5411,5417,5418,5432,5433,5434,5468,5469,5491,5492,5494,5495,5528,5532,5541,5552,5553,5580,5742,5797,5808,5816,5844,5853,5869,5938,6075,6090,6124,6381,6505,6509,6516,6553,6564,6566,6579,6593,6600,6620,6621,6641,6677,6684,6685,6751,6752,6803,6808,6809,6813,6816,6876,6879,6881,6884,6906,6907,6942,6947,6965,6979,7059,7067,7107,7130,7132,7135,7144,7169,7195,7200,7246,7265,7273,7274,7308,7314,7315,7316,7317,7329,7330,7331,7457,7458,7479,7521,7547,7551,7552,7553,7563,7653,7668,7669,7707,7708,7711,7712,7717,7721,7723,7732,7738,7744,7762,7763,7803,7804,7805,7853,7862,7898,7899,7900,7915,7945,7951,7980,7993,8014,8015,8016,8026,8027,8031,8032,8037,8038,8056,8072,8080,8108,8111,8114,8118,8121,8127,8130,8164,8211,8235,8241,8258,8274,8276,8280,8283,8285,8299,8300,8304,8305,8307,8309,8345,8349,8350,8356,8358,8361,8362,8363,8370,8388,8435,8472,8481,8493,8498,8511,8517,8521,8532,8533,8534,8548,8557,8564,8573,8581,8584,8589,8597,8707,8768,8769,8771,8778,8794,8795,8796,8800,8804,8807,8812,8816,8835,8836,8837,8838,8839,8842,8843,9129,9148,9169,9208,9210,9215,9229,9230,9235,9277,9287,9293,9301,9305,9329,9335,9337,9350,9391,9404,9461,9464,9465,9466,9467,9475,9515,9517,9537,9539,9549,9550,9604,9623,9635,9654,9710,9711,9724,9727,9732,9737,9742,9783,9830,9831,9837,9844,9845,9849,9871,9885,9891,9895,9902,9915,9935,9939,9950,9955,9972,10009,10056,10096,10099,10142,10194,10195,10199,10243,10247,10296,10297,10298,10299,10300,10301,10302,10303,10309,10325,10336,10338,10664,10665,10666,10672,10673,10770,10908,10925,11005,11017,11192,11413,11473,11503,11522,11576,11643,11653,11654,11655,11663,11670,11671,11677,11692,11699,11702,11708,11731,11886,11899,11932,11990,12773,12888,12900,12915,12951,12953,13074,13130,13189,13191,13195,13378,13380,13672,13703,13750,13939,14343,14409,14482,14547,14648,14658,15240,15313,15318,15635,15679,15771,15847,15886,16296,16540,16677,16817,16941,16943,17009,17057,17258,17349,17361,17383,17446,17478,17479,17480,17826,17888,17958,18054,18065,18066,18070,18144,18149,18388,18391,18664,18679,18685,18687,18805,18810,18912,18917,18946,19247,19248,19340,19342,19343,19428,19439,19446,19449,19464,19466,19480,19580,19587,19591,19593,19596,19609,19634,19635,19721,19805,19806,19894,19897,19899,19904,19905,19910,19911,19919,19920,19921,19959,19961,19965,19991,19992,19997,20000,20022,20303,20360,20520,20521,20522,20558,20575,20592,20668,20693,20727,20841,20853,20862,20866,20867,20869,20870,20873,20875,20877,20880,20881,21073,21074,21165,21167,21288,21289,21291,21293,21294,21295,21298,21307,21624,22108,22224,22267,22381,22459,22475,22481,22505,22576,22743,23037]]],["+",[133,78,[[0,9,5,0,5,[[1,2,1,0,1],[2,2,1,1,2],[19,2,1,2,3],[25,2,1,3,4],[41,1,1,4,5]]],[1,18,10,5,15,[[63,1,1,5,6],[65,1,1,6,7],[68,2,1,7,8],[70,8,4,8,12],[71,2,1,12,13],[80,4,2,13,15]]],[2,24,12,15,27,[[109,18,9,15,24],[113,4,2,24,26],[116,2,1,26,27]]],[3,17,9,27,36,[[131,2,1,27,28],[132,1,1,28,29],[142,2,1,29,30],[151,12,6,30,36]]],[4,2,2,36,38,[[170,1,1,36,37],[174,1,1,37,38]]],[6,6,3,38,41,[[223,2,1,38,39],[225,2,1,39,40],[231,2,1,40,41]]],[8,9,6,41,47,[[249,4,2,41,43],[254,2,2,43,45],[255,1,1,45,46],[257,2,1,46,47]]],[9,7,5,47,52,[[267,1,1,47,48],[278,2,1,48,49],[279,1,1,49,50],[280,2,1,50,51],[287,1,1,51,52]]],[10,12,8,52,60,[[291,1,1,52,53],[292,4,2,53,55],[293,4,2,55,57],[301,1,1,57,58],[307,2,2,58,60]]],[11,10,6,60,66,[[313,6,3,60,63],[320,3,2,63,65],[333,1,1,65,66]]],[18,1,1,66,67,[[582,1,1,66,67]]],[20,1,1,67,68,[[667,1,1,67,68]]],[23,9,6,68,74,[[770,5,3,68,71],[782,2,1,71,72],[785,1,1,72,73],[787,1,1,73,74]]],[25,8,4,74,78,[[804,2,1,74,75],[819,2,1,75,76],[834,4,2,76,78]]]],[47,59,502,703,1289,1901,1950,2038,2089,2092,2093,2094,2132,2434,2435,3320,3327,3328,3329,3330,3331,3333,3334,3345,3462,3463,3599,4188,4235,4554,4861,4862,4863,4864,4866,4876,5395,5494,6906,6942,7107,7547,7552,7707,7711,7763,7803,8038,8300,8349,8370,8581,8768,8807,8812,8842,8843,9148,9335,9337,9537,9539,9549,9732,9737,10142,15635,17480,19580,19587,19591,19910,19961,20000,20520,20862,21288,21294]]],["Died",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8114]]],["Slay",[2,2,[[13,1,1,0,1,[[389,1,1,0,1]]],[23,1,1,1,2,[[785,1,1,1,2]]]],[11670,19965]]],["body",[1,1,[[3,1,1,0,1,[[135,1,1,0,1]]]],[4305]]],["crying",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16943]]],["dead",[132,118,[[0,11,10,0,10,[[22,8,7,0,7],[41,1,1,7,8],[43,1,1,8,9],[49,1,1,9,10]]],[1,8,8,10,18,[[53,1,1,10,11],[58,1,1,11,12],[61,2,2,12,14],[63,1,1,14,15],[70,3,3,15,18]]],[2,1,1,18,19,[[110,1,1,18,19]]],[3,7,6,19,25,[[122,1,1,19,20],[128,1,1,20,21],[132,1,1,21,22],[135,4,3,22,25]]],[4,5,5,25,30,[[154,1,1,25,26],[166,1,1,26,27],[177,2,2,27,29],[178,1,1,29,30]]],[5,1,1,30,31,[[187,1,1,30,31]]],[6,8,8,31,39,[[212,1,1,31,32],[213,1,1,32,33],[214,2,2,33,35],[218,1,1,35,36],[219,1,1,36,37],[226,1,1,37,38],[230,1,1,38,39]]],[7,6,4,39,43,[[232,1,1,39,40],[233,1,1,40,41],[235,4,2,41,43]]],[8,8,8,43,51,[[239,2,2,43,45],[252,1,1,45,46],[259,1,1,46,47],[260,1,1,47,48],[263,1,1,48,49],[266,2,2,49,51]]],[9,27,21,51,72,[[267,3,2,51,53],[268,1,1,53,54],[270,2,2,54,56],[275,1,1,56,57],[277,4,3,57,60],[278,7,4,60,64],[279,4,3,64,67],[280,2,2,67,69],[282,1,1,69,70],[284,1,1,70,71],[285,1,1,71,72]]],[10,12,9,72,81,[[293,6,4,72,76],[301,1,1,76,77],[303,1,1,77,78],[311,4,3,78,81]]],[11,5,5,81,86,[[316,2,2,81,83],[323,1,1,83,84],[331,1,1,84,85],[335,1,1,85,86]]],[12,10,10,86,96,[[338,7,7,86,93],[339,1,1,93,94],[347,2,2,94,96]]],[13,1,1,96,97,[[388,1,1,96,97]]],[17,1,1,97,98,[[436,1,1,97,98]]],[18,5,5,98,103,[[565,2,2,98,100],[583,1,1,100,101],[592,1,1,101,102],[620,1,1,102,103]]],[20,5,4,103,107,[[662,2,1,103,104],[667,3,3,104,107]]],[22,6,6,107,113,[[686,1,1,107,108],[700,1,1,108,109],[704,2,2,109,111],[715,1,1,111,112],[737,1,1,112,113]]],[23,2,2,113,115,[[760,1,1,113,114],[766,1,1,114,115]]],[24,1,1,115,116,[[799,1,1,115,116]]],[25,2,2,116,118,[[825,1,1,116,117],[845,1,1,117,118]]]],[574,575,577,579,582,584,586,1290,1344,1521,1620,1749,1846,1849,1919,2111,2112,2113,3356,3829,4071,4242,4300,4302,4307,4954,5291,5552,5553,5580,5853,6564,6593,6600,6621,6752,6809,6979,7059,7135,7169,7195,7200,7314,7316,7669,7853,7900,7945,8014,8016,8026,8027,8056,8121,8130,8235,8280,8283,8285,8304,8305,8307,8309,8349,8350,8356,8358,8361,8435,8498,8521,8836,8837,8838,8839,9129,9215,9465,9466,9467,9604,9635,9830,10096,10195,10296,10297,10298,10299,10300,10301,10302,10325,10664,10666,11654,12888,15313,15318,15679,15847,16296,17383,17478,17479,17480,17826,18054,18144,18149,18388,18810,19343,19464,20360,21073,21624]]],["death",[52,46,[[1,2,2,0,2,[[70,1,1,0,1],[84,1,1,1,2]]],[2,3,3,2,5,[[108,1,1,2,3],[113,2,2,3,5]]],[3,5,5,5,10,[[117,1,1,5,6],[119,2,2,6,8],[134,1,1,8,9],[151,1,1,9,10]]],[4,10,6,10,16,[[165,2,2,10,12],[169,4,2,12,14],[173,1,1,14,15],[176,3,1,15,16]]],[5,1,1,16,17,[[187,1,1,16,17]]],[6,4,4,17,21,[[215,1,1,17,18],[216,1,1,18,19],[226,1,1,19,20],[230,1,1,20,21]]],[8,3,3,21,24,[[239,1,1,21,22],[246,2,2,22,24]]],[9,5,5,24,29,[[274,1,1,24,25],[285,2,2,25,27],[286,1,1,27,28],[287,1,1,28,29]]],[10,3,3,29,32,[[292,3,3,29,32]]],[11,4,2,32,34,[[326,3,1,32,33],[332,1,1,33,34]]],[13,3,3,34,37,[[381,1,1,34,35],[389,1,1,35,36],[398,1,1,36,37]]],[16,1,1,37,38,[[429,1,1,37,38]]],[18,1,1,38,39,[[525,1,1,38,39]]],[22,1,1,39,40,[[716,1,1,39,40]]],[23,6,6,40,46,[[770,2,2,40,42],[782,3,3,42,45],[796,1,1,45,46]]]],[2106,2533,3301,3462,3467,3655,3702,3730,4264,4876,5277,5281,5370,5371,5469,5541,5869,6641,6685,6965,7067,7317,7457,7458,8211,8532,8533,8557,8589,8778,8794,8796,9902,10099,11503,11663,11899,12773,14648,18391,19593,19596,19899,19911,19920,20303]]],["destroy",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8573]]],["destroyers",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13672]]],["die",[232,220,[[0,23,22,0,22,[[2,1,1,0,1],[18,1,1,1,2],[24,1,1,2,3],[25,1,1,3,4],[26,1,1,4,5],[29,1,1,5,6],[32,1,1,6,7],[37,1,1,7,8],[41,2,2,8,10],[42,1,1,10,11],[43,3,3,11,14],[44,1,1,14,15],[45,1,1,15,16],[46,4,3,16,19],[47,1,1,19,20],[49,2,2,20,22]]],[1,20,20,22,42,[[56,1,1,22,23],[58,2,2,23,25],[59,1,1,25,26],[60,1,1,26,27],[63,1,1,27,28],[69,1,1,28,29],[70,6,6,29,35],[71,3,3,35,38],[77,2,2,38,40],[79,2,2,40,42]]],[2,10,10,42,52,[[97,1,1,42,43],[99,3,3,43,46],[100,1,1,46,47],[104,1,1,47,48],[105,2,2,48,50],[109,1,1,50,51],[111,1,1,51,52]]],[3,28,25,52,77,[[120,3,3,52,55],[122,2,2,55,57],[130,1,1,57,58],[132,1,1,58,59],[133,2,2,59,61],[134,3,3,61,64],[136,2,2,64,66],[137,1,1,66,67],[139,1,1,67,68],[143,1,1,68,69],[151,11,8,69,77]]],[4,24,23,77,100,[[156,1,1,77,78],[157,2,1,78,79],[165,1,1,79,80],[169,2,2,80,82],[170,2,2,82,84],[171,3,3,84,87],[172,3,3,87,90],[173,1,1,90,91],[174,3,3,91,94],[176,2,2,94,96],[177,1,1,96,97],[183,1,1,97,98],[184,1,1,98,99],[185,1,1,99,100]]],[5,1,1,100,101,[[206,1,1,100,101]]],[6,4,4,101,105,[[216,2,2,101,103],[225,1,1,103,104],[226,1,1,104,105]]],[7,1,1,105,106,[[232,1,1,105,106]]],[8,9,9,106,115,[[237,2,2,106,108],[247,1,1,108,109],[249,2,2,109,111],[255,2,2,111,113],[261,1,1,113,114],[263,1,1,114,115]]],[9,5,5,115,120,[[277,1,1,115,116],[278,1,1,116,117],[284,1,1,117,118],[285,2,2,118,120]]],[10,7,7,120,127,[[291,1,1,120,121],[292,2,2,121,123],[304,1,1,123,124],[307,1,1,124,125],[309,1,1,125,126],[311,1,1,126,127]]],[11,6,4,127,131,[[319,4,2,127,129],[330,1,1,129,130],[332,1,1,130,131]]],[13,4,2,131,133,[[391,3,1,131,132],[398,1,1,132,133]]],[17,7,7,133,140,[[437,1,1,133,134],[439,1,1,134,135],[447,1,1,135,136],[449,2,2,136,138],[469,1,1,138,139],[471,1,1,139,140]]],[18,4,4,140,144,[[518,1,1,140,141],[526,1,1,141,142],[559,1,1,142,143],[595,1,1,143,144]]],[19,6,6,144,150,[[632,1,1,144,145],[637,1,1,145,146],[642,1,1,146,147],[646,1,1,147,148],[650,1,1,148,149],[657,1,1,149,150]]],[20,2,2,150,152,[[661,1,1,150,151],[665,1,1,151,152]]],[22,9,9,152,161,[[700,3,3,152,155],[716,1,1,155,156],[729,3,3,156,159],[743,1,1,159,160],[744,1,1,160,161]]],[23,25,24,161,185,[[755,3,2,161,163],[760,2,2,163,165],[764,1,1,165,166],[765,2,2,166,168],[766,2,2,168,170],[771,1,1,170,171],[772,1,1,171,172],[775,1,1,172,173],[778,2,2,173,175],[781,1,1,175,176],[782,5,5,176,181],[786,3,3,181,184],[788,1,1,184,185]]],[25,29,27,185,212,[[804,4,3,185,188],[806,1,1,188,189],[807,2,1,189,190],[808,1,1,190,191],[813,1,1,191,192],[814,1,1,192,193],[818,1,1,193,194],[819,9,9,194,203],[829,2,2,203,205],[834,7,7,205,212]]],[29,5,5,212,217,[[880,1,1,212,213],[884,1,1,213,214],[885,2,2,214,216],[887,1,1,216,217]]],[31,1,1,217,218,[[892,1,1,217,218]]],[34,1,1,218,219,[[903,1,1,218,219]]],[37,1,1,219,220,[[921,1,1,219,220]]]],[58,476,690,701,731,831,973,1130,1254,1272,1298,1333,1346,1355,1386,1416,1435,1439,1449,1472,1511,1530,1703,1746,1761,1805,1811,1900,2070,2089,2091,2095,2097,2105,2112,2115,2123,2127,2328,2336,2402,2403,2952,2983,2984,2986,3036,3199,3203,3214,3338,3378,3758,3762,3763,3830,3832,4143,4223,4254,4257,4260,4279,4289,4315,4337,4345,4426,4562,4857,4861,4862,4863,4865,4866,4868,4875,5026,5078,5282,5369,5376,5400,5404,5411,5417,5418,5432,5433,5434,5468,5491,5492,5495,5528,5532,5552,5742,5808,5816,6381,6677,6684,6947,6979,7144,7273,7274,7479,7551,7553,7732,7744,7915,7951,8274,8299,8481,8534,8548,8769,8771,8800,9230,9329,9391,9461,9710,9711,10056,10099,11708,11886,12900,12951,13130,13189,13195,13703,13750,14547,14658,15240,15886,16540,16677,16817,16941,17057,17258,17361,17446,18065,18066,18070,18391,18679,18685,18687,18917,18946,19247,19248,19340,19342,19428,19446,19449,19466,19480,19609,19634,19721,19805,19806,19894,19897,19904,19905,19919,19921,19991,19992,19997,20022,20520,20521,20522,20558,20575,20592,20693,20727,20841,20853,20866,20867,20869,20870,20873,20875,20877,20880,21165,21167,21288,21289,21291,21293,21295,21298,21307,22381,22459,22475,22481,22505,22576,22743,23037]]],["died",[154,147,[[0,30,30,0,30,[[4,8,8,0,8],[6,1,1,8,9],[8,1,1,9,10],[10,2,2,10,12],[22,1,1,12,13],[24,2,2,13,15],[34,4,4,15,19],[35,7,7,19,26],[37,1,1,26,27],[45,1,1,27,28],[47,1,1,28,29],[49,1,1,29,30]]],[1,7,6,30,36,[[50,1,1,30,31],[51,1,1,31,32],[56,1,1,32,33],[57,1,1,33,34],[58,2,1,34,35],[65,1,1,35,36]]],[2,2,2,36,38,[[99,1,1,36,37],[105,1,1,37,38]]],[3,18,15,38,53,[[119,1,1,38,39],[130,3,2,39,41],[131,1,1,41,42],[132,2,1,42,43],[136,2,2,43,45],[137,1,1,45,46],[141,1,1,46,47],[142,4,4,47,51],[143,2,1,51,52],[149,1,1,52,53]]],[4,3,3,53,56,[[162,1,1,53,54],[184,1,1,54,55],[186,1,1,55,56]]],[5,5,4,56,60,[[191,1,1,56,57],[196,2,1,57,58],[210,2,2,58,60]]],[6,14,14,60,74,[[211,1,1,60,61],[212,2,2,61,63],[213,1,1,63,64],[214,1,1,64,65],[218,1,1,65,66],[219,2,2,66,68],[220,2,2,68,70],[222,4,4,70,74]]],[7,2,2,74,76,[[232,2,2,74,76]]],[8,8,8,76,84,[[239,1,1,76,77],[240,1,1,77,78],[249,1,1,78,79],[260,3,3,79,82],[266,2,2,82,84]]],[9,16,15,84,99,[[267,1,1,84,85],[268,3,2,85,87],[269,1,1,87,88],[272,1,1,88,89],[276,2,2,89,91],[277,2,2,91,93],[278,1,1,93,94],[283,1,1,94,95],[284,1,1,95,96],[285,1,1,96,97],[286,1,1,97,98],[290,1,1,98,99]]],[10,10,10,99,109,[[292,2,2,99,101],[293,1,1,101,102],[302,1,1,102,103],[304,1,1,103,104],[306,2,2,104,106],[311,1,1,106,107],[312,2,2,107,109]]],[11,12,12,109,121,[[313,1,1,109,110],[316,1,1,110,111],[319,2,2,111,113],[320,1,1,113,114],[321,1,1,114,115],[324,1,1,115,116],[325,3,3,116,119],[335,1,1,119,120],[337,1,1,120,121]]],[12,12,11,121,132,[[338,1,1,121,122],[339,2,2,122,124],[347,4,3,124,127],[350,1,1,127,128],[356,1,1,128,129],[360,1,1,129,130],[361,1,1,130,131],[366,1,1,131,132]]],[13,9,9,132,141,[[376,1,1,132,133],[379,1,1,133,134],[382,1,1,134,135],[384,1,1,135,136],[387,1,1,136,137],[390,3,3,137,140],[401,1,1,140,141]]],[17,2,2,141,143,[[438,1,1,141,142],[477,1,1,142,143]]],[23,1,1,143,144,[[772,1,1,143,144]]],[25,2,2,144,146,[[812,1,1,144,145],[825,1,1,145,146]]],[27,1,1,146,147,[[874,1,1,146,147]]]],[110,113,116,119,122,125,132,136,181,234,294,298,573,666,675,1019,1029,1030,1040,1073,1074,1075,1076,1077,1078,1079,1131,1398,1458,1532,1538,1577,1706,1723,1748,1950,2979,3202,3696,4110,4145,4189,4243,4312,4339,4346,4480,4499,4500,4508,4550,4557,4798,5192,5808,5844,5938,6075,6505,6509,6516,6553,6566,6579,6620,6751,6803,6808,6813,6816,6876,6879,6881,6884,7130,7132,7315,7331,7553,7862,7898,7899,8014,8015,8037,8072,8080,8108,8164,8241,8258,8276,8280,8304,8472,8511,8517,8564,8707,8795,8816,8835,9169,9235,9301,9305,9464,9515,9517,9550,9623,9724,9727,9742,9783,9871,9885,9891,9895,10199,10247,10303,10336,10338,10664,10665,10672,10770,10908,11005,11017,11192,11413,11473,11522,11576,11643,11692,11699,11702,11990,12915,13939,19635,20668,21074,22267]]],["diest",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7144]]],["dieth",[16,13,[[3,1,1,0,1,[[135,1,1,0,1]]],[10,6,3,1,4,[[304,2,1,1,2],[306,2,1,2,3],[311,2,1,3,4]]],[17,3,3,4,7,[[449,1,1,4,5],[456,2,2,5,7]]],[20,1,1,7,8,[[660,1,1,7,8]]],[22,2,2,8,10,[[728,1,1,8,9],[737,1,1,9,10]]],[25,2,2,10,12,[[819,2,2,10,12]]],[37,1,1,12,13,[[921,1,1,12,13]]]],[4303,9229,9287,9475,13191,13378,13380,17349,18664,18805,20875,20881,23037]]],["kill",[19,19,[[1,3,3,0,3,[[50,1,1,0,1],[53,1,1,1,2],[66,1,1,2,3]]],[2,1,1,3,4,[[109,1,1,3,4]]],[3,2,2,4,6,[[130,1,1,4,5],[132,1,1,5,6]]],[4,1,1,6,7,[[184,1,1,6,7]]],[6,1,1,7,8,[[223,1,1,7,8]]],[8,3,3,8,11,[[254,2,2,8,10],[265,1,1,10,11]]],[9,4,4,11,15,[[279,1,1,11,12],[280,2,2,12,14],[287,1,1,14,15]]],[11,3,3,15,18,[[317,1,1,15,16],[319,1,1,16,17],[323,1,1,17,18]]],[22,1,1,18,19,[[692,1,1,18,19]]]],[1548,1625,1986,3322,4123,4207,5797,6907,7708,7723,7993,8345,8363,8388,8584,9654,9711,9844,17958]]],["killed",[5,5,[[1,1,1,0,1,[[70,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]],[10,1,1,2,3,[[306,1,1,2,3]]],[11,1,1,3,4,[[327,1,1,3,4]]],[12,1,1,4,5,[[356,1,1,4,5]]]],[2106,8597,9293,9950,10925]]],["killeth",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[19,1,1,1,2,[[648,1,1,1,2]]]],[7246,17009]]],["man",[3,3,[[0,1,1,0,1,[[19,1,1,0,1]]],[3,1,1,1,2,[[122,1,1,1,2]]],[18,1,1,2,3,[[508,1,1,2,3]]]],[498,3832,14343]]],["slain",[15,14,[[8,4,4,0,4,[[239,1,1,0,1],[254,2,2,1,3],[255,1,1,3,4]]],[9,1,1,4,5,[[269,1,1,4,5]]],[10,1,1,5,6,[[303,1,1,5,6]]],[11,5,4,6,10,[[323,5,4,6,10]]],[13,4,4,10,14,[[388,2,2,10,12],[389,2,2,12,14]]]],[7308,7712,7717,7762,8111,9210,9831,9837,9844,9845,11653,11655,11670,11677]]],["slay",[29,28,[[0,2,2,0,2,[[17,1,1,0,1],[36,1,1,1,2]]],[3,1,1,2,3,[[151,1,1,2,3]]],[4,1,1,3,4,[[161,1,1,3,4]]],[6,1,1,4,5,[[219,1,1,4,5]]],[8,8,8,5,13,[[237,1,1,5,6],[240,2,2,6,8],[250,1,1,8,9],[254,2,2,9,11],[255,1,1,11,12],[257,1,1,12,13]]],[9,2,2,13,15,[[267,1,1,13,14],[269,1,1,14,15]]],[10,4,3,15,18,[[305,1,1,15,16],[308,1,1,16,17],[309,2,1,17,18]]],[11,1,1,18,19,[[329,1,1,18,19]]],[17,1,1,19,20,[[444,1,1,19,20]]],[18,3,3,20,23,[[511,1,1,20,21],[514,1,1,21,22],[586,1,1,22,23]]],[22,2,2,23,25,[[689,1,1,23,24],[743,1,1,24,25]]],[25,1,1,25,26,[[814,1,1,25,26]]],[27,2,2,26,28,[[863,1,1,26,27],[870,1,1,27,28]]]],[449,1101,4864,5185,6808,7265,7329,7330,7563,7717,7721,7738,7804,8031,8118,9277,9350,9404,10009,13074,14409,14482,15771,17888,18912,20727,22108,22224]]],["slayeth",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12953]]],["slew",[37,36,[[0,2,2,0,2,[[37,2,2,0,2]]],[5,2,2,2,4,[[196,1,1,2,3],[197,1,1,3,4]]],[6,2,1,4,5,[[226,2,1,4,5]]],[8,6,6,5,11,[[249,1,1,5,6],[252,3,3,6,9],[257,1,1,9,10],[265,1,1,10,11]]],[9,4,4,11,15,[[267,1,1,11,12],[270,1,1,12,13],[280,1,1,13,14],[284,1,1,14,15]]],[10,2,2,15,17,[[292,1,1,15,16],[303,1,1,16,17]]],[11,9,9,17,26,[[323,1,1,17,18],[326,2,2,18,20],[327,3,3,20,23],[328,1,1,23,24],[335,1,1,24,25],[337,1,1,25,26]]],[12,2,2,26,28,[[339,1,1,26,27],[347,1,1,27,28]]],[13,5,5,28,33,[[388,1,1,28,29],[389,1,1,29,30],[391,2,2,30,32],[399,1,1,32,33]]],[23,3,3,33,36,[[764,1,1,33,34],[785,2,2,34,36]]]],[1126,1129,6090,6124,6979,7521,7653,7668,7669,7805,7980,8032,8127,8362,8493,8804,9208,9849,9902,9915,9935,9939,9955,9972,10194,10243,10309,10673,11655,11671,11708,11731,11932,19439,19959,19965]]]]},{"k":"H4192","v":[]},{"k":"H4193","v":[["death",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12199]]]]},{"k":"H4194","v":[["*",[155,150,[[0,7,7,0,7,[[20,1,1,0,1],[24,1,1,1,2],[25,1,1,2,3],[26,3,3,3,6],[49,1,1,6,7]]],[1,1,1,7,8,[[59,1,1,7,8]]],[2,3,3,8,11,[[100,2,2,8,10],[105,1,1,10,11]]],[3,7,6,11,17,[[132,1,1,11,12],[139,1,1,12,13],[149,1,1,13,14],[151,4,3,14,17]]],[4,9,9,17,26,[[171,1,1,17,18],[173,1,1,18,19],[174,1,1,19,20],[182,2,2,20,22],[183,2,2,22,24],[185,1,1,24,25],[186,1,1,25,26]]],[5,3,3,26,29,[[187,1,1,26,27],[188,1,1,27,28],[206,1,1,28,29]]],[6,3,3,29,32,[[211,1,1,29,30],[223,1,1,30,31],[226,1,1,31,32]]],[7,2,2,32,34,[[232,1,1,32,33],[233,1,1,33,34]]],[8,6,6,34,40,[[240,1,1,34,35],[250,2,2,35,37],[255,2,2,37,39],[261,1,1,39,40]]],[9,9,9,40,49,[[267,2,2,40,42],[269,1,1,42,43],[272,1,1,43,44],[278,1,1,44,45],[281,1,1,45,46],[285,1,1,46,47],[288,2,2,47,49]]],[10,2,2,49,51,[[292,1,1,49,50],[301,1,1,50,51]]],[11,6,6,51,57,[[313,1,1,51,52],[314,1,1,52,53],[315,1,1,53,54],[316,1,1,54,55],[326,1,1,55,56],[327,1,1,56,57]]],[12,2,2,57,59,[[339,1,1,57,58],[359,1,1,58,59]]],[13,6,6,59,65,[[388,1,1,59,60],[390,2,2,60,62],[391,1,1,62,63],[392,1,1,63,64],[398,1,1,64,65]]],[16,1,1,65,66,[[427,1,1,65,66]]],[17,8,8,66,74,[[438,1,1,66,67],[440,1,1,67,68],[442,1,1,68,69],[453,1,1,69,70],[462,1,1,70,71],[463,1,1,71,72],[465,1,1,72,73],[473,1,1,73,74]]],[18,21,21,74,95,[[483,1,1,74,75],[484,1,1,75,76],[486,1,1,76,77],[490,1,1,77,78],[495,2,2,78,80],[499,1,1,80,81],[510,1,1,81,82],[526,2,2,82,84],[532,1,1,84,85],[533,1,1,85,86],[545,1,1,86,87],[550,1,1,87,88],[555,1,1,88,89],[566,1,1,89,90],[584,1,1,90,91],[593,3,3,91,94],[595,1,1,94,95]]],[19,19,19,95,114,[[629,1,1,95,96],[632,1,1,96,97],[634,1,1,97,98],[635,1,1,98,99],[637,1,1,99,100],[638,3,3,100,103],[639,1,1,103,104],[640,1,1,104,105],[641,3,3,105,108],[643,2,2,108,110],[645,1,1,110,111],[648,1,1,111,112],[651,1,1,112,113],[653,1,1,113,114]]],[20,6,5,114,119,[[661,2,1,114,115],[665,2,2,115,117],[666,1,1,117,118],[668,1,1,118,119]]],[21,1,1,119,120,[[678,1,1,119,120]]],[22,8,8,120,128,[[684,1,1,120,121],[692,1,1,121,122],[703,1,1,122,123],[706,2,2,123,125],[716,1,1,125,126],[731,2,2,126,128]]],[23,13,11,128,139,[[752,1,1,128,129],[753,1,1,129,130],[759,2,1,130,131],[762,2,2,131,133],[765,1,1,133,134],[770,2,2,134,136],[787,2,1,136,137],[796,2,2,137,139]]],[24,1,1,139,140,[[797,1,1,139,140]]],[25,5,5,140,145,[[819,2,2,140,142],[829,1,1,142,143],[832,1,1,143,144],[834,1,1,144,145]]],[27,2,1,145,146,[[874,2,1,145,146]]],[31,3,3,146,149,[[892,3,3,146,149]]],[34,1,1,149,150,[[904,1,1,149,150]]]],[529,669,710,729,734,737,1522,1794,3028,3029,3202,4223,4426,4799,4870,4873,4877,5412,5469,5496,5723,5727,5755,5757,5811,5846,5852,5882,6378,6510,6891,6979,7144,7160,7330,7592,7595,7733,7761,7921,8023,8045,8114,8180,8291,8410,8539,8607,8608,8796,9148,9534,9572,9581,9643,9913,9930,10330,10969,11648,11692,11694,11729,11753,11908,12731,12925,12971,13023,13289,13496,13526,13580,13810,13990,14008,14034,14077,14122,14123,14219,14385,14662,14665,14736,14768,14920,15024,15163,15374,15717,15851,15856,15863,15887,16451,16522,16602,16638,16658,16692,16695,16707,16747,16761,16784,16799,16804,16854,16865,16922,16990,17090,17159,17378,17430,17455,17466,17494,17646,17770,17956,18126,18179,18182,18408,18720,18723,19156,19196,19317,19405,19407,19448,19583,19588,20008,20287,20310,20330,20872,20881,21167,21244,21291,22280,22571,22576,22577,22753]]],["+",[13,13,[[4,1,1,0,1,[[171,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[9,1,1,3,4,[[278,1,1,3,4]]],[17,1,1,4,5,[[440,1,1,4,5]]],[18,4,4,5,9,[[510,1,1,5,6],[533,1,1,6,7],[555,1,1,7,8],[593,1,1,8,9]]],[19,2,2,9,11,[[637,1,1,9,10],[638,1,1,10,11]]],[20,1,1,11,12,[[665,1,1,11,12]]],[27,1,1,12,13,[[874,1,1,12,13]]]],[5412,5882,7761,8291,12971,14385,14768,15163,15856,16658,16692,17455,22280]]],["Dead",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17494]]],["Death",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16922]]],["dead",[6,6,[[2,2,2,0,2,[[100,2,2,0,2]]],[9,1,1,2,3,[[285,1,1,2,3]]],[11,1,1,3,4,[[315,1,1,3,4]]],[12,1,1,4,5,[[339,1,1,4,5]]],[16,1,1,5,6,[[427,1,1,5,6]]]],[3028,3029,8539,9581,10330,12731]]],["deadly",[1,1,[[8,1,1,0,1,[[240,1,1,0,1]]]],[7330]]],["death",[114,111,[[0,6,6,0,6,[[20,1,1,0,1],[24,1,1,1,2],[25,1,1,2,3],[26,3,3,3,6]]],[1,1,1,6,7,[[59,1,1,6,7]]],[2,1,1,7,8,[[105,1,1,7,8]]],[3,6,5,8,13,[[132,1,1,8,9],[139,1,1,9,10],[151,4,3,10,13]]],[4,7,7,13,20,[[173,1,1,13,14],[174,1,1,14,15],[182,2,2,15,17],[183,2,2,17,19],[185,1,1,19,20]]],[5,2,2,20,22,[[187,1,1,20,21],[206,1,1,21,22]]],[6,3,3,22,25,[[211,1,1,22,23],[223,1,1,23,24],[226,1,1,24,25]]],[7,2,2,25,27,[[232,1,1,25,26],[233,1,1,26,27]]],[8,3,3,27,30,[[250,2,2,27,29],[255,1,1,29,30]]],[9,6,6,30,36,[[267,2,2,30,32],[272,1,1,32,33],[281,1,1,33,34],[288,2,2,34,36]]],[10,2,2,36,38,[[292,1,1,36,37],[301,1,1,37,38]]],[11,5,5,38,43,[[313,1,1,38,39],[314,1,1,39,40],[316,1,1,40,41],[326,1,1,41,42],[327,1,1,42,43]]],[12,1,1,43,44,[[359,1,1,43,44]]],[13,5,5,44,49,[[388,1,1,44,45],[390,1,1,45,46],[391,1,1,46,47],[392,1,1,47,48],[398,1,1,48,49]]],[17,7,7,49,56,[[438,1,1,49,50],[442,1,1,50,51],[453,1,1,51,52],[462,1,1,52,53],[463,1,1,53,54],[465,1,1,54,55],[473,1,1,55,56]]],[18,16,16,56,72,[[483,1,1,56,57],[484,1,1,57,58],[486,1,1,58,59],[490,1,1,59,60],[495,2,2,60,62],[499,1,1,62,63],[526,1,1,63,64],[532,1,1,64,65],[545,1,1,65,66],[550,1,1,66,67],[566,1,1,67,68],[584,1,1,68,69],[593,2,2,69,71],[595,1,1,71,72]]],[19,15,15,72,87,[[629,1,1,72,73],[632,1,1,73,74],[634,1,1,74,75],[635,1,1,75,76],[638,1,1,76,77],[639,1,1,77,78],[640,1,1,78,79],[641,3,3,79,82],[643,2,2,82,84],[648,1,1,84,85],[651,1,1,85,86],[653,1,1,86,87]]],[20,2,2,87,89,[[665,1,1,87,88],[666,1,1,88,89]]],[21,1,1,89,90,[[678,1,1,89,90]]],[22,6,6,90,96,[[703,1,1,90,91],[706,2,2,91,93],[716,1,1,93,94],[731,2,2,94,96]]],[23,10,8,96,104,[[752,1,1,96,97],[753,1,1,97,98],[759,2,1,98,99],[762,1,1,99,100],[765,1,1,100,101],[787,2,1,101,102],[796,2,2,102,104]]],[24,1,1,104,105,[[797,1,1,104,105]]],[25,3,3,105,108,[[819,1,1,105,106],[832,1,1,106,107],[834,1,1,107,108]]],[27,1,1,108,109,[[874,1,1,108,109]]],[31,1,1,109,110,[[892,1,1,109,110]]],[34,1,1,110,111,[[904,1,1,110,111]]]],[529,669,710,729,734,737,1794,3202,4223,4426,4870,4873,4877,5469,5496,5723,5727,5755,5757,5811,5852,6378,6510,6891,6979,7144,7160,7592,7595,7733,8023,8045,8180,8410,8607,8608,8796,9148,9534,9572,9643,9913,9930,10969,11648,11694,11729,11753,11908,12925,13023,13289,13496,13526,13580,13810,13990,14008,14034,14077,14122,14123,14219,14662,14736,14920,15024,15374,15717,15851,15863,15887,16451,16522,16602,16638,16707,16747,16761,16784,16799,16804,16854,16865,16990,17090,17159,17430,17466,17646,18126,18179,18182,18408,18720,18723,19156,19196,19317,19405,19448,20008,20287,20310,20330,20881,21244,21291,22280,22577,22753]]],["deaths",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21167]]],["die",[6,6,[[8,1,1,0,1,[[261,1,1,0,1]]],[23,2,2,1,3,[[770,2,2,1,3]]],[25,1,1,3,4,[[819,1,1,3,4]]],[31,2,2,4,6,[[892,2,2,4,6]]]],[7921,19583,19588,20872,22571,22576]]],["died",[6,6,[[0,1,1,0,1,[[49,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]],[4,1,1,2,3,[[186,1,1,2,3]]],[13,1,1,3,4,[[390,1,1,3,4]]],[22,2,2,4,6,[[684,1,1,4,5],[692,1,1,5,6]]]],[1522,4799,5846,11692,17770,17956]]],["dieth",[5,4,[[9,1,1,0,1,[[269,1,1,0,1]]],[18,1,1,1,2,[[526,1,1,1,2]]],[19,1,1,2,3,[[638,1,1,2,3]]],[20,2,1,3,4,[[661,2,1,3,4]]]],[8114,14665,16695,17378]]],["slay",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19407]]]]},{"k":"H4195","v":[["*",[3,3,[[19,2,2,0,2,[[641,1,1,0,1],[648,1,1,1,2]]],[20,1,1,2,3,[[661,1,1,2,3]]]],[16795,16989,17378]]],["plenteousness",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16989]]],["preeminence",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17378]]],["profit",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16795]]]]},{"k":"H4196","v":[["*",[401,338,[[0,13,11,0,11,[[7,2,1,0,1],[11,2,2,1,3],[12,2,2,3,5],[21,2,1,5,6],[25,1,1,6,7],[32,1,1,7,8],[34,3,3,8,11]]],[1,59,51,11,62,[[66,1,1,11,12],[69,3,3,12,15],[70,1,1,15,16],[73,2,2,16,18],[76,6,4,18,22],[77,1,1,22,23],[78,14,11,23,34],[79,5,5,34,39],[80,2,2,39,41],[81,1,1,41,42],[83,1,1,42,43],[84,2,2,43,45],[86,1,1,45,46],[87,6,5,46,51],[88,2,2,51,53],[89,11,9,53,62]]],[2,87,71,62,133,[[90,13,10,62,72],[91,4,4,72,76],[92,6,6,76,82],[93,15,10,82,92],[94,3,2,92,94],[95,8,6,94,100],[96,3,3,100,103],[97,11,8,103,111],[98,12,11,111,122],[99,1,1,122,123],[103,1,1,123,124],[105,6,5,124,129],[106,2,2,129,131],[110,1,1,131,132],[111,1,1,132,133]]],[3,29,26,133,159,[[119,2,2,133,135],[120,4,4,135,139],[121,2,2,139,141],[123,6,5,141,146],[132,3,3,146,149],[134,4,4,149,153],[139,8,6,153,159]]],[4,10,8,159,167,[[159,1,1,159,160],[164,3,2,160,162],[168,1,1,162,163],[178,1,1,163,164],[179,3,2,164,166],[185,1,1,166,167]]],[5,15,12,167,179,[[194,2,2,167,169],[195,1,1,169,170],[208,12,9,170,179]]],[6,12,10,179,189,[[212,1,1,179,180],[216,8,7,180,187],[223,2,1,187,188],[231,1,1,188,189]]],[8,5,4,189,193,[[237,2,2,189,191],[242,1,1,191,192],[249,2,1,192,193]]],[9,3,3,193,196,[[290,3,3,193,196]]],[10,35,29,196,225,[[291,3,3,196,199],[292,2,2,199,201],[293,1,1,201,202],[296,2,2,202,204],[297,1,1,204,205],[298,4,4,205,209],[299,1,1,209,210],[302,3,2,210,212],[303,10,6,212,218],[306,1,1,218,219],[308,5,4,219,223],[309,2,2,223,225]]],[11,28,19,225,244,[[323,3,2,225,227],[324,1,1,227,228],[328,11,6,228,234],[330,2,1,234,235],[333,3,3,235,238],[335,8,6,238,244]]],[12,10,8,244,252,[[343,2,1,244,245],[353,1,1,245,246],[358,5,4,246,250],[359,1,1,250,251],[365,1,1,251,252]]],[13,39,35,252,287,[[367,2,2,252,254],[370,2,2,254,256],[371,1,1,256,257],[372,2,2,257,259],[373,2,2,259,261],[374,1,1,261,262],[380,1,1,262,263],[381,1,1,263,264],[389,3,2,264,266],[392,2,2,266,268],[394,1,1,268,269],[395,8,6,269,275],[396,1,1,275,276],[397,1,1,276,277],[398,2,1,277,278],[399,5,5,278,283],[400,3,3,283,286],[401,1,1,286,287]]],[14,2,2,287,289,[[405,2,2,287,289]]],[15,1,1,289,290,[[422,1,1,289,290]]],[18,5,5,290,295,[[503,1,1,290,291],[520,1,1,291,292],[528,1,1,292,293],[561,1,1,293,294],[595,1,1,294,295]]],[22,8,7,295,302,[[684,1,1,295,296],[695,1,1,296,297],[697,1,1,297,298],[705,1,1,298,299],[714,2,1,299,300],[734,1,1,300,301],[738,1,1,301,302]]],[23,4,3,302,305,[[755,2,1,302,303],[761,2,2,303,305]]],[24,1,1,305,306,[[798,1,1,305,306]]],[25,18,17,306,323,[[807,4,4,306,310],[809,2,2,310,312],[810,1,1,312,313],[841,2,2,313,315],[842,1,1,315,316],[844,6,5,316,321],[846,1,1,321,322],[848,1,1,322,323]]],[27,6,5,323,328,[[869,2,1,323,324],[871,3,3,324,327],[873,1,1,327,328]]],[28,2,2,328,330,[[876,1,1,328,329],[877,1,1,329,330]]],[29,4,3,330,333,[[880,1,1,330,331],[881,2,1,331,332],[887,1,1,332,333]]],[37,2,2,333,335,[[919,1,1,333,334],[924,1,1,334,335]]],[38,3,3,335,338,[[925,2,2,335,337],[926,1,1,337,338]]]],[203,305,306,322,336,556,717,980,1012,1014,1018,1998,2075,2076,2077,2091,2181,2183,2273,2277,2278,2279,2336,2348,2349,2352,2354,2356,2357,2361,2372,2373,2374,2380,2383,2400,2402,2409,2410,2428,2429,2443,2509,2546,2547,2629,2634,2636,2637,2640,2663,2702,2703,2712,2713,2714,2717,2733,2736,2737,2739,2740,2750,2752,2753,2754,2756,2757,2758,2760,2761,2762,2764,2770,2771,2774,2780,2783,2786,2789,2791,2794,2802,2805,2813,2814,2820,2821,2825,2826,2829,2830,2839,2842,2858,2859,2861,2862,2863,2864,2881,2884,2910,2928,2932,2933,2936,2938,2941,2945,2947,2960,2961,2962,2963,2965,2966,2967,2970,2971,2973,2977,2989,3131,3213,3219,3221,3226,3234,3241,3246,3368,3391,3718,3723,3754,3756,3757,3769,3817,3818,3851,3860,3861,3934,3938,4232,4233,4240,4260,4262,4264,4274,4417,4418,4420,4430,4445,4446,5116,5243,5267,5363,5570,5590,5591,5820,6032,6033,6064,6436,6437,6442,6445,6449,6452,6454,6455,6460,6547,6678,6679,6680,6682,6684,6685,6686,6904,7106,7268,7273,7369,7543,8710,8713,8717,8767,8768,8770,8798,8799,8820,8916,8918,8982,9007,9016,9039,9049,9076,9183,9184,9185,9186,9187,9188,9189,9216,9315,9367,9371,9373,9376,9397,9401,9840,9847,9859,9973,9974,9975,9976,9977,9978,10046,10122,10123,10124,10174,10177,10180,10181,10182,10185,10503,10860,10952,10956,10960,10963,10965,11161,11199,11200,11247,11265,11280,11294,11304,11331,11333,11358,11478,11498,11666,11673,11748,11751,11788,11809,11810,11812,11813,11815,11818,11841,11855,11887,11911,11912,11913,11923,11924,11937,11938,11940,11982,12099,12100,12583,14279,14570,14710,15262,15896,17775,17991,18023,18160,18337,18760,18828,19239,19358,19359,20339,20567,20568,20569,20576,20609,20620,20624,21523,21524,21548,21585,21590,21594,21598,21599,21649,21680,22205,22226,22227,22233,22263,22304,22328,22387,22409,22496,23014,23088,23096,23099,23116]]],["+",[2,2,[[1,1,1,0,1,[[87,1,1,0,1]]],[2,1,1,1,2,[[98,1,1,1,2]]]],[2636,2977]]],["altar",[347,295,[[0,13,11,0,11,[[7,2,1,0,1],[11,2,2,1,3],[12,2,2,3,5],[21,2,1,5,6],[25,1,1,6,7],[32,1,1,7,8],[34,3,3,8,11]]],[1,57,49,11,60,[[66,1,1,11,12],[69,3,3,12,15],[70,1,1,15,16],[73,2,2,16,18],[76,6,4,18,22],[77,1,1,22,23],[78,14,11,23,34],[79,5,5,34,39],[80,2,2,39,41],[81,1,1,41,42],[84,2,2,42,44],[86,1,1,44,45],[87,5,4,45,49],[88,2,2,49,51],[89,11,9,51,60]]],[2,86,70,60,130,[[90,13,10,60,70],[91,4,4,70,74],[92,6,6,74,80],[93,15,10,80,90],[94,3,2,90,92],[95,8,6,92,98],[96,3,3,98,101],[97,11,8,101,109],[98,11,10,109,119],[99,1,1,119,120],[103,1,1,120,121],[105,6,5,121,126],[106,2,2,126,128],[110,1,1,128,129],[111,1,1,129,130]]],[3,24,23,130,153,[[119,1,1,130,131],[120,4,4,131,135],[121,2,2,135,137],[123,6,5,137,142],[132,3,3,142,145],[134,4,4,145,149],[139,4,4,149,153]]],[4,8,6,153,159,[[164,2,1,153,154],[168,1,1,154,155],[178,1,1,155,156],[179,3,2,156,158],[185,1,1,158,159]]],[5,15,12,159,171,[[194,2,2,159,161],[195,1,1,161,162],[208,12,9,162,171]]],[6,11,9,171,180,[[216,8,7,171,178],[223,2,1,178,179],[231,1,1,179,180]]],[8,5,4,180,184,[[237,2,2,180,182],[242,1,1,182,183],[249,2,1,183,184]]],[9,3,3,184,187,[[290,3,3,184,187]]],[10,33,27,187,214,[[291,3,3,187,190],[292,2,2,190,192],[293,1,1,192,193],[296,2,2,193,195],[297,1,1,195,196],[298,4,4,196,200],[299,1,1,200,201],[302,3,2,201,203],[303,10,6,203,209],[306,1,1,209,210],[308,5,4,210,214]]],[11,19,13,214,227,[[323,1,1,214,215],[324,1,1,215,216],[328,11,6,216,222],[330,1,1,222,223],[335,5,4,223,227]]],[12,10,8,227,235,[[343,2,1,227,228],[353,1,1,228,229],[358,5,4,229,233],[359,1,1,233,234],[365,1,1,234,235]]],[13,25,23,235,258,[[367,2,2,235,237],[370,2,2,237,239],[371,1,1,239,240],[372,2,2,240,242],[373,2,2,242,244],[374,1,1,244,245],[381,1,1,245,246],[389,1,1,246,247],[392,2,2,247,249],[395,8,6,249,255],[398,1,1,255,256],[399,1,1,256,257],[401,1,1,257,258]]],[14,2,2,258,260,[[405,2,2,258,260]]],[15,1,1,260,261,[[422,1,1,260,261]]],[18,4,4,261,265,[[503,1,1,261,262],[520,1,1,262,263],[528,1,1,263,264],[595,1,1,264,265]]],[22,6,6,265,271,[[684,1,1,265,266],[697,1,1,266,267],[705,1,1,267,268],[714,1,1,268,269],[734,1,1,269,270],[738,1,1,270,271]]],[24,1,1,271,272,[[798,1,1,271,272]]],[25,14,13,272,285,[[809,2,2,272,274],[810,1,1,274,275],[841,2,2,275,277],[842,1,1,277,278],[844,6,5,278,283],[846,1,1,283,284],[848,1,1,284,285]]],[28,2,2,285,287,[[876,1,1,285,286],[877,1,1,286,287]]],[29,3,3,287,290,[[880,1,1,287,288],[881,1,1,288,289],[887,1,1,289,290]]],[37,2,2,290,292,[[919,1,1,290,291],[924,1,1,291,292]]],[38,3,3,292,295,[[925,2,2,292,294],[926,1,1,294,295]]]],[203,305,306,322,336,556,717,980,1012,1014,1018,1998,2075,2076,2077,2091,2181,2183,2273,2277,2278,2279,2336,2348,2349,2352,2354,2356,2357,2361,2372,2373,2374,2380,2383,2400,2402,2409,2410,2428,2429,2443,2546,2547,2629,2634,2637,2640,2663,2702,2703,2712,2713,2714,2717,2733,2736,2737,2739,2740,2750,2752,2753,2754,2756,2757,2758,2760,2761,2762,2764,2770,2771,2774,2780,2783,2786,2789,2791,2794,2802,2805,2813,2814,2820,2821,2825,2826,2829,2830,2839,2842,2858,2859,2861,2862,2863,2864,2881,2884,2910,2928,2932,2933,2936,2938,2941,2945,2947,2960,2961,2962,2963,2965,2966,2967,2970,2971,2973,2989,3131,3213,3219,3221,3226,3234,3241,3246,3368,3391,3718,3754,3756,3757,3769,3817,3818,3851,3860,3861,3934,3938,4232,4233,4240,4260,4262,4264,4274,4418,4420,4430,4446,5267,5363,5570,5590,5591,5820,6032,6033,6064,6436,6437,6442,6445,6449,6452,6454,6455,6460,6678,6679,6680,6682,6684,6685,6686,6904,7106,7268,7273,7369,7543,8710,8713,8717,8767,8768,8770,8798,8799,8820,8916,8918,8982,9007,9016,9039,9049,9076,9183,9184,9185,9186,9187,9188,9189,9216,9315,9367,9371,9373,9376,9840,9859,9973,9974,9975,9976,9977,9978,10046,10174,10180,10181,10182,10503,10860,10952,10956,10960,10963,10965,11161,11199,11200,11247,11265,11280,11294,11304,11331,11333,11358,11498,11666,11748,11751,11809,11810,11812,11813,11815,11818,11887,11924,11982,12099,12100,12583,14279,14570,14710,15896,17775,18023,18160,18337,18760,18828,20339,20609,20620,20624,21523,21524,21548,21585,21590,21594,21598,21599,21649,21680,22304,22328,22387,22409,22496,23014,23088,23096,23099,23116]]],["altars",[52,47,[[1,1,1,0,1,[[83,1,1,0,1]]],[3,5,5,1,6,[[119,1,1,1,2],[139,4,4,2,6]]],[4,2,2,6,8,[[159,1,1,6,7],[164,1,1,7,8]]],[6,1,1,8,9,[[212,1,1,8,9]]],[10,2,2,9,11,[[309,2,2,9,11]]],[11,9,7,11,18,[[323,2,1,11,12],[330,1,1,12,13],[333,3,3,13,16],[335,3,2,16,18]]],[13,14,13,18,31,[[380,1,1,18,19],[389,2,1,19,20],[394,1,1,20,21],[396,1,1,21,22],[397,1,1,22,23],[398,1,1,23,24],[399,4,4,24,28],[400,3,3,28,31]]],[18,1,1,31,32,[[561,1,1,31,32]]],[22,2,2,32,34,[[695,1,1,32,33],[714,1,1,33,34]]],[23,4,3,34,37,[[755,2,1,34,35],[761,2,2,35,37]]],[25,4,4,37,41,[[807,4,4,37,41]]],[27,6,5,41,46,[[869,2,1,41,42],[871,3,3,42,45],[873,1,1,45,46]]],[29,1,1,46,47,[[881,1,1,46,47]]]],[2509,3723,4417,4420,4430,4445,5116,5243,6547,9397,9401,9847,10046,10122,10123,10124,10177,10185,11478,11673,11788,11841,11855,11887,11911,11912,11913,11923,11937,11938,11940,15262,17991,18337,19239,19358,19359,20567,20568,20569,20576,22205,22226,22227,22233,22263,22409]]]]},{"k":"H4197","v":[["liquor",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17629]]]]},{"k":"H4198","v":[["burnt",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5782]]]]},{"k":"H4199","v":[["Mizzah",[3,3,[[0,2,2,0,2,[[35,2,2,0,2]]],[12,1,1,2,3,[[338,1,1,2,3]]]],[1053,1057,10289]]]]},{"k":"H4200","v":[["garners",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16318]]]]},{"k":"H4201","v":[["*",[19,17,[[1,4,4,0,4,[[61,3,3,0,3],[70,1,1,3,4]]],[4,2,2,4,6,[[158,1,1,4,5],[163,1,1,5,6]]],[6,1,1,6,7,[[226,1,1,6,7]]],[8,1,1,7,8,[[236,1,1,7,8]]],[10,3,3,8,11,[[296,2,2,8,10],[297,1,1,10,11]]],[19,1,1,11,12,[[635,1,1,11,12]]],[22,1,1,12,13,[[735,1,1,12,13]]],[25,6,4,13,17,[[842,1,1,13,14],[844,2,1,14,15],[846,2,1,15,16],[847,1,1,16,17]]]],[1823,1838,1839,2083,5095,5228,6952,7221,8927,8929,8939,16636,18773,21547,21580,21649,21657]]],["post",[4,4,[[1,1,1,0,1,[[70,1,1,0,1]]],[8,1,1,1,2,[[236,1,1,1,2]]],[25,2,2,2,4,[[844,1,1,2,3],[847,1,1,3,4]]]],[2083,7221,21580,21657]]],["posts",[15,14,[[1,3,3,0,3,[[61,3,3,0,3]]],[4,2,2,3,5,[[158,1,1,3,4],[163,1,1,4,5]]],[6,1,1,5,6,[[226,1,1,5,6]]],[10,3,3,6,9,[[296,2,2,6,8],[297,1,1,8,9]]],[19,1,1,9,10,[[635,1,1,9,10]]],[22,1,1,10,11,[[735,1,1,10,11]]],[25,4,3,11,14,[[842,1,1,11,12],[844,1,1,12,13],[846,2,1,13,14]]]],[1823,1838,1839,5095,5228,6952,8927,8929,8939,16636,18773,21547,21580,21649]]]]},{"k":"H4202","v":[["*",[2,2,[[0,1,1,0,1,[[44,1,1,0,1]]],[13,1,1,1,2,[[377,1,1,1,2]]]],[1381,11437]]],["meat",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1381]]],["victual",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11437]]]]},{"k":"H4203","v":[["meat",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21849,21858]]]]},{"k":"H4204","v":[["wound",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22517]]]]},{"k":"H4205","v":[["*",[3,2,[[23,1,1,0,1,[[774,1,1,0,1]]],[27,2,1,1,2,[[866,2,1,1,2]]]],[19680,22165]]],["up",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19680]]],["wound",[2,1,[[27,2,1,0,1,[[866,2,1,0,1]]]],[22165]]]]},{"k":"H4206","v":[["*",[3,3,[[17,1,1,0,1,[[447,1,1,0,1]]],[18,1,1,1,2,[[586,1,1,1,2]]],[22,1,1,2,3,[[701,1,1,2,3]]]],[13149,15774,18087]]],["girdle",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15774]]],["strength",[2,2,[[17,1,1,0,1,[[447,1,1,0,1]]],[22,1,1,1,2,[[701,1,1,1,2]]]],[13149,18087]]]]},{"k":"H4207","v":[["*",[7,7,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]],[8,2,2,3,5,[[237,2,2,3,5]]],[12,1,1,5,6,[[365,1,1,5,6]]],[13,1,1,6,7,[[370,1,1,6,7]]]],[2275,2636,3757,7253,7254,11160,11262]]],["fleshhook",[2,2,[[8,2,2,0,2,[[237,2,2,0,2]]]],[7253,7254]]],["fleshhooks",[5,5,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]],[12,1,1,3,4,[[365,1,1,3,4]]],[13,1,1,4,5,[[370,1,1,4,5]]]],[2275,2636,3757,11160,11262]]]]},{"k":"H4208","v":[["planets",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10170]]]]},{"k":"H4209","v":[["*",[19,19,[[17,2,2,0,2,[[456,1,1,0,1],[477,1,1,1,2]]],[18,5,5,2,7,[[487,2,2,2,4],[498,1,1,4,5],[514,1,1,5,6],[616,1,1,6,7]]],[19,8,8,7,15,[[628,1,1,7,8],[629,1,1,8,9],[630,1,1,9,10],[632,1,1,10,11],[635,1,1,11,12],[639,1,1,12,13],[641,1,1,13,14],[651,1,1,14,15]]],[23,4,4,15,19,[[755,1,1,15,16],[767,1,1,16,17],[774,1,1,17,18],[795,1,1,18,19]]]],[13382,13924,14043,14045,14202,14457,16259,16404,16444,16476,16519,16614,16721,16789,17087,19241,19504,19691,20223]]],["+",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14457]]],["Discretion",[1,1,[[19,1,1,0,1,[[629,1,1,0,1]]]],[16444]]],["device",[2,2,[[18,1,1,0,1,[[498,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[14202,20223]]],["devices",[4,4,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,1,1,1,2,[[487,1,1,1,2]]],[19,2,2,2,4,[[639,1,1,2,3],[641,1,1,3,4]]]],[13382,14043,16721,16789]]],["discretion",[3,3,[[19,3,3,0,3,[[628,1,1,0,1],[630,1,1,1,2],[632,1,1,2,3]]]],[16404,16476,16519]]],["intents",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19691]]],["inventions",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16614]]],["lewdness",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19241]]],["mischievous",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17087]]],["thought",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13924]]],["thoughts",[2,2,[[18,1,1,0,1,[[487,1,1,0,1]]],[23,1,1,1,2,[[767,1,1,1,2]]]],[14045,19504]]],["wickedly",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16259]]]]},{"k":"H4210","v":[]},{"k":"H4211","v":[["*",[4,4,[[22,2,2,0,2,[[680,1,1,0,1],[696,1,1,1,2]]],[28,1,1,2,3,[[878,1,1,2,3]]],[32,1,1,3,4,[[896,1,1,3,4]]]],[17689,18002,22353,22623]]],["hooks",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18002]]],["pruninghooks",[3,3,[[22,1,1,0,1,[[680,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]],[32,1,1,2,3,[[896,1,1,2,3]]]],[17689,22353,22623]]]]},{"k":"H4212","v":[["snuffers",[5,5,[[10,1,1,0,1,[[297,1,1,0,1]]],[11,2,2,1,3,[[324,1,1,1,2],[337,1,1,2,3]]],[13,1,1,3,4,[[370,1,1,3,4]]],[23,1,1,4,5,[[796,1,1,4,5]]]],[8984,9863,10236,11268,20294]]]]},{"k":"H4213","v":[["*",[4,4,[[22,4,4,0,4,[[688,1,1,0,1],[694,1,1,1,2],[702,1,1,2,3],[707,1,1,3,4]]]],[17875,17983,18101,18210]]],["+",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17983]]],["few",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18101]]],["very",[2,2,[[22,2,2,0,2,[[688,1,1,0,1],[707,1,1,1,2]]]],[17875,18210]]]]},{"k":"H4214","v":[["fan",[2,2,[[22,1,1,0,1,[[708,1,1,0,1]]],[23,1,1,1,2,[[759,1,1,1,2]]]],[18241,19322]]]]},{"k":"H4215","v":[["+",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13778]]]]},{"k":"H4216","v":[["Mazzaroth",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13825]]]]},{"k":"H4217","v":[["*",[73,70,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[3,5,5,2,7,[[118,1,1,2,3],[119,1,1,3,4],[137,1,1,4,5],[148,1,1,5,6],[150,1,1,6,7]]],[4,5,5,7,12,[[155,2,2,7,9],[156,3,3,9,12]]],[5,22,19,12,31,[[187,1,1,12,13],[190,1,1,13,14],[197,2,2,14,16],[198,4,2,16,18],[199,4,4,18,22],[202,4,3,22,25],[203,1,1,25,26],[204,1,1,26,27],[205,3,3,27,30],[206,1,1,30,31]]],[6,3,3,31,34,[[221,1,1,31,32],[230,1,1,32,33],[231,1,1,33,34]]],[10,1,1,34,35,[[297,1,1,34,35]]],[11,1,1,35,36,[[322,1,1,35,36]]],[12,10,10,36,46,[[341,1,1,36,37],[342,2,2,37,39],[343,1,1,39,40],[344,1,1,40,41],[346,2,2,41,43],[349,1,1,43,44],[363,2,2,44,46]]],[13,4,4,46,50,[[370,1,1,46,47],[371,1,1,47,48],[395,1,1,48,49],[397,1,1,49,50]]],[15,3,3,50,53,[[415,2,2,50,52],[424,1,1,52,53]]],[18,4,4,53,57,[[527,1,1,53,54],[580,1,1,54,55],[584,1,1,55,56],[590,1,1,56,57]]],[22,6,6,57,63,[[719,2,2,57,59],[721,1,1,59,60],[723,1,1,60,61],[724,1,1,61,62],[737,1,1,62,63]]],[23,1,1,63,64,[[775,1,1,63,64]]],[26,2,2,64,66,[[857,1,1,64,65],[860,1,1,65,66]]],[29,1,1,66,67,[[886,1,1,66,67]]],[37,2,2,67,69,[[918,1,1,67,68],[924,1,1,68,69]]],[38,1,1,69,70,[[925,1,1,69,70]]]],[2285,2646,3661,3730,4351,4737,4831,4992,5002,5045,5051,5053,5866,5929,6110,6115,6131,6133,6159,6162,6181,6186,6266,6270,6271,6285,6300,6333,6348,6355,6380,6847,7097,7121,8959,9826,10424,10437,10438,10532,10563,10633,10639,10735,11091,11094,11250,11280,11795,11868,12353,12356,12661,14669,15561,15702,15816,18453,18476,18510,18567,18597,18819,19731,21970,22080,22493,22983,23072,23100]]],["+",[26,26,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,2,2,1,3,[[156,2,2,1,3]]],[5,8,8,3,11,[[187,1,1,3,4],[197,1,1,4,5],[199,1,1,5,6],[202,1,1,6,7],[203,1,1,7,8],[205,3,3,8,11]]],[6,3,3,11,14,[[221,1,1,11,12],[230,1,1,12,13],[231,1,1,13,14]]],[11,1,1,14,15,[[322,1,1,14,15]]],[18,3,3,15,18,[[527,1,1,15,16],[584,1,1,16,17],[590,1,1,17,18]]],[22,6,6,18,24,[[719,2,2,18,20],[721,1,1,20,21],[723,1,1,21,22],[724,1,1,22,23],[737,1,1,23,24]]],[26,1,1,24,25,[[860,1,1,24,25]]],[38,1,1,25,26,[[925,1,1,25,26]]]],[4351,5045,5051,5866,6110,6159,6271,6285,6333,6348,6355,6847,7097,7121,9826,14669,15702,15816,18453,18476,18510,18567,18597,18819,22080,23100]]],["Eastward",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11094]]],["east",[22,21,[[5,7,6,0,6,[[190,1,1,0,1],[198,3,2,1,3],[202,2,2,3,5],[204,1,1,5,6]]],[10,1,1,6,7,[[297,1,1,6,7]]],[12,3,3,7,10,[[342,1,1,7,8],[346,1,1,8,9],[349,1,1,9,10]]],[13,3,3,10,13,[[370,1,1,10,11],[395,1,1,11,12],[397,1,1,12,13]]],[15,2,2,13,15,[[415,2,2,13,15]]],[18,1,1,15,16,[[580,1,1,15,16]]],[23,1,1,16,17,[[775,1,1,16,17]]],[26,1,1,17,18,[[857,1,1,17,18]]],[29,1,1,18,19,[[886,1,1,18,19]]],[37,2,2,19,21,[[918,1,1,19,20],[924,1,1,20,21]]]],[5929,6131,6133,6266,6270,6300,8959,10438,10639,10735,11250,11795,11868,12353,12356,15561,19731,21970,22493,22983,23072]]],["eastward",[18,18,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[3,2,2,2,4,[[119,1,1,2,3],[148,1,1,3,4]]],[4,3,3,4,7,[[155,2,2,4,6],[156,1,1,6,7]]],[5,6,6,7,13,[[197,1,1,7,8],[199,3,3,8,11],[202,1,1,11,12],[206,1,1,12,13]]],[12,4,4,13,17,[[342,1,1,13,14],[344,1,1,14,15],[346,1,1,15,16],[363,1,1,16,17]]],[15,1,1,17,18,[[424,1,1,17,18]]]],[2285,2646,3730,4737,4992,5002,5053,6115,6162,6181,6186,6271,6380,10437,10563,10633,11091,12661]]],["end",[1,1,[[13,1,1,0,1,[[371,1,1,0,1]]]],[11280]]],["rising",[1,1,[[5,1,1,0,1,[[198,1,1,0,1]]]],[6131]]],["side",[2,2,[[12,2,2,0,2,[[341,1,1,0,1],[343,1,1,1,2]]]],[10424,10532]]],["sun",[1,1,[[3,1,1,0,1,[[118,1,1,0,1]]]],[3661]]],["sunrising",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4831]]]]},{"k":"H4218","v":[["sown",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18011]]]]},{"k":"H4219","v":[["*",[32,32,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[3,15,15,2,17,[[120,1,1,2,3],[123,14,14,3,17]]],[10,3,3,17,20,[[297,3,3,17,20]]],[11,2,2,20,22,[[324,1,1,20,21],[337,1,1,21,22]]],[12,1,1,22,23,[[365,1,1,22,23]]],[13,3,3,23,26,[[370,3,3,23,26]]],[15,1,1,26,27,[[419,1,1,26,27]]],[23,2,2,27,29,[[796,2,2,27,29]]],[29,1,1,29,30,[[884,1,1,29,30]]],[37,2,2,30,32,[[919,1,1,30,31],[924,1,1,31,32]]]],[2275,2636,3757,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3934,3935,8974,8979,8984,9863,10237,11160,11254,11257,11268,12490,20294,20295,22456,23014,23088]]],["basons",[11,11,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]],[10,3,3,3,6,[[297,3,3,3,6]]],[11,1,1,6,7,[[324,1,1,6,7]]],[13,3,3,7,10,[[370,3,3,7,10]]],[15,1,1,10,11,[[419,1,1,10,11]]]],[2275,2636,3757,8974,8979,8984,9863,11254,11257,11268,12490]]],["bowl",[13,13,[[3,13,13,0,13,[[123,13,13,0,13]]]],[3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935]]],["bowls",[8,8,[[3,1,1,0,1,[[123,1,1,0,1]]],[11,1,1,1,2,[[337,1,1,1,2]]],[12,1,1,2,3,[[365,1,1,2,3]]],[23,2,2,3,5,[[796,2,2,3,5]]],[29,1,1,5,6,[[884,1,1,5,6]]],[37,2,2,6,8,[[919,1,1,6,7],[924,1,1,7,8]]]],[3934,10237,11160,20294,20295,22456,23014,23088]]]]},{"k":"H4220","v":[["*",[2,2,[[18,1,1,0,1,[[543,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]]],[14888,17756]]],["fatlings",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14888]]],["ones",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17756]]]]},{"k":"H4221","v":[["marrow",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13379]]]]},{"k":"H4222","v":[["*",[3,3,[[18,1,1,0,1,[[575,1,1,0,1]]],[22,1,1,1,2,[[733,1,1,1,2]]],[25,1,1,2,3,[[826,1,1,2,3]]]],[15498,18752,21089]]],["clap",[2,2,[[18,1,1,0,1,[[575,1,1,0,1]]],[22,1,1,1,2,[[733,1,1,1,2]]]],[15498,18752]]],["clapped",[1,1,[[25,1,1,0,1,[[826,1,1,0,1]]]],[21089]]]]},{"k":"H4223","v":[["*",[4,4,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,3,3,1,4,[[851,2,2,1,3],[853,1,1,3,4]]]],[12162,21792,21793,21872]]],["hanged",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12162]]],["smote",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21792,21793]]],["stay",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21872]]]]},{"k":"H4224","v":[["*",[2,2,[[8,1,1,0,1,[[258,1,1,0,1]]],[22,1,1,1,2,[[710,1,1,1,2]]]],[7833,18261]]],["place",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18261]]],["places",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7833]]]]},{"k":"H4225","v":[["coupling",[8,7,[[1,8,7,0,7,[[75,2,2,0,2],[77,1,1,2,3],[85,4,3,3,6],[88,1,1,6,7]]]],[2239,2240,2320,2577,2578,2583,2684]]]]},{"k":"H4226","v":[["*",[2,2,[[12,1,1,0,1,[[359,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]]],[10967,11944]]],["couplings",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11944]]],["joinings",[1,1,[[12,1,1,0,1,[[359,1,1,0,1]]]],[10967]]]]},{"k":"H4227","v":[["pan",[5,5,[[2,3,3,0,3,[[91,1,1,0,1],[95,1,1,1,2],[96,1,1,2,3]]],[12,1,1,3,4,[[360,1,1,3,4]]],[25,1,1,4,5,[[805,1,1,4,5]]]],[2767,2870,2888,11012,20532]]]]},{"k":"H4228","v":[["girding",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17731]]]]},{"k":"H4229","v":[["*",[36,32,[[0,4,3,0,3,[[5,1,1,0,1],[6,3,2,1,3]]],[1,4,3,3,6,[[66,2,1,3,4],[81,2,2,4,6]]],[3,2,2,6,8,[[121,1,1,6,7],[150,1,1,7,8]]],[4,4,4,8,12,[[161,1,1,8,9],[177,2,2,9,11],[181,1,1,11,12]]],[6,1,1,12,13,[[231,1,1,12,13]]],[11,4,2,13,15,[[326,1,1,13,14],[333,3,1,14,15]]],[15,2,2,15,17,[[416,1,1,15,16],[425,1,1,16,17]]],[18,6,6,17,23,[[486,1,1,17,18],[528,2,2,18,20],[546,1,1,20,21],[586,2,2,21,23]]],[19,3,3,23,26,[[633,1,1,23,24],[657,1,1,24,25],[658,1,1,25,26]]],[22,4,4,26,30,[[703,2,2,26,28],[721,1,1,28,29],[722,1,1,29,30]]],[23,1,1,30,31,[[762,1,1,30,31]]],[25,1,1,31,32,[[807,1,1,31,32]]]],[144,163,182,1997,2470,2471,3815,4827,5171,5553,5566,5699,7119,9923,10132,12364,12685,14026,14692,14700,14963,15768,15769,16573,17271,17287,18124,18126,18530,18555,19407,20569]]],["+",[10,8,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,2,1,1,2,[[66,2,1,1,2]]],[4,3,3,2,5,[[161,1,1,2,3],[177,1,1,3,4],[181,1,1,4,5]]],[11,3,2,5,7,[[326,1,1,5,6],[333,2,1,6,7]]],[15,1,1,7,8,[[425,1,1,7,8]]]],[144,1997,5171,5566,5699,9923,10132,12685]]],["abolished",[1,1,[[25,1,1,0,1,[[807,1,1,0,1]]]],[20569]]],["away",[2,2,[[19,1,1,0,1,[[633,1,1,0,1]]],[22,1,1,1,2,[[703,1,1,1,2]]]],[16573,18126]]],["blot",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2470]]],["blotted",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14963]]],["destroy",[1,1,[[0,1,1,0,1,[[6,1,1,0,1]]]],[163]]],["destroyed",[3,2,[[0,2,1,0,1,[[6,2,1,0,1]]],[6,1,1,1,2,[[231,1,1,1,2]]]],[182,7119]]],["destroyeth",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17287]]],["marrow",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18124]]],["out",[12,12,[[1,1,1,0,1,[[81,1,1,0,1]]],[3,1,1,1,2,[[121,1,1,1,2]]],[4,1,1,2,3,[[177,1,1,2,3]]],[15,1,1,3,4,[[416,1,1,3,4]]],[18,5,5,4,9,[[486,1,1,4,5],[528,2,2,5,7],[586,2,2,7,9]]],[22,2,2,9,11,[[721,1,1,9,10],[722,1,1,10,11]]],[23,1,1,11,12,[[762,1,1,11,12]]]],[2471,3815,5553,12364,14026,14692,14700,15768,15769,18530,18555,19407]]],["reach",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4827]]],["wipeth",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17271]]],["wiping",[1,1,[[11,1,1,0,1,[[333,1,1,0,1]]]],[10132]]]]},{"k":"H4230","v":[["compass",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18546]]]]},{"k":"H4231","v":[["haven",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15729]]]]},{"k":"H4232","v":[["Mehujael",[2,1,[[0,2,1,0,1,[[3,2,1,0,1]]]],[97]]]]},{"k":"H4233","v":[["Mahavite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10719]]]]},{"k":"H4234","v":[["*",[6,6,[[18,3,3,0,3,[[507,1,1,0,1],[626,1,1,1,2],[627,1,1,2,3]]],[23,2,2,3,5,[[775,2,2,3,5]]],[24,1,1,5,6,[[801,1,1,5,6]]]],[14330,16388,16398,19695,19704,20457]]],["dance",[4,4,[[18,2,2,0,2,[[626,1,1,0,1],[627,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]],[24,1,1,3,4,[[801,1,1,3,4]]]],[16388,16398,19704,20457]]],["dances",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19695]]],["dancing",[1,1,[[18,1,1,0,1,[[507,1,1,0,1]]]],[14330]]]]},{"k":"H4235","v":[["Mahol",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8875]]]]},{"k":"H4236","v":[["vision",[4,4,[[0,1,1,0,1,[[14,1,1,0,1]]],[3,2,2,1,3,[[140,2,2,1,3]]],[25,1,1,3,4,[[814,1,1,3,4]]]],[361,4450,4462,20715]]]]},{"k":"H4237","v":[["light",[4,2,[[10,4,2,0,2,[[297,4,2,0,2]]]],[8938,8939]]]]},{"k":"H4238","v":[["Mahazioth",[2,2,[[12,2,2,0,2,[[362,2,2,0,2]]]],[11050,11076]]]]},{"k":"H4239","v":[["engines",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21109]]]]},{"k":"H4240","v":[["Mehida",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12079,12474]]]]},{"k":"H4241","v":[["*",[8,8,[[0,1,1,0,1,[[44,1,1,0,1]]],[2,2,2,1,3,[[102,2,2,1,3]]],[6,2,2,3,5,[[216,1,1,3,4],[227,1,1,4,5]]],[13,1,1,5,6,[[380,1,1,5,6]]],[14,2,2,6,8,[[411,2,2,6,8]]]],[1363,3062,3076,6658,6990,11488,12245,12246]]],["life",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1363]]],["quick",[2,2,[[2,2,2,0,2,[[102,2,2,0,2]]]],[3062,3076]]],["recover",[1,1,[[13,1,1,0,1,[[380,1,1,0,1]]]],[11488]]],["reviving",[2,2,[[14,2,2,0,2,[[411,2,2,0,2]]]],[12245,12246]]],["sustenance",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6658]]],["victuals",[1,1,[[6,1,1,0,1,[[227,1,1,0,1]]]],[6990]]]]},{"k":"H4242","v":[["*",[15,15,[[4,1,1,0,1,[[175,1,1,0,1]]],[9,1,1,1,2,[[290,1,1,1,2]]],[10,2,2,2,4,[[300,1,1,2,3],[311,1,1,3,4]]],[13,1,1,4,5,[[367,1,1,4,5]]],[17,1,1,5,6,[[463,1,1,5,6]]],[18,1,1,6,7,[[521,1,1,6,7]]],[19,2,2,7,9,[[644,1,1,7,8],[654,1,1,8,9]]],[22,2,2,9,11,[[723,1,1,9,10],[733,1,1,10,11]]],[23,1,1,11,12,[[759,1,1,11,12]]],[24,1,1,12,13,[[801,1,1,12,13]]],[26,1,1,13,14,[[860,1,1,13,14]]],[32,1,1,14,15,[[895,1,1,14,15]]]],[5518,8716,9107,9453,11210,13519,14583,16889,17195,18574,18741,19328,20446,22075,22619]]],["+",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20446]]],["gain",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22075]]],["hire",[1,1,[[32,1,1,0,1,[[895,1,1,0,1]]]],[22619]]],["price",[11,11,[[4,1,1,0,1,[[175,1,1,0,1]]],[9,1,1,1,2,[[290,1,1,1,2]]],[10,1,1,2,3,[[300,1,1,2,3]]],[13,1,1,3,4,[[367,1,1,3,4]]],[17,1,1,4,5,[[463,1,1,4,5]]],[18,1,1,5,6,[[521,1,1,5,6]]],[19,2,2,6,8,[[644,1,1,6,7],[654,1,1,7,8]]],[22,2,2,8,10,[[723,1,1,8,9],[733,1,1,9,10]]],[23,1,1,10,11,[[759,1,1,10,11]]]],[5518,8716,9107,11210,13519,14583,16889,17195,18574,18741,19328]]],["worth",[1,1,[[10,1,1,0,1,[[311,1,1,0,1]]]],[9453]]]]},{"k":"H4243","v":[["Mehir",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10396]]]]},{"k":"H4244","v":[["*",[5,5,[[3,3,3,0,3,[[142,1,1,0,1],[143,1,1,1,2],[152,1,1,2,3]]],[5,1,1,3,4,[[203,1,1,3,4]]],[12,1,1,4,5,[[344,1,1,4,5]]]],[4522,4555,4890,6278,10553]]],["Mahalah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10553]]],["Mahlah",[4,4,[[3,3,3,0,3,[[142,1,1,0,1],[143,1,1,1,2],[152,1,1,2,3]]],[5,1,1,3,4,[[203,1,1,3,4]]]],[4522,4555,4890,6278]]]]},{"k":"H4245","v":[["*",[6,6,[[1,2,2,0,2,[[64,1,1,0,1],[72,1,1,1,2]]],[10,1,1,2,3,[[298,1,1,2,3]]],[13,2,2,3,5,[[372,1,1,3,4],[387,1,1,4,5]]],[19,1,1,5,6,[[645,1,1,5,6]]]],[1946,2169,9022,11310,11639,16915]]],["+",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2169]]],["disease",[1,1,[[13,1,1,0,1,[[387,1,1,0,1]]]],[11639]]],["diseases",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1946]]],["infirmity",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16915]]],["sickness",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]]],[9022,11310]]]]},{"k":"H4246","v":[["*",[8,8,[[1,2,2,0,2,[[64,1,1,0,1],[81,1,1,1,2]]],[6,2,2,2,4,[[221,1,1,2,3],[231,1,1,3,4]]],[8,3,3,4,7,[[253,1,1,4,5],[256,1,1,5,6],[264,1,1,6,7]]],[21,1,1,7,8,[[676,1,1,7,8]]]],[1940,2457,6863,7123,7682,7783,7972,17627]]],["company",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17627]]],["dances",[5,5,[[1,1,1,0,1,[[64,1,1,0,1]]],[6,2,2,1,3,[[221,1,1,1,2],[231,1,1,2,3]]],[8,2,2,3,5,[[256,1,1,3,4],[264,1,1,4,5]]]],[1940,6863,7123,7783,7972]]],["dancing",[2,2,[[1,1,1,0,1,[[81,1,1,0,1]]],[8,1,1,1,2,[[253,1,1,1,2]]]],[2457,7682]]]]},{"k":"H4247","v":[["caves",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17704]]]]},{"k":"H4248","v":[["*",[4,4,[[7,4,4,0,4,[[232,2,2,0,2],[235,2,2,2,4]]]],[7129,7132,7199,7200]]],["Mahlon",[3,3,[[7,3,3,0,3,[[232,2,2,0,2],[235,1,1,2,3]]]],[7129,7132,7200]]],["Mahlon's",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7199]]]]},{"k":"H4249","v":[["*",[12,11,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,1,1,1,2,[[119,1,1,1,2]]],[12,9,8,2,10,[[343,3,3,2,5],[360,3,2,5,7],[361,3,3,7,10]]],[14,1,1,10,11,[[410,1,1,10,11]]]],[1674,3712,10473,10483,10501,11004,11006,11041,11043,11045,12219]]],["Mahali",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1674]]],["Mahli",[11,10,[[3,1,1,0,1,[[119,1,1,0,1]]],[12,9,8,1,9,[[343,3,3,1,4],[360,3,2,4,6],[361,3,3,6,9]]],[14,1,1,9,10,[[410,1,1,9,10]]]],[3712,10473,10483,10501,11004,11006,11041,11043,11045,12219]]]]},{"k":"H4250","v":[["Mahlites",[2,2,[[3,2,2,0,2,[[119,1,1,0,1],[142,1,1,1,2]]]],[3725,4547]]]]},{"k":"H4251","v":[["diseases",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11702]]]]},{"k":"H4252","v":[["knives",[1,1,[[14,1,1,0,1,[[403,1,1,0,1]]]],[12025]]]]},{"k":"H4253","v":[["locks",[2,2,[[6,2,2,0,2,[[226,2,2,0,2]]]],[6962,6968]]]]},{"k":"H4254","v":[["*",[2,2,[[22,1,1,0,1,[[681,1,1,0,1]]],[37,1,1,1,2,[[913,1,1,1,2]]]],[17729,22916]]],["apparel",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17729]]],["raiment",[1,1,[[37,1,1,0,1,[[913,1,1,0,1]]]],[22916]]]]},{"k":"H4255","v":[["courses",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12169]]]]},{"k":"H4256","v":[["*",[43,37,[[5,3,3,0,3,[[197,1,1,0,1],[198,1,1,1,2],[204,1,1,2,3]]],[8,1,1,3,4,[[258,1,1,3,4]]],[12,26,22,4,26,[[360,1,1,4,5],[361,1,1,5,6],[363,3,3,6,9],[364,18,14,9,23],[365,3,3,23,26]]],[13,11,9,26,35,[[371,1,1,26,27],[374,2,1,27,28],[389,1,1,28,29],[397,5,4,29,33],[401,2,2,33,35]]],[15,1,1,35,36,[[423,1,1,35,36]]],[25,1,1,36,37,[[849,1,1,36,37]]]],[6130,6137,6303,7838,10989,11016,11078,11089,11096,11110,11111,11113,11114,11115,11116,11117,11118,11119,11120,11121,11122,11123,11124,11144,11156,11164,11279,11360,11664,11856,11869,11870,11871,11970,11976,12624,21731]]],["+",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7838]]],["companies",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11144]]],["course",[18,15,[[12,17,14,0,14,[[364,17,14,0,14]]],[13,1,1,14,15,[[371,1,1,14,15]]]],[11110,11111,11113,11114,11115,11116,11117,11118,11119,11120,11121,11122,11123,11124,11279]]],["courses",[14,12,[[12,4,4,0,4,[[360,1,1,0,1],[364,1,1,1,2],[365,2,2,2,4]]],[13,10,8,4,12,[[374,2,1,4,5],[389,1,1,5,6],[397,5,4,6,10],[401,2,2,10,12]]]],[10989,11110,11156,11164,11360,11664,11856,11869,11870,11871,11970,11976]]],["divisions",[8,8,[[5,3,3,0,3,[[197,1,1,0,1],[198,1,1,1,2],[204,1,1,2,3]]],[12,4,4,3,7,[[361,1,1,3,4],[363,3,3,4,7]]],[15,1,1,7,8,[[423,1,1,7,8]]]],[6130,6137,6303,11016,11078,11089,11096,12624]]],["portions",[1,1,[[25,1,1,0,1,[[849,1,1,0,1]]]],[21731]]]]},{"k":"H4257","v":[]},{"k":"H4258","v":[["Mahalath",[2,2,[[0,1,1,0,1,[[27,1,1,0,1]]],[13,1,1,1,2,[[377,1,1,1,2]]]],[782,11432]]]]},{"k":"H4259","v":[["Meholathite",[2,2,[[8,1,1,0,1,[[253,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]]],[7695,8588]]]]},{"k":"H4260","v":[["butter",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14753]]]]},{"k":"H4261","v":[["*",[12,12,[[10,1,1,0,1,[[310,1,1,0,1]]],[13,1,1,1,2,[[402,1,1,1,2]]],[21,1,1,2,3,[[675,1,1,2,3]]],[22,1,1,3,4,[[742,1,1,3,4]]],[24,2,2,4,6,[[797,1,1,4,5],[798,1,1,5,6]]],[25,3,3,6,9,[[825,3,3,6,9]]],[27,2,2,9,11,[[870,2,2,9,11]]],[28,1,1,11,12,[[878,1,1,11,12]]]],[9414,12012,17614,18896,20320,20336,21072,21077,21081,22214,22224,22348]]],["beloved",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22224]]],["desire",[3,3,[[25,3,3,0,3,[[825,3,3,0,3]]]],[21072,21077,21081]]],["goodly",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[12012]]],["lovely",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17614]]],["pleasant",[3,3,[[10,1,1,0,1,[[310,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]],[27,1,1,2,3,[[870,1,1,2,3]]]],[9414,20336,22214]]],["things",[3,3,[[22,1,1,0,1,[[742,1,1,0,1]]],[24,1,1,1,2,[[797,1,1,1,2]]],[28,1,1,2,3,[[878,1,1,2,3]]]],[18896,20320,22348]]]]},{"k":"H4262","v":[["things",[2,2,[[24,2,2,0,2,[[797,2,2,0,2]]]],[20317,20321]]]]},{"k":"H4263","v":[["pitieth",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21077]]]]},{"k":"H4264","v":[["*",[216,190,[[0,8,7,0,7,[[31,6,5,0,5],[32,1,1,5,6],[49,1,1,6,7]]],[1,19,14,7,21,[[63,5,3,7,10],[65,2,1,10,11],[68,2,2,11,13],[78,1,1,13,14],[81,4,4,14,18],[82,4,2,18,20],[85,1,1,20,21]]],[2,18,17,21,38,[[93,2,2,21,23],[95,1,1,23,24],[97,1,1,24,25],[98,1,1,25,26],[99,2,2,26,28],[102,1,1,28,29],[103,2,2,29,31],[105,3,3,31,34],[106,2,1,34,35],[113,3,3,35,38]]],[3,49,44,38,82,[[117,1,1,38,39],[118,11,10,39,49],[120,2,2,49,51],[121,4,3,51,54],[126,9,8,54,62],[127,9,7,62,69],[128,2,2,69,71],[129,1,1,71,72],[130,1,1,72,73],[131,2,2,73,75],[135,3,3,75,78],[147,4,4,78,82]]],[4,10,8,82,90,[[154,2,2,82,84],[175,7,5,84,89],[181,1,1,89,90]]],[5,17,16,90,106,[[187,1,1,90,91],[189,1,1,91,92],[191,1,1,92,93],[192,5,4,93,97],[194,1,1,97,98],[195,1,1,98,99],[196,5,5,99,104],[197,1,1,104,105],[204,1,1,105,106]]],[6,28,21,106,127,[[214,3,2,106,108],[217,17,13,108,121],[218,5,3,121,124],[223,1,1,124,125],[231,2,2,125,127]]],[8,22,20,127,147,[[239,5,4,127,131],[246,1,1,131,132],[248,1,1,132,133],[249,3,3,133,136],[252,5,5,136,141],[261,1,1,141,142],[263,4,3,142,145],[264,2,2,145,147]]],[9,4,4,147,151,[[267,2,2,147,149],[271,1,1,149,150],[289,1,1,150,151]]],[10,3,3,151,154,[[306,1,1,151,152],[312,2,2,152,154]]],[11,15,14,154,168,[[315,2,2,154,156],[317,1,1,156,157],[318,1,1,157,158],[319,10,9,158,167],[331,1,1,167,168]]],[12,8,7,168,175,[[346,2,2,168,170],[348,2,2,170,172],[349,2,1,172,173],[351,2,2,173,175]]],[13,5,5,175,180,[[380,1,1,175,176],[384,1,1,176,177],[388,1,1,177,178],[397,1,1,178,179],[398,1,1,179,180]]],[18,3,3,180,183,[[504,1,1,180,181],[555,1,1,181,182],[583,1,1,182,183]]],[21,1,1,183,184,[[676,1,1,183,184]]],[22,1,1,184,185,[[715,1,1,184,185]]],[25,2,2,185,187,[[802,1,1,185,186],[805,1,1,186,187]]],[28,1,1,187,188,[[877,1,1,187,188]]],[29,1,1,188,189,[[882,1,1,188,189]]],[37,1,1,189,190,[[924,1,1,189,190]]]],[930,935,936,938,949,968,1515,1908,1909,1913,1960,2042,2043,2350,2455,2457,2464,2465,2480,2484,2572,2807,2816,2860,2934,2964,2981,2982,3098,3114,3119,3227,3228,3229,3238,3456,3460,3469,3656,3661,3667,3668,3674,3675,3676,3682,3683,3689,3690,3748,3758,3794,3795,3796,3990,3993,3994,4002,4006,4010,4013,4022,4025,4033,4050,4051,4054,4055,4056,4073,4074,4094,4152,4188,4189,4292,4296,4298,4676,4677,4683,4688,4952,4953,5509,5510,5511,5512,5514,5690,5862,5895,5942,5960,5963,5967,5972,6015,6043,6069,6070,6079,6085,6107,6111,6302,6614,6615,6695,6702,6703,6704,6705,6707,6708,6709,6711,6712,6713,6715,6716,6729,6730,6731,6909,7110,7114,7300,7302,7303,7304,7456,7502,7523,7527,7529,7619,7622,7635,7664,7671,7911,7943,7947,7961,7968,7973,8024,8025,8156,8669,9299,9514,9516,9585,9600,9662,9698,9711,9712,9713,9714,9715,9717,9719,9721,9723,10096,10633,10634,10688,10691,10742,10789,10790,11488,11575,11645,11856,11896,14288,15141,15667,17627,18388,20488,20531,22322,22420,23083]]],["+",[3,3,[[8,2,2,0,2,[[248,1,1,0,1],[252,1,1,1,2]]],[9,1,1,2,3,[[267,1,1,2,3]]]],[7502,7622,8025]]],["armies",[3,3,[[8,2,2,0,2,[[252,1,1,0,1],[264,1,1,1,2]]],[21,1,1,2,3,[[676,1,1,2,3]]]],[7619,7968,17627]]],["bands",[2,2,[[0,2,2,0,2,[[31,2,2,0,2]]]],[935,938]]],["battle",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7943]]],["camp",[126,114,[[1,16,13,0,13,[[63,3,2,0,2],[65,1,1,2,3],[68,2,2,3,5],[78,1,1,5,6],[81,4,4,6,10],[82,4,2,10,12],[85,1,1,12,13]]],[2,18,17,13,30,[[93,2,2,13,15],[95,1,1,15,16],[97,1,1,16,17],[98,1,1,17,18],[99,2,2,18,20],[102,1,1,20,21],[103,2,2,21,23],[105,3,3,23,26],[106,2,1,26,27],[113,3,3,27,30]]],[3,42,39,30,69,[[117,1,1,30,31],[118,10,9,31,40],[120,2,2,40,42],[121,3,3,42,45],[126,5,5,45,50],[127,9,7,50,57],[128,2,2,57,59],[130,1,1,59,60],[131,2,2,60,62],[135,3,3,62,65],[147,4,4,65,69]]],[4,7,5,69,74,[[175,6,4,69,73],[181,1,1,73,74]]],[5,11,10,74,84,[[191,1,1,74,75],[192,5,4,75,79],[195,1,1,79,80],[196,4,4,80,84]]],[6,7,7,84,91,[[217,4,4,84,88],[223,1,1,88,89],[231,2,2,89,91]]],[8,8,7,91,98,[[239,5,4,91,95],[249,1,1,95,96],[252,1,1,96,97],[261,1,1,97,98]]],[9,1,1,98,99,[[267,1,1,98,99]]],[10,1,1,99,100,[[306,1,1,99,100]]],[11,8,7,100,107,[[315,1,1,100,101],[319,6,5,101,106],[331,1,1,106,107]]],[13,2,2,107,109,[[388,1,1,107,108],[398,1,1,108,109]]],[18,2,2,109,111,[[555,1,1,109,110],[583,1,1,110,111]]],[22,1,1,111,112,[[715,1,1,111,112]]],[25,1,1,112,113,[[805,1,1,112,113]]],[28,1,1,113,114,[[877,1,1,113,114]]]],[1908,1909,1960,2042,2043,2350,2455,2457,2464,2465,2480,2484,2572,2807,2816,2860,2934,2964,2981,2982,3098,3114,3119,3227,3228,3229,3238,3456,3460,3469,3656,3661,3667,3668,3674,3675,3676,3682,3683,3689,3748,3758,3794,3795,3796,4002,4006,4010,4013,4022,4025,4033,4050,4051,4054,4055,4056,4073,4074,4152,4188,4189,4292,4296,4298,4676,4677,4683,4688,5510,5511,5512,5514,5690,5942,5960,5963,5967,5972,6043,6070,6079,6085,6107,6711,6712,6713,6715,6909,7110,7114,7300,7302,7303,7304,7529,7635,7911,8024,9299,9600,9712,9714,9715,9717,9719,10096,11645,11896,15141,15667,18388,20531,22322]]],["camps",[7,7,[[3,6,6,0,6,[[118,1,1,0,1],[121,1,1,1,2],[126,4,4,2,6]]],[29,1,1,6,7,[[882,1,1,6,7]]]],[3690,3795,3990,3993,3994,4013,22420]]],["companies",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10633]]],["company",[5,4,[[0,4,3,0,3,[[31,3,2,0,2],[49,1,1,2,3]]],[11,1,1,3,4,[[317,1,1,3,4]]]],[936,949,1515,9662]]],["drove",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[968]]],["host",[57,50,[[0,1,1,0,1,[[31,1,1,0,1]]],[1,3,2,1,3,[[63,2,1,1,2],[65,1,1,2,3]]],[4,3,3,3,6,[[154,2,2,3,5],[175,1,1,5,6]]],[5,4,4,6,10,[[187,1,1,6,7],[189,1,1,7,8],[194,1,1,8,9],[204,1,1,9,10]]],[6,19,14,10,24,[[214,3,2,10,12],[217,13,10,12,22],[218,3,2,22,24]]],[8,7,7,24,31,[[246,1,1,24,25],[249,2,2,25,27],[252,1,1,27,28],[263,2,2,28,30],[264,1,1,30,31]]],[9,2,2,31,33,[[271,1,1,31,32],[289,1,1,32,33]]],[10,2,2,33,35,[[312,2,2,33,35]]],[11,5,5,35,40,[[315,1,1,35,36],[318,1,1,36,37],[319,3,3,37,40]]],[12,7,6,40,46,[[346,1,1,40,41],[348,2,2,41,43],[349,2,1,43,44],[351,2,2,44,46]]],[13,2,2,46,48,[[380,1,1,46,47],[384,1,1,47,48]]],[18,1,1,48,49,[[504,1,1,48,49]]],[25,1,1,49,50,[[802,1,1,49,50]]]],[930,1913,1960,4952,4953,5509,5862,5895,6015,6302,6614,6615,6695,6702,6703,6704,6705,6707,6708,6709,6715,6716,6730,6731,7456,7523,7527,7664,7947,7961,7973,8156,8669,9514,9516,9585,9698,9711,9713,9721,10634,10688,10691,10742,10789,10790,11488,11575,14288,20488]]],["hosts",[4,3,[[5,2,2,0,2,[[196,1,1,0,1],[197,1,1,1,2]]],[6,2,1,2,3,[[218,2,1,2,3]]]],[6069,6111,6729]]],["tents",[5,5,[[3,1,1,0,1,[[129,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[11,1,1,2,3,[[319,1,1,2,3]]],[13,1,1,3,4,[[397,1,1,3,4]]],[37,1,1,4,5,[[924,1,1,4,5]]]],[4094,7671,9723,11856,23083]]],["together",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7943]]]]},{"k":"H4265","v":[["Mahanehdan",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7005]]]]},{"k":"H4266","v":[["*",[13,13,[[0,1,1,0,1,[[31,1,1,0,1]]],[5,3,3,1,4,[[199,2,2,1,3],[207,1,1,3,4]]],[9,6,6,4,10,[[268,3,3,4,7],[283,2,2,7,9],[285,1,1,9,10]]],[10,2,2,10,12,[[292,1,1,10,11],[294,1,1,11,12]]],[12,1,1,12,13,[[343,1,1,12,13]]]],[930,6180,6184,6419,8057,8061,8078,8473,8476,8543,8778,8858,10534]]],["+",[3,3,[[5,2,2,0,2,[[199,2,2,0,2]]],[9,1,1,2,3,[[268,1,1,2,3]]]],[6180,6184,8061]]],["Mahanaim",[10,10,[[0,1,1,0,1,[[31,1,1,0,1]]],[5,1,1,1,2,[[207,1,1,1,2]]],[9,5,5,2,7,[[268,2,2,2,4],[283,2,2,4,6],[285,1,1,6,7]]],[10,2,2,7,9,[[292,1,1,7,8],[294,1,1,8,9]]],[12,1,1,9,10,[[343,1,1,9,10]]]],[930,6419,8057,8078,8473,8476,8543,8778,8858,10534]]]]},{"k":"H4267","v":[["strangling",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13023]]]]},{"k":"H4268","v":[["*",[20,20,[[17,1,1,0,1,[[459,1,1,0,1]]],[18,12,12,1,13,[[491,1,1,1,2],[523,1,1,2,3],[538,1,1,3,4],[539,2,2,4,6],[548,1,1,6,7],[550,1,1,7,8],[568,2,2,8,10],[571,1,1,10,11],[581,1,1,11,12],[619,1,1,12,13]]],[19,1,1,13,14,[[641,1,1,13,14]]],[22,4,4,14,18,[[682,1,1,14,15],[703,1,1,15,16],[706,2,2,16,18]]],[23,1,1,18,19,[[761,1,1,18,19]]],[28,1,1,19,20,[[878,1,1,19,20]]]],[13444,14086,14615,14822,14834,14835,14983,15048,15397,15404,15453,15589,16291,16798,17739,18122,18179,18181,19374,22359]]],["hope",[2,2,[[23,1,1,0,1,[[761,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]]],[19374,22359]]],["refuge",[15,15,[[18,10,10,0,10,[[491,1,1,0,1],[523,1,1,1,2],[539,2,2,2,4],[548,1,1,4,5],[568,2,2,5,7],[571,1,1,7,8],[581,1,1,8,9],[619,1,1,9,10]]],[19,1,1,10,11,[[641,1,1,10,11]]],[22,4,4,11,15,[[682,1,1,11,12],[703,1,1,12,13],[706,2,2,13,15]]]],[14086,14615,14834,14835,14983,15397,15404,15453,15589,16291,16798,17739,18122,18179,18181]]],["shelter",[2,2,[[17,1,1,0,1,[[459,1,1,0,1]]],[18,1,1,1,2,[[538,1,1,1,2]]]],[13444,14822]]],["trust",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15048]]]]},{"k":"H4269","v":[["bridle",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14513]]]]},{"k":"H4270","v":[["*",[13,13,[[4,1,1,0,1,[[167,1,1,0,1]]],[6,3,3,1,4,[[228,1,1,1,2],[229,2,2,2,4]]],[18,1,1,4,5,[[511,1,1,4,5]]],[19,8,8,5,13,[[633,1,1,5,6],[638,1,1,6,7],[641,1,1,7,8],[648,2,2,8,10],[649,1,1,10,11],[651,1,1,11,12],[655,1,1,12,13]]]],[5327,7003,7043,7044,14397,16551,16712,16795,16989,17001,17031,17113,17223]]],["lack",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17223]]],["need",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5327]]],["penury",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16795]]],["poor",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17001]]],["poverty",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16712]]],["want",[7,7,[[6,2,2,0,2,[[228,1,1,0,1],[229,1,1,1,2]]],[18,1,1,2,3,[[511,1,1,2,3]]],[19,4,4,3,7,[[633,1,1,3,4],[648,1,1,4,5],[649,1,1,5,6],[651,1,1,6,7]]]],[7003,7043,14397,16551,16989,17031,17113]]],["wants",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7044]]]]},{"k":"H4271","v":[["Maaseiah",[2,2,[[23,2,2,0,2,[[776,1,1,0,1],[795,1,1,1,2]]]],[19743,20271]]]]},{"k":"H4272","v":[["*",[15,14,[[3,3,2,0,2,[[140,3,2,0,2]]],[4,2,2,2,4,[[184,1,1,2,3],[185,1,1,3,4]]],[6,1,1,4,5,[[215,1,1,4,5]]],[9,1,1,5,6,[[288,1,1,5,6]]],[17,2,2,6,8,[[440,1,1,6,7],[461,1,1,7,8]]],[18,5,5,8,13,[[495,1,1,8,9],[545,2,2,9,11],[587,2,2,11,13]]],[34,1,1,13,14,[[905,1,1,13,14]]]],[4454,4463,5797,5821,6649,8641,12969,13479,14156,14921,14923,15791,15792,22781]]],["destroy",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4463]]],["dipped",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14923]]],["pierced",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6649]]],["smite",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4463]]],["through",[4,4,[[3,1,1,0,1,[[140,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[17,1,1,2,3,[[461,1,1,2,3]]],[18,1,1,3,4,[[587,1,1,3,4]]]],[4454,5821,13479,15791]]],["wound",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,2,2,1,3,[[545,1,1,1,2],[587,1,1,2,3]]]],[5797,14921,15792]]],["wounded",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8641,14156]]],["woundedst",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22781]]],["woundeth",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12969]]]]},{"k":"H4273","v":[["stroke",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18243]]]]},{"k":"H4274","v":[["*",[3,3,[[11,2,2,0,2,[[324,1,1,0,1],[334,1,1,1,2]]],[13,1,1,2,3,[[400,1,1,2,3]]]],[9862,10151,11944]]],["hewed",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9862]]],["hewn",[2,2,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]]],[10151,11944]]]]},{"k":"H4275","v":[["half",[2,2,[[3,2,2,0,2,[[147,2,2,0,2]]]],[4700,4707]]]]},{"k":"H4276","v":[["*",[16,14,[[1,5,4,0,4,[[79,4,3,0,3],[87,1,1,3,4]]],[2,2,1,4,5,[[95,2,1,4,5]]],[3,4,4,5,9,[[147,4,4,5,9]]],[5,1,1,9,10,[[207,1,1,9,10]]],[10,1,1,10,11,[[306,1,1,10,11]]],[12,2,2,11,13,[[343,2,2,11,13]]],[15,1,1,13,14,[[420,1,1,13,14]]]],[2395,2397,2405,2659,2869,4693,4694,4706,4711,6406,9292,10515,10524,12496]]],["+",[7,7,[[1,1,1,0,1,[[79,1,1,0,1]]],[3,4,4,1,5,[[147,4,4,1,5]]],[5,1,1,5,6,[[207,1,1,5,6]]],[15,1,1,6,7,[[420,1,1,6,7]]]],[2397,4693,4694,4706,4711,6406,12496]]],["half",[8,6,[[1,3,2,0,2,[[79,2,1,0,1],[87,1,1,1,2]]],[2,2,1,2,3,[[95,2,1,2,3]]],[10,1,1,3,4,[[306,1,1,3,4]]],[12,2,2,4,6,[[343,2,2,4,6]]]],[2395,2659,2869,9292,10515,10524]]],["much",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2405]]]]},{"k":"H4277","v":[["off",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6649]]]]},{"k":"H4278","v":[["places",[1,1,[[18,1,1,0,1,[[572,1,1,0,1]]]],[15458]]]]},{"k":"H4279","v":[["*",[52,52,[[0,1,1,0,1,[[29,1,1,0,1]]],[1,11,11,1,12,[[57,3,3,1,4],[58,2,2,4,6],[59,1,1,6,7],[62,1,1,7,8],[65,1,1,8,9],[66,1,1,9,10],[68,1,1,10,11],[81,1,1,11,12]]],[3,4,4,12,16,[[127,1,1,12,13],[130,1,1,13,14],[132,2,2,14,16]]],[4,1,1,16,17,[[158,1,1,16,17]]],[5,9,9,17,26,[[189,1,1,17,18],[190,2,2,18,20],[193,1,1,20,21],[197,1,1,21,22],[208,4,4,22,26]]],[6,2,2,26,28,[[229,1,1,26,27],[230,1,1,27,28]]],[8,8,8,28,36,[[244,1,1,28,29],[246,2,2,29,31],[254,1,1,31,32],[255,3,3,32,35],[263,1,1,35,36]]],[9,1,1,36,37,[[277,1,1,36,37]]],[10,2,2,37,39,[[309,1,1,37,38],[310,1,1,38,39]]],[11,4,4,39,43,[[318,1,1,39,40],[319,2,2,40,42],[322,1,1,42,43]]],[13,2,2,43,45,[[386,2,2,43,45]]],[16,3,3,45,48,[[430,2,2,45,47],[434,1,1,47,48]]],[19,2,2,48,50,[[630,1,1,48,49],[654,1,1,49,50]]],[22,2,2,50,52,[[700,1,1,50,51],[734,1,1,51,52]]]],[863,1720,1733,1739,1747,1760,1781,1881,1970,1992,2036,2443,4042,4133,4201,4210,5106,5898,5916,5931,5989,6113,6444,6450,6453,6454,7033,7082,7407,7454,7455,7717,7735,7742,7748,7961,8271,9389,9414,9702,9708,9725,9799,11603,11604,12787,12791,12847,16483,17170,18065,18765]]],["+",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17170]]],["come",[8,8,[[0,1,1,0,1,[[29,1,1,0,1]]],[1,1,1,1,2,[[62,1,1,1,2]]],[4,1,1,2,3,[[158,1,1,2,3]]],[5,5,5,3,8,[[190,2,2,3,5],[208,3,3,5,8]]]],[863,1881,5106,5916,5931,6450,6453,6454]]],["morrow",[43,43,[[1,10,10,0,10,[[57,3,3,0,3],[58,2,2,3,5],[59,1,1,5,6],[65,1,1,6,7],[66,1,1,7,8],[68,1,1,8,9],[81,1,1,9,10]]],[3,4,4,10,14,[[127,1,1,10,11],[130,1,1,11,12],[132,2,2,12,14]]],[5,4,4,14,18,[[189,1,1,14,15],[193,1,1,15,16],[197,1,1,16,17],[208,1,1,17,18]]],[6,2,2,18,20,[[229,1,1,18,19],[230,1,1,19,20]]],[8,8,8,20,28,[[244,1,1,20,21],[246,2,2,21,23],[254,1,1,23,24],[255,3,3,24,27],[263,1,1,27,28]]],[9,1,1,28,29,[[277,1,1,28,29]]],[10,2,2,29,31,[[309,1,1,29,30],[310,1,1,30,31]]],[11,4,4,31,35,[[318,1,1,31,32],[319,2,2,32,34],[322,1,1,34,35]]],[13,2,2,35,37,[[386,2,2,35,37]]],[16,3,3,37,40,[[430,2,2,37,39],[434,1,1,39,40]]],[19,1,1,40,41,[[630,1,1,40,41]]],[22,2,2,41,43,[[700,1,1,41,42],[734,1,1,42,43]]]],[1720,1733,1739,1747,1760,1781,1970,1992,2036,2443,4042,4133,4201,4210,5898,5989,6113,6444,7033,7082,7407,7454,7455,7717,7735,7742,7748,7961,8271,9389,9414,9702,9708,9725,9799,11603,11604,12787,12791,12847,16483,18065,18765]]]]},{"k":"H4280","v":[]},{"k":"H4281","v":[["*",[2,2,[[8,2,2,0,2,[[248,2,2,0,2]]]],[7505,7506]]],["mattock",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7505]]],["mattocks",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7506]]]]},{"k":"H4282","v":[["share",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7505]]]]},{"k":"H4283","v":[["*",[32,32,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,4,4,1,5,[[58,1,1,1,2],[67,1,1,2,3],[81,2,2,3,5]]],[2,5,5,5,10,[[96,1,1,5,6],[108,1,1,6,7],[112,3,3,7,10]]],[3,4,4,10,14,[[127,1,1,10,11],[132,1,1,11,12],[133,1,1,12,13],[149,1,1,13,14]]],[5,2,2,14,16,[[191,2,2,14,16]]],[6,3,3,16,19,[[216,1,1,16,17],[219,1,1,17,18],[231,1,1,18,19]]],[8,7,7,19,26,[[240,2,2,19,21],[246,1,1,21,22],[253,1,1,22,23],[255,1,1,23,24],[265,1,1,24,25],[266,1,1,25,26]]],[9,1,1,26,27,[[277,1,1,26,27]]],[11,1,1,27,28,[[320,1,1,27,28]]],[12,2,2,28,30,[[347,1,1,28,29],[366,1,1,29,30]]],[23,1,1,30,31,[[764,1,1,30,31]]],[31,1,1,31,32,[[892,1,1,31,32]]]],[491,1748,2012,2444,2468,2895,3287,3413,3417,3418,4056,4235,4252,4763,5945,5946,6692,6796,7106,7322,7323,7456,7686,7757,7995,8017,8271,9742,10667,11185,19425,22575]]],["+",[27,27,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,4,4,1,5,[[58,1,1,1,2],[67,1,1,2,3],[81,2,2,3,5]]],[2,5,5,5,10,[[96,1,1,5,6],[108,1,1,6,7],[112,3,3,7,10]]],[3,3,3,10,13,[[132,1,1,10,11],[133,1,1,11,12],[149,1,1,12,13]]],[5,2,2,13,15,[[191,2,2,13,15]]],[6,3,3,15,18,[[216,1,1,15,16],[219,1,1,16,17],[231,1,1,17,18]]],[8,6,6,18,24,[[240,2,2,18,20],[246,1,1,20,21],[253,1,1,21,22],[255,1,1,22,23],[266,1,1,23,24]]],[9,1,1,24,25,[[277,1,1,24,25]]],[11,1,1,25,26,[[320,1,1,25,26]]],[23,1,1,26,27,[[764,1,1,26,27]]]],[491,1748,2012,2444,2468,2895,3287,3413,3417,3418,4235,4252,4763,5945,5946,6692,6796,7106,7322,7323,7456,7686,7757,8017,8271,9742,19425]]],["day",[2,2,[[8,1,1,0,1,[[265,1,1,0,1]]],[31,1,1,1,2,[[892,1,1,1,2]]]],[7995,22575]]],["morrow",[2,2,[[12,2,2,0,2,[[347,1,1,0,1],[366,1,1,1,2]]]],[10667,11185]]],["next",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4056]]]]},{"k":"H4284","v":[["*",[56,52,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,4,4,1,5,[[80,1,1,1,2],[84,3,3,2,5]]],[9,1,1,5,6,[[280,1,1,5,6]]],[12,2,2,6,8,[[365,1,1,6,7],[366,1,1,7,8]]],[13,2,2,8,10,[[368,1,1,8,9],[392,1,1,9,10]]],[16,3,3,10,13,[[433,2,2,10,12],[434,1,1,12,13]]],[17,2,2,13,15,[[440,1,1,13,14],[456,1,1,14,15]]],[18,6,6,15,21,[[510,2,2,15,17],[517,1,1,17,18],[533,1,1,18,19],[569,1,1,19,20],[571,1,1,20,21]]],[19,8,8,21,29,[[633,1,1,21,22],[639,1,1,22,23],[642,2,2,23,25],[643,1,1,25,26],[646,1,1,26,27],[647,1,1,27,28],[648,1,1,28,29]]],[22,9,6,29,35,[[733,5,3,29,32],[737,2,1,32,33],[743,1,1,33,34],[744,1,1,34,35]]],[23,12,11,35,46,[[748,1,1,35,36],[750,1,1,36,37],[755,1,1,37,38],[762,3,3,38,41],[773,2,1,41,42],[793,2,2,42,44],[794,1,1,44,45],[795,1,1,45,46]]],[24,2,2,46,48,[[799,2,2,46,48]]],[25,1,1,48,49,[[839,1,1,48,49]]],[26,2,2,49,51,[[860,2,2,49,51]]],[32,1,1,51,52,[[896,1,1,51,52]]]],[142,2424,2563,2564,2566,8370,11152,11182,11225,11747,12820,12822,12859,12963,13382,14376,14377,14530,14760,15416,15442,16558,16724,16829,16833,16843,16946,16972,16989,18747,18748,18749,18807,18899,18940,19041,19108,19245,19395,19396,19402,19646,20147,20157,20211,20241,20414,20415,21435,22060,22061,22632]]],["+",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18749]]],["cunning",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2564]]],["device",[4,4,[[13,1,1,0,1,[[368,1,1,0,1]]],[16,2,2,1,3,[[433,1,1,1,2],[434,1,1,2,3]]],[23,1,1,3,4,[[762,1,1,3,4]]]],[11225,12820,12859,19395]]],["devices",[8,8,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,1,1,1,2,[[510,1,1,1,2]]],[19,1,1,2,3,[[646,1,1,2,3]]],[23,3,3,3,6,[[755,1,1,3,4],[762,2,2,4,6]]],[26,2,2,6,8,[[860,2,2,6,8]]]],[12963,14376,16946,19245,19396,19402,22060,22061]]],["devised",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12822]]],["imaginations",[3,3,[[19,1,1,0,1,[[633,1,1,0,1]]],[24,2,2,1,3,[[799,2,2,1,3]]]],[16558,20414,20415]]],["invented",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11747]]],["means",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8370]]],["purpose",[3,3,[[19,1,1,0,1,[[647,1,1,0,1]]],[23,2,2,1,3,[[793,1,1,1,2],[795,1,1,2,3]]]],[16972,20157,20241]]],["purposes",[3,3,[[19,1,1,0,1,[[642,1,1,0,1]]],[23,2,2,1,3,[[793,1,1,1,2],[794,1,1,2,3]]]],[16829,20147,20211]]],["thought",[1,1,[[25,1,1,0,1,[[839,1,1,0,1]]]],[21435]]],["thoughts",[26,23,[[0,1,1,0,1,[[5,1,1,0,1]]],[12,2,2,1,3,[[365,1,1,1,2],[366,1,1,2,3]]],[17,1,1,3,4,[[456,1,1,3,4]]],[18,5,5,4,9,[[510,1,1,4,5],[517,1,1,5,6],[533,1,1,6,7],[569,1,1,7,8],[571,1,1,8,9]]],[19,4,4,9,13,[[639,1,1,9,10],[642,1,1,10,11],[643,1,1,11,12],[648,1,1,12,13]]],[22,8,6,13,19,[[733,4,3,13,16],[737,2,1,16,17],[743,1,1,17,18],[744,1,1,18,19]]],[23,4,3,19,22,[[748,1,1,19,20],[750,1,1,20,21],[773,2,1,21,22]]],[32,1,1,22,23,[[896,1,1,22,23]]]],[142,11152,11182,13382,14377,14530,14760,15416,15442,16724,16833,16843,16989,18747,18748,18749,18807,18899,18940,19041,19108,19646,22632]]],["work",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2566]]],["works",[2,2,[[1,2,2,0,2,[[80,1,1,0,1],[84,1,1,1,2]]]],[2424,2563]]]]},{"k":"H4285","v":[["*",[7,7,[[18,4,4,0,4,[[551,1,1,0,1],[565,2,2,1,3],[620,1,1,3,4]]],[22,2,2,4,6,[[707,1,1,4,5],[720,1,1,5,6]]],[24,1,1,6,7,[[799,1,1,6,7]]]],[15068,15314,15326,16296,18208,18496,20360]]],["dark",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18208]]],["darkness",[4,4,[[18,3,3,0,3,[[565,2,2,0,2],[620,1,1,2,3]]],[22,1,1,3,4,[[720,1,1,3,4]]]],[15314,15326,16296,18496]]],["places",[2,2,[[18,1,1,0,1,[[551,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]]],[15068,20360]]]]},{"k":"H4286","v":[["appear",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[867]]]]},{"k":"H4287","v":[["Mahath",[3,3,[[12,1,1,0,1,[[343,1,1,0,1]]],[13,2,2,1,3,[[395,1,1,1,2],[397,1,1,2,3]]]],[10489,11803,11867]]]]},{"k":"H4288","v":[["*",[11,11,[[18,1,1,0,1,[[566,1,1,0,1]]],[19,7,7,1,8,[[637,3,3,1,4],[640,1,1,4,5],[641,1,1,5,6],[645,1,1,6,7],[648,1,1,7,8]]],[22,1,1,8,9,[[732,1,1,8,9]]],[23,2,2,9,11,[[761,1,1,9,10],[792,1,1,10,11]]]],[15366,16670,16671,16685,16750,16800,16908,16999,18737,19374,20119]]],["+",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18737]]],["destruction",[7,7,[[19,7,7,0,7,[[637,3,3,0,3],[640,1,1,3,4],[641,1,1,4,5],[645,1,1,5,6],[648,1,1,6,7]]]],[16670,16671,16685,16750,16800,16908,16999]]],["dismaying",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20119]]],["ruin",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15366]]],["terror",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19374]]]]},{"k":"H4289","v":[["*",[22,19,[[1,4,4,0,4,[[74,1,1,0,1],[76,1,1,1,2],[86,1,1,2,3],[87,1,1,3,4]]],[2,2,2,4,6,[[99,1,1,4,5],[105,1,1,5,6]]],[3,12,9,6,15,[[120,2,2,6,8],[132,10,7,8,15]]],[10,1,1,15,16,[[297,1,1,15,16]]],[11,1,1,16,17,[[337,1,1,16,17]]],[13,1,1,17,18,[[370,1,1,17,18]]],[23,1,1,18,19,[[796,1,1,18,19]]]],[2233,2275,2627,2636,2978,3213,3752,3757,4200,4211,4212,4231,4232,4233,4240,8984,10237,11268,20295]]],["+",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3757]]],["censer",[7,5,[[2,2,2,0,2,[[99,1,1,0,1],[105,1,1,1,2]]],[3,5,3,2,5,[[132,5,3,2,5]]]],[2978,3213,4211,4212,4240]]],["censers",[7,7,[[3,5,5,0,5,[[132,5,5,0,5]]],[10,1,1,5,6,[[297,1,1,5,6]]],[13,1,1,6,7,[[370,1,1,6,7]]]],[4200,4211,4231,4232,4233,8984,11268]]],["firepans",[4,4,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[11,1,1,2,3,[[337,1,1,2,3]]],[23,1,1,3,4,[[796,1,1,3,4]]]],[2275,2636,10237,20295]]],["snuffdishes",[3,3,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]]],[2233,2627,3752]]]]},{"k":"H4290","v":[["*",[2,2,[[1,1,1,0,1,[[71,1,1,0,1]]],[23,1,1,1,2,[[746,1,1,1,2]]]],[2115,18999]]],["search",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18999]]],["up",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2115]]]]},{"k":"H4291","v":[["*",[8,8,[[26,8,8,0,8,[[853,5,5,0,5],[855,1,1,5,6],[856,2,2,6,8]]]],[21848,21857,21859,21861,21865,21929,21946,21955]]],["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21929]]],["came",[3,3,[[26,3,3,0,3,[[853,1,1,0,1],[856,2,2,1,3]]]],[21865,21946,21955]]],["come",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21861]]],["reached",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21848,21857]]],["reacheth",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21859]]]]},{"k":"H4292","v":[["besom",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17951]]]]},{"k":"H4293","v":[["slaughter",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17949]]]]},{"k":"H4294","v":[["*",[251,205,[[0,2,2,0,2,[[37,2,2,0,2]]],[1,27,25,2,27,[[53,4,4,2,6],[56,9,7,6,13],[57,3,3,13,16],[58,1,1,16,17],[59,1,1,17,18],[63,1,1,18,19],[66,2,2,19,21],[80,2,2,21,23],[84,2,2,23,25],[87,2,2,25,27]]],[2,2,2,27,29,[[113,1,1,27,28],[115,1,1,28,29]]],[3,110,89,29,118,[[117,16,16,29,45],[118,8,8,45,53],[119,1,1,53,54],[123,2,2,54,56],[126,8,8,56,64],[129,14,13,64,77],[133,16,8,77,85],[134,1,1,85,86],[136,3,3,86,89],[142,1,1,89,90],[146,1,1,90,91],[147,5,3,91,94],[148,1,1,94,95],[149,1,1,95,96],[150,18,14,96,110],[152,14,8,110,118]]],[5,59,45,118,163,[[193,2,2,118,120],[199,3,3,120,123],[200,6,4,123,127],[201,3,3,127,130],[202,1,1,130,131],[203,1,1,131,132],[204,2,2,132,134],[205,9,9,134,143],[206,3,1,143,144],[207,27,17,144,161],[208,2,2,161,163]]],[8,2,2,163,165,[[249,2,2,163,165]]],[10,2,2,165,167,[[297,1,1,165,166],[298,1,1,166,167]]],[12,23,15,167,182,[[343,22,14,167,181],[349,1,1,181,182]]],[13,1,1,182,183,[[371,1,1,182,183]]],[18,2,2,183,185,[[582,1,1,183,184],[587,1,1,184,185]]],[22,8,8,185,193,[[687,1,1,185,186],[688,4,4,186,190],[692,1,1,190,191],[706,1,1,191,192],[708,1,1,192,193]]],[23,1,1,193,194,[[792,1,1,193,194]]],[25,9,8,194,202,[[805,1,1,194,195],[806,1,1,195,196],[808,2,2,196,198],[815,1,1,198,199],[820,4,3,199,202]]],[32,1,1,202,203,[[898,1,1,202,203]]],[34,2,2,203,205,[[905,2,2,203,205]]]],[1137,1144,1603,1605,1618,1621,1694,1695,1697,1700,1702,1704,1705,1715,1726,1727,1765,1790,1905,1988,1992,2422,2426,2561,2565,2655,2656,3457,3550,3608,3620,3625,3627,3629,3631,3633,3635,3637,3639,3641,3643,3645,3647,3651,3653,3663,3665,3670,3672,3678,3680,3685,3687,3698,3852,3862,4003,4004,4007,4008,4011,4012,4014,4015,4077,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4246,4247,4249,4250,4251,4252,4253,4254,4259,4319,4320,4322,4544,4649,4668,4669,4670,4746,4814,4829,4830,4831,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4882,4883,4884,4885,4886,4887,4888,4891,5977,5994,6169,6178,6183,6188,6189,6190,6191,6203,6222,6223,6273,6276,6304,6314,6322,6329,6344,6345,6352,6360,6361,6369,6372,6380,6382,6385,6386,6387,6388,6390,6398,6401,6404,6406,6408,6409,6411,6413,6415,6417,6419,6427,6440,7535,7551,8948,8986,10514,10515,10516,10517,10519,10520,10524,10525,10526,10528,10530,10531,10532,10534,10751,11270,15622,15788,17833,17855,17865,17874,17876,17933,18191,18249,20097,20545,20562,20587,20588,20744,20892,20893,20895,22657,22777,22782]]],["+",[50,34,[[3,8,7,0,7,[[119,1,1,0,1],[133,1,1,1,2],[147,2,1,2,3],[150,1,1,3,4],[152,3,3,4,7]]],[5,22,14,7,21,[[206,3,1,7,8],[207,19,13,8,21]]],[10,1,1,21,22,[[297,1,1,21,22]]],[12,18,11,22,33,[[343,18,11,22,33]]],[25,1,1,33,34,[[820,1,1,33,34]]]],[3698,4250,4668,4834,4886,4887,4888,6380,6385,6386,6387,6388,6390,6398,6401,6404,6409,6411,6413,6417,6419,8948,10514,10516,10517,10519,10520,10526,10528,10530,10531,10532,10534,20895]]],["rod",[41,37,[[1,20,19,0,19,[[53,4,4,0,4],[56,8,7,4,11],[57,3,3,11,14],[58,1,1,14,15],[59,1,1,15,16],[63,1,1,16,17],[66,2,2,17,19]]],[3,13,10,19,29,[[133,10,7,19,26],[136,3,3,26,29]]],[8,2,2,29,31,[[249,2,2,29,31]]],[18,1,1,31,32,[[587,1,1,31,32]]],[22,1,1,32,33,[[688,1,1,32,33]]],[25,3,3,33,36,[[808,2,2,33,35],[820,1,1,35,36]]],[32,1,1,36,37,[[898,1,1,36,37]]]],[1603,1605,1618,1621,1694,1695,1697,1700,1702,1704,1705,1715,1726,1727,1765,1790,1905,1988,1992,4246,4247,4249,4250,4252,4253,4254,4319,4320,4322,7535,7551,15788,17876,20587,20588,20895,22657]]],["rods",[8,7,[[1,1,1,0,1,[[56,1,1,0,1]]],[3,5,4,1,5,[[133,5,4,1,5]]],[25,2,2,5,7,[[820,2,2,5,7]]]],[1697,4246,4250,4251,4253,20892,20893]]],["staff",[15,15,[[0,2,2,0,2,[[37,2,2,0,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[18,1,1,3,4,[[582,1,1,3,4]]],[22,7,7,4,11,[[687,1,1,4,5],[688,3,3,5,8],[692,1,1,8,9],[706,1,1,9,10],[708,1,1,10,11]]],[23,1,1,11,12,[[792,1,1,11,12]]],[25,3,3,12,15,[[805,1,1,12,13],[806,1,1,13,14],[815,1,1,14,15]]]],[1137,1144,3550,15622,17833,17855,17865,17874,17933,18191,18249,20097,20545,20562,20744]]],["staves",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22782]]],["tribe",[116,108,[[1,6,6,0,6,[[80,2,2,0,2],[84,2,2,2,4],[87,2,2,4,6]]],[2,1,1,6,7,[[113,1,1,6,7]]],[3,74,69,7,76,[[117,15,15,7,22],[118,8,8,22,30],[123,1,1,30,31],[126,8,8,31,39],[129,14,13,39,52],[134,1,1,52,53],[147,2,2,53,55],[150,15,13,55,68],[152,10,8,68,76]]],[5,30,28,76,104,[[193,2,2,76,78],[199,3,3,78,81],[200,2,2,81,83],[201,3,3,83,86],[202,1,1,86,87],[203,1,1,87,88],[204,2,2,88,90],[205,8,8,90,98],[207,7,5,98,103],[208,1,1,103,104]]],[12,5,4,104,108,[[343,4,3,104,107],[349,1,1,107,108]]]],[2422,2426,2561,2565,2655,2656,3457,3608,3625,3627,3629,3631,3633,3635,3637,3639,3641,3643,3645,3647,3651,3653,3663,3665,3670,3672,3678,3680,3685,3687,3862,4003,4004,4007,4008,4011,4012,4014,4015,4077,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4259,4669,4670,4829,4830,4831,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4882,4883,4884,4885,4886,4887,4888,4891,5977,5994,6169,6178,6183,6189,6190,6203,6222,6223,6273,6276,6304,6314,6322,6329,6344,6345,6352,6360,6361,6369,6386,6387,6406,6408,6415,6427,10515,10524,10525,10751]]],["tribes",[20,20,[[3,10,10,0,10,[[117,1,1,0,1],[123,1,1,1,2],[142,1,1,2,3],[146,1,1,3,4],[147,1,1,4,5],[148,1,1,5,6],[149,1,1,6,7],[150,2,2,7,9],[152,1,1,9,10]]],[5,7,7,10,17,[[200,4,4,10,14],[205,1,1,14,15],[207,1,1,15,16],[208,1,1,16,17]]],[10,1,1,17,18,[[298,1,1,17,18]]],[13,1,1,18,19,[[371,1,1,18,19]]],[34,1,1,19,20,[[905,1,1,19,20]]]],[3620,3852,4544,4649,4668,4746,4814,4829,4831,4888,6188,6189,6190,6191,6372,6382,6440,8986,11270,22777]]]]},{"k":"H4295","v":[["*",[19,18,[[1,6,6,0,6,[[75,1,1,0,1],[76,1,1,1,2],[77,1,1,2,3],[85,1,1,3,4],[87,1,1,4,5],[88,1,1,5,6]]],[4,3,2,6,8,[[180,3,2,6,8]]],[11,1,1,8,9,[[331,1,1,8,9]]],[12,1,1,9,10,[[364,1,1,9,10]]],[13,1,1,10,11,[[398,1,1,10,11]]],[14,1,1,11,12,[[411,1,1,11,12]]],[19,1,1,12,13,[[642,1,1,12,13]]],[20,1,1,13,14,[[661,1,1,13,14]]],[22,1,1,14,15,[[715,1,1,14,15]]],[23,1,1,15,16,[[775,1,1,15,16]]],[25,2,2,16,18,[[802,1,1,16,17],[809,1,1,17,18]]]],[2259,2277,2320,2595,2637,2684,5624,5654,10091,11132,11905,12250,16831,17380,18383,19728,20491,20606]]],["+",[8,7,[[1,6,6,0,6,[[75,1,1,0,1],[76,1,1,1,2],[77,1,1,2,3],[85,1,1,3,4],[87,1,1,4,5],[88,1,1,5,6]]],[4,2,1,6,7,[[180,2,1,6,7]]]],[2259,2277,2320,2595,2637,2684,5654]]],["beneath",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[19,1,1,1,2,[[642,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]]],[5624,16831,19728]]],["down",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11905]]],["downward",[5,5,[[11,1,1,0,1,[[331,1,1,0,1]]],[20,1,1,1,2,[[661,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]],[25,2,2,3,5,[[802,1,1,3,4],[809,1,1,4,5]]]],[10091,17380,18383,20491,20606]]],["less",[1,1,[[14,1,1,0,1,[[411,1,1,0,1]]]],[12250]]],["under",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11132]]]]},{"k":"H4296","v":[["*",[29,29,[[0,3,3,0,3,[[46,1,1,0,1],[47,1,1,1,2],[48,1,1,2,3]]],[1,1,1,3,4,[[57,1,1,3,4]]],[8,4,4,4,8,[[254,3,3,4,7],[263,1,1,7,8]]],[9,2,2,8,10,[[269,1,1,8,9],[270,1,1,9,10]]],[10,2,2,10,12,[[307,1,1,10,11],[311,1,1,11,12]]],[11,7,7,12,19,[[313,3,3,12,15],[316,3,3,15,18],[323,1,1,18,19]]],[13,2,2,19,21,[[388,1,1,19,20],[390,1,1,20,21]]],[16,2,2,21,23,[[426,1,1,21,22],[432,1,1,22,23]]],[18,1,1,23,24,[[483,1,1,23,24]]],[19,1,1,24,25,[[653,1,1,24,25]]],[21,1,1,25,26,[[673,1,1,25,26]]],[25,1,1,26,27,[[824,1,1,26,27]]],[29,2,2,27,29,[[881,1,1,27,28],[884,1,1,28,29]]]],[1451,1453,1506,1713,7719,7721,7722,7965,8112,8127,9336,9455,9537,9539,9549,9613,9624,9635,9831,11655,11702,12708,12815,13991,17155,17578,21048,22407,22454]]],["+",[2,2,[[11,1,1,0,1,[[323,1,1,0,1]]],[13,1,1,1,2,[[388,1,1,1,2]]]],[9831,11655]]],["bed",[23,23,[[0,2,2,0,2,[[47,1,1,0,1],[48,1,1,1,2]]],[1,1,1,2,3,[[57,1,1,2,3]]],[8,4,4,3,7,[[254,3,3,3,6],[263,1,1,6,7]]],[9,1,1,7,8,[[270,1,1,7,8]]],[10,2,2,8,10,[[307,1,1,8,9],[311,1,1,9,10]]],[11,6,6,10,16,[[313,3,3,10,13],[316,3,3,13,16]]],[13,1,1,16,17,[[390,1,1,16,17]]],[16,1,1,17,18,[[432,1,1,17,18]]],[18,1,1,18,19,[[483,1,1,18,19]]],[19,1,1,19,20,[[653,1,1,19,20]]],[21,1,1,20,21,[[673,1,1,20,21]]],[25,1,1,21,22,[[824,1,1,21,22]]],[29,1,1,22,23,[[881,1,1,22,23]]]],[1453,1506,1713,7719,7721,7722,7965,8127,9336,9455,9537,9539,9549,9613,9624,9635,11702,12815,13991,17155,17578,21048,22407]]],["bed's",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1451]]],["beds",[2,2,[[16,1,1,0,1,[[426,1,1,0,1]]],[29,1,1,1,2,[[884,1,1,1,2]]]],[12708,22454]]],["bier",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8112]]]]},{"k":"H4297","v":[["perverseness",[1,1,[[25,1,1,0,1,[[810,1,1,0,1]]]],[20631]]]]},{"k":"H4298","v":[["out",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17815]]]]},{"k":"H4299","v":[["spun",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2556]]]]},{"k":"H4300","v":[["bars",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13882]]]]},{"k":"H4301","v":[["*",[5,5,[[0,1,1,0,1,[[42,1,1,0,1]]],[17,1,1,1,2,[[438,1,1,1,2]]],[19,1,1,2,3,[[629,1,1,2,3]]],[22,1,1,3,4,[[723,1,1,3,4]]],[23,1,1,4,5,[[785,1,1,4,5]]]],[1313,12925,16437,18564,19965]]],["+",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12925]]],["riches",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18564]]],["treasure",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1313]]],["treasures",[2,2,[[19,1,1,0,1,[[629,1,1,0,1]]],[23,1,1,1,2,[[785,1,1,1,2]]]],[16437,19965]]]]},{"k":"H4302","v":[["*",[6,6,[[22,2,2,0,2,[[738,1,1,0,1],[739,1,1,1,2]]],[25,3,3,2,5,[[818,1,1,2,3],[832,1,1,3,4],[835,1,1,4,5]]],[32,1,1,5,6,[[893,1,1,5,6]]]],[18842,18846,20832,21234,21342,22585]]],["plant",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21342]]],["plantation",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20832]]],["planting",[2,2,[[22,2,2,0,2,[[738,1,1,0,1],[739,1,1,1,2]]]],[18842,18846]]],["plantings",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22585]]],["plants",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21234]]]]},{"k":"H4303","v":[["*",[8,8,[[0,6,6,0,6,[[26,6,6,0,6]]],[19,2,2,6,8,[[650,2,2,6,8]]]],[731,734,736,741,744,758,17047,17050]]],["dainties",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17047]]],["meat",[6,6,[[0,6,6,0,6,[[26,6,6,0,6]]]],[731,734,736,741,744,758]]],["meats",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17050]]]]},{"k":"H4304","v":[["*",[2,2,[[7,1,1,0,1,[[234,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]]],[7187,17729]]],["vail",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7187]]],["wimples",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17729]]]]},{"k":"H4305","v":[["*",[17,14,[[0,3,3,0,3,[[1,1,1,0,1],[6,1,1,1,2],[18,1,1,2,3]]],[1,3,3,3,6,[[58,2,2,3,5],[65,1,1,5,6]]],[17,2,2,6,8,[[455,1,1,6,7],[473,1,1,7,8]]],[18,3,3,8,11,[[488,1,1,8,9],[555,2,2,9,11]]],[22,1,1,11,12,[[683,1,1,11,12]]],[25,1,1,12,13,[[839,1,1,12,13]]],[29,4,1,13,14,[[882,4,1,13,14]]]],[35,163,481,1760,1765,1951,13349,13819,14065,15137,15140,17745,21447,22417]]],["+",[2,2,[[22,1,1,0,1,[[683,1,1,0,1]]],[29,1,1,1,2,[[882,1,1,1,2]]]],[17745,22417]]],["down",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15137]]],["rain",[9,9,[[0,2,2,0,2,[[1,1,1,0,1],[6,1,1,1,2]]],[1,2,2,2,4,[[58,1,1,2,3],[65,1,1,3,4]]],[17,2,2,4,6,[[455,1,1,4,5],[473,1,1,5,6]]],[18,1,1,6,7,[[488,1,1,6,7]]],[25,1,1,7,8,[[839,1,1,7,8]]],[29,1,1,8,9,[[882,1,1,8,9]]]],[35,163,1760,1951,13349,13819,14065,21447,22417]]],["rained",[4,4,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,1,1,1,2,[[58,1,1,1,2]]],[18,1,1,2,3,[[555,1,1,2,3]]],[29,1,1,3,4,[[882,1,1,3,4]]]],[481,1765,15140,22417]]],["upon",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22417]]]]},{"k":"H4306","v":[["*",[38,36,[[1,2,2,0,2,[[58,2,2,0,2]]],[4,6,6,2,8,[[163,3,3,2,5],[180,2,2,5,7],[184,1,1,7,8]]],[8,2,2,8,10,[[247,2,2,8,10]]],[9,2,2,10,12,[[267,1,1,10,11],[289,1,1,11,12]]],[10,4,4,12,16,[[298,2,2,12,14],[307,1,1,14,15],[308,1,1,15,16]]],[13,3,3,16,19,[[372,2,2,16,18],[373,1,1,18,19]]],[17,7,6,19,25,[[440,1,1,19,20],[463,1,1,20,21],[464,1,1,21,22],[471,1,1,22,23],[472,2,1,23,24],[473,1,1,24,25]]],[18,3,3,25,28,[[549,1,1,25,26],[612,1,1,26,27],[624,1,1,27,28]]],[19,2,2,28,30,[[653,1,1,28,29],[655,1,1,29,30]]],[22,3,3,30,33,[[682,1,1,30,31],[683,1,1,31,32],[708,1,1,32,33]]],[23,2,2,33,35,[[754,1,1,33,34],[795,1,1,34,35]]],[37,2,1,35,36,[[920,2,1,35,36]]]],[1775,1776,5219,5222,5225,5623,5635,5760,7477,7478,8043,8657,9020,9021,9318,9342,11308,11309,11337,12961,13530,13555,13763,13775,13821,15006,16182,16359,17142,17199,17739,17745,18240,19214,20228,23017]]],["+",[3,3,[[9,1,1,0,1,[[289,1,1,0,1]]],[22,2,2,1,3,[[682,1,1,1,2],[683,1,1,2,3]]]],[8657,17739,17745]]],["great",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13775]]],["rain",[33,32,[[1,2,2,0,2,[[58,2,2,0,2]]],[4,6,6,2,8,[[163,3,3,2,5],[180,2,2,5,7],[184,1,1,7,8]]],[8,2,2,8,10,[[247,2,2,8,10]]],[9,1,1,10,11,[[267,1,1,10,11]]],[10,4,4,11,15,[[298,2,2,11,13],[307,1,1,13,14],[308,1,1,14,15]]],[13,3,3,15,18,[[372,2,2,15,17],[373,1,1,17,18]]],[17,5,5,18,23,[[440,1,1,18,19],[463,1,1,19,20],[464,1,1,20,21],[471,1,1,21,22],[473,1,1,22,23]]],[18,3,3,23,26,[[549,1,1,23,24],[612,1,1,24,25],[624,1,1,25,26]]],[19,2,2,26,28,[[653,1,1,26,27],[655,1,1,27,28]]],[22,1,1,28,29,[[708,1,1,28,29]]],[23,2,2,29,31,[[754,1,1,29,30],[795,1,1,30,31]]],[37,2,1,31,32,[[920,2,1,31,32]]]],[1775,1776,5219,5222,5225,5623,5635,5760,7477,7478,8043,9020,9021,9318,9342,11308,11309,11337,12961,13530,13555,13763,13821,15006,16182,16359,17142,17199,18240,19214,20228,23017]]],["small",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13775]]]]},{"k":"H4307","v":[["*",[16,15,[[8,1,1,0,1,[[255,1,1,0,1]]],[15,2,2,1,3,[[415,1,1,1,2],[424,1,1,2,3]]],[17,1,1,3,4,[[451,1,1,3,4]]],[23,11,10,4,14,[[776,3,3,4,7],[777,1,1,7,8],[781,2,1,8,9],[782,3,3,9,12],[783,2,2,12,14]]],[24,1,1,14,15,[[799,1,1,14,15]]]],[7750,12352,12663,13250,19733,19739,19743,19776,19895,19901,19908,19923,19937,19938,20366]]],["mark",[3,3,[[8,1,1,0,1,[[255,1,1,0,1]]],[17,1,1,1,2,[[451,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]]],[7750,13250,20366]]],["prison",[13,12,[[15,2,2,0,2,[[415,1,1,0,1],[424,1,1,1,2]]],[23,11,10,2,12,[[776,3,3,2,5],[777,1,1,5,6],[781,2,1,6,7],[782,3,3,7,10],[783,2,2,10,12]]]],[12352,12663,19733,19739,19743,19776,19895,19901,19908,19923,19937,19938]]]]},{"k":"H4308","v":[["Matred",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1079,10302]]]]},{"k":"H4309","v":[["Matri",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7439]]]]},{"k":"H4310","v":[["*",[422,341,[[0,18,17,0,17,[[2,1,1,0,1],[18,1,1,1,2],[20,2,2,2,4],[23,3,3,4,7],[26,3,3,7,10],[31,2,1,10,11],[32,2,2,11,13],[37,1,1,13,14],[42,1,1,14,15],[47,1,1,15,16],[48,1,1,16,17]]],[1,14,11,17,28,[[51,1,1,17,18],[52,1,1,18,19],[53,2,1,19,20],[54,1,1,20,21],[59,2,1,21,22],[64,2,1,22,23],[65,1,1,23,24],[73,1,1,24,25],[81,3,3,25,28]]],[3,7,7,28,35,[[127,3,3,28,31],[138,1,1,31,32],[139,1,1,32,33],[140,2,2,33,35]]],[4,16,15,35,50,[[155,1,1,35,36],[156,2,2,36,38],[157,2,2,38,40],[161,1,1,40,41],[172,4,4,41,45],[173,1,1,45,46],[180,2,1,46,47],[182,2,2,47,49],[185,1,1,49,50]]],[5,2,2,50,52,[[195,1,1,50,51],[210,1,1,51,52]]],[6,14,13,52,65,[[211,1,1,52,53],[216,1,1,53,54],[217,1,1,54,55],[219,4,3,55,58],[220,1,1,58,59],[223,1,1,59,60],[225,1,1,60,61],[228,1,1,61,62],[230,1,1,62,63],[231,2,2,63,65]]],[7,3,3,65,68,[[233,1,1,65,66],[234,2,2,66,68]]],[8,34,26,68,94,[[237,1,1,68,69],[239,1,1,69,70],[241,2,1,70,71],[244,1,1,71,72],[245,1,1,72,73],[246,1,1,73,74],[247,5,1,74,75],[249,1,1,75,76],[252,5,5,76,81],[253,2,1,81,82],[255,1,1,82,83],[257,1,1,83,84],[258,1,1,84,85],[259,2,1,85,86],[260,2,1,86,87],[261,4,4,87,91],[263,1,1,91,92],[265,2,2,92,94]]],[9,16,13,94,107,[[267,1,1,94,95],[269,1,1,95,96],[273,3,2,96,98],[277,1,1,98,99],[278,1,1,99,100],[281,1,1,100,101],[282,2,2,101,103],[284,1,1,103,104],[286,2,1,104,105],[288,2,1,105,106],[289,1,1,106,107]]],[10,6,5,107,112,[[291,2,2,107,109],[293,1,1,109,110],[310,2,1,110,111],[312,1,1,111,112]]],[11,10,8,112,120,[[318,1,1,112,113],[321,3,2,113,115],[322,2,2,115,117],[330,2,2,117,119],[331,2,1,119,120]]],[12,7,5,120,125,[[348,1,1,120,121],[354,3,2,121,123],[366,3,2,123,125]]],[13,6,5,125,130,[[367,1,1,125,126],[368,2,1,126,127],[384,1,1,127,128],[398,1,1,128,129],[402,1,1,129,130]]],[14,1,1,130,131,[[403,1,1,130,131]]],[15,1,1,131,132,[[418,1,1,131,132]]],[16,4,4,132,136,[[429,1,1,132,133],[431,2,2,133,135],[432,1,1,135,136]]],[17,62,49,136,185,[[439,2,2,136,138],[440,1,1,138,139],[441,1,1,139,140],[444,5,4,140,144],[446,2,2,144,146],[447,2,2,146,148],[448,2,2,148,150],[449,2,2,150,152],[452,2,2,152,154],[454,2,1,154,155],[456,2,1,155,156],[458,2,2,156,158],[459,1,1,158,159],[460,1,1,159,160],[461,3,2,160,162],[464,1,1,162,163],[466,2,2,163,165],[469,5,3,165,168],[471,3,2,168,170],[473,13,9,170,179],[474,2,1,179,180],[476,5,4,180,184],[477,1,1,184,185]]],[18,42,35,185,220,[[481,1,1,185,186],[483,1,1,186,187],[489,1,1,187,188],[491,1,1,188,189],[492,2,1,189,190],[495,2,1,190,191],[496,1,1,191,192],[501,4,3,192,195],[502,1,1,195,196],[504,2,1,196,197],[511,1,1,197,198],[512,1,1,198,199],[516,1,1,199,200],[530,1,1,200,201],[532,1,1,201,202],[536,1,1,202,203],[537,2,1,203,204],[541,1,1,204,205],[548,1,1,205,206],[550,1,1,206,207],[553,1,1,207,208],[554,1,1,208,209],[566,3,3,209,212],[567,1,1,212,213],[571,2,1,213,214],[583,1,1,214,215],[584,1,1,215,216],[585,2,1,216,217],[590,1,1,217,218],[607,1,1,218,219],[624,1,1,219,220]]],[19,19,11,220,231,[[636,2,2,220,222],[645,1,1,222,223],[647,2,2,223,225],[650,6,1,225,226],[651,1,1,226,227],[654,1,1,227,228],[657,5,2,228,230],[658,1,1,230,231]]],[20,17,14,231,245,[[660,3,2,231,233],[661,2,2,233,235],[662,1,1,235,236],[663,1,1,236,237],[664,2,1,237,238],[665,2,2,238,240],[666,4,3,240,243],[667,1,1,243,244],[668,1,1,244,245]]],[21,4,4,245,249,[[673,1,1,245,246],[676,1,1,246,247],[678,2,2,247,249]]],[22,60,47,249,296,[[679,1,1,249,250],[684,2,1,250,251],[688,1,1,251,252],[692,2,1,252,253],[700,1,1,253,254],[701,1,1,254,255],[705,1,1,255,256],[706,2,1,256,257],[707,2,1,257,258],[711,2,1,258,259],[714,2,2,259,261],[715,2,1,261,262],[718,6,6,262,268],[719,3,3,268,271],[720,4,3,271,274],[721,2,2,274,276],[722,2,2,276,278],[723,1,1,278,279],[724,1,1,279,280],[726,1,1,280,281],[727,2,1,281,282],[728,5,4,282,286],[729,3,2,286,288],[731,3,2,288,290],[732,1,1,290,291],[735,3,2,291,293],[738,1,1,293,294],[741,1,1,294,295],[744,2,1,295,296]]],[23,27,17,296,313,[[746,1,1,296,297],[750,1,1,297,298],[753,3,3,298,301],[754,1,1,301,302],[759,3,1,302,303],[761,1,1,303,304],[762,1,1,304,305],[765,2,1,305,306],[767,2,1,306,307],[774,1,1,307,308],[788,1,1,308,309],[790,1,1,309,310],[793,5,2,310,312],[794,4,1,312,313]]],[24,3,3,313,316,[[798,2,2,313,315],[799,1,1,315,316]]],[25,4,4,316,320,[[828,1,1,316,317],[832,2,2,317,319],[833,1,1,319,320]]],[27,1,1,320,321,[[875,1,1,320,321]]],[28,2,2,321,323,[[877,2,2,321,323]]],[29,4,3,323,326,[[881,2,1,323,324],[885,2,2,324,326]]],[30,1,1,326,327,[[888,1,1,326,327]]],[31,3,3,327,330,[[889,2,2,327,329],[891,1,1,329,330]]],[32,4,3,330,333,[[893,2,1,330,331],[898,1,1,331,332],[899,1,1,332,333]]],[33,4,3,333,336,[[900,2,1,333,334],[902,2,2,334,336]]],[36,1,1,336,337,[[910,1,1,336,337]]],[37,2,2,337,339,[[914,2,2,337,339]]],[38,3,2,339,341,[[925,1,1,339,340],[927,2,1,340,341]]]],[66,469,520,539,614,638,656,745,759,760,945,965,968,1144,1312,1459,1482,1568,1590,1612,1634,1785,1931,1950,2191,2462,2464,2471,4028,4042,4053,4384,4426,4455,4469,4999,5011,5012,5079,5082,5159,5432,5433,5434,5435,5448,5678,5720,5721,5839,6045,6491,6510,6683,6697,6782,6783,6792,6829,6901,6935,6996,7072,7107,7110,7154,7181,7188,7265,7305,7351,7411,7430,7457,7463,7525,7644,7646,7673,7674,7676,7694,7740,7801,7832,7853,7871,7911,7914,7919,7920,7953,7991,8002,8030,8093,8198,8203,8280,8308,8393,8436,8445,8511,8565,8634,8668,8737,8744,8825,9422,9500,9685,9761,9788,9802,9806,10044,10059,10083,10690,10879,10884,11169,11178,11204,11217,11561,11889,12016,12019,12412,12776,12797,12799,12812,12932,12937,12952,12986,13055,13063,13070,13075,13113,13118,13131,13137,13158,13172,13185,13194,13263,13275,13320,13386,13422,13432,13461,13464,13471,13481,13534,13619,13623,13690,13696,13712,13758,13759,13795,13798,13799,13818,13821,13822,13829,13830,13834,13839,13898,13899,13901,13902,13925,13971,13990,14070,14087,14088,14149,14180,14244,14249,14251,14263,14286,14400,14420,14518,14725,14738,14797,14816,14855,14995,15045,15088,15106,15332,15334,15374,15389,15447,15653,15742,15752,15818,16143,16368,16642,16654,16915,16960,16963,17073,17101,17173,17255,17260,17294,17352,17358,17380,17381,17389,17407,17429,17442,17453,17459,17462,17465,17479,17507,17577,17624,17641,17645,17666,17777,17853,17955,18068,18085,18155,18173,18208,18293,18335,18350,18375,18432,18433,18434,18438,18445,18446,18453,18455,18477,18499,18503,18504,18514,18518,18540,18543,18582,18591,18628,18657,18663,18670,18671,18672,18685,18692,18712,18719,18738,18769,18776,18829,18867,18930,18989,19099,19176,19177,19187,19208,19320,19366,19397,19453,19502,19688,20038,20052,20131,20146,20210,20345,20352,20391,21153,21232,21248,21267,22291,22322,22325,22403,22466,22469,22513,22538,22539,22567,22584,22657,22682,22690,22719,22731,22858,22929,22932,23099,23122]]],["+",[24,20,[[1,4,3,0,3,[[59,2,1,0,1],[65,1,1,1,2],[81,1,1,2,3]]],[3,1,1,3,4,[[127,1,1,3,4]]],[4,3,2,4,6,[[157,1,1,4,5],[180,2,1,5,6]]],[6,1,1,6,7,[[219,1,1,6,7]]],[8,2,1,7,8,[[247,2,1,7,8]]],[9,1,1,8,9,[[284,1,1,8,9]]],[17,2,2,9,11,[[458,1,1,9,10],[473,1,1,10,11]]],[18,4,3,11,14,[[491,1,1,11,12],[504,2,1,12,13],[530,1,1,13,14]]],[21,1,1,14,15,[[678,1,1,14,15]]],[23,1,1,15,16,[[753,1,1,15,16]]],[25,2,2,16,18,[[832,1,1,16,17],[833,1,1,17,18]]],[31,2,2,18,20,[[889,2,2,18,20]]]],[1785,1950,2471,4053,5082,5678,6783,7463,8511,13422,13822,14087,14286,14725,17641,19177,21232,21267,22538,22539]]],["He",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8565]]],["What",[14,14,[[0,2,2,0,2,[[23,1,1,0,1],[32,1,1,1,2]]],[3,1,1,2,3,[[138,1,1,2,3]]],[4,2,2,3,5,[[172,2,2,3,5]]],[6,3,3,5,8,[[220,1,1,5,6],[223,1,1,6,7],[231,1,1,7,8]]],[17,1,1,8,9,[[469,1,1,8,9]]],[18,3,3,9,12,[[502,1,1,9,10],[511,1,1,10,11],[566,1,1,11,12]]],[25,1,1,12,13,[[828,1,1,12,13]]],[32,1,1,13,14,[[893,1,1,13,14]]]],[656,968,4384,5432,5435,6829,6901,7110,13690,14263,14400,15374,21153,22584]]],["Which",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7072]]],["Who",[125,125,[[0,6,6,0,6,[[2,1,1,0,1],[20,1,1,1,2],[26,2,2,2,4],[32,1,1,4,5],[47,1,1,5,6]]],[1,6,6,6,12,[[51,1,1,6,7],[52,1,1,7,8],[53,1,1,8,9],[54,1,1,9,10],[64,1,1,10,11],[81,1,1,11,12]]],[3,3,3,12,15,[[127,2,2,12,14],[139,1,1,14,15]]],[4,3,3,15,18,[[161,1,1,15,16],[182,2,2,16,18]]],[5,1,1,18,19,[[195,1,1,18,19]]],[6,7,7,19,26,[[211,1,1,19,20],[216,1,1,20,21],[219,2,2,21,23],[225,1,1,23,24],[228,1,1,24,25],[231,1,1,25,26]]],[7,2,2,26,28,[[234,2,2,26,28]]],[8,7,7,28,35,[[241,1,1,28,29],[246,1,1,29,30],[253,1,1,30,31],[255,1,1,31,32],[260,1,1,32,33],[261,2,2,33,35]]],[9,5,5,35,40,[[267,1,1,35,36],[273,1,1,36,37],[277,1,1,37,38],[278,1,1,38,39],[282,1,1,39,40]]],[10,2,2,40,42,[[310,1,1,40,41],[312,1,1,41,42]]],[11,3,3,42,45,[[321,1,1,42,43],[322,1,1,43,44],[330,1,1,44,45]]],[12,1,1,45,46,[[354,1,1,45,46]]],[13,3,3,46,49,[[384,1,1,46,47],[398,1,1,47,48],[402,1,1,48,49]]],[14,1,1,49,50,[[403,1,1,49,50]]],[16,2,2,50,52,[[431,1,1,50,51],[432,1,1,51,52]]],[17,17,17,52,69,[[447,1,1,52,53],[448,1,1,53,54],[449,1,1,54,55],[456,1,1,55,56],[469,1,1,56,57],[471,1,1,57,58],[473,6,6,58,64],[474,1,1,64,65],[476,3,3,65,68],[477,1,1,68,69]]],[18,12,12,69,81,[[481,1,1,69,70],[496,1,1,70,71],[501,3,3,71,74],[537,1,1,74,75],[541,1,1,75,76],[567,1,1,76,77],[571,1,1,77,78],[583,1,1,78,79],[585,1,1,79,80],[590,1,1,80,81]]],[19,5,5,81,86,[[647,1,1,81,82],[650,1,1,82,83],[657,2,2,83,85],[658,1,1,85,86]]],[20,2,2,86,88,[[661,1,1,86,87],[666,1,1,87,88]]],[21,3,3,88,91,[[673,1,1,88,89],[676,1,1,89,90],[678,1,1,90,91]]],[22,19,19,91,110,[[701,1,1,91,92],[707,1,1,92,93],[711,1,1,93,94],[714,1,1,94,95],[718,2,2,95,97],[719,3,3,97,100],[720,3,3,100,103],[722,1,1,103,104],[727,1,1,104,105],[728,1,1,105,106],[731,1,1,106,107],[738,1,1,107,108],[741,1,1,108,109],[744,1,1,109,110]]],[23,5,5,110,115,[[753,1,1,110,111],[754,1,1,111,112],[765,1,1,112,113],[790,1,1,113,114],[793,1,1,114,115]]],[24,1,1,115,116,[[799,1,1,115,116]]],[27,1,1,116,117,[[875,1,1,116,117]]],[28,1,1,117,118,[[877,1,1,117,118]]],[30,1,1,118,119,[[888,1,1,118,119]]],[31,1,1,119,120,[[891,1,1,119,120]]],[32,1,1,120,121,[[899,1,1,120,121]]],[33,1,1,121,122,[[900,1,1,121,122]]],[36,1,1,122,123,[[910,1,1,122,123]]],[37,1,1,123,124,[[914,1,1,123,124]]],[38,1,1,124,125,[[925,1,1,124,125]]]],[66,520,759,760,965,1459,1568,1590,1612,1634,1931,2464,4028,4042,4426,5159,5720,5721,6045,6510,6683,6782,6792,6935,6996,7107,7181,7188,7351,7457,7694,7740,7871,7911,7919,8030,8198,8280,8308,8436,9422,9500,9788,9806,10059,10879,11561,11889,12016,12019,12797,12812,13137,13172,13185,13386,13696,13759,13795,13798,13818,13829,13830,13834,13839,13899,13901,13902,13925,13971,14180,14244,14249,14251,14816,14855,15389,15447,15653,15752,15818,16963,17073,17255,17260,17294,17380,17459,17577,17624,17645,18085,18208,18293,18350,18432,18433,18453,18455,18477,18499,18503,18504,18543,18657,18672,18712,18829,18867,18930,19187,19208,19453,20052,20131,20391,22291,22325,22513,22567,22682,22690,22858,22929,23099]]],["Whom",[6,6,[[8,1,1,0,1,[[263,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[18,1,1,2,3,[[550,1,1,2,3]]],[22,3,3,3,6,[[684,1,1,3,4],[706,1,1,4,5],[715,1,1,5,6]]]],[7953,10083,15045,17777,18173,18375]]],["Whose",[6,6,[[0,3,3,0,3,[[23,2,2,0,2],[31,1,1,2,3]]],[7,1,1,3,4,[[233,1,1,3,4]]],[8,1,1,4,5,[[252,1,1,4,5]]],[9,1,1,5,6,[[269,1,1,5,6]]]],[614,638,945,7154,7676,8093]]],["Whoso",[3,3,[[18,1,1,0,1,[[584,1,1,0,1]]],[19,2,2,1,3,[[636,2,2,1,3]]]],[15742,16642,16654]]],["Whosoever",[2,2,[[1,1,1,0,1,[[81,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]]],[2462,6697]]],["any",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,1,1,1,2,[[73,1,1,1,2]]]],[469,2191]]],["he",[2,2,[[9,1,1,0,1,[[286,1,1,0,1]]],[20,1,1,1,2,[[663,1,1,1,2]]]],[8565,17407]]],["him",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17479]]],["one",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8668]]],["that",[13,12,[[9,1,1,0,1,[[281,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]],[17,9,8,2,10,[[441,1,1,2,3],[446,1,1,3,4],[448,1,1,4,5],[449,1,1,5,6],[454,2,1,6,7],[464,1,1,7,8],[466,2,2,8,10]]],[18,1,1,10,11,[[532,1,1,10,11]]],[23,1,1,11,12,[[753,1,1,11,12]]]],[8393,10690,12986,13113,13158,13194,13320,13534,13619,13623,14738,19176]]],["what",[12,12,[[4,5,5,0,5,[[155,1,1,0,1],[156,2,2,1,3],[172,2,2,3,5]]],[8,1,1,5,6,[[253,1,1,5,6]]],[9,2,2,6,8,[[273,2,2,6,8]]],[12,3,3,8,11,[[354,2,2,8,10],[366,1,1,10,11]]],[32,1,1,11,12,[[893,1,1,11,12]]]],[4999,5011,5012,5433,5434,7694,8198,8203,10879,10884,11178,22584]]],["which",[5,5,[[11,2,2,0,2,[[318,1,1,0,1],[321,1,1,1,2]]],[17,1,1,2,3,[[440,1,1,2,3]]],[22,2,2,3,5,[[726,1,1,3,4],[728,1,1,4,5]]]],[9685,9761,12952,18628,18663]]],["who",[159,132,[[0,4,4,0,4,[[20,1,1,0,1],[26,1,1,1,2],[42,1,1,2,3],[48,1,1,3,4]]],[1,2,2,4,6,[[53,1,1,4,5],[64,1,1,5,6]]],[3,2,2,6,8,[[140,2,2,6,8]]],[4,3,3,8,11,[[157,1,1,8,9],[173,1,1,9,10],[185,1,1,10,11]]],[6,1,1,11,12,[[219,1,1,11,12]]],[8,11,11,12,23,[[237,1,1,12,13],[239,1,1,13,14],[245,1,1,14,15],[249,1,1,15,16],[252,1,1,16,17],[257,1,1,17,18],[258,1,1,18,19],[260,1,1,19,20],[261,2,2,20,22],[265,1,1,22,23]]],[9,2,1,23,24,[[288,2,1,23,24]]],[10,3,3,24,27,[[291,2,2,24,26],[293,1,1,26,27]]],[11,2,2,27,29,[[321,1,1,27,28],[322,1,1,28,29]]],[12,2,2,29,31,[[366,2,2,29,31]]],[13,3,2,31,33,[[367,1,1,31,32],[368,2,1,32,33]]],[15,1,1,33,34,[[418,1,1,33,34]]],[16,1,1,34,35,[[429,1,1,34,35]]],[17,29,27,35,62,[[439,2,2,35,37],[444,5,4,37,41],[446,1,1,41,42],[447,1,1,42,43],[452,2,2,43,45],[456,1,1,45,46],[458,1,1,46,47],[459,1,1,47,48],[461,1,1,48,49],[469,3,2,49,51],[471,2,2,51,53],[473,6,6,53,59],[474,1,1,59,60],[476,2,2,60,62]]],[18,20,18,62,80,[[483,1,1,62,63],[489,1,1,63,64],[492,2,1,64,65],[495,2,1,65,66],[501,1,1,66,67],[512,1,1,67,68],[516,1,1,68,69],[536,1,1,69,70],[537,1,1,70,71],[548,1,1,71,72],[553,1,1,72,73],[554,1,1,73,74],[566,2,2,74,76],[571,1,1,76,77],[585,1,1,77,78],[607,1,1,78,79],[624,1,1,79,80]]],[19,12,6,80,86,[[645,1,1,80,81],[647,1,1,81,82],[650,5,1,82,83],[651,1,1,83,84],[654,1,1,84,85],[657,3,1,85,86]]],[20,12,10,86,96,[[660,3,2,86,88],[661,1,1,88,89],[664,2,1,89,90],[665,2,2,90,92],[666,3,3,92,95],[668,1,1,95,96]]],[22,21,19,96,115,[[679,1,1,96,97],[684,1,1,97,98],[692,2,1,98,99],[705,1,1,99,100],[707,1,1,100,101],[711,1,1,101,102],[718,1,1,102,103],[720,1,1,103,104],[721,2,2,104,106],[722,1,1,106,107],[723,1,1,107,108],[727,1,1,108,109],[728,3,2,109,111],[729,2,2,111,113],[731,1,1,113,114],[744,1,1,114,115]]],[23,18,9,115,124,[[746,1,1,115,116],[759,3,1,116,117],[761,1,1,117,118],[762,1,1,118,119],[765,1,1,119,120],[767,2,1,120,121],[774,1,1,121,122],[793,4,1,122,123],[794,4,1,123,124]]],[24,1,1,124,125,[[798,1,1,124,125]]],[28,1,1,125,126,[[877,1,1,125,126]]],[29,2,1,126,127,[[881,2,1,126,127]]],[32,1,1,127,128,[[898,1,1,127,128]]],[33,2,2,128,130,[[900,1,1,128,129],[902,1,1,129,130]]],[37,1,1,130,131,[[914,1,1,130,131]]],[38,2,1,131,132,[[927,2,1,131,132]]]],[539,745,1312,1482,1612,1931,4455,4469,5079,5448,5839,6782,7265,7305,7430,7525,7644,7801,7832,7871,7914,7920,8002,8634,8737,8744,8825,9788,9802,11169,11178,11204,11217,12412,12776,12932,12937,13055,13063,13070,13075,13118,13131,13263,13275,13386,13432,13461,13481,13696,13712,13758,13759,13798,13799,13821,13822,13829,13830,13839,13898,13901,13990,14070,14088,14149,14244,14420,14518,14797,14816,14995,15088,15106,15332,15334,15447,15752,16143,16368,16915,16960,17073,17101,17173,17255,17352,17358,17381,17429,17442,17453,17459,17462,17465,17507,17666,17777,17955,18155,18208,18293,18446,18499,18514,18518,18540,18582,18657,18670,18671,18685,18692,18719,18930,18989,19320,19366,19397,19453,19502,19688,20146,20210,20345,22322,22403,22657,22690,22719,22932,23122]]],["whom",[37,34,[[5,1,1,0,1,[[210,1,1,0,1]]],[8,8,6,1,7,[[241,1,1,1,2],[244,1,1,2,3],[247,2,1,3,4],[252,1,1,4,5],[259,2,1,5,6],[265,1,1,6,7]]],[9,1,1,7,8,[[282,1,1,7,8]]],[10,1,1,8,9,[[310,1,1,8,9]]],[11,2,2,9,11,[[330,1,1,9,10],[331,1,1,10,11]]],[16,1,1,11,12,[[431,1,1,11,12]]],[17,2,2,12,14,[[460,1,1,12,13],[461,1,1,13,14]]],[20,1,1,14,15,[[662,1,1,14,15]]],[22,14,13,15,28,[[688,1,1,15,16],[700,1,1,16,17],[706,1,1,17,18],[714,1,1,18,19],[715,1,1,19,20],[718,3,3,20,23],[724,1,1,23,24],[729,1,1,24,25],[731,1,1,25,26],[735,3,2,26,28]]],[23,1,1,28,29,[[750,1,1,28,29]]],[24,1,1,29,30,[[798,1,1,29,30]]],[25,1,1,30,31,[[832,1,1,30,31]]],[29,2,2,31,33,[[885,2,2,31,33]]],[33,1,1,33,34,[[902,1,1,33,34]]]],[6491,7351,7411,7463,7646,7853,7991,8445,9422,10044,10083,12799,13464,13471,17389,17853,18068,18173,18335,18375,18434,18438,18445,18591,18692,18712,18769,18776,19099,20352,21248,22466,22469,22731]]],["whose",[7,7,[[0,2,2,0,2,[[31,1,1,0,1],[37,1,1,1,2]]],[8,3,3,2,5,[[247,1,1,2,3],[252,2,2,3,5]]],[17,1,1,5,6,[[461,1,1,5,6]]],[23,1,1,6,7,[[788,1,1,6,7]]]],[945,1144,7463,7673,7674,13471,20038]]],["whosoever",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18738]]]]},{"k":"H4311","v":[["Medeba",[5,5,[[3,1,1,0,1,[[137,1,1,0,1]]],[5,2,2,1,3,[[199,2,2,1,3]]],[12,1,1,3,4,[[356,1,1,3,4]]],[22,1,1,4,5,[[693,1,1,4,5]]]],[4370,6163,6170,10914,17962]]]]},{"k":"H4312","v":[["Medad",[2,2,[[3,2,2,0,2,[[127,2,2,0,2]]]],[4050,4051]]]]},{"k":"H4313","v":[["Mejarkon",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6367]]]]},{"k":"H4314","v":[["Mezahab",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1079,10302]]]]},{"k":"H4315","v":[["best",[6,5,[[0,2,2,0,2,[[46,2,2,0,2]]],[1,2,1,2,3,[[71,2,1,2,3]]],[8,2,2,3,5,[[250,2,2,3,5]]]],[1426,1431,2118,7569,7575]]]]},{"k":"H4316","v":[["*",[4,4,[[9,1,1,0,1,[[275,1,1,0,1]]],[12,1,1,1,2,[[346,1,1,1,2]]],[15,2,2,2,4,[[422,1,1,2,3],[423,1,1,3,4]]]],[8239,10630,12560,12610]]],["Micah",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10630]]],["Micha",[3,3,[[9,1,1,0,1,[[275,1,1,0,1]]],[15,2,2,1,3,[[422,1,1,1,2],[423,1,1,2,3]]]],[8239,12560,12610]]]]},{"k":"H4317","v":[["Michael",[13,13,[[3,1,1,0,1,[[129,1,1,0,1]]],[12,7,7,1,8,[[342,2,2,1,3],[343,1,1,3,4],[344,1,1,4,5],[345,1,1,5,6],[349,1,1,6,7],[364,1,1,7,8]]],[13,1,1,8,9,[[387,1,1,8,9]]],[14,1,1,9,10,[[410,1,1,9,10]]],[26,3,3,10,13,[[859,2,2,10,12],[861,1,1,12,13]]]],[4088,10441,10442,10494,10538,10591,10740,11127,11626,12209,22028,22036,22082]]]]},{"k":"H4318","v":[["*",[32,29,[[6,19,17,0,17,[[227,7,6,0,6],[228,12,11,6,17]]],[12,9,8,17,25,[[342,1,1,17,18],[345,2,2,18,20],[346,2,2,20,22],[360,1,1,22,23],[361,3,2,23,25]]],[13,2,2,25,27,[[384,1,1,25,26],[400,1,1,26,27]]],[15,1,1,27,28,[[423,1,1,27,28]]],[32,1,1,28,29,[[893,1,1,28,29]]]],[6985,6988,6989,6990,6992,6993,6995,6996,6997,7006,7008,7011,7015,7016,7019,7020,7024,10433,10609,10610,10655,10656,11003,11039,11040,11556,11953,12605,22580]]],["Micah",[23,22,[[6,16,15,0,15,[[227,7,6,0,6],[228,9,9,6,15]]],[12,5,5,15,20,[[342,1,1,15,16],[345,2,2,16,18],[346,2,2,18,20]]],[13,1,1,20,21,[[400,1,1,20,21]]],[32,1,1,21,22,[[893,1,1,21,22]]]],[6985,6988,6989,6990,6992,6993,6995,6996,6997,7006,7008,7015,7016,7019,7020,10433,10609,10610,10655,10656,11953,22580]]],["Micah's",[3,3,[[6,3,3,0,3,[[228,3,3,0,3]]]],[7011,7015,7024]]],["Micaiah",[1,1,[[13,1,1,0,1,[[384,1,1,0,1]]]],[11556]]],["Micha",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12605]]],["Michah",[4,3,[[12,4,3,0,3,[[360,1,1,0,1],[361,3,2,1,3]]]],[11003,11039,11040]]]]},{"k":"H4319","v":[["Micaiah",[1,1,[[13,1,1,0,1,[[384,1,1,0,1]]]],[11550]]]]},{"k":"H4320","v":[["*",[4,4,[[11,1,1,0,1,[[334,1,1,0,1]]],[15,2,2,1,3,[[424,2,2,1,3]]],[23,1,1,3,4,[[770,1,1,3,4]]]],[10157,12659,12665,19590]]],["Micah",[1,1,[[23,1,1,0,1,[[770,1,1,0,1]]]],[19590]]],["Michaiah",[3,3,[[11,1,1,0,1,[[334,1,1,0,1]]],[15,2,2,1,3,[[424,2,2,1,3]]]],[10157,12659,12665]]]]},{"k":"H4321","v":[["*",[20,20,[[6,2,2,0,2,[[227,2,2,0,2]]],[10,9,9,2,11,[[312,9,9,2,11]]],[13,7,7,11,18,[[384,7,7,11,18]]],[23,2,2,18,20,[[780,2,2,18,20]]]],[6981,6984,9488,9489,9493,9494,9495,9504,9505,9506,9508,11549,11554,11555,11565,11566,11567,11569,19853,19855]]],["Micah",[2,2,[[6,2,2,0,2,[[227,2,2,0,2]]]],[6981,6984]]],["Micaiah",[16,16,[[10,9,9,0,9,[[312,9,9,0,9]]],[13,7,7,9,16,[[384,7,7,9,16]]]],[9488,9489,9493,9494,9495,9504,9505,9506,9508,11549,11554,11555,11565,11566,11567,11569]]],["Michaiah",[2,2,[[23,2,2,0,2,[[780,2,2,0,2]]]],[19853,19855]]]]},{"k":"H4322","v":[["Michaiah",[2,2,[[13,2,2,0,2,[[379,1,1,0,1],[383,1,1,1,2]]]],[11455,11530]]]]},{"k":"H4323","v":[["brook",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8469]]]]},{"k":"H4324","v":[["Michal",[18,17,[[8,10,9,0,9,[[249,1,1,0,1],[253,3,3,1,4],[254,5,4,4,8],[260,1,1,8,9]]],[9,7,7,9,16,[[269,2,2,9,11],[272,4,4,11,15],[287,1,1,15,16]]],[12,1,1,16,17,[[352,1,1,16,17]]]],[7557,7696,7703,7704,7717,7718,7719,7723,7905,8094,8095,8173,8177,8178,8180,8588,10820]]]]},{"k":"H4325","v":[["*",[579,522,[[0,54,46,0,46,[[0,11,8,0,8],[5,1,1,8,9],[6,9,8,9,17],[7,9,8,17,25],[8,2,2,25,27],[15,1,1,27,28],[17,1,1,28,29],[20,5,4,29,33],[23,7,5,33,38],[25,4,4,38,42],[29,1,1,42,43],[36,1,1,43,44],[42,1,1,44,45],[48,1,1,45,46]]],[1,44,38,46,84,[[51,1,1,46,47],[53,2,1,47,48],[56,10,7,48,55],[57,2,2,55,57],[61,1,1,57,58],[63,5,5,58,63],[64,9,7,63,70],[66,4,4,70,74],[69,1,1,74,75],[72,1,1,75,76],[78,1,1,76,77],[79,2,2,77,79],[81,1,1,79,80],[83,1,1,80,81],[89,3,3,81,84]]],[2,43,40,84,124,[[90,2,2,84,86],[95,1,1,86,87],[97,2,2,87,89],[100,10,8,89,97],[103,7,7,97,104],[104,15,14,104,118],[105,4,4,118,122],[106,1,1,122,123],[111,1,1,123,124]]],[3,45,36,124,160,[[121,11,8,124,132],[124,1,1,132,133],[135,11,9,133,142],[136,10,9,142,151],[137,3,3,151,154],[140,3,2,154,156],[143,2,1,156,157],[147,2,1,157,158],[149,2,2,158,160]]],[4,21,20,160,180,[[154,2,2,160,162],[156,1,1,162,163],[157,1,1,163,164],[160,3,2,164,166],[161,2,2,166,168],[162,1,1,168,169],[163,2,2,169,171],[164,2,2,171,173],[166,1,1,173,174],[167,1,1,174,175],[175,2,2,175,177],[181,1,1,177,178],[184,1,1,178,179],[185,1,1,179,180]]],[5,23,20,180,200,[[188,1,1,180,181],[189,6,4,181,185],[190,4,3,185,188],[191,1,1,188,189],[193,1,1,189,190],[195,3,3,190,193],[197,2,2,193,195],[201,3,3,195,198],[202,1,1,198,199],[204,1,1,199,200]]],[6,13,11,200,211,[[211,1,1,200,201],[214,1,1,201,202],[215,3,3,202,205],[216,1,1,205,206],[217,6,4,206,210],[225,1,1,210,211]]],[8,8,8,211,219,[[242,1,1,211,212],[244,1,1,212,213],[260,1,1,213,214],[261,3,3,214,217],[265,2,2,217,219]]],[9,10,10,219,229,[[271,1,1,219,220],[278,1,1,220,221],[280,1,1,221,222],[283,2,2,222,224],[287,1,1,224,225],[288,2,2,225,227],[289,2,2,227,229]]],[10,19,17,229,246,[[303,8,7,229,236],[304,1,1,236,237],[307,1,1,237,238],[308,7,6,238,244],[309,1,1,244,245],[312,1,1,245,246]]],[11,23,19,246,265,[[314,7,5,246,251],[315,9,7,251,258],[317,1,1,258,259],[318,2,2,259,261],[320,1,1,261,262],[330,1,1,262,263],[331,1,1,263,264],[332,1,1,264,265]]],[12,3,3,265,268,[[348,2,2,265,267],[351,1,1,267,268]]],[13,4,4,268,272,[[384,1,1,268,269],[398,3,3,269,272]]],[14,1,1,272,273,[[412,1,1,272,273]]],[15,10,10,273,283,[[415,1,1,273,274],[416,1,1,274,275],[420,3,3,275,278],[421,3,3,278,281],[424,1,1,281,282],[425,1,1,282,283]]],[17,25,25,283,308,[[438,1,1,283,284],[440,1,1,284,285],[443,1,1,285,286],[444,1,1,286,287],[446,1,1,287,288],[447,1,1,288,289],[449,3,3,289,292],[450,1,1,292,293],[457,2,2,293,295],[459,2,2,295,297],[461,3,3,297,300],[462,1,1,300,301],[463,1,1,301,302],[464,1,1,302,303],[469,1,1,303,304],[471,1,1,304,305],[472,1,1,305,306],[473,2,2,306,308]]],[18,53,49,308,357,[[478,1,1,308,309],[495,3,3,309,312],[499,1,1,312,313],[500,1,1,313,314],[506,2,1,314,315],[509,1,1,315,316],[510,1,1,316,317],[519,1,1,317,318],[523,1,1,318,319],[535,1,1,319,320],[540,1,1,320,321],[542,1,1,321,322],[543,1,1,322,323],[546,4,4,323,327],[550,1,1,327,328],[551,1,1,328,329],[554,4,3,329,332],[555,3,3,332,335],[556,1,1,335,336],[558,1,1,336,337],[565,1,1,337,338],[570,1,1,338,339],[581,2,2,339,341],[582,2,2,341,343],[583,2,2,343,345],[584,4,3,345,348],[586,1,1,348,349],[591,2,1,349,350],[596,1,1,350,351],[601,2,2,351,353],[613,1,1,353,354],[621,1,1,354,355],[624,1,1,355,356],[625,1,1,356,357]]],[19,14,14,357,371,[[632,2,2,357,359],[635,2,2,359,361],[636,1,1,361,362],[644,1,1,362,363],[645,1,1,363,364],[647,1,1,364,365],[648,1,1,365,366],[652,2,2,366,368],[654,1,1,368,369],[657,2,2,369,371]]],[20,2,2,371,373,[[660,1,1,371,372],[669,1,1,372,373]]],[21,3,3,373,376,[[674,1,1,373,374],[675,1,1,374,375],[678,1,1,375,376]]],[22,55,51,376,427,[[679,2,2,376,378],[681,1,1,378,379],[686,2,2,379,381],[689,1,1,381,382],[690,1,1,382,383],[692,1,1,383,384],[693,2,2,384,386],[695,2,2,386,388],[696,1,1,388,389],[697,2,2,389,391],[699,1,1,391,392],[700,2,2,392,394],[701,1,1,394,395],[706,2,2,395,397],[708,3,3,397,400],[710,2,2,400,402],[711,1,1,402,403],[713,2,2,403,405],[714,1,1,405,406],[715,1,1,406,407],[718,1,1,407,408],[719,3,2,408,410],[721,3,3,410,413],[722,3,3,413,416],[726,3,2,416,418],[727,1,1,418,419],[728,1,1,419,420],[729,1,1,420,421],[732,2,1,421,422],[733,1,1,422,423],[735,1,1,423,424],[736,2,1,424,425],[741,1,1,425,426],[742,1,1,426,427]]],[23,29,26,427,453,[[746,4,2,427,429],[750,1,1,429,430],[752,1,1,430,431],[753,3,3,431,434],[754,1,1,434,435],[757,1,1,435,436],[758,2,1,436,437],[759,1,1,437,438],[761,2,2,438,440],[762,1,1,440,441],[767,1,1,441,442],[775,1,1,442,443],[782,1,1,443,444],[785,1,1,444,445],[790,2,2,445,447],[791,1,1,447,448],[792,1,1,448,449],[794,1,1,449,450],[795,3,3,450,453]]],[24,5,5,453,458,[[797,1,1,453,454],[798,1,1,454,455],[799,2,2,455,457],[801,1,1,457,458]]],[25,48,40,458,498,[[802,1,1,458,459],[805,3,3,459,462],[808,1,1,462,463],[813,2,2,463,465],[817,2,2,465,467],[818,2,2,467,469],[820,2,1,469,470],[822,1,1,470,471],[825,1,1,471,472],[827,2,2,472,474],[828,2,2,474,476],[832,7,6,476,482],[833,3,3,482,485],[835,1,1,485,486],[837,1,1,486,487],[844,1,1,487,488],[848,15,9,488,497],[849,1,1,497,498]]],[26,3,3,498,501,[[850,1,1,498,499],[861,2,2,499,501]]],[27,3,3,501,504,[[863,1,1,501,502],[866,1,1,502,503],[871,1,1,503,504]]],[28,2,2,504,506,[[876,1,1,504,505],[878,1,1,505,506]]],[29,5,5,506,511,[[882,1,1,506,507],[883,2,2,507,509],[886,1,1,509,510],[887,1,1,510,511]]],[31,2,2,511,513,[[890,1,1,511,512],[891,1,1,512,513]]],[32,1,1,513,514,[[893,1,1,513,514]]],[33,3,3,514,517,[[901,1,1,514,515],[902,2,2,515,517]]],[34,3,3,517,520,[[904,1,1,517,518],[905,2,2,518,520]]],[37,2,2,520,522,[[919,1,1,520,521],[924,1,1,521,522]]]],[1,5,6,8,9,19,20,21,154,165,166,169,176,177,178,179,183,184,186,188,190,191,192,194,196,216,220,388,428,527,528,532,538,602,604,608,623,634,710,711,712,724,868,1107,1314,1477,1564,1610,1700,1702,1703,1704,1705,1706,1709,1716,1730,1825,1910,1911,1915,1917,1918,1928,1930,1939,1942,1943,1945,1947,1984,1985,1986,1989,2055,2169,2340,2400,2402,2458,2524,2714,2719,2737,2754,2758,2877,2923,2938,3006,3007,3009,3029,3031,3033,3035,3043,3116,3117,3119,3120,3161,3162,3163,3173,3174,3175,3176,3178,3179,3180,3181,3184,3185,3186,3189,3190,3195,3205,3225,3227,3229,3250,3375,3809,3810,3811,3814,3815,3816,3818,3819,3946,4296,4297,4298,4302,4306,4307,4308,4309,4310,4313,4316,4319,4321,4322,4324,4328,4330,4335,4345,4356,4362,4452,4453,4568,4687,4769,4774,4944,4966,5022,5061,5144,5152,5166,5175,5193,5212,5219,5256,5264,5299,5342,5504,5511,5690,5809,5818,5879,5901,5906,5908,5909,5917,5928,5933,5935,5981,6058,6060,6064,6112,6114,6209,6211,6221,6266,6308,6524,6618,6627,6642,6648,6692,6698,6699,6700,6718,6948,7358,7402,7872,7916,7917,7921,7989,7990,8152,8313,8370,8469,8470,8590,8614,8619,8668,8669,9192,9193,9200,9201,9202,9203,9206,9233,9327,9345,9346,9354,9374,9376,9379,9393,9507,9559,9565,9570,9572,9573,9585,9587,9593,9595,9596,9598,9601,9659,9679,9696,9742,10055,10085,10118,10690,10691,10785,11568,11878,11879,11905,12258,12353,12382,12494,12496,12509,12522,12526,12531,12661,12673,12928,12961,13040,13081,13124,13143,13190,13192,13200,13219,13396,13400,13454,13455,13472,13475,13477,13501,13529,13551,13690,13763,13779,13823,13827,13942,14129,14133,14134,14218,14237,14311,14361,14373,14556,14617,14786,14840,14869,14885,14936,14937,14949,14950,15030,15061,15109,15110,15112,15126,15129,15133,15188,15224,15325,15430,15574,15577,15635,15647,15662,15683,15722,15732,15734,15773,15830,16034,16106,16107,16202,16312,16369,16375,16532,16533,16626,16631,16655,16887,16905,16959,16985,17134,17138,17188,17255,17267,17339,17514,17597,17610,17647,17676,17684,17708,17813,17814,17893,17903,17951,17966,17969,17995,17996,17999,18009,18012,18049,18061,18063,18080,18166,18181,18231,18237,18242,18261,18279,18295,18326,18327,18346,18377,18432,18468,18469,18507,18521,18525,18536,18537,18545,18615,18635,18646,18664,18683,18732,18741,18785,18797,18878,18887,18978,18983,19096,19167,19176,19190,19193,19214,19267,19296,19333,19365,19370,19398,19499,19700,19901,19969,20052,20053,20075,20114,20204,20225,20228,20267,20326,20351,20402,20408,20446,20488,20540,20545,20546,20594,20698,20699,20766,20771,20830,20833,20891,20951,21059,21112,21119,21147,21155,21234,21235,21237,21244,21245,21246,21250,21261,21262,21331,21384,21574,21680,21681,21682,21683,21684,21687,21688,21691,21698,21730,21749,22087,22088,22110,22162,22232,22311,22361,22418,22431,22447,22492,22501,22553,22565,22583,22707,22720,22726,22762,22778,22783,23010,23076]]],["+",[16,16,[[0,1,1,0,1,[[8,1,1,0,1]]],[1,2,2,1,3,[[53,1,1,1,2],[56,1,1,2,3]]],[3,1,1,3,4,[[121,1,1,3,4]]],[9,1,1,4,5,[[288,1,1,4,5]]],[13,1,1,5,6,[[398,1,1,5,6]]],[17,1,1,6,7,[[461,1,1,6,7]]],[18,5,5,7,12,[[495,1,1,7,8],[546,1,1,8,9],[584,2,2,9,11],[621,1,1,11,12]]],[22,1,1,12,13,[[726,1,1,12,13]]],[25,3,3,13,16,[[820,1,1,13,14],[832,1,1,14,15],[833,1,1,15,16]]]],[216,1610,1709,3811,8619,11905,13477,14134,14950,15732,15734,16312,18615,20891,21235,21262]]],["Waters",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20408]]],["washing",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12382]]],["water",[303,284,[[0,21,18,0,18,[[15,1,1,0,1],[17,1,1,1,2],[20,5,4,2,6],[23,7,5,6,11],[25,4,4,11,15],[36,1,1,15,16],[42,1,1,16,17],[48,1,1,17,18]]],[1,25,25,18,43,[[51,1,1,18,19],[53,1,1,19,20],[56,5,5,20,25],[57,1,1,25,26],[61,1,1,26,27],[64,2,2,27,29],[66,4,4,29,33],[69,1,1,33,34],[72,1,1,34,35],[78,1,1,35,36],[79,2,2,36,38],[81,1,1,38,39],[83,1,1,39,40],[89,3,3,40,43]]],[2,37,36,43,79,[[90,2,2,43,45],[95,1,1,45,46],[97,2,2,46,48],[100,4,4,48,52],[103,7,7,52,59],[104,15,14,59,73],[105,4,4,73,77],[106,1,1,77,78],[111,1,1,78,79]]],[3,41,33,79,112,[[121,10,7,79,86],[124,1,1,86,87],[135,11,9,87,96],[136,10,9,96,105],[137,2,2,105,107],[140,1,1,107,108],[143,2,1,108,109],[147,2,1,109,110],[149,2,2,110,112]]],[4,15,14,112,126,[[154,2,2,112,114],[160,3,2,114,116],[161,2,2,116,118],[163,2,2,118,120],[164,2,2,120,122],[167,1,1,122,123],[175,2,2,123,125],[181,1,1,125,126]]],[5,10,10,126,136,[[188,1,1,126,127],[189,2,2,127,129],[193,1,1,129,130],[195,3,3,130,133],[201,2,2,133,135],[202,1,1,135,136]]],[6,10,9,136,145,[[211,1,1,136,137],[214,1,1,137,138],[215,2,2,138,140],[216,1,1,140,141],[217,4,3,141,144],[225,1,1,144,145]]],[8,8,8,145,153,[[242,1,1,145,146],[244,1,1,146,147],[260,1,1,147,148],[261,3,3,148,151],[265,2,2,151,153]]],[9,6,6,153,159,[[280,1,1,153,154],[283,2,2,154,156],[287,1,1,156,157],[289,2,2,157,159]]],[10,19,17,159,176,[[303,8,7,159,166],[304,1,1,166,167],[307,1,1,167,168],[308,7,6,168,174],[309,1,1,174,175],[312,1,1,175,176]]],[11,14,12,176,188,[[314,1,1,176,177],[315,9,7,177,184],[318,2,2,184,186],[320,1,1,186,187],[332,1,1,187,188]]],[12,2,2,188,190,[[348,2,2,188,190]]],[13,2,2,190,192,[[384,1,1,190,191],[398,1,1,191,192]]],[14,1,1,192,193,[[412,1,1,192,193]]],[15,8,8,193,201,[[415,1,1,193,194],[420,3,3,194,197],[421,2,2,197,199],[424,1,1,199,200],[425,1,1,200,201]]],[17,7,7,201,208,[[443,1,1,201,202],[444,1,1,202,203],[449,1,1,203,204],[450,1,1,204,205],[457,1,1,205,206],[469,1,1,206,207],[471,1,1,207,208]]],[18,12,12,208,220,[[478,1,1,208,209],[499,1,1,209,210],[519,1,1,210,211],[540,1,1,211,212],[542,1,1,212,213],[543,1,1,213,214],[554,1,1,214,215],[556,1,1,215,216],[565,1,1,216,217],[584,1,1,217,218],[586,1,1,218,219],[591,1,1,219,220]]],[19,7,7,220,227,[[635,1,1,220,221],[644,1,1,221,222],[647,1,1,222,223],[648,1,1,223,224],[652,1,1,224,225],[654,1,1,225,226],[657,1,1,226,227]]],[20,1,1,227,228,[[660,1,1,227,228]]],[22,22,21,228,249,[[679,2,2,228,230],[681,1,1,230,231],[690,1,1,231,232],[692,1,1,232,233],[699,1,1,233,234],[700,1,1,234,235],[708,2,2,235,237],[710,1,1,237,238],[713,1,1,238,239],[715,1,1,239,240],[719,3,2,240,242],[722,3,3,242,245],[727,1,1,245,246],[728,1,1,246,247],[736,1,1,247,248],[741,1,1,248,249]]],[23,7,7,249,256,[[746,1,1,249,250],[752,1,1,250,251],[753,1,1,251,252],[757,1,1,252,253],[758,1,1,253,254],[767,1,1,254,255],[782,1,1,255,256]]],[24,4,4,256,260,[[797,1,1,256,257],[798,1,1,257,258],[799,1,1,258,259],[801,1,1,259,260]]],[25,14,14,260,274,[[805,3,3,260,263],[808,1,1,263,264],[813,2,2,264,266],[817,2,2,266,268],[822,1,1,268,269],[825,1,1,269,270],[827,1,1,270,271],[832,2,2,271,273],[837,1,1,273,274]]],[26,1,1,274,275,[[850,1,1,274,275]]],[27,3,3,275,278,[[863,1,1,275,276],[866,1,1,276,277],[871,1,1,277,278]]],[29,2,2,278,280,[[882,1,1,278,279],[886,1,1,279,280]]],[31,1,1,280,281,[[891,1,1,280,281]]],[33,1,1,281,282,[[901,1,1,281,282]]],[34,1,1,282,283,[[905,1,1,282,283]]],[37,1,1,283,284,[[919,1,1,283,284]]]],[388,428,527,528,532,538,602,604,608,623,634,710,711,712,724,1107,1314,1477,1564,1610,1700,1703,1704,1706,1709,1730,1825,1942,1947,1984,1985,1986,1989,2055,2169,2340,2400,2402,2458,2524,2714,2719,2737,2754,2758,2877,2923,2938,3029,3031,3033,3035,3116,3117,3119,3120,3161,3162,3163,3173,3174,3175,3176,3178,3179,3180,3181,3184,3185,3186,3189,3190,3195,3205,3225,3227,3229,3250,3375,3809,3810,3814,3815,3816,3818,3819,3946,4296,4297,4298,4302,4306,4307,4308,4309,4310,4313,4316,4319,4321,4322,4324,4328,4330,4335,4345,4356,4453,4568,4687,4769,4774,4944,4966,5144,5152,5166,5175,5212,5219,5256,5264,5342,5504,5511,5690,5879,5901,5908,5981,6058,6060,6064,6211,6221,6266,6524,6618,6627,6648,6692,6698,6699,6700,6948,7358,7402,7872,7916,7917,7921,7989,7990,8370,8469,8470,8590,8668,8669,9192,9193,9200,9201,9202,9203,9206,9233,9327,9345,9346,9354,9374,9376,9379,9393,9507,9570,9585,9587,9593,9595,9596,9598,9601,9679,9696,9742,10118,10690,10691,11568,11879,12258,12353,12494,12496,12509,12526,12531,12661,12673,13040,13081,13190,13219,13396,13690,13763,13942,14218,14556,14840,14869,14885,15110,15188,15325,15734,15773,15830,16626,16887,16959,16985,17134,17188,17267,17339,17676,17684,17708,17903,17951,18049,18063,18231,18237,18261,18327,18377,18468,18469,18536,18537,18545,18646,18664,18797,18878,18978,19167,19190,19267,19296,19499,19901,20326,20351,20402,20446,20540,20545,20546,20594,20698,20699,20766,20771,20951,21059,21112,21244,21246,21384,21749,22110,22162,22232,22418,22492,22565,22707,22778,23010]]],["watering",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[868]]],["waters",[257,231,[[0,31,26,0,26,[[0,11,8,0,8],[5,1,1,8,9],[6,9,8,9,17],[7,9,8,17,25],[8,1,1,25,26]]],[1,17,15,26,41,[[56,4,3,26,29],[57,1,1,29,30],[63,5,5,30,35],[64,7,6,35,41]]],[2,6,4,41,45,[[100,6,4,41,45]]],[3,3,3,45,48,[[137,1,1,45,46],[140,2,2,46,48]]],[4,6,6,48,54,[[156,1,1,48,49],[157,1,1,49,50],[162,1,1,50,51],[166,1,1,51,52],[184,1,1,52,53],[185,1,1,53,54]]],[5,13,10,54,64,[[189,4,2,54,56],[190,4,3,56,59],[191,1,1,59,60],[197,2,2,60,62],[201,1,1,62,63],[204,1,1,63,64]]],[6,3,2,64,66,[[215,1,1,64,65],[217,2,1,65,66]]],[9,3,3,66,69,[[271,1,1,66,67],[278,1,1,67,68],[288,1,1,68,69]]],[11,9,7,69,76,[[314,6,4,69,73],[317,1,1,73,74],[330,1,1,74,75],[331,1,1,75,76]]],[12,1,1,76,77,[[351,1,1,76,77]]],[13,1,1,77,78,[[398,1,1,77,78]]],[15,1,1,78,79,[[421,1,1,78,79]]],[17,17,17,79,96,[[438,1,1,79,80],[440,1,1,80,81],[446,1,1,81,82],[447,1,1,82,83],[449,2,2,83,85],[457,1,1,85,86],[459,2,2,86,88],[461,2,2,88,90],[462,1,1,90,91],[463,1,1,91,92],[464,1,1,92,93],[472,1,1,93,94],[473,2,2,94,96]]],[18,36,34,96,130,[[495,2,2,96,98],[500,1,1,98,99],[506,2,1,99,100],[509,1,1,100,101],[510,1,1,101,102],[523,1,1,102,103],[535,1,1,103,104],[546,3,3,104,107],[550,1,1,107,108],[551,1,1,108,109],[554,3,2,109,111],[555,3,3,111,114],[558,1,1,114,115],[570,1,1,115,116],[581,2,2,116,118],[582,2,2,118,120],[583,2,2,120,122],[584,1,1,122,123],[591,1,1,123,124],[596,1,1,124,125],[601,2,2,125,127],[613,1,1,127,128],[624,1,1,128,129],[625,1,1,129,130]]],[19,7,7,130,137,[[632,2,2,130,132],[635,1,1,132,133],[636,1,1,133,134],[645,1,1,134,135],[652,1,1,135,136],[657,1,1,136,137]]],[20,1,1,137,138,[[669,1,1,137,138]]],[21,3,3,138,141,[[674,1,1,138,139],[675,1,1,139,140],[678,1,1,140,141]]],[22,32,30,141,171,[[686,2,2,141,143],[689,1,1,143,144],[693,2,2,144,146],[695,2,2,146,148],[696,1,1,148,149],[697,2,2,149,151],[700,1,1,151,152],[701,1,1,152,153],[706,2,2,153,155],[708,1,1,155,156],[710,1,1,156,157],[711,1,1,157,158],[713,1,1,158,159],[714,1,1,159,160],[718,1,1,160,161],[721,3,3,161,164],[726,2,1,164,165],[729,1,1,165,166],[732,2,1,166,167],[733,1,1,167,168],[735,1,1,168,169],[736,1,1,169,170],[742,1,1,170,171]]],[23,22,21,171,192,[[746,3,2,171,173],[750,1,1,173,174],[753,2,2,174,176],[754,1,1,176,177],[758,1,1,177,178],[759,1,1,178,179],[761,2,2,179,181],[762,1,1,181,182],[775,1,1,182,183],[785,1,1,183,184],[790,2,2,184,186],[791,1,1,186,187],[792,1,1,187,188],[794,1,1,188,189],[795,3,3,189,192]]],[25,31,25,192,217,[[802,1,1,192,193],[818,2,2,193,195],[820,1,1,195,196],[827,1,1,196,197],[828,2,2,197,199],[832,4,4,199,203],[833,2,2,203,205],[835,1,1,205,206],[844,1,1,206,207],[848,15,9,207,216],[849,1,1,216,217]]],[26,2,2,217,219,[[861,2,2,217,219]]],[28,2,2,219,221,[[876,1,1,219,220],[878,1,1,220,221]]],[29,3,3,221,224,[[883,2,2,221,223],[887,1,1,223,224]]],[31,1,1,224,225,[[890,1,1,224,225]]],[32,1,1,225,226,[[893,1,1,225,226]]],[33,2,2,226,228,[[902,2,2,226,228]]],[34,2,2,228,230,[[904,1,1,228,229],[905,1,1,229,230]]],[37,1,1,230,231,[[924,1,1,230,231]]]],[1,5,6,8,9,19,20,21,154,165,166,169,176,177,178,179,183,184,186,188,190,191,192,194,196,220,1702,1704,1705,1716,1910,1911,1915,1917,1918,1928,1930,1939,1943,1945,1947,3006,3007,3009,3043,4362,4452,4453,5022,5061,5193,5299,5809,5818,5906,5909,5917,5928,5933,5935,6112,6114,6209,6308,6642,6718,8152,8313,8614,9559,9565,9572,9573,9659,10055,10085,10785,11878,12522,12928,12961,13124,13143,13192,13200,13400,13454,13455,13472,13475,13501,13529,13551,13779,13823,13827,14129,14133,14237,14311,14361,14373,14617,14786,14936,14937,14949,15030,15061,15109,15112,15126,15129,15133,15224,15430,15574,15577,15635,15647,15662,15683,15722,15830,16034,16106,16107,16202,16369,16375,16532,16533,16631,16655,16905,17138,17255,17514,17597,17610,17647,17813,17814,17893,17966,17969,17995,17996,17999,18009,18012,18061,18080,18166,18181,18242,18279,18295,18326,18346,18432,18507,18521,18525,18635,18683,18732,18741,18785,18797,18887,18978,18983,19096,19176,19193,19214,19296,19333,19365,19370,19398,19700,19969,20052,20053,20075,20114,20204,20225,20228,20267,20488,20830,20833,20891,21119,21147,21155,21234,21237,21244,21245,21250,21261,21331,21574,21680,21681,21682,21683,21684,21687,21688,21691,21698,21730,22087,22088,22311,22361,22431,22447,22501,22553,22583,22720,22726,22762,22783,23076]]]]},{"k":"H4326","v":[["*",[4,4,[[12,1,1,0,1,[[361,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]],[15,2,2,2,4,[[422,1,1,2,3],[424,1,1,3,4]]]],[11024,12277,12556,12629]]],["Miamin",[2,2,[[14,1,1,0,1,[[412,1,1,0,1]]],[15,1,1,1,2,[[424,1,1,1,2]]]],[12277,12629]]],["Mijamin",[2,2,[[12,1,1,0,1,[[361,1,1,0,1]]],[15,1,1,1,2,[[422,1,1,1,2]]]],[11024,12556]]]]},{"k":"H4327","v":[["*",[31,18,[[0,17,7,0,7,[[0,10,5,0,5],[5,3,1,5,6],[6,4,1,6,7]]],[2,9,6,7,13,[[100,9,6,7,13]]],[4,4,4,13,17,[[166,4,4,13,17]]],[25,1,1,17,18,[[848,1,1,17,18]]]],[10,11,20,23,24,157,173,3011,3012,3013,3016,3019,3026,5303,5304,5305,5308,21689]]],["kind",[30,17,[[0,17,7,0,7,[[0,10,5,0,5],[5,3,1,5,6],[6,4,1,6,7]]],[2,9,6,7,13,[[100,9,6,7,13]]],[4,4,4,13,17,[[166,4,4,13,17]]]],[10,11,20,23,24,157,173,3011,3012,3013,3016,3019,3026,5303,5304,5305,5308]]],["kinds",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21689]]]]},{"k":"H4328","v":[["foundations",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21534]]]]},{"k":"H4329","v":[["covert",[1,1,[[11,1,1,0,1,[[328,1,1,0,1]]]],[9981]]]]},{"k":"H4330","v":[["*",[3,1,[[19,3,1,0,1,[[657,3,1,0,1]]]],[17284]]],["churning",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17284]]],["forcing",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17284]]],["wringing",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17284]]]]},{"k":"H4331","v":[["Mesha",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10584]]]]},{"k":"H4332","v":[["Mishael",[7,7,[[1,1,1,0,1,[[55,1,1,0,1]]],[2,1,1,1,2,[[99,1,1,1,2]]],[15,1,1,2,3,[[420,1,1,2,3]]],[26,4,4,3,7,[[850,4,4,3,7]]]],[1677,2981,12497,21743,21744,21748,21756]]]]},{"k":"H4333","v":[["Mishael",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21775]]]]},{"k":"H4334","v":[["*",[23,23,[[4,2,2,0,2,[[155,1,1,0,1],[156,1,1,1,2]]],[5,5,5,2,7,[[199,4,4,2,6],[206,1,1,6,7]]],[10,2,2,7,9,[[310,2,2,7,9]]],[13,1,1,9,10,[[392,1,1,9,10]]],[18,5,5,10,15,[[503,1,1,10,11],[504,1,1,11,12],[522,1,1,12,13],[544,1,1,13,14],[620,1,1,14,15]]],[22,3,3,15,18,[[689,1,1,15,16],[718,1,1,16,17],[720,1,1,17,18]]],[23,3,3,18,21,[[765,1,1,18,19],[792,2,2,19,21]]],[37,1,1,21,22,[[914,1,1,21,22]]],[38,1,1,22,23,[[926,1,1,22,23]]]],[4985,5047,6163,6170,6171,6175,6380,9431,9433,11742,14285,14296,14603,14897,16303,17888,18424,18496,19453,20088,20101,22929,23109]]],["equity",[2,2,[[22,1,1,0,1,[[689,1,1,0,1]]],[38,1,1,1,2,[[926,1,1,1,2]]]],[17888,23109]]],["place",[1,1,[[18,1,1,0,1,[[503,1,1,0,1]]]],[14285]]],["plain",[14,14,[[4,2,2,0,2,[[155,1,1,0,1],[156,1,1,1,2]]],[5,5,5,2,7,[[199,4,4,2,6],[206,1,1,6,7]]],[10,2,2,7,9,[[310,2,2,7,9]]],[18,1,1,9,10,[[504,1,1,9,10]]],[23,3,3,10,13,[[765,1,1,10,11],[792,2,2,11,13]]],[37,1,1,13,14,[[914,1,1,13,14]]]],[4985,5047,6163,6170,6171,6175,6380,9431,9433,14296,19453,20088,20101,22929]]],["plains",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11742]]],["right",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14603]]],["righteously",[1,1,[[18,1,1,0,1,[[544,1,1,0,1]]]],[14897]]],["straight",[2,2,[[22,2,2,0,2,[[718,1,1,0,1],[720,1,1,1,2]]]],[18424,18496]]],["uprightness",[1,1,[[18,1,1,0,1,[[620,1,1,0,1]]]],[16303]]]]},{"k":"H4335","v":[["Meshach",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21744]]]]},{"k":"H4336","v":[["Meshach",[14,13,[[26,14,13,0,13,[[851,1,1,0,1],[852,13,12,1,13]]]],[21807,21819,21820,21821,21823,21826,21827,21829,21830,21833,21835,21836,21837]]]]},{"k":"H4337","v":[["Mesha",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10348]]]]},{"k":"H4338","v":[["Mesha",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9580]]]]},{"k":"H4339","v":[["*",[19,19,[[12,1,1,0,1,[[366,1,1,0,1]]],[18,7,7,1,8,[[486,1,1,1,2],[494,1,1,2,3],[535,1,1,3,4],[552,1,1,4,5],[573,1,1,5,6],[575,1,1,6,7],[576,1,1,7,8]]],[19,5,5,8,13,[[628,1,1,8,9],[629,1,1,9,10],[635,1,1,10,11],[650,2,2,11,13]]],[21,2,2,13,15,[[671,1,1,13,14],[677,1,1,14,15]]],[22,3,3,15,18,[[704,1,1,15,16],[711,1,1,16,17],[723,1,1,17,18]]],[26,1,1,18,19,[[860,1,1,18,19]]]],[11181,14029,14105,14780,15073,15475,15499,15503,16403,16442,16608,17060,17075,17541,17636,18137,18294,18580,22042]]],["agreement",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22042]]],["aright",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17075]]],["equal",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14105]]],["equity",[4,4,[[18,2,2,0,2,[[575,1,1,0,1],[576,1,1,1,2]]],[19,2,2,2,4,[[628,1,1,2,3],[629,1,1,3,4]]]],[15499,15503,16403,16442]]],["right",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18580]]],["righteously",[1,1,[[18,1,1,0,1,[[573,1,1,0,1]]]],[15475]]],["sweetly",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17636]]],["things",[2,2,[[19,2,2,0,2,[[635,1,1,0,1],[650,1,1,1,2]]]],[16608,17060]]],["upright",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17541]]],["uprightly",[3,3,[[18,2,2,0,2,[[535,1,1,0,1],[552,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]]],[14780,15073,18294]]],["uprightness",[3,3,[[12,1,1,0,1,[[366,1,1,0,1]]],[18,1,1,1,2,[[486,1,1,1,2]]],[22,1,1,2,3,[[704,1,1,2,3]]]],[11181,14029,18137]]]]},{"k":"H4340","v":[["*",[9,9,[[1,2,2,0,2,[[84,1,1,0,1],[88,1,1,1,2]]],[3,4,4,2,6,[[119,2,2,2,4],[120,2,2,4,6]]],[18,1,1,6,7,[[498,1,1,6,7]]],[22,1,1,7,8,[[732,1,1,7,8]]],[23,1,1,8,9,[[754,1,1,8,9]]]],[2549,2704,3718,3729,3769,3775,14203,18725,19221]]],["cords",[8,8,[[1,2,2,0,2,[[84,1,1,0,1],[88,1,1,1,2]]],[3,4,4,2,6,[[119,2,2,2,4],[120,2,2,4,6]]],[22,1,1,6,7,[[732,1,1,6,7]]],[23,1,1,7,8,[[754,1,1,7,8]]]],[2549,2704,3718,3729,3769,3775,18725,19221]]],["strings",[1,1,[[18,1,1,0,1,[[498,1,1,0,1]]]],[14203]]]]},{"k":"H4341","v":[["*",[16,15,[[1,1,1,0,1,[[52,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[17,1,1,2,3,[[468,1,1,2,3]]],[18,3,3,3,6,[[509,1,1,3,4],[515,1,1,4,5],[546,1,1,5,6]]],[20,2,2,6,8,[[659,1,1,6,7],[660,1,1,7,8]]],[22,2,2,8,10,[[731,2,2,8,10]]],[23,3,3,10,13,[[774,1,1,10,11],[789,1,1,11,12],[795,1,1,12,13]]],[24,3,2,13,15,[[797,3,2,13,15]]]],[1586,11311,13669,14365,14507,14961,17333,17356,18714,18715,19682,20043,20220,20322,20328]]],["grief",[2,2,[[13,1,1,0,1,[[372,1,1,0,1]]],[18,1,1,1,2,[[546,1,1,1,2]]]],[11311,14961]]],["pain",[2,2,[[17,1,1,0,1,[[468,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[13669,20220]]],["sorrow",[7,6,[[18,1,1,0,1,[[515,1,1,0,1]]],[20,1,1,1,2,[[659,1,1,1,2]]],[23,2,2,2,4,[[774,1,1,2,3],[789,1,1,3,4]]],[24,3,2,4,6,[[797,3,2,4,6]]]],[14507,17333,19682,20043,20322,20328]]],["sorrows",[5,5,[[1,1,1,0,1,[[52,1,1,0,1]]],[18,1,1,1,2,[[509,1,1,1,2]]],[20,1,1,2,3,[[660,1,1,2,3]]],[22,2,2,3,5,[[731,2,2,3,5]]]],[1586,14365,17356,18714,18715]]]]},{"k":"H4342","v":[["abundance",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13767]]]]},{"k":"H4343","v":[["Machbenah",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10355]]]]},{"k":"H4344","v":[["Machbanai",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10733]]]]},{"k":"H4345","v":[["*",[6,6,[[1,6,6,0,6,[[76,1,1,0,1],[84,1,1,1,2],[87,3,3,2,5],[88,1,1,5,6]]]],[2276,2547,2637,2638,2663,2703]]],["+",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2547]]],["grate",[5,5,[[1,5,5,0,5,[[76,1,1,0,1],[87,3,3,1,4],[88,1,1,4,5]]]],[2276,2637,2638,2663,2703]]]]},{"k":"H4346","v":[["cloth",[1,1,[[11,1,1,0,1,[[320,1,1,0,1]]]],[9742]]]]},{"k":"H4347","v":[["*",[48,46,[[2,1,1,0,1,[[115,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[4,6,4,2,6,[[177,1,1,2,3],[180,4,2,3,5],[181,1,1,5,6]]],[5,2,2,6,8,[[196,2,2,6,8]]],[6,2,2,8,10,[[221,1,1,8,9],[225,1,1,9,10]]],[8,7,7,10,17,[[239,2,2,10,12],[241,1,1,12,13],[249,2,2,13,15],[254,1,1,15,16],[258,1,1,16,17]]],[10,2,2,17,19,[[310,1,1,17,18],[312,1,1,18,19]]],[11,2,2,19,21,[[320,1,1,19,20],[321,1,1,20,21]]],[13,4,4,21,25,[[368,1,1,21,22],[379,1,1,22,23],[388,1,1,23,24],[394,1,1,24,25]]],[16,1,1,25,26,[[434,1,1,25,26]]],[18,1,1,26,27,[[541,1,1,26,27]]],[19,1,1,27,28,[[647,1,1,27,28]]],[22,5,5,28,33,[[679,1,1,28,29],[688,1,1,29,30],[692,1,1,30,31],[705,1,1,31,32],[708,1,1,32,33]]],[23,10,10,33,43,[[750,1,1,33,34],[754,1,1,34,35],[758,1,1,35,36],[759,1,1,36,37],[763,1,1,37,38],[774,3,3,38,41],[793,1,1,41,42],[794,1,1,42,43]]],[32,1,1,43,44,[[893,1,1,43,44]]],[33,1,1,44,45,[[902,1,1,44,45]]],[37,1,1,45,46,[[923,1,1,45,46]]]],[3545,4057,5550,5670,5672,5701,6074,6084,6862,6937,7305,7307,7350,7522,7538,7714,7815,9429,9515,9756,9771,11221,11470,11650,11769,12839,14857,16984,17660,17876,17934,18158,18243,19096,19220,19310,19333,19415,19679,19681,19684,20144,20179,22588,22731,23065]]],["+",[2,2,[[22,1,1,0,1,[[692,1,1,0,1]]],[23,1,1,1,2,[[774,1,1,1,2]]]],[17934,19684]]],["beaten",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11221]]],["blow",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19310]]],["plague",[2,2,[[3,1,1,0,1,[[127,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]]],[4057,5672]]],["plagues",[9,7,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,4,2,1,3,[[180,3,1,1,2],[181,1,1,2,3]]],[8,1,1,3,4,[[239,1,1,3,4]]],[23,3,3,4,7,[[763,1,1,4,5],[793,1,1,5,6],[794,1,1,6,7]]]],[3545,5670,5701,7305,19415,20144,20179]]],["slaughter",[14,14,[[5,2,2,0,2,[[196,2,2,0,2]]],[6,2,2,2,4,[[221,1,1,2,3],[225,1,1,3,4]]],[8,6,6,4,10,[[239,1,1,4,5],[241,1,1,5,6],[249,2,2,6,8],[254,1,1,8,9],[258,1,1,9,10]]],[10,1,1,10,11,[[310,1,1,10,11]]],[13,2,2,11,13,[[379,1,1,11,12],[394,1,1,12,13]]],[22,1,1,13,14,[[688,1,1,13,14]]]],[6074,6084,6862,6937,7307,7350,7522,7538,7714,7815,9429,11470,11769,17876]]],["smote",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18158]]],["sores",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17660]]],["stripes",[2,2,[[4,1,1,0,1,[[177,1,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]]],[5550,16984]]],["stroke",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12839]]],["wound",[8,8,[[10,1,1,0,1,[[312,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]],[23,4,4,2,6,[[754,1,1,2,3],[759,1,1,3,4],[774,2,2,4,6]]],[32,1,1,6,7,[[893,1,1,6,7]]],[33,1,1,7,8,[[902,1,1,7,8]]]],[9515,18243,19220,19333,19679,19681,22588,22731]]],["wounded",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14857]]],["wounds",[5,5,[[11,2,2,0,2,[[320,1,1,0,1],[321,1,1,1,2]]],[13,1,1,2,3,[[388,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]],[37,1,1,4,5,[[923,1,1,4,5]]]],[9756,9771,11650,19096,23065]]]]},{"k":"H4348","v":[["*",[5,3,[[2,5,3,0,3,[[102,5,3,0,3]]]],[3076,3077,3080]]],["burneth",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3076]]],["burning",[4,3,[[2,4,3,0,3,[[102,4,3,0,3]]]],[3076,3077,3080]]]]},{"k":"H4349","v":[["*",[17,17,[[1,1,1,0,1,[[64,1,1,0,1]]],[10,4,4,1,5,[[298,4,4,1,5]]],[13,4,4,5,9,[[372,4,4,5,9]]],[14,1,1,9,10,[[404,1,1,9,10]]],[18,4,4,10,14,[[510,1,1,10,11],[566,1,1,11,12],[574,1,1,12,13],[581,1,1,13,14]]],[22,2,2,14,16,[[682,1,1,14,15],[696,1,1,15,16]]],[26,1,1,16,17,[[857,1,1,16,17]]]],[1937,8998,9024,9028,9034,11284,11312,11315,11321,12095,14380,15340,15480,15576,17738,18001,21972]]],["+",[3,3,[[13,2,2,0,2,[[372,2,2,0,2]]],[18,1,1,2,3,[[510,1,1,2,3]]]],[11315,11321,14380]]],["foundations",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15576]]],["habitation",[2,2,[[18,2,2,0,2,[[566,1,1,0,1],[574,1,1,1,2]]]],[15340,15480]]],["place",[11,11,[[1,1,1,0,1,[[64,1,1,0,1]]],[10,4,4,1,5,[[298,4,4,1,5]]],[13,2,2,5,7,[[372,2,2,5,7]]],[14,1,1,7,8,[[404,1,1,7,8]]],[22,2,2,8,10,[[682,1,1,8,9],[696,1,1,9,10]]],[26,1,1,10,11,[[857,1,1,10,11]]]],[1937,8998,9024,9028,9034,11284,11312,12095,17738,18001,21972]]]]},{"k":"H4350","v":[["*",[23,18,[[10,14,10,0,10,[[297,14,10,0,10]]],[11,3,3,10,13,[[328,1,1,10,11],[337,2,2,11,13]]],[13,2,1,13,14,[[370,2,1,13,14]]],[14,1,1,14,15,[[405,1,1,14,15]]],[23,3,3,15,18,[[771,1,1,15,16],[796,2,2,16,18]]]],[8961,8962,8964,8966,8968,8969,8971,8972,8973,8977,9980,10235,10238,11260,12100,19615,20293,20296]]],["base",[7,5,[[10,7,5,0,5,[[297,7,5,0,5]]]],[8961,8964,8966,8968,8969]]],["bases",[16,14,[[10,7,6,0,6,[[297,7,6,0,6]]],[11,3,3,6,9,[[328,1,1,6,7],[337,2,2,7,9]]],[13,2,1,9,10,[[370,2,1,9,10]]],[14,1,1,10,11,[[405,1,1,10,11]]],[23,3,3,11,14,[[771,1,1,11,12],[796,2,2,12,14]]]],[8961,8962,8971,8972,8973,8977,9980,10235,10238,11260,12100,19615,20293,20296]]]]},{"k":"H4351","v":[["*",[3,3,[[25,3,3,0,3,[[817,1,1,0,1],[822,1,1,1,2],[830,1,1,2,3]]]],[20765,20974,21197]]],["birth",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20765]]],["habitation",[1,1,[[25,1,1,0,1,[[830,1,1,0,1]]]],[21197]]],["nativity",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20974]]]]},{"k":"H4352","v":[["Machi",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4090]]]]},{"k":"H4353","v":[["Machir",[22,20,[[0,1,1,0,1,[[49,1,1,0,1]]],[3,6,5,1,6,[[142,2,1,1,2],[143,1,1,2,3],[148,2,2,3,5],[152,1,1,5,6]]],[4,1,1,6,7,[[155,1,1,6,7]]],[5,4,3,7,10,[[199,2,1,7,8],[203,2,2,8,10]]],[6,1,1,10,11,[[215,1,1,10,11]]],[9,3,3,11,14,[[275,2,2,11,13],[283,1,1,13,14]]],[12,6,6,14,20,[[339,2,2,14,16],[344,4,4,16,20]]]],[1529,4518,4555,4757,4758,4880,4990,6185,6276,6278,6637,8231,8232,8476,10327,10329,10549,10550,10551,10552]]]]},{"k":"H4354","v":[["Machirites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4518]]]]},{"k":"H4355","v":[["*",[3,3,[[17,1,1,0,1,[[459,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]],[20,1,1,2,3,[[668,1,1,2,3]]]],[13460,15694,17511]]],["decayeth",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17511]]],["low",[2,2,[[17,1,1,0,1,[[459,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]]],[13460,15694]]]]},{"k":"H4356","v":[["+",[3,3,[[18,2,2,0,2,[[527,1,1,0,1],[555,1,1,1,2]]],[34,1,1,2,3,[[905,1,1,2,3]]]],[14677,15183,22785]]]]},{"k":"H4357","v":[["perfect",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11267]]]]},{"k":"H4358","v":[["*",[2,2,[[25,2,2,0,2,[[824,1,1,0,1],[839,1,1,1,2]]]],[21019,21429]]],["gorgeously",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21019]]],["sorts",[1,1,[[25,1,1,0,1,[[839,1,1,0,1]]]],[21429]]]]},{"k":"H4359","v":[["perfection",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14670]]]]},{"k":"H4360","v":[["sorts",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21145]]]]},{"k":"H4361","v":[["food",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8889]]]]},{"k":"H4362","v":[["treasures",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22079]]]]},{"k":"H4363","v":[["*",[11,11,[[8,7,7,0,7,[[248,5,5,0,5],[249,2,2,5,7]]],[14,1,1,7,8,[[404,1,1,7,8]]],[15,2,2,8,10,[[419,1,1,8,9],[423,1,1,9,10]]],[22,1,1,10,11,[[688,1,1,10,11]]]],[7487,7490,7496,7501,7508,7513,7539,12054,12451,12619,17878]]],["+",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7539]]],["Michmas",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12054,12451]]],["Michmash",[8,8,[[8,6,6,0,6,[[248,5,5,0,5],[249,1,1,5,6]]],[15,1,1,6,7,[[423,1,1,6,7]]],[22,1,1,7,8,[[688,1,1,7,8]]]],[7487,7490,7496,7501,7508,7513,12619,17878]]]]},{"k":"H4364","v":[["*",[2,2,[[18,1,1,0,1,[[618,1,1,0,1]]],[22,1,1,1,2,[[729,1,1,1,2]]]],[16286,18693]]],["net",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18693]]],["nets",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16286]]]]},{"k":"H4365","v":[["*",[3,3,[[22,1,1,0,1,[[697,1,1,0,1]]],[34,2,2,1,3,[[903,2,2,1,3]]]],[18012,22746,22747]]],["drag",[2,2,[[34,2,2,0,2,[[903,2,2,0,2]]]],[22746,22747]]],["nets",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18012]]]]},{"k":"H4366","v":[["Michmethah",[2,2,[[5,2,2,0,2,[[202,1,1,0,1],[203,1,1,1,2]]]],[6271,6282]]]]},{"k":"H4367","v":[["Machnadebai",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12292]]]]},{"k":"H4368","v":[["Mekonah",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12616]]]]},{"k":"H4369","v":[["base",[1,1,[[37,1,1,0,1,[[915,1,1,0,1]]]],[22947]]]]},{"k":"H4370","v":[["breeches",[5,5,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[2,2,2,2,4,[[95,1,1,2,3],[105,1,1,3,4]]],[25,1,1,4,5,[[845,1,1,4,5]]]],[2335,2692,2859,3205,21617]]]]},{"k":"H4371","v":[["tribute",[6,6,[[3,6,6,0,6,[[147,6,6,0,6]]]],[4692,4701,4702,4703,4704,4705]]]]},{"k":"H4372","v":[["*",[16,12,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,8,5,1,6,[[75,2,1,1,2],[84,1,1,2,3],[85,2,1,3,4],[88,2,1,4,5],[89,1,1,5,6]]],[3,7,6,6,12,[[119,1,1,6,7],[120,6,5,7,12]]]],[196,2249,2542,2585,2698,2726,3717,3751,3753,3754,3755,3768]]],["+",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2542]]],["covering",[15,11,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,7,4,1,5,[[75,2,1,1,2],[85,2,1,2,3],[88,2,1,3,4],[89,1,1,4,5]]],[3,7,6,5,11,[[119,1,1,5,6],[120,6,5,6,11]]]],[196,2249,2585,2698,2726,3717,3751,3753,3754,3755,3768]]]]},{"k":"H4373","v":[["*",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]]],[1820,3593]]],["number",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1820]]],["worth",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3593]]]]},{"k":"H4374","v":[["*",[4,4,[[2,1,1,0,1,[[98,1,1,0,1]]],[22,2,2,1,3,[[692,1,1,1,2],[701,1,1,2,3]]],[25,1,1,3,4,[[828,1,1,3,4]]]],[2972,17939,18095,21128]]],["clothing",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18095]]],["cover",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17939]]],["covered",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21128]]],["covereth",[1,1,[[2,1,1,0,1,[[98,1,1,0,1]]]],[2972]]]]},{"k":"H4375","v":[["Machpelah",[6,6,[[0,6,6,0,6,[[22,3,3,0,3],[24,1,1,3,4],[48,1,1,4,5],[49,1,1,5,6]]]],[580,588,590,667,1503,1519]]]]},{"k":"H4376","v":[["*",[80,74,[[0,10,10,0,10,[[24,2,2,0,2],[30,1,1,2,3],[36,3,3,3,6],[44,2,2,6,8],[46,2,2,8,10]]],[1,6,6,10,16,[[70,4,4,10,14],[71,2,2,14,16]]],[2,16,16,16,32,[[114,13,13,16,29],[116,3,3,29,32]]],[4,7,6,32,38,[[166,1,1,32,33],[167,1,1,33,34],[173,2,1,34,35],[176,1,1,35,36],[180,1,1,36,37],[184,1,1,37,38]]],[6,5,5,38,43,[[212,1,1,38,39],[213,1,1,39,40],[214,2,2,40,42],[220,1,1,42,43]]],[7,1,1,43,44,[[235,1,1,43,44]]],[8,1,1,44,45,[[247,1,1,44,45]]],[10,2,2,45,47,[[311,2,2,45,47]]],[11,2,2,47,49,[[316,1,1,47,48],[329,1,1,48,49]]],[15,7,5,49,54,[[417,3,1,49,50],[422,1,1,50,51],[425,3,3,51,54]]],[16,2,1,54,55,[[432,2,1,54,55]]],[18,2,2,55,57,[[521,1,1,55,56],[582,1,1,56,57]]],[19,2,2,57,59,[[650,1,1,57,58],[658,1,1,58,59]]],[22,4,3,59,62,[[702,1,1,59,60],[728,2,1,60,61],[730,1,1,61,62]]],[23,1,1,62,63,[[778,1,1,62,63]]],[25,4,4,63,67,[[808,2,2,63,65],[831,1,1,65,66],[849,1,1,66,67]]],[28,5,4,67,71,[[878,5,4,67,71]]],[29,1,1,71,72,[[880,1,1,71,72]]],[33,1,1,72,73,[[902,1,1,72,73]]],[37,1,1,73,74,[[921,1,1,73,74]]]],[689,691,888,1110,1111,1119,1362,1363,1440,1442,2084,2085,2093,2112,2114,2116,3483,3484,3485,3492,3494,3496,3498,3503,3508,3511,3516,3517,3519,3590,3597,3598,5311,5331,5461,5532,5679,5788,6559,6576,6601,6608,6818,7193,7469,9471,9476,9610,10000,12390,12580,12686,12687,12691,12811,14583,15623,17067,17308,18097,18663,18699,19815,20589,20590,21216,21716,22346,22349,22350,22351,22385,22716,23033]]],["+",[12,11,[[0,2,2,0,2,[[24,1,1,0,1],[36,1,1,1,2]]],[1,2,2,2,4,[[70,2,2,2,4]]],[2,1,1,4,5,[[116,1,1,4,5]]],[4,2,1,5,6,[[173,2,1,5,6]]],[6,1,1,6,7,[[214,1,1,6,7]]],[11,1,1,7,8,[[316,1,1,7,8]]],[15,1,1,8,9,[[417,1,1,8,9]]],[25,1,1,9,10,[[831,1,1,9,10]]],[28,1,1,10,11,[[878,1,1,10,11]]]],[691,1111,2084,2112,3590,5461,6608,9610,12390,21216,22351]]],["Sell",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[689]]],["away",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3494]]],["himself",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[10,1,1,1,2,[[311,1,1,1,2]]]],[3516,9476]]],["sell",[13,13,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,2,2,1,3,[[70,1,1,1,2],[71,1,1,2,3]]],[2,4,4,3,7,[[114,4,4,3,7]]],[4,1,1,7,8,[[166,1,1,7,8]]],[15,1,1,8,9,[[422,1,1,8,9]]],[19,1,1,9,10,[[650,1,1,9,10]]],[25,1,1,10,11,[[849,1,1,10,11]]],[28,1,1,11,12,[[878,1,1,11,12]]],[37,1,1,12,13,[[921,1,1,12,13]]]],[1110,2085,2114,3483,3484,3485,3498,5311,12580,17067,21716,22351,23033]]],["seller",[3,3,[[22,1,1,0,1,[[702,1,1,0,1]]],[25,2,2,1,3,[[808,2,2,1,3]]]],[18097,20589,20590]]],["sellers",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12691]]],["sellest",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14583]]],["selleth",[5,5,[[1,1,1,0,1,[[70,1,1,0,1]]],[4,1,1,1,2,[[176,1,1,1,2]]],[7,1,1,2,3,[[235,1,1,2,3]]],[19,1,1,3,4,[[658,1,1,3,4]]],[33,1,1,4,5,[[902,1,1,4,5]]]],[2093,5532,7193,17308,22716]]],["sold",[38,36,[[0,6,6,0,6,[[30,1,1,0,1],[36,1,1,1,2],[44,2,2,2,4],[46,2,2,4,6]]],[1,1,1,6,7,[[71,1,1,6,7]]],[2,9,9,7,16,[[114,7,7,7,14],[116,2,2,14,16]]],[4,3,3,16,19,[[167,1,1,16,17],[180,1,1,17,18],[184,1,1,18,19]]],[6,4,4,19,23,[[212,1,1,19,20],[213,1,1,20,21],[214,1,1,21,22],[220,1,1,22,23]]],[8,1,1,23,24,[[247,1,1,23,24]]],[10,1,1,24,25,[[311,1,1,24,25]]],[15,4,3,25,28,[[417,2,1,25,26],[425,2,2,26,28]]],[16,2,1,28,29,[[432,2,1,28,29]]],[18,1,1,29,30,[[582,1,1,29,30]]],[22,1,1,30,31,[[728,1,1,30,31]]],[23,1,1,31,32,[[778,1,1,31,32]]],[28,3,3,32,35,[[878,3,3,32,35]]],[29,1,1,35,36,[[880,1,1,35,36]]]],[888,1119,1362,1363,1440,1442,2116,3492,3496,3503,3508,3511,3517,3519,3597,3598,5331,5679,5788,6559,6576,6601,6818,7469,9471,12390,12686,12687,12811,15623,18663,19815,22346,22349,22350,22385]]],["themselves",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10000]]],["yourselves",[2,2,[[22,2,2,0,2,[[728,1,1,0,1],[730,1,1,1,2]]]],[18663,18699]]]]},{"k":"H4377","v":[["*",[3,3,[[3,1,1,0,1,[[136,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]],[19,1,1,2,3,[[658,1,1,2,3]]]],[4330,12687,17294]]],["+",[1,1,[[3,1,1,0,1,[[136,1,1,0,1]]]],[4330]]],["price",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17294]]],["ware",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12687]]]]},{"k":"H4378","v":[["acquaintance",[2,2,[[11,2,2,0,2,[[324,2,2,0,2]]]],[9855,9857]]]]},{"k":"H4379","v":[["+",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22814]]]]},{"k":"H4380","v":[["habitations",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1478]]]]},{"k":"H4381","v":[["Michri",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10623]]]]},{"k":"H4382","v":[["Mecherathite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10709]]]]},{"k":"H4383","v":[["*",[14,14,[[2,1,1,0,1,[[108,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[22,2,2,3,5,[[686,1,1,3,4],[735,1,1,4,5]]],[23,1,1,5,6,[[750,1,1,5,6]]],[25,8,8,6,14,[[804,1,1,6,7],[808,1,1,7,8],[815,3,3,8,11],[819,1,1,11,12],[822,1,1,12,13],[845,1,1,13,14]]]],[3295,7892,16063,17821,18779,19110,20522,20596,20734,20735,20738,20879,20959,21611]]],["fall",[1,1,[[25,1,1,0,1,[[845,1,1,0,1]]]],[21611]]],["offence",[2,2,[[8,1,1,0,1,[[260,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]]],[7892,17821]]],["offend",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16063]]],["ruin",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20879]]],["ruins",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20959]]],["stumblingblock",[7,7,[[2,1,1,0,1,[[108,1,1,0,1]]],[22,1,1,1,2,[[735,1,1,1,2]]],[25,5,5,2,7,[[804,1,1,2,3],[808,1,1,3,4],[815,3,3,4,7]]]],[3295,18779,20522,20596,20734,20735,20738]]],["stumblingblocks",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19110]]]]},{"k":"H4384","v":[["*",[2,2,[[22,1,1,0,1,[[681,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]]],[17713,22790]]],["ruin",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17713]]],["stumblingblocks",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22790]]]]},{"k":"H4385","v":[["*",[9,8,[[1,3,2,0,2,[[81,2,1,0,1],[88,1,1,1,2]]],[4,1,1,2,3,[[162,1,1,2,3]]],[13,3,3,3,6,[[387,1,1,3,4],[401,1,1,4,5],[402,1,1,5,6]]],[14,1,1,6,7,[[403,1,1,6,7]]],[22,1,1,7,8,[[716,1,1,7,8]]]],[2454,2694,5190,11636,11970,12015,12017,18399]]],["+",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5190]]],["writing",[8,7,[[1,3,2,0,2,[[81,2,1,0,1],[88,1,1,1,2]]],[13,3,3,2,5,[[387,1,1,2,3],[401,1,1,3,4],[402,1,1,4,5]]],[14,1,1,5,6,[[403,1,1,5,6]]],[22,1,1,6,7,[[716,1,1,6,7]]]],[2454,2694,11636,11970,12015,12017,18399]]]]},{"k":"H4386","v":[["bursting",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18231]]]]},{"k":"H4387","v":[]},{"k":"H4388","v":[["*",[2,2,[[6,1,1,0,1,[[225,1,1,0,1]]],[19,1,1,1,2,[[654,1,1,1,2]]]],[6948,17191]]],["mortar",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17191]]],["place",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6948]]]]},{"k":"H4389","v":[["Maktesh",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22798]]]]},{"k":"H4390","v":[["*",[251,243,[[0,16,15,0,15,[[0,2,2,0,2],[5,2,2,2,4],[8,1,1,4,5],[20,1,1,5,6],[23,1,1,6,7],[24,1,1,7,8],[25,1,1,8,9],[28,3,3,9,12],[41,1,1,12,13],[43,1,1,13,14],[49,2,1,14,15]]],[1,23,23,15,38,[[50,1,1,15,16],[51,1,1,16,17],[56,1,1,17,18],[57,1,1,18,19],[59,1,1,19,20],[64,1,1,20,21],[72,1,1,21,22],[77,3,3,22,25],[78,4,4,25,29],[80,2,2,29,31],[81,1,1,31,32],[84,3,3,32,35],[88,1,1,35,36],[89,2,2,36,38]]],[2,9,8,38,46,[[97,2,1,38,39],[98,1,1,39,40],[101,2,2,40,42],[105,1,1,42,43],[108,1,1,43,44],[110,1,1,44,45],[114,1,1,45,46]]],[3,7,7,46,53,[[119,1,1,46,47],[122,2,2,47,49],[130,2,2,49,51],[148,2,2,51,53]]],[4,2,2,53,55,[[153,1,1,53,54],[158,1,1,54,55]]],[5,5,5,55,60,[[189,1,1,55,56],[195,1,1,56,57],[200,3,3,57,60]]],[6,3,3,60,63,[[226,1,1,60,61],[227,2,2,61,63]]],[8,3,3,63,66,[[251,1,1,63,64],[253,2,2,64,66]]],[9,2,2,66,68,[[273,1,1,66,67],[289,1,1,67,68]]],[10,12,12,68,80,[[291,1,1,68,69],[292,1,1,69,70],[297,1,1,70,71],[298,4,4,71,75],[301,1,1,75,76],[303,1,1,76,77],[308,2,2,77,79],[310,1,1,79,80]]],[11,10,10,80,90,[[315,3,3,80,83],[316,1,1,83,84],[318,1,1,84,85],[321,1,1,85,86],[322,1,1,86,87],[333,1,1,87,88],[335,1,1,88,89],[336,1,1,89,90]]],[12,3,3,90,93,[[349,1,1,90,91],[354,1,1,91,92],[366,1,1,92,93]]],[13,11,10,93,103,[[371,2,2,93,95],[372,2,2,95,97],[373,2,2,97,99],[379,1,1,99,100],[382,1,1,100,101],[395,1,1,101,102],[402,2,1,102,103]]],[14,1,1,103,104,[[411,1,1,103,104]]],[16,5,5,104,109,[[426,1,1,104,105],[427,1,1,105,106],[428,1,1,106,107],[430,1,1,107,108],[432,1,1,108,109]]],[17,17,17,109,126,[[438,1,1,109,110],[443,1,1,110,111],[450,2,2,111,113],[451,1,1,113,114],[455,3,3,114,117],[456,1,1,117,118],[457,1,1,118,119],[458,1,1,119,120],[467,1,1,120,121],[471,2,2,121,123],[473,1,1,123,124],[474,1,1,124,125],[476,1,1,125,126]]],[18,22,22,126,148,[[487,1,1,126,127],[494,1,1,127,128],[497,2,2,128,130],[503,1,1,130,131],[510,1,1,131,132],[515,1,1,132,133],[525,1,1,133,134],[542,1,1,134,135],[548,1,1,135,136],[549,1,1,136,137],[551,1,1,137,138],[557,1,1,138,139],[558,1,1,139,140],[560,1,1,140,141],[581,1,1,141,142],[584,1,1,142,143],[587,1,1,143,144],[596,1,1,144,145],[603,1,1,145,146],[604,1,1,146,147],[606,1,1,147,148]]],[19,7,7,148,155,[[628,1,1,148,149],[630,1,1,149,150],[633,1,1,150,151],[635,1,1,151,152],[639,1,1,152,153],[647,1,1,153,154],[651,1,1,154,155]]],[20,5,5,155,160,[[659,1,1,155,156],[664,1,1,156,157],[666,1,1,157,158],[667,1,1,158,159],[669,1,1,159,160]]],[21,2,2,160,162,[[675,2,2,160,162]]],[22,22,21,162,183,[[679,1,1,162,163],[680,4,3,163,166],[684,2,2,166,168],[689,1,1,168,169],[691,1,1,169,170],[692,1,1,170,171],[693,1,1,171,172],[699,1,1,172,173],[700,1,1,173,174],[701,1,1,174,175],[705,1,1,175,176],[706,1,1,176,177],[708,1,1,177,178],[711,1,1,178,179],[712,1,1,179,180],[718,1,1,180,181],[743,2,2,181,183]]],[23,22,21,183,204,[[748,1,1,183,184],[750,1,1,184,185],[757,3,2,185,187],[759,1,1,187,188],[760,1,1,188,189],[763,1,1,189,190],[767,2,2,190,192],[769,2,2,192,194],[773,1,1,194,195],[775,1,1,195,196],[777,1,1,196,197],[785,1,1,197,198],[788,1,1,198,199],[790,1,1,199,200],[795,4,4,200,204]]],[24,1,1,204,205,[[800,1,1,204,205]]],[25,26,23,205,228,[[804,1,1,205,206],[806,1,1,206,207],[808,3,2,207,209],[809,1,1,209,210],[810,3,2,210,212],[811,4,3,212,215],[812,1,1,215,216],[824,1,1,216,217],[825,1,1,217,218],[827,1,1,218,219],[828,1,1,219,220],[829,1,1,220,221],[831,1,1,221,222],[833,2,2,222,224],[836,1,1,224,225],[844,2,2,225,227],[845,1,1,227,228]]],[26,2,2,228,230,[[858,1,1,228,229],[859,1,1,229,230]]],[28,2,2,230,232,[[877,1,1,230,231],[878,1,1,231,232]]],[32,2,2,232,234,[[895,1,1,232,233],[898,1,1,233,234]]],[33,2,2,234,236,[[900,1,1,234,235],[901,1,1,235,236]]],[34,2,2,236,238,[[904,1,1,236,237],[905,1,1,237,238]]],[35,1,1,238,239,[[906,1,1,238,239]]],[36,1,1,239,240,[[910,1,1,239,240]]],[37,3,3,240,243,[[918,1,1,240,241],[919,2,2,241,243]]]],[21,27,148,150,206,532,607,682,707,816,822,823,1277,1325,1509,1539,1570,1710,1731,1783,1929,2170,2296,2310,2334,2345,2365,2369,2371,2423,2425,2467,2562,2564,2566,2674,2741,2742,2950,2970,3048,3050,3233,3310,3355,3499,3695,3828,3836,4129,4132,4729,4730,4928,5097,5908,6050,6195,6196,6201,6976,6985,6992,7596,7702,7703,8192,8660,8731,8797,8948,8995,8996,9000,9009,9114,9217,9374,9376,9435,9593,9596,9601,9609,9691,9780,9814,10135,10179,10206,10735,10874,11169,11281,11282,11286,11297,11325,11326,11462,11523,11822,12014,12248,12707,12736,12752,12788,12812,12919,13050,13205,13235,13248,13337,13348,13349,13379,13407,13423,13646,13752,13753,13832,13836,13895,14048,14117,14186,14187,14283,14371,14497,14644,14869,14984,15019,15068,15207,15227,15257,15595,15708,15792,15962,16117,16126,16139,16413,16465,16570,16623,16740,16971,17083,17323,17424,17469,17478,17516,17600,17612,17669,17691,17692,17693,17770,17773,17893,17927,17949,17969,18038,18059,18079,18157,18172,18244,18284,18309,18422,18908,18917,19032,19100,19278,19279,19332,19354,19411,19494,19508,19546,19568,19645,19716,19780,19966,20035,20057,20217,20223,20226,20246,20438,20505,20548,20596,20600,20621,20629,20631,20635,20636,20637,20661,21040,21060,21102,21146,21173,21215,21253,21254,21352,21577,21598,21603,21990,22018,22335,22356,22616,22660,22694,22711,22762,22771,22796,22862,22981,23012,23014]]],["+",[56,56,[[0,6,6,0,6,[[0,2,2,0,2],[8,1,1,2,3],[20,1,1,3,4],[41,1,1,4,5],[43,1,1,5,6]]],[1,9,9,6,15,[[51,1,1,6,7],[77,1,1,7,8],[78,4,4,8,12],[81,1,1,12,13],[89,2,2,13,15]]],[2,4,4,15,19,[[97,1,1,15,16],[98,1,1,16,17],[105,1,1,17,18],[110,1,1,18,19]]],[3,2,2,19,21,[[119,1,1,19,20],[130,1,1,20,21]]],[5,1,1,21,22,[[189,1,1,21,22]]],[6,2,2,22,24,[[227,2,2,22,24]]],[10,8,8,24,32,[[291,1,1,24,25],[292,1,1,25,26],[298,2,2,26,28],[301,1,1,28,29],[303,1,1,29,30],[308,1,1,30,31],[310,1,1,31,32]]],[11,3,3,32,35,[[333,1,1,32,33],[335,1,1,33,34],[336,1,1,34,35]]],[12,2,2,35,37,[[349,1,1,35,36],[366,1,1,36,37]]],[13,5,5,37,42,[[371,1,1,37,38],[373,2,2,38,40],[379,1,1,40,41],[395,1,1,41,42]]],[22,2,2,42,44,[[684,1,1,42,43],[743,1,1,43,44]]],[23,4,4,44,48,[[757,1,1,44,45],[760,1,1,45,46],[763,1,1,46,47],[767,1,1,47,48]]],[25,6,6,48,54,[[809,1,1,48,49],[810,1,1,49,50],[831,1,1,50,51],[836,1,1,51,52],[844,1,1,52,53],[845,1,1,53,54]]],[34,1,1,54,55,[[904,1,1,54,55]]],[36,1,1,55,56,[[910,1,1,55,56]]]],[21,27,206,532,1277,1325,1570,2334,2345,2365,2369,2371,2467,2741,2742,2950,2970,3233,3355,3695,4132,5908,6985,6992,8731,8797,8995,8996,9114,9217,9376,9435,10135,10179,10206,10735,11169,11282,11325,11326,11462,11822,17770,18917,19279,19354,19411,19508,20621,20629,21215,21352,21598,21603,22762,22862]]],["Fill",[2,2,[[10,1,1,0,1,[[308,1,1,0,1]]],[18,1,1,1,2,[[560,1,1,1,2]]]],[9374,15257]]],["Fulfil",[1,1,[[0,1,1,0,1,[[28,1,1,0,1]]]],[822]]],["accomplish",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[21990]]],["accomplished",[6,6,[[16,1,1,0,1,[[427,1,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]],[23,3,3,3,6,[[769,2,2,3,5],[773,1,1,5,6]]]],[12736,13235,18422,19546,19568,19645]]],["end",[1,1,[[2,1,1,0,1,[[97,1,1,0,1]]]],[2950]]],["expired",[3,3,[[8,1,1,0,1,[[253,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]],[16,1,1,2,3,[[426,1,1,2,3]]]],[7702,10874,12707]]],["fenced",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8660]]],["fill",[22,22,[[1,1,1,0,1,[[59,1,1,0,1]]],[8,1,1,1,2,[[251,1,1,1,2]]],[17,6,6,2,8,[[443,1,1,2,3],[450,1,1,3,4],[455,1,1,4,5],[458,1,1,5,6],[473,1,1,6,7],[476,1,1,7,8]]],[18,2,2,8,10,[[558,1,1,8,9],[587,1,1,9,10]]],[19,2,2,10,12,[[628,1,1,10,11],[635,1,1,11,12]]],[22,2,2,12,14,[[692,1,1,12,13],[705,1,1,13,14]]],[23,2,2,14,16,[[777,1,1,14,15],[795,1,1,15,16]]],[25,5,5,16,21,[[804,1,1,16,17],[808,1,1,17,18],[811,1,1,18,19],[825,1,1,19,20],[833,1,1,20,21]]],[35,1,1,21,22,[[906,1,1,21,22]]]],[1783,7596,13050,13205,13349,13423,13832,13895,15227,15792,16413,16623,17949,18157,19780,20226,20505,20596,20635,21060,21253,22796]]],["filled",[51,50,[[0,4,4,0,4,[[5,2,2,0,2],[23,1,1,2,3],[25,1,1,3,4]]],[1,4,4,4,8,[[50,1,1,4,5],[80,1,1,5,6],[84,2,2,6,8]]],[3,1,1,8,9,[[130,1,1,8,9]]],[5,1,1,9,10,[[195,1,1,9,10]]],[10,1,1,10,11,[[297,1,1,10,11]]],[11,3,3,11,14,[[315,3,3,11,14]]],[13,2,2,14,16,[[371,1,1,14,15],[382,1,1,15,16]]],[14,1,1,16,17,[[411,1,1,16,17]]],[17,2,2,17,19,[[438,1,1,17,18],[457,1,1,18,19]]],[18,5,5,19,24,[[515,1,1,19,20],[548,1,1,20,21],[549,1,1,21,22],[557,1,1,22,23],[603,1,1,23,24]]],[19,4,4,24,28,[[630,1,1,24,25],[639,1,1,25,26],[647,1,1,26,27],[651,1,1,27,28]]],[20,2,2,28,30,[[659,1,1,28,29],[664,1,1,29,30]]],[21,1,1,30,31,[[675,1,1,30,31]]],[22,4,4,31,35,[[684,1,1,31,32],[699,1,1,32,33],[711,1,1,33,34],[712,1,1,34,35]]],[23,7,6,35,41,[[757,2,1,35,36],[759,1,1,36,37],[785,1,1,37,38],[790,1,1,38,39],[795,2,2,39,41]]],[25,6,6,41,47,[[811,2,2,41,43],[812,1,1,43,44],[824,1,1,44,45],[829,1,1,45,46],[844,1,1,46,47]]],[33,1,1,47,48,[[901,1,1,47,48]]],[37,2,2,48,50,[[919,2,2,48,50]]]],[148,150,607,707,1539,2423,2562,2566,4129,6050,8948,9593,9596,9601,11281,11523,12248,12919,13407,14497,14984,15019,15207,16117,16465,16740,16971,17083,17323,17424,17600,17773,18038,18284,18309,19278,19332,19966,20057,20217,20246,20636,20637,20661,21040,21173,21577,22711,23012,23014]]],["filledst",[1,1,[[4,1,1,0,1,[[158,1,1,0,1]]]],[5097]]],["fillest",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14117]]],["filleth",[2,2,[[18,2,2,0,2,[[584,1,1,0,1],[606,1,1,1,2]]]],[15708,16139]]],["fulfil",[6,5,[[1,1,1,0,1,[[72,1,1,0,1]]],[13,2,1,1,2,[[402,2,1,1,2]]],[17,1,1,2,3,[[474,1,1,2,3]]],[18,2,2,3,5,[[497,2,2,3,5]]]],[2170,12014,13836,14186,14187]]],["fulfilled",[20,19,[[0,5,4,0,4,[[24,1,1,0,1],[28,2,2,1,3],[49,2,1,3,4]]],[1,1,1,4,5,[[56,1,1,4,5]]],[2,2,2,5,7,[[101,2,2,5,7]]],[3,2,2,7,9,[[122,2,2,7,9]]],[9,1,1,9,10,[[273,1,1,9,10]]],[10,2,2,10,12,[[298,2,2,10,12]]],[13,2,2,12,14,[[372,2,2,12,14]]],[17,1,1,14,15,[[471,1,1,14,15]]],[23,1,1,15,16,[[788,1,1,15,16]]],[24,1,1,16,17,[[800,1,1,16,17]]],[25,1,1,17,18,[[806,1,1,17,18]]],[26,1,1,18,19,[[859,1,1,18,19]]]],[682,816,823,1509,1710,3048,3050,3828,3836,8192,9000,9009,11286,11297,13753,20035,20438,20548,22018]]],["full",[48,45,[[1,1,1,0,1,[[57,1,1,0,1]]],[2,1,1,1,2,[[108,1,1,1,2]]],[6,1,1,2,3,[[226,1,1,2,3]]],[11,4,4,3,7,[[316,1,1,3,4],[318,1,1,4,5],[321,1,1,5,6],[322,1,1,6,7]]],[16,2,2,7,9,[[428,1,1,7,8],[430,1,1,8,9]]],[17,4,4,9,13,[[455,1,1,9,10],[456,1,1,10,11],[467,1,1,11,12],[471,1,1,12,13]]],[18,9,9,13,22,[[487,1,1,13,14],[503,1,1,14,15],[510,1,1,15,16],[525,1,1,16,17],[542,1,1,17,18],[551,1,1,18,19],[581,1,1,19,20],[596,1,1,20,21],[604,1,1,21,22]]],[20,2,2,22,24,[[667,1,1,22,23],[669,1,1,23,24]]],[22,10,9,24,33,[[679,1,1,24,25],[680,3,2,25,27],[689,1,1,27,28],[691,1,1,28,29],[693,1,1,29,30],[700,1,1,30,31],[706,1,1,31,32],[708,1,1,32,33]]],[23,2,2,33,35,[[750,1,1,33,34],[767,1,1,34,35]]],[25,6,4,35,39,[[808,2,1,35,36],[810,2,1,36,37],[811,1,1,37,38],[833,1,1,38,39]]],[28,2,2,39,41,[[877,1,1,39,40],[878,1,1,40,41]]],[32,2,2,41,43,[[895,1,1,41,42],[898,1,1,42,43]]],[34,1,1,43,44,[[905,1,1,43,44]]],[37,1,1,44,45,[[918,1,1,44,45]]]],[1731,3310,6976,9609,9691,9780,9814,12752,12788,13337,13379,13646,13752,14048,14283,14371,14644,14869,15068,15595,15962,16126,17478,17516,17669,17692,17693,17893,17927,17969,18059,18172,18244,19100,19494,20600,20631,20637,21254,22335,22356,22616,22660,22771,22981]]],["fully",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22694]]],["fulness",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13348]]],["furnish",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18908]]],["gather",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20223]]],["presume",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12812]]],["replenished",[5,5,[[22,2,2,0,2,[[680,1,1,0,1],[701,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]],[25,2,2,3,5,[[827,1,1,3,4],[828,1,1,4,5]]]],[17691,18079,19716,21102,21146]]],["satisfied",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1929]]],["satisfy",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16570]]],["set",[6,6,[[1,4,4,0,4,[[77,1,1,0,1],[80,1,1,1,2],[84,1,1,2,3],[88,1,1,3,4]]],[20,1,1,4,5,[[666,1,1,4,5]]],[21,1,1,5,6,[[675,1,1,5,6]]]],[2310,2425,2564,2674,17469,17612]]],["space",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3499]]],["tale",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7703]]],["themselves",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13248]]],["together",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19032]]],["wholly",[6,6,[[3,2,2,0,2,[[148,2,2,0,2]]],[4,1,1,2,3,[[153,1,1,2,3]]],[5,3,3,3,6,[[200,3,3,3,6]]]],[4729,4730,4928,6195,6196,6201]]],["with",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2296]]]]},{"k":"H4391","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21793,21826]]],["filled",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21793]]],["full",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21826]]]]},{"k":"H4392","v":[["*",[63,62,[[0,3,3,0,3,[[22,1,1,0,1],[40,2,2,1,3]]],[3,25,25,3,28,[[123,25,25,3,28]]],[4,3,3,28,31,[[158,1,1,28,29],[185,1,1,29,30],[186,1,1,30,31]]],[6,1,1,31,32,[[216,1,1,31,32]]],[7,1,1,32,33,[[232,1,1,32,33]]],[9,1,1,33,34,[[289,1,1,33,34]]],[11,2,2,34,36,[[316,1,1,34,35],[319,1,1,35,36]]],[12,3,3,36,39,[[348,1,1,36,37],[358,2,2,37,39]]],[15,1,1,39,40,[[421,1,1,39,40]]],[18,3,3,40,43,[[550,1,1,40,41],[552,1,1,41,42],[621,1,1,42,43]]],[19,1,1,43,44,[[644,1,1,43,44]]],[20,2,2,44,46,[[659,1,1,44,45],[669,1,1,45,46]]],[22,3,3,46,49,[[679,1,1,46,47],[700,1,1,47,48],[729,1,1,48,49]]],[23,6,5,49,54,[[748,1,1,49,50],[749,2,1,50,51],[750,1,1,51,52],[756,1,1,52,53],[779,1,1,53,54]]],[25,6,6,54,60,[[802,1,1,54,55],[811,1,1,55,56],[818,1,1,56,57],[829,1,1,57,58],[837,1,1,58,59],[838,1,1,59,60]]],[29,1,1,60,61,[[880,1,1,60,61]]],[33,1,1,61,62,[[902,1,1,61,62]]]],[580,1202,1217,3863,3864,3869,3870,3875,3876,3881,3882,3887,3888,3893,3894,3899,3900,3905,3906,3911,3912,3917,3918,3923,3924,3929,3930,3936,5097,5833,5848,6692,7148,8664,9607,9722,10686,10956,10958,12536,15030,15079,16318,16874,17322,17518,17675,18054,18693,19039,19085,19100,19255,19828,20482,20645,20828,21169,21397,21398,22392,22713]]],["child",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17518]]],["filled",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21397]]],["full",[58,57,[[0,2,2,0,2,[[40,2,2,0,2]]],[3,25,25,2,27,[[123,25,25,2,27]]],[4,3,3,27,30,[[158,1,1,27,28],[185,1,1,28,29],[186,1,1,29,30]]],[6,1,1,30,31,[[216,1,1,30,31]]],[7,1,1,31,32,[[232,1,1,31,32]]],[9,1,1,32,33,[[289,1,1,32,33]]],[11,2,2,33,35,[[316,1,1,33,34],[319,1,1,34,35]]],[12,3,3,35,38,[[348,1,1,35,36],[358,2,2,36,38]]],[15,1,1,38,39,[[421,1,1,38,39]]],[18,3,3,39,42,[[550,1,1,39,40],[552,1,1,40,41],[621,1,1,41,42]]],[19,1,1,42,43,[[644,1,1,42,43]]],[20,1,1,43,44,[[659,1,1,43,44]]],[22,3,3,44,47,[[679,1,1,44,45],[700,1,1,45,46],[729,1,1,46,47]]],[23,5,4,47,51,[[748,1,1,47,48],[749,2,1,48,49],[750,1,1,49,50],[779,1,1,50,51]]],[25,5,5,51,56,[[802,1,1,51,52],[811,1,1,52,53],[818,1,1,53,54],[829,1,1,54,55],[838,1,1,55,56]]],[33,1,1,56,57,[[902,1,1,56,57]]]],[1202,1217,3863,3864,3869,3870,3875,3876,3881,3882,3887,3888,3893,3894,3899,3900,3905,3906,3911,3912,3917,3918,3923,3924,3929,3930,3936,5097,5833,5848,6692,7148,8664,9607,9722,10686,10956,10958,12536,15030,15079,16318,16874,17322,17675,18054,18693,19039,19085,19100,19828,20482,20645,20828,21169,21398,22713]]],["multitude",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19255]]],["of",[1,1,[[29,1,1,0,1,[[880,1,1,0,1]]]],[22392]]],["worth",[1,1,[[0,1,1,0,1,[[22,1,1,0,1]]]],[580]]]]},{"k":"H4393","v":[["*",[37,35,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,3,3,1,4,[[58,1,1,1,2],[65,2,2,2,4]]],[2,4,3,4,7,[[91,1,1,4,5],[94,1,1,5,6],[105,2,1,6,7]]],[3,2,2,7,9,[[138,1,1,7,8],[140,1,1,8,9]]],[4,1,1,9,10,[[185,1,1,9,10]]],[8,1,1,10,11,[[263,1,1,10,11]]],[9,1,1,11,12,[[274,1,1,11,12]]],[10,1,1,12,13,[[307,1,1,12,13]]],[11,1,1,13,14,[[316,1,1,13,14]]],[12,1,1,14,15,[[353,1,1,14,15]]],[18,5,5,15,20,[[501,1,1,15,16],[527,1,1,16,17],[566,1,1,17,18],[573,1,1,18,19],[575,1,1,19,20]]],[20,2,1,20,21,[[662,2,1,20,21]]],[22,5,5,21,26,[[684,1,1,21,22],[686,1,1,22,23],[709,1,1,23,24],[712,1,1,24,25],[720,1,1,25,26]]],[23,2,2,26,28,[[752,1,1,26,27],[791,1,1,27,28]]],[25,5,5,28,33,[[813,1,1,28,29],[820,1,1,29,30],[831,1,1,30,31],[833,1,1,31,32],[842,1,1,32,33]]],[29,1,1,33,34,[[884,1,1,33,34]]],[32,1,1,34,35,[[893,1,1,34,35]]]],[1470,1750,1979,1980,2764,2842,3213,4393,4459,5826,7962,8211,9329,9642,10852,14242,14680,15337,15476,15497,17387,17772,17815,18254,18304,18490,19169,20075,20699,20888,21216,21263,21534,22458,22581]]],["+",[9,8,[[1,1,1,0,1,[[58,1,1,0,1]]],[2,2,2,1,3,[[91,1,1,1,2],[94,1,1,2,3]]],[8,1,1,3,4,[[263,1,1,3,4]]],[10,1,1,4,5,[[307,1,1,4,5]]],[20,2,1,5,6,[[662,2,1,5,6]]],[25,2,2,6,8,[[813,1,1,6,7],[833,1,1,7,8]]]],[1750,2764,2842,7962,9329,17387,20699,21263]]],["Fill",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1979]]],["all",[2,2,[[23,2,2,0,2,[[752,1,1,0,1],[791,1,1,1,2]]]],[19169,20075]]],["fill",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17815]]],["full",[9,8,[[1,1,1,0,1,[[65,1,1,0,1]]],[2,2,1,1,2,[[105,2,1,1,2]]],[3,2,2,2,4,[[138,1,1,2,3],[140,1,1,3,4]]],[9,1,1,4,5,[[274,1,1,4,5]]],[11,1,1,5,6,[[316,1,1,5,6]]],[22,1,1,6,7,[[684,1,1,6,7]]],[25,1,1,7,8,[[842,1,1,7,8]]]],[1980,3213,4393,4459,8211,9642,17772,21534]]],["fulness",[8,8,[[4,1,1,0,1,[[185,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[18,5,5,2,7,[[501,1,1,2,3],[527,1,1,3,4],[566,1,1,4,5],[573,1,1,5,6],[575,1,1,6,7]]],[25,1,1,7,8,[[820,1,1,7,8]]]],[5826,10852,14242,14680,15337,15476,15497,20888]]],["is",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22581]]],["multitude",[2,2,[[0,1,1,0,1,[[47,1,1,0,1]]],[22,1,1,1,2,[[709,1,1,1,2]]]],[1470,18254]]],["therein",[4,4,[[22,2,2,0,2,[[712,1,1,0,1],[720,1,1,1,2]]],[25,1,1,2,3,[[831,1,1,2,3]]],[29,1,1,3,4,[[884,1,1,3,4]]]],[18304,18490,21216,22458]]]]},{"k":"H4394","v":[["*",[15,15,[[1,8,8,0,8,[[74,1,1,0,1],[78,5,5,1,6],[84,2,2,6,8]]],[2,6,6,8,14,[[96,1,1,8,9],[97,5,5,9,14]]],[12,1,1,14,15,[[366,1,1,14,15]]]],[2202,2358,2362,2363,2367,2370,2540,2558,2916,2939,2945,2946,2948,2950,11166]]],["consecration",[7,7,[[1,4,4,0,4,[[78,4,4,0,4]]],[2,3,3,4,7,[[97,3,3,4,7]]]],[2358,2362,2363,2367,2939,2946,2950]]],["consecrations",[4,4,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,3,3,1,4,[[96,1,1,1,2],[97,2,2,2,4]]]],[2370,2916,2945,2948]]],["set",[4,4,[[1,3,3,0,3,[[74,1,1,0,1],[84,2,2,1,3]]],[12,1,1,3,4,[[366,1,1,3,4]]]],[2202,2540,2558,11166]]]]},{"k":"H4395","v":[["*",[3,3,[[1,1,1,0,1,[[71,1,1,0,1]]],[3,1,1,1,2,[[134,1,1,1,2]]],[4,1,1,2,3,[[174,1,1,2,3]]]],[2142,4284,5479]]],["fruit",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5479]]],["fruits",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2142]]],["fulness",[1,1,[[3,1,1,0,1,[[134,1,1,0,1]]]],[4284]]]]},{"k":"H4396","v":[["*",[3,3,[[1,3,3,0,3,[[77,2,2,0,2],[88,1,1,2,3]]]],[2310,2313,2677]]],["inclosings",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2313,2677]]],["settings",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2310]]]]},{"k":"H4397","v":[["*",[213,196,[[0,17,17,0,17,[[15,4,4,0,4],[18,2,2,4,6],[20,1,1,6,7],[21,2,2,7,9],[23,2,2,9,11],[27,1,1,11,12],[30,1,1,12,13],[31,3,3,13,16],[47,1,1,16,17]]],[1,6,6,17,23,[[52,1,1,17,18],[63,1,1,18,19],[72,2,2,19,21],[81,1,1,21,22],[82,1,1,22,23]]],[3,15,15,23,38,[[136,2,2,23,25],[137,1,1,25,26],[138,11,11,26,37],[140,1,1,37,38]]],[4,1,1,38,39,[[154,1,1,38,39]]],[5,3,3,39,42,[[192,2,2,39,41],[193,1,1,41,42]]],[6,31,26,42,68,[[212,2,2,42,44],[215,1,1,44,45],[216,9,6,45,51],[217,1,1,51,52],[219,1,1,52,53],[221,5,5,53,58],[223,12,10,58,68]]],[8,19,16,68,84,[[241,1,1,68,69],[246,5,4,69,73],[251,1,1,73,74],[254,8,6,74,80],[258,1,1,80,81],[260,2,2,81,83],[264,1,1,83,84]]],[9,18,16,84,100,[[268,1,1,84,85],[269,3,3,85,88],[271,1,1,88,89],[277,5,5,89,94],[278,1,1,94,95],[280,2,2,95,97],[285,1,1,97,98],[290,4,2,98,100]]],[10,9,8,100,108,[[303,1,1,100,101],[309,3,3,101,104],[310,4,3,104,107],[312,1,1,107,108]]],[11,20,18,108,126,[[313,6,5,108,113],[317,1,1,113,114],[318,3,2,114,116],[319,1,1,116,117],[321,1,1,117,118],[322,1,1,118,119],[326,1,1,119,120],[328,1,1,120,121],[329,1,1,121,122],[331,4,4,122,126]]],[12,12,10,126,136,[[351,1,1,126,127],[356,2,2,127,129],[358,9,7,129,136]]],[13,5,5,136,141,[[384,1,1,136,137],[398,1,1,137,138],[401,1,1,138,139],[402,2,2,139,141]]],[15,1,1,141,142,[[418,1,1,141,142]]],[17,3,3,142,145,[[436,1,1,142,143],[439,1,1,143,144],[468,1,1,144,145]]],[18,8,8,145,153,[[511,1,1,145,146],[512,2,2,146,148],[555,1,1,148,149],[568,1,1,149,150],[580,1,1,150,151],[581,1,1,151,152],[625,1,1,152,153]]],[19,3,3,153,156,[[640,1,1,153,154],[643,1,1,154,155],[644,1,1,155,156]]],[20,1,1,156,157,[[663,1,1,156,157]]],[22,10,10,157,167,[[692,1,1,157,158],[696,1,1,158,159],[708,1,1,159,160],[711,1,1,160,161],[715,3,3,161,164],[720,1,1,164,165],[722,1,1,165,166],[741,1,1,166,167]]],[23,1,1,167,168,[[771,1,1,167,168]]],[25,4,4,168,172,[[818,1,1,168,169],[824,2,2,169,171],[831,1,1,171,172]]],[27,1,1,172,173,[[873,1,1,172,173]]],[33,1,1,173,174,[[901,1,1,173,174]]],[36,1,1,174,175,[[909,1,1,174,175]]],[37,20,19,175,194,[[911,6,6,175,181],[912,2,1,181,182],[913,4,4,182,186],[914,3,3,186,189],[915,2,2,189,191],[916,2,2,191,193],[922,1,1,193,194]]],[38,3,2,194,196,[[926,1,1,194,195],[927,2,1,195,196]]]],[388,390,391,392,458,472,530,558,562,598,631,785,884,929,931,934,1467,1581,1908,2164,2167,2472,2475,4325,4327,4361,4380,4397,4398,4399,4400,4401,4402,4406,4407,4409,4410,4458,4964,5966,5974,5998,6546,6549,6646,6665,6666,6674,6675,6676,6689,6718,6785,6841,6842,6843,6846,6848,6887,6890,6893,6897,6899,6900,6901,6902,6904,6905,7352,7448,7449,7452,7454,7614,7717,7720,7721,7722,7726,7727,7837,7875,7903,7976,8054,8093,8095,8107,8143,8263,8278,8281,8282,8284,8313,8373,8376,8538,8708,8709,9202,9389,9392,9394,9410,9413,9417,9493,9535,9536,9538,9548,9549,9657,9706,9707,9722,9774,9801,9904,9970,9987,10070,10075,10084,10096,10775,10909,10923,10946,10949,10950,10952,10954,10961,10964,11554,11896,11987,12008,12009,12404,12883,12948,13673,14395,14415,14416,15162,15406,15569,15575,16373,16764,16854,16884,17403,17960,17999,18221,18286,18361,18366,18388,18499,18559,18875,19599,20840,21023,21047,21213,22256,22712,22853,22887,22889,22890,22891,22892,22897,22902,22913,22915,22917,22918,22923,22926,22927,22941,22946,22951,22952,23053,23110,23121]]],["Angel",[4,4,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,3,3,1,4,[[72,2,2,1,3],[81,1,1,3,4]]]],[1467,2164,2167,2472]]],["ambassadors",[4,4,[[13,1,1,0,1,[[401,1,1,0,1]]],[22,2,2,1,3,[[708,1,1,1,2],[711,1,1,2,3]]],[25,1,1,3,4,[[818,1,1,3,4]]]],[11987,18221,18286,20840]]],["angel",[97,88,[[0,10,10,0,10,[[15,4,4,0,4],[20,1,1,4,5],[21,2,2,5,7],[23,2,2,7,9],[30,1,1,9,10]]],[1,3,3,10,13,[[52,1,1,10,11],[63,1,1,11,12],[82,1,1,12,13]]],[3,11,11,13,24,[[136,1,1,13,14],[138,10,10,14,24]]],[6,22,18,24,42,[[212,2,2,24,26],[215,1,1,26,27],[216,7,5,27,32],[223,12,10,32,42]]],[8,1,1,42,43,[[264,1,1,42,43]]],[9,7,5,43,48,[[280,2,2,43,45],[285,1,1,45,46],[290,4,2,46,48]]],[10,3,3,48,51,[[303,1,1,48,49],[309,2,2,49,51]]],[11,3,3,51,54,[[313,2,2,51,53],[331,1,1,53,54]]],[12,9,7,54,61,[[358,9,7,54,61]]],[13,1,1,61,62,[[398,1,1,61,62]]],[18,3,3,62,65,[[511,1,1,62,63],[512,2,2,63,65]]],[20,1,1,65,66,[[663,1,1,65,66]]],[22,2,2,66,68,[[715,1,1,66,67],[741,1,1,67,68]]],[27,1,1,68,69,[[873,1,1,68,69]]],[37,20,19,69,88,[[911,6,6,69,75],[912,2,1,75,76],[913,4,4,76,80],[914,3,3,80,83],[915,2,2,83,85],[916,2,2,85,87],[922,1,1,87,88]]]],[388,390,391,392,530,558,562,598,631,884,1581,1908,2475,4327,4397,4398,4399,4400,4401,4402,4406,4407,4409,4410,6546,6549,6646,6665,6666,6674,6675,6676,6887,6890,6893,6897,6899,6900,6901,6902,6904,6905,7976,8373,8376,8538,8708,8709,9202,9392,9394,9536,9548,10096,10946,10949,10950,10952,10954,10961,10964,11896,14395,14415,14416,17403,18388,18875,22256,22887,22889,22890,22891,22892,22897,22902,22913,22915,22917,22918,22923,22926,22927,22941,22946,22951,22952,23053]]],["angels",[10,10,[[0,4,4,0,4,[[18,2,2,0,2],[27,1,1,2,3],[31,1,1,3,4]]],[17,1,1,4,5,[[439,1,1,4,5]]],[18,5,5,5,10,[[555,1,1,5,6],[568,1,1,6,7],[580,1,1,7,8],[581,1,1,8,9],[625,1,1,9,10]]]],[458,472,785,929,12948,15162,15406,15569,15575,16373]]],["messenger",[24,22,[[8,1,1,0,1,[[258,1,1,0,1]]],[9,4,4,1,5,[[277,4,4,1,5]]],[10,2,2,5,7,[[309,1,1,5,6],[312,1,1,6,7]]],[11,6,5,7,12,[[317,1,1,7,8],[318,3,2,8,10],[321,1,1,10,11],[322,1,1,11,12]]],[13,1,1,12,13,[[384,1,1,12,13]]],[17,2,2,13,15,[[436,1,1,13,14],[468,1,1,14,15]]],[19,2,2,15,17,[[640,1,1,15,16],[644,1,1,16,17]]],[22,1,1,17,18,[[720,1,1,17,18]]],[25,1,1,18,19,[[824,1,1,18,19]]],[36,1,1,19,20,[[909,1,1,19,20]]],[38,3,2,20,22,[[926,1,1,20,21],[927,2,1,21,22]]]],[7837,8278,8281,8282,8284,9389,9493,9657,9706,9707,9774,9801,11554,12883,13673,16764,16884,18499,21047,22853,23110,23121]]],["messengers",[74,69,[[0,2,2,0,2,[[31,2,2,0,2]]],[3,4,4,2,6,[[136,1,1,2,3],[137,1,1,3,4],[138,1,1,4,5],[140,1,1,5,6]]],[4,1,1,6,7,[[154,1,1,6,7]]],[5,3,3,7,10,[[192,2,2,7,9],[193,1,1,9,10]]],[6,9,8,10,18,[[216,2,1,10,11],[217,1,1,11,12],[219,1,1,12,13],[221,5,5,13,18]]],[8,17,14,18,32,[[241,1,1,18,19],[246,5,4,19,23],[251,1,1,23,24],[254,8,6,24,30],[260,2,2,30,32]]],[9,7,7,32,39,[[268,1,1,32,33],[269,3,3,33,36],[271,1,1,36,37],[277,1,1,37,38],[278,1,1,38,39]]],[10,4,3,39,42,[[310,4,3,39,42]]],[11,11,11,42,53,[[313,4,4,42,46],[319,1,1,46,47],[326,1,1,47,48],[328,1,1,48,49],[329,1,1,49,50],[331,3,3,50,53]]],[12,3,3,53,56,[[351,1,1,53,54],[356,2,2,54,56]]],[13,2,2,56,58,[[402,2,2,56,58]]],[15,1,1,58,59,[[418,1,1,58,59]]],[19,1,1,59,60,[[643,1,1,59,60]]],[22,5,5,60,65,[[692,1,1,60,61],[696,1,1,61,62],[715,2,2,62,64],[722,1,1,64,65]]],[23,1,1,65,66,[[771,1,1,65,66]]],[25,2,2,66,68,[[824,1,1,66,67],[831,1,1,67,68]]],[33,1,1,68,69,[[901,1,1,68,69]]]],[931,934,4325,4361,4380,4458,4964,5966,5974,5998,6689,6718,6785,6841,6842,6843,6846,6848,7352,7448,7449,7452,7454,7614,7717,7720,7721,7722,7726,7727,7875,7903,8054,8093,8095,8107,8143,8263,8313,9410,9413,9417,9535,9536,9538,9549,9722,9904,9970,9987,10070,10075,10084,10775,10909,10923,12008,12009,12404,16854,17960,17999,18361,18366,18559,19599,21023,21213,22712]]]]},{"k":"H4398","v":[["angel",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[855,1,1,1,2]]]],[21835,21927]]]]},{"k":"H4399","v":[["*",[167,149,[[0,5,4,0,4,[[1,3,2,0,2],[32,1,1,2,3],[38,1,1,3,4]]],[1,33,27,4,31,[[61,1,1,4,5],[69,2,2,5,7],[71,2,2,7,9],[80,5,4,9,13],[84,9,7,13,20],[85,10,8,20,28],[87,2,1,28,29],[88,1,1,29,30],[89,1,1,30,31]]],[2,16,15,31,46,[[96,1,1,31,32],[100,1,1,32,33],[102,2,2,33,35],[105,1,1,35,36],[112,11,10,36,46]]],[3,8,8,46,54,[[120,1,1,46,47],[144,3,3,47,50],[145,4,4,50,54]]],[4,3,3,54,57,[[157,2,2,54,56],[168,1,1,56,57]]],[6,1,1,57,58,[[226,1,1,57,58]]],[8,2,2,58,60,[[243,1,1,58,59],[250,1,1,59,60]]],[10,10,7,60,67,[[295,2,1,60,61],[297,5,4,61,65],[299,2,1,65,66],[301,1,1,66,67]]],[11,6,5,67,72,[[324,3,3,67,70],[334,3,2,70,72]]],[12,20,19,72,91,[[341,1,1,72,73],[343,1,1,73,74],[346,3,3,74,77],[359,2,1,77,78],[360,2,2,78,80],[362,1,1,80,81],[363,2,2,81,83],[364,1,1,83,84],[365,4,4,84,88],[366,3,3,88,91]]],[13,16,14,91,105,[[370,1,1,91,92],[371,1,1,92,93],[374,2,2,93,95],[379,1,1,95,96],[382,1,1,96,97],[383,1,1,97,98],[390,3,2,98,100],[395,1,1,100,101],[400,5,4,101,105]]],[14,5,5,105,110,[[404,1,1,105,106],[405,2,2,106,108],[408,1,1,108,109],[412,1,1,109,110]]],[15,22,20,110,130,[[414,1,1,110,111],[416,7,7,111,118],[417,2,1,118,119],[418,4,3,119,122],[419,2,2,122,124],[422,1,1,124,125],[423,3,3,125,128],[425,2,2,128,130]]],[16,2,2,130,132,[[428,1,1,130,131],[434,1,1,131,132]]],[18,2,2,132,134,[[550,1,1,132,133],[584,1,1,133,134]]],[19,3,3,134,137,[[645,1,1,134,135],[649,1,1,135,136],[651,1,1,136,137]]],[23,5,5,137,142,[[761,2,2,137,139],[762,1,1,139,140],[792,1,1,140,141],[794,1,1,141,142]]],[25,5,4,142,146,[[816,4,3,142,145],[829,1,1,145,146]]],[26,1,1,146,147,[[857,1,1,146,147]]],[31,1,1,147,148,[[889,1,1,147,148]]],[36,1,1,148,149,[[909,1,1,148,149]]]],[32,33,974,1160,1832,2060,2061,2121,2124,2423,2425,2434,2435,2533,2552,2555,2560,2562,2564,2566,2567,2568,2569,2570,2571,2572,2573,2574,2657,2707,2740,2903,3029,3100,3103,3230,3405,3409,3410,3423,3427,3430,3432,3433,3437,3438,3746,4595,4602,4603,4609,4615,4620,4643,5066,5067,5350,6960,7385,7569,8894,8948,8956,8974,8985,9074,9136,9861,9864,9865,10150,10154,10408,10503,10628,10634,10648,10979,10987,11007,11047,11106,11107,11135,11156,11162,11163,11164,11165,11169,11170,11257,11269,11355,11362,11463,11514,11536,11689,11690,11825,11943,11945,11946,11950,12096,12105,12106,12173,12265,12323,12370,12374,12375,12376,12378,12380,12381,12398,12404,12410,12417,12490,12491,12582,12600,12604,12610,12681,12701,12756,12837,15048,15722,16910,17044,17106,19379,19381,19387,20090,20191,20757,20758,20759,21170,21988,22539,22854]]],["+",[14,13,[[1,1,1,0,1,[[85,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[10,1,1,2,3,[[301,1,1,2,3]]],[11,2,2,3,5,[[324,2,2,3,5]]],[12,2,2,5,7,[[359,1,1,5,6],[362,1,1,6,7]]],[13,5,4,7,11,[[370,1,1,7,8],[390,1,1,8,9],[400,3,2,9,11]]],[14,1,1,11,12,[[405,1,1,11,12]]],[16,1,1,12,13,[[434,1,1,12,13]]]],[2570,6960,9136,9864,9865,10979,11047,11257,11690,11943,11950,12106,12837]]],["business",[12,12,[[0,1,1,0,1,[[38,1,1,0,1]]],[12,2,2,1,3,[[363,2,2,1,3]]],[13,2,2,3,5,[[379,1,1,3,4],[383,1,1,4,5]]],[15,3,3,5,8,[[423,2,2,5,7],[425,1,1,7,8]]],[16,1,1,8,9,[[428,1,1,8,9]]],[18,1,1,9,10,[[584,1,1,9,10]]],[19,1,1,10,11,[[649,1,1,10,11]]],[26,1,1,11,12,[[857,1,1,11,12]]]],[1160,11106,11107,11463,11536,12604,12610,12701,12756,15722,17044,21988]]],["cattle",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[974]]],["goods",[2,2,[[1,2,2,0,2,[[71,2,2,0,2]]]],[2121,2124]]],["labour",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12381]]],["made",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3100]]],["occupation",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22539]]],["stuff",[1,1,[[1,1,1,0,1,[[85,1,1,0,1]]]],[2573]]],["thing",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7569]]],["use",[1,1,[[2,1,1,0,1,[[96,1,1,0,1]]]],[2903]]],["work",[124,112,[[0,3,2,0,2,[[1,3,2,0,2]]],[1,26,22,2,24,[[61,1,1,2,3],[69,2,2,3,5],[80,3,2,5,7],[84,8,6,7,13],[85,8,8,13,21],[87,2,1,21,22],[88,1,1,22,23],[89,1,1,23,24]]],[2,14,13,24,37,[[100,1,1,24,25],[102,1,1,25,26],[105,1,1,26,27],[112,11,10,27,37]]],[3,8,8,37,45,[[120,1,1,37,38],[144,3,3,38,41],[145,4,4,41,45]]],[4,3,3,45,48,[[157,2,2,45,47],[168,1,1,47,48]]],[8,1,1,48,49,[[243,1,1,48,49]]],[10,8,6,49,55,[[295,2,1,49,50],[297,4,4,50,54],[299,2,1,54,55]]],[11,4,3,55,58,[[324,1,1,55,56],[334,3,2,56,58]]],[12,14,14,58,72,[[341,1,1,58,59],[343,1,1,59,60],[346,3,3,60,63],[359,1,1,63,64],[360,2,2,64,66],[364,1,1,66,67],[365,2,2,67,69],[366,3,3,69,72]]],[13,9,9,72,81,[[371,1,1,72,73],[374,2,2,73,75],[382,1,1,75,76],[390,2,2,76,78],[395,1,1,78,79],[400,2,2,79,81]]],[14,4,4,81,85,[[404,1,1,81,82],[405,1,1,82,83],[408,1,1,83,84],[412,1,1,84,85]]],[15,18,16,85,101,[[414,1,1,85,86],[416,6,6,86,92],[417,2,1,92,93],[418,4,3,93,96],[419,2,2,96,98],[422,1,1,98,99],[423,1,1,99,100],[425,1,1,100,101]]],[19,2,2,101,103,[[645,1,1,101,102],[651,1,1,102,103]]],[23,5,5,103,108,[[761,2,2,103,105],[762,1,1,105,106],[792,1,1,106,107],[794,1,1,107,108]]],[25,4,3,108,111,[[816,4,3,108,111]]],[36,1,1,111,112,[[909,1,1,111,112]]]],[32,33,1832,2060,2061,2434,2435,2533,2552,2555,2560,2564,2566,2567,2568,2569,2570,2571,2572,2573,2574,2657,2707,2740,3029,3103,3230,3405,3409,3410,3423,3427,3430,3432,3433,3437,3438,3746,4595,4602,4603,4609,4615,4620,4643,5066,5067,5350,7385,8894,8948,8956,8974,8985,9074,9861,10150,10154,10408,10503,10628,10634,10648,10979,10987,11007,11135,11156,11163,11165,11169,11170,11269,11355,11362,11514,11689,11690,11825,11945,11946,12096,12105,12173,12265,12323,12370,12374,12375,12376,12378,12380,12398,12404,12410,12417,12490,12491,12582,12600,12681,16910,17106,19379,19381,19387,20090,20191,20757,20758,20759,22854]]],["workmanship",[5,5,[[1,3,3,0,3,[[80,2,2,0,2],[84,1,1,2,3]]],[12,1,1,3,4,[[365,1,1,3,4]]],[25,1,1,4,5,[[829,1,1,4,5]]]],[2423,2425,2562,11164,21170]]],["works",[3,3,[[10,1,1,0,1,[[297,1,1,0,1]]],[12,1,1,1,2,[[365,1,1,1,2]]],[18,1,1,2,3,[[550,1,1,2,3]]]],[8948,11162,15048]]]]},{"k":"H4400","v":[["message",[1,1,[[36,1,1,0,1,[[909,1,1,0,1]]]],[22853]]]]},{"k":"H4401","v":[["Malachi",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23090]]]]},{"k":"H4402","v":[["+",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17610]]]]},{"k":"H4403","v":[["*",[8,7,[[10,1,1,0,1,[[300,1,1,0,1]]],[11,1,1,1,2,[[322,1,1,1,2]]],[13,2,1,2,3,[[375,2,1,2,3]]],[17,1,1,3,4,[[462,1,1,3,4]]],[22,1,1,4,5,[[741,1,1,4,5]]],[25,1,1,5,6,[[817,1,1,5,6]]],[35,1,1,6,7,[[906,1,1,6,7]]]],[9084,9815,11368,13497,18869,20775,22795]]],["apparel",[4,3,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,2,1,1,2,[[375,2,1,1,2]]],[35,1,1,2,3,[[906,1,1,2,3]]]],[9084,11368,22795]]],["raiment",[3,3,[[17,1,1,0,1,[[462,1,1,0,1]]],[22,1,1,1,2,[[741,1,1,1,2]]],[25,1,1,2,3,[[817,1,1,2,3]]]],[13497,18869,20775]]],["vestments",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9815]]]]},{"k":"H4404","v":[["brickkiln",[3,3,[[9,1,1,0,1,[[278,1,1,0,1]]],[23,1,1,1,2,[[787,1,1,1,2]]],[33,1,1,2,3,[[902,1,1,2,3]]]],[8317,20006,22726]]]]},{"k":"H4405","v":[["*",[38,38,[[9,1,1,0,1,[[289,1,1,0,1]]],[17,34,34,1,35,[[439,2,2,1,3],[441,1,1,3,4],[443,1,1,4,5],[447,1,1,5,6],[448,1,1,6,7],[450,2,2,7,9],[451,1,1,9,10],[453,1,1,10,11],[454,2,2,11,13],[456,1,1,13,14],[458,1,1,14,15],[459,1,1,15,16],[461,1,1,16,17],[464,2,2,17,19],[465,1,1,19,20],[467,4,4,20,24],[468,3,3,24,27],[469,3,3,27,30],[470,2,2,30,32],[471,2,2,32,34],[473,1,1,34,35]]],[18,2,2,35,37,[[496,1,1,35,36],[616,1,1,36,37]]],[19,1,1,37,38,[[650,1,1,37,38]]]],[8655,12932,12934,13004,13039,13139,13170,13206,13216,13242,13278,13299,13320,13357,13424,13461,13471,13541,13554,13566,13639,13642,13643,13646,13651,13658,13682,13685,13686,13699,13724,13736,13738,13740,13795,14172,16243,17053]]],["+",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13724]]],["byword",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13566]]],["matter",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13646]]],["say",[2,2,[[17,2,2,0,2,[[467,1,1,0,1],[468,1,1,1,2]]]],[13639,13682]]],["speak",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13738]]],["speaking",[2,2,[[17,2,2,0,2,[[439,1,1,0,1],[467,1,1,1,2]]]],[12932,13643]]],["speech",[4,4,[[17,4,4,0,4,[[448,1,1,0,1],[456,1,1,1,2],[459,1,1,2,3],[464,1,1,3,4]]]],[13170,13357,13461,13554]]],["speeches",[2,2,[[17,2,2,0,2,[[450,1,1,0,1],[468,1,1,1,2]]]],[13206,13651]]],["talking",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13541]]],["word",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]]],[8655,16243]]],["words",[21,21,[[17,19,19,0,19,[[439,1,1,0,1],[441,1,1,1,2],[443,1,1,2,3],[447,1,1,3,4],[450,1,1,4,5],[451,1,1,5,6],[453,1,1,6,7],[454,2,2,7,9],[458,1,1,9,10],[461,1,1,10,11],[467,1,1,11,12],[468,1,1,12,13],[469,3,3,13,16],[470,1,1,16,17],[471,1,1,17,18],[473,1,1,18,19]]],[18,1,1,19,20,[[496,1,1,19,20]]],[19,1,1,20,21,[[650,1,1,20,21]]]],[12934,13004,13039,13139,13216,13242,13278,13299,13320,13424,13471,13642,13658,13685,13686,13699,13736,13740,13795,14172,17053]]]]},{"k":"H4406","v":[["*",[23,22,[[26,23,22,0,22,[[851,8,8,0,8],[852,2,2,8,10],[853,2,2,10,12],[854,3,3,12,15],[855,2,2,15,17],[856,6,5,17,22]]]],[21763,21766,21767,21768,21769,21773,21775,21781,21829,21835,21868,21870,21884,21889,21900,21917,21919,21934,21944,21949,21958,21961]]],["+",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21773,21775]]],["commandment",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21829]]],["matter",[4,3,[[26,4,3,0,3,[[851,2,2,0,2],[856,2,1,2,3]]]],[21768,21781,21961]]],["matters",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21934]]],["thing",[7,7,[[26,7,7,0,7,[[851,3,3,0,3],[853,1,1,3,4],[854,2,2,4,6],[855,1,1,6,7]]]],[21763,21766,21769,21870,21889,21900,21917]]],["things",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21949]]],["word",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[853,1,1,1,2]]]],[21835,21868]]],["words",[5,5,[[26,5,5,0,5,[[851,1,1,0,1],[854,1,1,1,2],[855,1,1,2,3],[856,2,2,3,5]]]],[21767,21884,21919,21944,21958]]]]},{"k":"H4407","v":[["Millo",[9,8,[[6,2,1,0,1,[[219,2,1,0,1]]],[9,1,1,1,2,[[271,1,1,1,2]]],[10,3,3,2,5,[[299,2,2,2,4],[301,1,1,4,5]]],[11,1,1,5,6,[[324,1,1,5,6]]],[12,1,1,6,7,[[348,1,1,6,7]]],[13,1,1,7,8,[[398,1,1,7,8]]]],[6774,8141,9066,9075,9135,9870,10681,11880]]]]},{"k":"H4408","v":[["mallows",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13561]]]]},{"k":"H4409","v":[["*",[7,7,[[12,1,1,0,1,[[343,1,1,0,1]]],[14,2,2,1,3,[[412,2,2,1,3]]],[15,4,4,3,7,[[422,2,2,3,5],[424,2,2,5,7]]]],[10498,12281,12284,12553,12576,12626,12638]]],["Malluch",[6,6,[[12,1,1,0,1,[[343,1,1,0,1]]],[14,2,2,1,3,[[412,2,2,1,3]]],[15,3,3,3,6,[[422,2,2,3,5],[424,1,1,5,6]]]],[10498,12281,12284,12553,12576,12626]]],["Melicu",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12638]]]]},{"k":"H4410","v":[["*",[24,23,[[8,5,5,0,5,[[245,2,2,0,2],[246,1,1,2,3],[249,1,1,3,4],[253,1,1,4,5]]],[9,2,2,5,7,[[278,1,1,5,6],[282,1,1,6,7]]],[10,7,6,7,13,[[291,1,1,7,8],[292,3,2,8,10],[301,1,1,10,11],[302,1,1,11,12],[311,1,1,12,13]]],[11,1,1,13,14,[[337,1,1,13,14]]],[12,1,1,14,15,[[347,1,1,14,15]]],[18,1,1,15,16,[[499,1,1,15,16]]],[22,2,2,16,18,[[712,1,1,16,17],[740,1,1,17,18]]],[23,1,1,18,19,[[785,1,1,18,19]]],[25,2,2,19,21,[[817,1,1,19,20],[818,1,1,20,21]]],[26,1,1,21,22,[[850,1,1,21,22]]],[30,1,1,22,23,[[888,1,1,22,23]]]],[7434,7443,7459,7555,7684,8312,8434,8763,8785,8792,9143,9172,9458,10247,10673,14232,18315,18857,19958,20775,20838,21740,22531]]],["+",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21740]]],["king's",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20838]]],["kingdom",[18,17,[[8,5,5,0,5,[[245,2,2,0,2],[246,1,1,2,3],[249,1,1,3,4],[253,1,1,4,5]]],[9,1,1,5,6,[[282,1,1,5,6]]],[10,7,6,6,12,[[291,1,1,6,7],[292,3,2,7,9],[301,1,1,9,10],[302,1,1,10,11],[311,1,1,11,12]]],[12,1,1,12,13,[[347,1,1,12,13]]],[18,1,1,13,14,[[499,1,1,13,14]]],[22,1,1,14,15,[[712,1,1,14,15]]],[25,1,1,15,16,[[817,1,1,15,16]]],[30,1,1,16,17,[[888,1,1,16,17]]]],[7434,7443,7459,7555,7684,8434,8763,8785,8792,9143,9172,9458,10673,14232,18315,20775,22531]]],["royal",[4,4,[[9,1,1,0,1,[[278,1,1,0,1]]],[11,1,1,1,2,[[337,1,1,1,2]]],[22,1,1,2,3,[[740,1,1,2,3]]],[23,1,1,3,4,[[785,1,1,3,4]]]],[8312,10247,18857,19958]]]]},{"k":"H4411","v":[["*",[8,8,[[0,2,2,0,2,[[41,1,1,0,1],[42,1,1,1,2]]],[1,1,1,2,3,[[53,1,1,2,3]]],[5,2,2,3,5,[[190,2,2,3,5]]],[11,1,1,5,6,[[331,1,1,5,6]]],[22,1,1,6,7,[[688,1,1,6,7]]],[23,1,1,7,8,[[753,1,1,7,8]]]],[1279,1311,1625,5913,5918,10084,17879,19177]]],["inn",[3,3,[[0,2,2,0,2,[[41,1,1,0,1],[42,1,1,1,2]]],[1,1,1,2,3,[[53,1,1,2,3]]]],[1279,1311,1625]]],["lodged",[1,1,[[5,1,1,0,1,[[190,1,1,0,1]]]],[5918]]],["lodging",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17879]]],["lodgings",[1,1,[[11,1,1,0,1,[[331,1,1,0,1]]]],[10084]]],["place",[2,2,[[5,1,1,0,1,[[190,1,1,0,1]]],[23,1,1,1,2,[[753,1,1,1,2]]]],[5913,19177]]]]},{"k":"H4412","v":[["*",[2,2,[[22,2,2,0,2,[[679,1,1,0,1],[702,1,1,1,2]]]],[17662,18115]]],["cottage",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18115]]],["lodge",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17662]]]]},{"k":"H4413","v":[["Mallothi",[2,2,[[12,2,2,0,2,[[362,2,2,0,2]]]],[11050,11072]]]]},{"k":"H4414","v":[["*",[5,4,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,1,1,1,2,[[91,1,1,1,2]]],[22,1,1,2,3,[[729,1,1,2,3]]],[25,2,1,3,4,[[817,2,1,3,4]]]],[2417,2775,18679,20766]]],["+",[2,1,[[25,2,1,0,1,[[817,2,1,0,1]]]],[20766]]],["away",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18679]]],["season",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2775]]],["together",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2417]]]]},{"k":"H4415","v":[["+",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12124]]]]},{"k":"H4416","v":[["*",[3,3,[[14,3,3,0,3,[[406,1,1,0,1],[408,1,1,1,2],[409,1,1,2,3]]]],[12124,12160,12195]]],["+",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12124]]],["salt",[2,2,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]]],[12160,12195]]]]},{"k":"H4417","v":[["*",[27,25,[[0,2,2,0,2,[[13,1,1,0,1],[18,1,1,1,2]]],[2,3,1,2,3,[[91,3,1,2,3]]],[3,3,3,3,6,[[134,1,1,3,4],[150,2,2,4,6]]],[4,2,2,6,8,[[155,1,1,6,7],[181,1,1,7,8]]],[5,5,5,8,13,[[189,1,1,8,9],[198,1,1,9,10],[201,2,2,10,12],[204,1,1,12,13]]],[6,1,1,13,14,[[219,1,1,13,14]]],[9,1,1,14,15,[[274,1,1,14,15]]],[11,3,3,15,18,[[314,2,2,15,17],[326,1,1,17,18]]],[12,1,1,18,19,[[355,1,1,18,19]]],[13,2,2,19,21,[[379,1,1,19,20],[391,1,1,20,21]]],[17,1,1,21,22,[[441,1,1,21,22]]],[25,2,2,22,24,[[844,1,1,22,23],[848,1,1,23,24]]],[35,1,1,24,25,[[907,1,1,24,25]]]],[339,483,2775,4276,4819,4828,4992,5702,5909,6133,6204,6207,6312,6799,8222,9571,9572,9903,10902,11458,11715,12984,21596,21690,22814]]],["+",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22814]]],["salt",[26,24,[[0,2,2,0,2,[[13,1,1,0,1],[18,1,1,1,2]]],[2,3,1,2,3,[[91,3,1,2,3]]],[3,3,3,3,6,[[134,1,1,3,4],[150,2,2,4,6]]],[4,2,2,6,8,[[155,1,1,6,7],[181,1,1,7,8]]],[5,5,5,8,13,[[189,1,1,8,9],[198,1,1,9,10],[201,2,2,10,12],[204,1,1,12,13]]],[6,1,1,13,14,[[219,1,1,13,14]]],[9,1,1,14,15,[[274,1,1,14,15]]],[11,3,3,15,18,[[314,2,2,15,17],[326,1,1,17,18]]],[12,1,1,18,19,[[355,1,1,18,19]]],[13,2,2,19,21,[[379,1,1,19,20],[391,1,1,20,21]]],[17,1,1,21,22,[[441,1,1,21,22]]],[25,2,2,22,24,[[844,1,1,22,23],[848,1,1,23,24]]]],[339,483,2775,4276,4819,4828,4992,5702,5909,6133,6204,6207,6312,6799,8222,9571,9572,9903,10902,11458,11715,12984,21596,21690]]]]},{"k":"H4418","v":[["rags",[2,2,[[23,2,2,0,2,[[782,2,2,0,2]]]],[19906,19907]]]]},{"k":"H4419","v":[["mariners",[4,4,[[25,3,3,0,3,[[828,3,3,0,3]]],[31,1,1,3,4,[[889,1,1,3,4]]]],[21130,21148,21150,22536]]]]},{"k":"H4420","v":[["*",[3,3,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]],[23,1,1,2,3,[[761,1,1,2,3]]]],[13840,15733,19363]]],["barrenness",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15733]]],["land",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13840]]],["salt",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19363]]]]},{"k":"H4421","v":[["*",[319,308,[[0,2,2,0,2,[[13,2,2,0,2]]],[1,5,5,2,7,[[50,1,1,2,3],[62,1,1,3,4],[64,1,1,4,5],[66,1,1,5,6],[81,1,1,6,7]]],[3,12,12,7,19,[[126,1,1,7,8],[137,2,2,8,10],[147,5,5,10,15],[148,4,4,15,19]]],[4,18,18,19,37,[[153,1,1,19,20],[154,5,5,20,25],[155,1,1,25,26],[156,1,1,26,27],[172,8,8,27,35],[173,1,1,35,36],[181,1,1,36,37]]],[5,18,18,37,55,[[190,1,1,37,38],[191,2,2,38,40],[192,1,1,40,41],[194,4,4,41,45],[196,2,2,45,47],[197,5,5,47,52],[200,2,2,52,54],[203,1,1,54,55]]],[6,20,18,55,73,[[213,3,3,55,58],[218,1,1,58,59],[228,3,3,59,62],[230,12,10,62,72],[231,1,1,72,73]]],[8,31,29,73,102,[[239,2,2,73,75],[242,1,1,75,76],[243,2,2,76,78],[248,1,1,78,79],[249,4,4,79,83],[251,1,1,83,84],[252,9,8,84,92],[253,2,2,92,94],[254,1,1,94,95],[258,1,1,95,96],[260,1,1,96,97],[261,1,1,97,98],[264,3,2,98,100],[265,1,1,100,101],[266,1,1,101,102]]],[9,29,29,102,131,[[267,3,3,102,105],[268,1,1,105,106],[269,3,3,106,109],[274,1,1,109,110],[276,3,3,110,113],[277,5,5,113,118],[283,1,1,118,119],[284,2,2,119,121],[285,2,2,121,123],[287,5,5,123,128],[288,2,2,128,130],[289,1,1,130,131]]],[10,23,21,131,152,[[292,2,1,131,132],[295,1,1,132,133],[298,1,1,133,134],[299,1,1,134,135],[302,1,1,135,136],[304,1,1,136,137],[305,4,4,137,141],[310,5,5,141,146],[312,7,6,146,152]]],[11,10,10,152,162,[[315,2,2,152,154],[320,1,1,154,155],[325,1,1,155,156],[326,1,1,156,157],[328,1,1,157,158],[330,1,1,158,159],[336,1,1,159,160],[337,2,2,160,162]]],[12,32,31,162,193,[[342,5,5,162,167],[344,3,3,167,170],[347,1,1,170,171],[348,1,1,171,172],[349,9,8,172,180],[351,1,1,180,181],[355,1,1,181,182],[356,5,5,182,187],[357,3,3,187,190],[359,1,1,190,191],[363,1,1,191,192],[365,1,1,192,193]]],[13,32,29,193,222,[[372,1,1,193,194],[374,1,1,194,195],[377,1,1,195,196],[378,1,1,196,197],[379,5,3,197,200],[380,2,2,200,202],[381,1,1,202,203],[382,1,1,203,204],[383,1,1,204,205],[384,6,5,205,210],[386,2,2,210,212],[388,1,1,212,213],[391,2,2,213,215],[392,2,2,215,217],[393,1,1,217,218],[398,3,3,218,221],[401,1,1,221,222]]],[17,4,4,222,226,[[440,1,1,222,223],[473,1,1,223,224],[474,1,1,224,225],[476,1,1,225,226]]],[18,10,10,226,236,[[495,2,2,226,228],[501,1,1,228,229],[504,1,1,229,230],[523,1,1,230,231],[553,1,1,231,232],[566,1,1,232,233],[597,1,1,233,234],[617,1,1,234,235],[621,1,1,235,236]]],[19,3,3,236,239,[[647,1,1,236,237],[648,1,1,237,238],[651,1,1,238,239]]],[20,3,3,239,242,[[661,1,1,239,240],[666,1,1,240,241],[667,1,1,241,242]]],[21,1,1,242,243,[[673,1,1,242,243]]],[22,14,14,243,257,[[680,1,1,243,244],[681,2,2,244,246],[685,1,1,246,247],[691,1,1,247,248],[699,1,1,248,249],[700,1,1,249,250],[705,1,1,250,251],[706,1,1,251,252],[708,1,1,252,253],[714,1,1,253,254],[719,1,1,254,255],[720,2,2,255,257]]],[23,24,24,257,281,[[748,1,1,257,258],[750,2,2,258,260],[752,1,1,260,261],[762,1,1,261,262],[765,1,1,262,263],[772,1,1,263,264],[782,1,1,264,265],[783,1,1,265,266],[785,2,2,266,268],[786,1,1,268,269],[790,1,1,269,270],[792,1,1,270,271],[793,3,3,271,274],[794,3,3,274,277],[795,2,2,277,279],[796,2,2,279,281]]],[25,7,7,281,288,[[808,1,1,281,282],[814,1,1,282,283],[818,1,1,283,284],[828,2,2,284,286],[833,1,1,286,287],[840,1,1,287,288]]],[26,3,3,288,291,[[858,1,1,288,289],[860,2,2,289,291]]],[27,4,4,291,295,[[862,1,1,291,292],[863,1,1,292,293],[871,2,2,293,295]]],[28,4,3,295,298,[[877,2,2,295,297],[878,2,1,297,298]]],[29,1,1,298,299,[[879,1,1,298,299]]],[30,1,1,299,300,[[888,1,1,299,300]]],[32,3,3,300,303,[[894,1,1,300,301],[895,1,1,301,302],[896,1,1,302,303]]],[37,5,5,303,308,[[919,1,1,303,304],[920,3,3,304,307],[924,1,1,307,308]]]],[338,344,1542,1884,1923,1999,2455,3997,4354,4373,4678,4685,4691,4692,4713,4724,4738,4745,4747,4933,4947,4952,4954,4962,4970,4976,5038,5428,5429,5430,5432,5433,5434,5439,5447,5457,5686,5923,5938,5940,5952,6003,6005,6013,6016,6071,6088,6114,6125,6126,6127,6130,6198,6202,6276,6569,6570,6578,6732,7004,7009,7010,7068,7071,7072,7074,7076,7077,7082,7088,7093,7096,7124,7298,7299,7362,7381,7389,7507,7528,7530,7531,7560,7613,7619,7620,7626,7631,7638,7646,7651,7665,7681,7693,7714,7818,7889,7915,7971,7976,8002,8012,8026,8047,8049,8066,8082,8087,8111,8219,8248,8249,8253,8266,8274,8277,8278,8284,8457,8484,8486,8514,8521,8595,8597,8598,8599,8600,8637,8642,8662,8775,8881,9029,9073,9172,9248,9255,9256,9265,9281,9422,9426,9434,9437,9447,9481,9484,9486,9495,9510,9515,9583,9602,9755,9896,9903,9968,10044,10218,10226,10241,10438,10446,10447,10448,10450,10539,10546,10575,10662,10686,10721,10728,10739,10753,10755,10756,10757,10758,10789,10900,10914,10916,10917,10921,10924,10930,10931,10932,10972,11104,11146,11316,11355,11415,11452,11455,11456,11467,11481,11485,11509,11518,11536,11545,11547,11556,11571,11576,11588,11602,11649,11712,11717,11743,11745,11762,11877,11881,11883,11987,12971,13816,13859,13896,14152,14157,14249,14288,14623,15084,15369,16081,16265,16306,16972,17015,17085,17367,17466,17486,17579,17689,17709,17732,17783,17910,18050,18054,18155,18170,18249,18335,18463,18493,18505,19046,19093,19112,19159,19405,19444,19626,19899,19927,19960,19973,19989,20048,20094,20129,20141,20153,20188,20196,20208,20232,20244,20283,20301,20591,20713,20842,21131,21148,21275,21468,22014,22056,22061,22101,22123,22234,22239,22316,22318,22352,22378,22511,22603,22613,22623,23009,23019,23020,23021,23070]]],["+",[13,13,[[3,1,1,0,1,[[147,1,1,0,1]]],[5,2,2,1,3,[[197,1,1,1,2],[200,1,1,2,3]]],[10,1,1,3,4,[[302,1,1,3,4]]],[12,4,4,4,8,[[355,1,1,4,5],[356,3,3,5,8]]],[13,4,4,8,12,[[377,1,1,8,9],[379,1,1,9,10],[380,1,1,10,11],[392,1,1,11,12]]],[28,1,1,12,13,[[877,1,1,12,13]]]],[4678,6130,6202,9172,10900,10916,10917,10924,11415,11456,11485,11743,22316]]],["battle",[138,133,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,4,4,1,5,[[137,1,1,1,2],[147,1,1,2,3],[148,2,2,3,5]]],[4,10,10,5,15,[[154,2,2,5,7],[155,1,1,7,8],[172,6,6,8,14],[181,1,1,14,15]]],[5,4,4,15,19,[[190,1,1,15,16],[194,1,1,16,17],[197,2,2,17,19]]],[6,11,10,19,29,[[218,1,1,19,20],[230,10,9,20,29]]],[8,21,19,29,48,[[239,2,2,29,31],[242,1,1,31,32],[248,1,1,32,33],[249,3,3,33,36],[252,8,7,36,43],[261,1,1,43,44],[264,3,2,44,46],[265,1,1,46,47],[266,1,1,47,48]]],[9,19,19,48,67,[[267,2,2,48,50],[268,1,1,50,51],[269,1,1,51,52],[276,3,3,52,55],[277,2,2,55,57],[284,2,2,57,59],[285,2,2,59,61],[287,4,4,61,65],[288,1,1,65,66],[289,1,1,66,67]]],[10,10,9,67,76,[[298,1,1,67,68],[310,3,3,68,71],[312,6,5,71,76]]],[11,2,2,76,78,[[315,2,2,76,78]]],[12,11,11,78,89,[[342,1,1,78,79],[344,2,2,79,81],[347,1,1,81,82],[348,1,1,82,83],[349,3,3,83,86],[351,1,1,86,87],[356,2,2,87,89]]],[13,11,10,89,99,[[379,2,2,89,91],[384,5,4,91,95],[386,2,2,95,97],[391,2,2,97,99]]],[17,2,2,99,101,[[474,1,1,99,100],[476,1,1,100,101]]],[18,4,4,101,105,[[495,1,1,101,102],[501,1,1,102,103],[553,1,1,103,104],[566,1,1,104,105]]],[19,1,1,105,106,[[648,1,1,105,106]]],[20,1,1,106,107,[[667,1,1,106,107]]],[22,5,5,107,112,[[691,1,1,107,108],[700,1,1,108,109],[705,1,1,109,110],[706,1,1,110,111],[720,1,1,111,112]]],[23,6,6,112,118,[[752,1,1,112,113],[762,1,1,113,114],[790,1,1,114,115],[793,1,1,115,116],[794,2,2,116,118]]],[25,2,2,118,120,[[808,1,1,118,119],[814,1,1,119,120]]],[26,2,2,120,122,[[860,2,2,120,122]]],[27,4,4,122,126,[[862,1,1,122,123],[863,1,1,123,124],[871,2,2,124,126]]],[29,1,1,126,127,[[879,1,1,126,127]]],[30,1,1,127,128,[[888,1,1,127,128]]],[37,5,5,128,133,[[919,1,1,128,129],[920,3,3,129,132],[924,1,1,132,133]]]],[344,4373,4685,4745,4747,4947,4962,4976,5428,5429,5430,5432,5433,5434,5686,5923,6016,6126,6127,6732,7068,7072,7074,7076,7077,7082,7088,7093,7096,7298,7299,7362,7507,7528,7530,7531,7619,7620,7626,7631,7638,7646,7665,7915,7971,7976,8002,8012,8026,8047,8066,8111,8248,8249,8253,8274,8284,8484,8486,8514,8521,8597,8598,8599,8600,8642,8662,9029,9422,9437,9447,9484,9486,9495,9510,9515,9583,9602,10448,10546,10575,10662,10686,10728,10739,10757,10789,10914,10921,11456,11467,11547,11556,11571,11576,11588,11602,11712,11717,13859,13896,14157,14249,15084,15369,17015,17486,17910,18054,18155,18170,18505,19159,19405,20048,20141,20188,20208,20591,20713,22056,22061,22101,22123,22234,22239,22378,22511,23009,23019,23020,23021,23070]]],["battles",[6,6,[[8,3,3,0,3,[[243,1,1,0,1],[253,1,1,1,2],[260,1,1,2,3]]],[12,1,1,3,4,[[363,1,1,3,4]]],[13,1,1,4,5,[[398,1,1,4,5]]],[22,1,1,5,6,[[708,1,1,5,6]]]],[7389,7693,7889,11104,11883,18249]]],["fight",[5,5,[[4,1,1,0,1,[[154,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[10,1,1,2,3,[[310,1,1,2,3]]],[13,1,1,3,4,[[398,1,1,3,4]]],[18,1,1,4,5,[[621,1,1,4,5]]]],[4970,7074,9434,11877,16306]]],["war",[148,145,[[0,1,1,0,1,[[13,1,1,0,1]]],[1,5,5,1,6,[[50,1,1,1,2],[62,1,1,2,3],[64,1,1,3,4],[66,1,1,4,5],[81,1,1,5,6]]],[3,6,6,6,12,[[126,1,1,6,7],[147,3,3,7,10],[148,2,2,10,12]]],[4,7,7,12,19,[[153,1,1,12,13],[154,2,2,13,15],[156,1,1,15,16],[172,2,2,16,18],[173,1,1,18,19]]],[5,12,12,19,31,[[191,2,2,19,21],[192,1,1,21,22],[194,3,3,22,25],[196,2,2,25,27],[197,2,2,27,29],[200,1,1,29,30],[203,1,1,30,31]]],[6,7,7,31,38,[[213,2,2,31,33],[228,3,3,33,36],[230,1,1,36,37],[231,1,1,37,38]]],[8,7,7,38,45,[[243,1,1,38,39],[249,1,1,39,40],[251,1,1,40,41],[252,1,1,41,42],[253,1,1,42,43],[254,1,1,43,44],[258,1,1,44,45]]],[9,9,9,45,54,[[267,1,1,45,46],[269,2,2,46,48],[277,3,3,48,51],[283,1,1,51,52],[287,1,1,52,53],[288,1,1,53,54]]],[10,10,9,54,63,[[292,2,1,54,55],[299,1,1,55,56],[304,1,1,56,57],[305,4,4,57,61],[310,1,1,61,62],[312,1,1,62,63]]],[11,8,8,63,71,[[320,1,1,63,64],[325,1,1,64,65],[326,1,1,65,66],[328,1,1,66,67],[330,1,1,67,68],[336,1,1,68,69],[337,2,2,69,71]]],[12,15,14,71,85,[[342,4,4,71,75],[344,1,1,75,76],[349,6,5,76,81],[357,3,3,81,84],[365,1,1,84,85]]],[13,12,12,85,97,[[372,1,1,85,86],[374,1,1,86,87],[379,2,2,87,89],[380,1,1,89,90],[381,1,1,90,91],[383,1,1,91,92],[384,1,1,92,93],[388,1,1,93,94],[392,1,1,94,95],[398,1,1,95,96],[401,1,1,96,97]]],[17,2,2,97,99,[[440,1,1,97,98],[473,1,1,98,99]]],[18,4,4,99,103,[[495,1,1,99,100],[504,1,1,100,101],[597,1,1,101,102],[617,1,1,102,103]]],[19,2,2,103,105,[[647,1,1,103,104],[651,1,1,104,105]]],[20,2,2,105,107,[[661,1,1,105,106],[666,1,1,106,107]]],[21,1,1,107,108,[[673,1,1,107,108]]],[22,8,8,108,116,[[680,1,1,108,109],[681,2,2,109,111],[685,1,1,111,112],[699,1,1,112,113],[714,1,1,113,114],[719,1,1,114,115],[720,1,1,115,116]]],[23,18,18,116,134,[[748,1,1,116,117],[750,2,2,117,119],[765,1,1,119,120],[772,1,1,120,121],[782,1,1,121,122],[783,1,1,122,123],[785,2,2,123,125],[786,1,1,125,126],[792,1,1,126,127],[793,2,2,127,129],[794,1,1,129,130],[795,2,2,130,132],[796,2,2,132,134]]],[25,5,5,134,139,[[818,1,1,134,135],[828,2,2,135,137],[833,1,1,137,138],[840,1,1,138,139]]],[26,1,1,139,140,[[858,1,1,139,140]]],[28,3,2,140,142,[[877,1,1,140,141],[878,2,1,141,142]]],[32,3,3,142,145,[[894,1,1,142,143],[895,1,1,143,144],[896,1,1,144,145]]]],[338,1542,1884,1923,1999,2455,3997,4691,4692,4713,4724,4738,4933,4952,4954,5038,5439,5447,5457,5938,5940,5952,6003,6005,6013,6071,6088,6114,6125,6198,6276,6570,6578,7004,7009,7010,7071,7124,7381,7560,7613,7651,7681,7714,7818,8049,8082,8087,8266,8277,8278,8457,8595,8637,8775,9073,9248,9255,9256,9265,9281,9426,9481,9755,9896,9903,9968,10044,10218,10226,10241,10438,10446,10447,10450,10539,10721,10753,10755,10756,10758,10930,10931,10932,11146,11316,11355,11455,11456,11481,11509,11536,11545,11649,11745,11881,11987,12971,13816,14152,14288,16081,16265,16972,17085,17367,17466,17579,17689,17709,17732,17783,18050,18335,18463,18493,19046,19093,19112,19444,19626,19899,19927,19960,19973,19989,20094,20129,20153,20196,20232,20244,20283,20301,20842,21131,21148,21275,21468,22014,22318,22352,22603,22613,22623]]],["wars",[9,9,[[3,1,1,0,1,[[137,1,1,0,1]]],[6,1,1,1,2,[[213,1,1,1,2]]],[9,1,1,2,3,[[274,1,1,2,3]]],[10,1,1,3,4,[[295,1,1,3,4]]],[12,1,1,4,5,[[359,1,1,4,5]]],[13,3,3,5,8,[[378,1,1,5,6],[382,1,1,6,7],[393,1,1,7,8]]],[18,1,1,8,9,[[523,1,1,8,9]]]],[4354,6569,8219,8881,10972,11452,11518,11762,14623]]]]},{"k":"H4422","v":[["*",[95,85,[[0,5,4,0,4,[[18,5,4,0,4]]],[6,3,2,4,6,[[213,3,2,4,6]]],[8,13,11,6,17,[[254,5,5,6,11],[255,1,1,11,12],[257,2,2,12,14],[258,1,1,14,15],[262,3,1,15,16],[265,1,1,16,17]]],[9,4,4,17,21,[[267,1,1,17,18],[270,1,1,18,19],[285,2,2,19,21]]],[10,5,4,21,25,[[291,1,1,21,22],[308,1,1,22,23],[309,2,1,23,24],[310,1,1,24,25]]],[11,3,3,25,28,[[322,1,1,25,26],[331,1,1,26,27],[335,1,1,27,28]]],[13,1,1,28,29,[[382,1,1,28,29]]],[16,1,1,29,30,[[429,1,1,29,30]]],[17,11,10,30,40,[[436,4,4,30,34],[441,1,1,34,35],[454,1,1,35,36],[455,1,1,36,37],[457,2,1,37,38],[464,1,1,38,39],[476,1,1,39,40]]],[18,8,7,40,47,[[499,1,1,40,41],[510,1,1,41,42],[518,1,1,42,43],[566,1,1,43,44],[584,1,1,44,45],[593,1,1,45,46],[601,2,1,46,47]]],[19,3,3,47,50,[[638,1,1,47,48],[646,1,1,48,49],[655,1,1,49,50]]],[20,3,3,50,53,[[665,1,1,50,51],[666,1,1,51,52],[667,1,1,52,53]]],[22,9,9,53,62,[[698,1,1,53,54],[709,1,1,54,55],[712,1,1,55,56],[715,1,1,56,57],[724,2,2,57,59],[727,2,2,59,61],[744,1,1,61,62]]],[23,13,12,62,74,[[776,1,1,62,63],[778,1,1,63,64],[782,2,2,64,66],[783,2,1,66,67],[785,1,1,67,68],[790,1,1,68,69],[792,3,3,69,72],[795,2,2,72,74]]],[25,4,3,74,77,[[818,3,2,74,76],[834,1,1,76,77]]],[26,2,2,77,79,[[860,1,1,77,78],[861,1,1,78,79]]],[28,1,1,79,80,[[877,1,1,79,80]]],[29,4,3,80,83,[[880,3,2,80,82],[887,1,1,82,83]]],[37,1,1,83,84,[[912,1,1,83,84]]],[38,1,1,84,85,[[927,1,1,84,85]]]],[474,476,477,479,6594,6597,7716,7717,7718,7723,7724,7759,7788,7807,7823,7931,7995,8025,8126,8516,8520,8729,9381,9404,9428,9817,10098,10183,11516,12775,12884,12885,12886,12888,13001,13317,13346,13419,13544,13907,14209,14383,14543,15374,15719,15852,16109,16709,16930,17222,17455,17466,17490,18035,18255,18318,18390,18588,18590,18660,18661,18929,19735,19804,19913,19918,19941,19972,20051,20086,20088,20099,20218,20257,20840,20843,21285,22077,22082,22343,22393,22394,22496,22906,23135]]],["+",[9,7,[[8,2,1,0,1,[[262,2,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]],[10,1,1,2,3,[[291,1,1,2,3]]],[11,1,1,3,4,[[335,1,1,3,4]]],[20,2,2,4,6,[[666,1,1,4,5],[667,1,1,5,6]]],[23,2,1,6,7,[[783,2,1,6,7]]]],[7931,8516,8729,10183,17466,17490,19941]]],["Deliver",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[13001]]],["Escape",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[474]]],["away",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7759]]],["deliver",[13,12,[[17,1,1,0,1,[[457,1,1,0,1]]],[18,4,4,1,5,[[510,1,1,1,2],[518,1,1,2,3],[566,1,1,3,4],[593,1,1,4,5]]],[22,2,2,5,7,[[724,2,2,5,7]]],[23,2,2,7,9,[[795,2,2,7,9]]],[25,1,1,9,10,[[834,1,1,9,10]]],[29,3,2,10,12,[[880,3,2,10,12]]]],[13419,14383,14543,15374,15852,18588,18590,20218,20257,21285,22393,22394]]],["delivered",[15,15,[[9,1,1,0,1,[[285,1,1,0,1]]],[17,2,2,1,3,[[457,1,1,1,2],[464,1,1,2,3]]],[18,2,2,3,5,[[499,1,1,3,4],[584,1,1,4,5]]],[19,2,2,5,7,[[638,1,1,5,6],[655,1,1,6,7]]],[22,3,3,7,10,[[727,2,2,7,9],[744,1,1,9,10]]],[25,1,1,10,11,[[818,1,1,10,11]]],[26,1,1,11,12,[[861,1,1,11,12]]],[28,1,1,12,13,[[877,1,1,12,13]]],[29,1,1,13,14,[[887,1,1,13,14]]],[38,1,1,14,15,[[927,1,1,14,15]]]],[8520,13419,13544,14209,15719,16709,17222,18660,18661,18929,20840,22082,22343,22496,23135]]],["escape",[20,20,[[0,4,4,0,4,[[18,4,4,0,4]]],[8,1,1,4,5,[[262,1,1,4,5]]],[10,1,1,5,6,[[308,1,1,5,6]]],[11,1,1,6,7,[[322,1,1,6,7]]],[16,1,1,7,8,[[429,1,1,7,8]]],[19,1,1,8,9,[[646,1,1,8,9]]],[20,1,1,9,10,[[665,1,1,9,10]]],[22,1,1,10,11,[[698,1,1,10,11]]],[23,6,6,11,17,[[776,1,1,11,12],[778,1,1,12,13],[782,2,2,13,15],[790,1,1,15,16],[792,1,1,16,17]]],[25,2,2,17,19,[[818,2,2,17,19]]],[26,1,1,19,20,[[860,1,1,19,20]]]],[474,476,477,479,7931,9381,9817,12775,16930,17455,18035,19735,19804,19913,19918,20051,20088,20840,20843,22077]]],["escaped",[25,23,[[6,3,2,0,2,[[213,3,2,0,2]]],[8,8,8,2,10,[[254,4,4,2,6],[257,2,2,6,8],[258,1,1,8,9],[265,1,1,9,10]]],[9,2,2,10,12,[[267,1,1,10,11],[270,1,1,11,12]]],[10,1,1,12,13,[[310,1,1,12,13]]],[11,1,1,13,14,[[331,1,1,13,14]]],[13,1,1,14,15,[[382,1,1,14,15]]],[17,5,5,15,20,[[436,4,4,15,19],[454,1,1,19,20]]],[18,2,1,20,21,[[601,2,1,20,21]]],[22,1,1,21,22,[[715,1,1,21,22]]],[23,1,1,22,23,[[785,1,1,22,23]]]],[6594,6597,7716,7718,7723,7724,7788,7807,7823,7995,8025,8126,9428,10098,11516,12884,12885,12886,12888,13317,16109,18390,19972]]],["escapeth",[3,2,[[10,2,1,0,1,[[309,2,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[9404,20099]]],["lay",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18318]]],["out",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13907]]],["preserve",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18255]]],["save",[3,3,[[8,1,1,0,1,[[254,1,1,0,1]]],[17,1,1,1,2,[[455,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[7717,13346,20086]]],["thyself",[1,1,[[37,1,1,0,1,[[912,1,1,0,1]]]],[22906]]]]},{"k":"H4423","v":[["clay",[1,1,[[23,1,1,0,1,[[787,1,1,0,1]]]],[20006]]]]},{"k":"H4424","v":[["Melatiah",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12334]]]]},{"k":"H4425","v":[["ears",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5525]]]]},{"k":"H4426","v":[["*",[2,2,[[19,1,1,0,1,[[628,1,1,0,1]]],[34,1,1,1,2,[[904,1,1,1,2]]]],[16406,22754]]],["interpretation",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16406]]],["taunting",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22754]]]]},{"k":"H4427","v":[["*",[350,284,[[0,12,10,0,10,[[35,10,9,0,9],[36,2,1,9,10]]],[1,1,1,10,11,[[64,1,1,10,11]]],[5,3,3,11,14,[[199,3,3,11,14]]],[6,8,8,14,22,[[214,1,1,14,15],[219,7,7,15,22]]],[8,17,15,22,37,[[243,4,4,22,26],[246,2,2,26,28],[247,3,3,28,31],[248,2,1,31,32],[250,2,2,32,34],[251,1,1,34,35],[258,1,1,35,36],[259,2,1,36,37]]],[9,12,9,37,46,[[268,3,2,37,39],[269,1,1,39,40],[271,4,2,40,42],[274,1,1,42,43],[276,1,1,43,44],[281,1,1,44,45],[282,1,1,45,46]]],[10,62,51,46,97,[[291,10,9,46,55],[292,4,2,55,57],[293,1,1,57,58],[296,1,1,58,59],[301,5,5,59,64],[302,3,3,64,67],[304,7,4,67,71],[305,11,10,71,81],[306,13,11,81,92],[312,7,5,92,97]]],[11,92,73,97,170,[[313,1,1,97,98],[315,3,2,98,100],[320,9,7,100,107],[321,2,2,107,109],[322,3,3,109,112],[323,3,3,112,115],[324,3,2,115,117],[325,4,4,117,121],[326,7,6,121,127],[327,19,16,127,143],[328,4,3,143,146],[329,2,2,146,148],[330,3,2,148,150],[331,1,1,150,151],[332,1,1,151,152],[333,7,5,152,157],[334,2,1,157,158],[335,8,5,158,163],[336,8,5,163,168],[337,2,2,168,170]]],[12,27,22,170,192,[[338,9,8,170,178],[340,2,1,178,179],[341,1,1,179,180],[348,1,1,180,181],[349,3,2,181,183],[353,1,1,183,184],[355,1,1,184,185],[356,1,1,185,186],[360,1,1,186,187],[365,1,1,187,188],[366,6,4,188,192]]],[13,79,57,192,249,[[367,4,4,192,196],[375,2,2,196,198],[376,2,2,198,200],[377,1,1,200,201],[378,4,2,201,203],[379,2,2,203,205],[380,1,1,205,206],[382,1,1,206,207],[383,2,2,207,209],[386,3,1,209,210],[387,6,4,210,214],[388,5,3,214,217],[389,2,2,217,219],[390,3,2,219,221],[391,2,1,221,222],[392,4,3,222,225],[393,5,3,225,228],[394,3,2,228,230],[395,3,2,230,232],[398,1,1,232,233],[399,6,4,233,237],[400,4,3,237,240],[402,13,9,240,249]]],[15,1,1,249,250,[[417,1,1,249,250]]],[16,4,4,250,254,[[426,2,2,250,252],[427,2,2,252,254]]],[17,1,1,254,255,[[469,1,1,254,255]]],[18,6,6,255,261,[[524,1,1,255,256],[570,1,1,256,257],[573,1,1,257,258],[574,1,1,258,259],[576,1,1,259,260],[623,1,1,260,261]]],[19,2,2,261,263,[[635,1,1,261,262],[657,1,1,262,263]]],[20,1,1,263,264,[[662,1,1,263,264]]],[22,5,5,264,269,[[685,1,1,264,265],[702,1,1,265,266],[710,1,1,266,267],[715,1,1,267,268],[730,1,1,268,269]]],[23,11,9,269,278,[[745,1,1,269,270],[766,2,2,270,272],[767,1,1,272,273],[777,1,1,273,274],[781,2,1,274,275],[795,1,1,275,276],[796,3,2,276,278]]],[25,2,2,278,280,[[818,1,1,278,279],[821,1,1,279,280]]],[26,2,2,280,282,[[858,2,2,280,282]]],[27,1,1,282,283,[[869,1,1,282,283]]],[32,1,1,283,284,[[896,1,1,283,284]]]],[1071,1072,1073,1074,1075,1076,1077,1078,1079,1091,1938,6164,6166,6175,6601,6760,6762,6764,6766,6768,6770,6772,7376,7378,7380,7391,7457,7460,7461,7472,7474,7486,7571,7595,7596,7827,7859,8058,8059,8102,8136,8137,8224,8241,8399,8434,8722,8728,8730,8734,8735,8741,8747,8752,8760,8781,8785,8823,8897,9132,9133,9145,9150,9151,9152,9168,9171,9237,9238,9239,9249,9250,9251,9257,9258,9259,9273,9274,9277,9278,9282,9289,9291,9293,9294,9298,9299,9304,9305,9306,9311,9312,9520,9521,9522,9530,9531,9550,9577,9603,9742,9743,9744,9747,9751,9752,9753,9769,9785,9798,9828,9829,9832,9841,9850,9851,9871,9872,9880,9881,9895,9897,9898,9912,9917,9919,9925,9926,9927,9932,9933,9935,9938,9939,9942,9947,9948,9950,9952,9955,9957,9958,9963,9964,9965,9983,9984,10004,10025,10026,10098,10119,10120,10137,10138,10143,10145,10146,10195,10196,10198,10199,10201,10208,10210,10214,10219,10220,10223,10249,10295,10296,10297,10298,10299,10300,10301,10302,10365,10416,10683,10751,10758,10851,10904,10908,10984,11147,11186,11190,11191,11192,11202,11203,11205,11207,11394,11395,11396,11412,11436,11450,11453,11454,11455,11476,11522,11524,11530,11618,11625,11629,11632,11644,11645,11646,11656,11659,11667,11678,11704,11705,11733,11735,11755,11756,11763,11764,11765,11791,11792,11794,11908,11909,11928,11929,11933,11934,11936,11941,11994,11995,11997,11998,12001,12002,12003,12004,12013,12389,12703,12705,12728,12741,13713,14633,15427,15475,15479,15500,16351,16617,17273,17395,17788,18118,18260,18390,18703,18948,19465,19469,19489,19796,19875,20271,20277,20280,20841,20928,21989,21990,22198,22627]]],["+",[37,34,[[0,2,1,0,1,[[36,2,1,0,1]]],[6,2,2,1,3,[[219,2,2,1,3]]],[8,9,8,3,11,[[243,2,2,3,5],[246,1,1,5,6],[247,1,1,6,7],[250,2,2,7,9],[251,1,1,9,10],[259,2,1,10,11]]],[10,4,4,11,15,[[291,1,1,11,12],[302,2,2,12,14],[305,1,1,14,15]]],[11,7,7,15,22,[[322,1,1,15,16],[323,1,1,16,17],[326,1,1,17,18],[335,3,3,18,21],[336,1,1,21,22]]],[12,4,3,22,25,[[349,3,2,22,24],[360,1,1,24,25]]],[13,6,6,25,31,[[376,1,1,25,26],[387,1,1,26,27],[389,1,1,27,28],[392,1,1,28,29],[399,1,1,29,30],[402,1,1,30,31]]],[17,1,1,31,32,[[469,1,1,31,32]]],[22,1,1,32,33,[[685,1,1,32,33]]],[25,1,1,33,34,[[818,1,1,33,34]]]],[1091,6760,6770,7376,7391,7460,7461,7571,7595,7596,7859,8760,9152,9171,9258,9798,9841,9917,10195,10198,10199,10219,10751,10758,10984,11396,11632,11667,11733,11933,12003,13713,17788,20841]]],["Reign",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6762]]],["consulted",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12389]]],["king",[23,23,[[6,1,1,0,1,[[219,1,1,0,1]]],[8,1,1,1,2,[[258,1,1,1,2]]],[9,1,1,2,3,[[268,1,1,2,3]]],[10,5,5,3,8,[[291,2,2,3,5],[293,1,1,5,6],[306,2,2,6,8]]],[11,5,5,8,13,[[321,1,1,8,9],[329,1,1,9,10],[333,1,1,10,11],[335,1,1,11,12],[336,1,1,12,13]]],[12,2,2,13,15,[[348,1,1,13,14],[365,1,1,14,15]]],[13,6,6,15,21,[[367,2,2,15,17],[377,1,1,17,18],[388,1,1,18,19],[402,2,2,19,21]]],[23,1,1,21,22,[[781,1,1,21,22]]],[26,1,1,22,23,[[858,1,1,22,23]]]],[6772,7827,8058,8722,8752,8823,9299,9304,9769,10004,10143,10199,10219,10683,11147,11203,11205,11436,11645,11994,11997,19875,21989]]],["kings",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22198]]],["made",[2,2,[[11,1,1,0,1,[[320,1,1,0,1]]],[12,1,1,1,2,[[366,1,1,1,2]]]],[9747,11186]]],["queen",[2,2,[[16,2,2,0,2,[[427,2,2,0,2]]]],[12728,12741]]],["reign",[112,111,[[1,1,1,0,1,[[64,1,1,0,1]]],[6,3,3,1,4,[[219,3,3,1,4]]],[8,4,4,4,8,[[243,2,2,4,6],[246,1,1,6,7],[247,1,1,7,8]]],[9,3,3,8,11,[[268,1,1,8,9],[269,1,1,9,10],[271,1,1,10,11]]],[10,20,19,11,30,[[291,6,5,11,16],[292,1,1,16,17],[296,1,1,17,18],[301,1,1,18,19],[304,1,1,19,20],[305,2,2,20,22],[306,5,5,22,27],[312,3,3,27,30]]],[11,37,37,30,67,[[315,1,1,30,31],[320,4,4,31,35],[321,1,1,35,36],[323,2,2,36,38],[324,1,1,38,39],[325,2,2,39,41],[326,2,2,41,43],[327,9,9,43,52],[328,2,2,52,54],[329,1,1,54,55],[330,2,2,55,57],[333,2,2,57,59],[334,1,1,59,60],[335,2,2,60,62],[336,3,3,62,65],[337,2,2,65,67]]],[12,1,1,67,68,[[341,1,1,67,68]]],[13,28,28,68,96,[[367,1,1,68,69],[378,1,1,69,70],[379,1,1,70,71],[382,1,1,71,72],[383,1,1,72,73],[386,1,1,73,74],[387,2,2,74,76],[388,1,1,76,77],[389,1,1,77,78],[390,1,1,78,79],[391,1,1,79,80],[392,1,1,80,81],[393,2,2,81,83],[394,1,1,83,84],[395,2,2,84,86],[399,2,2,86,88],[400,3,3,88,91],[402,5,5,91,96]]],[16,1,1,96,97,[[426,1,1,96,97]]],[18,1,1,97,98,[[623,1,1,97,98]]],[19,1,1,98,99,[[635,1,1,98,99]]],[20,1,1,99,100,[[662,1,1,99,100]]],[22,2,2,100,102,[[702,1,1,100,101],[710,1,1,101,102]]],[23,7,7,102,109,[[745,1,1,102,103],[766,1,1,103,104],[767,1,1,104,105],[777,1,1,105,106],[795,1,1,106,107],[796,2,2,107,109]]],[26,1,1,109,110,[[858,1,1,109,110]]],[32,1,1,110,111,[[896,1,1,110,111]]]],[1938,6764,6766,6768,7378,7380,7457,7472,8059,8102,8136,8728,8730,8734,8741,8747,8785,8897,9145,9239,9274,9282,9291,9294,9298,9306,9312,9521,9522,9531,9577,9743,9744,9752,9753,9785,9832,9850,9851,9872,9881,9898,9919,9926,9927,9933,9938,9942,9948,9952,9957,9958,9964,9965,9984,10025,10026,10120,10138,10146,10196,10201,10210,10214,10220,10223,10249,10416,11202,11450,11454,11522,11530,11618,11629,11644,11646,11659,11678,11705,11735,11756,11763,11765,11792,11794,11909,11929,11934,11936,11941,11995,11998,12002,12004,12013,12705,16351,16617,17395,18118,18260,18948,19469,19489,19796,20271,20277,20280,21990,22627]]],["reigned",[159,146,[[0,10,9,0,9,[[35,10,9,0,9]]],[5,3,3,9,12,[[199,3,3,9,12]]],[6,1,1,12,13,[[214,1,1,12,13]]],[8,2,1,13,14,[[248,2,1,13,14]]],[9,7,6,14,20,[[268,1,1,14,15],[271,3,2,15,17],[274,1,1,17,18],[276,1,1,18,19],[282,1,1,19,20]]],[10,32,28,20,48,[[292,3,1,20,21],[301,4,4,21,25],[302,1,1,25,26],[304,6,4,26,30],[305,8,8,30,38],[306,6,6,38,44],[312,4,4,44,48]]],[11,42,42,48,90,[[313,1,1,48,49],[315,2,2,49,51],[320,4,4,51,55],[322,2,2,55,57],[324,2,2,57,59],[325,2,2,59,61],[326,4,4,61,65],[327,10,10,65,75],[328,2,2,75,77],[330,1,1,77,78],[331,1,1,78,79],[332,1,1,79,80],[333,4,4,80,84],[334,1,1,84,85],[335,2,2,85,87],[336,3,3,87,90]]],[12,18,14,90,104,[[338,9,8,90,98],[340,2,1,98,99],[355,1,1,99,100],[356,1,1,100,101],[366,5,3,101,104]]],[13,39,37,104,141,[[367,1,1,104,105],[375,2,2,105,107],[376,1,1,107,108],[378,3,2,108,110],[379,1,1,110,111],[380,1,1,111,112],[383,1,1,112,113],[386,2,1,113,114],[387,3,3,114,117],[388,3,3,117,120],[390,2,2,120,122],[391,1,1,122,123],[392,2,2,123,125],[393,3,3,125,128],[394,2,2,128,130],[395,1,1,130,131],[398,1,1,131,132],[399,3,3,132,135],[400,1,1,135,136],[402,5,5,136,141]]],[16,1,1,141,142,[[426,1,1,141,142]]],[22,1,1,142,143,[[715,1,1,142,143]]],[23,3,3,143,146,[[766,1,1,143,144],[781,1,1,144,145],[796,1,1,145,146]]]],[1071,1072,1073,1074,1075,1076,1077,1078,1079,6164,6166,6175,6601,7486,8059,8136,8137,8224,8241,8434,8781,9132,9133,9150,9151,9168,9237,9238,9239,9249,9250,9251,9257,9259,9273,9274,9277,9278,9289,9293,9305,9306,9311,9312,9520,9522,9530,9531,9550,9577,9603,9742,9744,9751,9753,9828,9829,9851,9871,9880,9895,9897,9898,9912,9925,9927,9932,9935,9938,9939,9947,9950,9955,9958,9963,9965,9983,10026,10098,10119,10120,10137,10138,10145,10146,10196,10201,10208,10210,10220,10295,10296,10297,10298,10299,10300,10301,10302,10365,10904,10908,11190,11191,11192,11207,11394,11395,11412,11450,11453,11455,11476,11524,11618,11625,11629,11644,11645,11646,11656,11678,11704,11705,11735,11755,11756,11763,11764,11765,11791,11792,11908,11909,11928,11929,11934,11995,11998,12001,12002,12004,12703,18390,19465,19875,20277]]],["reigneth",[11,11,[[8,1,1,0,1,[[247,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]],[10,1,1,2,3,[[291,1,1,2,3]]],[12,1,1,3,4,[[353,1,1,3,4]]],[18,5,5,4,9,[[524,1,1,4,5],[570,1,1,5,6],[573,1,1,6,7],[574,1,1,7,8],[576,1,1,8,9]]],[19,1,1,9,10,[[657,1,1,9,10]]],[22,1,1,10,11,[[730,1,1,10,11]]]],[7474,8399,8735,10851,14633,15427,15475,15479,15500,17273,18703]]],["rule",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20928]]]]},{"k":"H4428","v":[["*",[2521,1919,[[0,41,22,0,22,[[13,27,10,0,10],[16,2,2,10,12],[19,1,1,12,13],[25,2,2,13,15],[34,1,1,15,16],[35,2,1,16,17],[38,1,1,17,18],[39,3,2,18,20],[40,1,1,20,21],[48,1,1,21,22]]],[1,14,14,22,36,[[50,4,4,22,26],[51,1,1,26,27],[52,2,2,27,29],[54,1,1,29,30],[55,4,4,30,34],[63,2,2,34,36]]],[3,20,17,36,53,[[136,2,2,36,38],[137,8,7,38,45],[138,2,2,45,47],[139,2,2,47,49],[140,1,1,49,50],[147,2,1,50,51],[148,2,1,51,52],[149,1,1,52,53]]],[4,26,22,53,75,[[153,2,1,53,54],[154,3,3,54,57],[155,7,7,57,64],[156,3,2,64,66],[159,2,2,66,68],[163,1,1,68,69],[169,3,2,69,71],[180,1,1,71,72],[181,2,1,72,73],[183,1,1,73,74],[185,1,1,74,75]]],[5,109,62,75,137,[[188,3,3,75,78],[191,2,1,78,79],[192,1,1,79,80],[194,6,5,80,85],[195,4,2,85,87],[196,39,16,87,103],[197,11,7,103,110],[198,37,21,110,131],[199,4,4,131,135],[210,2,2,135,137]]],[6,37,32,137,169,[[211,1,1,137,138],[213,7,7,138,145],[214,5,4,145,149],[215,3,2,149,151],[218,4,4,151,155],[219,3,3,155,158],[221,10,7,158,165],[227,1,1,165,166],[228,1,1,166,167],[229,1,1,167,168],[231,1,1,168,169]]],[8,86,75,169,244,[[237,1,1,169,170],[243,9,9,170,179],[245,2,2,179,181],[247,12,9,181,190],[249,1,1,190,191],[250,8,8,191,199],[251,1,1,199,200],[252,3,3,200,203],[253,10,7,203,210],[254,1,1,210,211],[255,4,4,211,215],[256,5,5,215,220],[257,11,8,220,228],[258,2,1,228,229],[259,2,2,229,231],[260,1,1,231,232],[261,8,7,232,239],[262,2,2,239,241],[263,1,1,241,242],[264,2,2,242,244]]],[9,284,204,244,448,[[268,3,3,244,247],[269,12,12,247,259],[270,2,1,259,260],[271,8,6,260,266],[272,3,3,266,269],[273,4,4,269,273],[274,7,7,273,280],[275,11,7,280,287],[276,4,4,287,291],[277,8,7,291,298],[278,2,2,298,300],[279,24,19,300,319],[280,40,23,319,342],[281,22,16,342,358],[282,14,9,358,367],[283,4,4,367,371],[284,26,18,371,389],[285,63,38,389,427],[286,5,5,427,432],[287,6,6,432,438],[288,1,1,438,439],[290,15,9,439,448]]],[10,305,231,448,679,[[291,60,35,448,483],[292,24,19,483,502],[293,13,11,502,513],[294,10,7,513,520],[295,4,3,520,523],[296,1,1,523,524],[297,6,6,524,530],[298,8,8,530,538],[299,9,8,538,546],[300,22,17,546,563],[301,8,8,563,571],[302,13,10,571,581],[303,6,5,581,586],[304,10,8,586,594],[305,20,15,594,609],[306,14,13,609,622],[309,2,2,622,624],[310,29,22,624,646],[311,4,4,646,650],[312,42,29,650,679]]],[11,370,268,679,947,[[313,7,7,679,686],[315,24,14,686,700],[316,1,1,700,701],[317,7,5,701,706],[318,13,10,706,716],[319,12,9,716,725],[320,24,16,725,741],[321,13,11,741,752],[322,7,6,752,758],[323,20,13,758,771],[324,9,6,771,777],[325,15,13,777,790],[326,22,15,790,805],[327,25,20,805,825],[328,27,15,825,840],[329,14,11,840,851],[330,32,21,851,872],[331,16,13,872,885],[332,5,5,885,890],[333,6,6,890,896],[334,12,8,896,904],[335,20,15,904,919],[336,17,11,919,930],[337,22,17,930,947]]],[12,69,60,947,1007,[[338,2,1,947,948],[340,1,1,948,949],[341,2,2,949,951],[342,5,3,951,954],[346,2,2,954,956],[348,3,2,956,958],[351,3,3,958,961],[352,1,1,961,962],[353,1,1,962,963],[354,1,1,963,964],[355,7,6,964,970],[356,4,4,970,974],[357,2,2,974,976],[358,5,5,976,981],[361,2,2,981,983],[362,3,3,983,986],[363,4,3,986,989],[364,8,7,989,996],[365,4,3,996,999],[366,9,8,999,1007]]],[13,277,218,1007,1225,[[367,6,5,1007,1012],[368,4,3,1012,1015],[370,3,3,1015,1018],[371,2,2,1018,1020],[372,1,1,1020,1021],[373,5,4,1021,1025],[374,4,4,1025,1029],[375,21,16,1029,1045],[376,10,7,1045,1052],[377,1,1,1052,1053],[378,9,6,1053,1059],[379,1,1,1059,1060],[381,1,1,1060,1061],[382,11,7,1061,1068],[383,2,1,1068,1069],[384,30,21,1069,1090],[385,3,3,1090,1093],[386,4,3,1093,1096],[387,7,7,1096,1103],[388,8,4,1103,1107],[389,17,11,1107,1118],[390,14,12,1118,1130],[391,15,10,1130,1140],[392,7,6,1140,1146],[393,2,2,1146,1148],[394,15,11,1148,1159],[395,10,10,1159,1169],[396,8,6,1169,1175],[397,2,2,1175,1177],[398,13,12,1177,1189],[399,3,3,1189,1192],[400,15,12,1192,1204],[401,12,11,1204,1215],[402,11,10,1215,1225]]],[14,32,25,1225,1250,[[403,5,4,1225,1229],[404,1,1,1229,1230],[405,2,2,1230,1232],[406,6,4,1232,1236],[408,1,1,1236,1237],[409,8,7,1237,1244],[410,6,4,1244,1248],[411,3,2,1248,1250]]],[15,43,29,1250,1279,[[413,1,1,1250,1251],[414,19,12,1251,1263],[415,2,2,1263,1265],[417,2,2,1265,1267],[418,3,2,1267,1269],[419,1,1,1269,1270],[421,7,5,1270,1275],[423,2,2,1275,1277],[425,6,2,1277,1279]]],[16,196,119,1279,1398,[[426,27,18,1279,1297],[427,30,18,1297,1315],[428,22,11,1315,1326],[429,14,9,1326,1335],[430,23,12,1335,1347],[431,26,13,1347,1360],[432,16,10,1360,1370],[433,22,14,1370,1384],[434,12,11,1384,1395],[435,4,3,1395,1398]]],[17,8,8,1398,1406,[[438,1,1,1398,1399],[447,1,1,1399,1400],[450,1,1,1400,1401],[453,1,1,1401,1402],[464,1,1,1402,1403],[469,1,1,1403,1404],[471,1,1,1404,1405],[476,1,1,1405,1406]]],[18,67,63,1406,1469,[[479,3,3,1406,1409],[482,1,1,1409,1410],[487,1,1,1410,1411],[495,1,1,1411,1412],[497,1,1,1412,1413],[498,2,2,1413,1415],[501,5,4,1415,1419],[506,1,1,1419,1420],[510,1,1,1420,1421],[521,1,1,1421,1422],[522,7,7,1422,1429],[524,3,3,1429,1432],[525,2,2,1432,1434],[538,1,1,1434,1435],[540,1,1,1435,1436],[545,4,4,1436,1440],[549,5,3,1440,1443],[551,1,1,1443,1444],[553,1,1,1444,1445],[561,1,1,1445,1446],[566,2,2,1446,1448],[572,1,1,1448,1449],[575,1,1,1449,1450],[576,1,1,1450,1451],[579,1,1,1451,1452],[582,3,3,1452,1455],[587,1,1,1455,1456],[596,1,1,1456,1457],[612,3,2,1457,1459],[613,4,4,1459,1463],[615,1,1,1463,1464],[621,1,1,1464,1465],[622,1,1,1465,1466],[625,1,1,1466,1467],[626,2,2,1467,1469]]],[19,32,31,1469,1500,[[628,1,1,1469,1470],[635,1,1,1470,1471],[641,2,2,1471,1473],[643,5,5,1473,1478],[646,1,1,1478,1479],[647,4,4,1479,1483],[648,1,1,1483,1484],[649,2,2,1484,1486],[651,1,1,1486,1487],[652,5,5,1487,1492],[656,2,2,1492,1494],[657,3,3,1494,1497],[658,4,3,1497,1500]]],[20,12,12,1500,1512,[[659,2,2,1500,1502],[660,2,2,1502,1504],[662,1,1,1504,1505],[663,1,1,1505,1506],[666,2,2,1506,1508],[667,1,1,1508,1509],[668,3,3,1509,1512]]],[21,5,5,1512,1517,[[671,2,2,1512,1514],[673,2,2,1514,1516],[677,1,1,1516,1517]]],[22,80,71,1517,1588,[[679,1,1,1517,1518],[684,2,2,1518,1520],[685,7,5,1520,1525],[686,3,3,1525,1528],[688,2,2,1528,1530],[692,4,4,1530,1534],[697,2,2,1534,1536],[698,3,3,1536,1539],[701,1,1,1539,1540],[702,1,1,1540,1541],[708,1,1,1541,1542],[710,1,1,1542,1543],[711,2,2,1543,1545],[714,15,11,1545,1556],[715,16,13,1556,1569],[716,2,2,1569,1571],[717,3,3,1571,1574],[719,2,2,1574,1576],[721,1,1,1576,1577],[722,1,1,1577,1578],[723,1,1,1578,1579],[727,2,2,1579,1581],[730,1,1,1581,1582],[735,1,1,1582,1583],[738,4,4,1583,1587],[740,1,1,1587,1588]]],[23,266,211,1588,1799,[[745,4,3,1588,1591],[746,1,1,1591,1592],[747,1,1,1592,1593],[748,1,1,1593,1594],[752,2,2,1594,1596],[754,2,2,1596,1598],[757,2,2,1598,1600],[759,1,1,1600,1601],[761,3,3,1601,1604],[763,3,3,1604,1607],[764,2,2,1607,1609],[765,7,6,1609,1615],[766,8,8,1615,1623],[767,1,1,1623,1624],[768,3,2,1624,1626],[769,21,13,1626,1639],[770,8,7,1639,1646],[771,22,14,1646,1660],[772,7,6,1660,1666],[773,6,5,1666,1671],[774,1,1,1671,1672],[776,10,7,1672,1679],[777,1,1,1679,1680],[778,11,9,1680,1689],[779,2,2,1689,1691],[780,19,15,1691,1706],[781,11,8,1706,1714],[782,24,18,1714,1732],[783,12,8,1732,1740],[784,5,5,1740,1745],[785,6,5,1745,1750],[786,1,1,1750,1751],[787,2,2,1751,1753],[788,6,4,1753,1757],[789,1,1,1757,1758],[790,8,6,1758,1764],[792,1,1,1764,1765],[793,6,6,1765,1771],[794,6,4,1771,1775],[795,6,6,1775,1781],[796,22,18,1781,1799]]],[24,3,3,1799,1802,[[798,2,2,1799,1801],[800,1,1,1801,1802]]],[25,37,31,1802,1833,[[802,1,1,1802,1803],[808,1,1,1803,1804],[818,3,2,1804,1806],[820,1,1,1806,1807],[822,2,2,1807,1809],[825,1,1,1809,1810],[827,3,1,1810,1811],[828,2,2,1811,1813],[829,2,2,1813,1815],[830,4,4,1815,1819],[831,6,5,1819,1824],[832,1,1,1824,1825],[833,4,4,1825,1829],[838,3,2,1829,1831],[844,3,2,1831,1833]]],[26,52,40,1833,1873,[[850,18,13,1833,1846],[851,5,3,1846,1849],[857,6,5,1849,1854],[858,2,2,1854,1856],[859,2,2,1856,1858],[860,19,15,1858,1873]]],[27,19,16,1873,1889,[[862,2,1,1873,1874],[864,2,2,1874,1876],[866,2,2,1876,1878],[868,3,3,1878,1881],[869,1,1,1881,1882],[871,5,4,1882,1886],[872,1,1,1886,1887],[874,3,2,1887,1889]]],[29,7,6,1889,1895,[[879,3,2,1889,1891],[880,1,1,1891,1892],[885,3,3,1892,1895]]],[31,2,2,1895,1897,[[891,2,2,1895,1897]]],[32,5,5,1897,1902,[[893,2,2,1897,1899],[894,1,1,1899,1900],[896,1,1,1900,1901],[898,1,1,1901,1902]]],[33,1,1,1902,1903,[[902,1,1,1902,1903]]],[34,1,1,1903,1904,[[903,1,1,1903,1904]]],[35,3,3,1904,1907,[[906,2,2,1904,1906],[908,1,1,1906,1907]]],[36,2,2,1907,1909,[[909,2,2,1907,1909]]],[37,9,9,1909,1918,[[917,1,1,1909,1910],[919,2,2,1910,1912],[921,1,1,1912,1913],[924,5,5,1913,1918]]],[38,1,1,1918,1919,[[925,1,1,1918,1919]]]],[337,338,341,344,345,346,353,354,357,358,403,413,497,693,700,1022,1071,1169,1173,1177,1241,1493,1540,1547,1549,1550,1577,1597,1598,1636,1666,1668,1682,1684,1894,1897,4325,4328,4341,4361,4362,4366,4369,4373,4374,4379,4385,4423,4437,4453,4672,4751,4800,4896,4962,4964,4968,4976,4977,4978,4981,4983,4986,4996,5050,5051,5119,5135,5211,5378,5379,5647,5686,5732,5815,5871,5872,5879,5935,5951,6003,6004,6016,6025,6031,6038,6047,6065,6067,6069,6070,6080,6081,6086,6087,6088,6092,6094,6097,6101,6103,6104,6106,6108,6109,6112,6117,6119,6124,6125,6131,6132,6134,6135,6137,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6164,6175,6181,6184,6485,6488,6516,6576,6578,6580,6582,6583,6585,6587,6601,6616,6622,6623,6626,6642,6724,6731,6737,6745,6760,6762,6769,6841,6842,6843,6846,6848,6854,6857,6986,6994,7025,7127,7250,7374,7375,7378,7379,7380,7387,7388,7389,7391,7437,7442,7461,7462,7469,7472,7473,7474,7477,7479,7485,7555,7561,7568,7571,7577,7580,7583,7586,7592,7596,7643,7673,7674,7682,7694,7698,7699,7701,7702,7703,7710,7735,7754,7755,7759,7774,7780,7782,7783,7784,7790,7791,7798,7801,7802,7803,7804,7805,7830,7847,7853,7897,7919,7920,7921,7922,7924,7925,7927,7932,7936,7955,7970,7975,8053,8056,8060,8084,8098,8102,8104,8105,8112,8113,8114,8117,8118,8119,8120,8128,8134,8135,8138,8143,8144,8149,8169,8173,8177,8181,8182,8183,8198,8212,8214,8217,8218,8219,8220,8221,8229,8230,8231,8232,8236,8238,8240,8241,8245,8246,8259,8260,8261,8267,8268,8278,8279,8283,8293,8316,8321,8323,8330,8335,8338,8340,8341,8342,8343,8344,8346,8347,8348,8349,8350,8352,8353,8354,8356,8357,8359,8360,8361,8364,8365,8366,8367,8368,8369,8371,8372,8373,8374,8375,8377,8378,8380,8382,8384,8385,8388,8389,8391,8392,8395,8396,8398,8404,8405,8406,8407,8408,8410,8412,8414,8416,8423,8424,8428,8429,8430,8431,8432,8435,8436,8440,8442,8451,8465,8466,8470,8480,8482,8483,8490,8491,8496,8497,8498,8499,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8515,8516,8519,8520,8521,8522,8523,8525,8526,8527,8528,8529,8530,8531,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8556,8557,8558,8575,8576,8582,8585,8586,8587,8588,8594,8653,8694,8695,8696,8701,8712,8713,8714,8715,8716,8718,8719,8720,8721,8726,8730,8731,8732,8733,8735,8736,8737,8738,8739,8740,8741,8742,8744,8745,8746,8748,8749,8750,8751,8753,8754,8755,8756,8760,8761,8762,8764,8765,8768,8770,8787,8788,8789,8790,8792,8793,8795,8796,8799,8800,8801,8805,8806,8808,8809,8812,8814,8815,8816,8817,8820,8829,8832,8838,8839,8840,8841,8842,8843,8844,8845,8849,8851,8863,8868,8871,8878,8879,8891,8895,8898,8947,8948,8974,8979,8980,8985,8986,8987,8990,8999,9047,9048,9049,9051,9052,9061,9062,9065,9066,9067,9077,9079,9082,9085,9088,9089,9091,9092,9094,9095,9096,9097,9100,9101,9102,9105,9106,9107,9108,9109,9122,9126,9131,9134,9135,9145,9148,9153,9157,9163,9164,9166,9167,9169,9174,9178,9179,9188,9190,9191,9192,9195,9220,9232,9237,9243,9244,9245,9246,9247,9250,9256,9258,9265,9266,9267,9268,9269,9271,9272,9274,9277,9280,9281,9282,9288,9291,9293,9297,9298,9299,9301,9303,9306,9310,9312,9314,9316,9402,9403,9409,9410,9412,9415,9417,9419,9420,9421,9424,9428,9429,9430,9431,9432,9436,9439,9440,9446,9447,9448,9449,9451,9452,9461,9464,9469,9482,9483,9484,9485,9486,9488,9489,9490,9492,9493,9495,9496,9498,9506,9507,9509,9510,9511,9512,9513,9514,9515,9517,9519,9521,9524,9525,9527,9531,9536,9539,9542,9544,9548,9550,9551,9577,9580,9581,9582,9583,9585,9586,9587,9588,9589,9590,9597,9599,9602,9616,9648,9652,9653,9654,9655,9682,9683,9684,9685,9686,9695,9698,9700,9702,9704,9709,9713,9716,9718,9719,9721,9722,9724,9725,9730,9731,9732,9733,9734,9735,9736,9740,9743,9745,9747,9750,9752,9753,9755,9756,9759,9762,9768,9770,9771,9772,9774,9775,9777,9783,9790,9797,9799,9800,9801,9806,9827,9831,9833,9834,9836,9837,9839,9840,9841,9843,9845,9846,9848,9849,9856,9857,9860,9867,9868,9869,9872,9874,9875,9878,9879,9881,9883,9884,9885,9887,9889,9893,9895,9897,9901,9904,9905,9907,9909,9910,9911,9912,9913,9914,9918,9919,9924,9925,9926,9930,9931,9933,9936,9938,9940,9942,9944,9945,9946,9948,9950,9951,9952,9954,9956,9957,9961,9962,9964,9966,9968,9969,9970,9971,9972,9973,9974,9975,9978,9979,9980,9981,9982,9984,9985,9986,9987,9988,9989,9990,9991,10007,10009,10010,10025,10029,10031,10033,10034,10035,10037,10038,10039,10040,10041,10042,10043,10045,10047,10052,10053,10054,10055,10057,10060,10062,10065,10066,10067,10069,10070,10071,10072,10074,10078,10081,10093,10097,10104,10110,10112,10116,10118,10122,10130,10136,10142,10143,10144,10148,10154,10155,10156,10157,10161,10163,10165,10166,10167,10168,10169,10170,10176,10177,10178,10184,10186,10187,10188,10190,10193,10194,10203,10207,10209,10212,10213,10214,10215,10217,10218,10219,10222,10223,10224,10226,10227,10228,10230,10231,10233,10241,10242,10243,10244,10245,10246,10249,10250,10252,10295,10363,10408,10426,10434,10445,10454,10616,10633,10675,10676,10775,10776,10782,10820,10841,10879,10893,10895,10899,10900,10901,10907,10908,10912,10914,10916,10927,10928,10937,10938,10940,10957,10958,11021,11046,11048,11051,11052,11103,11107,11109,11110,11133,11134,11140,11141,11142,11143,11144,11145,11147,11165,11170,11173,11184,11187,11188,11189,11193,11206,11208,11209,11210,11211,11214,11222,11223,11257,11262,11263,11271,11274,11285,11328,11329,11330,11335,11356,11357,11361,11364,11369,11372,11373,11375,11376,11378,11379,11380,11381,11384,11385,11386,11387,11389,11390,11391,11397,11401,11407,11408,11410,11411,11413,11417,11439,11443,11446,11447,11448,11450,11454,11506,11510,11511,11512,11513,11515,11516,11520,11542,11545,11546,11547,11549,11550,11551,11553,11554,11556,11557,11559,11561,11567,11568,11570,11571,11572,11573,11574,11575,11576,11577,11578,11587,11602,11621,11622,11626,11630,11632,11636,11637,11641,11644,11645,11649,11650,11655,11659,11661,11663,11665,11666,11667,11668,11669,11671,11672,11676,11683,11685,11688,11689,11691,11693,11694,11698,11699,11700,11702,11704,11707,11711,11720,11721,11722,11725,11727,11728,11729,11730,11734,11743,11745,11750,11753,11755,11760,11762,11766,11769,11771,11780,11783,11784,11785,11786,11787,11790,11791,11806,11809,11810,11811,11814,11815,11816,11818,11820,11821,11829,11831,11833,11839,11851,11853,11857,11867,11876,11879,11882,11883,11884,11885,11886,11895,11896,11897,11898,11907,11919,11926,11933,11944,11949,11951,11952,11953,11955,11957,11959,11961,11962,11963,11964,11969,11970,11973,11976,11981,11982,11984,11986,11987,11989,11993,11996,11997,11999,12001,12003,12006,12010,12011,12015,12016,12017,12018,12023,12024,12028,12104,12107,12112,12113,12115,12117,12173,12174,12179,12180,12181,12184,12200,12201,12202,12223,12226,12237,12244,12246,12307,12308,12309,12310,12311,12312,12313,12314,12315,12316,12321,12325,12326,12342,12352,12386,12396,12407,12408,12426,12533,12535,12543,12545,12548,12611,12612,12677,12697,12704,12707,12709,12710,12711,12712,12713,12714,12715,12716,12717,12718,12719,12720,12721,12722,12723,12724,12725,12726,12727,12728,12730,12732,12733,12736,12737,12738,12739,12740,12741,12742,12743,12745,12746,12747,12748,12749,12750,12754,12755,12756,12757,12758,12759,12760,12762,12764,12765,12767,12768,12769,12770,12773,12775,12778,12780,12781,12782,12783,12784,12785,12787,12788,12790,12791,12792,12793,12794,12795,12796,12797,12798,12799,12800,12801,12802,12803,12804,12805,12807,12808,12809,12810,12811,12812,12813,12814,12815,12816,12817,12818,12819,12820,12821,12822,12824,12825,12826,12827,12828,12829,12831,12832,12834,12835,12836,12837,12838,12845,12846,12847,12848,12850,12854,12859,12867,12868,12869,12918,13146,13227,13290,13557,13701,13743,13922,13947,13951,13955,13975,14057,14168,14191,14192,14198,14248,14249,14250,14251,14318,14382,14575,14598,14602,14606,14608,14610,14611,14612,14627,14631,14632,14636,14638,14825,14850,14912,14914,14924,14929,15001,15010,15011,15060,15093,15262,15344,15353,15457,15496,15503,15536,15620,15626,15636,15791,15944,16185,16186,16213,16214,16215,16216,16235,16315,16321,16382,16387,16393,16401,16617,16800,16807,16850,16852,16853,16854,16855,16937,16956,16962,16980,16982,16985,17026,17044,17100,17114,17115,17116,17118,17119,17228,17238,17278,17279,17282,17285,17287,17288,17316,17327,17341,17345,17394,17406,17460,17462,17489,17509,17510,17513,17541,17549,17580,17582,17632,17655,17770,17774,17783,17788,17798,17799,17802,17811,17814,17828,17858,17862,17932,17937,17946,17956,18008,18015,18030,18033,18035,18092,18116,18250,18260,18296,18301,18331,18332,18334,18336,18338,18343,18344,18345,18346,18348,18351,18353,18356,18357,18358,18360,18361,18362,18363,18365,18370,18373,18385,18389,18396,18399,18413,18415,18419,18453,18472,18520,18539,18562,18643,18659,18711,18774,18824,18831,18832,18837,18856,18948,18949,18964,18991,19008,19036,19154,19172,19208,19211,19279,19284,19319,19376,19377,19382,19410,19411,19420,19426,19427,19441,19442,19444,19447,19450,19451,19455,19456,19458,19460,19465,19472,19478,19479,19489,19525,19532,19535,19537,19543,19545,19546,19548,19552,19553,19554,19556,19558,19559,19560,19573,19582,19590,19591,19593,19594,19595,19597,19599,19602,19603,19604,19605,19607,19608,19609,19610,19613,19614,19616,19617,19619,19620,19621,19622,19629,19632,19637,19638,19651,19656,19657,19676,19732,19733,19734,19735,19759,19763,19767,19779,19802,19803,19804,19805,19806,19807,19808,19809,19822,19824,19834,19843,19851,19854,19858,19862,19863,19864,19866,19867,19868,19869,19870,19871,19872,19874,19875,19877,19881,19891,19892,19893,19894,19895,19898,19899,19900,19902,19903,19904,19905,19906,19909,19911,19912,19913,19914,19917,19918,19920,19921,19922,19924,19926,19927,19928,19929,19931,19934,19936,19946,19948,19950,19952,19955,19958,19959,19966,19967,19975,19986,20003,20007,20019,20027,20031,20040,20041,20047,20058,20062,20063,20070,20071,20095,20128,20130,20155,20157,20161,20165,20183,20184,20207,20209,20223,20240,20243,20246,20269,20271,20279,20280,20281,20283,20284,20285,20286,20287,20288,20289,20291,20296,20301,20302,20303,20307,20308,20310,20338,20341,20432,20466,20604,20837,20841,20890,20963,20965,21058,21107,21154,21156,21169,21174,21185,21186,21201,21202,21214,21225,21226,21228,21229,21232,21250,21258,21259,21277,21419,21421,21579,21581,21738,21739,21740,21741,21742,21745,21747,21750,21752,21755,21756,21757,21758,21760,21761,21762,21962,21981,21982,21984,21988,21994,21996,22016,22028,22038,22039,22041,22042,22043,22044,22045,22047,22049,22050,22051,22061,22063,22072,22076,22095,22132,22133,22153,22165,22181,22183,22185,22204,22228,22231,22232,22240,22245,22276,22277,22365,22379,22380,22465,22474,22477,22564,22565,22580,22593,22608,22629,22653,22730,22741,22788,22795,22835,22841,22855,22963,23004,23008,23034,23073,23077,23078,23084,23085,23103]]],["+",[29,29,[[8,3,3,0,3,[[243,1,1,0,1],[247,1,1,1,2],[250,1,1,2,3]]],[9,6,6,3,9,[[269,1,1,3,4],[275,1,1,4,5],[277,2,2,5,7],[281,1,1,7,8],[285,1,1,8,9]]],[10,4,4,9,13,[[300,1,1,9,10],[301,1,1,10,11],[305,1,1,11,12],[310,1,1,12,13]]],[11,2,2,13,15,[[320,1,1,13,14],[334,1,1,14,15]]],[16,3,3,15,18,[[427,2,2,15,17],[432,1,1,17,18]]],[20,3,3,18,21,[[662,1,1,18,19],[668,2,2,19,21]]],[21,1,1,21,22,[[671,1,1,21,22]]],[22,1,1,22,23,[[685,1,1,22,23]]],[26,5,5,23,28,[[850,4,4,23,27],[860,1,1,27,28]]],[27,1,1,28,29,[[868,1,1,28,29]]]],[7391,7461,7583,8118,8238,8267,8283,8424,8526,9092,9122,9258,9432,9732,10154,12733,12737,12815,17394,17509,17510,17549,17788,21742,21745,21750,21752,22044,22181]]],["King",[33,32,[[18,19,18,0,18,[[482,1,1,0,1],[487,1,1,1,2],[501,5,4,2,6],[506,1,1,6,7],[521,1,1,7,8],[524,3,3,8,11],[525,1,1,11,12],[545,1,1,12,13],[551,1,1,13,14],[561,1,1,14,15],[572,1,1,15,16],[575,1,1,16,17],[626,1,1,17,18]]],[21,1,1,18,19,[[673,1,1,18,19]]],[22,4,4,19,23,[[684,1,1,19,20],[719,1,1,20,21],[721,1,1,21,22],[722,1,1,22,23]]],[23,5,5,23,28,[[754,1,1,23,24],[767,1,1,24,25],[790,1,1,25,26],[792,1,1,26,27],[795,1,1,27,28]]],[37,3,3,28,31,[[919,1,1,28,29],[924,2,2,29,31]]],[38,1,1,31,32,[[925,1,1,31,32]]]],[13975,14057,14248,14249,14250,14251,14318,14575,14627,14631,14632,14636,14924,15060,15262,15457,15496,16387,17580,17774,18472,18520,18539,19208,19489,20063,20095,20269,23008,23084,23085,23103]]],["Kings",[3,3,[[18,2,2,0,2,[[545,1,1,0,1],[625,1,1,1,2]]],[22,1,1,2,3,[[727,1,1,2,3]]]],[14912,16382,18643]]],["Kings'",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14606]]],["king",[1925,1487,[[0,30,15,0,15,[[13,22,8,0,8],[19,1,1,8,9],[25,2,2,9,11],[35,1,1,11,12],[39,3,2,12,14],[40,1,1,14,15]]],[1,14,14,15,29,[[50,4,4,15,19],[51,1,1,19,20],[52,2,2,20,22],[54,1,1,22,23],[55,4,4,23,27],[63,2,2,27,29]]],[3,16,14,29,43,[[136,1,1,29,30],[137,7,6,30,36],[138,2,2,36,38],[139,2,2,38,40],[140,1,1,40,41],[148,2,1,41,42],[149,1,1,42,43]]],[4,21,18,43,61,[[153,2,1,43,44],[154,3,3,44,47],[155,5,5,47,52],[156,2,2,52,54],[159,1,1,54,55],[163,1,1,55,56],[169,3,2,56,58],[180,1,1,58,59],[181,2,1,59,60],[185,1,1,60,61]]],[5,84,44,61,105,[[188,2,2,61,63],[192,1,1,63,64],[194,6,5,64,69],[195,2,1,69,70],[196,29,9,70,79],[197,5,2,79,81],[198,34,19,81,100],[199,4,4,100,104],[210,1,1,104,105]]],[6,30,26,105,131,[[213,7,7,105,112],[214,5,4,112,116],[218,1,1,116,117],[219,3,3,117,120],[221,10,7,120,127],[227,1,1,127,128],[228,1,1,128,129],[229,1,1,129,130],[231,1,1,130,131]]],[8,70,64,131,195,[[237,1,1,131,132],[243,8,8,132,140],[245,2,2,140,142],[247,11,8,142,150],[250,7,7,150,157],[251,1,1,157,158],[252,3,3,158,161],[253,5,5,161,166],[254,1,1,166,167],[255,3,3,167,170],[256,4,4,170,174],[257,10,8,174,182],[258,1,1,182,183],[259,2,2,183,185],[260,1,1,185,186],[261,6,5,186,191],[262,1,1,191,192],[263,1,1,192,193],[264,2,2,193,195]]],[9,247,182,195,377,[[268,3,3,195,198],[269,11,11,198,209],[270,2,1,209,210],[271,8,6,210,216],[272,3,3,216,219],[273,4,4,219,223],[274,7,7,223,230],[275,9,6,230,236],[276,3,3,236,239],[277,2,2,239,241],[278,1,1,241,242],[279,14,12,242,254],[280,35,20,254,274],[281,20,15,274,289],[282,13,9,289,298],[283,4,4,298,302],[284,22,16,302,318],[285,60,38,318,356],[286,5,5,356,361],[287,6,6,361,367],[288,1,1,367,368],[290,14,9,368,377]]],[10,256,202,377,579,[[291,54,34,377,411],[292,23,19,411,430],[293,12,10,430,440],[294,7,4,440,444],[295,4,3,444,447],[296,1,1,447,448],[297,6,6,448,454],[298,8,8,454,462],[299,7,6,462,468],[300,15,14,468,482],[301,7,7,482,489],[302,13,10,489,499],[303,5,5,499,504],[304,6,5,504,509],[305,15,12,509,521],[306,7,7,521,528],[309,2,2,528,530],[310,22,19,530,549],[311,4,4,549,553],[312,38,26,553,579]]],[11,289,211,579,790,[[313,6,6,579,585],[315,20,12,585,597],[316,1,1,597,598],[317,7,5,598,603],[318,13,10,603,613],[319,8,7,613,620],[320,21,14,620,634],[321,12,10,634,644],[322,2,1,644,645],[323,12,9,645,654],[324,5,4,654,658],[325,11,11,658,669],[326,16,10,669,679],[327,16,12,679,691],[328,22,13,691,704],[329,12,9,704,713],[330,29,18,713,731],[331,14,11,731,742],[332,4,4,742,746],[333,4,4,746,750],[334,10,8,750,758],[335,13,10,758,768],[336,13,9,768,777],[337,18,13,777,790]]],[12,53,46,790,836,[[338,1,1,790,791],[340,1,1,791,792],[341,2,2,792,794],[342,5,3,794,797],[348,3,2,797,799],[351,3,3,799,802],[352,1,1,802,803],[354,1,1,803,804],[355,7,6,804,810],[356,3,3,810,813],[357,1,1,813,814],[358,3,3,814,817],[361,2,2,817,819],[362,1,1,819,820],[363,4,3,820,823],[364,3,3,823,826],[365,4,3,826,829],[366,8,7,829,836]]],[13,215,174,836,1010,[[367,2,2,836,838],[368,4,3,838,841],[370,3,3,841,844],[371,2,2,844,846],[372,1,1,846,847],[373,4,3,847,850],[374,4,4,850,854],[375,15,12,854,866],[376,10,7,866,873],[377,1,1,873,874],[378,7,6,874,880],[379,1,1,880,881],[381,1,1,881,882],[382,9,6,882,888],[383,2,1,888,889],[384,28,21,889,910],[385,2,2,910,912],[386,3,2,912,914],[387,3,3,914,917],[388,7,4,917,921],[389,12,9,921,930],[390,8,7,930,937],[391,12,7,937,944],[392,4,4,944,948],[393,1,1,948,949],[394,9,7,949,956],[395,9,9,956,965],[396,7,6,965,971],[397,1,1,971,972],[398,11,10,972,982],[399,2,2,982,984],[400,13,11,984,995],[401,7,6,995,1001],[402,10,9,1001,1010]]],[14,25,21,1010,1031,[[403,5,4,1010,1014],[404,1,1,1014,1015],[405,2,2,1015,1017],[406,6,4,1017,1021],[408,1,1,1021,1022],[409,6,6,1022,1028],[410,4,3,1028,1031]]],[15,28,17,1031,1048,[[414,15,10,1031,1041],[417,1,1,1041,1042],[418,3,2,1042,1044],[419,1,1,1044,1045],[421,2,1,1045,1046],[425,6,2,1046,1048]]],[16,126,90,1048,1138,[[426,20,14,1048,1062],[427,18,14,1062,1076],[428,9,9,1076,1085],[429,5,3,1085,1088],[430,19,10,1088,1098],[431,18,11,1098,1109],[432,13,8,1109,1117],[433,13,10,1117,1127],[434,8,8,1127,1135],[435,3,3,1135,1138]]],[17,5,5,1138,1143,[[450,1,1,1138,1139],[453,1,1,1139,1140],[464,1,1,1140,1141],[469,1,1,1141,1142],[476,1,1,1142,1143]]],[18,18,17,1143,1160,[[479,1,1,1143,1144],[495,1,1,1144,1145],[497,1,1,1145,1146],[498,2,2,1146,1148],[510,1,1,1148,1149],[522,3,3,1149,1152],[540,1,1,1152,1153],[549,1,1,1153,1154],[566,1,1,1154,1155],[582,1,1,1155,1156],[612,2,1,1156,1157],[613,2,2,1157,1159],[622,1,1,1159,1160]]],[19,17,17,1160,1177,[[628,1,1,1160,1161],[643,2,2,1161,1163],[647,4,4,1163,1167],[649,1,1,1167,1168],[651,1,1,1168,1169],[652,3,3,1169,1172],[656,2,2,1172,1174],[657,2,2,1174,1176],[658,1,1,1176,1177]]],[20,7,7,1177,1184,[[659,2,2,1177,1179],[660,1,1,1179,1180],[663,1,1,1180,1181],[666,1,1,1181,1182],[667,1,1,1182,1183],[668,1,1,1183,1184]]],[21,3,3,1184,1187,[[671,1,1,1184,1185],[673,1,1,1185,1186],[677,1,1,1186,1187]]],[22,55,46,1187,1233,[[684,1,1,1187,1188],[685,5,3,1188,1191],[686,3,3,1191,1194],[688,1,1,1194,1195],[692,2,2,1195,1197],[697,1,1,1197,1198],[698,3,3,1198,1201],[701,1,1,1201,1202],[708,1,1,1202,1203],[710,1,1,1203,1204],[711,2,2,1204,1206],[714,14,10,1206,1216],[715,14,11,1216,1227],[716,2,2,1227,1229],[717,3,3,1229,1232],[735,1,1,1232,1233]]],[23,212,167,1233,1400,[[745,3,2,1233,1235],[747,1,1,1235,1236],[748,1,1,1236,1237],[752,1,1,1237,1238],[754,1,1,1238,1239],[757,1,1,1239,1240],[759,1,1,1240,1241],[764,1,1,1241,1242],[765,7,6,1242,1248],[766,6,6,1248,1254],[768,3,2,1254,1256],[769,8,7,1256,1263],[770,7,6,1263,1269],[771,21,13,1269,1282],[772,7,6,1282,1288],[773,6,5,1288,1293],[774,1,1,1293,1294],[776,9,6,1294,1300],[778,10,8,1300,1308],[779,2,2,1308,1310],[780,18,14,1310,1324],[781,11,8,1324,1332],[782,22,18,1332,1350],[783,10,7,1350,1357],[784,5,5,1357,1362],[785,5,4,1362,1366],[786,1,1,1366,1367],[787,1,1,1367,1368],[788,3,1,1368,1369],[789,1,1,1369,1370],[790,6,4,1370,1374],[793,6,6,1374,1380],[794,5,3,1380,1383],[795,3,3,1383,1386],[796,18,14,1386,1400]]],[24,2,2,1400,1402,[[798,2,2,1400,1402]]],[25,28,24,1402,1426,[[802,1,1,1402,1403],[808,1,1,1403,1404],[818,3,2,1404,1406],[820,1,1,1406,1407],[822,2,2,1407,1409],[825,1,1,1409,1410],[827,2,1,1410,1411],[829,1,1,1411,1412],[830,4,4,1412,1416],[831,6,5,1416,1421],[832,1,1,1421,1422],[833,2,2,1422,1424],[838,3,2,1424,1426]]],[26,38,28,1426,1454,[[850,13,9,1426,1435],[851,5,3,1435,1438],[857,4,3,1438,1441],[859,1,1,1441,1442],[860,15,12,1442,1454]]],[27,16,14,1454,1468,[[862,1,1,1454,1455],[864,2,2,1455,1457],[866,2,2,1457,1459],[868,1,1,1459,1460],[869,1,1,1460,1461],[871,5,4,1461,1465],[872,1,1,1465,1466],[874,3,2,1466,1468]]],[29,5,4,1468,1472,[[879,3,2,1468,1470],[880,1,1,1470,1471],[885,1,1,1471,1472]]],[31,2,2,1472,1474,[[891,2,2,1472,1474]]],[32,3,3,1474,1477,[[894,1,1,1474,1475],[896,1,1,1475,1476],[898,1,1,1476,1477]]],[33,1,1,1477,1478,[[902,1,1,1477,1478]]],[35,2,2,1478,1480,[[906,1,1,1478,1479],[908,1,1,1479,1480]]],[36,2,2,1480,1482,[[909,2,2,1480,1482]]],[37,5,5,1482,1487,[[917,1,1,1482,1483],[919,1,1,1483,1484],[921,1,1,1484,1485],[924,2,2,1485,1487]]]],[337,338,344,345,353,354,357,358,497,693,700,1071,1173,1177,1241,1540,1547,1549,1550,1577,1597,1598,1636,1666,1668,1682,1684,1894,1897,4325,4341,4361,4366,4369,4373,4374,4379,4385,4423,4437,4453,4751,4800,4896,4962,4964,4968,4976,4977,4978,4981,4986,5050,5051,5119,5211,5378,5379,5647,5686,5815,5871,5872,5951,6003,6004,6016,6025,6031,6047,6065,6067,6069,6087,6092,6094,6097,6101,6103,6108,6117,6132,6134,6135,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6164,6175,6181,6184,6485,6576,6578,6580,6582,6583,6585,6587,6601,6616,6622,6623,6737,6760,6762,6769,6841,6842,6843,6846,6848,6854,6857,6986,6994,7025,7127,7250,7374,7375,7378,7379,7380,7387,7388,7389,7437,7442,7462,7469,7472,7473,7474,7477,7479,7485,7561,7568,7571,7577,7580,7586,7592,7596,7643,7673,7674,7682,7694,7698,7701,7703,7710,7735,7754,7755,7774,7782,7783,7784,7790,7791,7798,7801,7802,7803,7804,7805,7830,7847,7853,7897,7919,7920,7922,7924,7925,7932,7955,7970,7975,8053,8056,8060,8084,8098,8102,8104,8105,8112,8113,8114,8117,8119,8120,8128,8134,8135,8138,8143,8144,8149,8169,8173,8177,8181,8182,8183,8198,8212,8214,8217,8218,8219,8220,8221,8229,8230,8231,8232,8236,8238,8241,8245,8246,8267,8278,8293,8323,8330,8338,8341,8342,8343,8348,8350,8352,8353,8354,8356,8359,8360,8361,8364,8365,8366,8367,8368,8369,8371,8372,8373,8374,8375,8377,8378,8380,8385,8388,8389,8391,8392,8395,8396,8398,8404,8405,8406,8407,8408,8410,8412,8414,8416,8423,8428,8429,8430,8431,8432,8435,8436,8440,8442,8451,8465,8466,8470,8480,8482,8483,8490,8491,8497,8499,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8515,8516,8519,8520,8521,8522,8523,8525,8526,8527,8528,8529,8530,8531,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8556,8557,8558,8575,8576,8582,8585,8586,8587,8588,8594,8653,8694,8695,8696,8701,8712,8713,8714,8715,8716,8718,8719,8720,8721,8730,8731,8732,8733,8735,8736,8737,8738,8739,8740,8741,8742,8744,8745,8746,8748,8749,8750,8751,8753,8754,8755,8756,8760,8761,8762,8764,8765,8768,8770,8787,8788,8789,8790,8792,8793,8795,8796,8799,8800,8801,8805,8806,8808,8809,8812,8814,8815,8816,8817,8820,8832,8838,8839,8840,8841,8842,8843,8844,8845,8851,8863,8871,8879,8891,8895,8898,8947,8948,8974,8979,8980,8985,8986,8987,8990,8999,9047,9048,9049,9051,9062,9065,9066,9067,9077,9079,9082,9085,9088,9089,9091,9092,9095,9096,9097,9100,9101,9102,9105,9106,9109,9126,9131,9134,9135,9145,9148,9153,9157,9163,9164,9166,9167,9169,9174,9178,9179,9188,9190,9191,9192,9195,9220,9232,9243,9245,9246,9250,9258,9265,9266,9267,9268,9269,9271,9274,9277,9281,9282,9291,9293,9298,9299,9306,9312,9314,9402,9403,9409,9410,9412,9415,9417,9419,9421,9428,9429,9430,9431,9436,9439,9440,9446,9447,9448,9449,9451,9452,9461,9464,9469,9482,9483,9484,9485,9486,9488,9489,9490,9493,9495,9496,9498,9506,9507,9509,9510,9511,9512,9513,9514,9515,9517,9521,9524,9527,9531,9536,9539,9542,9544,9548,9550,9577,9580,9581,9582,9583,9585,9586,9587,9588,9589,9590,9602,9616,9648,9652,9653,9654,9655,9682,9683,9684,9685,9686,9695,9698,9700,9702,9704,9709,9713,9719,9721,9722,9724,9725,9730,9731,9732,9733,9734,9735,9736,9740,9743,9747,9752,9753,9755,9756,9759,9762,9768,9770,9771,9772,9774,9775,9777,9783,9806,9831,9836,9837,9839,9840,9841,9843,9846,9848,9856,9857,9867,9868,9872,9874,9875,9878,9881,9883,9885,9887,9889,9893,9895,9897,9901,9904,9905,9907,9909,9911,9913,9918,9919,9926,9930,9933,9938,9942,9944,9945,9948,9952,9954,9957,9962,9964,9968,9969,9970,9971,9972,9973,9974,9975,9978,9979,9980,9981,9984,9986,9987,9988,9989,9990,10007,10009,10010,10025,10031,10033,10034,10035,10037,10038,10040,10041,10042,10043,10045,10047,10052,10053,10054,10055,10057,10062,10065,10066,10067,10069,10070,10071,10074,10081,10093,10097,10104,10110,10112,10116,10122,10130,10142,10143,10148,10154,10155,10156,10157,10161,10163,10165,10166,10167,10168,10169,10177,10178,10186,10188,10190,10194,10203,10209,10212,10213,10214,10215,10218,10219,10222,10223,10224,10227,10228,10230,10233,10242,10243,10244,10245,10246,10249,10252,10295,10363,10408,10426,10434,10445,10454,10675,10676,10775,10776,10782,10820,10879,10893,10895,10899,10900,10901,10907,10908,10912,10914,10928,10937,10957,10958,11021,11046,11048,11103,11107,11109,11110,11133,11140,11144,11145,11147,11165,11173,11184,11187,11188,11189,11193,11208,11209,11214,11222,11223,11257,11262,11263,11271,11274,11285,11328,11329,11330,11356,11357,11361,11364,11369,11372,11373,11375,11376,11379,11380,11381,11384,11386,11389,11391,11397,11401,11407,11408,11410,11411,11413,11417,11439,11443,11446,11447,11448,11450,11454,11506,11510,11511,11512,11513,11515,11516,11542,11545,11546,11547,11549,11550,11551,11553,11554,11556,11557,11559,11561,11567,11568,11570,11571,11572,11573,11574,11575,11576,11577,11578,11602,11622,11626,11632,11636,11645,11649,11650,11655,11659,11663,11665,11666,11667,11668,11669,11672,11676,11683,11689,11691,11694,11698,11699,11700,11707,11711,11721,11722,11725,11727,11729,11734,11745,11750,11753,11760,11769,11771,11780,11783,11784,11785,11786,11806,11809,11810,11811,11814,11815,11818,11820,11821,11829,11831,11833,11839,11851,11853,11867,11876,11882,11883,11884,11885,11886,11895,11896,11897,11898,11919,11933,11949,11951,11952,11953,11955,11957,11959,11961,11962,11963,11964,11969,11970,11982,11986,11987,11989,11996,11997,11999,12003,12006,12010,12011,12015,12016,12017,12018,12023,12024,12028,12104,12107,12112,12113,12115,12117,12173,12174,12179,12180,12181,12184,12201,12202,12223,12226,12308,12309,12310,12311,12312,12313,12314,12315,12316,12326,12396,12407,12408,12426,12533,12677,12697,12704,12707,12709,12710,12711,12712,12713,12714,12715,12717,12718,12719,12721,12723,12725,12726,12727,12728,12730,12736,12738,12739,12740,12741,12742,12745,12746,12747,12748,12749,12754,12755,12756,12757,12758,12759,12762,12770,12773,12778,12780,12781,12782,12783,12784,12785,12787,12790,12791,12793,12794,12795,12796,12797,12798,12799,12800,12801,12802,12803,12804,12808,12809,12810,12812,12813,12814,12815,12816,12818,12819,12820,12821,12822,12824,12827,12828,12829,12832,12836,12837,12845,12846,12847,12848,12854,12859,12867,12868,12869,13227,13290,13557,13701,13922,13951,14168,14191,14192,14198,14382,14598,14608,14611,14850,15001,15344,15626,16186,16215,16216,16321,16401,16850,16854,16956,16962,16980,16982,17026,17100,17114,17118,17119,17228,17238,17278,17282,17285,17316,17327,17345,17406,17462,17489,17513,17541,17582,17632,17770,17783,17799,17802,17811,17814,17828,17862,17932,17956,18008,18030,18033,18035,18092,18250,18260,18296,18301,18331,18332,18334,18336,18338,18343,18344,18345,18346,18348,18353,18356,18357,18358,18360,18361,18362,18365,18373,18385,18389,18396,18399,18413,18415,18419,18774,18948,18949,19008,19036,19172,19211,19284,19319,19426,19441,19442,19444,19447,19450,19451,19455,19456,19465,19472,19478,19479,19525,19532,19535,19537,19543,19545,19546,19553,19560,19573,19590,19591,19593,19594,19595,19597,19599,19602,19604,19605,19607,19608,19609,19610,19613,19614,19616,19617,19619,19620,19621,19622,19629,19632,19637,19638,19651,19656,19657,19676,19732,19733,19734,19735,19759,19767,19802,19803,19804,19805,19807,19808,19809,19822,19824,19834,19843,19851,19858,19862,19863,19864,19866,19867,19868,19869,19870,19871,19872,19874,19875,19877,19881,19891,19892,19893,19894,19895,19898,19899,19900,19902,19903,19904,19905,19906,19909,19911,19912,19913,19914,19917,19918,19920,19921,19922,19924,19926,19927,19928,19929,19934,19936,19946,19948,19950,19952,19955,19958,19959,19966,19975,19986,20007,20040,20041,20047,20058,20062,20071,20128,20130,20155,20157,20161,20165,20183,20184,20209,20243,20246,20271,20279,20280,20281,20284,20285,20286,20287,20288,20291,20296,20302,20303,20307,20310,20338,20341,20466,20604,20837,20841,20890,20963,20965,21058,21107,21169,21185,21186,21201,21202,21214,21225,21226,21228,21229,21232,21250,21259,21419,21421,21738,21739,21740,21742,21747,21755,21756,21757,21758,21760,21761,21762,21962,21982,21984,22016,22039,22041,22042,22043,22045,22047,22049,22050,22051,22061,22072,22076,22095,22132,22133,22153,22165,22183,22204,22228,22231,22232,22240,22245,22276,22277,22365,22379,22380,22474,22564,22565,22608,22629,22653,22730,22788,22835,22841,22855,22963,23004,23034,23073,23077]]],["king's",[249,229,[[0,2,2,0,2,[[13,1,1,0,1],[38,1,1,1,2]]],[3,2,2,2,4,[[136,1,1,2,3],[137,1,1,3,4]]],[8,11,11,4,15,[[253,5,5,4,9],[255,1,1,9,10],[256,1,1,10,11],[257,1,1,11,12],[258,1,1,12,13],[261,2,2,13,15]]],[9,29,29,15,44,[[275,1,1,15,16],[277,3,3,16,19],[278,1,1,19,20],[279,10,10,20,30],[280,5,5,30,35],[281,1,1,35,36],[282,1,1,36,37],[284,4,4,37,41],[285,2,2,41,43],[290,1,1,43,44]]],[10,20,18,44,62,[[291,6,5,44,49],[292,1,1,49,50],[294,1,1,50,51],[299,2,2,51,53],[300,2,2,53,55],[303,1,1,55,56],[304,2,2,56,58],[305,1,1,58,59],[306,2,1,59,60],[312,2,2,60,62]]],[11,31,30,62,92,[[319,2,2,62,64],[321,1,1,64,65],[322,3,3,65,68],[323,7,7,68,75],[324,2,2,75,77],[325,1,1,77,78],[326,1,1,78,79],[327,2,2,79,81],[328,3,3,81,84],[330,2,2,84,86],[334,1,1,86,87],[336,3,2,87,89],[337,3,3,89,92]]],[12,11,10,92,102,[[346,1,1,92,93],[358,2,2,93,95],[362,2,2,95,97],[364,5,4,97,101],[366,1,1,101,102]]],[13,31,30,102,132,[[367,1,1,102,103],[373,1,1,103,104],[375,2,2,104,106],[378,2,2,106,108],[382,1,1,108,109],[384,2,2,109,111],[385,1,1,111,112],[387,1,1,112,113],[388,1,1,113,114],[389,5,5,114,119],[390,3,2,119,121],[391,2,2,121,123],[392,2,2,123,125],[394,1,1,125,126],[395,1,1,126,127],[397,1,1,127,128],[400,1,1,128,129],[401,3,3,129,132]]],[14,4,3,132,135,[[409,2,2,132,134],[410,2,1,134,135]]],[15,10,10,135,145,[[413,1,1,135,136],[414,4,4,136,140],[415,2,2,140,142],[417,1,1,142,143],[423,2,2,143,145]]],[16,66,52,145,197,[[426,7,7,145,152],[427,10,8,152,160],[428,13,7,160,167],[429,9,7,167,174],[430,4,3,174,177],[431,8,8,177,185],[432,2,2,185,187],[433,9,6,187,193],[434,4,4,193,197]]],[18,6,6,197,203,[[522,3,3,197,200],[538,1,1,200,201],[549,1,1,201,202],[576,1,1,202,203]]],[19,5,5,203,208,[[641,2,2,203,205],[643,1,1,205,206],[646,1,1,206,207],[648,1,1,207,208]]],[20,1,1,208,209,[[666,1,1,208,209]]],[22,1,1,209,210,[[714,1,1,209,210]]],[23,12,12,210,222,[[766,1,1,210,211],[770,1,1,211,212],[780,1,1,212,213],[782,2,2,213,215],[783,2,2,215,217],[785,1,1,217,218],[787,1,1,218,219],[796,3,3,219,222]]],[26,3,3,222,225,[[850,1,1,222,223],[857,1,1,223,224],[860,1,1,224,225]]],[29,2,2,225,227,[[885,2,2,225,227]]],[35,1,1,227,228,[[906,1,1,227,228]]],[37,1,1,228,229,[[924,1,1,228,229]]]],[353,1169,4328,4362,7698,7699,7701,7702,7703,7759,7780,7801,7830,7921,7927,8240,8261,8268,8279,8316,8321,8335,8340,8344,8346,8347,8349,8350,8352,8353,8357,8380,8382,8384,8388,8404,8428,8490,8496,8498,8507,8529,8553,8696,8726,8742,8745,8761,8764,8789,8849,9052,9061,9091,9107,9190,9244,9245,9267,9301,9492,9506,9716,9718,9790,9799,9800,9801,9831,9833,9834,9841,9845,9848,9849,9860,9868,9887,9910,9930,9950,9971,9978,9981,10039,10060,10157,10215,10217,10226,10231,10241,10633,10938,10940,11051,11052,11134,11141,11142,11143,11170,11210,11335,11375,11385,11446,11447,11511,11547,11567,11587,11641,11655,11659,11661,11667,11671,11676,11685,11688,11720,11728,11743,11753,11771,11816,11857,11953,11973,11976,11981,12200,12201,12237,12307,12315,12316,12321,12325,12342,12352,12386,12611,12612,12707,12714,12715,12716,12720,12722,12724,12726,12727,12732,12737,12738,12739,12743,12745,12749,12750,12755,12756,12759,12760,12762,12764,12765,12767,12768,12769,12773,12775,12780,12788,12792,12795,12796,12797,12798,12802,12803,12805,12807,12811,12817,12822,12825,12826,12827,12831,12834,12835,12838,12846,12850,14602,14610,14612,14825,15001,15503,16800,16807,16855,16937,16985,17460,18351,19460,19582,19854,19902,19903,19927,19931,19967,20003,20283,20289,20301,21741,21988,22042,22465,22477,22795,23078]]],["kings",[278,256,[[0,8,8,0,8,[[13,4,4,0,4],[16,2,2,4,6],[34,1,1,6,7],[35,1,1,7,8]]],[3,2,1,8,9,[[147,2,1,8,9]]],[4,5,5,9,14,[[155,2,2,9,11],[156,1,1,11,12],[159,1,1,12,13],[183,1,1,13,14]]],[5,25,22,14,36,[[188,1,1,14,15],[191,2,1,15,16],[195,2,2,16,18],[196,10,9,18,27],[197,6,5,27,32],[198,3,3,32,35],[210,1,1,35,36]]],[6,7,6,36,42,[[211,1,1,36,37],[215,3,2,37,39],[218,3,3,39,42]]],[8,2,2,42,44,[[249,1,1,42,43],[262,1,1,43,44]]],[9,2,2,44,46,[[276,1,1,44,45],[277,1,1,45,46]]],[10,25,22,46,68,[[293,1,1,46,47],[294,2,2,47,49],[300,4,3,49,52],[304,2,2,52,54],[305,3,3,54,57],[306,5,5,57,62],[310,6,4,62,66],[312,2,2,66,68]]],[11,48,46,68,114,[[313,1,1,68,69],[315,4,4,69,73],[319,2,1,73,74],[320,2,2,74,76],[322,2,2,76,78],[323,1,1,78,79],[324,2,2,79,81],[325,3,3,81,84],[326,5,5,84,89],[327,7,7,89,96],[328,2,2,96,98],[329,2,2,98,100],[330,1,1,100,101],[331,2,2,101,103],[332,1,1,103,104],[333,2,2,104,106],[335,7,6,106,112],[336,1,1,112,113],[337,1,1,113,114]]],[12,5,5,114,119,[[338,1,1,114,115],[346,1,1,115,116],[353,1,1,116,117],[356,1,1,117,118],[357,1,1,118,119]]],[13,31,30,119,149,[[367,3,2,119,121],[375,4,4,121,125],[382,1,1,125,126],[386,1,1,126,127],[387,3,3,127,130],[390,3,3,130,133],[391,1,1,133,134],[392,1,1,134,135],[393,1,1,135,136],[394,5,5,136,141],[396,1,1,141,142],[398,2,2,142,144],[399,1,1,144,145],[400,1,1,145,146],[401,2,2,146,148],[402,1,1,148,149]]],[14,3,2,149,151,[[411,3,2,149,151]]],[15,5,4,151,155,[[421,5,4,151,155]]],[16,1,1,155,156,[[435,1,1,155,156]]],[17,3,3,156,159,[[438,1,1,156,157],[447,1,1,157,158],[471,1,1,158,159]]],[18,21,20,159,179,[[479,2,2,159,161],[525,1,1,161,162],[545,2,2,162,164],[549,3,2,164,166],[553,1,1,166,167],[566,1,1,167,168],[579,1,1,168,169],[582,2,2,169,171],[587,1,1,171,172],[596,1,1,172,173],[612,1,1,173,174],[613,2,2,174,176],[615,1,1,176,177],[621,1,1,177,178],[626,1,1,178,179]]],[19,9,8,179,187,[[635,1,1,179,180],[643,2,2,180,182],[649,1,1,182,183],[652,2,2,183,185],[658,3,2,185,187]]],[20,1,1,187,188,[[660,1,1,187,188]]],[22,18,18,188,206,[[679,1,1,188,189],[685,1,1,189,190],[688,1,1,190,191],[692,2,2,191,193],[697,1,1,193,194],[702,1,1,194,195],[715,2,2,195,197],[719,1,1,197,198],[723,1,1,198,199],[727,1,1,199,200],[730,1,1,200,201],[738,4,4,201,205],[740,1,1,205,206]]],[23,37,31,206,237,[[745,1,1,206,207],[746,1,1,207,208],[752,1,1,208,209],[757,1,1,209,210],[761,3,3,210,213],[763,3,3,213,216],[764,1,1,216,217],[766,1,1,217,218],[769,13,7,218,225],[771,1,1,225,226],[776,1,1,226,227],[777,1,1,227,228],[778,1,1,228,229],[788,3,3,229,232],[790,1,1,232,233],[794,1,1,233,234],[795,2,2,234,236],[796,1,1,236,237]]],[24,1,1,237,238,[[800,1,1,237,238]]],[25,9,8,238,246,[[827,1,1,238,239],[828,2,2,239,241],[829,1,1,241,242],[833,2,2,242,244],[844,3,2,244,246]]],[26,5,5,246,251,[[857,1,1,246,247],[858,2,2,247,249],[859,1,1,249,250],[860,1,1,250,251]]],[27,2,2,251,253,[[862,1,1,251,252],[868,1,1,252,253]]],[32,2,2,253,255,[[893,2,2,253,255]]],[34,1,1,255,256,[[903,1,1,255,256]]]],[341,345,346,353,403,413,1022,1071,4672,4983,4996,5051,5135,5732,5879,5935,6038,6047,6069,6070,6080,6081,6086,6087,6088,6104,6106,6109,6112,6119,6124,6125,6131,6137,6154,6488,6516,6626,6642,6724,6731,6745,7555,7936,8259,8260,8829,8868,8878,9094,9102,9108,9237,9247,9256,9272,9280,9288,9297,9303,9310,9316,9409,9420,9424,9439,9519,9525,9551,9586,9589,9597,9599,9713,9745,9750,9797,9827,9848,9868,9869,9879,9883,9884,9911,9912,9914,9924,9925,9931,9936,9940,9946,9951,9956,9961,9966,9982,9985,9991,10029,10072,10078,10118,10136,10144,10170,10176,10177,10184,10187,10193,10207,10250,10295,10616,10841,10916,10927,11206,11211,11378,11386,11387,11390,11520,11621,11630,11637,11644,11693,11702,11704,11730,11755,11762,11766,11780,11787,11790,11791,11833,11879,11907,11926,11944,11984,11993,12001,12244,12246,12535,12543,12545,12548,12868,12918,13146,13743,13947,13955,14638,14914,14929,15010,15011,15093,15353,15536,15620,15636,15791,15944,16185,16213,16214,16235,16315,16393,16617,16852,16853,17044,17115,17116,17287,17288,17341,17655,17798,17858,17937,17946,18015,18116,18363,18370,18453,18562,18659,18711,18824,18831,18832,18837,18856,18964,18991,19154,19279,19376,19377,19382,19410,19411,19420,19427,19458,19548,19552,19554,19556,19558,19559,19560,19603,19763,19779,19806,20019,20027,20031,20070,20207,20223,20240,20308,20432,21107,21154,21156,21174,21258,21277,21579,21581,21981,21994,21996,22028,22038,22095,22185,22580,22593,22741]]],["kings'",[2,2,[[19,1,1,0,1,[[657,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[17279,22063]]],["royal",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1493]]]]},{"k":"H4429","v":[["*",[4,4,[[12,2,2,0,2,[[345,1,1,0,1],[346,1,1,1,2]]],[23,2,2,2,4,[[780,1,1,2,3],[782,1,1,3,4]]]],[10610,10656,19868,19901]]],["Hammelech",[2,2,[[23,2,2,0,2,[[780,1,1,0,1],[782,1,1,1,2]]]],[19868,19901]]],["Melech",[2,2,[[12,2,2,0,2,[[345,1,1,0,1],[346,1,1,1,2]]]],[10610,10656]]]]},{"k":"H4430","v":[["*",[180,131,[[14,45,37,0,37,[[406,15,13,0,13],[407,12,8,13,21],[408,10,9,21,30],[409,8,7,30,37]]],[26,135,94,37,131,[[851,43,28,37,65],[852,21,17,65,82],[853,13,11,82,93],[854,23,15,93,108],[855,31,20,108,128],[856,4,3,128,131]]]],[12118,12121,12122,12123,12124,12125,12126,12127,12129,12130,12132,12133,12134,12140,12141,12142,12145,12146,12147,12148,12151,12152,12154,12155,12159,12161,12163,12164,12165,12166,12185,12187,12188,12193,12194,12196,12199,21762,21763,21765,21766,21768,21769,21770,21772,21773,21774,21779,21781,21782,21783,21784,21785,21786,21787,21788,21789,21794,21795,21802,21803,21804,21805,21806,21807,21808,21809,21810,21812,21814,21816,21817,21819,21820,21823,21824,21825,21829,21831,21834,21835,21837,21838,21855,21856,21859,21860,21861,21864,21865,21867,21868,21874,21875,21876,21877,21879,21880,21881,21882,21883,21884,21885,21886,21887,21891,21892,21904,21907,21908,21911,21912,21913,21914,21917,21918,21919,21920,21921,21922,21923,21924,21925,21926,21927,21928,21929,21930,21934,21950,21957]]],["+",[3,3,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,2,2,1,3,[[851,1,1,1,2],[855,1,1,2,3]]]],[12159,21773,21928]]],["King",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[855,1,1,1,2]]]],[21874,21911]]],["king",[144,111,[[14,33,29,0,29,[[406,9,9,0,9],[407,11,8,9,17],[408,7,6,17,23],[409,6,6,23,29]]],[26,111,82,29,111,[[851,34,24,29,53],[852,18,14,53,67],[853,11,10,67,77],[854,20,14,77,91],[855,27,19,91,110],[856,1,1,110,111]]]],[12118,12121,12122,12123,12124,12126,12127,12133,12134,12140,12141,12142,12145,12146,12147,12148,12151,12152,12154,12161,12164,12165,12166,12185,12187,12188,12194,12196,12199,21762,21763,21765,21766,21768,21769,21770,21773,21774,21782,21783,21784,21785,21786,21787,21788,21789,21794,21795,21803,21804,21805,21806,21807,21808,21809,21810,21812,21814,21816,21817,21819,21820,21823,21824,21825,21831,21837,21838,21855,21856,21859,21860,21861,21864,21865,21867,21868,21875,21876,21877,21879,21881,21882,21883,21884,21885,21886,21887,21891,21892,21904,21907,21908,21911,21912,21913,21914,21917,21918,21919,21920,21921,21922,21923,21924,21925,21926,21927,21929,21930,21934]]],["king's",[15,15,[[14,4,4,0,4,[[406,1,1,0,1],[407,1,1,1,2],[408,1,1,2,3],[409,1,1,3,4]]],[26,11,11,4,15,[[851,3,3,4,7],[852,3,3,7,10],[853,1,1,10,11],[854,3,3,11,14],[855,1,1,14,15]]]],[12124,12151,12155,12193,21768,21772,21781,21829,21834,21835,21868,21879,21880,21882,21917]]],["kings",[15,13,[[14,7,7,0,7,[[406,5,5,0,5],[408,1,1,5,6],[409,1,1,6,7]]],[26,8,6,7,13,[[851,5,4,7,11],[856,3,2,11,13]]]],[12123,12125,12129,12130,12132,12163,12185,21779,21795,21802,21805,21950,21957]]],["royal",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21912]]]]},{"k":"H4431","v":[["counsel",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]]]},{"k":"H4432","v":[["*",[9,9,[[2,5,5,0,5,[[107,1,1,0,1],[109,4,4,1,5]]],[10,1,1,5,6,[[301,1,1,5,6]]],[11,1,1,6,7,[[335,1,1,6,7]]],[23,1,1,7,8,[[776,1,1,7,8]]],[29,1,1,8,9,[[883,1,1,8,9]]]],[3272,3320,3321,3322,3323,9115,10175,19766,22449]]],["Molech",[8,8,[[2,5,5,0,5,[[107,1,1,0,1],[109,4,4,1,5]]],[10,1,1,5,6,[[301,1,1,5,6]]],[11,1,1,6,7,[[335,1,1,6,7]]],[23,1,1,7,8,[[776,1,1,7,8]]]],[3272,3320,3321,3322,3323,9115,10175,19766]]],["Moloch",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22449]]]]},{"k":"H4433","v":[["queen",[2,1,[[26,2,1,0,1,[[854,2,1,0,1]]]],[21884]]]]},{"k":"H4434","v":[["trap",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13286]]]]},{"k":"H4435","v":[["Milcah",[11,10,[[0,7,6,0,6,[[10,2,1,0,1],[21,2,2,1,3],[23,3,3,3,6]]],[3,3,3,6,9,[[142,1,1,6,7],[143,1,1,7,8],[152,1,1,8,9]]],[5,1,1,9,10,[[203,1,1,9,10]]]],[295,567,570,606,615,638,4522,4555,4890,6278]]]]},{"k":"H4436","v":[["*",[35,34,[[10,4,4,0,4,[[300,4,4,0,4]]],[13,4,4,4,8,[[375,4,4,4,8]]],[16,25,24,8,32,[[426,8,7,8,15],[427,1,1,15,16],[429,1,1,16,17],[430,3,3,17,20],[432,7,7,20,27],[433,2,2,27,29],[434,3,3,29,32]]],[21,2,2,32,34,[[676,2,2,32,34]]]],[9080,9083,9089,9092,11365,11367,11373,11376,12711,12713,12714,12717,12718,12719,12720,12746,12766,12781,12782,12791,12808,12809,12810,12812,12813,12814,12815,12818,12824,12846,12863,12865,17622,17623]]],["queen",[33,32,[[10,4,4,0,4,[[300,4,4,0,4]]],[13,4,4,4,8,[[375,4,4,4,8]]],[16,25,24,8,32,[[426,8,7,8,15],[427,1,1,15,16],[429,1,1,16,17],[430,3,3,17,20],[432,7,7,20,27],[433,2,2,27,29],[434,3,3,29,32]]]],[9080,9083,9089,9092,11365,11367,11373,11376,12711,12713,12714,12717,12718,12719,12720,12746,12766,12781,12782,12791,12808,12809,12810,12812,12813,12814,12815,12818,12824,12846,12863,12865]]],["queens",[2,2,[[21,2,2,0,2,[[676,2,2,0,2]]]],[17622,17623]]]]},{"k":"H4437","v":[["*",[57,43,[[14,4,4,0,4,[[406,1,1,0,1],[408,1,1,1,2],[409,2,2,2,4]]],[26,53,39,4,43,[[851,9,6,4,10],[853,13,11,10,21],[854,10,10,21,31],[855,9,6,31,37],[856,12,6,37,43]]]],[12134,12166,12186,12196,21795,21797,21798,21799,21800,21802,21840,21854,21855,21862,21863,21866,21867,21868,21869,21871,21873,21881,21885,21890,21892,21894,21895,21900,21902,21903,21905,21906,21908,21909,21912,21931,21933,21947,21951,21955,21956,21957,21960]]],["kingdom",[47,36,[[26,47,36,0,36,[[851,8,6,0,6],[853,13,11,6,17],[854,9,9,17,26],[855,6,4,26,30],[856,11,6,30,36]]]],[21795,21797,21798,21799,21800,21802,21840,21854,21855,21862,21863,21866,21867,21868,21869,21871,21873,21881,21885,21890,21892,21895,21900,21902,21903,21905,21906,21909,21912,21931,21947,21951,21955,21956,21957,21960]]],["kingdoms",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[856,1,1,1,2]]]],[21802,21956]]],["kingly",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21894]]],["realm",[3,3,[[14,2,2,0,2,[[409,2,2,0,2]]],[26,1,1,2,3,[[855,1,1,2,3]]]],[12186,12196,21908]]],["reign",[4,3,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]],[26,2,1,2,3,[[855,2,1,2,3]]]],[12134,12166,21933]]]]},{"k":"H4438","v":[["*",[91,82,[[3,1,1,0,1,[[140,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[10,1,1,2,3,[[292,1,1,2,3]]],[12,11,11,3,14,[[348,1,1,3,4],[349,1,1,4,5],[351,1,1,5,6],[354,2,2,6,8],[359,1,1,8,9],[363,1,1,9,10],[365,2,2,10,12],[366,2,2,12,14]]],[13,17,17,14,31,[[367,1,1,14,15],[368,2,2,15,17],[369,1,1,17,18],[373,1,1,18,19],[377,1,1,19,20],[378,1,1,20,21],[381,2,2,21,23],[382,2,2,23,25],[386,1,1,25,26],[395,1,1,26,27],[399,1,1,27,28],[401,1,1,28,29],[402,2,2,29,31]]],[14,6,5,31,36,[[403,1,1,31,32],[406,3,2,32,34],[409,1,1,34,35],[410,1,1,35,36]]],[15,2,2,36,38,[[421,1,1,36,37],[424,1,1,37,38]]],[16,26,21,38,59,[[426,9,8,38,46],[427,4,3,46,49],[428,2,2,49,51],[429,1,1,51,52],[430,5,3,52,55],[431,2,1,55,56],[432,1,1,56,57],[433,1,1,57,58],[434,1,1,58,59]]],[18,6,5,59,64,[[522,1,1,59,60],[580,1,1,60,61],[622,4,3,61,64]]],[20,1,1,64,65,[[662,1,1,64,65]]],[23,3,3,65,68,[[754,1,1,65,66],[793,1,1,66,67],[796,1,1,67,68]]],[26,16,14,68,82,[[850,2,2,68,70],[851,1,1,70,71],[857,3,3,71,74],[858,1,1,74,75],[859,1,1,75,76],[860,8,6,76,82]]]],[4453,7761,8782,10683,10743,10776,10874,10877,10974,11108,11148,11150,11189,11194,11195,11212,11223,11231,11342,11431,11438,11500,11509,11510,11521,11617,11810,11921,11985,12013,12015,12017,12115,12116,12174,12202,12546,12646,12704,12706,12709,12711,12713,12716,12721,12722,12727,12740,12741,12753,12755,12776,12780,12782,12785,12801,12809,12832,12864,14603,15568,16331,16332,16333,17395,19208,20161,20307,21738,21757,21759,21962,21983,21984,21989,22028,22038,22040,22045,22053,22056,22057]]],["empire",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12722]]],["estate",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12721]]],["kingdom",[49,46,[[3,1,1,0,1,[[140,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[10,1,1,2,3,[[292,1,1,2,3]]],[12,8,8,3,11,[[348,1,1,3,4],[349,1,1,4,5],[351,1,1,5,6],[354,2,2,6,8],[359,1,1,8,9],[365,2,2,9,11]]],[13,9,9,11,20,[[367,1,1,11,12],[368,2,2,12,14],[373,1,1,14,15],[377,1,1,15,16],[378,1,1,16,17],[399,1,1,17,18],[402,2,2,18,20]]],[14,1,1,20,21,[[403,1,1,20,21]]],[15,1,1,21,22,[[421,1,1,21,22]]],[16,11,11,22,33,[[426,3,3,22,25],[427,1,1,25,26],[428,2,2,26,28],[429,1,1,28,29],[430,2,2,29,31],[432,1,1,31,32],[434,1,1,32,33]]],[18,6,5,33,38,[[522,1,1,33,34],[580,1,1,34,35],[622,4,3,35,38]]],[20,1,1,38,39,[[662,1,1,38,39]]],[26,9,7,39,46,[[857,1,1,39,40],[859,1,1,40,41],[860,7,5,41,46]]]],[4453,7761,8782,10683,10743,10776,10874,10877,10974,11148,11150,11195,11212,11223,11342,11431,11438,11921,12013,12015,12017,12546,12704,12706,12716,12727,12753,12755,12776,12782,12785,12809,12864,14603,15568,16331,16332,16333,17395,21984,22028,22040,22045,22053,22056,22057]]],["kingdoms",[2,2,[[23,1,1,0,1,[[754,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]]],[19208,21983]]],["realm",[4,4,[[13,1,1,0,1,[[386,1,1,0,1]]],[26,3,3,1,4,[[850,1,1,1,2],[858,1,1,2,3],[860,1,1,3,4]]]],[11617,21757,21989,22038]]],["reign",[21,20,[[12,2,2,0,2,[[363,1,1,0,1],[366,1,1,1,2]]],[13,7,7,2,9,[[369,1,1,2,3],[381,2,2,3,5],[382,2,2,5,7],[395,1,1,7,8],[401,1,1,8,9]]],[14,5,4,9,13,[[406,3,2,9,11],[409,1,1,11,12],[410,1,1,12,13]]],[15,1,1,13,14,[[424,1,1,13,14]]],[16,1,1,14,15,[[427,1,1,14,15]]],[23,2,2,15,17,[[793,1,1,15,16],[796,1,1,16,17]]],[26,3,3,17,20,[[850,1,1,17,18],[851,1,1,18,19],[857,1,1,19,20]]]],[11108,11194,11231,11500,11509,11510,11521,11810,11985,12115,12116,12174,12202,12646,12740,20161,20307,21738,21759,21962]]],["royal",[13,10,[[12,1,1,0,1,[[366,1,1,0,1]]],[16,12,9,1,10,[[426,4,4,1,5],[427,2,2,5,7],[430,3,1,7,8],[431,2,1,8,9],[433,1,1,9,10]]]],[11189,12709,12711,12713,12721,12740,12741,12780,12801,12832]]]]},{"k":"H4439","v":[["Malchiel",[3,3,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[12,1,1,2,3,[[344,1,1,2,3]]]],[1403,4534,10566]]]]},{"k":"H4440","v":[["*",[2,2,[[2,1,1,0,1,[[96,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[2912,4534]]],["Malchielites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4534]]],["part",[1,1,[[2,1,1,0,1,[[96,1,1,0,1]]]],[2912]]]]},{"k":"H4441","v":[["*",[16,15,[[12,3,3,0,3,[[343,1,1,0,1],[346,1,1,1,2],[361,1,1,2,3]]],[14,3,2,3,5,[[412,3,2,3,5]]],[15,7,7,5,12,[[415,3,3,5,8],[420,1,1,8,9],[422,1,1,9,10],[423,1,1,10,11],[424,1,1,11,12]]],[23,3,3,12,15,[[765,1,1,12,13],[782,2,2,13,15]]]],[10494,10627,11024,12277,12283,12338,12341,12358,12497,12552,12600,12666,19441,19896,19901]]],["Malchiah",[9,9,[[12,1,1,0,1,[[343,1,1,0,1]]],[14,2,2,1,3,[[412,2,2,1,3]]],[15,4,4,3,7,[[415,2,2,3,5],[420,1,1,5,6],[423,1,1,6,7]]],[23,2,2,7,9,[[782,2,2,7,9]]]],[10494,12277,12283,12341,12358,12497,12600,19896,19901]]],["Malchijah",[6,6,[[12,2,2,0,2,[[346,1,1,0,1],[361,1,1,1,2]]],[14,1,1,2,3,[[412,1,1,2,3]]],[15,3,3,3,6,[[415,1,1,3,4],[422,1,1,4,5],[424,1,1,5,6]]]],[10627,11024,12277,12338,12552,12666]]],["Melchiah",[1,1,[[23,1,1,0,1,[[765,1,1,0,1]]]],[19441]]]]},{"k":"H4442","v":[["Melchizedek",[2,2,[[0,1,1,0,1,[[13,1,1,0,1]]],[18,1,1,1,2,[[587,1,1,1,2]]]],[354,15790]]]]},{"k":"H4443","v":[["Malchiram",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10379]]]]},{"k":"H4444","v":[["*",[5,5,[[8,2,2,0,2,[[249,1,1,0,1],[266,1,1,1,2]]],[12,3,3,2,5,[[345,1,1,2,3],[346,1,1,3,4],[347,1,1,4,5]]]],[7557,8011,10608,10654,10661]]],["Malchishua",[4,4,[[8,1,1,0,1,[[266,1,1,0,1]]],[12,3,3,1,4,[[345,1,1,1,2],[346,1,1,2,3],[347,1,1,3,4]]]],[8011,10608,10654,10661]]],["Melchishua",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7557]]]]},{"k":"H4445","v":[["*",[5,5,[[10,2,2,0,2,[[301,2,2,0,2]]],[11,1,1,2,3,[[335,1,1,2,3]]],[12,1,1,3,4,[[345,1,1,3,4]]],[35,1,1,4,5,[[906,1,1,4,5]]]],[9113,9141,10178,10584,22792]]],["Malcham",[2,2,[[12,1,1,0,1,[[345,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]]],[10584,22792]]],["Milcom",[3,3,[[10,2,2,0,2,[[301,2,2,0,2]]],[11,1,1,2,3,[[335,1,1,2,3]]]],[9113,9141,10178]]]]},{"k":"H4446","v":[["queen",[5,5,[[23,5,5,0,5,[[751,1,1,0,1],[788,4,4,1,5]]]],[19137,20027,20028,20029,20035]]]]},{"k":"H4447","v":[["Hammoleketh",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10553]]]]},{"k":"H4448","v":[["*",[5,5,[[0,1,1,0,1,[[20,1,1,0,1]]],[17,2,2,1,3,[[443,1,1,1,2],[468,1,1,2,3]]],[18,1,1,3,4,[[583,1,1,3,4]]],[19,1,1,4,5,[[633,1,1,4,5]]]],[520,13031,13653,15653,16553]]],["said",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[520]]],["speak",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13031]]],["speaketh",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16553]]],["utter",[2,2,[[17,1,1,0,1,[[468,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]]],[13653,15653]]]]},{"k":"H4449","v":[["*",[5,5,[[26,5,5,0,5,[[855,1,1,0,1],[856,4,4,1,5]]]],[21926,21941,21944,21953,21958]]],["said",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21926]]],["spake",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21944,21953]]],["speak",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21958]]],["speaking",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21941]]]]},{"k":"H4450","v":[["Milalai",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12660]]]]},{"k":"H4451","v":[["goad",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6599]]]]},{"k":"H4452","v":[["are",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16001]]]]},{"k":"H4453","v":[["Melzar",[2,2,[[26,2,2,0,2,[[850,2,2,0,2]]]],[21748,21753]]]]},{"k":"H4454","v":[["+",[2,2,[[2,2,2,0,2,[[90,1,1,0,1],[94,1,1,1,2]]]],[2760,2838]]]]},{"k":"H4455","v":[["*",[8,8,[[3,5,5,0,5,[[147,5,5,0,5]]],[18,1,1,5,6,[[499,1,1,5,6]]],[22,2,2,6,8,[[727,2,2,6,8]]]],[4675,4676,4690,4691,4696,14219,18660,18661]]],["booty",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4696]]],["jaws",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14219]]],["prey",[6,6,[[3,4,4,0,4,[[147,4,4,0,4]]],[22,2,2,4,6,[[727,2,2,4,6]]]],[4675,4676,4690,4691,18660,18661]]]]},{"k":"H4456","v":[["*",[8,8,[[4,1,1,0,1,[[163,1,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]],[19,1,1,2,3,[[643,1,1,2,3]]],[23,2,2,3,5,[[747,1,1,3,4],[749,1,1,4,5]]],[27,1,1,5,6,[[867,1,1,5,6]]],[28,1,1,6,7,[[877,1,1,6,7]]],[37,1,1,7,8,[[920,1,1,7,8]]]],[5222,13555,16855,19005,19082,22170,22334,23017]]],["latter",[2,2,[[23,1,1,0,1,[[749,1,1,0,1]]],[27,1,1,1,2,[[867,1,1,1,2]]]],[19082,22170]]],["rain",[6,6,[[4,1,1,0,1,[[163,1,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]],[19,1,1,2,3,[[643,1,1,2,3]]],[23,1,1,3,4,[[747,1,1,3,4]]],[28,1,1,4,5,[[877,1,1,4,5]]],[37,1,1,5,6,[[920,1,1,5,6]]]],[5222,13555,16855,19005,22334,23017]]]]},{"k":"H4457","v":[["*",[6,6,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]],[10,1,1,3,4,[[297,1,1,3,4]]],[13,1,1,4,5,[[370,1,1,4,5]]],[22,1,1,5,6,[[684,1,1,5,6]]]],[2233,2627,3752,8983,11267,17775]]],["snuffers",[1,1,[[1,1,1,0,1,[[86,1,1,0,1]]]],[2627]]],["tongs",[5,5,[[1,1,1,0,1,[[74,1,1,0,1]]],[3,1,1,1,2,[[120,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[13,1,1,3,4,[[370,1,1,3,4]]],[22,1,1,4,5,[[684,1,1,4,5]]]],[2233,3752,8983,11267,17775]]]]},{"k":"H4458","v":[["vestry",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9815]]]]},{"k":"H4459","v":[["teeth",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14785]]]]},{"k":"H4460","v":[["barns",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22308]]]]},{"k":"H4461","v":[["measures",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13798]]]]},{"k":"H4462","v":[["Memucan",[3,3,[[16,3,3,0,3,[[426,3,3,0,3]]]],[12716,12718,12723]]]]},{"k":"H4463","v":[["deaths",[2,2,[[23,1,1,0,1,[[760,1,1,0,1]]],[25,1,1,1,2,[[829,1,1,1,2]]]],[19340,21165]]]]},{"k":"H4464","v":[["bastard",[2,2,[[4,1,1,0,1,[[175,1,1,0,1]]],[37,1,1,1,2,[[919,1,1,1,2]]]],[5502,23005]]]]},{"k":"H4465","v":[["*",[10,10,[[2,7,7,0,7,[[114,7,7,0,7]]],[4,1,1,7,8,[[170,1,1,7,8]]],[15,1,1,8,9,[[425,1,1,8,9]]],[25,1,1,9,10,[[808,1,1,9,10]]]],[3483,3494,3496,3497,3498,3502,3519,5392,12691,20590]]],["+",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[4,1,1,1,2,[[170,1,1,1,2]]]],[3494,5392]]],["ought",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3483]]],["sale",[2,2,[[2,2,2,0,2,[[114,2,2,0,2]]]],[3496,3519]]],["sold",[4,4,[[2,3,3,0,3,[[114,3,3,0,3]]],[25,1,1,3,4,[[808,1,1,3,4]]]],[3497,3498,3502,20590]]],["ware",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12691]]]]},{"k":"H4466","v":[["+",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3511]]]]},{"k":"H4467","v":[["*",[117,113,[[0,2,2,0,2,[[9,1,1,0,1],[19,1,1,1,2]]],[1,1,1,2,3,[[68,1,1,2,3]]],[3,2,1,3,4,[[148,2,1,3,4]]],[4,7,7,4,11,[[155,4,4,4,8],[169,2,2,8,10],[180,1,1,10,11]]],[5,2,2,11,13,[[196,1,1,11,12],[197,1,1,12,13]]],[8,6,6,13,19,[[245,1,1,13,14],[248,2,2,14,16],[259,1,1,16,17],[262,1,1,17,18],[263,1,1,18,19]]],[9,6,6,19,25,[[269,2,2,19,21],[271,1,1,21,22],[273,3,3,22,25]]],[10,12,11,25,36,[[292,1,1,25,26],[294,1,1,26,27],[299,1,1,27,28],[300,1,1,28,29],[301,4,4,29,33],[302,1,1,33,34],[304,1,1,34,35],[308,2,1,35,36]]],[11,5,5,36,41,[[323,1,1,36,37],[326,1,1,37,38],[327,1,1,38,39],[331,2,2,39,41]]],[12,3,3,41,44,[[353,1,1,41,42],[366,2,2,42,44]]],[13,19,19,44,63,[[375,1,1,44,45],[377,1,1,45,46],[378,1,1,46,47],[379,2,2,47,49],[380,1,1,49,50],[383,2,2,50,52],[386,2,2,52,54],[387,2,2,54,56],[388,2,2,56,58],[389,1,1,58,59],[391,1,1,59,60],[395,1,1,60,61],[398,1,1,61,62],[402,1,1,62,63]]],[14,1,1,63,64,[[403,1,1,63,64]]],[15,1,1,64,65,[[421,1,1,64,65]]],[18,6,6,65,71,[[523,1,1,65,66],[545,1,1,66,67],[556,1,1,67,68],[579,1,1,68,69],[582,1,1,69,70],[612,1,1,70,71]]],[22,14,13,71,84,[[687,1,1,71,72],[688,1,1,72,73],[691,2,2,73,75],[692,1,1,75,76],[695,1,1,76,77],[697,2,1,77,78],[701,2,2,78,80],[715,2,2,80,82],[725,1,1,82,83],[738,1,1,83,84]]],[23,17,17,84,101,[[745,2,2,84,86],[759,1,1,86,87],[762,2,2,87,89],[768,1,1,89,90],[769,1,1,90,91],[771,2,2,91,93],[772,2,2,93,95],[773,1,1,95,96],[778,2,2,96,98],[793,1,1,98,99],[795,2,2,99,101]]],[24,1,1,101,102,[[798,1,1,101,102]]],[25,4,4,102,106,[[818,1,1,102,103],[830,2,2,103,105],[838,1,1,105,106]]],[29,3,3,106,109,[[884,1,1,106,107],[885,1,1,107,108],[887,1,1,108,109]]],[32,1,1,109,110,[[896,1,1,109,110]]],[33,1,1,110,111,[[902,1,1,110,111]]],[35,1,1,111,112,[[908,1,1,111,112]]],[36,2,1,112,113,[[910,2,1,112,113]]]],[244,504,2032,4751,4979,4985,4988,4996,5382,5384,5636,6066,6117,7436,7498,7499,7859,7935,7959,8091,8109,8144,8192,8193,8196,8816,8865,9056,9099,9119,9121,9139,9142,9177,9226,9351,9830,9901,9944,10076,10080,10840,11175,11194,11383,11415,11445,11458,11461,11480,11528,11533,11593,11616,11627,11628,11653,11654,11676,11707,11812,11890,12016,12018,12533,14620,14932,15191,15543,15619,16186,17836,17860,17910,17925,17944,17986,18006,18088,18094,18368,18372,18604,18833,18956,18961,19319,19391,19393,19533,19560,19597,19604,19619,19626,19653,19802,19818,20155,20232,20239,20334,20839,21197,21198,21419,22452,22477,22503,22628,22717,22828,22877]]],["+",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[10840,15619]]],["king's",[1,1,[[29,1,1,0,1,[[885,1,1,0,1]]]],[22477]]],["kingdom",[60,57,[[0,2,2,0,2,[[9,1,1,0,1],[19,1,1,1,2]]],[1,1,1,2,3,[[68,1,1,2,3]]],[3,2,1,3,4,[[148,2,1,3,4]]],[4,5,5,4,9,[[155,3,3,4,7],[169,2,2,7,9]]],[8,4,4,9,13,[[248,2,2,9,11],[259,1,1,11,12],[263,1,1,12,13]]],[9,6,6,13,19,[[269,2,2,13,15],[271,1,1,15,16],[273,3,3,16,19]]],[10,11,10,19,29,[[292,1,1,19,20],[299,1,1,20,21],[300,1,1,21,22],[301,4,4,22,26],[302,1,1,26,27],[304,1,1,27,28],[308,2,1,28,29]]],[11,2,2,29,31,[[326,1,1,29,30],[327,1,1,30,31]]],[12,1,1,31,32,[[366,1,1,31,32]]],[13,13,13,32,45,[[375,1,1,32,33],[377,1,1,33,34],[379,2,2,34,36],[380,1,1,36,37],[383,1,1,37,38],[387,2,2,38,40],[388,1,1,40,41],[389,1,1,41,42],[391,1,1,42,43],[395,1,1,43,44],[398,1,1,44,45]]],[22,5,4,45,49,[[687,1,1,45,46],[695,1,1,46,47],[697,2,1,47,48],[738,1,1,48,49]]],[23,3,3,49,52,[[762,2,2,49,51],[771,1,1,51,52]]],[24,1,1,52,53,[[798,1,1,52,53]]],[25,2,2,53,55,[[818,1,1,53,54],[830,1,1,54,55]]],[29,1,1,55,56,[[887,1,1,55,56]]],[32,1,1,56,57,[[896,1,1,56,57]]]],[244,504,2032,4751,4979,4985,4988,5382,5384,7498,7499,7859,7959,8091,8109,8144,8192,8193,8196,8816,9056,9099,9119,9121,9139,9142,9177,9226,9351,9901,9944,11175,11383,11415,11458,11461,11480,11528,11627,11628,11653,11676,11707,11812,11890,17836,17986,18006,18833,19391,19393,19604,20334,20839,21197,22503,22628]]],["kingdoms",[48,47,[[4,2,2,0,2,[[155,1,1,0,1],[180,1,1,1,2]]],[5,1,1,2,3,[[197,1,1,2,3]]],[8,1,1,3,4,[[245,1,1,3,4]]],[10,1,1,4,5,[[294,1,1,4,5]]],[11,2,2,5,7,[[331,2,2,5,7]]],[12,1,1,7,8,[[366,1,1,7,8]]],[13,5,5,8,13,[[378,1,1,8,9],[383,1,1,9,10],[386,2,2,10,12],[402,1,1,12,13]]],[14,1,1,13,14,[[403,1,1,13,14]]],[15,1,1,14,15,[[421,1,1,14,15]]],[18,5,5,15,20,[[523,1,1,15,16],[545,1,1,16,17],[556,1,1,17,18],[579,1,1,18,19],[612,1,1,19,20]]],[22,9,9,20,29,[[688,1,1,20,21],[691,2,2,21,23],[692,1,1,23,24],[701,2,2,24,26],[715,2,2,26,28],[725,1,1,28,29]]],[23,12,12,29,41,[[745,2,2,29,31],[759,1,1,31,32],[768,1,1,32,33],[769,1,1,33,34],[772,1,1,34,35],[773,1,1,35,36],[778,2,2,36,38],[793,1,1,38,39],[795,2,2,39,41]]],[25,2,2,41,43,[[830,1,1,41,42],[838,1,1,42,43]]],[29,1,1,43,44,[[884,1,1,43,44]]],[33,1,1,44,45,[[902,1,1,44,45]]],[35,1,1,45,46,[[908,1,1,45,46]]],[36,2,1,46,47,[[910,2,1,46,47]]]],[4996,5636,6117,7436,8865,10076,10080,11194,11445,11533,11593,11616,12016,12018,12533,14620,14932,15191,15543,16186,17860,17910,17925,17944,18088,18094,18368,18372,18604,18956,18961,19319,19533,19560,19626,19653,19802,19818,20155,20232,20239,21198,21419,22452,22717,22828,22877]]],["reign",[2,2,[[23,2,2,0,2,[[771,1,1,0,1],[772,1,1,1,2]]]],[19597,19619]]],["royal",[4,4,[[5,1,1,0,1,[[196,1,1,0,1]]],[8,1,1,1,2,[[262,1,1,1,2]]],[11,1,1,2,3,[[323,1,1,2,3]]],[13,1,1,3,4,[[388,1,1,3,4]]]],[6066,7935,9830,11654]]]]},{"k":"H4468","v":[["*",[9,9,[[5,5,5,0,5,[[199,5,5,0,5]]],[8,1,1,5,6,[[250,1,1,5,6]]],[9,1,1,6,7,[[282,1,1,6,7]]],[23,1,1,7,8,[[770,1,1,7,8]]],[27,1,1,8,9,[[862,1,1,8,9]]]],[6166,6175,6181,6184,6185,7588,8429,19573,22098]]],["+",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6181]]],["kingdom",[7,7,[[5,4,4,0,4,[[199,4,4,0,4]]],[8,1,1,4,5,[[250,1,1,4,5]]],[9,1,1,5,6,[[282,1,1,5,6]]],[27,1,1,6,7,[[862,1,1,6,7]]]],[6166,6175,6184,6185,7588,8429,22098]]],["reign",[1,1,[[23,1,1,0,1,[[770,1,1,0,1]]]],[19573]]]]},{"k":"H4469","v":[["*",[2,2,[[19,1,1,0,1,[[650,1,1,0,1]]],[22,1,1,1,2,[[743,1,1,1,2]]]],[17074,18908]]],["offering",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18908]]],["wine",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17074]]]]},{"k":"H4470","v":[["bitterness",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16898]]]]},{"k":"H4471","v":[["Mamre",[10,10,[[0,10,10,0,10,[[12,1,1,0,1],[13,2,2,1,3],[17,1,1,3,4],[22,2,2,4,6],[24,1,1,6,7],[34,1,1,7,8],[48,1,1,8,9],[49,1,1,9,10]]]],[336,349,360,425,588,590,667,1038,1503,1519]]]]},{"k":"H4472","v":[["bitterness",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13069]]]]},{"k":"H4473","v":[["anointed",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21171]]]]},{"k":"H4474","v":[["*",[4,3,[[12,1,1,0,1,[[363,1,1,0,1]]],[26,3,2,1,3,[[860,3,2,1,3]]]],[11083,22039,22041]]],["dominion",[3,2,[[26,3,2,0,2,[[860,3,2,0,2]]]],[22039,22041]]],["ruled",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11083]]]]},{"k":"H4475","v":[["*",[16,15,[[0,2,1,0,1,[[0,2,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[11,1,1,2,3,[[332,1,1,2,3]]],[13,2,2,3,5,[[374,1,1,3,4],[398,1,1,4,5]]],[18,5,5,5,10,[[580,1,1,5,6],[591,1,1,6,7],[613,2,2,7,9],[622,1,1,9,10]]],[22,2,2,10,12,[[700,1,1,10,11],[717,1,1,11,12]]],[23,2,2,12,14,[[778,1,1,12,13],[795,1,1,13,14]]],[32,1,1,14,15,[[896,1,1,14,15]]]],[15,9070,10111,11352,11884,15571,15824,16204,16205,16333,18073,18414,19802,20240,22628]]],["+",[1,1,[[23,1,1,0,1,[[778,1,1,0,1]]]],[19802]]],["dominion",[9,9,[[10,1,1,0,1,[[299,1,1,0,1]]],[11,1,1,1,2,[[332,1,1,1,2]]],[13,1,1,2,3,[[374,1,1,2,3]]],[18,3,3,3,6,[[580,1,1,3,4],[591,1,1,4,5],[622,1,1,5,6]]],[22,1,1,6,7,[[717,1,1,6,7]]],[23,1,1,7,8,[[795,1,1,7,8]]],[32,1,1,8,9,[[896,1,1,8,9]]]],[9070,10111,11352,15571,15824,16333,18414,20240,22628]]],["government",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18073]]],["power",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11884]]],["rule",[4,3,[[0,2,1,0,1,[[0,2,1,0,1]]],[18,2,2,1,3,[[613,2,2,1,3]]]],[15,16204,16205]]]]},{"k":"H4476","v":[["breeding",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22814]]]]},{"k":"H4477","v":[["sweet",[2,2,[[15,1,1,0,1,[[420,1,1,0,1]]],[21,1,1,1,2,[[675,1,1,1,2]]]],[12503,17614]]]]},{"k":"H4478","v":[["*",[14,12,[[1,5,4,0,4,[[65,5,4,0,4]]],[3,3,3,4,7,[[127,3,3,4,7]]],[4,2,2,7,9,[[160,2,2,7,9]]],[5,2,1,9,10,[[191,2,1,9,10]]],[15,1,1,10,11,[[421,1,1,10,11]]],[18,1,1,11,12,[[555,1,1,11,12]]]],[1962,1978,1980,1982,4030,4031,4033,5140,5153,5946,12531,15137]]],["Manna",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1978]]],["manna",[13,11,[[1,4,3,0,3,[[65,4,3,0,3]]],[3,3,3,3,6,[[127,3,3,3,6]]],[4,2,2,6,8,[[160,2,2,6,8]]],[5,2,1,8,9,[[191,2,1,8,9]]],[15,1,1,9,10,[[421,1,1,9,10]]],[18,1,1,10,11,[[555,1,1,10,11]]]],[1962,1980,1982,4030,4031,4033,5140,5153,5946,12531,15137]]]]},{"k":"H4479","v":[["*",[10,10,[[14,3,3,0,3,[[407,3,3,0,3]]],[26,7,7,3,10,[[852,3,3,3,6],[853,3,3,6,9],[854,1,1,9,10]]]],[12137,12138,12143,21813,21818,21822,21854,21862,21869,21895]]],["+",[6,6,[[26,6,6,0,6,[[852,2,2,0,2],[853,3,3,2,5],[854,1,1,5,6]]]],[21813,21818,21854,21862,21869,21895]]],["What",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12138]]],["Who",[2,2,[[14,2,2,0,2,[[407,2,2,0,2]]]],[12137,12143]]],["who",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21822]]]]},{"k":"H4480","v":[["*",[7520,5763,[[0,432,345,0,345,[[0,3,2,0,2],[1,18,13,2,15],[2,21,14,15,29],[3,11,7,29,36],[4,3,1,36,37],[5,17,10,37,47],[6,15,11,47,58],[7,16,13,58,71],[8,9,7,71,78],[9,6,6,78,84],[10,5,5,84,89],[11,8,3,89,92],[12,7,5,92,97],[13,5,4,97,101],[14,3,3,101,104],[15,7,5,104,109],[16,8,6,109,115],[17,7,7,115,122],[18,16,13,122,135],[19,3,3,135,138],[20,6,5,138,143],[21,5,5,143,148],[22,8,6,148,154],[23,20,16,154,170],[24,8,7,170,177],[25,9,8,177,185],[26,18,12,185,197],[27,8,6,197,203],[28,9,8,203,211],[29,6,6,211,217],[30,13,12,217,229],[31,6,4,229,233],[32,4,4,233,237],[33,3,3,237,240],[34,9,8,240,248],[35,8,7,248,255],[36,9,9,255,264],[37,7,7,264,271],[38,5,4,271,275],[39,7,4,275,279],[40,10,10,279,289],[41,9,7,289,296],[42,5,4,296,300],[43,8,7,300,307],[44,5,5,307,312],[45,4,4,312,316],[46,10,9,316,325],[47,10,9,325,334],[48,12,8,334,342],[49,3,3,342,345]]],[1,413,303,345,648,[[50,3,3,345,348],[51,10,9,348,357],[52,13,11,357,368],[53,8,5,368,373],[54,8,7,373,380],[55,11,9,380,389],[56,6,6,389,395],[57,21,9,395,404],[58,13,12,404,416],[59,11,9,416,425],[60,8,6,425,431],[61,30,20,431,451],[62,13,10,451,461],[63,14,8,461,469],[64,2,2,469,471],[65,11,9,471,480],[66,8,7,480,487],[67,14,11,487,498],[68,8,8,498,506],[69,8,5,506,511],[70,3,3,511,514],[71,4,4,514,518],[72,12,10,518,528],[73,4,3,528,531],[74,24,13,531,544],[75,10,7,544,551],[76,5,3,551,554],[77,9,6,554,560],[78,19,13,560,573],[79,12,10,573,583],[80,1,1,583,584],[81,22,15,584,599],[82,10,7,599,606],[83,9,8,606,614],[84,2,2,614,616],[85,8,8,616,624],[86,21,10,624,634],[87,5,4,634,638],[88,8,5,638,643],[89,5,5,643,648]]],[2,370,283,648,931,[[90,12,5,648,653],[91,12,7,653,660],[92,5,5,660,665],[93,25,21,665,686],[94,18,14,686,700],[95,14,12,700,712],[96,25,16,712,728],[97,11,10,728,738],[98,9,6,738,744],[99,8,7,744,751],[100,23,19,751,770],[101,1,1,770,771],[102,19,16,771,787],[103,25,20,787,807],[104,9,9,807,816],[105,18,12,816,828],[106,12,7,828,835],[107,6,5,835,840],[108,8,7,840,847],[109,13,9,847,856],[110,8,7,856,863],[111,16,12,863,875],[112,13,9,875,884],[113,6,5,884,889],[114,24,19,889,908],[115,10,7,908,915],[116,20,16,915,931]]],[3,412,336,931,1267,[[117,16,16,931,947],[118,1,1,947,948],[119,14,13,948,961],[120,11,11,961,972],[121,13,12,972,984],[122,8,5,984,989],[123,4,3,989,992],[124,9,7,992,999],[125,5,5,999,1004],[126,6,6,1004,1010],[127,12,10,1010,1020],[128,6,6,1020,1026],[129,11,8,1026,1034],[130,10,10,1034,1044],[131,11,9,1044,1053],[132,21,17,1053,1070],[133,6,5,1070,1075],[134,19,10,1075,1085],[135,7,6,1085,1091],[136,10,10,1091,1101],[137,20,15,1101,1116],[138,16,12,1116,1128],[139,8,5,1128,1133],[140,11,8,1133,1141],[141,5,5,1141,1146],[142,6,5,1146,1151],[143,3,3,1151,1154],[144,2,2,1154,1156],[145,11,11,1156,1167],[146,2,2,1167,1169],[147,33,17,1169,1186],[148,13,10,1186,1196],[149,49,47,1196,1243],[150,12,9,1243,1252],[151,11,8,1252,1260],[152,10,7,1260,1267]]],[4,373,274,1267,1541,[[153,9,8,1267,1275],[154,22,16,1275,1291],[155,8,7,1291,1298],[156,27,21,1298,1319],[157,12,9,1319,1328],[158,7,6,1328,1334],[159,20,14,1334,1348],[160,6,5,1348,1353],[161,25,17,1353,1370],[162,7,6,1370,1376],[163,8,6,1376,1382],[164,10,7,1382,1389],[165,13,5,1389,1394],[166,8,6,1394,1400],[167,11,8,1400,1408],[168,8,6,1408,1414],[169,9,8,1414,1422],[170,13,10,1422,1432],[171,6,6,1432,1438],[172,9,5,1438,1443],[173,3,3,1443,1446],[174,6,6,1446,1452],[175,11,8,1452,1460],[176,10,7,1460,1467],[177,8,6,1467,1473],[178,11,6,1473,1479],[180,25,18,1479,1497],[181,11,9,1497,1506],[182,6,5,1506,1511],[183,7,7,1511,1518],[184,16,11,1518,1529],[185,20,11,1529,1540],[186,1,1,1540,1541]]],[5,309,228,1541,1769,[[187,3,3,1541,1544],[188,15,12,1544,1556],[189,11,9,1556,1565],[190,16,11,1565,1576],[191,13,8,1576,1584],[192,8,6,1584,1590],[193,12,11,1590,1601],[194,21,16,1601,1617],[195,12,11,1617,1628],[196,17,15,1628,1643],[197,15,8,1643,1651],[198,6,6,1651,1657],[199,13,11,1657,1668],[200,4,4,1668,1672],[201,20,14,1672,1686],[202,7,5,1686,1691],[203,5,4,1691,1695],[204,10,7,1695,1702],[205,12,9,1702,1711],[206,7,4,1711,1715],[207,37,22,1715,1737],[208,16,10,1737,1747],[209,16,11,1747,1758],[210,13,11,1758,1769]]],[6,278,196,1769,1965,[[211,9,6,1769,1775],[212,17,10,1775,1785],[213,8,7,1785,1792],[214,8,5,1792,1797],[215,13,7,1797,1804],[216,17,11,1804,1815],[217,11,7,1815,1822],[218,14,11,1822,1833],[219,16,12,1833,1845],[220,6,3,1845,1848],[221,25,19,1848,1867],[222,4,4,1867,1871],[223,11,8,1871,1879],[224,12,9,1879,1888],[225,9,9,1888,1897],[226,11,8,1897,1905],[227,10,7,1905,1912],[228,14,8,1912,1920],[229,12,7,1920,1927],[230,26,20,1927,1947],[231,25,18,1947,1965]]],[7,35,30,1965,1995,[[232,10,9,1965,1974],[233,13,12,1974,1986],[234,2,2,1986,1988],[235,10,7,1988,1995]]],[8,303,238,1995,2233,[[236,12,9,1995,2004],[237,12,10,2004,2014],[238,7,5,2014,2019],[239,11,9,2019,2028],[240,4,4,2028,2032],[241,8,6,2032,2038],[242,12,6,2038,2044],[243,5,4,2044,2048],[244,13,8,2048,2056],[245,15,11,2056,2067],[246,2,2,2067,2069],[247,11,9,2069,2078],[248,5,5,2078,2083],[249,17,13,2083,2096],[250,19,12,2096,2108],[251,5,4,2108,2112],[252,27,21,2112,2133],[253,12,9,2133,2142],[254,2,2,2142,2144],[255,17,16,2144,2160],[256,5,5,2160,2165],[257,5,4,2165,2169],[258,11,6,2169,2175],[259,10,10,2175,2185],[260,18,16,2185,2201],[261,7,6,2201,2207],[262,3,2,2207,2209],[263,8,8,2209,2217],[264,3,3,2217,2220],[265,13,9,2220,2229],[266,4,4,2229,2233]]],[9,271,195,2233,2428,[[267,14,9,2233,2242],[268,15,11,2242,2253],[269,17,11,2253,2264],[270,7,5,2264,2269],[271,5,4,2269,2273],[272,10,8,2273,2281],[273,17,10,2281,2291],[274,13,6,2291,2297],[275,3,2,2297,2299],[276,11,6,2299,2305],[277,13,10,2305,2315],[278,10,8,2315,2323],[279,14,12,2323,2335],[280,11,10,2335,2345],[281,11,10,2345,2355],[282,6,4,2355,2359],[283,6,4,2359,2363],[284,5,4,2363,2367],[285,14,9,2367,2376],[286,12,10,2376,2386],[287,9,6,2386,2392],[288,25,17,2392,2409],[289,14,12,2409,2421],[290,9,7,2421,2428]]],[10,267,212,2428,2640,[[291,11,10,2428,2438],[292,16,15,2438,2453],[293,3,3,2453,2456],[294,16,9,2456,2465],[295,6,6,2465,2471],[296,13,9,2471,2480],[297,30,20,2480,2500],[298,27,20,2500,2520],[299,12,10,2520,2530],[300,15,9,2530,2539],[301,15,14,2539,2553],[302,13,9,2553,2562],[303,10,9,2562,2571],[304,11,10,2571,2581],[305,5,5,2581,2586],[306,6,6,2586,2592],[307,8,8,2592,2600],[308,7,6,2600,2606],[309,8,7,2606,2613],[310,16,12,2613,2625],[311,7,5,2625,2630],[312,12,10,2630,2640]]],[11,272,218,2640,2858,[[313,13,9,2640,2649],[314,18,13,2649,2662],[315,10,9,2662,2671],[316,12,11,2671,2682],[317,18,15,2682,2697],[318,12,10,2697,2707],[319,8,5,2707,2712],[320,11,9,2712,2721],[321,9,8,2721,2729],[322,11,10,2729,2739],[323,6,5,2739,2744],[324,6,6,2744,2750],[325,7,6,2750,2756],[326,5,4,2756,2760],[327,8,8,2760,2768],[328,12,8,2768,2776],[329,25,17,2776,2793],[330,11,10,2793,2803],[331,8,6,2803,2809],[332,7,4,2809,2813],[333,10,8,2813,2821],[334,3,3,2821,2824],[335,20,17,2824,2841],[336,9,7,2841,2848],[337,13,10,2848,2858]]],[12,209,165,2858,3023,[[338,5,5,2858,2863],[339,4,4,2863,2867],[340,1,1,2867,2868],[341,5,4,2868,2872],[342,6,6,2872,2878],[343,27,16,2878,2894],[345,4,4,2894,2898],[346,17,13,2898,2911],[347,3,3,2911,2914],[348,15,13,2914,2927],[349,21,19,2927,2946],[350,5,4,2946,2950],[351,3,2,2950,2952],[352,4,3,2952,2955],[353,10,9,2955,2964],[354,13,8,2964,2972],[355,11,4,2972,2976],[356,12,8,2976,2984],[357,2,2,2984,2986],[358,8,8,2986,2994],[359,3,2,2994,2996],[360,4,4,2996,3000],[361,5,4,3000,3004],[363,6,5,3004,3009],[364,5,5,3009,3014],[365,3,3,3014,3017],[366,7,6,3017,3023]]],[13,297,230,3023,3253,[[367,4,4,3023,3027],[368,5,5,3027,3032],[369,3,2,3032,3034],[370,10,6,3034,3040],[371,7,7,3040,3047],[372,18,12,3047,3059],[373,7,5,3059,3064],[374,7,6,3064,3070],[375,12,9,3070,3079],[376,8,5,3079,3084],[377,7,6,3084,3090],[378,5,5,3090,3095],[379,7,6,3095,3101],[380,5,4,3101,3105],[381,12,7,3105,3112],[382,6,6,3112,3118],[383,4,4,3118,3122],[384,7,7,3122,3129],[385,6,5,3129,3134],[386,18,14,3134,3148],[387,8,7,3148,3155],[388,3,2,3155,3157],[389,6,5,3157,3162],[390,8,6,3162,3168],[391,15,12,3168,3180],[392,8,7,3180,3187],[394,8,6,3187,3193],[395,11,7,3193,3200],[396,13,10,3200,3210],[397,7,6,3210,3216],[398,18,10,3216,3226],[399,8,7,3226,3233],[400,12,8,3233,3241],[401,8,7,3241,3248],[402,6,5,3248,3253]]],[14,97,81,3253,3334,[[403,5,5,3253,3258],[404,10,8,3258,3266],[405,7,6,3266,3272],[406,1,1,3272,3273],[408,2,1,3273,3274],[409,5,4,3274,3278],[410,30,24,3278,3302],[411,8,8,3302,3310],[412,29,24,3310,3334]]],[15,115,94,3334,3428,[[413,5,3,3334,3337],[415,9,8,3337,3345],[416,10,9,3345,3354],[417,10,7,3354,3361],[418,3,3,3361,3364],[419,12,10,3364,3374],[420,7,6,3374,3380],[421,14,12,3380,3392],[422,3,3,3392,3395],[423,15,12,3395,3407],[424,14,10,3407,3417],[425,13,11,3417,3428]]],[16,49,40,3428,3468,[[426,6,5,3428,3433],[427,7,6,3433,3439],[428,6,5,3439,3444],[429,6,6,3444,3450],[430,1,1,3450,3451],[431,5,5,3451,3456],[432,7,4,3456,3460],[433,5,5,3460,3465],[434,6,3,3465,3468]]],[17,264,223,3468,3691,[[436,11,9,3468,3477],[437,9,6,3477,3483],[438,6,5,3483,3488],[439,9,6,3488,3494],[440,12,8,3494,3502],[441,10,9,3502,3511],[442,5,5,3511,3516],[443,3,3,3516,3519],[444,4,4,3519,3523],[445,5,5,3523,3528],[446,7,6,3528,3534],[447,2,2,3534,3536],[448,4,4,3536,3540],[449,6,6,3540,3546],[450,6,6,3546,3552],[451,2,2,3552,3554],[452,3,3,3554,3557],[453,8,6,3557,3563],[454,6,5,3563,3568],[455,10,7,3568,3575],[456,4,4,3575,3579],[457,6,6,3579,3585],[458,6,4,3585,3589],[459,7,6,3589,3595],[461,3,3,3595,3598],[462,6,6,3598,3604],[463,13,10,3604,3614],[464,1,1,3614,3615],[465,9,7,3615,3622],[466,14,11,3622,3633],[467,7,6,3633,3639],[468,11,10,3639,3649],[469,6,4,3649,3653],[470,9,7,3653,3660],[471,6,6,3660,3666],[472,8,7,3666,3673],[473,6,6,3673,3679],[474,5,4,3679,3683],[475,1,1,3683,3684],[476,5,4,3684,3688],[477,3,3,3688,3691]]],[18,511,408,3691,4099,[[479,2,2,3691,3693],[480,2,2,3693,3695],[481,1,1,3695,3696],[482,1,1,3696,3697],[483,2,2,3697,3699],[484,1,1,3699,3700],[485,2,2,3700,3702],[486,3,2,3702,3704],[487,3,3,3704,3707],[489,4,3,3707,3710],[490,1,1,3710,3711],[491,2,2,3711,3713],[493,2,2,3713,3715],[494,7,5,3715,3720],[495,21,14,3720,3734],[496,9,5,3734,3739],[497,3,2,3739,3741],[498,3,2,3741,3743],[499,12,9,3743,3752],[501,2,1,3752,3753],[502,4,4,3753,3757],[504,4,3,3757,3760],[505,3,2,3760,3762],[507,2,1,3762,3763],[508,10,7,3763,3770],[509,1,1,3770,3771],[510,5,4,3771,3775],[511,9,8,3775,3783],[512,6,3,3783,3786],[513,1,1,3786,3787],[514,6,6,3787,3793],[515,10,8,3793,3801],[516,6,5,3801,3806],[517,5,4,3806,3810],[518,1,1,3810,3811],[519,2,1,3811,3812],[520,2,1,3812,3813],[521,5,4,3813,3817],[522,5,4,3817,3821],[526,2,2,3821,3823],[527,5,4,3823,3827],[528,7,5,3827,3832],[529,4,2,3832,3834],[530,2,2,3834,3836],[531,1,1,3836,3837],[532,9,7,3837,3844],[533,2,1,3844,3845],[534,1,1,3845,3846],[535,2,1,3846,3847],[536,6,3,3847,3850],[537,2,2,3850,3852],[538,3,2,3852,3854],[539,4,4,3854,3858],[540,1,1,3858,3859],[541,3,2,3859,3861],[542,2,2,3861,3863],[543,1,1,3863,3864],[545,12,9,3864,3873],[546,9,7,3873,3880],[548,8,6,3880,3886],[549,6,4,3886,3890],[550,5,5,3890,3895],[551,3,3,3895,3898],[552,4,2,3898,3900],[553,4,4,3900,3904],[554,2,2,3904,3906],[555,11,11,3906,3917],[557,5,5,3917,3922],[558,5,3,3922,3925],[559,1,1,3925,3926],[560,1,1,3926,3927],[561,3,2,3927,3929],[562,3,2,3929,3931],[563,1,1,3931,3932],[564,1,1,3932,3933],[565,6,6,3933,3939],[566,5,5,3939,3944],[567,1,1,3944,3945],[568,8,4,3945,3949],[570,3,2,3949,3951],[571,2,2,3951,3953],[573,2,2,3953,3955],[574,3,2,3955,3957],[578,2,2,3957,3959],[579,6,5,3959,3964],[580,4,3,3964,3967],[581,9,7,3967,3974],[582,3,2,3974,3976],[583,6,5,3976,3981],[584,17,12,3981,3993],[585,2,2,3993,3995],[586,7,6,3995,4001],[587,3,3,4001,4004],[589,1,1,4004,4005],[590,4,3,4005,4008],[591,4,2,4008,4010],[592,1,1,4010,4011],[593,3,1,4011,4012],[595,5,5,4012,4017],[596,34,32,4017,4049],[597,2,1,4049,4050],[598,4,4,4050,4054],[601,1,1,4054,4055],[602,1,1,4055,4056],[604,1,1,4056,4057],[605,1,1,4057,4058],[606,2,2,4058,4060],[607,3,3,4060,4063],[608,2,2,4063,4065],[609,2,1,4065,4066],[611,1,1,4066,4067],[612,5,4,4067,4071],[613,2,2,4071,4073],[614,1,1,4073,4074],[615,1,1,4074,4075],[616,8,7,4075,4082],[617,4,2,4082,4084],[618,1,1,4084,4085],[619,4,3,4085,4088],[620,4,4,4088,4092],[621,6,4,4092,4096],[625,3,3,4096,4099]]],[19,158,133,4099,4232,[[628,4,3,4099,4102],[629,7,4,4102,4106],[630,11,8,4106,4114],[631,8,6,4114,4120],[632,6,5,4120,4125],[633,5,3,4125,4128],[634,3,2,4128,4130],[635,11,7,4130,4137],[637,1,1,4137,4138],[638,3,3,4138,4141],[639,5,5,4141,4146],[640,4,4,4146,4150],[641,5,4,4150,4154],[642,4,4,4154,4158],[643,10,8,4158,4166],[644,4,4,4166,4170],[645,4,4,4170,4174],[646,6,6,4174,4180],[647,4,4,4180,4184],[648,6,6,4184,4190],[649,8,6,4190,4196],[650,3,3,4196,4199],[651,1,1,4199,4200],[652,5,5,4200,4205],[653,3,3,4205,4208],[654,7,6,4208,4214],[655,3,3,4214,4217],[656,3,3,4217,4220],[657,9,7,4220,4227],[658,5,5,4227,4232]]],[20,76,61,4232,4293,[[659,2,2,4232,4234],[660,11,7,4234,4241],[661,8,6,4241,4247],[662,10,9,4247,4256],[663,5,5,4256,4261],[664,8,6,4261,4267],[665,15,11,4267,4278],[666,4,4,4278,4282],[667,4,4,4282,4286],[668,4,3,4286,4289],[669,2,1,4289,4290],[670,3,3,4290,4293]]],[21,38,24,4293,4317,[[671,3,2,4293,4295],[672,2,1,4295,4296],[673,6,5,4296,4301],[674,15,7,4301,4308],[675,5,4,4308,4312],[676,4,3,4312,4315],[678,3,2,4315,4317]]],[22,456,310,4317,4627,[[679,8,6,4317,4323],[680,12,7,4323,4330],[681,2,1,4330,4331],[682,4,2,4331,4333],[683,6,5,4333,4338],[684,6,4,4338,4342],[685,8,7,4342,4349],[686,3,3,4349,4352],[687,4,3,4352,4355],[688,9,6,4355,4361],[689,13,4,4361,4365],[690,1,1,4365,4366],[691,7,5,4366,4371],[692,13,9,4371,4380],[694,5,4,4380,4384],[695,5,4,4384,4388],[696,4,3,4388,4391],[697,6,6,4391,4397],[698,5,3,4397,4400],[699,12,5,4400,4405],[700,7,5,4405,4410],[701,7,4,4410,4414],[702,7,5,4414,4419],[703,7,4,4419,4423],[704,2,2,4423,4425],[705,1,1,4425,4426],[706,8,6,4426,4432],[707,9,5,4432,4437],[708,13,9,4437,4446],[709,5,3,4446,4449],[710,1,1,4449,4450],[711,6,3,4450,4453],[712,11,6,4453,4459],[714,6,5,4459,4464],[715,8,6,4464,4470],[716,8,6,4470,4476],[717,5,2,4476,4478],[718,8,6,4478,4484],[719,11,7,4484,4491],[720,6,5,4491,4496],[721,8,5,4496,4501],[722,10,8,4501,4509],[723,7,4,4509,4513],[724,11,7,4513,4520],[725,4,4,4520,4524],[726,16,12,4524,4536],[727,13,8,4536,4544],[728,5,4,4544,4548],[729,11,9,4548,4557],[730,5,3,4557,4560],[731,9,5,4560,4565],[732,10,7,4565,4572],[733,5,3,4572,4575],[734,7,5,4575,4580],[735,7,6,4580,4586],[736,6,4,4586,4590],[737,17,10,4590,4600],[738,3,3,4600,4603],[740,1,1,4603,4604],[741,11,8,4604,4612],[742,5,5,4612,4617],[743,7,4,4617,4621],[744,9,6,4621,4627]]],[23,549,420,4627,5047,[[745,6,6,4627,4633],[746,10,8,4633,4641],[747,12,11,4641,4652],[748,19,14,4652,4666],[749,7,5,4666,4671],[750,11,7,4671,4678],[751,12,10,4678,4688],[752,8,5,4688,4693],[753,12,10,4693,4703],[754,15,11,4703,4714],[755,8,7,4714,4721],[756,7,5,4721,4726],[757,7,6,4726,4732],[758,1,1,4732,4733],[759,9,8,4733,4741],[760,13,9,4741,4750],[761,13,8,4750,4758],[762,10,8,4758,4766],[763,4,3,4766,4769],[764,9,7,4769,4776],[765,8,5,4776,4781],[766,9,9,4781,4790],[767,16,12,4790,4802],[768,6,6,4802,4808],[769,19,14,4808,4822],[770,8,7,4822,4829],[771,4,4,4829,4833],[772,8,8,4833,4841],[773,10,7,4841,4848],[774,10,7,4848,4855],[775,17,12,4855,4867],[776,14,12,4867,4879],[777,13,8,4879,4887],[778,11,8,4887,4895],[779,5,4,4895,4899],[780,17,14,4899,4913],[781,10,6,4913,4919],[782,12,11,4919,4930],[783,4,4,4930,4934],[784,7,5,4934,4939],[785,13,8,4939,4947],[786,12,8,4947,4955],[787,3,3,4955,4958],[788,14,10,4958,4968],[789,1,1,4968,4969],[790,10,8,4969,4977],[791,4,2,4977,4979],[792,22,14,4979,4993],[793,11,10,4993,5003],[794,17,11,5003,5014],[795,27,21,5014,5035],[796,14,12,5035,5047]]],[24,40,35,5047,5082,[[797,9,8,5047,5055],[798,6,6,5055,5061],[799,10,10,5061,5071],[800,10,7,5071,5078],[801,5,4,5078,5082]]],[25,505,367,5082,5449,[[802,16,12,5082,5094],[803,4,1,5094,5095],[804,12,7,5095,5102],[805,4,4,5102,5106],[806,6,4,5106,5110],[807,2,2,5110,5112],[808,10,6,5112,5118],[809,7,6,5118,5124],[810,3,3,5124,5127],[811,11,8,5127,5135],[812,11,9,5135,5144],[813,7,3,5144,5147],[814,6,6,5147,5153],[815,17,13,5153,5166],[816,3,2,5166,5168],[817,23,21,5168,5189],[818,6,5,5189,5194],[819,12,11,5194,5205],[820,6,6,5205,5211],[821,12,9,5211,5220],[822,7,4,5220,5224],[823,4,4,5224,5228],[824,16,11,5228,5239],[825,5,5,5239,5244],[826,7,3,5244,5247],[827,9,8,5247,5255],[828,13,10,5255,5265],[829,10,8,5265,5273],[830,7,6,5273,5279],[831,5,4,5279,5283],[832,4,3,5283,5286],[833,9,8,5286,5294],[834,19,13,5294,5307],[835,11,8,5307,5315],[836,2,2,5315,5317],[837,13,11,5317,5328],[838,6,5,5328,5333],[839,8,4,5333,5337],[840,15,12,5337,5349],[841,36,20,5349,5369],[842,12,7,5369,5376],[843,8,4,5376,5380],[844,15,12,5380,5392],[845,11,7,5392,5399],[846,19,11,5399,5410],[847,9,5,5410,5415],[848,20,10,5415,5425],[849,27,24,5425,5449]]],[26,53,43,5449,5492,[[850,15,10,5449,5459],[857,11,8,5459,5467],[858,7,6,5467,5473],[859,2,2,5473,5475],[860,13,12,5475,5487],[861,5,5,5487,5492]]],[27,59,47,5492,5539,[[862,2,2,5492,5494],[863,8,6,5494,5500],[865,4,3,5500,5503],[866,3,3,5503,5506],[867,3,3,5506,5509],[868,6,4,5509,5513],[869,3,3,5513,5516],[870,8,5,5516,5521],[871,4,4,5521,5525],[872,6,5,5525,5530],[873,2,2,5530,5532],[874,8,5,5532,5537],[875,2,2,5537,5539]]],[28,19,17,5539,5556,[[876,6,6,5539,5545],[877,5,4,5545,5549],[878,8,7,5549,5556]]],[29,51,36,5556,5592,[[879,7,4,5556,5560],[880,8,5,5560,5565],[881,6,6,5565,5571],[882,3,3,5571,5574],[883,4,4,5574,5578],[884,7,4,5578,5582],[885,3,3,5582,5585],[886,2,1,5585,5586],[887,11,6,5586,5592]]],[30,9,6,5592,5598,[[888,9,6,5592,5598]]],[31,30,22,5598,5620,[[889,9,7,5598,5605],[890,5,4,5605,5609],[891,8,6,5609,5615],[892,8,5,5615,5620]]],[32,51,38,5620,5658,[[893,7,7,5620,5627],[894,6,4,5627,5631],[895,6,4,5631,5635],[896,7,4,5635,5639],[897,9,7,5639,5646],[898,4,3,5646,5649],[899,12,9,5649,5658]]],[33,17,13,5658,5671,[[900,7,5,5658,5663],[901,3,3,5663,5666],[902,7,5,5666,5671]]],[34,20,15,5671,5686,[[903,7,4,5671,5675],[904,8,7,5675,5682],[905,5,4,5682,5686]]],[35,18,12,5686,5698,[[906,8,6,5686,5692],[907,2,2,5692,5694],[908,8,4,5694,5698]]],[36,11,8,5698,5706,[[909,2,2,5698,5700],[910,9,6,5700,5706]]],[37,67,44,5706,5750,[[911,2,2,5706,5708],[912,4,3,5708,5711],[913,3,2,5711,5713],[914,3,3,5713,5716],[915,2,1,5716,5717],[916,8,4,5717,5721],[917,5,3,5721,5724],[918,6,5,5724,5729],[919,10,5,5729,5734],[920,7,3,5734,5737],[921,2,2,5737,5739],[923,4,3,5739,5742],[924,11,8,5742,5750]]],[38,16,13,5750,5763,[[925,6,5,5750,5755],[926,7,6,5755,5761],[927,3,2,5761,5763]]]],[6,8,32,33,36,37,38,39,40,46,47,49,51,52,53,56,57,58,60,61,63,66,67,69,72,74,77,78,79,82,83,89,90,92,93,95,134,139,141,144,150,151,153,154,156,157,158,161,162,163,166,167,174,175,176,179,181,182,185,186,189,190,191,193,194,196,199,200,202,203,204,210,215,216,223,224,226,229,239,245,248,253,264,266,268,272,274,275,297,299,302,306,319,321,327,329,332,351,353,356,359,364,367,378,383,384,387,389,391,403,409,411,413,419,424,426,427,438,440,441,446,449,461,466,468,469,471,473,481,483,486,487,489,491,493,496,501,508,528,529,530,534,543,551,556,558,559,562,574,575,577,579,584,591,594,596,598,599,601,602,608,618,628,631,632,634,637,641,653,655,664,668,676,678,681,687,688,693,708,709,714,715,718,719,723,728,736,746,752,755,757,758,760,766,767,772,773,774,775,779,783,784,789,797,798,799,803,805,814,825,830,832,833,839,844,846,862,874,886,889,897,902,904,906,908,910,912,913,922,938,939,940,941,970,975,978,979,987,999,1006,1012,1018,1019,1020,1022,1024,1027,1032,1042,1046,1047,1073,1074,1076,1077,1086,1087,1097,1100,1101,1104,1105,1108,1111,1120,1133,1136,1138,1139,1143,1145,1150,1154,1158,1160,1186,1187,1189,1191,1196,1197,1198,1209,1213,1226,1227,1235,1237,1241,1254,1255,1259,1267,1268,1276,1278,1292,1299,1301,1324,1331,1332,1333,1341,1352,1353,1356,1359,1361,1377,1381,1383,1389,1391,1412,1420,1421,1422,1430,1433,1435,1438,1441,1442,1450,1458,1461,1463,1464,1466,1467,1468,1470,1473,1482,1483,1485,1493,1497,1498,1503,1505,1519,1530,1531,1541,1542,1544,1555,1558,1560,1561,1564,1565,1569,1573,1577,1581,1583,1584,1585,1586,1587,1589,1590,1591,1596,1601,1604,1608,1610,1611,1627,1636,1637,1640,1643,1651,1652,1655,1656,1661,1662,1664,1666,1668,1680,1681,1682,1687,1689,1690,1703,1706,1709,1718,1719,1721,1722,1723,1734,1739,1740,1741,1746,1748,1749,1753,1757,1760,1762,1766,1767,1770,1772,1775,1780,1782,1783,1788,1794,1795,1800,1803,1805,1807,1808,1811,1813,1814,1816,1820,1821,1823,1825,1826,1828,1831,1833,1835,1838,1845,1847,1849,1851,1853,1855,1857,1858,1862,1867,1870,1875,1876,1877,1881,1882,1883,1885,1886,1887,1894,1900,1901,1908,1911,1914,1918,1919,1942,1943,1948,1951,1953,1963,1966,1967,1974,1976,1979,1984,1986,1988,1989,1995,1997,1999,2000,2003,2008,2009,2010,2012,2013,2017,2020,2021,2024,2027,2028,2029,2031,2040,2043,2044,2047,2053,2055,2069,2072,2073,2091,2106,2113,2117,2120,2125,2127,2149,2151,2159,2160,2165,2169,2172,2173,2174,2175,2178,2186,2193,2197,2198,2206,2210,2213,2214,2216,2217,2226,2227,2228,2230,2231,2239,2248,2249,2259,2263,2268,2270,2274,2277,2293,2294,2301,2303,2320,2321,2335,2348,2350,2356,2357,2358,2359,2361,2362,2363,2364,2366,2370,2382,2384,2386,2392,2396,2397,2398,2401,2415,2418,2420,2434,2439,2442,2444,2445,2446,2449,2450,2453,2457,2461,2465,2466,2468,2470,2471,2474,2478,2479,2480,2484,2488,2489,2507,2511,2512,2514,2520,2525,2526,2529,2536,2551,2569,2570,2571,2572,2577,2585,2595,2599,2606,2611,2612,2621,2622,2623,2625,2626,2629,2631,2635,2637,2648,2659,2665,2669,2684,2685,2695,2726,2727,2729,2738,2743,2746,2747,2748,2755,2759,2764,2765,2770,2771,2772,2775,2778,2779,2781,2784,2787,2792,2797,2800,2801,2802,2803,2805,2807,2808,2811,2812,2813,2814,2816,2817,2820,2821,2822,2825,2826,2829,2830,2832,2833,2834,2835,2836,2838,2839,2840,2842,2843,2845,2846,2847,2848,2852,2854,2855,2856,2860,2864,2865,2866,2867,2871,2876,2879,2882,2893,2894,2895,2896,2897,2899,2900,2904,2906,2908,2911,2912,2913,2914,2915,2928,2929,2934,2940,2941,2943,2945,2946,2947,2950,2963,2964,2970,2972,2975,2977,2979,2981,2982,2984,2989,2990,2991,2999,3001,3005,3006,3007,3008,3010,3018,3019,3022,3029,3030,3031,3032,3034,3035,3036,3037,3042,3051,3054,3055,3056,3064,3072,3073,3077,3078,3082,3083,3084,3086,3093,3098,3108,3110,3114,3118,3119,3125,3126,3127,3128,3130,3136,3137,3138,3139,3140,3141,3148,3149,3151,3152,3156,3164,3170,3171,3181,3183,3184,3196,3198,3199,3200,3203,3206,3213,3215,3216,3217,3219,3220,3221,3228,3231,3235,3238,3239,3243,3244,3245,3247,3248,3272,3275,3277,3280,3281,3287,3289,3295,3303,3313,3315,3317,3320,3321,3322,3323,3324,3336,3341,3342,3344,3352,3355,3357,3359,3362,3366,3367,3371,3372,3373,3375,3376,3382,3387,3391,3394,3396,3399,3402,3413,3417,3418,3419,3431,3432,3434,3440,3445,3449,3454,3455,3460,3469,3481,3483,3484,3486,3491,3494,3502,3505,3507,3510,3511,3512,3513,3514,3517,3518,3519,3520,3524,3530,3532,3534,3537,3561,3567,3569,3573,3575,3576,3577,3578,3579,3581,3586,3587,3588,3592,3594,3598,3599,3600,3601,3605,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3660,3701,3704,3705,3707,3714,3720,3726,3731,3732,3735,3738,3741,3742,3745,3746,3749,3761,3766,3768,3773,3778,3782,3786,3790,3794,3795,3796,3798,3800,3805,3809,3811,3812,3817,3818,3823,3826,3827,3834,3842,3844,3855,3934,3939,3945,3950,3953,3955,3958,3963,3964,3966,3977,3978,3982,3986,3997,3999,4000,4021,4022,4023,4037,4038,4040,4041,4044,4048,4049,4052,4055,4059,4062,4069,4071,4073,4074,4075,4078,4095,4096,4098,4099,4100,4106,4108,4114,4117,4120,4121,4124,4127,4137,4146,4151,4152,4156,4172,4174,4176,4177,4183,4188,4189,4194,4196,4203,4207,4209,4215,4218,4220,4221,4222,4227,4229,4231,4234,4235,4239,4240,4243,4246,4249,4252,4253,4254,4263,4264,4266,4273,4283,4284,4285,4286,4287,4289,4292,4293,4298,4302,4306,4309,4316,4317,4319,4320,4321,4325,4327,4332,4333,4339,4341,4344,4345,4346,4347,4351,4352,4353,4356,4358,4359,4360,4364,4366,4368,4376,4378,4380,4381,4386,4390,4391,4398,4399,4405,4408,4416,4423,4425,4429,4438,4443,4453,4454,4457,4459,4463,4465,4469,4470,4475,4477,4478,4479,4482,4491,4493,4551,4553,4554,4558,4565,4574,4600,4608,4614,4619,4624,4627,4630,4633,4636,4639,4642,4646,4647,4650,4662,4666,4667,4669,4677,4678,4683,4692,4693,4694,4699,4701,4706,4711,4713,4715,4716,4718,4725,4726,4729,4733,4735,4737,4739,4740,4742,4750,4761,4763,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4801,4802,4803,4804,4805,4806,4807,4808,4809,4812,4815,4819,4820,4821,4823,4824,4826,4827,4831,4834,4847,4849,4850,4853,4857,4859,4870,4872,4880,4882,4883,4886,4887,4888,4891,4894,4909,4911,4915,4917,4919,4920,4921,4942,4943,4944,4946,4947,4950,4952,4953,4954,4957,4959,4960,4961,4963,4964,4974,4979,4980,4983,4986,4987,4991,4992,5006,5007,5013,5016,5019,5022,5024,5030,5033,5036,5037,5038,5039,5040,5041,5042,5043,5046,5049,5050,5052,5057,5058,5059,5061,5068,5075,5076,5077,5079,5098,5100,5101,5105,5107,5109,5112,5115,5117,5118,5119,5125,5126,5128,5129,5130,5131,5132,5133,5135,5141,5146,5151,5152,5157,5158,5161,5162,5164,5167,5168,5169,5171,5172,5173,5174,5176,5178,5180,5181,5183,5185,5190,5191,5192,5193,5198,5201,5218,5220,5225,5231,5232,5236,5243,5245,5250,5261,5269,5270,5272,5277,5279,5282,5285,5289,5292,5297,5298,5299,5314,5318,5320,5326,5330,5331,5332,5333,5335,5337,5343,5345,5346,5348,5351,5355,5371,5372,5374,5375,5376,5379,5382,5384,5387,5389,5390,5392,5396,5399,5400,5402,5403,5406,5410,5411,5412,5418,5419,5425,5428,5430,5442,5443,5446,5456,5460,5468,5471,5474,5478,5491,5492,5494,5504,5509,5510,5512,5514,5515,5517,5521,5526,5527,5528,5532,5534,5539,5543,5552,5553,5556,5558,5564,5566,5568,5570,5574,5579,5580,5581,5621,5625,5631,5632,5635,5642,5645,5646,5658,5660,5666,5667,5668,5671,5674,5675,5677,5678,5680,5684,5690,5697,5699,5700,5701,5704,5707,5711,5712,5713,5719,5721,5731,5734,5738,5745,5749,5754,5757,5771,5775,5777,5778,5783,5784,5790,5797,5800,5805,5810,5812,5813,5817,5821,5823,5824,5825,5826,5832,5834,5837,5840,5855,5858,5859,5870,5871,5873,5878,5879,5880,5882,5886,5888,5889,5892,5893,5894,5895,5896,5897,5903,5905,5906,5907,5909,5912,5913,5914,5917,5918,5926,5927,5928,5929,5930,5933,5935,5938,5939,5940,5943,5945,5946,5949,5950,5959,5967,5970,5971,5972,5977,5978,5980,5981,5985,5987,5988,5989,5995,5999,6002,6004,6006,6008,6009,6011,6013,6014,6015,6016,6018,6021,6024,6027,6031,6035,6037,6043,6045,6046,6049,6050,6051,6053,6059,6060,6061,6063,6066,6070,6071,6072,6073,6075,6084,6086,6087,6091,6093,6095,6098,6100,6105,6109,6110,6113,6122,6124,6127,6128,6130,6131,6132,6133,6134,6137,6139,6157,6158,6159,6160,6163,6166,6170,6180,6181,6184,6186,6190,6194,6197,6202,6203,6204,6205,6207,6208,6209,6210,6211,6212,6216,6217,6220,6223,6248,6266,6267,6271,6272,6273,6280,6282,6284,6285,6298,6300,6305,6306,6307,6308,6310,6330,6333,6334,6335,6350,6354,6355,6368,6372,6375,6376,6378,6380,6384,6385,6386,6387,6388,6390,6391,6397,6398,6401,6404,6406,6408,6409,6411,6413,6415,6417,6419,6421,6425,6426,6435,6442,6443,6444,6445,6449,6450,6455,6457,6458,6461,6463,6464,6465,6466,6469,6470,6473,6474,6475,6476,6478,6479,6482,6484,6486,6488,6492,6493,6494,6506,6508,6520,6523,6525,6529,6533,6545,6546,6548,6554,6557,6559,6561,6562,6563,6564,6566,6571,6584,6587,6588,6589,6590,6595,6605,6610,6612,6613,6614,6627,6628,6634,6637,6643,6645,6647,6656,6660,6662,6663,6665,6667,6668,6672,6675,6681,6692,6695,6697,6699,6702,6711,6717,6719,6721,6722,6727,6729,6730,6732,6733,6741,6743,6745,6753,6758,6769,6771,6774,6775,6789,6790,6791,6794,6795,6796,6797,6822,6823,6827,6832,6833,6834,6836,6842,6845,6847,6851,6852,6853,6854,6858,6860,6862,6863,6865,6866,6868,6869,6871,6875,6877,6878,6886,6889,6890,6891,6897,6898,6904,6907,6910,6911,6912,6913,6917,6918,6923,6927,6928,6930,6931,6932,6934,6940,6942,6943,6946,6948,6961,6963,6966,6968,6969,6974,6977,6979,6981,6983,6985,6987,6988,6989,6991,6995,7000,7004,7006,7009,7015,7019,7021,7025,7026,7036,7040,7041,7042,7054,7055,7067,7068,7069,7070,7071,7075,7079,7085,7086,7087,7088,7092,7094,7096,7097,7098,7099,7100,7102,7103,7105,7106,7107,7108,7109,7110,7111,7112,7114,7116,7118,7119,7120,7121,7123,7125,7126,7128,7129,7132,7133,7134,7139,7140,7143,7149,7150,7152,7153,7155,7156,7157,7158,7161,7163,7165,7167,7169,7182,7184,7192,7193,7195,7199,7200,7202,7205,7213,7215,7219,7220,7226,7228,7229,7232,7239,7243,7248,7255,7259,7260,7263,7268,7269,7271,7273,7291,7293,7294,7295,7296,7300,7301,7305,7307,7309,7313,7315,7318,7319,7320,7322,7323,7328,7334,7336,7338,7339,7349,7351,7354,7355,7359,7360,7363,7366,7376,7377,7379,7387,7392,7393,7394,7396,7398,7407,7412,7416,7420,7421,7422,7423,7427,7429,7430,7431,7436,7437,7441,7450,7456,7462,7463,7464,7466,7468,7470,7471,7480,7483,7487,7493,7496,7500,7502,7509,7512,7513,7519,7525,7532,7536,7538,7539,7547,7553,7554,7556,7562,7563,7566,7567,7571,7575,7581,7582,7583,7586,7588,7593,7596,7608,7609,7618,7621,7622,7630,7633,7641,7642,7644,7648,7651,7652,7653,7654,7655,7657,7658,7664,7667,7668,7669,7671,7675,7682,7685,7686,7687,7688,7689,7691,7705,7706,7714,7716,7731,7732,7736,7737,7739,7745,7746,7751,7752,7755,7757,7758,7763,7764,7767,7771,7776,7778,7779,7782,7784,7788,7790,7795,7806,7823,7829,7833,7836,7838,7839,7840,7841,7845,7846,7847,7851,7852,7854,7856,7860,7871,7872,7875,7878,7882,7883,7884,7887,7889,7894,7895,7896,7898,7900,7904,7905,7916,7918,7924,7925,7927,7929,7931,7938,7945,7951,7955,7957,7958,7959,7962,7965,7970,7973,7975,7980,7988,7991,7994,7995,7997,8000,8003,8004,8010,8012,8017,8021,8023,8024,8025,8026,8035,8037,8044,8045,8048,8061,8062,8064,8068,8070,8071,8072,8075,8076,8079,8080,8091,8092,8094,8096,8099,8103,8107,8109,8110,8118,8120,8122,8124,8128,8129,8131,8141,8145,8155,8157,8159,8160,8161,8169,8175,8176,8178,8179,8181,8186,8188,8189,8191,8192,8195,8199,8203,8209,8210,8213,8217,8220,8221,8222,8232,8238,8249,8251,8253,8254,8256,8258,8261,8263,8267,8269,8271,8274,8276,8279,8280,8283,8289,8290,8293,8296,8297,8303,8306,8316,8322,8323,8326,8327,8330,8332,8333,8334,8339,8347,8349,8351,8358,8367,8369,8370,8372,8374,8375,8381,8382,8388,8390,8391,8396,8400,8401,8407,8413,8417,8423,8424,8427,8431,8432,8437,8460,8463,8470,8476,8481,8491,8494,8509,8518,8520,8527,8528,8530,8535,8542,8553,8554,8556,8559,8560,8561,8565,8566,8567,8570,8575,8576,8582,8585,8586,8590,8592,8593,8603,8605,8606,8609,8611,8615,8616,8618,8619,8620,8624,8625,8626,8634,8646,8648,8651,8657,8664,8668,8669,8670,8672,8673,8674,8676,8682,8683,8689,8694,8700,8704,8707,8713,8716,8717,8723,8744,8746,8754,8756,8762,8764,8767,8769,8770,8774,8777,8778,8785,8786,8790,8792,8797,8801,8802,8803,8806,8809,8810,8811,8824,8836,8844,8856,8865,8867,8868,8869,8874,8875,8877,8878,8881,8882,8884,8887,8891,8894,8897,8904,8911,8912,8915,8917,8920,8925,8929,8937,8941,8942,8943,8945,8947,8948,8954,8957,8958,8959,8963,8964,8965,8966,8968,8969,8973,8981,8983,8986,8990,8992,8993,8994,8995,8996,9001,9004,9006,9008,9010,9020,9026,9036,9038,9039,9041,9049,9050,9056,9057,9058,9060,9061,9063,9071,9073,9075,9079,9082,9090,9092,9094,9098,9099,9102,9107,9108,9110,9117,9119,9120,9122,9125,9126,9131,9134,9137,9139,9140,9142,9143,9153,9155,9161,9166,9175,9176,9179,9182,9184,9185,9188,9189,9196,9198,9205,9210,9217,9218,9222,9223,9225,9226,9227,9233,9239,9240,9242,9246,9254,9261,9262,9268,9270,9285,9300,9307,9308,9313,9316,9318,9320,9321,9323,9324,9330,9336,9340,9346,9353,9354,9367,9381,9385,9389,9391,9394,9403,9404,9406,9408,9415,9425,9427,9431,9432,9433,9441,9442,9443,9444,9449,9450,9453,9454,9464,9477,9480,9483,9487,9488,9493,9499,9504,9513,9514,9523,9526,9535,9536,9537,9539,9543,9545,9547,9548,9549,9552,9554,9556,9558,9560,9561,9564,9565,9566,9572,9574,9575,9576,9579,9582,9587,9596,9597,9598,9600,9602,9603,9604,9606,9608,9611,9625,9628,9630,9631,9642,9643,9645,9649,9650,9651,9653,9654,9659,9662,9666,9667,9668,9669,9671,9672,9673,9674,9675,9676,9683,9685,9686,9690,9701,9704,9706,9707,9709,9715,9719,9720,9726,9730,9733,9735,9736,9741,9742,9747,9749,9756,9757,9758,9761,9763,9770,9771,9780,9789,9796,9803,9807,9808,9816,9817,9821,9822,9824,9826,9831,9834,9840,9844,9848,9851,9855,9857,9858,9863,9868,9873,9876,9877,9882,9894,9896,9898,9920,9921,9923,9927,9934,9939,9941,9943,9949,9950,9953,9966,9969,9970,9974,9975,9977,9980,9981,9990,9991,9992,9994,9996,10001,10003,10004,10005,10006,10007,10010,10011,10015,10016,10019,10022,10030,10032,10034,10038,10041,10049,10053,10057,10058,10059,10067,10069,10075,10080,10086,10092,10104,10107,10112,10116,10121,10126,10127,10128,10130,10134,10135,10138,10146,10149,10164,10167,10169,10171,10173,10176,10177,10178,10181,10182,10183,10187,10191,10192,10195,10196,10198,10201,10205,10209,10210,10215,10217,10220,10222,10227,10234,10241,10243,10246,10247,10248,10249,10250,10252,10264,10296,10297,10299,10300,10309,10329,10359,10361,10370,10394,10395,10425,10427,10430,10437,10446,10450,10451,10453,10485,10487,10514,10515,10516,10517,10519,10520,10524,10525,10526,10528,10530,10531,10532,10534,10583,10584,10586,10615,10618,10619,10620,10621,10622,10625,10629,10640,10643,10644,10645,10646,10647,10660,10662,10667,10681,10686,10688,10690,10691,10692,10694,10695,10696,10698,10699,10704,10705,10721,10722,10727,10728,10734,10736,10739,10740,10745,10746,10749,10750,10751,10752,10753,10754,10755,10756,10757,10762,10765,10766,10767,10788,10790,10804,10808,10816,10822,10823,10824,10840,10843,10850,10853,10855,10856,10868,10870,10871,10873,10874,10876,10880,10884,10891,10894,10898,10901,10913,10914,10917,10919,10921,10922,10923,10925,10928,10930,10936,10944,10946,10948,10955,10956,10960,10964,10973,10982,10986,10987,11007,11010,11018,11019,11020,11021,11078,11085,11087,11104,11107,11112,11119,11123,11127,11132,11147,11148,11162,11167,11168,11174,11176,11178,11180,11198,11207,11210,11211,11216,11219,11225,11227,11229,11233,11246,11248,11250,11252,11253,11254,11256,11270,11274,11276,11277,11278,11279,11282,11287,11291,11298,11303,11305,11307,11308,11312,11314,11315,11317,11321,11325,11332,11338,11344,11346,11347,11353,11354,11355,11357,11364,11366,11374,11376,11378,11382,11383,11386,11390,11392,11397,11399,11404,11405,11410,11418,11427,11428,11430,11435,11437,11440,11442,11448,11449,11450,11455,11457,11466,11469,11470,11472,11480,11482,11483,11488,11498,11499,11501,11503,11505,11506,11507,11511,11512,11514,11516,11518,11519,11529,11534,11540,11542,11548,11549,11554,11565,11573,11574,11575,11578,11579,11580,11584,11586,11588,11589,11591,11594,11596,11597,11598,11601,11602,11606,11614,11617,11619,11624,11628,11632,11634,11636,11637,11639,11643,11651,11655,11658,11660,11666,11670,11676,11678,11682,11683,11697,11700,11702,11705,11709,11710,11713,11714,11716,11717,11718,11719,11724,11727,11731,11735,11743,11747,11750,11751,11752,11753,11767,11769,11772,11775,11776,11779,11796,11797,11801,11803,11804,11805,11825,11832,11833,11835,11836,11837,11838,11843,11845,11852,11853,11855,11857,11864,11867,11870,11871,11878,11882,11886,11888,11889,11890,11892,11896,11897,11898,11910,11915,11916,11917,11920,11923,11931,11936,11937,11942,11945,11946,11960,11963,11966,11973,11977,11981,11984,11987,11988,11990,12000,12005,12006,12013,12016,12017,12019,12020,12023,12027,12028,12086,12088,12089,12090,12092,12095,12097,12100,12103,12104,12105,12109,12110,12112,12172,12179,12180,12182,12201,12202,12203,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12216,12219,12220,12221,12222,12223,12224,12225,12232,12236,12238,12239,12240,12242,12244,12245,12248,12250,12253,12254,12255,12258,12260,12261,12263,12266,12270,12272,12273,12274,12275,12276,12277,12278,12279,12280,12281,12282,12285,12286,12295,12296,12298,12299,12305,12342,12346,12347,12348,12351,12352,12354,12355,12361,12364,12368,12371,12372,12373,12375,12378,12380,12387,12391,12394,12395,12396,12397,12399,12409,12410,12417,12422,12426,12481,12483,12484,12485,12487,12490,12491,12493,12495,12496,12497,12498,12510,12511,12513,12516,12518,12524,12526,12529,12530,12531,12538,12539,12543,12546,12558,12577,12580,12589,12592,12598,12603,12604,12605,12610,12612,12613,12618,12619,12624,12651,12652,12653,12655,12659,12661,12662,12663,12667,12670,12674,12675,12677,12679,12684,12690,12691,12692,12696,12699,12701,12703,12707,12709,12721,12722,12730,12733,12736,12737,12741,12745,12748,12754,12755,12757,12760,12766,12767,12770,12773,12775,12776,12788,12795,12799,12802,12803,12806,12813,12814,12815,12816,12819,12826,12830,12832,12834,12850,12856,12862,12870,12872,12876,12877,12879,12881,12885,12888,12890,12893,12894,12898,12901,12902,12903,12908,12914,12915,12923,12925,12939,12941,12942,12943,12947,12950,12952,12955,12956,12957,12966,12971,12972,12973,12981,12984,12991,12992,12994,12995,13000,13001,13003,13014,13022,13023,13024,13027,13039,13047,13048,13054,13057,13076,13085,13093,13100,13104,13105,13106,13114,13116,13117,13123,13125,13128,13131,13150,13155,13166,13173,13174,13185,13187,13190,13192,13193,13199,13213,13214,13216,13221,13225,13233,13244,13254,13264,13267,13272,13280,13290,13291,13292,13293,13294,13306,13310,13319,13323,13326,13329,13330,13331,13341,13350,13351,13355,13364,13369,13371,13375,13393,13396,13406,13407,13411,13412,13426,13431,13434,13436,13437,13440,13443,13444,13445,13448,13471,13472,13478,13486,13487,13494,13502,13503,13504,13506,13508,13509,13513,13515,13516,13522,13524,13525,13532,13549,13558,13562,13565,13567,13568,13574,13587,13590,13595,13604,13605,13606,13607,13608,13610,13611,13616,13619,13629,13630,13632,13634,13640,13643,13656,13662,13667,13668,13671,13673,13674,13675,13678,13680,13693,13710,13713,13716,13722,13723,13725,13727,13729,13731,13732,13739,13743,13746,13752,13757,13761,13770,13771,13778,13779,13786,13788,13791,13794,13801,13805,13806,13808,13822,13856,13859,13860,13863,13870,13907,13908,13909,13913,13924,13925,13934,13948,13953,13961,13963,13972,13983,13992,13993,13996,14014,14017,14024,14034,14046,14057,14059,14067,14071,14073,14075,14082,14087,14096,14100,14105,14110,14112,14116,14117,14121,14124,14126,14130,14133,14134,14135,14139,14140,14141,14149,14161,14163,14166,14173,14174,14178,14180,14181,14184,14188,14195,14201,14205,14213,14214,14215,14224,14225,14227,14228,14229,14246,14257,14266,14268,14273,14286,14289,14294,14300,14306,14322,14335,14342,14343,14344,14346,14351,14353,14362,14374,14379,14380,14385,14392,14394,14401,14402,14404,14405,14407,14408,14420,14427,14432,14446,14458,14466,14473,14477,14489,14490,14493,14494,14495,14498,14499,14501,14508,14511,14513,14514,14520,14522,14525,14527,14530,14536,14537,14555,14561,14567,14578,14581,14587,14589,14599,14604,14605,14610,14662,14663,14669,14670,14672,14677,14693,14698,14700,14702,14705,14713,14715,14721,14725,14732,14733,14735,14740,14743,14744,14750,14753,14768,14771,14782,14791,14792,14802,14811,14818,14821,14822,14828,14831,14832,14836,14842,14851,14852,14863,14868,14893,14901,14902,14908,14922,14923,14926,14929,14931,14935,14939,14940,14949,14952,14958,14963,14966,14980,14981,14982,14988,14993,14996,15008,15014,15015,15016,15027,15028,15039,15040,15047,15059,15060,15070,15077,15079,15085,15087,15088,15089,15098,15104,15115,15117,15129,15136,15143,15155,15163,15168,15178,15183,15184,15206,15211,15212,15214,15216,15223,15227,15233,15237,15245,15266,15269,15274,15282,15297,15303,15313,15316,15317,15322,15323,15326,15345,15349,15359,15370,15374,15380,15398,15400,15401,15402,15428,15430,15443,15444,15467,15474,15483,15488,15517,15521,15523,15525,15526,15531,15540,15553,15561,15566,15578,15583,15584,15585,15586,15592,15606,15619,15630,15661,15662,15674,15698,15699,15701,15702,15705,15712,15713,15716,15718,15719,15727,15733,15738,15740,15746,15754,15765,15770,15772,15775,15779,15786,15788,15789,15793,15810,15815,15816,15820,15823,15829,15848,15856,15874,15877,15878,15892,15895,15908,15916,15917,15919,15920,15926,15927,15935,15941,15949,15950,15951,15970,15996,15997,15998,15999,16000,16001,16002,16008,16013,16014,16016,16018,16025,16032,16048,16050,16053,16055,16059,16076,16082,16083,16088,16089,16109,16112,16126,16131,16133,16134,16141,16146,16148,16149,16151,16162,16175,16180,16182,16183,16196,16207,16220,16225,16237,16241,16245,16246,16251,16254,16257,16258,16264,16267,16285,16290,16292,16293,16298,16300,16302,16304,16312,16315,16316,16318,16372,16375,16378,16415,16431,16433,16439,16445,16449,16455,16462,16464,16469,16470,16476,16480,16481,16482,16495,16505,16511,16513,16514,16517,16520,16524,16525,16532,16535,16545,16549,16564,16580,16594,16612,16613,16621,16624,16625,16630,16637,16658,16692,16696,16712,16721,16728,16732,16733,16745,16749,16758,16761,16766,16779,16786,16788,16799,16823,16824,16831,16836,16841,16846,16848,16856,16857,16859,16872,16873,16874,16883,16886,16896,16920,16921,16923,16925,16926,16929,16932,16939,16947,16952,16957,16958,16963,16978,16987,16993,16997,17000,17003,17007,17016,17020,17021,17024,17030,17042,17048,17057,17058,17097,17117,17120,17130,17137,17138,17148,17153,17157,17172,17174,17177,17178,17179,17191,17202,17205,17219,17244,17245,17250,17253,17258,17259,17263,17265,17269,17281,17294,17298,17300,17305,17315,17323,17325,17339,17340,17342,17343,17346,17357,17358,17364,17370,17373,17378,17379,17381,17382,17383,17384,17385,17387,17389,17390,17394,17395,17398,17402,17405,17412,17416,17419,17420,17422,17425,17426,17427,17430,17431,17432,17434,17437,17439,17447,17448,17452,17455,17457,17461,17468,17470,17471,17479,17491,17492,17493,17494,17498,17507,17523,17528,17534,17535,17539,17541,17563,17575,17577,17578,17579,17580,17583,17584,17585,17590,17591,17592,17597,17602,17605,17607,17608,17619,17620,17621,17642,17645,17660,17666,17669,17670,17678,17683,17687,17688,17691,17695,17704,17706,17707,17708,17737,17739,17745,17748,17752,17762,17765,17771,17773,17775,17780,17784,17786,17790,17793,17795,17799,17804,17818,17824,17825,17836,17841,17843,17852,17853,17860,17868,17874,17877,17885,17895,17896,17900,17903,17911,17912,17915,17918,17919,17931,17936,17937,17940,17941,17947,17953,17957,17959,17970,17973,17979,17982,17984,17986,17992,17996,17998,17999,18004,18005,18009,18020,18021,18024,18027,18031,18034,18035,18036,18038,18045,18046,18050,18055,18056,18063,18071,18076,18078,18084,18092,18094,18105,18109,18111,18113,18117,18119,18120,18122,18126,18147,18151,18163,18171,18173,18183,18184,18186,18193,18197,18199,18206,18208,18211,18218,18223,18228,18231,18234,18238,18244,18248,18250,18254,18258,18259,18274,18282,18294,18298,18306,18307,18309,18310,18313,18319,18332,18340,18348,18349,18350,18358,18360,18366,18372,18378,18384,18396,18397,18399,18402,18403,18407,18415,18419,18422,18435,18437,18441,18446,18447,18453,18455,18460,18475,18476,18477,18479,18487,18490,18491,18494,18505,18509,18510,18511,18516,18518,18535,18539,18540,18541,18544,18548,18551,18557,18567,18569,18582,18584,18589,18592,18593,18595,18596,18597,18598,18611,18612,18613,18614,18615,18616,18617,18618,18619,18620,18621,18622,18630,18633,18634,18635,18637,18641,18642,18648,18651,18653,18655,18660,18663,18664,18668,18673,18677,18679,18680,18685,18686,18690,18691,18694,18695,18698,18707,18710,18713,18714,18716,18719,18722,18724,18731,18732,18733,18737,18738,18740,18749,18750,18751,18755,18756,18758,18759,18764,18766,18773,18774,18776,18779,18781,18793,18795,18798,18799,18801,18802,18805,18809,18811,18813,18814,18815,18819,18821,18825,18827,18830,18864,18867,18869,18877,18878,18881,18882,18883,18885,18886,18887,18888,18889,18892,18906,18911,18913,18917,18928,18933,18941,18942,18943,18945,18947,18951,18954,18959,18960,18963,18970,18971,18980,18985,18990,19000,19001,19002,19003,19006,19011,19013,19016,19020,19021,19022,19025,19026,19027,19028,19031,19033,19034,19035,19039,19040,19041,19042,19043,19044,19053,19055,19056,19061,19064,19073,19080,19083,19090,19097,19102,19109,19111,19114,19118,19120,19126,19131,19134,19141,19144,19145,19147,19151,19153,19154,19156,19163,19169,19172,19177,19178,19179,19182,19185,19186,19187,19194,19196,19197,19203,19204,19206,19207,19208,19210,19211,19214,19215,19218,19223,19227,19230,19233,19237,19241,19245,19246,19251,19253,19261,19262,19263,19272,19273,19280,19283,19286,19291,19309,19316,19322,19323,19327,19330,19332,19334,19336,19341,19345,19348,19349,19350,19351,19352,19353,19355,19361,19362,19365,19366,19369,19373,19379,19383,19385,19392,19395,19398,19402,19404,19406,19407,19408,19418,19421,19425,19430,19432,19434,19435,19439,19440,19441,19442,19444,19447,19452,19457,19465,19473,19474,19475,19476,19478,19479,19484,19487,19491,19492,19493,19494,19498,19499,19500,19506,19507,19514,19523,19525,19526,19527,19529,19532,19534,19537,19539,19544,19549,19550,19551,19561,19562,19564,19566,19567,19569,19571,19572,19573,19575,19581,19582,19589,19592,19595,19597,19606,19612,19616,19619,19621,19624,19626,19628,19629,19630,19634,19636,19637,19639,19649,19652,19655,19657,19668,19674,19675,19677,19684,19686,19688,19694,19699,19701,19702,19704,19707,19711,19723,19725,19727,19728,19729,19732,19735,19740,19748,19752,19755,19758,19761,19762,19768,19771,19774,19780,19783,19785,19787,19793,19796,19799,19801,19802,19804,19809,19813,19814,19815,19822,19823,19824,19827,19834,19838,19843,19844,19845,19846,19848,19849,19851,19853,19859,19860,19863,19869,19871,19874,19879,19883,19885,19886,19891,19895,19903,19904,19905,19906,19907,19908,19909,19913,19918,19920,19922,19927,19933,19937,19940,19942,19945,19948,19950,19953,19958,19962,19963,19966,19971,19972,19973,19975,19976,19977,19979,19982,19983,19986,19991,19992,20002,20007,20009,20013,20015,20017,20022,20027,20028,20029,20032,20033,20038,20041,20050,20055,20061,20064,20065,20068,20070,20072,20075,20076,20082,20083,20089,20090,20091,20093,20098,20107,20112,20113,20114,20122,20124,20125,20132,20134,20141,20143,20146,20148,20156,20159,20163,20165,20169,20172,20174,20175,20179,20182,20192,20194,20207,20210,20212,20214,20217,20218,20219,20228,20229,20237,20238,20241,20243,20246,20249,20256,20257,20260,20262,20265,20266,20267,20274,20276,20277,20279,20283,20284,20291,20292,20301,20303,20305,20307,20308,20310,20312,20313,20314,20316,20317,20323,20326,20330,20333,20335,20340,20341,20349,20354,20371,20372,20387,20392,20398,20403,20404,20405,20409,20420,20426,20427,20428,20429,20433,20438,20439,20450,20451,20452,20456,20468,20469,20472,20474,20475,20477,20483,20485,20486,20489,20490,20491,20498,20511,20514,20518,20519,20520,20521,20522,20537,20539,20540,20543,20549,20550,20552,20553,20572,20577,20585,20588,20592,20599,20603,20604,20606,20609,20610,20615,20619,20621,20624,20625,20628,20635,20636,20637,20639,20640,20649,20651,20652,20662,20664,20670,20672,20673,20674,20677,20678,20679,20683,20696,20699,20710,20725,20728,20729,20730,20731,20732,20735,20736,20737,20738,20739,20740,20742,20744,20746,20748,20750,20752,20756,20757,20765,20767,20771,20778,20779,20782,20789,20790,20795,20796,20799,20803,20804,20808,20809,20813,20814,20816,20819,20823,20825,20830,20832,20834,20838,20847,20857,20859,20866,20870,20872,20873,20875,20876,20877,20879,20880,20884,20886,20888,20889,20891,20895,20896,20901,20904,20905,20912,20929,20933,20936,20942,20947,20948,20949,20963,20981,20991,21002,21006,21015,21018,21024,21025,21028,21029,21034,21035,21047,21049,21055,21062,21068,21069,21072,21081,21090,21092,21096,21104,21107,21110,21115,21116,21117,21118,21120,21126,21127,21128,21133,21135,21137,21139,21150,21154,21155,21160,21172,21173,21175,21180,21181,21182,21183,21187,21191,21193,21196,21198,21201,21210,21213,21217,21226,21235,21242,21246,21252,21254,21261,21263,21267,21269,21275,21278,21282,21286,21287,21288,21289,21291,21292,21294,21298,21299,21301,21308,21310,21318,21321,21323,21325,21326,21331,21338,21340,21351,21355,21362,21363,21366,21370,21379,21383,21384,21385,21388,21391,21392,21406,21409,21410,21418,21420,21433,21437,21440,21445,21450,21451,21458,21462,21465,21467,21470,21471,21472,21475,21476,21477,21479,21482,21484,21487,21489,21490,21496,21498,21500,21503,21504,21511,21514,21516,21517,21518,21521,21523,21525,21526,21527,21528,21541,21543,21545,21546,21552,21557,21558,21561,21566,21574,21578,21581,21582,21583,21586,21587,21591,21592,21593,21595,21597,21602,21605,21609,21614,21621,21629,21630,21631,21632,21633,21634,21637,21639,21643,21644,21645,21649,21650,21657,21671,21672,21673,21678,21680,21681,21686,21689,21691,21694,21696,21697,21698,21699,21703,21704,21705,21706,21707,21708,21709,21710,21713,21714,21716,21718,21721,21723,21724,21725,21726,21727,21728,21729,21730,21731,21732,21737,21739,21740,21742,21743,21745,21747,21752,21755,21756,21757,21964,21965,21966,21968,21970,21971,21972,21983,21989,21993,22001,22003,22004,22013,22027,22032,22038,22040,22041,22043,22044,22049,22058,22059,22067,22071,22077,22080,22082,22083,22087,22088,22092,22096,22105,22107,22112,22115,22120,22122,22123,22139,22145,22152,22155,22158,22165,22169,22173,22175,22182,22183,22191,22194,22198,22200,22204,22209,22214,22219,22220,22223,22230,22231,22234,22240,22241,22242,22246,22250,22251,22261,22265,22268,22269,22270,22280,22281,22286,22290,22296,22300,22303,22304,22306,22307,22313,22317,22327,22331,22349,22350,22354,22355,22359,22361,22362,22365,22366,22369,22372,22382,22388,22389,22390,22393,22396,22397,22399,22400,22406,22407,22415,22417,22421,22434,22442,22446,22450,22452,22454,22460,22464,22475,22479,22481,22493,22497,22498,22499,22502,22503,22510,22511,22514,22518,22519,22520,22521,22534,22536,22539,22541,22542,22543,22546,22549,22550,22552,22554,22563,22564,22565,22566,22567,22568,22571,22573,22574,22576,22579,22581,22582,22583,22586,22590,22591,22595,22598,22603,22604,22607,22610,22611,22612,22614,22621,22622,22627,22630,22635,22639,22640,22643,22645,22646,22647,22652,22653,22656,22666,22668,22669,22676,22677,22679,22680,22681,22684,22689,22690,22695,22697,22698,22707,22708,22712,22716,22719,22720,22723,22728,22738,22739,22743,22744,22756,22757,22759,22761,22764,22765,22768,22771,22772,22781,22785,22789,22790,22791,22793,22794,22797,22810,22816,22826,22830,22831,22838,22850,22852,22860,22864,22870,22871,22873,22874,22882,22895,22903,22905,22912,22914,22916,22923,22925,22934,22939,22948,22952,22957,22959,22973,22974,22976,22980,22983,22985,22986,22999,23004,23006,23007,23009,23010,23017,23020,23026,23034,23041,23061,23063,23064,23070,23072,23073,23076,23078,23084,23085,23089,23094,23098,23099,23100,23102,23108,23109,23110,23111,23115,23116,23127,23134]]],["+",[6220,4897,[[0,353,290,0,290,[[0,3,2,0,2],[1,11,8,2,10],[2,13,10,10,20],[3,9,6,20,26],[4,2,1,26,27],[5,16,10,27,37],[6,10,10,37,47],[7,12,9,47,56],[8,7,5,56,61],[9,5,5,61,66],[10,4,4,66,70],[11,8,3,70,73],[12,6,5,73,78],[13,5,4,78,82],[14,3,3,82,85],[15,6,5,85,90],[16,5,4,90,94],[17,7,7,94,101],[18,12,10,101,111],[19,3,3,111,114],[20,4,3,114,117],[21,2,2,117,119],[22,5,5,119,124],[23,20,16,124,140],[24,6,5,140,145],[25,7,7,145,152],[26,17,12,152,164],[27,8,6,164,170],[28,8,7,170,177],[29,3,3,177,180],[30,12,11,180,191],[31,5,3,191,194],[32,3,3,194,197],[33,2,2,197,199],[34,8,8,199,207],[35,8,7,207,214],[36,8,8,214,222],[37,5,5,222,227],[38,3,3,227,230],[39,5,3,230,233],[40,5,5,233,238],[41,8,6,238,244],[42,5,4,244,248],[43,8,7,248,255],[44,5,5,255,260],[45,4,4,260,264],[46,9,8,264,272],[47,9,8,272,280],[48,12,8,280,288],[49,2,2,288,290]]],[1,326,248,290,538,[[50,1,1,290,291],[51,6,6,291,297],[52,12,11,297,308],[53,7,5,308,313],[54,7,6,313,319],[55,11,9,319,328],[56,4,4,328,332],[57,15,8,332,340],[58,12,11,340,351],[59,8,7,351,358],[60,8,6,358,364],[61,20,14,364,378],[62,13,10,378,388],[63,14,8,388,396],[64,2,2,396,398],[65,5,4,398,402],[66,7,6,402,408],[67,11,9,408,417],[68,4,4,417,421],[69,7,4,421,425],[70,3,3,425,428],[71,4,4,428,432],[72,11,9,432,441],[73,4,3,441,444],[74,15,8,444,452],[75,9,6,452,458],[76,4,2,458,460],[77,8,5,460,465],[78,16,12,465,477],[79,7,7,477,484],[80,1,1,484,485],[81,18,14,485,499],[82,9,7,499,506],[83,8,8,506,514],[84,2,2,514,516],[85,7,7,516,523],[86,12,5,523,528],[87,4,3,528,531],[88,6,3,531,534],[89,4,4,534,538]]],[2,256,212,538,750,[[90,1,1,538,539],[91,9,6,539,545],[92,2,2,545,547],[93,17,13,547,560],[94,9,8,560,568],[95,11,10,568,578],[96,19,14,578,592],[97,8,8,592,600],[98,4,4,600,604],[99,8,7,604,611],[100,17,14,611,625],[101,1,1,625,626],[102,5,5,626,631],[103,13,12,631,643],[104,7,7,643,650],[105,16,12,650,662],[106,8,6,662,668],[107,6,5,668,673],[108,8,7,673,680],[109,10,7,680,687],[110,6,6,687,693],[111,10,8,693,701],[112,13,9,701,710],[113,6,5,710,715],[114,19,16,715,731],[115,5,4,731,735],[116,18,15,735,750]]],[3,354,306,750,1056,[[117,16,16,750,766],[118,1,1,766,767],[119,14,13,767,780],[120,11,11,780,791],[121,10,9,791,800],[122,6,4,800,804],[123,4,3,804,807],[124,9,7,807,814],[125,4,4,814,818],[126,5,5,818,823],[127,8,7,823,830],[128,6,6,830,836],[129,7,6,836,842],[130,7,7,842,849],[131,8,7,849,856],[132,18,16,856,872],[133,6,5,872,877],[134,11,7,877,884],[135,7,6,884,890],[136,7,7,890,897],[137,19,14,897,911],[138,14,11,911,922],[139,7,5,922,927],[140,11,8,927,935],[141,5,5,935,940],[142,5,4,940,944],[143,3,3,944,947],[144,2,2,947,949],[145,11,11,949,960],[146,2,2,960,962],[147,17,14,962,976],[148,13,10,976,986],[149,48,47,986,1033],[150,11,8,1033,1041],[151,11,8,1041,1049],[152,10,7,1049,1056]]],[4,304,234,1056,1290,[[153,5,5,1056,1061],[154,19,14,1061,1075],[155,7,6,1075,1081],[156,22,20,1081,1101],[157,12,9,1101,1110],[158,7,6,1110,1116],[159,16,11,1116,1127],[160,6,5,1127,1132],[161,18,13,1132,1145],[162,5,5,1145,1150],[163,4,4,1150,1154],[164,7,5,1154,1159],[165,10,5,1159,1164],[166,6,5,1164,1169],[167,11,8,1169,1177],[168,7,5,1177,1182],[169,5,5,1182,1187],[170,12,9,1187,1196],[171,5,5,1196,1201],[172,5,5,1201,1206],[173,3,3,1206,1209],[174,3,3,1209,1212],[175,11,8,1212,1220],[176,10,7,1220,1227],[177,7,5,1227,1232],[178,6,5,1232,1237],[180,21,16,1237,1253],[181,11,9,1253,1262],[182,5,4,1262,1266],[183,5,5,1266,1271],[184,14,9,1271,1280],[185,18,9,1280,1289],[186,1,1,1289,1290]]],[5,260,195,1290,1485,[[187,2,2,1290,1292],[188,14,11,1292,1303],[189,11,9,1303,1312],[190,11,7,1312,1319],[191,13,8,1319,1327],[192,6,5,1327,1332],[193,6,5,1332,1337],[194,16,13,1337,1350],[195,10,9,1350,1359],[196,9,8,1359,1367],[197,10,7,1367,1374],[198,6,6,1374,1380],[199,11,10,1380,1390],[200,4,4,1390,1394],[201,19,14,1394,1408],[202,7,5,1408,1413],[203,5,4,1413,1417],[204,8,6,1417,1423],[205,10,8,1423,1431],[206,7,4,1431,1435],[207,36,22,1435,1457],[208,14,9,1457,1466],[209,12,8,1466,1474],[210,13,11,1474,1485]]],[6,230,170,1485,1655,[[211,8,5,1485,1490],[212,14,9,1490,1499],[213,6,6,1499,1505],[214,8,5,1505,1510],[215,10,7,1510,1517],[216,15,11,1517,1528],[217,6,5,1528,1533],[218,12,10,1533,1543],[219,13,9,1543,1552],[220,3,3,1552,1555],[221,23,18,1555,1573],[222,3,3,1573,1576],[223,9,7,1576,1583],[224,11,8,1583,1591],[225,6,6,1591,1597],[226,10,8,1597,1605],[227,10,7,1605,1612],[228,13,7,1612,1619],[229,10,7,1619,1626],[230,18,13,1626,1639],[231,22,16,1639,1655]]],[7,27,24,1655,1679,[[232,8,7,1655,1662],[233,11,11,1662,1673],[235,8,6,1673,1679]]],[8,272,218,1679,1897,[[236,11,9,1679,1688],[237,9,8,1688,1696],[238,4,4,1696,1700],[239,9,8,1700,1708],[240,4,4,1708,1712],[241,7,5,1712,1717],[242,10,6,1717,1723],[243,5,4,1723,1727],[244,11,7,1727,1734],[245,15,11,1734,1745],[246,1,1,1745,1746],[247,11,9,1746,1755],[248,4,4,1755,1759],[249,16,12,1759,1771],[250,18,12,1771,1783],[251,5,4,1783,1787],[252,24,18,1787,1805],[253,12,9,1805,1814],[254,2,2,1814,1816],[255,15,14,1816,1830],[256,5,5,1830,1835],[257,4,3,1835,1838],[258,11,6,1838,1844],[259,7,7,1844,1851],[260,18,16,1851,1867],[261,7,6,1867,1873],[262,2,2,1873,1875],[263,6,6,1875,1881],[264,3,3,1881,1884],[265,12,9,1884,1893],[266,4,4,1893,1897]]],[9,231,172,1897,2069,[[267,11,8,1897,1905],[268,15,11,1905,1916],[269,16,10,1916,1926],[270,6,5,1926,1931],[271,4,3,1931,1934],[272,10,8,1934,1942],[273,14,10,1942,1952],[274,11,5,1952,1957],[275,3,2,1957,1959],[276,9,5,1959,1964],[277,12,10,1964,1974],[278,9,7,1974,1981],[279,12,10,1981,1991],[280,9,8,1991,1999],[281,10,9,1999,2008],[282,6,4,2008,2012],[283,6,4,2012,2016],[284,4,4,2016,2020],[285,10,7,2020,2027],[286,6,5,2027,2032],[287,8,6,2032,2038],[288,21,15,2038,2053],[289,12,10,2053,2063],[290,7,6,2063,2069]]],[10,226,176,2069,2245,[[291,10,9,2069,2078],[292,13,12,2078,2090],[293,3,3,2090,2093],[294,14,7,2093,2100],[295,4,4,2100,2104],[296,11,8,2104,2112],[297,28,18,2112,2130],[298,24,18,2130,2148],[299,11,10,2148,2158],[300,14,8,2158,2166],[301,13,12,2166,2178],[302,13,9,2178,2187],[303,6,5,2187,2192],[304,11,10,2192,2202],[305,4,4,2202,2206],[306,4,4,2206,2210],[307,6,6,2210,2216],[308,6,5,2216,2221],[309,6,5,2221,2226],[310,11,9,2226,2235],[311,6,4,2235,2239],[312,8,6,2239,2245]]],[11,228,190,2245,2435,[[313,5,5,2245,2250],[314,14,11,2250,2261],[315,8,7,2261,2268],[316,9,8,2268,2276],[317,18,15,2276,2291],[318,9,9,2291,2300],[319,5,4,2300,2304],[320,10,8,2304,2312],[321,7,7,2312,2319],[322,8,8,2319,2327],[323,5,4,2327,2331],[324,5,5,2331,2336],[325,6,5,2336,2341],[326,4,3,2341,2344],[327,7,7,2344,2351],[328,12,8,2351,2359],[329,24,16,2359,2375],[330,10,9,2375,2384],[331,8,6,2384,2390],[332,6,4,2390,2394],[333,6,6,2394,2400],[334,3,3,2400,2403],[335,18,15,2403,2418],[336,9,7,2418,2425],[337,12,10,2425,2435]]],[12,137,111,2435,2546,[[338,5,5,2435,2440],[339,4,4,2440,2444],[340,1,1,2444,2445],[341,1,1,2445,2446],[342,3,3,2446,2449],[343,26,15,2449,2464],[345,2,2,2464,2466],[346,2,2,2466,2468],[347,1,1,2468,2469],[348,10,9,2469,2478],[349,11,10,2478,2488],[350,3,3,2488,2491],[351,3,2,2491,2493],[352,1,1,2493,2494],[353,8,7,2494,2501],[354,10,7,2501,2508],[355,9,3,2508,2511],[356,8,7,2511,2518],[357,2,2,2518,2520],[358,6,6,2520,2526],[359,3,2,2526,2528],[360,4,4,2528,2532],[361,1,1,2532,2533],[363,2,2,2533,2535],[364,2,2,2535,2537],[365,3,3,2537,2540],[366,6,6,2540,2546]]],[13,224,181,2546,2727,[[367,4,4,2546,2550],[368,2,2,2550,2552],[369,3,2,2552,2554],[370,10,6,2554,2560],[371,5,5,2560,2565],[372,9,7,2565,2572],[373,6,5,2572,2577],[374,4,4,2577,2581],[375,11,8,2581,2589],[376,7,4,2589,2593],[377,7,6,2593,2599],[378,4,4,2599,2603],[379,5,4,2603,2607],[380,4,4,2607,2611],[381,9,6,2611,2617],[382,5,5,2617,2622],[383,2,2,2622,2624],[384,4,4,2624,2628],[385,4,4,2628,2632],[386,12,10,2632,2642],[387,6,5,2642,2647],[388,3,2,2647,2649],[389,5,4,2649,2653],[390,7,5,2653,2658],[391,14,12,2658,2670],[392,6,6,2670,2676],[394,4,4,2676,2680],[395,2,2,2680,2682],[396,11,8,2682,2690],[397,6,5,2690,2695],[398,18,10,2695,2705],[399,7,7,2705,2712],[400,7,5,2712,2717],[401,6,6,2717,2723],[402,5,4,2723,2727]]],[14,83,71,2727,2798,[[403,5,5,2727,2732],[404,8,6,2732,2738],[405,6,5,2738,2743],[406,1,1,2743,2744],[408,2,1,2744,2745],[409,4,4,2745,2749],[410,27,22,2749,2771],[411,8,8,2771,2779],[412,22,19,2779,2798]]],[15,89,74,2798,2872,[[413,3,2,2798,2800],[415,8,7,2800,2807],[416,9,8,2807,2815],[417,7,5,2815,2820],[418,2,2,2820,2822],[419,9,8,2822,2830],[420,4,4,2830,2834],[421,14,12,2834,2846],[422,2,2,2846,2848],[423,11,8,2848,2856],[424,12,9,2856,2865],[425,8,7,2865,2872]]],[16,45,37,2872,2909,[[426,5,5,2872,2877],[427,7,6,2877,2883],[428,6,5,2883,2888],[429,6,6,2888,2894],[431,4,4,2894,2898],[432,6,3,2898,2901],[433,5,5,2901,2906],[434,6,3,2906,2909]]],[17,213,181,2909,3090,[[436,10,8,2909,2917],[437,9,6,2917,2923],[438,6,5,2923,2928],[439,8,5,2928,2933],[440,12,8,2933,2941],[441,8,7,2941,2948],[442,3,3,2948,2951],[443,3,3,2951,2954],[444,2,2,2954,2956],[445,5,5,2956,2961],[446,6,6,2961,2967],[448,2,2,2967,2969],[449,5,5,2969,2974],[450,3,3,2974,2977],[451,1,1,2977,2978],[452,3,3,2978,2981],[453,7,5,2981,2986],[454,5,5,2986,2991],[455,7,5,2991,2996],[456,2,2,2996,2998],[457,4,4,2998,3002],[458,5,4,3002,3006],[459,7,6,3006,3012],[461,2,2,3012,3014],[462,5,5,3014,3019],[463,11,9,3019,3028],[464,1,1,3028,3029],[465,4,4,3029,3033],[466,12,9,3033,3042],[467,5,4,3042,3046],[468,8,8,3046,3054],[469,6,4,3054,3058],[470,8,6,3058,3064],[471,6,6,3064,3070],[472,7,7,3070,3077],[473,4,4,3077,3081],[474,5,4,3081,3085],[476,5,4,3085,3089],[477,1,1,3089,3090]]],[18,431,344,3090,3434,[[480,2,2,3090,3092],[481,1,1,3092,3093],[482,1,1,3093,3094],[483,1,1,3094,3095],[484,1,1,3095,3096],[485,2,2,3096,3098],[486,3,2,3098,3100],[487,2,2,3100,3102],[489,3,2,3102,3104],[491,2,2,3104,3106],[493,2,2,3106,3108],[494,7,5,3108,3113],[495,15,11,3113,3124],[496,9,5,3124,3129],[497,3,2,3129,3131],[498,2,1,3131,3132],[499,10,7,3132,3139],[501,2,1,3139,3140],[502,4,4,3140,3144],[504,3,2,3144,3146],[505,1,1,3146,3147],[507,1,1,3147,3148],[508,9,7,3148,3155],[509,1,1,3155,3156],[510,4,4,3156,3160],[511,9,8,3160,3168],[512,4,2,3168,3170],[513,1,1,3170,3171],[514,5,5,3171,3176],[515,7,5,3176,3181],[516,6,5,3181,3186],[517,4,3,3186,3189],[518,1,1,3189,3190],[519,2,1,3190,3191],[520,2,1,3191,3192],[521,3,2,3192,3194],[522,3,3,3194,3197],[526,2,2,3197,3199],[527,5,4,3199,3203],[528,6,5,3203,3208],[529,4,2,3208,3210],[530,2,2,3210,3212],[531,1,1,3212,3213],[532,7,5,3213,3218],[533,2,1,3218,3219],[534,1,1,3219,3220],[535,2,1,3220,3221],[536,6,3,3221,3224],[537,2,2,3224,3226],[538,2,2,3226,3228],[539,2,2,3228,3230],[540,1,1,3230,3231],[541,3,2,3231,3233],[542,1,1,3233,3234],[543,1,1,3234,3235],[545,11,8,3235,3243],[546,8,6,3243,3249],[548,7,5,3249,3254],[549,6,4,3254,3258],[550,3,3,3258,3261],[551,2,2,3261,3263],[552,4,2,3263,3265],[553,3,3,3265,3268],[554,2,2,3268,3270],[555,9,9,3270,3279],[557,4,4,3279,3283],[558,5,3,3283,3286],[559,1,1,3286,3287],[560,1,1,3287,3288],[561,3,2,3288,3290],[562,3,2,3290,3292],[563,1,1,3292,3293],[564,1,1,3293,3294],[565,2,2,3294,3296],[566,5,5,3296,3301],[567,1,1,3301,3302],[568,8,4,3302,3306],[570,3,2,3306,3308],[571,2,2,3308,3310],[573,2,2,3310,3312],[574,3,2,3312,3314],[578,1,1,3314,3315],[579,5,4,3315,3319],[580,3,3,3319,3322],[581,5,4,3322,3326],[582,3,2,3326,3328],[583,3,2,3328,3330],[584,17,12,3330,3342],[585,2,2,3342,3344],[586,6,5,3344,3349],[587,3,3,3349,3352],[589,1,1,3352,3353],[590,4,3,3353,3356],[591,4,2,3356,3358],[592,1,1,3358,3359],[593,2,1,3359,3360],[595,4,4,3360,3364],[596,31,29,3364,3393],[597,2,1,3393,3394],[598,4,4,3394,3398],[601,1,1,3398,3399],[602,1,1,3399,3400],[605,1,1,3400,3401],[606,2,2,3401,3403],[607,3,3,3403,3406],[608,1,1,3406,3407],[609,1,1,3407,3408],[611,1,1,3408,3409],[612,5,4,3409,3413],[613,2,2,3413,3415],[614,1,1,3415,3416],[615,1,1,3416,3417],[616,4,3,3417,3420],[617,4,2,3420,3422],[618,1,1,3422,3423],[619,3,3,3423,3426],[620,3,3,3426,3429],[621,6,4,3429,3433],[625,1,1,3433,3434]]],[19,144,123,3434,3557,[[628,4,3,3434,3437],[629,6,4,3437,3441],[630,11,8,3441,3449],[631,5,5,3449,3454],[632,6,5,3454,3459],[633,5,3,3459,3462],[634,3,2,3462,3464],[635,11,7,3464,3471],[637,1,1,3471,3472],[638,3,3,3472,3475],[639,5,5,3475,3480],[640,4,4,3480,3484],[641,5,4,3484,3488],[642,4,4,3488,3492],[643,10,8,3492,3500],[644,4,4,3500,3504],[645,4,4,3504,3508],[646,5,5,3508,3513],[647,4,4,3513,3517],[648,6,6,3517,3523],[649,5,3,3523,3526],[650,2,2,3526,3528],[651,1,1,3528,3529],[652,5,5,3529,3534],[653,2,2,3534,3536],[654,6,6,3536,3542],[655,3,3,3542,3545],[656,2,2,3545,3547],[657,7,5,3547,3552],[658,5,5,3552,3557]]],[20,59,49,3557,3606,[[659,2,2,3557,3559],[660,8,5,3559,3564],[661,5,4,3564,3568],[662,8,7,3568,3575],[663,4,4,3575,3579],[664,3,3,3579,3582],[665,13,10,3582,3592],[666,4,4,3592,3596],[667,3,3,3596,3599],[668,4,3,3599,3602],[669,2,1,3602,3603],[670,3,3,3603,3606]]],[21,28,17,3606,3623,[[671,3,2,3606,3608],[673,4,4,3608,3612],[674,13,5,3612,3617],[675,4,3,3617,3620],[676,2,2,3620,3622],[678,2,1,3622,3623]]],[22,419,286,3623,3909,[[679,7,5,3623,3628],[680,11,6,3628,3634],[681,2,1,3634,3635],[682,4,2,3635,3637],[683,5,4,3637,3641],[684,5,4,3641,3645],[685,7,6,3645,3651],[686,3,3,3651,3654],[687,4,3,3654,3657],[688,9,6,3657,3663],[689,13,4,3663,3667],[690,1,1,3667,3668],[691,6,4,3668,3672],[692,12,9,3672,3681],[694,3,3,3681,3684],[695,5,4,3684,3688],[696,2,2,3688,3690],[697,6,6,3690,3696],[698,4,3,3696,3699],[699,12,5,3699,3704],[700,6,4,3704,3708],[701,7,4,3708,3712],[702,7,5,3712,3717],[703,7,4,3717,3721],[704,2,2,3721,3723],[705,1,1,3723,3724],[706,6,5,3724,3729],[707,8,4,3729,3733],[708,9,7,3733,3740],[709,5,3,3740,3743],[710,1,1,3743,3744],[711,6,3,3744,3747],[712,11,6,3747,3753],[714,6,5,3753,3758],[715,8,6,3758,3764],[716,7,6,3764,3770],[717,4,2,3770,3772],[718,8,6,3772,3778],[719,11,7,3778,3785],[720,6,5,3785,3790],[721,8,5,3790,3795],[722,9,7,3795,3802],[723,7,4,3802,3806],[724,9,6,3806,3812],[725,4,4,3812,3816],[726,16,12,3816,3828],[727,12,7,3828,3835],[728,5,4,3835,3839],[729,11,9,3839,3848],[730,5,3,3848,3851],[731,8,4,3851,3855],[732,9,6,3855,3861],[733,4,2,3861,3863],[734,7,5,3863,3868],[735,6,6,3868,3874],[736,5,3,3874,3877],[737,14,8,3877,3885],[738,3,3,3885,3888],[740,1,1,3888,3889],[741,11,8,3889,3897],[742,4,4,3897,3901],[743,7,4,3901,3905],[744,7,4,3905,3909]]],[23,488,382,3909,4291,[[745,5,5,3909,3914],[746,9,7,3914,3921],[747,12,11,3921,3932],[748,17,13,3932,3945],[749,6,4,3945,3949],[750,10,6,3949,3955],[751,11,10,3955,3965],[752,7,5,3965,3970],[753,12,10,3970,3980],[754,14,10,3980,3990],[755,7,6,3990,3996],[756,7,5,3996,4001],[757,6,5,4001,4006],[758,1,1,4006,4007],[759,9,8,4007,4015],[760,12,8,4015,4023],[761,9,7,4023,4030],[762,9,7,4030,4037],[763,4,3,4037,4040],[764,6,6,4040,4046],[765,5,4,4046,4050],[766,8,8,4050,4058],[767,16,12,4058,4070],[768,5,5,4070,4075],[769,17,12,4075,4087],[770,8,7,4087,4094],[771,4,4,4094,4098],[772,6,6,4098,4104],[773,9,6,4104,4110],[774,7,6,4110,4116],[775,16,12,4116,4128],[776,11,10,4128,4138],[777,13,8,4138,4146],[778,11,8,4146,4154],[779,5,4,4154,4158],[780,16,13,4158,4171],[781,9,6,4171,4177],[782,7,7,4177,4184],[783,2,2,4184,4186],[784,5,4,4186,4190],[785,10,6,4190,4196],[786,10,7,4196,4203],[787,3,3,4203,4206],[788,11,9,4206,4215],[789,1,1,4215,4216],[790,10,8,4216,4224],[791,4,2,4224,4226],[792,21,14,4226,4240],[793,11,10,4240,4250],[794,17,11,4250,4261],[795,24,18,4261,4279],[796,13,12,4279,4291]]],[24,38,33,4291,4324,[[797,7,6,4291,4297],[798,6,6,4297,4303],[799,10,10,4303,4313],[800,10,7,4313,4320],[801,5,4,4320,4324]]],[25,413,309,4324,4633,[[802,14,11,4324,4335],[803,3,1,4335,4336],[804,11,7,4336,4343],[805,4,4,4343,4347],[806,1,1,4347,4348],[807,2,2,4348,4350],[808,8,5,4350,4355],[809,7,6,4355,4361],[810,3,3,4361,4364],[811,10,8,4364,4372],[812,8,7,4372,4379],[813,6,3,4379,4382],[814,5,5,4382,4387],[815,13,9,4387,4396],[816,1,1,4396,4397],[817,16,15,4397,4412],[818,6,5,4412,4417],[819,12,11,4417,4428],[820,6,6,4428,4434],[821,7,7,4434,4441],[822,5,4,4441,4445],[823,1,1,4445,4446],[824,12,9,4446,4455],[825,1,1,4455,4456],[826,4,2,4456,4458],[827,8,7,4458,4465],[828,13,10,4465,4475],[829,9,7,4475,4482],[830,4,4,4482,4486],[831,5,4,4486,4490],[832,4,3,4490,4493],[833,7,7,4493,4500],[834,16,13,4500,4513],[835,7,5,4513,4518],[836,1,1,4518,4519],[837,12,11,4519,4530],[838,6,5,4530,4535],[839,8,4,4535,4539],[840,7,6,4539,4545],[841,36,20,4545,4565],[842,12,7,4565,4572],[843,8,4,4572,4576],[844,12,10,4576,4586],[845,8,5,4586,4591],[846,13,7,4591,4598],[847,9,5,4598,4603],[848,16,7,4603,4610],[849,26,23,4610,4633]]],[26,35,30,4633,4663,[[850,11,8,4633,4641],[857,4,4,4641,4645],[858,6,5,4645,4650],[859,1,1,4650,4651],[860,8,7,4651,4658],[861,5,5,4658,4663]]],[27,48,38,4663,4701,[[862,1,1,4663,4664],[863,7,5,4664,4669],[865,4,3,4669,4672],[866,1,1,4672,4673],[867,3,3,4673,4676],[868,4,3,4676,4679],[869,2,2,4679,4681],[870,7,5,4681,4686],[871,3,3,4686,4689],[872,6,5,4689,4694],[873,2,2,4694,4696],[874,8,5,4696,4701]]],[28,16,14,4701,4715,[[876,5,5,4701,4706],[877,5,4,4706,4710],[878,6,5,4710,4715]]],[29,44,30,4715,4745,[[879,7,4,4715,4719],[880,8,5,4719,4724],[881,4,4,4724,4728],[882,1,1,4728,4729],[883,3,3,4729,4732],[884,5,3,4732,4735],[885,3,3,4735,4738],[886,2,1,4738,4739],[887,11,6,4739,4745]]],[30,8,6,4745,4751,[[888,8,6,4745,4751]]],[31,27,22,4751,4773,[[889,9,7,4751,4758],[890,5,4,4758,4762],[891,7,6,4762,4768],[892,6,5,4768,4773]]],[32,40,31,4773,4804,[[893,5,5,4773,4778],[894,6,4,4778,4782],[895,5,3,4782,4785],[896,7,4,4785,4789],[897,7,6,4789,4795],[898,2,1,4795,4796],[899,8,8,4796,4804]]],[33,13,11,4804,4815,[[900,4,3,4804,4807],[901,3,3,4807,4810],[902,6,5,4810,4815]]],[34,18,14,4815,4829,[[903,5,3,4815,4818],[904,8,7,4818,4825],[905,5,4,4825,4829]]],[35,15,11,4829,4840,[[906,6,5,4829,4834],[907,2,2,4834,4836],[908,7,4,4836,4840]]],[36,6,6,4840,4846,[[909,2,2,4840,4842],[910,4,4,4842,4846]]],[37,58,39,4846,4885,[[911,2,2,4846,4848],[912,4,3,4848,4851],[913,3,2,4851,4853],[914,3,3,4853,4856],[915,2,1,4856,4857],[916,8,4,4857,4861],[917,5,3,4861,4864],[918,5,4,4864,4868],[919,10,5,4868,4873],[920,3,2,4873,4875],[921,2,2,4875,4877],[923,2,2,4877,4879],[924,9,6,4879,4885]]],[38,14,12,4885,4897,[[925,5,5,4885,4890],[926,6,5,4890,4895],[927,3,2,4895,4897]]]],[6,8,32,33,38,40,46,47,51,53,56,57,58,61,63,66,69,77,78,79,82,83,90,92,93,95,134,139,141,144,150,151,153,154,156,157,158,161,162,163,166,174,175,176,179,181,182,186,189,190,191,194,196,200,203,204,210,215,216,224,229,239,248,253,264,266,268,274,275,297,299,302,306,319,321,327,329,332,351,353,356,359,364,367,378,383,384,387,389,391,409,411,419,424,426,427,438,440,441,446,449,461,468,473,481,483,486,487,489,491,493,496,501,508,529,534,543,551,556,574,575,577,579,591,594,596,598,599,601,602,608,618,628,631,632,634,637,641,653,655,664,668,676,678,681,693,708,709,714,715,718,723,728,736,746,752,755,757,758,760,766,767,772,773,774,775,779,783,784,789,798,799,803,805,814,825,830,839,844,862,874,889,897,902,904,906,908,910,912,913,922,938,939,940,970,978,979,999,1006,1012,1018,1019,1020,1022,1024,1027,1032,1042,1046,1047,1073,1074,1076,1077,1086,1087,1097,1100,1101,1104,1105,1108,1120,1133,1138,1139,1143,1150,1154,1160,1187,1189,1191,1196,1226,1227,1237,1241,1254,1255,1259,1267,1276,1278,1292,1299,1301,1324,1331,1332,1333,1341,1352,1353,1356,1359,1361,1377,1381,1383,1389,1391,1412,1420,1421,1422,1430,1433,1435,1441,1442,1450,1458,1461,1463,1464,1466,1467,1468,1473,1482,1483,1485,1493,1497,1498,1503,1505,1519,1531,1544,1555,1558,1560,1565,1569,1573,1581,1583,1584,1585,1586,1587,1589,1590,1591,1596,1601,1604,1608,1610,1611,1627,1636,1637,1643,1651,1652,1655,1656,1661,1662,1664,1666,1668,1680,1681,1682,1687,1689,1690,1709,1718,1719,1721,1722,1734,1739,1740,1741,1746,1748,1749,1753,1760,1762,1766,1767,1770,1772,1775,1780,1783,1788,1794,1795,1800,1805,1807,1808,1811,1813,1814,1816,1820,1828,1831,1833,1835,1838,1845,1847,1851,1853,1855,1857,1858,1867,1870,1875,1876,1877,1881,1882,1883,1885,1886,1887,1894,1900,1901,1908,1911,1914,1918,1919,1942,1943,1948,1953,1976,1979,1984,1986,1988,1995,1997,1999,2000,2003,2008,2009,2010,2012,2020,2021,2024,2027,2028,2031,2044,2053,2055,2069,2072,2091,2106,2113,2117,2120,2125,2127,2149,2151,2159,2165,2169,2172,2173,2174,2175,2178,2186,2193,2197,2198,2206,2213,2214,2216,2217,2227,2239,2248,2249,2259,2268,2270,2277,2293,2294,2303,2320,2321,2335,2348,2350,2356,2357,2359,2361,2362,2363,2364,2366,2370,2382,2386,2392,2396,2397,2398,2415,2420,2434,2439,2442,2444,2445,2446,2449,2450,2453,2457,2461,2465,2468,2470,2471,2474,2478,2479,2480,2484,2488,2489,2507,2511,2512,2514,2520,2525,2526,2529,2536,2551,2569,2570,2571,2572,2577,2585,2595,2606,2611,2612,2622,2631,2637,2648,2659,2684,2685,2695,2726,2727,2729,2743,2746,2764,2765,2770,2772,2775,2778,2781,2787,2797,2800,2805,2807,2808,2811,2816,2817,2821,2822,2825,2829,2830,2834,2835,2836,2838,2839,2840,2843,2847,2852,2854,2856,2860,2864,2866,2867,2871,2876,2879,2893,2895,2896,2897,2899,2900,2904,2906,2908,2911,2912,2913,2914,2915,2929,2934,2940,2943,2945,2946,2947,2950,2964,2970,2975,2977,2979,2981,2982,2984,2989,2990,2991,2999,3001,3005,3006,3007,3008,3018,3022,3029,3031,3032,3035,3037,3042,3051,3054,3055,3064,3093,3098,3114,3119,3125,3126,3128,3130,3136,3141,3151,3152,3156,3164,3170,3171,3181,3183,3196,3198,3199,3203,3206,3213,3215,3216,3217,3219,3220,3221,3228,3231,3235,3238,3239,3243,3244,3245,3248,3272,3275,3277,3280,3281,3287,3289,3295,3303,3313,3315,3317,3320,3321,3322,3323,3324,3336,3341,3352,3355,3359,3362,3366,3367,3371,3372,3373,3382,3387,3394,3396,3402,3413,3417,3418,3419,3431,3432,3434,3440,3445,3449,3454,3455,3460,3469,3483,3484,3486,3494,3505,3507,3510,3511,3512,3513,3514,3517,3518,3519,3520,3524,3534,3537,3561,3569,3573,3575,3576,3577,3578,3579,3581,3586,3587,3588,3592,3594,3598,3600,3601,3605,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3660,3701,3704,3705,3707,3714,3720,3726,3731,3732,3735,3738,3741,3742,3745,3746,3749,3761,3766,3768,3773,3778,3782,3786,3790,3795,3796,3798,3800,3805,3811,3812,3817,3823,3826,3827,3834,3844,3855,3934,3939,3945,3950,3953,3955,3958,3963,3964,3966,3978,3982,3986,3997,3999,4000,4021,4023,4037,4040,4044,4048,4052,4055,4059,4062,4069,4071,4073,4074,4075,4078,4095,4096,4098,4099,4100,4117,4121,4124,4127,4137,4151,4152,4172,4174,4177,4183,4188,4189,4194,4196,4203,4207,4215,4218,4220,4221,4222,4227,4229,4231,4234,4235,4239,4240,4243,4246,4249,4252,4253,4254,4263,4264,4266,4273,4283,4285,4286,4292,4293,4298,4302,4306,4309,4316,4317,4320,4325,4327,4332,4333,4344,4345,4346,4347,4351,4352,4353,4356,4358,4359,4360,4364,4366,4368,4376,4378,4380,4381,4386,4390,4391,4399,4405,4408,4416,4423,4425,4429,4438,4443,4453,4454,4457,4459,4463,4465,4469,4470,4475,4477,4478,4479,4482,4491,4493,4551,4553,4558,4565,4574,4600,4608,4614,4619,4624,4627,4630,4633,4636,4639,4642,4646,4647,4650,4662,4666,4667,4669,4677,4678,4683,4692,4693,4694,4706,4711,4715,4716,4718,4725,4726,4729,4733,4735,4737,4739,4740,4742,4750,4761,4763,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4801,4802,4803,4804,4805,4806,4807,4808,4809,4812,4815,4819,4820,4821,4824,4826,4827,4831,4834,4847,4849,4850,4853,4857,4859,4870,4872,4880,4882,4883,4886,4887,4888,4891,4894,4909,4911,4917,4919,4943,4944,4946,4947,4950,4952,4953,4954,4957,4959,4960,4961,4963,4964,4979,4980,4983,4986,4987,4992,5007,5013,5016,5019,5022,5024,5030,5033,5036,5037,5038,5039,5040,5041,5042,5043,5046,5049,5050,5052,5057,5058,5059,5061,5068,5075,5076,5077,5079,5098,5100,5101,5105,5107,5109,5112,5115,5117,5118,5119,5125,5130,5131,5132,5133,5135,5141,5146,5151,5152,5157,5161,5162,5164,5167,5168,5169,5171,5174,5176,5180,5181,5183,5185,5190,5192,5193,5198,5201,5218,5220,5225,5231,5245,5250,5261,5269,5270,5277,5279,5282,5285,5289,5292,5297,5298,5299,5318,5320,5326,5330,5331,5332,5333,5335,5337,5343,5345,5348,5351,5355,5371,5376,5379,5382,5384,5387,5389,5390,5392,5396,5399,5400,5402,5403,5410,5412,5418,5419,5425,5428,5430,5442,5443,5446,5456,5460,5468,5491,5492,5494,5504,5509,5510,5512,5514,5515,5517,5521,5526,5527,5528,5532,5534,5539,5543,5553,5556,5558,5564,5566,5568,5570,5574,5579,5581,5625,5631,5632,5642,5645,5646,5658,5660,5666,5667,5668,5671,5674,5675,5677,5678,5680,5684,5690,5697,5699,5700,5701,5704,5707,5711,5712,5713,5721,5731,5734,5738,5749,5754,5771,5775,5777,5783,5784,5790,5797,5800,5810,5812,5813,5817,5823,5824,5825,5826,5834,5837,5840,5855,5859,5871,5873,5878,5879,5880,5882,5886,5888,5889,5892,5893,5894,5895,5896,5897,5903,5905,5906,5907,5909,5912,5913,5914,5917,5918,5928,5933,5935,5938,5939,5940,5943,5945,5946,5949,5950,5959,5970,5971,5972,5978,5988,5989,5999,6002,6004,6006,6009,6011,6013,6014,6015,6016,6021,6024,6027,6035,6037,6043,6045,6046,6049,6050,6051,6053,6061,6063,6070,6075,6091,6093,6095,6098,6100,6105,6109,6110,6113,6122,6127,6128,6130,6131,6132,6133,6134,6137,6139,6158,6159,6160,6163,6166,6170,6180,6181,6184,6186,6190,6194,6197,6202,6203,6204,6205,6207,6208,6209,6210,6211,6212,6216,6217,6220,6223,6248,6266,6267,6271,6272,6273,6280,6282,6284,6285,6298,6300,6305,6306,6308,6310,6330,6333,6334,6335,6350,6354,6355,6372,6375,6376,6378,6380,6384,6385,6386,6387,6388,6390,6391,6397,6398,6401,6404,6406,6408,6409,6411,6413,6415,6417,6419,6421,6425,6426,6435,6442,6444,6445,6449,6450,6455,6457,6458,6461,6463,6465,6469,6473,6474,6475,6476,6478,6479,6482,6484,6486,6488,6492,6493,6494,6506,6508,6520,6523,6525,6529,6545,6546,6548,6554,6557,6559,6561,6563,6564,6566,6571,6584,6587,6588,6589,6590,6605,6610,6612,6613,6614,6627,6628,6634,6637,6643,6645,6647,6656,6660,6662,6663,6665,6667,6668,6672,6675,6681,6692,6695,6697,6702,6717,6719,6721,6722,6727,6729,6730,6732,6733,6741,6745,6753,6758,6771,6774,6775,6790,6791,6794,6795,6796,6822,6823,6827,6832,6833,6834,6836,6842,6845,6847,6851,6852,6853,6854,6858,6860,6862,6865,6866,6868,6869,6871,6875,6877,6886,6889,6890,6897,6898,6904,6907,6910,6911,6912,6913,6917,6918,6923,6927,6930,6932,6934,6940,6943,6946,6961,6963,6966,6968,6969,6974,6977,6979,6981,6983,6985,6987,6988,6989,6991,6995,7000,7004,7006,7009,7015,7021,7025,7026,7036,7040,7041,7042,7054,7055,7067,7069,7070,7071,7085,7087,7088,7096,7097,7098,7100,7102,7105,7106,7107,7108,7109,7110,7111,7112,7114,7116,7118,7119,7120,7121,7123,7126,7128,7129,7132,7133,7139,7143,7149,7150,7152,7153,7155,7156,7157,7158,7161,7163,7167,7169,7192,7193,7195,7199,7200,7205,7213,7215,7219,7220,7226,7228,7229,7232,7239,7243,7248,7259,7263,7268,7269,7271,7273,7291,7293,7295,7296,7300,7301,7305,7307,7309,7315,7318,7319,7320,7322,7323,7328,7336,7338,7339,7349,7351,7354,7355,7359,7360,7363,7366,7376,7377,7379,7387,7392,7393,7394,7398,7407,7412,7416,7420,7421,7422,7423,7427,7429,7430,7431,7436,7437,7441,7456,7462,7463,7464,7466,7468,7470,7471,7480,7483,7487,7493,7496,7502,7509,7512,7513,7525,7532,7536,7538,7539,7547,7553,7554,7556,7562,7563,7566,7567,7571,7575,7581,7582,7583,7586,7588,7593,7596,7608,7609,7618,7621,7622,7630,7633,7641,7642,7644,7648,7651,7652,7653,7655,7657,7664,7667,7669,7671,7675,7682,7685,7686,7687,7688,7689,7691,7705,7706,7714,7716,7731,7737,7739,7745,7746,7751,7752,7755,7757,7758,7763,7764,7767,7771,7776,7778,7779,7782,7784,7788,7790,7806,7823,7829,7833,7836,7838,7839,7840,7841,7845,7846,7852,7854,7860,7871,7872,7875,7878,7882,7883,7884,7887,7889,7894,7895,7896,7898,7900,7904,7905,7916,7918,7924,7925,7927,7929,7931,7938,7945,7957,7958,7959,7962,7965,7970,7973,7975,7980,7988,7991,7994,7995,7997,8000,8003,8004,8010,8012,8017,8021,8023,8024,8025,8035,8037,8044,8045,8048,8061,8062,8064,8068,8070,8071,8072,8075,8076,8079,8080,8091,8092,8094,8096,8099,8103,8107,8109,8110,8118,8122,8124,8128,8129,8131,8145,8155,8157,8159,8160,8161,8169,8175,8176,8178,8179,8181,8186,8188,8189,8191,8192,8195,8199,8203,8209,8210,8217,8220,8221,8222,8232,8238,8249,8253,8254,8256,8258,8261,8263,8267,8269,8271,8274,8276,8279,8280,8283,8289,8290,8293,8296,8297,8306,8316,8322,8323,8326,8327,8332,8333,8334,8339,8349,8351,8358,8367,8369,8372,8375,8381,8382,8388,8390,8391,8396,8400,8401,8407,8417,8423,8424,8427,8431,8432,8437,8460,8463,8470,8476,8481,8491,8494,8509,8518,8520,8527,8528,8530,8542,8554,8556,8561,8565,8575,8576,8582,8585,8586,8590,8592,8593,8603,8605,8606,8609,8611,8615,8618,8619,8620,8624,8626,8634,8646,8648,8651,8657,8664,8668,8669,8670,8673,8674,8682,8683,8689,8694,8700,8707,8713,8716,8717,8723,8744,8746,8754,8762,8764,8767,8769,8770,8774,8777,8778,8785,8786,8797,8801,8803,8806,8809,8810,8811,8824,8836,8844,8856,8867,8868,8869,8874,8875,8878,8881,8882,8891,8894,8897,8911,8912,8915,8917,8920,8925,8929,8937,8941,8942,8943,8945,8947,8948,8954,8957,8958,8959,8963,8964,8965,8966,8973,8981,8983,8986,8990,8992,8994,8996,9001,9004,9006,9008,9010,9020,9026,9036,9038,9039,9041,9049,9050,9056,9057,9058,9060,9061,9063,9071,9073,9075,9079,9090,9092,9094,9098,9099,9102,9107,9108,9117,9119,9120,9122,9125,9126,9131,9137,9139,9140,9142,9143,9153,9155,9161,9166,9175,9176,9179,9182,9184,9185,9188,9196,9217,9218,9222,9223,9225,9226,9227,9233,9239,9240,9242,9246,9254,9262,9268,9270,9307,9308,9313,9316,9318,9320,9321,9324,9330,9336,9346,9353,9354,9367,9385,9391,9403,9404,9406,9408,9415,9425,9432,9433,9442,9443,9444,9449,9450,9454,9464,9477,9480,9483,9487,9488,9499,9504,9513,9535,9536,9539,9548,9549,9554,9556,9558,9560,9561,9564,9565,9566,9572,9574,9576,9582,9587,9596,9597,9598,9600,9603,9604,9606,9608,9611,9628,9631,9643,9645,9649,9650,9651,9653,9654,9659,9662,9666,9667,9668,9669,9671,9672,9673,9674,9676,9683,9685,9686,9690,9701,9704,9706,9707,9709,9715,9720,9726,9730,9733,9735,9736,9741,9742,9747,9749,9757,9758,9761,9763,9770,9780,9789,9796,9803,9808,9816,9821,9822,9824,9826,9831,9840,9844,9848,9851,9855,9857,9858,9868,9876,9877,9882,9894,9896,9920,9921,9923,9927,9934,9939,9941,9943,9949,9950,9966,9969,9970,9974,9975,9977,9980,9981,9990,9991,9992,9994,9996,10001,10003,10004,10006,10007,10010,10011,10015,10016,10019,10022,10030,10032,10034,10038,10049,10053,10057,10058,10059,10067,10069,10075,10080,10086,10092,10104,10107,10112,10116,10121,10126,10128,10130,10134,10135,10146,10149,10164,10167,10169,10171,10173,10176,10177,10178,10182,10183,10187,10191,10192,10195,10196,10198,10205,10209,10210,10215,10217,10220,10222,10227,10234,10241,10243,10246,10247,10248,10249,10250,10252,10264,10296,10297,10299,10300,10309,10329,10359,10361,10370,10394,10450,10451,10453,10485,10487,10514,10515,10516,10517,10519,10520,10525,10526,10528,10530,10531,10532,10534,10586,10615,10619,10640,10660,10681,10686,10690,10691,10692,10696,10699,10704,10705,10721,10722,10734,10740,10751,10752,10753,10754,10756,10757,10765,10766,10767,10788,10790,10804,10822,10823,10840,10843,10850,10853,10856,10868,10871,10873,10874,10876,10880,10884,10891,10898,10901,10913,10914,10917,10921,10922,10923,10925,10928,10930,10936,10944,10946,10948,10956,10964,10973,10982,10986,10987,11007,11010,11020,11085,11107,11127,11132,11147,11148,11162,11167,11168,11174,11176,11178,11180,11198,11207,11210,11211,11216,11219,11233,11246,11248,11250,11252,11253,11254,11256,11270,11274,11276,11278,11282,11287,11298,11303,11308,11314,11315,11321,11325,11332,11338,11344,11346,11347,11353,11357,11364,11366,11374,11376,11378,11382,11383,11386,11392,11397,11399,11405,11410,11418,11427,11428,11430,11435,11437,11440,11442,11448,11450,11457,11466,11469,11470,11480,11482,11483,11488,11498,11499,11503,11505,11506,11507,11511,11512,11514,11516,11518,11529,11542,11548,11549,11565,11574,11578,11580,11584,11586,11589,11591,11594,11596,11597,11598,11602,11614,11617,11624,11628,11632,11634,11636,11643,11651,11655,11658,11666,11670,11676,11678,11682,11683,11697,11700,11705,11709,11710,11713,11714,11716,11717,11718,11719,11724,11727,11731,11743,11747,11750,11751,11752,11753,11767,11772,11775,11776,11797,11825,11832,11833,11837,11838,11843,11845,11852,11853,11855,11864,11867,11870,11871,11878,11882,11886,11888,11889,11890,11892,11896,11897,11898,11910,11915,11916,11917,11920,11923,11931,11937,11942,11960,11963,11966,11973,11977,11981,11984,11987,11988,12000,12005,12006,12016,12017,12019,12020,12023,12027,12028,12086,12088,12090,12092,12095,12100,12103,12105,12109,12110,12112,12172,12179,12180,12182,12201,12202,12203,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12216,12219,12220,12223,12224,12225,12232,12236,12238,12239,12240,12242,12244,12245,12248,12250,12253,12254,12258,12260,12261,12263,12270,12272,12273,12274,12277,12278,12279,12280,12281,12282,12285,12286,12295,12298,12305,12342,12346,12348,12351,12352,12354,12355,12361,12364,12368,12371,12372,12373,12378,12380,12387,12391,12395,12396,12397,12409,12417,12422,12426,12481,12483,12485,12487,12490,12491,12495,12497,12498,12510,12513,12516,12518,12524,12526,12529,12530,12531,12538,12539,12543,12546,12558,12577,12592,12604,12605,12610,12612,12613,12618,12619,12651,12653,12655,12659,12661,12662,12663,12667,12670,12674,12675,12690,12691,12696,12699,12701,12703,12707,12709,12721,12722,12730,12733,12736,12737,12741,12745,12748,12754,12755,12757,12760,12766,12767,12770,12773,12775,12776,12795,12802,12803,12806,12813,12814,12815,12819,12826,12830,12832,12834,12850,12856,12862,12870,12872,12876,12877,12879,12881,12888,12890,12893,12894,12898,12901,12902,12903,12908,12914,12915,12923,12925,12939,12941,12943,12947,12950,12952,12955,12956,12957,12966,12971,12972,12973,12981,12984,12992,12995,13000,13001,13003,13022,13023,13024,13039,13047,13048,13057,13085,13093,13100,13104,13105,13106,13114,13116,13117,13123,13125,13128,13173,13174,13185,13187,13190,13193,13199,13213,13216,13221,13244,13264,13267,13272,13280,13290,13291,13292,13294,13306,13310,13319,13323,13326,13329,13331,13350,13351,13355,13364,13375,13393,13396,13411,13412,13426,13431,13434,13436,13437,13440,13443,13444,13445,13448,13472,13478,13487,13494,13502,13503,13504,13506,13508,13513,13515,13516,13522,13524,13525,13532,13549,13567,13568,13574,13587,13590,13604,13606,13607,13608,13610,13611,13616,13619,13629,13630,13634,13643,13656,13662,13667,13668,13671,13674,13675,13678,13693,13710,13713,13716,13722,13723,13727,13729,13731,13732,13739,13743,13746,13752,13757,13761,13770,13771,13778,13779,13786,13788,13791,13801,13805,13808,13822,13856,13859,13860,13863,13907,13908,13909,13913,13934,13961,13963,13972,13983,13992,13996,14014,14017,14024,14034,14046,14057,14067,14071,14082,14087,14096,14100,14105,14110,14112,14116,14117,14124,14126,14130,14133,14134,14135,14139,14141,14149,14161,14166,14173,14174,14178,14180,14181,14184,14188,14201,14205,14213,14214,14224,14225,14227,14229,14246,14257,14266,14268,14273,14286,14289,14306,14322,14335,14342,14343,14344,14346,14351,14353,14362,14374,14379,14380,14385,14392,14394,14401,14402,14404,14405,14407,14408,14420,14427,14446,14458,14466,14473,14489,14490,14493,14495,14498,14501,14508,14513,14514,14520,14522,14525,14527,14530,14537,14555,14561,14567,14578,14587,14599,14604,14610,14662,14663,14669,14670,14672,14677,14693,14698,14700,14702,14705,14713,14715,14721,14725,14732,14733,14735,14740,14750,14753,14768,14771,14782,14791,14792,14802,14811,14818,14821,14822,14831,14836,14842,14851,14852,14868,14893,14901,14902,14908,14922,14923,14926,14929,14935,14939,14949,14952,14958,14963,14966,14980,14981,14982,14993,14996,15008,15014,15015,15016,15027,15028,15040,15059,15060,15077,15079,15085,15087,15088,15098,15104,15117,15129,15136,15143,15163,15168,15178,15183,15184,15206,15211,15212,15214,15223,15227,15233,15237,15245,15266,15269,15274,15282,15297,15303,15313,15323,15345,15349,15359,15370,15374,15380,15398,15400,15401,15402,15428,15430,15443,15444,15467,15474,15483,15488,15521,15525,15526,15531,15540,15553,15561,15566,15583,15584,15586,15592,15619,15630,15661,15674,15701,15702,15705,15712,15713,15716,15718,15719,15727,15733,15738,15740,15746,15754,15765,15770,15775,15779,15786,15788,15789,15793,15810,15815,15816,15820,15823,15829,15848,15856,15877,15878,15892,15895,15908,15916,15919,15920,15926,15935,15941,15949,15950,15951,15970,15996,15997,15998,15999,16000,16001,16002,16008,16014,16016,16018,16025,16032,16048,16050,16053,16055,16059,16076,16082,16083,16088,16089,16109,16112,16131,16133,16134,16141,16146,16148,16151,16162,16175,16180,16182,16183,16196,16207,16220,16225,16237,16241,16246,16257,16264,16267,16285,16290,16292,16293,16298,16302,16304,16312,16315,16316,16318,16375,16415,16431,16433,16439,16445,16449,16455,16462,16464,16469,16470,16476,16480,16481,16482,16495,16505,16511,16513,16517,16520,16524,16525,16532,16535,16545,16549,16564,16580,16594,16612,16613,16621,16624,16625,16630,16637,16658,16692,16696,16712,16721,16728,16732,16733,16745,16749,16758,16761,16766,16779,16786,16788,16799,16823,16824,16831,16836,16841,16846,16848,16856,16857,16859,16872,16873,16874,16883,16886,16896,16920,16921,16923,16925,16926,16929,16939,16947,16952,16957,16958,16963,16978,16987,16993,16997,17000,17003,17007,17016,17024,17042,17057,17058,17097,17117,17120,17130,17137,17138,17148,17157,17172,17174,17177,17178,17179,17191,17202,17205,17219,17245,17250,17253,17258,17263,17265,17281,17294,17298,17300,17305,17315,17323,17325,17340,17342,17343,17346,17357,17364,17370,17373,17381,17382,17384,17385,17387,17389,17394,17395,17398,17402,17405,17412,17419,17422,17426,17430,17431,17432,17434,17437,17439,17447,17448,17455,17457,17461,17468,17470,17471,17491,17492,17493,17494,17498,17507,17523,17528,17534,17535,17539,17541,17577,17578,17579,17580,17583,17585,17590,17591,17592,17605,17607,17608,17619,17621,17642,17660,17666,17670,17678,17683,17687,17688,17691,17695,17704,17706,17708,17737,17739,17745,17748,17752,17765,17771,17773,17775,17780,17784,17786,17790,17793,17799,17804,17818,17824,17825,17836,17841,17843,17852,17853,17860,17868,17874,17877,17885,17895,17896,17900,17903,17911,17912,17918,17919,17931,17936,17937,17940,17941,17947,17953,17957,17959,17970,17973,17982,17984,17986,17992,17996,17998,18004,18005,18009,18020,18021,18024,18027,18031,18034,18035,18036,18038,18045,18046,18050,18055,18063,18071,18076,18078,18084,18092,18094,18105,18109,18111,18113,18117,18119,18120,18122,18126,18147,18151,18163,18173,18183,18184,18186,18193,18197,18199,18208,18211,18228,18231,18234,18238,18244,18248,18250,18254,18258,18259,18274,18282,18294,18298,18306,18307,18309,18310,18313,18319,18332,18340,18348,18349,18350,18358,18360,18366,18372,18378,18384,18396,18397,18399,18402,18403,18407,18415,18419,18422,18435,18437,18441,18446,18447,18453,18455,18460,18475,18476,18477,18479,18487,18490,18491,18494,18505,18509,18510,18511,18516,18518,18535,18539,18540,18541,18544,18551,18557,18567,18569,18582,18584,18592,18593,18595,18596,18597,18598,18611,18612,18613,18614,18615,18616,18617,18618,18619,18620,18621,18622,18630,18633,18634,18635,18637,18641,18642,18648,18651,18655,18660,18663,18664,18668,18673,18677,18679,18680,18685,18686,18690,18691,18694,18695,18698,18707,18710,18713,18716,18719,18722,18724,18732,18733,18737,18738,18740,18749,18751,18755,18756,18758,18759,18764,18766,18773,18774,18776,18779,18781,18793,18795,18799,18801,18802,18805,18813,18814,18815,18819,18821,18825,18827,18830,18864,18867,18869,18877,18878,18881,18882,18883,18885,18886,18887,18888,18889,18906,18911,18913,18917,18928,18933,18942,18945,18951,18954,18959,18960,18963,18970,18971,18980,18985,18990,19001,19002,19003,19006,19011,19013,19016,19020,19021,19022,19025,19026,19027,19028,19031,19033,19034,19039,19040,19041,19042,19043,19044,19053,19055,19056,19061,19064,19073,19080,19090,19102,19109,19111,19114,19118,19120,19126,19131,19134,19141,19144,19145,19147,19151,19153,19154,19156,19163,19169,19172,19177,19178,19179,19182,19185,19186,19187,19194,19196,19197,19203,19204,19207,19208,19210,19211,19214,19215,19218,19223,19227,19230,19233,19237,19241,19245,19251,19253,19261,19262,19263,19272,19280,19283,19286,19291,19309,19316,19322,19323,19327,19330,19332,19334,19336,19341,19348,19349,19350,19351,19352,19353,19355,19361,19365,19366,19369,19373,19379,19383,19385,19392,19395,19398,19402,19406,19407,19408,19418,19421,19425,19430,19432,19435,19439,19440,19441,19442,19444,19452,19457,19473,19474,19475,19476,19478,19479,19484,19487,19491,19492,19493,19494,19498,19499,19500,19506,19507,19514,19523,19525,19526,19527,19532,19534,19539,19549,19550,19551,19561,19562,19564,19566,19567,19569,19571,19572,19573,19575,19581,19582,19589,19592,19595,19597,19606,19612,19616,19619,19624,19628,19629,19630,19634,19636,19637,19639,19649,19652,19655,19668,19674,19675,19677,19684,19688,19694,19699,19701,19702,19704,19707,19711,19723,19725,19727,19728,19729,19732,19735,19740,19752,19755,19761,19762,19768,19771,19774,19780,19783,19785,19787,19793,19796,19799,19801,19802,19804,19809,19813,19814,19815,19822,19823,19824,19827,19834,19838,19843,19844,19845,19846,19848,19849,19851,19853,19859,19860,19863,19869,19874,19879,19883,19885,19886,19891,19895,19903,19904,19905,19906,19907,19913,19918,19937,19940,19942,19948,19950,19953,19958,19962,19966,19972,19973,19975,19976,19977,19982,19983,19986,19991,19992,20002,20007,20009,20013,20015,20017,20022,20027,20028,20029,20032,20033,20041,20050,20055,20061,20064,20065,20068,20070,20072,20075,20076,20082,20083,20089,20090,20091,20093,20098,20107,20112,20113,20114,20122,20124,20125,20132,20134,20141,20143,20146,20148,20156,20159,20163,20165,20169,20172,20174,20175,20179,20182,20192,20194,20207,20210,20212,20214,20217,20218,20219,20228,20229,20241,20243,20246,20249,20256,20257,20260,20262,20265,20266,20274,20276,20277,20279,20283,20284,20291,20292,20301,20303,20305,20307,20308,20310,20312,20313,20314,20317,20323,20330,20333,20335,20340,20341,20349,20354,20371,20372,20387,20392,20398,20403,20404,20405,20409,20420,20426,20427,20428,20429,20433,20438,20439,20450,20451,20452,20456,20468,20469,20472,20474,20475,20483,20485,20486,20489,20490,20491,20498,20511,20514,20518,20519,20520,20521,20522,20537,20539,20540,20543,20549,20572,20577,20585,20588,20592,20603,20604,20606,20609,20610,20615,20619,20621,20624,20625,20628,20635,20636,20637,20639,20640,20649,20651,20652,20662,20664,20670,20674,20677,20678,20679,20683,20696,20699,20710,20728,20729,20730,20731,20732,20735,20736,20737,20738,20739,20740,20742,20746,20756,20765,20767,20771,20778,20779,20789,20790,20795,20799,20803,20808,20816,20819,20823,20825,20830,20832,20834,20838,20847,20857,20859,20866,20870,20872,20873,20875,20876,20877,20879,20880,20884,20886,20888,20889,20891,20895,20896,20901,20904,20905,20912,20933,20942,20947,20948,20949,20963,21002,21015,21018,21025,21028,21029,21034,21035,21047,21049,21069,21092,21096,21107,21110,21115,21116,21117,21118,21120,21126,21127,21128,21133,21135,21137,21139,21150,21154,21155,21160,21172,21173,21175,21180,21181,21183,21187,21193,21196,21201,21210,21213,21217,21226,21235,21242,21246,21254,21261,21263,21267,21269,21275,21278,21282,21286,21287,21288,21289,21291,21292,21294,21298,21299,21301,21308,21310,21318,21321,21323,21325,21340,21355,21362,21363,21366,21370,21379,21383,21384,21385,21388,21391,21392,21406,21409,21410,21418,21420,21433,21437,21440,21445,21450,21451,21462,21465,21467,21475,21479,21482,21484,21487,21489,21490,21496,21498,21500,21503,21504,21511,21514,21516,21517,21518,21521,21523,21525,21526,21527,21528,21541,21543,21545,21546,21552,21557,21558,21561,21566,21574,21578,21582,21583,21586,21587,21591,21592,21593,21595,21602,21609,21614,21621,21629,21632,21637,21639,21643,21645,21649,21650,21657,21671,21672,21673,21678,21680,21686,21689,21691,21697,21698,21699,21703,21704,21705,21706,21707,21708,21709,21710,21713,21714,21718,21721,21723,21724,21725,21726,21727,21728,21729,21730,21731,21732,21737,21739,21740,21742,21743,21745,21752,21755,21756,21965,21968,21970,21983,21989,21993,22001,22003,22004,22032,22038,22040,22043,22044,22058,22077,22080,22082,22083,22087,22088,22092,22096,22107,22112,22115,22120,22122,22139,22145,22152,22165,22169,22173,22175,22182,22183,22194,22200,22204,22209,22214,22219,22220,22223,22231,22234,22240,22241,22242,22246,22250,22251,22261,22265,22268,22269,22270,22280,22281,22296,22300,22304,22306,22307,22313,22317,22327,22331,22349,22354,22355,22359,22361,22365,22366,22369,22372,22382,22388,22389,22390,22393,22396,22397,22399,22407,22421,22442,22446,22450,22452,22454,22464,22475,22479,22481,22493,22497,22498,22499,22502,22503,22510,22511,22514,22518,22519,22520,22521,22534,22536,22539,22541,22542,22543,22546,22549,22550,22552,22554,22563,22564,22565,22566,22567,22568,22571,22573,22574,22576,22579,22581,22582,22583,22586,22591,22598,22603,22604,22607,22610,22611,22614,22621,22622,22627,22630,22635,22640,22643,22645,22646,22647,22652,22668,22669,22676,22677,22679,22680,22681,22684,22689,22697,22698,22707,22708,22712,22716,22719,22720,22723,22728,22739,22743,22744,22756,22757,22759,22761,22764,22765,22768,22771,22772,22781,22785,22789,22790,22793,22794,22797,22810,22816,22826,22830,22831,22838,22850,22852,22860,22870,22871,22873,22882,22895,22903,22905,22912,22914,22916,22923,22925,22934,22939,22948,22952,22957,22959,22973,22974,22976,22980,22983,22985,22999,23004,23006,23007,23009,23010,23017,23026,23034,23041,23063,23064,23072,23073,23076,23078,23084,23085,23094,23098,23099,23100,23102,23108,23109,23110,23115,23116,23127,23134]]],["At",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15578]]],["From",[6,6,[[4,1,1,0,1,[[154,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]],[11,1,1,2,3,[[322,1,1,2,3]]],[15,1,1,3,4,[[425,1,1,3,4]]],[23,1,1,4,5,[[769,1,1,4,5]]],[27,1,1,5,6,[[875,1,1,5,6]]]],[4974,6157,9826,12692,19537,22290]]],["Of",[8,8,[[0,1,1,0,1,[[6,1,1,0,1]]],[10,1,1,1,2,[[301,1,1,1,2]]],[12,4,4,2,6,[[348,1,1,2,3],[349,2,2,3,5],[364,1,1,5,6]]],[14,1,1,6,7,[[412,1,1,6,7]]],[15,1,1,7,8,[[423,1,1,7,8]]]],[167,9110,10694,10745,10746,11112,12276,12598]]],["Since",[3,3,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[23,1,1,2,3,[[751,1,1,2,3]]]],[9001,11287,19144]]],["above",[4,4,[[2,1,1,0,1,[[98,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]],[20,1,1,3,4,[[661,1,1,3,4]]]],[2963,7269,14166,17378]]],["after",[2,2,[[12,1,1,0,1,[[345,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[10583,22059]]],["against",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14863]]],["alone",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13166]]],["among",[8,8,[[2,1,1,0,1,[[100,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]],[15,1,1,2,3,[[417,1,1,2,3]]],[17,1,1,3,4,[[468,1,1,3,4]]],[18,1,1,4,5,[[583,1,1,4,5]]],[25,3,3,5,8,[[823,1,1,5,6],[834,1,1,6,7],[837,1,1,7,8]]]],[3010,10698,12399,13673,15698,21006,21286,21383]]],["at",[3,3,[[18,1,1,0,1,[[581,1,1,0,1]]],[21,1,1,1,2,[[672,1,1,1,2]]],[33,1,1,2,3,[[900,1,1,2,3]]]],[15578,17563,22689]]],["beside",[2,2,[[6,1,1,0,1,[[221,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]]],[6863,11588]]],["both",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8912]]],["by",[9,9,[[0,2,2,0,2,[[15,1,1,0,1],[29,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]],[21,1,1,4,5,[[675,1,1,4,5]]],[26,1,1,5,6,[[857,1,1,5,6]]],[27,2,2,6,8,[[868,1,1,6,7],[869,1,1,7,8]]],[33,1,1,8,9,[[900,1,1,8,9]]]],[383,833,8611,14126,17602,21972,22182,22198,22690]]],["for",[32,30,[[1,1,1,0,1,[[67,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[4,5,5,2,7,[[153,1,1,2,3],[154,1,1,3,4],[166,1,1,4,5],[169,1,1,5,6],[184,1,1,6,7]]],[6,1,1,7,8,[[228,1,1,7,8]]],[7,1,1,8,9,[[232,1,1,8,9]]],[8,2,2,9,11,[[242,1,1,9,10],[244,1,1,10,11]]],[9,4,3,11,14,[[269,1,1,11,12],[276,2,1,12,13],[288,1,1,13,14]]],[10,1,1,14,15,[[309,1,1,14,15]]],[11,2,2,15,17,[[315,1,1,15,16],[318,1,1,16,17]]],[12,2,1,17,18,[[356,2,1,17,18]]],[16,1,1,18,19,[[430,1,1,18,19]]],[17,1,1,19,20,[[477,1,1,19,20]]],[18,5,5,20,25,[[495,1,1,20,21],[512,1,1,21,22],[515,1,1,22,23],[608,1,1,23,24],[616,1,1,24,25]]],[19,1,1,25,26,[[657,1,1,25,26]]],[22,1,1,26,27,[[685,1,1,26,27]]],[23,2,2,27,29,[[776,2,2,27,29]]],[28,1,1,29,30,[[878,1,1,29,30]]]],[2017,4038,4909,4974,5314,5372,5805,7019,7140,7360,7396,8120,8251,8620,9394,9602,9675,10919,12788,13925,14135,14420,14494,16149,16245,17269,17795,19748,19758,22362]]],["from",[418,398,[[0,18,18,0,18,[[1,2,2,0,2],[3,2,2,2,4],[6,1,1,4,5],[7,1,1,5,6],[10,1,1,6,7],[12,1,1,7,8],[21,1,1,8,9],[22,1,1,9,10],[24,1,1,10,11],[25,1,1,11,12],[26,1,1,12,13],[29,1,1,13,14],[30,1,1,14,15],[37,1,1,15,16],[38,1,1,16,17],[46,1,1,17,18]]],[1,18,17,18,35,[[57,3,3,18,21],[58,1,1,21,22],[59,1,1,22,23],[61,2,1,23,24],[65,1,1,24,25],[67,2,2,25,27],[68,1,1,27,28],[69,1,1,28,29],[74,1,1,29,30],[75,1,1,30,31],[81,1,1,31,32],[82,1,1,32,33],[83,1,1,33,34],[85,1,1,34,35]]],[2,15,15,35,50,[[91,1,1,35,36],[93,3,3,36,39],[94,4,4,39,43],[102,1,1,43,44],[103,1,1,44,45],[104,2,2,45,47],[109,2,2,47,49],[111,1,1,49,50]]],[3,9,9,50,59,[[127,1,1,50,51],[131,1,1,51,52],[132,1,1,52,53],[134,2,2,53,55],[136,1,1,55,56],[139,1,1,56,57],[147,1,1,57,58],[150,1,1,58,59]]],[4,27,26,59,85,[[155,1,1,59,60],[156,1,1,60,61],[159,1,1,61,62],[161,2,2,62,64],[162,2,2,64,66],[163,2,1,66,67],[164,2,2,67,69],[165,1,1,69,70],[166,1,1,70,71],[169,2,2,71,73],[171,1,1,73,74],[172,1,1,74,75],[174,3,3,75,78],[178,1,1,78,79],[180,1,1,79,80],[182,1,1,80,81],[183,2,2,81,83],[184,1,1,83,84],[185,1,1,84,85]]],[5,23,20,85,105,[[187,1,1,85,86],[192,1,1,86,87],[193,2,2,87,89],[194,4,4,89,93],[195,1,1,93,94],[196,3,3,94,97],[197,5,2,97,99],[199,1,1,99,100],[201,1,1,100,101],[204,2,2,101,103],[208,1,1,103,104],[209,1,1,104,105]]],[6,18,16,105,121,[[212,1,1,105,106],[213,2,2,106,108],[215,1,1,108,109],[218,1,1,109,110],[219,1,1,110,111],[220,3,1,111,112],[221,1,1,112,113],[222,1,1,113,114],[223,2,2,114,116],[225,1,1,116,117],[226,1,1,117,118],[229,1,1,118,119],[230,2,2,119,121]]],[8,6,5,121,126,[[238,3,2,121,123],[241,1,1,123,124],[248,1,1,124,125],[255,1,1,125,126]]],[9,15,15,126,141,[[267,1,1,126,127],[270,1,1,127,128],[271,1,1,128,129],[273,2,2,129,131],[274,1,1,131,132],[278,1,1,132,133],[279,1,1,133,134],[280,2,2,134,136],[284,1,1,136,137],[285,1,1,137,138],[286,1,1,138,139],[288,2,2,139,141]]],[10,11,11,141,152,[[294,2,2,141,143],[295,1,1,143,144],[300,1,1,144,145],[303,4,4,145,149],[306,1,1,149,150],[310,1,1,150,151],[312,1,1,151,152]]],[11,13,11,152,163,[[313,7,5,152,157],[314,1,1,157,158],[316,1,1,158,159],[327,1,1,159,160],[329,1,1,160,161],[330,1,1,161,162],[332,1,1,162,163]]],[12,9,8,163,171,[[341,1,1,163,164],[342,1,1,164,165],[348,1,1,165,166],[350,1,1,166,167],[353,1,1,167,168],[354,2,1,168,169],[355,1,1,169,170],[358,1,1,170,171]]],[13,23,23,171,194,[[371,1,1,171,172],[372,7,7,172,179],[373,1,1,179,180],[375,1,1,180,181],[378,1,1,181,182],[379,1,1,182,183],[384,1,1,183,184],[386,1,1,184,185],[390,1,1,185,186],[394,2,2,186,188],[395,1,1,188,189],[396,2,2,189,191],[400,1,1,191,192],[401,1,1,192,193],[402,1,1,193,194]]],[14,4,4,194,198,[[404,1,1,194,195],[405,1,1,195,196],[412,2,2,196,198]]],[15,7,7,198,205,[[415,1,1,198,199],[416,1,1,199,200],[418,1,1,200,201],[419,1,1,201,202],[420,2,2,202,204],[424,1,1,204,205]]],[17,17,17,205,222,[[436,1,1,205,206],[441,1,1,206,207],[442,1,1,207,208],[449,1,1,208,209],[453,1,1,209,210],[454,1,1,210,211],[456,2,2,211,213],[457,2,2,213,215],[461,1,1,215,216],[462,1,1,216,217],[465,2,2,217,219],[468,2,2,219,221],[477,1,1,221,222]]],[18,48,48,222,270,[[479,1,1,222,223],[483,1,1,223,224],[489,1,1,224,225],[490,1,1,225,226],[495,2,2,226,228],[499,2,2,228,230],[504,1,1,230,231],[507,1,1,231,232],[508,1,1,232,233],[512,1,1,233,234],[514,1,1,234,235],[515,2,2,235,237],[517,1,1,237,238],[521,2,2,238,240],[528,1,1,240,241],[532,2,2,241,243],[539,2,2,243,245],[546,1,1,245,246],[548,1,1,246,247],[550,1,1,247,248],[553,1,1,248,249],[555,1,1,249,250],[557,1,1,250,251],[565,3,3,251,254],[578,1,1,254,255],[579,1,1,255,256],[580,1,1,256,257],[583,1,1,257,258],[586,1,1,258,259],[593,1,1,259,260],[596,3,3,260,263],[609,1,1,263,264],[616,3,3,264,267],[620,1,1,267,268],[625,2,2,268,270]]],[19,9,8,270,278,[[631,2,1,270,271],[646,1,1,271,272],[649,3,3,272,275],[650,1,1,275,276],[654,1,1,276,277],[657,1,1,277,278]]],[20,4,4,278,282,[[660,1,1,278,279],[661,1,1,279,280],[665,2,2,280,282]]],[21,6,6,282,288,[[673,1,1,282,283],[674,2,2,283,285],[676,2,2,285,287],[678,1,1,287,288]]],[22,20,19,288,307,[[679,1,1,288,289],[680,1,1,289,290],[683,1,1,290,291],[692,1,1,291,292],[696,2,2,292,294],[700,1,1,294,295],[707,1,1,295,296],[708,1,1,296,297],[716,1,1,297,298],[717,1,1,298,299],[724,2,1,299,300],[731,1,1,300,301],[732,1,1,301,302],[733,1,1,302,303],[737,3,3,303,306],[742,1,1,306,307]]],[23,27,23,307,330,[[746,1,1,307,308],[748,2,2,308,310],[749,1,1,310,311],[750,1,1,311,312],[757,1,1,312,313],[761,4,2,313,315],[762,1,1,315,316],[765,3,1,316,317],[769,1,1,317,318],[772,1,1,318,319],[776,1,1,319,320],[780,1,1,320,321],[782,2,2,321,323],[784,2,2,323,325],[785,3,3,325,328],[786,1,1,328,329],[795,1,1,329,330]]],[24,2,2,330,332,[[797,2,2,330,332]]],[25,39,38,332,370,[[804,1,1,332,333],[808,1,1,333,334],[811,1,1,334,335],[812,2,2,335,337],[815,4,4,337,341],[817,2,2,341,343],[821,3,3,343,346],[822,2,2,346,348],[823,1,1,348,349],[824,2,2,349,351],[825,2,2,351,353],[826,2,2,353,355],[827,1,1,355,356],[829,1,1,356,357],[830,1,1,357,358],[834,2,2,358,360],[835,2,1,360,361],[836,1,1,361,362],[840,5,5,362,367],[844,1,1,367,368],[848,2,2,368,370]]],[26,3,3,370,373,[[857,1,1,370,371],[858,1,1,371,372],[859,1,1,372,373]]],[27,6,6,373,379,[[866,2,2,373,375],[868,1,1,375,376],[870,1,1,376,377],[871,1,1,377,378],[875,1,1,378,379]]],[28,1,1,379,380,[[876,1,1,379,380]]],[29,4,4,380,384,[[881,2,2,380,382],[882,1,1,382,383],[883,1,1,383,384]]],[31,2,2,384,386,[[891,1,1,384,385],[892,1,1,385,386]]],[32,6,5,386,391,[[893,1,1,386,387],[895,1,1,387,388],[897,1,1,388,389],[898,1,1,389,390],[899,2,1,390,391]]],[33,1,1,391,392,[[902,1,1,391,392]]],[35,2,2,392,394,[[906,2,2,392,394]]],[36,4,3,394,397,[[910,4,3,394,397]]],[37,1,1,397,398,[[924,1,1,397,398]]]],[36,52,89,90,182,185,272,332,559,577,687,719,772,832,886,1136,1158,1438,1718,1719,1721,1757,1782,1821,1951,2012,2013,2040,2073,2210,2263,2453,2480,2525,2599,2771,2803,2814,2826,2832,2833,2834,2836,3110,3118,3184,3200,3342,3344,3373,4055,4176,4209,4266,4287,4339,4423,4706,4823,4991,5006,5126,5164,5172,5191,5193,5232,5261,5272,5279,5314,5375,5384,5411,5442,5471,5474,5478,5581,5635,5719,5745,5757,5778,5832,5858,5967,5985,5995,6006,6008,6018,6031,6059,6071,6073,6075,6124,6128,6160,6204,6305,6307,6443,6464,6546,6587,6595,6643,6732,6789,6822,6851,6878,6889,6891,6942,6966,7040,7085,7086,7293,7294,7334,7500,7732,8026,8131,8141,8188,8195,8213,8303,8330,8370,8374,8491,8535,8556,8616,8625,8865,8877,8887,9082,9189,9198,9205,9210,9300,9441,9523,9537,9539,9543,9545,9547,9552,9630,9953,10005,10041,10116,10395,10437,10681,10765,10855,10870,10894,10960,11277,11303,11305,11307,11312,11315,11317,11321,11338,11390,11449,11472,11573,11619,11702,11772,11776,11801,11835,11836,11936,11988,12013,12089,12104,12263,12266,12347,12375,12410,12484,12496,12511,12652,12885,12991,13027,13192,13293,13310,13369,13371,13406,13407,13471,13486,13562,13567,13668,13680,13924,13948,13993,14073,14075,14121,14140,14215,14228,14294,14322,14342,14432,14477,14499,14511,14536,14581,14589,14702,14743,14744,14828,14832,14940,14988,15047,15089,15155,15216,15316,15322,15326,15517,15523,15561,15699,15772,15856,15917,15927,16013,16162,16251,16254,16258,16300,16372,16378,16514,16932,17020,17021,17030,17048,17177,17259,17343,17373,17452,17455,17575,17584,17597,17619,17620,17645,17669,17707,17762,17931,17999,18004,18056,18206,18223,18402,18419,18589,18714,18731,18750,18802,18809,18811,18892,19000,19035,19055,19083,19097,19273,19362,19383,19404,19447,19544,19621,19762,19871,19909,19920,19942,19945,19963,19971,19973,19979,20237,20316,20326,20519,20599,20652,20672,20673,20744,20748,20750,20752,20796,20804,20929,20933,20936,20947,20948,20981,21024,21034,21072,21081,21090,21096,21104,21182,21196,21287,21289,21326,21351,21470,21471,21472,21475,21477,21581,21694,21696,21966,22013,22027,22155,22158,22191,22220,22230,22286,22303,22400,22406,22417,22434,22566,22571,22595,22612,22639,22653,22676,22719,22791,22797,22870,22873,22874,23070]]],["how",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15070]]],["in",[8,8,[[0,1,1,0,1,[[20,1,1,0,1]]],[2,4,4,1,5,[[94,2,2,1,3],[103,2,2,3,5]]],[12,1,1,5,6,[[363,1,1,5,6]]],[18,1,1,6,7,[[595,1,1,6,7]]],[23,1,1,7,8,[[781,1,1,7,8]]]],[528,2845,2846,3114,3127,11104,15874,19895]]],["mine",[2,2,[[10,1,1,0,1,[[292,1,1,0,1]]],[23,1,1,1,2,[[788,1,1,1,2]]]],[8792,20038]]],["most",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8672]]],["neither",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7997]]],["of",[629,556,[[0,48,45,0,45,[[1,4,4,0,4],[2,7,6,4,10],[4,1,1,10,11],[5,1,1,11,12],[6,3,2,12,14],[7,3,3,14,17],[8,2,2,17,19],[9,1,1,19,20],[16,3,2,20,22],[18,3,3,22,25],[20,1,1,25,26],[21,2,2,26,28],[22,2,2,28,30],[28,1,1,30,31],[29,1,1,31,32],[31,1,1,32,33],[32,1,1,33,34],[33,1,1,34,35],[34,1,1,35,36],[36,1,1,36,37],[39,2,2,37,39],[40,4,4,39,43],[41,1,1,43,44],[49,1,1,44,45]]],[1,62,50,45,95,[[50,1,1,45,46],[51,4,3,46,49],[52,1,1,49,50],[53,1,1,50,51],[56,2,2,51,53],[57,3,1,53,54],[59,1,1,54,55],[61,7,5,55,60],[65,5,5,60,65],[66,1,1,65,66],[68,3,3,66,69],[72,1,1,69,70],[74,8,5,70,75],[76,1,1,75,76],[77,1,1,76,77],[78,3,3,77,80],[79,4,3,80,83],[81,3,3,83,86],[86,9,6,86,92],[87,1,1,92,93],[88,2,2,93,95]]],[2,78,65,95,160,[[90,11,4,95,99],[91,2,2,99,101],[92,2,2,101,103],[93,5,5,103,108],[94,3,3,108,111],[95,2,2,111,113],[96,6,6,113,119],[97,2,2,119,121],[98,3,2,121,123],[100,5,5,123,128],[102,4,1,128,129],[103,8,7,129,136],[105,2,2,136,138],[106,4,4,138,142],[109,1,1,142,143],[110,2,2,143,145],[111,5,5,145,150],[114,5,5,150,155],[115,4,3,155,158],[116,2,2,158,160]]],[3,45,31,160,191,[[121,3,3,160,163],[122,2,1,163,164],[125,1,1,164,165],[126,1,1,165,166],[127,2,2,166,168],[129,3,2,168,170],[130,2,2,170,172],[131,2,1,172,173],[132,1,1,173,174],[134,6,4,174,178],[136,2,2,178,180],[137,1,1,180,181],[138,2,2,181,183],[142,1,1,183,184],[147,15,6,184,190],[149,1,1,190,191]]],[4,22,22,191,213,[[153,2,2,191,193],[154,1,1,193,194],[156,2,2,194,196],[159,1,1,196,197],[161,3,3,197,200],[163,1,1,200,201],[164,1,1,201,202],[165,2,2,202,204],[168,1,1,204,205],[169,1,1,205,206],[170,1,1,206,207],[172,2,2,207,209],[177,1,1,209,210],[178,1,1,210,211],[180,2,2,211,213]]],[5,19,19,213,232,[[188,1,1,213,214],[190,5,5,214,219],[192,1,1,219,220],[193,4,4,220,224],[194,1,1,224,225],[195,1,1,225,226],[196,4,4,226,230],[207,1,1,230,231],[209,1,1,231,232]]],[6,25,23,232,255,[[211,1,1,232,233],[212,2,2,233,235],[215,2,1,235,236],[216,2,2,236,238],[217,4,3,238,241],[218,1,1,241,242],[219,2,2,242,244],[224,1,1,244,245],[229,1,1,245,246],[230,6,6,246,252],[231,3,3,252,255]]],[7,5,4,255,259,[[232,1,1,255,256],[233,2,2,256,258],[235,2,1,258,259]]],[8,17,16,259,275,[[236,1,1,259,260],[237,2,2,260,262],[239,2,1,262,263],[242,1,1,263,264],[246,1,1,264,265],[249,1,1,265,266],[252,2,2,266,268],[255,1,1,268,269],[257,1,1,269,270],[259,2,2,270,272],[262,1,1,272,273],[263,2,2,273,275]]],[9,14,14,275,289,[[267,2,2,275,277],[274,1,1,277,278],[277,1,1,278,279],[279,1,1,279,280],[281,1,1,280,281],[285,2,2,281,283],[286,3,3,283,286],[287,1,1,286,287],[290,2,2,287,289]]],[10,17,17,289,306,[[291,1,1,289,290],[292,1,1,290,291],[295,1,1,291,292],[296,1,1,292,293],[297,2,2,293,295],[298,1,1,295,296],[299,1,1,296,297],[301,1,1,297,298],[305,1,1,298,299],[306,1,1,299,300],[307,2,2,300,302],[309,1,1,302,303],[310,1,1,303,304],[312,2,2,304,306]]],[11,22,18,306,324,[[314,3,2,306,308],[316,1,1,308,309],[318,2,1,309,310],[319,3,2,310,312],[320,1,1,312,313],[321,2,1,313,314],[322,2,2,314,316],[323,1,1,316,317],[324,1,1,317,318],[326,1,1,318,319],[333,2,2,319,321],[335,2,2,321,323],[337,1,1,323,324]]],[12,51,43,324,367,[[341,3,2,324,326],[342,2,2,326,328],[343,1,1,328,329],[345,1,1,329,330],[346,15,11,330,341],[347,1,1,341,342],[348,2,2,342,344],[349,8,8,344,352],[350,1,1,352,353],[352,3,2,353,355],[353,1,1,355,356],[355,1,1,356,357],[356,2,1,357,358],[358,1,1,358,359],[361,3,2,359,361],[363,3,3,361,364],[364,2,2,364,366],[366,1,1,366,367]]],[13,43,37,367,404,[[368,3,3,367,370],[371,1,1,370,371],[372,1,1,371,372],[374,3,3,372,375],[379,1,1,375,376],[380,1,1,376,377],[381,2,2,377,379],[382,1,1,379,380],[383,2,2,380,382],[384,2,2,382,384],[385,2,2,384,386],[386,4,3,386,389],[387,1,1,389,390],[389,1,1,390,391],[391,1,1,391,392],[392,2,2,392,394],[394,1,1,394,395],[395,8,4,395,399],[397,1,1,399,400],[400,4,3,400,403],[401,1,1,403,404]]],[14,9,9,404,413,[[404,1,1,404,405],[409,1,1,405,406],[410,3,3,406,409],[412,4,4,409,413]]],[15,16,16,413,429,[[413,2,2,413,415],[417,2,2,415,417],[419,2,2,417,419],[420,1,1,419,420],[422,1,1,420,421],[423,3,3,421,424],[424,1,1,424,425],[425,4,4,425,429]]],[16,1,1,429,430,[[432,1,1,429,430]]],[17,16,16,430,446,[[441,1,1,430,431],[444,1,1,431,432],[447,1,1,432,433],[450,2,2,433,435],[455,2,2,435,437],[458,1,1,437,438],[463,2,2,438,440],[466,1,1,440,441],[467,1,1,441,442],[472,1,1,442,443],[473,2,2,443,445],[475,1,1,445,446]]],[18,13,13,446,459,[[479,1,1,446,447],[487,1,1,447,448],[495,1,1,448,449],[498,1,1,449,450],[510,1,1,450,451],[522,1,1,451,452],[545,1,1,452,453],[555,1,1,453,454],[565,1,1,454,455],[581,2,2,455,457],[583,1,1,457,458],[604,1,1,458,459]]],[19,4,4,459,463,[[629,1,1,459,460],[631,1,1,460,461],[653,1,1,461,462],[656,1,1,462,463]]],[20,1,1,463,464,[[661,1,1,463,464]]],[21,1,1,464,465,[[673,1,1,464,465]]],[22,12,11,465,476,[[684,1,1,465,466],[691,1,1,466,467],[694,2,2,467,469],[698,1,1,469,470],[706,1,1,470,471],[708,3,2,471,473],[727,1,1,473,474],[736,1,1,474,475],[744,1,1,475,476]]],[23,22,22,476,498,[[745,1,1,476,477],[752,1,1,477,478],[754,1,1,478,479],[760,1,1,479,480],[764,1,1,480,481],[766,1,1,481,482],[768,1,1,482,483],[772,1,1,483,484],[773,1,1,484,485],[774,3,3,485,488],[782,2,2,488,490],[783,2,2,490,492],[786,1,1,492,493],[788,1,1,493,494],[792,1,1,494,495],[795,2,2,495,497],[796,1,1,497,498]]],[25,35,33,498,531,[[802,2,2,498,500],[803,1,1,500,501],[806,1,1,501,502],[808,1,1,502,503],[812,1,1,503,504],[813,1,1,504,505],[814,1,1,505,506],[816,1,1,506,507],[817,1,1,507,508],[821,2,2,508,510],[823,1,1,510,511],[824,1,1,511,512],[825,2,2,512,514],[826,1,1,514,515],[830,2,2,515,517],[833,1,1,517,518],[835,1,1,518,519],[840,3,2,519,521],[844,2,2,521,523],[845,1,1,523,524],[846,6,5,524,529],[848,1,1,529,530],[849,1,1,530,531]]],[26,8,6,531,537,[[850,2,2,531,533],[857,4,2,533,535],[860,2,2,535,537]]],[27,2,2,537,539,[[862,1,1,537,538],[863,1,1,538,539]]],[28,1,1,539,540,[[878,1,1,539,540]]],[29,1,1,540,541,[[884,1,1,540,541]]],[30,1,1,541,542,[[888,1,1,541,542]]],[31,1,1,542,543,[[892,1,1,542,543]]],[32,5,5,543,548,[[893,1,1,543,544],[897,1,1,544,545],[898,1,1,545,546],[899,2,2,546,548]]],[33,1,1,548,549,[[900,1,1,548,549]]],[34,1,1,549,550,[[903,1,1,549,550]]],[35,1,1,550,551,[[908,1,1,550,551]]],[37,8,4,551,555,[[918,1,1,551,552],[920,4,1,552,553],[923,2,1,553,554],[924,1,1,554,555]]],[38,1,1,555,556,[[926,1,1,555,556]]]],[37,39,47,49,58,66,67,72,74,77,134,157,161,167,193,199,202,223,226,245,403,413,469,471,481,530,558,562,577,584,797,846,941,975,987,1022,1111,1186,1189,1197,1198,1209,1213,1268,1530,1542,1561,1564,1577,1587,1610,1703,1706,1723,1782,1823,1825,1826,1849,1862,1963,1966,1967,1974,1979,1989,2029,2043,2047,2160,2214,2226,2228,2230,2231,2274,2301,2357,2358,2370,2384,2415,2418,2439,2446,2466,2612,2621,2623,2625,2626,2629,2635,2665,2669,2747,2748,2755,2759,2765,2772,2779,2784,2801,2802,2812,2813,2820,2842,2845,2848,2855,2864,2882,2893,2894,2895,2897,2904,2941,2947,2963,2972,3019,3029,3030,3034,3036,3108,3127,3137,3138,3139,3140,3141,3149,3215,3220,3243,3245,3247,3248,3320,3357,3367,3375,3376,3387,3391,3399,3481,3491,3502,3513,3514,3530,3532,3567,3579,3599,3794,3809,3818,3842,3977,4022,4041,4049,4098,4108,4114,4146,4156,4209,4283,4284,4286,4289,4319,4321,4341,4381,4398,4554,4692,4694,4699,4701,4711,4713,4815,4915,4921,4942,5040,5046,5129,5169,5173,5178,5236,5243,5277,5289,5346,5374,5406,5428,5446,5552,5579,5621,5666,5870,5912,5926,5927,5929,5930,5967,5977,5980,5981,5987,6024,6060,6072,6084,6086,6087,6385,6470,6533,6562,6566,6637,6675,6692,6697,6699,6717,6743,6769,6797,6928,7040,7068,7075,7079,7092,7094,7099,7103,7123,7125,7134,7163,7165,7202,7213,7255,7260,7313,7363,7450,7519,7654,7658,7736,7795,7847,7851,7931,7951,7955,8024,8026,8213,8276,8347,8413,8520,8553,8566,8567,8570,8590,8704,8707,8756,8790,8884,8904,8968,8969,8995,9071,9134,9261,9285,9323,9340,9389,9427,9514,9526,9574,9575,9625,9701,9719,9720,9756,9771,9807,9817,9834,9863,9898,10127,10138,10181,10201,10241,10425,10427,10430,10446,10524,10584,10618,10620,10621,10622,10625,10629,10643,10644,10645,10646,10647,10662,10688,10695,10727,10728,10736,10739,10749,10750,10755,10757,10762,10808,10816,10824,10894,10913,10955,11018,11021,11078,11087,11104,11119,11123,11178,11225,11227,11229,11279,11291,11353,11354,11355,11455,11483,11498,11501,11519,11534,11540,11554,11575,11579,11584,11591,11601,11606,11639,11660,11717,11735,11750,11769,11796,11803,11804,11805,11857,11945,11946,11966,11990,12097,12180,12221,12222,12223,12255,12275,12276,12296,12298,12299,12394,12397,12483,12493,12510,12580,12589,12603,12624,12652,12677,12679,12684,12696,12816,12994,13054,13150,13225,13233,13330,13341,13434,13508,13509,13595,13640,13778,13794,13806,13870,13953,14059,14163,14195,14374,14605,14931,15115,15317,15585,15606,15662,16126,16455,16513,17153,17244,17379,17577,17775,17915,17973,17979,18034,18171,18218,18228,18653,18798,18943,18947,19156,19206,19345,19425,19465,19529,19626,19657,19674,19686,19688,19905,19908,19927,19933,19986,20038,20124,20238,20267,20301,20468,20477,20498,20550,20588,20672,20696,20725,20757,20782,20929,20936,20991,21055,21062,21068,21090,21191,21198,21254,21338,21458,21476,21595,21597,21605,21631,21633,21634,21644,21645,21691,21716,21740,21757,21970,21971,22041,22071,22105,22123,22350,22460,22521,22573,22590,22635,22656,22666,22681,22695,22738,22838,22986,23020,23061,23089,23111]]],["off",[1,1,[[11,1,1,0,1,[[313,1,1,0,1]]]],[9549]]],["on",[6,6,[[6,1,1,0,1,[[217,1,1,0,1]]],[12,1,1,1,2,[[347,1,1,1,2]]],[23,3,3,2,5,[[755,1,1,2,3],[764,2,2,3,5]]],[25,1,1,5,6,[[848,1,1,5,6]]]],[6711,10667,19246,19432,19434,21681]]],["or",[1,1,[[25,1,1,0,1,[[845,1,1,0,1]]]],[21630]]],["out",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[8993]]],["over",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7668]]],["part",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22067]]],["since",[5,5,[[4,1,1,0,1,[[156,1,1,0,1]]],[9,1,1,1,2,[[273,1,1,1,2]]],[11,1,1,2,3,[[333,1,1,2,3]]],[12,1,1,3,4,[[354,1,1,3,4]]],[17,1,1,4,5,[[455,1,1,4,5]]]],[5036,8191,10134,10868,13330]]],["somewhat",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11404]]],["than",[80,77,[[0,6,6,0,6,[[18,1,1,0,1],[25,1,1,1,2],[37,1,1,2,3],[38,1,1,3,4],[40,1,1,4,5],[47,1,1,5,6]]],[1,1,1,6,7,[[50,1,1,6,7]]],[2,10,10,7,17,[[102,9,9,7,16],[103,1,1,16,17]]],[3,2,2,17,19,[[129,1,1,17,18],[130,1,1,18,19]]],[4,8,8,19,27,[[153,1,1,19,20],[156,1,1,20,21],[159,2,2,21,23],[161,2,2,23,25],[163,1,1,25,26],[172,1,1,26,27]]],[5,1,1,27,28,[[196,1,1,27,28]]],[6,1,1,28,29,[[225,1,1,28,29]]],[7,2,2,29,31,[[234,2,2,29,31]]],[8,3,3,31,34,[[244,1,1,31,32],[250,1,1,32,33],[259,1,1,33,34]]],[9,4,4,34,38,[[285,1,1,34,35],[286,2,2,35,37],[289,1,1,37,38]]],[10,5,4,38,42,[[292,1,1,38,39],[310,3,2,39,41],[311,1,1,41,42]]],[11,1,1,42,43,[[333,1,1,42,43]]],[12,1,1,43,44,[[361,1,1,43,44]]],[13,2,2,44,46,[[387,1,1,44,45],[399,1,1,45,46]]],[16,1,1,46,47,[[426,1,1,46,47]]],[17,7,7,47,54,[[442,1,1,47,48],[444,1,1,48,49],[446,1,1,49,50],[465,2,2,50,52],[467,1,1,52,53],[470,1,1,53,54]]],[18,2,2,54,56,[[538,1,1,54,55],[619,1,1,55,56]]],[20,7,7,56,63,[[660,1,1,56,57],[662,2,2,57,59],[664,3,3,59,62],[667,1,1,62,63]]],[23,1,1,63,64,[[775,1,1,63,64]]],[25,8,6,64,70,[[806,3,2,64,66],[817,4,3,66,69],[824,1,1,69,70]]],[26,4,4,70,74,[[850,2,2,70,72],[857,1,1,72,73],[860,1,1,73,74]]],[29,1,1,74,75,[[884,1,1,74,75]]],[34,1,1,75,76,[[903,1,1,75,76]]],[36,1,1,76,77,[[910,1,1,76,77]]]],[466,708,1145,1158,1235,1470,1541,3056,3072,3073,3077,3078,3082,3083,3084,3086,3148,4106,4120,4920,5042,5112,5128,5158,5171,5231,5428,6066,6931,7182,7184,7393,7588,7856,8554,8559,8560,8676,8802,9431,9433,9453,10128,11019,11637,11917,12721,13014,13076,13117,13558,13565,13632,13725,14821,16292,17358,17383,17390,17420,17425,17427,17479,19702,20552,20553,20809,20813,20814,21018,21747,21752,21964,22049,22452,22744,22864]]],["that",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5821]]],["theirs",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20038]]],["them",[5,5,[[5,2,2,0,2,[[205,2,2,0,2]]],[10,2,2,2,4,[[308,1,1,2,3],[312,1,1,3,4]]],[22,1,1,4,5,[[744,1,1,4,5]]]],[6330,6368,9381,9493,18941]]],["thereat",[2,2,[[1,2,2,0,2,[[79,1,1,0,1],[89,1,1,1,2]]]],[2401,2738]]],["therefrom",[3,3,[[5,1,1,0,1,[[209,1,1,0,1]]],[11,2,2,1,3,[[315,1,1,1,2],[325,1,1,2,3]]]],[6466,9579,9873]]],["thereof",[21,19,[[0,2,2,0,2,[[1,1,1,0,1],[2,1,1,1,2]]],[1,2,2,2,4,[[54,1,1,2,3],[59,1,1,3,4]]],[2,4,4,4,8,[[92,1,1,4,5],[95,1,1,5,6],[97,1,1,6,7],[98,1,1,7,8]]],[4,4,2,8,10,[[178,3,1,8,9],[180,1,1,9,10]]],[5,1,1,10,11,[[209,1,1,10,11]]],[11,1,1,11,12,[[316,1,1,11,12]]],[17,2,2,12,14,[[439,1,1,12,13],[466,1,1,13,14]]],[20,2,2,14,16,[[663,1,1,14,15],[664,1,1,15,16]]],[22,1,1,16,17,[[722,1,1,16,17]]],[25,2,2,17,19,[[806,1,1,17,18],[816,1,1,18,19]]]],[47,60,1640,1803,2792,2865,2928,2970,5580,5642,6474,9642,12942,13605,17416,17419,18548,20550,20757]]],["thereout",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6948]]],["therewith",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17339]]],["through",[2,2,[[21,1,1,0,1,[[672,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]]],[17563,18171]]],["to",[4,3,[[16,1,1,0,1,[[431,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[18,2,1,2,3,[[505,2,1,2,3]]]],[12799,13131,14300]]],["unto",[3,3,[[3,1,1,0,1,[[132,1,1,0,1]]],[17,1,1,1,2,[[448,1,1,1,2]]],[25,1,1,2,3,[[835,1,1,2,3]]]],[4203,13155,21331]]],["we",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6455]]],["whereby",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14605]]],["whether",[2,2,[[13,1,1,0,1,[[381,1,1,0,1]]],[25,1,1,1,2,[[845,1,1,1,2]]]],[11503,21630]]],["with",[12,12,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[13,1,1,2,3,[[394,1,1,2,3]]],[17,3,3,3,6,[[450,1,1,3,4],[451,1,1,4,5],[465,1,1,5,6]]],[18,1,1,6,7,[[550,1,1,6,7]]],[20,1,1,7,8,[[664,1,1,7,8]]],[22,1,1,8,9,[[735,1,1,8,9]]],[23,1,1,9,10,[[782,1,1,9,10]]],[25,1,1,10,11,[[833,1,1,10,11]]],[29,1,1,11,12,[[882,1,1,11,12]]]],[688,1838,11779,13214,13254,13587,15039,17420,18773,19922,21252,22415]]],["without",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3567]]],["your",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23098]]]]},{"k":"H4481","v":[["*",[114,85,[[14,23,21,0,21,[[406,5,5,0,5],[407,6,5,5,10],[408,7,6,10,16],[409,5,5,16,21]]],[23,2,1,21,22,[[754,2,1,21,22]]],[26,89,63,22,85,[[851,25,18,22,40],[852,6,5,40,45],[853,15,11,45,56],[854,11,7,56,63],[855,15,10,63,73],[856,17,12,73,85]]]],[12122,12125,12129,12131,12133,12145,12146,12148,12150,12151,12155,12156,12157,12159,12162,12165,12186,12187,12193,12196,12199,19212,21763,21764,21766,21773,21774,21776,21778,21781,21783,21788,21791,21793,21797,21799,21800,21803,21805,21807,21822,21824,21829,21833,21836,21843,21849,21850,21851,21853,21860,21862,21863,21868,21869,21870,21876,21877,21887,21893,21894,21895,21898,21907,21909,21912,21915,21917,21918,21925,21928,21931,21932,21936,21937,21940,21941,21943,21944,21949,21950,21952,21953,21956,21957]]],["+",[31,29,[[14,5,5,0,5,[[406,2,2,0,2],[407,1,1,2,3],[408,1,1,3,4],[409,1,1,4,5]]],[23,1,1,5,6,[[754,1,1,5,6]]],[26,25,23,6,29,[[851,6,6,6,12],[852,2,2,12,14],[853,4,4,14,18],[854,3,3,18,21],[855,6,4,21,25],[856,4,4,25,29]]]],[12122,12133,12145,12159,12187,19212,21764,21773,21776,21778,21800,21803,21829,21836,21843,21862,21863,21870,21893,21895,21898,21907,21909,21915,21931,21936,21941,21949,21953]]],["Of",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21805]]],["according",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12165]]],["after",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12146]]],["by",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12196]]],["for",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21893]]],["from",[29,26,[[14,3,3,0,3,[[406,1,1,0,1],[408,2,2,1,3]]],[23,1,1,3,4,[[754,1,1,3,4]]],[26,25,22,4,26,[[851,2,2,4,6],[852,1,1,6,7],[853,10,8,7,15],[854,3,2,15,17],[855,2,2,17,19],[856,7,7,19,26]]]],[12131,12157,12162,19212,21763,21766,21824,21850,21851,21853,21860,21862,21868,21869,21870,21894,21895,21925,21932,21936,21937,21940,21943,21952,21956,21957]]],["of",[36,31,[[14,9,8,0,8,[[406,2,2,0,2],[407,3,2,2,4],[408,2,2,4,6],[409,2,2,6,8]]],[26,27,23,8,31,[[851,7,7,8,15],[852,3,3,15,18],[853,1,1,18,19],[854,4,3,19,22],[855,7,4,22,26],[856,5,5,26,31]]]],[12125,12129,12148,12151,12155,12156,12186,12193,21766,21774,21781,21783,21793,21799,21807,21822,21824,21833,21849,21876,21877,21887,21912,21917,21918,21928,21941,21944,21949,21950,21957]]],["part",[6,3,[[26,6,3,0,3,[[851,6,3,0,3]]]],[21791,21799,21800]]],["partly",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21800]]],["since",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12150]]],["than",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[856,1,1,1,2]]]],[21788,21953]]],["to",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[851,1,1,1,2]]]],[12165,21797]]],["upon",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12199]]]]},{"k":"H4482","v":[["*",[2,2,[[18,2,2,0,2,[[545,1,1,0,1],[627,1,1,1,2]]]],[14923,16398]]],["instruments",[1,1,[[18,1,1,0,1,[[627,1,1,0,1]]]],[16398]]],["same",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14923]]]]},{"k":"H4483","v":[["*",[5,5,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,4,4,1,5,[[851,2,2,1,3],[852,1,1,3,4],[854,1,1,4,5]]]],[12198,21782,21807,21819,21900]]],["numbered",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21900]]],["ordained",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21782]]],["set",[3,3,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,2,2,1,3,[[851,1,1,1,2],[852,1,1,2,3]]]],[12198,21807,21819]]]]},{"k":"H4484","v":[["MENE",[3,2,[[26,3,2,0,2,[[854,3,2,0,2]]]],[21899,21900]]]]},{"k":"H4485","v":[["musick",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20417]]]]},{"k":"H4486","v":[["*",[4,4,[[26,4,4,0,4,[[851,1,1,0,1],[853,2,2,1,3],[854,1,1,3,4]]]],[21779,21871,21873,21886]]],["knowledge",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[854,1,1,1,2]]]],[21779,21886]]],["reason",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21873]]],["understanding",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21871]]]]},{"k":"H4487","v":[["*",[28,27,[[0,2,1,0,1,[[12,2,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[9,1,1,2,3,[[290,1,1,2,3]]],[10,3,3,3,6,[[293,1,1,3,4],[298,1,1,4,5],[310,1,1,5,6]]],[11,1,1,6,7,[[324,1,1,6,7]]],[12,4,4,7,11,[[346,1,1,7,8],[358,2,2,8,10],[364,1,1,10,11]]],[13,1,1,11,12,[[371,1,1,11,12]]],[17,1,1,12,13,[[442,1,1,12,13]]],[18,3,3,13,16,[[538,1,1,13,14],[567,1,1,14,15],[624,1,1,15,16]]],[20,1,1,16,17,[[659,1,1,16,17]]],[22,2,2,17,19,[[731,1,1,17,18],[743,1,1,18,19]]],[23,1,1,19,20,[[777,1,1,19,20]]],[26,3,3,20,23,[[850,3,3,20,23]]],[31,4,4,23,27,[[889,1,1,23,24],[892,3,3,24,27]]]],[334,4426,8693,8824,8990,9433,9860,10644,10935,10951,11133,11274,13011,14826,15390,16355,17330,18723,18909,19788,21742,21747,21748,22548,22574,22575,22576]]],["+",[6,6,[[0,1,1,0,1,[[12,1,1,0,1]]],[9,1,1,1,2,[[290,1,1,1,2]]],[10,1,1,2,3,[[310,1,1,2,3]]],[11,1,1,3,4,[[324,1,1,3,4]]],[12,1,1,4,5,[[358,1,1,4,5]]],[26,1,1,5,6,[[850,1,1,5,6]]]],[334,8693,9433,9860,10935,21747]]],["appointed",[3,3,[[12,1,1,0,1,[[346,1,1,0,1]]],[17,1,1,1,2,[[442,1,1,1,2]]],[26,1,1,2,3,[[850,1,1,2,3]]]],[10644,13011,21742]]],["count",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4426]]],["number",[3,3,[[12,1,1,0,1,[[364,1,1,0,1]]],[18,1,1,1,2,[[567,1,1,1,2]]],[22,1,1,2,3,[[743,1,1,2,3]]]],[11133,15390,18909]]],["numbered",[7,7,[[0,1,1,0,1,[[12,1,1,0,1]]],[10,2,2,1,3,[[293,1,1,1,2],[298,1,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[13,1,1,4,5,[[371,1,1,4,5]]],[20,1,1,5,6,[[659,1,1,5,6]]],[22,1,1,6,7,[[731,1,1,6,7]]]],[334,8824,8990,10951,11274,17330,18723]]],["prepare",[1,1,[[18,1,1,0,1,[[538,1,1,0,1]]]],[14826]]],["prepared",[4,4,[[31,4,4,0,4,[[889,1,1,0,1],[892,3,3,1,4]]]],[22548,22574,22575,22576]]],["set",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21748]]],["telleth",[2,2,[[18,1,1,0,1,[[624,1,1,0,1]]],[23,1,1,1,2,[[777,1,1,1,2]]]],[16355,19788]]]]},{"k":"H4488","v":[["*",[5,5,[[10,1,1,0,1,[[300,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,2,2,2,4,[[419,2,2,2,4]]],[25,1,1,4,5,[[846,1,1,4,5]]]],[9096,12096,12491,12492,21642]]],["maneh",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21642]]],["pound",[4,4,[[10,1,1,0,1,[[300,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,2,2,2,4,[[419,2,2,2,4]]]],[9096,12096,12491,12492]]]]},{"k":"H4489","v":[["times",[2,2,[[0,2,2,0,2,[[30,2,2,0,2]]]],[880,914]]]]},{"k":"H4490","v":[["*",[12,12,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]],[8,3,3,2,5,[[236,2,2,2,4],[244,1,1,4,5]]],[13,1,1,5,6,[[397,1,1,5,6]]],[15,2,2,6,8,[[420,2,2,6,8]]],[16,3,3,8,11,[[427,1,1,8,9],[434,2,2,9,11]]],[23,1,1,11,12,[[757,1,1,11,12]]]],[2362,2946,7216,7217,7414,11873,12503,12505,12733,12853,12856,19291]]],["belonged",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12733]]],["part",[2,2,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]]],[2362,2946]]],["portion",[3,3,[[8,2,2,0,2,[[236,1,1,0,1],[244,1,1,1,2]]],[23,1,1,2,3,[[757,1,1,2,3]]]],[7217,7414,19291]]],["portions",[6,6,[[8,1,1,0,1,[[236,1,1,0,1]]],[13,1,1,1,2,[[397,1,1,1,2]]],[15,2,2,2,4,[[420,2,2,2,4]]],[16,2,2,4,6,[[434,2,2,4,6]]]],[7216,11873,12503,12505,12853,12856]]]]},{"k":"H4491","v":[["driving",[2,1,[[11,2,1,0,1,[[321,2,1,0,1]]]],[9776]]]]},{"k":"H4492","v":[["dens",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6656]]]]},{"k":"H4493","v":[["shaking",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14585]]]]},{"k":"H4494","v":[["*",[7,7,[[0,1,1,0,1,[[7,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[12,1,1,3,4,[[343,1,1,3,4]]],[18,1,1,4,5,[[593,1,1,4,5]]],[22,1,1,5,6,[[712,1,1,5,6]]],[24,1,1,6,7,[[797,1,1,6,7]]]],[192,5676,7173,10485,15855,18317,20313]]],["+",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10485]]],["rest",[6,6,[[0,1,1,0,1,[[7,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[18,1,1,3,4,[[593,1,1,3,4]]],[22,1,1,4,5,[[712,1,1,4,5]]],[24,1,1,5,6,[[797,1,1,5,6]]]],[192,5676,7173,15855,18317,20313]]]]},{"k":"H4495","v":[["Manoah",[18,14,[[6,18,14,0,14,[[223,17,13,0,13],[226,1,1,13,14]]]],[6886,6892,6893,6895,6896,6897,6899,6900,6901,6903,6904,6905,6906,6980]]]]},{"k":"H4496","v":[["*",[21,21,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[126,1,1,1,2]]],[4,1,1,2,3,[[164,1,1,2,3]]],[6,1,1,3,4,[[230,1,1,3,4]]],[7,1,1,4,5,[[232,1,1,4,5]]],[9,1,1,5,6,[[280,1,1,5,6]]],[10,1,1,6,7,[[298,1,1,6,7]]],[12,2,2,7,9,[[359,1,1,7,8],[365,1,1,8,9]]],[18,4,4,9,13,[[500,1,1,9,10],[572,1,1,10,11],[609,2,2,11,13]]],[22,4,4,13,17,[[689,1,1,13,14],[706,1,1,14,15],[710,1,1,15,16],[744,1,1,16,17]]],[23,2,2,17,19,[[789,1,1,17,18],[795,1,1,18,19]]],[32,1,1,19,20,[[894,1,1,19,20]]],[37,1,1,20,21,[[919,1,1,20,21]]]],[1488,4021,5249,7097,7136,8373,9041,10973,11145,14237,15465,16159,16165,17894,18176,18277,18923,20043,20271,22605,23000]]],["comfortable",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8373]]],["ease",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7097]]],["place",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[4021]]],["places",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18277]]],["quiet",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20271]]],["rest",[15,15,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[164,1,1,1,2]]],[7,1,1,2,3,[[232,1,1,2,3]]],[10,1,1,3,4,[[298,1,1,3,4]]],[12,2,2,4,6,[[359,1,1,4,5],[365,1,1,5,6]]],[18,3,3,6,9,[[572,1,1,6,7],[609,2,2,7,9]]],[22,3,3,9,12,[[689,1,1,9,10],[706,1,1,10,11],[744,1,1,11,12]]],[23,1,1,12,13,[[789,1,1,12,13]]],[32,1,1,13,14,[[894,1,1,13,14]]],[37,1,1,14,15,[[919,1,1,14,15]]]],[1488,5249,7136,9041,10973,11145,15465,16159,16165,17894,18176,18923,20043,22605,23000]]],["still",[1,1,[[18,1,1,0,1,[[500,1,1,0,1]]]],[14237]]]]},{"k":"H4497","v":[["son",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17245]]]]},{"k":"H4498","v":[["*",[8,8,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[446,1,1,1,2]]],[18,2,2,2,4,[[536,1,1,2,3],[619,1,1,3,4]]],[23,3,3,4,7,[[760,1,1,4,5],[769,1,1,5,6],[790,1,1,6,7]]],[29,1,1,7,8,[[880,1,1,7,8]]]],[8605,13128,14806,16290,19355,19569,20050,22393]]],["+",[3,3,[[17,1,1,0,1,[[446,1,1,0,1]]],[23,2,2,1,3,[[769,1,1,1,2],[790,1,1,2,3]]]],[13128,19569,20050]]],["flight",[1,1,[[29,1,1,0,1,[[880,1,1,0,1]]]],[22393]]],["refuge",[4,4,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,2,2,1,3,[[536,1,1,1,2],[619,1,1,2,3]]],[23,1,1,3,4,[[760,1,1,3,4]]]],[8605,14806,16290,19355]]]]},{"k":"H4499","v":[["*",[2,2,[[2,1,1,0,1,[[115,1,1,0,1]]],[22,1,1,1,2,[[730,1,1,1,2]]]],[3560,18708]]],["fleeing",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3560]]],["flight",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18708]]]]},{"k":"H4500","v":[["beam",[4,4,[[8,1,1,0,1,[[252,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]],[12,2,2,2,4,[[348,1,1,2,3],[357,1,1,3,4]]]],[7625,8599,10696,10931]]]]},{"k":"H4501","v":[["*",[42,31,[[1,20,16,0,16,[[74,7,5,0,5],[75,1,1,5,6],[79,1,1,6,7],[80,1,1,7,8],[84,1,1,8,9],[86,6,4,9,13],[88,1,1,13,14],[89,2,2,14,16]]],[2,1,1,16,17,[[113,1,1,16,17]]],[3,6,5,17,22,[[119,1,1,17,18],[120,1,1,18,19],[124,4,3,19,22]]],[10,1,1,22,23,[[297,1,1,22,23]]],[11,1,1,23,24,[[316,1,1,23,24]]],[12,7,1,24,25,[[365,7,1,24,25]]],[13,3,3,25,28,[[370,2,2,25,27],[379,1,1,27,28]]],[23,1,1,28,29,[[796,1,1,28,29]]],[37,2,2,29,31,[[914,2,2,29,31]]]],[2226,2227,2228,2229,2230,2270,2409,2428,2545,2621,2622,2623,2624,2701,2711,2731,3450,3723,3752,3941,3942,3943,8983,9613,11158,11253,11266,11464,20295,22924,22933]]],["+",[4,1,[[12,4,1,0,1,[[365,4,1,0,1]]]],[11158]]],["candlestick",[32,27,[[1,20,16,0,16,[[74,7,5,0,5],[75,1,1,5,6],[79,1,1,6,7],[80,1,1,7,8],[84,1,1,8,9],[86,6,4,9,13],[88,1,1,13,14],[89,2,2,14,16]]],[2,1,1,16,17,[[113,1,1,16,17]]],[3,6,5,17,22,[[119,1,1,17,18],[120,1,1,18,19],[124,4,3,19,22]]],[11,1,1,22,23,[[316,1,1,22,23]]],[12,1,1,23,24,[[365,1,1,23,24]]],[13,1,1,24,25,[[379,1,1,24,25]]],[37,2,2,25,27,[[914,2,2,25,27]]]],[2226,2227,2228,2229,2230,2270,2409,2428,2545,2621,2622,2623,2624,2701,2711,2731,3450,3723,3752,3941,3942,3943,9613,11158,11464,22924,22933]]],["candlesticks",[6,5,[[10,1,1,0,1,[[297,1,1,0,1]]],[12,2,1,1,2,[[365,2,1,1,2]]],[13,2,2,2,4,[[370,2,2,2,4]]],[23,1,1,4,5,[[796,1,1,4,5]]]],[8983,11158,11253,11266,20295]]]]},{"k":"H4502","v":[["crowned",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22729]]]]},{"k":"H4503","v":[["*",[211,194,[[0,12,12,0,12,[[3,3,3,0,3],[31,4,4,3,7],[32,1,1,7,8],[42,4,4,8,12]]],[1,3,3,12,15,[[78,1,1,12,13],[79,1,1,13,14],[89,1,1,14,15]]],[2,36,33,15,48,[[91,15,13,15,28],[94,1,1,28,29],[95,6,5,29,34],[96,3,3,34,37],[98,2,2,37,39],[99,1,1,39,40],[103,4,4,40,44],[112,4,4,44,48]]],[3,62,57,48,105,[[120,1,1,48,49],[121,7,4,49,53],[122,2,2,53,55],[123,13,13,55,68],[124,1,1,68,69],[131,4,4,69,73],[132,1,1,73,74],[134,1,1,74,75],[144,10,9,75,84],[145,22,21,84,105]]],[5,2,2,105,107,[[208,2,2,105,107]]],[6,7,6,107,113,[[213,4,3,107,110],[216,1,1,110,111],[223,2,2,111,113]]],[8,6,5,113,118,[[237,3,2,113,115],[238,1,1,115,116],[245,1,1,116,117],[261,1,1,117,118]]],[9,2,2,118,120,[[274,2,2,118,120]]],[10,6,5,120,125,[[294,1,1,120,121],[298,2,1,121,122],[300,1,1,122,123],[308,2,2,123,125]]],[11,10,8,125,133,[[315,1,1,125,126],[320,2,2,126,128],[328,4,2,128,130],[329,2,2,130,132],[332,1,1,132,133]]],[12,5,5,133,138,[[353,1,1,133,134],[355,2,2,134,136],[358,1,1,136,137],[360,1,1,137,138]]],[13,6,6,138,144,[[373,1,1,138,139],[375,1,1,139,140],[383,2,2,140,142],[392,1,1,142,143],[398,1,1,143,144]]],[14,2,2,144,146,[[411,2,2,144,146]]],[15,3,3,146,149,[[422,1,1,146,147],[425,2,2,147,149]]],[18,6,6,149,155,[[497,1,1,149,150],[517,1,1,150,151],[522,1,1,151,152],[549,1,1,152,153],[573,1,1,153,154],[618,1,1,154,155]]],[22,8,7,155,162,[[679,1,1,155,156],[697,1,1,156,157],[717,1,1,157,158],[721,1,1,158,159],[735,1,1,159,160],[744,3,2,160,162]]],[23,4,4,162,166,[[758,1,1,162,163],[761,1,1,163,164],[777,1,1,164,165],[785,1,1,165,166]]],[25,15,12,166,178,[[843,1,1,166,167],[845,1,1,167,168],[846,5,4,168,172],[847,8,6,172,178]]],[26,2,2,178,180,[[858,2,2,178,180]]],[27,1,1,180,181,[[871,1,1,180,181]]],[28,3,3,181,184,[[876,2,2,181,183],[877,1,1,183,184]]],[29,2,2,184,186,[[883,2,2,184,186]]],[35,1,1,186,187,[[908,1,1,186,187]]],[38,7,7,187,194,[[925,3,3,187,190],[926,2,2,190,192],[927,2,2,192,194]]]],[82,83,84,941,946,948,949,970,1301,1305,1315,1316,2377,2391,2736,2763,2765,2766,2767,2768,2769,2770,2771,2772,2773,2775,2776,2777,2843,2863,2864,2869,2870,2872,2888,2889,2916,2957,2970,2989,3121,3131,3132,3142,3415,3418,3420,3439,3759,3807,3810,3817,3818,3838,3840,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3937,3947,4157,4159,4162,4177,4209,4266,4582,4585,4586,4589,4590,4597,4603,4605,4608,4611,4614,4617,4619,4622,4624,4626,4627,4629,4630,4632,4633,4635,4636,4638,4639,4641,4642,4645,4646,4647,6449,6455,6583,6585,6586,6672,6903,6907,7257,7269,7290,7445,7924,8211,8215,8865,9049,9104,9370,9377,9596,9735,9736,9976,9978,9986,9987,10110,10849,10892,10896,10957,11012,11331,11388,11528,11534,11740,11898,12241,12242,12582,12676,12680,14185,14531,14609,15010,15473,16278,17667,18025,18413,18528,18771,18925,18942,19305,19383,19793,19962,21565,21628,21645,21647,21654,21655,21660,21662,21666,21669,21670,21675,22009,22015,22231,22300,22304,22325,22445,22448,22830,23099,23100,23102,23115,23116,23123,23124]]],["+",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2771]]],["gift",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14609]]],["gifts",[6,6,[[9,2,2,0,2,[[274,2,2,0,2]]],[12,2,2,2,4,[[355,2,2,2,4]]],[13,2,2,4,6,[[392,1,1,4,5],[398,1,1,5,6]]]],[8211,8215,10892,10896,11740,11898]]],["meat",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2763]]],["oblation",[5,5,[[22,2,2,0,2,[[697,1,1,0,1],[744,1,1,1,2]]],[23,1,1,2,3,[[758,1,1,2,3]]],[26,2,2,3,5,[[858,2,2,3,5]]]],[18025,18925,19305,22009,22015]]],["oblations",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17667]]],["offering",[149,136,[[0,3,3,0,3,[[3,3,3,0,3]]],[1,3,3,3,6,[[78,1,1,3,4],[79,1,1,4,5],[89,1,1,5,6]]],[2,34,31,6,37,[[91,13,11,6,17],[94,1,1,17,18],[95,6,5,18,23],[96,3,3,23,26],[98,2,2,26,28],[99,1,1,28,29],[103,4,4,29,33],[112,4,4,33,37]]],[3,61,56,37,93,[[120,1,1,37,38],[121,7,4,38,42],[122,2,2,42,44],[123,13,13,44,57],[124,1,1,57,58],[131,4,4,58,62],[132,1,1,62,63],[134,1,1,63,64],[144,10,9,64,73],[145,21,20,73,93]]],[5,1,1,93,94,[[208,1,1,93,94]]],[6,2,2,94,96,[[223,2,2,94,96]]],[8,4,4,96,100,[[237,2,2,96,98],[238,1,1,98,99],[261,1,1,99,100]]],[11,5,3,100,103,[[315,1,1,100,101],[328,4,2,101,103]]],[12,3,3,103,106,[[353,1,1,103,104],[358,1,1,104,105],[360,1,1,105,106]]],[15,2,2,106,108,[[422,1,1,106,107],[425,1,1,107,108]]],[18,2,2,108,110,[[517,1,1,108,109],[573,1,1,109,110]]],[22,4,3,110,113,[[721,1,1,110,111],[735,1,1,111,112],[744,2,1,112,113]]],[25,14,12,113,125,[[843,1,1,113,114],[845,1,1,114,115],[846,4,4,115,119],[847,8,6,119,125]]],[28,3,3,125,128,[[876,2,2,125,127],[877,1,1,127,128]]],[35,1,1,128,129,[[908,1,1,128,129]]],[38,7,7,129,136,[[925,3,3,129,132],[926,2,2,132,134],[927,2,2,134,136]]]],[82,83,84,2377,2391,2736,2765,2766,2767,2768,2769,2770,2772,2773,2775,2776,2777,2843,2863,2864,2869,2870,2872,2888,2889,2916,2957,2970,2989,3121,3131,3132,3142,3415,3418,3420,3439,3759,3807,3810,3817,3818,3838,3840,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3937,3947,4157,4159,4162,4177,4209,4266,4582,4585,4586,4589,4590,4597,4603,4605,4608,4611,4614,4617,4619,4622,4624,4626,4627,4629,4630,4632,4633,4635,4636,4638,4639,4641,4642,4645,4646,6449,6903,6907,7257,7269,7290,7924,9596,9976,9978,10849,10957,11012,12582,12680,14531,15473,18528,18771,18942,21565,21628,21645,21647,21654,21655,21660,21662,21666,21669,21670,21675,22300,22304,22325,22830,23099,23100,23102,23115,23116,23123,23124]]],["offerings",[14,13,[[3,1,1,0,1,[[145,1,1,0,1]]],[5,1,1,1,2,[[208,1,1,1,2]]],[8,1,1,2,3,[[237,1,1,2,3]]],[10,2,1,3,4,[[298,2,1,3,4]]],[13,1,1,4,5,[[373,1,1,4,5]]],[15,1,1,5,6,[[425,1,1,5,6]]],[18,1,1,6,7,[[497,1,1,6,7]]],[23,3,3,7,10,[[761,1,1,7,8],[777,1,1,8,9],[785,1,1,9,10]]],[25,1,1,10,11,[[846,1,1,10,11]]],[29,2,2,11,13,[[883,2,2,11,13]]]],[4647,6455,7269,9049,11331,12676,14185,19383,19793,19962,21647,22445,22448]]],["present",[22,21,[[0,9,9,0,9,[[31,4,4,0,4],[32,1,1,4,5],[42,4,4,5,9]]],[6,5,4,9,13,[[213,4,3,9,12],[216,1,1,12,13]]],[10,1,1,13,14,[[300,1,1,13,14]]],[11,4,4,14,18,[[320,2,2,14,16],[329,1,1,16,17],[332,1,1,17,18]]],[13,1,1,18,19,[[375,1,1,18,19]]],[22,1,1,19,20,[[717,1,1,19,20]]],[27,1,1,20,21,[[871,1,1,20,21]]]],[941,946,948,949,970,1301,1305,1315,1316,6583,6585,6586,6672,9104,9735,9736,9987,10110,11388,18413,22231]]],["presents",[6,6,[[8,1,1,0,1,[[245,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]],[11,1,1,2,3,[[329,1,1,2,3]]],[13,2,2,3,5,[[383,2,2,3,5]]],[18,1,1,5,6,[[549,1,1,5,6]]]],[7445,8865,9986,11528,11534,15010]]],["sacrifice",[5,5,[[10,2,2,0,2,[[308,2,2,0,2]]],[14,2,2,2,4,[[411,2,2,2,4]]],[18,1,1,4,5,[[618,1,1,4,5]]]],[9370,9377,12241,12242,16278]]]]},{"k":"H4504","v":[["offerings",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12190]]]]},{"k":"H4505","v":[["Menahem",[8,8,[[11,8,8,0,8,[[327,8,8,0,8]]]],[9939,9941,9942,9944,9945,9946,9947,9948]]]]},{"k":"H4506","v":[["*",[4,4,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,3,3,1,4,[[338,1,1,1,2],[339,1,1,2,3],[345,1,1,3,4]]]],[1063,10292,10358,10581]]],["Manahath",[3,3,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,2,2,1,3,[[338,1,1,1,2],[345,1,1,2,3]]]],[1063,10292,10581]]],["Manahethites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10358]]]]},{"k":"H4507","v":[["number",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18908]]]]},{"k":"H4508","v":[["Minni",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20239]]]]},{"k":"H4509","v":[["Miniamin",[3,3,[[13,1,1,0,1,[[397,1,1,0,1]]],[15,2,2,1,3,[[424,2,2,1,3]]]],[11869,12641,12665]]]]},{"k":"H4510","v":[["number",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12168]]]]},{"k":"H4511","v":[["Minnith",[2,2,[[6,1,1,0,1,[[221,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[6862,21138]]]]},{"k":"H4512","v":[["perfection",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13232]]]]},{"k":"H4513","v":[["*",[29,29,[[0,1,1,0,1,[[29,1,1,0,1]]],[3,2,2,1,3,[[138,1,1,1,2],[140,1,1,2,3]]],[8,2,2,3,5,[[260,2,2,3,5]]],[9,1,1,5,6,[[279,1,1,5,6]]],[10,1,1,6,7,[[310,1,1,6,7]]],[15,1,1,7,8,[[421,1,1,7,8]]],[17,4,4,8,12,[[455,1,1,8,9],[457,1,1,9,10],[466,1,1,10,11],[473,1,1,11,12]]],[18,2,2,12,14,[[498,1,1,12,13],[561,1,1,13,14]]],[19,5,5,14,19,[[628,1,1,14,15],[630,1,1,15,16],[638,1,1,16,17],[650,1,1,17,18],[657,1,1,18,19]]],[20,1,1,19,20,[[660,1,1,19,20]]],[23,6,6,20,26,[[746,1,1,20,21],[747,1,1,21,22],[749,1,1,22,23],[775,1,1,23,24],[786,1,1,24,25],[792,1,1,25,26]]],[25,1,1,26,27,[[832,1,1,26,27]]],[28,1,1,27,28,[[876,1,1,27,28]]],[29,1,1,28,29,[[882,1,1,28,29]]]],[832,4391,4457,7887,7895,8330,9415,12531,13339,13396,13604,13808,14193,15270,16415,16482,16714,17057,17258,17343,18990,19005,19083,19707,19979,20090,21245,22304,22417]]],["+",[4,4,[[10,1,1,0,1,[[310,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]],[23,1,1,2,3,[[786,1,1,2,3]]],[29,1,1,3,4,[[882,1,1,3,4]]]],[9415,17258,19979,22417]]],["Refrain",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19707]]],["Withhold",[3,3,[[19,2,2,0,2,[[630,1,1,0,1],[650,1,1,1,2]]],[23,1,1,2,3,[[746,1,1,2,3]]]],[16482,17057,18990]]],["back",[3,3,[[3,1,1,0,1,[[140,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[4457,7895,20090]]],["hinder",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4391]]],["refrain",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16415]]],["restrained",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21245]]],["still",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13339]]],["withheld",[3,3,[[0,1,1,0,1,[[29,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]],[20,1,1,2,3,[[660,1,1,2,3]]]],[832,13604,17343]]],["withheldest",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12531]]],["withhold",[2,2,[[9,1,1,0,1,[[279,1,1,0,1]]],[18,1,1,1,2,[[561,1,1,1,2]]]],[8330,15270]]],["withholden",[7,7,[[8,1,1,0,1,[[260,1,1,0,1]]],[17,2,2,1,3,[[457,1,1,1,2],[473,1,1,2,3]]],[18,1,1,3,4,[[498,1,1,3,4]]],[23,2,2,4,6,[[747,1,1,4,5],[749,1,1,5,6]]],[28,1,1,6,7,[[876,1,1,6,7]]]],[7887,13396,13808,14193,19005,19083,22304]]],["withholdeth",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16714]]]]},{"k":"H4514","v":[["*",[6,6,[[15,5,5,0,5,[[415,5,5,0,5]]],[21,1,1,5,6,[[675,1,1,5,6]]]],[12330,12333,12340,12341,12342,17603]]],["lock",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17603]]],["locks",[5,5,[[15,5,5,0,5,[[415,5,5,0,5]]]],[12330,12333,12340,12341,12342]]]]},{"k":"H4515","v":[["shoes",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5835]]]]},{"k":"H4516","v":[["dainties",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16280]]]]},{"k":"H4517","v":[["cornets",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8162]]]]},{"k":"H4518","v":[["*",[4,4,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]],[23,1,1,3,4,[[796,1,1,3,4]]]],[2224,2620,3750,20295]]],["bowls",[3,3,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]]],[2224,2620,3750]]],["cups",[1,1,[[23,1,1,0,1,[[796,1,1,0,1]]]],[20295]]]]},{"k":"H4519","v":[["*",[146,133,[[0,11,9,0,9,[[40,1,1,0,1],[45,1,1,1,2],[47,8,6,2,8],[49,1,1,8,9]]],[3,21,19,9,28,[[117,3,3,9,12],[118,2,1,12,13],[123,1,1,13,14],[126,1,1,14,15],[129,1,1,15,16],[142,3,3,16,19],[143,2,1,19,20],[148,4,4,20,24],[150,2,2,24,26],[152,2,2,26,28]]],[4,4,4,28,32,[[155,2,2,28,30],[185,1,1,30,31],[186,1,1,31,32]]],[5,43,37,32,69,[[187,1,1,32,33],[190,1,1,33,34],[198,1,1,34,35],[199,4,3,35,38],[200,1,1,38,39],[202,2,2,39,41],[203,17,12,41,53],[204,1,1,53,54],[206,1,1,54,55],[207,4,4,55,59],[208,10,10,59,69]]],[6,7,7,69,76,[[211,1,1,69,70],[216,2,2,70,72],[217,1,1,72,73],[221,1,1,73,74],[222,1,1,74,75],[228,1,1,75,76]]],[10,1,1,76,77,[[294,1,1,76,77]]],[11,11,11,77,88,[[332,1,1,77,78],[333,7,7,78,85],[335,2,2,85,87],[336,1,1,87,88]]],[12,19,18,88,106,[[340,1,1,88,89],[342,3,3,89,92],[343,4,4,92,96],[344,3,3,96,99],[346,1,1,99,100],[349,5,4,100,104],[364,2,2,104,106]]],[13,19,18,106,124,[[381,1,1,106,107],[396,4,4,107,111],[397,1,1,111,112],[398,1,1,112,113],[399,10,9,113,122],[400,2,2,122,124]]],[14,2,2,124,126,[[412,2,2,124,126]]],[18,3,3,126,129,[[537,1,1,126,127],[557,1,1,127,128],[585,1,1,128,129]]],[22,2,1,129,130,[[687,2,1,129,130]]],[23,1,1,130,131,[[759,1,1,130,131]]],[25,2,2,131,133,[[849,2,2,131,133]]]],[1246,1406,1452,1456,1464,1465,1468,1471,1529,3614,3638,3639,3678,3904,4011,4086,4517,4518,4523,4555,4751,4757,4758,4759,4830,4839,4880,4891,4988,4989,5827,5841,5863,5922,6136,6161,6183,6185,6191,6269,6274,6276,6277,6278,6280,6281,6282,6283,6284,6285,6286,6287,6292,6300,6380,6386,6387,6406,6408,6427,6433,6435,6436,6437,6439,6441,6447,6456,6457,6536,6669,6689,6717,6858,6873,7023,8857,10119,10120,10128,10130,10135,10136,10137,10139,10177,10191,10205,10374,10446,10451,10454,10515,10516,10524,10525,10549,10552,10564,10618,10739,10740,10751,10757,11129,11130,11499,11828,11837,11838,11845,11855,11908,11909,11917,11918,11919,11921,11926,11928,11930,11931,11939,11942,12282,12285,14814,15200,15750,17850,19319,21706,21707]]],["+",[5,5,[[5,1,1,0,1,[[207,1,1,0,1]]],[12,3,3,1,4,[[343,2,2,1,3],[349,1,1,3,4]]],[22,1,1,4,5,[[687,1,1,4,5]]]],[6406,10524,10525,10740,17850]]],["Manasseh",[136,127,[[0,9,8,0,8,[[40,1,1,0,1],[45,1,1,1,2],[47,6,5,2,7],[49,1,1,7,8]]],[3,21,19,8,27,[[117,3,3,8,11],[118,2,1,11,12],[123,1,1,12,13],[126,1,1,13,14],[129,1,1,14,15],[142,3,3,15,18],[143,2,1,18,19],[148,4,4,19,23],[150,2,2,23,25],[152,2,2,25,27]]],[4,4,4,27,31,[[155,2,2,27,29],[185,1,1,29,30],[186,1,1,30,31]]],[5,40,35,31,66,[[187,1,1,31,32],[190,1,1,32,33],[198,1,1,33,34],[199,4,3,34,37],[200,1,1,37,38],[202,2,2,38,40],[203,15,11,40,51],[204,1,1,51,52],[206,1,1,52,53],[207,3,3,53,56],[208,10,10,56,66]]],[6,6,6,66,72,[[211,1,1,66,67],[216,2,2,67,69],[217,1,1,69,70],[221,1,1,70,71],[228,1,1,71,72]]],[10,1,1,72,73,[[294,1,1,72,73]]],[11,11,11,73,84,[[332,1,1,73,74],[333,7,7,74,81],[335,2,2,81,83],[336,1,1,83,84]]],[12,16,16,84,100,[[340,1,1,84,85],[342,3,3,85,88],[343,2,2,88,90],[344,3,3,90,93],[346,1,1,93,94],[349,4,4,94,98],[364,2,2,98,100]]],[13,19,18,100,118,[[381,1,1,100,101],[396,4,4,101,105],[397,1,1,105,106],[398,1,1,106,107],[399,10,9,107,116],[400,2,2,116,118]]],[14,2,2,118,120,[[412,2,2,118,120]]],[18,3,3,120,123,[[537,1,1,120,121],[557,1,1,121,122],[585,1,1,122,123]]],[22,1,1,123,124,[[687,1,1,123,124]]],[23,1,1,124,125,[[759,1,1,124,125]]],[25,2,2,125,127,[[849,2,2,125,127]]]],[1246,1406,1452,1456,1464,1465,1471,1529,3614,3638,3639,3678,3904,4011,4086,4517,4518,4523,4555,4751,4757,4758,4759,4830,4839,4880,4891,4988,4989,5827,5841,5863,5922,6136,6161,6183,6185,6191,6269,6274,6276,6277,6278,6280,6281,6282,6283,6284,6286,6287,6292,6300,6380,6386,6387,6408,6427,6433,6435,6436,6437,6439,6441,6447,6456,6457,6536,6669,6689,6717,6858,7023,8857,10119,10120,10128,10130,10135,10136,10137,10139,10177,10191,10205,10374,10446,10451,10454,10515,10516,10549,10552,10564,10618,10739,10740,10751,10757,11129,11130,11499,11828,11837,11838,11845,11855,11908,11909,11917,11918,11919,11921,11926,11928,11930,11931,11939,11942,12282,12285,14814,15200,15750,17850,19319,21706,21707]]],["Manasseh's",[4,4,[[0,2,2,0,2,[[47,2,2,0,2]]],[5,2,2,2,4,[[203,2,2,2,4]]]],[1465,1468,6281,6285]]],["Manassites",[1,1,[[6,1,1,0,1,[[222,1,1,0,1]]]],[6873]]]]},{"k":"H4520","v":[["*",[4,4,[[4,2,2,0,2,[[156,1,1,0,1],[181,1,1,1,2]]],[11,1,1,2,3,[[322,1,1,2,3]]],[12,1,1,3,4,[[363,1,1,3,4]]]],[5047,5687,9826,11109]]],["Manasseh",[2,2,[[4,1,1,0,1,[[181,1,1,0,1]]],[12,1,1,1,2,[[363,1,1,1,2]]]],[5687,11109]]],["Manassites",[2,2,[[4,1,1,0,1,[[156,1,1,0,1]]],[11,1,1,1,2,[[322,1,1,1,2]]]],[5047,9826]]]]},{"k":"H4521","v":[["*",[8,8,[[13,2,2,0,2,[[397,2,2,0,2]]],[15,3,3,2,5,[[424,2,2,2,4],[425,1,1,4,5]]],[18,3,3,5,8,[[488,1,1,5,6],[493,1,1,6,7],[540,1,1,7,8]]]],[11857,11858,12668,12671,12681,14065,14097,14849]]],["portion",[5,5,[[13,2,2,0,2,[[397,2,2,0,2]]],[18,3,3,2,5,[[488,1,1,2,3],[493,1,1,3,4],[540,1,1,4,5]]]],[11857,11858,14065,14097,14849]]],["portions",[3,3,[[15,3,3,0,3,[[424,2,2,0,2],[425,1,1,2,3]]]],[12668,12671,12681]]]]},{"k":"H4522","v":[["*",[23,22,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,1,1,1,2,[[50,1,1,1,2]]],[4,1,1,2,3,[[172,1,1,2,3]]],[5,2,2,3,5,[[202,1,1,3,4],[203,1,1,4,5]]],[6,4,4,5,9,[[211,4,4,5,9]]],[9,1,1,9,10,[[286,1,1,9,10]]],[10,7,6,10,16,[[294,1,1,10,11],[295,3,2,11,13],[299,2,2,13,15],[302,1,1,15,16]]],[13,2,2,16,18,[[374,1,1,16,17],[376,1,1,17,18]]],[16,1,1,18,19,[[435,1,1,18,19]]],[19,1,1,19,20,[[639,1,1,19,20]]],[22,1,1,20,21,[[709,1,1,20,21]]],[24,1,1,21,22,[[797,1,1,21,22]]]],[1488,1543,5438,6275,6288,6537,6539,6542,6544,8578,8850,8891,8892,9066,9072,9169,11354,11413,12867,16743,18258,20311]]],["+",[2,2,[[1,1,1,0,1,[[50,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]]],[1543,9072]]],["discomfited",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18258]]],["levy",[4,3,[[10,4,3,0,3,[[295,3,2,0,2],[299,1,1,2,3]]]],[8891,8892,9066]]],["tributaries",[4,4,[[4,1,1,0,1,[[172,1,1,0,1]]],[6,3,3,1,4,[[211,3,3,1,4]]]],[5438,6539,6542,6544]]],["tributary",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20311]]],["tribute",[11,11,[[0,1,1,0,1,[[48,1,1,0,1]]],[5,2,2,1,3,[[202,1,1,1,2],[203,1,1,2,3]]],[6,1,1,3,4,[[211,1,1,3,4]]],[9,1,1,4,5,[[286,1,1,4,5]]],[10,2,2,5,7,[[294,1,1,5,6],[302,1,1,6,7]]],[13,2,2,7,9,[[374,1,1,7,8],[376,1,1,8,9]]],[16,1,1,9,10,[[435,1,1,9,10]]],[19,1,1,10,11,[[639,1,1,10,11]]]],[1488,6275,6288,6537,8578,8850,9169,11354,11413,12867,16743]]]]},{"k":"H4523","v":[["afflicted",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12992]]]]},{"k":"H4524","v":[["*",[5,5,[[10,1,1,0,1,[[296,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]],[17,1,1,2,3,[[472,1,1,2,3]]],[18,1,1,3,4,[[617,1,1,3,4]]],[21,1,1,4,5,[[671,1,1,4,5]]]],[8925,10170,13781,16272,17549]]],["about",[4,4,[[10,1,1,0,1,[[296,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]],[17,1,1,2,3,[[472,1,1,2,3]]],[18,1,1,3,4,[[617,1,1,3,4]]]],[8925,10170,13781,16272]]],["table",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17549]]]]},{"k":"H4525","v":[["*",[7,7,[[11,2,2,0,2,[[336,2,2,0,2]]],[18,1,1,2,3,[[619,1,1,2,3]]],[22,2,2,3,5,[[702,1,1,3,4],[720,1,1,4,5]]],[23,2,2,5,7,[[768,1,1,5,6],[773,1,1,6,7]]]],[10216,10218,16293,18117,18487,19525,19637]]],["+",[2,2,[[18,1,1,0,1,[[619,1,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]]],[16293,18487]]],["prison",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18117]]],["smiths",[4,4,[[11,2,2,0,2,[[336,2,2,0,2]]],[23,2,2,2,4,[[768,1,1,2,3],[773,1,1,3,4]]]],[10216,10218,19525,19637]]]]},{"k":"H4526","v":[["*",[17,14,[[1,6,4,0,4,[[74,3,2,0,2],[86,3,2,2,4]]],[9,1,1,4,5,[[288,1,1,4,5]]],[10,7,6,5,11,[[297,7,6,5,11]]],[11,1,1,11,12,[[328,1,1,11,12]]],[18,1,1,12,13,[[495,1,1,12,13]]],[32,1,1,13,14,[[899,1,1,13,14]]]],[2220,2222,2616,2618,8648,8962,8963,8965,8966,8969,8970,9980,14163,22681]]],["+",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]]],[8648,22681]]],["border",[6,4,[[1,6,4,0,4,[[74,3,2,0,2],[86,3,2,2,4]]]],[2220,2222,2616,2618]]],["borders",[8,7,[[10,7,6,0,6,[[297,7,6,0,6]]],[11,1,1,6,7,[[328,1,1,6,7]]]],[8962,8963,8965,8966,8969,8970,9980]]],["places",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14163]]]]},{"k":"H4527","v":[["+",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8943]]]]},{"k":"H4528","v":[["porch",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6591]]]]},{"k":"H4529","v":[["*",[4,4,[[5,1,1,0,1,[[200,1,1,0,1]]],[18,3,3,1,4,[[483,1,1,1,2],[516,1,1,2,3],[624,1,1,3,4]]]],[6195,13991,14523,16369]]],["away",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14523]]],["melt",[1,1,[[5,1,1,0,1,[[200,1,1,0,1]]]],[6195]]],["melteth",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16369]]],["water",[1,1,[[18,1,1,0,1,[[483,1,1,0,1]]]],[13991]]]]},{"k":"H4530","v":[["tribute",[1,1,[[4,1,1,0,1,[[168,1,1,0,1]]]],[5352]]]]},{"k":"H4531","v":[["*",[5,5,[[4,3,3,0,3,[[156,1,1,0,1],[159,1,1,1,2],[181,1,1,2,3]]],[17,1,1,3,4,[[444,1,1,3,4]]],[18,1,1,4,5,[[572,1,1,4,5]]]],[5038,5130,5682,13074,15462]]],["temptation",[1,1,[[18,1,1,0,1,[[572,1,1,0,1]]]],[15462]]],["temptations",[3,3,[[4,3,3,0,3,[[156,1,1,0,1],[159,1,1,1,2],[181,1,1,2,3]]]],[5038,5130,5682]]],["trial",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13074]]]]},{"k":"H4532","v":[["Massah",[4,4,[[1,1,1,0,1,[[66,1,1,0,1]]],[4,3,3,1,4,[[158,1,1,1,2],[161,1,1,2,3],[185,1,1,3,4]]]],[1990,5102,5179,5818]]]]},{"k":"H4533","v":[["*",[3,3,[[1,3,3,0,3,[[83,3,3,0,3]]]],[2529,2530,2531]]],["+",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2530]]],["vail",[2,2,[[1,2,2,0,2,[[83,2,2,0,2]]]],[2529,2531]]]]},{"k":"H4534","v":[["+",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22668]]]]},{"k":"H4535","v":[["down",[1,1,[[11,1,1,0,1,[[323,1,1,0,1]]]],[9835]]]]},{"k":"H4536","v":[["traffick",[1,1,[[10,1,1,0,1,[[300,1,1,0,1]]]],[9094]]]]},{"k":"H4537","v":[["*",[5,5,[[18,1,1,0,1,[[579,1,1,0,1]]],[19,2,2,1,3,[[636,2,2,1,3]]],[22,2,2,3,5,[[683,1,1,3,4],[697,1,1,4,5]]]],[15530,16640,16643,17761,18018]]],["mingle",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17761]]],["mingled",[4,4,[[18,1,1,0,1,[[579,1,1,0,1]]],[19,2,2,1,3,[[636,2,2,1,3]]],[22,1,1,3,4,[[697,1,1,3,4]]]],[15530,16640,16643,18018]]]]},{"k":"H4538","v":[["mixture",[1,1,[[18,1,1,0,1,[[552,1,1,0,1]]]],[15079]]]]},{"k":"H4539","v":[["*",[25,25,[[1,16,16,0,16,[[75,2,2,0,2],[76,1,1,2,3],[84,3,3,3,6],[85,1,1,6,7],[87,1,1,7,8],[88,3,3,8,11],[89,5,5,11,16]]],[3,6,6,16,22,[[119,3,3,16,19],[120,3,3,19,22]]],[9,1,1,22,23,[[283,1,1,22,23]]],[18,1,1,23,24,[[582,1,1,23,24]]],[22,1,1,24,25,[[700,1,1,24,25]]]],[2271,2272,2288,2543,2546,2548,2603,2651,2698,2702,2704,2712,2715,2728,2735,2740,3717,3718,3723,3748,3768,3769,8468,15645,18060]]],["+",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3748]]],["covering",[6,6,[[1,3,3,0,3,[[84,1,1,0,1],[88,1,1,1,2],[89,1,1,2,3]]],[9,1,1,3,4,[[283,1,1,3,4]]],[18,1,1,4,5,[[582,1,1,4,5]]],[22,1,1,5,6,[[700,1,1,5,6]]]],[2543,2698,2728,8468,15645,18060]]],["curtain",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3718]]],["hanging",[17,17,[[1,13,13,0,13,[[75,2,2,0,2],[76,1,1,2,3],[84,2,2,3,5],[85,1,1,5,6],[87,1,1,6,7],[88,2,2,7,9],[89,4,4,9,13]]],[3,4,4,13,17,[[119,2,2,13,15],[120,2,2,15,17]]]],[2271,2272,2288,2546,2548,2603,2651,2702,2704,2712,2715,2735,2740,3717,3723,3768,3769]]]]},{"k":"H4540","v":[["covering",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21170]]]]},{"k":"H4541","v":[["*",[28,28,[[1,3,3,0,3,[[81,2,2,0,2],[83,1,1,2,3]]],[2,1,1,3,4,[[108,1,1,3,4]]],[3,1,1,4,5,[[149,1,1,4,5]]],[4,3,3,5,8,[[161,2,2,5,7],[179,1,1,7,8]]],[6,5,5,8,13,[[227,2,2,8,10],[228,3,3,10,13]]],[10,1,1,13,14,[[304,1,1,13,14]]],[11,1,1,14,15,[[329,1,1,14,15]]],[13,3,3,15,18,[[394,1,1,15,16],[400,2,2,16,18]]],[15,1,1,18,19,[[421,1,1,18,19]]],[18,1,1,19,20,[[583,1,1,19,20]]],[22,5,5,20,25,[[703,1,1,20,21],[706,1,1,21,22],[708,2,2,22,24],[720,1,1,24,25]]],[27,1,1,25,26,[[874,1,1,25,26]]],[33,1,1,26,27,[[900,1,1,26,27]]],[34,1,1,27,28,[[904,1,1,27,28]]]],[2442,2446,2513,3285,4812,5169,5173,5600,6983,6984,7007,7010,7011,9227,9999,11766,11936,11937,12529,15670,18125,18184,18218,18239,18497,22268,22698,22766]]],["covering",[2,2,[[22,2,2,0,2,[[706,1,1,0,1],[708,1,1,1,2]]]],[18184,18218]]],["image",[10,10,[[4,2,2,0,2,[[161,1,1,0,1],[179,1,1,1,2]]],[6,5,5,2,7,[[227,2,2,2,4],[228,3,3,4,7]]],[18,1,1,7,8,[[583,1,1,7,8]]],[33,1,1,8,9,[[900,1,1,8,9]]],[34,1,1,9,10,[[904,1,1,9,10]]]],[5169,5600,6983,6984,7007,7010,7011,15670,22698,22766]]],["images",[8,8,[[10,1,1,0,1,[[304,1,1,0,1]]],[11,1,1,1,2,[[329,1,1,1,2]]],[13,3,3,2,5,[[394,1,1,2,3],[400,2,2,3,5]]],[22,2,2,5,7,[[708,1,1,5,6],[720,1,1,6,7]]],[27,1,1,7,8,[[874,1,1,7,8]]]],[9227,9999,11766,11936,11937,18239,18497,22268]]],["molten",[7,7,[[1,3,3,0,3,[[81,2,2,0,2],[83,1,1,2,3]]],[2,1,1,3,4,[[108,1,1,3,4]]],[3,1,1,4,5,[[149,1,1,4,5]]],[4,1,1,5,6,[[161,1,1,5,6]]],[15,1,1,6,7,[[421,1,1,6,7]]]],[2442,2446,2513,3285,4812,5173,12529]]],["vail",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18125]]]]},{"k":"H4542","v":[["*",[4,3,[[20,4,3,0,3,[[662,1,1,0,1],[667,3,2,1,3]]]],[17394,17490,17491]]],["man's",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17491]]],["poor",[3,2,[[20,3,2,0,2,[[662,1,1,0,1],[667,2,1,1,2]]]],[17394,17490]]]]},{"k":"H4543","v":[["*",[7,7,[[1,1,1,0,1,[[50,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[13,5,5,2,7,[[374,2,2,2,4],[382,1,1,4,5],[383,1,1,5,6],[398,1,1,6,7]]]],[1543,9070,11350,11352,11513,11535,11903]]],["Storehouses",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11903]]],["store",[5,5,[[10,1,1,0,1,[[299,1,1,0,1]]],[13,4,4,1,5,[[374,2,2,1,3],[382,1,1,3,4],[383,1,1,4,5]]]],[9070,11350,11352,11513,11535]]],["treasure",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1543]]]]},{"k":"H4544","v":[["scarceness",[1,1,[[4,1,1,0,1,[[160,1,1,0,1]]]],[5146]]]]},{"k":"H4545","v":[["web",[2,2,[[6,2,2,0,2,[[226,2,2,0,2]]]],[6962,6963]]]]},{"k":"H4546","v":[["*",[27,26,[[3,1,1,0,1,[[136,1,1,0,1]]],[6,5,5,1,6,[[215,1,1,1,2],[230,3,3,2,5],[231,1,1,5,6]]],[8,1,1,6,7,[[241,1,1,6,7]]],[9,3,2,7,9,[[286,3,2,7,9]]],[11,1,1,9,10,[[330,1,1,9,10]]],[12,2,2,10,12,[[363,2,2,10,12]]],[13,1,1,12,13,[[375,1,1,12,13]]],[18,1,1,13,14,[[561,1,1,13,14]]],[19,1,1,14,15,[[643,1,1,14,15]]],[22,9,9,15,24,[[685,1,1,15,16],[689,1,1,16,17],[697,1,1,17,18],[711,1,1,18,19],[714,1,1,19,20],[718,1,1,20,21],[727,1,1,21,22],[737,1,1,22,23],[740,1,1,23,24]]],[23,1,1,24,25,[[775,1,1,24,25]]],[28,1,1,25,26,[[877,1,1,25,26]]]],[4330,6643,7085,7086,7099,7121,7343,8566,8567,10041,11093,11095,11375,15264,16857,17785,17900,18027,18287,18332,18423,18647,18807,18864,19712,22319]]],["+",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6643]]],["causeway",[2,2,[[12,2,2,0,2,[[363,2,2,0,2]]]],[11093,11095]]],["highway",[14,13,[[6,1,1,0,1,[[231,1,1,0,1]]],[8,1,1,1,2,[[241,1,1,1,2]]],[9,3,2,2,4,[[286,3,2,2,4]]],[11,1,1,4,5,[[330,1,1,4,5]]],[19,1,1,5,6,[[643,1,1,5,6]]],[22,6,6,6,12,[[685,1,1,6,7],[689,1,1,7,8],[697,1,1,8,9],[714,1,1,9,10],[718,1,1,10,11],[740,1,1,11,12]]],[23,1,1,12,13,[[775,1,1,12,13]]]],[7121,7343,8566,8567,10041,16857,17785,17900,18027,18332,18423,18864,19712]]],["highways",[5,5,[[6,3,3,0,3,[[230,3,3,0,3]]],[22,2,2,3,5,[[711,1,1,3,4],[727,1,1,4,5]]]],[7085,7086,7099,18287,18647]]],["path",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22319]]],["paths",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18807]]],["terraces",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11375]]],["way",[1,1,[[3,1,1,0,1,[[136,1,1,0,1]]]],[4330]]],["ways",[1,1,[[18,1,1,0,1,[[561,1,1,0,1]]]],[15264]]]]},{"k":"H4547","v":[["highway",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18328]]]]},{"k":"H4548","v":[["nails",[4,4,[[12,1,1,0,1,[[359,1,1,0,1]]],[13,1,1,1,2,[[369,1,1,1,2]]],[22,1,1,2,3,[[719,1,1,2,3]]],[23,1,1,3,4,[[754,1,1,3,4]]]],[10967,11238,18458,19205]]]]},{"k":"H4549","v":[["*",[21,20,[[1,1,1,0,1,[[65,1,1,0,1]]],[4,2,2,1,3,[[153,1,1,1,2],[172,1,1,2,3]]],[5,3,3,3,6,[[188,1,1,3,4],[191,1,1,4,5],[193,1,1,5,6]]],[6,1,1,6,7,[[225,1,1,6,7]]],[8,1,1,7,8,[[250,1,1,7,8]]],[9,2,1,8,9,[[283,2,1,8,9]]],[18,4,4,9,13,[[499,1,1,9,10],[545,1,1,10,11],[574,1,1,11,12],[589,1,1,12,13]]],[22,4,4,13,17,[[688,1,1,13,14],[691,1,1,14,15],[697,1,1,15,16],[712,1,1,16,17]]],[25,1,1,17,18,[[822,1,1,17,18]]],[32,1,1,18,19,[[893,1,1,18,19]]],[33,1,1,19,20,[[901,1,1,19,20]]]],[1968,4920,5435,5880,5935,5981,6943,7569,8459,14218,14902,15483,15813,17868,17913,18005,18306,20951,22583,22709]]],["+",[3,2,[[4,1,1,0,1,[[153,1,1,0,1]]],[9,2,1,1,2,[[283,2,1,1,2]]]],[4920,8459]]],["away",[1,1,[[18,1,1,0,1,[[589,1,1,0,1]]]],[15813]]],["faint",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5435]]],["fainteth",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17868]]],["loosed",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6943]]],["melt",[4,4,[[5,1,1,0,1,[[188,1,1,0,1]]],[22,2,2,1,3,[[691,1,1,1,2],[697,1,1,2,3]]],[25,1,1,3,4,[[822,1,1,3,4]]]],[5880,17913,18005,20951]]],["melted",[6,6,[[1,1,1,0,1,[[65,1,1,0,1]]],[5,2,2,1,3,[[191,1,1,1,2],[193,1,1,2,3]]],[18,2,2,3,5,[[499,1,1,3,4],[574,1,1,4,5]]],[22,1,1,5,6,[[712,1,1,5,6]]]],[1968,5935,5981,14218,15483,18306]]],["melteth",[2,2,[[18,1,1,0,1,[[545,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[14902,22709]]],["molten",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22583]]],["refuse",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7569]]]]},{"k":"H4550","v":[["*",[12,11,[[0,1,1,0,1,[[12,1,1,0,1]]],[1,3,3,1,4,[[66,1,1,1,2],[89,2,2,2,4]]],[3,7,6,4,10,[[126,4,4,4,8],[149,3,2,8,10]]],[4,1,1,10,11,[[162,1,1,10,11]]]],[321,1984,2743,2745,3990,3994,4000,4016,4761,4762,5197]]],["+",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[3990]]],["journey",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5197]]],["journeyings",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[4016]]],["journeys",[9,8,[[0,1,1,0,1,[[12,1,1,0,1]]],[1,3,3,1,4,[[66,1,1,1,2],[89,2,2,2,4]]],[3,5,4,4,8,[[126,2,2,4,6],[149,3,2,6,8]]]],[321,1984,2743,2745,3994,4000,4761,4762]]]]},{"k":"H4551","v":[["*",[2,2,[[10,1,1,0,1,[[296,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]]],[8903,13914]]],["brought",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8903]]],["dart",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13914]]]]},{"k":"H4552","v":[["pillars",[1,1,[[10,1,1,0,1,[[300,1,1,0,1]]]],[9091]]]]},{"k":"H4553","v":[["*",[16,14,[[0,1,1,0,1,[[49,1,1,0,1]]],[16,1,1,1,2,[[429,1,1,1,2]]],[18,1,1,2,3,[[507,1,1,2,3]]],[22,1,1,3,4,[[700,1,1,3,4]]],[23,2,2,4,6,[[750,1,1,4,5],[792,1,1,5,6]]],[25,1,1,6,7,[[828,1,1,6,7]]],[28,1,1,7,8,[[877,1,1,7,8]]],[29,3,2,8,10,[[883,3,2,8,10]]],[32,2,2,10,12,[[893,2,2,10,12]]],[37,3,2,12,14,[[922,3,2,12,14]]]],[1516,12765,14330,18064,19115,20118,21152,22323,22439,22440,22587,22590,23055,23056]]],["Wailing",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22439]]],["lamentation",[3,3,[[0,1,1,0,1,[[49,1,1,0,1]]],[23,2,2,1,3,[[750,1,1,1,2],[792,1,1,2,3]]]],[1516,19115,20118]]],["mourneth",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23055]]],["mourning",[6,5,[[18,1,1,0,1,[[507,1,1,0,1]]],[22,1,1,1,2,[[700,1,1,1,2]]],[28,1,1,2,3,[[877,1,1,2,3]]],[32,1,1,3,4,[[893,1,1,3,4]]],[37,2,1,4,5,[[922,2,1,4,5]]]],[14330,18064,22323,22590,23056]]],["wailing",[5,5,[[16,1,1,0,1,[[429,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]],[29,2,2,2,4,[[883,2,2,2,4]]],[32,1,1,4,5,[[893,1,1,4,5]]]],[12765,21152,22439,22440,22587]]]]},{"k":"H4554","v":[["provender",[5,5,[[0,4,4,0,4,[[23,2,2,0,2],[41,1,1,2,3],[42,1,1,3,4]]],[6,1,1,4,5,[[229,1,1,4,5]]]],[616,623,1279,1314,7043]]]]},{"k":"H4555","v":[["kerchiefs",[2,2,[[25,2,2,0,2,[[814,2,2,0,2]]]],[20726,20729]]]]},{"k":"H4556","v":[["scab",[3,3,[[2,3,3,0,3,[[102,3,3,0,3]]]],[3058,3059,3060]]]]},{"k":"H4557","v":[["*",[132,128,[[0,2,2,0,2,[[33,1,1,0,1],[40,1,1,1,2]]],[1,2,2,2,4,[[65,1,1,2,3],[72,1,1,3,4]]],[2,4,3,4,7,[[114,4,3,4,7]]],[3,34,33,7,40,[[117,14,14,7,21],[119,5,5,21,26],[125,1,1,26,27],[130,2,2,27,29],[131,2,1,29,30],[139,1,1,30,31],[142,1,1,31,32],[145,7,7,32,39],[147,1,1,39,40]]],[4,4,4,40,44,[[156,1,1,40,41],[177,1,1,41,42],[184,1,1,42,43],[185,1,1,43,44]]],[5,2,2,44,46,[[190,2,2,44,46]]],[6,5,5,46,51,[[216,1,1,46,47],[217,3,3,47,50],[231,1,1,50,51]]],[8,3,3,51,54,[[241,2,2,51,53],[262,1,1,53,54]]],[9,5,5,54,59,[[268,2,2,54,56],[287,1,1,56,57],[290,2,2,57,59]]],[10,1,1,59,60,[[308,1,1,59,60]]],[12,19,18,60,78,[[344,2,2,60,62],[346,1,1,62,63],[348,1,1,63,64],[349,1,1,64,65],[358,2,2,65,67],[359,2,2,67,69],[360,4,4,69,73],[362,2,2,73,75],[364,4,3,75,78]]],[13,5,5,78,83,[[378,1,1,78,79],[392,2,2,79,81],[395,1,1,81,82],[401,1,1,82,83]]],[14,4,4,83,87,[[403,1,1,83,84],[404,1,1,84,85],[405,1,1,85,86],[410,1,1,86,87]]],[15,1,1,87,88,[[419,1,1,87,88]]],[16,1,1,88,89,[[434,1,1,88,89]]],[17,13,13,89,102,[[436,1,1,89,90],[438,1,1,90,91],[440,1,1,91,92],[444,1,1,92,93],[449,1,1,93,94],[450,1,1,94,95],[451,1,1,95,96],[456,2,2,96,98],[460,1,1,98,99],[466,1,1,99,100],[471,1,1,100,101],[473,1,1,101,102]]],[18,6,6,102,108,[[517,1,1,102,103],[581,1,1,103,104],[582,2,2,104,106],[624,2,2,106,108]]],[20,3,3,108,111,[[660,1,1,108,109],[663,1,1,109,110],[664,1,1,110,111]]],[21,1,1,111,112,[[676,1,1,111,112]]],[22,3,3,112,115,[[688,1,1,112,113],[699,1,1,113,114],[718,1,1,114,115]]],[23,6,5,115,120,[[746,2,2,115,117],[755,2,1,117,118],[788,1,1,118,119],[790,1,1,119,120]]],[25,5,5,120,125,[[805,3,3,120,123],[806,1,1,123,124],[813,1,1,124,125]]],[26,1,1,125,126,[[858,1,1,125,126]]],[27,1,1,126,127,[[862,1,1,126,127]]],[28,1,1,127,128,[[876,1,1,127,128]]]],[1010,1244,1963,2170,3484,3485,3519,3606,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3714,3720,3726,3732,3735,3985,4137,4142,4165,4426,4542,4626,4629,4632,4635,4638,4641,4645,4700,5031,5549,5766,5816,5915,5918,6659,6700,6706,6709,7125,7335,7349,7937,8060,8064,8600,8694,8701,9372,10537,10575,10643,10684,10743,10936,10939,10968,10980,10986,11007,11010,11014,11047,11053,11110,11132,11133,11440,11743,11744,11823,11973,12025,12029,12101,12235,12427,12845,12874,12910,12960,13061,13186,13223,13260,13376,13388,13464,13625,13762,13814,14537,15596,15618,15640,16355,16356,17336,17415,17429,17622,17869,18052,18446,18993,18997,19239,20038,20068,20533,20534,20538,20549,20696,21990,22104,22297]]],["+",[8,8,[[9,1,1,0,1,[[268,1,1,0,1]]],[12,2,2,1,3,[[344,1,1,1,2],[359,1,1,2,3]]],[17,1,1,3,4,[[456,1,1,3,4]]],[18,3,3,4,7,[[517,1,1,4,5],[581,1,1,5,6],[624,1,1,6,7]]],[23,1,1,7,8,[[790,1,1,7,8]]]],[8060,10575,10968,13388,14537,15596,16356,20068]]],["account",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11133]]],["all",[3,3,[[20,3,3,0,3,[[660,1,1,0,1],[663,1,1,1,2],[664,1,1,2,3]]]],[17336,17415,17429]]],["few",[5,5,[[3,1,1,0,1,[[125,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[17,1,1,2,3,[[451,1,1,2,3]]],[22,1,1,3,4,[[688,1,1,3,4]]],[25,1,1,4,5,[[813,1,1,4,5]]]],[3985,5816,13260,17869,20696]]],["full",[1,1,[[8,1,1,0,1,[[262,1,1,0,1]]]],[7937]]],["number",[108,105,[[0,2,2,0,2,[[33,1,1,0,1],[40,1,1,1,2]]],[1,2,2,2,4,[[65,1,1,2,3],[72,1,1,3,4]]],[2,4,3,4,7,[[114,4,3,4,7]]],[3,33,32,7,39,[[117,14,14,7,21],[119,5,5,21,26],[130,2,2,26,28],[131,2,1,28,29],[139,1,1,29,30],[142,1,1,30,31],[145,7,7,31,38],[147,1,1,38,39]]],[4,3,3,39,42,[[156,1,1,39,40],[177,1,1,40,41],[184,1,1,41,42]]],[5,2,2,42,44,[[190,2,2,42,44]]],[6,4,4,44,48,[[216,1,1,44,45],[217,2,2,45,47],[231,1,1,47,48]]],[8,2,2,48,50,[[241,2,2,48,50]]],[9,3,3,50,53,[[268,1,1,50,51],[287,1,1,51,52],[290,1,1,52,53]]],[10,1,1,53,54,[[308,1,1,53,54]]],[12,12,12,54,66,[[344,1,1,54,55],[348,1,1,55,56],[358,1,1,56,57],[359,1,1,57,58],[360,3,3,58,61],[362,2,2,61,63],[364,3,3,63,66]]],[13,5,5,66,71,[[378,1,1,66,67],[392,2,2,67,69],[395,1,1,69,70],[401,1,1,70,71]]],[14,4,4,71,75,[[403,1,1,71,72],[404,1,1,72,73],[405,1,1,73,74],[410,1,1,74,75]]],[15,1,1,75,76,[[419,1,1,75,76]]],[16,1,1,76,77,[[434,1,1,76,77]]],[17,11,11,77,88,[[436,1,1,77,78],[438,1,1,78,79],[440,1,1,79,80],[444,1,1,80,81],[449,1,1,81,82],[450,1,1,82,83],[456,1,1,83,84],[460,1,1,84,85],[466,1,1,85,86],[471,1,1,86,87],[473,1,1,87,88]]],[18,3,3,88,91,[[582,2,2,88,90],[624,1,1,90,91]]],[21,1,1,91,92,[[676,1,1,91,92]]],[22,2,2,92,94,[[699,1,1,92,93],[718,1,1,93,94]]],[23,5,4,94,98,[[746,2,2,94,96],[755,2,1,96,97],[788,1,1,97,98]]],[25,4,4,98,102,[[805,3,3,98,101],[806,1,1,101,102]]],[26,1,1,102,103,[[858,1,1,102,103]]],[27,1,1,103,104,[[862,1,1,103,104]]],[28,1,1,104,105,[[876,1,1,104,105]]]],[1010,1244,1963,2170,3484,3485,3519,3606,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3714,3720,3726,3732,3735,4137,4142,4165,4426,4542,4626,4629,4632,4635,4638,4641,4645,4700,5031,5549,5766,5915,5918,6659,6700,6706,7125,7335,7349,8064,8600,8694,9372,10537,10684,10936,10980,10986,11007,11014,11047,11053,11110,11132,11133,11440,11743,11744,11823,11973,12025,12029,12101,12235,12427,12845,12874,12910,12960,13061,13186,13223,13376,13464,13625,13762,13814,15618,15640,16355,17622,18052,18446,18993,18997,19239,20038,20533,20534,20538,20549,21990,22104,22297]]],["numbered",[1,1,[[12,1,1,0,1,[[360,1,1,0,1]]]],[11010]]],["numbers",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10743]]],["sum",[2,2,[[9,1,1,0,1,[[290,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]]],[8701,10939]]],["tale",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10643]]],["telling",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6709]]]]},{"k":"H4558","v":[["Mispar",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12029]]]]},{"k":"H4559","v":[["Mispereth",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12427]]]]},{"k":"H4560","v":[["*",[2,2,[[3,2,2,0,2,[[147,2,2,0,2]]]],[4669,4680]]],["commit",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4680]]],["delivered",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4669]]]]},{"k":"H4561","v":[["instruction",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13666]]]]},{"k":"H4562","v":[["bond",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20932]]]]},{"k":"H4563","v":[["covert",[1,1,[[22,1,1,0,1,[[682,1,1,0,1]]]],[17739]]]]},{"k":"H4564","v":[["hid",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18714]]]]},{"k":"H4565","v":[["*",[10,10,[[18,4,4,0,4,[[487,2,2,0,2],[494,1,1,2,3],[541,1,1,3,4]]],[22,1,1,4,5,[[723,1,1,4,5]]],[23,3,3,5,8,[[757,1,1,5,6],[767,1,1,6,7],[793,1,1,7,8]]],[24,1,1,8,9,[[799,1,1,8,9]]],[34,1,1,9,10,[[905,1,1,9,10]]]],[14049,14050,14115,14854,18564,19283,19508,20137,20364,22782]]],["places",[7,7,[[18,2,2,0,2,[[487,1,1,0,1],[494,1,1,1,2]]],[22,1,1,2,3,[[723,1,1,2,3]]],[23,3,3,3,6,[[757,1,1,3,4],[767,1,1,4,5],[793,1,1,5,6]]],[24,1,1,6,7,[[799,1,1,6,7]]]],[14049,14115,18564,19283,19508,20137,20364]]],["secret",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14854]]],["secretly",[2,2,[[18,1,1,0,1,[[487,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[14050,22782]]]]},{"k":"H4566","v":[["works",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13708]]]]},{"k":"H4567","v":[["works",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21874]]]]},{"k":"H4568","v":[["clay",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[13,1,1,1,2,[[370,1,1,1,2]]]],[8980,11263]]]]},{"k":"H4569","v":[["*",[11,11,[[0,1,1,0,1,[[31,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]],[6,3,3,2,5,[[213,1,1,2,3],[222,2,2,3,5]]],[8,2,2,5,7,[[248,1,1,5,6],[249,1,1,6,7]]],[22,3,3,7,10,[[688,1,1,7,8],[694,1,1,8,9],[708,1,1,9,10]]],[23,1,1,10,11,[[795,1,1,10,11]]]],[950,5876,6596,6874,6875,7508,7512,17879,17971,18249,20244]]],["ford",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[950]]],["fords",[3,3,[[5,1,1,0,1,[[188,1,1,0,1]]],[6,1,1,1,2,[[213,1,1,1,2]]],[22,1,1,2,3,[[694,1,1,2,3]]]],[5876,6596,17971]]],["pass",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18249]]],["passage",[2,2,[[8,1,1,0,1,[[248,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[7508,17879]]],["passages",[4,4,[[6,2,2,0,2,[[222,2,2,0,2]]],[8,1,1,2,3,[[249,1,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]]],[6874,6875,7512,20244]]]]},{"k":"H4570","v":[["*",[16,16,[[8,3,3,0,3,[[252,1,1,0,1],[261,2,2,1,3]]],[18,4,4,3,7,[[494,1,1,3,4],[500,1,1,4,5],[542,1,1,5,6],[617,1,1,6,7]]],[19,7,7,7,14,[[629,3,3,7,10],[631,2,2,10,12],[632,2,2,12,14]]],[22,2,2,14,16,[[704,1,1,14,15],[737,1,1,15,16]]]],[7638,7910,7912,14108,14238,14871,16268,16442,16448,16451,16501,16516,16523,16538,18137,18808]]],["+",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16268]]],["goings",[2,2,[[19,1,1,0,1,[[632,1,1,0,1]]],[22,1,1,1,2,[[737,1,1,1,2]]]],[16538,18808]]],["path",[3,3,[[19,2,2,0,2,[[629,1,1,0,1],[631,1,1,1,2]]],[22,1,1,2,3,[[704,1,1,2,3]]]],[16442,16516,18137]]],["paths",[6,6,[[18,3,3,0,3,[[494,1,1,0,1],[500,1,1,1,2],[542,1,1,2,3]]],[19,3,3,3,6,[[629,2,2,3,5],[631,1,1,5,6]]]],[14108,14238,14871,16448,16451,16501]]],["trench",[3,3,[[8,3,3,0,3,[[252,1,1,0,1],[261,2,2,1,3]]]],[7638,7910,7912]]],["ways",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16523]]]]},{"k":"H4571","v":[["*",[6,6,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[18,4,4,2,6,[[495,1,1,2,3],[503,1,1,3,4],[514,1,1,4,5],[546,1,1,5,6]]]],[8639,13133,14154,14274,14481,14958]]],["shake",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14958]]],["slide",[2,2,[[18,2,2,0,2,[[503,1,1,0,1],[514,1,1,1,2]]]],[14274,14481]]],["slip",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]]],[8639,13133,14154]]]]},{"k":"H4572","v":[["Maadai",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12286]]]]},{"k":"H4573","v":[["Maadiah",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12629]]]]},{"k":"H4574","v":[["*",[4,4,[[0,1,1,0,1,[[48,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]],[19,1,1,2,3,[[656,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]]],[1493,7592,17241,20425]]],["dainties",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1493]]],["delicately",[2,2,[[8,1,1,0,1,[[250,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[7592,20425]]],["delight",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17241]]]]},{"k":"H4575","v":[["influences",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13824]]]]},{"k":"H4576","v":[["mattock",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17807]]]]},{"k":"H4577","v":[["belly",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21790]]]]},{"k":"H4578","v":[["*",[32,30,[[0,2,2,0,2,[[14,1,1,0,1],[24,1,1,1,2]]],[3,1,1,2,3,[[121,1,1,2,3]]],[7,1,1,3,4,[[232,1,1,3,4]]],[9,3,3,4,7,[[273,1,1,4,5],[282,1,1,5,6],[286,1,1,6,7]]],[13,5,4,7,11,[[387,4,3,7,10],[398,1,1,10,11]]],[17,2,2,11,13,[[455,1,1,11,12],[465,1,1,12,13]]],[18,3,3,13,16,[[499,1,1,13,14],[517,1,1,14,15],[548,1,1,15,16]]],[21,2,2,16,18,[[675,2,2,16,18]]],[22,4,4,18,22,[[694,1,1,18,19],[726,1,1,19,20],[727,1,1,20,21],[741,1,1,21,22]]],[23,3,2,22,24,[[748,2,1,22,23],[775,1,1,23,24]]],[24,2,2,24,26,[[797,1,1,24,25],[798,1,1,25,26]]],[25,2,2,26,28,[[804,1,1,26,27],[808,1,1,27,28]]],[31,2,2,28,30,[[889,1,1,28,29],[890,1,1,29,30]]]],[364,681,3814,7138,8192,8437,8564,11639,11642,11643,11896,13340,13584,14218,14533,14982,17602,17612,17980,18633,18637,18881,19046,19711,20330,20343,20505,20596,22548,22549]]],["+",[7,7,[[0,2,2,0,2,[[14,1,1,0,1],[24,1,1,1,2]]],[9,2,2,2,4,[[273,1,1,2,3],[282,1,1,3,4]]],[18,1,1,4,5,[[548,1,1,4,5]]],[22,1,1,5,6,[[727,1,1,5,6]]],[31,1,1,6,7,[[890,1,1,6,7]]]],[364,681,8192,8437,14982,18637,22549]]],["belly",[2,2,[[21,1,1,0,1,[[675,1,1,0,1]]],[31,1,1,1,2,[[889,1,1,1,2]]]],[17612,22548]]],["bowels",[21,19,[[3,1,1,0,1,[[121,1,1,0,1]]],[9,1,1,1,2,[[286,1,1,1,2]]],[13,5,4,2,6,[[387,4,3,2,5],[398,1,1,5,6]]],[17,2,2,6,8,[[455,1,1,6,7],[465,1,1,7,8]]],[18,1,1,8,9,[[499,1,1,8,9]]],[21,1,1,9,10,[[675,1,1,9,10]]],[22,3,3,10,13,[[694,1,1,10,11],[726,1,1,11,12],[741,1,1,12,13]]],[23,3,2,13,15,[[748,2,1,13,14],[775,1,1,14,15]]],[24,2,2,15,17,[[797,1,1,15,16],[798,1,1,16,17]]],[25,2,2,17,19,[[804,1,1,17,18],[808,1,1,18,19]]]],[3814,8564,11639,11642,11643,11896,13340,13584,14218,17602,17980,18633,18881,19046,19711,20330,20343,20505,20596]]],["heart",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14533]]],["womb",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7138]]]]},{"k":"H4579","v":[["gravel",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18633]]]]},{"k":"H4580","v":[["*",[2,2,[[10,1,1,0,1,[[307,1,1,0,1]]],[18,1,1,1,2,[[512,1,1,1,2]]]],[9329,14426]]],["cake",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9329]]],["feasts",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14426]]]]},{"k":"H4581","v":[["*",[36,35,[[6,1,1,0,1,[[216,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[15,1,1,2,3,[[420,1,1,2,3]]],[18,9,9,3,12,[[504,1,1,3,4],[505,1,1,4,5],[508,2,2,5,7],[514,1,1,7,8],[520,1,1,8,9],[529,1,1,9,10],[537,1,1,10,11],[585,1,1,11,12]]],[19,1,1,12,13,[[637,1,1,12,13]]],[22,10,9,13,22,[[695,2,2,13,15],[701,3,3,15,18],[703,2,1,18,19],[705,1,1,19,20],[708,2,2,20,22]]],[23,1,1,22,23,[[760,1,1,22,23]]],[25,2,2,23,25,[[825,1,1,23,24],[831,1,1,24,25]]],[26,7,7,25,32,[[860,7,7,25,32]]],[28,1,1,32,33,[[878,1,1,32,33]]],[33,2,2,33,35,[[900,1,1,33,34],[902,1,1,34,35]]]],[6680,8635,12503,14286,14307,14333,14335,14489,14568,14717,14814,15750,16685,17992,17993,18081,18088,18091,18122,18156,18219,18220,19355,21081,21219,22037,22043,22046,22055,22067,22074,22075,22359,22691,22723]]],["+",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22075]]],["forces",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22074]]],["fort",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22055]]],["fortress",[3,3,[[23,1,1,0,1,[[760,1,1,0,1]]],[26,2,2,1,3,[[860,2,2,1,3]]]],[19355,22043,22046]]],["hold",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22691]]],["holds",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18088]]],["rock",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6680]]],["strength",[24,23,[[9,1,1,0,1,[[288,1,1,0,1]]],[15,1,1,1,2,[[420,1,1,1,2]]],[18,8,8,2,10,[[504,1,1,2,3],[505,1,1,3,4],[508,1,1,4,5],[514,1,1,5,6],[520,1,1,6,7],[529,1,1,7,8],[537,1,1,8,9],[585,1,1,9,10]]],[19,1,1,10,11,[[637,1,1,10,11]]],[22,8,7,11,18,[[695,1,1,11,12],[701,2,2,12,14],[703,2,1,14,15],[705,1,1,15,16],[708,2,2,16,18]]],[25,2,2,18,20,[[825,1,1,18,19],[831,1,1,19,20]]],[26,1,1,20,21,[[860,1,1,20,21]]],[28,1,1,21,22,[[878,1,1,21,22]]],[33,1,1,22,23,[[902,1,1,22,23]]]],[8635,12503,14286,14307,14335,14489,14568,14717,14814,15750,16685,17993,18081,18091,18122,18156,18219,18220,21081,21219,22067,22359,22723]]],["strengthen",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22037]]],["strong",[2,2,[[18,1,1,0,1,[[508,1,1,0,1]]],[22,1,1,1,2,[[695,1,1,1,2]]]],[14333,17992]]]]},{"k":"H4582","v":[["Maoch",[1,1,[[8,1,1,0,1,[[262,1,1,0,1]]]],[7932]]]]},{"k":"H4583","v":[["*",[19,19,[[4,1,1,0,1,[[178,1,1,0,1]]],[8,2,2,1,3,[[237,2,2,1,3]]],[12,1,1,3,4,[[341,1,1,3,4]]],[13,2,2,4,6,[[396,1,1,4,5],[402,1,1,5,6]]],[18,5,5,6,11,[[503,1,1,6,7],[545,1,1,7,8],[548,1,1,8,9],[567,1,1,9,10],[568,1,1,10,11]]],[23,5,5,11,16,[[753,1,1,11,12],[754,1,1,12,13],[769,1,1,13,14],[793,1,1,14,15],[795,1,1,15,16]]],[33,1,1,16,17,[[901,1,1,16,17]]],[35,1,1,17,18,[[908,1,1,17,18]]],[37,1,1,18,19,[[912,1,1,18,19]]]],[5581,7269,7272,10426,11854,12008,14281,14905,14979,15379,15404,19186,19223,19564,20160,20249,22710,22827,22912]]],["+",[3,3,[[4,1,1,0,1,[[178,1,1,0,1]]],[23,1,1,1,2,[[769,1,1,1,2]]],[37,1,1,2,3,[[912,1,1,2,3]]]],[5581,19564,22912]]],["den",[2,2,[[23,2,2,0,2,[[753,1,1,0,1],[754,1,1,1,2]]]],[19186,19223]]],["dwelling",[3,3,[[23,1,1,0,1,[[793,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]],[35,1,1,2,3,[[908,1,1,2,3]]]],[20160,22710,22827]]],["dwellingplace",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20249]]],["habitation",[6,6,[[8,2,2,0,2,[[237,2,2,0,2]]],[18,4,4,2,6,[[503,1,1,2,3],[545,1,1,3,4],[548,1,1,4,5],[568,1,1,5,6]]]],[7269,7272,14281,14905,14979,15404]]],["habitations",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10426]]],["place",[3,3,[[13,2,2,0,2,[[396,1,1,0,1],[402,1,1,1,2]]],[18,1,1,2,3,[[567,1,1,2,3]]]],[11854,12008,15379]]]]},{"k":"H4584","v":[["*",[8,6,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,1,1,1,2,[[220,1,1,1,2]]],[8,4,3,2,5,[[258,3,2,2,4],[260,1,1,4,5]]],[12,2,1,5,6,[[339,2,1,5,6]]]],[6257,6823,7834,7835,7863,10351]]],["Maon",[7,5,[[5,1,1,0,1,[[201,1,1,0,1]]],[8,4,3,1,4,[[258,3,2,1,3],[260,1,1,3,4]]],[12,2,1,4,5,[[339,2,1,4,5]]]],[6257,7834,7835,7863,10351]]],["Maonites",[1,1,[[6,1,1,0,1,[[220,1,1,0,1]]]],[6823]]]]},{"k":"H4585","v":[["*",[9,9,[[4,1,1,0,1,[[185,1,1,0,1]]],[17,2,2,1,3,[[472,1,1,1,2],[473,1,1,2,3]]],[18,2,2,3,5,[[553,1,1,3,4],[581,1,1,4,5]]],[21,1,1,5,6,[[674,1,1,5,6]]],[23,1,1,6,7,[[765,1,1,6,7]]],[29,1,1,7,8,[[881,1,1,7,8]]],[33,1,1,8,9,[[901,1,1,8,9]]]],[5837,13777,13833,15083,15593,17590,19453,22399,22711]]],["+",[2,2,[[21,1,1,0,1,[[674,1,1,0,1]]],[29,1,1,1,2,[[881,1,1,1,2]]]],[17590,22399]]],["dens",[3,3,[[17,1,1,0,1,[[473,1,1,0,1]]],[18,1,1,1,2,[[581,1,1,1,2]]],[33,1,1,2,3,[[901,1,1,2,3]]]],[13833,15593,22711]]],["habitations",[1,1,[[23,1,1,0,1,[[765,1,1,0,1]]]],[19453]]],["place",[1,1,[[18,1,1,0,1,[[553,1,1,0,1]]]],[15083]]],["places",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13777]]],["refuge",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5837]]]]},{"k":"H4586","v":[["*",[3,3,[[13,1,1,0,1,[[392,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,1,1,2,3,[[419,1,1,2,3]]]],[11739,12077,12472]]],["Mehunim",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12077]]],["Mehunims",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11739]]],["Meunim",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12472]]]]},{"k":"H4587","v":[["Meonothai",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10399]]]]},{"k":"H4588","v":[["dimness",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17829]]]]},{"k":"H4589","v":[["nakedness",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22763]]]]},{"k":"H4590","v":[["Maaziah",[2,2,[[12,1,1,0,1,[[361,1,1,0,1]]],[15,1,1,1,2,[[422,1,1,1,2]]]],[11033,12557]]]]},{"k":"H4591","v":[["*",[22,21,[[1,4,4,0,4,[[61,1,1,0,1],[65,2,2,1,3],[79,1,1,3,4]]],[2,3,2,4,6,[[114,2,1,4,5],[115,1,1,5,6]]],[3,4,4,6,10,[[127,1,1,6,7],[142,1,1,7,8],[149,1,1,8,9],[151,1,1,9,10]]],[11,1,1,10,11,[[316,1,1,10,11]]],[15,1,1,11,12,[[421,1,1,11,12]]],[18,2,2,12,14,[[584,2,2,12,14]]],[19,1,1,14,15,[[640,1,1,14,15]]],[20,1,1,15,16,[[670,1,1,15,16]]],[22,1,1,16,17,[[699,1,1,16,17]]],[23,3,3,17,20,[[754,1,1,17,18],[773,1,1,18,19],[774,1,1,19,20]]],[25,1,1,20,21,[[830,1,1,20,21]]]],[1820,1964,1965,2397,3485,3546,4056,4543,4814,4853,9606,12543,15737,15738,16758,17526,18052,19225,19641,19686,21198]]],["+",[3,3,[[2,1,1,0,1,[[115,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]]],[3546,4814,9606]]],["decrease",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15737]]],["diminish",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[25,1,1,1,2,[[830,1,1,1,2]]]],[3485,21198]]],["diminished",[3,3,[[19,1,1,0,1,[[640,1,1,0,1]]],[22,1,1,1,2,[[699,1,1,1,2]]],[23,1,1,2,3,[[773,1,1,2,3]]]],[16758,18052,19641]]],["few",[3,3,[[3,1,1,0,1,[[151,1,1,0,1]]],[20,1,1,1,2,[[670,1,1,1,2]]],[23,1,1,2,3,[[774,1,1,2,3]]]],[4853,17526,19686]]],["fewness",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3485]]],["least",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4056]]],["less",[3,3,[[1,2,2,0,2,[[65,1,1,0,1],[79,1,1,1,2]]],[3,1,1,2,3,[[142,1,1,2,3]]]],[1964,2397,4543]]],["little",[3,3,[[1,2,2,0,2,[[61,1,1,0,1],[65,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]]],[1820,1965,12543]]],["minished",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15738]]],["nothing",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19225]]]]},{"k":"H4592","v":[["*",[101,92,[[0,11,10,0,10,[[17,1,1,0,1],[23,2,2,1,3],[25,1,1,3,4],[29,2,2,4,6],[42,3,2,6,8],[43,1,1,8,9],[46,1,1,9,10]]],[1,3,2,10,12,[[66,1,1,10,11],[72,2,1,11,12]]],[2,1,1,12,13,[[114,1,1,12,13]]],[3,7,7,13,20,[[129,1,1,13,14],[132,2,2,14,16],[142,2,2,16,18],[149,1,1,18,19],[151,1,1,19,20]]],[4,6,5,20,25,[[159,3,2,20,22],[178,1,1,22,23],[180,2,2,23,25]]],[5,2,2,25,27,[[193,1,1,25,26],[208,1,1,26,27]]],[6,1,1,27,28,[[214,1,1,27,28]]],[7,1,1,28,29,[[233,1,1,28,29]]],[8,4,4,29,33,[[249,3,3,29,32],[252,1,1,32,33]]],[9,3,3,33,36,[[278,1,1,33,34],[282,1,1,34,35],[285,1,1,35,36]]],[10,2,2,36,38,[[307,2,2,36,38]]],[11,1,1,38,39,[[322,1,1,38,39]]],[12,1,1,39,40,[[353,1,1,39,40]]],[13,2,2,40,42,[[378,1,1,40,41],[395,1,1,41,42]]],[14,2,1,42,43,[[411,2,1,42,43]]],[15,2,2,43,45,[[414,1,1,43,44],[419,1,1,44,45]]],[17,5,4,45,49,[[445,2,1,45,46],[450,1,1,46,47],[459,1,1,47,48],[467,1,1,48,49]]],[18,10,10,49,59,[[479,1,1,49,50],[485,1,1,50,51],[514,2,2,51,53],[550,1,1,53,54],[558,1,1,54,55],[571,1,1,55,56],[582,1,1,56,57],[586,1,1,57,58],[596,1,1,58,59]]],[19,10,6,59,65,[[632,1,1,59,60],[633,3,1,60,61],[637,1,1,61,62],[642,1,1,62,63],[643,1,1,63,64],[651,3,1,64,65]]],[20,4,4,65,69,[[663,2,2,65,67],[667,1,1,67,68],[668,1,1,68,69]]],[21,1,1,69,70,[[673,1,1,69,70]]],[22,7,7,70,77,[[679,1,1,70,71],[685,1,1,71,72],[688,2,2,72,74],[694,1,1,74,75],[704,1,1,75,76],[707,1,1,76,77]]],[23,2,2,77,79,[[786,1,1,77,78],[795,1,1,78,79]]],[25,5,5,79,84,[[806,1,1,79,80],[812,1,1,80,81],[817,2,2,81,83],[835,1,1,83,84]]],[26,2,2,84,86,[[860,2,2,84,86]]],[27,2,2,86,88,[[862,1,1,86,87],[869,1,1,87,88]]],[36,3,3,88,91,[[909,2,2,88,90],[910,1,1,90,91]]],[37,1,1,91,92,[[911,1,1,91,92]]]],[428,608,634,702,845,860,1292,1301,1349,1429,1987,2174,3521,4093,4203,4207,4543,4545,4814,4853,5118,5133,5571,5649,5673,5979,6443,6618,7156,7514,7537,7551,7646,8294,8427,8547,9327,9329,9811,10839,11444,11825,12245,12319,12424,13106,13214,13460,13650,13957,14017,14460,14466,15022,15231,15448,15618,15763,15985,16531,16550,16676,16823,16848,17112,17399,17409,17489,17494,17575,17663,17795,17857,17875,17983,18150,18210,19977,20245,20549,20671,20782,20809,21331,22059,22070,22098,22204,22846,22849,22861,22893]]],["+",[5,5,[[4,2,2,0,2,[[178,1,1,0,1],[180,1,1,1,2]]],[9,1,1,2,3,[[285,1,1,2,3]]],[18,1,1,3,4,[[485,1,1,3,4]]],[22,1,1,4,5,[[694,1,1,4,5]]]],[5571,5649,8547,14017,17983]]],["almost",[5,5,[[1,1,1,0,1,[[66,1,1,0,1]]],[18,3,3,1,4,[[550,1,1,1,2],[571,1,1,2,3],[596,1,1,3,4]]],[19,1,1,4,5,[[632,1,1,4,5]]]],[1987,15022,15448,15985,16531]]],["few",[22,22,[[0,1,1,0,1,[[46,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[3,4,4,2,6,[[129,1,1,2,3],[142,2,2,3,5],[151,1,1,5,6]]],[4,1,1,6,7,[[180,1,1,6,7]]],[5,1,1,7,8,[[193,1,1,7,8]]],[8,2,2,8,10,[[249,1,1,8,9],[252,1,1,9,10]]],[12,1,1,10,11,[[353,1,1,10,11]]],[13,1,1,11,12,[[395,1,1,11,12]]],[15,2,2,12,14,[[414,1,1,12,13],[419,1,1,13,14]]],[17,1,1,14,15,[[445,1,1,14,15]]],[18,2,2,15,17,[[582,1,1,15,16],[586,1,1,16,17]]],[20,2,2,17,19,[[663,1,1,17,18],[667,1,1,18,19]]],[22,1,1,19,20,[[688,1,1,19,20]]],[23,1,1,20,21,[[786,1,1,20,21]]],[25,1,1,21,22,[[806,1,1,21,22]]]],[1429,3521,4093,4543,4545,4853,5673,5979,7514,7646,10839,11825,12319,12424,13106,15618,15763,17399,17489,17857,19977,20549]]],["fewer",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4814]]],["fewest",[1,1,[[4,1,1,0,1,[[159,1,1,0,1]]]],[5118]]],["lightly",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[702]]],["little",[49,41,[[0,8,7,0,7,[[17,1,1,0,1],[23,2,2,1,3],[29,1,1,3,4],[42,3,2,4,6],[43,1,1,6,7]]],[1,2,1,7,8,[[72,2,1,7,8]]],[4,2,1,8,9,[[159,2,1,8,9]]],[5,1,1,9,10,[[208,1,1,9,10]]],[6,1,1,10,11,[[214,1,1,10,11]]],[7,1,1,11,12,[[233,1,1,11,12]]],[8,2,2,12,14,[[249,2,2,12,14]]],[9,2,2,14,16,[[278,1,1,14,15],[282,1,1,15,16]]],[10,2,2,16,18,[[307,2,2,16,18]]],[11,1,1,18,19,[[322,1,1,18,19]]],[14,2,1,19,20,[[411,2,1,19,20]]],[17,1,1,20,21,[[445,1,1,20,21]]],[18,3,3,21,24,[[479,1,1,21,22],[514,2,2,22,24]]],[19,8,4,24,28,[[633,3,1,24,25],[642,1,1,25,26],[643,1,1,26,27],[651,3,1,27,28]]],[20,2,2,28,30,[[663,1,1,28,29],[668,1,1,29,30]]],[21,1,1,30,31,[[673,1,1,30,31]]],[22,2,2,31,33,[[688,1,1,31,32],[704,1,1,32,33]]],[25,2,2,33,35,[[812,1,1,33,34],[817,1,1,34,35]]],[26,1,1,35,36,[[860,1,1,35,36]]],[27,2,2,36,38,[[862,1,1,36,37],[869,1,1,37,38]]],[36,2,2,38,40,[[909,2,2,38,40]]],[37,1,1,40,41,[[911,1,1,40,41]]]],[428,608,634,860,1292,1301,1349,2174,5133,6443,6618,7156,7537,7551,8294,8427,9327,9329,9811,12245,13106,13957,14460,14466,16550,16823,16848,17112,17409,17494,17575,17875,18150,20671,20809,22070,22098,22204,22846,22849,22893]]],["matter",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[845,20782]]],["small",[3,3,[[17,1,1,0,1,[[450,1,1,0,1]]],[22,1,1,1,2,[[679,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[13214,17663,22059]]],["some",[1,1,[[13,1,1,0,1,[[378,1,1,0,1]]]],[11444]]],["soon",[2,2,[[17,1,1,0,1,[[467,1,1,0,1]]],[18,1,1,1,2,[[558,1,1,1,2]]]],[13650,15231]]],["thing",[4,4,[[3,2,2,0,2,[[132,2,2,0,2]]],[22,1,1,2,3,[[685,1,1,2,3]]],[25,1,1,3,4,[[835,1,1,3,4]]]],[4203,4207,17795,21331]]],["while",[4,4,[[17,1,1,0,1,[[459,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]],[23,1,1,2,3,[[795,1,1,2,3]]],[36,1,1,3,4,[[910,1,1,3,4]]]],[13460,18210,20245,22861]]],["worth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16676]]]]},{"k":"H4593","v":[["up",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20959]]]]},{"k":"H4594","v":[["garment",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18846]]]]},{"k":"H4595","v":[["mantles",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17729]]]]},{"k":"H4596","v":[["heap",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17984]]]]},{"k":"H4597","v":[["Maai",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12660]]]]},{"k":"H4598","v":[["*",[28,27,[[1,9,9,0,9,[[77,3,3,0,3],[78,1,1,3,4],[88,5,5,4,9]]],[2,1,1,9,10,[[97,1,1,9,10]]],[8,7,6,10,16,[[237,1,1,10,11],[250,1,1,11,12],[253,1,1,12,13],[259,3,2,13,15],[263,1,1,15,16]]],[9,1,1,16,17,[[279,1,1,16,17]]],[12,1,1,17,18,[[352,1,1,17,18]]],[14,2,2,18,20,[[411,2,2,18,20]]],[17,3,3,20,23,[[436,1,1,20,21],[437,1,1,21,22],[464,1,1,22,23]]],[18,1,1,23,24,[[586,1,1,23,24]]],[22,2,2,24,26,[[737,1,1,24,25],[739,1,1,25,26]]],[25,1,1,26,27,[[827,1,1,26,27]]]],[2297,2324,2327,2341,2686,2687,2688,2689,2690,2924,7259,7587,7680,7843,7850,7956,8335,10818,12240,12242,12889,12903,13546,15784,18817,18853,21116]]],["cloke",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18817]]],["coat",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7259]]],["mantle",[7,7,[[8,2,2,0,2,[[250,1,1,0,1],[263,1,1,1,2]]],[14,2,2,2,4,[[411,2,2,2,4]]],[17,2,2,4,6,[[436,1,1,4,5],[437,1,1,5,6]]],[18,1,1,6,7,[[586,1,1,6,7]]]],[7587,7956,12240,12242,12889,12903,15784]]],["robe",[17,16,[[1,9,9,0,9,[[77,3,3,0,3],[78,1,1,3,4],[88,5,5,4,9]]],[2,1,1,9,10,[[97,1,1,9,10]]],[8,4,3,10,13,[[253,1,1,10,11],[259,3,2,11,13]]],[12,1,1,13,14,[[352,1,1,13,14]]],[17,1,1,14,15,[[464,1,1,14,15]]],[22,1,1,15,16,[[739,1,1,15,16]]]],[2297,2324,2327,2341,2686,2687,2688,2689,2690,2924,7680,7843,7850,10818,13546,18853]]],["robes",[2,2,[[9,1,1,0,1,[[279,1,1,0,1]]],[25,1,1,1,2,[[827,1,1,1,2]]]],[8335,21116]]]]},{"k":"H4599","v":[["*",[23,23,[[0,2,2,0,2,[[6,1,1,0,1],[7,1,1,1,2]]],[2,1,1,2,3,[[100,1,1,2,3]]],[5,2,2,3,5,[[201,1,1,3,4],[204,1,1,4,5]]],[10,1,1,5,6,[[308,1,1,5,6]]],[11,2,2,6,8,[[315,2,2,6,8]]],[13,1,1,8,9,[[398,1,1,8,9]]],[18,5,5,9,14,[[551,1,1,9,10],[561,1,1,10,11],[564,1,1,11,12],[581,1,1,12,13],[591,1,1,13,14]]],[19,3,3,14,17,[[632,1,1,14,15],[635,1,1,15,16],[652,1,1,16,17]]],[21,2,2,17,19,[[674,2,2,17,19]]],[22,2,2,19,21,[[690,1,1,19,20],[719,1,1,20,21]]],[27,1,1,21,22,[[874,1,1,21,22]]],[28,1,1,22,23,[[878,1,1,22,23]]]],[170,185,3033,6211,6308,9346,9595,9601,11879,15063,15265,15308,15581,15830,16533,16626,17139,17594,17597,17903,18469,22281,22361]]],["+",[1,1,[[22,1,1,0,1,[[690,1,1,0,1]]]],[17903]]],["fountain",[9,9,[[2,1,1,0,1,[[100,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]],[18,2,2,2,4,[[551,1,1,2,3],[591,1,1,3,4]]],[19,1,1,4,5,[[652,1,1,4,5]]],[21,2,2,5,7,[[674,2,2,5,7]]],[27,1,1,7,8,[[874,1,1,7,8]]],[28,1,1,8,9,[[878,1,1,8,9]]]],[3033,6211,15063,15830,17139,17594,17597,22281,22361]]],["fountains",[7,7,[[0,2,2,0,2,[[6,1,1,0,1],[7,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[13,1,1,3,4,[[398,1,1,3,4]]],[19,2,2,4,6,[[632,1,1,4,5],[635,1,1,5,6]]],[22,1,1,6,7,[[719,1,1,6,7]]]],[170,185,9346,11879,16533,16626,18469]]],["springs",[2,2,[[18,2,2,0,2,[[564,1,1,0,1],[581,1,1,1,2]]]],[15308,15581]]],["well",[2,2,[[5,1,1,0,1,[[204,1,1,0,1]]],[18,1,1,1,2,[[561,1,1,1,2]]]],[6308,15265]]],["wells",[2,2,[[11,2,2,0,2,[[315,2,2,0,2]]]],[9595,9601]]]]},{"k":"H4600","v":[["*",[3,3,[[2,1,1,0,1,[[111,1,1,0,1]]],[8,1,1,1,2,[[261,1,1,1,2]]],[25,1,1,2,3,[[824,1,1,2,3]]]],[3393,7912,21010]]],["bruised",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3393]]],["pressed",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21010]]],["stuck",[1,1,[[8,1,1,0,1,[[261,1,1,0,1]]]],[7912]]]]},{"k":"H4601","v":[["*",[23,23,[[0,1,1,0,1,[[21,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]],[9,3,3,2,5,[[269,1,1,2,3],[276,2,2,3,5]]],[10,4,4,5,9,[[292,1,1,5,6],[305,3,3,6,9]]],[12,10,10,9,19,[[339,1,1,9,10],[340,1,1,10,11],[344,2,2,11,13],[345,1,1,13,14],[346,1,1,14,15],[348,1,1,15,16],[356,2,2,16,18],[364,1,1,18,19]]],[13,4,4,19,23,[[377,3,3,19,22],[381,1,1,22,23]]]],[571,6167,8084,8246,8248,8809,9251,9259,9262,10354,10363,10550,10551,10604,10650,10716,10913,10914,11125,11434,11435,11436,11506]]],["+",[1,1,[[12,1,1,0,1,[[356,1,1,0,1]]]],[10913]]],["Maacah",[3,3,[[9,3,3,0,3,[[269,1,1,0,1],[276,2,2,1,3]]]],[8084,8246,8248]]],["Maachah",[18,18,[[0,1,1,0,1,[[21,1,1,0,1]]],[10,4,4,1,5,[[292,1,1,1,2],[305,3,3,2,5]]],[12,9,9,5,14,[[339,1,1,5,6],[340,1,1,6,7],[344,2,2,7,9],[345,1,1,9,10],[346,1,1,10,11],[348,1,1,11,12],[356,1,1,12,13],[364,1,1,13,14]]],[13,4,4,14,18,[[377,3,3,14,17],[381,1,1,17,18]]]],[571,8809,9251,9259,9262,10354,10363,10550,10551,10604,10650,10716,10914,11125,11434,11435,11436,11506]]],["Maachathites",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6167]]]]},{"k":"H4602","v":[["*",[8,8,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,3,3,1,4,[[198,1,1,1,2],[199,2,2,2,4]]],[9,1,1,4,5,[[289,1,1,4,5]]],[11,1,1,5,6,[[337,1,1,5,6]]],[12,1,1,6,7,[[341,1,1,6,7]]],[23,1,1,7,8,[[784,1,1,7,8]]]],[4989,6135,6165,6167,8687,10245,10404,19949]]],["Maachathi",[1,1,[[4,1,1,0,1,[[155,1,1,0,1]]]],[4989]]],["Maachathite",[4,4,[[9,1,1,0,1,[[289,1,1,0,1]]],[11,1,1,1,2,[[337,1,1,1,2]]],[12,1,1,2,3,[[341,1,1,2,3]]],[23,1,1,3,4,[[784,1,1,3,4]]]],[8687,10245,10404,19949]]],["Maachathites",[3,3,[[5,3,3,0,3,[[198,1,1,0,1],[199,2,2,1,3]]]],[6135,6165,6167]]]]},{"k":"H4603","v":[["*",[36,35,[[2,3,3,0,3,[[94,1,1,0,1],[95,1,1,1,2],[115,1,1,2,3]]],[3,3,3,3,6,[[121,3,3,3,6]]],[4,1,1,6,7,[[184,1,1,6,7]]],[5,4,4,7,11,[[193,1,1,7,8],[208,3,3,8,11]]],[12,3,3,11,14,[[339,1,1,11,12],[342,1,1,12,13],[347,1,1,13,14]]],[13,8,8,14,22,[[378,1,1,14,15],[392,2,2,15,17],[394,2,2,17,19],[395,1,1,19,20],[396,1,1,20,21],[402,1,1,21,22]]],[14,2,2,22,24,[[412,2,2,22,24]]],[15,2,2,24,26,[[413,1,1,24,25],[425,1,1,25,26]]],[19,1,1,26,27,[[643,1,1,26,27]]],[25,8,7,27,34,[[815,1,1,27,28],[816,1,1,28,29],[818,2,1,29,30],[819,1,1,30,31],[821,1,1,31,32],[840,2,2,32,34]]],[26,1,1,34,35,[[858,1,1,34,35]]]],[2845,2851,3564,3798,3804,3819,5809,5977,6442,6446,6457,10313,10453,10672,11439,11748,11750,11783,11786,11797,11834,12007,12254,12262,12304,12698,16850,20744,20762,20845,20873,20922,21471,21474,21995]]],["+",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[12007]]],["commit",[4,4,[[2,2,2,0,2,[[94,1,1,0,1],[95,1,1,1,2]]],[3,1,1,2,3,[[121,1,1,2,3]]],[5,1,1,3,4,[[208,1,1,3,4]]]],[2845,2851,3804,6446]]],["committed",[6,6,[[5,3,3,0,3,[[193,1,1,0,1],[208,2,2,1,3]]],[12,1,1,3,4,[[347,1,1,3,4]]],[25,2,2,4,6,[[816,1,1,4,5],[821,1,1,5,6]]]],[5977,6442,6457,10672,20762,20922]]],["do",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3798]]],["done",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3819]]],["transgress",[2,2,[[15,2,2,0,2,[[413,1,1,0,1],[425,1,1,1,2]]]],[12304,12698]]],["transgressed",[6,6,[[12,2,2,0,2,[[339,1,1,0,1],[342,1,1,1,2]]],[13,3,3,2,5,[[378,1,1,2,3],[392,1,1,3,4],[394,1,1,4,5]]],[14,1,1,5,6,[[412,1,1,5,6]]]],[10313,10453,11439,11748,11783,12262]]],["transgresseth",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16850]]],["trespass",[2,2,[[13,1,1,0,1,[[394,1,1,0,1]]],[25,1,1,1,2,[[818,1,1,1,2]]]],[11786,20845]]],["trespassed",[11,11,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[13,3,3,2,5,[[392,1,1,2,3],[395,1,1,3,4],[396,1,1,4,5]]],[14,1,1,5,6,[[412,1,1,5,6]]],[25,4,4,6,10,[[818,1,1,6,7],[819,1,1,7,8],[840,2,2,8,10]]],[26,1,1,10,11,[[858,1,1,10,11]]]],[3564,5809,11750,11797,11834,12254,20845,20873,21471,21474,21995]]],["trespassing",[1,1,[[25,1,1,0,1,[[815,1,1,0,1]]]],[20744]]]]},{"k":"H4604","v":[["*",[28,28,[[2,3,3,0,3,[[94,1,1,0,1],[95,1,1,1,2],[115,1,1,2,3]]],[3,4,4,3,7,[[121,3,3,3,6],[147,1,1,6,7]]],[5,5,5,7,12,[[193,1,1,7,8],[208,4,4,8,12]]],[12,2,2,12,14,[[346,1,1,12,13],[347,1,1,13,14]]],[13,4,4,14,18,[[394,1,1,14,15],[395,1,1,15,16],[399,1,1,16,17],[402,1,1,17,18]]],[14,3,3,18,21,[[411,2,2,18,20],[412,1,1,20,21]]],[17,1,1,21,22,[[456,1,1,21,22]]],[25,5,5,22,27,[[815,1,1,22,23],[816,1,1,23,24],[819,1,1,24,25],[821,1,1,25,26],[840,1,1,26,27]]],[26,1,1,27,28,[[858,1,1,27,28]]]],[2845,2851,3564,3798,3804,3819,4680,5977,6442,6446,6448,6457,10616,10672,11783,11810,11927,12007,12239,12241,12258,13389,20744,20762,20873,20922,21474,21995]]],["+",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[12007]]],["falsehood",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13389]]],["grievously",[1,1,[[25,1,1,0,1,[[815,1,1,0,1]]]],[20744]]],["sore",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11783]]],["transgression",[6,6,[[5,1,1,0,1,[[208,1,1,0,1]]],[12,2,2,1,3,[[346,1,1,1,2],[347,1,1,2,3]]],[13,1,1,3,4,[[395,1,1,3,4]]],[14,2,2,4,6,[[411,1,1,4,5],[412,1,1,5,6]]]],[6448,10616,10672,11810,12241,12258]]],["trespass",[17,17,[[2,3,3,0,3,[[94,1,1,0,1],[95,1,1,1,2],[115,1,1,2,3]]],[3,4,4,3,7,[[121,3,3,3,6],[147,1,1,6,7]]],[5,4,4,7,11,[[193,1,1,7,8],[208,3,3,8,11]]],[13,1,1,11,12,[[399,1,1,11,12]]],[14,1,1,12,13,[[411,1,1,12,13]]],[25,3,3,13,16,[[816,1,1,13,14],[819,1,1,14,15],[821,1,1,15,16]]],[26,1,1,16,17,[[858,1,1,16,17]]]],[2845,2851,3564,3798,3804,3819,4680,5977,6442,6446,6457,11927,12239,20762,20873,20922,21995]]],["trespasses",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21474]]]]},{"k":"H4605","v":[["*",[140,134,[[0,3,3,0,3,[[5,1,1,0,1],[6,1,1,1,2],[21,1,1,2,3]]],[1,13,13,3,16,[[69,1,1,3,4],[74,2,2,4,6],[75,1,1,6,7],[77,1,1,7,8],[79,1,1,8,9],[85,1,1,9,10],[86,1,1,10,11],[87,1,1,11,12],[88,2,2,12,14],[89,2,2,14,16]]],[2,2,2,16,18,[[100,1,1,16,17],[116,1,1,17,18]]],[3,37,37,18,55,[[117,15,15,18,33],[119,7,7,33,40],[120,9,9,40,49],[124,1,1,49,50],[130,1,1,50,51],[142,3,3,51,54],[148,1,1,54,55]]],[4,5,4,55,59,[[156,1,1,55,56],[157,1,1,56,57],[180,3,2,57,59]]],[5,3,3,59,62,[[188,1,1,59,60],[189,2,2,60,62]]],[6,2,2,62,64,[[211,1,1,62,63],[217,1,1,63,64]]],[8,4,4,64,68,[[244,1,1,64,65],[245,1,1,65,66],[251,1,1,66,67],[265,1,1,67,68]]],[10,8,8,68,76,[[297,6,6,68,74],[298,2,2,74,76]]],[11,2,2,76,78,[[315,1,1,76,77],[331,1,1,77,78]]],[12,8,8,78,86,[[351,1,1,78,79],[359,1,1,79,80],[360,4,4,80,84],[366,2,2,84,86]]],[13,11,11,86,97,[[367,1,1,86,87],[370,1,1,87,88],[371,1,1,88,89],[382,1,1,89,90],[383,1,1,90,91],[386,1,1,91,92],[391,1,1,92,93],[392,1,1,93,94],[397,2,2,94,96],[400,1,1,96,97]]],[14,2,2,97,99,[[405,1,1,97,98],[411,1,1,98,99]]],[17,4,4,99,103,[[438,1,1,99,100],[453,1,1,100,101],[466,2,2,101,103]]],[18,2,2,103,105,[[551,1,1,103,104],[555,1,1,104,105]]],[19,2,2,105,107,[[635,1,1,105,106],[642,1,1,106,107]]],[20,1,1,107,108,[[661,1,1,107,108]]],[22,6,6,108,114,[[684,1,1,108,109],[685,1,1,109,110],[686,1,1,110,111],[692,1,1,111,112],[715,1,1,112,113],[723,1,1,113,114]]],[23,5,5,114,119,[[748,1,1,114,115],[775,1,1,115,116],[779,1,1,116,117],[787,1,1,117,118],[796,1,1,118,119]]],[25,15,10,119,129,[[802,5,4,119,123],[809,1,1,123,124],[811,1,1,124,125],[812,1,1,125,126],[838,1,1,126,127],[842,5,1,127,128],[844,1,1,128,129]]],[26,2,2,129,131,[[861,2,2,129,131]]],[29,1,1,131,132,[[880,1,1,131,132]]],[36,2,2,132,134,[[910,2,2,132,134]]]],[153,179,556,2055,2215,2216,2249,2320,2396,2585,2613,2659,2684,2695,2726,2727,3018,3577,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3707,3714,3720,3726,3731,3732,3735,3746,3749,3766,3768,3773,3778,3782,3786,3790,3963,4137,4491,4493,4551,4729,5043,5061,5624,5654,5880,5906,5909,6545,6707,7393,7441,7608,8003,8937,8945,8954,8959,8963,8965,8992,9008,9597,10091,10776,10969,10986,11000,11007,11010,11167,11189,11195,11250,11276,11521,11535,11606,11709,11740,11870,11871,11937,12105,12243,12908,13292,13590,13616,15053,15136,16630,16831,17380,17771,17793,17828,17941,18383,18569,19055,19728,19827,20007,20308,20475,20486,20490,20491,20606,20652,20677,21405,21533,21587,22087,22088,22388,22870,22873]]],["+",[63,58,[[0,3,3,0,3,[[5,1,1,0,1],[6,1,1,1,2],[21,1,1,2,3]]],[1,9,9,3,12,[[69,1,1,3,4],[74,1,1,4,5],[75,1,1,5,6],[77,1,1,6,7],[85,1,1,7,8],[88,2,2,8,10],[89,2,2,10,12]]],[2,1,1,12,13,[[100,1,1,12,13]]],[3,2,2,13,15,[[120,2,2,13,15]]],[4,4,3,15,18,[[156,1,1,15,16],[157,1,1,16,17],[180,2,1,17,18]]],[5,3,3,18,21,[[188,1,1,18,19],[189,2,2,19,21]]],[6,1,1,21,22,[[217,1,1,21,22]]],[10,7,7,22,29,[[297,5,5,22,27],[298,2,2,27,29]]],[12,1,1,29,30,[[360,1,1,29,30]]],[13,4,4,30,34,[[370,1,1,30,31],[371,1,1,31,32],[383,1,1,32,33],[392,1,1,33,34]]],[17,4,4,34,38,[[438,1,1,34,35],[453,1,1,35,36],[466,2,2,36,38]]],[18,2,2,38,40,[[551,1,1,38,39],[555,1,1,39,40]]],[19,1,1,40,41,[[635,1,1,40,41]]],[22,3,3,41,44,[[684,1,1,41,42],[692,1,1,42,43],[723,1,1,43,44]]],[23,5,5,44,49,[[748,1,1,44,45],[775,1,1,45,46],[779,1,1,46,47],[787,1,1,47,48],[796,1,1,48,49]]],[25,10,6,49,55,[[802,4,3,49,52],[811,1,1,52,53],[812,1,1,53,54],[842,4,1,54,55]]],[26,2,2,55,57,[[861,2,2,55,57]]],[29,1,1,57,58,[[880,1,1,57,58]]]],[153,179,556,2055,2216,2249,2320,2585,2684,2695,2726,2727,3018,3749,3768,5043,5061,5654,5880,5906,5909,6707,8937,8945,8954,8959,8963,8992,9008,11000,11250,11276,11535,11740,12908,13292,13590,13616,15053,15136,16630,17771,17941,18569,19055,19728,19827,20007,20308,20475,20486,20490,20652,20677,21533,22087,22088,22388]]],["above",[9,9,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[10,1,1,3,4,[[297,1,1,3,4]]],[12,1,1,4,5,[[360,1,1,4,5]]],[13,1,1,5,6,[[391,1,1,5,6]]],[19,1,1,6,7,[[642,1,1,6,7]]],[22,1,1,7,8,[[685,1,1,7,8]]],[25,1,1,8,9,[[838,1,1,8,9]]]],[2396,3577,5624,8965,11010,11709,16831,17793,21405]]],["exceeding",[2,2,[[12,1,1,0,1,[[359,1,1,0,1]]],[13,1,1,1,2,[[382,1,1,1,2]]]],[10969,11521]]],["exceedingly",[2,2,[[12,1,1,0,1,[[366,1,1,0,1]]],[13,1,1,1,2,[[367,1,1,1,2]]]],[11189,11195]]],["forward",[2,2,[[8,2,2,0,2,[[251,1,1,0,1],[265,1,1,1,2]]]],[7608,8003]]],["high",[5,5,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[12,1,1,2,3,[[351,1,1,2,3]]],[13,2,2,3,5,[[386,1,1,3,4],[400,1,1,4,5]]]],[2215,2613,10776,11606,11937]]],["over",[2,2,[[12,1,1,0,1,[[366,1,1,0,1]]],[14,1,1,1,2,[[411,1,1,1,2]]]],[11167,12243]]],["upward",[55,55,[[1,1,1,0,1,[[87,1,1,0,1]]],[3,35,35,1,36,[[117,15,15,1,16],[119,7,7,16,23],[120,7,7,23,30],[124,1,1,30,31],[130,1,1,31,32],[142,3,3,32,35],[148,1,1,35,36]]],[6,1,1,36,37,[[211,1,1,36,37]]],[8,2,2,37,39,[[244,1,1,37,38],[245,1,1,38,39]]],[11,2,2,39,41,[[315,1,1,39,40],[331,1,1,40,41]]],[12,2,2,41,43,[[360,2,2,41,43]]],[13,2,2,43,45,[[397,2,2,43,45]]],[14,1,1,45,46,[[405,1,1,45,46]]],[20,1,1,46,47,[[661,1,1,46,47]]],[22,2,2,47,49,[[686,1,1,47,48],[715,1,1,48,49]]],[25,4,4,49,53,[[802,1,1,49,50],[809,1,1,50,51],[842,1,1,51,52],[844,1,1,52,53]]],[36,2,2,53,55,[[910,2,2,53,55]]]],[2659,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3707,3714,3720,3726,3731,3732,3735,3746,3766,3773,3778,3782,3786,3790,3963,4137,4491,4493,4551,4729,6545,7393,7441,9597,10091,10986,11007,11870,11871,12105,17380,17828,18383,20491,20606,21533,21587,22870,22873]]]]},{"k":"H4606","v":[["down",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21919]]]]},{"k":"H4607","v":[["up",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12499]]]]},{"k":"H4608","v":[["*",[19,19,[[3,1,1,0,1,[[150,1,1,0,1]]],[5,3,3,1,4,[[196,1,1,1,2],[201,1,1,2,3],[204,1,1,3,4]]],[6,2,2,4,6,[[211,1,1,4,5],[218,1,1,5,6]]],[8,1,1,6,7,[[244,1,1,6,7]]],[9,1,1,7,8,[[281,1,1,7,8]]],[11,1,1,8,9,[[321,1,1,8,9]]],[13,2,2,9,11,[[386,1,1,9,10],[398,1,1,10,11]]],[15,2,2,11,13,[[421,1,1,11,12],[424,1,1,12,13]]],[22,1,1,13,14,[[693,1,1,13,14]]],[23,2,2,14,16,[[777,1,1,14,15],[792,1,1,15,16]]],[25,3,3,16,19,[[841,3,3,16,19]]]],[4820,6074,6209,6310,6545,6732,7402,8419,9783,11603,11908,12515,12661,17965,19781,20085,21508,21511,21514]]],["+",[2,2,[[6,2,2,0,2,[[211,1,1,0,1],[218,1,1,1,2]]]],[6545,6732]]],["ascent",[2,2,[[3,1,1,0,1,[[150,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]]],[4820,8419]]],["bring",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19781]]],["chiefest",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11908]]],["cliff",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11603]]],["hill",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7402]]],["stairs",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12515]]],["up",[10,10,[[5,3,3,0,3,[[196,1,1,0,1],[201,1,1,1,2],[204,1,1,2,3]]],[11,1,1,3,4,[[321,1,1,3,4]]],[15,1,1,4,5,[[424,1,1,4,5]]],[22,1,1,5,6,[[693,1,1,5,6]]],[23,1,1,6,7,[[792,1,1,6,7]]],[25,3,3,7,10,[[841,3,3,7,10]]]],[6074,6209,6310,9783,12661,17965,20085,21508,21511,21514]]]]},{"k":"H4609","v":[["*",[31,24,[[1,1,1,0,1,[[69,1,1,0,1]]],[10,2,2,1,3,[[300,2,2,1,3]]],[11,7,4,3,7,[[321,1,1,3,4],[332,6,3,4,7]]],[12,1,1,7,8,[[354,1,1,7,8]]],[13,2,2,8,10,[[375,2,2,8,10]]],[14,1,1,10,11,[[409,1,1,10,11]]],[15,2,2,11,13,[[415,1,1,11,12],[424,1,1,12,13]]],[22,5,1,13,14,[[716,5,1,13,14]]],[25,9,9,14,23,[[812,1,1,14,15],[841,7,7,15,22],[844,1,1,22,23]]],[29,1,1,23,24,[[887,1,1,23,24]]]],[2077,9098,9099,9769,10107,10108,10109,10880,11382,11383,12182,12342,12661,18398,20660,21483,21499,21503,21508,21511,21514,21526,21589,22501]]],["come",[1,1,[[25,1,1,0,1,[[812,1,1,0,1]]]],[20660]]],["degree",[1,1,[[12,1,1,0,1,[[354,1,1,0,1]]]],[10880]]],["degrees",[9,4,[[11,5,3,0,3,[[332,5,3,0,3]]],[22,4,1,3,4,[[716,4,1,3,4]]]],[10107,10108,10109,18398]]],["dial",[2,2,[[11,1,1,0,1,[[332,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]]],[10109,18398]]],["stairs",[5,5,[[11,1,1,0,1,[[321,1,1,0,1]]],[15,2,2,1,3,[[415,1,1,1,2],[424,1,1,2,3]]],[25,2,2,3,5,[[841,1,1,3,4],[844,1,1,4,5]]]],[9769,12342,12661,21483,21589]]],["steps",[11,11,[[1,1,1,0,1,[[69,1,1,0,1]]],[10,2,2,1,3,[[300,2,2,1,3]]],[13,2,2,3,5,[[375,2,2,3,5]]],[25,6,6,5,11,[[841,6,6,5,11]]]],[2077,9098,9099,11382,11383,21499,21503,21508,21511,21514,21526]]],["stories",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22501]]],["up",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12182]]]]},{"k":"H4610","v":[["Maalehacrabbim",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6205]]]]},{"k":"H4611","v":[["*",[41,41,[[4,1,1,0,1,[[180,1,1,0,1]]],[6,1,1,1,2,[[212,1,1,1,2]]],[8,1,1,2,3,[[260,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[18,5,5,4,9,[[505,1,1,4,5],[554,1,1,5,6],[555,1,1,6,7],[583,2,2,7,9]]],[19,1,1,9,10,[[647,1,1,9,10]]],[22,3,3,10,13,[[679,1,1,10,11],[681,2,2,11,13]]],[23,17,17,13,30,[[748,2,2,13,15],[751,2,2,15,17],[755,1,1,17,18],[761,1,1,18,19],[762,1,1,19,20],[765,2,2,20,22],[767,2,2,22,24],[769,1,1,24,25],[770,2,2,25,27],[776,1,1,27,28],[779,1,1,28,29],[788,1,1,29,30]]],[25,1,1,30,31,[[837,1,1,30,31]]],[27,5,5,31,36,[[865,1,1,31,32],[866,1,1,32,33],[868,1,1,33,34],[870,1,1,34,35],[873,1,1,35,36]]],[32,3,3,36,39,[[894,1,1,36,37],[895,1,1,37,38],[899,1,1,38,39]]],[37,2,2,39,41,[[911,2,2,39,41]]]],[5631,6564,7864,12546,14303,15104,15120,15680,15690,16965,17670,17715,17717,19031,19045,19122,19124,19244,19367,19395,19452,19454,19486,19506,19539,19575,19585,19750,19838,20032,21390,22142,22156,22180,22223,22254,22602,22612,22677,22882,22884]]],["+",[2,2,[[6,1,1,0,1,[[212,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]]],[6564,12546]]],["doings",[34,34,[[4,1,1,0,1,[[180,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]],[19,1,1,2,3,[[647,1,1,2,3]]],[22,3,3,3,6,[[679,1,1,3,4],[681,2,2,4,6]]],[23,17,17,6,23,[[748,2,2,6,8],[751,2,2,8,10],[755,1,1,10,11],[761,1,1,11,12],[762,1,1,12,13],[765,2,2,13,15],[767,2,2,15,17],[769,1,1,17,18],[770,2,2,18,20],[776,1,1,20,21],[779,1,1,21,22],[788,1,1,22,23]]],[25,1,1,23,24,[[837,1,1,23,24]]],[27,5,5,24,29,[[865,1,1,24,25],[866,1,1,25,26],[868,1,1,26,27],[870,1,1,27,28],[873,1,1,28,29]]],[32,3,3,29,32,[[894,1,1,29,30],[895,1,1,30,31],[899,1,1,31,32]]],[37,2,2,32,34,[[911,2,2,32,34]]]],[5631,7864,16965,17670,17715,17717,19031,19045,19122,19124,19244,19367,19395,19452,19454,19486,19506,19539,19575,19585,19750,19838,20032,21390,22142,22156,22180,22223,22254,22602,22612,22677,22882,22884]]],["endeavours",[1,1,[[18,1,1,0,1,[[505,1,1,0,1]]]],[14303]]],["inventions",[2,2,[[18,2,2,0,2,[[583,2,2,0,2]]]],[15680,15690]]],["works",[2,2,[[18,2,2,0,2,[[554,1,1,0,1],[555,1,1,1,2]]]],[15104,15120]]]]},{"k":"H4612","v":[["*",[5,5,[[10,1,1,0,1,[[300,1,1,0,1]]],[12,1,1,1,2,[[360,1,1,1,2]]],[13,2,2,2,4,[[375,1,1,2,3],[401,1,1,3,4]]],[22,1,1,4,5,[[700,1,1,4,5]]]],[9084,11011,11368,11981,18071]]],["+",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18071]]],["attendance",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9084,11368]]],["office",[1,1,[[12,1,1,0,1,[[360,1,1,0,1]]]],[11011]]],["place",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11981]]]]},{"k":"H4613","v":[["standing",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14937]]]]},{"k":"H4614","v":[["burdensome",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23048]]]]},{"k":"H4615","v":[["*",[5,5,[[18,3,3,0,3,[[546,2,2,0,2],[607,1,1,2,3]]],[22,1,1,3,4,[[729,1,1,3,4]]],[25,1,1,4,5,[[828,1,1,4,5]]]],[14937,14949,16141,18683,21155]]],["+",[2,2,[[18,2,2,0,2,[[546,1,1,0,1],[607,1,1,1,2]]]],[14949,16141]]],["deep",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14937]]],["depths",[2,2,[[22,1,1,0,1,[[729,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[18683,21155]]]]},{"k":"H4616","v":[["*",[272,252,[[0,7,6,0,6,[[11,1,1,0,1],[17,3,2,1,3],[26,1,1,3,4],[36,1,1,4,5],[49,1,1,5,6]]],[1,16,16,6,22,[[50,1,1,6,7],[53,1,1,7,8],[57,2,2,8,10],[58,2,2,10,12],[59,2,2,12,14],[60,2,2,14,16],[62,1,1,16,17],[65,2,2,17,19],[69,1,1,19,20],[72,1,1,20,21],[82,1,1,21,22]]],[2,3,3,22,25,[[106,1,1,22,23],[109,1,1,23,24],[112,1,1,24,25]]],[3,4,4,25,29,[[131,1,1,25,26],[132,1,1,26,27],[143,1,1,27,28],[152,1,1,28,29]]],[4,48,44,29,73,[[154,1,1,29,30],[155,1,1,30,31],[156,2,2,31,33],[157,5,4,33,37],[158,4,3,37,40],[160,6,5,40,45],[161,1,1,45,46],[163,3,3,46,49],[164,2,2,49,51],[165,1,1,51,52],[166,2,2,52,54],[168,2,2,54,56],[169,3,3,56,59],[172,1,1,59,60],[174,1,1,60,61],[175,1,1,61,62],[176,1,1,62,63],[177,1,1,63,64],[179,1,1,64,65],[181,4,4,65,69],[182,2,2,69,71],[183,3,2,71,73]]],[5,8,6,73,79,[[187,2,2,73,75],[189,1,1,75,76],[190,3,2,76,78],[197,2,1,78,79]]],[6,2,2,79,81,[[212,1,1,79,80],[213,1,1,80,81]]],[8,2,2,81,83,[[250,1,1,81,82],[252,1,1,82,83]]],[9,1,1,83,84,[[279,1,1,83,84]]],[10,16,14,84,98,[[292,2,2,84,86],[298,4,4,86,90],[301,8,6,90,96],[302,1,1,96,97],[305,1,1,97,98]]],[11,9,7,98,105,[[320,1,1,98,99],[322,1,1,99,100],[325,1,1,100,101],[331,2,1,101,102],[332,2,1,102,103],[334,1,1,103,104],[335,1,1,104,105]]],[12,1,1,105,106,[[365,1,1,105,106]]],[13,9,9,106,115,[[372,3,3,106,109],[376,1,1,109,110],[387,1,1,110,111],[391,1,1,111,112],[397,1,1,112,113],[398,1,1,113,114],[400,1,1,114,115]]],[14,1,1,115,116,[[411,1,1,115,116]]],[15,3,1,116,117,[[418,3,1,116,117]]],[17,3,3,117,120,[[453,1,1,117,118],[454,1,1,118,119],[475,1,1,119,120]]],[18,32,32,120,152,[[482,1,1,120,121],[483,1,1,121,122],[485,1,1,122,123],[486,1,1,123,124],[500,1,1,124,125],[502,2,2,125,127],[504,1,1,127,128],[507,1,1,128,129],[508,1,1,129,130],[521,1,1,130,131],[525,2,2,131,133],[528,1,1,133,134],[537,1,1,134,135],[545,1,1,135,136],[546,1,1,136,137],[555,1,1,137,138],[556,1,1,138,139],[574,1,1,139,140],[583,1,1,140,141],[585,1,1,141,142],[586,1,1,142,143],[596,4,4,143,147],[599,2,2,147,149],[602,1,1,149,150],[607,1,1,150,151],[620,1,1,151,152]]],[19,3,3,152,155,[[629,1,1,152,153],[642,1,1,153,154],[646,1,1,154,155]]],[22,28,24,155,179,[[683,1,1,155,156],[701,1,1,156,157],[706,1,1,157,158],[708,1,1,158,159],[715,2,1,159,160],[719,1,1,160,161],[720,1,1,161,162],[721,4,4,162,166],[722,1,1,166,167],[723,3,3,167,170],[726,3,2,170,172],[727,1,1,172,173],[733,1,1,173,174],[740,2,1,174,175],[741,1,1,175,176],[743,1,1,176,177],[744,3,2,177,179]]],[23,24,23,179,202,[[748,1,1,179,180],[751,4,4,180,184],[754,1,1,184,185],[755,1,1,185,186],[758,2,2,186,188],[769,1,1,188,189],[771,2,2,189,191],[776,3,3,191,194],[779,1,1,194,195],[780,1,1,195,196],[786,1,1,196,197],[787,1,1,197,198],[788,3,2,198,200],[794,1,1,200,201],[795,1,1,201,202]]],[25,37,35,202,237,[[805,1,1,202,203],[807,1,1,203,204],[812,1,1,204,205],[813,2,2,205,207],[815,2,2,207,209],[817,2,2,209,211],[820,1,1,211,212],[821,6,5,212,217],[822,4,3,217,220],[823,4,4,220,224],[824,1,1,224,225],[825,1,1,225,226],[826,1,1,226,227],[827,1,1,227,228],[832,1,1,228,229],[837,4,4,229,233],[839,1,1,233,234],[840,1,1,234,235],[841,1,1,235,236],[847,1,1,236,237]]],[26,2,2,237,239,[[858,2,2,237,239]]],[27,1,1,239,240,[[869,1,1,239,240]]],[28,1,1,240,241,[[878,1,1,240,241]]],[29,4,4,241,245,[[879,1,1,241,242],[880,1,1,242,243],[883,1,1,243,244],[887,1,1,244,245]]],[30,1,1,245,246,[[888,1,1,245,246]]],[32,2,2,246,248,[[898,2,2,246,248]]],[34,2,2,248,250,[[904,2,2,248,250]]],[37,2,2,250,252,[[922,1,1,250,251],[923,1,1,251,252]]]],[311,443,448,752,1105,1526,1543,1606,1720,1732,1758,1771,1778,1779,1813,1815,1876,1951,1979,2063,2156,2486,3240,3321,3445,4193,4234,4574,4887,4968,5001,5005,5044,5067,5069,5082,5086,5088,5104,5109,5138,5139,5140,5153,5155,5162,5216,5217,5229,5265,5268,5289,5313,5319,5345,5362,5380,5383,5384,5445,5477,5520,5544,5562,5588,5685,5688,5692,5698,5714,5727,5740,5747,5858,5859,5897,5916,5934,6127,6567,6570,7575,7646,8322,8773,8774,9025,9026,9028,9045,9120,9121,9140,9142,9144,9147,9166,9253,9746,9812,9894,10095,10104,10162,10189,11151,11313,11314,11315,11410,11631,11724,11858,11893,11958,12249,12414,13280,13326,13872,13981,13989,14014,14035,14238,14258,14262,14296,14331,14334,14597,14645,14647,14695,14812,14923,14953,15119,15194,15486,15659,15748,15776,15909,15969,15978,15999,16097,16098,16113,16144,16304,16453,16831,16945,17758,18093,18177,18218,18387,18471,18501,18515,18519,18530,18531,18542,18564,18565,18567,18623,18625,18643,18745,18855,18883,18905,18927,18933,19041,19129,19137,19138,19142,19219,19231,19300,19314,19541,19606,19611,19745,19760,19766,19830,19845,19981,20000,20018,20039,20200,20251,20546,20569,20675,20696,20699,20736,20742,20816,20825,20890,20904,20909,20917,20921,20939,20954,20959,20972,20982,20985,20988,21003,21028,21067,21093,21120,21244,21364,21381,21389,21391,21441,21460,21481,21673,22005,22007,22198,22349,22377,22386,22437,22507,22519,22653,22664,22750,22763,23052,23063]]],["+",[46,43,[[0,1,1,0,1,[[17,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[4,2,2,2,4,[[172,1,1,2,3],[179,1,1,3,4]]],[5,1,1,4,5,[[189,1,1,4,5]]],[8,1,1,5,6,[[250,1,1,5,6]]],[9,1,1,6,7,[[279,1,1,6,7]]],[10,8,6,7,13,[[298,1,1,7,8],[301,6,4,8,12],[305,1,1,12,13]]],[13,1,1,13,14,[[372,1,1,13,14]]],[18,11,11,14,25,[[483,1,1,14,15],[500,1,1,15,16],[502,2,2,16,18],[508,1,1,18,19],[521,1,1,19,20],[556,1,1,20,21],[583,1,1,21,22],[586,1,1,22,23],[602,1,1,23,24],[620,1,1,24,25]]],[22,8,7,25,32,[[720,1,1,25,26],[723,1,1,26,27],[726,1,1,27,28],[740,2,1,28,29],[741,1,1,29,30],[743,1,1,30,31],[744,1,1,31,32]]],[23,4,4,32,36,[[751,1,1,32,33],[758,2,2,33,35],[786,1,1,35,36]]],[25,6,6,36,42,[[821,4,4,36,40],[837,1,1,40,41],[847,1,1,41,42]]],[26,1,1,42,43,[[858,1,1,42,43]]]],[443,4234,5445,5588,5897,7575,8322,9026,9120,9121,9140,9142,9253,11314,13989,14238,14258,14262,14334,14597,15194,15659,15776,16113,16304,18501,18565,18623,18855,18883,18905,18927,19129,19300,19314,19981,20904,20909,20917,20939,21389,21673,22005]]],["For",[1,1,[[18,1,1,0,1,[[599,1,1,0,1]]]],[16097]]],["That",[30,30,[[1,1,1,0,1,[[53,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[3,1,1,2,3,[[131,1,1,2,3]]],[4,3,3,3,6,[[158,1,1,3,4],[163,1,1,4,5],[181,1,1,5,6]]],[5,2,2,6,8,[[190,2,2,6,8]]],[6,1,1,8,9,[[212,1,1,8,9]]],[10,3,3,9,12,[[292,1,1,9,10],[298,2,2,10,12]]],[13,1,1,12,13,[[372,1,1,12,13]]],[18,5,5,13,18,[[486,1,1,13,14],[537,1,1,14,15],[545,1,1,15,16],[555,1,1,16,17],[585,1,1,17,18]]],[19,1,1,18,19,[[629,1,1,18,19]]],[22,3,3,19,22,[[719,1,1,19,20],[723,1,1,20,21],[744,1,1,21,22]]],[23,1,1,22,23,[[755,1,1,22,23]]],[25,6,6,23,29,[[805,1,1,23,24],[812,1,1,24,25],[815,2,2,25,27],[817,2,2,27,29]]],[29,1,1,29,30,[[887,1,1,29,30]]]],[1606,3445,4193,5088,5229,5692,5916,5934,6567,8774,9025,9045,11313,14035,14812,14923,15119,15748,16453,18471,18567,18933,19231,20546,20675,20736,20742,20816,20825,22507]]],["Therefore",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12414]]],["because",[2,2,[[11,1,1,0,1,[[325,1,1,0,1]]],[22,1,1,1,2,[[733,1,1,1,2]]]],[9894,18745]]],["end",[4,4,[[1,1,1,0,1,[[57,1,1,0,1]]],[2,1,1,1,2,[[106,1,1,1,2]]],[25,2,2,2,4,[[821,1,1,2,3],[832,1,1,3,4]]]],[1732,3240,20921,21244]]],["for",[5,5,[[0,1,1,0,1,[[17,1,1,0,1]]],[10,1,1,1,2,[[301,1,1,1,2]]],[17,1,1,2,3,[[453,1,1,2,3]]],[23,1,1,3,4,[[787,1,1,3,4]]],[25,1,1,4,5,[[824,1,1,4,5]]]],[448,9147,13280,20000,21028]]],["intent",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9812]]],["of",[10,10,[[13,1,1,0,1,[[387,1,1,0,1]]],[18,7,7,1,8,[[482,1,1,1,2],[485,1,1,2,3],[504,1,1,3,4],[525,1,1,4,5],[546,1,1,5,6],[574,1,1,6,7],[599,1,1,7,8]]],[22,1,1,8,9,[[727,1,1,8,9]]],[25,1,1,9,10,[[822,1,1,9,10]]]],[11631,13981,14014,14296,14645,14953,15486,16098,18643,20972]]],["sake",[12,8,[[11,5,3,0,3,[[320,1,1,0,1],[331,2,1,1,2],[332,2,1,2,3]]],[22,6,4,3,7,[[715,2,1,3,4],[721,2,2,4,6],[726,2,1,6,7]]],[26,1,1,7,8,[[858,1,1,7,8]]]],[9746,10095,10104,18387,18519,18530,18625,22007]]],["sakes",[3,3,[[4,1,1,0,1,[[155,1,1,0,1]]],[25,2,2,1,3,[[837,2,2,1,3]]]],[5001,21381,21391]]],["that",[140,134,[[0,4,4,0,4,[[11,1,1,0,1],[17,1,1,1,2],[26,1,1,2,3],[36,1,1,3,4]]],[1,13,13,4,17,[[57,1,1,4,5],[58,2,2,5,7],[59,2,2,7,9],[60,2,2,9,11],[62,1,1,11,12],[65,2,2,12,14],[69,1,1,14,15],[72,1,1,15,16],[82,1,1,16,17]]],[3,2,2,17,19,[[143,1,1,17,18],[152,1,1,18,19]]],[4,40,37,19,56,[[154,1,1,19,20],[156,2,2,20,22],[157,5,4,22,26],[158,3,3,26,29],[160,5,4,29,33],[161,1,1,33,34],[163,2,2,34,36],[164,2,2,36,38],[165,1,1,38,39],[166,2,2,39,41],[168,2,2,41,43],[169,3,3,43,46],[174,1,1,46,47],[175,1,1,47,48],[176,1,1,48,49],[177,1,1,49,50],[181,2,2,50,52],[182,2,2,52,54],[183,3,2,54,56]]],[5,5,4,56,60,[[187,2,2,56,58],[190,1,1,58,59],[197,2,1,59,60]]],[6,1,1,60,61,[[213,1,1,60,61]]],[8,1,1,61,62,[[252,1,1,61,62]]],[10,4,4,62,66,[[292,1,1,62,63],[298,1,1,63,64],[301,1,1,64,65],[302,1,1,65,66]]],[11,2,2,66,68,[[334,1,1,66,67],[335,1,1,67,68]]],[12,1,1,68,69,[[365,1,1,68,69]]],[13,6,6,69,75,[[372,1,1,69,70],[376,1,1,70,71],[391,1,1,71,72],[397,1,1,72,73],[398,1,1,73,74],[400,1,1,74,75]]],[14,1,1,75,76,[[411,1,1,75,76]]],[15,2,1,76,77,[[418,2,1,76,77]]],[17,2,2,77,79,[[454,1,1,77,78],[475,1,1,78,79]]],[18,8,8,79,87,[[507,1,1,79,80],[525,1,1,80,81],[528,1,1,81,82],[596,4,4,82,86],[607,1,1,86,87]]],[19,2,2,87,89,[[642,1,1,87,88],[646,1,1,88,89]]],[22,9,9,89,98,[[683,1,1,89,90],[701,1,1,90,91],[706,1,1,91,92],[708,1,1,92,93],[721,2,2,93,95],[722,1,1,95,96],[723,1,1,96,97],[744,1,1,97,98]]],[23,14,13,98,111,[[748,1,1,98,99],[751,2,2,99,101],[754,1,1,101,102],[769,1,1,102,103],[771,1,1,103,104],[776,1,1,104,105],[779,1,1,105,106],[780,1,1,106,107],[788,3,2,107,109],[794,1,1,109,110],[795,1,1,110,111]]],[25,13,13,111,124,[[807,1,1,111,112],[813,2,2,112,114],[820,1,1,114,115],[821,1,1,115,116],[822,2,2,116,118],[825,1,1,118,119],[826,1,1,119,120],[827,1,1,120,121],[839,1,1,121,122],[840,1,1,122,123],[841,1,1,123,124]]],[27,1,1,124,125,[[869,1,1,124,125]]],[28,1,1,125,126,[[878,1,1,125,126]]],[29,2,2,126,128,[[879,1,1,126,127],[883,1,1,127,128]]],[30,1,1,128,129,[[888,1,1,128,129]]],[32,2,2,129,131,[[898,2,2,129,131]]],[34,2,2,131,133,[[904,2,2,131,133]]],[37,1,1,133,134,[[922,1,1,133,134]]]],[311,443,752,1105,1720,1758,1771,1778,1779,1813,1815,1876,1951,1979,2063,2156,2486,4574,4887,4968,5005,5044,5067,5069,5082,5086,5088,5104,5109,5138,5140,5153,5155,5162,5216,5217,5265,5268,5289,5313,5319,5345,5362,5380,5383,5384,5477,5520,5544,5562,5685,5688,5714,5727,5740,5747,5858,5859,5934,6127,6570,7646,8773,9028,9144,9166,10162,10189,11151,11315,11410,11724,11858,11893,11958,12249,12414,13326,13872,14331,14647,14695,15909,15969,15978,15999,16144,16831,16945,17758,18093,18177,18218,18515,18531,18542,18564,18933,19041,19137,19142,19219,19541,19611,19745,19830,19845,20018,20039,20200,20251,20569,20696,20699,20890,20921,20954,20959,21067,21093,21120,21441,21460,21481,22198,22349,22377,22437,22519,22653,22664,22750,22763,23052]]],["to",[17,17,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,1,1,1,2,[[50,1,1,1,2]]],[2,1,1,2,3,[[109,1,1,2,3]]],[4,2,2,3,5,[[160,1,1,3,4],[181,1,1,4,5]]],[23,4,4,5,9,[[751,1,1,5,6],[771,1,1,6,7],[776,2,2,7,9]]],[25,6,6,9,15,[[822,1,1,9,10],[823,4,4,10,14],[837,1,1,14,15]]],[29,1,1,15,16,[[880,1,1,15,16]]],[37,1,1,16,17,[[923,1,1,16,17]]]],[1526,1543,3321,5139,5698,19138,19606,19760,19766,20954,20982,20985,20988,21003,21364,22386,23063]]]]},{"k":"H4617","v":[["*",[8,8,[[17,2,2,0,2,[[467,2,2,0,2]]],[19,5,5,2,7,[[642,2,2,2,4],[643,2,2,4,6],[656,1,1,6,7]]],[32,1,1,7,8,[[895,1,1,7,8]]]],[13631,13633,16808,16830,16841,16844,17243,22615]]],["answer",[7,7,[[17,2,2,0,2,[[467,2,2,0,2]]],[19,4,4,2,6,[[642,2,2,2,4],[643,1,1,4,5],[656,1,1,5,6]]],[32,1,1,6,7,[[895,1,1,6,7]]]],[13631,13633,16808,16830,16841,17243,22615]]],["himself",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16844]]]]},{"k":"H4618","v":[["*",[2,2,[[8,1,1,0,1,[[249,1,1,0,1]]],[18,1,1,1,2,[[606,1,1,1,2]]]],[7522,16135]]],["acre",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7522]]],["furrows",[1,1,[[18,1,1,0,1,[[606,1,1,0,1]]]],[16135]]]]},{"k":"H4619","v":[["Maaz",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10333]]]]},{"k":"H4620","v":[["sorrow",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18673]]]]},{"k":"H4621","v":[["*",[2,2,[[22,1,1,0,1,[[722,1,1,0,1]]],[23,1,1,1,2,[[754,1,1,1,2]]]],[18545,19204]]],["axe",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19204]]],["tongs",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18545]]]]},{"k":"H4622","v":[["restraint",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7514]]]]},{"k":"H4623","v":[["over",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17141]]]]},{"k":"H4624","v":[["battlement",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5478]]]]},{"k":"H4625","v":[["things",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18496]]]]},{"k":"H4626","v":[["*",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[8970,22717]]],["nakedness",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22717]]],["proportion",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8970]]]]},{"k":"H4627","v":[["*",[9,8,[[25,9,8,0,8,[[828,9,8,0,8]]]],[21130,21134,21138,21140,21146,21148,21154,21155]]],["market",[4,4,[[25,4,4,0,4,[[828,4,4,0,4]]]],[21134,21138,21140,21146]]],["merchandise",[5,4,[[25,5,4,0,4,[[828,5,4,0,4]]]],[21130,21148,21154,21155]]]]},{"k":"H4628","v":[["*",[14,14,[[12,5,5,0,5,[[344,1,1,0,1],[349,1,1,1,2],[363,3,3,2,5]]],[13,2,2,5,7,[[398,1,1,5,6],[399,1,1,6,7]]],[18,3,3,7,10,[[552,1,1,7,8],[580,1,1,8,9],[584,1,1,9,10]]],[22,3,3,10,13,[[721,1,1,10,11],[723,1,1,11,12],[737,1,1,12,13]]],[26,1,1,13,14,[[857,1,1,13,14]]]],[10563,10735,11093,11095,11107,11905,11922,15077,15561,15702,18510,18567,18819,21966]]],["+",[6,6,[[18,3,3,0,3,[[552,1,1,0,1],[580,1,1,1,2],[584,1,1,2,3]]],[22,3,3,3,6,[[721,1,1,3,4],[723,1,1,4,5],[737,1,1,5,6]]]],[15077,15561,15702,18510,18567,18819]]],["side",[2,2,[[13,2,2,0,2,[[398,1,1,0,1],[399,1,1,1,2]]]],[11905,11922]]],["west",[2,2,[[12,1,1,0,1,[[349,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]]],[10735,21966]]],["westward",[4,4,[[12,4,4,0,4,[[344,1,1,0,1],[363,3,3,1,4]]]],[10563,11093,11095,11107]]]]},{"k":"H4629","v":[["+",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7087]]]]},{"k":"H4630","v":[["+",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7641]]]]},{"k":"H4631","v":[["*",[37,34,[[0,11,11,0,11,[[18,1,1,0,1],[22,5,5,1,6],[24,1,1,6,7],[48,3,3,7,10],[49,1,1,10,11]]],[5,8,6,11,17,[[196,8,6,11,17]]],[6,1,1,17,18,[[216,1,1,17,18]]],[8,7,6,18,24,[[248,1,1,18,19],[257,1,1,19,20],[259,5,4,20,24]]],[9,1,1,24,25,[[289,1,1,24,25]]],[10,4,4,25,29,[[308,2,2,25,27],[309,2,2,27,29]]],[12,1,1,29,30,[[348,1,1,29,30]]],[22,2,2,30,32,[[680,1,1,30,31],[710,1,1,31,32]]],[23,1,1,32,33,[[751,1,1,32,33]]],[25,1,1,33,34,[[834,1,1,33,34]]]],[487,580,582,588,590,591,667,1502,1503,1505,1519,6080,6081,6082,6086,6087,6091,6656,7491,7788,7842,7846,7847,7849,8666,9345,9354,9396,9400,10688,17704,18273,19130,21307]]],["+",[2,2,[[5,1,1,0,1,[[196,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]]],[6087,7846]]],["cave",[28,26,[[0,11,11,0,11,[[18,1,1,0,1],[22,5,5,1,6],[24,1,1,6,7],[48,3,3,7,10],[49,1,1,10,11]]],[5,6,5,11,16,[[196,6,5,11,16]]],[8,5,4,16,20,[[257,1,1,16,17],[259,4,3,17,20]]],[9,1,1,20,21,[[289,1,1,20,21]]],[10,4,4,21,25,[[308,2,2,21,23],[309,2,2,23,25]]],[12,1,1,25,26,[[348,1,1,25,26]]]],[487,580,582,588,590,591,667,1502,1503,1505,1519,6080,6081,6082,6086,6091,7788,7842,7847,7849,8666,9345,9354,9396,9400,10688]]],["cave's",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6091]]],["caves",[3,3,[[6,1,1,0,1,[[216,1,1,0,1]]],[8,1,1,1,2,[[248,1,1,1,2]]],[25,1,1,2,3,[[834,1,1,2,3]]]],[6656,7491,21307]]],["den",[1,1,[[23,1,1,0,1,[[751,1,1,0,1]]]],[19130]]],["dens",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18273]]],["holes",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17704]]]]},{"k":"H4632","v":[["Mearah",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6158]]]]},{"k":"H4633","v":[["preparations",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16841]]]]},{"k":"H4634","v":[["*",[19,17,[[1,1,1,0,1,[[88,1,1,0,1]]],[2,1,1,1,2,[[113,1,1,1,2]]],[6,1,1,2,3,[[216,1,1,2,3]]],[8,15,13,3,16,[[239,4,3,3,6],[252,10,9,6,15],[258,1,1,15,16]]],[12,1,1,16,17,[[349,1,1,16,17]]]],[2701,3452,6680,7299,7309,7313,7626,7628,7638,7639,7640,7644,7654,7663,7666,7813,10758]]],["+",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7309]]],["armies",[6,6,[[8,6,6,0,6,[[252,5,5,0,5],[258,1,1,5,6]]]],[7626,7628,7644,7654,7663,7813]]],["army",[7,5,[[8,7,5,0,5,[[239,3,2,0,2],[252,4,3,2,5]]]],[7299,7313,7639,7640,7666]]],["fight",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7638]]],["order",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2701]]],["place",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6680]]],["rank",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10758]]],["rows",[1,1,[[2,1,1,0,1,[[113,1,1,0,1]]]],[3452]]]]},{"k":"H4635","v":[["*",[9,9,[[2,2,2,0,2,[[113,2,2,0,2]]],[12,3,3,2,5,[[346,1,1,2,3],[360,1,1,3,4],[365,1,1,4,5]]],[13,3,3,5,8,[[368,1,1,5,6],[379,1,1,6,7],[395,1,1,7,8]]],[15,1,1,8,9,[[422,1,1,8,9]]]],[3452,3453,10647,11012,11159,11215,11464,11809,12582]]],["+",[4,4,[[12,2,2,0,2,[[346,1,1,0,1],[360,1,1,1,2]]],[13,1,1,2,3,[[379,1,1,2,3]]],[15,1,1,3,4,[[422,1,1,3,4]]]],[10647,11012,11464,12582]]],["row",[2,2,[[2,2,2,0,2,[[113,2,2,0,2]]]],[3452,3453]]],["shewbread",[3,3,[[12,1,1,0,1,[[365,1,1,0,1]]],[13,2,2,1,3,[[368,1,1,1,2],[395,1,1,2,3]]]],[11159,11215,11809]]]]},{"k":"H4636","v":[["naked",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11779]]]]},{"k":"H4637","v":[["terror",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17883]]]]},{"k":"H4638","v":[["Maarath",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6261]]]]},{"k":"H4639","v":[["*",[234,220,[[0,6,6,0,6,[[4,1,1,0,1],[19,1,1,1,2],[39,1,1,2,3],[43,1,1,3,4],[45,1,1,4,5],[46,1,1,5,6]]],[1,39,36,6,42,[[54,2,2,6,8],[72,4,3,8,11],[73,1,1,11,12],[75,3,3,12,15],[76,2,2,15,17],[77,9,8,17,25],[79,2,2,25,27],[81,1,1,27,28],[83,1,1,28,29],[85,3,3,29,32],[86,1,1,32,33],[87,2,2,33,35],[88,8,7,35,42]]],[2,2,1,42,43,[[107,2,1,42,43]]],[3,4,4,43,47,[[124,1,1,43,44],[132,1,1,44,45],[147,2,2,45,47]]],[4,13,13,47,60,[[154,1,1,47,48],[155,1,1,48,49],[156,1,1,49,50],[163,2,2,50,52],[166,1,1,52,53],[167,1,1,53,54],[168,1,1,54,55],[176,1,1,55,56],[179,1,1,56,57],[180,1,1,57,58],[182,1,1,58,59],[183,1,1,59,60]]],[5,1,1,60,61,[[210,1,1,60,61]]],[6,4,4,61,65,[[212,2,2,61,63],[223,1,1,63,64],[229,1,1,64,65]]],[8,4,4,65,69,[[243,1,1,65,66],[254,1,1,66,67],[255,1,1,67,68],[260,1,1,68,69]]],[10,13,11,69,80,[[297,11,9,69,78],[303,1,1,78,79],[306,1,1,79,80]]],[11,4,4,80,84,[[328,1,1,80,81],[331,1,1,81,82],[334,1,1,82,83],[335,1,1,83,84]]],[12,2,2,84,86,[[346,1,1,84,85],[360,1,1,85,86]]],[13,10,10,86,96,[[369,1,1,86,87],[370,2,2,87,89],[382,1,1,89,90],[383,1,1,90,91],[386,1,1,91,92],[397,1,1,92,93],[398,2,2,93,95],[400,1,1,95,96]]],[14,1,1,96,97,[[411,1,1,96,97]]],[15,1,1,97,98,[[418,1,1,97,98]]],[16,1,1,98,99,[[435,1,1,98,99]]],[17,5,5,99,104,[[436,1,1,99,100],[449,1,1,100,101],[468,1,1,101,102],[469,1,1,102,103],[472,1,1,103,104]]],[18,39,38,104,142,[[485,2,2,104,106],[496,1,1,106,107],[505,2,2,107,109],[510,2,2,109,111],[522,1,1,111,112],[539,1,1,112,113],[541,1,1,113,114],[543,1,1,114,115],[563,1,1,115,116],[567,2,1,116,117],[569,2,2,117,119],[579,1,1,119,120],[580,1,1,120,121],[581,3,3,121,124],[583,3,3,124,127],[584,2,2,127,129],[588,3,3,129,132],[592,1,1,132,133],[595,1,1,133,134],[612,1,1,134,135],[615,1,1,135,136],[616,1,1,136,137],[620,1,1,137,138],[622,4,4,138,142]]],[19,3,3,142,145,[[643,2,2,142,144],[658,1,1,144,145]]],[20,21,19,145,164,[[659,1,1,145,146],[660,3,3,146,149],[661,3,3,149,152],[662,2,2,152,154],[663,1,1,154,155],[665,1,1,155,156],[666,6,4,156,160],[667,2,2,160,162],[669,1,1,162,163],[670,1,1,163,164]]],[21,1,1,164,165,[[677,1,1,164,165]]],[22,27,24,165,189,[[680,1,1,165,166],[681,1,1,166,167],[683,2,2,167,169],[688,1,1,169,170],[695,1,1,170,171],[697,3,3,171,174],[704,1,1,174,175],[706,2,1,175,176],[707,3,3,176,179],[710,1,1,179,180],[715,1,1,180,181],[719,1,1,181,182],[732,1,1,182,183],[735,1,1,183,184],[737,3,1,184,185],[738,1,1,185,186],[742,1,1,186,187],[743,1,1,187,188],[744,1,1,188,189]]],[23,14,13,189,202,[[745,1,1,189,190],[751,1,1,190,191],[754,4,3,191,194],[769,3,3,194,197],[776,1,1,197,198],[788,1,1,198,199],[792,1,1,199,200],[795,2,2,200,202]]],[24,2,2,202,204,[[799,1,1,202,203],[800,1,1,203,204]]],[25,7,6,204,210,[[802,2,1,204,205],[807,1,1,205,206],[817,1,1,206,207],[828,2,2,207,209],[847,1,1,209,210]]],[26,1,1,210,211,[[858,1,1,210,211]]],[27,2,2,211,213,[[874,1,1,211,212],[875,1,1,212,213]]],[29,1,1,213,214,[[886,1,1,213,214]]],[31,1,1,214,215,[[891,1,1,214,215]]],[32,2,2,215,217,[[897,1,1,215,216],[898,1,1,216,217]]],[34,1,1,217,218,[[905,1,1,217,218]]],[36,2,2,218,220,[[910,2,2,218,220]]]],[134,504,1189,1339,1419,1423,1636,1645,2156,2160,2168,2187,2236,2266,2271,2276,2288,2299,2301,2304,2307,2308,2315,2325,2332,2407,2417,2454,2506,2574,2601,2603,2633,2637,2651,2667,2669,2672,2679,2686,2691,2693,3254,3943,4222,4684,4715,4945,4999,5032,5211,5215,5319,5329,5357,5544,5600,5623,5717,5757,6507,6552,6555,6896,7040,7377,7710,7749,7863,8942,8951,8953,8956,8960,8962,8963,8965,8967,9195,9290,9973,10079,10162,10184,10646,11011,11239,11251,11252,11523,11527,11624,11875,11894,11905,11958,12250,12415,12868,12879,13196,13667,13702,13776,14015,14018,14169,14303,14304,14370,14381,14598,14839,14859,14876,15292,15395,15415,15416,15546,15571,15584,15595,15602,15664,15686,15690,15721,15723,15795,15799,15800,15834,15886,16190,16239,16253,16298,16324,16329,16330,16337,16843,16851,17315,17329,17337,17344,17350,17370,17376,17381,17384,17385,17403,17442,17467,17469,17472,17475,17482,17485,17518,17537,17628,17693,17731,17751,17758,17862,17991,18018,18019,18029,18142,18185,18208,18209,18216,18276,18371,18480,18739,18777,18806,18842,18893,18919,18940,18962,19132,19204,19210,19216,19540,19541,19548,19761,20018,20087,20222,20230,20418,20422,20480,20569,20792,21137,21139,21656,22002,22268,22285,22488,22568,22646,22664,22785,22869,22872]]],["+",[13,13,[[0,2,2,0,2,[[4,1,1,0,1],[39,1,1,1,2]]],[1,9,9,2,11,[[54,1,1,2,3],[75,1,1,3,4],[76,2,2,4,6],[77,1,1,6,7],[85,1,1,7,8],[87,2,2,8,10],[88,1,1,10,11]]],[13,1,1,11,12,[[382,1,1,11,12]]],[18,1,1,12,13,[[496,1,1,12,13]]]],[134,1189,1636,2271,2276,2288,2332,2603,2637,2651,2693,11523,14169]]],["acts",[4,4,[[4,2,2,0,2,[[163,2,2,0,2]]],[11,1,1,2,3,[[335,1,1,2,3]]],[16,1,1,3,4,[[435,1,1,3,4]]]],[5211,5215,10184,12868]]],["art",[2,2,[[1,2,2,0,2,[[79,2,2,0,2]]]],[2407,2417]]],["business",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7749]]],["deed",[1,1,[[0,1,1,0,1,[[43,1,1,0,1]]]],[1339]]],["deeds",[2,2,[[0,1,1,0,1,[[19,1,1,0,1]]],[14,1,1,1,2,[[411,1,1,1,2]]]],[504,12250]]],["do",[1,1,[[6,1,1,0,1,[[223,1,1,0,1]]]],[6896]]],["doing",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14859]]],["doings",[3,2,[[2,2,1,0,1,[[107,2,1,0,1]]],[13,1,1,1,2,[[383,1,1,1,2]]]],[3254,11527]]],["labour",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22785]]],["labours",[3,2,[[1,2,1,0,1,[[72,2,1,0,1]]],[36,1,1,1,2,[[910,1,1,1,2]]]],[2160,22872]]],["made",[2,2,[[12,1,1,0,1,[[346,1,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]]],[10646,14598]]],["making",[2,2,[[25,2,2,0,2,[[828,2,2,0,2]]]],[21137,21139]]],["occupation",[2,2,[[0,2,2,0,2,[[45,1,1,0,1],[46,1,1,1,2]]]],[1419,1423]]],["offered",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11252]]],["operation",[2,2,[[18,1,1,0,1,[[505,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]]],[14304,17751]]],["possessions",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7863]]],["purpose",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13667]]],["set",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17731]]],["work",[114,104,[[1,24,22,0,22,[[72,1,1,0,1],[73,1,1,1,2],[75,2,2,2,4],[77,8,7,4,11],[81,1,1,11,12],[83,1,1,12,13],[85,2,2,13,15],[86,1,1,15,16],[88,7,6,16,22]]],[3,2,2,22,24,[[124,1,1,22,23],[147,1,1,23,24]]],[4,7,7,24,31,[[156,1,1,24,25],[166,1,1,25,26],[176,1,1,26,27],[179,1,1,27,28],[180,1,1,28,29],[182,1,1,29,30],[183,1,1,30,31]]],[6,1,1,31,32,[[229,1,1,31,32]]],[10,11,9,32,41,[[297,10,8,32,40],[306,1,1,40,41]]],[11,1,1,41,42,[[331,1,1,41,42]]],[12,1,1,42,43,[[360,1,1,42,43]]],[13,4,4,43,47,[[369,1,1,43,44],[370,1,1,44,45],[397,1,1,45,46],[398,1,1,46,47]]],[17,4,4,47,51,[[436,1,1,47,48],[449,1,1,48,49],[469,1,1,49,50],[472,1,1,50,51]]],[18,9,8,51,59,[[485,1,1,51,52],[505,1,1,52,53],[539,1,1,53,54],[567,2,1,54,55],[579,1,1,55,56],[592,1,1,56,57],[612,1,1,57,58],[620,1,1,58,59]]],[19,1,1,59,60,[[643,1,1,59,60]]],[20,15,13,60,73,[[660,1,1,60,61],[661,2,2,61,63],[662,2,2,63,65],[663,1,1,65,66],[665,1,1,66,67],[666,6,4,67,71],[667,1,1,71,72],[670,1,1,72,73]]],[21,1,1,73,74,[[677,1,1,73,74]]],[22,17,16,74,90,[[680,1,1,74,75],[683,1,1,75,76],[688,1,1,76,77],[695,1,1,77,78],[697,3,3,78,81],[706,2,1,81,82],[707,2,2,82,84],[710,1,1,84,85],[715,1,1,85,86],[732,1,1,86,87],[738,1,1,87,88],[742,1,1,88,89],[743,1,1,89,90]]],[23,7,6,90,96,[[754,4,3,90,93],[776,1,1,93,94],[795,2,2,94,96]]],[24,2,2,96,98,[[799,1,1,96,97],[800,1,1,97,98]]],[25,3,2,98,100,[[802,2,1,98,99],[817,1,1,99,100]]],[27,2,2,100,102,[[874,1,1,100,101],[875,1,1,101,102]]],[32,1,1,102,103,[[897,1,1,102,103]]],[36,1,1,103,104,[[910,1,1,103,104]]]],[2156,2187,2236,2266,2299,2301,2304,2307,2308,2315,2325,2454,2506,2574,2601,2633,2667,2669,2672,2679,2686,2691,3943,4684,5032,5319,5544,5600,5623,5717,5757,7040,8942,8951,8953,8956,8962,8963,8965,8967,9290,10079,11011,11239,11251,11875,11894,12879,13196,13702,13776,14015,14303,14839,15395,15546,15834,16190,16298,16851,17350,17370,17376,17384,17385,17403,17442,17467,17469,17472,17475,17485,17537,17628,17693,17758,17862,17991,18018,18019,18029,18185,18209,18216,18276,18371,18739,18842,18893,18919,19204,19210,19216,19761,20222,20230,20418,20422,20480,20792,22268,22285,22646,22869]]],["working",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21656]]],["workmanship",[1,1,[[11,1,1,0,1,[[328,1,1,0,1]]]],[9973]]],["works",[72,70,[[1,2,2,0,2,[[54,1,1,0,1],[72,1,1,1,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[4,4,4,3,7,[[154,1,1,3,4],[155,1,1,4,5],[167,1,1,5,6],[168,1,1,6,7]]],[5,1,1,7,8,[[210,1,1,7,8]]],[6,2,2,8,10,[[212,2,2,8,10]]],[8,2,2,10,12,[[243,1,1,10,11],[254,1,1,11,12]]],[10,1,1,12,13,[[303,1,1,12,13]]],[11,1,1,13,14,[[334,1,1,13,14]]],[13,3,3,14,17,[[386,1,1,14,15],[398,1,1,15,16],[400,1,1,16,17]]],[15,1,1,17,18,[[418,1,1,17,18]]],[18,26,26,18,44,[[485,1,1,18,19],[510,2,2,19,21],[543,1,1,21,22],[563,1,1,22,23],[569,2,2,23,25],[580,1,1,25,26],[581,3,3,26,29],[583,3,3,29,32],[584,2,2,32,34],[588,3,3,34,37],[595,1,1,37,38],[615,1,1,38,39],[616,1,1,39,40],[622,4,4,40,44]]],[19,2,2,44,46,[[643,1,1,44,45],[658,1,1,45,46]]],[20,6,6,46,52,[[659,1,1,46,47],[660,2,2,47,49],[661,1,1,49,50],[667,1,1,50,51],[669,1,1,51,52]]],[22,8,6,52,58,[[704,1,1,52,53],[707,1,1,53,54],[719,1,1,54,55],[735,1,1,55,56],[737,3,1,56,57],[744,1,1,57,58]]],[23,7,7,58,65,[[745,1,1,58,59],[751,1,1,59,60],[769,3,3,60,63],[788,1,1,63,64],[792,1,1,64,65]]],[25,1,1,65,66,[[807,1,1,65,66]]],[26,1,1,66,67,[[858,1,1,66,67]]],[29,1,1,67,68,[[886,1,1,67,68]]],[31,1,1,68,69,[[891,1,1,68,69]]],[32,1,1,69,70,[[898,1,1,69,70]]]],[1645,2168,4222,4945,4999,5329,5357,6507,6552,6555,7377,7710,9195,10162,11624,11905,11958,12415,14018,14370,14381,14876,15292,15415,15416,15571,15584,15595,15602,15664,15686,15690,15721,15723,15795,15799,15800,15886,16239,16253,16324,16329,16330,16337,16843,17315,17329,17337,17344,17381,17482,17518,18142,18208,18480,18777,18806,18940,18962,19132,19540,19541,19548,20018,20087,20569,22002,22488,22568,22664]]],["wrought",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[10,1,1,1,2,[[297,1,1,1,2]]]],[4715,8960]]]]},{"k":"H4640","v":[["*",[2,2,[[1,1,1,0,1,[[67,1,1,0,1]]],[12,1,1,1,2,[[346,1,1,1,2]]]],[2019,10627]]],["Maasiai",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10627]]],["work",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2019]]]]},{"k":"H4641","v":[["Maaseiah",[23,23,[[12,2,2,0,2,[[352,2,2,0,2]]],[13,4,4,2,6,[[389,1,1,2,3],[392,1,1,3,4],[394,1,1,4,5],[400,1,1,5,6]]],[14,4,4,6,10,[[412,4,4,6,10]]],[15,8,8,10,18,[[415,1,1,10,11],[420,2,2,11,13],[422,1,1,13,14],[423,2,2,14,16],[424,2,2,16,18]]],[23,5,5,18,23,[[765,1,1,18,19],[773,2,2,19,21],[779,1,1,21,22],[781,1,1,22,23]]]],[10809,10811,11657,11743,11771,11941,12270,12273,12274,12282,12350,12497,12500,12574,12593,12595,12665,12666,19441,19656,19660,19827,19877]]]]},{"k":"H4642","v":[["*",[2,2,[[19,1,1,0,1,[[655,1,1,0,1]]],[22,1,1,1,2,[[711,1,1,1,2]]]],[17212,18294]]],["oppressions",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18294]]],["oppressor",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17212]]]]},{"k":"H4643","v":[["*",[32,27,[[0,1,1,0,1,[[13,1,1,0,1]]],[2,3,3,1,4,[[116,3,3,1,4]]],[3,6,4,4,8,[[134,6,4,4,8]]],[4,7,6,8,14,[[164,3,3,8,11],[166,2,2,11,13],[178,2,1,13,14]]],[13,4,3,14,17,[[397,4,3,14,17]]],[15,6,5,17,22,[[422,3,2,17,19],[424,1,1,19,20],[425,2,2,20,22]]],[25,2,2,22,24,[[846,2,2,22,24]]],[29,1,1,24,25,[[882,1,1,24,25]]],[38,2,2,25,27,[[927,2,2,25,27]]]],[356,3600,3601,3602,4278,4281,4283,4285,5246,5251,5257,5313,5318,5578,11859,11860,11866,12586,12587,12668,12676,12683,21641,21644,22414,23128,23130]]],["+",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3601]]],["part",[2,2,[[25,2,2,0,2,[[846,2,2,0,2]]]],[21641,21644]]],["tenth",[2,2,[[3,2,2,0,2,[[134,2,2,0,2]]]],[4278,4283]]],["tithe",[11,10,[[2,2,2,0,2,[[116,2,2,0,2]]],[3,1,1,2,3,[[134,1,1,2,3]]],[4,3,3,3,6,[[164,1,1,3,4],[166,2,2,4,6]]],[13,3,2,6,8,[[397,3,2,6,8]]],[15,2,2,8,10,[[422,1,1,8,9],[425,1,1,9,10]]]],[3600,3602,4283,5257,5313,5318,11859,11860,12587,12683]]],["tithes",[15,15,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,3,3,1,4,[[134,3,3,1,4]]],[4,3,3,4,7,[[164,2,2,4,6],[178,1,1,6,7]]],[13,1,1,7,8,[[397,1,1,7,8]]],[15,4,4,8,12,[[422,2,2,8,10],[424,1,1,10,11],[425,1,1,11,12]]],[29,1,1,12,13,[[882,1,1,12,13]]],[38,2,2,13,15,[[927,2,2,13,15]]]],[356,4281,4283,4285,5246,5251,5578,11866,12586,12587,12668,12676,22414,23128,23130]]],["tithing",[1,1,[[4,1,1,0,1,[[178,1,1,0,1]]]],[5578]]]]},{"k":"H4644","v":[["Memphis",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22214]]]]},{"k":"H4645","v":[["mark",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13028]]]]},{"k":"H4646","v":[["up",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13128]]]]},{"k":"H4647","v":[["bellows",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19118]]]]},{"k":"H4648","v":[["Mephibosheth",[15,13,[[9,15,13,0,13,[[270,1,1,0,1],[275,7,5,1,6],[282,2,2,6,8],[285,3,3,8,11],[287,2,2,11,13]]]],[8124,8233,8237,8238,8239,8240,8427,8430,8535,8536,8541,8587,8588]]]]},{"k":"H4649","v":[["Muppim",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1407]]]]},{"k":"H4650","v":[["maul",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17131]]]]},{"k":"H4651","v":[["*",[2,2,[[17,1,1,0,1,[[476,1,1,0,1]]],[29,1,1,1,2,[[886,1,1,1,2]]]],[13911,22487]]],["flakes",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13911]]],["refuse",[1,1,[[29,1,1,0,1,[[886,1,1,0,1]]]],[22487]]]]},{"k":"H4652","v":[["works",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13785]]]]},{"k":"H4653","v":[["divisions",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11978]]]]},{"k":"H4654","v":[["*",[3,3,[[22,3,3,0,3,[[695,1,1,0,1],[701,1,1,1,2],[703,1,1,2,3]]]],[17984,18090,18120]]],["ruin",[2,2,[[22,2,2,0,2,[[701,1,1,0,1],[703,1,1,1,2]]]],[18090,18120]]],["ruinous",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17984]]]]},{"k":"H4655","v":[["escape",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14740]]]]},{"k":"H4656","v":[["idol",[4,2,[[10,2,1,0,1,[[305,2,1,0,1]]],[13,2,1,1,2,[[381,2,1,1,2]]]],[9262,11506]]]]},{"k":"H4657","v":[["balancings",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13785]]]]},{"k":"H4658","v":[["*",[8,8,[[6,1,1,0,1,[[224,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]],[25,6,6,2,8,[[827,2,2,2,4],[828,1,1,4,5],[832,2,2,5,7],[833,1,1,7,8]]]],[6917,17240,21115,21118,21148,21243,21246,21258]]],["carcase",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6917]]],["fall",[5,5,[[19,1,1,0,1,[[656,1,1,0,1]]],[25,4,4,1,5,[[827,2,2,1,3],[832,1,1,3,4],[833,1,1,4,5]]]],[17240,21115,21118,21246,21258]]],["ruin",[2,2,[[25,2,2,0,2,[[828,1,1,0,1],[832,1,1,1,2]]]],[21148,21243]]]]},{"k":"H4659","v":[["works",[3,3,[[18,2,2,0,2,[[523,1,1,0,1],[543,1,1,1,2]]],[19,1,1,2,3,[[635,1,1,2,3]]]],[14622,14878,16624]]]]},{"k":"H4660","v":[["slaughter",[1,1,[[25,1,1,0,1,[[810,1,1,0,1]]]],[20624]]]]},{"k":"H4661","v":[["axe",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20232]]]]},{"k":"H4662","v":[["*",[4,4,[[9,1,1,0,1,[[290,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]],[13,1,1,2,3,[[397,1,1,2,3]]],[25,1,1,3,4,[[844,1,1,3,4]]]],[8701,10939,11867,21593]]],["commandment",[1,1,[[13,1,1,0,1,[[397,1,1,0,1]]]],[11867]]],["number",[2,2,[[9,1,1,0,1,[[290,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]]],[8701,10939]]],["place",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21593]]]]},{"k":"H4663","v":[["Miphkad",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12358]]]]},{"k":"H4664","v":[["breaches",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6640]]]]},{"k":"H4665","v":[["neck",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7315]]]]},{"k":"H4666","v":[["*",[2,2,[[17,1,1,0,1,[[471,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[13765,21128]]],["forth",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21128]]],["spreadings",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13765]]]]},{"k":"H4667","v":[["buttocks",[1,1,[[12,1,1,0,1,[[356,1,1,0,1]]]],[10911]]]]},{"k":"H4668","v":[["*",[3,3,[[6,1,1,0,1,[[213,1,1,0,1]]],[12,1,1,1,2,[[346,1,1,1,2]]],[22,1,1,2,3,[[700,1,1,2,3]]]],[6593,10642,18074]]],["key",[2,2,[[6,1,1,0,1,[[213,1,1,0,1]]],[22,1,1,1,2,[[700,1,1,1,2]]]],[6593,18074]]],["opening",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10642]]]]},{"k":"H4669","v":[["opening",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16608]]]]},{"k":"H4670","v":[["threshold",[8,8,[[8,2,2,0,2,[[240,2,2,0,2]]],[25,5,5,2,7,[[810,1,1,2,3],[811,2,2,3,5],[847,1,1,5,6],[848,1,1,6,7]]],[35,1,1,7,8,[[906,1,1,7,8]]]],[7323,7324,20625,20637,20651,21657,21680,22796]]]]},{"k":"H4671","v":[["chaff",[8,8,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,2,2,1,3,[[478,1,1,1,2],[512,1,1,2,3]]],[22,3,3,3,6,[[695,1,1,3,4],[707,1,1,4,5],[719,1,1,5,6]]],[27,1,1,6,7,[[874,1,1,6,7]]],[35,1,1,7,8,[[907,1,1,7,8]]]],[13373,13943,14415,17996,18198,18466,22269,22807]]]]},{"k":"H4672","v":[["*",[455,425,[[0,56,54,0,54,[[1,1,1,0,1],[3,2,2,1,3],[5,1,1,3,4],[7,1,1,4,5],[10,1,1,5,6],[15,1,1,6,7],[17,8,7,7,14],[18,3,3,14,17],[25,3,3,17,20],[26,1,1,20,21],[29,2,2,21,23],[30,5,5,23,28],[31,2,2,28,30],[32,3,3,30,33],[33,1,1,33,34],[35,1,1,34,35],[36,3,3,35,38],[37,3,3,38,41],[38,1,1,41,42],[40,1,1,42,43],[43,8,7,43,50],[46,3,3,50,53],[49,1,1,53,54]]],[1,22,20,54,74,[[54,1,1,54,55],[58,1,1,55,56],[61,1,1,56,57],[64,1,1,57,58],[65,2,2,58,60],[67,1,1,60,61],[70,1,1,61,62],[71,6,5,62,67],[82,5,4,67,71],[83,1,1,71,72],[84,2,2,72,74]]],[2,8,8,74,82,[[95,2,2,74,76],[98,3,3,76,79],[101,1,1,79,80],[114,2,2,80,82]]],[3,11,10,82,92,[[127,4,3,82,85],[131,2,2,85,87],[136,1,1,87,88],[147,1,1,88,89],[148,2,2,89,91],[151,1,1,91,92]]],[4,25,22,92,114,[[156,2,2,92,94],[169,1,1,94,95],[170,1,1,95,96],[171,1,1,96,97],[172,1,1,97,98],[173,2,2,98,100],[174,10,9,100,109],[176,3,2,109,111],[183,3,2,111,113],[184,1,1,113,114]]],[5,4,4,114,118,[[188,2,2,114,116],[196,1,1,116,117],[203,1,1,117,118]]],[6,14,13,118,131,[[211,1,1,118,119],[215,1,1,119,120],[216,2,2,120,122],[219,1,1,122,123],[224,2,2,123,125],[225,1,1,125,126],[227,2,2,126,128],[230,2,1,128,129],[231,2,2,129,131]]],[7,4,4,131,135,[[232,1,1,131,132],[233,3,3,132,135]]],[8,39,34,135,169,[[236,1,1,135,136],[244,7,5,136,141],[245,6,5,141,146],[247,1,1,146,147],[248,5,4,147,151],[249,1,1,151,152],[251,1,1,152,153],[255,4,4,153,157],[256,1,1,157,158],[258,1,1,158,159],[259,1,1,159,160],[260,3,2,160,162],[262,1,1,162,163],[264,3,3,163,166],[265,1,1,166,167],[266,2,2,167,169]]],[9,10,10,169,179,[[269,1,1,169,170],[273,1,1,170,171],[280,1,1,171,172],[281,1,1,172,173],[282,1,1,173,174],[283,3,3,174,177],[284,1,1,177,178],[286,1,1,178,179]]],[10,16,15,179,194,[[291,2,2,179,181],[301,2,2,181,183],[303,3,3,183,186],[304,1,1,186,187],[308,3,3,187,190],[309,1,1,190,191],[310,2,2,191,193],[311,2,1,193,194]]],[11,25,24,194,218,[[314,1,1,194,195],[316,2,2,195,197],[319,1,1,197,198],[321,2,2,198,200],[322,2,2,200,202],[324,3,3,202,205],[326,1,1,205,206],[328,1,1,206,207],[329,1,1,207,208],[330,1,1,208,209],[331,2,2,209,211],[332,1,1,211,212],[334,3,3,212,215],[335,2,2,215,217],[337,2,1,217,218]]],[12,11,11,218,229,[[341,2,2,218,220],[347,2,2,220,222],[354,1,1,222,223],[357,1,1,223,224],[361,1,1,224,225],[363,1,1,225,226],[365,1,1,226,227],[366,2,2,227,229]]],[13,28,28,229,257,[[368,1,1,229,230],[371,1,1,230,231],[381,3,3,231,234],[385,1,1,234,235],[386,2,2,235,237],[387,1,1,237,238],[388,1,1,238,239],[391,2,2,239,241],[395,2,2,241,243],[396,1,1,243,244],[397,1,1,244,245],[398,1,1,245,246],[400,7,7,246,253],[401,3,3,253,256],[402,1,1,256,257]]],[14,4,4,257,261,[[404,1,1,257,258],[410,2,2,258,260],[412,1,1,260,261]]],[15,8,7,261,268,[[417,1,1,261,262],[419,3,2,262,264],[420,1,1,264,265],[421,2,2,265,267],[425,1,1,267,268]]],[16,8,8,268,276,[[426,1,1,268,269],[427,1,1,269,270],[429,1,1,270,271],[430,1,1,271,272],[431,1,1,272,273],[432,1,1,273,274],[433,2,2,274,276]]],[17,19,18,276,294,[[438,1,1,276,277],[446,2,1,277,278],[452,1,1,278,279],[454,1,1,279,280],[455,1,1,280,281],[458,1,1,281,282],[463,2,2,282,284],[466,2,2,284,286],[467,2,2,286,288],[468,2,2,288,290],[469,1,1,290,291],[472,2,2,291,293],[477,1,1,293,294]]],[18,19,17,294,311,[[487,1,1,294,295],[494,1,1,295,296],[498,2,1,296,297],[509,1,1,297,298],[513,1,1,298,299],[514,1,1,299,300],[523,1,1,300,301],[546,1,1,301,302],[553,1,1,302,303],[561,1,1,303,304],[566,1,1,304,305],[584,1,1,305,306],[593,2,1,306,307],[596,2,2,307,309],[609,2,2,309,311]]],[19,27,25,311,336,[[628,2,2,311,313],[629,1,1,313,314],[630,2,2,314,316],[631,1,1,316,317],[633,2,2,317,319],[634,1,1,319,320],[635,5,4,320,324],[637,1,1,324,325],[643,2,2,325,327],[644,1,1,327,328],[645,2,1,328,329],[646,1,1,329,330],[647,1,1,330,331],[648,1,1,331,332],[651,1,1,332,333],[652,1,1,333,334],[655,1,1,334,335],[658,1,1,335,336]]],[20,17,12,336,348,[[661,1,1,336,337],[665,9,6,337,343],[666,3,1,343,344],[667,2,2,344,346],[669,1,1,346,347],[670,1,1,347,348]]],[21,9,9,348,357,[[673,4,4,348,352],[675,3,3,352,355],[678,2,2,355,357]]],[22,18,18,357,375,[[688,2,2,357,359],[691,1,1,359,360],[700,1,1,360,361],[708,1,1,361,362],[712,1,1,362,363],[713,1,1,363,364],[715,2,2,364,366],[717,1,1,366,367],[719,1,1,367,368],[729,1,1,368,369],[733,1,1,369,370],[735,1,1,370,371],[736,2,2,371,373],[743,2,2,373,375]]],[23,26,24,375,399,[[746,5,4,375,379],[749,2,2,379,381],[750,1,1,381,382],[754,1,1,382,383],[755,1,1,383,384],[758,1,1,384,385],[759,1,1,385,386],[767,1,1,386,387],[773,2,2,387,389],[775,1,1,389,390],[785,3,3,390,393],[789,1,1,393,394],[792,1,1,394,395],[794,3,3,395,398],[796,2,1,398,399]]],[24,4,4,399,403,[[797,2,2,399,401],[798,2,2,401,403]]],[25,4,4,403,407,[[804,1,1,403,404],[823,1,1,404,405],[827,1,1,405,406],[829,1,1,406,407]]],[26,4,4,407,411,[[850,2,2,407,409],[860,1,1,409,410],[861,1,1,410,411]]],[27,8,7,411,418,[[863,2,2,411,413],[866,1,1,413,414],[870,1,1,414,415],[873,3,2,415,417],[875,1,1,417,418]]],[29,1,1,418,419,[[886,1,1,418,419]]],[31,1,1,419,420,[[889,1,1,419,420]]],[32,1,1,420,421,[[893,1,1,420,421]]],[35,1,1,421,422,[[908,1,1,421,422]]],[37,2,2,422,424,[[920,1,1,422,423],[921,1,1,423,424]]],[38,1,1,424,425,[[926,1,1,424,425]]]],[50,93,94,145,192,268,388,427,450,452,453,454,455,456,468,472,476,704,711,724,747,844,857,905,906,907,908,910,933,947,968,970,975,991,1064,1098,1100,1115,1139,1141,1142,1153,1233,1332,1333,1334,1336,1340,1341,1358,1434,1445,1449,1510,1643,1761,1835,1942,1972,1974,2007,2093,2115,2117,2119,2120,2121,2485,2486,2489,2490,2505,2554,2555,2852,2853,2965,2966,2971,3052,3495,3497,4035,4039,4046,4185,4186,4325,4714,4723,4741,4872,5033,5034,5366,5394,5411,5438,5448,5464,5473,5484,5487,5490,5492,5493,5495,5497,5498,5526,5532,5745,5749,5768,5891,5892,6081,6291,6514,6653,6667,6671,6787,6921,6927,6944,6988,6989,7102,7114,7116,7136,7151,7159,7162,7230,7395,7399,7402,7404,7411,7420,7421,7425,7434,7439,7465,7500,7501,7504,7507,7538,7617,7733,7751,7759,7766,7775,7827,7858,7869,7889,7935,7970,7973,7975,7989,8012,8017,8089,8207,8378,8414,8430,8461,8462,8469,8500,8560,8720,8769,9127,9137,9198,9208,9212,9231,9346,9351,9353,9406,9444,9445,9471,9568,9632,9642,9716,9777,9791,9806,9808,9855,9860,9868,9910,9971,9987,10039,10065,10069,10111,10153,10154,10158,10167,10189,10241,10425,10426,10662,10667,10888,10928,11019,11108,11152,11172,11181,11228,11279,11492,11494,11505,11579,11603,11612,11641,11652,11709,11728,11807,11820,11848,11855,11879,11947,11948,11950,11954,11963,11965,11966,11973,11983,11984,12001,12089,12216,12226,12270,12390,12425,12484,12507,12519,12543,12672,12707,12747,12778,12787,12795,12810,12822,12823,12926,13115,13270,13325,13334,13422,13516,13517,13613,13617,13631,13641,13660,13674,13694,13782,13792,13937,14056,14106,14199,14361,14440,14486,14615,14955,15086,15262,15346,15703,15851,16041,16060,16156,16157,16413,16428,16438,16459,16468,16512,16571,16573,16590,16611,16614,16619,16637,16669,16860,16871,16893,16923,16933,16960,17005,17093,17129,17219,17294,17370,17443,17453,17455,17456,17457,17458,17475,17485,17490,17514,17533,17572,17573,17574,17575,17604,17605,17606,17641,17650,17860,17864,17921,18055,18231,18317,18329,18356,18360,18414,18463,18676,18746,18775,18789,18799,18898,18905,18970,18989,18991,18999,19059,19084,19105,19219,19235,19296,19331,19495,19648,19649,19693,19960,19965,19969,20043,20107,20173,20186,20190,20301,20313,20316,20341,20348,20503,21006,21121,21172,21756,21757,22055,22082,22111,22112,22158,22218,22256,22260,22290,22493,22534,22592,22833,23026,23034,23109]]],["+",[34,33,[[0,4,4,0,4,[[30,1,1,0,1],[35,1,1,1,2],[43,2,2,2,4]]],[1,2,1,4,5,[[71,2,1,4,5]]],[2,3,3,5,8,[[101,1,1,5,6],[114,2,2,6,8]]],[3,1,1,8,9,[[148,1,1,8,9]]],[4,2,2,9,11,[[171,1,1,9,10],[174,1,1,10,11]]],[6,1,1,11,12,[[211,1,1,11,12]]],[8,4,4,12,16,[[245,1,1,12,13],[255,1,1,13,14],[259,1,1,14,15],[266,1,1,15,16]]],[10,3,3,16,19,[[291,1,1,16,17],[303,1,1,17,18],[309,1,1,18,19]]],[11,2,2,19,21,[[322,1,1,19,20],[331,1,1,20,21]]],[12,1,1,21,22,[[347,1,1,21,22]]],[13,2,2,22,24,[[388,1,1,22,23],[400,1,1,23,24]]],[15,1,1,24,25,[[421,1,1,24,25]]],[16,1,1,25,26,[[433,1,1,25,26]]],[20,2,2,26,28,[[661,1,1,26,27],[666,1,1,27,28]]],[21,2,2,28,30,[[673,1,1,28,29],[675,1,1,29,30]]],[22,2,2,30,32,[[715,1,1,30,31],[736,1,1,31,32]]],[37,1,1,32,33,[[921,1,1,32,33]]]],[905,1064,1340,1358,2117,3052,3495,3497,4741,5411,5495,6514,7425,7751,7858,8017,8720,9212,9406,9808,10069,10667,11652,11947,12519,12823,17370,17475,17575,17606,18360,18799,23034]]],["befall",[1,1,[[4,1,1,0,1,[[183,1,1,0,1]]]],[5745]]],["befallen",[3,3,[[3,1,1,0,1,[[136,1,1,0,1]]],[4,1,1,1,2,[[183,1,1,1,2]]],[6,1,1,2,3,[[216,1,1,2,3]]]],[4325,5749,6667]]],["befell",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5892]]],["catch",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2119]]],["come",[2,2,[[4,1,1,0,1,[[156,1,1,0,1]]],[17,1,1,1,2,[[472,1,1,1,2]]]],[5034,13782]]],["cometh",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7869]]],["delivered",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8089]]],["enough",[1,1,[[5,1,1,0,1,[[203,1,1,0,1]]]],[6291]]],["find",[81,79,[[0,12,12,0,12,[[17,3,3,0,3],[18,1,1,3,4],[31,2,2,4,6],[32,2,2,6,8],[33,1,1,8,9],[37,1,1,9,10],[40,1,1,10,11],[46,1,1,11,12]]],[1,3,3,12,15,[[54,1,1,12,13],[65,1,1,13,14],[82,1,1,14,15]]],[3,1,1,15,16,[[151,1,1,15,16]]],[4,4,4,16,20,[[156,1,1,16,17],[174,2,2,17,19],[176,1,1,19,20]]],[6,3,3,20,23,[[219,1,1,20,21],[227,2,2,21,23]]],[7,3,3,23,26,[[232,1,1,23,24],[233,2,2,24,26]]],[8,6,5,26,31,[[236,1,1,26,27],[244,2,1,27,28],[245,1,1,28,29],[258,1,1,29,30],[260,1,1,30,31]]],[9,3,3,31,34,[[281,1,1,31,32],[282,1,1,32,33],[283,1,1,33,34]]],[10,2,2,34,36,[[308,2,2,34,36]]],[13,2,2,36,38,[[386,1,1,36,37],[398,1,1,37,38]]],[17,4,4,38,42,[[438,1,1,38,39],[452,1,1,39,40],[458,1,1,40,41],[469,1,1,41,42]]],[18,2,2,42,44,[[487,1,1,42,43],[494,1,1,43,44]]],[19,12,12,44,56,[[628,2,2,44,46],[629,1,1,46,47],[630,1,1,47,48],[631,1,1,48,49],[635,2,2,49,51],[643,1,1,51,52],[646,1,1,52,53],[647,1,1,53,54],[655,1,1,54,55],[658,1,1,55,56]]],[20,6,5,56,61,[[665,3,3,56,59],[666,2,1,59,60],[669,1,1,60,61]]],[21,2,2,61,63,[[675,1,1,61,62],[678,1,1,62,63]]],[22,3,3,63,66,[[712,1,1,63,64],[719,1,1,64,65],[736,1,1,65,66]]],[23,6,6,66,72,[[746,1,1,66,67],[749,1,1,67,68],[750,1,1,68,69],[754,1,1,69,70],[773,1,1,70,71],[789,1,1,71,72]]],[24,2,2,72,74,[[797,1,1,72,73],[798,1,1,73,74]]],[27,4,4,74,78,[[863,2,2,74,76],[866,1,1,76,77],[873,1,1,77,78]]],[29,1,1,78,79,[[886,1,1,78,79]]]],[450,452,454,468,933,947,968,975,991,1141,1233,1445,1643,1972,2486,4872,5033,5493,5498,5526,6787,6988,6989,7136,7151,7162,7230,7404,7420,7827,7869,8414,8430,8469,9346,9353,11603,11879,12926,13270,13422,13694,14056,14106,16413,16428,16438,16459,16512,16611,16619,16860,16933,16960,17219,17294,17443,17455,17457,17475,17514,17604,17641,18317,18463,18789,18989,19059,19105,19219,19648,20043,20316,20341,22111,22112,22158,22260,22493]]],["findest",[1,1,[[25,1,1,0,1,[[804,1,1,0,1]]]],[20503]]],["findeth",[12,10,[[0,1,1,0,1,[[3,1,1,0,1]]],[17,1,1,1,2,[[468,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[19,7,5,3,8,[[630,1,1,3,4],[635,2,1,4,5],[644,1,1,5,6],[645,2,1,6,7],[648,1,1,7,8]]],[20,1,1,8,9,[[667,1,1,8,9]]],[24,1,1,9,10,[[797,1,1,9,10]]]],[93,13660,16060,16468,16637,16893,16923,17005,17485,20313]]],["finding",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[94]]],["found",[249,241,[[0,36,36,0,36,[[1,1,1,0,1],[5,1,1,1,2],[7,1,1,2,3],[10,1,1,3,4],[15,1,1,4,5],[17,5,5,5,10],[18,1,1,10,11],[25,2,2,11,13],[26,1,1,13,14],[29,2,2,14,16],[30,4,4,16,20],[32,1,1,20,21],[36,3,3,21,24],[37,2,2,24,26],[38,1,1,26,27],[43,6,6,27,33],[46,2,2,33,35],[49,1,1,35,36]]],[1,15,15,36,51,[[58,1,1,36,37],[61,1,1,37,38],[64,1,1,38,39],[65,1,1,39,40],[70,1,1,40,41],[71,3,3,41,44],[82,4,4,44,48],[83,1,1,48,49],[84,2,2,49,51]]],[2,2,2,51,53,[[95,2,2,51,53]]],[3,5,5,53,58,[[127,2,2,53,55],[131,2,2,55,57],[148,1,1,57,58]]],[4,14,14,58,72,[[169,1,1,58,59],[170,1,1,59,60],[172,1,1,60,61],[173,1,1,61,62],[174,7,7,62,69],[176,2,2,69,71],[184,1,1,71,72]]],[5,2,2,72,74,[[188,1,1,72,73],[196,1,1,73,74]]],[6,3,3,74,77,[[216,1,1,74,75],[225,1,1,75,76],[231,1,1,76,77]]],[7,1,1,77,78,[[233,1,1,77,78]]],[8,21,19,78,97,[[244,4,3,78,81],[245,3,3,81,84],[247,1,1,84,85],[248,3,2,85,87],[249,1,1,87,88],[251,1,1,88,89],[255,2,2,89,91],[260,1,1,91,92],[262,1,1,92,93],[264,3,3,93,96],[265,1,1,96,97]]],[9,4,4,97,101,[[273,1,1,97,98],[280,1,1,98,99],[283,2,2,99,101]]],[10,10,9,101,110,[[291,1,1,101,102],[301,2,2,102,104],[303,1,1,104,105],[304,1,1,105,106],[308,1,1,106,107],[310,2,2,107,109],[311,2,1,109,110]]],[11,18,17,110,127,[[314,1,1,110,111],[316,1,1,111,112],[321,1,1,112,113],[324,3,3,113,116],[326,1,1,116,117],[328,1,1,117,118],[329,1,1,118,119],[330,1,1,119,120],[332,1,1,120,121],[334,3,3,121,124],[335,2,2,124,126],[337,2,1,126,127]]],[12,8,8,127,135,[[341,2,2,127,129],[354,1,1,129,130],[357,1,1,130,131],[361,1,1,131,132],[363,1,1,132,133],[365,1,1,133,134],[366,1,1,134,135]]],[13,15,15,135,150,[[368,1,1,135,136],[381,3,3,136,139],[385,1,1,139,140],[386,1,1,140,141],[387,1,1,141,142],[391,2,2,142,144],[395,1,1,144,145],[400,4,4,145,149],[402,1,1,149,150]]],[14,3,3,150,153,[[404,1,1,150,151],[410,1,1,151,152],[412,1,1,152,153]]],[15,6,5,153,158,[[417,1,1,153,154],[419,3,2,154,156],[420,1,1,156,157],[425,1,1,157,158]]],[16,4,4,158,162,[[430,1,1,158,159],[431,1,1,159,160],[432,1,1,160,161],[433,1,1,161,162]]],[17,8,8,162,170,[[454,1,1,162,163],[455,1,1,163,164],[463,2,2,164,166],[466,1,1,166,167],[467,1,1,167,168],[468,1,1,168,169],[477,1,1,169,170]]],[18,10,10,170,180,[[509,1,1,170,171],[513,1,1,171,172],[514,1,1,172,173],[546,1,1,173,174],[553,1,1,174,175],[561,1,1,175,176],[566,1,1,176,177],[584,1,1,177,178],[593,1,1,178,179],[609,1,1,179,180]]],[19,6,6,180,186,[[633,1,1,180,181],[634,1,1,181,182],[637,1,1,182,183],[643,1,1,183,184],[651,1,1,184,185],[652,1,1,185,186]]],[20,5,4,186,190,[[665,4,3,186,189],[667,1,1,189,190]]],[21,5,5,190,195,[[673,3,3,190,193],[675,1,1,193,194],[678,1,1,194,195]]],[22,12,12,195,207,[[688,2,2,195,197],[691,1,1,197,198],[700,1,1,198,199],[708,1,1,199,200],[713,1,1,200,201],[717,1,1,201,202],[729,1,1,202,203],[733,1,1,203,204],[735,1,1,204,205],[743,2,2,205,207]]],[23,20,18,207,225,[[746,4,3,207,210],[749,1,1,210,211],[755,1,1,211,212],[758,1,1,212,213],[759,1,1,213,214],[767,1,1,214,215],[773,1,1,215,216],[775,1,1,216,217],[785,3,3,217,220],[792,1,1,220,221],[794,3,3,221,224],[796,2,1,224,225]]],[24,1,1,225,226,[[798,1,1,225,226]]],[25,3,3,226,229,[[823,1,1,226,227],[827,1,1,227,228],[829,1,1,228,229]]],[26,4,4,229,233,[[850,2,2,229,231],[860,1,1,231,232],[861,1,1,232,233]]],[27,3,3,233,236,[[870,1,1,233,234],[873,1,1,234,235],[875,1,1,235,236]]],[31,1,1,236,237,[[889,1,1,236,237]]],[32,1,1,237,238,[[893,1,1,237,238]]],[35,1,1,238,239,[[908,1,1,238,239]]],[37,1,1,239,240,[[920,1,1,239,240]]],[38,1,1,240,241,[[926,1,1,240,241]]]],[50,145,192,268,388,427,453,454,455,456,476,711,724,747,844,857,906,907,908,910,970,1098,1100,1115,1139,1142,1153,1332,1333,1334,1336,1340,1341,1434,1449,1510,1761,1835,1942,1974,2093,2115,2120,2121,2485,2486,2489,2490,2505,2554,2555,2852,2853,4035,4039,4185,4186,4723,5366,5394,5438,5448,5473,5484,5487,5490,5492,5497,5498,5526,5532,5768,5891,6081,6671,6944,7114,7159,7395,7402,7411,7420,7434,7439,7465,7504,7507,7538,7617,7733,7759,7889,7935,7970,7973,7975,7989,8207,8378,8461,8462,8769,9127,9137,9198,9231,9351,9444,9445,9471,9568,9642,9791,9855,9860,9868,9910,9971,9987,10039,10111,10153,10154,10158,10167,10189,10241,10425,10426,10888,10928,11019,11108,11152,11172,11228,11492,11494,11505,11579,11612,11641,11709,11728,11807,11948,11950,11954,11963,12001,12089,12216,12270,12390,12425,12484,12507,12672,12787,12795,12810,12822,13325,13334,13516,13517,13617,13631,13674,13937,14361,14440,14486,14955,15086,15262,15346,15703,15851,16157,16571,16590,16669,16871,17093,17129,17456,17457,17458,17490,17572,17573,17574,17605,17650,17860,17864,17921,18055,18231,18329,18414,18676,18746,18775,18898,18905,18970,18991,18999,19084,19235,19296,19331,19495,19649,19693,19960,19965,19969,20107,20173,20186,20190,20301,20348,21006,21121,21172,21756,21757,22055,22082,22218,22256,22290,22534,22592,22833,23026,23109]]],["get",[2,2,[[9,1,1,0,1,[[286,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]]],[8560,16573]]],["gotten",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]]],[4714,13613]]],["hand",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7102]]],["hath",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5464]]],["here",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[8,1,1,1,2,[[244,1,1,1,2]]]],[472,7399]]],["hit",[2,2,[[8,1,1,0,1,[[266,1,1,0,1]]],[12,1,1,1,2,[[347,1,1,1,2]]]],[8012,10662]]],["left",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10065,18356]]],["meet",[2,2,[[8,1,1,0,1,[[245,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]]],[7421,9632]]],["met",[3,3,[[10,1,1,0,1,[[303,1,1,0,1]]],[11,2,2,1,3,[[321,1,1,1,2],[322,1,1,2,3]]]],[9208,9777,9806]]],["on",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16041]]],["out",[16,14,[[6,2,2,0,2,[[224,2,2,0,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[16,1,1,3,4,[[427,1,1,3,4]]],[17,4,3,4,7,[[446,2,1,4,5],[467,1,1,5,6],[472,1,1,6,7]]],[18,3,2,7,9,[[498,2,1,7,8],[609,1,1,8,9]]],[19,1,1,9,10,[[635,1,1,9,10]]],[20,3,3,10,13,[[665,2,2,10,12],[670,1,1,12,13]]],[27,1,1,13,14,[[873,1,1,13,14]]]],[6921,6927,7766,12747,13115,13641,13792,14199,16156,16614,17453,17456,17533,22260]]],["present",[17,17,[[8,3,3,0,3,[[248,2,2,0,2],[256,1,1,2,3]]],[12,1,1,3,4,[[366,1,1,3,4]]],[13,9,9,4,13,[[371,1,1,4,5],[395,1,1,5,6],[396,1,1,6,7],[397,1,1,7,8],[400,2,2,8,10],[401,3,3,10,13]]],[14,1,1,13,14,[[410,1,1,13,14]]],[16,2,2,14,16,[[426,1,1,14,15],[429,1,1,15,16]]],[18,1,1,16,17,[[523,1,1,16,17]]]],[7500,7501,7775,11181,11279,11820,11848,11855,11965,11966,11973,11983,11984,12226,12707,12778,14615]]],["presented",[3,3,[[2,3,3,0,3,[[98,3,3,0,3]]]],[2965,2966,2971]]],["ready",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8500]]],["received",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[704]]],["sped",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6653]]],["suffice",[2,1,[[3,2,1,0,1,[[127,2,1,0,1]]]],[4046]]],["sufficed",[1,1,[[6,1,1,0,1,[[231,1,1,0,1]]]],[7116]]],["to",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7102]]],["upon",[5,5,[[1,1,1,0,1,[[67,1,1,0,1]]],[4,1,1,1,2,[[183,1,1,1,2]]],[11,1,1,2,3,[[319,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[18,1,1,4,5,[[593,1,1,4,5]]]],[2007,5745,9716,12543,15851]]]]},{"k":"H4673","v":[["*",[10,10,[[5,2,2,0,2,[[190,2,2,0,2]]],[8,6,6,2,8,[[248,1,1,2,3],[249,5,5,3,8]]],[9,1,1,8,9,[[289,1,1,8,9]]],[22,1,1,9,10,[[700,1,1,9,10]]]],[5913,5919,7508,7509,7512,7514,7519,7523,8667,18071]]],["+",[2,2,[[5,1,1,0,1,[[190,1,1,0,1]]],[22,1,1,1,2,[[700,1,1,1,2]]]],[5913,18071]]],["garrison",[7,7,[[8,6,6,0,6,[[248,1,1,0,1],[249,5,5,1,6]]],[9,1,1,6,7,[[289,1,1,6,7]]]],[7508,7509,7512,7514,7519,7523,8667]]],["stood",[1,1,[[5,1,1,0,1,[[190,1,1,0,1]]]],[5919]]]]},{"k":"H4674","v":[["mount",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18196]]]]},{"k":"H4675","v":[["*",[2,2,[[8,1,1,0,1,[[249,1,1,0,1]]],[37,1,1,1,2,[[919,1,1,1,2]]]],[7520,23007]]],["army",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23007]]],["garrison",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7520]]]]},{"k":"H4676","v":[["*",[32,31,[[0,9,8,0,8,[[27,2,2,0,2],[30,5,4,2,6],[34,2,2,6,8]]],[1,3,3,8,11,[[72,1,1,8,9],[73,1,1,9,10],[83,1,1,10,11]]],[2,1,1,11,12,[[115,1,1,11,12]]],[4,3,3,12,15,[[159,1,1,12,13],[164,1,1,13,14],[168,1,1,14,15]]],[10,1,1,15,16,[[304,1,1,15,16]]],[11,6,6,16,22,[[315,1,1,16,17],[322,2,2,17,19],[329,1,1,19,20],[330,1,1,20,21],[335,1,1,21,22]]],[13,2,2,22,24,[[380,1,1,22,23],[397,1,1,23,24]]],[22,1,1,24,25,[[697,1,1,24,25]]],[23,1,1,25,26,[[787,1,1,25,26]]],[25,1,1,26,27,[[827,1,1,26,27]]],[27,3,3,27,30,[[864,1,1,27,28],[871,2,2,28,30]]],[32,1,1,30,31,[[897,1,1,30,31]]]],[791,795,886,918,924,925,1025,1031,2168,2181,2509,3525,5116,5243,5364,9241,9578,9819,9820,9993,10028,10179,11478,11855,18023,20010,21111,22132,22226,22227,22646]]],["+",[1,1,[[13,1,1,0,1,[[397,1,1,0,1]]]],[11855]]],["garrisons",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21111]]],["image",[5,5,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[168,1,1,1,2]]],[11,2,2,2,4,[[315,1,1,2,3],[322,1,1,3,4]]],[27,1,1,4,5,[[864,1,1,4,5]]]],[3525,5364,9578,9820,22132]]],["images",[13,13,[[1,2,2,0,2,[[72,1,1,0,1],[83,1,1,1,2]]],[4,1,1,2,3,[[159,1,1,2,3]]],[10,1,1,3,4,[[304,1,1,3,4]]],[11,4,4,4,8,[[322,1,1,4,5],[329,1,1,5,6],[330,1,1,6,7],[335,1,1,7,8]]],[13,1,1,8,9,[[380,1,1,8,9]]],[23,1,1,9,10,[[787,1,1,9,10]]],[27,2,2,10,12,[[871,2,2,10,12]]],[32,1,1,12,13,[[897,1,1,12,13]]]],[2168,2509,5116,9241,9819,9993,10028,10179,11478,20010,22226,22227,22646]]],["pillar",[10,9,[[0,9,8,0,8,[[27,2,2,0,2],[30,5,4,2,6],[34,2,2,6,8]]],[22,1,1,8,9,[[697,1,1,8,9]]]],[791,795,886,918,924,925,1025,1031,18023]]],["pillars",[2,2,[[1,1,1,0,1,[[73,1,1,0,1]]],[4,1,1,1,2,[[164,1,1,1,2]]]],[2181,5243]]]]},{"k":"H4677","v":[["Mesobaite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10720]]]]},{"k":"H4678","v":[["*",[6,4,[[0,2,2,0,2,[[34,2,2,0,2]]],[9,2,1,2,3,[[284,2,1,2,3]]],[22,2,1,3,4,[[684,2,1,3,4]]]],[1025,1031,8496,17782]]],["pillar",[4,3,[[0,2,2,0,2,[[34,2,2,0,2]]],[9,2,1,2,3,[[284,2,1,2,3]]]],[1025,1031,8496]]],["substance",[2,1,[[22,2,1,0,1,[[684,2,1,0,1]]]],[17782]]]]},{"k":"H4679","v":[["*",[12,12,[[6,1,1,0,1,[[216,1,1,0,1]]],[8,3,3,1,4,[[258,3,3,1,4]]],[12,3,3,4,7,[[348,1,1,4,5],[349,2,2,5,7]]],[22,1,1,7,8,[[711,1,1,7,8]]],[23,2,2,8,10,[[792,1,1,8,9],[795,1,1,9,10]]],[25,2,2,10,12,[[820,1,1,10,11],[834,1,1,11,12]]]],[6656,7824,7829,7839,10680,10728,10736,18295,20121,20242,20890,21307]]],["castle",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10680]]],["forts",[1,1,[[25,1,1,0,1,[[834,1,1,0,1]]]],[21307]]],["hold",[2,2,[[12,2,2,0,2,[[349,2,2,0,2]]]],[10728,10736]]],["holds",[7,7,[[6,1,1,0,1,[[216,1,1,0,1]]],[8,3,3,1,4,[[258,3,3,1,4]]],[23,2,2,4,6,[[792,1,1,4,5],[795,1,1,5,6]]],[25,1,1,6,7,[[820,1,1,6,7]]]],[6656,7824,7829,7839,20121,20242,20890]]],["munitions",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18295]]]]},{"k":"H4680","v":[["*",[7,7,[[2,2,2,0,2,[[90,1,1,0,1],[94,1,1,1,2]]],[6,1,1,2,3,[[216,1,1,2,3]]],[18,2,2,3,5,[[550,1,1,3,4],[552,1,1,4,5]]],[22,1,1,5,6,[[729,1,1,5,6]]],[25,1,1,6,7,[[824,1,1,6,7]]]],[2760,2839,6692,15030,15079,18690,21041]]],["out",[6,6,[[2,2,2,0,2,[[90,1,1,0,1],[94,1,1,1,2]]],[18,2,2,2,4,[[550,1,1,2,3],[552,1,1,3,4]]],[22,1,1,4,5,[[729,1,1,4,5]]],[25,1,1,5,6,[[824,1,1,5,6]]]],[2760,2839,15030,15079,18690,21041]]],["wringed",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6692]]]]},{"k":"H4681","v":[["Mozah",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6319]]]]},{"k":"H4682","v":[["*",[53,42,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,16,12,1,13,[[61,6,6,1,7],[62,2,2,7,9],[72,2,1,9,10],[78,4,2,10,12],[83,2,1,12,13]]],[2,12,8,13,21,[[91,3,2,13,15],[95,1,1,15,16],[96,2,1,16,17],[97,3,2,17,19],[99,1,1,19,20],[112,2,1,20,21]]],[3,7,5,21,26,[[122,5,3,21,24],[125,1,1,24,25],[144,1,1,25,26]]],[4,3,3,26,29,[[168,3,3,26,29]]],[5,1,1,29,30,[[191,1,1,29,30]]],[6,4,3,30,33,[[216,4,3,30,33]]],[8,1,1,33,34,[[263,1,1,33,34]]],[11,1,1,34,35,[[335,1,1,34,35]]],[12,1,1,35,36,[[360,1,1,35,36]]],[13,4,4,36,40,[[374,1,1,36,37],[396,2,2,37,39],[401,1,1,39,40]]],[14,1,1,40,41,[[408,1,1,40,41]]],[25,1,1,41,42,[[846,1,1,41,42]]]],[460,1824,1831,1833,1834,1836,1855,1873,1874,2159,2338,2359,2514,2766,2767,2865,2891,2919,2943,2989,3408,3838,3840,3842,3976,4594,5345,5350,5358,5945,6673,6674,6675,7966,10174,11012,11359,11840,11848,11983,12173,21651]]],["bread",[34,30,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,12,10,1,11,[[61,5,5,1,6],[62,2,2,6,8],[72,2,1,8,9],[78,1,1,9,10],[83,2,1,10,11]]],[2,5,4,11,15,[[95,1,1,11,12],[97,2,2,12,14],[112,2,1,14,15]]],[3,5,4,15,19,[[122,3,2,15,17],[125,1,1,17,18],[144,1,1,18,19]]],[4,3,3,19,22,[[168,3,3,19,22]]],[8,1,1,22,23,[[263,1,1,22,23]]],[11,1,1,23,24,[[335,1,1,23,24]]],[13,4,4,24,28,[[374,1,1,24,25],[396,2,2,25,27],[401,1,1,27,28]]],[14,1,1,28,29,[[408,1,1,28,29]]],[25,1,1,29,30,[[846,1,1,29,30]]]],[460,1824,1831,1833,1834,1836,1873,1874,2159,2359,2514,2865,2919,2943,3408,3838,3840,3976,4594,5345,5350,5358,7966,10174,11359,11840,11848,11983,12173,21651]]],["cakes",[5,4,[[5,1,1,0,1,[[191,1,1,0,1]]],[6,4,3,1,4,[[216,4,3,1,4]]]],[5945,6673,6674,6675]]],["leaven",[1,1,[[2,1,1,0,1,[[99,1,1,0,1]]]],[2989]]],["unleavened",[13,8,[[1,4,2,0,2,[[61,1,1,0,1],[78,3,1,1,2]]],[2,6,4,2,6,[[91,3,2,2,4],[96,2,1,4,5],[97,1,1,5,6]]],[3,2,1,6,7,[[122,2,1,6,7]]],[12,1,1,7,8,[[360,1,1,7,8]]]],[1855,2338,2766,2767,2891,2943,3842,11012]]]]},{"k":"H4683","v":[["*",[3,3,[[19,2,2,0,2,[[640,1,1,0,1],[644,1,1,1,2]]],[22,1,1,2,3,[[736,1,1,2,3]]]],[16757,16892,18790]]],["contention",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16757]]],["debate",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18790]]],["strife",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16892]]]]},{"k":"H4684","v":[["*",[2,2,[[23,2,2,0,2,[[752,1,1,0,1],[757,1,1,1,2]]]],[19169,19293]]],["neighing",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19169]]],["neighings",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19293]]]]},{"k":"H4685","v":[["*",[5,5,[[17,1,1,0,1,[[454,1,1,0,1]]],[19,1,1,1,2,[[639,1,1,1,2]]],[20,2,2,2,4,[[665,1,1,2,3],[667,1,1,3,4]]],[22,1,1,4,5,[[707,1,1,4,5]]]],[13303,16731,17455,17489,18200]]],["bulwarks",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17489]]],["munition",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18200]]],["net",[2,2,[[17,1,1,0,1,[[454,1,1,0,1]]],[19,1,1,1,2,[[639,1,1,1,2]]]],[13303,16731]]],["snares",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17455]]]]},{"k":"H4686","v":[["*",[22,22,[[8,3,3,0,3,[[257,2,2,0,2],[259,1,1,2,3]]],[9,5,5,3,8,[[271,3,3,3,6],[288,1,1,6,7],[289,1,1,7,8]]],[12,2,2,8,10,[[348,2,2,8,10]]],[17,1,1,10,11,[[474,1,1,10,11]]],[18,7,7,11,18,[[495,1,1,11,12],[508,2,2,12,14],[543,1,1,14,15],[548,1,1,15,16],[568,1,1,16,17],[621,1,1,17,18]]],[20,1,1,18,19,[[667,1,1,18,19]]],[25,3,3,19,22,[[813,1,1,19,20],[814,1,1,20,21],[818,1,1,21,22]]]],[7791,7792,7861,8139,8141,8149,8604,8667,10678,10689,13862,14120,14333,14334,14884,14979,15397,16307,17487,20693,20729,20845]]],["castle",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10678]]],["defence",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14333]]],["fort",[1,1,[[9,1,1,0,1,[[271,1,1,0,1]]]],[8141]]],["fortress",[6,6,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,5,5,1,6,[[495,1,1,1,2],[508,1,1,2,3],[548,1,1,3,4],[568,1,1,4,5],[621,1,1,5,6]]]],[8604,14120,14334,14979,15397,16307]]],["hold",[7,7,[[8,3,3,0,3,[[257,2,2,0,2],[259,1,1,2,3]]],[9,3,3,3,6,[[271,2,2,3,5],[289,1,1,5,6]]],[12,1,1,6,7,[[348,1,1,6,7]]]],[7791,7792,7861,8139,8149,8667,10689]]],["hunted",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20729]]],["net",[2,2,[[18,1,1,0,1,[[543,1,1,0,1]]],[20,1,1,1,2,[[667,1,1,1,2]]]],[14884,17487]]],["place",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13862]]],["snare",[2,2,[[25,2,2,0,2,[[813,1,1,0,1],[818,1,1,1,2]]]],[20693,20845]]]]},{"k":"H4687","v":[["*",[181,177,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,4,4,1,5,[[64,1,1,1,2],[65,1,1,2,3],[69,1,1,3,4],[73,1,1,4,5]]],[2,10,10,5,15,[[93,4,4,5,9],[94,1,1,9,10],[111,1,1,10,11],[115,3,3,11,14],[116,1,1,14,15]]],[3,5,5,15,20,[[131,4,4,15,19],[152,1,1,19,20]]],[4,43,42,20,62,[[156,2,2,20,22],[157,3,3,22,25],[158,4,4,25,29],[159,2,2,29,31],[160,4,4,31,35],[162,1,1,35,36],[163,6,6,36,42],[165,2,2,42,44],[167,1,1,44,45],[169,1,1,45,46],[171,1,1,46,47],[178,4,3,47,50],[179,2,2,50,52],[180,5,5,52,57],[182,4,4,57,61],[183,1,1,61,62]]],[5,3,2,62,64,[[208,3,2,62,64]]],[6,2,2,64,66,[[212,1,1,64,65],[213,1,1,65,66]]],[8,1,1,66,67,[[248,1,1,66,67]]],[10,12,12,67,79,[[292,2,2,67,69],[293,1,1,69,70],[296,1,1,70,71],[298,2,2,71,73],[299,1,1,73,74],[301,2,2,74,76],[303,1,1,76,77],[304,1,1,77,78],[308,1,1,78,79]]],[11,8,8,79,87,[[329,5,5,79,84],[330,2,2,84,86],[335,1,1,86,87]]],[12,3,3,87,90,[[365,2,2,87,89],[366,1,1,89,90]]],[13,19,18,90,108,[[373,1,1,90,91],[374,3,3,91,94],[380,1,1,94,95],[383,1,1,95,96],[385,1,1,96,97],[390,2,2,97,99],[395,3,2,99,101],[396,2,2,101,103],[397,1,1,103,104],[400,1,1,104,105],[401,3,3,105,108]]],[14,4,4,108,112,[[409,1,1,108,109],[411,2,2,109,111],[412,1,1,111,112]]],[15,14,14,112,126,[[413,3,3,112,115],[421,5,5,115,120],[422,2,2,120,122],[423,1,1,122,123],[424,2,2,123,125],[425,1,1,125,126]]],[16,1,1,126,127,[[428,1,1,126,127]]],[17,1,1,127,128,[[458,1,1,127,128]]],[18,26,26,128,154,[[496,1,1,128,129],[555,1,1,129,130],[566,1,1,130,131],[589,1,1,131,132],[596,22,22,132,154]]],[19,10,10,154,164,[[629,1,1,154,155],[630,1,1,155,156],[631,1,1,156,157],[633,2,2,157,159],[634,2,2,159,161],[637,1,1,161,162],[640,1,1,162,163],[646,1,1,163,164]]],[20,2,2,164,166,[[666,1,1,164,165],[670,1,1,165,166]]],[22,3,3,166,169,[[707,1,1,166,167],[714,1,1,167,168],[726,1,1,168,169]]],[23,5,4,169,173,[[776,1,1,169,170],[779,4,3,170,173]]],[26,2,2,173,175,[[858,2,2,173,175]]],[38,2,2,175,177,[[926,2,2,175,177]]]],[697,1946,1975,2057,2189,2797,2808,2817,2822,2847,3400,3527,3538,3539,3604,4175,4184,4192,4193,4892,5006,5044,5063,5082,5084,5087,5088,5103,5111,5120,5122,5138,5139,5143,5148,5199,5209,5216,5221,5230,5235,5236,5276,5290,5324,5384,5415,5579,5583,5584,5586,5595,5612,5620,5624,5626,5656,5716,5718,5719,5724,5733,6429,6431,6562,6572,7498,8773,8813,8830,8908,9043,9046,9057,9142,9146,9205,9226,9359,9996,9999,10002,10017,10020,10030,10060,10168,11150,11151,11183,11343,11359,11360,11361,11479,11527,11586,11697,11698,11806,11816,11833,11839,11875,11964,11976,11981,11982,12184,12247,12251,12255,12301,12303,12305,12524,12525,12527,12540,12545,12578,12581,12611,12648,12669,12676,12750,13431,14176,15120,15357,15804,15904,15908,15917,15919,15930,15933,15945,15946,15958,15964,15971,15984,15994,15996,16013,16025,16029,16041,16049,16064,16070,16074,16434,16456,16494,16560,16563,16576,16577,16664,16760,16941,17463,17536,18206,18351,18632,19742,19837,19839,19841,21992,21993,23104,23107]]],["+",[5,5,[[2,1,1,0,1,[[93,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]],[18,2,2,2,4,[[596,2,2,2,4]]],[26,1,1,4,5,[[858,1,1,4,5]]]],[2822,5579,15908,15919,21993]]],["commanded",[2,2,[[13,1,1,0,1,[[374,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]]],[11360,12676]]],["commandment",[43,42,[[3,1,1,0,1,[[131,1,1,0,1]]],[4,2,2,1,3,[[169,1,1,1,2],[182,1,1,2,3]]],[5,2,2,3,5,[[208,2,2,3,5]]],[8,1,1,5,6,[[248,1,1,5,6]]],[10,2,2,6,8,[[292,1,1,6,7],[303,1,1,7,8]]],[11,3,3,8,11,[[329,2,2,8,10],[330,1,1,10,11]]],[13,13,12,11,23,[[374,2,2,11,13],[380,1,1,13,14],[385,1,1,14,15],[390,1,1,15,16],[395,3,2,16,18],[396,2,2,18,20],[401,3,3,20,23]]],[14,1,1,23,24,[[412,1,1,23,24]]],[15,3,3,24,27,[[423,1,1,24,25],[424,2,2,25,27]]],[16,1,1,27,28,[[428,1,1,27,28]]],[17,1,1,28,29,[[458,1,1,28,29]]],[18,2,2,29,31,[[496,1,1,29,30],[596,1,1,30,31]]],[19,4,4,31,35,[[633,2,2,31,33],[640,1,1,33,34],[646,1,1,34,35]]],[20,1,1,35,36,[[666,1,1,35,36]]],[22,1,1,36,37,[[714,1,1,36,37]]],[23,3,3,37,40,[[779,3,3,37,40]]],[38,2,2,40,42,[[926,2,2,40,42]]]],[4184,5384,5719,6429,6431,7498,8813,9205,10017,10020,10060,11359,11361,11479,11586,11698,11806,11816,11833,11839,11976,11981,11982,12255,12611,12648,12669,12750,13431,14176,15994,16560,16563,16760,16941,17463,18351,19837,19839,19841,23104,23107]]],["commandments",[126,126,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,4,4,1,5,[[64,1,1,1,2],[65,1,1,2,3],[69,1,1,3,4],[73,1,1,4,5]]],[2,9,9,5,14,[[93,3,3,5,8],[94,1,1,8,9],[111,1,1,9,10],[115,3,3,10,13],[116,1,1,13,14]]],[3,4,4,14,18,[[131,3,3,14,17],[152,1,1,17,18]]],[4,40,40,18,58,[[156,2,2,18,20],[157,3,3,20,23],[158,4,4,23,27],[159,2,2,27,29],[160,4,4,29,33],[162,1,1,33,34],[163,6,6,34,40],[165,2,2,40,42],[167,1,1,42,43],[171,1,1,43,44],[178,3,3,44,47],[179,2,2,47,49],[180,5,5,49,54],[182,3,3,54,57],[183,1,1,57,58]]],[5,1,1,58,59,[[208,1,1,58,59]]],[6,2,2,59,61,[[212,1,1,59,60],[213,1,1,60,61]]],[10,10,10,61,71,[[292,1,1,61,62],[293,1,1,62,63],[296,1,1,63,64],[298,2,2,64,66],[299,1,1,66,67],[301,2,2,67,69],[304,1,1,69,70],[308,1,1,70,71]]],[11,5,5,71,76,[[329,3,3,71,74],[330,1,1,74,75],[335,1,1,75,76]]],[12,3,3,76,79,[[365,2,2,76,78],[366,1,1,78,79]]],[13,5,5,79,84,[[373,1,1,79,80],[383,1,1,80,81],[390,1,1,81,82],[397,1,1,82,83],[400,1,1,83,84]]],[14,3,3,84,87,[[409,1,1,84,85],[411,2,2,85,87]]],[15,8,8,87,95,[[413,3,3,87,90],[421,4,4,90,94],[422,1,1,94,95]]],[18,22,22,95,117,[[555,1,1,95,96],[566,1,1,96,97],[589,1,1,97,98],[596,19,19,98,117]]],[19,6,6,117,123,[[629,1,1,117,118],[630,1,1,118,119],[631,1,1,119,120],[634,2,2,120,122],[637,1,1,122,123]]],[20,1,1,123,124,[[670,1,1,123,124]]],[22,1,1,124,125,[[726,1,1,124,125]]],[26,1,1,125,126,[[858,1,1,125,126]]]],[697,1946,1975,2057,2189,2797,2808,2817,2847,3400,3527,3538,3539,3604,4175,4192,4193,4892,5006,5044,5063,5082,5084,5087,5088,5103,5111,5120,5122,5138,5139,5143,5148,5199,5209,5216,5221,5230,5235,5236,5276,5290,5324,5415,5579,5583,5584,5586,5595,5612,5620,5624,5626,5656,5716,5718,5724,5733,6431,6562,6572,8773,8830,8908,9043,9046,9057,9142,9146,9226,9359,9996,9999,10002,10030,10168,11150,11151,11183,11343,11527,11697,11875,11964,12184,12247,12251,12301,12303,12305,12524,12527,12540,12545,12578,15120,15357,15804,15904,15917,15930,15933,15945,15946,15958,15964,15971,15984,15996,16013,16025,16029,16041,16049,16064,16070,16074,16434,16456,16494,16576,16577,16664,17536,18632,21992]]],["law",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19742]]],["ordinances",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12581]]],["precept",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18206]]],["precepts",[2,2,[[15,1,1,0,1,[[421,1,1,0,1]]],[23,1,1,1,2,[[779,1,1,1,2]]]],[12525,19841]]]]},{"k":"H4688","v":[["*",[11,11,[[1,1,1,0,1,[[64,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[17,1,1,2,3,[[476,1,1,2,3]]],[18,5,5,3,8,[[545,1,1,3,4],[546,2,2,4,6],[565,1,1,6,7],[584,1,1,7,8]]],[31,1,1,8,9,[[890,1,1,8,9]]],[32,1,1,9,10,[[899,1,1,9,10]]],[37,1,1,10,11,[[920,1,1,10,11]]]],[1925,12522,13919,14922,14937,14950,15314,15723,22551,22683,23027]]],["+",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14922]]],["bottom",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1925]]],["deep",[5,5,[[17,1,1,0,1,[[476,1,1,0,1]]],[18,3,3,1,4,[[546,2,2,1,3],[584,1,1,3,4]]],[31,1,1,4,5,[[890,1,1,4,5]]]],[13919,14937,14950,15723,22551]]],["deeps",[3,3,[[15,1,1,0,1,[[421,1,1,0,1]]],[18,1,1,1,2,[[565,1,1,1,2]]],[37,1,1,2,3,[[920,1,1,2,3]]]],[12522,15314,23027]]],["depths",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22683]]]]},{"k":"H4689","v":[["*",[6,6,[[4,3,3,0,3,[[180,3,3,0,3]]],[8,1,1,3,4,[[257,1,1,3,4]]],[18,1,1,4,5,[[596,1,1,4,5]]],[23,1,1,5,6,[[763,1,1,5,6]]]],[5664,5666,5668,7789,16041,19416]]],["anguish",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16041]]],["distress",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7789]]],["straitness",[4,4,[[4,3,3,0,3,[[180,3,3,0,3]]],[23,1,1,3,4,[[763,1,1,3,4]]]],[5664,5666,5668,19416]]]]},{"k":"H4690","v":[["*",[2,2,[[8,2,2,0,2,[[237,1,1,0,1],[249,1,1,1,2]]]],[7248,7513]]],["pillars",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7248]]],["situate",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7513]]]]},{"k":"H4691","v":[["*",[7,7,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,5,5,1,6,[[502,1,1,1,2],[584,4,4,2,6]]],[35,1,1,6,7,[[906,1,1,6,7]]]],[13227,14268,15705,15712,15718,15727,22802]]],["+",[5,5,[[18,5,5,0,5,[[502,1,1,0,1],[584,4,4,1,5]]]],[14268,15705,15712,15718,15727]]],["anguish",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13227]]],["distress",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22802]]]]},{"k":"H4692","v":[["*",[25,25,[[4,5,5,0,5,[[172,2,2,0,2],[180,3,3,2,5]]],[11,2,2,5,7,[[336,1,1,5,6],[337,1,1,6,7]]],[13,3,3,7,10,[[374,1,1,7,8],[377,1,1,8,9],[398,1,1,9,10]]],[18,2,2,10,12,[[508,1,1,10,11],[537,1,1,11,12]]],[22,1,1,12,13,[[697,1,1,12,13]]],[23,2,2,13,15,[[763,1,1,13,14],[796,1,1,14,15]]],[25,5,5,15,20,[[805,4,4,15,19],[806,1,1,19,20]]],[32,1,1,20,21,[[897,1,1,20,21]]],[33,1,1,21,22,[[902,1,1,21,22]]],[34,1,1,22,23,[[904,1,1,22,23]]],[37,2,2,23,25,[[919,1,1,23,24],[922,1,1,24,25]]]],[5446,5447,5664,5666,5668,10212,10224,11351,11419,11885,14352,14816,18010,19416,20281,20531,20532,20536,20537,20548,22634,22726,22749,23002,23047]]],["+",[3,3,[[11,2,2,0,2,[[336,1,1,0,1],[337,1,1,1,2]]],[23,1,1,2,3,[[796,1,1,2,3]]]],[10212,10224,20281]]],["besieged",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20532]]],["bulwarks",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5447]]],["defence",[2,2,[[13,1,1,0,1,[[377,1,1,0,1]]],[22,1,1,1,2,[[697,1,1,1,2]]]],[11419,18010]]],["fenced",[1,1,[[13,1,1,0,1,[[374,1,1,0,1]]]],[11351]]],["hold",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23002]]],["siege",[13,13,[[4,4,4,0,4,[[172,1,1,0,1],[180,3,3,1,4]]],[13,1,1,4,5,[[398,1,1,4,5]]],[23,1,1,5,6,[[763,1,1,5,6]]],[25,4,4,6,10,[[805,3,3,6,9],[806,1,1,9,10]]],[32,1,1,10,11,[[897,1,1,10,11]]],[33,1,1,11,12,[[902,1,1,11,12]]],[37,1,1,12,13,[[922,1,1,12,13]]]],[5446,5664,5666,5668,11885,19416,20531,20536,20537,20548,22634,22726,23047]]],["strong",[2,2,[[18,2,2,0,2,[[508,1,1,0,1],[537,1,1,1,2]]]],[14352,14816]]],["tower",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22749]]]]},{"k":"H4693","v":[["*",[5,4,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]],[23,1,1,2,3,[[754,1,1,2,3]]],[32,2,1,3,4,[[899,2,1,3,4]]]],[10085,18377,19218,22676]]],["fortified",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22676]]],["fortress",[2,2,[[23,1,1,0,1,[[754,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]]],[19218,22676]]],["places",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10085,18377]]]]},{"k":"H4694","v":[["*",[8,8,[[13,6,6,0,6,[[377,3,3,0,3],[378,1,1,3,4],[380,1,1,4,5],[387,1,1,5,6]]],[22,1,1,6,7,[[707,1,1,6,7]]],[33,1,1,7,8,[[901,1,1,7,8]]]],[11424,11425,11437,11441,11481,11627,18196,22700]]],["fenced",[5,5,[[13,5,5,0,5,[[377,2,2,0,2],[378,1,1,2,3],[380,1,1,3,4],[387,1,1,4,5]]]],[11424,11437,11441,11481,11627]]],["forts",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18196]]],["holds",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11425]]],["munition",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22700]]]]},{"k":"H4695","v":[["contended",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18463]]]]},{"k":"H4696","v":[["*",[13,10,[[1,2,1,0,1,[[77,2,1,0,1]]],[8,2,1,1,2,[[252,2,1,1,2]]],[13,2,2,2,4,[[392,2,2,2,4]]],[22,1,1,4,5,[[726,1,1,4,5]]],[23,1,1,5,6,[[747,1,1,5,6]]],[25,5,4,6,10,[[804,4,3,6,9],[810,1,1,9,10]]]],[2331,7667,11751,11752,18618,19005,20509,20510,20511,20626]]],["+",[1,1,[[25,1,1,0,1,[[804,1,1,0,1]]]],[20509]]],["brow",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18618]]],["forehead",[9,7,[[1,2,1,0,1,[[77,2,1,0,1]]],[8,2,1,1,2,[[252,2,1,1,2]]],[13,2,2,2,4,[[392,2,2,2,4]]],[23,1,1,4,5,[[747,1,1,4,5]]],[25,2,2,5,7,[[804,2,2,5,7]]]],[2331,7667,11751,11752,19005,20510,20511]]],["foreheads",[2,2,[[25,2,2,0,2,[[804,1,1,0,1],[810,1,1,1,2]]]],[20510,20626]]]]},{"k":"H4697","v":[["greaves",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7624]]]]},{"k":"H4698","v":[["bells",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23088]]]]},{"k":"H4699","v":[["bottom",[1,1,[[37,1,1,0,1,[[911,1,1,0,1]]]],[22886]]]]},{"k":"H4700","v":[["cymbals",[13,13,[[12,8,8,0,8,[[350,1,1,0,1],[352,3,3,1,4],[353,2,2,4,6],[362,2,2,6,8]]],[13,3,3,8,11,[[371,2,2,8,10],[395,1,1,10,11]]],[14,1,1,11,12,[[405,1,1,11,12]]],[15,1,1,12,13,[[424,1,1,12,13]]]],[10768,10807,10810,10819,10825,10862,11047,11052,11280,11281,11816,12107,12651]]]]},{"k":"H4701","v":[["*",[12,9,[[1,8,6,0,6,[[77,4,3,0,3],[78,2,1,3,4],[88,2,2,4,6]]],[2,3,2,6,8,[[97,2,1,6,7],[105,1,1,7,8]]],[25,1,1,8,9,[[822,1,1,8,9]]]],[2297,2330,2332,2342,2692,2695,2926,3205,20970]]],["diadem",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20970]]],["mitre",[11,8,[[1,8,6,0,6,[[77,4,3,0,3],[78,2,1,3,4],[88,2,2,4,6]]],[2,3,2,6,8,[[97,2,1,6,7],[105,1,1,7,8]]]],[2297,2330,2332,2342,2692,2695,2926,3205]]]]},{"k":"H4702","v":[["bed",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18184]]]]},{"k":"H4703","v":[["*",[3,3,[[18,1,1,0,1,[[514,1,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[14473,16978,22079]]],["goings",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16978]]],["steps",[2,2,[[18,1,1,0,1,[[514,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[14473,22079]]]]},{"k":"H4704","v":[["+",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21970]]]]},{"k":"H4705","v":[["*",[5,4,[[0,2,1,0,1,[[18,2,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]],[17,1,1,2,3,[[443,1,1,2,3]]],[22,1,1,3,4,[[741,1,1,3,4]]]],[477,11701,13036,18884]]],["company",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11701]]],["one",[2,1,[[0,2,1,0,1,[[18,2,1,0,1]]]],[477]]],["small",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13036]]],["while",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18884]]]]},{"k":"H4706","v":[["Mizar",[1,1,[[18,1,1,0,1,[[519,1,1,0,1]]]],[14561]]]]},{"k":"H4707","v":[["*",[2,2,[[13,1,1,0,1,[[386,1,1,0,1]]],[22,1,1,1,2,[[699,1,1,1,2]]]],[11611,18043]]],["tower",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11611]]],["watchtower",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18043]]]]},{"k":"H4708","v":[["*",[11,10,[[5,3,3,0,3,[[197,1,1,0,1],[201,1,1,1,2],[204,1,1,2,3]]],[6,2,1,3,4,[[221,2,1,3,4]]],[8,1,1,4,5,[[257,1,1,4,5]]],[23,5,5,5,10,[[784,4,4,5,9],[785,1,1,9,10]]]],[6115,6240,6319,6858,7790,19947,19949,19953,19954,19958]]],["+",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6858]]],["Mizpah",[5,5,[[23,5,5,0,5,[[784,4,4,0,4],[785,1,1,4,5]]]],[19947,19949,19953,19954,19958]]],["Mizpeh",[5,5,[[5,3,3,0,3,[[197,1,1,0,1],[201,1,1,1,2],[204,1,1,2,3]]],[6,1,1,3,4,[[221,1,1,3,4]]],[8,1,1,4,5,[[257,1,1,4,5]]]],[6115,6240,6319,6858,7790]]]]},{"k":"H4709","v":[["*",[35,33,[[0,1,1,0,1,[[30,1,1,0,1]]],[5,1,1,1,2,[[197,1,1,1,2]]],[6,8,8,2,10,[[220,1,1,2,3],[221,2,2,3,5],[230,2,2,5,7],[231,3,3,7,10]]],[8,8,7,10,17,[[242,7,6,10,16],[245,1,1,16,17]]],[10,1,1,17,18,[[305,1,1,17,18]]],[11,2,2,18,20,[[337,2,2,18,20]]],[13,1,1,20,21,[[382,1,1,20,21]]],[15,3,3,21,24,[[415,3,3,21,24]]],[23,9,8,24,32,[[784,2,2,24,26],[785,7,6,26,32]]],[27,1,1,32,33,[[866,1,1,32,33]]]],[922,6110,6828,6840,6863,7055,7057,7103,7107,7110,7357,7358,7359,7363,7364,7368,7435,9271,10245,10247,11515,12334,12342,12346,19951,19956,19958,19960,19963,19967,19971,19973,22153]]],["Mizpah",[18,17,[[0,1,1,0,1,[[30,1,1,0,1]]],[10,1,1,1,2,[[305,1,1,1,2]]],[11,2,2,2,4,[[337,2,2,2,4]]],[13,1,1,4,5,[[382,1,1,4,5]]],[15,3,3,5,8,[[415,3,3,5,8]]],[23,9,8,8,16,[[784,2,2,8,10],[785,7,6,10,16]]],[27,1,1,16,17,[[866,1,1,16,17]]]],[922,9271,10245,10247,11515,12334,12342,12346,19951,19956,19958,19960,19963,19967,19971,19973,22153]]],["Mizpeh",[17,16,[[5,1,1,0,1,[[197,1,1,0,1]]],[6,8,8,1,9,[[220,1,1,1,2],[221,2,2,2,4],[230,2,2,4,6],[231,3,3,6,9]]],[8,8,7,9,16,[[242,7,6,9,15],[245,1,1,15,16]]]],[6110,6828,6840,6863,7055,7057,7103,7107,7110,7357,7358,7359,7363,7364,7368,7435]]]]},{"k":"H4710","v":[["things",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22516]]]]},{"k":"H4711","v":[["out",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18933]]]]},{"k":"H4712","v":[["*",[3,3,[[18,2,2,0,2,[[593,1,1,0,1],[595,1,1,1,2]]],[24,1,1,2,3,[[797,1,1,2,3]]]],[15851,15874,20313]]],["distress",[1,1,[[18,1,1,0,1,[[595,1,1,0,1]]]],[15874]]],["pains",[1,1,[[18,1,1,0,1,[[593,1,1,0,1]]]],[15851]]],["straits",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20313]]]]},{"k":"H4713","v":[["*",[30,25,[[0,11,10,0,10,[[11,2,2,0,2],[15,2,2,2,4],[20,1,1,4,5],[24,1,1,5,6],[38,3,3,6,9],[42,2,1,9,10]]],[1,5,5,10,15,[[50,1,1,10,11],[51,4,4,11,15]]],[2,1,1,15,16,[[113,1,1,15,16]]],[4,2,2,16,18,[[175,1,1,16,17],[178,1,1,17,18]]],[5,1,1,18,19,[[210,1,1,18,19]]],[8,2,2,19,21,[[265,2,2,19,21]]],[9,3,1,21,22,[[289,3,1,21,22]]],[12,4,2,22,24,[[339,1,1,22,23],[348,3,1,23,24]]],[14,1,1,24,25,[[411,1,1,24,25]]]],[310,312,382,384,522,670,1150,1151,1154,1322,1551,1565,1566,1568,1573,3456,5507,5572,6483,7989,7991,8674,10340,10696,12238]]],["+",[8,6,[[0,1,1,0,1,[[38,1,1,0,1]]],[1,2,2,1,3,[[51,2,2,1,3]]],[8,1,1,3,4,[[265,1,1,3,4]]],[9,2,1,4,5,[[289,2,1,4,5]]],[12,2,1,5,6,[[348,2,1,5,6]]]],[1150,1565,1573,7989,8674,10696]]],["Egypt",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7991]]],["Egyptian",[12,12,[[0,5,5,0,5,[[15,2,2,0,2],[20,1,1,2,3],[24,1,1,3,4],[38,1,1,4,5]]],[1,3,3,5,8,[[50,1,1,5,6],[51,2,2,6,8]]],[2,1,1,8,9,[[113,1,1,8,9]]],[4,1,1,9,10,[[175,1,1,9,10]]],[9,1,1,10,11,[[289,1,1,10,11]]],[12,1,1,11,12,[[339,1,1,11,12]]]],[382,384,522,670,1151,1551,1566,1568,3456,5507,8674,10340]]],["Egyptian's",[2,2,[[0,1,1,0,1,[[38,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[1154,10696]]],["Egyptians",[7,6,[[0,4,3,0,3,[[11,2,2,0,2],[42,2,1,2,3]]],[4,1,1,3,4,[[178,1,1,3,4]]],[5,1,1,4,5,[[210,1,1,4,5]]],[14,1,1,5,6,[[411,1,1,5,6]]]],[310,312,1322,5572,6483,12238]]]]},{"k":"H4714","v":[["*",[681,602,[[0,88,80,0,80,[[9,2,2,0,2],[11,3,3,2,5],[12,2,2,5,7],[14,1,1,7,8],[20,1,1,8,9],[24,1,1,9,10],[25,1,1,10,11],[36,3,3,11,14],[38,1,1,14,15],[39,3,2,15,17],[40,21,18,17,35],[41,3,3,35,38],[42,3,3,38,41],[44,11,11,41,52],[45,10,9,52,61],[46,14,12,61,73],[47,2,1,73,74],[49,6,6,74,80]]],[1,175,148,80,228,[[50,7,7,80,87],[51,1,1,87,88],[52,13,13,88,101],[53,4,4,101,105],[54,2,2,105,107],[55,11,9,107,116],[56,13,9,116,125],[57,10,8,125,133],[58,11,9,133,142],[59,12,10,142,152],[60,8,7,152,159],[61,22,16,159,175],[62,8,8,175,183],[63,26,19,183,202],[64,1,1,202,203],[65,4,4,203,207],[66,1,1,207,208],[67,5,4,208,212],[68,2,2,212,214],[69,1,1,214,215],[71,1,1,215,216],[72,2,2,216,218],[78,1,1,218,219],[81,7,7,219,226],[82,1,1,226,227],[83,1,1,227,228]]],[2,11,11,228,239,[[100,1,1,228,229],[107,1,1,229,230],[108,2,2,230,232],[111,1,1,232,233],[112,1,1,233,234],[114,3,3,234,237],[115,2,2,237,239]]],[3,33,31,239,270,[[117,1,1,239,240],[119,1,1,240,241],[124,1,1,241,242],[125,1,1,242,243],[127,3,3,243,246],[129,1,1,246,247],[130,6,6,247,253],[131,1,1,253,254],[136,5,3,254,257],[137,1,1,257,258],[138,2,2,258,260],[139,1,1,260,261],[140,1,1,261,262],[142,2,2,262,264],[148,1,1,264,265],[149,4,4,265,269],[150,1,1,269,270]]],[4,50,47,270,317,[[153,2,2,270,272],[156,5,5,272,277],[157,2,2,277,279],[158,4,3,279,282],[159,3,3,282,285],[160,1,1,285,286],[161,3,3,286,289],[162,2,2,289,291],[163,4,3,291,294],[165,2,2,294,296],[167,1,1,296,297],[168,5,4,297,301],[169,1,1,301,302],[172,1,1,302,303],[175,1,1,303,304],[176,3,3,304,307],[177,1,1,307,308],[178,2,2,308,310],[180,3,3,310,313],[181,3,3,313,316],[186,1,1,316,317]]],[5,18,16,317,333,[[188,1,1,317,318],[191,5,4,318,322],[195,1,1,322,323],[199,1,1,323,324],[201,2,2,324,326],[210,8,7,326,333]]],[6,9,9,333,342,[[212,2,2,333,335],[216,3,3,335,338],[220,1,1,338,339],[221,2,2,339,341],[229,1,1,341,342]]],[8,13,11,342,353,[[237,1,1,342,343],[239,1,1,343,344],[241,1,1,344,345],[243,1,1,345,346],[245,2,1,346,347],[247,3,2,347,349],[250,3,3,349,352],[262,1,1,352,353]]],[9,2,2,353,355,[[273,2,2,353,355]]],[10,25,21,355,376,[[293,1,1,355,356],[294,2,2,356,358],[296,1,1,358,359],[298,6,6,359,365],[299,2,2,365,367],[300,2,2,367,369],[301,7,4,369,373],[302,3,2,373,375],[304,1,1,375,376]]],[11,15,11,376,387,[[319,1,1,376,377],[329,4,3,377,380],[330,3,2,380,382],[333,1,1,382,383],[335,2,2,383,385],[336,3,1,385,386],[337,1,1,386,387]]],[12,4,4,387,391,[[338,2,2,387,389],[350,1,1,389,390],[354,1,1,390,391]]],[13,19,17,391,408,[[367,2,2,391,393],[371,1,1,393,394],[372,1,1,394,395],[373,2,2,395,397],[375,2,2,397,399],[376,2,1,399,400],[378,3,3,400,403],[386,1,1,403,404],[392,1,1,404,405],[401,1,1,405,406],[402,3,2,406,408]]],[15,2,2,408,410,[[421,2,2,408,410]]],[18,15,15,410,425,[[545,1,1,410,411],[555,3,3,411,414],[557,1,1,414,415],[558,2,2,415,417],[582,2,2,417,419],[583,2,2,419,421],[591,1,1,421,422],[612,2,2,422,424],[613,1,1,424,425]]],[19,1,1,425,426,[[634,1,1,425,426]]],[22,51,40,426,466,[[685,1,1,426,427],[688,2,2,427,429],[689,3,3,429,432],[697,26,18,432,450],[698,4,3,450,453],[701,1,1,453,454],[705,2,2,454,456],[708,4,3,456,459],[709,2,2,459,461],[714,3,2,461,463],[721,1,1,463,464],[723,1,1,464,465],[730,1,1,465,466]]],[23,62,54,466,520,[[746,3,3,466,469],[751,2,2,469,471],[753,1,1,471,472],[755,2,2,472,474],[760,1,1,474,475],[767,1,1,475,476],[768,1,1,476,477],[769,1,1,477,478],[770,4,3,478,481],[775,1,1,481,482],[776,2,2,482,484],[778,1,1,484,485],[781,2,2,485,487],[785,1,1,487,488],[786,7,6,488,494],[787,7,5,494,499],[788,14,11,499,510],[790,11,10,510,520]]],[24,1,1,520,521,[[801,1,1,520,521]]],[25,54,48,521,569,[[817,1,1,521,522],[818,1,1,522,523],[820,1,1,523,524],[821,8,7,524,531],[824,6,5,531,536],[828,1,1,536,537],[830,12,10,537,547],[831,18,16,547,563],[832,1,1,563,564],[833,5,5,564,569]]],[26,4,4,569,573,[[858,1,1,569,570],[860,3,3,570,573]]],[27,13,13,573,586,[[863,1,1,573,574],[868,2,2,574,576],[869,1,1,576,577],[870,2,2,577,579],[872,3,3,579,582],[873,3,3,582,585],[874,1,1,585,586]]],[28,1,1,586,587,[[878,1,1,586,587]]],[29,7,7,587,594,[[880,1,1,587,588],[881,2,2,588,590],[882,1,1,590,591],[886,1,1,591,592],[887,2,2,592,594]]],[32,2,2,594,596,[[898,1,1,594,595],[899,1,1,595,596]]],[33,1,1,596,597,[[902,1,1,596,597]]],[36,1,1,597,598,[[910,1,1,597,598]]],[37,4,4,598,602,[[920,2,2,598,600],[924,2,2,600,602]]]],[240,247,308,309,312,319,328,378,534,676,694,1108,1111,1119,1150,1173,1177,1203,1214,1224,1225,1228,1229,1231,1236,1238,1239,1240,1241,1243,1248,1249,1250,1251,1252,1253,1254,1255,1292,1305,1322,1360,1362,1366,1367,1371,1376,1377,1378,1381,1383,1384,1389,1390,1392,1393,1394,1406,1412,1413,1420,1426,1431,1433,1434,1435,1440,1441,1446,1447,1448,1449,1450,1456,1509,1513,1517,1520,1528,1532,1533,1537,1540,1545,1547,1549,1550,1577,1586,1587,1588,1589,1590,1591,1595,1596,1597,1598,1599,1600,1601,1619,1620,1621,1622,1636,1644,1660,1661,1662,1666,1668,1681,1682,1683,1684,1688,1689,1690,1696,1703,1704,1706,1707,1709,1715,1716,1717,1726,1727,1731,1734,1736,1746,1748,1751,1753,1760,1764,1765,1766,1767,1779,1783,1784,1789,1790,1791,1792,1796,1798,1799,1807,1809,1810,1811,1812,1813,1815,1817,1828,1829,1833,1839,1843,1845,1846,1849,1851,1852,1855,1856,1857,1858,1867,1870,1875,1876,1881,1882,1883,1884,1885,1893,1894,1896,1897,1898,1899,1900,1901,1902,1906,1907,1909,1912,1913,1914,1915,1916,1919,1920,1946,1948,1950,1953,1979,1986,2000,2007,2008,2009,2027,2030,2053,2134,2153,2159,2382,2439,2442,2445,2446,2449,2450,2461,2474,2514,3042,3254,3315,3317,3402,3445,3507,3511,3524,3537,3569,3605,3705,3956,3966,4029,4042,4044,4097,4110,4111,4112,4121,4127,4130,4194,4316,4326,4327,4345,4380,4386,4438,4454,4493,4548,4729,4761,4763,4764,4798,4821,4919,4922,5024,5038,5041,5049,5050,5059,5068,5098,5107,5108,5119,5126,5129,5151,5164,5169,5183,5205,5208,5211,5212,5218,5277,5282,5334,5343,5345,5348,5354,5380,5428,5504,5534,5543,5547,5564,5571,5574,5638,5671,5679,5681,5695,5704,5850,5879,5938,5939,5940,5943,6046,6157,6206,6249,6480,6481,6482,6483,6490,6493,6508,6546,6557,6662,6663,6667,6822,6842,6845,7054,7267,7305,7337,7377,7436,7466,7468,7562,7566,7567,7938,8186,8203,8817,8865,8874,8897,8994,9001,9006,9036,9038,9050,9060,9067,9107,9108,9125,9126,9129,9148,9153,9179,9243,9713,9987,9990,10019,10045,10048,10134,10194,10199,10209,10248,10260,10263,10765,10884,11210,11211,11278,11287,11332,11346,11390,11392,11397,11439,11440,11446,11597,11740,11986,11996,11997,12520,12529,14931,15125,15156,15164,15206,15222,15227,15629,15644,15658,15672,15823,16183,16184,16206,16591,17800,17874,17876,17895,17899,17900,18005,18006,18007,18008,18016,18017,18018,18019,18020,18021,18022,18023,18024,18025,18026,18027,18028,18029,18032,18033,18034,18082,18163,18164,18219,18220,18224,18251,18253,18336,18339,18508,18575,18700,18971,18983,19001,19141,19144,19201,19230,19233,19350,19491,19532,19553,19593,19594,19595,19723,19751,19752,19814,19879,19881,19974,19989,19990,19991,19992,19993,19994,19999,20004,20008,20009,20010,20011,20018,20022,20023,20024,20025,20034,20036,20037,20038,20040,20047,20053,20056,20058,20059,20062,20064,20065,20069,20070,20448,20788,20840,20885,20900,20901,20902,20903,20904,20905,20931,21010,21015,21026,21028,21034,21128,21185,21186,21189,21192,21193,21195,21196,21197,21202,21203,21208,21210,21212,21213,21214,21215,21217,21219,21220,21222,21223,21225,21226,21227,21229,21230,21232,21250,21260,21263,21264,21266,22003,22044,22078,22079,22120,22189,22194,22207,22211,22214,22241,22245,22251,22253,22261,22265,22270,22362,22389,22396,22404,22420,22489,22500,22502,22652,22679,22721,22860,23026,23027,23086,23087]]],["+",[96,94,[[0,5,5,0,5,[[12,1,1,0,1],[41,1,1,1,2],[42,1,1,2,3],[44,1,1,3,4],[46,1,1,4,5]]],[1,19,18,5,23,[[52,3,3,5,8],[55,2,2,8,10],[58,1,1,10,11],[61,3,2,11,13],[62,5,5,13,18],[63,1,1,18,19],[66,1,1,19,20],[67,1,1,20,21],[72,1,1,21,22],[83,1,1,22,23]]],[3,10,10,23,33,[[127,1,1,23,24],[130,1,1,24,25],[136,2,2,25,27],[137,1,1,27,28],[138,2,2,28,30],[139,1,1,30,31],[140,1,1,31,32],[148,1,1,32,33]]],[4,13,13,33,46,[[156,4,4,33,37],[158,1,1,37,38],[161,2,2,38,40],[168,2,2,40,42],[175,1,1,42,43],[176,1,1,43,44],[177,1,1,44,45],[178,1,1,45,46]]],[5,7,6,46,52,[[188,1,1,46,47],[191,4,3,47,50],[210,2,2,50,52]]],[6,6,6,52,58,[[212,1,1,52,53],[216,2,2,53,55],[220,1,1,55,56],[221,2,2,56,58]]],[8,5,5,58,63,[[243,1,1,58,59],[245,1,1,59,60],[247,1,1,60,61],[250,2,2,61,63]]],[9,2,2,63,65,[[273,2,2,63,65]]],[10,5,5,65,70,[[298,3,3,65,68],[300,2,2,68,70]]],[11,1,1,70,71,[[333,1,1,70,71]]],[12,1,1,71,72,[[354,1,1,71,72]]],[13,6,6,72,78,[[367,2,2,72,74],[371,1,1,74,75],[375,1,1,75,76],[376,1,1,76,77],[378,1,1,77,78]]],[15,1,1,78,79,[[421,1,1,78,79]]],[18,2,2,79,81,[[557,1,1,79,80],[591,1,1,80,81]]],[22,2,2,81,83,[[689,1,1,81,82],[697,1,1,82,83]]],[23,3,3,83,86,[[746,1,1,83,84],[770,1,1,84,85],[781,1,1,85,86]]],[25,4,4,86,90,[[817,1,1,86,87],[824,2,2,87,89],[828,1,1,89,90]]],[27,3,3,90,93,[[872,2,2,90,92],[873,1,1,92,93]]],[36,1,1,93,94,[[910,1,1,93,94]]]],[319,1255,1292,1383,1450,1589,1590,1591,1682,1684,1767,1851,1855,1870,1875,1876,1881,1883,1900,1986,2000,2159,2514,4044,4127,4316,4327,4345,4380,4386,4438,4454,4729,5024,5041,5049,5050,5107,5169,5183,5343,5348,5504,5534,5564,5574,5879,5938,5939,5940,6482,6508,6546,6662,6667,6822,6842,6845,7377,7436,7468,7562,7566,8186,8203,9001,9036,9038,9107,9108,10134,10884,11210,11211,11278,11392,11397,11440,12529,15206,15823,17895,18027,19001,19595,19879,20788,21015,21028,21128,22241,22251,22265,22860]]],["Egypt",[494,451,[[0,72,68,0,68,[[11,3,3,0,3],[12,1,1,3,4],[14,1,1,4,5],[20,1,1,5,6],[24,1,1,6,7],[25,1,1,7,8],[36,3,3,8,11],[38,1,1,11,12],[39,3,2,12,14],[40,19,18,14,32],[41,2,2,32,34],[42,1,1,34,35],[44,9,9,35,44],[45,9,8,44,52],[46,11,11,52,63],[47,2,1,63,64],[49,4,4,64,68]]],[1,104,94,68,162,[[50,6,6,68,74],[51,1,1,74,75],[52,6,6,75,81],[53,4,4,81,85],[54,2,2,85,87],[55,6,5,87,92],[56,9,7,92,99],[57,7,6,99,105],[58,9,7,105,112],[59,11,9,112,121],[60,6,6,121,127],[61,13,11,127,138],[62,3,3,138,141],[63,5,5,141,146],[65,4,4,146,150],[68,1,1,150,151],[69,1,1,151,152],[71,1,1,152,153],[72,1,1,153,154],[78,1,1,154,155],[81,6,6,155,161],[82,1,1,161,162]]],[2,11,11,162,173,[[100,1,1,162,163],[107,1,1,163,164],[108,2,2,164,166],[111,1,1,166,167],[112,1,1,167,168],[114,3,3,168,171],[115,2,2,171,173]]],[3,19,18,173,191,[[117,1,1,173,174],[119,1,1,174,175],[124,1,1,175,176],[125,1,1,176,177],[127,2,2,177,179],[129,1,1,179,180],[130,4,4,180,184],[131,1,1,184,185],[136,2,1,185,186],[142,2,2,186,188],[149,2,2,188,190],[150,1,1,190,191]]],[4,37,35,191,226,[[153,2,2,191,193],[156,1,1,193,194],[157,2,2,194,196],[158,3,3,196,199],[159,3,3,199,202],[160,1,1,202,203],[161,1,1,203,204],[162,2,2,204,206],[163,4,3,206,209],[165,2,2,209,211],[167,1,1,211,212],[168,3,2,212,214],[169,1,1,214,215],[172,1,1,215,216],[176,2,2,216,218],[178,1,1,218,219],[180,3,3,219,222],[181,3,3,222,225],[186,1,1,225,226]]],[5,10,10,226,236,[[191,1,1,226,227],[195,1,1,227,228],[199,1,1,228,229],[201,2,2,229,231],[210,5,5,231,236]]],[6,2,2,236,238,[[212,1,1,236,237],[229,1,1,237,238]]],[8,5,5,238,243,[[237,1,1,238,239],[247,2,2,239,241],[250,1,1,241,242],[262,1,1,242,243]]],[10,20,16,243,259,[[293,1,1,243,244],[294,2,2,244,246],[296,1,1,246,247],[298,3,3,247,250],[299,2,2,250,252],[301,7,4,252,256],[302,3,2,256,258],[304,1,1,258,259]]],[11,13,9,259,268,[[329,4,3,259,262],[330,3,2,262,264],[335,2,2,264,266],[336,3,1,266,267],[337,1,1,267,268]]],[12,1,1,268,269,[[350,1,1,268,269]]],[13,13,12,269,281,[[372,1,1,269,270],[373,2,2,270,272],[375,1,1,272,273],[376,1,1,273,274],[378,2,2,274,276],[386,1,1,276,277],[392,1,1,277,278],[401,1,1,278,279],[402,3,2,279,281]]],[15,1,1,281,282,[[421,1,1,281,282]]],[18,13,13,282,295,[[545,1,1,282,283],[555,3,3,283,286],[558,2,2,286,288],[582,2,2,288,290],[583,2,2,290,292],[612,2,2,292,294],[613,1,1,294,295]]],[19,1,1,295,296,[[634,1,1,295,296]]],[22,39,34,296,330,[[685,1,1,296,297],[688,2,2,297,299],[689,1,1,299,300],[697,19,16,300,316],[698,3,3,316,319],[701,1,1,319,320],[705,2,2,320,322],[708,3,2,322,324],[709,1,1,324,325],[714,3,2,325,327],[721,1,1,327,328],[723,1,1,328,329],[730,1,1,329,330]]],[23,58,51,330,381,[[746,2,2,330,332],[751,2,2,332,334],[753,1,1,334,335],[755,2,2,335,337],[760,1,1,337,338],[767,1,1,338,339],[768,1,1,339,340],[769,1,1,340,341],[770,3,2,341,343],[775,1,1,343,344],[776,2,2,344,346],[778,1,1,346,347],[781,1,1,347,348],[785,1,1,348,349],[786,7,6,349,355],[787,6,5,355,360],[788,14,11,360,371],[790,11,10,371,381]]],[25,46,41,381,422,[[818,1,1,381,382],[820,1,1,382,383],[821,8,7,383,390],[824,4,3,390,393],[830,10,9,393,402],[831,16,14,402,416],[832,1,1,416,417],[833,5,5,417,422]]],[26,4,4,422,426,[[858,1,1,422,423],[860,3,3,423,426]]],[27,10,10,426,436,[[863,1,1,426,427],[868,2,2,427,429],[869,1,1,429,430],[870,2,2,430,432],[872,1,1,432,433],[873,2,2,433,435],[874,1,1,435,436]]],[28,1,1,436,437,[[878,1,1,436,437]]],[29,7,7,437,444,[[880,1,1,437,438],[881,2,2,438,440],[882,1,1,440,441],[886,1,1,441,442],[887,2,2,442,444]]],[32,2,2,444,446,[[898,1,1,444,445],[899,1,1,445,446]]],[33,1,1,446,447,[[902,1,1,446,447]]],[37,4,4,447,451,[[920,2,2,447,449],[924,2,2,449,451]]]],[308,309,312,328,378,534,676,694,1108,1111,1119,1150,1173,1177,1203,1214,1224,1225,1228,1229,1231,1236,1238,1239,1240,1241,1243,1248,1249,1250,1251,1252,1253,1254,1305,1362,1366,1367,1371,1376,1377,1378,1381,1384,1389,1390,1392,1393,1394,1406,1412,1413,1426,1431,1433,1434,1435,1440,1441,1446,1447,1448,1449,1456,1513,1520,1528,1532,1533,1537,1540,1547,1549,1550,1577,1586,1595,1596,1597,1598,1599,1619,1620,1621,1622,1636,1644,1666,1668,1681,1682,1683,1688,1689,1690,1696,1704,1706,1707,1715,1716,1717,1726,1727,1734,1746,1748,1751,1760,1764,1765,1766,1779,1784,1789,1790,1791,1792,1796,1798,1799,1807,1809,1810,1811,1812,1815,1817,1828,1829,1833,1843,1845,1846,1856,1857,1858,1867,1882,1884,1885,1894,1896,1897,1900,1901,1948,1950,1953,1979,2027,2053,2134,2153,2382,2439,2442,2445,2446,2449,2461,2474,3042,3254,3315,3317,3402,3445,3507,3511,3524,3537,3569,3605,3705,3956,3966,4029,4042,4097,4110,4111,4112,4130,4194,4326,4493,4548,4761,4798,4821,4919,4922,5038,5059,5068,5098,5107,5108,5119,5126,5129,5151,5164,5205,5208,5211,5212,5218,5277,5282,5334,5345,5354,5380,5428,5543,5547,5571,5638,5671,5679,5681,5695,5704,5850,5943,6046,6157,6206,6249,6480,6481,6483,6490,6493,6557,7054,7267,7466,7468,7567,7938,8817,8865,8874,8897,8994,9006,9050,9060,9067,9125,9126,9129,9148,9153,9179,9243,9987,9990,10019,10045,10048,10194,10199,10209,10248,10765,11287,11332,11346,11390,11397,11439,11446,11597,11740,11986,11996,11997,12520,14931,15125,15156,15164,15222,15227,15629,15644,15658,15672,16183,16184,16206,16591,17800,17874,17876,17900,18005,18007,18016,18017,18018,18019,18020,18021,18022,18023,18024,18025,18026,18027,18028,18029,18032,18033,18034,18082,18163,18164,18219,18220,18251,18336,18339,18508,18575,18700,18971,18983,19141,19144,19201,19230,19233,19350,19491,19532,19553,19593,19594,19723,19751,19752,19814,19881,19974,19989,19990,19991,19992,19993,19994,19999,20004,20008,20009,20010,20011,20018,20022,20023,20024,20025,20034,20036,20037,20038,20040,20047,20053,20056,20058,20059,20062,20064,20065,20069,20070,20840,20885,20900,20901,20902,20903,20904,20905,20931,21010,21026,21034,21185,21186,21189,21192,21193,21195,21197,21202,21203,21208,21210,21212,21213,21214,21215,21217,21219,21220,21222,21223,21225,21226,21229,21232,21250,21260,21263,21264,21266,22003,22044,22078,22079,22120,22189,22194,22207,22211,22214,22245,22253,22261,22270,22362,22389,22396,22404,22420,22489,22500,22502,22652,22679,22721,23026,23027,23086,23087]]],["Egyptian",[2,2,[[22,2,2,0,2,[[689,1,1,0,1],[697,1,1,1,2]]]],[17899,18027]]],["Egyptians",[85,76,[[0,9,9,0,9,[[40,2,2,0,2],[42,1,1,2,3],[44,1,1,3,4],[45,1,1,4,5],[46,2,2,5,7],[49,2,2,7,9]]],[1,52,44,9,53,[[50,1,1,9,10],[52,4,4,10,14],[55,3,3,14,17],[56,4,4,17,21],[57,3,2,21,23],[58,1,1,23,24],[59,1,1,24,25],[60,2,2,25,27],[61,6,5,27,32],[63,20,15,32,47],[64,1,1,47,48],[67,4,3,48,51],[68,1,1,51,52],[81,1,1,52,53]]],[3,4,4,53,57,[[130,1,1,53,54],[136,1,1,54,55],[149,2,2,55,57]]],[5,1,1,57,58,[[210,1,1,57,58]]],[6,1,1,58,59,[[216,1,1,58,59]]],[8,3,3,59,62,[[239,1,1,59,60],[241,1,1,60,61],[245,1,1,61,62]]],[11,1,1,62,63,[[319,1,1,62,63]]],[22,8,7,63,70,[[697,5,4,63,67],[698,1,1,67,68],[708,1,1,68,69],[709,1,1,69,70]]],[23,1,1,70,71,[[787,1,1,70,71]]],[24,1,1,71,72,[[801,1,1,71,72]]],[25,4,4,72,76,[[830,2,2,72,74],[831,2,2,74,76]]]],[1250,1251,1322,1360,1420,1435,1440,1509,1517,1545,1587,1588,1600,1601,1660,1661,1662,1690,1703,1706,1709,1731,1736,1753,1783,1809,1813,1839,1843,1846,1849,1852,1893,1898,1899,1901,1902,1906,1907,1909,1912,1913,1914,1915,1916,1919,1920,1946,2007,2008,2009,2030,2450,4121,4326,4763,4764,6482,6663,7305,7337,7436,9713,18006,18008,18025,18027,18033,18224,18253,20010,20448,21195,21196,21227,21230]]],["Mizraim",[4,4,[[0,2,2,0,2,[[9,2,2,0,2]]],[12,2,2,2,4,[[338,2,2,2,4]]]],[240,247,10260,10263]]]]},{"k":"H4715","v":[["pot",[2,2,[[19,2,2,0,2,[[644,1,1,0,1],[654,1,1,1,2]]]],[16876,17190]]]]},{"k":"H4716","v":[["*",[2,2,[[22,2,2,0,2,[[681,1,1,0,1],[683,1,1,1,2]]]],[17731,17763]]],["rottenness",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17763]]],["stink",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17731]]]]},{"k":"H4717","v":[["hammers",[2,2,[[22,1,1,0,1,[[722,1,1,0,1]]],[23,1,1,1,2,[[754,1,1,1,2]]]],[18545,19205]]]]},{"k":"H4718","v":[["*",[3,3,[[6,1,1,0,1,[[214,1,1,0,1]]],[10,1,1,1,2,[[296,1,1,1,2]]],[22,1,1,2,3,[[729,1,1,2,3]]]],[6620,8903,18674]]],["hammer",[2,2,[[6,1,1,0,1,[[214,1,1,0,1]]],[10,1,1,1,2,[[296,1,1,1,2]]]],[6620,8903]]],["hole",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18674]]]]},{"k":"H4719","v":[["*",[9,8,[[5,9,8,0,8,[[196,7,6,0,6],[198,1,1,6,7],[201,1,1,7,8]]]],[6074,6080,6081,6085,6092,6093,6146,6243]]],["+",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6093]]],["Makkedah",[8,7,[[5,8,7,0,7,[[196,6,5,0,5],[198,1,1,5,6],[201,1,1,6,7]]]],[6074,6080,6081,6085,6092,6146,6243]]]]},{"k":"H4720","v":[["*",[75,72,[[1,2,2,0,2,[[64,1,1,0,1],[74,1,1,1,2]]],[2,9,8,2,10,[[101,1,1,2,3],[105,1,1,3,4],[108,1,1,4,5],[109,1,1,5,6],[110,3,2,6,8],[115,2,2,8,10]]],[3,5,5,10,15,[[119,1,1,10,11],[126,1,1,11,12],[134,2,2,12,14],[135,1,1,14,15]]],[5,1,1,15,16,[[210,1,1,15,16]]],[12,2,2,16,18,[[359,1,1,16,17],[365,1,1,17,18]]],[13,5,5,18,23,[[386,1,1,18,19],[392,1,1,19,20],[395,1,1,20,21],[396,1,1,21,22],[402,1,1,22,23]]],[15,1,1,23,24,[[422,1,1,23,24]]],[18,5,5,24,29,[[545,1,1,24,25],[550,1,1,25,26],[551,1,1,26,27],[555,1,1,27,28],[573,1,1,28,29]]],[22,4,4,29,33,[[686,1,1,29,30],[694,1,1,30,31],[738,1,1,31,32],[741,1,1,32,33]]],[23,2,2,33,35,[[761,1,1,33,34],[795,1,1,34,35]]],[24,3,3,35,38,[[797,1,1,35,36],[798,2,2,36,38]]],[25,31,29,38,67,[[806,1,1,38,39],[808,1,1,39,40],[809,1,1,40,41],[810,1,1,41,42],[812,1,1,42,43],[822,1,1,43,44],[824,2,2,44,46],[825,1,1,46,47],[826,1,1,47,48],[829,1,1,48,49],[838,2,2,49,51],[844,1,1,51,52],[845,8,8,52,60],[846,5,3,60,63],[848,1,1,63,64],[849,3,3,64,67]]],[26,3,3,67,70,[[857,1,1,67,68],[858,1,1,68,69],[860,1,1,69,70]]],[29,2,2,70,72,[[885,2,2,70,72]]]],[1937,2203,3048,3234,3311,3321,3357,3368,3526,3555,3730,4009,4258,4286,4309,6502,10983,11153,11595,11750,11812,11835,12010,12588,14935,15037,15055,15182,15471,17821,17981,18834,18884,19369,20263,20320,20339,20352,20557,20601,20610,20628,20671,20946,21045,21046,21077,21086,21175,21423,21425,21593,21600,21604,21606,21607,21608,21610,21614,21615,21633,21634,21648,21691,21710,21712,21723,21972,22005,22067,22473,22477]]],["+",[3,3,[[2,1,1,0,1,[[115,1,1,0,1]]],[18,1,1,1,2,[[545,1,1,1,2]]],[25,1,1,2,3,[[810,1,1,2,3]]]],[3555,14935,20628]]],["Sanctuary",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1937]]],["chapel",[1,1,[[29,1,1,0,1,[[885,1,1,0,1]]]],[22477]]],["part",[1,1,[[3,1,1,0,1,[[134,1,1,0,1]]]],[4286]]],["place",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21634]]],["places",[2,2,[[25,2,2,0,2,[[808,1,1,0,1],[822,1,1,1,2]]]],[20601,20946]]],["sanctuaries",[4,4,[[2,1,1,0,1,[[110,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]],[25,1,1,2,3,[[829,1,1,2,3]]],[29,1,1,3,4,[[885,1,1,3,4]]]],[3368,20263,21175,22473]]],["sanctuary",[62,60,[[1,1,1,0,1,[[74,1,1,0,1]]],[2,7,6,1,7,[[101,1,1,1,2],[105,1,1,2,3],[108,1,1,3,4],[109,1,1,4,5],[110,2,1,5,6],[115,1,1,6,7]]],[3,4,4,7,11,[[119,1,1,7,8],[126,1,1,8,9],[134,1,1,9,10],[135,1,1,10,11]]],[5,1,1,11,12,[[210,1,1,11,12]]],[12,2,2,12,14,[[359,1,1,12,13],[365,1,1,13,14]]],[13,5,5,14,19,[[386,1,1,14,15],[392,1,1,15,16],[395,1,1,16,17],[396,1,1,17,18],[402,1,1,18,19]]],[15,1,1,19,20,[[422,1,1,19,20]]],[18,4,4,20,24,[[550,1,1,20,21],[551,1,1,21,22],[555,1,1,22,23],[573,1,1,23,24]]],[22,4,4,24,28,[[686,1,1,24,25],[694,1,1,25,26],[738,1,1,26,27],[741,1,1,27,28]]],[23,1,1,28,29,[[761,1,1,28,29]]],[24,3,3,29,32,[[797,1,1,29,30],[798,2,2,30,32]]],[25,26,25,32,57,[[806,1,1,32,33],[809,1,1,33,34],[812,1,1,34,35],[824,2,2,35,37],[825,1,1,37,38],[826,1,1,38,39],[838,2,2,39,41],[844,1,1,41,42],[845,8,8,42,50],[846,4,3,50,53],[848,1,1,53,54],[849,3,3,54,57]]],[26,3,3,57,60,[[857,1,1,57,58],[858,1,1,58,59],[860,1,1,59,60]]]],[2203,3048,3234,3311,3321,3357,3526,3730,4009,4258,4309,6502,10983,11153,11595,11750,11812,11835,12010,12588,15037,15055,15182,15471,17821,17981,18834,18884,19369,20320,20339,20352,20557,20610,20671,21045,21046,21077,21086,21423,21425,21593,21600,21604,21606,21607,21608,21610,21614,21615,21633,21634,21648,21691,21710,21712,21723,21972,22005,22067]]]]},{"k":"H4721","v":[["congregations",[2,2,[[18,2,2,0,2,[[503,1,1,0,1],[545,1,1,1,2]]]],[14285,14926]]]]},{"k":"H4722","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4785,4786]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4786]]],["Makheloth",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4785]]]]},{"k":"H4723","v":[["*",[12,10,[[0,1,1,0,1,[[0,1,1,0,1]]],[1,1,1,1,2,[[56,1,1,1,2]]],[2,1,1,2,3,[[100,1,1,2,3]]],[10,2,1,3,4,[[300,2,1,3,4]]],[12,1,1,4,5,[[366,1,1,4,5]]],[13,2,1,5,6,[[367,2,1,5,6]]],[14,1,1,6,7,[[412,1,1,6,7]]],[23,3,3,7,10,[[758,1,1,7,8],[761,1,1,8,9],[794,1,1,9,10]]]],[9,1704,3033,9107,11179,11210,12254,19301,19370,20173]]],["+",[2,1,[[10,2,1,0,1,[[300,2,1,0,1]]]],[9107]]],["abiding",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11179]]],["hope",[4,4,[[14,1,1,0,1,[[412,1,1,0,1]]],[23,3,3,1,4,[[758,1,1,1,2],[761,1,1,2,3],[794,1,1,3,4]]]],[12254,19301,19370,20173]]],["plenty",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3033]]],["pools",[1,1,[[1,1,1,0,1,[[56,1,1,0,1]]]],[1704]]],["together",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[9]]],["yarn",[2,1,[[13,2,1,0,1,[[367,2,1,0,1]]]],[11210]]]]},{"k":"H4724","v":[["ditch",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18063]]]]},{"k":"H4725","v":[["*",[401,379,[[0,47,44,0,44,[[0,1,1,0,1],[11,1,1,1,2],[12,3,3,2,5],[17,3,3,5,8],[18,4,4,8,12],[19,2,2,12,14],[20,1,1,14,15],[21,4,4,15,19],[23,3,3,19,22],[25,2,1,22,23],[27,6,4,23,27],[28,3,3,27,30],[29,1,1,30,31],[30,1,1,31,32],[31,2,2,32,34],[32,1,1,34,35],[34,4,4,35,39],[35,1,1,39,40],[37,2,2,40,42],[38,1,1,42,43],[39,1,1,43,44]]],[1,10,10,44,54,[[52,2,2,44,46],[65,1,1,46,47],[66,1,1,47,48],[67,1,1,48,49],[69,1,1,49,50],[70,1,1,50,51],[72,1,1,51,52],[78,1,1,52,53],[82,1,1,53,54]]],[2,24,23,54,77,[[90,1,1,54,55],[93,4,4,55,59],[95,5,5,59,64],[96,2,2,64,66],[99,3,3,66,69],[102,1,1,69,70],[103,6,5,70,75],[105,1,1,75,76],[113,1,1,76,77]]],[3,19,17,77,94,[[125,1,1,77,78],[126,1,1,78,79],[127,2,2,79,81],[129,1,1,81,82],[130,1,1,82,83],[134,1,1,83,84],[135,1,1,84,85],[136,2,1,85,86],[137,1,1,86,87],[138,1,1,87,88],[139,2,2,88,90],[140,2,2,90,92],[148,3,2,92,94]]],[4,33,33,94,127,[[153,2,2,94,96],[161,1,1,96,97],[163,2,2,97,99],[164,9,9,99,108],[166,3,3,108,111],[167,1,1,111,112],[168,6,6,112,118],[169,2,2,118,120],[170,1,1,120,121],[173,1,1,121,122],[175,1,1,122,123],[178,2,2,123,125],[181,1,1,125,126],[183,1,1,126,127]]],[5,9,9,127,136,[[187,1,1,127,128],[189,1,1,128,129],[190,1,1,129,130],[191,2,2,130,132],[193,1,1,132,133],[194,1,1,133,134],[195,1,1,134,135],[206,1,1,135,136]]],[6,14,13,136,149,[[212,1,1,136,137],[217,1,1,137,138],[219,1,1,138,139],[221,1,1,139,140],[225,1,1,140,141],[228,2,2,141,143],[229,3,3,143,146],[230,4,3,146,149]]],[7,3,3,149,152,[[232,1,1,149,150],[234,1,1,150,151],[235,1,1,151,152]]],[8,24,23,152,175,[[237,1,1,152,153],[238,2,2,153,155],[240,2,2,155,157],[241,1,1,157,158],[242,1,1,158,159],[244,1,1,159,160],[247,1,1,160,161],[249,1,1,161,162],[255,4,4,162,166],[256,1,1,166,167],[258,2,2,167,169],[261,4,3,169,172],[262,1,1,172,173],[264,1,1,173,174],[265,1,1,174,175]]],[9,12,12,175,187,[[268,2,2,175,177],[271,1,1,177,178],[272,2,2,178,180],[273,1,1,180,181],[277,1,1,181,182],[281,2,2,182,184],[283,2,2,184,186],[285,1,1,186,187]]],[10,16,14,187,201,[[294,1,1,187,188],[295,1,1,188,189],[298,8,6,189,195],[300,1,1,195,196],[303,3,3,196,199],[310,1,1,199,200],[311,1,1,200,201]]],[11,13,13,201,214,[[317,1,1,201,202],[318,6,6,202,208],[330,1,1,208,209],[334,4,4,209,213],[335,1,1,213,214]]],[12,8,8,214,222,[[350,1,1,214,215],[351,1,1,215,216],[352,2,2,216,218],[353,1,1,218,219],[354,1,1,219,220],[358,2,2,220,222]]],[13,21,18,222,240,[[369,1,1,222,223],[371,2,2,223,225],[372,6,4,225,229],[373,2,2,229,231],[375,1,1,231,232],[386,1,1,232,233],[390,1,1,233,234],[391,2,1,234,235],[399,1,1,235,236],[400,4,4,236,240]]],[14,5,3,240,243,[[403,2,1,240,241],[410,2,1,241,242],[411,1,1,242,243]]],[15,6,6,243,249,[[413,1,1,243,244],[414,1,1,244,245],[416,3,3,245,248],[424,1,1,248,249]]],[16,3,3,249,252,[[429,2,2,249,251],[433,1,1,251,252]]],[17,21,21,252,273,[[437,1,1,252,253],[441,1,1,253,254],[442,1,1,254,255],[443,1,1,255,256],[444,1,1,256,257],[449,1,1,257,258],[451,1,1,258,259],[453,2,2,259,261],[455,1,1,261,262],[462,2,2,262,264],[463,5,5,264,269],[469,1,1,269,270],[472,1,1,270,271],[473,2,2,271,273]]],[18,8,8,273,281,[[501,1,1,273,274],[503,1,1,274,275],[514,1,1,275,276],[521,1,1,276,277],[580,2,2,277,279],[581,1,1,279,280],[609,1,1,280,281]]],[19,3,3,281,284,[[642,1,1,281,282],[652,1,1,282,283],[654,1,1,283,284]]],[20,9,8,284,292,[[659,2,2,284,286],[661,3,2,286,288],[664,1,1,288,289],[666,1,1,289,290],[668,1,1,290,291],[669,1,1,291,292]]],[22,17,16,292,308,[[683,1,1,292,293],[685,1,1,293,294],[691,1,1,294,295],[692,1,1,295,296],[696,1,1,296,297],[700,2,2,297,299],[704,1,1,299,300],[706,1,1,300,301],[711,1,1,301,302],[723,1,1,302,303],[724,1,1,303,304],[727,1,1,304,305],[732,1,1,305,306],[738,2,1,306,307],[744,1,1,307,308]]],[23,46,43,308,351,[[748,1,1,308,309],[751,7,7,309,316],[752,1,1,316,317],[757,1,1,317,318],[758,1,1,318,319],[760,3,3,319,322],[761,1,1,322,323],[763,8,7,323,330],[766,3,3,330,333],[768,2,2,333,335],[771,1,1,335,336],[772,4,3,336,339],[773,3,2,339,341],[776,1,1,341,342],[777,2,2,342,344],[784,2,2,344,346],[786,2,2,346,348],[788,1,1,348,349],[789,1,1,349,350],[795,1,1,350,351]]],[25,17,15,351,366,[[804,1,1,351,352],[807,1,1,352,353],[811,1,1,353,354],[813,2,1,354,355],[818,1,1,355,356],[822,1,1,356,357],[835,1,1,357,358],[839,1,1,358,359],[840,1,1,359,360],[842,1,1,360,361],[843,1,1,361,362],[844,2,1,362,363],[846,1,1,363,364],[847,2,2,364,366]]],[27,2,2,366,368,[[862,1,1,366,367],[866,1,1,367,368]]],[28,1,1,368,369,[[878,1,1,368,369]]],[29,2,2,369,371,[[882,1,1,369,370],[886,1,1,370,371]]],[32,1,1,371,372,[[893,1,1,371,372]]],[33,2,2,372,374,[[900,1,1,372,373],[902,1,1,373,374]]],[35,2,2,374,376,[[906,1,1,374,375],[907,1,1,375,376]]],[36,1,1,376,377,[[910,1,1,376,377]]],[37,1,1,377,378,[[924,1,1,377,378]]],[38,1,1,378,379,[[925,1,1,378,379]]]],[8,304,321,322,332,448,450,457,469,470,471,484,506,508,544,550,551,556,561,614,616,622,699,784,789,790,792,798,817,821,855,928,930,958,977,1018,1024,1025,1026,1080,1140,1141,1169,1175,1584,1587,1976,1990,2022,2075,2090,2164,2367,2494,2761,2807,2819,2824,2828,2860,2865,2874,2875,2876,2881,2885,2990,2991,2994,3071,3124,3139,3151,3152,3156,3225,3455,3982,4017,4027,4058,4099,4148,4288,4298,4316,4343,4401,4429,4443,4457,4471,4719,4735,4923,4925,5164,5213,5232,5242,5243,5245,5251,5253,5254,5258,5261,5266,5313,5314,5315,5339,5344,5348,5349,5353,5357,5358,5372,5374,5390,5466,5516,5568,5575,5686,5739,5854,5896,5928,5943,5949,6002,6021,6064,6376,6550,6701,6809,6848,6946,7003,7005,7037,7040,7052,7076,7087,7090,7134,7176,7200,7260,7278,7285,7322,7330,7333,7368,7413,7468,7554,7749,7755,7757,7767,7774,7832,7838,7910,7918,7930,7935,7971,8009,8065,8072,8152,8165,8174,8190,8275,8408,8410,8458,8461,8550,8872,8887,8991,8992,9006,9014,9015,9020,9098,9192,9200,9206,9432,9470,9658,9675,9676,9680,9682,9683,9684,10049,10161,10162,10164,10165,10179,10771,10785,10792,10794,10847,10872,10956,10959,11230,11275,11276,11302,11303,11308,11322,11336,11339,11382,11613,11688,11714,11927,11957,11958,11960,11961,12020,12218,12245,12305,12321,12371,12372,12379,12651,12765,12776,12834,12902,12995,13018,13047,13057,13199,13256,13280,13297,13335,13502,13504,13505,13510,13516,13524,13527,13709,13770,13805,13812,14244,14281,14460,14590,15565,15571,15579,16156,16810,17119,17177,17320,17322,17375,17379,17423,17468,17497,17516,17747,17805,17919,17930,18004,18075,18077,18151,18172,18300,18580,18593,18656,18725,18834,18923,19034,19122,19125,19126,19131,19133,19139,19151,19156,19273,19306,19338,19339,19345,19369,19410,19411,19413,19414,19418,19419,19420,19457,19465,19466,19529,19533,19618,19621,19622,19624,19645,19649,19768,19785,19787,19943,19953,19993,19997,20039,20045,20274,20514,20576,20644,20683,20841,20974,21325,21440,21459,21537,21565,21579,21634,21674,21675,22104,22167,22350,22416,22484,22582,22692,22729,22791,22816,22864,23078,23100]]],["+",[31,30,[[1,1,1,0,1,[[65,1,1,0,1]]],[5,2,2,1,3,[[189,1,1,1,2],[194,1,1,2,3]]],[6,2,1,3,4,[[230,2,1,3,4]]],[10,1,1,4,5,[[310,1,1,4,5]]],[13,1,1,5,6,[[372,1,1,5,6]]],[16,3,3,6,9,[[429,2,2,6,8],[433,1,1,8,9]]],[17,9,9,9,18,[[437,1,1,9,10],[441,1,1,10,11],[443,1,1,11,12],[444,1,1,12,13],[449,1,1,13,14],[453,1,1,14,15],[462,2,2,15,17],[472,1,1,17,18]]],[19,1,1,18,19,[[654,1,1,18,19]]],[20,1,1,19,20,[[666,1,1,19,20]]],[22,3,3,20,23,[[691,1,1,20,21],[704,1,1,21,22],[724,1,1,22,23]]],[23,2,2,23,25,[[748,1,1,23,24],[772,1,1,24,25]]],[25,3,3,25,28,[[804,1,1,25,26],[813,1,1,26,27],[839,1,1,27,28]]],[32,1,1,28,29,[[893,1,1,28,29]]],[35,1,1,29,30,[[907,1,1,29,30]]]],[1976,5896,6021,7087,9432,11303,12765,12776,12834,12902,12995,13047,13057,13199,13280,13502,13504,13770,17177,17468,17919,18151,18593,19034,19621,20514,20683,21440,22582,22816]]],["country",[1,1,[[0,1,1,0,1,[[28,1,1,0,1]]]],[821]]],["home",[3,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[13,2,1,1,2,[[391,2,1,1,2]]]],[7260,11714]]],["open",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13709]]],["place",[342,326,[[0,42,39,0,39,[[0,1,1,0,1],[11,1,1,1,2],[12,3,3,2,5],[17,3,3,5,8],[18,4,4,8,12],[19,2,2,12,14],[20,1,1,14,15],[21,4,4,15,19],[25,2,1,19,20],[27,6,4,20,24],[28,2,2,24,26],[29,1,1,26,27],[30,1,1,27,28],[31,2,2,28,30],[32,1,1,30,31],[34,4,4,31,35],[37,2,2,35,37],[38,1,1,37,38],[39,1,1,38,39]]],[1,8,8,39,47,[[52,2,2,39,41],[66,1,1,41,42],[67,1,1,42,43],[70,1,1,43,44],[72,1,1,44,45],[78,1,1,45,46],[82,1,1,46,47]]],[2,24,23,47,70,[[90,1,1,47,48],[93,4,4,48,52],[95,5,5,52,57],[96,2,2,57,59],[99,3,3,59,62],[102,1,1,62,63],[103,6,5,63,68],[105,1,1,68,69],[113,1,1,69,70]]],[3,19,17,70,87,[[125,1,1,70,71],[126,1,1,71,72],[127,2,2,72,74],[129,1,1,74,75],[130,1,1,75,76],[134,1,1,76,77],[135,1,1,77,78],[136,2,1,78,79],[137,1,1,79,80],[138,1,1,80,81],[139,2,2,81,83],[140,2,2,83,85],[148,3,2,85,87]]],[4,32,32,87,119,[[153,2,2,87,89],[161,1,1,89,90],[163,2,2,90,92],[164,8,8,92,100],[166,3,3,100,103],[167,1,1,103,104],[168,6,6,104,110],[169,2,2,110,112],[170,1,1,112,113],[173,1,1,113,114],[175,1,1,114,115],[178,2,2,115,117],[181,1,1,117,118],[183,1,1,118,119]]],[5,7,7,119,126,[[187,1,1,119,120],[190,1,1,120,121],[191,2,2,121,123],[193,1,1,123,124],[195,1,1,124,125],[206,1,1,125,126]]],[6,11,11,126,137,[[212,1,1,126,127],[217,1,1,127,128],[219,1,1,128,129],[221,1,1,129,130],[225,1,1,130,131],[228,2,2,131,133],[229,2,2,133,135],[230,2,2,135,137]]],[7,3,3,137,140,[[232,1,1,137,138],[234,1,1,138,139],[235,1,1,139,140]]],[8,20,19,140,159,[[238,2,2,140,142],[240,2,2,142,144],[241,1,1,144,145],[244,1,1,145,146],[247,1,1,146,147],[249,1,1,147,148],[255,4,4,148,152],[256,1,1,152,153],[258,2,2,153,155],[261,3,2,155,157],[262,1,1,157,158],[264,1,1,158,159]]],[9,12,12,159,171,[[268,2,2,159,161],[271,1,1,161,162],[272,2,2,162,164],[273,1,1,164,165],[277,1,1,165,166],[281,2,2,166,168],[283,2,2,168,170],[285,1,1,170,171]]],[10,15,13,171,184,[[294,1,1,171,172],[295,1,1,172,173],[298,8,6,173,179],[300,1,1,179,180],[303,3,3,180,183],[311,1,1,183,184]]],[11,12,12,184,196,[[317,1,1,184,185],[318,6,6,185,191],[330,1,1,191,192],[334,4,4,192,196]]],[12,8,8,196,204,[[350,1,1,196,197],[351,1,1,197,198],[352,2,2,198,200],[353,1,1,200,201],[354,1,1,201,202],[358,2,2,202,204]]],[13,17,16,204,220,[[369,1,1,204,205],[371,2,2,205,207],[372,5,4,207,211],[373,2,2,211,213],[375,1,1,213,214],[386,1,1,214,215],[390,1,1,215,216],[400,4,4,216,220]]],[14,5,3,220,223,[[403,2,1,220,221],[410,2,1,221,222],[411,1,1,222,223]]],[15,3,3,223,226,[[413,1,1,223,224],[414,1,1,224,225],[416,1,1,225,226]]],[17,11,11,226,237,[[442,1,1,226,227],[451,1,1,227,228],[453,1,1,228,229],[455,1,1,229,230],[463,5,5,230,235],[473,2,2,235,237]]],[18,7,7,237,244,[[501,1,1,237,238],[503,1,1,238,239],[514,1,1,239,240],[521,1,1,240,241],[580,1,1,241,242],[581,1,1,242,243],[609,1,1,243,244]]],[19,2,2,244,246,[[642,1,1,244,245],[652,1,1,245,246]]],[20,8,7,246,253,[[659,2,2,246,248],[661,3,2,248,250],[664,1,1,250,251],[668,1,1,251,252],[669,1,1,252,253]]],[22,14,13,253,266,[[683,1,1,253,254],[685,1,1,254,255],[692,1,1,255,256],[696,1,1,256,257],[700,2,2,257,259],[706,1,1,259,260],[711,1,1,260,261],[723,1,1,261,262],[727,1,1,262,263],[732,1,1,263,264],[738,2,1,264,265],[744,1,1,265,266]]],[23,39,38,266,304,[[751,7,7,266,273],[757,1,1,273,274],[758,1,1,274,275],[760,3,3,275,278],[761,1,1,278,279],[763,8,7,279,286],[766,3,3,286,289],[768,1,1,289,290],[771,1,1,290,291],[772,3,3,291,294],[773,2,2,294,296],[776,1,1,296,297],[777,2,2,297,299],[784,1,1,299,300],[786,2,2,300,302],[788,1,1,302,303],[795,1,1,303,304]]],[25,13,12,304,316,[[807,1,1,304,305],[811,1,1,305,306],[813,1,1,306,307],[818,1,1,307,308],[822,1,1,308,309],[840,1,1,309,310],[842,1,1,310,311],[843,1,1,311,312],[844,2,1,312,313],[846,1,1,313,314],[847,2,2,314,316]]],[27,2,2,316,318,[[862,1,1,316,317],[866,1,1,317,318]]],[28,1,1,318,319,[[878,1,1,318,319]]],[29,1,1,319,320,[[886,1,1,319,320]]],[33,2,2,320,322,[[900,1,1,320,321],[902,1,1,321,322]]],[35,1,1,322,323,[[906,1,1,322,323]]],[36,1,1,323,324,[[910,1,1,323,324]]],[37,1,1,324,325,[[924,1,1,324,325]]],[38,1,1,325,326,[[925,1,1,325,326]]]],[8,304,321,322,332,448,450,457,469,470,471,484,506,508,544,550,551,556,561,699,784,789,790,792,798,817,855,928,930,958,977,1018,1024,1025,1026,1140,1141,1169,1175,1584,1587,1990,2022,2090,2164,2367,2494,2761,2807,2819,2824,2828,2860,2865,2874,2875,2876,2881,2885,2990,2991,2994,3071,3124,3139,3151,3152,3156,3225,3455,3982,4017,4027,4058,4099,4148,4288,4298,4316,4343,4401,4429,4443,4457,4471,4719,4735,4923,4925,5164,5213,5232,5243,5245,5251,5253,5254,5258,5261,5266,5313,5314,5315,5339,5344,5348,5349,5353,5357,5358,5372,5374,5390,5466,5516,5568,5575,5686,5739,5854,5928,5943,5949,6002,6064,6376,6550,6701,6809,6848,6946,7003,7005,7040,7052,7076,7090,7134,7176,7200,7278,7285,7322,7330,7333,7413,7468,7554,7749,7755,7757,7767,7774,7832,7838,7910,7930,7935,7971,8065,8072,8152,8165,8174,8190,8275,8408,8410,8458,8461,8550,8872,8887,8991,8992,9006,9014,9015,9020,9098,9192,9200,9206,9470,9658,9675,9676,9680,9682,9683,9684,10049,10161,10162,10164,10165,10771,10785,10792,10794,10847,10872,10956,10959,11230,11275,11276,11302,11303,11308,11322,11336,11339,11382,11613,11688,11957,11958,11960,11961,12020,12218,12245,12305,12321,12379,13018,13256,13297,13335,13505,13510,13516,13524,13527,13805,13812,14244,14281,14460,14590,15565,15579,16156,16810,17119,17320,17322,17375,17379,17423,17497,17516,17747,17805,17930,18004,18075,18077,18172,18300,18580,18656,18725,18834,18923,19122,19125,19126,19131,19133,19139,19151,19273,19306,19338,19339,19345,19369,19410,19411,19413,19414,19418,19419,19420,19457,19465,19466,19529,19618,19621,19622,19624,19645,19649,19768,19785,19787,19943,19993,19997,20039,20274,20576,20644,20683,20841,20974,21459,21537,21565,21579,21634,21674,21675,22104,22167,22350,22484,22692,22729,22791,22864,23078,23100]]],["places",[19,19,[[0,1,1,0,1,[[35,1,1,0,1]]],[1,1,1,1,2,[[69,1,1,1,2]]],[4,1,1,2,3,[[164,1,1,2,3]]],[6,1,1,3,4,[[229,1,1,3,4]]],[8,2,2,4,6,[[242,1,1,4,5],[265,1,1,5,6]]],[11,1,1,6,7,[[335,1,1,6,7]]],[13,1,1,7,8,[[399,1,1,7,8]]],[15,3,3,8,11,[[416,2,2,8,10],[424,1,1,10,11]]],[18,1,1,11,12,[[580,1,1,11,12]]],[23,5,5,12,17,[[752,1,1,12,13],[768,1,1,13,14],[773,1,1,14,15],[784,1,1,15,16],[789,1,1,16,17]]],[25,1,1,17,18,[[835,1,1,17,18]]],[29,1,1,18,19,[[882,1,1,18,19]]]],[1080,2075,5242,7037,7368,8009,10179,11927,12371,12372,12651,15571,19156,19533,19649,19953,20045,21325,22416]]],["room",[3,3,[[0,3,3,0,3,[[23,3,3,0,3]]]],[614,616,622]]],["space",[1,1,[[8,1,1,0,1,[[261,1,1,0,1]]]],[7918]]]]},{"k":"H4726","v":[["*",[18,17,[[2,3,2,0,2,[[101,1,1,0,1],[109,2,1,1,2]]],[18,2,2,2,4,[[513,1,1,2,3],[545,1,1,3,4]]],[19,7,7,4,11,[[632,1,1,4,5],[637,1,1,5,6],[640,1,1,6,7],[641,1,1,7,8],[643,1,1,8,9],[645,1,1,9,10],[652,1,1,10,11]]],[23,4,4,11,15,[[746,1,1,11,12],[753,1,1,12,13],[761,1,1,13,14],[795,1,1,14,15]]],[27,1,1,15,16,[[874,1,1,15,16]]],[37,1,1,16,17,[[923,1,1,16,17]]]],[3051,3336,14447,14926,16535,16667,16761,16799,16862,16905,17139,18978,19176,19370,20248,22281,23060]]],["+",[2,2,[[2,1,1,0,1,[[101,1,1,0,1]]],[18,1,1,1,2,[[545,1,1,1,2]]]],[3051,14926]]],["fountain",[10,9,[[2,2,1,0,1,[[109,2,1,0,1]]],[18,1,1,1,2,[[513,1,1,1,2]]],[19,3,3,2,5,[[632,1,1,2,3],[640,1,1,3,4],[641,1,1,4,5]]],[23,3,3,5,8,[[746,1,1,5,6],[753,1,1,6,7],[761,1,1,7,8]]],[37,1,1,8,9,[[923,1,1,8,9]]]],[3336,14447,16535,16761,16799,18978,19176,19370,23060]]],["spring",[2,2,[[19,1,1,0,1,[[652,1,1,0,1]]],[27,1,1,1,2,[[874,1,1,1,2]]]],[17139,22281]]],["springs",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20248]]],["well",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16667]]],["wellspring",[2,2,[[19,2,2,0,2,[[643,1,1,0,1],[645,1,1,1,2]]]],[16862,16905]]]]},{"k":"H4727","v":[["taking",[1,1,[[13,1,1,0,1,[[385,1,1,0,1]]]],[11583]]]]},{"k":"H4728","v":[["ware",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12580]]]]},{"k":"H4729","v":[["burn",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2383]]]]},{"k":"H4730","v":[["censer",[2,2,[[13,1,1,0,1,[[392,1,1,0,1]]],[25,1,1,1,2,[[809,1,1,1,2]]]],[11751,20615]]]]},{"k":"H4731","v":[["*",[18,16,[[0,7,5,0,5,[[29,6,4,0,4],[31,1,1,4,5]]],[1,1,1,5,6,[[61,1,1,5,6]]],[3,1,1,6,7,[[138,1,1,6,7]]],[8,2,2,7,9,[[252,2,2,7,9]]],[23,2,2,9,11,[[745,1,1,9,10],[792,1,1,10,11]]],[25,1,1,11,12,[[840,1,1,11,12]]],[27,1,1,12,13,[[865,1,1,12,13]]],[37,3,3,13,16,[[921,3,3,13,16]]]],[867,868,869,871,938,1827,4402,7658,7661,18957,20097,21457,22145,23035,23038,23042]]],["+",[2,2,[[25,1,1,0,1,[[840,1,1,0,1]]],[37,1,1,1,2,[[921,1,1,1,2]]]],[21457,23042]]],["rod",[2,2,[[23,2,2,0,2,[[745,1,1,0,1],[792,1,1,1,2]]]],[18957,20097]]],["rods",[6,4,[[0,6,4,0,4,[[29,6,4,0,4]]]],[867,868,869,871]]],["staff",[6,6,[[0,1,1,0,1,[[31,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[3,1,1,2,3,[[138,1,1,2,3]]],[8,1,1,3,4,[[252,1,1,3,4]]],[27,1,1,4,5,[[865,1,1,4,5]]],[37,1,1,5,6,[[921,1,1,5,6]]]],[938,1827,4402,7658,22145,23038]]],["staves",[2,2,[[8,1,1,0,1,[[252,1,1,0,1]]],[37,1,1,1,2,[[921,1,1,1,2]]]],[7661,23035]]]]},{"k":"H4732","v":[["Mikloth",[4,4,[[12,4,4,0,4,[[345,1,1,0,1],[346,2,2,1,3],[364,1,1,3,4]]]],[10607,10652,10653,11113]]]]},{"k":"H4733","v":[["*",[20,20,[[3,11,11,0,11,[[151,11,11,0,11]]],[5,7,7,11,18,[[206,2,2,11,13],[207,5,5,13,18]]],[12,2,2,18,20,[[343,2,2,18,20]]]],[4851,4856,4857,4858,4859,4860,4870,4871,4872,4873,4877,6374,6375,6394,6402,6408,6413,6419,10511,10521]]],["+",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10521]]],["refuge",[19,19,[[3,11,11,0,11,[[151,11,11,0,11]]],[5,7,7,11,18,[[206,2,2,11,13],[207,5,5,13,18]]],[12,1,1,18,19,[[343,1,1,18,19]]]],[4851,4856,4857,4858,4859,4860,4870,4871,4872,4873,4877,6374,6375,6394,6402,6408,6413,6419,10511]]]]},{"k":"H4734","v":[["*",[4,4,[[10,4,4,0,4,[[296,3,3,0,3],[297,1,1,3,4]]]],[8914,8925,8928,8965]]],["carved",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8914]]],["carvings",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8928]]],["figures",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8925]]],["gravings",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8965]]]]},{"k":"H4735","v":[["*",[76,64,[[0,28,21,0,21,[[3,1,1,0,1],[12,3,2,1,3],[25,2,1,3,4],[28,1,1,4,5],[29,1,1,5,6],[30,3,2,6,8],[32,1,1,8,9],[33,2,2,9,11],[35,2,2,11,13],[45,3,3,13,16],[46,8,4,16,20],[48,1,1,20,21]]],[1,13,11,21,32,[[58,9,7,21,28],[59,1,1,28,29],[61,1,1,29,30],[66,1,1,30,31],[83,1,1,31,32]]],[3,8,6,32,38,[[136,1,1,32,33],[147,1,1,33,34],[148,6,4,34,38]]],[4,2,1,38,39,[[155,2,1,38,39]]],[5,3,3,39,42,[[187,1,1,39,40],[200,1,1,40,41],[208,1,1,41,42]]],[6,2,2,42,44,[[216,1,1,42,43],[228,1,1,43,44]]],[8,2,2,44,46,[[258,1,1,44,45],[265,1,1,45,46]]],[11,1,1,46,47,[[315,1,1,46,47]]],[12,4,4,47,51,[[342,2,2,47,49],[344,1,1,49,50],[365,1,1,50,51]]],[13,3,3,51,54,[[380,1,1,51,52],[392,1,1,52,53],[398,1,1,53,54]]],[17,3,3,54,57,[[436,2,2,54,56],[471,1,1,56,57]]],[18,1,1,57,58,[[555,1,1,57,58]]],[20,1,1,58,59,[[660,1,1,58,59]]],[22,1,1,59,60,[[708,1,1,59,60]]],[23,2,2,60,62,[[753,1,1,60,61],[793,1,1,61,62]]],[25,2,2,62,64,[[839,2,2,62,64]]]],[99,320,325,706,802,859,882,891,977,985,1003,1046,1047,1392,1418,1420,1426,1436,1437,1438,1505,1745,1746,1748,1749,1761,1762,1763,1803,1854,1986,2515,4330,4673,4719,4722,4734,4744,4994,5865,6191,6434,6659,7014,7815,7998,9593,10437,10449,10556,11144,11490,11742,11904,12872,12879,13769,15161,17340,18240,19185,20159,21437,21438]]],["+",[3,3,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,2,2,1,3,[[58,2,2,1,3]]]],[1437,1748,1749]]],["cattle",[61,52,[[0,23,18,0,18,[[3,1,1,0,1],[12,3,2,1,3],[28,1,1,3,4],[29,1,1,4,5],[30,3,2,5,7],[32,1,1,7,8],[33,2,2,8,10],[35,2,2,10,12],[45,3,3,12,15],[46,6,3,15,18]]],[1,11,10,18,28,[[58,7,6,18,24],[59,1,1,24,25],[61,1,1,25,26],[66,1,1,26,27],[83,1,1,27,28]]],[3,6,4,28,32,[[136,1,1,28,29],[148,5,3,29,32]]],[4,2,1,32,33,[[155,2,1,32,33]]],[5,3,3,33,36,[[187,1,1,33,34],[200,1,1,34,35],[208,1,1,35,36]]],[6,2,2,36,38,[[216,1,1,36,37],[228,1,1,37,38]]],[8,2,2,38,40,[[258,1,1,38,39],[265,1,1,39,40]]],[11,1,1,40,41,[[315,1,1,40,41]]],[12,3,3,41,44,[[342,2,2,41,43],[344,1,1,43,44]]],[13,2,2,44,46,[[380,1,1,44,45],[392,1,1,45,46]]],[17,1,1,46,47,[[471,1,1,46,47]]],[22,1,1,47,48,[[708,1,1,47,48]]],[23,2,2,48,50,[[753,1,1,48,49],[793,1,1,49,50]]],[25,2,2,50,52,[[839,2,2,50,52]]]],[99,320,325,802,859,882,891,977,985,1003,1046,1047,1392,1418,1420,1426,1436,1437,1745,1746,1748,1761,1762,1763,1803,1854,1986,2515,4330,4719,4722,4734,4994,5865,6191,6434,6659,7014,7815,7998,9593,10437,10449,10556,11490,11742,13769,18240,19185,20159,21437,21438]]],["flocks",[3,3,[[3,2,2,0,2,[[147,1,1,0,1],[148,1,1,1,2]]],[18,1,1,2,3,[[555,1,1,2,3]]]],[4673,4744,15161]]],["herds",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1438]]],["possession",[3,2,[[0,2,1,0,1,[[25,2,1,0,1]]],[12,1,1,1,2,[[365,1,1,1,2]]]],[706,11144]]],["possessions",[2,2,[[13,1,1,0,1,[[398,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[11904,17340]]],["purchase",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1505]]],["substance",[2,2,[[17,2,2,0,2,[[436,2,2,0,2]]]],[12872,12879]]]]},{"k":"H4736","v":[["*",[15,13,[[0,5,5,0,5,[[16,4,4,0,4],[22,1,1,4,5]]],[1,1,1,5,6,[[61,1,1,5,6]]],[2,4,3,6,9,[[114,3,2,6,8],[116,1,1,8,9]]],[23,5,4,9,13,[[776,5,4,9,13]]]],[409,410,420,424,589,1860,3485,3520,3592,19742,19743,19745,19747]]],["bought",[7,7,[[0,4,4,0,4,[[16,4,4,0,4]]],[1,1,1,4,5,[[61,1,1,4,5]]],[2,2,2,5,7,[[114,1,1,5,6],[116,1,1,6,7]]]],[409,410,420,424,1860,3520,3592]]],["possession",[1,1,[[0,1,1,0,1,[[22,1,1,0,1]]]],[589]]],["price",[2,1,[[2,2,1,0,1,[[114,2,1,0,1]]]],[3485]]],["purchase",[5,4,[[23,5,4,0,4,[[776,5,4,0,4]]]],[19742,19743,19745,19747]]]]},{"k":"H4737","v":[["Mikneiah",[2,2,[[12,2,2,0,2,[[352,2,2,0,2]]]],[10809,10812]]]]},{"k":"H4738","v":[["divination",[2,2,[[25,2,2,0,2,[[813,1,1,0,1],[814,1,1,1,2]]]],[20704,20715]]]]},{"k":"H4739","v":[["Makaz",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8853]]]]},{"k":"H4740","v":[["*",[12,10,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]],[13,1,1,2,3,[[392,1,1,2,3]]],[15,4,4,3,7,[[415,4,4,3,7]]],[25,5,3,7,10,[[842,1,1,7,8],[847,4,2,8,10]]]],[2259,2595,11741,12346,12347,12351,12352,21548,21676,21677]]],["+",[2,1,[[25,2,1,0,1,[[847,2,1,0,1]]]],[21676]]],["corners",[5,5,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]],[25,3,3,2,5,[[842,1,1,2,3],[847,2,2,3,5]]]],[2259,2595,21548,21676,21677]]],["turning",[5,5,[[13,1,1,0,1,[[392,1,1,0,1]]],[15,4,4,1,5,[[415,4,4,1,5]]]],[11741,12346,12347,12351,12352]]]]},{"k":"H4741","v":[["planes",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18546]]]]},{"k":"H4742","v":[["corners",[2,2,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]]],[2258,2594]]]]},{"k":"H4743","v":[["*",[10,7,[[2,2,1,0,1,[[115,2,1,0,1]]],[18,1,1,1,2,[[515,1,1,1,2]]],[22,1,1,2,3,[[712,1,1,2,3]]],[25,3,3,3,6,[[805,1,1,3,4],[825,1,1,4,5],[834,1,1,5,6]]],[37,3,1,6,7,[[924,3,1,6,7]]]],[3563,14495,18307,20546,21079,21290,23080]]],["away",[8,5,[[2,2,1,0,1,[[115,2,1,0,1]]],[25,3,3,1,4,[[805,1,1,1,2],[825,1,1,2,3],[834,1,1,3,4]]],[37,3,1,4,5,[[924,3,1,4,5]]]],[3563,20546,21079,21290,23080]]],["corrupt",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14495]]],["dissolved",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18307]]]]},{"k":"H4744","v":[["*",[23,22,[[1,2,1,0,1,[[61,2,1,0,1]]],[2,11,11,1,12,[[112,11,11,1,12]]],[3,7,7,12,19,[[126,1,1,12,13],[144,3,3,13,16],[145,3,3,16,19]]],[15,1,1,19,20,[[420,1,1,19,20]]],[22,2,2,20,22,[[679,1,1,20,21],[682,1,1,21,22]]]],[1832,3404,3405,3406,3409,3410,3423,3426,3429,3437,3438,3439,3990,4595,4602,4603,4609,4615,4620,12501,17667,17738]]],["assemblies",[2,2,[[22,2,2,0,2,[[679,1,1,0,1],[682,1,1,1,2]]]],[17667,17738]]],["calling",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[3990]]],["convocation",[16,15,[[1,2,1,0,1,[[61,2,1,0,1]]],[2,8,8,1,9,[[112,8,8,1,9]]],[3,6,6,9,15,[[144,3,3,9,12],[145,3,3,12,15]]]],[1832,3405,3409,3410,3423,3426,3429,3437,3438,4595,4602,4603,4609,4615,4620]]],["convocations",[3,3,[[2,3,3,0,3,[[112,3,3,0,3]]]],[3404,3406,3439]]],["reading",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12501]]]]},{"k":"H4745","v":[["*",[10,8,[[7,1,1,0,1,[[233,1,1,0,1]]],[8,2,2,1,3,[[241,1,1,1,2],[255,1,1,2,3]]],[20,7,5,3,8,[[660,2,2,3,5],[661,3,1,5,6],[667,2,2,6,8]]]],[7152,7340,7756,17347,17348,17378,17477,17478]]],["+",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17347]]],["befallen",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7756]]],["befalleth",[3,1,[[20,3,1,0,1,[[661,3,1,0,1]]]],[17378]]],["chance",[1,1,[[8,1,1,0,1,[[241,1,1,0,1]]]],[7340]]],["event",[2,2,[[20,2,2,0,2,[[667,2,2,0,2]]]],[17477,17478]]],["hap",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7152]]],["happeneth",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17348]]]]},{"k":"H4746","v":[["building",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17511]]]]},{"k":"H4747","v":[["summer",[2,2,[[6,2,2,0,2,[[213,2,2,0,2]]]],[6588,6592]]]]},{"k":"H4748","v":[["hair",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17731]]]]},{"k":"H4749","v":[["*",[10,9,[[1,6,6,0,6,[[74,3,3,0,3],[86,3,3,3,6]]],[3,3,2,6,8,[[124,2,1,6,7],[126,1,1,7,8]]],[23,1,1,8,9,[[754,1,1,8,9]]]],[2213,2226,2231,2611,2621,2626,3943,3990,19206]]],["beaten",[1,1,[[3,1,1,0,1,[[124,1,1,0,1]]]],[3943]]],["piece",[2,2,[[1,1,1,0,1,[[86,1,1,0,1]]],[3,1,1,1,2,[[126,1,1,1,2]]]],[2611,3990]]],["upright",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19206]]],["work",[6,6,[[1,5,5,0,5,[[74,3,3,0,3],[86,2,2,3,5]]],[3,1,1,5,6,[[124,1,1,5,6]]]],[2213,2226,2231,2621,2626,3943]]]]},{"k":"H4750","v":[["cucumbers",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17662]]]]},{"k":"H4751","v":[["*",[38,35,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[3,6,5,2,7,[[121,6,5,2,7]]],[6,1,1,7,8,[[228,1,1,7,8]]],[8,3,3,8,11,[[236,1,1,8,9],[250,1,1,9,10],[257,1,1,10,11]]],[9,2,2,11,13,[[268,1,1,11,12],[283,1,1,12,13]]],[16,1,1,13,14,[[429,1,1,13,14]]],[17,4,4,14,18,[[438,1,1,14,15],[442,1,1,15,16],[445,1,1,16,17],[456,1,1,17,18]]],[18,1,1,18,19,[[541,1,1,18,19]]],[19,3,3,19,22,[[632,1,1,19,20],[654,1,1,20,21],[658,1,1,21,22]]],[20,1,1,22,23,[[665,1,1,22,23]]],[22,5,4,23,27,[[683,2,1,23,24],[711,1,1,24,25],[716,2,2,25,27]]],[23,2,2,27,29,[[746,1,1,27,28],[748,1,1,28,29]]],[25,4,3,29,32,[[804,1,1,29,30],[828,3,2,30,32]]],[29,1,1,32,33,[[886,1,1,32,33]]],[34,1,1,33,34,[[903,1,1,33,34]]],[35,1,1,34,35,[[906,1,1,34,35]]]],[761,1943,3810,3811,3815,3816,3819,7018,7222,7592,7789,8075,8457,12763,12924,13019,13087,13380,14853,16521,17176,17290,17455,17759,18286,18405,18407,18984,19045,20516,21151,21152,22491,22737,22801]]],["+",[3,3,[[6,1,1,0,1,[[228,1,1,0,1]]],[8,1,1,1,2,[[257,1,1,1,2]]],[22,1,1,2,3,[[716,1,1,2,3]]]],[7018,7789,18407]]],["bitter",[20,18,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[3,6,5,2,7,[[121,6,5,2,7]]],[16,1,1,7,8,[[429,1,1,7,8]]],[17,1,1,8,9,[[438,1,1,8,9]]],[18,1,1,9,10,[[541,1,1,9,10]]],[19,1,1,10,11,[[632,1,1,10,11]]],[20,1,1,11,12,[[665,1,1,11,12]]],[22,2,1,12,13,[[683,2,1,12,13]]],[23,2,2,13,15,[[746,1,1,13,14],[748,1,1,14,15]]],[25,1,1,15,16,[[828,1,1,15,16]]],[29,1,1,16,17,[[886,1,1,16,17]]],[34,1,1,17,18,[[903,1,1,17,18]]]],[761,1943,3810,3811,3815,3816,3819,12763,12924,14853,16521,17455,17759,18984,19045,21152,22491,22737]]],["bitterly",[3,3,[[22,1,1,0,1,[[711,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]],[35,1,1,2,3,[[906,1,1,2,3]]]],[18286,21151,22801]]],["bitterness",[9,9,[[8,2,2,0,2,[[236,1,1,0,1],[250,1,1,1,2]]],[9,1,1,2,3,[[268,1,1,2,3]]],[17,3,3,3,6,[[442,1,1,3,4],[445,1,1,4,5],[456,1,1,5,6]]],[22,1,1,6,7,[[716,1,1,6,7]]],[25,2,2,7,9,[[804,1,1,7,8],[828,1,1,8,9]]]],[7222,7592,8075,13019,13087,13380,18405,20516,21152]]],["chafed",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8457]]],["heavy",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17290]]],["thing",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17176]]]]},{"k":"H4752","v":[["drop",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18435]]]]},{"k":"H4753","v":[["myrrh",[12,11,[[1,1,1,0,1,[[79,1,1,0,1]]],[16,1,1,1,2,[[427,1,1,1,2]]],[18,1,1,2,3,[[522,1,1,2,3]]],[19,1,1,3,4,[[634,1,1,3,4]]],[21,8,7,4,11,[[671,1,1,4,5],[673,1,1,5,6],[674,2,2,6,8],[675,4,3,8,11]]]],[2405,12736,14605,16592,17550,17577,17588,17596,17599,17603,17611]]]]},{"k":"H4754","v":[["herself",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13852]]]]},{"k":"H4755","v":[["Mara",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7147]]]]},{"k":"H4756","v":[["*",[4,4,[[26,4,4,0,4,[[851,1,1,0,1],[853,2,2,1,3],[854,1,1,3,4]]]],[21805,21856,21861,21897]]],["Lord",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[854,1,1,1,2]]]],[21805,21897]]],["lord",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21856,21861]]]]},{"k":"H4757","v":[["Merodachbaladan",[1,1,[[22,1,1,0,1,[[717,1,1,0,1]]]],[18413]]]]},{"k":"H4758","v":[["*",[104,83,[[0,11,10,0,10,[[1,1,1,0,1],[11,1,1,1,2],[23,1,1,2,3],[25,1,1,3,4],[28,1,1,4,5],[38,1,1,5,6],[40,5,4,6,10]]],[1,2,2,10,12,[[52,1,1,10,11],[73,1,1,11,12]]],[2,11,11,12,23,[[102,10,10,12,22],[103,1,1,22,23]]],[3,4,4,23,27,[[124,1,1,23,24],[125,2,2,24,26],[128,1,1,26,27]]],[4,2,2,27,29,[[180,2,2,27,29]]],[5,1,1,29,30,[[208,1,1,29,30]]],[6,2,1,30,31,[[223,2,1,30,31]]],[8,2,2,31,33,[[251,1,1,31,32],[252,1,1,32,33]]],[9,3,3,33,36,[[277,1,1,33,34],[280,1,1,34,35],[289,1,1,35,36]]],[16,4,4,36,40,[[426,1,1,36,37],[427,3,3,37,40]]],[17,2,2,40,42,[[439,1,1,40,41],[476,1,1,41,42]]],[20,2,2,42,44,[[664,1,1,42,43],[669,1,1,43,44]]],[21,3,2,44,46,[[672,2,1,44,45],[675,1,1,45,46]]],[22,3,3,46,49,[[689,1,1,46,47],[730,1,1,47,48],[731,1,1,48,49]]],[25,36,20,49,69,[[802,15,7,49,56],[809,4,2,56,58],[811,4,4,58,62],[812,2,1,62,63],[824,2,2,63,65],[841,2,1,65,66],[842,2,1,66,67],[843,1,1,67,68],[844,4,1,68,69]]],[26,13,12,69,81,[[850,4,3,69,72],[857,4,4,72,76],[858,1,1,76,77],[859,4,4,77,81]]],[28,2,1,81,82,[[877,2,1,81,82]]],[33,1,1,82,83,[[901,1,1,82,83]]]],[39,309,607,699,812,1155,1197,1198,1199,1216,1582,2194,3055,3056,3064,3072,3077,3082,3083,3084,3086,3095,3148,3943,3980,3981,4067,5645,5678,6436,6890,7602,7660,8261,8383,8674,12713,12726,12727,12731,12946,13897,17426,17522,17568,17613,17887,18710,18713,20469,20477,20478,20480,20490,20491,20492,20606,20608,20634,20642,20643,20655,20679,21022,21023,21480,21547,21563,21575,21741,21750,21752,21976,21977,21987,21988,22011,22016,22021,22031,22033,22315,22703]]],["+",[11,10,[[0,1,1,0,1,[[40,1,1,0,1]]],[2,1,1,1,2,[[102,1,1,1,2]]],[4,2,2,2,4,[[180,2,2,2,4]]],[16,3,3,4,7,[[427,3,3,4,7]]],[25,3,2,7,9,[[802,2,1,7,8],[809,1,1,8,9]]],[26,1,1,9,10,[[850,1,1,9,10]]]],[1216,3064,5645,5678,12726,12727,12731,20491,20606,21741]]],["apparently",[1,1,[[3,1,1,0,1,[[128,1,1,0,1]]]],[4067]]],["appearance",[30,20,[[3,2,2,0,2,[[125,2,2,0,2]]],[25,23,14,2,16,[[802,13,7,2,9],[809,2,1,9,10],[811,2,2,10,12],[841,2,1,12,13],[842,2,1,13,14],[843,1,1,14,15],[844,1,1,15,16]]],[26,3,3,16,19,[[857,1,1,16,17],[859,2,2,17,19]]],[28,2,1,19,20,[[877,2,1,19,20]]]],[3980,3981,20469,20477,20478,20480,20490,20491,20492,20606,20634,20642,21480,21547,21563,21575,21976,22021,22033,22315]]],["appearances",[2,2,[[25,2,2,0,2,[[811,2,2,0,2]]]],[20643,20655]]],["appeareth",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3095]]],["beauty",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18713]]],["countenance",[9,7,[[6,2,1,0,1,[[223,2,1,0,1]]],[8,2,2,1,3,[[251,1,1,1,2],[252,1,1,2,3]]],[9,1,1,3,4,[[280,1,1,3,4]]],[21,3,2,4,6,[[672,2,1,4,5],[675,1,1,5,6]]],[26,1,1,6,7,[[850,1,1,6,7]]]],[6890,7602,7660,8383,17568,17613,21750]]],["countenances",[2,2,[[26,2,2,0,2,[[850,2,2,0,2]]]],[21750,21752]]],["favoured",[6,5,[[0,6,5,0,5,[[28,1,1,0,1],[38,1,1,1,2],[40,4,3,2,5]]]],[812,1155,1197,1198,1199]]],["form",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12946]]],["goodly",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8674]]],["look",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8261]]],["on",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12713]]],["pattern",[1,1,[[3,1,1,0,1,[[124,1,1,0,1]]]],[3943]]],["saw",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21023]]],["see",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6436]]],["seem",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22703]]],["sight",[16,16,[[0,1,1,0,1,[[1,1,1,0,1]]],[1,2,2,1,3,[[52,1,1,1,2],[73,1,1,2,3]]],[2,9,9,3,12,[[102,8,8,3,11],[103,1,1,11,12]]],[17,1,1,12,13,[[476,1,1,12,13]]],[20,2,2,13,15,[[664,1,1,13,14],[669,1,1,14,15]]],[22,1,1,15,16,[[689,1,1,15,16]]]],[39,1582,2194,3055,3056,3072,3077,3082,3083,3084,3086,3148,13897,17426,17522,17887]]],["to",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21022]]],["upon",[3,3,[[0,3,3,0,3,[[11,1,1,0,1],[23,1,1,1,2],[25,1,1,2,3]]]],[309,607,699]]],["visage",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18710]]],["vision",[12,9,[[25,6,3,0,3,[[809,1,1,0,1],[812,2,1,1,2],[844,3,1,2,3]]],[26,6,6,3,9,[[857,3,3,3,6],[858,1,1,6,7],[859,2,2,7,9]]]],[20608,20679,21575,21977,21987,21988,22011,22016,22031]]]]},{"k":"H4759","v":[["*",[11,10,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[87,1,1,1,2]]],[3,1,1,2,3,[[128,1,1,2,3]]],[8,1,1,3,4,[[238,1,1,3,4]]],[25,4,4,4,8,[[802,1,1,4,5],[809,1,1,5,6],[841,1,1,6,7],[844,1,1,7,8]]],[26,3,2,8,10,[[859,3,2,8,10]]]],[1388,2641,4065,7291,20465,20607,21479,21575,22022,22023]]],["lookingglasses",[1,1,[[1,1,1,0,1,[[87,1,1,0,1]]]],[2641]]],["vision",[5,4,[[3,1,1,0,1,[[128,1,1,0,1]]],[8,1,1,1,2,[[238,1,1,1,2]]],[26,3,2,2,4,[[859,3,2,2,4]]]],[4065,7291,22022,22023]]],["visions",[5,5,[[0,1,1,0,1,[[45,1,1,0,1]]],[25,4,4,1,5,[[802,1,1,1,2],[809,1,1,2,3],[841,1,1,3,4],[844,1,1,4,5]]]],[1388,20465,20607,21479,21575]]]]},{"k":"H4760","v":[["crop",[1,1,[[2,1,1,0,1,[[90,1,1,0,1]]]],[2761]]]]},{"k":"H4761","v":[["principalities",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19284]]]]},{"k":"H4762","v":[["*",[8,8,[[5,1,1,0,1,[[201,1,1,0,1]]],[12,2,2,1,3,[[339,1,1,1,2],[341,1,1,2,3]]],[13,4,4,3,7,[[377,1,1,3,4],[380,2,2,4,6],[386,1,1,6,7]]],[32,1,1,7,8,[[893,1,1,7,8]]]],[6246,10348,10406,11422,11484,11485,11624,22594]]],["+",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11624]]],["Mareshah",[7,7,[[5,1,1,0,1,[[201,1,1,0,1]]],[12,2,2,1,3,[[339,1,1,1,2],[341,1,1,2,3]]],[13,3,3,3,6,[[377,1,1,3,4],[380,2,2,4,6]]],[32,1,1,6,7,[[893,1,1,6,7]]]],[6246,10348,10406,11422,11484,11485,22594]]]]},{"k":"H4763","v":[["*",[9,9,[[0,2,2,0,2,[[27,2,2,0,2]]],[8,6,6,2,8,[[254,2,2,2,4],[261,4,4,4,8]]],[10,1,1,8,9,[[309,1,1,8,9]]]],[784,791,7719,7722,7912,7916,7917,7921,9393]]],["bolster",[6,6,[[8,6,6,0,6,[[254,2,2,0,2],[261,4,4,2,6]]]],[7719,7722,7912,7916,7917,7921]]],["head",[1,1,[[10,1,1,0,1,[[309,1,1,0,1]]]],[9393]]],["pillows",[2,2,[[0,2,2,0,2,[[27,2,2,0,2]]]],[784,791]]]]},{"k":"H4764","v":[["Merab",[3,3,[[8,3,3,0,3,[[249,1,1,0,1],[253,2,2,1,3]]]],[7557,7693,7695]]]]},{"k":"H4765","v":[["tapestry",[2,2,[[19,2,2,0,2,[[634,1,1,0,1],[658,1,1,1,2]]]],[16591,17306]]]]},{"k":"H4766","v":[["*",[2,2,[[22,2,2,0,2,[[687,1,1,0,1],[711,1,1,1,2]]]],[17836,18302]]],["great",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18302]]],["increase",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17836]]]]},{"k":"H4767","v":[["much",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21039]]]]},{"k":"H4768","v":[["*",[5,5,[[2,1,1,0,1,[[114,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[12,1,1,2,3,[[349,1,1,2,3]]],[13,2,2,3,5,[[375,1,1,3,4],[396,1,1,4,5]]]],[3506,7273,10749,11370,11845]]],["greatness",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11370]]],["increase",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]]],[3506,7273]]],["multitude",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11845]]],["part",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10749]]]]},{"k":"H4769","v":[["*",[2,2,[[25,1,1,0,1,[[826,1,1,0,1]]],[35,1,1,1,2,[[907,1,1,1,2]]]],[21088,22820]]],["couchingplace",[1,1,[[25,1,1,0,1,[[826,1,1,0,1]]]],[21088]]],["down",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22820]]]]},{"k":"H4770","v":[["*",[4,4,[[8,1,1,0,1,[[263,1,1,0,1]]],[23,1,1,1,2,[[790,1,1,1,2]]],[29,1,1,2,3,[[884,1,1,2,3]]],[38,1,1,3,4,[[928,1,1,3,4]]]],[7966,20066,22454,23140]]],["fat",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7966]]],["fatted",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20066]]],["stall",[2,2,[[29,1,1,0,1,[[884,1,1,0,1]]],[38,1,1,1,2,[[928,1,1,1,2]]]],[22454,23140]]]]},{"k":"H4771","v":[["rest",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19105]]]]},{"k":"H4772","v":[["feet",[5,5,[[7,4,4,0,4,[[234,4,4,0,4]]],[26,1,1,4,5,[[859,1,1,4,5]]]],[7176,7179,7180,7186,22021]]]]},{"k":"H4773","v":[["sling",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17149]]]]},{"k":"H4774","v":[["refreshing",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18176]]]]},{"k":"H4775","v":[["*",[25,23,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[5,5,4,2,6,[[208,5,4,2,6]]],[11,4,4,6,10,[[330,2,2,6,8],[336,2,2,8,10]]],[13,2,2,10,12,[[379,1,1,10,11],[402,1,1,11,12]]],[15,3,3,12,15,[[414,1,1,12,13],[418,1,1,13,14],[421,1,1,14,15]]],[17,1,1,15,16,[[459,1,1,15,16]]],[22,1,1,16,17,[[714,1,1,16,17]]],[23,1,1,17,18,[[796,1,1,17,18]]],[25,4,3,18,21,[[803,2,1,18,19],[818,1,1,19,20],[821,1,1,20,21]]],[26,2,2,21,23,[[858,2,2,21,23]]]],[340,4117,6442,6444,6445,6455,10031,10044,10203,10222,11459,12006,12326,12407,12537,13449,18335,20279,20495,20840,20933,21993,21997]]],["rebel",[9,8,[[3,1,1,0,1,[[130,1,1,0,1]]],[5,5,4,1,5,[[208,5,4,1,5]]],[15,2,2,5,7,[[414,1,1,5,6],[418,1,1,6,7]]],[17,1,1,7,8,[[459,1,1,7,8]]]],[4117,6442,6444,6445,6455,12326,12407,13449]]],["rebelled",[12,12,[[0,1,1,0,1,[[13,1,1,0,1]]],[11,3,3,1,4,[[330,1,1,1,2],[336,2,2,2,4]]],[13,2,2,4,6,[[379,1,1,4,5],[402,1,1,5,6]]],[15,1,1,6,7,[[421,1,1,6,7]]],[23,1,1,7,8,[[796,1,1,7,8]]],[25,2,2,8,10,[[803,1,1,8,9],[818,1,1,9,10]]],[26,2,2,10,12,[[858,2,2,10,12]]]],[340,10031,10203,10222,11459,12006,12537,20279,20495,20840,21993,21997]]],["rebellest",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]]],[10044,18335]]],["rebellious",[1,1,[[25,1,1,0,1,[[803,1,1,0,1]]]],[20495]]],["rebels",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20933]]]]},{"k":"H4776","v":[["rebellion",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12129]]]]},{"k":"H4777","v":[["rebellion",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6448]]]]},{"k":"H4778","v":[["Mered",[2,2,[[12,2,2,0,2,[[341,2,2,0,2]]]],[10402,10403]]]]},{"k":"H4779","v":[["rebellious",[2,2,[[14,2,2,0,2,[[406,2,2,0,2]]]],[12122,12125]]]]},{"k":"H4780","v":[["rebellious",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7760]]]]},{"k":"H4781","v":[["Merodach",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20168]]]]},{"k":"H4782","v":[["*",[60,52,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]],[16,58,50,2,52,[[427,11,9,2,11],[428,7,5,11,16],[429,12,11,16,27],[430,4,3,27,30],[431,7,7,30,37],[432,2,2,37,39],[433,6,5,39,44],[434,7,6,44,50],[435,2,2,50,52]]]],[12029,12427,12729,12731,12734,12735,12739,12743,12744,12745,12746,12749,12750,12751,12752,12753,12763,12766,12767,12768,12769,12771,12772,12774,12775,12777,12779,12788,12792,12793,12795,12796,12797,12803,12804,12805,12806,12816,12817,12818,12819,12824,12826,12832,12837,12838,12854,12857,12863,12865,12868,12869]]],["+",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12774]]],["Mordecai",[57,50,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]],[16,55,48,2,50,[[427,10,9,2,11],[428,6,4,11,15],[429,11,10,15,25],[430,4,3,25,28],[431,7,7,28,35],[432,2,2,35,37],[433,6,5,37,42],[434,7,6,42,48],[435,2,2,48,50]]]],[12029,12427,12729,12731,12734,12735,12739,12743,12744,12745,12746,12749,12750,12752,12753,12763,12766,12767,12768,12769,12771,12772,12775,12777,12779,12788,12792,12793,12795,12796,12797,12803,12804,12805,12806,12816,12817,12818,12819,12824,12826,12832,12837,12838,12854,12857,12863,12865,12868,12869]]],["Mordecai's",[2,2,[[16,2,2,0,2,[[427,1,1,0,1],[428,1,1,1,2]]]],[12746,12751]]]]},{"k":"H4783","v":[["persecuted",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17934]]]]},{"k":"H4784","v":[["*",[45,44,[[3,3,3,0,3,[[136,2,2,0,2],[143,1,1,2,3]]],[4,8,8,3,11,[[153,2,2,3,5],[161,3,3,5,8],[173,2,2,8,10],[183,1,1,10,11]]],[5,1,1,11,12,[[187,1,1,11,12]]],[8,2,2,12,14,[[247,2,2,12,14]]],[10,2,2,14,16,[[303,2,2,14,16]]],[11,1,1,16,17,[[326,1,1,16,17]]],[15,1,1,17,18,[[421,1,1,17,18]]],[17,1,1,18,19,[[452,1,1,18,19]]],[18,10,10,19,29,[[482,1,1,19,20],[555,4,4,20,24],[582,1,1,24,25],[583,3,3,25,28],[584,1,1,28,29]]],[22,4,4,29,33,[[679,1,1,29,30],[681,1,1,30,31],[728,1,1,31,32],[741,1,1,32,33]]],[23,2,2,33,35,[[748,1,1,33,34],[749,1,1,34,35]]],[24,4,3,35,38,[[797,3,2,35,37],[799,1,1,37,38]]],[25,4,4,38,42,[[806,1,1,38,39],[821,3,3,39,42]]],[27,1,1,42,43,[[874,1,1,42,43]]],[35,1,1,43,44,[[908,1,1,43,44]]]],[4321,4335,4568,4918,4935,5164,5180,5181,5465,5467,5755,5869,7474,7475,9205,9210,9922,12537,13262,13983,15121,15130,15153,15169,15634,15658,15684,15694,15710,17674,17715,18667,18876,19044,19081,20328,20330,20396,20552,20903,20908,20916,22282,22821]]],["+",[12,11,[[3,1,1,0,1,[[136,1,1,0,1]]],[4,3,3,1,4,[[153,2,2,1,3],[161,1,1,3,4]]],[5,1,1,4,5,[[187,1,1,4,5]]],[8,2,2,5,7,[[247,2,2,5,7]]],[18,2,2,7,9,[[555,1,1,7,8],[583,1,1,8,9]]],[24,2,1,9,10,[[797,2,1,9,10]]],[25,1,1,10,11,[[806,1,1,10,11]]]],[4335,4918,4935,5180,5869,7474,7475,15169,15684,20330,20552]]],["against",[2,2,[[3,1,1,0,1,[[143,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]]],[4568,15710]]],["bitter",[1,1,[[11,1,1,0,1,[[326,1,1,0,1]]]],[9922]]],["disobedient",[2,2,[[10,1,1,0,1,[[303,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]]],[9210,12537]]],["disobeyed",[1,1,[[10,1,1,0,1,[[303,1,1,0,1]]]],[9205]]],["filthy",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22821]]],["provocation",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13262]]],["provoke",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]]],[15153,17715]]],["provoked",[2,2,[[18,2,2,0,2,[[583,2,2,0,2]]]],[15658,15694]]],["provoking",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15130]]],["rebel",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17674]]],["rebelled",[9,9,[[18,2,2,0,2,[[482,1,1,0,1],[582,1,1,1,2]]],[22,1,1,2,3,[[741,1,1,2,3]]],[24,2,2,3,5,[[797,1,1,3,4],[799,1,1,4,5]]],[25,3,3,5,8,[[821,3,3,5,8]]],[27,1,1,8,9,[[874,1,1,8,9]]]],[13983,15634,18876,20328,20396,20903,20908,20916,22282]]],["rebellious",[9,9,[[4,5,5,0,5,[[161,2,2,0,2],[173,2,2,2,4],[183,1,1,4,5]]],[18,1,1,5,6,[[555,1,1,5,6]]],[22,1,1,6,7,[[728,1,1,6,7]]],[23,2,2,7,9,[[748,1,1,7,8],[749,1,1,8,9]]]],[5164,5181,5465,5467,5755,15121,18667,19044,19081]]],["rebels",[1,1,[[3,1,1,0,1,[[136,1,1,0,1]]]],[4321]]]]},{"k":"H4785","v":[["*",[5,3,[[1,3,1,0,1,[[64,3,1,0,1]]],[3,2,2,1,3,[[149,2,2,1,3]]]],[1943,4768,4769]]],["+",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]]],[1943,4769]]],["Marah",[3,2,[[1,2,1,0,1,[[64,2,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]]],[1943,4768]]]]},{"k":"H4786","v":[["grief",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[727]]]]},{"k":"H4787","v":[["bitterness",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16782]]]]},{"k":"H4788","v":[["*",[3,3,[[22,1,1,0,1,[[736,1,1,0,1]]],[24,2,2,1,3,[[797,1,1,1,2],[799,1,1,2,3]]]],[18793,20317,20373]]],["miseries",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20317]]],["misery",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20373]]],["out",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18793]]]]},{"k":"H4789","v":[["Meroz",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6646]]]]},{"k":"H4790","v":[["broken",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3365]]]]},{"k":"H4791","v":[["*",[54,52,[[6,1,1,0,1,[[215,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[11,2,2,2,4,[[331,2,2,2,4]]],[17,5,5,4,9,[[440,1,1,4,5],[451,1,1,5,6],[460,1,1,6,7],[466,1,1,7,8],[474,1,1,8,9]]],[18,13,13,9,22,[[484,1,1,9,10],[487,1,1,10,11],[495,1,1,11,12],[533,1,1,12,13],[545,1,1,13,14],[548,1,1,14,15],[550,1,1,15,16],[552,1,1,16,17],[569,1,1,17,18],[570,1,1,18,19],[579,1,1,19,20],[621,1,1,20,21],[625,1,1,21,22]]],[19,3,3,22,25,[[635,1,1,22,23],[636,2,2,23,25]]],[20,1,1,25,26,[[668,1,1,25,26]]],[22,16,14,26,40,[[700,1,1,26,27],[702,4,3,27,30],[704,1,1,30,31],[710,1,1,31,32],[711,2,2,32,34],[715,3,2,34,36],[716,1,1,36,37],[718,1,1,37,38],[735,1,1,38,39],[736,1,1,39,40]]],[23,5,5,40,45,[[761,1,1,40,41],[769,1,1,41,42],[775,1,1,42,43],[793,1,1,43,44],[795,1,1,44,45]]],[24,1,1,45,46,[[797,1,1,45,46]]],[25,3,3,46,49,[[818,1,1,46,47],[821,1,1,47,48],[835,1,1,48,49]]],[30,1,1,49,50,[[888,1,1,49,50]]],[32,1,1,50,51,[[898,1,1,50,51]]],[34,1,1,51,52,[[904,1,1,51,52]]]],[6641,8619,10083,10084,12962,13257,13463,13590,13852,14002,14046,14134,14757,14918,14995,15028,15076,15419,15430,15540,16312,16372,16604,16641,16652,17499,18068,18099,18113,18116,18135,18274,18284,18295,18375,18376,18404,18446,18780,18790,19369,19564,19703,20143,20265,20323,20848,20935,21327,22513,22654,22757]]],["+",[11,11,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]],[18,4,4,2,6,[[495,1,1,2,3],[550,1,1,3,4],[579,1,1,4,5],[621,1,1,5,6]]],[19,1,1,6,7,[[636,1,1,6,7]]],[22,2,2,7,9,[[702,1,1,7,8],[710,1,1,8,9]]],[23,1,1,9,10,[[769,1,1,9,10]]],[24,1,1,10,11,[[797,1,1,10,11]]]],[8619,13590,14134,15028,15540,16312,16641,18113,18274,19564,20323]]],["High",[1,1,[[18,1,1,0,1,[[533,1,1,0,1]]]],[14757]]],["above",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14046]]],["dignity",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17499]]],["haughty",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18099]]],["height",[8,7,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,2,1,1,2,[[715,2,1,1,2]]],[23,3,3,2,5,[[775,1,1,2,3],[793,1,1,3,4],[795,1,1,4,5]]],[25,2,2,5,7,[[818,1,1,5,6],[821,1,1,6,7]]]],[10084,18376,19703,20143,20265,20848,20935]]],["heights",[1,1,[[18,1,1,0,1,[[625,1,1,0,1]]]],[16372]]],["high",[24,24,[[11,1,1,0,1,[[331,1,1,0,1]]],[17,3,3,1,4,[[440,1,1,1,2],[451,1,1,2,3],[474,1,1,3,4]]],[18,6,6,4,10,[[484,1,1,4,5],[545,1,1,5,6],[548,1,1,6,7],[552,1,1,7,8],[569,1,1,8,9],[570,1,1,9,10]]],[22,9,9,10,19,[[700,1,1,10,11],[702,1,1,11,12],[704,1,1,12,13],[711,2,2,13,15],[715,1,1,15,16],[718,1,1,16,17],[735,1,1,17,18],[736,1,1,18,19]]],[23,1,1,19,20,[[761,1,1,19,20]]],[25,1,1,20,21,[[835,1,1,20,21]]],[30,1,1,21,22,[[888,1,1,21,22]]],[32,1,1,22,23,[[898,1,1,22,23]]],[34,1,1,23,24,[[904,1,1,23,24]]]],[10083,12962,13257,13852,14002,14918,14995,15076,15419,15430,18068,18116,18135,18284,18295,18375,18446,18780,18790,19369,21327,22513,22654,22757]]],["ones",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18116]]],["places",[4,4,[[6,1,1,0,1,[[215,1,1,0,1]]],[17,1,1,1,2,[[460,1,1,1,2]]],[19,2,2,2,4,[[635,1,1,2,3],[636,1,1,3,4]]]],[6641,13463,16604,16652]]],["upward",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18404]]]]},{"k":"H4792","v":[["Merom",[2,2,[[5,2,2,0,2,[[197,2,2,0,2]]]],[6112,6114]]]]},{"k":"H4793","v":[["race",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17486]]]]},{"k":"H4794","v":[["*",[4,3,[[9,2,1,0,1,[[284,2,1,0,1]]],[23,2,2,1,3,[[752,1,1,1,2],[767,1,1,2,3]]]],[8505,19159,19494]]],["course",[2,2,[[23,2,2,0,2,[[752,1,1,0,1],[767,1,1,1,2]]]],[19159,19494]]],["running",[2,1,[[9,2,1,0,1,[[284,2,1,0,1]]]],[8505]]]]},{"k":"H4795","v":[["purifications",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12736]]]]},{"k":"H4796","v":[["Maroth",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22591]]]]},{"k":"H4797","v":[["banquet",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22457]]]]},{"k":"H4798","v":[["mourning",[1,1,[[23,1,1,0,1,[[760,1,1,0,1]]]],[19341]]]]},{"k":"H4799","v":[["plaister",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18411]]]]},{"k":"H4800","v":[["*",[6,6,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,3,3,1,4,[[495,1,1,1,2],[508,1,1,2,3],[595,1,1,3,4]]],[27,1,1,4,5,[[865,1,1,4,5]]],[34,1,1,5,6,[[903,1,1,5,6]]]],[8622,14137,14339,15874,22149,22737]]],["+",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8622]]],["breadth",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22737]]],["place",[3,3,[[18,2,2,0,2,[[495,1,1,0,1],[595,1,1,1,2]]],[27,1,1,2,3,[[865,1,1,2,3]]]],[14137,15874,22149]]],["room",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14339]]]]},{"k":"H4801","v":[["*",[18,18,[[9,1,1,0,1,[[281,1,1,0,1]]],[18,1,1,1,2,[[615,1,1,1,2]]],[19,2,2,2,4,[[652,1,1,2,3],[658,1,1,3,4]]],[22,7,7,4,11,[[686,1,1,4,5],[688,1,1,5,6],[691,1,1,6,7],[695,1,1,7,8],[708,1,1,8,9],[711,1,1,9,10],[724,1,1,10,11]]],[23,5,5,11,16,[[748,1,1,11,12],[749,1,1,12,13],[750,1,1,13,14],[752,1,1,14,15],[775,1,1,15,16]]],[25,1,1,16,17,[[824,1,1,16,17]]],[37,1,1,17,18,[[920,1,1,17,18]]]],[8406,16237,17138,17298,17816,17853,17911,17996,18244,18296,18597,19043,19073,19109,19172,19701,21047,23025]]],["+",[10,10,[[18,1,1,0,1,[[615,1,1,0,1]]],[19,2,2,1,3,[[652,1,1,1,2],[658,1,1,2,3]]],[22,4,4,3,7,[[688,1,1,3,4],[691,1,1,4,5],[695,1,1,5,6],[708,1,1,6,7]]],[23,2,2,7,9,[[749,1,1,7,8],[775,1,1,8,9]]],[25,1,1,9,10,[[824,1,1,9,10]]]],[16237,17138,17298,17853,17911,17996,18244,19073,19701,21047]]],["countries",[1,1,[[37,1,1,0,1,[[920,1,1,0,1]]]],[23025]]],["far",[5,5,[[22,2,2,0,2,[[686,1,1,0,1],[724,1,1,1,2]]],[23,3,3,2,5,[[748,1,1,2,3],[750,1,1,3,4],[752,1,1,4,5]]]],[17816,18597,19043,19109,19172]]],["off",[2,2,[[9,1,1,0,1,[[281,1,1,0,1]]],[22,1,1,1,2,[[711,1,1,1,2]]]],[8406,18296]]]]},{"k":"H4802","v":[["fryingpan",[2,2,[[2,2,2,0,2,[[91,1,1,0,1],[96,1,1,1,2]]]],[2769,2888]]]]},{"k":"H4803","v":[["*",[12,11,[[2,2,2,0,2,[[102,2,2,0,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[14,1,1,3,4,[[411,1,1,3,4]]],[15,1,1,4,5,[[425,1,1,4,5]]],[22,1,1,5,6,[[728,1,1,5,6]]],[25,6,5,6,11,[[822,5,4,6,10],[830,1,1,10,11]]]],[3092,3093,8979,12240,12696,18668,20953,20954,20955,20972,21201]]],["bright",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8979]]],["furbished",[5,4,[[25,5,4,0,4,[[822,5,4,0,4]]]],[20953,20954,20955,20972]]],["hair",[2,2,[[15,1,1,0,1,[[425,1,1,0,1]]],[22,1,1,1,2,[[728,1,1,1,2]]]],[12696,18668]]],["off",[3,3,[[2,2,2,0,2,[[102,2,2,0,2]]],[14,1,1,2,3,[[411,1,1,2,3]]]],[3092,3093,12240]]],["peeled",[1,1,[[25,1,1,0,1,[[830,1,1,0,1]]]],[21201]]]]},{"k":"H4804","v":[["plucked",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21937]]]]},{"k":"H4805","v":[["*",[23,21,[[3,1,1,0,1,[[133,1,1,0,1]]],[4,1,1,1,2,[[183,1,1,1,2]]],[8,1,1,2,3,[[250,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[17,1,1,4,5,[[458,1,1,4,5]]],[19,1,1,5,6,[[644,1,1,5,6]]],[22,1,1,6,7,[[708,1,1,6,7]]],[25,16,14,7,21,[[803,5,4,7,11],[804,3,3,11,14],[813,5,4,14,18],[818,1,1,18,19],[825,1,1,19,20],[845,1,1,20,21]]]],[4254,5755,7583,12528,13421,16884,18226,20497,20498,20499,20500,20511,20528,20529,20682,20683,20689,20705,20837,21059,21605]]],["+",[1,1,[[3,1,1,0,1,[[133,1,1,0,1]]]],[4254]]],["bitter",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13421]]],["rebellion",[4,4,[[4,1,1,0,1,[[183,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[19,1,1,3,4,[[644,1,1,3,4]]]],[5755,7583,12528,16884]]],["rebellious",[17,15,[[22,1,1,0,1,[[708,1,1,0,1]]],[25,16,14,1,15,[[803,5,4,1,5],[804,3,3,5,8],[813,5,4,8,12],[818,1,1,12,13],[825,1,1,13,14],[845,1,1,14,15]]]],[18226,20497,20498,20499,20500,20511,20528,20529,20682,20683,20689,20705,20837,21059,21605]]]]},{"k":"H4806","v":[["*",[8,8,[[9,1,1,0,1,[[272,1,1,0,1]]],[10,3,3,1,4,[[291,3,3,1,4]]],[22,2,2,4,6,[[679,1,1,4,5],[689,1,1,5,6]]],[25,1,1,6,7,[[840,1,1,6,7]]],[29,1,1,7,8,[[883,1,1,7,8]]]],[8170,8726,8736,8742,17665,17890,21466,22445]]],["beasts",[2,2,[[22,1,1,0,1,[[679,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[17665,22445]]],["cattle",[3,3,[[10,3,3,0,3,[[291,3,3,0,3]]]],[8726,8736,8742]]],["fatling",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17890]]],["fatlings",[2,2,[[9,1,1,0,1,[[272,1,1,0,1]]],[25,1,1,1,2,[[840,1,1,1,2]]]],[8170,21466]]]]},{"k":"H4807","v":[["Meribbaal",[3,2,[[12,3,2,0,2,[[345,2,1,0,1],[346,1,1,1,2]]]],[10609,10655]]]]},{"k":"H4808","v":[["*",[5,5,[[0,1,1,0,1,[[12,1,1,0,1]]],[3,1,1,1,2,[[143,1,1,1,2]]],[18,2,2,2,4,[[572,1,1,2,3],[583,1,1,3,4]]],[25,1,1,4,5,[[849,1,1,4,5]]]],[326,4568,15462,15683,21730]]],["provocation",[1,1,[[18,1,1,0,1,[[572,1,1,0,1]]]],[15462]]],["strife",[4,4,[[0,1,1,0,1,[[12,1,1,0,1]]],[3,1,1,1,2,[[143,1,1,1,2]]],[18,1,1,2,3,[[583,1,1,2,3]]],[25,1,1,3,4,[[849,1,1,3,4]]]],[326,4568,15683,21730]]]]},{"k":"H4809","v":[["*",[8,8,[[1,1,1,0,1,[[66,1,1,0,1]]],[3,3,3,1,4,[[136,2,2,1,3],[143,1,1,3,4]]],[4,2,2,4,6,[[184,1,1,4,5],[185,1,1,5,6]]],[18,1,1,6,7,[[558,1,1,6,7]]],[25,1,1,7,8,[[848,1,1,7,8]]]],[1990,4324,4335,4568,5809,5818,15224,21698]]],["+",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5809]]],["Meribah",[6,6,[[1,1,1,0,1,[[66,1,1,0,1]]],[3,3,3,1,4,[[136,2,2,1,3],[143,1,1,3,4]]],[4,1,1,4,5,[[185,1,1,4,5]]],[18,1,1,5,6,[[558,1,1,5,6]]]],[1990,4324,4335,4568,5818,15224]]],["strife",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21698]]]]},{"k":"H4810","v":[["Meribbaal",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10655]]]]},{"k":"H4811","v":[["Meraiah",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12636]]]]},{"k":"H4812","v":[["Meraioth",[7,7,[[12,4,4,0,4,[[343,3,3,0,3],[346,1,1,3,4]]],[14,1,1,4,5,[[409,1,1,4,5]]],[15,2,2,5,7,[[423,1,1,5,6],[424,1,1,6,7]]]],[10460,10461,10506,10626,12176,12599,12639]]]]},{"k":"H4813","v":[["Miriam",[15,13,[[1,2,2,0,2,[[64,2,2,0,2]]],[3,9,7,2,9,[[128,7,5,2,7],[136,1,1,7,8],[142,1,1,8,9]]],[4,1,1,9,10,[[176,1,1,9,10]]],[12,2,2,10,12,[[341,1,1,10,11],[343,1,1,11,12]]],[32,1,1,12,13,[[898,1,1,12,13]]]],[1940,1941,4060,4063,4064,4069,4074,4312,4548,5534,10402,10457,22652]]]]},{"k":"H4814","v":[["bitterness",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20950]]]]},{"k":"H4815","v":[["bitter",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5782]]]]},{"k":"H4816","v":[["faintness",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3560]]]]},{"k":"H4817","v":[["*",[3,3,[[2,1,1,0,1,[[104,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]],[21,1,1,2,3,[[673,1,1,2,3]]]],[3177,8870,17581]]],["+",[1,1,[[2,1,1,0,1,[[104,1,1,0,1]]]],[3177]]],["chariots",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8870]]],["covering",[1,1,[[21,1,1,0,1,[[673,1,1,0,1]]]],[17581]]]]},{"k":"H4818","v":[["*",[44,41,[[0,2,2,0,2,[[40,1,1,0,1],[45,1,1,1,2]]],[1,2,2,2,4,[[63,1,1,2,3],[64,1,1,3,4]]],[5,2,2,4,6,[[197,2,2,4,6]]],[6,2,2,6,8,[[214,1,1,6,7],[215,1,1,7,8]]],[8,2,1,8,9,[[243,2,1,8,9]]],[9,1,1,9,10,[[281,1,1,9,10]]],[10,5,5,10,15,[[297,1,1,10,11],[300,1,1,11,12],[302,1,1,12,13],[310,1,1,13,14],[312,1,1,14,15]]],[11,5,5,15,20,[[317,2,2,15,17],[321,1,1,17,18],[322,1,1,18,19],[335,1,1,19,20]]],[12,1,1,20,21,[[365,1,1,20,21]]],[13,6,6,21,27,[[367,1,1,21,22],[375,1,1,22,23],[376,1,1,23,24],[380,1,1,24,25],[384,1,1,25,26],[401,1,1,26,27]]],[21,1,1,27,28,[[676,1,1,27,28]]],[22,3,3,28,31,[[680,1,1,28,29],[700,1,1,29,30],[744,1,1,30,31]]],[23,1,1,31,32,[[748,1,1,31,32]]],[28,1,1,32,33,[[877,1,1,32,33]]],[32,2,2,33,35,[[893,1,1,33,34],[897,1,1,34,35]]],[33,1,1,35,36,[[902,1,1,35,36]]],[34,1,1,36,37,[[905,1,1,36,37]]],[36,1,1,37,38,[[910,1,1,37,38]]],[37,5,3,38,41,[[916,5,3,38,41]]]],[1238,1415,1914,1924,6113,6116,6614,6651,7380,8390,8967,9108,9169,9441,9515,9668,9673,9783,9808,10176,11161,11211,11389,11413,11484,11576,11990,17626,17692,18070,18937,19040,22316,22592,22643,22714,22776,22877,22948,22949,22950]]],["+",[1,1,[[37,1,1,0,1,[[916,1,1,0,1]]]],[22948]]],["chariot",[23,21,[[0,2,2,0,2,[[40,1,1,0,1],[45,1,1,1,2]]],[1,1,1,2,3,[[63,1,1,2,3]]],[6,1,1,3,4,[[214,1,1,3,4]]],[10,5,5,4,9,[[297,1,1,4,5],[300,1,1,5,6],[302,1,1,6,7],[310,1,1,7,8],[312,1,1,8,9]]],[11,4,4,9,13,[[317,2,2,9,11],[321,1,1,11,12],[322,1,1,12,13]]],[12,1,1,13,14,[[365,1,1,13,14]]],[13,4,4,14,18,[[367,1,1,14,15],[376,1,1,15,16],[384,1,1,16,17],[401,1,1,17,18]]],[32,1,1,18,19,[[893,1,1,18,19]]],[37,4,2,19,21,[[916,4,2,19,21]]]],[1238,1415,1914,6614,8967,9108,9169,9441,9515,9668,9673,9783,9808,11161,11211,11413,11576,11990,22592,22949,22950]]],["chariots",[20,19,[[1,1,1,0,1,[[64,1,1,0,1]]],[5,2,2,1,3,[[197,2,2,1,3]]],[6,1,1,3,4,[[215,1,1,3,4]]],[8,2,1,4,5,[[243,2,1,4,5]]],[9,1,1,5,6,[[281,1,1,5,6]]],[11,1,1,6,7,[[335,1,1,6,7]]],[13,2,2,7,9,[[375,1,1,7,8],[380,1,1,8,9]]],[21,1,1,9,10,[[676,1,1,9,10]]],[22,3,3,10,13,[[680,1,1,10,11],[700,1,1,11,12],[744,1,1,12,13]]],[23,1,1,13,14,[[748,1,1,13,14]]],[28,1,1,14,15,[[877,1,1,14,15]]],[32,1,1,15,16,[[897,1,1,15,16]]],[33,1,1,16,17,[[902,1,1,16,17]]],[34,1,1,17,18,[[905,1,1,17,18]]],[36,1,1,18,19,[[910,1,1,18,19]]]],[1924,6113,6116,6651,7380,8390,10176,11389,11484,17626,17692,18070,18937,19040,22316,22643,22714,22776,22877]]]]},{"k":"H4819","v":[["merchandise",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21145]]]]},{"k":"H4820","v":[["*",[39,38,[[0,2,2,0,2,[[26,1,1,0,1],[33,1,1,1,2]]],[11,1,1,2,3,[[321,1,1,2,3]]],[17,2,2,3,5,[[450,1,1,3,4],[466,1,1,4,5]]],[18,14,14,5,19,[[482,1,1,5,6],[487,1,1,6,7],[494,1,1,7,8],[501,1,1,8,9],[511,1,1,9,10],[512,1,1,10,11],[513,1,1,11,12],[515,1,1,12,13],[520,1,1,13,14],[527,1,1,14,15],[529,1,1,15,16],[532,2,2,16,18],[586,1,1,18,19]]],[19,8,8,19,27,[[638,1,1,19,20],[639,3,3,20,23],[641,2,2,23,25],[647,1,1,25,26],[653,1,1,26,27]]],[22,1,1,27,28,[[731,1,1,27,28]]],[23,4,3,28,31,[[749,1,1,28,29],[753,3,2,29,31]]],[26,2,2,31,33,[[857,1,1,31,32],[860,1,1,32,33]]],[27,2,2,33,35,[[872,1,1,33,34],[873,1,1,34,35]]],[29,1,1,35,36,[[886,1,1,35,36]]],[32,1,1,36,37,[[898,1,1,36,37]]],[35,1,1,37,38,[[906,1,1,37,38]]]],[762,993,9779,13238,13593,13979,14048,14104,14245,14401,14430,14441,14502,14567,14687,14714,14743,14755,15757,16689,16724,16736,16739,16780,16797,16977,17165,18720,19085,19181,19183,21986,22059,22252,22259,22486,22659,22796]]],["Deceit",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16739]]],["craft",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21986]]],["deceit",[18,17,[[17,2,2,0,2,[[450,1,1,0,1],[466,1,1,1,2]]],[18,3,3,2,5,[[487,1,1,2,3],[513,1,1,3,4],[527,1,1,4,5]]],[19,4,4,5,9,[[639,2,2,5,7],[641,1,1,7,8],[653,1,1,8,9]]],[22,1,1,9,10,[[731,1,1,9,10]]],[23,4,3,10,13,[[749,1,1,10,11],[753,3,2,11,13]]],[27,2,2,13,15,[[872,1,1,13,14],[873,1,1,14,15]]],[29,1,1,15,16,[[886,1,1,15,16]]],[35,1,1,16,17,[[906,1,1,16,17]]]],[13238,13593,14048,14441,14687,16724,16736,16780,17165,18720,19085,19181,19183,22252,22259,22486,22796]]],["deceitful",[8,8,[[18,6,6,0,6,[[482,1,1,0,1],[512,1,1,1,2],[520,1,1,2,3],[529,1,1,3,4],[532,1,1,4,5],[586,1,1,5,6]]],[19,1,1,6,7,[[641,1,1,6,7]]],[32,1,1,7,8,[[898,1,1,7,8]]]],[13979,14430,14567,14714,14755,15757,16797,22659]]],["deceitfully",[3,3,[[0,1,1,0,1,[[33,1,1,0,1]]],[18,1,1,1,2,[[501,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[993,14245,22059]]],["deceits",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14502]]],["false",[2,2,[[19,2,2,0,2,[[638,1,1,0,1],[647,1,1,1,2]]]],[16689,16977]]],["feigned",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14104]]],["guile",[2,2,[[18,2,2,0,2,[[511,1,1,0,1],[532,1,1,1,2]]]],[14401,14743]]],["subtilty",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[762]]],["treachery",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9779]]]]},{"k":"H4821","v":[["Mirma",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10585]]]]},{"k":"H4822","v":[["Meremoth",[6,6,[[14,2,2,0,2,[[410,1,1,0,1],[412,1,1,1,2]]],[15,4,4,2,6,[[415,2,2,2,4],[422,1,1,4,5],[424,1,1,5,6]]]],[12234,12288,12331,12348,12554,12627]]]]},{"k":"H4823","v":[["*",[7,7,[[22,4,4,0,4,[[683,1,1,0,1],[685,1,1,1,2],[688,1,1,2,3],[706,1,1,3,4]]],[25,1,1,4,5,[[835,1,1,4,5]]],[26,1,1,5,6,[[857,1,1,5,6]]],[32,1,1,6,7,[[899,1,1,6,7]]]],[17744,17807,17856,18182,21332,21974,22674]]],["down",[4,4,[[22,3,3,0,3,[[683,1,1,0,1],[688,1,1,1,2],[706,1,1,2,3]]],[32,1,1,3,4,[[899,1,1,3,4]]]],[17744,17856,18182,22674]]],["foot",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21974]]],["treading",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17807]]],["trodden",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21332]]]]},{"k":"H4824","v":[["Meronothite",[2,2,[[12,1,1,0,1,[[364,1,1,0,1]]],[15,1,1,1,2,[[415,1,1,1,2]]]],[11139,12334]]]]},{"k":"H4825","v":[["Meres",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12716]]]]},{"k":"H4826","v":[["Marsena",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12716]]]]},{"k":"H4827","v":[["mischief",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22063]]]]},{"k":"H4828","v":[["*",[7,7,[[0,1,1,0,1,[[25,1,1,0,1]]],[6,4,4,1,5,[[224,2,2,1,3],[225,2,2,3,5]]],[9,1,1,5,6,[[269,1,1,5,6]]],[19,1,1,6,7,[[646,1,1,6,7]]]],[718,6920,6929,6931,6935,8089,16932]]],["companion",[3,3,[[6,3,3,0,3,[[224,1,1,0,1],[225,2,2,1,3]]]],[6929,6931,6935]]],["companions",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6920]]],["friends",[3,3,[[0,1,1,0,1,[[25,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]],[19,1,1,2,3,[[646,1,1,2,3]]]],[718,8089,16932]]]]},{"k":"H4829","v":[["*",[13,11,[[0,1,1,0,1,[[46,1,1,0,1]]],[12,3,3,1,4,[[341,3,3,1,4]]],[17,1,1,4,5,[[474,1,1,4,5]]],[22,1,1,5,6,[[710,1,1,5,6]]],[24,1,1,6,7,[[797,1,1,6,7]]],[25,4,2,7,9,[[835,4,2,7,9]]],[28,1,1,9,10,[[876,1,1,9,10]]],[33,1,1,10,11,[[901,1,1,10,11]]]],[1424,10424,10425,10426,13842,18273,20316,21327,21331,22309,22710]]],["feedingplace",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22710]]],["pasture",[11,10,[[0,1,1,0,1,[[46,1,1,0,1]]],[12,3,3,1,4,[[341,3,3,1,4]]],[17,1,1,4,5,[[474,1,1,4,5]]],[22,1,1,5,6,[[710,1,1,5,6]]],[24,1,1,6,7,[[797,1,1,6,7]]],[25,3,2,7,9,[[835,3,2,7,9]]],[28,1,1,9,10,[[876,1,1,9,10]]]],[1424,10424,10425,10426,13842,18273,20316,21327,21331,22309]]],["pastures",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21331]]]]},{"k":"H4830","v":[["*",[10,10,[[18,4,4,0,4,[[551,1,1,0,1],[556,1,1,1,2],[572,1,1,2,3],[577,1,1,3,4]]],[22,1,1,4,5,[[727,1,1,4,5]]],[23,3,3,5,8,[[754,1,1,5,6],[767,1,1,6,7],[769,1,1,7,8]]],[25,1,1,8,9,[[835,1,1,8,9]]],[27,1,1,9,10,[[874,1,1,9,10]]]],[15049,15198,15461,15511,18645,19222,19485,19570,21344,22272]]],["flocks",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19222]]],["pasture",[8,8,[[18,4,4,0,4,[[551,1,1,0,1],[556,1,1,1,2],[572,1,1,2,3],[577,1,1,3,4]]],[23,2,2,4,6,[[767,1,1,4,5],[769,1,1,5,6]]],[25,1,1,6,7,[[835,1,1,6,7]]],[27,1,1,7,8,[[874,1,1,7,8]]]],[15049,15198,15461,15511,19485,19570,21344,22272]]],["pastures",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18645]]]]},{"k":"H4831","v":[["Maralah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6332]]]]},{"k":"H4832","v":[["*",[16,15,[[13,2,2,0,2,[[387,1,1,0,1],[402,1,1,1,2]]],[19,8,8,2,10,[[631,1,1,2,3],[633,1,1,3,4],[639,1,1,4,5],[640,1,1,5,6],[641,1,1,6,7],[642,1,1,7,8],[643,1,1,8,9],[656,1,1,9,10]]],[20,1,1,10,11,[[668,1,1,10,11]]],[23,4,3,11,14,[[752,1,1,11,12],[758,2,1,12,13],[777,1,1,13,14]]],[38,1,1,14,15,[[928,1,1,14,15]]]],[11642,12009,16512,16555,16737,16764,16802,16811,16864,17225,17497,19168,19312,19781,23140]]],["+",[1,1,[[13,1,1,0,1,[[387,1,1,0,1]]]],[11642]]],["cure",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19781]]],["healing",[3,2,[[23,2,1,0,1,[[758,2,1,0,1]]],[38,1,1,1,2,[[928,1,1,1,2]]]],[19312,23140]]],["health",[5,5,[[19,4,4,0,4,[[631,1,1,0,1],[639,1,1,1,2],[640,1,1,2,3],[643,1,1,3,4]]],[23,1,1,4,5,[[752,1,1,4,5]]]],[16512,16737,16764,16864,19168]]],["remedy",[3,3,[[13,1,1,0,1,[[402,1,1,0,1]]],[19,2,2,1,3,[[633,1,1,1,2],[656,1,1,2,3]]]],[12009,16555,17225]]],["sound",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16802]]],["wholesome",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16811]]],["yielding",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17497]]]]},{"k":"H4833","v":[["fouled",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21332]]]]},{"k":"H4834","v":[["*",[4,4,[[10,1,1,0,1,[[292,1,1,0,1]]],[17,2,2,1,3,[[441,1,1,1,2],[451,1,1,2,3]]],[32,1,1,3,4,[[894,1,1,3,4]]]],[8778,13003,13241,22605]]],["emboldeneth",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13241]]],["forcible",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[13003]]],["grievous",[1,1,[[10,1,1,0,1,[[292,1,1,0,1]]]],[8778]]],["sore",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22605]]]]},{"k":"H4835","v":[["violence",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19471]]]]},{"k":"H4836","v":[["aul",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[4,1,1,1,2,[[167,1,1,1,2]]]],[2083,5336]]]]},{"k":"H4837","v":[["pavement",[1,1,[[11,1,1,0,1,[[328,1,1,0,1]]]],[9980]]]]},{"k":"H4838","v":[["*",[3,3,[[2,1,1,0,1,[[95,1,1,0,1]]],[13,1,1,1,2,[[370,1,1,1,2]]],[23,1,1,2,3,[[790,1,1,2,3]]]],[2877,11262,20049]]],["bright",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11262]]],["furbish",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20049]]],["scoured",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2877]]]]},{"k":"H4839","v":[["broth",[2,2,[[6,2,2,0,2,[[216,2,2,0,2]]]],[6673,6674]]]]},{"k":"H4840","v":[["sweet",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17611]]]]},{"k":"H4841","v":[["*",[2,2,[[17,1,1,0,1,[[476,1,1,0,1]]],[25,1,1,1,2,[[825,1,1,1,2]]]],[13919,21066]]],["+",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21066]]],["ointment",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13919]]]]},{"k":"H4842","v":[["*",[3,3,[[1,1,1,0,1,[[79,1,1,0,1]]],[12,1,1,1,2,[[346,1,1,1,2]]],[13,1,1,2,3,[[382,1,1,2,3]]]],[2407,10645,11523]]],["+",[1,1,[[13,1,1,0,1,[[382,1,1,0,1]]]],[11523]]],["compound",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2407]]],["ointment",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10645]]]]},{"k":"H4843","v":[["*",[16,15,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[50,1,1,1,2],[72,1,1,2,3]]],[7,2,2,3,5,[[232,2,2,3,5]]],[8,1,1,5,6,[[265,1,1,5,6]]],[11,1,1,6,7,[[316,1,1,6,7]]],[17,1,1,7,8,[[462,1,1,7,8]]],[22,3,3,8,11,[[700,1,1,8,9],[702,1,1,9,10],[716,1,1,10,11]]],[24,1,1,11,12,[[797,1,1,11,12]]],[26,2,2,12,14,[[857,1,1,12,13],[860,1,1,13,14]]],[37,2,1,14,15,[[922,2,1,14,15]]]],[1496,1546,2165,7140,7147,7984,9630,13483,18056,18104,18407,20314,21968,22047,23055]]],["+",[2,2,[[7,1,1,0,1,[[232,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]]],[7147,18407]]],["bitter",[2,2,[[1,1,1,0,1,[[50,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]]],[1546,18104]]],["bitterly",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18056]]],["bitterness",[3,2,[[24,1,1,0,1,[[797,1,1,0,1]]],[37,2,1,1,2,[[922,2,1,1,2]]]],[20314,23055]]],["choler",[2,2,[[26,2,2,0,2,[[857,1,1,0,1],[860,1,1,1,2]]]],[21968,22047]]],["grieved",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[8,1,1,1,2,[[265,1,1,1,2]]]],[1496,7984]]],["grieveth",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7140]]],["provoke",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2165]]],["vexed",[2,2,[[11,1,1,0,1,[[316,1,1,0,1]]],[17,1,1,1,2,[[462,1,1,1,2]]]],[9630,13483]]]]},{"k":"H4844","v":[["*",[3,3,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[125,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]]],[1824,3976,20369]]],["bitter",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[125,1,1,1,2]]]],[1824,3976]]],["bitterness",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20369]]]]},{"k":"H4845","v":[["gall",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13251]]]]},{"k":"H4846","v":[["*",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,3,3,1,4,[[448,1,1,1,2],[455,2,2,2,4]]]],[5790,13179,13340,13351]]],["+",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13351]]],["bitter",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5790]]],["gall",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13340]]],["things",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13179]]]]},{"k":"H4847","v":[["Merari",[39,38,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,2,2,1,3,[[55,2,2,1,3]]],[3,13,12,3,15,[[119,6,5,3,8],[120,4,4,8,12],[123,1,1,12,13],[126,1,1,13,14],[142,1,1,14,15]]],[5,3,3,15,18,[[207,3,3,15,18]]],[12,17,17,18,35,[[343,8,8,18,26],[346,1,1,26,27],[352,2,2,27,29],[360,2,2,29,31],[361,2,2,31,33],[363,2,2,33,35]]],[13,2,2,35,37,[[395,1,1,35,36],[400,1,1,36,37]]],[14,1,1,37,38,[[410,1,1,37,38]]]],[1397,1671,1674,3709,3712,3725,3727,3728,3772,3776,3785,3788,3858,4005,4546,6388,6415,6421,10455,10470,10473,10483,10498,10501,10517,10531,10629,10797,10808,10989,11004,11041,11042,11087,11096,11803,11945,12220]]]]},{"k":"H4848","v":[["Merarites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4546]]]]},{"k":"H4849","v":[["woman",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11684]]]]},{"k":"H4850","v":[["Merathaim",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20187]]]]},{"k":"H4851","v":[["Mash",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[257]]]]},{"k":"H4852","v":[["+",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[264]]]]},{"k":"H4853","v":[["*",[65,59,[[1,1,1,0,1,[[72,1,1,0,1]]],[3,11,10,1,11,[[120,9,8,1,9],[127,2,2,9,11]]],[4,1,1,11,12,[[153,1,1,11,12]]],[9,2,2,12,14,[[281,1,1,12,13],[285,1,1,13,14]]],[11,3,3,14,17,[[317,1,1,14,15],[320,1,1,15,16],[321,1,1,16,17]]],[12,3,2,17,19,[[352,3,2,17,19]]],[13,4,4,19,23,[[383,1,1,19,20],[386,1,1,20,21],[390,1,1,21,22],[401,1,1,22,23]]],[15,2,2,23,25,[[425,2,2,23,25]]],[17,1,1,25,26,[[442,1,1,25,26]]],[18,1,1,26,27,[[515,1,1,26,27]]],[19,2,2,27,29,[[657,1,1,27,28],[658,1,1,28,29]]],[22,14,14,29,43,[[691,1,1,29,30],[692,1,1,30,31],[693,1,1,31,32],[695,1,1,32,33],[697,1,1,33,34],[699,3,3,34,37],[700,2,2,37,39],[701,1,1,39,40],[708,1,1,40,41],[724,2,2,41,43]]],[23,12,8,43,51,[[761,4,4,43,47],[767,8,4,47,51]]],[25,2,2,51,53,[[813,1,1,51,52],[825,1,1,52,53]]],[27,1,1,53,54,[[869,1,1,53,54]]],[33,1,1,54,55,[[900,1,1,54,55]]],[34,1,1,55,56,[[903,1,1,55,56]]],[37,2,2,56,58,[[919,1,1,56,57],[922,1,1,57,58]]],[38,1,1,58,59,[[925,1,1,58,59]]]],[2149,3758,3762,3767,3770,3774,3775,3790,3792,4035,4041,4904,8422,8546,9664,9736,9781,10813,10818,11534,11612,11704,11969,12686,12690,13028,14494,17252,17285,17907,17956,17961,17984,18005,18036,18046,18048,18053,18077,18078,18223,18587,18588,19378,19379,19381,19384,19517,19518,19520,19522,20690,21081,22204,22685,22732,23000,23046,23090]]],["+",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22204]]],["away",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11612]]],["burden",[51,47,[[1,1,1,0,1,[[72,1,1,0,1]]],[3,8,8,1,9,[[120,6,6,1,7],[127,2,2,7,9]]],[4,1,1,9,10,[[153,1,1,9,10]]],[9,2,2,10,12,[[281,1,1,10,11],[285,1,1,11,12]]],[11,3,3,12,15,[[317,1,1,12,13],[320,1,1,13,14],[321,1,1,14,15]]],[13,1,1,15,16,[[401,1,1,15,16]]],[15,1,1,16,17,[[425,1,1,16,17]]],[17,1,1,17,18,[[442,1,1,17,18]]],[18,1,1,18,19,[[515,1,1,18,19]]],[22,14,14,19,33,[[691,1,1,19,20],[692,1,1,20,21],[693,1,1,21,22],[695,1,1,22,23],[697,1,1,23,24],[699,3,3,24,27],[700,2,2,27,29],[701,1,1,29,30],[708,1,1,30,31],[724,2,2,31,33]]],[23,12,8,33,41,[[761,4,4,33,37],[767,8,4,37,41]]],[25,1,1,41,42,[[813,1,1,41,42]]],[33,1,1,42,43,[[900,1,1,42,43]]],[34,1,1,43,44,[[903,1,1,43,44]]],[37,2,2,44,46,[[919,1,1,44,45],[922,1,1,45,46]]],[38,1,1,46,47,[[925,1,1,46,47]]]],[2149,3758,3762,3774,3775,3790,3792,4035,4041,4904,8422,8546,9664,9736,9781,11969,12690,13028,14494,17907,17956,17961,17984,18005,18036,18046,18048,18053,18077,18078,18223,18587,18588,19378,19379,19381,19384,19517,19518,19520,19522,20690,22685,22732,23000,23046,23090]]],["burdens",[5,4,[[3,3,2,0,2,[[120,3,2,0,2]]],[13,1,1,2,3,[[390,1,1,2,3]]],[15,1,1,3,4,[[425,1,1,3,4]]]],[3767,3770,11704,12686]]],["prophecy",[2,2,[[19,2,2,0,2,[[657,1,1,0,1],[658,1,1,1,2]]]],[17252,17285]]],["set",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21081]]],["song",[3,2,[[12,3,2,0,2,[[352,3,2,0,2]]]],[10813,10818]]],["tribute",[1,1,[[13,1,1,0,1,[[383,1,1,0,1]]]],[11534]]]]},{"k":"H4854","v":[["Massa",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[672,10282]]]]},{"k":"H4855","v":[["*",[3,3,[[15,3,3,0,3,[[417,2,2,0,2],[422,1,1,2,3]]]],[12389,12392,12580]]],["exaction",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12580]]],["usury",[2,2,[[15,2,2,0,2,[[417,2,2,0,2]]]],[12389,12392]]]]},{"k":"H4856","v":[["respect",[1,1,[[13,1,1,0,1,[[385,1,1,0,1]]]],[11583]]]]},{"k":"H4857","v":[["water",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6634]]]]},{"k":"H4858","v":[["burden",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18244]]]]},{"k":"H4859","v":[["*",[2,2,[[4,1,1,0,1,[[176,1,1,0,1]]],[19,1,1,1,2,[[649,1,1,1,2]]]],[5535,17041]]],["debts",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17041]]],["thing",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5535]]]]},{"k":"H4860","v":[["deceit",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17167]]]]},{"k":"H4861","v":[["*",[2,2,[[5,2,2,0,2,[[205,1,1,0,1],[207,1,1,1,2]]]],[6347,6411]]],["Mishal",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6411]]],["Misheal",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6347]]]]},{"k":"H4862","v":[["*",[2,2,[[18,2,2,0,2,[[497,1,1,0,1],[514,1,1,1,2]]]],[14187,14454]]],["desires",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14454]]],["petitions",[1,1,[[18,1,1,0,1,[[497,1,1,0,1]]]],[14187]]]]},{"k":"H4863","v":[["*",[4,4,[[1,2,2,0,2,[[57,1,1,0,1],[61,1,1,1,2]]],[4,2,2,2,4,[[180,2,2,2,4]]]],[1713,1850,5616,5628]]],["kneadingtroughs",[2,2,[[1,2,2,0,2,[[57,1,1,0,1],[61,1,1,1,2]]]],[1713,1850]]],["store",[2,2,[[4,2,2,0,2,[[180,2,2,0,2]]]],[5616,5628]]]]},{"k":"H4864","v":[["*",[16,14,[[0,3,1,0,1,[[42,3,1,0,1]]],[6,2,2,1,3,[[230,2,2,1,3]]],[9,1,1,3,4,[[277,1,1,3,4]]],[13,2,2,4,6,[[390,2,2,4,6]]],[16,1,1,6,7,[[427,1,1,6,7]]],[18,1,1,7,8,[[618,1,1,7,8]]],[23,2,2,8,10,[[750,1,1,8,9],[784,1,1,9,10]]],[24,1,1,10,11,[[798,1,1,10,11]]],[25,1,1,11,12,[[821,1,1,11,12]]],[29,1,1,12,13,[[883,1,1,12,13]]],[35,1,1,13,14,[[908,1,1,13,14]]]],[1324,7092,7094,8267,11683,11686,12742,16278,19090,19946,20346,20935,22434,22838]]],["+",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1324]]],["burden",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22838]]],["burdens",[2,2,[[24,1,1,0,1,[[798,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[20346,22434]]],["collection",[2,2,[[13,2,2,0,2,[[390,2,2,0,2]]]],[11683,11686]]],["fire",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19090]]],["flame",[2,2,[[6,2,2,0,2,[[230,2,2,0,2]]]],[7092,7094]]],["gifts",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12742]]],["mess",[2,2,[[0,1,1,0,1,[[42,1,1,0,1]]],[9,1,1,1,2,[[277,1,1,1,2]]]],[1324,8267]]],["messes",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1324]]],["oblations",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20935]]],["reward",[1,1,[[23,1,1,0,1,[[784,1,1,0,1]]]],[19946]]],["up",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16278]]]]},{"k":"H4865","v":[["*",[9,9,[[1,8,8,0,8,[[77,4,4,0,4],[88,4,4,4,8]]],[18,1,1,8,9,[[522,1,1,8,9]]]],[2304,2306,2307,2318,2670,2677,2680,2682,14610]]],["+",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14610]]],["ouches",[8,8,[[1,8,8,0,8,[[77,4,4,0,4],[88,4,4,4,8]]]],[2304,2306,2307,2318,2670,2677,2680,2682]]]]},{"k":"H4866","v":[["*",[3,3,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]],[27,1,1,2,3,[[874,1,1,2,3]]]],[10064,18355,22279]]],["birth",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10064,18355]]],["forth",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22279]]]]},{"k":"H4867","v":[["*",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,3,3,1,4,[[519,1,1,1,2],[565,1,1,2,3],[570,1,1,3,4]]],[31,1,1,4,5,[[890,1,1,4,5]]]],[8607,14562,15315,15430,22551]]],["billows",[1,1,[[31,1,1,0,1,[[890,1,1,0,1]]]],[22551]]],["waves",[4,4,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,3,3,1,4,[[519,1,1,1,2],[565,1,1,2,3],[570,1,1,3,4]]]],[8607,14562,15315,15430]]]]},{"k":"H4868","v":[["sabbaths",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20317]]]]},{"k":"H4869","v":[["*",[17,16,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,13,12,1,13,[[486,2,1,1,2],[495,1,1,2,3],[523,2,2,3,5],[525,1,1,5,6],[536,3,3,6,9],[539,2,2,9,11],[571,1,1,11,12],[621,1,1,12,13]]],[22,2,2,13,15,[[703,1,1,13,14],[711,1,1,14,15]]],[23,1,1,15,16,[[792,1,1,15,16]]]],[8605,14030,14120,14621,14625,14637,14799,14806,14807,14829,14833,15453,16307,18130,18295,20081]]],["Misgab",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20081]]],["defence",[7,7,[[18,6,6,0,6,[[536,3,3,0,3],[539,2,2,3,5],[571,1,1,5,6]]],[22,1,1,6,7,[[711,1,1,6,7]]]],[14799,14806,14807,14829,14833,15453,18295]]],["fort",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18130]]],["refuge",[5,4,[[18,5,4,0,4,[[486,2,1,0,1],[523,2,2,1,3],[525,1,1,3,4]]]],[14030,14621,14625,14637]]],["tower",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,2,2,1,3,[[495,1,1,1,2],[621,1,1,2,3]]]],[8605,14120,16307]]]]},{"k":"H4870","v":[["oversight",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1302]]]]},{"k":"H4871","v":[["drew",[3,3,[[1,1,1,0,1,[[51,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]]],[1564,8619,14134]]]]},{"k":"H4872","v":[["*",[765,703,[[1,290,261,0,261,[[51,8,6,0,6],[52,9,8,6,14],[53,15,13,14,27],[54,4,4,27,31],[55,13,12,31,43],[56,8,8,43,51],[57,14,13,51,64],[58,13,12,64,76],[59,12,12,76,88],[60,5,5,88,93],[61,7,7,93,100],[62,3,3,100,103],[63,8,8,103,111],[64,3,3,111,114],[65,17,16,114,130],[66,13,11,130,141],[67,20,15,141,156],[68,14,12,156,168],[69,4,4,168,172],[73,14,12,172,184],[74,1,1,184,185],[79,4,4,185,189],[80,3,3,189,192],[81,17,16,192,208],[82,10,8,208,216],[83,15,10,216,226],[84,5,5,226,231],[85,4,4,231,235],[87,2,2,235,237],[88,12,11,237,248],[89,13,13,248,261]]],[2,86,80,261,341,[[90,1,1,261,262],[93,1,1,262,263],[94,1,1,263,264],[95,4,4,264,268],[96,3,3,268,271],[97,25,20,271,291],[98,7,7,291,298],[99,10,10,298,308],[100,1,1,308,309],[101,1,1,309,310],[102,1,1,310,311],[103,2,2,311,313],[104,1,1,313,314],[105,3,3,314,317],[106,1,1,317,318],[107,1,1,318,319],[108,1,1,319,320],[109,1,1,320,321],[110,3,3,321,324],[111,3,3,324,327],[112,6,6,327,333],[113,5,4,333,337],[114,1,1,337,338],[115,1,1,338,339],[116,2,2,339,341]]],[3,233,216,341,557,[[117,6,6,341,347],[118,3,3,347,350],[119,14,12,350,362],[120,12,9,362,371],[121,4,4,371,375],[122,2,2,375,377],[123,5,5,377,382],[124,8,7,382,389],[125,7,7,389,396],[126,5,4,396,400],[127,14,11,400,411],[128,9,9,411,420],[129,7,6,420,426],[130,9,9,426,435],[131,8,8,435,443],[132,21,21,443,464],[133,8,8,464,472],[134,1,1,472,473],[135,1,1,473,474],[136,13,12,474,486],[137,8,7,486,493],[141,5,5,493,498],[142,8,8,498,506],[143,9,9,506,515],[144,1,1,515,516],[145,2,1,516,517],[146,2,2,517,519],[147,21,18,519,537],[148,8,8,537,545],[149,3,3,545,548],[150,3,3,548,551],[151,2,2,551,553],[152,4,4,553,557]]],[4,38,35,557,592,[[153,3,3,557,560],[156,4,4,560,564],[157,1,1,564,565],[179,3,3,565,568],[181,2,2,568,570],[183,11,10,570,580],[184,3,3,580,583],[185,2,2,583,585],[186,9,7,585,592]]],[5,58,51,592,643,[[187,11,9,592,601],[189,1,1,601,602],[190,3,3,602,605],[194,5,4,605,609],[195,1,1,609,610],[197,6,4,610,614],[198,2,1,614,615],[199,9,8,615,623],[200,8,8,623,631],[203,1,1,631,632],[204,1,1,632,633],[206,1,1,633,634],[207,2,2,634,636],[208,5,5,636,641],[209,1,1,641,642],[210,1,1,642,643]]],[6,4,4,643,647,[[211,2,2,643,645],[213,1,1,645,646],[214,1,1,646,647]]],[8,2,2,647,649,[[247,2,2,647,649]]],[10,4,4,649,653,[[292,1,1,649,650],[298,3,3,650,653]]],[11,6,6,653,659,[[326,1,1,653,654],[330,3,3,654,657],[333,1,1,657,658],[335,1,1,658,659]]],[12,9,9,659,668,[[343,2,2,659,661],[352,1,1,661,662],[358,1,1,662,663],[359,1,1,663,664],[360,3,3,664,667],[363,1,1,667,668]]],[13,12,12,668,680,[[367,1,1,668,669],[371,1,1,669,670],[374,1,1,670,671],[389,1,1,671,672],[390,2,2,672,674],[391,1,1,674,675],[396,1,1,675,676],[399,1,1,676,677],[400,1,1,677,678],[401,2,2,678,680]]],[14,2,2,680,682,[[405,1,1,680,681],[409,1,1,681,682]]],[15,7,7,682,689,[[413,2,2,682,684],[420,2,2,684,686],[421,1,1,686,687],[422,1,1,687,688],[425,1,1,688,689]]],[18,7,7,689,696,[[554,1,1,689,690],[576,1,1,690,691],[580,1,1,691,692],[582,1,1,692,693],[583,3,3,693,696]]],[22,2,2,696,698,[[741,2,2,696,698]]],[23,1,1,698,699,[[759,1,1,698,699]]],[26,2,2,699,701,[[858,2,2,699,701]]],[32,1,1,701,702,[[898,1,1,701,702]]],[38,1,1,702,703,[[928,1,1,702,703]]]],[1564,1565,1568,1569,1571,1575,1580,1582,1583,1585,1590,1592,1593,1594,1602,1604,1605,1611,1615,1619,1620,1621,1622,1628,1629,1630,1631,1633,1636,1652,1654,1656,1657,1664,1665,1667,1668,1675,1681,1682,1683,1684,1685,1686,1691,1692,1693,1695,1699,1704,1705,1711,1715,1718,1719,1722,1723,1726,1730,1735,1736,1739,1740,1741,1743,1750,1752,1753,1754,1755,1764,1765,1769,1771,1775,1777,1778,1780,1785,1786,1789,1790,1793,1798,1799,1801,1802,1806,1807,1809,1810,1815,1816,1817,1837,1844,1847,1851,1859,1866,1868,1870,1886,1890,1900,1902,1904,1910,1915,1916,1920,1921,1942,1944,1949,1951,1953,1955,1956,1958,1962,1966,1967,1969,1971,1972,1975,1979,1980,1981,1985,1986,1987,1988,1989,1992,1993,1994,1995,1997,1998,2000,2001,2004,2005,2006,2007,2011,2012,2013,2014,2016,2023,2024,2025,2026,2029,2033,2034,2035,2036,2040,2043,2045,2046,2047,2049,2051,2070,2071,2072,2073,2178,2179,2180,2181,2183,2185,2186,2189,2190,2192,2193,2195,2196,2393,2399,2404,2416,2421,2432,2438,2439,2445,2447,2449,2453,2455,2457,2459,2461,2463,2464,2466,2467,2468,2469,2471,2474,2478,2480,2481,2482,2484,2485,2490,2497,2500,2504,2523,2525,2526,2527,2529,2530,2531,2532,2535,2551,2560,2561,2568,2569,2571,2572,2654,2655,2665,2669,2671,2685,2690,2693,2695,2696,2697,2706,2707,2708,2723,2725,2726,2728,2730,2732,2734,2736,2738,2739,2740,2742,2746,2796,2844,2850,2857,2868,2873,2901,2907,2917,2918,2921,2922,2923,2926,2927,2930,2932,2933,2934,2936,2937,2938,2940,2941,2945,2946,2947,2948,2953,2954,2958,2959,2960,2963,2974,2976,2980,2981,2982,2983,2984,2988,2989,2993,2996,2997,2998,3045,3053,3112,3144,3169,3202,3203,3235,3236,3252,3282,3319,3346,3361,3369,3370,3386,3395,3403,3411,3425,3428,3435,3446,3447,3457,3459,3469,3470,3570,3571,3604,3605,3621,3623,3648,3652,3658,3659,3691,3692,3693,3697,3703,3706,3708,3730,3731,3732,3734,3736,3741,3743,3744,3760,3764,3777,3780,3784,3788,3789,3792,3793,3796,3797,3803,3824,3845,3851,3854,3856,3861,3939,3940,3942,3943,3944,3959,3961,3962,3966,3969,3970,3971,3973,3974,3988,3989,4001,4017,4023,4026,4034,4035,4040,4045,4047,4048,4051,4052,4053,4054,4060,4061,4062,4063,4066,4067,4070,4072,4073,4076,4078,4091,4092,4101,4105,4110,4113,4119,4121,4134,4144,4147,4149,4152,4154,4170,4175,4176,4186,4188,4189,4190,4196,4197,4198,4202,4206,4209,4210,4212,4214,4217,4219,4222,4230,4234,4235,4236,4237,4238,4240,4241,4244,4245,4250,4251,4252,4253,4254,4255,4256,4282,4290,4313,4314,4317,4318,4320,4321,4322,4323,4325,4334,4338,4339,4345,4347,4348,4349,4356,4372,4374,4475,4476,4477,4481,4487,4490,4492,4493,4498,4541,4548,4552,4553,4556,4559,4560,4565,4566,4569,4572,4576,4577,4578,4648,4649,4664,4665,4667,4670,4671,4676,4677,4678,4679,4685,4689,4695,4705,4706,4711,4712,4713,4715,4718,4720,4724,4738,4743,4746,4747,4751,4758,4761,4762,4810,4817,4829,4832,4846,4854,4880,4884,4889,4892,4893,4895,4897,5045,5048,5049,5050,5054,5586,5594,5596,5680,5681,5729,5735,5737,5738,5742,5744,5750,5752,5753,5758,5802,5803,5806,5811,5814,5840,5844,5846,5847,5848,5849,5851,5852,5853,5854,5856,5858,5864,5865,5866,5868,5900,5920,5922,5924,6033,6034,6035,6037,6061,6119,6122,6127,6130,6136,6162,6166,6169,6175,6178,6183,6186,6187,6189,6190,6192,6193,6194,6196,6197,6198,6279,6300,6374,6383,6389,6428,6430,6431,6433,6435,6466,6481,6525,6529,6572,6610,7466,7468,8773,8994,9038,9041,9902,10028,10030,10036,10127,10190,10457,10503,10806,10963,10977,10996,10997,10998,11101,11197,11278,11359,11674,11683,11686,11708,11843,11916,11947,11972,11978,12099,12179,12303,12304,12494,12507,12525,12578,12672,15113,15505,15556,15632,15667,15674,15683,18877,18878,19316,21999,22001,22652,23142]]],["+",[4,4,[[1,3,3,0,3,[[51,1,1,0,1],[85,1,1,1,2],[88,1,1,2,3]]],[26,1,1,3,4,[[858,1,1,3,4]]]],[1575,2569,2697,22001]]],["Moses",[745,693,[[1,275,253,0,253,[[51,7,6,0,6],[52,9,8,6,14],[53,15,13,14,27],[54,4,4,27,31],[55,13,12,31,43],[56,8,8,43,51],[57,14,13,51,64],[58,13,12,64,76],[59,12,12,76,88],[60,5,5,88,93],[61,7,7,93,100],[62,3,3,100,103],[63,8,8,103,111],[64,3,3,111,114],[65,17,16,114,130],[66,12,10,130,140],[67,12,11,140,151],[68,14,12,151,163],[69,4,4,163,167],[73,14,12,167,179],[74,1,1,179,180],[79,4,4,180,184],[80,3,3,184,187],[81,16,15,187,202],[82,10,8,202,210],[83,13,10,210,220],[84,5,5,220,225],[85,3,3,225,228],[87,2,2,228,230],[88,11,10,230,240],[89,13,13,240,253]]],[2,85,80,253,333,[[90,1,1,253,254],[93,1,1,254,255],[94,1,1,255,256],[95,4,4,256,260],[96,3,3,260,263],[97,24,20,263,283],[98,7,7,283,290],[99,10,10,290,300],[100,1,1,300,301],[101,1,1,301,302],[102,1,1,302,303],[103,2,2,303,305],[104,1,1,305,306],[105,3,3,306,309],[106,1,1,309,310],[107,1,1,310,311],[108,1,1,311,312],[109,1,1,312,313],[110,3,3,313,316],[111,3,3,316,319],[112,6,6,319,325],[113,5,4,325,329],[114,1,1,329,330],[115,1,1,330,331],[116,2,2,331,333]]],[3,232,216,333,549,[[117,6,6,333,339],[118,3,3,339,342],[119,14,12,342,354],[120,12,9,354,363],[121,4,4,363,367],[122,2,2,367,369],[123,5,5,369,374],[124,8,7,374,381],[125,7,7,381,388],[126,4,4,388,392],[127,14,11,392,403],[128,9,9,403,412],[129,7,6,412,418],[130,9,9,418,427],[131,8,8,427,435],[132,21,21,435,456],[133,8,8,456,464],[134,1,1,464,465],[135,1,1,465,466],[136,13,12,466,478],[137,8,7,478,485],[141,5,5,485,490],[142,8,8,490,498],[143,9,9,498,507],[144,1,1,507,508],[145,2,1,508,509],[146,2,2,509,511],[147,21,18,511,529],[148,8,8,529,537],[149,3,3,537,540],[150,3,3,540,543],[151,2,2,543,545],[152,4,4,545,549]]],[4,38,35,549,584,[[153,3,3,549,552],[156,4,4,552,556],[157,1,1,556,557],[179,3,3,557,560],[181,2,2,560,562],[183,11,10,562,572],[184,3,3,572,575],[185,2,2,575,577],[186,9,7,577,584]]],[5,57,51,584,635,[[187,10,9,584,593],[189,1,1,593,594],[190,3,3,594,597],[194,5,4,597,601],[195,1,1,601,602],[197,6,4,602,606],[198,2,1,606,607],[199,9,8,607,615],[200,8,8,615,623],[203,1,1,623,624],[204,1,1,624,625],[206,1,1,625,626],[207,2,2,626,628],[208,5,5,628,633],[209,1,1,633,634],[210,1,1,634,635]]],[6,3,3,635,638,[[211,1,1,635,636],[213,1,1,636,637],[214,1,1,637,638]]],[8,2,2,638,640,[[247,2,2,638,640]]],[10,4,4,640,644,[[292,1,1,640,641],[298,3,3,641,644]]],[11,6,6,644,650,[[326,1,1,644,645],[330,3,3,645,648],[333,1,1,648,649],[335,1,1,649,650]]],[12,9,9,650,659,[[343,2,2,650,652],[352,1,1,652,653],[358,1,1,653,654],[359,1,1,654,655],[360,3,3,655,658],[363,1,1,658,659]]],[13,12,12,659,671,[[367,1,1,659,660],[371,1,1,660,661],[374,1,1,661,662],[389,1,1,662,663],[390,2,2,663,665],[391,1,1,665,666],[396,1,1,666,667],[399,1,1,667,668],[400,1,1,668,669],[401,2,2,669,671]]],[14,2,2,671,673,[[405,1,1,671,672],[409,1,1,672,673]]],[15,7,7,673,680,[[413,2,2,673,675],[420,2,2,675,677],[421,1,1,677,678],[422,1,1,678,679],[425,1,1,679,680]]],[18,7,7,680,687,[[554,1,1,680,681],[576,1,1,681,682],[580,1,1,682,683],[582,1,1,683,684],[583,3,3,684,687]]],[22,2,2,687,689,[[741,2,2,687,689]]],[23,1,1,689,690,[[759,1,1,689,690]]],[26,1,1,690,691,[[858,1,1,690,691]]],[32,1,1,691,692,[[898,1,1,691,692]]],[38,1,1,692,693,[[928,1,1,692,693]]]],[1564,1565,1568,1569,1571,1575,1580,1582,1583,1585,1590,1592,1593,1594,1602,1604,1605,1611,1615,1619,1620,1621,1622,1628,1629,1630,1631,1633,1636,1652,1654,1656,1657,1664,1665,1667,1668,1675,1681,1682,1683,1684,1685,1686,1691,1692,1693,1695,1699,1704,1705,1711,1715,1718,1719,1722,1723,1726,1730,1735,1736,1739,1740,1741,1743,1750,1752,1753,1754,1755,1764,1765,1769,1771,1775,1777,1778,1780,1785,1786,1789,1790,1793,1798,1799,1801,1802,1806,1807,1809,1810,1815,1816,1817,1837,1844,1847,1851,1859,1866,1868,1870,1886,1890,1900,1902,1904,1910,1915,1916,1920,1921,1942,1944,1949,1951,1953,1955,1956,1958,1962,1966,1967,1969,1971,1972,1975,1979,1980,1981,1985,1986,1987,1988,1989,1992,1993,1994,1997,1998,2000,2004,2005,2006,2007,2012,2014,2023,2024,2025,2026,2029,2033,2034,2035,2036,2040,2043,2045,2046,2047,2049,2051,2070,2071,2072,2073,2178,2179,2180,2181,2183,2185,2186,2189,2190,2192,2193,2195,2196,2393,2399,2404,2416,2421,2432,2438,2439,2445,2447,2449,2453,2455,2459,2461,2463,2464,2466,2467,2468,2469,2471,2474,2478,2480,2481,2482,2484,2485,2490,2497,2500,2504,2523,2525,2526,2527,2529,2530,2531,2532,2535,2551,2560,2561,2568,2571,2572,2654,2655,2665,2669,2671,2685,2690,2693,2695,2696,2706,2707,2708,2723,2725,2726,2728,2730,2732,2734,2736,2738,2739,2740,2742,2746,2796,2844,2850,2857,2868,2873,2901,2907,2917,2918,2921,2922,2923,2926,2927,2930,2932,2933,2934,2936,2937,2938,2940,2941,2945,2946,2947,2948,2953,2954,2958,2959,2960,2963,2974,2976,2980,2981,2982,2983,2984,2988,2989,2993,2996,2997,2998,3045,3053,3112,3144,3169,3202,3203,3235,3236,3252,3282,3319,3346,3361,3369,3370,3386,3395,3403,3411,3425,3428,3435,3446,3447,3457,3459,3469,3470,3570,3571,3604,3605,3621,3623,3648,3652,3658,3659,3691,3692,3693,3697,3703,3706,3708,3730,3731,3732,3734,3736,3741,3743,3744,3760,3764,3777,3780,3784,3788,3789,3792,3793,3796,3797,3803,3824,3845,3851,3854,3856,3861,3939,3940,3942,3943,3944,3959,3961,3962,3966,3969,3970,3971,3973,3974,3988,3989,4001,4017,4023,4026,4034,4035,4040,4045,4047,4048,4051,4052,4053,4054,4060,4061,4062,4063,4066,4067,4070,4072,4073,4076,4078,4091,4092,4101,4105,4110,4113,4119,4121,4134,4144,4147,4149,4152,4154,4170,4175,4176,4186,4188,4189,4190,4196,4197,4198,4202,4206,4209,4210,4212,4214,4217,4219,4222,4230,4234,4235,4236,4237,4238,4240,4241,4244,4245,4250,4251,4252,4253,4254,4255,4256,4282,4290,4313,4314,4317,4318,4320,4321,4322,4323,4325,4334,4338,4339,4345,4347,4348,4349,4356,4372,4374,4475,4476,4477,4481,4487,4490,4492,4493,4498,4541,4548,4552,4553,4556,4559,4560,4565,4566,4569,4572,4576,4577,4578,4648,4649,4664,4665,4667,4670,4671,4676,4677,4678,4679,4685,4689,4695,4705,4706,4711,4712,4713,4715,4718,4720,4724,4738,4743,4746,4747,4751,4758,4761,4762,4810,4817,4829,4832,4846,4854,4880,4884,4889,4892,4893,4895,4897,5045,5048,5049,5050,5054,5586,5594,5596,5680,5681,5729,5735,5737,5738,5742,5744,5750,5752,5753,5758,5802,5803,5806,5811,5814,5840,5844,5846,5847,5848,5849,5851,5852,5853,5854,5856,5858,5864,5865,5866,5868,5900,5920,5922,5924,6033,6034,6035,6037,6061,6119,6122,6127,6130,6136,6162,6166,6169,6175,6178,6183,6186,6187,6189,6190,6192,6193,6194,6196,6197,6198,6279,6300,6374,6383,6389,6428,6430,6431,6433,6435,6466,6481,6529,6572,6610,7466,7468,8773,8994,9038,9041,9902,10028,10030,10036,10127,10190,10457,10503,10806,10963,10977,10996,10997,10998,11101,11197,11278,11359,11674,11683,11686,11708,11843,11916,11947,11972,11978,12099,12179,12303,12304,12494,12507,12525,12578,12672,15113,15505,15556,15632,15667,15674,15683,18877,18878,19316,21999,22652,23142]]],["Moses'",[16,14,[[1,12,10,0,10,[[66,1,1,0,1],[67,8,6,1,7],[81,1,1,7,8],[83,2,2,8,10]]],[2,1,1,10,11,[[97,1,1,10,11]]],[3,1,1,11,12,[[126,1,1,11,12]]],[5,1,1,12,13,[[187,1,1,12,13]]],[6,1,1,13,14,[[211,1,1,13,14]]]],[1995,2000,2001,2004,2011,2013,2016,2457,2525,2531,2946,4017,5852,6525]]]]},{"k":"H4873","v":[["Moses",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12169]]]]},{"k":"H4874","v":[["+",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5321]]]]},{"k":"H4875","v":[["*",[3,3,[[17,2,2,0,2,[[465,1,1,0,1],[473,1,1,1,2]]],[35,1,1,2,3,[[906,1,1,2,3]]]],[13560,13820,22802]]],["desolation",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22802]]],["waste",[2,2,[[17,2,2,0,2,[[465,1,1,0,1],[473,1,1,1,2]]]],[13560,13820]]]]},{"k":"H4876","v":[["*",[2,2,[[18,2,2,0,2,[[550,1,1,0,1],[551,1,1,1,2]]]],[15038,15051]]],["desolations",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15051]]],["destruction",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15038]]]]},{"k":"H4877","v":[["Meshobab",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10419]]]]},{"k":"H4878","v":[["*",[12,12,[[19,1,1,0,1,[[628,1,1,0,1]]],[23,9,9,1,10,[[746,1,1,1,2],[747,5,5,2,7],[749,1,1,7,8],[752,1,1,8,9],[758,1,1,9,10]]],[27,2,2,10,12,[[872,1,1,10,11],[875,1,1,11,12]]]],[16432,18984,19008,19010,19013,19014,19024,19064,19158,19300,22247,22286]]],["away",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16432]]],["backsliding",[7,7,[[23,5,5,0,5,[[747,4,4,0,4],[752,1,1,4,5]]],[27,2,2,5,7,[[872,1,1,5,6],[875,1,1,6,7]]]],[19008,19010,19013,19014,19158,22247,22286]]],["backslidings",[4,4,[[23,4,4,0,4,[[746,1,1,0,1],[747,1,1,1,2],[749,1,1,2,3],[758,1,1,3,4]]]],[18984,19024,19064,19300]]]]},{"k":"H4879","v":[["error",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13301]]]]},{"k":"H4880","v":[["*",[3,3,[[8,1,1,0,1,[[242,1,1,0,1]]],[25,2,2,1,3,[[828,2,2,1,3]]]],[7368,21127,21150]]],["+",[1,1,[[8,1,1,0,1,[[242,1,1,0,1]]]],[7368]]],["oar",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21150]]],["oars",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21127]]]]},{"k":"H4881","v":[["hedge",[2,2,[[19,1,1,0,1,[[642,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]]],[16826,17744]]]]},{"k":"H4882","v":[["spoil",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18504]]]]},{"k":"H4883","v":[["saw",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17865]]]]},{"k":"H4884","v":[["measure",[4,4,[[2,1,1,0,1,[[108,1,1,0,1]]],[12,1,1,1,2,[[360,1,1,1,2]]],[25,2,2,2,4,[[805,2,2,2,4]]]],[3316,11012,20540,20545]]]]},{"k":"H4885","v":[["*",[17,16,[[17,1,1,0,1,[[443,1,1,0,1]]],[18,1,1,1,2,[[525,1,1,1,2]]],[22,10,9,2,11,[[686,1,1,2,3],[702,3,2,3,5],[710,2,2,5,7],[738,1,1,7,8],[740,1,1,8,9],[743,1,1,9,10],[744,1,1,10,11]]],[23,1,1,11,12,[[793,1,1,11,12]]],[24,2,2,12,14,[[798,1,1,12,13],[801,1,1,13,14]]],[25,1,1,14,15,[[825,1,1,14,15]]],[27,1,1,15,16,[[863,1,1,15,16]]]],[13048,14636,17813,18103,18106,18272,18273,18836,18859,18915,18932,20152,20347,20457,21081,22116]]],["+",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17813]]],["joy",[12,12,[[17,1,1,0,1,[[443,1,1,0,1]]],[18,1,1,1,2,[[525,1,1,1,2]]],[22,6,6,2,8,[[702,1,1,2,3],[710,2,2,3,5],[738,1,1,5,6],[743,1,1,6,7],[744,1,1,7,8]]],[23,1,1,8,9,[[793,1,1,8,9]]],[24,2,2,9,11,[[798,1,1,9,10],[801,1,1,10,11]]],[25,1,1,11,12,[[825,1,1,11,12]]]],[13048,14636,18103,18272,18273,18836,18915,18932,20152,20347,20457,21081]]],["mirth",[3,3,[[22,2,2,0,2,[[702,2,2,0,2]]],[27,1,1,2,3,[[863,1,1,2,3]]]],[18103,18106,22116]]],["rejoiceth",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18859]]]]},{"k":"H4886","v":[["*",[71,67,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,14,12,1,13,[[77,1,1,1,2],[78,4,4,2,6],[79,2,2,6,8],[89,7,5,8,13]]],[2,8,8,13,21,[[91,1,1,13,14],[95,1,1,14,15],[96,2,2,15,17],[97,3,3,17,20],[105,1,1,20,21]]],[3,8,7,21,28,[[119,1,1,21,22],[122,1,1,22,23],[123,5,4,23,27],[151,1,1,27,28]]],[6,2,2,28,30,[[219,2,2,28,30]]],[8,7,7,30,37,[[244,1,1,30,31],[245,1,1,31,32],[250,2,2,32,34],[251,3,3,34,37]]],[9,7,7,37,44,[[268,2,2,37,39],[269,1,1,39,40],[271,2,2,40,42],[278,1,1,42,43],[285,1,1,43,44]]],[10,7,6,44,50,[[291,3,3,44,47],[295,1,1,47,48],[309,3,2,48,50]]],[11,5,5,50,55,[[321,3,3,50,53],[323,1,1,53,54],[335,1,1,54,55]]],[12,3,3,55,58,[[348,1,1,55,56],[351,1,1,56,57],[366,1,1,57,58]]],[13,2,2,58,60,[[388,1,1,58,59],[389,1,1,59,60]]],[18,2,2,60,62,[[522,1,1,60,61],[566,1,1,61,62]]],[22,2,2,62,64,[[699,1,1,62,63],[739,1,1,63,64]]],[23,1,1,64,65,[[766,1,1,64,65]]],[26,1,1,65,66,[[858,1,1,65,66]]],[29,1,1,66,67,[[884,1,1,66,67]]]],[886,2334,2338,2343,2365,2372,2408,2412,2716,2717,2718,2720,2722,2766,2869,2891,2915,2927,2928,2929,3233,3695,3838,3851,3860,3934,3938,4870,6762,6769,7407,7419,7561,7577,7598,7607,7608,8053,8056,8120,8135,8149,8293,8521,8751,8756,8762,8879,9402,9403,9759,9762,9768,9841,10195,10676,10782,11186,11651,11667,14604,15346,18040,18844,19468,22012,22456]]],["+",[13,13,[[1,5,5,0,5,[[79,1,1,0,1],[89,4,4,1,5]]],[2,2,2,5,7,[[97,2,2,5,7]]],[9,3,3,7,10,[[268,1,1,7,8],[271,2,2,8,10]]],[10,2,2,10,12,[[291,1,1,10,11],[309,1,1,11,12]]],[12,1,1,12,13,[[348,1,1,12,13]]]],[2408,2716,2717,2718,2722,2927,2928,8053,8135,8149,8756,9402,10676]]],["anoint",[19,18,[[1,6,6,0,6,[[77,1,1,0,1],[78,2,2,1,3],[79,1,1,3,4],[89,2,2,4,6]]],[2,1,1,6,7,[[105,1,1,6,7]]],[6,2,2,7,9,[[219,2,2,7,9]]],[8,4,4,9,13,[[244,1,1,9,10],[250,1,1,10,11],[251,2,2,11,13]]],[10,3,2,13,15,[[291,1,1,13,14],[309,2,1,14,15]]],[22,1,1,15,16,[[699,1,1,15,16]]],[26,1,1,16,17,[[858,1,1,16,17]]],[29,1,1,17,18,[[884,1,1,17,18]]]],[2334,2343,2372,2412,2720,2722,3233,6762,6769,7407,7561,7598,7607,8751,9403,18040,22012,22456]]],["anointed",[36,35,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,5,5,2,7,[[91,1,1,2,3],[95,1,1,3,4],[96,2,2,4,6],[97,1,1,6,7]]],[3,8,7,7,14,[[119,1,1,7,8],[122,1,1,8,9],[123,5,4,9,13],[151,1,1,13,14]]],[8,3,3,14,17,[[245,1,1,14,15],[250,1,1,15,16],[251,1,1,16,17]]],[9,4,4,17,21,[[268,1,1,17,18],[269,1,1,18,19],[278,1,1,19,20],[285,1,1,20,21]]],[10,2,2,21,23,[[291,1,1,21,22],[295,1,1,22,23]]],[11,5,5,23,28,[[321,3,3,23,26],[323,1,1,26,27],[335,1,1,27,28]]],[12,2,2,28,30,[[351,1,1,28,29],[366,1,1,29,30]]],[13,2,2,30,32,[[388,1,1,30,31],[389,1,1,31,32]]],[18,2,2,32,34,[[522,1,1,32,33],[566,1,1,33,34]]],[22,1,1,34,35,[[739,1,1,34,35]]]],[2338,2365,2766,2869,2891,2915,2929,3695,3838,3851,3860,3934,3938,4870,7419,7577,7608,8056,8120,8293,8521,8762,8879,9759,9762,9768,9841,10195,10782,11186,11651,11667,14604,15346,18844]]],["anointedst",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[886]]],["anointing",[1,1,[[1,1,1,0,1,[[89,1,1,0,1]]]],[2722]]],["painted",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19468]]]]},{"k":"H4887","v":[["oil",[2,2,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]]],[12160,12195]]]]},{"k":"H4888","v":[["*",[24,22,[[1,13,12,0,12,[[74,1,1,0,1],[78,2,2,1,3],[79,3,2,3,5],[80,1,1,5,6],[84,3,3,6,9],[86,1,1,9,10],[88,1,1,10,11],[89,1,1,11,12]]],[2,9,8,12,20,[[96,2,1,12,13],[97,4,4,13,17],[99,1,1,17,18],[110,2,2,18,20]]],[3,2,2,20,22,[[120,1,1,20,21],[134,1,1,21,22]]]],[2201,2343,2357,2407,2413,2431,2539,2546,2559,2633,2702,2716,2914,2919,2927,2929,2947,2984,3355,3357,3759,4265]]],["+",[3,3,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,2,2,1,3,[[97,2,2,1,3]]]],[2357,2929,2947]]],["anointing",[20,19,[[1,11,11,0,11,[[74,1,1,0,1],[78,1,1,1,2],[79,2,2,2,4],[80,1,1,4,5],[84,3,3,5,8],[86,1,1,8,9],[88,1,1,9,10],[89,1,1,10,11]]],[2,7,6,11,17,[[96,2,1,11,12],[97,2,2,12,14],[99,1,1,14,15],[110,2,2,15,17]]],[3,2,2,17,19,[[120,1,1,17,18],[134,1,1,18,19]]]],[2201,2343,2407,2413,2431,2539,2546,2559,2633,2702,2716,2914,2919,2927,2984,3355,3357,3759,4265]]],["ointment",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2407]]]]},{"k":"H4889","v":[["*",[12,12,[[1,1,1,0,1,[[61,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]],[13,2,2,2,4,[[386,1,1,2,3],[388,1,1,3,4]]],[19,1,1,4,5,[[645,1,1,4,5]]],[23,2,2,5,7,[[749,1,1,5,6],[795,1,1,6,7]]],[25,4,4,7,11,[[806,1,1,7,8],[810,1,1,8,9],[822,1,1,9,10],[826,1,1,10,11]]],[26,1,1,11,12,[[859,1,1,11,12]]]],[1829,10178,11610,11648,16910,19084,20237,20562,20628,20975,21098,22023]]],["corruption",[2,2,[[11,1,1,0,1,[[335,1,1,0,1]]],[26,1,1,1,2,[[859,1,1,1,2]]]],[10178,22023]]],["destroy",[4,4,[[1,1,1,0,1,[[61,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]],[25,2,2,2,4,[[822,1,1,2,3],[826,1,1,3,4]]]],[1829,11610,20975,21098]]],["destroying",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20237]]],["destruction",[2,2,[[13,1,1,0,1,[[388,1,1,0,1]]],[25,1,1,1,2,[[806,1,1,1,2]]]],[11648,20562]]],["trap",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19084]]],["utterly",[1,1,[[25,1,1,0,1,[[810,1,1,0,1]]]],[20628]]],["waster",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16910]]]]},{"k":"H4890","v":[["scorn",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22741]]]]},{"k":"H4891","v":[["morning",[1,1,[[18,1,1,0,1,[[587,1,1,0,1]]]],[15789]]]]},{"k":"H4892","v":[["destroying",[1,1,[[25,1,1,0,1,[[810,1,1,0,1]]]],[20623]]]]},{"k":"H4893","v":[["*",[2,2,[[2,1,1,0,1,[[111,1,1,0,1]]],[22,1,1,1,2,[[730,1,1,1,2]]]],[3394,18710]]],["corruption",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3394]]],["marred",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18710]]]]},{"k":"H4894","v":[["*",[3,3,[[25,3,3,0,3,[[827,2,2,0,2],[848,1,1,2,3]]]],[21105,21114,21689]]],["+",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21114]]],["forth",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21689]]],["spreading",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21105]]]]},{"k":"H4895","v":[["hatred",[2,2,[[27,2,2,0,2,[[870,2,2,0,2]]]],[22215,22216]]]]},{"k":"H4896","v":[["dominion",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13826]]]]},{"k":"H4897","v":[["silk",[2,2,[[25,2,2,0,2,[[817,2,2,0,2]]]],[20772,20775]]]]},{"k":"H4898","v":[["Meshezabeel",[3,3,[[15,3,3,0,3,[[415,1,1,0,1],[422,1,1,1,2],[423,1,1,2,3]]]],[12331,12570,12612]]]]},{"k":"H4899","v":[["*",[39,38,[[2,4,4,0,4,[[93,3,3,0,3],[95,1,1,3,4]]],[8,12,11,4,15,[[237,2,2,4,6],[247,2,2,6,8],[251,1,1,8,9],[259,3,2,9,11],[261,4,4,11,15]]],[9,6,6,15,21,[[267,3,3,15,18],[285,1,1,18,19],[288,1,1,19,20],[289,1,1,20,21]]],[12,1,1,21,22,[[353,1,1,21,22]]],[13,1,1,22,23,[[372,1,1,22,23]]],[18,10,10,23,33,[[479,1,1,23,24],[495,1,1,24,25],[497,1,1,25,26],[505,1,1,26,27],[561,1,1,27,28],[566,2,2,28,30],[582,1,1,30,31],[609,2,2,31,33]]],[22,1,1,33,34,[[723,1,1,33,34]]],[24,1,1,34,35,[[800,1,1,34,35]]],[26,2,2,35,37,[[858,2,2,35,37]]],[34,1,1,37,38,[[905,1,1,37,38]]]],[2798,2800,2811,2871,7250,7275,7463,7465,7601,7845,7849,7914,7916,7921,7928,8036,8038,8043,8532,8653,8654,10842,11324,13947,14168,14188,14307,15268,15364,15377,15621,16161,16168,18562,20440,22013,22014,22781]]],["Messiah",[2,2,[[26,2,2,0,2,[[858,2,2,0,2]]]],[22013,22014]]],["anointed",[37,36,[[2,4,4,0,4,[[93,3,3,0,3],[95,1,1,3,4]]],[8,12,11,4,15,[[237,2,2,4,6],[247,2,2,6,8],[251,1,1,8,9],[259,3,2,9,11],[261,4,4,11,15]]],[9,6,6,15,21,[[267,3,3,15,18],[285,1,1,18,19],[288,1,1,19,20],[289,1,1,20,21]]],[12,1,1,21,22,[[353,1,1,21,22]]],[13,1,1,22,23,[[372,1,1,22,23]]],[18,10,10,23,33,[[479,1,1,23,24],[495,1,1,24,25],[497,1,1,25,26],[505,1,1,26,27],[561,1,1,27,28],[566,2,2,28,30],[582,1,1,30,31],[609,2,2,31,33]]],[22,1,1,33,34,[[723,1,1,33,34]]],[24,1,1,34,35,[[800,1,1,34,35]]],[34,1,1,35,36,[[905,1,1,35,36]]]],[2798,2800,2811,2871,7250,7275,7463,7465,7601,7845,7849,7914,7916,7921,7928,8036,8038,8043,8532,8653,8654,10842,11324,13947,14168,14188,14307,15268,15364,15377,15621,16161,16168,18562,20440,22781]]]]},{"k":"H4900","v":[["*",[37,36,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,2,2,1,3,[[61,1,1,1,2],[68,1,1,2,3]]],[4,1,1,3,4,[[173,1,1,3,4]]],[5,2,1,4,5,[[192,2,1,4,5]]],[6,4,4,5,9,[[214,2,2,5,7],[215,1,1,7,8],[230,1,1,8,9]]],[10,1,1,9,10,[[312,1,1,9,10]]],[13,1,1,10,11,[[384,1,1,10,11]]],[15,1,1,11,12,[[421,1,1,11,12]]],[17,3,3,12,15,[[456,1,1,12,13],[459,1,1,13,14],[476,1,1,14,15]]],[18,5,5,15,20,[[487,1,1,15,16],[505,1,1,16,17],[513,1,1,17,18],[562,1,1,18,19],[586,1,1,19,20]]],[19,1,1,20,21,[[640,1,1,20,21]]],[20,1,1,21,22,[[660,1,1,21,22]]],[21,1,1,22,23,[[671,1,1,22,23]]],[22,5,5,23,28,[[683,1,1,23,24],[691,1,1,24,25],[696,2,2,25,27],[744,1,1,27,28]]],[23,2,2,28,30,[[775,1,1,28,29],[782,1,1,29,30]]],[25,3,3,30,33,[[813,2,2,30,32],[833,1,1,32,33]]],[27,2,2,33,35,[[868,1,1,33,34],[872,1,1,34,35]]],[29,1,1,35,36,[[887,1,1,35,36]]]],[1111,1837,2039,5450,5954,6605,6606,6637,7091,9514,11575,12541,13388,13458,13889,14050,14302,14448,15276,15767,16759,17336,17541,17757,17928,17999,18004,18941,19694,19908,20705,20708,21268,22183,22244,22508]]],["+",[3,3,[[15,1,1,0,1,[[421,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]],[23,1,1,2,3,[[782,1,1,2,3]]]],[12541,17336,19908]]],["Draw",[2,2,[[18,1,1,0,1,[[505,1,1,0,1]]],[21,1,1,1,2,[[671,1,1,1,2]]]],[14302,17541]]],["along",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7091]]],["blast",[1,1,[[5,1,1,0,1,[[192,1,1,0,1]]]],[5954]]],["continue",[1,1,[[18,1,1,0,1,[[513,1,1,0,1]]]],[14448]]],["deferred",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16759]]],["draw",[6,6,[[6,2,2,0,2,[[214,2,2,0,2]]],[17,1,1,2,3,[[456,1,1,2,3]]],[22,2,2,3,5,[[683,1,1,3,4],[744,1,1,4,5]]],[25,1,1,5,6,[[833,1,1,5,6]]]],[6605,6606,13388,17757,18941,21268]]],["draweth",[2,2,[[17,1,1,0,1,[[459,1,1,0,1]]],[18,1,1,1,2,[[487,1,1,1,2]]]],[13458,14050]]],["drawn",[2,2,[[4,1,1,0,1,[[173,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[5450,19694]]],["drew",[4,4,[[0,1,1,0,1,[[36,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]],[13,1,1,2,3,[[384,1,1,2,3]]],[27,1,1,3,4,[[872,1,1,3,4]]]],[1111,9514,11575,22244]]],["extend",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15767]]],["handle",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6637]]],["long",[2,2,[[1,1,1,0,1,[[68,1,1,0,1]]],[5,1,1,1,2,[[192,1,1,1,2]]]],[2039,5954]]],["out",[4,4,[[1,1,1,0,1,[[61,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[18,1,1,2,3,[[562,1,1,2,3]]],[27,1,1,3,4,[[868,1,1,3,4]]]],[1837,13889,15276,22183]]],["prolonged",[3,3,[[22,1,1,0,1,[[691,1,1,0,1]]],[25,2,2,1,3,[[813,2,2,1,3]]]],[17928,20705,20708]]],["scattered",[2,2,[[22,2,2,0,2,[[696,2,2,0,2]]]],[17999,18004]]],["soweth",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22508]]]]},{"k":"H4901","v":[["*",[2,2,[[17,1,1,0,1,[[463,1,1,0,1]]],[18,1,1,1,2,[[603,1,1,1,2]]]],[13522,16121]]],["precious",[1,1,[[18,1,1,0,1,[[603,1,1,0,1]]]],[16121]]],["price",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13522]]]]},{"k":"H4902","v":[["*",[9,9,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,2,2,1,3,[[338,2,2,1,3]]],[18,1,1,3,4,[[597,1,1,3,4]]],[25,5,5,4,9,[[828,1,1,4,5],[833,1,1,5,6],[839,2,2,6,8],[840,1,1,8,9]]]],[236,10257,10269,16079,21134,21274,21427,21428,21449]]],["Mesech",[1,1,[[18,1,1,0,1,[[597,1,1,0,1]]]],[16079]]],["Meshech",[8,8,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,2,2,1,3,[[338,2,2,1,3]]],[25,5,5,3,8,[[828,1,1,3,4],[833,1,1,4,5],[839,2,2,5,7],[840,1,1,7,8]]]],[236,10257,10269,21134,21274,21427,21428,21449]]]]},{"k":"H4903","v":[["bed",[6,6,[[26,6,6,0,6,[[851,2,2,0,2],[853,3,3,2,5],[856,1,1,5,6]]]],[21786,21787,21842,21847,21850,21934]]]]},{"k":"H4904","v":[["*",[46,44,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[57,1,1,1,2],[70,1,1,2,3]]],[2,9,8,3,11,[[104,7,6,3,9],[107,1,1,9,10],[109,1,1,10,11]]],[3,3,3,11,14,[[147,3,3,11,14]]],[6,2,2,14,16,[[231,2,2,14,16]]],[9,7,7,16,23,[[270,3,3,16,19],[277,2,2,19,21],[279,1,1,21,22],[283,1,1,22,23]]],[10,1,1,23,24,[[291,1,1,23,24]]],[11,1,1,24,25,[[318,1,1,24,25]]],[13,1,1,25,26,[[382,1,1,25,26]]],[17,3,3,26,29,[[442,1,1,26,27],[468,2,2,27,29]]],[18,4,4,29,33,[[481,1,1,29,30],[513,1,1,30,31],[518,1,1,31,32],[626,1,1,32,33]]],[19,2,2,33,35,[[634,1,1,33,34],[649,1,1,34,35]]],[20,1,1,35,36,[[668,1,1,35,36]]],[21,1,1,36,37,[[673,1,1,36,37]]],[22,4,3,37,40,[[735,4,3,37,40]]],[25,2,2,40,42,[[824,1,1,40,41],[833,1,1,41,42]]],[27,1,1,42,43,[[868,1,1,42,43]]],[32,1,1,43,44,[[894,1,1,43,44]]]],[1477,1713,2095,3172,3173,3189,3191,3192,3194,3273,3331,4681,4682,4699,7113,7114,8125,8127,8131,8261,8272,8322,8477,8764,9686,11523,13021,13665,13669,13969,14442,14545,16390,16592,17042,17513,17572,18767,18772,18773,21024,21273,22192,22596]]],["+",[5,5,[[1,1,1,0,1,[[57,1,1,0,1]]],[6,1,1,1,2,[[231,1,1,1,2]]],[9,1,1,2,3,[[270,1,1,2,3]]],[11,1,1,3,4,[[318,1,1,3,4]]],[20,1,1,4,5,[[668,1,1,4,5]]]],[1713,7113,8127,9686,17513]]],["bed",[29,27,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,1,1,1,2,[[70,1,1,1,2]]],[2,7,6,2,8,[[104,7,6,2,8]]],[9,5,5,8,13,[[270,2,2,8,10],[277,2,2,10,12],[279,1,1,12,13]]],[10,1,1,13,14,[[291,1,1,13,14]]],[13,1,1,14,15,[[382,1,1,14,15]]],[17,2,2,15,17,[[468,2,2,15,17]]],[18,3,3,17,20,[[481,1,1,17,18],[513,1,1,18,19],[518,1,1,19,20]]],[19,2,2,20,22,[[634,1,1,20,21],[649,1,1,21,22]]],[21,1,1,22,23,[[673,1,1,22,23]]],[22,3,2,23,25,[[735,3,2,23,25]]],[25,2,2,25,27,[[824,1,1,25,26],[833,1,1,26,27]]]],[1477,2095,3172,3173,3189,3191,3192,3194,8125,8131,8261,8272,8322,8764,11523,13665,13669,13969,14442,14545,16592,17042,17572,18772,18773,21024,21273]]],["beds",[5,5,[[9,1,1,0,1,[[283,1,1,0,1]]],[18,1,1,1,2,[[626,1,1,1,2]]],[22,1,1,2,3,[[735,1,1,2,3]]],[27,1,1,3,4,[[868,1,1,3,4]]],[32,1,1,4,5,[[894,1,1,4,5]]]],[8477,16390,18767,22192,22596]]],["couch",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13021]]],["lieth",[1,1,[[2,1,1,0,1,[[109,1,1,0,1]]]],[3331]]],["lying",[3,3,[[3,2,2,0,2,[[147,2,2,0,2]]],[6,1,1,2,3,[[231,1,1,2,3]]]],[4681,4682,7114]]],["with",[2,2,[[2,1,1,0,1,[[107,1,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]]],[3273,4699]]]]},{"k":"H4905","v":[]},{"k":"H4906","v":[["*",[6,6,[[2,1,1,0,1,[[115,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]],[18,1,1,2,3,[[550,1,1,2,3]]],[19,2,2,3,5,[[645,1,1,3,4],[652,1,1,4,5]]],[25,1,1,5,6,[[809,1,1,5,6]]]],[3525,4812,15027,16912,17124,20616]]],["conceit",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16912]]],["image",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3525]]],["imagery",[1,1,[[25,1,1,0,1,[[809,1,1,0,1]]]],[20616]]],["pictures",[2,2,[[3,1,1,0,1,[[149,1,1,0,1]]],[19,1,1,1,2,[[652,1,1,1,2]]]],[4812,17124]]],["wish",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15027]]]]},{"k":"H4907","v":[["habitation",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12188]]]]},{"k":"H4908","v":[["*",[139,129,[[1,58,55,0,55,[[74,1,1,0,1],[75,16,15,1,16],[76,2,2,16,18],[84,3,3,18,21],[85,12,11,21,32],[87,4,3,32,35],[88,3,3,35,38],[89,17,17,38,55]]],[2,4,4,55,59,[[97,1,1,55,56],[104,1,1,56,57],[106,1,1,57,58],[115,1,1,58,59]]],[3,42,35,59,94,[[117,7,3,59,62],[119,9,9,62,71],[120,4,4,71,75],[121,1,1,75,76],[123,2,2,76,78],[125,7,5,78,83],[126,4,3,83,86],[132,3,3,86,89],[133,1,1,89,90],[135,1,1,90,91],[140,1,1,91,92],[147,2,2,92,94]]],[5,2,2,94,96,[[208,2,2,94,96]]],[9,1,1,96,97,[[273,1,1,96,97]]],[12,6,6,97,103,[[343,2,2,97,99],[353,1,1,99,100],[354,1,1,100,101],[358,1,1,101,102],[360,1,1,102,103]]],[13,2,2,103,105,[[367,1,1,103,104],[395,1,1,104,105]]],[17,3,3,105,108,[[453,1,1,105,106],[456,1,1,106,107],[474,1,1,107,108]]],[18,11,11,108,119,[[503,1,1,108,109],[520,1,1,109,110],[523,1,1,110,111],[526,1,1,111,112],[551,1,1,112,113],[555,2,2,113,115],[561,1,1,115,116],[564,1,1,116,117],[609,2,2,117,119]]],[21,1,1,119,120,[[671,1,1,119,120]]],[22,3,3,120,123,[[700,1,1,120,121],[710,1,1,121,122],[732,1,1,122,123]]],[23,3,3,123,126,[[753,1,1,123,124],[774,1,1,124,125],[795,1,1,125,126]]],[25,2,2,126,128,[[826,1,1,126,127],[838,1,1,127,128]]],[34,1,1,128,129,[[903,1,1,128,129]]]],[2204,2236,2241,2242,2247,2248,2250,2252,2253,2255,2257,2258,2261,2262,2265,2270,2281,2291,2542,2546,2549,2574,2579,2580,2586,2588,2589,2591,2593,2594,2597,2598,2653,2654,2664,2696,2697,2704,2709,2712,2713,2716,2724,2725,2726,2728,2729,2731,2735,2736,2740,2741,2742,2743,2745,2927,3199,3239,3535,3654,3655,3657,3699,3700,3715,3717,3718,3721,3727,3728,3730,3759,3768,3769,3774,3809,3851,3853,3980,3983,3984,3985,3987,3999,4005,4009,4203,4218,4221,4257,4302,4451,4694,4711,6445,6455,8186,10486,10502,10859,10868,10963,11009,11199,11797,13297,13383,13840,14281,14569,14618,14659,15055,15141,15173,15260,15303,16156,16158,17545,18068,18277,18725,19194,19685,20242,21087,21424,22737]]],["+",[3,3,[[1,1,1,0,1,[[84,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]],[13,1,1,2,3,[[395,1,1,2,3]]]],[2542,10868,11797]]],["dwelleth",[1,1,[[18,1,1,0,1,[[503,1,1,0,1]]]],[14281]]],["dwelling",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13383]]],["dwellingplaces",[3,3,[[23,2,2,0,2,[[774,1,1,0,1],[795,1,1,1,2]]],[34,1,1,2,3,[[903,1,1,2,3]]]],[19685,20242,22737]]],["dwellings",[6,6,[[17,2,2,0,2,[[453,1,1,0,1],[474,1,1,1,2]]],[18,1,1,2,3,[[564,1,1,2,3]]],[22,1,1,3,4,[[710,1,1,3,4]]],[23,1,1,4,5,[[753,1,1,4,5]]],[25,1,1,5,6,[[826,1,1,5,6]]]],[13297,13840,15303,18277,19194,21087]]],["habitation",[2,2,[[18,1,1,0,1,[[609,1,1,0,1]]],[22,1,1,1,2,[[700,1,1,1,2]]]],[16156,18068]]],["habitations",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[22,1,1,1,2,[[732,1,1,1,2]]]],[15141,18725]]],["place",[2,2,[[12,1,1,0,1,[[343,1,1,0,1]]],[18,1,1,1,2,[[551,1,1,1,2]]]],[10486,15055]]],["places",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14659]]],["tabernacle",[112,102,[[1,57,54,0,54,[[74,1,1,0,1],[75,16,15,1,16],[76,2,2,16,18],[84,2,2,18,20],[85,12,11,20,31],[87,4,3,31,34],[88,3,3,34,37],[89,17,17,37,54]]],[2,4,4,54,58,[[97,1,1,54,55],[104,1,1,55,56],[106,1,1,56,57],[115,1,1,57,58]]],[3,41,34,58,92,[[117,7,3,58,61],[119,9,9,61,70],[120,4,4,70,74],[121,1,1,74,75],[123,2,2,75,77],[125,7,5,77,82],[126,4,3,82,85],[132,3,3,85,88],[133,1,1,88,89],[135,1,1,89,90],[147,2,2,90,92]]],[5,2,2,92,94,[[208,2,2,92,94]]],[9,1,1,94,95,[[273,1,1,94,95]]],[12,4,4,95,99,[[343,1,1,95,96],[353,1,1,96,97],[358,1,1,97,98],[360,1,1,98,99]]],[13,1,1,99,100,[[367,1,1,99,100]]],[18,1,1,100,101,[[555,1,1,100,101]]],[25,1,1,101,102,[[838,1,1,101,102]]]],[2204,2236,2241,2242,2247,2248,2250,2252,2253,2255,2257,2258,2261,2262,2265,2270,2281,2291,2546,2549,2574,2579,2580,2586,2588,2589,2591,2593,2594,2597,2598,2653,2654,2664,2696,2697,2704,2709,2712,2713,2716,2724,2725,2726,2728,2729,2731,2735,2736,2740,2741,2742,2743,2745,2927,3199,3239,3535,3654,3655,3657,3699,3700,3715,3717,3718,3721,3727,3728,3730,3759,3768,3769,3774,3809,3851,3853,3980,3983,3984,3985,3987,3999,4005,4009,4203,4218,4221,4257,4302,4694,4711,6445,6455,8186,10502,10859,10963,11009,11199,15173,21424]]],["tabernacles",[5,5,[[3,1,1,0,1,[[140,1,1,0,1]]],[18,4,4,1,5,[[520,1,1,1,2],[523,1,1,2,3],[561,1,1,3,4],[609,1,1,4,5]]]],[4451,14569,14618,15260,16158]]],["tents",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17545]]]]},{"k":"H4909","v":[["*",[4,4,[[0,3,3,0,3,[[28,1,1,0,1],[30,2,2,1,3]]],[7,1,1,3,4,[[233,1,1,3,4]]]],[810,880,914,7161]]],["reward",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7161]]],["wages",[3,3,[[0,3,3,0,3,[[28,1,1,0,1],[30,2,2,1,3]]]],[810,880,914]]]]},{"k":"H4910","v":[["*",[81,74,[[0,8,7,0,7,[[0,1,1,0,1],[2,1,1,1,2],[3,1,1,2,3],[23,1,1,3,4],[36,2,1,4,5],[44,2,2,5,7]]],[1,1,1,7,8,[[70,1,1,7,8]]],[4,2,1,8,9,[[167,2,1,8,9]]],[5,2,2,9,11,[[198,2,2,9,11]]],[6,8,5,11,16,[[218,4,2,11,13],[219,2,1,13,14],[224,1,1,14,15],[225,1,1,15,16]]],[9,2,1,16,17,[[289,2,1,16,17]]],[10,1,1,17,18,[[294,1,1,17,18]]],[12,1,1,18,19,[[366,1,1,18,19]]],[13,4,4,19,23,[[373,1,1,19,20],[375,1,1,20,21],[386,1,1,21,22],[389,1,1,22,23]]],[15,1,1,23,24,[[421,1,1,23,24]]],[17,1,1,24,25,[[460,1,1,24,25]]],[18,10,10,25,35,[[485,1,1,25,26],[496,1,1,26,27],[499,1,1,27,28],[536,1,1,28,29],[543,1,1,29,30],[566,1,1,30,31],[580,1,1,31,32],[582,2,2,32,34],[583,1,1,34,35]]],[19,11,11,35,46,[[633,1,1,35,36],[639,1,1,36,37],[643,1,1,37,38],[644,1,1,38,39],[646,1,1,39,40],[649,1,1,40,41],[650,1,1,41,42],[655,1,1,42,43],[656,3,3,43,46]]],[20,2,2,46,48,[[667,1,1,46,47],[668,1,1,47,48]]],[22,10,10,48,58,[[681,2,2,48,50],[692,1,1,50,51],[694,1,1,51,52],[697,1,1,52,53],[706,1,1,53,54],[718,1,1,54,55],[727,1,1,55,56],[730,1,1,56,57],[741,1,1,57,58]]],[23,5,4,58,62,[[766,1,1,58,59],[774,1,1,59,60],[777,1,1,60,61],[795,2,1,61,62]]],[24,1,1,62,63,[[801,1,1,62,63]]],[25,2,2,63,65,[[820,2,2,63,65]]],[26,5,5,65,70,[[860,5,5,65,70]]],[28,1,1,70,71,[[877,1,1,70,71]]],[32,1,1,71,72,[[897,1,1,71,72]]],[34,1,1,72,73,[[903,1,1,72,73]]],[37,1,1,73,74,[[916,1,1,73,74]]]],[17,71,86,593,1091,1366,1384,2085,5325,6132,6135,6741,6742,6756,6913,6940,8656,8865,11176,11342,11390,11593,11676,12548,13463,14018,14181,14232,14803,14880,15335,15568,15626,15627,15692,16547,16743,16872,16875,16935,17022,17045,17211,17226,17236,17250,17492,17497,17711,17719,17933,17970,18008,18178,18430,18643,18701,18885,19484,19688,19801,20258,20450,20892,20895,22039,22040,22041,22075,22079,22328,22635,22745,22960]]],["+",[3,2,[[0,2,1,0,1,[[36,2,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[1091,11390]]],["Dominion",[1,1,[[17,1,1,0,1,[[460,1,1,0,1]]]],[13463]]],["Rule",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6741]]],["dominion",[5,5,[[6,1,1,0,1,[[224,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[18,2,2,2,4,[[485,1,1,2,3],[496,1,1,3,4]]],[26,1,1,4,5,[[860,1,1,4,5]]]],[6913,12548,14018,14181,22041]]],["governor",[3,3,[[0,1,1,0,1,[[44,1,1,0,1]]],[18,1,1,1,2,[[499,1,1,1,2]]],[23,1,1,2,3,[[774,1,1,2,3]]]],[1384,14232,19688]]],["governors",[1,1,[[13,1,1,0,1,[[389,1,1,0,1]]]],[11676]]],["over",[3,3,[[9,1,1,0,1,[[289,1,1,0,1]]],[22,1,1,1,2,[[730,1,1,1,2]]],[24,1,1,2,3,[[801,1,1,2,3]]]],[8656,18701,20450]]],["power",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[2085,22079]]],["reign",[4,2,[[4,2,1,0,1,[[167,2,1,0,1]]],[6,2,1,1,2,[[219,2,1,1,2]]]],[5325,6756]]],["reigned",[2,2,[[5,1,1,0,1,[[198,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]]],[6135,8865]]],["reignest",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11176]]],["rule",[22,20,[[0,3,3,0,3,[[0,1,1,0,1],[2,1,1,1,2],[3,1,1,2,3]]],[6,3,1,3,4,[[218,3,1,3,4]]],[19,4,4,4,8,[[639,1,1,4,5],[644,1,1,5,6],[646,1,1,6,7],[656,1,1,7,8]]],[22,6,6,8,14,[[681,2,2,8,10],[697,1,1,10,11],[706,1,1,11,12],[718,1,1,12,13],[741,1,1,13,14]]],[25,2,2,14,16,[[820,2,2,14,16]]],[26,2,2,16,18,[[860,2,2,16,18]]],[28,1,1,18,19,[[877,1,1,18,19]]],[37,1,1,19,20,[[916,1,1,19,20]]]],[17,71,86,6742,16743,16875,16935,17226,17711,17719,18008,18178,18430,18885,20892,20895,22039,22075,22328,22960]]],["ruled",[4,4,[[0,1,1,0,1,[[23,1,1,0,1]]],[5,1,1,1,2,[[198,1,1,1,2]]],[18,1,1,2,3,[[583,1,1,2,3]]],[26,1,1,3,4,[[860,1,1,3,4]]]],[593,6132,15692,22040]]],["ruler",[14,13,[[0,1,1,0,1,[[44,1,1,0,1]]],[13,1,1,1,2,[[373,1,1,1,2]]],[18,2,2,2,4,[[582,2,2,2,4]]],[19,4,4,4,8,[[633,1,1,4,5],[650,1,1,5,6],[655,1,1,6,7],[656,1,1,7,8]]],[20,1,1,8,9,[[668,1,1,8,9]]],[22,1,1,9,10,[[694,1,1,9,10]]],[23,2,1,10,11,[[795,2,1,10,11]]],[32,1,1,11,12,[[897,1,1,11,12]]],[34,1,1,12,13,[[903,1,1,12,13]]]],[1366,11342,15626,15627,16547,17045,17211,17236,17497,17970,20258,22635,22745]]],["ruler's",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17250]]],["rulers",[4,4,[[6,1,1,0,1,[[225,1,1,0,1]]],[22,2,2,1,3,[[692,1,1,1,2],[727,1,1,2,3]]],[23,1,1,3,4,[[777,1,1,3,4]]]],[6940,17933,18643,19801]]],["rulest",[2,2,[[13,1,1,0,1,[[386,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]]],[11593,15335]]],["ruleth",[6,6,[[18,3,3,0,3,[[536,1,1,0,1],[543,1,1,1,2],[580,1,1,2,3]]],[19,2,2,3,5,[[643,1,1,3,4],[649,1,1,4,5]]],[20,1,1,5,6,[[667,1,1,5,6]]]],[14803,14880,15568,16872,17022,17492]]],["ruling",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[23,1,1,1,2,[[766,1,1,1,2]]]],[8656,19484]]]]},{"k":"H4911","v":[["*",[16,15,[[3,1,1,0,1,[[137,1,1,0,1]]],[17,1,1,1,2,[[465,1,1,1,2]]],[18,4,4,2,6,[[505,1,1,2,3],[526,2,2,3,5],[620,1,1,5,6]]],[22,2,2,6,8,[[692,1,1,6,7],[724,1,1,7,8]]],[25,8,7,8,15,[[813,1,1,8,9],[817,2,1,9,10],[818,1,1,10,11],[819,2,2,11,13],[821,1,1,13,14],[825,1,1,14,15]]]],[4367,13576,14300,14660,14668,16300,17938,18591,20703,20806,20827,20851,20852,20944,21059]]],["+",[2,2,[[18,1,1,0,1,[[505,1,1,0,1]]],[25,1,1,1,2,[[813,1,1,1,2]]]],[14300,20703]]],["become",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13576]]],["compare",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18591]]],["like",[4,4,[[18,3,3,0,3,[[526,2,2,0,2],[620,1,1,2,3]]],[22,1,1,3,4,[[692,1,1,3,4]]]],[14660,14668,16300,17938]]],["proverb",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20806]]],["proverbs",[2,2,[[3,1,1,0,1,[[137,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[4367,20806]]],["speak",[2,2,[[25,2,2,0,2,[[818,1,1,0,1],[821,1,1,1,2]]]],[20827,20944]]],["use",[2,2,[[25,2,2,0,2,[[819,2,2,0,2]]]],[20851,20852]]],["utter",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21059]]]]},{"k":"H4912","v":[["*",[39,39,[[3,7,7,0,7,[[139,2,2,0,2],[140,5,5,2,7]]],[4,1,1,7,8,[[180,1,1,7,8]]],[8,2,2,8,10,[[245,1,1,8,9],[259,1,1,9,10]]],[10,2,2,10,12,[[294,1,1,10,11],[299,1,1,11,12]]],[13,1,1,12,13,[[373,1,1,12,13]]],[17,3,3,13,16,[[448,1,1,13,14],[462,1,1,14,15],[464,1,1,15,16]]],[18,4,4,16,20,[[521,1,1,16,17],[526,1,1,17,18],[546,1,1,18,19],[555,1,1,19,20]]],[19,6,6,20,26,[[628,2,2,20,22],[637,1,1,22,23],[652,1,1,23,24],[653,2,2,24,26]]],[20,1,1,26,27,[[670,1,1,26,27]]],[22,1,1,27,28,[[692,1,1,27,28]]],[23,1,1,28,29,[[768,1,1,28,29]]],[25,8,8,29,37,[[813,2,2,29,31],[815,1,1,31,32],[818,1,1,32,33],[819,2,2,33,35],[821,1,1,35,36],[825,1,1,36,37]]],[32,1,1,37,38,[[894,1,1,37,38]]],[34,1,1,38,39,[[904,1,1,38,39]]]],[4423,4434,4449,4461,4466,4467,4469,5648,7430,7852,8876,9058,11344,13165,13482,13533,14585,14652,14946,15115,16401,16406,16657,17114,17148,17150,17532,17932,19533,20702,20703,20739,20827,20851,20852,20944,21059,22599,22754]]],["+",[1,1,[[25,1,1,0,1,[[813,1,1,0,1]]]],[20703]]],["byword",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14585]]],["like",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13165]]],["parable",[17,17,[[3,7,7,0,7,[[139,2,2,0,2],[140,5,5,2,7]]],[17,2,2,7,9,[[462,1,1,7,8],[464,1,1,8,9]]],[18,2,2,9,11,[[526,1,1,9,10],[555,1,1,10,11]]],[19,2,2,11,13,[[653,2,2,11,13]]],[25,2,2,13,15,[[818,1,1,13,14],[825,1,1,14,15]]],[32,1,1,15,16,[[894,1,1,15,16]]],[34,1,1,16,17,[[904,1,1,16,17]]]],[4423,4434,4449,4461,4466,4467,4469,13482,13533,14652,15115,17148,17150,20827,21059,22599,22754]]],["parables",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20944]]],["proverb",[13,13,[[4,1,1,0,1,[[180,1,1,0,1]]],[8,2,2,1,3,[[245,1,1,1,2],[259,1,1,2,3]]],[10,1,1,3,4,[[299,1,1,3,4]]],[13,1,1,4,5,[[373,1,1,4,5]]],[18,1,1,5,6,[[546,1,1,5,6]]],[19,1,1,6,7,[[628,1,1,6,7]]],[22,1,1,7,8,[[692,1,1,7,8]]],[23,1,1,8,9,[[768,1,1,8,9]]],[25,4,4,9,13,[[813,1,1,9,10],[815,1,1,10,11],[819,2,2,11,13]]]],[5648,7430,7852,9058,11344,14946,16406,17932,19533,20702,20739,20851,20852]]],["proverbs",[5,5,[[10,1,1,0,1,[[294,1,1,0,1]]],[19,3,3,1,4,[[628,1,1,1,2],[637,1,1,2,3],[652,1,1,3,4]]],[20,1,1,4,5,[[670,1,1,4,5]]]],[8876,16401,16657,17114,17532]]]]},{"k":"H4913","v":[["Mashal",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10528]]]]},{"k":"H4914","v":[["byword",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13266]]]]},{"k":"H4915","v":[["*",[3,3,[[17,1,1,0,1,[[476,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]],[37,1,1,2,3,[[919,1,1,2,3]]]],[13921,22040,23009]]],["dominion",[2,2,[[26,1,1,0,1,[[860,1,1,0,1]]],[37,1,1,1,2,[[919,1,1,1,2]]]],[22040,23009]]],["like",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13921]]]]},{"k":"H4916","v":[["*",[10,10,[[4,6,6,0,6,[[164,2,2,0,2],[167,1,1,2,3],[175,1,1,3,4],[180,2,2,4,6]]],[16,2,2,6,8,[[434,2,2,6,8]]],[22,2,2,8,10,[[685,1,1,8,9],[689,1,1,9,10]]]],[5247,5258,5329,5520,5619,5631,12853,12856,17807,17898]]],["forth",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17807]]],["lay",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17898]]],["put",[1,1,[[4,1,1,0,1,[[164,1,1,0,1]]]],[5247]]],["puttest",[2,2,[[4,2,2,0,2,[[164,1,1,0,1],[167,1,1,1,2]]]],[5258,5329]]],["sending",[2,2,[[16,2,2,0,2,[[434,2,2,0,2]]]],[12853,12856]]],["settest",[3,3,[[4,3,3,0,3,[[175,1,1,0,1],[180,2,2,1,3]]]],[5520,5619,5631]]]]},{"k":"H4917","v":[["*",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[20,1,1,1,2,[[666,1,1,1,2]]]],[15162,17466]]],["discharge",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17466]]],["sending",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15162]]]]},{"k":"H4918","v":[["Meshullam",[25,25,[[11,1,1,0,1,[[334,1,1,0,1]]],[12,7,7,1,8,[[340,1,1,1,2],[342,1,1,2,3],[345,1,1,3,4],[346,4,4,4,8]]],[13,1,1,8,9,[[400,1,1,8,9]]],[14,3,3,9,12,[[410,1,1,9,10],[412,2,2,10,12]]],[15,13,13,12,25,[[415,3,3,12,15],[418,1,1,15,16],[420,1,1,16,17],[422,2,2,17,19],[423,2,2,19,21],[424,4,4,21,25]]]],[10148,10380,10441,10592,10622,10623,10626,10627,11945,12217,12267,12281,12331,12333,12357,12419,12497,12556,12569,12595,12599,12637,12640,12649,12657]]]]},{"k":"H4919","v":[["Meshillemoth",[2,2,[[13,1,1,0,1,[[394,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[11776,12601]]]]},{"k":"H4920","v":[["Meshelemiah",[4,4,[[12,4,4,0,4,[[346,1,1,0,1],[363,3,3,1,4]]]],[10636,11078,11079,11086]]]]},{"k":"H4921","v":[["Meshillemith",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10627]]]]},{"k":"H4922","v":[["Meshullemeth",[1,1,[[11,1,1,0,1,[[333,1,1,0,1]]]],[10138]]]]},{"k":"H4923","v":[["*",[7,7,[[22,1,1,0,1,[[693,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]],[25,5,5,2,7,[[806,1,1,2,3],[807,1,1,3,4],[834,2,2,4,6],[836,1,1,6,7]]]],[17966,20114,20561,20577,21308,21309,21347]]],["+",[3,3,[[25,3,3,0,3,[[834,2,2,0,2],[836,1,1,2,3]]]],[21308,21309,21347]]],["astonishment",[1,1,[[25,1,1,0,1,[[806,1,1,0,1]]]],[20561]]],["desolate",[3,3,[[22,1,1,0,1,[[693,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]],[25,1,1,2,3,[[807,1,1,2,3]]]],[17966,20114,20577]]]]},{"k":"H4924","v":[["*",[7,7,[[0,2,2,0,2,[[26,2,2,0,2]]],[15,1,1,2,3,[[420,1,1,2,3]]],[18,1,1,3,4,[[555,1,1,3,4]]],[22,2,2,4,6,[[688,1,1,4,5],[695,1,1,5,6]]],[26,1,1,6,7,[[860,1,1,6,7]]]],[755,766,12503,15144,17866,17987,22060]]],["+",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[766]]],["fat",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12503]]],["fatness",[2,2,[[0,1,1,0,1,[[26,1,1,0,1]]],[22,1,1,1,2,[[695,1,1,1,2]]]],[755,17987]]],["fattest",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15144]]],["ones",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17866]]],["places",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22060]]]]},{"k":"H4925","v":[["Mishmannah",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10730]]]]},{"k":"H4926","v":[["hearing",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17887]]]]},{"k":"H4927","v":[["Mishma",[4,4,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,3,3,1,4,[[338,1,1,1,2],[341,2,2,2,4]]]],[672,10282,10410,10411]]]]},{"k":"H4928","v":[["*",[4,4,[[8,1,1,0,1,[[257,1,1,0,1]]],[9,1,1,1,2,[[289,1,1,1,2]]],[12,1,1,2,3,[[348,1,1,2,3]]],[22,1,1,3,4,[[689,1,1,3,4]]]],[7801,8676,10698,17898]]],["bidding",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7801]]],["guard",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8676,10698]]],["obey",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17898]]]]},{"k":"H4929","v":[["*",[22,20,[[0,6,6,0,6,[[39,3,3,0,3],[40,1,1,3,4],[41,2,2,4,6]]],[2,1,1,6,7,[[113,1,1,6,7]]],[3,1,1,7,8,[[131,1,1,7,8]]],[12,2,1,8,9,[[363,2,1,8,9]]],[15,8,7,9,16,[[416,3,3,9,12],[419,1,1,12,13],[424,3,2,13,15],[425,1,1,15,16]]],[17,1,1,16,17,[[442,1,1,16,17]]],[19,1,1,17,18,[[631,1,1,17,18]]],[23,1,1,18,19,[[795,1,1,18,19]]],[25,1,1,19,20,[[839,1,1,19,20]]]],[1175,1176,1179,1205,1269,1271,3458,4187,11093,12368,12381,12382,12423,12648,12649,12685,13020,16513,20224,21432]]],["diligence",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16513]]],["guard",[3,3,[[15,2,2,0,2,[[416,2,2,0,2]]],[25,1,1,2,3,[[839,1,1,2,3]]]],[12381,12382,21432]]],["offices",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12685]]],["prison",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1271]]],["ward",[12,10,[[0,5,5,0,5,[[39,3,3,0,3],[40,1,1,3,4],[41,1,1,4,5]]],[2,1,1,5,6,[[113,1,1,5,6]]],[3,1,1,6,7,[[131,1,1,6,7]]],[12,2,1,7,8,[[363,2,1,7,8]]],[15,3,2,8,10,[[424,3,2,8,10]]]],[1175,1176,1179,1205,1269,3458,4187,11093,12648,12649]]],["watch",[4,4,[[15,2,2,0,2,[[416,1,1,0,1],[419,1,1,1,2]]],[17,1,1,2,3,[[442,1,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]]],[12368,12423,13020,20224]]]]},{"k":"H4930","v":[["nails",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17534]]]]},{"k":"H4931","v":[["*",[78,69,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,5,5,1,6,[[61,1,1,1,2],[65,4,4,2,6]]],[2,3,3,6,9,[[97,1,1,6,7],[107,1,1,7,8],[111,1,1,8,9]]],[3,29,24,9,33,[[117,1,1,9,10],[119,10,8,10,18],[120,4,4,18,22],[124,2,1,22,23],[125,2,2,23,25],[133,1,1,25,26],[134,6,4,26,30],[135,1,1,30,31],[147,2,2,31,33]]],[4,1,1,33,34,[[163,1,1,33,34]]],[5,1,1,34,35,[[208,1,1,34,35]]],[8,1,1,35,36,[[257,1,1,35,36]]],[9,1,1,36,37,[[286,1,1,36,37]]],[10,1,1,37,38,[[292,1,1,37,38]]],[11,3,3,38,41,[[323,3,3,38,41]]],[12,8,6,41,47,[[346,2,2,41,43],[349,1,1,43,44],[360,3,1,44,45],[362,1,1,45,46],[363,1,1,46,47]]],[13,7,7,47,54,[[373,1,1,47,48],[374,1,1,48,49],[379,1,1,49,50],[389,1,1,50,51],[397,2,2,51,53],[401,1,1,53,54]]],[15,5,4,54,58,[[419,1,1,54,55],[424,3,2,55,57],[425,1,1,57,58]]],[22,1,1,58,59,[[699,1,1,58,59]]],[25,8,7,59,66,[[841,2,2,59,61],[845,5,4,61,65],[849,1,1,65,66]]],[34,1,1,66,67,[[904,1,1,66,67]]],[37,1,1,67,68,[[913,1,1,67,68]]],[38,1,1,68,69,[[927,1,1,68,69]]]],[697,1822,1970,1979,1980,1981,2952,3281,3378,3657,3699,3700,3717,3720,3723,3724,3728,3730,3770,3771,3774,3775,3965,3984,3988,4254,4260,4261,4262,4265,4298,4694,4711,5209,6429,7810,8557,8773,9834,9835,9836,10638,10642,10749,11015,11054,11089,11330,11360,11464,11662,11870,11871,11968,12423,12633,12669,12701,18043,21522,21523,21607,21613,21614,21615,21713,22749,22919,23134]]],["+",[3,3,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[120,1,1,1,2]]],[9,1,1,2,3,[[286,1,1,2,3]]]],[1822,3770,8557]]],["charge",[45,37,[[0,1,1,0,1,[[25,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]],[3,26,21,2,23,[[117,1,1,2,3],[119,10,8,3,11],[120,3,3,11,14],[124,2,1,14,15],[125,2,2,15,17],[134,6,4,17,21],[147,2,2,21,23]]],[4,1,1,23,24,[[163,1,1,23,24]]],[5,1,1,24,25,[[208,1,1,24,25]]],[10,1,1,25,26,[[292,1,1,25,26]]],[12,4,2,26,28,[[346,1,1,26,27],[360,3,1,27,28]]],[13,1,1,28,29,[[379,1,1,28,29]]],[25,8,7,29,36,[[841,2,2,29,31],[845,5,4,31,35],[849,1,1,35,36]]],[37,1,1,36,37,[[913,1,1,36,37]]]],[697,2952,3657,3699,3700,3717,3720,3723,3724,3728,3730,3771,3774,3775,3965,3984,3988,4260,4261,4262,4265,4694,4711,5209,6429,8773,10642,11015,11464,21522,21523,21607,21613,21614,21615,21713,22919]]],["charges",[4,4,[[13,4,4,0,4,[[374,1,1,0,1],[397,2,2,1,3],[401,1,1,3,4]]]],[11360,11870,11871,11968]]],["kept",[6,6,[[1,4,4,0,4,[[65,4,4,0,4]]],[3,2,2,4,6,[[133,1,1,4,5],[135,1,1,5,6]]]],[1970,1979,1980,1981,4254,4298]]],["offices",[1,1,[[13,1,1,0,1,[[373,1,1,0,1]]]],[11330]]],["ordinance",[3,3,[[2,2,2,0,2,[[107,1,1,0,1],[111,1,1,1,2]]],[38,1,1,2,3,[[927,1,1,2,3]]]],[3281,3378,23134]]],["safeguard",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7810]]],["ward",[5,4,[[12,2,2,0,2,[[349,1,1,0,1],[362,1,1,1,2]]],[15,2,1,2,3,[[424,2,1,2,3]]],[22,1,1,3,4,[[699,1,1,3,4]]]],[10749,11054,12669,18043]]],["wards",[3,3,[[12,2,2,0,2,[[346,1,1,0,1],[363,1,1,1,2]]],[15,1,1,2,3,[[425,1,1,2,3]]]],[10638,11089,12701]]],["watch",[5,5,[[11,3,3,0,3,[[323,3,3,0,3]]],[13,1,1,3,4,[[389,1,1,3,4]]],[34,1,1,4,5,[[904,1,1,4,5]]]],[9834,9835,9836,11662,22749]]],["watches",[2,2,[[15,2,2,0,2,[[419,1,1,0,1],[424,1,1,1,2]]]],[12423,12633]]]]},{"k":"H4932","v":[["*",[35,34,[[0,3,3,0,3,[[40,1,1,0,1],[42,2,2,1,3]]],[1,2,2,3,5,[[65,2,2,3,5]]],[4,2,2,5,7,[[167,1,1,5,6],[169,1,1,6,7]]],[5,1,1,7,8,[[194,1,1,7,8]]],[8,4,4,8,12,[[243,1,1,8,9],[250,1,1,9,10],[252,1,1,10,11],[258,1,1,11,12]]],[9,1,1,12,13,[[269,1,1,12,13]]],[11,3,3,13,16,[[334,1,1,13,14],[335,1,1,14,15],[337,1,1,15,16]]],[12,3,3,16,19,[[342,1,1,16,17],[352,1,1,17,18],[353,1,1,18,19]]],[13,4,4,19,23,[[394,1,1,19,20],[397,1,1,20,21],[400,1,1,21,22],[401,1,1,22,23]]],[14,1,1,23,24,[[403,1,1,23,24]]],[15,2,2,24,26,[[423,2,2,24,26]]],[16,1,1,26,27,[[435,1,1,26,27]]],[17,1,1,27,28,[[477,1,1,27,28]]],[22,2,1,28,29,[[739,2,1,28,29]]],[23,3,3,29,32,[[760,1,1,29,30],[761,1,1,30,31],[796,1,1,31,32]]],[35,1,1,32,33,[[906,1,1,32,33]]],[37,1,1,33,34,[[919,1,1,33,34]]]],[1238,1302,1305,1952,1969,5337,5382,6034,7371,7569,7631,7827,8084,10159,10169,10240,10440,10809,10825,11771,11866,11955,11990,12026,12597,12605,12869,13932,18850,19354,19375,20300,22797,23011]]],["college",[2,2,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]]],[10159,11955]]],["copy",[2,2,[[4,1,1,0,1,[[169,1,1,0,1]]],[5,1,1,1,2,[[194,1,1,1,2]]]],[5382,6034]]],["double",[8,7,[[0,2,2,0,2,[[42,2,2,0,2]]],[4,1,1,2,3,[[167,1,1,2,3]]],[22,2,1,3,4,[[739,2,1,3,4]]],[23,2,2,4,6,[[760,1,1,4,5],[761,1,1,5,6]]],[37,1,1,6,7,[[919,1,1,6,7]]]],[1302,1305,5337,18850,19354,19375,23011]]],["fatlings",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7569]]],["much",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1969]]],["next",[7,7,[[8,2,2,0,2,[[252,1,1,0,1],[258,1,1,1,2]]],[12,2,2,2,4,[[342,1,1,2,3],[353,1,1,3,4]]],[13,2,2,4,6,[[394,1,1,4,5],[397,1,1,5,6]]],[16,1,1,6,7,[[435,1,1,6,7]]]],[7631,7827,10440,10825,11771,11866,12869]]],["order",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10169]]],["second",[11,11,[[0,1,1,0,1,[[40,1,1,0,1]]],[8,1,1,1,2,[[243,1,1,1,2]]],[9,1,1,2,3,[[269,1,1,2,3]]],[11,1,1,3,4,[[337,1,1,3,4]]],[12,1,1,4,5,[[352,1,1,4,5]]],[13,1,1,5,6,[[401,1,1,5,6]]],[14,1,1,6,7,[[403,1,1,6,7]]],[15,2,2,7,9,[[423,2,2,7,9]]],[23,1,1,9,10,[[796,1,1,9,10]]],[35,1,1,10,11,[[906,1,1,10,11]]]],[1238,7371,8084,10240,10809,11990,12026,12597,12605,20300,22797]]],["twice",[2,2,[[1,1,1,0,1,[[65,1,1,0,1]]],[17,1,1,1,2,[[477,1,1,1,2]]]],[1952,13932]]]]},{"k":"H4933","v":[["*",[5,5,[[11,1,1,0,1,[[333,1,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]],[23,1,1,2,3,[[774,1,1,2,3]]],[34,1,1,3,4,[[904,1,1,3,4]]],[35,1,1,4,5,[[906,1,1,4,5]]]],[10133,18502,19683,22755,22800]]],["booties",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22755]]],["booty",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22800]]],["spoil",[3,3,[[11,1,1,0,1,[[333,1,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]],[23,1,1,2,3,[[774,1,1,2,3]]]],[10133,18502,19683]]]]},{"k":"H4934","v":[["path",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4399]]]]},{"k":"H4935","v":[["supple",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20766]]]]},{"k":"H4936","v":[["Misham",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10587]]]]},{"k":"H4937","v":[["stay",[5,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]],[22,3,1,2,3,[[681,3,1,2,3]]]],[8621,14136,17708]]]]},{"k":"H4938","v":[["*",[12,11,[[1,1,1,0,1,[[70,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[6,1,1,2,3,[[216,1,1,2,3]]],[11,4,3,3,6,[[316,3,2,3,5],[330,1,1,5,6]]],[18,1,1,6,7,[[500,1,1,6,7]]],[22,2,2,7,9,[[681,1,1,7,8],[714,1,1,8,9]]],[25,1,1,9,10,[[830,1,1,9,10]]],[37,1,1,10,11,[[918,1,1,10,11]]]],[2096,4358,6675,9632,9634,10045,14239,17708,18336,21189,22980]]],["staff",[11,10,[[1,1,1,0,1,[[70,1,1,0,1]]],[6,1,1,1,2,[[216,1,1,1,2]]],[11,4,3,2,5,[[316,3,2,2,4],[330,1,1,4,5]]],[18,1,1,5,6,[[500,1,1,5,6]]],[22,2,2,6,8,[[681,1,1,6,7],[714,1,1,7,8]]],[25,1,1,8,9,[[830,1,1,8,9]]],[37,1,1,9,10,[[918,1,1,9,10]]]],[2096,6675,9632,9634,10045,14239,17708,18336,21189,22980]]],["staves",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4358]]]]},{"k":"H4939","v":[["oppression",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17746]]]]},{"k":"H4940","v":[["*",[303,224,[[0,12,12,0,12,[[7,1,1,0,1],[9,5,5,1,6],[11,1,1,6,7],[23,3,3,7,10],[27,1,1,10,11],[35,1,1,11,12]]],[1,7,7,12,19,[[55,6,6,12,18],[61,1,1,18,19]]],[2,6,6,19,25,[[109,1,1,19,20],[114,5,5,20,25]]],[3,159,94,25,119,[[117,14,14,25,39],[118,1,1,39,40],[119,21,12,40,52],[120,18,17,52,69],[127,1,1,69,70],[142,94,41,70,111],[143,3,3,111,114],[149,1,1,114,115],[152,6,4,115,119]]],[4,1,1,119,120,[[181,1,1,119,120]]],[5,47,42,120,162,[[192,1,1,120,121],[193,5,2,121,123],[199,6,6,123,129],[201,3,3,129,132],[202,2,2,132,134],[203,2,1,134,135],[204,4,4,135,139],[205,12,12,139,151],[207,12,11,151,162]]],[6,8,8,162,170,[[211,1,1,162,163],[219,1,1,163,164],[223,1,1,164,165],[227,1,1,165,166],[228,3,3,166,169],[231,1,1,169,170]]],[7,2,2,170,172,[[233,2,2,170,172]]],[8,7,5,172,177,[[244,2,1,172,173],[245,2,1,173,174],[253,1,1,174,175],[255,2,2,175,177]]],[9,2,2,177,179,[[280,1,1,177,178],[282,1,1,178,179]]],[12,19,19,179,198,[[339,2,2,179,181],[341,5,5,181,186],[342,1,1,186,187],[343,9,9,187,196],[344,1,1,196,197],[353,1,1,197,198]]],[15,1,1,198,199,[[416,1,1,198,199]]],[16,2,1,199,200,[[434,2,1,199,200]]],[17,2,2,200,202,[[466,1,1,200,201],[467,1,1,201,202]]],[18,3,3,202,205,[[499,1,1,202,203],[573,1,1,203,204],[584,1,1,204,205]]],[23,9,9,205,214,[[745,1,1,205,206],[746,1,1,206,207],[747,1,1,207,208],[752,1,1,208,209],[754,1,1,209,210],[759,1,1,210,211],[769,1,1,211,212],[775,1,1,212,213],[777,1,1,213,214]]],[25,1,1,214,215,[[821,1,1,214,215]]],[29,2,2,215,217,[[881,2,2,215,217]]],[32,1,1,217,218,[[894,1,1,217,218]]],[33,1,1,218,219,[[902,1,1,218,219]]],[37,11,5,219,224,[[922,9,3,219,222],[924,2,2,222,224]]]],[202,239,252,254,265,266,301,629,631,632,787,1080,1669,1670,1672,1674,1679,1680,1837,3323,3479,3510,3514,3516,3518,3606,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3692,3707,3710,3711,3712,3713,3715,3719,3721,3722,3725,3727,3731,3745,3761,3765,3767,3771,3772,3776,3777,3779,3780,3781,3783,3784,3785,3787,3788,3789,4034,4494,4495,4496,4501,4502,4503,4504,4505,4506,4507,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4536,4537,4538,4539,4546,4547,4555,4558,4565,4814,4880,4885,4887,4891,5697,5972,5990,5993,6169,6177,6178,6182,6183,6185,6203,6214,6222,6270,6273,6277,6304,6313,6314,6321,6322,6329,6331,6337,6338,6344,6345,6352,6353,6360,6361,6369,6385,6386,6387,6388,6391,6401,6407,6408,6414,6415,6421,6534,6755,6886,6987,6995,7004,7012,7126,7150,7152,7412,7439,7694,7736,7759,8363,8431,10359,10361,10387,10393,10406,10412,10423,10435,10473,10508,10514,10515,10516,10517,10520,10524,10525,10540,10848,12372,12862,13622,13630,14231,15472,15740,18961,18969,19016,19156,19226,19318,19543,19692,19799,20927,22396,22397,22598,22716,23057,23058,23059,23085,23086]]],["+",[30,27,[[0,1,1,0,1,[[23,1,1,0,1]]],[2,2,2,1,3,[[114,2,2,1,3]]],[3,4,4,3,7,[[143,1,1,3,4],[152,3,3,4,7]]],[5,5,5,7,12,[[207,5,5,7,12]]],[6,4,4,12,16,[[223,1,1,12,13],[227,1,1,13,14],[228,2,2,14,16]]],[7,2,2,16,18,[[233,2,2,16,18]]],[9,1,1,18,19,[[282,1,1,18,19]]],[12,3,3,19,22,[[343,3,3,19,22]]],[16,2,1,22,23,[[434,2,1,22,23]]],[17,1,1,23,24,[[467,1,1,23,24]]],[23,1,1,24,25,[[747,1,1,24,25]]],[37,4,2,25,27,[[922,4,2,25,27]]]],[631,3514,3518,4565,4880,4887,4891,6386,6387,6391,6408,6421,6886,6987,6995,7004,7150,7152,8431,10515,10520,10525,12862,13630,19016,23057,23059]]],["families",[160,153,[[0,8,8,0,8,[[9,5,5,0,5],[11,1,1,5,6],[27,1,1,6,7],[35,1,1,7,8]]],[1,7,7,8,15,[[55,6,6,8,14],[61,1,1,14,15]]],[3,79,73,15,88,[[117,14,14,15,29],[118,1,1,29,30],[119,13,12,30,42],[120,18,17,42,59],[127,1,1,59,60],[142,29,25,60,85],[143,1,1,85,86],[149,1,1,86,87],[152,1,1,87,88]]],[5,37,36,88,124,[[193,1,1,88,89],[199,6,6,89,95],[201,3,3,95,98],[202,2,2,98,100],[203,2,1,100,101],[204,4,4,101,105],[205,12,12,105,117],[207,7,7,117,124]]],[8,2,2,124,126,[[244,1,1,124,125],[245,1,1,125,126]]],[12,13,13,126,139,[[339,2,2,126,128],[341,4,4,128,132],[342,1,1,132,133],[343,5,5,133,138],[344,1,1,138,139]]],[15,1,1,139,140,[[416,1,1,139,140]]],[17,1,1,140,141,[[466,1,1,140,141]]],[18,1,1,141,142,[[584,1,1,141,142]]],[23,6,6,142,148,[[745,1,1,142,143],[746,1,1,143,144],[754,1,1,144,145],[769,1,1,145,146],[775,1,1,146,147],[777,1,1,147,148]]],[25,1,1,148,149,[[821,1,1,148,149]]],[29,1,1,149,150,[[881,1,1,149,150]]],[33,1,1,150,151,[[902,1,1,150,151]]],[37,2,2,151,153,[[922,1,1,151,152],[924,1,1,152,153]]]],[239,252,254,265,266,301,787,1080,1669,1670,1672,1674,1679,1680,1837,3606,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3692,3707,3710,3711,3712,3713,3715,3719,3721,3722,3725,3727,3731,3745,3761,3765,3767,3771,3772,3776,3777,3779,3780,3781,3783,3784,3785,3787,3788,3789,4034,4496,4501,4503,4504,4507,4509,4511,4512,4514,4515,4516,4517,4523,4524,4526,4527,4530,4531,4532,4533,4536,4537,4539,4546,4547,4555,4814,4880,5990,6169,6177,6178,6182,6183,6185,6203,6214,6222,6270,6273,6277,6304,6313,6314,6321,6322,6329,6331,6337,6338,6344,6345,6352,6353,6360,6361,6369,6385,6388,6401,6407,6414,6415,6421,7412,7439,10359,10361,10387,10393,10406,10423,10435,10473,10508,10514,10516,10517,10540,12372,13622,15740,18961,18969,19226,19543,19692,19799,20927,22397,22716,23059,23085]]],["family",[105,59,[[2,4,4,0,4,[[109,1,1,0,1],[114,3,3,1,4]]],[3,76,34,4,38,[[119,8,3,4,7],[142,65,28,7,35],[143,1,1,35,36],[152,2,2,36,38]]],[4,1,1,38,39,[[181,1,1,38,39]]],[5,4,2,39,41,[[193,4,2,39,41]]],[6,4,4,41,45,[[211,1,1,41,42],[219,1,1,42,43],[228,1,1,43,44],[231,1,1,44,45]]],[8,5,5,45,50,[[244,1,1,45,46],[245,1,1,46,47],[253,1,1,47,48],[255,2,2,48,50]]],[9,1,1,50,51,[[280,1,1,50,51]]],[12,2,2,51,53,[[341,1,1,51,52],[343,1,1,52,53]]],[23,1,1,53,54,[[752,1,1,53,54]]],[29,1,1,54,55,[[881,1,1,54,55]]],[32,1,1,55,56,[[894,1,1,55,56]]],[37,5,3,56,59,[[922,4,2,56,58],[924,1,1,58,59]]]],[3323,3479,3510,3516,3713,3719,3725,4494,4495,4501,4502,4504,4505,4506,4509,4510,4512,4513,4515,4518,4519,4520,4521,4524,4525,4527,4528,4529,4531,4533,4534,4537,4538,4546,4547,4558,4885,4891,5697,5990,5993,6534,6755,7012,7126,7412,7439,7694,7736,7759,8363,10412,10524,19156,22396,22598,23057,23058,23086]]],["kindred",[3,3,[[0,2,2,0,2,[[23,2,2,0,2]]],[5,1,1,2,3,[[192,1,1,2,3]]]],[629,632,5972]]],["kindreds",[3,3,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,2,2,1,3,[[499,1,1,1,2],[573,1,1,2,3]]]],[10848,14231,15472]]],["kinds",[2,2,[[0,1,1,0,1,[[7,1,1,0,1]]],[23,1,1,1,2,[[759,1,1,1,2]]]],[202,19318]]]]},{"k":"H4941","v":[["*",[421,406,[[0,3,3,0,3,[[17,2,2,0,2],[39,1,1,2,3]]],[1,11,10,3,13,[[64,1,1,3,4],[70,3,3,4,7],[72,1,1,7,8],[73,1,1,8,9],[75,1,1,9,10],[77,4,3,10,13]]],[2,14,14,13,27,[[94,1,1,13,14],[98,1,1,14,15],[107,3,3,15,18],[108,3,3,18,21],[109,1,1,21,22],[113,1,1,22,23],[114,1,1,23,24],[115,3,3,24,27]]],[3,19,19,27,46,[[125,2,2,27,29],[131,2,2,29,31],[143,3,3,31,34],[145,8,8,34,42],[151,3,3,42,45],[152,1,1,45,46]]],[4,37,36,46,82,[[153,2,1,46,47],[156,5,5,47,52],[157,2,2,52,54],[158,2,2,54,56],[159,2,2,56,58],[160,1,1,58,59],[162,1,1,59,60],[163,2,2,60,62],[164,1,1,62,63],[168,2,2,63,65],[169,3,3,65,68],[170,1,1,68,69],[171,1,1,69,70],[173,2,2,70,72],[176,1,1,72,73],[177,1,1,73,74],[178,2,2,74,76],[179,1,1,76,77],[182,1,1,77,78],[184,2,2,78,80],[185,2,2,80,82]]],[5,3,3,82,85,[[192,1,1,82,83],[206,1,1,83,84],[210,1,1,84,85]]],[6,3,3,85,88,[[214,1,1,85,86],[223,1,1,86,87],[228,1,1,87,88]]],[8,7,7,88,95,[[237,1,1,88,89],[243,3,3,89,92],[245,1,1,92,93],[262,1,1,93,94],[265,1,1,94,95]]],[9,5,5,95,100,[[274,1,1,95,96],[281,3,3,96,99],[288,1,1,99,100]]],[10,18,16,100,116,[[292,1,1,100,101],[293,3,2,101,103],[294,1,1,103,104],[296,2,2,104,106],[297,1,1,106,107],[298,5,4,107,111],[299,1,1,111,112],[300,1,1,112,113],[301,1,1,113,114],[308,1,1,114,115],[310,1,1,115,116]]],[11,11,9,116,125,[[313,1,1,116,117],[323,1,1,117,118],[329,8,6,118,124],[337,1,1,124,125]]],[12,9,9,125,134,[[343,1,1,125,126],[352,1,1,126,127],[353,2,2,127,129],[355,1,1,129,130],[359,1,1,130,131],[360,1,1,131,132],[361,1,1,132,133],[365,1,1,133,134]]],[13,13,13,134,147,[[370,2,2,134,136],[372,2,2,136,138],[373,1,1,138,139],[374,1,1,139,140],[375,1,1,140,141],[385,3,3,141,144],[396,1,1,144,145],[399,1,1,145,146],[401,1,1,146,147]]],[14,2,2,147,149,[[405,1,1,147,148],[409,1,1,148,149]]],[15,5,5,149,154,[[413,1,1,149,150],[420,1,1,150,151],[421,2,2,151,153],[422,1,1,153,154]]],[17,23,23,154,177,[[443,1,1,154,155],[444,2,2,155,157],[448,1,1,157,158],[449,1,1,158,159],[454,1,1,159,160],[457,1,1,160,161],[458,1,1,161,162],[462,1,1,162,163],[464,1,1,163,164],[466,1,1,164,165],[467,1,1,165,166],[469,6,6,166,172],[470,1,1,172,173],[471,2,2,173,175],[472,1,1,175,176],[475,1,1,176,177]]],[18,65,64,177,241,[[478,1,1,177,178],[484,1,1,178,179],[486,3,3,179,182],[487,1,1,182,183],[494,1,1,183,184],[495,1,1,184,185],[496,1,1,185,186],[502,1,1,186,187],[510,1,1,187,188],[512,1,1,188,189],[513,1,1,189,190],[514,3,3,190,193],[525,1,1,193,194],[549,2,2,194,196],[553,1,1,196,197],[558,1,1,197,198],[566,2,2,198,200],[571,1,1,200,201],[574,2,2,201,203],[576,2,1,203,204],[578,1,1,204,205],[580,1,1,205,206],[582,2,2,206,208],[583,1,1,208,209],[588,1,1,209,210],[589,1,1,210,211],[596,23,23,211,234],[599,1,1,234,235],[617,1,1,235,236],[620,1,1,236,237],[623,1,1,237,238],[624,2,2,238,240],[626,1,1,240,241]]],[19,20,20,241,261,[[628,1,1,241,242],[629,2,2,242,244],[635,1,1,244,245],[639,1,1,245,246],[640,1,1,246,247],[643,4,4,247,251],[644,1,1,251,252],[645,1,1,252,253],[646,1,1,253,254],[648,3,3,254,257],[651,1,1,257,258],[655,1,1,258,259],[656,2,2,259,261]]],[20,6,6,261,267,[[661,1,1,261,262],[663,1,1,262,263],[666,2,2,263,265],[669,1,1,265,266],[670,1,1,266,267]]],[22,42,40,267,307,[[679,3,3,267,270],[681,1,1,270,271],[682,1,1,271,272],[683,2,2,272,274],[687,1,1,274,275],[688,1,1,275,276],[694,1,1,276,277],[704,2,2,277,279],[706,4,3,279,282],[708,1,1,282,283],[710,3,3,283,286],[711,1,1,286,287],[712,1,1,287,288],[718,2,2,288,290],[719,1,1,290,291],[720,3,3,291,294],[727,1,1,294,295],[728,1,1,295,296],[729,1,1,296,297],[731,1,1,297,298],[732,1,1,298,299],[734,1,1,299,300],[736,2,1,300,301],[737,5,5,301,306],[739,1,1,306,307]]],[23,32,32,307,339,[[745,1,1,307,308],[748,2,2,308,310],[749,4,4,310,314],[751,1,1,314,315],[752,1,1,315,316],[753,1,1,316,317],[754,1,1,317,318],[756,1,1,318,319],[761,1,1,319,320],[765,1,1,320,321],[766,3,3,321,324],[767,1,1,324,325],[770,2,2,325,327],[774,2,2,327,329],[776,2,2,329,331],[777,1,1,331,332],[783,1,1,332,333],[790,1,1,333,334],[792,2,2,334,336],[793,1,1,336,337],[795,1,1,337,338],[796,1,1,338,339]]],[24,2,2,339,341,[[799,2,2,339,341]]],[25,42,37,341,378,[[806,5,3,341,344],[808,2,2,344,346],[812,3,2,346,348],[817,1,1,348,349],[819,7,7,349,356],[821,8,8,356,364],[822,1,1,364,365],[823,1,1,365,366],[824,4,2,366,368],[834,3,3,368,371],[835,1,1,371,372],[837,1,1,372,373],[838,1,1,373,374],[840,1,1,374,375],[843,1,1,375,376],[845,1,1,376,377],[846,1,1,377,378]]],[26,1,1,378,379,[[858,1,1,378,379]]],[27,6,6,379,385,[[863,1,1,379,380],[866,2,2,380,382],[867,1,1,382,383],[871,1,1,383,384],[873,1,1,384,385]]],[29,4,4,385,389,[[883,3,3,385,388],[884,1,1,388,389]]],[32,5,5,389,394,[[895,3,3,389,392],[898,1,1,392,393],[899,1,1,393,394]]],[34,4,3,394,397,[[903,4,3,394,397]]],[35,4,4,397,401,[[907,1,1,397,398],[908,3,3,398,401]]],[37,2,2,401,403,[[917,1,1,401,402],[918,1,1,402,403]]],[38,3,3,403,406,[[926,1,1,403,404],[927,1,1,404,405],[928,1,1,405,406]]]],[443,449,1185,1945,2078,2086,2108,2150,2180,2265,2308,2322,2323,2840,2969,3255,3256,3277,3296,3316,3318,3340,3468,3487,3539,3567,3570,3968,3979,4169,4177,4559,4565,4575,4614,4626,4629,4632,4635,4638,4641,4645,4857,4869,4874,4892,4909,5005,5009,5012,5018,5049,5054,5084,5087,5106,5122,5123,5148,5204,5209,5240,5241,5360,5361,5372,5373,5375,5387,5412,5464,5469,5542,5548,5582,5583,5604,5724,5762,5799,5820,5831,5964,6378,6501,6604,6896,7000,7253,7372,7378,7380,7443,7941,8003,8224,8391,8393,8395,8625,8773,8827,8844,8872,8908,8934,8941,9030,9034,9043,9044,9055,9088,9141,9369,9448,9540,9843,10009,10010,10016,10017,10020,10023,10228,10486,10804,10832,10834,10904,10977,11014,11034,11150,11253,11266,11317,11321,11341,11360,11372,11582,11584,11586,11843,11916,11979,12101,12183,12303,12511,12524,12540,12578,13032,13070,13083,13171,13184,13304,13393,13423,13483,13546,13601,13637,13687,13688,13689,13695,13700,13706,13722,13742,13753,13792,13872,13944,14001,14025,14028,14037,14046,14105,14140,14177,14260,14371,14433,14444,14456,14478,14480,14645,15001,15002,15090,15221,15340,15356,15446,15480,15486,15503,15514,15555,15611,15613,15654,15800,15808,15905,15911,15918,15928,15937,15941,15950,15960,15973,15982,15989,16000,16004,16006,16018,16019,16030,16035,16047,16054,16058,16062,16073,16094,16275,16295,16348,16370,16371,16394,16403,16441,16442,16622,16724,16770,16848,16850,16851,16873,16896,16906,16953,16987,16991,16999,17102,17201,17228,17250,17375,17405,17463,17464,17522,17537,17671,17675,17681,17721,17737,17746,17755,17836,17852,17974,18138,18139,18170,18181,18190,18235,18260,18266,18275,18284,18308,18434,18447,18452,18481,18483,18484,18640,18670,18677,18719,18740,18754,18788,18808,18809,18811,18814,18815,18851,18962,19029,19039,19059,19062,19063,19086,19124,19160,19199,19225,19250,19368,19452,19457,19467,19469,19489,19583,19588,19678,19685,19738,19739,19790,19928,20073,20101,20127,20139,20221,20285,20389,20413,20552,20553,20554,20600,20604,20667,20675,20800,20854,20857,20858,20866,20868,20870,20876,20906,20908,20911,20913,20914,20916,20919,20920,20971,21005,21031,21052,21294,21296,21299,21329,21386,21421,21469,21563,21623,21639,21993,22124,22153,22163,22172,22229,22258,22430,22438,22447,22462,22609,22616,22617,22656,22673,22735,22738,22743,22808,22825,22828,22835,22971,22992,23120,23125,23142]]],["+",[12,12,[[1,1,1,0,1,[[77,1,1,0,1]]],[4,1,1,1,2,[[171,1,1,1,2]]],[6,1,1,2,3,[[223,1,1,2,3]]],[13,1,1,3,4,[[385,1,1,3,4]]],[18,2,2,4,6,[[596,2,2,4,6]]],[22,3,3,6,9,[[728,1,1,6,7],[731,1,1,7,8],[737,1,1,8,9]]],[23,1,1,9,10,[[766,1,1,9,10]]],[25,1,1,10,11,[[823,1,1,10,11]]],[26,1,1,11,12,[[858,1,1,11,12]]]],[2323,5412,6896,11582,16000,16018,18670,18719,18809,19467,21005,21993]]],["Judgment",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18181]]],["cause",[12,11,[[3,1,1,0,1,[[143,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]],[10,4,3,2,5,[[298,4,3,2,5]]],[13,2,2,5,7,[[372,2,2,5,7]]],[17,3,3,7,10,[[448,1,1,7,8],[458,1,1,8,9],[466,1,1,9,10]]],[24,1,1,10,11,[[799,1,1,10,11]]]],[4559,8393,9030,9034,9044,11317,11321,13171,13423,13601,20413]]],["ceremonies",[1,1,[[3,1,1,0,1,[[125,1,1,0,1]]]],[3968]]],["charge",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8872]]],["crimes",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20600]]],["custom",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[14,1,1,1,2,[[405,1,1,1,2]]]],[7253,12101]]],["deserts",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20604]]],["determination",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22828]]],["discretion",[2,2,[[18,1,1,0,1,[[589,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]]],[15808,18190]]],["disposing",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16873]]],["do",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16030]]],["due",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5387]]],["fashion",[2,2,[[1,1,1,0,1,[[75,1,1,0,1]]],[10,1,1,1,2,[[296,1,1,1,2]]]],[2265,8934]]],["fashions",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21563]]],["form",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11253]]],["judged",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20800]]],["judgment",[184,179,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,5,5,1,6,[[70,1,1,1,2],[72,1,1,2,3],[77,3,3,3,6]]],[2,2,2,6,8,[[108,2,2,6,8]]],[3,4,4,8,12,[[143,2,2,8,10],[151,2,2,10,12]]],[4,13,12,12,24,[[153,2,1,12,13],[162,1,1,13,14],[168,2,2,14,16],[169,3,3,16,19],[176,1,1,19,20],[177,1,1,20,21],[179,1,1,21,22],[184,2,2,22,24]]],[5,1,1,24,25,[[206,1,1,24,25]]],[6,1,1,25,26,[[214,1,1,25,26]]],[8,1,1,26,27,[[243,1,1,26,27]]],[9,3,3,27,30,[[274,1,1,27,28],[281,2,2,28,30]]],[10,6,5,30,35,[[293,3,2,30,32],[297,1,1,32,33],[300,1,1,33,34],[310,1,1,34,35]]],[11,1,1,35,36,[[337,1,1,35,36]]],[12,1,1,36,37,[[355,1,1,36,37]]],[13,2,2,37,39,[[375,1,1,37,38],[385,1,1,38,39]]],[17,15,15,39,54,[[443,1,1,39,40],[444,2,2,40,42],[449,1,1,42,43],[454,1,1,43,44],[457,1,1,44,45],[462,1,1,45,46],[464,1,1,46,47],[467,1,1,47,48],[469,4,4,48,52],[472,1,1,52,53],[475,1,1,53,54]]],[18,28,27,54,81,[[478,1,1,54,55],[484,1,1,55,56],[486,2,2,56,58],[502,1,1,58,59],[510,1,1,59,60],[512,1,1,60,61],[514,3,3,61,64],[549,1,1,64,65],[553,1,1,65,66],[566,1,1,66,67],[571,1,1,67,68],[574,1,1,68,69],[576,2,1,69,70],[578,1,1,70,71],[580,1,1,71,72],[583,1,1,72,73],[588,1,1,73,74],[596,3,3,74,77],[599,1,1,77,78],[620,1,1,78,79],[623,1,1,79,80],[626,1,1,80,81]]],[19,16,16,81,97,[[628,1,1,81,82],[629,2,2,82,84],[635,1,1,84,85],[640,1,1,85,86],[643,1,1,86,87],[644,1,1,87,88],[645,1,1,88,89],[646,1,1,89,90],[648,3,3,90,93],[651,1,1,93,94],[655,1,1,94,95],[656,2,2,95,97]]],[20,6,6,97,103,[[661,1,1,97,98],[663,1,1,98,99],[666,2,2,99,101],[669,1,1,101,102],[670,1,1,102,103]]],[22,31,30,103,133,[[679,3,3,103,106],[681,1,1,106,107],[682,1,1,107,108],[683,2,2,108,110],[687,1,1,110,111],[694,1,1,111,112],[706,2,1,112,113],[708,1,1,113,114],[710,2,2,114,116],[711,1,1,116,117],[712,1,1,117,118],[718,2,2,118,120],[719,1,1,120,121],[720,3,3,121,124],[727,1,1,124,125],[729,1,1,125,126],[732,1,1,126,127],[734,1,1,127,128],[737,4,4,128,132],[739,1,1,132,133]]],[23,19,19,133,152,[[748,1,1,133,134],[749,3,3,134,137],[751,1,1,137,138],[752,1,1,138,139],[753,1,1,139,140],[754,1,1,140,141],[765,1,1,141,142],[766,2,2,142,144],[767,1,1,144,145],[777,1,1,145,146],[783,1,1,146,147],[792,2,2,147,149],[793,1,1,149,150],[795,1,1,150,151],[796,1,1,151,152]]],[25,5,5,152,157,[[819,1,1,152,153],[824,1,1,153,154],[835,1,1,154,155],[840,1,1,155,156],[846,1,1,156,157]]],[27,5,5,157,162,[[863,1,1,157,158],[866,2,2,158,160],[871,1,1,160,161],[873,1,1,161,162]]],[29,4,4,162,166,[[883,3,3,162,165],[884,1,1,165,166]]],[32,4,4,166,170,[[895,3,3,166,169],[899,1,1,169,170]]],[34,4,3,170,173,[[903,4,3,170,173]]],[35,2,2,173,175,[[907,1,1,173,174],[908,1,1,174,175]]],[37,2,2,175,177,[[917,1,1,175,176],[918,1,1,176,177]]],[38,2,2,177,179,[[926,1,1,177,178],[927,1,1,178,179]]]],[443,2108,2150,2308,2322,2323,3296,3316,4565,4575,4857,4874,4909,5204,5360,5361,5372,5373,5375,5542,5548,5604,5762,5799,6378,6604,7372,8224,8391,8395,8827,8844,8941,9088,9448,10228,10904,11372,11584,13032,13070,13083,13184,13304,13393,13483,13546,13637,13687,13688,13695,13706,13792,13872,13944,14001,14028,14037,14260,14371,14433,14456,14478,14480,15002,15090,15340,15446,15480,15503,15514,15555,15654,15800,15982,16019,16047,16094,16295,16348,16394,16403,16441,16442,16622,16770,16850,16896,16906,16953,16987,16991,16999,17102,17201,17228,17250,17375,17405,17463,17464,17522,17537,17671,17675,17681,17721,17737,17746,17755,17836,17974,18170,18235,18260,18275,18284,18308,18434,18447,18452,18481,18483,18484,18640,18677,18740,18754,18808,18811,18814,18815,18851,19029,19059,19062,19063,19124,19160,19199,19225,19452,19457,19469,19489,19790,19928,20101,20127,20139,20221,20285,20857,21031,21329,21469,21639,22124,22153,22163,22229,22258,22430,22438,22447,22462,22609,22616,22617,22673,22735,22738,22743,22808,22825,22971,22992,23120,23125]]],["judgments",[105,103,[[1,2,2,0,2,[[70,1,1,0,1],[73,1,1,1,2]]],[2,9,9,2,11,[[107,3,3,2,5],[108,1,1,5,6],[109,1,1,6,7],[114,1,1,7,8],[115,3,3,8,11]]],[3,2,2,11,13,[[151,1,1,11,12],[152,1,1,12,13]]],[4,20,20,13,33,[[156,5,5,13,18],[157,2,2,18,20],[158,2,2,20,22],[159,2,2,22,24],[160,1,1,24,25],[163,2,2,25,27],[164,1,1,27,28],[178,2,2,28,30],[182,1,1,30,31],[185,2,2,31,33]]],[9,1,1,33,34,[[288,1,1,33,34]]],[10,5,5,34,39,[[292,1,1,34,35],[296,1,1,35,36],[298,1,1,36,37],[299,1,1,37,38],[301,1,1,38,39]]],[12,4,4,39,43,[[353,2,2,39,41],[359,1,1,41,42],[365,1,1,42,43]]],[13,2,2,43,45,[[373,1,1,43,44],[385,1,1,44,45]]],[14,1,1,45,46,[[409,1,1,45,46]]],[15,4,4,46,50,[[413,1,1,46,47],[421,2,2,47,49],[422,1,1,49,50]]],[18,28,28,50,78,[[487,1,1,50,51],[495,1,1,51,52],[496,1,1,52,53],[513,1,1,53,54],[525,1,1,54,55],[549,1,1,55,56],[566,1,1,56,57],[574,1,1,57,58],[582,2,2,58,60],[596,16,16,60,76],[624,2,2,76,78]]],[22,2,2,78,80,[[704,2,2,78,80]]],[23,2,2,80,82,[[745,1,1,80,81],[756,1,1,81,82]]],[25,20,18,82,100,[[806,5,3,82,85],[812,1,1,85,86],[819,2,2,86,88],[821,8,8,88,96],[824,1,1,96,97],[837,1,1,97,98],[838,1,1,98,99],[845,1,1,99,100]]],[27,1,1,100,101,[[867,1,1,100,101]]],[35,1,1,101,102,[[908,1,1,101,102]]],[38,1,1,102,103,[[928,1,1,102,103]]]],[2078,2180,3255,3256,3277,3318,3340,3487,3539,3567,3570,4869,4892,5005,5009,5012,5018,5049,5054,5084,5087,5106,5122,5123,5148,5209,5240,5241,5582,5583,5724,5820,5831,8625,8773,8908,9043,9055,9141,10832,10834,10977,11150,11341,11586,12183,12303,12524,12540,12578,14046,14140,14177,14444,14645,15001,15356,15486,15611,15613,15905,15911,15918,15928,15937,15941,15950,15960,15973,16004,16006,16035,16054,16058,16062,16073,16370,16371,18138,18139,18962,19250,20552,20553,20554,20667,20858,20866,20906,20908,20911,20913,20914,20916,20919,20920,21031,21386,21421,21623,22172,22835,23142]]],["just",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16851]]],["justice",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13753]]],["justly",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22656]]],["law",[2,2,[[2,1,1,0,1,[[113,1,1,0,1]]],[18,1,1,1,2,[[558,1,1,1,2]]]],[3468,15221]]],["lawful",[7,7,[[25,7,7,0,7,[[819,4,4,0,4],[834,3,3,4,7]]]],[20854,20868,20870,20876,21294,21296,21299]]],["manner",[35,34,[[0,1,1,0,1,[[39,1,1,0,1]]],[1,1,1,1,2,[[70,1,1,1,2]]],[2,2,2,2,4,[[94,1,1,2,3],[98,1,1,3,4]]],[3,11,11,4,15,[[125,1,1,4,5],[131,2,2,5,7],[145,8,8,7,15]]],[5,1,1,15,16,[[192,1,1,15,16]]],[6,1,1,16,17,[[228,1,1,16,17]]],[8,4,4,17,21,[[243,2,2,17,19],[245,1,1,19,20],[262,1,1,20,21]]],[10,1,1,21,22,[[308,1,1,21,22]]],[11,7,6,22,28,[[313,1,1,22,23],[323,1,1,23,24],[329,5,4,24,28]]],[12,1,1,28,29,[[361,1,1,28,29]]],[13,2,2,29,31,[[370,1,1,29,30],[396,1,1,30,31]]],[15,1,1,31,32,[[420,1,1,31,32]]],[23,1,1,32,33,[[774,1,1,32,33]]],[25,1,1,33,34,[[824,1,1,33,34]]]],[1185,2086,2840,2969,3979,4169,4177,4614,4626,4629,4632,4635,4638,4641,4645,5964,7000,7378,7380,7443,7941,9369,9540,9843,10009,10010,10016,10023,11034,11266,11843,12511,19685,21052]]],["manners",[2,2,[[11,1,1,0,1,[[329,1,1,0,1]]],[25,1,1,1,2,[[812,1,1,1,2]]]],[10017,20667]]],["measure",[2,2,[[23,2,2,0,2,[[774,1,1,0,1],[790,1,1,1,2]]]],[19678,20073]]],["order",[4,4,[[12,3,3,0,3,[[343,1,1,0,1],[352,1,1,1,2],[360,1,1,2,3]]],[13,1,1,3,4,[[374,1,1,3,4]]]],[10486,10804,11014,11360]]],["ordinance",[5,5,[[1,1,1,0,1,[[64,1,1,0,1]]],[5,1,1,1,2,[[210,1,1,1,2]]],[8,1,1,2,3,[[265,1,1,2,3]]],[13,1,1,3,4,[[401,1,1,3,4]]],[22,1,1,4,5,[[736,1,1,4,5]]]],[1945,6501,8003,11979,18788]]],["ordinances",[6,6,[[11,2,2,0,2,[[329,2,2,0,2]]],[13,1,1,2,3,[[399,1,1,2,3]]],[18,1,1,3,4,[[596,1,1,3,4]]],[22,1,1,4,5,[[736,1,1,4,5]]],[25,1,1,5,6,[[812,1,1,5,6]]]],[10017,10020,11916,15989,18788,20675]]],["right",[18,18,[[0,1,1,0,1,[[17,1,1,0,1]]],[4,1,1,1,2,[[173,1,1,1,2]]],[17,4,4,2,6,[[469,2,2,2,4],[470,1,1,4,5],[471,1,1,5,6]]],[18,2,2,6,8,[[486,1,1,6,7],[617,1,1,7,8]]],[19,2,2,8,10,[[639,1,1,8,9],[643,1,1,9,10]]],[22,2,2,10,12,[[688,1,1,10,11],[710,1,1,11,12]]],[23,4,4,12,16,[[749,1,1,12,13],[761,1,1,13,14],[776,2,2,14,16]]],[24,1,1,16,17,[[799,1,1,16,17]]],[25,1,1,17,18,[[822,1,1,17,18]]]],[449,5464,13689,13700,13722,13742,14025,16275,16724,16848,17852,18266,19086,19368,19738,19739,20389,20971]]],["sentence",[2,2,[[18,1,1,0,1,[[494,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]]],[14105,19039]]],["women",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21052]]],["worthy",[3,3,[[4,1,1,0,1,[[173,1,1,0,1]]],[23,2,2,1,3,[[770,2,2,1,3]]]],[5469,19583,19588]]]]},{"k":"H4942","v":[["*",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]]],[1487,6639]]],["burdens",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1487]]],["sheepfolds",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6639]]]]},{"k":"H4943","v":[["+",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[362]]]]},{"k":"H4944","v":[["fro",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18283]]]]},{"k":"H4945","v":[["*",[19,18,[[0,11,10,0,10,[[12,1,1,0,1],[39,9,8,1,9],[40,1,1,9,10]]],[2,1,1,10,11,[[100,1,1,10,11]]],[10,2,2,11,13,[[300,2,2,11,13]]],[13,2,2,13,15,[[375,2,2,13,15]]],[15,1,1,15,16,[[413,1,1,15,16]]],[22,1,1,16,17,[[710,1,1,16,17]]],[25,1,1,17,18,[[846,1,1,17,18]]]],[328,1173,1174,1177,1181,1185,1192,1193,1195,1204,3031,9084,9100,11368,11384,12307,18265,21645]]],["+",[2,2,[[0,1,1,0,1,[[40,1,1,0,1]]],[25,1,1,1,2,[[846,1,1,1,2]]]],[1204,21645]]],["butler",[7,7,[[0,7,7,0,7,[[39,7,7,0,7]]]],[1173,1177,1181,1185,1192,1193,1195]]],["butlers",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1174]]],["butlership",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1193]]],["cupbearer",[1,1,[[15,1,1,0,1,[[413,1,1,0,1]]]],[12307]]],["cupbearers",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9084,11368]]],["drink",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[22,1,1,1,2,[[710,1,1,1,2]]]],[3031,18265]]],["drinking",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9100,11384]]],["watered",[1,1,[[0,1,1,0,1,[[12,1,1,0,1]]]],[328]]]]},{"k":"H4946","v":[["weight",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20539]]]]},{"k":"H4947","v":[["*",[3,3,[[1,3,3,0,3,[[61,3,3,0,3]]]],[1823,1838,1839]]],["lintel",[2,2,[[1,2,2,0,2,[[61,2,2,0,2]]]],[1838,1839]]],["post",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1823]]]]},{"k":"H4948","v":[["*",[49,42,[[0,3,2,0,2,[[23,2,1,0,1],[42,1,1,1,2]]],[2,2,2,2,4,[[108,1,1,2,3],[115,1,1,3,4]]],[3,12,12,4,16,[[123,12,12,4,16]]],[5,1,1,16,17,[[193,1,1,16,17]]],[6,1,1,17,18,[[218,1,1,17,18]]],[8,1,1,18,19,[[252,1,1,18,19]]],[9,3,2,19,21,[[278,1,1,19,20],[287,2,1,20,21]]],[10,2,2,21,23,[[297,1,1,21,22],[300,1,1,22,23]]],[11,1,1,23,24,[[337,1,1,23,24]]],[12,13,9,24,33,[[357,1,1,24,25],[358,1,1,25,26],[359,2,2,26,28],[365,9,5,28,33]]],[13,3,3,33,36,[[369,1,1,33,34],[370,1,1,34,35],[375,1,1,35,36]]],[14,3,2,36,38,[[410,3,2,36,38]]],[17,1,1,38,39,[[463,1,1,38,39]]],[23,1,1,39,40,[[796,1,1,39,40]]],[25,2,2,40,42,[[805,1,1,40,41],[806,1,1,41,42]]]],[613,1311,3316,3550,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,5997,6745,7623,8316,8596,8981,9093,10238,10928,10959,10967,10978,11157,11158,11159,11160,11161,11238,11264,11377,12231,12235,13529,20296,20545,20547]]],["weigh",[2,2,[[12,1,1,0,1,[[357,1,1,0,1]]],[25,1,1,1,2,[[806,1,1,1,2]]]],[10928,20547]]],["weight",[47,40,[[0,3,2,0,2,[[23,2,1,0,1],[42,1,1,1,2]]],[2,2,2,2,4,[[108,1,1,2,3],[115,1,1,3,4]]],[3,12,12,4,16,[[123,12,12,4,16]]],[5,1,1,16,17,[[193,1,1,16,17]]],[6,1,1,17,18,[[218,1,1,17,18]]],[8,1,1,18,19,[[252,1,1,18,19]]],[9,3,2,19,21,[[278,1,1,19,20],[287,2,1,20,21]]],[10,2,2,21,23,[[297,1,1,21,22],[300,1,1,22,23]]],[11,1,1,23,24,[[337,1,1,23,24]]],[12,12,8,24,32,[[358,1,1,24,25],[359,2,2,25,27],[365,9,5,27,32]]],[13,3,3,32,35,[[369,1,1,32,33],[370,1,1,33,34],[375,1,1,34,35]]],[14,3,2,35,37,[[410,3,2,35,37]]],[17,1,1,37,38,[[463,1,1,37,38]]],[23,1,1,38,39,[[796,1,1,38,39]]],[25,1,1,39,40,[[805,1,1,39,40]]]],[613,1311,3316,3550,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,5997,6745,7623,8316,8596,8981,9093,10238,10959,10967,10978,11157,11158,11159,11160,11161,11238,11264,11377,12231,12235,13529,20296,20545]]]]},{"k":"H4949","v":[["plummet",[2,2,[[11,1,1,0,1,[[333,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]]],[10132,18181]]]]},{"k":"H4950","v":[["deep",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21331]]]]},{"k":"H4951","v":[["government",[2,2,[[22,2,2,0,2,[[687,2,2,0,2]]]],[17835,17836]]]]},{"k":"H4952","v":[["liquor",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3826]]]]},{"k":"H4953","v":[["flute",[4,4,[[26,4,4,0,4,[[852,4,4,0,4]]]],[21812,21814,21817,21822]]]]},{"k":"H4954","v":[["Mishraites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10359]]]]},{"k":"H4955","v":[["burnings",[2,2,[[22,1,1,0,1,[[711,1,1,0,1]]],[23,1,1,1,2,[[778,1,1,1,2]]]],[18291,19806]]]]},{"k":"H4956","v":[["Misrephothmaim",[2,2,[[5,2,2,0,2,[[197,1,1,0,1],[199,1,1,1,2]]]],[6115,6160]]]]},{"k":"H4957","v":[["+",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1076,10299]]]]},{"k":"H4958","v":[["pan",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8326]]]]},{"k":"H4959","v":[["*",[9,8,[[0,4,4,0,4,[[26,2,2,0,2],[30,2,2,2,4]]],[1,1,1,4,5,[[59,1,1,4,5]]],[4,2,1,5,6,[[180,2,1,5,6]]],[17,2,2,6,8,[[440,1,1,6,7],[447,1,1,7,8]]]],[739,749,907,910,1798,5640,12965,13153]]],["+",[2,2,[[0,2,2,0,2,[[30,2,2,0,2]]]],[907,910]]],["feel",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[739]]],["felt",[2,2,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,1,1,1,2,[[59,1,1,1,2]]]],[749,1798]]],["grope",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[17,2,2,1,3,[[440,1,1,1,2],[447,1,1,2,3]]]],[5640,12965,13153]]],["gropeth",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5640]]]]},{"k":"H4960","v":[["*",[46,43,[[0,5,5,0,5,[[18,1,1,0,1],[20,1,1,1,2],[25,1,1,2,3],[28,1,1,3,4],[39,1,1,4,5]]],[6,3,3,5,8,[[224,3,3,5,8]]],[8,2,1,8,9,[[260,2,1,8,9]]],[9,1,1,9,10,[[269,1,1,9,10]]],[10,1,1,10,11,[[293,1,1,10,11]]],[14,1,1,11,12,[[405,1,1,11,12]]],[16,20,19,12,31,[[426,3,3,12,15],[427,2,1,15,16],[430,6,6,16,22],[431,1,1,22,23],[432,3,3,23,26],[433,1,1,26,27],[434,4,4,27,31]]],[17,2,2,31,33,[[436,2,2,31,33]]],[19,1,1,33,34,[[642,1,1,33,34]]],[20,1,1,34,35,[[665,1,1,34,35]]],[22,3,2,35,37,[[683,1,1,35,36],[703,2,1,36,37]]],[23,2,2,37,39,[[760,1,1,37,38],[795,1,1,38,39]]],[26,4,4,39,43,[[850,4,4,39,43]]]],[460,521,722,817,1192,6919,6921,6926,7897,8101,8831,12104,12705,12707,12711,12742,12783,12784,12785,12787,12791,12793,12807,12809,12814,12815,12834,12851,12852,12853,12856,12873,12874,16822,17431,17751,18124,19344,20251,21742,21745,21747,21753]]],["+",[2,2,[[16,1,1,0,1,[[432,1,1,0,1]]],[17,1,1,1,2,[[436,1,1,1,2]]]],[12814,12873]]],["banquet",[9,9,[[16,9,9,0,9,[[430,6,6,0,6],[431,1,1,6,7],[432,2,2,7,9]]]],[12783,12784,12785,12787,12791,12793,12807,12809,12815]]],["drank",[2,2,[[26,2,2,0,2,[[850,2,2,0,2]]]],[21742,21745]]],["drink",[3,3,[[14,1,1,0,1,[[405,1,1,0,1]]],[26,2,2,1,3,[[850,2,2,1,3]]]],[12104,21747,21753]]],["feast",[21,18,[[0,5,5,0,5,[[18,1,1,0,1],[20,1,1,1,2],[25,1,1,2,3],[28,1,1,3,4],[39,1,1,4,5]]],[6,3,3,5,8,[[224,3,3,5,8]]],[8,2,1,8,9,[[260,2,1,8,9]]],[9,1,1,9,10,[[269,1,1,9,10]]],[10,1,1,10,11,[[293,1,1,10,11]]],[16,6,5,11,16,[[426,3,3,11,14],[427,2,1,14,15],[433,1,1,15,16]]],[19,1,1,16,17,[[642,1,1,16,17]]],[22,2,1,17,18,[[703,2,1,17,18]]]],[460,521,722,817,1192,6919,6921,6926,7897,8101,8831,12705,12707,12711,12742,12834,16822,18124]]],["feasting",[7,7,[[16,4,4,0,4,[[434,4,4,0,4]]],[17,1,1,4,5,[[436,1,1,4,5]]],[20,1,1,5,6,[[665,1,1,5,6]]],[23,1,1,6,7,[[760,1,1,6,7]]]],[12851,12852,12853,12856,12874,17431,19344]]],["feasts",[2,2,[[22,1,1,0,1,[[683,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[17751,20251]]]]},{"k":"H4961","v":[["banquet",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21884]]]]},{"k":"H4962","v":[["*",[22,21,[[0,1,1,0,1,[[33,1,1,0,1]]],[4,6,6,1,7,[[154,1,1,1,2],[155,1,1,2,3],[156,1,1,3,4],[178,1,1,4,5],[180,1,1,5,6],[185,1,1,6,7]]],[12,1,1,7,8,[[353,1,1,7,8]]],[17,6,6,8,14,[[446,2,2,8,10],[454,1,1,10,11],[457,1,1,11,12],[459,1,1,12,13],[466,1,1,13,14]]],[18,4,3,14,17,[[494,2,1,14,15],[503,1,1,15,16],[582,1,1,16,17]]],[22,3,3,17,20,[[681,1,1,17,18],[683,1,1,18,19],[719,1,1,19,20]]],[23,1,1,20,21,[[788,1,1,20,21]]]],[1010,4972,4981,5031,5571,5673,5816,10839,13111,13119,13316,13404,13448,13619,14117,14277,15618,17732,17752,18465,20038]]],["+",[3,2,[[4,1,1,0,1,[[178,1,1,0,1]]],[18,2,1,1,2,[[494,2,1,1,2]]]],[5571,14117]]],["Men",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13448]]],["few",[3,3,[[0,1,1,0,1,[[33,1,1,0,1]]],[4,1,1,1,2,[[156,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]]],[1010,5031,10839]]],["friends",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13316]]],["men",[11,11,[[4,3,3,0,3,[[154,1,1,0,1],[155,1,1,1,2],[185,1,1,2,3]]],[17,4,4,3,7,[[446,2,2,3,5],[457,1,1,5,6],[466,1,1,6,7]]],[18,1,1,7,8,[[582,1,1,7,8]]],[22,3,3,8,11,[[681,1,1,8,9],[683,1,1,9,10],[719,1,1,10,11]]]],[4972,4981,5816,13111,13119,13404,13619,15618,17732,17752,18465]]],["number",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5673]]],["persons",[1,1,[[18,1,1,0,1,[[503,1,1,0,1]]]],[14277]]],["small",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20038]]]]},{"k":"H4963","v":[["straw",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18128]]]]},{"k":"H4964","v":[["*",[4,4,[[11,1,1,0,1,[[331,1,1,0,1]]],[18,1,1,1,2,[[509,1,1,1,2]]],[19,1,1,2,3,[[653,1,1,2,3]]],[22,1,1,3,4,[[715,1,1,3,4]]]],[10089,14364,17144,18381]]],["bit",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14364]]],["bridle",[3,3,[[11,1,1,0,1,[[331,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]]],[10089,17144,18381]]]]},{"k":"H4965","v":[["Methegammah",[1,1,[[9,1,1,0,1,[[274,1,1,0,1]]]],[8210]]]]},{"k":"H4966","v":[["*",[12,11,[[6,2,2,0,2,[[224,2,2,0,2]]],[18,1,1,2,3,[[496,1,1,2,3]]],[19,3,3,3,6,[[643,1,1,3,4],[651,1,1,4,5],[654,1,1,5,6]]],[20,2,2,6,8,[[663,1,1,6,7],[669,1,1,7,8]]],[21,1,1,8,9,[[672,1,1,8,9]]],[22,2,1,9,10,[[683,2,1,9,10]]],[25,1,1,10,11,[[804,1,1,10,11]]]],[6923,6927,14178,16864,17092,17176,17409,17520,17557,17759,20505]]],["sweet",[8,7,[[19,3,3,0,3,[[643,1,1,0,1],[651,1,1,1,2],[654,1,1,2,3]]],[20,2,2,3,5,[[663,1,1,3,4],[669,1,1,4,5]]],[21,1,1,5,6,[[672,1,1,5,6]]],[22,2,1,6,7,[[683,2,1,6,7]]]],[16864,17092,17176,17409,17520,17557,17759]]],["sweeter",[2,2,[[6,1,1,0,1,[[224,1,1,0,1]]],[18,1,1,1,2,[[496,1,1,1,2]]]],[6927,14178]]],["sweetness",[2,2,[[6,1,1,0,1,[[224,1,1,0,1]]],[25,1,1,1,2,[[804,1,1,1,2]]]],[6923,20505]]]]},{"k":"H4967","v":[["Methusael",[2,1,[[0,2,1,0,1,[[3,2,1,0,1]]]],[97]]]]},{"k":"H4968","v":[["Methuselah",[6,6,[[0,5,5,0,5,[[4,5,5,0,5]]],[12,1,1,5,6,[[338,1,1,5,6]]]],[126,127,130,131,132,10255]]]]},{"k":"H4969","v":[["out",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18442]]]]},{"k":"H4970","v":[["*",[40,37,[[0,1,1,0,1,[[29,1,1,0,1]]],[1,3,3,1,4,[[57,1,1,1,2],[59,2,2,2,4]]],[3,1,1,4,5,[[130,1,1,4,5]]],[8,1,1,5,6,[[236,1,1,5,6]]],[10,1,1,6,7,[[308,1,1,6,7]]],[15,2,1,7,8,[[414,2,1,7,8]]],[17,1,1,8,9,[[442,1,1,8,9]]],[18,13,12,9,21,[[483,1,1,9,10],[518,1,1,10,11],[519,1,1,11,12],[551,1,1,12,13],[557,1,1,13,14],[559,1,1,14,15],[567,1,1,15,16],[571,3,2,16,18],[578,1,1,18,19],[596,2,2,19,21]]],[19,4,3,21,24,[[628,1,1,21,22],[633,2,1,22,23],[650,1,1,23,24]]],[22,1,1,24,25,[[684,1,1,24,25]]],[23,6,6,25,31,[[748,2,2,25,27],[756,1,1,27,28],[767,1,1,28,29],[775,1,1,29,30],[791,1,1,30,31]]],[26,2,2,31,33,[[857,1,1,31,32],[861,1,1,32,33]]],[27,1,1,33,34,[[869,1,1,33,34]]],[29,1,1,34,35,[[886,1,1,34,35]]],[34,1,1,35,36,[[904,1,1,35,36]]],[37,1,1,36,37,[[911,1,1,36,37]]]],[860,1719,1780,1784,4135,7226,9362,12313,13012,13988,14547,14557,15058,15202,15235,15391,15434,15439,15515,15980,15982,16422,16549,17079,17780,19041,19048,19253,19510,19713,20078,21974,22087,22199,22486,22754,22890]]],["+",[25,24,[[1,2,2,0,2,[[59,2,2,0,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[10,1,1,3,4,[[308,1,1,3,4]]],[18,7,6,4,10,[[483,1,1,4,5],[551,1,1,5,6],[557,1,1,6,7],[559,1,1,7,8],[567,1,1,8,9],[571,2,1,9,10]]],[19,2,2,10,12,[[628,1,1,10,11],[633,1,1,11,12]]],[22,1,1,12,13,[[684,1,1,12,13]]],[23,6,6,13,19,[[748,2,2,13,15],[756,1,1,15,16],[767,1,1,16,17],[775,1,1,17,18],[791,1,1,18,19]]],[26,2,2,19,21,[[857,1,1,19,20],[861,1,1,20,21]]],[27,1,1,21,22,[[869,1,1,21,22]]],[34,1,1,22,23,[[904,1,1,22,23]]],[37,1,1,23,24,[[911,1,1,23,24]]]],[1780,1784,4135,9362,13988,15058,15202,15235,15391,15434,16422,16549,17780,19041,19048,19253,19510,19713,20078,21974,22087,22199,22754,22890]]],["When",[4,4,[[17,1,1,0,1,[[442,1,1,0,1]]],[18,2,2,1,3,[[518,1,1,1,2],[596,1,1,2,3]]],[29,1,1,3,4,[[886,1,1,3,4]]]],[13012,14547,15980,22486]]],["long",[2,2,[[8,1,1,0,1,[[236,1,1,0,1]]],[15,1,1,1,2,[[414,1,1,1,2]]]],[7226,12313]]],["when",[9,9,[[0,1,1,0,1,[[29,1,1,0,1]]],[1,1,1,1,2,[[57,1,1,1,2]]],[15,1,1,2,3,[[414,1,1,2,3]]],[18,4,4,3,7,[[519,1,1,3,4],[571,1,1,4,5],[578,1,1,5,6],[596,1,1,6,7]]],[19,2,2,7,9,[[633,1,1,7,8],[650,1,1,8,9]]]],[860,1719,12313,14557,15439,15515,15982,16549,17079]]]]},{"k":"H4971","v":[["*",[5,5,[[1,3,3,0,3,[[54,1,1,0,1],[79,2,2,1,3]]],[13,1,1,3,4,[[390,1,1,3,4]]],[25,1,1,4,5,[[846,1,1,4,5]]]],[1640,2414,2419,11690,21641]]],["composition",[2,2,[[1,2,2,0,2,[[79,2,2,0,2]]]],[2414,2419]]],["measure",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21641]]],["state",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11690]]],["tale",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1640]]]]},{"k":"H4972","v":[["+",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23102]]]]},{"k":"H4973","v":[["*",[3,3,[[17,1,1,0,1,[[464,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]],[28,1,1,2,3,[[876,1,1,2,3]]]],[13549,17265,22297]]],["jaws",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13549]]],["teeth",[2,2,[[19,1,1,0,1,[[657,1,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]]],[17265,22297]]]]},{"k":"H4974","v":[["*",[4,4,[[6,1,1,0,1,[[230,1,1,0,1]]],[18,2,2,1,3,[[515,2,2,1,3]]],[22,1,1,3,4,[[679,1,1,3,4]]]],[7102,14493,14497,17660]]],["men",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7102]]],["soundness",[3,3,[[18,2,2,0,2,[[515,2,2,0,2]]],[22,1,1,2,3,[[679,1,1,2,3]]]],[14493,14497,17660]]]]},{"k":"H4975","v":[["*",[47,45,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,2,2,1,3,[[61,1,1,1,2],[77,1,1,2,3]]],[4,1,1,3,4,[[185,1,1,3,4]]],[9,1,1,4,5,[[286,1,1,4,5]]],[10,5,5,5,10,[[292,1,1,5,6],[302,1,1,6,7],[308,1,1,7,8],[310,2,2,8,10]]],[11,3,3,10,13,[[313,1,1,10,11],[316,1,1,11,12],[321,1,1,12,13]]],[13,1,1,13,14,[[376,1,1,13,14]]],[15,1,1,14,15,[[416,1,1,14,15]]],[17,2,2,15,17,[[447,1,1,15,16],[475,1,1,16,17]]],[18,2,2,17,19,[[543,1,1,17,18],[546,1,1,18,19]]],[19,2,2,19,21,[[657,1,1,19,20],[658,1,1,20,21]]],[22,4,4,21,25,[[689,1,1,21,22],[698,1,1,22,23],[699,1,1,23,24],[723,1,1,24,25]]],[23,6,6,25,31,[[745,1,1,25,26],[757,4,4,26,30],[792,1,1,30,31]]],[25,12,10,31,41,[[802,2,1,31,32],[809,2,1,32,33],[810,3,3,33,36],[822,1,1,36,37],[824,1,1,37,38],[830,1,1,38,39],[845,1,1,39,40],[848,1,1,40,41]]],[26,1,1,41,42,[[859,1,1,41,42]]],[29,1,1,42,43,[[886,1,1,42,43]]],[33,2,2,43,45,[[901,2,2,43,45]]]],[1117,1827,2335,5821,8562,8775,9161,9387,9439,9440,9541,9632,9757,11405,12377,13146,13880,14884,14958,17282,17301,17889,18031,18038,18562,18963,19267,19268,19270,19277,20117,20491,20606,20624,20625,20633,20950,21022,21190,21617,21683,22020,22491,22700,22709]]],["+",[6,6,[[1,1,1,0,1,[[77,1,1,0,1]]],[10,1,1,1,2,[[302,1,1,1,2]]],[13,1,1,2,3,[[376,1,1,2,3]]],[19,1,1,3,4,[[657,1,1,3,4]]],[25,1,1,4,5,[[809,1,1,4,5]]],[33,1,1,5,6,[[901,1,1,5,6]]]],[2335,9161,11405,17282,20606,22700]]],["loins",[37,36,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[9,1,1,3,4,[[286,1,1,3,4]]],[10,4,4,4,8,[[292,1,1,4,5],[308,1,1,5,6],[310,2,2,6,8]]],[11,3,3,8,11,[[313,1,1,8,9],[316,1,1,9,10],[321,1,1,10,11]]],[17,2,2,11,13,[[447,1,1,11,12],[475,1,1,12,13]]],[18,2,2,13,15,[[543,1,1,13,14],[546,1,1,14,15]]],[19,1,1,15,16,[[658,1,1,15,16]]],[22,4,4,16,20,[[689,1,1,16,17],[698,1,1,17,18],[699,1,1,18,19],[723,1,1,19,20]]],[23,6,6,20,26,[[745,1,1,20,21],[757,4,4,21,25],[792,1,1,25,26]]],[25,8,7,26,33,[[802,2,1,26,27],[809,1,1,27,28],[822,1,1,28,29],[824,1,1,29,30],[830,1,1,30,31],[845,1,1,31,32],[848,1,1,32,33]]],[26,1,1,33,34,[[859,1,1,33,34]]],[29,1,1,34,35,[[886,1,1,34,35]]],[33,1,1,35,36,[[901,1,1,35,36]]]],[1117,1827,5821,8562,8775,9387,9439,9440,9541,9632,9757,13146,13880,14884,14958,17301,17889,18031,18038,18562,18963,19267,19268,19270,19277,20117,20491,20606,20950,21022,21190,21617,21683,22020,22491,22709]]],["side",[4,4,[[15,1,1,0,1,[[416,1,1,0,1]]],[25,3,3,1,4,[[810,3,3,1,4]]]],[12377,20624,20625,20633]]]]},{"k":"H4976","v":[["*",[5,5,[[0,1,1,0,1,[[33,1,1,0,1]]],[3,1,1,1,2,[[134,1,1,1,2]]],[19,3,3,2,5,[[645,1,1,2,3],[646,1,1,3,4],[648,1,1,4,5]]]],[992,4268,16917,16931,16998]]],["+",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16931]]],["gift",[4,4,[[0,1,1,0,1,[[33,1,1,0,1]]],[3,1,1,1,2,[[134,1,1,1,2]]],[19,2,2,2,4,[[645,1,1,2,3],[648,1,1,3,4]]]],[992,4268,16917,16998]]]]},{"k":"H4977","v":[["Mattan",[3,3,[[11,1,1,0,1,[[323,1,1,0,1]]],[13,1,1,1,2,[[389,1,1,1,2]]],[23,1,1,2,3,[[782,1,1,2,3]]]],[9847,11673,19896]]]]},{"k":"H4978","v":[["gifts",[3,3,[[26,3,3,0,3,[[851,2,2,0,2],[854,1,1,2,3]]]],[21764,21806,21891]]]]},{"k":"H4979","v":[["*",[17,17,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,1,1,1,2,[[77,1,1,1,2]]],[2,1,1,2,3,[[112,1,1,2,3]]],[3,3,3,3,6,[[134,3,3,3,6]]],[4,1,1,6,7,[[168,1,1,6,7]]],[13,1,1,7,8,[[387,1,1,7,8]]],[16,1,1,8,9,[[434,1,1,8,9]]],[18,1,1,9,10,[[545,1,1,9,10]]],[19,1,1,10,11,[[642,1,1,10,11]]],[20,1,1,11,12,[[665,1,1,11,12]]],[25,5,5,12,17,[[821,3,3,12,15],[847,2,2,15,17]]]],[664,2331,3440,4263,4264,4286,5359,11627,12856,14918,16834,17436,20921,20926,20934,21671,21672]]],["+",[1,1,[[4,1,1,0,1,[[168,1,1,0,1]]]],[5359]]],["gift",[5,5,[[3,2,2,0,2,[[134,2,2,0,2]]],[20,1,1,2,3,[[665,1,1,2,3]]],[25,2,2,3,5,[[847,2,2,3,5]]]],[4263,4264,17436,21671,21672]]],["gifts",[11,11,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,1,1,1,2,[[77,1,1,1,2]]],[2,1,1,2,3,[[112,1,1,2,3]]],[3,1,1,3,4,[[134,1,1,3,4]]],[13,1,1,4,5,[[387,1,1,4,5]]],[16,1,1,5,6,[[434,1,1,5,6]]],[18,1,1,6,7,[[545,1,1,6,7]]],[19,1,1,7,8,[[642,1,1,7,8]]],[25,3,3,8,11,[[821,3,3,8,11]]]],[664,2331,3440,4286,11627,12856,14918,16834,20921,20926,20934]]]]},{"k":"H4980","v":[["*",[2,2,[[3,2,2,0,2,[[137,2,2,0,2]]]],[4358,4359]]],["+",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4359]]],["Mattanah",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4358]]]]},{"k":"H4981","v":[["Mithnite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10716]]]]},{"k":"H4982","v":[["Mattenai",[3,3,[[14,2,2,0,2,[[412,2,2,0,2]]],[15,1,1,2,3,[[424,1,1,2,3]]]],[12285,12289,12643]]]]},{"k":"H4983","v":[["Mattaniah",[16,16,[[11,1,1,0,1,[[336,1,1,0,1]]],[12,3,3,1,4,[[346,1,1,1,2],[362,2,2,2,4]]],[13,2,2,4,6,[[386,1,1,4,5],[395,1,1,5,6]]],[14,4,4,6,10,[[412,4,4,6,10]]],[15,6,6,10,16,[[423,2,2,10,12],[424,3,3,12,15],[425,1,1,15,16]]]],[10219,10630,11050,11062,11601,11804,12278,12279,12282,12289,12605,12610,12632,12649,12659,12684]]]]},{"k":"H4984","v":[["*",[2,2,[[10,1,1,0,1,[[291,1,1,0,1]]],[12,1,1,1,2,[[366,1,1,1,2]]]],[8722,11175]]],["exalted",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11175]]],["himself",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8722]]]]},{"k":"H4985","v":[["sweet",[5,5,[[1,1,1,0,1,[[64,1,1,0,1]]],[17,2,2,1,3,[[455,1,1,1,2],[456,1,1,2,3]]],[18,1,1,3,4,[[532,1,1,3,4]]],[19,1,1,4,5,[[636,1,1,4,5]]]],[1945,13338,13388,14746,16655]]]]},{"k":"H4986","v":[["sweetness",[2,2,[[19,2,2,0,2,[[643,1,1,0,1],[654,1,1,1,2]]]],[16861,17178]]]]},{"k":"H4987","v":[["sweetness",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6765]]]]},{"k":"H4988","v":[["sweetly",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13456]]]]},{"k":"H4989","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4788,4789]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4789]]],["Mithcah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4788]]]]},{"k":"H4990","v":[["Mithredath",[2,2,[[14,2,2,0,2,[[403,1,1,0,1],[406,1,1,1,2]]]],[12024,12117]]]]},{"k":"H4991","v":[["*",[6,6,[[10,1,1,0,1,[[303,1,1,0,1]]],[19,1,1,1,2,[[652,1,1,1,2]]],[20,2,2,2,4,[[661,1,1,2,3],[663,1,1,3,4]]],[25,2,2,4,6,[[847,2,2,4,6]]]],[9191,17127,17372,17416,21660,21666]]],["+",[2,2,[[25,2,2,0,2,[[847,2,2,0,2]]]],[21660,21666]]],["gift",[3,3,[[19,1,1,0,1,[[652,1,1,0,1]]],[20,2,2,1,3,[[661,1,1,1,2],[663,1,1,2,3]]]],[17127,17372,17416]]],["reward",[1,1,[[10,1,1,0,1,[[303,1,1,0,1]]]],[9191]]]]},{"k":"H4992","v":[["Mattathah",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12285]]]]},{"k":"H4993","v":[["Mattithiah",[8,8,[[12,6,6,0,6,[[346,1,1,0,1],[352,2,2,1,3],[353,1,1,3,4],[362,2,2,4,6]]],[14,1,1,6,7,[[412,1,1,6,7]]],[15,1,1,7,8,[[420,1,1,7,8]]]],[10646,10809,10812,10825,11049,11067,12295,12497]]]]},{"k":"H4994","v":[["*",[403,373,[[0,74,64,0,64,[[11,2,2,0,2],[12,3,3,2,5],[14,1,1,5,6],[15,2,1,6,7],[17,8,7,7,14],[18,9,6,14,20],[21,1,1,20,21],[23,8,8,21,29],[24,1,1,29,30],[25,1,1,30,31],[26,6,6,31,37],[29,2,2,37,39],[30,1,1,39,40],[31,2,2,40,42],[32,5,4,42,46],[33,1,1,46,47],[36,4,4,47,51],[37,2,2,51,53],[39,2,2,53,55],[43,2,2,55,57],[44,1,1,57,58],[46,4,2,58,60],[47,1,1,60,61],[49,5,3,61,64]]],[1,15,13,64,77,[[52,2,2,64,66],[53,3,3,66,69],[54,1,1,69,70],[59,2,2,70,72],[60,1,1,72,73],[81,1,1,73,74],[82,3,2,74,76],[83,2,1,76,77]]],[3,19,18,77,95,[[126,1,1,77,78],[127,1,1,78,79],[128,5,4,79,83],[130,2,2,83,85],[132,2,2,85,87],[136,2,2,87,89],[138,4,4,89,93],[139,2,2,93,95]]],[4,2,2,95,97,[[155,1,1,95,96],[156,1,1,96,97]]],[5,4,3,97,100,[[188,1,1,97,98],[193,2,1,98,99],[208,1,1,99,100]]],[6,31,28,100,128,[[211,1,1,100,101],[214,1,1,101,102],[216,4,3,102,105],[217,1,1,105,106],[218,1,1,106,107],[219,2,2,107,109],[220,1,1,109,110],[221,2,2,110,112],[222,1,1,112,113],[223,3,3,113,116],[224,1,1,116,117],[225,1,1,117,118],[226,4,3,118,121],[228,1,1,121,122],[229,7,6,122,128]]],[7,2,2,128,130,[[233,2,2,128,130]]],[8,36,34,130,164,[[237,1,1,130,131],[238,1,1,131,132],[244,4,3,132,135],[245,1,1,135,136],[249,2,2,136,138],[250,2,2,138,140],[251,4,4,140,144],[252,1,1,144,145],[254,1,1,145,146],[255,3,2,146,148],[257,3,3,148,151],[258,2,2,151,153],[260,4,4,153,157],[261,3,3,157,160],[262,1,1,160,161],[263,2,2,161,163],[265,1,1,163,164]]],[9,36,33,164,197,[[267,2,2,164,166],[268,1,1,166,167],[273,1,1,167,168],[279,10,9,168,177],[280,9,7,177,184],[281,2,2,184,186],[282,1,1,186,187],[283,2,2,187,189],[284,2,2,189,191],[285,1,1,191,192],[286,1,1,192,193],[290,4,4,193,197]]],[10,19,17,197,214,[[291,1,1,197,198],[292,1,1,198,199],[298,1,1,199,200],[303,1,1,200,201],[304,1,1,201,202],[307,3,3,202,205],[308,1,1,205,206],[309,1,1,206,207],[310,6,5,207,212],[312,3,2,212,214]]],[11,34,32,214,246,[[313,1,1,214,215],[314,7,6,215,221],[316,5,5,221,226],[317,6,5,226,231],[318,5,5,231,236],[319,2,2,236,238],[320,1,1,238,239],[321,2,2,239,241],[330,3,3,241,244],[331,1,1,244,245],[332,1,1,245,246]]],[12,5,5,246,251,[[358,3,3,246,249],[359,1,1,249,250],[366,1,1,250,251]]],[13,3,3,251,254,[[372,1,1,251,252],[384,2,2,252,254]]],[14,1,1,254,255,[[412,1,1,254,255]]],[15,6,5,255,260,[[413,4,3,255,258],[417,2,2,258,260]]],[17,23,23,260,283,[[436,1,1,260,261],[437,1,1,261,262],[439,1,1,262,263],[440,1,1,263,264],[441,1,1,264,265],[443,1,1,265,266],[445,1,1,266,267],[447,1,1,267,268],[448,2,2,268,270],[452,2,2,270,272],[457,2,2,272,274],[467,1,1,274,275],[468,2,2,275,277],[473,1,1,277,278],[475,4,4,278,282],[477,1,1,282,283]]],[18,16,15,283,298,[[484,1,1,283,284],[527,1,1,284,285],[557,1,1,285,286],[592,1,1,286,287],[593,2,2,287,289],[595,5,4,289,293],[596,2,2,293,295],[599,1,1,295,296],[601,1,1,296,297],[606,1,1,297,298]]],[20,1,1,298,299,[[660,1,1,298,299]]],[21,2,2,299,301,[[673,1,1,299,300],[677,1,1,300,301]]],[22,17,17,301,318,[[679,1,1,301,302],[683,3,3,302,305],[685,2,2,305,307],[697,1,1,307,308],[707,2,2,308,310],[714,3,3,310,313],[716,1,1,313,314],[725,2,2,314,316],[729,1,1,316,317],[742,1,1,317,318]]],[23,30,28,318,346,[[748,1,1,318,319],[749,3,3,319,322],[751,1,1,322,323],[761,1,1,323,324],[762,3,2,324,326],[765,1,1,326,327],[769,1,1,327,328],[771,1,1,328,329],[772,2,2,329,331],[774,1,1,331,332],[776,1,1,332,333],[779,1,1,333,334],[780,2,2,334,336],[781,3,2,336,338],[782,4,4,338,342],[784,1,1,342,343],[786,1,1,343,344],[788,1,1,344,345],[789,1,1,345,346]]],[24,1,1,346,347,[[797,1,1,346,347]]],[25,5,5,347,352,[[809,2,2,347,349],[818,1,1,349,350],[819,1,1,350,351],[834,1,1,351,352]]],[26,2,2,352,354,[[850,1,1,352,353],[858,1,1,353,354]]],[29,2,2,354,356,[[885,2,2,354,356]]],[31,3,3,356,359,[[889,2,2,356,358],[892,1,1,358,359]]],[32,4,4,359,363,[[895,2,2,359,361],[898,2,2,361,363]]],[36,4,4,363,367,[[910,4,4,363,367]]],[37,3,3,367,370,[[911,1,1,367,368],[913,1,1,368,369],[915,1,1,369,370]]],[38,3,3,370,373,[[925,2,2,370,372],[927,1,1,372,373]]]],[309,311,326,327,332,365,383,427,428,445,451,454,455,456,459,464,465,475,476,477,549,593,603,605,608,614,633,634,636,688,720,729,730,736,746,748,753,844,857,885,939,957,970,971,974,975,988,1089,1097,1099,1115,1135,1144,1180,1186,1342,1357,1362,1424,1449,1460,1510,1511,1523,1582,1597,1607,1614,1619,1635,1788,1794,1808,2470,2486,2491,2505,4019,4039,4065,4070,4071,4072,4125,4127,4202,4220,4321,4328,4381,4391,4392,4394,4429,4443,5000,5036,5881,5995,6452,6533,6618,6671,6672,6693,6697,6724,6756,6792,6826,6846,6848,6875,6887,6888,6899,6921,6931,6955,6959,6977,6998,7030,7032,7033,7035,7047,7048,7151,7156,7276,7293,7394,7397,7409,7433,7525,7537,7585,7590,7610,7611,7612,7617,7635,7708,7759,7766,7790,7794,7799,7821,7832,7869,7885,7886,7889,7913,7916,7924,7935,7950,7964,7985,8026,8031,8063,8182,8322,8323,8324,8330,8334,8341,8342,8343,8345,8358,8367,8368,8371,8373,8374,8377,8396,8420,8435,8450,8454,8497,8500,8548,8570,8694,8702,8706,8709,8729,8787,9011,9190,9220,9327,9328,9338,9384,9407,9415,9439,9440,9443,9445,9485,9493,9546,9553,9555,9557,9560,9567,9570,9612,9613,9616,9625,9629,9654,9655,9662,9664,9669,9675,9676,9677,9691,9692,9719,9720,9731,9768,9790,10043,10047,10050,10080,10101,10942,10947,10951,10969,11184,11322,11546,11554,12266,12302,12304,12307,12392,12393,12880,12896,12937,12952,13007,13037,13095,13135,13159,13171,13263,13270,13410,13411,13649,13651,13652,13796,13871,13874,13879,13880,13926,14004,14690,15212,15832,15862,15866,15871,15872,15873,15894,15974,16006,16097,16103,16133,17334,17573,17635,17672,17740,17742,17744,17785,17795,18016,18204,18205,18334,18338,18341,18393,18611,18612,18694,18894,19058,19059,19079,19082,19131,19372,19395,19397,19442,19539,19614,19625,19633,19673,19739,19838,19857,19859,19877,19894,19899,19907,19915,19920,19956,19977,20014,20043,20328,20609,20612,20837,20874,21310,21749,22004,22466,22469,22539,22545,22571,22609,22617,22649,22653,22857,22866,22870,22873,22882,22920,22941,23097,23098,23130]]],["+",[16,16,[[0,2,2,0,2,[[21,1,1,0,1],[32,1,1,1,2]]],[1,1,1,2,3,[[82,1,1,2,3]]],[6,1,1,3,4,[[211,1,1,3,4]]],[8,3,3,4,7,[[244,1,1,4,5],[255,1,1,5,6],[260,1,1,6,7]]],[9,1,1,7,8,[[279,1,1,7,8]]],[10,1,1,8,9,[[303,1,1,8,9]]],[11,3,3,9,12,[[320,1,1,9,10],[321,1,1,10,11],[332,1,1,11,12]]],[22,1,1,12,13,[[683,1,1,12,13]]],[31,1,1,13,14,[[892,1,1,13,14]]],[32,1,1,14,15,[[898,1,1,14,15]]],[36,1,1,15,16,[[910,1,1,15,16]]]],[549,971,2486,6533,7394,7766,7869,8334,9190,9731,9790,10101,17744,22571,22649,22866]]],["Let",[1,1,[[3,1,1,0,1,[[128,1,1,0,1]]]],[4071]]],["Now",[3,3,[[12,1,1,0,1,[[366,1,1,0,1]]],[18,1,1,1,2,[[527,1,1,1,2]]],[22,1,1,2,3,[[683,1,1,2,3]]]],[11184,14690,17740]]],["Oh",[6,6,[[0,4,4,0,4,[[17,2,2,0,2],[18,2,2,2,4]]],[18,1,1,4,5,[[484,1,1,4,5]]],[23,1,1,5,6,[[788,1,1,5,6]]]],[454,456,475,477,14004,20014]]],["beseech",[2,2,[[15,1,1,0,1,[[413,1,1,0,1]]],[18,1,1,1,2,[[557,1,1,1,2]]]],[12304,15212]]],["go",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19395]]],["now",[156,154,[[0,24,24,0,24,[[11,1,1,0,1],[12,1,1,1,2],[14,1,1,2,3],[15,1,1,3,4],[17,4,4,4,8],[18,4,4,8,12],[23,1,1,12,13],[25,1,1,13,14],[26,3,3,14,17],[30,1,1,17,18],[32,2,2,18,20],[36,1,1,20,21],[46,1,1,21,22],[49,2,2,22,24]]],[1,5,5,24,29,[[52,1,1,24,25],[53,1,1,25,26],[59,1,1,26,27],[60,1,1,27,28],[83,1,1,28,29]]],[3,3,3,29,32,[[128,2,2,29,31],[136,1,1,31,32]]],[4,1,1,32,33,[[156,1,1,32,33]]],[5,2,2,33,35,[[193,1,1,33,34],[208,1,1,34,35]]],[6,7,7,35,42,[[216,2,2,35,37],[222,1,1,37,38],[223,1,1,38,39],[224,1,1,39,40],[229,2,2,40,42]]],[7,1,1,42,43,[[233,1,1,42,43]]],[8,10,9,43,52,[[244,2,1,43,44],[249,1,1,44,45],[251,3,3,45,48],[252,1,1,48,49],[257,2,2,49,51],[262,1,1,51,52]]],[9,16,16,52,68,[[268,1,1,52,53],[273,1,1,53,54],[279,4,4,54,58],[280,5,5,58,63],[283,2,2,63,65],[284,1,1,65,66],[290,2,2,66,68]]],[10,3,3,68,71,[[308,1,1,68,69],[310,1,1,69,70],[312,1,1,70,71]]],[11,9,9,71,80,[[314,1,1,71,72],[316,2,2,72,74],[317,2,2,74,76],[318,1,1,76,77],[319,1,1,77,78],[321,1,1,78,79],[330,1,1,79,80]]],[12,2,2,80,82,[[358,1,1,80,81],[359,1,1,81,82]]],[14,1,1,82,83,[[412,1,1,82,83]]],[15,2,2,83,85,[[413,2,2,83,85]]],[17,15,15,85,100,[[436,1,1,85,86],[437,1,1,86,87],[440,1,1,87,88],[447,1,1,88,89],[448,2,2,89,91],[452,2,2,91,93],[457,1,1,93,94],[468,1,1,94,95],[473,1,1,95,96],[475,4,4,96,100]]],[18,11,10,100,110,[[592,1,1,100,101],[593,2,2,101,103],[595,5,4,103,107],[599,1,1,107,108],[601,1,1,108,109],[606,1,1,109,110]]],[20,1,1,110,111,[[660,1,1,110,111]]],[21,2,2,111,113,[[673,1,1,111,112],[677,1,1,112,113]]],[22,9,9,113,122,[[679,1,1,113,114],[685,2,2,114,116],[697,1,1,116,117],[714,1,1,117,118],[716,1,1,118,119],[725,2,2,119,121],[729,1,1,121,122]]],[23,20,20,122,142,[[748,1,1,122,123],[749,3,3,123,126],[751,1,1,126,127],[761,1,1,127,128],[762,2,2,128,130],[769,1,1,130,131],[771,1,1,131,132],[772,2,2,132,134],[774,1,1,134,135],[779,1,1,135,136],[780,2,2,136,138],[781,1,1,138,139],[782,2,2,139,141],[789,1,1,141,142]]],[25,4,4,142,146,[[809,2,2,142,144],[818,1,1,144,145],[819,1,1,145,146]]],[32,1,1,146,147,[[898,1,1,146,147]]],[36,2,2,147,149,[[910,2,2,147,149]]],[37,3,3,149,152,[[911,1,1,149,150],[913,1,1,150,151],[915,1,1,151,152]]],[38,2,2,152,154,[[925,1,1,152,153],[927,1,1,153,154]]]],[309,332,365,383,427,445,451,455,459,465,476,477,633,720,729,736,753,885,970,975,1115,1449,1510,1523,1582,1607,1788,1808,2505,4065,4072,4321,5036,5995,6452,6671,6693,6875,6887,6921,7033,7048,7151,7397,7525,7610,7611,7612,7635,7794,7799,7935,8063,8182,8324,8341,8342,8345,8358,8371,8373,8374,8377,8450,8454,8497,8694,8706,9384,9439,9493,9567,9612,9616,9655,9662,9675,9719,9768,10043,10947,10969,12266,12302,12307,12880,12896,12952,13135,13159,13171,13263,13270,13410,13652,13796,13871,13874,13879,13880,15832,15862,15866,15871,15872,15873,15894,16097,16103,16133,17334,17573,17635,17672,17785,17795,18016,18334,18393,18611,18612,18694,19058,19059,19079,19082,19131,19372,19395,19397,19539,19614,19625,19633,19673,19838,19857,19859,19877,19907,19920,20043,20609,20612,20837,20874,22653,22857,22873,22882,22920,22941,23097,23130]]],["pray",[7,7,[[5,1,1,0,1,[[188,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[7,1,1,2,3,[[233,1,1,2,3]]],[9,1,1,3,4,[[284,1,1,3,4]]],[15,3,3,4,7,[[413,1,1,4,5],[417,2,2,5,7]]]],[5881,6792,7156,8500,12307,12392,12393]]],["thee",[180,176,[[0,35,34,0,34,[[11,1,1,0,1],[12,2,2,1,3],[15,1,1,3,4],[17,1,1,4,5],[23,7,7,5,12],[24,1,1,12,13],[26,3,3,13,16],[29,2,2,16,18],[31,2,2,18,20],[32,2,2,20,22],[36,2,2,22,24],[37,2,2,24,26],[39,1,1,26,27],[43,2,2,27,29],[46,3,2,29,31],[47,1,1,31,32],[49,2,2,32,34]]],[1,9,9,34,43,[[52,1,1,34,35],[53,2,2,35,37],[54,1,1,37,38],[59,1,1,38,39],[81,1,1,39,40],[82,2,2,40,42],[83,1,1,42,43]]],[3,12,12,43,55,[[126,1,1,43,44],[127,1,1,44,45],[128,2,2,45,47],[130,2,2,47,49],[136,1,1,49,50],[138,3,3,50,53],[139,2,2,53,55]]],[4,1,1,55,56,[[155,1,1,55,56]]],[5,1,1,56,57,[[193,1,1,56,57]]],[6,17,16,57,73,[[214,1,1,57,58],[216,2,2,58,60],[220,1,1,60,61],[221,2,2,61,63],[223,2,2,63,65],[225,1,1,65,66],[226,4,3,66,69],[228,1,1,69,70],[229,3,3,70,73]]],[8,21,20,73,93,[[237,1,1,73,74],[238,1,1,74,75],[244,1,1,75,76],[245,1,1,76,77],[250,2,2,77,79],[251,1,1,79,80],[254,1,1,80,81],[255,2,1,81,82],[257,1,1,82,83],[258,1,1,83,84],[260,3,3,84,87],[261,3,3,87,90],[263,2,2,90,92],[265,1,1,92,93]]],[9,17,17,93,110,[[267,2,2,93,95],[279,5,5,95,100],[280,4,4,100,104],[281,2,2,104,106],[282,1,1,106,107],[285,1,1,107,108],[290,2,2,108,110]]],[10,14,14,110,124,[[291,1,1,110,111],[292,1,1,111,112],[298,1,1,112,113],[304,1,1,113,114],[307,3,3,114,117],[309,1,1,117,118],[310,4,4,118,122],[312,2,2,122,124]]],[11,21,21,124,145,[[313,1,1,124,125],[314,6,6,125,131],[316,3,3,131,134],[317,3,3,134,137],[318,4,4,137,141],[319,1,1,141,142],[330,2,2,142,144],[331,1,1,144,145]]],[12,2,2,145,147,[[358,2,2,145,147]]],[13,3,3,147,150,[[372,1,1,147,148],[384,2,2,148,150]]],[17,6,6,150,156,[[439,1,1,150,151],[443,1,1,151,152],[445,1,1,152,153],[457,1,1,153,154],[468,1,1,154,155],[477,1,1,155,156]]],[18,2,2,156,158,[[596,2,2,156,158]]],[22,5,5,158,163,[[707,2,2,158,160],[714,2,2,160,162],[742,1,1,162,163]]],[23,8,7,163,170,[[765,1,1,163,164],[776,1,1,164,165],[781,2,1,165,166],[782,2,2,166,168],[784,1,1,168,169],[786,1,1,169,170]]],[26,2,2,170,172,[[850,1,1,170,171],[858,1,1,171,172]]],[29,2,2,172,174,[[885,2,2,172,174]]],[31,2,2,174,176,[[889,2,2,174,176]]]],[311,326,327,383,427,593,603,605,608,614,634,636,688,730,746,748,844,857,939,957,970,974,1097,1099,1135,1144,1186,1342,1357,1424,1449,1460,1511,1523,1597,1614,1619,1635,1794,2470,2486,2491,2505,4019,4039,4070,4072,4125,4127,4328,4381,4391,4392,4429,4443,5000,5995,6618,6672,6693,6826,6846,6848,6888,6899,6931,6955,6959,6977,6998,7030,7032,7035,7276,7293,7409,7433,7585,7590,7617,7708,7759,7790,7821,7885,7886,7889,7913,7916,7924,7950,7964,7985,8026,8031,8322,8323,8330,8341,8343,8358,8367,8368,8374,8396,8420,8435,8548,8702,8709,8729,8787,9011,9220,9327,9328,9338,9407,9439,9440,9443,9445,9485,9493,9546,9553,9555,9557,9560,9567,9570,9613,9625,9629,9662,9664,9669,9676,9677,9691,9692,9720,10047,10050,10080,10942,10951,11322,11546,11554,12937,13037,13095,13411,13651,13926,15974,16006,18204,18205,18338,18341,18894,19442,19739,19894,19899,19915,19956,19977,21749,22004,22466,22469,22539,22545]]],["to",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6697]]],["you",[30,30,[[0,9,9,0,9,[[17,1,1,0,1],[18,3,3,1,4],[33,1,1,4,5],[36,1,1,5,6],[39,1,1,6,7],[44,1,1,7,8],[49,1,1,8,9]]],[3,3,3,9,12,[[132,2,2,9,11],[138,1,1,11,12]]],[6,4,4,12,16,[[218,1,1,12,13],[219,1,1,13,14],[229,2,2,14,16]]],[8,2,2,16,18,[[249,1,1,16,17],[258,1,1,17,18]]],[9,1,1,18,19,[[286,1,1,18,19]]],[10,1,1,19,20,[[310,1,1,19,20]]],[11,1,1,20,21,[[317,1,1,20,21]]],[17,2,2,21,23,[[441,1,1,21,22],[467,1,1,22,23]]],[22,1,1,23,24,[[683,1,1,23,24]]],[24,1,1,24,25,[[797,1,1,24,25]]],[25,1,1,25,26,[[834,1,1,25,26]]],[32,2,2,26,28,[[895,2,2,26,28]]],[36,1,1,28,29,[[910,1,1,28,29]]],[38,1,1,29,30,[[925,1,1,29,30]]]],[428,459,464,465,988,1089,1180,1362,1510,4202,4220,4394,6724,6756,7033,7047,7537,7832,8570,9415,9654,13007,13649,17742,20328,21310,22609,22617,22870,23098]]]]},{"k":"H4995","v":[["raw",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1825]]]]},{"k":"H4996","v":[["*",[5,5,[[23,1,1,0,1,[[790,1,1,0,1]]],[25,3,3,1,4,[[831,3,3,1,4]]],[33,1,1,4,5,[[902,1,1,4,5]]]],[20070,21218,21219,21220,22720]]],["+",[2,2,[[23,1,1,0,1,[[790,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[20070,22720]]],["No",[3,3,[[25,3,3,0,3,[[831,3,3,0,3]]]],[21218,21219,21220]]]]},{"k":"H4997","v":[["*",[6,6,[[5,2,2,0,2,[[195,2,2,0,2]]],[6,1,1,2,3,[[214,1,1,2,3]]],[8,1,1,3,4,[[251,1,1,3,4]]],[18,2,2,4,6,[[533,1,1,4,5],[596,1,1,5,6]]]],[6041,6050,6618,7615,14763,15981]]],["bottle",[4,4,[[6,1,1,0,1,[[214,1,1,0,1]]],[8,1,1,1,2,[[251,1,1,1,2]]],[18,2,2,2,4,[[533,1,1,2,3],[596,1,1,3,4]]]],[6618,7615,14763,15981]]],["bottles",[2,2,[[5,2,2,0,2,[[195,2,2,0,2]]]],[6041,6050]]]]},{"k":"H4998","v":[["*",[3,3,[[18,1,1,0,1,[[570,1,1,0,1]]],[21,1,1,1,2,[[671,1,1,1,2]]],[22,1,1,2,3,[[730,1,1,2,3]]]],[15431,17547,18703]]],["beautiful",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18703]]],["becometh",[1,1,[[18,1,1,0,1,[[570,1,1,0,1]]]],[15431]]],["comely",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17547]]]]},{"k":"H4999","v":[["*",[12,12,[[18,4,4,0,4,[[500,1,1,0,1],[542,1,1,1,2],[551,1,1,2,3],[560,1,1,3,4]]],[23,3,3,4,7,[[753,1,1,4,5],[767,1,1,5,6],[769,1,1,6,7]]],[24,1,1,7,8,[[798,1,1,7,8]]],[28,3,3,8,11,[[876,2,2,8,10],[877,1,1,10,11]]],[29,1,1,11,12,[[879,1,1,11,12]]]],[14237,14872,15068,15253,19185,19494,19571,20334,22310,22311,22333,22366]]],["habitations",[5,5,[[18,1,1,0,1,[[551,1,1,0,1]]],[23,2,2,1,3,[[753,1,1,1,2],[769,1,1,2,3]]],[24,1,1,3,4,[[798,1,1,3,4]]],[29,1,1,4,5,[[879,1,1,4,5]]]],[15068,19185,19571,20334,22366]]],["houses",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15253]]],["pastures",[5,5,[[18,2,2,0,2,[[500,1,1,0,1],[542,1,1,1,2]]],[28,3,3,2,5,[[876,2,2,2,4],[877,1,1,4,5]]]],[14237,14872,22310,22311,22333]]],["places",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19494]]]]},{"k":"H5000","v":[["*",[10,10,[[18,2,2,0,2,[[510,1,1,0,1],[624,1,1,1,2]]],[19,3,3,2,5,[[644,1,1,2,3],[646,1,1,3,4],[653,1,1,4,5]]],[21,4,4,5,9,[[671,1,1,5,6],[672,1,1,6,7],[674,1,1,7,8],[676,1,1,8,9]]],[23,1,1,9,10,[[750,1,1,9,10]]]],[14367,16352,16880,16935,17142,17542,17568,17585,17618,19091]]],["becometh",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16880]]],["comely",[7,7,[[18,2,2,0,2,[[510,1,1,0,1],[624,1,1,1,2]]],[21,4,4,2,6,[[671,1,1,2,3],[672,1,1,3,4],[674,1,1,4,5],[676,1,1,5,6]]],[23,1,1,6,7,[[750,1,1,6,7]]]],[14367,16352,17542,17568,17585,17618,19091]]],["seemly",[2,2,[[19,2,2,0,2,[[646,1,1,0,1],[653,1,1,1,2]]]],[16935,17142]]]]},{"k":"H5001","v":[["say",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19515]]]]},{"k":"H5002","v":[["*",[376,358,[[0,1,1,0,1,[[21,1,1,0,1]]],[3,7,5,1,6,[[130,1,1,1,2],[140,6,4,2,6]]],[8,2,1,6,7,[[237,2,1,6,7]]],[9,2,1,7,8,[[289,2,1,7,8]]],[11,4,3,8,11,[[321,2,1,8,9],[331,1,1,9,10],[334,1,1,10,11]]],[13,1,1,11,12,[[400,1,1,11,12]]],[18,2,2,12,14,[[513,1,1,12,13],[587,1,1,13,14]]],[19,1,1,14,15,[[657,1,1,14,15]]],[22,25,23,15,38,[[679,1,1,15,16],[681,1,1,16,17],[692,3,2,17,19],[695,2,2,19,21],[697,1,1,21,22],[700,1,1,22,23],[708,1,1,23,24],[709,1,1,24,25],[715,1,1,25,26],[719,1,1,26,27],[721,2,2,27,29],[727,1,1,29,30],[730,2,1,30,31],[732,1,1,31,32],[733,1,1,32,33],[734,1,1,33,34],[737,1,1,34,35],[744,3,3,35,38]]],[23,176,170,38,208,[[745,3,3,38,41],[746,6,6,41,47],[747,8,7,47,54],[748,3,3,54,57],[749,6,6,57,63],[750,1,1,63,64],[751,5,5,64,69],[752,4,4,69,73],[753,6,6,73,79],[756,1,1,79,80],[757,3,3,80,83],[759,4,4,83,87],[760,4,4,87,91],[761,1,1,91,92],[762,1,1,92,93],[763,2,2,93,95],[765,4,4,95,99],[766,3,3,99,102],[767,18,15,102,117],[769,5,5,117,122],[771,4,4,122,126],[772,1,1,126,127],[773,8,6,127,133],[774,6,6,133,139],[775,14,14,139,153],[776,3,3,153,156],[777,1,1,156,157],[778,3,3,157,160],[779,1,1,160,161],[783,2,2,161,163],[786,1,1,163,164],[788,1,1,164,165],[789,1,1,165,166],[790,5,5,166,171],[792,9,9,171,180],[793,12,12,180,192],[794,8,8,192,200],[795,8,8,200,208]]],[25,85,85,208,293,[[806,1,1,208,209],[812,2,2,209,211],[813,2,2,211,213],[814,4,4,213,217],[815,6,6,217,223],[816,1,1,223,224],[817,9,9,224,233],[818,1,1,233,234],[819,5,5,234,239],[821,6,6,239,245],[822,2,2,245,247],[823,2,2,247,249],[824,1,1,249,250],[825,1,1,250,251],[826,1,1,251,252],[827,3,3,252,255],[829,1,1,255,256],[830,1,1,256,257],[831,1,1,257,258],[832,1,1,258,259],[833,5,5,259,264],[834,1,1,264,265],[835,4,4,265,269],[836,2,2,269,271],[837,4,4,271,275],[838,1,1,275,276],[839,2,2,276,278],[840,6,6,278,284],[844,2,2,284,286],[845,3,3,286,289],[846,2,2,289,291],[848,1,1,291,292],[849,1,1,292,293]]],[27,4,4,293,297,[[863,3,3,293,296],[872,1,1,296,297]]],[28,1,1,297,298,[[877,1,1,297,298]]],[29,21,21,298,319,[[880,2,2,298,300],[881,3,3,300,303],[882,7,7,303,310],[884,2,2,310,312],[886,3,3,312,315],[887,4,4,315,319]]],[30,2,2,319,321,[[888,2,2,319,321]]],[32,2,2,321,323,[[896,1,1,321,322],[897,1,1,322,323]]],[33,2,2,323,325,[[901,1,1,323,324],[902,1,1,324,325]]],[35,5,5,325,330,[[906,3,3,325,328],[907,1,1,328,329],[908,1,1,329,330]]],[36,12,8,330,338,[[909,2,2,330,332],[910,10,6,332,338]]],[37,20,19,338,357,[[911,3,3,338,341],[912,4,3,341,344],[913,2,2,344,346],[915,1,1,346,347],[918,3,3,347,350],[920,1,1,350,351],[921,1,1,351,352],[922,2,2,352,354],[923,3,3,354,357]]],[38,1,1,357,358,[[925,1,1,357,358]]]],[563,4136,4449,4450,4461,4462,7270,8654,9782,10094,10164,11960,14439,15787,17252,17678,17722,17950,17951,17986,17989,18008,18077,18218,18259,18386,18465,18515,18517,18654,18701,18740,18748,18761,18820,18924,18939,18944,18954,18961,18965,18968,18974,18977,18984,18987,18994,19003,19012,19014,19015,19016,19018,19022,19028,19036,19044,19067,19069,19073,19076,19080,19087,19101,19130,19132,19138,19149,19151,19154,19156,19166,19170,19178,19181,19184,19197,19199,19200,19266,19277,19280,19291,19318,19321,19324,19335,19341,19347,19350,19352,19381,19390,19413,19419,19447,19450,19453,19454,19459,19470,19478,19485,19486,19488,19489,19491,19495,19496,19507,19508,19512,19513,19514,19515,19516,19517,19541,19543,19546,19563,19565,19604,19607,19611,19618,19622,19644,19646,19649,19654,19658,19667,19670,19675,19677,19678,19684,19688,19692,19705,19707,19708,19711,19718,19719,19722,19723,19724,19725,19727,19728,19729,19736,19761,19775,19789,19806,19818,19823,19836,19940,19941,19986,20039,20045,20050,20063,20068,20071,20073,20092,20095,20105,20110,20115,20118,20123,20124,20127,20129,20132,20133,20140,20143,20153,20157,20158,20159,20164,20165,20166,20170,20176,20186,20187,20196,20197,20201,20206,20236,20237,20238,20251,20260,20264,20265,20269,20557,20663,20676,20705,20708,20714,20715,20716,20724,20742,20745,20747,20749,20751,20754,20762,20770,20776,20781,20785,20792,20805,20810,20820,20825,20841,20852,20858,20872,20879,20881,20898,20926,20928,20931,20935,20939,20951,20957,20988,21007,21041,21070,21097,21105,21114,21121,21167,21203,21210,21248,21256,21262,21264,21279,21280,21291,21321,21328,21343,21344,21350,21355,21373,21374,21382,21391,21411,21443,21446,21453,21456,21458,21461,21468,21477,21591,21599,21611,21614,21626,21639,21645,21702,21731,22118,22121,22126,22251,22323,22390,22395,22405,22408,22410,22413,22415,22416,22418,22419,22420,22421,22458,22464,22484,22490,22492,22502,22503,22507,22508,22514,22518,22626,22643,22712,22717,22789,22790,22797,22814,22828,22849,22853,22859,22863,22864,22869,22872,22878,22881,22882,22894,22904,22905,22909,22921,22922,22940,22982,22987,22993,23028,23034,23046,23049,23061,23066,23067,23091]]],["+",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8654]]],["said",[8,6,[[3,6,4,0,4,[[140,6,4,0,4]]],[9,1,1,4,5,[[289,1,1,4,5]]],[18,1,1,5,6,[[587,1,1,5,6]]]],[4449,4450,4461,4462,8654,15787]]],["saith",[366,351,[[0,1,1,0,1,[[21,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[8,2,1,2,3,[[237,2,1,2,3]]],[11,4,3,3,6,[[321,2,1,3,4],[331,1,1,4,5],[334,1,1,5,6]]],[13,1,1,6,7,[[400,1,1,6,7]]],[18,1,1,7,8,[[513,1,1,7,8]]],[22,25,23,8,31,[[679,1,1,8,9],[681,1,1,9,10],[692,3,2,10,12],[695,2,2,12,14],[697,1,1,14,15],[700,1,1,15,16],[708,1,1,16,17],[709,1,1,17,18],[715,1,1,18,19],[719,1,1,19,20],[721,2,2,20,22],[727,1,1,22,23],[730,2,1,23,24],[732,1,1,24,25],[733,1,1,25,26],[734,1,1,26,27],[737,1,1,27,28],[744,3,3,28,31]]],[23,176,170,31,201,[[745,3,3,31,34],[746,6,6,34,40],[747,8,7,40,47],[748,3,3,47,50],[749,6,6,50,56],[750,1,1,56,57],[751,5,5,57,62],[752,4,4,62,66],[753,6,6,66,72],[756,1,1,72,73],[757,3,3,73,76],[759,4,4,76,80],[760,4,4,80,84],[761,1,1,84,85],[762,1,1,85,86],[763,2,2,86,88],[765,4,4,88,92],[766,3,3,92,95],[767,18,15,95,110],[769,5,5,110,115],[771,4,4,115,119],[772,1,1,119,120],[773,8,6,120,126],[774,6,6,126,132],[775,14,14,132,146],[776,3,3,146,149],[777,1,1,149,150],[778,3,3,150,153],[779,1,1,153,154],[783,2,2,154,156],[786,1,1,156,157],[788,1,1,157,158],[789,1,1,158,159],[790,5,5,159,164],[792,9,9,164,173],[793,12,12,173,185],[794,8,8,185,193],[795,8,8,193,201]]],[25,85,85,201,286,[[806,1,1,201,202],[812,2,2,202,204],[813,2,2,204,206],[814,4,4,206,210],[815,6,6,210,216],[816,1,1,216,217],[817,9,9,217,226],[818,1,1,226,227],[819,5,5,227,232],[821,6,6,232,238],[822,2,2,238,240],[823,2,2,240,242],[824,1,1,242,243],[825,1,1,243,244],[826,1,1,244,245],[827,3,3,245,248],[829,1,1,248,249],[830,1,1,249,250],[831,1,1,250,251],[832,1,1,251,252],[833,5,5,252,257],[834,1,1,257,258],[835,4,4,258,262],[836,2,2,262,264],[837,4,4,264,268],[838,1,1,268,269],[839,2,2,269,271],[840,6,6,271,277],[844,2,2,277,279],[845,3,3,279,282],[846,2,2,282,284],[848,1,1,284,285],[849,1,1,285,286]]],[27,4,4,286,290,[[863,3,3,286,289],[872,1,1,289,290]]],[28,1,1,290,291,[[877,1,1,290,291]]],[29,21,21,291,312,[[880,2,2,291,293],[881,3,3,293,296],[882,7,7,296,303],[884,2,2,303,305],[886,3,3,305,308],[887,4,4,308,312]]],[30,2,2,312,314,[[888,2,2,312,314]]],[32,2,2,314,316,[[896,1,1,314,315],[897,1,1,315,316]]],[33,2,2,316,318,[[901,1,1,316,317],[902,1,1,317,318]]],[35,5,5,318,323,[[906,3,3,318,321],[907,1,1,321,322],[908,1,1,322,323]]],[36,12,8,323,331,[[909,2,2,323,325],[910,10,6,325,331]]],[37,20,19,331,350,[[911,3,3,331,334],[912,4,3,334,337],[913,2,2,337,339],[915,1,1,339,340],[918,3,3,340,343],[920,1,1,343,344],[921,1,1,344,345],[922,2,2,345,347],[923,3,3,347,350]]],[38,1,1,350,351,[[925,1,1,350,351]]]],[563,4136,7270,9782,10094,10164,11960,14439,17678,17722,17950,17951,17986,17989,18008,18077,18218,18259,18386,18465,18515,18517,18654,18701,18740,18748,18761,18820,18924,18939,18944,18954,18961,18965,18968,18974,18977,18984,18987,18994,19003,19012,19014,19015,19016,19018,19022,19028,19036,19044,19067,19069,19073,19076,19080,19087,19101,19130,19132,19138,19149,19151,19154,19156,19166,19170,19178,19181,19184,19197,19199,19200,19266,19277,19280,19291,19318,19321,19324,19335,19341,19347,19350,19352,19381,19390,19413,19419,19447,19450,19453,19454,19459,19470,19478,19485,19486,19488,19489,19491,19495,19496,19507,19508,19512,19513,19514,19515,19516,19517,19541,19543,19546,19563,19565,19604,19607,19611,19618,19622,19644,19646,19649,19654,19658,19667,19670,19675,19677,19678,19684,19688,19692,19705,19707,19708,19711,19718,19719,19722,19723,19724,19725,19727,19728,19729,19736,19761,19775,19789,19806,19818,19823,19836,19940,19941,19986,20039,20045,20050,20063,20068,20071,20073,20092,20095,20105,20110,20115,20118,20123,20124,20127,20129,20132,20133,20140,20143,20153,20157,20158,20159,20164,20165,20166,20170,20176,20186,20187,20196,20197,20201,20206,20236,20237,20238,20251,20260,20264,20265,20269,20557,20663,20676,20705,20708,20714,20715,20716,20724,20742,20745,20747,20749,20751,20754,20762,20770,20776,20781,20785,20792,20805,20810,20820,20825,20841,20852,20858,20872,20879,20881,20898,20926,20928,20931,20935,20939,20951,20957,20988,21007,21041,21070,21097,21105,21114,21121,21167,21203,21210,21248,21256,21262,21264,21279,21280,21291,21321,21328,21343,21344,21350,21355,21373,21374,21382,21391,21411,21443,21446,21453,21456,21458,21461,21468,21477,21591,21599,21611,21614,21626,21639,21645,21702,21731,22118,22121,22126,22251,22323,22390,22395,22405,22408,22410,22413,22415,22416,22418,22419,22420,22421,22458,22464,22484,22490,22492,22502,22503,22507,22508,22514,22518,22626,22643,22712,22717,22789,22790,22797,22814,22828,22849,22853,22859,22863,22864,22869,22872,22878,22881,22882,22894,22904,22905,22909,22921,22922,22940,22982,22987,22993,23028,23034,23046,23049,23061,23066,23067,23091]]],["spake",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17252]]]]},{"k":"H5003","v":[["*",[31,26,[[1,1,1,0,1,[[69,1,1,0,1]]],[2,4,1,1,2,[[109,4,1,1,2]]],[4,1,1,2,3,[[157,1,1,2,3]]],[17,1,1,3,4,[[459,1,1,3,4]]],[18,1,1,4,5,[[527,1,1,4,5]]],[19,2,2,5,7,[[633,1,1,5,6],[657,1,1,6,7]]],[22,1,1,7,8,[[735,1,1,7,8]]],[23,8,8,8,16,[[747,2,2,8,10],[749,1,1,10,11],[751,1,1,11,12],[753,1,1,12,13],[767,2,2,13,15],[773,1,1,15,16]]],[25,6,4,16,20,[[817,2,2,16,18],[824,4,2,18,20]]],[27,5,5,20,25,[[864,1,1,20,21],[865,3,3,21,24],[868,1,1,24,25]]],[38,1,1,25,26,[[927,1,1,25,26]]]],[2065,3328,5071,13451,14686,16572,17271,18768,19010,19011,19065,19128,19177,19494,19498,19658,20794,20800,21044,21052,22129,22135,22146,22147,22182,23125]]],["adulterer",[3,3,[[2,1,1,0,1,[[109,1,1,0,1]]],[17,1,1,1,2,[[459,1,1,1,2]]],[22,1,1,2,3,[[735,1,1,2,3]]]],[3328,13451,18768]]],["adulterers",[5,5,[[18,1,1,0,1,[[527,1,1,0,1]]],[23,2,2,1,3,[[753,1,1,1,2],[767,1,1,2,3]]],[27,1,1,3,4,[[868,1,1,3,4]]],[38,1,1,4,5,[[927,1,1,4,5]]]],[14686,19177,19494,22182,23125]]],["adulteress",[2,2,[[2,1,1,0,1,[[109,1,1,0,1]]],[27,1,1,1,2,[[864,1,1,1,2]]]],[3328,22129]]],["adulteresses",[2,1,[[25,2,1,0,1,[[824,2,1,0,1]]]],[21052]]],["adulterous",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17271]]],["adultery",[17,15,[[1,1,1,0,1,[[69,1,1,0,1]]],[2,2,1,1,2,[[109,2,1,1,2]]],[4,1,1,2,3,[[157,1,1,2,3]]],[19,1,1,3,4,[[633,1,1,3,4]]],[23,6,6,4,10,[[747,2,2,4,6],[749,1,1,6,7],[751,1,1,7,8],[767,1,1,8,9],[773,1,1,9,10]]],[25,3,2,10,12,[[817,1,1,10,11],[824,2,1,11,12]]],[27,3,3,12,15,[[865,3,3,12,15]]]],[2065,3328,5071,16572,19010,19011,19065,19128,19498,19658,20794,21044,22135,22146,22147]]],["wedlock",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20800]]]]},{"k":"H5004","v":[["adulteries",[2,2,[[23,1,1,0,1,[[757,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[19293,21050]]]]},{"k":"H5005","v":[["adulteries",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22107]]]]},{"k":"H5006","v":[["*",[25,24,[[3,3,3,0,3,[[130,2,2,0,2],[132,1,1,2,3]]],[4,2,2,3,5,[[183,1,1,3,4],[184,1,1,4,5]]],[8,1,1,5,6,[[237,1,1,5,6]]],[9,2,1,6,7,[[278,2,1,6,7]]],[18,5,5,7,12,[[487,2,2,7,9],[551,2,2,9,11],[584,1,1,11,12]]],[19,3,3,12,15,[[628,1,1,12,13],[632,1,1,13,14],[642,1,1,14,15]]],[20,1,1,15,16,[[670,1,1,15,16]]],[22,4,4,16,20,[[679,1,1,16,17],[683,1,1,17,18],[730,1,1,18,19],[738,1,1,19,20]]],[23,3,3,20,23,[[758,1,1,20,21],[767,1,1,21,22],[777,1,1,22,23]]],[24,1,1,23,24,[[798,1,1,23,24]]]],[4119,4131,4224,5748,5777,7257,8300,14044,14054,15058,15066,15710,16430,16529,16812,17528,17658,17763,18701,18835,19314,19501,19799,20338]]],["+",[4,4,[[3,1,1,0,1,[[132,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[9,1,1,2,3,[[278,1,1,2,3]]],[22,1,1,3,4,[[679,1,1,3,4]]]],[4224,7257,8300,17658]]],["abhor",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19314]]],["abhorred",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5777]]],["abhorreth",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14044]]],["blaspheme",[2,2,[[9,1,1,0,1,[[278,1,1,0,1]]],[18,1,1,1,2,[[551,1,1,1,2]]]],[8300,15058]]],["blasphemed",[2,2,[[18,1,1,0,1,[[551,1,1,0,1]]],[22,1,1,1,2,[[730,1,1,1,2]]]],[15066,18701]]],["contemn",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14054]]],["contemned",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15710]]],["despise",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19501]]],["despised",[6,6,[[19,2,2,0,2,[[628,1,1,0,1],[632,1,1,1,2]]],[22,2,2,2,4,[[683,1,1,2,3],[738,1,1,3,4]]],[23,1,1,4,5,[[777,1,1,4,5]]],[24,1,1,5,6,[[798,1,1,5,6]]]],[16430,16529,17763,18835,19799,20338]]],["despiseth",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16812]]],["flourish",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17528]]],["provoke",[2,2,[[3,1,1,0,1,[[130,1,1,0,1]]],[4,1,1,1,2,[[183,1,1,1,2]]]],[4119,5748]]],["provoked",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4131]]]]},{"k":"H5007","v":[["*",[5,5,[[11,1,1,0,1,[[331,1,1,0,1]]],[15,2,2,1,3,[[421,2,2,1,3]]],[22,1,1,3,4,[[715,1,1,3,4]]],[25,1,1,4,5,[[836,1,1,4,5]]]],[10064,12529,12537,18355,21356]]],["blasphemies",[1,1,[[25,1,1,0,1,[[836,1,1,0,1]]]],[21356]]],["blasphemy",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10064,18355]]],["provocations",[2,2,[[15,2,2,0,2,[[421,2,2,0,2]]]],[12529,12537]]]]},{"k":"H5008","v":[["groan",[2,2,[[17,1,1,0,1,[[459,1,1,0,1]]],[25,1,1,1,2,[[831,1,1,1,2]]]],[13448,21228]]]]},{"k":"H5009","v":[["*",[4,4,[[1,2,2,0,2,[[51,1,1,0,1],[55,1,1,1,2]]],[6,1,1,2,3,[[212,1,1,2,3]]],[25,1,1,3,4,[[831,1,1,3,4]]]],[1578,1660,6563,21228]]],["+",[1,1,[[6,1,1,0,1,[[212,1,1,0,1]]]],[6563]]],["groaning",[2,2,[[1,2,2,0,2,[[51,1,1,0,1],[55,1,1,1,2]]]],[1578,1660]]],["groanings",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21228]]]]},{"k":"H5010","v":[["*",[2,2,[[18,1,1,0,1,[[566,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]]],[15365,20339]]],["abhorred",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20339]]],["void",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15365]]]]},{"k":"H5011","v":[["Nob",[6,6,[[8,4,4,0,4,[[256,1,1,0,1],[257,3,3,1,4]]],[15,1,1,4,5,[[423,1,1,4,5]]],[22,1,1,5,6,[[688,1,1,5,6]]]],[7773,7796,7798,7806,12620,17882]]]]},{"k":"H5012","v":[["*",[115,102,[[3,3,3,0,3,[[127,3,3,0,3]]],[8,12,10,3,13,[[245,5,5,3,8],[253,1,1,8,9],[254,6,4,9,13]]],[10,5,5,13,18,[[308,1,1,13,14],[312,4,4,14,18]]],[12,3,3,18,21,[[362,3,3,18,21]]],[13,5,5,21,26,[[384,4,4,21,25],[386,1,1,25,26]]],[23,40,36,26,62,[[746,1,1,26,27],[749,1,1,27,28],[755,1,1,28,29],[758,4,3,29,32],[763,1,1,32,33],[764,2,2,33,35],[767,6,6,35,41],[769,2,2,41,43],[770,6,5,43,48],[771,6,4,48,52],[772,3,3,52,55],[773,5,5,55,60],[776,1,1,60,61],[781,1,1,61,62]]],[25,37,31,62,93,[[805,1,1,62,63],[807,1,1,63,64],[812,3,2,64,66],[813,1,1,66,67],[814,5,3,67,70],[821,1,1,70,71],[822,4,4,71,75],[826,1,1,75,76],[829,1,1,76,77],[830,1,1,77,78],[831,1,1,78,79],[835,2,1,79,80],[836,1,1,80,81],[837,3,3,81,84],[838,7,5,84,89],[839,3,3,89,92],[840,1,1,92,93]]],[28,1,1,93,94,[[877,1,1,93,94]]],[29,6,6,94,100,[[880,1,1,94,95],[881,1,1,95,96],[885,4,4,96,100]]],[37,3,2,100,102,[[923,3,2,100,102]]]],[4049,4050,4051,7423,7424,7428,7429,7431,7686,7726,7727,7729,7730,9370,9488,9490,9492,9498,11047,11048,11049,11549,11551,11553,11559,11624,18973,19089,19247,19307,19308,19309,19421,19423,19428,19497,19500,19505,19509,19510,19516,19547,19564,19581,19583,19584,19590,19592,19606,19610,19611,19612,19624,19626,19627,19644,19656,19661,19662,19666,19734,19893,20536,20565,20659,20668,20707,20710,20724,20725,20941,20946,20953,20958,20972,21085,21178,21185,21206,21315,21346,21360,21362,21365,21401,21404,21406,21407,21409,21427,21439,21442,21449,22339,22391,22403,22476,22477,22479,22480,23062,23063]]],["+",[3,3,[[8,1,1,0,1,[[245,1,1,0,1]]],[23,2,2,1,3,[[764,1,1,1,2],[770,1,1,2,3]]]],[7431,19423,19590]]],["Prophesy",[6,6,[[23,1,1,0,1,[[755,1,1,0,1]]],[25,3,3,1,4,[[837,1,1,1,2],[838,2,2,2,4]]],[29,2,2,4,6,[[880,1,1,4,5],[885,1,1,5,6]]]],[19247,21365,21401,21406,22391,22480]]],["prophesied",[38,35,[[3,2,2,0,2,[[127,2,2,0,2]]],[8,8,7,2,9,[[245,2,2,2,4],[253,1,1,4,5],[254,5,4,5,9]]],[10,3,3,9,12,[[308,1,1,9,10],[312,2,2,10,12]]],[12,2,2,12,14,[[362,2,2,12,14]]],[13,4,4,14,18,[[384,3,3,14,17],[386,1,1,17,18]]],[23,13,12,18,30,[[746,1,1,18,19],[764,1,1,19,20],[767,2,2,20,22],[769,1,1,22,23],[770,4,3,23,26],[772,2,2,26,28],[773,1,1,28,29],[781,1,1,29,30]]],[25,5,4,30,34,[[812,1,1,30,31],[838,3,2,31,33],[839,1,1,33,34]]],[37,1,1,34,35,[[923,1,1,34,35]]]],[4049,4050,7428,7429,7686,7726,7727,7729,7730,9370,9490,9492,11048,11049,11549,11551,11553,11624,18973,19428,19497,19505,19547,19581,19583,19592,19624,19626,19666,19893,20668,21404,21407,21442,23063]]],["prophesieth",[3,3,[[23,1,1,0,1,[[772,1,1,0,1]]],[25,1,1,1,2,[[813,1,1,1,2]]],[37,1,1,2,3,[[923,1,1,2,3]]]],[19627,20707,23062]]],["prophesy",[62,55,[[3,1,1,0,1,[[127,1,1,0,1]]],[8,2,2,1,3,[[245,2,2,1,3]]],[10,2,2,3,5,[[312,2,2,3,5]]],[12,1,1,5,6,[[362,1,1,5,6]]],[13,1,1,6,7,[[384,1,1,6,7]]],[23,21,18,7,25,[[749,1,1,7,8],[758,4,3,8,11],[763,1,1,11,12],[767,4,4,12,16],[769,1,1,16,17],[770,1,1,17,18],[771,6,4,18,22],[773,2,2,22,24],[776,1,1,24,25]]],[25,28,24,25,49,[[805,1,1,25,26],[807,1,1,26,27],[812,2,1,27,28],[814,5,3,28,31],[821,1,1,31,32],[822,4,4,32,36],[826,1,1,36,37],[829,1,1,37,38],[830,1,1,38,39],[831,1,1,39,40],[835,2,1,40,41],[836,1,1,41,42],[837,2,2,42,44],[838,2,2,44,46],[839,2,2,46,48],[840,1,1,48,49]]],[28,1,1,49,50,[[877,1,1,49,50]]],[29,4,4,50,54,[[881,1,1,50,51],[885,3,3,51,54]]],[37,1,1,54,55,[[923,1,1,54,55]]]],[4051,7423,7424,9488,9498,11047,11559,19089,19307,19308,19309,19421,19500,19509,19510,19516,19564,19584,19606,19610,19611,19612,19644,19656,19734,20536,20565,20659,20710,20724,20725,20941,20946,20953,20958,20972,21085,21178,21185,21206,21315,21346,21360,21362,21406,21409,21427,21439,21449,22339,22403,22476,22477,22479,23062]]],["prophesying",[1,1,[[8,1,1,0,1,[[254,1,1,0,1]]]],[7726]]],["prophet",[2,2,[[23,2,2,0,2,[[773,2,2,0,2]]]],[19661,19662]]]]},{"k":"H5013","v":[["prophesied",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12135]]]]},{"k":"H5014","v":[["*",[4,4,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[17,1,1,2,3,[[446,1,1,2,3]]],[23,1,1,3,4,[[796,1,1,3,4]]]],[2280,2640,13120,20297]]],["Hollow",[1,1,[[1,1,1,0,1,[[76,1,1,0,1]]]],[2280]]],["hollow",[2,2,[[1,1,1,0,1,[[87,1,1,0,1]]],[23,1,1,1,2,[[796,1,1,1,2]]]],[2640,20297]]],["vain",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13120]]]]},{"k":"H5015","v":[["Nebo",[13,13,[[3,3,3,0,3,[[148,2,2,0,2],[149,1,1,2,3]]],[4,2,2,3,5,[[184,1,1,3,4],[186,1,1,4,5]]],[12,1,1,5,6,[[342,1,1,5,6]]],[14,2,2,6,8,[[404,1,1,6,7],[412,1,1,7,8]]],[15,1,1,8,9,[[419,1,1,8,9]]],[22,2,2,9,11,[[693,1,1,9,10],[724,1,1,10,11]]],[23,2,2,11,13,[[792,2,2,11,13]]]],[4721,4756,4807,5807,5840,10436,12056,12295,12453,17962,18587,20081,20102]]]]},{"k":"H5016","v":[["prophecy",[3,3,[[13,2,2,0,2,[[375,1,1,0,1],[381,1,1,1,2]]],[15,1,1,2,3,[[418,1,1,2,3]]]],[11393,11498,12413]]]]},{"k":"H5017","v":[["prophesying",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12165]]]]},{"k":"H5018","v":[["Nebuzaradan",[15,15,[[11,3,3,0,3,[[337,3,3,0,3]]],[23,12,12,3,15,[[783,4,4,3,7],[784,1,1,7,8],[785,1,1,8,9],[787,1,1,9,10],[796,5,5,10,15]]]],[10230,10233,10242,19932,19933,19934,19936,19942,19967,20003,20288,20291,20292,20302,20306]]]]},{"k":"H5019","v":[["*",[60,59,[[11,6,6,0,6,[[336,3,3,0,3],[337,3,3,3,6]]],[12,1,1,6,7,[[343,1,1,6,7]]],[13,4,4,7,11,[[402,4,4,7,11]]],[14,2,2,11,13,[[403,1,1,11,12],[404,1,1,12,13]]],[15,1,1,13,14,[[419,1,1,13,14]]],[16,1,1,14,15,[[427,1,1,14,15]]],[23,37,37,15,52,[[765,2,2,15,17],[766,1,1,17,18],[768,1,1,18,19],[769,2,2,19,21],[771,3,3,21,24],[772,3,3,24,27],[773,3,3,27,30],[776,2,2,30,32],[778,1,1,32,33],[779,1,1,33,34],[781,1,1,34,35],[783,3,3,35,38],[787,1,1,38,39],[788,1,1,39,40],[790,3,3,40,43],[793,2,2,43,45],[794,1,1,45,46],[795,1,1,46,47],[796,5,5,47,52]]],[25,4,4,52,56,[[827,1,1,52,53],[830,2,2,53,55],[831,1,1,55,56]]],[26,4,3,56,59,[[850,2,2,56,58],[851,2,1,58,59]]]],[10203,10212,10213,10223,10230,10244,10469,11999,12000,12003,12006,12023,12028,12426,12730,19442,19447,19479,19525,19535,19543,19602,19604,19616,19621,19629,19632,19636,19638,19656,19732,19759,19802,19834,19875,19924,19928,19934,20007,20040,20047,20058,20071,20155,20157,20183,20246,20280,20288,20304,20305,20306,21107,21201,21202,21214,21738,21755,21759]]],["Nebuchadnezzar",[29,28,[[11,6,6,0,6,[[336,3,3,0,3],[337,3,3,3,6]]],[12,1,1,6,7,[[343,1,1,6,7]]],[13,4,4,7,11,[[402,4,4,7,11]]],[14,2,2,11,13,[[403,1,1,11,12],[404,1,1,12,13]]],[15,1,1,13,14,[[419,1,1,13,14]]],[16,1,1,14,15,[[427,1,1,14,15]]],[23,10,10,15,25,[[771,3,3,15,18],[772,3,3,18,21],[773,2,2,21,23],[778,1,1,23,24],[783,1,1,24,25]]],[26,4,3,25,28,[[850,2,2,25,27],[851,2,1,27,28]]]],[10203,10212,10213,10223,10230,10244,10469,11999,12000,12003,12006,12023,12028,12426,12730,19602,19604,19616,19621,19629,19632,19636,19638,19802,19928,21738,21755,21759]]],["Nebuchadrezzar",[31,31,[[23,27,27,0,27,[[765,2,2,0,2],[766,1,1,2,3],[768,1,1,3,4],[769,2,2,4,6],[773,1,1,6,7],[776,2,2,7,9],[779,1,1,9,10],[781,1,1,10,11],[783,2,2,11,13],[787,1,1,13,14],[788,1,1,14,15],[790,3,3,15,18],[793,2,2,18,20],[794,1,1,20,21],[795,1,1,21,22],[796,5,5,22,27]]],[25,4,4,27,31,[[827,1,1,27,28],[830,2,2,28,30],[831,1,1,30,31]]]],[19442,19447,19479,19525,19535,19543,19656,19732,19759,19834,19875,19924,19934,20007,20040,20047,20058,20071,20155,20157,20183,20246,20280,20288,20304,20305,20306,21107,21201,21202,21214]]]]},{"k":"H5020","v":[["Nebuchadnezzar",[31,29,[[14,3,3,0,3,[[407,2,2,0,2],[408,1,1,2,3]]],[26,28,26,3,29,[[851,2,2,3,5],[852,15,13,5,18],[853,8,8,18,26],[854,3,3,26,29]]]],[12146,12148,12156,21786,21804,21808,21809,21810,21812,21814,21816,21820,21821,21823,21826,21831,21833,21835,21838,21841,21855,21865,21868,21870,21871,21874,21876,21885,21892]]]]},{"k":"H5021","v":[["Nebushasban",[1,1,[[23,1,1,0,1,[[783,1,1,0,1]]]],[19936]]]]},{"k":"H5022","v":[["Naboth",[22,18,[[10,19,15,0,15,[[311,19,15,0,15]]],[11,3,3,15,18,[[321,3,3,15,18]]]],[9452,9453,9454,9455,9457,9458,9459,9460,9463,9464,9465,9466,9467,9469,9470,9777,9781,9782]]]]},{"k":"H5023","v":[["rewards",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[854,1,1,1,2]]]],[21764,21891]]]]},{"k":"H5024","v":[["bark",[1,1,[[22,1,1,0,1,[[734,1,1,0,1]]]],[18763]]]]},{"k":"H5025","v":[["Nobah",[3,2,[[3,2,1,0,1,[[148,2,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]]],[4760,6730]]]]},{"k":"H5026","v":[["Nibhaz",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10014]]]]},{"k":"H5027","v":[["*",[69,67,[[0,3,3,0,3,[[14,1,1,0,1],[18,2,2,1,3]]],[1,2,2,3,5,[[52,1,1,3,4],[82,1,1,4,5]]],[3,3,3,5,8,[[128,1,1,5,6],[137,1,1,6,7],[139,1,1,7,8]]],[8,4,4,8,12,[[237,1,1,8,9],[251,1,1,9,10],[252,1,1,10,11],[259,1,1,11,12]]],[10,3,2,12,14,[[308,2,1,12,13],[309,1,1,13,14]]],[11,1,1,14,15,[[315,1,1,14,15]]],[12,1,1,15,16,[[358,1,1,15,16]]],[17,5,5,16,21,[[441,1,1,16,17],[463,1,1,17,18],[470,1,1,18,19],[471,1,1,19,20],[474,1,1,20,21]]],[18,17,17,21,38,[[487,1,1,21,22],[490,1,1,22,23],[499,1,1,23,24],[510,1,1,24,25],[511,1,1,25,26],[551,1,1,26,27],[557,1,1,27,28],[561,1,1,28,29],[568,1,1,29,30],[569,1,1,30,31],[571,1,1,31,32],[579,1,1,32,33],[581,1,1,33,34],[596,3,3,34,37],[619,1,1,37,38]]],[19,1,1,38,39,[[631,1,1,38,39]]],[22,15,15,39,54,[[683,2,2,39,41],[686,1,1,41,42],[696,1,1,42,43],[700,2,2,43,45],[716,1,1,45,46],[720,1,1,46,47],[729,3,3,47,50],[741,2,2,50,52],[742,1,1,52,53],[744,1,1,53,54]]],[24,6,6,54,60,[[797,2,2,54,56],[798,1,1,56,57],[799,1,1,57,58],[800,1,1,58,59],[801,1,1,59,60]]],[29,1,1,60,61,[[883,1,1,60,61]]],[31,1,1,61,62,[[890,1,1,61,62]]],[34,5,4,62,66,[[903,4,3,62,65],[904,1,1,65,66]]],[37,1,1,66,67,[[922,1,1,66,67]]]],[365,474,483,1585,2481,4067,4349,4437,7272,7602,7660,7847,9384,9393,9590,10955,12997,13528,13725,13761,13863,14055,14077,14221,14379,14393,15068,15212,15268,15403,15422,15440,15540,15603,15904,15913,15916,16290,16515,17751,17769,17829,18001,18060,18063,18401,18498,18674,18675,18679,18871,18881,18894,18924,20321,20322,20352,20417,20436,20443,22445,22552,22734,22736,22744,22763,23055]]],["+",[3,3,[[1,1,1,0,1,[[52,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[18,1,1,2,3,[[579,1,1,2,3]]]],[1585,4349,15540]]],["Behold",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20417]]],["Consider",[1,1,[[18,1,1,0,1,[[490,1,1,0,1]]]],[14077]]],["Look",[4,4,[[0,1,1,0,1,[[14,1,1,0,1]]],[8,1,1,1,2,[[251,1,1,1,2]]],[17,1,1,2,3,[[470,1,1,2,3]]],[22,1,1,3,4,[[729,1,1,3,4]]]],[365,7602,13725,18675]]],["about",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7660]]],["beheld",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4437]]],["behold",[8,8,[[3,1,1,0,1,[[128,1,1,0,1]]],[17,2,2,1,3,[[471,1,1,1,2],[474,1,1,2,3]]],[18,2,2,3,5,[[568,1,1,3,4],[596,1,1,4,5]]],[22,1,1,5,6,[[716,1,1,5,6]]],[24,1,1,6,7,[[797,1,1,6,7]]],[34,1,1,7,8,[[903,1,1,7,8]]]],[4067,13761,13863,15403,15916,18401,20322,22734]]],["beholdest",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14055]]],["consider",[4,4,[[22,1,1,0,1,[[696,1,1,0,1]]],[24,3,3,1,4,[[797,1,1,1,2],[798,1,1,2,3],[801,1,1,3,4]]]],[18001,20321,20352,20443]]],["down",[2,2,[[18,1,1,0,1,[[557,1,1,0,1]]],[22,1,1,1,2,[[741,1,1,1,2]]]],[15212,18881]]],["look",[16,16,[[0,1,1,0,1,[[18,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]],[11,1,1,2,3,[[315,1,1,2,3]]],[18,1,1,3,4,[[499,1,1,3,4]]],[19,1,1,4,5,[[631,1,1,4,5]]],[22,7,7,5,12,[[683,1,1,5,6],[686,1,1,6,7],[700,1,1,7,8],[720,1,1,8,9],[729,2,2,9,11],[744,1,1,11,12]]],[31,1,1,12,13,[[890,1,1,12,13]]],[34,2,2,13,15,[[903,1,1,13,14],[904,1,1,14,15]]],[37,1,1,15,16,[[922,1,1,15,16]]]],[474,9384,9590,14221,16515,17769,17829,18060,18498,18674,18679,18924,22552,22744,22763,23055]]],["looked",[11,11,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,1,1,1,2,[[82,1,1,1,2]]],[8,1,1,2,3,[[259,1,1,2,3]]],[10,2,2,3,5,[[308,1,1,3,4],[309,1,1,4,5]]],[12,1,1,5,6,[[358,1,1,5,6]]],[17,1,1,6,7,[[441,1,1,6,7]]],[18,2,2,7,9,[[511,1,1,7,8],[619,1,1,8,9]]],[22,2,2,9,11,[[700,1,1,9,10],[741,1,1,10,11]]]],[483,2481,7847,9384,9393,10955,12997,14393,16290,18063,18871]]],["lookest",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22744]]],["looketh",[3,3,[[17,1,1,0,1,[[463,1,1,0,1]]],[18,2,2,1,3,[[510,1,1,1,2],[581,1,1,2,3]]]],[13528,14379,15603]]],["regard",[4,4,[[22,1,1,0,1,[[683,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]],[29,1,1,2,3,[[883,1,1,2,3]]],[34,1,1,3,4,[[903,1,1,3,4]]]],[17751,20436,22445,22736]]],["respect",[3,3,[[18,3,3,0,3,[[551,1,1,0,1],[596,2,2,1,3]]]],[15068,15904,15913]]],["see",[4,4,[[8,1,1,0,1,[[237,1,1,0,1]]],[18,2,2,1,3,[[569,1,1,1,2],[571,1,1,2,3]]],[22,1,1,3,4,[[742,1,1,3,4]]]],[7272,15422,15440,18894]]],["upon",[1,1,[[18,1,1,0,1,[[561,1,1,0,1]]]],[15268]]]]},{"k":"H5028","v":[["Nebat",[25,25,[[10,9,9,0,9,[[301,1,1,0,1],[302,2,2,1,3],[305,1,1,3,4],[306,3,3,4,7],[311,1,1,7,8],[312,1,1,8,9]]],[11,12,12,9,21,[[315,1,1,9,10],[321,1,1,10,11],[322,1,1,11,12],[325,2,2,12,14],[326,1,1,14,15],[327,4,4,15,19],[329,1,1,19,20],[335,1,1,20,21]]],[13,4,4,21,25,[[375,1,1,21,22],[376,2,2,22,24],[379,1,1,24,25]]]],[9134,9153,9166,9250,9286,9309,9314,9473,9532,9579,9765,9822,9873,9882,9920,9934,9943,9949,9953,10004,10180,11393,11397,11410,11459]]]]},{"k":"H5029","v":[["*",[4,3,[[14,4,3,0,3,[[407,3,2,0,2],[408,1,1,2,3]]]],[12135,12136,12165]]],["prophet",[2,2,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]]],[12135,12165]]],["prophets",[2,2,[[14,2,2,0,2,[[407,2,2,0,2]]]],[12135,12136]]]]},{"k":"H5030","v":[["*",[314,286,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,1,1,1,2,[[56,1,1,1,2]]],[3,2,2,2,4,[[127,1,1,2,3],[128,1,1,3,4]]],[4,10,8,4,12,[[165,3,3,4,7],[170,6,4,7,11],[186,1,1,11,12]]],[6,1,1,12,13,[[216,1,1,12,13]]],[8,12,11,13,24,[[238,1,1,13,14],[244,1,1,14,15],[245,5,4,15,19],[254,2,2,19,21],[257,1,1,21,22],[263,2,2,22,24]]],[9,3,3,24,27,[[273,1,1,24,25],[278,1,1,25,26],[290,1,1,26,27]]],[10,50,45,27,72,[[291,9,9,27,36],[301,1,1,36,37],[303,8,7,37,44],[304,2,2,44,46],[306,2,2,46,48],[308,12,8,48,56],[309,4,4,56,60],[310,5,5,60,65],[312,7,7,65,72]]],[11,33,29,72,101,[[314,4,4,72,76],[315,3,2,76,78],[316,3,2,78,80],[317,4,4,80,84],[318,2,2,84,86],[321,4,3,86,89],[322,1,1,89,90],[326,1,1,90,91],[329,3,2,91,93],[331,1,1,93,94],[332,3,3,94,97],[333,1,1,97,98],[335,2,2,98,100],[336,1,1,100,101]]],[12,3,3,101,104,[[353,1,1,101,102],[354,1,1,102,103],[366,1,1,103,104]]],[13,26,25,104,129,[[375,1,1,104,105],[378,2,2,105,107],[379,1,1,107,108],[381,1,1,108,109],[384,7,7,109,116],[386,1,1,116,117],[387,1,1,117,118],[390,1,1,118,119],[391,2,2,119,121],[392,1,1,121,122],[394,1,1,122,123],[395,2,1,123,124],[398,2,2,124,126],[401,1,1,126,127],[402,2,2,127,129]]],[14,1,1,129,130,[[411,1,1,129,130]]],[15,5,5,130,135,[[418,2,2,130,132],[421,3,3,132,135]]],[18,2,2,135,137,[[551,1,1,135,136],[582,1,1,136,137]]],[22,7,7,137,144,[[681,1,1,137,138],[687,1,1,138,139],[706,1,1,139,140],[707,1,1,140,141],[715,1,1,141,142],[716,1,1,142,143],[717,1,1,143,144]]],[23,95,85,144,229,[[745,1,1,144,145],[746,3,3,145,148],[748,1,1,148,149],[749,2,2,149,151],[750,1,1,151,152],[751,1,1,152,153],[752,2,2,153,155],[757,1,1,155,156],[758,5,4,156,160],[762,1,1,160,161],[764,1,1,161,162],[767,17,15,162,177],[769,2,2,177,179],[770,5,5,179,184],[771,5,5,184,189],[772,16,10,189,199],[773,6,5,199,204],[776,2,2,204,206],[778,1,1,206,207],[779,1,1,207,208],[780,2,2,208,210],[781,5,5,210,215],[782,3,3,215,218],[786,2,2,218,220],[787,1,1,220,221],[788,1,1,221,222],[789,1,1,222,223],[790,2,2,223,225],[791,1,1,225,226],[793,1,1,226,227],[794,1,1,227,228],[795,1,1,228,229]]],[24,4,4,229,233,[[798,3,3,229,232],[800,1,1,232,233]]],[25,17,15,233,248,[[803,1,1,233,234],[808,1,1,234,235],[814,6,5,235,240],[815,5,4,240,244],[823,2,2,244,246],[834,1,1,246,247],[839,1,1,247,248]]],[26,4,4,248,252,[[858,4,4,248,252]]],[27,8,6,252,258,[[865,1,1,252,253],[867,1,1,253,254],[870,2,2,254,256],[873,4,2,256,258]]],[29,5,4,258,262,[[880,2,2,258,260],[881,1,1,260,261],[885,2,1,261,262]]],[32,3,3,262,265,[[895,3,3,262,265]]],[34,2,2,265,267,[[903,1,1,265,266],[905,1,1,266,267]]],[35,1,1,267,268,[[908,1,1,267,268]]],[36,5,5,268,273,[[909,3,3,268,271],[910,2,2,271,273]]],[37,12,12,273,285,[[911,5,5,273,278],[917,3,3,278,281],[918,1,1,281,282],[923,3,3,282,285]]],[38,1,1,285,286,[[928,1,1,285,286]]]],[502,1686,4053,4065,5273,5275,5277,5399,5402,5404,5406,5849,6662,7296,7400,7423,7428,7429,7430,7726,7730,7792,7948,7957,8182,8311,8703,8725,8727,8739,8740,8749,8751,8755,8761,8762,9137,9195,9202,9204,9207,9209,9210,9213,9220,9236,9290,9295,9345,9354,9360,9361,9363,9366,9377,9381,9388,9397,9401,9403,9421,9430,9443,9446,9449,9486,9487,9490,9492,9493,9502,9503,9554,9556,9558,9566,9587,9589,9604,9641,9650,9655,9660,9669,9675,9686,9757,9760,9763,9812,9921,9996,10006,10063,10099,10109,10112,10129,10167,10183,10204,10842,10864,11193,11393,11442,11452,11475,11498,11547,11548,11551,11553,11554,11563,11564,11607,11636,11696,11719,11720,11754,11773,11816,11895,11907,11984,12005,12009,12248,12408,12415,12537,12541,12543,15057,15621,17709,17844,18171,18203,18354,18391,18415,18951,18973,18991,18995,19036,19071,19089,19102,19144,19154,19163,19279,19306,19307,19308,19311,19402,19424,19493,19495,19497,19498,19499,19500,19505,19509,19510,19512,19514,19515,19517,19518,19521,19536,19538,19577,19579,19580,19583,19588,19605,19610,19611,19612,19614,19619,19623,19624,19626,19627,19628,19629,19630,19633,19635,19636,19643,19650,19654,19664,19733,19763,19807,19838,19850,19868,19876,19877,19880,19887,19893,19904,19905,19909,19977,19979,20003,20014,20041,20046,20058,20074,20161,20167,20271,20341,20346,20352,20433,20497,20603,20710,20711,20712,20717,20724,20735,20738,20740,20741,21001,21004,21313,21442,21990,21994,21998,22012,22138,22172,22215,22216,22262,22265,22390,22391,22402,22478,22613,22614,22619,22732,22769,22824,22841,22843,22852,22856,22865,22879,22882,22883,22884,22885,22965,22969,22974,22985,23061,23063,23064,23143]]],["+",[9,9,[[10,4,4,0,4,[[308,2,2,0,2],[310,1,1,2,3],[312,1,1,3,4]]],[23,4,4,4,8,[[750,1,1,4,5],[752,1,1,5,6],[762,1,1,6,7],[782,1,1,7,8]]],[25,1,1,8,9,[[808,1,1,8,9]]]],[9354,9361,9449,9486,19102,19163,19402,19904,20603]]],["Prophet",[3,3,[[4,2,2,0,2,[[170,2,2,0,2]]],[8,1,1,2,3,[[244,1,1,2,3]]]],[5399,5402,7400]]],["prophecy",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22012]]],["prophesy",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20710]]],["prophet",[156,145,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,1,1,1,2,[[56,1,1,1,2]]],[3,1,1,2,3,[[128,1,1,2,3]]],[4,8,6,3,9,[[165,3,3,3,6],[170,4,2,6,8],[186,1,1,8,9]]],[6,1,1,9,10,[[216,1,1,9,10]]],[8,2,2,10,12,[[238,1,1,10,11],[257,1,1,11,12]]],[9,3,3,12,15,[[273,1,1,12,13],[278,1,1,13,14],[290,1,1,14,15]]],[10,29,28,15,43,[[291,9,9,15,24],[301,1,1,24,25],[303,8,7,25,32],[304,2,2,32,34],[306,2,2,34,36],[308,2,2,36,38],[309,1,1,38,39],[310,3,3,39,42],[312,1,1,42,43]]],[11,13,13,43,56,[[315,1,1,43,44],[317,3,3,44,47],[318,1,1,47,48],[321,2,2,48,50],[326,1,1,50,51],[331,1,1,51,52],[332,3,3,52,55],[335,1,1,55,56]]],[12,2,2,56,58,[[354,1,1,56,57],[366,1,1,57,58]]],[13,16,16,58,74,[[375,1,1,58,59],[378,2,2,59,61],[379,1,1,61,62],[381,1,1,62,63],[384,1,1,63,64],[387,1,1,64,65],[391,2,2,65,67],[392,1,1,67,68],[394,1,1,68,69],[395,1,1,69,70],[398,2,2,70,72],[401,1,1,72,73],[402,1,1,73,74]]],[18,1,1,74,75,[[551,1,1,74,75]]],[22,6,6,75,81,[[681,1,1,75,76],[687,1,1,76,77],[706,1,1,77,78],[715,1,1,78,79],[716,1,1,79,80],[717,1,1,80,81]]],[23,46,40,81,121,[[745,1,1,81,82],[758,1,1,82,83],[764,1,1,83,84],[767,5,5,84,89],[769,1,1,89,90],[772,15,9,90,99],[773,2,2,99,101],[776,1,1,101,102],[778,1,1,102,103],[780,2,2,103,105],[781,4,4,105,109],[782,2,2,109,111],[786,2,2,111,113],[787,1,1,113,114],[789,1,1,114,115],[790,2,2,115,117],[791,1,1,117,118],[793,1,1,118,119],[794,1,1,119,120],[795,1,1,120,121]]],[24,1,1,121,122,[[798,1,1,121,122]]],[25,7,6,122,128,[[803,1,1,122,123],[815,5,4,123,127],[834,1,1,127,128]]],[26,1,1,128,129,[[858,1,1,128,129]]],[27,5,4,129,133,[[865,1,1,129,130],[870,2,2,130,132],[873,2,1,132,133]]],[29,1,1,133,134,[[885,1,1,133,134]]],[34,2,2,134,136,[[903,1,1,134,135],[905,1,1,135,136]]],[36,5,5,136,141,[[909,3,3,136,139],[910,2,2,139,141]]],[37,3,3,141,144,[[911,2,2,141,143],[923,1,1,143,144]]],[38,1,1,144,145,[[928,1,1,144,145]]]],[502,1686,4065,5273,5275,5277,5404,5406,5849,6662,7296,7792,8182,8311,8703,8725,8727,8739,8740,8749,8751,8755,8761,8762,9137,9195,9202,9204,9207,9209,9210,9213,9220,9236,9290,9295,9363,9377,9403,9421,9430,9446,9487,9587,9650,9655,9660,9686,9757,9760,9921,10063,10099,10109,10112,10183,10864,11193,11393,11442,11452,11475,11498,11548,11636,11719,11720,11754,11773,11816,11895,11907,11984,12005,15057,17709,17844,18171,18354,18391,18415,18951,19311,19424,19495,19512,19517,19518,19521,19536,19619,19623,19624,19627,19628,19629,19630,19633,19635,19636,19664,19733,19807,19850,19868,19876,19877,19880,19887,19905,19909,19977,19979,20003,20041,20046,20058,20074,20161,20167,20271,20352,20497,20735,20738,20740,20741,21313,21990,22138,22215,22216,22265,22478,22732,22769,22841,22843,22852,22856,22865,22879,22885,23064,23143]]],["prophet's",[1,1,[[29,1,1,0,1,[[885,1,1,0,1]]]],[22478]]],["prophets",[143,133,[[3,1,1,0,1,[[127,1,1,0,1]]],[8,9,8,1,9,[[245,5,4,1,5],[254,2,2,5,7],[263,2,2,7,9]]],[10,17,15,9,24,[[308,8,6,9,15],[309,3,3,15,18],[310,1,1,18,19],[312,5,5,19,24]]],[11,20,17,24,41,[[314,4,4,24,28],[315,2,1,28,29],[316,3,2,29,31],[317,1,1,31,32],[318,1,1,32,33],[321,2,2,33,35],[322,1,1,35,36],[329,3,2,36,38],[333,1,1,38,39],[335,1,1,39,40],[336,1,1,40,41]]],[12,1,1,41,42,[[353,1,1,41,42]]],[13,10,10,42,52,[[384,6,6,42,48],[386,1,1,48,49],[390,1,1,49,50],[395,1,1,50,51],[402,1,1,51,52]]],[14,1,1,52,53,[[411,1,1,52,53]]],[15,5,5,53,58,[[418,2,2,53,55],[421,3,3,55,58]]],[18,1,1,58,59,[[582,1,1,58,59]]],[22,1,1,59,60,[[707,1,1,59,60]]],[23,45,42,60,102,[[746,3,3,60,63],[748,1,1,63,64],[749,2,2,64,66],[751,1,1,66,67],[752,1,1,67,68],[757,1,1,68,69],[758,4,3,69,72],[767,12,10,72,82],[769,1,1,82,83],[770,5,5,83,88],[771,5,5,88,93],[772,1,1,93,94],[773,4,4,94,98],[776,1,1,98,99],[779,1,1,99,100],[781,1,1,100,101],[788,1,1,101,102]]],[24,3,3,102,105,[[798,2,2,102,104],[800,1,1,104,105]]],[25,8,8,105,113,[[814,5,5,105,110],[823,2,2,110,112],[839,1,1,112,113]]],[26,2,2,113,115,[[858,2,2,113,115]]],[27,3,2,115,117,[[867,1,1,115,116],[873,2,1,116,117]]],[29,3,3,117,120,[[880,2,2,117,119],[881,1,1,119,120]]],[32,3,3,120,123,[[895,3,3,120,123]]],[35,1,1,123,124,[[908,1,1,123,124]]],[37,9,9,124,133,[[911,3,3,124,127],[917,3,3,127,130],[918,1,1,130,131],[923,2,2,131,133]]]],[4053,7423,7428,7429,7430,7726,7730,7948,7957,9345,9354,9360,9363,9366,9381,9388,9397,9401,9443,9490,9492,9493,9502,9503,9554,9556,9558,9566,9589,9604,9641,9669,9675,9757,9763,9812,9996,10006,10129,10167,10204,10842,11547,11551,11553,11554,11563,11564,11607,11696,11816,12009,12248,12408,12415,12537,12541,12543,15621,18203,18973,18991,18995,19036,19071,19089,19144,19154,19279,19306,19307,19308,19493,19497,19498,19499,19500,19505,19509,19510,19514,19515,19538,19577,19579,19580,19583,19588,19605,19610,19611,19612,19614,19626,19636,19643,19650,19654,19763,19838,19893,20014,20341,20346,20433,20710,20711,20712,20717,20724,21001,21004,21442,21994,21998,22172,22262,22390,22391,22402,22613,22614,22619,22824,22882,22883,22884,22965,22969,22974,22985,23061,23063]]]]},{"k":"H5031","v":[["*",[6,6,[[1,1,1,0,1,[[64,1,1,0,1]]],[6,1,1,1,2,[[214,1,1,1,2]]],[11,1,1,2,3,[[334,1,1,2,3]]],[13,1,1,3,4,[[400,1,1,3,4]]],[15,1,1,4,5,[[418,1,1,4,5]]],[22,1,1,5,6,[[686,1,1,5,6]]]],[1940,6603,10159,11955,12415,17810]]],["+",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6603]]],["prophetess",[5,5,[[1,1,1,0,1,[[64,1,1,0,1]]],[11,1,1,1,2,[[334,1,1,1,2]]],[13,1,1,2,3,[[400,1,1,2,3]]],[15,1,1,3,4,[[418,1,1,3,4]]],[22,1,1,4,5,[[686,1,1,4,5]]]],[1940,10159,11955,12415,17810]]]]},{"k":"H5032","v":[["*",[5,5,[[0,3,3,0,3,[[24,1,1,0,1],[27,1,1,1,2],[35,1,1,2,3]]],[12,1,1,3,4,[[338,1,1,3,4]]],[22,1,1,4,5,[[738,1,1,4,5]]]],[671,782,1043,10281,18828]]],["Nebaioth",[2,2,[[12,1,1,0,1,[[338,1,1,0,1]]],[22,1,1,1,2,[[738,1,1,1,2]]]],[10281,18828]]],["Nebajoth",[3,3,[[0,3,3,0,3,[[24,1,1,0,1],[27,1,1,1,2],[35,1,1,2,3]]]],[671,782,1043]]]]},{"k":"H5033","v":[["springs",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13809]]]]},{"k":"H5034","v":[["*",[25,21,[[1,2,1,0,1,[[67,2,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[17,1,1,3,4,[[449,1,1,3,4]]],[18,3,3,4,7,[[478,1,1,4,5],[495,1,1,5,6],[514,1,1,6,7]]],[19,1,1,7,8,[[657,1,1,7,8]]],[22,11,8,8,16,[[679,1,1,8,9],[702,2,1,9,10],[706,2,2,10,12],[712,3,1,12,13],[718,2,2,13,15],[742,1,1,15,16]]],[23,2,2,16,18,[[752,1,1,16,17],[758,1,1,17,18]]],[25,1,1,18,19,[[848,1,1,18,19]]],[32,1,1,19,20,[[899,1,1,19,20]]],[33,1,1,20,21,[[902,1,1,20,21]]]],[2017,5773,8648,13199,13942,14163,14452,17283,17684,18099,18165,18168,18307,18427,18428,18891,19166,19314,21691,22670,22718]]],["+",[2,1,[[1,2,1,0,1,[[67,2,1,0,1]]]],[2017]]],["away",[4,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]],[22,2,1,2,3,[[702,2,1,2,3]]]],[8648,14163,18099]]],["disgrace",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19314]]],["dishonoureth",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22670]]],["down",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18307]]],["esteemed",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5773]]],["fade",[3,3,[[22,1,1,0,1,[[742,1,1,0,1]]],[23,1,1,1,2,[[752,1,1,1,2]]],[25,1,1,2,3,[[848,1,1,2,3]]]],[18891,19166,21691]]],["fadeth",[3,3,[[22,3,3,0,3,[[679,1,1,0,1],[718,2,2,1,3]]]],[17684,18427,18428]]],["fading",[2,2,[[22,2,2,0,2,[[706,2,2,0,2]]]],[18165,18168]]],["falling",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18307]]],["foolishly",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17283]]],["nought",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13199]]],["off",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18307]]],["vile",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22718]]],["wither",[2,2,[[18,2,2,0,2,[[478,1,1,0,1],[514,1,1,1,2]]]],[13942,14452]]]]},{"k":"H5035","v":[["*",[38,37,[[8,4,4,0,4,[[236,1,1,0,1],[245,2,2,1,3],[260,1,1,3,4]]],[9,2,2,4,6,[[272,1,1,4,5],[282,1,1,5,6]]],[10,1,1,6,7,[[300,1,1,6,7]]],[12,7,7,7,14,[[350,1,1,7,8],[352,3,3,8,11],[353,1,1,11,12],[362,2,2,12,14]]],[13,4,4,14,18,[[371,1,1,14,15],[375,1,1,15,16],[386,1,1,16,17],[395,1,1,17,18]]],[15,1,1,18,19,[[424,1,1,18,19]]],[17,1,1,19,20,[[473,1,1,19,20]]],[18,8,8,20,28,[[510,1,1,20,21],[534,1,1,21,22],[548,1,1,22,23],[558,1,1,23,24],[569,1,1,24,25],[585,1,1,25,26],[621,1,1,26,27],[627,1,1,27,28]]],[22,4,4,28,32,[[683,1,1,28,29],[692,1,1,29,30],[700,1,1,30,31],[708,1,1,31,32]]],[23,3,2,32,34,[[757,2,1,32,33],[792,1,1,33,34]]],[24,1,1,34,35,[[800,1,1,34,35]]],[29,2,2,35,37,[[883,1,1,35,36],[884,1,1,36,37]]]],[7236,7421,7423,7879,8162,8427,9091,10768,10807,10811,10819,10825,11047,11052,11280,11375,11615,11816,12651,13830,14368,14776,14998,15219,15414,15744,16314,16397,17751,17939,18076,18231,19278,20092,20422,22446,22455]]],["+",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[548,1,1,1,2]]]],[10825,14998]]],["bottle",[5,4,[[8,2,2,0,2,[[236,1,1,0,1],[245,1,1,1,2]]],[9,1,1,2,3,[[282,1,1,2,3]]],[23,2,1,3,4,[[757,2,1,3,4]]]],[7236,7421,8427,19278]]],["bottles",[3,3,[[8,1,1,0,1,[[260,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[7879,13830,20092]]],["flagons",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18076]]],["pitchers",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20422]]],["psalteries",[13,13,[[9,1,1,0,1,[[272,1,1,0,1]]],[10,1,1,1,2,[[300,1,1,1,2]]],[12,6,6,2,8,[[350,1,1,2,3],[352,3,3,3,6],[362,2,2,6,8]]],[13,4,4,8,12,[[371,1,1,8,9],[375,1,1,9,10],[386,1,1,10,11],[395,1,1,11,12]]],[15,1,1,12,13,[[424,1,1,12,13]]]],[8162,9091,10768,10807,10811,10819,11047,11052,11280,11375,11615,11816,12651]]],["psaltery",[8,8,[[8,1,1,0,1,[[245,1,1,0,1]]],[18,7,7,1,8,[[510,1,1,1,2],[534,1,1,2,3],[558,1,1,3,4],[569,1,1,4,5],[585,1,1,5,6],[621,1,1,6,7],[627,1,1,7,8]]]],[7423,14368,14776,15219,15414,15744,16314,16397]]],["vessel",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18231]]],["viol",[2,2,[[22,1,1,0,1,[[683,1,1,0,1]]],[29,1,1,1,2,[[884,1,1,1,2]]]],[17751,22455]]],["viols",[2,2,[[22,1,1,0,1,[[692,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[17939,22446]]]]},{"k":"H5036","v":[["*",[18,18,[[4,2,2,0,2,[[184,2,2,0,2]]],[9,2,2,2,4,[[269,1,1,2,3],[279,1,1,3,4]]],[17,2,2,4,6,[[437,1,1,4,5],[465,1,1,5,6]]],[18,5,5,6,11,[[491,1,1,6,7],[516,1,1,7,8],[530,1,1,8,9],[551,2,2,9,11]]],[19,3,3,11,14,[[644,2,2,11,13],[657,1,1,13,14]]],[22,2,2,14,16,[[710,2,2,14,16]]],[23,1,1,16,17,[[761,1,1,16,17]]],[25,1,1,17,18,[[814,1,1,17,18]]]],[5764,5779,8114,8330,12901,13565,14081,14520,14720,15066,15070,16880,16894,17273,18264,18265,19368,20711]]],["fool",[7,7,[[9,1,1,0,1,[[269,1,1,0,1]]],[18,2,2,1,3,[[491,1,1,1,2],[530,1,1,2,3]]],[19,3,3,3,6,[[644,2,2,3,5],[657,1,1,5,6]]],[23,1,1,6,7,[[761,1,1,6,7]]]],[8114,14081,14720,16880,16894,17273,19368]]],["foolish",[5,5,[[4,2,2,0,2,[[184,2,2,0,2]]],[18,2,2,2,4,[[516,1,1,2,3],[551,1,1,3,4]]],[25,1,1,4,5,[[814,1,1,4,5]]]],[5764,5779,14520,15066,20711]]],["fools",[2,2,[[9,1,1,0,1,[[279,1,1,0,1]]],[17,1,1,1,2,[[465,1,1,1,2]]]],[8330,13565]]],["man",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15070]]],["person",[2,2,[[22,2,2,0,2,[[710,2,2,0,2]]]],[18264,18265]]],["women",[1,1,[[17,1,1,0,1,[[437,1,1,0,1]]]],[12901]]]]},{"k":"H5037","v":[["*",[22,18,[[8,20,16,0,16,[[260,18,14,0,14],[262,1,1,14,15],[265,1,1,15,16]]],[9,2,2,16,18,[[268,1,1,16,17],[269,1,1,17,18]]]],[7864,7865,7866,7870,7871,7875,7880,7886,7887,7895,7897,7898,7899,7900,7933,7983,8051,8084]]],["+",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7898]]],["Nabal",[17,14,[[8,16,13,0,13,[[260,15,12,0,12],[265,1,1,12,13]]],[9,1,1,13,14,[[269,1,1,13,14]]]],[7864,7865,7866,7870,7871,7880,7886,7887,7895,7897,7899,7900,7983,8084]]],["Nabal's",[4,4,[[8,3,3,0,3,[[260,2,2,0,2],[262,1,1,2,3]]],[9,1,1,3,4,[[268,1,1,3,4]]]],[7875,7897,7933,8051]]]]},{"k":"H5038","v":[["*",[48,41,[[2,19,16,0,16,[[94,3,1,0,1],[96,1,1,1,2],[100,13,12,2,14],[106,1,1,14,15],[111,1,1,15,16]]],[4,4,4,16,20,[[166,2,2,16,18],[173,1,1,18,19],[180,1,1,19,20]]],[5,1,1,20,21,[[194,1,1,20,21]]],[10,10,6,21,27,[[303,10,6,21,27]]],[11,1,1,27,28,[[321,1,1,27,28]]],[18,1,1,28,29,[[556,1,1,28,29]]],[22,2,2,29,31,[[683,1,1,29,30],[704,1,1,30,31]]],[23,8,8,31,39,[[751,1,1,31,32],[753,1,1,32,33],[760,2,2,33,35],[763,1,1,35,36],[770,1,1,36,37],[778,1,1,37,38],[780,1,1,38,39]]],[25,2,2,39,41,[[805,1,1,39,40],[845,1,1,40,41]]]],[2832,2903,3005,3008,3021,3022,3024,3025,3032,3033,3034,3035,3036,3037,3250,3377,5298,5311,5470,5637,6031,9206,9208,9209,9212,9213,9214,9793,15187,17764,18149,19152,19197,19340,19354,19414,19595,19821,19872,20543,21630]]],["+",[6,6,[[2,5,5,0,5,[[100,5,5,0,5]]],[5,1,1,5,6,[[194,1,1,5,6]]]],[3008,3022,3032,3035,3037,6031]]],["bodies",[2,2,[[18,1,1,0,1,[[556,1,1,0,1]]],[23,1,1,1,2,[[778,1,1,1,2]]]],[15187,19821]]],["body",[4,4,[[4,1,1,0,1,[[173,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]],[23,2,2,2,4,[[770,1,1,2,3],[780,1,1,3,4]]]],[5470,18149,19595,19872]]],["carcase",[24,18,[[2,11,9,0,9,[[94,3,1,0,1],[100,8,8,1,9]]],[4,2,2,9,11,[[166,1,1,9,10],[180,1,1,10,11]]],[10,10,6,11,17,[[303,10,6,11,17]]],[11,1,1,17,18,[[321,1,1,17,18]]]],[2832,3005,3021,3024,3025,3033,3034,3036,3037,5298,5637,9206,9208,9209,9212,9213,9214,9793]]],["carcases",[6,6,[[22,1,1,0,1,[[683,1,1,0,1]]],[23,5,5,1,6,[[751,1,1,1,2],[753,1,1,2,3],[760,2,2,3,5],[763,1,1,5,6]]]],[17764,19152,19197,19340,19354,19414]]],["died",[1,1,[[2,1,1,0,1,[[106,1,1,0,1]]]],[3250]]],["itself",[5,5,[[2,2,2,0,2,[[96,1,1,0,1],[111,1,1,1,2]]],[4,1,1,2,3,[[166,1,1,2,3]]],[25,2,2,3,5,[[805,1,1,3,4],[845,1,1,4,5]]]],[2903,3377,5311,20543,21630]]]]},{"k":"H5039","v":[["*",[13,13,[[0,1,1,0,1,[[33,1,1,0,1]]],[4,1,1,1,2,[[174,1,1,1,2]]],[5,1,1,2,3,[[193,1,1,2,3]]],[6,4,4,3,7,[[229,2,2,3,5],[230,2,2,5,7]]],[8,1,1,7,8,[[260,1,1,7,8]]],[9,1,1,8,9,[[279,1,1,8,9]]],[17,1,1,9,10,[[477,1,1,9,10]]],[22,2,2,10,12,[[687,1,1,10,11],[710,1,1,11,12]]],[23,1,1,12,13,[[773,1,1,12,13]]]],[987,5491,5991,7047,7048,7060,7064,7886,8329,13930,17846,18265,19658]]],["folly",[10,10,[[0,1,1,0,1,[[33,1,1,0,1]]],[4,1,1,1,2,[[174,1,1,1,2]]],[5,1,1,2,3,[[193,1,1,2,3]]],[6,3,3,3,6,[[229,1,1,3,4],[230,2,2,4,6]]],[8,1,1,6,7,[[260,1,1,6,7]]],[9,1,1,7,8,[[279,1,1,7,8]]],[17,1,1,8,9,[[477,1,1,8,9]]],[22,1,1,9,10,[[687,1,1,9,10]]]],[987,5491,5991,7047,7060,7064,7886,8329,13930,17846]]],["vile",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7048]]],["villany",[2,2,[[22,1,1,0,1,[[710,1,1,0,1]]],[23,1,1,1,2,[[773,1,1,1,2]]]],[18265,19658]]]]},{"k":"H5040","v":[["lewdness",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22115]]]]},{"k":"H5041","v":[["Neballat",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12622]]]]},{"k":"H5042","v":[["*",[11,11,[[18,6,6,0,6,[[496,1,1,0,1],[536,1,1,1,2],[555,1,1,2,3],[571,1,1,3,4],[596,1,1,4,5],[622,1,1,5,6]]],[19,4,4,6,10,[[628,1,1,6,7],[642,2,2,7,9],[645,1,1,9,10]]],[20,1,1,10,11,[[668,1,1,10,11]]]],[14170,14797,15115,15435,16069,16327,16423,16809,16835,16905,17494]]],["flowing",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16905]]],["forth",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17494]]],["out",[4,4,[[18,1,1,0,1,[[536,1,1,0,1]]],[19,3,3,1,4,[[628,1,1,1,2],[642,2,2,2,4]]]],[14797,16423,16809,16835]]],["utter",[4,4,[[18,4,4,0,4,[[555,1,1,0,1],[571,1,1,1,2],[596,1,1,2,3],[622,1,1,3,4]]]],[15115,15435,16069,16327]]],["uttereth",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14170]]]]},{"k":"H5043","v":[["candlestick",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21879]]]]},{"k":"H5044","v":[["Nibshan",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6264]]]]},{"k":"H5045","v":[["*",[112,98,[[0,7,7,0,7,[[11,1,1,0,1],[12,3,3,1,4],[19,1,1,4,5],[23,1,1,5,6],[27,1,1,6,7]]],[1,5,5,7,12,[[75,1,1,7,8],[76,1,1,8,9],[85,1,1,9,10],[87,1,1,10,11],[89,1,1,11,12]]],[3,10,8,12,20,[[129,3,3,12,15],[137,1,1,15,16],[149,1,1,16,17],[150,4,2,17,19],[151,1,1,19,20]]],[4,2,2,20,22,[[153,1,1,20,21],[186,1,1,21,22]]],[5,27,22,22,44,[[196,1,1,22,23],[197,2,2,23,25],[198,1,1,25,26],[201,10,8,26,34],[203,2,2,34,36],[204,9,6,36,42],[205,2,2,42,44]]],[6,4,4,44,48,[[211,3,3,44,47],[231,1,1,47,48]]],[8,9,6,48,54,[[249,1,1,48,49],[255,1,1,49,50],[262,3,1,50,51],[265,4,3,51,54]]],[9,1,1,54,55,[[290,1,1,54,55]]],[10,2,2,55,57,[[297,2,2,55,57]]],[12,3,3,57,60,[[346,1,1,57,58],[363,2,2,58,60]]],[13,3,3,60,63,[[370,2,2,60,62],[394,1,1,62,63]]],[18,1,1,63,64,[[603,1,1,63,64]]],[22,2,2,64,66,[[699,1,1,64,65],[708,1,1,65,66]]],[23,4,4,66,70,[[757,1,1,66,67],[761,1,1,67,68],[776,1,1,68,69],[777,1,1,69,70]]],[25,15,12,70,82,[[821,3,2,70,72],[822,1,1,72,73],[841,1,1,73,74],[847,2,1,74,75],[848,3,2,75,77],[849,5,5,77,82]]],[26,12,11,82,93,[[857,2,2,82,84],[860,10,9,84,93]]],[30,2,2,93,95,[[888,2,2,93,95]]],[37,3,3,95,98,[[917,1,1,95,96],[924,2,2,96,98]]]],[307,319,321,332,496,653,787,2253,2281,2589,2642,2731,4092,4097,4104,4341,4800,4819,4820,4850,4899,5842,6104,6109,6123,6138,6203,6204,6205,6206,6209,6210,6221,6223,6284,6285,6298,6306,6307,6308,6309,6312,6329,6355,6518,6524,6525,7121,7513,7771,7940,7979,7992,8005,8699,8959,8973,10639,11092,11094,11250,11256,11782,16119,18036,18223,19285,19383,19775,19788,20941,20942,20948,21479,21664,21680,21698,21712,21718,21719,21730,21735,21965,21970,22041,22042,22045,22047,22050,22051,22061,22065,22076,22529,22530,22969,23072,23078]]],["+",[15,13,[[0,1,1,0,1,[[12,1,1,0,1]]],[3,2,1,1,2,[[150,2,1,1,2]]],[5,6,5,2,7,[[201,4,3,2,5],[204,2,2,5,7]]],[6,1,1,7,8,[[231,1,1,7,8]]],[8,1,1,8,9,[[249,1,1,8,9]]],[25,4,4,9,13,[[821,1,1,9,10],[822,1,1,10,11],[841,1,1,11,12],[848,1,1,12,13]]]],[321,4820,6205,6209,6210,6298,6306,7121,7513,20942,20948,21479,21680]]],["Southward",[1,1,[[5,1,1,0,1,[[203,1,1,0,1]]]],[6285]]],["country",[1,1,[[5,1,1,0,1,[[197,1,1,0,1]]]],[6123]]],["side",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6355]]],["south",[80,73,[[0,5,5,0,5,[[11,1,1,0,1],[12,1,1,1,2],[19,1,1,2,3],[23,1,1,3,4],[27,1,1,4,5]]],[1,4,4,5,9,[[75,1,1,5,6],[76,1,1,6,7],[85,1,1,7,8],[87,1,1,8,9]]],[3,7,6,9,15,[[129,2,2,9,11],[137,1,1,11,12],[149,1,1,12,13],[150,2,1,13,14],[151,1,1,14,15]]],[4,2,2,15,17,[[153,1,1,15,16],[186,1,1,16,17]]],[5,11,10,17,27,[[196,1,1,17,18],[197,1,1,18,19],[198,1,1,19,20],[201,3,3,20,23],[204,4,3,23,26],[205,1,1,26,27]]],[6,3,3,27,30,[[211,3,3,27,30]]],[8,8,5,30,35,[[255,1,1,30,31],[262,3,1,31,32],[265,4,3,32,35]]],[9,1,1,35,36,[[290,1,1,35,36]]],[10,2,2,36,38,[[297,2,2,36,38]]],[12,1,1,38,39,[[346,1,1,38,39]]],[13,3,3,39,42,[[370,2,2,39,41],[394,1,1,41,42]]],[18,1,1,42,43,[[603,1,1,42,43]]],[22,2,2,43,45,[[699,1,1,43,44],[708,1,1,44,45]]],[23,4,4,45,49,[[757,1,1,45,46],[761,1,1,46,47],[776,1,1,47,48],[777,1,1,48,49]]],[25,10,9,49,58,[[821,2,2,49,51],[847,2,1,51,52],[848,1,1,52,53],[849,5,5,53,58]]],[26,11,10,58,68,[[857,1,1,58,59],[860,10,9,59,68]]],[30,2,2,68,70,[[888,2,2,68,70]]],[37,3,3,70,73,[[917,1,1,70,71],[924,2,2,71,73]]]],[307,319,496,653,787,2253,2281,2589,2642,4097,4104,4341,4800,4819,4850,4899,5842,6104,6109,6138,6204,6206,6221,6308,6309,6312,6329,6518,6524,6525,7771,7940,7979,7992,8005,8699,8959,8973,10639,11250,11256,11782,16119,18036,18223,19285,19383,19775,19788,20941,20942,21664,21698,21712,21718,21719,21730,21735,21970,22041,22042,22045,22047,22050,22051,22061,22065,22076,22529,22530,22969,23072,23078]]],["southward",[14,13,[[0,1,1,0,1,[[12,1,1,0,1]]],[1,1,1,1,2,[[89,1,1,1,2]]],[3,1,1,2,3,[[129,1,1,2,3]]],[5,7,6,3,9,[[201,3,3,3,6],[203,1,1,6,7],[204,3,2,7,9]]],[12,2,2,9,11,[[363,2,2,9,11]]],[25,1,1,11,12,[[848,1,1,11,12]]],[26,1,1,12,13,[[857,1,1,12,13]]]],[332,2731,4092,6203,6204,6223,6284,6306,6307,11092,11094,21698,21965]]]]},{"k":"H5046","v":[["*",[369,343,[[0,36,34,0,34,[[2,1,1,0,1],[8,1,1,1,2],[11,1,1,2,3],[13,1,1,3,4],[20,1,1,4,5],[21,1,1,5,6],[23,4,3,6,9],[25,1,1,9,10],[26,1,1,10,11],[28,3,2,11,13],[30,3,3,13,16],[31,2,2,16,18],[36,2,2,18,20],[37,2,2,20,22],[40,2,2,22,24],[41,1,1,24,25],[42,2,2,25,27],[43,1,1,27,28],[44,2,2,28,30],[45,1,1,30,31],[46,1,1,31,32],[47,1,1,32,33],[48,1,1,33,34]]],[1,6,6,34,40,[[53,1,1,34,35],[62,1,1,35,36],[63,1,1,36,37],[65,1,1,37,38],[68,2,2,38,40]]],[2,2,2,40,42,[[94,1,1,40,41],[103,1,1,41,42]]],[3,2,2,42,44,[[127,1,1,42,43],[139,1,1,43,44]]],[4,9,9,44,53,[[156,1,1,44,45],[157,1,1,45,46],[169,4,4,46,50],[178,1,1,50,51],[182,1,1,51,52],[184,1,1,52,53]]],[5,6,5,53,58,[[188,2,2,53,55],[193,1,1,55,56],[195,2,1,56,57],[196,1,1,57,58]]],[6,28,23,58,81,[[214,1,1,58,59],[219,4,4,59,63],[223,2,2,63,65],[224,14,10,65,75],[226,7,6,75,81]]],[7,6,5,81,86,[[233,3,2,81,83],[234,2,2,83,85],[235,1,1,85,86]]],[8,52,48,86,134,[[238,3,3,86,89],[239,2,2,89,91],[243,1,1,91,92],[244,4,4,92,96],[245,4,2,96,98],[246,1,1,98,99],[249,4,3,99,102],[250,2,2,102,104],[252,1,1,104,105],[253,3,3,105,108],[254,7,7,108,115],[255,2,2,115,117],[257,3,2,117,119],[258,5,5,119,124],[259,2,2,124,126],[260,6,6,126,132],[262,2,2,132,134]]],[9,37,36,134,170,[[267,5,5,134,139],[268,1,1,139,140],[269,1,1,140,141],[270,1,1,141,142],[272,1,1,142,143],[273,1,1,143,144],[276,2,2,144,146],[277,4,4,146,150],[278,1,1,150,151],[279,1,1,151,152],[280,1,1,152,153],[281,4,4,153,157],[283,5,4,157,161],[284,4,4,161,165],[285,3,3,165,168],[287,1,1,168,169],[290,1,1,169,170]]],[10,15,14,170,184,[[291,3,3,170,173],[292,3,3,173,176],[300,3,2,176,178],[304,1,1,178,179],[308,3,3,179,182],[309,1,1,182,183],[310,1,1,183,184]]],[11,22,22,184,206,[[316,4,4,184,188],[317,1,1,188,189],[318,3,3,189,192],[319,5,5,192,197],[320,1,1,197,198],[321,5,5,198,203],[322,1,1,203,204],[330,1,1,204,205],[334,1,1,205,206]]],[12,3,3,206,209,[[354,1,1,206,207],[356,2,2,207,209]]],[13,5,4,209,213,[[375,3,2,209,211],[386,1,1,211,212],[400,1,1,212,213]]],[14,1,1,213,214,[[404,1,1,213,214]]],[15,4,4,214,218,[[414,3,3,214,217],[419,1,1,217,218]]],[16,14,12,218,230,[[427,4,3,218,221],[428,3,2,221,223],[429,5,5,223,228],[431,1,1,228,229],[433,1,1,229,230]]],[17,17,17,230,247,[[436,4,4,230,234],[446,1,1,234,235],[447,1,1,235,236],[450,1,1,236,237],[452,1,1,237,238],[456,1,1,238,239],[461,1,1,239,240],[466,1,1,240,241],[468,1,1,241,242],[471,2,2,242,244],[473,2,2,244,246],[477,1,1,246,247]]],[18,19,19,247,266,[[486,1,1,247,248],[496,1,1,248,249],[499,1,1,249,250],[507,1,1,250,251],[515,1,1,251,252],[517,1,1,252,253],[527,1,1,253,254],[528,1,1,254,255],[541,1,1,255,256],[548,2,2,256,258],[552,1,1,258,259],[569,2,2,259,261],[574,1,1,261,262],[588,1,1,262,263],[619,1,1,263,264],[622,1,1,264,265],[624,1,1,265,266]]],[19,2,2,266,268,[[639,1,1,266,267],[656,1,1,267,268]]],[20,4,4,268,272,[[664,1,1,268,269],[666,1,1,269,270],[668,2,2,270,272]]],[21,2,2,272,274,[[671,1,1,272,273],[675,1,1,273,274]]],[22,32,28,274,302,[[681,1,1,274,275],[685,1,1,275,276],[697,1,1,276,277],[699,3,3,277,280],[714,1,1,280,281],[718,1,1,281,282],[719,5,3,282,285],[720,2,2,285,287],[721,2,2,287,289],[722,3,2,289,291],[723,3,2,291,293],[724,1,1,293,294],[726,5,5,294,299],[735,1,1,299,300],[736,1,1,300,301],[744,1,1,301,302]]],[23,28,24,302,326,[[748,2,2,302,304],[749,1,1,304,305],[753,1,1,305,306],[760,1,1,306,307],[764,2,1,307,308],[775,1,1,308,309],[777,1,1,309,310],[780,5,4,310,314],[782,3,3,314,317],[786,4,4,317,321],[790,1,1,321,322],[792,1,1,322,323],[794,2,2,323,325],[795,3,1,325,326]]],[25,5,5,326,331,[[824,1,1,326,327],[825,1,1,327,328],[838,1,1,328,329],[841,1,1,329,330],[844,1,1,330,331]]],[26,4,4,331,335,[[851,1,1,331,332],[858,1,1,332,333],[859,1,1,333,334],[860,1,1,334,335]]],[27,1,1,335,336,[[865,1,1,335,336]]],[29,1,1,336,337,[[882,1,1,336,337]]],[31,2,2,337,339,[[889,2,2,337,339]]],[32,3,3,339,342,[[893,1,1,339,340],[895,1,1,340,341],[898,1,1,341,342]]],[37,1,1,342,343,[[919,1,1,342,343]]]],[66,227,316,349,539,567,614,619,640,724,769,807,810,893,895,900,933,957,1088,1099,1132,1143,1219,1220,1281,1296,1297,1348,1371,1384,1417,1421,1453,1474,1629,1875,1894,1969,2029,2035,2831,3146,4051,4419,5017,5058,5368,5373,5374,5375,5569,5726,5765,5883,5889,5995,6061,6081,6611,6761,6779,6796,6801,6890,6894,6911,6915,6918,6921,6922,6923,6924,6925,6926,6928,6955,6959,6962,6964,6966,6967,7160,7168,7176,7188,7194,7289,7291,7294,7310,7311,7378,7397,7399,7409,7410,7433,7434,7454,7509,7541,7551,7572,7576,7649,7696,7700,7702,7708,7709,7713,7717,7724,7725,7727,7739,7740,7808,7809,7811,7817,7821,7823,7835,7840,7857,7869,7873,7875,7880,7897,7898,7934,7941,8026,8027,8028,8035,8042,8053,8104,8130,8169,8191,8245,8257,8264,8269,8277,8281,8304,8321,8389,8402,8417,8420,8424,8465,8466,8467,8470,8488,8489,8499,8503,8512,8517,8519,8591,8705,8737,8740,8768,8799,8809,8811,9082,9086,9221,9353,9354,9357,9388,9425,9605,9610,9630,9634,9651,9685,9686,9687,9716,9717,9718,9719,9722,9734,9768,9771,9774,9776,9792,9801,10061,10155,10873,10912,10924,11366,11370,11589,11951,12086,12319,12323,12325,12481,12734,12744,12746,12751,12753,12766,12769,12770,12771,12774,12795,12818,12884,12885,12886,12888,13114,13135,13221,13265,13386,13471,13625,13673,13745,13769,13797,13811,13925,14032,14169,14235,14328,14508,14530,14674,14706,14859,14993,14994,15080,15413,15426,15484,15799,16288,16324,16370,16736,17248,17429,17465,17507,17513,17544,17606,17716,17784,18016,18037,18041,18045,18352,18441,18473,18474,18477,18489,18492,18514,18517,18540,18541,18580,18582,18596,18617,18619,18620,18628,18634,18777,18787,18941,19032,19042,19078,19187,19346,19432,19701,19778,19855,19858,19859,19862,19910,19920,19922,19978,19979,19995,19996,20059,20100,20168,20194,20243,21043,21075,21415,21481,21582,21760,22011,22036,22038,22145,22423,22539,22541,22589,22616,22656,23011]]],["+",[19,14,[[1,1,1,0,1,[[68,1,1,0,1]]],[5,3,2,1,3,[[188,1,1,1,2],[195,2,1,2,3]]],[6,2,1,3,4,[[224,2,1,3,4]]],[8,5,3,4,7,[[238,1,1,4,5],[245,2,1,5,6],[257,2,1,6,7]]],[16,1,1,7,8,[[427,1,1,7,8]]],[22,2,2,8,10,[[726,1,1,8,9],[744,1,1,9,10]]],[23,3,2,10,12,[[780,3,2,10,12]]],[25,2,2,12,14,[[841,1,1,12,13],[844,1,1,13,14]]]],[2035,5889,6061,6921,7291,7434,7809,12734,18628,18941,19858,19862,21481,21582]]],["Declare",[6,6,[[23,5,5,0,5,[[748,1,1,0,1],[749,1,1,1,2],[782,1,1,2,3],[790,1,1,3,4],[794,1,1,4,5]]],[32,1,1,5,6,[[893,1,1,5,6]]]],[19032,19078,19920,20059,20168,22589]]],["Declaring",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18596]]],["Report",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19432]]],["Shew",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18474]]],["Tell",[10,10,[[0,1,1,0,1,[[31,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[8,3,3,2,5,[[244,1,1,2,3],[245,1,1,3,4],[249,1,1,4,5]]],[9,1,1,5,6,[[267,1,1,5,6]]],[21,1,1,6,7,[[671,1,1,6,7]]],[22,1,1,7,8,[[723,1,1,7,8]]],[23,1,1,8,9,[[780,1,1,8,9]]],[31,1,1,9,10,[[889,1,1,9,10]]]],[957,6955,7409,7433,7551,8042,17544,18582,19859,22539]]],["another",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20243]]],["bewrayeth",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17248]]],["certify",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8417]]],["declare",[37,37,[[0,1,1,0,1,[[40,1,1,0,1]]],[6,2,2,1,3,[[224,2,2,1,3]]],[16,1,1,3,4,[[429,1,1,3,4]]],[17,4,4,4,8,[[456,1,1,4,5],[466,1,1,5,6],[473,2,2,6,8]]],[18,10,10,8,18,[[486,1,1,8,9],[499,1,1,9,10],[507,1,1,10,11],[515,1,1,11,12],[517,1,1,12,13],[527,1,1,13,14],[541,1,1,14,15],[552,1,1,15,16],[574,1,1,16,17],[622,1,1,17,18]]],[22,10,10,18,28,[[681,1,1,18,19],[699,1,1,19,20],[720,2,2,20,22],[721,1,1,22,23],[722,1,1,23,24],[723,1,1,24,25],[726,2,2,25,27],[735,1,1,27,28]]],[23,6,6,28,34,[[753,1,1,28,29],[775,1,1,29,30],[782,1,1,30,31],[786,2,2,31,33],[794,1,1,33,34]]],[25,1,1,34,35,[[824,1,1,34,35]]],[32,1,1,35,36,[[895,1,1,35,36]]],[37,1,1,36,37,[[919,1,1,36,37]]]],[1219,6922,6924,12770,13386,13625,13797,13811,14032,14235,14328,14508,14530,14674,14859,15080,15484,16324,17716,18041,18489,18492,18514,18540,18580,18620,18634,18777,19187,19701,19910,19979,19995,20194,21043,22616,23011]]],["declared",[12,12,[[4,1,1,0,1,[[156,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]],[18,1,1,2,3,[[548,1,1,2,3]]],[22,7,7,3,10,[[699,2,2,3,5],[719,1,1,5,6],[721,1,1,6,7],[722,1,1,7,8],[726,2,2,8,10]]],[23,2,2,10,12,[[780,1,1,10,11],[786,1,1,11,12]]]],[5017,8517,14993,18037,18045,18477,18517,18541,18617,18619,19855,19996]]],["declareth",[3,3,[[23,1,1,0,1,[[748,1,1,0,1]]],[27,1,1,1,2,[[865,1,1,1,2]]],[29,1,1,2,3,[[882,1,1,2,3]]]],[19042,22145,22423]]],["denounce",[1,1,[[4,1,1,0,1,[[182,1,1,0,1]]]],[5726]]],["expound",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6923]]],["expounded",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6928]]],["forth",[3,3,[[18,2,2,0,2,[[528,1,1,0,1],[569,1,1,1,2]]],[19,1,1,2,3,[[639,1,1,2,3]]]],[14706,15413,16736]]],["fully",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7160]]],["messenger",[2,2,[[9,1,1,0,1,[[281,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[8402,20243]]],["profess",[1,1,[[4,1,1,0,1,[[178,1,1,0,1]]]],[5569]]],["rehearsed",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7649]]],["report",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19432]]],["shew",[31,30,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[62,1,1,1,2]]],[4,5,5,2,7,[[157,1,1,2,3],[169,3,3,3,6],[184,1,1,6,7]]],[8,3,3,7,10,[[243,1,1,7,8],[244,1,1,8,9],[260,1,1,9,10]]],[11,2,2,10,12,[[318,1,1,10,11],[319,1,1,11,12]]],[14,1,1,12,13,[[404,1,1,12,13]]],[15,1,1,13,14,[[419,1,1,13,14]]],[16,1,1,14,15,[[427,1,1,14,15]]],[17,2,2,15,17,[[446,1,1,15,16],[468,1,1,16,17]]],[18,1,1,17,18,[[569,1,1,17,18]]],[22,4,3,18,21,[[719,2,1,18,19],[722,1,1,19,20],[736,1,1,20,21]]],[23,4,4,21,25,[[760,1,1,21,22],[777,1,1,22,23],[786,1,1,23,24],[795,1,1,24,25]]],[25,1,1,25,26,[[838,1,1,25,26]]],[26,4,4,26,30,[[851,1,1,26,27],[858,1,1,27,28],[859,1,1,28,29],[860,1,1,29,30]]]],[1417,1875,5058,5373,5374,5375,5765,7378,7397,7869,9685,9719,12086,12481,12734,13114,13673,15426,18473,18540,18787,19346,19778,19978,20243,21415,21760,22011,22036,22038]]],["shewed",[18,18,[[0,1,1,0,1,[[40,1,1,0,1]]],[6,3,3,1,4,[[214,1,1,1,2],[223,1,1,2,3],[226,1,1,3,4]]],[7,2,2,4,6,[[233,2,2,4,6]]],[8,4,4,6,10,[[246,1,1,6,7],[254,1,1,7,8],[257,1,1,8,9],[259,1,1,9,10]]],[9,1,1,10,11,[[277,1,1,10,11]]],[11,1,1,11,12,[[334,1,1,11,12]]],[16,2,2,12,14,[[427,1,1,12,13],[428,1,1,13,14]]],[18,3,3,14,17,[[548,1,1,14,15],[588,1,1,15,16],[619,1,1,16,17]]],[32,1,1,17,18,[[898,1,1,17,18]]]],[1220,6611,6894,6967,7160,7168,7454,7713,7808,7857,8281,10155,12744,12753,14994,15799,16288,22656]]],["sheweth",[5,5,[[17,2,2,0,2,[[471,2,2,0,2]]],[18,2,2,2,4,[[496,1,1,2,3],[624,1,1,3,4]]],[22,1,1,4,5,[[719,1,1,4,5]]]],[13745,13769,14169,16370,18477]]],["speaketh",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13265]]],["tell",[56,55,[[0,12,11,0,11,[[11,1,1,0,1],[20,1,1,1,2],[23,3,2,2,4],[28,1,1,4,5],[30,1,1,5,6],[31,1,1,6,7],[36,1,1,7,8],[42,1,1,8,9],[44,1,1,9,10],[48,1,1,10,11]]],[1,1,1,11,12,[[68,1,1,11,12]]],[2,1,1,12,13,[[103,1,1,12,13]]],[3,1,1,13,14,[[139,1,1,13,14]]],[5,1,1,14,15,[[193,1,1,14,15]]],[6,3,3,15,18,[[224,1,1,15,16],[226,2,2,16,18]]],[7,2,2,18,20,[[234,1,1,18,19],[235,1,1,19,20]]],[8,8,8,20,28,[[244,2,2,20,22],[250,1,1,22,23],[254,1,1,23,24],[255,2,2,24,26],[258,1,1,26,27],[262,1,1,27,28]]],[9,6,6,28,34,[[267,1,1,28,29],[278,1,1,29,30],[279,1,1,30,31],[281,1,1,31,32],[283,1,1,32,33],[284,1,1,33,34]]],[10,3,3,34,37,[[291,1,1,34,35],[304,1,1,35,36],[308,1,1,36,37]]],[11,4,4,37,41,[[316,1,1,37,38],[319,1,1,38,39],[321,2,2,39,41]]],[12,1,1,41,42,[[354,1,1,41,42]]],[17,5,5,42,47,[[436,4,4,42,46],[447,1,1,46,47]]],[20,4,4,47,51,[[664,1,1,47,48],[666,1,1,48,49],[668,2,2,49,51]]],[21,1,1,51,52,[[675,1,1,51,52]]],[22,1,1,52,53,[[697,1,1,52,53]]],[23,1,1,53,54,[[792,1,1,53,54]]],[25,1,1,54,55,[[825,1,1,54,55]]]],[316,539,614,640,810,900,933,1099,1296,1371,1474,2029,3146,4419,5995,6925,6959,6962,7176,7194,7399,7410,7576,7709,7739,7740,7821,7941,8026,8304,8321,8424,8465,8499,8737,9221,9353,9605,9716,9768,9771,10873,12884,12885,12886,12888,13135,17429,17465,17507,17513,17606,18016,20100,21075]]],["telleth",[2,2,[[9,1,1,0,1,[[273,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]]],[8191,9686]]],["told",[147,140,[[0,20,19,0,19,[[2,1,1,0,1],[8,1,1,1,2],[13,1,1,2,3],[21,1,1,3,4],[23,1,1,4,5],[25,1,1,5,6],[26,1,1,6,7],[28,2,1,7,8],[30,2,2,8,10],[36,1,1,10,11],[37,2,2,11,13],[41,1,1,13,14],[42,1,1,14,15],[43,1,1,15,16],[44,1,1,16,17],[46,1,1,17,18],[47,1,1,18,19]]],[1,3,3,19,22,[[53,1,1,19,20],[63,1,1,20,21],[65,1,1,21,22]]],[3,1,1,22,23,[[127,1,1,22,23]]],[4,1,1,23,24,[[169,1,1,23,24]]],[5,1,1,24,25,[[196,1,1,24,25]]],[6,15,13,25,38,[[219,4,4,25,29],[223,1,1,29,30],[224,7,5,30,35],[226,3,3,35,38]]],[7,1,1,38,39,[[234,1,1,38,39]]],[8,28,28,39,67,[[238,2,2,39,41],[239,2,2,41,43],[245,1,1,43,44],[249,3,3,44,47],[250,1,1,47,48],[253,3,3,48,51],[254,5,5,51,56],[258,4,4,56,60],[259,1,1,60,61],[260,5,5,61,66],[262,1,1,66,67]]],[9,25,24,67,91,[[267,3,3,67,70],[268,1,1,70,71],[269,1,1,71,72],[270,1,1,72,73],[272,1,1,73,74],[276,2,2,74,76],[277,3,3,76,79],[280,1,1,79,80],[281,1,1,80,81],[283,4,3,81,84],[284,3,3,84,87],[285,2,2,87,89],[287,1,1,89,90],[290,1,1,90,91]]],[10,12,11,91,102,[[291,2,2,91,93],[292,3,3,93,96],[300,3,2,96,98],[308,2,2,98,100],[309,1,1,100,101],[310,1,1,101,102]]],[11,14,14,102,116,[[316,3,3,102,105],[317,1,1,105,106],[318,1,1,106,107],[319,3,3,107,110],[320,1,1,110,111],[321,3,3,111,114],[322,1,1,114,115],[330,1,1,115,116]]],[12,2,2,116,118,[[356,2,2,116,118]]],[13,5,4,118,122,[[375,3,2,118,120],[386,1,1,120,121],[400,1,1,121,122]]],[15,3,3,122,125,[[414,3,3,122,125]]],[16,9,8,125,133,[[427,1,1,125,126],[428,2,1,126,127],[429,4,4,127,131],[431,1,1,131,132],[433,1,1,132,133]]],[17,1,1,133,134,[[450,1,1,133,134]]],[22,4,4,134,138,[[685,1,1,134,135],[714,1,1,135,136],[718,1,1,136,137],[723,1,1,137,138]]],[23,1,1,138,139,[[782,1,1,138,139]]],[31,1,1,139,140,[[889,1,1,139,140]]]],[66,227,349,567,619,724,769,807,893,895,1088,1132,1143,1281,1297,1348,1384,1421,1453,1629,1894,1969,4051,5368,6081,6761,6779,6796,6801,6890,6911,6915,6918,6925,6926,6964,6966,6967,7188,7289,7294,7310,7311,7434,7509,7541,7551,7572,7696,7700,7702,7708,7717,7724,7725,7727,7811,7817,7823,7835,7840,7873,7875,7880,7897,7898,7934,8027,8028,8035,8053,8104,8130,8169,8245,8257,8264,8269,8277,8389,8420,8466,8467,8470,8488,8489,8503,8512,8519,8591,8705,8740,8768,8799,8809,8811,9082,9086,9354,9357,9388,9425,9610,9630,9634,9651,9687,9717,9718,9722,9734,9774,9776,9792,9801,10061,10912,10924,11366,11370,11589,11951,12319,12323,12325,12746,12751,12766,12769,12771,12774,12795,12818,13221,17784,18352,18441,18582,19922,22541]]],["utter",[2,2,[[2,1,1,0,1,[[94,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]]],[2831,5883]]],["uttered",[2,2,[[17,2,2,0,2,[[461,1,1,0,1],[477,1,1,1,2]]]],[13471,13925]]]]},{"k":"H5047","v":[["issued",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21943]]]]},{"k":"H5048","v":[["*",[151,143,[[0,8,7,0,7,[[1,2,2,0,2],[20,2,1,2,3],[30,2,2,3,5],[32,1,1,5,6],[46,1,1,6,7]]],[1,3,3,7,10,[[59,1,1,7,8],[68,1,1,8,9],[83,1,1,9,10]]],[3,3,3,10,13,[[118,1,1,10,11],[138,1,1,11,12],[141,1,1,12,13]]],[4,3,3,13,16,[[180,1,1,13,14],[183,1,1,14,15],[184,1,1,15,16]]],[5,7,7,16,23,[[189,1,1,16,17],[191,1,1,17,18],[192,2,2,18,20],[194,3,3,20,23]]],[6,2,2,23,25,[[219,1,1,23,24],[230,1,1,24,25]]],[7,2,1,25,26,[[235,2,1,25,26]]],[8,6,4,26,30,[[247,2,1,26,27],[250,2,1,27,28],[251,1,1,28,29],[261,1,1,29,30]]],[9,6,5,30,35,[[278,2,1,30,31],[284,1,1,31,32],[288,3,3,32,35]]],[10,5,4,35,39,[[298,1,1,35,36],[310,1,1,36,37],[311,3,2,37,39]]],[11,5,5,39,44,[[313,1,1,39,40],[314,2,2,40,42],[315,1,1,42,43],[316,1,1,43,44]]],[12,3,3,44,47,[[342,1,1,44,45],[345,1,1,45,46],[346,1,1,46,47]]],[13,4,4,47,51,[[372,2,2,47,49],[373,1,1,49,50],[374,1,1,50,51]]],[15,19,19,51,70,[[415,11,11,51,62],[416,1,1,62,63],[419,1,1,63,64],[420,1,1,64,65],[423,1,1,65,66],[424,3,3,66,69],[425,1,1,69,70]]],[17,3,3,70,73,[[439,1,1,70,71],[445,1,1,71,72],[461,1,1,72,73]]],[18,36,36,73,109,[[482,1,1,73,74],[487,1,1,74,75],[493,1,1,75,76],[495,3,3,76,79],[499,1,1,79,80],[500,1,1,80,81],[503,1,1,81,82],[508,2,2,82,84],[513,1,1,84,85],[515,3,3,85,88],[516,2,2,88,90],[521,1,1,90,91],[527,1,1,91,92],[528,1,1,92,93],[529,1,1,93,94],[531,1,1,94,95],[546,1,1,95,96],[555,1,1,96,97],[563,1,1,97,98],[565,1,1,98,99],[566,1,1,99,100],[567,1,1,100,101],[578,2,2,101,103],[586,1,1,103,104],[593,2,2,104,106],[596,2,2,106,108],[615,1,1,108,109]]],[19,4,4,109,113,[[631,1,1,109,110],[641,1,1,110,111],[642,1,1,111,112],[648,1,1,112,113]]],[20,2,2,113,115,[[662,1,1,113,114],[664,1,1,114,115]]],[21,1,1,115,116,[[676,1,1,115,116]]],[22,9,9,116,125,[[679,2,2,116,118],[683,1,1,118,119],[702,1,1,119,120],[718,1,1,120,121],[725,1,1,121,122],[727,1,1,122,123],[737,1,1,123,124],[739,1,1,124,125]]],[23,2,2,125,127,[[760,1,1,125,126],[775,1,1,126,127]]],[24,1,1,127,128,[[799,1,1,127,128]]],[25,7,5,128,133,[[841,2,2,128,130],[842,1,1,130,131],[843,4,2,131,133]]],[26,3,3,133,136,[[857,1,1,133,134],[859,2,2,134,136]]],[27,1,1,136,137,[[868,1,1,136,137]]],[28,1,1,137,138,[[876,1,1,137,138]]],[29,2,2,138,140,[[882,1,1,138,139],[887,1,1,139,140]]],[30,1,1,140,141,[[888,1,1,140,141]]],[31,1,1,141,142,[[890,1,1,141,142]]],[34,1,1,142,143,[[903,1,1,142,143]]]],[48,50,529,905,910,972,1435,1787,2028,2506,3660,4407,4475,5677,5739,5810,5909,5947,5954,5969,6013,6035,6037,6771,7088,7194,7463,7590,7601,7925,8298,8491,8615,8625,8627,9007,9435,9461,9464,9546,9558,9566,9598,9628,10439,10607,10653,11294,11295,11330,11360,12337,12343,12346,12350,12352,12353,12354,12355,12356,12357,12358,12364,12423,12496,12610,12633,12648,12661,12692,12946,13103,13473,13978,14046,14100,14130,14140,14142,14229,14240,14276,14350,14353,14439,14499,14501,14507,14513,14517,14586,14676,14694,14719,14728,14954,15125,15298,15309,15362,15386,15516,15520,15770,15862,15866,15944,16066,16232,16515,16779,16818,17014,17393,17425,17619,17661,17670,17760,18118,18437,18613,18652,18812,18854,19353,19730,20389,21490,21500,21542,21553,21555,21976,22028,22031,22180,22307,22413,22498,22521,22552,22734]]],["+",[29,28,[[0,2,1,0,1,[[20,2,1,0,1]]],[1,1,1,1,2,[[59,1,1,1,2]]],[3,1,1,2,3,[[118,1,1,2,3]]],[4,2,2,3,5,[[180,1,1,3,4],[184,1,1,4,5]]],[6,2,2,5,7,[[219,1,1,5,6],[230,1,1,6,7]]],[8,1,1,7,8,[[261,1,1,7,8]]],[9,1,1,8,9,[[284,1,1,8,9]]],[11,4,4,9,13,[[314,2,2,9,11],[315,1,1,11,12],[316,1,1,12,13]]],[15,3,3,13,16,[[415,3,3,13,16]]],[18,3,3,16,19,[[487,1,1,16,17],[508,1,1,17,18],[515,1,1,18,19]]],[19,1,1,19,20,[[641,1,1,19,20]]],[20,1,1,20,21,[[662,1,1,20,21]]],[21,1,1,21,22,[[676,1,1,21,22]]],[22,1,1,22,23,[[679,1,1,22,23]]],[23,1,1,23,24,[[760,1,1,23,24]]],[26,1,1,24,25,[[859,1,1,24,25]]],[29,1,1,25,26,[[887,1,1,25,26]]],[30,1,1,26,27,[[888,1,1,26,27]]],[31,1,1,27,28,[[890,1,1,27,28]]]],[529,1787,3660,5677,5810,6771,7088,7925,8491,9558,9566,9598,9628,12346,12352,12354,14046,14353,14501,16779,17393,17619,17670,19353,22028,22498,22521,22552]]],["about",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12692]]],["against",[27,26,[[3,1,1,0,1,[[141,1,1,0,1]]],[5,2,2,1,3,[[189,1,1,1,2],[191,1,1,2,3]]],[12,3,3,3,6,[[342,1,1,3,4],[345,1,1,4,5],[346,1,1,5,6]]],[15,12,12,6,18,[[415,8,8,6,14],[419,1,1,14,15],[424,3,3,15,18]]],[17,1,1,18,19,[[445,1,1,18,19]]],[19,1,1,19,20,[[648,1,1,19,20]]],[23,1,1,20,21,[[775,1,1,20,21]]],[25,6,5,21,26,[[841,2,2,21,23],[842,1,1,23,24],[843,3,2,24,26]]]],[4475,5909,5947,10439,10607,10653,12337,12343,12350,12353,12355,12356,12357,12358,12423,12633,12648,12661,13103,17014,19730,21490,21500,21542,21553,21555]]],["before",[77,73,[[0,3,3,0,3,[[30,2,2,0,2],[32,1,1,2,3]]],[1,2,2,3,5,[[68,1,1,3,4],[83,1,1,4,5]]],[3,1,1,5,6,[[138,1,1,5,6]]],[4,1,1,6,7,[[183,1,1,6,7]]],[5,5,5,7,12,[[192,2,2,7,9],[194,3,3,9,12]]],[7,2,1,12,13,[[235,2,1,12,13]]],[8,5,3,13,16,[[247,2,1,13,14],[250,2,1,14,15],[251,1,1,15,16]]],[9,4,3,16,19,[[278,2,1,16,17],[288,2,2,17,19]]],[10,3,3,19,22,[[310,1,1,19,20],[311,2,2,20,22]]],[11,1,1,22,23,[[313,1,1,22,23]]],[13,3,3,23,26,[[372,1,1,23,24],[373,1,1,24,25],[374,1,1,25,26]]],[15,2,2,26,28,[[416,1,1,26,27],[420,1,1,27,28]]],[17,2,2,28,30,[[439,1,1,28,29],[461,1,1,29,30]]],[18,26,26,30,56,[[493,1,1,30,31],[495,2,2,31,33],[499,1,1,33,34],[503,1,1,34,35],[508,1,1,35,36],[513,1,1,36,37],[515,2,2,37,39],[516,2,2,39,41],[521,1,1,41,42],[527,1,1,42,43],[528,1,1,43,44],[529,1,1,44,45],[531,1,1,45,46],[546,1,1,46,47],[563,1,1,47,48],[565,1,1,48,49],[566,1,1,49,50],[567,1,1,50,51],[578,1,1,51,52],[586,1,1,52,53],[596,2,2,53,55],[615,1,1,55,56]]],[19,2,2,56,58,[[631,1,1,56,57],[642,1,1,57,58]]],[20,1,1,58,59,[[664,1,1,58,59]]],[22,6,6,59,65,[[702,1,1,59,60],[718,1,1,60,61],[725,1,1,61,62],[727,1,1,62,63],[737,1,1,63,64],[739,1,1,64,65]]],[24,1,1,65,66,[[799,1,1,65,66]]],[25,1,1,66,67,[[843,1,1,66,67]]],[26,2,2,67,69,[[857,1,1,67,68],[859,1,1,68,69]]],[27,1,1,69,70,[[868,1,1,69,70]]],[28,1,1,70,71,[[876,1,1,70,71]]],[29,1,1,71,72,[[882,1,1,71,72]]],[34,1,1,72,73,[[903,1,1,72,73]]]],[905,910,972,2028,2506,4407,5739,5954,5969,6013,6035,6037,7194,7463,7590,7601,8298,8615,8625,9435,9461,9464,9546,11295,11330,11360,12364,12496,12946,13473,14100,14130,14140,14229,14276,14350,14439,14499,14507,14513,14517,14586,14676,14694,14719,14728,14954,15298,15309,15362,15386,15516,15770,15944,16066,16232,16515,16818,17425,18118,18437,18613,18652,18812,18854,20389,21553,21976,22031,22180,22307,22413,22734]]],["him",[2,2,[[0,2,2,0,2,[[1,2,2,0,2]]]],[48,50]]],["in",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,3,3,1,4,[[482,1,1,1,2],[495,1,1,2,3],[578,1,1,3,4]]],[22,1,1,4,5,[[683,1,1,4,5]]]],[8627,13978,14142,15520,17760]]],["of",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11294]]],["over",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12610]]],["presence",[7,7,[[0,1,1,0,1,[[46,1,1,0,1]]],[10,2,2,1,3,[[298,1,1,1,2],[311,1,1,2,3]]],[18,3,3,3,6,[[500,1,1,3,4],[593,2,2,4,6]]],[22,1,1,6,7,[[679,1,1,6,7]]]],[1435,9007,9464,14240,15862,15866,17661]]],["sight",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15125]]]]},{"k":"H5049","v":[["toward",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21915]]]]},{"k":"H5050","v":[["*",[6,6,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,2,2,1,3,[[453,1,1,1,2],[457,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]],[22,2,2,4,6,[[687,1,1,4,5],[691,1,1,5,6]]]],[8631,13281,13417,14146,17831,17916]]],["enlighten",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14146]]],["lighten",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8631]]],["shine",[3,3,[[17,2,2,0,2,[[453,1,1,0,1],[457,1,1,1,2]]],[22,1,1,2,3,[[691,1,1,2,3]]]],[13281,13417,17916]]],["shined",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17831]]]]},{"k":"H5051","v":[["*",[19,19,[[9,2,2,0,2,[[288,1,1,0,1],[289,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]],[19,1,1,3,4,[[631,1,1,3,4]]],[22,5,5,4,9,[[682,1,1,4,5],[728,1,1,5,6],[738,2,2,6,8],[740,1,1,8,9]]],[25,5,5,9,14,[[802,4,4,9,13],[811,1,1,13,14]]],[28,2,2,14,16,[[877,1,1,14,15],[878,1,1,15,16]]],[29,1,1,16,17,[[883,1,1,16,17]]],[34,2,2,17,19,[[905,2,2,17,19]]]],[8615,8657,14130,16508,17738,18672,18824,18840,18855,20468,20477,20491,20492,20637,22321,22358,22443,22772,22779]]],["+",[3,3,[[9,2,2,0,2,[[288,1,1,0,1],[289,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]]],[8615,8657,14130]]],["bright",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20477]]],["brightness",[9,9,[[22,3,3,0,3,[[738,2,2,0,2],[740,1,1,2,3]]],[25,4,4,3,7,[[802,3,3,3,6],[811,1,1,6,7]]],[29,1,1,7,8,[[883,1,1,7,8]]],[34,1,1,8,9,[[905,1,1,8,9]]]],[18824,18840,18855,20468,20491,20492,20637,22443,22772]]],["light",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18672]]],["shining",[5,5,[[19,1,1,0,1,[[631,1,1,0,1]]],[22,1,1,1,2,[[682,1,1,1,2]]],[28,2,2,2,4,[[877,1,1,2,3],[878,1,1,3,4]]],[34,1,1,4,5,[[905,1,1,4,5]]]],[16508,17738,22321,22358,22779]]]]},{"k":"H5052","v":[["Nogah",[2,2,[[12,2,2,0,2,[[340,1,1,0,1],[351,1,1,1,2]]]],[10368,10780]]]]},{"k":"H5053","v":[["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21924]]]]},{"k":"H5054","v":[["brightness",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18809]]]]},{"k":"H5055","v":[["*",[11,10,[[1,4,3,0,3,[[70,4,3,0,3]]],[4,1,1,3,4,[[185,1,1,3,4]]],[10,1,1,4,5,[[312,1,1,4,5]]],[13,1,1,5,6,[[384,1,1,5,6]]],[18,1,1,6,7,[[521,1,1,6,7]]],[25,1,1,7,8,[[835,1,1,7,8]]],[26,2,2,8,10,[[857,1,1,8,9],[860,1,1,9,10]]]],[2105,2108,2109,5827,9491,11552,14576,21334,21965,22076]]],["+",[3,3,[[1,1,1,0,1,[[70,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]],[13,1,1,2,3,[[384,1,1,2,3]]]],[2105,9491,11552]]],["down",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14576]]],["gored",[2,1,[[1,2,1,0,1,[[70,2,1,0,1]]]],[2108]]],["push",[3,3,[[1,1,1,0,1,[[70,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[2109,5827,22076]]],["pushed",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21334]]],["pushing",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21965]]]]},{"k":"H5056","v":[["*",[2,2,[[1,2,2,0,2,[[70,2,2,0,2]]]],[2106,2113]]],["horn",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2106]]],["push",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2113]]]]},{"k":"H5057","v":[["*",[44,44,[[8,4,4,0,4,[[244,1,1,0,1],[245,1,1,1,2],[248,1,1,2,3],[260,1,1,3,4]]],[9,3,3,4,7,[[271,1,1,4,5],[272,1,1,5,6],[273,1,1,6,7]]],[10,3,3,7,10,[[291,1,1,7,8],[304,1,1,8,9],[306,1,1,9,10]]],[11,1,1,10,11,[[332,1,1,10,11]]],[12,12,12,11,23,[[342,1,1,11,12],[346,2,2,12,14],[348,1,1,14,15],[349,1,1,15,16],[350,1,1,16,17],[354,1,1,17,18],[363,1,1,18,19],[364,2,2,19,21],[365,1,1,21,22],[366,1,1,22,23]]],[13,9,9,23,32,[[372,1,1,23,24],[377,2,2,24,26],[385,1,1,26,27],[394,1,1,27,28],[397,2,2,28,30],[398,1,1,30,31],[401,1,1,31,32]]],[15,1,1,32,33,[[423,1,1,32,33]]],[17,2,2,33,35,[[464,1,1,33,34],[466,1,1,34,35]]],[18,1,1,35,36,[[553,1,1,35,36]]],[19,2,2,36,38,[[635,1,1,36,37],[655,1,1,37,38]]],[22,1,1,38,39,[[733,1,1,38,39]]],[23,1,1,39,40,[[764,1,1,39,40]]],[25,1,1,40,41,[[829,1,1,40,41]]],[26,3,3,41,44,[[858,2,2,41,43],[860,1,1,43,44]]]],[7407,7419,7499,7891,8134,8178,8188,8752,9225,9285,10103,10430,10626,10635,10675,10747,10761,10870,11101,11113,11125,11147,11186,11287,11425,11436,11587,11771,11866,11867,11896,11974,12599,13542,13625,15093,16608,17212,18744,19423,21159,22013,22014,22058]]],["Prince",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22013]]],["captain",[5,5,[[8,3,3,0,3,[[244,1,1,0,1],[245,1,1,1,2],[248,1,1,2,3]]],[9,1,1,3,4,[[271,1,1,3,4]]],[11,1,1,4,5,[[332,1,1,4,5]]]],[7407,7419,7499,8134,10103]]],["captains",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11425]]],["chief",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19423]]],["governor",[2,2,[[12,1,1,0,1,[[366,1,1,0,1]]],[13,1,1,1,2,[[394,1,1,1,2]]]],[11186,11771]]],["leader",[3,3,[[12,2,2,0,2,[[349,1,1,0,1],[350,1,1,1,2]]],[22,1,1,2,3,[[733,1,1,2,3]]]],[10747,10761,18744]]],["leaders",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11896]]],["nobles",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13542]]],["prince",[7,7,[[10,2,2,0,2,[[304,1,1,0,1],[306,1,1,1,2]]],[17,1,1,2,3,[[466,1,1,2,3]]],[19,1,1,3,4,[[655,1,1,3,4]]],[25,1,1,4,5,[[829,1,1,4,5]]],[26,2,2,5,7,[[858,1,1,5,6],[860,1,1,6,7]]]],[9225,9285,13625,17212,21159,22014,22058]]],["princes",[1,1,[[18,1,1,0,1,[[553,1,1,0,1]]]],[15093]]],["ruler",[19,19,[[8,1,1,0,1,[[260,1,1,0,1]]],[9,2,2,1,3,[[272,1,1,1,2],[273,1,1,2,3]]],[10,1,1,3,4,[[291,1,1,3,4]]],[12,9,9,4,13,[[342,1,1,4,5],[346,2,2,5,7],[348,1,1,7,8],[354,1,1,8,9],[363,1,1,9,10],[364,2,2,10,12],[365,1,1,12,13]]],[13,5,5,13,18,[[372,1,1,13,14],[377,1,1,14,15],[385,1,1,15,16],[397,2,2,16,18]]],[15,1,1,18,19,[[423,1,1,18,19]]]],[7891,8178,8188,8752,10430,10626,10635,10675,10870,11101,11113,11125,11147,11287,11436,11587,11866,11867,12599]]],["rulers",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11974]]],["things",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16608]]]]},{"k":"H5058","v":[["*",[7,7,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,2,2,1,3,[[546,1,1,1,2],[554,1,1,2,3]]],[22,1,1,3,4,[[716,1,1,3,4]]],[24,2,2,4,6,[[799,1,1,4,5],[801,1,1,5,6]]],[34,1,1,6,7,[[905,1,1,6,7]]]],[13566,14947,15099,18410,20368,20456,22787]]],["+",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20456]]],["instruments",[2,2,[[22,1,1,0,1,[[716,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[18410,22787]]],["song",[4,4,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,2,2,1,3,[[546,1,1,1,2],[554,1,1,2,3]]],[24,1,1,3,4,[[799,1,1,3,4]]]],[13566,14947,15099,20368]]]]},{"k":"H5059","v":[["*",[15,12,[[8,7,6,0,6,[[251,5,4,0,4],[253,1,1,4,5],[254,1,1,5,6]]],[11,3,1,6,7,[[315,3,1,6,7]]],[18,2,2,7,9,[[510,1,1,7,8],[545,1,1,8,9]]],[22,2,2,9,11,[[701,1,1,9,10],[716,1,1,10,11]]],[25,1,1,11,12,[[834,1,1,11,12]]]],[7611,7612,7613,7618,7686,7715,9591,14369,14925,18093,18410,21312]]],["+",[1,1,[[25,1,1,0,1,[[834,1,1,0,1]]]],[21312]]],["instruments",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14925]]],["melody",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18093]]],["minstrel",[2,1,[[11,2,1,0,1,[[315,2,1,0,1]]]],[9591]]],["play",[3,3,[[8,2,2,0,2,[[251,2,2,0,2]]],[18,1,1,2,3,[[510,1,1,2,3]]]],[7611,7612,14369]]],["played",[4,4,[[8,3,3,0,3,[[251,1,1,0,1],[253,1,1,1,2],[254,1,1,2,3]]],[11,1,1,3,4,[[315,1,1,3,4]]]],[7618,7686,7715,9591]]],["player",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7611]]],["playing",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7613]]],["songs",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18410]]]]},{"k":"H5060","v":[["*",[150,142,[[0,8,8,0,8,[[2,1,1,0,1],[11,1,1,1,2],[19,1,1,2,3],[25,2,2,3,5],[27,1,1,5,6],[31,2,2,6,8]]],[1,7,6,8,14,[[53,1,1,8,9],[61,1,1,9,10],[68,3,2,10,12],[78,1,1,12,13],[79,1,1,13,14]]],[2,28,28,14,42,[[94,3,3,14,17],[95,2,2,17,19],[96,2,2,19,21],[100,7,7,21,28],[101,1,1,28,29],[104,10,10,29,39],[111,3,3,39,42]]],[3,10,9,42,51,[[120,1,1,42,43],[132,1,1,43,44],[135,7,6,44,50],[147,1,1,50,51]]],[4,1,1,51,52,[[166,1,1,51,52]]],[5,2,2,52,54,[[194,1,1,52,53],[195,1,1,53,54]]],[6,3,3,54,57,[[216,1,1,54,55],[230,2,2,55,57]]],[7,1,1,57,58,[[233,1,1,57,58]]],[8,3,3,58,61,[[241,1,1,58,59],[245,1,1,59,60],[249,1,1,60,61]]],[9,3,3,61,64,[[271,1,1,61,62],[280,1,1,62,63],[289,1,1,63,64]]],[10,5,3,64,67,[[296,3,1,64,65],[309,2,2,65,67]]],[11,2,2,67,69,[[325,1,1,67,68],[327,1,1,68,69]]],[12,1,1,69,70,[[353,1,1,69,70]]],[13,5,4,70,74,[[369,3,2,70,72],[392,1,1,72,73],[394,1,1,73,74]]],[14,1,1,74,75,[[405,1,1,74,75]]],[15,1,1,75,76,[[419,1,1,75,76]]],[16,9,9,76,85,[[427,2,2,76,78],[429,2,2,78,80],[430,1,1,80,81],[431,1,1,81,82],[433,1,1,82,83],[434,2,2,83,85]]],[17,8,8,85,93,[[436,2,2,85,87],[437,1,1,87,88],[439,1,1,88,89],[440,1,1,89,90],[441,1,1,90,91],[454,1,1,91,92],[455,1,1,92,93]]],[18,8,8,93,101,[[509,1,1,93,94],[550,2,2,94,96],[565,1,1,96,97],[581,1,1,97,98],[582,1,1,98,99],[584,1,1,99,100],[621,1,1,100,101]]],[19,1,1,101,102,[[633,1,1,101,102]]],[20,3,2,102,104,[[666,2,1,102,103],[670,1,1,103,104]]],[21,1,1,104,105,[[672,1,1,104,105]]],[22,10,9,105,114,[[683,1,1,105,106],[684,2,1,106,107],[686,1,1,107,108],[694,1,1,108,109],[703,1,1,109,110],[704,1,1,110,111],[708,1,1,111,112],[730,1,1,112,113],[731,1,1,113,114]]],[23,6,6,114,120,[[745,1,1,114,115],[748,2,2,115,117],[756,1,1,117,118],[792,1,1,118,119],[795,1,1,119,120]]],[24,3,3,120,123,[[798,1,1,120,121],[800,2,2,121,123]]],[25,3,3,123,126,[[808,1,1,123,124],[814,1,1,124,125],[818,1,1,125,126]]],[26,8,8,126,134,[[857,3,3,126,129],[858,1,1,129,130],[859,3,3,130,133],[861,1,1,133,134]]],[27,1,1,134,135,[[865,1,1,134,135]]],[29,1,1,135,136,[[887,1,1,135,136]]],[31,1,1,136,137,[[891,1,1,136,137]]],[32,1,1,137,138,[[893,1,1,137,138]]],[36,2,2,138,140,[[910,2,2,138,140]]],[37,3,2,140,142,[[912,2,1,140,141],[924,1,1,141,142]]]],[58,315,501,703,721,785,953,960,1626,1838,2038,2039,2373,2411,2832,2833,2837,2867,2876,2898,2900,3005,3021,3023,3024,3028,3033,3036,3048,3173,3175,3178,3179,3180,3187,3189,3190,3191,3195,3373,3374,3375,3758,4220,4300,4302,4305,4307,4310,4311,4683,5298,6017,6056,6675,7088,7095,7158,7340,7444,7517,8140,8366,8660,8923,9392,9394,9892,9930,10842,11240,11241,11752,11773,12098,12493,12736,12739,12765,12776,12781,12807,12834,12835,12860,12880,12888,12896,12935,12970,12985,13318,13332,14361,15025,15034,15311,15603,15621,15717,16310,16569,17472,17524,17566,17747,17776,17815,17977,18130,18135,18221,18707,18715,18955,19037,19045,19263,20112,20221,20334,20434,20435,20589,20722,20835,21966,21968,21979,22009,22025,22031,22033,22093,22135,22500,22564,22588,22867,22868,22907,23073]]],["+",[14,14,[[0,2,2,0,2,[[11,1,1,0,1],[19,1,1,1,2]]],[1,1,1,2,3,[[61,1,1,2,3]]],[2,1,1,3,4,[[94,1,1,3,4]]],[3,1,1,4,5,[[120,1,1,4,5]]],[11,1,1,5,6,[[327,1,1,5,6]]],[17,2,2,6,8,[[437,1,1,6,7],[439,1,1,7,8]]],[20,1,1,8,9,[[666,1,1,8,9]]],[22,1,1,9,10,[[684,1,1,9,10]]],[23,1,1,10,11,[[745,1,1,10,11]]],[26,2,2,11,13,[[858,1,1,11,12],[859,1,1,12,13]]],[36,1,1,13,14,[[910,1,1,13,14]]]],[315,501,1838,2837,3758,9930,12896,12935,17472,17776,18955,22009,22031,22867]]],["Touch",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[10842,15621]]],["beaten",[1,1,[[5,1,1,0,1,[[194,1,1,0,1]]]],[6017]]],["bring",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18130]]],["bringeth",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18135]]],["came",[6,6,[[15,1,1,0,1,[[419,1,1,0,1]]],[16,3,3,1,4,[[429,1,1,1,2],[431,1,1,2,3],[433,1,1,3,4]]],[22,1,1,4,5,[[708,1,1,4,5]]],[31,1,1,5,6,[[891,1,1,5,6]]]],[12493,12765,12807,12834,18221,22564]]],["cast",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1626]]],["close",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21968]]],["come",[10,10,[[6,1,1,0,1,[[230,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[14,1,1,2,3,[[405,1,1,2,3]]],[16,4,4,3,7,[[427,2,2,3,5],[429,1,1,5,6],[434,1,1,6,7]]],[21,1,1,7,8,[[672,1,1,7,8]]],[22,1,1,8,9,[[694,1,1,8,9]]],[32,1,1,9,10,[[893,1,1,9,10]]]],[7095,7517,12098,12736,12739,12776,12860,17566,17977,22588]]],["cometh",[1,1,[[26,1,1,0,1,[[861,1,1,0,1]]]],[22093]]],["down",[2,2,[[24,1,1,0,1,[[798,1,1,0,1]]],[25,1,1,1,2,[[814,1,1,1,2]]]],[20334,20722]]],["happeneth",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17472]]],["join",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17747]]],["laid",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17776]]],["near",[4,4,[[6,1,1,0,1,[[230,1,1,0,1]]],[16,1,1,1,2,[[434,1,1,1,2]]],[18,1,1,2,3,[[584,1,1,2,3]]],[25,1,1,3,4,[[808,1,1,3,4]]]],[7088,12835,15717,20589]]],["nigh",[3,3,[[18,2,2,0,2,[[509,1,1,0,1],[565,1,1,1,2]]],[20,1,1,2,3,[[670,1,1,2,3]]]],[14361,15311,17524]]],["plagued",[2,2,[[18,2,2,0,2,[[550,2,2,0,2]]]],[15025,15034]]],["reach",[4,4,[[17,1,1,0,1,[[455,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[13332,17815,20112,23073]]],["reached",[1,1,[[0,1,1,0,1,[[27,1,1,0,1]]]],[785]]],["reacheth",[3,3,[[23,3,3,0,3,[[748,2,2,0,2],[795,1,1,2,3]]]],[19037,19045,20221]]],["reaching",[3,2,[[13,3,2,0,2,[[369,3,2,0,2]]]],[11240,11241]]],["smitten",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11752]]],["smote",[2,2,[[8,1,1,0,1,[[241,1,1,0,1]]],[17,1,1,1,2,[[436,1,1,1,2]]]],[7340,12888]]],["stricken",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18715]]],["touch",[25,25,[[0,1,1,0,1,[[2,1,1,0,1]]],[1,2,2,1,3,[[68,2,2,1,3]]],[2,7,7,3,10,[[94,2,2,3,5],[95,1,1,5,6],[96,1,1,6,7],[100,2,2,7,9],[101,1,1,9,10]]],[3,1,1,10,11,[[132,1,1,10,11]]],[4,1,1,11,12,[[166,1,1,11,12]]],[5,1,1,12,13,[[195,1,1,12,13]]],[7,1,1,13,14,[[233,1,1,13,14]]],[9,2,2,14,16,[[280,1,1,14,15],[289,1,1,15,16]]],[17,3,3,16,19,[[436,1,1,16,17],[440,1,1,17,18],[441,1,1,18,19]]],[18,1,1,19,20,[[621,1,1,19,20]]],[22,1,1,20,21,[[730,1,1,20,21]]],[23,1,1,21,22,[[756,1,1,21,22]]],[24,2,2,22,24,[[800,2,2,22,24]]],[36,1,1,24,25,[[910,1,1,24,25]]]],[58,2038,2039,2832,2833,2876,2900,3005,3028,3048,4220,5298,6056,7158,8366,8660,12880,12970,12985,16310,18707,19263,20434,20435,22868]]],["touched",[20,18,[[0,3,3,0,3,[[25,1,1,0,1],[31,2,2,1,3]]],[2,1,1,3,4,[[111,1,1,3,4]]],[3,2,2,4,6,[[135,1,1,4,5],[147,1,1,5,6]]],[6,1,1,6,7,[[216,1,1,6,7]]],[8,1,1,7,8,[[245,1,1,7,8]]],[10,5,3,8,11,[[296,3,1,8,9],[309,2,2,9,11]]],[11,1,1,11,12,[[325,1,1,11,12]]],[16,1,1,12,13,[[430,1,1,12,13]]],[17,1,1,13,14,[[454,1,1,13,14]]],[26,4,4,14,18,[[857,2,2,14,16],[859,2,2,16,18]]]],[721,953,960,3375,4307,4683,6675,7444,8923,9392,9394,9892,12781,13318,21966,21979,22025,22033]]],["toucheth",[36,34,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,3,3,1,4,[[68,1,1,1,2],[78,1,1,2,3],[79,1,1,3,4]]],[2,19,19,4,23,[[95,1,1,4,5],[96,1,1,5,6],[100,5,5,6,11],[104,10,10,11,21],[111,2,2,21,23]]],[3,6,5,23,28,[[135,6,5,23,28]]],[18,1,1,28,29,[[581,1,1,28,29]]],[19,1,1,29,30,[[633,1,1,29,30]]],[25,1,1,30,31,[[818,1,1,30,31]]],[27,1,1,31,32,[[865,1,1,31,32]]],[29,1,1,32,33,[[887,1,1,32,33]]],[37,2,1,33,34,[[912,2,1,33,34]]]],[703,2038,2373,2411,2867,2898,3021,3023,3024,3033,3036,3173,3175,3178,3179,3180,3187,3189,3190,3191,3195,3373,3374,4300,4302,4305,4310,4311,15603,16569,20835,22135,22500,22907]]],["up",[2,2,[[9,1,1,0,1,[[271,1,1,0,1]]],[13,1,1,1,2,[[394,1,1,1,2]]]],[8140,11773]]]]},{"k":"H5061","v":[["*",[78,62,[[0,1,1,0,1,[[11,1,1,0,1]]],[1,1,1,1,2,[[60,1,1,1,2]]],[2,61,46,2,48,[[102,47,34,2,36],[103,14,12,36,48]]],[4,4,3,48,51,[[169,2,1,48,49],[173,1,1,49,50],[176,1,1,50,51]]],[9,1,1,51,52,[[273,1,1,51,52]]],[10,2,2,52,54,[[298,2,2,52,54]]],[13,2,2,54,56,[[372,2,2,54,56]]],[18,4,4,56,60,[[515,1,1,56,57],[516,1,1,57,58],[566,1,1,58,59],[568,1,1,59,60]]],[19,1,1,60,61,[[633,1,1,60,61]]],[22,1,1,61,62,[[731,1,1,61,62]]]],[315,1807,3054,3055,3056,3057,3058,3061,3064,3065,3069,3072,3074,3077,3079,3081,3082,3083,3084,3094,3095,3096,3097,3098,3099,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3114,3143,3145,3146,3147,3148,3150,3151,3154,3155,3159,3165,5372,5452,5533,8194,9022,9023,11310,11311,14501,14522,15358,15405,16573,18719]]],["+",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14501]]],["plague",[64,49,[[1,1,1,0,1,[[60,1,1,0,1]]],[2,59,44,1,45,[[102,45,32,1,33],[103,14,12,33,45]]],[4,1,1,45,46,[[176,1,1,45,46]]],[10,2,2,46,48,[[298,2,2,46,48]]],[18,1,1,48,49,[[568,1,1,48,49]]]],[1807,3054,3055,3056,3057,3058,3061,3064,3065,3069,3072,3074,3077,3079,3081,3082,3083,3084,3096,3097,3098,3099,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3114,3143,3145,3146,3147,3148,3150,3151,3154,3155,3159,3165,5533,9022,9023,15405]]],["plagues",[1,1,[[0,1,1,0,1,[[11,1,1,0,1]]]],[315]]],["sore",[4,4,[[2,2,2,0,2,[[102,2,2,0,2]]],[13,2,2,2,4,[[372,2,2,2,4]]]],[3094,3095,11310,11311]]],["stricken",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18719]]],["stripes",[2,2,[[9,1,1,0,1,[[273,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]]],[8194,15358]]],["stroke",[4,3,[[4,3,2,0,2,[[169,2,1,0,1],[173,1,1,1,2]]],[18,1,1,2,3,[[516,1,1,2,3]]]],[5372,5452,14522]]],["wound",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16573]]]]},{"k":"H5062","v":[["*",[49,46,[[1,7,6,0,6,[[57,1,1,0,1],[61,3,2,1,3],[70,2,2,3,5],[81,1,1,5,6]]],[2,1,1,6,7,[[115,1,1,6,7]]],[3,1,1,7,8,[[130,1,1,7,8]]],[4,3,3,8,11,[[153,1,1,8,9],[180,2,2,9,11]]],[5,1,1,11,12,[[210,1,1,11,12]]],[6,5,4,12,16,[[230,5,4,12,16]]],[8,6,6,16,22,[[239,3,3,16,19],[242,1,1,19,20],[260,1,1,20,21],[261,1,1,21,22]]],[9,5,5,22,27,[[268,1,1,22,23],[276,2,2,23,25],[278,1,1,25,26],[284,1,1,26,27]]],[10,1,1,27,28,[[298,1,1,27,28]]],[11,1,1,28,29,[[326,1,1,28,29]]],[12,2,2,29,31,[[356,2,2,29,31]]],[13,8,8,31,39,[[372,1,1,31,32],[379,2,2,32,34],[380,1,1,34,35],[386,1,1,35,36],[387,2,2,36,38],[391,1,1,38,39]]],[18,2,2,39,41,[[566,1,1,39,40],[568,1,1,40,41]]],[19,1,1,41,42,[[630,1,1,41,42]]],[22,2,1,42,43,[[697,2,1,42,43]]],[23,1,1,43,44,[[757,1,1,43,44]]],[37,2,2,44,46,[[924,2,2,44,46]]]],[1712,1839,1843,2099,2112,2473,3541,4150,4934,5618,5636,6481,7086,7089,7090,7093,7299,7300,7307,7362,7899,7915,8066,8255,8259,8301,8485,9018,9908,10923,10926,11306,11468,11473,11487,11609,11638,11642,11726,15349,15407,16478,18026,19282,23080,23086]]],["+",[16,15,[[1,5,5,0,5,[[57,1,1,0,1],[61,2,2,1,3],[70,1,1,3,4],[81,1,1,4,5]]],[5,1,1,5,6,[[210,1,1,5,6]]],[6,3,2,6,8,[[230,3,2,6,8]]],[8,1,1,8,9,[[260,1,1,8,9]]],[9,1,1,9,10,[[278,1,1,9,10]]],[13,2,2,10,12,[[379,1,1,10,11],[380,1,1,11,12]]],[22,1,1,12,13,[[697,1,1,12,13]]],[37,2,2,13,15,[[924,2,2,13,15]]]],[1712,1839,1843,2112,2473,6481,7089,7093,7899,8301,11468,11487,18026,23080,23086]]],["beaten",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8066]]],["dash",[1,1,[[18,1,1,0,1,[[568,1,1,0,1]]]],[15407]]],["down",[2,2,[[6,1,1,0,1,[[230,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]]],[7086,9018]]],["hurt",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2099]]],["plague",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15349]]],["slain",[2,2,[[2,1,1,0,1,[[115,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]]],[3541,8485]]],["smite",[4,4,[[1,1,1,0,1,[[61,1,1,0,1]]],[8,1,1,1,2,[[261,1,1,1,2]]],[13,1,1,2,3,[[387,1,1,2,3]]],[22,1,1,3,4,[[697,1,1,3,4]]]],[1839,7915,11638,18026]]],["smitten",[12,12,[[3,1,1,0,1,[[130,1,1,0,1]]],[4,3,3,1,4,[[153,1,1,1,2],[180,2,2,2,4]]],[6,1,1,4,5,[[230,1,1,4,5]]],[8,4,4,5,9,[[239,3,3,5,8],[242,1,1,8,9]]],[9,2,2,9,11,[[276,2,2,9,11]]],[13,1,1,11,12,[[386,1,1,11,12]]]],[4150,4934,5618,5636,7090,7299,7300,7307,7362,8255,8259,11609]]],["smote",[1,1,[[13,1,1,0,1,[[387,1,1,0,1]]]],[11642]]],["struck",[1,1,[[13,1,1,0,1,[[379,1,1,0,1]]]],[11473]]],["stumble",[2,2,[[19,1,1,0,1,[[630,1,1,0,1]]],[23,1,1,1,2,[[757,1,1,1,2]]]],[16478,19282]]],["worse",[5,5,[[11,1,1,0,1,[[326,1,1,0,1]]],[12,2,2,1,3,[[356,2,2,1,3]]],[13,2,2,3,5,[[372,1,1,3,4],[391,1,1,4,5]]]],[9908,10923,10926,11306,11726]]]]},{"k":"H5063","v":[["*",[7,7,[[1,2,2,0,2,[[61,1,1,0,1],[79,1,1,1,2]]],[3,3,3,2,5,[[124,1,1,2,3],[132,2,2,3,5]]],[5,1,1,5,6,[[208,1,1,5,6]]],[22,1,1,6,7,[[686,1,1,6,7]]]],[1829,2394,3958,4240,4241,6443,17821]]],["plague",[6,6,[[1,2,2,0,2,[[61,1,1,0,1],[79,1,1,1,2]]],[3,3,3,2,5,[[124,1,1,2,3],[132,2,2,3,5]]],[5,1,1,5,6,[[208,1,1,5,6]]]],[1829,2394,3958,4240,4241,6443]]],["stumbling",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17821]]]]},{"k":"H5064","v":[["*",[10,10,[[9,1,1,0,1,[[280,1,1,0,1]]],[17,1,1,1,2,[[455,1,1,1,2]]],[18,3,3,2,5,[[540,1,1,2,3],[552,1,1,3,4],[554,1,1,4,5]]],[23,1,1,5,6,[[762,1,1,5,6]]],[24,1,1,6,7,[[799,1,1,6,7]]],[25,1,1,7,8,[[836,1,1,7,8]]],[32,2,2,8,10,[[893,2,2,8,10]]]],[8370,13354,14849,15079,15095,19405,20403,21349,22583,22585]]],["away",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13354]]],["down",[3,3,[[24,1,1,0,1,[[799,1,1,0,1]]],[32,2,2,1,3,[[893,2,2,1,3]]]],[20403,22583,22585]]],["fall",[1,1,[[18,1,1,0,1,[[540,1,1,0,1]]]],[14849]]],["out",[2,2,[[18,1,1,0,1,[[552,1,1,0,1]]],[23,1,1,1,2,[[762,1,1,1,2]]]],[15079,19405]]],["ran",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15095]]],["shed",[1,1,[[25,1,1,0,1,[[836,1,1,0,1]]]],[21349]]],["spilt",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8370]]]]},{"k":"H5065","v":[["*",[23,23,[[1,5,5,0,5,[[52,1,1,0,1],[54,4,4,1,5]]],[4,2,2,5,7,[[167,2,2,5,7]]],[8,2,2,7,9,[[248,1,1,7,8],[249,1,1,8,9]]],[11,1,1,9,10,[[335,1,1,9,10]]],[17,2,2,10,12,[[438,1,1,10,11],[474,1,1,11,12]]],[22,8,8,12,20,[[681,2,2,12,14],[687,1,1,14,15],[692,2,2,15,17],[731,1,1,17,18],[736,1,1,18,19],[738,1,1,19,20]]],[26,1,1,20,21,[[860,1,1,20,21]]],[37,2,2,21,23,[[919,1,1,21,22],[920,1,1,22,23]]]],[1586,1638,1642,1645,1646,5321,5322,7491,7532,10200,12922,13841,17712,17719,17833,17930,17932,18718,18789,18838,22056,23007,23020]]],["+",[2,2,[[4,1,1,0,1,[[167,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]]],[5321,10200]]],["distressed",[2,2,[[8,2,2,0,2,[[248,1,1,0,1],[249,1,1,1,2]]]],[7491,7532]]],["driver",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13841]]],["exact",[2,2,[[4,1,1,0,1,[[167,1,1,0,1]]],[22,1,1,1,2,[[736,1,1,1,2]]]],[5322,18789]]],["exactors",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18838]]],["oppressed",[2,2,[[22,2,2,0,2,[[681,1,1,0,1],[731,1,1,1,2]]]],[17712,18718]]],["oppressor",[5,5,[[17,1,1,0,1,[[438,1,1,0,1]]],[22,2,2,1,3,[[687,1,1,1,2],[692,1,1,2,3]]],[37,2,2,3,5,[[919,1,1,3,4],[920,1,1,4,5]]]],[12922,17833,17932,23007,23020]]],["oppressors",[2,2,[[22,2,2,0,2,[[681,1,1,0,1],[692,1,1,1,2]]]],[17719,17930]]],["taskmasters",[5,5,[[1,5,5,0,5,[[52,1,1,0,1],[54,4,4,1,5]]]],[1586,1638,1642,1645,1646]]],["taxes",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22056]]]]},{"k":"H5066","v":[["*",[125,112,[[0,20,16,0,16,[[17,1,1,0,1],[18,2,1,1,2],[26,6,5,2,7],[28,1,1,7,8],[32,4,3,8,11],[42,1,1,11,12],[43,1,1,12,13],[44,2,1,13,14],[47,2,2,14,16]]],[1,13,11,16,27,[[68,2,2,16,18],[69,1,1,18,19],[70,2,1,19,20],[73,3,2,20,22],[77,1,1,22,23],[79,1,1,23,24],[81,1,1,24,25],[83,2,2,25,27]]],[2,5,4,27,31,[[91,1,1,27,28],[97,1,1,28,29],[110,3,2,29,31]]],[3,3,3,31,34,[[120,1,1,31,32],[124,1,1,32,33],[148,1,1,33,34]]],[4,4,4,34,38,[[172,1,1,34,35],[173,1,1,35,36],[177,2,2,36,38]]],[5,4,4,38,42,[[189,1,1,38,39],[194,1,1,39,40],[200,1,1,40,41],[207,1,1,41,42]]],[6,3,3,42,45,[[216,1,1,42,43],[219,1,1,43,44],[230,1,1,44,45]]],[7,1,1,45,46,[[233,1,1,45,46]]],[8,15,13,46,59,[[242,1,1,46,47],[244,1,1,47,48],[248,1,1,48,49],[249,4,3,49,52],[250,1,1,52,53],[252,2,2,53,55],[258,1,1,55,56],[263,1,1,56,57],[265,3,2,57,59]]],[9,7,7,59,66,[[267,1,1,59,60],[269,1,1,60,61],[276,1,1,61,62],[277,2,2,62,64],[279,1,1,64,65],[283,1,1,65,66]]],[10,9,8,66,74,[[294,1,1,66,67],[308,4,3,67,70],[310,3,3,70,73],[312,1,1,73,74]]],[11,5,5,74,79,[[314,1,1,74,75],[316,3,3,75,78],[317,1,1,78,79]]],[12,1,1,79,80,[[356,1,1,79,80]]],[13,3,3,80,83,[[384,1,1,80,81],[395,2,2,81,83]]],[14,2,2,83,85,[[406,1,1,83,84],[411,1,1,84,85]]],[17,2,2,85,87,[[475,1,1,85,86],[476,1,1,86,87]]],[18,1,1,87,88,[[568,1,1,87,88]]],[22,9,9,88,97,[[707,1,1,88,89],[719,3,3,89,92],[723,2,2,92,94],[727,1,1,94,95],[728,1,1,95,96],[743,1,1,96,97]]],[23,4,3,97,100,[[774,2,1,97,98],[786,1,1,98,99],[790,1,1,99,100]]],[25,3,2,100,102,[[810,1,1,100,101],[845,2,1,101,102]]],[28,1,1,102,103,[[878,1,1,102,103]]],[29,4,4,103,107,[[883,1,1,103,104],[884,1,1,104,105],[887,2,2,105,107]]],[38,6,5,107,112,[[925,4,3,107,110],[926,1,1,110,111],[927,1,1,111,112]]]],[447,466,748,749,752,753,754,805,963,966,967,1309,1342,1362,1461,1464,2041,2048,2072,2083,2179,2191,2336,2402,2444,2526,2528,2770,2931,3366,3368,3762,3958,4734,5429,5452,5548,5556,5902,6013,6193,6382,6673,6806,7077,7163,7362,7409,7494,7526,7542,7546,7592,7634,7658,7819,7967,7985,7999,8037,8115,8253,8279,8280,8328,8477,8865,9362,9371,9377,9421,9430,9436,9504,9556,9608,9609,9630,9660,10921,11565,11814,11822,12112,12238,13883,13904,15402,18206,18452,18472,18473,18581,18582,18656,18670,18902,19688,19976,20048,20628,21612,22352,22448,22453,22505,22508,23096,23097,23100,23115,23123]]],["+",[14,14,[[0,2,2,0,2,[[32,1,1,0,1],[47,1,1,1,2]]],[1,2,2,2,4,[[73,1,1,2,3],[83,1,1,3,4]]],[2,1,1,4,5,[[97,1,1,4,5]]],[3,1,1,5,6,[[120,1,1,5,6]]],[8,1,1,6,7,[[249,1,1,6,7]]],[9,1,1,7,8,[[277,1,1,7,8]]],[11,1,1,8,9,[[316,1,1,8,9]]],[13,1,1,9,10,[[395,1,1,9,10]]],[18,1,1,10,11,[[568,1,1,10,11]]],[22,1,1,11,12,[[743,1,1,11,12]]],[25,1,1,12,13,[[810,1,1,12,13]]],[38,1,1,13,14,[[927,1,1,13,14]]]],[967,1461,2179,2526,2931,3762,7542,8280,9609,11814,15402,18902,20628,23123]]],["Brought",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8477]]],["Come",[1,1,[[5,1,1,0,1,[[189,1,1,0,1]]]],[5902]]],["Stand",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[466]]],["approach",[4,3,[[4,1,1,0,1,[[172,1,1,0,1]]],[17,1,1,1,2,[[475,1,1,1,2]]],[23,2,1,2,3,[[774,2,1,2,3]]]],[5429,13883,19688]]],["approached",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8279]]],["bring",[3,2,[[1,2,1,0,1,[[70,2,1,0,1]]],[2,1,1,1,2,[[91,1,1,1,2]]]],[2083,2770]]],["brought",[7,7,[[1,1,1,0,1,[[81,1,1,0,1]]],[8,3,3,1,4,[[249,1,1,1,2],[263,1,1,2,3],[265,1,1,3,4]]],[9,1,1,4,5,[[279,1,1,4,5]]],[10,1,1,5,6,[[294,1,1,5,6]]],[11,1,1,6,7,[[316,1,1,6,7]]]],[2444,7542,7967,7985,8328,8865,9608]]],["came",[8,8,[[5,1,1,0,1,[[200,1,1,0,1]]],[10,4,4,1,5,[[308,1,1,1,2],[310,3,3,2,5]]],[11,1,1,5,6,[[314,1,1,5,6]]],[14,2,2,6,8,[[406,1,1,6,7],[411,1,1,7,8]]]],[6193,9362,9421,9430,9436,9556,12112,12238]]],["come",[5,5,[[1,2,2,0,2,[[68,1,1,0,1],[73,1,1,1,2]]],[4,2,2,2,4,[[177,2,2,2,4]]],[7,1,1,4,5,[[233,1,1,4,5]]]],[2041,2191,5548,5556,7163]]],["forth",[2,2,[[22,2,2,0,2,[[719,2,2,0,2]]]],[18472,18473]]],["hard",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6806]]],["hither",[5,5,[[8,5,5,0,5,[[248,1,1,0,1],[249,1,1,1,2],[250,1,1,2,3],[258,1,1,3,4],[265,1,1,4,5]]]],[7494,7526,7592,7819,7985]]],["near",[51,47,[[0,17,15,0,15,[[17,1,1,0,1],[18,1,1,1,2],[26,6,5,2,7],[28,1,1,7,8],[32,3,3,8,11],[42,1,1,11,12],[43,1,1,12,13],[44,2,1,13,14],[47,1,1,14,15]]],[1,4,4,15,19,[[68,1,1,15,16],[69,1,1,16,17],[77,1,1,17,18],[79,1,1,18,19]]],[3,1,1,19,20,[[148,1,1,19,20]]],[4,1,1,20,21,[[173,1,1,20,21]]],[5,1,1,21,22,[[207,1,1,21,22]]],[8,6,6,22,28,[[242,1,1,22,23],[244,1,1,23,24],[249,1,1,24,25],[252,2,2,25,27],[265,1,1,27,28]]],[9,1,1,28,29,[[267,1,1,28,29]]],[10,4,3,29,32,[[308,3,2,29,31],[312,1,1,31,32]]],[11,2,2,32,34,[[316,1,1,32,33],[317,1,1,33,34]]],[13,2,2,34,36,[[384,1,1,34,35],[395,1,1,35,36]]],[17,1,1,36,37,[[476,1,1,36,37]]],[22,5,5,37,42,[[707,1,1,37,38],[719,1,1,38,39],[723,2,2,39,41],[728,1,1,41,42]]],[23,2,2,42,44,[[786,1,1,42,43],[790,1,1,43,44]]],[25,2,1,44,45,[[845,2,1,44,45]]],[28,1,1,45,46,[[878,1,1,45,46]]],[29,1,1,46,47,[[884,1,1,46,47]]]],[447,466,748,749,752,753,754,805,963,966,967,1309,1342,1362,1464,2048,2072,2336,2402,4734,5452,6382,7362,7409,7546,7634,7658,7999,8037,9371,9377,9504,9630,9660,11565,11822,13904,18206,18452,18581,18582,18670,19976,20048,21612,22352,22453]]],["nigh",[9,8,[[1,2,2,0,2,[[73,1,1,0,1],[83,1,1,1,2]]],[2,3,2,2,4,[[110,3,2,2,4]]],[3,1,1,4,5,[[124,1,1,4,5]]],[5,1,1,5,6,[[194,1,1,5,6]]],[9,1,1,6,7,[[276,1,1,6,7]]],[12,1,1,7,8,[[356,1,1,7,8]]]],[2179,2528,3366,3368,3958,6013,8253,10921]]],["offer",[3,2,[[38,3,2,0,2,[[925,3,2,0,2]]]],[23096,23097]]],["offered",[2,2,[[29,1,1,0,1,[[883,1,1,0,1]]],[38,1,1,1,2,[[925,1,1,1,2]]]],[22448,23100]]],["offereth",[1,1,[[38,1,1,0,1,[[926,1,1,0,1]]]],[23115]]],["overtake",[2,2,[[29,2,2,0,2,[[887,2,2,0,2]]]],[22505,22508]]],["place",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18656]]],["presented",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6673]]],["put",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8115]]],["up",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7077]]]]},{"k":"H5067","v":[["heap",[6,6,[[1,1,1,0,1,[[64,1,1,0,1]]],[5,2,2,1,3,[[189,2,2,1,3]]],[18,2,2,3,5,[[510,1,1,3,4],[555,1,1,4,5]]],[22,1,1,5,6,[[695,1,1,5,6]]]],[1928,5906,5909,14373,15126,17994]]]]},{"k":"H5068","v":[["*",[17,15,[[1,3,3,0,3,[[74,1,1,0,1],[84,2,2,1,3]]],[6,2,2,3,5,[[215,2,2,3,5]]],[12,7,5,5,10,[[366,7,5,5,10]]],[13,1,1,10,11,[[383,1,1,10,11]]],[14,3,3,11,14,[[403,1,1,11,12],[404,1,1,12,13],[405,1,1,13,14]]],[15,1,1,14,15,[[423,1,1,14,15]]]],[2197,2552,2560,6625,6632,11169,11170,11173,11178,11181,11539,12022,12095,12102,12590]]],["+",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2560]]],["freely",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12095]]],["himself",[1,1,[[13,1,1,0,1,[[383,1,1,0,1]]]],[11539]]],["offered",[3,3,[[12,1,1,0,1,[[366,1,1,0,1]]],[14,2,2,1,3,[[403,1,1,1,2],[405,1,1,2,3]]]],[11181,12022,12102]]],["themselves",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[6625,12590]]],["willing",[2,2,[[1,1,1,0,1,[[84,1,1,0,1]]],[12,1,1,1,2,[[366,1,1,1,2]]]],[2552,11169]]],["willingly",[7,6,[[1,1,1,0,1,[[74,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[12,5,4,2,6,[[366,5,4,2,6]]]],[2197,6632,11170,11173,11178,11181]]]]},{"k":"H5069","v":[["*",[4,3,[[14,4,3,0,3,[[409,4,3,0,3]]]],[12186,12188,12189]]],["freewill",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12186]]],["offered",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12188]]],["offering",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12189]]],["willingly",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12189]]]]},{"k":"H5070","v":[["Nadab",[20,20,[[1,4,4,0,4,[[55,1,1,0,1],[73,2,2,1,3],[77,1,1,3,4]]],[2,1,1,4,5,[[99,1,1,4,5]]],[3,4,4,5,9,[[119,2,2,5,7],[142,2,2,7,9]]],[10,4,4,9,13,[[304,1,1,9,10],[305,3,3,10,13]]],[12,7,7,13,20,[[339,2,2,13,15],[343,1,1,15,16],[345,1,1,16,17],[346,1,1,17,18],[361,2,2,18,20]]]],[1678,2178,2186,2294,2978,3694,3696,4549,4550,9238,9274,9276,9280,10334,10336,10457,10605,10651,11016,11017]]]]},{"k":"H5071","v":[["*",[26,25,[[1,2,2,0,2,[[84,1,1,0,1],[85,1,1,1,2]]],[2,5,5,2,7,[[96,1,1,2,3],[111,3,3,3,6],[112,1,1,6,7]]],[3,2,2,7,9,[[131,1,1,7,8],[145,1,1,8,9]]],[4,4,4,9,13,[[164,2,2,9,11],[168,1,1,11,12],[175,1,1,12,13]]],[13,2,2,13,15,[[397,1,1,13,14],[401,1,1,14,15]]],[14,3,3,15,18,[[403,1,1,15,16],[405,1,1,16,17],[410,1,1,17,18]]],[18,4,4,18,22,[[531,1,1,18,19],[545,1,1,19,20],[587,1,1,20,21],[596,1,1,21,22]]],[25,2,1,22,23,[[847,2,1,22,23]]],[27,1,1,23,24,[[875,1,1,23,24]]],[29,1,1,24,25,[[882,1,1,24,25]]]],[2560,2569,2895,3387,3390,3392,3440,4156,4647,5246,5257,5352,5523,11868,11974,12020,12102,12229,14731,14909,15789,16006,21667,22286,22415]]],["freely",[2,2,[[18,1,1,0,1,[[531,1,1,0,1]]],[27,1,1,1,2,[[875,1,1,1,2]]]],[14731,22286]]],["offering",[10,10,[[1,1,1,0,1,[[84,1,1,0,1]]],[2,3,3,1,4,[[96,1,1,1,2],[111,2,2,2,4]]],[3,1,1,4,5,[[131,1,1,4,5]]],[4,2,2,5,7,[[168,1,1,5,6],[175,1,1,6,7]]],[14,3,3,7,10,[[403,1,1,7,8],[405,1,1,8,9],[410,1,1,9,10]]]],[2560,2895,3390,3392,4156,5352,5523,12020,12102,12229]]],["offerings",[9,9,[[1,1,1,0,1,[[85,1,1,0,1]]],[2,2,2,1,3,[[111,1,1,1,2],[112,1,1,2,3]]],[3,1,1,3,4,[[145,1,1,3,4]]],[4,2,2,4,6,[[164,2,2,4,6]]],[13,1,1,6,7,[[397,1,1,6,7]]],[18,1,1,7,8,[[596,1,1,7,8]]],[29,1,1,8,9,[[882,1,1,8,9]]]],[2569,3387,3440,4647,5246,5257,11868,16006,22415]]],["plentiful",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14909]]],["voluntarily",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21667]]],["voluntary",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21667]]],["willing",[1,1,[[18,1,1,0,1,[[587,1,1,0,1]]]],[15789]]],["willingly",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11974]]]]},{"k":"H5072","v":[["Nedabiah",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10379]]]]},{"k":"H5073","v":[["*",[2,1,[[14,2,1,0,1,[[408,2,1,0,1]]]],[12155]]],["row",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12155]]],["rows",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12155]]]]},{"k":"H5074","v":[["*",[28,26,[[0,1,1,0,1,[[30,1,1,0,1]]],[9,1,1,1,2,[[289,1,1,1,2]]],[16,1,1,2,3,[[431,1,1,2,3]]],[17,3,3,3,6,[[450,1,1,3,4],[453,1,1,4,5],[455,1,1,5,6]]],[18,5,4,6,10,[[508,1,1,6,7],[532,1,1,7,8],[541,1,1,8,9],[545,2,1,9,10]]],[19,2,1,10,11,[[654,2,1,10,11]]],[22,8,8,11,19,[[688,2,2,11,13],[694,2,2,13,15],[699,2,2,15,17],[700,1,1,17,18],[711,1,1,18,19]]],[23,3,3,19,22,[[748,1,1,19,20],[753,1,1,20,21],[793,1,1,21,22]]],[27,2,2,22,24,[[868,1,1,22,23],[870,1,1,23,24]]],[33,2,2,24,26,[[902,2,2,24,26]]]],[913,8659,12794,13226,13294,13334,14342,14739,14858,14912,17177,17864,17881,17971,17972,18049,18050,18055,18282,19052,19185,20132,22191,22225,22719,22729]]],["+",[2,1,[[18,2,1,0,1,[[545,2,1,0,1]]]],[14912]]],["abroad",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13226]]],["away",[4,4,[[9,1,1,0,1,[[289,1,1,0,1]]],[17,1,1,1,2,[[455,1,1,1,2]]],[18,1,1,2,3,[[541,1,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[8659,13334,14858,22729]]],["chased",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13294]]],["departed",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[913]]],["fled",[8,8,[[18,1,1,0,1,[[508,1,1,0,1]]],[22,4,4,1,5,[[699,2,2,1,3],[700,1,1,3,4],[711,1,1,4,5]]],[23,2,2,5,7,[[748,1,1,5,6],[753,1,1,6,7]]],[27,1,1,7,8,[[868,1,1,7,8]]]],[14342,18049,18050,18055,18282,19052,19185,22191]]],["flee",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22719]]],["moved",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17864]]],["not",[1,1,[[16,1,1,0,1,[[431,1,1,0,1]]]],[12794]]],["removed",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17881]]],["wander",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14739]]],["wanderers",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22225]]],["wandereth",[4,3,[[19,2,1,0,1,[[654,2,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]],[23,1,1,2,3,[[793,1,1,2,3]]]],[17177,17972,20132]]],["wandering",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17971]]]]},{"k":"H5075","v":[["went",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21923]]]]},{"k":"H5076","v":[["fro",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13012]]]]},{"k":"H5077","v":[["*",[2,2,[[22,1,1,0,1,[[744,1,1,0,1]]],[29,1,1,1,2,[[884,1,1,1,2]]]],[18927,22453]]],["away",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22453]]],["out",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18927]]]]},{"k":"H5078","v":[["gifts",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20795]]]]},{"k":"H5079","v":[["*",[29,24,[[2,13,10,0,10,[[101,2,2,0,2],[104,9,6,2,8],[107,1,1,8,9],[109,1,1,9,10]]],[3,6,5,10,15,[[135,5,4,10,14],[147,1,1,14,15]]],[13,1,1,15,16,[[395,1,1,15,16]]],[14,2,1,16,17,[[411,2,1,16,17]]],[24,1,1,17,18,[[797,1,1,17,18]]],[25,5,5,18,23,[[808,2,2,18,20],[819,1,1,20,21],[823,1,1,21,22],[837,1,1,22,23]]],[37,1,1,23,24,[[923,1,1,23,24]]]],[3046,3049,3187,3188,3192,3193,3194,3201,3270,3339,4298,4302,4309,4310,4687,11796,12248,20327,20596,20597,20855,20986,21376,23060]]],["apart",[3,3,[[2,2,2,0,2,[[104,1,1,0,1],[107,1,1,1,2]]],[25,1,1,2,3,[[823,1,1,2,3]]]],[3187,3270,20986]]],["far",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20597]]],["filthiness",[2,2,[[13,1,1,0,1,[[395,1,1,0,1]]],[14,1,1,1,2,[[411,1,1,1,2]]]],[11796,12248]]],["flowers",[2,2,[[2,2,2,0,2,[[104,2,2,0,2]]]],[3192,3201]]],["menstruous",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20855]]],["removed",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20596]]],["separation",[14,10,[[2,8,5,0,5,[[101,2,2,0,2],[104,6,3,2,5]]],[3,6,5,5,10,[[135,5,4,5,9],[147,1,1,9,10]]]],[3046,3049,3188,3193,3194,4298,4302,4309,4310,4687]]],["thing",[1,1,[[2,1,1,0,1,[[109,1,1,0,1]]]],[3339]]],["unclean",[1,1,[[14,1,1,0,1,[[411,1,1,0,1]]]],[12248]]],["uncleanness",[1,1,[[37,1,1,0,1,[[923,1,1,0,1]]]],[23060]]],["woman",[2,2,[[24,1,1,0,1,[[797,1,1,0,1]]],[25,1,1,1,2,[[837,1,1,1,2]]]],[20327,21376]]]]},{"k":"H5080","v":[["*",[53,52,[[4,10,10,0,10,[[156,1,1,0,1],[165,3,3,1,4],[171,1,1,4,5],[172,1,1,5,6],[174,1,1,6,7],[182,3,3,7,10]]],[9,4,3,10,13,[[280,3,2,10,12],[281,1,1,12,13]]],[11,1,1,13,14,[[329,1,1,13,14]]],[13,2,2,14,16,[[379,1,1,14,15],[387,1,1,15,16]]],[15,1,1,16,17,[[413,1,1,16,17]]],[17,1,1,17,18,[[441,1,1,17,18]]],[18,2,2,18,20,[[482,1,1,18,19],[539,1,1,19,20]]],[19,1,1,20,21,[[634,1,1,20,21]]],[22,6,6,21,27,[[686,1,1,21,22],[689,1,1,22,23],[691,1,1,23,24],[694,2,2,24,26],[705,1,1,26,27]]],[23,18,18,27,45,[[752,1,1,27,28],[760,1,1,28,29],[767,3,3,29,32],[768,1,1,32,33],[771,2,2,33,35],[773,2,2,35,37],[774,1,1,37,38],[776,1,1,38,39],[784,1,1,39,40],[787,1,1,40,41],[790,1,1,41,42],[793,2,2,42,44],[794,1,1,44,45]]],[25,3,3,45,48,[[805,1,1,45,46],[835,2,2,46,48]]],[26,1,1,48,49,[[858,1,1,48,49]]],[28,1,1,49,50,[[877,1,1,49,50]]],[32,1,1,50,51,[[896,1,1,50,51]]],[35,1,1,51,52,[[908,1,1,51,52]]]],[5023,5277,5282,5285,5411,5446,5471,5709,5712,5725,8369,8370,8403,10004,11462,11635,12305,12991,13983,14831,16596,17829,17896,17920,17972,17973,18164,19156,19351,19486,19487,19492,19533,19606,19611,19649,19653,19684,19768,19953,20002,20073,20132,20163,20183,20542,21317,21329,21995,22331,22626,22839]]],["+",[7,7,[[4,1,1,0,1,[[165,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]],[11,1,1,2,3,[[329,1,1,2,3]]],[13,2,2,3,5,[[379,1,1,3,4],[387,1,1,4,5]]],[23,2,2,5,7,[[771,2,2,5,7]]]],[5285,8403,10004,11462,11635,19606,19611]]],["Outcast",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19684]]],["astray",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5471]]],["away",[6,6,[[4,2,2,0,2,[[165,1,1,0,1],[182,1,1,1,2]]],[23,2,2,2,4,[[767,1,1,2,3],[794,1,1,3,4]]],[25,2,2,4,6,[[835,2,2,4,6]]]],[5282,5725,19486,20183,21317,21329]]],["banished",[2,2,[[9,2,2,0,2,[[280,2,2,0,2]]]],[8369,8370]]],["chased",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17920]]],["down",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14831]]],["drive",[3,3,[[23,1,1,0,1,[[768,1,1,0,1]]],[25,1,1,1,2,[[805,1,1,1,2]]],[28,1,1,2,3,[[877,1,1,2,3]]]],[19533,20542,22331]]],["driven",[15,15,[[4,2,2,0,2,[[156,1,1,0,1],[182,1,1,1,2]]],[17,1,1,2,3,[[441,1,1,2,3]]],[22,1,1,3,4,[[686,1,1,3,4]]],[23,10,10,4,14,[[752,1,1,4,5],[760,1,1,5,6],[767,2,2,6,8],[773,2,2,8,10],[776,1,1,10,11],[784,1,1,11,12],[787,1,1,12,13],[790,1,1,13,14]]],[26,1,1,14,15,[[858,1,1,14,15]]]],[5023,5709,12991,17829,19156,19351,19487,19492,19649,19653,19768,19953,20002,20073,21995]]],["expelled",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8370]]],["forced",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16596]]],["forcing",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5446]]],["out",[6,6,[[4,1,1,0,1,[[182,1,1,0,1]]],[15,1,1,1,2,[[413,1,1,1,2]]],[18,1,1,2,3,[[482,1,1,2,3]]],[23,1,1,3,4,[[793,1,1,3,4]]],[32,1,1,4,5,[[896,1,1,4,5]]],[35,1,1,5,6,[[908,1,1,5,6]]]],[5712,12305,13983,20132,22626,22839]]],["outcasts",[5,5,[[22,4,4,0,4,[[689,1,1,0,1],[694,2,2,1,3],[705,1,1,3,4]]],[23,1,1,4,5,[[793,1,1,4,5]]]],[17896,17972,17973,18164,20163]]],["stroke",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5411]]],["thrust",[1,1,[[4,1,1,0,1,[[165,1,1,0,1]]]],[5277]]]]},{"k":"H5081","v":[["*",[28,25,[[1,2,2,0,2,[[84,2,2,0,2]]],[3,1,1,2,3,[[137,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[12,1,1,4,5,[[365,1,1,4,5]]],[13,1,1,5,6,[[395,1,1,5,6]]],[17,3,3,6,9,[[447,1,1,6,7],[456,1,1,7,8],[469,1,1,8,9]]],[18,7,6,9,15,[[524,1,1,9,10],[560,1,1,10,11],[584,1,1,11,12],[590,2,1,12,13],[595,1,1,13,14],[623,1,1,14,15]]],[19,5,5,15,20,[[635,1,1,15,16],[644,2,2,16,18],[646,1,1,18,19],[652,1,1,19,20]]],[21,2,2,20,22,[[676,1,1,20,21],[677,1,1,21,22]]],[22,5,3,22,25,[[691,1,1,22,23],[710,4,2,23,25]]]],[2536,2553,4358,7248,11164,11822,13149,13383,13701,14634,15252,15739,15821,15878,16344,16618,16880,16899,16931,17120,17626,17628,17908,18264,18267]]],["+",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17626]]],["free",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11822]]],["liberal",[2,2,[[22,2,2,0,2,[[710,2,2,0,2]]]],[18264,18267]]],["nobles",[4,4,[[3,1,1,0,1,[[137,1,1,0,1]]],[18,1,1,1,2,[[560,1,1,1,2]]],[19,1,1,2,3,[[635,1,1,2,3]]],[22,1,1,3,4,[[691,1,1,3,4]]]],[4358,15252,16618,17908]]],["prince",[4,4,[[17,1,1,0,1,[[456,1,1,0,1]]],[19,3,3,1,4,[[644,1,1,1,2],[646,1,1,2,3],[652,1,1,3,4]]]],[13383,16880,16931,17120]]],["prince's",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17628]]],["princes",[10,9,[[8,1,1,0,1,[[237,1,1,0,1]]],[17,2,2,1,3,[[447,1,1,1,2],[469,1,1,2,3]]],[18,6,5,3,8,[[524,1,1,3,4],[584,1,1,4,5],[590,2,1,5,6],[595,1,1,6,7],[623,1,1,7,8]]],[19,1,1,8,9,[[644,1,1,8,9]]]],[7248,13149,13701,14634,15739,15821,15878,16344,16899]]],["things",[2,1,[[22,2,1,0,1,[[710,2,1,0,1]]]],[18267]]],["willing",[3,3,[[1,2,2,0,2,[[84,2,2,0,2]]],[12,1,1,2,3,[[365,1,1,2,3]]]],[2536,2553,11164]]]]},{"k":"H5082","v":[["*",[2,2,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,1,1,1,2,[[528,1,1,1,2]]]],[13572,14703]]],["free",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14703]]],["soul",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13572]]]]},{"k":"H5083","v":[["gifts",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20795]]]]},{"k":"H5084","v":[["sheath",[1,1,[[12,1,1,0,1,[[358,1,1,0,1]]]],[10961]]]]},{"k":"H5085","v":[["body",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21948]]]]},{"k":"H5086","v":[["*",[9,8,[[2,1,1,0,1,[[115,1,1,0,1]]],[17,2,2,1,3,[[448,1,1,1,2],[467,1,1,2,3]]],[18,3,2,3,5,[[478,1,1,3,4],[545,2,1,4,5]]],[19,1,1,5,6,[[648,1,1,5,6]]],[22,2,2,6,8,[[697,1,1,6,7],[719,1,1,7,8]]]],[3560,13178,13641,13943,14902,16990,18011,18453]]],["away",[4,3,[[18,3,2,0,2,[[478,1,1,0,1],[545,2,1,1,2]]],[22,1,1,2,3,[[697,1,1,2,3]]]],[13943,14902,18011]]],["down",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13641]]],["driven",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18453]]],["fro",[2,2,[[17,1,1,0,1,[[448,1,1,0,1]]],[19,1,1,1,2,[[648,1,1,1,2]]]],[13178,16990]]],["shaken",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3560]]]]},{"k":"H5087","v":[["*",[31,28,[[0,2,2,0,2,[[27,1,1,0,1],[30,1,1,1,2]]],[2,1,1,2,3,[[116,1,1,2,3]]],[3,7,6,3,9,[[122,3,2,3,5],[137,1,1,5,6],[146,3,3,6,9]]],[4,5,5,9,14,[[164,2,2,9,11],[175,3,3,11,14]]],[6,2,2,14,16,[[221,2,2,14,16]]],[8,1,1,16,17,[[236,1,1,16,17]]],[9,2,2,17,19,[[281,2,2,17,19]]],[18,2,2,19,21,[[553,1,1,19,20],[609,1,1,20,21]]],[20,4,2,21,23,[[663,4,2,21,23]]],[22,1,1,23,24,[[697,1,1,23,24]]],[23,1,1,24,25,[[788,1,1,24,25]]],[31,2,2,25,27,[[889,1,1,25,26],[890,1,1,26,27]]],[38,1,1,27,28,[[925,1,1,27,28]]]],[793,886,3578,3825,3844,4342,4650,4651,4658,5251,5257,5521,5522,5523,6859,6868,7223,8396,8397,15092,16153,17401,17402,18025,20035,22547,22557,23103]]],["+",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17402]]],["Vow",[1,1,[[18,1,1,0,1,[[553,1,1,0,1]]]],[15092]]],["made",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22547]]],["vow",[8,8,[[3,3,3,0,3,[[122,1,1,0,1],[146,2,2,1,3]]],[4,3,3,3,6,[[164,1,1,3,4],[175,2,2,4,6]]],[20,1,1,6,7,[[663,1,1,6,7]]],[22,1,1,7,8,[[697,1,1,7,8]]]],[3825,4650,4651,5251,5521,5522,17402,18025]]],["vowed",[16,15,[[0,1,1,0,1,[[27,1,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]],[3,4,3,2,5,[[122,2,1,2,3],[137,1,1,3,4],[146,1,1,4,5]]],[4,1,1,5,6,[[175,1,1,5,6]]],[6,2,2,6,8,[[221,2,2,6,8]]],[8,1,1,8,9,[[236,1,1,8,9]]],[9,2,2,9,11,[[281,2,2,9,11]]],[18,1,1,11,12,[[609,1,1,11,12]]],[20,1,1,12,13,[[663,1,1,12,13]]],[23,1,1,13,14,[[788,1,1,13,14]]],[31,1,1,14,15,[[890,1,1,14,15]]]],[793,3578,3844,4342,4658,5523,6859,6868,7223,8396,8397,16153,17401,20035,22557]]],["vowedst",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[886]]],["vowest",[2,2,[[4,1,1,0,1,[[164,1,1,0,1]]],[20,1,1,1,2,[[663,1,1,1,2]]]],[5257,17401]]],["voweth",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23103]]]]},{"k":"H5088","v":[["*",[60,57,[[0,2,2,0,2,[[27,1,1,0,1],[30,1,1,1,2]]],[2,6,6,2,8,[[96,1,1,2,3],[111,3,3,3,6],[112,1,1,6,7],[116,1,1,7,8]]],[3,20,19,8,27,[[122,3,3,8,11],[131,2,2,11,13],[137,1,1,13,14],[145,1,1,14,15],[146,13,12,15,27]]],[4,6,6,27,33,[[164,4,4,27,31],[175,2,2,31,33]]],[6,2,2,33,35,[[221,2,2,33,35]]],[8,2,2,35,37,[[236,2,2,35,37]]],[9,2,2,37,39,[[281,2,2,37,39]]],[17,1,1,39,40,[[457,1,1,39,40]]],[18,9,9,40,49,[[499,1,1,40,41],[527,1,1,41,42],[533,1,1,42,43],[538,2,2,43,45],[542,1,1,45,46],[543,1,1,46,47],[593,2,2,47,49]]],[19,3,3,49,52,[[634,1,1,49,50],[647,1,1,50,51],[658,1,1,51,52]]],[20,1,1,52,53,[[663,1,1,52,53]]],[22,1,1,53,54,[[697,1,1,53,54]]],[23,3,1,54,55,[[788,3,1,54,55]]],[31,1,1,55,56,[[889,1,1,55,56]]],[33,1,1,56,57,[[900,1,1,56,57]]]],[793,886,2895,3387,3390,3392,3440,3572,3825,3828,3844,4156,4161,4342,4647,4650,4651,4652,4653,4654,4655,4656,4657,4659,4660,4661,4662,5246,5251,5257,5266,5518,5521,6859,6868,7223,7233,8396,8397,13416,14229,14682,14767,14824,14827,14861,14886,15862,15866,16589,16979,17286,17401,18025,20035,22547,22699]]],["+",[2,2,[[3,2,2,0,2,[[145,1,1,0,1],[146,1,1,1,2]]]],[4647,4654]]],["vow",[29,29,[[0,2,2,0,2,[[27,1,1,0,1],[30,1,1,1,2]]],[2,4,4,2,6,[[96,1,1,2,3],[111,2,2,3,5],[116,1,1,5,6]]],[3,12,12,6,18,[[122,3,3,6,9],[131,2,2,9,11],[137,1,1,11,12],[146,6,6,12,18]]],[4,2,2,18,20,[[175,2,2,18,20]]],[6,2,2,20,22,[[221,2,2,20,22]]],[8,2,2,22,24,[[236,2,2,22,24]]],[9,2,2,24,26,[[281,2,2,24,26]]],[18,1,1,26,27,[[542,1,1,26,27]]],[20,1,1,27,28,[[663,1,1,27,28]]],[22,1,1,28,29,[[697,1,1,28,29]]]],[793,886,2895,3390,3392,3572,3825,3828,3844,4156,4161,4342,4650,4651,4652,4656,4657,4661,5518,5521,6859,6868,7223,7233,8396,8397,14861,17401,18025]]],["vows",[29,27,[[2,2,2,0,2,[[111,1,1,0,1],[112,1,1,1,2]]],[3,6,6,2,8,[[146,6,6,2,8]]],[4,4,4,8,12,[[164,4,4,8,12]]],[17,1,1,12,13,[[457,1,1,12,13]]],[18,8,8,13,21,[[499,1,1,13,14],[527,1,1,14,15],[533,1,1,15,16],[538,2,2,16,18],[543,1,1,18,19],[593,2,2,19,21]]],[19,3,3,21,24,[[634,1,1,21,22],[647,1,1,22,23],[658,1,1,23,24]]],[23,3,1,24,25,[[788,3,1,24,25]]],[31,1,1,25,26,[[889,1,1,25,26]]],[33,1,1,26,27,[[900,1,1,26,27]]]],[3387,3440,4652,4653,4655,4659,4660,4662,5246,5251,5257,5266,13416,14229,14682,14767,14824,14827,14886,15862,15866,16589,16979,17286,20035,22547,22699]]]]},{"k":"H5089","v":[["wailing",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20588]]]]},{"k":"H5090","v":[["*",[31,31,[[0,2,2,0,2,[[30,2,2,0,2]]],[1,3,3,2,5,[[52,1,1,2,3],[59,1,1,3,4],[63,1,1,4,5]]],[4,2,2,5,7,[[156,1,1,5,6],[180,1,1,6,7]]],[8,4,4,7,11,[[258,1,1,7,8],[265,3,3,8,11]]],[9,1,1,11,12,[[272,1,1,11,12]]],[11,2,2,12,14,[[316,1,1,12,13],[321,1,1,13,14]]],[12,2,2,14,16,[[350,1,1,14,15],[357,1,1,15,16]]],[13,1,1,16,17,[[391,1,1,16,17]]],[17,1,1,17,18,[[459,1,1,17,18]]],[18,4,4,18,22,[[525,1,1,18,19],[555,2,2,19,21],[557,1,1,21,22]]],[20,1,1,22,23,[[660,1,1,22,23]]],[21,1,1,23,24,[[678,1,1,23,24]]],[22,5,5,24,29,[[689,1,1,24,25],[698,1,1,25,26],[727,1,1,26,27],[738,1,1,27,28],[741,1,1,28,29]]],[24,1,1,29,30,[[799,1,1,29,30]]],[33,1,1,30,31,[[901,1,1,30,31]]]],[891,899,1580,1790,1914,5031,5648,7815,7980,7998,8000,8160,9627,9776,10767,10927,11715,13439,14648,15139,15165,15199,17336,17642,17890,18033,18646,18832,18880,20356,22706]]],["+",[8,8,[[0,2,2,0,2,[[30,2,2,0,2]]],[1,1,1,2,3,[[52,1,1,2,3]]],[8,1,1,3,4,[[258,1,1,3,4]]],[9,1,1,4,5,[[272,1,1,4,5]]],[12,1,1,5,6,[[357,1,1,5,6]]],[13,1,1,6,7,[[391,1,1,6,7]]],[22,1,1,7,8,[[698,1,1,7,8]]]],[891,899,1580,7815,8160,10927,11715,18033]]],["Drive",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9627]]],["acquainting",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17336]]],["away",[3,3,[[8,2,2,0,2,[[265,2,2,0,2]]],[17,1,1,2,3,[[459,1,1,2,3]]]],[7980,8000,13439]]],["brought",[3,3,[[1,1,1,0,1,[[59,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]],[22,1,1,2,3,[[738,1,1,2,3]]]],[1790,15139,18832]]],["drave",[3,3,[[1,1,1,0,1,[[63,1,1,0,1]]],[8,1,1,1,2,[[265,1,1,1,2]]],[12,1,1,2,3,[[350,1,1,2,3]]]],[1914,7998,10767]]],["driveth",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9776]]],["guide",[1,1,[[18,1,1,0,1,[[525,1,1,0,1]]]],[14648]]],["guided",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15165]]],["lead",[7,7,[[4,2,2,0,2,[[156,1,1,0,1],[180,1,1,1,2]]],[21,1,1,2,3,[[678,1,1,2,3]]],[22,3,3,3,6,[[689,1,1,3,4],[727,1,1,4,5],[741,1,1,5,6]]],[33,1,1,6,7,[[901,1,1,6,7]]]],[5031,5648,17642,17890,18646,18880,22706]]],["leadest",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15199]]],["led",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20356]]]]},{"k":"H5091","v":[["*",[3,3,[[8,1,1,0,1,[[242,1,1,0,1]]],[25,1,1,1,2,[[833,1,1,1,2]]],[32,1,1,2,3,[[894,1,1,2,3]]]],[7354,21266,22599]]],["lament",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22599]]],["lamented",[1,1,[[8,1,1,0,1,[[242,1,1,0,1]]]],[7354]]],["wail",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21266]]]]},{"k":"H5092","v":[["*",[7,7,[[23,5,5,0,5,[[753,4,4,0,4],[775,1,1,4,5]]],[29,1,1,5,6,[[883,1,1,5,6]]],[32,1,1,6,7,[[894,1,1,6,7]]]],[19185,19193,19194,19195,19706,22439,22599]]],["lamentation",[3,3,[[23,1,1,0,1,[[775,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]],[32,1,1,2,3,[[894,1,1,2,3]]]],[19706,22439,22599]]],["wailing",[4,4,[[23,4,4,0,4,[[753,4,4,0,4]]]],[19185,19193,19194,19195]]]]},{"k":"H5093","v":[["doleful",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22599]]]]},{"k":"H5094","v":[["light",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[854,2,2,1,3]]]],[21780,21885,21888]]]]},{"k":"H5095","v":[["*",[10,10,[[0,2,2,0,2,[[32,1,1,0,1],[46,1,1,1,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[13,2,2,3,5,[[394,1,1,3,4],[398,1,1,4,5]]],[18,2,2,5,7,[[500,1,1,5,6],[508,1,1,6,7]]],[22,3,3,7,10,[[718,1,1,7,8],[727,1,1,8,9],[729,1,1,9,10]]]],[974,1437,1933,11779,11897,14237,14334,18431,18646,18691]]],["carried",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11779]]],["fed",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1437]]],["guide",[3,3,[[18,1,1,0,1,[[508,1,1,0,1]]],[22,2,2,1,3,[[727,1,1,1,2],[729,1,1,2,3]]]],[14334,18646,18691]]],["guided",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[13,1,1,1,2,[[398,1,1,1,2]]]],[1933,11897]]],["lead",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18431]]],["leadeth",[1,1,[[18,1,1,0,1,[[500,1,1,0,1]]]],[14237]]],["on",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[974]]]]},{"k":"H5096","v":[["*",[3,3,[[5,2,2,0,2,[[205,1,1,0,1],[207,1,1,1,2]]],[6,1,1,2,3,[[211,1,1,2,3]]]],[6336,6416,6539]]],["Nahalal",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6416]]],["Nahallal",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6336]]],["Nahalol",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6539]]]]},{"k":"H5097","v":[["bushes",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17801]]]]},{"k":"H5098","v":[["*",[5,5,[[19,2,2,0,2,[[632,1,1,0,1],[655,1,1,1,2]]],[22,2,2,2,4,[[683,2,2,2,4]]],[25,1,1,4,5,[[825,1,1,4,5]]]],[16528,17211,17768,17769,21079]]],["mourn",[2,2,[[19,1,1,0,1,[[632,1,1,0,1]]],[25,1,1,1,2,[[825,1,1,1,2]]]],[16528,21079]]],["roar",[2,2,[[22,2,2,0,2,[[683,2,2,0,2]]]],[17768,17769]]],["roaring",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17211]]]]},{"k":"H5099","v":[["roaring",[2,2,[[19,2,2,0,2,[[646,1,1,0,1],[647,1,1,1,2]]]],[16937,16956]]]]},{"k":"H5100","v":[["*",[2,2,[[18,1,1,0,1,[[515,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]]],[14498,17769]]],["+",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14498]]],["roaring",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17769]]]]},{"k":"H5101","v":[["*",[2,2,[[17,2,2,0,2,[[441,1,1,0,1],[465,1,1,1,2]]]],[12983,13564]]],["bray",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12983]]],["brayed",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13564]]]]},{"k":"H5102","v":[["*",[6,6,[[18,1,1,0,1,[[511,1,1,0,1]]],[22,2,2,1,3,[[680,1,1,1,2],[738,1,1,2,3]]],[23,2,2,3,5,[[775,1,1,3,4],[795,1,1,4,5]]],[32,1,1,5,6,[[896,1,1,5,6]]]],[14393,17687,18826,19703,20256,22621]]],["flow",[2,2,[[22,1,1,0,1,[[680,1,1,0,1]]],[32,1,1,1,2,[[896,1,1,1,2]]]],[17687,22621]]],["lightened",[1,1,[[18,1,1,0,1,[[511,1,1,0,1]]]],[14393]]],["together",[3,3,[[22,1,1,0,1,[[738,1,1,0,1]]],[23,2,2,1,3,[[775,1,1,1,2],[795,1,1,2,3]]]],[18826,19703,20256]]]]},{"k":"H5103","v":[["*",[15,13,[[14,14,12,0,12,[[406,5,5,0,5],[407,3,2,5,7],[408,4,3,7,10],[409,2,2,10,12]]],[26,1,1,12,13,[[856,1,1,12,13]]]],[12120,12121,12126,12127,12130,12137,12140,12157,12159,12164,12194,12198,21943]]],["river",[14,12,[[14,14,12,0,12,[[406,5,5,0,5],[407,3,2,5,7],[408,4,3,7,10],[409,2,2,10,12]]]],[12120,12121,12126,12127,12130,12137,12140,12157,12159,12164,12194,12198]]],["stream",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21943]]]]},{"k":"H5104","v":[["*",[119,108,[[0,9,6,0,6,[[1,4,3,0,3],[14,3,1,3,4],[30,1,1,4,5],[35,1,1,5,6]]],[1,3,3,6,9,[[56,1,1,6,7],[57,1,1,7,8],[72,1,1,8,9]]],[3,2,2,9,11,[[138,1,1,9,10],[140,1,1,10,11]]],[4,4,2,11,13,[[153,2,1,11,12],[163,2,1,12,13]]],[5,6,5,13,18,[[187,2,1,13,14],[210,4,4,14,18]]],[9,2,2,18,20,[[274,1,1,18,19],[276,1,1,19,20]]],[10,4,3,20,23,[[294,3,2,20,22],[304,1,1,22,23]]],[11,5,5,23,28,[[317,1,1,23,24],[329,1,1,24,25],[330,1,1,25,26],[335,1,1,26,27],[336,1,1,27,28]]],[12,5,5,28,33,[[338,1,1,28,29],[342,2,2,29,31],[355,1,1,31,32],[356,1,1,32,33]]],[13,1,1,33,34,[[375,1,1,33,34]]],[14,4,4,34,38,[[410,4,4,34,38]]],[15,3,3,38,41,[[414,2,2,38,40],[415,1,1,40,41]]],[17,5,5,41,46,[[449,1,1,41,42],[455,1,1,42,43],[457,1,1,43,44],[463,1,1,44,45],[475,1,1,45,46]]],[18,15,13,46,59,[[501,1,1,46,47],[523,1,1,47,48],[543,1,1,48,49],[549,1,1,49,50],[551,1,1,50,51],[555,1,1,51,52],[557,1,1,52,53],[566,1,1,53,54],[570,3,1,54,55],[575,1,1,55,56],[582,1,1,56,57],[584,1,1,57,58],[614,1,1,58,59]]],[21,1,1,59,60,[[678,1,1,59,60]]],[22,21,21,60,81,[[685,1,1,60,61],[686,1,1,61,62],[689,1,1,62,63],[696,3,3,63,66],[697,2,2,66,68],[705,1,1,68,69],[711,1,1,69,70],[719,1,1,70,71],[720,1,1,71,72],[721,3,3,72,75],[722,1,1,75,76],[725,1,1,76,77],[726,1,1,77,78],[728,1,1,78,79],[737,1,1,79,80],[744,1,1,80,81]]],[23,6,6,81,87,[[746,1,1,81,82],[790,5,5,82,87]]],[25,13,12,87,99,[[802,2,2,87,89],[804,2,2,89,91],[811,3,3,91,94],[832,2,2,94,96],[833,3,2,96,98],[844,1,1,98,99]]],[26,1,1,99,100,[[859,1,1,99,100]]],[31,1,1,100,101,[[890,1,1,100,101]]],[32,1,1,101,102,[[899,1,1,101,102]]],[33,2,2,102,104,[[900,1,1,102,103],[901,1,1,103,104]]],[34,3,2,104,106,[[905,3,2,104,106]]],[35,1,1,106,107,[[908,1,1,106,107]]],[37,1,1,107,108,[[919,1,1,107,108]]]],[40,43,44,378,894,1077,1704,1715,2175,4380,4452,4899,5232,5855,6478,6479,6490,6491,8212,8256,8865,8868,9233,9659,9989,10035,10194,10209,10300,10437,10454,10893,10923,11390,12216,12222,12232,12237,12314,12316,12334,13192,13343,13405,13515,13887,14243,14618,14879,15008,15063,15129,15209,15351,15429,15498,15647,15732,16223,17647,17802,17814,17899,17998,17999,18004,18009,18010,18163,18300,18469,18495,18507,18524,18525,18560,18601,18632,18664,18819,18934,18983,20047,20051,20052,20053,20055,20465,20467,20517,20525,20648,20653,20655,21234,21245,21250,21262,21575,22019,22551,22676,22688,22705,22776,22777,22830,23009]]],["+",[6,6,[[0,1,1,0,1,[[14,1,1,0,1]]],[11,1,1,1,2,[[336,1,1,1,2]]],[14,1,1,2,3,[[410,1,1,2,3]]],[18,1,1,3,4,[[549,1,1,3,4]]],[22,1,1,4,5,[[697,1,1,4,5]]],[37,1,1,5,6,[[919,1,1,5,6]]]],[378,10209,12232,15008,18010,23009]]],["flood",[8,8,[[5,4,4,0,4,[[210,4,4,0,4]]],[17,2,2,4,6,[[449,1,1,4,5],[457,1,1,5,6]]],[18,1,1,6,7,[[543,1,1,6,7]]],[22,1,1,7,8,[[737,1,1,7,8]]]],[6478,6479,6490,6491,13192,13405,14879,18819]]],["floods",[10,8,[[17,2,2,0,2,[[455,1,1,0,1],[463,1,1,1,2]]],[18,5,3,2,5,[[501,1,1,2,3],[570,3,1,3,4],[575,1,1,4,5]]],[21,1,1,5,6,[[678,1,1,5,6]]],[25,1,1,6,7,[[832,1,1,6,7]]],[31,1,1,7,8,[[890,1,1,7,8]]]],[13343,13515,14243,15429,15498,17647,21245,22551]]],["river",[62,56,[[0,8,6,0,6,[[1,4,3,0,3],[14,2,1,3,4],[30,1,1,4,5],[35,1,1,5,6]]],[1,1,1,6,7,[[72,1,1,6,7]]],[3,1,1,7,8,[[138,1,1,7,8]]],[4,4,2,8,10,[[153,2,1,8,9],[163,2,1,9,10]]],[5,2,1,10,11,[[187,2,1,10,11]]],[9,2,2,11,13,[[274,1,1,11,12],[276,1,1,12,13]]],[10,4,3,13,16,[[294,3,2,13,15],[304,1,1,15,16]]],[11,3,3,16,19,[[329,1,1,16,17],[330,1,1,17,18],[335,1,1,18,19]]],[12,5,5,19,24,[[338,1,1,19,20],[342,2,2,20,22],[355,1,1,22,23],[356,1,1,23,24]]],[13,1,1,24,25,[[375,1,1,24,25]]],[14,3,3,25,28,[[410,3,3,25,28]]],[15,3,3,28,31,[[414,2,2,28,30],[415,1,1,30,31]]],[17,1,1,31,32,[[475,1,1,31,32]]],[18,3,3,32,35,[[523,1,1,32,33],[557,1,1,33,34],[582,1,1,34,35]]],[22,7,7,35,42,[[685,1,1,35,36],[686,1,1,36,37],[689,1,1,37,38],[697,1,1,38,39],[705,1,1,39,40],[726,1,1,40,41],[744,1,1,41,42]]],[23,4,4,42,46,[[746,1,1,42,43],[790,3,3,43,46]]],[25,8,8,46,54,[[802,2,2,46,48],[804,2,2,48,50],[811,3,3,50,53],[844,1,1,53,54]]],[26,1,1,54,55,[[859,1,1,54,55]]],[32,1,1,55,56,[[899,1,1,55,56]]]],[40,43,44,378,894,1077,2175,4380,4899,5232,5855,8212,8256,8865,8868,9233,9989,10035,10194,10300,10437,10454,10893,10923,11390,12216,12222,12237,12314,12316,12334,13887,14618,15209,15647,17802,17814,17899,18009,18163,18632,18934,18983,20047,20051,20055,20465,20467,20517,20525,20648,20653,20655,21575,22019,22676]]],["river's",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4452]]],["rivers",[30,28,[[11,1,1,0,1,[[317,1,1,0,1]]],[18,5,5,1,6,[[551,1,1,1,2],[555,1,1,2,3],[566,1,1,3,4],[584,1,1,4,5],[614,1,1,5,6]]],[22,12,12,6,18,[[696,3,3,6,9],[711,1,1,9,10],[719,1,1,10,11],[720,1,1,11,12],[721,3,3,12,15],[722,1,1,15,16],[725,1,1,16,17],[728,1,1,17,18]]],[23,2,2,18,20,[[790,2,2,18,20]]],[25,4,3,20,23,[[832,1,1,20,21],[833,3,2,21,23]]],[33,2,2,23,25,[[900,1,1,23,24],[901,1,1,24,25]]],[34,3,2,25,27,[[905,3,2,25,27]]],[35,1,1,27,28,[[908,1,1,27,28]]]],[9659,15063,15129,15351,15732,16223,17998,17999,18004,18300,18469,18495,18507,18524,18525,18560,18601,18664,20052,20053,21234,21250,21262,22688,22705,22776,22777,22830]]],["streams",[2,2,[[1,2,2,0,2,[[56,1,1,0,1],[57,1,1,1,2]]]],[1704,1715]]]]},{"k":"H5105","v":[["light",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12908]]]]},{"k":"H5106","v":[["*",[8,7,[[3,6,5,0,5,[[146,4,3,0,3],[148,2,2,3,5]]],[18,2,2,5,7,[[510,1,1,5,6],[618,1,1,6,7]]]],[4653,4656,4659,4725,4727,14376,16281]]],["+",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4727]]],["break",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16281]]],["disallow",[1,1,[[3,1,1,0,1,[[146,1,1,0,1]]]],[4653]]],["disallowed",[3,3,[[3,3,3,0,3,[[146,3,3,0,3]]]],[4653,4656,4659]]],["discourage",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4725]]],["effect",[1,1,[[18,1,1,0,1,[[510,1,1,0,1]]]],[14376]]]]},{"k":"H5107","v":[["*",[4,4,[[18,2,2,0,2,[[539,1,1,0,1],[569,1,1,1,2]]],[19,1,1,2,3,[[637,1,1,2,3]]],[37,1,1,3,4,[[919,1,1,3,4]]]],[14837,15425,16687,23016]]],["cheerful",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23016]]],["forth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16687]]],["fruit",[1,1,[[18,1,1,0,1,[[569,1,1,0,1]]]],[15425]]],["increase",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14837]]]]},{"k":"H5108","v":[["fruit",[2,2,[[22,1,1,0,1,[[735,1,1,0,1]]],[38,1,1,1,2,[[925,1,1,1,2]]]],[18784,23101]]]]},{"k":"H5109","v":[["Nebai",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12568]]]]},{"k":"H5110","v":[["*",[24,24,[[0,2,2,0,2,[[3,2,2,0,2]]],[10,1,1,2,3,[[304,1,1,2,3]]],[11,1,1,3,4,[[333,1,1,3,4]]],[17,2,2,4,6,[[437,1,1,4,5],[477,1,1,5,6]]],[18,3,3,6,9,[[488,1,1,6,7],[513,1,1,7,8],[546,1,1,8,9]]],[19,1,1,9,10,[[653,1,1,9,10]]],[22,2,2,10,12,[[702,1,1,10,11],[729,1,1,11,12]]],[23,11,11,12,23,[[748,1,1,12,13],[759,1,1,13,14],[760,1,1,14,15],[762,1,1,15,16],[766,1,1,16,17],[775,1,1,17,18],[792,2,2,18,20],[793,1,1,20,21],[794,2,2,21,23]]],[33,1,1,23,24,[[902,1,1,23,24]]]],[91,93,9233,10127,12902,13933,14060,14449,14955,17143,18115,18692,19028,19320,19341,19400,19464,19709,20097,20107,20157,20169,20174,22719]]],["Flee",[1,1,[[18,1,1,0,1,[[488,1,1,0,1]]]],[14060]]],["Remove",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20174]]],["bemoan",[5,5,[[23,4,4,0,4,[[759,1,1,0,1],[760,1,1,1,2],[766,1,1,2,3],[792,1,1,3,4]]],[33,1,1,4,5,[[902,1,1,4,5]]]],[19320,19341,19464,20097,22719]]],["bemoaned",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13933]]],["get",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20157]]],["himself",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19709]]],["joy",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20107]]],["mourn",[1,1,[[17,1,1,0,1,[[437,1,1,0,1]]]],[12902]]],["move",[1,1,[[11,1,1,0,1,[[333,1,1,0,1]]]],[10127]]],["pity",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14955]]],["remove",[3,3,[[18,1,1,0,1,[[513,1,1,0,1]]],[23,2,2,1,3,[[748,1,1,1,2],[794,1,1,2,3]]]],[14449,19028,20169]]],["removed",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18115]]],["shaken",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9233]]],["sorry",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18692]]],["vagabond",[2,2,[[0,2,2,0,2,[[3,2,2,0,2]]]],[91,93]]],["wag",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19400]]],["wandering",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17143]]]]},{"k":"H5111","v":[["away",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21851]]]]},{"k":"H5112","v":[["wanderings",[1,1,[[18,1,1,0,1,[[533,1,1,0,1]]]],[14763]]]]},{"k":"H5113","v":[["Nod",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[95]]]]},{"k":"H5114","v":[["Nodab",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10447]]]]},{"k":"H5115","v":[["*",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[34,1,1,1,2,[[904,1,1,1,2]]]],[1922,22753]]],["habitation",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1922]]],["home",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22753]]]]},{"k":"H5116","v":[["*",[35,34,[[1,1,1,0,1,[[64,1,1,0,1]]],[9,2,2,1,3,[[273,1,1,1,2],[281,1,1,2,3]]],[12,1,1,3,4,[[354,1,1,3,4]]],[17,4,4,4,8,[[440,2,2,4,6],[443,1,1,6,7],[453,1,1,7,8]]],[18,2,2,8,10,[[545,1,1,8,9],[556,1,1,9,10]]],[19,3,3,10,13,[[630,1,1,10,11],[648,1,1,11,12],[651,1,1,12,13]]],[22,6,6,13,19,[[705,1,1,13,14],[710,1,1,14,15],[711,1,1,15,16],[712,1,1,16,17],[713,1,1,17,18],[743,1,1,18,19]]],[23,11,11,19,30,[[754,1,1,19,20],[767,1,1,20,21],[769,1,1,21,22],[775,1,1,22,23],[777,1,1,23,24],[793,2,2,24,26],[794,4,4,26,30]]],[25,3,2,30,32,[[826,1,1,30,31],[835,2,1,31,32]]],[27,1,1,32,33,[[870,1,1,32,33]]],[35,1,1,33,34,[[907,1,1,33,34]]]],[1933,8188,8414,10870,12954,12975,13035,13291,14912,15192,16488,17004,17094,18161,18277,18299,18316,18327,18907,19226,19487,19564,19714,19787,20146,20147,20173,20185,20210,20211,21088,21327,22221,22811]]],["dwelling",[2,2,[[19,2,2,0,2,[[648,1,1,0,1],[651,1,1,1,2]]]],[17004,17094]]],["dwellings",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22811]]],["fold",[3,2,[[22,1,1,0,1,[[743,1,1,0,1]]],[25,2,1,1,2,[[835,2,1,1,2]]]],[18907,21327]]],["folds",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19487]]],["habitation",[21,21,[[1,1,1,0,1,[[64,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]],[17,4,4,2,6,[[440,2,2,2,4],[443,1,1,4,5],[453,1,1,5,6]]],[19,1,1,6,7,[[630,1,1,6,7]]],[22,5,5,7,12,[[705,1,1,7,8],[710,1,1,8,9],[711,1,1,9,10],[712,1,1,10,11],[713,1,1,11,12]]],[23,9,9,12,21,[[754,1,1,12,13],[769,1,1,13,14],[775,1,1,14,15],[777,1,1,15,16],[793,1,1,16,17],[794,4,4,17,21]]]],[1933,8414,12954,12975,13035,13291,16488,18161,18277,18299,18316,18327,19226,19564,19714,19787,20146,20173,20185,20210,20211]]],["habitations",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20147]]],["place",[2,2,[[18,1,1,0,1,[[556,1,1,0,1]]],[27,1,1,1,2,[[870,1,1,1,2]]]],[15192,22221]]],["sheepcote",[2,2,[[9,1,1,0,1,[[273,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]]],[8188,10870]]],["stable",[1,1,[[25,1,1,0,1,[[826,1,1,0,1]]]],[21088]]],["tarried",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14912]]]]},{"k":"H5117","v":[["*",[144,141,[[0,5,5,0,5,[[1,1,1,0,1],[7,1,1,1,2],[18,1,1,2,3],[38,1,1,3,4],[41,1,1,4,5]]],[1,10,10,5,15,[[59,1,1,5,6],[65,4,4,6,10],[66,1,1,10,11],[69,1,1,11,12],[72,1,1,12,13],[81,1,1,13,14],[82,1,1,14,15]]],[2,3,3,15,18,[[96,1,1,15,16],[105,1,1,16,17],[113,1,1,17,18]]],[3,8,8,18,26,[[126,1,1,18,19],[127,2,2,19,21],[131,1,1,21,22],[133,2,2,22,24],[135,1,1,24,25],[148,1,1,25,26]]],[4,7,7,26,33,[[155,1,1,26,27],[157,1,1,27,28],[164,1,1,28,29],[166,1,1,29,30],[177,1,1,30,31],[178,2,2,31,33]]],[5,10,9,33,42,[[187,3,2,33,35],[189,1,1,35,36],[190,2,2,36,38],[192,1,1,38,39],[207,1,1,39,40],[208,1,1,40,41],[209,1,1,41,42]]],[6,5,5,42,47,[[212,1,1,42,43],[213,1,1,43,44],[216,2,2,44,46],[226,1,1,46,47]]],[8,3,3,47,50,[[241,1,1,47,48],[245,1,1,48,49],[260,1,1,49,50]]],[9,7,7,50,57,[[273,2,2,50,52],[282,2,2,52,54],[283,1,1,54,55],[286,1,1,55,56],[287,1,1,56,57]]],[10,7,7,57,64,[[295,1,1,57,58],[297,1,1,58,59],[298,1,1,59,60],[303,3,3,60,63],[309,1,1,63,64]]],[11,3,3,64,67,[[314,1,1,64,65],[329,1,1,65,66],[335,1,1,66,67]]],[12,4,4,67,71,[[353,1,1,67,68],[359,2,2,68,70],[360,1,1,70,71]]],[13,7,7,71,78,[[367,1,1,71,72],[370,1,1,72,73],[375,1,1,73,74],[380,2,2,74,76],[381,1,1,76,77],[386,1,1,77,78]]],[15,1,1,78,79,[[421,1,1,78,79]]],[16,5,5,79,84,[[428,1,1,79,80],[434,4,4,80,84]]],[17,3,3,84,87,[[438,3,3,84,87]]],[18,4,4,87,91,[[494,1,1,87,88],[582,1,1,88,89],[596,1,1,89,90],[602,1,1,90,91]]],[19,3,3,91,94,[[641,1,1,91,92],[648,1,1,92,93],[656,1,1,93,94]]],[20,7,6,94,100,[[660,1,1,94,95],[663,1,1,95,96],[665,2,2,96,98],[668,2,1,98,99],[669,1,1,99,100]]],[22,15,15,100,115,[[685,2,2,100,102],[689,1,1,102,103],[692,3,3,103,106],[701,1,1,106,107],[703,1,1,107,108],[706,2,2,108,110],[708,1,1,110,111],[724,1,1,111,112],[735,1,1,112,113],[741,1,1,113,114],[743,1,1,114,115]]],[23,3,3,115,118,[[758,1,1,115,116],[771,1,1,116,117],[787,1,1,117,118]]],[24,1,1,118,119,[[801,1,1,118,119]]],[25,17,16,119,135,[[806,1,1,119,120],[817,2,2,120,122],[822,1,1,122,123],[823,1,1,123,124],[825,1,1,124,125],[838,2,2,125,127],[841,2,2,127,129],[842,3,2,129,131],[843,2,2,131,133],[845,2,2,133,135]]],[26,1,1,135,136,[[861,1,1,135,136]]],[27,1,1,136,137,[[865,1,1,136,137]]],[29,1,1,137,138,[[883,1,1,137,138]]],[34,1,1,138,139,[[905,1,1,138,139]]],[37,2,2,139,141,[[915,1,1,139,140],[916,1,1,140,141]]]],[45,187,473,1165,1285,1791,1970,1971,1980,1981,1994,2062,2156,2448,2487,2894,3224,3458,4024,4049,4050,4187,4248,4251,4298,4733,4995,5067,5250,5318,5566,5570,5576,5864,5866,5906,5913,5918,5972,6425,6430,6461,6568,6569,6672,6674,6975,7349,7443,7870,8181,8191,8437,8447,8461,8557,8590,8882,8981,8994,9213,9214,9215,9390,9566,10012,10183,10841,10973,10982,11008,11208,11254,11389,11481,11482,11505,11617,12539,12755,12850,12851,12852,12856,12917,12921,12930,14117,15620,16019,16113,16805,17000,17241,17351,17409,17438,17447,17497,17519,17784,17801,17886,17929,17931,17935,18089,18128,18166,18176,18249,18593,18767,18880,18912,19302,19607,20003,20447,20559,20801,20804,20961,20996,21069,21398,21411,21479,21519,21535,21537,21565,21566,21618,21629,22094,22150,22430,22784,22947,22955]]],["+",[14,14,[[1,2,2,0,2,[[65,2,2,0,2]]],[3,1,1,2,3,[[133,1,1,2,3]]],[6,1,1,3,4,[[212,1,1,3,4]]],[8,1,1,4,5,[[241,1,1,4,5]]],[10,4,4,5,9,[[297,1,1,5,6],[303,2,2,6,8],[309,1,1,8,9]]],[20,1,1,9,10,[[660,1,1,9,10]]],[22,1,1,10,11,[[701,1,1,10,11]]],[24,1,1,11,12,[[801,1,1,11,12]]],[25,1,1,12,13,[[841,1,1,12,13]]],[37,1,1,13,14,[[916,1,1,13,14]]]],[1971,1980,4251,6568,7349,8981,9214,9215,9390,17351,18089,20447,21519,22955]]],["Suffer",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6975]]],["alone",[4,4,[[1,1,1,0,1,[[81,1,1,0,1]]],[9,1,1,1,2,[[282,1,1,1,2]]],[11,1,1,2,3,[[335,1,1,2,3]]],[27,1,1,3,4,[[865,1,1,3,4]]]],[2448,8437,10183,22150]]],["bestowed",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11389]]],["ceased",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7870]]],["confederate",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17784]]],["down",[5,5,[[1,1,1,0,1,[[66,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]],[5,1,1,2,3,[[190,1,1,2,3]]],[22,1,1,3,4,[[706,1,1,3,4]]],[25,1,1,4,5,[[838,1,1,4,5]]]],[1994,5570,5918,18166,21398]]],["given",[1,1,[[5,1,1,0,1,[[187,1,1,0,1]]]],[5866]]],["laid",[1,1,[[10,1,1,0,1,[[303,1,1,0,1]]]],[9213]]],["lay",[5,5,[[6,1,1,0,1,[[216,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]],[25,3,3,2,5,[[843,2,2,2,4],[845,1,1,4,5]]]],[6674,18249,21565,21566,21618]]],["leave",[12,12,[[0,1,1,0,1,[[41,1,1,0,1]]],[2,2,2,1,3,[[96,1,1,1,2],[105,1,1,2,3]]],[3,1,1,3,4,[[148,1,1,3,4]]],[5,1,1,4,5,[[190,1,1,4,5]]],[18,2,2,5,7,[[494,1,1,5,6],[596,1,1,6,7]]],[20,1,1,7,8,[[668,1,1,7,8]]],[22,1,1,8,9,[[743,1,1,8,9]]],[23,1,1,9,10,[[758,1,1,9,10]]],[25,2,2,10,12,[[817,1,1,10,11],[823,1,1,11,12]]]],[1285,2894,3224,4733,5913,14117,16019,17497,18912,19302,20801,20996]]],["left",[8,7,[[5,1,1,0,1,[[192,1,1,0,1]]],[6,1,1,1,2,[[213,1,1,1,2]]],[9,2,2,2,4,[[282,1,1,2,3],[286,1,1,3,4]]],[23,1,1,4,5,[[787,1,1,4,5]]],[25,3,2,5,7,[[842,3,2,5,7]]]],[5972,6569,8447,8557,20003,21535,21537]]],["light",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8461]]],["off",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22430]]],["pacifieth",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17497]]],["place",[1,1,[[25,1,1,0,1,[[838,1,1,0,1]]]],[21411]]],["placed",[2,2,[[13,2,2,0,2,[[367,1,1,0,1],[370,1,1,1,2]]]],[11208,11254]]],["put",[5,5,[[0,1,1,0,1,[[1,1,1,0,1]]],[2,1,1,1,2,[[113,1,1,1,2]]],[3,1,1,2,3,[[131,1,1,2,3]]],[10,1,1,3,4,[[298,1,1,3,4]]],[11,1,1,4,5,[[329,1,1,4,5]]]],[45,3458,4187,8994,10012]]],["quiet",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12930]]],["remain",[2,2,[[19,1,1,0,1,[[648,1,1,0,1]]],[23,1,1,1,2,[[771,1,1,1,2]]]],[17000,19607]]],["rest",[45,45,[[1,2,2,0,2,[[72,1,1,0,1],[82,1,1,1,2]]],[4,4,4,2,6,[[155,1,1,2,3],[157,1,1,3,4],[164,1,1,4,5],[177,1,1,5,6]]],[5,6,6,6,12,[[187,2,2,6,8],[189,1,1,8,9],[207,1,1,9,10],[208,1,1,10,11],[209,1,1,11,12]]],[9,3,3,12,15,[[273,2,2,12,14],[287,1,1,14,15]]],[10,1,1,15,16,[[295,1,1,15,16]]],[11,1,1,16,17,[[314,1,1,16,17]]],[12,3,3,17,20,[[359,2,2,17,19],[360,1,1,19,20]]],[13,4,4,20,24,[[380,2,2,20,22],[381,1,1,22,23],[386,1,1,23,24]]],[15,1,1,24,25,[[421,1,1,24,25]]],[16,1,1,25,26,[[434,1,1,25,26]]],[17,2,2,26,28,[[438,2,2,26,28]]],[18,1,1,28,29,[[602,1,1,28,29]]],[19,1,1,29,30,[[656,1,1,29,30]]],[22,8,8,30,38,[[685,1,1,30,31],[689,1,1,31,32],[692,2,2,32,34],[703,1,1,34,35],[706,1,1,35,36],[735,1,1,36,37],[741,1,1,37,38]]],[25,5,5,38,43,[[806,1,1,38,39],[817,1,1,39,40],[822,1,1,40,41],[825,1,1,41,42],[845,1,1,42,43]]],[26,1,1,43,44,[[861,1,1,43,44]]],[34,1,1,44,45,[[905,1,1,44,45]]]],[2156,2487,4995,5067,5250,5566,5864,5866,5906,6425,6430,6461,8181,8191,8590,8882,9566,10973,10982,11008,11481,11482,11505,11617,12539,12850,12917,12921,16113,17241,17801,17886,17931,17935,18128,18176,18767,18880,20559,20804,20961,21069,21629,22094,22784]]],["rested",[9,9,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,2,2,1,3,[[59,1,1,1,2],[69,1,1,2,3]]],[3,3,3,3,6,[[126,1,1,3,4],[127,2,2,4,6]]],[16,3,3,6,9,[[434,3,3,6,9]]]],[187,1791,2062,4024,4049,4050,12851,12852,12856]]],["resteth",[2,2,[[19,1,1,0,1,[[641,1,1,0,1]]],[20,1,1,1,2,[[665,1,1,1,2]]]],[16805,17438]]],["set",[7,7,[[0,1,1,0,1,[[18,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]],[6,1,1,2,3,[[216,1,1,2,3]]],[22,2,2,3,5,[[692,1,1,3,4],[724,1,1,4,5]]],[25,1,1,5,6,[[841,1,1,5,6]]],[37,1,1,6,7,[[915,1,1,6,7]]]],[473,5576,6672,17929,18593,21479,22947]]],["suffer",[2,2,[[16,1,1,0,1,[[428,1,1,0,1]]],[20,1,1,1,2,[[663,1,1,1,2]]]],[12755,17409]]],["suffered",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[10841,15620]]],["up",[7,7,[[0,1,1,0,1,[[38,1,1,0,1]]],[1,2,2,1,3,[[65,2,2,1,3]]],[3,2,2,3,5,[[133,1,1,3,4],[135,1,1,4,5]]],[4,1,1,5,6,[[166,1,1,5,6]]],[8,1,1,6,7,[[245,1,1,6,7]]]],[1165,1970,1981,4248,4298,5318,7443]]],["withdraw",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17447]]],["withhold",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17519]]]]},{"k":"H5118","v":[["place",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11323]]]]},{"k":"H5119","v":[["Nohah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10577]]]]},{"k":"H5120","v":[["moved",[1,1,[[18,1,1,0,1,[[576,1,1,0,1]]]],[15500]]]]},{"k":"H5121","v":[["*",[6,5,[[8,6,5,0,5,[[254,5,4,0,4],[255,1,1,4,5]]]],[7724,7725,7728,7729,7731]]],["+",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7731]]],["Naioth",[5,4,[[8,5,4,0,4,[[254,5,4,0,4]]]],[7724,7725,7728,7729]]]]},{"k":"H5122","v":[["dunghill",[3,3,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,2,2,1,3,[[851,1,1,1,2],[852,1,1,2,3]]]],[12162,21763,21836]]]]},{"k":"H5123","v":[["*",[6,6,[[18,3,3,0,3,[[553,1,1,0,1],[598,2,2,1,3]]],[22,2,2,3,5,[[683,1,1,3,4],[734,1,1,4,5]]],[33,1,1,5,6,[[902,1,1,5,6]]]],[15086,16084,16085,17766,18763,22730]]],["slept",[1,1,[[18,1,1,0,1,[[553,1,1,0,1]]]],[15086]]],["slumber",[5,5,[[18,2,2,0,2,[[598,2,2,0,2]]],[22,2,2,2,4,[[683,1,1,2,3],[734,1,1,3,4]]],[33,1,1,4,5,[[902,1,1,4,5]]]],[16084,16085,17766,18763,22730]]]]},{"k":"H5124","v":[["drowsiness",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17065]]]]},{"k":"H5125","v":[["continued",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15017]]]]},{"k":"H5126","v":[["*",[30,30,[[1,1,1,0,1,[[82,1,1,0,1]]],[3,11,11,1,12,[[127,1,1,1,2],[129,2,2,2,4],[130,3,3,4,7],[142,1,1,7,8],[143,1,1,8,9],[148,2,2,9,11],[150,1,1,11,12]]],[4,4,4,12,16,[[153,1,1,12,13],[183,1,1,13,14],[184,1,1,14,15],[186,1,1,15,16]]],[5,10,10,16,26,[[187,1,1,16,17],[188,2,2,17,19],[192,1,1,19,20],[200,1,1,20,21],[203,1,1,21,22],[205,2,2,22,24],[207,1,1,24,25],[210,1,1,25,26]]],[6,1,1,26,27,[[212,1,1,26,27]]],[10,1,1,27,28,[[306,1,1,27,28]]],[12,1,1,28,29,[[344,1,1,28,29]]],[15,1,1,29,30,[[420,1,1,29,30]]]],[2484,4052,4083,4091,4114,4138,4146,4554,4572,4730,4746,4833,4930,5751,5802,5848,5852,5870,5892,5955,6188,6279,6370,6372,6382,6505,6553,9317,10562,12510]]],["Non",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10562]]],["Nun",[29,29,[[1,1,1,0,1,[[82,1,1,0,1]]],[3,11,11,1,12,[[127,1,1,1,2],[129,2,2,2,4],[130,3,3,4,7],[142,1,1,7,8],[143,1,1,8,9],[148,2,2,9,11],[150,1,1,11,12]]],[4,4,4,12,16,[[153,1,1,12,13],[183,1,1,13,14],[184,1,1,14,15],[186,1,1,15,16]]],[5,10,10,16,26,[[187,1,1,16,17],[188,2,2,17,19],[192,1,1,19,20],[200,1,1,20,21],[203,1,1,21,22],[205,2,2,22,24],[207,1,1,24,25],[210,1,1,25,26]]],[6,1,1,26,27,[[212,1,1,26,27]]],[10,1,1,27,28,[[306,1,1,27,28]]],[15,1,1,28,29,[[420,1,1,28,29]]]],[2484,4052,4083,4091,4114,4138,4146,4554,4572,4730,4746,4833,4930,5751,5802,5848,5852,5870,5892,5955,6188,6279,6370,6372,6382,6505,6553,9317,12510]]]]},{"k":"H5127","v":[["*",[160,142,[[0,7,6,0,6,[[13,2,1,0,1],[18,1,1,1,2],[38,4,4,2,6]]],[1,5,5,6,11,[[53,1,1,6,7],[58,1,1,7,8],[63,2,2,8,10],[70,1,1,10,11]]],[2,2,2,11,13,[[115,2,2,11,13]]],[3,8,8,13,21,[[126,1,1,13,14],[132,1,1,14,15],[151,6,6,15,21]]],[4,11,9,21,30,[[156,2,1,21,22],[171,4,4,22,26],[180,2,2,26,28],[184,2,1,28,29],[186,1,1,29,30]]],[5,13,11,30,41,[[193,1,1,30,31],[194,6,4,31,35],[196,2,2,35,37],[206,4,4,37,41]]],[6,13,13,41,54,[[211,1,1,41,42],[214,2,2,42,44],[216,1,1,44,45],[217,2,2,45,47],[218,1,1,47,48],[219,3,3,48,51],[230,3,3,51,54]]],[8,12,11,54,65,[[239,3,3,54,57],[249,1,1,57,58],[252,2,2,58,60],[254,2,2,60,62],[265,1,1,62,63],[266,3,2,63,65]]],[9,16,13,65,78,[[267,1,1,65,66],[270,2,1,66,67],[276,4,3,67,70],[279,1,1,70,71],[283,1,1,71,72],[284,3,2,72,74],[285,2,2,74,76],[289,1,1,76,77],[290,1,1,77,78]]],[10,6,5,78,83,[[292,2,2,78,80],[302,1,1,80,81],[310,3,2,81,83]]],[11,11,9,83,92,[[315,1,1,83,84],[319,2,1,84,85],[320,1,1,85,86],[321,5,4,86,90],[326,2,2,90,92]]],[12,8,6,92,98,[[347,3,2,92,94],[348,1,1,94,95],[356,4,3,95,98]]],[13,5,5,98,103,[[376,1,1,98,99],[379,1,1,99,100],[380,1,1,100,101],[391,2,2,101,103]]],[18,5,5,103,108,[[537,1,1,103,104],[545,1,1,104,105],[581,1,1,105,106],[591,2,2,106,108]]],[19,2,2,108,110,[[655,2,2,108,110]]],[21,2,2,110,112,[[672,1,1,110,111],[674,1,1,111,112]]],[22,13,12,112,124,[[688,2,2,112,114],[691,1,1,114,115],[695,1,1,115,116],[698,1,1,116,117],[702,1,1,117,118],[708,3,2,118,120],[709,1,1,120,121],[713,1,1,121,122],[729,1,1,122,123],[737,1,1,123,124]]],[23,12,12,124,136,[[790,3,3,124,127],[792,3,3,127,130],[793,3,3,130,133],[794,2,2,133,135],[795,1,1,135,136]]],[29,4,3,136,139,[[880,1,1,136,137],[883,1,1,137,138],[887,2,1,138,139]]],[33,1,1,139,140,[[901,1,1,139,140]]],[37,4,2,140,142,[[912,1,1,140,141],[924,3,1,141,142]]]],[346,477,1161,1162,1164,1167,1604,1762,1914,1916,2090,3541,3560,4023,4228,4851,4856,4860,4870,4871,4877,5046,5409,5410,5411,5417,5618,5636,5788,5846,5980,6007,6008,6017,6022,6075,6080,6375,6376,6378,6381,6515,6614,6616,6665,6715,6716,6731,6775,6794,6805,7086,7099,7101,7307,7313,7314,7530,7642,7669,7714,7716,7995,8010,8016,8026,8124,8253,8254,8258,8346,8451,8481,8495,8514,8519,8664,8705,8798,8799,9169,9428,9438,9600,9714,9748,9759,9766,9779,9783,9908,9915,10660,10666,10686,10921,10922,10925,11413,11469,11487,11726,11731,14811,14901,15578,15825,15827,17197,17213,17571,17588,17853,17879,17920,17996,18035,18113,18233,18234,18258,18330,18684,18819,20050,20051,20066,20086,20099,20125,20135,20151,20157,20182,20194,20218,22395,22442,22496,22707,22905,23073]]],["+",[3,2,[[9,2,1,0,1,[[284,2,1,0,1]]],[23,1,1,1,2,[[790,1,1,1,2]]]],[8481,20050]]],["Flee",[4,4,[[23,4,4,0,4,[[792,1,1,0,1],[793,2,2,1,3],[795,1,1,3,4]]]],[20086,20135,20157,20218]]],["abated",[1,1,[[4,1,1,0,1,[[186,1,1,0,1]]]],[5846]]],["away",[12,12,[[6,3,3,0,3,[[214,2,2,0,2],[219,1,1,2,3]]],[21,2,2,3,5,[[672,1,1,3,4],[674,1,1,4,5]]],[22,2,2,5,7,[[713,1,1,5,6],[729,1,1,6,7]]],[23,2,2,7,9,[[790,2,2,7,9]]],[29,2,2,9,11,[[880,1,1,9,10],[887,1,1,10,11]]],[33,1,1,11,12,[[901,1,1,11,12]]]],[6614,6616,6775,17571,17588,18330,18684,20051,20066,22395,22496,22707]]],["displayed",[1,1,[[18,1,1,0,1,[[537,1,1,0,1]]]],[14811]]],["fled",[80,72,[[0,6,5,0,5,[[13,2,1,0,1],[38,4,4,1,5]]],[1,2,2,5,7,[[53,1,1,5,6],[63,1,1,6,7]]],[3,4,4,7,11,[[132,1,1,7,8],[151,3,3,8,11]]],[5,6,6,11,17,[[193,1,1,11,12],[194,2,2,12,14],[196,2,2,14,16],[206,1,1,16,17]]],[6,8,8,17,25,[[211,1,1,17,18],[217,2,2,18,20],[218,1,1,20,21],[219,2,2,21,23],[230,2,2,23,25]]],[8,12,11,25,36,[[239,3,3,25,28],[249,1,1,28,29],[252,2,2,29,31],[254,2,2,31,33],[265,1,1,33,34],[266,3,2,34,36]]],[9,10,9,36,45,[[267,1,1,36,37],[270,1,1,37,38],[276,4,3,38,41],[279,1,1,41,42],[284,1,1,42,43],[285,1,1,43,44],[289,1,1,44,45]]],[10,5,4,45,49,[[292,2,2,45,47],[310,3,2,47,49]]],[11,10,8,49,57,[[315,1,1,49,50],[319,2,1,50,51],[320,1,1,51,52],[321,4,3,52,55],[326,2,2,55,57]]],[12,8,6,57,63,[[347,3,2,57,59],[348,1,1,59,60],[356,4,3,60,63]]],[13,4,4,63,67,[[379,1,1,63,64],[380,1,1,64,65],[391,2,2,65,67]]],[18,2,2,67,69,[[581,1,1,67,68],[591,1,1,68,69]]],[22,1,1,69,70,[[688,1,1,69,70]]],[23,1,1,70,71,[[792,1,1,70,71]]],[37,1,1,71,72,[[924,1,1,71,72]]]],[346,1161,1162,1164,1167,1604,1916,4228,4870,4871,4877,5980,6017,6022,6075,6080,6378,6515,6715,6716,6731,6794,6805,7099,7101,7307,7313,7314,7530,7642,7669,7714,7716,7995,8010,8016,8026,8124,8253,8254,8258,8346,8495,8519,8664,8798,8799,9428,9438,9600,9714,9748,9766,9779,9783,9908,9915,10660,10666,10686,10921,10922,10925,11469,11487,11726,11731,15578,15825,17879,20125,23073]]],["fleddest",[1,1,[[18,1,1,0,1,[[591,1,1,0,1]]]],[15827]]],["flee",[49,46,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,3,3,1,4,[[58,1,1,1,2],[63,1,1,2,3],[70,1,1,3,4]]],[2,2,2,4,6,[[115,2,2,4,6]]],[3,4,4,6,10,[[126,1,1,6,7],[151,3,3,7,10]]],[4,6,6,10,16,[[156,1,1,10,11],[171,3,3,11,14],[180,2,2,14,16]]],[5,7,6,16,22,[[194,4,3,16,19],[206,3,3,19,22]]],[6,1,1,22,23,[[230,1,1,22,23]]],[9,4,4,23,27,[[270,1,1,23,24],[283,1,1,24,25],[285,1,1,25,26],[290,1,1,26,27]]],[10,1,1,27,28,[[302,1,1,27,28]]],[11,1,1,28,29,[[321,1,1,28,29]]],[13,1,1,29,30,[[376,1,1,29,30]]],[18,1,1,30,31,[[545,1,1,30,31]]],[19,2,2,31,33,[[655,2,2,31,33]]],[22,8,7,33,40,[[688,1,1,33,34],[691,1,1,34,35],[695,1,1,35,36],[698,1,1,36,37],[708,3,2,37,39],[709,1,1,39,40]]],[23,3,3,40,43,[[793,1,1,40,41],[794,2,2,41,43]]],[29,1,1,43,44,[[883,1,1,43,44]]],[37,3,2,44,46,[[912,1,1,44,45],[924,2,1,45,46]]]],[477,1762,1914,2090,3541,3560,4023,4851,4856,4860,5046,5409,5410,5411,5618,5636,6007,6008,6022,6375,6376,6381,7086,8124,8451,8514,8705,9169,9759,11413,14901,17197,17213,17853,17920,17996,18035,18233,18234,18258,20151,20182,20194,22442,22905,23073]]],["fleeing",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5046]]],["fleeth",[4,4,[[4,1,1,0,1,[[171,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]],[29,1,1,3,4,[[887,1,1,3,4]]]],[5417,18113,20099,22496]]],["flight",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5788]]],["hide",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6665]]],["put",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5788]]],["standard",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18819]]]]},{"k":"H5128","v":[["*",[40,36,[[0,2,2,0,2,[[3,2,2,0,2]]],[1,1,1,2,3,[[69,1,1,2,3]]],[3,1,1,3,4,[[148,1,1,3,4]]],[6,3,3,4,7,[[219,3,3,4,7]]],[8,1,1,7,8,[[236,1,1,7,8]]],[9,1,1,8,9,[[281,1,1,8,9]]],[11,2,2,9,11,[[331,1,1,9,10],[335,1,1,10,11]]],[17,2,2,11,13,[[451,1,1,11,12],[463,1,1,12,13]]],[18,7,6,13,19,[[499,1,1,13,14],[536,2,2,14,16],[584,1,1,16,17],[586,3,2,17,19]]],[19,1,1,19,20,[[632,1,1,19,20]]],[22,8,6,20,26,[[684,1,1,20,21],[685,2,1,21,22],[697,1,1,22,23],[702,2,1,23,24],[707,1,1,24,25],[715,1,1,25,26]]],[23,1,1,26,27,[[758,1,1,26,27]]],[24,3,3,27,30,[[798,1,1,27,28],[800,2,2,28,30]]],[26,1,1,30,31,[[859,1,1,30,31]]],[29,4,3,31,34,[[882,1,1,31,32],[886,1,1,32,33],[887,2,1,33,34]]],[33,1,1,34,35,[[902,1,1,34,35]]],[35,1,1,35,36,[[907,1,1,35,36]]]],[91,93,2069,4731,6763,6765,6767,7225,8409,10082,10183,13242,13508,14211,14801,14805,15726,15765,15780,16523,17773,17784,18005,18115,18202,18374,19303,20347,20434,20435,22025,22418,22493,22504,22724,22820]]],["+",[5,3,[[18,2,1,0,1,[[586,2,1,0,1]]],[22,2,1,1,2,[[702,2,1,1,2]]],[29,1,1,2,3,[[887,1,1,2,3]]]],[15765,18115,22504]]],["away",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13508]]],["down",[2,2,[[9,1,1,0,1,[[281,1,1,0,1]]],[18,1,1,1,2,[[536,1,1,1,2]]]],[8409,14805]]],["fugitive",[2,2,[[0,2,2,0,2,[[3,2,2,0,2]]]],[91,93]]],["move",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10183]]],["moveable",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16523]]],["moved",[5,4,[[8,1,1,0,1,[[236,1,1,0,1]]],[22,4,3,1,4,[[684,1,1,1,2],[685,2,1,2,3],[697,1,1,3,4]]]],[7225,17773,17784,18005]]],["promoted",[3,3,[[6,3,3,0,3,[[219,3,3,0,3]]]],[6763,6765,6767]]],["removed",[1,1,[[1,1,1,0,1,[[69,1,1,0,1]]]],[2069]]],["scatter",[1,1,[[18,1,1,0,1,[[536,1,1,0,1]]]],[14801]]],["set",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22025]]],["shake",[2,2,[[17,1,1,0,1,[[451,1,1,0,1]]],[18,1,1,1,2,[[499,1,1,1,2]]]],[13242,14211]]],["shaked",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15780]]],["shaken",[3,3,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]],[33,1,1,2,3,[[902,1,1,2,3]]]],[10082,18374,22724]]],["sifted",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22504]]],["stagger",[2,2,[[18,1,1,0,1,[[584,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]]],[15726,18202]]],["wag",[2,2,[[24,1,1,0,1,[[798,1,1,0,1]]],[35,1,1,1,2,[[907,1,1,1,2]]]],[20347,22820]]],["wander",[3,3,[[3,1,1,0,1,[[148,1,1,0,1]]],[23,1,1,1,2,[[758,1,1,1,2]]],[29,1,1,2,3,[[886,1,1,2,3]]]],[4731,19303,22493]]],["wandered",[3,3,[[24,2,2,0,2,[[800,2,2,0,2]]],[29,1,1,2,3,[[882,1,1,2,3]]]],[20434,20435,22418]]]]},{"k":"H5129","v":[["Noadiah",[2,2,[[14,1,1,0,1,[[410,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]]],[12234,12415]]]]},{"k":"H5130","v":[["*",[37,35,[[1,5,5,0,5,[[69,1,1,0,1],[78,3,3,1,4],[84,1,1,4,5]]],[2,11,10,5,15,[[96,1,1,5,6],[97,2,2,6,8],[98,1,1,8,9],[99,1,1,9,10],[103,2,2,10,12],[112,4,3,12,15]]],[3,6,6,15,21,[[121,1,1,15,16],[122,1,1,16,17],[124,4,4,17,21]]],[4,2,2,21,23,[[175,1,1,21,22],[179,1,1,22,23]]],[5,1,1,23,24,[[194,1,1,23,24]]],[11,1,1,24,25,[[317,1,1,24,25]]],[17,1,1,25,26,[[466,1,1,25,26]]],[18,1,1,26,27,[[545,1,1,26,27]]],[19,1,1,27,28,[[634,1,1,27,28]]],[22,7,6,28,34,[[688,3,2,28,30],[689,1,1,30,31],[691,1,1,31,32],[697,1,1,32,33],[708,1,1,33,34]]],[37,1,1,34,35,[[912,1,1,34,35]]]],[2076,2360,2362,2363,2553,2909,2944,2946,2974,2992,3123,3135,3413,3414,3422,3817,3843,3950,3952,3954,3960,5525,5590,6033,9658,13609,14909,16592,17865,17882,17899,17908,18020,18245,22908]]],["+",[7,7,[[2,3,3,0,3,[[96,1,1,0,1],[112,2,2,1,3]]],[3,2,2,3,5,[[121,1,1,3,4],[124,1,1,4,5]]],[22,1,1,5,6,[[688,1,1,5,6]]],[37,1,1,6,7,[[912,1,1,6,7]]]],[2909,3413,3414,3817,3950,17865,22908]]],["move",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5525]]],["offer",[2,2,[[3,2,2,0,2,[[124,2,2,0,2]]]],[3952,3954]]],["offered",[2,2,[[1,1,1,0,1,[[84,1,1,0,1]]],[3,1,1,1,2,[[124,1,1,1,2]]]],[2553,3960]]],["perfumed",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16592]]],["send",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14909]]],["shake",[3,3,[[22,3,3,0,3,[[688,1,1,0,1],[689,1,1,1,2],[691,1,1,2,3]]]],[17882,17899,17908]]],["shaketh",[2,2,[[22,2,2,0,2,[[688,1,1,0,1],[697,1,1,1,2]]]],[17865,18020]]],["sift",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18245]]],["strike",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9658]]],["up",[4,4,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,1,1,1,2,[[179,1,1,1,2]]],[5,1,1,2,3,[[194,1,1,2,3]]],[17,1,1,3,4,[[466,1,1,3,4]]]],[2076,5590,6033,13609]]],["wave",[8,8,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,5,5,2,7,[[99,1,1,2,3],[103,2,2,3,5],[112,2,2,5,7]]],[3,1,1,7,8,[[122,1,1,7,8]]]],[2360,2362,2992,3123,3135,3413,3422,3843]]],["waved",[4,4,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,3,3,1,4,[[97,2,2,1,3],[98,1,1,3,4]]]],[2363,2944,2946,2974]]]]},{"k":"H5131","v":[["situation",[1,1,[[18,1,1,0,1,[[525,1,1,0,1]]]],[14636]]]]},{"k":"H5132","v":[["*",[3,3,[[21,2,2,0,2,[[676,1,1,0,1],[677,1,1,1,2]]],[24,1,1,2,3,[[800,1,1,2,3]]]],[17625,17639,20435]]],["away",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20435]]],["budded",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17625]]],["forth",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17639]]]]},{"k":"H5133","v":[["*",[4,4,[[2,1,1,0,1,[[90,1,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]],[25,2,2,2,4,[[818,2,2,2,4]]]],[2761,13847,20828,20832]]],["feathers",[3,3,[[2,1,1,0,1,[[90,1,1,0,1]]],[25,2,2,1,3,[[818,2,2,1,3]]]],[2761,20828,20832]]],["ostrich",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13847]]]]},{"k":"H5134","v":[["nursed",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1563]]]]},{"k":"H5135","v":[["*",[17,14,[[26,17,14,0,14,[[852,14,12,0,12],[856,3,2,12,14]]]],[21813,21818,21822,21824,21827,21828,21829,21830,21831,21832,21833,21834,21942,21943]]],["+",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21942,21943]]],["fiery",[8,8,[[26,8,8,0,8,[[852,8,8,0,8]]]],[21813,21818,21822,21824,21827,21828,21830,21833]]],["fire",[7,6,[[26,7,6,0,6,[[852,6,5,0,5],[856,1,1,5,6]]]],[21829,21831,21832,21833,21834,21942]]]]},{"k":"H5136","v":[["heaviness",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14955]]]]},{"k":"H5137","v":[["*",[24,22,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,15,13,1,14,[[93,2,2,1,3],[94,1,1,3,4],[95,2,1,4,5],[97,2,2,5,7],[103,4,4,7,11],[105,4,3,11,14]]],[3,5,5,14,19,[[124,1,1,14,15],[135,4,4,15,19]]],[11,1,1,19,20,[[321,1,1,19,20]]],[22,2,2,20,22,[[730,1,1,20,21],[741,1,1,21,22]]]],[2357,2801,2812,2839,2876,2928,2947,3118,3127,3138,3162,3215,3216,3220,3946,4293,4307,4308,4310,9789,18711,18869]]],["+",[1,1,[[2,1,1,0,1,[[103,1,1,0,1]]]],[3162]]],["Sprinkle",[1,1,[[3,1,1,0,1,[[124,1,1,0,1]]]],[3946]]],["sprinkle",[15,14,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,10,9,1,10,[[93,2,2,1,3],[94,1,1,3,4],[103,3,3,4,7],[105,4,3,7,10]]],[3,3,3,10,13,[[135,3,3,10,13]]],[22,1,1,13,14,[[730,1,1,13,14]]]],[2357,2801,2812,2839,3118,3127,3138,3215,3216,3220,4293,4307,4308,18711]]],["sprinkled",[6,5,[[2,4,3,0,3,[[95,2,1,0,1],[97,2,2,1,3]]],[11,1,1,3,4,[[321,1,1,3,4]]],[22,1,1,4,5,[[741,1,1,4,5]]]],[2876,2928,2947,9789,18869]]],["sprinkleth",[1,1,[[3,1,1,0,1,[[135,1,1,0,1]]]],[4310]]]]},{"k":"H5138","v":[["*",[6,6,[[0,2,2,0,2,[[24,2,2,0,2]]],[11,3,3,2,5,[[316,3,3,2,5]]],[36,1,1,5,6,[[910,1,1,5,6]]]],[687,692,9641,9642,9643,22867]]],["+",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9643]]],["pottage",[5,5,[[0,2,2,0,2,[[24,2,2,0,2]]],[11,2,2,2,4,[[316,2,2,2,4]]],[36,1,1,4,5,[[910,1,1,4,5]]]],[687,692,9641,9642,22867]]]]},{"k":"H5139","v":[["*",[16,16,[[0,1,1,0,1,[[48,1,1,0,1]]],[2,2,2,1,3,[[114,2,2,1,3]]],[3,6,6,3,9,[[122,6,6,3,9]]],[4,1,1,9,10,[[185,1,1,9,10]]],[6,3,3,10,13,[[223,2,2,10,12],[226,1,1,12,13]]],[24,1,1,13,14,[[800,1,1,13,14]]],[29,2,2,14,16,[[880,2,2,14,16]]]],[1499,3474,3480,3825,3836,3841,3842,3843,3844,5826,6889,6891,6966,20427,22390,22391]]],["Nazarite",[9,9,[[3,6,6,0,6,[[122,6,6,0,6]]],[6,3,3,6,9,[[223,2,2,6,8],[226,1,1,8,9]]]],[3825,3836,3841,3842,3843,3844,6889,6891,6966]]],["Nazarites",[3,3,[[24,1,1,0,1,[[800,1,1,0,1]]],[29,2,2,1,3,[[880,2,2,1,3]]]],[20427,22390,22391]]],["from",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1499]]],["separated",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5826]]],["undressed",[2,2,[[2,2,2,0,2,[[114,2,2,0,2]]]],[3474,3480]]]]},{"k":"H5140","v":[["*",[16,16,[[1,1,1,0,1,[[64,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[6,1,1,3,4,[[215,1,1,3,4]]],[17,1,1,4,5,[[471,1,1,4,5]]],[18,3,3,5,8,[[555,2,2,5,7],[624,1,1,7,8]]],[19,1,1,8,9,[[632,1,1,8,9]]],[21,2,2,9,11,[[674,2,2,9,11]]],[22,3,3,11,14,[[722,1,1,11,12],[723,1,1,12,13],[726,1,1,13,14]]],[23,2,2,14,16,[[753,1,1,14,15],[762,1,1,15,16]]]],[1928,4453,5760,6628,13764,15129,15157,16369,16532,17597,17598,18536,18569,18635,19193,19398]]],["+",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15129]]],["distil",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5760]]],["down",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18569]]],["drop",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13764]]],["floods",[3,3,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]],[22,1,1,2,3,[[722,1,1,2,3]]]],[1928,15157,18536]]],["flow",[2,2,[[18,1,1,0,1,[[624,1,1,0,1]]],[22,1,1,1,2,[[726,1,1,1,2]]]],[16369,18635]]],["flowing",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19398]]],["melted",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6628]]],["out",[2,2,[[21,1,1,0,1,[[674,1,1,0,1]]],[23,1,1,1,2,[[753,1,1,1,2]]]],[17598,19193]]],["pour",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4453]]],["streams",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17597]]],["waters",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16532]]]]},{"k":"H5141","v":[["*",[17,16,[[0,4,4,0,4,[[23,3,3,0,3],[34,1,1,3,4]]],[1,3,3,4,7,[[81,2,2,4,6],[84,1,1,6,7]]],[6,4,3,7,10,[[218,4,3,7,10]]],[17,1,1,10,11,[[477,1,1,10,11]]],[19,2,2,11,13,[[638,1,1,11,12],[652,1,1,12,13]]],[22,1,1,13,14,[[681,1,1,13,14]]],[25,1,1,14,15,[[817,1,1,14,15]]],[27,1,1,15,16,[[863,1,1,15,16]]]],[613,621,638,1015,2440,2441,2553,6743,6744,6745,13933,16710,17125,17728,20774,22118]]],["earring",[5,5,[[0,3,3,0,3,[[23,3,3,0,3]]],[17,1,1,3,4,[[477,1,1,3,4]]],[19,1,1,4,5,[[652,1,1,4,5]]]],[613,621,638,13933,17125]]],["earrings",[9,8,[[0,1,1,0,1,[[34,1,1,0,1]]],[1,3,3,1,4,[[81,2,2,1,3],[84,1,1,3,4]]],[6,4,3,4,7,[[218,4,3,4,7]]],[27,1,1,7,8,[[863,1,1,7,8]]]],[1015,2440,2441,2553,6743,6744,6745,22118]]],["jewel",[2,2,[[19,1,1,0,1,[[638,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[16710,20774]]],["jewels",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17728]]]]},{"k":"H5142","v":[["*",[4,4,[[14,3,3,0,3,[[406,3,3,0,3]]],[26,1,1,3,4,[[855,1,1,3,4]]]],[12123,12125,12132,21907]]],["damage",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21907]]],["endamage",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12123]]],["hurt",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12132]]],["hurtful",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12125]]]]},{"k":"H5143","v":[["damage",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12811]]]]},{"k":"H5144","v":[["*",[10,10,[[2,2,2,0,2,[[104,1,1,0,1],[111,1,1,1,2]]],[3,5,5,2,7,[[122,5,5,2,7]]],[25,1,1,7,8,[[815,1,1,7,8]]],[27,1,1,8,9,[[870,1,1,8,9]]],[37,1,1,9,10,[[917,1,1,9,10]]]],[3199,3371,3825,3826,3828,3829,3835,20738,22218,22965]]],["+",[1,1,[[2,1,1,0,1,[[104,1,1,0,1]]]],[3199]]],["consecrate",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3835]]],["himself",[1,1,[[25,1,1,0,1,[[815,1,1,0,1]]]],[20738]]],["myself",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22965]]],["separate",[2,2,[[3,2,2,0,2,[[122,2,2,0,2]]]],[3825,3826]]],["separateth",[2,2,[[3,2,2,0,2,[[122,2,2,0,2]]]],[3828,3829]]],["themselves",[2,2,[[2,1,1,0,1,[[111,1,1,0,1]]],[27,1,1,1,2,[[870,1,1,1,2]]]],[3371,22218]]]]},{"k":"H5145","v":[["*",[25,22,[[1,2,2,0,2,[[78,1,1,0,1],[88,1,1,1,2]]],[2,2,2,2,4,[[97,1,1,2,3],[110,1,1,3,4]]],[3,13,10,4,14,[[122,13,10,4,14]]],[9,1,1,14,15,[[267,1,1,14,15]]],[11,1,1,15,16,[[323,1,1,15,16]]],[13,1,1,16,17,[[389,1,1,16,17]]],[18,2,2,17,19,[[566,1,1,17,18],[609,1,1,18,19]]],[19,1,1,19,20,[[654,1,1,19,20]]],[23,1,1,20,21,[[751,1,1,20,21]]],[37,1,1,21,22,[[919,1,1,21,22]]]],[2342,2694,2926,3357,3827,3828,3830,3831,3832,3835,3836,3841,3842,3844,8032,9841,11667,15365,16169,17193,19148,23015]]],["consecration",[2,2,[[3,2,2,0,2,[[122,2,2,0,2]]]],[3830,3832]]],["crown",[11,11,[[1,2,2,0,2,[[78,1,1,0,1],[88,1,1,1,2]]],[2,2,2,2,4,[[97,1,1,2,3],[110,1,1,3,4]]],[9,1,1,4,5,[[267,1,1,4,5]]],[11,1,1,5,6,[[323,1,1,5,6]]],[13,1,1,6,7,[[389,1,1,6,7]]],[18,2,2,7,9,[[566,1,1,7,8],[609,1,1,8,9]]],[19,1,1,9,10,[[654,1,1,9,10]]],[37,1,1,10,11,[[919,1,1,10,11]]]],[2342,2694,2926,3357,8032,9841,11667,15365,16169,17193,23015]]],["hair",[1,1,[[23,1,1,0,1,[[751,1,1,0,1]]]],[19148]]],["separation",[11,8,[[3,11,8,0,8,[[122,11,8,0,8]]]],[3827,3828,3831,3835,3836,3841,3842,3844]]]]},{"k":"H5146","v":[["*",[46,39,[[0,41,35,0,35,[[4,4,3,0,3],[5,7,5,3,8],[6,12,9,8,17],[7,7,7,17,24],[8,9,9,24,33],[9,2,2,33,35]]],[12,1,1,35,36,[[338,1,1,35,36]]],[22,2,1,36,37,[[732,2,1,36,37]]],[25,2,2,37,39,[[815,2,2,37,39]]]],[134,135,137,145,146,147,150,159,160,164,165,166,168,170,172,174,182,184,189,194,196,198,201,203,206,213,222,223,224,225,229,233,234,235,266,10256,18732,20745,20751]]],["Noah",[44,38,[[0,39,34,0,34,[[4,4,3,0,3],[5,7,5,3,8],[6,10,8,8,16],[7,7,7,16,23],[8,9,9,23,32],[9,2,2,32,34]]],[12,1,1,34,35,[[338,1,1,34,35]]],[22,2,1,35,36,[[732,2,1,35,36]]],[25,2,2,36,38,[[815,2,2,36,38]]]],[134,135,137,145,146,147,150,159,160,164,165,166,168,172,174,182,184,189,194,196,198,201,203,206,213,222,223,224,225,229,233,234,235,266,10256,18732,20745,20751]]],["Noah's",[2,2,[[0,2,2,0,2,[[6,2,2,0,2]]]],[170,172]]]]},{"k":"H5147","v":[["Nahbi",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4089]]]]},{"k":"H5148","v":[["*",[39,39,[[0,2,2,0,2,[[23,2,2,0,2]]],[1,4,4,2,6,[[62,2,2,2,4],[64,1,1,4,5],[81,1,1,5,6]]],[3,1,1,6,7,[[139,1,1,6,7]]],[4,1,1,7,8,[[184,1,1,7,8]]],[8,1,1,8,9,[[257,1,1,8,9]]],[10,1,1,9,10,[[300,1,1,9,10]]],[11,1,1,10,11,[[330,1,1,10,11]]],[15,2,2,11,13,[[421,2,2,11,13]]],[17,3,3,13,16,[[447,1,1,13,14],[466,1,1,14,15],[473,1,1,15,16]]],[18,18,18,16,34,[[482,1,1,16,17],[500,1,1,17,18],[504,1,1,18,19],[508,1,1,19,20],[520,1,1,20,21],[537,1,1,21,22],[538,1,1,22,23],[544,1,1,23,24],[550,1,1,24,25],[554,1,1,25,26],[555,3,3,26,29],[584,1,1,29,30],[585,1,1,30,31],[616,2,2,31,33],[620,1,1,33,34]]],[19,3,3,34,37,[[633,1,1,34,35],[638,1,1,35,36],[645,1,1,36,37]]],[22,2,2,37,39,[[735,1,1,37,38],[736,1,1,38,39]]]],[618,639,1884,1888,1933,2472,4423,5770,7791,9105,10035,12523,12530,13151,13606,13825,13981,14238,14296,14334,14569,14816,14821,14897,15044,15113,15127,15166,15185,15729,15752,16249,16263,16303,16562,16691,16917,18783,18797]]],["+",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2472]]],["Lead",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13981]]],["bestowed",[1,1,[[10,1,1,0,1,[[300,1,1,0,1]]]],[9105]]],["bringeth",[2,2,[[18,1,1,0,1,[[584,1,1,0,1]]],[19,1,1,1,2,[[645,1,1,1,2]]]],[15729,16917]]],["brought",[2,2,[[3,1,1,0,1,[[139,1,1,0,1]]],[8,1,1,1,2,[[257,1,1,1,2]]]],[4423,7791]]],["forth",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1933]]],["govern",[1,1,[[18,1,1,0,1,[[544,1,1,0,1]]]],[14897]]],["guide",[4,4,[[17,1,1,0,1,[[473,1,1,0,1]]],[18,1,1,1,2,[[550,1,1,1,2]]],[19,1,1,2,3,[[638,1,1,2,3]]],[22,1,1,3,4,[[736,1,1,3,4]]]],[13825,15044,16691,18797]]],["guided",[2,2,[[17,1,1,0,1,[[466,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[13606,15185]]],["lead",[14,14,[[1,1,1,0,1,[[62,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[18,9,9,3,12,[[504,1,1,3,4],[508,1,1,4,5],[520,1,1,5,6],[537,1,1,6,7],[538,1,1,7,8],[585,1,1,8,9],[616,2,2,9,11],[620,1,1,11,12]]],[19,1,1,12,13,[[633,1,1,12,13]]],[22,1,1,13,14,[[735,1,1,13,14]]]],[1888,5770,12530,14296,14334,14569,14816,14821,15752,16249,16263,16303,16562,18783]]],["leadeth",[1,1,[[18,1,1,0,1,[[500,1,1,0,1]]]],[14238]]],["led",[5,5,[[0,2,2,0,2,[[23,2,2,0,2]]],[1,1,1,2,3,[[62,1,1,2,3]]],[18,2,2,3,5,[[555,2,2,3,5]]]],[618,639,1884,15127,15166]]],["leddest",[2,2,[[15,1,1,0,1,[[421,1,1,0,1]]],[18,1,1,1,2,[[554,1,1,1,2]]]],[12523,15113]]],["put",[1,1,[[11,1,1,0,1,[[330,1,1,0,1]]]],[10035]]],["straiteneth",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13151]]]]},{"k":"H5149","v":[["Nehum",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12427]]]]},{"k":"H5150","v":[["*",[3,3,[[22,1,1,0,1,[[735,1,1,0,1]]],[27,1,1,1,2,[[872,1,1,1,2]]],[37,1,1,2,3,[[911,1,1,2,3]]]],[18783,22248,22891]]],["comfortable",[1,1,[[37,1,1,0,1,[[911,1,1,0,1]]]],[22891]]],["comforts",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18783]]],["repentings",[1,1,[[27,1,1,0,1,[[872,1,1,0,1]]]],[22248]]]]},{"k":"H5151","v":[["Nahum",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22685]]]]},{"k":"H5152","v":[["*",[18,17,[[0,16,15,0,15,[[10,8,7,0,7],[21,2,2,7,9],[23,4,4,9,13],[28,1,1,13,14],[30,1,1,14,15]]],[5,1,1,15,16,[[210,1,1,15,16]]],[12,1,1,16,17,[[338,1,1,16,17]]]],[288,289,290,291,292,293,295,567,570,601,606,615,638,800,926,6478,10278]]],["Nachor",[1,1,[[5,1,1,0,1,[[210,1,1,0,1]]]],[6478]]],["Nahor",[15,15,[[0,14,14,0,14,[[10,7,7,0,7],[21,2,2,7,9],[23,3,3,9,12],[28,1,1,12,13],[30,1,1,13,14]]],[12,1,1,14,15,[[338,1,1,14,15]]]],[288,289,290,291,292,293,295,567,570,601,606,615,800,926,10278]]],["Nahor's",[2,2,[[0,2,2,0,2,[[10,1,1,0,1],[23,1,1,1,2]]]],[295,638]]]]},{"k":"H5153","v":[["brass",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12990]]]]},{"k":"H5154","v":[["*",[10,10,[[2,1,1,0,1,[[115,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,4,4,2,6,[[455,1,1,2,3],[463,1,1,3,4],[475,1,1,4,5],[476,1,1,5,6]]],[18,1,1,6,7,[[495,1,1,6,7]]],[22,2,2,7,9,[[723,1,1,7,8],[726,1,1,8,9]]],[32,1,1,9,10,[[896,1,1,9,10]]]],[3543,8637,13350,13506,13882,13915,14152,18563,18618,22633]]],["brass",[7,7,[[2,1,1,0,1,[[115,1,1,0,1]]],[17,3,3,1,4,[[463,1,1,1,2],[475,1,1,2,3],[476,1,1,3,4]]],[22,2,2,4,6,[[723,1,1,4,5],[726,1,1,5,6]]],[32,1,1,6,7,[[896,1,1,6,7]]]],[3543,13506,13882,13915,18563,18618,22633]]],["steel",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[455,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]]],[8637,13350,14152]]]]},{"k":"H5155","v":[]},{"k":"H5156","v":[["+",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13908]]]]},{"k":"H5157","v":[["*",[59,57,[[1,3,3,0,3,[[72,1,1,0,1],[81,1,1,1,2],[83,1,1,2,3]]],[2,1,1,3,4,[[114,1,1,3,4]]],[3,13,12,4,16,[[134,3,3,4,7],[142,1,1,7,8],[148,2,2,8,10],[149,2,1,10,11],[150,4,4,11,15],[151,1,1,15,16]]],[4,8,8,16,24,[[153,1,1,16,17],[155,1,1,17,18],[164,1,1,18,19],[171,2,2,19,21],[173,1,1,21,22],[183,1,1,22,23],[184,1,1,23,24]]],[5,9,8,24,32,[[187,1,1,24,25],[199,1,1,25,26],[200,2,1,26,27],[202,1,1,27,28],[203,1,1,28,29],[205,3,3,29,32]]],[6,1,1,32,33,[[221,1,1,32,33]]],[8,1,1,33,34,[[237,1,1,33,34]]],[12,1,1,34,35,[[365,1,1,34,35]]],[17,1,1,35,36,[[442,1,1,35,36]]],[18,3,3,36,39,[[546,1,1,36,37],[559,1,1,37,38],[596,1,1,38,39]]],[19,6,6,39,45,[[630,1,1,39,40],[635,1,1,40,41],[638,1,1,41,42],[640,1,1,42,43],[641,1,1,43,44],[655,1,1,44,45]]],[22,3,3,45,48,[[692,1,1,45,46],[727,1,1,46,47],[735,1,1,47,48]]],[23,3,3,48,51,[[747,1,1,48,49],[756,1,1,49,50],[760,1,1,50,51]]],[25,3,3,51,54,[[847,1,1,51,52],[848,2,2,52,54]]],[35,1,1,54,55,[[907,1,1,54,55]]],[37,2,2,55,57,[[912,1,1,55,56],[918,1,1,56,57]]]],[2174,2451,2505,3515,4277,4280,4281,4544,4736,4737,4814,4829,4833,4834,4845,4853,4930,5003,5250,5409,5420,5463,5735,5766,5857,6186,6188,6269,6281,6330,6370,6372,6831,7248,11151,13011,14971,15241,16009,16490,16623,16717,16769,16790,17206,17930,18644,18778,19020,19263,19355,21673,21692,21693,22814,22911,22988]]],["+",[16,16,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[3,5,5,2,7,[[134,1,1,2,3],[149,1,1,3,4],[150,3,3,4,7]]],[4,3,3,7,10,[[155,1,1,7,8],[164,1,1,8,9],[173,1,1,9,10]]],[5,3,3,10,13,[[187,1,1,10,11],[203,1,1,11,12],[205,1,1,12,13]]],[25,1,1,13,14,[[848,1,1,13,14]]],[37,2,2,14,16,[[912,1,1,14,15],[918,1,1,15,16]]]],[2174,3515,4277,4814,4833,4834,4845,5003,5250,5463,5857,6281,6370,21692,22911,22988]]],["divided",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5766]]],["have",[2,2,[[3,2,2,0,2,[[134,2,2,0,2]]]],[4280,4281]]],["heritage",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16009]]],["inherit",[20,20,[[1,1,1,0,1,[[81,1,1,0,1]]],[3,4,4,1,5,[[142,1,1,1,2],[148,1,1,2,3],[149,1,1,3,4],[150,1,1,4,5]]],[4,4,4,5,9,[[153,1,1,5,6],[171,2,2,6,8],[183,1,1,8,9]]],[6,1,1,9,10,[[221,1,1,9,10]]],[8,1,1,10,11,[[237,1,1,10,11]]],[18,2,2,11,13,[[546,1,1,11,12],[559,1,1,12,13]]],[19,4,4,13,17,[[630,1,1,13,14],[635,1,1,14,15],[638,1,1,15,16],[641,1,1,16,17]]],[22,1,1,17,18,[[727,1,1,17,18]]],[23,1,1,18,19,[[756,1,1,18,19]]],[25,1,1,19,20,[[848,1,1,19,20]]]],[2451,4544,4737,4814,4829,4930,5409,5420,5735,6831,7248,14971,15241,16490,16623,16717,16790,18644,19263,21693]]],["inheritance",[10,10,[[1,1,1,0,1,[[83,1,1,0,1]]],[5,5,5,1,6,[[199,1,1,1,2],[200,1,1,2,3],[202,1,1,3,4],[205,2,2,4,6]]],[12,1,1,6,7,[[365,1,1,6,7]]],[19,1,1,7,8,[[640,1,1,7,8]]],[23,1,1,8,9,[[747,1,1,8,9]]],[25,1,1,9,10,[[847,1,1,9,10]]]],[2505,6186,6188,6269,6330,6372,11151,16769,19020,21673]]],["inherited",[3,3,[[3,1,1,0,1,[[148,1,1,0,1]]],[5,1,1,1,2,[[200,1,1,1,2]]],[23,1,1,2,3,[[760,1,1,2,3]]]],[4736,6188,19355]]],["inheriteth",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4853]]],["possess",[4,4,[[17,1,1,0,1,[[442,1,1,0,1]]],[22,2,2,1,3,[[692,1,1,1,2],[735,1,1,2,3]]],[35,1,1,3,4,[[907,1,1,3,4]]]],[13011,17930,18778,22814]]],["possession",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17206]]]]},{"k":"H5158","v":[["*",[141,123,[[0,3,3,0,3,[[25,2,2,0,2],[31,1,1,2,3]]],[2,3,3,3,6,[[100,2,2,3,5],[112,1,1,5,6]]],[3,8,8,6,14,[[129,2,2,6,8],[137,3,3,8,11],[140,1,1,11,12],[148,1,1,12,13],[150,1,1,13,14]]],[4,20,15,14,29,[[153,1,1,14,15],[154,7,5,15,20],[155,5,3,20,23],[156,1,1,23,24],[160,1,1,24,25],[161,1,1,25,26],[162,1,1,26,27],[173,3,2,27,29]]],[5,16,10,29,39,[[198,4,2,29,31],[199,4,2,31,33],[201,3,3,33,36],[202,1,1,36,37],[203,3,1,37,38],[205,1,1,38,39]]],[6,6,4,39,43,[[214,2,2,39,41],[215,3,1,41,42],[226,1,1,42,43]]],[8,5,5,43,48,[[250,1,1,43,44],[252,1,1,44,45],[265,3,3,45,48]]],[9,5,5,48,53,[[281,1,1,48,49],[283,1,1,49,50],[288,1,1,50,51],[289,1,1,51,52],[290,1,1,52,53]]],[10,10,10,53,63,[[292,1,1,53,54],[298,1,1,54,55],[305,1,1,55,56],[307,5,5,56,61],[308,2,2,61,63]]],[11,7,6,63,69,[[315,2,2,63,65],[322,1,1,65,66],[335,3,2,66,68],[336,1,1,68,69]]],[12,1,1,69,70,[[348,1,1,69,70]]],[13,7,7,70,77,[[373,1,1,70,71],[381,1,1,71,72],[386,1,1,72,73],[395,1,1,73,74],[396,1,1,74,75],[398,1,1,75,76],[399,1,1,76,77]]],[15,1,1,77,78,[[414,1,1,77,78]]],[17,8,7,78,85,[[441,2,1,78,79],[455,1,1,79,80],[456,1,1,80,81],[457,1,1,81,82],[463,1,1,82,83],[465,1,1,83,84],[475,1,1,84,85]]],[18,8,8,85,93,[[495,1,1,85,86],[513,1,1,86,87],[551,1,1,87,88],[555,1,1,88,89],[560,1,1,89,90],[581,1,1,90,91],[587,1,1,91,92],[601,1,1,92,93]]],[19,2,2,93,95,[[645,1,1,93,94],[657,1,1,94,95]]],[20,2,1,95,96,[[659,2,1,95,96]]],[21,1,1,96,97,[[676,1,1,96,97]]],[22,11,11,97,108,[[685,1,1,97,98],[689,1,1,98,99],[693,1,1,99,100],[705,1,1,100,101],[708,2,2,101,103],[712,1,1,103,104],[713,1,1,104,105],[735,2,2,105,107],[744,1,1,107,108]]],[23,3,3,108,111,[[775,2,2,108,110],[791,1,1,110,111]]],[24,1,1,111,112,[[798,1,1,111,112]]],[25,9,7,112,119,[[848,8,6,112,118],[849,1,1,118,119]]],[28,1,1,119,120,[[878,1,1,119,120]]],[29,2,2,120,122,[[883,1,1,120,121],[884,1,1,121,122]]],[32,1,1,122,123,[[898,1,1,122,123]]]],[709,711,951,3006,3007,3442,4098,4099,4352,4354,4355,4452,4727,4821,4916,4951,4952,4962,4974,4975,4983,4987,4991,5052,5144,5178,5193,5451,5453,6131,6132,6163,6170,6206,6209,6249,6273,6284,6332,6606,6612,6644,6953,7565,7658,7987,7988,7999,8412,8462,8607,8683,8697,8807,9050,9262,9320,9321,9322,9323,9324,9346,9381,9592,9593,9826,10171,10177,10209,10705,11332,11506,11603,11807,11841,11879,11922,12322,12993,13343,13388,13413,13508,13563,13886,14122,14446,15063,15133,15250,15581,15793,16106,16905,17268,17322,17625,17801,17899,17967,18163,18245,18250,18312,18326,18770,18771,18934,19700,19731,20075,20350,21684,21685,21686,21688,21691,21698,21730,22361,22447,22464,22655]]],["+",[8,8,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,1,1,1,2,[[198,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[10,1,1,3,4,[[307,1,1,3,4]]],[11,1,1,4,5,[[336,1,1,4,5]]],[12,1,1,5,6,[[348,1,1,5,6]]],[18,1,1,6,7,[[587,1,1,6,7]]],[20,1,1,7,8,[[659,1,1,7,8]]]],[4983,6131,8683,9321,10209,10705,15793,17322]]],["brook",[35,33,[[0,1,1,0,1,[[31,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[3,2,2,2,4,[[129,2,2,2,4]]],[4,4,3,4,7,[[154,3,2,4,6],[161,1,1,6,7]]],[8,4,4,7,11,[[252,1,1,7,8],[265,3,3,8,11]]],[9,1,1,11,12,[[281,1,1,11,12]]],[10,7,7,12,19,[[292,1,1,12,13],[305,1,1,13,14],[307,4,4,14,18],[308,1,1,18,19]]],[11,3,2,19,21,[[335,3,2,19,21]]],[13,5,5,21,26,[[381,1,1,21,22],[386,1,1,22,23],[395,1,1,23,24],[396,1,1,24,25],[398,1,1,25,26]]],[15,1,1,26,27,[[414,1,1,26,27]]],[17,2,2,27,29,[[441,1,1,27,28],[475,1,1,28,29]]],[18,1,1,29,30,[[560,1,1,29,30]]],[19,1,1,30,31,[[645,1,1,30,31]]],[22,1,1,31,32,[[693,1,1,31,32]]],[23,1,1,32,33,[[775,1,1,32,33]]]],[951,3442,4098,4099,4951,4952,5178,7658,7987,7988,7999,8412,8807,9262,9320,9322,9323,9324,9381,10171,10177,11506,11603,11807,11841,11879,12322,12993,13886,15250,16905,17967,19731]]],["brooks",[7,7,[[3,2,2,0,2,[[137,2,2,0,2]]],[4,1,1,2,3,[[160,1,1,2,3]]],[10,1,1,3,4,[[308,1,1,3,4]]],[17,3,3,4,7,[[441,1,1,4,5],[455,1,1,5,6],[457,1,1,6,7]]]],[4354,4355,5144,9346,12993,13343,13413]]],["flood",[3,3,[[17,1,1,0,1,[[463,1,1,0,1]]],[18,1,1,1,2,[[551,1,1,1,2]]],[23,1,1,2,3,[[791,1,1,2,3]]]],[13508,15063,20075]]],["floods",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8607,14122]]],["river",[45,34,[[3,1,1,0,1,[[150,1,1,0,1]]],[4,8,6,1,7,[[154,4,3,1,4],[155,3,2,4,6],[156,1,1,6,7]]],[5,15,9,7,16,[[198,3,1,7,8],[199,4,2,8,10],[201,3,3,10,13],[202,1,1,13,14],[203,3,1,14,15],[205,1,1,15,16]]],[6,5,3,16,19,[[214,2,2,16,18],[215,3,1,18,19]]],[9,2,2,19,21,[[283,1,1,19,20],[290,1,1,20,21]]],[10,1,1,21,22,[[298,1,1,21,22]]],[11,1,1,22,23,[[322,1,1,22,23]]],[13,1,1,23,24,[[373,1,1,23,24]]],[18,1,1,24,25,[[513,1,1,24,25]]],[24,1,1,25,26,[[798,1,1,25,26]]],[25,8,7,26,33,[[848,7,6,26,32],[849,1,1,32,33]]],[29,1,1,33,34,[[884,1,1,33,34]]]],[4821,4962,4974,4975,4987,4991,5052,6132,6163,6170,6206,6209,6249,6273,6284,6332,6606,6612,6644,8462,8697,9050,9826,11332,14446,20350,21684,21685,21686,21688,21691,21698,21730,22464]]],["rivers",[7,7,[[2,2,2,0,2,[[100,2,2,0,2]]],[4,1,1,2,3,[[162,1,1,2,3]]],[20,1,1,3,4,[[659,1,1,3,4]]],[23,1,1,4,5,[[775,1,1,4,5]]],[25,1,1,5,6,[[848,1,1,5,6]]],[32,1,1,6,7,[[898,1,1,6,7]]]],[3006,3007,5193,17322,19700,21688,22655]]],["stream",[7,7,[[18,1,1,0,1,[[601,1,1,0,1]]],[22,5,5,1,6,[[705,1,1,1,2],[708,2,2,2,4],[735,1,1,4,5],[744,1,1,5,6]]],[29,1,1,6,7,[[883,1,1,6,7]]]],[16106,18163,18245,18250,18771,18934,22447]]],["streams",[4,4,[[18,1,1,0,1,[[555,1,1,0,1]]],[22,3,3,1,4,[[689,1,1,1,2],[712,1,1,2,3],[713,1,1,3,4]]]],[15133,17899,18312,18326]]],["valley",[18,17,[[0,2,2,0,2,[[25,2,2,0,2]]],[3,2,2,2,4,[[137,1,1,2,3],[148,1,1,3,4]]],[4,5,4,4,8,[[153,1,1,4,5],[155,1,1,5,6],[173,3,2,6,8]]],[6,1,1,8,9,[[226,1,1,8,9]]],[8,1,1,9,10,[[250,1,1,9,10]]],[11,2,2,10,12,[[315,2,2,10,12]]],[13,1,1,12,13,[[399,1,1,12,13]]],[17,1,1,13,14,[[456,1,1,13,14]]],[19,1,1,14,15,[[657,1,1,14,15]]],[21,1,1,15,16,[[676,1,1,15,16]]],[28,1,1,16,17,[[878,1,1,16,17]]]],[709,711,4352,4727,4916,4991,5451,5453,6953,7565,9592,9593,11922,13388,17268,17625,22361]]],["valleys",[5,5,[[3,1,1,0,1,[[140,1,1,0,1]]],[17,1,1,1,2,[[465,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[22,2,2,3,5,[[685,1,1,3,4],[735,1,1,4,5]]]],[4452,13563,15581,17801,18770]]]]},{"k":"H5159","v":[["*",[222,191,[[0,2,2,0,2,[[30,1,1,0,1],[47,1,1,1,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[3,46,31,3,34,[[132,1,1,3,4],[134,6,5,4,9],[142,6,4,9,13],[143,6,5,13,18],[148,3,3,18,21],[149,2,1,21,22],[150,3,3,22,25],[151,2,2,25,27],[152,17,7,27,34]]],[4,25,22,34,56,[[156,3,3,34,37],[161,2,2,37,39],[162,2,1,39,40],[164,2,2,40,42],[166,2,2,42,44],[167,1,1,44,45],[170,4,2,45,47],[171,2,2,47,49],[172,1,1,49,50],[173,1,1,50,51],[176,1,1,51,52],[177,1,1,52,53],[178,1,1,53,54],[181,1,1,54,55],[184,1,1,55,56]]],[5,50,43,56,99,[[197,1,1,56,57],[199,9,7,57,64],[200,6,5,64,69],[201,1,1,69,70],[202,3,3,70,73],[203,4,3,73,76],[204,6,5,76,81],[205,15,13,81,94],[207,1,1,94,95],[209,1,1,95,96],[210,3,3,96,99]]],[6,7,6,99,105,[[212,2,2,99,101],[228,2,1,101,102],[230,1,1,102,103],[231,2,2,103,105]]],[7,3,3,105,108,[[235,3,3,105,108]]],[8,2,2,108,110,[[245,1,1,108,109],[261,1,1,109,110]]],[9,4,4,110,114,[[280,1,1,110,111],[286,2,2,111,113],[287,1,1,113,114]]],[10,6,6,114,120,[[298,3,3,114,117],[302,1,1,117,118],[311,2,2,118,120]]],[11,1,1,120,121,[[333,1,1,120,121]]],[12,1,1,121,122,[[353,1,1,121,122]]],[13,2,2,122,124,[[372,1,1,122,123],[376,1,1,123,124]]],[15,1,1,124,125,[[423,1,1,124,125]]],[17,4,4,125,129,[[455,1,1,125,126],[462,1,1,126,127],[466,1,1,127,128],[477,1,1,128,129]]],[18,23,22,129,151,[[479,1,1,129,130],[493,1,1,130,131],[505,1,1,131,132],[510,1,1,132,133],[514,1,1,133,134],[524,1,1,134,135],[545,1,1,135,136],[551,1,1,136,137],[555,3,3,137,140],[556,1,1,140,141],[571,2,2,141,143],[582,1,1,143,144],[583,2,2,144,146],[588,1,1,146,147],[604,1,1,147,148],[612,2,1,148,149],[613,2,2,149,151]]],[19,3,3,151,154,[[644,1,1,151,152],[646,1,1,152,153],[647,1,1,153,154]]],[20,1,1,154,155,[[665,1,1,154,155]]],[22,6,6,155,161,[[697,1,1,155,156],[725,1,1,156,157],[727,1,1,157,158],[732,1,1,158,159],[736,1,1,159,160],[741,1,1,160,161]]],[23,12,12,161,173,[[746,1,1,161,162],[747,1,1,162,163],[754,1,1,163,164],[756,5,5,164,169],[760,1,1,169,170],[761,1,1,170,171],[794,1,1,171,172],[795,1,1,172,173]]],[24,1,1,173,174,[[801,1,1,173,174]]],[25,15,11,174,185,[[836,1,1,174,175],[837,1,1,175,176],[845,2,1,176,177],[846,1,1,177,178],[847,5,3,178,181],[848,4,3,181,184],[849,1,1,184,185]]],[28,2,2,185,187,[[877,1,1,185,186],[878,1,1,186,187]]],[32,3,3,187,190,[[894,1,1,187,188],[899,2,2,188,190]]],[38,1,1,190,191,[[925,1,1,190,191]]]],[887,1457,1937,4208,4277,4278,4280,4281,4283,4542,4543,4545,4551,4561,4562,4563,4564,4565,4736,4737,4750,4814,4818,4830,4831,4847,4853,4881,4882,4883,4886,4887,4888,4891,5024,5025,5042,5183,5186,5195,5249,5252,5317,5319,5323,5385,5386,5416,5420,5443,5470,5529,5566,5567,5687,5767,6130,6160,6161,6162,6168,6177,6182,6187,6189,6190,6196,6200,6201,6222,6270,6273,6274,6279,6281,6289,6295,6297,6300,6313,6321,6322,6323,6329,6330,6331,6337,6344,6352,6360,6362,6369,6370,6372,6384,6464,6504,6506,6508,6551,6554,6994,7060,7125,7126,7195,7196,7200,7419,7924,8372,8555,8573,8583,9021,9036,9038,9167,9454,9455,10133,10838,11309,11411,12608,13355,13494,13590,13937,13953,14098,14308,14378,14468,14629,14909,15050,15168,15175,15184,15186,15436,15445,15617,15656,15691,15799,16124,16187,16217,16218,16875,16939,16975,17440,18029,18605,18644,18740,18800,18883,18972,19021,19217,19256,19257,19258,19263,19264,19354,19361,20177,20231,20444,21359,21371,21627,21631,21671,21672,21673,21693,21701,21702,21731,22328,22345,22597,22678,22682,23092]]],["+",[11,11,[[3,3,3,0,3,[[151,1,1,0,1],[152,2,2,1,3]]],[5,2,2,3,5,[[203,1,1,3,4],[207,1,1,4,5]]],[9,1,1,5,6,[[280,1,1,5,6]]],[18,1,1,6,7,[[556,1,1,6,7]]],[23,1,1,7,8,[[761,1,1,7,8]]],[25,3,3,8,11,[[847,2,2,8,10],[849,1,1,10,11]]]],[4847,4882,4883,6281,6384,8372,15186,19361,21672,21673,21731]]],["heritage",[25,24,[[17,2,2,0,2,[[455,1,1,0,1],[462,1,1,1,2]]],[18,8,7,2,9,[[493,1,1,2,3],[571,1,1,3,4],[588,1,1,4,5],[604,1,1,5,6],[612,2,1,6,7],[613,2,2,7,9]]],[22,2,2,9,11,[[732,1,1,9,10],[736,1,1,10,11]]],[23,7,7,11,18,[[746,1,1,11,12],[747,1,1,12,13],[756,4,4,13,17],[794,1,1,17,18]]],[28,2,2,18,20,[[877,1,1,18,19],[878,1,1,19,20]]],[32,3,3,20,23,[[894,1,1,20,21],[899,2,2,21,23]]],[38,1,1,23,24,[[925,1,1,23,24]]]],[13355,13494,14098,15436,15799,16124,16187,16217,16218,18740,18800,18972,19021,19256,19257,19258,19264,20177,22328,22345,22597,22678,22682,23092]]],["heritages",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18644]]],["inherit",[2,2,[[3,1,1,0,1,[[134,1,1,0,1]]],[5,1,1,1,2,[[203,1,1,1,2]]]],[4281,6289]]],["inheritance",[181,155,[[0,2,2,0,2,[[30,1,1,0,1],[47,1,1,1,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[3,41,29,3,32,[[132,1,1,3,4],[134,5,5,4,9],[142,5,3,9,12],[143,6,5,12,17],[148,3,3,17,20],[149,2,1,20,21],[150,3,3,21,24],[151,1,1,24,25],[152,15,7,25,32]]],[4,25,22,32,54,[[156,3,3,32,35],[161,2,2,35,37],[162,2,1,37,38],[164,2,2,38,40],[166,2,2,40,42],[167,1,1,42,43],[170,4,2,43,45],[171,2,2,45,47],[172,1,1,47,48],[173,1,1,48,49],[176,1,1,49,50],[177,1,1,50,51],[178,1,1,51,52],[181,1,1,52,53],[184,1,1,53,54]]],[5,46,39,54,93,[[197,1,1,54,55],[199,9,7,55,62],[200,6,5,62,67],[201,1,1,67,68],[202,3,3,68,71],[203,2,1,71,72],[204,6,5,72,77],[205,14,12,77,89],[209,1,1,89,90],[210,3,3,90,93]]],[6,7,6,93,99,[[212,2,2,93,95],[228,2,1,95,96],[230,1,1,96,97],[231,2,2,97,99]]],[7,3,3,99,102,[[235,3,3,99,102]]],[8,2,2,102,104,[[245,1,1,102,103],[261,1,1,103,104]]],[9,3,3,104,107,[[286,2,2,104,106],[287,1,1,106,107]]],[10,6,6,107,113,[[298,3,3,107,110],[302,1,1,110,111],[311,2,2,111,113]]],[11,1,1,113,114,[[333,1,1,113,114]]],[12,1,1,114,115,[[353,1,1,114,115]]],[13,2,2,115,117,[[372,1,1,115,116],[376,1,1,116,117]]],[15,1,1,117,118,[[423,1,1,117,118]]],[17,2,2,118,120,[[466,1,1,118,119],[477,1,1,119,120]]],[18,14,14,120,134,[[479,1,1,120,121],[505,1,1,121,122],[510,1,1,122,123],[514,1,1,123,124],[524,1,1,124,125],[545,1,1,125,126],[551,1,1,126,127],[555,3,3,127,130],[571,1,1,130,131],[582,1,1,131,132],[583,2,2,132,134]]],[19,3,3,134,137,[[644,1,1,134,135],[646,1,1,135,136],[647,1,1,136,137]]],[20,1,1,137,138,[[665,1,1,137,138]]],[22,3,3,138,141,[[697,1,1,138,139],[725,1,1,139,140],[741,1,1,140,141]]],[23,4,4,141,145,[[754,1,1,141,142],[756,1,1,142,143],[760,1,1,143,144],[795,1,1,144,145]]],[24,1,1,145,146,[[801,1,1,145,146]]],[25,12,9,146,155,[[836,1,1,146,147],[837,1,1,147,148],[845,2,1,148,149],[846,1,1,149,150],[847,3,2,150,152],[848,4,3,152,155]]]],[887,1457,1937,4208,4277,4278,4280,4281,4283,4542,4543,4551,4561,4562,4563,4564,4565,4736,4737,4750,4814,4818,4830,4831,4853,4881,4882,4883,4886,4887,4888,4891,5024,5025,5042,5183,5186,5195,5249,5252,5317,5319,5323,5385,5386,5416,5420,5443,5470,5529,5566,5567,5687,5767,6130,6160,6161,6162,6168,6177,6182,6187,6189,6190,6196,6200,6201,6222,6270,6273,6274,6279,6295,6297,6300,6313,6321,6322,6323,6329,6330,6331,6337,6344,6352,6360,6362,6369,6370,6464,6504,6506,6508,6551,6554,6994,7060,7125,7126,7195,7196,7200,7419,7924,8555,8573,8583,9021,9036,9038,9167,9454,9455,10133,10838,11309,11411,12608,13590,13937,13953,14308,14378,14468,14629,14909,15050,15168,15175,15184,15445,15617,15656,15691,16875,16939,16975,17440,18029,18605,18883,19217,19263,19354,20231,20444,21359,21371,21627,21631,21671,21672,21693,21701,21702]]],["inheritances",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6372]]],["possession",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4545]]]]},{"k":"H5160","v":[["*",[2,1,[[3,2,1,0,1,[[137,2,1,0,1]]]],[4359]]],["+",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4359]]],["Nahaliel",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4359]]]]},{"k":"H5161","v":[["Nehelamite",[3,3,[[23,3,3,0,3,[[773,3,3,0,3]]]],[19659,19666,19667]]]]},{"k":"H5162","v":[["*",[108,100,[[0,9,8,0,8,[[4,1,1,0,1],[5,2,2,1,3],[23,1,1,3,4],[26,1,1,4,5],[36,2,1,5,6],[37,1,1,6,7],[49,1,1,7,8]]],[1,3,3,8,11,[[62,1,1,8,9],[81,2,2,9,11]]],[3,1,1,11,12,[[139,1,1,11,12]]],[4,1,1,12,13,[[184,1,1,12,13]]],[6,3,3,13,16,[[212,1,1,13,14],[231,2,2,14,16]]],[7,1,1,16,17,[[233,1,1,16,17]]],[8,4,3,17,20,[[250,4,3,17,20]]],[9,5,5,20,25,[[276,2,2,20,22],[278,1,1,22,23],[279,1,1,23,24],[290,1,1,24,25]]],[12,5,4,25,29,[[344,1,1,25,26],[356,3,2,26,28],[358,1,1,28,29]]],[17,7,7,29,36,[[437,1,1,29,30],[442,1,1,30,31],[451,1,1,31,32],[456,1,1,32,33],[464,1,1,33,34],[477,2,2,34,36]]],[18,12,12,36,48,[[500,1,1,36,37],[546,1,1,37,38],[548,1,1,38,39],[554,1,1,39,40],[563,1,1,40,41],[567,1,1,41,42],[583,1,1,42,43],[587,1,1,43,44],[596,3,3,44,47],[612,1,1,47,48]]],[20,2,1,48,49,[[662,2,1,48,49]]],[22,17,13,49,62,[[679,1,1,49,50],[690,1,1,50,51],[700,1,1,51,52],[718,2,1,52,53],[727,1,1,53,54],[729,4,3,54,57],[730,1,1,57,58],[732,1,1,58,59],[735,1,1,59,60],[739,1,1,60,61],[744,3,1,61,62]]],[23,14,14,62,76,[[748,1,1,62,63],[752,1,1,63,64],[759,1,1,64,65],[760,1,1,65,66],[762,2,2,66,68],[764,1,1,68,69],[770,3,3,69,72],[775,3,3,72,75],[786,1,1,75,76]]],[24,6,6,76,82,[[797,5,5,76,81],[798,1,1,81,82]]],[25,7,7,82,89,[[806,1,1,82,83],[815,2,2,83,85],[817,1,1,85,86],[825,1,1,86,87],[832,1,1,87,88],[833,1,1,88,89]]],[28,2,2,89,91,[[877,2,2,89,91]]],[29,2,2,91,93,[[885,2,2,91,93]]],[31,3,3,93,96,[[891,2,2,93,95],[892,1,1,95,96]]],[33,1,1,96,97,[[902,1,1,96,97]]],[37,3,3,97,100,[[911,1,1,97,98],[918,1,1,98,99],[920,1,1,99,100]]]],[134,143,144,658,769,1118,1131,1527,1884,2450,2452,4435,5794,6563,7108,7117,7162,7571,7589,7595,8242,8243,8310,8356,8708,10557,10909,10910,10949,12902,13021,13240,13389,13557,13928,13933,14239,14955,14997,15095,15301,15391,15696,15790,15950,15974,15980,16189,17382,17678,17901,18056,18421,18649,18676,18685,18692,18705,18734,18771,18845,18935,19055,19159,19321,19343,19392,19394,19438,19575,19585,19591,19704,19706,19710,19985,20312,20319,20326,20327,20331,20345,20559,20753,20754,20816,21070,21246,21279,22324,22325,22467,22470,22567,22568,22570,22719,22895,22990,23018]]],["+",[2,2,[[9,1,1,0,1,[[278,1,1,0,1]]],[37,1,1,1,2,[[911,1,1,1,2]]]],[8310,22895]]],["Comfort",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18421]]],["comfort",[30,28,[[0,2,2,0,2,[[4,1,1,0,1],[36,1,1,1,2]]],[9,1,1,2,3,[[276,1,1,2,3]]],[12,3,2,3,5,[[344,1,1,3,4],[356,2,1,4,5]]],[17,3,3,5,8,[[437,1,1,5,6],[442,1,1,6,7],[456,1,1,7,8]]],[18,4,4,8,12,[[500,1,1,8,9],[548,1,1,9,10],[596,2,2,10,12]]],[22,8,7,12,19,[[700,1,1,12,13],[718,1,1,13,14],[729,3,2,14,16],[735,1,1,16,17],[739,1,1,17,18],[744,1,1,18,19]]],[23,2,2,19,21,[[760,1,1,19,20],[775,1,1,20,21]]],[24,4,4,21,25,[[797,3,3,21,24],[798,1,1,24,25]]],[25,2,2,25,27,[[815,1,1,25,26],[817,1,1,26,27]]],[37,1,1,27,28,[[920,1,1,27,28]]]],[134,1118,8242,10557,10909,12902,13021,13389,14239,14997,15974,15980,18056,18421,18676,18692,18771,18845,18935,19343,19704,20312,20327,20331,20345,20754,20816,23018]]],["comforted",[18,18,[[0,4,4,0,4,[[23,1,1,0,1],[36,1,1,1,2],[37,1,1,2,3],[49,1,1,3,4]]],[7,1,1,4,5,[[233,1,1,4,5]]],[9,1,1,5,6,[[279,1,1,5,6]]],[17,1,1,6,7,[[477,1,1,6,7]]],[18,2,2,7,9,[[554,1,1,7,8],[563,1,1,8,9]]],[22,4,4,9,13,[[727,1,1,9,10],[730,1,1,10,11],[732,1,1,11,12],[744,1,1,12,13]]],[23,1,1,13,14,[[775,1,1,13,14]]],[25,4,4,14,18,[[806,1,1,14,15],[815,1,1,15,16],[832,1,1,16,17],[833,1,1,17,18]]]],[658,1118,1131,1527,7162,8356,13933,15095,15301,18649,18705,18734,18935,19706,20559,20753,21246,21279]]],["comfortedst",[1,1,[[22,1,1,0,1,[[690,1,1,0,1]]]],[17901]]],["comforter",[4,3,[[20,2,1,0,1,[[662,2,1,0,1]]],[24,2,2,1,3,[[797,2,2,1,3]]]],[17382,20319,20326]]],["comforters",[5,5,[[9,1,1,0,1,[[276,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]],[17,1,1,2,3,[[451,1,1,2,3]]],[18,1,1,3,4,[[546,1,1,3,4]]],[33,1,1,4,5,[[902,1,1,4,5]]]],[8243,10910,13240,14955,22719]]],["comforteth",[3,3,[[17,1,1,0,1,[[464,1,1,0,1]]],[22,2,2,1,3,[[729,1,1,1,2],[744,1,1,2,3]]]],[13557,18685,18935]]],["ease",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17678]]],["him",[2,2,[[9,1,1,0,1,[[290,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]]],[8708,10949]]],["himself",[3,3,[[0,1,1,0,1,[[26,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[18,1,1,2,3,[[612,1,1,2,3]]]],[769,5794,16189]]],["me",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7571]]],["myself",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15950]]],["repent",[17,16,[[1,2,2,0,2,[[62,1,1,0,1],[81,1,1,1,2]]],[3,1,1,2,3,[[139,1,1,2,3]]],[8,2,1,3,4,[[250,2,1,3,4]]],[17,1,1,4,5,[[477,1,1,4,5]]],[18,2,2,5,7,[[567,1,1,5,6],[587,1,1,6,7]]],[23,6,6,7,13,[[748,1,1,7,8],[762,2,2,8,10],[770,2,2,10,12],[786,1,1,12,13]]],[25,1,1,13,14,[[825,1,1,13,14]]],[28,1,1,14,15,[[877,1,1,14,15]]],[31,1,1,15,16,[[891,1,1,15,16]]]],[1884,2450,4435,7589,13928,15391,15790,19055,19392,19394,19575,19585,19985,21070,22325,22567]]],["repented",[14,14,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,1,1,1,2,[[81,1,1,1,2]]],[6,2,2,2,4,[[212,1,1,2,3],[231,1,1,3,4]]],[8,1,1,4,5,[[250,1,1,4,5]]],[18,1,1,5,6,[[583,1,1,5,6]]],[23,4,4,6,10,[[752,1,1,6,7],[764,1,1,7,8],[770,1,1,8,9],[775,1,1,9,10]]],[29,2,2,10,12,[[885,2,2,10,12]]],[31,1,1,12,13,[[891,1,1,12,13]]],[37,1,1,13,14,[[918,1,1,13,14]]]],[143,2452,6563,7108,7595,15696,19159,19438,19591,19710,22467,22470,22568,22990]]],["repentest",[1,1,[[31,1,1,0,1,[[892,1,1,0,1]]]],[22570]]],["repenteth",[2,2,[[0,1,1,0,1,[[5,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[144,22324]]],["repenting",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19321]]],["them",[1,1,[[6,1,1,0,1,[[231,1,1,0,1]]]],[7117]]]]},{"k":"H5163","v":[["Naham",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10404]]]]},{"k":"H5164","v":[["repentance",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22280]]]]},{"k":"H5165","v":[["comfort",[2,2,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[12988,15948]]]]},{"k":"H5166","v":[["Nehemiah",[8,8,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,7,7,1,8,[[413,1,1,1,2],[415,1,1,2,3],[419,1,1,3,4],[420,1,1,4,5],[422,1,1,5,6],[424,2,2,6,8]]]],[12029,12297,12343,12427,12502,12550,12650,12671]]]]},{"k":"H5167","v":[["Nahamani",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12427]]]]},{"k":"H5168","v":[["*",[5,5,[[0,1,1,0,1,[[41,1,1,0,1]]],[1,2,2,1,3,[[65,2,2,1,3]]],[3,1,1,3,4,[[148,1,1,3,4]]],[24,1,1,4,5,[[799,1,1,4,5]]]],[1263,1954,1955,4750,20396]]],["We",[3,3,[[0,1,1,0,1,[[41,1,1,0,1]]],[3,1,1,1,2,[[148,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]]],[1263,4750,20396]]],["we",[2,2,[[1,2,2,0,2,[[65,2,2,0,2]]]],[1954,1955]]]]},{"k":"H5169","v":[["haste",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7780]]]]},{"k":"H5170","v":[["*",[2,2,[[17,1,1,0,1,[[474,1,1,0,1]]],[23,1,1,1,2,[[752,1,1,1,2]]]],[13854,19169]]],["nostrils",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13854]]],["snorting",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19169]]]]},{"k":"H5171","v":[["Naharai",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8690,10712]]]]},{"k":"H5172","v":[["*",[11,9,[[0,5,3,0,3,[[29,1,1,0,1],[43,4,2,1,3]]],[2,1,1,3,4,[[108,1,1,3,4]]],[4,1,1,4,5,[[170,1,1,4,5]]],[10,1,1,5,6,[[310,1,1,5,6]]],[11,2,2,6,8,[[329,1,1,6,7],[333,1,1,7,8]]],[13,1,1,8,9,[[399,1,1,8,9]]]],[857,1329,1339,3307,5394,9441,10000,10125,11914]]],["+",[4,2,[[0,4,2,0,2,[[43,4,2,0,2]]]],[1329,1339]]],["enchanter",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5394]]],["enchantment",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3307]]],["enchantments",[3,3,[[11,2,2,0,2,[[329,1,1,0,1],[333,1,1,1,2]]],[13,1,1,2,3,[[399,1,1,2,3]]]],[10000,10125,11914]]],["experience",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[857]]],["observe",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9441]]]]},{"k":"H5173","v":[["*",[2,2,[[3,2,2,0,2,[[139,1,1,0,1],[140,1,1,1,2]]]],[4439,4447]]],["enchantment",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4439]]],["enchantments",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4447]]]]},{"k":"H5174","v":[["brass",[9,9,[[26,9,9,0,9,[[851,4,4,0,4],[853,2,2,4,6],[854,2,2,6,8],[856,1,1,8,9]]]],[21790,21793,21797,21803,21852,21860,21878,21897,21952]]]]},{"k":"H5175","v":[["*",[31,28,[[0,6,6,0,6,[[2,5,5,0,5],[48,1,1,5,6]]],[1,2,2,6,8,[[53,1,1,6,7],[56,1,1,7,8]]],[3,5,3,8,11,[[137,5,3,8,11]]],[4,1,1,11,12,[[160,1,1,11,12]]],[11,1,1,12,13,[[330,1,1,12,13]]],[17,1,1,13,14,[[461,1,1,13,14]]],[18,2,2,14,16,[[535,1,1,14,15],[617,1,1,15,16]]],[19,2,2,16,18,[[650,1,1,16,17],[657,1,1,17,18]]],[20,2,2,18,20,[[668,2,2,18,20]]],[22,4,3,20,23,[[692,1,1,20,21],[705,2,1,21,22],[743,1,1,22,23]]],[23,2,2,23,25,[[752,1,1,23,24],[790,1,1,24,25]]],[29,2,2,25,27,[[883,1,1,25,26],[887,1,1,26,27]]],[32,1,1,27,28,[[899,1,1,27,28]]]],[56,57,59,68,69,1490,1604,1700,4346,4347,4349,5152,10028,13480,14783,16266,17076,17270,17501,17504,17957,18152,18922,19170,20067,22442,22498,22681]]],["+",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17957]]],["serpent",[25,22,[[0,6,6,0,6,[[2,5,5,0,5],[48,1,1,5,6]]],[1,2,2,6,8,[[53,1,1,6,7],[56,1,1,7,8]]],[3,3,1,8,9,[[137,3,1,8,9]]],[11,1,1,9,10,[[330,1,1,9,10]]],[17,1,1,10,11,[[461,1,1,10,11]]],[18,2,2,11,13,[[535,1,1,11,12],[617,1,1,12,13]]],[19,2,2,13,15,[[650,1,1,13,14],[657,1,1,14,15]]],[20,2,2,15,17,[[668,2,2,15,17]]],[22,2,1,17,18,[[705,2,1,17,18]]],[23,1,1,18,19,[[790,1,1,18,19]]],[29,2,2,19,21,[[883,1,1,19,20],[887,1,1,20,21]]],[32,1,1,21,22,[[899,1,1,21,22]]]],[56,57,59,68,69,1490,1604,1700,4349,10028,13480,14783,16266,17076,17270,17501,17504,18152,20067,22442,22498,22681]]],["serpent's",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18922]]],["serpents",[4,4,[[3,2,2,0,2,[[137,2,2,0,2]]],[4,1,1,2,3,[[160,1,1,2,3]]],[23,1,1,3,4,[[752,1,1,3,4]]]],[4346,4347,5152,19170]]]]},{"k":"H5176","v":[["Nahash",[9,8,[[8,4,3,0,3,[[246,3,2,0,2],[247,1,1,2,3]]],[9,3,3,3,6,[[276,1,1,3,4],[283,2,2,4,6]]],[12,2,2,6,8,[[356,2,2,6,8]]]],[7446,7447,7472,8242,8474,8476,10908,10909]]]]},{"k":"H5177","v":[["*",[10,9,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,5,5,1,6,[[117,1,1,1,2],[118,1,1,2,3],[123,2,2,3,5],[126,1,1,5,6]]],[7,2,1,6,7,[[235,2,1,6,7]]],[12,2,2,7,9,[[339,2,2,7,9]]]],[1678,3611,3661,3862,3867,4002,7210,10316,10317]]],["Naashon",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1678]]],["Nahshon",[9,8,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]],[7,2,1,5,6,[[235,2,1,5,6]]],[12,2,2,6,8,[[339,2,2,6,8]]]],[3611,3661,3862,3867,4002,7210,10316,10317]]]]},{"k":"H5178","v":[["*",[140,119,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,39,34,1,35,[[74,1,1,1,2],[75,2,2,2,4],[76,10,9,4,13],[79,2,1,13,14],[80,1,1,14,15],[84,4,4,15,19],[85,2,2,19,21],[87,15,13,21,34],[88,2,1,34,35]]],[2,1,1,35,36,[[95,1,1,35,36]]],[3,4,3,36,39,[[132,1,1,36,37],[137,2,1,37,38],[147,1,1,38,39]]],[4,3,3,39,42,[[160,1,1,39,40],[180,1,1,40,41],[185,1,1,41,42]]],[5,3,3,42,45,[[192,2,2,42,44],[208,1,1,44,45]]],[6,1,1,45,46,[[226,1,1,45,46]]],[8,5,3,46,49,[[252,5,3,46,49]]],[9,4,4,49,53,[[269,1,1,49,50],[274,2,2,50,52],[287,1,1,52,53]]],[10,13,11,53,64,[[294,1,1,53,54],[297,10,8,54,62],[298,1,1,62,63],[304,1,1,63,64]]],[11,12,9,64,73,[[328,3,3,64,67],[330,1,1,67,68],[337,8,5,68,73]]],[12,11,8,73,81,[[352,1,1,73,74],[355,4,2,74,76],[359,3,3,76,79],[366,3,2,79,81]]],[13,14,14,81,95,[[367,2,2,81,83],[368,2,2,83,85],[370,4,4,85,89],[372,1,1,89,90],[373,1,1,90,91],[378,1,1,91,92],[390,1,1,92,93],[399,1,1,93,94],[402,1,1,94,95]]],[14,1,1,95,96,[[410,1,1,95,96]]],[18,1,1,96,97,[[584,1,1,96,97]]],[22,2,1,97,98,[[738,2,1,97,98]]],[23,14,10,98,108,[[745,1,1,98,99],[750,1,1,99,100],[759,2,2,100,102],[783,1,1,102,103],[796,9,5,103,108]]],[24,1,1,108,109,[[799,1,1,108,109]]],[25,8,8,109,117,[[802,1,1,109,110],[810,1,1,110,111],[817,1,1,111,112],[823,2,2,112,114],[825,1,1,114,115],[828,1,1,115,116],[841,1,1,116,117]]],[26,1,1,117,118,[[859,1,1,117,118]]],[37,1,1,118,119,[[916,1,1,118,119]]]],[101,2198,2246,2272,2274,2275,2276,2278,2282,2283,2289,2290,2291,2400,2424,2536,2547,2555,2563,2584,2604,2635,2636,2637,2638,2639,2641,2643,2644,2650,2652,2653,2662,2663,2703,2877,4233,4349,4686,5146,5634,5835,5968,5973,6434,6970,7623,7624,7656,8115,8217,8219,8596,8857,8948,8949,8950,8961,8964,8972,8979,8981,9049,9245,9977,9978,9980,10028,10229,10235,10236,10238,10239,10810,10898,10900,10967,10978,10980,11166,11171,11199,11200,11218,11225,11247,11255,11262,11264,11295,11331,11447,11689,11919,11999,12228,15715,18838,18964,19117,19327,19335,19930,20287,20293,20294,20296,20298,20361,20471,20624,20798,20994,20996,21067,21134,21480,22021,22948]]],["+",[3,3,[[1,1,1,0,1,[[88,1,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]]],[2703,4686,20361]]],["brasen",[28,27,[[1,7,6,0,6,[[76,1,1,0,1],[84,1,1,1,2],[87,4,3,2,5],[88,1,1,5,6]]],[2,1,1,6,7,[[95,1,1,6,7]]],[3,1,1,7,8,[[132,1,1,7,8]]],[10,4,4,8,12,[[294,1,1,8,9],[297,1,1,9,10],[298,1,1,10,11],[304,1,1,11,12]]],[11,5,5,12,17,[[328,3,3,12,15],[330,1,1,15,16],[337,1,1,16,17]]],[12,1,1,17,18,[[355,1,1,17,18]]],[13,4,4,18,22,[[367,2,2,18,20],[372,1,1,20,21],[373,1,1,21,22]]],[23,4,4,22,26,[[745,1,1,22,23],[759,1,1,23,24],[796,2,2,24,26]]],[25,1,1,26,27,[[810,1,1,26,27]]]],[2276,2547,2637,2643,2663,2703,2877,4233,8857,8964,9049,9245,9977,9978,9980,10028,10235,10898,11199,11200,11295,11331,18964,19335,20293,20296,20624]]],["brass",[101,88,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,31,29,1,30,[[74,1,1,1,2],[75,2,2,2,4],[76,9,9,4,13],[79,2,1,13,14],[80,1,1,14,15],[84,3,3,15,18],[85,2,2,18,20],[87,11,10,20,30]]],[3,2,1,30,31,[[137,2,1,30,31]]],[4,3,3,31,34,[[160,1,1,31,32],[180,1,1,32,33],[185,1,1,33,34]]],[5,3,3,34,37,[[192,2,2,34,36],[208,1,1,36,37]]],[6,1,1,37,38,[[226,1,1,37,38]]],[8,5,3,38,41,[[252,5,3,38,41]]],[9,3,3,41,44,[[274,2,2,41,43],[287,1,1,43,44]]],[10,9,8,44,52,[[297,9,8,44,52]]],[11,7,5,52,57,[[337,7,5,52,57]]],[12,10,8,57,65,[[352,1,1,57,58],[355,3,2,58,60],[359,3,3,60,63],[366,3,2,63,65]]],[13,8,8,65,73,[[368,2,2,65,67],[370,4,4,67,71],[378,1,1,71,72],[390,1,1,72,73]]],[18,1,1,73,74,[[584,1,1,73,74]]],[22,2,1,74,75,[[738,2,1,74,75]]],[23,7,5,75,80,[[750,1,1,75,76],[796,6,4,76,80]]],[25,6,6,80,86,[[802,1,1,80,81],[823,2,2,81,83],[825,1,1,83,84],[828,1,1,84,85],[841,1,1,85,86]]],[26,1,1,86,87,[[859,1,1,86,87]]],[37,1,1,87,88,[[916,1,1,87,88]]]],[101,2198,2246,2272,2274,2275,2276,2278,2282,2283,2289,2290,2291,2400,2424,2536,2555,2563,2584,2604,2635,2636,2638,2639,2641,2644,2650,2652,2653,2662,4349,5146,5634,5835,5968,5973,6434,6970,7623,7624,7656,8217,8219,8596,8948,8949,8950,8961,8964,8972,8979,8981,10229,10235,10236,10238,10239,10810,10898,10900,10967,10978,10980,11166,11171,11218,11225,11247,11255,11262,11264,11447,11689,15715,18838,19117,20293,20294,20296,20298,20471,20994,20996,21067,21134,21480,22021,22948]]],["chains",[2,2,[[23,2,2,0,2,[[783,1,1,0,1],[796,1,1,1,2]]]],[19930,20287]]],["copper",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12228]]],["fetters",[3,3,[[9,1,1,0,1,[[269,1,1,0,1]]],[13,2,2,1,3,[[399,1,1,1,2],[402,1,1,2,3]]]],[8115,11919,11999]]],["filthiness",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20798]]],["steel",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19327]]]]},{"k":"H5179","v":[["Nehushta",[1,1,[[11,1,1,0,1,[[336,1,1,0,1]]]],[10210]]]]},{"k":"H5180","v":[["Nehushtan",[1,1,[[11,1,1,0,1,[[330,1,1,0,1]]]],[10028]]]]},{"k":"H5181","v":[["*",[9,8,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[456,1,1,1,2]]],[18,4,3,2,5,[[495,1,1,2,3],[515,2,1,3,4],[542,1,1,4,5]]],[19,1,1,5,6,[[644,1,1,5,6]]],[23,1,1,6,7,[[765,1,1,6,7]]],[28,1,1,7,8,[[878,1,1,7,8]]]],[8637,13368,14152,14492,14870,16883,19453,22354]]],["+",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14492]]],["broken",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8637,14152]]],["down",[3,3,[[17,1,1,0,1,[[456,1,1,0,1]]],[23,1,1,1,2,[[765,1,1,1,2]]],[28,1,1,2,3,[[878,1,1,2,3]]]],[13368,19453,22354]]],["fast",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14492]]],["more",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16883]]],["settlest",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14870]]]]},{"k":"H5182","v":[["*",[6,6,[[14,3,3,0,3,[[407,1,1,0,1],[408,2,2,1,3]]],[26,3,3,3,6,[[853,2,2,3,5],[854,1,1,5,6]]]],[12149,12152,12156,21850,21860,21894]]],["carry",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12149]]],["deposed",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21894]]],["down",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21850,21860]]],["place",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12156]]],["up",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12152]]]]},{"k":"H5183","v":[["*",[8,8,[[17,2,2,0,2,[[452,1,1,0,1],[471,1,1,1,2]]],[19,1,1,2,3,[[656,1,1,2,3]]],[20,3,3,3,6,[[662,1,1,3,4],[664,1,1,4,5],[667,1,1,5,6]]],[22,2,2,6,8,[[708,2,2,6,8]]]],[13276,13752,17233,17387,17422,17492,18232,18247]]],["down",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18247]]],["quiet",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17492]]],["quietness",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17387]]],["rest",[4,4,[[17,1,1,0,1,[[452,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]],[20,1,1,2,3,[[664,1,1,2,3]]],[22,1,1,3,4,[[708,1,1,3,4]]]],[13276,17233,17422,18232]]],["set",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13752]]]]},{"k":"H5184","v":[["Nahath",[5,5,[[0,2,2,0,2,[[35,2,2,0,2]]],[12,2,2,2,4,[[338,1,1,2,3],[343,1,1,3,4]]],[13,1,1,4,5,[[397,1,1,4,5]]]],[1053,1057,10289,10480,11867]]]]},{"k":"H5185","v":[["down",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9683]]]]},{"k":"H5186","v":[["*",[214,207,[[0,9,9,0,9,[[11,1,1,0,1],[23,1,1,1,2],[25,1,1,2,3],[32,1,1,3,4],[34,1,1,4,5],[37,2,2,5,7],[38,1,1,7,8],[48,1,1,8,9]]],[1,22,21,9,30,[[55,1,1,9,10],[56,2,2,10,12],[57,4,4,12,16],[58,2,2,16,18],[59,4,4,18,22],[63,4,4,22,26],[64,1,1,26,27],[72,3,2,27,29],[82,1,1,29,30]]],[3,10,8,30,38,[[136,2,2,30,32],[137,2,2,32,34],[138,5,3,34,37],[140,1,1,37,38]]],[4,9,9,38,47,[[156,1,1,38,39],[157,1,1,39,40],[159,1,1,40,41],[161,1,1,41,42],[163,1,1,42,43],[168,1,1,43,44],[176,1,1,44,45],[178,1,1,45,46],[179,1,1,46,47]]],[5,5,4,47,51,[[194,4,3,47,50],[210,1,1,50,51]]],[6,4,4,51,55,[[214,1,1,51,52],[219,1,1,52,53],[226,1,1,53,54],[229,1,1,54,55]]],[8,3,2,55,57,[[243,2,1,55,56],[249,1,1,56,57]]],[9,9,9,57,66,[[268,2,2,57,59],[269,1,1,59,60],[272,2,2,60,62],[282,1,1,62,63],[285,1,1,63,64],[287,1,1,64,65],[288,1,1,65,66]]],[10,8,7,66,73,[[292,2,1,66,67],[298,2,2,67,69],[301,4,4,69,73]]],[11,4,4,73,77,[[329,1,1,73,74],[331,1,1,74,75],[332,1,1,75,76],[333,1,1,76,77]]],[12,5,5,77,82,[[350,1,1,77,78],[352,1,1,78,79],[353,1,1,79,80],[358,2,2,80,82]]],[13,2,2,82,84,[[367,1,1,82,83],[372,1,1,83,84]]],[14,2,2,84,86,[[409,1,1,84,85],[411,1,1,85,86]]],[17,9,9,86,95,[[444,1,1,86,87],[450,2,2,87,89],[458,1,1,89,90],[459,1,1,90,91],[461,1,1,91,92],[466,1,1,92,93],[471,1,1,93,94],[473,1,1,94,95]]],[18,29,29,95,124,[[494,2,2,95,97],[495,1,1,97,98],[498,1,1,98,99],[504,1,1,99,100],[508,1,1,100,101],[517,1,1,101,102],[521,1,1,102,103],[522,1,1,103,104],[526,1,1,104,105],[539,1,1,105,106],[548,1,1,106,107],[550,1,1,107,108],[555,1,1,108,109],[563,1,1,109,110],[565,1,1,110,111],[579,2,2,111,113],[581,1,1,113,114],[586,1,1,114,115],[593,1,1,115,116],[596,4,4,116,120],[602,1,1,120,121],[613,1,1,121,122],[618,1,1,122,123],[621,1,1,123,124]]],[19,12,12,124,136,[[628,1,1,124,125],[629,1,1,125,126],[631,3,3,126,129],[632,2,2,129,131],[634,1,1,131,132],[644,1,1,132,133],[645,1,1,133,134],[648,1,1,134,135],[649,1,1,135,136]]],[22,26,25,136,161,[[681,1,1,136,137],[683,2,1,137,138],[687,3,3,138,141],[688,2,2,141,143],[692,2,2,143,145],[701,1,1,145,146],[707,1,1,146,147],[708,1,1,147,148],[709,1,1,148,149],[712,1,1,149,150],[715,1,1,150,151],[718,1,1,151,152],[720,1,1,152,153],[722,3,3,153,156],[723,1,1,156,157],[729,1,1,157,158],[732,1,1,158,159],[733,1,1,159,160],[744,1,1,160,161]]],[23,22,22,161,183,[[749,1,1,161,162],[750,2,2,162,164],[751,2,2,164,166],[754,2,2,166,168],[755,1,1,168,169],[758,1,1,169,170],[759,1,1,170,171],[761,1,1,171,172],[765,1,1,172,173],[769,1,1,173,174],[771,1,1,174,175],[776,2,2,175,177],[778,1,1,177,178],[779,1,1,178,179],[787,1,1,179,180],[788,1,1,180,181],[795,2,2,181,183]]],[24,2,2,183,185,[[798,1,1,183,184],[799,1,1,184,185]]],[25,12,12,185,197,[[802,1,1,185,186],[807,1,1,186,187],[815,2,2,187,189],[817,1,1,189,190],[821,2,2,190,192],[826,3,3,192,195],[831,1,1,195,196],[836,1,1,196,197]]],[26,1,1,197,198,[[858,1,1,197,198]]],[27,1,1,198,199,[[872,1,1,198,199]]],[29,3,3,199,202,[[880,2,2,199,201],[883,1,1,201,202]]],[35,2,2,202,204,[[906,1,1,202,203],[907,1,1,203,204]]],[37,2,2,204,206,[[911,1,1,204,205],[922,1,1,205,206]]],[38,1,1,206,207,[[927,1,1,206,207]]]],[306,605,717,979,1032,1120,1135,1170,1488,1661,1690,1704,1715,1716,1726,1727,1764,1765,1789,1790,1798,1799,1905,1910,1915,1916,1932,2146,2150,2480,4328,4332,4355,4362,4398,4401,4408,4452,5038,5068,5130,5186,5210,5361,5542,5574,5604,6020,6021,6028,6499,6610,6757,6979,7032,7372,7515,8068,8070,8108,8167,8174,8448,8525,8590,8612,8798,9027,9043,9110,9111,9112,9117,10019,10077,10108,10132,10773,10792,10821,10944,10950,11198,11314,12201,12246,13059,13228,13232,13430,13440,13474,13595,13754,13798,14109,14114,14127,14202,14294,14333,14526,14589,14607,14652,14830,14978,15022,15114,15285,15310,15523,15532,15573,15778,15850,15934,15949,16010,16055,16115,16208,16280,16310,16424,16435,16495,16510,16517,16518,16530,16596,16896,16906,16985,17032,17723,17764,17841,17846,17850,17852,17854,17954,17955,18088,18214,18228,18253,18314,18369,18442,18485,18546,18553,18557,18573,18686,18725,18743,18934,19083,19093,19101,19143,19145,19213,19221,19234,19301,19321,19380,19445,19538,19601,19748,19752,19815,19838,20007,20015,20227,20237,20340,20389,20486,20577,20740,20744,20789,20928,20929,21090,21096,21099,21229,21347,22006,22244,22386,22387,22435,22791,22818,22894,23046,23125]]],["+",[39,39,[[0,1,1,0,1,[[38,1,1,0,1]]],[1,13,13,1,14,[[56,1,1,1,2],[57,4,4,2,6],[58,2,2,6,8],[59,2,2,8,10],[63,4,4,10,14]]],[5,1,1,14,15,[[210,1,1,14,15]]],[6,2,2,15,17,[[219,1,1,15,16],[229,1,1,16,17]]],[9,1,1,17,18,[[285,1,1,17,18]]],[10,3,3,18,21,[[301,3,3,18,21]]],[12,1,1,21,22,[[358,1,1,21,22]]],[18,1,1,22,23,[[504,1,1,22,23]]],[23,12,12,23,35,[[750,1,1,23,24],[751,2,2,24,26],[755,1,1,26,27],[759,1,1,27,28],[761,1,1,28,29],[769,1,1,29,30],[778,1,1,30,31],[779,1,1,31,32],[787,1,1,32,33],[788,1,1,33,34],[795,1,1,34,35]]],[25,4,4,35,39,[[807,1,1,35,36],[815,1,1,36,37],[826,1,1,37,38],[831,1,1,38,39]]]],[1170,1690,1715,1716,1726,1727,1764,1765,1790,1799,1905,1910,1915,1916,6499,6757,7032,8525,9110,9111,9112,10944,14294,19101,19143,19145,19234,19321,19380,19538,19815,19838,20007,20015,20237,20577,20740,21090,21229]]],["Bow",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16310]]],["Incline",[4,4,[[18,2,2,0,2,[[596,1,1,0,1],[618,1,1,1,2]]],[22,2,2,2,4,[[715,1,1,2,3],[733,1,1,3,4]]]],[15934,16280,18369,18743]]],["Turn",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16517]]],["apply",[1,1,[[19,1,1,0,1,[[629,1,1,0,1]]]],[16435]]],["aside",[16,16,[[3,1,1,0,1,[[138,1,1,0,1]]],[8,1,1,1,2,[[243,1,1,1,2]]],[9,3,3,2,5,[[268,1,1,2,3],[269,1,1,3,4],[272,1,1,4,5]]],[12,1,1,5,6,[[350,1,1,5,6]]],[18,1,1,6,7,[[602,1,1,6,7]]],[22,4,4,7,11,[[688,1,1,7,8],[707,1,1,8,9],[708,1,1,9,10],[722,1,1,10,11]]],[23,1,1,11,12,[[758,1,1,11,12]]],[24,1,1,12,13,[[799,1,1,12,13]]],[29,2,2,13,15,[[880,1,1,13,14],[883,1,1,14,15]]],[38,1,1,15,16,[[927,1,1,15,16]]]],[4398,7372,8070,8108,8167,10773,16115,17852,18214,18228,18553,19301,20389,22386,22435,23125]]],["away",[2,2,[[3,1,1,0,1,[[136,1,1,0,1]]],[23,1,1,1,2,[[749,1,1,1,2]]]],[4332,19083]]],["bow",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16518]]],["bowed",[4,4,[[0,1,1,0,1,[[48,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]]],[1488,6979,8612,14127]]],["bowing",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14830]]],["decline",[3,3,[[1,1,1,0,1,[[72,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[19,1,1,2,3,[[631,1,1,2,3]]]],[2146,16055,16495]]],["declined",[3,3,[[17,1,1,0,1,[[458,1,1,0,1]]],[18,2,2,1,3,[[521,1,1,1,2],[596,1,1,2,3]]]],[13430,14589,15949]]],["declineth",[2,2,[[18,2,2,0,2,[[579,1,1,0,1],[586,1,1,1,2]]]],[15532,15778]]],["deliver",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13754]]],["down",[9,9,[[0,1,1,0,1,[[23,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[11,2,2,2,4,[[331,1,1,2,3],[332,1,1,3,4]]],[18,3,3,4,7,[[494,1,1,4,5],[508,1,1,5,6],[563,1,1,6,7]]],[19,1,1,7,8,[[649,1,1,7,8]]],[29,1,1,8,9,[[880,1,1,8,9]]]],[605,4355,10077,10108,14114,14333,15285,17032,22387]]],["extend",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18934]]],["extended",[2,2,[[14,2,2,0,2,[[409,1,1,0,1],[411,1,1,1,2]]]],[12201,12246]]],["forth",[10,10,[[3,1,1,0,1,[[140,1,1,0,1]]],[22,5,5,1,6,[[681,1,1,1,2],[683,1,1,2,3],[722,1,1,3,4],[729,1,1,4,5],[732,1,1,5,6]]],[23,1,1,6,7,[[754,1,1,6,7]]],[25,1,1,7,8,[[802,1,1,7,8]]],[37,2,2,8,10,[[911,1,1,8,9],[922,1,1,9,10]]]],[4452,17723,17764,18557,18686,18725,19221,20486,22894,23046]]],["gone",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15022]]],["in",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1120]]],["incline",[10,10,[[10,1,1,0,1,[[298,1,1,0,1]]],[18,7,7,1,8,[[494,1,1,1,2],[522,1,1,2,3],[526,1,1,3,4],[548,1,1,4,5],[555,1,1,5,6],[565,1,1,6,7],[579,1,1,7,8]]],[19,1,1,8,9,[[631,1,1,8,9]]],[26,1,1,9,10,[[858,1,1,9,10]]]],[9043,14109,14607,14652,14978,15114,15310,15523,16510,22006]]],["inclined",[4,4,[[18,3,3,0,3,[[517,1,1,0,1],[593,1,1,1,2],[596,1,1,2,3]]],[19,1,1,3,4,[[632,1,1,3,4]]]],[14526,15850,16010,16530]]],["intended",[1,1,[[18,1,1,0,1,[[498,1,1,0,1]]]],[14202]]],["laid",[1,1,[[27,1,1,0,1,[[872,1,1,0,1]]]],[22244]]],["out",[53,52,[[1,5,5,0,5,[[55,1,1,0,1],[56,1,1,1,2],[59,2,2,2,4],[64,1,1,4,5]]],[4,5,5,5,10,[[156,1,1,5,6],[157,1,1,6,7],[159,1,1,7,8],[161,1,1,8,9],[163,1,1,9,10]]],[5,4,3,10,13,[[194,4,3,10,13]]],[10,1,1,13,14,[[298,1,1,13,14]]],[11,1,1,14,15,[[329,1,1,14,15]]],[12,1,1,15,16,[[358,1,1,15,16]]],[13,1,1,16,17,[[372,1,1,16,17]]],[17,3,3,17,20,[[444,1,1,17,18],[450,1,1,18,19],[461,1,1,19,20]]],[18,2,2,20,22,[[581,1,1,20,21],[613,1,1,21,22]]],[19,1,1,22,23,[[628,1,1,22,23]]],[22,14,14,23,37,[[683,1,1,23,24],[687,3,3,24,27],[688,1,1,27,28],[692,2,2,28,30],[701,1,1,30,31],[709,1,1,31,32],[712,1,1,32,33],[718,1,1,33,34],[720,1,1,34,35],[722,1,1,35,36],[723,1,1,36,37]]],[23,5,5,37,42,[[750,1,1,37,38],[754,1,1,38,39],[776,2,2,39,41],[795,1,1,41,42]]],[24,1,1,42,43,[[798,1,1,42,43]]],[25,7,7,43,50,[[815,1,1,43,44],[817,1,1,44,45],[821,2,2,45,47],[826,2,2,47,49],[836,1,1,49,50]]],[35,2,2,50,52,[[906,1,1,50,51],[907,1,1,51,52]]]],[1661,1704,1789,1798,1932,5038,5068,5130,5186,5210,6020,6021,6028,9027,10019,10950,11314,13059,13228,13474,15573,16208,16424,17764,17841,17846,17850,17854,17954,17955,18088,18253,18314,18442,18485,18546,18573,19093,19213,19748,19752,20227,20340,20744,20789,20928,20929,21096,21099,21347,22791,22818]]],["outstretched",[3,3,[[4,1,1,0,1,[[178,1,1,0,1]]],[23,2,2,1,3,[[765,1,1,1,2],[771,1,1,2,3]]]],[5574,19445,19601]]],["overthrow",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16906]]],["pervert",[2,2,[[4,1,1,0,1,[[176,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]]],[5542,16896]]],["perverted",[1,1,[[8,1,1,0,1,[[243,1,1,0,1]]]],[7372]]],["perverteth",[1,1,[[4,1,1,0,1,[[179,1,1,0,1]]]],[5604]]],["pitched",[8,8,[[0,2,2,0,2,[[11,1,1,0,1],[25,1,1,1,2]]],[1,1,1,2,3,[[82,1,1,2,3]]],[6,1,1,3,4,[[214,1,1,3,4]]],[9,1,1,4,5,[[272,1,1,4,5]]],[12,2,2,5,7,[[352,1,1,5,6],[353,1,1,6,7]]],[13,1,1,7,8,[[367,1,1,7,8]]]],[306,717,2480,6610,8174,10792,10821,11198]]],["prolong",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13232]]],["spread",[4,4,[[0,2,2,0,2,[[32,1,1,0,1],[34,1,1,1,2]]],[9,2,2,2,4,[[282,1,1,2,3],[287,1,1,3,4]]]],[979,1032,8448,8590]]],["stretch",[1,1,[[11,1,1,0,1,[[333,1,1,0,1]]]],[10132]]],["stretched",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13798]]],["turn",[6,6,[[3,4,4,0,4,[[136,1,1,0,1],[137,1,1,1,2],[138,2,2,2,4]]],[8,1,1,4,5,[[249,1,1,4,5]]],[17,1,1,5,6,[[459,1,1,5,6]]]],[4328,4362,4398,4401,7515,13440]]],["turned",[8,6,[[0,1,1,0,1,[[37,1,1,0,1]]],[3,2,1,1,2,[[138,2,1,1,2]]],[9,1,1,2,3,[[268,1,1,2,3]]],[10,3,2,3,5,[[292,2,1,3,4],[301,1,1,4,5]]],[17,1,1,5,6,[[466,1,1,5,6]]]],[1135,4408,8068,8798,9117,13595]]],["turneth",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16985]]],["wrest",[3,3,[[1,2,2,0,2,[[72,2,2,0,2]]],[4,1,1,2,3,[[168,1,1,2,3]]]],[2146,2150,5361]]],["yield",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16596]]]]},{"k":"H5187","v":[["bear",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22798]]]]},{"k":"H5188","v":[["*",[2,2,[[6,1,1,0,1,[[218,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]]],[6745,17726]]],["chains",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17726]]],["collars",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6745]]]]},{"k":"H5189","v":[["*",[3,3,[[22,1,1,0,1,[[696,1,1,0,1]]],[23,2,2,1,3,[[749,1,1,1,2],[792,1,1,2,3]]]],[18002,19068,20112]]],["battlements",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19068]]],["branches",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18002]]],["plants",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20112]]]]},{"k":"H5190","v":[["*",[4,4,[[9,1,1,0,1,[[290,1,1,0,1]]],[22,2,2,1,3,[[718,1,1,1,2],[741,1,1,2,3]]],[24,1,1,3,4,[[799,1,1,3,4]]]],[8704,18435,18875,20382]]],["+",[1,1,[[9,1,1,0,1,[[290,1,1,0,1]]]],[8704]]],["bare",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18875]]],["borne",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20382]]],["up",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18435]]]]},{"k":"H5191","v":[["up",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[856,1,1,1,2]]]],[21871,21937]]]]},{"k":"H5192","v":[["weighty",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17172]]]]},{"k":"H5193","v":[["*",[58,55,[[0,3,3,0,3,[[1,1,1,0,1],[8,1,1,1,2],[20,1,1,2,3]]],[1,1,1,3,4,[[64,1,1,3,4]]],[2,1,1,4,5,[[108,1,1,4,5]]],[3,1,1,5,6,[[140,1,1,5,6]]],[4,5,5,6,11,[[158,1,1,6,7],[168,1,1,7,8],[172,1,1,8,9],[180,2,2,9,11]]],[5,1,1,11,12,[[210,1,1,11,12]]],[9,1,1,12,13,[[273,1,1,12,13]]],[11,1,1,13,14,[[331,1,1,13,14]]],[12,1,1,14,15,[[354,1,1,14,15]]],[18,6,6,15,21,[[521,1,1,15,16],[557,2,2,16,18],[571,1,1,18,19],[581,1,1,19,20],[584,1,1,20,21]]],[19,1,1,21,22,[[658,1,1,21,22]]],[20,5,4,22,26,[[660,2,2,22,24],[661,2,1,24,25],[670,1,1,25,26]]],[22,8,8,26,34,[[683,1,1,26,27],[695,1,1,27,28],[715,1,1,28,29],[718,1,1,29,30],[722,1,1,30,31],[729,1,1,31,32],[743,2,2,32,34]]],[23,16,14,34,48,[[745,1,1,34,35],[746,1,1,35,36],[755,1,1,36,37],[756,1,1,37,38],[762,1,1,38,39],[768,1,1,39,40],[773,2,2,40,42],[775,4,2,42,44],[776,1,1,44,45],[779,1,1,45,46],[786,1,1,46,47],[789,1,1,47,48]]],[25,2,2,48,50,[[829,1,1,48,49],[837,1,1,49,50]]],[26,1,1,50,51,[[860,1,1,50,51]]],[29,3,3,51,54,[[883,1,1,51,52],[887,2,2,52,54]]],[35,1,1,54,55,[[906,1,1,54,55]]]],[38,225,546,1937,3304,4452,5097,5363,5433,5641,5650,6489,8190,10090,10872,14573,15206,15213,15440,15587,15736,17300,17337,17338,17361,17534,17741,17993,18382,18444,18547,18689,18918,18919,18956,18986,19243,19251,19393,19530,19640,19663,19696,19719,19772,19830,19985,20044,21183,21395,22081,22434,22509,22510,22800]]],["fastened",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17534]]],["plant",[31,30,[[1,1,1,0,1,[[64,1,1,0,1]]],[4,3,3,1,4,[[168,1,1,1,2],[180,2,2,2,4]]],[9,1,1,4,5,[[273,1,1,4,5]]],[11,1,1,5,6,[[331,1,1,5,6]]],[12,1,1,6,7,[[354,1,1,6,7]]],[18,1,1,7,8,[[584,1,1,7,8]]],[20,1,1,8,9,[[661,1,1,8,9]]],[22,5,5,9,14,[[695,1,1,9,10],[715,1,1,10,11],[729,1,1,11,12],[743,2,2,12,14]]],[23,11,10,14,24,[[745,1,1,14,15],[762,1,1,15,16],[768,1,1,16,17],[773,2,2,17,19],[775,3,2,19,21],[776,1,1,21,22],[779,1,1,22,23],[786,1,1,23,24]]],[25,2,2,24,26,[[829,1,1,24,25],[837,1,1,25,26]]],[26,1,1,26,27,[[860,1,1,26,27]]],[29,2,2,27,29,[[887,2,2,27,29]]],[35,1,1,29,30,[[906,1,1,29,30]]]],[1937,5363,5641,5650,8190,10090,10872,15736,17361,17993,18382,18689,18918,18919,18956,19393,19530,19640,19663,19696,19719,19772,19830,19985,21183,21395,22081,22509,22510,22800]]],["planted",[21,21,[[0,3,3,0,3,[[1,1,1,0,1],[8,1,1,1,2],[20,1,1,2,3]]],[2,1,1,3,4,[[108,1,1,3,4]]],[3,1,1,4,5,[[140,1,1,4,5]]],[4,1,1,5,6,[[172,1,1,5,6]]],[5,1,1,6,7,[[210,1,1,6,7]]],[18,4,4,7,11,[[557,2,2,7,9],[571,1,1,9,10],[581,1,1,10,11]]],[20,3,3,11,14,[[660,2,2,11,13],[661,1,1,13,14]]],[22,2,2,14,16,[[683,1,1,14,15],[718,1,1,15,16]]],[23,4,4,16,20,[[746,1,1,16,17],[755,1,1,17,18],[756,1,1,18,19],[789,1,1,19,20]]],[29,1,1,20,21,[[883,1,1,20,21]]]],[38,225,546,3304,4452,5433,6489,15206,15213,15440,15587,17337,17338,17361,17741,18444,18986,19243,19251,20044,22434]]],["plantedst",[2,2,[[4,1,1,0,1,[[158,1,1,0,1]]],[18,1,1,1,2,[[521,1,1,1,2]]]],[5097,14573]]],["planters",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19696]]],["planteth",[2,2,[[19,1,1,0,1,[[658,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[17300,18547]]]]},{"k":"H5194","v":[["*",[4,4,[[17,1,1,0,1,[[449,1,1,0,1]]],[22,3,3,1,4,[[683,1,1,1,2],[695,2,2,2,4]]]],[13190,17746,17993,17994]]],["plant",[3,3,[[17,1,1,0,1,[[449,1,1,0,1]]],[22,2,2,1,3,[[683,1,1,1,2],[695,1,1,2,3]]]],[13190,17746,17994]]],["plants",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17993]]]]},{"k":"H5195","v":[["plants",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16317]]]]},{"k":"H5196","v":[["plants",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10408]]]]},{"k":"H5197","v":[["*",[18,14,[[6,2,1,0,1,[[215,2,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]],[18,1,1,2,3,[[545,1,1,2,3]]],[19,1,1,3,4,[[632,1,1,3,4]]],[21,3,3,4,7,[[674,1,1,4,5],[675,2,2,5,7]]],[25,2,2,7,9,[[821,1,1,7,8],[822,1,1,8,9]]],[28,1,1,9,10,[[878,1,1,9,10]]],[29,2,2,10,12,[[885,1,1,10,11],[887,1,1,11,12]]],[32,5,2,12,14,[[894,5,2,12,14]]]],[6627,13554,14908,16520,17593,17603,17611,20941,20946,22361,22480,22508,22601,22606]]],["Prophesy",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22601]]],["down",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22361]]],["drop",[6,6,[[19,1,1,0,1,[[632,1,1,0,1]]],[21,1,1,1,2,[[674,1,1,1,2]]],[25,2,2,2,4,[[821,1,1,2,3],[822,1,1,3,4]]],[29,2,2,4,6,[[885,1,1,4,5],[887,1,1,5,6]]]],[16520,17593,20941,20946,22480,22508]]],["dropped",[5,4,[[6,2,1,0,1,[[215,2,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]],[18,1,1,2,3,[[545,1,1,2,3]]],[21,1,1,3,4,[[675,1,1,3,4]]]],[6627,13554,14908,17603]]],["dropping",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17611]]],["prophesy",[3,2,[[32,3,2,0,2,[[894,3,2,0,2]]]],[22601,22606]]],["prophet",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22606]]]]},{"k":"H5198","v":[["*",[2,2,[[1,1,1,0,1,[[79,1,1,0,1]]],[17,1,1,1,2,[[471,1,1,1,2]]]],[2416,13763]]],["drops",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13763]]],["stacte",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2416]]]]},{"k":"H5199","v":[["Netophah",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12049,12446]]]]},{"k":"H5200","v":[["*",[11,10,[[9,2,2,0,2,[[289,2,2,0,2]]],[11,1,1,2,3,[[337,1,1,2,3]]],[12,6,5,3,8,[[339,1,1,3,4],[346,1,1,4,5],[348,2,1,5,6],[364,2,2,6,8]]],[15,1,1,8,9,[[424,1,1,8,9]]],[23,1,1,9,10,[[784,1,1,9,10]]]],[8681,8682,10245,10360,10631,10703,11122,11124,12652,19949]]],["Netophathi",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12652]]],["Netophathite",[8,7,[[9,2,2,0,2,[[289,2,2,0,2]]],[11,1,1,2,3,[[337,1,1,2,3]]],[12,4,3,3,6,[[348,2,1,3,4],[364,2,2,4,6]]],[23,1,1,6,7,[[784,1,1,6,7]]]],[8681,8682,10245,10703,11122,11124,19949]]],["Netophathites",[2,2,[[12,2,2,0,2,[[339,1,1,0,1],[346,1,1,1,2]]]],[10360,10631]]]]},{"k":"H5201","v":[["*",[9,8,[[2,1,1,0,1,[[108,1,1,0,1]]],[18,1,1,1,2,[[580,1,1,1,2]]],[21,4,3,2,5,[[671,2,1,2,3],[678,2,2,3,5]]],[23,2,2,5,7,[[747,2,2,5,7]]],[33,1,1,7,8,[[900,1,1,7,8]]]],[3299,15558,17543,17651,17652,19007,19014,22686]]],["+",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17652]]],["grudge",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3299]]],["keep",[2,2,[[18,1,1,0,1,[[580,1,1,0,1]]],[23,1,1,1,2,[[747,1,1,1,2]]]],[15558,19014]]],["keeper",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17543]]],["keepers",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17651]]],["kept",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17543]]],["reserve",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19007]]],["reserveth",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22686]]]]},{"k":"H5202","v":[["kept",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21961]]]]},{"k":"H5203","v":[["*",[40,39,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,1,1,1,2,[[72,1,1,1,2]]],[3,1,1,2,3,[[127,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[6,2,2,4,6,[[216,1,1,4,5],[225,1,1,5,6]]],[8,7,7,6,13,[[239,1,1,6,7],[245,1,1,7,8],[247,1,1,8,9],[252,3,3,9,12],[265,1,1,12,13]]],[9,2,2,13,15,[[271,2,2,13,15]]],[10,1,1,15,16,[[298,1,1,15,16]]],[11,1,1,16,17,[[333,1,1,16,17]]],[15,1,1,17,18,[[422,1,1,17,18]]],[18,3,3,18,21,[[504,1,1,18,19],[555,1,1,19,20],[571,1,1,20,21]]],[19,3,3,21,24,[[628,1,1,21,22],[633,1,1,22,23],[644,1,1,23,24]]],[22,5,5,24,29,[[680,1,1,24,25],[694,1,1,25,26],[699,1,1,26,27],[710,1,1,27,28],[711,1,1,28,29]]],[23,5,5,29,34,[[751,1,1,29,30],[756,1,1,30,31],[759,1,1,31,32],[767,2,2,32,34]]],[25,4,3,34,37,[[830,1,1,34,35],[832,2,1,35,36],[833,1,1,36,37]]],[27,1,1,37,38,[[873,1,1,37,38]]],[29,1,1,38,39,[[883,1,1,38,39]]]],[901,2155,4055,5773,6667,6938,7299,7420,7482,7638,7640,7646,7994,8150,8154,9042,10133,12580,14294,15173,15445,16408,16560,16887,17691,17977,18050,18273,18302,19148,19256,19321,19517,19523,21188,21242,21252,22266,22425]]],["+",[8,8,[[8,4,4,0,4,[[245,1,1,0,1],[247,1,1,1,2],[252,2,2,2,4]]],[11,1,1,4,5,[[333,1,1,4,5]]],[15,1,1,5,6,[[422,1,1,5,6]]],[23,2,2,6,8,[[751,1,1,6,7],[756,1,1,7,8]]]],[7420,7482,7638,7640,10133,12580,19148,19256]]],["abroad",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7994]]],["drawn",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18050]]],["fall",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4055]]],["forsake",[5,5,[[10,1,1,0,1,[[298,1,1,0,1]]],[19,2,2,1,3,[[628,1,1,1,2],[633,1,1,2,3]]],[23,2,2,3,5,[[767,2,2,3,5]]]],[9042,16408,16560,19517,19523]]],["forsaken",[5,5,[[6,1,1,0,1,[[216,1,1,0,1]]],[22,2,2,1,3,[[680,1,1,1,2],[710,1,1,2,3]]],[23,1,1,3,4,[[759,1,1,3,4]]],[29,1,1,4,5,[[883,1,1,4,5]]]],[6667,17691,18273,19321,22425]]],["forsook",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[5773,15173]]],["joined",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7299]]],["leave",[4,4,[[18,1,1,0,1,[[504,1,1,0,1]]],[25,2,2,1,3,[[830,1,1,1,2],[833,1,1,2,3]]],[27,1,1,3,4,[[873,1,1,3,4]]]],[14294,21188,21252,22266]]],["left",[3,2,[[8,1,1,0,1,[[252,1,1,0,1]]],[25,2,1,1,2,[[832,2,1,1,2]]]],[7646,21242]]],["loosed",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18302]]],["off",[2,2,[[18,1,1,0,1,[[571,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]]],[15445,16887]]],["out",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17977]]],["still",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2155]]],["suffered",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[901]]],["themselves",[3,3,[[6,1,1,0,1,[[225,1,1,0,1]]],[9,2,2,1,3,[[271,2,2,1,3]]]],[6938,8150,8154]]]]},{"k":"H5204","v":[["wailing",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21153]]]]},{"k":"H5205","v":[["moving",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13243]]]]},{"k":"H5206","v":[["removed",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20318]]]]},{"k":"H5207","v":[["*",[43,43,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,3,3,1,4,[[78,3,3,1,4]]],[2,17,17,4,21,[[90,3,3,4,7],[91,3,3,7,10],[92,2,2,10,12],[93,1,1,12,13],[95,2,2,13,15],[97,2,2,15,17],[106,1,1,17,18],[112,2,2,18,20],[115,1,1,20,21]]],[3,18,18,21,39,[[131,6,6,21,27],[134,1,1,27,28],[144,6,6,28,34],[145,5,5,34,39]]],[25,4,4,39,43,[[807,1,1,39,40],[817,1,1,40,41],[821,2,2,41,43]]]],[204,2354,2361,2377,2754,2758,2762,2764,2771,2774,2783,2794,2826,2864,2870,2938,2945,3241,3415,3420,3555,4156,4160,4163,4166,4167,4177,4274,4579,4583,4585,4590,4601,4604,4610,4614,4616,4621,4644,20576,20781,20923,20936]]],["+",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[204]]],["odours",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3555]]],["sweet",[41,41,[[1,3,3,0,3,[[78,3,3,0,3]]],[2,16,16,3,19,[[90,3,3,3,6],[91,3,3,6,9],[92,2,2,9,11],[93,1,1,11,12],[95,2,2,12,14],[97,2,2,14,16],[106,1,1,16,17],[112,2,2,17,19]]],[3,18,18,19,37,[[131,6,6,19,25],[134,1,1,25,26],[144,6,6,26,32],[145,5,5,32,37]]],[25,4,4,37,41,[[807,1,1,37,38],[817,1,1,38,39],[821,2,2,39,41]]]],[2354,2361,2377,2754,2758,2762,2764,2771,2774,2783,2794,2826,2864,2870,2938,2945,3241,3415,3420,4156,4160,4163,4166,4167,4177,4274,4579,4583,4585,4590,4601,4604,4610,4614,4616,4621,4644,20576,20781,20923,20936]]]]},{"k":"H5208","v":[["*",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[851,1,1,1,2]]]],[12161,21804]]],["odours",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21804]]],["savours",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12161]]]]},{"k":"H5209","v":[["son",[3,3,[[0,1,1,0,1,[[20,1,1,0,1]]],[17,1,1,1,2,[[453,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]]],[536,13295,17950]]]]},{"k":"H5210","v":[["Nineveh",[17,16,[[0,2,2,0,2,[[9,2,2,0,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[22,1,1,3,4,[[715,1,1,3,4]]],[31,9,8,4,12,[[889,1,1,4,5],[891,7,6,5,11],[892,1,1,11,12]]],[33,3,3,12,15,[[900,1,1,12,13],[901,1,1,13,14],[902,1,1,14,15]]],[35,1,1,15,16,[[907,1,1,15,16]]]],[245,246,10097,18389,22533,22560,22561,22562,22563,22564,22565,22579,22685,22707,22719,22818]]]]},{"k":"H5211","v":[["fleeth",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20124]]]]},{"k":"H5212","v":[["Nisan",[2,2,[[15,1,1,0,1,[[414,1,1,0,1]]],[16,1,1,1,2,[[428,1,1,1,2]]]],[12308,12754]]]]},{"k":"H5213","v":[["spark",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17685]]]]},{"k":"H5214","v":[["up",[2,2,[[23,1,1,0,1,[[748,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]]],[19030,22237]]]]},{"k":"H5215","v":[["*",[4,4,[[19,2,2,0,2,[[640,1,1,0,1],[648,1,1,1,2]]],[23,1,1,2,3,[[748,1,1,2,3]]],[27,1,1,3,4,[[871,1,1,3,4]]]],[16770,16988,19030,22237]]],["ground",[2,2,[[23,1,1,0,1,[[748,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]]],[19030,22237]]],["plowing",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16988]]],["tillage",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16770]]]]},{"k":"H5216","v":[["*",[48,42,[[1,11,9,0,9,[[74,2,1,0,1],[76,1,1,1,2],[79,2,2,2,4],[84,1,1,4,5],[86,1,1,5,6],[88,2,1,6,7],[89,2,2,7,9]]],[2,2,2,9,11,[[113,2,2,9,11]]],[3,4,3,11,14,[[120,1,1,11,12],[124,3,2,12,14]]],[8,1,1,14,15,[[238,1,1,14,15]]],[9,2,2,15,17,[[287,1,1,15,16],[288,1,1,16,17]]],[10,3,3,17,20,[[297,1,1,17,18],[301,1,1,18,19],[305,1,1,19,20]]],[11,1,1,20,21,[[320,1,1,20,21]]],[12,3,1,21,22,[[365,3,1,21,22]]],[13,5,5,22,27,[[370,2,2,22,24],[379,1,1,24,25],[387,1,1,25,26],[395,1,1,26,27]]],[17,3,3,27,30,[[453,1,1,27,28],[456,1,1,28,29],[464,1,1,29,30]]],[18,3,3,30,33,[[495,1,1,30,31],[596,1,1,31,32],[609,1,1,32,33]]],[19,6,6,33,39,[[633,1,1,33,34],[640,1,1,34,35],[647,2,2,35,37],[651,1,1,37,38],[658,1,1,38,39]]],[23,1,1,39,40,[[769,1,1,39,40]]],[35,1,1,40,41,[[906,1,1,40,41]]],[37,2,1,41,42,[[914,2,1,41,42]]]],[2232,2292,2389,2390,2545,2627,2701,2711,2732,3448,3450,3752,3941,3942,7279,8597,8631,8983,9144,9253,9746,11158,11266,11267,11464,11631,11798,13282,13372,13535,14146,16003,16168,16563,16756,16974,16981,17099,17302,19544,22799,22924]]],["candle",[8,8,[[17,3,3,0,3,[[453,1,1,0,1],[456,1,1,1,2],[464,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]],[19,3,3,4,7,[[647,1,1,4,5],[651,1,1,5,6],[658,1,1,6,7]]],[23,1,1,7,8,[[769,1,1,7,8]]]],[13282,13372,13535,14146,16981,17099,17302,19544]]],["candles",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22799]]],["lamp",[9,9,[[1,1,1,0,1,[[76,1,1,0,1]]],[8,1,1,1,2,[[238,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[10,1,1,3,4,[[305,1,1,3,4]]],[18,2,2,4,6,[[596,1,1,4,5],[609,1,1,5,6]]],[19,3,3,6,9,[[633,1,1,6,7],[640,1,1,7,8],[647,1,1,8,9]]]],[2292,7279,8631,9253,16003,16168,16563,16756,16974]]],["lamps",[26,20,[[1,10,8,0,8,[[74,2,1,0,1],[79,2,2,1,3],[84,1,1,3,4],[86,1,1,4,5],[88,2,1,5,6],[89,2,2,6,8]]],[2,2,2,8,10,[[113,2,2,8,10]]],[3,4,3,10,13,[[120,1,1,10,11],[124,3,2,11,13]]],[10,1,1,13,14,[[297,1,1,13,14]]],[12,3,1,14,15,[[365,3,1,14,15]]],[13,4,4,15,19,[[370,2,2,15,17],[379,1,1,17,18],[395,1,1,18,19]]],[37,2,1,19,20,[[914,2,1,19,20]]]],[2232,2389,2390,2545,2627,2701,2711,2732,3448,3450,3752,3941,3942,8983,11158,11266,11267,11464,11798,22924]]],["light",[4,4,[[9,1,1,0,1,[[287,1,1,0,1]]],[10,1,1,1,2,[[301,1,1,1,2]]],[11,1,1,2,3,[[320,1,1,2,3]]],[13,1,1,3,4,[[387,1,1,3,4]]]],[8597,9144,9746,11631]]]]},{"k":"H5217","v":[["viler",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13565]]]]},{"k":"H5218","v":[["*",[4,4,[[19,3,3,0,3,[[642,1,1,0,1],[644,1,1,1,2],[645,1,1,2,3]]],[22,1,1,3,4,[[694,1,1,3,4]]]],[16820,16895,16915,17976]]],["broken",[2,2,[[19,2,2,0,2,[[642,1,1,0,1],[644,1,1,1,2]]]],[16820,16895]]],["stricken",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17976]]],["wounded",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16915]]]]},{"k":"H5219","v":[["*",[2,2,[[0,2,2,0,2,[[36,1,1,0,1],[42,1,1,1,2]]]],[1108,1301]]],["spicery",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1108]]],["spices",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1301]]]]},{"k":"H5220","v":[["*",[3,3,[[0,1,1,0,1,[[20,1,1,0,1]]],[17,1,1,1,2,[[453,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]]],[536,13295,17950]]],["nephew",[2,2,[[17,1,1,0,1,[[453,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]]],[13295,17950]]],["son",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[536]]]]},{"k":"H5221","v":[["*",[500,459,[[0,12,12,0,12,[[3,1,1,0,1],[7,1,1,1,2],[13,4,4,2,6],[18,1,1,6,7],[31,2,2,7,9],[33,1,1,9,10],[35,1,1,10,11],[36,1,1,11,12]]],[1,28,27,12,39,[[51,3,3,12,15],[52,1,1,15,16],[54,2,2,16,18],[56,3,3,18,21],[57,2,2,21,23],[58,5,4,23,27],[61,3,3,27,30],[66,2,2,30,32],[70,6,6,32,38],[71,1,1,38,39]]],[2,5,4,39,43,[[113,4,3,39,42],[115,1,1,42,43]]],[3,30,28,43,71,[[119,1,1,43,44],[124,1,1,44,45],[127,1,1,45,46],[130,2,2,46,48],[136,1,1,48,49],[137,2,2,49,51],[138,6,6,51,57],[141,5,4,57,61],[148,1,1,61,62],[149,1,1,62,63],[151,9,8,63,71]]],[4,24,21,71,92,[[153,1,1,71,72],[154,1,1,72,73],[155,1,1,73,74],[156,1,1,74,75],[159,1,1,75,76],[165,2,1,76,77],[171,3,3,77,80],[172,1,1,80,81],[173,1,1,81,82],[177,5,3,82,85],[179,2,2,85,87],[180,4,4,87,91],[181,1,1,91,92]]],[5,38,35,92,127,[[193,3,2,92,94],[194,3,3,94,97],[195,1,1,97,98],[196,14,13,98,111],[197,7,6,111,117],[198,3,3,117,120],[199,2,2,120,122],[201,1,1,122,123],[205,1,1,123,124],[206,3,3,124,127]]],[6,29,29,127,156,[[211,7,7,127,134],[213,3,3,134,137],[216,1,1,137,138],[217,1,1,138,139],[218,1,1,139,140],[219,2,2,140,142],[221,2,2,142,144],[222,1,1,144,145],[224,1,1,145,146],[225,3,3,146,149],[228,1,1,149,150],[230,5,5,150,155],[231,1,1,155,156]]],[8,52,46,156,202,[[237,1,1,156,157],[239,2,2,157,159],[240,3,3,159,162],[241,3,1,162,163],[242,1,1,163,164],[246,1,1,164,165],[248,2,2,165,167],[249,3,3,167,170],[250,2,2,170,172],[252,12,10,172,182],[253,4,4,182,186],[254,4,3,186,189],[255,1,1,189,190],[256,2,2,190,192],[257,1,1,192,193],[258,3,2,193,195],[259,1,1,195,196],[261,1,1,196,197],[262,1,1,197,198],[264,1,1,198,199],[265,2,2,199,201],[266,1,1,201,202]]],[9,48,46,202,248,[[267,2,2,202,204],[268,3,3,204,207],[269,1,1,207,208],[270,2,2,208,210],[271,4,4,210,214],[272,1,1,214,215],[274,7,7,215,222],[276,1,1,222,223],[277,2,2,223,225],[278,1,1,225,226],[279,2,2,226,228],[280,2,2,228,230],[281,1,1,230,231],[283,1,1,231,232],[284,2,2,232,234],[286,1,1,234,235],[287,7,7,235,242],[289,6,4,242,246],[290,2,2,246,248]]],[10,22,17,248,265,[[301,1,1,248,249],[304,1,1,249,250],[305,3,3,250,253],[306,4,4,253,257],[310,11,6,257,263],[312,2,2,263,265]]],[11,56,43,265,308,[[314,3,2,265,267],[315,6,4,267,271],[318,6,3,271,274],[320,3,3,274,277],[321,4,4,277,281],[322,6,5,281,286],[323,1,1,286,287],[324,2,2,287,289],[325,7,4,289,293],[326,6,4,293,297],[327,6,5,297,302],[330,1,1,302,303],[331,2,2,303,305],[333,1,1,305,306],[337,2,2,306,308]]],[12,25,24,308,332,[[338,1,1,308,309],[341,2,2,309,311],[347,1,1,311,312],[348,5,4,312,316],[350,1,1,316,317],[351,3,3,317,320],[355,7,7,320,327],[357,4,4,327,331],[358,1,1,331,332]]],[13,20,19,332,351,[[379,1,1,332,333],[380,2,2,333,335],[382,1,1,335,336],[384,2,2,336,338],[387,1,1,338,339],[388,2,2,339,341],[391,6,6,341,347],[394,4,3,347,350],[399,1,1,350,351]]],[15,1,1,351,352,[[425,1,1,351,352]]],[16,1,1,352,353,[[434,1,1,352,353]]],[17,4,4,353,357,[[436,2,2,353,355],[437,1,1,355,356],[451,1,1,356,357]]],[18,13,13,357,370,[[480,1,1,357,358],[546,1,1,358,359],[555,3,3,359,362],[579,1,1,362,363],[582,2,2,363,365],[598,1,1,365,366],[612,2,2,366,368],[613,2,2,368,370]]],[19,6,6,370,376,[[644,2,2,370,372],[646,1,1,372,373],[650,3,3,373,376]]],[21,1,1,376,377,[[675,1,1,376,377]]],[22,21,20,377,397,[[679,1,1,377,378],[683,1,1,378,379],[687,1,1,379,380],[688,2,2,380,382],[689,2,2,382,384],[692,2,2,384,386],[705,2,1,386,387],[708,1,1,387,388],[715,2,2,388,390],[727,1,1,390,391],[728,1,1,391,392],[731,1,1,392,393],[735,1,1,393,394],[736,1,1,394,395],[738,1,1,395,396],[744,1,1,396,397]]],[23,30,29,397,426,[[746,1,1,397,398],[749,2,2,398,400],[758,1,1,400,401],[762,2,2,401,403],[764,2,2,403,405],[765,2,2,405,407],[770,1,1,407,408],[773,1,1,408,409],[774,1,1,409,410],[777,1,1,410,411],[781,2,2,411,413],[784,3,2,413,415],[785,5,5,415,420],[787,1,1,420,421],[790,2,2,421,423],[791,1,1,423,424],[793,1,1,424,425],[796,1,1,425,426]]],[24,1,1,426,427,[[799,1,1,426,427]]],[25,13,13,427,440,[[806,1,1,427,428],[807,1,1,428,429],[808,1,1,429,430],[810,3,3,430,433],[822,2,2,433,435],[823,1,1,435,436],[833,1,1,436,437],[834,1,1,437,438],[840,1,1,438,439],[841,1,1,439,440]]],[26,1,1,440,441,[[857,1,1,440,441]]],[27,3,3,441,444,[[867,1,1,441,442],[870,1,1,442,443],[875,1,1,443,444]]],[29,4,4,444,448,[[881,1,1,444,445],[882,1,1,445,446],[884,1,1,446,447],[887,1,1,447,448]]],[31,2,2,448,450,[[892,2,2,448,450]]],[32,2,2,450,452,[[897,1,1,450,451],[898,1,1,451,452]]],[36,1,1,452,453,[[910,1,1,452,453]]],[37,6,5,453,458,[[919,1,1,453,454],[920,1,1,454,455],[922,2,1,455,456],[923,2,2,456,458]]],[38,1,1,458,459,[[928,1,1,458,459]]]],[94,204,341,343,351,353,468,936,939,1010,1075,1104,1565,1566,1567,1599,1646,1648,1702,1705,1710,1726,1727,1757,1767,1773,1774,1828,1829,1845,1988,1989,2089,2092,2095,2096,2097,2103,2115,3463,3464,3467,3548,3705,3956,4057,4120,4153,4322,4364,4375,4381,4398,4400,4402,4403,4407,4485,4486,4488,4489,4722,4764,4856,4860,4861,4862,4863,4866,4869,4875,4896,4971,4978,5050,5113,5287,5410,5412,5417,5440,5448,5549,5550,5558,5609,5610,5633,5638,5639,5646,5686,5979,5981,6023,6024,6026,6055,6068,6074,6084,6090,6092,6094,6096,6097,6099,6101,6103,6104,6105,6115,6117,6118,6119,6121,6124,6131,6136,6137,6166,6175,6218,6368,6375,6377,6381,6513,6514,6517,6519,6521,6526,6534,6581,6597,6599,6670,6707,6730,6797,6798,6850,6862,6873,6928,6937,6944,6945,7020,7085,7091,7093,7099,7102,7112,7254,7299,7305,7325,7328,7331,7350,7363,7456,7488,7489,7522,7539,7556,7563,7567,7627,7643,7644,7645,7653,7654,7664,7667,7668,7675,7682,7683,7687,7703,7711,7714,7716,7763,7781,7783,7806,7812,7815,7844,7913,7939,7972,7979,7995,8011,8023,8037,8071,8072,8080,8108,8126,8127,8140,8152,8156,8157,8164,8210,8211,8212,8214,8218,8219,8222,8258,8274,8280,8295,8345,8347,8362,8363,8403,8451,8489,8493,8564,8582,8592,8596,8597,8598,8599,8601,8663,8665,8673,8674,8702,8709,9123,9233,9269,9276,9278,9290,9293,9294,9299,9428,9429,9437,9443,9444,9445,9504,9514,9559,9565,9595,9599,9600,9601,9692,9695,9696,9748,9755,9756,9763,9771,9780,9783,9802,9804,9810,9818,9825,9841,9870,9871,9888,9889,9890,9896,9901,9902,9903,9906,9935,9939,9941,9950,9955,10032,10096,10098,10143,10243,10247,10298,10426,10428,10661,10679,10687,10695,10696,10770,10785,10789,10790,10891,10892,10893,10895,10899,10900,10902,10927,10930,10931,10933,10941,11470,11489,11490,11513,11565,11575,11633,11649,11650,11707,11715,11717,11718,11720,11723,11769,11781,11787,11933,12696,12839,12884,12886,12898,13248,13964,14961,15133,15164,15179,15525,15639,15642,16087,16183,16185,16206,16213,16883,16899,16950,17057,17058,17079,17605,17659,17764,17842,17870,17874,17888,17899,17934,17957,18158,18248,18388,18390,18646,18668,18715,18782,18790,18831,18925,18995,19061,19064,19312,19402,19405,19424,19426,19446,19447,19595,19656,19681,19780,19884,19889,19955,19956,19959,19960,19966,19973,19975,20008,20047,20058,20074,20155,20303,20384,20548,20574,20586,20627,20629,20630,20958,20961,20989,21263,21301,21451,21478,21968,22168,22224,22287,22410,22419,22461,22496,22575,22576,22634,22661,22872,23003,23027,23049,23065,23066,23144]]],["+",[173,164,[[0,4,4,0,4,[[13,3,3,0,3],[35,1,1,3,4]]],[1,10,10,4,14,[[51,1,1,4,5],[52,1,1,5,6],[56,2,2,6,8],[57,2,2,8,10],[66,1,1,10,11],[70,3,3,11,14]]],[3,4,4,14,18,[[136,1,1,14,15],[138,3,3,15,18]]],[4,7,6,18,24,[[153,1,1,18,19],[154,1,1,19,20],[165,2,1,20,21],[171,1,1,21,22],[172,1,1,22,23],[177,1,1,23,24]]],[5,7,7,24,31,[[193,1,1,24,25],[194,1,1,25,26],[196,2,2,26,28],[197,1,1,28,29],[201,1,1,29,30],[206,1,1,30,31]]],[6,11,11,31,42,[[211,5,5,31,36],[213,1,1,36,37],[216,1,1,37,38],[218,1,1,38,39],[222,1,1,39,40],[230,1,1,40,41],[231,1,1,41,42]]],[8,18,18,42,60,[[239,1,1,42,43],[240,1,1,43,44],[246,1,1,44,45],[248,2,2,45,47],[249,1,1,47,48],[250,2,2,48,50],[252,4,4,50,54],[253,1,1,54,55],[254,2,2,55,57],[262,1,1,57,58],[265,1,1,58,59],[266,1,1,59,60]]],[9,21,20,60,80,[[267,1,1,60,61],[271,1,1,61,62],[274,4,4,62,66],[277,1,1,66,67],[278,1,1,67,68],[279,2,2,68,70],[280,1,1,70,71],[283,1,1,71,72],[284,1,1,72,73],[287,4,4,73,77],[289,4,3,77,80]]],[10,8,8,80,88,[[304,1,1,80,81],[305,2,2,81,83],[306,2,2,83,85],[310,1,1,85,86],[312,2,2,86,88]]],[11,28,23,88,111,[[314,3,2,88,90],[315,3,2,90,92],[318,1,1,92,93],[320,2,2,93,95],[321,2,2,95,97],[322,3,3,97,100],[324,1,1,100,101],[325,3,2,101,103],[326,5,3,103,106],[327,2,2,106,108],[330,1,1,108,109],[333,1,1,109,110],[337,1,1,110,111]]],[12,20,19,111,130,[[338,1,1,111,112],[341,2,2,112,114],[347,1,1,114,115],[348,4,3,115,118],[350,1,1,118,119],[351,2,2,119,121],[355,5,5,121,126],[357,3,3,126,129],[358,1,1,129,130]]],[13,11,11,130,141,[[380,1,1,130,131],[382,1,1,131,132],[384,2,2,132,134],[387,1,1,134,135],[388,1,1,135,136],[391,4,4,136,140],[399,1,1,140,141]]],[17,1,1,141,142,[[437,1,1,141,142]]],[18,3,3,142,145,[[480,1,1,142,143],[612,2,2,143,145]]],[19,1,1,145,146,[[644,1,1,145,146]]],[23,12,11,146,157,[[746,1,1,146,147],[764,1,1,147,148],[765,1,1,148,149],[784,3,2,149,151],[785,3,3,151,154],[787,1,1,154,155],[790,1,1,155,156],[791,1,1,156,157]]],[25,2,2,157,159,[[822,1,1,157,158],[833,1,1,158,159]]],[26,1,1,159,160,[[857,1,1,159,160]]],[31,1,1,160,161,[[892,1,1,160,161]]],[32,1,1,161,162,[[897,1,1,161,162]]],[37,1,1,162,163,[[923,1,1,162,163]]],[38,1,1,163,164,[[928,1,1,163,164]]]],[341,343,353,1075,1566,1599,1705,1710,1726,1727,1988,2095,2097,2103,4322,4398,4402,4407,4896,4971,5287,5410,5440,5549,5979,6023,6068,6104,6118,6218,6377,6514,6519,6521,6526,6534,6581,6670,6730,6873,7091,7112,7305,7328,7456,7488,7489,7556,7563,7567,7644,7667,7668,7675,7682,7711,7716,7939,7979,8011,8023,8157,8210,8211,8218,8222,8280,8295,8345,8347,8362,8451,8493,8592,8596,8597,8598,8665,8673,8674,9233,9269,9278,9294,9299,9429,9504,9514,9559,9565,9599,9600,9692,9748,9755,9763,9780,9802,9804,9810,9870,9888,9890,9901,9903,9906,9939,9941,10032,10143,10247,10298,10426,10428,10661,10687,10695,10696,10770,10789,10790,10891,10892,10893,10899,10902,10927,10930,10931,10941,11489,11513,11565,11575,11633,11649,11707,11715,11718,11723,11933,12898,13964,16183,16185,16883,18995,19424,19446,19955,19956,19959,19973,19975,20008,20058,20074,20958,21263,21968,22575,22634,23066,23144]]],["Smite",[7,7,[[10,2,2,0,2,[[310,2,2,0,2]]],[11,2,2,2,4,[[321,1,1,2,3],[325,1,1,3,4]]],[19,1,1,4,5,[[646,1,1,4,5]]],[25,1,1,5,6,[[807,1,1,5,6]]],[29,1,1,6,7,[[887,1,1,6,7]]]],[9443,9445,9783,9889,16950,20574,22496]]],["beat",[4,4,[[4,1,1,0,1,[[177,1,1,0,1]]],[11,1,1,1,2,[[325,1,1,1,2]]],[19,1,1,2,3,[[650,1,1,2,3]]],[31,1,1,3,4,[[892,1,1,3,4]]]],[5550,9896,17058,22576]]],["beaten",[3,3,[[1,2,2,0,2,[[54,2,2,0,2]]],[4,1,1,2,3,[[177,1,1,2,3]]]],[1646,1648,5549]]],["beatest",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17057]]],["clapped",[1,1,[[11,1,1,0,1,[[323,1,1,0,1]]]],[9841]]],["forth",[1,1,[[27,1,1,0,1,[[875,1,1,0,1]]]],[22287]]],["give",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5550]]],["given",[3,3,[[11,2,2,0,2,[[320,1,1,0,1],[321,1,1,1,2]]],[13,1,1,2,3,[[388,1,1,2,3]]]],[9756,9771,11650]]],["kill",[4,3,[[0,2,2,0,2,[[3,1,1,0,1],[36,1,1,1,2]]],[8,2,1,2,3,[[252,2,1,2,3]]]],[94,1104,7627]]],["killed",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9290]]],["killeth",[11,10,[[2,4,3,0,3,[[113,4,3,0,3]]],[3,3,3,3,6,[[151,3,3,3,6]]],[5,2,2,6,8,[[206,2,2,6,8]]],[8,2,2,8,10,[[252,2,2,8,10]]]],[3463,3464,3467,4856,4860,4875,6375,6381,7643,7645]]],["made",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7522]]],["murderers",[1,1,[[11,1,1,0,1,[[326,1,1,0,1]]]],[9902]]],["punish",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3548]]],["slain",[13,12,[[3,4,3,0,3,[[141,4,3,0,3]]],[4,1,1,3,4,[[173,1,1,3,4]]],[6,1,1,4,5,[[225,1,1,4,5]]],[8,2,2,5,7,[[253,1,1,5,6],[256,1,1,6,7]]],[17,2,2,7,9,[[436,2,2,7,9]]],[23,3,3,9,12,[[762,1,1,9,10],[777,1,1,10,11],[785,1,1,11,12]]]],[4485,4486,4489,5448,6945,7683,7783,12884,12886,19405,19780,19966]]],["slay",[9,9,[[0,1,1,0,1,[[33,1,1,0,1]]],[4,2,2,1,3,[[171,1,1,1,2],[179,1,1,2,3]]],[9,1,1,3,4,[[287,1,1,3,4]]],[10,1,1,4,5,[[310,1,1,4,5]]],[11,1,1,5,6,[[322,1,1,5,6]]],[23,3,3,6,9,[[749,1,1,6,7],[764,1,1,7,8],[773,1,1,8,9]]]],[1010,5412,5610,8582,9444,9818,19064,19426,19656]]],["slayer",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4869]]],["slaying",[2,2,[[5,1,1,0,1,[[196,1,1,0,1]]],[25,1,1,1,2,[[810,1,1,1,2]]]],[6084,20630]]],["slew",[28,28,[[5,1,1,0,1,[[196,1,1,0,1]]],[6,7,7,1,8,[[211,1,1,1,2],[213,2,2,2,4],[219,1,1,4,5],[224,1,1,5,6],[225,1,1,6,7],[230,1,1,7,8]]],[8,5,5,8,13,[[239,1,1,8,9],[252,1,1,9,10],[253,1,1,10,11],[254,1,1,11,12],[264,1,1,12,13]]],[9,4,4,13,17,[[274,1,1,13,14],[287,2,2,14,16],[289,1,1,16,17]]],[10,4,4,17,21,[[310,4,4,17,21]]],[12,2,2,21,23,[[355,1,1,21,22],[357,1,1,22,23]]],[13,1,1,23,24,[[379,1,1,23,24]]],[22,1,1,24,25,[[744,1,1,24,25]]],[23,2,2,25,27,[[770,1,1,25,26],[785,1,1,26,27]]],[25,1,1,27,28,[[810,1,1,27,28]]]],[6074,6513,6597,6599,6798,6928,6944,7099,7299,7654,7703,7714,7972,8214,8599,8601,8674,9428,9429,9437,9444,10895,10933,11470,18925,19595,19960,20629]]],["slewest",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7781]]],["smite",[61,57,[[0,3,3,0,3,[[7,1,1,0,1],[31,2,2,1,3]]],[1,5,5,3,8,[[56,1,1,3,4],[58,1,1,4,5],[61,2,2,5,7],[66,1,1,7,8]]],[3,7,7,8,15,[[130,1,1,8,9],[138,1,1,9,10],[141,1,1,10,11],[151,4,4,11,15]]],[4,6,6,15,21,[[159,1,1,15,16],[171,1,1,16,17],[180,4,4,17,21]]],[5,2,2,21,23,[[198,1,1,21,22],[199,1,1,22,23]]],[6,2,2,23,25,[[230,2,2,23,25]]],[8,7,6,25,31,[[252,1,1,25,26],[253,1,1,26,27],[254,1,1,27,28],[255,1,1,28,29],[258,2,1,29,30],[261,1,1,30,31]]],[9,4,4,31,35,[[268,1,1,31,32],[271,1,1,32,33],[281,1,1,33,34],[284,1,1,34,35]]],[10,1,1,35,36,[[310,1,1,35,36]]],[11,5,3,36,39,[[315,1,1,36,37],[318,4,2,37,39]]],[18,1,1,39,40,[[598,1,1,39,40]]],[22,5,5,40,45,[[688,1,1,40,41],[689,2,2,41,43],[727,1,1,43,44],[736,1,1,44,45]]],[23,3,3,45,48,[[762,1,1,45,46],[765,1,1,46,47],[793,1,1,47,48]]],[25,4,4,48,52,[[806,1,1,48,49],[810,1,1,49,50],[822,1,1,50,51],[840,1,1,51,52]]],[29,2,2,52,54,[[881,1,1,52,53],[884,1,1,53,54]]],[37,4,3,54,57,[[919,1,1,54,55],[920,1,1,55,56],[922,2,1,56,57]]]],[204,936,939,1702,1757,1828,1829,1989,4120,4381,4488,4861,4862,4863,4866,5113,5417,5633,5638,5639,5646,6136,6166,7085,7093,7664,7687,7716,7763,7812,7913,8071,8156,8403,8489,9443,9595,9695,9696,16087,17874,17888,17899,18646,18790,19402,19447,20155,20548,20627,20961,21451,22410,22461,23003,23027,23049]]],["smiters",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18668]]],["smitest",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1567]]],["smiteth",[9,9,[[1,2,2,0,2,[[70,2,2,0,2]]],[4,2,2,2,4,[[177,1,1,2,3],[179,1,1,3,4]]],[9,1,1,4,5,[[271,1,1,4,5]]],[12,1,1,5,6,[[348,1,1,5,6]]],[22,1,1,6,7,[[687,1,1,6,7]]],[24,1,1,7,8,[[799,1,1,7,8]]],[25,1,1,8,9,[[808,1,1,8,9]]]],[2089,2092,5558,5609,8140,10679,17842,20384,20586]]],["smiting",[3,3,[[1,1,1,0,1,[[51,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[32,1,1,2,3,[[898,1,1,2,3]]]],[1565,9445,22661]]],["smitten",[30,30,[[1,3,3,0,3,[[58,2,2,0,2],[71,1,1,2,3]]],[3,2,2,3,5,[[138,1,1,3,4],[149,1,1,4,5]]],[6,1,1,5,6,[[211,1,1,5,6]]],[8,2,2,6,8,[[240,1,1,6,7],[241,1,1,7,8]]],[9,3,3,8,11,[[268,1,1,8,9],[274,1,1,9,10],[277,1,1,10,11]]],[10,1,1,11,12,[[301,1,1,11,12]]],[11,1,1,12,13,[[325,1,1,12,13]]],[12,1,1,13,14,[[355,1,1,13,14]]],[13,2,2,14,16,[[391,1,1,14,15],[394,1,1,15,16]]],[17,1,1,16,17,[[451,1,1,16,17]]],[18,2,2,17,19,[[546,1,1,17,18],[579,1,1,18,19]]],[22,3,3,19,22,[[683,1,1,19,20],[705,1,1,20,21],[731,1,1,21,22]]],[23,2,2,22,24,[[758,1,1,22,23],[781,1,1,23,24]]],[25,3,3,24,27,[[823,1,1,24,25],[834,1,1,25,26],[841,1,1,26,27]]],[27,2,2,27,29,[[867,1,1,27,28],[870,1,1,28,29]]],[29,1,1,29,30,[[882,1,1,29,30]]]],[1773,1774,2115,4403,4764,6517,7331,7350,8080,8219,8274,9123,9890,10900,11720,11781,13248,14961,15525,17764,18158,18715,19312,19884,20989,21301,21478,22168,22224,22419]]],["smote",[120,114,[[0,2,2,0,2,[[13,1,1,0,1],[18,1,1,1,2]]],[1,4,3,2,5,[[58,2,1,2,3],[61,1,1,3,4],[70,1,1,4,5]]],[3,9,9,5,14,[[119,1,1,5,6],[124,1,1,6,7],[127,1,1,7,8],[130,1,1,8,9],[137,2,2,9,11],[138,1,1,11,12],[148,1,1,12,13],[151,1,1,13,14]]],[4,3,3,14,17,[[155,1,1,14,15],[156,1,1,15,16],[181,1,1,16,17]]],[5,25,23,17,40,[[193,2,1,17,18],[194,2,2,18,20],[195,1,1,20,21],[196,10,10,21,31],[197,6,5,31,36],[198,2,2,36,38],[199,1,1,38,39],[205,1,1,39,40]]],[6,7,7,40,47,[[217,1,1,40,41],[219,1,1,41,42],[221,2,2,42,44],[225,1,1,44,45],[228,1,1,45,46],[230,1,1,46,47]]],[8,11,9,47,56,[[240,1,1,47,48],[241,2,1,48,49],[242,1,1,49,50],[249,1,1,50,51],[252,2,1,51,52],[257,1,1,52,53],[258,1,1,53,54],[259,1,1,54,55],[265,1,1,55,56]]],[9,14,14,56,70,[[267,1,1,56,57],[268,1,1,57,58],[269,1,1,58,59],[270,2,2,59,61],[271,1,1,61,62],[272,1,1,62,63],[274,1,1,63,64],[276,1,1,64,65],[280,1,1,65,66],[286,1,1,66,67],[289,1,1,67,68],[290,2,2,68,70]]],[10,3,3,70,73,[[305,1,1,70,71],[306,1,1,71,72],[310,1,1,72,73]]],[11,13,13,73,86,[[315,1,1,73,74],[318,1,1,74,75],[322,2,2,75,77],[324,1,1,77,78],[325,1,1,78,79],[327,4,4,79,83],[331,2,2,83,85],[337,1,1,85,86]]],[12,1,1,86,87,[[351,1,1,86,87]]],[13,5,4,87,91,[[380,1,1,87,88],[391,1,1,88,89],[394,3,2,89,91]]],[15,1,1,91,92,[[425,1,1,91,92]]],[16,1,1,92,93,[[434,1,1,92,93]]],[18,7,7,93,100,[[555,3,3,93,96],[582,2,2,96,98],[613,2,2,98,100]]],[21,1,1,100,101,[[675,1,1,100,101]]],[22,9,9,101,110,[[688,1,1,101,102],[692,2,2,102,104],[705,1,1,104,105],[708,1,1,105,106],[715,2,2,106,108],[735,1,1,108,109],[738,1,1,109,110]]],[23,3,3,110,113,[[781,1,1,110,111],[790,1,1,111,112],[796,1,1,112,113]]],[36,1,1,113,114,[[910,1,1,113,114]]]],[351,468,1767,1845,2096,3705,3956,4057,4153,4364,4375,4400,4722,4866,4978,5050,5686,5981,6024,6026,6055,6074,6090,6092,6094,6096,6097,6099,6101,6103,6105,6115,6117,6119,6121,6124,6131,6137,6175,6368,6707,6797,6850,6862,6937,7020,7102,7325,7350,7363,7539,7653,7806,7815,7844,7995,8037,8072,8108,8126,8127,8152,8164,8212,8258,8363,8564,8663,8702,8709,9276,9293,9445,9601,9692,9818,9825,9871,9889,9935,9941,9950,9955,10096,10098,10243,10785,11490,11717,11769,11787,12696,12839,15133,15164,15179,15639,15642,16206,16213,17605,17870,17934,17957,18158,18248,18388,18390,18782,18831,19889,20047,20303,22872]]],["stricken",[3,3,[[19,1,1,0,1,[[650,1,1,0,1]]],[22,1,1,1,2,[[679,1,1,1,2]]],[23,1,1,2,3,[[749,1,1,2,3]]]],[17079,17659,19061]]],["strike",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16899]]],["struck",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7254]]],["went",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9600]]],["wounded",[2,2,[[23,1,1,0,1,[[774,1,1,0,1]]],[37,1,1,1,2,[[923,1,1,1,2]]]],[19681,23065]]]]},{"k":"H5222","v":[["abjects",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14425]]]]},{"k":"H5223","v":[["*",[3,3,[[9,2,2,0,2,[[270,1,1,0,1],[275,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]]],[8124,8230,18924]]],["contrite",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18924]]],["lame",[2,2,[[9,2,2,0,2,[[270,1,1,0,1],[275,1,1,1,2]]]],[8124,8230]]]]},{"k":"H5224","v":[["Necho",[3,3,[[13,3,3,0,3,[[401,2,2,0,2],[402,1,1,2,3]]]],[11986,11988,11997]]]]},{"k":"H5225","v":[["Nachon's",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8163]]]]},{"k":"H5226","v":[["before",[1,1,[[1,1,1,0,1,[[63,1,1,0,1]]]],[1891]]]]},{"k":"H5227","v":[["*",[24,23,[[0,2,2,0,2,[[24,1,1,0,1],[29,1,1,1,2]]],[1,2,2,2,4,[[75,1,1,2,3],[89,1,1,3,4]]],[3,1,1,4,5,[[135,1,1,4,5]]],[5,2,2,5,7,[[201,1,1,5,6],[204,1,1,6,7]]],[6,3,3,7,10,[[228,1,1,7,8],[229,1,1,8,9],[230,1,1,9,10]]],[10,2,2,10,12,[[310,1,1,10,11],[312,1,1,11,12]]],[13,1,1,12,13,[[384,1,1,12,13]]],[16,2,1,13,14,[[430,2,1,13,14]]],[19,2,2,14,16,[[631,1,1,14,15],[632,1,1,15,16]]],[23,1,1,16,17,[[761,1,1,16,17]]],[24,1,1,17,18,[[798,1,1,17,18]]],[25,5,5,18,23,[[815,3,3,18,21],[847,1,1,21,22],[848,1,1,22,23]]]],[679,868,2270,2731,4293,6209,6310,6999,7034,7097,9437,9515,11576,12780,16515,16538,19373,20351,20734,20735,20738,21664,21699]]],["+",[4,4,[[3,1,1,0,1,[[135,1,1,0,1]]],[6,2,2,1,3,[[229,1,1,1,2],[230,1,1,2,3]]],[23,1,1,3,4,[[761,1,1,3,4]]]],[4293,7034,7097,19373]]],["against",[10,9,[[1,2,2,0,2,[[75,1,1,0,1],[89,1,1,1,2]]],[5,1,1,2,3,[[204,1,1,2,3]]],[10,2,2,3,5,[[310,1,1,3,4],[312,1,1,4,5]]],[13,1,1,5,6,[[384,1,1,5,6]]],[16,2,1,6,7,[[430,2,1,6,7]]],[25,2,2,7,9,[[847,1,1,7,8],[848,1,1,8,9]]]],[2270,2731,6310,9437,9515,11576,12780,21664,21699]]],["before",[8,8,[[0,1,1,0,1,[[29,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]],[6,1,1,2,3,[[228,1,1,2,3]]],[19,1,1,3,4,[[632,1,1,3,4]]],[24,1,1,4,5,[[798,1,1,4,5]]],[25,3,3,5,8,[[815,3,3,5,8]]]],[868,6209,6999,16538,20351,20734,20735,20738]]],["for",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[679]]],["on",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16515]]]]},{"k":"H5228","v":[["*",[4,4,[[9,1,1,0,1,[[281,1,1,0,1]]],[19,2,2,1,3,[[635,1,1,1,2],[651,1,1,2,3]]],[22,1,1,3,4,[[735,1,1,3,4]]]],[8392,16611,17105,18767]]],["plain",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16611]]],["right",[2,2,[[9,1,1,0,1,[[281,1,1,0,1]]],[19,1,1,1,2,[[651,1,1,1,2]]]],[8392,17105]]],["uprightness",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18767]]]]},{"k":"H5229","v":[["*",[4,4,[[22,3,3,0,3,[[704,1,1,0,1],[708,1,1,1,2],[737,1,1,2,3]]],[29,1,1,3,4,[[881,1,1,3,4]]]],[18140,18227,18814,22405]]],["equity",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18814]]],["right",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22405]]],["things",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18227]]],["uprightness",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18140]]]]},{"k":"H5230","v":[["*",[4,4,[[0,1,1,0,1,[[36,1,1,0,1]]],[3,1,1,1,2,[[141,1,1,1,2]]],[18,1,1,2,3,[[582,1,1,2,3]]],[38,1,1,3,4,[[925,1,1,3,4]]]],[1101,4489,15631,23103]]],["beguiled",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4489]]],["conspired",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1101]]],["deceiver",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23103]]],["subtilly",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15631]]]]},{"k":"H5231","v":[["wiles",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4489]]]]},{"k":"H5232","v":[["*",[2,2,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]]],[12159,12199]]],["+",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12159]]],["goods",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12199]]]]},{"k":"H5233","v":[["*",[5,5,[[5,1,1,0,1,[[208,1,1,0,1]]],[13,2,2,1,3,[[367,2,2,1,3]]],[20,2,2,3,5,[[663,1,1,3,4],[664,1,1,4,5]]]],[6434,11205,11206,17416,17419]]],["riches",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6434]]],["wealth",[4,4,[[13,2,2,0,2,[[367,2,2,0,2]]],[20,2,2,2,4,[[663,1,1,2,3],[664,1,1,3,4]]]],[11205,11206,17416,17419]]]]},{"k":"H5234","v":[["*",[50,47,[[0,10,8,0,8,[[26,1,1,0,1],[30,1,1,1,2],[36,2,2,2,4],[37,2,2,4,6],[41,4,2,6,8]]],[4,5,5,8,13,[[153,1,1,8,9],[168,1,1,9,10],[173,1,1,10,11],[184,1,1,11,12],[185,1,1,12,13]]],[6,1,1,13,14,[[228,1,1,13,14]]],[7,3,3,14,17,[[233,2,2,14,16],[234,1,1,16,17]]],[8,2,2,17,19,[[258,1,1,17,18],[261,1,1,18,19]]],[9,1,1,19,20,[[269,1,1,19,20]]],[10,5,4,20,24,[[304,3,2,20,22],[308,1,1,22,23],[310,1,1,23,24]]],[14,1,1,24,25,[[405,1,1,24,25]]],[15,2,2,25,27,[[418,1,1,25,26],[425,1,1,26,27]]],[17,8,8,27,35,[[437,1,1,27,28],[439,1,1,28,29],[442,1,1,29,30],[456,1,1,30,31],[459,2,2,31,33],[469,2,2,33,35]]],[18,2,2,35,37,[[580,1,1,35,36],[619,1,1,36,37]]],[19,4,4,37,41,[[647,1,1,37,38],[651,1,1,38,39],[653,1,1,39,40],[655,1,1,40,41]]],[22,2,2,41,43,[[739,1,1,41,42],[741,1,1,42,43]]],[23,2,2,43,45,[[763,1,1,43,44],[768,1,1,44,45]]],[24,1,1,45,46,[[800,1,1,45,46]]],[26,1,1,46,47,[[860,1,1,46,47]]]],[750,905,1115,1116,1144,1145,1259,1260,4909,5361,5464,5785,5819,6996,7159,7168,7186,7817,7922,8117,9223,9224,9348,9449,12110,12413,12695,12903,12946,13018,13384,13449,13453,13702,13708,15565,16290,16965,17102,17165,17217,18852,18882,19411,19529,20428,22075]]],["+",[7,7,[[0,1,1,0,1,[[41,1,1,0,1]]],[6,1,1,1,2,[[228,1,1,1,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[8,1,1,3,4,[[261,1,1,3,4]]],[10,1,1,4,5,[[304,1,1,4,5]]],[23,2,2,5,7,[[763,1,1,5,6],[768,1,1,6,7]]]],[1260,6996,7186,7922,9224,19411,19529]]],["Discern",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1144]]],["acknowledge",[5,5,[[4,2,2,0,2,[[173,1,1,0,1],[185,1,1,1,2]]],[22,2,2,2,4,[[739,1,1,2,3],[741,1,1,3,4]]],[26,1,1,4,5,[[860,1,1,4,5]]]],[5464,5819,18852,18882,22075]]],["acknowledged",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1145]]],["another",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9223]]],["could",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12695]]],["delivered",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7817]]],["discern",[3,3,[[0,1,1,0,1,[[30,1,1,0,1]]],[14,1,1,1,2,[[405,1,1,1,2]]],[17,1,1,2,3,[[439,1,1,2,3]]]],[905,12110,12946]]],["discerned",[2,2,[[0,1,1,0,1,[[26,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]]],[750,9449]]],["dissembleth",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17165]]],["knew",[5,5,[[0,3,3,0,3,[[36,1,1,0,1],[41,2,2,1,3]]],[10,1,1,3,4,[[308,1,1,3,4]]],[17,1,1,4,5,[[437,1,1,4,5]]]],[1116,1259,1260,9348,12903]]],["know",[7,7,[[0,1,1,0,1,[[36,1,1,0,1]]],[17,4,4,1,5,[[442,1,1,1,2],[456,1,1,2,3],[459,2,2,3,5]]],[18,2,2,5,7,[[580,1,1,5,6],[619,1,1,6,7]]]],[1115,13018,13384,13449,13453,15565,16290]]],["knoweth",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13708]]],["knowledge",[2,2,[[7,2,2,0,2,[[233,2,2,0,2]]]],[7159,7168]]],["known",[2,2,[[19,1,1,0,1,[[647,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[16965,20428]]],["notice",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8117]]],["perceived",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12413]]],["regardeth",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13702]]],["respect",[4,4,[[4,2,2,0,2,[[153,1,1,0,1],[168,1,1,1,2]]],[19,2,2,2,4,[[651,1,1,2,3],[655,1,1,3,4]]]],[4909,5361,17102,17217]]],["strange",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1259]]],["strangely",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5785]]],["woman",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9223]]]]},{"k":"H5235","v":[["strange",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13591]]]]},{"k":"H5236","v":[["*",[36,35,[[0,4,4,0,4,[[16,2,2,0,2],[34,2,2,2,4]]],[1,1,1,4,5,[[61,1,1,4,5]]],[2,1,1,5,6,[[111,1,1,5,6]]],[4,2,2,6,8,[[183,1,1,6,7],[184,1,1,7,8]]],[5,2,2,8,10,[[210,2,2,8,10]]],[6,1,1,10,11,[[220,1,1,10,11]]],[8,1,1,11,12,[[242,1,1,11,12]]],[9,2,2,12,14,[[288,2,2,12,14]]],[13,2,2,14,16,[[380,1,1,14,15],[399,1,1,15,16]]],[15,2,2,16,18,[[421,1,1,16,17],[425,1,1,17,18]]],[18,6,6,18,24,[[495,2,2,18,20],[558,1,1,20,21],[614,1,1,21,22],[621,2,2,22,24]]],[22,5,5,24,29,[[734,2,2,24,26],[738,1,1,26,27],[739,1,1,27,28],[740,1,1,28,29]]],[23,2,2,29,31,[[749,1,1,29,30],[752,1,1,30,31]]],[25,3,2,31,33,[[845,3,2,31,33]]],[26,1,1,33,34,[[860,1,1,33,34]]],[38,1,1,34,35,[[926,1,1,34,35]]]],[409,424,1013,1015,1859,3394,5744,5770,6496,6499,6827,7355,8647,8648,11478,11923,12513,12701,14162,14163,15226,16226,16312,16316,18756,18759,18831,18848,18862,19077,19172,21606,21608,22075,23114]]],["+",[12,11,[[0,2,2,0,2,[[16,2,2,0,2]]],[1,1,1,2,3,[[61,1,1,2,3]]],[2,1,1,3,4,[[111,1,1,3,4]]],[9,2,2,4,6,[[288,2,2,4,6]]],[15,1,1,6,7,[[421,1,1,6,7]]],[18,2,2,7,9,[[495,2,2,7,9]]],[25,3,2,9,11,[[845,3,2,9,11]]]],[409,424,1859,3394,8647,8648,12513,14162,14163,21606,21608]]],["alien",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18848]]],["strange",[17,17,[[0,2,2,0,2,[[34,2,2,0,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[5,2,2,3,5,[[210,2,2,3,5]]],[6,1,1,5,6,[[220,1,1,5,6]]],[8,1,1,6,7,[[242,1,1,6,7]]],[13,2,2,7,9,[[380,1,1,7,8],[399,1,1,8,9]]],[18,4,4,9,13,[[558,1,1,9,10],[614,1,1,10,11],[621,2,2,11,13]]],[23,2,2,13,15,[[749,1,1,13,14],[752,1,1,14,15]]],[26,1,1,15,16,[[860,1,1,15,16]]],[38,1,1,16,17,[[926,1,1,16,17]]]],[1013,1015,5770,6496,6499,6827,7355,11478,11923,15226,16226,16312,16316,19077,19172,22075,23114]]],["stranger",[3,3,[[22,3,3,0,3,[[734,2,2,0,2],[740,1,1,2,3]]]],[18756,18759,18862]]],["strangers",[3,3,[[4,1,1,0,1,[[183,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]],[22,1,1,2,3,[[738,1,1,2,3]]]],[5744,12701,18831]]]]},{"k":"H5237","v":[["*",[46,46,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,3,3,1,4,[[51,1,1,1,2],[67,1,1,2,3],[70,1,1,3,4]]],[4,5,5,4,9,[[166,1,1,4,5],[167,1,1,5,6],[169,1,1,6,7],[175,1,1,7,8],[181,1,1,8,9]]],[6,1,1,9,10,[[229,1,1,9,10]]],[7,1,1,10,11,[[233,1,1,10,11]]],[9,1,1,11,12,[[281,1,1,11,12]]],[10,4,4,12,16,[[298,2,2,12,14],[301,2,2,14,16]]],[13,2,2,16,18,[[372,2,2,16,18]]],[14,7,7,18,25,[[412,7,7,18,25]]],[15,2,2,25,27,[[425,2,2,25,27]]],[17,1,1,27,28,[[454,1,1,27,28]]],[18,1,1,28,29,[[546,1,1,28,29]]],[19,9,9,29,38,[[629,1,1,29,30],[632,2,2,30,32],[633,1,1,32,33],[634,1,1,33,34],[647,1,1,34,35],[650,1,1,35,36],[654,2,2,36,38]]],[20,1,1,38,39,[[664,1,1,38,39]]],[22,2,2,39,41,[[680,1,1,39,40],[706,1,1,40,41]]],[23,1,1,41,42,[[746,1,1,41,42]]],[24,1,1,42,43,[[801,1,1,42,43]]],[30,2,2,43,45,[[888,2,2,43,45]]],[35,1,1,45,46,[[906,1,1,45,46]]]],[888,1576,2002,2085,5311,5322,5379,5520,5701,7036,7159,8408,9026,9028,9109,9116,11314,11315,12254,12262,12263,12266,12269,12270,12296,12697,12698,13312,14943,16449,16527,16537,16564,16580,16970,17071,17171,17182,17419,17691,18185,18986,20444,22521,22522,22795]]],["+",[4,4,[[4,1,1,0,1,[[169,1,1,0,1]]],[19,2,2,1,3,[[629,1,1,1,2],[634,1,1,2,3]]],[20,1,1,3,4,[[664,1,1,3,4]]]],[5379,16449,16580,17419]]],["alien",[3,3,[[4,1,1,0,1,[[166,1,1,0,1]]],[17,1,1,1,2,[[454,1,1,1,2]]],[18,1,1,2,3,[[546,1,1,2,3]]]],[5311,13312,14943]]],["aliens",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20444]]],["foreigner",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5322]]],["foreigners",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22521]]],["outlandish",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12697]]],["strange",[17,17,[[1,3,3,0,3,[[51,1,1,0,1],[67,1,1,1,2],[70,1,1,2,3]]],[10,2,2,3,5,[[301,2,2,3,5]]],[14,7,7,5,12,[[412,7,7,5,12]]],[15,1,1,12,13,[[425,1,1,12,13]]],[19,1,1,13,14,[[650,1,1,13,14]]],[22,1,1,14,15,[[706,1,1,14,15]]],[23,1,1,15,16,[[746,1,1,15,16]]],[35,1,1,16,17,[[906,1,1,16,17]]]],[1576,2002,2085,9109,9116,12254,12262,12263,12266,12269,12270,12296,12698,17071,18185,18986,22795]]],["stranger",[13,13,[[4,2,2,0,2,[[175,1,1,0,1],[181,1,1,1,2]]],[6,1,1,2,3,[[229,1,1,2,3]]],[7,1,1,3,4,[[233,1,1,3,4]]],[9,1,1,4,5,[[281,1,1,4,5]]],[10,2,2,5,7,[[298,2,2,5,7]]],[13,2,2,7,9,[[372,2,2,7,9]]],[19,3,3,9,12,[[632,2,2,9,11],[654,1,1,11,12]]],[30,1,1,12,13,[[888,1,1,12,13]]]],[5520,5701,7036,7159,8408,9026,9028,11314,11315,16527,16537,17171,22522]]],["strangers",[2,2,[[0,1,1,0,1,[[30,1,1,0,1]]],[22,1,1,1,2,[[680,1,1,1,2]]]],[888,17691]]],["woman",[3,3,[[19,3,3,0,3,[[633,1,1,0,1],[647,1,1,1,2],[654,1,1,2,3]]]],[16564,16970,17182]]]]},{"k":"H5238","v":[["+",[2,2,[[11,1,1,0,1,[[332,1,1,0,1]]],[22,1,1,1,2,[[717,1,1,1,2]]]],[10111,18414]]]]},{"k":"H5239","v":[["end",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18280]]]]},{"k":"H5240","v":[["vile",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7569]]]]},{"k":"H5241","v":[["Nemuel",[3,3,[[3,2,2,0,2,[[142,2,2,0,2]]],[12,1,1,2,3,[[341,1,1,2,3]]]],[4498,4501,10409]]]]},{"k":"H5242","v":[["Nemuelites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4501]]]]},{"k":"H5243","v":[["*",[4,4,[[17,3,3,0,3,[[449,1,1,0,1],[453,1,1,1,2],[459,1,1,2,3]]],[18,1,1,3,4,[[514,1,1,3,4]]]],[13183,13292,13460,14452]]],["down",[2,2,[[17,1,1,0,1,[[449,1,1,0,1]]],[18,1,1,1,2,[[514,1,1,1,2]]]],[13183,14452]]],["off",[2,2,[[17,2,2,0,2,[[453,1,1,0,1],[459,1,1,1,2]]]],[13292,13460]]]]},{"k":"H5244","v":[["*",[2,2,[[19,2,2,0,2,[[633,1,1,0,1],[657,1,1,1,2]]]],[16546,17276]]],["ant",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16546]]],["ants",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17276]]]]},{"k":"H5245","v":[["leopard",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21939]]]]},{"k":"H5246","v":[["*",[6,6,[[21,1,1,0,1,[[674,1,1,0,1]]],[22,1,1,1,2,[[689,1,1,1,2]]],[23,2,2,2,4,[[749,1,1,2,3],[757,1,1,3,4]]],[27,1,1,4,5,[[874,1,1,4,5]]],[34,1,1,5,6,[[903,1,1,5,6]]]],[17590,17890,19064,19289,22273,22739]]],["+",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22739]]],["leopard",[4,4,[[22,1,1,0,1,[[689,1,1,0,1]]],[23,2,2,1,3,[[749,1,1,1,2],[757,1,1,2,3]]],[27,1,1,3,4,[[874,1,1,3,4]]]],[17890,19064,19289,22273]]],["leopards",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17590]]]]},{"k":"H5247","v":[["Nimrah",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4721]]]]},{"k":"H5248","v":[["Nimrod",[4,4,[[0,2,2,0,2,[[9,2,2,0,2]]],[12,1,1,2,3,[[338,1,1,2,3]]],[32,1,1,3,4,[[897,1,1,3,4]]]],[242,243,10262,22639]]]]},{"k":"H5249","v":[["Nimrim",[2,2,[[22,1,1,0,1,[[693,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[17966,20114]]]]},{"k":"H5250","v":[["Nimshi",[5,5,[[10,1,1,0,1,[[309,1,1,0,1]]],[11,3,3,1,4,[[321,3,3,1,4]]],[13,1,1,4,5,[[388,1,1,4,5]]]],[9403,9758,9770,9776,11651]]]]},{"k":"H5251","v":[["*",[20,20,[[3,3,3,0,3,[[137,2,2,0,2],[142,1,1,2,3]]],[18,1,1,3,4,[[537,1,1,3,4]]],[22,10,10,4,14,[[683,1,1,4,5],[689,2,2,5,7],[691,1,1,7,8],[696,1,1,8,9],[708,1,1,9,10],[709,1,1,10,11],[711,1,1,11,12],[727,1,1,12,13],[740,1,1,13,14]]],[23,5,5,14,19,[[748,2,2,14,16],[794,1,1,16,17],[795,2,2,17,19]]],[25,1,1,19,20,[[828,1,1,19,20]]]],[4348,4349,4499,14811,17765,17894,17896,17908,18000,18234,18259,18302,18658,18864,19033,19048,20168,20224,20239,21128]]],["+",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18259]]],["banner",[2,2,[[18,1,1,0,1,[[537,1,1,0,1]]],[22,1,1,1,2,[[691,1,1,1,2]]]],[14811,17908]]],["ensign",[5,5,[[22,5,5,0,5,[[683,1,1,0,1],[689,2,2,1,3],[696,1,1,3,4],[708,1,1,4,5]]]],[17765,17894,17896,18000,18234]]],["pole",[2,2,[[3,2,2,0,2,[[137,2,2,0,2]]]],[4348,4349]]],["sail",[2,2,[[22,1,1,0,1,[[711,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[18302,21128]]],["sign",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4499]]],["standard",[7,7,[[22,2,2,0,2,[[727,1,1,0,1],[740,1,1,1,2]]],[23,5,5,2,7,[[748,2,2,2,4],[794,1,1,4,5],[795,2,2,5,7]]]],[18658,18864,19033,19048,20168,20224,20239]]]]},{"k":"H5252","v":[["cause",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11410]]]]},{"k":"H5253","v":[["*",[9,9,[[4,2,2,0,2,[[171,1,1,0,1],[179,1,1,1,2]]],[19,2,2,2,4,[[649,1,1,2,3],[650,1,1,3,4]]],[22,2,2,4,6,[[737,2,2,4,6]]],[27,1,1,6,7,[[866,1,1,6,7]]],[32,2,2,7,9,[[894,1,1,7,8],[898,1,1,8,9]]]],[5420,5602,17043,17054,18813,18814,22162,22601,22662]]],["Remove",[2,2,[[19,2,2,0,2,[[649,1,1,0,1],[650,1,1,1,2]]]],[17043,17054]]],["away",[2,2,[[22,2,2,0,2,[[737,2,2,0,2]]]],[18813,18814]]],["hold",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22662]]],["remove",[2,2,[[4,1,1,0,1,[[171,1,1,0,1]]],[27,1,1,1,2,[[866,1,1,1,2]]]],[5420,22162]]],["removeth",[1,1,[[4,1,1,0,1,[[179,1,1,0,1]]]],[5602]]],["take",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22601]]]]},{"k":"H5254","v":[["*",[36,34,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,5,5,1,6,[[64,1,1,1,2],[65,1,1,2,3],[66,2,2,3,5],[69,1,1,5,6]]],[3,1,1,6,7,[[130,1,1,6,7]]],[4,8,7,7,14,[[156,1,1,7,8],[158,2,1,8,9],[160,2,2,9,11],[165,1,1,11,12],[180,1,1,12,13],[185,1,1,13,14]]],[6,4,4,14,18,[[212,1,1,14,15],[213,2,2,15,17],[216,1,1,17,18]]],[8,2,1,18,19,[[252,2,1,18,19]]],[10,1,1,19,20,[[300,1,1,19,20]]],[13,2,2,20,22,[[375,1,1,20,21],[398,1,1,21,22]]],[17,1,1,22,23,[[439,1,1,22,23]]],[18,6,6,23,29,[[503,1,1,23,24],[555,3,3,24,27],[572,1,1,27,28],[583,1,1,28,29]]],[20,2,2,29,31,[[660,1,1,29,30],[665,1,1,30,31]]],[22,1,1,31,32,[[685,1,1,31,32]]],[26,2,2,32,34,[[850,2,2,32,34]]]],[548,1945,1951,1985,1990,2071,4130,5038,5102,5139,5153,5275,5667,5818,6567,6569,6572,6693,7657,9080,11365,11906,12932,14275,15131,15154,15169,15463,15665,17334,17452,17794,21749,21751]]],["+",[11,11,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,2,2,1,3,[[66,2,2,1,3]]],[4,1,1,3,4,[[158,1,1,3,4]]],[6,3,3,4,7,[[212,1,1,4,5],[213,2,2,5,7]]],[13,1,1,7,8,[[375,1,1,7,8]]],[17,1,1,8,9,[[439,1,1,8,9]]],[22,1,1,9,10,[[685,1,1,9,10]]],[26,1,1,10,11,[[850,1,1,10,11]]]],[548,1985,1990,5102,6567,6569,6572,11365,12932,17794,21749]]],["adventure",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5667]]],["assayed",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5038]]],["prove",[9,9,[[1,2,2,0,2,[[65,1,1,0,1],[69,1,1,1,2]]],[4,3,3,2,5,[[160,2,2,2,4],[185,1,1,4,5]]],[6,1,1,5,6,[[216,1,1,5,6]]],[10,1,1,6,7,[[300,1,1,6,7]]],[18,1,1,7,8,[[503,1,1,7,8]]],[20,1,1,8,9,[[660,1,1,8,9]]]],[1951,2071,5139,5153,5818,6693,9080,14275,17334]]],["proved",[5,4,[[1,1,1,0,1,[[64,1,1,0,1]]],[8,2,1,1,2,[[252,2,1,1,2]]],[20,1,1,2,3,[[665,1,1,2,3]]],[26,1,1,3,4,[[850,1,1,3,4]]]],[1945,7657,17452,21751]]],["proveth",[1,1,[[4,1,1,0,1,[[165,1,1,0,1]]]],[5275]]],["tempted",[7,7,[[3,1,1,0,1,[[130,1,1,0,1]]],[4,1,1,1,2,[[158,1,1,1,2]]],[18,5,5,2,7,[[555,3,3,2,5],[572,1,1,5,6],[583,1,1,6,7]]]],[4130,5102,15131,15154,15169,15463,15665]]],["try",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11906]]]]},{"k":"H5255","v":[["*",[4,4,[[4,1,1,0,1,[[180,1,1,0,1]]],[18,1,1,1,2,[[529,1,1,1,2]]],[19,2,2,2,4,[[629,1,1,2,3],[642,1,1,3,4]]]],[5674,14715,16455,16832]]],["destroy",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16832]]],["out",[1,1,[[18,1,1,0,1,[[529,1,1,0,1]]]],[14715]]],["plucked",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5674]]],["rooted",[1,1,[[19,1,1,0,1,[[629,1,1,0,1]]]],[16455]]]]},{"k":"H5256","v":[["down",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12162]]]]},{"k":"H5257","v":[["*",[6,6,[[4,1,1,0,1,[[184,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]],[18,1,1,2,3,[[560,1,1,2,3]]],[25,1,1,3,4,[[833,1,1,3,4]]],[26,1,1,4,5,[[860,1,1,4,5]]],[32,1,1,5,6,[[897,1,1,5,6]]]],[5796,6175,15252,21278,22044,22638]]],["dukes",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6175]]],["offerings",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5796]]],["princes",[3,3,[[18,1,1,0,1,[[560,1,1,0,1]]],[25,1,1,1,2,[[833,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[15252,21278,22044]]],["principal",[1,1,[[32,1,1,0,1,[[897,1,1,0,1]]]],[22638]]]]},{"k":"H5258","v":[["*",[25,24,[[0,1,1,0,1,[[34,1,1,0,1]]],[1,3,3,1,4,[[74,1,1,1,2],[79,1,1,2,3],[86,1,1,3,4]]],[3,1,1,4,5,[[144,1,1,4,5]]],[9,1,1,5,6,[[289,1,1,5,6]]],[11,1,1,6,7,[[328,1,1,6,7]]],[12,1,1,7,8,[[348,1,1,7,8]]],[18,2,2,8,10,[[479,1,1,8,9],[493,1,1,9,10]]],[19,1,1,10,11,[[635,1,1,10,11]]],[22,4,4,11,15,[[707,1,1,11,12],[708,1,1,12,13],[718,1,1,13,14],[722,1,1,14,15]]],[23,8,7,15,22,[[751,1,1,15,16],[763,1,1,16,17],[776,1,1,17,18],[788,5,4,18,22]]],[25,1,1,22,23,[[821,1,1,22,23]]],[27,1,1,23,24,[[870,1,1,23,24]]]],[1025,2224,2391,2620,4584,8669,9976,10691,13951,14096,16625,18203,18218,18439,18543,19137,19420,19760,20027,20028,20029,20035,20923,22212]]],["+",[3,3,[[9,1,1,0,1,[[289,1,1,0,1]]],[11,1,1,1,2,[[328,1,1,1,2]]],[12,1,1,2,3,[[348,1,1,2,3]]]],[8669,9976,10691]]],["cover",[3,3,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]]],[2224,2620,18218]]],["melteth",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18439]]],["molten",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18543]]],["offer",[2,2,[[18,1,1,0,1,[[493,1,1,0,1]]],[27,1,1,1,2,[[870,1,1,1,2]]]],[14096,22212]]],["out",[10,9,[[22,1,1,0,1,[[707,1,1,0,1]]],[23,8,7,1,8,[[751,1,1,1,2],[763,1,1,2,3],[776,1,1,3,4],[788,5,4,4,8]]],[25,1,1,8,9,[[821,1,1,8,9]]]],[18203,19137,19420,19760,20027,20028,20029,20035,20923]]],["pour",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2391]]],["poured",[2,2,[[0,1,1,0,1,[[34,1,1,0,1]]],[3,1,1,1,2,[[144,1,1,1,2]]]],[1025,4584]]],["set",[1,1,[[18,1,1,0,1,[[479,1,1,0,1]]]],[13951]]],["up",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16625]]]]},{"k":"H5259","v":[["spread",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18125]]]]},{"k":"H5260","v":[["offer",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21804]]]]},{"k":"H5261","v":[["offerings",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12190]]]]},{"k":"H5262","v":[["*",[64,62,[[0,1,1,0,1,[[34,1,1,0,1]]],[1,3,3,1,4,[[78,2,2,1,3],[79,1,1,3,4]]],[2,3,3,4,7,[[112,3,3,4,7]]],[3,34,33,7,40,[[120,1,1,7,8],[122,2,2,8,10],[131,4,4,10,14],[144,9,8,14,22],[145,18,18,22,40]]],[11,2,2,40,42,[[328,2,2,40,42]]],[12,1,1,42,43,[[366,1,1,42,43]]],[13,1,1,43,44,[[395,1,1,43,44]]],[18,1,1,44,45,[[493,1,1,44,45]]],[22,3,3,45,48,[[719,1,1,45,46],[726,1,1,46,47],[735,1,1,47,48]]],[23,10,9,48,57,[[751,1,1,48,49],[754,1,1,49,50],[763,1,1,50,51],[776,1,1,51,52],[788,5,4,52,56],[795,1,1,56,57]]],[25,2,2,57,59,[[821,1,1,57,58],[846,1,1,58,59]]],[28,3,3,59,62,[[876,2,2,59,61],[877,1,1,61,62]]]],[1025,2376,2377,2391,3415,3420,3439,3750,3838,3840,4158,4160,4163,4177,4584,4585,4586,4587,4591,4592,4601,4608,4614,4619,4624,4626,4627,4629,4630,4632,4633,4635,4636,4638,4639,4641,4642,4645,4646,4647,9976,9978,11185,11826,14096,18480,18619,18771,19137,19215,19420,19760,20027,20028,20029,20035,20229,20923,21647,22300,22304,22325]]],["cover",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3750]]],["image",[3,3,[[22,1,1,0,1,[[726,1,1,0,1]]],[23,2,2,1,3,[[754,1,1,1,2],[795,1,1,2,3]]]],[18619,19215,20229]]],["images",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18480]]],["offering",[29,28,[[0,1,1,0,1,[[34,1,1,0,1]]],[1,3,3,1,4,[[78,2,2,1,3],[79,1,1,3,4]]],[2,1,1,4,5,[[112,1,1,4,5]]],[3,19,18,5,23,[[122,1,1,5,6],[131,4,4,6,10],[144,7,6,10,16],[145,7,7,16,23]]],[11,1,1,23,24,[[328,1,1,23,24]]],[22,1,1,24,25,[[735,1,1,24,25]]],[28,3,3,25,28,[[876,2,2,25,27],[877,1,1,27,28]]]],[1025,2376,2377,2391,3415,3840,4158,4160,4163,4177,4584,4585,4586,4587,4592,4601,4624,4630,4633,4636,4639,4642,4646,9976,18771,22300,22304,22325]]],["offerings",[30,29,[[2,2,2,0,2,[[112,2,2,0,2]]],[3,14,14,2,16,[[122,1,1,2,3],[144,2,2,3,5],[145,11,11,5,16]]],[11,1,1,16,17,[[328,1,1,16,17]]],[12,1,1,17,18,[[366,1,1,17,18]]],[13,1,1,18,19,[[395,1,1,18,19]]],[18,1,1,19,20,[[493,1,1,19,20]]],[23,8,7,20,27,[[751,1,1,20,21],[763,1,1,21,22],[776,1,1,22,23],[788,5,4,23,27]]],[25,2,2,27,29,[[821,1,1,27,28],[846,1,1,28,29]]]],[3420,3439,3838,4591,4608,4614,4619,4626,4627,4629,4632,4635,4638,4641,4645,4647,9978,11185,11826,14096,19137,19420,19760,20027,20028,20029,20035,20923,21647]]]]},{"k":"H5263","v":[["standardbearer",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17868]]]]},{"k":"H5264","v":[["ensign",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23015]]]]},{"k":"H5265","v":[["*",[146,140,[[0,12,11,0,11,[[10,1,1,0,1],[11,2,1,1,2],[12,1,1,2,3],[19,1,1,3,4],[32,2,2,4,6],[34,3,3,6,9],[36,1,1,9,10],[45,1,1,10,11]]],[1,12,11,11,22,[[61,1,1,11,12],[62,1,1,12,13],[63,4,3,13,16],[64,1,1,16,17],[65,1,1,17,18],[66,1,1,18,19],[68,1,1,19,20],[89,2,2,20,22]]],[3,89,85,22,107,[[117,1,1,22,23],[118,7,6,23,29],[120,2,2,29,31],[125,9,7,31,38],[126,16,15,38,53],[127,2,2,53,55],[128,2,2,55,57],[130,1,1,57,58],[136,1,1,58,59],[137,5,5,59,64],[138,1,1,64,65],[149,42,42,65,107]]],[4,7,7,107,114,[[153,3,3,107,110],[154,2,2,110,112],[162,2,2,112,114]]],[5,4,4,114,118,[[189,3,3,114,117],[195,1,1,117,118]]],[6,3,3,118,121,[[226,2,2,118,120],[228,1,1,120,121]]],[10,1,1,121,122,[[295,1,1,121,122]]],[11,4,4,122,126,[[315,1,1,122,123],[316,1,1,123,124],[331,2,2,124,126]]],[14,1,1,126,127,[[410,1,1,126,127]]],[17,2,2,127,129,[[439,1,1,127,128],[454,1,1,128,129]]],[18,3,3,129,132,[[555,2,2,129,131],[557,1,1,131,132]]],[20,1,1,132,133,[[668,1,1,132,133]]],[22,4,4,133,137,[[711,1,1,133,134],[715,2,2,134,136],[716,1,1,136,137]]],[23,2,2,137,139,[[748,1,1,137,138],[775,1,1,138,139]]],[37,1,1,139,140,[[920,1,1,139,140]]]],[268,307,329,496,972,977,1016,1027,1032,1100,1387,1853,1887,1899,1904,1908,1942,1948,1984,2028,2743,2744,3655,3667,3674,3675,3682,3689,3692,3748,3758,3982,3983,3984,3985,3986,3987,3988,3993,3994,4000,4001,4002,4005,4006,4009,4010,4013,4016,4017,4021,4022,4023,4055,4059,4074,4075,4133,4333,4344,4350,4351,4352,4353,4376,4763,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4801,4802,4803,4804,4805,4806,4807,4808,4899,4911,4932,4939,4962,5192,5193,5894,5896,5907,6054,6952,6963,7004,8895,9603,9607,10069,10097,12232,12951,13307,15139,15165,15206,17502,18299,18360,18389,18402,19034,19715,23018]]],["+",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]]],[1942,6963]]],["aside",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9607]]],["away",[2,2,[[6,1,1,0,1,[[226,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]]],[6952,12951]]],["blow",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15139]]],["brought",[2,2,[[10,1,1,0,1,[[295,1,1,0,1]]],[18,1,1,1,2,[[557,1,1,1,2]]]],[8895,15206]]],["departed",[30,30,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,1,1,1,2,[[68,1,1,1,2]]],[3,20,20,2,22,[[126,1,1,2,3],[149,19,19,3,22]]],[4,1,1,22,23,[[153,1,1,22,23]]],[11,3,3,23,26,[[315,1,1,23,24],[331,2,2,24,26]]],[14,1,1,26,27,[[410,1,1,26,27]]],[22,3,3,27,30,[[715,2,2,27,29],[716,1,1,29,30]]]],[1100,2028,4021,4763,4766,4768,4773,4775,4777,4778,4779,4780,4787,4790,4791,4795,4801,4802,4803,4804,4805,4808,4911,9603,10069,10097,12232,18360,18389,18402]]],["forth",[5,5,[[3,3,3,0,3,[[118,2,2,0,2],[127,1,1,2,3]]],[18,1,1,3,4,[[555,1,1,3,4]]],[23,1,1,4,5,[[775,1,1,4,5]]]],[3667,3674,4055,15165,19715]]],["forward",[18,17,[[1,1,1,0,1,[[63,1,1,0,1]]],[3,17,16,1,17,[[117,1,1,1,2],[118,4,3,2,5],[120,2,2,5,7],[126,8,8,7,15],[137,1,1,15,16],[138,1,1,16,17]]]],[1904,3655,3675,3682,3692,3748,3758,3993,4005,4006,4009,4010,4013,4016,4023,4350,4376]]],["get",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4133]]],["go",[1,1,[[3,1,1,0,1,[[118,1,1,0,1]]]],[3689]]],["journey",[12,12,[[0,2,2,0,2,[[32,1,1,0,1],[45,1,1,1,2]]],[1,2,2,2,4,[[62,1,1,2,3],[65,1,1,3,4]]],[3,3,3,4,7,[[126,2,2,4,6],[149,1,1,6,7]]],[4,5,5,7,12,[[153,2,2,7,9],[154,2,2,9,11],[162,1,1,11,12]]]],[972,1387,1887,1948,3994,4001,4772,4899,4932,4939,4962,5192]]],["journeyed",[28,26,[[0,8,8,0,8,[[10,1,1,0,1],[11,1,1,1,2],[12,1,1,2,3],[19,1,1,3,4],[32,1,1,4,5],[34,3,3,5,8]]],[1,3,3,8,11,[[61,1,1,8,9],[66,1,1,9,10],[89,1,1,10,11]]],[3,15,13,11,24,[[125,9,7,11,18],[127,1,1,18,19],[128,1,1,19,20],[136,1,1,20,21],[137,2,2,21,23],[149,1,1,23,24]]],[4,1,1,24,25,[[162,1,1,24,25]]],[5,1,1,25,26,[[195,1,1,25,26]]]],[268,307,329,496,977,1016,1027,1032,1853,1984,2744,3982,3983,3984,3985,3986,3987,3988,4059,4074,4333,4344,4351,4782,5193,6054]]],["journeying",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[4017]]],["marched",[1,1,[[1,1,1,0,1,[[63,1,1,0,1]]]],[1899]]],["onward",[1,1,[[1,1,1,0,1,[[89,1,1,0,1]]]],[2743]]],["remove",[1,1,[[5,1,1,0,1,[[189,1,1,0,1]]]],[5896]]],["removed",[26,26,[[1,1,1,0,1,[[63,1,1,0,1]]],[3,21,21,1,22,[[128,1,1,1,2],[137,2,2,2,4],[149,18,18,4,22]]],[5,2,2,22,24,[[189,2,2,22,24]]],[17,1,1,24,25,[[454,1,1,24,25]]],[22,1,1,25,26,[[711,1,1,25,26]]]],[1908,4075,4352,4353,4765,4767,4769,4770,4771,4774,4776,4781,4784,4785,4786,4788,4792,4794,4796,4797,4806,4807,5894,5907,13307,18299]]],["removeth",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17502]]],["still",[1,1,[[0,1,1,0,1,[[11,1,1,0,1]]]],[307]]],["took",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[4000]]],["way",[2,2,[[23,1,1,0,1,[[748,1,1,0,1]]],[37,1,1,1,2,[[920,1,1,1,2]]]],[19034,23018]]],["went",[8,8,[[1,1,1,0,1,[[63,1,1,0,1]]],[3,6,6,1,7,[[126,3,3,1,4],[149,3,3,4,7]]],[6,1,1,7,8,[[228,1,1,7,8]]]],[1908,4002,4021,4022,4783,4789,4793,7004]]]]},{"k":"H5266","v":[["up",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16247]]]]},{"k":"H5267","v":[["*",[3,2,[[26,3,2,0,2,[[852,1,1,0,1],[855,2,1,1,2]]]],[21829,21928]]],["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21928]]],["up",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[855,1,1,1,2]]]],[21829,21928]]]]},{"k":"H5268","v":[["Nisroch",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10098,18390]]]]},{"k":"H5269","v":[["Neah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6334]]]]},{"k":"H5270","v":[["Noah",[4,4,[[3,3,3,0,3,[[142,1,1,0,1],[143,1,1,1,2],[152,1,1,2,3]]],[5,1,1,3,4,[[203,1,1,3,4]]]],[4522,4555,4890,6278]]]]},{"k":"H5271","v":[["*",[47,46,[[0,2,2,0,2,[[7,1,1,0,1],[45,1,1,1,2]]],[2,1,1,2,3,[[111,1,1,2,3]]],[3,2,2,3,5,[[146,2,2,3,5]]],[8,2,2,5,7,[[247,1,1,5,6],[252,1,1,6,7]]],[9,1,1,7,8,[[285,1,1,7,8]]],[10,1,1,8,9,[[308,1,1,8,9]]],[17,2,2,9,11,[[448,1,1,9,10],[466,1,1,10,11]]],[18,8,8,11,19,[[502,1,1,11,12],[548,2,2,12,14],[580,1,1,14,15],[604,1,1,15,16],[606,2,2,16,18],[621,1,1,18,19]]],[19,2,2,19,21,[[629,1,1,19,20],[632,1,1,20,21]]],[22,3,3,21,24,[[725,2,2,21,23],[732,1,1,23,24]]],[23,8,8,24,32,[[746,1,1,24,25],[747,3,3,25,28],[766,1,1,28,29],[775,1,1,29,30],[776,1,1,30,31],[792,1,1,31,32]]],[24,1,1,32,33,[[799,1,1,32,33]]],[25,9,8,33,41,[[805,1,1,33,34],[817,3,3,34,37],[824,5,4,37,41]]],[27,1,1,41,42,[[863,1,1,41,42]]],[28,1,1,42,43,[[876,1,1,42,43]]],[37,1,1,43,44,[[923,1,1,43,44]]],[38,2,2,44,46,[[926,2,2,44,46]]]],[204,1420,3382,4651,4664,7462,7651,8518,9353,13179,13606,14258,14981,14993,15554,16125,16133,16134,16317,16450,16535,18611,18614,18729,18967,19006,19026,19027,19475,19710,19761,20091,20381,20543,20784,20805,20822,21010,21015,21026,21028,22120,22299,23064,23117,23118]]],["+",[20,20,[[0,2,2,0,2,[[7,1,1,0,1],[45,1,1,1,2]]],[8,2,2,2,4,[[247,1,1,2,3],[252,1,1,3,4]]],[9,1,1,4,5,[[285,1,1,4,5]]],[10,1,1,5,6,[[308,1,1,5,6]]],[17,1,1,6,7,[[466,1,1,6,7]]],[18,4,4,7,11,[[548,2,2,7,9],[606,2,2,9,11]]],[22,2,2,11,13,[[725,2,2,11,13]]],[23,5,5,13,18,[[747,2,2,13,15],[766,1,1,15,16],[776,1,1,16,17],[792,1,1,17,18]]],[25,1,1,18,19,[[805,1,1,18,19]]],[37,1,1,19,20,[[923,1,1,19,20]]]],[204,1420,7462,7651,8518,9353,13606,14981,14993,16133,16134,18611,18614,19026,19027,19475,19761,20091,20543,23064]]],["youth",[27,26,[[2,1,1,0,1,[[111,1,1,0,1]]],[3,2,2,1,3,[[146,2,2,1,3]]],[17,1,1,3,4,[[448,1,1,3,4]]],[18,4,4,4,8,[[502,1,1,4,5],[580,1,1,5,6],[604,1,1,6,7],[621,1,1,7,8]]],[19,2,2,8,10,[[629,1,1,8,9],[632,1,1,9,10]]],[22,1,1,10,11,[[732,1,1,10,11]]],[23,3,3,11,14,[[746,1,1,11,12],[747,1,1,12,13],[775,1,1,13,14]]],[24,1,1,14,15,[[799,1,1,14,15]]],[25,8,7,15,22,[[817,3,3,15,18],[824,5,4,18,22]]],[27,1,1,22,23,[[863,1,1,22,23]]],[28,1,1,23,24,[[876,1,1,23,24]]],[38,2,2,24,26,[[926,2,2,24,26]]]],[3382,4651,4664,13179,14258,15554,16125,16317,16450,16535,18729,18967,19006,19710,20381,20784,20805,20822,21010,21015,21026,21028,22120,22299,23117,23118]]]]},{"k":"H5272","v":[["Neiel",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6348]]]]},{"k":"H5273","v":[["*",[13,13,[[9,2,2,0,2,[[267,1,1,0,1],[289,1,1,1,2]]],[17,1,1,2,3,[[471,1,1,2,3]]],[18,6,6,3,9,[[493,2,2,3,5],[558,1,1,5,6],[610,1,1,6,7],[612,1,1,7,8],[624,1,1,8,9]]],[19,3,3,9,12,[[649,1,1,9,10],[650,1,1,10,11],[651,1,1,11,12]]],[21,1,1,12,13,[[671,1,1,12,13]]]],[8045,8654,13747,14098,14103,15219,16170,16178,16352,17033,17052,17083,17553]]],["pleasant",[9,9,[[9,1,1,0,1,[[267,1,1,0,1]]],[18,5,5,1,6,[[493,1,1,1,2],[558,1,1,2,3],[610,1,1,3,4],[612,1,1,4,5],[624,1,1,5,6]]],[19,2,2,6,8,[[649,1,1,6,7],[651,1,1,7,8]]],[21,1,1,8,9,[[671,1,1,8,9]]]],[8045,14098,15219,16170,16178,16352,17033,17083,17553]]],["pleasures",[2,2,[[17,1,1,0,1,[[471,1,1,0,1]]],[18,1,1,1,2,[[493,1,1,1,2]]]],[13747,14103]]],["sweet",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[19,1,1,1,2,[[650,1,1,1,2]]]],[8654,17052]]]]},{"k":"H5274","v":[["*",[8,7,[[6,2,2,0,2,[[213,2,2,0,2]]],[9,2,2,2,4,[[279,2,2,2,4]]],[13,1,1,4,5,[[394,1,1,4,5]]],[21,2,1,5,6,[[674,2,1,5,6]]],[25,1,1,6,7,[[817,1,1,6,7]]]],[6591,6592,8334,8335,11779,17594,20772]]],["bolt",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8334]]],["bolted",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8335]]],["inclosed",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17594]]],["locked",[2,2,[[6,2,2,0,2,[[213,2,2,0,2]]]],[6591,6592]]],["shod",[2,2,[[13,1,1,0,1,[[394,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[11779,20772]]],["up",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17594]]]]},{"k":"H5275","v":[["*",[22,22,[[0,1,1,0,1,[[13,1,1,0,1]]],[1,2,2,1,3,[[52,1,1,1,2],[61,1,1,2,3]]],[4,3,3,3,6,[[177,2,2,3,5],[181,1,1,5,6]]],[5,3,3,6,9,[[191,1,1,6,7],[195,2,2,7,9]]],[7,2,2,9,11,[[235,2,2,9,11]]],[10,1,1,11,12,[[292,1,1,11,12]]],[18,2,2,12,14,[[537,1,1,12,13],[585,1,1,13,14]]],[21,1,1,14,15,[[677,1,1,14,15]]],[22,3,3,15,18,[[683,1,1,15,16],[689,1,1,16,17],[698,1,1,17,18]]],[25,2,2,18,20,[[825,2,2,18,20]]],[29,2,2,20,22,[[880,1,1,20,21],[886,1,1,21,22]]]],[359,1584,1827,5556,5557,5684,5949,6042,6050,7197,7198,8775,14815,15751,17628,17766,17899,18031,21073,21079,22385,22487]]],["+",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[359]]],["dryshod",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17899]]],["shoe",[9,9,[[4,3,3,0,3,[[177,2,2,0,2],[181,1,1,2,3]]],[5,1,1,3,4,[[191,1,1,3,4]]],[7,2,2,4,6,[[235,2,2,4,6]]],[18,2,2,6,8,[[537,1,1,6,7],[585,1,1,7,8]]],[22,1,1,8,9,[[698,1,1,8,9]]]],[5556,5557,5684,5949,7197,7198,14815,15751,18031]]],["shoes",[11,11,[[1,2,2,0,2,[[52,1,1,0,1],[61,1,1,1,2]]],[5,2,2,2,4,[[195,2,2,2,4]]],[10,1,1,4,5,[[292,1,1,4,5]]],[21,1,1,5,6,[[677,1,1,5,6]]],[22,1,1,6,7,[[683,1,1,6,7]]],[25,2,2,7,9,[[825,2,2,7,9]]],[29,2,2,9,11,[[880,1,1,9,10],[886,1,1,10,11]]]],[1584,1827,6042,6050,8775,17628,17766,21073,21079,22385,22487]]]]},{"k":"H5276","v":[["*",[8,8,[[0,1,1,0,1,[[48,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]],[18,1,1,2,3,[[618,1,1,2,3]]],[19,3,3,3,6,[[629,1,1,3,4],[636,1,1,4,5],[651,1,1,5,6]]],[21,1,1,6,7,[[677,1,1,6,7]]],[25,1,1,7,8,[[833,1,1,7,8]]]],[1488,8048,16282,16443,16655,17104,17633,21267]]],["beauty",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21267]]],["delight",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17104]]],["pleasant",[5,5,[[0,1,1,0,1,[[48,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]],[19,2,2,2,4,[[629,1,1,2,3],[636,1,1,3,4]]],[21,1,1,4,5,[[677,1,1,4,5]]]],[1488,8048,16443,16655,17633]]],["sweet",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16282]]]]},{"k":"H5277","v":[["Naam",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10400]]]]},{"k":"H5278","v":[["*",[7,7,[[18,2,2,0,2,[[504,1,1,0,1],[567,1,1,1,2]]],[19,3,3,2,5,[[630,1,1,2,3],[642,1,1,3,4],[643,1,1,4,5]]],[37,2,2,5,7,[[921,2,2,5,7]]]],[14289,15395,16472,16833,16864,23035,23038]]],["Beauty",[2,2,[[37,2,2,0,2,[[921,2,2,0,2]]]],[23035,23038]]],["Pleasant",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16864]]],["beauty",[2,2,[[18,2,2,0,2,[[504,1,1,0,1],[567,1,1,1,2]]]],[14289,15395]]],["pleasant",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16833]]],["pleasantness",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16472]]]]},{"k":"H5279","v":[["Naamah",[5,5,[[0,1,1,0,1,[[3,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]],[10,2,2,2,4,[[304,2,2,2,4]]],[13,1,1,4,5,[[378,1,1,4,5]]]],[101,6243,9239,9249,11450]]]]},{"k":"H5280","v":[["Naamites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4529]]]]},{"k":"H5281","v":[["*",[21,20,[[7,21,20,0,20,[[232,8,8,0,8],[233,6,5,8,13],[234,1,1,13,14],[235,6,6,14,20]]]],[7129,7130,7135,7138,7146,7147,7148,7149,7150,7151,7155,7169,7171,7173,7193,7195,7199,7204,7206,7207]]],["Naomi",[20,19,[[7,20,19,0,19,[[232,7,7,0,7],[233,6,5,7,12],[234,1,1,12,13],[235,6,6,13,19]]]],[7129,7135,7138,7146,7147,7148,7149,7150,7151,7155,7169,7171,7173,7193,7195,7199,7204,7206,7207]]],["Naomi's",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7130]]]]},{"k":"H5282","v":[["pleasant",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17993]]]]},{"k":"H5283","v":[["*",[16,14,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,2,1,1,2,[[142,2,1,1,2]]],[11,11,10,2,12,[[317,11,10,2,12]]],[12,2,2,12,14,[[345,2,2,12,14]]]],[1407,4529,9648,9649,9653,9656,9658,9664,9667,9668,9670,9674,10579,10582]]],["Naaman",[15,13,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,2,1,1,2,[[142,2,1,1,2]]],[11,10,9,2,11,[[317,10,9,2,11]]],[12,2,2,11,13,[[345,2,2,11,13]]]],[1407,4529,9648,9653,9656,9658,9664,9667,9668,9670,9674,10579,10582]]],["Naaman's",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9649]]]]},{"k":"H5284","v":[["Naamathite",[4,4,[[17,4,4,0,4,[[437,1,1,0,1],[446,1,1,1,2],[455,1,1,2,3],[477,1,1,3,4]]]],[12902,13109,13327,13931]]]]},{"k":"H5285","v":[["*",[2,2,[[22,2,2,0,2,[[685,1,1,0,1],[733,1,1,1,2]]]],[17801,18753]]],["thorn",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18753]]],["thorns",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17801]]]]},{"k":"H5286","v":[["yell",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20250]]]]},{"k":"H5287","v":[["*",[11,9,[[1,1,1,0,1,[[63,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[15,3,1,2,3,[[417,3,1,2,3]]],[17,1,1,3,4,[[473,1,1,3,4]]],[18,2,2,4,6,[[586,1,1,4,5],[613,1,1,5,6]]],[22,3,3,6,9,[[711,2,2,6,8],[730,1,1,8,9]]]],[1916,6969,12395,13806,15778,16211,18288,18294,18698]]],["+",[2,2,[[1,1,1,0,1,[[63,1,1,0,1]]],[15,1,1,1,2,[[417,1,1,1,2]]]],[1916,12395]]],["down",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15778]]],["myself",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6969]]],["off",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18288]]],["out",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12395]]],["overthrew",[1,1,[[18,1,1,0,1,[[613,1,1,0,1]]]],[16211]]],["shaken",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13806]]],["shaketh",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18294]]],["shook",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12395]]],["thyself",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18698]]]]},{"k":"H5288","v":[["*",[239,221,[[0,27,24,0,24,[[13,1,1,0,1],[17,1,1,1,2],[18,1,1,2,3],[20,6,5,3,8],[21,5,4,8,12],[24,1,1,12,13],[33,1,1,13,14],[36,1,1,14,15],[40,1,1,15,16],[42,1,1,16,17],[43,7,6,17,23],[47,1,1,23,24]]],[1,4,4,24,28,[[51,1,1,24,25],[59,1,1,25,26],[73,1,1,26,27],[82,1,1,27,28]]],[3,2,2,28,30,[[127,1,1,28,29],[138,1,1,29,30]]],[4,1,1,30,31,[[180,1,1,30,31]]],[5,2,2,31,33,[[192,2,2,31,33]]],[6,23,21,33,54,[[217,2,2,33,35],[218,3,2,35,37],[219,2,1,37,38],[223,5,5,38,43],[226,1,1,43,44],[227,3,3,44,47],[228,2,2,47,49],[229,5,5,49,54]]],[7,6,5,54,59,[[233,6,5,54,59]]],[8,60,52,59,111,[[236,5,4,59,63],[237,7,7,63,70],[238,2,2,70,72],[239,1,1,72,73],[244,7,7,73,80],[245,1,1,80,81],[249,2,2,81,83],[251,2,2,83,85],[252,4,4,85,89],[255,12,8,89,97],[256,3,3,97,100],[260,11,8,100,108],[261,1,1,108,109],[265,2,2,109,111]]],[9,26,25,111,136,[[267,4,4,111,115],[268,2,2,115,117],[270,1,1,117,118],[275,1,1,118,119],[278,1,1,119,120],[279,5,5,120,125],[280,1,1,125,126],[282,2,2,126,128],[283,1,1,128,129],[284,6,5,129,134],[285,1,1,134,135],[286,1,1,135,136]]],[10,11,11,136,147,[[293,1,1,136,137],[301,2,2,137,139],[304,2,2,139,141],[308,1,1,141,142],[309,1,1,142,143],[310,4,4,143,147]]],[11,24,21,147,168,[[314,1,1,147,148],[316,13,11,148,159],[317,4,4,159,163],[318,2,2,163,165],[320,1,1,165,166],[321,2,1,166,167],[331,1,1,167,168]]],[12,3,3,168,171,[[349,1,1,168,169],[359,1,1,169,170],[366,1,1,170,171]]],[13,2,2,171,173,[[379,1,1,171,172],[400,1,1,172,173]]],[15,8,8,173,181,[[416,3,3,173,176],[417,3,3,176,179],[418,1,1,179,180],[425,1,1,180,181]]],[16,4,4,181,185,[[427,1,1,181,182],[428,1,1,182,183],[431,2,2,183,185]]],[17,7,7,185,192,[[436,4,4,185,189],[459,1,1,189,190],[464,2,2,190,192]]],[18,3,3,192,195,[[514,1,1,192,193],[596,1,1,193,194],[625,1,1,194,195]]],[19,7,7,195,202,[[628,1,1,195,196],[634,1,1,196,197],[647,1,1,197,198],[649,2,2,198,200],[650,1,1,200,201],[656,1,1,201,202]]],[20,1,1,202,203,[[668,1,1,202,203]]],[22,11,11,203,214,[[681,2,2,203,205],[685,1,1,205,206],[686,1,1,206,207],[688,1,1,207,208],[689,1,1,208,209],[691,1,1,209,210],[698,1,1,210,211],[715,1,1,211,212],[718,1,1,212,213],[743,1,1,213,214]]],[23,3,3,214,217,[[745,2,2,214,216],[795,1,1,216,217]]],[24,2,2,217,219,[[798,1,1,217,218],[801,1,1,218,219]]],[27,1,1,219,220,[[872,1,1,219,220]]],[37,1,1,220,221,[[912,1,1,220,221]]]],[360,431,461,525,530,531,532,533,550,552,559,566,685,999,1085,1207,1298,1346,1354,1355,1356,1357,1358,1467,1560,1786,2182,2484,4051,4397,5661,5970,5972,6704,6705,6733,6739,6808,6889,6891,6892,6896,6908,6975,6987,6991,6992,6996,7008,7027,7033,7035,7037,7043,7154,7155,7158,7164,7170,7234,7236,7237,7239,7251,7253,7255,7257,7258,7261,7266,7277,7284,7318,7394,7396,7398,7399,7401,7413,7418,7432,7509,7514,7606,7613,7651,7660,7673,7676,7751,7765,7766,7767,7768,7769,7770,7771,7774,7776,7777,7866,7869,7870,7873,7875,7880,7886,7888,7927,7991,7995,8027,8028,8035,8037,8063,8070,8132,8236,8302,8334,8345,8346,8349,8351,8377,8427,8428,8467,8483,8490,8493,8507,8510,8528,8565,8823,9125,9136,9221,9235,9384,9390,9422,9423,9425,9427,9574,9615,9622,9625,9627,9628,9632,9633,9634,9635,9638,9641,9661,9667,9669,9670,9689,9691,9731,9760,10067,10748,10969,11165,11460,11936,12375,12381,12382,12392,12397,12398,12406,12690,12726,12760,12796,12798,12884,12885,12886,12888,13441,13537,13540,14475,15907,16383,16404,16582,16965,17021,17030,17057,17239,17509,17711,17712,17798,17811,17869,17890,17924,18033,18358,18450,18917,18952,18953,20234,20353,20455,22241,22903]]],["+",[12,11,[[0,1,1,0,1,[[18,1,1,0,1]]],[5,1,1,1,2,[[192,1,1,1,2]]],[8,4,3,2,5,[[244,1,1,2,3],[260,2,1,3,4],[261,1,1,4,5]]],[9,3,3,5,8,[[267,1,1,5,6],[268,1,1,6,7],[286,1,1,7,8]]],[15,1,1,8,9,[[425,1,1,8,9]]],[16,1,1,9,10,[[428,1,1,9,10]]],[19,1,1,10,11,[[650,1,1,10,11]]]],[461,5970,7394,7875,7927,8037,8070,8565,12690,12760,17057]]],["babe",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1560]]],["boys",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[685]]],["child",[43,41,[[6,5,5,0,5,[[223,5,5,0,5]]],[8,11,11,5,16,[[236,4,4,5,9],[237,4,4,9,13],[238,2,2,13,15],[239,1,1,15,16]]],[9,1,1,16,17,[[278,1,1,16,17]]],[10,4,4,17,21,[[293,1,1,17,18],[301,1,1,18,19],[304,2,2,19,21]]],[11,8,6,21,27,[[316,7,5,21,26],[317,1,1,26,27]]],[19,4,4,27,31,[[647,1,1,27,28],[649,2,2,28,30],[656,1,1,30,31]]],[20,1,1,31,32,[[668,1,1,31,32]]],[22,6,6,32,38,[[681,1,1,32,33],[685,1,1,33,34],[686,1,1,34,35],[688,1,1,35,36],[689,1,1,36,37],[743,1,1,37,38]]],[23,2,2,38,40,[[745,2,2,38,40]]],[27,1,1,40,41,[[872,1,1,40,41]]]],[6889,6891,6892,6896,6908,7234,7236,7237,7239,7251,7258,7261,7266,7277,7284,7318,8302,8823,9125,9221,9235,9632,9633,9634,9635,9638,9661,16965,17021,17030,17239,17509,17712,17798,17811,17869,17890,18917,18952,18953,22241]]],["children",[7,7,[[8,1,1,0,1,[[251,1,1,0,1]]],[11,1,1,1,2,[[314,1,1,1,2]]],[17,2,2,2,4,[[459,1,1,2,3],[464,1,1,3,4]]],[18,1,1,4,5,[[625,1,1,4,5]]],[22,1,1,5,6,[[681,1,1,5,6]]],[24,1,1,6,7,[[801,1,1,6,7]]]],[7606,9574,13441,13537,16383,17711,20455]]],["lad",[32,26,[[0,17,15,0,15,[[20,6,5,0,5],[21,2,2,5,7],[36,1,1,7,8],[42,1,1,8,9],[43,7,6,9,15]]],[6,1,1,15,16,[[226,1,1,15,16]]],[8,12,8,16,24,[[255,12,8,16,24]]],[9,1,1,24,25,[[283,1,1,24,25]]],[11,1,1,25,26,[[316,1,1,25,26]]]],[525,530,531,532,533,552,559,1085,1298,1346,1354,1355,1356,1357,1358,6975,7751,7765,7766,7767,7768,7769,7770,7771,8467,9622]]],["lads",[1,1,[[0,1,1,0,1,[[47,1,1,0,1]]]],[1467]]],["man",[37,34,[[0,3,3,0,3,[[17,1,1,0,1],[33,1,1,1,2],[40,1,1,2,3]]],[1,1,1,3,4,[[82,1,1,3,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[6,9,8,5,13,[[218,1,1,5,6],[219,2,1,6,7],[227,3,3,7,10],[228,2,2,10,12],[229,1,1,12,13]]],[8,4,4,13,17,[[249,2,2,13,15],[252,1,1,15,16],[265,1,1,16,17]]],[9,10,9,17,26,[[267,3,3,17,20],[279,1,1,20,21],[280,1,1,21,22],[284,5,4,22,26]]],[10,1,1,26,27,[[301,1,1,26,27]]],[11,3,2,27,29,[[318,1,1,27,28],[321,2,1,28,29]]],[12,1,1,29,30,[[349,1,1,29,30]]],[18,1,1,30,31,[[596,1,1,30,31]]],[19,2,2,31,33,[[628,1,1,31,32],[634,1,1,32,33]]],[37,1,1,33,34,[[912,1,1,33,34]]]],[431,999,1207,2484,4051,6733,6808,6987,6991,6992,6996,7008,7043,7509,7514,7676,7991,8027,8028,8035,8351,8377,8483,8490,8507,8510,9136,9691,9760,10748,15907,16404,16582,22903]]],["men",[35,32,[[0,4,4,0,4,[[13,1,1,0,1],[21,3,3,1,4]]],[1,1,1,4,5,[[73,1,1,4,5]]],[5,1,1,5,6,[[192,1,1,5,6]]],[7,4,3,6,9,[[233,4,3,6,9]]],[8,11,9,9,18,[[237,1,1,9,10],[256,2,2,10,12],[260,8,6,12,18]]],[9,5,5,18,23,[[268,1,1,18,19],[270,1,1,19,20],[279,1,1,20,21],[282,1,1,21,22],[284,1,1,22,23]]],[10,4,4,23,27,[[310,4,4,23,27]]],[11,2,2,27,29,[[316,1,1,27,28],[317,1,1,28,29]]],[17,2,2,29,31,[[436,1,1,29,30],[464,1,1,30,31]]],[22,1,1,31,32,[[691,1,1,31,32]]]],[360,550,552,566,2182,5972,7158,7164,7170,7257,7776,7777,7866,7869,7870,7873,7886,7888,8063,8132,8349,8428,8493,9422,9423,9425,9427,9625,9669,12888,13540,17924]]],["servant",[32,32,[[6,6,6,0,6,[[217,2,2,0,2],[229,4,4,2,6]]],[7,2,2,6,8,[[233,2,2,6,8]]],[8,9,9,8,17,[[237,2,2,8,10],[244,6,6,10,16],[245,1,1,16,17]]],[9,4,4,17,21,[[275,1,1,17,18],[279,1,1,18,19],[282,1,1,19,20],[285,1,1,20,21]]],[10,2,2,21,23,[[308,1,1,21,22],[309,1,1,22,23]]],[11,7,7,23,30,[[316,4,4,23,27],[317,1,1,27,28],[318,1,1,28,29],[320,1,1,29,30]]],[15,2,2,30,32,[[416,1,1,30,31],[418,1,1,31,32]]]],[6704,6705,7027,7033,7035,7037,7154,7155,7253,7255,7396,7398,7399,7401,7413,7418,7432,8236,8334,8427,8528,9384,9390,9615,9627,9628,9641,9667,9689,9731,12381,12406]]],["servants",[20,20,[[3,1,1,0,1,[[138,1,1,0,1]]],[8,3,3,1,4,[[251,1,1,1,2],[256,1,1,2,3],[260,1,1,3,4]]],[9,2,2,4,6,[[279,2,2,4,6]]],[11,2,2,6,8,[[317,1,1,6,7],[331,1,1,7,8]]],[15,5,5,8,13,[[416,2,2,8,10],[417,3,3,10,13]]],[16,3,3,13,16,[[427,1,1,13,14],[431,2,2,14,16]]],[17,3,3,16,19,[[436,3,3,16,19]]],[22,1,1,19,20,[[715,1,1,19,20]]]],[4397,7613,7774,7880,8345,8346,9670,10067,12375,12382,12392,12397,12398,12726,12796,12798,12884,12885,12886,18358]]],["young",[12,12,[[1,1,1,0,1,[[59,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[8,2,2,2,4,[[236,1,1,2,3],[265,1,1,3,4]]],[12,2,2,4,6,[[359,1,1,4,5],[366,1,1,5,6]]],[13,2,2,6,8,[[379,1,1,6,7],[400,1,1,7,8]]],[18,1,1,8,9,[[514,1,1,8,9]]],[22,1,1,9,10,[[698,1,1,9,10]]],[23,1,1,10,11,[[795,1,1,10,11]]],[24,1,1,11,12,[[798,1,1,11,12]]]],[1786,5661,7236,7995,10969,11165,11460,11936,14475,18033,20234,20353]]],["youth",[5,4,[[6,2,1,0,1,[[218,2,1,0,1]]],[8,3,3,1,4,[[252,3,3,1,4]]]],[6739,7651,7660,7673]]],["youths",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18450]]]]},{"k":"H5289","v":[["one",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23044]]]]},{"k":"H5290","v":[["*",[4,4,[[17,2,2,0,2,[[468,1,1,0,1],[471,1,1,1,2]]],[18,1,1,2,3,[[565,1,1,2,3]]],[19,1,1,3,4,[[656,1,1,3,4]]]],[13675,13750,15323,17245]]],["+",[3,3,[[17,1,1,0,1,[[468,1,1,0,1]]],[18,1,1,1,2,[[565,1,1,1,2]]],[19,1,1,2,3,[[656,1,1,2,3]]]],[13675,15323,17245]]],["youth",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13750]]]]},{"k":"H5291","v":[["*",[63,57,[[0,9,8,0,8,[[23,6,6,0,6],[33,3,2,6,8]]],[1,1,1,8,9,[[51,1,1,8,9]]],[4,14,12,9,21,[[174,14,12,9,21]]],[6,7,7,21,28,[[229,6,6,21,27],[231,1,1,27,28]]],[7,7,7,28,35,[[233,5,5,28,33],[234,1,1,33,34],[235,1,1,34,35]]],[8,2,2,35,37,[[244,1,1,35,36],[260,1,1,36,37]]],[10,3,3,37,40,[[291,3,3,37,40]]],[11,2,2,40,42,[[317,2,2,40,42]]],[16,13,10,42,52,[[427,11,8,42,50],[429,2,2,50,52]]],[17,1,1,52,53,[[476,1,1,52,53]]],[19,3,3,53,56,[[636,1,1,53,54],[654,1,1,54,55],[658,1,1,55,56]]],[29,1,1,56,57,[[880,1,1,56,57]]]],[605,607,619,646,648,652,983,992,1559,5485,5486,5489,5490,5491,5493,5494,5495,5496,5497,5498,5499,7027,7028,7029,7030,7032,7033,7114,7154,7155,7157,7171,7172,7174,7202,7402,7903,8719,8720,8721,9649,9651,12726,12727,12728,12731,12732,12733,12736,12737,12766,12778,13893,16641,17196,17299,22386]]],["+",[2,1,[[16,2,1,0,1,[[427,2,1,0,1]]]],[12736]]],["damsel",[24,22,[[0,8,7,0,7,[[23,5,5,0,5],[33,3,2,5,7]]],[4,11,10,7,17,[[174,11,10,7,17]]],[6,1,1,17,18,[[229,1,1,17,18]]],[7,2,2,18,20,[[233,2,2,18,20]]],[10,2,2,20,22,[[291,2,2,20,22]]]],[605,607,619,646,648,983,992,5485,5489,5490,5491,5493,5494,5495,5496,5497,5498,7027,7154,7155,8720,8721]]],["damsel's",[8,8,[[4,3,3,0,3,[[174,3,3,0,3]]],[6,5,5,3,8,[[229,5,5,3,8]]]],[5485,5486,5499,7028,7029,7030,7032,7033]]],["damsels",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]]],[652,7903]]],["maid",[4,4,[[11,2,2,0,2,[[317,2,2,0,2]]],[16,1,1,2,3,[[427,1,1,2,3]]],[29,1,1,3,4,[[880,1,1,3,4]]]],[9649,9651,12731,22386]]],["maiden",[3,3,[[16,3,3,0,3,[[427,3,3,0,3]]]],[12728,12733,12737]]],["maidens",[13,13,[[1,1,1,0,1,[[51,1,1,0,1]]],[7,4,4,1,5,[[233,3,3,1,4],[234,1,1,4,5]]],[8,1,1,5,6,[[244,1,1,5,6]]],[16,3,3,6,9,[[427,2,2,6,8],[429,1,1,8,9]]],[17,1,1,9,10,[[476,1,1,9,10]]],[19,3,3,10,13,[[636,1,1,10,11],[654,1,1,11,12],[658,1,1,12,13]]]],[1559,7157,7171,7172,7174,7402,12732,12733,12778,13893,16641,17196,17299]]],["maids",[2,2,[[16,2,2,0,2,[[427,1,1,0,1],[429,1,1,1,2]]]],[12733,12766]]],["woman",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7202]]],["young",[4,4,[[6,1,1,0,1,[[231,1,1,0,1]]],[10,1,1,1,2,[[291,1,1,1,2]]],[16,2,2,2,4,[[427,2,2,2,4]]]],[7114,8719,12726,12727]]]]},{"k":"H5292","v":[["*",[4,3,[[5,1,1,0,1,[[202,1,1,0,1]]],[12,3,2,1,3,[[341,3,2,1,3]]]],[6272,10390,10391]]],["Naarah",[3,2,[[12,3,2,0,2,[[341,3,2,0,2]]]],[10390,10391]]],["Naarath",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6272]]]]},{"k":"H5293","v":[["Naarai",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10710]]]]},{"k":"H5294","v":[["Neariah",[3,3,[[12,3,3,0,3,[[340,2,2,0,2],[341,1,1,2,3]]]],[10383,10384,10427]]]]},{"k":"H5295","v":[["Naaran",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10563]]]]},{"k":"H5296","v":[["tow",[2,2,[[6,1,1,0,1,[[226,1,1,0,1]]],[22,1,1,1,2,[[679,1,1,1,2]]]],[6958,17685]]]]},{"k":"H5297","v":[["*",[7,7,[[22,1,1,0,1,[[697,1,1,0,1]]],[23,4,4,1,5,[[746,1,1,1,2],[788,1,1,2,3],[790,2,2,3,5]]],[25,2,2,5,7,[[831,2,2,5,7]]]],[18017,18981,20011,20059,20064,21217,21220]]],["+",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21217]]],["Noph",[6,6,[[22,1,1,0,1,[[697,1,1,0,1]]],[23,4,4,1,5,[[746,1,1,1,2],[788,1,1,2,3],[790,2,2,3,5]]],[25,1,1,5,6,[[831,1,1,5,6]]]],[18017,18981,20011,20059,20064,21220]]]]},{"k":"H5298","v":[["Nepheg",[4,4,[[1,1,1,0,1,[[55,1,1,0,1]]],[9,1,1,1,2,[[271,1,1,1,2]]],[12,2,2,2,4,[[340,1,1,2,3],[351,1,1,3,4]]]],[1676,8147,10368,10780]]]]},{"k":"H5299","v":[["*",[4,4,[[5,2,2,0,2,[[197,1,1,0,1],[198,1,1,1,2]]],[10,1,1,2,3,[[294,1,1,2,3]]],[22,1,1,3,4,[[708,1,1,3,4]]]],[6109,6153,8855,18245]]],["borders",[1,1,[[5,1,1,0,1,[[197,1,1,0,1]]]],[6109]]],["coast",[1,1,[[5,1,1,0,1,[[198,1,1,0,1]]]],[6153]]],["region",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8855]]],["sieve",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18245]]]]},{"k":"H5300","v":[["Nephishesim",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12472]]]]},{"k":"H5301","v":[["*",[12,12,[[0,1,1,0,1,[[1,1,1,0,1]]],[17,3,3,1,4,[[455,1,1,1,2],[466,1,1,2,3],[476,1,1,3,4]]],[22,1,1,4,5,[[732,1,1,4,5]]],[23,2,2,5,7,[[745,1,1,5,6],[759,1,1,6,7]]],[25,3,3,7,10,[[823,2,2,7,9],[838,1,1,9,10]]],[36,1,1,10,11,[[909,1,1,10,11]]],[38,1,1,11,12,[[925,1,1,11,12]]]],[37,13352,13627,13908,18739,18959,19324,20996,20997,21406,22849,23102]]],["at",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23102]]],["blow",[3,3,[[25,2,2,0,2,[[823,2,2,0,2]]],[36,1,1,2,3,[[909,1,1,2,3]]]],[20996,20997,22849]]],["bloweth",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18739]]],["blown",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13352]]],["breathe",[1,1,[[25,1,1,0,1,[[838,1,1,0,1]]]],[21406]]],["breathed",[1,1,[[0,1,1,0,1,[[1,1,1,0,1]]]],[37]]],["lose",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13627]]],["seething",[2,2,[[17,1,1,0,1,[[476,1,1,0,1]]],[23,1,1,1,2,[[745,1,1,1,2]]]],[13908,18959]]],["up",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19324]]]]},{"k":"H5302","v":[["Nophah",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4370]]]]},{"k":"H5303","v":[["giants",[3,2,[[0,1,1,0,1,[[5,1,1,0,1]]],[3,2,1,1,2,[[129,2,1,1,2]]]],[141,4108]]]]},{"k":"H5304","v":[["Nephusim",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12077]]]]},{"k":"H5305","v":[["*",[3,3,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,2,2,1,3,[[338,1,1,1,2],[342,1,1,2,3]]]],[673,10283,10447]]],["Naphish",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[673,10283]]],["Nephish",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10447]]]]},{"k":"H5306","v":[["*",[4,4,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[25,2,2,2,4,[[828,1,1,2,3],[829,1,1,3,4]]]],[2311,2675,21137,21170]]],["emerald",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[25,1,1,2,3,[[829,1,1,2,3]]]],[2311,2675,21170]]],["emeralds",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21137]]]]},{"k":"H5307","v":[["*",[434,403,[[0,18,17,0,17,[[1,1,1,0,1],[3,2,2,1,3],[13,1,1,3,4],[14,2,1,4,5],[16,2,2,5,7],[23,1,1,7,8],[24,1,1,8,9],[32,1,1,9,10],[42,1,1,10,11],[43,1,1,11,12],[44,1,1,12,13],[45,1,1,13,14],[48,1,1,14,15],[49,2,2,15,17]]],[1,6,6,17,23,[[64,1,1,17,18],[68,1,1,18,19],[70,3,3,19,22],[81,1,1,22,23]]],[2,9,9,23,32,[[98,1,1,23,24],[100,5,5,24,29],[115,3,3,29,32]]],[3,17,17,32,49,[[121,3,3,32,35],[122,1,1,35,36],[130,5,5,36,41],[132,3,3,41,44],[136,1,1,44,45],[140,2,2,45,47],[150,1,1,47,48],[151,1,1,48,49]]],[4,8,6,49,55,[[161,3,2,49,51],[173,1,1,51,52],[174,3,2,52,54],[177,1,1,54,55]]],[5,15,14,55,69,[[188,1,1,55,56],[191,1,1,56,57],[192,2,2,57,59],[193,2,2,59,61],[194,2,2,61,63],[197,1,1,63,64],[199,1,1,64,65],[203,1,1,65,66],[207,1,1,66,67],[209,3,2,67,69]]],[6,21,18,69,87,[[212,1,1,69,70],[213,1,1,70,71],[214,2,2,71,73],[215,3,1,73,74],[217,3,2,74,76],[218,1,1,76,77],[219,1,1,77,78],[222,1,1,78,79],[223,1,1,79,80],[225,1,1,80,81],[226,1,1,81,82],[228,1,1,82,83],[229,2,2,83,85],[230,2,2,85,87]]],[7,2,2,87,89,[[233,1,1,87,88],[234,1,1,88,89]]],[8,25,25,89,114,[[238,1,1,89,90],[239,2,2,90,92],[240,2,2,92,94],[246,1,1,94,95],[249,3,3,95,98],[252,3,3,98,101],[253,1,1,101,102],[254,1,1,102,103],[255,1,1,103,104],[260,2,2,104,106],[261,2,2,106,108],[263,1,1,108,109],[264,1,1,109,110],[266,4,4,110,114]]],[9,30,27,114,141,[[267,7,7,114,121],[268,3,2,121,123],[269,4,3,123,126],[270,1,1,126,127],[275,1,1,127,128],[277,1,1,128,129],[280,3,3,129,132],[283,2,2,132,134],[285,1,1,134,135],[286,2,2,135,137],[287,2,2,137,139],[288,1,1,139,140],[290,2,1,140,141]]],[10,8,8,141,149,[[291,1,1,141,142],[298,1,1,142,143],[308,3,3,143,146],[310,2,2,146,148],[312,1,1,148,149]]],[11,16,14,149,163,[[313,1,1,149,150],[314,2,2,150,152],[315,2,2,152,154],[316,1,1,154,155],[317,1,1,155,156],[318,3,2,156,158],[319,1,1,158,159],[322,1,1,159,160],[326,1,1,160,161],[331,1,1,161,162],[337,2,1,162,163]]],[12,19,16,163,179,[[342,2,2,163,165],[347,4,4,165,169],[349,3,2,169,171],[357,1,1,171,172],[358,4,3,172,175],[361,1,1,175,176],[362,1,1,176,177],[363,3,2,177,179]]],[13,9,9,179,188,[[379,1,1,179,180],[380,1,1,180,181],[381,1,1,181,182],[384,1,1,182,183],[386,2,2,183,185],[391,1,1,185,186],[395,1,1,186,187],[398,1,1,187,188]]],[14,1,1,188,189,[[412,1,1,188,189]]],[15,3,3,189,192,[[418,1,1,189,190],[422,1,1,190,191],[423,1,1,191,192]]],[16,11,9,192,201,[[428,1,1,192,193],[431,4,2,193,195],[432,1,1,195,196],[433,2,2,196,198],[434,3,3,198,201]]],[17,13,13,201,214,[[436,4,4,201,205],[439,1,1,205,206],[441,1,1,206,207],[447,1,1,207,208],[448,2,2,208,210],[449,1,1,210,211],[464,1,1,211,212],[466,1,1,212,213],[468,1,1,213,214]]],[18,29,29,214,243,[[482,1,1,214,215],[484,1,1,215,216],[487,1,1,216,217],[493,1,1,217,218],[495,1,1,218,219],[497,1,1,219,220],[499,1,1,220,221],[504,1,1,221,222],[512,1,1,222,223],[513,1,1,223,224],[514,2,2,224,226],[522,1,1,226,227],[532,1,1,227,228],[534,1,1,228,229],[546,1,1,229,230],[550,1,1,230,231],[555,3,3,231,234],[559,1,1,234,235],[568,1,1,235,236],[582,1,1,236,237],[583,2,2,237,239],[595,1,1,239,240],[617,1,1,240,241],[618,1,1,241,242],[622,1,1,242,243]]],[19,15,15,243,258,[[628,1,1,243,244],[634,1,1,244,245],[638,3,3,245,248],[640,1,1,248,249],[644,1,1,249,250],[646,1,1,250,251],[649,1,1,251,252],[651,2,2,252,254],[653,1,1,254,255],[655,3,3,255,258]]],[20,6,4,258,262,[[662,2,1,258,259],[667,1,1,259,260],[668,1,1,260,261],[669,2,1,261,262]]],[22,25,24,262,286,[[681,2,2,262,264],[686,1,1,264,265],[687,2,2,265,267],[688,2,2,267,269],[691,1,1,269,270],[692,1,1,270,271],[694,1,1,271,272],[699,2,1,272,273],[700,1,1,273,274],[702,2,2,274,276],[704,2,2,276,278],[708,2,2,278,280],[709,2,2,280,282],[712,1,1,282,283],[715,1,1,283,284],[725,1,1,284,285],[732,1,1,285,286]]],[23,45,40,286,326,[[747,1,1,286,287],[750,2,1,287,288],[752,3,2,288,290],[753,1,1,290,291],[759,1,1,291,292],[763,1,1,292,293],[764,1,1,293,294],[765,1,1,294,295],[766,1,1,295,296],[767,1,1,296,297],[769,2,2,297,299],[780,1,1,299,300],[781,3,3,300,303],[782,2,2,303,305],[783,3,2,305,307],[786,2,2,307,309],[788,1,1,309,310],[790,3,3,310,313],[792,2,2,313,315],[793,2,2,315,317],[794,3,3,317,320],[795,6,5,320,325],[796,2,1,325,326]]],[24,3,3,326,329,[[797,1,1,326,327],[798,1,1,327,328],[801,1,1,328,329]]],[25,54,50,329,379,[[802,1,1,329,330],[804,1,1,330,331],[806,1,1,331,332],[807,4,4,332,336],[809,1,1,336,337],[810,1,1,337,338],[812,3,3,338,341],[814,4,3,341,344],[818,1,1,344,345],[824,1,1,345,346],[825,2,2,346,348],[826,1,1,348,349],[828,2,2,349,351],[829,1,1,351,352],[830,1,1,352,353],[831,7,6,353,359],[832,1,1,359,360],[833,6,6,360,366],[834,1,1,366,367],[836,1,1,367,368],[839,2,1,368,369],[840,4,4,369,373],[844,1,1,373,374],[845,1,1,374,375],[846,1,1,375,376],[848,3,2,376,378],[849,1,1,378,379]]],[26,8,8,379,387,[[857,2,2,379,381],[858,2,2,381,383],[859,1,1,383,384],[860,3,3,384,387]]],[27,4,4,387,391,[[868,2,2,387,389],[871,1,1,389,390],[874,1,1,390,391]]],[28,1,1,391,392,[[877,1,1,391,392]]],[29,7,7,392,399,[[881,2,2,392,394],[883,1,1,394,395],[885,1,1,395,396],[886,1,1,396,397],[887,2,2,397,399]]],[31,3,1,399,400,[[889,3,1,399,400]]],[32,1,1,400,401,[[899,1,1,400,401]]],[33,1,1,401,402,[[902,1,1,401,402]]],[37,1,1,402,403,[[921,1,1,402,403]]]],[51,84,85,346,372,400,414,655,676,964,1308,1338,1372,1415,1490,1507,1524,1936,2047,2095,2104,2110,2466,2977,3029,3030,3032,3034,3035,3531,3532,3560,3813,3814,3819,3835,4111,4113,4137,4140,4151,4198,4216,4239,4317,4450,4462,4818,4868,5175,5182,5448,5474,5478,5549,5878,5948,5954,5969,5982,5986,6026,6027,6114,6160,6280,6426,6464,6474,6564,6593,6615,6621,6650,6706,6707,6729,6794,6875,6904,6947,6979,6994,7050,7051,7098,7100,7159,7190,7295,7307,7315,7322,7323,7452,7521,7550,7553,7650,7667,7670,7701,7730,7771,7884,7885,7917,7925,7962,7970,8010,8013,8014,8017,8024,8026,8032,8034,8041,8047,8049,8065,8072,8110,8115,8119,8124,8233,8276,8360,8367,8378,8458,8461,8529,8562,8569,8589,8602,8641,8706,8769,9041,9348,9379,9380,9433,9438,9500,9535,9564,9565,9595,9601,9640,9668,9679,9680,9711,9803,9906,10068,10233,10438,10450,10660,10663,10664,10667,10739,10740,10934,10947,10948,10950,11046,11054,11090,11091,11470,11488,11499,11561,11605,11611,11723,11800,11896,12253,12417,12583,12589,12754,12803,12806,12815,12820,12834,12836,12837,12858,12884,12885,12888,12889,12943,13005,13131,13155,13164,13199,13556,13610,13665,13983,14010,14051,14098,14156,14190,14222,14287,14418,14450,14464,14474,14602,14736,14774,14944,15038,15141,15168,15177,15240,15402,15644,15677,15678,15882,16273,16286,16334,16414,16601,16693,16702,16716,16764,16893,16940,17029,17095,17096,17168,17206,17210,17214,17391,17487,17501,17516,17715,17732,17822,17837,17839,17854,17884,17921,17940,17978,18044,18077,18113,18115,18148,18149,18230,18242,18253,18258,18320,18359,18610,18738,19014,19104,19157,19165,19197,19323,19414,19426,19449,19461,19496,19561,19568,19849,19887,19888,19894,19914,19921,19932,19941,19977,19984,20022,20051,20057,20061,20112,20124,20148,20153,20181,20196,20198,20216,20220,20256,20259,20261,20291,20317,20353,20458,20492,20525,20558,20567,20570,20574,20575,20605,20630,20660,20665,20668,20719,20720,20722,20846,21032,21062,21077,21096,21148,21155,21180,21188,21208,21209,21210,21221,21226,21229,21242,21260,21268,21270,21271,21272,21275,21307,21352,21445,21451,21452,21453,21471,21575,21603,21631,21693,21701,21731,21971,21978,22006,22008,22022,22048,22055,22062,22185,22194,22233,22282,22319,22400,22409,22425,22481,22495,22504,22506,22538,22672,22724,23030]]],["+",[12,11,[[5,1,1,0,1,[[209,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[15,1,1,2,3,[[422,1,1,2,3]]],[16,2,1,3,4,[[431,2,1,3,4]]],[17,2,2,4,6,[[441,1,1,4,5],[464,1,1,5,6]]],[20,3,3,6,9,[[662,1,1,6,7],[667,1,1,7,8],[669,1,1,8,9]]],[25,2,2,9,11,[[846,1,1,9,10],[848,1,1,10,11]]]],[6464,9433,12583,12806,13005,13556,17391,17487,17516,21631,21701]]],["Cast",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7550]]],["Fall",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22233]]],["accepted",[2,2,[[23,2,2,0,2,[[781,1,1,0,1],[786,1,1,1,2]]]],[19894,19977]]],["along",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6707]]],["away",[4,4,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,3,3,1,4,[[781,1,1,1,2],[783,1,1,2,3],[796,1,1,3,4]]]],[10233,19887,19932,20291]]],["cast",[14,13,[[3,1,1,0,1,[[151,1,1,0,1]]],[12,4,4,1,5,[[361,1,1,1,2],[362,1,1,2,3],[363,2,2,3,5]]],[15,1,1,5,6,[[423,1,1,5,6]]],[16,2,2,6,8,[[428,1,1,6,7],[434,1,1,7,8]]],[18,2,2,8,10,[[499,1,1,8,9],[617,1,1,9,10]]],[22,1,1,10,11,[[712,1,1,10,11]]],[23,1,1,11,12,[[766,1,1,11,12]]],[31,2,1,12,13,[[889,2,1,12,13]]]],[4868,11046,11054,11090,11091,12589,12754,12858,14222,16273,18320,19461,22538]]],["casteth",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16940]]],["ceased",[1,1,[[6,1,1,0,1,[[212,1,1,0,1]]]],[6564]]],["died",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[676]]],["divided",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15168]]],["down",[40,38,[[0,1,1,0,1,[[49,1,1,0,1]]],[4,5,4,1,5,[[161,3,2,1,3],[174,1,1,3,4],[177,1,1,4,5]]],[5,2,2,5,7,[[192,2,2,5,7]]],[6,4,4,7,11,[[213,1,1,7,8],[215,1,1,8,9],[229,2,2,9,11]]],[8,3,3,11,14,[[252,1,1,11,12],[254,1,1,12,13],[266,1,1,13,14]]],[9,5,4,14,18,[[268,3,2,14,16],[285,1,1,16,17],[286,1,1,17,18]]],[11,2,2,18,20,[[313,1,1,18,19],[317,1,1,19,20]]],[12,2,2,20,22,[[342,1,1,20,21],[347,1,1,21,22]]],[13,1,1,22,23,[[379,1,1,22,23]]],[14,1,1,23,24,[[412,1,1,23,24]]],[15,1,1,24,25,[[418,1,1,24,25]]],[16,1,1,25,26,[[433,1,1,25,26]]],[17,1,1,26,27,[[436,1,1,26,27]]],[18,2,2,27,29,[[514,1,1,27,28],[550,1,1,28,29]]],[19,1,1,29,30,[[634,1,1,29,30]]],[22,2,2,30,32,[[687,1,1,30,31],[709,1,1,31,32]]],[25,3,3,32,35,[[807,1,1,32,33],[812,1,1,33,34],[831,1,1,34,35]]],[26,3,3,35,38,[[857,1,1,35,36],[860,2,2,36,38]]]],[1524,5175,5182,5474,5549,5954,5969,6593,6650,7050,7051,7670,7730,8010,8065,8072,8529,8569,9535,9668,10450,10660,11470,12253,12417,12820,12889,14464,15038,16601,17839,18253,20567,20668,21229,21971,22048,22062]]],["fail",[2,2,[[8,1,1,0,1,[[252,1,1,0,1]]],[16,1,1,1,2,[[431,1,1,1,2]]]],[7650,12803]]],["failed",[4,3,[[5,3,2,0,2,[[207,1,1,0,1],[209,2,1,1,2]]],[10,1,1,2,3,[[298,1,1,2,3]]]],[6426,6474,9041]]],["fall",[146,138,[[0,3,3,0,3,[[1,1,1,0,1],[42,1,1,1,2],[48,1,1,2,3]]],[1,2,2,3,5,[[64,1,1,3,4],[70,1,1,4,5]]],[2,6,6,5,11,[[100,3,3,5,8],[115,3,3,8,11]]],[3,5,5,11,16,[[130,4,4,11,15],[150,1,1,15,16]]],[4,1,1,16,17,[[174,1,1,16,17]]],[6,1,1,17,18,[[225,1,1,17,18]]],[7,1,1,18,19,[[234,1,1,18,19]]],[8,4,4,19,23,[[238,1,1,19,20],[249,1,1,20,21],[253,1,1,21,22],[261,1,1,22,23]]],[9,3,2,23,25,[[280,1,1,23,24],[290,2,1,24,25]]],[10,2,2,25,27,[[291,1,1,25,26],[312,1,1,26,27]]],[11,4,4,27,31,[[319,1,1,27,28],[322,1,1,28,29],[326,1,1,29,30],[331,1,1,30,31]]],[12,3,2,31,33,[[349,1,1,31,32],[358,2,1,32,33]]],[13,2,2,33,35,[[384,1,1,33,34],[391,1,1,34,35]]],[16,1,1,35,36,[[431,1,1,35,36]]],[17,2,2,36,38,[[448,1,1,36,37],[466,1,1,37,38]]],[18,11,11,38,49,[[482,1,1,38,39],[487,1,1,39,40],[512,1,1,40,41],[514,1,1,41,42],[522,1,1,42,43],[555,1,1,43,44],[559,1,1,44,45],[568,1,1,45,46],[595,1,1,46,47],[618,1,1,47,48],[622,1,1,48,49]]],[19,8,8,49,57,[[638,3,3,49,52],[649,1,1,52,53],[653,1,1,53,54],[655,3,3,54,57]]],[20,3,3,57,60,[[662,1,1,57,58],[668,1,1,58,59],[669,1,1,59,60]]],[22,14,14,60,74,[[681,1,1,60,61],[686,1,1,61,62],[688,2,2,62,64],[691,1,1,64,65],[700,1,1,65,66],[702,2,2,66,68],[708,2,2,68,70],[709,1,1,70,71],[715,1,1,71,72],[725,1,1,72,73],[732,1,1,73,74]]],[23,27,24,74,98,[[747,1,1,74,75],[750,2,1,75,76],[752,3,2,76,78],[753,1,1,78,79],[759,1,1,79,80],[763,1,1,80,81],[764,1,1,81,82],[767,1,1,82,83],[769,2,2,83,85],[781,1,1,85,86],[783,1,1,86,87],[788,1,1,87,88],[790,1,1,88,89],[792,1,1,89,90],[793,2,2,90,92],[794,2,2,92,94],[795,5,4,94,98]]],[25,32,29,98,127,[[806,1,1,98,99],[807,3,3,99,102],[812,1,1,102,103],[814,3,2,103,105],[818,1,1,105,106],[824,1,1,106,107],[825,2,2,107,109],[826,1,1,109,110],[828,2,2,110,112],[830,1,1,112,113],[831,6,5,113,118],[833,2,2,118,120],[834,1,1,120,121],[836,1,1,121,122],[839,2,1,122,123],[840,3,3,123,126],[848,1,1,126,127]]],[26,1,1,127,128,[[860,1,1,127,128]]],[27,2,2,128,130,[[868,1,1,128,129],[874,1,1,129,130]]],[28,1,1,130,131,[[877,1,1,130,131]]],[29,5,5,131,136,[[881,2,2,131,133],[885,1,1,133,134],[886,1,1,134,135],[887,1,1,135,136]]],[32,1,1,136,137,[[899,1,1,136,137]]],[33,1,1,137,138,[[902,1,1,137,138]]]],[51,1308,1490,1936,2110,3029,3034,3035,3531,3532,3560,4111,4137,4140,4151,4818,5478,6947,7190,7295,7553,7701,7925,8367,8706,8769,9500,9711,9803,9906,10068,10739,10947,11561,11723,12806,13164,13610,13983,14051,14418,14474,14602,15141,15240,15402,15882,16286,16334,16693,16702,16716,17029,17168,17206,17210,17214,17391,17501,17516,17732,17822,17854,17884,17921,18077,18113,18115,18230,18242,18258,18359,18610,18738,19014,19104,19157,19165,19197,19323,19414,19426,19496,19561,19568,19888,19941,20022,20051,20124,20148,20153,20196,20198,20216,20256,20259,20261,20558,20570,20574,20575,20665,20719,20722,20846,21032,21062,21077,21096,21148,21155,21188,21208,21209,21210,21221,21226,21260,21268,21307,21352,21445,21451,21452,21453,21693,22055,22194,22282,22319,22400,22409,22481,22495,22504,22672,22724]]],["fallen",[52,51,[[0,1,1,0,1,[[3,1,1,0,1]]],[5,2,2,1,3,[[188,1,1,1,2],[194,1,1,2,3]]],[6,1,1,3,4,[[228,1,1,3,4]]],[8,4,4,4,8,[[240,2,2,4,6],[261,1,1,6,7],[266,1,1,7,8]]],[9,8,8,8,16,[[267,6,6,8,14],[269,1,1,14,15],[288,1,1,15,16]]],[12,1,1,16,17,[[347,1,1,16,17]]],[13,2,2,17,19,[[386,1,1,17,18],[395,1,1,18,19]]],[16,1,1,19,20,[[432,1,1,19,20]]],[17,1,1,20,21,[[436,1,1,20,21]]],[18,8,8,21,29,[[484,1,1,21,22],[493,1,1,22,23],[495,1,1,23,24],[497,1,1,24,25],[513,1,1,25,26],[532,1,1,26,27],[534,1,1,27,28],[546,1,1,28,29]]],[22,6,5,29,34,[[681,1,1,29,30],[692,1,1,30,31],[694,1,1,31,32],[699,2,1,32,33],[704,1,1,33,34]]],[23,5,5,34,39,[[782,1,1,34,35],[790,1,1,35,36],[792,1,1,36,37],[794,1,1,37,38],[795,1,1,38,39]]],[24,2,2,39,41,[[798,1,1,39,40],[801,1,1,40,41]]],[25,6,6,41,47,[[814,1,1,41,42],[832,1,1,42,43],[833,4,4,43,47]]],[27,1,1,47,48,[[868,1,1,47,48]]],[29,2,2,48,50,[[883,1,1,48,49],[887,1,1,49,50]]],[37,1,1,50,51,[[921,1,1,50,51]]]],[85,5878,6026,6994,7322,7323,7917,8017,8026,8032,8034,8041,8047,8049,8119,8641,10667,11611,11800,12815,12885,14010,14098,14156,14190,14450,14736,14774,14944,17715,17940,17978,18044,18148,19914,20057,20112,20181,20220,20353,20458,20720,21242,21270,21271,21272,21275,22185,22425,22506,23030]]],["falleth",[12,12,[[2,2,2,0,2,[[100,2,2,0,2]]],[9,3,3,2,5,[[269,2,2,2,4],[283,1,1,4,5]]],[17,2,2,5,7,[[439,1,1,5,6],[468,1,1,6,7]]],[19,4,4,7,11,[[640,1,1,7,8],[644,1,1,8,9],[651,2,2,9,11]]],[23,1,1,11,12,[[765,1,1,11,12]]]],[3030,3032,8110,8115,8461,12943,13665,16764,16893,17095,17096,19449]]],["falling",[3,3,[[3,2,2,0,2,[[140,2,2,0,2]]],[17,1,1,2,3,[[449,1,1,2,3]]]],[4450,4462,13199]]],["fell",[98,96,[[0,11,10,0,10,[[3,1,1,0,1],[13,1,1,1,2],[14,2,1,2,3],[16,2,2,3,5],[32,1,1,5,6],[43,1,1,6,7],[44,1,1,7,8],[45,1,1,8,9],[49,1,1,9,10]]],[1,1,1,10,11,[[81,1,1,10,11]]],[2,1,1,11,12,[[98,1,1,11,12]]],[3,5,5,12,17,[[130,1,1,12,13],[132,3,3,13,16],[136,1,1,16,17]]],[5,5,5,17,22,[[191,1,1,17,18],[193,1,1,18,19],[194,1,1,19,20],[197,1,1,20,21],[203,1,1,21,22]]],[6,10,9,22,31,[[214,1,1,22,23],[215,2,1,23,24],[217,1,1,24,25],[218,1,1,25,26],[222,1,1,26,27],[223,1,1,27,28],[226,1,1,28,29],[230,2,2,29,31]]],[7,1,1,31,32,[[233,1,1,31,32]]],[8,12,12,32,44,[[239,2,2,32,34],[246,1,1,34,35],[249,1,1,35,36],[252,1,1,36,37],[255,1,1,37,38],[260,2,2,38,40],[263,1,1,40,41],[264,1,1,41,42],[266,2,2,42,44]]],[9,8,8,44,52,[[267,1,1,44,45],[270,1,1,45,46],[275,1,1,46,47],[277,1,1,47,48],[280,2,2,48,50],[287,2,2,50,52]]],[10,4,4,52,56,[[308,3,3,52,55],[310,1,1,55,56]]],[11,6,6,56,62,[[314,2,2,56,58],[315,1,1,58,59],[316,1,1,59,60],[318,2,2,60,62]]],[12,9,9,62,71,[[342,1,1,62,63],[347,2,2,63,65],[349,2,2,65,67],[357,1,1,67,68],[358,2,2,68,70],[363,1,1,70,71]]],[13,2,2,71,73,[[381,1,1,71,72],[386,1,1,72,73]]],[16,3,3,73,76,[[433,1,1,73,74],[434,2,2,74,76]]],[17,2,2,76,78,[[436,2,2,76,78]]],[18,3,3,78,81,[[504,1,1,78,79],[555,1,1,79,80],[582,1,1,80,81]]],[23,3,3,81,84,[[783,1,1,81,82],[790,1,1,82,83],[796,1,1,83,84]]],[24,1,1,84,85,[[797,1,1,84,85]]],[25,8,8,85,93,[[802,1,1,85,86],[804,1,1,86,87],[809,1,1,87,88],[810,1,1,88,89],[812,1,1,89,90],[840,1,1,90,91],[844,1,1,91,92],[845,1,1,92,93]]],[26,2,2,93,95,[[857,1,1,93,94],[859,1,1,94,95]]],[31,1,1,95,96,[[889,1,1,95,96]]]],[84,346,372,400,414,964,1338,1372,1415,1507,2466,2977,4113,4198,4216,4239,4317,5948,5982,6027,6114,6280,6615,6650,6707,6729,6875,6904,6979,7098,7100,7159,7307,7315,7452,7521,7667,7771,7884,7885,7962,7970,8013,8014,8024,8124,8233,8276,8360,8378,8589,8602,9348,9379,9380,9438,9564,9565,9595,9640,9679,9680,10438,10663,10664,10739,10740,10934,10948,10950,11091,11499,11605,12834,12836,12837,12884,12888,14287,15177,15644,19932,20061,20291,20317,20492,20525,20605,20630,20660,21471,21575,21603,21978,22022,22538]]],["felled",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9601]]],["fellest",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8115]]],["felling",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9679]]],["fugitives",[1,1,[[11,1,1,0,1,[[337,1,1,0,1]]]],[10233]]],["have",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21701]]],["in",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16414]]],["inferior",[2,2,[[17,2,2,0,2,[[447,1,1,0,1],[448,1,1,1,2]]]],[13131,13155]]],["judged",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21180]]],["keepeth",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2095]]],["lay",[2,2,[[6,2,2,0,2,[[214,1,1,0,1],[217,1,1,1,2]]]],[6621,6706]]],["liest",[1,1,[[5,1,1,0,1,[[193,1,1,0,1]]]],[5986]]],["lighted",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[22,1,1,1,2,[[687,1,1,1,2]]]],[655,17837]]],["lost",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3835]]],["lot",[2,2,[[5,1,1,0,1,[[199,1,1,0,1]]],[25,1,1,1,2,[[849,1,1,1,2]]]],[6160,21731]]],["lying",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5448]]],["man",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5478]]],["out",[3,3,[[1,1,1,0,1,[[70,1,1,0,1]]],[9,1,1,1,2,[[286,1,1,1,2]]],[22,1,1,2,3,[[704,1,1,2,3]]]],[2104,8562,18149]]],["overthrow",[2,2,[[18,2,2,0,2,[[583,2,2,0,2]]]],[15677,15678]]],["overthrown",[3,3,[[6,1,1,0,1,[[219,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[13,1,1,2,3,[[380,1,1,2,3]]]],[6794,8458,11488]]],["perish",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2047]]],["present",[3,3,[[23,2,2,0,2,[[780,1,1,0,1],[786,1,1,1,2]]],[26,1,1,2,3,[[858,1,1,2,3]]]],[19849,19984,22006]]],["presented",[1,1,[[23,1,1,0,1,[[782,1,1,0,1]]]],[19921]]],["presenting",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22008]]],["rot",[3,3,[[3,3,3,0,3,[[121,3,3,0,3]]]],[3813,3814,3819]]],["slew",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11896]]]]},{"k":"H5308","v":[["*",[11,11,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,10,10,1,11,[[851,1,1,1,2],[852,7,7,2,9],[853,1,1,9,10],[856,1,1,10,11]]]],[12193,21804,21812,21813,21814,21817,21818,21822,21830,21868,21953]]],["+",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21813,21818]]],["down",[5,5,[[26,5,5,0,5,[[852,5,5,0,5]]]],[21812,21814,21817,21822,21830]]],["fell",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[853,1,1,1,2],[856,1,1,2,3]]]],[21804,21868,21953]]],["occasion",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12193]]]]},{"k":"H5309","v":[["birth",[3,3,[[17,1,1,0,1,[[438,1,1,0,1]]],[18,1,1,1,2,[[535,1,1,1,2]]],[20,1,1,2,3,[[664,1,1,2,3]]]],[12920,14787,17420]]]]},{"k":"H5310","v":[["*",[22,17,[[0,1,1,0,1,[[8,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]],[8,1,1,2,3,[[248,1,1,2,3]]],[10,1,1,3,4,[[295,1,1,3,4]]],[18,2,2,4,6,[[479,1,1,4,5],[614,1,1,5,6]]],[22,3,3,6,9,[[689,1,1,6,7],[705,1,1,7,8],[711,1,1,8,9]]],[23,12,7,9,16,[[757,1,1,9,10],[766,1,1,10,11],[792,1,1,11,12],[795,9,4,12,16]]],[26,1,1,16,17,[[861,1,1,16,17]]]],[224,6713,7496,8887,13954,16231,17896,18160,18282,19280,19482,20092,20232,20233,20234,20235,22088]]],["+",[1,1,[[18,1,1,0,1,[[614,1,1,0,1]]]],[16231]]],["brake",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6713]]],["break",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20092]]],["broken",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19482]]],["dash",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19280]]],["discharged",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8887]]],["dispersed",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17896]]],["overspread",[1,1,[[0,1,1,0,1,[[8,1,1,0,1]]]],[224]]],["pieces",[10,5,[[18,1,1,0,1,[[479,1,1,0,1]]],[23,9,4,1,5,[[795,9,4,1,5]]]],[13954,20232,20233,20234,20235]]],["scatter",[1,1,[[26,1,1,0,1,[[861,1,1,0,1]]]],[22088]]],["scattered",[2,2,[[8,1,1,0,1,[[248,1,1,0,1]]],[22,1,1,1,2,[[711,1,1,1,2]]]],[7496,18282]]],["sunder",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18160]]]]},{"k":"H5311","v":[["scattering",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18247]]]]},{"k":"H5312","v":[["*",[11,9,[[14,3,2,0,2,[[407,2,1,0,1],[408,1,1,1,2]]],[26,8,7,2,9,[[851,2,2,2,4],[852,2,1,4,5],[854,3,3,5,8],[856,1,1,8,9]]]],[12148,12156,21771,21772,21833,21876,21877,21879,21943]]],["forth",[7,6,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,6,5,1,6,[[851,2,2,1,3],[852,2,1,3,4],[854,1,1,4,5],[856,1,1,5,6]]]],[12156,21771,21772,21833,21879,21943]]],["out",[2,2,[[26,2,2,0,2,[[854,2,2,0,2]]]],[21876,21877]]],["take",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12148]]],["took",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12148]]]]},{"k":"H5313","v":[["expenses",[2,2,[[14,2,2,0,2,[[408,2,2,0,2]]]],[12155,12159]]]]},{"k":"H5314","v":[["*",[3,3,[[1,2,2,0,2,[[72,1,1,0,1],[80,1,1,1,2]]],[9,1,1,2,3,[[282,1,1,2,3]]]],[2156,2437,8440]]],["refreshed",[2,2,[[1,2,2,0,2,[[72,1,1,0,1],[80,1,1,1,2]]]],[2156,2437]]],["themselves",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8440]]]]},{"k":"H5315","v":[["*",[753,682,[[0,42,38,0,38,[[0,4,4,0,4],[1,2,2,4,6],[8,7,6,6,12],[11,2,2,12,14],[13,1,1,14,15],[16,1,1,15,16],[18,3,3,16,19],[22,1,1,19,20],[26,4,4,20,24],[31,1,1,24,25],[33,2,2,25,27],[34,1,1,27,28],[35,1,1,28,29],[41,1,1,29,30],[43,2,1,30,31],[45,8,6,31,37],[48,1,1,37,38]]],[1,17,15,38,53,[[50,2,1,38,39],[53,1,1,39,40],[61,4,4,40,44],[64,1,1,44,45],[65,1,1,45,46],[70,3,2,46,48],[72,1,1,48,49],[79,3,3,49,52],[80,1,1,52,53]]],[2,60,48,53,101,[[91,1,1,53,54],[93,2,2,54,56],[94,5,5,56,61],[95,1,1,61,62],[96,8,5,62,67],[100,5,4,67,71],[105,2,2,71,73],[106,9,5,73,78],[107,1,1,78,79],[108,2,2,79,81],[109,3,2,81,83],[110,2,2,83,85],[111,4,4,85,89],[112,5,4,89,93],[113,4,2,93,95],[115,5,5,95,100],[116,1,1,100,101]]],[3,50,44,101,145,[[121,2,2,101,103],[122,2,2,103,105],[125,4,4,105,109],[127,1,1,109,110],[131,5,4,110,114],[132,1,1,114,115],[135,6,5,115,120],[137,2,2,120,122],[139,1,1,122,123],[145,1,1,123,124],[146,12,11,124,135],[147,8,6,135,141],[151,5,4,141,145]]],[4,35,31,145,176,[[156,3,3,145,148],[158,1,1,148,149],[162,2,2,149,151],[163,2,2,151,153],[164,6,4,153,157],[165,2,2,157,159],[166,2,1,159,160],[170,1,1,160,161],[171,4,3,161,164],[173,1,1,164,165],[174,1,1,165,166],[175,1,1,166,167],[176,3,3,167,170],[178,1,1,170,171],[179,1,1,171,172],[180,1,1,172,173],[182,3,3,173,176]]],[5,16,15,176,191,[[188,2,2,176,178],[195,1,1,178,179],[196,7,6,179,185],[197,1,1,185,186],[206,2,2,186,188],[208,1,1,188,189],[209,2,2,189,191]]],[6,10,8,191,199,[[215,2,2,191,193],[219,1,1,193,194],[220,1,1,194,195],[222,1,1,195,196],[226,2,2,196,198],[228,3,1,198,199]]],[7,1,1,199,200,[[235,1,1,199,200]]],[8,34,28,200,228,[[236,3,3,200,203],[237,3,3,203,206],[252,1,1,206,207],[253,4,2,207,209],[254,2,2,209,211],[255,4,4,211,215],[257,4,3,215,218],[258,2,2,218,220],[259,1,1,220,221],[260,4,2,221,223],[261,3,2,223,225],[263,2,2,225,227],[265,1,1,227,228]]],[9,17,14,228,242,[[267,1,1,228,229],[269,1,1,229,230],[270,2,2,230,232],[271,1,1,232,233],[277,1,1,233,234],[280,3,3,234,237],[282,1,1,237,238],[283,1,1,238,239],[284,1,1,239,240],[285,4,1,240,241],[289,1,1,241,242]]],[10,23,18,242,260,[[291,3,2,242,244],[292,2,2,244,246],[293,1,1,246,247],[298,1,1,247,248],[301,1,1,248,249],[307,2,2,249,251],[309,7,5,251,256],[310,6,4,256,260]]],[11,15,13,260,273,[[313,3,2,260,262],[314,3,3,262,265],[316,2,2,265,267],[319,1,1,267,268],[321,1,1,268,269],[322,2,1,269,270],[324,1,1,270,271],[335,2,2,271,273]]],[12,5,4,273,277,[[342,1,1,273,274],[348,2,1,274,275],[359,1,1,275,276],[365,1,1,276,277]]],[13,4,4,277,281,[[367,1,1,277,278],[372,1,1,278,279],[381,1,1,279,280],[400,1,1,280,281]]],[16,6,6,281,287,[[429,1,1,281,282],[432,2,2,282,284],[433,1,1,284,285],[434,2,2,285,287]]],[17,35,33,287,320,[[437,2,2,287,289],[438,1,1,289,290],[441,2,2,290,292],[442,2,2,292,294],[444,1,1,294,295],[445,2,1,295,296],[446,1,1,296,297],[447,1,1,297,298],[448,1,1,298,299],[449,1,1,299,300],[451,2,1,300,301],[453,1,1,301,302],[454,1,1,302,303],[456,1,1,303,304],[458,1,1,304,305],[459,1,1,305,306],[462,2,2,306,308],[465,2,2,308,310],[466,2,2,310,312],[467,1,1,312,313],[468,5,5,313,318],[471,1,1,318,319],[476,1,1,319,320]]],[18,144,141,320,461,[[480,1,1,320,321],[483,2,2,321,323],[484,2,2,323,325],[487,1,1,325,326],[488,2,2,326,328],[490,1,1,328,329],[493,1,1,329,330],[494,2,2,330,332],[496,1,1,332,333],[499,2,2,333,335],[500,1,1,335,336],[501,1,1,336,337],[502,3,3,337,340],[503,1,1,340,341],[504,1,1,341,342],[507,1,1,342,343],[508,3,3,343,346],[510,2,2,346,348],[511,2,2,348,350],[512,8,8,350,358],[515,1,1,358,359],[517,1,1,359,360],[518,2,2,360,362],[519,6,6,362,368],[520,1,1,368,369],[521,1,1,369,370],[526,3,3,370,373],[531,2,2,373,375],[532,1,1,375,376],[533,2,2,376,378],[534,3,3,378,381],[536,1,1,381,382],[539,2,2,382,384],[540,4,4,384,388],[543,2,2,388,390],[546,3,3,390,393],[547,1,1,393,394],[548,3,3,394,397],[549,2,2,397,399],[551,1,1,399,400],[554,1,1,400,401],[555,2,2,401,403],[561,1,1,403,404],[563,5,4,404,408],[565,2,2,408,410],[566,1,1,410,411],[571,3,3,411,414],[574,1,1,414,415],[580,3,3,415,418],[581,2,2,418,420],[582,2,2,420,422],[583,1,1,422,423],[584,5,4,423,427],[586,2,2,427,429],[593,3,3,429,432],[596,8,8,432,440],[597,2,2,440,442],[598,1,1,442,443],[600,1,1,443,444],[601,3,3,444,447],[607,2,2,447,449],[608,2,1,449,450],[615,1,1,450,451],[616,1,1,451,452],[618,1,1,452,453],[619,2,2,453,455],[620,5,5,455,460],[623,1,1,460,461]]],[19,56,54,461,515,[[628,2,2,461,463],[629,1,1,463,464],[630,1,1,464,465],[633,4,4,465,469],[634,1,1,469,470],[635,1,1,470,471],[637,1,1,471,472],[638,3,3,472,475],[639,1,1,475,476],[640,7,6,476,482],[641,2,2,482,484],[642,1,1,484,485],[643,3,3,485,488],[645,1,1,488,489],[646,5,5,489,494],[647,1,1,494,495],[648,2,2,495,497],[649,3,3,497,500],[650,3,3,500,503],[651,2,2,503,505],[652,2,2,505,507],[654,3,2,507,509],[655,2,2,509,511],[656,3,3,511,514],[658,1,1,514,515]]],[20,7,7,515,522,[[660,1,1,515,516],[662,1,1,516,517],[664,4,4,517,521],[665,1,1,521,522]]],[21,7,7,522,529,[[671,1,1,522,523],[673,4,4,523,527],[675,1,1,527,528],[676,1,1,528,529]]],[22,34,32,529,561,[[679,1,1,529,530],[681,2,2,530,532],[683,1,1,532,533],[688,1,1,533,534],[693,1,1,534,535],[697,1,1,535,536],[704,2,2,536,538],[707,2,1,538,539],[710,1,1,539,540],[716,2,2,540,542],[720,1,1,542,543],[721,1,1,543,544],[722,1,1,544,545],[724,1,1,545,546],[725,1,1,546,547],[727,1,1,547,548],[729,1,1,548,549],[731,3,3,549,552],[733,2,2,552,554],[734,1,1,554,555],[736,5,4,555,559],[739,1,1,559,560],[744,1,1,560,561]]],[23,62,58,561,619,[[746,2,2,561,563],[747,1,1,563,564],[748,4,4,564,568],[749,2,2,568,570],[750,2,2,570,572],[753,1,1,572,573],[755,1,1,573,574],[756,1,1,574,575],[757,1,1,575,576],[758,1,1,576,577],[759,2,2,577,579],[761,1,1,579,580],[762,1,1,580,581],[763,2,2,581,583],[764,1,1,583,584],[765,2,2,584,586],[766,2,2,586,588],[770,1,1,588,589],[775,4,3,589,592],[776,1,1,592,593],[778,3,3,593,596],[781,1,1,596,597],[782,5,4,597,601],[783,1,1,601,602],[784,2,2,602,604],[786,1,1,604,605],[787,1,1,605,606],[788,4,3,606,609],[789,1,1,609,610],[790,1,1,610,611],[792,1,1,611,612],[793,1,1,612,613],[794,1,1,613,614],[795,3,3,614,617],[796,3,2,617,619]]],[24,12,12,619,631,[[797,3,3,619,622],[798,2,2,622,624],[799,6,6,624,630],[801,1,1,630,631]]],[25,42,33,631,664,[[804,2,2,631,633],[805,1,1,633,634],[808,1,1,634,635],[814,8,3,635,638],[815,2,2,638,640],[817,2,2,640,642],[818,1,1,642,643],[819,6,3,643,646],[823,2,2,646,648],[824,5,4,648,652],[825,2,2,652,654],[826,2,2,654,656],[828,2,2,656,658],[833,1,1,658,659],[834,3,3,659,662],[837,1,1,662,663],[848,1,1,663,664]]],[27,2,2,664,666,[[865,1,1,664,665],[870,1,1,665,666]]],[29,3,3,666,669,[[880,2,2,666,668],[884,1,1,668,669]]],[31,5,5,669,674,[[889,1,1,669,670],[890,2,2,670,672],[892,2,2,672,674]]],[32,3,3,674,677,[[898,1,1,674,675],[899,2,2,675,677]]],[34,3,3,677,680,[[904,3,3,677,680]]],[36,1,1,680,681,[[910,1,1,680,681]]],[37,2,1,681,682,[[921,2,1,681,682]]]],[19,20,23,29,37,49,209,210,215,217,220,221,303,311,357,411,474,476,477,579,731,746,752,758,958,983,988,1029,1046,1273,1354,1401,1404,1408,1411,1412,1413,1479,1537,1620,1820,1831,1832,1835,1929,1963,2100,2107,2153,2394,2397,2398,2434,2763,2797,2822,2831,2832,2834,2845,2847,2851,2897,2899,2900,2904,2906,3007,3040,3041,3043,3230,3232,3245,3246,3247,3249,3250,3280,3289,3309,3324,3343,3346,3356,3372,3373,3375,3380,3429,3431,3432,3434,3463,3464,3535,3539,3540,3554,3567,3572,3794,3798,3829,3834,3971,3972,3975,3978,4030,4180,4181,4183,4184,4232,4300,4302,4307,4309,4311,4344,4345,4426,4615,4650,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4683,4692,4699,4704,4710,4714,4856,4860,4875,4876,5013,5019,5033,5091,5198,5208,5221,5226,5255,5260,5261,5263,5275,5278,5316,5390,5412,5417,5427,5461,5496,5524,5531,5532,5540,5582,5610,5676,5710,5714,5718,5882,5883,6061,6092,6094,6096,6099,6101,6103,6118,6375,6381,6431,6471,6474,6641,6644,6771,6827,6872,6965,6979,7018,7205,7222,7227,7238,7256,7273,7275,7673,7677,7679,7711,7717,7731,7733,7734,7747,7789,7809,7810,7825,7830,7850,7887,7890,7926,7929,7951,7963,7984,8031,8102,8128,8129,8140,8270,8363,8370,8375,8437,8457,8491,8516,8670,8729,8746,8774,8793,8827,9033,9145,9338,9339,9389,9390,9391,9397,9401,9439,9440,9447,9450,9546,9547,9553,9555,9557,9630,9633,9714,9771,9817,9854,10168,10190,10449,10692,10983,11152,11205,11320,11502,11964,12775,12810,12814,12828,12850,12865,12895,12897,12924,12985,12989,13019,13023,13072,13087,13128,13138,13167,13203,13242,13280,13299,13380,13432,13448,13483,13489,13573,13582,13618,13627,13630,13668,13670,13672,13678,13680,13750,13909,13959,13988,13989,13997,14000,14044,14060,14064,14076,14102,14112,14116,14175,14224,14233,14238,14245,14252,14264,14271,14282,14297,14322,14338,14340,14344,14385,14386,14390,14410,14413,14414,14417,14419,14422,14423,14427,14435,14502,14539,14544,14546,14556,14557,14559,14560,14561,14566,14571,14596,14656,14663,14666,14728,14729,14750,14761,14768,14769,14772,14774,14793,14828,14832,14840,14844,14847,14848,14882,14889,14936,14945,14953,14973,14986,14989,14999,15013,15014,15067,15095,15131,15163,15261,15286,15288,15297,15298,15311,15322,15374,15448,15450,15452,15488,15550,15551,15571,15572,15606,15624,15628,15666,15704,15708,15717,15725,15775,15786,15852,15855,15856,15918,15923,15926,15979,16007,16027,16065,16073,16076,16080,16088,16102,16106,16107,16109,16145,16146,16150,16234,16253,16284,16290,16293,16296,16299,16301,16304,16305,16342,16418,16419,16443,16477,16556,16566,16570,16572,16598,16638,16659,16705,16713,16718,16729,16749,16750,16751,16755,16766,16772,16782,16797,16839,16857,16864,16866,16908,16927,16933,16940,16941,16943,16956,16994,17007,17020,17038,17040,17046,17051,17058,17091,17093,17126,17138,17176,17178,17213,17221,17234,17241,17248,17290,17357,17389,17419,17420,17424,17426,17457,17544,17572,17573,17574,17575,17604,17626,17668,17716,17727,17753,17868,17964,18014,18138,18139,18201,18265,18405,18407,18481,18509,18553,18588,18613,18643,18696,18721,18722,18723,18742,18743,18764,18789,18791,18796,18797,18853,18925,18989,18999,19013,19037,19046,19057,19058,19067,19087,19097,19105,19184,19247,19256,19283,19312,19316,19324,19378,19404,19414,19416,19435,19447,19449,19479,19481,19591,19703,19705,19716,19772,19817,19821,19822,19883,19897,19911,19912,19915,19941,19955,19956,19995,20003,20017,20024,20040,20045,20071,20086,20164,20185,20218,20226,20257,20305,20306,20321,20326,20329,20344,20351,20371,20374,20378,20379,20405,20412,20451,20521,20523,20543,20596,20726,20727,20728,20745,20751,20767,20789,20842,20853,20869,20876,21001,21003,21024,21025,21029,21035,21077,21081,21089,21098,21134,21152,21258,21285,21286,21289,21364,21688,22141,22212,22393,22394,22458,22545,22553,22555,22571,22576,22655,22665,22667,22752,22753,22758,22868,23036]]],["+",[34,33,[[0,2,2,0,2,[[0,2,2,0,2]]],[2,4,4,2,6,[[100,1,1,2,3],[109,1,1,3,4],[113,2,2,4,6]]],[3,5,4,6,10,[[147,4,3,6,9],[151,1,1,9,10]]],[4,1,1,10,11,[[174,1,1,10,11]]],[6,1,1,11,12,[[228,1,1,11,12]]],[8,1,1,12,13,[[257,1,1,12,13]]],[12,1,1,13,14,[[342,1,1,13,14]]],[17,1,1,14,15,[[451,1,1,14,15]]],[18,3,3,15,18,[[618,1,1,15,16],[619,1,1,16,17],[620,1,1,17,18]]],[19,1,1,18,19,[[654,1,1,18,19]]],[20,1,1,19,20,[[660,1,1,19,20]]],[22,3,3,20,23,[[681,1,1,20,21],[688,1,1,21,22],[734,1,1,22,23]]],[23,5,5,23,28,[[746,1,1,23,24],[766,1,1,24,25],[784,2,2,25,27],[788,1,1,27,28]]],[24,1,1,28,29,[[799,1,1,28,29]]],[25,4,4,29,33,[[814,3,3,29,32],[819,1,1,32,33]]]],[19,29,3040,3343,3463,3464,4699,4704,4710,4875,5496,7018,7789,10449,13242,16284,16293,16304,17178,17357,17727,17868,18764,18989,19481,19955,19956,20024,20371,20726,20727,20728,20876]]],["He",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16866]]],["They",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13750]]],["any",[2,2,[[2,1,1,0,1,[[91,1,1,0,1]]],[4,1,1,1,2,[[176,1,1,1,2]]]],[2763,5532]]],["appetite",[2,2,[[19,1,1,0,1,[[650,1,1,0,1]]],[20,1,1,1,2,[[664,1,1,1,2]]]],[17046,17424]]],["beast",[2,1,[[2,2,1,0,1,[[113,2,1,0,1]]]],[3464]]],["body",[8,8,[[2,1,1,0,1,[[110,1,1,0,1]]],[3,6,6,1,7,[[122,1,1,1,2],[125,3,3,2,5],[135,2,2,5,7]]],[36,1,1,7,8,[[910,1,1,7,8]]]],[3356,3829,3971,3972,3975,4300,4302,22868]]],["breath",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13909]]],["creature",[9,8,[[0,7,7,0,7,[[0,2,2,0,2],[1,1,1,2,3],[8,4,4,3,7]]],[2,2,1,7,8,[[100,2,1,7,8]]]],[20,23,49,215,217,220,221,3043]]],["dead",[5,5,[[2,3,3,0,3,[[108,1,1,0,1],[110,1,1,1,2],[111,1,1,2,3]]],[3,2,2,3,5,[[121,1,1,3,4],[122,1,1,4,5]]]],[3309,3346,3373,3794,3834]]],["deadly",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14112]]],["desire",[3,3,[[20,1,1,0,1,[[664,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[17426,22667,22753]]],["fish",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18014]]],["ghost",[2,2,[[17,1,1,0,1,[[446,1,1,0,1]]],[23,1,1,1,2,[[759,1,1,1,2]]]],[13128,19324]]],["he",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15624]]],["heart",[12,12,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[4,1,1,2,3,[[176,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[9,1,1,4,5,[[269,1,1,4,5]]],[19,2,2,5,7,[[650,1,1,5,6],[655,1,1,6,7]]],[24,1,1,7,8,[[799,1,1,7,8]]],[25,3,3,8,11,[[826,2,2,8,10],[828,1,1,10,11]]],[27,1,1,11,12,[[865,1,1,11,12]]]],[2153,3540,5540,7273,8102,17051,17221,20405,21089,21098,21152,22141]]],["heart's",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14044]]],["hearts",[2,2,[[19,1,1,0,1,[[658,1,1,0,1]]],[23,1,1,1,2,[[786,1,1,1,2]]]],[17290,19995]]],["herself",[2,2,[[22,1,1,0,1,[[683,1,1,0,1]]],[23,1,1,1,2,[[747,1,1,1,2]]]],[17753,19013]]],["him",[2,2,[[4,1,1,0,1,[[171,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]]],[5412,16556]]],["himself",[8,8,[[10,1,1,0,1,[[309,1,1,0,1]]],[17,2,2,1,3,[[453,1,1,1,2],[467,1,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]],[29,3,3,4,7,[[880,2,2,4,6],[884,1,1,6,7]]],[31,1,1,7,8,[[892,1,1,7,8]]]],[9391,13280,13630,20226,22393,22394,22458,22576]]],["it",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14435]]],["life",[100,85,[[0,7,6,0,6,[[8,2,2,0,2],[18,2,2,2,4],[31,1,1,4,5],[43,2,1,5,6]]],[1,4,3,6,9,[[53,1,1,6,7],[70,3,2,7,9]]],[2,4,2,9,11,[[106,4,2,9,11]]],[3,1,1,11,12,[[151,1,1,11,12]]],[4,5,3,12,15,[[164,2,1,12,13],[171,2,1,13,14],[176,1,1,14,15]]],[5,1,1,15,16,[[188,1,1,15,16]]],[6,3,3,16,19,[[219,1,1,16,17],[222,1,1,17,18],[228,1,1,18,19]]],[7,1,1,19,20,[[235,1,1,19,20]]],[8,10,8,20,28,[[254,2,2,20,22],[255,1,1,22,23],[257,2,1,23,24],[258,1,1,24,25],[261,2,1,25,26],[263,2,2,26,28]]],[9,6,6,28,34,[[267,1,1,28,29],[270,1,1,29,30],[280,1,1,30,31],[282,1,1,31,32],[284,1,1,32,33],[285,1,1,33,34]]],[10,15,11,34,45,[[291,2,1,34,35],[292,1,1,35,36],[293,1,1,36,37],[309,6,5,37,42],[310,5,3,42,45]]],[11,6,4,45,49,[[313,3,2,45,47],[319,1,1,47,48],[322,2,1,48,49]]],[13,1,1,49,50,[[367,1,1,49,50]]],[16,3,3,50,53,[[432,2,2,50,52],[433,1,1,52,53]]],[17,5,5,53,58,[[437,2,2,53,55],[441,1,1,55,56],[448,1,1,56,57],[466,1,1,57,58]]],[18,2,2,58,60,[[508,1,1,58,59],[515,1,1,59,60]]],[19,6,6,60,66,[[628,1,1,60,61],[633,1,1,61,62],[634,1,1,62,63],[639,1,1,63,64],[640,2,2,64,66]]],[22,2,2,66,68,[[693,1,1,66,67],[721,1,1,67,68]]],[23,14,13,68,81,[[748,1,1,68,69],[755,1,1,69,70],[765,2,2,70,72],[766,1,1,72,73],[778,2,2,73,75],[782,2,2,75,77],[783,1,1,77,78],[788,2,1,78,79],[789,1,1,79,80],[793,1,1,80,81]]],[24,1,1,81,82,[[798,1,1,81,82]]],[25,1,1,82,83,[[833,1,1,82,83]]],[31,2,2,83,85,[[889,1,1,83,84],[892,1,1,84,85]]]],[209,210,474,476,958,1354,1620,2100,2107,3246,3249,4876,5263,5427,5531,5883,6771,6872,7018,7205,7711,7717,7731,7810,7825,7929,7951,7963,8031,8128,8363,8437,8491,8516,8729,8793,8827,9389,9390,9391,9397,9401,9439,9447,9450,9546,9547,9714,9817,11205,12810,12814,12828,12895,12897,12989,13167,13627,14344,14502,16419,16566,16598,16729,16750,16755,17964,18509,19057,19247,19447,19449,19479,19821,19822,19897,19911,19941,20040,20045,20164,20351,21258,22545,22571]]],["lives",[18,15,[[0,1,1,0,1,[[8,1,1,0,1]]],[5,2,2,1,3,[[188,1,1,1,2],[195,1,1,2,3]]],[6,2,2,3,5,[[215,1,1,3,4],[228,1,1,4,5]]],[9,4,2,5,7,[[285,3,1,5,6],[289,1,1,6,7]]],[12,2,1,7,8,[[348,2,1,7,8]]],[16,1,1,8,9,[[434,1,1,8,9]]],[19,1,1,9,10,[[628,1,1,9,10]]],[23,4,4,10,14,[[763,2,2,10,12],[790,1,1,12,13],[792,1,1,13,14]]],[24,1,1,14,15,[[801,1,1,14,15]]]],[210,5882,6061,6641,7018,8516,8670,10692,12850,16418,19414,19416,20071,20086,20451]]],["lust",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[1929,15131]]],["man",[3,3,[[1,1,1,0,1,[[61,1,1,0,1]]],[11,1,1,1,2,[[324,1,1,1,2]]],[22,1,1,2,3,[[727,1,1,2,3]]]],[1832,9854,18643]]],["me",[3,3,[[3,1,1,0,1,[[139,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[10,1,1,2,3,[[310,1,1,2,3]]]],[4426,6979,9440]]],["mind",[11,10,[[0,1,1,0,1,[[22,1,1,0,1]]],[4,2,2,1,3,[[170,1,1,1,2],[180,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[12,1,1,4,5,[[365,1,1,4,5]]],[23,1,1,5,6,[[759,1,1,5,6]]],[25,5,4,6,10,[[824,5,4,6,10]]]],[579,5390,5676,7275,11152,19316,21024,21025,21029,21035]]],["minds",[4,4,[[9,1,1,0,1,[[283,1,1,0,1]]],[11,1,1,1,2,[[321,1,1,1,2]]],[25,2,2,2,4,[[825,1,1,2,3],[837,1,1,3,4]]]],[8457,9771,21081,21364]]],["mortally",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5417]]],["myself",[1,1,[[18,1,1,0,1,[[608,1,1,0,1]]]],[16150]]],["one",[1,1,[[2,1,1,0,1,[[93,1,1,0,1]]]],[2822]]],["own",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16782]]],["person",[13,13,[[3,5,5,0,5,[[121,1,1,0,1],[147,1,1,1,2],[151,3,3,2,5]]],[4,1,1,5,6,[[179,1,1,5,6]]],[5,2,2,6,8,[[206,2,2,6,8]]],[9,1,1,8,9,[[280,1,1,8,9]]],[19,1,1,9,10,[[655,1,1,9,10]]],[23,1,1,10,11,[[787,1,1,10,11]]],[25,2,2,11,13,[[817,1,1,11,12],[834,1,1,12,13]]]],[3798,4683,4856,4860,4875,5610,6375,6381,8370,17213,20003,20767,21286]]],["persons",[13,12,[[0,2,2,0,2,[[13,1,1,0,1],[35,1,1,1,2]]],[1,1,1,2,3,[[65,1,1,2,3]]],[2,1,1,3,4,[[116,1,1,3,4]]],[3,2,2,4,6,[[135,1,1,4,5],[147,1,1,5,6]]],[4,1,1,6,7,[[162,1,1,6,7]]],[8,1,1,7,8,[[257,1,1,7,8]]],[23,3,2,8,10,[[796,3,2,8,10]]],[25,2,2,10,12,[[818,1,1,10,11],[828,1,1,11,12]]]],[357,1046,1963,3572,4307,4704,5208,7809,20305,20306,20842,21134]]],["pleasure",[3,3,[[4,1,1,0,1,[[175,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]],[23,1,1,2,3,[[778,1,1,2,3]]]],[5524,15628,19817]]],["soul",[409,386,[[0,13,13,0,13,[[1,1,1,0,1],[11,1,1,1,2],[16,1,1,2,3],[18,1,1,3,4],[26,4,4,4,8],[33,2,2,8,10],[34,1,1,10,11],[41,1,1,11,12],[48,1,1,12,13]]],[1,4,4,13,17,[[61,2,2,13,15],[79,1,1,15,16],[80,1,1,16,17]]],[2,32,27,17,44,[[93,1,1,17,18],[94,5,5,18,23],[95,1,1,23,24],[96,8,5,24,29],[106,4,4,29,33],[108,1,1,33,34],[109,2,1,34,35],[111,3,3,35,38],[112,3,2,38,40],[115,4,4,40,44]]],[3,24,22,44,66,[[125,1,1,44,45],[127,1,1,45,46],[131,5,4,46,50],[135,3,3,50,53],[137,2,2,53,55],[146,11,10,55,65],[147,1,1,65,66]]],[4,18,16,66,82,[[156,2,2,66,68],[158,1,1,68,69],[162,1,1,69,70],[163,2,2,70,72],[164,4,3,72,75],[165,2,2,75,77],[166,2,1,77,78],[178,1,1,78,79],[182,3,3,79,82]]],[5,1,1,82,83,[[208,1,1,82,83]]],[6,3,3,83,86,[[215,1,1,83,84],[220,1,1,84,85],[226,1,1,85,86]]],[8,19,16,86,102,[[236,3,3,86,89],[237,1,1,89,90],[252,1,1,90,91],[253,4,2,91,93],[255,3,3,93,96],[258,1,1,96,97],[259,1,1,97,98],[260,3,2,98,100],[261,1,1,100,101],[265,1,1,101,102]]],[9,4,4,102,106,[[270,1,1,102,103],[271,1,1,103,104],[277,1,1,104,105],[280,1,1,105,106]]],[10,6,6,106,112,[[291,1,1,106,107],[292,1,1,107,108],[298,1,1,108,109],[301,1,1,109,110],[307,2,2,110,112]]],[11,7,7,112,119,[[314,3,3,112,115],[316,2,2,115,117],[335,2,2,117,119]]],[12,1,1,119,120,[[359,1,1,119,120]]],[13,3,3,120,123,[[372,1,1,120,121],[381,1,1,121,122],[400,1,1,122,123]]],[17,24,23,123,146,[[438,1,1,123,124],[441,1,1,124,125],[442,2,2,125,127],[444,1,1,127,128],[445,2,1,128,129],[447,1,1,129,130],[449,1,1,130,131],[451,1,1,131,132],[454,1,1,132,133],[456,1,1,133,134],[458,1,1,134,135],[459,1,1,135,136],[462,2,2,136,138],[465,2,2,138,140],[466,1,1,140,141],[468,5,5,141,146]]],[18,128,126,146,272,[[480,1,1,146,147],[483,2,2,147,149],[484,2,2,149,151],[488,2,2,151,153],[490,1,1,153,154],[493,1,1,154,155],[494,1,1,155,156],[496,1,1,156,157],[499,2,2,157,159],[500,1,1,159,160],[501,1,1,160,161],[502,3,3,161,164],[503,1,1,164,165],[507,1,1,165,166],[508,2,2,166,168],[510,2,2,168,170],[511,2,2,170,172],[512,7,7,172,179],[517,1,1,179,180],[518,1,1,180,181],[519,6,6,181,187],[520,1,1,187,188],[521,1,1,188,189],[526,3,3,189,192],[531,2,2,192,194],[532,1,1,194,195],[533,2,2,195,197],[534,3,3,197,200],[536,1,1,200,201],[539,2,2,201,203],[540,4,4,203,207],[543,2,2,207,209],[546,3,3,209,212],[547,1,1,212,213],[548,3,3,213,216],[549,1,1,216,217],[551,1,1,217,218],[554,1,1,218,219],[555,1,1,219,220],[561,1,1,220,221],[563,5,4,221,225],[565,2,2,225,227],[566,1,1,227,228],[571,3,3,228,231],[580,3,3,231,234],[581,2,2,234,236],[583,1,1,236,237],[584,5,4,237,241],[586,2,2,241,243],[593,3,3,243,246],[596,8,8,246,254],[597,2,2,254,256],[598,1,1,256,257],[600,1,1,257,258],[601,3,3,258,261],[607,2,2,261,263],[608,1,1,263,264],[615,1,1,264,265],[616,1,1,265,266],[619,1,1,266,267],[620,4,4,267,271],[623,1,1,271,272]]],[19,38,36,272,308,[[629,1,1,272,273],[630,1,1,273,274],[633,2,2,274,276],[635,1,1,276,277],[637,1,1,277,278],[638,2,2,278,280],[640,5,4,280,284],[642,1,1,284,285],[643,2,2,285,287],[645,1,1,287,288],[646,5,5,288,293],[647,1,1,293,294],[648,2,2,294,296],[649,3,3,296,299],[650,1,1,299,300],[651,2,2,300,302],[652,2,2,302,304],[654,2,1,304,305],[656,3,3,305,308]]],[20,4,4,308,312,[[662,1,1,308,309],[664,2,2,309,311],[665,1,1,311,312]]],[21,7,7,312,319,[[671,1,1,312,313],[673,4,4,313,317],[675,1,1,317,318],[676,1,1,318,319]]],[22,24,22,319,341,[[679,1,1,319,320],[681,1,1,320,321],[704,2,2,321,323],[707,2,1,323,324],[710,1,1,324,325],[716,2,2,325,327],[720,1,1,327,328],[722,1,1,328,329],[729,1,1,329,330],[731,3,3,330,333],[733,2,2,333,335],[736,5,4,335,339],[739,1,1,339,340],[744,1,1,340,341]]],[23,23,22,341,363,[[748,3,3,341,344],[749,2,2,344,346],[750,1,1,346,347],[753,1,1,347,348],[756,1,1,348,349],[757,1,1,349,350],[758,1,1,350,351],[762,1,1,351,352],[764,1,1,352,353],[775,4,3,353,356],[776,1,1,356,357],[782,3,3,357,360],[794,1,1,360,361],[795,2,2,361,363]]],[24,7,7,363,370,[[797,2,2,363,365],[798,1,1,365,366],[799,4,4,366,370]]],[25,10,8,370,378,[[804,2,2,370,372],[805,1,1,372,373],[819,4,2,373,375],[825,1,1,375,376],[834,2,2,376,378]]],[27,1,1,378,379,[[870,1,1,378,379]]],[31,2,2,379,381,[[890,2,2,379,381]]],[32,2,2,381,383,[[898,1,1,381,382],[899,1,1,382,383]]],[34,2,2,383,385,[[904,2,2,383,385]]],[37,2,1,385,386,[[921,2,1,385,386]]]],[37,311,411,477,731,746,752,758,983,988,1029,1273,1479,1831,1835,2394,2434,2797,2831,2832,2834,2845,2847,2851,2897,2899,2900,2904,2906,3245,3246,3247,3250,3289,3324,3372,3375,3380,3431,3432,3535,3539,3554,3567,3978,4030,4180,4181,4183,4184,4302,4309,4311,4344,4345,4650,4652,4653,4654,4655,4656,4658,4659,4660,4661,4692,5013,5033,5091,5198,5221,5226,5255,5260,5261,5275,5278,5316,5582,5710,5714,5718,6431,6644,6827,6965,7222,7227,7238,7256,7673,7677,7679,7733,7734,7747,7830,7850,7887,7890,7926,7984,8129,8140,8270,8375,8746,8774,9033,9145,9338,9339,9553,9555,9557,9630,9633,10168,10190,10983,11320,11502,11964,12924,12985,13019,13023,13072,13087,13138,13203,13242,13299,13380,13432,13448,13483,13489,13573,13582,13618,13668,13670,13672,13678,13680,13959,13988,13989,13997,14000,14060,14064,14076,14102,14116,14175,14224,14233,14238,14245,14252,14264,14271,14282,14322,14338,14340,14385,14386,14390,14410,14413,14414,14417,14419,14422,14423,14427,14539,14546,14556,14557,14559,14560,14561,14566,14571,14596,14656,14663,14666,14728,14729,14750,14761,14768,14769,14772,14774,14793,14828,14832,14840,14844,14847,14848,14882,14889,14936,14945,14953,14973,14986,14989,14999,15014,15067,15095,15163,15261,15286,15288,15297,15298,15311,15322,15374,15448,15450,15452,15550,15551,15571,15572,15606,15666,15704,15708,15717,15725,15775,15786,15852,15855,15856,15918,15923,15926,15979,16007,16027,16065,16073,16076,16080,16088,16102,16106,16107,16109,16145,16146,16150,16234,16253,16290,16296,16299,16301,16305,16342,16443,16477,16570,16572,16638,16659,16705,16713,16749,16751,16766,16772,16839,16857,16864,16908,16927,16933,16940,16941,16943,16956,16994,17007,17020,17038,17040,17058,17091,17093,17126,17138,17176,17234,17241,17248,17389,17419,17420,17457,17544,17572,17573,17574,17575,17604,17626,17668,17716,18138,18139,18201,18265,18405,18407,18481,18553,18696,18721,18722,18723,18742,18743,18789,18791,18796,18797,18853,18925,19037,19046,19058,19067,19087,19097,19184,19256,19283,19312,19404,19435,19703,19705,19716,19772,19911,19912,19915,20185,20218,20257,20321,20326,20344,20374,20378,20379,20412,20521,20523,20543,20853,20869,21077,21285,21289,22212,22553,22555,22655,22665,22752,22758,23036]]],["souls",[54,48,[[0,9,7,0,7,[[11,1,1,0,1],[45,8,6,1,7]]],[1,5,4,7,11,[[50,2,1,7,8],[61,1,1,8,9],[79,2,2,9,11]]],[2,6,6,11,17,[[105,2,2,11,13],[106,1,1,13,14],[107,1,1,14,15],[112,2,2,15,17]]],[3,4,4,17,21,[[132,1,1,17,18],[145,1,1,18,19],[146,1,1,19,20],[147,1,1,20,21]]],[5,9,8,21,29,[[196,7,6,21,27],[197,1,1,27,28],[209,1,1,28,29]]],[8,1,1,29,30,[[260,1,1,29,30]]],[18,2,2,30,32,[[549,1,1,30,31],[574,1,1,31,32]]],[19,2,2,32,34,[[638,1,1,32,33],[641,1,1,33,34]]],[23,4,4,34,38,[[746,1,1,34,35],[750,1,1,35,36],[770,1,1,36,37],[788,1,1,37,38]]],[24,1,1,38,39,[[797,1,1,38,39]]],[25,11,9,39,48,[[808,1,1,39,40],[814,5,3,40,43],[815,2,2,43,45],[819,1,1,45,46],[823,2,2,46,48]]]],[303,1401,1404,1408,1411,1412,1413,1537,1820,2397,2398,3230,3232,3246,3280,3429,3434,4232,4615,4657,4714,6092,6094,6096,6099,6101,6103,6118,6474,7890,15013,15488,16718,16797,18999,19105,19591,20017,20329,20596,20726,20727,20728,20745,20751,20853,21001,21003]]],["themselves",[3,3,[[16,1,1,0,1,[[434,1,1,0,1]]],[22,2,2,1,3,[[724,1,1,1,2],[725,1,1,2,3]]]],[12865,18588,18613]]],["thing",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[25,1,1,1,2,[[848,1,1,1,2]]]],[3007,21688]]],["thyself",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12775]]],["will",[4,4,[[4,1,1,0,1,[[173,1,1,0,1]]],[18,2,2,1,3,[[504,1,1,1,2],[518,1,1,2,3]]],[25,1,1,3,4,[[817,1,1,3,4]]]],[5461,14297,14544,20789]]],["yourselves",[5,5,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[156,1,1,1,2]]],[5,1,1,2,3,[[209,1,1,2,3]]],[23,2,2,3,5,[[761,1,1,3,4],[781,1,1,4,5]]]],[3041,5019,6471,19378,19883]]]]},{"k":"H5316","v":[["countries",[1,1,[[5,1,1,0,1,[[203,1,1,0,1]]]],[6286]]]]},{"k":"H5317","v":[["*",[5,5,[[18,1,1,0,1,[[496,1,1,0,1]]],[19,3,3,1,4,[[632,1,1,1,2],[651,1,1,2,3],[654,1,1,3,4]]],[21,1,1,4,5,[[674,1,1,4,5]]]],[14178,16520,17092,17176,17593]]],["+",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14178]]],["honeycomb",[4,4,[[19,3,3,0,3,[[632,1,1,0,1],[651,1,1,1,2],[654,1,1,2,3]]],[21,1,1,3,4,[[674,1,1,3,4]]]],[16520,17092,17176,17593]]]]},{"k":"H5318","v":[["Nephtoah",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[204,1,1,1,2]]]],[6211,6308]]]]},{"k":"H5319","v":[["wrestlings",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[838]]]]},{"k":"H5320","v":[["*",[3,3,[[0,1,1,0,1,[[9,1,1,0,1]]],[6,1,1,1,2,[[214,1,1,1,2]]],[12,1,1,2,3,[[338,1,1,2,3]]]],[247,6605,10263]]],["+",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6605]]],["Naphtuhim",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[247,10263]]]]},{"k":"H5321","v":[["*",[50,47,[[0,4,4,0,4,[[29,1,1,0,1],[34,1,1,1,2],[45,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[3,11,10,5,15,[[117,3,3,5,8],[118,2,1,8,9],[123,1,1,9,10],[126,1,1,10,11],[129,1,1,11,12],[142,2,2,12,14],[150,1,1,14,15]]],[4,4,3,15,18,[[179,1,1,15,16],[185,2,1,16,17],[186,1,1,17,18]]],[5,6,5,18,23,[[205,3,2,18,20],[206,1,1,20,21],[207,2,2,21,23]]],[6,6,6,23,29,[[211,1,1,23,24],[214,2,2,24,26],[215,1,1,26,27],[216,1,1,27,28],[217,1,1,28,29]]],[10,3,3,29,32,[[294,1,1,29,30],[297,1,1,30,31],[305,1,1,31,32]]],[11,1,1,32,33,[[327,1,1,32,33]]],[12,7,7,33,40,[[339,1,1,33,34],[343,2,2,34,36],[344,1,1,36,37],[349,2,2,37,39],[364,1,1,39,40]]],[13,2,2,40,42,[[382,1,1,40,41],[400,1,1,41,42]]],[18,1,1,42,43,[[545,1,1,42,43]]],[22,1,1,43,44,[[687,1,1,43,44]]],[25,3,3,44,47,[[849,3,3,44,47]]]],[838,1036,1410,1494,1536,3619,3646,3647,3687,3928,4015,4089,4537,4539,4844,5598,5833,5841,6353,6360,6379,6387,6413,6542,6605,6609,6641,6689,6717,8859,8948,9269,9954,10308,10516,10530,10548,10754,10760,11128,11513,11939,14927,17830,21705,21706,21736]]],["+",[4,4,[[5,1,1,0,1,[[207,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]],[12,2,2,2,4,[[343,1,1,2,3],[349,1,1,3,4]]]],[6413,6717,10530,10754]]],["Naphtali",[46,43,[[0,4,4,0,4,[[29,1,1,0,1],[34,1,1,1,2],[45,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[3,11,10,5,15,[[117,3,3,5,8],[118,2,1,8,9],[123,1,1,9,10],[126,1,1,10,11],[129,1,1,11,12],[142,2,2,12,14],[150,1,1,14,15]]],[4,4,3,15,18,[[179,1,1,15,16],[185,2,1,16,17],[186,1,1,17,18]]],[5,5,4,18,22,[[205,3,2,18,20],[206,1,1,20,21],[207,1,1,21,22]]],[6,5,5,22,27,[[211,1,1,22,23],[214,2,2,23,25],[215,1,1,25,26],[216,1,1,26,27]]],[10,3,3,27,30,[[294,1,1,27,28],[297,1,1,28,29],[305,1,1,29,30]]],[11,1,1,30,31,[[327,1,1,30,31]]],[12,5,5,31,36,[[339,1,1,31,32],[343,1,1,32,33],[344,1,1,33,34],[349,1,1,34,35],[364,1,1,35,36]]],[13,2,2,36,38,[[382,1,1,36,37],[400,1,1,37,38]]],[18,1,1,38,39,[[545,1,1,38,39]]],[22,1,1,39,40,[[687,1,1,39,40]]],[25,3,3,40,43,[[849,3,3,40,43]]]],[838,1036,1410,1494,1536,3619,3646,3647,3687,3928,4015,4089,4537,4539,4844,5598,5833,5841,6353,6360,6379,6387,6542,6605,6609,6641,6689,8859,8948,9269,9954,10308,10516,10548,10760,11128,11513,11939,14927,17830,21705,21706,21736]]]]},{"k":"H5322","v":[["*",[4,4,[[0,1,1,0,1,[[39,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]],[4,1,1,2,3,[[166,1,1,2,3]]],[17,1,1,3,4,[[474,1,1,3,4]]]],[1182,3013,5305,13860]]],["blossoms",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1182]]],["hawk",[3,3,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[17,1,1,2,3,[[474,1,1,2,3]]]],[3013,5305,13860]]]]},{"k":"H5323","v":[["flee",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20089]]]]},{"k":"H5324","v":[["*",[75,75,[[0,12,12,0,12,[[17,1,1,0,1],[20,2,2,1,3],[23,2,2,3,5],[27,2,2,5,7],[32,1,1,7,8],[34,2,2,8,10],[36,1,1,10,11],[44,1,1,11,12]]],[1,8,8,12,20,[[54,1,1,12,13],[56,1,1,13,14],[64,1,1,14,15],[66,1,1,15,16],[67,1,1,16,17],[82,2,2,17,19],[83,1,1,19,20]]],[3,6,6,20,26,[[132,1,1,20,21],[138,3,3,21,24],[139,2,2,24,26]]],[4,2,2,26,28,[[181,1,1,26,27],[184,1,1,27,28]]],[5,1,1,28,29,[[192,1,1,28,29]]],[6,3,3,29,32,[[219,1,1,29,30],[228,2,2,30,32]]],[7,2,2,32,34,[[233,2,2,32,34]]],[8,9,9,34,43,[[236,1,1,34,35],[239,1,1,35,36],[248,1,1,36,37],[250,1,1,37,38],[254,1,1,38,39],[257,4,4,39,43]]],[9,3,3,43,46,[[279,1,1,43,44],[284,2,2,44,46]]],[10,7,7,46,53,[[294,3,3,46,49],[295,1,1,49,50],[299,1,1,50,51],[306,1,1,51,52],[312,1,1,52,53]]],[11,1,1,53,54,[[329,1,1,53,54]]],[12,1,1,54,55,[[355,1,1,54,55]]],[13,1,1,55,56,[[374,1,1,55,56]]],[18,7,7,56,63,[[516,1,1,56,57],[518,1,1,57,58],[522,1,1,58,59],[551,1,1,59,60],[555,1,1,60,61],[559,1,1,61,62],[596,1,1,62,63]]],[19,2,2,63,65,[[635,1,1,63,64],[642,1,1,64,65]]],[22,2,2,65,67,[[681,1,1,65,66],[699,1,1,66,67]]],[23,2,2,67,69,[[749,1,1,67,68],[775,1,1,68,69]]],[24,2,2,69,71,[[798,1,1,69,70],[799,1,1,70,71]]],[29,2,2,71,73,[[885,1,1,71,72],[887,1,1,72,73]]],[33,1,1,73,74,[[901,1,1,73,74]]],[37,1,1,74,75,[[921,1,1,74,75]]]],[426,541,542,604,634,785,786,980,1025,1031,1090,1359,1652,1700,1928,1992,2013,2481,2494,2498,4221,4398,4406,4409,4422,4433,5689,5766,5975,6760,7009,7010,7154,7155,7238,7317,7506,7572,7726,7793,7794,7796,7804,8348,8495,8496,8849,8851,8871,8894,9074,9317,9527,9993,10893,11356,14517,14554,14606,15065,15126,15234,15987,16604,16832,17720,18043,19084,19712,20336,20366,22471,22496,22706,23044]]],["+",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[541]]],["Huzzab",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22706]]],["appointed",[1,1,[[8,1,1,0,1,[[254,1,1,0,1]]]],[7726]]],["by",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8348]]],["deputy",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9527]]],["erected",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[980]]],["establish",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16832]]],["laid",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8495]]],["officers",[6,6,[[10,5,5,0,5,[[294,3,3,0,3],[295,1,1,3,4],[299,1,1,4,5]]],[13,1,1,5,6,[[374,1,1,5,6]]]],[8849,8851,8871,8894,9074,11356]]],["pillar",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6760]]],["set",[10,10,[[0,2,2,0,2,[[20,1,1,0,1],[34,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[7,2,2,3,5,[[233,2,2,3,5]]],[8,1,1,5,6,[[257,1,1,5,6]]],[18,1,1,6,7,[[551,1,1,6,7]]],[22,1,1,7,8,[[699,1,1,7,8]]],[23,1,1,8,9,[[749,1,1,8,9]]],[24,1,1,9,10,[[799,1,1,9,10]]]],[542,1031,5766,7154,7155,7796,15065,18043,19084,20366]]],["settest",[1,1,[[18,1,1,0,1,[[518,1,1,0,1]]]],[14554]]],["settled",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15987]]],["sharpen",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7506]]],["stablish",[1,1,[[12,1,1,0,1,[[355,1,1,0,1]]]],[10893]]],["stand",[9,9,[[0,2,2,0,2,[[23,2,2,0,2]]],[1,4,4,2,6,[[56,1,1,2,3],[66,1,1,3,4],[67,1,1,4,5],[82,1,1,5,6]]],[4,1,1,6,7,[[181,1,1,6,7]]],[18,2,2,7,9,[[522,1,1,7,8],[555,1,1,8,9]]]],[604,634,1700,1992,2013,2494,5689,14606,15126]]],["standeth",[2,2,[[18,1,1,0,1,[[559,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]]],[15234,16604]]],["standing",[4,4,[[3,2,2,0,2,[[138,2,2,0,2]]],[8,1,1,2,3,[[257,1,1,2,3]]],[29,1,1,3,4,[[887,1,1,3,4]]]],[4398,4406,7793,22496]]],["state",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14517]]],["still",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23044]]],["stood",[16,16,[[0,3,3,0,3,[[17,1,1,0,1],[27,1,1,1,2],[44,1,1,2,3]]],[1,2,2,3,5,[[54,1,1,3,4],[82,1,1,4,5]]],[3,3,3,5,8,[[132,1,1,5,6],[139,2,2,6,8]]],[6,2,2,8,10,[[228,2,2,8,10]]],[8,4,4,10,14,[[236,1,1,10,11],[239,1,1,11,12],[257,2,2,12,14]]],[24,1,1,14,15,[[798,1,1,14,15]]],[29,1,1,15,16,[[885,1,1,15,16]]]],[426,786,1359,1652,2481,4221,4422,4433,7009,7010,7238,7317,7794,7804,20336,22471]]],["stoodest",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4409]]],["thyself",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2498]]],["up",[9,9,[[0,2,2,0,2,[[27,1,1,0,1],[34,1,1,1,2]]],[5,1,1,2,3,[[192,1,1,2,3]]],[8,1,1,3,4,[[250,1,1,3,4]]],[9,1,1,4,5,[[284,1,1,4,5]]],[10,1,1,5,6,[[306,1,1,5,6]]],[11,1,1,6,7,[[329,1,1,6,7]]],[22,1,1,7,8,[[681,1,1,7,8]]],[23,1,1,8,9,[[775,1,1,8,9]]]],[785,1025,5975,7572,8496,9317,9993,17720,19712]]],["upright",[2,2,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]]],[1090,1928]]]]},{"k":"H5325","v":[["haft",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6590]]]]},{"k":"H5326","v":[["strength",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21799]]]]},{"k":"H5327","v":[["*",[10,9,[[1,2,2,0,2,[[51,1,1,0,1],[70,1,1,1,2]]],[2,1,1,2,3,[[113,1,1,2,3]]],[3,2,1,3,4,[[142,2,1,3,4]]],[4,1,1,4,5,[[177,1,1,4,5]]],[9,1,1,5,6,[[280,1,1,5,6]]],[11,1,1,6,7,[[331,1,1,6,7]]],[22,1,1,7,8,[[715,1,1,7,8]]],[23,1,1,8,9,[[748,1,1,8,9]]]],[1567,2099,3456,4498,5558,8362,10086,18378,19034]]],["ruinous",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10086,18378]]],["strive",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[4,1,1,1,2,[[177,1,1,1,2]]]],[2099,5558]]],["strove",[2,1,[[3,2,1,0,1,[[142,2,1,0,1]]]],[4498]]],["together",[3,3,[[1,1,1,0,1,[[51,1,1,0,1]]],[2,1,1,1,2,[[113,1,1,1,2]]],[9,1,1,2,3,[[280,1,1,2,3]]]],[1567,3456,8362]]],["waste",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19034]]]]},{"k":"H5328","v":[["flower",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[22,1,1,1,2,[[696,1,1,1,2]]]],[13236,18002]]]]},{"k":"H5329","v":[["*",[10,10,[[12,2,2,0,2,[[352,1,1,0,1],[360,1,1,1,2]]],[13,4,4,2,6,[[368,2,2,2,4],[400,2,2,4,6]]],[14,2,2,6,8,[[405,2,2,6,8]]],[23,1,1,8,9,[[752,1,1,8,9]]],[34,1,1,9,10,[[905,1,1,9,10]]]],[10812,10987,11213,11229,11945,11946,12105,12106,19158,22787]]],["+",[2,2,[[12,1,1,0,1,[[360,1,1,0,1]]],[13,1,1,1,2,[[368,1,1,1,2]]]],[10987,11213]]],["excel",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10812]]],["overseers",[3,3,[[13,3,3,0,3,[[368,1,1,0,1],[400,2,2,1,3]]]],[11229,11945,11946]]],["perpetual",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19158]]],["set",[2,2,[[14,2,2,0,2,[[405,2,2,0,2]]]],[12105,12106]]],["singer",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22787]]]]},{"k":"H5330","v":[["preferred",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21908]]]]},{"k":"H5331","v":[["*",[43,42,[[8,1,1,0,1,[[250,1,1,0,1]]],[9,1,1,1,2,[[268,1,1,1,2]]],[12,1,1,2,3,[[366,1,1,2,3]]],[17,6,6,3,9,[[439,1,1,3,4],[449,1,1,4,5],[455,1,1,5,6],[458,1,1,6,7],[469,1,1,7,8],[471,1,1,8,9]]],[18,18,18,9,27,[[486,2,2,9,11],[487,1,1,11,12],[490,1,1,12,13],[493,1,1,13,14],[521,1,1,14,15],[526,2,2,15,17],[529,1,1,17,18],[545,1,1,18,19],[551,4,4,19,23],[554,1,1,23,24],[556,1,1,24,25],[566,1,1,25,26],[580,1,1,26,27]]],[19,1,1,27,28,[[648,1,1,27,28]]],[22,7,6,28,34,[[691,1,1,28,29],[703,1,1,29,30],[706,1,1,30,31],[711,1,1,31,32],[712,2,1,32,33],[735,1,1,33,34]]],[23,3,3,34,37,[[747,1,1,34,35],[759,1,1,35,36],[794,1,1,36,37]]],[24,2,2,37,39,[[799,1,1,37,38],[801,1,1,38,39]]],[29,2,2,39,41,[[879,1,1,39,40],[886,1,1,40,41]]],[34,1,1,41,42,[[903,1,1,41,42]]]],[7589,8075,11175,12950,13201,13333,13426,13719,13743,14027,14039,14052,14075,14103,14594,14657,14667,14715,14916,15049,15051,15058,15067,15101,15190,15372,15558,17012,17926,18126,18192,18299,18313,18781,19007,19333,20205,20372,20462,22375,22488,22735]]],["+",[6,6,[[18,3,3,0,3,[[486,1,1,0,1],[487,1,1,1,2],[526,1,1,2,3]]],[22,2,2,3,5,[[691,1,1,3,4],[735,1,1,4,5]]],[34,1,1,5,6,[[903,1,1,5,6]]]],[14027,14052,14667,17926,18781,22735]]],["Strength",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7589]]],["alway",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14039]]],["always",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15558]]],["constantly",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17012]]],["end",[2,2,[[17,1,1,0,1,[[469,1,1,0,1]]],[23,1,1,1,2,[[747,1,1,1,2]]]],[13719,19007]]],["ever",[24,23,[[9,1,1,0,1,[[268,1,1,0,1]]],[17,5,5,1,6,[[439,1,1,1,2],[449,1,1,2,3],[455,1,1,3,4],[458,1,1,4,5],[471,1,1,5,6]]],[18,11,11,6,17,[[490,1,1,6,7],[521,1,1,7,8],[526,1,1,8,9],[529,1,1,9,10],[545,1,1,10,11],[551,3,3,11,14],[554,1,1,14,15],[556,1,1,15,16],[566,1,1,16,17]]],[22,4,3,17,20,[[706,1,1,17,18],[711,1,1,18,19],[712,2,1,19,20]]],[23,1,1,20,21,[[794,1,1,20,21]]],[24,1,1,21,22,[[801,1,1,21,22]]],[29,1,1,22,23,[[879,1,1,22,23]]]],[8075,12950,13201,13333,13426,13743,14075,14594,14657,14715,14916,15049,15058,15067,15101,15190,15372,18192,18299,18313,20205,20462,22375]]],["evermore",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14103]]],["never",[1,1,[[29,1,1,0,1,[[886,1,1,0,1]]]],[22488]]],["perpetual",[2,2,[[18,1,1,0,1,[[551,1,1,0,1]]],[23,1,1,1,2,[[759,1,1,1,2]]]],[15051,19333]]],["strength",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20372]]],["victory",[2,2,[[12,1,1,0,1,[[366,1,1,0,1]]],[22,1,1,1,2,[[703,1,1,1,2]]]],[11175,18126]]]]},{"k":"H5332","v":[["*",[2,2,[[22,2,2,0,2,[[741,2,2,0,2]]]],[18869,18872]]],["blood",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18869]]],["strength",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18872]]]]},{"k":"H5333","v":[["*",[11,10,[[0,1,1,0,1,[[18,1,1,0,1]]],[8,3,3,1,4,[[245,1,1,1,2],[248,2,2,2,4]]],[9,3,2,4,6,[[274,3,2,4,6]]],[10,1,1,6,7,[[294,1,1,6,7]]],[12,2,2,7,9,[[348,1,1,7,8],[355,1,1,8,9]]],[13,1,1,9,10,[[383,1,1,9,10]]]],[483,7423,7488,7489,8215,8223,8863,10689,10903,11525]]],["garrison",[4,4,[[8,3,3,0,3,[[245,1,1,0,1],[248,2,2,1,3]]],[12,1,1,3,4,[[348,1,1,3,4]]]],[7423,7488,7489,10689]]],["garrisons",[5,4,[[9,3,2,0,2,[[274,3,2,0,2]]],[12,1,1,2,3,[[355,1,1,2,3]]],[13,1,1,3,4,[[383,1,1,3,4]]]],[8215,8223,10903,11525]]],["officer",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8863]]],["pillar",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[483]]]]},{"k":"H5334","v":[["Nezib",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6245]]]]},{"k":"H5335","v":[["Neziah",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12081,12476]]]]},{"k":"H5336","v":[["preserved",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18642]]]]},{"k":"H5337","v":[["*",[212,193,[[0,6,6,0,6,[[30,2,2,0,2],[31,2,2,2,4],[36,2,2,4,6]]],[1,14,12,6,18,[[51,1,1,6,7],[52,2,2,7,9],[54,2,1,9,10],[55,1,1,10,11],[61,2,2,11,13],[67,5,4,13,17],[82,1,1,17,18]]],[3,1,1,18,19,[[151,1,1,18,19]]],[4,4,4,19,23,[[175,2,2,19,21],[177,1,1,21,22],[184,1,1,22,23]]],[5,4,4,23,27,[[188,1,1,23,24],[195,1,1,24,25],[208,1,1,25,26],[210,1,1,26,27]]],[6,6,6,27,33,[[216,1,1,27,28],[218,1,1,28,29],[219,1,1,29,30],[220,1,1,30,31],[221,1,1,31,32],[228,1,1,32,33]]],[8,17,14,33,47,[[239,1,1,33,34],[242,2,2,34,36],[245,1,1,36,37],[247,3,3,37,40],[249,1,1,40,41],[252,3,2,41,43],[261,1,1,43,44],[265,5,3,44,47]]],[9,9,9,47,56,[[278,1,1,47,48],[280,2,2,48,50],[285,1,1,50,51],[286,1,1,51,52],[288,3,3,52,55],[289,1,1,55,56]]],[11,13,10,56,66,[[329,1,1,56,57],[330,9,6,57,63],[331,2,2,63,65],[332,1,1,65,66]]],[12,2,2,66,68,[[348,1,1,66,67],[353,1,1,67,68]]],[13,10,7,68,75,[[386,1,1,68,69],[391,1,1,69,70],[398,8,5,70,75]]],[14,1,1,75,76,[[410,1,1,75,76]]],[15,1,1,76,77,[[421,1,1,76,77]]],[17,3,3,77,80,[[440,2,2,77,79],[445,1,1,79,80]]],[18,44,43,80,123,[[484,2,2,80,82],[495,2,2,82,84],[499,2,2,84,86],[502,1,1,86,87],[508,2,2,87,89],[510,2,2,89,91],[511,3,3,91,94],[512,1,1,94,95],[516,1,1,95,96],[517,1,1,96,97],[527,1,1,97,98],[528,1,1,98,99],[531,1,1,99,100],[533,1,1,100,101],[536,2,2,101,103],[546,2,1,103,104],[547,1,1,104,105],[548,2,2,105,107],[549,1,1,107,108],[556,1,1,108,109],[559,1,1,109,110],[563,1,1,110,111],[568,1,1,111,112],[574,1,1,112,113],[583,1,1,113,114],[584,1,1,114,115],[586,1,1,115,116],[596,2,2,116,118],[597,1,1,118,119],[619,1,1,119,120],[620,1,1,120,121],[621,2,2,121,123]]],[19,12,12,123,135,[[629,2,2,123,125],[633,2,2,125,127],[637,1,1,127,128],[638,2,2,128,130],[639,1,1,130,131],[641,1,1,131,132],[646,1,1,132,133],[650,1,1,133,134],[651,1,1,134,135]]],[22,22,19,135,154,[[683,1,1,135,136],[697,1,1,136,137],[698,1,1,137,138],[709,1,1,138,139],[714,8,5,139,144],[715,2,2,144,146],[716,1,1,146,147],[720,1,1,147,148],[721,1,1,148,149],[722,2,2,149,151],[725,1,1,151,152],[728,1,1,152,153],[735,1,1,153,154]]],[23,10,10,154,164,[[745,2,2,154,156],[751,1,1,156,157],[759,2,2,157,159],[764,1,1,159,160],[765,1,1,160,161],[766,1,1,161,162],[783,1,1,162,163],[786,1,1,163,164]]],[25,17,14,164,178,[[804,2,2,164,166],[808,1,1,166,167],[814,2,2,167,169],[815,7,4,169,173],[834,2,2,173,175],[835,3,3,175,178]]],[26,2,2,178,180,[[857,2,2,178,180]]],[27,3,3,180,183,[[863,2,2,180,182],[866,1,1,182,183]]],[29,3,2,183,185,[[881,2,1,183,184],[882,1,1,184,185]]],[31,1,1,185,186,[[892,1,1,185,186]]],[32,3,3,186,189,[[896,1,1,186,187],[897,2,2,187,189]]],[34,1,1,189,190,[[904,1,1,189,190]]],[35,1,1,190,191,[[906,1,1,190,191]]],[37,2,2,191,193,[[913,1,1,191,192],[921,1,1,192,193]]]],[882,889,939,958,1104,1105,1573,1587,1601,1655,1661,1843,1852,2003,2007,2008,2009,2479,4870,5514,5515,5558,5797,5882,6063,6457,6486,6663,6753,6771,6826,6855,7021,7305,7355,7366,7436,7470,7471,7481,7556,7653,7655,7929,7986,7996,8000,8293,8362,8372,8520,8560,8603,8620,8651,8665,10022,10053,10054,10056,10057,10058,10059,10072,10073,10104,10687,10855,11612,11719,11886,11888,11889,11890,11892,12232,12539,12955,12970,13093,13996,13997,14135,14166,14212,14224,14271,14333,14346,14382,14385,14392,14405,14407,14420,14520,14538,14690,14705,14732,14768,14791,14792,14949,14972,14978,14987,15012,15194,15237,15297,15398,15488,15694,15705,15776,15941,16068,16076,16292,16302,16312,16316,16445,16449,16543,16545,16658,16692,16694,16725,16797,16944,17058,17090,17768,18024,18035,18255,18344,18345,18348,18349,18350,18363,18364,18396,18502,18518,18550,18553,18613,18664,18778,18954,18965,19129,19335,19336,19435,19452,19457,19940,19986,20521,20523,20596,20729,20731,20745,20747,20749,20751,21289,21292,21323,21325,21340,21965,21968,22114,22115,22166,22407,22421,22574,22630,22639,22641,22757,22805,22914,23034]]],["+",[41,35,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,4,4,1,5,[[52,1,1,1,2],[54,1,1,2,3],[61,1,1,3,4],[67,1,1,4,5]]],[3,1,1,5,6,[[151,1,1,5,6]]],[4,1,1,6,7,[[177,1,1,6,7]]],[5,2,2,7,9,[[188,1,1,7,8],[208,1,1,8,9]]],[6,1,1,9,10,[[218,1,1,9,10]]],[8,4,3,10,13,[[249,1,1,10,11],[265,3,2,11,13]]],[9,3,3,13,16,[[280,2,2,13,15],[286,1,1,15,16]]],[11,7,4,16,20,[[330,7,4,16,20]]],[13,3,3,20,23,[[391,1,1,20,21],[398,2,2,21,23]]],[22,8,6,23,29,[[714,6,4,23,27],[722,1,1,27,28],[725,1,1,28,29]]],[23,2,2,29,31,[[751,1,1,29,30],[764,1,1,30,31]]],[25,4,4,31,35,[[804,2,2,31,33],[814,2,2,33,35]]]],[882,1601,1655,1852,2009,4870,5558,5882,6457,6753,7556,7986,7996,8362,8372,8560,10054,10057,10058,10059,11719,11888,11889,18345,18348,18349,18350,18553,18613,19129,19435,20521,20523,20729,20731]]],["Deliver",[11,11,[[0,1,1,0,1,[[31,1,1,0,1]]],[18,9,9,1,10,[[499,1,1,1,2],[516,1,1,2,3],[528,1,1,3,4],[536,2,2,4,6],[546,1,1,6,7],[548,1,1,7,8],[597,1,1,8,9],[620,1,1,9,10]]],[22,1,1,10,11,[[722,1,1,10,11]]]],[939,14224,14520,14705,14791,14792,14949,14978,16076,16302,18550]]],["all",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1655]]],["defended",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8665]]],["deliver",[86,84,[[1,1,1,0,1,[[52,1,1,0,1]]],[4,2,2,1,3,[[175,1,1,1,2],[184,1,1,2,3]]],[6,1,1,3,4,[[220,1,1,3,4]]],[8,7,7,4,11,[[239,1,1,4,5],[242,2,2,5,7],[247,2,2,7,9],[252,1,1,9,10],[261,1,1,10,11]]],[11,4,4,11,15,[[329,1,1,11,12],[330,2,2,12,14],[332,1,1,14,15]]],[12,1,1,15,16,[[353,1,1,15,16]]],[13,5,4,16,20,[[398,5,4,16,20]]],[15,1,1,20,21,[[421,1,1,20,21]]],[17,3,3,21,24,[[440,2,2,21,23],[445,1,1,23,24]]],[18,20,20,24,44,[[484,2,2,24,26],[499,1,1,26,27],[502,1,1,27,28],[508,2,2,28,30],[510,1,1,30,31],[517,1,1,31,32],[527,1,1,32,33],[547,1,1,33,34],[548,1,1,34,35],[549,1,1,35,36],[556,1,1,36,37],[568,1,1,37,38],[583,1,1,38,39],[586,1,1,39,40],[596,1,1,40,41],[619,1,1,41,42],[621,2,2,42,44]]],[19,7,7,44,51,[[629,2,2,44,46],[638,1,1,46,47],[639,1,1,47,48],[646,1,1,48,49],[650,1,1,49,50],[651,1,1,50,51]]],[22,9,9,51,60,[[683,1,1,51,52],[697,1,1,52,53],[709,1,1,53,54],[714,2,2,54,56],[716,1,1,56,57],[721,1,1,57,58],[728,1,1,58,59],[735,1,1,59,60]]],[23,8,8,60,68,[[745,2,2,60,62],[759,2,2,62,64],[765,1,1,64,65],[766,1,1,65,66],[783,1,1,66,67],[786,1,1,67,68]]],[25,9,8,68,76,[[808,1,1,68,69],[815,5,4,69,73],[834,1,1,73,74],[835,2,2,74,76]]],[26,2,2,76,78,[[857,2,2,76,78]]],[27,1,1,78,79,[[863,1,1,78,79]]],[31,1,1,79,80,[[892,1,1,79,80]]],[32,2,2,80,82,[[897,2,2,80,82]]],[35,1,1,82,83,[[906,1,1,82,83]]],[37,1,1,83,84,[[921,1,1,83,84]]]],[1587,5514,5797,6826,7305,7355,7366,7470,7481,7655,7929,10022,10053,10056,10104,10855,11886,11889,11890,11892,12539,12955,12970,13093,13996,13997,14212,14271,14333,14346,14385,14538,14690,14972,14987,15012,15194,15398,15694,15776,16068,16292,16312,16316,16445,16449,16694,16725,16944,17058,17090,17768,18024,18255,18344,18348,18396,18518,18664,18778,18954,18965,19335,19336,19452,19457,19940,19986,20596,20745,20747,20749,20751,21292,21323,21325,21965,21968,22115,22574,22639,22641,22805,23034]]],["delivered",[41,41,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,6,6,1,7,[[51,1,1,1,2],[61,1,1,2,3],[67,4,4,3,7]]],[5,2,2,7,9,[[195,1,1,7,8],[210,1,1,8,9]]],[6,2,2,9,11,[[216,1,1,9,10],[219,1,1,10,11]]],[8,4,4,11,15,[[245,1,1,11,12],[247,1,1,12,13],[252,2,2,13,15]]],[9,4,4,15,19,[[278,1,1,15,16],[288,3,3,16,19]]],[11,2,2,19,21,[[331,2,2,19,21]]],[12,1,1,21,22,[[348,1,1,21,22]]],[13,1,1,22,23,[[398,1,1,22,23]]],[14,1,1,23,24,[[410,1,1,23,24]]],[18,9,9,24,33,[[495,2,2,24,26],[510,1,1,26,27],[511,1,1,27,28],[531,1,1,28,29],[533,1,1,29,30],[546,1,1,30,31],[563,1,1,31,32],[584,1,1,32,33]]],[22,3,3,33,36,[[698,1,1,33,34],[715,2,2,34,36]]],[25,3,3,36,39,[[815,1,1,36,37],[834,1,1,37,38],[835,1,1,38,39]]],[32,1,1,39,40,[[896,1,1,39,40]]],[34,1,1,40,41,[[904,1,1,40,41]]]],[1104,1573,1843,2003,2007,2008,2009,6063,6486,6663,6771,7436,7471,7653,7655,8293,8603,8620,8651,10072,10073,10687,11892,12232,14135,14166,14382,14392,14732,14768,14949,15297,15705,18035,18363,18364,20747,21289,21340,22630,22757]]],["deliverer",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7021]]],["deliverest",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14420]]],["delivereth",[7,7,[[18,3,3,0,3,[[511,2,2,0,2],[574,1,1,2,3]]],[19,3,3,3,6,[[637,1,1,3,4],[638,1,1,4,5],[641,1,1,5,6]]],[22,1,1,6,7,[[720,1,1,6,7]]]],[14405,14407,15488,16658,16692,16797,18502]]],["escaped",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5515]]],["off",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11612]]],["out",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22407]]],["plucked",[2,2,[[29,1,1,0,1,[[882,1,1,0,1]]],[37,1,1,1,2,[[913,1,1,1,2]]]],[22421,22914]]],["preserved",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[958]]],["recover",[2,2,[[6,1,1,0,1,[[221,1,1,0,1]]],[27,1,1,1,2,[[863,1,1,1,2]]]],[6855,22114]]],["recovered",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[8000]]],["rescue",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22166]]],["rescued",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7996]]],["rid",[3,3,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]],[18,1,1,2,3,[[559,1,1,2,3]]]],[1105,1661,15237]]],["saved",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8520]]],["take",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15941]]],["taken",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[889]]],["taketh",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22407]]],["themselves",[2,2,[[1,1,1,0,1,[[82,1,1,0,1]]],[25,1,1,1,2,[[815,1,1,1,2]]]],[2479,20749]]],["thyself",[2,2,[[19,2,2,0,2,[[633,2,2,0,2]]]],[16543,16545]]]]},{"k":"H5338","v":[["*",[3,3,[[26,3,3,0,3,[[852,1,1,0,1],[855,2,2,1,3]]]],[21836,21919,21932]]],["deliver",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[855,1,1,1,2]]]],[21836,21919]]],["rescueth",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21932]]]]},{"k":"H5339","v":[["flowers",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17566]]]]},{"k":"H5340","v":[["sparkled",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20471]]]]},{"k":"H5341","v":[["*",[62,61,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,2,2,1,3,[[184,1,1,1,2],[185,1,1,2,3]]],[11,2,2,3,5,[[329,1,1,3,4],[330,1,1,4,5]]],[17,2,2,5,7,[[442,1,1,5,6],[462,1,1,6,7]]],[18,24,24,7,31,[[489,1,1,7,8],[502,2,2,8,10],[508,1,1,10,11],[509,1,1,11,12],[511,1,1,12,13],[517,1,1,13,14],[538,1,1,14,15],[541,1,1,15,16],[555,1,1,16,17],[582,1,1,17,18],[596,10,10,18,28],[617,2,2,28,30],[618,1,1,30,31]]],[19,19,19,31,50,[[629,2,2,31,33],[630,2,2,33,35],[631,3,3,35,38],[632,1,1,38,39],[633,1,1,39,40],[634,1,1,40,41],[640,2,2,41,43],[643,1,1,43,44],[647,1,1,44,45],[649,1,1,45,46],[650,1,1,46,47],[651,1,1,47,48],[654,1,1,48,49],[655,1,1,49,50]]],[22,8,7,50,57,[[679,1,1,50,51],[704,1,1,51,52],[705,2,1,52,53],[720,1,1,53,54],[726,1,1,54,55],[727,1,1,55,56],[743,1,1,56,57]]],[23,2,2,57,59,[[748,1,1,57,58],[775,1,1,58,59]]],[25,1,1,59,60,[[807,1,1,59,60]]],[33,1,1,60,61,[[901,1,1,60,61]]]],[2503,5768,5819,9992,10032,13028,13499,14073,14261,14272,14354,14362,14401,14536,14826,14851,15120,15651,15900,15920,15931,15932,15954,15967,15998,16013,16027,16043,16264,16267,16279,16441,16444,16456,16476,16496,16503,16513,16519,16560,16585,16750,16753,16857,16982,17027,17070,17091,17187,17203,17662,18133,18154,18486,18620,18644,18901,19043,19697,20575,22700]]],["+",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16279]]],["Keep",[2,2,[[18,1,1,0,1,[[511,1,1,0,1]]],[19,1,1,1,2,[[631,1,1,1,2]]]],[14401,16513]]],["Keeping",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2503]]],["besieged",[2,2,[[22,1,1,0,1,[[679,1,1,0,1]]],[25,1,1,1,2,[[807,1,1,1,2]]]],[17662,20575]]],["keep",[23,22,[[18,11,11,0,11,[[502,1,1,0,1],[555,1,1,1,2],[582,1,1,2,3],[596,8,8,3,11]]],[19,7,7,11,18,[[629,1,1,11,12],[630,2,2,12,14],[631,2,2,14,16],[632,1,1,16,17],[633,1,1,17,18]]],[22,4,3,18,21,[[704,1,1,18,19],[705,2,1,19,20],[720,1,1,20,21]]],[33,1,1,21,22,[[901,1,1,21,22]]]],[14261,15120,15651,15900,15931,15932,15967,15998,16013,16027,16043,16444,16456,16476,16496,16503,16519,16560,18133,18154,18486,22700]]],["keeper",[1,1,[[17,1,1,0,1,[[462,1,1,0,1]]]],[13499]]],["keepeth",[7,7,[[19,7,7,0,7,[[629,1,1,0,1],[640,2,2,1,3],[643,1,1,3,4],[651,1,1,4,5],[654,1,1,5,6],[655,1,1,6,7]]]],[16441,16750,16753,16857,17091,17187,17203]]],["kept",[4,4,[[4,2,2,0,2,[[184,1,1,0,1],[185,1,1,1,2]]],[18,2,2,2,4,[[596,2,2,2,4]]]],[5768,5819,15920,15954]]],["monuments",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18901]]],["observe",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17070]]],["preserve",[11,11,[[18,8,8,0,8,[[489,1,1,0,1],[502,1,1,1,2],[509,1,1,2,3],[517,1,1,3,4],[538,1,1,4,5],[541,1,1,5,6],[617,2,2,6,8]]],[19,2,2,8,10,[[647,1,1,8,9],[649,1,1,9,10]]],[22,1,1,10,11,[[727,1,1,10,11]]]],[14073,14272,14362,14536,14826,14851,16264,16267,16982,17027,18644]]],["preserver",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13028]]],["preserveth",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14354]]],["subtil",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16585]]],["things",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18620]]],["watchers",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19043]]],["watchmen",[3,3,[[11,2,2,0,2,[[329,1,1,0,1],[330,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]]],[9992,10032,19697]]]]},{"k":"H5342","v":[["*",[4,4,[[22,3,3,0,3,[[689,1,1,0,1],[692,1,1,1,2],[738,1,1,2,3]]],[26,1,1,3,4,[[860,1,1,3,4]]]],[17885,17947,18842,22043]]],["+",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22043]]],["Branch",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17885]]],["branch",[2,2,[[22,2,2,0,2,[[692,1,1,0,1],[738,1,1,1,2]]]],[17947,18842]]]]},{"k":"H5343","v":[["pure",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21942]]]]},{"k":"H5344","v":[["*",[22,21,[[0,1,1,0,1,[[29,1,1,0,1]]],[2,3,2,1,3,[[113,3,2,1,3]]],[3,1,1,3,4,[[117,1,1,3,4]]],[11,2,2,4,6,[[324,1,1,4,5],[330,1,1,5,6]]],[12,2,2,6,8,[[349,1,1,6,7],[353,1,1,7,8]]],[13,2,2,8,10,[[394,1,1,8,9],[397,1,1,9,10]]],[14,1,1,10,11,[[410,1,1,10,11]]],[17,4,4,11,15,[[438,1,1,11,12],[440,1,1,12,13],[475,1,1,13,14],[476,1,1,14,15]]],[19,1,1,15,16,[[651,1,1,15,16]]],[22,2,2,16,18,[[714,1,1,16,17],[740,1,1,17,18]]],[29,1,1,18,19,[[884,1,1,18,19]]],[34,1,1,19,20,[[905,1,1,19,20]]],[36,1,1,20,21,[[909,1,1,20,21]]]],[858,3457,3462,3621,9859,10045,10751,10861,11779,11873,12221,12912,12954,13888,13890,17103,18336,18856,22451,22782,22846]]],["+",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[2,1,1,1,2,[[113,1,1,1,2]]]],[858,3457]]],["blasphemeth",[2,1,[[2,2,1,0,1,[[113,2,1,0,1]]]],[3462]]],["bore",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13890]]],["bored",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9859]]],["curse",[2,2,[[17,1,1,0,1,[[438,1,1,0,1]]],[19,1,1,1,2,[[651,1,1,1,2]]]],[12912,17103]]],["cursed",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12954]]],["expressed",[6,6,[[3,1,1,0,1,[[117,1,1,0,1]]],[12,2,2,1,3,[[349,1,1,1,2],[353,1,1,2,3]]],[13,2,2,3,5,[[394,1,1,3,4],[397,1,1,4,5]]],[14,1,1,5,6,[[410,1,1,5,6]]]],[3621,10751,10861,11779,11873,12221]]],["holes",[1,1,[[36,1,1,0,1,[[909,1,1,0,1]]]],[22846]]],["name",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18856]]],["named",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22451]]],["pierce",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]]],[10045,18336]]],["pierceth",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13888]]],["through",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22782]]]]},{"k":"H5345","v":[["pipes",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21170]]]]},{"k":"H5346","v":[["Nekeb",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6354]]]]},{"k":"H5347","v":[["*",[22,22,[[0,6,6,0,6,[[0,1,1,0,1],[4,1,1,1,2],[5,1,1,2,3],[6,3,3,3,6]]],[2,12,12,6,18,[[92,2,2,6,8],[93,2,2,8,10],[94,1,1,10,11],[101,2,2,11,13],[104,1,1,13,14],[116,4,4,14,18]]],[3,2,2,18,20,[[121,1,1,18,19],[147,1,1,19,20]]],[4,1,1,20,21,[[156,1,1,20,21]]],[23,1,1,21,22,[[775,1,1,21,22]]]],[26,107,156,162,168,175,2779,2784,2823,2827,2836,3049,3051,3201,3574,3575,3576,3577,3795,4679,5020,19713]]],["+",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4679]]],["child",[1,1,[[2,1,1,0,1,[[101,1,1,0,1]]]],[3049]]],["female",[18,18,[[0,6,6,0,6,[[0,1,1,0,1],[4,1,1,1,2],[5,1,1,2,3],[6,3,3,3,6]]],[2,10,10,6,16,[[92,2,2,6,8],[93,2,2,8,10],[94,1,1,10,11],[101,1,1,11,12],[116,4,4,12,16]]],[3,1,1,16,17,[[121,1,1,16,17]]],[4,1,1,17,18,[[156,1,1,17,18]]]],[26,107,156,162,168,175,2779,2784,2823,2827,2836,3051,3574,3575,3576,3577,3795,5020]]],["woman",[2,2,[[2,1,1,0,1,[[104,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[3201,19713]]]]},{"k":"H5348","v":[["speckled",[9,7,[[0,9,7,0,7,[[29,5,4,0,4],[30,4,3,4,7]]]],[862,863,865,869,881,883,885]]]]},{"k":"H5349","v":[["*",[2,2,[[11,1,1,0,1,[[315,1,1,0,1]]],[29,1,1,1,2,[[879,1,1,1,2]]]],[9580,22365]]],["herdmen",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22365]]],["sheepmaster",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9580]]]]},{"k":"H5350","v":[["*",[3,3,[[5,2,2,0,2,[[195,2,2,0,2]]],[10,1,1,2,3,[[304,1,1,2,3]]]],[6042,6049,9221]]],["cracknels",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9221]]],["mouldy",[2,2,[[5,2,2,0,2,[[195,2,2,0,2]]]],[6042,6049]]]]},{"k":"H5351","v":[["studs",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17548]]]]},{"k":"H5352","v":[["*",[44,33,[[0,2,2,0,2,[[23,2,2,0,2]]],[1,4,3,2,5,[[69,1,1,2,3],[70,1,1,3,4],[83,2,1,4,5]]],[3,5,4,5,9,[[121,3,3,5,8],[130,2,1,8,9]]],[4,1,1,9,10,[[157,1,1,9,10]]],[6,1,1,10,11,[[225,1,1,10,11]]],[8,1,1,11,12,[[261,1,1,11,12]]],[10,1,1,12,13,[[292,1,1,12,13]]],[17,2,2,13,15,[[444,1,1,13,14],[445,1,1,14,15]]],[18,2,2,15,17,[[496,2,2,15,17]]],[19,7,7,17,24,[[633,1,1,17,18],[638,1,1,18,19],[643,1,1,19,20],[644,1,1,20,21],[646,2,2,21,23],[655,1,1,23,24]]],[22,1,1,24,25,[[681,1,1,24,25]]],[23,11,5,25,30,[[746,1,1,25,26],[769,3,1,26,27],[774,2,1,27,28],[790,2,1,28,29],[793,3,1,29,30]]],[28,2,1,30,31,[[878,2,1,30,31]]],[33,2,1,31,32,[[900,2,1,31,32]]],[37,2,1,32,33,[[915,2,1,32,33]]]],[599,632,2058,2096,2503,3811,3820,3823,4126,5064,6932,7914,8779,13079,13100,14180,14181,16569,16709,16845,16878,16930,16934,17216,17733,19000,19563,19678,20073,20139,22364,22687,22939]]],["+",[15,9,[[1,3,2,0,2,[[69,1,1,0,1],[83,2,1,1,2]]],[3,2,1,2,3,[[130,2,1,2,3]]],[4,1,1,3,4,[[157,1,1,3,4]]],[10,1,1,4,5,[[292,1,1,4,5]]],[23,6,3,5,8,[[769,2,1,5,6],[774,2,1,6,7],[793,2,1,7,8]]],[33,2,1,8,9,[[900,2,1,8,9]]]],[2058,2503,4126,5064,8779,19563,19678,20139,22687]]],["acquit",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13100]]],["blameless",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6932]]],["cleanse",[2,2,[[18,1,1,0,1,[[496,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]]],[14180,22364]]],["cleansed",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22364]]],["clear",[2,2,[[0,2,2,0,2,[[23,2,2,0,2]]]],[599,632]]],["desolate",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17733]]],["free",[2,2,[[3,2,2,0,2,[[121,2,2,0,2]]]],[3811,3820]]],["guiltless",[2,2,[[3,1,1,0,1,[[121,1,1,0,1]]],[8,1,1,1,2,[[261,1,1,1,2]]]],[3823,7914]]],["innocent",[5,5,[[17,1,1,0,1,[[444,1,1,0,1]]],[18,1,1,1,2,[[496,1,1,1,2]]],[19,2,2,2,4,[[633,1,1,2,3],[655,1,1,3,4]]],[23,1,1,4,5,[[746,1,1,4,5]]]],[13079,14181,16569,17216,19000]]],["off",[2,1,[[37,2,1,0,1,[[915,2,1,0,1]]]],[22939]]],["quit",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2096]]],["unpunished",[8,8,[[19,5,5,0,5,[[638,1,1,0,1],[643,1,1,1,2],[644,1,1,2,3],[646,2,2,3,5]]],[23,3,3,5,8,[[769,1,1,5,6],[790,1,1,6,7],[793,1,1,7,8]]]],[16709,16845,16878,16930,16934,19563,20073,20139]]],["wholly",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20073]]]]},{"k":"H5353","v":[["Nekoda",[4,4,[[14,2,2,0,2,[[404,2,2,0,2]]],[15,2,2,2,4,[[419,2,2,2,4]]]],[12075,12087,12470,12482]]]]},{"k":"H5354","v":[["weary",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13087]]]]},{"k":"H5355","v":[["*",[43,42,[[0,2,2,0,2,[[23,1,1,0,1],[43,1,1,1,2]]],[1,2,2,2,4,[[70,1,1,2,3],[72,1,1,3,4]]],[3,1,1,4,5,[[148,1,1,4,5]]],[4,6,6,5,11,[[171,2,2,5,7],[173,2,2,7,9],[176,1,1,9,10],[179,1,1,10,11]]],[5,3,3,11,14,[[188,3,3,11,14]]],[8,1,1,14,15,[[254,1,1,14,15]]],[9,2,2,15,17,[[269,1,1,15,16],[280,1,1,16,17]]],[10,1,1,17,18,[[305,1,1,17,18]]],[11,3,2,18,20,[[333,1,1,18,19],[336,2,1,19,20]]],[17,6,6,20,26,[[439,1,1,20,21],[444,1,1,21,22],[452,1,1,22,23],[457,2,2,23,25],[462,1,1,25,26]]],[18,5,5,26,31,[[487,1,1,26,27],[492,1,1,27,28],[501,1,1,28,29],[571,1,1,29,30],[583,1,1,30,31]]],[19,2,2,31,33,[[628,1,1,31,32],[633,1,1,32,33]]],[22,1,1,33,34,[[737,1,1,33,34]]],[23,6,6,34,40,[[746,1,1,34,35],[751,1,1,35,36],[763,1,1,36,37],[766,2,2,37,39],[770,1,1,39,40]]],[28,1,1,40,41,[[878,1,1,40,41]]],[31,1,1,41,42,[[889,1,1,41,42]]]],[632,1334,2105,2151,4740,5416,5419,5455,5456,5530,5610,5886,5888,5889,7711,8109,8365,9271,10135,10206,12937,13074,13268,13408,13419,13498,14049,14092,14245,15452,15689,16411,16557,18807,18999,19125,19411,19457,19471,19587,22362,22545]]],["blameless",[2,2,[[0,1,1,0,1,[[43,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]]],[1334,5886]]],["clean",[1,1,[[18,1,1,0,1,[[501,1,1,0,1]]]],[14245]]],["clear",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[632]]],["exempted",[1,1,[[10,1,1,0,1,[[305,1,1,0,1]]]],[9271]]],["free",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5530]]],["guiltless",[4,4,[[3,1,1,0,1,[[148,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]],[9,2,2,2,4,[[269,1,1,2,3],[280,1,1,3,4]]]],[4740,5888,8109,8365]]],["innocent",[29,28,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,5,5,1,6,[[171,2,2,1,3],[173,2,2,3,5],[179,1,1,5,6]]],[8,1,1,6,7,[[254,1,1,6,7]]],[11,3,2,7,9,[[333,1,1,7,8],[336,2,1,8,9]]],[17,6,6,9,15,[[439,1,1,9,10],[444,1,1,10,11],[452,1,1,11,12],[457,2,2,12,14],[462,1,1,14,15]]],[18,4,4,15,19,[[487,1,1,15,16],[492,1,1,16,17],[571,1,1,17,18],[583,1,1,18,19]]],[19,2,2,19,21,[[628,1,1,19,20],[633,1,1,20,21]]],[22,1,1,21,22,[[737,1,1,21,22]]],[23,4,4,22,26,[[751,1,1,22,23],[766,2,2,23,25],[770,1,1,25,26]]],[28,1,1,26,27,[[878,1,1,26,27]]],[31,1,1,27,28,[[889,1,1,27,28]]]],[2151,5416,5419,5455,5456,5610,7711,10135,10206,12937,13074,13268,13408,13419,13498,14049,14092,15452,15689,16411,16557,18807,19125,19457,19471,19587,22362,22545]]],["innocents",[2,2,[[23,2,2,0,2,[[746,1,1,0,1],[763,1,1,1,2]]]],[18999,19411]]],["quit",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]]],[2105,5889]]]]},{"k":"H5356","v":[["*",[5,5,[[0,1,1,0,1,[[19,1,1,0,1]]],[18,2,2,1,3,[[503,1,1,1,2],[550,1,1,2,3]]],[27,1,1,3,4,[[869,1,1,3,4]]],[29,1,1,4,5,[[882,1,1,4,5]]]],[500,14279,15033,22199,22416]]],["cleanness",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22416]]],["innocency",[4,4,[[0,1,1,0,1,[[19,1,1,0,1]]],[18,2,2,1,3,[[503,1,1,1,2],[550,1,1,2,3]]],[27,1,1,3,4,[[869,1,1,3,4]]]],[500,14279,15033,22199]]]]},{"k":"H5357","v":[["*",[3,3,[[22,1,1,0,1,[[685,1,1,0,1]]],[23,2,2,1,3,[[757,1,1,1,2],[760,1,1,2,3]]]],[17801,19270,19352]]],["+",[1,1,[[23,1,1,0,1,[[760,1,1,0,1]]]],[19352]]],["hole",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19270]]],["holes",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17801]]]]},{"k":"H5358","v":[["*",[35,31,[[0,2,2,0,2,[[3,2,2,0,2]]],[1,3,2,2,4,[[70,3,2,2,4]]],[2,2,2,4,6,[[108,1,1,4,5],[115,1,1,5,6]]],[3,1,1,6,7,[[147,1,1,6,7]]],[4,1,1,7,8,[[184,1,1,7,8]]],[5,1,1,8,9,[[196,1,1,8,9]]],[6,2,2,9,11,[[225,1,1,9,10],[226,1,1,10,11]]],[8,3,3,11,14,[[249,1,1,11,12],[253,1,1,12,13],[259,1,1,13,14]]],[11,1,1,14,15,[[321,1,1,14,15]]],[16,1,1,15,16,[[433,1,1,15,16]]],[18,3,3,16,19,[[485,1,1,16,17],[521,1,1,17,18],[576,1,1,18,19]]],[22,1,1,19,20,[[679,1,1,19,20]]],[23,7,7,20,27,[[749,2,2,20,22],[753,1,1,22,23],[759,1,1,23,24],[790,1,1,24,25],[794,1,1,25,26],[795,1,1,26,27]]],[25,4,3,27,30,[[825,1,1,27,28],[826,3,2,28,30]]],[33,3,1,30,31,[[900,3,1,30,31]]]],[94,103,2097,2098,3299,3549,4666,5801,6077,6936,6977,7532,7701,7851,9763,12830,14014,14587,15507,17678,19067,19087,19184,19330,20055,20181,20248,21064,21095,21098,22686]]],["+",[5,4,[[1,2,1,0,1,[[70,2,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]],[6,1,1,2,3,[[226,1,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]]],[2097,4666,6977,20248]]],["avenge",[7,7,[[2,2,2,0,2,[[108,1,1,0,1],[115,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[8,1,1,3,4,[[259,1,1,3,4]]],[11,1,1,4,5,[[321,1,1,4,5]]],[22,1,1,5,6,[[679,1,1,5,6]]],[23,1,1,6,7,[[790,1,1,6,7]]]],[3299,3549,5801,7851,9763,17678,20055]]],["avenged",[8,8,[[0,1,1,0,1,[[3,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[6,1,1,2,3,[[225,1,1,2,3]]],[8,2,2,3,5,[[249,1,1,3,4],[253,1,1,4,5]]],[23,3,3,5,8,[[749,2,2,5,7],[753,1,1,7,8]]]],[103,6077,6936,7532,7701,19067,19087,19184]]],["avenger",[2,2,[[18,2,2,0,2,[[485,1,1,0,1],[521,1,1,1,2]]]],[14014,14587]]],["himself",[1,1,[[25,1,1,0,1,[[826,1,1,0,1]]]],[21095]]],["punished",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2098]]],["revenge",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19330]]],["revengeth",[2,1,[[33,2,1,0,1,[[900,2,1,0,1]]]],[22686]]],["take",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21064]]],["taken",[2,2,[[0,1,1,0,1,[[3,1,1,0,1]]],[25,1,1,1,2,[[826,1,1,1,2]]]],[94,21098]]],["taking",[1,1,[[25,1,1,0,1,[[826,1,1,0,1]]]],[21095]]],["themselves",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12830]]],["vengeance",[3,3,[[18,1,1,0,1,[[576,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]],[33,1,1,2,3,[[900,1,1,2,3]]]],[15507,20181,22686]]]]},{"k":"H5359","v":[["*",[17,17,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,3,3,1,4,[[184,3,3,1,4]]],[6,1,1,4,5,[[226,1,1,4,5]]],[18,1,1,5,6,[[535,1,1,5,6]]],[19,1,1,6,7,[[633,1,1,6,7]]],[22,6,6,7,13,[[712,1,1,7,8],[713,1,1,8,9],[725,1,1,9,10],[737,1,1,10,11],[739,1,1,11,12],[741,1,1,12,13]]],[25,3,3,13,16,[[825,1,1,13,14],[826,2,2,14,16]]],[32,1,1,16,17,[[897,1,1,16,17]]]],[3549,5793,5799,5801,6977,14789,16574,18311,18324,18602,18817,18845,18870,21064,21095,21098,22648]]],["+",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6977]]],["quarrel",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3549]]],["vengeance",[15,15,[[4,3,3,0,3,[[184,3,3,0,3]]],[18,1,1,3,4,[[535,1,1,3,4]]],[19,1,1,4,5,[[633,1,1,4,5]]],[22,6,6,5,11,[[712,1,1,5,6],[713,1,1,6,7],[725,1,1,7,8],[737,1,1,8,9],[739,1,1,9,10],[741,1,1,10,11]]],[25,3,3,11,14,[[825,1,1,11,12],[826,2,2,12,14]]],[32,1,1,14,15,[[897,1,1,14,15]]]],[5793,5799,5801,14789,16574,18311,18324,18602,18817,18845,18870,21064,21095,21098,22648]]]]},{"k":"H5360","v":[["*",[27,22,[[3,2,2,0,2,[[147,2,2,0,2]]],[6,1,1,2,3,[[221,1,1,2,3]]],[9,2,2,3,5,[[270,1,1,3,4],[288,1,1,4,5]]],[18,5,4,5,9,[[495,1,1,5,6],[556,1,1,6,7],[571,2,1,7,8],[626,1,1,8,9]]],[23,11,9,9,18,[[755,1,1,9,10],[764,2,2,10,12],[790,1,1,12,13],[794,3,2,13,15],[795,4,3,15,18]]],[24,1,1,18,19,[[799,1,1,18,19]]],[25,5,3,19,22,[[826,5,3,19,22]]]],[4666,4667,6865,8128,8650,14165,15195,15432,16392,19246,19432,19434,20055,20181,20194,20218,20223,20248,20414,21097,21098,21100]]],["+",[6,6,[[3,2,2,0,2,[[147,2,2,0,2]]],[9,2,2,2,4,[[270,1,1,2,3],[288,1,1,3,4]]],[18,1,1,4,5,[[495,1,1,4,5]]],[23,1,1,5,6,[[795,1,1,5,6]]]],[4666,4667,8128,8650,14165,20248]]],["revenge",[2,2,[[23,1,1,0,1,[[764,1,1,0,1]]],[25,1,1,1,2,[[826,1,1,1,2]]]],[19432,21098]]],["revenging",[1,1,[[18,1,1,0,1,[[556,1,1,0,1]]]],[15195]]],["vengeance",[18,13,[[6,1,1,0,1,[[221,1,1,0,1]]],[18,3,2,1,3,[[571,2,1,1,2],[626,1,1,2,3]]],[23,9,7,3,10,[[755,1,1,3,4],[764,1,1,4,5],[790,1,1,5,6],[794,3,2,6,8],[795,3,2,8,10]]],[24,1,1,10,11,[[799,1,1,10,11]]],[25,4,2,11,13,[[826,4,2,11,13]]]],[6865,15432,16392,19246,19434,20055,20181,20194,20218,20223,20414,21097,21100]]]]},{"k":"H5361","v":[["*",[3,3,[[25,3,3,0,3,[[824,3,3,0,3]]]],[21025,21029,21035]]],["+",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21035]]],["alienated",[2,2,[[25,2,2,0,2,[[824,2,2,0,2]]]],[21025,21029]]]]},{"k":"H5362","v":[["*",[19,19,[[2,1,1,0,1,[[108,1,1,0,1]]],[5,2,2,1,3,[[192,2,2,1,3]]],[10,1,1,3,4,[[297,1,1,3,4]]],[11,2,2,4,6,[[318,1,1,4,5],[323,1,1,5,6]]],[13,2,2,6,8,[[370,1,1,6,7],[389,1,1,7,8]]],[17,3,3,8,11,[[436,1,1,8,9],[454,2,2,9,11]]],[18,4,4,11,15,[[494,1,1,11,12],[499,1,1,12,13],[525,1,1,13,14],[565,1,1,14,15]]],[22,3,3,15,18,[[688,1,1,15,16],[693,1,1,16,17],[707,1,1,17,18]]],[24,1,1,18,19,[[799,1,1,18,19]]]],[3308,5952,5960,8958,9688,9837,11249,11663,12874,13303,13323,14112,14220,14646,15325,17884,17968,18194,20359]]],["+",[9,9,[[5,1,1,0,1,[[192,1,1,0,1]]],[10,1,1,1,2,[[297,1,1,1,2]]],[11,2,2,2,4,[[318,1,1,2,3],[323,1,1,3,4]]],[13,2,2,4,6,[[370,1,1,4,5],[389,1,1,5,6]]],[17,1,1,6,7,[[454,1,1,6,7]]],[18,2,2,7,9,[[494,1,1,7,8],[565,1,1,8,9]]]],[5952,8958,9688,9837,11249,11663,13303,14112,15325]]],["about",[3,3,[[5,1,1,0,1,[[192,1,1,0,1]]],[17,1,1,1,2,[[436,1,1,1,2]]],[18,1,1,2,3,[[525,1,1,2,3]]]],[5960,12874,14646]]],["compassed",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20359]]],["destroy",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13323]]],["down",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17884]]],["inclosed",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14220]]],["kill",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18194]]],["round",[2,2,[[2,1,1,0,1,[[108,1,1,0,1]]],[22,1,1,1,2,[[693,1,1,1,2]]]],[3308,17968]]]]},{"k":"H5363","v":[["shaking",[2,2,[[22,2,2,0,2,[[695,1,1,0,1],[702,1,1,1,2]]]],[17989,18108]]]]},{"k":"H5364","v":[["rent",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17731]]]]},{"k":"H5365","v":[["*",[6,6,[[3,1,1,0,1,[[132,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[8,1,1,2,3,[[246,1,1,2,3]]],[17,1,1,3,4,[[465,1,1,3,4]]],[19,1,1,4,5,[[657,1,1,4,5]]],[22,1,1,5,6,[[729,1,1,5,6]]]],[4208,6970,7447,13574,17268,18674]]],["+",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6970]]],["digged",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18674]]],["out",[3,3,[[3,1,1,0,1,[[132,1,1,0,1]]],[8,1,1,1,2,[[246,1,1,1,2]]],[19,1,1,2,3,[[657,1,1,2,3]]]],[4208,7447,17268]]],["pierced",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13574]]]]},{"k":"H5366","v":[["*",[2,2,[[1,1,1,0,1,[[82,1,1,0,1]]],[22,1,1,1,2,[[680,1,1,1,2]]]],[2495,17706]]],["clefts",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17706]]],["clift",[1,1,[[1,1,1,0,1,[[82,1,1,0,1]]]],[2495]]]]},{"k":"H5367","v":[["*",[4,4,[[4,1,1,0,1,[[164,1,1,0,1]]],[8,1,1,1,2,[[263,1,1,1,2]]],[18,2,2,2,4,[[515,1,1,2,3],[586,1,1,3,4]]]],[5270,7951,14502,15766]]],["catch",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15766]]],["snare",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7951]]],["snared",[1,1,[[4,1,1,0,1,[[164,1,1,0,1]]]],[5270]]],["snares",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14502]]]]},{"k":"H5368","v":[["smote",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21880]]]]},{"k":"H5369","v":[["Ner",[16,16,[[8,4,4,0,4,[[249,2,2,0,2],[261,2,2,2,4]]],[9,6,6,4,10,[[268,2,2,4,6],[269,4,4,6,10]]],[10,2,2,10,12,[[292,2,2,10,12]]],[12,4,4,12,16,[[345,1,1,12,13],[346,2,2,13,15],[363,1,1,15,16]]]],[7558,7559,7910,7919,8057,8061,8104,8106,8109,8118,8775,8802,10608,10651,10654,11105]]]]},{"k":"H5370","v":[["Nergal",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10013]]]]},{"k":"H5371","v":[["Nergalsharezer",[3,2,[[23,3,2,0,2,[[783,3,2,0,2]]]],[19926,19936]]]]},{"k":"H5372","v":[["*",[4,4,[[19,4,4,0,4,[[643,1,1,0,1],[645,1,1,1,2],[653,2,2,2,4]]]],[16868,16909,17161,17163]]],["talebearer",[3,3,[[19,3,3,0,3,[[645,1,1,0,1],[653,2,2,1,3]]]],[16909,17161,17163]]],["whisperer",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16868]]]]},{"k":"H5373","v":[["*",[3,3,[[21,3,3,0,3,[[671,1,1,0,1],[674,2,2,1,3]]]],[17549,17595,17596]]],["Spikenard",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17596]]],["spikenard",[2,2,[[21,2,2,0,2,[[671,1,1,0,1],[674,1,1,1,2]]]],[17549,17595]]]]},{"k":"H5374","v":[["Neriah",[10,10,[[23,10,10,0,10,[[776,2,2,0,2],[780,4,4,2,6],[787,2,2,6,8],[789,1,1,8,9],[795,1,1,9,10]]]],[19743,19747,19846,19850,19856,19874,20000,20003,20041,20271]]]]},{"k":"H5375","v":[["*",[653,610,[[0,46,42,0,42,[[3,1,1,0,1],[6,1,1,1,2],[12,3,3,2,5],[17,3,3,5,8],[18,1,1,8,9],[20,2,2,9,11],[21,2,2,11,13],[23,2,2,13,15],[26,2,2,15,17],[28,2,2,17,19],[30,3,3,19,22],[31,1,1,22,23],[32,2,2,23,25],[35,1,1,25,26],[36,2,1,26,27],[38,1,1,27,28],[39,3,3,28,31],[41,1,1,31,32],[42,2,2,32,34],[43,1,1,34,35],[44,4,3,35,38],[45,2,1,38,39],[46,1,1,39,40],[49,3,2,40,42]]],[1,33,32,42,74,[[55,1,1,42,43],[59,3,3,43,46],[61,1,1,46,47],[63,1,1,47,48],[67,1,1,48,49],[68,1,1,49,50],[69,2,1,50,51],[72,2,2,51,53],[74,3,3,53,56],[76,1,1,56,57],[77,5,5,57,62],[79,2,2,62,64],[81,1,1,64,65],[83,1,1,65,66],[84,2,2,66,68],[85,1,1,68,69],[86,4,4,69,73],[87,1,1,73,74]]],[2,22,22,74,96,[[94,2,2,74,76],[96,1,1,76,77],[98,1,1,77,78],[99,3,3,78,81],[100,3,3,81,84],[104,1,1,84,85],[105,1,1,85,86],[106,1,1,86,87],[108,3,3,87,90],[109,3,3,90,93],[111,2,2,93,95],[113,1,1,95,96]]],[3,47,44,96,140,[[117,3,3,96,99],[119,1,1,99,100],[120,4,4,100,104],[121,1,1,104,105],[122,1,1,105,106],[123,1,1,106,107],[125,1,1,107,108],[126,2,2,108,110],[127,5,3,110,113],[129,1,1,113,114],[130,6,6,114,120],[132,2,2,120,122],[134,5,4,122,126],[139,3,3,126,129],[140,7,7,129,136],[142,1,1,136,137],[146,1,1,137,138],[147,2,2,138,140]]],[4,20,18,140,158,[[153,4,3,140,143],[155,1,1,143,144],[156,1,1,144,145],[157,2,1,145,146],[162,2,2,146,148],[164,1,1,148,149],[166,1,1,149,150],[176,1,1,150,151],[180,2,2,151,153],[183,2,2,153,155],[184,2,2,155,157],[185,1,1,157,158]]],[5,25,21,158,179,[[189,9,7,158,165],[190,6,6,165,171],[191,1,1,171,172],[192,7,5,172,177],[194,1,1,177,178],[210,1,1,178,179]]],[6,10,10,179,189,[[212,1,1,179,180],[213,1,1,180,181],[218,1,1,181,182],[219,3,3,182,185],[226,1,1,185,186],[229,1,1,186,187],[231,2,2,187,189]]],[7,4,4,189,193,[[232,3,3,189,192],[233,1,1,192,193]]],[8,32,27,193,220,[[237,1,1,193,194],[239,1,1,194,195],[241,1,1,195,196],[245,3,1,196,197],[246,1,1,197,198],[249,10,8,198,206],[250,1,1,206,207],[251,1,1,207,208],[252,4,4,208,212],[257,1,1,212,213],[259,1,1,213,214],[260,2,2,214,216],[265,1,1,216,217],[266,4,3,217,220]]],[9,23,23,220,243,[[268,2,2,220,222],[269,1,1,222,223],[270,1,1,223,224],[271,2,2,224,226],[272,3,3,226,229],[274,2,2,229,231],[279,2,2,231,233],[280,1,1,233,234],[281,1,1,234,235],[283,1,1,235,236],[284,3,3,236,239],[285,1,1,239,240],[286,1,1,240,241],[289,2,2,241,243]]],[10,12,12,243,255,[[292,1,1,243,244],[295,2,2,244,246],[298,1,1,246,247],[299,1,1,247,248],[300,3,3,248,251],[303,1,1,251,252],[304,1,1,252,253],[305,1,1,253,254],[308,1,1,254,255]]],[11,23,21,255,276,[[314,1,1,255,256],[315,1,1,256,257],[316,4,4,257,261],[317,2,2,261,263],[319,2,1,263,264],[321,4,3,264,267],[326,2,2,267,269],[330,1,1,269,270],[331,2,2,270,272],[332,1,1,272,273],[335,1,1,273,274],[337,2,2,274,276]]],[12,24,22,276,298,[[342,1,1,276,277],[347,5,4,277,281],[348,2,2,281,283],[349,1,1,283,284],[351,1,1,284,285],[352,5,4,285,289],[353,1,1,289,290],[355,3,3,290,293],[358,2,2,293,295],[360,2,2,295,297],[364,1,1,297,298]]],[13,16,15,298,313,[[371,1,1,298,299],[372,1,1,299,300],[375,2,2,300,302],[377,1,1,302,303],[378,1,1,303,304],[379,1,1,304,305],[380,3,2,305,307],[382,1,1,307,308],[390,2,2,308,310],[391,2,2,310,312],[398,1,1,312,313]]],[14,5,5,313,318,[[403,1,1,313,314],[410,1,1,314,315],[411,2,2,315,317],[412,1,1,317,318]]],[15,4,4,318,322,[[414,1,1,318,319],[416,1,1,319,320],[421,1,1,320,321],[425,1,1,321,322]]],[16,7,7,322,329,[[427,3,3,322,325],[428,1,1,325,326],[430,2,2,326,328],[434,1,1,328,329]]],[17,28,27,329,356,[[437,2,1,329,330],[441,1,1,330,331],[442,2,2,331,333],[445,1,1,333,334],[446,1,1,334,335],[448,3,3,335,338],[456,2,2,338,340],[457,2,2,340,342],[459,1,1,342,343],[462,2,2,343,345],[464,1,1,345,346],[465,1,1,346,347],[466,1,1,347,348],[467,2,2,348,350],[469,2,2,350,352],[471,1,1,352,353],[475,1,1,353,354],[477,2,2,354,356]]],[18,48,43,356,399,[[481,1,1,356,357],[484,1,1,357,358],[487,1,1,358,359],[492,1,1,359,360],[493,1,1,360,361],[501,6,4,361,365],[502,2,2,365,367],[505,2,2,367,369],[509,2,2,369,371],[527,1,1,371,372],[532,1,1,372,373],[540,1,1,373,374],[546,1,1,374,375],[549,1,1,375,376],[558,1,1,376,377],[559,1,1,377,378],[560,1,1,378,379],[562,1,1,379,380],[563,1,1,380,381],[565,1,1,381,382],[566,1,1,382,383],[568,1,1,383,384],[570,3,1,384,385],[571,1,1,385,386],[573,1,1,386,387],[576,1,1,387,388],[579,1,1,388,389],[583,1,1,389,390],[593,1,1,390,391],[596,1,1,391,392],[598,1,1,392,393],[600,1,1,393,394],[603,2,1,394,395],[611,1,1,395,396],[616,2,2,396,398],[620,1,1,398,399]]],[19,9,9,399,408,[[633,1,1,399,400],[636,1,1,400,401],[645,2,2,401,403],[646,2,2,403,405],[657,3,3,405,408]]],[20,2,2,408,410,[[663,2,2,408,410]]],[21,1,1,410,411,[[675,1,1,410,411]]],[22,59,58,411,469,[[679,1,1,411,412],[680,6,6,412,418],[681,2,2,418,420],[683,1,1,420,421],[684,1,1,421,422],[686,1,1,422,423],[687,1,1,423,424],[688,2,2,424,426],[689,1,1,426,427],[691,1,1,427,428],[692,1,1,428,429],[693,1,1,429,430],[696,1,1,430,431],[700,1,1,431,432],[702,1,1,432,433],[704,1,1,433,434],[708,2,2,434,436],[711,2,2,436,438],[715,2,2,438,440],[716,1,1,440,441],[717,1,1,441,442],[718,4,4,442,446],[719,1,1,446,447],[720,2,2,447,449],[723,1,1,449,450],[724,3,3,450,453],[727,3,2,453,455],[729,1,1,455,456],[730,3,3,456,459],[731,2,2,459,461],[735,3,3,461,464],[738,2,2,464,466],[741,1,1,466,467],[742,1,1,467,468],[744,1,1,468,469]]],[23,26,25,469,494,[[747,1,1,469,470],[748,1,1,470,471],[750,1,1,471,472],[751,2,2,472,474],[753,2,2,474,476],[754,3,2,476,478],[755,1,1,478,479],[757,1,1,479,480],[759,1,1,480,481],[761,2,2,481,483],[766,1,1,483,484],[775,1,1,484,485],[788,2,2,485,487],[793,1,1,487,488],[794,1,1,488,489],[795,3,3,489,492],[796,2,2,492,494]]],[24,5,5,494,499,[[798,1,1,494,495],[799,2,2,495,497],[800,1,1,497,498],[801,1,1,498,499]]],[25,76,68,499,567,[[802,5,3,499,502],[804,2,2,502,504],[805,3,3,504,507],[809,3,2,507,509],[811,3,3,509,512],[812,3,3,512,515],[813,3,3,515,518],[815,1,1,518,519],[817,4,3,519,522],[818,4,4,522,526],[819,6,5,526,531],[820,1,1,531,532],[821,8,7,532,539],[824,3,3,539,542],[827,1,1,542,543],[828,2,2,543,545],[829,1,1,545,546],[830,2,2,546,548],[833,4,4,548,552],[834,1,1,552,553],[835,1,1,553,554],[837,5,4,554,558],[839,1,1,558,559],[840,2,2,559,561],[844,1,1,561,562],[845,4,3,562,565],[846,1,1,565,566],[848,1,1,566,567]]],[26,5,5,567,572,[[850,1,1,567,568],[857,1,1,568,569],[859,1,1,569,570],[860,2,2,570,572]]],[27,6,5,572,577,[[862,2,1,572,573],[865,1,1,573,574],[866,1,1,574,575],[874,1,1,575,576],[875,1,1,576,577]]],[28,1,1,577,578,[[877,1,1,577,578]]],[29,4,4,578,582,[[882,1,1,578,579],[883,2,2,579,581],[884,1,1,581,582]]],[31,2,2,582,584,[[889,2,2,582,584]]],[32,7,7,584,591,[[894,2,2,584,586],[896,2,2,586,588],[898,1,1,588,589],[899,2,2,589,591]]],[33,1,1,591,592,[[900,1,1,591,592]]],[34,3,3,592,595,[[903,1,1,592,593],[904,1,1,593,594],[905,1,1,594,595]]],[36,2,2,595,597,[[910,2,2,595,597]]],[37,11,9,597,606,[[911,3,2,597,599],[912,1,1,599,600],[915,5,4,600,604],[916,2,2,604,606]]],[38,4,4,606,610,[[925,2,2,606,608],[926,2,2,608,610]]]],[92,176,324,328,332,426,448,450,478,529,531,551,560,654,655,730,765,796,806,883,885,890,948,961,965,1047,1108,1156,1185,1191,1192,1278,1319,1324,1325,1377,1381,1385,1391,1450,1519,1523,1663,1790,1794,1796,1850,1899,2021,2030,2058,2145,2165,2209,2222,2223,2279,2305,2322,2323,2331,2336,2386,2394,2470,2503,2552,2557,2568,2609,2618,2619,2631,2640,2831,2847,2897,2975,2981,2982,2994,3022,3025,3037,3178,3223,3251,3289,3296,3298,3335,3337,3338,3378,3385,3461,3606,3653,3654,3732,3745,3758,3765,3768,3823,3849,3859,3978,4005,4009,4036,4038,4041,4098,4109,4126,4127,4138,4141,4142,4197,4209,4258,4279,4280,4289,4423,4434,4440,4448,4449,4453,4461,4466,4467,4469,4491,4663,4690,4713,4901,4904,4923,5002,5023,5064,5194,5203,5266,5314,5540,5660,5661,5737,5753,5769,5798,5813,5896,5899,5901,5906,5907,5908,5910,5913,5918,5919,5920,5926,5928,5947,5953,5955,5957,5961,5962,6035,6495,6549,6586,6747,6761,6802,6808,6980,7041,7104,7125,7131,7136,7141,7167,7268,7301,7344,7421,7449,7509,7511,7514,7515,7520,7521,7522,7525,7585,7616,7625,7638,7652,7659,7805,7855,7889,7896,7982,8013,8014,8015,8071,8081,8113,8124,8144,8153,8160,8161,8170,8211,8215,8351,8353,8370,8413,8462,8493,8502,8506,8553,8575,8669,8690,8796,8887,8893,8988,9062,9081,9090,9101,9213,9246,9271,9353,9567,9590,9622,9623,9639,9640,9648,9670,9715,9781,9782,9788,9906,9916,10038,10065,10083,10115,10169,10235,10249,10446,10663,10664,10668,10671,10691,10712,10744,10776,10793,10806,10817,10818,10849,10892,10896,10901,10950,10958,11005,11009,11132,11272,11304,11365,11385,11435,11448,11474,11483,11488,11515,11680,11688,11723,11732,11898,12020,12237,12239,12249,12296,12308,12376,12526,12696,12733,12739,12741,12748,12781,12790,12837,12903,12980,13021,13029,13101,13123,13161,13163,13167,13358,13367,13397,13415,13446,13482,13502,13533,13579,13624,13649,13650,13702,13714,13739,13884,13930,13931,13971,14001,14053,14090,14096,14245,14246,14248,14250,14252,14269,14301,14308,14356,14360,14684,14744,14843,14942,15003,15219,15235,15243,15273,15288,15323,15376,15407,15429,15433,15473,15507,15531,15677,15861,15946,16082,16099,16121,16174,16248,16259,16301,16575,16650,16906,16915,16943,16944,17264,17272,17283,17412,17416,17605,17668,17687,17689,17694,17697,17698,17699,17710,17714,17765,17770,17811,17844,17874,17876,17896,17908,17932,17967,18000,18058,18109,18141,18223,18242,18289,18303,18356,18375,18411,18418,18424,18431,18444,18446,18467,18482,18491,18581,18589,18590,18593,18654,18658,18679,18704,18707,18709,18715,18723,18772,18778,18780,18825,18827,18875,18891,18934,19004,19033,19090,19135,19148,19185,19193,19206,19220,19240,19286,19330,19378,19384,19481,19710,20024,20032,20156,20168,20221,20224,20239,20293,20307,20351,20381,20395,20436,20455,20483,20484,20485,20514,20516,20533,20534,20535,20607,20609,20640,20649,20652,20656,20677,20679,20686,20687,20692,20741,20814,20816,20820,20833,20834,20839,20848,20855,20861,20864,20868,20869,20882,20900,20901,20910,20918,20923,20926,20937,21034,21042,21056,21117,21123,21153,21169,21198,21202,21250,21272,21273,21278,21305,21342,21365,21366,21367,21374,21438,21458,21474,21577,21609,21611,21612,21641,21693,21753,21964,22020,22048,22050,22100,22141,22166,22267,22284,22333,22412,22424,22449,22460,22543,22546,22597,22599,22621,22623,22664,22673,22682,22689,22734,22754,22778,22867,22874,22896,22899,22900,22937,22941,22943,22945,22948,22960,23097,23098,23106,23112]]],["+",[172,161,[[0,21,21,0,21,[[3,1,1,0,1],[6,1,1,1,2],[12,1,1,2,3],[18,1,1,3,4],[20,2,2,4,6],[21,2,2,6,8],[23,1,1,8,9],[28,2,2,9,11],[30,1,1,11,12],[31,1,1,12,13],[32,1,1,13,14],[38,1,1,14,15],[39,3,3,15,18],[41,1,1,18,19],[44,1,1,19,20],[45,1,1,20,21]]],[1,17,16,21,37,[[55,1,1,21,22],[59,2,2,22,24],[61,1,1,24,25],[63,1,1,25,26],[69,2,1,26,27],[74,1,1,27,28],[77,4,4,28,32],[79,1,1,32,33],[84,1,1,33,34],[86,3,3,34,37]]],[2,5,5,37,42,[[98,1,1,37,38],[99,2,2,38,40],[100,2,2,40,42]]],[3,18,17,42,59,[[117,1,1,42,43],[119,1,1,43,44],[120,2,2,44,46],[121,1,1,46,47],[127,2,2,47,49],[130,4,4,49,53],[134,2,1,53,54],[140,1,1,54,55],[142,1,1,55,56],[146,1,1,56,57],[147,2,2,57,59]]],[4,6,5,59,64,[[153,1,1,59,60],[157,2,1,60,61],[162,1,1,61,62],[176,1,1,62,63],[183,1,1,63,64]]],[5,4,3,64,67,[[189,2,1,64,65],[192,2,2,65,67]]],[6,2,2,67,69,[[212,1,1,67,68],[219,1,1,68,69]]],[8,16,13,69,82,[[241,1,1,69,70],[246,1,1,70,71],[249,7,5,71,76],[250,1,1,76,77],[251,1,1,77,78],[265,1,1,78,79],[266,4,3,79,82]]],[9,8,8,82,90,[[268,1,1,82,83],[269,1,1,83,84],[279,1,1,84,85],[281,1,1,85,86],[284,2,2,86,88],[285,1,1,88,89],[289,1,1,89,90]]],[10,5,5,90,95,[[292,1,1,90,91],[298,1,1,91,92],[299,1,1,92,93],[303,1,1,93,94],[305,1,1,94,95]]],[11,6,6,95,101,[[316,1,1,95,96],[317,1,1,96,97],[321,1,1,97,98],[335,1,1,98,99],[337,2,2,99,101]]],[12,12,10,101,111,[[347,5,4,101,105],[348,1,1,105,106],[352,4,3,106,109],[358,1,1,109,110],[360,1,1,110,111]]],[13,2,2,111,113,[[371,1,1,111,112],[382,1,1,112,113]]],[14,1,1,113,114,[[410,1,1,113,114]]],[15,2,2,114,116,[[414,1,1,114,115],[421,1,1,115,116]]],[16,2,2,116,118,[[427,1,1,116,117],[434,1,1,117,118]]],[17,3,3,118,121,[[437,1,1,118,119],[457,1,1,119,120],[477,1,1,120,121]]],[18,2,2,121,123,[[493,1,1,121,122],[600,1,1,122,123]]],[19,1,1,123,124,[[633,1,1,123,124]]],[20,1,1,124,125,[[663,1,1,124,125]]],[21,1,1,125,126,[[675,1,1,125,126]]],[22,4,4,126,130,[[681,1,1,126,127],[687,1,1,127,128],[723,1,1,128,129],[735,1,1,129,130]]],[23,6,5,130,135,[[754,2,1,130,131],[766,1,1,131,132],[788,1,1,132,133],[796,2,2,133,135]]],[25,16,16,135,151,[[805,2,2,135,137],[809,1,1,137,138],[811,2,2,138,140],[812,2,2,140,142],[817,1,1,142,143],[818,1,1,143,144],[820,1,1,144,145],[821,3,3,145,148],[837,1,1,148,149],[840,1,1,149,150],[848,1,1,150,151]]],[26,2,2,151,153,[[850,1,1,151,152],[859,1,1,152,153]]],[27,2,1,153,154,[[862,2,1,153,154]]],[29,2,2,154,156,[[882,1,1,154,155],[883,1,1,155,156]]],[31,1,1,156,157,[[889,1,1,156,157]]],[37,2,2,157,159,[[911,1,1,157,158],[915,1,1,158,159]]],[38,2,2,159,161,[[926,2,2,159,161]]]],[92,176,328,478,529,531,551,560,655,796,806,890,948,965,1156,1185,1191,1192,1278,1377,1391,1663,1790,1796,1850,1899,2058,2222,2305,2322,2323,2331,2394,2557,2609,2618,2619,2975,2981,2994,3025,3037,3654,3732,3745,3768,3823,4036,4038,4109,4138,4141,4142,4258,4448,4491,4663,4690,4713,4923,5064,5194,5540,5737,5899,5955,5961,6549,6808,7344,7449,7515,7520,7521,7522,7525,7585,7616,7982,8013,8014,8015,8081,8113,8351,8413,8502,8506,8553,8690,8796,8988,9062,9213,9271,9640,9648,9781,10169,10235,10249,10663,10664,10668,10671,10712,10793,10806,10818,10950,11009,11272,11515,12237,12308,12526,12739,12837,12903,13397,13931,14096,16099,16575,17416,17605,17710,17844,18581,18778,19206,19481,20024,20293,20307,20533,20535,20607,20649,20652,20656,20677,20820,20834,20882,20918,20923,20937,21366,21474,21693,21753,22020,22100,22412,22449,22546,22896,22945,23106,23112]]],["Carry",[2,2,[[3,1,1,0,1,[[127,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]]],[4036,9622]]],["Forgive",[1,1,[[0,1,1,0,1,[[49,1,1,0,1]]]],[1523]]],["One",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18780]]],["Suffer",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13358]]],["Take",[4,4,[[3,2,2,0,2,[[117,1,1,0,1],[120,1,1,1,2]]],[5,1,1,2,3,[[190,1,1,2,3]]],[18,1,1,3,4,[[558,1,1,3,4]]]],[3606,3765,5913,15219]]],["accept",[7,7,[[17,4,4,0,4,[[448,2,2,0,2],[467,1,1,2,3],[477,1,1,3,4]]],[18,1,1,4,5,[[559,1,1,4,5]]],[19,1,1,5,6,[[645,1,1,5,6]]],[38,1,1,6,7,[[925,1,1,6,7]]]],[13161,13163,13649,13930,15235,16906,23097]]],["accepted",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7896]]],["accepteth",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13702]]],["advanced",[2,2,[[16,2,2,0,2,[[428,1,1,0,1],[430,1,1,1,2]]]],[12748,12790]]],["away",[14,14,[[13,1,1,0,1,[[380,1,1,0,1]]],[17,3,3,1,4,[[459,1,1,1,2],[462,1,1,2,3],[467,1,1,3,4]]],[22,5,5,4,9,[[686,1,1,4,5],[693,1,1,5,6],[718,1,1,6,7],[719,1,1,7,8],[742,1,1,8,9]]],[25,1,1,9,10,[[839,1,1,9,10]]],[26,1,1,10,11,[[860,1,1,10,11]]],[27,2,2,11,13,[[866,1,1,11,12],[875,1,1,12,13]]],[32,1,1,13,14,[[894,1,1,13,14]]]],[11488,13446,13502,13650,17811,17967,18444,18467,18891,21438,22048,22166,22284,22597]]],["bare",[30,28,[[1,1,1,0,1,[[68,1,1,0,1]]],[3,1,1,1,2,[[129,1,1,1,2]]],[4,2,2,2,4,[[153,1,1,2,3],[183,1,1,3,4]]],[5,7,6,4,10,[[189,3,2,4,6],[190,3,3,6,9],[194,1,1,9,10]]],[6,1,1,10,11,[[213,1,1,10,11]]],[8,3,3,11,14,[[249,2,2,11,13],[252,1,1,13,14]]],[9,2,2,14,16,[[272,1,1,14,15],[284,1,1,15,16]]],[10,3,3,16,19,[[295,1,1,16,17],[300,1,1,17,18],[304,1,1,18,19]]],[11,1,1,19,20,[[317,1,1,19,20]]],[12,2,2,20,22,[[349,1,1,20,21],[352,1,1,21,22]]],[13,3,2,22,24,[[375,1,1,22,23],[380,2,1,23,24]]],[15,1,1,24,25,[[416,1,1,24,25]]],[22,2,2,25,27,[[700,1,1,25,26],[731,1,1,26,27]]],[25,1,1,27,28,[[813,1,1,27,28]]]],[2030,4098,4923,5753,5908,5910,5919,5920,5928,6035,6586,7509,7514,7659,8170,8493,8893,9081,9246,9670,10744,10817,11365,11483,12376,18058,18723,20687]]],["bear",[75,72,[[0,2,2,0,2,[[12,1,1,0,1],[35,1,1,1,2]]],[1,6,6,2,8,[[67,1,1,2,3],[76,1,1,3,4],[77,1,1,4,5],[79,1,1,5,6],[86,1,1,6,7],[87,1,1,7,8]]],[2,12,12,8,20,[[94,2,2,8,10],[96,1,1,10,11],[105,1,1,11,12],[106,1,1,12,13],[108,1,1,13,14],[109,3,3,14,17],[111,2,2,17,19],[113,1,1,19,20]]],[3,8,7,20,27,[[120,1,1,20,21],[123,1,1,21,22],[125,1,1,22,23],[127,2,1,23,24],[134,3,3,24,27]]],[4,2,2,27,29,[[153,2,2,27,29]]],[5,5,5,29,34,[[189,2,2,29,31],[190,1,1,31,32],[192,2,2,32,34]]],[11,1,1,34,35,[[330,1,1,34,35]]],[12,1,1,35,36,[[342,1,1,35,36]]],[18,1,1,36,37,[[566,1,1,36,37]]],[19,3,3,37,40,[[636,1,1,37,38],[645,1,1,38,39],[657,1,1,39,40]]],[22,4,4,40,44,[[679,1,1,40,41],[724,2,2,41,43],[730,1,1,43,44]]],[23,5,5,44,49,[[754,1,1,44,45],[761,2,2,45,47],[775,1,1,47,48],[788,1,1,48,49]]],[24,1,1,49,50,[[799,1,1,49,50]]],[25,20,18,50,68,[[805,1,1,50,51],[813,2,2,51,53],[815,1,1,53,54],[817,3,2,54,56],[818,1,1,56,57],[819,3,2,57,59],[824,2,2,59,61],[833,1,1,61,62],[835,1,1,62,63],[837,2,2,63,65],[845,3,3,65,68]]],[32,2,2,68,70,[[898,1,1,68,69],[899,1,1,69,70]]],[36,1,1,70,71,[[910,1,1,70,71]]],[37,1,1,71,72,[[916,1,1,71,72]]]],[324,1047,2021,2279,2336,2386,2631,2640,2831,2847,2897,3223,3251,3289,3335,3337,3338,3378,3385,3461,3758,3859,3978,4041,4279,4280,4289,4901,4904,5901,5906,5926,5953,5955,10038,10446,15376,16650,16915,17272,17668,18590,18593,18707,19220,19378,19384,19710,20032,20381,20534,20686,20692,20741,20814,20816,20833,20868,20869,21042,21056,21278,21342,21366,21374,21609,21611,21612,22664,22673,22867,22960]]],["beareth",[4,4,[[2,2,2,0,2,[[100,1,1,0,1],[104,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[28,1,1,3,4,[[877,1,1,3,4]]]],[3022,3178,5769,22333]]],["bearing",[9,9,[[0,1,1,0,1,[[36,1,1,0,1]]],[3,2,2,1,3,[[126,2,2,1,3]]],[5,4,4,3,7,[[189,2,2,3,5],[192,2,2,5,7]]],[8,1,1,7,8,[[252,1,1,7,8]]],[18,1,1,8,9,[[603,1,1,8,9]]]],[1108,4005,4009,5896,5907,5957,5962,7625,16121]]],["borne",[10,10,[[1,2,2,0,2,[[74,2,2,0,2]]],[17,1,1,2,3,[[469,1,1,2,3]]],[18,2,2,3,5,[[532,1,1,3,4],[546,1,1,4,5]]],[22,2,2,5,7,[[731,1,1,5,6],[744,1,1,6,7]]],[25,3,3,7,10,[[833,2,2,7,9],[837,1,1,9,10]]]],[2209,2223,13714,14744,14942,18715,18934,21272,21273,21365]]],["bring",[7,7,[[4,1,1,0,1,[[180,1,1,0,1]]],[8,1,1,1,2,[[239,1,1,1,2]]],[9,1,1,2,3,[[283,1,1,2,3]]],[12,1,1,3,4,[[353,1,1,3,4]]],[18,2,2,4,6,[[549,1,1,4,5],[573,1,1,5,6]]],[22,1,1,6,7,[[738,1,1,6,7]]]],[5660,7301,8462,10849,15003,15473,18827]]],["bringing",[3,3,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]],[18,1,1,2,3,[[603,1,1,2,3]]]],[9101,11385,16121]]],["brought",[10,10,[[9,4,4,0,4,[[272,2,2,0,2],[274,2,2,2,4]]],[10,1,1,4,5,[[300,1,1,4,5]]],[11,1,1,5,6,[[326,1,1,5,6]]],[12,3,3,6,9,[[355,3,3,6,9]]],[13,1,1,9,10,[[391,1,1,9,10]]]],[8160,8161,8211,8215,9090,9916,10892,10896,10901,11732]]],["burned",[2,2,[[9,1,1,0,1,[[271,1,1,0,1]]],[33,1,1,1,2,[[900,1,1,1,2]]]],[8153,22689]]],["carried",[9,8,[[0,1,1,0,1,[[49,1,1,0,1]]],[2,1,1,1,2,[[99,1,1,1,2]]],[11,3,2,2,4,[[319,2,1,2,3],[332,1,1,3,4]]],[22,4,4,4,8,[[717,1,1,4,5],[724,1,1,5,6],[727,1,1,6,7],[741,1,1,7,8]]]],[1519,2982,9715,10115,18418,18589,18658,18875]]],["carry",[8,8,[[0,4,4,0,4,[[43,1,1,0,1],[44,1,1,1,2],[45,1,1,2,3],[46,1,1,3,4]]],[4,1,1,4,5,[[166,1,1,4,5]]],[10,1,1,5,6,[[308,1,1,5,6]]],[22,2,2,6,8,[[708,1,1,6,7],[718,1,1,7,8]]]],[1325,1385,1391,1450,5314,9353,18223,18431]]],["carrying",[3,1,[[8,3,1,0,1,[[245,3,1,0,1]]]],[7421]]],["contain",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21641]]],["continued",[2,2,[[17,2,2,0,2,[[462,1,1,0,1],[464,1,1,1,2]]]],[13482,13533]]],["ease",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13021]]],["exalted",[6,6,[[3,1,1,0,1,[[140,1,1,0,1]]],[9,1,1,1,2,[[271,1,1,1,2]]],[22,2,2,2,4,[[680,1,1,2,3],[718,1,1,3,4]]],[27,1,1,4,5,[[874,1,1,4,5]]],[32,1,1,5,6,[[896,1,1,5,6]]]],[4453,8144,17687,18424,22267,22621]]],["extolled",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18709]]],["fetch",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13739]]],["fetched",[1,1,[[13,1,1,0,1,[[378,1,1,0,1]]]],[11448]]],["forgavest",[2,2,[[18,2,2,0,2,[[509,1,1,0,1],[576,1,1,1,2]]]],[14360,15507]]],["forgive",[7,7,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,2,2,1,3,[[59,1,1,1,2],[81,1,1,2,3]]],[5,1,1,3,4,[[210,1,1,3,4]]],[8,1,1,4,5,[[260,1,1,4,5]]],[18,1,1,5,6,[[502,1,1,5,6]]],[22,1,1,6,7,[[680,1,1,6,7]]]],[1523,1794,2470,6495,7889,14269,17694]]],["forgiven",[4,4,[[3,1,1,0,1,[[130,1,1,0,1]]],[18,2,2,1,3,[[509,1,1,1,2],[562,1,1,2,3]]],[22,1,1,3,4,[[711,1,1,3,4]]]],[4127,14356,15273,18303]]],["forgiving",[2,2,[[1,1,1,0,1,[[83,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]]],[2503,4126]]],["forth",[3,3,[[17,1,1,0,1,[[475,1,1,0,1]]],[25,1,1,1,2,[[818,1,1,1,2]]],[36,1,1,2,3,[[910,1,1,2,3]]]],[13884,20848,22874]]],["help",[1,1,[[14,1,1,0,1,[[403,1,1,0,1]]]],[12020]]],["high",[2,2,[[22,2,2,0,2,[[708,1,1,0,1],[735,1,1,1,2]]]],[18242,18772]]],["himself",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4440]]],["itself",[1,1,[[25,1,1,0,1,[[830,1,1,0,1]]]],[21198]]],["laden",[2,1,[[0,2,1,0,1,[[44,2,1,0,1]]]],[1381]]],["laid",[2,2,[[13,1,1,0,1,[[372,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]]],[11304,12980]]],["let",[1,1,[[5,1,1,0,1,[[192,1,1,0,1]]]],[5955]]],["magnified",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11898]]],["married",[1,1,[[13,1,1,0,1,[[379,1,1,0,1]]]],[11474]]],["myself",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18289]]],["obtained",[3,3,[[16,3,3,0,3,[[427,2,2,0,2],[430,1,1,2,3]]]],[12733,12741,12781]]],["offer",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20926]]],["pardon",[2,2,[[1,1,1,0,1,[[72,1,1,0,1]]],[17,1,1,1,2,[[442,1,1,1,2]]]],[2165,13029]]],["pardoneth",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22682]]],["raise",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2145]]],["receive",[3,3,[[4,1,1,0,1,[[185,1,1,0,1]]],[10,1,1,1,2,[[295,1,1,1,2]]],[18,1,1,2,3,[[501,1,1,2,3]]]],[5813,8887,14246]]],["regard",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[11,1,1,1,2,[[315,1,1,1,2]]],[38,1,1,2,3,[[925,1,1,2,3]]]],[5661,9590,23098]]],["regardeth",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5203]]],["respect",[2,2,[[2,1,1,0,1,[[108,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]]],[3296,8370]]],["respected",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20436]]],["set",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22141]]],["spare",[3,3,[[0,2,2,0,2,[[17,2,2,0,2]]],[19,1,1,2,3,[[646,1,1,2,3]]]],[448,450,16943]]],["suffer",[3,3,[[2,1,1,0,1,[[108,1,1,0,1]]],[18,1,1,1,2,[[565,1,1,1,2]]],[19,1,1,2,3,[[646,1,1,2,3]]]],[3298,15323,16944]]],["suffered",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19330]]],["swear",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17714]]],["take",[19,19,[[0,1,1,0,1,[[26,1,1,0,1]]],[3,1,1,1,2,[[117,1,1,1,2]]],[4,1,1,2,3,[[164,1,1,2,3]]],[11,1,1,3,4,[[321,1,1,3,4]]],[12,1,1,4,5,[[358,1,1,4,5]]],[14,1,1,5,6,[[411,1,1,5,6]]],[15,1,1,6,7,[[425,1,1,6,7]]],[17,3,3,7,10,[[448,1,1,7,8],[456,1,1,8,9],[466,1,1,9,10]]],[18,4,4,10,14,[[527,1,1,10,11],[593,1,1,11,12],[616,2,2,12,14]]],[20,1,1,14,15,[[663,1,1,14,15]]],[22,1,1,15,16,[[716,1,1,15,16]]],[23,1,1,16,17,[[793,1,1,16,17]]],[25,2,2,17,19,[[830,1,1,17,18],[840,1,1,18,19]]]],[730,3653,5266,9782,10958,12249,12696,13167,13367,13624,14684,15861,16248,16259,17412,18411,20156,21202,21458]]],["taken",[4,4,[[3,1,1,0,1,[[132,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]],[14,2,2,2,4,[[411,1,1,2,3],[412,1,1,3,4]]]],[4209,9623,12239,12296]]],["themselves",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22050]]],["thyself",[3,3,[[18,2,2,0,2,[[484,1,1,0,1],[571,1,1,1,2]]],[19,1,1,2,3,[[657,1,1,2,3]]]],[14001,15433,17283]]],["took",[16,16,[[0,1,1,0,1,[[42,1,1,0,1]]],[6,3,3,1,4,[[219,1,1,1,2],[226,1,1,2,3],[231,1,1,3,4]]],[7,1,1,4,5,[[232,1,1,4,5]]],[8,2,2,5,7,[[252,2,2,5,7]]],[9,1,1,7,8,[[289,1,1,7,8]]],[12,3,3,8,11,[[348,1,1,8,9],[360,1,1,9,10],[364,1,1,10,11]]],[13,3,3,11,14,[[377,1,1,11,12],[390,2,2,12,14]]],[24,1,1,14,15,[[801,1,1,14,15]]],[25,1,1,15,16,[[811,1,1,15,16]]]],[1324,6802,6980,7125,7131,7638,7652,8669,10691,11005,11132,11435,11680,11688,20455,20640]]],["up",[158,149,[[0,9,9,0,9,[[12,1,1,0,1],[17,1,1,1,2],[23,1,1,2,3],[26,1,1,3,4],[30,2,2,4,6],[32,1,1,6,7],[36,1,1,7,8],[42,1,1,8,9]]],[1,2,2,9,11,[[84,1,1,9,10],[85,1,1,10,11]]],[3,8,8,11,19,[[122,1,1,11,12],[139,2,2,12,14],[140,5,5,14,19]]],[4,3,3,19,22,[[155,1,1,19,20],[156,1,1,20,21],[184,1,1,21,22]]],[5,2,2,22,24,[[190,1,1,22,23],[191,1,1,23,24]]],[6,4,4,24,28,[[218,1,1,24,25],[219,1,1,25,26],[229,1,1,26,27],[231,1,1,27,28]]],[7,3,3,28,31,[[232,2,2,28,30],[233,1,1,30,31]]],[8,1,1,31,32,[[259,1,1,31,32]]],[9,4,4,32,36,[[268,1,1,32,33],[270,1,1,33,34],[279,1,1,34,35],[286,1,1,35,36]]],[11,7,7,36,43,[[314,1,1,36,37],[316,1,1,37,38],[321,2,2,38,40],[326,1,1,40,41],[331,2,2,41,43]]],[12,1,1,43,44,[[351,1,1,43,44]]],[13,1,1,44,45,[[391,1,1,44,45]]],[17,5,5,45,50,[[437,1,1,45,46],[445,1,1,46,47],[446,1,1,47,48],[457,1,1,48,49],[465,1,1,49,50]]],[18,24,20,50,70,[[481,1,1,50,51],[487,1,1,51,52],[492,1,1,52,53],[501,5,3,53,56],[502,1,1,56,57],[505,2,2,57,59],[540,1,1,59,60],[560,1,1,60,61],[563,1,1,61,62],[568,1,1,62,63],[570,3,1,63,64],[579,1,1,64,65],[583,1,1,65,66],[596,1,1,66,67],[598,1,1,67,68],[611,1,1,68,69],[620,1,1,69,70]]],[19,1,1,70,71,[[657,1,1,70,71]]],[22,24,24,71,95,[[680,4,4,71,75],[683,1,1,75,76],[684,1,1,76,77],[688,2,2,77,79],[689,1,1,79,80],[691,1,1,80,81],[692,1,1,81,82],[696,1,1,82,83],[702,1,1,83,84],[704,1,1,84,85],[715,2,2,85,87],[718,1,1,87,88],[720,2,2,88,90],[727,2,2,90,92],[729,1,1,92,93],[730,1,1,93,94],[738,1,1,94,95]]],[23,13,13,95,108,[[747,1,1,95,96],[748,1,1,96,97],[750,1,1,97,98],[751,2,2,98,100],[753,2,2,100,102],[755,1,1,102,103],[757,1,1,103,104],[794,1,1,104,105],[795,3,3,105,108]]],[24,2,2,108,110,[[798,1,1,108,109],[799,1,1,109,110]]],[25,27,23,110,133,[[802,5,3,110,113],[804,2,2,113,115],[809,2,1,115,116],[812,1,1,116,117],[818,1,1,117,118],[819,3,3,118,121],[821,4,3,121,124],[824,1,1,124,125],[827,1,1,125,126],[828,2,2,126,128],[829,1,1,128,129],[833,1,1,129,130],[834,1,1,130,131],[844,1,1,131,132],[845,1,1,132,133]]],[26,1,1,133,134,[[857,1,1,133,134]]],[29,2,2,134,136,[[883,1,1,134,135],[884,1,1,135,136]]],[31,1,1,136,137,[[889,1,1,136,137]]],[32,2,2,137,139,[[894,1,1,137,138],[896,1,1,138,139]]],[34,3,3,139,142,[[903,1,1,139,140],[904,1,1,140,141],[905,1,1,141,142]]],[37,8,7,142,149,[[911,2,1,142,143],[912,1,1,143,144],[915,4,4,144,148],[916,1,1,148,149]]]],[332,426,654,765,883,885,961,1108,1319,2552,2568,3849,4423,4434,4449,4461,4466,4467,4469,5002,5023,5798,5918,5947,6747,6761,7041,7104,7136,7141,7167,7855,8071,8124,8353,8575,9567,9639,9781,9788,9906,10065,10083,10776,11723,12903,13101,13123,13415,13579,13971,14053,14090,14245,14248,14250,14252,14301,14308,14843,15243,15288,15407,15429,15531,15677,15946,16082,16174,16301,17264,17689,17697,17698,17699,17765,17770,17874,17876,17896,17908,17932,18000,18109,18141,18356,18375,18446,18482,18491,18654,18658,18679,18704,18825,19004,19033,19090,19135,19148,19185,19193,19240,19286,20168,20221,20224,20239,20351,20395,20483,20484,20485,20514,20516,20609,20679,20839,20855,20861,20864,20900,20901,20910,21034,21117,21123,21153,21169,21250,21305,21577,21611,21964,22424,22460,22543,22599,22623,22734,22754,22778,22899,22900,22937,22941,22943,22945,22948]]],["wear",[2,2,[[8,2,2,0,2,[[237,1,1,0,1],[257,1,1,1,2]]]],[7268,7805]]],["wearing",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7511]]],["yield",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21367]]],["yourselves",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4197]]]]},{"k":"H5376","v":[["*",[3,3,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,1,1,2,3,[[851,1,1,2,3]]]],[12129,12149,21793]]],["+",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21793]]],["Take",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12149]]],["insurrection",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12129]]]]},{"k":"H5377","v":[["*",[15,14,[[0,1,1,0,1,[[2,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[11,2,2,2,4,[[330,1,1,2,3],[331,1,1,3,4]]],[13,1,1,4,5,[[398,1,1,4,5]]],[22,3,3,5,8,[[697,1,1,5,6],[714,1,1,6,7],[715,1,1,7,8]]],[23,5,4,8,12,[[748,2,1,8,9],[773,1,1,9,10],[781,1,1,10,11],[793,1,1,11,12]]],[30,2,2,12,14,[[888,2,2,12,14]]]],[68,9016,10053,10071,11890,18017,18344,18362,19037,19643,19883,20143,22513,22517]]],["+",[2,1,[[23,2,1,0,1,[[748,2,1,0,1]]]],[19037]]],["Deceive",[1,1,[[23,1,1,0,1,[[781,1,1,0,1]]]],[19883]]],["beguiled",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[68]]],["deceive",[6,6,[[11,2,2,0,2,[[330,1,1,0,1],[331,1,1,1,2]]],[13,1,1,2,3,[[398,1,1,2,3]]],[22,2,2,3,5,[[714,1,1,3,4],[715,1,1,4,5]]],[23,1,1,5,6,[[773,1,1,5,6]]]],[10053,10071,11890,18344,18362,19643]]],["deceived",[4,4,[[22,1,1,0,1,[[697,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]],[30,2,2,2,4,[[888,2,2,2,4]]]],[18017,20143,22513,22517]]],["laid",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9016]]]]},{"k":"H5378","v":[["*",[4,4,[[8,1,1,0,1,[[257,1,1,0,1]]],[15,1,1,1,2,[[417,1,1,1,2]]],[18,1,1,2,3,[[566,1,1,2,3]]],[22,1,1,3,4,[[702,1,1,3,4]]]],[7789,12389,15348,18097]]],["debt",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7789]]],["exact",[2,2,[[15,1,1,0,1,[[417,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]]],[12389,15348]]],["usury",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18097]]]]},{"k":"H5379","v":[["+",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8553]]]]},{"k":"H5380","v":[["*",[3,3,[[0,1,1,0,1,[[14,1,1,0,1]]],[18,1,1,1,2,[[624,1,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]]],[371,16369,18427]]],["+",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[371]]],["blow",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16369]]],["bloweth",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18427]]]]},{"k":"H5381","v":[["*",[50,47,[[0,4,4,0,4,[[30,1,1,0,1],[43,2,2,1,3],[46,1,1,3,4]]],[1,2,2,4,6,[[63,1,1,4,5],[64,1,1,5,6]]],[2,12,11,6,17,[[94,1,1,6,7],[103,5,5,7,12],[114,3,3,12,15],[115,2,1,15,16],[116,1,1,16,17]]],[3,1,1,17,18,[[122,1,1,17,18]]],[4,4,4,18,22,[[171,1,1,18,19],[180,3,3,19,22]]],[5,1,1,22,23,[[188,1,1,22,23]]],[8,4,2,23,25,[[249,1,1,23,24],[265,3,1,24,25]]],[9,1,1,25,26,[[281,1,1,25,26]]],[11,1,1,26,27,[[337,1,1,26,27]]],[12,1,1,27,28,[[358,1,1,27,28]]],[17,3,3,28,31,[[459,1,1,28,29],[462,1,1,29,30],[476,1,1,30,31]]],[18,4,4,31,35,[[484,1,1,31,32],[495,1,1,32,33],[517,1,1,33,34],[546,1,1,34,35]]],[19,1,1,35,36,[[629,1,1,35,36]]],[22,3,3,36,39,[[713,1,1,36,37],[729,1,1,37,38],[737,1,1,38,39]]],[23,3,3,39,42,[[783,1,1,39,40],[786,1,1,40,41],[796,1,1,41,42]]],[24,1,1,42,43,[[797,1,1,42,43]]],[25,1,1,43,44,[[847,1,1,43,44]]],[27,2,2,44,46,[[863,1,1,44,45],[871,1,1,45,46]]],[37,1,1,46,47,[[911,1,1,46,47]]]],[898,1328,1330,1429,1898,1929,2841,3132,3133,3141,3142,3143,3495,3516,3518,3529,3578,3844,5412,5613,5626,5656,5874,7534,7986,8403,10227,10946,13438,13501,13914,14000,14155,14537,14959,16452,18330,18684,18809,19928,19991,20284,20313,21662,22112,22234,22884]]],["+",[16,14,[[0,2,2,0,2,[[30,1,1,0,1],[46,1,1,1,2]]],[2,10,9,2,11,[[94,1,1,2,3],[103,4,4,3,7],[114,2,2,7,9],[115,2,1,9,10],[116,1,1,10,11]]],[8,2,1,11,12,[[265,2,1,11,12]]],[23,2,2,12,14,[[783,1,1,12,13],[796,1,1,13,14]]]],[898,1429,2841,3132,3133,3141,3142,3495,3518,3529,3578,7986,19928,20284]]],["attain",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21662]]],["get",[2,2,[[2,1,1,0,1,[[103,1,1,0,1]]],[3,1,1,1,2,[[122,1,1,1,2]]]],[3143,3844]]],["hold",[5,5,[[17,1,1,0,1,[[462,1,1,0,1]]],[18,2,2,1,3,[[517,1,1,1,2],[546,1,1,2,3]]],[19,1,1,3,4,[[629,1,1,3,4]]],[37,1,1,4,5,[[911,1,1,4,5]]]],[13501,14537,14959,16452,22884]]],["layeth",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13914]]],["obtain",[2,2,[[22,2,2,0,2,[[713,1,1,0,1],[729,1,1,1,2]]]],[18330,18684]]],["overtake",[13,13,[[0,1,1,0,1,[[43,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[4,4,4,2,6,[[171,1,1,2,3],[180,3,3,3,6]]],[5,1,1,6,7,[[188,1,1,6,7]]],[8,1,1,7,8,[[265,1,1,7,8]]],[9,1,1,8,9,[[281,1,1,8,9]]],[22,1,1,9,10,[[737,1,1,9,10]]],[23,1,1,10,11,[[786,1,1,10,11]]],[27,2,2,11,13,[[863,1,1,11,12],[871,1,1,12,13]]]],[1328,1929,5412,5613,5626,5656,5874,7986,8403,18809,19991,22112,22234]]],["overtaken",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14155]]],["overtaketh",[1,1,[[12,1,1,0,1,[[358,1,1,0,1]]]],[10946]]],["overtook",[4,4,[[0,1,1,0,1,[[43,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[11,1,1,2,3,[[337,1,1,2,3]]],[24,1,1,3,4,[[797,1,1,3,4]]]],[1330,1898,10227,20313]]],["put",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7534]]],["remove",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13438]]],["rich",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3516]]],["take",[1,1,[[18,1,1,0,1,[[484,1,1,0,1]]]],[14000]]]]},{"k":"H5382","v":[["*",[7,6,[[0,1,1,0,1,[[40,1,1,0,1]]],[17,2,2,1,3,[[446,1,1,1,2],[474,1,1,2,3]]],[22,1,1,3,4,[[722,1,1,3,4]]],[23,2,1,4,5,[[767,2,1,4,5]]],[24,1,1,5,6,[[799,1,1,5,6]]]],[1246,13114,13851,18554,19523,20371]]],["+",[3,2,[[0,1,1,0,1,[[40,1,1,0,1]]],[23,2,1,1,2,[[767,2,1,1,2]]]],[1246,19523]]],["deprived",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13851]]],["exacteth",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13114]]],["forgat",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20371]]],["forgotten",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18554]]]]},{"k":"H5383","v":[["*",[12,11,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,3,3,1,4,[[167,1,1,1,2],[176,2,2,2,4]]],[11,1,1,4,5,[[316,1,1,4,5]]],[15,2,2,5,7,[[417,2,2,5,7]]],[18,1,1,7,8,[[586,1,1,7,8]]],[22,2,2,8,10,[[702,1,1,8,9],[728,1,1,9,10]]],[23,2,1,10,11,[[759,2,1,10,11]]]],[2138,5321,5535,5536,9604,12392,12393,15766,18097,18663,19325]]],["+",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18663]]],["creditor",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9604]]],["exact",[2,2,[[15,2,2,0,2,[[417,2,2,0,2]]]],[12392,12393]]],["extortioner",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15766]]],["lend",[2,2,[[4,2,2,0,2,[[176,2,2,0,2]]]],[5535,5536]]],["lendeth",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5321]]],["usurer",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2138]]],["usury",[3,2,[[22,1,1,0,1,[[702,1,1,0,1]]],[23,2,1,1,2,[[759,2,1,1,2]]]],[18097,19325]]]]},{"k":"H5384","v":[["shrank",[2,1,[[0,2,1,0,1,[[31,2,1,0,1]]]],[960]]]]},{"k":"H5385","v":[["carriages",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18587]]]]},{"k":"H5386","v":[["debt",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9610]]]]},{"k":"H5387","v":[["*",[134,120,[[0,4,4,0,4,[[16,1,1,0,1],[22,1,1,1,2],[24,1,1,2,3],[33,1,1,3,4]]],[1,4,4,4,8,[[65,1,1,4,5],[71,1,1,5,6],[83,1,1,6,7],[84,1,1,7,8]]],[2,1,1,8,9,[[93,1,1,8,9]]],[3,62,55,9,64,[[117,2,2,9,11],[118,12,12,11,23],[119,5,4,23,27],[120,2,2,27,29],[123,19,16,29,45],[126,1,1,45,46],[129,1,1,46,47],[132,1,1,47,48],[133,4,2,48,50],[141,2,2,50,52],[143,1,1,52,53],[147,1,1,53,54],[148,1,1,54,55],[150,9,8,55,63],[152,1,1,63,64]]],[5,13,9,64,73,[[195,6,4,64,68],[199,1,1,68,69],[203,1,1,69,70],[208,5,3,70,73]]],[10,2,2,73,75,[[298,1,1,73,74],[301,1,1,74,75]]],[12,4,4,75,79,[[339,1,1,75,76],[341,1,1,76,77],[342,1,1,77,78],[344,1,1,78,79]]],[13,2,2,79,81,[[367,1,1,79,80],[371,1,1,80,81]]],[14,1,1,81,82,[[403,1,1,81,82]]],[18,1,1,82,83,[[612,1,1,82,83]]],[19,1,1,83,84,[[652,1,1,83,84]]],[23,2,2,84,86,[[754,1,1,84,85],[795,1,1,85,86]]],[25,37,34,86,120,[[808,1,1,86,87],[813,2,2,87,89],[820,1,1,89,90],[822,2,2,90,92],[823,1,1,92,93],[827,1,1,93,94],[828,1,1,94,95],[831,1,1,95,96],[833,1,1,96,97],[835,1,1,97,98],[838,1,1,98,99],[839,2,2,99,101],[840,2,2,101,103],[845,2,1,103,104],[846,6,6,104,110],[847,8,8,110,118],[849,4,2,118,120]]]],[417,577,674,982,1969,2141,2527,2558,2817,3620,3648,3661,3663,3665,3668,3670,3672,3676,3678,3680,3683,3685,3687,3716,3722,3724,3727,3777,3789,3852,3853,3860,3861,3868,3874,3880,3886,3892,3898,3904,3910,3916,3922,3928,3934,3992,4077,4196,4246,4250,4485,4489,4556,4677,4720,4834,4838,4839,4840,4841,4842,4843,4844,4880,6052,6055,6056,6058,6175,6279,6440,6456,6458,8986,9142,10316,10423,10434,10575,11196,11270,12024,16182,17127,19214,20228,20604,20690,20692,20882,20956,20969,20982,21116,21142,21217,21277,21337,21422,21427,21428,21449,21466,21602,21637,21638,21639,21646,21647,21652,21657,21659,21663,21665,21667,21671,21672,21673,21723,21724]]],["+",[7,5,[[3,4,3,0,3,[[123,1,1,0,1],[133,1,1,1,2],[150,2,1,2,3]]],[5,2,1,3,4,[[208,2,1,3,4]]],[25,1,1,4,5,[[846,1,1,4,5]]]],[3861,4250,4834,6440,21647]]],["captain",[12,12,[[3,12,12,0,12,[[118,12,12,0,12]]]],[3661,3663,3665,3668,3670,3672,3676,3678,3680,3683,3685,3687]]],["chief",[9,8,[[3,7,6,0,6,[[119,5,4,0,4],[120,2,2,4,6]]],[10,1,1,6,7,[[298,1,1,6,7]]],[13,1,1,7,8,[[371,1,1,7,8]]]],[3716,3722,3724,3727,3777,3789,8986,11270]]],["clouds",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17127]]],["governor",[1,1,[[13,1,1,0,1,[[367,1,1,0,1]]]],[11196]]],["prince",[54,52,[[0,2,2,0,2,[[22,1,1,0,1],[33,1,1,1,2]]],[3,22,22,2,24,[[123,12,12,2,14],[133,1,1,14,15],[141,2,2,15,17],[150,7,7,17,24]]],[10,1,1,24,25,[[301,1,1,24,25]]],[12,2,2,25,27,[[339,1,1,25,26],[342,1,1,26,27]]],[14,1,1,27,28,[[403,1,1,27,28]]],[25,26,24,28,52,[[808,1,1,28,29],[813,2,2,29,31],[822,1,1,31,32],[831,1,1,32,33],[835,1,1,33,34],[838,1,1,34,35],[839,2,2,35,37],[840,1,1,37,38],[845,2,1,38,39],[846,3,3,39,42],[847,8,8,42,50],[849,3,2,50,52]]]],[577,982,3861,3868,3874,3880,3886,3892,3898,3904,3910,3916,3922,3928,4250,4485,4489,4838,4839,4840,4841,4842,4843,4844,9142,10316,10434,12024,20604,20690,20692,20969,21217,21337,21422,21427,21428,21449,21602,21637,21646,21652,21657,21659,21663,21665,21667,21671,21672,21673,21723,21724]]],["prince's",[1,1,[[25,1,1,0,1,[[849,1,1,0,1]]]],[21724]]],["princes",[40,36,[[0,2,2,0,2,[[16,1,1,0,1],[24,1,1,1,2]]],[3,16,14,2,16,[[117,2,2,2,4],[123,6,4,4,8],[126,1,1,8,9],[132,1,1,9,10],[133,2,2,10,12],[143,1,1,12,13],[147,1,1,13,14],[148,1,1,14,15],[152,1,1,15,16]]],[5,11,9,16,25,[[195,6,4,16,20],[199,1,1,20,21],[203,1,1,21,22],[208,3,3,22,25]]],[12,2,2,25,27,[[341,1,1,25,26],[344,1,1,26,27]]],[25,9,9,27,36,[[820,1,1,27,28],[822,1,1,28,29],[823,1,1,29,30],[827,1,1,30,31],[828,1,1,31,32],[833,1,1,32,33],[840,1,1,33,34],[846,2,2,34,36]]]],[417,674,3620,3648,3852,3853,3860,3934,3992,4196,4246,4250,4556,4677,4720,4880,6052,6055,6056,6058,6175,6279,6440,6456,6458,10423,10575,20882,20956,20982,21116,21142,21277,21466,21638,21639]]],["ruler",[3,3,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,1,1,1,2,[[93,1,1,1,2]]],[3,1,1,2,3,[[129,1,1,2,3]]]],[2141,2817,4077]]],["rulers",[3,3,[[1,3,3,0,3,[[65,1,1,0,1],[83,1,1,1,2],[84,1,1,2,3]]]],[1969,2527,2558]]],["vapours",[3,3,[[18,1,1,0,1,[[612,1,1,0,1]]],[23,2,2,1,3,[[754,1,1,1,2],[795,1,1,2,3]]]],[16182,19214,20228]]]]},{"k":"H5388","v":[["forgetfulness",[1,1,[[18,1,1,0,1,[[565,1,1,0,1]]]],[15320]]]]},{"k":"H5389","v":[["wives",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21929]]]]},{"k":"H5390","v":[["*",[2,2,[[19,1,1,0,1,[[654,1,1,0,1]]],[21,1,1,1,2,[[671,1,1,1,2]]]],[17175,17539]]],["+",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17539]]],["kisses",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17175]]]]},{"k":"H5391","v":[["*",[16,14,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,3,3,1,4,[[137,3,3,1,4]]],[4,4,2,4,6,[[175,4,2,4,6]]],[19,1,1,6,7,[[650,1,1,6,7]]],[20,2,2,7,9,[[668,2,2,7,9]]],[23,1,1,9,10,[[752,1,1,9,10]]],[29,2,2,10,12,[[883,1,1,10,11],[887,1,1,11,12]]],[32,1,1,12,13,[[895,1,1,12,13]]],[34,1,1,13,14,[[904,1,1,13,14]]]],[1490,4346,4348,4349,5519,5520,17076,17501,17504,19170,22442,22498,22613,22755]]],["+",[2,2,[[3,2,2,0,2,[[137,2,2,0,2]]]],[4346,4349]]],["bit",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22442]]],["bite",[6,6,[[20,2,2,0,2,[[668,2,2,0,2]]],[23,1,1,2,3,[[752,1,1,2,3]]],[29,1,1,3,4,[[887,1,1,3,4]]],[32,1,1,4,5,[[895,1,1,4,5]]],[34,1,1,5,6,[[904,1,1,5,6]]]],[17501,17504,19170,22498,22613,22755]]],["biteth",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[19,1,1,1,2,[[650,1,1,1,2]]]],[1490,17076]]],["bitten",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4348]]],["usury",[4,2,[[4,4,2,0,2,[[175,4,2,0,2]]]],[5519,5520]]]]},{"k":"H5392","v":[["usury",[12,10,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,2,2,1,3,[[114,2,2,1,3]]],[4,3,1,3,4,[[175,3,1,3,4]]],[18,1,1,4,5,[[492,1,1,4,5]]],[19,1,1,5,6,[[655,1,1,5,6]]],[25,4,4,6,10,[[819,3,3,6,9],[823,1,1,9,10]]]],[2138,3505,3506,5519,14092,17204,20857,20862,20866,20988]]]]},{"k":"H5393","v":[["*",[3,3,[[15,3,3,0,3,[[415,1,1,0,1],[424,1,1,1,2],[425,1,1,2,3]]]],[12357,12668,12678]]],["chamber",[2,2,[[15,2,2,0,2,[[415,1,1,0,1],[425,1,1,1,2]]]],[12357,12678]]],["chambers",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12668]]]]},{"k":"H5394","v":[["*",[7,7,[[1,1,1,0,1,[[52,1,1,0,1]]],[4,4,4,1,5,[[159,2,2,1,3],[171,1,1,3,4],[180,1,1,4,5]]],[5,1,1,5,6,[[191,1,1,5,6]]],[11,1,1,6,7,[[328,1,1,6,7]]]],[1584,5112,5133,5411,5651,5949,9969]]],["+",[2,2,[[4,1,1,0,1,[[159,1,1,0,1]]],[11,1,1,1,2,[[328,1,1,1,2]]]],[5133,9969]]],["Loose",[1,1,[[5,1,1,0,1,[[191,1,1,0,1]]]],[5949]]],["cast",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5651]]],["off",[1,1,[[1,1,1,0,1,[[52,1,1,0,1]]]],[1584]]],["out",[1,1,[[4,1,1,0,1,[[159,1,1,0,1]]]],[5112]]],["slippeth",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5411]]]]},{"k":"H5395","v":[["destroy",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18494]]]]},{"k":"H5396","v":[["breath",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21897]]]]},{"k":"H5397","v":[["*",[24,24,[[0,2,2,0,2,[[1,1,1,0,1],[6,1,1,1,2]]],[4,1,1,2,3,[[172,1,1,2,3]]],[5,3,3,3,6,[[196,1,1,3,4],[197,2,2,4,6]]],[9,1,1,6,7,[[288,1,1,6,7]]],[10,2,2,7,9,[[305,1,1,7,8],[307,1,1,8,9]]],[17,7,7,9,16,[[439,1,1,9,10],[461,1,1,10,11],[462,1,1,11,12],[467,1,1,12,13],[468,1,1,13,14],[469,1,1,14,15],[472,1,1,15,16]]],[18,2,2,16,18,[[495,1,1,16,17],[627,1,1,17,18]]],[19,1,1,18,19,[[647,1,1,18,19]]],[22,4,4,19,23,[[680,1,1,19,20],[708,1,1,20,21],[720,1,1,21,22],[735,1,1,22,23]]],[26,1,1,23,24,[[859,1,1,23,24]]]],[37,181,5443,6104,6118,6121,8618,9278,9334,12939,13471,13484,13636,13654,13697,13779,14133,16400,16981,17707,18250,18485,18781,22032]]],["+",[5,5,[[0,1,1,0,1,[[6,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,2,2,2,4,[[439,1,1,2,3],[472,1,1,3,4]]],[18,1,1,4,5,[[495,1,1,4,5]]]],[181,8618,12939,13779,14133]]],["breath",[10,10,[[0,1,1,0,1,[[1,1,1,0,1]]],[10,1,1,1,2,[[307,1,1,1,2]]],[17,3,3,2,5,[[462,1,1,2,3],[468,1,1,3,4],[469,1,1,4,5]]],[18,1,1,5,6,[[627,1,1,5,6]]],[22,3,3,6,9,[[680,1,1,6,7],[708,1,1,7,8],[720,1,1,8,9]]],[26,1,1,9,10,[[859,1,1,9,10]]]],[37,9334,13484,13654,13697,16400,17707,18250,18485,22032]]],["breathe",[2,2,[[5,2,2,0,2,[[197,2,2,0,2]]]],[6118,6121]]],["breathed",[2,2,[[5,1,1,0,1,[[196,1,1,0,1]]],[10,1,1,1,2,[[305,1,1,1,2]]]],[6104,9278]]],["breatheth",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5443]]],["inspiration",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13636]]],["souls",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18781]]],["spirit",[2,2,[[17,1,1,0,1,[[461,1,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]]],[13471,16981]]]]},{"k":"H5398","v":[["blow",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[1930,18444]]]]},{"k":"H5399","v":[["*",[12,12,[[8,1,1,0,1,[[265,1,1,0,1]]],[11,2,2,1,3,[[319,2,2,1,3]]],[17,3,3,3,6,[[438,1,1,3,4],[442,1,1,4,5],[459,1,1,5,6]]],[18,1,1,6,7,[[596,1,1,6,7]]],[19,1,1,7,8,[[634,1,1,7,8]]],[22,3,3,8,11,[[683,1,1,8,9],[699,1,1,9,10],[737,1,1,10,11]]],[23,1,1,11,12,[[757,1,1,11,12]]]],[7995,9712,9714,12913,13012,13451,16045,16584,17750,18039,18810,19282]]],["+",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7995]]],["dark",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19282]]],["dawning",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16045]]],["day",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13012]]],["night",[3,3,[[22,3,3,0,3,[[683,1,1,0,1],[699,1,1,1,2],[737,1,1,2,3]]]],[17750,18039,18810]]],["twilight",[5,5,[[11,2,2,0,2,[[319,2,2,0,2]]],[17,2,2,2,4,[[438,1,1,2,3],[459,1,1,3,4]]],[19,1,1,4,5,[[634,1,1,4,5]]]],[9712,9714,12913,13451,16584]]]]},{"k":"H5400","v":[["*",[3,3,[[18,1,1,0,1,[[555,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]],[25,1,1,2,3,[[840,1,1,2,3]]]],[15134,18548,21457]]],["burn",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21457]]],["kindled",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15134]]],["kindleth",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18548]]]]},{"k":"H5401","v":[["*",[35,35,[[0,11,11,0,11,[[26,2,2,0,2],[28,2,2,2,4],[30,2,2,4,6],[32,1,1,6,7],[40,1,1,7,8],[44,1,1,8,9],[47,1,1,9,10],[49,1,1,10,11]]],[1,2,2,11,13,[[53,1,1,11,12],[67,1,1,12,13]]],[7,2,2,13,15,[[232,2,2,13,15]]],[8,2,2,15,17,[[245,1,1,15,16],[255,1,1,16,17]]],[9,4,4,17,21,[[280,1,1,17,18],[281,1,1,18,19],[285,1,1,19,20],[286,1,1,20,21]]],[10,2,2,21,23,[[309,2,2,21,23]]],[12,1,1,23,24,[[349,1,1,23,24]]],[13,1,1,24,25,[[383,1,1,24,25]]],[17,1,1,25,26,[[466,1,1,25,26]]],[18,3,3,26,29,[[479,1,1,26,27],[555,1,1,27,28],[562,1,1,28,29]]],[19,2,2,29,31,[[634,1,1,29,30],[651,1,1,30,31]]],[21,2,2,31,33,[[671,1,1,31,32],[678,1,1,32,33]]],[25,1,1,33,34,[[804,1,1,33,34]]],[27,1,1,34,35,[[874,1,1,34,35]]]],[753,754,806,808,901,928,964,1235,1373,1461,1507,1628,2006,7136,7141,7419,7771,8389,8394,8550,8563,9405,9407,10722,11540,13615,13957,15122,15281,16588,17105,17539,17641,20515,22268]]],["Kiss",[1,1,[[18,1,1,0,1,[[479,1,1,0,1]]]],[13957]]],["armed",[2,2,[[12,1,1,0,1,[[349,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[10722,15122]]],["kiss",[8,8,[[0,2,2,0,2,[[26,1,1,0,1],[30,1,1,1,2]]],[9,1,1,2,3,[[286,1,1,2,3]]],[10,1,1,3,4,[[309,1,1,3,4]]],[19,1,1,4,5,[[651,1,1,4,5]]],[21,2,2,5,7,[[671,1,1,5,6],[678,1,1,6,7]]],[27,1,1,7,8,[[874,1,1,7,8]]]],[753,901,8563,9407,17105,17539,17641,22268]]],["kissed",[21,21,[[0,8,8,0,8,[[26,1,1,0,1],[28,2,2,1,3],[30,1,1,3,4],[32,1,1,4,5],[44,1,1,5,6],[47,1,1,6,7],[49,1,1,7,8]]],[1,2,2,8,10,[[53,1,1,8,9],[67,1,1,9,10]]],[7,2,2,10,12,[[232,2,2,10,12]]],[8,2,2,12,14,[[245,1,1,12,13],[255,1,1,13,14]]],[9,3,3,14,17,[[280,1,1,14,15],[281,1,1,15,16],[285,1,1,16,17]]],[10,1,1,17,18,[[309,1,1,17,18]]],[17,1,1,18,19,[[466,1,1,18,19]]],[18,1,1,19,20,[[562,1,1,19,20]]],[19,1,1,20,21,[[634,1,1,20,21]]]],[754,806,808,928,964,1373,1461,1507,1628,2006,7136,7141,7419,7771,8389,8394,8550,9405,13615,15281,16588]]],["men",[1,1,[[13,1,1,0,1,[[383,1,1,0,1]]]],[11540]]],["ruled",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1235]]],["touched",[1,1,[[25,1,1,0,1,[[804,1,1,0,1]]]],[20515]]]]},{"k":"H5402","v":[["*",[10,10,[[10,1,1,0,1,[[300,1,1,0,1]]],[11,1,1,1,2,[[322,1,1,1,2]]],[13,1,1,2,3,[[375,1,1,2,3]]],[15,1,1,3,4,[[415,1,1,3,4]]],[17,2,2,4,6,[[455,1,1,4,5],[474,1,1,5,6]]],[18,1,1,6,7,[[617,1,1,6,7]]],[22,1,1,7,8,[[700,1,1,7,8]]],[25,2,2,8,10,[[840,2,2,8,10]]]],[9104,9795,11388,12346,13350,13855,16270,18060,21457,21458]]],["+",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13350]]],["armour",[3,3,[[10,1,1,0,1,[[300,1,1,0,1]]],[11,1,1,1,2,[[322,1,1,1,2]]],[22,1,1,2,3,[[700,1,1,2,3]]]],[9104,9795,18060]]],["armoury",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12346]]],["battle",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16270]]],["harness",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11388]]],["men",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13855]]],["weapons",[2,2,[[25,2,2,0,2,[[840,2,2,0,2]]]],[21457,21458]]]]},{"k":"H5403","v":[["*",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[856,1,1,1,2]]]],[21870,21937]]],["+",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21937]]],["eagles'",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21870]]]]},{"k":"H5404","v":[["*",[26,26,[[1,1,1,0,1,[[68,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]],[4,3,3,2,5,[[166,1,1,2,3],[180,1,1,3,4],[184,1,1,4,5]]],[9,1,1,5,6,[[267,1,1,5,6]]],[17,2,2,6,8,[[444,1,1,6,7],[474,1,1,7,8]]],[18,1,1,8,9,[[580,1,1,8,9]]],[19,3,3,9,12,[[650,1,1,9,10],[657,2,2,10,12]]],[22,1,1,12,13,[[718,1,1,12,13]]],[23,4,4,13,17,[[748,1,1,13,14],[792,1,1,14,15],[793,2,2,15,17]]],[24,1,1,17,18,[[800,1,1,17,18]]],[25,4,4,18,22,[[802,1,1,18,19],[811,1,1,19,20],[818,2,2,20,22]]],[27,1,1,22,23,[[869,1,1,22,23]]],[30,1,1,23,24,[[888,1,1,23,24]]],[32,1,1,24,25,[[893,1,1,24,25]]],[34,1,1,25,26,[[903,1,1,25,26]]]],[2030,3010,5302,5660,5769,8045,13077,13861,15554,17049,17268,17270,18451,19040,20120,20143,20149,20439,20474,20647,20828,20832,22195,22514,22595,22739]]],["+",[3,3,[[9,1,1,0,1,[[267,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]],[24,1,1,2,3,[[800,1,1,2,3]]]],[8045,19040,20439]]],["eagle",[19,19,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,3,3,1,4,[[166,1,1,1,2],[180,1,1,2,3],[184,1,1,3,4]]],[17,2,2,4,6,[[444,1,1,4,5],[474,1,1,5,6]]],[19,2,2,6,8,[[650,1,1,6,7],[657,1,1,7,8]]],[23,3,3,8,11,[[792,1,1,8,9],[793,2,2,9,11]]],[25,4,4,11,15,[[802,1,1,11,12],[811,1,1,12,13],[818,2,2,13,15]]],[27,1,1,15,16,[[869,1,1,15,16]]],[30,1,1,16,17,[[888,1,1,16,17]]],[32,1,1,17,18,[[893,1,1,17,18]]],[34,1,1,18,19,[[903,1,1,18,19]]]],[3010,5302,5660,5769,13077,13861,17049,17270,20120,20143,20149,20474,20647,20828,20832,22195,22514,22595,22739]]],["eagle's",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15554]]],["eagles",[2,2,[[19,1,1,0,1,[[657,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[17268,18451]]],["eagles'",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2030]]]]},{"k":"H5405","v":[["*",[3,3,[[22,2,2,0,2,[[697,1,1,0,1],[719,1,1,1,2]]],[23,1,1,2,3,[[795,1,1,2,3]]]],[18009,18468,20242]]],["fail",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18009]]],["failed",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20242]]],["faileth",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18468]]]]},{"k":"H5406","v":[["letter",[2,2,[[14,2,2,0,2,[[406,1,1,0,1],[409,1,1,1,2]]]],[12117,12184]]]]},{"k":"H5407","v":[["letter",[3,3,[[14,3,3,0,3,[[406,2,2,0,2],[407,1,1,2,3]]]],[12128,12133,12139]]]]},{"k":"H5408","v":[["*",[9,9,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,3,3,1,4,[[90,2,2,1,3],[97,1,1,3,4]]],[6,2,2,4,6,[[229,1,1,4,5],[230,1,1,5,6]]],[8,1,1,6,7,[[246,1,1,6,7]]],[10,2,2,7,9,[[308,2,2,7,9]]]],[2353,2751,2757,2937,7053,7060,7452,9364,9374]]],["+",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9374]]],["cut",[4,4,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,3,3,1,4,[[90,2,2,1,3],[97,1,1,3,4]]]],[2353,2751,2757,2937]]],["divided",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7053]]],["pieces",[3,3,[[6,1,1,0,1,[[230,1,1,0,1]]],[8,1,1,1,2,[[246,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]]],[7060,7452,9364]]]]},{"k":"H5409","v":[["*",[13,9,[[1,2,1,0,1,[[78,2,1,0,1]]],[2,6,5,1,6,[[90,3,3,1,4],[97,2,1,4,5],[98,1,1,5,6]]],[6,1,1,6,7,[[229,1,1,6,7]]],[25,4,2,7,9,[[825,4,2,7,9]]]],[2353,2751,2753,2757,2937,2966,7053,21060,21062]]],["+",[1,1,[[2,1,1,0,1,[[90,1,1,0,1]]]],[2753]]],["piece",[3,2,[[25,3,2,0,2,[[825,3,2,0,2]]]],[21060,21062]]],["pieces",[9,7,[[1,2,1,0,1,[[78,2,1,0,1]]],[2,5,4,1,5,[[90,2,2,1,3],[97,2,1,3,4],[98,1,1,4,5]]],[6,1,1,5,6,[[229,1,1,5,6]]],[25,1,1,6,7,[[825,1,1,6,7]]]],[2353,2751,2757,2937,2966,7053,21060]]]]},{"k":"H5410","v":[["*",[26,26,[[6,1,1,0,1,[[215,1,1,0,1]]],[17,7,7,1,8,[[453,1,1,1,2],[454,1,1,2,3],[459,1,1,3,4],[463,1,1,4,5],[465,1,1,5,6],[473,1,1,6,7],[476,1,1,7,8]]],[18,4,4,8,12,[[555,1,1,8,9],[596,2,2,9,11],[619,1,1,11,12]]],[19,6,6,12,18,[[628,1,1,12,13],[630,1,1,13,14],[634,1,1,14,15],[635,2,2,15,17],[639,1,1,17,18]]],[22,4,4,18,22,[[720,1,1,18,19],[721,1,1,19,20],[736,1,1,20,21],[737,1,1,21,22]]],[23,2,2,22,24,[[750,1,1,22,23],[762,1,1,23,24]]],[24,1,1,24,25,[[799,1,1,24,25]]],[27,1,1,25,26,[[863,1,1,25,26]]]],[6629,13286,13305,13449,13511,13570,13813,13920,15163,15933,16003,16289,16415,16472,16600,16604,16622,16747,18496,18521,18798,18808,19105,19399,20363,22111]]],["+",[4,4,[[6,1,1,0,1,[[215,1,1,0,1]]],[19,2,2,1,3,[[628,1,1,1,2],[639,1,1,2,3]]],[24,1,1,3,4,[[799,1,1,3,4]]]],[6629,16415,16747,20363]]],["path",[7,7,[[17,3,3,0,3,[[463,1,1,0,1],[465,1,1,1,2],[476,1,1,2,3]]],[18,3,3,3,6,[[596,2,2,3,5],[619,1,1,5,6]]],[22,1,1,6,7,[[721,1,1,6,7]]]],[13511,13570,13920,15933,16003,16289,18521]]],["paths",[13,13,[[17,3,3,0,3,[[454,1,1,0,1],[459,1,1,1,2],[473,1,1,2,3]]],[19,4,4,3,7,[[630,1,1,3,4],[634,1,1,4,5],[635,2,2,5,7]]],[22,3,3,7,10,[[720,1,1,7,8],[736,1,1,8,9],[737,1,1,9,10]]],[23,2,2,10,12,[[750,1,1,10,11],[762,1,1,11,12]]],[27,1,1,12,13,[[863,1,1,12,13]]]],[13305,13449,13813,16472,16600,16604,16622,18496,18798,18808,19105,19399,22111]]],["way",[2,2,[[17,1,1,0,1,[[453,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[13286,15163]]]]},{"k":"H5411","v":[["Nethinims",[17,15,[[12,1,1,0,1,[[346,1,1,0,1]]],[14,7,6,1,7,[[404,3,3,1,4],[409,1,1,4,5],[410,3,2,5,7]]],[15,9,8,7,15,[[415,2,2,7,9],[419,3,3,9,12],[422,1,1,12,13],[423,3,2,13,15]]]],[10617,12070,12085,12097,12180,12218,12221,12353,12358,12466,12480,12493,12577,12591,12609]]]]},{"k":"H5412","v":[["Nethinims",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12197]]]]},{"k":"H5413","v":[["*",[21,19,[[1,1,1,0,1,[[58,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]],[11,1,1,2,3,[[334,1,1,2,3]]],[13,4,4,3,7,[[378,1,1,3,4],[400,3,3,4,7]]],[17,2,2,7,9,[[438,1,1,7,8],[445,1,1,8,9]]],[23,4,3,9,12,[[751,1,1,9,10],[786,2,1,10,11],[788,1,1,11,12]]],[25,5,4,12,16,[[823,4,3,12,15],[825,1,1,15,16]]],[26,2,2,16,18,[[858,2,2,16,18]]],[33,1,1,18,19,[[900,1,1,18,19]]]],[1775,8590,10154,11444,11950,11954,11958,12928,13096,19139,19993,20016,20996,20997,20998,21067,21999,22015,22690]]],["+",[2,2,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]]],[10154,11950]]],["dropped",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8590]]],["forth",[3,2,[[23,3,2,0,2,[[786,2,1,0,1],[788,1,1,1,2]]]],[19993,20016]]],["melt",[2,1,[[25,2,1,0,1,[[823,2,1,0,1]]]],[20996]]],["melted",[2,2,[[25,2,2,0,2,[[823,2,2,0,2]]]],[20997,20998]]],["molten",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21067]]],["out",[7,7,[[13,3,3,0,3,[[378,1,1,0,1],[400,2,2,1,3]]],[17,2,2,3,5,[[438,1,1,3,4],[445,1,1,4,5]]],[23,1,1,5,6,[[751,1,1,5,6]]],[33,1,1,6,7,[[900,1,1,6,7]]]],[11444,11954,11958,12928,13096,19139,22690]]],["poured",[3,3,[[1,1,1,0,1,[[58,1,1,0,1]]],[26,2,2,1,3,[[858,2,2,1,3]]]],[1775,21999,22015]]]]},{"k":"H5414","v":[["*",[2011,1816,[[0,150,132,0,132,[[0,2,2,0,2],[2,3,2,2,4],[3,1,1,4,5],[8,4,4,5,9],[11,1,1,9,10],[12,2,2,10,12],[13,2,2,12,14],[14,5,5,14,19],[15,2,2,19,21],[16,6,6,21,27],[17,2,2,27,29],[19,3,3,29,32],[20,2,2,32,34],[22,7,4,34,38],[23,7,6,38,44],[24,3,3,44,47],[25,2,2,47,49],[26,3,3,49,52],[27,5,4,52,56],[28,8,7,56,63],[29,12,10,63,73],[30,2,2,73,75],[31,1,1,75,76],[33,8,7,76,83],[34,4,2,83,85],[37,8,7,85,92],[38,5,5,92,97],[39,4,4,97,101],[40,7,6,101,107],[41,5,5,107,112],[42,4,3,112,115],[44,6,4,115,119],[45,2,2,119,121],[46,6,6,121,127],[47,4,3,127,130],[48,2,2,130,132]]],[1,115,101,132,233,[[51,2,2,132,134],[52,2,2,134,136],[54,6,5,136,141],[55,3,2,141,143],[56,3,3,143,146],[58,1,1,146,147],[59,1,1,147,148],[60,1,1,148,149],[61,4,4,149,153],[62,2,2,153,155],[65,6,5,155,160],[66,1,1,160,161],[67,1,1,161,162],[69,1,1,162,163],[70,6,6,163,169],[71,5,5,169,174],[72,2,2,174,176],[73,1,1,176,177],[74,8,5,177,182],[75,4,4,182,186],[76,1,1,186,187],[77,7,6,187,193],[78,5,5,193,198],[79,10,9,198,207],[80,3,2,207,209],[81,3,3,209,212],[82,1,1,212,213],[83,1,1,213,214],[84,1,1,214,215],[85,2,2,215,217],[86,1,1,217,218],[88,8,6,218,224],[89,12,9,224,233]]],[2,86,77,233,310,[[90,1,1,233,234],[91,2,2,234,236],[93,5,5,236,241],[94,2,2,241,243],[95,2,2,243,245],[96,3,3,245,248],[97,7,6,248,254],[98,1,1,254,255],[99,3,3,255,258],[100,1,1,258,259],[103,8,7,259,266],[104,1,1,266,267],[105,4,4,267,271],[106,2,2,271,273],[107,3,3,273,276],[108,4,3,276,279],[109,7,6,279,285],[111,2,2,285,287],[112,2,2,287,289],[113,4,3,289,292],[114,6,5,292,297],[115,14,11,297,308],[116,2,2,308,310]]],[3,120,101,310,411,[[119,5,3,310,313],[120,7,5,313,318],[121,8,7,318,325],[122,2,2,325,327],[123,5,5,327,332],[124,4,2,332,334],[126,1,1,334,335],[127,7,5,335,340],[129,1,1,340,341],[130,3,3,341,344],[131,3,3,344,347],[132,6,6,347,353],[133,1,1,353,354],[134,12,10,354,364],[135,2,2,364,366],[136,5,5,366,371],[137,7,6,371,377],[138,2,2,377,379],[140,1,1,379,380],[141,1,1,380,381],[142,2,2,381,383],[143,8,7,383,390],[147,5,5,390,395],[148,6,6,395,401],[149,1,1,401,402],[150,1,1,402,403],[151,12,7,403,410],[152,2,1,410,411]]],[4,176,165,411,576,[[153,10,9,411,420],[154,15,12,420,432],[155,10,9,432,441],[156,5,5,441,446],[157,4,4,446,450],[158,3,3,450,453],[159,7,7,453,460],[160,2,2,460,462],[161,4,4,462,466],[162,3,3,466,469],[163,11,10,469,479],[164,4,4,479,483],[165,3,3,483,486],[166,3,3,486,489],[167,8,6,489,495],[168,6,5,495,500],[169,3,3,500,503],[170,5,5,503,508],[171,7,6,508,514],[172,3,3,514,517],[173,5,5,517,522],[174,3,3,522,525],[175,2,2,525,527],[176,4,4,527,531],[177,2,2,531,533],[178,12,12,533,545],[179,2,2,545,547],[180,17,16,547,563],[181,2,2,563,565],[182,5,5,565,570],[183,3,3,570,573],[184,2,2,573,575],[186,1,1,575,576]]],[5,89,78,576,654,[[187,8,7,576,583],[188,4,4,583,587],[191,1,1,587,588],[192,3,3,588,591],[193,2,2,591,593],[194,3,3,593,596],[195,2,2,596,598],[196,6,5,598,603],[197,3,3,603,606],[198,2,2,606,608],[199,7,6,608,614],[200,5,4,614,618],[201,7,4,618,622],[203,4,3,622,625],[204,2,2,625,627],[205,2,2,627,629],[206,3,3,629,632],[207,11,10,632,642],[208,4,3,642,645],[209,3,3,645,648],[210,7,6,648,654]]],[6,69,63,654,717,[[211,9,7,654,661],[212,2,2,661,663],[213,4,3,663,666],[214,2,2,666,668],[215,1,1,668,669],[216,3,3,669,672],[217,6,6,672,678],[218,8,7,678,685],[219,2,2,685,687],[221,5,4,687,691],[222,1,1,691,692],[223,1,1,692,693],[224,4,4,693,697],[225,6,6,697,703],[226,3,3,703,706],[227,2,2,706,708],[228,1,1,708,709],[230,3,3,709,712],[231,6,5,712,717]]],[7,8,8,717,725,[[232,2,2,717,719],[233,1,1,719,720],[234,1,1,720,721],[235,4,4,721,725]]],[8,72,65,725,790,[[236,7,6,725,731],[237,4,4,731,735],[241,2,2,735,737],[243,3,3,737,740],[244,4,3,740,743],[245,1,1,743,744],[246,1,1,744,745],[247,3,3,745,748],[249,3,3,748,751],[250,1,1,751,752],[252,6,6,752,758],[253,9,7,758,765],[255,1,1,765,766],[256,3,3,766,769],[257,4,3,769,772],[258,2,2,772,774],[259,3,3,774,777],[260,4,4,777,781],[261,1,1,781,782],[262,2,2,782,784],[263,3,2,784,786],[265,5,4,786,790]]],[9,30,26,790,816,[[269,1,1,790,791],[270,2,2,791,793],[271,3,1,793,794],[275,1,1,794,795],[276,1,1,795,796],[277,1,1,796,797],[278,3,2,797,799],[280,1,1,799,800],[282,1,1,800,801],[284,3,3,801,804],[286,2,2,804,806],[287,4,3,806,809],[288,4,4,809,813],[290,3,3,813,816]]],[10,111,97,816,913,[[291,1,1,816,817],[292,5,4,817,821],[293,8,8,821,829],[294,1,1,829,830],[295,9,8,830,838],[296,3,3,838,841],[297,4,3,841,844],[298,11,9,844,853],[299,7,7,853,860],[300,9,6,860,866],[301,9,8,866,874],[302,3,3,874,877],[303,5,5,877,882],[304,4,4,882,886],[305,3,3,886,889],[306,2,2,889,891],[307,3,3,891,894],[308,5,4,894,898],[309,1,1,898,899],[310,3,3,899,902],[311,11,7,902,909],[312,4,4,909,913]]],[11,60,52,913,965,[[315,3,3,913,916],[316,4,3,916,919],[317,4,4,919,923],[318,2,2,923,925],[320,2,2,925,927],[321,1,1,927,928],[322,2,1,928,929],[323,2,2,929,931],[324,7,5,931,936],[325,2,2,936,938],[326,1,1,938,939],[327,2,2,939,941],[328,2,2,941,943],[329,1,1,943,944],[330,6,5,944,949],[331,3,3,949,952],[333,2,2,952,954],[334,6,5,954,959],[335,6,4,959,963],[337,2,2,963,965]]],[12,40,37,965,1002,[[339,1,1,965,966],[342,2,2,966,968],[343,7,7,968,975],[349,1,1,975,976],[351,3,2,976,978],[353,3,3,978,981],[354,1,1,981,982],[356,1,1,982,983],[358,7,5,983,988],[359,4,4,988,992],[362,1,1,992,993],[365,2,2,993,995],[366,7,7,995,1002]]],[13,114,100,1002,1102,[[367,6,4,1002,1006],[368,4,4,1006,1010],[369,2,1,1010,1011],[370,3,3,1011,1014],[371,2,2,1014,1016],[372,10,8,1016,1024],[373,3,2,1024,1026],[374,2,2,1026,1028],[375,9,6,1028,1034],[376,2,2,1034,1036],[377,3,3,1036,1039],[378,1,1,1039,1040],[379,2,2,1040,1042],[382,3,3,1042,1045],[383,4,3,1045,1048],[384,4,4,1048,1052],[386,4,4,1052,1056],[387,3,2,1056,1058],[388,1,1,1058,1059],[389,2,2,1059,1061],[390,4,4,1061,1065],[391,5,4,1065,1069],[392,1,1,1069,1070],[393,1,1,1070,1071],[394,4,3,1071,1074],[395,2,2,1074,1076],[396,3,3,1076,1079],[397,5,5,1079,1084],[398,4,4,1084,1088],[400,8,7,1088,1095],[401,4,4,1095,1099],[402,3,3,1099,1102]]],[14,19,16,1102,1118,[[403,2,2,1102,1104],[404,1,1,1104,1105],[405,1,1,1105,1106],[409,4,3,1106,1109],[410,2,2,1109,1111],[411,7,5,1111,1116],[412,2,2,1116,1118]]],[15,43,36,1118,1154,[[413,1,1,1118,1119],[414,7,6,1119,1125],[416,1,1,1125,1126],[417,1,1,1126,1127],[419,5,4,1127,1131],[421,19,14,1131,1145],[422,3,3,1145,1148],[424,1,1,1148,1149],[425,5,5,1149,1154]]],[16,29,27,1154,1181,[[426,2,2,1154,1156],[427,5,4,1156,1160],[428,4,4,1160,1164],[429,2,1,1164,1165],[430,3,3,1165,1168],[431,2,2,1168,1170],[432,2,2,1170,1172],[433,6,6,1172,1178],[434,3,3,1178,1181]]],[17,33,31,1181,1212,[[436,2,2,1181,1183],[437,1,1,1183,1184],[438,1,1,1184,1185],[440,1,1,1185,1186],[441,2,1,1186,1187],[444,2,2,1187,1189],[446,1,1,1189,1190],[448,1,1,1190,1191],[449,2,2,1191,1193],[450,1,1,1193,1194],[454,2,1,1194,1195],[458,1,1,1195,1196],[459,1,1,1196,1197],[463,1,1,1197,1198],[464,1,1,1198,1199],[466,3,3,1199,1202],[470,2,2,1202,1204],[471,3,3,1204,1207],[472,1,1,1207,1208],[473,1,1,1208,1209],[474,1,1,1209,1210],[477,2,2,1210,1212]]],[18,95,93,1212,1305,[[478,1,1,1212,1213],[479,1,1,1213,1214],[481,1,1,1214,1215],[485,1,1,1215,1216],[487,1,1,1216,1217],[491,1,1,1217,1218],[492,1,1,1218,1219],[493,1,1,1219,1220],[495,5,5,1220,1225],[497,1,1,1225,1226],[498,2,2,1226,1228],[504,1,1,1228,1229],[505,2,1,1229,1230],[506,1,1,1230,1231],[510,1,1,1231,1232],[514,2,2,1232,1234],[516,1,1,1234,1235],[517,1,1,1235,1236],[518,1,1,1236,1237],[521,1,1,1237,1238],[523,1,1,1238,1239],[526,1,1,1239,1240],[527,1,1,1240,1241],[528,1,1,1241,1242],[530,1,1,1242,1243],[532,2,2,1243,1245],[537,1,1,1245,1246],[538,1,1,1246,1247],[543,1,1,1247,1248],[544,1,1,1248,1249],[545,4,4,1249,1253],[546,3,3,1253,1256],[549,2,2,1256,1258],[551,2,2,1258,1260],[554,1,1,1260,1261],[555,5,5,1261,1266],[556,1,1,1266,1267],[558,1,1,1267,1268],[561,1,1,1268,1269],[562,3,2,1269,1271],[563,1,1,1271,1272],[566,1,1,1272,1273],[576,1,1,1273,1274],[581,3,3,1274,1277],[582,3,3,1277,1280],[583,3,3,1280,1283],[588,2,2,1283,1285],[589,1,1,1285,1286],[592,2,2,1286,1288],[595,1,1,1288,1289],[596,1,1,1289,1290],[597,1,1,1290,1291],[598,1,1,1291,1292],[601,1,1,1292,1293],[604,1,1,1293,1294],[609,1,1,1294,1295],[612,1,1,1295,1296],[613,2,2,1296,1298],[617,1,1,1298,1299],[621,1,1,1299,1300],[622,1,1,1300,1301],[623,1,1,1301,1302],[624,2,2,1302,1304],[625,1,1,1304,1305]]],[19,34,34,1305,1339,[[628,2,2,1305,1307],[629,2,2,1307,1309],[630,2,2,1309,1311],[631,2,2,1311,1313],[632,1,1,1313,1314],[633,2,2,1314,1316],[635,1,1,1316,1317],[636,1,1,1317,1318],[637,2,2,1318,1320],[639,1,1,1320,1321],[640,2,2,1321,1323],[648,1,1,1323,1324],[649,2,2,1324,1326],[650,2,2,1326,1328],[653,1,1,1328,1329],[655,1,1,1329,1330],[656,3,3,1330,1333],[657,1,1,1333,1334],[658,5,5,1334,1339]]],[20,25,22,1339,1361,[[659,3,2,1339,1341],[660,4,2,1341,1343],[661,2,2,1343,1345],[663,4,4,1345,1349],[664,1,1,1349,1350],[665,2,2,1350,1352],[666,3,3,1352,1355],[667,2,2,1355,1357],[668,1,1,1357,1358],[669,1,1,1358,1359],[670,2,2,1359,1361]]],[21,7,7,1361,1368,[[671,1,1,1361,1362],[672,1,1,1362,1363],[677,2,2,1363,1365],[678,3,3,1365,1368]]],[22,56,53,1368,1421,[[681,1,1,1368,1369],[685,1,1,1369,1370],[686,1,1,1370,1371],[687,1,1,1371,1372],[700,2,2,1372,1374],[705,1,1,1374,1375],[707,2,2,1375,1377],[708,2,2,1377,1379],[711,1,1,1379,1380],[712,1,1,1380,1381],[713,1,1,1381,1382],[714,3,2,1382,1384],[715,3,3,1384,1387],[718,2,2,1387,1389],[719,4,3,1389,1392],[720,5,5,1392,1397],[721,7,7,1397,1404],[723,1,1,1404,1405],[724,1,1,1405,1406],[725,1,1,1406,1407],[726,1,1,1407,1408],[727,2,2,1408,1410],[728,2,2,1410,1412],[729,1,1,1412,1413],[731,1,1,1413,1414],[733,2,2,1414,1416],[734,2,1,1416,1417],[739,2,2,1417,1419],[740,2,2,1419,1421]]],[23,148,137,1421,1558,[[745,4,4,1421,1425],[746,1,1,1425,1426],[747,3,3,1426,1429],[748,1,1,1429,1430],[749,2,2,1430,1432],[750,2,2,1432,1434],[751,2,2,1434,1436],[752,2,2,1436,1438],[753,5,4,1438,1442],[754,1,1,1442,1443],[755,1,1,1443,1444],[756,3,3,1444,1447],[757,2,2,1447,1449],[758,2,2,1449,1451],[759,4,4,1451,1455],[760,2,2,1455,1457],[761,3,3,1457,1460],[762,1,1,1460,1461],[763,2,2,1461,1463],[764,5,3,1463,1466],[765,3,3,1466,1469],[766,3,3,1469,1472],[767,2,2,1472,1474],[768,4,4,1474,1478],[769,4,4,1478,1482],[770,5,4,1482,1486],[771,5,4,1486,1490],[772,2,1,1490,1491],[773,7,6,1491,1497],[774,2,2,1497,1499],[775,2,2,1499,1501],[776,16,14,1501,1515],[778,7,7,1515,1522],[779,2,2,1522,1524],[780,1,1,1524,1525],[781,5,5,1525,1530],[782,7,6,1530,1536],[783,3,3,1536,1539],[784,2,2,1539,1541],[786,1,1,1541,1542],[787,1,1,1542,1543],[788,3,2,1543,1545],[789,1,1,1545,1546],[790,2,2,1546,1548],[792,2,2,1548,1550],[793,1,1,1550,1551],[794,1,1,1551,1552],[795,3,3,1552,1555],[796,3,3,1555,1558]]],[24,9,9,1558,1567,[[797,3,3,1558,1561],[798,2,2,1561,1563],[799,3,3,1563,1566],[801,1,1,1566,1567]]],[25,208,189,1567,1756,[[803,1,1,1567,1568],[804,6,6,1568,1574],[805,9,8,1574,1582],[806,1,1,1582,1583],[807,3,3,1583,1586],[808,6,6,1586,1592],[810,1,1,1592,1593],[811,1,1,1593,1594],[812,7,5,1594,1599],[813,1,1,1599,1600],[815,2,2,1600,1602],[816,5,4,1602,1606],[817,19,16,1606,1622],[818,5,5,1622,1627],[819,4,4,1627,1631],[820,2,2,1631,1633],[821,7,6,1633,1639],[822,6,5,1639,1644],[823,2,2,1644,1646],[824,9,9,1646,1655],[825,1,1,1655,1656],[826,8,7,1656,1663],[827,8,8,1663,1671],[828,8,8,1671,1679],[829,6,6,1679,1685],[830,7,7,1685,1692],[831,8,8,1692,1700],[832,4,3,1700,1703],[833,14,11,1703,1714],[834,6,6,1714,1720],[835,3,2,1720,1722],[836,4,4,1722,1726],[837,8,6,1726,1732],[838,7,5,1732,1737],[839,1,1,1737,1738],[840,4,4,1738,1742],[844,3,3,1742,1745],[845,3,3,1745,1748],[846,3,3,1748,1751],[847,2,2,1751,1753],[848,3,3,1753,1756]]],[26,17,17,1756,1773,[[850,5,5,1756,1761],[857,2,2,1761,1763],[858,2,2,1763,1765],[859,2,2,1765,1767],[860,5,5,1767,1772],[861,1,1,1772,1773]]],[27,12,9,1773,1782,[[863,4,4,1773,1777],[866,1,1,1777,1778],[870,3,1,1778,1779],[872,2,1,1779,1780],[874,2,2,1780,1782]]],[28,8,8,1782,1790,[[877,6,6,1782,1788],[878,2,2,1788,1790]]],[29,4,4,1790,1794,[[879,1,1,1790,1791],[881,1,1,1791,1792],[882,1,1,1792,1793],[887,1,1,1793,1794]]],[30,1,1,1794,1795,[[888,1,1,1794,1795]]],[31,2,2,1795,1797,[[889,2,2,1795,1797]]],[32,7,7,1797,1804,[[893,1,1,1797,1798],[895,1,1,1798,1799],[897,1,1,1799,1800],[898,3,3,1800,1803],[899,1,1,1803,1804]]],[34,1,1,1804,1805,[[905,1,1,1804,1805]]],[35,2,2,1805,1807,[[908,2,2,1805,1807]]],[36,1,1,1807,1808,[[910,1,1,1807,1808]]],[37,7,5,1808,1813,[[913,2,2,1808,1810],[917,1,1,1810,1811],[918,3,1,1811,1812],[920,1,1,1812,1813]]],[38,3,3,1813,1816,[[926,3,3,1813,1816]]]],[16,28,61,67,91,207,208,217,218,305,333,335,356,357,362,363,367,370,378,384,386,399,402,403,405,413,417,431,432,501,509,511,527,540,575,580,582,584,598,623,626,627,632,644,663,664,692,695,696,744,755,764,777,786,793,795,814,819,821,822,823,824,828,834,836,839,844,848,856,858,861,865,870,880,882,944,988,989,991,992,994,996,1001,1015,1023,1128,1133,1135,1136,1137,1145,1147,1153,1157,1169,1170,1171,1175,1183,1185,1193,1205,1236,1237,1238,1240,1243,1277,1279,1282,1286,1289,1304,1313,1314,1360,1376,1379,1380,1404,1411,1431,1436,1437,1439,1442,1444,1455,1460,1473,1493,1494,1563,1575,1598,1600,1639,1642,1648,1650,1653,1659,1663,1686,1689,1694,1765,1802,1809,1823,1839,1841,1852,1872,1878,1950,1955,1962,1976,1980,1985,2024,2063,2081,2096,2099,2100,2107,2109,2120,2123,2130,2142,2143,2171,2175,2189,2207,2211,2216,2221,2225,2267,2268,2269,2270,2277,2307,2316,2317,2318,2320,2323,2339,2342,2348,2353,2356,2388,2394,2395,2396,2397,2398,2400,2415,2418,2426,2438,2451,2462,2467,2474,2529,2565,2567,2568,2617,2680,2681,2682,2684,2689,2695,2712,2713,2714,2715,2725,2727,2729,2737,2740,2752,2763,2777,2802,2813,2820,2825,2829,2841,2846,2854,2866,2911,2913,2915,2924,2925,2932,2940,2941,2944,2962,2978,2991,2994,3035,3125,3128,3129,3136,3139,3140,3145,3182,3209,3214,3219,3222,3245,3246,3271,3272,3274,3295,3301,3309,3320,3321,3322,3324,3333,3342,3383,3391,3412,3440,3453,3465,3466,3471,3488,3493,3506,3507,3525,3528,3530,3535,3541,3543,3544,3549,3554,3555,3570,3579,3593,3701,3740,3743,3749,3750,3753,3755,3757,3799,3802,3807,3809,3810,3812,3813,3841,3842,3855,3856,3857,3858,3859,3955,3958,4017,4037,4042,4045,4049,4053,4077,4109,4112,4116,4155,4174,4191,4201,4208,4211,4212,4240,4241,4250,4263,4264,4265,4268,4269,4276,4278,4281,4283,4285,4292,4306,4319,4323,4330,4332,4335,4342,4343,4356,4363,4369,4374,4388,4393,4459,4483,4543,4551,4558,4561,4563,4564,4565,4566,4574,4667,4693,4694,4705,4711,4723,4725,4727,4747,4751,4758,4813,4829,4847,4849,4851,4852,4853,4858,4859,4881,4900,4907,4912,4913,4917,4919,4927,4928,4931,4943,4947,4950,4957,4962,4963,4966,4967,4968,4969,4971,4974,4977,4978,4987,4988,4990,4991,4993,4994,4995,5005,5012,5025,5042,5044,5069,5075,5082,5084,5096,5108,5109,5113,5114,5124,5126,5127,5134,5135,5147,5155,5163,5167,5168,5180,5190,5197,5204,5217,5222,5223,5225,5229,5233,5234,5237,5239,5240,5241,5249,5255,5261,5273,5284,5289,5311,5315,5316,5323,5326,5328,5329,5333,5336,5347,5352,5359,5360,5362,5366,5378,5379,5387,5388,5393,5398,5402,5407,5408,5414,5416,5418,5420,5440,5441,5443,5448,5455,5457,5464,5470,5486,5489,5499,5514,5524,5526,5528,5529,5540,5562,5566,5567,5568,5569,5572,5575,5576,5577,5578,5579,5580,5581,5585,5587,5588,5612,5618,5619,5622,5623,5624,5635,5636,5642,5643,5659,5663,5664,5666,5676,5678,5683,5687,5709,5715,5723,5727,5728,5733,5735,5737,5807,5810,5843,5853,5854,5857,5862,5864,5865,5866,5878,5881,5883,5893,5940,5951,5965,5973,5983,5995,6003,6009,6020,6061,6064,6072,6076,6083,6094,6096,6113,6115,6130,6136,6137,6162,6168,6169,6178,6183,6187,6190,6191,6199,6200,6215,6218,6219,6221,6279,6288,6289,6296,6300,6370,6371,6374,6376,6380,6383,6384,6389,6390,6392,6393,6394,6402,6424,6425,6430,6433,6451,6473,6475,6476,6479,6480,6484,6487,6489,6509,6511,6513,6521,6522,6524,6529,6543,6559,6568,6574,6578,6596,6606,6613,6648,6655,6663,6667,6696,6701,6703,6708,6709,6710,6722,6724,6725,6726,6734,6743,6744,6758,6783,6838,6850,6859,6861,6872,6885,6918,6921,6922,6928,6930,6931,6935,6941,6942,6947,6954,6972,6973,6984,6990,7003,7067,7082,7090,7103,7109,7116,7120,7124,7133,7136,7167,7189,7197,7201,7202,7203,7216,7217,7223,7228,7229,7239,7250,7255,7256,7268,7336,7339,7375,7383,7384,7399,7413,7414,7422,7457,7473,7477,7478,7518,7520,7545,7588,7628,7643,7656,7662,7664,7665,7678,7680,7684,7693,7695,7697,7703,7770,7775,7778,7781,7794,7797,7800,7814,7824,7843,7846,7849,7869,7872,7888,7905,7928,7935,7936,7959,7961,7989,7990,8000,8001,8095,8128,8130,8151,8236,8250,8275,8294,8297,8363,8434,8487,8489,8511,8557,8575,8586,8589,8590,8616,8638,8643,8650,8701,8707,8715,8765,8775,8787,8791,8805,8821,8822,8825,8828,8829,8841,8842,8843,8873,8881,8883,8884,8885,8887,8888,8889,8890,8902,8915,8923,8950,8973,8985,9017,9019,9021,9024,9025,9031,9033,9035,9041,9057,9058,9062,9063,9064,9067,9073,9088,9089,9092,9096,9103,9106,9119,9121,9126,9127,9139,9143,9144,9146,9155,9160,9180,9187,9189,9191,9192,9210,9225,9226,9233,9234,9253,9266,9267,9285,9286,9331,9336,9340,9342,9350,9364,9367,9408,9413,9421,9436,9453,9454,9455,9457,9458,9466,9473,9486,9492,9495,9503,9586,9589,9594,9645,9646,9647,9648,9664,9669,9670,9702,9703,9733,9746,9765,9808,9839,9841,9857,9859,9861,9864,9865,9874,9876,9905,9944,9945,9977,9980,10003,10038,10039,10040,10047,10054,10068,10071,10079,10127,10133,10150,10152,10153,10154,10155,10170,10176,10198,10200,10250,10252,10341,10429,10448,10502,10509,10510,10511,10518,10519,10521,10738,10784,10791,10824,10827,10838,10885,10918,10939,10948,10956,10957,10959,10973,10976,10982,10983,11051,11148,11154,11167,11171,11172,11178,11183,11188,11189,11201,11204,11206,11209,11221,11222,11223,11225,11245,11252,11253,11256,11269,11278,11295,11305,11307,11309,11312,11313,11318,11320,11343,11344,11348,11355,11372,11373,11376,11380,11387,11391,11399,11404,11425,11430,11437,11444,11458,11469,11510,11517,11519,11525,11528,11542,11547,11553,11556,11564,11590,11594,11597,11609,11627,11631,11655,11665,11667,11685,11686,11689,11701,11713,11720,11722,11724,11740,11760,11769,11773,11785,11797,11799,11834,11835,11839,11858,11860,11868,11869,11873,11881,11886,11899,11904,11942,11943,11944,11948,11949,11950,11951,11969,11974,11978,11991,12000,12010,12016,12018,12023,12096,12104,12179,12184,12200,12221,12237,12244,12245,12246,12249,12250,12263,12271,12307,12308,12313,12314,12315,12316,12319,12363,12389,12425,12490,12491,12492,12519,12521,12524,12526,12528,12531,12533,12535,12538,12540,12541,12546,12547,12548,12578,12579,12581,12671,12675,12676,12681,12696,12697,12721,12722,12727,12733,12737,12742,12757,12758,12761,12762,12770,12782,12785,12787,12801,12802,12809,12810,12818,12819,12824,12828,12830,12831,12846,12847,12848,12890,12891,12895,12924,12961,12986,13069,13075,13113,13158,13185,13194,13222,13320,13422,13459,13519,13534,13618,13619,13623,13727,13730,13739,13742,13767,13779,13829,13853,13933,13937,13942,13953,13972,14013,14055,14087,14092,14102,14131,14150,14153,14158,14165,14186,14193,14195,14297,14303,14319,14373,14454,14471,14517,14528,14544,14582,14620,14655,14688,14707,14725,14738,14754,14811,14824,14882,14899,14911,14933,14934,14935,14946,14956,14962,15001,15015,15062,15067,15110,15133,15137,15159,15174,15179,15187,15219,15270,15278,15283,15300,15353,15506,15583,15598,15599,15617,15638,15650,15666,15692,15697,15798,15799,15812,15831,15846,15887,16008,16077,16084,16108,16123,16155,16187,16217,16221,16271,16315,16335,16348,16360,16367,16377,16404,16420,16436,16439,16483,16489,16492,16499,16526,16544,16571,16603,16647,16666,16680,16731,16757,16762,17010,17024,17031,17070,17075,17149,17223,17239,17241,17249,17259,17287,17290,17299,17308,17315,17328,17332,17354,17359,17369,17370,17398,17403,17415,17416,17419,17431,17450,17467,17473,17474,17476,17484,17499,17515,17530,17534,17549,17567,17639,17640,17641,17647,17651,17711,17796,17825,17835,18073,18074,18155,18204,18205,18237,18240,18295,18305,18322,18338,18345,18359,18362,18371,18443,18449,18453,18470,18478,18481,18485,18486,18488,18504,18508,18509,18511,18514,18521,18525,18533,18564,18599,18605,18625,18642,18644,18666,18668,18685,18720,18744,18750,18758,18846,18851,18861,18862,18951,18955,18961,18964,18980,19010,19017,19021,19043,19072,19082,19110,19116,19126,19133,19163,19166,19176,19177,19186,19188,19214,19231,19256,19257,19259,19282,19286,19306,19315,19319,19324,19328,19335,19349,19351,19360,19361,19367,19405,19414,19419,19424,19426,19427,19447,19448,19450,19467,19474,19479,19523,19524,19531,19532,19533,19534,19539,19552,19564,19565,19576,19578,19587,19596,19598,19601,19602,19604,19632,19641,19646,19652,19653,19656,19661,19670,19683,19724,19726,19734,19735,19743,19745,19747,19750,19753,19755,19756,19759,19767,19770,19771,19774,19803,19804,19818,19819,19821,19822,19823,19828,19838,19874,19878,19889,19891,19892,19895,19898,19902,19911,19913,19914,19915,19933,19937,19940,19946,19952,19987,20000,20020,20040,20045,20069,20071,20089,20114,20142,20181,20228,20237,20267,20287,20308,20310,20321,20323,20324,20339,20350,20383,20384,20419,20448,20500,20505,20510,20511,20519,20522,20527,20530,20531,20532,20534,20535,20537,20538,20544,20560,20568,20576,20577,20580,20581,20585,20586,20597,20598,20632,20640,20664,20670,20672,20674,20676,20686,20734,20739,20758,20760,20761,20762,20769,20773,20774,20779,20780,20781,20783,20789,20795,20796,20798,20800,20801,20803,20805,20823,20830,20840,20843,20844,20847,20856,20857,20862,20865,20889,20890,20906,20907,20910,20920,20923,20937,20955,20959,20971,20973,20975,20980,21007,21014,21016,21031,21032,21035,21038,21049,21053,21056,21064,21087,21088,21090,21093,21096,21097,21100,21104,21108,21109,21114,21117,21119,21120,21121,21131,21133,21134,21135,21137,21138,21140,21143,21159,21163,21171,21174,21175,21182,21187,21188,21193,21195,21202,21203,21204,21212,21216,21217,21218,21220,21225,21228,21229,21240,21241,21244,21253,21256,21263,21268,21271,21272,21273,21274,21275,21277,21280,21282,21287,21304,21307,21308,21309,21339,21340,21347,21351,21353,21356,21364,21367,21385,21386,21387,21388,21403,21411,21416,21422,21423,21429,21452,21459,21469,21471,21580,21591,21592,21613,21627,21629,21636,21638,21649,21671,21672,21690,21693,21702,21739,21746,21749,21753,21754,21973,21974,21991,21998,22027,22030,22042,22047,22053,22057,22067,22092,22110,22113,22117,22120,22156,22222,22248,22276,22277,22322,22328,22330,22333,22334,22341,22346,22359,22366,22399,22416,22510,22512,22534,22545,22593,22613,22636,22655,22662,22664,22684,22778,22825,22840,22864,22919,22921,22973,22988,23017,23105,23108,23112]]],["+",[292,272,[[0,14,14,0,14,[[8,1,1,0,1],[11,1,1,1,2],[23,2,2,2,4],[24,1,1,4,5],[25,1,1,5,6],[26,1,1,6,7],[28,1,1,7,8],[33,2,2,8,10],[34,1,1,10,11],[39,1,1,11,12],[44,1,1,12,13],[47,1,1,13,14]]],[1,29,25,14,39,[[56,1,1,14,15],[65,1,1,15,16],[72,2,2,16,18],[74,5,3,18,21],[75,2,2,21,23],[77,3,3,23,26],[78,1,1,26,27],[79,1,1,27,28],[86,1,1,28,29],[88,2,2,29,31],[89,10,8,31,39]]],[2,13,13,39,52,[[97,2,2,39,41],[105,1,1,41,42],[107,2,2,42,44],[109,3,3,44,47],[115,4,4,47,51],[116,1,1,51,52]]],[3,32,25,52,77,[[119,4,2,52,54],[121,3,3,54,57],[124,3,2,57,59],[127,2,1,59,60],[132,1,1,60,61],[133,1,1,61,62],[134,1,1,62,63],[136,2,2,63,65],[137,4,3,65,68],[143,5,4,68,72],[147,2,2,72,74],[148,1,1,74,75],[151,1,1,75,76],[152,2,1,76,77]]],[4,21,19,77,96,[[153,3,3,77,80],[154,4,4,80,84],[155,1,1,84,85],[157,1,1,85,86],[161,1,1,86,87],[163,1,1,87,88],[165,1,1,88,89],[167,2,1,89,90],[174,1,1,90,91],[180,5,4,91,95],[182,1,1,95,96]]],[5,9,9,96,105,[[196,2,2,96,98],[197,1,1,98,99],[201,1,1,99,100],[203,1,1,100,101],[206,2,2,101,103],[207,1,1,103,104],[208,1,1,104,105]]],[6,19,17,105,122,[[211,4,4,105,109],[213,2,2,109,111],[214,1,1,111,112],[217,3,3,112,115],[218,3,2,115,117],[219,1,1,117,118],[221,3,2,118,120],[225,1,1,120,121],[226,1,1,121,122]]],[7,1,1,122,123,[[235,1,1,122,123]]],[8,9,8,123,131,[[244,1,1,123,124],[252,1,1,124,125],[255,1,1,125,126],[258,1,1,126,127],[259,1,1,127,128],[260,1,1,128,129],[263,2,1,129,130],[265,1,1,130,131]]],[9,9,8,131,139,[[270,1,1,131,132],[271,2,1,132,133],[277,1,1,133,134],[280,1,1,134,135],[282,1,1,135,136],[284,1,1,136,137],[288,1,1,137,138],[290,1,1,138,139]]],[10,13,13,139,152,[[292,1,1,139,140],[293,1,1,140,141],[296,1,1,141,142],[297,1,1,142,143],[300,1,1,143,144],[301,2,2,144,146],[304,1,1,146,147],[306,1,1,147,148],[308,1,1,148,149],[310,1,1,149,150],[311,2,2,150,152]]],[11,14,14,152,166,[[315,1,1,152,153],[318,2,2,153,155],[321,1,1,155,156],[323,2,2,156,158],[324,2,2,158,160],[326,1,1,160,161],[331,1,1,161,162],[334,1,1,162,163],[335,2,2,163,165],[337,1,1,165,166]]],[12,6,6,166,172,[[339,1,1,166,167],[343,1,1,167,168],[351,1,1,168,169],[358,1,1,169,170],[359,1,1,170,171],[366,1,1,171,172]]],[13,9,9,172,181,[[367,1,1,172,173],[375,1,1,173,174],[377,1,1,174,175],[386,1,1,175,176],[391,1,1,176,177],[396,1,1,177,178],[400,2,2,178,180],[401,1,1,180,181]]],[14,1,1,181,182,[[410,1,1,181,182]]],[15,3,3,182,185,[[421,2,2,182,184],[425,1,1,184,185]]],[16,2,2,185,187,[[430,1,1,185,186],[433,1,1,186,187]]],[17,1,1,187,188,[[458,1,1,187,188]]],[18,7,7,188,195,[[491,1,1,188,189],[492,1,1,189,190],[495,1,1,190,191],[527,1,1,191,192],[530,1,1,192,193],[581,1,1,193,194],[582,1,1,194,195]]],[19,1,1,195,196,[[633,1,1,195,196]]],[20,5,5,196,201,[[659,1,1,196,197],[661,1,1,197,198],[663,1,1,198,199],[666,2,2,199,201]]],[21,3,3,201,204,[[678,3,3,201,204]]],[22,2,2,204,206,[[715,1,1,204,205],[740,1,1,205,206]]],[23,31,28,206,234,[[746,1,1,206,207],[747,1,1,207,208],[752,1,1,208,209],[753,2,2,209,211],[756,3,3,211,214],[762,1,1,214,215],[763,1,1,215,216],[764,1,1,216,217],[765,1,1,217,218],[768,1,1,218,219],[770,1,1,219,220],[771,2,2,220,222],[775,1,1,222,223],[776,6,5,223,228],[778,2,2,228,230],[782,3,2,230,232],[788,2,1,232,233],[796,1,1,233,234]]],[25,32,32,234,266,[[803,1,1,234,235],[804,2,2,235,237],[807,2,2,237,239],[808,2,2,239,241],[816,3,3,241,244],[817,1,1,244,245],[825,1,1,245,246],[826,3,3,246,249],[829,1,1,249,250],[830,3,3,250,253],[831,2,2,253,255],[832,1,1,255,256],[833,4,4,256,260],[834,2,2,260,262],[835,1,1,262,263],[836,1,1,263,264],[837,1,1,264,265],[840,1,1,265,266]]],[26,4,4,266,270,[[850,2,2,266,268],[858,1,1,268,269],[859,1,1,269,270]]],[29,1,1,270,271,[[881,1,1,270,271]]],[37,1,1,271,272,[[918,1,1,271,272]]]],[218,305,598,627,663,695,744,814,994,996,1023,1183,1360,1455,1689,1950,2171,2175,2211,2216,2221,2268,2269,2307,2316,2317,2342,2397,2617,2680,2689,2712,2713,2714,2715,2725,2727,2729,2740,2924,2944,3214,3271,3274,3321,3324,3333,3543,3544,3554,3555,3593,3701,3743,3810,3812,3813,3955,3958,4053,4241,4250,4264,4330,4332,4342,4343,4363,4561,4563,4564,4565,4667,4705,4758,4859,4881,4900,4913,4928,4943,4947,4969,4974,4990,5082,5168,5237,5273,5329,5486,5618,5635,5666,5678,5715,6076,6096,6113,6218,6288,6376,6380,6425,6451,6511,6513,6521,6529,6578,6596,6613,6696,6701,6708,6726,6744,6783,6850,6859,6947,6972,7201,7414,7662,7770,7814,7843,7905,7961,8001,8128,8151,8275,8363,8434,8511,8650,8701,8805,8841,8923,8973,9106,9139,9146,9234,9286,9350,9436,9454,9473,9594,9702,9703,9765,9839,9841,9861,9865,9905,10079,10153,10198,10200,10250,10341,10511,10791,10939,10982,11188,11209,11391,11430,11590,11722,11835,11942,11948,11969,12237,12519,12540,12676,12787,12818,13422,14087,14092,14165,14688,14725,15583,15617,16571,17328,17370,17398,17467,17474,17641,17647,17651,18371,18862,18980,19010,19163,19177,19186,19256,19257,19259,19405,19419,19427,19447,19532,19578,19602,19604,19724,19734,19735,19743,19747,19759,19803,19819,19898,19902,20040,20308,20500,20505,20510,20568,20577,20585,20586,20760,20761,20762,20795,21064,21088,21097,21100,21163,21193,21195,21202,21225,21228,21244,21253,21263,21275,21280,21308,21309,21340,21351,21364,21469,21739,21746,21991,22027,22399,22988]]],["Add",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14962]]],["Appoint",[1,1,[[5,1,1,0,1,[[206,1,1,0,1]]]],[6374]]],["Ascribe",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14934]]],["Count",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7228]]],["Deliver",[2,2,[[9,1,1,0,1,[[269,1,1,0,1]]],[18,1,1,1,2,[[504,1,1,1,2]]]],[8095,14297]]],["Give",[31,31,[[0,3,3,0,3,[[13,1,1,0,1],[29,2,2,1,3]]],[1,1,1,3,4,[[66,1,1,3,4]]],[3,2,2,4,6,[[127,1,1,4,5],[143,1,1,5,6]]],[5,1,1,6,7,[[201,1,1,6,7]]],[6,1,1,7,8,[[218,1,1,7,8]]],[8,2,2,8,10,[[237,1,1,8,9],[243,1,1,9,10]]],[10,5,5,10,15,[[293,2,2,10,12],[307,1,1,12,13],[311,2,2,13,15]]],[11,2,2,15,17,[[316,2,2,15,17]]],[13,1,1,17,18,[[367,1,1,17,18]]],[18,2,2,18,20,[[505,1,1,18,19],[549,1,1,19,20]]],[19,5,5,20,25,[[633,1,1,20,21],[636,1,1,21,22],[658,3,3,22,25]]],[20,1,1,25,26,[[669,1,1,25,26]]],[23,2,2,26,28,[[757,1,1,26,27],[792,1,1,27,28]]],[24,1,1,28,29,[[799,1,1,28,29]]],[27,2,2,29,31,[[870,1,1,29,30],[874,1,1,30,31]]]],[357,844,856,1985,4037,4558,6221,6724,7255,7375,8825,8843,9336,9453,9457,9645,9646,11204,14303,15001,16544,16647,17287,17290,17315,17515,19282,20089,20419,22222,22276]]],["Grant",[3,3,[[12,1,1,0,1,[[358,1,1,0,1]]],[18,2,2,1,3,[[497,1,1,1,2],[617,1,1,2,3]]]],[10956,14186,16271]]],["Shew",[1,1,[[1,1,1,0,1,[[56,1,1,0,1]]]],[1694]]],["Suffer",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17403]]],["add",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4851]]],["appoint",[3,3,[[1,1,1,0,1,[[79,1,1,0,1]]],[3,1,1,1,2,[[151,1,1,1,2]]],[25,1,1,2,3,[[846,1,1,2,3]]]],[2398,4851,21636]]],["appointed",[6,6,[[11,1,1,0,1,[[320,1,1,0,1]]],[12,2,2,1,3,[[343,1,1,1,2],[353,1,1,2,3]]],[14,1,1,3,4,[[410,1,1,3,4]]],[15,1,1,4,5,[[421,1,1,4,5]]],[25,1,1,5,6,[[805,1,1,5,6]]]],[9733,10502,10824,12221,12528,20535]]],["ascribe",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13739]]],["ascribed",[2,1,[[8,2,1,0,1,[[253,2,1,0,1]]]],[7684]]],["bestow",[2,2,[[1,1,1,0,1,[[81,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[2467,5316]]],["bestowed",[2,2,[[11,1,1,0,1,[[324,1,1,0,1]]],[12,1,1,1,2,[[366,1,1,1,2]]]],[9865,11189]]],["bring",[9,9,[[8,1,1,0,1,[[246,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[17,1,1,2,3,[[449,1,1,2,3]]],[18,1,1,3,4,[[558,1,1,3,4]]],[23,2,2,4,6,[[767,1,1,4,5],[770,1,1,5,6]]],[25,2,2,6,8,[[822,1,1,6,7],[829,1,1,7,8]]],[35,1,1,8,9,[[908,1,1,8,9]]]],[7457,9017,13185,15219,19524,19587,20973,21175,22825]]],["bringeth",[2,2,[[19,1,1,0,1,[[656,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[17249,18443]]],["brought",[1,1,[[13,1,1,0,1,[[383,1,1,0,1]]]],[11528]]],["cast",[2,2,[[2,1,1,0,1,[[105,1,1,0,1]]],[25,1,1,1,2,[[816,1,1,1,2]]]],[3209,20758]]],["cause",[4,4,[[2,1,1,0,1,[[113,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[23,1,1,2,3,[[759,1,1,2,3]]],[25,1,1,3,4,[[827,1,1,3,4]]]],[3465,5636,19319,21117]]],["caused",[6,6,[[2,1,1,0,1,[[113,1,1,0,1]]],[25,5,5,1,6,[[817,1,1,1,2],[833,4,4,2,6]]]],[3466,20769,21271,21272,21273,21274]]],["causeth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16666]]],["charge",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12581]]],["charged",[1,1,[[17,1,1,0,1,[[436,1,1,0,1]]]],[12891]]],["cometh",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16757]]],["commit",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18073]]],["committed",[5,5,[[0,2,2,0,2,[[38,2,2,0,2]]],[13,1,1,2,3,[[400,1,1,2,3]]],[23,1,1,3,4,[[783,1,1,3,4]]],[25,1,1,4,5,[[824,1,1,4,5]]]],[1157,1171,11949,19937,21014]]],["considered",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17476]]],["cried",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4109]]],["deliver",[59,58,[[0,3,3,0,3,[[39,1,1,0,1],[41,2,2,1,3]]],[1,3,3,3,6,[[54,1,1,3,4],[71,2,2,4,6]]],[4,8,8,6,14,[[153,1,1,6,7],[154,1,1,7,8],[155,1,1,8,9],[159,4,4,9,13],[171,1,1,13,14]]],[5,2,2,14,16,[[193,1,1,14,15],[194,1,1,15,16]]],[6,6,6,16,22,[[214,1,1,16,17],[221,1,1,17,18],[225,2,2,18,20],[230,2,2,20,22]]],[8,1,1,22,23,[[249,1,1,22,23]]],[9,2,2,23,25,[[271,1,1,23,24],[286,1,1,24,25]]],[10,6,6,25,31,[[298,1,1,25,26],[310,2,2,26,28],[312,3,3,28,31]]],[11,6,6,31,37,[[315,2,2,31,33],[324,1,1,33,34],[330,1,1,34,35],[333,1,1,35,36],[334,1,1,36,37]]],[12,2,1,37,38,[[351,2,1,37,38]]],[13,4,4,38,42,[[372,1,1,38,39],[384,2,2,39,41],[391,1,1,41,42]]],[18,2,2,42,44,[[518,1,1,42,43],[551,1,1,43,44]]],[22,1,1,44,45,[[707,1,1,44,45]]],[23,8,8,45,53,[[759,1,1,45,46],[768,1,1,46,47],[773,2,2,47,49],[782,2,2,49,51],[787,1,1,51,52],[790,1,1,52,53]]],[25,5,5,53,58,[[812,1,1,53,54],[822,1,1,54,55],[824,1,1,55,56],[826,2,2,56,58]]]],[1185,1286,1289,1650,2120,2123,4919,4968,4977,5113,5127,5134,5135,5418,5983,6009,6606,6838,6941,6942,7067,7082,7545,8151,8575,9031,9413,9421,9486,9492,9495,9586,9589,9857,10047,10133,10150,10784,11318,11547,11553,11724,14544,15067,18204,19324,19533,19653,19656,19914,19915,20000,20071,20664,20975,21035,21087,21090]]],["delivered",[76,75,[[0,2,2,0,2,[[8,1,1,0,1],[31,1,1,1,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[3,1,1,3,4,[[137,1,1,3,4]]],[4,7,7,4,11,[[154,1,1,4,5],[155,1,1,5,6],[157,1,1,6,7],[161,1,1,7,8],[172,1,1,8,9],[173,1,1,9,10],[183,1,1,10,11]]],[5,6,6,11,17,[[188,1,1,11,12],[196,3,3,12,15],[197,1,1,15,16],[210,1,1,16,17]]],[6,11,11,17,28,[[212,2,2,17,19],[216,2,2,19,21],[217,2,2,21,23],[218,1,1,23,24],[221,1,1,24,25],[222,1,1,25,26],[223,1,1,26,27],[226,1,1,27,28]]],[8,5,5,28,33,[[249,2,2,28,30],[258,1,1,30,31],[259,1,1,31,32],[261,1,1,32,33]]],[9,3,3,33,36,[[276,1,1,33,34],[287,2,2,34,36]]],[10,3,3,36,39,[[303,1,1,36,37],[305,1,1,37,38],[307,1,1,38,39]]],[11,7,7,39,46,[[325,1,1,39,40],[329,1,1,40,41],[330,1,1,41,42],[331,1,1,42,43],[334,3,3,43,46]]],[12,3,3,46,49,[[342,1,1,46,47],[353,1,1,47,48],[356,1,1,48,49]]],[13,10,9,49,58,[[379,1,1,49,50],[382,1,1,50,51],[384,1,1,51,52],[389,1,1,52,53],[390,1,1,53,54],[394,3,2,54,56],[395,1,1,56,57],[400,1,1,57,58]]],[14,1,1,58,59,[[411,1,1,58,59]]],[16,1,1,59,60,[[431,1,1,59,60]]],[18,1,1,60,61,[[555,1,1,60,61]]],[22,3,3,61,64,[[707,1,1,61,62],[712,1,1,62,63],[714,1,1,63,64]]],[23,4,4,64,68,[[776,1,1,64,65],[778,1,1,65,66],[781,1,1,66,67],[790,1,1,67,68]]],[24,1,1,68,69,[[797,1,1,68,69]]],[25,6,6,69,75,[[817,2,2,69,71],[824,1,1,71,72],[832,2,2,72,74],[833,1,1,74,75]]]],[207,944,3549,4374,4971,4978,5075,5167,5440,5457,5737,5893,6072,6083,6094,6115,6487,6559,6568,6655,6667,6703,6709,6722,6861,6872,6885,6973,7518,7520,7824,7849,7928,8250,8586,8589,9210,9267,9340,9874,10003,10054,10071,10152,10154,10155,10448,10827,10918,11469,11517,11556,11665,11701,11769,11773,11799,11950,12244,12802,15174,18205,18305,18345,19767,19804,19891,20069,20324,20783,20789,21016,21241,21244,21268]]],["deliveredst",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12538]]],["delivereth",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17308]]],["direct",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18851]]],["distribute",[1,1,[[13,1,1,0,1,[[397,1,1,0,1]]]],[11868]]],["done",[1,1,[[2,1,1,0,1,[[113,1,1,0,1]]]],[3466]]],["fasten",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2318,2695]]],["fastened",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2682]]],["forth",[9,9,[[3,1,1,0,1,[[136,1,1,0,1]]],[18,1,1,1,2,[[478,1,1,1,2]]],[19,1,1,2,3,[[635,1,1,2,3]]],[21,1,1,3,4,[[671,1,1,3,4]]],[22,1,1,4,5,[[721,1,1,4,5]]],[25,4,4,5,9,[[819,2,2,5,7],[828,1,1,7,8],[837,1,1,8,9]]]],[4319,13942,16603,17549,18514,20857,20862,21131,21367]]],["frame",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22156]]],["gave",[230,214,[[0,38,34,0,34,[[2,2,2,0,2],[13,1,1,2,3],[15,1,1,3,4],[17,1,1,4,5],[19,1,1,5,6],[20,2,2,6,8],[23,3,2,8,10],[24,2,2,10,12],[27,1,1,12,13],[28,3,3,13,16],[29,3,3,16,19],[34,2,2,19,21],[37,2,2,21,23],[38,1,1,23,24],[39,1,1,24,25],[40,1,1,25,26],[42,2,1,26,27],[44,4,2,27,29],[45,2,2,29,31],[46,3,3,31,34]]],[1,5,5,34,39,[[51,1,1,34,35],[60,1,1,35,36],[61,1,1,36,37],[80,1,1,37,38],[81,1,1,38,39]]],[3,7,7,39,46,[[123,4,4,39,43],[127,1,1,43,44],[147,1,1,44,45],[148,1,1,45,46]]],[4,6,6,46,52,[[154,1,1,46,47],[155,3,3,47,50],[162,1,1,50,51],[181,1,1,51,52]]],[5,36,34,52,86,[[187,2,2,52,54],[197,1,1,54,55],[198,2,2,55,57],[199,7,6,57,63],[200,3,3,63,66],[201,3,3,66,69],[203,1,1,69,70],[204,1,1,70,71],[205,2,2,71,73],[207,8,8,73,81],[208,2,2,81,83],[210,4,3,83,86]]],[6,12,12,86,98,[[211,2,2,86,88],[213,1,1,88,89],[215,1,1,89,90],[216,1,1,90,91],[219,1,1,91,92],[224,2,2,92,94],[225,1,1,94,95],[227,1,1,95,96],[230,1,1,96,97],[231,1,1,97,98]]],[7,4,4,98,102,[[233,1,1,98,99],[234,1,1,99,100],[235,2,2,100,102]]],[8,11,10,102,112,[[236,2,2,102,104],[244,1,1,104,105],[253,2,2,105,107],[256,1,1,107,108],[257,2,1,108,109],[262,1,1,109,110],[265,2,2,110,112]]],[9,2,1,112,113,[[278,2,1,112,113]]],[10,17,13,113,126,[[294,1,1,113,114],[295,4,3,114,117],[299,1,1,117,118],[300,4,2,118,120],[301,3,2,120,122],[303,1,1,122,123],[304,2,2,123,125],[309,1,1,125,126]]],[11,8,8,126,134,[[322,1,1,126,127],[324,1,1,127,128],[325,1,1,128,129],[327,1,1,129,130],[330,2,2,130,132],[333,1,1,132,133],[335,1,1,133,134]]],[12,10,10,134,144,[[343,5,5,134,139],[358,1,1,139,140],[362,1,1,140,141],[365,1,1,141,142],[366,2,2,142,144]]],[13,16,14,144,158,[[375,3,2,144,146],[377,1,1,146,147],[379,1,1,147,148],[387,2,1,148,149],[390,1,1,149,150],[392,1,1,150,151],[393,1,1,151,152],[394,1,1,152,153],[398,1,1,153,154],[400,2,2,154,156],[401,1,1,156,157],[402,1,1,157,158]]],[14,4,4,158,162,[[404,1,1,158,159],[405,1,1,159,160],[409,1,1,160,161],[412,1,1,161,162]]],[15,7,6,162,168,[[414,2,2,162,164],[419,4,3,164,167],[424,1,1,167,168]]],[16,5,5,168,173,[[427,2,2,168,170],[428,1,1,170,171],[429,1,1,171,172],[433,1,1,172,173]]],[17,3,3,173,176,[[436,1,1,173,174],[477,2,2,174,176]]],[18,11,11,176,187,[[495,1,1,176,177],[545,1,1,177,178],[546,1,1,178,179],[555,1,1,179,180],[576,1,1,180,181],[582,2,2,181,183],[583,2,2,183,185],[612,1,1,185,186],[613,1,1,186,187]]],[20,2,2,187,189,[[659,1,1,187,188],[670,1,1,188,189]]],[22,5,4,189,193,[[719,2,1,189,190],[720,1,1,190,191],[721,1,1,191,192],[728,1,1,192,193]]],[23,10,10,193,203,[[751,2,2,193,195],[760,1,1,195,196],[761,1,1,196,197],[767,1,1,197,198],[768,1,1,198,199],[774,1,1,199,200],[780,1,1,200,201],[783,1,1,201,202],[784,1,1,202,203]]],[25,6,6,203,209,[[817,1,1,203,204],[821,3,3,204,207],[837,1,1,207,208],[840,1,1,208,209]]],[26,2,2,209,211,[[850,2,2,209,211]]],[27,2,2,211,213,[[863,1,1,211,212],[874,1,1,212,213]]],[38,1,1,213,214,[[926,1,1,213,214]]]],[61,67,356,384,431,509,527,540,623,644,664,692,777,819,823,824,834,839,865,1015,1023,1137,1145,1170,1193,1240,1314,1379,1380,1404,1411,1431,1437,1442,1575,1809,1852,2438,2462,3856,3857,3858,3859,4049,4711,4751,4950,4987,4988,4991,5190,5687,5865,5866,6130,6136,6137,6162,6168,6169,6178,6183,6187,6190,6191,6200,6215,6219,6221,6279,6300,6370,6371,6384,6389,6390,6392,6393,6394,6402,6424,6430,6433,6479,6480,6484,6522,6524,6574,6648,6663,6758,6918,6928,6931,6984,7090,7116,7167,7189,7197,7203,7216,7217,7414,7680,7703,7778,7797,7936,7989,7990,8294,8873,8888,8889,8890,9062,9089,9092,9126,9127,9187,9226,9233,9408,9808,9864,9876,9944,10039,10040,10127,10200,10509,10510,10518,10519,10521,10959,11051,11154,11171,11172,11373,11376,11437,11458,11627,11689,11740,11760,11785,11899,11943,11944,11974,12010,12096,12104,12184,12271,12308,12316,12490,12491,12492,12671,12733,12742,12757,12770,12819,12890,13933,13937,14131,14911,14956,15159,15506,15638,15650,15666,15692,16187,16217,17332,17530,18453,18504,18508,18668,19126,19133,19351,19361,19523,19534,19670,19874,19933,19946,20781,20906,20907,20920,21387,21471,21753,21754,22113,22277,23108]]],["gavest",[21,19,[[0,1,1,0,1,[[2,1,1,0,1]]],[10,3,3,1,4,[[298,3,3,1,4]]],[13,4,4,4,8,[[372,3,3,4,7],[386,1,1,7,8]]],[15,11,9,8,17,[[421,11,9,8,17]]],[18,2,2,17,19,[[498,1,1,17,18],[551,1,1,18,19]]]],[67,9019,9025,9033,11307,11313,11320,11594,12524,12526,12531,12533,12535,12538,12541,12546,12547,14195,15062]]],["gift",[1,1,[[3,1,1,0,1,[[124,1,1,0,1]]]],[3958]]],["give",[383,363,[[0,44,39,0,39,[[12,2,2,0,2],[14,2,2,2,4],[16,2,2,4,6],[22,7,4,6,10],[23,1,1,10,11],[25,1,1,11,12],[26,1,1,12,13],[27,4,4,13,17],[28,3,3,17,20],[29,3,2,20,22],[33,6,5,22,27],[34,1,1,27,28],[37,4,4,28,32],[41,2,2,32,34],[42,1,1,34,35],[44,1,1,35,36],[46,3,3,36,39]]],[1,24,23,39,62,[[51,1,1,39,40],[52,1,1,40,41],[54,2,2,41,43],[55,3,2,43,45],[59,1,1,45,46],[61,1,1,46,47],[62,2,2,47,49],[65,1,1,49,50],[70,3,3,50,53],[71,3,3,53,56],[73,1,1,56,57],[79,3,3,57,60],[81,1,1,60,61],[82,1,1,61,62]]],[2,14,14,62,76,[[94,1,1,62,63],[95,1,1,63,64],[96,1,1,64,65],[103,1,1,65,66],[104,1,1,66,67],[109,1,1,67,68],[111,1,1,68,69],[112,2,2,69,71],[114,3,3,71,74],[115,2,2,74,76]]],[3,30,28,76,104,[[119,1,1,76,77],[121,1,1,77,78],[123,1,1,78,79],[126,1,1,79,80],[127,3,3,80,83],[129,1,1,83,84],[130,1,1,84,85],[131,2,2,85,87],[134,1,1,87,88],[135,1,1,88,89],[137,1,1,89,90],[138,1,1,90,91],[140,1,1,91,92],[141,1,1,92,93],[147,2,2,93,95],[148,1,1,95,96],[150,1,1,96,97],[151,9,7,97,104]]],[4,40,39,104,143,[[153,5,5,104,109],[154,4,4,109,113],[156,1,1,113,114],[157,1,1,114,115],[158,2,2,115,117],[159,2,2,117,119],[162,1,1,119,120],[163,3,3,120,123],[166,1,1,123,124],[167,1,1,124,125],[168,1,1,125,126],[170,2,2,126,128],[171,2,1,128,129],[172,1,1,129,130],[174,2,2,130,132],[176,2,2,132,134],[178,1,1,134,135],[180,3,3,135,138],[182,1,1,138,139],[183,1,1,139,140],[184,2,2,140,142],[186,1,1,142,143]]],[5,11,11,143,154,[[187,2,2,143,145],[188,1,1,145,146],[191,1,1,146,147],[194,1,1,147,148],[195,1,1,148,149],[200,1,1,149,150],[201,1,1,150,151],[203,1,1,151,152],[207,2,2,152,154]]],[6,12,12,154,166,[[211,1,1,154,155],[218,3,3,155,158],[224,2,2,158,160],[226,1,1,160,161],[227,1,1,161,162],[231,4,4,162,166]]],[7,1,1,166,167,[[235,1,1,166,167]]],[8,23,22,167,189,[[236,2,1,167,168],[237,3,3,168,171],[241,1,1,171,172],[243,2,2,172,174],[244,1,1,174,175],[245,1,1,175,176],[252,4,4,176,180],[253,2,2,180,182],[256,2,2,182,184],[257,1,1,184,185],[260,2,2,185,187],[262,1,1,187,188],[265,1,1,188,189]]],[9,3,3,189,192,[[278,1,1,189,190],[287,1,1,190,191],[290,1,1,191,192]]],[10,23,21,192,213,[[292,1,1,192,193],[293,2,2,193,195],[295,1,1,195,196],[298,4,4,196,200],[301,4,4,200,204],[303,2,2,204,206],[305,1,1,206,207],[308,1,1,207,208],[311,7,5,208,213]]],[11,6,6,213,219,[[317,1,1,213,214],[320,1,1,214,215],[322,1,1,215,216],[327,1,1,216,217],[334,1,1,217,218],[335,1,1,218,219]]],[12,6,5,219,224,[[353,1,1,219,220],[358,2,1,220,221],[359,2,2,221,223],[366,1,1,223,224]]],[13,10,10,224,234,[[367,2,2,224,226],[368,1,1,226,227],[387,1,1,227,228],[391,1,1,228,229],[396,1,1,229,230],[397,3,3,230,233],[401,1,1,233,234]]],[14,5,3,234,237,[[411,5,3,234,237]]],[15,6,6,237,243,[[414,1,1,237,238],[416,1,1,238,239],[421,2,2,239,241],[422,1,1,241,242],[425,1,1,242,243]]],[16,2,2,243,245,[[426,2,2,243,245]]],[17,1,1,245,246,[[437,1,1,245,246]]],[18,14,14,246,260,[[479,1,1,246,247],[505,1,1,247,248],[506,1,1,248,249],[514,1,1,249,250],[526,1,1,250,251],[528,1,1,251,252],[555,1,1,252,253],[561,1,1,253,254],[562,1,1,254,255],[563,1,1,255,256],[581,1,1,256,257],[588,1,1,257,258],[592,1,1,258,259],[609,1,1,259,260]]],[19,9,9,260,269,[[628,1,1,260,261],[630,1,1,261,262],[631,2,2,262,264],[632,1,1,264,265],[650,1,1,265,266],[656,2,2,266,268],[657,1,1,268,269]]],[20,1,1,269,270,[[660,1,1,269,270]]],[21,3,3,270,273,[[672,1,1,270,271],[677,2,2,271,273]]],[22,19,18,273,291,[[681,1,1,273,274],[685,1,1,274,275],[708,2,2,275,277],[714,1,1,277,278],[719,1,1,278,279],[720,2,2,279,281],[721,2,2,281,283],[723,1,1,283,284],[726,1,1,284,285],[727,2,2,285,287],[733,1,1,287,288],[734,2,1,288,289],[739,1,1,289,290],[740,1,1,290,291]]],[23,26,26,291,317,[[747,2,2,291,293],[755,1,1,293,294],[758,2,2,294,296],[759,1,1,296,297],[761,2,2,297,299],[763,1,1,299,300],[764,2,2,300,302],[766,1,1,302,303],[768,1,1,303,304],[769,1,1,304,305],[770,1,1,305,306],[773,2,2,306,308],[774,1,1,308,309],[776,3,3,309,312],[778,2,2,312,314],[781,1,1,314,315],[782,1,1,315,316],[789,1,1,316,317]]],[24,1,1,317,318,[[798,1,1,317,318]]],[25,32,30,318,348,[[808,1,1,318,319],[812,3,2,319,321],[817,6,6,321,327],[818,1,1,327,328],[821,2,2,328,330],[822,2,2,330,332],[824,2,2,332,334],[826,1,1,334,335],[830,1,1,335,336],[834,1,1,336,337],[837,2,1,337,338],[840,2,2,338,340],[844,1,1,340,341],[845,2,2,341,343],[846,1,1,343,344],[847,2,2,344,346],[848,2,2,346,348]]],[26,4,4,348,352,[[850,1,1,348,349],[857,1,1,349,350],[860,2,2,350,352]]],[27,4,3,352,355,[[863,2,2,352,354],[870,2,1,354,355]]],[28,1,1,355,356,[[877,1,1,355,356]]],[32,2,2,356,358,[[893,1,1,356,357],[898,1,1,357,358]]],[36,1,1,358,359,[[910,1,1,358,359]]],[37,4,3,359,362,[[913,1,1,359,360],[918,2,1,360,361],[920,1,1,361,362]]],[38,1,1,362,363,[[926,1,1,362,363]]]],[333,335,362,367,405,413,575,580,582,584,632,696,755,777,786,793,795,814,821,822,858,861,988,989,991,992,1001,1023,1128,1135,1136,1137,1277,1279,1304,1376,1436,1439,1444,1563,1600,1639,1642,1659,1663,1802,1841,1872,1878,1955,2100,2107,2109,2130,2142,2143,2189,2394,2395,2396,2451,2474,2846,2854,2911,3145,3182,3342,3383,3412,3440,3471,3506,3507,3528,3530,3740,3799,3855,4017,4037,4042,4045,4077,4116,4155,4174,4285,4292,4356,4393,4459,4483,4693,4694,4747,4829,4847,4849,4851,4852,4853,4858,4859,4900,4912,4917,4927,4931,4943,4947,4957,4966,5042,5084,5096,5109,5114,5124,5197,5217,5222,5229,5311,5333,5352,5387,5388,5414,5443,5489,5499,5526,5540,5569,5622,5623,5676,5728,5735,5807,5810,5843,5853,5857,5881,5940,6020,6061,6199,6221,6279,6383,6424,6524,6725,6734,6743,6921,6922,6954,6990,7103,7109,7120,7124,7202,7223,7250,7256,7268,7336,7383,7384,7399,7422,7628,7643,7664,7665,7693,7697,7775,7781,7794,7869,7872,7935,8000,8297,8586,8715,8787,8821,8842,8884,9017,9021,9024,9035,9119,9121,9143,9144,9191,9192,9253,9364,9453,9455,9457,9458,9466,9669,9746,9808,9945,10150,10200,10838,10957,10973,10976,11183,11201,11206,11221,11631,11713,11839,11858,11869,11873,11978,12245,12246,12249,12315,12363,12519,12526,12579,12696,12721,12722,12895,13953,14303,14319,14454,14655,14707,15133,15270,15283,15300,15598,15799,15831,16155,16404,16483,16492,16499,16526,17070,17239,17241,17259,17359,17567,17639,17640,17711,17796,18237,18240,18338,18478,18486,18488,18509,18525,18564,18625,18642,18644,18750,18758,18846,18861,19017,19021,19231,19306,19315,19328,19360,19367,19414,19426,19427,19479,19531,19565,19596,19641,19646,19683,19750,19753,19770,19821,19822,19895,19911,20045,20350,20598,20672,20674,20795,20798,20800,20801,20803,20823,20840,20923,20937,20955,20971,21038,21053,21093,21204,21307,21385,21452,21459,21591,21627,21629,21638,21671,21672,21693,21702,21749,21974,22053,22057,22110,22120,22222,22328,22593,22655,22864,22919,22988,23017,23105]]],["given",[235,231,[[0,17,16,0,16,[[0,1,1,0,1],[8,1,1,1,2],[14,2,2,2,4],[15,1,1,4,5],[19,1,1,5,6],[23,1,1,6,7],[26,1,1,7,8],[28,1,1,8,9],[29,3,2,9,11],[30,1,1,11,12],[37,1,1,12,13],[42,1,1,13,14],[47,2,2,14,16]]],[1,6,6,16,22,[[54,2,2,16,18],[65,2,2,18,20],[70,1,1,20,21],[80,1,1,21,22]]],[2,8,8,22,30,[[95,1,1,22,23],[96,2,2,23,25],[99,2,2,25,27],[106,1,1,27,28],[108,1,1,28,29],[109,1,1,29,30]]],[3,20,19,30,49,[[132,1,1,30,31],[134,9,8,31,39],[136,2,2,39,41],[137,1,1,41,42],[142,2,2,42,44],[143,1,1,44,45],[148,3,3,45,48],[149,1,1,48,49]]],[4,25,24,49,73,[[154,2,2,49,51],[155,4,3,51,54],[160,1,1,54,55],[161,1,1,55,56],[164,2,2,56,58],[165,1,1,58,59],[168,1,1,59,60],[172,1,1,60,61],[178,7,7,61,68],[180,4,4,68,72],[181,1,1,72,73]]],[5,17,17,73,90,[[187,2,2,73,75],[188,2,2,75,77],[192,2,2,77,79],[194,1,1,79,80],[200,1,1,80,81],[201,1,1,81,82],[203,1,1,82,83],[204,1,1,83,84],[208,1,1,84,85],[209,3,3,85,88],[210,2,2,88,90]]],[6,3,3,90,93,[[211,1,1,90,91],[225,1,1,91,92],[228,1,1,92,93]]],[8,8,7,93,100,[[236,1,1,93,94],[250,1,1,94,95],[253,2,1,95,96],[257,1,1,96,97],[260,1,1,97,98],[263,1,1,98,99],[265,1,1,99,100]]],[9,5,5,100,105,[[270,1,1,100,101],[275,1,1,101,102],[284,1,1,102,103],[288,2,2,103,105]]],[10,14,14,105,119,[[291,1,1,105,106],[292,1,1,106,107],[293,3,3,107,110],[295,1,1,110,111],[298,2,2,111,113],[299,4,4,113,117],[303,1,1,117,118],[308,1,1,118,119]]],[11,4,4,119,123,[[317,2,2,119,121],[335,1,1,121,122],[337,1,1,122,123]]],[12,4,4,123,127,[[342,1,1,123,124],[365,1,1,124,125],[366,2,2,125,127]]],[13,7,7,127,134,[[368,1,1,127,128],[372,1,1,128,129],[373,1,1,129,130],[391,1,1,130,131],[398,1,1,131,132],[400,1,1,132,133],[402,1,1,133,134]]],[14,3,3,134,137,[[403,1,1,134,135],[409,1,1,135,136],[411,1,1,136,137]]],[15,3,3,137,140,[[414,1,1,137,138],[422,1,1,138,139],[425,1,1,139,140]]],[16,13,13,140,153,[[427,3,3,140,143],[428,3,3,143,146],[429,1,1,146,147],[430,1,1,147,148],[432,1,1,148,149],[433,3,3,149,152],[434,1,1,152,153]]],[17,7,7,153,160,[[438,1,1,153,154],[444,1,1,154,155],[450,1,1,155,156],[459,1,1,156,157],[472,1,1,157,158],[473,1,1,158,159],[474,1,1,159,160]]],[18,14,14,160,174,[[495,2,2,160,162],[498,1,1,162,163],[521,1,1,163,164],[537,1,1,164,165],[538,1,1,165,166],[549,1,1,166,167],[555,1,1,167,168],[556,1,1,168,169],[588,1,1,169,170],[589,1,1,170,171],[592,1,1,171,172],[597,1,1,172,173],[601,1,1,173,174]]],[20,6,6,174,180,[[659,1,1,174,175],[661,1,1,175,176],[663,1,1,176,177],[664,1,1,177,178],[667,1,1,178,179],[670,1,1,179,180]]],[22,9,9,180,189,[[686,1,1,180,181],[687,1,1,181,182],[711,1,1,182,183],[713,1,1,183,184],[715,1,1,184,185],[721,1,1,185,186],[725,1,1,186,187],[728,1,1,187,188],[733,1,1,188,189]]],[23,16,16,189,205,[[752,1,1,189,190],[757,1,1,190,191],[765,1,1,191,192],[769,1,1,192,193],[771,2,2,193,195],[772,1,1,195,196],[776,4,4,196,200],[779,1,1,200,201],[782,1,1,201,202],[783,1,1,202,203],[794,1,1,203,204],[796,1,1,204,205]]],[24,2,2,205,207,[[797,1,1,205,206],[801,1,1,206,207]]],[25,17,17,207,224,[[805,1,1,207,208],[812,1,1,208,209],[816,1,1,209,210],[817,2,2,210,212],[818,1,1,212,213],[819,2,2,213,215],[821,1,1,215,216],[822,1,1,216,217],[829,1,1,217,218],[830,2,2,218,220],[834,1,1,220,221],[836,1,1,221,222],[838,1,1,222,223],[848,1,1,223,224]]],[26,2,2,224,226,[[857,1,1,224,225],[860,1,1,225,226]]],[27,1,1,226,227,[[863,1,1,226,227]]],[28,2,2,227,229,[[877,1,1,227,228],[878,1,1,228,229]]],[29,2,2,229,231,[[882,1,1,229,230],[887,1,1,230,231]]]],[28,208,363,378,386,511,626,764,828,836,848,882,1133,1313,1460,1473,1648,1650,1962,1976,2081,2426,2866,2913,2915,2991,2994,3246,3301,3321,4208,4263,4265,4268,4269,4276,4278,4281,4283,4323,4335,4369,4543,4551,4566,4723,4725,4727,4813,4957,4962,4993,4994,4995,5147,5180,5255,5261,5284,5359,5441,5575,5576,5577,5578,5579,5580,5581,5642,5643,5663,5664,5683,5854,5864,5878,5883,5951,5965,6003,6190,6221,6289,6296,6433,6473,6475,6476,6489,6509,6524,6935,7003,7239,7588,7695,7800,7888,7959,8001,8130,8236,8489,8638,8643,8765,8791,8822,8828,8829,8885,9021,9041,9058,9063,9064,9067,9189,9367,9648,9664,10176,10252,10429,11148,11167,11178,11223,11309,11344,11713,11904,11951,12016,12018,12179,12250,12314,12578,12681,12727,12733,12737,12758,12761,12762,12770,12782,12810,12824,12830,12831,12848,12924,13075,13222,13459,13779,13829,13853,14153,14158,14193,14582,14811,14824,15015,15137,15187,15798,15812,15846,16077,16108,17328,17369,17416,17419,17484,17534,17825,17835,18295,18322,18362,18533,18605,18666,18744,19166,19286,19450,19539,19601,19602,19632,19753,19755,19756,19774,19838,19913,19940,20181,20310,20321,20448,20544,20670,20760,20779,20796,20843,20856,20865,20910,20955,21182,21188,21203,21304,21356,21422,21690,21973,22047,22117,22334,22346,22416,22510]]],["givest",[6,6,[[4,2,2,0,2,[[167,2,2,0,2]]],[17,1,1,2,3,[[470,1,1,2,3]]],[18,2,2,3,5,[[581,1,1,3,4],[622,1,1,4,5]]],[25,1,1,5,6,[[817,1,1,5,6]]]],[5328,5329,13727,15599,16335,20796]]],["giveth",[76,75,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[65,1,1,1,2],[69,1,1,2,3]]],[2,3,3,3,6,[[109,2,2,3,5],[116,1,1,5,6]]],[3,1,1,6,7,[[121,1,1,6,7]]],[4,34,34,7,41,[[154,1,1,7,8],[156,3,3,8,11],[157,1,1,11,12],[160,1,1,12,13],[161,1,1,13,14],[163,2,2,14,16],[164,2,2,16,18],[167,2,2,18,20],[168,3,3,20,23],[169,2,2,23,25],[170,1,1,25,26],[171,4,4,26,30],[173,2,2,30,32],[176,2,2,32,34],[177,2,2,34,36],[178,2,2,36,38],[179,2,2,38,40],[180,1,1,40,41]]],[5,2,2,41,43,[[187,2,2,41,43]]],[6,1,1,43,44,[[231,1,1,43,44]]],[17,4,4,44,48,[[440,1,1,44,45],[470,1,1,45,46],[471,2,2,46,48]]],[18,8,8,48,56,[[514,1,1,48,49],[545,1,1,49,50],[604,1,1,50,51],[613,1,1,51,52],[621,1,1,52,53],[623,1,1,53,54],[624,2,2,54,56]]],[19,10,10,56,66,[[629,1,1,56,57],[630,1,1,57,58],[640,1,1,58,59],[648,1,1,59,60],[649,2,2,60,62],[650,1,1,62,63],[653,1,1,63,64],[655,1,1,64,65],[658,1,1,65,66]]],[20,4,3,66,69,[[660,2,1,66,67],[663,1,1,67,68],[666,1,1,68,69]]],[22,2,2,69,71,[[718,1,1,69,70],[720,1,1,70,71]]],[23,3,3,71,74,[[749,1,1,71,72],[766,1,1,72,73],[775,1,1,73,74]]],[24,1,1,74,75,[[799,1,1,74,75]]]],[1494,1976,2063,3320,3322,3579,3802,4967,5005,5025,5044,5069,5155,5163,5225,5239,5241,5249,5323,5326,5347,5360,5362,5366,5378,5393,5407,5408,5416,5420,5448,5470,5528,5529,5562,5566,5567,5568,5587,5588,5619,5862,5866,7120,12961,13730,13742,13767,14471,14935,16123,16221,16315,16348,16360,16367,16439,16489,16762,17010,17024,17031,17075,17149,17223,17299,17359,17415,17473,18449,18485,19082,19467,19726,20384]]],["giving",[5,5,[[4,2,2,0,2,[[162,1,1,0,1],[173,1,1,1,2]]],[7,1,1,2,3,[[232,1,1,2,3]]],[10,1,1,3,4,[[295,1,1,3,4]]],[13,1,1,4,5,[[372,1,1,4,5]]]],[5204,5464,7133,8887,11305]]],["gotten",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13519]]],["grant",[8,8,[[2,1,1,0,1,[[114,1,1,0,1]]],[7,1,1,1,2,[[232,1,1,1,2]]],[8,1,1,2,3,[[236,1,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[13,1,1,4,5,[[378,1,1,4,5]]],[15,1,1,5,6,[[413,1,1,5,6]]],[17,1,1,6,7,[[441,1,1,6,7]]],[18,1,1,7,8,[[562,1,1,7,8]]]],[3493,7136,7229,10956,11444,12307,12986,15278]]],["granted",[9,9,[[13,1,1,0,1,[[367,1,1,0,1]]],[14,1,1,1,2,[[409,1,1,1,2]]],[15,1,1,2,3,[[414,1,1,2,3]]],[16,5,5,3,8,[[430,1,1,3,4],[432,1,1,4,5],[433,1,1,5,6],[434,2,2,6,8]]],[19,1,1,8,9,[[637,1,1,8,9]]]],[11206,12179,12315,12785,12809,12828,12846,12847,16680]]],["had",[2,2,[[17,1,1,0,1,[[466,1,1,0,1]]],[18,1,1,1,2,[[532,1,1,1,2]]]],[13619,14738]]],["hang",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2267]]],["laid",[8,8,[[0,1,1,0,1,[[14,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]],[11,1,1,2,3,[[317,1,1,2,3]]],[13,1,1,3,4,[[397,1,1,3,4]]],[18,1,1,4,5,[[596,1,1,4,5]]],[25,2,2,5,7,[[805,1,1,5,6],[833,1,1,6,7]]],[37,1,1,7,8,[[913,1,1,7,8]]]],[370,5572,9670,11860,16008,20534,21277,22921]]],["lay",[16,16,[[4,3,3,0,3,[[159,1,1,0,1],[163,1,1,1,2],[173,1,1,2,3]]],[8,1,1,3,4,[[241,1,1,3,4]]],[10,1,1,4,5,[[308,1,1,4,5]]],[20,1,1,5,6,[[665,1,1,5,6]]],[22,1,1,6,7,[[700,1,1,6,7]]],[23,1,1,7,8,[[750,1,1,7,8]]],[25,7,7,8,15,[[804,1,1,8,9],[805,3,3,9,12],[829,1,1,12,13],[837,1,1,13,14],[838,1,1,14,15]]],[31,1,1,15,16,[[889,1,1,15,16]]]],[5126,5233,5455,7339,9364,17431,18074,19110,20522,20530,20531,20537,21174,21388,21403,22545]]],["leave",[2,2,[[3,1,1,0,1,[[138,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[4388,17354]]],["left",[1,1,[[23,1,1,0,1,[[784,1,1,0,1]]]],[19952]]],["lend",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3506]]],["let",[5,5,[[1,1,1,0,1,[[52,1,1,0,1]]],[2,1,1,1,2,[[107,1,1,1,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[13,2,2,3,5,[[382,1,1,3,4],[386,1,1,4,5]]]],[1598,3272,7678,11510,11597]]],["made",[35,35,[[0,2,2,0,2,[[16,1,1,0,1],[40,1,1,1,2]]],[1,2,2,2,4,[[56,1,1,2,3],[67,1,1,3,4]]],[2,1,1,4,5,[[115,1,1,4,5]]],[4,1,1,5,6,[[153,1,1,5,6]]],[5,1,1,6,7,[[195,1,1,6,7]]],[10,4,4,7,11,[[296,1,1,7,8],[300,1,1,8,9],[304,1,1,9,10],[306,1,1,10,11]]],[12,1,1,11,12,[[349,1,1,11,12]]],[13,7,7,12,19,[[367,1,1,12,13],[368,1,1,13,14],[375,2,2,14,16],[390,1,1,16,17],[391,1,1,17,18],[401,1,1,18,19]]],[15,1,1,19,20,[[425,1,1,19,20]]],[18,4,4,20,24,[[516,1,1,20,21],[546,1,1,21,22],[583,1,1,22,23],[625,1,1,23,24]]],[22,2,2,24,26,[[729,1,1,24,25],[731,1,1,25,26]]],[23,2,2,26,28,[[745,1,1,26,27],[773,1,1,27,28]]],[24,2,2,28,30,[[797,1,1,28,29],[798,1,1,29,30]]],[25,3,3,30,33,[[804,2,2,30,32],[823,1,1,32,33]]],[30,1,1,33,34,[[888,1,1,33,34]]],[38,1,1,34,35,[[926,1,1,34,35]]]],[402,1238,1686,2024,3570,4907,6064,8902,9106,9225,9285,10738,11209,11222,11372,11391,11686,11720,11991,12697,14517,14946,15697,16377,18685,18720,18964,19661,20323,20339,20511,20519,20980,22512,23112]]],["make",[47,47,[[0,5,5,0,5,[[8,1,1,0,1],[16,3,3,1,4],[47,1,1,4,5]]],[2,2,2,5,7,[[108,1,1,5,6],[111,1,1,6,7]]],[3,2,2,7,9,[[121,1,1,7,8],[130,1,1,8,9]]],[4,3,3,9,12,[[168,1,1,9,10],[178,1,1,10,11],[180,1,1,11,12]]],[5,1,1,12,13,[[193,1,1,12,13]]],[10,1,1,13,14,[[299,1,1,13,14]]],[12,1,1,14,15,[[354,1,1,14,15]]],[13,2,2,15,17,[[373,1,1,15,16],[374,1,1,16,17]]],[14,1,1,17,18,[[412,1,1,17,18]]],[18,1,1,18,19,[[566,1,1,18,19]]],[23,11,11,19,30,[[749,1,1,19,20],[753,1,1,20,21],[759,1,1,21,22],[764,1,1,22,23],[769,1,1,23,24],[770,1,1,24,25],[773,1,1,25,26],[778,2,2,26,28],[793,1,1,28,29],[795,1,1,29,30]]],[25,13,13,30,43,[[806,1,1,30,31],[826,2,2,31,33],[827,5,5,33,38],[831,1,1,38,39],[835,1,1,39,40],[836,2,2,40,42],[845,1,1,42,43]]],[27,1,1,43,44,[[872,1,1,43,44]]],[28,1,1,44,45,[[877,1,1,44,45]]],[32,1,1,45,46,[[898,1,1,45,46]]],[35,1,1,46,47,[[908,1,1,46,47]]]],[217,399,403,417,1455,3309,3391,3813,4112,5360,5585,5624,5995,9073,10885,11344,11355,12263,15353,19072,19186,19335,19426,19552,19578,19652,19818,19823,20142,20237,20560,21087,21096,21104,21108,21114,21119,21121,21216,21339,21347,21353,21613,22248,22330,22664,22840]]],["maketh",[2,2,[[18,1,1,0,1,[[495,1,1,0,1]]],[22,1,1,1,2,[[721,1,1,1,2]]]],[14150,18521]]],["might",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12986]]],["occupied",[3,3,[[25,3,3,0,3,[[828,3,3,0,3]]]],[21137,21140,21143]]],["offer",[2,2,[[3,1,1,0,1,[[134,1,1,0,1]]],[25,1,1,1,2,[[807,1,1,1,2]]]],[4269,20576]]],["ordained",[2,2,[[11,1,1,0,1,[[335,1,1,0,1]]],[23,1,1,1,2,[[745,1,1,1,2]]]],[10170,18951]]],["out",[4,4,[[0,1,1,0,1,[[37,1,1,0,1]]],[18,2,2,1,3,[[545,1,1,1,2],[554,1,1,2,3]]],[23,1,1,3,4,[[748,1,1,3,4]]]],[1147,14933,15110,19043]]],["over",[2,2,[[13,1,1,0,1,[[398,1,1,0,1]]],[18,1,1,1,2,[[595,1,1,1,2]]]],[11886,15887]]],["oversight",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12675]]],["paid",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22534]]],["pay",[2,2,[[1,2,2,0,2,[[70,2,2,0,2]]]],[2096,2099]]],["perform",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22684]]],["place",[3,3,[[22,1,1,0,1,[[724,1,1,0,1]]],[25,1,1,1,2,[[838,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[18599,21423,22067]]],["placed",[1,1,[[13,1,1,0,1,[[383,1,1,0,1]]]],[11525]]],["plant",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18470]]],["planted",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20830]]],["pour",[1,1,[[2,1,1,0,1,[[103,1,1,0,1]]]],[3129]]],["presented",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20923]]],["print",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3309]]],["pulled",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22973]]],["put",[155,151,[[0,5,5,0,5,[[38,2,2,0,2],[39,1,1,2,3],[40,2,2,3,5]]],[1,27,26,5,31,[[54,1,1,5,6],[65,1,1,6,7],[74,2,2,7,9],[75,1,1,9,10],[76,1,1,10,11],[77,3,3,11,14],[78,4,4,14,18],[79,4,3,18,21],[80,1,1,21,22],[83,1,1,22,23],[84,1,1,23,24],[85,2,2,24,26],[88,3,3,26,29],[89,2,2,29,31]]],[2,26,26,31,57,[[90,1,1,31,32],[91,2,2,32,34],[93,5,5,34,39],[94,1,1,39,40],[97,5,5,40,45],[98,1,1,45,46],[99,1,1,46,47],[100,1,1,47,48],[103,6,6,48,54],[105,1,1,54,55],[108,1,1,55,56],[113,1,1,56,57]]],[3,18,16,57,73,[[120,7,5,57,62],[121,2,2,62,64],[122,2,2,64,66],[131,1,1,66,67],[132,4,4,67,71],[135,1,1,71,72],[143,1,1,72,73]]],[4,4,4,73,77,[[154,1,1,73,74],[170,1,1,74,75],[175,1,1,75,76],[180,1,1,76,77]]],[5,1,1,77,78,[[192,1,1,77,78]]],[6,1,1,78,79,[[217,1,1,78,79]]],[8,1,1,79,80,[[252,1,1,79,80]]],[9,1,1,80,81,[[286,1,1,80,81]]],[10,10,10,81,91,[[292,2,2,81,83],[295,1,1,83,84],[297,1,1,84,85],[300,2,2,85,87],[302,3,3,87,90],[312,1,1,90,91]]],[11,3,3,91,94,[[324,1,1,91,92],[328,2,2,92,94]]],[13,18,17,94,111,[[368,1,1,94,95],[369,2,1,95,96],[370,1,1,96,97],[371,2,2,97,99],[375,2,2,99,101],[376,2,2,101,103],[377,1,1,103,104],[382,1,1,104,105],[383,1,1,105,106],[384,1,1,106,107],[388,1,1,107,108],[389,1,1,108,109],[400,1,1,109,110],[402,1,1,110,111]]],[14,2,2,111,113,[[403,1,1,111,112],[409,1,1,112,113]]],[15,2,2,113,115,[[414,1,1,113,114],[419,1,1,114,115]]],[18,3,3,115,118,[[481,1,1,115,116],[517,1,1,116,117],[555,1,1,117,118]]],[22,1,1,118,119,[[720,1,1,118,119]]],[23,11,11,119,130,[[745,1,1,119,120],[764,1,1,120,121],[771,1,1,121,122],[772,1,1,122,123],[773,1,1,123,124],[776,2,2,124,126],[781,3,3,126,129],[796,1,1,129,130]]],[25,21,21,130,151,[[804,1,1,130,131],[805,1,1,131,132],[811,1,1,132,133],[812,1,1,133,134],[815,1,1,134,135],[817,2,2,135,137],[820,1,1,137,138],[824,1,1,138,139],[830,1,1,139,140],[831,2,2,140,142],[833,1,1,142,143],[837,2,2,143,145],[838,3,3,145,148],[839,1,1,148,149],[844,1,1,149,150],[846,1,1,150,151]]]],[1153,1169,1175,1205,1237,1653,1980,2207,2211,2270,2277,2318,2320,2323,2339,2348,2353,2356,2388,2400,2418,2426,2529,2565,2567,2568,2681,2682,2684,2714,2737,2752,2763,2777,2802,2813,2820,2825,2829,2841,2924,2925,2932,2940,2941,2962,2978,3035,3125,3128,3136,3139,3140,3145,3219,3295,3453,3749,3750,3753,3755,3757,3807,3809,3841,3842,4191,4201,4211,4212,4240,4306,4574,4963,5402,5524,5659,5973,6710,7656,8557,8775,8805,8881,8985,9096,9103,9155,9160,9180,9503,9859,9977,9980,11225,11245,11252,11269,11278,11380,11387,11399,11404,11425,11519,11542,11564,11655,11667,11943,12000,12023,12200,12319,12425,13972,14528,15179,18481,18955,19424,19598,19632,19661,19745,19771,19878,19889,19892,20287,20527,20538,20640,20674,20734,20773,20774,20890,21049,21187,21217,21229,21273,21385,21386,21403,21411,21416,21429,21592,21649]]],["puttest",[1,1,[[11,1,1,0,1,[[330,1,1,0,1]]]],[10038]]],["putteth",[3,3,[[1,1,1,0,1,[[79,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]],[32,1,1,2,3,[[895,1,1,2,3]]]],[2415,20383,22613]]],["putting",[1,1,[[2,1,1,0,1,[[105,1,1,0,1]]]],[3222]]],["recompense",[7,7,[[25,7,7,0,7,[[808,2,2,0,2],[810,1,1,2,3],[812,1,1,3,4],[817,1,1,4,5],[818,1,1,5,6],[824,1,1,6,7]]]],[20580,20581,20632,20676,20805,20844,21056]]],["recompensed",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[21007]]],["recompensing",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11305]]],["render",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11312]]],["requite",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14055]]],["restored",[1,1,[[13,1,1,0,1,[[374,1,1,0,1]]]],[11348]]],["send",[6,6,[[4,1,1,0,1,[[163,1,1,0,1]]],[8,1,1,1,2,[[247,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[11,1,1,3,4,[[331,1,1,3,4]]],[13,1,1,4,5,[[372,1,1,4,5]]],[22,1,1,5,6,[[715,1,1,5,6]]]],[5223,7477,9342,10068,11309,18359]]],["sendeth",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9331]]],["sent",[4,4,[[1,1,1,0,1,[[58,1,1,0,1]]],[8,1,1,1,2,[[247,1,1,1,2]]],[9,1,1,2,3,[[290,1,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]]],[1765,7478,8707,10948]]],["set",[79,79,[[0,4,4,0,4,[[0,1,1,0,1],[17,1,1,1,2],[29,1,1,2,3],[40,1,1,3,4]]],[1,1,1,4,5,[[74,1,1,4,5]]],[2,3,3,5,8,[[106,1,1,5,6],[115,2,2,6,8]]],[4,8,8,8,16,[[156,1,1,8,9],[163,2,2,9,11],[169,1,1,11,12],[180,1,1,12,13],[182,3,3,13,16]]],[8,1,1,16,17,[[247,1,1,16,17]]],[10,6,6,17,23,[[295,1,1,17,18],[296,1,1,18,19],[297,2,2,19,21],[299,1,1,21,22],[300,1,1,22,23]]],[11,4,4,23,27,[[316,2,2,23,25],[324,1,1,25,26],[330,1,1,26,27]]],[12,1,1,27,28,[[359,1,1,27,28]]],[13,9,9,28,37,[[370,2,2,28,30],[372,1,1,30,31],[373,1,1,31,32],[375,1,1,32,33],[383,1,1,33,34],[386,1,1,34,35],[390,1,1,35,36],[398,1,1,36,37]]],[15,3,3,37,40,[[414,1,1,37,38],[417,1,1,38,39],[421,1,1,39,40]]],[16,1,1,40,41,[[431,1,1,40,41]]],[18,1,1,41,42,[[485,1,1,41,42]]],[20,1,1,42,43,[[668,1,1,42,43]]],[22,2,2,43,45,[[705,1,1,43,44],[714,1,1,44,45]]],[23,7,7,45,52,[[745,1,1,45,46],[750,1,1,46,47],[753,1,1,47,48],[765,1,1,48,49],[770,1,1,49,50],[779,1,1,50,51],[788,1,1,51,52]]],[25,25,25,52,77,[[805,2,2,52,54],[808,1,1,54,55],[813,1,1,55,56],[815,1,1,56,57],[817,2,2,57,59],[818,1,1,59,60],[820,1,1,60,61],[822,1,1,61,62],[824,2,2,62,64],[827,2,2,64,66],[829,2,2,66,68],[831,3,3,68,71],[833,3,3,71,74],[834,2,2,74,76],[838,1,1,76,77]]],[26,2,2,77,79,[[858,1,1,77,78],[859,1,1,78,79]]]],[16,432,870,1236,2225,3245,3535,3541,5012,5234,5240,5379,5612,5709,5723,5727,7473,8883,8915,8950,8973,9057,9088,9646,9647,9859,10047,10983,11253,11256,11295,11343,11372,11525,11609,11685,11881,12313,12389,12548,12801,14013,17499,18155,18338,18961,19116,19188,19448,19576,19828,20020,20531,20532,20597,20686,20739,20780,20781,20847,20889,20959,21031,21032,21109,21120,21159,21171,21212,21218,21220,21256,21271,21273,21282,21287,21423,21998,22030]]],["setting",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21580]]],["shew",[4,4,[[4,1,1,0,1,[[165,1,1,0,1]]],[23,2,2,1,3,[[760,1,1,1,2],[786,1,1,2,3]]],[28,1,1,3,4,[[877,1,1,3,4]]]],[5289,19349,19987,22341]]],["shewed",[1,1,[[4,1,1,0,1,[[158,1,1,0,1]]]],[5108]]],["shewedst",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12521]]],["sit",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7413]]],["strike",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1823]]],["suffer",[9,9,[[1,1,1,0,1,[[61,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[6,2,2,2,4,[[211,1,1,2,3],[225,1,1,3,4]]],[10,1,1,4,5,[[305,1,1,4,5]]],[17,1,1,5,6,[[444,1,1,5,6]]],[18,3,3,6,9,[[493,1,1,6,7],[532,1,1,7,8],[598,1,1,8,9]]]],[1839,6083,6543,6930,9266,13069,14102,14754,16084]]],["suffered",[7,7,[[0,2,2,0,2,[[19,1,1,0,1],[30,1,1,1,2]]],[4,1,1,2,3,[[170,1,1,2,3]]],[6,1,1,3,4,[[213,1,1,3,4]]],[8,1,1,4,5,[[259,1,1,4,5]]],[9,1,1,5,6,[[287,1,1,5,6]]],[17,1,1,6,7,[[466,1,1,6,7]]]],[501,880,5398,6596,7846,8590,13618]]],["suffereth",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14882]]],["take",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17450]]],["thrust",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5336]]],["tied",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2695]]],["took",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1282]]],["traded",[4,4,[[25,4,4,0,4,[[828,4,4,0,4]]]],[21133,21134,21135,21138]]],["turn",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5315]]],["turned",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11797]]],["up",[17,16,[[0,2,1,0,1,[[40,2,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[4,2,2,2,4,[[175,1,1,2,3],[183,1,1,3,4]]],[9,1,1,4,5,[[284,1,1,4,5]]],[13,1,1,5,6,[[396,1,1,5,6]]],[18,1,1,6,7,[[510,1,1,6,7]]],[19,1,1,7,8,[[629,1,1,7,8]]],[22,1,1,8,9,[[721,1,1,8,9]]],[23,1,1,9,10,[[766,1,1,9,10]]],[25,1,1,10,11,[[832,1,1,10,11]]],[26,2,2,11,13,[[860,1,1,11,12],[861,1,1,12,13]]],[27,1,1,13,14,[[872,1,1,13,14]]],[32,2,2,14,16,[[897,1,1,14,15],[898,1,1,15,16]]]],[1243,3525,5514,5733,8487,11834,14373,16436,18511,19474,21240,22042,22092,22248,22636,22662]]],["utter",[4,4,[[23,1,1,0,1,[[769,1,1,0,1]]],[28,2,2,1,3,[[877,1,1,1,2],[878,1,1,2,3]]],[29,1,1,3,4,[[879,1,1,3,4]]]],[19564,22322,22359,22366]]],["uttered",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[523,1,1,1,2]]],[23,2,2,2,4,[[792,1,1,2,3],[795,1,1,3,4]]],[34,1,1,4,5,[[905,1,1,4,5]]]],[8616,14620,20114,20267,22778]]],["uttereth",[3,3,[[19,1,1,0,1,[[628,1,1,0,1]]],[23,2,2,1,3,[[754,1,1,1,2],[795,1,1,2,3]]]],[16420,19214,20228]]],["were",[4,3,[[17,3,2,0,2,[[454,2,1,0,1],[464,1,1,1,2]]],[23,1,1,2,3,[[753,1,1,2,3]]]],[13320,13534,19176]]],["would",[3,3,[[17,3,3,0,3,[[446,1,1,0,1],[448,1,1,1,2],[466,1,1,2,3]]]],[13113,13158,13623]]],["wouldest",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13194]]],["yield",[11,10,[[0,2,2,0,2,[[3,1,1,0,1],[48,1,1,1,2]]],[2,4,3,2,5,[[114,1,1,2,3],[115,3,2,3,5]]],[4,1,1,5,6,[[163,1,1,5,6]]],[18,2,2,6,8,[[544,1,1,6,7],[562,1,1,7,8]]],[25,1,1,8,9,[[835,1,1,8,9]]],[28,1,1,9,10,[[877,1,1,9,10]]]],[91,1493,3488,3528,3544,5225,14899,15283,21340,22333]]],["yieldeth",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16731]]]]},{"k":"H5415","v":[["*",[7,6,[[14,3,2,0,2,[[406,1,1,0,1],[409,2,1,1,2]]],[26,4,4,2,6,[[851,1,1,2,3],[853,3,3,3,6]]]],[12123,12193,21774,21854,21862,21869]]],["bestow",[2,1,[[14,2,1,0,1,[[409,2,1,0,1]]]],[12193]]],["give",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21774]]],["giveth",[3,3,[[26,3,3,0,3,[[853,3,3,0,3]]]],[21854,21862,21869]]],["pay",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12123]]]]},{"k":"H5416","v":[["Nathan",[41,38,[[9,13,12,0,12,[[271,1,1,0,1],[273,4,4,1,5],[278,7,6,5,11],[289,1,1,11,12]]],[10,13,12,12,24,[[291,11,11,12,23],[294,2,1,23,24]]],[12,10,9,24,33,[[339,2,1,24,25],[340,1,1,25,26],[348,1,1,26,27],[351,1,1,27,28],[354,4,4,28,32],[366,1,1,32,33]]],[13,2,2,33,35,[[375,1,1,33,34],[395,1,1,34,35]]],[14,2,2,35,37,[[410,1,1,35,36],[412,1,1,36,37]]],[37,1,1,37,38,[[922,1,1,37,38]]]],[8146,8182,8183,8184,8197,8287,8291,8293,8299,8301,8311,8689,8725,8727,8728,8739,8740,8741,8749,8751,8755,8761,8762,8849,10342,10366,10711,10778,10864,10865,10866,10878,11193,11393,11816,12217,12291,23057]]]]},{"k":"H5417","v":[["Nethaneel",[14,14,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]],[12,4,4,5,9,[[339,1,1,5,6],[352,1,1,6,7],[361,1,1,7,8],[363,1,1,8,9]]],[13,2,2,9,11,[[383,1,1,9,10],[401,1,1,10,11]]],[14,1,1,11,12,[[412,1,1,11,12]]],[15,2,2,12,14,[[424,2,2,12,14]]]],[3612,3663,3868,3873,4003,10320,10815,11021,11081,11530,11975,12274,12645,12660]]]]},{"k":"H5418","v":[["Nethaniah",[20,20,[[11,2,2,0,2,[[337,2,2,0,2]]],[12,2,2,2,4,[[362,2,2,2,4]]],[13,1,1,4,5,[[383,1,1,4,5]]],[23,15,15,5,20,[[780,1,1,5,6],[784,3,3,6,9],[785,11,11,9,20]]]],[10245,10247,11048,11058,11531,19856,19949,19955,19956,19958,19959,19963,19964,19966,19967,19968,19969,19972,19973,19975]]]]},{"k":"H5419","v":[["Nathanmelech",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10176]]]]},{"k":"H5420","v":[["mar",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13570]]]]},{"k":"H5421","v":[["broken",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12940]]]]},{"k":"H5422","v":[["*",[42,41,[[1,1,1,0,1,[[83,1,1,0,1]]],[2,2,2,1,3,[[100,1,1,1,2],[103,1,1,2,3]]],[4,2,2,3,5,[[159,1,1,3,4],[164,1,1,4,5]]],[6,8,8,5,13,[[212,1,1,5,6],[216,4,4,6,10],[218,2,2,10,12],[219,1,1,12,13]]],[11,8,7,13,20,[[322,2,1,13,14],[323,1,1,14,15],[335,4,4,15,19],[337,1,1,19,20]]],[13,6,6,20,26,[[389,1,1,20,21],[397,1,1,21,22],[399,1,1,22,23],[400,2,2,23,25],[402,1,1,25,26]]],[17,1,1,26,27,[[454,1,1,26,27]]],[18,2,2,27,29,[[529,1,1,27,28],[535,1,1,28,29]]],[22,1,1,29,30,[[700,1,1,29,30]]],[23,7,7,30,37,[[745,1,1,30,31],[748,1,1,31,32],[762,1,1,32,33],[775,1,1,33,34],[777,1,1,34,35],[783,1,1,35,36],[796,1,1,36,37]]],[25,3,3,37,40,[[817,1,1,37,38],[827,2,2,38,40]]],[33,1,1,40,41,[[900,1,1,40,41]]]],[2509,3032,3156,5116,5243,6547,6682,6684,6685,6686,6728,6736,6799,9820,9847,10172,10173,10177,10180,10232,11673,11855,11911,11937,11940,12012,13307,14715,14785,18062,18956,19053,19391,19719,19779,19931,20290,20801,21109,21112,22690]]],["+",[16,15,[[1,1,1,0,1,[[83,1,1,0,1]]],[2,1,1,1,2,[[103,1,1,1,2]]],[4,1,1,2,3,[[164,1,1,2,3]]],[6,5,5,3,8,[[216,3,3,3,6],[218,1,1,6,7],[219,1,1,7,8]]],[11,4,3,8,11,[[322,2,1,8,9],[335,2,2,9,11]]],[13,4,4,11,15,[[397,1,1,11,12],[400,2,2,12,14],[402,1,1,14,15]]]],[2509,3156,5243,6684,6685,6686,6728,6799,9820,10172,10173,11855,11937,11940,12012]]],["destroy",[3,3,[[4,1,1,0,1,[[159,1,1,0,1]]],[18,1,1,1,2,[[529,1,1,1,2]]],[25,1,1,2,3,[[827,1,1,2,3]]]],[5116,14715,21112]]],["destroyed",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13307]]],["down",[21,21,[[2,1,1,0,1,[[100,1,1,0,1]]],[6,3,3,1,4,[[212,1,1,1,2],[216,1,1,2,3],[218,1,1,3,4]]],[11,4,4,4,8,[[323,1,1,4,5],[335,2,2,5,7],[337,1,1,7,8]]],[13,2,2,8,10,[[389,1,1,8,9],[399,1,1,9,10]]],[22,1,1,10,11,[[700,1,1,10,11]]],[23,7,7,11,18,[[745,1,1,11,12],[748,1,1,12,13],[762,1,1,13,14],[775,1,1,14,15],[777,1,1,15,16],[783,1,1,16,17],[796,1,1,17,18]]],[25,2,2,18,20,[[817,1,1,18,19],[827,1,1,19,20]]],[33,1,1,20,21,[[900,1,1,20,21]]]],[3032,6547,6682,6736,9847,10177,10180,10232,11673,11911,18062,18956,19053,19391,19719,19779,19931,20290,20801,21109,22690]]],["out",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14785]]]]},{"k":"H5423","v":[["*",[27,26,[[2,1,1,0,1,[[111,1,1,0,1]]],[5,3,3,1,4,[[190,1,1,1,2],[194,2,2,2,4]]],[6,5,4,4,8,[[226,3,2,4,6],[230,2,2,6,8]]],[17,2,2,8,10,[[452,1,1,8,9],[453,1,1,9,10]]],[18,2,2,10,12,[[479,1,1,10,11],[584,1,1,11,12]]],[20,1,1,12,13,[[662,1,1,12,13]]],[22,3,3,13,16,[[683,1,1,13,14],[711,1,1,14,15],[736,1,1,15,16]]],[23,7,7,16,23,[[746,1,1,16,17],[749,1,1,17,18],[750,1,1,18,19],[754,1,1,19,20],[756,1,1,20,21],[766,1,1,21,22],[774,1,1,22,23]]],[25,2,2,23,25,[[818,1,1,23,24],[824,1,1,24,25]]],[33,1,1,25,26,[[900,1,1,25,26]]]],[3393,5928,6008,6018,6958,6961,7085,7086,13271,13290,13948,15713,17393,17766,18299,18792,18985,19063,19118,19221,19252,19478,19675,20834,21041,22697]]],["+",[4,4,[[6,1,1,0,1,[[226,1,1,0,1]]],[18,1,1,1,2,[[479,1,1,1,2]]],[25,1,1,2,3,[[818,1,1,2,3]]],[33,1,1,3,4,[[900,1,1,3,4]]]],[6958,13948,20834,22697]]],["away",[3,3,[[5,1,1,0,1,[[194,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[23,1,1,2,3,[[750,1,1,2,3]]]],[6018,7085,19118]]],["brake",[2,2,[[6,1,1,0,1,[[226,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]]],[6961,15713]]],["break",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18792]]],["broken",[6,6,[[2,1,1,0,1,[[111,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[20,1,1,2,3,[[662,1,1,2,3]]],[22,2,2,3,5,[[683,1,1,3,4],[711,1,1,4,5]]],[23,1,1,5,6,[[754,1,1,5,6]]]],[3393,6958,17393,17766,18299,19221]]],["burst",[3,3,[[23,3,3,0,3,[[746,1,1,0,1],[749,1,1,1,2],[774,1,1,2,3]]]],[18985,19063,19675]]],["draw",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7086]]],["drawn",[1,1,[[5,1,1,0,1,[[194,1,1,0,1]]]],[6008]]],["off",[2,2,[[17,1,1,0,1,[[452,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[13271,21041]]],["out",[2,2,[[17,1,1,0,1,[[453,1,1,0,1]]],[23,1,1,1,2,[[756,1,1,1,2]]]],[13290,19252]]],["pluck",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19478]]],["up",[1,1,[[5,1,1,0,1,[[190,1,1,0,1]]]],[5928]]]]},{"k":"H5424","v":[["scall",[14,9,[[2,14,9,0,9,[[102,13,8,0,8],[103,1,1,8,9]]]],[3082,3083,3084,3085,3086,3087,3088,3089,3165]]]]},{"k":"H5425","v":[["*",[8,8,[[2,1,1,0,1,[[100,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,2,2,2,4,[[441,1,1,2,3],[472,1,1,3,4]]],[18,2,2,4,6,[[582,1,1,4,5],[623,1,1,5,6]]],[22,1,1,6,7,[[736,1,1,6,7]]],[34,1,1,7,8,[[905,1,1,7,8]]]],[3018,8635,12987,13770,15626,16348,18792,22774]]],["asunder",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22774]]],["leap",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3018]]],["loose",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12987]]],["loosed",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15626]]],["looseth",[1,1,[[18,1,1,0,1,[[623,1,1,0,1]]]],[16348]]],["maketh",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8635]]],["moved",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13770]]],["undo",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18792]]]]},{"k":"H5426","v":[["off",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21851]]]]},{"k":"H5427","v":[["nitre",[2,2,[[19,1,1,0,1,[[652,1,1,0,1]]],[23,1,1,1,2,[[746,1,1,1,2]]]],[17133,18987]]]]},{"k":"H5428","v":[["*",[21,19,[[4,1,1,0,1,[[181,1,1,0,1]]],[10,1,1,1,2,[[304,1,1,1,2]]],[13,1,1,2,3,[[373,1,1,2,3]]],[18,1,1,3,4,[[486,1,1,3,4]]],[23,13,11,4,15,[[745,1,1,4,5],[756,5,3,5,8],[762,2,2,8,10],[768,1,1,10,11],[775,2,2,11,13],[786,1,1,13,14],[789,1,1,14,15]]],[25,1,1,15,16,[[820,1,1,15,16]]],[26,1,1,16,17,[[860,1,1,16,17]]],[29,1,1,17,18,[[887,1,1,17,18]]],[32,1,1,18,19,[[897,1,1,18,19]]]],[5707,9233,11344,14027,18956,19263,19264,19266,19391,19398,19530,19719,19731,19985,20044,20893,22040,22510,22647]]],["+",[4,3,[[10,1,1,0,1,[[304,1,1,0,1]]],[23,3,2,1,3,[[756,3,2,1,3]]]],[9233,19264,19266]]],["destroyed",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14027]]],["forsaken",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19398]]],["out",[4,3,[[4,1,1,0,1,[[181,1,1,0,1]]],[23,3,2,1,3,[[745,1,1,1,2],[756,2,1,2,3]]]],[5707,18956,19263]]],["roots",[1,1,[[13,1,1,0,1,[[373,1,1,0,1]]]],[11344]]],["up",[10,10,[[23,6,6,0,6,[[762,1,1,0,1],[768,1,1,1,2],[775,2,2,2,4],[786,1,1,4,5],[789,1,1,5,6]]],[25,1,1,6,7,[[820,1,1,6,7]]],[26,1,1,7,8,[[860,1,1,7,8]]],[29,1,1,8,9,[[887,1,1,8,9]]],[32,1,1,9,10,[[897,1,1,9,10]]]],[19391,19530,19719,19731,19985,20044,20893,22040,22510,22647]]]]},{"k":"H5429","v":[["*",[9,6,[[0,1,1,0,1,[[17,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[11,6,3,3,6,[[319,6,3,3,6]]]],[430,7879,9373,9708,9723,9725]]],["measure",[3,3,[[11,3,3,0,3,[[319,3,3,0,3]]]],[9708,9723,9725]]],["measures",[6,6,[[0,1,1,0,1,[[17,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[11,3,3,3,6,[[319,3,3,3,6]]]],[430,7879,9373,9708,9723,9725]]]]},{"k":"H5430","v":[["battle",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17834]]]]},{"k":"H5431","v":[["warrior",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17834]]]]},{"k":"H5432","v":[["measure",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18159]]]]},{"k":"H5433","v":[["*",[5,5,[[4,1,1,0,1,[[173,1,1,0,1]]],[19,2,2,1,3,[[650,2,2,1,3]]],[22,1,1,3,4,[[734,1,1,3,4]]],[33,1,1,4,5,[[900,1,1,4,5]]]],[5467,17064,17065,18765,22694]]],["+",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17064]]],["drunkard",[2,2,[[4,1,1,0,1,[[173,1,1,0,1]]],[19,1,1,1,2,[[650,1,1,1,2]]]],[5467,17065]]],["drunkards",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22694]]],["fill",[1,1,[[22,1,1,0,1,[[734,1,1,0,1]]]],[18765]]]]},{"k":"H5434","v":[["Seba",[4,4,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[18,1,1,2,3,[[549,1,1,2,3]]],[22,1,1,3,4,[[721,1,1,3,4]]]],[241,10261,15010,18508]]]]},{"k":"H5435","v":[["*",[3,3,[[22,1,1,0,1,[[679,1,1,0,1]]],[27,1,1,1,2,[[865,1,1,1,2]]],[33,1,1,2,3,[[900,1,1,2,3]]]],[17676,22151,22694]]],["drink",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22151]]],["drunken",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22694]]],["wine",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17676]]]]},{"k":"H5436","v":[["Sabeans",[2,2,[[22,1,1,0,1,[[723,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[18575,21049]]]]},{"k":"H5437","v":[["*",[157,148,[[0,5,5,0,5,[[1,2,2,0,2],[18,1,1,2,3],[36,1,1,3,4],[41,1,1,4,5]]],[1,1,1,5,6,[[62,1,1,5,6]]],[3,6,6,6,12,[[137,1,1,6,7],[148,1,1,7,8],[150,2,2,8,10],[152,2,2,10,12]]],[4,3,3,12,15,[[154,2,2,12,14],[184,1,1,14,15]]],[5,13,12,15,27,[[192,7,6,15,21],[193,1,1,21,22],[201,2,2,22,24],[202,1,1,24,25],[204,1,1,25,26],[205,1,1,26,27]]],[6,5,5,27,32,[[221,1,1,27,28],[226,1,1,28,29],[228,1,1,29,30],[229,1,1,30,31],[230,1,1,31,32]]],[8,14,12,32,44,[[240,4,3,32,35],[242,1,1,35,36],[250,2,2,36,38],[251,1,1,38,39],[252,1,1,39,40],[253,1,1,40,41],[257,4,3,41,44]]],[9,10,8,44,52,[[269,1,1,44,45],[271,1,1,45,46],[280,3,2,46,48],[284,3,2,48,50],[286,1,1,50,51],[288,1,1,51,52]]],[10,8,8,52,60,[[292,1,1,52,53],[295,1,1,53,54],[297,3,3,54,57],[298,1,1,57,58],[308,1,1,58,59],[311,1,1,59,60]]],[11,10,10,60,70,[[315,2,2,60,62],[318,1,1,62,63],[320,1,1,63,64],[321,2,2,64,66],[328,1,1,66,67],[332,1,1,67,68],[335,1,1,68,69],[336,1,1,69,70]]],[12,5,5,70,75,[[347,1,1,70,71],[349,1,1,71,72],[350,1,1,72,73],[351,1,1,73,74],[353,1,1,74,75]]],[13,13,13,75,88,[[370,2,2,75,77],[372,1,1,77,78],[379,1,1,78,79],[380,1,1,79,80],[383,1,1,80,81],[384,1,1,81,82],[387,1,1,82,83],[389,1,1,83,84],[395,1,1,84,85],[399,1,1,85,86],[401,1,1,86,87],[402,1,1,87,88]]],[14,1,1,88,89,[[408,1,1,88,89]]],[17,2,2,89,91,[[451,1,1,89,90],[475,1,1,90,91]]],[18,22,21,91,112,[[484,1,1,91,92],[494,1,1,92,93],[495,1,1,93,94],[499,2,2,94,96],[503,1,1,96,97],[509,2,2,97,99],[525,1,1,99,100],[526,1,1,100,101],[532,1,1,101,102],[536,2,2,102,104],[548,1,1,104,105],[565,1,1,105,106],[586,1,1,106,107],[591,2,2,107,109],[595,4,3,109,112]]],[19,1,1,112,113,[[653,1,1,112,113]]],[20,7,5,113,118,[[659,3,1,113,114],[660,1,1,114,115],[665,1,1,115,116],[667,1,1,116,117],[670,1,1,117,118]]],[21,5,5,118,123,[[672,1,1,118,119],[673,2,2,119,121],[675,1,1,121,122],[676,1,1,122,123]]],[22,3,3,123,126,[[701,1,1,123,124],[706,1,1,124,125],[716,1,1,125,126]]],[23,6,6,126,132,[[750,1,1,126,127],[765,1,1,127,128],[775,2,2,128,130],[785,1,1,130,131],[796,1,1,131,132]]],[25,11,10,132,142,[[802,3,3,132,135],[808,1,1,135,136],[811,3,2,136,138],[827,1,1,138,139],[842,1,1,139,140],[843,1,1,140,141],[848,1,1,141,142]]],[27,2,2,142,144,[[868,1,1,142,143],[872,1,1,143,144]]],[31,2,2,144,146,[[890,2,2,144,146]]],[34,1,1,146,147,[[904,1,1,146,147]]],[37,1,1,147,148,[[924,1,1,147,148]]]],[41,43,461,1090,1276,1885,4344,4756,4820,4821,4886,4888,4939,4941,5768,5952,5953,5956,5960,5963,5964,5985,6205,6212,6271,6307,6335,6847,6951,7016,7046,7059,7327,7328,7329,7368,7572,7587,7606,7648,7687,7804,7805,7809,8093,8155,8376,8380,8493,8508,8566,8608,8785,8881,8949,8957,8958,8999,9378,9455,9585,9601,9689,9748,9774,9775,9981,10100,10199,10219,10673,10743,10763,10788,10863,11248,11249,11285,11466,11482,11532,11573,11633,11658,11797,11922,11988,11997,12173,13251,13886,14002,14114,14123,14216,14220,14279,14362,14365,14646,14653,14742,14796,14804,14997,15325,15758,15825,15827,15879,15880,15881,17155,17321,17353,17454,17489,17528,17571,17573,17574,17605,17619,18093,18191,18392,19101,19444,19713,19730,19971,20297,20473,20476,20481,20599,20644,20649,21102,21533,21571,21681,22180,22252,22551,22553,22764,23078]]],["+",[44,42,[[0,3,3,0,3,[[1,2,2,0,2],[18,1,1,2,3]]],[1,1,1,3,4,[[62,1,1,3,4]]],[3,1,1,4,5,[[137,1,1,4,5]]],[4,2,2,5,7,[[154,2,2,5,7]]],[5,8,7,7,14,[[192,7,6,7,13],[193,1,1,13,14]]],[6,3,3,14,17,[[221,1,1,14,15],[229,1,1,15,16],[230,1,1,16,17]]],[8,3,3,17,20,[[240,3,3,17,20]]],[9,4,4,20,24,[[269,1,1,20,21],[271,1,1,21,22],[280,1,1,22,23],[286,1,1,23,24]]],[10,4,4,24,28,[[297,1,1,24,25],[298,1,1,25,26],[308,1,1,26,27],[311,1,1,27,28]]],[11,5,5,28,33,[[318,1,1,28,29],[320,1,1,29,30],[332,1,1,30,31],[335,1,1,31,32],[336,1,1,32,33]]],[12,2,2,33,35,[[347,1,1,33,34],[350,1,1,34,35]]],[13,4,4,35,39,[[372,1,1,35,36],[379,1,1,36,37],[387,1,1,37,38],[402,1,1,38,39]]],[17,1,1,39,40,[[451,1,1,39,40]]],[20,2,1,40,41,[[659,2,1,40,41]]],[23,1,1,41,42,[[765,1,1,41,42]]]],[41,43,461,1885,4344,4939,4941,5952,5953,5956,5960,5963,5964,5985,6847,7046,7059,7327,7328,7329,8093,8155,8376,8566,8949,8999,9378,9455,9689,9748,10100,10199,10219,10673,10763,11285,11466,11633,11997,13251,17321,19444]]],["Turn",[2,2,[[8,2,2,0,2,[[257,2,2,0,2]]]],[7804,7805]]],["about",[47,46,[[0,2,2,0,2,[[36,1,1,0,1],[41,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[5,1,1,3,4,[[202,1,1,3,4]]],[8,3,3,4,7,[[240,1,1,4,5],[250,2,2,5,7]]],[9,2,2,7,9,[[284,1,1,7,8],[288,1,1,8,9]]],[10,1,1,9,10,[[292,1,1,9,10]]],[11,1,1,10,11,[[315,1,1,10,11]]],[13,4,4,11,15,[[380,1,1,11,12],[383,1,1,12,13],[389,1,1,13,14],[399,1,1,14,15]]],[17,1,1,15,16,[[475,1,1,15,16]]],[18,15,14,16,30,[[484,1,1,16,17],[495,1,1,17,18],[509,2,2,18,20],[525,1,1,20,21],[526,1,1,21,22],[532,1,1,22,23],[536,2,2,23,25],[565,1,1,25,26],[586,1,1,26,27],[595,4,3,27,30]]],[20,3,3,30,33,[[659,1,1,30,31],[660,1,1,31,32],[670,1,1,32,33]]],[21,3,3,33,36,[[673,2,2,33,35],[675,1,1,35,36]]],[22,1,1,36,37,[[701,1,1,36,37]]],[23,2,2,37,39,[[775,1,1,37,38],[785,1,1,38,39]]],[25,3,3,39,42,[[842,1,1,39,40],[843,1,1,40,41],[848,1,1,41,42]]],[27,2,2,42,44,[[868,1,1,42,43],[872,1,1,43,44]]],[31,2,2,44,46,[[890,2,2,44,46]]]],[1090,1276,5768,6271,7327,7572,7587,8493,8608,8785,9601,11482,11532,11658,11922,13886,14002,14123,14362,14365,14646,14653,14742,14796,14804,15325,15758,15879,15880,15881,17321,17353,17528,17573,17574,17605,18093,19730,19971,21533,21571,21681,22180,22252,22551,22553]]],["applied",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17454]]],["aside",[2,1,[[9,2,1,0,1,[[284,2,1,0,1]]]],[8508]]],["avoided",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7687]]],["away",[3,3,[[12,1,1,0,1,[[351,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]],[21,1,1,2,3,[[676,1,1,2,3]]]],[10788,11797,17619]]],["besieged",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17489]]],["changed",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4756]]],["circuit",[1,1,[[8,1,1,0,1,[[242,1,1,0,1]]]],[7368]]],["compass",[9,9,[[3,1,1,0,1,[[150,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[11,1,1,3,4,[[315,1,1,3,4]]],[13,2,2,4,6,[[370,2,2,4,6]]],[18,1,1,6,7,[[503,1,1,6,7]]],[23,2,2,7,9,[[775,1,1,7,8],[796,1,1,8,9]]]],[4821,6205,8957,9585,11248,11249,14279,19713,20297]]],["compassed",[7,7,[[5,2,2,0,2,[[201,1,1,0,1],[204,1,1,1,2]]],[6,1,1,2,3,[[226,1,1,2,3]]],[13,1,1,3,4,[[384,1,1,3,4]]],[18,3,3,4,7,[[494,1,1,4,5],[499,2,2,5,7]]]],[6212,6307,6951,11573,14114,14216,14220]]],["compasseth",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6335]]],["compassing",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8958]]],["down",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7606]]],["driven",[2,2,[[18,2,2,0,2,[[591,2,2,0,2]]]],[15825,15827]]],["occasioned",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7809]]],["remove",[2,2,[[3,2,2,0,2,[[152,2,2,0,2]]]],[4886,4888]]],["returned",[2,2,[[9,1,1,0,1,[[280,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]]],[8380,10863]]],["side",[2,2,[[10,1,1,0,1,[[295,1,1,0,1]]],[18,1,1,1,2,[[548,1,1,1,2]]]],[8881,14997]]],["turn",[8,8,[[3,1,1,0,1,[[150,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]],[11,2,2,2,4,[[321,2,2,2,4]]],[12,1,1,4,5,[[349,1,1,4,5]]],[13,1,1,5,6,[[401,1,1,5,6]]],[21,1,1,6,7,[[672,1,1,6,7]]],[25,1,1,7,8,[[808,1,1,7,8]]]],[4820,8380,9774,9775,10743,11988,17571,20599]]],["turned",[17,16,[[6,1,1,0,1,[[228,1,1,0,1]]],[8,2,2,1,3,[[252,1,1,1,2],[257,1,1,2,3]]],[11,1,1,3,4,[[328,1,1,3,4]]],[14,1,1,4,5,[[408,1,1,4,5]]],[22,2,2,5,7,[[706,1,1,5,6],[716,1,1,6,7]]],[23,1,1,7,8,[[750,1,1,7,8]]],[25,7,6,8,14,[[802,3,3,8,11],[811,3,2,11,13],[827,1,1,13,14]]],[34,1,1,14,15,[[904,1,1,14,15]]],[37,1,1,15,16,[[924,1,1,15,16]]]],[7016,7648,7805,9981,12173,18191,18392,19101,20473,20476,20481,20644,20649,21102,22764,23078]]],["turneth",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17155]]]]},{"k":"H5438","v":[["cause",[1,1,[[10,1,1,0,1,[[302,1,1,0,1]]]],[9166]]]]},{"k":"H5439","v":[["*",[334,282,[[0,3,3,0,3,[[22,1,1,0,1],[34,1,1,1,2],[40,1,1,2,3]]],[1,31,25,3,28,[[56,1,1,3,4],[65,1,1,4,5],[68,1,1,5,6],[74,4,3,6,9],[76,1,1,9,10],[77,4,3,10,13],[78,2,2,13,15],[79,2,1,15,16],[86,6,4,16,20],[87,4,3,20,23],[88,3,3,23,26],[89,2,2,26,28]]],[2,15,15,28,43,[[90,2,2,28,30],[92,3,3,30,33],[96,1,1,33,34],[97,3,3,34,37],[98,2,2,37,39],[103,1,1,39,40],[105,1,1,40,41],[114,2,2,41,43]]],[3,18,18,43,61,[[117,2,2,43,45],[118,1,1,45,46],[119,2,2,46,48],[120,2,2,48,50],[127,3,3,50,53],[132,3,3,53,56],[138,1,1,56,57],[148,1,1,57,58],[150,1,1,58,59],[151,2,2,59,61]]],[4,6,6,61,67,[[158,1,1,61,62],[164,1,1,62,63],[165,1,1,63,64],[169,1,1,64,65],[173,1,1,65,66],[177,1,1,66,67]]],[5,7,7,67,74,[[201,1,1,67,68],[204,1,1,68,69],[205,1,1,69,70],[207,3,3,70,73],[209,1,1,73,74]]],[6,6,6,74,80,[[212,2,2,74,76],[217,2,2,76,78],[218,1,1,78,79],[230,1,1,79,80]]],[8,6,6,80,86,[[247,1,1,80,81],[249,2,2,81,83],[261,2,2,83,85],[266,1,1,85,86]]],[9,4,4,86,90,[[271,1,1,86,87],[273,1,1,87,88],[288,1,1,88,89],[290,1,1,89,90]]],[10,19,15,90,105,[[293,1,1,90,91],[294,2,2,91,93],[295,1,1,93,94],[296,4,2,94,96],[297,9,7,96,103],[308,2,2,103,105]]],[11,8,8,105,113,[[318,1,1,105,106],[323,2,2,106,108],[329,1,1,108,109],[337,4,4,109,113]]],[12,9,8,113,121,[[341,1,1,113,114],[343,1,1,114,115],[346,1,1,115,116],[347,1,1,116,117],[348,2,1,117,118],[359,2,2,118,120],[365,1,1,120,121]]],[13,14,11,121,132,[[370,5,2,121,123],[380,2,2,123,125],[381,1,1,125,126],[383,1,1,126,127],[386,1,1,127,128],[389,2,2,128,130],[398,1,1,130,131],[400,1,1,131,132]]],[14,1,1,132,133,[[403,1,1,132,133]]],[15,4,4,133,137,[[417,1,1,133,134],[418,1,1,134,135],[424,2,2,135,137]]],[17,8,8,137,145,[[436,1,1,137,138],[445,1,1,138,139],[453,1,1,139,140],[454,2,2,140,142],[457,1,1,142,143],[464,1,1,143,144],[476,1,1,144,145]]],[18,19,18,145,163,[[480,1,1,145,146],[489,1,1,146,147],[495,1,1,147,148],[504,1,1,148,149],[508,1,1,149,150],[511,1,1,150,151],[521,1,1,151,152],[527,1,1,152,153],[553,1,1,153,154],[555,1,1,154,155],[556,2,2,155,157],[566,2,2,157,159],[574,2,2,159,161],[602,2,1,161,162],[605,1,1,162,163]]],[20,1,1,163,164,[[659,1,1,163,164]]],[21,1,1,164,165,[[673,1,1,164,165]]],[22,3,3,165,168,[[720,1,1,165,166],[727,1,1,166,167],[738,1,1,167,168]]],[23,27,27,168,195,[[745,1,1,168,169],[748,1,1,169,170],[750,2,2,170,172],[756,1,1,172,173],[761,1,1,173,174],[764,1,1,174,175],[765,1,1,175,176],[769,1,1,176,177],[776,1,1,177,178],[777,1,1,178,179],[790,2,2,179,181],[792,2,2,181,183],[793,2,2,183,185],[794,4,4,185,189],[795,1,1,189,190],[796,5,5,190,195]]],[24,3,3,195,198,[[797,1,1,195,196],[798,2,2,196,198]]],[25,111,74,198,272,[[802,5,4,198,202],[805,1,1,202,203],[806,8,7,203,210],[807,2,2,210,212],[809,1,1,212,213],[811,1,1,213,214],[812,1,1,214,215],[813,1,1,215,216],[817,4,3,216,219],[820,1,1,219,220],[824,2,2,220,222],[828,2,1,222,223],[829,3,3,223,226],[832,1,1,226,227],[833,5,5,227,232],[835,1,1,232,233],[837,4,4,233,237],[838,3,2,237,239],[840,1,1,239,240],[841,22,10,240,250],[842,23,10,250,260],[843,6,4,260,264],[844,6,4,264,268],[846,3,2,268,270],[847,3,1,270,271],[849,1,1,271,272]]],[26,1,1,272,273,[[858,1,1,272,273]]],[28,2,2,273,275,[[878,2,2,273,275]]],[29,1,1,275,276,[[881,1,1,275,276]]],[33,1,1,276,277,[[902,1,1,276,277]]],[37,5,5,277,282,[[912,1,1,277,278],[917,1,1,278,279],[922,2,2,279,281],[924,1,1,281,282]]]],[588,1016,1243,1709,1960,2038,2206,2219,2220,2289,2325,2326,2327,2352,2356,2385,2606,2615,2616,2630,2649,2653,2664,2687,2689,2690,2715,2740,2750,2756,2780,2786,2791,2881,2932,2936,2941,2965,2971,3152,3219,3500,3513,3654,3657,3660,3718,3729,3769,3775,4048,4055,4056,4218,4221,4228,4379,4751,4828,4847,4849,5100,5250,5279,5378,5449,5566,6214,6313,6329,6392,6423,6425,6461,6557,6559,6712,6715,6753,7083,7471,7529,7555,7910,7912,8018,8141,8181,8614,8698,8817,8868,8875,8882,8901,8902,8946,8952,8954,8957,8958,8969,8970,9373,9376,9691,9837,9840,9998,10223,10226,10232,10239,10418,10509,10642,10668,10681,10973,10982,11155,11248,11249,11482,11489,11505,11533,11617,11663,11666,11897,11939,12022,12399,12417,12652,12653,12879,13094,13287,13307,13309,13399,13537,13902,13963,14074,14129,14291,14344,14395,14584,14671,15092,15141,15188,15189,15333,15334,15480,15481,16112,16129,17321,17578,18505,18654,18825,18961,19044,19092,19114,19258,19383,19432,19454,19543,19775,19788,20050,20059,20097,20119,20132,20156,20180,20181,20195,20198,20214,20280,20283,20290,20298,20299,20327,20335,20354,20468,20482,20491,20492,20531,20548,20551,20552,20553,20558,20560,20561,20568,20576,20614,20645,20667,20694,20795,20799,20819,20889,21029,21031,21132,21180,21181,21183,21234,21270,21271,21272,21273,21274,21339,21362,21363,21366,21395,21399,21418,21465,21482,21491,21493,21494,21502,21506,21507,21510,21513,21520,21531,21532,21533,21534,21536,21537,21538,21542,21543,21545,21567,21568,21569,21572,21584,21585,21589,21592,21631,21632,21678,21737,22004,22354,22355,22406,22720,22904,22969,23047,23051,23082]]],["+",[99,72,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[3,2,2,2,4,[[132,2,2,2,4]]],[4,2,2,4,6,[[164,1,1,4,5],[177,1,1,5,6]]],[5,2,2,6,8,[[207,1,1,6,7],[209,1,1,7,8]]],[6,3,3,8,11,[[212,1,1,8,9],[218,1,1,9,10],[230,1,1,10,11]]],[8,1,1,11,12,[[247,1,1,11,12]]],[9,1,1,12,13,[[273,1,1,12,13]]],[10,2,2,13,15,[[294,1,1,13,14],[295,1,1,14,15]]],[11,1,1,15,16,[[323,1,1,15,16]]],[12,3,3,16,19,[[348,1,1,16,17],[359,2,2,17,19]]],[13,6,5,19,24,[[370,2,1,19,20],[380,1,1,20,21],[381,1,1,21,22],[386,1,1,22,23],[398,1,1,23,24]]],[17,1,1,24,25,[[436,1,1,24,25]]],[18,1,1,25,26,[[508,1,1,25,26]]],[22,1,1,26,27,[[720,1,1,26,27]]],[23,7,7,27,34,[[748,1,1,27,28],[750,1,1,28,29],[761,1,1,29,30],[764,1,1,30,31],[790,1,1,31,32],[793,1,1,32,33],[795,1,1,33,34]]],[24,1,1,34,35,[[798,1,1,34,35]]],[25,61,35,35,70,[[817,3,3,35,38],[824,1,1,38,39],[829,2,2,39,41],[837,3,3,41,44],[838,3,2,44,46],[840,1,1,46,47],[841,22,10,47,57],[842,20,10,57,67],[843,4,2,67,69],[844,2,1,69,70]]],[28,2,2,70,72,[[878,2,2,70,72]]]],[2326,2690,4218,4221,5250,5566,6425,6461,6559,6753,7083,7471,8181,8868,8882,9840,10681,10973,10982,11249,11482,11505,11617,11897,12879,14344,18505,19044,19114,19383,19432,20050,20156,20214,20354,20795,20799,20819,21029,21180,21183,21362,21363,21366,21399,21418,21465,21482,21491,21493,21494,21502,21506,21507,21510,21513,21520,21531,21532,21533,21534,21536,21537,21538,21542,21543,21545,21567,21572,21584,22354,22355]]],["about",[225,208,[[0,3,3,0,3,[[22,1,1,0,1],[34,1,1,1,2],[40,1,1,2,3]]],[1,29,24,3,27,[[56,1,1,3,4],[65,1,1,4,5],[68,1,1,5,6],[74,4,3,6,9],[76,1,1,9,10],[77,3,3,10,13],[78,2,2,13,15],[79,2,1,15,16],[86,6,4,16,20],[87,4,3,20,23],[88,2,2,23,25],[89,2,2,25,27]]],[2,15,15,27,42,[[90,2,2,27,29],[92,3,3,29,32],[96,1,1,32,33],[97,3,3,33,36],[98,2,2,36,38],[103,1,1,38,39],[105,1,1,39,40],[114,2,2,40,42]]],[3,16,16,42,58,[[117,2,2,42,44],[118,1,1,44,45],[119,2,2,45,47],[120,2,2,47,49],[127,3,3,49,52],[132,1,1,52,53],[138,1,1,53,54],[148,1,1,54,55],[150,1,1,55,56],[151,2,2,56,58]]],[4,4,4,58,62,[[158,1,1,58,59],[165,1,1,59,60],[169,1,1,60,61],[173,1,1,61,62]]],[5,5,5,62,67,[[201,1,1,62,63],[204,1,1,63,64],[205,1,1,64,65],[207,2,2,65,67]]],[6,2,2,67,69,[[212,1,1,67,68],[217,1,1,68,69]]],[8,4,4,69,73,[[249,1,1,69,70],[261,2,2,70,72],[266,1,1,72,73]]],[9,3,3,73,76,[[271,1,1,73,74],[288,1,1,74,75],[290,1,1,75,76]]],[10,16,12,76,88,[[293,1,1,76,77],[294,1,1,77,78],[296,4,2,78,80],[297,8,6,80,86],[308,2,2,86,88]]],[11,7,7,88,95,[[318,1,1,88,89],[323,1,1,89,90],[329,1,1,90,91],[337,4,4,91,95]]],[12,6,6,95,101,[[341,1,1,95,96],[343,1,1,96,97],[346,1,1,97,98],[347,1,1,98,99],[348,1,1,99,100],[365,1,1,100,101]]],[13,7,7,101,108,[[370,2,2,101,103],[380,1,1,103,104],[383,1,1,104,105],[389,2,2,105,107],[400,1,1,107,108]]],[14,1,1,108,109,[[403,1,1,108,109]]],[15,4,4,109,113,[[417,1,1,109,110],[418,1,1,110,111],[424,2,2,111,113]]],[17,5,5,113,118,[[445,1,1,113,114],[454,1,1,114,115],[457,1,1,115,116],[464,1,1,116,117],[476,1,1,117,118]]],[18,17,16,118,134,[[480,1,1,118,119],[495,1,1,119,120],[504,1,1,120,121],[511,1,1,121,122],[521,1,1,122,123],[527,1,1,123,124],[553,1,1,124,125],[555,1,1,125,126],[556,2,2,126,128],[566,2,2,128,130],[574,2,2,130,132],[602,2,1,132,133],[605,1,1,133,134]]],[21,1,1,134,135,[[673,1,1,134,135]]],[22,2,2,135,137,[[727,1,1,135,136],[738,1,1,136,137]]],[23,20,20,137,157,[[745,1,1,137,138],[750,1,1,138,139],[756,1,1,139,140],[765,1,1,140,141],[769,1,1,141,142],[776,1,1,142,143],[777,1,1,143,144],[790,1,1,144,145],[792,2,2,145,147],[793,1,1,147,148],[794,4,4,148,152],[796,5,5,152,157]]],[24,2,2,157,159,[[797,1,1,157,158],[798,1,1,158,159]]],[25,48,41,159,200,[[802,5,4,159,163],[805,1,1,163,164],[806,8,7,164,171],[807,2,2,171,173],[809,1,1,173,174],[811,1,1,174,175],[812,1,1,175,176],[813,1,1,176,177],[817,1,1,177,178],[824,1,1,178,179],[828,2,1,179,180],[829,1,1,180,181],[832,1,1,181,182],[833,5,5,182,187],[835,1,1,187,188],[837,1,1,188,189],[842,2,2,189,191],[843,2,2,191,193],[844,4,3,193,196],[846,3,2,196,198],[847,3,1,198,199],[849,1,1,199,200]]],[26,1,1,200,201,[[858,1,1,200,201]]],[29,1,1,201,202,[[881,1,1,201,202]]],[33,1,1,202,203,[[902,1,1,202,203]]],[37,5,5,203,208,[[912,1,1,203,204],[917,1,1,204,205],[922,2,2,205,207],[924,1,1,207,208]]]],[588,1016,1243,1709,1960,2038,2206,2219,2220,2289,2325,2326,2327,2352,2356,2385,2606,2615,2616,2630,2649,2653,2664,2687,2689,2715,2740,2750,2756,2780,2786,2791,2881,2932,2936,2941,2965,2971,3152,3219,3500,3513,3654,3657,3660,3718,3729,3769,3775,4048,4055,4056,4228,4379,4751,4828,4847,4849,5100,5279,5378,5449,6214,6313,6329,6392,6423,6557,6715,7529,7910,7912,8018,8141,8614,8698,8817,8875,8901,8902,8946,8952,8954,8957,8958,8970,9373,9376,9691,9837,9998,10223,10226,10232,10239,10418,10509,10642,10668,10681,11155,11248,11249,11489,11533,11663,11666,11939,12022,12399,12417,12652,12653,13094,13309,13399,13537,13902,13963,14129,14291,14395,14584,14671,15092,15141,15188,15189,15333,15334,15480,15481,16112,16129,17578,18654,18825,18961,19092,19258,19454,19543,19775,19788,20059,20097,20119,20132,20180,20181,20195,20198,20280,20283,20290,20298,20299,20327,20335,20468,20482,20491,20492,20531,20548,20551,20552,20553,20558,20560,20561,20568,20576,20614,20645,20667,20694,20819,21031,21132,21181,21234,21270,21271,21272,21273,21274,21339,21395,21536,21542,21568,21569,21585,21589,21592,21631,21632,21678,21737,22004,22406,22720,22904,22969,23047,23051,23082]]],["circuits",[1,1,[[20,1,1,0,1,[[659,1,1,0,1]]]],[17321]]],["compass",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[13,1,1,1,2,[[370,1,1,1,2]]]],[8969,11248]]],["side",[7,7,[[6,1,1,0,1,[[217,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[17,2,2,2,4,[[453,1,1,2,3],[454,1,1,3,4]]],[18,1,1,4,5,[[489,1,1,4,5]]],[25,2,2,5,7,[[820,1,1,5,6],[842,1,1,6,7]]]],[6712,7555,13287,13307,14074,20889,21531]]]]},{"k":"H5440","v":[["*",[2,2,[[17,1,1,0,1,[[443,1,1,0,1]]],[33,1,1,1,2,[[900,1,1,1,2]]]],[13046,22694]]],["together",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22694]]],["wrapped",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13046]]]]},{"k":"H5441","v":[["+",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19034]]]]},{"k":"H5442","v":[["*",[4,4,[[0,1,1,0,1,[[21,1,1,0,1]]],[18,1,1,1,2,[[551,1,1,1,2]]],[22,2,2,2,4,[[687,1,1,2,3],[688,1,1,3,4]]]],[560,15053,17847,17884]]],["thick",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15053]]],["thicket",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[560]]],["thickets",[2,2,[[22,2,2,0,2,[[687,1,1,0,1],[688,1,1,1,2]]]],[17847,17884]]]]},{"k":"H5443","v":[["sackbut",[4,4,[[26,4,4,0,4,[[852,4,4,0,4]]]],[21812,21814,21817,21822]]]]},{"k":"H5444","v":[["*",[4,4,[[9,1,1,0,1,[[287,1,1,0,1]]],[12,3,3,1,4,[[348,1,1,1,2],[357,1,1,2,3],[364,1,1,3,4]]]],[8598,10702,10930,11120]]],["Sibbecai",[2,2,[[12,2,2,0,2,[[348,1,1,0,1],[364,1,1,1,2]]]],[10702,11120]]],["Sibbechai",[2,2,[[9,1,1,0,1,[[287,1,1,0,1]]],[12,1,1,1,2,[[357,1,1,1,2]]]],[8598,10930]]]]},{"k":"H5445","v":[["*",[9,8,[[0,1,1,0,1,[[48,1,1,0,1]]],[18,1,1,1,2,[[621,1,1,1,2]]],[20,1,1,2,3,[[670,1,1,2,3]]],[22,5,4,3,7,[[724,3,2,3,5],[731,2,2,5,7]]],[24,1,1,7,8,[[801,1,1,7,8]]]],[1488,16319,17528,18590,18593,18715,18722,20449]]],["bear",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[22,1,1,1,2,[[731,1,1,1,2]]]],[1488,18722]]],["borne",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20449]]],["burden",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17528]]],["carried",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18715]]],["carry",[3,2,[[22,3,2,0,2,[[724,3,2,0,2]]]],[18590,18593]]],["labour",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16319]]]]},{"k":"H5446","v":[["laid",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12154]]]]},{"k":"H5447","v":[["*",[3,3,[[10,1,1,0,1,[[301,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]],[18,1,1,2,3,[[558,1,1,2,3]]]],[9136,12376,15223]]],["+",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15223]]],["burdens",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12376]]],["charge",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9136]]]]},{"k":"H5448","v":[["burden",[3,3,[[22,3,3,0,3,[[687,1,1,0,1],[688,1,1,1,2],[692,1,1,2,3]]]],[17833,17877,17953]]]]},{"k":"H5449","v":[["burdens",[5,5,[[10,1,1,0,1,[[295,1,1,0,1]]],[13,3,3,1,4,[[368,2,2,1,3],[400,1,1,3,4]]],[15,1,1,4,5,[[416,1,1,4,5]]]],[8893,11213,11229,11946,12369]]]]},{"k":"H5450","v":[["*",[6,6,[[1,6,6,0,6,[[50,1,1,0,1],[51,1,1,1,2],[54,2,2,2,4],[55,2,2,4,6]]]],[1543,1565,1636,1637,1661,1662]]],["+",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1637]]],["burdens",[5,5,[[1,5,5,0,5,[[50,1,1,0,1],[51,1,1,1,2],[54,1,1,2,3],[55,2,2,3,5]]]],[1543,1565,1636,1661,1662]]]]},{"k":"H5451","v":[["Sibboleth",[1,1,[[6,1,1,0,1,[[222,1,1,0,1]]]],[6875]]]]},{"k":"H5452","v":[["think",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21958]]]]},{"k":"H5453","v":[["Sibraim",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21695]]]]},{"k":"H5454","v":[["*",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[241,10261]]],["Sabta",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10261]]],["Sabtah",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[241]]]]},{"k":"H5455","v":[["Sabtecha",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[241,10261]]]]},{"k":"H5456","v":[["down",[4,4,[[22,4,4,0,4,[[722,3,3,0,3],[724,1,1,3,4]]]],[18548,18550,18552,18592]]]]},{"k":"H5457","v":[["*",[12,11,[[26,12,11,0,11,[[851,1,1,0,1],[852,11,10,1,11]]]],[21804,21812,21813,21814,21817,21818,21819,21821,21822,21825,21835]]],["worship",[8,7,[[26,8,7,0,7,[[852,8,7,0,7]]]],[21812,21817,21819,21821,21822,21825,21835]]],["worshipped",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21804,21814]]],["worshippeth",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21813,21818]]]]},{"k":"H5458","v":[["caul",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22274]]]]},{"k":"H5459","v":[["*",[8,8,[[1,1,1,0,1,[[68,1,1,0,1]]],[4,3,3,1,4,[[159,1,1,1,2],[166,1,1,2,3],[178,1,1,3,4]]],[12,1,1,4,5,[[366,1,1,4,5]]],[18,1,1,5,6,[[612,1,1,5,6]]],[20,1,1,6,7,[[660,1,1,6,7]]],[38,1,1,7,8,[[927,1,1,7,8]]]],[2031,5117,5292,5584,11167,16179,17341,23137]]],["good",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11167]]],["jewels",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23137]]],["peculiar",[2,2,[[4,2,2,0,2,[[166,1,1,0,1],[178,1,1,1,2]]]],[5292,5584]]],["special",[1,1,[[4,1,1,0,1,[[159,1,1,0,1]]]],[5117]]],["treasure",[3,3,[[1,1,1,0,1,[[68,1,1,0,1]]],[18,1,1,1,2,[[612,1,1,1,2]]],[20,1,1,2,3,[[660,1,1,2,3]]]],[2031,16179,17341]]]]},{"k":"H5460","v":[["governors",[5,5,[[26,5,5,0,5,[[851,1,1,0,1],[852,3,3,1,4],[855,1,1,4,5]]]],[21806,21809,21810,21834,21912]]]]},{"k":"H5461","v":[["*",[17,16,[[14,1,1,0,1,[[411,1,1,0,1]]],[15,9,8,1,9,[[414,2,1,1,2],[416,2,2,2,4],[417,2,2,4,6],[419,1,1,6,7],[424,1,1,7,8],[425,1,1,8,9]]],[22,1,1,9,10,[[719,1,1,9,10]]],[23,3,3,10,13,[[795,3,3,10,13]]],[25,3,3,13,16,[[824,3,3,13,16]]]],[12239,12323,12373,12378,12389,12399,12425,12664,12682,18476,20235,20240,20269,21013,21019,21030]]],["princes",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18476]]],["rulers",[16,15,[[14,1,1,0,1,[[411,1,1,0,1]]],[15,9,8,1,9,[[414,2,1,1,2],[416,2,2,2,4],[417,2,2,4,6],[419,1,1,6,7],[424,1,1,7,8],[425,1,1,8,9]]],[23,3,3,9,12,[[795,3,3,9,12]]],[25,3,3,12,15,[[824,3,3,12,15]]]],[12239,12323,12373,12378,12389,12399,12425,12664,12682,20235,20240,20269,21013,21019,21030]]]]},{"k":"H5462","v":[["*",[93,88,[[0,4,4,0,4,[[1,1,1,0,1],[6,1,1,1,2],[18,2,2,2,4]]],[1,1,1,4,5,[[63,1,1,4,5]]],[2,11,11,5,16,[[102,9,9,5,14],[103,2,2,14,16]]],[3,2,2,16,18,[[128,2,2,16,18]]],[4,2,2,18,20,[[175,1,1,18,19],[184,1,1,19,20]]],[5,5,4,20,24,[[188,2,2,20,22],[192,2,1,22,23],[206,1,1,23,24]]],[6,3,3,24,27,[[213,2,2,24,26],[219,1,1,26,27]]],[8,11,10,27,37,[[236,2,2,27,29],[252,1,1,29,30],[258,5,4,30,34],[259,1,1,34,35],[261,1,1,35,36],[265,1,1,36,37]]],[9,1,1,37,38,[[284,1,1,37,38]]],[10,6,6,38,44,[[296,2,2,38,40],[297,2,2,40,42],[300,1,1,42,43],[301,1,1,43,44]]],[11,5,5,44,49,[[316,4,4,44,48],[318,1,1,48,49]]],[13,5,5,49,54,[[370,2,2,49,51],[375,1,1,51,52],[394,1,1,52,53],[395,1,1,53,54]]],[15,2,2,54,56,[[418,1,1,54,55],[425,1,1,55,56]]],[17,6,6,56,62,[[438,1,1,56,57],[446,1,1,57,58],[447,1,1,58,59],[451,1,1,59,60],[463,1,1,60,61],[476,1,1,61,62]]],[18,7,6,62,68,[[494,1,1,62,63],[508,1,1,63,64],[512,1,1,64,65],[555,4,3,65,68]]],[20,1,1,68,69,[[670,1,1,68,69]]],[22,7,6,69,75,[[700,2,1,69,70],[702,2,2,70,72],[704,1,1,72,73],[723,1,1,73,74],[738,1,1,74,75]]],[23,1,1,75,76,[[757,1,1,75,76]]],[24,1,1,76,77,[[798,1,1,76,77]]],[25,7,6,77,83,[[804,1,1,77,78],[845,3,2,78,80],[847,3,3,80,83]]],[29,3,3,83,86,[[879,2,2,83,85],[884,1,1,85,86]]],[30,1,1,86,87,[[888,1,1,86,87]]],[38,1,1,87,88,[[925,1,1,87,88]]]],[51,175,463,467,1892,3056,3057,3063,3073,3078,3083,3085,3102,3106,3149,3157,4073,4074,5515,5788,5874,5876,5950,6377,6590,6591,6805,7217,7218,7664,7817,7821,7822,7830,7857,7913,7993,8506,8916,8917,8983,8984,9100,9135,9607,9608,9624,9636,9706,11266,11268,11384,11788,11798,12411,12690,12914,13118,13142,13249,13519,13903,14113,14339,14413,15161,15163,15175,17527,18074,18105,18117,18150,18562,18832,19285,20339,20526,21600,21601,21656,21657,21667,22370,22373,22458,22524,23099]]],["+",[15,14,[[0,1,1,0,1,[[6,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[2,1,1,2,3,[[103,1,1,2,3]]],[5,3,2,3,5,[[192,2,1,3,4],[206,1,1,4,5]]],[8,2,2,5,7,[[236,1,1,5,6],[261,1,1,6,7]]],[9,1,1,7,8,[[284,1,1,7,8]]],[10,1,1,8,9,[[301,1,1,8,9]]],[13,1,1,9,10,[[394,1,1,9,10]]],[17,3,3,10,13,[[438,1,1,10,11],[447,1,1,11,12],[463,1,1,12,13]]],[25,1,1,13,14,[[847,1,1,13,14]]]],[175,1892,3149,5950,6377,7218,7913,8506,9135,11788,12914,13142,13519,21667]]],["closed",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6590]]],["deliver",[5,5,[[4,1,1,0,1,[[175,1,1,0,1]]],[8,4,4,1,5,[[252,1,1,1,2],[258,2,2,2,4],[265,1,1,4,5]]]],[5515,7664,7822,7830,7993]]],["delivered",[2,2,[[8,1,1,0,1,[[259,1,1,0,1]]],[17,1,1,1,2,[[451,1,1,1,2]]]],[7857,13249]]],["gave",[2,2,[[18,2,2,0,2,[[555,2,2,0,2]]]],[15163,15175]]],["in",[2,2,[[8,1,1,0,1,[[258,1,1,0,1]]],[18,1,1,1,2,[[494,1,1,1,2]]]],[7817,14113]]],["out",[2,2,[[3,2,2,0,2,[[128,2,2,0,2]]]],[4073,4074]]],["over",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15175]]],["pure",[8,8,[[10,5,5,0,5,[[296,2,2,0,2],[297,2,2,2,4],[300,1,1,4,5]]],[13,3,3,5,8,[[370,2,2,5,7],[375,1,1,7,8]]]],[8916,8917,8983,8984,9100,11266,11268,11384]]],["shut",[23,21,[[0,1,1,0,1,[[18,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]],[6,2,2,2,4,[[213,1,1,2,3],[219,1,1,3,4]]],[11,5,5,4,9,[[316,4,4,4,8],[318,1,1,8,9]]],[15,2,2,9,11,[[418,1,1,9,10],[425,1,1,10,11]]],[20,1,1,11,12,[[670,1,1,11,12]]],[22,5,4,12,16,[[700,2,1,12,13],[704,1,1,13,14],[723,1,1,14,15],[738,1,1,15,16]]],[25,5,4,16,20,[[845,3,2,16,18],[847,2,2,18,20]]],[38,1,1,20,21,[[925,1,1,20,21]]]],[463,5876,6591,6805,9607,9608,9624,9636,9706,12411,12690,17527,18074,18150,18562,18832,21600,21601,21656,21657,23099]]],["shutting",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5874]]],["stop",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14413]]],["thyself",[1,1,[[25,1,1,0,1,[[804,1,1,0,1]]]],[20526]]],["to",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[467]]],["together",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13903]]],["up",[27,27,[[0,1,1,0,1,[[1,1,1,0,1]]],[2,10,10,1,11,[[102,9,9,1,10],[103,1,1,10,11]]],[4,1,1,11,12,[[184,1,1,11,12]]],[8,3,3,12,15,[[236,1,1,12,13],[258,2,2,13,15]]],[13,1,1,15,16,[[395,1,1,15,16]]],[17,1,1,16,17,[[446,1,1,16,17]]],[18,2,2,17,19,[[508,1,1,17,18],[555,1,1,18,19]]],[22,2,2,19,21,[[702,2,2,19,21]]],[23,1,1,21,22,[[757,1,1,21,22]]],[24,1,1,22,23,[[798,1,1,22,23]]],[29,3,3,23,26,[[879,2,2,23,25],[884,1,1,25,26]]],[30,1,1,26,27,[[888,1,1,26,27]]]],[51,3056,3057,3063,3073,3078,3083,3085,3102,3106,3157,5788,7217,7821,7822,11798,13118,14339,15161,18105,18117,19285,20339,22370,22373,22458,22524]]]]},{"k":"H5463","v":[["shut",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21927]]]]},{"k":"H5464","v":[["rainy",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17184]]]]},{"k":"H5465","v":[["stocks",[2,2,[[17,2,2,0,2,[[448,1,1,0,1],[468,1,1,1,2]]]],[13180,13661]]]]},{"k":"H5466","v":[["*",[4,4,[[6,2,2,0,2,[[224,2,2,0,2]]],[19,1,1,2,3,[[658,1,1,2,3]]],[22,1,1,3,4,[[681,1,1,3,4]]]],[6921,6922,17308,17730]]],["linen",[2,2,[[19,1,1,0,1,[[658,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]]],[17308,17730]]],["sheets",[2,2,[[6,2,2,0,2,[[224,2,2,0,2]]]],[6921,6922]]]]},{"k":"H5467","v":[["Sodom",[39,38,[[0,21,20,0,20,[[9,1,1,0,1],[12,3,3,1,4],[13,8,8,4,12],[17,4,4,12,16],[18,5,4,16,20]]],[4,2,2,20,22,[[181,1,1,20,21],[184,1,1,21,22]]],[22,4,4,22,26,[[679,2,2,22,24],[681,1,1,24,25],[691,1,1,25,26]]],[23,3,3,26,29,[[767,1,1,26,27],[793,1,1,27,28],[794,1,1,28,29]]],[24,1,1,29,30,[[800,1,1,29,30]]],[25,6,6,30,36,[[817,6,6,30,36]]],[29,1,1,36,37,[[882,1,1,36,37]]],[35,1,1,37,38,[[907,1,1,37,38]]]],[253,328,330,331,338,344,346,347,348,353,357,358,440,444,446,450,458,461,481,485,5702,5790,17663,17664,17716,17925,19498,20145,20206,20426,20808,20810,20811,20815,20817,20818,22421,22814]]]]},{"k":"H5468","v":[["order",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13108]]]]},{"k":"H5469","v":[["round",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17629]]]]},{"k":"H5470","v":[["+",[8,6,[[0,8,6,0,6,[[38,6,4,0,4],[39,2,2,4,6]]]],[1169,1170,1171,1172,1175,1177]]]]},{"k":"H5471","v":[["So",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[9987]]]]},{"k":"H5472","v":[["*",[14,14,[[18,8,8,0,8,[[512,1,1,0,1],[517,1,1,1,2],[521,1,1,2,3],[530,1,1,3,4],[547,1,1,4,5],[555,1,1,5,6],[557,1,1,6,7],[606,1,1,7,8]]],[19,1,1,8,9,[[641,1,1,8,9]]],[22,2,2,9,11,[[720,1,1,9,10],[728,1,1,10,11]]],[23,2,2,11,13,[[782,1,1,11,12],[790,1,1,12,13]]],[35,1,1,13,14,[[906,1,1,13,14]]]],[14414,14539,14589,14722,14973,15170,15216,16137,16786,18497,18667,19917,20050,22793]]],["away",[3,3,[[22,1,1,0,1,[[728,1,1,0,1]]],[23,2,2,1,3,[[782,1,1,1,2],[790,1,1,2,3]]]],[18667,19917,20050]]],["back",[4,4,[[18,3,3,0,3,[[530,1,1,0,1],[555,1,1,1,2],[557,1,1,2,3]]],[35,1,1,3,4,[[906,1,1,3,4]]]],[14722,15170,15216,22793]]],["backslider",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16786]]],["driven",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14539]]],["turned",[5,5,[[18,4,4,0,4,[[512,1,1,0,1],[521,1,1,1,2],[547,1,1,2,3],[606,1,1,3,4]]],[22,1,1,4,5,[[720,1,1,4,5]]]],[14414,14589,14973,16137,18497]]]]},{"k":"H5473","v":[["about",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17629]]]]},{"k":"H5474","v":[["ward",[1,1,[[25,1,1,0,1,[[820,1,1,0,1]]]],[20890]]]]},{"k":"H5475","v":[["*",[21,21,[[0,1,1,0,1,[[48,1,1,0,1]]],[17,3,3,1,4,[[450,1,1,1,2],[454,1,1,2,3],[464,1,1,3,4]]],[18,6,6,4,10,[[502,1,1,4,5],[532,1,1,5,6],[541,1,1,6,7],[560,1,1,7,8],[566,1,1,8,9],[588,1,1,9,10]]],[19,5,5,10,15,[[630,1,1,10,11],[638,1,1,11,12],[642,1,1,12,13],[647,1,1,13,14],[652,1,1,14,15]]],[23,4,4,15,19,[[750,1,1,15,16],[759,1,1,16,17],[767,2,2,17,19]]],[25,1,1,19,20,[[814,1,1,19,20]]],[29,1,1,20,21,[[881,1,1,20,21]]]],[1479,13211,13316,13536,14265,14746,14852,15244,15333,15794,16487,16701,16829,16973,17122,19100,19332,19502,19506,20717,22402]]],["+",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14852]]],["assembly",[5,5,[[18,2,2,0,2,[[566,1,1,0,1],[588,1,1,1,2]]],[23,2,2,2,4,[[750,1,1,2,3],[759,1,1,3,4]]],[25,1,1,4,5,[[814,1,1,4,5]]]],[15333,15794,19100,19332,20717]]],["counsel",[5,5,[[18,2,2,0,2,[[532,1,1,0,1],[560,1,1,1,2]]],[19,1,1,2,3,[[642,1,1,2,3]]],[23,2,2,3,5,[[767,2,2,3,5]]]],[14746,15244,16829,19502,19506]]],["inward",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13316]]],["secret",[7,7,[[0,1,1,0,1,[[48,1,1,0,1]]],[17,2,2,1,3,[[450,1,1,1,2],[464,1,1,2,3]]],[18,1,1,3,4,[[502,1,1,3,4]]],[19,2,2,4,6,[[630,1,1,4,5],[652,1,1,5,6]]],[29,1,1,6,7,[[881,1,1,6,7]]]],[1479,13211,13536,14265,16487,17122,22402]]],["secrets",[2,2,[[19,2,2,0,2,[[638,1,1,0,1],[647,1,1,1,2]]]],[16701,16973]]]]},{"k":"H5476","v":[["Sodi",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4085]]]]},{"k":"H5477","v":[["Suah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10571]]]]},{"k":"H5478","v":[["+",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17764]]]]},{"k":"H5479","v":[["Sotai",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12082,12477]]]]},{"k":"H5480","v":[["*",[9,8,[[4,1,1,0,1,[[180,1,1,0,1]]],[7,1,1,1,2,[[234,1,1,1,2]]],[9,2,2,2,4,[[278,1,1,2,3],[280,1,1,3,4]]],[13,1,1,4,5,[[394,1,1,4,5]]],[25,1,1,5,6,[[817,1,1,5,6]]],[26,2,1,6,7,[[859,2,1,6,7]]],[32,1,1,7,8,[[898,1,1,7,8]]]],[5651,7175,8306,8358,11779,20771,22018,22663]]],["+",[2,1,[[26,2,1,0,1,[[859,2,1,0,1]]]],[22018]]],["anoint",[4,4,[[4,1,1,0,1,[[180,1,1,0,1]]],[7,1,1,1,2,[[234,1,1,1,2]]],[9,1,1,2,3,[[280,1,1,2,3]]],[32,1,1,3,4,[[898,1,1,3,4]]]],[5651,7175,8358,22663]]],["anointed",[3,3,[[9,1,1,0,1,[[278,1,1,0,1]]],[13,1,1,1,2,[[394,1,1,1,2]]],[25,1,1,2,3,[[817,1,1,2,3]]]],[8306,11779,20771]]]]},{"k":"H5481","v":[["dulcimer",[3,3,[[26,3,3,0,3,[[852,3,3,0,3]]]],[21812,21817,21822]]]]},{"k":"H5482","v":[["Syene",[2,2,[[25,2,2,0,2,[[830,1,1,0,1],[831,1,1,1,2]]]],[21193,21210]]]]},{"k":"H5483","v":[["*",[140,131,[[0,2,2,0,2,[[46,1,1,0,1],[48,1,1,1,2]]],[1,6,6,2,8,[[58,1,1,2,3],[63,2,2,3,5],[64,3,3,5,8]]],[4,4,3,8,11,[[163,1,1,8,9],[169,2,1,9,10],[172,1,1,10,11]]],[5,3,3,11,14,[[197,3,3,11,14]]],[6,1,1,14,15,[[215,1,1,14,15]]],[9,1,1,15,16,[[281,1,1,15,16]]],[10,13,11,16,27,[[294,2,2,16,18],[300,3,3,18,21],[308,1,1,21,22],[310,5,4,22,26],[312,2,1,26,27]]],[11,20,19,27,46,[[314,1,1,27,28],[315,2,1,28,29],[317,1,1,29,30],[318,3,3,30,33],[319,5,5,33,38],[321,3,3,38,41],[322,1,1,41,42],[323,1,1,42,43],[326,1,1,43,44],[330,1,1,44,45],[335,1,1,45,46]]],[13,7,7,46,53,[[367,2,2,46,48],[375,3,3,48,51],[389,1,1,51,52],[391,1,1,52,53]]],[14,1,1,53,54,[[404,1,1,53,54]]],[15,2,2,54,56,[[415,1,1,54,55],[419,1,1,55,56]]],[16,6,5,56,61,[[431,5,4,56,60],[433,1,1,60,61]]],[17,2,2,61,63,[[474,2,2,61,63]]],[18,5,5,63,68,[[497,1,1,63,64],[509,1,1,64,65],[510,1,1,65,66],[553,1,1,66,67],[624,1,1,67,68]]],[19,2,2,68,70,[[648,1,1,68,69],[653,1,1,69,70]]],[20,1,1,70,71,[[668,1,1,70,71]]],[22,10,10,71,81,[[680,1,1,71,72],[683,1,1,72,73],[708,1,1,73,74],[709,2,2,74,76],[714,1,1,76,77],[716,1,1,77,78],[721,1,1,78,79],[741,1,1,79,80],[744,1,1,80,81]]],[23,16,16,81,97,[[748,1,1,81,82],[749,1,1,82,83],[750,1,1,83,84],[752,3,3,84,87],[756,1,1,87,88],[761,1,1,88,89],[766,1,1,89,90],[775,1,1,90,91],[790,2,2,91,93],[794,2,2,93,95],[795,2,2,95,97]]],[25,12,12,97,109,[[818,1,1,97,98],[824,4,4,98,102],[827,3,3,102,105],[828,1,1,105,106],[839,2,2,106,108],[840,1,1,108,109]]],[27,2,2,109,111,[[862,1,1,109,110],[875,1,1,110,111]]],[28,1,1,111,112,[[877,1,1,111,112]]],[29,3,3,112,115,[[880,1,1,112,113],[882,1,1,113,114],[884,1,1,114,115]]],[32,1,1,115,116,[[897,1,1,115,116]]],[33,1,1,116,117,[[902,1,1,116,117]]],[34,3,3,117,120,[[903,1,1,117,118],[905,2,2,118,120]]],[36,1,1,120,121,[[910,1,1,120,121]]],[37,14,10,121,131,[[911,2,1,121,122],[916,5,3,122,125],[919,1,1,125,126],[920,2,2,126,128],[922,2,1,128,129],[924,2,2,129,131]]]],[1437,1490,1745,1898,1912,1921,1939,1941,5212,5380,5428,6111,6113,6116,6645,8390,8870,8872,9104,9107,9108,9346,9409,9428,9429,9433,9484,9562,9583,9656,9688,9689,9691,9713,9714,9717,9720,9721,9774,9775,9789,9795,9845,9916,10047,10176,11210,11211,11388,11389,11392,11671,11732,12093,12355,12488,12801,12802,12803,12804,12827,13852,13853,14189,14364,14383,15087,16361,17015,17144,17500,17692,17767,18233,18251,18253,18338,18404,18522,18879,18942,19040,19066,19112,19159,19160,19169,19254,19382,19458,19731,20049,20054,20203,20208,20233,20239,20840,21013,21019,21027,21030,21107,21110,21111,21135,21429,21440,21468,22101,22285,22315,22394,22420,22462,22643,22714,22739,22776,22783,22877,22886,22949,22950,22953,23009,23019,23021,23049,23083,23088]]],["+",[4,4,[[6,1,1,0,1,[[215,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]],[11,2,2,2,4,[[321,2,2,2,4]]]],[6645,9346,9774,9775]]],["crane",[2,2,[[22,1,1,0,1,[[716,1,1,0,1]]],[23,1,1,1,2,[[752,1,1,1,2]]]],[18404,19160]]],["horse",[35,33,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,3,3,1,4,[[64,3,3,1,4]]],[10,4,3,4,7,[[300,1,1,4,5],[310,3,2,5,7]]],[13,2,2,7,9,[[367,1,1,7,8],[389,1,1,8,9]]],[15,1,1,9,10,[[415,1,1,9,10]]],[16,4,4,10,14,[[431,4,4,10,14]]],[17,2,2,14,16,[[474,2,2,14,16]]],[18,4,4,16,20,[[509,1,1,16,17],[510,1,1,17,18],[553,1,1,18,19],[624,1,1,19,20]]],[19,2,2,20,22,[[648,1,1,20,21],[653,1,1,21,22]]],[22,2,2,22,24,[[721,1,1,22,23],[741,1,1,23,24]]],[23,3,3,24,27,[[752,1,1,24,25],[775,1,1,25,26],[795,1,1,26,27]]],[29,1,1,27,28,[[880,1,1,27,28]]],[37,6,5,28,33,[[911,1,1,28,29],[919,1,1,29,30],[920,1,1,30,31],[922,2,1,31,32],[924,1,1,32,33]]]],[1490,1921,1939,1941,9108,9428,9433,11211,11671,12355,12801,12802,12803,12804,13852,13853,14364,14383,15087,16361,17015,17144,18522,18879,19159,19731,20233,22394,22886,23009,23019,23049,23083]]],["horseback",[2,2,[[16,2,2,0,2,[[431,1,1,0,1],[433,1,1,1,2]]]],[12802,12827]]],["horses",[96,91,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,3,3,1,4,[[58,1,1,1,2],[63,2,2,2,4]]],[4,4,3,4,7,[[163,1,1,4,5],[169,2,1,5,6],[172,1,1,6,7]]],[5,3,3,7,10,[[197,3,3,7,10]]],[9,1,1,10,11,[[281,1,1,10,11]]],[10,8,7,11,18,[[294,2,2,11,13],[300,2,2,13,15],[310,2,2,15,17],[312,2,1,17,18]]],[11,18,17,18,35,[[314,1,1,18,19],[315,2,1,19,20],[317,1,1,20,21],[318,3,3,21,24],[319,5,5,24,29],[321,1,1,29,30],[322,1,1,30,31],[323,1,1,31,32],[326,1,1,32,33],[330,1,1,33,34],[335,1,1,34,35]]],[13,5,5,35,40,[[367,1,1,35,36],[375,3,3,36,39],[391,1,1,39,40]]],[14,1,1,40,41,[[404,1,1,40,41]]],[15,1,1,41,42,[[419,1,1,41,42]]],[18,1,1,42,43,[[497,1,1,42,43]]],[20,1,1,43,44,[[668,1,1,43,44]]],[22,6,6,44,50,[[680,1,1,44,45],[708,1,1,45,46],[709,2,2,46,48],[714,1,1,48,49],[744,1,1,49,50]]],[23,12,12,50,62,[[748,1,1,50,51],[749,1,1,51,52],[750,1,1,52,53],[752,1,1,53,54],[756,1,1,54,55],[761,1,1,55,56],[766,1,1,56,57],[790,2,2,57,59],[794,2,2,59,61],[795,1,1,61,62]]],[25,12,12,62,74,[[818,1,1,62,63],[824,4,4,63,67],[827,3,3,67,70],[828,1,1,70,71],[839,2,2,71,73],[840,1,1,73,74]]],[27,2,2,74,76,[[862,1,1,74,75],[875,1,1,75,76]]],[28,1,1,76,77,[[877,1,1,76,77]]],[29,2,2,77,79,[[882,1,1,77,78],[884,1,1,78,79]]],[32,1,1,79,80,[[897,1,1,79,80]]],[33,1,1,80,81,[[902,1,1,80,81]]],[34,3,3,81,84,[[903,1,1,81,82],[905,2,2,82,84]]],[36,1,1,84,85,[[910,1,1,84,85]]],[37,8,6,85,91,[[911,1,1,85,86],[916,5,3,86,89],[920,1,1,89,90],[924,1,1,90,91]]]],[1437,1745,1898,1912,5212,5380,5428,6111,6113,6116,8390,8870,8872,9104,9107,9409,9429,9484,9562,9583,9656,9688,9689,9691,9713,9714,9717,9720,9721,9789,9795,9845,9916,10047,10176,11210,11388,11389,11392,11732,12093,12488,14189,17500,17692,18233,18251,18253,18338,18942,19040,19066,19112,19169,19254,19382,19458,20049,20054,20203,20208,20239,20840,21013,21019,21027,21030,21107,21110,21111,21135,21429,21440,21468,22101,22285,22315,22420,22462,22643,22714,22739,22776,22783,22877,22886,22949,22950,22953,23021,23088]]],["horses'",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17767]]]]},{"k":"H5484","v":[["horses",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17546]]]]},{"k":"H5485","v":[["Susi",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4086]]]]},{"k":"H5486","v":[["*",[9,7,[[16,1,1,0,1,[[434,1,1,0,1]]],[18,1,1,1,2,[[550,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]],[23,2,1,3,4,[[752,2,1,3,4]]],[29,1,1,4,5,[[881,1,1,4,5]]],[35,3,2,5,7,[[906,3,2,5,7]]]],[12862,15039,18939,19166,22410,22789,22790]]],["+",[4,3,[[18,1,1,0,1,[[550,1,1,0,1]]],[23,2,1,1,2,[[752,2,1,1,2]]],[35,1,1,2,3,[[906,1,1,2,3]]]],[15039,19166,22789]]],["consume",[2,1,[[35,2,1,0,1,[[906,2,1,0,1]]]],[22790]]],["consumed",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18939]]],["end",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22410]]],["perish",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12862]]]]},{"k":"H5487","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21802,21870]]],["consume",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21802]]],["fulfilled",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21870]]]]},{"k":"H5488","v":[["*",[28,28,[[1,7,7,0,7,[[51,2,2,0,2],[59,1,1,2,3],[62,1,1,3,4],[64,2,2,4,6],[72,1,1,6,7]]],[3,4,4,7,11,[[130,1,1,7,8],[137,1,1,8,9],[149,2,2,9,11]]],[4,3,3,11,14,[[153,1,1,11,12],[154,1,1,12,13],[163,1,1,13,14]]],[5,3,3,14,17,[[188,1,1,14,15],[190,1,1,15,16],[210,1,1,16,17]]],[6,1,1,17,18,[[221,1,1,17,18]]],[10,1,1,18,19,[[299,1,1,18,19]]],[15,1,1,19,20,[[421,1,1,19,20]]],[18,5,5,20,25,[[583,3,3,20,23],[613,2,2,23,25]]],[22,1,1,25,26,[[697,1,1,25,26]]],[23,1,1,26,27,[[793,1,1,26,27]]],[31,1,1,27,28,[[890,1,1,27,28]]]],[1557,1559,1796,1885,1924,1942,2175,4133,4344,4770,4771,4932,4939,5212,5879,5933,6482,6845,9077,12520,15658,15660,15673,16209,16211,18010,20148,22553]]],["+",[2,2,[[1,2,2,0,2,[[64,1,1,0,1],[72,1,1,1,2]]]],[1942,2175]]],["Red",[22,22,[[1,3,3,0,3,[[59,1,1,0,1],[62,1,1,1,2],[64,1,1,2,3]]],[3,4,4,3,7,[[130,1,1,3,4],[137,1,1,4,5],[149,2,2,5,7]]],[4,3,3,7,10,[[153,1,1,7,8],[154,1,1,8,9],[163,1,1,9,10]]],[5,3,3,10,13,[[188,1,1,10,11],[190,1,1,11,12],[210,1,1,12,13]]],[6,1,1,13,14,[[221,1,1,13,14]]],[10,1,1,14,15,[[299,1,1,14,15]]],[15,1,1,15,16,[[421,1,1,15,16]]],[18,5,5,16,21,[[583,3,3,16,19],[613,2,2,19,21]]],[23,1,1,21,22,[[793,1,1,21,22]]]],[1796,1885,1924,4133,4344,4770,4771,4932,4939,5212,5879,5933,6482,6845,9077,12520,15658,15660,15673,16209,16211,20148]]],["flags",[3,3,[[1,2,2,0,2,[[51,2,2,0,2]]],[22,1,1,2,3,[[697,1,1,2,3]]]],[1557,1559,18010]]],["weeds",[1,1,[[31,1,1,0,1,[[890,1,1,0,1]]]],[22553]]]]},{"k":"H5489","v":[["Red",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4893]]]]},{"k":"H5490","v":[["*",[5,5,[[13,1,1,0,1,[[386,1,1,0,1]]],[20,3,3,1,4,[[661,1,1,1,2],[665,1,1,2,3],[670,1,1,3,4]]],[28,1,1,4,5,[[877,1,1,4,5]]]],[11603,17370,17431,17536,22331]]],["conclusion",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17536]]],["end",[3,3,[[13,1,1,0,1,[[386,1,1,0,1]]],[20,2,2,1,3,[[661,1,1,1,2],[665,1,1,2,3]]]],[11603,17370,17431]]],["part",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22331]]]]},{"k":"H5491","v":[["end",[5,5,[[26,5,5,0,5,[[853,2,2,0,2],[855,1,1,2,3],[856,2,2,3,5]]]],[21848,21859,21931,21959,21961]]]]},{"k":"H5492","v":[["*",[16,16,[[3,1,1,0,1,[[137,1,1,0,1]]],[17,3,3,1,4,[[456,1,1,1,2],[462,1,1,2,3],[472,1,1,3,4]]],[18,1,1,4,5,[[560,1,1,4,5]]],[19,2,2,5,7,[[628,1,1,5,6],[637,1,1,6,7]]],[22,5,5,7,12,[[683,1,1,7,8],[695,1,1,8,9],[699,1,1,9,10],[707,1,1,10,11],[744,1,1,11,12]]],[23,1,1,12,13,[[748,1,1,12,13]]],[27,1,1,13,14,[[869,1,1,13,14]]],[29,1,1,14,15,[[879,1,1,14,15]]],[33,1,1,15,16,[[900,1,1,15,16]]]],[4354,13373,13501,13778,15256,16427,16681,17767,17996,18036,18199,18937,19040,22201,22378,22687]]],["sea",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4354]]],["storm",[3,3,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,1,1,1,2,[[560,1,1,1,2]]],[22,1,1,2,3,[[707,1,1,2,3]]]],[13373,15256,18199]]],["tempest",[1,1,[[17,1,1,0,1,[[462,1,1,0,1]]]],[13501]]],["whirlwind",[10,10,[[17,1,1,0,1,[[472,1,1,0,1]]],[19,2,2,1,3,[[628,1,1,1,2],[637,1,1,2,3]]],[22,3,3,3,6,[[683,1,1,3,4],[695,1,1,4,5],[744,1,1,5,6]]],[23,1,1,6,7,[[748,1,1,6,7]]],[27,1,1,7,8,[[869,1,1,7,8]]],[29,1,1,8,9,[[879,1,1,8,9]]],[33,1,1,9,10,[[900,1,1,9,10]]]],[13778,16427,16681,17767,17996,18937,19040,22201,22378,22687]]],["whirlwinds",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18036]]]]},{"k":"H5493","v":[["*",[301,282,[[0,11,11,0,11,[[7,1,1,0,1],[18,2,2,1,3],[29,2,2,3,5],[34,1,1,5,6],[37,2,2,6,8],[40,1,1,8,9],[47,1,1,9,10],[48,1,1,10,11]]],[1,13,13,11,24,[[52,2,2,11,13],[57,4,4,13,17],[59,1,1,17,18],[63,1,1,18,19],[72,1,1,19,20],[74,1,1,20,21],[81,1,1,21,22],[82,1,1,22,23],[83,1,1,23,24]]],[2,12,10,24,34,[[90,1,1,24,25],[92,4,4,25,29],[93,5,3,29,32],[96,1,1,32,33],[102,1,1,33,34]]],[3,4,4,34,38,[[128,1,1,34,35],[130,1,1,35,36],[132,1,1,36,37],[137,1,1,37,38]]],[4,15,15,38,53,[[154,1,1,38,39],[156,1,1,39,40],[157,1,1,40,41],[159,2,2,41,43],[161,2,2,43,45],[163,2,2,45,47],[169,3,3,47,50],[173,1,1,50,51],[180,1,1,51,52],[183,1,1,52,53]]],[5,7,6,53,59,[[187,1,1,53,54],[193,1,1,54,55],[197,1,1,55,56],[209,2,1,56,57],[210,2,2,57,59]]],[6,16,14,59,73,[[212,1,1,59,60],[214,3,1,60,61],[219,1,1,61,62],[220,1,1,62,63],[224,1,1,63,64],[226,3,3,64,67],[228,2,2,67,69],[229,3,3,69,72],[230,1,1,72,73]]],[7,2,1,73,74,[[235,2,1,73,74]]],[8,22,21,74,95,[[236,1,1,74,75],[241,2,2,75,77],[242,2,2,77,79],[247,2,2,79,81],[250,3,2,81,83],[251,2,2,83,85],[252,3,3,85,88],[253,2,2,88,90],[256,1,1,90,91],[257,1,1,91,92],[263,3,3,92,95]]],[9,12,10,95,105,[[268,3,3,95,98],[270,1,1,98,99],[271,1,1,99,100],[272,1,1,100,101],[273,3,1,101,102],[278,1,1,102,103],[282,1,1,103,104],[288,1,1,104,105]]],[10,11,10,105,115,[[292,1,1,105,106],[305,4,4,106,110],[310,3,3,110,113],[312,3,2,113,115]]],[11,32,31,115,146,[[315,2,2,115,117],[316,3,3,117,120],[318,1,1,120,121],[322,2,2,121,123],[324,1,1,123,124],[325,3,3,124,127],[326,2,2,127,129],[327,6,6,129,135],[328,1,1,135,136],[329,3,3,136,139],[330,3,3,139,142],[334,1,1,142,143],[335,3,2,143,145],[336,1,1,145,146]]],[12,3,2,146,148,[[350,1,1,146,147],[354,2,1,147,148]]],[13,22,20,148,168,[[374,1,1,148,149],[380,2,2,149,151],[381,2,2,151,153],[383,1,1,153,154],[386,3,3,154,157],[391,1,1,157,158],[396,3,2,158,160],[398,1,1,160,161],[399,2,2,161,163],[400,3,2,163,165],[401,2,2,165,167],[402,1,1,167,168]]],[15,1,1,168,169,[[421,1,1,168,169]]],[16,3,3,169,172,[[428,1,1,169,170],[429,1,1,170,171],[433,1,1,171,172]]],[17,18,17,172,189,[[436,2,2,172,174],[437,1,1,174,175],[444,1,1,175,176],[447,2,2,176,178],[450,2,1,178,179],[454,1,1,179,180],[456,1,1,180,181],[457,1,1,181,182],[462,2,2,182,184],[463,1,1,184,185],[468,1,1,185,186],[469,3,3,186,189]]],[18,13,13,189,202,[[483,1,1,189,190],[491,1,1,190,191],[495,1,1,191,192],[511,1,1,192,193],[514,1,1,193,194],[516,1,1,194,195],[543,1,1,195,196],[558,1,1,196,197],[578,1,1,197,198],[596,3,3,198,201],[616,1,1,201,202]]],[19,17,17,202,219,[[630,1,1,202,203],[631,2,2,203,205],[632,1,1,205,206],[636,2,2,206,208],[638,1,1,208,209],[640,2,2,209,211],[641,2,2,211,213],[642,1,1,213,214],[643,2,2,214,216],[649,1,1,216,217],[654,1,1,217,218],[655,1,1,218,219]]],[20,1,1,219,220,[[669,1,1,219,220]]],[22,25,23,220,243,[[679,2,2,220,222],[681,2,2,222,224],[683,2,2,224,226],[684,1,1,226,227],[685,1,1,227,228],[688,2,2,228,230],[689,1,1,230,231],[692,2,1,231,232],[695,1,1,232,233],[696,1,1,233,234],[703,1,1,234,235],[705,1,1,235,236],[708,1,1,236,237],[709,1,1,237,238],[714,1,1,238,239],[727,1,1,239,240],[730,2,1,240,241],[736,1,1,241,242],[737,1,1,242,243]]],[23,9,9,243,252,[[748,2,2,243,245],[749,2,2,245,247],[750,1,1,247,248],[759,1,1,248,249],[761,1,1,249,250],[776,2,2,250,252]]],[24,4,2,252,254,[[799,1,1,252,253],[800,3,1,253,254]]],[25,10,10,254,264,[[807,1,1,254,255],[812,2,2,255,257],[817,2,2,257,259],[822,1,1,259,260],[824,1,1,260,261],[827,1,1,261,262],[837,1,1,262,263],[846,1,1,263,264]]],[26,4,4,264,268,[[858,2,2,264,266],[860,1,1,266,267],[861,1,1,267,268]]],[27,5,5,268,273,[[863,2,2,268,270],[865,1,1,270,271],[868,1,1,271,272],[870,1,1,272,273]]],[29,2,2,273,275,[[883,1,1,273,274],[884,1,1,274,275]]],[35,2,2,275,277,[[908,2,2,275,277]]],[37,3,3,277,280,[[913,1,1,277,278],[919,1,1,278,279],[920,1,1,279,280]]],[38,2,2,280,282,[[926,1,1,280,281],[927,1,1,281,282]]]],[196,459,460,862,865,1013,1133,1138,1237,1468,1483,1582,1583,1718,1721,1739,1741,1794,1914,2169,2210,2446,2496,2530,2761,2782,2787,2788,2793,2804,2826,2830,2883,3110,4069,4117,4220,4347,4965,5013,5085,5115,5126,5169,5173,5224,5236,5375,5381,5384,5460,5625,5757,5858,5989,6122,6466,6490,6499,6562,6617,6783,6827,6917,6966,6968,6969,6996,7008,7035,7036,7039,7062,7191,7226,7334,7343,7355,7356,7480,7481,7566,7592,7609,7618,7644,7657,7664,7688,7689,7778,7801,7945,7957,7958,8070,8071,8072,8127,8138,8167,8195,8296,8435,8625,8801,9254,9261,9262,9263,9432,9447,9449,9512,9523,9578,9579,9611,9613,9614,9706,9822,9824,9853,9873,9877,9882,9900,9920,9929,9934,9943,9949,9953,9960,9980,10001,10005,10006,10028,10030,10046,10147,10184,10192,10205,10773,10876,11361,11478,11480,11506,11507,11529,11597,11619,11620,11731,11836,11841,11887,11916,11923,11935,11966,11978,11981,11996,12530,12757,12766,12819,12870,12877,12894,13085,13148,13152,13233,13306,13369,13406,13483,13486,13532,13667,13688,13703,13710,13993,14083,14140,14402,14477,14522,14893,15223,15517,15927,16000,16013,16258,16462,16514,16517,16524,16642,16654,16710,16761,16766,16788,16799,16831,16846,16857,17021,17191,17205,17523,17670,17679,17708,17725,17744,17762,17776,17799,17863,17877,17897,17953,17984,18002,18126,18160,18228,18252,18337,18657,18707,18795,18815,19028,19031,19068,19081,19117,19320,19362,19762,19771,20365,20435,20572,20673,20674,20804,20812,20970,21032,21116,21385,21639,21993,21999,22067,22092,22107,22122,22151,22192,22220,22446,22457,22831,22835,22916,23006,23027,23111,23127]]],["+",[56,55,[[0,3,3,0,3,[[7,1,1,0,1],[34,1,1,1,2],[40,1,1,2,3]]],[1,4,4,3,7,[[63,1,1,3,4],[72,1,1,4,5],[82,1,1,5,6],[83,1,1,6,7]]],[2,1,1,7,8,[[90,1,1,7,8]]],[3,1,1,8,9,[[137,1,1,8,9]]],[4,4,4,9,13,[[159,1,1,9,10],[169,2,2,10,12],[173,1,1,12,13]]],[5,2,2,13,15,[[197,1,1,13,14],[210,1,1,14,15]]],[6,2,2,15,17,[[219,1,1,15,16],[220,1,1,16,17]]],[8,7,7,17,24,[[236,1,1,17,18],[241,1,1,18,19],[242,2,2,19,21],[247,2,2,21,23],[252,1,1,23,24]]],[9,3,3,24,27,[[270,1,1,24,25],[272,1,1,25,26],[282,1,1,26,27]]],[10,5,5,27,32,[[305,2,2,27,29],[310,2,2,29,31],[312,1,1,31,32]]],[11,7,6,32,38,[[315,1,1,32,33],[318,1,1,33,34],[329,1,1,34,35],[330,1,1,35,36],[334,1,1,36,37],[335,2,1,37,38]]],[12,1,1,38,39,[[354,1,1,38,39]]],[13,7,7,39,46,[[380,1,1,39,40],[383,1,1,40,41],[396,1,1,41,42],[398,1,1,42,43],[399,2,2,43,45],[400,1,1,45,46]]],[16,2,2,46,48,[[428,1,1,46,47],[433,1,1,47,48]]],[17,1,1,48,49,[[444,1,1,48,49]]],[22,1,1,49,50,[[681,1,1,49,50]]],[25,4,4,50,54,[[812,1,1,50,51],[817,1,1,51,52],[827,1,1,52,53],[837,1,1,53,54]]],[27,1,1,54,55,[[863,1,1,54,55]]]],[196,1013,1237,1914,2169,2496,2530,2761,4347,5115,5381,5384,5460,6122,6490,6783,6827,7226,7343,7355,7356,7480,7481,7664,8127,8167,8435,9254,9261,9432,9449,9523,9578,9706,10006,10028,10147,10192,10876,11478,11529,11841,11887,11916,11923,11966,12757,12819,13085,17725,20673,20812,21116,21385,22122]]],["Depart",[9,9,[[3,1,1,0,1,[[132,1,1,0,1]]],[17,2,2,1,3,[[456,1,1,1,2],[457,1,1,2,3]]],[18,4,4,3,7,[[483,1,1,3,4],[511,1,1,4,5],[514,1,1,5,6],[596,1,1,6,7]]],[22,1,1,7,8,[[730,1,1,7,8]]],[24,1,1,8,9,[[800,1,1,8,9]]]],[4220,13369,13406,13993,14402,14477,16013,18707,20435]]],["Get",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18228]]],["Remove",[3,3,[[18,2,2,0,2,[[516,1,1,0,1],[596,1,1,1,2]]],[25,1,1,2,3,[[822,1,1,2,3]]]],[14522,15927,20970]]],["aside",[24,23,[[1,3,3,0,3,[[52,2,2,0,2],[81,1,1,2,3]]],[4,7,7,3,10,[[157,1,1,3,4],[161,2,2,4,6],[163,2,2,6,8],[180,1,1,8,9],[183,1,1,9,10]]],[5,1,1,10,11,[[209,1,1,10,11]]],[6,3,3,11,14,[[224,1,1,11,12],[229,2,2,12,14]]],[7,2,1,14,15,[[235,2,1,14,15]]],[9,3,3,15,18,[[268,3,3,15,18]]],[10,2,2,18,20,[[310,1,1,18,19],[312,1,1,19,20]]],[18,1,1,20,21,[[491,1,1,20,21]]],[23,1,1,21,22,[[759,1,1,21,22]]],[24,1,1,22,23,[[799,1,1,22,23]]]],[1582,1583,2446,5085,5169,5173,5224,5236,5625,5757,6466,6917,7036,7039,7191,8070,8071,8072,9447,9512,14083,19320,20365]]],["away",[69,66,[[1,2,2,0,2,[[57,1,1,0,1],[59,1,1,1,2]]],[2,9,7,2,9,[[92,3,3,2,5],[93,5,3,5,8],[96,1,1,8,9]]],[4,1,1,9,10,[[159,1,1,9,10]]],[5,2,2,10,12,[[193,1,1,10,11],[210,1,1,11,12]]],[8,2,2,12,14,[[252,1,1,12,13],[263,1,1,13,14]]],[9,3,2,14,16,[[271,1,1,14,15],[273,2,1,15,16]]],[10,2,2,16,18,[[292,1,1,16,17],[312,1,1,17,18]]],[11,4,4,18,22,[[324,1,1,18,19],[326,1,1,19,20],[330,1,1,20,21],[335,1,1,21,22]]],[13,6,6,22,28,[[380,1,1,22,23],[381,1,1,23,24],[386,1,1,24,25],[391,1,1,25,26],[396,2,2,26,28]]],[16,1,1,28,29,[[429,1,1,28,29]]],[17,6,6,29,35,[[447,2,2,29,31],[450,1,1,31,32],[462,1,1,32,33],[469,2,2,33,35]]],[18,2,2,35,37,[[495,1,1,35,36],[543,1,1,36,37]]],[19,2,2,37,39,[[631,1,1,37,38],[655,1,1,38,39]]],[22,13,13,39,52,[[679,2,2,39,41],[681,1,1,41,42],[683,2,2,42,44],[684,1,1,44,45],[688,1,1,45,46],[695,1,1,46,47],[696,1,1,47,48],[703,1,1,48,49],[705,1,1,49,50],[714,1,1,50,51],[736,1,1,51,52]]],[23,3,3,52,55,[[748,2,2,52,54],[749,1,1,54,55]]],[25,1,1,55,56,[[824,1,1,55,56]]],[26,2,2,56,58,[[860,1,1,56,57],[861,1,1,57,58]]],[27,1,1,58,59,[[863,1,1,58,59]]],[29,1,1,59,60,[[883,1,1,59,60]]],[35,2,2,60,62,[[908,2,2,60,62]]],[37,3,3,62,65,[[913,1,1,62,63],[919,1,1,63,64],[920,1,1,64,65]]],[38,1,1,65,66,[[927,1,1,65,66]]]],[1718,1794,2782,2788,2793,2804,2826,2830,2883,5126,5989,6499,7644,7945,8138,8195,8801,9523,9853,9900,10046,10184,11480,11507,11620,11731,11836,11841,12766,13148,13152,13233,13483,13688,13703,14140,14893,16514,17205,17670,17679,17708,17744,17762,17776,17877,17984,18002,18126,18160,18337,18795,19028,19031,19068,21032,22067,22092,22107,22446,22831,22835,22916,23006,23027,23127]]],["back",[2,2,[[17,1,1,0,1,[[469,1,1,0,1]]],[22,1,1,1,2,[[709,1,1,1,2]]]],[13710,18252]]],["brought",[1,1,[[12,1,1,0,1,[[350,1,1,0,1]]]],[10773]]],["by",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1138]]],["decline",[1,1,[[4,1,1,0,1,[[169,1,1,0,1]]]],[5375]]],["declined",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11935]]],["depart",[31,29,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[57,2,2,1,3]]],[4,1,1,3,4,[[156,1,1,3,4]]],[8,1,1,4,5,[[250,1,1,4,5]]],[9,2,2,5,7,[[278,1,1,5,6],[288,1,1,6,7]]],[13,1,1,7,8,[[401,1,1,7,8]]],[17,2,2,8,10,[[450,1,1,8,9],[463,1,1,9,10]]],[18,2,2,10,12,[[578,1,1,10,11],[616,1,1,11,12]]],[19,10,10,12,22,[[630,1,1,12,13],[632,1,1,13,14],[640,2,2,14,16],[641,1,1,16,17],[642,1,1,17,18],[643,2,2,18,20],[649,1,1,20,21],[654,1,1,21,22]]],[22,4,3,22,25,[[689,1,1,22,23],[692,2,1,23,24],[730,1,1,24,25]]],[23,1,1,25,26,[[776,1,1,25,26]]],[24,2,1,26,27,[[800,2,1,26,27]]],[25,1,1,27,28,[[817,1,1,27,28]]],[27,1,1,28,29,[[870,1,1,28,29]]]],[1483,1721,1739,5013,7566,8296,8625,11981,13233,13532,15517,16258,16462,16524,16761,16766,16799,16831,16846,16857,17021,17191,17897,17953,18707,19771,20435,20804,22220]]],["departed",[31,31,[[2,1,1,0,1,[[102,1,1,0,1]]],[3,2,2,1,3,[[128,1,1,1,2],[130,1,1,2,3]]],[6,1,1,3,4,[[226,1,1,3,4]]],[8,6,6,4,10,[[250,1,1,4,5],[251,2,2,5,7],[253,1,1,7,8],[263,2,2,8,10]]],[11,13,13,10,23,[[315,1,1,10,11],[322,2,2,11,13],[325,3,3,13,16],[326,1,1,16,17],[327,4,4,17,21],[329,1,1,21,22],[330,1,1,22,23]]],[13,3,3,23,26,[[374,1,1,23,24],[386,1,1,24,25],[400,1,1,25,26]]],[15,1,1,26,27,[[421,1,1,26,27]]],[18,1,1,27,28,[[596,1,1,27,28]]],[22,1,1,28,29,[[685,1,1,28,29]]],[25,1,1,29,30,[[807,1,1,29,30]]],[38,1,1,30,31,[[926,1,1,30,31]]]],[3110,4069,4117,6969,7566,7609,7618,7688,7957,7958,9579,9822,9824,9873,9877,9882,9920,9934,9943,9949,9953,10005,10030,11361,11619,11966,12530,16000,17799,20572,23111]]],["departeth",[3,3,[[19,1,1,0,1,[[641,1,1,0,1]]],[22,1,1,1,2,[[737,1,1,1,2]]],[23,1,1,2,3,[[761,1,1,2,3]]]],[16788,18815,19362]]],["departing",[2,2,[[26,2,2,0,2,[[858,2,2,0,2]]]],[21993,21999]]],["down",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[11996]]],["eschewed",[1,1,[[17,1,1,0,1,[[436,1,1,0,1]]]],[12870]]],["escheweth",[2,2,[[17,2,2,0,2,[[436,1,1,0,1],[437,1,1,1,2]]]],[12877,12894]]],["fro",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18657]]],["go",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6966]]],["goeth",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7801]]],["grievous",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19117]]],["in",[9,7,[[0,2,2,0,2,[[18,2,2,0,2]]],[6,5,3,2,5,[[214,3,1,2,3],[228,1,1,3,4],[229,1,1,4,5]]],[11,2,2,5,7,[[316,2,2,5,7]]]],[459,460,6617,6996,7035,9611,9613]]],["off",[1,1,[[2,1,1,0,1,[[92,1,1,0,1]]]],[2787]]],["past",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7592]]],["put",[2,2,[[0,1,1,0,1,[[37,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]]],[1133,7657]]],["rebel",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22192]]],["remove",[7,7,[[0,1,1,0,1,[[47,1,1,0,1]]],[11,1,1,1,2,[[336,1,1,1,2]]],[17,1,1,2,3,[[462,1,1,2,3]]],[19,1,1,3,4,[[631,1,1,3,4]]],[20,1,1,4,5,[[669,1,1,4,5]]],[23,1,1,5,6,[[776,1,1,5,6]]],[25,1,1,6,7,[[846,1,1,6,7]]]],[1468,10205,13486,16517,17523,19762,21639]]],["removed",[15,15,[[0,1,1,0,1,[[29,1,1,0,1]]],[1,1,1,1,2,[[57,1,1,1,2]]],[8,2,2,2,4,[[241,1,1,2,3],[253,1,1,3,4]]],[10,2,2,4,6,[[305,2,2,4,6]]],[11,4,4,6,10,[[327,2,2,6,8],[328,1,1,8,9],[329,1,1,9,10]]],[13,2,2,10,12,[[381,1,1,10,11],[401,1,1,11,12]]],[18,1,1,12,13,[[558,1,1,12,13]]],[22,1,1,13,14,[[688,1,1,13,14]]],[29,1,1,14,15,[[884,1,1,14,15]]]],[865,1741,7334,7689,9262,9263,9929,9960,9980,10001,11506,11978,15223,17863,22457]]],["removing",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[862]]],["revolted",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19081]]],["sour",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22151]]],["take",[1,1,[[25,1,1,0,1,[[812,1,1,0,1]]]],[20674]]],["taken",[3,3,[[1,1,1,0,1,[[74,1,1,0,1]]],[8,1,1,1,2,[[256,1,1,1,2]]],[17,1,1,2,3,[[454,1,1,2,3]]]],[2210,7778,13306]]],["took",[2,2,[[9,1,1,0,1,[[273,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]]],[8195,10876]]],["turn",[6,6,[[4,1,1,0,1,[[154,1,1,0,1]]],[5,2,2,1,3,[[187,1,1,1,2],[209,1,1,2,3]]],[6,1,1,3,4,[[230,1,1,3,4]]],[19,2,2,4,6,[[636,2,2,4,6]]]],[4965,5858,6466,7062,16642,16654]]],["turned",[4,4,[[6,2,2,0,2,[[212,1,1,0,1],[228,1,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]],[13,1,1,3,4,[[386,1,1,3,4]]]],[6562,7008,9614,11597]]],["went",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6968]]],["withdraw",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13667]]],["without",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16710]]]]},{"k":"H5494","v":[["degenerate",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18986]]]]},{"k":"H5495","v":[["Sur",[1,1,[[11,1,1,0,1,[[323,1,1,0,1]]]],[9835]]]]},{"k":"H5496","v":[["*",[18,18,[[4,1,1,0,1,[[165,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]],[6,1,1,2,3,[[211,1,1,2,3]]],[8,1,1,3,4,[[261,1,1,3,4]]],[9,1,1,4,5,[[290,1,1,4,5]]],[10,1,1,5,6,[[311,1,1,5,6]]],[11,1,1,6,7,[[330,1,1,6,7]]],[12,1,1,7,8,[[358,1,1,7,8]]],[13,4,4,8,12,[[384,2,2,8,10],[398,2,2,10,12]]],[17,3,3,12,15,[[437,1,1,12,13],[471,2,2,13,15]]],[22,1,1,15,16,[[714,1,1,15,16]]],[23,2,2,16,18,[[782,1,1,16,17],[787,1,1,17,18]]]],[5278,6220,6523,7924,8693,9476,10056,10935,11544,11573,11886,11890,12894,13752,13754,18348,19917,20000]]],["+",[3,3,[[9,1,1,0,1,[[290,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]],[23,1,1,2,3,[[787,1,1,2,3]]]],[8693,10935,20000]]],["away",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13754]]],["entice",[1,1,[[4,1,1,0,1,[[165,1,1,0,1]]]],[5278]]],["moved",[3,3,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]],[13,1,1,2,3,[[384,1,1,2,3]]]],[6220,6523,11573]]],["movedst",[1,1,[[17,1,1,0,1,[[437,1,1,0,1]]]],[12894]]],["persuade",[3,3,[[13,2,2,0,2,[[398,2,2,0,2]]],[22,1,1,2,3,[[714,1,1,2,3]]]],[11886,11890,18348]]],["persuaded",[1,1,[[13,1,1,0,1,[[384,1,1,0,1]]]],[11544]]],["persuadeth",[1,1,[[11,1,1,0,1,[[330,1,1,0,1]]]],[10056]]],["removed",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13752]]],["set",[1,1,[[23,1,1,0,1,[[782,1,1,0,1]]]],[19917]]],["up",[2,2,[[8,1,1,0,1,[[261,1,1,0,1]]],[10,1,1,1,2,[[311,1,1,1,2]]]],[7924,9476]]]]},{"k":"H5497","v":[["clothes",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1484]]]]},{"k":"H5498","v":[["*",[5,5,[[9,1,1,0,1,[[283,1,1,0,1]]],[23,4,4,1,5,[[759,1,1,1,2],[766,1,1,2,3],[793,1,1,3,4],[794,1,1,4,5]]]],[8462,19318,19473,20147,20211]]],["draw",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8462]]],["drawn",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19473]]],["out",[2,2,[[23,2,2,0,2,[[793,1,1,0,1],[794,1,1,1,2]]]],[20147,20211]]],["tear",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19318]]]]},{"k":"H5499","v":[["clouts",[2,2,[[23,2,2,0,2,[[782,2,2,0,2]]]],[19906,19907]]]]},{"k":"H5500","v":[["scrape",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21104]]]]},{"k":"H5501","v":[["offscouring",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20399]]]]},{"k":"H5502","v":[["*",[2,2,[[19,1,1,0,1,[[655,1,1,0,1]]],[23,1,1,1,2,[[790,1,1,1,2]]]],[17199,20060]]],["away",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20060]]],["sweeping",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17199]]]]},{"k":"H5503","v":[["*",[21,20,[[0,5,5,0,5,[[22,1,1,0,1],[33,2,2,1,3],[36,1,1,3,4],[41,1,1,4,5]]],[10,1,1,5,6,[[300,1,1,5,6]]],[13,2,2,6,8,[[367,1,1,6,7],[375,1,1,7,8]]],[18,1,1,8,9,[[515,1,1,8,9]]],[19,1,1,9,10,[[658,1,1,9,10]]],[22,3,3,10,13,[[701,2,2,10,12],[725,1,1,12,13]]],[23,1,1,13,14,[[758,1,1,13,14]]],[25,7,6,14,20,[[828,6,5,14,19],[839,1,1,19,20]]]],[587,990,1001,1111,1286,9107,11210,11378,14500,17298,18079,18085,18614,19311,21133,21137,21139,21142,21157,21438]]],["+",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21142]]],["about",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19311]]],["merchant",[4,4,[[0,1,1,0,1,[[22,1,1,0,1]]],[25,3,3,1,4,[[828,3,3,1,4]]]],[587,21133,21137,21139]]],["merchantmen",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1111]]],["merchants",[9,9,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,2,2,1,3,[[367,1,1,1,2],[375,1,1,2,3]]],[22,3,3,3,6,[[701,2,2,3,5],[725,1,1,5,6]]],[25,3,3,6,9,[[828,2,2,6,8],[839,1,1,8,9]]]],[9107,11210,11378,18079,18085,18614,21142,21157,21438]]],["merchants'",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17298]]],["panteth",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14500]]],["trade",[2,2,[[0,2,2,0,2,[[33,2,2,0,2]]]],[990,1001]]],["traffick",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1286]]]]},{"k":"H5504","v":[["merchandise",[4,3,[[19,2,2,0,2,[[630,1,1,0,1],[658,1,1,1,2]]],[22,2,1,2,3,[[701,2,1,2,3]]]],[16469,17302,18095]]]]},{"k":"H5505","v":[["*",[3,3,[[19,1,1,0,1,[[630,1,1,0,1]]],[22,2,2,1,3,[[701,1,1,1,2],[723,1,1,2,3]]]],[16469,18080,18575]]],["+",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16469]]],["mart",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18080]]],["merchandise",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18575]]]]},{"k":"H5506","v":[["merchandise",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21136]]]]},{"k":"H5507","v":[["buckler",[1,1,[[18,1,1,0,1,[[568,1,1,0,1]]]],[15399]]]]},{"k":"H5508","v":[["marble",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12708]]]]},{"k":"H5509","v":[["dross",[8,7,[[18,1,1,0,1,[[596,1,1,0,1]]],[19,2,2,1,3,[[652,1,1,1,2],[653,1,1,2,3]]],[22,2,2,3,5,[[679,2,2,3,5]]],[25,3,2,5,7,[[823,3,2,5,7]]]],[16017,17117,17164,17676,17679,20994,20995]]]]},{"k":"H5510","v":[["Sivan",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12826]]]]},{"k":"H5511","v":[["Sihon",[37,34,[[3,9,8,0,8,[[137,8,7,0,7],[148,1,1,7,8]]],[4,11,11,8,19,[[153,1,1,8,9],[154,5,5,9,14],[155,2,2,14,16],[156,1,1,16,17],[181,1,1,17,18],[183,1,1,18,19]]],[5,8,7,19,26,[[188,1,1,19,20],[195,1,1,20,21],[198,2,2,21,23],[199,4,3,23,26]]],[6,4,3,26,29,[[221,4,3,26,29]]],[10,1,1,29,30,[[294,1,1,29,30]]],[15,1,1,30,31,[[421,1,1,30,31]]],[18,2,2,31,33,[[612,1,1,31,32],[613,1,1,32,33]]],[23,1,1,33,34,[[792,1,1,33,34]]]],[4361,4363,4366,4367,4368,4369,4374,4751,4896,4962,4964,4968,4969,4970,4977,4981,5050,5686,5732,5879,6047,6132,6135,6164,6175,6181,6848,6849,6850,8863,12533,16186,16215,20125]]]]},{"k":"H5512","v":[["Sin",[6,6,[[1,2,2,0,2,[[65,1,1,0,1],[66,1,1,1,2]]],[3,2,2,2,4,[[149,2,2,2,4]]],[25,2,2,4,6,[[831,2,2,4,6]]]],[1948,1984,4771,4772,21219,21220]]]]},{"k":"H5513","v":[["Sinite",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[251,10267]]]]},{"k":"H5514","v":[["*",[35,34,[[1,13,13,0,13,[[65,1,1,0,1],[68,6,6,1,7],[73,1,1,7,8],[80,1,1,8,9],[83,4,4,9,13]]],[2,5,4,13,17,[[96,2,1,13,14],[114,1,1,14,15],[115,1,1,15,16],[116,1,1,16,17]]],[3,12,12,17,29,[[117,2,2,17,19],[119,3,3,19,22],[125,2,2,22,24],[126,1,1,24,25],[142,1,1,25,26],[144,1,1,26,27],[149,2,2,27,29]]],[4,1,1,29,30,[[185,1,1,29,30]]],[6,1,1,30,31,[[215,1,1,30,31]]],[15,1,1,31,32,[[421,1,1,31,32]]],[18,2,2,32,34,[[545,2,2,32,34]]]],[1948,2027,2028,2037,2044,2046,2049,2193,2438,2498,2500,2525,2528,2917,3470,3570,3604,3605,3623,3693,3696,3706,3966,3970,4000,4553,4583,4775,4776,5812,6628,12524,14908,14917]]],["+",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5812]]],["Sinai",[34,33,[[1,13,13,0,13,[[65,1,1,0,1],[68,6,6,1,7],[73,1,1,7,8],[80,1,1,8,9],[83,4,4,9,13]]],[2,5,4,13,17,[[96,2,1,13,14],[114,1,1,14,15],[115,1,1,15,16],[116,1,1,16,17]]],[3,12,12,17,29,[[117,2,2,17,19],[119,3,3,19,22],[125,2,2,22,24],[126,1,1,24,25],[142,1,1,25,26],[144,1,1,26,27],[149,2,2,27,29]]],[6,1,1,29,30,[[215,1,1,29,30]]],[15,1,1,30,31,[[421,1,1,30,31]]],[18,2,2,31,33,[[545,2,2,31,33]]]],[1948,2027,2028,2037,2044,2046,2049,2193,2438,2498,2500,2525,2528,2917,3470,3570,3604,3605,3623,3693,3696,3706,3966,3970,4000,4553,4583,4775,4776,6628,12524,14908,14917]]]]},{"k":"H5515","v":[["Sinim",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18648]]]]},{"k":"H5516","v":[["Sisera",[21,19,[[6,17,15,0,15,[[214,13,11,0,11],[215,4,4,11,15]]],[8,1,1,15,16,[[247,1,1,15,16]]],[14,1,1,16,17,[[404,1,1,16,17]]],[15,1,1,17,18,[[419,1,1,17,18]]],[18,1,1,18,19,[[560,1,1,18,19]]]],[6601,6606,6608,6611,6612,6613,6614,6615,6616,6617,6621,6643,6649,6651,6653,7469,12080,12475,15250]]]]},{"k":"H5517","v":[["*",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12071,12467]]],["Sia",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12467]]],["Siaha",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12071]]]]},{"k":"H5518","v":[["*",[34,32,[[1,3,3,0,3,[[65,1,1,0,1],[76,1,1,1,2],[87,1,1,2,3]]],[10,1,1,3,4,[[297,1,1,3,4]]],[11,6,5,4,9,[[316,5,4,4,8],[337,1,1,8,9]]],[13,3,3,9,12,[[370,2,2,9,11],[401,1,1,11,12]]],[17,1,1,12,13,[[476,1,1,12,13]]],[18,3,3,13,16,[[535,1,1,13,14],[537,1,1,14,15],[585,1,1,15,16]]],[20,2,1,16,17,[[665,2,1,16,17]]],[22,1,1,17,18,[[712,1,1,17,18]]],[23,3,3,18,21,[[745,1,1,18,19],[796,2,2,19,21]]],[25,5,5,21,26,[[812,3,3,21,24],[825,2,2,24,26]]],[27,1,1,26,27,[[863,1,1,26,27]]],[29,1,1,27,28,[[882,1,1,27,28]]],[32,1,1,28,29,[[895,1,1,28,29]]],[33,1,1,29,30,[[900,1,1,29,30]]],[37,2,2,30,32,[[924,2,2,30,32]]]],[1950,2275,2636,8979,9641,9642,9643,9644,10236,11257,11262,11979,13919,14788,14815,15751,17435,18316,18959,20294,20295,20658,20662,20666,21059,21062,22111,22412,22611,22694,23088,23089]]],["+",[3,3,[[18,2,2,0,2,[[537,1,1,0,1],[585,1,1,1,2]]],[29,1,1,2,3,[[882,1,1,2,3]]]],[14815,15751,22412]]],["caldron",[3,3,[[25,3,3,0,3,[[812,3,3,0,3]]]],[20658,20662,20666]]],["caldrons",[2,2,[[23,2,2,0,2,[[796,2,2,0,2]]]],[20294,20295]]],["pans",[1,1,[[1,1,1,0,1,[[76,1,1,0,1]]]],[2275]]],["pot",[12,11,[[11,5,4,0,4,[[316,5,4,0,4]]],[17,1,1,4,5,[[476,1,1,4,5]]],[20,1,1,5,6,[[665,1,1,5,6]]],[23,1,1,6,7,[[745,1,1,6,7]]],[25,2,2,7,9,[[825,2,2,7,9]]],[32,1,1,9,10,[[895,1,1,9,10]]],[37,1,1,10,11,[[924,1,1,10,11]]]],[9641,9642,9643,9644,13919,17435,18959,21059,21062,22611,23089]]],["pots",[9,9,[[1,2,2,0,2,[[65,1,1,0,1],[87,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[11,1,1,3,4,[[337,1,1,3,4]]],[13,3,3,4,7,[[370,2,2,4,6],[401,1,1,6,7]]],[18,1,1,7,8,[[535,1,1,7,8]]],[37,1,1,8,9,[[924,1,1,8,9]]]],[1950,2636,8979,10236,11257,11262,11979,14788,23088]]],["thorns",[4,4,[[20,1,1,0,1,[[665,1,1,0,1]]],[22,1,1,1,2,[[712,1,1,1,2]]],[27,1,1,2,3,[[863,1,1,2,3]]],[33,1,1,3,4,[[900,1,1,3,4]]]],[17435,18316,22111,22694]]]]},{"k":"H5519","v":[["multitude",[1,1,[[18,1,1,0,1,[[519,1,1,0,1]]]],[14559]]]]},{"k":"H5520","v":[["*",[4,4,[[18,3,3,0,3,[[487,1,1,0,1],[504,1,1,1,2],[553,1,1,2,3]]],[23,1,1,3,4,[[769,1,1,3,4]]]],[14050,14290,15083,19572]]],["covert",[1,1,[[23,1,1,0,1,[[769,1,1,0,1]]]],[19572]]],["den",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14050]]],["pavilion",[1,1,[[18,1,1,0,1,[[504,1,1,0,1]]]],[14290]]],["tabernacle",[1,1,[[18,1,1,0,1,[[553,1,1,0,1]]]],[15083]]]]},{"k":"H5521","v":[["*",[31,29,[[0,1,1,0,1,[[32,1,1,0,1]]],[2,4,3,1,4,[[112,4,3,1,4]]],[4,3,3,4,7,[[168,2,2,4,6],[183,1,1,6,7]]],[9,2,2,7,9,[[277,1,1,7,8],[288,1,1,8,9]]],[10,2,2,9,11,[[310,2,2,9,11]]],[13,1,1,11,12,[[374,1,1,11,12]]],[14,1,1,12,13,[[405,1,1,12,13]]],[15,5,4,13,17,[[420,5,4,13,17]]],[17,3,3,17,20,[[462,1,1,17,18],[471,1,1,18,19],[473,1,1,19,20]]],[18,2,2,20,22,[[495,1,1,20,21],[508,1,1,21,22]]],[22,2,2,22,24,[[679,1,1,22,23],[682,1,1,23,24]]],[29,1,1,24,25,[[887,1,1,24,25]]],[31,1,1,25,26,[[892,1,1,25,26]]],[37,3,3,26,29,[[924,3,3,26,29]]]],[977,3436,3444,3445,5355,5358,5738,8270,8614,9420,9424,11359,12101,12507,12508,12509,12510,13499,13765,13833,14129,14351,17662,17739,22506,22573,23084,23086,23087]]],["booth",[2,2,[[17,1,1,0,1,[[462,1,1,0,1]]],[31,1,1,1,2,[[892,1,1,1,2]]]],[13499,22573]]],["booths",[9,7,[[0,1,1,0,1,[[32,1,1,0,1]]],[2,3,2,1,3,[[112,3,2,1,3]]],[15,5,4,3,7,[[420,5,4,3,7]]]],[977,3444,3445,12507,12508,12509,12510]]],["cottage",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17662]]],["covert",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13833]]],["pavilion",[2,2,[[18,2,2,0,2,[[495,1,1,0,1],[508,1,1,1,2]]]],[14129,14351]]],["pavilions",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[10,2,2,1,3,[[310,2,2,1,3]]]],[8614,9420,9424]]],["tabernacle",[3,3,[[17,1,1,0,1,[[471,1,1,0,1]]],[22,1,1,1,2,[[682,1,1,1,2]]],[29,1,1,2,3,[[887,1,1,2,3]]]],[13765,17739,22506]]],["tabernacles",[9,9,[[2,1,1,0,1,[[112,1,1,0,1]]],[4,3,3,1,4,[[168,2,2,1,3],[183,1,1,3,4]]],[13,1,1,4,5,[[374,1,1,4,5]]],[14,1,1,5,6,[[405,1,1,5,6]]],[37,3,3,6,9,[[924,3,3,6,9]]]],[3436,5355,5358,5738,11359,12101,23084,23086,23087]]],["tents",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8270]]]]},{"k":"H5522","v":[["tabernacle",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22449]]]]},{"k":"H5523","v":[["*",[18,16,[[0,2,1,0,1,[[32,2,1,0,1]]],[1,2,2,1,3,[[61,1,1,1,2],[62,1,1,2,3]]],[3,2,2,3,5,[[149,2,2,3,5]]],[5,1,1,5,6,[[199,1,1,5,6]]],[6,7,6,6,12,[[218,7,6,6,12]]],[10,1,1,12,13,[[297,1,1,12,13]]],[13,1,1,13,14,[[370,1,1,13,14]]],[18,2,2,14,16,[[537,1,1,14,15],[585,1,1,15,16]]]],[977,1853,1887,4765,4766,6181,6724,6725,6727,6733,6734,6735,8980,11263,14813,15749]]],["+",[2,2,[[1,1,1,0,1,[[62,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]]],[1887,4766]]],["Succoth",[16,14,[[0,2,1,0,1,[[32,2,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[3,1,1,2,3,[[149,1,1,2,3]]],[5,1,1,3,4,[[199,1,1,3,4]]],[6,7,6,4,10,[[218,7,6,4,10]]],[10,1,1,10,11,[[297,1,1,10,11]]],[13,1,1,11,12,[[370,1,1,11,12]]],[18,2,2,12,14,[[537,1,1,12,13],[585,1,1,13,14]]]],[977,1853,4765,6181,6724,6725,6727,6733,6734,6735,8980,11263,14813,15749]]]]},{"k":"H5524","v":[["Succothbenoth",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10013]]]]},{"k":"H5525","v":[["Sukkiims",[1,1,[[13,1,1,0,1,[[378,1,1,0,1]]]],[11440]]]]},{"k":"H5526","v":[["*",[23,23,[[1,5,5,0,5,[[74,1,1,0,1],[82,1,1,1,2],[86,1,1,2,3],[89,2,2,3,5]]],[6,1,1,5,6,[[213,1,1,5,6]]],[8,1,1,6,7,[[259,1,1,6,7]]],[10,1,1,7,8,[[298,1,1,7,8]]],[12,1,1,8,9,[[365,1,1,8,9]]],[17,3,3,9,12,[[438,1,1,9,10],[473,1,1,10,11],[475,1,1,11,12]]],[18,4,4,12,16,[[482,1,1,12,13],[568,1,1,13,14],[616,1,1,14,15],[617,1,1,15,16]]],[22,2,2,16,18,[[687,1,1,16,17],[697,1,1,17,18]]],[24,2,2,18,20,[[799,2,2,18,20]]],[25,2,2,20,22,[[829,2,2,20,22]]],[33,1,1,22,23,[[901,1,1,22,23]]]],[2215,2495,2613,2710,2728,6592,7842,8992,11161,12927,13801,13886,13984,15399,16252,16270,17840,18006,20397,20398,21171,21173,22704]]],["+",[8,8,[[1,4,4,0,4,[[74,1,1,0,1],[82,1,1,1,2],[89,2,2,2,4]]],[6,1,1,4,5,[[213,1,1,4,5]]],[8,1,1,5,6,[[259,1,1,5,6]]],[10,1,1,6,7,[[298,1,1,6,7]]],[22,1,1,7,8,[[687,1,1,7,8]]]],[2215,2495,2710,2728,6592,7842,8992,17840]]],["cover",[2,2,[[17,1,1,0,1,[[475,1,1,0,1]]],[18,1,1,1,2,[[568,1,1,1,2]]]],[13886,15399]]],["covered",[6,6,[[1,1,1,0,1,[[86,1,1,0,1]]],[12,1,1,1,2,[[365,1,1,1,2]]],[18,2,2,2,4,[[616,1,1,2,3],[617,1,1,3,4]]],[24,2,2,4,6,[[799,2,2,4,6]]]],[2613,11161,16252,16270,20397,20398]]],["covereth",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21171]]],["covering",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21173]]],["defence",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22704]]],["defendest",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13984]]],["in",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12927]]],["set",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18006]]],["up",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13801]]]]},{"k":"H5527","v":[["Secacah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6263]]]]},{"k":"H5528","v":[["*",[8,8,[[0,1,1,0,1,[[30,1,1,0,1]]],[8,2,2,1,3,[[248,1,1,1,2],[261,1,1,2,3]]],[9,2,2,3,5,[[281,1,1,3,4],[290,1,1,4,5]]],[12,1,1,5,6,[[358,1,1,5,6]]],[13,1,1,6,7,[[382,1,1,6,7]]],[22,1,1,7,8,[[722,1,1,7,8]]]],[901,7498,7926,8420,8702,10942,11518,18558]]],["+",[2,2,[[12,1,1,0,1,[[358,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[10942,18558]]],["fool",[1,1,[[8,1,1,0,1,[[261,1,1,0,1]]]],[7926]]],["foolishly",[4,4,[[0,1,1,0,1,[[30,1,1,0,1]]],[8,1,1,1,2,[[248,1,1,1,2]]],[9,1,1,2,3,[[290,1,1,2,3]]],[13,1,1,3,4,[[382,1,1,3,4]]]],[901,7498,8702,11518]]],["foolishness",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8420]]]]},{"k":"H5529","v":[["Folly",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17499]]]]},{"k":"H5530","v":[["*",[7,6,[[20,5,4,0,4,[[660,1,1,0,1],[665,1,1,1,2],[668,3,2,2,4]]],[23,2,2,4,6,[[748,1,1,4,5],[749,1,1,5,6]]]],[17352,17446,17496,17507,19049,19079]]],["+",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17496]]],["fool",[3,3,[[20,3,3,0,3,[[660,1,1,0,1],[668,2,2,1,3]]]],[17352,17496,17507]]],["foolish",[2,2,[[20,1,1,0,1,[[665,1,1,0,1]]],[23,1,1,1,2,[[749,1,1,1,2]]]],[17446,19079]]],["sottish",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19049]]]]},{"k":"H5531","v":[["*",[7,7,[[20,7,7,0,7,[[659,1,1,0,1],[660,3,3,1,4],[665,1,1,4,5],[668,2,2,5,7]]]],[17332,17336,17345,17346,17454,17494,17506]]],["+",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17346]]],["folly",[4,4,[[20,4,4,0,4,[[659,1,1,0,1],[660,2,2,1,3],[668,1,1,3,4]]]],[17332,17336,17345,17494]]],["foolishness",[2,2,[[20,2,2,0,2,[[665,1,1,0,1],[668,1,1,1,2]]]],[17454,17506]]]]},{"k":"H5532","v":[["*",[12,10,[[3,2,1,0,1,[[138,2,1,0,1]]],[10,2,2,1,3,[[291,2,2,1,3]]],[17,6,5,3,8,[[450,1,1,3,4],[457,3,2,4,6],[469,1,1,6,7],[470,1,1,7,8]]],[18,1,1,8,9,[[616,1,1,8,9]]],[22,1,1,9,10,[[700,1,1,9,10]]]],[4405,8719,8721,13206,13391,13410,13692,13723,16242,18067]]],["+",[3,2,[[3,2,1,0,1,[[138,2,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]]],[4405,13206]]],["Acquaint",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13410]]],["acquainted",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16242]]],["advantage",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13723]]],["cherish",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8719]]],["cherished",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8721]]],["profitable",[2,1,[[17,2,1,0,1,[[457,2,1,0,1]]]],[13391]]],["profiteth",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13692]]],["treasurer",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18067]]]]},{"k":"H5533","v":[["*",[2,2,[[20,1,1,0,1,[[668,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[17502,18440]]],["endangered",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17502]]],["impoverished",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18440]]]]},{"k":"H5534","v":[["*",[3,3,[[0,1,1,0,1,[[7,1,1,0,1]]],[18,1,1,1,2,[[540,1,1,1,2]]],[22,1,1,2,3,[[697,1,1,2,3]]]],[185,14850,18008]]],["over",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18008]]],["stopped",[2,2,[[0,1,1,0,1,[[7,1,1,0,1]]],[18,1,1,1,2,[[540,1,1,1,2]]]],[185,14850]]]]},{"k":"H5535","v":[["heed",[1,1,[[4,1,1,0,1,[[179,1,1,0,1]]]],[5594]]]]},{"k":"H5536","v":[["*",[15,13,[[0,4,3,0,3,[[39,4,3,0,3]]],[1,4,3,3,6,[[78,4,3,3,6]]],[2,3,3,6,9,[[97,3,3,6,9]]],[3,3,3,9,12,[[122,3,3,9,12]]],[6,1,1,12,13,[[216,1,1,12,13]]]],[1188,1189,1190,2339,2359,2368,2919,2943,2948,3838,3840,3842,6673]]],["+",[2,2,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]]],[2359,2943]]],["basket",[11,9,[[0,2,1,0,1,[[39,2,1,0,1]]],[1,3,2,1,3,[[78,3,2,1,3]]],[2,2,2,3,5,[[97,2,2,3,5]]],[3,3,3,5,8,[[122,3,3,5,8]]],[6,1,1,8,9,[[216,1,1,8,9]]]],[1189,2339,2368,2919,2948,3838,3840,3842,6673]]],["baskets",[2,2,[[0,2,2,0,2,[[39,2,2,0,2]]]],[1188,1190]]]]},{"k":"H5537","v":[["comparable",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20422]]]]},{"k":"H5538","v":[["Silla",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9870]]]]},{"k":"H5539","v":[["harden",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12988]]]]},{"k":"H5540","v":[["Seled",[2,1,[[12,2,1,0,1,[[339,2,1,0,1]]]],[10336]]]]},{"k":"H5541","v":[["*",[4,4,[[17,2,2,0,2,[[463,2,2,0,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[24,1,1,3,4,[[797,1,1,3,4]]]],[13520,13523,16016,20325]]],["down",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16016]]],["foot",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20325]]],["valued",[2,2,[[17,2,2,0,2,[[463,2,2,0,2]]]],[13520,13523]]]]},{"k":"H5542","v":[["Selah",[74,74,[[18,71,71,0,71,[[480,3,3,0,3],[481,2,2,3,5],[484,1,1,5,6],[486,2,2,6,8],[497,1,1,8,9],[498,1,1,9,10],[501,2,2,10,12],[509,3,3,12,15],[516,2,2,15,17],[521,1,1,17,18],[523,3,3,18,21],[524,1,1,21,22],[525,1,1,22,23],[526,2,2,23,25],[527,1,1,25,26],[529,2,2,26,28],[531,1,1,28,29],[532,2,2,29,31],[534,2,2,31,33],[536,2,2,33,35],[537,1,1,35,36],[538,1,1,36,37],[539,2,2,37,39],[543,3,3,39,42],[544,2,2,42,44],[545,3,3,44,47],[552,1,1,47,48],[553,2,2,48,50],[554,3,3,50,53],[558,1,1,53,54],[559,1,1,54,55],[560,1,1,55,56],[561,2,2,56,58],[562,1,1,58,59],[564,2,2,59,61],[565,2,2,61,63],[566,4,4,63,67],[617,3,3,67,70],[620,1,1,70,71]]],[34,3,3,71,74,[[905,3,3,71,74]]]],[13959,13961,13965,13967,13969,14000,14037,14041,14185,14193,14247,14251,14359,14360,14362,14517,14523,14579,14617,14621,14625,14629,14642,14661,14663,14674,14713,14715,14728,14739,14751,14771,14774,14795,14803,14811,14823,14831,14835,14877,14880,14888,14894,14897,14907,14919,14932,15074,15084,15090,15096,15102,15108,15224,15235,15249,15263,15267,15273,15304,15307,15315,15318,15330,15363,15371,15374,16266,16268,16271,16299,22771,22777,22781]]]]},{"k":"H5543","v":[["*",[6,6,[[3,1,1,0,1,[[141,1,1,0,1]]],[12,1,1,1,2,[[346,1,1,1,2]]],[15,4,4,2,6,[[423,2,2,2,4],[424,2,2,4,6]]]],[4485,10622,12595,12596,12631,12644]]],["Sallai",[2,2,[[15,2,2,0,2,[[423,1,1,0,1],[424,1,1,1,2]]]],[12596,12644]]],["Sallu",[3,3,[[12,1,1,0,1,[[346,1,1,0,1]]],[15,2,2,1,3,[[423,1,1,1,2],[424,1,1,2,3]]]],[10622,12595,12631]]],["Salu",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4485]]]]},{"k":"H5544","v":[["*",[2,2,[[25,2,2,0,2,[[803,1,1,0,1],[829,1,1,1,2]]]],[20498,21181]]],["brier",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21181]]],["thorns",[1,1,[[25,1,1,0,1,[[803,1,1,0,1]]]],[20498]]]]},{"k":"H5545","v":[["*",[46,45,[[1,1,1,0,1,[[83,1,1,0,1]]],[2,10,10,1,11,[[93,4,4,1,5],[94,4,4,5,9],[95,1,1,9,10],[108,1,1,10,11]]],[3,8,8,11,19,[[130,2,2,11,13],[131,3,3,13,16],[146,3,3,16,19]]],[4,1,1,19,20,[[181,1,1,19,20]]],[10,5,5,20,25,[[298,5,5,20,25]]],[11,3,2,25,27,[[317,2,1,25,26],[336,1,1,26,27]]],[13,6,6,27,33,[[372,5,5,27,32],[373,1,1,32,33]]],[18,2,2,33,35,[[502,1,1,33,34],[580,1,1,34,35]]],[22,1,1,35,36,[[733,1,1,35,36]]],[23,6,6,36,42,[[749,2,2,36,38],[775,1,1,38,39],[777,1,1,39,40],[780,1,1,40,41],[794,1,1,41,42]]],[24,1,1,42,43,[[799,1,1,42,43]]],[26,1,1,43,44,[[858,1,1,43,44]]],[29,1,1,44,45,[[885,1,1,44,45]]]],[2505,2815,2821,2826,2830,2840,2843,2846,2848,2856,3303,4127,4128,4178,4179,4181,4653,4656,4660,5699,9015,9019,9021,9024,9035,9665,10206,11303,11307,11309,11312,11321,11338,14262,15552,18747,19059,19065,19725,19783,19845,20186,20396,22007,22466]]],["Pardon",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4127]]],["forgive",[18,18,[[3,3,3,0,3,[[146,3,3,0,3]]],[10,5,5,3,8,[[298,5,5,3,8]]],[13,6,6,8,14,[[372,5,5,8,13],[373,1,1,13,14]]],[23,2,2,14,16,[[775,1,1,14,15],[780,1,1,15,16]]],[26,1,1,16,17,[[858,1,1,16,17]]],[29,1,1,17,18,[[885,1,1,17,18]]]],[4653,4656,4660,9015,9019,9021,9024,9035,11303,11307,11309,11312,11321,11338,19725,19845,22007,22466]]],["forgiven",[13,13,[[2,10,10,0,10,[[93,4,4,0,4],[94,4,4,4,8],[95,1,1,8,9],[108,1,1,9,10]]],[3,3,3,10,13,[[131,3,3,10,13]]]],[2815,2821,2826,2830,2840,2843,2846,2848,2856,3303,4178,4179,4181]]],["forgiveth",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15552]]],["pardon",[10,9,[[1,1,1,0,1,[[83,1,1,0,1]]],[11,3,2,1,3,[[317,2,1,1,2],[336,1,1,2,3]]],[18,1,1,3,4,[[502,1,1,3,4]]],[22,1,1,4,5,[[733,1,1,4,5]]],[23,4,4,5,9,[[749,2,2,5,7],[777,1,1,7,8],[794,1,1,8,9]]]],[2505,9665,10206,14262,18747,19059,19065,19783,20186]]],["pardoned",[2,2,[[3,1,1,0,1,[[130,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]]],[4128,20396]]],["spare",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5699]]]]},{"k":"H5546","v":[["forgive",[1,1,[[18,1,1,0,1,[[563,1,1,0,1]]]],[15289]]]]},{"k":"H5547","v":[["*",[3,3,[[15,1,1,0,1,[[421,1,1,0,1]]],[18,1,1,1,2,[[607,1,1,1,2]]],[26,1,1,2,3,[[858,1,1,2,3]]]],[12528,16144,21997]]],["forgiveness",[1,1,[[18,1,1,0,1,[[607,1,1,0,1]]]],[16144]]],["forgivenesses",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[21997]]],["pardon",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12528]]]]},{"k":"H5548","v":[["*",[4,4,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,2,2,1,3,[[198,1,1,1,2],[199,1,1,2,3]]],[12,1,1,3,4,[[342,1,1,3,4]]]],[4985,6135,6165,10439]]],["Salcah",[2,2,[[5,2,2,0,2,[[198,1,1,0,1],[199,1,1,1,2]]]],[6135,6165]]],["Salchah",[2,2,[[4,1,1,0,1,[[155,1,1,0,1]]],[12,1,1,1,2,[[342,1,1,1,2]]]],[4985,10439]]]]},{"k":"H5549","v":[["*",[12,10,[[1,1,1,0,1,[[58,1,1,0,1]]],[17,2,2,1,3,[[454,1,1,1,2],[465,1,1,2,3]]],[18,1,1,3,4,[[545,1,1,3,4]]],[19,2,2,4,6,[[631,1,1,4,5],[642,1,1,5,6]]],[22,4,2,6,8,[[735,2,1,6,7],[740,2,1,7,8]]],[23,2,2,8,10,[[762,1,1,8,9],[794,1,1,9,10]]]],[1759,13309,13569,14904,16498,16826,18779,18864,19399,20192]]],["Exalt",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16498]]],["extol",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14904]]],["plain",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16826]]],["thyself",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1759]]],["up",[8,6,[[17,2,2,0,2,[[454,1,1,0,1],[465,1,1,1,2]]],[22,4,2,2,4,[[735,2,1,2,3],[740,2,1,3,4]]],[23,2,2,4,6,[[762,1,1,4,5],[794,1,1,5,6]]]],[13309,13569,18779,18864,19399,20192]]]]},{"k":"H5550","v":[["*",[11,11,[[9,1,1,0,1,[[286,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]],[23,3,3,3,6,[[750,1,1,3,4],[776,1,1,4,5],[777,1,1,5,6]]],[25,4,4,6,10,[[805,1,1,6,7],[818,1,1,7,8],[822,1,1,8,9],[827,1,1,9,10]]],[26,1,1,10,11,[[860,1,1,10,11]]]],[8569,10093,18385,19095,19755,19779,20531,20842,20966,21108,22051]]],["bank",[3,3,[[9,1,1,0,1,[[286,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]]],[8569,10093,18385]]],["mount",[5,5,[[23,1,1,0,1,[[750,1,1,0,1]]],[25,3,3,1,4,[[805,1,1,1,2],[822,1,1,2,3],[827,1,1,3,4]]],[26,1,1,4,5,[[860,1,1,4,5]]]],[19095,20531,20966,21108,22051]]],["mounts",[3,3,[[23,2,2,0,2,[[776,1,1,0,1],[777,1,1,1,2]]],[25,1,1,2,3,[[818,1,1,2,3]]]],[19755,19779,20842]]]]},{"k":"H5551","v":[["ladder",[1,1,[[0,1,1,0,1,[[27,1,1,0,1]]]],[785]]]]},{"k":"H5552","v":[["baskets",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19098]]]]},{"k":"H5553","v":[["*",[61,55,[[3,6,4,0,4,[[136,5,3,0,3],[140,1,1,3,4]]],[4,1,1,4,5,[[184,1,1,4,5]]],[6,9,8,5,13,[[211,1,1,5,6],[216,1,1,6,7],[225,3,3,7,10],[230,3,2,10,12],[231,1,1,12,13]]],[8,5,4,13,17,[[248,1,1,13,14],[249,2,1,14,15],[258,2,2,15,17]]],[9,1,1,17,18,[[288,1,1,17,18]]],[10,1,1,18,19,[[309,1,1,18,19]]],[13,2,1,19,20,[[391,2,1,19,20]]],[15,1,1,20,21,[[421,1,1,20,21]]],[17,3,2,21,23,[[474,3,2,21,23]]],[18,9,9,23,32,[[495,1,1,23,24],[508,1,1,24,25],[517,1,1,25,26],[519,1,1,26,27],[548,1,1,27,28],[555,1,1,28,29],[581,1,1,29,30],[614,1,1,30,31],[618,1,1,31,32]]],[19,1,1,32,33,[[657,1,1,32,33]]],[21,1,1,33,34,[[672,1,1,33,34]]],[22,8,8,34,42,[[680,1,1,34,35],[685,1,1,35,36],[700,1,1,36,37],[709,1,1,37,38],[710,1,1,38,39],[711,1,1,39,40],[720,1,1,40,41],[735,1,1,41,42]]],[23,7,7,42,49,[[749,1,1,42,43],[757,1,1,43,44],[760,1,1,44,45],[767,1,1,45,46],[792,1,1,46,47],[793,1,1,47,48],[795,1,1,48,49]]],[25,4,4,49,53,[[825,2,2,49,51],[827,2,2,51,53]]],[29,1,1,53,54,[[884,1,1,53,54]]],[30,1,1,54,55,[[888,1,1,54,55]]]],[4319,4321,4322,4467,5771,6545,6674,6937,6940,6942,7099,7101,7115,7491,7512,7835,7838,8604,9398,11716,12526,13835,13862,14120,14334,14527,14564,14979,15129,15589,16231,16282,17277,17568,17706,17801,18068,18259,18261,18295,18491,18770,19061,19270,19352,19513,20108,20143,20237,21063,21064,21104,21114,22462,22513]]],["+",[6,6,[[4,1,1,0,1,[[184,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]],[8,1,1,2,3,[[258,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[18,1,1,4,5,[[555,1,1,4,5]]],[23,1,1,5,6,[[749,1,1,5,6]]]],[5771,6545,7838,12526,15129,19061]]],["hold",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18259]]],["rock",[42,36,[[3,6,4,0,4,[[136,5,3,0,3],[140,1,1,3,4]]],[6,8,7,4,11,[[216,1,1,4,5],[225,3,3,5,8],[230,3,2,8,10],[231,1,1,10,11]]],[8,3,2,11,13,[[249,2,1,11,12],[258,1,1,12,13]]],[9,1,1,13,14,[[288,1,1,13,14]]],[13,2,1,14,15,[[391,2,1,14,15]]],[17,3,2,15,17,[[474,3,2,15,17]]],[18,5,5,17,22,[[495,1,1,17,18],[508,1,1,18,19],[517,1,1,19,20],[519,1,1,20,21],[548,1,1,21,22]]],[21,1,1,22,23,[[672,1,1,22,23]]],[22,3,3,23,26,[[700,1,1,23,24],[710,1,1,24,25],[720,1,1,25,26]]],[23,4,4,26,30,[[757,1,1,26,27],[767,1,1,27,28],[792,1,1,28,29],[793,1,1,29,30]]],[25,4,4,30,34,[[825,2,2,30,32],[827,2,2,32,34]]],[29,1,1,34,35,[[884,1,1,34,35]]],[30,1,1,35,36,[[888,1,1,35,36]]]],[4319,4321,4322,4467,6674,6937,6940,6942,7099,7101,7115,7512,7835,8604,11716,13835,13862,14120,14334,14527,14564,14979,17568,18068,18261,18491,19270,19513,20108,20143,21063,21064,21104,21114,22462,22513]]],["rocks",[10,10,[[8,1,1,0,1,[[248,1,1,0,1]]],[10,1,1,1,2,[[309,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[19,1,1,3,4,[[657,1,1,3,4]]],[22,4,4,4,8,[[680,1,1,4,5],[685,1,1,5,6],[711,1,1,6,7],[735,1,1,7,8]]],[23,2,2,8,10,[[760,1,1,8,9],[795,1,1,9,10]]]],[7491,9398,15589,17277,17706,17801,18295,18770,19352,20237]]],["stones",[1,1,[[18,1,1,0,1,[[614,1,1,0,1]]]],[16231]]],["stony",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16282]]]]},{"k":"H5554","v":[["*",[2,2,[[11,1,1,0,1,[[326,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]]],[9903,17970]]],["+",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17970]]],["Selah",[1,1,[[11,1,1,0,1,[[326,1,1,0,1]]]],[9903]]]]},{"k":"H5555","v":[["+",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7838]]]]},{"k":"H5556","v":[["locust",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3019]]]]},{"k":"H5557","v":[["*",[7,7,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,1,1,1,2,[[168,1,1,1,2]]],[17,1,1,2,3,[[447,1,1,2,3]]],[19,4,4,3,7,[[640,1,1,3,4],[646,1,1,4,5],[648,1,1,5,6],[649,1,1,6,7]]]],[2152,5361,13147,16753,16928,16996,17027]]],["overthroweth",[4,4,[[17,1,1,0,1,[[447,1,1,0,1]]],[19,3,3,1,4,[[640,1,1,1,2],[648,1,1,2,3],[649,1,1,3,4]]]],[13147,16753,16996,17027]]],["pervert",[1,1,[[4,1,1,0,1,[[168,1,1,0,1]]]],[5361]]],["perverteth",[2,2,[[1,1,1,0,1,[[72,1,1,0,1]]],[19,1,1,1,2,[[646,1,1,1,2]]]],[2152,16928]]]]},{"k":"H5558","v":[["perverseness",[2,2,[[19,2,2,0,2,[[638,1,1,0,1],[642,1,1,1,2]]]],[16691,16811]]]]},{"k":"H5559","v":[["*",[5,5,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,4,4,1,5,[[851,1,1,1,2],[856,3,3,2,5]]]],[12122,21787,21936,21941,21953]]],["came",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21787]]],["up",[4,4,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,3,3,1,4,[[856,3,3,1,4]]]],[12122,21936,21941,21953]]]]},{"k":"H5560","v":[["*",[53,52,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,2,2,1,3,[[78,2,2,1,3]]],[2,14,14,3,17,[[91,5,5,3,8],[94,1,1,8,9],[95,2,2,9,11],[96,1,1,11,12],[103,2,2,12,14],[112,2,2,14,16],[113,1,1,16,17]]],[3,27,26,17,43,[[122,1,1,17,18],[123,12,12,18,30],[124,1,1,30,31],[131,3,3,31,34],[144,7,6,34,40],[145,3,3,40,43]]],[10,1,1,43,44,[[294,1,1,43,44]]],[11,3,3,44,47,[[319,3,3,44,47]]],[12,2,2,47,49,[[346,1,1,47,48],[360,1,1,48,49]]],[25,3,3,49,52,[[817,2,2,49,51],[847,1,1,51,52]]]],[430,2338,2376,2763,2764,2766,2767,2769,2841,2864,2869,2891,3121,3132,3415,3419,3451,3838,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3947,4157,4159,4162,4582,4586,4589,4590,4597,4605,4611,4617,4622,8866,9708,9723,9725,10644,11012,20775,20781,21669]]],["+",[2,2,[[2,2,2,0,2,[[91,1,1,0,1],[95,1,1,1,2]]]],[2764,2864]]],["fine",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[430]]],["flour",[50,49,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,12,12,2,14,[[91,4,4,2,6],[94,1,1,6,7],[95,1,1,7,8],[96,1,1,8,9],[103,2,2,9,11],[112,2,2,11,13],[113,1,1,13,14]]],[3,27,26,14,40,[[122,1,1,14,15],[123,12,12,15,27],[124,1,1,27,28],[131,3,3,28,31],[144,7,6,31,37],[145,3,3,37,40]]],[10,1,1,40,41,[[294,1,1,40,41]]],[11,3,3,41,44,[[319,3,3,41,44]]],[12,2,2,44,46,[[346,1,1,44,45],[360,1,1,45,46]]],[25,3,3,46,49,[[817,2,2,46,48],[847,1,1,48,49]]]],[2338,2376,2763,2766,2767,2769,2841,2869,2891,3121,3132,3415,3419,3451,3838,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3947,4157,4159,4162,4582,4586,4589,4590,4597,4605,4611,4617,4622,8866,9708,9723,9725,10644,11012,20775,20781,21669]]]]},{"k":"H5561","v":[["*",[16,15,[[1,11,10,0,10,[[74,1,1,0,1],[79,3,2,1,3],[80,1,1,3,4],[84,3,3,4,7],[86,1,1,7,8],[88,1,1,8,9],[89,1,1,9,10]]],[2,2,2,10,12,[[93,1,1,10,11],[105,1,1,11,12]]],[3,1,1,12,13,[[120,1,1,12,13]]],[13,2,2,13,15,[[368,1,1,13,14],[379,1,1,14,15]]]],[2201,2389,2416,2431,2539,2546,2559,2633,2702,2734,2802,3213,3759,11215,11464]]],["spices",[3,2,[[1,3,2,0,2,[[79,2,1,0,1],[86,1,1,1,2]]]],[2416,2633]]],["sweet",[13,13,[[1,8,8,0,8,[[74,1,1,0,1],[79,1,1,1,2],[80,1,1,2,3],[84,3,3,3,6],[88,1,1,6,7],[89,1,1,7,8]]],[2,2,2,8,10,[[93,1,1,8,9],[105,1,1,9,10]]],[3,1,1,10,11,[[120,1,1,10,11]]],[13,2,2,11,13,[[368,1,1,11,12],[379,1,1,12,13]]]],[2201,2389,2431,2539,2546,2559,2702,2734,2802,3213,3759,11215,11464]]]]},{"k":"H5562","v":[["Samgarnebo",[1,1,[[23,1,1,0,1,[[783,1,1,0,1]]]],[19926]]]]},{"k":"H5563","v":[["*",[3,3,[[21,3,3,0,3,[[672,2,2,0,2],[677,1,1,2,3]]]],[17567,17569,17639]]],["grape",[2,2,[[21,2,2,0,2,[[672,1,1,0,1],[677,1,1,1,2]]]],[17567,17639]]],["grapes",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17569]]]]},{"k":"H5564","v":[["*",[48,47,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,3,3,1,4,[[78,3,3,1,4]]],[2,14,14,4,18,[[90,1,1,4,5],[92,3,3,5,8],[93,5,5,8,13],[97,3,3,13,16],[105,1,1,16,17],[113,1,1,17,18]]],[3,4,4,18,22,[[124,2,2,18,20],[143,2,2,20,22]]],[4,1,1,22,23,[[186,1,1,22,23]]],[6,1,1,23,24,[[226,1,1,23,24]]],[11,1,1,24,25,[[330,1,1,24,25]]],[13,2,2,25,27,[[395,1,1,25,26],[398,1,1,26,27]]],[18,11,11,27,38,[[480,1,1,27,28],[514,2,2,28,30],[528,1,1,30,31],[531,1,1,31,32],[548,1,1,32,33],[565,1,1,33,34],[588,1,1,34,35],[589,1,1,35,36],[596,1,1,36,37],[622,1,1,37,38]]],[21,1,1,38,39,[[672,1,1,38,39]]],[22,6,5,39,44,[[704,1,1,39,40],[714,1,1,40,41],[726,1,1,41,42],[737,1,1,42,43],[741,2,1,43,44]]],[25,2,2,44,46,[[825,1,1,44,45],[831,1,1,45,46]]],[29,1,1,46,47,[[883,1,1,46,47]]]],[764,2346,2351,2355,2749,2780,2786,2791,2799,2810,2819,2824,2828,2931,2935,2939,3222,3460,3949,3951,4572,4577,5848,6978,10045,11814,11883,13962,14467,14474,14703,14729,14982,15315,15801,15811,16014,16334,17559,18133,18336,18616,18816,18871,21058,21210,22442]]],["+",[19,19,[[1,3,3,0,3,[[78,3,3,0,3]]],[2,11,11,3,14,[[92,2,2,3,5],[93,4,4,5,9],[97,3,3,9,12],[105,1,1,12,13],[113,1,1,13,14]]],[3,4,4,14,18,[[124,2,2,14,16],[143,2,2,16,18]]],[4,1,1,18,19,[[186,1,1,18,19]]]],[2346,2351,2355,2786,2791,2799,2810,2824,2828,2931,2935,2939,3222,3460,3949,3951,4572,4577,5848]]],["Stay",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17559]]],["Uphold",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16014]]],["established",[1,1,[[18,1,1,0,1,[[589,1,1,0,1]]]],[15811]]],["fast",[1,1,[[18,1,1,0,1,[[588,1,1,0,1]]]],[15801]]],["hard",[1,1,[[18,1,1,0,1,[[565,1,1,0,1]]]],[15315]]],["laid",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11814]]],["lay",[2,2,[[2,2,2,0,2,[[92,1,1,0,1],[93,1,1,1,2]]]],[2780,2819]]],["lean",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]]],[10045,18336]]],["leaned",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22442]]],["put",[1,1,[[2,1,1,0,1,[[90,1,1,0,1]]]],[2749]]],["set",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21058]]],["stayed",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18133]]],["sustained",[3,3,[[0,1,1,0,1,[[26,1,1,0,1]]],[18,1,1,1,2,[[480,1,1,1,2]]],[22,1,1,2,3,[[737,1,1,2,3]]]],[764,13962,18816]]],["themselves",[2,2,[[13,1,1,0,1,[[398,1,1,0,1]]],[22,1,1,1,2,[[726,1,1,1,2]]]],[11883,18616]]],["up",[2,2,[[6,1,1,0,1,[[226,1,1,0,1]]],[18,1,1,1,2,[[548,1,1,1,2]]]],[6978,14982]]],["upheld",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18871]]],["uphold",[4,4,[[18,2,2,0,2,[[528,1,1,0,1],[531,1,1,1,2]]],[22,1,1,2,3,[[741,1,1,2,3]]],[25,1,1,3,4,[[831,1,1,3,4]]]],[14703,14729,18871,21210]]],["upholdeth",[3,3,[[18,3,3,0,3,[[514,2,2,0,2],[622,1,1,2,3]]]],[14467,14474,16334]]]]},{"k":"H5565","v":[["Semachiah",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11084]]]]},{"k":"H5566","v":[["*",[5,5,[[4,1,1,0,1,[[156,1,1,0,1]]],[13,2,2,1,3,[[399,2,2,1,3]]],[25,2,2,3,5,[[809,2,2,3,5]]]],[5020,11915,11923,20607,20609]]],["figure",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5020]]],["idol",[2,2,[[13,2,2,0,2,[[399,2,2,0,2]]]],[11915,11923]]],["image",[2,2,[[25,2,2,0,2,[[809,2,2,0,2]]]],[20607,20609]]]]},{"k":"H5567","v":[["appointed",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18189]]]]},{"k":"H5568","v":[["*",[2,2,[[17,1,1,0,1,[[439,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[12945,16018]]],["trembleth",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16018]]],["up",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12945]]]]},{"k":"H5569","v":[["rough",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20239]]]]},{"k":"H5570","v":[["*",[3,3,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,2,2,1,3,[[415,1,1,1,2],[419,1,1,2,3]]]],[12062,12330,12458]]],["Hassenaah",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12330]]],["Senaah",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12062,12458]]]]},{"k":"H5571","v":[["*",[10,10,[[15,10,10,0,10,[[414,2,2,0,2],[416,2,2,2,4],[418,5,5,4,9],[425,1,1,9,10]]]],[12317,12326,12360,12366,12402,12403,12406,12413,12415,12699]]],["+",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12406]]],["Sanballat",[9,9,[[15,9,9,0,9,[[414,2,2,0,2],[416,2,2,2,4],[418,4,4,4,8],[425,1,1,8,9]]]],[12317,12326,12360,12366,12402,12403,12413,12415,12699]]]]},{"k":"H5572","v":[["bush",[6,4,[[1,5,3,0,3,[[52,5,3,0,3]]],[4,1,1,3,4,[[185,1,1,3,4]]]],[1581,1582,1583,5826]]]]},{"k":"H5573","v":[["Seneh",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7512]]]]},{"k":"H5574","v":[["*",[2,2,[[12,1,1,0,1,[[346,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[10622,12597]]],["Hasenuah",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10622]]],["Senuah",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12597]]]]},{"k":"H5575","v":[["blindness",[3,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[11,2,1,1,2,[[318,2,1,1,2]]]],[468,9692]]]]},{"k":"H5576","v":[["Sennacherib",[13,13,[[11,4,4,0,4,[[330,1,1,0,1],[331,3,3,1,4]]],[13,5,5,4,9,[[398,5,5,4,9]]],[22,4,4,9,13,[[714,1,1,9,10],[715,3,3,10,13]]]],[10037,10077,10081,10097,11876,11877,11884,11885,11897,18331,18369,18373,18389]]]]},{"k":"H5577","v":[["boughs",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17635]]]]},{"k":"H5578","v":[["Sansannah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6233]]]]},{"k":"H5579","v":[["fins",[5,5,[[2,3,3,0,3,[[100,3,3,0,3]]],[4,2,2,3,5,[[166,2,2,3,5]]]],[3006,3007,3009,5299,5300]]]]},{"k":"H5580","v":[["worm",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18681]]]]},{"k":"H5581","v":[["Sisamai",[2,1,[[12,2,1,0,1,[[339,2,1,0,1]]]],[10346]]]]},{"k":"H5582","v":[["*",[12,12,[[0,1,1,0,1,[[17,1,1,0,1]]],[6,2,2,1,3,[[229,2,2,1,3]]],[10,1,1,3,4,[[303,1,1,3,4]]],[18,6,6,4,10,[[495,1,1,4,5],[497,1,1,5,6],[518,1,1,6,7],[571,1,1,7,8],[581,1,1,8,9],[596,1,1,9,10]]],[19,1,1,10,11,[[647,1,1,10,11]]],[22,1,1,11,12,[[687,1,1,11,12]]]],[429,7029,7032,9191,14153,14184,14545,15449,15586,16015,16982,17836]]],["Comfort",[2,2,[[6,2,2,0,2,[[229,2,2,0,2]]]],[7029,7032]]],["comfort",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[429]]],["establish",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17836]]],["refresh",[1,1,[[10,1,1,0,1,[[303,1,1,0,1]]]],[9191]]],["strengthen",[2,2,[[18,2,2,0,2,[[497,1,1,0,1],[518,1,1,1,2]]]],[14184,14545]]],["strengtheneth",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15586]]],["up",[3,3,[[18,3,3,0,3,[[495,1,1,0,1],[571,1,1,1,2],[596,1,1,2,3]]]],[14153,15449,16015]]],["upholden",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16982]]]]},{"k":"H5583","v":[["helping",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12136]]]]},{"k":"H5584","v":[["storm",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14740]]]]},{"k":"H5585","v":[["*",[6,6,[[6,2,2,0,2,[[225,2,2,0,2]]],[22,4,4,2,6,[[680,1,1,2,3],[695,1,1,3,4],[705,1,1,4,5],[735,1,1,5,6]]]],[6937,6940,17706,17989,18161,18770]]],["branches",[2,2,[[22,2,2,0,2,[[695,1,1,0,1],[705,1,1,1,2]]]],[17989,18161]]],["clifts",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18770]]],["top",[2,2,[[6,2,2,0,2,[[225,2,2,0,2]]]],[6937,6940]]],["tops",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17706]]]]},{"k":"H5586","v":[["lop",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17883]]]]},{"k":"H5587","v":[["*",[3,3,[[10,1,1,0,1,[[308,1,1,0,1]]],[17,2,2,1,3,[[439,1,1,1,2],[455,1,1,2,3]]]],[9362,12943,13328]]],["opinions",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9362]]],["thoughts",[2,2,[[17,2,2,0,2,[[439,1,1,0,1],[455,1,1,1,2]]]],[12943,13328]]]]},{"k":"H5588","v":[["thoughts",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16011]]]]},{"k":"H5589","v":[["boughs",[2,2,[[25,2,2,0,2,[[832,2,2,0,2]]]],[21236,21238]]]]},{"k":"H5590","v":[["*",[7,7,[[11,1,1,0,1,[[318,1,1,0,1]]],[22,1,1,1,2,[[732,1,1,1,2]]],[27,1,1,2,3,[[874,1,1,2,3]]],[31,2,2,3,5,[[889,2,2,3,5]]],[34,1,1,5,6,[[905,1,1,5,6]]],[37,1,1,6,7,[[917,1,1,6,7]]]],[9685,18734,22269,22542,22544,22782,22976]]],["tempest",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18734]]],["tempestuous",[2,2,[[31,2,2,0,2,[[889,2,2,0,2]]]],[22542,22544]]],["troubled",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9685]]],["whirlwind",[3,3,[[27,1,1,0,1,[[874,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]],[37,1,1,2,3,[[917,1,1,2,3]]]],[22269,22782,22976]]]]},{"k":"H5591","v":[["*",[24,22,[[11,2,2,0,2,[[314,2,2,0,2]]],[17,2,2,2,4,[[473,1,1,2,3],[475,1,1,3,4]]],[18,5,5,4,9,[[532,1,1,4,5],[560,1,1,5,6],[584,2,2,6,8],[625,1,1,8,9]]],[22,3,3,9,12,[[707,1,1,9,10],[718,1,1,10,11],[719,1,1,11,12]]],[23,5,3,12,15,[[767,2,1,12,13],[769,1,1,13,14],[774,2,1,14,15]]],[25,3,3,15,18,[[802,1,1,15,16],[814,2,2,16,18]]],[29,1,1,18,19,[[879,1,1,18,19]]],[31,2,2,19,21,[[889,2,2,19,21]]],[37,1,1,21,22,[[919,1,1,21,22]]]],[9552,9562,13794,13870,14740,15256,15724,15728,16379,18199,18444,18467,19503,19566,19690,20468,20719,20721,22378,22535,22543,23013]]],["+",[2,2,[[18,1,1,0,1,[[532,1,1,0,1]]],[25,1,1,1,2,[[802,1,1,1,2]]]],[14740,20468]]],["storm",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15728]]],["stormy",[4,4,[[18,2,2,0,2,[[584,1,1,0,1],[625,1,1,1,2]]],[25,2,2,2,4,[[814,2,2,2,4]]]],[15724,16379,20719,20721]]],["tempest",[5,5,[[18,1,1,0,1,[[560,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]],[29,1,1,2,3,[[879,1,1,2,3]]],[31,2,2,3,5,[[889,2,2,3,5]]]],[15256,18199,22378,22535,22543]]],["whirlwind",[11,9,[[11,2,2,0,2,[[314,2,2,0,2]]],[17,2,2,2,4,[[473,1,1,2,3],[475,1,1,3,4]]],[22,2,2,4,6,[[718,1,1,4,5],[719,1,1,5,6]]],[23,5,3,6,9,[[767,2,1,6,7],[769,1,1,7,8],[774,2,1,8,9]]]],[9552,9562,13794,13870,18444,18467,19503,19566,19690]]],["whirlwinds",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23013]]]]},{"k":"H5592","v":[["*",[32,28,[[1,2,1,0,1,[[61,2,1,0,1]]],[6,1,1,1,2,[[229,1,1,1,2]]],[9,1,1,2,3,[[283,1,1,2,3]]],[10,2,2,3,5,[[297,1,1,3,4],[304,1,1,4,5]]],[11,5,5,5,10,[[324,2,2,5,7],[334,1,1,7,8],[335,1,1,8,9],[337,1,1,9,10]]],[12,2,2,10,12,[[346,2,2,10,12]]],[13,3,3,12,15,[[369,1,1,12,13],[389,1,1,13,14],[400,1,1,14,15]]],[16,2,2,15,17,[[427,1,1,15,16],[431,1,1,16,17]]],[22,1,1,17,18,[[684,1,1,17,18]]],[23,3,3,18,21,[[779,1,1,18,19],[796,2,2,19,21]]],[25,7,4,21,25,[[841,3,2,21,23],[842,2,1,23,24],[844,2,1,24,25]]],[29,1,1,25,26,[[887,1,1,25,26]]],[35,1,1,26,27,[[907,1,1,26,27]]],[37,1,1,27,28,[[922,1,1,27,28]]]],[1838,7051,8477,8984,9235,9859,9863,10149,10169,10240,10634,10637,11236,11660,11942,12745,12795,17773,19827,20295,20300,21483,21484,21542,21580,22496,22819,23047]]],["bason",[2,1,[[1,2,1,0,1,[[61,2,1,0,1]]]],[1838]]],["basons",[2,2,[[9,1,1,0,1,[[283,1,1,0,1]]],[23,1,1,1,2,[[796,1,1,1,2]]]],[8477,20295]]],["bowls",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[11,1,1,1,2,[[324,1,1,1,2]]]],[8984,9863]]],["cup",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23047]]],["door",[10,10,[[11,4,4,0,4,[[324,1,1,0,1],[334,1,1,1,2],[335,1,1,2,3],[337,1,1,3,4]]],[16,2,2,4,6,[[427,1,1,4,5],[431,1,1,5,6]]],[22,1,1,6,7,[[684,1,1,6,7]]],[23,2,2,7,9,[[779,1,1,7,8],[796,1,1,8,9]]],[25,1,1,9,10,[[842,1,1,9,10]]]],[9859,10149,10169,10240,12745,12795,17773,19827,20300,21542]]],["doors",[2,2,[[13,2,2,0,2,[[389,1,1,0,1],[400,1,1,1,2]]]],[11660,11942]]],["gates",[2,2,[[12,2,2,0,2,[[346,2,2,0,2]]]],[10634,10637]]],["posts",[3,3,[[13,1,1,0,1,[[369,1,1,0,1]]],[25,1,1,1,2,[[842,1,1,1,2]]],[29,1,1,2,3,[[887,1,1,2,3]]]],[11236,21542,22496]]],["threshold",[6,5,[[6,1,1,0,1,[[229,1,1,0,1]]],[10,1,1,1,2,[[304,1,1,1,2]]],[25,4,3,2,5,[[841,3,2,2,4],[844,1,1,4,5]]]],[7051,9235,21483,21484,21580]]],["thresholds",[2,2,[[25,1,1,0,1,[[844,1,1,0,1]]],[35,1,1,1,2,[[907,1,1,1,2]]]],[21580,22819]]]]},{"k":"H5593","v":[["Saph",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8598]]]]},{"k":"H5594","v":[["*",[30,29,[[0,2,2,0,2,[[22,1,1,0,1],[49,1,1,1,2]]],[8,2,2,2,4,[[260,1,1,2,3],[263,1,1,3,4]]],[9,3,3,4,7,[[267,1,1,4,5],[269,1,1,5,6],[277,1,1,6,7]]],[10,4,4,7,11,[[303,2,2,7,9],[304,2,2,9,11]]],[20,2,2,11,13,[[661,1,1,11,12],[670,1,1,12,13]]],[22,1,1,13,14,[[710,1,1,13,14]]],[23,9,8,14,22,[[748,1,1,14,15],[760,3,3,15,18],[766,2,1,18,19],[769,1,1,19,20],[778,1,1,20,21],[793,1,1,21,22]]],[25,2,2,22,24,[[825,2,2,22,24]]],[28,1,1,24,25,[[876,1,1,24,25]]],[32,1,1,25,26,[[893,1,1,25,26]]],[37,3,3,26,29,[[917,1,1,26,27],[922,2,2,27,29]]]],[573,1516,7862,7945,8034,8112,8285,9213,9214,9231,9236,17363,17528,18271,19035,19340,19341,19342,19472,19567,19806,20130,21072,21079,22304,22587,22967,23055,23057]]],["lament",[9,8,[[22,1,1,0,1,[[710,1,1,0,1]]],[23,7,6,1,7,[[748,1,1,1,2],[760,2,2,2,4],[766,2,1,4,5],[778,1,1,5,6],[793,1,1,6,7]]],[28,1,1,7,8,[[876,1,1,7,8]]]],[18271,19035,19341,19342,19472,19806,20130,22304]]],["lamented",[4,4,[[8,2,2,0,2,[[260,1,1,0,1],[263,1,1,1,2]]],[23,2,2,2,4,[[760,1,1,2,3],[769,1,1,3,4]]]],[7862,7945,19340,19567]]],["mourn",[9,9,[[0,1,1,0,1,[[22,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]],[10,2,2,2,4,[[303,1,1,2,3],[304,1,1,3,4]]],[20,1,1,4,5,[[661,1,1,4,5]]],[25,2,2,5,7,[[825,2,2,5,7]]],[37,2,2,7,9,[[922,2,2,7,9]]]],[573,8112,9213,9231,17363,21072,21079,23055,23057]]],["mourned",[6,6,[[0,1,1,0,1,[[49,1,1,0,1]]],[9,2,2,1,3,[[267,1,1,1,2],[277,1,1,2,3]]],[10,2,2,3,5,[[303,1,1,3,4],[304,1,1,4,5]]],[37,1,1,5,6,[[917,1,1,5,6]]]],[1516,8034,8285,9214,9236,22967]]],["mourners",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17528]]],["wail",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22587]]]]},{"k":"H5595","v":[["*",[20,20,[[0,4,4,0,4,[[17,2,2,0,2],[18,2,2,2,4]]],[3,2,2,4,6,[[132,1,1,4,5],[148,1,1,5,6]]],[4,2,2,6,8,[[181,1,1,6,7],[184,1,1,7,8]]],[8,3,3,8,11,[[247,1,1,8,9],[261,1,1,9,10],[262,1,1,10,11]]],[12,1,1,11,12,[[358,1,1,11,12]]],[18,1,1,12,13,[[517,1,1,12,13]]],[19,1,1,13,14,[[640,1,1,13,14]]],[22,4,4,14,18,[[685,1,1,14,15],[691,1,1,15,16],[707,1,1,16,17],[708,1,1,17,18]]],[23,2,2,18,20,[[751,1,1,18,19],[756,1,1,19,20]]]],[447,448,472,474,4220,4732,5698,5781,7485,7915,7931,10946,14539,16770,17802,17921,18194,18218,19140,19253]]],["+",[2,2,[[3,1,1,0,1,[[148,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]]],[4732,17802]]],["Put",[1,1,[[23,1,1,0,1,[[751,1,1,0,1]]]],[19140]]],["add",[3,3,[[4,1,1,0,1,[[181,1,1,0,1]]],[22,2,2,1,3,[[707,1,1,1,2],[708,1,1,2,3]]]],[5698,18194,18218]]],["consumed",[5,5,[[0,2,2,0,2,[[18,2,2,0,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[8,1,1,3,4,[[247,1,1,3,4]]],[23,1,1,4,5,[[756,1,1,4,5]]]],[472,474,4220,7485,19253]]],["destroy",[3,3,[[0,2,2,0,2,[[17,2,2,0,2]]],[18,1,1,2,3,[[517,1,1,2,3]]]],[447,448,14539]]],["destroyed",[2,2,[[12,1,1,0,1,[[358,1,1,0,1]]],[19,1,1,1,2,[[640,1,1,1,2]]]],[10946,16770]]],["heap",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5781]]],["joined",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17921]]],["perish",[2,2,[[8,2,2,0,2,[[261,1,1,0,1],[262,1,1,1,2]]]],[7915,7931]]]]},{"k":"H5596","v":[["*",[6,6,[[8,2,2,0,2,[[237,1,1,0,1],[261,1,1,1,2]]],[17,1,1,2,3,[[465,1,1,2,3]]],[22,2,2,3,5,[[681,1,1,3,4],[692,1,1,4,5]]],[34,1,1,5,6,[[904,1,1,5,6]]]],[7276,7924,13564,17724,17929,22763]]],["+",[1,1,[[8,1,1,0,1,[[261,1,1,0,1]]]],[7924]]],["Put",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7276]]],["cleave",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17929]]],["puttest",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22763]]],["scab",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17724]]],["together",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13564]]]]},{"k":"H5597","v":[["scab",[2,2,[[2,2,2,0,2,[[102,1,1,0,1],[103,1,1,1,2]]]],[3054,3167]]]]},{"k":"H5598","v":[["Sippai",[1,1,[[12,1,1,0,1,[[357,1,1,0,1]]]],[10930]]]]},{"k":"H5599","v":[["*",[5,5,[[2,2,2,0,2,[[114,2,2,0,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[17,1,1,3,4,[[449,1,1,3,4]]],[22,1,1,4,5,[[715,1,1,4,5]]]],[3474,3480,10090,13200,18382]]],["accord",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3474]]],["grow",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13200]]],["itself",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[3480,18382]]],["themselves",[1,1,[[11,1,1,0,1,[[331,1,1,0,1]]]],[10090]]]]},{"k":"H5600","v":[["ship",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22536]]]]},{"k":"H5601","v":[["*",[11,11,[[1,3,3,0,3,[[73,1,1,0,1],[77,1,1,1,2],[88,1,1,2,3]]],[17,2,2,3,5,[[463,2,2,3,5]]],[21,1,1,5,6,[[675,1,1,5,6]]],[22,1,1,6,7,[[732,1,1,6,7]]],[24,1,1,7,8,[[800,1,1,7,8]]],[25,3,3,8,11,[[802,1,1,8,9],[811,1,1,9,10],[829,1,1,10,11]]]],[2187,2311,2675,13510,13520,17612,18734,20427,20490,20634,21170]]],["sapphire",[7,7,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[17,1,1,2,3,[[463,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]],[25,3,3,4,7,[[802,1,1,4,5],[811,1,1,5,6],[829,1,1,6,7]]]],[2311,2675,13520,20427,20490,20634,21170]]],["sapphires",[3,3,[[17,1,1,0,1,[[463,1,1,0,1]]],[21,1,1,1,2,[[675,1,1,1,2]]],[22,1,1,2,3,[[732,1,1,2,3]]]],[13510,17612,18734]]],["stone",[1,1,[[1,1,1,0,1,[[73,1,1,0,1]]]],[2187]]]]},{"k":"H5602","v":[["*",[2,2,[[6,2,2,0,2,[[215,1,1,0,1],[216,1,1,1,2]]]],[6648,6692]]],["bowl",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6692]]],["dish",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6648]]]]},{"k":"H5603","v":[["*",[6,6,[[4,1,1,0,1,[[185,1,1,0,1]]],[10,3,3,1,4,[[296,1,1,1,2],[297,2,2,2,4]]],[23,1,1,4,5,[[766,1,1,4,5]]],[36,1,1,5,6,[[909,1,1,5,6]]]],[5831,8905,8937,8941,19468,22844]]],["+",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8905]]],["cieled",[2,2,[[23,1,1,0,1,[[766,1,1,0,1]]],[36,1,1,1,2,[[909,1,1,1,2]]]],[19468,22844]]],["covered",[2,2,[[10,2,2,0,2,[[297,2,2,0,2]]]],[8937,8941]]],["seated",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5831]]]]},{"k":"H5604","v":[["cieling",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8911]]]]},{"k":"H5605","v":[["doorkeeper",[1,1,[[18,1,1,0,1,[[561,1,1,0,1]]]],[15269]]]]},{"k":"H5606","v":[["*",[10,10,[[3,1,1,0,1,[[140,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[17,3,3,2,5,[[462,1,1,2,3],[469,2,2,3,5]]],[22,1,1,5,6,[[680,1,1,5,6]]],[23,2,2,6,8,[[775,1,1,6,7],[792,1,1,7,8]]],[24,1,1,8,9,[[798,1,1,8,9]]],[25,1,1,9,10,[[822,1,1,9,10]]]],[4456,9418,13504,13709,13720,17691,19710,20106,20347,20956]]],["+",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4456]]],["clap",[2,2,[[17,1,1,0,1,[[462,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]]],[13504,20347]]],["clappeth",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13720]]],["smite",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20956]]],["smote",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19710]]],["striketh",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13709]]],["suffice",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9418]]],["themselves",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17691]]],["wallow",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20106]]]]},{"k":"H5607","v":[["*",[2,2,[[17,2,2,0,2,[[455,1,1,0,1],[471,1,1,1,2]]]],[13348,13754]]],["stroke",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13754]]],["sufficiency",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13348]]]]},{"k":"H5608","v":[["*",[161,154,[[0,13,12,0,12,[[14,2,1,0,1],[15,1,1,1,2],[23,1,1,2,3],[28,1,1,3,4],[31,1,1,4,5],[36,2,2,5,7],[39,2,2,7,9],[40,3,3,9,12]]],[1,4,4,12,16,[[58,1,1,12,13],[59,1,1,13,14],[67,1,1,14,15],[73,1,1,15,16]]],[2,5,5,16,21,[[104,2,2,16,18],[112,2,2,18,20],[114,1,1,20,21]]],[3,1,1,21,22,[[129,1,1,21,22]]],[4,2,1,22,23,[[168,2,1,22,23]]],[5,1,1,23,24,[[188,1,1,23,24]]],[6,3,3,24,27,[[215,1,1,24,25],[216,1,1,25,26],[217,1,1,26,27]]],[8,1,1,27,28,[[246,1,1,27,28]]],[9,3,3,28,31,[[274,1,1,28,29],[286,1,1,29,30],[290,1,1,30,31]]],[10,5,4,31,35,[[293,1,1,31,32],[294,1,1,32,33],[298,1,1,33,34],[303,2,1,34,35]]],[11,13,13,35,48,[[320,3,3,35,38],[324,1,1,38,39],[330,2,2,39,41],[331,1,1,41,42],[334,5,5,42,47],[337,1,1,47,48]]],[12,7,7,48,55,[[339,1,1,48,49],[353,1,1,49,50],[355,1,1,50,51],[358,1,1,51,52],[360,1,1,52,53],[361,1,1,53,54],[364,1,1,54,55]]],[13,10,9,55,64,[[368,3,2,55,57],[371,1,1,57,58],[390,1,1,58,59],[392,1,1,59,60],[400,4,4,60,64]]],[14,4,3,64,67,[[403,1,1,64,65],[409,3,2,65,67]]],[15,7,7,67,74,[[420,4,4,67,71],[424,2,2,71,73],[425,1,1,73,74]]],[16,4,4,74,78,[[428,1,1,74,75],[430,1,1,75,76],[431,1,1,76,77],[433,1,1,77,78]]],[17,8,8,78,86,[[447,1,1,78,79],[449,1,1,79,80],[450,1,1,80,81],[463,1,1,81,82],[466,1,1,82,83],[472,1,1,83,84],[473,1,1,84,85],[474,1,1,85,86]]],[18,37,37,86,123,[[479,1,1,86,87],[486,2,2,87,89],[496,1,1,89,90],[499,3,3,90,93],[503,1,1,93,94],[517,1,1,94,95],[521,1,1,95,96],[522,1,1,96,97],[525,2,2,97,99],[527,1,1,99,100],[533,1,1,100,101],[536,1,1,101,102],[541,1,1,102,103],[543,1,1,103,104],[546,1,1,104,105],[548,1,1,105,106],[550,2,2,106,108],[552,1,1,108,109],[555,3,3,109,112],[556,1,1,112,113],[564,1,1,113,114],[565,1,1,114,115],[573,1,1,115,116],[579,1,1,116,117],[584,1,1,117,118],[595,1,1,118,119],[596,2,2,119,121],[616,1,1,121,122],[622,1,1,122,123]]],[22,9,8,123,131,[[700,1,1,123,124],[711,2,1,124,125],[714,2,2,125,127],[715,1,1,127,128],[721,2,2,128,130],[730,1,1,130,131]]],[23,17,16,131,147,[[752,1,1,131,132],[767,3,3,132,135],[777,1,1,135,136],[780,8,7,136,143],[781,2,2,143,145],[795,1,1,145,146],[796,1,1,146,147]]],[25,4,4,147,151,[[810,2,2,147,149],[813,1,1,149,150],[845,1,1,150,151]]],[27,1,1,151,152,[[862,1,1,151,152]]],[28,1,1,152,153,[[876,1,1,152,153]]],[34,1,1,153,154,[[903,1,1,153,154]]]],[365,391,657,808,940,1092,1093,1180,1181,1203,1207,1244,1758,1779,2007,2180,3181,3196,3417,3418,3477,4102,5351,5892,6637,6667,6707,7450,8226,8579,8702,8824,8847,8990,9195,9731,9732,9733,9860,10042,10061,10063,10148,10153,10154,10155,10157,10241,10361,10844,10906,10936,10986,11021,11141,11213,11228,11274,11688,11743,11946,11948,11951,11953,12024,12179,12184,12494,12497,12502,12506,12650,12660,12684,12759,12790,12806,12826,13136,13197,13220,13531,13592,13789,13830,13836,13952,14022,14035,14169,14221,14226,14234,14280,14530,14572,14598,14646,14647,14684,14763,14802,14855,14889,14961,14991,15035,15048,15072,15116,15117,15119,15198,15307,15319,15468,15542,15721,15886,15911,15924,16257,16326,18062,18297,18333,18352,18354,18526,18531,18711,19161,19511,19512,19516,19797,19852,19854,19862,19863,19865,19868,19874,19889,19894,20222,20301,20624,20625,20696,21625,22104,22294,22736]]],["+",[9,9,[[0,1,1,0,1,[[39,1,1,0,1]]],[9,1,1,1,2,[[290,1,1,1,2]]],[12,2,2,2,4,[[353,1,1,2,3],[358,1,1,3,4]]],[18,2,2,4,6,[[479,1,1,4,5],[517,1,1,5,6]]],[22,1,1,6,7,[[711,1,1,6,7]]],[23,1,1,7,8,[[780,1,1,7,8]]],[25,1,1,8,9,[[813,1,1,8,9]]]],[1181,8702,10844,10936,13952,14530,18297,19865,20696]]],["Declare",[1,1,[[18,1,1,0,1,[[573,1,1,0,1]]]],[15468]]],["Tell",[2,2,[[11,1,1,0,1,[[320,1,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]]],[9731,22294]]],["accounted",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14234]]],["commune",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14855]]],["count",[4,4,[[2,1,1,0,1,[[112,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]],[18,2,2,2,4,[[564,1,1,2,3],[616,1,1,3,4]]]],[3417,13592,15307,16257]]],["counted",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8824]]],["declare",[16,16,[[17,3,3,0,3,[[447,1,1,0,1],[450,1,1,1,2],[463,1,1,2,3]]],[18,11,11,3,14,[[496,1,1,3,4],[499,1,1,4,5],[527,1,1,5,6],[543,1,1,6,7],[550,1,1,7,8],[552,1,1,8,9],[555,1,1,9,10],[579,1,1,10,11],[584,1,1,11,12],[595,1,1,12,13],[622,1,1,13,14]]],[22,1,1,14,15,[[721,1,1,14,15]]],[23,1,1,15,16,[[795,1,1,15,16]]]],[13136,13220,13531,14169,14226,14684,14889,15048,15072,15119,15542,15721,15886,16326,18531,20222]]],["declared",[4,4,[[1,1,1,0,1,[[58,1,1,0,1]]],[18,3,3,1,4,[[565,1,1,1,2],[596,2,2,2,4]]]],[1758,15319,15911,15924]]],["forth",[5,5,[[18,4,4,0,4,[[486,2,2,0,2],[548,1,1,2,3],[556,1,1,3,4]]],[22,1,1,4,5,[[721,1,1,4,5]]]],[14022,14035,14991,15198,18526]]],["number",[9,8,[[0,1,1,0,1,[[14,1,1,0,1]]],[2,4,4,1,5,[[104,2,2,1,3],[112,1,1,3,4],[114,1,1,4,5]]],[4,2,1,5,6,[[168,2,1,5,6]]],[17,2,2,6,8,[[473,1,1,6,7],[474,1,1,7,8]]]],[365,3181,3196,3418,3477,5351,13830,13836]]],["numbered",[9,8,[[0,2,2,0,2,[[15,1,1,0,1],[31,1,1,1,2]]],[12,1,1,2,3,[[360,1,1,2,3]]],[13,2,1,3,4,[[368,2,1,3,4]]],[14,1,1,4,5,[[403,1,1,4,5]]],[22,1,1,5,6,[[700,1,1,5,6]]],[23,1,1,6,7,[[777,1,1,6,7]]],[27,1,1,7,8,[[862,1,1,7,8]]]],[391,940,10986,11228,12024,18062,19797,22104]]],["numberest",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13197]]],["numbering",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1244]]],["out",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11213]]],["reckon",[1,1,[[25,1,1,0,1,[[845,1,1,0,1]]]],[21625]]],["scribe",[42,41,[[9,2,2,0,2,[[274,1,1,0,1],[286,1,1,1,2]]],[11,10,10,2,12,[[324,1,1,2,3],[330,2,2,3,5],[331,1,1,5,6],[334,5,5,6,11],[337,1,1,11,12]]],[12,3,3,12,15,[[355,1,1,12,13],[361,1,1,13,14],[364,1,1,14,15]]],[13,5,5,15,20,[[390,1,1,15,16],[392,1,1,16,17],[400,3,3,17,20]]],[14,3,2,20,22,[[409,3,2,20,22]]],[15,7,7,22,29,[[420,4,4,22,26],[424,2,2,26,28],[425,1,1,28,29]]],[22,4,4,29,33,[[711,1,1,29,30],[714,2,2,30,32],[715,1,1,32,33]]],[23,8,8,33,41,[[780,5,5,33,38],[781,2,2,38,40],[796,1,1,40,41]]]],[8226,8579,9860,10042,10061,10063,10148,10153,10154,10155,10157,10241,10906,11021,11141,11688,11743,11948,11951,11953,12179,12184,12494,12497,12502,12506,12650,12660,12684,18297,18333,18352,18354,19852,19854,19862,19868,19874,19889,19894,20301]]],["scribe's",[2,2,[[23,2,2,0,2,[[780,2,2,0,2]]]],[19854,19863]]],["scribes",[6,6,[[10,1,1,0,1,[[294,1,1,0,1]]],[12,1,1,1,2,[[339,1,1,1,2]]],[13,1,1,2,3,[[400,1,1,2,3]]],[16,2,2,3,5,[[428,1,1,3,4],[433,1,1,4,5]]],[23,1,1,5,6,[[752,1,1,5,6]]]],[8847,10361,11946,12759,12826,19161]]],["shewing",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15117]]],["speak",[2,2,[[18,2,2,0,2,[[536,1,1,0,1],[550,1,1,1,2]]]],[14802,15035]]],["talk",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14961]]],["tell",[10,10,[[0,2,2,0,2,[[14,1,1,0,1],[39,1,1,1,2]]],[1,1,1,2,3,[[59,1,1,2,3]]],[18,4,4,3,7,[[499,1,1,3,4],[503,1,1,4,5],[525,2,2,5,7]]],[23,3,3,7,10,[[767,3,3,7,10]]]],[365,1180,1779,14221,14280,14646,14647,19511,19512,19516]]],["tellest",[1,1,[[18,1,1,0,1,[[533,1,1,0,1]]]],[14763]]],["telling",[1,1,[[11,1,1,0,1,[[320,1,1,0,1]]]],[9732]]],["told",[25,24,[[0,6,6,0,6,[[23,1,1,0,1],[28,1,1,1,2],[36,2,2,2,4],[40,2,2,4,6]]],[1,2,2,6,8,[[67,1,1,6,7],[73,1,1,7,8]]],[3,1,1,8,9,[[129,1,1,8,9]]],[5,1,1,9,10,[[188,1,1,9,10]]],[6,2,2,10,12,[[216,1,1,10,11],[217,1,1,11,12]]],[8,1,1,12,13,[[246,1,1,12,13]]],[10,3,2,13,15,[[298,1,1,13,14],[303,2,1,14,15]]],[11,1,1,15,16,[[320,1,1,15,16]]],[13,1,1,16,17,[[371,1,1,16,17]]],[16,2,2,17,19,[[430,1,1,17,18],[431,1,1,18,19]]],[17,1,1,19,20,[[472,1,1,19,20]]],[18,2,2,20,22,[[521,1,1,20,21],[555,1,1,21,22]]],[22,1,1,22,23,[[730,1,1,22,23]]],[34,1,1,23,24,[[903,1,1,23,24]]]],[657,808,1092,1093,1203,1207,2007,2180,4102,5892,6667,6707,7450,8990,9195,9733,11274,12790,12806,13789,14572,15116,18711,22736]]],["writer",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]]],[6637,14598]]],["writer's",[2,2,[[25,2,2,0,2,[[810,2,2,0,2]]]],[20624,20625]]]]},{"k":"H5609","v":[["*",[5,4,[[14,4,3,0,3,[[406,2,1,0,1],[408,2,2,1,3]]],[26,1,1,3,4,[[856,1,1,3,4]]]],[12125,12152,12169,21943]]],["book",[3,2,[[14,3,2,0,2,[[406,2,1,0,1],[408,1,1,1,2]]]],[12125,12169]]],["books",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21943]]],["rolls",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12152]]]]},{"k":"H5610","v":[["numbering",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11228]]]]},{"k":"H5611","v":[["Sephar",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[264]]]]},{"k":"H5612","v":[["*",[186,174,[[0,1,1,0,1,[[4,1,1,0,1]]],[1,4,4,1,5,[[66,1,1,1,2],[73,1,1,2,3],[81,2,2,3,5]]],[3,2,2,5,7,[[121,1,1,5,6],[137,1,1,6,7]]],[4,11,11,7,18,[[169,1,1,7,8],[176,2,2,8,10],[180,2,2,10,12],[181,3,3,12,15],[182,1,1,15,16],[183,2,2,16,18]]],[5,7,7,18,25,[[187,1,1,18,19],[194,2,2,19,21],[196,1,1,21,22],[204,1,1,22,23],[209,1,1,23,24],[210,1,1,24,25]]],[8,1,1,25,26,[[245,1,1,25,26]]],[9,3,3,26,29,[[267,1,1,26,27],[277,2,2,27,29]]],[10,16,15,29,44,[[301,1,1,29,30],[304,2,2,30,32],[305,3,3,32,35],[306,4,4,35,39],[311,4,3,39,42],[312,2,2,42,44]]],[11,44,41,44,85,[[313,1,1,44,45],[317,4,3,45,48],[320,1,1,48,49],[322,5,5,49,54],[324,1,1,54,55],[325,2,2,55,57],[326,4,4,57,61],[327,7,7,61,68],[328,1,1,68,69],[331,1,1,69,70],[332,2,2,70,72],[333,2,2,72,74],[334,7,5,74,79],[335,5,5,79,84],[336,1,1,84,85]]],[12,1,1,85,86,[[346,1,1,85,86]]],[13,23,21,86,107,[[382,1,1,86,87],[383,1,1,87,88],[386,1,1,88,89],[390,1,1,89,90],[391,2,2,90,92],[393,1,1,92,93],[394,1,1,93,94],[398,2,2,94,96],[400,10,8,96,104],[401,2,2,104,106],[402,1,1,106,107]]],[15,9,9,107,116,[[419,1,1,107,108],[420,5,5,108,113],[421,1,1,113,114],[424,1,1,114,115],[425,1,1,115,116]]],[16,11,11,116,127,[[426,1,1,116,117],[427,1,1,117,118],[428,1,1,118,119],[431,1,1,119,120],[433,2,2,120,122],[434,4,4,122,126],[435,1,1,126,127]]],[17,2,2,127,129,[[454,1,1,127,128],[466,1,1,128,129]]],[18,4,4,129,133,[[517,1,1,129,130],[533,1,1,130,131],[546,1,1,131,132],[616,1,1,132,133]]],[20,1,1,133,134,[[670,1,1,133,134]]],[22,12,9,134,143,[[707,6,3,134,137],[708,1,1,137,138],[712,2,2,138,140],[715,1,1,140,141],[717,1,1,141,142],[728,1,1,142,143]]],[23,26,23,143,166,[[747,1,1,143,144],[769,1,1,144,145],[773,3,3,145,148],[774,1,1,148,149],[776,9,6,149,155],[780,8,8,155,163],[789,1,1,163,164],[795,2,2,164,166]]],[25,1,1,166,167,[[803,1,1,166,167]]],[26,5,5,167,172,[[850,2,2,167,169],[858,1,1,169,170],[861,2,2,170,172]]],[33,1,1,172,173,[[900,1,1,172,173]]],[38,1,1,173,174,[[927,1,1,173,174]]]],[106,1997,2184,2470,2471,3815,4354,5382,5526,5528,5669,5672,5699,5700,5706,5718,5752,5754,5859,6033,6036,6077,6302,6466,6502,7443,8040,8273,8274,9149,9237,9247,9256,9272,9280,9288,9297,9303,9310,9459,9460,9462,9519,9525,9551,9652,9653,9654,9750,9794,9795,9799,9800,9827,9869,9879,9883,9902,9911,9914,9924,9931,9936,9940,9946,9951,9956,9961,9982,10075,10110,10118,10136,10144,10153,10155,10156,10158,10161,10167,10168,10186,10189,10193,10207,10616,11520,11532,11621,11704,11708,11730,11762,11790,11892,11907,11947,11948,11949,11951,11954,11957,11963,11964,11978,11993,12001,12425,12494,12496,12498,12501,12511,12514,12647,12672,12724,12747,12760,12794,12822,12827,12854,12859,12864,12866,12868,13320,13623,14532,14763,14963,16255,17535,18204,18205,18211,18225,18307,18319,18366,18413,18663,19010,19547,19636,19660,19664,19669,19741,19742,19743,19745,19747,19775,19844,19846,19850,19852,19853,19855,19860,19874,20041,20272,20275,20501,21741,21754,21990,22082,22085,22685,23136]]],["+",[10,9,[[1,2,2,0,2,[[81,2,2,0,2]]],[18,1,1,2,3,[[546,1,1,2,3]]],[22,3,2,3,5,[[707,3,2,3,5]]],[23,4,4,5,9,[[776,1,1,5,6],[780,2,2,6,8],[795,1,1,8,9]]]],[2470,2471,14963,18204,18205,19745,19852,19853,20272]]],["bill",[4,4,[[4,2,2,0,2,[[176,2,2,0,2]]],[22,1,1,2,3,[[728,1,1,2,3]]],[23,1,1,3,4,[[747,1,1,3,4]]]],[5526,5528,18663,19010]]],["book",[130,126,[[0,1,1,0,1,[[4,1,1,0,1]]],[1,2,2,1,3,[[66,1,1,1,2],[73,1,1,2,3]]],[3,2,2,3,5,[[121,1,1,3,4],[137,1,1,4,5]]],[4,9,9,5,14,[[169,1,1,5,6],[180,2,2,6,8],[181,3,3,8,11],[182,1,1,11,12],[183,2,2,12,14]]],[5,7,7,14,21,[[187,1,1,14,15],[194,2,2,15,17],[196,1,1,17,18],[204,1,1,18,19],[209,1,1,19,20],[210,1,1,20,21]]],[8,1,1,21,22,[[245,1,1,21,22]]],[9,1,1,22,23,[[267,1,1,22,23]]],[10,12,12,23,35,[[301,1,1,23,24],[304,2,2,24,26],[305,3,3,26,29],[306,4,4,29,33],[312,2,2,33,35]]],[11,34,32,35,67,[[313,1,1,35,36],[320,1,1,36,37],[322,1,1,37,38],[324,1,1,38,39],[325,2,2,39,41],[326,4,4,41,45],[327,7,7,45,52],[328,1,1,52,53],[332,1,1,53,54],[333,2,2,54,56],[334,7,5,56,61],[335,5,5,61,66],[336,1,1,66,67]]],[12,1,1,67,68,[[346,1,1,67,68]]],[13,22,20,68,88,[[382,1,1,68,69],[383,1,1,69,70],[386,1,1,70,71],[390,1,1,71,72],[391,2,2,72,74],[393,1,1,74,75],[394,1,1,75,76],[398,1,1,76,77],[400,10,8,77,85],[401,2,2,85,87],[402,1,1,87,88]]],[15,8,8,88,96,[[420,5,5,88,93],[421,1,1,93,94],[424,1,1,94,95],[425,1,1,95,96]]],[16,4,4,96,100,[[427,1,1,96,97],[431,1,1,97,98],[434,1,1,98,99],[435,1,1,99,100]]],[17,2,2,100,102,[[454,1,1,100,101],[466,1,1,101,102]]],[18,3,3,102,105,[[517,1,1,102,103],[533,1,1,103,104],[616,1,1,104,105]]],[22,5,5,105,110,[[707,3,3,105,108],[708,1,1,108,109],[712,1,1,109,110]]],[23,11,11,110,121,[[769,1,1,110,111],[774,1,1,111,112],[776,1,1,112,113],[780,6,6,113,119],[789,1,1,119,120],[795,1,1,120,121]]],[25,1,1,121,122,[[803,1,1,121,122]]],[26,2,2,122,124,[[861,2,2,122,124]]],[33,1,1,124,125,[[900,1,1,124,125]]],[38,1,1,125,126,[[927,1,1,125,126]]]],[106,1997,2184,3815,4354,5382,5669,5672,5699,5700,5706,5718,5752,5754,5859,6033,6036,6077,6302,6466,6502,7443,8040,9149,9237,9247,9256,9272,9280,9288,9297,9303,9310,9519,9525,9551,9750,9827,9869,9879,9883,9902,9911,9914,9924,9931,9936,9940,9946,9951,9956,9961,9982,10118,10136,10144,10153,10155,10156,10158,10161,10167,10168,10186,10189,10193,10207,10616,11520,11532,11621,11704,11708,11730,11762,11790,11907,11947,11948,11949,11951,11954,11957,11963,11964,11978,11993,12001,12494,12496,12498,12501,12511,12514,12647,12672,12747,12794,12866,12868,13320,13623,14532,14763,16255,18204,18205,18211,18225,18319,19547,19669,19743,19844,19846,19850,19855,19860,19874,20041,20275,20501,22082,22085,22685,23136]]],["books",[2,2,[[20,1,1,0,1,[[670,1,1,0,1]]],[26,1,1,1,2,[[858,1,1,1,2]]]],[17535,21990]]],["evidence",[6,5,[[23,6,5,0,5,[[776,6,5,0,5]]]],[19741,19742,19743,19745,19747]]],["evidences",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19775]]],["learning",[2,2,[[26,2,2,0,2,[[850,2,2,0,2]]]],[21741,21754]]],["letter",[13,12,[[9,2,2,0,2,[[277,2,2,0,2]]],[11,8,7,2,9,[[317,4,3,2,5],[322,3,3,5,8],[331,1,1,8,9]]],[22,1,1,9,10,[[715,1,1,9,10]]],[23,2,2,10,12,[[773,2,2,10,12]]]],[8273,8274,9652,9653,9654,9795,9799,9800,10075,18366,19636,19664]]],["letters",[16,15,[[10,4,3,0,3,[[311,4,3,0,3]]],[11,2,2,3,5,[[322,1,1,3,4],[332,1,1,4,5]]],[13,1,1,5,6,[[398,1,1,5,6]]],[16,7,7,6,13,[[426,1,1,6,7],[428,1,1,7,8],[433,2,2,8,10],[434,3,3,10,13]]],[22,1,1,13,14,[[717,1,1,13,14]]],[23,1,1,14,15,[[773,1,1,14,15]]]],[9459,9460,9462,9794,10110,11892,12724,12760,12822,12827,12854,12859,12864,18413,19660]]],["register",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12425]]],["scroll",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18307]]]]},{"k":"H5613","v":[["scribe",[6,6,[[14,6,6,0,6,[[406,4,4,0,4],[409,2,2,4,6]]]],[12118,12119,12127,12133,12185,12194]]]]},{"k":"H5614","v":[["Sepharad",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22530]]]]},{"k":"H5615","v":[["numbers",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14991]]]]},{"k":"H5616","v":[["Sepharvites",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10014]]]]},{"k":"H5617","v":[["Sepharvaim",[6,6,[[11,4,4,0,4,[[329,2,2,0,2],[330,1,1,2,3],[331,1,1,3,4]]],[22,2,2,4,6,[[714,1,1,4,5],[715,1,1,5,6]]]],[10007,10014,10058,10074,18349,18365]]]]},{"k":"H5618","v":[["Sophereth",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12082,12477]]]]},{"k":"H5619","v":[["*",[22,20,[[1,8,6,0,6,[[57,1,1,0,1],[66,1,1,1,2],[68,2,1,2,3],[70,4,3,3,6]]],[4,4,4,6,10,[[165,1,1,6,7],[169,1,1,7,8],[174,2,2,8,10]]],[5,1,1,10,11,[[193,1,1,10,11]]],[8,1,1,11,12,[[265,1,1,11,12]]],[9,2,2,12,14,[[282,2,2,12,14]]],[10,4,4,14,18,[[311,4,4,14,18]]],[22,2,2,18,20,[[683,1,1,18,19],[740,1,1,19,20]]]],[1736,1987,2039,2105,2106,2109,5282,5369,5491,5494,6001,7984,8432,8439,9461,9464,9465,9466,17741,18864]]],["+",[4,2,[[1,4,2,0,2,[[68,2,1,0,1],[70,2,1,1,2]]]],[2039,2105]]],["cast",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8432]]],["out",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18864]]],["stone",[7,7,[[1,2,2,0,2,[[57,1,1,0,1],[66,1,1,1,2]]],[4,4,4,2,6,[[165,1,1,2,3],[169,1,1,3,4],[174,2,2,4,6]]],[10,1,1,6,7,[[311,1,1,6,7]]]],[1736,1987,5282,5369,5491,5494,9461]]],["stoned",[6,6,[[1,2,2,0,2,[[70,2,2,0,2]]],[5,1,1,2,3,[[193,1,1,2,3]]],[10,3,3,3,6,[[311,3,3,3,6]]]],[2106,2109,6001,9464,9465,9466]]],["stones",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17741]]],["stoning",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7984]]],["threw",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8439]]]]},{"k":"H5620","v":[["*",[3,3,[[10,3,3,0,3,[[310,1,1,0,1],[311,2,2,1,3]]]],[9451,9455,9456]]],["heavy",[2,2,[[10,2,2,0,2,[[310,1,1,0,1],[311,1,1,1,2]]]],[9451,9455]]],["sad",[1,1,[[10,1,1,0,1,[[311,1,1,0,1]]]],[9456]]]]},{"k":"H5621","v":[["briers",[1,1,[[25,1,1,0,1,[[803,1,1,0,1]]]],[20498]]]]},{"k":"H5622","v":[["coats",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21828,21834]]]]},{"k":"H5623","v":[["Sargon",[1,1,[[22,1,1,0,1,[[698,1,1,0,1]]]],[18030]]]]},{"k":"H5624","v":[["Sered",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1400,4515]]]]},{"k":"H5625","v":[["Sardites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4515]]]]},{"k":"H5626","v":[["Sirah",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8107]]]]},{"k":"H5627","v":[["*",[8,8,[[4,2,2,0,2,[[165,1,1,0,1],[171,1,1,1,2]]],[22,4,4,2,6,[[679,1,1,2,3],[692,1,1,3,4],[709,1,1,4,5],[737,1,1,5,6]]],[23,2,2,6,8,[[772,1,1,6,7],[773,1,1,7,8]]]],[5277,5422,17659,17934,18256,18813,19634,19667]]],["+",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17934]]],["away",[1,1,[[4,1,1,0,1,[[165,1,1,0,1]]]],[5277]]],["rebellion",[2,2,[[23,2,2,0,2,[[772,1,1,0,1],[773,1,1,1,2]]]],[19634,19667]]],["revolt",[2,2,[[22,2,2,0,2,[[679,1,1,0,1],[737,1,1,1,2]]]],[17659,18813]]],["revolted",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18256]]],["wrong",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5422]]]]},{"k":"H5628","v":[["*",[7,7,[[1,2,2,0,2,[[75,2,2,0,2]]],[23,1,1,2,3,[[793,1,1,2,3]]],[25,2,2,3,5,[[818,1,1,3,4],[824,1,1,4,5]]],[29,2,2,5,7,[[884,2,2,5,7]]]],[2247,2248,20134,20831,21022,22454,22457]]],["exceeding",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21022]]],["hang",[2,2,[[1,2,2,0,2,[[75,2,2,0,2]]]],[2247,2248]]],["spreading",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20831]]],["stretch",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22454]]],["stretched",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22457]]],["vanished",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20134]]]]},{"k":"H5629","v":[["remnant",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2247]]]]},{"k":"H5630","v":[["*",[2,2,[[23,2,2,0,2,[[790,1,1,0,1],[795,1,1,1,2]]]],[20049,20215]]],["brigandine",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20215]]],["brigandines",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20049]]]]},{"k":"H5631","v":[["*",[42,42,[[0,4,4,0,4,[[36,1,1,0,1],[38,1,1,1,2],[39,2,2,2,4]]],[8,1,1,4,5,[[243,1,1,4,5]]],[10,1,1,5,6,[[312,1,1,5,6]]],[11,7,7,6,13,[[320,1,1,6,7],[321,1,1,7,8],[332,1,1,8,9],[335,1,1,9,10],[336,2,2,10,12],[337,1,1,12,13]]],[12,1,1,13,14,[[365,1,1,13,14]]],[13,1,1,14,15,[[384,1,1,14,15]]],[16,12,12,15,27,[[426,3,3,15,18],[427,4,4,18,22],[429,2,2,22,24],[431,2,2,24,26],[432,1,1,26,27]]],[22,3,3,27,30,[[717,1,1,27,28],[734,2,2,28,30]]],[23,5,5,30,35,[[773,1,1,30,31],[778,1,1,31,32],[782,1,1,32,33],[785,1,1,33,34],[796,1,1,34,35]]],[26,7,7,35,42,[[850,7,7,35,42]]]],[1119,1150,1174,1179,7384,9489,9733,9788,10116,10176,10214,10217,10241,11144,11550,12712,12714,12717,12727,12738,12739,12745,12766,12767,12795,12807,12816,18419,18756,18757,19637,19820,19902,19973,20301,21740,21744,21745,21746,21747,21748,21755]]],["+",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12767]]],["chamberlain",[4,4,[[11,1,1,0,1,[[335,1,1,0,1]]],[16,3,3,1,4,[[427,3,3,1,4]]]],[10176,12727,12738,12739]]],["chamberlains",[8,8,[[16,8,8,0,8,[[426,3,3,0,3],[427,1,1,3,4],[429,1,1,4,5],[431,2,2,5,7],[432,1,1,7,8]]]],[12712,12714,12717,12745,12766,12795,12807,12816]]],["eunuch",[2,2,[[22,1,1,0,1,[[734,1,1,0,1]]],[23,1,1,1,2,[[796,1,1,1,2]]]],[18756,20301]]],["eunuchs",[15,15,[[11,2,2,0,2,[[321,1,1,0,1],[332,1,1,1,2]]],[22,2,2,2,4,[[717,1,1,2,3],[734,1,1,3,4]]],[23,4,4,4,8,[[773,1,1,4,5],[778,1,1,5,6],[782,1,1,6,7],[785,1,1,7,8]]],[26,7,7,8,15,[[850,7,7,8,15]]]],[9788,10116,18419,18757,19637,19820,19902,19973,21740,21744,21745,21746,21747,21748,21755]]],["officer",[5,5,[[0,2,2,0,2,[[36,1,1,0,1],[38,1,1,1,2]]],[10,1,1,2,3,[[312,1,1,2,3]]],[11,2,2,3,5,[[320,1,1,3,4],[337,1,1,4,5]]]],[1119,1150,9489,9733,10241]]],["officers",[7,7,[[0,2,2,0,2,[[39,2,2,0,2]]],[8,1,1,2,3,[[243,1,1,2,3]]],[11,2,2,3,5,[[336,2,2,3,5]]],[12,1,1,5,6,[[365,1,1,5,6]]],[13,1,1,6,7,[[384,1,1,6,7]]]],[1174,1179,7384,10214,10217,11144,11550]]]]},{"k":"H5632","v":[["presidents",[5,5,[[26,5,5,0,5,[[855,5,5,0,5]]]],[21907,21908,21909,21911,21912]]]]},{"k":"H5633","v":[["*",[22,20,[[5,1,1,0,1,[[199,1,1,0,1]]],[6,8,7,1,8,[[213,1,1,1,2],[226,7,6,2,8]]],[8,11,10,8,18,[[240,2,2,8,10],[241,5,4,10,14],[242,1,1,14,15],[264,3,3,15,18]]],[10,1,1,18,19,[[297,1,1,18,19]]],[12,1,1,19,20,[[349,1,1,19,20]]]],[6157,6571,6954,6957,6967,6972,6976,6979,7327,7330,7335,7343,7347,7349,7359,7969,7973,7974,8964,10739]]],["+",[1,1,[[8,1,1,0,1,[[264,1,1,0,1]]]],[7973]]],["lords",[20,18,[[5,1,1,0,1,[[199,1,1,0,1]]],[6,8,7,1,8,[[213,1,1,1,2],[226,7,6,2,8]]],[8,10,9,8,17,[[240,2,2,8,10],[241,5,4,10,14],[242,1,1,14,15],[264,2,2,15,17]]],[12,1,1,17,18,[[349,1,1,17,18]]]],[6157,6571,6954,6957,6967,6972,6976,6979,7327,7330,7335,7343,7347,7349,7359,7969,7974,10739]]],["plates",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8964]]]]},{"k":"H5634","v":[["boughs",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21235]]]]},{"k":"H5635","v":[["burneth",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22460]]]]},{"k":"H5636","v":[["brier",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18753]]]]},{"k":"H5637","v":[["*",[17,16,[[4,2,2,0,2,[[173,2,2,0,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[18,4,4,3,7,[[543,1,1,3,4],[545,2,2,4,6],[555,1,1,6,7]]],[19,1,1,7,8,[[634,1,1,7,8]]],[22,3,3,8,11,[[679,1,1,8,9],[708,1,1,9,10],[743,1,1,10,11]]],[23,2,2,11,13,[[749,1,1,11,12],[750,1,1,12,13]]],[27,3,2,13,15,[[865,2,1,13,14],[870,1,1,14,15]]],[37,1,1,15,16,[[917,1,1,15,16]]]],[5465,5467,12540,14880,14906,14918,15121,16586,17677,18218,18899,19081,19117,22149,22223,22973]]],["+",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12540]]],["away",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22973]]],["back",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22149]]],["backsliding",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22149]]],["rebellious",[6,6,[[18,3,3,0,3,[[543,1,1,0,1],[545,2,2,1,3]]],[22,3,3,3,6,[[679,1,1,3,4],[708,1,1,4,5],[743,1,1,5,6]]]],[14880,14906,14918,17677,18218,18899]]],["revolters",[2,2,[[23,1,1,0,1,[[750,1,1,0,1]]],[27,1,1,1,2,[[870,1,1,1,2]]]],[19117,22223]]],["revolting",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19081]]],["stubborn",[4,4,[[4,2,2,0,2,[[173,2,2,0,2]]],[18,1,1,2,3,[[555,1,1,2,3]]],[19,1,1,3,4,[[634,1,1,3,4]]]],[5465,5467,15121,16586]]]]},{"k":"H5638","v":[["winter",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17565]]]]},{"k":"H5639","v":[["Sethur",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4088]]]]},{"k":"H5640","v":[["*",[14,14,[[0,2,2,0,2,[[25,2,2,0,2]]],[11,2,2,2,4,[[315,2,2,2,4]]],[13,3,3,4,7,[[398,3,3,4,7]]],[15,1,1,7,8,[[416,1,1,7,8]]],[18,1,1,8,9,[[528,1,1,8,9]]],[24,1,1,9,10,[[799,1,1,9,10]]],[25,1,1,10,11,[[829,1,1,10,11]]],[26,3,3,11,14,[[857,1,1,11,12],[861,2,2,12,14]]]],[707,710,9595,9601,11878,11879,11905,12366,14697,20362,21160,21987,22085,22090]]],["+",[4,4,[[13,3,3,0,3,[[398,3,3,0,3]]],[26,1,1,3,4,[[857,1,1,3,4]]]],[11878,11879,11905,21987]]],["hidden",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14697]]],["out",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20362]]],["secret",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21160]]],["stop",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9595]]],["stopped",[4,4,[[0,2,2,0,2,[[25,2,2,0,2]]],[11,1,1,2,3,[[315,1,1,2,3]]],[15,1,1,3,4,[[416,1,1,3,4]]]],[707,710,9601,12366]]],["up",[2,2,[[26,2,2,0,2,[[861,2,2,0,2]]]],[22085,22090]]]]},{"k":"H5641","v":[["*",[80,79,[[0,2,2,0,2,[[3,1,1,0,1],[30,1,1,1,2]]],[1,1,1,2,3,[[52,1,1,2,3]]],[3,1,1,3,4,[[121,1,1,3,4]]],[4,6,5,4,9,[[159,1,1,4,5],[181,1,1,5,6],[183,3,2,6,8],[184,1,1,8,9]]],[8,6,6,9,15,[[255,4,4,9,13],[258,1,1,13,14],[261,1,1,14,15]]],[10,1,1,15,16,[[307,1,1,15,16]]],[11,1,1,16,17,[[323,1,1,16,17]]],[13,1,1,17,18,[[388,1,1,17,18]]],[17,8,8,18,26,[[438,2,2,18,20],[448,2,2,20,22],[449,1,1,22,23],[463,1,1,23,24],[469,2,2,24,26]]],[18,22,22,26,48,[[487,1,1,26,27],[490,1,1,27,28],[494,1,1,28,29],[496,2,2,29,31],[499,1,1,31,32],[504,2,2,32,34],[507,1,1,34,35],[508,1,1,35,36],[515,1,1,36,37],[521,1,1,37,38],[528,1,1,38,39],[532,1,1,39,40],[541,1,1,40,41],[546,1,1,41,42],[565,1,1,42,43],[566,1,1,43,44],[579,1,1,44,45],[581,1,1,45,46],[596,1,1,46,47],[620,1,1,47,48]]],[19,5,5,48,53,[[649,1,1,48,49],[652,1,1,49,50],[654,2,2,50,52],[655,1,1,52,53]]],[22,14,14,53,67,[[686,1,1,53,54],[694,1,1,54,55],[706,1,1,55,56],[707,2,2,56,58],[718,1,1,58,59],[723,1,1,59,60],[727,1,1,60,61],[728,1,1,61,62],[732,1,1,62,63],[735,1,1,63,64],[737,1,1,64,65],[742,1,1,65,66],[743,1,1,66,67]]],[23,5,5,67,72,[[760,1,1,67,68],[767,1,1,68,69],[777,1,1,69,70],[780,2,2,70,72]]],[25,3,3,72,75,[[840,3,3,72,75]]],[27,1,1,75,76,[[874,1,1,75,76]]],[29,1,1,76,77,[[887,1,1,76,77]]],[32,1,1,77,78,[[895,1,1,77,78]]],[35,1,1,78,79,[[907,1,1,78,79]]]],[93,922,1585,3805,5131,5708,5745,5746,5778,7732,7735,7749,7754,7829,7906,9320,9831,11655,12914,12927,13173,13177,13194,13525,13705,13712,14052,14075,14111,14174,14180,14228,14290,14294,14326,14351,14499,14595,14700,14744,14852,14952,15322,15372,15523,15600,15917,16300,17018,17115,17174,17181,17224,17824,17972,18179,18207,18208,18447,18576,18638,18668,18731,18782,18802,18892,18913,19353,19508,19780,19861,19868,21471,21472,21477,22280,22498,22612,22808]]],["+",[5,4,[[4,2,1,0,1,[[183,2,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[18,2,2,2,4,[[490,1,1,2,3],[496,1,1,3,4]]]],[5746,7732,14075,14180]]],["Hide",[4,4,[[18,4,4,0,4,[[504,1,1,0,1],[528,1,1,1,2],[541,1,1,2,3],[579,1,1,3,4]]]],[14294,14700,14852,15523]]],["absent",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[922]]],["close",[2,2,[[3,1,1,0,1,[[121,1,1,0,1]]],[17,1,1,1,2,[[463,1,1,1,2]]]],[3805,13525]]],["conceal",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17115]]],["hid",[26,26,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,1,1,1,2,[[52,1,1,1,2]]],[11,1,1,2,3,[[323,1,1,2,3]]],[13,1,1,3,4,[[388,1,1,3,4]]],[17,2,2,4,6,[[438,2,2,4,6]]],[18,3,3,6,9,[[496,1,1,6,7],[499,1,1,7,8],[515,1,1,8,9]]],[22,9,9,9,18,[[707,1,1,9,10],[718,1,1,10,11],[727,1,1,11,12],[728,1,1,12,13],[732,1,1,13,14],[735,1,1,14,15],[737,1,1,15,16],[742,1,1,16,17],[743,1,1,17,18]]],[23,3,3,18,21,[[760,1,1,18,19],[777,1,1,19,20],[780,1,1,20,21]]],[25,2,2,21,23,[[840,2,2,21,23]]],[27,1,1,23,24,[[874,1,1,23,24]]],[29,1,1,24,25,[[887,1,1,24,25]]],[35,1,1,25,26,[[907,1,1,25,26]]]],[93,1585,9831,11655,12914,12927,14174,14228,14499,18207,18447,18638,18668,18731,18782,18802,18892,18913,19353,19780,19868,21471,21472,22280,22498,22808]]],["hide",[14,14,[[4,2,2,0,2,[[183,1,1,0,1],[184,1,1,1,2]]],[18,7,7,2,9,[[494,1,1,2,3],[504,1,1,3,4],[507,1,1,4,5],[508,1,1,5,6],[546,1,1,6,7],[596,1,1,7,8],[620,1,1,8,9]]],[22,2,2,9,11,[[694,1,1,9,10],[707,1,1,10,11]]],[23,1,1,11,12,[[780,1,1,11,12]]],[25,1,1,12,13,[[840,1,1,12,13]]],[32,1,1,13,14,[[895,1,1,13,14]]]],[5745,5778,14111,14290,14326,14351,14952,15917,16300,17972,18208,19861,21477,22612]]],["hidest",[4,4,[[17,1,1,0,1,[[448,1,1,0,1]]],[18,3,3,1,4,[[521,1,1,1,2],[565,1,1,2,3],[581,1,1,3,4]]]],[13177,14595,15322,15600]]],["hideth",[3,3,[[17,1,1,0,1,[[469,1,1,0,1]]],[18,1,1,1,2,[[487,1,1,1,2]]],[22,1,1,2,3,[[686,1,1,2,3]]]],[13712,14052,17824]]],["himself",[6,6,[[8,3,3,0,3,[[255,1,1,0,1],[258,1,1,1,2],[261,1,1,2,3]]],[19,2,2,3,5,[[649,1,1,3,4],[654,1,1,4,5]]],[23,1,1,5,6,[[767,1,1,5,6]]]],[7754,7829,7906,17018,17181,19508]]],["myself",[3,3,[[8,1,1,0,1,[[255,1,1,0,1]]],[17,1,1,1,2,[[448,1,1,1,2]]],[18,1,1,2,3,[[532,1,1,2,3]]]],[7735,13173,14744]]],["ourselves",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18179]]],["secret",[3,3,[[4,1,1,0,1,[[181,1,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[19,1,1,2,3,[[654,1,1,2,3]]]],[5708,13194,17174]]],["themselves",[3,3,[[4,1,1,0,1,[[159,1,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[19,1,1,2,3,[[655,1,1,2,3]]]],[5131,13705,17224]]],["thyself",[4,4,[[8,1,1,0,1,[[255,1,1,0,1]]],[10,1,1,1,2,[[307,1,1,1,2]]],[18,1,1,2,3,[[566,1,1,2,3]]],[22,1,1,3,4,[[723,1,1,3,4]]]],[7749,9320,15372,18576]]]]},{"k":"H5642","v":[["*",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[851,1,1,1,2]]]],[12146,21780]]],["destroyed",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12146]]],["things",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21780]]]]},{"k":"H5643","v":[["*",[36,36,[[4,5,5,0,5,[[165,1,1,0,1],[179,2,2,1,3],[180,1,1,3,4],[184,1,1,4,5]]],[6,1,1,5,6,[[213,1,1,5,6]]],[8,2,2,6,8,[[254,1,1,6,7],[260,1,1,7,8]]],[9,1,1,8,9,[[278,1,1,8,9]]],[17,5,5,9,14,[[448,1,1,9,10],[457,1,1,10,11],[459,1,1,11,12],[466,1,1,12,13],[475,1,1,13,14]]],[18,10,10,14,24,[[495,1,1,14,15],[504,1,1,15,16],[508,1,1,16,17],[509,1,1,17,18],[538,1,1,18,19],[558,1,1,19,20],[568,1,1,20,21],[578,1,1,21,22],[596,1,1,22,23],[616,1,1,23,24]]],[19,3,3,24,27,[[636,1,1,24,25],[648,1,1,25,26],[652,1,1,26,27]]],[21,1,1,27,28,[[672,1,1,27,28]]],[22,5,5,28,33,[[694,1,1,28,29],[706,1,1,29,30],[710,1,1,30,31],[723,1,1,31,32],[726,1,1,32,33]]],[23,3,3,33,36,[[781,1,1,33,34],[782,1,1,34,35],[784,1,1,35,36]]]],[5278,5600,5609,5668,5796,6587,7708,7881,8298,13163,13403,13451,13615,13885,14129,14290,14351,14362,14823,15224,15396,15518,16012,16254,16655,16998,17136,17568,17973,18181,18261,18580,18630,19891,19911,19956]]],["+",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13451]]],["backbiting",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17136]]],["covering",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13403]]],["covert",[5,5,[[8,1,1,0,1,[[260,1,1,0,1]]],[17,1,1,1,2,[[475,1,1,1,2]]],[18,1,1,2,3,[[538,1,1,2,3]]],[22,2,2,3,5,[[694,1,1,3,4],[710,1,1,4,5]]]],[7881,13885,14823,17973,18261]]],["place",[6,6,[[18,5,5,0,5,[[495,1,1,0,1],[509,1,1,1,2],[558,1,1,2,3],[568,1,1,3,4],[596,1,1,4,5]]],[22,1,1,5,6,[[706,1,1,5,6]]]],[14129,14362,15224,15396,16012,18181]]],["privily",[1,1,[[18,1,1,0,1,[[578,1,1,0,1]]]],[15518]]],["protection",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5796]]],["secret",[11,11,[[4,1,1,0,1,[[179,1,1,0,1]]],[6,1,1,1,2,[[213,1,1,1,2]]],[8,1,1,2,3,[[254,1,1,2,3]]],[18,3,3,3,6,[[504,1,1,3,4],[508,1,1,4,5],[616,1,1,5,6]]],[19,2,2,6,8,[[636,1,1,6,7],[648,1,1,7,8]]],[21,1,1,8,9,[[672,1,1,8,9]]],[22,2,2,9,11,[[723,1,1,9,10],[726,1,1,10,11]]]],[5600,6587,7708,14290,14351,16254,16655,16998,17568,18580,18630]]],["secretly",[9,9,[[4,3,3,0,3,[[165,1,1,0,1],[179,1,1,1,2],[180,1,1,2,3]]],[9,1,1,3,4,[[278,1,1,3,4]]],[17,2,2,4,6,[[448,1,1,4,5],[466,1,1,5,6]]],[23,3,3,6,9,[[781,1,1,6,7],[782,1,1,7,8],[784,1,1,8,9]]]],[5278,5609,5668,8298,13163,13615,19891,19911,19956]]]]},{"k":"H5644","v":[["Zithri",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1677]]]]},{"k":"H5645","v":[["*",[32,32,[[1,1,1,0,1,[[68,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[9,2,2,2,4,[[288,1,1,2,3],[289,1,1,3,4]]],[10,2,2,4,6,[[308,2,2,4,6]]],[17,8,8,6,14,[[455,1,1,6,7],[457,1,1,7,8],[461,1,1,8,9],[465,1,1,9,10],[471,1,1,10,11],[472,2,2,11,13],[473,1,1,13,14]]],[18,5,5,14,19,[[495,2,2,14,16],[554,1,1,16,17],[581,1,1,17,18],[624,1,1,18,19]]],[19,1,1,19,20,[[643,1,1,19,20]]],[20,3,3,20,23,[[669,2,2,20,22],[670,1,1,22,23]]],[22,7,7,23,30,[[683,1,1,23,24],[692,1,1,24,25],[696,1,1,25,26],[697,1,1,26,27],[703,1,1,27,28],[722,1,1,28,29],[738,1,1,29,30]]],[23,1,1,30,31,[[748,1,1,30,31]]],[25,1,1,31,32,[[842,1,1,31,32]]]],[2035,6627,8614,8657,9385,9386,13332,13403,13475,13572,13765,13780,13785,13827,14129,14130,15110,15574,16359,16855,17516,17517,17525,17745,17942,18001,18005,18123,18555,18829,19056,21551]]],["cloud",[9,9,[[10,1,1,0,1,[[308,1,1,0,1]]],[17,2,2,1,3,[[465,1,1,1,2],[472,1,1,2,3]]],[19,1,1,3,4,[[643,1,1,3,4]]],[22,5,5,4,9,[[696,1,1,4,5],[697,1,1,5,6],[703,1,1,6,7],[722,1,1,7,8],[738,1,1,8,9]]]],[9385,13572,13780,16855,18001,18005,18123,18555,18829]]],["clouds",[20,20,[[6,1,1,0,1,[[215,1,1,0,1]]],[9,2,2,1,3,[[288,1,1,1,2],[289,1,1,2,3]]],[10,1,1,3,4,[[308,1,1,3,4]]],[17,6,6,4,10,[[455,1,1,4,5],[457,1,1,5,6],[461,1,1,6,7],[471,1,1,7,8],[472,1,1,8,9],[473,1,1,9,10]]],[18,5,5,10,15,[[495,2,2,10,12],[554,1,1,12,13],[581,1,1,13,14],[624,1,1,14,15]]],[20,3,3,15,18,[[669,2,2,15,17],[670,1,1,17,18]]],[22,2,2,18,20,[[683,1,1,18,19],[692,1,1,19,20]]]],[6627,8614,8657,9386,13332,13403,13475,13765,13785,13827,14129,14130,15110,15574,16359,17516,17517,17525,17745,17942]]],["thick",[2,2,[[1,1,1,0,1,[[68,1,1,0,1]]],[25,1,1,1,2,[[842,1,1,1,2]]]],[2035,21551]]],["thickets",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19056]]]]},{"k":"H5646","v":[["*",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[25,1,1,1,2,[[842,1,1,1,2]]]],[8940,21552]]],["beam",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8940]]],["planks",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21552]]]]},{"k":"H5647","v":[["*",[288,261,[[0,23,22,0,22,[[1,2,2,0,2],[2,1,1,2,3],[3,2,2,3,5],[13,1,1,5,6],[14,2,2,6,8],[24,1,1,8,9],[26,2,2,9,11],[28,6,6,11,17],[29,3,2,17,19],[30,2,2,19,21],[48,1,1,21,22]]],[1,31,29,22,51,[[50,2,2,22,24],[52,1,1,24,25],[53,1,1,25,26],[54,1,1,26,27],[55,1,1,27,28],[56,1,1,28,29],[57,2,2,29,31],[58,2,2,31,33],[59,7,6,33,39],[61,1,1,39,40],[62,1,1,40,41],[63,3,2,41,43],[69,2,2,43,45],[70,2,2,45,47],[72,3,3,47,50],[83,1,1,50,51]]],[2,3,3,51,54,[[114,3,3,51,54]]],[3,21,21,54,75,[[119,2,2,54,56],[120,7,7,56,63],[123,1,1,63,64],[124,6,6,64,70],[132,1,1,70,71],[134,4,4,71,75]]],[4,35,35,75,110,[[156,2,2,75,77],[157,2,2,77,79],[158,1,1,79,80],[159,2,2,80,82],[160,1,1,82,83],[162,2,2,83,85],[163,2,2,85,87],[164,2,2,87,89],[165,4,4,89,93],[167,3,3,93,96],[169,1,1,96,97],[172,1,1,97,98],[173,2,2,98,100],[180,6,6,100,106],[181,2,2,106,108],[182,1,1,108,109],[183,1,1,109,110]]],[5,21,16,110,126,[[202,1,1,110,111],[208,2,2,111,113],[209,2,2,113,115],[210,16,11,115,126]]],[6,17,14,126,140,[[212,4,4,126,130],[213,4,4,130,134],[219,4,2,134,136],[220,5,4,136,140]]],[8,13,11,140,151,[[239,2,1,140,141],[242,2,2,141,143],[243,1,1,143,144],[246,1,1,144,145],[247,5,4,145,149],[252,1,1,149,150],[261,1,1,150,151]]],[9,6,5,151,156,[[275,1,1,151,152],[276,1,1,152,153],[281,1,1,153,154],[282,2,1,154,155],[288,1,1,155,156]]],[10,8,8,156,164,[[294,1,1,156,157],[299,3,3,157,160],[302,2,2,160,162],[306,1,1,162,163],[312,1,1,163,164]]],[11,18,14,164,178,[[322,8,5,164,169],[329,5,5,169,174],[330,1,1,174,175],[333,3,2,175,177],[337,1,1,177,178]]],[12,2,2,178,180,[[356,1,1,178,179],[365,1,1,179,180]]],[13,12,11,180,191,[[368,1,1,180,181],[373,2,2,181,183],[376,1,1,183,184],[390,1,1,184,185],[396,1,1,185,186],[399,3,3,186,189],[400,2,1,189,190],[401,1,1,190,191]]],[15,1,1,191,192,[[421,1,1,191,192]]],[17,3,3,192,195,[[456,1,1,192,193],[471,1,1,193,194],[474,1,1,194,195]]],[18,8,8,195,203,[[479,1,1,195,196],[495,1,1,196,197],[499,1,1,197,198],[549,1,1,198,199],[574,1,1,199,200],[577,1,1,200,201],[579,1,1,201,202],[583,1,1,202,203]]],[19,2,2,203,205,[[639,1,1,203,204],[655,1,1,204,205]]],[20,2,2,205,207,[[663,2,2,205,207]]],[22,9,9,207,216,[[692,1,1,207,208],[697,3,3,208,211],[706,1,1,211,212],[708,1,1,212,213],[721,2,2,213,215],[738,1,1,215,216]]],[23,35,30,216,246,[[749,2,1,216,217],[752,1,1,217,218],[755,1,1,218,219],[757,1,1,219,220],[760,2,2,220,222],[761,1,1,222,223],[766,2,2,223,225],[769,3,3,225,228],[771,11,9,228,237],[772,2,1,237,238],[774,2,2,238,240],[778,3,3,240,243],[779,1,1,243,244],[784,2,1,244,245],[788,1,1,245,246]]],[25,11,9,246,255,[[821,2,2,246,248],[830,3,2,248,250],[835,1,1,250,251],[837,2,2,251,253],[849,3,2,253,255]]],[27,1,1,255,256,[[873,1,1,255,256]]],[35,1,1,256,257,[[908,1,1,256,257]]],[37,1,1,257,258,[[923,1,1,257,258]]],[38,4,3,258,261,[[927,4,3,258,261]]]],[35,45,78,81,91,340,373,374,681,756,767,810,813,815,820,822,825,856,859,879,914,1488,1545,1546,1591,1624,1650,1660,1701,1711,1730,1743,1755,1780,1784,1785,1788,1801,1803,1847,1872,1894,1901,2056,2060,2079,2083,2168,2169,2177,2517,3508,3509,3515,3699,3700,3766,3767,3769,3773,3780,3784,3790,3855,3950,3954,3958,3961,3964,3965,4203,4263,4264,4278,4280,5023,5032,5062,5066,5099,5115,5127,5156,5198,5206,5221,5224,5242,5270,5274,5276,5278,5285,5331,5337,5338,5367,5438,5450,5451,5625,5647,5650,5658,5659,5675,5697,5705,5725,5748,6275,6431,6453,6467,6476,6478,6490,6491,6492,6494,6495,6496,6497,6498,6500,6507,6552,6556,6558,6564,6574,6575,6576,6582,6782,6792,6817,6821,6824,6827,7306,7355,7356,7377,7446,7470,7474,7480,7484,7627,7924,8237,8259,8397,8445,8646,8865,9057,9060,9072,9155,9158,9314,9533,9811,9812,9814,9815,9816,9995,9999,10016,10018,10024,10031,10122,10140,10246,10926,11152,11229,11343,11346,11399,11695,11835,11911,11924,11930,11966,11969,12546,13370,13747,13843,13956,14161,14234,15011,15485,15510,15543,15687,16730,17215,17406,17409,17931,18013,18025,18027,18185,18241,18528,18529,18833,19077,19155,19236,19276,19347,19349,19361,19463,19467,19540,19545,19548,19602,19603,19604,19605,19607,19608,19609,19610,19613,19632,19675,19676,19810,19811,19815,19838,19950,20013,20934,20935,21201,21203,21340,21368,21393,21720,21721,22264,22829,23064,23134,23137,23138]]],["+",[89,85,[[0,5,5,0,5,[[1,1,1,0,1],[2,1,1,1,2],[3,1,1,2,3],[13,1,1,3,4],[30,1,1,4,5]]],[1,14,12,5,17,[[52,1,1,5,6],[59,6,5,6,11],[61,1,1,11,12],[62,1,1,12,13],[63,3,2,13,15],[72,2,2,15,17]]],[2,1,1,17,18,[[114,1,1,17,18]]],[3,11,11,18,29,[[119,2,2,18,20],[120,1,1,20,21],[123,1,1,21,22],[124,4,4,22,26],[132,1,1,26,27],[134,2,2,27,29]]],[4,6,6,29,35,[[159,1,1,29,30],[162,1,1,30,31],[164,2,2,31,33],[180,1,1,33,34],[181,1,1,34,35]]],[5,7,6,35,41,[[208,1,1,35,36],[210,6,5,36,41]]],[6,10,10,41,51,[[212,2,2,41,43],[213,4,4,43,47],[219,1,1,47,48],[220,3,3,48,51]]],[8,4,4,51,55,[[239,1,1,51,52],[242,1,1,52,53],[247,2,2,53,55]]],[9,2,2,55,57,[[275,1,1,55,56],[281,1,1,56,57]]],[10,4,4,57,61,[[294,1,1,57,58],[299,1,1,58,59],[306,1,1,59,60],[312,1,1,60,61]]],[11,5,5,61,66,[[322,1,1,61,62],[329,2,2,62,64],[333,1,1,64,65],[337,1,1,65,66]]],[13,5,5,66,71,[[368,1,1,66,67],[390,1,1,67,68],[396,1,1,68,69],[399,1,1,69,70],[400,1,1,70,71]]],[18,3,3,71,74,[[479,1,1,71,72],[579,1,1,72,73],[583,1,1,73,74]]],[23,11,10,74,84,[[760,1,1,74,75],[761,1,1,75,76],[769,1,1,76,77],[771,4,4,77,81],[772,1,1,81,82],[774,1,1,82,83],[784,2,1,83,84]]],[37,1,1,84,85,[[923,1,1,84,85]]]],[35,78,91,340,879,1591,1784,1785,1788,1801,1803,1847,1872,1894,1901,2169,2177,3509,3699,3700,3773,3855,3950,3954,3958,3961,4203,4263,4280,5127,5198,5242,5270,5659,5697,6453,6491,6494,6495,6497,6507,6552,6556,6574,6575,6576,6582,6782,6817,6821,6827,7306,7356,7470,7480,8237,8397,8865,9072,9314,9533,9811,9999,10016,10140,10246,11229,11695,11835,11924,11966,13956,15543,15687,19349,19361,19545,19605,19609,19610,19613,19632,19676,19950,23064]]],["Serve",[1,1,[[18,1,1,0,1,[[577,1,1,0,1]]]],[15510]]],["been",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7306]]],["bondage",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1660]]],["bondmen",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3515]]],["do",[4,4,[[3,3,3,0,3,[[120,2,2,0,2],[124,1,1,2,3]]],[22,1,1,3,4,[[697,1,1,3,4]]]],[3766,3790,3965,18025]]],["done",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[856]]],["dress",[2,2,[[0,1,1,0,1,[[1,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]]],[45,5650]]],["ear",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18241]]],["eared",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5451]]],["labour",[2,2,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,1,1,1,2,[[157,1,1,1,2]]]],[2060,5066]]],["man",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17409]]],["pass",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18185]]],["servant",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1488]]],["servants",[2,2,[[11,1,1,0,1,[[322,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]]],[9812,10926]]],["serve",[118,114,[[0,9,9,0,9,[[14,2,2,0,2],[24,1,1,2,3],[26,2,2,3,5],[28,4,4,5,9]]],[1,13,13,9,22,[[50,2,2,9,11],[53,1,1,11,12],[56,1,1,12,13],[57,2,2,13,15],[58,2,2,15,17],[59,1,1,17,18],[69,1,1,18,19],[70,2,2,19,21],[72,1,1,21,22]]],[2,1,1,22,23,[[114,1,1,22,23]]],[3,5,5,23,28,[[120,2,2,23,25],[124,1,1,25,26],[134,2,2,26,28]]],[4,20,20,28,48,[[156,2,2,28,30],[157,1,1,30,31],[158,1,1,31,32],[159,1,1,32,33],[160,1,1,33,34],[162,1,1,34,35],[163,2,2,35,37],[165,4,4,37,41],[167,1,1,41,42],[172,1,1,42,43],[180,3,3,43,46],[182,1,1,46,47],[183,1,1,47,48]]],[5,10,9,48,57,[[202,1,1,48,49],[208,1,1,49,50],[209,1,1,50,51],[210,7,6,51,57]]],[6,4,3,57,60,[[212,1,1,57,58],[219,3,2,58,60]]],[8,7,7,60,67,[[242,1,1,60,61],[246,1,1,61,62],[247,3,3,62,65],[252,1,1,65,66],[261,1,1,66,67]]],[9,2,2,67,69,[[282,1,1,67,68],[288,1,1,68,69]]],[10,3,3,69,72,[[299,1,1,69,70],[302,2,2,70,72]]],[11,2,2,72,74,[[322,1,1,72,73],[329,1,1,73,74]]],[12,1,1,74,75,[[365,1,1,74,75]]],[13,4,4,75,79,[[373,1,1,75,76],[376,1,1,76,77],[400,1,1,77,78],[401,1,1,78,79]]],[17,3,3,79,82,[[456,1,1,79,80],[471,1,1,80,81],[474,1,1,81,82]]],[18,4,4,82,86,[[495,1,1,82,83],[499,1,1,83,84],[549,1,1,84,85],[574,1,1,85,86]]],[22,5,5,86,91,[[692,1,1,86,87],[697,1,1,87,88],[721,2,2,88,90],[738,1,1,90,91]]],[23,17,16,91,107,[[749,1,1,91,92],[755,1,1,92,93],[757,1,1,93,94],[769,2,2,94,96],[771,6,5,96,101],[772,1,1,101,102],[774,1,1,102,103],[778,2,2,103,105],[779,1,1,105,106],[788,1,1,106,107]]],[25,6,5,107,112,[[821,2,2,107,109],[830,1,1,109,110],[849,3,2,110,112]]],[35,1,1,112,113,[[908,1,1,112,113]]],[38,1,1,113,114,[[927,1,1,113,114]]]],[373,374,681,756,767,810,813,820,822,1545,1546,1624,1701,1711,1730,1743,1755,1780,2056,2079,2083,2168,3508,3767,3769,3964,4264,4278,5023,5032,5062,5099,5115,5156,5206,5221,5224,5274,5276,5278,5285,5331,5438,5625,5647,5675,5725,5748,6275,6431,6467,6490,6491,6492,6496,6498,6500,6564,6782,6792,7355,7446,7470,7474,7484,7627,7924,8445,8646,9057,9155,9158,9811,10018,11152,11343,11399,11966,11969,13370,13747,13843,14161,14234,15011,15485,17931,18027,18528,18529,18833,19077,19236,19276,19540,19548,19602,19603,19604,19607,19608,19632,19675,19810,19811,19838,20013,20934,20935,21201,21720,21721,22829,23134]]],["served",[37,37,[[0,5,5,0,5,[[28,2,2,0,2],[29,2,2,2,4],[30,1,1,4,5]]],[4,2,2,5,7,[[169,1,1,5,6],[181,1,1,6,7]]],[5,4,4,7,11,[[209,1,1,7,8],[210,3,3,8,11]]],[6,3,3,11,14,[[212,1,1,11,12],[220,2,2,12,14]]],[8,1,1,14,15,[[243,1,1,14,15]]],[9,2,2,15,17,[[276,1,1,15,16],[282,1,1,16,17]]],[10,1,1,17,18,[[299,1,1,17,18]]],[11,5,5,18,23,[[329,2,2,18,20],[330,1,1,20,21],[333,2,2,21,23]]],[13,3,3,23,26,[[373,1,1,23,24],[399,2,2,24,26]]],[15,1,1,26,27,[[421,1,1,26,27]]],[20,1,1,27,28,[[663,1,1,27,28]]],[23,5,5,28,33,[[749,1,1,28,29],[752,1,1,29,30],[760,1,1,30,31],[766,1,1,31,32],[778,1,1,32,33]]],[25,3,3,33,36,[[830,2,2,33,35],[835,1,1,35,36]]],[27,1,1,36,37,[[873,1,1,36,37]]]],[815,825,856,859,914,5367,5705,6476,6478,6490,6491,6558,6817,6824,7377,8259,8445,9060,9995,10024,10031,10122,10140,11346,11911,11930,12546,17406,19077,19155,19347,19463,19815,21201,21203,21340,22264]]],["servedst",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5658]]],["serveth",[3,2,[[38,3,2,0,2,[[927,3,2,0,2]]]],[23137,23138]]],["service",[3,3,[[3,2,2,0,2,[[120,2,2,0,2]]],[23,1,1,2,3,[[766,1,1,2,3]]]],[3780,3784,19467]]],["serving",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5337]]],["till",[1,1,[[23,1,1,0,1,[[771,1,1,0,1]]]],[19607]]],["tilled",[2,2,[[25,2,2,0,2,[[837,2,2,0,2]]]],[21368,21393]]],["tiller",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[81]]],["tilleth",[2,2,[[19,2,2,0,2,[[639,1,1,0,1],[655,1,1,1,2]]]],[16730,17215]]],["work",[4,4,[[1,2,2,0,2,[[54,1,1,0,1],[83,1,1,1,2]]],[4,1,1,2,3,[[167,1,1,2,3]]],[22,1,1,3,4,[[697,1,1,3,4]]]],[1650,2517,5338,18013]]],["worshippers",[5,4,[[11,5,4,0,4,[[322,5,4,0,4]]]],[9812,9814,9815,9816]]],["wrought",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5450]]]]},{"k":"H5648","v":[["*",[28,25,[[14,15,13,0,13,[[406,3,3,0,3],[407,1,1,3,4],[408,5,5,4,9],[409,6,4,9,13]]],[23,1,1,13,14,[[754,1,1,13,14]]],[26,12,11,14,25,[[851,1,1,14,15],[852,3,3,15,18],[853,3,2,18,20],[854,1,1,20,21],[855,3,3,21,24],[856,1,1,24,25]]]],[12125,12129,12132,12142,12159,12162,12163,12164,12167,12191,12194,12196,12199,19212,21763,21808,21822,21836,21839,21872,21875,21915,21927,21932,21954]]],["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21915]]],["cut",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21763,21836]]],["did",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12164]]],["do",[5,4,[[14,5,4,0,4,[[406,1,1,0,1],[408,1,1,1,2],[409,3,2,2,4]]]],[12132,12159,12191,12199]]],["doest",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21872]]],["doeth",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21872]]],["done",[4,4,[[14,3,3,0,3,[[408,1,1,0,1],[409,2,2,1,3]]],[26,1,1,3,4,[[855,1,1,3,4]]]],[12163,12194,12196,21927]]],["executed",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12199]]],["goeth",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12142]]],["kept",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12167]]],["made",[7,7,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]],[23,1,1,2,3,[[754,1,1,2,3]]],[26,4,4,3,7,[[852,2,2,3,5],[854,1,1,5,6],[856,1,1,6,7]]]],[12129,12162,19212,21808,21822,21875,21954]]],["moved",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12125]]],["worketh",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21932]]],["wrought",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21839]]]]},{"k":"H5649","v":[["*",[7,7,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,5,5,2,7,[[851,2,2,2,4],[852,2,2,4,6],[855,1,1,6,7]]]],[12121,12145,21762,21765,21833,21835,21925]]],["servant",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21925]]],["servants",[6,6,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,4,4,2,6,[[851,2,2,2,4],[852,2,2,4,6]]]],[12121,12145,21762,21765,21833,21835]]]]},{"k":"H5650","v":[["*",[798,712,[[0,88,78,0,78,[[8,4,3,0,3],[11,1,1,3,4],[13,1,1,4,5],[17,2,2,5,7],[18,2,2,7,9],[19,2,2,9,11],[20,1,1,11,12],[23,15,14,12,26],[25,5,5,26,31],[26,1,1,31,32],[29,1,1,32,33],[31,7,6,33,39],[32,2,2,39,41],[38,2,2,41,43],[39,2,1,43,44],[40,4,4,44,48],[41,3,3,48,51],[42,2,2,51,53],[43,20,15,53,68],[44,1,1,68,69],[45,1,1,69,70],[46,5,4,70,74],[49,4,4,74,78]]],[1,43,41,78,119,[[53,1,1,78,79],[54,4,3,79,82],[56,2,2,82,84],[57,8,8,84,92],[58,6,5,92,97],[59,3,3,97,100],[60,2,2,100,102],[61,2,2,102,104],[62,2,2,104,106],[63,2,2,106,108],[69,3,3,108,111],[70,7,7,111,118],[81,1,1,118,119]]],[2,9,6,119,125,[[114,8,5,119,124],[115,1,1,124,125]]],[3,11,11,125,136,[[127,1,1,125,126],[128,2,2,126,128],[130,1,1,128,129],[138,1,1,129,130],[147,1,1,130,131],[148,5,5,131,136]]],[4,29,28,136,164,[[155,1,1,136,137],[157,5,4,137,141],[158,2,2,141,143],[159,1,1,143,144],[160,1,1,144,145],[161,1,1,145,146],[164,2,2,146,148],[165,2,2,148,150],[167,2,2,150,152],[168,3,3,152,155],[175,1,1,155,156],[176,2,2,156,158],[180,1,1,158,159],[181,1,1,159,160],[184,2,2,160,162],[186,2,2,162,164]]],[5,27,25,164,189,[[187,5,5,164,169],[191,1,1,169,170],[194,2,2,170,172],[195,6,5,172,177],[196,1,1,177,178],[197,2,2,178,180],[198,2,1,180,181],[199,1,1,181,182],[200,1,1,182,183],[204,1,1,183,184],[208,3,3,184,187],[210,2,2,187,189]]],[6,6,6,189,195,[[212,1,1,189,190],[213,1,1,190,191],[216,2,2,191,193],[225,1,1,193,194],[229,1,1,194,195]]],[8,62,55,195,250,[[238,2,2,195,197],[243,4,4,197,201],[247,1,1,201,202],[251,3,3,202,205],[252,7,6,205,211],[253,7,6,211,217],[254,2,2,217,219],[255,3,2,219,221],[256,3,3,221,224],[257,8,7,224,231],[258,3,2,231,233],[260,6,5,233,238],[261,2,2,238,240],[262,2,2,240,242],[263,5,4,242,246],[264,3,3,246,249],[265,1,1,249,250]]],[9,106,85,250,335,[[268,6,6,250,256],[269,3,3,256,259],[272,1,1,259,260],[273,12,10,260,270],[274,4,4,270,274],[275,9,6,274,280],[276,5,4,280,284],[277,9,7,284,291],[278,4,3,291,294],[279,6,4,294,298],[280,7,5,298,303],[281,10,7,303,310],[282,2,2,310,312],[283,1,1,312,313],[284,4,3,313,316],[285,17,13,316,329],[286,1,1,329,330],[287,2,2,330,332],[290,3,3,332,335]]],[10,76,65,335,400,[[291,9,8,335,343],[292,5,3,343,346],[293,5,5,346,351],[295,5,3,351,354],[298,15,14,354,368],[299,4,2,368,370],[300,3,3,370,373],[301,8,8,373,381],[302,2,1,381,382],[304,2,2,382,384],[305,2,2,384,386],[306,1,1,386,387],[308,3,3,387,390],[310,9,8,390,398],[312,3,2,398,400]]],[11,58,53,400,453,[[313,1,1,400,401],[314,1,1,401,402],[315,1,1,402,403],[316,3,1,403,404],[317,9,7,404,411],[318,4,4,411,415],[319,2,2,415,417],[320,2,2,417,419],[321,5,4,419,423],[322,3,3,423,426],[324,2,2,426,428],[326,2,2,428,430],[328,1,1,430,431],[329,3,3,431,434],[330,3,3,434,437],[331,2,2,437,439],[332,1,1,439,440],[333,3,3,440,443],[334,2,2,443,445],[335,1,1,445,446],[336,5,5,446,451],[337,2,2,451,453]]],[12,27,25,453,478,[[339,2,2,453,455],[343,1,1,455,456],[353,1,1,456,457],[354,12,10,457,467],[355,4,4,467,471],[356,4,4,471,475],[357,1,1,475,476],[358,2,2,476,478]]],[13,44,37,478,515,[[367,1,1,478,479],[368,5,3,479,482],[372,11,10,482,492],[374,4,2,492,494],[375,6,5,494,499],[376,1,1,499,500],[378,1,1,500,501],[379,1,1,501,502],[390,3,3,502,505],[391,1,1,505,506],[394,1,1,506,507],[398,3,2,507,509],[399,1,1,509,510],[400,2,2,510,512],[401,2,2,512,514],[402,1,1,514,515]]],[14,5,5,515,520,[[404,3,3,515,518],[411,2,2,518,520]]],[15,22,18,520,538,[[413,8,5,520,525],[414,4,4,525,529],[417,1,1,529,530],[419,3,3,530,533],[421,4,3,533,536],[422,1,1,536,537],[423,1,1,537,538]]],[16,7,7,538,545,[[426,1,1,538,539],[427,1,1,539,540],[428,2,2,540,542],[429,1,1,542,543],[430,1,1,543,544],[432,1,1,544,545]]],[17,12,10,545,555,[[436,1,1,545,546],[437,1,1,546,547],[438,1,1,547,548],[439,1,1,548,549],[442,1,1,549,550],[454,1,1,550,551],[466,1,1,551,552],[476,1,1,552,553],[477,4,2,553,555]]],[18,55,54,555,609,[[496,2,2,555,557],[504,1,1,557,558],[508,1,1,558,559],[511,1,1,559,560],[512,1,1,560,561],[546,2,2,561,563],[555,1,1,563,564],[556,2,2,564,566],[563,3,3,566,569],[566,4,4,569,573],[567,2,2,573,575],[579,2,2,575,577],[582,5,5,577,582],[586,1,1,582,583],[590,1,1,583,584],[593,2,1,584,585],[596,14,14,585,599],[600,1,1,599,600],[609,1,1,600,601],[611,1,1,601,602],[612,3,3,602,605],[613,1,1,605,606],[620,2,2,606,608],[621,1,1,608,609]]],[19,10,10,609,619,[[638,1,1,609,610],[639,1,1,610,611],[641,1,1,611,612],[644,1,1,612,613],[646,1,1,613,614],[649,1,1,614,615],[656,2,2,615,617],[657,2,2,617,619]]],[20,4,3,619,622,[[660,1,1,619,620],[665,1,1,620,621],[668,2,1,621,622]]],[22,40,36,622,658,[[692,1,1,622,623],[698,1,1,623,624],[700,1,1,624,625],[702,1,1,625,626],[714,2,2,626,628],[715,3,3,628,631],[719,2,2,631,633],[720,3,2,633,635],[721,1,1,635,636],[722,5,4,636,640],[723,1,1,640,641],[726,1,1,641,642],[727,4,4,642,646],[728,1,1,646,647],[730,1,1,647,648],[731,1,1,648,649],[732,1,1,649,650],[734,1,1,650,651],[741,1,1,651,652],[743,7,5,652,657],[744,1,1,657,658]]],[23,32,30,658,688,[[746,1,1,658,659],[751,1,1,659,660],[765,1,1,660,661],[766,2,2,661,663],[769,3,3,663,666],[770,1,1,666,667],[771,1,1,667,668],[773,1,1,668,669],[774,1,1,669,670],[777,3,3,670,673],[778,7,5,673,678],[779,1,1,678,679],[780,2,2,679,681],[781,2,2,681,683],[787,1,1,683,684],[788,1,1,684,685],[790,3,3,685,688]]],[24,1,1,688,689,[[801,1,1,688,689]]],[25,8,7,689,696,[[829,1,1,689,690],[835,2,2,690,692],[838,3,2,692,694],[839,1,1,694,695],[847,1,1,695,696]]],[26,7,7,696,703,[[850,2,2,696,698],[858,4,4,698,702],[859,1,1,702,703]]],[28,1,1,703,704,[[877,1,1,703,704]]],[29,1,1,704,705,[[881,1,1,704,705]]],[32,1,1,705,706,[[898,1,1,705,706]]],[36,1,1,706,707,[[910,1,1,706,707]]],[37,3,3,707,710,[[911,1,1,707,708],[912,1,1,708,709],[913,1,1,709,710]]],[38,2,2,710,712,[[925,1,1,710,711],[928,1,1,711,712]]]],[230,231,232,314,351,427,429,459,476,503,509,538,593,596,600,601,605,608,625,626,643,644,650,652,656,657,707,711,716,717,724,764,873,932,933,938,944,946,948,965,974,1166,1168,1192,1205,1207,1232,1233,1262,1263,1265,1308,1318,1331,1333,1334,1340,1341,1342,1343,1345,1347,1348,1351,1354,1355,1356,1357,1374,1420,1423,1424,1439,1445,1508,1513,1523,1524,1611,1647,1648,1653,1695,1705,1713,1714,1719,1721,1731,1734,1739,1741,1756,1762,1763,1772,1776,1778,1783,1784,1809,1814,1846,1860,1870,1881,1894,1920,2053,2061,2068,2079,2082,2084,2097,2103,2104,2109,2451,3475,3508,3511,3513,3524,3537,4035,4066,4067,4132,4393,4713,4722,4723,4743,4745,4749,4999,5059,5067,5068,5074,5098,5107,5119,5151,5184,5252,5258,5277,5282,5334,5336,5353,5354,5356,5515,5543,5547,5679,5681,5794,5801,5844,5850,5852,5853,5858,5864,5866,5948,6033,6035,6045,6046,6048,6060,6061,6070,6119,6122,6136,6162,6194,6300,6428,6430,6431,6493,6505,6553,6592,6662,6681,6947,7043,7285,7286,7383,7384,7385,7386,7479,7610,7611,7612,7626,7627,7650,7652,7654,7676,7681,7698,7699,7700,7702,7706,7707,7710,7737,7738,7779,7783,7786,7793,7794,7795,7796,7801,7802,7804,7820,7821,7869,7871,7900,7901,7902,7923,7924,7935,7942,7944,7949,7965,7967,7970,7975,7977,7991,8061,8062,8064,8066,8079,8080,8099,8103,8119,8177,8185,8188,8199,8200,8201,8205,8206,8207,8208,8209,8211,8215,8216,8223,8229,8233,8235,8237,8238,8239,8242,8243,8244,8259,8260,8268,8270,8272,8276,8280,8283,8304,8305,8307,8341,8348,8352,8353,8375,8376,8378,8386,8387,8391,8397,8403,8404,8407,8410,8423,8432,8437,8469,8485,8487,8507,8516,8517,8518,8525,8528,8530,8531,8537,8538,8539,8546,8547,8548,8560,8595,8602,8702,8712,8713,8719,8726,8736,8743,8744,8750,8764,8768,8808,8809,8810,8822,8823,8824,8825,8831,8879,8884,8887,9008,9009,9010,9011,9013,9014,9015,9017,9021,9037,9038,9041,9044,9051,9073,9078,9084,9087,9092,9119,9121,9125,9134,9140,9142,9144,9146,9158,9226,9236,9267,9278,9292,9350,9353,9377,9414,9417,9420,9431,9439,9440,9447,9448,9483,9529,9546,9567,9587,9604,9653,9660,9662,9664,9665,9672,9673,9677,9682,9685,9686,9719,9720,9740,9746,9763,9767,9784,9792,9798,9803,9816,9870,9871,9901,9921,9970,9986,9996,10006,10036,10048,10050,10066,10095,10104,10127,10129,10142,10154,10157,10195,10203,10204,10212,10213,10214,10230,10246,10340,10341,10503,10833,10867,10870,10880,10881,10882,10886,10887,10888,10889,10890,10892,10896,10897,10903,10909,10910,10911,10926,10934,10937,10942,11197,11219,11221,11226,11296,11297,11298,11299,11301,11302,11303,11305,11309,11324,11355,11364,11368,11371,11374,11376,11385,11402,11445,11459,11683,11686,11702,11707,11774,11884,11891,11932,11949,11953,11989,11990,12013,12082,12085,12092,12246,12248,12302,12303,12304,12306,12307,12312,12317,12326,12327,12387,12477,12480,12487,12521,12525,12547,12578,12591,12705,12742,12749,12750,12773,12790,12811,12877,12894,12923,12948,13010,13313,13601,13892,13929,13930,14179,14181,14294,14347,14410,14437,14952,14971,15183,15187,15195,15286,15288,15300,15329,15346,15365,15376,15391,15394,15535,15549,15612,15623,15631,15632,15648,15783,15814,15864,15915,15921,15936,15947,15963,15974,15982,15989,16020,16022,16023,16033,16038,16074,16100,16161,16173,16176,16184,16189,16218,16295,16305,16315,16717,16728,16807,16875,16935,17022,17243,17245,17261,17273,17340,17450,17500,17930,18032,18072,18097,18339,18341,18357,18376,18387,18459,18460,18481,18499,18515,18534,18535,18554,18559,18565,18634,18639,18641,18642,18643,18672,18709,18722,18740,18759,18883,18905,18906,18910,18911,18912,18936,18979,19144,19447,19456,19458,19538,19543,19553,19577,19602,19654,19677,19796,19797,19801,19810,19811,19812,19814,19817,19838,19866,19873,19876,19892,20007,20014,20071,20072,20073,20450,21182,21336,21337,21421,21422,21442,21672,21749,21750,21994,21998,21999,22005,22032,22340,22402,22652,22878,22884,22908,22920,23095,23142]]],["+",[35,34,[[0,2,2,0,2,[[43,1,1,0,1],[49,1,1,1,2]]],[1,4,4,2,6,[[57,3,3,2,5],[58,1,1,5,6]]],[2,2,2,6,8,[[114,2,2,6,8]]],[4,1,1,8,9,[[155,1,1,8,9]]],[5,3,2,9,11,[[195,2,1,9,10],[196,1,1,10,11]]],[6,1,1,11,12,[[216,1,1,11,12]]],[8,1,1,12,13,[[256,1,1,12,13]]],[9,4,4,13,17,[[268,2,2,13,15],[277,2,2,15,17]]],[10,4,4,17,21,[[301,4,4,17,21]]],[11,5,5,21,26,[[315,1,1,21,22],[318,1,1,22,23],[319,1,1,23,24],[322,1,1,24,25],[337,1,1,25,26]]],[12,1,1,26,27,[[354,1,1,26,27]]],[13,1,1,27,28,[[400,1,1,27,28]]],[18,2,2,28,30,[[504,1,1,28,29],[546,1,1,29,30]]],[22,3,3,30,33,[[723,1,1,30,31],[741,1,1,31,32],[743,1,1,32,33]]],[25,1,1,33,34,[[847,1,1,33,34]]]],[1333,1508,1721,1739,1741,1762,3508,3511,4999,6061,6070,6681,7779,8064,8079,8276,8283,9121,9125,9140,9142,9587,9686,9720,9816,10246,10882,11949,14294,14952,18565,18883,18905,21672]]],["Servants",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20450]]],["bondage",[10,10,[[1,3,3,0,3,[[62,2,2,0,2],[69,1,1,2,3]]],[4,5,5,3,8,[[157,1,1,3,4],[158,1,1,4,5],[160,1,1,5,6],[165,2,2,6,8]]],[5,1,1,8,9,[[210,1,1,8,9]]],[6,1,1,9,10,[[216,1,1,9,10]]]],[1870,1881,2053,5059,5098,5151,5277,5282,6493,6662]]],["bondman",[5,5,[[0,1,1,0,1,[[43,1,1,0,1]]],[4,4,4,1,5,[[167,1,1,1,2],[168,1,1,2,3],[176,2,2,3,5]]]],[1357,5334,5354,5543,5547]]],["bondmen",[15,14,[[0,2,2,0,2,[[42,1,1,0,1],[43,1,1,1,2]]],[2,3,2,2,4,[[114,2,1,2,3],[115,1,1,3,4]]],[4,3,3,4,7,[[158,1,1,4,5],[159,1,1,5,6],[180,1,1,6,7]]],[5,1,1,7,8,[[195,1,1,7,8]]],[10,1,1,8,9,[[299,1,1,8,9]]],[11,1,1,9,10,[[316,1,1,9,10]]],[13,1,1,10,11,[[394,1,1,10,11]]],[14,1,1,11,12,[[411,1,1,11,12]]],[16,1,1,12,13,[[432,1,1,12,13]]],[23,1,1,13,14,[[778,1,1,13,14]]]],[1308,1333,3513,3537,5107,5119,5679,6060,9073,9604,11774,12246,12811,19814]]],["manservant",[12,11,[[1,3,3,0,3,[[69,2,2,0,2],[70,1,1,2,3]]],[4,6,5,3,8,[[157,3,2,3,5],[164,1,1,5,6],[168,2,2,6,8]]],[17,1,1,8,9,[[466,1,1,8,9]]],[23,2,2,9,11,[[778,2,2,9,11]]]],[2061,2068,2109,5067,5074,5258,5353,5356,13601,19810,19811]]],["manservant's",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2104]]],["manservants",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12487]]],["menservants",[9,9,[[0,5,5,0,5,[[11,1,1,0,1],[19,1,1,1,2],[23,1,1,2,3],[29,1,1,3,4],[31,1,1,4,5]]],[1,1,1,5,6,[[70,1,1,5,6]]],[4,1,1,6,7,[[164,1,1,6,7]]],[8,1,1,7,8,[[243,1,1,7,8]]],[11,1,1,8,9,[[317,1,1,8,9]]]],[314,509,626,873,933,2084,5252,7385,9673]]],["servant",[355,321,[[0,41,39,0,39,[[8,3,3,0,3],[17,2,2,3,5],[18,1,1,5,6],[23,14,13,6,19],[25,1,1,19,20],[31,4,4,20,24],[32,2,2,24,26],[38,2,2,26,28],[40,1,1,28,29],[42,1,1,29,30],[43,10,9,30,39]]],[1,7,7,39,46,[[53,1,1,39,40],[61,1,1,40,41],[63,1,1,41,42],[70,4,4,42,46]]],[2,1,1,46,47,[[114,1,1,46,47]]],[3,4,4,47,51,[[127,1,1,47,48],[128,2,2,48,50],[130,1,1,50,51]]],[4,4,4,51,55,[[157,1,1,51,52],[167,1,1,52,53],[175,1,1,53,54],[186,1,1,54,55]]],[5,19,18,55,73,[[187,5,5,55,60],[191,1,1,60,61],[194,2,2,61,63],[197,2,2,63,65],[198,2,1,65,66],[199,1,1,66,67],[200,1,1,67,68],[204,1,1,68,69],[208,3,3,69,72],[210,1,1,72,73]]],[6,2,2,73,75,[[212,1,1,73,74],[225,1,1,74,75]]],[8,25,22,75,97,[[238,2,2,75,77],[252,4,4,77,81],[254,1,1,81,82],[255,3,2,82,84],[257,3,2,84,86],[258,3,2,86,88],[260,1,1,88,89],[261,2,2,89,91],[262,2,2,91,93],[263,1,1,93,94],[264,2,2,94,96],[265,1,1,96,97]]],[9,49,36,97,133,[[269,1,1,97,98],[273,11,9,98,107],[275,6,4,107,111],[277,2,2,111,113],[279,3,2,113,115],[280,4,3,115,118],[281,6,4,118,122],[284,2,1,122,123],[285,12,8,123,131],[290,2,2,131,133]]],[10,38,36,133,169,[[291,5,4,133,137],[292,1,1,137,138],[293,4,4,138,142],[298,12,11,142,153],[301,4,4,153,157],[302,1,1,157,158],[304,2,2,158,160],[305,1,1,160,161],[306,1,1,161,162],[308,3,3,162,165],[310,4,4,165,169]]],[11,22,19,169,188,[[316,2,1,169,170],[317,7,5,170,175],[320,1,1,175,176],[321,1,1,176,177],[322,1,1,177,178],[326,1,1,178,179],[328,1,1,179,180],[329,1,1,180,181],[330,1,1,181,182],[331,1,1,182,183],[332,1,1,183,184],[333,1,1,184,185],[334,1,1,185,186],[336,1,1,186,187],[337,1,1,187,188]]],[12,15,13,188,201,[[339,2,2,188,190],[343,1,1,190,191],[353,1,1,191,192],[354,10,8,192,200],[358,1,1,200,201]]],[13,14,13,201,214,[[367,1,1,201,202],[372,8,7,202,209],[379,1,1,209,210],[390,2,2,210,212],[398,1,1,212,213],[400,1,1,213,214]]],[15,10,9,214,223,[[413,5,4,214,218],[414,3,3,218,221],[421,1,1,221,222],[422,1,1,222,223]]],[17,10,8,223,231,[[436,1,1,223,224],[437,1,1,224,225],[438,1,1,225,226],[442,1,1,226,227],[454,1,1,227,228],[476,1,1,228,229],[477,4,2,229,231]]],[18,36,35,231,266,[[496,2,2,231,233],[508,1,1,233,234],[512,1,1,234,235],[555,1,1,235,236],[563,3,3,236,239],[566,3,3,239,242],[582,4,4,242,246],[586,1,1,246,247],[593,2,1,247,248],[596,13,13,248,261],[609,1,1,261,262],[613,1,1,262,263],[620,2,2,263,265],[621,1,1,265,266]]],[19,10,10,266,276,[[638,1,1,266,267],[639,1,1,267,268],[641,1,1,268,269],[644,1,1,269,270],[646,1,1,270,271],[649,1,1,271,272],[656,2,2,272,274],[657,2,2,274,276]]],[20,1,1,276,277,[[665,1,1,276,277]]],[22,23,21,277,298,[[698,1,1,277,278],[700,1,1,278,279],[702,1,1,279,280],[715,1,1,280,281],[719,2,2,281,283],[720,3,2,283,285],[721,1,1,285,286],[722,5,4,286,290],[726,1,1,290,291],[727,4,4,291,295],[728,1,1,295,296],[730,1,1,296,297],[731,1,1,297,298]]],[23,11,11,298,309,[[746,1,1,298,299],[769,1,1,299,300],[771,1,1,300,301],[774,1,1,301,302],[777,3,3,302,305],[778,1,1,305,306],[787,1,1,306,307],[790,2,2,307,309]]],[25,6,5,309,314,[[829,1,1,309,310],[835,2,2,310,312],[838,3,2,312,314]]],[26,3,3,314,317,[[858,2,2,314,316],[859,1,1,316,317]]],[36,1,1,317,318,[[910,1,1,317,318]]],[37,1,1,318,319,[[913,1,1,318,319]]],[38,2,2,319,321,[[925,1,1,319,320],[928,1,1,320,321]]]],[230,231,232,427,429,476,593,596,600,601,605,608,625,643,644,650,652,656,657,716,932,938,946,948,965,974,1166,1168,1207,1318,1334,1341,1342,1348,1351,1354,1355,1356,1357,1611,1860,1920,2079,2082,2097,2103,3475,4035,4066,4067,4132,5068,5336,5515,5844,5852,5853,5858,5864,5866,5948,6033,6035,6119,6122,6136,6162,6194,6300,6428,6430,6431,6505,6553,6947,7285,7286,7650,7652,7654,7676,7710,7737,7738,7795,7802,7820,7821,7900,7923,7924,7935,7942,7944,7970,7975,7991,8099,8185,8188,8200,8201,8205,8206,8207,8208,8209,8229,8233,8235,8238,8280,8283,8341,8352,8375,8376,8378,8391,8397,8410,8423,8507,8530,8531,8537,8538,8539,8546,8547,8548,8702,8713,8736,8743,8744,8768,8808,8822,8823,8824,8825,9009,9010,9011,9013,9014,9015,9037,9038,9041,9044,9051,9119,9134,9144,9146,9158,9226,9236,9278,9292,9350,9353,9377,9417,9440,9447,9448,9604,9653,9662,9664,9665,9672,9740,9792,9803,9921,9970,9986,10036,10095,10104,10127,10157,10203,10230,10340,10341,10503,10833,10867,10870,10881,10886,10887,10888,10889,10890,10942,11197,11297,11298,11299,11301,11302,11303,11324,11459,11683,11686,11891,11953,12302,12303,12304,12307,12312,12317,12326,12525,12578,12877,12894,12923,13010,13313,13892,13929,13930,14179,14181,14347,14437,15183,15286,15288,15300,15329,15346,15365,15612,15623,15632,15648,15783,15864,15915,15921,15936,15947,15963,15974,15982,16020,16022,16023,16033,16038,16074,16161,16218,16295,16305,16315,16717,16728,16807,16875,16935,17022,17243,17245,17261,17273,17450,18032,18072,18097,18387,18459,18460,18481,18499,18515,18534,18535,18554,18559,18634,18639,18641,18642,18643,18672,18709,18722,18979,19543,19602,19677,19796,19797,19801,19817,20007,20072,20073,21182,21336,21337,21421,21422,21999,22005,22032,22878,22920,23095,23142]]],["servant's",[4,4,[[0,1,1,0,1,[[18,1,1,0,1]]],[9,1,1,1,2,[[273,1,1,1,2]]],[11,1,1,2,3,[[320,1,1,2,3]]],[12,1,1,3,4,[[354,1,1,3,4]]]],[459,8199,9746,10880]]],["servants",[348,315,[[0,35,31,0,31,[[8,1,1,0,1],[13,1,1,1,2],[19,1,1,2,3],[20,1,1,3,4],[25,4,4,4,8],[26,1,1,8,9],[31,2,1,9,10],[39,2,1,10,11],[40,3,3,11,14],[41,3,3,14,17],[43,7,6,17,23],[44,1,1,23,24],[46,5,4,24,28],[49,3,3,28,31]]],[1,23,22,31,53,[[54,4,3,31,34],[56,2,2,34,36],[57,4,4,36,40],[58,5,5,40,45],[59,3,3,45,48],[60,2,2,48,50],[61,1,1,50,51],[63,1,1,51,52],[81,1,1,52,53]]],[2,3,2,53,55,[[114,3,2,53,55]]],[3,7,7,55,62,[[138,1,1,55,56],[147,1,1,56,57],[148,5,5,57,62]]],[4,5,5,62,67,[[161,1,1,62,63],[181,1,1,63,64],[184,2,2,64,66],[186,1,1,66,67]]],[5,3,3,67,70,[[195,3,3,67,70]]],[6,2,2,70,72,[[213,1,1,70,71],[229,1,1,71,72]]],[8,35,31,72,103,[[243,3,3,72,75],[247,1,1,75,76],[251,3,3,76,79],[252,3,2,79,81],[253,7,6,81,87],[254,1,1,87,88],[256,2,2,88,90],[257,5,5,90,95],[260,5,4,95,99],[263,4,3,99,102],[264,1,1,102,103]]],[9,52,47,103,150,[[268,4,4,103,107],[269,2,2,107,109],[272,1,1,109,110],[274,4,4,110,114],[275,3,2,114,116],[276,5,4,116,120],[277,5,5,120,125],[278,4,3,125,128],[279,3,3,128,131],[280,3,2,131,133],[281,4,3,133,136],[282,2,2,136,138],[283,1,1,138,139],[284,2,2,139,141],[285,5,5,141,146],[286,1,1,146,147],[287,2,2,147,149],[290,1,1,149,150]]],[10,33,26,150,176,[[291,4,4,150,154],[292,4,2,154,156],[293,1,1,156,157],[295,5,3,157,160],[298,3,3,160,163],[299,3,2,163,165],[300,3,3,165,168],[302,1,1,168,169],[305,1,1,169,170],[310,5,4,170,174],[312,3,2,174,176]]],[11,28,27,176,203,[[313,1,1,176,177],[314,1,1,177,178],[317,1,1,178,179],[318,3,3,179,182],[319,1,1,182,183],[321,4,3,183,186],[322,1,1,186,187],[324,2,2,187,189],[326,1,1,189,190],[329,2,2,190,192],[330,2,2,192,194],[331,1,1,194,195],[333,2,2,195,197],[334,1,1,197,198],[335,1,1,198,199],[336,4,4,199,203]]],[12,10,10,203,213,[[355,4,4,203,207],[356,4,4,207,211],[357,1,1,211,212],[358,1,1,212,213]]],[13,28,23,213,236,[[368,5,3,213,216],[372,3,3,216,219],[374,4,2,219,221],[375,6,5,221,226],[376,1,1,226,227],[378,1,1,227,228],[390,1,1,228,229],[391,1,1,229,230],[398,2,2,230,232],[399,1,1,232,233],[401,2,2,233,235],[402,1,1,235,236]]],[14,4,4,236,240,[[404,3,3,236,239],[411,1,1,239,240]]],[15,11,10,240,250,[[413,3,3,240,243],[414,1,1,243,244],[417,1,1,244,245],[419,2,2,245,247],[421,3,2,247,249],[423,1,1,249,250]]],[16,6,6,250,256,[[426,1,1,250,251],[427,1,1,251,252],[428,2,2,252,254],[429,1,1,254,255],[430,1,1,255,256]]],[17,1,1,256,257,[[439,1,1,256,257]]],[18,17,17,257,274,[[511,1,1,257,258],[546,1,1,258,259],[556,2,2,259,261],[566,1,1,261,262],[567,2,2,262,264],[579,2,2,264,266],[582,1,1,266,267],[590,1,1,267,268],[596,1,1,268,269],[600,1,1,269,270],[611,1,1,270,271],[612,3,3,271,274]]],[20,3,2,274,276,[[660,1,1,274,275],[668,2,1,275,276]]],[22,14,12,276,288,[[692,1,1,276,277],[714,2,2,277,279],[715,2,2,279,281],[732,1,1,281,282],[734,1,1,282,283],[743,6,4,283,287],[744,1,1,287,288]]],[23,18,17,288,305,[[751,1,1,288,289],[765,1,1,289,290],[766,2,2,290,292],[769,2,2,292,294],[770,1,1,294,295],[773,1,1,295,296],[778,3,2,296,298],[779,1,1,298,299],[780,2,2,299,301],[781,2,2,301,303],[788,1,1,303,304],[790,1,1,304,305]]],[25,1,1,305,306,[[839,1,1,305,306]]],[26,4,4,306,310,[[850,2,2,306,308],[858,2,2,308,310]]],[28,1,1,310,311,[[877,1,1,310,311]]],[29,1,1,311,312,[[881,1,1,311,312]]],[32,1,1,312,313,[[898,1,1,312,313]]],[37,2,2,313,315,[[911,1,1,313,314],[912,1,1,314,315]]]],[230,351,503,538,707,711,717,724,764,944,1192,1205,1232,1233,1262,1263,1265,1331,1340,1343,1345,1347,1355,1374,1423,1424,1439,1445,1513,1523,1524,1647,1648,1653,1695,1705,1713,1714,1719,1731,1756,1762,1763,1772,1776,1778,1783,1784,1809,1814,1846,1894,2451,3511,3524,4393,4713,4722,4723,4743,4745,4749,5184,5681,5794,5801,5850,6045,6046,6048,6592,7043,7383,7384,7386,7479,7610,7611,7612,7626,7627,7681,7698,7699,7700,7702,7706,7707,7783,7786,7793,7794,7796,7801,7804,7869,7871,7901,7902,7949,7965,7967,7977,8061,8062,8066,8080,8103,8119,8177,8211,8215,8216,8223,8237,8239,8242,8243,8244,8259,8260,8268,8270,8272,8283,8304,8305,8307,8341,8348,8353,8386,8387,8403,8404,8407,8432,8437,8469,8485,8487,8516,8517,8518,8525,8528,8560,8595,8602,8712,8719,8726,8750,8764,8809,8810,8831,8879,8884,8887,9008,9017,9021,9073,9078,9084,9087,9092,9158,9267,9414,9420,9431,9439,9483,9529,9546,9567,9660,9677,9682,9685,9719,9763,9767,9784,9798,9870,9871,9901,9996,10006,10048,10050,10066,10129,10142,10154,10195,10204,10212,10213,10214,10892,10896,10897,10903,10909,10910,10911,10926,10934,10937,11219,11221,11226,11296,11305,11309,11355,11364,11368,11371,11374,11376,11385,11402,11445,11702,11707,11884,11891,11932,11989,11990,12013,12082,12085,12092,12248,12302,12306,12307,12327,12387,12477,12480,12521,12547,12591,12705,12742,12749,12750,12773,12790,12948,14410,14971,15187,15195,15376,15391,15394,15535,15549,15631,15814,15989,16100,16173,16176,16184,16189,17340,17500,17930,18339,18341,18357,18376,18740,18759,18906,18910,18911,18912,18936,19144,19447,19456,19458,19538,19553,19577,19654,19812,19817,19838,19866,19873,19876,19892,20014,20071,21442,21749,21750,21994,21998,22340,22402,22652,22884,22908]]],["servants'",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[57,1,1,1,2]]]],[1420,1734]]]]},{"k":"H5651","v":[["Ebed",[6,6,[[6,5,5,0,5,[[219,5,5,0,5]]],[14,1,1,5,6,[[410,1,1,5,6]]]],[6780,6782,6784,6785,6789,12207]]]]},{"k":"H5652","v":[["works",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17476]]]]},{"k":"H5653","v":[["Abda",[2,2,[[10,1,1,0,1,[[294,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[8850,12605]]]]},{"k":"H5654","v":[["Obededom",[20,15,[[9,5,3,0,3,[[272,5,3,0,3]]],[12,14,11,3,14,[[350,3,2,3,5],[352,4,4,5,9],[353,3,2,9,11],[363,4,3,11,14]]],[13,1,1,14,15,[[391,1,1,14,15]]]],[8167,8168,8169,10773,10774,10809,10812,10815,10816,10825,10858,11081,11085,11092,11728]]]]},{"k":"H5655","v":[["Abdeel",[1,1,[[23,1,1,0,1,[[780,1,1,0,1]]]],[19868]]]]},{"k":"H5656","v":[["*",[146,125,[[0,2,2,0,2,[[28,1,1,0,1],[29,1,1,1,2]]],[1,23,20,2,22,[[50,3,1,2,3],[51,2,1,3,4],[54,2,2,4,6],[55,2,2,6,8],[61,2,2,8,10],[62,1,1,10,11],[76,1,1,11,12],[79,1,1,12,13],[84,2,2,13,15],[85,3,3,15,18],[87,1,1,18,19],[88,3,3,19,22]]],[2,7,7,22,29,[[112,6,6,22,28],[114,1,1,28,29]]],[3,51,44,29,73,[[119,5,5,29,34],[120,21,16,34,50],[123,5,4,50,54],[124,6,6,54,60],[132,1,1,60,61],[134,7,6,61,67],[144,3,3,67,70],[145,3,3,70,73]]],[4,1,1,73,74,[[178,1,1,73,74]]],[5,1,1,74,75,[[208,1,1,74,75]]],[10,1,1,75,76,[[302,1,1,75,76]]],[12,30,23,76,99,[[341,1,1,76,77],[343,2,2,77,79],[346,3,3,79,82],[360,5,4,82,86],[361,2,2,86,88],[362,3,2,88,90],[363,2,2,90,92],[364,1,1,92,93],[365,10,5,93,98],[366,1,1,98,99]]],[13,15,13,99,112,[[374,1,1,99,100],[376,1,1,100,101],[378,2,1,101,102],[390,1,1,102,103],[395,1,1,103,104],[397,3,3,104,107],[400,2,1,107,108],[401,4,4,108,112]]],[14,1,1,112,113,[[410,1,1,112,113]]],[15,4,4,113,117,[[415,1,1,113,114],[417,1,1,114,115],[422,2,2,115,117]]],[18,2,2,117,119,[[581,2,2,117,119]]],[22,4,3,119,122,[[692,1,1,119,120],[706,2,1,120,121],[710,1,1,121,122]]],[24,1,1,122,123,[[797,1,1,122,123]]],[25,3,2,123,125,[[830,2,1,123,124],[845,1,1,124,125]]]],[822,856,1546,1577,1641,1643,1661,1664,1841,1842,1872,2291,2398,2552,2555,2567,2569,2571,2654,2696,2704,2706,3409,3410,3423,3427,3437,3438,3508,3699,3700,3718,3723,3728,3747,3762,3766,3767,3769,3770,3771,3773,3774,3775,3776,3778,3782,3786,3790,3792,3855,3857,3858,3859,3950,3958,3961,3963,3964,3965,4203,4261,4263,4264,4278,4280,4288,4595,4602,4603,4609,4620,4643,5572,6453,9155,10406,10486,10502,10628,10634,10643,11007,11009,11011,11015,11018,11034,11047,11052,11085,11107,11135,11156,11157,11158,11163,11164,11171,11360,11399,11445,11689,11826,11856,11870,11875,11946,11968,11976,11981,11982,12221,12332,12400,12581,12586,15585,15594,17931,18185,18276,20313,21201,21613]]],["+",[13,9,[[1,4,4,0,4,[[54,2,2,0,2],[55,2,2,2,4]]],[2,1,1,4,5,[[114,1,1,4,5]]],[10,1,1,5,6,[[302,1,1,5,6]]],[12,4,1,6,7,[[365,4,1,6,7]]],[13,3,2,7,9,[[376,1,1,7,8],[400,2,1,8,9]]]],[1641,1643,1661,1664,3508,9155,11157,11399,11946]]],["act",[2,1,[[22,2,1,0,1,[[706,2,1,0,1]]]],[18185]]],["bondage",[6,5,[[1,3,2,0,2,[[50,1,1,0,1],[51,2,1,1,2]]],[4,1,1,2,3,[[178,1,1,2,3]]],[15,1,1,3,4,[[417,1,1,3,4]]],[22,1,1,4,5,[[692,1,1,4,5]]]],[1546,1577,5572,12400,17931]]],["effect",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18276]]],["labour",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15594]]],["ministering",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10643]]],["ministry",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3790]]],["office",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10486]]],["serveth",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3728]]],["service",[94,82,[[0,2,2,0,2,[[28,1,1,0,1],[29,1,1,1,2]]],[1,14,13,2,15,[[50,2,1,2,3],[61,2,2,3,5],[62,1,1,5,6],[76,1,1,6,7],[79,1,1,7,8],[84,2,2,8,10],[85,3,3,10,13],[87,1,1,13,14],[88,1,1,14,15]]],[3,38,33,15,48,[[119,4,4,15,19],[120,15,12,19,31],[123,5,4,31,35],[124,6,6,35,41],[132,1,1,41,42],[134,7,6,42,48]]],[5,1,1,48,49,[[208,1,1,48,49]]],[12,21,17,49,66,[[343,1,1,49,50],[346,2,2,50,52],[360,5,4,52,56],[361,2,2,56,58],[362,3,2,58,60],[363,2,2,60,62],[365,5,3,62,65],[366,1,1,65,66]]],[13,12,11,66,77,[[374,1,1,66,67],[378,2,1,67,68],[390,1,1,68,69],[395,1,1,69,70],[397,3,3,70,73],[401,4,4,73,77]]],[14,1,1,77,78,[[410,1,1,77,78]]],[15,1,1,78,79,[[422,1,1,78,79]]],[18,1,1,79,80,[[581,1,1,79,80]]],[25,3,2,80,82,[[830,2,1,80,81],[845,1,1,81,82]]]],[822,856,1546,1841,1842,1872,2291,2398,2552,2555,2567,2569,2571,2654,2704,3699,3700,3718,3723,3747,3762,3766,3767,3769,3770,3771,3774,3775,3776,3790,3792,3855,3857,3858,3859,3950,3958,3961,3963,3964,3965,4203,4261,4263,4264,4278,4280,4288,6453,10502,10628,10634,11007,11009,11011,11015,11018,11034,11047,11052,11085,11107,11156,11163,11164,11171,11360,11445,11689,11826,11856,11870,11875,11968,11976,11981,11982,12221,12581,15585,21201,21613]]],["servile",[12,12,[[2,6,6,0,6,[[112,6,6,0,6]]],[3,6,6,6,12,[[144,3,3,6,9],[145,3,3,9,12]]]],[3409,3410,3423,3427,3437,3438,4595,4602,4603,4609,4620,4643]]],["servitude",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20313]]],["tillage",[2,2,[[12,1,1,0,1,[[364,1,1,0,1]]],[15,1,1,1,2,[[422,1,1,1,2]]]],[11135,12586]]],["use",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11158]]],["work",[8,8,[[1,2,2,0,2,[[88,2,2,0,2]]],[3,5,5,2,7,[[120,5,5,2,7]]],[15,1,1,7,8,[[415,1,1,7,8]]]],[2696,2706,3766,3773,3778,3782,3786,12332]]],["wrought",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10406]]]]},{"k":"H5657","v":[["*",[2,2,[[0,1,1,0,1,[[25,1,1,0,1]]],[17,1,1,1,2,[[436,1,1,1,2]]]],[706,12872]]],["household",[1,1,[[17,1,1,0,1,[[436,1,1,0,1]]]],[12872]]],["servants",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[706]]]]},{"k":"H5658","v":[["Abdon",[8,8,[[5,1,1,0,1,[[207,1,1,0,1]]],[6,2,2,1,3,[[222,2,2,1,3]]],[12,4,4,3,7,[[343,1,1,3,4],[345,2,2,4,6],[346,1,1,6,7]]],[13,1,1,7,8,[[400,1,1,7,8]]]],[6411,6882,6884,10528,10598,10605,10651,11953]]]]},{"k":"H5659","v":[["bondage",[3,3,[[14,2,2,0,2,[[411,2,2,0,2]]],[15,1,1,2,3,[[421,1,1,2,3]]]],[12245,12246,12528]]]]},{"k":"H5660","v":[["Abdi",[3,3,[[12,1,1,0,1,[[343,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]],[14,1,1,2,3,[[412,1,1,2,3]]]],[10498,11803,12278]]]]},{"k":"H5661","v":[["Abdiel",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10443]]]]},{"k":"H5662","v":[["Obadiah",[20,19,[[10,7,6,0,6,[[308,7,6,0,6]]],[12,7,7,6,13,[[340,1,1,6,7],[344,1,1,7,8],[345,1,1,8,9],[346,2,2,9,11],[349,1,1,11,12],[364,1,1,12,13]]],[13,2,2,13,15,[[383,1,1,13,14],[400,1,1,14,15]]],[14,1,1,15,16,[[410,1,1,15,16]]],[15,2,2,16,18,[[422,1,1,16,17],[424,1,1,17,18]]],[30,1,1,18,19,[[888,1,1,18,19]]]],[9344,9345,9346,9347,9348,9357,10382,10538,10613,10631,10659,10729,11128,11530,11945,12210,12554,12649,22511]]]]},{"k":"H5663","v":[["Ebedmelech",[6,6,[[23,6,6,0,6,[[782,5,5,0,5],[783,1,1,5,6]]]],[19902,19903,19905,19906,19907,19939]]]]},{"k":"H5664","v":[["Abednego",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21744]]]]},{"k":"H5665","v":[["Abednego",[14,13,[[26,14,13,0,13,[[851,1,1,0,1],[852,13,12,1,13]]]],[21807,21819,21820,21821,21823,21826,21827,21829,21830,21833,21835,21836,21837]]]]},{"k":"H5666","v":[["*",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[10,1,1,1,2,[[302,1,1,1,2]]],[13,1,1,2,3,[[376,1,1,2,3]]]],[5773,9161,11405]]],["thick",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5773]]],["thicker",[2,2,[[10,1,1,0,1,[[302,1,1,0,1]]],[13,1,1,1,2,[[376,1,1,1,2]]]],[9161,11405]]]]},{"k":"H5667","v":[["pledge",[4,4,[[4,4,4,0,4,[[176,4,4,0,4]]]],[5535,5536,5537,5538]]]]},{"k":"H5668","v":[["*",[50,47,[[0,15,15,0,15,[[2,1,1,0,1],[7,1,1,1,2],[11,2,2,2,4],[17,4,4,4,8],[20,1,1,8,9],[25,1,1,9,10],[26,4,4,10,14],[45,1,1,14,15]]],[1,7,5,15,20,[[58,3,2,15,17],[62,1,1,17,18],[68,1,1,18,19],[69,2,1,19,20]]],[8,3,3,20,23,[[236,1,1,20,21],[247,1,1,21,22],[258,1,1,22,23]]],[9,13,12,23,35,[[271,1,1,23,24],[272,1,1,24,25],[273,1,1,25,26],[275,2,2,26,28],[276,1,1,28,29],[278,3,2,29,31],[279,1,1,31,32],[280,1,1,32,33],[283,1,1,33,34],[284,1,1,34,35]]],[12,3,3,35,38,[[351,1,1,35,36],[354,1,1,36,37],[356,1,1,37,38]]],[13,1,1,38,39,[[394,1,1,38,39]]],[17,1,1,39,40,[[455,1,1,39,40]]],[18,3,3,40,43,[[582,1,1,40,41],[583,1,1,41,42],[609,1,1,42,43]]],[23,1,1,43,44,[[758,1,1,43,44]]],[29,2,2,44,46,[[880,1,1,44,45],[886,1,1,45,46]]],[32,1,1,46,47,[[894,1,1,46,47]]]],[72,204,311,314,450,453,455,456,543,716,731,737,746,758,1420,1756,1758,1875,2035,2071,7218,7482,7820,8144,8169,8201,8228,8234,8243,8307,8311,8319,8376,8463,8496,10776,10882,10910,11783,13328,15651,15683,16161,19297,22385,22487,22605]]],["+",[9,8,[[0,5,5,0,5,[[7,1,1,0,1],[17,3,3,1,4],[26,1,1,4,5]]],[9,3,2,5,7,[[273,1,1,5,6],[278,2,1,6,7]]],[12,1,1,7,8,[[354,1,1,7,8]]]],[204,453,455,456,737,8201,8307,10882]]],["Because",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19297]]],["That",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15651]]],["To",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8376]]],["because",[4,4,[[1,1,1,0,1,[[62,1,1,0,1]]],[9,2,2,1,3,[[272,1,1,1,2],[278,1,1,2,3]]],[32,1,1,3,4,[[894,1,1,3,4]]]],[1875,8169,8311,22605]]],["for",[8,7,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,2,1,1,2,[[58,2,1,1,2]]],[9,1,1,2,3,[[279,1,1,2,3]]],[12,1,1,3,4,[[356,1,1,3,4]]],[17,1,1,4,5,[[455,1,1,4,5]]],[29,2,2,5,7,[[880,1,1,5,6],[886,1,1,6,7]]]],[716,1758,8319,10910,13328,22385,22487]]],["intent",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8463]]],["of",[2,2,[[12,1,1,0,1,[[351,1,1,0,1]]],[13,1,1,1,2,[[394,1,1,1,2]]]],[10776,11783]]],["sake",[9,9,[[0,3,3,0,3,[[2,1,1,0,1],[11,2,2,1,3]]],[8,2,2,3,5,[[247,1,1,3,4],[258,1,1,4,5]]],[9,3,3,5,8,[[271,1,1,5,6],[275,2,2,6,8]]],[18,1,1,8,9,[[609,1,1,8,9]]]],[72,311,314,7482,7820,8144,8228,8234,16161]]],["sakes",[2,2,[[0,1,1,0,1,[[17,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]]],[450,15683]]],["that",[8,8,[[0,5,5,0,5,[[20,1,1,0,1],[26,3,3,1,4],[45,1,1,4,5]]],[1,3,3,5,8,[[58,1,1,5,6],[68,1,1,6,7],[69,1,1,7,8]]]],[543,731,746,758,1420,1756,2035,2071]]],["to",[4,4,[[1,1,1,0,1,[[69,1,1,0,1]]],[8,1,1,1,2,[[236,1,1,1,2]]],[9,2,2,2,4,[[276,1,1,2,3],[284,1,1,3,4]]]],[2071,7218,8243,8496]]]]},{"k":"H5669","v":[["+",[2,2,[[5,2,2,0,2,[[191,2,2,0,2]]]],[5945,5946]]]]},{"k":"H5670","v":[["*",[6,4,[[4,5,3,0,3,[[167,4,2,0,2],[176,1,1,2,3]]],[28,1,1,3,4,[[877,1,1,3,4]]]],[5325,5327,5535,22318]]],["+",[2,1,[[4,2,1,0,1,[[167,2,1,0,1]]]],[5327]]],["borrow",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5325]]],["break",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22318]]],["fetch",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5535]]],["lend",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5325]]]]},{"k":"H5671","v":[["clay",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22754]]]]},{"k":"H5672","v":[["*",[4,4,[[10,1,1,0,1,[[297,1,1,0,1]]],[13,1,1,1,2,[[370,1,1,1,2]]],[17,1,1,2,3,[[450,1,1,2,3]]],[23,1,1,3,4,[[796,1,1,3,4]]]],[8960,11251,13229,20297]]],["thick",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]]],[8960,13229]]],["thickness",[2,2,[[13,1,1,0,1,[[370,1,1,0,1]]],[23,1,1,1,2,[[796,1,1,1,2]]]],[11251,20297]]]]},{"k":"H5673","v":[["*",[6,6,[[14,4,4,0,4,[[406,1,1,0,1],[407,1,1,1,2],[408,2,2,2,4]]],[26,2,2,4,6,[[851,1,1,4,5],[852,1,1,5,6]]]],[12134,12142,12158,12169,21807,21819]]],["affairs",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21807,21819]]],["service",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12169]]],["work",[3,3,[[14,3,3,0,3,[[406,1,1,0,1],[407,1,1,1,2],[408,1,1,2,3]]]],[12134,12142,12158]]]]},{"k":"H5674","v":[["*",[557,493,[[0,24,21,0,21,[[7,1,1,0,1],[11,1,1,1,2],[14,1,1,2,3],[17,3,2,3,5],[22,1,1,5,6],[29,1,1,6,7],[30,3,2,7,9],[31,7,6,9,15],[32,2,2,15,17],[36,1,1,17,18],[40,1,1,18,19],[46,1,1,19,20],[49,1,1,20,21]]],[1,15,13,21,34,[[61,2,2,21,23],[62,1,1,23,24],[64,2,1,24,25],[66,1,1,25,26],[79,2,2,26,28],[81,1,1,28,29],[82,3,2,29,31],[83,1,1,31,32],[85,1,1,32,33],[87,1,1,33,34]]],[2,5,4,34,38,[[107,1,1,34,35],[114,2,1,35,36],[115,1,1,36,37],[116,1,1,37,38]]],[3,37,31,38,69,[[121,3,2,38,40],[122,1,1,40,41],[124,1,1,41,42],[129,1,1,42,43],[130,2,2,43,45],[136,7,5,45,50],[137,3,2,50,52],[138,2,2,52,54],[140,1,1,54,55],[143,2,2,55,57],[147,2,1,57,58],[148,7,7,58,65],[149,2,2,65,67],[150,2,1,67,68],[151,1,1,68,69]]],[4,49,44,69,113,[[154,12,10,69,79],[155,6,6,79,85],[156,5,4,85,89],[158,1,1,89,90],[161,2,2,90,92],[163,3,3,92,95],[164,1,1,95,96],[169,1,1,96,97],[170,1,1,97,98],[176,1,1,98,99],[178,1,1,99,100],[179,4,4,100,104],[181,3,2,104,106],[182,2,2,106,108],[183,4,3,108,111],[184,1,1,111,112],[186,1,1,112,113]]],[5,59,49,113,162,[[187,4,3,113,116],[188,1,1,116,117],[189,10,8,117,125],[190,13,11,125,136],[191,1,1,136,137],[192,3,2,137,139],[193,5,3,139,142],[196,3,3,142,145],[201,8,6,145,151],[202,2,2,151,153],[204,4,4,153,157],[205,1,1,157,158],[208,1,1,158,159],[209,1,1,159,160],[210,2,2,160,162]]],[6,23,20,162,182,[[212,1,1,162,163],[213,2,2,163,165],[216,1,1,165,166],[218,1,1,166,167],[219,2,2,167,169],[220,1,1,169,170],[221,7,5,170,175],[222,4,3,175,178],[228,1,1,178,179],[229,3,3,179,182]]],[7,2,2,182,184,[[233,1,1,182,183],[235,1,1,183,184]]],[8,26,21,184,205,[[237,1,1,184,185],[244,6,2,185,187],[248,1,1,187,188],[249,5,5,188,193],[250,2,2,193,195],[251,3,3,195,198],[255,1,1,198,199],[260,1,1,199,200],[261,2,2,200,202],[262,1,1,202,203],[264,2,1,203,204],[265,1,1,204,205]]],[9,48,37,205,242,[[268,3,3,205,208],[269,1,1,208,209],[276,1,1,209,210],[277,1,1,210,211],[278,2,2,211,213],[281,9,5,213,218],[282,2,2,218,220],[283,7,5,220,225],[284,2,2,225,227],[285,15,10,227,237],[286,2,2,237,239],[290,3,3,239,242]]],[10,12,12,242,254,[[292,1,1,242,243],[296,1,1,243,244],[299,1,1,244,245],[303,1,1,245,246],[305,1,1,246,247],[308,2,2,247,249],[309,2,2,249,251],[310,1,1,251,252],[312,2,2,252,254]]],[11,18,17,254,271,[[314,3,3,254,257],[316,4,3,257,260],[318,3,3,260,263],[320,1,1,263,264],[324,1,1,264,265],[326,1,1,265,266],[328,1,1,266,267],[329,1,1,267,268],[330,1,1,268,269],[333,1,1,269,270],[335,1,1,270,271]]],[12,4,4,271,275,[[349,1,1,271,272],[356,1,1,272,273],[358,1,1,273,274],[366,1,1,274,275]]],[13,12,12,275,287,[[373,1,1,275,276],[381,1,1,276,277],[384,1,1,277,278],[387,1,1,278,279],[390,1,1,279,280],[391,1,1,280,281],[396,2,2,281,283],[399,1,1,283,284],[401,2,2,284,286],[402,1,1,286,287]]],[14,2,2,287,289,[[403,1,1,287,288],[412,1,1,288,289]]],[15,5,4,289,293,[[414,3,2,289,291],[420,1,1,291,292],[421,1,1,292,293]]],[16,7,7,293,300,[[426,1,1,293,294],[428,1,1,294,295],[429,1,1,295,296],[433,2,2,296,298],[434,2,2,298,300]]],[17,17,17,300,317,[[441,1,1,300,301],[442,1,1,301,302],[444,1,1,302,303],[446,1,1,303,304],[448,1,1,304,305],[449,1,1,305,306],[450,1,1,306,307],[452,1,1,307,308],[454,1,1,308,309],[456,2,2,309,311],[465,1,1,311,312],[468,2,2,312,314],[469,1,1,314,315],[471,1,1,315,316],[472,1,1,316,317]]],[18,33,33,317,350,[[485,1,1,317,318],[494,1,1,318,319],[495,1,1,319,320],[514,1,1,320,321],[515,1,1,321,322],[519,2,2,322,324],[525,1,1,324,325],[534,1,1,325,326],[543,1,1,326,327],[550,1,1,327,328],[555,4,4,328,332],[557,1,1,332,333],[558,1,1,333,334],[561,1,1,334,335],[565,1,1,335,336],[566,2,2,336,338],[567,1,1,338,339],[580,1,1,339,340],[581,1,1,340,341],[596,2,2,341,343],[601,2,2,343,345],[606,1,1,345,346],[613,1,1,346,347],[618,1,1,347,348],[621,1,1,348,349],[625,1,1,349,350]]],[19,15,13,350,363,[[631,2,1,350,351],[634,1,1,351,352],[635,1,1,352,353],[636,1,1,353,354],[637,1,1,354,355],[641,1,1,355,356],[646,1,1,356,357],[647,1,1,357,358],[649,1,1,358,359],[651,1,1,359,360],[653,3,2,360,362],[654,1,1,362,363]]],[20,1,1,363,364,[[669,1,1,363,364]]],[21,5,5,364,369,[[672,1,1,364,365],[673,1,1,365,366],[675,3,3,366,369]]],[22,34,30,369,399,[[686,2,2,369,371],[688,2,2,371,373],[694,1,1,373,374],[701,4,4,374,378],[702,1,1,378,379],[704,1,1,379,380],[706,4,3,380,383],[707,1,1,383,384],[709,1,1,384,385],[711,2,2,385,387],[712,1,1,387,388],[713,1,1,388,389],[718,1,1,389,390],[719,1,1,390,391],[721,1,1,391,392],[723,2,1,392,393],[725,1,1,393,394],[729,3,2,394,396],[732,1,1,396,397],[738,1,1,397,398],[740,2,1,398,399]]],[23,28,26,399,425,[[746,3,3,399,402],[749,3,2,402,404],[752,2,2,404,406],[753,2,2,406,408],[755,1,1,408,409],[757,1,1,409,410],[759,1,1,410,411],[762,1,1,411,412],[763,1,1,412,413],[766,1,1,413,414],[767,1,1,414,415],[776,1,1,415,416],[777,1,1,416,417],[778,3,2,417,419],[785,1,1,419,420],[790,1,1,420,421],[792,1,1,421,422],[793,1,1,422,423],[794,1,1,423,424],[795,1,1,424,425]]],[24,4,4,425,429,[[797,1,1,425,426],[798,1,1,426,427],[799,1,1,427,428],[800,1,1,428,429]]],[25,35,29,429,458,[[806,3,3,429,432],[810,2,2,432,434],[815,3,2,434,436],[817,5,5,436,441],[821,3,3,441,444],[824,1,1,444,445],[830,2,1,445,446],[834,1,1,446,447],[836,1,1,447,448],[837,1,1,448,449],[838,1,1,449,450],[840,6,3,450,453],[847,1,1,453,454],[848,4,3,454,457],[849,1,1,457,458]]],[26,4,4,458,462,[[858,1,1,458,459],[860,3,3,459,462]]],[27,3,3,462,465,[[867,1,1,462,463],[869,1,1,463,464],[871,1,1,464,465]]],[28,1,1,465,466,[[878,1,1,465,466]]],[29,6,6,466,472,[[883,2,2,466,468],[884,1,1,468,469],[885,1,1,469,470],[886,2,2,470,472]]],[31,2,2,472,474,[[890,1,1,472,473],[891,1,1,473,474]]],[32,6,5,474,479,[[893,1,1,474,475],[894,3,2,475,477],[897,1,1,477,478],[899,1,1,478,479]]],[33,4,4,479,483,[[900,3,3,479,482],[902,1,1,482,483]]],[34,2,2,483,485,[[903,1,1,483,484],[905,1,1,484,485]]],[35,3,3,485,488,[[907,2,2,485,487],[908,1,1,487,488]]],[37,6,5,488,493,[[913,1,1,488,489],[917,1,1,489,490],[919,2,1,490,491],[920,1,1,491,492],[923,1,1,492,493]]]],[184,304,377,427,429,587,862,894,925,938,944,949,950,951,959,963,974,1111,1241,1441,1510,1828,1839,1879,1936,1988,2395,2396,2465,2492,2495,2502,2572,2659,3272,3478,3530,3602,3806,3822,3828,3946,4107,4115,4149,4328,4329,4330,4331,4332,4362,4363,4393,4401,4459,4561,4562,4687,4723,4725,4739,4745,4747,4748,4750,4768,4811,4820,4855,4942,4946,4951,4952,4956,4962,4965,4966,4967,4968,4993,4996,5000,5001,5002,5003,5018,5025,5026,5030,5087,5158,5160,5216,5219,5239,5250,5366,5394,5530,5579,5587,5588,5589,5597,5691,5695,5721,5726,5730,5731,5741,5805,5843,5853,5862,5865,5892,5894,5895,5897,5899,5904,5907,5909,5910,5911,5913,5915,5917,5918,5920,5921,5922,5923,5932,5933,5935,5956,5957,5983,5987,5991,6093,6095,6098,6205,6206,6208,6209,6212,6213,6267,6271,6302,6306,6311,6312,6334,6445,6476,6487,6493,6565,6594,6596,6687,6723,6779,6780,6820,6846,6848,6849,6858,6861,6870,6872,6874,7006,7036,7038,7042,7157,7191,7264,7395,7418,7492,7509,7512,7514,7516,7531,7572,7584,7603,7604,7605,7766,7880,7918,7927,7932,7969,7988,8057,8064,8078,8091,8257,8286,8299,8317,8407,8411,8412,8413,8422,8427,8435,8465,8469,8470,8471,8473,8487,8501,8526,8529,8542,8544,8547,8548,8549,8550,8551,8552,8567,8568,8697,8702,8712,8807,8917,9059,9209,9261,9347,9370,9398,9406,9447,9504,9516,9559,9560,9565,9611,9612,9634,9683,9700,9704,9748,9854,9905,9966,10000,10036,10125,10175,10735,10924,10942,11194,11345,11498,11565,11633,11697,11722,11832,11837,11914,11989,11990,12015,12017,12259,12314,12321,12508,12522,12721,12750,12779,12819,12820,12861,12862,12993,13029,13062,13124,13166,13186,13222,13271,13305,13365,13384,13572,13668,13678,13703,13748,13790,14020,14106,14130,14486,14494,14559,14562,14638,14769,14879,15027,15126,15134,15172,15175,15210,15223,15265,15324,15364,15367,15382,15565,15580,15935,15937,16106,16107,16140,16210,16286,16309,16377,16505,16583,16631,16653,16681,16788,16936,16956,17018,17109,17151,17158,17181,17523,17565,17575,17603,17604,17611,17815,17828,17878,17879,17977,18079,18083,18087,18089,18100,18150,18179,18182,18183,18198,18259,18287,18300,18313,18328,18447,18454,18507,18575,18601,18683,18696,18732,18836,18864,18971,18975,18985,19080,19086,19166,19173,19185,19187,19241,19290,19329,19400,19415,19462,19493,19766,19788,19819,19820,19967,20062,20112,20144,20179,20255,20322,20347,20398,20441,20547,20560,20563,20626,20627,20746,20748,20768,20770,20777,20783,20787,20921,20926,20932,21044,21194,21308,21351,21393,21399,21459,21462,21463,21676,21682,21683,21684,21716,21999,22046,22056,22076,22174,22195,22236,22360,22428,22440,22452,22472,22483,22486,22551,22564,22590,22603,22608,22641,22682,22692,22696,22699,22731,22742,22778,22807,22820,22826,22916,22976,23007,23027,23061]]],["+",[107,100,[[0,9,7,0,7,[[17,1,1,0,1],[30,3,2,1,3],[31,5,4,3,7]]],[1,1,1,7,8,[[85,1,1,7,8]]],[3,9,9,8,17,[[124,1,1,8,9],[130,1,1,9,10],[138,1,1,10,11],[140,1,1,11,12],[148,3,3,12,15],[149,1,1,15,16],[151,1,1,16,17]]],[4,19,18,17,35,[[154,5,4,17,21],[155,1,1,21,22],[156,3,3,22,25],[161,1,1,25,26],[163,1,1,26,27],[164,1,1,27,28],[179,3,3,28,31],[182,1,1,31,32],[183,2,2,32,34],[184,1,1,34,35]]],[5,14,12,35,47,[[187,2,2,35,37],[189,2,2,37,39],[190,3,3,39,42],[193,5,3,42,45],[209,1,1,45,46],[210,1,1,46,47]]],[6,5,4,47,51,[[212,1,1,47,48],[213,1,1,48,49],[220,1,1,49,50],[221,2,1,50,51]]],[8,3,3,51,54,[[248,1,1,51,52],[250,1,1,52,53],[265,1,1,53,54]]],[9,16,15,54,69,[[268,1,1,54,55],[276,1,1,55,56],[278,1,1,56,57],[283,4,3,57,60],[284,1,1,60,61],[285,6,6,61,67],[290,2,2,67,69]]],[10,1,1,69,70,[[292,1,1,69,70]]],[11,3,3,70,73,[[316,1,1,70,71],[318,1,1,71,72],[330,1,1,72,73]]],[12,3,3,73,76,[[349,1,1,73,74],[358,1,1,74,75],[366,1,1,75,76]]],[13,3,3,76,79,[[396,2,2,76,78],[402,1,1,78,79]]],[14,2,2,79,81,[[403,1,1,79,80],[412,1,1,80,81]]],[15,1,1,81,82,[[420,1,1,81,82]]],[16,1,1,82,83,[[433,1,1,82,83]]],[17,3,3,83,86,[[442,1,1,83,84],[468,2,2,84,86]]],[19,1,1,86,87,[[636,1,1,86,87]]],[21,1,1,87,88,[[673,1,1,87,88]]],[22,2,2,88,90,[[711,1,1,88,89],[732,1,1,89,90]]],[23,1,1,90,91,[[778,1,1,90,91]]],[24,3,3,91,94,[[797,1,1,91,92],[798,1,1,92,93],[799,1,1,93,94]]],[25,1,1,94,95,[[840,1,1,94,95]]],[26,1,1,95,96,[[858,1,1,95,96]]],[32,2,2,96,98,[[894,1,1,96,97],[899,1,1,97,98]]],[37,2,2,98,100,[[917,1,1,98,99],[919,1,1,99,100]]]],[427,894,925,938,950,951,959,2572,3946,4149,4393,4459,4723,4725,4747,4811,4855,4951,4952,4962,4967,5002,5025,5026,5030,5158,5239,5250,5587,5589,5597,5726,5730,5741,5805,5853,5862,5907,5910,5911,5913,5932,5983,5987,5991,6476,6487,6565,6594,6820,6858,7492,7584,7988,8078,8257,8317,8470,8471,8473,8501,8526,8529,8547,8550,8551,8552,8697,8702,8807,9612,9683,10036,10735,10942,11194,11832,11837,12015,12017,12259,12508,12820,13029,13668,13678,16653,17575,18287,18732,19819,20322,20347,20398,21462,21999,22603,22682,22976,23007]]],["Come",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8544]]],["Go",[1,1,[[25,1,1,0,1,[[810,1,1,0,1]]]],[20627]]],["Pass",[2,2,[[5,1,1,0,1,[[187,1,1,0,1]]],[29,1,1,1,2,[[884,1,1,1,2]]]],[5862,22452]]],["Passing",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16583]]],["alienate",[1,1,[[25,1,1,0,1,[[849,1,1,0,1]]]],[21716]]],["along",[9,8,[[5,8,7,0,7,[[201,5,4,0,4],[202,1,1,4,5],[204,1,1,5,6],[205,1,1,6,7]]],[6,1,1,7,8,[[219,1,1,7,8]]]],[6205,6208,6212,6213,6267,6312,6334,6779]]],["altered",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12721]]],["anger",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16956]]],["apart",[1,1,[[1,1,1,0,1,[[62,1,1,0,1]]]],[1879]]],["away",[19,19,[[9,2,2,0,2,[[278,1,1,0,1],[284,1,1,1,2]]],[10,1,1,2,3,[[305,1,1,2,3]]],[13,2,2,3,5,[[381,1,1,3,4],[401,1,1,4,5]]],[17,4,4,5,9,[[441,1,1,5,6],[446,1,1,6,7],[465,1,1,7,8],[469,1,1,8,9]]],[18,4,4,9,13,[[514,1,1,9,10],[596,2,2,10,12],[621,1,1,12,13]]],[19,1,1,13,14,[[631,1,1,13,14]]],[20,1,1,14,15,[[669,1,1,14,15]]],[22,1,1,15,16,[[707,1,1,15,16]]],[23,2,2,16,18,[[752,1,1,16,17],[757,1,1,17,18]]],[32,1,1,18,19,[[893,1,1,18,19]]]],[8299,8487,9261,11498,11989,12993,13124,13572,13703,14486,15935,15937,16309,16505,17523,18198,19166,19290,22590]]],["beyond",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7766]]],["brought",[2,2,[[25,2,2,0,2,[[848,2,2,0,2]]]],[21682,21683]]],["by",[29,28,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,3,2,1,3,[[82,2,1,1,2],[83,1,1,2,3]]],[4,2,2,3,5,[[154,1,1,3,4],[181,1,1,4,5]]],[5,1,1,5,6,[[202,1,1,5,6]]],[7,1,1,6,7,[[235,1,1,6,7]]],[8,1,1,7,8,[[251,1,1,7,8]]],[10,3,3,8,11,[[303,1,1,8,9],[309,1,1,9,10],[310,1,1,10,11]]],[11,4,4,11,15,[[316,1,1,11,12],[318,2,2,12,14],[326,1,1,14,15]]],[13,1,1,15,16,[[391,1,1,15,16]]],[18,4,4,16,20,[[525,1,1,16,17],[557,1,1,17,18],[566,1,1,18,19],[606,1,1,19,20]]],[19,1,1,20,21,[[653,1,1,20,21]]],[25,4,4,21,25,[[806,1,1,21,22],[817,2,2,22,24],[837,1,1,24,25]]],[29,1,1,25,26,[[886,1,1,25,26]]],[34,1,1,26,27,[[905,1,1,26,27]]],[35,1,1,27,28,[[908,1,1,27,28]]]],[1111,2495,2502,4946,5695,6271,7191,7604,9209,9398,9447,9611,9700,9704,9905,11722,14638,15210,15367,16140,17158,20560,20777,20787,21393,22483,22778,22826]]],["came",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5695]]],["charged",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5530]]],["come",[5,4,[[0,1,1,0,1,[[17,1,1,0,1]]],[3,3,2,1,3,[[121,2,1,1,2],[122,1,1,2,3]]],[17,1,1,3,4,[[448,1,1,3,4]]]],[429,3806,3828,13166]]],["cometh",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3822]]],["current",[1,1,[[0,1,1,0,1,[[22,1,1,0,1]]]],[587]]],["delivered",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15223]]],["enter",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5691]]],["escape",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16286]]],["fail",[2,2,[[16,2,2,0,2,[[434,2,2,0,2]]]],[12861,12862]]],["forth",[2,2,[[13,1,1,0,1,[[387,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]]],[11633,18183]]],["gendereth",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13365]]],["go",[11,10,[[2,1,1,0,1,[[115,1,1,0,1]]],[3,3,2,1,3,[[147,2,1,1,2],[148,1,1,2,3]]],[4,4,4,3,7,[[158,1,1,3,4],[163,2,2,4,6],[182,1,1,6,7]]],[7,1,1,7,8,[[233,1,1,7,8]]],[17,1,1,8,9,[[456,1,1,8,9]]],[25,1,1,9,10,[[815,1,1,9,10]]]],[3530,4687,4739,5087,5216,5219,5721,7157,13384,20748]]],["goeth",[4,4,[[17,1,1,0,1,[[444,1,1,0,1]]],[18,1,1,1,2,[[565,1,1,1,2]]],[23,2,2,2,4,[[793,1,1,2,3],[794,1,1,3,4]]]],[13062,15324,20144,20179]]],["gone",[7,7,[[3,1,1,0,1,[[129,1,1,0,1]]],[18,4,4,1,5,[[519,2,2,1,3],[601,2,2,3,5]]],[21,1,1,5,6,[[675,1,1,5,6]]],[29,1,1,6,7,[[886,1,1,6,7]]]],[4107,14559,14562,16106,16107,17604,22486]]],["in",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2465]]],["laid",[1,1,[[31,1,1,0,1,[[891,1,1,0,1]]]],[22564]]],["meddleth",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17158]]],["more",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15027]]],["on",[26,20,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[66,1,1,1,2]]],[3,2,1,2,3,[[150,2,1,2,3]]],[5,4,3,3,6,[[192,3,2,3,5],[201,1,1,5,6]]],[6,1,1,6,7,[[229,1,1,6,7]]],[8,6,4,7,11,[[244,2,1,7,8],[250,1,1,8,9],[260,1,1,9,10],[264,2,1,10,11]]],[9,7,5,11,16,[[281,3,2,11,13],[285,2,1,13,14],[286,1,1,14,15],[290,1,1,15,16]]],[11,1,1,16,17,[[316,1,1,16,17]]],[15,1,1,17,18,[[414,1,1,17,18]]],[19,2,2,18,20,[[649,1,1,18,19],[654,1,1,19,20]]]],[429,1988,4820,5956,5957,6212,7038,7418,7572,7880,7969,8407,8422,8551,8567,8712,9634,12321,17018,17181]]],["out",[1,1,[[25,1,1,0,1,[[836,1,1,0,1]]]],[21351]]],["over",[105,94,[[0,3,3,0,3,[[31,1,1,0,1],[32,2,2,1,3]]],[1,2,1,3,4,[[64,2,1,3,4]]],[3,3,3,4,7,[[148,3,3,4,7]]],[4,11,10,7,17,[[154,1,1,7,8],[155,3,3,8,11],[156,2,2,11,13],[161,1,1,13,14],[179,1,1,14,15],[183,2,1,15,16],[186,1,1,16,17]]],[5,19,17,17,34,[[188,1,1,17,18],[189,5,5,18,23],[190,10,8,23,31],[191,1,1,31,32],[204,1,1,32,33],[208,1,1,33,34]]],[6,10,10,34,44,[[213,1,1,34,35],[216,1,1,35,36],[218,1,1,36,37],[219,1,1,37,38],[221,2,2,38,40],[222,3,3,40,43],[229,1,1,43,44]]],[8,8,8,44,52,[[249,5,5,44,49],[261,2,2,49,51],[262,1,1,51,52]]],[9,16,12,52,64,[[268,2,2,52,54],[281,5,2,54,56],[282,1,1,56,57],[283,2,2,57,59],[285,6,5,59,64]]],[11,4,4,64,68,[[314,3,3,64,67],[320,1,1,67,68]]],[12,1,1,68,69,[[356,1,1,68,69]]],[15,1,1,69,70,[[414,1,1,69,70]]],[18,2,2,70,72,[[515,1,1,70,71],[581,1,1,71,72]]],[22,16,14,72,86,[[686,1,1,72,73],[688,1,1,73,74],[694,1,1,74,75],[701,3,3,75,78],[706,1,1,78,79],[709,1,1,79,80],[713,1,1,80,81],[718,1,1,81,82],[723,2,1,82,83],[725,1,1,83,84],[729,3,2,84,86]]],[23,4,4,86,90,[[746,1,1,86,87],[749,1,1,87,88],[785,1,1,88,89],[792,1,1,89,90]]],[25,2,1,90,91,[[848,2,1,90,91]]],[26,1,1,91,92,[[860,1,1,91,92]]],[27,1,1,92,93,[[871,1,1,92,93]]],[34,1,1,93,94,[[903,1,1,93,94]]]],[944,963,974,1936,4745,4748,4750,4956,4993,5000,5003,5018,5026,5160,5588,5731,5843,5892,5894,5899,5904,5909,5910,5915,5917,5918,5920,5921,5922,5923,5933,5935,6306,6445,6596,6687,6723,6780,6858,6861,6870,6872,6874,7036,7509,7512,7514,7516,7531,7918,7927,7932,8057,8064,8411,8412,8435,8465,8469,8529,8542,8548,8549,8550,9559,9560,9565,9748,10924,12314,14494,15580,17815,17879,17977,18079,18083,18089,18183,18259,18328,18447,18575,18601,18683,18696,18975,19080,19967,20112,21684,22076,22236,22742]]],["overcome",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19493]]],["overpass",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19086]]],["overpast",[2,2,[[18,1,1,0,1,[[534,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]]],[14769,18150]]],["overrunning",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22692]]],["partition",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8917]]],["pass",[50,49,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,1,1,1,2,[[82,1,1,1,2]]],[3,6,6,2,8,[[136,2,2,2,4],[137,2,2,4,6],[143,2,2,6,8]]],[4,2,2,8,10,[[154,2,2,8,10]]],[5,1,1,10,11,[[187,1,1,10,11]]],[6,3,3,11,14,[[221,3,3,11,14]]],[8,2,2,14,16,[[251,2,2,14,16]]],[10,1,1,16,17,[[308,1,1,16,17]]],[13,1,1,17,18,[[399,1,1,17,18]]],[15,1,1,18,19,[[414,1,1,18,19]]],[17,2,2,19,21,[[449,1,1,19,20],[454,1,1,20,21]]],[18,1,1,21,22,[[625,1,1,21,22]]],[19,3,3,22,25,[[631,1,1,22,23],[635,1,1,23,24],[646,1,1,24,25]]],[22,2,2,25,27,[[686,1,1,25,26],[711,1,1,26,27]]],[23,5,5,27,32,[[749,1,1,27,28],[759,1,1,28,29],[766,1,1,29,30],[777,1,1,30,31],[795,1,1,31,32]]],[25,9,8,32,40,[[806,2,2,32,34],[815,1,1,34,35],[821,2,2,35,37],[830,2,1,37,38],[838,1,1,38,39],[847,1,1,39,40]]],[29,3,3,40,43,[[883,2,2,40,42],[885,1,1,42,43]]],[32,1,1,43,44,[[894,1,1,43,44]]],[35,1,1,44,45,[[907,1,1,44,45]]],[37,4,4,45,49,[[913,1,1,45,46],[919,1,1,46,47],[920,1,1,47,48],[923,1,1,48,49]]]],[184,2492,4328,4329,4362,4363,4561,4562,4965,4968,5865,6846,6848,6849,7603,7605,9347,11914,12321,13186,13305,16377,16505,16631,16936,17828,18300,19080,19329,19462,19788,20255,20547,20563,20746,20926,20932,21194,21399,21676,22428,22440,22472,22608,22807,22916,23007,23027,23061]]],["passage",[1,1,[[3,1,1,0,1,[[136,1,1,0,1]]]],[4332]]],["passed",[26,26,[[0,1,1,0,1,[[14,1,1,0,1]]],[3,1,1,1,2,[[136,1,1,1,2]]],[4,1,1,2,3,[[154,1,1,2,3]]],[5,8,8,3,11,[[189,2,2,3,5],[196,3,3,5,8],[201,1,1,8,9],[204,1,1,9,10],[210,1,1,10,11]]],[6,1,1,11,12,[[228,1,1,11,12]]],[10,1,1,12,13,[[309,1,1,12,13]]],[11,1,1,13,14,[[316,1,1,13,14]]],[17,1,1,14,15,[[450,1,1,14,15]]],[18,1,1,15,16,[[495,1,1,15,16]]],[22,2,2,16,18,[[688,1,1,16,17],[719,1,1,17,18]]],[23,4,4,18,22,[[755,1,1,18,19],[778,2,2,19,21],[790,1,1,21,22]]],[25,2,2,22,24,[[817,2,2,22,24]]],[31,1,1,24,25,[[890,1,1,24,25]]],[33,1,1,25,26,[[902,1,1,25,26]]]],[377,4328,4946,5897,5910,6093,6095,6098,6209,6311,6493,7006,9406,9611,13222,14130,17878,18454,19241,19819,19820,20062,20768,20770,22551,22731]]],["passengers",[3,2,[[25,3,2,0,2,[[840,3,2,0,2]]]],[21459,21463]]],["passest",[1,1,[[4,1,1,0,1,[[155,1,1,0,1]]]],[4996]]],["passeth",[12,12,[[1,2,2,0,2,[[79,2,2,0,2]]],[2,1,1,2,3,[[116,1,1,2,3]]],[10,1,1,3,4,[[299,1,1,3,4]]],[11,1,1,4,5,[[324,1,1,4,5]]],[13,1,1,5,6,[[373,1,1,5,6]]],[17,1,1,6,7,[[472,1,1,6,7]]],[18,1,1,7,8,[[580,1,1,7,8]]],[19,1,1,8,9,[[637,1,1,8,9]]],[23,2,2,9,11,[[762,1,1,9,10],[763,1,1,10,11]]],[35,1,1,11,12,[[907,1,1,11,12]]]],[2395,2396,3602,9059,9854,11345,13790,15565,16681,19400,19415,22820]]],["passing",[4,4,[[6,1,1,0,1,[[229,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]],[18,1,1,2,3,[[561,1,1,2,3]]],[25,1,1,3,4,[[840,1,1,3,4]]]],[7042,8413,15265,21462]]],["past",[9,9,[[0,1,1,0,1,[[49,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[9,2,2,2,4,[[277,1,1,2,3],[282,1,1,3,4]]],[10,1,1,4,5,[[308,1,1,4,5]]],[17,1,1,5,6,[[452,1,1,5,6]]],[18,1,1,6,7,[[567,1,1,6,7]]],[21,1,1,7,8,[[672,1,1,7,8]]],[23,1,1,8,9,[[752,1,1,8,9]]]],[1510,4362,8286,8427,9370,13271,15382,17565,19173]]],["perish",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13748]]],["rageth",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16788]]],["raiser",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22056]]],["removed",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1441]]],["smelling",[2,2,[[21,2,2,0,2,[[675,2,2,0,2]]]],[17603,17611]]],["sound",[2,1,[[2,2,1,0,1,[[114,2,1,0,1]]]],[3478]]],["speedily",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8465]]],["taken",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12819]]],["through",[53,49,[[0,2,2,0,2,[[11,1,1,0,1],[29,1,1,1,2]]],[1,2,2,2,4,[[61,2,2,2,4]]],[2,1,1,4,5,[[107,1,1,4,5]]],[3,5,5,5,10,[[130,1,1,5,6],[136,3,3,6,9],[149,1,1,9,10]]],[4,3,3,10,13,[[154,2,2,10,12],[170,1,1,12,13]]],[5,1,1,13,14,[[204,1,1,13,14]]],[8,4,1,14,15,[[244,4,1,14,15]]],[9,1,1,15,16,[[286,1,1,15,16]]],[11,4,4,16,20,[[328,1,1,16,17],[329,1,1,17,18],[333,1,1,18,19],[335,1,1,19,20]]],[15,1,1,20,21,[[421,1,1,20,21]]],[18,3,3,21,24,[[485,1,1,21,22],[555,1,1,22,23],[613,1,1,23,24]]],[22,8,7,24,31,[[701,1,1,24,25],[706,2,2,25,27],[712,1,1,27,28],[721,1,1,28,29],[738,1,1,29,30],[740,2,1,30,31]]],[23,4,4,31,35,[[746,1,1,31,32],[753,2,2,32,34],[776,1,1,34,35]]],[24,1,1,35,36,[[800,1,1,35,36]]],[25,7,7,36,43,[[810,1,1,36,37],[815,1,1,37,38],[817,1,1,38,39],[821,1,1,39,40],[824,1,1,40,41],[834,1,1,41,42],[840,1,1,42,43]]],[26,1,1,43,44,[[860,1,1,43,44]]],[28,1,1,44,45,[[878,1,1,44,45]]],[32,2,2,45,47,[[894,1,1,45,46],[897,1,1,46,47]]],[33,2,2,47,49,[[900,2,2,47,49]]]],[304,862,1828,1839,3272,4115,4328,4330,4331,4768,4942,4966,5394,6302,7395,8568,9966,10000,10125,10175,12522,14020,15126,16210,18087,18179,18182,18313,18507,18836,18864,18971,19185,19187,19766,20441,20626,20746,20783,20921,21044,21308,21463,22046,22360,22608,22641,22696,22699]]],["took",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11990]]],["toward",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6206]]],["transgress",[4,4,[[8,1,1,0,1,[[237,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]],[18,1,1,2,3,[[494,1,1,2,3]]],[23,1,1,3,4,[[746,1,1,3,4]]]],[7264,11697,14106,18985]]],["transgressed",[4,4,[[4,1,1,0,1,[[178,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]],[27,2,2,2,4,[[867,1,1,2,3],[869,1,1,3,4]]]],[5579,18100,22174,22195]]],["transgressest",[1,1,[[16,1,1,0,1,[[428,1,1,0,1]]]],[12750]]],["transgressing",[1,1,[[4,1,1,0,1,[[169,1,1,0,1]]]],[5366]]],["transgressors",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17151]]],["translate",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8091]]],["way",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12779]]],["went",[11,11,[[0,2,2,0,2,[[31,1,1,0,1],[40,1,1,1,2]]],[1,1,1,2,3,[[87,1,1,2,3]]],[3,1,1,3,4,[[138,1,1,3,4]]],[5,1,1,4,5,[[189,1,1,4,5]]],[6,1,1,5,6,[[222,1,1,5,6]]],[10,2,2,6,8,[[312,2,2,6,8]]],[13,1,1,8,9,[[384,1,1,8,9]]],[18,1,1,9,10,[[543,1,1,9,10]]],[19,1,1,10,11,[[651,1,1,10,11]]]],[949,1241,2659,4401,5895,6870,9504,9516,11565,14879,17109]]],["wroth",[5,5,[[4,1,1,0,1,[[155,1,1,0,1]]],[18,4,4,1,5,[[555,3,3,1,4],[566,1,1,4,5]]]],[5001,15134,15172,15175,15364]]]]},{"k":"H5675","v":[["*",[14,12,[[14,14,12,0,12,[[406,5,5,0,5],[407,3,2,5,7],[408,4,3,7,10],[409,2,2,10,12]]]],[12120,12121,12126,12127,12130,12137,12140,12157,12159,12164,12194,12198]]],["beyond",[7,6,[[14,7,6,0,6,[[406,2,2,0,2],[408,3,2,2,4],[409,2,2,4,6]]]],[12127,12130,12157,12159,12194,12198]]],["side",[7,6,[[14,7,6,0,6,[[406,3,3,0,3],[407,3,2,3,5],[408,1,1,5,6]]]],[12120,12121,12126,12137,12140,12164]]]]},{"k":"H5676","v":[["*",[90,83,[[0,2,2,0,2,[[49,2,2,0,2]]],[1,4,4,2,6,[[74,1,1,2,3],[77,1,1,3,4],[81,1,1,4,5],[88,1,1,5,6]]],[3,7,6,6,12,[[137,1,1,6,7],[138,1,1,7,8],[148,3,2,8,10],[150,1,1,10,11],[151,1,1,11,12]]],[4,12,11,12,23,[[153,2,2,12,14],[155,3,3,14,17],[156,4,4,17,21],[163,1,1,21,22],[182,2,1,22,23]]],[5,23,23,23,46,[[187,2,2,23,25],[188,1,1,25,26],[191,1,1,26,27],[193,1,1,27,28],[195,2,2,28,30],[198,2,2,30,32],[199,3,3,32,35],[200,1,1,35,36],[203,1,1,36,37],[204,1,1,37,38],[206,1,1,38,39],[208,2,2,39,41],[210,5,5,41,46]]],[6,4,4,46,50,[[215,1,1,46,47],[217,1,1,47,48],[220,1,1,48,49],[221,1,1,49,50]]],[8,8,5,50,55,[[249,5,3,50,53],[261,1,1,53,54],[266,2,1,54,55]]],[9,1,1,55,56,[[276,1,1,55,56]]],[10,7,5,56,61,[[294,4,2,56,58],[297,2,2,58,60],[304,1,1,60,61]]],[12,4,4,61,65,[[343,1,1,61,62],[349,1,1,62,63],[356,1,1,63,64],[363,1,1,64,65]]],[13,1,1,65,66,[[386,1,1,65,66]]],[14,1,1,66,67,[[410,1,1,66,67]]],[15,3,3,67,70,[[414,2,2,67,69],[415,1,1,69,70]]],[17,1,1,70,71,[[436,1,1,70,71]]],[22,4,4,71,75,[[685,1,1,71,72],[687,1,1,72,73],[696,1,1,73,74],[725,1,1,74,75]]],[23,4,4,75,79,[[766,1,1,75,76],[769,1,1,76,77],[792,1,1,77,78],[793,1,1,78,79]]],[25,3,3,79,82,[[802,2,2,79,81],[811,1,1,81,82]]],[35,1,1,82,83,[[908,1,1,82,83]]]],[1516,1517,2232,2319,2453,2683,4353,4376,4737,4750,4831,4859,4893,4897,4983,4995,5000,5045,5050,5051,5053,5238,5721,5865,5866,5879,5935,5983,6038,6047,6131,6137,6162,6181,6186,6190,6280,6300,6380,6430,6433,6478,6479,6484,6490,6491,6640,6719,6819,6847,7509,7512,7548,7918,8016,8256,8856,8868,8954,8964,9233,10532,10757,10923,11107,11589,12237,12314,12316,12334,12888,17802,17830,17998,18614,19474,19556,20108,20159,20473,20476,20655,22830]]],["+",[33,30,[[1,1,1,0,1,[[74,1,1,0,1]]],[3,7,6,1,7,[[137,1,1,1,2],[138,1,1,2,3],[148,3,2,3,5],[150,1,1,5,6],[151,1,1,6,7]]],[4,2,1,7,8,[[182,2,1,7,8]]],[5,5,5,8,13,[[199,1,1,8,9],[200,1,1,9,10],[204,1,1,10,11],[206,1,1,11,12],[210,1,1,12,13]]],[6,1,1,13,14,[[217,1,1,13,14]]],[8,3,2,14,16,[[249,3,2,14,16]]],[9,1,1,16,17,[[276,1,1,16,17]]],[10,3,3,17,20,[[294,1,1,17,18],[297,1,1,18,19],[304,1,1,19,20]]],[12,4,4,20,24,[[343,1,1,20,21],[349,1,1,21,22],[356,1,1,22,23],[363,1,1,23,24]]],[13,1,1,24,25,[[386,1,1,24,25]]],[17,1,1,25,26,[[436,1,1,25,26]]],[22,1,1,26,27,[[696,1,1,26,27]]],[23,1,1,27,28,[[766,1,1,27,28]]],[25,1,1,28,29,[[811,1,1,28,29]]],[35,1,1,29,30,[[908,1,1,29,30]]]],[2232,4353,4376,4737,4750,4831,4859,5721,6186,6190,6300,6380,6479,6719,7509,7512,8256,8856,8964,9233,10532,10757,10923,11107,11589,12888,17998,19474,20655,22830]]],["beyond",[12,12,[[0,2,2,0,2,[[49,2,2,0,2]]],[4,2,2,2,4,[[155,2,2,2,4]]],[5,2,2,4,6,[[195,1,1,4,5],[199,1,1,5,6]]],[6,1,1,6,7,[[215,1,1,6,7]]],[15,2,2,7,9,[[414,2,2,7,9]]],[22,2,2,9,11,[[685,1,1,9,10],[687,1,1,10,11]]],[23,1,1,11,12,[[769,1,1,11,12]]]],[1516,1517,4995,5000,6047,6162,6640,12314,12316,17802,17830,19556]]],["by",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8954]]],["quarter",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18614]]],["side",[37,34,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[4,8,8,2,10,[[153,2,2,2,4],[155,1,1,4,5],[156,4,4,5,9],[163,1,1,9,10]]],[5,16,16,10,26,[[187,2,2,10,12],[188,1,1,12,13],[191,1,1,13,14],[193,1,1,14,15],[195,1,1,15,16],[198,2,2,16,18],[199,1,1,18,19],[203,1,1,19,20],[208,2,2,20,22],[210,4,4,22,26]]],[6,2,2,26,28,[[220,1,1,26,27],[221,1,1,27,28]]],[8,5,3,28,31,[[249,2,1,28,29],[261,1,1,29,30],[266,2,1,30,31]]],[10,2,1,31,32,[[294,2,1,31,32]]],[14,1,1,32,33,[[410,1,1,32,33]]],[15,1,1,33,34,[[415,1,1,33,34]]]],[2319,2683,4893,4897,4983,5045,5050,5051,5053,5238,5865,5866,5879,5935,5983,6038,6131,6137,6181,6280,6430,6433,6478,6484,6490,6491,6819,6847,7548,7918,8016,8868,12237,12334]]],["sides",[4,4,[[1,1,1,0,1,[[81,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]],[23,2,2,2,4,[[792,1,1,2,3],[793,1,1,3,4]]]],[2453,8868,20108,20159]]],["straight",[2,2,[[25,2,2,0,2,[[802,2,2,0,2]]]],[20473,20476]]]]},{"k":"H5677","v":[["*",[15,15,[[0,7,7,0,7,[[9,3,3,0,3],[10,4,4,3,7]]],[3,1,1,7,8,[[140,1,1,7,8]]],[12,6,6,8,14,[[338,3,3,8,11],[342,1,1,11,12],[345,2,2,12,14]]],[15,1,1,14,15,[[424,1,1,14,15]]]],[255,258,259,280,281,282,283,4470,10270,10271,10277,10441,10587,10597,12644]]],["Eber",[13,13,[[0,7,7,0,7,[[9,3,3,0,3],[10,4,4,3,7]]],[3,1,1,7,8,[[140,1,1,7,8]]],[12,4,4,8,12,[[338,3,3,8,11],[345,1,1,11,12]]],[15,1,1,12,13,[[424,1,1,12,13]]]],[255,258,259,280,281,282,283,4470,10270,10271,10277,10587,12644]]],["Heber",[2,2,[[12,2,2,0,2,[[342,1,1,0,1],[345,1,1,1,2]]]],[10441,10597]]]]},{"k":"H5678","v":[["*",[34,34,[[0,1,1,0,1,[[48,1,1,0,1]]],[17,2,2,1,3,[[456,1,1,1,2],[475,1,1,2,3]]],[18,5,5,3,8,[[484,1,1,3,4],[555,1,1,4,5],[562,1,1,5,6],[567,2,2,6,8]]],[19,5,5,8,13,[[638,2,2,8,10],[641,1,1,10,11],[648,1,1,11,12],[649,1,1,12,13]]],[22,6,6,13,19,[[687,1,1,13,14],[688,1,1,14,15],[691,2,2,15,17],[692,1,1,17,18],[694,1,1,18,19]]],[23,2,2,19,21,[[751,1,1,19,20],[792,1,1,20,21]]],[24,2,2,21,23,[[798,1,1,21,22],[799,1,1,22,23]]],[25,5,5,23,28,[[808,1,1,23,24],[822,1,1,24,25],[823,2,2,25,27],[839,1,1,27,28]]],[27,2,2,28,30,[[866,1,1,28,29],[874,1,1,29,30]]],[29,1,1,30,31,[[879,1,1,30,31]]],[34,1,1,31,32,[[905,1,1,31,32]]],[35,2,2,32,34,[[906,2,2,32,34]]]],[1480,13385,13875,14001,15162,15274,15387,15389,16692,16711,16807,17008,17023,17848,17856,17915,17919,17934,17975,19148,20110,20334,20355,20596,20975,20997,21007,21444,22162,22277,22375,22776,22802,22805]]],["anger",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17023]]],["rage",[2,2,[[17,1,1,0,1,[[475,1,1,0,1]]],[18,1,1,1,2,[[484,1,1,1,2]]]],[13875,14001]]],["wrath",[31,31,[[0,1,1,0,1,[[48,1,1,0,1]]],[17,1,1,1,2,[[456,1,1,1,2]]],[18,4,4,2,6,[[555,1,1,2,3],[562,1,1,3,4],[567,2,2,4,6]]],[19,4,4,6,10,[[638,2,2,6,8],[641,1,1,8,9],[648,1,1,9,10]]],[22,6,6,10,16,[[687,1,1,10,11],[688,1,1,11,12],[691,2,2,12,14],[692,1,1,14,15],[694,1,1,15,16]]],[23,2,2,16,18,[[751,1,1,16,17],[792,1,1,17,18]]],[24,2,2,18,20,[[798,1,1,18,19],[799,1,1,19,20]]],[25,5,5,20,25,[[808,1,1,20,21],[822,1,1,21,22],[823,2,2,22,24],[839,1,1,24,25]]],[27,2,2,25,27,[[866,1,1,25,26],[874,1,1,26,27]]],[29,1,1,27,28,[[879,1,1,27,28]]],[34,1,1,28,29,[[905,1,1,28,29]]],[35,2,2,29,31,[[906,2,2,29,31]]]],[1480,13385,15162,15274,15387,15389,16692,16711,16807,17008,17848,17856,17915,17919,17934,17975,19148,20110,20334,20355,20596,20975,20997,21007,21444,22162,22277,22375,22776,22802,22805]]]]},{"k":"H5679","v":[["boat",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8529]]]]},{"k":"H5680","v":[["*",[34,32,[[0,6,6,0,6,[[13,1,1,0,1],[38,2,2,1,3],[39,1,1,3,4],[40,1,1,4,5],[42,1,1,5,6]]],[1,14,14,6,20,[[50,3,3,6,9],[51,4,4,9,13],[52,1,1,13,14],[54,1,1,14,15],[56,1,1,15,16],[58,2,2,16,18],[59,1,1,18,19],[70,1,1,19,20]]],[4,2,1,20,21,[[167,2,1,20,21]]],[8,8,8,21,29,[[239,2,2,21,23],[248,3,3,23,26],[249,2,2,26,28],[264,1,1,28,29]]],[23,3,2,29,31,[[778,3,2,29,31]]],[31,1,1,31,32,[[889,1,1,31,32]]]],[349,1163,1166,1187,1207,1322,1547,1548,1551,1560,1561,1565,1567,1597,1635,1701,1743,1755,1780,2079,5331,7303,7306,7488,7492,7504,7519,7529,7970,19810,19815,22540]]],["+",[3,3,[[0,1,1,0,1,[[38,1,1,0,1]]],[1,2,2,1,3,[[51,2,2,1,3]]]],[1163,1560,1565]]],["Hebrew",[8,8,[[0,3,3,0,3,[[13,1,1,0,1],[38,1,1,1,2],[40,1,1,2,3]]],[1,2,2,3,5,[[50,1,1,3,4],[70,1,1,4,5]]],[23,2,2,5,7,[[778,2,2,5,7]]],[31,1,1,7,8,[[889,1,1,7,8]]]],[349,1166,1207,1547,2079,19810,19815,22540]]],["Hebrewess",[1,1,[[23,1,1,0,1,[[778,1,1,0,1]]]],[19810]]],["Hebrews",[17,17,[[0,2,2,0,2,[[39,1,1,0,1],[42,1,1,1,2]]],[1,7,7,2,9,[[51,1,1,2,3],[52,1,1,3,4],[54,1,1,4,5],[56,1,1,5,6],[58,2,2,6,8],[59,1,1,8,9]]],[8,8,8,9,17,[[239,2,2,9,11],[248,3,3,11,14],[249,2,2,14,16],[264,1,1,16,17]]]],[1187,1322,1567,1597,1635,1701,1743,1755,1780,7303,7306,7488,7492,7504,7519,7529,7970]]],["man",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5331]]],["woman",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5331]]],["women",[3,3,[[1,3,3,0,3,[[50,2,2,0,2],[51,1,1,2,3]]]],[1548,1551,1561]]]]},{"k":"H5681","v":[["Ibri",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11042]]]]},{"k":"H5682","v":[["Abarim",[4,4,[[3,3,3,0,3,[[143,1,1,0,1],[149,2,2,1,3]]],[4,1,1,3,4,[[184,1,1,3,4]]]],[4566,4807,4808,5807]]]]},{"k":"H5683","v":[["Hebron",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6349]]]]},{"k":"H5684","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4794,4795]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4795]]],["Ebronah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4794]]]]},{"k":"H5685","v":[["rotten",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22308]]]]},{"k":"H5686","v":[["up",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22667]]]]},{"k":"H5687","v":[["thick",[4,4,[[2,1,1,0,1,[[112,1,1,0,1]]],[15,1,1,1,2,[[420,1,1,1,2]]],[25,2,2,2,4,[[807,1,1,2,3],[821,1,1,3,4]]]],[3442,12508,20576,20923]]]]},{"k":"H5688","v":[["*",[24,23,[[1,8,7,0,7,[[77,5,4,0,4],[88,3,3,4,7]]],[6,4,4,7,11,[[225,2,2,7,9],[226,2,2,9,11]]],[17,1,1,11,12,[[474,1,1,11,12]]],[18,3,3,12,15,[[479,1,1,12,13],[595,1,1,13,14],[606,1,1,14,15]]],[22,1,1,15,16,[[683,1,1,15,16]]],[25,6,6,16,22,[[804,1,1,16,17],[805,1,1,17,18],[820,1,1,18,19],[832,3,3,19,22]]],[27,1,1,22,23,[[872,1,1,22,23]]]],[2307,2315,2317,2318,2679,2681,2682,6942,6943,6960,6961,13844,13948,15896,16136,17757,20527,20537,20892,21233,21240,21244,22244]]],["band",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13844]]],["bands",[3,3,[[25,2,2,0,2,[[804,1,1,0,1],[805,1,1,1,2]]],[27,1,1,2,3,[[872,1,1,2,3]]]],[20527,20537,22244]]],["boughs",[3,3,[[25,3,3,0,3,[[832,3,3,0,3]]]],[21233,21240,21244]]],["branches",[1,1,[[25,1,1,0,1,[[820,1,1,0,1]]]],[20892]]],["chains",[2,2,[[1,2,2,0,2,[[88,2,2,0,2]]]],[2681,2682]]],["cords",[5,5,[[6,2,2,0,2,[[225,2,2,0,2]]],[18,3,3,2,5,[[479,1,1,2,3],[595,1,1,3,4],[606,1,1,4,5]]]],[6942,6943,13948,15896,16136]]],["rope",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17757]]],["ropes",[2,2,[[6,2,2,0,2,[[226,2,2,0,2]]]],[6960,6961]]],["wreathen",[6,5,[[1,6,5,0,5,[[77,5,4,0,4],[88,1,1,4,5]]]],[2307,2315,2317,2318,2679]]]]},{"k":"H5689","v":[["*",[7,7,[[23,1,1,0,1,[[748,1,1,0,1]]],[25,6,6,1,7,[[824,6,6,1,7]]]],[19057,21012,21014,21016,21019,21023,21027]]],["doted",[6,6,[[25,6,6,0,6,[[824,6,6,0,6]]]],[21012,21014,21016,21019,21023,21027]]],["lovers",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19057]]]]},{"k":"H5690","v":[["*",[2,2,[[25,2,2,0,2,[[834,2,2,0,2]]]],[21311,21312]]],["love",[1,1,[[25,1,1,0,1,[[834,1,1,0,1]]]],[21311]]],["lovely",[1,1,[[25,1,1,0,1,[[834,1,1,0,1]]]],[21312]]]]},{"k":"H5691","v":[["love",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21018]]]]},{"k":"H5692","v":[["*",[7,7,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[3,1,1,2,3,[[127,1,1,2,3]]],[10,2,2,3,5,[[307,1,1,3,4],[309,1,1,4,5]]],[25,1,1,5,6,[[805,1,1,5,6]]],[27,1,1,6,7,[[868,1,1,6,7]]]],[430,1855,4032,9330,9393,20541,22186]]],["cake",[3,3,[[10,2,2,0,2,[[307,1,1,0,1],[309,1,1,1,2]]],[27,1,1,2,3,[[868,1,1,2,3]]]],[9330,9393,22186]]],["cakes",[3,3,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[25,1,1,2,3,[[805,1,1,2,3]]]],[1855,4032,20541]]],["hearth",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[430]]]]},{"k":"H5693","v":[["swallow",[2,2,[[22,1,1,0,1,[[716,1,1,0,1]]],[23,1,1,1,2,[[752,1,1,1,2]]]],[18404,19160]]]]},{"k":"H5694","v":[["earrings",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[4714,20774]]]]},{"k":"H5695","v":[["*",[35,35,[[1,6,6,0,6,[[81,6,6,0,6]]],[2,3,3,6,9,[[98,3,3,6,9]]],[4,2,2,9,11,[[161,2,2,9,11]]],[8,1,1,11,12,[[263,1,1,11,12]]],[10,2,2,12,14,[[302,2,2,12,14]]],[11,2,2,14,16,[[322,1,1,14,15],[329,1,1,15,16]]],[13,2,2,16,18,[[377,1,1,16,17],[379,1,1,17,18]]],[15,1,1,18,19,[[421,1,1,18,19]]],[18,3,3,19,22,[[506,1,1,19,20],[545,1,1,20,21],[583,1,1,21,22]]],[22,2,2,22,24,[[689,1,1,22,23],[705,1,1,23,24]]],[23,4,4,24,28,[[775,1,1,24,25],[778,2,2,25,27],[790,1,1,27,28]]],[25,1,1,28,29,[[802,1,1,28,29]]],[27,3,3,29,32,[[869,2,2,29,31],[874,1,1,31,32]]],[29,1,1,32,33,[[884,1,1,32,33]]],[32,1,1,33,34,[[898,1,1,33,34]]],[38,1,1,34,35,[[928,1,1,34,35]]]],[2442,2446,2457,2458,2462,2473,2955,2956,2961,5173,5178,7966,9179,9183,9822,9999,11429,11461,12529,14314,14930,15670,17890,18161,19709,19819,19820,20066,20471,22199,22200,22268,22454,22654,23140]]],["bullock",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19709]]],["bullocks",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20066]]],["calf",[21,21,[[1,6,6,0,6,[[81,6,6,0,6]]],[2,3,3,6,9,[[98,3,3,6,9]]],[4,2,2,9,11,[[161,2,2,9,11]]],[8,1,1,11,12,[[263,1,1,11,12]]],[15,1,1,12,13,[[421,1,1,12,13]]],[18,2,2,13,15,[[506,1,1,13,14],[583,1,1,14,15]]],[22,2,2,15,17,[[689,1,1,15,16],[705,1,1,16,17]]],[23,2,2,17,19,[[778,2,2,17,19]]],[27,2,2,19,21,[[869,2,2,19,21]]]],[2442,2446,2457,2458,2462,2473,2955,2956,2961,5173,5178,7966,12529,14314,15670,17890,18161,19819,19820,22199,22200]]],["calf's",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20471]]],["calves",[11,11,[[10,2,2,0,2,[[302,2,2,0,2]]],[11,2,2,2,4,[[322,1,1,2,3],[329,1,1,3,4]]],[13,2,2,4,6,[[377,1,1,4,5],[379,1,1,5,6]]],[18,1,1,6,7,[[545,1,1,6,7]]],[27,1,1,7,8,[[874,1,1,7,8]]],[29,1,1,8,9,[[884,1,1,8,9]]],[32,1,1,9,10,[[898,1,1,9,10]]],[38,1,1,10,11,[[928,1,1,10,11]]]],[9179,9183,9822,9999,11429,11461,14930,22268,22454,22654,23140]]]]},{"k":"H5696","v":[["round",[6,5,[[10,5,4,0,4,[[297,4,3,0,3],[300,1,1,3,4]]],[13,1,1,4,5,[[370,1,1,4,5]]]],[8957,8965,8969,9098,11248]]]]},{"k":"H5697","v":[["*",[14,13,[[0,1,1,0,1,[[14,1,1,0,1]]],[4,4,3,1,4,[[173,4,3,1,4]]],[6,1,1,4,5,[[224,1,1,4,5]]],[8,1,1,5,6,[[251,1,1,5,6]]],[22,2,2,6,8,[[685,1,1,6,7],[693,1,1,7,8]]],[23,3,3,8,11,[[790,1,1,8,9],[792,1,1,9,10],[794,1,1,10,11]]],[27,2,2,11,13,[[871,2,2,11,13]]]],[369,5450,5451,5453,6927,7597,17803,17965,20065,20114,20177,22230,22236]]],["+",[2,2,[[4,1,1,0,1,[[173,1,1,0,1]]],[8,1,1,1,2,[[251,1,1,1,2]]]],[5450,7597]]],["calves",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22230]]],["cow",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17803]]],["heifer",[9,9,[[0,1,1,0,1,[[14,1,1,0,1]]],[4,2,2,1,3,[[173,2,2,1,3]]],[6,1,1,3,4,[[224,1,1,3,4]]],[22,1,1,4,5,[[693,1,1,4,5]]],[23,3,3,5,8,[[790,1,1,5,6],[792,1,1,6,7],[794,1,1,7,8]]],[27,1,1,8,9,[[871,1,1,8,9]]]],[369,5451,5453,6927,17965,20065,20114,20177,22236]]],["heifer's",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5451]]]]},{"k":"H5698","v":[["Eglah",[2,2,[[9,1,1,0,1,[[269,1,1,0,1]]],[12,1,1,1,2,[[340,1,1,1,2]]]],[8086,10364]]]]},{"k":"H5699","v":[["*",[25,20,[[0,4,4,0,4,[[44,3,3,0,3],[45,1,1,3,4]]],[3,5,4,4,8,[[123,5,4,4,8]]],[8,7,5,8,13,[[241,7,5,8,13]]],[9,2,1,13,14,[[272,2,1,13,14]]],[12,2,1,14,15,[[350,2,1,14,15]]],[18,1,1,15,16,[[523,1,1,15,16]]],[22,3,3,16,19,[[683,1,1,16,17],[706,2,2,17,19]]],[29,1,1,19,20,[[880,1,1,19,20]]]],[1377,1379,1385,1391,3853,3856,3857,3858,7338,7339,7341,7342,7345,8160,10767,14623,17757,18191,18192,22392]]],["cart",[15,11,[[8,7,5,0,5,[[241,7,5,0,5]]],[9,2,1,5,6,[[272,2,1,5,6]]],[12,2,1,6,7,[[350,2,1,6,7]]],[22,3,3,7,10,[[683,1,1,7,8],[706,2,2,8,10]]],[29,1,1,10,11,[[880,1,1,10,11]]]],[7338,7339,7341,7342,7345,8160,10767,17757,18191,18192,22392]]],["chariot",[1,1,[[18,1,1,0,1,[[523,1,1,0,1]]]],[14623]]],["wagon",[1,1,[[3,1,1,0,1,[[123,1,1,0,1]]]],[3853]]],["wagons",[8,8,[[0,4,4,0,4,[[44,3,3,0,3],[45,1,1,3,4]]],[3,4,4,4,8,[[123,4,4,4,8]]]],[1377,1379,1385,1391,3853,3856,3857,3858]]]]},{"k":"H5700","v":[["*",[13,12,[[5,8,8,0,8,[[196,6,6,0,6],[198,1,1,6,7],[201,1,1,7,8]]],[6,5,4,8,12,[[213,5,4,8,12]]]],[6067,6069,6087,6098,6100,6101,6142,6241,6580,6582,6583,6585]]],["+",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6100]]],["Eglon",[12,11,[[5,7,7,0,7,[[196,5,5,0,5],[198,1,1,5,6],[201,1,1,6,7]]],[6,5,4,7,11,[[213,5,4,7,11]]]],[6067,6069,6087,6098,6101,6142,6241,6580,6582,6583,6585]]]]},{"k":"H5701","v":[["grieved",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13582]]]]},{"k":"H5702","v":[["stay",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7140]]]]},{"k":"H5703","v":[["*",[48,48,[[1,1,1,0,1,[[64,1,1,0,1]]],[3,2,2,1,3,[[140,2,2,1,3]]],[17,2,2,3,5,[[454,1,1,3,4],[455,1,1,4,5]]],[18,29,29,5,34,[[486,2,2,5,7],[487,1,1,7,8],[496,1,1,8,9],[498,2,2,9,11],[499,1,1,11,12],[514,1,1,12,13],[522,2,2,13,15],[525,1,1,15,16],[529,1,1,16,17],[538,1,1,17,18],[560,1,1,18,19],[566,1,1,19,20],[569,1,1,20,21],[581,1,1,21,22],[588,3,3,22,25],[589,2,2,25,27],[596,1,1,27,28],[609,2,2,28,30],[622,3,3,30,33],[625,1,1,33,34]]],[19,2,2,34,36,[[639,1,1,34,35],[656,1,1,35,36]]],[22,7,7,36,43,[[687,1,1,36,37],[704,1,1,37,38],[708,1,1,38,39],[723,1,1,39,40],[735,1,1,40,41],[742,1,1,41,42],[743,1,1,42,43]]],[26,1,1,43,44,[[861,1,1,43,44]]],[29,1,1,44,45,[[879,1,1,44,45]]],[32,2,2,45,47,[[896,1,1,45,46],[899,1,1,46,47]]],[34,1,1,47,48,[[905,1,1,47,48]]]],[1938,4466,4470,13321,13330,14026,14039,14057,14177,14195,14197,14230,14479,14603,14614,14648,14718,14827,15258,15355,15418,15576,15796,15801,15803,15806,15812,15942,16163,16165,16321,16322,16341,16377,16738,17238,17835,18134,18225,18578,18780,18894,18915,22084,22375,22625,22682,22774]]],["+",[8,8,[[18,5,5,0,5,[[560,1,1,0,1],[569,1,1,1,2],[581,1,1,2,3],[609,2,2,3,5]]],[22,3,3,5,8,[[704,1,1,5,6],[723,1,1,6,7],[743,1,1,7,8]]]],[15258,15418,15576,16163,16165,18134,18578,18915]]],["eternity",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18780]]],["ever",[35,35,[[1,1,1,0,1,[[64,1,1,0,1]]],[3,2,2,1,3,[[140,2,2,1,3]]],[17,1,1,3,4,[[454,1,1,3,4]]],[18,24,24,4,28,[[486,2,2,4,6],[487,1,1,6,7],[496,1,1,7,8],[498,2,2,8,10],[499,1,1,10,11],[514,1,1,11,12],[522,2,2,12,14],[525,1,1,14,15],[529,1,1,15,16],[538,1,1,16,17],[566,1,1,17,18],[588,3,3,18,21],[589,2,2,21,23],[596,1,1,23,24],[622,3,3,24,27],[625,1,1,27,28]]],[19,2,2,28,30,[[639,1,1,28,29],[656,1,1,29,30]]],[22,2,2,30,32,[[708,1,1,30,31],[742,1,1,31,32]]],[26,1,1,32,33,[[861,1,1,32,33]]],[32,2,2,33,35,[[896,1,1,33,34],[899,1,1,34,35]]]],[1938,4466,4470,13321,14026,14039,14057,14177,14195,14197,14230,14479,14603,14614,14648,14718,14827,15355,15796,15801,15803,15806,15812,15942,16321,16322,16341,16377,16738,17238,18225,18894,22084,22625,22682]]],["everlasting",[2,2,[[22,1,1,0,1,[[687,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[17835,22774]]],["old",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13330]]],["perpetually",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22375]]]]},{"k":"H5704","v":[["*",[1224,1099,[[0,64,56,0,56,[[2,1,1,0,1],[5,3,1,1,2],[6,3,1,2,3],[7,2,2,3,5],[9,2,1,5,6],[10,1,1,6,7],[11,2,1,7,8],[12,4,3,8,11],[13,4,4,11,15],[14,2,2,15,17],[18,3,3,17,20],[21,1,1,20,21],[23,2,2,21,23],[24,1,1,23,24],[25,2,2,24,26],[26,4,4,26,30],[27,1,1,30,31],[28,1,1,31,32],[30,2,2,32,34],[31,3,3,34,37],[32,3,2,37,39],[33,1,1,39,40],[34,1,1,40,41],[37,3,3,41,44],[38,1,1,44,45],[40,1,1,45,46],[42,1,1,46,47],[43,1,1,47,48],[45,1,1,48,49],[46,2,2,49,51],[47,2,2,51,53],[48,2,2,53,55],[49,1,1,55,56]]],[1,49,44,56,100,[[56,1,1,56,57],[58,1,1,57,58],[59,4,4,58,62],[60,2,2,62,64],[61,8,7,64,71],[63,1,1,71,72],[64,2,1,72,73],[65,7,6,73,79],[66,1,1,79,80],[67,2,2,80,82],[71,4,3,82,85],[72,4,3,85,88],[73,1,1,88,89],[76,2,2,89,91],[77,1,1,91,92],[78,1,1,92,93],[81,1,1,93,94],[82,2,2,94,96],[83,2,2,96,98],[87,1,1,98,99],[89,1,1,99,100]]],[2,56,52,100,152,[[95,1,1,100,101],[96,1,1,101,102],[97,1,1,102,103],[100,9,8,103,111],[101,1,1,111,112],[102,1,1,112,113],[103,1,1,113,114],[104,15,14,114,128],[105,1,1,128,129],[106,1,1,129,130],[108,2,2,130,132],[111,3,3,132,135],[112,4,3,135,138],[113,1,1,138,139],[114,8,7,139,146],[115,1,1,146,147],[116,5,5,147,152]]],[3,57,51,152,203,[[119,1,1,152,153],[120,7,7,153,160],[121,1,1,160,161],[122,2,2,161,163],[124,2,1,163,164],[125,3,3,164,167],[126,1,1,167,168],[127,2,1,168,169],[128,1,1,169,170],[129,3,3,170,173],[130,6,5,173,178],[135,5,5,178,183],[136,1,1,183,184],[137,8,5,184,189],[138,1,1,189,190],[139,2,2,190,192],[140,1,1,192,193],[148,5,5,193,198],[149,1,1,198,199],[151,4,4,199,203]]],[4,73,65,203,268,[[153,8,7,203,210],[154,8,7,210,217],[155,9,7,217,224],[156,5,5,224,229],[159,3,3,229,232],[161,3,2,232,234],[162,1,1,234,235],[163,5,4,235,239],[164,2,2,239,241],[165,1,1,241,242],[172,1,1,242,243],[174,1,1,243,244],[175,1,1,244,245],[180,14,12,245,257],[181,3,3,257,260],[182,1,1,260,261],[183,2,2,261,263],[184,1,1,263,264],[186,4,4,264,268]]],[5,94,79,268,347,[[187,3,2,268,270],[188,2,2,270,272],[189,4,4,272,276],[190,5,4,276,280],[191,4,4,280,284],[192,2,2,284,286],[193,5,4,286,290],[194,7,6,290,296],[195,1,1,296,297],[196,10,8,297,305],[197,6,3,305,308],[198,6,5,308,313],[199,13,11,313,324],[200,2,2,324,326],[201,3,3,326,329],[202,4,3,329,332],[203,2,1,332,333],[204,1,1,333,334],[205,5,5,334,339],[206,3,2,339,341],[208,2,2,341,343],[209,4,4,343,347]]],[6,61,52,347,399,[[211,2,2,347,349],[213,3,3,349,352],[214,3,3,352,355],[215,1,1,355,356],[216,5,4,356,360],[217,5,3,360,363],[219,3,2,363,365],[220,1,1,365,366],[221,8,5,366,371],[223,1,1,371,372],[224,1,1,372,373],[225,4,3,373,376],[226,3,3,376,379],[227,1,1,379,380],[228,5,5,380,385],[229,8,7,385,392],[230,6,6,392,398],[231,1,1,398,399]]],[7,10,10,399,409,[[232,2,2,399,401],[233,4,4,401,405],[234,4,4,405,409]]],[8,74,62,409,471,[[236,6,4,409,413],[237,2,2,413,415],[238,4,4,415,419],[240,1,1,419,420],[241,4,2,420,422],[242,3,3,422,425],[243,1,1,425,426],[244,2,2,426,428],[245,2,2,428,430],[246,1,1,430,431],[247,1,1,431,432],[248,1,1,432,433],[249,5,5,433,438],[250,4,4,438,442],[251,2,2,442,444],[252,4,1,444,445],[253,3,1,445,446],[254,2,2,446,448],[255,8,8,448,456],[257,1,1,456,457],[260,4,3,457,460],[262,2,2,460,462],[264,3,3,462,465],[265,8,6,465,471]]],[9,50,47,471,518,[[267,1,1,471,472],[268,3,3,472,475],[269,3,3,475,478],[270,2,2,478,480],[272,4,4,480,484],[273,8,7,484,491],[276,2,2,491,493],[277,1,1,493,494],[278,1,1,494,495],[279,1,1,495,496],[280,1,1,496,497],[281,3,3,497,500],[282,1,1,500,501],[283,4,3,501,504],[284,1,1,504,505],[285,3,3,505,508],[286,3,3,508,511],[287,1,1,511,512],[288,2,2,512,514],[289,2,2,514,516],[290,3,2,516,518]]],[10,46,43,518,561,[[291,1,1,518,519],[292,3,3,519,522],[293,2,2,522,524],[294,6,5,524,529],[295,2,2,529,531],[296,2,2,531,533],[297,4,3,533,536],[298,2,2,536,538],[299,3,3,538,541],[300,2,2,541,543],[301,2,2,543,545],[302,2,2,545,547],[304,1,1,547,548],[305,1,1,548,549],[307,2,2,549,551],[308,7,6,551,557],[309,1,1,557,558],[312,3,3,558,561]]],[11,54,52,561,613,[[314,3,3,561,564],[315,1,1,564,565],[316,3,3,565,568],[318,2,2,568,570],[319,5,5,570,575],[320,4,4,575,579],[321,3,3,579,582],[322,5,5,582,587],[323,1,1,587,588],[325,3,3,588,591],[326,3,3,591,594],[327,1,1,594,595],[328,2,2,595,597],[329,6,5,597,602],[330,4,3,602,605],[331,1,1,605,606],[332,1,1,606,607],[333,2,2,607,609],[335,1,1,609,610],[336,2,2,610,612],[337,1,1,612,613]]],[12,48,46,613,659,[[341,6,6,613,619],[342,6,6,619,625],[343,1,1,625,626],[344,1,1,626,627],[346,1,1,627,628],[348,1,1,628,629],[349,4,4,629,633],[350,3,3,633,636],[351,1,1,636,637],[352,2,2,637,639],[353,1,1,639,640],[354,8,7,640,647],[356,2,2,647,649],[358,2,2,649,651],[359,1,1,651,652],[360,3,2,652,654],[365,4,4,654,658],[366,1,1,658,659]]],[13,54,47,659,706,[[371,1,1,659,660],[373,2,2,660,662],[374,3,2,662,664],[375,3,2,664,666],[376,1,1,666,667],[378,1,1,667,668],[380,2,2,668,670],[381,3,2,670,672],[382,2,2,672,674],[383,1,1,674,675],[384,4,4,675,679],[385,1,1,679,680],[386,1,1,680,681],[387,2,2,681,683],[389,1,1,683,684],[390,1,1,684,685],[391,2,2,685,687],[392,6,4,687,691],[394,1,1,691,692],[395,4,3,692,695],[396,2,2,695,697],[397,2,2,697,699],[398,1,1,699,700],[400,1,1,700,701],[401,2,2,701,703],[402,4,3,703,706]]],[14,13,11,706,717,[[404,1,1,706,707],[405,1,1,707,708],[406,1,1,708,709],[410,1,1,709,710],[411,6,5,710,715],[412,3,2,715,717]]],[15,39,33,717,750,[[414,3,3,717,720],[415,16,11,720,731],[416,3,3,731,734],[417,1,1,734,735],[418,1,1,735,736],[419,3,2,736,738],[420,3,3,738,741],[421,2,2,741,743],[423,1,1,743,744],[424,4,4,744,748],[425,2,2,748,750]]],[16,8,8,750,758,[[426,1,1,750,751],[427,1,1,751,752],[428,1,1,752,753],[429,1,1,753,754],[430,2,2,754,756],[432,1,1,756,757],[433,1,1,757,758]]],[17,31,29,758,787,[[437,1,1,758,759],[439,1,1,759,760],[440,1,1,760,761],[441,1,1,761,762],[442,2,2,762,764],[443,2,2,764,766],[444,2,1,766,767],[446,1,1,767,768],[449,4,4,768,772],[453,1,1,772,773],[454,1,1,773,774],[455,1,1,774,775],[457,1,1,775,776],[458,1,1,776,777],[460,1,1,777,778],[461,1,1,778,779],[462,1,1,779,780],[466,1,1,780,781],[467,3,2,781,783],[469,1,1,783,784],[473,3,3,784,787]]],[18,84,77,787,864,[[481,1,1,787,788],[483,1,1,788,789],[490,4,2,789,791],[495,2,2,791,793],[505,1,1,793,794],[513,1,1,794,795],[515,2,2,795,797],[517,1,1,797,798],[518,1,1,798,799],[519,1,1,799,800],[523,1,1,800,801],[525,1,1,801,802],[526,2,1,802,803],[527,1,1,803,804],[534,3,2,804,806],[537,1,1,806,807],[539,1,1,807,808],[542,1,1,808,809],[546,1,1,809,810],[548,4,3,810,813],[549,3,2,813,815],[550,1,1,815,816],[551,2,2,816,818],[556,1,1,818,819],[557,2,2,819,821],[559,1,1,821,822],[560,1,1,822,823],[566,2,2,823,825],[567,3,3,825,828],[569,1,1,828,829],[571,4,3,829,832],[577,1,1,832,833],[580,1,1,833,834],[581,1,1,834,835],[582,1,1,835,836],[583,2,2,836,838],[584,1,1,838,839],[585,2,2,839,841],[587,1,1,841,842],[589,1,1,842,843],[590,2,2,843,845],[592,1,1,845,846],[595,1,1,846,847],[596,4,4,847,851],[598,1,1,851,852],[600,1,1,852,853],[602,1,1,853,854],[608,1,1,854,855],[609,3,3,855,858],[610,1,1,858,859],[612,1,1,859,860],[614,1,1,860,861],[618,1,1,861,862],[624,2,2,862,864]]],[19,9,9,864,873,[[628,1,1,864,865],[631,1,1,865,866],[633,2,2,866,868],[634,2,2,868,870],[635,1,1,870,871],[639,1,1,871,872],[655,1,1,872,873]]],[20,5,5,873,878,[[660,1,1,873,874],[661,1,1,874,875],[670,3,3,875,878]]],[21,7,6,878,884,[[671,1,1,878,879],[672,1,1,879,880],[673,3,2,880,882],[674,1,1,882,883],[678,1,1,883,884]]],[22,51,45,884,929,[[679,1,1,884,885],[683,1,1,885,886],[684,2,1,886,887],[686,1,1,887,888],[687,2,2,888,890],[691,1,1,890,891],[693,3,3,891,894],[694,1,1,894,895],[697,1,1,895,896],[700,2,2,896,898],[703,1,1,898,899],[704,4,3,899,902],[705,1,1,902,903],[708,3,3,903,906],[710,3,3,906,909],[712,1,1,909,910],[714,1,1,910,911],[715,1,1,911,912],[716,3,2,912,914],[717,1,1,914,915],[720,1,1,915,916],[723,2,2,916,918],[724,2,1,918,919],[725,1,1,919,920],[726,1,1,920,921],[727,1,1,921,922],[735,2,1,922,923],[737,1,1,923,924],[740,3,2,924,926],[742,2,2,926,928],[743,1,1,928,929]]],[23,69,61,929,990,[[745,2,1,929,930],[747,1,1,930,931],[748,4,4,931,935],[750,2,1,935,936],[751,2,2,936,938],[752,2,1,938,939],[753,1,1,939,940],[755,1,1,940,941],[756,2,2,941,943],[761,1,1,943,944],[767,3,2,944,946],[768,1,1,946,947],[769,4,4,947,951],[771,3,3,951,954],[774,2,1,954,955],[775,4,3,955,958],[776,3,3,958,961],[777,2,2,961,963],[779,2,2,963,965],[780,2,2,965,967],[781,1,1,967,968],[782,1,1,968,969],[786,2,2,969,971],[787,1,1,971,972],[788,3,3,972,975],[791,2,2,975,977],[792,5,3,977,980],[793,2,2,980,982],[794,1,1,982,983],[795,3,3,983,986],[796,4,4,986,990]]],[24,3,3,990,993,[[799,2,2,990,992],[801,1,1,992,993]]],[25,42,40,993,1033,[[803,1,1,993,994],[805,4,4,994,998],[811,1,1,998,999],[821,2,2,999,1001],[822,1,1,1001,1002],[823,1,1,1002,1003],[825,1,1,1003,1004],[828,1,1,1004,1005],[829,2,2,1005,1007],[830,1,1,1007,1008],[834,1,1,1008,1009],[835,1,1,1009,1010],[840,1,1,1010,1011],[842,3,3,1011,1014],[844,2,1,1014,1015],[847,2,2,1015,1017],[848,3,3,1017,1020],[849,14,13,1020,1033]]],[26,21,21,1033,1054,[[850,1,1,1033,1034],[857,6,6,1034,1040],[858,3,3,1040,1043],[859,1,1,1043,1044],[860,6,6,1044,1050],[861,4,4,1050,1054]]],[27,5,5,1054,1059,[[866,1,1,1054,1055],[868,1,1,1055,1056],[869,1,1,1056,1057],[871,1,1,1057,1058],[875,1,1,1058,1059]]],[28,2,2,1059,1061,[[877,2,2,1059,1061]]],[29,8,7,1061,1068,[[882,5,5,1061,1066],[884,1,1,1066,1067],[886,2,1,1067,1068]]],[30,2,2,1068,1070,[[888,2,2,1068,1070]]],[31,5,5,1070,1075,[[890,1,1,1070,1071],[891,1,1,1071,1072],[892,3,3,1072,1075]]],[32,15,12,1075,1087,[[893,5,3,1075,1078],[896,4,4,1078,1082],[897,2,2,1082,1084],[898,1,1,1084,1085],[899,3,2,1085,1087]]],[33,1,1,1087,1088,[[900,1,1,1087,1088]]],[34,3,3,1088,1091,[[903,1,1,1088,1089],[904,1,1,1089,1090],[905,1,1,1090,1091]]],[35,1,1,1091,1092,[[907,1,1,1091,1092]]],[36,1,1,1092,1093,[[910,1,1,1092,1093]]],[37,6,3,1093,1096,[[911,1,1,1093,1094],[919,2,1,1094,1095],[924,3,1,1095,1096]]],[38,3,3,1096,1099,[[925,2,2,1096,1098],[927,1,1,1098,1099]]]],[74,144,182,188,190,253,297,304,321,330,333,342,350,351,359,376,378,479,494,495,552,610,624,676,705,725,760,761,771,772,788,803,897,902,932,952,960,963,974,985,1031,1120,1130,1136,1165,1244,1315,1352,1420,1441,1446,1456,1466,1483,1499,1516,1701,1760,1780,1783,1784,1803,1811,1813,1822,1826,1831,1834,1838,1840,1845,1917,1936,1966,1967,1970,1971,1975,1982,1995,2012,2013,2117,2122,2139,2162,2174,2175,2191,2277,2293,2335,2370,2458,2481,2495,2530,2531,2637,2744,2858,2894,2950,3021,3022,3024,3025,3028,3029,3036,3037,3048,3064,3157,3173,3174,3175,3176,3178,3179,3184,3185,3186,3187,3189,3190,3191,3195,3218,3250,3287,3294,3373,3375,3399,3416,3418,3434,3449,3491,3497,3498,3499,3509,3519,3521,3542,3573,3575,3576,3588,3593,3705,3746,3766,3773,3778,3782,3786,3790,3795,3827,3828,3943,3977,3980,3986,4009,4044,4074,4096,4097,4098,4119,4127,4135,4141,4153,4296,4297,4299,4310,4311,4328,4362,4364,4366,4370,4375,4405,4434,4440,4468,4727,4731,4735,4736,4739,4809,4857,4870,4873,4877,4894,4899,4911,4912,4916,4923,4936,4943,4952,4953,4960,4961,4967,4974,4978,4983,4985,4989,4991,4992,4995,5015,5034,5036,5052,5053,5131,5134,5135,5164,5178,5194,5212,5213,5220,5232,5249,5268,5279,5447,5472,5503,5631,5632,5633,5635,5646,5656,5657,5659,5662,5663,5672,5675,5683,5690,5708,5710,5752,5758,5780,5840,5841,5842,5845,5855,5866,5885,5891,5894,5901,5908,5910,5917,5919,5920,5933,5935,5940,5942,5943,5959,5974,5981,5982,5989,6002,6008,6024,6026,6028,6030,6031,6064,6074,6075,6077,6084,6090,6091,6097,6105,6115,6121,6124,6131,6132,6133,6135,6137,6157,6158,6159,6160,6163,6164,6165,6167,6179,6180,6181,6196,6201,6207,6249,6265,6268,6270,6275,6289,6296,6329,6331,6349,6350,6354,6378,6381,6429,6443,6468,6469,6473,6475,6530,6535,6571,6593,6594,6610,6615,6623,6630,6658,6672,6678,6685,6707,6716,6718,6794,6806,6815,6842,6845,6848,6851,6862,6891,6914,6934,6943,6948,6951,6952,6962,6988,6994,6995,7005,7006,7023,7032,7034,7036,7042,7049,7050,7054,7055,7077,7080,7097,7099,7102,7104,7140,7146,7156,7166,7170,7172,7175,7185,7186,7190,7226,7228,7234,7235,7245,7270,7289,7290,7291,7296,7324,7343,7349,7363,7364,7366,7377,7400,7404,7421,7426,7456,7462,7498,7517,7527,7528,7532,7544,7563,7565,7578,7595,7596,7606,7670,7680,7728,7729,7735,7738,7745,7753,7758,7767,7771,7772,7790,7883,7895,7897,7936,7938,7970,7973,7975,7980,7982,7987,7995,7997,8003,8034,8066,8073,8075,8091,8097,8109,8123,8126,8163,8165,8176,8180,8186,8193,8196,8198,8204,8205,8206,8244,8245,8282,8296,8339,8381,8413,8417,8421,8431,8460,8462,8471,8496,8518,8526,8535,8556,8557,8570,8590,8640,8653,8663,8672,8694,8707,8721,8798,8803,8815,8817,8818,8856,8865,8868,8869,8877,8881,8887,8918,8920,8941,8943,8957,8993,9050,9054,9064,9072,9086,9091,9124,9148,9170,9181,9228,9278,9331,9334,9362,9367,9369,9370,9386,9387,9395,9491,9496,9507,9553,9568,9573,9601,9623,9625,9638,9676,9699,9710,9712,9715,9716,9722,9733,9734,9738,9749,9774,9776,9778,9801,9804,9810,9818,9820,9840,9888,9890,9894,9903,9909,9921,9930,9969,9974,9992,10003,10006,10017,10024,10028,10032,10056,10064,10115,10134,10135,10173,10209,10222,10224,10412,10416,10418,10424,10426,10428,10436,10437,10439,10450,10451,10454,10486,10563,10633,10694,10736,10742,10749,10760,10765,10769,10771,10790,10793,10820,10856,10868,10875,10877,10879,10885,10886,10887,10911,10912,10936,10955,10974,10996,11008,11150,11151,11152,11163,11174,11277,11332,11340,11354,11362,11370,11390,11414,11441,11484,11488,11503,11509,11521,11523,11535,11552,11557,11568,11576,11580,11613,11634,11639,11666,11687,11717,11727,11740,11747,11748,11753,11773,11819,11821,11825,11832,11837,11855,11864,11899,11939,11980,11991,12009,12013,12014,12090,12110,12115,12230,12241,12243,12244,12249,12251,12266,12269,12313,12314,12323,12328,12335,12340,12342,12343,12347,12348,12351,12353,12354,12358,12365,12370,12380,12396,12402,12423,12485,12496,12510,12511,12516,12543,12618,12647,12661,12662,12663,12672,12690,12703,12737,12760,12764,12782,12785,12809,12826,12898,12935,12960,12998,13012,13027,13031,13050,13061,13115,13187,13193,13194,13195,13278,13299,13331,13412,13422,13466,13477,13486,13600,13639,13640,13719,13804,13809,13811,13967,13988,14075,14076,14155,14168,14308,14443,14496,14498,14537,14555,14559,14623,14642,14667,14669,14769,14778,14816,14830,14862,14936,14993,14994,14995,15007,15008,15037,15057,15058,15190,15202,15209,15235,15258,15330,15372,15380,15381,15391,15418,15434,15444,15446,15513,15566,15594,15625,15682,15699,15717,15746,15752,15787,15811,15815,15816,15848,15896,15906,15941,15949,16005,16089,16100,16112,16151,16156,16163,16165,16172,16183,16229,16286,16357,16366,16422,16508,16549,16566,16593,16598,16628,16738,17213,17336,17370,17524,17525,17529,17549,17571,17575,17576,17588,17644,17660,17747,17780,17815,17836,17842,17926,17964,17965,17968,17977,18026,18066,18076,18130,18134,18135,18150,18163,18225,18234,18245,18273,18274,18276,18320,18347,18355,18402,18403,18418,18484,18578,18585,18590,18606,18634,18642,18774,18821,18855,18861,18894,18897,18915,18949,19027,19037,19041,19045,19048,19102,19126,19144,19163,19191,19233,19253,19261,19361,19504,19510,19534,19537,19539,19565,19567,19603,19604,19618,19691,19713,19725,19731,19736,19751,19762,19787,19789,19829,19837,19844,19865,19895,19923,19976,19983,20004,20020,20022,20037,20078,20079,20112,20114,20127,20160,20164,20205,20221,20274,20276,20279,20281,20287,20310,20394,20404,20464,20495,20537,20539,20540,20543,20638,20924,20926,20971,20980,21069,21157,21172,21176,21193,21302,21334,21463,21542,21543,21546,21586,21657,21672,21689,21698,21699,21704,21705,21706,21707,21708,21709,21710,21723,21725,21726,21727,21728,21729,21758,21967,21969,21971,21972,21974,21975,22013,22014,22015,22018,22046,22060,22061,22071,22072,22081,22082,22085,22087,22090,22167,22182,22199,22237,22283,22313,22323,22416,22418,22419,22420,22421,22464,22493,22517,22530,22553,22563,22570,22573,22577,22586,22588,22594,22623,22627,22628,22630,22636,22637,22653,22673,22676,22694,22733,22754,22781,22814,22874,22890,23009,23078,23093,23100,23130]]],["+",[226,214,[[0,13,13,0,13,[[12,1,1,0,1],[14,1,1,1,2],[21,1,1,2,3],[23,2,2,3,5],[25,1,1,5,6],[26,2,2,6,8],[27,1,1,8,9],[28,1,1,9,10],[32,1,1,10,11],[43,1,1,11,12],[48,1,1,12,13]]],[1,7,7,13,20,[[56,1,1,13,14],[59,2,2,14,16],[61,1,1,16,17],[65,1,1,17,18],[72,1,1,18,19],[73,1,1,19,20]]],[2,1,1,20,21,[[111,1,1,20,21]]],[3,8,7,21,28,[[127,1,1,21,22],[130,3,2,22,24],[136,1,1,24,25],[137,1,1,25,26],[140,1,1,26,27],[148,1,1,27,28]]],[4,8,8,28,36,[[154,2,2,28,30],[155,1,1,30,31],[164,2,2,31,33],[175,1,1,33,34],[180,1,1,34,35],[181,1,1,35,36]]],[5,7,7,36,43,[[187,1,1,36,37],[189,1,1,37,38],[190,1,1,38,39],[194,1,1,39,40],[200,1,1,40,41],[203,1,1,41,42],[204,1,1,42,43]]],[6,4,4,43,47,[[214,1,1,43,44],[226,1,1,44,45],[229,1,1,45,46],[230,1,1,46,47]]],[7,3,3,47,50,[[232,1,1,47,48],[233,1,1,48,49],[234,1,1,49,50]]],[8,14,14,50,64,[[236,2,2,50,52],[237,1,1,52,53],[238,2,2,53,55],[242,1,1,55,56],[248,1,1,56,57],[251,1,1,57,58],[255,3,3,58,61],[257,1,1,61,62],[260,1,1,62,63],[265,1,1,63,64]]],[9,14,13,64,77,[[268,1,1,64,65],[269,1,1,65,66],[273,7,6,66,72],[278,1,1,72,73],[283,1,1,73,74],[286,1,1,74,75],[288,1,1,75,76],[289,1,1,76,77]]],[10,9,8,77,85,[[291,1,1,77,78],[292,2,2,78,80],[299,1,1,80,81],[300,1,1,81,82],[307,1,1,82,83],[308,3,2,83,85]]],[11,5,5,85,90,[[316,1,1,85,86],[320,1,1,86,87],[329,2,2,87,89],[333,1,1,89,90]]],[12,19,17,90,107,[[346,1,1,90,91],[349,1,1,91,92],[352,1,1,92,93],[353,1,1,93,94],[354,7,6,94,100],[356,1,1,100,101],[359,1,1,101,102],[360,3,2,102,104],[365,2,2,104,106],[366,1,1,106,107]]],[13,9,8,107,115,[[373,1,1,107,108],[375,1,1,108,109],[382,1,1,109,110],[383,1,1,110,111],[384,1,1,111,112],[392,3,2,112,114],[397,1,1,114,115]]],[14,3,2,115,117,[[405,1,1,115,116],[411,2,1,116,117]]],[15,3,3,117,120,[[414,1,1,117,118],[416,1,1,118,119],[425,1,1,119,120]]],[17,9,8,120,128,[[439,1,1,120,121],[440,1,1,121,122],[443,1,1,122,123],[444,2,1,123,124],[453,1,1,124,125],[454,1,1,125,126],[473,2,2,126,128]]],[18,41,38,128,166,[[481,1,1,128,129],[483,1,1,129,130],[490,4,2,130,132],[495,1,1,132,133],[505,1,1,133,134],[515,2,2,134,136],[517,1,1,136,137],[525,1,1,137,138],[526,1,1,138,139],[539,1,1,139,140],[548,1,1,140,141],[551,2,2,141,143],[556,1,1,143,144],[557,1,1,144,145],[559,1,1,145,146],[560,1,1,146,147],[566,2,2,147,149],[567,1,1,149,150],[569,1,1,150,151],[571,2,1,151,152],[583,1,1,152,153],[589,1,1,153,154],[590,1,1,154,155],[592,1,1,155,156],[596,4,4,156,160],[598,1,1,160,161],[602,1,1,161,162],[608,1,1,162,163],[609,2,2,163,165],[610,1,1,165,166]]],[19,2,2,166,168,[[628,1,1,166,167],[633,1,1,167,168]]],[20,3,3,168,171,[[660,1,1,168,169],[670,2,2,169,171]]],[22,15,14,171,185,[[684,2,1,171,172],[687,1,1,172,173],[704,1,1,173,174],[708,2,2,174,176],[710,2,2,176,178],[712,1,1,178,179],[723,1,1,179,180],[735,1,1,180,181],[737,1,1,181,182],[742,2,2,182,184],[743,1,1,184,185]]],[23,12,12,185,197,[[748,2,2,185,187],[751,1,1,187,188],[756,1,1,188,189],[761,1,1,189,190],[767,1,1,190,191],[769,1,1,191,192],[775,1,1,192,193],[779,1,1,193,194],[791,2,2,194,196],[793,1,1,196,197]]],[24,1,1,197,198,[[801,1,1,197,198]]],[25,3,3,198,201,[[828,1,1,198,199],[829,1,1,199,200],[835,1,1,200,201]]],[26,4,4,201,205,[[857,2,2,201,203],[860,1,1,203,204],[861,1,1,204,205]]],[27,2,2,205,207,[[866,1,1,205,206],[869,1,1,206,207]]],[32,2,2,207,209,[[896,2,2,207,209]]],[34,2,2,209,211,[[903,1,1,209,210],[904,1,1,210,211]]],[35,1,1,211,212,[[907,1,1,211,212]]],[37,1,1,212,213,[[911,1,1,212,213]]],[38,1,1,213,214,[[925,1,1,213,214]]]],[333,376,552,610,624,705,760,771,788,803,974,1352,1483,1701,1780,1784,1840,1975,2174,2191,3373,4044,4119,4135,4328,4362,4468,4735,4952,4967,4995,5249,5268,5503,5657,5708,5866,5910,5917,6028,6196,6289,6296,6623,6962,7034,7097,7140,7170,7190,7228,7234,7270,7289,7290,7364,7498,7596,7745,7753,7772,7790,7897,7982,8066,8109,8193,8196,8198,8204,8205,8206,8296,8462,8570,8653,8663,8721,8803,8815,9054,9086,9334,9362,9386,9638,9734,10003,10006,10135,10633,10749,10793,10856,10875,10877,10879,10885,10886,10887,10912,10974,10996,11008,11150,11151,11174,11340,11370,11523,11535,11557,11740,11747,11864,12110,12249,12314,12370,12672,12935,12960,13031,13061,13278,13299,13804,13811,13967,13988,14075,14076,14168,14308,14496,14498,14537,14642,14667,14830,14993,15057,15058,15190,15202,15235,15258,15330,15372,15391,15418,15434,15682,15811,15815,15848,15906,15941,15949,16005,16089,16112,16151,16163,16165,16172,16422,16549,17336,17524,17525,17780,17836,18134,18225,18234,18273,18276,18320,18578,18774,18821,18894,18897,18915,19041,19048,19126,19253,19361,19510,19539,19713,19829,20078,20079,20160,20464,21157,21176,21334,21969,21974,22061,22087,22167,22199,22623,22627,22733,22754,22814,22890,23093]]],["For",[1,1,[[15,1,1,0,1,[[414,1,1,0,1]]]],[12313]]],["How",[2,2,[[8,1,1,0,1,[[236,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]]],[7226,9496]]],["Or",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17529]]],["Thus",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20276]]],["Till",[3,3,[[17,1,1,0,1,[[443,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]]],[13050,16598,20404]]],["Until",[9,9,[[0,1,1,0,1,[[26,1,1,0,1]]],[11,1,1,1,2,[[330,1,1,1,2]]],[18,3,3,2,5,[[550,1,1,2,3],[582,1,1,3,4],[609,1,1,4,5]]],[21,2,2,5,7,[[672,1,1,5,6],[674,1,1,6,7]]],[22,2,2,7,9,[[710,1,1,7,8],[714,1,1,8,9]]]],[772,10056,15037,15625,16156,17571,17588,18274,18347]]],["Unto",[2,2,[[11,1,1,0,1,[[329,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]]],[10017,21975]]],["While",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17549]]],["against",[3,3,[[0,1,1,0,1,[[42,1,1,0,1]]],[3,1,1,1,2,[[126,1,1,1,2]]],[11,1,1,2,3,[[328,1,1,2,3]]]],[1315,4009,9974]]],["also",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6934]]],["and",[13,9,[[0,7,3,0,3,[[5,3,1,0,1],[6,3,1,1,2],[26,1,1,2,3]]],[3,2,2,3,5,[[119,1,1,3,4],[121,1,1,4,5]]],[8,1,1,5,6,[[250,1,1,5,6]]],[15,1,1,6,7,[[421,1,1,6,7]]],[16,1,1,7,8,[[428,1,1,7,8]]],[18,1,1,8,9,[[612,1,1,8,9]]]],[144,182,761,3705,3795,7563,12516,12760,16183]]],["as",[5,5,[[1,1,1,0,1,[[63,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[11,2,2,2,4,[[321,1,1,2,3],[325,1,1,3,4]]],[15,1,1,4,5,[[414,1,1,4,5]]]],[1917,7102,9778,9894,12323]]],["at",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12402]]],["before",[2,2,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]]],[1456,2122]]],["but",[2,2,[[19,1,1,0,1,[[639,1,1,0,1]]],[21,1,1,1,2,[[673,1,1,1,2]]]],[16738,17575]]],["by",[5,5,[[8,2,2,0,2,[[260,2,2,0,2]]],[9,1,1,2,3,[[283,1,1,2,3]]],[12,1,1,3,4,[[356,1,1,3,4]]],[14,1,1,4,5,[[412,1,1,4,5]]]],[7883,7895,8471,10911,12269]]],["either",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7980]]],["even",[4,4,[[3,1,1,0,1,[[127,1,1,0,1]]],[11,1,1,1,2,[[321,1,1,1,2]]],[16,1,1,2,3,[[429,1,1,2,3]]],[17,1,1,3,4,[[460,1,1,3,4]]]],[4044,9776,12764,13466]]],["ever",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11152]]],["far",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20127]]],["for",[5,5,[[2,1,1,0,1,[[115,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[14,1,1,2,3,[[412,1,1,2,3]]],[17,1,1,3,4,[[455,1,1,3,4]]],[26,1,1,4,5,[[860,1,1,4,5]]]],[3542,7738,12266,13331,22060]]],["forasmuch",[1,1,[[5,1,1,0,1,[[203,1,1,0,1]]]],[6289]]],["from",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20205]]],["into",[8,8,[[4,2,2,0,2,[[153,1,1,0,1],[163,1,1,1,2]]],[6,1,1,2,3,[[221,1,1,2,3]]],[9,2,2,3,5,[[270,1,1,3,4],[283,1,1,4,5]]],[17,1,1,5,6,[[473,1,1,5,6]]],[18,2,2,6,8,[[537,1,1,6,7],[585,1,1,7,8]]]],[4923,5213,6848,8126,8462,13809,14816,15752]]],["long",[2,2,[[9,1,1,0,1,[[268,1,1,0,1]]],[18,1,1,1,2,[[549,1,1,1,2]]]],[8075,15007]]],["much",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4943]]],["neither",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7997]]],["nor",[4,3,[[8,2,1,0,1,[[265,2,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[23,1,1,2,3,[[795,1,1,2,3]]]],[7997,8339,20274]]],["of",[2,2,[[8,1,1,0,1,[[241,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]]],[7349,18245]]],["only",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9601]]],["or",[7,5,[[0,2,2,0,2,[[30,2,2,0,2]]],[1,3,2,2,4,[[60,1,1,2,3],[71,2,1,3,4]]],[13,2,1,4,5,[[381,2,1,4,5]]]],[897,902,1813,2117,11503]]],["so",[1,1,[[5,1,1,0,1,[[194,1,1,0,1]]]],[6024]]],["that",[6,6,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[22,1,1,4,5,[[725,1,1,4,5]]],[38,1,1,5,6,[[927,1,1,5,6]]]],[2139,3416,6630,7245,18606,23130]]],["thither",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12998]]],["till",[68,66,[[0,4,4,0,4,[[2,1,1,0,1],[18,1,1,1,2],[37,2,2,2,4]]],[1,5,4,4,8,[[64,2,1,4,5],[65,2,2,5,7],[89,1,1,7,8]]],[3,1,1,8,9,[[128,1,1,8,9]]],[4,1,1,9,10,[[180,1,1,9,10]]],[5,4,4,10,14,[[191,2,2,10,12],[194,1,1,12,13],[196,1,1,13,14]]],[6,6,6,14,20,[[213,1,1,14,15],[216,1,1,15,16],[221,1,1,16,17],[226,1,1,17,18],[229,1,1,18,19],[231,1,1,19,20]]],[8,2,2,20,22,[[245,1,1,20,21],[251,1,1,21,22]]],[10,2,2,22,24,[[304,1,1,22,23],[308,1,1,23,24]]],[11,6,6,24,30,[[314,1,1,24,25],[316,1,1,25,26],[319,1,1,26,27],[322,1,1,27,28],[325,2,2,28,30]]],[13,2,2,30,32,[[395,1,1,30,31],[402,1,1,31,32]]],[14,2,2,32,34,[[404,1,1,32,33],[411,1,1,33,34]]],[15,3,3,34,37,[[416,1,1,34,35],[419,1,1,35,36],[425,1,1,36,37]]],[17,5,5,37,42,[[442,1,1,37,38],[449,3,3,38,41],[462,1,1,41,42]]],[18,1,1,42,43,[[495,1,1,42,43]]],[21,1,1,43,44,[[673,1,1,43,44]]],[22,6,5,44,49,[[683,1,1,44,45],[700,1,1,45,46],[716,1,1,46,47],[720,1,1,47,48],[740,2,1,48,49]]],[23,6,6,49,55,[[753,1,1,49,50],[767,1,1,50,51],[768,1,1,51,52],[793,1,1,52,53],[796,2,2,53,55]]],[25,6,6,55,61,[[805,2,2,55,57],[825,1,1,57,58],[829,1,1,58,59],[840,1,1,59,60],[848,1,1,60,61]]],[26,3,3,61,64,[[859,1,1,61,62],[860,1,1,62,63],[861,1,1,63,64]]],[27,1,1,64,65,[[871,1,1,64,65]]],[31,1,1,65,66,[[892,1,1,65,66]]]],[74,479,1130,1136,1936,1966,1971,2744,4074,5656,5940,5942,6008,6084,6593,6658,6862,6952,7050,7104,7426,7606,9228,9369,9568,9623,9716,9810,9888,9890,11825,12009,12090,12251,12380,12485,12690,13027,13187,13193,13195,13486,14155,17576,17747,18066,18403,18484,18861,19191,19504,19534,20164,20279,20287,20537,20543,21069,21172,21463,21699,22018,22072,22090,22237,22573]]],["to",[172,162,[[0,6,6,0,6,[[12,1,1,0,1],[13,1,1,1,2],[32,1,1,2,3],[37,1,1,3,4],[46,1,1,4,5],[49,1,1,5,6]]],[1,3,3,6,9,[[76,2,2,6,8],[81,1,1,8,9]]],[2,1,1,9,10,[[102,1,1,9,10]]],[3,1,1,10,11,[[122,1,1,10,11]]],[4,2,2,11,13,[[153,1,1,11,12],[156,1,1,12,13]]],[5,8,8,13,21,[[189,2,2,13,15],[196,1,1,15,16],[198,1,1,16,17],[199,1,1,17,18],[202,1,1,18,19],[205,2,2,19,21]]],[6,9,8,21,29,[[217,2,1,21,22],[223,1,1,22,23],[224,1,1,23,24],[227,1,1,24,25],[228,1,1,25,26],[229,2,2,26,28],[230,1,1,28,29]]],[8,13,11,29,40,[[238,1,1,29,30],[244,1,1,30,31],[245,1,1,31,32],[249,1,1,32,33],[250,1,1,33,34],[252,1,1,34,35],[253,3,1,35,36],[254,1,1,36,37],[255,2,2,37,39],[265,1,1,39,40]]],[9,17,16,40,56,[[268,1,1,40,41],[269,2,2,41,43],[272,3,3,43,46],[273,1,1,46,47],[276,1,1,47,48],[280,1,1,48,49],[281,1,1,49,50],[282,1,1,50,51],[283,1,1,51,52],[285,1,1,52,53],[286,1,1,53,54],[290,3,2,54,56]]],[10,7,7,56,63,[[292,1,1,56,57],[294,3,3,57,60],[297,2,2,60,62],[308,1,1,62,63]]],[11,11,11,63,74,[[314,1,1,63,64],[316,1,1,64,65],[319,2,2,65,67],[321,1,1,67,68],[322,1,1,68,69],[323,1,1,69,70],[329,1,1,70,71],[330,1,1,71,72],[331,1,1,72,73],[335,1,1,73,74]]],[12,8,8,74,82,[[341,1,1,74,75],[348,1,1,75,76],[349,1,1,76,77],[350,1,1,77,78],[351,1,1,78,79],[352,1,1,79,80],[358,2,2,80,82]]],[13,10,10,82,92,[[375,1,1,82,83],[378,1,1,83,84],[385,1,1,84,85],[389,1,1,85,86],[391,1,1,86,87],[392,2,2,87,89],[396,1,1,89,90],[398,1,1,90,91],[401,1,1,91,92]]],[15,3,3,92,95,[[415,3,3,92,95]]],[16,3,3,95,98,[[430,2,2,95,97],[432,1,1,97,98]]],[17,4,4,98,102,[[457,1,1,98,99],[458,1,1,99,100],[466,1,1,100,101],[467,1,1,101,102]]],[18,11,11,102,113,[[518,1,1,102,103],[519,1,1,103,104],[526,1,1,104,105],[549,1,1,105,106],[567,2,2,106,108],[577,1,1,108,109],[580,1,1,109,110],[583,1,1,110,111],[614,1,1,111,112],[624,1,1,112,113]]],[19,2,2,113,115,[[633,1,1,113,114],[655,1,1,114,115]]],[20,1,1,115,116,[[661,1,1,115,116]]],[22,14,12,116,128,[[686,1,1,116,117],[691,1,1,117,118],[697,1,1,118,119],[700,1,1,119,120],[703,1,1,120,121],[704,2,1,121,122],[715,1,1,122,123],[716,2,2,123,125],[723,1,1,125,126],[724,2,1,126,127],[726,1,1,127,128]]],[23,7,7,128,135,[[756,1,1,128,129],[769,1,1,129,130],[777,1,1,130,131],[786,1,1,131,132],[787,1,1,132,133],[792,1,1,133,134],[795,1,1,134,135]]],[24,1,1,135,136,[[799,1,1,135,136]]],[25,8,7,136,143,[[805,2,2,136,138],[811,1,1,138,139],[842,1,1,139,140],[844,2,1,140,141],[847,1,1,141,142],[848,1,1,142,143]]],[26,8,8,143,151,[[857,3,3,143,146],[860,3,3,146,149],[861,2,2,149,151]]],[28,2,2,151,153,[[877,2,2,151,153]]],[29,2,1,153,154,[[886,2,1,153,154]]],[30,1,1,154,155,[[888,1,1,154,155]]],[31,2,2,155,157,[[890,1,1,155,156],[891,1,1,156,157]]],[32,5,4,157,161,[[893,2,2,157,159],[896,1,1,159,160],[899,2,1,160,161]]],[37,2,1,161,162,[[919,2,1,161,162]]]],[321,359,963,1120,1441,1516,2277,2293,2458,3064,3827,4911,5034,5894,5901,6074,6133,6158,6268,6329,6350,6716,6891,6914,6988,6995,7036,7042,7055,7296,7400,7421,7528,7565,7670,7680,7728,7758,7767,7987,8073,8091,8097,8163,8165,8176,8186,8244,8381,8421,8431,8460,8526,8556,8694,8707,8798,8856,8868,8869,8941,8957,9387,9553,9625,9712,9715,9774,9818,9840,9992,10032,10064,10173,10412,10694,10736,10771,10790,10820,10936,10955,11390,11441,11580,11666,11727,11740,11748,11832,11899,11991,12343,12348,12358,12782,12785,12809,13412,13422,13600,13639,14555,14559,14667,15008,15380,15381,15513,15566,15699,16229,16357,16566,17213,17370,17815,17926,18026,18076,18130,18135,18355,18402,18403,18585,18590,18634,19261,19565,19789,19983,20004,20112,20221,20394,20539,20540,20638,21542,21586,21672,21698,21967,21971,21972,22046,22071,22081,22082,22085,22313,22323,22493,22517,22553,22563,22586,22588,22630,22676,23009]]],["toward",[4,4,[[0,1,1,0,1,[[12,1,1,0,1]]],[6,1,1,1,2,[[229,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[25,1,1,3,4,[[849,1,1,3,4]]]],[330,7042,8943,21723]]],["until",[247,235,[[0,9,9,0,9,[[7,2,2,0,2],[31,2,2,2,4],[32,1,1,4,5],[33,1,1,5,6],[38,1,1,6,7],[40,1,1,7,8],[45,1,1,8,9]]],[1,17,15,9,24,[[58,1,1,9,10],[59,1,1,10,11],[61,6,5,11,16],[65,4,3,16,19],[66,1,1,19,20],[72,1,1,20,21],[82,1,1,21,22],[83,2,2,22,24]]],[2,38,35,24,59,[[96,1,1,24,25],[97,1,1,25,26],[100,9,8,26,34],[101,1,1,34,35],[103,1,1,35,36],[104,15,14,36,50],[105,1,1,50,51],[106,1,1,51,52],[108,2,2,52,54],[111,2,2,54,56],[112,1,1,56,57],[114,3,2,57,59]]],[3,19,19,59,78,[[120,2,2,59,61],[122,1,1,61,62],[125,1,1,62,63],[130,2,2,63,65],[135,5,5,65,70],[137,1,1,70,71],[139,1,1,71,72],[148,3,3,72,75],[151,3,3,75,78]]],[4,24,22,78,100,[[153,1,1,78,79],[154,2,2,79,81],[155,1,1,81,82],[159,3,3,82,85],[161,2,2,85,87],[163,1,1,87,88],[172,1,1,88,89],[174,1,1,89,90],[180,10,8,90,98],[183,2,2,98,100]]],[5,24,22,100,122,[[188,2,2,100,102],[190,3,2,102,104],[191,1,1,104,105],[192,1,1,105,106],[193,2,2,106,108],[194,2,2,108,110],[196,4,4,110,114],[197,2,2,114,116],[199,1,1,116,117],[206,3,2,117,119],[208,1,1,119,120],[209,2,2,120,122]]],[6,7,6,122,128,[[216,2,1,122,123],[228,1,1,123,124],[229,2,2,124,126],[230,2,2,126,128]]],[7,6,6,128,134,[[232,1,1,128,129],[233,2,2,129,131],[234,3,3,131,134]]],[8,16,15,134,149,[[236,3,2,134,136],[238,1,1,136,137],[242,1,1,137,138],[244,1,1,138,139],[246,1,1,139,140],[249,3,3,140,143],[250,2,2,143,145],[252,1,1,145,146],[254,1,1,146,147],[255,1,1,147,148],[260,1,1,148,149]]],[9,9,9,149,158,[[267,1,1,149,150],[270,1,1,150,151],[276,1,1,151,152],[281,2,2,152,154],[285,2,2,154,156],[287,1,1,156,157],[288,1,1,157,158]]],[10,12,12,158,170,[[293,2,2,158,160],[295,1,1,160,161],[296,1,1,161,162],[301,2,2,162,164],[305,1,1,164,165],[307,1,1,165,166],[308,2,2,166,168],[312,2,2,168,170]]],[11,7,7,170,177,[[318,1,1,170,171],[319,1,1,171,172],[320,2,2,172,174],[322,2,2,174,176],[336,1,1,176,177]]],[12,4,4,177,181,[[342,1,1,177,178],[343,1,1,178,179],[349,1,1,179,180],[365,1,1,180,181]]],[13,15,15,181,196,[[374,2,2,181,183],[382,1,1,183,184],[384,3,3,184,187],[387,1,1,187,188],[390,1,1,188,189],[395,2,2,189,191],[397,1,1,191,192],[401,1,1,192,193],[402,3,3,193,196]]],[14,4,4,196,200,[[406,1,1,196,197],[410,1,1,197,198],[411,1,1,198,199],[412,1,1,199,200]]],[15,3,3,200,203,[[419,1,1,200,201],[420,1,1,201,202],[424,1,1,202,203]]],[17,2,2,203,205,[[449,1,1,203,204],[461,1,1,204,205]]],[18,6,6,205,211,[[534,1,1,205,206],[548,1,1,206,207],[571,1,1,207,208],[581,1,1,208,209],[587,1,1,209,210],[600,1,1,210,211]]],[19,1,1,211,212,[[634,1,1,211,212]]],[21,2,2,212,214,[[673,1,1,212,213],[678,1,1,213,214]]],[22,3,3,214,217,[[704,1,1,214,215],[717,1,1,215,216],[740,1,1,216,217]]],[23,12,11,217,228,[[767,1,1,217,218],[771,3,3,218,221],[774,2,1,221,222],[776,1,1,222,223],[780,1,1,223,224],[781,1,1,224,225],[782,1,1,225,226],[788,1,1,226,227],[796,1,1,227,228]]],[25,3,3,228,231,[[822,1,1,228,229],[834,1,1,229,230],[847,1,1,230,231]]],[26,1,1,231,232,[[858,1,1,231,232]]],[27,1,1,232,233,[[868,1,1,232,233]]],[32,2,2,233,235,[[897,1,1,233,234],[899,1,1,234,235]]]],[188,190,932,952,963,985,1165,1244,1420,1760,1803,1822,1826,1831,1834,1838,1967,1970,1982,1995,2162,2481,2530,2531,2894,2950,3021,3022,3024,3025,3028,3029,3036,3037,3048,3157,3173,3174,3175,3176,3178,3179,3184,3185,3186,3187,3189,3190,3191,3195,3218,3250,3287,3294,3375,3399,3416,3491,3497,3746,3766,3828,3980,4127,4141,4296,4297,4299,4310,4311,4375,4440,4731,4736,4739,4857,4873,4877,4923,4952,4953,4978,5131,5134,5135,5164,5178,5213,5447,5472,5631,5632,5633,5635,5659,5662,5663,5672,5752,5758,5885,5891,5920,5933,5935,5959,5982,5989,6026,6031,6077,6090,6091,6097,6115,6121,6167,6378,6381,6443,6473,6475,6672,7023,7032,7049,7077,7080,7146,7156,7166,7175,7185,7186,7234,7235,7291,7363,7404,7456,7517,7532,7544,7578,7595,7670,7729,7771,7897,8034,8123,8245,8413,8417,8518,8535,8590,8640,8817,8818,8881,8918,9124,9148,9278,9331,9367,9370,9491,9507,9699,9710,9733,9738,9801,9804,10222,10450,10486,10742,11163,11354,11362,11521,11552,11568,11576,11639,11687,11819,11825,11855,11980,12009,12013,12014,12115,12230,12241,12266,12423,12496,12647,13194,13477,14769,14994,15444,15594,15787,16100,16593,17575,17644,18150,18418,18855,19504,19603,19604,19618,19691,19736,19865,19895,19923,20037,20310,20971,21302,21657,22015,22182,22636,22673]]],["unto",[387,352,[[0,19,17,0,17,[[9,2,1,0,1],[10,1,1,1,2],[11,2,1,2,3],[12,1,1,3,4],[13,3,3,4,7],[14,1,1,7,8],[18,2,2,8,10],[24,1,1,10,11],[25,1,1,11,12],[31,1,1,12,13],[34,1,1,13,14],[46,1,1,14,15],[47,1,1,15,16],[48,1,1,16,17]]],[1,10,9,17,26,[[59,1,1,17,18],[60,1,1,18,19],[61,1,1,19,20],[67,2,2,20,22],[72,2,1,22,23],[77,1,1,23,24],[78,1,1,24,25],[87,1,1,25,26]]],[2,12,12,26,38,[[95,1,1,26,27],[112,2,2,27,29],[113,1,1,29,30],[114,3,3,30,33],[116,5,5,33,38]]],[3,24,20,38,58,[[120,5,5,38,43],[124,2,1,43,44],[125,2,2,44,46],[129,3,3,46,49],[130,1,1,49,50],[137,6,3,50,53],[138,1,1,53,54],[139,1,1,54,55],[148,1,1,55,56],[149,1,1,56,57],[151,1,1,57,58]]],[4,35,33,58,91,[[153,5,5,58,63],[154,3,3,63,66],[155,7,5,66,71],[156,4,4,71,75],[161,1,1,75,76],[162,1,1,76,77],[163,3,3,77,80],[165,1,1,80,81],[180,2,2,81,83],[181,2,2,83,85],[182,1,1,85,86],[184,1,1,86,87],[186,4,4,87,91]]],[5,49,43,91,134,[[187,2,1,91,92],[189,1,1,92,93],[190,1,1,93,94],[191,1,1,94,95],[192,1,1,95,96],[193,3,2,96,98],[194,2,2,98,100],[195,1,1,100,101],[196,4,3,101,104],[197,4,2,104,106],[198,5,5,106,111],[199,11,10,111,121],[200,1,1,121,122],[201,3,3,122,125],[202,3,3,125,128],[205,3,3,128,131],[208,1,1,131,132],[209,2,2,132,134]]],[6,26,22,134,156,[[211,2,2,134,136],[213,1,1,136,137],[214,2,2,137,139],[216,1,1,139,140],[217,3,2,140,142],[219,3,2,142,144],[220,1,1,144,145],[221,6,4,145,149],[225,2,2,149,151],[228,3,3,151,154],[229,1,1,154,155],[230,1,1,155,156]]],[7,1,1,156,157,[[233,1,1,156,157]]],[8,17,15,157,172,[[240,1,1,157,158],[241,3,2,158,160],[242,1,1,160,161],[243,1,1,161,162],[247,1,1,162,163],[252,2,1,163,164],[255,1,1,164,165],[262,2,2,165,167],[264,3,3,167,170],[265,2,2,170,172]]],[9,5,5,172,177,[[272,1,1,172,173],[277,1,1,173,174],[284,1,1,174,175],[286,1,1,175,176],[289,1,1,176,177]]],[10,14,14,177,191,[[294,3,3,177,180],[295,1,1,180,181],[296,1,1,181,182],[297,1,1,182,183],[298,2,2,183,185],[299,2,2,185,187],[300,1,1,187,188],[302,2,2,188,190],[309,1,1,190,191]]],[11,18,18,191,209,[[314,1,1,191,192],[318,1,1,192,193],[319,1,1,193,194],[320,1,1,194,195],[322,1,1,195,196],[326,3,3,196,199],[327,1,1,199,200],[328,1,1,200,201],[329,2,2,201,203],[330,2,2,203,205],[332,1,1,205,206],[333,1,1,206,207],[336,1,1,207,208],[337,1,1,208,209]]],[12,15,15,209,224,[[341,5,5,209,214],[342,5,5,214,219],[344,1,1,219,220],[349,1,1,220,221],[350,2,2,221,223],[354,1,1,223,224]]],[13,15,15,224,239,[[371,1,1,224,225],[373,1,1,225,226],[374,1,1,226,227],[375,1,1,227,228],[376,1,1,228,229],[380,2,2,229,231],[381,1,1,231,232],[386,1,1,232,233],[387,1,1,233,234],[391,1,1,234,235],[392,1,1,235,236],[394,1,1,236,237],[396,1,1,237,238],[400,1,1,238,239]]],[14,2,2,239,241,[[411,2,2,239,241]]],[15,22,19,241,260,[[415,13,10,241,251],[416,1,1,251,252],[417,1,1,252,253],[420,2,2,253,255],[421,1,1,255,256],[423,1,1,256,257],[424,3,3,257,260]]],[16,3,3,260,263,[[426,1,1,260,261],[427,1,1,261,262],[433,1,1,262,263]]],[17,5,5,263,268,[[437,1,1,263,264],[442,1,1,264,265],[446,1,1,265,266],[467,1,1,266,267],[469,1,1,267,268]]],[18,14,13,268,281,[[513,1,1,268,269],[523,1,1,269,270],[527,1,1,270,271],[534,2,1,271,272],[542,1,1,272,273],[546,1,1,273,274],[549,1,1,274,275],[557,1,1,275,276],[571,1,1,276,277],[584,1,1,277,278],[585,1,1,278,279],[590,1,1,279,280],[595,1,1,280,281]]],[19,1,1,281,282,[[631,1,1,281,282]]],[22,9,9,282,291,[[679,1,1,282,283],[687,1,1,283,284],[693,3,3,284,287],[694,1,1,287,288],[705,1,1,288,289],[727,1,1,289,290],[735,1,1,290,291]]],[23,27,21,291,312,[[745,2,1,291,292],[747,1,1,292,293],[748,2,2,293,295],[750,2,1,295,296],[751,1,1,296,297],[752,2,1,297,298],[755,1,1,298,299],[769,2,2,299,301],[775,3,2,301,303],[776,2,2,303,305],[779,1,1,305,306],[780,1,1,306,307],[786,1,1,307,308],[788,2,2,308,310],[792,3,1,310,311],[796,1,1,311,312]]],[25,21,20,312,332,[[803,1,1,312,313],[821,2,2,313,315],[823,1,1,315,316],[830,1,1,316,317],[842,2,2,317,319],[848,1,1,319,320],[849,13,12,320,332]]],[26,3,3,332,335,[[850,1,1,332,333],[858,2,2,333,335]]],[27,1,1,335,336,[[875,1,1,335,336]]],[29,6,6,336,342,[[882,5,5,336,341],[884,1,1,341,342]]],[30,1,1,342,343,[[888,1,1,342,343]]],[31,1,1,343,344,[[892,1,1,343,344]]],[32,6,5,344,349,[[893,3,2,344,346],[896,1,1,346,347],[897,1,1,347,348],[898,1,1,348,349]]],[34,1,1,349,350,[[905,1,1,349,350]]],[37,3,1,350,351,[[924,3,1,350,351]]],[38,1,1,351,352,[[925,1,1,351,352]]]],[253,297,304,321,342,350,351,378,494,495,676,725,960,1031,1446,1466,1499,1783,1811,1845,2012,2013,2175,2335,2370,2637,2858,3418,3434,3449,3509,3519,3521,3573,3575,3576,3588,3593,3773,3778,3782,3786,3790,3943,3977,3986,4096,4097,4098,4153,4364,4366,4370,4405,4434,4727,4809,4870,4894,4899,4912,4916,4936,4960,4961,4974,4983,4985,4989,4991,4992,5015,5036,5052,5053,5164,5194,5212,5220,5232,5279,5646,5675,5683,5690,5710,5780,5840,5841,5842,5845,5855,5908,5919,5943,5974,5981,6002,6030,6031,6064,6074,6075,6105,6115,6124,6131,6132,6133,6135,6137,6157,6158,6159,6160,6163,6164,6165,6179,6180,6181,6201,6207,6249,6265,6268,6270,6275,6331,6349,6354,6429,6468,6469,6530,6535,6571,6610,6615,6678,6707,6718,6794,6806,6815,6842,6845,6851,6862,6943,6948,6994,7005,7006,7054,7099,7172,7324,7343,7349,7366,7377,7462,7670,7735,7936,7938,7970,7973,7975,7995,8003,8180,8282,8496,8557,8672,8856,8865,8877,8887,8920,8943,8993,9050,9064,9072,9091,9170,9181,9395,9573,9676,9722,9749,9820,9903,9909,9921,9930,9969,10006,10024,10028,10032,10115,10134,10209,10224,10416,10418,10424,10426,10428,10436,10437,10439,10451,10454,10563,10760,10765,10769,10868,11277,11332,11362,11390,11414,11484,11488,11509,11613,11634,11717,11753,11773,11837,11939,12243,12244,12328,12335,12340,12342,12343,12347,12351,12353,12354,12358,12365,12396,12510,12511,12543,12618,12661,12662,12663,12703,12737,12826,12898,13012,13115,13640,13719,14443,14623,14669,14778,14862,14936,15008,15209,15446,15717,15746,15816,15896,16508,17660,17842,17964,17965,17968,17977,18163,18642,18774,18949,19027,19037,19045,19102,19144,19163,19233,19537,19567,19725,19731,19751,19762,19837,19844,19976,20020,20022,20114,20281,20495,20924,20926,20980,21193,21543,21546,21689,21704,21705,21706,21707,21708,21709,21710,21725,21726,21727,21728,21729,21758,22013,22014,22283,22416,22418,22419,22420,22421,22464,22530,22577,22588,22594,22628,22637,22653,22781,23078,23100]]],["very",[2,2,[[18,2,2,0,2,[[548,1,1,0,1],[624,1,1,1,2]]]],[14995,16366]]],["when",[2,2,[[6,1,1,0,1,[[226,1,1,0,1]]],[18,1,1,1,2,[[548,1,1,1,2]]]],[6951,14994]]],["while",[5,5,[[1,1,1,0,1,[[82,1,1,0,1]]],[6,1,1,1,2,[[213,1,1,1,2]]],[8,1,1,2,3,[[249,1,1,2,3]]],[15,1,1,3,4,[[419,1,1,3,4]]],[33,1,1,4,5,[[900,1,1,4,5]]]],[2495,6594,7527,12423,22694]]],["whilst",[3,3,[[6,1,1,0,1,[[216,1,1,0,1]]],[17,1,1,1,2,[[467,1,1,1,2]]],[18,1,1,2,3,[[618,1,1,2,3]]]],[6685,13639,16286]]],["with",[2,2,[[6,1,1,0,1,[[225,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]]],[6934,11821]]],["within",[2,2,[[2,2,2,0,2,[[114,2,2,0,2]]]],[3498,3499]]],["without",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19787]]],["yet",[3,3,[[19,1,1,0,1,[[635,1,1,0,1]]],[31,1,1,1,2,[[892,1,1,1,2]]],[36,1,1,2,3,[[910,1,1,2,3]]]],[16628,22570,22874]]]]},{"k":"H5705","v":[["*",[35,31,[[14,9,6,0,6,[[406,2,2,0,2],[407,2,2,2,4],[408,1,1,4,5],[409,4,1,5,6]]],[26,26,25,6,31,[[851,3,3,6,9],[853,6,6,9,15],[854,1,1,15,16],[855,5,5,16,21],[856,11,10,21,31]]]],[12131,12134,12139,12150,12166,12195,21767,21778,21792,21845,21854,21860,21862,21869,21870,21895,21912,21917,21919,21929,21931,21937,21942,21944,21945,21946,21951,21955,21958,21959,21961]]],["+",[15,14,[[26,15,14,0,14,[[851,2,2,0,2],[853,4,4,2,6],[854,1,1,6,7],[855,1,1,7,8],[856,7,6,8,14]]]],[21767,21778,21860,21862,21869,21870,21895,21929,21937,21942,21944,21951,21955,21961]]],["Unto",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12195]]],["at",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21845]]],["for",[2,2,[[26,2,2,0,2,[[855,1,1,0,1],[856,1,1,1,2]]]],[21912,21945]]],["on",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12166]]],["till",[3,3,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,2,2,1,3,[[851,1,1,1,2],[855,1,1,2,3]]]],[12139,21792,21919]]],["to",[5,3,[[14,3,1,0,1,[[409,3,1,0,1]]],[26,2,2,1,3,[[853,1,1,1,2],[856,1,1,2,3]]]],[12195,21854,21946]]],["until",[3,3,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,1,1,2,3,[[856,1,1,2,3]]]],[12131,12150,21958]]],["unto",[3,3,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,2,2,1,3,[[855,1,1,1,2],[856,1,1,2,3]]]],[12134,21931,21959]]],["within",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21917]]]]},{"k":"H5706","v":[["prey",[3,3,[[0,1,1,0,1,[[48,1,1,0,1]]],[22,1,1,1,2,[[711,1,1,1,2]]],[35,1,1,2,3,[[908,1,1,2,3]]]],[1500,18302,22828]]]]},{"k":"H5707","v":[["*",[69,59,[[0,4,4,0,4,[[30,4,4,0,4]]],[1,3,3,4,7,[[69,1,1,4,5],[71,1,1,5,6],[72,1,1,6,7]]],[2,1,1,7,8,[[94,1,1,7,8]]],[3,3,2,8,10,[[121,1,1,8,9],[151,2,1,9,10]]],[4,14,9,10,19,[[157,1,1,10,11],[169,4,2,11,13],[171,6,3,13,16],[183,3,3,16,19]]],[5,5,4,19,23,[[208,3,3,19,22],[210,2,1,22,23]]],[7,3,3,23,26,[[235,3,3,23,26]]],[8,3,1,26,27,[[247,3,1,26,27]]],[17,3,3,27,30,[[445,1,1,27,28],[451,2,2,28,30]]],[18,3,3,30,33,[[504,1,1,30,31],[512,1,1,31,32],[566,1,1,32,33]]],[19,11,10,33,43,[[633,1,1,33,34],[639,1,1,34,35],[641,3,2,35,37],[646,3,3,37,40],[648,1,1,40,41],[651,1,1,41,42],[652,1,1,42,43]]],[22,8,8,43,51,[[686,1,1,43,44],[697,1,1,44,45],[721,3,3,45,48],[722,2,2,48,50],[733,1,1,50,51]]],[23,6,6,51,57,[[773,1,1,51,52],[776,4,4,52,56],[786,1,1,56,57]]],[32,1,1,57,58,[[893,1,1,57,58]]],[38,1,1,58,59,[[927,1,1,58,59]]]],[917,921,923,925,2067,2126,2145,2831,3805,4875,5073,5370,5371,5421,5422,5424,5747,5749,5754,6453,6454,6460,6498,7199,7200,7201,7465,13103,13246,13257,14297,14421,15363,16559,16736,16777,16797,16930,16934,16953,17012,17107,17131,17809,18024,18514,18515,18517,18541,18542,18744,19658,19741,19743,19756,19775,19980,22581,23125]]],["witness",[45,41,[[0,4,4,0,4,[[30,4,4,0,4]]],[1,3,3,4,7,[[69,1,1,4,5],[71,1,1,5,6],[72,1,1,6,7]]],[2,1,1,7,8,[[94,1,1,7,8]]],[3,2,2,8,10,[[121,1,1,8,9],[151,1,1,9,10]]],[4,9,8,10,18,[[157,1,1,10,11],[169,1,1,11,12],[171,4,3,12,15],[183,3,3,15,18]]],[5,3,3,18,21,[[208,3,3,18,21]]],[8,3,1,21,22,[[247,3,1,21,22]]],[17,2,2,22,24,[[451,2,2,22,24]]],[18,1,1,24,25,[[566,1,1,24,25]]],[19,11,10,25,35,[[633,1,1,25,26],[639,1,1,26,27],[641,3,2,27,29],[646,3,3,29,32],[648,1,1,32,33],[651,1,1,33,34],[652,1,1,34,35]]],[22,2,2,35,37,[[697,1,1,35,36],[733,1,1,36,37]]],[23,2,2,37,39,[[773,1,1,37,38],[786,1,1,38,39]]],[32,1,1,39,40,[[893,1,1,39,40]]],[38,1,1,40,41,[[927,1,1,40,41]]]],[917,921,923,925,2067,2126,2145,2831,3805,4875,5073,5370,5421,5422,5424,5747,5749,5754,6453,6454,6460,7465,13246,13257,15363,16559,16736,16777,16797,16930,16934,16953,17012,17107,17131,18024,18744,19658,19980,22581,23125]]],["witnesses",[24,21,[[3,1,1,0,1,[[151,1,1,0,1]]],[4,5,3,1,4,[[169,3,2,1,3],[171,2,1,3,4]]],[5,2,1,4,5,[[210,2,1,4,5]]],[7,3,3,5,8,[[235,3,3,5,8]]],[17,1,1,8,9,[[445,1,1,8,9]]],[18,2,2,9,11,[[504,1,1,9,10],[512,1,1,10,11]]],[22,6,6,11,17,[[686,1,1,11,12],[721,3,3,12,15],[722,2,2,15,17]]],[23,4,4,17,21,[[776,4,4,17,21]]]],[4875,5370,5371,5421,6498,7199,7200,7201,13103,14297,14421,17809,18514,18515,18517,18541,18542,19741,19743,19756,19775]]]]},{"k":"H5708","v":[["filthy",[1,1,[[22,1,1,0,1,[[742,1,1,0,1]]]],[18891]]]]},{"k":"H5709","v":[["*",[9,9,[[26,9,9,0,9,[[851,1,1,0,1],[852,1,1,1,2],[853,1,1,2,3],[854,1,1,3,4],[855,2,2,4,6],[856,3,3,6,9]]]],[21779,21834,21868,21894,21913,21917,21945,21947,21959]]],["altereth",[2,2,[[26,2,2,0,2,[[855,2,2,0,2]]]],[21913,21917]]],["away",[3,3,[[26,3,3,0,3,[[856,3,3,0,3]]]],[21945,21947,21959]]],["departed",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21868]]],["passed",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21834]]],["removeth",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21779]]],["took",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21894]]]]},{"k":"H5710","v":[["*",[10,10,[[17,2,2,0,2,[[463,1,1,0,1],[475,1,1,1,2]]],[19,1,1,2,3,[[652,1,1,2,3]]],[22,1,1,3,4,[[739,1,1,3,4]]],[23,2,2,4,6,[[748,1,1,4,5],[775,1,1,5,6]]],[25,3,3,6,9,[[817,2,2,6,8],[824,1,1,8,9]]],[27,1,1,9,10,[[863,1,1,9,10]]]],[13512,13874,17133,18853,19057,19695,20773,20775,21047,22118]]],["Deck",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13874]]],["adorned",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19695]]],["adorneth",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18853]]],["away",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17133]]],["decked",[3,3,[[25,2,2,0,2,[[817,2,2,0,2]]],[27,1,1,2,3,[[863,1,1,2,3]]]],[20773,20775,22118]]],["deckedst",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21047]]],["deckest",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19057]]],["passed",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13512]]]]},{"k":"H5711","v":[["Adah",[8,8,[[0,8,8,0,8,[[3,3,3,0,3],[35,5,5,3,8]]]],[98,99,102,1042,1044,1050,1052,1056]]]]},{"k":"H5712","v":[["*",[149,140,[[1,15,15,0,15,[[61,4,4,0,4],[65,5,5,4,9],[66,1,1,9,10],[83,1,1,10,11],[84,3,3,11,14],[87,1,1,14,15]]],[2,12,12,15,27,[[93,2,2,15,17],[97,3,3,17,20],[98,1,1,20,21],[99,2,2,21,23],[105,1,1,23,24],[108,1,1,24,25],[113,2,2,25,27]]],[3,83,75,27,102,[[117,4,4,27,31],[119,1,1,31,32],[120,1,1,32,33],[124,2,2,33,35],[126,2,2,35,37],[129,2,1,37,38],[130,8,8,38,46],[131,7,6,46,52],[132,19,17,52,69],[135,1,1,69,70],[136,8,7,70,77],[141,2,2,77,79],[142,4,3,79,82],[143,10,9,82,91],[147,6,6,91,97],[148,2,2,97,99],[151,4,3,99,102]]],[5,15,14,102,116,[[195,6,5,102,107],[204,1,1,107,108],[206,2,2,108,110],[208,6,6,110,116]]],[6,5,5,116,121,[[224,1,1,116,117],[230,1,1,117,118],[231,3,3,118,121]]],[10,2,2,121,123,[[298,1,1,121,122],[302,1,1,122,123]]],[13,1,1,123,124,[[371,1,1,123,124]]],[17,2,2,124,126,[[450,1,1,124,125],[451,1,1,125,126]]],[18,10,10,126,136,[[478,1,1,126,127],[484,1,1,127,128],[499,1,1,128,129],[545,1,1,129,130],[551,1,1,130,131],[559,1,1,131,132],[563,1,1,132,133],[583,2,2,133,135],[588,1,1,135,136]]],[19,1,1,136,137,[[632,1,1,136,137]]],[23,2,2,137,139,[[750,1,1,137,138],[774,1,1,138,139]]],[27,1,1,139,140,[[868,1,1,139,140]]]],[1819,1822,1835,1863,1948,1949,1956,1957,1969,1984,2527,2532,2535,2551,2658,2808,2810,2920,2921,2922,2958,2983,2994,3206,3283,3460,3462,3606,3620,3622,3657,3699,3777,3948,3959,3990,3991,4101,4109,4110,4113,4115,4118,4135,4143,4144,4177,4178,4179,4186,4188,4189,4196,4197,4199,4200,4203,4205,4210,4213,4215,4216,4218,4220,4234,4235,4236,4239,4240,4298,4312,4313,4319,4322,4333,4338,4340,4477,4478,4491,4498,4499,4556,4557,4568,4570,4571,4573,4574,4575,4576,4676,4677,4680,4690,4691,4707,4720,4722,4857,4869,4870,6052,6055,6056,6058,6064,6294,6378,6381,6438,6442,6443,6444,6446,6456,6917,7055,7112,7115,7118,8990,9171,11274,13237,13245,13944,14002,14220,14930,15050,15234,15298,15668,15669,15794,16531,19107,19687,22190]]],["+",[4,4,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,2,2,1,3,[[132,1,1,1,2],[136,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]]],[1835,4203,4319,19107]]],["assemblies",[1,1,[[18,1,1,0,1,[[563,1,1,0,1]]]],[15298]]],["assembly",[7,7,[[2,1,1,0,1,[[97,1,1,0,1]]],[3,4,4,1,5,[[124,1,1,1,2],[126,2,2,2,4],[132,1,1,4,5]]],[18,1,1,5,6,[[499,1,1,5,6]]],[19,1,1,6,7,[[632,1,1,6,7]]]],[2921,3948,3990,3991,4196,14220,16531]]],["company",[13,12,[[3,10,9,0,9,[[130,1,1,0,1],[132,5,5,1,6],[142,2,2,6,8],[143,2,1,8,9]]],[17,1,1,9,10,[[451,1,1,9,10]]],[18,2,2,10,12,[[583,2,2,10,12]]]],[4115,4199,4200,4205,4210,4234,4498,4499,4557,13245,15668,15669]]],["congregation",[121,116,[[1,14,14,0,14,[[61,3,3,0,3],[65,5,5,3,8],[66,1,1,8,9],[83,1,1,9,10],[84,3,3,10,13],[87,1,1,13,14]]],[2,10,10,14,24,[[93,2,2,14,16],[97,2,2,16,18],[98,1,1,18,19],[99,1,1,19,20],[105,1,1,20,21],[108,1,1,21,22],[113,2,2,22,24]]],[3,67,63,24,87,[[117,4,4,24,28],[119,1,1,28,29],[120,1,1,29,30],[124,1,1,30,31],[129,2,1,31,32],[130,7,7,32,39],[131,7,6,39,45],[132,12,11,45,56],[135,1,1,56,57],[136,7,7,57,64],[141,2,2,64,66],[142,2,2,66,68],[143,8,8,68,76],[147,6,6,76,82],[148,2,2,82,84],[151,4,3,84,87]]],[5,15,14,87,101,[[195,6,5,87,92],[204,1,1,92,93],[206,2,2,93,95],[208,6,6,95,101]]],[6,4,4,101,105,[[230,1,1,101,102],[231,3,3,102,105]]],[10,2,2,105,107,[[298,1,1,105,106],[302,1,1,106,107]]],[13,1,1,107,108,[[371,1,1,107,108]]],[17,1,1,108,109,[[450,1,1,108,109]]],[18,5,5,109,114,[[478,1,1,109,110],[484,1,1,110,111],[551,1,1,111,112],[559,1,1,112,113],[588,1,1,113,114]]],[23,1,1,114,115,[[774,1,1,114,115]]],[27,1,1,115,116,[[868,1,1,115,116]]]],[1819,1822,1863,1948,1949,1956,1957,1969,1984,2527,2532,2535,2551,2658,2808,2810,2920,2922,2958,2994,3206,3283,3460,3462,3606,3620,3622,3657,3699,3777,3959,4101,4109,4110,4113,4118,4135,4143,4144,4177,4178,4179,4186,4188,4189,4197,4203,4213,4215,4216,4218,4220,4235,4236,4239,4240,4298,4312,4313,4319,4322,4333,4338,4340,4477,4478,4491,4498,4556,4568,4570,4571,4573,4574,4575,4576,4676,4677,4680,4690,4691,4707,4720,4722,4857,4869,4870,6052,6055,6056,6058,6064,6294,6378,6381,6438,6442,6443,6444,6446,6456,7055,7112,7115,7118,8990,9171,11274,13237,13944,14002,15050,15234,15794,19687,22190]]],["multitude",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14930]]],["people",[1,1,[[2,1,1,0,1,[[99,1,1,0,1]]]],[2983]]],["swarm",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6917]]]]},{"k":"H5713","v":[["*",[26,25,[[0,2,2,0,2,[[20,1,1,0,1],[30,1,1,1,2]]],[4,3,3,2,5,[[156,1,1,2,3],[158,2,2,3,5]]],[5,2,1,5,6,[[210,2,1,5,6]]],[18,19,19,6,25,[[502,1,1,6,7],[555,1,1,7,8],[570,1,1,8,9],[576,1,1,9,10],[596,14,14,10,24],[609,1,1,24,25]]]],[543,925,5049,5103,5106,6503,14261,15169,15431,15506,15900,15920,15922,15944,15957,15977,15993,16017,16023,16036,16044,16050,16065,16066,16163]]],["+",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16050]]],["testimonies",[20,20,[[4,3,3,0,3,[[156,1,1,0,1],[158,2,2,1,3]]],[18,17,17,3,20,[[502,1,1,3,4],[555,1,1,4,5],[570,1,1,5,6],[576,1,1,6,7],[596,13,13,7,20]]]],[5049,5103,5106,14261,15169,15431,15506,15900,15920,15922,15944,15957,15977,15993,16017,16023,16036,16044,16065,16066]]],["testimony",[1,1,[[18,1,1,0,1,[[609,1,1,0,1]]]],[16163]]],["witness",[4,3,[[0,2,2,0,2,[[20,1,1,0,1],[30,1,1,1,2]]],[5,2,1,2,3,[[210,2,1,2,3]]]],[543,925,6503]]]]},{"k":"H5714","v":[["Iddo",[10,10,[[10,1,1,0,1,[[294,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]],[13,2,2,2,4,[[378,1,1,2,3],[379,1,1,3,4]]],[14,2,2,4,6,[[407,1,1,4,5],[408,1,1,5,6]]],[15,2,2,6,8,[[424,2,2,6,8]]],[37,2,2,8,10,[[911,2,2,8,10]]]],[8858,10475,11452,11475,12135,12165,12628,12640,22879,22885]]]]},{"k":"H5715","v":[["*",[59,57,[[1,21,20,0,20,[[65,1,1,0,1],[74,3,3,1,4],[75,2,2,4,6],[76,1,1,6,7],[79,4,3,7,10],[80,2,2,10,12],[81,1,1,12,13],[83,1,1,13,14],[87,1,1,14,15],[88,1,1,15,16],[89,4,4,16,20]]],[2,2,2,20,22,[[105,1,1,20,21],[113,1,1,21,22]]],[3,12,11,22,33,[[117,3,2,22,24],[120,1,1,24,25],[123,1,1,25,26],[125,1,1,26,27],[126,1,1,27,28],[133,4,4,28,32],[134,1,1,32,33]]],[5,1,1,33,34,[[190,1,1,33,34]]],[10,1,1,34,35,[[292,1,1,34,35]]],[11,3,3,35,38,[[323,1,1,35,36],[329,1,1,36,37],[335,1,1,37,38]]],[12,1,1,38,39,[[366,1,1,38,39]]],[13,3,3,39,42,[[389,1,1,39,40],[390,1,1,40,41],[400,1,1,41,42]]],[15,1,1,42,43,[[421,1,1,42,43]]],[18,13,13,43,56,[[496,1,1,43,44],[555,1,1,44,45],[558,1,1,45,46],[596,9,9,46,55],[599,1,1,55,56]]],[23,1,1,56,57,[[788,1,1,56,57]]]],[1981,2211,2216,2217,2268,2269,2293,2388,2408,2418,2427,2438,2453,2525,2654,2699,2710,2712,2727,2728,3214,3449,3654,3657,3748,3939,3980,3999,4248,4251,4252,4254,4259,5926,8773,9841,9998,10168,11183,11667,11683,11964,12545,14175,15118,15222,15912,15929,15934,15986,15997,16009,16027,16042,16055,16093,20033]]],["+",[2,2,[[1,1,1,0,1,[[74,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[2217,16055]]],["Testimony",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1981]]],["testimonies",[14,14,[[10,1,1,0,1,[[292,1,1,0,1]]],[11,2,2,1,3,[[329,1,1,1,2],[335,1,1,2,3]]],[12,1,1,3,4,[[366,1,1,3,4]]],[13,1,1,4,5,[[400,1,1,4,5]]],[15,1,1,5,6,[[421,1,1,5,6]]],[18,7,7,6,13,[[596,7,7,6,13]]],[23,1,1,13,14,[[788,1,1,13,14]]]],[8773,9998,10168,11183,11964,12545,15912,15929,15934,15997,16009,16027,16042,20033]]],["testimony",[38,36,[[1,19,18,0,18,[[74,2,2,0,2],[75,2,2,2,4],[76,1,1,4,5],[79,4,3,5,8],[80,2,2,8,10],[81,1,1,10,11],[83,1,1,11,12],[87,1,1,12,13],[88,1,1,13,14],[89,4,4,14,18]]],[2,2,2,18,20,[[105,1,1,18,19],[113,1,1,19,20]]],[3,9,8,20,28,[[117,3,2,20,22],[120,1,1,22,23],[123,1,1,23,24],[125,1,1,24,25],[126,1,1,25,26],[133,2,2,26,28]]],[5,1,1,28,29,[[190,1,1,28,29]]],[11,1,1,29,30,[[323,1,1,29,30]]],[13,1,1,30,31,[[389,1,1,30,31]]],[18,5,5,31,36,[[496,1,1,31,32],[555,1,1,32,33],[558,1,1,33,34],[596,1,1,34,35],[599,1,1,35,36]]]],[2211,2216,2268,2269,2293,2388,2408,2418,2427,2438,2453,2525,2654,2699,2710,2712,2727,2728,3214,3449,3654,3657,3748,3939,3980,3999,4248,4254,5926,9841,11667,14175,15118,15222,15986,16093]]],["witness",[4,4,[[3,3,3,0,3,[[133,2,2,0,2],[134,1,1,2,3]]],[13,1,1,3,4,[[390,1,1,3,4]]]],[4251,4252,4259,11683]]]]},{"k":"H5716","v":[["*",[14,13,[[1,3,3,0,3,[[82,3,3,0,3]]],[9,1,1,3,4,[[267,1,1,3,4]]],[18,2,2,4,6,[[509,1,1,4,5],[580,1,1,5,6]]],[22,1,1,6,7,[[727,1,1,6,7]]],[23,2,2,7,9,[[746,1,1,7,8],[748,1,1,8,9]]],[25,5,4,9,13,[[808,1,1,9,10],[817,3,2,10,12],[824,1,1,12,13]]]],[2477,2478,2479,8046,14364,15554,18654,18997,19057,20597,20769,20773,21047]]],["excellent",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20769]]],["mouth",[2,2,[[18,2,2,0,2,[[509,1,1,0,1],[580,1,1,1,2]]]],[14364,15554]]],["ornament",[2,2,[[22,1,1,0,1,[[727,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]]],[18654,20597]]],["ornaments",[9,9,[[1,3,3,0,3,[[82,3,3,0,3]]],[9,1,1,3,4,[[267,1,1,3,4]]],[23,2,2,4,6,[[746,1,1,4,5],[748,1,1,5,6]]],[25,3,3,6,9,[[817,2,2,6,8],[824,1,1,8,9]]]],[2477,2478,2479,8046,18997,19057,20769,20773,21047]]]]},{"k":"H5717","v":[["Adiel",[3,3,[[12,3,3,0,3,[[341,1,1,0,1],[346,1,1,1,2],[364,1,1,2,3]]]],[10421,10627,11134]]]]},{"k":"H5718","v":[["Adaiah",[9,9,[[11,1,1,0,1,[[334,1,1,0,1]]],[12,3,3,1,4,[[343,1,1,1,2],[345,1,1,2,3],[346,1,1,3,4]]],[13,1,1,4,5,[[389,1,1,4,5]]],[14,2,2,5,7,[[412,2,2,5,7]]],[15,2,2,7,9,[[423,2,2,7,9]]]],[10146,10495,10596,10627,11657,12281,12291,12593,12600]]]]},{"k":"H5719","v":[["pleasures",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18607]]]]},{"k":"H5720","v":[["Adin",[4,4,[[14,2,2,0,2,[[404,1,1,0,1],[410,1,1,1,2]]],[15,2,2,2,4,[[419,1,1,2,3],[422,1,1,3,4]]]],[12042,12207,12440,12565]]]]},{"k":"H5721","v":[["Adina",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10715]]]]},{"k":"H5722","v":[["Adino",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8661]]]]},{"k":"H5723","v":[["Adithaim",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6238]]]]},{"k":"H5724","v":[["Adlai",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11138]]]]},{"k":"H5725","v":[["Adullam",[8,8,[[5,2,2,0,2,[[198,1,1,0,1],[201,1,1,1,2]]],[8,1,1,2,3,[[257,1,1,2,3]]],[9,1,1,3,4,[[289,1,1,3,4]]],[12,1,1,4,5,[[348,1,1,4,5]]],[13,1,1,5,6,[[377,1,1,5,6]]],[15,1,1,6,7,[[423,1,1,6,7]]],[32,1,1,7,8,[[893,1,1,7,8]]]],[6145,6237,7788,8666,10688,11421,12618,22594]]]]},{"k":"H5726","v":[["Adullamite",[3,3,[[0,3,3,0,3,[[37,3,3,0,3]]]],[1120,1131,1139]]]]},{"k":"H5727","v":[["themselves",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12536]]]]},{"k":"H5728","v":[["yet",[2,2,[[20,2,2,0,2,[[662,2,2,0,2]]]],[17383,17384]]]]},{"k":"H5729","v":[["Eden",[3,3,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]],[25,1,1,2,3,[[828,1,1,2,3]]]],[10073,18364,21144]]]]},{"k":"H5730","v":[["*",[4,4,[[0,1,1,0,1,[[17,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]],[18,1,1,2,3,[[513,1,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]]],[436,8046,14446,20246]]],["+",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20246]]],["delights",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8046]]],["pleasure",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[436]]],["pleasures",[1,1,[[18,1,1,0,1,[[513,1,1,0,1]]]],[14446]]]]},{"k":"H5731","v":[["*",[16,15,[[0,6,6,0,6,[[1,3,3,0,3],[2,2,2,3,5],[3,1,1,5,6]]],[13,2,2,6,8,[[395,1,1,6,7],[397,1,1,7,8]]],[22,1,1,8,9,[[729,1,1,8,9]]],[25,6,5,9,14,[[829,1,1,9,10],[832,4,3,10,13],[837,1,1,13,14]]],[28,1,1,14,15,[[877,1,1,14,15]]]],[38,40,45,78,79,95,11803,11869,18676,21170,21239,21246,21248,21394,22314]]],["+",[2,2,[[0,2,2,0,2,[[1,1,1,0,1],[2,1,1,1,2]]]],[40,79]]],["Eden",[14,13,[[0,4,4,0,4,[[1,2,2,0,2],[2,1,1,2,3],[3,1,1,3,4]]],[13,2,2,4,6,[[395,1,1,4,5],[397,1,1,5,6]]],[22,1,1,6,7,[[729,1,1,6,7]]],[25,6,5,7,12,[[829,1,1,7,8],[832,4,3,8,11],[837,1,1,11,12]]],[28,1,1,12,13,[[877,1,1,12,13]]]],[38,45,78,95,11803,11869,18676,21170,21239,21246,21248,21394,22314]]]]},{"k":"H5732","v":[["*",[13,11,[[26,13,11,0,11,[[851,3,3,0,3],[852,2,2,3,5],[853,4,4,5,9],[856,4,2,9,11]]]],[21766,21767,21779,21812,21822,21853,21860,21862,21869,21945,21958]]],["time",[7,6,[[26,7,6,0,6,[[851,2,2,0,2],[852,2,2,2,4],[856,3,2,4,6]]]],[21766,21767,21812,21822,21945,21958]]],["times",[6,6,[[26,6,6,0,6,[[851,1,1,0,1],[853,4,4,1,5],[856,1,1,5,6]]]],[21779,21853,21860,21862,21869,21958]]]]},{"k":"H5733","v":[["Adna",[2,2,[[14,1,1,0,1,[[412,1,1,0,1]]],[15,1,1,1,2,[[424,1,1,1,2]]]],[12282,12639]]]]},{"k":"H5734","v":[["Adnah",[2,2,[[12,1,1,0,1,[[349,1,1,0,1]]],[13,1,1,1,2,[[383,1,1,1,2]]]],[10740,11537]]]]},{"k":"H5735","v":[["Adadah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6224]]]]},{"k":"H5736","v":[["*",[9,8,[[1,5,4,0,4,[[65,2,2,0,2],[75,3,2,2,4]]],[2,1,1,4,5,[[114,1,1,4,5]]],[3,3,3,5,8,[[119,3,3,5,8]]]],[1965,1970,2247,2248,3496,3738,3740,3741]]],["+",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1965]]],["more",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3738]]],["number",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3740]]],["over",[2,2,[[1,1,1,0,1,[[65,1,1,0,1]]],[3,1,1,1,2,[[119,1,1,1,2]]]],[1970,3741]]],["overplus",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3496]]],["remaineth",[3,2,[[1,3,2,0,2,[[75,3,2,0,2]]]],[2247,2248]]]]},{"k":"H5737","v":[["*",[11,11,[[8,1,1,0,1,[[265,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[10,1,1,2,3,[[294,1,1,2,3]]],[12,2,2,3,5,[[349,2,2,3,5]]],[22,5,5,5,10,[[683,1,1,5,6],[685,1,1,6,7],[712,1,1,7,8],[718,1,1,8,9],[737,1,1,9,10]]],[35,1,1,10,11,[[908,1,1,10,11]]]],[7997,8471,8871,10753,10758,17745,17807,18319,18446,18815,22825]]],["+",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18815]]],["digged",[2,2,[[22,2,2,0,2,[[683,1,1,0,1],[685,1,1,1,2]]]],[17745,17807]]],["fail",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18319]]],["faileth",[2,2,[[22,1,1,0,1,[[718,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[18446,22825]]],["keep",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10758]]],["lacked",[2,2,[[9,1,1,0,1,[[283,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]]],[8471,8871]]],["lacking",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7997]]],["rank",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10753]]]]},{"k":"H5738","v":[["Ader",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10590]]]]},{"k":"H5739","v":[["*",[39,34,[[0,10,6,0,6,[[28,4,3,0,3],[29,1,1,3,4],[31,5,2,4,6]]],[6,1,1,6,7,[[215,1,1,6,7]]],[8,1,1,7,8,[[252,1,1,7,8]]],[13,1,1,8,9,[[398,1,1,8,9]]],[17,1,1,9,10,[[459,1,1,9,10]]],[18,1,1,10,11,[[555,1,1,10,11]]],[19,1,1,11,12,[[654,1,1,11,12]]],[21,5,5,12,17,[[671,1,1,12,13],[674,2,2,13,15],[676,2,2,15,17]]],[22,3,3,17,20,[[695,1,1,17,18],[710,1,1,18,19],[718,1,1,19,20]]],[23,6,6,20,26,[[750,1,1,20,21],[757,2,2,21,23],[775,2,2,23,25],[795,1,1,25,26]]],[25,1,1,26,27,[[835,1,1,26,27]]],[28,2,1,27,28,[[876,2,1,27,28]]],[32,3,3,28,31,[[894,1,1,28,29],[896,1,1,29,30],[897,1,1,30,31]]],[35,1,1,31,32,[[907,1,1,31,32]]],[37,1,1,32,33,[[920,1,1,32,33]]],[38,1,1,33,34,[[925,1,1,33,34]]]],[797,798,803,870,944,947,6639,7652,11903,13438,15165,17192,17544,17583,17584,17619,17620,17985,18273,18431,19092,19283,19286,19701,19715,20235,21325,22309,22607,22628,22641,22819,23019,23103]]],["+",[4,3,[[0,2,1,0,1,[[31,2,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[37,1,1,2,3,[[920,1,1,2,3]]]],[944,7652,23019]]],["drove",[2,1,[[0,2,1,0,1,[[31,2,1,0,1]]]],[944]]],["droves",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[947]]],["flock",[14,14,[[18,1,1,0,1,[[555,1,1,0,1]]],[21,4,4,1,5,[[674,2,2,1,3],[676,2,2,3,5]]],[22,1,1,5,6,[[718,1,1,5,6]]],[23,4,4,6,10,[[757,2,2,6,8],[775,1,1,8,9],[795,1,1,9,10]]],[25,1,1,10,11,[[835,1,1,10,11]]],[32,2,2,11,13,[[894,1,1,11,12],[896,1,1,12,13]]],[38,1,1,13,14,[[925,1,1,13,14]]]],[15165,17583,17584,17619,17620,18431,19283,19286,19701,20235,21325,22607,22628,23103]]],["flocks",[16,15,[[0,5,4,0,4,[[28,4,3,0,3],[29,1,1,3,4]]],[6,1,1,4,5,[[215,1,1,4,5]]],[13,1,1,5,6,[[398,1,1,5,6]]],[17,1,1,6,7,[[459,1,1,6,7]]],[21,1,1,7,8,[[671,1,1,7,8]]],[22,2,2,8,10,[[695,1,1,8,9],[710,1,1,9,10]]],[23,2,2,10,12,[[750,1,1,10,11],[775,1,1,11,12]]],[28,1,1,12,13,[[876,1,1,12,13]]],[32,1,1,13,14,[[897,1,1,13,14]]],[35,1,1,14,15,[[907,1,1,14,15]]]],[797,798,803,870,6639,11903,13438,17544,17985,18273,19092,19715,22309,22641,22819]]],["herds",[2,2,[[19,1,1,0,1,[[654,1,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]]],[17192,22309]]]]},{"k":"H5740","v":[["Eder",[3,3,[[5,1,1,0,1,[[201,1,1,0,1]]],[12,2,2,1,3,[[360,1,1,1,2],[361,1,1,2,3]]]],[6223,11006,11045]]]]},{"k":"H5741","v":[["Adriel",[2,2,[[8,1,1,0,1,[[253,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]]],[7695,8588]]]]},{"k":"H5742","v":[["lentiles",[4,4,[[0,1,1,0,1,[[24,1,1,0,1]]],[9,2,2,1,3,[[283,1,1,1,2],[289,1,1,2,3]]],[25,1,1,3,4,[[805,1,1,3,4]]]],[692,8477,8664,20538]]]]},{"k":"H5743","v":[["+",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20333]]]]},{"k":"H5744","v":[["Obed",[10,9,[[7,3,3,0,3,[[235,3,3,0,3]]],[12,6,5,3,8,[[339,4,3,3,6],[348,1,1,6,7],[363,1,1,7,8]]],[13,1,1,8,9,[[389,1,1,8,9]]]],[7207,7211,7212,10318,10343,10344,10720,11084,11657]]]]},{"k":"H5745","v":[["Obal",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[262]]]]},{"k":"H5746","v":[["bake",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20541]]]]},{"k":"H5747","v":[["Og",[22,22,[[3,2,2,0,2,[[137,1,1,0,1],[148,1,1,1,2]]],[4,10,10,2,12,[[153,1,1,2,3],[155,6,6,3,9],[156,1,1,9,10],[181,1,1,10,11],[183,1,1,11,12]]],[5,6,6,12,18,[[188,1,1,12,13],[195,1,1,13,14],[198,1,1,14,15],[199,3,3,15,18]]],[10,1,1,18,19,[[294,1,1,18,19]]],[15,1,1,19,20,[[421,1,1,19,20]]],[18,2,2,20,22,[[612,1,1,20,21],[613,1,1,21,22]]]],[4373,4751,4896,4976,4978,4979,4985,4986,4988,5051,5686,5732,5879,6047,6134,6166,6184,6185,8863,12533,16186,16216]]]]},{"k":"H5748","v":[["*",[4,4,[[0,1,1,0,1,[[3,1,1,0,1]]],[17,2,2,1,3,[[456,1,1,1,2],[465,1,1,2,3]]],[18,1,1,3,4,[[627,1,1,3,4]]]],[100,13367,13588,16398]]],["organ",[3,3,[[0,1,1,0,1,[[3,1,1,0,1]]],[17,2,2,1,3,[[456,1,1,1,2],[465,1,1,2,3]]]],[100,13367,13588]]],["organs",[1,1,[[18,1,1,0,1,[[627,1,1,0,1]]]],[16398]]]]},{"k":"H5749","v":[["*",[45,40,[[0,2,1,0,1,[[42,2,1,0,1]]],[1,3,3,1,4,[[68,2,2,1,3],[70,1,1,3,4]]],[4,6,5,4,9,[[156,2,1,4,5],[160,1,1,5,6],[182,1,1,6,7],[183,1,1,7,8],[184,1,1,8,9]]],[8,2,1,9,10,[[243,2,1,9,10]]],[10,3,3,10,13,[[292,1,1,10,11],[311,2,2,11,13]]],[11,2,2,13,15,[[329,2,2,13,15]]],[13,1,1,15,16,[[390,1,1,15,16]]],[15,6,6,16,22,[[421,4,4,16,20],[425,2,2,20,22]]],[17,1,1,22,23,[[464,1,1,22,23]]],[18,6,6,23,29,[[497,1,1,23,24],[527,1,1,24,25],[558,1,1,25,26],[596,1,1,26,27],[623,1,1,27,28],[624,1,1,28,29]]],[22,1,1,29,30,[[686,1,1,29,30]]],[23,8,6,30,36,[[750,1,1,30,31],[755,3,1,31,32],[776,3,3,32,35],[786,1,1,35,36]]],[24,1,1,36,37,[[798,1,1,36,37]]],[29,1,1,37,38,[[881,1,1,37,38]]],[37,1,1,38,39,[[913,1,1,38,39]]],[38,1,1,39,40,[[926,1,1,39,40]]]],[1293,2047,2049,2106,5030,5156,5727,5756,5804,7378,8812,9461,9464,9996,9998,11696,12537,12540,12541,12545,12686,12692,13543,14190,14675,15225,15959,16350,16357,17809,19099,19233,19741,19756,19775,19994,20345,22408,22918,23117]]],["+",[10,7,[[0,2,1,0,1,[[42,2,1,0,1]]],[4,3,3,1,4,[[156,1,1,1,2],[182,1,1,2,3],[183,1,1,3,4]]],[8,2,1,4,5,[[243,2,1,4,5]]],[22,1,1,5,6,[[686,1,1,5,6]]],[23,2,1,6,7,[[755,2,1,6,7]]]],[1293,5030,5727,5756,7378,17809,19233]]],["admonished",[1,1,[[23,1,1,0,1,[[786,1,1,0,1]]]],[19994]]],["against",[2,2,[[10,2,2,0,2,[[311,2,2,0,2]]]],[9461,9464]]],["charge",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2047]]],["chargedst",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2049]]],["protested",[2,2,[[10,1,1,0,1,[[292,1,1,0,1]]],[37,1,1,1,2,[[913,1,1,1,2]]]],[8812,22918]]],["protesting",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19233]]],["relieveth",[1,1,[[18,1,1,0,1,[[623,1,1,0,1]]]],[16350]]],["robbed",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15959]]],["take",[2,2,[[23,2,2,0,2,[[776,2,2,0,2]]]],[19756,19775]]],["testified",[7,7,[[1,1,1,0,1,[[70,1,1,0,1]]],[11,2,2,1,3,[[329,2,2,1,3]]],[13,1,1,3,4,[[390,1,1,3,4]]],[15,3,3,4,7,[[421,1,1,4,5],[425,2,2,5,7]]]],[2106,9996,9998,11696,12537,12686,12692]]],["testifiedst",[2,2,[[15,2,2,0,2,[[421,2,2,0,2]]]],[12540,12541]]],["testify",[6,6,[[4,2,2,0,2,[[160,1,1,0,1],[184,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[18,2,2,3,5,[[527,1,1,3,4],[558,1,1,4,5]]],[29,1,1,5,6,[[881,1,1,5,6]]]],[5156,5804,12545,14675,15225,22408]]],["took",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19741]]],["up",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16357]]],["upright",[1,1,[[18,1,1,0,1,[[497,1,1,0,1]]]],[14190]]],["warning",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19099]]],["witness",[4,4,[[4,1,1,0,1,[[156,1,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]],[38,1,1,3,4,[[926,1,1,3,4]]]],[5030,13543,20345,23117]]]]},{"k":"H5750","v":[["*",[483,456,[[0,54,50,0,50,[[3,1,1,0,1],[6,1,1,1,2],[7,6,4,2,6],[8,3,2,6,8],[16,1,1,8,9],[17,2,2,9,11],[18,1,1,11,12],[23,1,1,12,13],[24,1,1,13,14],[28,7,7,14,21],[29,2,2,21,23],[30,1,1,23,24],[31,1,1,24,25],[34,3,3,25,28],[36,4,3,28,31],[37,3,3,31,34],[39,2,2,34,36],[42,4,4,36,40],[43,1,1,40,41],[44,5,5,41,46],[45,2,2,46,48],[47,2,2,48,50]]],[1,13,13,50,63,[[51,1,1,50,51],[52,1,1,51,52],[53,2,2,52,54],[58,3,3,54,57],[59,1,1,57,58],[60,1,1,58,59],[63,1,1,59,60],[66,1,1,60,61],[85,2,2,61,63]]],[2,4,4,63,67,[[102,1,1,63,64],[106,1,1,64,65],[114,1,1,65,66],[116,1,1,66,67]]],[3,9,9,67,76,[[124,1,1,67,68],[127,1,1,68,69],[134,2,2,69,71],[135,1,1,71,72],[138,2,2,72,74],[148,2,2,74,76]]],[4,15,15,76,91,[[155,1,1,76,77],[156,2,2,77,79],[157,1,1,79,80],[162,1,1,80,81],[165,1,1,81,82],[169,2,2,82,84],[170,1,1,84,85],[171,2,2,85,87],[180,1,1,87,88],[183,2,2,88,90],[186,1,1,90,91]]],[5,5,5,91,96,[[187,1,1,91,92],[188,1,1,92,93],[191,2,2,93,95],[200,1,1,95,96]]],[6,10,10,96,106,[[212,1,1,96,97],[216,1,1,97,98],[217,1,1,98,99],[218,1,1,99,100],[221,1,1,100,101],[223,2,2,101,103],[228,1,1,103,104],[230,2,2,104,106]]],[7,2,2,106,108,[[232,2,2,106,108]]],[8,17,16,108,124,[[236,1,1,108,109],[238,1,1,109,110],[242,1,1,110,111],[245,2,1,111,112],[248,1,1,112,113],[251,1,1,113,114],[253,2,2,114,116],[255,2,2,116,118],[258,2,2,118,120],[261,1,1,120,121],[262,2,2,121,123],[263,1,1,123,124]]],[9,31,28,124,152,[[267,1,1,124,125],[268,1,1,125,126],[269,2,2,126,128],[271,3,2,128,130],[272,2,2,130,132],[273,3,3,132,135],[275,3,2,135,137],[276,1,1,137,138],[278,2,2,138,140],[280,3,3,140,143],[284,2,2,143,145],[285,4,3,145,148],[287,4,4,148,152]]],[10,12,12,152,164,[[291,3,3,152,155],[298,1,1,155,156],[300,2,2,156,158],[302,2,2,158,160],[310,1,1,160,161],[312,3,3,161,164]]],[11,13,11,164,175,[[314,2,2,164,166],[316,2,1,166,167],[317,1,1,167,168],[318,3,2,168,170],[324,1,1,170,171],[326,1,1,171,172],[327,2,2,172,174],[336,1,1,174,175]]],[12,11,10,175,185,[[349,1,1,175,176],[351,4,3,176,179],[354,2,2,179,181],[356,1,1,181,182],[357,2,2,182,184],[366,1,1,184,185]]],[13,14,14,185,199,[[375,1,1,185,186],[376,1,1,186,187],[379,1,1,187,188],[380,1,1,188,189],[383,1,1,189,190],[384,2,2,190,192],[386,1,1,192,193],[393,1,1,193,194],[394,1,1,194,195],[398,1,1,195,196],[399,1,1,196,197],[400,2,2,197,199]]],[15,1,1,199,200,[[414,1,1,199,200]]],[16,3,3,200,203,[[427,1,1,200,201],[431,1,1,201,202],[434,1,1,202,203]]],[17,19,18,203,221,[[436,3,3,203,206],[437,2,2,206,208],[441,2,2,208,210],[442,2,1,210,211],[443,1,1,211,212],[449,1,1,212,213],[455,1,1,213,214],[459,1,1,214,215],[462,1,1,215,216],[464,1,1,216,217],[467,2,2,217,219],[469,1,1,219,220],[471,1,1,220,221]]],[18,22,22,221,243,[[487,1,1,221,222],[514,1,1,222,223],[516,1,1,223,224],[519,2,2,224,226],[520,1,1,226,227],[526,1,1,227,228],[551,1,1,228,229],[554,1,1,229,230],[555,3,3,230,233],[560,1,1,233,234],[561,1,1,234,235],[565,1,1,235,236],[569,1,1,236,237],[580,1,1,237,238],[581,2,2,238,240],[616,1,1,240,241],[618,1,1,241,242],[623,1,1,242,243]]],[19,6,6,243,249,[[636,1,1,243,244],[638,1,1,244,245],[646,1,1,245,246],[650,1,1,246,247],[658,2,2,247,249]]],[20,6,6,249,255,[[661,1,1,249,250],[662,1,1,250,251],[665,1,1,251,252],[667,2,2,252,254],[670,1,1,254,255]]],[22,47,46,255,301,[[679,1,1,255,256],[680,1,1,256,257],[683,2,2,257,259],[684,1,1,259,260],[685,1,1,260,261],[687,3,3,261,264],[688,4,4,264,268],[692,1,1,268,269],[699,1,1,269,270],[701,2,2,270,272],[704,1,1,272,273],[706,1,1,273,274],[707,1,1,274,275],[708,1,1,275,276],[710,1,1,276,277],[716,1,1,277,278],[723,6,6,278,284],[724,1,1,284,285],[725,2,2,285,287],[727,1,1,287,288],[729,1,1,288,289],[730,1,1,289,290],[732,2,2,290,292],[734,1,1,292,293],[738,3,3,293,296],[740,3,2,296,298],[743,3,3,298,301]]],[23,53,50,301,351,[[746,2,2,301,303],[747,4,3,303,306],[751,1,1,306,307],[754,1,1,307,308],[755,1,1,308,309],[757,1,1,309,310],[759,1,1,310,311],[760,1,1,311,312],[763,2,2,312,314],[764,1,1,314,315],[766,4,4,315,319],[767,3,3,319,322],[772,2,2,322,324],[774,1,1,324,325],[775,10,8,325,333],[776,1,1,333,334],[777,5,5,334,339],[778,1,1,339,340],[780,1,1,340,341],[782,1,1,341,342],[784,1,1,342,343],[786,1,1,343,344],[788,2,2,344,346],[792,1,1,346,347],[793,1,1,347,348],[794,1,1,348,349],[795,2,2,349,351]]],[24,1,1,351,352,[[800,1,1,351,352]]],[25,58,51,352,403,[[806,2,2,352,354],[808,1,1,354,355],[809,3,3,355,358],[813,4,4,358,362],[814,2,2,362,364],[815,2,1,364,365],[816,1,1,365,366],[817,3,3,366,369],[819,1,1,369,370],[820,1,1,370,371],[821,2,2,371,373],[822,1,1,373,374],[824,2,2,374,376],[825,2,2,376,378],[827,3,3,378,381],[829,1,1,381,382],[830,2,2,382,384],[831,1,1,384,385],[833,1,1,385,386],[834,1,1,386,387],[835,5,4,387,391],[837,8,5,391,396],[838,4,2,396,398],[840,3,3,398,401],[844,1,1,401,402],[846,1,1,402,403]]],[26,6,6,403,409,[[858,2,2,403,405],[859,1,1,405,406],[860,3,3,406,409]]],[27,10,9,409,418,[[862,3,2,409,411],[863,2,2,411,413],[864,1,1,413,414],[872,1,1,414,415],[873,1,1,415,416],[875,2,2,416,418]]],[28,3,3,418,421,[[877,2,2,418,420],[878,1,1,420,421]]],[29,7,7,421,428,[[882,1,1,421,422],[884,1,1,422,423],[885,2,2,423,425],[886,2,2,425,427],[887,1,1,427,428]]],[31,1,1,428,429,[[891,1,1,428,429]]],[32,4,4,429,433,[[893,1,1,429,430],[896,1,1,430,431],[897,1,1,431,432],[898,1,1,432,433]]],[33,4,4,433,437,[[900,3,3,433,436],[901,1,1,436,437]]],[34,1,1,437,438,[[904,1,1,437,438]]],[35,3,3,438,441,[[907,1,1,438,439],[908,2,2,439,441]]],[36,2,2,441,443,[[910,2,2,441,443]]],[37,15,12,443,455,[[911,4,1,443,444],[912,1,1,444,445],[918,2,2,445,447],[919,1,1,447,448],[921,2,2,448,450],[922,1,1,450,451],[923,2,2,451,453],[924,2,2,453,455]]],[38,1,1,455,456,[[926,1,1,455,456]]]],[104,163,193,195,204,205,216,220,402,446,453,469,611,664,802,804,822,825,828,829,830,837,849,887,956,1020,1021,1027,1088,1091,1092,1123,1124,1145,1185,1191,1296,1297,1317,1318,1338,1361,1364,1369,1384,1386,1415,1416,1458,1466,1557,1594,1607,1619,1744,1759,1771,1806,1807,1902,1987,2569,2572,3109,3242,3520,3590,3964,4057,4262,4279,4302,4390,4405,4732,4733,5001,5039,5043,5078,5202,5288,5377,5380,5400,5415,5426,5679,5730,5755,5849,5862,5880,5935,5946,6198,6559,6678,6698,6739,6843,6892,6893,7017,7079,7082,7138,7141,7230,7282,7365,7440,7492,7606,7684,7705,7733,7744,7814,7832,7926,7931,7934,7957,8031,8077,8092,8116,8145,8154,8158,8179,8190,8199,8200,8228,8230,8259,8308,8309,8366,8385,8388,8492,8500,8539,8540,8546,8597,8598,8599,8600,8731,8739,8759,9045,9084,9089,9153,9156,9440,9487,9488,9523,9563,9572,9609,9664,9697,9707,9853,9900,9929,9960,10209,10721,10777,10787,10788,10872,10881,10926,10931,10932,11167,11368,11400,11473,11482,11529,11548,11549,11620,11757,11781,11891,11925,11936,11949,12324,12738,12807,12846,12885,12886,12887,12894,12900,12988,13007,13018,13041,13188,13335,13456,13484,13537,13643,13644,13706,13738,14059,14460,14513,14560,14566,14571,14657,15057,15100,15130,15143,15145,15245,15263,15313,15425,15565,15604,15606,16257,16281,16343,16647,16712,16944,17079,17291,17299,17375,17394,17457,17480,17481,17532,17659,17689,17743,17764,17782,17790,17841,17846,17850,17854,17870,17875,17882,17929,18051,18087,18089,18151,18168,18210,18237,18264,18401,18566,18567,18575,18579,18582,18583,18595,18607,18609,18656,18695,18697,18727,18732,18761,18839,18840,18841,18858,18862,18916,18917,18921,18974,18996,19003,19018,19019,19151,19221,19245,19293,19324,19350,19413,19418,19431,19464,19465,19466,19484,19488,19491,19520,19621,19629,19675,19695,19696,19711,19714,19720,19725,19730,19731,19746,19776,19785,19787,19788,19799,19811,19874,19904,19946,19993,20032,20036,20082,20134,20205,20245,20256,20437,20550,20555,20590,20610,20617,20619,20703,20704,20705,20708,20729,20731,20742,20759,20803,20804,20825,20852,20890,20922,20934,20949,21034,21045,21069,21083,21113,21114,21121,21181,21198,21199,21217,21261,21302,21323,21335,21341,21342,21371,21373,21374,21389,21396,21419,21420,21455,21476,21477,21579,21638,22008,22009,22029,22038,22063,22071,22098,22100,22121,22122,22129,22252,22261,22285,22290,22330,22338,22360,22417,22460,22472,22477,22483,22495,22510,22562,22594,22623,22646,22658,22696,22698,22699,22712,22751,22820,22831,22835,22861,22874,22895,22911,22980,22996,23007,23034,23043,23051,23061,23062,23079,23089,23116]]],["+",[24,23,[[0,2,2,0,2,[[7,1,1,0,1],[47,1,1,1,2]]],[3,1,1,2,3,[[138,1,1,2,3]]],[4,2,2,3,5,[[155,1,1,3,4],[157,1,1,4,5]]],[6,1,1,5,6,[[221,1,1,5,6]]],[8,1,1,6,7,[[242,1,1,6,7]]],[11,1,1,7,8,[[318,1,1,7,8]]],[12,1,1,8,9,[[354,1,1,8,9]]],[13,1,1,9,10,[[393,1,1,9,10]]],[18,2,2,10,12,[[487,1,1,10,11],[554,1,1,11,12]]],[22,2,2,12,14,[[725,2,2,12,14]]],[25,7,6,14,20,[[809,3,3,14,17],[825,1,1,17,18],[834,1,1,18,19],[838,2,1,19,20]]],[27,1,1,20,21,[[862,1,1,20,21]]],[33,1,1,21,22,[[900,1,1,21,22]]],[35,1,1,22,23,[[908,1,1,22,23]]]],[204,1466,4405,5001,5078,6843,7365,9697,10881,11757,14059,15100,18607,18609,20610,20617,20619,21083,21302,21419,22100,22699,22831]]],["Again",[4,4,[[9,1,1,0,1,[[272,1,1,0,1]]],[23,3,3,1,4,[[775,1,1,1,2],[777,2,2,2,4]]]],[8158,19695,19785,19787]]],["Moreover",[2,2,[[12,1,1,0,1,[[366,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[11167,21045]]],["While",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[205]]],["Within",[2,2,[[22,1,1,0,1,[[699,1,1,0,1]]],[23,1,1,1,2,[[772,1,1,1,2]]]],[18051,19621]]],["Yet",[8,8,[[0,2,2,0,2,[[39,2,2,0,2]]],[1,1,1,2,3,[[60,1,1,2,3]]],[22,1,1,3,4,[[734,1,1,3,4]]],[25,1,1,4,5,[[821,1,1,4,5]]],[31,1,1,5,6,[[891,1,1,5,6]]],[32,1,1,6,7,[[893,1,1,6,7]]],[36,1,1,7,8,[[910,1,1,7,8]]]],[1185,1191,1807,18761,20922,22562,22594,22861]]],["after",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11400]]],["again",[44,44,[[0,10,10,0,10,[[3,1,1,0,1],[23,1,1,1,2],[28,3,3,2,5],[29,2,2,5,7],[34,1,1,7,8],[37,2,2,8,10]]],[1,1,1,10,11,[[63,1,1,10,11]]],[4,2,2,11,13,[[165,1,1,11,12],[180,1,1,12,13]]],[6,3,3,13,16,[[223,2,2,13,15],[230,1,1,15,16]]],[7,1,1,16,17,[[232,1,1,16,17]]],[9,5,5,17,22,[[269,1,1,17,18],[278,1,1,18,19],[280,1,1,19,20],[287,2,2,20,22]]],[12,3,3,22,25,[[351,1,1,22,23],[357,2,2,23,25]]],[13,3,3,25,28,[[379,1,1,25,26],[394,1,1,26,27],[400,1,1,27,28]]],[17,2,2,28,30,[[441,1,1,28,29],[449,1,1,29,30]]],[19,1,1,30,31,[[650,1,1,30,31]]],[22,2,2,31,33,[[727,1,1,31,32],[729,1,1,32,33]]],[23,5,5,33,38,[[747,1,1,33,34],[763,1,1,34,35],[775,1,1,35,36],[776,1,1,36,37],[777,1,1,37,38]]],[25,2,2,38,40,[[806,1,1,38,39],[827,1,1,39,40]]],[27,1,1,40,41,[[862,1,1,40,41]]],[29,1,1,41,42,[[886,1,1,41,42]]],[37,2,2,42,44,[[912,1,1,42,43],[922,1,1,43,44]]]],[104,611,828,829,830,837,849,1020,1123,1124,1902,5288,5679,6892,6893,7079,7141,8092,8309,8385,8598,8599,10788,10931,10932,11473,11781,11949,13007,13188,17079,18656,18695,19003,19418,19695,19746,19788,20550,21121,22100,22495,22911,23051]]],["being",[2,2,[[18,2,2,0,2,[[581,1,1,0,1],[623,1,1,1,2]]]],[15604,16343]]],["beside",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22820]]],["besides",[4,4,[[0,1,1,0,1,[[18,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]],[13,1,1,2,3,[[384,1,1,2,3]]],[23,1,1,3,4,[[780,1,1,3,4]]]],[469,9487,11548,19874]]],["but",[1,1,[[0,1,1,0,1,[[34,1,1,0,1]]]],[1027]]],["else",[11,11,[[4,2,2,0,2,[[156,2,2,0,2]]],[10,1,1,2,3,[[298,1,1,2,3]]],[22,7,7,3,10,[[723,6,6,3,9],[724,1,1,9,10]]],[28,1,1,10,11,[[877,1,1,10,11]]]],[5039,5043,9045,18566,18567,18575,18579,18582,18583,18595,22338]]],["further",[2,2,[[8,1,1,0,1,[[245,1,1,0,1]]],[16,1,1,1,2,[[434,1,1,1,2]]]],[7440,12846]]],["furthermore",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1607]]],["henceforth",[3,3,[[3,1,1,0,1,[[134,1,1,0,1]]],[11,1,1,1,2,[[317,1,1,1,2]]],[25,1,1,2,3,[[837,1,1,2,3]]]],[4279,9664,21371]]],["longer",[4,4,[[1,1,1,0,1,[[51,1,1,0,1]]],[6,1,1,1,2,[[212,1,1,1,2]]],[11,1,1,2,3,[[318,1,1,2,3]]],[23,1,1,3,4,[[788,1,1,3,4]]]],[1557,6559,9707,20032]]],["more",[190,179,[[0,10,9,0,9,[[7,2,2,0,2],[8,3,2,2,4],[16,1,1,4,5],[31,1,1,5,6],[34,1,1,6,7],[36,1,1,7,8],[37,1,1,8,9]]],[1,3,3,9,12,[[58,1,1,9,10],[59,1,1,10,11],[85,1,1,11,12]]],[2,2,2,12,14,[[106,1,1,12,13],[116,1,1,13,14]]],[3,2,2,14,16,[[124,1,1,14,15],[134,1,1,15,16]]],[4,7,7,16,23,[[162,1,1,16,17],[169,2,2,17,19],[170,1,1,19,20],[171,2,2,20,22],[183,1,1,22,23]]],[5,3,3,23,26,[[188,1,1,23,24],[191,2,2,24,26]]],[6,1,1,26,27,[[228,1,1,26,27]]],[8,6,6,27,33,[[236,1,1,27,28],[253,1,1,28,29],[261,1,1,29,30],[262,2,2,30,32],[263,1,1,32,33]]],[9,10,10,33,43,[[268,1,1,33,34],[271,1,1,34,35],[273,2,2,35,37],[276,1,1,37,38],[280,1,1,38,39],[285,3,3,39,42],[287,1,1,42,43]]],[10,2,2,43,45,[[300,2,2,43,45]]],[11,4,4,45,49,[[314,2,2,45,47],[316,1,1,47,48],[336,1,1,48,49]]],[12,4,3,49,52,[[351,2,1,49,50],[354,1,1,50,51],[356,1,1,51,52]]],[13,1,1,52,53,[[375,1,1,52,53]]],[15,1,1,53,54,[[414,1,1,53,54]]],[16,1,1,54,55,[[427,1,1,54,55]]],[17,7,6,55,61,[[442,2,1,55,56],[455,1,1,56,57],[459,1,1,57,58],[467,2,2,58,60],[469,1,1,60,61]]],[18,5,5,61,66,[[551,1,1,61,62],[560,1,1,62,63],[565,1,1,63,64],[580,1,1,64,65],[581,1,1,65,66]]],[19,1,1,66,67,[[658,1,1,66,67]]],[20,3,3,67,70,[[662,1,1,67,68],[667,2,2,68,70]]],[22,21,20,70,90,[[679,1,1,70,71],[680,1,1,71,72],[683,1,1,72,73],[688,1,1,73,74],[701,2,2,74,76],[704,1,1,76,77],[708,1,1,77,78],[710,1,1,78,79],[716,1,1,79,80],[730,1,1,80,81],[732,2,2,81,83],[738,3,3,83,86],[740,3,2,86,88],[743,2,2,88,90]]],[23,31,29,90,119,[[746,1,1,90,91],[747,3,2,91,93],[751,1,1,93,94],[754,1,1,94,95],[755,1,1,95,96],[760,1,1,96,97],[763,1,1,97,98],[764,1,1,98,99],[766,4,4,99,103],[767,3,3,103,106],[774,1,1,106,107],[775,4,3,107,110],[777,1,1,110,111],[778,1,1,111,112],[782,1,1,112,113],[786,1,1,113,114],[788,1,1,114,115],[792,1,1,115,116],[793,1,1,116,117],[794,1,1,117,118],[795,1,1,118,119]]],[25,43,38,119,157,[[806,1,1,119,120],[813,4,4,120,124],[814,2,2,124,126],[815,2,1,126,127],[817,3,3,127,130],[819,1,1,130,131],[820,1,1,131,132],[821,1,1,132,133],[822,1,1,133,134],[824,1,1,134,135],[825,1,1,135,136],[827,2,2,136,138],[829,1,1,138,139],[830,2,2,139,141],[831,1,1,141,142],[833,1,1,142,143],[835,5,4,143,147],[837,6,3,147,150],[838,2,2,150,152],[840,3,3,152,155],[844,1,1,155,156],[846,1,1,156,157]]],[27,4,4,157,161,[[863,2,2,157,159],[875,2,2,159,161]]],[28,2,2,161,163,[[877,1,1,161,162],[878,1,1,162,163]]],[29,4,4,163,167,[[885,2,2,163,165],[886,1,1,165,166],[887,1,1,166,167]]],[32,2,2,167,169,[[896,1,1,167,168],[897,1,1,168,169]]],[33,3,3,169,172,[[900,2,2,169,171],[901,1,1,171,172]]],[35,1,1,172,173,[[908,1,1,172,173]]],[37,5,5,173,178,[[919,1,1,173,174],[921,1,1,174,175],[923,1,1,175,176],[924,2,2,176,178]]],[38,1,1,178,179,[[926,1,1,178,179]]]],[195,204,216,220,402,956,1021,1092,1145,1771,1806,2572,3242,3590,3964,4262,5202,5377,5380,5400,5415,5426,5730,5880,5935,5946,7017,7230,7684,7926,7931,7934,7957,8077,8145,8190,8200,8259,8366,8539,8540,8546,8597,9084,9089,9563,9572,9609,10209,10777,10872,10926,11368,12324,12738,13018,13335,13456,13643,13644,13706,15057,15245,15313,15565,15606,17291,17394,17480,17481,17659,17689,17743,17870,18087,18089,18151,18237,18264,18401,18697,18727,18732,18839,18840,18841,18858,18862,18916,18917,18996,19018,19019,19151,19221,19245,19350,19413,19431,19464,19465,19466,19484,19488,19491,19520,19675,19720,19725,19731,19799,19811,19904,19993,20036,20082,20134,20205,20256,20555,20703,20704,20705,20708,20729,20731,20742,20803,20804,20825,20852,20890,20934,20949,21034,21069,21113,21114,21181,21198,21199,21217,21261,21323,21335,21341,21342,21373,21374,21389,21419,21420,21455,21476,21477,21579,21638,22121,22122,22285,22290,22330,22360,22472,22477,22483,22510,22623,22646,22696,22698,22712,22835,23007,23034,23061,23079,23089,23116]]],["moreover",[4,4,[[1,1,1,0,1,[[52,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[13,1,1,2,3,[[383,1,1,2,3]]],[20,1,1,3,4,[[661,1,1,3,4]]]],[1594,7733,11529,17375]]],["of",[1,1,[[23,1,1,0,1,[[772,1,1,0,1]]]],[19629]]],["once",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19293]]],["ready",[1,1,[[1,1,1,0,1,[[66,1,1,0,1]]]],[1987]]],["since",[1,1,[[4,1,1,0,1,[[186,1,1,0,1]]]],[5849]]],["still",[21,21,[[1,1,1,0,1,[[58,1,1,0,1]]],[2,1,1,1,2,[[102,1,1,1,2]]],[9,1,1,2,3,[[280,1,1,2,3]]],[11,3,3,3,6,[[324,1,1,3,4],[327,2,2,4,6]]],[13,1,1,6,7,[[399,1,1,6,7]]],[17,2,2,7,9,[[437,2,2,7,9]]],[18,5,5,9,14,[[526,1,1,9,10],[555,1,1,10,11],[561,1,1,11,12],[569,1,1,12,13],[616,1,1,13,14]]],[20,1,1,14,15,[[670,1,1,14,15]]],[22,5,5,15,20,[[683,1,1,15,16],[687,3,3,16,19],[688,1,1,19,20]]],[23,1,1,20,21,[[775,1,1,20,21]]]],[1744,3109,8388,9853,9929,9960,11925,12894,12900,14657,15145,15263,15425,16257,17532,17764,17841,17846,17850,17854,19711]]],["while",[5,5,[[0,1,1,0,1,[[45,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[17,1,1,2,3,[[462,1,1,2,3]]],[18,1,1,3,4,[[516,1,1,3,4]]],[23,1,1,4,5,[[759,1,1,4,5]]]],[1415,8492,13484,14513,19324]]],["whiles",[2,2,[[26,2,2,0,2,[[858,2,2,0,2]]]],[22008,22009]]],["within",[2,2,[[5,1,1,0,1,[[187,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]]],[5862,17790]]],["yet",[140,136,[[0,26,26,0,26,[[6,1,1,0,1],[7,2,2,1,3],[17,2,2,3,5],[24,1,1,5,6],[28,4,4,6,10],[30,1,1,10,11],[36,3,3,11,14],[42,4,4,14,18],[43,1,1,18,19],[44,5,5,19,24],[45,1,1,24,25],[47,1,1,25,26]]],[1,3,3,26,29,[[53,1,1,26,27],[58,1,1,27,28],[85,1,1,28,29]]],[2,1,1,29,30,[[114,1,1,29,30]]],[3,5,5,30,35,[[127,1,1,30,31],[135,1,1,31,32],[138,1,1,32,33],[148,2,2,33,35]]],[4,1,1,35,36,[[183,1,1,35,36]]],[5,1,1,36,37,[[200,1,1,36,37]]],[6,4,4,37,41,[[216,1,1,37,38],[217,1,1,38,39],[218,1,1,39,40],[230,1,1,40,41]]],[7,1,1,41,42,[[232,1,1,41,42]]],[8,8,8,42,50,[[238,1,1,42,43],[245,1,1,43,44],[248,1,1,44,45],[251,1,1,45,46],[253,1,1,46,47],[255,1,1,47,48],[258,2,2,48,50]]],[9,13,12,50,62,[[267,1,1,50,51],[269,1,1,51,52],[271,2,2,52,54],[272,1,1,54,55],[273,1,1,55,56],[275,3,2,56,58],[278,1,1,58,59],[284,1,1,59,60],[285,1,1,60,61],[287,1,1,61,62]]],[10,8,8,62,70,[[291,3,3,62,65],[302,2,2,65,67],[310,1,1,67,68],[312,2,2,68,70]]],[11,3,3,70,73,[[316,1,1,70,71],[318,1,1,71,72],[326,1,1,72,73]]],[12,2,2,73,75,[[349,1,1,73,74],[351,1,1,74,75]]],[13,5,5,75,80,[[380,1,1,75,76],[384,1,1,76,77],[386,1,1,77,78],[398,1,1,78,79],[400,1,1,79,80]]],[16,1,1,80,81,[[431,1,1,80,81]]],[17,7,7,81,88,[[436,3,3,81,84],[441,1,1,84,85],[443,1,1,85,86],[464,1,1,86,87],[471,1,1,87,88]]],[18,7,7,88,95,[[514,1,1,88,89],[519,2,2,89,91],[520,1,1,91,92],[555,2,2,92,94],[618,1,1,94,95]]],[19,4,4,95,99,[[636,1,1,95,96],[638,1,1,96,97],[646,1,1,97,98],[658,1,1,98,99]]],[20,1,1,99,100,[[665,1,1,99,100]]],[22,7,7,100,107,[[684,1,1,100,101],[688,2,2,101,103],[692,1,1,103,104],[706,1,1,104,105],[707,1,1,105,106],[743,1,1,106,107]]],[23,7,7,107,114,[[746,1,1,107,108],[775,3,3,108,111],[777,1,1,111,112],[784,1,1,112,113],[795,1,1,113,114]]],[24,1,1,114,115,[[800,1,1,114,115]]],[25,3,3,115,118,[[808,1,1,115,116],[816,1,1,116,117],[837,1,1,117,118]]],[26,4,4,118,122,[[859,1,1,118,119],[860,3,3,119,122]]],[27,4,4,122,126,[[862,1,1,122,123],[864,1,1,123,124],[872,1,1,124,125],[873,1,1,125,126]]],[29,2,2,126,128,[[882,1,1,126,127],[884,1,1,127,128]]],[32,1,1,128,129,[[898,1,1,128,129]]],[34,1,1,129,130,[[904,1,1,129,130]]],[36,1,1,130,131,[[910,1,1,130,131]]],[37,8,5,131,136,[[911,4,1,131,132],[918,2,2,132,134],[921,1,1,134,135],[923,1,1,135,136]]]],[163,193,195,446,453,664,802,804,822,825,887,1088,1091,1092,1296,1297,1317,1318,1338,1361,1364,1369,1384,1386,1416,1458,1619,1759,2569,3520,4057,4302,4390,4732,4733,5755,6198,6678,6698,6739,7082,7138,7282,7440,7492,7606,7705,7744,7814,7832,8031,8116,8145,8154,8179,8199,8228,8230,8308,8500,8546,8600,8731,8739,8759,9153,9156,9440,9488,9523,9609,9707,9900,10721,10787,11482,11549,11620,11891,11936,12807,12885,12886,12887,12988,13041,13537,13738,14460,14560,14566,14571,15130,15143,16281,16647,16712,16944,17299,17457,17782,17875,17882,17929,18168,18210,18921,18974,19696,19714,19730,19776,19946,20245,20437,20590,20759,21396,22029,22038,22063,22071,22098,22129,22252,22261,22417,22460,22658,22751,22874,22895,22980,22996,23043,23062]]]]},{"k":"H5751","v":[["While",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21868]]]]},{"k":"H5752","v":[["Oded",[3,3,[[13,3,3,0,3,[[381,2,2,0,2],[394,1,1,2,3]]]],[11491,11498,11773]]]]},{"k":"H5753","v":[["*",[17,17,[[8,1,1,0,1,[[255,1,1,0,1]]],[9,3,3,1,4,[[273,1,1,1,2],[285,1,1,2,3],[290,1,1,3,4]]],[10,1,1,4,5,[[298,1,1,4,5]]],[13,1,1,5,6,[[372,1,1,5,6]]],[16,1,1,6,7,[[426,1,1,6,7]]],[17,1,1,7,8,[[468,1,1,7,8]]],[18,2,2,8,10,[[515,1,1,8,9],[583,1,1,9,10]]],[19,1,1,10,11,[[639,1,1,10,11]]],[22,2,2,11,13,[[699,1,1,11,12],[702,1,1,12,13]]],[23,2,2,13,15,[[747,1,1,13,14],[753,1,1,14,15]]],[24,1,1,15,16,[[799,1,1,15,16]]],[26,1,1,16,17,[[858,1,1,16,17]]]],[7760,8194,8530,8709,9032,11319,12718,13677,14496,15657,16727,18038,18096,19023,19180,20363,21993]]],["+",[3,3,[[22,1,1,0,1,[[702,1,1,0,1]]],[23,1,1,1,2,[[747,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]]],[18096,19023,20363]]],["amiss",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11319]]],["down",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18038]]],["iniquity",[4,4,[[9,1,1,0,1,[[273,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]],[23,1,1,2,3,[[753,1,1,2,3]]],[26,1,1,3,4,[[858,1,1,3,4]]]],[8194,15657,19180,21993]]],["perverse",[2,2,[[8,1,1,0,1,[[255,1,1,0,1]]],[19,1,1,1,2,[[639,1,1,1,2]]]],[7760,16727]]],["perversely",[2,2,[[9,1,1,0,1,[[285,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]]],[8530,9032]]],["perverted",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13677]]],["troubled",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14496]]],["wickedly",[1,1,[[9,1,1,0,1,[[290,1,1,0,1]]]],[8709]]],["wrong",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12718]]]]},{"k":"H5754","v":[["overturn",[3,1,[[25,3,1,0,1,[[822,3,1,0,1]]]],[20971]]]]},{"k":"H5755","v":[["*",[4,4,[[11,3,3,0,3,[[329,1,1,0,1],[330,1,1,1,2],[331,1,1,2,3]]],[22,1,1,3,4,[[715,1,1,3,4]]]],[10007,10058,10074,18365]]],["+",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10007]]],["Ivah",[3,3,[[11,2,2,0,2,[[330,1,1,0,1],[331,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]]],[10058,10074,18365]]]]},{"k":"H5756","v":[["*",[4,4,[[1,1,1,0,1,[[58,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]],[23,2,2,2,4,[[748,1,1,2,3],[750,1,1,3,4]]]],[1761,17881,19033,19090]]],["+",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1761]]],["flee",[2,2,[[22,1,1,0,1,[[688,1,1,0,1]]],[23,1,1,1,2,[[750,1,1,1,2]]]],[17881,19090]]],["retire",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19033]]]]},{"k":"H5757","v":[["*",[2,2,[[4,1,1,0,1,[[154,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]]],[4961,6157]]],["Avims",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4961]]],["Avites",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6157]]]]},{"k":"H5758","v":[["iniquities",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]]]},{"k":"H5759","v":[["*",[3,3,[[9,1,1,0,1,[[285,1,1,0,1]]],[17,2,2,1,3,[[454,1,1,1,2],[456,1,1,2,3]]]],[8539,13315,13366]]],["children",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13315]]],["ones",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13366]]],["yet",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8539]]]]},{"k":"H5760","v":[["ungodly",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13249]]]]},{"k":"H5761","v":[["*",[2,2,[[5,1,1,0,1,[[204,1,1,0,1]]],[11,1,1,1,2,[[329,1,1,1,2]]]],[6316,10014]]],["Avim",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6316]]],["Avites",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10014]]]]},{"k":"H5762","v":[["Avith",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1075,10298]]]]},{"k":"H5763","v":[["*",[5,5,[[0,1,1,0,1,[[32,1,1,0,1]]],[8,2,2,1,3,[[241,2,2,1,3]]],[18,1,1,3,4,[[555,1,1,3,4]]],[22,1,1,4,5,[[718,1,1,4,5]]]],[973,7338,7341,15184,18431]]],["milch",[2,2,[[8,2,2,0,2,[[241,2,2,0,2]]]],[7338,7341]]],["young",[3,3,[[0,1,1,0,1,[[32,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]]],[973,15184,18431]]]]},{"k":"H5764","v":[["*",[2,2,[[22,2,2,0,2,[[727,1,1,0,1],[743,1,1,1,2]]]],[18651,18917]]],["child",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18651]]],["infant",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18917]]]]},{"k":"H5765","v":[["*",[2,2,[[18,1,1,0,1,[[548,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]]],[14980,18140]]],["unjustly",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18140]]],["unrighteous",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14980]]]]},{"k":"H5766","v":[["*",[53,51,[[2,2,2,0,2,[[108,2,2,0,2]]],[4,2,2,2,4,[[177,1,1,2,3],[184,1,1,3,4]]],[9,2,2,4,6,[[269,1,1,4,5],[273,1,1,5,6]]],[12,1,1,6,7,[[354,1,1,6,7]]],[13,1,1,7,8,[[385,1,1,7,8]]],[17,12,12,8,20,[[440,1,1,8,9],[441,2,2,9,11],[446,1,1,11,12],[448,1,1,12,13],[450,1,1,13,14],[457,1,1,14,15],[459,1,1,15,16],[462,1,1,16,17],[469,2,2,17,19],[471,1,1,19,20]]],[18,12,12,20,32,[[484,1,1,20,21],[514,1,1,21,22],[520,1,1,22,23],[530,1,1,23,24],[535,1,1,24,25],[541,1,1,25,26],[559,1,1,26,27],[566,1,1,27,28],[569,1,1,28,29],[584,1,1,29,30],[596,1,1,30,31],[602,1,1,31,32]]],[19,2,2,32,34,[[649,1,1,32,33],[656,1,1,33,34]]],[22,1,1,34,35,[[737,1,1,34,35]]],[23,1,1,35,36,[[746,1,1,35,36]]],[25,11,9,36,45,[[804,1,1,36,37],[819,4,3,37,40],[829,2,2,40,42],[834,4,3,42,45]]],[27,1,1,45,46,[[871,1,1,45,46]]],[32,1,1,46,47,[[895,1,1,46,47]]],[34,1,1,47,48,[[904,1,1,47,48]]],[35,2,2,48,50,[[908,2,2,48,50]]],[38,1,1,50,51,[[926,1,1,50,51]]]],[3296,3316,5563,5762,8115,8190,10872,11583,12967,13007,13008,13122,13160,13219,13412,13456,13485,13693,13715,13759,13998,14451,14567,14720,14781,14856,15235,15348,15426,15741,15901,16113,17023,17251,18803,18970,20522,20857,20873,20875,21172,21175,21293,21295,21298,22238,22618,22760,22825,22833,23109]]],["+",[2,2,[[17,1,1,0,1,[[469,1,1,0,1]]],[25,1,1,1,2,[[819,1,1,1,2]]]],[13693,20857]]],["iniquities",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14856]]],["iniquity",[33,31,[[4,1,1,0,1,[[184,1,1,0,1]]],[13,1,1,1,2,[[385,1,1,1,2]]],[17,7,7,2,9,[[440,1,1,2,3],[441,2,2,3,5],[450,1,1,5,6],[457,1,1,6,7],[469,1,1,7,8],[471,1,1,8,9]]],[18,6,6,9,15,[[484,1,1,9,10],[514,1,1,10,11],[530,1,1,11,12],[584,1,1,12,13],[596,1,1,13,14],[602,1,1,14,15]]],[19,1,1,15,16,[[649,1,1,15,16]]],[23,1,1,16,17,[[746,1,1,16,17]]],[25,10,8,17,25,[[804,1,1,17,18],[819,3,2,18,20],[829,2,2,20,22],[834,4,3,22,25]]],[27,1,1,25,26,[[871,1,1,25,26]]],[32,1,1,26,27,[[895,1,1,26,27]]],[34,1,1,27,28,[[904,1,1,27,28]]],[35,2,2,28,30,[[908,2,2,28,30]]],[38,1,1,30,31,[[926,1,1,30,31]]]],[5762,11583,12967,13007,13008,13219,13412,13715,13759,13998,14451,14720,15741,15901,16113,17023,18970,20522,20873,20875,21172,21175,21293,21295,21298,22238,22618,22760,22825,22833,23109]]],["perverseness",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18803]]],["unjust",[2,2,[[18,1,1,0,1,[[520,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]]],[14567,17251]]],["unjustly",[1,1,[[18,1,1,0,1,[[559,1,1,0,1]]]],[15235]]],["unrighteously",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5563]]],["unrighteousness",[3,3,[[2,2,2,0,2,[[108,2,2,0,2]]],[18,1,1,2,3,[[569,1,1,2,3]]]],[3296,3316,15426]]],["wicked",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8115]]],["wickedly",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13160]]],["wickedness",[7,7,[[9,1,1,0,1,[[273,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]],[17,3,3,2,5,[[446,1,1,2,3],[459,1,1,3,4],[462,1,1,4,5]]],[18,2,2,5,7,[[535,1,1,5,6],[566,1,1,6,7]]]],[8190,10872,13122,13456,13485,14781,15348]]]]},{"k":"H5767","v":[["*",[5,5,[[17,4,4,0,4,[[453,1,1,0,1],[462,1,1,1,2],[464,1,1,2,3],[466,1,1,3,4]]],[35,1,1,4,5,[[908,1,1,4,5]]]],[13297,13488,13549,13591,22825]]],["unjust",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22825]]],["unrighteous",[1,1,[[17,1,1,0,1,[[462,1,1,0,1]]]],[13488]]],["wicked",[3,3,[[17,3,3,0,3,[[453,1,1,0,1],[464,1,1,1,2],[466,1,1,2,3]]]],[13297,13549,13591]]]]},{"k":"H5768","v":[["*",[21,21,[[8,2,2,0,2,[[250,1,1,0,1],[257,1,1,1,2]]],[11,1,1,2,3,[[320,1,1,2,3]]],[17,1,1,3,4,[[438,1,1,3,4]]],[18,3,3,4,7,[[485,1,1,4,5],[494,1,1,5,6],[614,1,1,6,7]]],[22,2,2,7,9,[[681,1,1,7,8],[691,1,1,8,9]]],[23,3,3,9,12,[[750,1,1,9,10],[753,1,1,10,11],[788,1,1,11,12]]],[24,5,5,12,17,[[797,1,1,12,13],[798,3,3,13,16],[800,1,1,16,17]]],[27,1,1,17,18,[[874,1,1,17,18]]],[28,1,1,18,19,[[877,1,1,18,19]]],[32,1,1,19,20,[[894,1,1,19,20]]],[33,1,1,20,21,[[902,1,1,20,21]]]],[7563,7806,9739,12920,14014,14117,16231,17719,17922,19100,19196,20017,20315,20343,20351,20352,20424,22282,22327,22604,22722]]],["+",[2,2,[[8,2,2,0,2,[[250,1,1,0,1],[257,1,1,1,2]]]],[7563,7806]]],["babes",[2,2,[[18,2,2,0,2,[[485,1,1,0,1],[494,1,1,1,2]]]],[14014,14117]]],["child",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20017]]],["children",[13,13,[[11,1,1,0,1,[[320,1,1,0,1]]],[22,2,2,1,3,[[681,1,1,1,2],[691,1,1,2,3]]],[23,2,2,3,5,[[750,1,1,3,4],[753,1,1,4,5]]],[24,5,5,5,10,[[797,1,1,5,6],[798,3,3,6,9],[800,1,1,9,10]]],[28,1,1,10,11,[[877,1,1,10,11]]],[32,1,1,11,12,[[894,1,1,11,12]]],[33,1,1,12,13,[[902,1,1,12,13]]]],[9739,17719,17922,19100,19196,20315,20343,20351,20352,20424,22327,22604,22722]]],["infants",[2,2,[[17,1,1,0,1,[[438,1,1,0,1]]],[27,1,1,1,2,[[874,1,1,1,2]]]],[12920,22282]]],["ones",[1,1,[[18,1,1,0,1,[[614,1,1,0,1]]]],[16231]]]]},{"k":"H5769","v":[["*",[438,413,[[0,13,13,0,13,[[2,1,1,0,1],[5,2,2,1,3],[8,2,2,3,5],[12,1,1,5,6],[16,4,4,6,10],[20,1,1,10,11],[47,1,1,11,12],[48,1,1,12,13]]],[1,17,17,13,30,[[52,1,1,13,14],[61,3,3,14,17],[63,1,1,17,18],[64,1,1,18,19],[68,1,1,19,20],[70,1,1,20,21],[76,1,1,21,22],[77,1,1,22,23],[78,2,2,23,25],[79,1,1,25,26],[80,2,2,26,28],[81,1,1,28,29],[89,1,1,29,30]]],[2,21,21,30,51,[[92,1,1,30,31],[95,2,2,31,33],[96,2,2,33,35],[99,2,2,35,37],[105,3,3,37,40],[106,1,1,40,41],[112,4,4,41,45],[113,3,3,45,48],[114,3,3,48,51]]],[3,10,9,51,60,[[126,1,1,51,52],[131,1,1,52,53],[134,5,4,53,57],[135,2,2,57,59],[141,1,1,59,60]]],[4,12,12,60,72,[[157,1,1,60,61],[164,1,1,61,62],[165,1,1,62,63],[167,1,1,63,64],[175,2,2,64,66],[180,1,1,66,67],[181,1,1,67,68],[184,2,2,68,70],[185,2,2,70,72]]],[5,4,4,72,76,[[190,1,1,72,73],[194,1,1,73,74],[200,1,1,74,75],[210,1,1,75,76]]],[6,1,1,76,77,[[212,1,1,76,77]]],[8,10,10,77,87,[[236,1,1,77,78],[237,1,1,78,79],[238,2,2,79,81],[248,1,1,81,82],[255,3,3,82,85],[262,2,2,85,87]]],[9,12,10,87,97,[[269,1,1,87,88],[273,8,6,88,94],[278,1,1,94,95],[288,1,1,95,96],[289,1,1,96,97]]],[10,8,7,97,104,[[291,1,1,97,98],[292,3,2,98,100],[298,1,1,100,101],[299,2,2,101,103],[300,1,1,103,104]]],[11,2,2,104,106,[[317,1,1,104,105],[333,1,1,105,106]]],[12,25,20,106,126,[[352,1,1,106,107],[353,6,5,107,112],[354,8,6,112,118],[359,1,1,118,119],[360,3,2,119,121],[365,3,3,121,124],[366,3,2,124,126]]],[13,12,12,126,138,[[368,1,1,126,127],[371,1,1,127,128],[372,1,1,128,129],[373,3,3,129,132],[375,1,1,132,133],[379,1,1,133,134],[386,2,2,134,136],[396,1,1,136,137],[399,1,1,137,138]]],[14,3,2,138,140,[[405,1,1,138,139],[411,2,1,139,140]]],[15,4,3,140,143,[[414,1,1,140,141],[421,2,1,141,142],[425,1,1,142,143]]],[17,3,3,143,146,[[442,1,1,143,144],[457,1,1,144,145],[476,1,1,145,146]]],[18,143,138,146,284,[[482,1,1,146,147],[486,2,2,147,149],[487,1,1,149,150],[489,1,1,150,151],[492,1,1,151,152],[495,1,1,152,153],[498,1,1,153,154],[501,2,2,154,156],[502,1,1,156,157],[505,1,1,157,158],[506,1,1,158,159],[507,2,2,159,161],[508,1,1,161,162],[510,1,1,162,163],[514,3,3,163,166],[518,3,2,166,168],[521,1,1,168,169],[522,3,3,169,172],[525,2,2,172,174],[526,2,2,174,176],[529,2,2,176,178],[532,1,1,178,179],[538,2,2,179,181],[543,1,1,181,182],[548,1,1,182,183],[549,2,2,183,185],[550,2,2,185,187],[552,1,1,187,188],[554,2,2,188,190],[555,2,2,190,192],[556,1,1,192,193],[558,1,1,193,194],[562,1,1,194,195],[563,1,1,195,196],[566,7,7,196,203],[567,2,1,203,204],[569,1,1,204,205],[570,1,1,205,206],[577,1,1,206,207],[579,1,1,207,208],[580,3,2,208,210],[581,2,2,210,212],[582,2,2,212,214],[583,4,3,214,217],[584,1,1,217,218],[587,1,1,218,219],[588,3,3,219,222],[589,2,1,222,223],[590,1,1,223,224],[592,1,1,224,225],[594,1,1,225,226],[595,5,5,226,231],[596,11,11,231,242],[598,1,1,242,243],[602,2,2,243,245],[608,1,1,245,246],[610,1,1,246,247],[612,1,1,247,248],[613,26,26,248,274],[615,1,1,274,275],[616,1,1,275,276],[620,1,1,276,277],[622,4,4,277,281],[623,2,2,281,283],[625,1,1,283,284]]],[19,6,6,284,290,[[635,1,1,284,285],[637,2,2,285,287],[649,1,1,287,288],[650,1,1,288,289],[654,1,1,289,290]]],[20,7,7,290,297,[[659,2,2,290,292],[660,1,1,292,293],[661,2,2,293,295],[667,1,1,295,296],[670,1,1,296,297]]],[22,46,45,297,342,[[687,1,1,297,298],[692,1,1,298,299],[702,1,1,299,300],[703,1,1,300,301],[704,1,1,301,302],[708,1,1,302,303],[710,2,2,303,305],[711,1,1,305,306],[712,2,2,306,308],[713,1,1,308,309],[718,2,2,309,311],[720,1,1,311,312],[722,1,1,312,313],[723,2,1,313,314],[724,1,1,314,315],[725,1,1,315,316],[729,4,4,316,320],[732,1,1,320,321],[733,2,2,321,323],[734,1,1,323,324],[735,2,2,324,326],[736,1,1,326,327],[737,1,1,327,328],[738,4,4,328,332],[739,3,3,332,335],[741,5,5,335,340],[742,2,2,340,342]]],[23,34,31,342,373,[[746,1,1,342,343],[747,2,2,343,345],[749,2,2,345,347],[750,1,1,347,348],[751,2,1,348,349],[754,1,1,349,350],[761,2,2,350,352],[762,2,2,352,354],[764,2,2,354,356],[767,2,1,356,357],[769,4,3,357,360],[772,1,1,360,361],[775,2,2,361,363],[776,1,1,363,364],[777,1,1,364,365],[779,1,1,365,366],[793,2,2,366,368],[794,1,1,368,369],[795,4,4,369,373]]],[24,3,3,373,376,[[799,2,2,373,375],[801,1,1,375,376]]],[25,18,15,376,391,[[817,1,1,376,377],[826,1,1,377,378],[827,3,2,378,380],[828,1,1,380,381],[829,1,1,381,382],[836,2,2,382,384],[837,1,1,384,385],[838,5,3,385,388],[844,2,2,388,390],[847,1,1,390,391]]],[26,5,4,391,395,[[858,1,1,391,392],[861,4,3,392,395]]],[27,1,1,395,396,[[863,1,1,395,396]]],[28,4,4,396,400,[[877,3,3,396,399],[878,1,1,399,400]]],[29,1,1,400,401,[[887,1,1,400,401]]],[30,1,1,401,402,[[888,1,1,401,402]]],[31,1,1,402,403,[[890,1,1,402,403]]],[32,5,5,403,408,[[894,1,1,403,404],[896,2,2,404,406],[897,1,1,406,407],[899,1,1,407,408]]],[34,2,1,408,409,[[905,2,1,408,409]]],[35,1,1,409,410,[[907,1,1,409,410]]],[37,1,1,410,411,[[911,1,1,410,411]]],[38,2,2,411,413,[[925,1,1,411,412],[927,1,1,412,413]]]],[77,140,141,217,221,333,404,405,410,416,546,1455,1499,1594,1830,1833,1840,1902,1938,2035,2083,2293,2336,2345,2364,2403,2436,2437,2451,2722,2795,2867,2871,2913,2915,2986,2992,3230,3232,3235,3242,3416,3423,3433,3443,3449,3454,3455,3501,3503,3515,3996,4168,4265,4268,4276,4280,4299,4310,4484,5082,5268,5288,5336,5503,5506,5657,5708,5765,5798,5825,5837,5917,6030,6196,6478,6546,7234,7270,7289,7290,7498,7745,7753,7772,7938,7942,8109,8193,8196,8204,8205,8206,8209,8296,8653,8658,8748,8803,8815,8998,9054,9056,9088,9674,10126,10793,10835,10837,10854,10856,10861,10875,10877,10885,10886,10887,10890,10974,10996,11008,11147,11150,11151,11174,11182,11215,11281,11284,11327,11330,11340,11372,11458,11594,11608,11835,11912,12108,12249,12310,12516,12672,13024,13404,13892,13984,14026,14028,14057,14073,14092,14168,14195,14248,14250,14257,14308,14318,14325,14331,14332,14377,14468,14477,14478,14554,14555,14579,14599,14603,14614,14642,14648,14656,14659,14718,14719,14754,14823,14826,14880,14977,15017,15019,15032,15046,15080,15098,15100,15179,15182,15198,15232,15276,15296,15327,15328,15330,15354,15362,15363,15378,15380,15419,15428,15513,15533,15558,15566,15576,15602,15614,15616,15652,15682,15699,15700,15790,15798,15801,15802,15809,15815,15848,15869,15870,15871,15872,15873,15898,15942,15950,15987,15991,15996,16009,16010,16040,16042,16050,16058,16089,16111,16112,16151,16172,16188,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,16215,16216,16217,16218,16219,16220,16221,16222,16239,16263,16296,16321,16322,16333,16341,16347,16351,16377,16625,16681,16686,17043,17054,17193,17319,17325,17349,17370,17373,17481,17528,17836,17948,18100,18120,18134,18225,18273,18276,18293,18313,18320,18330,18428,18448,18494,18540,18578,18595,18606,18679,18681,18682,18684,18731,18743,18753,18758,18776,18781,18798,18821,18836,18840,18841,18842,18847,18850,18851,18875,18877,18878,18882,18885,18889,18890,18985,19007,19014,19073,19080,19105,19126,19211,19361,19382,19399,19400,19433,19439,19524,19539,19543,19546,19626,19694,19731,19771,19786,19829,20140,20160,20171,20238,20251,20269,20274,20360,20385,20461,20822,21098,21120,21121,21157,21176,21349,21353,21361,21422,21423,21425,21579,21581,21669,22012,22083,22084,22088,22124,22313,22337,22338,22363,22506,22520,22554,22604,22625,22627,22635,22678,22774,22814,22883,23093,23124]]],["+",[116,109,[[0,2,2,0,2,[[5,1,1,0,1],[12,1,1,1,2]]],[1,2,2,2,4,[[61,1,1,2,3],[63,1,1,3,4]]],[4,4,4,4,8,[[164,1,1,4,5],[175,1,1,5,6],[180,1,1,6,7],[181,1,1,7,8]]],[5,3,3,8,11,[[190,1,1,8,9],[200,1,1,9,10],[210,1,1,10,11]]],[6,1,1,11,12,[[212,1,1,11,12]]],[8,9,9,12,21,[[236,1,1,12,13],[237,1,1,13,14],[238,2,2,14,16],[248,1,1,16,17],[255,3,3,17,20],[262,1,1,20,21]]],[9,9,8,21,29,[[269,1,1,21,22],[273,6,5,22,27],[278,1,1,27,28],[288,1,1,28,29]]],[10,3,3,29,32,[[292,2,2,29,31],[299,1,1,31,32]]],[12,17,13,32,45,[[352,1,1,32,33],[353,2,1,33,34],[354,6,5,34,39],[359,1,1,39,40],[360,3,2,40,42],[365,2,2,42,44],[366,2,1,44,45]]],[13,1,1,45,46,[[373,1,1,45,46]]],[14,2,1,46,47,[[411,2,1,46,47]]],[15,2,2,47,49,[[421,1,1,47,48],[425,1,1,48,49]]],[18,25,25,49,74,[[492,1,1,49,50],[495,1,1,50,51],[502,1,1,51,52],[505,1,1,52,53],[507,1,1,53,54],[508,1,1,54,55],[518,1,1,55,56],[525,1,1,56,57],[532,1,1,57,58],[548,1,1,58,59],[566,1,1,59,60],[567,1,1,60,61],[570,1,1,61,62],[580,1,1,62,63],[581,1,1,63,64],[583,1,1,64,65],[590,1,1,65,66],[592,1,1,66,67],[596,2,2,67,69],[598,1,1,69,70],[602,1,1,70,71],[608,1,1,71,72],[610,1,1,72,73],[622,1,1,73,74]]],[19,2,2,74,76,[[635,1,1,74,75],[637,1,1,75,76]]],[22,15,15,76,91,[[687,1,1,76,77],[692,1,1,77,78],[703,1,1,78,79],[708,1,1,79,80],[710,2,2,80,82],[712,1,1,82,83],[720,1,1,83,84],[723,1,1,84,85],[724,1,1,85,86],[735,1,1,86,87],[737,1,1,87,88],[741,2,2,88,90],[742,1,1,90,91]]],[23,8,7,91,98,[[746,1,1,91,92],[749,1,1,92,93],[751,2,1,93,94],[761,1,1,94,95],[769,1,1,95,96],[779,1,1,96,97],[793,1,1,97,98]]],[25,4,4,98,102,[[827,2,2,98,100],[828,1,1,100,101],[829,1,1,101,102]]],[28,3,3,102,105,[[877,3,3,102,105]]],[32,2,2,105,107,[[896,1,1,105,106],[897,1,1,106,107]]],[35,1,1,107,108,[[907,1,1,107,108]]],[38,1,1,108,109,[[925,1,1,108,109]]]],[141,333,1840,1902,5268,5503,5657,5708,5917,6196,6478,6546,7234,7270,7289,7290,7498,7745,7753,7772,7938,8109,8193,8196,8204,8205,8206,8296,8653,8803,8815,9054,10793,10856,10875,10877,10885,10886,10887,10974,10996,11008,11150,11151,11174,11340,12249,12516,12672,14092,14168,14257,14308,14325,14332,14555,14642,14754,14977,15330,15380,15428,15566,15576,15682,15815,15848,15950,15991,16089,16112,16151,16172,16333,16625,16686,17836,17948,18120,18225,18273,18276,18320,18494,18578,18595,18776,18821,18882,18885,18889,18985,19073,19126,19361,19539,19829,20160,21120,21121,21157,21176,22313,22337,22338,22627,22635,22814,23093]]],["alway",[2,2,[[17,1,1,0,1,[[442,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[13024,16010]]],["always",[3,3,[[0,1,1,0,1,[[5,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[23,1,1,2,3,[[764,1,1,2,3]]]],[140,10835,19439]]],["ancient",[4,4,[[19,1,1,0,1,[[649,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]],[23,1,1,2,3,[[762,1,1,2,3]]],[25,1,1,3,4,[[837,1,1,3,4]]]],[17043,18540,19399,21361]]],["continuance",[1,1,[[22,1,1,0,1,[[742,1,1,0,1]]]],[18890]]],["eternal",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18836]]],["ever",[203,199,[[0,1,1,0,1,[[2,1,1,0,1]]],[1,12,12,1,13,[[52,1,1,1,2],[61,2,2,2,4],[64,1,1,4,5],[68,1,1,5,6],[70,1,1,6,7],[76,1,1,7,8],[77,1,1,8,9],[78,1,1,9,10],[79,1,1,10,11],[80,1,1,11,12],[81,1,1,12,13]]],[2,15,15,13,28,[[95,2,2,13,15],[96,2,2,15,17],[99,2,2,17,19],[105,2,2,19,21],[106,1,1,21,22],[112,4,4,22,26],[113,1,1,26,27],[114,1,1,27,28]]],[3,8,7,28,35,[[126,1,1,28,29],[131,1,1,29,30],[134,5,4,30,34],[135,1,1,34,35]]],[4,5,5,35,40,[[157,1,1,35,36],[165,1,1,36,37],[167,1,1,37,38],[175,1,1,38,39],[184,1,1,39,40]]],[5,1,1,40,41,[[194,1,1,40,41]]],[8,1,1,41,42,[[262,1,1,41,42]]],[9,2,1,42,43,[[273,2,1,42,43]]],[10,5,5,43,48,[[291,1,1,43,44],[292,1,1,44,45],[298,1,1,45,46],[299,1,1,46,47],[300,1,1,47,48]]],[11,2,2,48,50,[[317,1,1,48,49],[333,1,1,49,50]]],[12,6,5,50,55,[[353,2,2,50,52],[354,2,1,52,53],[365,1,1,53,54],[366,1,1,54,55]]],[13,11,11,55,66,[[368,1,1,55,56],[371,1,1,56,57],[372,1,1,57,58],[373,2,2,58,60],[375,1,1,60,61],[379,1,1,61,62],[386,2,2,62,64],[396,1,1,64,65],[399,1,1,65,66]]],[14,1,1,66,67,[[405,1,1,66,67]]],[15,2,2,67,69,[[414,1,1,67,68],[421,1,1,68,69]]],[17,1,1,69,70,[[476,1,1,69,70]]],[18,95,95,70,165,[[482,1,1,70,71],[486,2,2,71,73],[487,1,1,73,74],[489,1,1,74,75],[498,1,1,75,76],[506,1,1,76,77],[507,1,1,77,78],[510,1,1,78,79],[514,2,2,79,81],[518,1,1,81,82],[521,1,1,82,83],[522,3,3,83,86],[525,1,1,86,87],[526,2,2,87,89],[529,2,2,89,91],[538,2,2,91,93],[543,1,1,93,94],[549,2,2,94,96],[550,1,1,96,97],[552,1,1,97,98],[554,1,1,98,99],[555,1,1,99,100],[556,1,1,100,101],[558,1,1,101,102],[562,1,1,102,103],[566,4,4,103,107],[579,1,1,107,108],[580,1,1,108,109],[581,1,1,109,110],[582,1,1,110,111],[583,1,1,111,112],[584,1,1,112,113],[587,1,1,113,114],[588,3,3,114,117],[589,1,1,117,118],[594,1,1,118,119],[595,5,5,119,124],[596,6,6,124,130],[602,1,1,130,131],[612,1,1,131,132],[613,26,26,132,158],[615,1,1,158,159],[622,3,3,159,162],[623,2,2,162,164],[625,1,1,164,165]]],[19,1,1,165,166,[[654,1,1,165,166]]],[20,4,4,166,170,[[659,1,1,166,167],[660,1,1,167,168],[661,1,1,168,169],[667,1,1,169,170]]],[22,7,7,170,177,[[712,1,1,170,171],[718,1,1,171,172],[725,1,1,172,173],[729,2,2,173,175],[735,1,1,175,176],[738,1,1,176,177]]],[23,8,8,177,185,[[747,2,2,177,179],[761,1,1,179,180],[769,1,1,180,181],[775,1,1,181,182],[777,1,1,182,183],[795,2,2,183,185]]],[24,2,2,185,187,[[799,1,1,185,186],[801,1,1,186,187]]],[25,4,3,187,190,[[838,2,1,187,188],[844,2,2,188,190]]],[26,2,2,190,192,[[861,2,2,190,192]]],[27,1,1,192,193,[[863,1,1,192,193]]],[28,1,1,193,194,[[878,1,1,193,194]]],[30,1,1,194,195,[[888,1,1,194,195]]],[31,1,1,195,196,[[890,1,1,195,196]]],[32,2,2,196,198,[[894,1,1,196,197],[896,1,1,197,198]]],[37,1,1,198,199,[[911,1,1,198,199]]]],[77,1594,1830,1833,1938,2035,2083,2293,2336,2364,2403,2437,2451,2867,2871,2913,2915,2986,2992,3230,3232,3242,3416,3423,3433,3443,3449,3515,3996,4168,4265,4268,4276,4280,4299,5082,5288,5336,5506,5798,6030,7942,8209,8748,8803,8998,9056,9088,9674,10126,10854,10861,10890,11147,11182,11215,11281,11284,11327,11330,11372,11458,11594,11608,11835,11912,12108,12310,12516,13892,13984,14026,14028,14057,14073,14195,14318,14331,14377,14468,14478,14554,14579,14599,14603,14614,14648,14656,14659,14718,14719,14823,14826,14880,15017,15019,15046,15080,15100,15182,15198,15232,15276,15327,15328,15362,15363,15533,15558,15602,15614,15652,15700,15790,15798,15801,15802,15809,15869,15870,15871,15872,15873,15898,15942,15987,15996,16009,16050,16058,16111,16188,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,16215,16216,16217,16218,16219,16220,16221,16222,16239,16321,16322,16341,16347,16351,16377,17193,17319,17349,17373,17481,18313,18428,18606,18679,18681,18781,18842,19007,19014,19382,19539,19731,19786,20238,20274,20385,20461,21422,21579,21581,22084,22088,22124,22363,22520,22554,22604,22625,22883]]],["everlasting",[56,54,[[0,8,8,0,8,[[8,1,1,0,1],[16,4,4,1,5],[20,1,1,5,6],[47,1,1,6,7],[48,1,1,7,8]]],[1,1,1,8,9,[[89,1,1,8,9]]],[2,2,2,9,11,[[105,1,1,9,10],[113,1,1,10,11]]],[3,1,1,11,12,[[141,1,1,11,12]]],[4,1,1,12,13,[[185,1,1,12,13]]],[9,1,1,13,14,[[289,1,1,13,14]]],[12,1,1,14,15,[[353,1,1,14,15]]],[18,13,12,15,27,[[501,2,2,15,17],[518,1,1,17,18],[567,1,1,18,19],[577,1,1,19,20],[580,1,1,20,21],[582,1,1,21,22],[583,2,1,22,23],[589,1,1,23,24],[596,2,2,24,26],[616,1,1,26,27]]],[19,1,1,27,28,[[637,1,1,27,28]]],[22,16,16,28,44,[[702,1,1,28,29],[704,1,1,29,30],[711,1,1,30,31],[713,1,1,31,32],[718,1,1,32,33],[723,1,1,33,34],[729,1,1,34,35],[732,1,1,35,36],[733,2,2,36,38],[734,1,1,38,39],[738,2,2,39,41],[739,2,2,41,43],[741,1,1,43,44]]],[23,5,5,44,49,[[754,1,1,44,45],[764,1,1,45,46],[767,1,1,46,47],[775,1,1,47,48],[776,1,1,48,49]]],[25,2,2,49,51,[[817,1,1,49,50],[838,1,1,50,51]]],[26,3,2,51,53,[[858,1,1,51,52],[861,2,1,52,53]]],[34,1,1,53,54,[[905,1,1,53,54]]]],[221,404,405,410,416,546,1455,1499,2722,3235,3454,4484,5837,8658,10837,14248,14250,14555,15380,15513,15566,15616,15699,15809,16040,16042,16263,16681,18100,18134,18293,18330,18448,18578,18684,18731,18743,18753,18758,18840,18841,18850,18851,18878,19211,19433,19524,19694,19771,20822,21423,22012,22083,22774]]],["evermore",[7,7,[[18,5,5,0,5,[[514,1,1,0,1],[563,1,1,1,2],[566,2,2,2,4],[569,1,1,4,5]]],[25,2,2,5,7,[[838,2,2,5,7]]]],[14477,15296,15354,15378,15419,21423,21425]]],["lasting",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5825]]],["long",[2,2,[[18,1,1,0,1,[[620,1,1,0,1]]],[20,1,1,1,2,[[670,1,1,1,2]]]],[16296,17528]]],["old",[15,15,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[457,1,1,1,2]]],[19,1,1,2,3,[[650,1,1,2,3]]],[22,5,5,3,8,[[729,1,1,3,4],[736,1,1,4,5],[739,1,1,5,6],[741,2,2,6,8]]],[23,2,2,8,10,[[750,1,1,8,9],[772,1,1,9,10]]],[24,1,1,10,11,[[799,1,1,10,11]]],[25,1,1,11,12,[[826,1,1,11,12]]],[29,1,1,12,13,[[887,1,1,12,13]]],[32,1,1,13,14,[[899,1,1,13,14]]],[38,1,1,14,15,[[927,1,1,14,15]]]],[5765,13404,17054,18682,18798,18847,18875,18877,19105,19626,20360,21098,22506,22678,23124]]],["perpetual",[21,21,[[0,1,1,0,1,[[8,1,1,0,1]]],[1,2,2,1,3,[[78,1,1,1,2],[80,1,1,2,3]]],[2,3,3,3,6,[[92,1,1,3,4],[113,1,1,4,5],[114,1,1,5,6]]],[3,1,1,6,7,[[135,1,1,6,7]]],[18,1,1,7,8,[[555,1,1,7,8]]],[23,9,9,8,17,[[749,1,1,8,9],[762,1,1,9,10],[767,1,1,10,11],[769,2,2,11,13],[793,1,1,13,14],[794,1,1,14,15],[795,2,2,15,17]]],[25,3,3,17,20,[[836,2,2,17,19],[847,1,1,19,20]]],[34,1,1,20,21,[[905,1,1,20,21]]]],[217,2345,2436,2795,3455,3503,4310,15179,19080,19400,19524,19543,19546,20140,20171,20251,20269,21349,21353,21669,22774]]],["time",[3,3,[[2,1,1,0,1,[[114,1,1,0,1]]],[20,1,1,1,2,[[659,1,1,1,2]]],[25,1,1,2,3,[[827,1,1,2,3]]]],[3501,17325,21120]]],["times",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15098]]],["world",[2,2,[[18,1,1,0,1,[[550,1,1,0,1]]],[20,1,1,1,2,[[661,1,1,1,2]]]],[15032,17370]]]]},{"k":"H5770","v":[["+",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7685]]]]},{"k":"H5771","v":[["*",[230,213,[[0,4,4,0,4,[[3,1,1,0,1],[14,1,1,1,2],[18,1,1,2,3],[43,1,1,3,4]]],[1,6,5,4,9,[[69,1,1,4,5],[77,2,2,5,7],[83,3,2,7,9]]],[2,18,16,9,25,[[94,2,2,9,11],[96,1,1,11,12],[99,1,1,12,13],[105,2,2,13,15],[106,1,1,15,16],[107,1,1,16,17],[108,1,1,17,18],[109,2,2,18,20],[111,1,1,20,21],[115,6,4,21,25]]],[3,12,9,25,34,[[121,3,2,25,27],[130,4,3,27,30],[131,1,1,30,31],[134,3,2,31,33],[146,1,1,33,34]]],[4,2,2,34,36,[[157,1,1,34,35],[171,1,1,35,36]]],[5,2,2,36,38,[[208,2,2,36,38]]],[8,6,6,38,44,[[238,2,2,38,40],[255,2,2,40,42],[260,1,1,42,43],[263,1,1,43,44]]],[9,6,6,44,50,[[269,1,1,44,45],[280,2,2,45,47],[285,1,1,47,48],[288,1,1,48,49],[290,1,1,49,50]]],[10,1,1,50,51,[[307,1,1,50,51]]],[11,1,1,51,52,[[319,1,1,51,52]]],[12,1,1,52,53,[[358,1,1,52,53]]],[14,3,3,53,56,[[411,3,3,53,56]]],[15,2,2,56,58,[[416,1,1,56,57],[421,1,1,57,58]]],[17,15,15,58,73,[[442,1,1,58,59],[445,2,2,59,61],[446,1,1,61,62],[448,2,2,62,64],[449,1,1,64,65],[450,1,1,65,66],[454,1,1,66,67],[455,1,1,67,68],[457,1,1,68,69],[466,3,3,69,72],[468,1,1,72,73]]],[18,31,29,73,102,[[495,1,1,73,74],[502,1,1,74,75],[508,1,1,75,76],[509,3,2,76,78],[513,1,1,78,79],[515,2,2,79,81],[516,1,1,81,82],[517,1,1,82,83],[526,1,1,83,84],[528,3,3,84,87],[536,1,1,87,88],[542,1,1,88,89],[546,2,1,89,90],[555,1,1,90,91],[556,1,1,91,92],[562,1,1,92,93],[566,1,1,93,94],[567,1,1,94,95],[580,2,2,95,97],[583,1,1,97,98],[584,1,1,98,99],[586,1,1,99,100],[607,2,2,100,102]]],[19,2,2,102,104,[[632,1,1,102,103],[643,1,1,103,104]]],[22,25,24,104,128,[[679,1,1,104,105],[683,1,1,105,106],[684,1,1,106,107],[691,1,1,107,108],[692,1,1,108,109],[700,1,1,109,110],[704,1,1,110,111],[705,1,1,111,112],[708,1,1,112,113],[711,1,1,113,114],[718,1,1,114,115],[721,1,1,115,116],[728,1,1,116,117],[731,3,3,117,120],[735,1,1,120,121],[737,3,3,121,124],[742,3,3,124,127],[743,2,1,127,128]]],[23,24,23,128,151,[[746,1,1,128,129],[747,1,1,129,130],[749,1,1,130,131],[755,1,1,131,132],[757,1,1,132,133],[758,3,3,133,136],[760,3,3,136,139],[762,1,1,139,140],[769,1,1,140,141],[774,2,2,141,143],[775,2,2,143,145],[776,1,1,145,146],[777,2,1,146,147],[780,2,2,147,149],[794,1,1,149,150],[795,1,1,150,151]]],[24,6,5,151,156,[[798,1,1,151,152],[800,4,3,152,155],[801,1,1,155,156]]],[25,44,38,156,194,[[804,2,2,156,158],[805,6,4,158,162],[808,3,3,162,165],[810,1,1,165,166],[815,6,4,166,170],[817,1,1,170,171],[819,6,5,171,176],[822,4,4,176,180],[825,1,1,180,181],[829,1,1,181,182],[830,1,1,182,183],[833,1,1,183,184],[834,3,3,184,187],[836,1,1,187,188],[837,2,2,188,190],[840,1,1,190,191],[844,1,1,191,192],[845,3,2,192,194]]],[26,3,3,194,197,[[858,3,3,194,197]]],[27,10,10,197,207,[[865,1,1,197,198],[866,1,1,198,199],[868,1,1,199,200],[869,1,1,200,201],[870,2,2,201,203],[873,1,1,203,204],[874,1,1,204,205],[875,2,2,205,207]]],[29,1,1,207,208,[[881,1,1,207,208]]],[32,2,2,208,210,[[899,2,2,208,210]]],[37,2,2,210,212,[[913,2,2,210,212]]],[38,1,1,212,213,[[926,1,1,212,213]]]],[92,376,472,1340,2056,2331,2336,2503,2505,2831,2847,2897,2994,3222,3223,3251,3276,3289,3335,3337,3385,3563,3564,3565,3567,3807,3823,4126,4127,4142,4184,4258,4280,4663,5062,5421,6443,6446,7289,7290,7731,7738,7885,7952,8089,8365,8388,8530,8626,8702,9335,9716,10942,12243,12244,12250,12364,12513,13029,13092,13100,13114,13176,13179,13198,13208,13326,13353,13394,13599,13616,13621,13659,14141,14262,14341,14357,14360,14440,14494,14508,14523,14537,14653,14693,14696,14700,14794,14863,14962,15151,15193,15273,15358,15386,15552,15559,15694,15716,15769,16143,16148,16539,16846,17658,17757,17776,17917,17949,18066,18151,18160,18230,18303,18422,18529,18663,18716,18717,18722,18782,18802,18803,18812,18891,18892,18894,18904,18987,19015,19083,19236,19288,19300,19303,19313,19346,19353,19354,19407,19546,19681,19682,19721,19725,19749,19783,19845,19873,20186,20218,20346,20426,20433,20442,20449,20520,20521,20533,20534,20535,20546,20590,20593,20596,20631,20734,20735,20738,20741,20811,20866,20867,20868,20869,20879,20967,20968,20969,20973,21079,21175,21199,21275,21286,21288,21289,21349,21390,21392,21471,21582,21609,21611,22001,22004,22012,22141,22157,22179,22207,22215,22217,22260,22278,22283,22284,22397,22682,22683,22916,22921,23109]]],["+",[15,15,[[3,2,2,0,2,[[121,2,2,0,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[14,1,1,3,4,[[411,1,1,3,4]]],[17,2,2,4,6,[[445,1,1,4,5],[446,1,1,5,6]]],[18,4,4,6,10,[[495,1,1,6,7],[528,1,1,7,8],[542,1,1,8,9],[584,1,1,9,10]]],[22,1,1,10,11,[[731,1,1,10,11]]],[25,2,2,11,13,[[830,1,1,11,12],[844,1,1,12,13]]],[26,1,1,13,14,[[858,1,1,13,14]]],[38,1,1,14,15,[[926,1,1,14,15]]]],[3807,3823,8626,12250,13100,13114,14141,14693,14863,15716,18716,21199,21582,22001,23109]]],["fault",[2,2,[[9,1,1,0,1,[[269,1,1,0,1]]],[18,1,1,1,2,[[536,1,1,1,2]]]],[8089,14794]]],["iniquities",[43,42,[[2,3,3,0,3,[[105,2,2,0,2],[115,1,1,2,3]]],[3,1,1,3,4,[[130,1,1,3,4]]],[14,2,2,4,6,[[411,2,2,4,6]]],[15,1,1,6,7,[[421,1,1,6,7]]],[17,3,3,7,10,[[448,2,2,7,9],[457,1,1,9,10]]],[18,9,9,10,19,[[515,1,1,10,11],[517,1,1,11,12],[528,1,1,12,13],[556,1,1,13,14],[567,1,1,14,15],[580,2,2,15,17],[607,2,2,17,19]]],[19,1,1,19,20,[[632,1,1,19,20]]],[22,9,8,20,28,[[721,1,1,20,21],[728,1,1,21,22],[731,1,1,22,23],[737,2,2,23,25],[742,2,2,25,27],[743,2,1,27,28]]],[23,4,4,28,32,[[749,1,1,28,29],[755,1,1,29,30],[758,1,1,30,31],[777,1,1,31,32]]],[24,2,2,32,34,[[800,1,1,32,33],[801,1,1,33,34]]],[25,5,5,34,39,[[825,1,1,34,35],[829,1,1,35,36],[833,1,1,36,37],[837,2,2,37,39]]],[26,1,1,39,40,[[858,1,1,39,40]]],[29,1,1,40,41,[[881,1,1,40,41]]],[32,1,1,41,42,[[899,1,1,41,42]]]],[3222,3223,3563,4142,12243,12244,12513,13176,13179,13394,14494,14537,14700,15193,15386,15552,15559,16143,16148,16539,18529,18663,18722,18802,18812,18891,18892,18904,19083,19236,19300,19783,20433,20449,21079,21175,21275,21390,21392,22004,22397,22683]]],["iniquity",[163,152,[[0,3,3,0,3,[[14,1,1,0,1],[18,1,1,1,2],[43,1,1,2,3]]],[1,6,5,3,8,[[69,1,1,3,4],[77,2,2,4,6],[83,3,2,6,8]]],[2,15,14,8,22,[[94,2,2,8,10],[96,1,1,10,11],[99,1,1,11,12],[106,1,1,12,13],[107,1,1,13,14],[108,1,1,14,15],[109,2,2,15,17],[111,1,1,17,18],[115,5,4,18,22]]],[3,9,7,22,29,[[121,1,1,22,23],[130,3,2,23,25],[131,1,1,25,26],[134,3,2,26,28],[146,1,1,28,29]]],[4,2,2,29,31,[[157,1,1,29,30],[171,1,1,30,31]]],[5,2,2,31,33,[[208,2,2,31,33]]],[8,5,5,33,38,[[238,2,2,33,35],[255,2,2,35,37],[260,1,1,37,38]]],[9,4,4,38,42,[[280,2,2,38,40],[285,1,1,40,41],[290,1,1,41,42]]],[12,1,1,42,43,[[358,1,1,42,43]]],[15,1,1,43,44,[[416,1,1,43,44]]],[17,9,9,44,53,[[442,1,1,44,45],[445,1,1,45,46],[449,1,1,46,47],[450,1,1,47,48],[455,1,1,48,49],[466,3,3,49,52],[468,1,1,52,53]]],[18,17,15,53,68,[[502,1,1,53,54],[508,1,1,54,55],[509,3,2,55,57],[513,1,1,57,58],[515,1,1,58,59],[516,1,1,59,60],[526,1,1,60,61],[528,1,1,61,62],[546,2,1,62,63],[555,1,1,63,64],[562,1,1,64,65],[566,1,1,65,66],[583,1,1,66,67],[586,1,1,67,68]]],[19,1,1,68,69,[[643,1,1,68,69]]],[22,15,15,69,84,[[679,1,1,69,70],[683,1,1,70,71],[684,1,1,71,72],[691,1,1,72,73],[692,1,1,73,74],[700,1,1,74,75],[704,1,1,75,76],[705,1,1,76,77],[708,1,1,77,78],[711,1,1,78,79],[718,1,1,79,80],[731,1,1,80,81],[735,1,1,81,82],[737,1,1,82,83],[742,1,1,83,84]]],[23,20,20,84,104,[[746,1,1,84,85],[747,1,1,85,86],[757,1,1,86,87],[758,2,2,87,89],[760,3,3,89,92],[762,1,1,92,93],[769,1,1,93,94],[774,2,2,94,96],[775,2,2,96,98],[776,1,1,98,99],[777,1,1,99,100],[780,2,2,100,102],[794,1,1,102,103],[795,1,1,103,104]]],[24,4,3,104,107,[[798,1,1,104,105],[800,3,2,105,107]]],[25,35,31,107,138,[[804,2,2,107,109],[805,6,4,109,113],[808,3,3,113,116],[810,1,1,116,117],[815,4,4,117,121],[817,1,1,121,122],[819,6,5,122,127],[822,4,4,127,131],[834,3,3,131,134],[836,1,1,134,135],[840,1,1,135,136],[845,3,2,136,138]]],[26,1,1,138,139,[[858,1,1,138,139]]],[27,10,10,139,149,[[865,1,1,139,140],[866,1,1,140,141],[868,1,1,141,142],[869,1,1,142,143],[870,2,2,143,145],[873,1,1,145,146],[874,1,1,146,147],[875,2,2,147,149]]],[32,1,1,149,150,[[899,1,1,149,150]]],[37,2,2,150,152,[[913,2,2,150,152]]]],[376,472,1340,2056,2331,2336,2503,2505,2831,2847,2897,2994,3251,3276,3289,3335,3337,3385,3563,3564,3565,3567,3823,4126,4127,4184,4258,4280,4663,5062,5421,6443,6446,7289,7290,7731,7738,7885,8365,8388,8530,8702,10942,12364,13029,13092,13198,13208,13353,13599,13616,13621,13659,14262,14341,14357,14360,14440,14508,14523,14653,14696,14962,15151,15273,15358,15694,15769,16846,17658,17757,17776,17917,17949,18066,18151,18160,18230,18303,18422,18717,18782,18803,18894,18987,19015,19288,19303,19313,19346,19353,19354,19407,19546,19681,19682,19721,19725,19749,19783,19845,19873,20186,20218,20346,20426,20442,20520,20521,20533,20534,20535,20546,20590,20593,20596,20631,20734,20735,20738,20741,20811,20866,20867,20868,20869,20879,20967,20968,20969,20973,21286,21288,21289,21349,21471,21609,21611,22012,22141,22157,22179,22207,22215,22217,22260,22278,22283,22284,22682,22916,22921]]],["mischief",[1,1,[[11,1,1,0,1,[[319,1,1,0,1]]]],[9716]]],["punishment",[4,3,[[0,1,1,0,1,[[3,1,1,0,1]]],[8,1,1,1,2,[[263,1,1,1,2]]],[25,2,1,2,3,[[815,2,1,2,3]]]],[92,7952,20741]]],["punishments",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13326]]],["sin",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9335]]]]},{"k":"H5772","v":[["marriage",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2087]]]]},{"k":"H5773","v":[["perverse",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18018]]]]},{"k":"H5774","v":[["*",[28,27,[[0,1,1,0,1,[[0,1,1,0,1]]],[4,1,1,1,2,[[156,1,1,1,2]]],[6,1,1,2,3,[[214,1,1,2,3]]],[9,2,2,3,5,[[287,1,1,3,4],[288,1,1,4,5]]],[17,3,3,5,8,[[440,1,1,5,6],[446,1,1,6,7],[455,1,1,7,8]]],[18,4,4,8,12,[[495,1,1,8,9],[532,1,1,9,10],[567,1,1,10,11],[568,1,1,11,12]]],[19,3,2,12,14,[[650,2,1,12,13],[653,1,1,13,14]]],[22,7,7,14,21,[[684,2,2,14,16],[689,1,1,16,17],[692,1,1,17,18],[708,1,1,18,19],[709,1,1,19,20],[738,1,1,20,21]]],[25,1,1,21,22,[[833,1,1,21,22]]],[27,1,1,22,23,[[870,1,1,22,23]]],[33,1,1,23,24,[[902,1,1,23,24]]],[34,1,1,24,25,[[903,1,1,24,25]]],[37,2,2,25,27,[[915,2,2,25,27]]]],[19,5021,6620,8595,8613,12958,13125,13334,14128,14738,15388,15400,17049,17143,17771,17775,17898,17957,18223,18255,18829,21258,22219,22728,22739,22937,22938]]],["+",[2,2,[[22,2,2,0,2,[[692,1,1,0,1],[708,1,1,1,2]]]],[17957,18223]]],["away",[6,6,[[17,1,1,0,1,[[455,1,1,0,1]]],[18,2,2,1,3,[[532,1,1,1,2],[567,1,1,2,3]]],[19,1,1,3,4,[[650,1,1,3,4]]],[27,1,1,4,5,[[870,1,1,4,5]]],[33,1,1,5,6,[[902,1,1,5,6]]]],[13334,14738,15388,17049,22219,22728]]],["brandish",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21258]]],["faint",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8595]]],["flew",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17775]]],["flieth",[2,2,[[4,1,1,0,1,[[156,1,1,0,1]]],[18,1,1,1,2,[[568,1,1,1,2]]]],[5021,15400]]],["fly",[8,8,[[0,1,1,0,1,[[0,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,1,1,2,3,[[440,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]],[22,3,3,4,7,[[684,1,1,4,5],[689,1,1,5,6],[738,1,1,6,7]]],[34,1,1,7,8,[[903,1,1,7,8]]]],[19,8613,12958,14128,17771,17898,18829,22739]]],["flying",[4,4,[[19,1,1,0,1,[[653,1,1,0,1]]],[22,1,1,1,2,[[709,1,1,1,2]]],[37,2,2,2,4,[[915,2,2,2,4]]]],[17143,18255,22937,22938]]],["forth",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13125]]],["set",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17049]]],["weary",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6620]]]]},{"k":"H5775","v":[["*",[71,70,[[0,22,22,0,22,[[0,6,6,0,6],[1,2,2,6,8],[5,2,2,8,10],[6,5,5,10,15],[7,3,3,15,18],[8,2,2,18,20],[39,2,2,20,22]]],[2,10,9,22,31,[[90,1,1,22,23],[96,1,1,23,24],[100,5,5,24,29],[106,1,1,29,30],[109,2,1,30,31]]],[4,3,3,31,34,[[166,2,2,31,33],[180,1,1,33,34]]],[8,2,2,34,36,[[252,2,2,34,36]]],[9,1,1,36,37,[[287,1,1,36,37]]],[10,4,4,37,41,[[294,1,1,37,38],[304,1,1,38,39],[306,1,1,39,40],[311,1,1,40,41]]],[17,3,3,41,44,[[447,1,1,41,42],[463,1,1,42,43],[470,1,1,43,44]]],[18,4,4,44,48,[[527,1,1,44,45],[555,1,1,45,46],[556,1,1,46,47],[581,1,1,47,48]]],[20,1,1,48,49,[[668,1,1,48,49]]],[22,1,1,49,50,[[694,1,1,49,50]]],[23,9,9,50,59,[[748,1,1,50,51],[749,1,1,51,52],[751,1,1,52,53],[753,1,1,53,54],[756,1,1,54,55],[759,1,1,55,56],[760,1,1,56,57],[763,1,1,57,58],[778,1,1,58,59]]],[25,6,6,59,65,[[830,1,1,59,60],[832,2,2,60,62],[833,1,1,62,63],[839,1,1,63,64],[845,1,1,64,65]]],[27,4,4,65,69,[[863,1,1,65,66],[865,1,1,66,67],[868,1,1,67,68],[870,1,1,68,69]]],[35,1,1,69,70,[[906,1,1,69,70]]]],[19,20,21,25,27,29,49,50,144,157,162,167,173,180,182,200,202,203,207,215,1189,1191,2759,2905,3010,3017,3018,3020,3043,3248,3343,5309,5310,5637,7662,7664,8590,8877,9229,9287,9475,13135,13525,13731,14679,15140,15187,15583,17513,17971,19052,19085,19152,19185,19253,19318,19340,19414,19821,21188,21236,21243,21252,21445,21630,22123,22136,22190,22219,22790]]],["+",[5,5,[[0,2,2,0,2,[[5,1,1,0,1],[6,1,1,1,2]]],[17,2,2,2,4,[[463,1,1,2,3],[470,1,1,3,4]]],[23,1,1,4,5,[[753,1,1,4,5]]]],[157,162,13525,13731,19185]]],["bird",[3,3,[[20,1,1,0,1,[[668,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]],[27,1,1,2,3,[[870,1,1,2,3]]]],[17513,17971,22219]]],["birds",[6,6,[[0,2,2,0,2,[[39,2,2,0,2]]],[9,1,1,2,3,[[287,1,1,2,3]]],[23,3,3,3,6,[[748,1,1,3,4],[749,1,1,4,5],[756,1,1,5,6]]]],[1189,1191,8590,19052,19085,19253]]],["flieth",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5309]]],["flying",[2,2,[[2,2,2,0,2,[[100,2,2,0,2]]]],[3018,3020]]],["fowl",[22,22,[[0,16,16,0,16,[[0,6,6,0,6],[1,2,2,6,8],[6,3,3,8,11],[7,3,3,11,14],[8,2,2,14,16]]],[2,4,4,16,20,[[96,1,1,16,17],[100,1,1,17,18],[106,1,1,18,19],[109,1,1,19,20]]],[10,1,1,20,21,[[294,1,1,20,21]]],[25,1,1,21,22,[[845,1,1,21,22]]]],[19,20,21,25,27,29,49,50,173,180,182,200,202,203,207,215,2905,3043,3248,3343,8877,21630]]],["fowls",[32,32,[[0,2,2,0,2,[[5,1,1,0,1],[6,1,1,1,2]]],[2,4,4,2,6,[[90,1,1,2,3],[100,2,2,3,5],[109,1,1,5,6]]],[4,2,2,6,8,[[166,1,1,6,7],[180,1,1,7,8]]],[8,2,2,8,10,[[252,2,2,8,10]]],[10,3,3,10,13,[[304,1,1,10,11],[306,1,1,11,12],[311,1,1,12,13]]],[17,1,1,13,14,[[447,1,1,13,14]]],[18,4,4,14,18,[[527,1,1,14,15],[555,1,1,15,16],[556,1,1,16,17],[581,1,1,17,18]]],[23,5,5,18,23,[[751,1,1,18,19],[759,1,1,19,20],[760,1,1,20,21],[763,1,1,21,22],[778,1,1,22,23]]],[25,5,5,23,28,[[830,1,1,23,24],[832,2,2,24,26],[833,1,1,26,27],[839,1,1,27,28]]],[27,3,3,28,31,[[863,1,1,28,29],[865,1,1,29,30],[868,1,1,30,31]]],[35,1,1,31,32,[[906,1,1,31,32]]]],[144,167,2759,3010,3017,3343,5310,5637,7662,7664,9229,9287,9475,13135,14679,15140,15187,15583,19152,19318,19340,19414,19821,21188,21236,21243,21252,21445,22123,22136,22190,22790]]]]},{"k":"H5776","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[856,1,1,1,2]]]],[21796,21939]]],["fowl",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21939]]],["fowls",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21796]]]]},{"k":"H5777","v":[["lead",[9,9,[[1,1,1,0,1,[[64,1,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]],[17,1,1,2,3,[[454,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]],[25,3,3,4,7,[[823,2,2,4,6],[828,1,1,6,7]]],[37,2,2,7,9,[[915,2,2,7,9]]]],[1930,4686,13321,19118,20994,20996,21133,22943,22944]]]]},{"k":"H5778","v":[["Ephai",[1,1,[[23,1,1,0,1,[[784,1,1,0,1]]]],[19949]]]]},{"k":"H5779","v":[["*",[2,2,[[6,1,1,0,1,[[229,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]]],[7054,17817]]],["+",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17817]]],["advice",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7054]]]]},{"k":"H5780","v":[["*",[8,8,[[0,3,3,0,3,[[9,1,1,0,1],[21,1,1,1,2],[35,1,1,2,3]]],[12,2,2,3,5,[[338,2,2,3,5]]],[17,1,1,5,6,[[436,1,1,5,6]]],[23,1,1,6,7,[[769,1,1,6,7]]],[24,1,1,7,8,[[800,1,1,7,8]]]],[257,568,1068,10269,10294,12870,19554,20441]]],["Huz",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[568]]],["Uz",[7,7,[[0,2,2,0,2,[[9,1,1,0,1],[35,1,1,1,2]]],[12,2,2,2,4,[[338,2,2,2,4]]],[17,1,1,4,5,[[436,1,1,4,5]]],[23,1,1,5,6,[[769,1,1,5,6]]],[24,1,1,6,7,[[800,1,1,6,7]]]],[257,1068,10269,10294,12870,19554,20441]]]]},{"k":"H5781","v":[["pressed",[2,1,[[29,2,1,0,1,[[880,2,1,0,1]]]],[22392]]]]},{"k":"H5782","v":[["*",[80,65,[[4,1,1,0,1,[[184,1,1,0,1]]],[6,4,1,1,2,[[215,4,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[12,3,3,3,6,[[342,1,1,3,4],[348,2,2,4,6]]],[13,2,2,6,8,[[387,1,1,6,7],[402,1,1,7,8]]],[14,2,2,8,10,[[403,2,2,8,10]]],[17,6,6,10,16,[[438,1,1,10,11],[443,1,1,11,12],[449,1,1,12,13],[452,1,1,13,14],[466,1,1,14,15],[476,1,1,15,16]]],[18,12,9,16,25,[[484,1,1,16,17],[512,1,1,17,18],[521,1,1,18,19],[534,3,1,19,20],[536,1,1,20,21],[550,1,1,21,22],[555,1,1,22,23],[557,1,1,23,24],[585,2,1,24,25]]],[19,1,1,25,26,[[637,1,1,25,26]]],[21,9,6,26,32,[[672,2,1,26,27],[673,2,1,27,28],[674,1,1,28,29],[675,1,1,29,30],[678,3,2,30,32]]],[22,18,13,32,45,[[688,1,1,32,33],[691,1,1,33,34],[692,1,1,34,35],[693,1,1,35,36],[719,2,2,36,38],[720,1,1,38,39],[723,1,1,39,40],[728,2,1,40,41],[729,5,2,41,43],[730,2,1,43,44],[742,1,1,44,45]]],[23,6,6,45,51,[[750,1,1,45,46],[769,1,1,46,47],[794,2,2,47,49],[795,2,2,49,51]]],[25,1,1,51,52,[[824,1,1,51,52]]],[26,2,2,52,54,[[860,2,2,52,54]]],[27,1,1,54,55,[[868,1,1,54,55]]],[28,3,3,55,58,[[878,3,3,55,58]]],[34,1,1,58,59,[[904,1,1,58,59]]],[36,1,1,59,60,[[909,1,1,59,60]]],[37,5,4,60,64,[[912,1,1,60,61],[914,2,1,61,62],[919,1,1,62,63],[923,1,1,63,64]]],[38,1,1,64,65,[[926,1,1,64,65]]]],[5769,6635,8671,10454,10684,10693,11640,12015,12017,12021,12912,13035,13193,13268,13617,13898,14001,14433,14594,14776,14794,15040,15151,15200,15744,16668,17561,17576,17598,17600,17644,17645,17876,17923,17937,17965,18453,18476,18493,18574,18666,18682,18690,18697,18892,19111,19566,20175,20207,20213,20223,21029,22038,22061,22182,22350,22352,22355,22767,22854,22912,22923,23012,23066,23115]]],["+",[17,15,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,3,3,1,4,[[342,1,1,1,2],[348,2,2,2,4]]],[13,1,1,4,5,[[402,1,1,4,5]]],[14,1,1,5,6,[[403,1,1,5,6]]],[18,1,1,6,7,[[557,1,1,6,7]]],[21,5,3,7,10,[[672,2,1,7,8],[673,2,1,8,9],[678,1,1,9,10]]],[22,1,1,10,11,[[691,1,1,10,11]]],[23,1,1,11,12,[[795,1,1,11,12]]],[25,1,1,12,13,[[824,1,1,12,13]]],[27,1,1,13,14,[[868,1,1,13,14]]],[36,1,1,14,15,[[909,1,1,14,15]]]],[8671,10454,10684,10693,12015,12017,15200,17561,17576,17644,17923,20223,21029,22182,22854]]],["Arise",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22767]]],["Awake",[8,8,[[6,1,1,0,1,[[215,1,1,0,1]]],[18,2,2,1,3,[[521,1,1,1,2],[585,1,1,2,3]]],[21,1,1,3,4,[[674,1,1,3,4]]],[22,3,3,4,7,[[729,2,2,4,6],[730,1,1,6,7]]],[37,1,1,7,8,[[923,1,1,7,8]]]],[6635,14594,15744,17598,18682,18690,18697,23066]]],["awake",[13,9,[[6,3,1,0,1,[[215,3,1,0,1]]],[17,1,1,1,2,[[443,1,1,1,2]]],[18,5,4,2,6,[[484,1,1,2,3],[534,2,1,3,4],[536,1,1,4,5],[585,1,1,5,6]]],[22,4,3,6,9,[[729,3,2,6,8],[730,1,1,8,9]]]],[6635,13035,14001,14776,14794,15744,18682,18690,18697]]],["awakest",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15040]]],["himself",[2,2,[[17,1,1,0,1,[[452,1,1,0,1]]],[22,1,1,1,2,[[742,1,1,1,2]]]],[13268,18892]]],["master",[1,1,[[38,1,1,0,1,[[926,1,1,0,1]]]],[23115]]],["myself",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13617]]],["raise",[2,2,[[23,1,1,0,1,[[794,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]]],[20175,22350]]],["raised",[4,4,[[14,1,1,0,1,[[403,1,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[23,1,1,2,3,[[750,1,1,2,3]]],[37,1,1,3,4,[[919,1,1,3,4]]]],[12021,13193,19111,23012]]],["thyself",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14433]]],["up",[23,23,[[4,1,1,0,1,[[184,1,1,0,1]]],[13,1,1,1,2,[[387,1,1,1,2]]],[17,2,2,2,4,[[438,1,1,2,3],[476,1,1,3,4]]],[18,2,2,4,6,[[534,1,1,4,5],[555,1,1,5,6]]],[19,1,1,6,7,[[637,1,1,6,7]]],[21,2,2,7,9,[[678,2,2,7,9]]],[22,7,7,9,16,[[688,1,1,9,10],[692,1,1,10,11],[693,1,1,11,12],[719,2,2,12,14],[720,1,1,14,15],[723,1,1,15,16]]],[23,3,3,16,19,[[769,1,1,16,17],[794,1,1,17,18],[795,1,1,18,19]]],[26,2,2,19,21,[[860,2,2,19,21]]],[28,1,1,21,22,[[878,1,1,21,22]]],[37,1,1,22,23,[[912,1,1,22,23]]]],[5769,11640,12912,13898,14776,15151,16668,17644,17645,17876,17937,17965,18453,18476,18493,18574,19566,20207,20213,22038,22061,22352,22912]]],["waked",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22923]]],["wakened",[2,2,[[28,1,1,0,1,[[878,1,1,0,1]]],[37,1,1,1,2,[[914,1,1,1,2]]]],[22355,22923]]],["wakeneth",[2,1,[[22,2,1,0,1,[[728,2,1,0,1]]]],[18666]]],["waketh",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17600]]]]},{"k":"H5783","v":[["+",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22777]]]]},{"k":"H5784","v":[["chaff",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21793]]]]},{"k":"H5785","v":[["*",[99,82,[[0,2,2,0,2,[[2,1,1,0,1],[26,1,1,1,2]]],[1,17,11,2,13,[[71,1,1,2,3],[74,2,1,3,4],[75,2,1,4,5],[78,1,1,5,6],[83,3,3,6,9],[84,4,2,9,11],[85,2,1,11,12],[88,2,1,12,13]]],[2,53,44,13,57,[[93,1,1,13,14],[96,1,1,14,15],[97,1,1,15,16],[98,1,1,16,17],[100,1,1,17,18],[102,46,37,18,55],[104,1,1,55,56],[105,1,1,56,57]]],[3,8,8,57,65,[[120,6,6,57,63],[135,1,1,63,64],[147,1,1,64,65]]],[11,1,1,65,66,[[313,1,1,65,66]]],[17,10,8,66,74,[[437,2,1,66,67],[442,1,1,67,68],[445,1,1,68,69],[453,1,1,69,70],[454,3,2,70,72],[465,1,1,72,73],[476,1,1,73,74]]],[23,1,1,74,75,[[757,1,1,74,75]]],[24,3,3,75,78,[[799,1,1,75,76],[800,1,1,76,77],[801,1,1,77,78]]],[25,2,2,78,80,[[838,2,2,78,80]]],[32,2,2,80,82,[[895,2,2,80,82]]]],[76,743,2140,2200,2249,2350,2525,2526,2531,2538,2554,2585,2698,2806,2887,2934,2964,3029,3054,3055,3056,3057,3058,3059,3060,3062,3063,3064,3070,3072,3073,3074,3076,3077,3078,3079,3080,3082,3083,3084,3086,3087,3088,3090,3091,3095,3100,3101,3103,3104,3105,3108,3109,3110,3111,3185,3228,3749,3751,3753,3754,3755,3757,4294,4684,9541,12895,13013,13097,13289,13317,13323,13587,13895,19289,20358,20428,20452,21403,21405,22610,22611]]],["+",[3,2,[[2,1,1,0,1,[[102,1,1,0,1]]],[17,2,1,1,2,[[437,2,1,1,2]]]],[3055,12895]]],["hide",[2,2,[[2,2,2,0,2,[[97,1,1,0,1],[98,1,1,1,2]]]],[2934,2964]]],["leather",[1,1,[[11,1,1,0,1,[[313,1,1,0,1]]]],[9541]]],["skin",[70,61,[[1,5,5,0,5,[[71,1,1,0,1],[78,1,1,1,2],[83,3,3,2,5]]],[2,48,40,5,45,[[93,1,1,5,6],[96,1,1,6,7],[100,1,1,7,8],[102,44,36,8,44],[104,1,1,44,45]]],[3,1,1,45,46,[[135,1,1,45,46]]],[17,8,7,46,53,[[442,1,1,46,47],[445,1,1,47,48],[453,1,1,48,49],[454,3,2,49,51],[465,1,1,51,52],[476,1,1,52,53]]],[23,1,1,53,54,[[757,1,1,53,54]]],[24,3,3,54,57,[[799,1,1,54,55],[800,1,1,55,56],[801,1,1,56,57]]],[25,2,2,57,59,[[838,2,2,57,59]]],[32,2,2,59,61,[[895,2,2,59,61]]]],[2140,2350,2525,2526,2531,2806,2887,3029,3054,3055,3056,3057,3058,3059,3060,3062,3063,3064,3070,3072,3073,3074,3076,3077,3078,3079,3080,3082,3083,3084,3086,3087,3088,3090,3091,3095,3100,3101,3103,3104,3105,3108,3109,3110,3185,4294,13013,13097,13289,13317,13323,13587,13895,19289,20358,20428,20452,21403,21405,22610,22611]]],["skins",[23,17,[[0,2,2,0,2,[[2,1,1,0,1],[26,1,1,1,2]]],[1,12,6,2,8,[[74,2,1,2,3],[75,2,1,3,4],[84,4,2,4,6],[85,2,1,6,7],[88,2,1,7,8]]],[2,2,2,8,10,[[102,1,1,8,9],[105,1,1,9,10]]],[3,7,7,10,17,[[120,6,6,10,16],[147,1,1,16,17]]]],[76,743,2200,2249,2538,2554,2585,2698,3111,3228,3749,3751,3753,3754,3755,3757,4684]]]]},{"k":"H5786","v":[["*",[5,5,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,1,1,1,2,[[168,1,1,1,2]]],[11,1,1,2,3,[[337,1,1,2,3]]],[23,2,2,3,5,[[783,1,1,3,4],[796,1,1,4,5]]]],[2152,5361,10229,19930,20287]]],["+",[1,1,[[11,1,1,0,1,[[337,1,1,0,1]]]],[10229]]],["blind",[1,1,[[4,1,1,0,1,[[168,1,1,0,1]]]],[5361]]],["blindeth",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2152]]],["out",[2,2,[[23,2,2,0,2,[[783,1,1,0,1],[796,1,1,1,2]]]],[19930,20287]]]]},{"k":"H5787","v":[["*",[26,23,[[1,1,1,0,1,[[53,1,1,0,1]]],[2,2,2,1,3,[[108,1,1,1,2],[110,1,1,2,3]]],[4,3,3,3,6,[[167,1,1,3,4],[179,1,1,4,5],[180,1,1,5,6]]],[9,3,2,6,8,[[271,3,2,6,8]]],[17,1,1,8,9,[[464,1,1,8,9]]],[18,1,1,9,10,[[623,1,1,9,10]]],[22,11,9,10,19,[[707,1,1,10,11],[713,1,1,11,12],[720,6,4,12,16],[721,1,1,16,17],[734,1,1,17,18],[737,1,1,18,19]]],[23,1,1,19,20,[[775,1,1,19,20]]],[24,1,1,20,21,[[800,1,1,20,21]]],[35,1,1,21,22,[[906,1,1,21,22]]],[38,1,1,22,23,[[925,1,1,22,23]]]],[1612,3295,3363,5340,5603,5640,8138,8140,13547,16349,18211,18325,18487,18496,18498,18499,18513,18763,18810,19699,20434,22804,23097]]],["blind",[25,22,[[1,1,1,0,1,[[53,1,1,0,1]]],[2,2,2,1,3,[[108,1,1,1,2],[110,1,1,2,3]]],[4,3,3,3,6,[[167,1,1,3,4],[179,1,1,4,5],[180,1,1,5,6]]],[9,3,2,6,8,[[271,3,2,6,8]]],[17,1,1,8,9,[[464,1,1,8,9]]],[18,1,1,9,10,[[623,1,1,9,10]]],[22,11,9,10,19,[[707,1,1,10,11],[713,1,1,11,12],[720,6,4,12,16],[721,1,1,16,17],[734,1,1,17,18],[737,1,1,18,19]]],[23,1,1,19,20,[[775,1,1,19,20]]],[24,1,1,20,21,[[800,1,1,20,21]]],[38,1,1,21,22,[[925,1,1,21,22]]]],[1612,3295,3363,5340,5603,5640,8138,8140,13547,16349,18211,18325,18487,18496,18498,18499,18513,18763,18810,19699,20434,23097]]],["men",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22804]]]]},{"k":"H5788","v":[["*",[3,3,[[2,1,1,0,1,[[111,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[37,1,1,2,3,[[922,1,1,2,3]]]],[3391,5639,23049]]],["Blind",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3391]]],["blindness",[2,2,[[4,1,1,0,1,[[180,1,1,0,1]]],[37,1,1,1,2,[[922,1,1,1,2]]]],[5639,23049]]]]},{"k":"H5789","v":[["Assemble",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22354]]]]},{"k":"H5790","v":[["+",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18666]]]]},{"k":"H5791","v":[["*",[11,10,[[17,4,3,0,3,[[443,2,1,0,1],[454,1,1,1,2],[469,1,1,2,3]]],[18,2,2,3,5,[[596,1,1,3,4],[623,1,1,4,5]]],[20,3,3,5,8,[[659,1,1,5,6],[665,1,1,6,7],[670,1,1,7,8]]],[24,1,1,8,9,[[799,1,1,8,9]]],[29,1,1,9,10,[[886,1,1,9,10]]]],[13032,13303,13695,15976,16350,17330,17442,17526,20390,22486]]],["crooked",[2,2,[[20,2,2,0,2,[[659,1,1,0,1],[665,1,1,1,2]]]],[17330,17442]]],["down",[1,1,[[18,1,1,0,1,[[623,1,1,0,1]]]],[16350]]],["falsifying",[1,1,[[29,1,1,0,1,[[886,1,1,0,1]]]],[22486]]],["overthrown",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13303]]],["perversely",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15976]]],["pervert",[3,2,[[17,3,2,0,2,[[443,2,1,0,1],[469,1,1,1,2]]]],[13032,13695]]],["subvert",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20390]]],["themselves",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17526]]]]},{"k":"H5792","v":[["wrong",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20413]]]]},{"k":"H5793","v":[["Uthai",[2,2,[[12,1,1,0,1,[[346,1,1,0,1]]],[14,1,1,1,2,[[410,1,1,1,2]]]],[10619,12215]]]]},{"k":"H5794","v":[["*",[23,23,[[0,2,2,0,2,[[48,2,2,0,2]]],[1,1,1,2,3,[[63,1,1,2,3]]],[3,2,2,3,5,[[129,1,1,3,4],[137,1,1,4,5]]],[4,1,1,5,6,[[180,1,1,5,6]]],[6,2,2,6,8,[[224,2,2,6,8]]],[9,1,1,8,9,[[288,1,1,8,9]]],[15,1,1,9,10,[[421,1,1,9,10]]],[18,2,2,10,12,[[495,1,1,10,11],[536,1,1,11,12]]],[19,3,3,12,15,[[645,1,1,12,13],[648,1,1,13,14],[657,1,1,14,15]]],[21,1,1,15,16,[[678,1,1,15,16]]],[22,4,4,16,20,[[697,1,1,16,17],[703,1,1,17,18],[721,1,1,18,19],[734,1,1,19,20]]],[25,1,1,20,21,[[808,1,1,20,21]]],[26,1,1,21,22,[[857,1,1,21,22]]],[29,1,1,22,23,[[883,1,1,22,23]]]],[1476,1480,1910,4103,4364,5661,6923,6927,8620,12522,14135,14793,16924,16998,17276,17646,18008,18121,18521,18764,20601,21984,22432]]],["+",[3,3,[[6,1,1,0,1,[[224,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[22,1,1,2,3,[[734,1,1,2,3]]]],[6923,8620,18764]]],["fierce",[4,4,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[22,1,1,2,3,[[697,1,1,2,3]]],[26,1,1,3,4,[[857,1,1,3,4]]]],[1480,5661,18008,21984]]],["mighty",[3,3,[[15,1,1,0,1,[[421,1,1,0,1]]],[18,1,1,1,2,[[536,1,1,1,2]]],[22,1,1,2,3,[[721,1,1,2,3]]]],[12522,14793,18521]]],["power",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1476]]],["roughly",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16924]]],["strong",[10,10,[[1,1,1,0,1,[[63,1,1,0,1]]],[3,2,2,1,3,[[129,1,1,1,2],[137,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]],[19,2,2,4,6,[[648,1,1,4,5],[657,1,1,5,6]]],[21,1,1,6,7,[[678,1,1,6,7]]],[22,1,1,7,8,[[703,1,1,7,8]]],[25,1,1,8,9,[[808,1,1,8,9]]],[29,1,1,9,10,[[883,1,1,9,10]]]],[1910,4103,4364,14135,16998,17276,17646,18121,20601,22432]]],["stronger",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6927]]]]},{"k":"H5795","v":[["*",[74,74,[[0,11,11,0,11,[[14,1,1,0,1],[26,2,2,1,3],[29,3,3,3,6],[30,1,1,6,7],[31,1,1,7,8],[36,1,1,8,9],[37,2,2,9,11]]],[1,7,7,11,18,[[61,1,1,11,12],[74,1,1,12,13],[75,1,1,13,14],[84,3,3,14,17],[85,1,1,17,18]]],[2,12,12,18,30,[[90,1,1,18,19],[92,1,1,19,20],[93,2,2,20,22],[94,1,1,22,23],[96,1,1,23,24],[98,1,1,24,25],[105,1,1,25,26],[106,1,1,26,27],[111,2,2,27,29],[112,1,1,29,30]]],[3,25,25,30,55,[[123,13,13,30,43],[131,3,3,43,46],[134,1,1,46,47],[144,2,2,47,49],[145,5,5,49,54],[147,1,1,54,55]]],[4,1,1,55,56,[[166,1,1,55,56]]],[6,4,4,56,60,[[216,1,1,56,57],[223,2,2,57,59],[225,1,1,59,60]]],[8,4,4,60,64,[[251,1,1,60,61],[254,2,2,61,63],[260,1,1,63,64]]],[10,1,1,64,65,[[310,1,1,64,65]]],[13,2,2,65,67,[[395,1,1,65,66],[401,1,1,66,67]]],[19,1,1,67,68,[[654,1,1,67,68]]],[21,2,2,68,70,[[674,1,1,68,69],[676,1,1,69,70]]],[25,2,2,70,72,[[844,1,1,70,71],[846,1,1,71,72]]],[26,2,2,72,74,[[857,2,2,72,74]]]],[369,736,743,862,863,865,911,942,1114,1136,1139,1821,2199,2242,2537,2554,2557,2580,2755,2790,2818,2823,2836,2902,2956,3206,3238,3388,3396,3421,3866,3872,3878,3884,3890,3896,3902,3908,3914,3920,3926,3932,3937,4164,4177,4180,4274,4592,4607,4613,4619,4624,4627,4633,4684,5294,6673,6899,6903,6930,7615,7719,7722,7863,9435,11812,11973,17196,17583,17619,21594,21653,21966,21969]]],["+",[12,12,[[0,2,2,0,2,[[37,2,2,0,2]]],[4,1,1,2,3,[[166,1,1,2,3]]],[6,4,4,3,7,[[216,1,1,3,4],[223,2,2,4,6],[225,1,1,6,7]]],[8,1,1,7,8,[[251,1,1,7,8]]],[13,2,2,8,10,[[395,1,1,8,9],[401,1,1,9,10]]],[26,2,2,10,12,[[857,2,2,10,12]]]],[1136,1139,5294,6673,6899,6903,6930,7615,11812,11973,21966,21969]]],["goat",[7,7,[[0,1,1,0,1,[[14,1,1,0,1]]],[2,4,4,1,5,[[92,1,1,1,2],[96,1,1,2,3],[106,1,1,3,4],[111,1,1,4,5]]],[3,2,2,5,7,[[131,1,1,5,6],[134,1,1,6,7]]]],[369,2790,2902,3238,3396,4180,4274]]],["goats",[43,43,[[0,8,8,0,8,[[26,2,2,0,2],[29,3,3,2,5],[30,1,1,5,6],[31,1,1,6,7],[36,1,1,7,8]]],[1,1,1,8,9,[[61,1,1,8,9]]],[2,8,8,9,17,[[90,1,1,9,10],[93,2,2,10,12],[94,1,1,12,13],[98,1,1,13,14],[105,1,1,14,15],[111,1,1,15,16],[112,1,1,16,17]]],[3,21,21,17,38,[[123,13,13,17,30],[131,1,1,30,31],[144,2,2,31,33],[145,5,5,33,38]]],[8,1,1,38,39,[[260,1,1,38,39]]],[21,2,2,39,41,[[674,1,1,39,40],[676,1,1,40,41]]],[25,2,2,41,43,[[844,1,1,41,42],[846,1,1,42,43]]]],[736,743,862,863,865,911,942,1114,1821,2755,2818,2823,2836,2956,3206,3388,3421,3866,3872,3878,3884,3890,3896,3902,3908,3914,3920,3926,3932,3937,4177,4592,4607,4613,4619,4624,4627,4633,7863,17583,17619,21594,21653]]],["goats'",[10,10,[[1,6,6,0,6,[[74,1,1,0,1],[75,1,1,1,2],[84,3,3,2,5],[85,1,1,5,6]]],[3,1,1,6,7,[[147,1,1,6,7]]],[8,2,2,7,9,[[254,2,2,7,9]]],[19,1,1,9,10,[[654,1,1,9,10]]]],[2199,2242,2537,2554,2557,2580,4684,7719,7722,17196]]],["kid",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4164]]],["kids",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9435]]]]},{"k":"H5796","v":[["+",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12168]]]]},{"k":"H5797","v":[["*",[93,92,[[1,2,2,0,2,[[64,2,2,0,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[6,2,2,3,5,[[215,1,1,3,4],[219,1,1,4,5]]],[8,1,1,5,6,[[237,1,1,5,6]]],[9,1,1,6,7,[[272,1,1,6,7]]],[12,4,4,7,11,[[350,1,1,7,8],[353,3,3,8,11]]],[13,2,2,11,13,[[372,1,1,11,12],[396,1,1,12,13]]],[14,1,1,13,14,[[410,1,1,13,14]]],[17,4,4,14,18,[[447,1,1,14,15],[461,1,1,15,16],[472,1,1,16,17],[476,1,1,17,18]]],[18,44,43,18,61,[[485,1,1,18,19],[498,2,2,19,21],[505,2,2,21,23],[506,2,2,23,25],[507,1,1,25,26],[523,1,1,26,27],[536,3,3,27,30],[538,1,1,30,31],[539,2,2,31,33],[540,1,1,33,34],[543,1,1,34,35],[545,5,4,35,39],[548,1,1,39,40],[551,1,1,40,41],[554,1,1,41,42],[555,2,2,42,44],[558,1,1,44,45],[561,1,1,45,46],[563,1,1,46,47],[566,2,2,47,49],[567,1,1,49,50],[570,1,1,50,51],[573,2,2,51,53],[576,1,1,53,54],[582,1,1,54,55],[587,1,1,55,56],[595,1,1,56,57],[609,1,1,57,58],[615,1,1,58,59],[617,1,1,59,60],[627,1,1,60,61]]],[19,9,9,61,70,[[637,1,1,61,62],[641,1,1,62,63],[645,3,3,63,66],[648,1,1,66,67],[651,1,1,67,68],[658,2,2,68,70]]],[20,1,1,70,71,[[666,1,1,70,71]]],[22,7,7,71,78,[[690,1,1,71,72],[704,1,1,72,73],[723,1,1,73,74],[727,1,1,74,75],[729,1,1,75,76],[730,1,1,76,77],[740,1,1,77,78]]],[23,3,3,78,81,[[760,1,1,78,79],[792,1,1,79,80],[795,1,1,80,81]]],[25,8,8,81,89,[[820,3,3,81,84],[825,1,1,84,85],[827,1,1,85,86],[831,2,2,86,88],[834,1,1,88,89]]],[29,1,1,89,90,[[881,1,1,89,90]]],[32,1,1,90,91,[[897,1,1,90,91]]],[34,1,1,91,92,[[905,1,1,91,92]]]],[1922,1933,3543,6644,6805,7250,8171,10768,10831,10847,10848,11323,11848,12223,13144,13469,13775,13910,14014,14192,14204,14306,14307,14309,14319,14326,14615,14799,14806,14807,14822,14834,14838,14841,14876,14928,14933,14934,14935,14983,15061,15107,15139,15174,15218,15264,15300,15336,15343,15389,15427,15471,15472,15503,15610,15788,15883,16159,16234,16270,16395,16671,16798,16911,16912,16920,17006,17084,17301,17309,17459,17902,18131,18585,18641,18682,18697,18862,19355,20097,20265,20892,20893,20895,21077,21111,21210,21222,21308,22406,22637,22772]]],["Strength",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17309]]],["boldness",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17459]]],["loud",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11848]]],["might",[2,2,[[9,1,1,0,1,[[272,1,1,0,1]]],[12,1,1,1,2,[[350,1,1,1,2]]]],[8171,10768]]],["mighty",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14933]]],["power",[11,11,[[2,1,1,0,1,[[115,1,1,0,1]]],[14,1,1,1,2,[[410,1,1,1,2]]],[18,7,7,2,9,[[536,1,1,2,3],[539,1,1,3,4],[540,1,1,4,5],[543,1,1,5,6],[555,1,1,6,7],[567,1,1,7,8],[627,1,1,8,9]]],[25,1,1,9,10,[[831,1,1,9,10]]],[34,1,1,10,11,[[905,1,1,10,11]]]],[3543,12223,14806,14838,14841,14876,15139,15389,16395,21210,22772]]],["strength",[59,58,[[1,2,2,0,2,[[64,2,2,0,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[12,3,3,4,7,[[353,3,3,4,7]]],[13,1,1,7,8,[[372,1,1,7,8]]],[17,4,4,8,12,[[447,1,1,8,9],[461,1,1,9,10],[472,1,1,10,11],[476,1,1,11,12]]],[18,32,31,12,43,[[485,1,1,12,13],[498,2,2,13,15],[505,2,2,15,17],[506,2,2,17,19],[523,1,1,19,20],[536,2,2,20,22],[539,1,1,22,23],[545,4,3,23,26],[551,1,1,26,27],[554,1,1,27,28],[555,1,1,28,29],[558,1,1,29,30],[561,1,1,30,31],[563,1,1,31,32],[566,1,1,32,33],[570,1,1,33,34],[573,2,2,34,36],[576,1,1,36,37],[582,1,1,37,38],[587,1,1,38,39],[595,1,1,39,40],[609,1,1,40,41],[615,1,1,41,42],[617,1,1,42,43]]],[19,2,2,43,45,[[648,1,1,43,44],[658,1,1,44,45]]],[22,6,6,45,51,[[690,1,1,45,46],[723,1,1,46,47],[727,1,1,47,48],[729,1,1,48,49],[730,1,1,49,50],[740,1,1,50,51]]],[23,2,2,51,53,[[760,1,1,51,52],[795,1,1,52,53]]],[25,3,3,53,56,[[825,1,1,53,54],[831,1,1,54,55],[834,1,1,55,56]]],[29,1,1,56,57,[[881,1,1,56,57]]],[32,1,1,57,58,[[897,1,1,57,58]]]],[1922,1933,6644,7250,10831,10847,10848,11323,13144,13469,13775,13910,14014,14192,14204,14306,14307,14309,14319,14615,14799,14807,14834,14928,14934,14935,15061,15107,15174,15218,15264,15300,15343,15427,15471,15472,15503,15610,15788,15883,16159,16234,16270,17006,17301,17902,18585,18641,18682,18697,18862,19355,20265,21077,21222,21308,22406,22637]]],["strong",[17,17,[[6,1,1,0,1,[[219,1,1,0,1]]],[18,4,4,1,5,[[507,1,1,1,2],[538,1,1,2,3],[548,1,1,3,4],[566,1,1,4,5]]],[19,6,6,5,11,[[637,1,1,5,6],[641,1,1,6,7],[645,3,3,7,10],[651,1,1,10,11]]],[22,1,1,11,12,[[704,1,1,11,12]]],[23,1,1,12,13,[[792,1,1,12,13]]],[25,4,4,13,17,[[820,3,3,13,16],[827,1,1,16,17]]]],[6805,14326,14822,14983,15336,16671,16798,16911,16912,16920,17084,18131,20097,20892,20893,20895,21111]]]]},{"k":"H5798","v":[["*",[14,14,[[9,4,4,0,4,[[272,4,4,0,4]]],[11,2,2,4,6,[[333,2,2,4,6]]],[12,6,6,6,12,[[343,1,1,6,7],[345,1,1,7,8],[350,4,4,8,12]]],[14,1,1,12,13,[[404,1,1,12,13]]],[15,1,1,13,14,[[419,1,1,13,14]]]],[8160,8163,8164,8165,10137,10145,10483,10582,10767,10769,10770,10771,12076,12471]]],["Uzza",[10,10,[[11,2,2,0,2,[[333,2,2,0,2]]],[12,6,6,2,8,[[343,1,1,2,3],[345,1,1,3,4],[350,4,4,4,8]]],[14,1,1,8,9,[[404,1,1,8,9]]],[15,1,1,9,10,[[419,1,1,9,10]]]],[10137,10145,10483,10582,10767,10769,10770,10771,12076,12471]]],["Uzzah",[4,4,[[9,4,4,0,4,[[272,4,4,0,4]]]],[8160,8163,8164,8165]]]]},{"k":"H5799","v":[["scapegoat",[4,3,[[2,4,3,0,3,[[105,4,3,0,3]]]],[3209,3211,3227]]]]},{"k":"H5800","v":[["*",[215,206,[[0,11,10,0,10,[[1,1,1,0,1],[23,1,1,1,2],[27,1,1,2,3],[38,5,5,3,8],[43,2,1,8,9],[49,1,1,9,10]]],[1,5,3,10,13,[[51,1,1,10,11],[58,1,1,11,12],[72,3,1,12,13]]],[2,3,3,13,16,[[108,1,1,13,14],[112,1,1,14,15],[115,1,1,15,16]]],[3,1,1,16,17,[[126,1,1,16,17]]],[4,9,9,17,26,[[164,1,1,17,18],[166,1,1,18,19],[180,1,1,19,20],[181,1,1,20,21],[183,4,4,21,25],[184,1,1,25,26]]],[5,5,5,26,31,[[187,1,1,26,27],[194,1,1,27,28],[208,1,1,28,29],[210,2,2,29,31]]],[6,6,6,31,37,[[212,3,3,31,34],[220,3,3,34,37]]],[7,4,4,37,41,[[232,1,1,37,38],[233,3,3,38,41]]],[8,4,4,41,45,[[243,1,1,41,42],[247,1,1,42,43],[265,1,1,43,44],[266,1,1,44,45]]],[9,2,2,45,47,[[271,1,1,45,46],[281,1,1,46,47]]],[10,12,12,47,59,[[296,1,1,47,48],[298,1,1,48,49],[299,1,1,49,50],[301,1,1,50,51],[302,2,2,51,53],[304,1,1,53,54],[308,1,1,54,55],[309,3,3,55,58],[311,1,1,58,59]]],[11,11,11,59,70,[[314,3,3,59,62],[316,1,1,62,63],[319,1,1,63,64],[320,1,1,64,65],[321,1,1,65,66],[326,1,1,66,67],[329,1,1,67,68],[333,1,1,68,69],[334,1,1,69,70]]],[12,5,5,70,75,[[347,1,1,70,71],[351,1,1,71,72],[353,1,1,72,73],[365,2,2,73,75]]],[13,23,20,75,95,[[373,2,2,75,77],[376,2,2,77,79],[377,1,1,79,80],[378,3,2,80,82],[379,2,2,82,84],[381,2,1,84,85],[387,1,1,85,86],[390,5,4,86,90],[394,2,2,90,92],[395,1,1,92,93],[398,1,1,93,94],[400,1,1,94,95]]],[14,3,3,95,98,[[410,1,1,95,96],[411,2,2,96,98]]],[15,9,9,98,107,[[415,1,1,98,99],[416,1,1,99,100],[417,1,1,100,101],[421,4,4,101,105],[422,1,1,105,106],[425,1,1,106,107]]],[17,8,8,107,115,[[441,1,1,107,108],[444,1,1,108,109],[445,1,1,109,110],[453,1,1,110,111],[455,2,2,111,113],[474,2,2,113,115]]],[18,22,22,115,137,[[486,1,1,115,116],[487,1,1,116,117],[493,1,1,117,118],[499,1,1,118,119],[504,2,2,119,121],[514,4,4,121,125],[515,2,2,125,127],[517,1,1,127,128],[526,1,1,128,129],[548,3,3,129,132],[566,1,1,132,133],[571,1,1,133,134],[596,3,3,134,137]]],[19,11,11,137,148,[[629,2,2,137,139],[630,1,1,139,140],[631,2,2,140,142],[636,1,1,142,143],[637,1,1,143,144],[642,1,1,144,145],[654,1,1,145,146],[655,2,2,146,148]]],[22,22,21,148,169,[[679,2,2,148,150],[685,1,1,150,151],[688,2,2,151,153],[695,3,2,153,155],[696,1,1,155,156],[705,1,1,156,157],[710,1,1,157,158],[719,1,1,158,159],[720,1,1,159,160],[727,1,1,160,161],[732,2,2,161,163],[733,1,1,163,164],[736,1,1,164,165],[738,1,1,165,166],[740,2,2,166,168],[743,1,1,168,169]]],[23,25,23,169,192,[[745,1,1,169,170],[746,3,3,170,173],[748,1,1,173,174],[749,2,2,174,176],[753,3,3,176,179],[756,1,1,179,180],[758,1,1,180,181],[760,2,1,181,182],[761,3,2,182,184],[762,1,1,184,185],[763,1,1,185,186],[766,1,1,186,187],[769,1,1,187,188],[792,1,1,188,189],[793,2,2,189,191],[795,1,1,191,192]]],[24,1,1,192,193,[[801,1,1,192,193]]],[25,7,7,193,200,[[809,1,1,193,194],[810,1,1,194,195],[821,1,1,195,196],[824,2,2,196,198],[825,1,1,198,199],[837,1,1,199,200]]],[26,1,1,200,201,[[860,1,1,200,201]]],[27,1,1,201,202,[[865,1,1,201,202]]],[31,1,1,202,203,[[890,1,1,202,203]]],[35,1,1,203,204,[[907,1,1,203,204]]],[37,1,1,204,205,[[921,1,1,204,205]]],[38,1,1,205,206,[[928,1,1,205,206]]]],[54,618,788,1155,1161,1162,1164,1167,1346,1514,1574,1763,2149,3291,3424,3567,4019,5259,5317,5631,5704,5734,5736,5744,5745,5794,5856,6019,6429,6492,6496,6557,6558,6566,6817,6821,6824,7143,7160,7165,7169,7377,7470,7991,8016,8153,8405,8909,9042,9060,9141,9159,9164,9228,9359,9397,9401,9407,9472,9553,9555,9557,9633,9714,9733,9764,9922,9999,10141,10162,10666,10786,10857,11152,11163,11343,11346,11403,11408,11428,11438,11442,11463,11464,11492,11634,11695,11697,11701,11702,11770,11778,11797,11906,11958,12223,12246,12247,12335,12361,12392,12528,12530,12539,12542,12588,12682,12992,13078,13087,13280,13339,13345,13845,13848,14031,14055,14102,14205,14294,14295,14458,14475,14478,14483,14500,14511,14537,14658,14985,14987,14994,15356,15445,15906,15951,15985,16446,16450,16458,16492,16496,16644,16673,16817,17179,17200,17209,17658,17682,17798,17853,17864,17985,17992,18003,18161,18273,18468,18496,18650,18729,18730,18747,18788,18836,18858,18866,18908,18962,18978,18982,18984,19056,19065,19077,19177,19188,19194,19256,19298,19347,19368,19370,19398,19411,19463,19572,20108,20138,20152,20221,20462,20616,20631,20903,21015,21036,21077,21363,22066,22143,22556,22809,23045,23139]]],["+",[57,54,[[0,4,3,0,3,[[1,1,1,0,1],[23,1,1,1,2],[43,2,1,2,3]]],[1,5,3,3,6,[[51,1,1,3,4],[58,1,1,4,5],[72,3,1,5,6]]],[4,2,2,6,8,[[164,1,1,6,7],[181,1,1,7,8]]],[5,4,4,8,12,[[194,1,1,8,9],[208,1,1,9,10],[210,2,2,10,12]]],[6,4,4,12,16,[[212,2,2,12,14],[220,2,2,14,16]]],[8,2,2,16,18,[[247,1,1,16,17],[266,1,1,17,18]]],[9,2,2,18,20,[[271,1,1,18,19],[281,1,1,19,20]]],[10,6,6,20,26,[[296,1,1,20,21],[299,1,1,21,22],[302,2,2,22,24],[308,1,1,24,25],[309,1,1,25,26]]],[11,4,4,26,30,[[319,1,1,26,27],[320,1,1,27,28],[329,1,1,28,29],[333,1,1,29,30]]],[12,1,1,30,31,[[351,1,1,30,31]]],[13,11,11,31,42,[[373,1,1,31,32],[376,2,2,32,34],[377,1,1,34,35],[378,1,1,35,36],[387,1,1,36,37],[390,3,3,37,40],[394,2,2,40,42]]],[15,2,2,42,44,[[417,1,1,42,43],[422,1,1,43,44]]],[22,1,1,44,45,[[679,1,1,44,45]]],[23,7,7,45,52,[[746,2,2,45,47],[753,2,2,47,49],[756,1,1,49,50],[761,1,1,50,51],[766,1,1,51,52]]],[25,2,2,52,54,[[809,1,1,52,53],[810,1,1,53,54]]]],[54,618,1346,1574,1763,2149,5259,5704,6019,6429,6492,6496,6557,6558,6817,6821,7470,8016,8153,8405,8909,9060,9159,9164,9359,9407,9714,9733,9999,10141,10786,11346,11403,11408,11428,11438,11634,11695,11697,11701,11770,11778,12392,12588,17658,18982,18984,19177,19188,19256,19370,19463,20616,20631]]],["Forsake",[3,3,[[18,1,1,0,1,[[515,1,1,0,1]]],[19,2,2,1,3,[[631,1,1,1,2],[636,1,1,2,3]]]],[14511,16496,16644]]],["Forsaken",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18858]]],["Leave",[2,2,[[3,1,1,0,1,[[126,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]]],[4019,20138]]],["committeth",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14055]]],["faileth",[2,2,[[18,2,2,0,2,[[515,1,1,0,1],[517,1,1,1,2]]]],[14500,14537]]],["forsake",[38,37,[[4,5,5,0,5,[[166,1,1,0,1],[183,4,4,1,5]]],[5,1,1,5,6,[[187,1,1,5,6]]],[12,2,2,6,8,[[365,2,2,6,8]]],[13,3,2,8,10,[[373,1,1,8,9],[381,2,1,9,10]]],[14,1,1,10,11,[[410,1,1,10,11]]],[15,1,1,11,12,[[421,1,1,11,12]]],[17,1,1,12,13,[[455,1,1,12,13]]],[18,9,9,13,22,[[504,2,2,13,15],[514,1,1,15,16],[548,2,2,16,18],[566,1,1,18,19],[571,1,1,19,20],[596,2,2,20,22]]],[19,4,4,22,26,[[630,1,1,22,23],[631,1,1,23,24],[654,1,1,24,25],[655,1,1,25,26]]],[22,5,5,26,31,[[679,1,1,26,27],[719,1,1,27,28],[720,1,1,28,29],[733,1,1,29,30],[743,1,1,30,31]]],[23,2,2,31,33,[[761,1,1,31,32],[795,1,1,32,33]]],[24,1,1,33,34,[[801,1,1,33,34]]],[25,1,1,34,35,[[821,1,1,34,35]]],[26,1,1,35,36,[[860,1,1,35,36]]],[31,1,1,36,37,[[890,1,1,36,37]]]],[5317,5734,5736,5744,5745,5856,11152,11163,11343,11492,12223,12542,13339,14294,14295,14458,14985,14994,15356,15445,15906,15951,16458,16492,17179,17200,17682,18468,18496,18747,18908,19370,20221,20462,20903,22066,22556]]],["forsaken",[42,41,[[4,1,1,0,1,[[180,1,1,0,1]]],[6,1,1,1,2,[[220,1,1,1,2]]],[8,1,1,2,3,[[243,1,1,2,3]]],[10,3,3,3,6,[[301,1,1,3,4],[309,2,2,4,6]]],[11,1,1,6,7,[[334,1,1,6,7]]],[13,6,6,7,13,[[378,1,1,7,8],[379,2,2,8,10],[390,1,1,10,11],[395,1,1,11,12],[400,1,1,12,13]]],[14,2,2,13,15,[[411,2,2,13,15]]],[15,1,1,15,16,[[425,1,1,15,16]]],[17,2,2,16,18,[[453,1,1,16,17],[455,1,1,17,18]]],[18,4,4,18,22,[[486,1,1,18,19],[499,1,1,19,20],[514,1,1,20,21],[548,1,1,21,22]]],[22,8,8,22,30,[[685,1,1,22,23],[695,2,2,23,25],[727,1,1,25,26],[732,2,2,26,28],[738,1,1,28,29],[740,1,1,29,30]]],[23,10,9,30,39,[[745,1,1,30,31],[746,1,1,31,32],[748,1,1,32,33],[749,2,2,33,35],[753,1,1,35,36],[760,2,1,36,37],[763,1,1,37,38],[769,1,1,38,39]]],[25,1,1,39,40,[[837,1,1,39,40]]],[35,1,1,40,41,[[907,1,1,40,41]]]],[5631,6824,7377,9141,9397,9401,10162,11442,11463,11464,11697,11797,11958,12246,12247,12682,13280,13345,14031,14205,14475,14987,17798,17985,17992,18650,18729,18730,18836,18866,18962,18978,19056,19065,19077,19194,19347,19411,19572,21363,22809]]],["forsaketh",[5,5,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,1,1,1,2,[[514,1,1,1,2]]],[19,3,3,2,5,[[629,1,1,2,3],[642,1,1,3,4],[655,1,1,4,5]]]],[12992,14478,16450,16817,17209]]],["forsook",[4,4,[[12,1,1,0,1,[[347,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[22,1,1,2,3,[[736,1,1,2,3]]],[23,1,1,3,4,[[758,1,1,3,4]]]],[10666,15985,18788,19298]]],["forsookest",[2,2,[[15,2,2,0,2,[[421,2,2,0,2]]]],[12528,12530]]],["fortified",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12335]]],["fortify",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12361]]],["leave",[22,22,[[0,1,1,0,1,[[27,1,1,0,1]]],[2,2,2,1,3,[[108,1,1,1,2],[112,1,1,2,3]]],[7,2,2,3,5,[[232,1,1,3,4],[233,1,1,4,5]]],[10,1,1,5,6,[[298,1,1,5,6]]],[11,4,4,6,10,[[314,3,3,6,9],[316,1,1,9,10]]],[17,2,2,10,12,[[445,1,1,10,11],[474,1,1,11,12]]],[18,3,3,12,15,[[493,1,1,12,13],[514,1,1,13,14],[526,1,1,14,15]]],[19,1,1,15,16,[[629,1,1,15,16]]],[22,1,1,16,17,[[688,1,1,16,17]]],[23,3,3,17,20,[[761,1,1,17,18],[762,1,1,18,19],[792,1,1,19,20]]],[25,1,1,20,21,[[824,1,1,20,21]]],[38,1,1,21,22,[[928,1,1,21,22]]]],[788,3291,3424,7143,7165,9042,9553,9555,9557,9633,13087,13845,14102,14483,14658,16446,17853,19368,19398,20108,21036,23139]]],["leaveth",[2,2,[[17,1,1,0,1,[[474,1,1,0,1]]],[37,1,1,1,2,[[921,1,1,1,2]]]],[13848,23045]]],["left",[27,27,[[0,6,6,0,6,[[38,5,5,0,5],[49,1,1,5,6]]],[2,1,1,6,7,[[115,1,1,6,7]]],[4,1,1,7,8,[[184,1,1,7,8]]],[6,1,1,8,9,[[212,1,1,8,9]]],[7,1,1,9,10,[[233,1,1,9,10]]],[8,1,1,10,11,[[265,1,1,10,11]]],[10,2,2,11,13,[[304,1,1,11,12],[311,1,1,12,13]]],[11,2,2,13,15,[[321,1,1,13,14],[326,1,1,14,15]]],[12,1,1,15,16,[[353,1,1,15,16]]],[13,3,3,16,19,[[378,1,1,16,17],[390,1,1,17,18],[398,1,1,18,19]]],[22,5,5,19,24,[[688,1,1,19,20],[695,1,1,20,21],[696,1,1,21,22],[705,1,1,22,23],[710,1,1,23,24]]],[23,1,1,24,25,[[793,1,1,24,25]]],[25,2,2,25,27,[[824,1,1,25,26],[825,1,1,26,27]]]],[1155,1161,1162,1164,1167,1514,3567,5794,6566,7160,7991,9228,9472,9764,9922,10857,11442,11702,11906,17864,17992,18003,18161,18273,20152,21015,21077]]],["leftest",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12539]]],["off",[3,3,[[7,1,1,0,1,[[233,1,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]],[27,1,1,2,3,[[865,1,1,2,3]]]],[7169,13078,22143]]],["refuseth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16673]]]]},{"k":"H5801","v":[["*",[7,7,[[25,7,7,0,7,[[828,7,7,0,7]]]],[21133,21135,21137,21140,21143,21148,21154]]],["fairs",[6,6,[[25,6,6,0,6,[[828,6,6,0,6]]]],[21133,21135,21137,21140,21143,21148]]],["wares",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21154]]]]},{"k":"H5802","v":[["Azbuk",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12343]]]]},{"k":"H5803","v":[["Azgad",[4,4,[[14,2,2,0,2,[[404,1,1,0,1],[410,1,1,1,2]]],[15,2,2,2,4,[[419,1,1,2,3],[422,1,1,3,4]]]],[12039,12213,12437,12564]]]]},{"k":"H5804","v":[["*",[21,20,[[0,1,1,0,1,[[9,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]],[5,3,3,2,5,[[196,1,1,2,3],[197,1,1,3,4],[201,1,1,4,5]]],[6,4,4,5,9,[[211,1,1,5,6],[216,1,1,6,7],[226,2,2,7,9]]],[8,1,1,9,10,[[241,1,1,9,10]]],[10,1,1,10,11,[[294,1,1,10,11]]],[11,1,1,11,12,[[330,1,1,11,12]]],[12,1,1,12,13,[[344,1,1,12,13]]],[23,3,3,13,16,[[769,1,1,13,14],[791,2,2,14,16]]],[29,2,2,16,18,[[879,2,2,16,18]]],[35,1,1,18,19,[[907,1,1,18,19]]],[37,2,1,19,20,[[919,2,1,19,20]]]],[253,4961,6105,6129,6249,6527,6658,6950,6970,7348,8868,10032,10563,19554,20074,20078,22370,22371,22809,23004]]],["+",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23004]]],["Azzah",[3,3,[[4,1,1,0,1,[[154,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]],[23,1,1,2,3,[[769,1,1,2,3]]]],[4961,8868,19554]]],["Gaza",[17,17,[[0,1,1,0,1,[[9,1,1,0,1]]],[5,3,3,1,4,[[196,1,1,1,2],[197,1,1,2,3],[201,1,1,3,4]]],[6,4,4,4,8,[[211,1,1,4,5],[216,1,1,5,6],[226,2,2,6,8]]],[8,1,1,8,9,[[241,1,1,8,9]]],[11,1,1,9,10,[[330,1,1,9,10]]],[12,1,1,10,11,[[344,1,1,10,11]]],[23,2,2,11,13,[[791,2,2,11,13]]],[29,2,2,13,15,[[879,2,2,13,15]]],[35,1,1,15,16,[[907,1,1,15,16]]],[37,1,1,16,17,[[919,1,1,16,17]]]],[253,6105,6129,6249,6527,6658,6950,6970,7348,10032,10563,20074,20078,22370,22371,22809,23004]]]]},{"k":"H5805","v":[["forsaking",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17781]]]]},{"k":"H5806","v":[["Azubah",[4,4,[[10,1,1,0,1,[[312,1,1,0,1]]],[12,2,2,1,3,[[339,2,2,1,3]]],[13,1,1,3,4,[[386,1,1,3,4]]]],[9522,10324,10325,11618]]]]},{"k":"H5807","v":[["*",[3,3,[[18,2,2,0,2,[[555,1,1,0,1],[622,1,1,1,2]]],[22,1,1,2,3,[[720,1,1,2,3]]]],[15117,16326,18505]]],["might",[1,1,[[18,1,1,0,1,[[622,1,1,0,1]]]],[16326]]],["strength",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]]],[15117,18505]]]]},{"k":"H5808","v":[["*",[2,2,[[18,1,1,0,1,[[501,1,1,0,1]]],[22,1,1,1,2,[[721,1,1,1,2]]]],[14249,18522]]],["power",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18522]]],["strong",[1,1,[[18,1,1,0,1,[[501,1,1,0,1]]]],[14249]]]]},{"k":"H5809","v":[["*",[3,3,[[15,1,1,0,1,[[422,1,1,0,1]]],[23,1,1,1,2,[[772,1,1,1,2]]],[25,1,1,2,3,[[812,1,1,2,3]]]],[12566,19619,20656]]],["Azur",[2,2,[[23,1,1,0,1,[[772,1,1,0,1]]],[25,1,1,1,2,[[812,1,1,1,2]]]],[19619,20656]]],["Azzur",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12566]]]]},{"k":"H5810","v":[["*",[12,12,[[6,2,2,0,2,[[213,1,1,0,1],[216,1,1,1,2]]],[18,4,4,2,6,[[486,1,1,2,3],[529,1,1,3,4],[545,1,1,4,5],[566,1,1,5,6]]],[19,3,3,6,9,[[634,1,1,6,7],[635,1,1,7,8],[648,1,1,8,9]]],[20,1,1,9,10,[[665,1,1,9,10]]],[22,1,1,10,11,[[708,1,1,10,11]]],[26,1,1,11,12,[[860,1,1,11,12]]]],[6578,6656,14040,14717,14928,15339,16588,16630,17013,17448,18219,22048]]],["hardeneth",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17013]]],["impudent",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16588]]],["prevail",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14040]]],["prevailed",[2,2,[[6,2,2,0,2,[[213,1,1,0,1],[216,1,1,1,2]]]],[6578,6656]]],["strengthen",[2,2,[[18,1,1,0,1,[[545,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]]],[14928,18219]]],["strengthened",[3,3,[[18,1,1,0,1,[[529,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[14717,16630,22048]]],["strengtheneth",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17448]]],["strong",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15339]]]]},{"k":"H5811","v":[["Azaz",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10436]]]]},{"k":"H5812","v":[["Azaziah",[3,3,[[12,2,2,0,2,[[352,1,1,0,1],[364,1,1,1,2]]],[13,1,1,2,3,[[397,1,1,2,3]]]],[10812,11129,11867]]]]},{"k":"H5813","v":[["Uzzi",[11,11,[[12,7,7,0,7,[[343,3,3,0,3],[344,3,3,3,6],[346,1,1,6,7]]],[14,1,1,7,8,[[409,1,1,7,8]]],[15,3,3,8,11,[[423,1,1,8,9],[424,2,2,9,11]]]],[10459,10460,10505,10537,10538,10542,10623,12177,12610,12643,12666]]]]},{"k":"H5814","v":[["Uzzia",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10717]]]]},{"k":"H5815","v":[["Aziel",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10811]]]]},{"k":"H5816","v":[["Uzziel",[16,16,[[1,2,2,0,2,[[55,2,2,0,2]]],[2,1,1,2,3,[[99,1,1,2,3]]],[3,2,2,3,5,[[119,2,2,3,5]]],[12,9,9,5,14,[[341,1,1,5,6],[343,2,2,6,8],[344,1,1,8,9],[352,1,1,9,10],[360,2,2,10,12],[361,1,1,12,13],[362,1,1,13,14]]],[13,1,1,14,15,[[395,1,1,14,15]]],[15,1,1,15,16,[[415,1,1,15,16]]]],[1673,1677,2981,3711,3722,10427,10456,10472,10542,10801,10995,11003,11039,11050,11805,12335]]]]},{"k":"H5817","v":[["Uzzielites",[2,2,[[3,1,1,0,1,[[119,1,1,0,1]]],[12,1,1,1,2,[[363,1,1,1,2]]]],[3719,11100]]]]},{"k":"H5818","v":[["Uzziah",[27,26,[[11,4,4,0,4,[[327,4,4,0,4]]],[12,2,2,4,6,[[343,1,1,4,5],[364,1,1,5,6]]],[13,13,12,6,18,[[392,12,11,6,17],[393,1,1,17,18]]],[14,1,1,18,19,[[412,1,1,18,19]]],[15,1,1,19,20,[[423,1,1,19,20]]],[22,3,3,20,23,[[679,1,1,20,21],[684,1,1,21,22],[685,1,1,22,23]]],[27,1,1,23,24,[[862,1,1,23,24]]],[29,1,1,24,25,[[879,1,1,24,25]]],[37,1,1,25,26,[[924,1,1,25,26]]]],[9938,9955,9957,9959,10478,11134,11733,11735,11740,11741,11743,11746,11750,11751,11753,11754,11755,11757,12273,12592,17655,17770,17783,22095,22365,23073]]]]},{"k":"H5819","v":[["Aziza",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12279]]]]},{"k":"H5820","v":[["Azmaveth",[8,8,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,5,5,1,6,[[345,1,1,1,2],[346,1,1,2,3],[348,1,1,3,4],[349,1,1,4,5],[364,1,1,5,6]]],[14,1,1,6,7,[[404,1,1,6,7]]],[15,1,1,7,8,[[424,1,1,7,8]]]],[8684,10611,10657,10706,10723,11134,12051,12653]]]]},{"k":"H5821","v":[["Azzan",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4842]]]]},{"k":"H5822","v":[["ospray",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3010,5302]]]]},{"k":"H5823","v":[["fenced",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17741]]]]},{"k":"H5824","v":[["signet",[2,1,[[26,2,1,0,1,[[855,2,1,0,1]]]],[21922]]]]},{"k":"H5825","v":[["Azekah",[7,7,[[5,3,3,0,3,[[196,2,2,0,2],[201,1,1,2,3]]],[8,1,1,3,4,[[252,1,1,3,4]]],[13,1,1,4,5,[[377,1,1,4,5]]],[15,1,1,5,6,[[423,1,1,5,6]]],[23,1,1,6,7,[[778,1,1,6,7]]]],[6074,6075,6237,7619,11423,12618,19808]]]]},{"k":"H5826","v":[["*",[81,77,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[5,4,4,2,6,[[187,1,1,2,3],[196,3,3,3,6]]],[8,1,1,6,7,[[242,1,1,6,7]]],[9,3,3,7,10,[[274,1,1,7,8],[284,1,1,8,9],[287,1,1,9,10]]],[10,2,2,10,12,[[291,1,1,10,11],[310,1,1,11,12]]],[11,1,1,12,13,[[326,1,1,12,13]]],[12,11,10,13,23,[[342,1,1,13,14],[349,7,6,14,20],[352,1,1,20,21],[355,1,1,21,22],[359,1,1,22,23]]],[13,14,12,23,35,[[380,2,1,23,24],[384,1,1,24,25],[385,1,1,25,26],[386,1,1,26,27],[391,1,1,27,28],[392,3,3,28,31],[394,3,2,31,33],[398,2,2,33,35]]],[14,2,2,35,37,[[410,1,1,35,36],[412,1,1,36,37]]],[17,4,4,37,41,[[444,1,1,37,38],[461,1,1,38,39],[464,1,1,39,40],[465,1,1,40,41]]],[18,17,17,41,58,[[487,1,1,41,42],[499,1,1,42,43],[505,1,1,43,44],[507,1,1,44,45],[514,1,1,45,46],[523,1,1,46,47],[531,1,1,47,48],[549,1,1,48,49],[556,1,1,49,50],[563,1,1,50,51],[584,1,1,51,52],[586,1,1,52,53],[595,2,2,53,55],[596,3,3,55,58]]],[22,12,11,58,69,[[708,1,1,58,59],[709,2,1,59,60],[719,4,4,60,64],[722,1,1,64,65],[727,1,1,65,66],[728,2,2,66,68],[741,1,1,68,69]]],[23,1,1,69,70,[[791,1,1,69,70]]],[24,1,1,70,71,[[797,1,1,70,71]]],[25,2,2,71,73,[[831,1,1,71,72],[833,1,1,72,73]]],[26,3,3,73,76,[[859,1,1,73,74],[860,2,2,74,76]]],[37,1,1,76,77,[[911,1,1,76,77]]]],[1498,5796,5865,6068,6070,6097,7364,8214,8481,8597,8724,9424,9922,10448,10721,10737,10738,10739,10741,10742,10817,10895,10981,11486,11573,11578,11610,11712,11739,11745,11747,11780,11787,11878,11883,12223,12267,13064,13469,13544,13570,14055,14215,14306,14329,14490,14619,14729,15012,15194,15301,15711,15781,15876,15882,15984,16071,16073,18224,18253,18457,18461,18464,18465,18535,18644,18669,18671,18871,20077,20317,21212,21269,22028,22070,22081,22893]]],["+",[3,3,[[5,1,1,0,1,[[196,1,1,0,1]]],[12,2,2,1,3,[[349,1,1,1,2],[352,1,1,2,3]]]],[6097,10741,10817]]],["Help",[2,2,[[18,2,2,0,2,[[556,1,1,0,1],[586,1,1,1,2]]]],[15194,15781]]],["help",[41,39,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[5,3,3,2,5,[[187,1,1,2,3],[196,2,2,3,5]]],[12,4,4,5,9,[[349,2,2,5,7],[355,1,1,7,8],[359,1,1,8,9]]],[13,10,8,9,17,[[380,2,1,9,10],[385,1,1,10,11],[391,1,1,11,12],[392,1,1,12,13],[394,3,2,13,15],[398,2,2,15,17]]],[14,1,1,17,18,[[410,1,1,17,18]]],[17,1,1,18,19,[[464,1,1,18,19]]],[18,8,8,19,27,[[499,1,1,19,20],[514,1,1,20,21],[523,1,1,21,22],[584,1,1,22,23],[595,1,1,23,24],[596,3,3,24,27]]],[22,8,8,27,35,[[708,1,1,27,28],[719,3,3,28,31],[722,1,1,31,32],[728,2,2,32,34],[741,1,1,34,35]]],[24,1,1,35,36,[[797,1,1,35,36]]],[25,1,1,36,37,[[833,1,1,36,37]]],[26,2,2,37,39,[[859,1,1,37,38],[860,1,1,38,39]]]],[1498,5796,5865,6068,6070,10737,10742,10895,10981,11486,11578,11712,11745,11780,11787,11878,11883,12223,13544,14215,14490,14619,15711,15876,15984,16071,16073,18224,18461,18464,18465,18535,18669,18671,18871,20317,21269,22028,22081]]],["helped",[16,16,[[8,1,1,0,1,[[242,1,1,0,1]]],[10,2,2,1,3,[[291,1,1,1,2],[310,1,1,2,3]]],[12,2,2,3,5,[[342,1,1,3,4],[349,1,1,4,5]]],[13,4,4,5,9,[[384,1,1,5,6],[386,1,1,6,7],[392,2,2,7,9]]],[14,1,1,9,10,[[412,1,1,9,10]]],[17,1,1,10,11,[[461,1,1,10,11]]],[18,2,2,11,13,[[505,1,1,11,12],[595,1,1,12,13]]],[22,2,2,13,15,[[719,1,1,13,14],[727,1,1,14,15]]],[37,1,1,15,16,[[911,1,1,15,16]]]],[7364,8724,9424,10448,10739,11573,11610,11739,11747,12267,13469,14306,15882,18457,18644,22893]]],["helper",[7,7,[[11,1,1,0,1,[[326,1,1,0,1]]],[17,1,1,1,2,[[465,1,1,1,2]]],[18,4,4,2,6,[[487,1,1,2,3],[507,1,1,3,4],[531,1,1,4,5],[549,1,1,5,6]]],[23,1,1,6,7,[[791,1,1,6,7]]]],[9922,13570,14055,14329,14729,15012,20077]]],["helpers",[4,4,[[12,2,2,0,2,[[349,2,2,0,2]]],[17,1,1,2,3,[[444,1,1,2,3]]],[25,1,1,3,4,[[831,1,1,3,4]]]],[10721,10738,13064,21212]]],["helpeth",[2,2,[[12,1,1,0,1,[[349,1,1,0,1]]],[22,1,1,1,2,[[709,1,1,1,2]]]],[10738,18253]]],["holpen",[3,3,[[18,1,1,0,1,[[563,1,1,0,1]]],[22,1,1,1,2,[[709,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[15301,18253,22070]]],["succour",[2,2,[[9,2,2,0,2,[[274,1,1,0,1],[284,1,1,1,2]]]],[8214,8481]]],["succoured",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8597]]]]},{"k":"H5827","v":[["Ezer",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10556]]]]},{"k":"H5828","v":[["help",[21,21,[[0,2,2,0,2,[[1,2,2,0,2]]],[1,1,1,2,3,[[67,1,1,2,3]]],[4,3,3,3,6,[[185,3,3,3,6]]],[18,11,11,6,17,[[497,1,1,6,7],[510,1,1,7,8],[547,1,1,8,9],[566,1,1,9,10],[592,3,3,10,13],[598,2,2,13,15],[601,1,1,15,16],[623,1,1,16,17]]],[22,1,1,17,18,[[708,1,1,17,18]]],[25,1,1,18,19,[[813,1,1,18,19]]],[26,1,1,19,20,[[860,1,1,19,20]]],[27,1,1,20,21,[[874,1,1,20,21]]]],[48,50,2003,5817,5836,5839,14184,14386,14976,15345,15839,15840,15841,16082,16083,16110,16346,18222,20694,22070,22275]]]]},{"k":"H5829","v":[["Ezer",[4,4,[[12,2,2,0,2,[[341,1,1,0,1],[349,1,1,1,2]]],[15,2,2,2,4,[[415,1,1,2,3],[424,1,1,3,4]]]],[10389,10729,12346,12666]]]]},{"k":"H5830","v":[["Ezra",[22,22,[[14,10,10,0,10,[[409,4,4,0,4],[412,6,6,4,10]]],[15,12,12,10,22,[[420,7,7,10,17],[424,5,5,17,22]]]],[12174,12179,12183,12184,12253,12254,12257,12258,12262,12268,12494,12495,12497,12498,12499,12502,12506,12625,12637,12650,12657,12660]]]]},{"k":"H5831","v":[["Ezra",[3,3,[[14,3,3,0,3,[[409,3,3,0,3]]]],[12185,12194,12198]]]]},{"k":"H5832","v":[["*",[6,6,[[12,3,3,0,3,[[349,1,1,0,1],[362,1,1,1,2],[364,1,1,2,3]]],[14,1,1,3,4,[[412,1,1,3,4]]],[15,2,2,4,6,[[423,1,1,4,5],[424,1,1,5,6]]]],[10726,11064,11131,12293,12601,12660]]],["Azarael",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12660]]],["Azareel",[5,5,[[12,3,3,0,3,[[349,1,1,0,1],[362,1,1,1,2],[364,1,1,2,3]]],[14,1,1,3,4,[[412,1,1,3,4]]],[15,1,1,4,5,[[423,1,1,4,5]]]],[10726,11064,11131,12293,12601]]]]},{"k":"H5833","v":[["*",[26,25,[[6,2,1,0,1,[[215,2,1,0,1]]],[13,1,1,1,2,[[394,1,1,1,2]]],[17,2,2,2,4,[[441,1,1,2,3],[466,1,1,3,4]]],[18,14,14,4,18,[[499,1,1,4,5],[504,1,1,5,6],[512,1,1,6,7],[515,1,1,7,8],[517,2,2,8,10],[521,1,1,10,11],[523,1,1,11,12],[537,1,1,12,13],[540,1,1,13,14],[547,1,1,14,15],[548,1,1,15,16],[571,1,1,16,17],[585,1,1,17,18]]],[22,4,4,18,22,[[688,1,1,18,19],[698,1,1,19,20],[709,2,2,20,22]]],[23,1,1,22,23,[[781,1,1,22,23]]],[24,1,1,23,24,[[800,1,1,23,24]]],[33,1,1,24,25,[[902,1,1,24,25]]]],[6646,11785,12991,13609,14223,14294,14412,14512,14538,14542,14597,14615,14818,14846,14972,14988,15448,15754,17853,18035,18251,18252,19881,20437,22721]]],["help",[24,23,[[6,2,1,0,1,[[215,2,1,0,1]]],[17,2,2,1,3,[[441,1,1,1,2],[466,1,1,2,3]]],[18,14,14,3,17,[[499,1,1,3,4],[504,1,1,4,5],[512,1,1,5,6],[515,1,1,6,7],[517,2,2,7,9],[521,1,1,9,10],[523,1,1,10,11],[537,1,1,11,12],[540,1,1,12,13],[547,1,1,13,14],[548,1,1,14,15],[571,1,1,15,16],[585,1,1,16,17]]],[22,4,4,17,21,[[688,1,1,17,18],[698,1,1,18,19],[709,2,2,19,21]]],[23,1,1,21,22,[[781,1,1,21,22]]],[24,1,1,22,23,[[800,1,1,22,23]]]],[6646,12991,13609,14223,14294,14412,14512,14538,14542,14597,14615,14818,14846,14972,14988,15448,15754,17853,18035,18251,18252,19881,20437]]],["helped",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11785]]],["helpers",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22721]]]]},{"k":"H5834","v":[["Ezra",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10402]]]]},{"k":"H5835","v":[["*",[9,6,[[13,3,2,0,2,[[370,2,1,0,1],[372,1,1,1,2]]],[25,6,4,2,6,[[844,5,3,2,5],[846,1,1,5,6]]]],[11255,11295,21586,21589,21592,21649]]],["+",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21586]]],["court",[3,2,[[13,3,2,0,2,[[370,2,1,0,1],[372,1,1,1,2]]]],[11255,11295]]],["settle",[5,4,[[25,5,4,0,4,[[844,4,3,0,3],[846,1,1,3,4]]]],[21586,21589,21592,21649]]]]},{"k":"H5836","v":[["Ezri",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11135]]]]},{"k":"H5837","v":[["Azriel",[3,3,[[12,2,2,0,2,[[342,1,1,0,1],[364,1,1,1,2]]],[23,1,1,2,3,[[780,1,1,2,3]]]],[10452,11128,19868]]]]},{"k":"H5838","v":[["Azariah",[48,44,[[10,2,2,0,2,[[294,2,2,0,2]]],[11,8,8,2,10,[[326,1,1,2,3],[327,7,7,3,10]]],[12,12,11,10,21,[[339,3,3,10,13],[340,1,1,13,14],[343,7,6,14,20],[346,1,1,20,21]]],[13,13,10,21,31,[[381,1,1,21,22],[387,2,1,22,23],[388,1,1,23,24],[389,2,1,24,25],[392,2,2,25,27],[394,1,1,27,28],[395,2,1,28,29],[397,2,2,29,31]]],[14,2,2,31,33,[[409,2,2,31,33]]],[15,6,6,33,39,[[415,2,2,33,35],[419,1,1,35,36],[420,1,1,36,37],[422,1,1,37,38],[424,1,1,38,39]]],[23,1,1,39,40,[[787,1,1,39,40]]],[26,4,4,40,44,[[850,4,4,40,44]]]],[8846,8849,9917,9926,9931,9932,9933,9942,9948,9952,10314,10344,10345,10373,10463,10464,10465,10467,10468,10490,10626,11491,11626,11650,11657,11749,11752,11776,11803,11864,11867,12174,12176,12350,12351,12427,12500,12551,12657,19999,21743,21744,21748,21756]]]]},{"k":"H5839","v":[["Azariah",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21775]]]]},{"k":"H5840","v":[["Azrikam",[6,6,[[12,4,4,0,4,[[340,1,1,0,1],[345,1,1,1,2],[346,2,2,2,4]]],[13,1,1,4,5,[[394,1,1,4,5]]],[15,1,1,5,6,[[423,1,1,5,6]]]],[10384,10613,10629,10659,11771,12603]]]]},{"k":"H5841","v":[["*",[2,2,[[5,1,1,0,1,[[199,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]]],[6157,6951]]],["Gazathites",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6157]]],["Gazites",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6951]]]]},{"k":"H5842","v":[["pen",[4,4,[[17,1,1,0,1,[[454,1,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]],[23,2,2,2,4,[[752,1,1,2,3],[761,1,1,3,4]]]],[13321,14598,19161,19358]]]]},{"k":"H5843","v":[["counsel",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21772]]]]},{"k":"H5844","v":[["*",[17,15,[[2,1,1,0,1,[[102,1,1,0,1]]],[8,1,1,1,2,[[263,1,1,1,2]]],[18,6,6,2,8,[[548,1,1,2,3],[561,1,1,3,4],[566,1,1,4,5],[581,1,1,5,6],[586,2,2,6,8]]],[21,1,1,8,9,[[671,1,1,8,9]]],[22,3,2,9,11,[[700,2,1,9,10],[737,1,1,10,11]]],[23,2,1,11,12,[[787,2,1,11,12]]],[25,2,2,12,14,[[825,2,2,12,14]]],[32,1,1,14,15,[[895,1,1,14,15]]]],[3097,7956,14989,15265,15371,15573,15774,15784,17544,18069,18817,20009,21073,21078,22615]]],["+",[6,5,[[18,1,1,0,1,[[566,1,1,0,1]]],[22,2,1,1,2,[[700,2,1,1,2]]],[23,1,1,2,3,[[787,1,1,2,3]]],[25,1,1,3,4,[[825,1,1,3,4]]],[32,1,1,4,5,[[895,1,1,4,5]]]],[15371,18069,20009,21078,22615]]],["aside",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17544]]],["clad",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18817]]],["cover",[2,2,[[18,1,1,0,1,[[586,1,1,0,1]]],[25,1,1,1,2,[[825,1,1,1,2]]]],[15784,21073]]],["covered",[2,2,[[8,1,1,0,1,[[263,1,1,0,1]]],[18,1,1,1,2,[[548,1,1,1,2]]]],[7956,14989]]],["coverest",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15573]]],["covereth",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15774]]],["covering",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3097]]],["filleth",[1,1,[[18,1,1,0,1,[[561,1,1,0,1]]]],[15265]]],["himself",[1,1,[[23,1,1,0,1,[[787,1,1,0,1]]]],[20009]]]]},{"k":"H5845","v":[["breasts",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13379]]]]},{"k":"H5846","v":[["neesings",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13906]]]]},{"k":"H5847","v":[["*",[3,3,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[22,1,1,2,3,[[680,1,1,2,3]]]],[3016,5308,17705]]],["bat",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3016,5308]]],["bats",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17705]]]]},{"k":"H5848","v":[["*",[15,14,[[0,2,1,0,1,[[29,2,1,0,1]]],[17,1,1,1,2,[[458,1,1,1,2]]],[18,7,7,2,9,[[538,1,1,2,3],[542,1,1,3,4],[550,1,1,4,5],[554,1,1,5,6],[584,1,1,6,7],[619,1,1,7,8],[620,1,1,8,9]]],[22,1,1,9,10,[[735,1,1,9,10]]],[24,3,3,10,13,[[798,3,3,10,13]]],[31,1,1,13,14,[[890,1,1,13,14]]]],[872,13428,14821,14873,15026,15096,15704,16289,16297,18781,20343,20344,20351,22555]]],["covereth",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15026]]],["fail",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18781]]],["faint",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20351]]],["fainted",[2,2,[[18,1,1,0,1,[[584,1,1,0,1]]],[31,1,1,1,2,[[890,1,1,1,2]]]],[15704,22555]]],["feeble",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[872]]],["feebler",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[872]]],["hideth",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13428]]],["over",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14873]]],["overwhelmed",[4,4,[[18,4,4,0,4,[[538,1,1,0,1],[554,1,1,1,2],[619,1,1,2,3],[620,1,1,3,4]]]],[14821,15096,16289,16297]]],["swoon",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20343]]],["swooned",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20344]]]]},{"k":"H5849","v":[["*",[7,7,[[8,1,1,0,1,[[258,1,1,0,1]]],[18,4,4,1,5,[[482,1,1,1,2],[485,1,1,2,3],[542,1,1,3,4],[580,1,1,4,5]]],[21,1,1,5,6,[[673,1,1,5,6]]],[22,1,1,6,7,[[701,1,1,6,7]]]],[7836,13985,14017,14871,15553,17582,18085]]],["+",[2,2,[[8,1,1,0,1,[[258,1,1,0,1]]],[21,1,1,1,2,[[673,1,1,1,2]]]],[7836,17582]]],["compass",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13985]]],["crowned",[1,1,[[18,1,1,0,1,[[485,1,1,0,1]]]],[14017]]],["crownest",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14871]]],["crowneth",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15553]]],["crowning",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18085]]]]},{"k":"H5850","v":[["*",[23,23,[[9,1,1,0,1,[[278,1,1,0,1]]],[12,1,1,1,2,[[357,1,1,1,2]]],[16,1,1,2,3,[[433,1,1,2,3]]],[17,2,2,3,5,[[454,1,1,3,4],[466,1,1,4,5]]],[18,1,1,5,6,[[498,1,1,5,6]]],[19,5,5,6,11,[[631,1,1,6,7],[639,1,1,7,8],[641,1,1,8,9],[643,1,1,9,10],[644,1,1,10,11]]],[21,1,1,11,12,[[673,1,1,11,12]]],[22,4,4,12,16,[[706,3,3,12,15],[740,1,1,15,16]]],[23,1,1,16,17,[[757,1,1,16,17]]],[24,1,1,17,18,[[801,1,1,17,18]]],[25,3,3,18,21,[[817,1,1,18,19],[822,1,1,19,20],[824,1,1,20,21]]],[37,2,2,21,23,[[916,2,2,21,23]]]],[8316,10928,12832,13306,13624,14194,16499,16723,16796,16871,16879,17582,18165,18167,18169,18857,19284,20458,20774,20970,21049,22958,22961]]],["crown",[20,20,[[9,1,1,0,1,[[278,1,1,0,1]]],[12,1,1,1,2,[[357,1,1,1,2]]],[16,1,1,2,3,[[433,1,1,2,3]]],[17,2,2,3,5,[[454,1,1,3,4],[466,1,1,4,5]]],[18,1,1,5,6,[[498,1,1,5,6]]],[19,5,5,6,11,[[631,1,1,6,7],[639,1,1,7,8],[641,1,1,8,9],[643,1,1,9,10],[644,1,1,10,11]]],[21,1,1,11,12,[[673,1,1,11,12]]],[22,4,4,12,16,[[706,3,3,12,15],[740,1,1,15,16]]],[23,1,1,16,17,[[757,1,1,16,17]]],[24,1,1,17,18,[[801,1,1,17,18]]],[25,2,2,18,20,[[817,1,1,18,19],[822,1,1,19,20]]]],[8316,10928,12832,13306,13624,14194,16499,16723,16796,16871,16879,17582,18165,18167,18169,18857,19284,20458,20774,20970]]],["crowns",[3,3,[[25,1,1,0,1,[[824,1,1,0,1]]],[37,2,2,1,3,[[916,2,2,1,3]]]],[21049,22958,22961]]]]},{"k":"H5851","v":[["Atarah",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10332]]]]},{"k":"H5852","v":[["*",[5,5,[[3,3,3,0,3,[[148,3,3,0,3]]],[5,2,2,3,5,[[202,2,2,3,5]]]],[4721,4752,4753,6267,6272]]],["Ataroth",[4,4,[[3,2,2,0,2,[[148,2,2,0,2]]],[5,2,2,2,4,[[202,2,2,2,4]]]],[4721,4752,6267,6272]]],["Atroth",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4753]]]]},{"k":"H5853","v":[["*",[2,2,[[5,2,2,0,2,[[202,1,1,0,1],[204,1,1,1,2]]]],[6270,6306]]],["Atarothadar",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6306]]],["Atarothaddar",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6270]]]]},{"k":"H5854","v":[["Joab",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10360]]]]},{"k":"H5855","v":[["Shophan",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4753]]]]},{"k":"H5856","v":[["*",[4,4,[[18,1,1,0,1,[[556,1,1,0,1]]],[23,1,1,1,2,[[770,1,1,1,2]]],[32,2,2,2,4,[[893,1,1,2,3],[895,1,1,3,4]]]],[15186,19590,22585,22620]]],["heap",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22585]]],["heaps",[3,3,[[18,1,1,0,1,[[556,1,1,0,1]]],[23,1,1,1,2,[[770,1,1,1,2]]],[32,1,1,2,3,[[895,1,1,2,3]]]],[15186,19590,22620]]]]},{"k":"H5857","v":[["*",[40,34,[[0,2,2,0,2,[[11,1,1,0,1],[12,1,1,1,2]]],[5,33,27,2,29,[[193,5,4,2,6],[194,23,19,6,25],[195,1,1,25,26],[196,3,2,26,28],[198,1,1,28,29]]],[14,1,1,29,30,[[404,1,1,29,30]]],[15,2,2,30,32,[[419,1,1,30,31],[423,1,1,31,32]]],[22,1,1,32,33,[[688,1,1,32,33]]],[23,1,1,33,34,[[793,1,1,33,34]]]],[306,321,5978,5979,5980,5981,6003,6004,6005,6011,6012,6013,6014,6016,6018,6019,6020,6022,6023,6025,6026,6027,6028,6030,6031,6040,6065,6066,6139,12055,12452,12619,17878,20130]]],["Ai",[36,30,[[5,33,27,0,27,[[193,5,4,0,4],[194,23,19,4,23],[195,1,1,23,24],[196,3,2,24,26],[198,1,1,26,27]]],[14,1,1,27,28,[[404,1,1,27,28]]],[15,1,1,28,29,[[419,1,1,28,29]]],[23,1,1,29,30,[[793,1,1,29,30]]]],[5978,5979,5980,5981,6003,6004,6005,6011,6012,6013,6014,6016,6018,6019,6020,6022,6023,6025,6026,6027,6028,6030,6031,6040,6065,6066,6139,12055,12452,20130]]],["Aiath",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17878]]],["Aija",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12619]]],["Hai",[2,2,[[0,2,2,0,2,[[11,1,1,0,1],[12,1,1,1,2]]]],[306,321]]]]},{"k":"H5858","v":[["Ebal",[8,8,[[0,1,1,0,1,[[35,1,1,0,1]]],[4,3,3,1,4,[[163,1,1,1,2],[179,2,2,2,4]]],[5,2,2,4,6,[[194,2,2,4,6]]],[12,2,2,6,8,[[338,2,2,6,8]]]],[1063,5237,5589,5598,6032,6035,10274,10292]]]]},{"k":"H5859","v":[["Ijon",[3,3,[[10,1,1,0,1,[[305,1,1,0,1]]],[11,1,1,1,2,[[327,1,1,1,2]]],[13,1,1,2,3,[[382,1,1,2,3]]]],[9269,9954,11513]]]]},{"k":"H5860","v":[["*",[2,2,[[8,2,2,0,2,[[250,1,1,0,1],[260,1,1,1,2]]]],[7579,7875]]],["fly",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7579]]],["railed",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7875]]]]},{"k":"H5861","v":[["*",[8,6,[[0,1,1,0,1,[[14,1,1,0,1]]],[17,1,1,1,2,[[463,1,1,1,2]]],[22,3,2,2,4,[[696,2,1,2,3],[724,1,1,3,4]]],[23,2,1,4,5,[[756,2,1,4,5]]],[25,1,1,5,6,[[840,1,1,5,6]]]],[371,13511,18003,18597,19258,21452]]],["bird",[2,2,[[22,1,1,0,1,[[724,1,1,0,1]]],[23,1,1,1,2,[[756,1,1,1,2]]]],[18597,19258]]],["birds",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19258]]],["fowl",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13511]]],["fowls",[3,2,[[0,1,1,0,1,[[14,1,1,0,1]]],[22,2,1,1,2,[[696,2,1,1,2]]]],[371,18003]]],["ravenous",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21452]]]]},{"k":"H5862","v":[["Etam",[5,5,[[6,2,2,0,2,[[225,2,2,0,2]]],[12,2,2,2,4,[[341,2,2,2,4]]],[13,1,1,4,5,[[377,1,1,4,5]]]],[6937,6940,10388,10417,11420]]]]},{"k":"H5863","v":[["Ijeabarim",[2,2,[[3,2,2,0,2,[[137,1,1,0,1],[149,1,1,1,2]]]],[4351,4804]]]]},{"k":"H5864","v":[["*",[2,2,[[3,1,1,0,1,[[149,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]]],[4805,6231]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4805]]],["Iim",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6231]]]]},{"k":"H5865","v":[["ever",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11915]]]]},{"k":"H5866","v":[["Ilai",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10702]]]]},{"k":"H5867","v":[["*",[28,27,[[0,3,3,0,3,[[9,1,1,0,1],[13,2,2,1,3]]],[12,3,3,3,6,[[338,1,1,3,4],[345,1,1,4,5],[363,1,1,5,6]]],[14,5,5,6,11,[[404,2,2,6,8],[410,1,1,8,9],[412,2,2,9,11]]],[15,4,4,11,15,[[419,2,2,11,13],[422,1,1,13,14],[424,1,1,14,15]]],[22,3,3,15,18,[[689,1,1,15,16],[699,1,1,16,17],[700,1,1,17,18]]],[23,8,7,18,25,[[769,1,1,18,19],[793,7,6,19,25]]],[25,1,1,25,26,[[833,1,1,25,26]]],[26,1,1,26,27,[[857,1,1,26,27]]]],[256,337,345,10269,10599,11080,12034,12058,12208,12254,12278,12432,12454,12563,12666,17895,18037,18058,19559,20161,20162,20163,20164,20165,20166,21272,21963]]],["+",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17895]]],["Elam",[27,26,[[0,3,3,0,3,[[9,1,1,0,1],[13,2,2,1,3]]],[12,3,3,3,6,[[338,1,1,3,4],[345,1,1,4,5],[363,1,1,5,6]]],[14,5,5,6,11,[[404,2,2,6,8],[410,1,1,8,9],[412,2,2,9,11]]],[15,4,4,11,15,[[419,2,2,11,13],[422,1,1,13,14],[424,1,1,14,15]]],[22,2,2,15,17,[[699,1,1,15,16],[700,1,1,16,17]]],[23,8,7,17,24,[[769,1,1,17,18],[793,7,6,18,24]]],[25,1,1,24,25,[[833,1,1,24,25]]],[26,1,1,25,26,[[857,1,1,25,26]]]],[256,337,345,10269,10599,11080,12034,12058,12208,12254,12278,12432,12454,12563,12666,18037,18058,19559,20161,20162,20163,20164,20165,20166,21272,21963]]]]},{"k":"H5868","v":[["mighty",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17899]]]]},{"k":"H5869","v":[["*",[883,827,[[0,78,75,0,75,[[2,3,3,0,3],[5,1,1,3,4],[12,2,2,4,6],[15,5,4,6,10],[17,2,2,10,12],[18,3,3,12,15],[19,2,2,15,17],[20,3,3,17,20],[21,2,2,20,22],[22,2,2,22,24],[23,9,9,24,33],[26,2,2,33,35],[27,1,1,35,36],[28,2,2,36,38],[29,2,2,38,40],[30,4,4,40,44],[31,1,1,44,45],[32,5,5,45,50],[33,2,2,50,52],[36,1,1,52,53],[37,2,2,53,55],[38,3,3,55,58],[40,2,1,58,59],[41,1,1,59,60],[42,1,1,60,61],[43,1,1,61,62],[44,5,4,62,66],[45,1,1,66,67],[46,3,3,67,70],[47,2,2,70,72],[48,2,2,72,74],[49,1,1,74,75]]],[1,35,27,75,102,[[52,1,1,75,76],[53,1,1,76,77],[54,2,1,77,78],[56,2,1,78,79],[57,1,1,79,80],[58,1,1,80,81],[59,2,2,81,83],[60,3,1,83,84],[61,1,1,84,85],[62,2,2,85,87],[63,1,1,87,88],[64,2,2,88,90],[66,1,1,90,91],[68,1,1,91,92],[70,6,3,92,95],[73,1,1,95,96],[82,5,4,96,100],[83,1,1,100,101],[89,1,1,101,102]]],[2,16,15,102,117,[[93,1,1,102,103],[99,2,2,103,105],[102,4,4,105,109],[103,1,1,109,110],[109,2,2,110,112],[110,1,1,112,113],[113,2,1,113,114],[114,1,1,114,115],[115,2,2,115,117]]],[3,40,36,117,153,[[121,1,1,117,118],[126,1,1,118,119],[127,6,5,119,124],[129,2,1,124,125],[130,2,1,125,126],[131,2,2,126,128],[132,1,1,128,129],[135,1,1,129,130],[136,3,3,130,133],[138,4,4,133,137],[139,1,1,137,138],[140,6,6,138,144],[141,2,1,144,145],[143,2,2,145,147],[148,2,2,147,149],[149,3,3,149,152],[152,1,1,152,153]]],[4,60,57,153,210,[[153,2,2,153,155],[155,3,2,155,157],[156,6,6,157,163],[158,3,3,163,166],[159,2,2,166,168],[160,1,1,168,169],[161,2,2,169,171],[162,1,1,171,172],[163,3,3,172,175],[164,3,3,175,178],[165,2,2,178,180],[166,1,1,180,181],[167,2,2,181,183],[168,1,1,183,184],[169,1,1,184,185],[171,4,2,185,187],[173,2,2,187,189],[176,1,1,189,190],[177,3,3,190,193],[180,7,7,193,200],[181,3,3,200,203],[183,2,2,203,205],[184,1,1,205,206],[185,1,1,206,207],[186,3,3,207,210]]],[5,11,11,210,221,[[189,1,1,210,211],[190,1,1,211,212],[191,1,1,212,213],[195,1,1,213,214],[196,1,1,214,215],[208,2,2,215,217],[209,1,1,217,218],[210,3,3,218,221]]],[6,19,18,221,239,[[212,1,1,221,222],[213,3,2,222,224],[214,1,1,224,225],[216,3,3,225,228],[220,2,2,228,230],[223,1,1,230,231],[224,2,2,231,233],[226,2,2,233,235],[227,1,1,235,236],[229,2,2,236,238],[231,1,1,238,239]]],[7,4,4,239,243,[[233,4,4,239,243]]],[8,43,40,243,283,[[236,2,2,243,245],[237,1,1,245,246],[238,2,2,246,248],[239,1,1,248,249],[241,1,1,249,250],[243,1,1,250,251],[246,2,2,251,253],[247,3,3,253,256],[249,4,4,256,260],[250,2,2,260,262],[251,3,3,262,265],[253,6,5,265,270],[255,2,2,270,272],[256,1,1,272,273],[259,2,2,273,275],[260,1,1,275,276],[261,3,2,276,278],[262,1,1,278,279],[264,5,4,279,283]]],[9,38,35,283,318,[[269,4,2,283,285],[270,1,1,285,286],[272,2,2,286,288],[273,1,1,288,289],[276,2,2,289,291],[277,2,2,291,293],[278,3,2,293,295],[279,5,5,295,300],[280,1,1,300,301],[281,2,2,301,303],[282,2,2,303,305],[283,1,1,305,306],[284,2,2,306,308],[285,5,5,308,313],[286,1,1,313,314],[288,2,2,314,316],[290,2,2,316,318]]],[10,31,31,318,349,[[291,2,2,318,320],[293,1,1,320,321],[298,2,2,321,323],[299,2,2,323,325],[300,1,1,325,326],[301,4,4,326,330],[304,3,3,330,333],[305,4,4,333,337],[306,4,4,337,341],[310,3,3,341,344],[311,3,3,344,347],[312,2,2,347,349]]],[11,49,45,349,394,[[313,2,2,349,351],[315,2,2,351,353],[316,3,2,353,355],[318,4,2,355,357],[319,2,2,357,359],[320,2,2,359,361],[321,1,1,361,362],[322,2,2,362,364],[324,1,1,364,365],[325,2,2,365,367],[326,2,2,367,369],[327,6,6,369,375],[328,1,1,375,376],[329,2,2,376,378],[330,1,1,378,379],[331,2,2,379,381],[332,1,1,381,382],[333,5,5,382,387],[334,2,2,387,389],[335,2,2,389,391],[336,2,2,391,393],[337,2,1,393,394]]],[12,11,11,394,405,[[339,1,1,394,395],[350,1,1,395,396],[354,1,1,396,397],[356,2,2,397,399],[358,3,3,399,402],[365,1,1,402,403],[366,2,2,403,405]]],[13,30,30,405,435,[[372,2,2,405,407],[373,2,2,407,409],[375,1,1,409,410],[380,1,1,410,411],[382,1,1,411,412],[386,2,2,412,414],[387,1,1,414,415],[388,1,1,415,416],[390,1,1,416,417],[391,1,1,417,418],[392,1,1,418,419],[393,1,1,419,420],[394,1,1,420,421],[395,3,3,421,424],[396,1,1,424,425],[398,2,2,425,427],[399,3,3,427,430],[400,2,2,430,432],[402,3,3,432,435]]],[14,2,2,435,437,[[405,1,1,435,436],[411,1,1,436,437]]],[15,7,7,437,444,[[413,1,1,437,438],[414,2,2,438,440],[415,1,1,440,441],[418,1,1,441,442],[420,1,1,442,443],[424,1,1,443,444]]],[16,13,12,444,456,[[426,2,2,444,446],[427,4,3,446,449],[428,2,2,449,451],[430,2,2,451,453],[432,1,1,453,454],[433,2,2,454,456]]],[17,46,44,456,500,[[437,1,1,456,457],[438,1,1,457,458],[439,1,1,458,459],[442,3,2,459,461],[445,2,2,461,463],[446,2,2,463,465],[448,1,1,465,466],[449,1,1,466,467],[450,2,2,467,469],[451,2,2,469,471],[452,3,3,471,474],[453,1,1,474,475],[454,2,2,475,477],[455,1,1,477,478],[456,2,2,478,480],[457,1,1,480,481],[459,3,2,481,483],[460,1,1,483,484],[462,1,1,484,485],[463,3,3,485,488],[464,2,2,488,490],[466,3,3,490,493],[467,1,1,493,494],[469,1,1,494,495],[471,1,1,495,496],[474,1,1,496,497],[475,1,1,497,498],[476,1,1,498,499],[477,1,1,499,500]]],[18,66,64,500,564,[[482,1,1,500,501],[483,1,1,501,502],[487,1,1,502,503],[488,1,1,503,504],[490,1,1,504,505],[492,1,1,505,506],[494,3,3,506,509],[495,2,2,509,511],[496,1,1,511,512],[502,1,1,512,513],[503,1,1,513,514],[508,2,2,514,516],[509,1,1,516,517],[510,1,1,517,518],[511,1,1,518,519],[512,2,2,519,521],[513,2,2,521,523],[515,1,1,523,524],[527,1,1,524,525],[528,1,1,525,526],[531,1,1,526,527],[543,1,1,527,528],[546,2,2,528,530],[549,1,1,530,531],[550,2,2,531,533],[554,1,1,533,534],[556,1,1,534,535],[565,1,1,535,536],[567,1,1,536,537],[568,1,1,537,538],[569,1,1,538,539],[571,1,1,539,540],[575,1,1,540,541],[578,4,4,541,545],[592,1,1,545,546],[593,2,2,546,548],[595,1,1,548,549],[596,6,6,549,555],[598,1,1,555,556],[600,4,2,556,558],[608,1,1,558,559],[609,1,1,559,560],[612,1,1,560,561],[616,1,1,561,562],[618,1,1,562,563],[622,1,1,563,564]]],[19,48,48,564,612,[[628,1,1,564,565],[630,3,3,565,568],[631,2,2,568,570],[632,1,1,570,571],[633,3,3,571,574],[634,1,1,574,575],[635,1,1,575,576],[637,2,2,576,578],[639,1,1,578,579],[642,2,2,579,581],[643,2,2,581,583],[644,2,2,583,585],[647,3,3,585,588],[648,3,3,588,591],[649,2,2,591,593],[650,6,6,593,599],[651,1,1,599,600],[652,1,1,600,601],[653,3,3,601,604],[654,1,1,604,605],[655,3,3,605,608],[656,1,1,608,609],[657,3,3,609,612]]],[20,9,9,612,621,[[659,1,1,612,613],[660,2,2,613,615],[662,1,1,615,616],[663,1,1,616,617],[664,1,1,617,618],[666,1,1,618,619],[669,2,2,619,621]]],[21,7,7,621,628,[[671,1,1,621,622],[674,2,2,622,624],[675,1,1,624,625],[676,1,1,625,626],[677,1,1,626,627],[678,1,1,627,628]]],[22,45,43,628,671,[[679,2,2,628,630],[680,1,1,630,631],[681,2,2,631,633],[683,2,2,633,635],[684,3,2,635,637],[688,1,1,637,638],[689,1,1,638,639],[691,2,2,639,641],[695,1,1,641,642],[707,2,2,642,644],[708,1,1,644,645],[710,1,1,645,646],[711,3,3,646,649],[713,1,1,649,650],[715,2,2,650,652],[716,2,2,652,654],[718,1,1,654,655],[720,1,1,655,656],[721,2,2,656,658],[722,1,1,658,659],[727,2,2,659,661],[729,1,1,661,662],[730,3,2,662,664],[737,2,2,664,666],[738,1,1,666,667],[742,1,1,667,668],[743,2,2,668,670],[744,1,1,670,671]]],[23,54,45,671,716,[[747,1,1,671,672],[748,1,1,672,673],[749,2,2,673,675],[751,2,2,675,677],[753,2,2,677,679],[757,2,2,679,681],[758,2,2,681,683],[760,3,2,683,685],[762,2,2,685,687],[763,1,1,687,688],[764,1,1,688,689],[766,1,1,689,690],[768,1,1,690,691],[770,1,1,691,692],[771,1,1,692,693],[772,4,3,693,696],[773,1,1,696,697],[775,1,1,697,698],[776,8,5,698,703],[778,3,2,703,705],[783,3,3,705,708],[784,5,2,708,710],[786,1,1,710,711],[787,1,1,711,712],[795,1,1,712,713],[796,3,3,713,716]]],[24,10,9,716,725,[[797,2,1,716,717],[798,3,3,717,720],[799,3,3,720,723],[800,1,1,723,724],[801,1,1,724,725]]],[25,70,64,725,789,[[802,6,6,725,731],[805,1,1,731,732],[806,3,3,732,735],[807,1,1,735,736],[808,2,2,736,738],[809,4,3,738,741],[810,2,2,741,743],[811,4,4,743,747],[813,9,7,747,754],[817,2,2,754,756],[819,3,3,756,759],[821,11,8,759,767],[822,2,2,767,769],[823,2,2,769,771],[824,3,3,771,774],[825,3,3,774,777],[829,2,2,777,779],[834,1,1,779,780],[837,2,2,780,782],[838,1,1,782,783],[839,2,2,783,785],[840,1,1,785,786],[841,1,1,786,787],[844,1,1,787,788],[845,1,1,788,789]]],[26,7,6,789,795,[[857,3,3,789,792],[858,1,1,792,793],[859,3,2,793,795]]],[27,3,3,795,798,[[863,1,1,795,796],[871,1,1,796,797],[874,1,1,797,798]]],[28,1,1,798,799,[[876,1,1,798,799]]],[29,3,3,799,802,[[887,3,3,799,802]]],[31,1,1,802,803,[[890,1,1,802,803]]],[32,2,2,803,805,[[896,1,1,803,804],[899,1,1,804,805]]],[34,1,1,805,806,[[903,1,1,805,806]]],[35,1,1,806,807,[[908,1,1,806,807]]],[36,1,1,807,808,[[910,1,1,807,808]]],[37,19,17,808,825,[[911,1,1,808,809],[912,2,2,809,811],[913,1,1,811,812],[914,1,1,812,813],[915,4,4,813,817],[916,1,1,817,818],[918,2,1,818,819],[919,2,2,819,821],[921,3,2,821,823],[922,1,1,823,824],[924,1,1,824,825]]],[38,2,2,825,827,[[925,1,1,825,826],[926,1,1,826,827]]]],[60,61,62,145,328,332,385,386,387,388,426,427,465,471,476,510,511,524,525,532,551,560,582,589,604,607,620,621,633,634,636,654,655,728,739,781,812,815,857,871,883,885,908,913,933,961,965,968,970,975,991,998,1108,1126,1129,1153,1156,1170,1232,1276,1319,1345,1363,1370,1374,1378,1390,1439,1445,1449,1461,1468,1485,1495,1510,1600,1631,1653,1705,1736,1750,1782,1792,1809,1852,1876,1883,1899,1946,1947,1989,2037,2085,2101,2103,2194,2485,2486,2489,2490,2505,2745,2808,2996,2997,3057,3064,3089,3107,3120,3322,3335,3365,3466,3522,3540,3569,3805,4019,4030,4031,4034,4035,4039,4108,4122,4177,4192,4208,4294,4319,4323,4338,4380,4386,4406,4409,4443,4447,4448,4449,4450,4461,4462,4477,4568,4573,4723,4731,4763,4769,4815,4885,4915,4922,4996,5002,5007,5010,5013,5023,5029,5038,5094,5104,5108,5127,5130,5144,5174,5175,5207,5215,5220,5226,5248,5265,5268,5280,5290,5291,5328,5337,5361,5366,5419,5427,5454,5456,5526,5550,5556,5559,5642,5643,5645,5665,5667,5676,5678,5681,5682,5683,5735,5757,5768,5838,5843,5846,5851,5900,5924,5947,6062,6076,6456,6459,6473,6483,6491,6493,6556,6575,6580,6600,6655,6671,6675,6817,6826,6885,6912,6916,6970,6977,6986,7041,7048,7127,7151,7158,7159,7162,7230,7235,7273,7278,7294,7312,7344,7375,7447,7455,7463,7476,7477,7535,7537,7544,7548,7577,7579,7602,7607,7617,7681,7684,7696,7699,7702,7733,7759,7785,7843,7849,7869,7926,7929,7935,7968,7973,7974,7976,8100,8117,8130,8177,8179,8199,8243,8252,8284,8286,8295,8297,8319,8322,8323,8325,8351,8378,8414,8415,8430,8448,8453,8482,8502,8517,8529,8538,8548,8549,8560,8627,8630,8695,8714,8737,8765,8826,9014,9037,9054,9063,9086,9114,9127,9141,9146,9222,9226,9240,9254,9260,9275,9283,9290,9302,9308,9313,9414,9446,9449,9453,9471,9476,9523,9532,9546,9547,9578,9594,9637,9638,9691,9694,9709,9726,9745,9754,9786,9798,9823,9852,9873,9882,9899,9920,9928,9934,9943,9949,9953,9959,9965,9985,10000,10027,10077,10083,10101,10121,10125,10134,10135,10139,10147,10165,10197,10202,10211,10221,10229,10309,10764,10880,10910,10920,10941,10950,10957,11151,11174,11189,11302,11322,11339,11340,11370,11477,11518,11599,11619,11630,11648,11679,11706,11736,11757,11765,11793,11797,11799,11831,11878,11898,11910,11914,11930,11935,11961,11998,12002,12005,12109,12245,12302,12320,12321,12342,12417,12498,12661,12719,12723,12728,12733,12739,12753,12758,12781,12787,12810,12822,12825,12903,12914,12946,13015,13016,13090,13104,13112,13128,13154,13184,13215,13218,13247,13258,13262,13265,13267,13279,13312,13324,13335,13363,13375,13418,13451,13459,13466,13500,13511,13514,13525,13543,13547,13589,13595,13604,13629,13704,13743,13863,13888,13906,13927,13978,13992,14049,14063,14077,14091,14105,14111,14114,14142,14145,14176,14266,14276,14340,14353,14363,14384,14403,14429,14431,14439,14440,14500,14689,14695,14732,14880,14938,14958,15014,15027,15036,15097,15195,15317,15382,15403,15422,15440,15492,15516,15518,15519,15520,15835,15856,15863,15892,15916,15935,15980,16021,16034,16046,16082,16099,16100,16149,16155,16191,16255,16284,16335,16417,16459,16462,16476,16511,16515,16538,16544,16553,16557,16577,16630,16666,16682,16734,16810,16837,16842,16870,16881,16897,16962,16966,16967,16986,16988,16994,17024,17027,17049,17050,17070,17073,17075,17077,17097,17120,17146,17153,17157,17189,17207,17218,17223,17237,17263,17264,17268,17323,17343,17347,17389,17408,17426,17474,17520,17522,17552,17583,17591,17610,17619,17631,17650,17669,17670,17696,17715,17723,17754,17760,17774,17779,17862,17887,17922,17924,17990,18203,18211,18237,18262,18294,18296,18299,18325,18369,18375,18393,18404,18446,18487,18509,18513,18551,18641,18654,18679,18704,18706,18810,18815,18825,18889,18909,18913,18926,19004,19057,19061,19079,19130,19149,19176,19193,19283,19286,19299,19310,19345,19353,19388,19394,19417,19426,19471,19530,19586,19601,19619,19623,19629,19656,19707,19735,19743,19744,19750,19761,19804,19816,19929,19930,19935,19945,19946,19977,20006,20236,20278,20286,20287,20326,20336,20343,20350,20402,20403,20405,20437,20459,20468,20471,20480,20482,20486,20491,20541,20554,20557,20560,20572,20581,20586,20606,20609,20622,20627,20632,20635,20642,20645,20652,20682,20683,20684,20685,20686,20687,20692,20767,20803,20855,20861,20864,20902,20903,20904,20909,20912,20917,20919,20936,20950,20967,20992,21002,21023,21034,21047,21072,21077,21081,21175,21182,21305,21382,21393,21417,21441,21448,21475,21481,21583,21604,21964,21966,21982,22006,22020,22021,22115,22235,22280,22307,22498,22499,22503,22552,22631,22674,22744,22840,22858,22896,22900,22907,22921,22932,22937,22941,22942,22945,22948,22982,23000,23007,23040,23045,23049,23080,23094,23120]]],["+",[73,69,[[0,11,11,0,11,[[15,1,1,0,1],[19,1,1,1,2],[27,1,1,2,3],[28,1,1,3,4],[30,2,2,4,6],[33,1,1,6,7],[37,1,1,7,8],[44,2,2,8,10],[47,1,1,10,11]]],[1,2,2,11,13,[[70,2,2,11,13]]],[2,4,4,13,17,[[93,1,1,13,14],[99,1,1,14,15],[102,1,1,15,16],[103,1,1,16,17]]],[3,8,8,17,25,[[121,1,1,17,18],[127,1,1,18,19],[131,1,1,19,20],[135,1,1,20,21],[138,1,1,21,22],[139,1,1,22,23],[140,1,1,23,24],[152,1,1,24,25]]],[4,2,2,25,27,[[153,1,1,25,26],[167,1,1,26,27]]],[5,2,2,27,29,[[208,2,2,27,29]]],[6,3,3,29,32,[[216,1,1,29,30],[224,2,2,30,32]]],[8,7,7,32,39,[[243,1,1,32,33],[253,3,3,33,36],[259,1,1,36,37],[264,2,2,37,39]]],[9,7,6,39,45,[[269,3,2,39,41],[277,2,2,41,43],[285,1,1,43,44],[286,1,1,44,45]]],[10,3,3,45,48,[[293,1,1,45,46],[299,1,1,46,47],[311,1,1,47,48]]],[12,1,1,48,49,[[358,1,1,48,49]]],[13,1,1,49,50,[[396,1,1,49,50]]],[16,6,5,50,55,[[426,1,1,50,51],[427,3,2,51,53],[428,1,1,53,54],[433,1,1,54,55]]],[17,3,3,55,58,[[438,1,1,55,56],[457,1,1,56,57],[463,1,1,57,58]]],[19,3,3,58,61,[[630,1,1,58,59],[631,1,1,59,60],[651,1,1,60,61]]],[21,1,1,61,62,[[674,1,1,61,62]]],[22,3,3,62,65,[[707,1,1,62,63],[737,1,1,63,64],[743,1,1,64,65]]],[23,4,2,65,67,[[783,1,1,65,66],[784,3,1,66,67]]],[27,1,1,67,68,[[874,1,1,67,68]]],[37,1,1,68,69,[[921,1,1,68,69]]]],[387,510,781,815,908,913,998,1129,1374,1378,1468,2085,2103,2808,2997,3064,3120,3805,4034,4177,4294,4409,4443,4447,4885,4915,5337,6456,6459,6675,6912,6916,7375,7684,7696,7702,7843,7973,7974,8100,8117,8284,8286,8517,8560,8826,9063,9453,10941,11831,12723,12728,12733,12758,12825,12914,13418,13525,16476,16511,17097,17591,18203,18815,18913,19935,19945,22280,23040]]],["Eye",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2101]]],["Seemeth",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7699]]],["Thinkest",[2,2,[[9,1,1,0,1,[[276,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]]],[8243,10910]]],["appearance",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7602]]],["before",[8,8,[[8,1,1,0,1,[[256,1,1,0,1]]],[12,1,1,1,2,[[366,1,1,1,2]]],[23,3,3,2,5,[[776,3,3,2,5]]],[25,3,3,5,8,[[821,3,3,5,8]]]],[7785,11174,19743,19744,19761,20904,20909,20936]]],["colour",[12,11,[[2,1,1,0,1,[[102,1,1,0,1]]],[3,2,1,1,2,[[127,2,1,1,2]]],[19,1,1,2,3,[[650,1,1,2,3]]],[25,7,7,3,10,[[802,5,5,3,8],[809,1,1,8,9],[811,1,1,9,10]]],[26,1,1,10,11,[[859,1,1,10,11]]]],[3107,4031,17075,20468,20471,20480,20486,20491,20606,20642,22021]]],["conceit",[4,4,[[19,4,4,0,4,[[653,3,3,0,3],[655,1,1,3,4]]]],[17146,17153,17157,17207]]],["countenance",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7607]]],["eye",[76,68,[[1,3,2,0,2,[[70,3,2,0,2]]],[2,3,2,2,4,[[110,1,1,2,3],[113,2,1,3,4]]],[4,12,10,4,14,[[159,1,1,4,5],[165,1,1,5,6],[167,1,1,6,7],[171,4,2,7,9],[177,1,1,9,10],[180,2,2,10,12],[184,1,1,12,13],[186,1,1,13,14]]],[17,14,13,14,27,[[442,2,2,14,16],[445,1,1,16,17],[448,1,1,17,18],[451,1,1,18,19],[452,2,2,19,21],[455,1,1,21,22],[459,2,1,22,23],[463,2,2,23,25],[464,1,1,25,26],[477,1,1,26,27]]],[18,11,11,27,38,[[483,1,1,27,28],[494,1,1,28,29],[508,1,1,29,30],[509,1,1,30,31],[510,1,1,31,32],[512,2,2,32,34],[531,1,1,34,35],[565,1,1,35,36],[569,1,1,36,37],[571,1,1,37,38]]],[19,7,7,38,45,[[634,1,1,38,39],[637,1,1,39,40],[647,1,1,40,41],[649,1,1,41,42],[650,1,1,42,43],[655,1,1,43,44],[657,1,1,44,45]]],[20,2,2,45,47,[[659,1,1,45,46],[662,1,1,46,47]]],[22,4,3,47,50,[[691,1,1,47,48],[730,2,1,48,49],[742,1,1,49,50]]],[23,1,1,50,51,[[757,1,1,50,51]]],[24,7,6,51,57,[[797,2,1,51,52],[798,2,2,52,54],[799,3,3,54,57]]],[25,8,8,57,65,[[806,1,1,57,58],[808,2,2,58,60],[809,1,1,60,61],[810,2,2,61,63],[817,1,1,63,64],[821,1,1,64,65]]],[32,1,1,65,66,[[896,1,1,65,66]]],[37,3,2,66,68,[[912,1,1,66,67],[921,2,1,67,68]]]],[2101,2103,3365,3466,5127,5280,5328,5419,5427,5559,5665,5667,5768,5846,13015,13016,13104,13154,13258,13262,13267,13335,13451,13511,13514,13543,13927,13992,14111,14340,14363,14384,14429,14431,14732,15317,15422,15440,16577,16666,16966,17024,17050,17218,17268,17323,17389,17924,18704,18889,19283,20326,20336,20350,20402,20403,20405,20557,20581,20586,20622,20627,20632,20767,20912,22631,22907,23045]]],["eyed",[1,1,[[0,1,1,0,1,[[28,1,1,0,1]]]],[812]]],["eyes",[409,392,[[0,38,36,0,36,[[2,3,3,0,3],[5,1,1,3,4],[12,2,2,4,6],[15,2,2,6,8],[17,1,1,8,9],[18,1,1,9,10],[19,1,1,10,11],[20,1,1,11,12],[21,2,2,12,14],[23,2,2,14,16],[26,1,1,16,17],[29,2,2,17,19],[30,2,2,19,21],[32,2,2,21,23],[33,1,1,23,24],[36,1,1,24,25],[38,1,1,25,26],[40,2,1,26,27],[41,1,1,27,28],[42,1,1,28,29],[43,1,1,29,30],[44,2,1,30,31],[45,1,1,31,32],[46,1,1,32,33],[47,1,1,33,34],[48,1,1,34,35],[49,1,1,35,36]]],[1,7,6,36,42,[[54,2,1,36,37],[57,1,1,37,38],[62,2,2,38,40],[63,1,1,40,41],[73,1,1,41,42]]],[2,2,2,42,44,[[109,1,1,42,43],[115,1,1,43,44]]],[3,14,14,44,58,[[126,1,1,44,45],[127,1,1,45,46],[131,1,1,46,47],[132,1,1,47,48],[136,2,2,48,50],[138,1,1,50,51],[140,5,5,51,56],[143,1,1,56,57],[149,1,1,57,58]]],[4,31,30,58,88,[[153,1,1,58,59],[155,3,2,59,61],[156,4,4,61,65],[158,2,2,65,67],[159,1,1,67,68],[161,1,1,68,69],[162,1,1,69,70],[163,3,3,70,73],[164,1,1,73,74],[165,1,1,74,75],[166,1,1,75,76],[168,1,1,76,77],[173,1,1,77,78],[176,1,1,78,79],[180,5,5,79,84],[181,3,3,84,87],[186,1,1,87,88]]],[5,3,3,88,91,[[191,1,1,88,89],[209,1,1,89,90],[210,1,1,90,91]]],[6,5,5,91,96,[[226,2,2,91,93],[227,1,1,93,94],[229,1,1,94,95],[231,1,1,95,96]]],[7,2,2,96,98,[[233,2,2,96,98]]],[8,17,16,98,114,[[237,1,1,98,99],[238,1,1,99,100],[239,1,1,100,101],[241,1,1,101,102],[246,1,1,102,103],[247,2,2,103,105],[249,2,2,105,107],[255,2,2,107,109],[259,1,1,109,110],[260,1,1,110,111],[261,3,2,111,113],[262,1,1,113,114]]],[9,8,8,114,122,[[272,1,1,114,115],[278,1,1,115,116],[279,1,1,116,117],[281,1,1,117,118],[284,1,1,118,119],[285,1,1,119,120],[288,1,1,120,121],[290,1,1,121,122]]],[10,14,14,122,136,[[291,2,2,122,124],[298,2,2,124,126],[299,1,1,126,127],[300,1,1,127,128],[301,1,1,128,129],[304,2,2,129,131],[305,2,2,131,133],[306,1,1,133,134],[310,1,1,134,135],[312,1,1,135,136]]],[11,16,12,136,148,[[316,3,2,136,138],[318,4,2,138,140],[319,2,2,140,142],[322,2,2,142,144],[331,2,2,144,146],[334,1,1,146,147],[337,2,1,147,148]]],[12,4,4,148,152,[[350,1,1,148,149],[354,1,1,149,150],[358,2,2,150,152]]],[13,12,12,152,164,[[372,2,2,152,154],[373,2,2,154,156],[375,1,1,156,157],[380,1,1,157,158],[382,1,1,158,159],[386,1,1,159,160],[387,1,1,160,161],[395,2,2,161,163],[400,1,1,163,164]]],[14,2,2,164,166,[[405,1,1,164,165],[411,1,1,165,166]]],[15,2,2,166,168,[[413,1,1,166,167],[418,1,1,167,168]]],[16,2,2,168,170,[[426,1,1,168,169],[433,1,1,169,170]]],[17,25,25,170,195,[[437,1,1,170,171],[439,1,1,171,172],[442,1,1,172,173],[445,1,1,173,174],[446,2,2,174,176],[449,1,1,176,177],[450,1,1,177,178],[451,1,1,178,179],[452,1,1,179,180],[454,1,1,180,181],[456,2,2,181,183],[459,1,1,183,184],[462,1,1,184,185],[464,1,1,185,186],[466,3,3,186,189],[467,1,1,189,190],[469,1,1,190,191],[471,1,1,191,192],[474,1,1,192,193],[475,1,1,193,194],[476,1,1,194,195]]],[18,43,41,195,236,[[487,1,1,195,196],[488,1,1,196,197],[490,1,1,197,198],[492,1,1,198,199],[494,2,2,199,201],[496,1,1,201,202],[502,1,1,202,203],[503,1,1,203,204],[508,1,1,204,205],[511,1,1,205,206],[513,2,2,206,208],[515,1,1,208,209],[527,1,1,209,210],[543,1,1,210,211],[546,2,2,211,213],[550,1,1,213,214],[554,1,1,214,215],[568,1,1,215,216],[578,2,2,216,218],[592,1,1,218,219],[593,1,1,219,220],[595,1,1,220,221],[596,6,6,221,227],[598,1,1,227,228],[600,4,2,228,230],[608,1,1,230,231],[609,1,1,231,232],[612,1,1,232,233],[616,1,1,233,234],[618,1,1,234,235],[622,1,1,235,236]]],[19,28,28,236,264,[[630,1,1,236,237],[631,1,1,237,238],[632,1,1,238,239],[633,2,2,239,241],[637,1,1,241,242],[639,1,1,242,243],[642,2,2,243,245],[643,2,2,245,247],[644,2,2,247,249],[647,2,2,249,251],[648,2,2,251,253],[649,1,1,253,254],[650,4,4,254,258],[652,1,1,258,259],[654,1,1,259,260],[655,1,1,260,261],[656,1,1,261,262],[657,2,2,262,264]]],[20,7,7,264,271,[[660,2,2,264,266],[663,1,1,266,267],[664,1,1,267,268],[666,1,1,268,269],[669,2,2,269,271]]],[21,6,6,271,277,[[671,1,1,271,272],[674,1,1,272,273],[675,1,1,273,274],[676,1,1,274,275],[677,1,1,275,276],[678,1,1,276,277]]],[22,34,33,277,310,[[679,2,2,277,279],[681,2,2,279,281],[683,2,2,281,283],[684,3,2,283,285],[689,1,1,285,286],[691,1,1,286,287],[695,1,1,287,288],[707,1,1,288,289],[708,1,1,289,290],[710,1,1,290,291],[711,3,3,291,294],[713,1,1,294,295],[715,2,2,295,297],[716,1,1,297,298],[718,1,1,298,299],[720,1,1,299,300],[721,1,1,300,301],[722,1,1,301,302],[727,2,2,302,304],[729,1,1,304,305],[730,1,1,305,306],[737,1,1,306,307],[738,1,1,307,308],[743,1,1,308,309],[744,1,1,309,310]]],[23,28,25,310,335,[[747,1,1,310,311],[749,2,2,311,313],[751,1,1,313,314],[753,2,2,314,316],[757,1,1,316,317],[758,2,2,317,319],[760,3,2,319,321],[764,1,1,321,322],[766,1,1,322,323],[768,1,1,323,324],[773,1,1,324,325],[775,1,1,325,326],[776,3,2,326,328],[778,2,1,328,329],[783,2,2,329,331],[786,1,1,331,332],[796,3,3,332,335]]],[24,3,3,335,338,[[798,1,1,335,336],[800,1,1,336,337],[801,1,1,337,338]]],[25,28,27,338,365,[[802,1,1,338,339],[807,1,1,339,340],[809,2,1,340,341],[811,1,1,341,342],[813,2,2,342,344],[819,3,3,344,347],[821,3,3,347,350],[822,1,1,350,351],[823,1,1,351,352],[824,3,3,352,355],[825,3,3,355,358],[834,1,1,358,359],[837,1,1,359,360],[838,1,1,360,361],[839,2,2,361,363],[841,1,1,363,364],[845,1,1,364,365]]],[26,6,6,365,371,[[857,3,3,365,368],[858,1,1,368,369],[859,2,2,369,371]]],[28,1,1,371,372,[[876,1,1,371,372]]],[29,2,2,372,374,[[887,2,2,372,374]]],[32,1,1,374,375,[[899,1,1,374,375]]],[34,1,1,375,376,[[903,1,1,375,376]]],[35,1,1,376,377,[[908,1,1,376,377]]],[36,1,1,377,378,[[910,1,1,377,378]]],[37,14,13,378,391,[[911,1,1,378,379],[912,1,1,379,380],[913,1,1,380,381],[914,1,1,381,382],[915,3,3,382,385],[916,1,1,385,386],[918,2,1,386,387],[919,2,2,387,389],[922,1,1,389,390],[924,1,1,390,391]]],[38,1,1,391,392,[[925,1,1,391,392]]]],[60,61,62,145,328,332,385,386,426,465,511,532,551,560,654,655,728,857,871,883,885,961,965,991,1108,1156,1232,1276,1319,1345,1370,1390,1439,1461,1485,1510,1653,1736,1876,1883,1899,2194,3322,3540,4019,4030,4192,4208,4319,4323,4406,4448,4449,4450,4461,4462,4568,4815,4922,4996,5002,5007,5013,5023,5038,5094,5108,5130,5174,5207,5215,5220,5226,5248,5290,5291,5361,5454,5526,5642,5643,5645,5676,5678,5681,5682,5683,5843,5947,6473,6483,6970,6977,6986,7041,7127,7158,7159,7273,7278,7312,7344,7447,7463,7476,7535,7537,7733,7759,7849,7869,7926,7929,7935,8177,8297,8351,8414,8502,8538,8630,8695,8737,8765,9014,9037,9054,9086,9141,9222,9226,9254,9260,9308,9414,9523,9637,9638,9691,9694,9709,9726,9798,9823,10077,10083,10165,10229,10764,10880,10950,10957,11302,11322,11339,11340,11370,11477,11518,11599,11630,11797,11799,11961,12109,12245,12302,12417,12719,12822,12903,12946,13016,13090,13112,13128,13184,13215,13247,13265,13324,13363,13375,13459,13500,13547,13589,13595,13604,13629,13704,13743,13863,13888,13906,14049,14063,14077,14091,14105,14114,14176,14266,14276,14353,14403,14439,14440,14500,14689,14880,14938,14958,15027,15097,15403,15516,15519,15835,15856,15892,15916,15935,15980,16021,16034,16046,16082,16099,16100,16149,16155,16191,16255,16284,16335,16462,16515,16538,16544,16553,16682,16734,16810,16837,16842,16870,16881,16897,16962,16967,16986,16994,17027,17049,17070,17073,17077,17120,17189,17223,17237,17263,17264,17343,17347,17408,17426,17474,17520,17522,17552,17583,17610,17619,17631,17650,17669,17670,17715,17723,17754,17760,17774,17779,17887,17922,17990,18211,18237,18262,18294,18296,18299,18325,18369,18375,18404,18446,18487,18513,18551,18641,18654,18679,18706,18810,18825,18909,18926,19004,19061,19079,19130,19176,19193,19286,19299,19310,19345,19353,19426,19471,19530,19656,19707,19735,19750,19804,19929,19930,19977,20278,20286,20287,20343,20437,20459,20482,20572,20609,20645,20682,20692,20855,20861,20864,20902,20903,20919,20950,21002,21023,21034,21047,21072,21077,21081,21305,21382,21417,21441,21448,21481,21604,21964,21966,21982,22006,22020,22021,22307,22499,22503,22674,22744,22840,22858,22896,22900,22921,22932,22937,22941,22945,22948,22982,23000,23007,23049,23080,23094]]],["eyesight",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14142]]],["face",[10,9,[[1,2,2,0,2,[[59,2,2,0,2]]],[3,4,3,2,5,[[130,2,1,2,3],[138,2,2,3,5]]],[10,2,2,5,7,[[310,2,2,5,7]]],[11,1,1,7,8,[[321,1,1,7,8]]],[23,1,1,8,9,[[748,1,1,8,9]]]],[1782,1792,4122,4380,4386,9446,9449,9786,19057]]],["for",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15036]]],["fountain",[7,6,[[0,2,1,0,1,[[15,2,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[8,1,1,2,3,[[264,1,1,2,3]]],[15,3,3,3,6,[[414,1,1,3,4],[415,1,1,4,5],[424,1,1,5,6]]]],[388,5838,7968,12321,12342,12661]]],["fountains",[4,4,[[3,1,1,0,1,[[149,1,1,0,1]]],[4,1,1,1,2,[[160,1,1,1,2]]],[13,1,1,2,3,[[398,1,1,2,3]]],[19,1,1,3,4,[[635,1,1,3,4]]]],[4769,5144,11878,16630]]],["furrows",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22235]]],["good",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8100]]],["him",[2,2,[[0,1,1,0,1,[[26,1,1,0,1]]],[9,1,1,1,2,[[290,1,1,1,2]]]],[739,8714]]],["look",[3,3,[[18,1,1,0,1,[[578,1,1,0,1]]],[19,2,2,1,3,[[633,1,1,1,2],[648,1,1,2,3]]]],[15518,16557,16988]]],["looks",[3,3,[[18,1,1,0,1,[[495,1,1,0,1]]],[22,2,2,1,3,[[680,1,1,1,2],[688,1,1,2,3]]]],[14145,17696,17862]]],["presence",[8,7,[[0,2,2,0,2,[[22,2,2,0,2]]],[4,1,1,2,3,[[177,1,1,2,3]]],[23,5,4,3,7,[[772,4,3,3,6],[776,1,1,6,7]]]],[582,589,5556,19619,19623,19629,19743]]],["resemblance",[1,1,[[37,1,1,0,1,[[915,1,1,0,1]]]],[22942]]],["seem",[2,2,[[9,2,2,0,2,[[285,2,2,0,2]]]],[8548,8549]]],["seemed",[2,2,[[23,2,2,0,2,[[762,1,1,0,1],[771,1,1,1,2]]]],[19388,19601]]],["seemeth",[12,12,[[6,1,1,0,1,[[229,1,1,0,1]]],[8,5,5,1,6,[[236,1,1,1,2],[238,1,1,2,3],[246,1,1,3,4],[249,2,2,4,6]]],[9,3,3,6,9,[[276,1,1,6,7],[281,1,1,7,8],[284,1,1,8,9]]],[23,3,3,9,12,[[770,1,1,9,10],[784,2,2,10,12]]]],[7048,7235,7294,7455,7544,7548,8252,8415,8482,19586,19945,19946]]],["sight",[215,204,[[0,13,13,0,13,[[17,1,1,0,1],[18,1,1,1,2],[20,2,2,2,4],[31,1,1,4,5],[32,3,3,5,8],[37,1,1,8,9],[38,2,2,9,11],[46,2,2,11,13]]],[1,19,15,13,28,[[52,1,1,13,14],[53,1,1,14,15],[56,2,1,15,16],[58,1,1,16,17],[60,3,1,17,18],[61,1,1,18,19],[64,1,1,19,20],[66,1,1,20,21],[68,1,1,21,22],[82,5,4,22,26],[83,1,1,26,27],[89,1,1,27,28]]],[2,6,6,28,34,[[99,1,1,28,29],[102,2,2,29,31],[109,1,1,31,32],[114,1,1,32,33],[115,1,1,33,34]]],[3,11,9,34,43,[[127,2,2,34,36],[129,2,1,36,37],[136,1,1,37,38],[141,2,1,38,39],[143,1,1,39,40],[148,2,2,40,42],[149,1,1,42,43]]],[4,11,11,43,54,[[156,2,2,43,45],[158,1,1,45,46],[161,1,1,46,47],[164,2,2,47,49],[169,1,1,49,50],[173,1,1,50,51],[183,2,2,51,53],[186,1,1,53,54]]],[5,4,4,54,58,[[189,1,1,54,55],[190,1,1,55,56],[196,1,1,56,57],[210,1,1,57,58]]],[6,9,8,58,66,[[212,1,1,58,59],[213,3,2,59,61],[214,1,1,61,62],[216,2,2,62,64],[220,1,1,64,65],[223,1,1,65,66]]],[7,2,2,66,68,[[233,2,2,66,68]]],[8,9,8,68,76,[[236,1,1,68,69],[247,1,1,69,70],[250,2,2,70,72],[251,1,1,72,73],[253,2,1,73,74],[264,2,2,74,76]]],[9,11,11,76,87,[[272,1,1,76,77],[273,1,1,77,78],[278,2,2,78,80],[279,3,3,80,83],[280,1,1,83,84],[282,2,2,84,86],[288,1,1,86,87]]],[10,12,12,87,99,[[301,3,3,87,90],[304,1,1,90,91],[305,2,2,91,93],[306,3,3,93,96],[311,2,2,96,98],[312,1,1,98,99]]],[11,32,32,99,131,[[313,2,2,99,101],[315,2,2,101,103],[320,2,2,103,105],[324,1,1,105,106],[325,2,2,106,108],[326,2,2,108,110],[327,6,6,110,116],[328,1,1,116,117],[329,2,2,117,119],[330,1,1,119,120],[332,1,1,120,121],[333,5,5,121,126],[334,1,1,126,127],[335,2,2,127,129],[336,2,2,129,131]]],[12,4,4,131,135,[[339,1,1,131,132],[356,1,1,132,133],[365,1,1,133,134],[366,1,1,134,135]]],[13,16,16,135,151,[[386,1,1,135,136],[388,1,1,136,137],[390,1,1,137,138],[391,1,1,138,139],[392,1,1,139,140],[393,1,1,140,141],[394,1,1,141,142],[395,1,1,142,143],[398,1,1,143,144],[399,3,3,144,147],[400,1,1,147,148],[402,3,3,148,151]]],[15,1,1,151,152,[[420,1,1,151,152]]],[16,4,4,152,156,[[427,1,1,152,153],[430,2,2,153,155],[432,1,1,155,156]]],[17,4,4,156,160,[[450,1,1,156,157],[453,1,1,157,158],[454,1,1,158,159],[460,1,1,159,160]]],[18,8,8,160,168,[[482,1,1,160,161],[528,1,1,161,162],[549,1,1,162,163],[556,1,1,163,164],[567,1,1,164,165],[575,1,1,165,166],[578,1,1,166,167],[593,1,1,167,168]]],[19,2,2,168,170,[[628,1,1,168,169],[630,1,1,169,170]]],[22,2,2,170,172,[[716,1,1,170,171],[721,1,1,171,172]]],[23,7,7,172,179,[[751,1,1,172,173],[762,1,1,173,174],[763,1,1,174,175],[776,1,1,175,176],[778,1,1,176,177],[787,1,1,177,178],[795,1,1,178,179]]],[25,24,21,179,200,[[805,1,1,179,180],[806,2,2,180,182],[811,2,2,182,184],[813,7,5,184,189],[817,1,1,189,190],[821,4,3,190,193],[822,1,1,193,194],[823,1,1,194,195],[829,2,2,195,197],[837,1,1,197,198],[840,1,1,198,199],[844,1,1,199,200]]],[27,1,1,200,201,[[863,1,1,200,201]]],[29,1,1,201,202,[[887,1,1,201,202]]],[31,1,1,202,203,[[890,1,1,202,203]]],[38,1,1,203,204,[[926,1,1,203,204]]]],[427,476,524,525,933,968,970,975,1126,1153,1170,1445,1449,1600,1631,1705,1750,1809,1852,1946,1989,2037,2485,2486,2489,2490,2505,2745,2996,3057,3089,3335,3522,3569,4035,4039,4108,4338,4477,4573,4723,4731,4763,5010,5029,5104,5175,5265,5268,5366,5456,5735,5757,5851,5900,5924,6076,6493,6556,6575,6580,6600,6655,6671,6817,6885,7151,7162,7230,7477,7577,7579,7617,7681,7973,7976,8179,8199,8295,8297,8322,8323,8325,8378,8430,8448,8627,9114,9127,9146,9240,9275,9283,9290,9302,9313,9471,9476,9532,9546,9547,9578,9594,9745,9754,9852,9873,9882,9899,9920,9928,9934,9943,9949,9953,9959,9965,9985,10000,10027,10101,10121,10125,10134,10135,10139,10147,10197,10202,10211,10221,10309,10920,11151,11189,11619,11648,11679,11706,11736,11757,11765,11793,11898,11910,11914,11930,11935,11998,12002,12005,12498,12739,12781,12787,12810,13218,13279,13312,13466,13978,14695,15014,15195,15382,15492,15520,15863,16417,16459,18393,18509,19149,19394,19417,19743,19816,20006,20236,20541,20554,20560,20635,20652,20683,20684,20685,20686,20687,20803,20904,20909,20917,20967,20992,21175,21182,21393,21475,21583,22115,22498,22552,23120]]],["thee",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6062]]],["thinking",[1,1,[[9,1,1,0,1,[[270,1,1,0,1]]]],[8130]]],["thought",[3,3,[[9,2,2,0,2,[[279,1,1,0,1],[285,1,1,1,2]]],[16,1,1,2,3,[[428,1,1,2,3]]]],[8319,8529,12753]]],["unto",[3,3,[[0,1,1,0,1,[[18,1,1,0,1]]],[4,1,1,1,2,[[177,1,1,1,2]]],[6,1,1,2,3,[[220,1,1,2,3]]]],[471,5550,6826]]],["well",[10,10,[[0,8,8,0,8,[[23,7,7,0,7],[48,1,1,7,8]]],[9,1,1,8,9,[[283,1,1,8,9]]],[15,1,1,9,10,[[414,1,1,9,10]]]],[604,607,620,621,633,634,636,1495,8453,12320]]],["wells",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1947]]],["you",[1,1,[[5,1,1,0,1,[[210,1,1,0,1]]]],[6491]]],["yourselves",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1363]]]]},{"k":"H5870","v":[["*",[5,4,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,4,3,1,4,[[853,1,1,1,2],[856,3,2,2,4]]]],[12139,21871,21941,21953]]],["eye",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12139]]],["eyes",[4,3,[[26,4,3,0,3,[[853,1,1,0,1],[856,3,2,1,3]]]],[21871,21941,21953]]]]},{"k":"H5871","v":[["Ain",[5,5,[[3,1,1,0,1,[[150,1,1,0,1]]],[5,3,3,1,4,[[201,1,1,1,2],[205,1,1,2,3],[207,1,1,3,4]]],[12,1,1,4,5,[[341,1,1,4,5]]]],[4827,6234,6328,6397,10417]]]]},{"k":"H5872","v":[["*",[6,6,[[5,1,1,0,1,[[201,1,1,0,1]]],[8,2,2,1,3,[[258,1,1,1,2],[259,1,1,2,3]]],[13,1,1,3,4,[[386,1,1,3,4]]],[21,1,1,4,5,[[671,1,1,4,5]]],[25,1,1,5,6,[[848,1,1,5,6]]]],[6264,7839,7840,11589,17551,21689]]],["+",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21689]]],["Engedi",[5,5,[[5,1,1,0,1,[[201,1,1,0,1]]],[8,2,2,1,3,[[258,1,1,1,2],[259,1,1,2,3]]],[13,1,1,3,4,[[386,1,1,3,4]]],[21,1,1,4,5,[[671,1,1,4,5]]]],[6264,7839,7840,11589,17551]]]]},{"k":"H5873","v":[["Engannim",[3,3,[[5,3,3,0,3,[[201,1,1,0,1],[205,1,1,1,2],[207,1,1,2,3]]]],[6236,6342,6410]]]]},{"k":"H5874","v":[["Endor",[3,3,[[5,1,1,0,1,[[203,1,1,0,1]]],[8,1,1,1,2,[[263,1,1,1,2]]],[18,1,1,2,3,[[560,1,1,2,3]]]],[6286,7949,15251]]]]},{"k":"H5875","v":[["Enhakkore",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6948]]]]},{"k":"H5876","v":[["Enhaddah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6342]]]]},{"k":"H5877","v":[["Enhazor",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6358]]]]},{"k":"H5878","v":[["*",[2,1,[[6,2,1,0,1,[[217,2,1,0,1]]]],[6695]]],["Harod",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6695]]],["well",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6695]]]]},{"k":"H5879","v":[["*",[3,3,[[0,2,2,0,2,[[37,2,2,0,2]]],[5,1,1,2,3,[[201,1,1,2,3]]]],[1133,1140,6236]]],["Enam",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6236]]],["open",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1133]]],["openly",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1140]]]]},{"k":"H5880","v":[["Enmishpat",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[343]]]]},{"k":"H5881","v":[["Enan",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3619,3687,3928,3933,4015]]]]},{"k":"H5882","v":[["Eneglaim",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21689]]]]},{"k":"H5883","v":[["Enrogel",[4,4,[[5,2,2,0,2,[[201,1,1,0,1],[204,1,1,1,2]]],[9,1,1,2,3,[[283,1,1,2,3]]],[10,1,1,3,4,[[291,1,1,3,4]]]],[6209,6309,8466,8726]]]]},{"k":"H5884","v":[["Enrimmon",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12617]]]]},{"k":"H5885","v":[["Enshemesh",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[204,1,1,1,2]]]],[6209,6310]]]]},{"k":"H5886","v":[]},{"k":"H5887","v":[["Entappuah",[1,1,[[5,1,1,0,1,[[203,1,1,0,1]]]],[6282]]]]},{"k":"H5888","v":[["*",[3,3,[[8,2,2,0,2,[[249,2,2,0,2]]],[23,1,1,2,3,[[748,1,1,2,3]]]],[7536,7539,19058]]],["faint",[2,2,[[8,2,2,0,2,[[249,2,2,0,2]]]],[7536,7539]]],["wearied",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19058]]]]},{"k":"H5889","v":[["*",[17,17,[[0,2,2,0,2,[[24,2,2,0,2]]],[4,1,1,2,3,[[177,1,1,2,3]]],[6,2,2,3,5,[[218,2,2,3,5]]],[9,2,2,5,7,[[282,1,1,5,6],[283,1,1,6,7]]],[17,1,1,7,8,[[457,1,1,7,8]]],[18,2,2,8,10,[[540,1,1,8,9],[620,1,1,9,10]]],[19,1,1,10,11,[[652,1,1,10,11]]],[22,5,5,11,16,[[683,1,1,11,12],[706,1,1,12,13],[707,1,1,13,14],[710,1,1,14,15],[724,1,1,15,16]]],[23,1,1,16,17,[[775,1,1,16,17]]]],[687,688,5565,6723,6724,8440,8478,13396,14840,16299,17138,17766,18176,18201,18261,18587,19716]]],["faint",[6,6,[[0,2,2,0,2,[[24,2,2,0,2]]],[4,1,1,2,3,[[177,1,1,2,3]]],[6,2,2,3,5,[[218,2,2,3,5]]],[22,1,1,5,6,[[707,1,1,5,6]]]],[687,688,5565,6723,6724,18201]]],["thirsty",[3,3,[[18,2,2,0,2,[[540,1,1,0,1],[620,1,1,1,2]]],[19,1,1,2,3,[[652,1,1,2,3]]]],[14840,16299,17138]]],["weary",[8,8,[[9,2,2,0,2,[[282,1,1,0,1],[283,1,1,1,2]]],[17,1,1,2,3,[[457,1,1,2,3]]],[22,4,4,3,7,[[683,1,1,3,4],[706,1,1,4,5],[710,1,1,5,6],[724,1,1,6,7]]],[23,1,1,7,8,[[775,1,1,7,8]]]],[8440,8478,13396,17766,18176,18261,18587,19716]]]]},{"k":"H5890","v":[["darkness",[2,2,[[17,1,1,0,1,[[445,1,1,0,1]]],[29,1,1,1,2,[[882,1,1,1,2]]]],[13108,22423]]]]},{"k":"H5891","v":[["Ephah",[5,5,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,3,3,1,4,[[338,1,1,1,2],[339,2,2,2,4]]],[22,1,1,4,5,[[738,1,1,4,5]]]],[662,10285,10352,10353,18827]]]]},{"k":"H5892","v":[["*",[1094,935,[[0,49,42,0,42,[[3,2,1,0,1],[9,2,2,1,3],[10,3,3,3,6],[12,1,1,6,7],[17,3,3,7,10],[18,12,10,10,20],[22,2,2,20,22],[23,3,3,22,25],[25,1,1,25,26],[27,1,1,26,27],[32,2,1,27,28],[33,7,5,28,33],[34,1,1,33,34],[35,3,3,34,37],[40,3,2,37,39],[43,2,2,39,41],[46,1,1,41,42]]],[1,3,3,42,45,[[50,1,1,42,43],[58,2,2,43,45]]],[2,14,12,45,57,[[103,4,4,45,49],[114,7,5,49,54],[115,3,3,54,57]]],[3,49,35,57,92,[[129,2,2,57,59],[136,1,1,59,60],[137,6,5,60,65],[138,1,1,65,66],[140,1,1,66,67],[147,1,1,67,68],[148,8,7,68,75],[151,29,17,75,92]]],[4,58,51,92,143,[[153,2,2,92,94],[154,5,4,94,98],[155,10,7,98,105],[156,2,2,105,107],[158,1,1,107,108],[161,1,1,108,109],[165,4,4,109,113],[171,7,7,113,120],[172,7,6,120,126],[173,8,7,126,133],[174,7,6,133,139],[177,1,1,139,140],[180,2,2,140,142],[186,1,1,142,143]]],[5,158,128,143,271,[[189,1,1,143,144],[192,16,13,144,157],[194,27,20,157,177],[195,2,1,177,178],[196,6,5,178,183],[197,5,5,183,188],[199,10,10,188,198],[200,2,2,198,200],[201,13,12,200,212],[202,2,1,212,213],[203,3,2,213,215],[204,5,5,215,220],[205,16,15,220,235],[206,9,4,235,239],[207,40,31,239,270],[210,1,1,270,271]]],[6,57,49,271,320,[[211,9,7,271,278],[213,1,1,278,279],[216,3,3,279,282],[218,3,3,282,285],[219,11,8,285,293],[220,1,1,293,294],[221,2,2,294,296],[222,1,1,296,297],[224,1,1,297,298],[226,2,2,298,300],[227,1,1,300,301],[228,4,3,301,304],[229,5,5,304,309],[230,12,10,309,319],[231,1,1,319,320]]],[7,4,4,320,324,[[232,1,1,320,321],[233,1,1,321,322],[234,1,1,322,323],[235,1,1,323,324]]],[8,38,32,324,356,[[236,1,1,324,325],[239,2,1,325,326],[240,4,3,326,329],[241,2,1,329,330],[242,1,1,330,331],[243,1,1,331,332],[244,9,8,332,340],[245,1,1,340,341],[250,1,1,341,342],[251,1,1,342,343],[253,1,1,343,344],[255,4,4,344,348],[257,1,1,348,349],[258,2,2,349,351],[262,2,1,351,352],[263,1,1,352,353],[265,3,2,353,355],[266,1,1,355,356]]],[9,45,43,356,399,[[268,2,2,356,358],[271,2,2,358,360],[272,3,3,360,363],[274,1,1,363,364],[276,3,3,364,367],[277,4,4,367,371],[278,7,6,371,377],[281,8,8,377,385],[283,4,3,385,388],[284,1,1,388,389],[285,2,2,389,391],[286,6,6,391,397],[290,2,2,397,399]]],[10,51,47,399,446,[[292,1,1,399,400],[293,1,1,400,401],[294,1,1,401,402],[298,4,4,402,406],[299,8,6,406,412],[300,1,1,412,413],[301,4,4,413,417],[302,1,1,417,418],[303,3,3,418,421],[304,4,4,421,425],[305,4,4,425,429],[306,3,3,429,432],[307,1,1,432,433],[310,6,5,433,438],[311,5,4,438,442],[312,4,4,442,446]]],[11,65,52,446,498,[[314,3,2,446,448],[315,3,2,448,450],[318,3,3,450,453],[319,5,3,453,456],[320,1,1,456,457],[321,2,2,457,459],[322,4,4,459,463],[323,1,1,463,464],[324,1,1,464,465],[325,2,1,465,466],[326,1,1,466,467],[327,2,2,467,469],[328,1,1,469,470],[329,7,5,470,475],[330,4,4,475,479],[331,5,5,479,484],[332,3,2,484,486],[335,7,5,486,491],[336,2,2,491,493],[337,8,5,493,498]]],[12,37,35,498,533,[[338,3,3,498,501],[339,2,2,501,503],[341,3,3,503,506],[343,11,10,506,516],[346,1,1,516,517],[347,1,1,517,518],[348,4,3,518,521],[350,2,2,521,523],[352,2,2,523,525],[355,1,1,525,526],[356,4,4,526,530],[357,2,2,530,532],[364,1,1,532,533]]],[13,88,73,533,606,[[367,1,1,533,534],[371,1,1,534,535],[372,3,3,535,538],[374,7,5,538,543],[375,2,2,543,545],[376,1,1,545,546],[377,5,4,546,550],[378,3,3,550,553],[379,1,1,553,554],[380,6,5,554,559],[381,3,2,559,561],[382,3,2,561,563],[383,7,6,563,569],[384,1,1,569,570],[385,4,2,570,572],[386,1,1,572,573],[387,3,3,573,576],[389,2,2,576,578],[390,3,3,578,581],[391,2,2,581,583],[392,1,1,583,584],[393,2,2,584,586],[394,4,3,586,589],[395,1,1,589,590],[396,2,1,590,591],[397,7,4,591,595],[398,7,7,595,602],[399,3,2,602,604],[400,2,2,604,606]]],[14,7,4,606,610,[[404,3,2,606,608],[405,1,1,608,609],[412,3,1,609,610]]],[15,21,18,610,628,[[414,3,3,610,613],[415,1,1,613,614],[419,4,3,614,617],[420,1,1,617,618],[421,1,1,618,619],[422,1,1,619,620],[423,7,5,620,625],[424,2,2,625,627],[425,1,1,627,628]]],[16,14,11,628,639,[[428,1,1,628,629],[429,2,2,629,631],[431,2,2,631,633],[433,5,3,633,636],[434,4,3,636,639]]],[17,2,2,639,641,[[450,1,1,639,640],[459,1,1,640,641]]],[18,20,19,641,660,[[486,1,1,641,642],[508,1,1,642,643],[523,1,1,643,644],[525,3,2,644,646],[532,1,1,646,647],[536,2,2,647,649],[537,1,1,649,650],[546,1,1,650,651],[549,1,1,651,652],[564,1,1,652,653],[578,1,1,653,654],[584,3,3,654,657],[585,1,1,657,658],[599,1,1,658,659],[604,1,1,659,660]]],[19,4,4,660,664,[[628,1,1,660,661],[643,1,1,661,662],[648,1,1,662,663],[652,1,1,663,664]]],[20,5,5,664,669,[[665,1,1,664,665],[666,1,1,665,666],[667,2,2,666,668],[668,1,1,668,669]]],[21,3,3,669,672,[[673,2,2,669,671],[675,1,1,671,672]]],[22,46,42,672,714,[[679,3,3,672,675],[684,1,1,675,676],[692,3,3,676,679],[695,3,3,679,682],[697,4,2,682,684],[700,2,2,684,686],[701,1,1,686,687],[702,1,1,687,688],[703,2,1,688,689],[704,1,1,689,690],[705,1,1,690,691],[710,2,2,691,693],[711,1,1,693,694],[714,2,2,694,696],[715,5,5,696,701],[716,2,1,701,702],[718,1,1,702,703],[720,1,1,703,704],[722,1,1,704,705],[723,1,1,705,706],[726,1,1,706,707],[730,1,1,707,708],[732,1,1,708,709],[738,1,1,709,710],[739,1,1,710,711],[740,1,1,711,712],[742,1,1,712,713],[744,1,1,713,714]]],[23,138,118,714,832,[[745,2,2,714,716],[746,2,2,716,718],[747,1,1,718,719],[748,6,5,719,724],[749,2,2,724,726],[750,1,1,726,727],[751,2,2,727,729],[752,2,2,729,731],[753,1,1,731,732],[754,1,1,732,733],[755,3,3,733,736],[757,1,1,736,737],[758,1,1,737,738],[759,1,1,738,739],[761,4,3,739,742],[763,5,4,742,746],[764,2,2,746,748],[765,5,5,748,753],[766,3,2,753,755],[767,1,1,755,756],[769,2,2,756,758],[770,7,7,758,765],[771,2,2,765,767],[773,2,2,767,769],[774,1,1,769,770],[775,4,4,770,774],[776,13,8,774,782],[777,8,5,782,787],[778,7,4,787,791],[780,2,2,791,793],[781,3,3,793,796],[782,7,7,796,803],[783,4,4,803,807],[784,2,2,807,809],[785,1,1,809,810],[788,4,4,810,814],[790,1,1,814,815],[791,1,1,815,816],[792,6,5,816,821],[793,3,3,821,824],[794,1,1,824,825],[795,2,2,825,827],[796,9,5,827,832]]],[24,6,6,832,838,[[797,2,2,832,834],[798,2,2,834,836],[799,1,1,836,837],[801,1,1,837,838]]],[25,61,54,838,892,[[805,2,2,838,840],[806,1,1,840,841],[807,1,1,841,842],[808,2,2,842,844],[810,5,5,844,849],[811,1,1,849,850],[812,4,3,850,853],[813,1,1,853,854],[818,1,1,854,855],[820,1,1,855,856],[822,1,1,856,857],[823,2,2,857,859],[825,2,2,859,861],[826,2,1,861,862],[827,4,3,862,865],[830,2,1,865,866],[831,2,1,866,867],[834,1,1,867,868],[836,2,2,868,870],[837,5,5,870,875],[840,2,2,875,877],[841,2,2,877,879],[844,1,1,879,880],[846,3,2,880,882],[849,11,10,882,892]]],[26,6,6,892,898,[[858,5,5,892,897],[860,1,1,897,898]]],[27,5,4,898,902,[[869,2,1,898,899],[872,2,2,899,901],[874,1,1,901,902]]],[28,1,1,902,903,[[877,1,1,902,903]]],[29,11,8,903,911,[[881,2,1,903,904],[882,5,3,904,907],[883,1,1,907,908],[884,1,1,908,909],[885,1,1,909,910],[887,1,1,910,911]]],[30,1,1,911,912,[[888,1,1,911,912]]],[31,8,6,912,918,[[889,1,1,912,913],[891,3,3,913,916],[892,4,2,916,918]]],[32,4,4,918,922,[[897,2,2,918,920],[898,1,1,920,921],[899,1,1,921,922]]],[33,1,1,922,923,[[902,1,1,922,923]]],[34,1,1,923,924,[[904,1,1,923,924]]],[35,4,4,924,928,[[906,1,1,924,925],[907,1,1,925,926],[908,2,2,926,928]]],[37,9,7,928,935,[[911,2,2,928,930],[917,1,1,930,931],[918,3,3,931,934],[924,3,1,934,935]]]],[96,245,246,270,271,274,330,448,450,452,461,469,471,472,473,477,478,479,482,486,581,589,601,602,604,725,792,978,1000,1004,1005,1007,1008,1016,1072,1075,1079,1230,1243,1328,1337,1441,1543,1771,1775,3151,3152,3156,3164,3498,3499,3501,3502,3503,3549,3555,3557,4094,4103,4327,4342,4343,4365,4366,4367,4411,4465,4674,4734,4735,4742,4744,4751,4754,4756,4847,4848,4849,4850,4851,4852,4853,4856,4857,4858,4859,4860,4870,4871,4872,4873,4877,4914,4920,4972,4973,4974,4975,4979,4980,4981,4982,4985,4987,4994,5045,5046,5096,5158,5284,5285,5287,5288,5407,5408,5411,5413,5415,5417,5418,5437,5441,5442,5443,5446,5447,5449,5450,5451,5453,5466,5467,5468,5485,5487,5488,5491,5493,5494,5555,5614,5627,5842,5909,5952,5953,5954,5956,5960,5963,5964,5965,5966,5969,5970,5973,5975,6003,6004,6006,6007,6008,6009,6010,6013,6014,6015,6016,6018,6019,6020,6021,6022,6023,6024,6029,6031,6054,6066,6083,6084,6101,6103,6119,6120,6121,6126,6128,6163,6164,6170,6171,6175,6177,6179,6182,6184,6185,6191,6199,6211,6223,6234,6238,6243,6246,6253,6256,6259,6261,6262,6264,6274,6284,6287,6302,6307,6314,6317,6321,6327,6328,6329,6336,6337,6343,6344,6350,6351,6352,6356,6359,6360,6369,6371,6374,6376,6378,6381,6383,6384,6385,6386,6387,6388,6389,6390,6393,6394,6397,6399,6400,6401,6402,6403,6405,6406,6407,6408,6410,6412,6413,6414,6416,6418,6419,6420,6421,6422,6423,6489,6517,6525,6526,6532,6533,6534,6535,6581,6681,6682,6684,6735,6736,6746,6784,6785,6787,6789,6797,6798,6799,6805,6815,6855,6862,6876,6927,6951,6952,6988,7020,7021,7022,7035,7036,7039,7041,7046,7065,7068,7069,7085,7086,7091,7092,7094,7096,7102,7125,7146,7167,7187,7192,7215,7310,7328,7330,7331,7349,7366,7391,7397,7401,7402,7403,7404,7405,7416,7418,7423,7565,7599,7682,7736,7759,7770,7772,7806,7817,7820,7935,7945,7981,8007,8016,8050,8052,8139,8141,8167,8169,8173,8217,8243,8252,8254,8275,8276,8279,8284,8287,8312,8313,8314,8316,8317,8391,8401,8403,8413,8414,8416,8423,8426,8462,8466,8472,8481,8514,8548,8560,8569,8570,8573,8575,8576,8697,8699,8780,8817,8857,8986,9001,9029,9033,9062,9063,9064,9067,9070,9075,9105,9135,9140,9144,9151,9168,9209,9213,9216,9229,9230,9239,9249,9257,9269,9272,9273,9287,9301,9307,9327,9410,9420,9427,9438,9442,9459,9462,9464,9475,9506,9516,9519,9530,9570,9574,9595,9601,9688,9689,9693,9711,9717,9719,9751,9771,9784,9795,9798,9799,9818,9849,9871,9896,9916,9932,9963,9983,9989,9992,10007,10009,10012,10032,10035,10037,10054,10074,10086,10093,10094,10095,10104,10118,10170,10173,10182,10184,10192,10212,10213,10224,10225,10226,10233,10241,10295,10298,10302,10328,10329,10416,10417,10418,10510,10511,10514,10515,10516,10517,10518,10519,10520,10521,10617,10666,10678,10680,10681,10762,10773,10792,10820,10898,10914,10916,10920,10922,10928,10929,11134,11208,11270,11287,11316,11320,11348,11350,11351,11352,11357,11389,11395,11412,11419,11424,11426,11437,11441,11450,11453,11472,11476,11480,11481,11482,11489,11496,11498,11513,11523,11525,11530,11532,11535,11536,11542,11567,11581,11586,11591,11625,11627,11644,11658,11677,11682,11693,11702,11717,11732,11738,11759,11764,11782,11789,11791,11811,11837,11855,11860,11869,11873,11876,11878,11880,11881,11893,11904,11905,11922,11923,11939,11941,12028,12097,12098,12266,12310,12312,12315,12342,12424,12426,12493,12508,12536,12586,12589,12591,12597,12606,12608,12661,12668,12689,12762,12763,12768,12802,12804,12828,12832,12834,12836,12853,12862,13231,13448,14027,14352,14618,14635,14642,14741,14796,14804,14816,14970,15016,15304,15521,15703,15706,15735,15752,16092,16122,16421,16872,17006,17141,17448,17468,17489,17490,17508,17573,17574,17605,17661,17662,17680,17780,17945,17949,17959,17984,17985,17992,18006,18022,18054,18061,18093,18107,18120,18131,18161,18273,18278,18287,18331,18345,18365,18378,18385,18386,18387,18396,18429,18491,18559,18574,18616,18697,18726,18835,18847,18866,18895,18928,18961,18964,18980,18993,19016,19032,19034,19043,19053,19056,19064,19075,19095,19136,19153,19167,19169,19186,19223,19232,19238,19239,19285,19311,19323,19381,19382,19383,19415,19418,19419,19422,19427,19438,19444,19446,19447,19449,19450,19460,19462,19523,19552,19563,19574,19578,19581,19583,19584,19587,19592,19613,19615,19642,19651,19685,19712,19714,19715,19729,19734,19755,19756,19759,19760,19762,19767,19775,19779,19780,19785,19787,19788,19802,19803,19808,19823,19848,19851,19882,19884,19895,19897,19898,19899,19904,19912,19913,19918,19925,19927,19932,19939,19946,19951,19964,20012,20016,20027,20031,20053,20075,20088,20089,20095,20104,20108,20128,20140,20152,20198,20243,20255,20281,20282,20283,20291,20301,20311,20329,20344,20347,20405,20453,20530,20532,20548,20569,20592,20600,20623,20626,20627,20629,20631,20635,20657,20661,20678,20700,20829,20888,20963,20978,20979,21062,21065,21092,21110,21117,21119,21195,21211,21301,21348,21353,21363,21369,21392,21394,21397,21457,21464,21478,21479,21575,21636,21637,21717,21719,21720,21721,21722,21723,21724,21732,21733,21737,22004,22006,22007,22012,22014,22051,22208,22246,22249,22276,22320,22401,22416,22417,22418,22426,22458,22481,22509,22530,22533,22560,22561,22562,22573,22579,22644,22647,22657,22676,22713,22760,22803,22820,22821,22826,22890,22895,22969,22979,22981,22996,23070]]],["+",[60,50,[[1,1,1,0,1,[[50,1,1,0,1]]],[3,2,2,1,3,[[140,1,1,1,2],[151,1,1,2,3]]],[4,3,3,3,6,[[155,1,1,3,4],[172,2,2,4,6]]],[5,4,3,6,9,[[192,1,1,6,7],[206,1,1,7,8],[207,2,1,8,9]]],[6,5,5,9,14,[[211,1,1,9,10],[227,1,1,10,11],[230,3,3,11,14]]],[8,2,2,14,16,[[236,1,1,14,15],[241,1,1,15,16]]],[9,1,1,16,17,[[284,1,1,16,17]]],[10,2,2,17,19,[[298,1,1,17,18],[299,1,1,18,19]]],[11,2,2,19,21,[[335,2,2,19,21]]],[12,1,1,21,22,[[356,1,1,21,22]]],[13,9,6,22,28,[[371,1,1,22,23],[374,1,1,23,24],[377,2,1,24,25],[394,2,1,25,26],[396,1,1,26,27],[397,2,1,27,28]]],[14,2,1,28,29,[[412,2,1,28,29]]],[15,1,1,29,30,[[415,1,1,29,30]]],[16,6,3,30,33,[[433,4,2,30,32],[434,2,1,32,33]]],[17,1,1,33,34,[[459,1,1,33,34]]],[18,2,2,34,36,[[549,1,1,34,35],[578,1,1,35,36]]],[22,5,4,36,40,[[695,1,1,36,37],[703,2,1,37,38],[726,1,1,38,39],[744,1,1,39,40]]],[23,8,8,40,48,[[747,1,1,40,41],[751,1,1,41,42],[761,1,1,42,43],[763,1,1,43,44],[777,1,1,44,45],[780,2,2,45,47],[796,1,1,47,48]]],[25,2,1,48,49,[[826,2,1,48,49]]],[26,1,1,49,50,[[858,1,1,49,50]]]],[1543,4465,4853,4980,5442,5443,5975,6376,6423,6525,6988,7069,7096,7102,7215,7349,8481,8986,9075,10173,10192,10914,11270,11357,11426,11789,11837,11873,12266,12342,12828,12834,12862,13448,15016,15521,17984,18120,18616,18928,19016,19153,19383,19422,19780,19848,19851,20283,21092,22004]]],["cities",[406,357,[[0,9,7,0,7,[[12,1,1,0,1],[18,4,2,1,3],[34,1,1,3,4],[40,2,2,4,6],[46,1,1,6,7]]],[2,7,6,7,13,[[114,4,3,7,10],[115,3,3,10,13]]],[3,35,25,13,38,[[129,2,2,13,15],[137,4,3,15,18],[147,1,1,18,19],[148,8,7,19,26],[151,20,12,26,38]]],[4,26,24,38,62,[[153,2,2,38,40],[154,3,3,40,43],[155,8,6,43,49],[156,2,2,49,51],[158,1,1,51,52],[161,1,1,52,53],[165,1,1,53,54],[171,6,6,54,60],[172,1,1,60,61],[173,1,1,61,62]]],[5,90,82,62,144,[[195,2,1,62,63],[196,5,5,63,68],[197,4,4,68,72],[199,8,8,72,80],[200,2,2,80,82],[201,12,12,82,94],[202,2,1,94,95],[203,3,2,95,97],[204,4,4,97,101],[205,13,13,101,114],[206,2,2,114,116],[207,32,27,116,143],[210,1,1,143,144]]],[6,7,7,144,151,[[220,1,1,144,145],[221,2,2,145,147],[222,1,1,147,148],[230,2,2,148,150],[231,1,1,150,151]]],[8,6,5,151,156,[[241,1,1,151,152],[242,1,1,152,153],[253,1,1,153,154],[265,2,1,154,155],[266,1,1,155,156]]],[9,7,7,156,163,[[268,2,2,156,158],[274,1,1,158,159],[276,1,1,159,160],[278,1,1,160,161],[286,1,1,161,162],[290,1,1,162,163]]],[10,14,12,163,175,[[294,1,1,163,164],[299,6,4,164,168],[300,1,1,168,169],[302,1,1,169,170],[303,1,1,170,171],[305,2,2,171,173],[310,1,1,173,174],[312,1,1,174,175]]],[11,14,12,175,187,[[315,1,1,175,176],[325,2,1,176,177],[329,6,5,177,182],[330,2,2,182,184],[331,1,1,184,185],[335,2,2,185,187]]],[12,22,21,187,208,[[339,2,2,187,189],[341,3,3,189,192],[343,10,9,192,201],[346,1,1,201,202],[347,1,1,202,203],[350,1,1,203,204],[355,1,1,204,205],[356,1,1,205,206],[357,1,1,206,207],[364,1,1,207,208]]],[13,47,41,208,249,[[367,1,1,208,209],[374,6,4,209,213],[375,1,1,213,214],[376,1,1,214,215],[377,2,2,215,217],[378,1,1,217,218],[379,1,1,218,219],[380,5,4,219,223],[381,1,1,223,224],[382,2,1,224,225],[383,7,6,225,231],[385,2,2,231,233],[386,1,1,233,234],[387,1,1,234,235],[389,1,1,235,236],[390,1,1,236,237],[391,1,1,237,238],[392,1,1,238,239],[393,1,1,239,240],[394,1,1,240,241],[397,5,4,241,245],[398,2,2,245,247],[399,1,1,247,248],[400,1,1,248,249]]],[14,4,3,249,252,[[404,2,1,249,250],[405,1,1,250,251],[412,1,1,251,252]]],[15,10,8,252,260,[[419,2,1,252,253],[420,1,1,253,254],[421,1,1,254,255],[422,1,1,255,256],[423,4,3,256,259],[424,1,1,259,260]]],[16,1,1,260,261,[[434,1,1,260,261]]],[17,1,1,261,262,[[450,1,1,261,262]]],[18,2,2,262,264,[[486,1,1,262,263],[546,1,1,263,264]]],[22,16,16,264,280,[[679,1,1,264,265],[684,1,1,265,266],[692,2,2,266,268],[695,2,2,268,270],[697,1,1,270,271],[711,1,1,271,272],[714,1,1,272,273],[715,1,1,273,274],[718,1,1,274,275],[720,1,1,275,276],[722,1,1,276,277],[732,1,1,277,278],[739,1,1,278,279],[742,1,1,279,280]]],[23,53,45,280,325,[[745,1,1,280,281],[746,2,2,281,283],[748,4,4,283,287],[749,2,2,287,289],[751,1,1,289,290],[752,1,1,290,291],[753,1,1,291,292],[754,1,1,292,293],[755,3,3,293,296],[757,1,1,296,297],[764,1,1,297,298],[766,1,1,298,299],[769,1,1,299,300],[770,1,1,300,301],[775,3,3,301,304],[776,4,1,304,305],[777,6,3,305,308],[778,5,3,308,311],[784,2,2,311,313],[788,4,4,313,317],[792,4,4,317,321],[793,2,2,321,323],[794,1,1,323,324],[795,1,1,324,325]]],[24,1,1,325,326,[[801,1,1,325,326]]],[25,16,14,326,340,[[807,1,1,326,327],[813,1,1,327,328],[820,1,1,328,329],[827,1,1,329,330],[830,2,1,330,331],[831,2,1,331,332],[836,2,2,332,334],[837,5,5,334,339],[840,1,1,339,340]]],[26,1,1,340,341,[[860,1,1,340,341]]],[27,4,3,341,344,[[869,2,1,341,342],[872,1,1,342,343],[874,1,1,343,344]]],[29,3,3,344,347,[[882,2,2,344,346],[887,1,1,346,347]]],[30,1,1,347,348,[[888,1,1,347,348]]],[32,3,3,348,351,[[897,2,2,348,350],[899,1,1,350,351]]],[35,2,2,351,353,[[906,1,1,351,352],[908,1,1,352,353]]],[37,4,4,353,357,[[911,2,2,353,355],[917,1,1,355,356],[918,1,1,356,357]]]],[330,482,486,1016,1230,1243,1441,3501,3502,3503,3549,3555,3557,4094,4103,4342,4343,4365,4674,4734,4735,4742,4744,4751,4754,4756,4847,4848,4849,4850,4851,4852,4853,4856,4857,4858,4859,4860,4914,4920,4972,4973,4975,4979,4980,4982,4985,4987,4994,5045,5046,5096,5158,5284,5407,5408,5411,5413,5415,5417,5442,5449,6054,6066,6083,6084,6101,6103,6119,6120,6121,6128,6164,6171,6175,6177,6179,6182,6184,6185,6191,6199,6211,6223,6234,6238,6243,6246,6253,6256,6259,6261,6262,6264,6274,6284,6287,6302,6314,6317,6321,6327,6328,6329,6336,6337,6343,6344,6351,6352,6356,6359,6360,6369,6374,6381,6383,6384,6385,6386,6387,6388,6389,6390,6397,6399,6400,6401,6403,6405,6406,6407,6408,6410,6412,6413,6414,6416,6418,6420,6421,6422,6423,6489,6815,6855,6862,6876,7068,7102,7125,7349,7366,7682,8007,8016,8050,8052,8217,8252,8317,8560,8699,8857,9062,9063,9064,9070,9105,9168,9216,9269,9272,9442,9519,9601,9896,9989,9992,10007,10009,10012,10035,10037,10086,10170,10184,10328,10329,10416,10417,10418,10511,10514,10515,10516,10517,10518,10519,10520,10521,10617,10666,10762,10898,10920,10929,11134,11208,11348,11350,11351,11352,11389,11412,11419,11424,11441,11472,11480,11481,11482,11489,11498,11513,11525,11530,11532,11535,11536,11542,11581,11586,11591,11627,11658,11682,11717,11738,11759,11782,11855,11860,11869,11873,11876,11904,11922,11939,12097,12098,12266,12493,12508,12536,12586,12589,12591,12608,12668,12836,13231,14027,14970,17661,17780,17945,17949,17985,17992,18022,18287,18331,18378,18429,18491,18559,18726,18847,18895,18961,18980,18993,19032,19034,19043,19053,19064,19075,19136,19167,19186,19223,19232,19238,19239,19285,19438,19460,19552,19574,19712,19714,19715,19775,19785,19787,19788,19802,19808,19823,19946,19951,20012,20016,20027,20031,20089,20095,20104,20108,20128,20140,20198,20255,20453,20569,20700,20888,21119,21195,21211,21348,21353,21363,21369,21392,21394,21397,21457,22051,22208,22246,22276,22416,22418,22509,22530,22644,22647,22676,22803,22826,22890,22895,22969,22996]]],["city",[623,554,[[0,40,36,0,36,[[3,2,1,0,1],[9,2,2,1,3],[10,3,3,3,6],[17,3,3,6,9],[18,8,8,9,17],[22,2,2,17,19],[23,3,3,19,22],[25,1,1,22,23],[27,1,1,23,24],[32,2,1,24,25],[33,7,5,25,30],[35,3,3,30,33],[40,1,1,33,34],[43,2,2,34,36]]],[1,2,2,36,38,[[58,2,2,36,38]]],[2,7,7,38,45,[[103,4,4,38,42],[114,3,3,42,45]]],[3,12,11,45,56,[[136,1,1,45,46],[137,2,2,46,48],[138,1,1,48,49],[151,8,7,49,56]]],[4,29,27,56,83,[[154,2,2,56,58],[155,1,1,58,59],[165,3,3,59,62],[171,1,1,62,63],[172,4,4,63,67],[173,7,6,67,73],[174,7,6,73,79],[177,1,1,79,80],[180,2,2,80,82],[186,1,1,82,83]]],[5,64,49,83,132,[[189,1,1,83,84],[192,15,12,84,96],[194,27,20,96,116],[196,1,1,116,117],[197,1,1,117,118],[199,2,2,118,120],[201,1,1,120,121],[204,1,1,121,122],[205,3,2,122,124],[206,6,2,124,126],[207,6,6,126,132]]],[6,45,38,132,170,[[211,8,6,132,138],[213,1,1,138,139],[216,3,3,139,142],[218,3,3,142,145],[219,11,8,145,153],[224,1,1,153,154],[226,2,2,154,156],[228,4,3,156,159],[229,5,5,159,164],[230,7,6,164,170]]],[7,4,4,170,174,[[232,1,1,170,171],[233,1,1,171,172],[234,1,1,172,173],[235,1,1,173,174]]],[8,27,24,174,198,[[239,2,1,174,175],[240,4,3,175,178],[243,1,1,178,179],[244,9,8,179,187],[245,1,1,187,188],[250,1,1,188,189],[255,4,4,189,193],[257,1,1,193,194],[258,1,1,194,195],[262,1,1,195,196],[263,1,1,196,197],[265,1,1,197,198]]],[9,37,35,198,233,[[271,2,2,198,200],[272,3,3,200,203],[276,2,2,203,205],[277,4,4,205,209],[278,6,5,209,214],[281,8,8,214,222],[283,4,3,222,225],[285,2,2,225,227],[286,5,5,227,232],[290,1,1,232,233]]],[10,35,33,233,266,[[292,1,1,233,234],[293,1,1,234,235],[298,3,3,235,238],[299,1,1,238,239],[301,4,4,239,243],[303,2,2,243,245],[304,4,4,245,249],[305,2,2,249,251],[306,3,3,251,254],[307,1,1,254,255],[310,5,4,255,259],[311,5,4,259,263],[312,3,3,263,266]]],[11,49,40,266,306,[[314,3,2,266,268],[315,2,1,268,269],[318,3,3,269,272],[319,5,3,272,275],[320,1,1,275,276],[321,2,2,276,278],[322,4,4,278,282],[323,1,1,282,283],[324,1,1,283,284],[326,1,1,284,285],[327,2,2,285,287],[328,1,1,287,288],[329,1,1,288,289],[330,2,2,289,291],[331,4,4,291,295],[332,3,2,295,297],[335,3,2,297,299],[336,2,2,299,301],[337,8,5,301,306]]],[12,14,13,306,319,[[338,3,3,306,309],[343,1,1,309,310],[348,4,3,310,313],[350,1,1,313,314],[352,2,2,314,316],[356,2,2,316,318],[357,1,1,318,319]]],[13,32,30,319,349,[[372,3,3,319,322],[375,1,1,322,323],[377,1,1,323,324],[378,2,2,324,326],[380,1,1,326,327],[381,2,1,327,328],[382,1,1,328,329],[384,1,1,329,330],[385,2,1,330,331],[387,2,2,331,333],[389,1,1,333,334],[390,2,2,334,336],[391,1,1,336,337],[393,1,1,337,338],[394,1,1,338,339],[395,1,1,339,340],[396,1,1,340,341],[398,5,5,341,346],[399,2,2,346,348],[400,1,1,348,349]]],[14,1,1,349,350,[[404,1,1,349,350]]],[15,10,10,350,360,[[414,3,3,350,353],[419,2,2,353,355],[423,3,3,355,358],[424,1,1,358,359],[425,1,1,359,360]]],[16,6,6,360,366,[[428,1,1,360,361],[429,2,2,361,363],[431,2,2,363,365],[433,1,1,365,366]]],[18,16,15,366,381,[[508,1,1,366,367],[523,1,1,367,368],[525,3,2,368,370],[532,1,1,370,371],[536,2,2,371,373],[537,1,1,373,374],[564,1,1,374,375],[584,3,3,375,378],[585,1,1,378,379],[599,1,1,379,380],[604,1,1,380,381]]],[19,4,4,381,385,[[628,1,1,381,382],[643,1,1,382,383],[648,1,1,383,384],[652,1,1,384,385]]],[20,5,5,385,390,[[665,1,1,385,386],[666,1,1,386,387],[667,2,2,387,389],[668,1,1,389,390]]],[21,3,3,390,393,[[673,2,2,390,392],[675,1,1,392,393]]],[22,25,23,393,416,[[679,2,2,393,395],[692,1,1,395,396],[697,3,2,396,398],[700,2,2,398,400],[701,1,1,400,401],[702,1,1,401,402],[704,1,1,402,403],[705,1,1,403,404],[710,2,2,404,406],[714,1,1,406,407],[715,4,4,407,411],[716,2,1,411,412],[723,1,1,412,413],[730,1,1,413,414],[738,1,1,414,415],[740,1,1,415,416]]],[23,77,68,416,484,[[745,1,1,416,417],[748,2,1,417,418],[750,1,1,418,419],[752,1,1,419,420],[758,1,1,420,421],[759,1,1,421,422],[761,3,2,422,424],[763,4,4,424,428],[764,1,1,428,429],[765,5,5,429,434],[766,2,1,434,435],[767,1,1,435,436],[769,1,1,436,437],[770,6,6,437,443],[771,2,2,443,445],[773,2,2,445,447],[774,1,1,447,448],[775,1,1,448,449],[776,9,7,449,456],[777,1,1,456,457],[778,2,2,457,459],[781,3,3,459,462],[782,7,7,462,469],[783,4,4,469,473],[785,1,1,473,474],[790,1,1,474,475],[791,1,1,475,476],[792,2,1,476,477],[793,1,1,477,478],[795,1,1,478,479],[796,8,5,479,484]]],[24,5,5,484,489,[[797,2,2,484,486],[798,2,2,486,488],[799,1,1,488,489]]],[25,43,40,489,529,[[805,2,2,489,491],[806,1,1,491,492],[808,2,2,492,494],[810,5,5,494,499],[811,1,1,499,500],[812,4,3,500,503],[818,1,1,503,504],[822,1,1,504,505],[823,2,2,505,507],[825,2,2,507,509],[827,3,3,509,512],[834,1,1,512,513],[840,1,1,513,514],[841,2,2,514,516],[844,1,1,516,517],[846,3,2,517,519],[849,11,10,519,529]]],[26,4,4,529,533,[[858,4,4,529,533]]],[27,1,1,533,534,[[872,1,1,533,534]]],[28,1,1,534,535,[[877,1,1,534,535]]],[29,8,6,535,541,[[881,2,1,535,536],[882,3,2,536,538],[883,1,1,538,539],[884,1,1,539,540],[885,1,1,540,541]]],[31,8,6,541,547,[[889,1,1,541,542],[891,3,3,542,545],[892,4,2,545,547]]],[32,1,1,547,548,[[898,1,1,547,548]]],[33,1,1,548,549,[[902,1,1,548,549]]],[35,2,2,549,551,[[907,1,1,549,550],[908,1,1,550,551]]],[37,5,3,551,554,[[918,2,2,551,553],[924,3,1,553,554]]]],[96,245,246,270,271,274,448,450,452,461,469,471,472,473,477,478,479,581,589,601,602,604,725,792,978,1000,1004,1005,1007,1008,1072,1075,1079,1243,1328,1337,1771,1775,3151,3152,3156,3164,3498,3499,3502,4327,4366,4367,4411,4849,4850,4870,4871,4872,4873,4877,4972,4974,4981,5285,5287,5288,5418,5437,5441,5446,5447,5450,5451,5453,5466,5467,5468,5485,5487,5488,5491,5493,5494,5555,5614,5627,5842,5909,5952,5953,5954,5956,5960,5963,5964,5965,5966,5969,5970,5973,6003,6004,6006,6007,6008,6009,6010,6013,6014,6015,6016,6018,6019,6020,6021,6022,6023,6024,6029,6031,6066,6126,6163,6170,6264,6307,6350,6371,6376,6378,6393,6394,6402,6408,6413,6419,6517,6526,6532,6533,6534,6535,6581,6681,6682,6684,6735,6736,6746,6784,6785,6787,6789,6797,6798,6799,6805,6927,6951,6952,7020,7021,7022,7035,7036,7039,7041,7046,7065,7085,7086,7091,7092,7094,7146,7167,7187,7192,7310,7328,7330,7331,7391,7397,7401,7402,7403,7404,7405,7416,7418,7423,7565,7736,7759,7770,7772,7806,7820,7935,7945,7981,8139,8141,8167,8169,8173,8243,8254,8275,8276,8279,8284,8287,8312,8313,8314,8316,8391,8401,8403,8413,8414,8416,8423,8426,8462,8466,8472,8514,8548,8569,8570,8573,8575,8576,8697,8780,8817,9001,9029,9033,9067,9135,9140,9144,9151,9209,9213,9229,9230,9239,9249,9257,9273,9287,9301,9307,9327,9410,9420,9427,9438,9459,9462,9464,9475,9506,9516,9530,9570,9574,9595,9688,9689,9693,9711,9717,9719,9751,9771,9784,9795,9798,9799,9818,9849,9871,9916,9932,9963,9983,9992,10032,10054,10074,10093,10094,10095,10104,10118,10173,10182,10212,10213,10224,10225,10226,10233,10241,10295,10298,10302,10510,10678,10680,10681,10773,10792,10820,10916,10922,10928,11287,11316,11320,11395,11437,11450,11453,11476,11496,11523,11567,11581,11625,11644,11677,11693,11702,11732,11764,11791,11811,11837,11878,11880,11881,11893,11905,11922,11923,11941,12028,12310,12312,12315,12424,12426,12589,12597,12606,12661,12689,12762,12763,12768,12802,12804,12832,14352,14618,14635,14642,14741,14796,14804,14816,15304,15703,15706,15735,15752,16092,16122,16421,16872,17006,17141,17448,17468,17489,17490,17508,17573,17574,17605,17662,17680,17959,18006,18022,18054,18061,18093,18107,18131,18161,18273,18278,18345,18365,18385,18386,18387,18396,18574,18697,18835,18866,18964,19056,19095,19169,19311,19323,19381,19382,19415,19418,19419,19422,19427,19444,19446,19447,19449,19450,19462,19523,19563,19578,19581,19583,19584,19587,19592,19613,19615,19642,19651,19685,19729,19734,19755,19756,19759,19760,19762,19767,19779,19803,19823,19882,19884,19895,19897,19898,19899,19904,19912,19913,19918,19925,19927,19932,19939,19964,20053,20075,20088,20152,20243,20281,20282,20283,20291,20301,20311,20329,20344,20347,20405,20530,20532,20548,20592,20600,20623,20626,20627,20629,20631,20635,20657,20661,20678,20829,20963,20978,20979,21062,21065,21110,21117,21119,21301,21464,21478,21479,21575,21636,21637,21717,21719,21720,21721,21722,21723,21724,21732,21733,21737,22006,22007,22012,22014,22249,22320,22401,22417,22418,22426,22458,22481,22533,22560,22561,22562,22573,22579,22657,22713,22820,22821,22979,22981,23070]]],["town",[4,4,[[8,3,3,0,3,[[251,1,1,0,1],[258,1,1,1,2],[262,1,1,2,3]]],[34,1,1,3,4,[[904,1,1,3,4]]]],[7599,7817,7935,22760]]],["towns",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12853]]]]},{"k":"H5893","v":[["Ir",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10547]]]]},{"k":"H5894","v":[["*",[3,3,[[26,3,3,0,3,[[853,3,3,0,3]]]],[21850,21854,21860]]],["watcher",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21850,21860]]],["watchers",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21854]]]]},{"k":"H5895","v":[["*",[8,8,[[0,2,2,0,2,[[31,1,1,0,1],[48,1,1,1,2]]],[6,2,2,2,4,[[220,1,1,2,3],[222,1,1,3,4]]],[17,1,1,4,5,[[446,1,1,4,5]]],[22,2,2,5,7,[[708,2,2,5,7]]],[37,1,1,7,8,[[919,1,1,7,8]]]],[943,1484,6815,6883,13120,18223,18241,23008]]],["asses",[2,2,[[22,2,2,0,2,[[708,2,2,0,2]]]],[18223,18241]]],["colt",[2,2,[[17,1,1,0,1,[[446,1,1,0,1]]],[37,1,1,1,2,[[919,1,1,1,2]]]],[13120,23008]]],["colts",[2,2,[[6,2,2,0,2,[[220,1,1,0,1],[222,1,1,1,2]]]],[6815,6883]]],["foal",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1484]]],["foals",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[943]]]]},{"k":"H5896","v":[["Ira",[6,6,[[9,3,3,0,3,[[286,1,1,0,1],[289,2,2,1,3]]],[12,3,3,3,6,[[348,2,2,3,5],[364,1,1,5,6]]]],[8580,8679,8691,10701,10713,11118]]]]},{"k":"H5897","v":[["Irad",[2,1,[[0,2,1,0,1,[[3,2,1,0,1]]]],[97]]]]},{"k":"H5898","v":[["Salt",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6264]]]]},{"k":"H5899","v":[["trees",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11779]]]]},{"k":"H5900","v":[["Iru",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10400]]]]},{"k":"H5901","v":[["Iri",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10542]]]]},{"k":"H5902","v":[["Iram",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1083,10306]]]]},{"k":"H5903","v":[["*",[10,10,[[0,3,3,0,3,[[2,3,3,0,3]]],[4,1,1,3,4,[[180,1,1,3,4]]],[25,6,6,4,10,[[817,3,3,4,7],[819,2,2,7,9],[824,1,1,9,10]]]],[62,65,66,5659,20769,20784,20801,20856,20865,21036]]],["naked",[9,9,[[0,3,3,0,3,[[2,3,3,0,3]]],[25,6,6,3,9,[[817,3,3,3,6],[819,2,2,6,8],[824,1,1,8,9]]]],[62,65,66,20769,20784,20801,20856,20865,21036]]],["nakedness",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5659]]]]},{"k":"H5904","v":[["Irnahash",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10397]]]]},{"k":"H5905","v":[["Irshemesh",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6362]]]]},{"k":"H5906","v":[["Arcturus",[2,2,[[17,2,2,0,2,[[444,1,1,0,1],[473,1,1,1,2]]]],[13060,13825]]]]},{"k":"H5907","v":[["Achbor",[7,7,[[0,2,2,0,2,[[35,2,2,0,2]]],[11,2,2,2,4,[[334,2,2,2,4]]],[12,1,1,4,5,[[338,1,1,4,5]]],[23,2,2,5,7,[[770,1,1,5,6],[780,1,1,6,7]]]],[1078,1079,10157,10159,10301,19594,19854]]]]},{"k":"H5908","v":[["spider's",[2,2,[[17,1,1,0,1,[[443,1,1,0,1]]],[22,1,1,1,2,[[737,1,1,1,2]]]],[13043,18805]]]]},{"k":"H5909","v":[["*",[6,6,[[2,1,1,0,1,[[100,1,1,0,1]]],[8,4,4,1,5,[[241,4,4,1,5]]],[22,1,1,5,6,[[744,1,1,5,6]]]],[3026,7335,7336,7342,7349,18939]]],["mice",[4,4,[[8,4,4,0,4,[[241,4,4,0,4]]]],[7335,7336,7342,7349]]],["mouse",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[22,1,1,1,2,[[744,1,1,1,2]]]],[3026,18939]]]]},{"k":"H5910","v":[["Accho",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6540]]]]},{"k":"H5911","v":[["Achor",[5,5,[[5,3,3,0,3,[[193,2,2,0,2],[201,1,1,2,3]]],[22,1,1,3,4,[[743,1,1,3,4]]],[27,1,1,4,5,[[863,1,1,4,5]]]],[6000,6002,6209,18907,22120]]]]},{"k":"H5912","v":[["Achan",[6,6,[[5,6,6,0,6,[[193,5,5,0,5],[208,1,1,5,6]]]],[5977,5994,5995,5996,6000,6446]]]]},{"k":"H5913","v":[["tinkling",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17723]]]]},{"k":"H5914","v":[["*",[2,2,[[19,1,1,0,1,[[634,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]]],[16597,17725]]],["ornaments",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17725]]],["stocks",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16597]]]]},{"k":"H5915","v":[["Achsah",[3,3,[[5,2,2,0,2,[[201,2,2,0,2]]],[12,1,1,2,3,[[339,1,1,2,3]]]],[6218,6219,10355]]]]},{"k":"H5916","v":[["*",[14,13,[[0,1,1,0,1,[[33,1,1,0,1]]],[5,3,2,1,3,[[192,1,1,1,2],[193,2,1,2,3]]],[6,1,1,3,4,[[221,1,1,3,4]]],[8,1,1,4,5,[[249,1,1,4,5]]],[10,2,2,5,7,[[308,2,2,5,7]]],[12,1,1,7,8,[[339,1,1,7,8]]],[18,1,1,8,9,[[516,1,1,8,9]]],[19,4,4,9,13,[[638,2,2,9,11],[642,2,2,11,13]]]],[1010,5967,6001,6864,7537,9358,9359,10313,14514,16705,16717,16813,16834]]],["+",[2,2,[[8,1,1,0,1,[[249,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]]],[7537,9359]]],["stirred",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14514]]],["trouble",[4,4,[[5,2,2,0,2,[[192,1,1,0,1],[193,1,1,1,2]]],[6,1,1,2,3,[[221,1,1,2,3]]],[19,1,1,3,4,[[642,1,1,3,4]]]],[5967,6001,6864,16813]]],["troubled",[2,2,[[0,1,1,0,1,[[33,1,1,0,1]]],[5,1,1,1,2,[[193,1,1,1,2]]]],[1010,6001]]],["troubler",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10313]]],["troubleth",[4,4,[[10,1,1,0,1,[[308,1,1,0,1]]],[19,3,3,1,4,[[638,2,2,1,3],[642,1,1,3,4]]]],[9358,16705,16717,16834]]]]},{"k":"H5917","v":[["Achar",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10313]]]]},{"k":"H5918","v":[["Ocran",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3617,3685,3922,3927,4014]]]]},{"k":"H5919","v":[["*",[3,3,[[6,2,2,0,2,[[211,2,2,0,2]]],[18,1,1,2,3,[[617,1,1,2,3]]]],[6521,6522,16266]]],["Achsah",[2,2,[[6,2,2,0,2,[[211,2,2,0,2]]]],[6521,6522]]],["adders'",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16266]]]]},{"k":"H5920","v":[["*",[6,6,[[0,2,2,0,2,[[26,1,1,0,1],[48,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[18,1,1,3,4,[[527,1,1,3,4]]],[27,2,2,4,6,[[868,1,1,4,5],[872,1,1,5,6]]]],[766,1498,8654,14672,22194,22247]]],["+",[3,3,[[0,2,2,0,2,[[26,1,1,0,1],[48,1,1,1,2]]],[18,1,1,2,3,[[527,1,1,2,3]]]],[766,1498,14672]]],["High",[2,2,[[27,2,2,0,2,[[868,1,1,0,1],[872,1,1,1,2]]]],[22194,22247]]],["high",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8654]]]]},{"k":"H5921","v":[["*",[5665,4437,[[0,302,248,0,248,[[0,12,10,0,10],[1,4,4,10,14],[2,1,1,14,15],[3,1,1,15,16],[5,4,4,16,20],[6,17,13,20,33],[7,11,10,33,43],[8,6,5,43,48],[9,1,1,48,49],[10,5,4,49,53],[11,2,2,53,55],[12,2,2,55,57],[13,2,2,57,59],[14,3,2,59,61],[15,5,4,61,65],[16,3,3,65,68],[17,8,6,68,74],[18,11,9,74,83],[19,6,5,83,88],[20,6,5,88,93],[21,4,4,93,97],[22,2,2,97,99],[23,18,14,99,113],[24,5,4,113,117],[25,7,7,117,124],[26,7,5,124,129],[27,5,4,129,133],[28,8,6,133,139],[29,6,6,139,145],[30,8,8,145,153],[31,5,4,153,157],[32,7,5,157,162],[33,5,5,162,167],[34,5,4,167,171],[36,5,3,171,174],[37,9,8,174,182],[38,2,2,182,184],[39,12,7,184,191],[40,18,15,191,206],[41,7,6,206,212],[42,6,4,212,216],[43,3,3,216,219],[44,6,4,219,223],[45,3,2,223,225],[46,5,5,225,230],[47,10,7,230,237],[48,7,5,237,242],[49,7,6,242,248]]],[1,373,272,248,520,[[50,4,4,248,252],[51,6,5,252,257],[52,6,4,257,261],[53,1,1,261,262],[54,7,6,262,268],[55,1,1,268,269],[56,8,4,269,273],[57,11,8,273,281],[58,10,4,281,285],[59,10,8,285,293],[60,3,2,293,295],[61,17,11,295,306],[62,3,3,306,309],[63,14,10,309,319],[64,6,6,319,325],[65,12,8,325,333],[66,8,7,333,340],[67,9,9,340,349],[68,5,5,349,354],[69,10,8,354,362],[70,5,4,362,366],[71,8,3,366,369],[72,4,4,369,373],[73,4,3,373,376],[74,13,10,376,386],[75,12,9,386,395],[76,5,4,395,399],[77,36,23,399,422],[78,32,18,422,440],[79,16,11,440,451],[80,1,1,451,452],[81,11,10,452,462],[82,6,6,462,468],[83,14,10,468,478],[85,4,3,478,481],[86,9,6,481,487],[87,4,4,487,491],[88,24,17,491,508],[89,14,12,508,520]]],[2,327,219,520,739,[[90,16,8,520,528],[91,10,7,528,535],[92,24,10,535,545],[93,30,22,545,567],[94,14,9,567,576],[95,19,10,576,586],[96,12,7,586,593],[97,34,19,593,612],[98,9,8,612,620],[99,7,7,620,627],[100,19,14,627,641],[101,3,3,641,644],[102,1,1,644,645],[103,37,19,645,664],[104,19,12,664,676],[105,24,17,676,693],[106,5,4,693,697],[107,2,2,697,699],[108,6,5,699,704],[110,3,3,704,707],[111,4,4,707,711],[112,4,3,711,714],[113,5,5,714,719],[114,3,3,719,722],[115,10,10,722,732],[116,7,7,732,739]]],[3,307,242,739,981,[[117,7,4,739,743],[118,7,7,743,750],[119,10,9,750,759],[120,24,16,759,775],[121,9,6,775,781],[122,13,11,781,792],[123,5,4,792,796],[124,8,6,796,802],[125,15,8,802,810],[126,20,19,810,829],[127,14,9,829,838],[128,4,4,838,842],[129,5,4,842,846],[130,14,10,846,856],[131,8,5,856,861],[132,26,18,861,879],[133,5,4,879,883],[134,6,6,883,889],[135,12,9,889,898],[136,6,5,898,903],[137,7,7,903,910],[138,5,5,910,915],[139,5,5,915,920],[140,3,2,920,922],[141,6,4,922,926],[142,6,4,926,930],[143,7,6,930,936],[144,5,5,936,941],[145,1,1,941,942],[146,14,10,942,952],[147,7,7,952,959],[148,1,1,959,960],[149,9,8,960,968],[150,2,2,968,970],[151,6,6,970,976],[152,5,5,976,981]]],[4,205,169,981,1150,[[153,1,1,981,982],[154,2,2,982,984],[155,2,2,984,986],[156,11,10,986,996],[157,6,5,996,1001],[158,4,4,1001,1005],[159,5,5,1005,1010],[160,4,3,1010,1013],[161,5,5,1013,1018],[162,4,3,1018,1021],[163,12,8,1021,1029],[164,9,7,1029,1036],[165,4,3,1036,1039],[166,1,1,1039,1040],[167,4,4,1040,1044],[168,2,1,1044,1045],[169,12,7,1045,1052],[170,1,1,1052,1053],[171,7,6,1053,1059],[172,7,6,1059,1065],[173,7,7,1065,1072],[174,10,6,1072,1078],[175,6,5,1078,1083],[176,7,5,1083,1088],[177,5,5,1088,1093],[178,2,2,1093,1095],[179,6,6,1095,1101],[180,21,18,1101,1119],[181,6,5,1119,1124],[182,7,5,1124,1129],[183,5,5,1129,1134],[184,12,9,1134,1143],[185,5,4,1143,1147],[186,3,3,1147,1150]]],[5,84,66,1150,1216,[[188,6,5,1150,1155],[189,2,2,1155,1157],[190,2,2,1157,1159],[191,4,3,1159,1162],[193,6,4,1162,1166],[194,5,3,1166,1169],[195,4,3,1169,1172],[196,16,11,1172,1183],[197,4,3,1183,1186],[198,1,1,1186,1187],[199,5,4,1187,1191],[200,2,2,1191,1193],[201,3,3,1193,1196],[203,1,1,1196,1197],[204,6,5,1197,1202],[205,3,3,1202,1205],[208,7,6,1205,1211],[209,6,4,1211,1215],[210,1,1,1215,1216]]],[6,128,103,1216,1319,[[211,1,1,1216,1217],[213,8,6,1217,1223],[214,2,2,1223,1225],[215,5,4,1225,1229],[216,15,13,1229,1242],[217,6,6,1242,1248],[218,2,2,1248,1250],[219,30,24,1250,1274],[220,1,1,1274,1275],[221,7,5,1275,1280],[222,2,2,1280,1282],[223,4,3,1282,1285],[224,4,4,1285,1289],[225,6,4,1289,1293],[226,18,11,1293,1304],[228,5,4,1304,1308],[229,7,7,1308,1315],[230,5,4,1315,1319]]],[7,13,11,1319,1330,[[232,1,1,1319,1320],[233,4,4,1320,1324],[234,4,3,1324,1327],[235,4,3,1327,1330]]],[8,167,147,1330,1477,[[236,6,5,1330,1335],[237,5,5,1335,1340],[239,7,6,1340,1346],[240,5,3,1346,1349],[241,7,5,1349,1354],[242,1,1,1354,1355],[243,4,4,1355,1359],[244,4,4,1359,1363],[245,6,5,1363,1368],[246,5,5,1368,1373],[247,6,5,1373,1378],[248,6,6,1378,1384],[249,9,8,1384,1392],[250,10,9,1392,1401],[251,3,3,1401,1404],[252,14,13,1404,1417],[253,2,2,1417,1419],[254,4,3,1419,1422],[255,7,7,1422,1429],[256,2,2,1429,1431],[257,9,7,1431,1438],[258,5,5,1438,1443],[259,5,5,1443,1448],[260,13,11,1448,1459],[261,6,5,1459,1464],[262,3,2,1464,1466],[263,3,3,1466,1469],[265,8,6,1469,1475],[266,2,2,1475,1477]]],[9,197,154,1477,1631,[[267,19,13,1477,1490],[268,16,10,1490,1500],[269,8,6,1500,1506],[270,4,4,1506,1510],[271,9,7,1510,1517],[272,6,5,1517,1522],[273,8,6,1522,1528],[274,3,3,1528,1531],[275,5,5,1531,1536],[276,1,1,1536,1537],[277,12,8,1537,1545],[278,8,6,1545,1551],[279,14,11,1551,1562],[280,11,9,1562,1571],[281,9,8,1571,1579],[282,3,3,1579,1582],[283,9,6,1582,1588],[284,11,11,1588,1599],[285,11,9,1599,1608],[286,12,8,1608,1616],[287,5,3,1616,1619],[288,5,4,1619,1623],[289,3,3,1623,1626],[290,5,5,1626,1631]]],[10,265,209,1631,1840,[[291,20,16,1631,1647],[292,16,13,1647,1660],[293,4,4,1660,1664],[294,13,8,1664,1672],[295,4,4,1672,1676],[296,11,7,1676,1683],[297,30,20,1683,1703],[298,14,14,1703,1717],[299,12,7,1717,1724],[300,6,5,1724,1729],[301,10,9,1729,1738],[302,12,10,1738,1748],[303,14,8,1748,1756],[304,10,9,1756,1765],[305,14,11,1765,1776],[306,21,18,1776,1794],[307,8,7,1794,1801],[308,13,10,1801,1811],[309,2,2,1811,1813],[310,11,10,1813,1823],[311,5,4,1823,1827],[312,15,13,1827,1840]]],[11,242,192,1840,2032,[[313,3,3,1840,1843],[314,7,6,1843,1849],[315,8,6,1849,1855],[316,14,10,1855,1865],[317,3,3,1865,1868],[318,8,7,1868,1875],[319,5,3,1875,1878],[320,6,5,1878,1883],[321,5,5,1883,1888],[322,13,11,1888,1899],[323,7,7,1899,1906],[324,8,7,1906,1913],[325,11,10,1913,1923],[326,7,6,1923,1929],[327,20,19,1929,1948],[328,13,9,1948,1957],[329,9,8,1957,1965],[330,22,13,1965,1978],[331,6,5,1978,1983],[332,5,4,1983,1987],[333,7,6,1987,1993],[334,13,8,1993,2001],[335,19,16,2001,2017],[336,8,5,2017,2022],[337,15,10,2022,2032]]],[12,170,140,2032,2172,[[342,3,3,2032,2035],[343,7,5,2035,2040],[344,2,2,2040,2042],[346,12,11,2042,2053],[347,4,4,2053,2057],[348,9,9,2057,2066],[349,12,11,2066,2077],[350,6,3,2077,2080],[351,6,6,2080,2086],[352,3,3,2086,2089],[353,3,3,2089,2092],[354,7,6,2092,2098],[355,5,5,2098,2103],[356,2,2,2103,2105],[357,2,1,2105,2106],[358,9,8,2106,2114],[359,7,7,2114,2121],[360,7,5,2121,2126],[362,6,3,2126,2129],[363,8,8,2129,2137],[364,29,22,2137,2159],[365,6,4,2159,2163],[366,15,9,2163,2172]]],[13,312,243,2172,2415,[[367,6,5,2172,2177],[368,4,4,2177,2181],[369,10,9,2181,2190],[370,7,5,2190,2195],[371,4,3,2195,2198],[372,10,9,2198,2207],[373,13,9,2207,2216],[374,6,5,2216,2221],[375,13,9,2221,2230],[376,8,7,2230,2237],[377,1,1,2237,2238],[378,3,3,2238,2241],[379,9,8,2241,2249],[380,3,2,2249,2251],[381,5,5,2251,2256],[382,9,7,2256,2263],[383,5,5,2263,2268],[384,9,8,2268,2276],[385,7,5,2276,2281],[386,18,17,2281,2298],[387,5,4,2298,2302],[388,2,2,2302,2304],[389,9,7,2304,2311],[390,12,10,2311,2321],[391,6,5,2321,2326],[392,14,9,2326,2335],[393,2,2,2335,2337],[394,11,8,2337,2345],[395,10,7,2345,2352],[396,8,7,2352,2359],[397,6,5,2359,2364],[398,24,17,2364,2381],[399,7,7,2381,2388],[400,20,11,2388,2399],[401,15,9,2399,2408],[402,11,7,2408,2415]]],[14,47,41,2415,2456,[[403,3,3,2415,2418],[404,2,2,2418,2420],[405,9,6,2420,2426],[406,3,3,2426,2429],[408,1,1,2429,2430],[409,5,4,2430,2434],[410,11,9,2434,2443],[411,5,5,2443,2448],[412,8,8,2448,2456]]],[15,118,87,2456,2543,[[413,4,2,2456,2458],[414,8,6,2458,2464],[415,16,11,2464,2475],[416,7,7,2475,2482],[417,8,6,2482,2488],[418,5,5,2488,2493],[419,2,2,2493,2495],[420,5,4,2495,2499],[421,17,15,2499,2514],[422,7,5,2514,2519],[423,7,5,2519,2524],[424,16,8,2524,2532],[425,16,11,2532,2543]]],[16,79,57,2543,2600,[[426,10,7,2543,2550],[427,4,4,2550,2554],[428,5,4,2554,2558],[429,8,6,2558,2564],[430,6,6,2564,2570],[431,6,5,2570,2575],[432,7,5,2575,2580],[433,8,7,2580,2587],[434,23,11,2587,2598],[435,2,2,2598,2600]]],[17,200,180,2600,2780,[[436,6,6,2600,2606],[437,4,3,2606,2609],[438,2,2,2609,2611],[439,2,2,2611,2613],[440,2,1,2613,2614],[441,6,5,2614,2619],[442,3,3,2619,2622],[443,5,5,2622,2627],[444,6,6,2627,2633],[445,3,3,2633,2636],[447,2,2,2636,2638],[448,6,6,2638,2644],[449,6,5,2644,2649],[450,1,1,2649,2650],[451,12,9,2650,2659],[452,4,3,2659,2662],[453,7,7,2662,2669],[454,9,8,2669,2677],[455,6,6,2677,2683],[456,8,7,2683,2690],[457,5,5,2690,2695],[458,2,2,2695,2697],[459,3,3,2697,2700],[460,1,1,2700,2701],[461,4,3,2701,2704],[462,5,4,2704,2708],[463,1,1,2708,2709],[464,5,5,2709,2714],[465,10,9,2714,2723],[466,8,7,2723,2730],[467,3,3,2730,2733],[468,7,6,2733,2739],[469,11,10,2739,2749],[471,8,6,2749,2755],[472,5,5,2755,2760],[473,6,6,2760,2766],[474,5,5,2766,2771],[476,6,6,2771,2777],[477,5,3,2777,2780]]],[18,295,264,2780,3044,[[478,2,2,2780,2782],[479,3,2,2782,2784],[480,3,3,2784,2787],[481,2,2,2787,2789],[482,1,1,2789,2790],[484,4,4,2790,2794],[485,1,1,2794,2795],[486,1,1,2795,2796],[487,3,3,2796,2799],[488,2,2,2799,2801],[490,2,2,2801,2803],[491,1,1,2803,2804],[492,3,2,2804,2806],[493,3,3,2806,2809],[494,1,1,2809,2810],[495,6,5,2810,2815],[496,1,1,2815,2816],[498,3,3,2816,2819],[499,4,4,2819,2823],[500,1,1,2823,2824],[501,2,1,2824,2825],[502,1,1,2825,2826],[504,4,3,2826,2829],[506,2,1,2829,2830],[508,5,5,2830,2835],[509,4,4,2835,2839],[510,1,1,2839,2840],[512,6,6,2840,2846],[513,2,1,2846,2847],[514,7,6,2847,2853],[515,2,2,2853,2855],[516,2,2,2855,2857],[517,4,4,2857,2861],[518,5,4,2861,2865],[519,7,6,2865,2871],[520,1,1,2871,2872],[521,2,2,2872,2874],[522,5,5,2874,2879],[523,1,1,2879,2880],[524,3,2,2880,2882],[525,2,2,2882,2884],[526,2,2,2884,2886],[527,3,3,2886,2889],[528,1,1,2889,2890],[529,1,1,2890,2891],[530,1,1,2891,2892],[531,1,1,2892,2893],[532,6,6,2893,2899],[533,3,3,2899,2902],[534,5,3,2902,2905],[536,1,1,2905,2906],[537,2,1,2906,2907],[538,1,1,2907,2908],[539,2,2,2908,2910],[540,2,2,2910,2912],[541,1,1,2912,2913],[543,1,1,2913,2914],[545,2,2,2914,2916],[546,5,5,2916,2921],[547,1,1,2921,2922],[548,1,1,2922,2923],[549,2,2,2923,2925],[551,1,1,2925,2926],[555,2,2,2926,2928],[556,3,2,2928,2930],[557,2,1,2930,2931],[558,3,3,2931,2934],[560,4,3,2934,2937],[563,2,2,2937,2939],[565,3,3,2939,2942],[566,4,4,2942,2946],[567,4,3,2946,2949],[568,2,2,2949,2951],[569,4,2,2951,2953],[571,4,4,2953,2957],[572,1,1,2957,2958],[573,1,1,2958,2959],[574,2,1,2959,2960],[576,2,2,2960,2962],[579,1,1,2962,2963],[580,6,4,2963,2967],[581,5,5,2967,2972],[582,3,3,2972,2975],[583,4,4,2975,2979],[584,1,1,2979,2980],[585,5,3,2980,2983],[586,5,4,2983,2987],[587,4,4,2987,2991],[590,2,1,2991,2992],[592,3,2,2992,2994],[593,2,2,2994,2996],[594,1,1,2996,2997],[596,13,13,2997,3010],[598,1,1,3010,3011],[601,3,3,3011,3014],[602,2,2,3014,3016],[605,1,1,3016,3017],[606,1,1,3017,3018],[608,1,1,3018,3019],[609,2,2,3019,3021],[610,4,2,3021,3023],[612,1,1,3023,3024],[613,1,1,3024,3025],[614,4,4,3025,3029],[615,3,2,3029,3031],[616,3,3,3031,3034],[617,1,1,3034,3035],[618,1,1,3035,3036],[619,2,2,3036,3038],[620,1,1,3038,3039],[622,1,1,3039,3040],[623,1,1,3040,3041],[625,2,2,3041,3043],[626,1,1,3043,3044]]],[19,70,62,3044,3106,[[628,1,1,3044,3045],[629,1,1,3045,3046],[630,3,2,3046,3048],[631,1,1,3048,3049],[632,1,1,3049,3050],[633,5,4,3050,3054],[634,4,3,3054,3057],[635,3,3,3057,3060],[636,2,2,3060,3062],[637,1,1,3062,3063],[640,1,1,3063,3064],[641,2,2,3064,3066],[643,5,5,3066,3071],[644,3,2,3071,3073],[646,3,3,3073,3076],[647,2,2,3076,3078],[648,2,2,3078,3080],[649,2,2,3080,3082],[650,1,1,3082,3083],[651,5,4,3083,3087],[652,7,6,3087,3093],[653,4,3,3093,3096],[654,1,1,3096,3097],[655,3,3,3097,3100],[656,3,2,3100,3102],[657,2,2,3102,3104],[658,2,2,3104,3106]]],[20,37,31,3106,3137,[[659,5,4,3106,3110],[660,2,2,3110,3112],[661,3,3,3112,3115],[663,7,3,3115,3118],[664,1,1,3118,3119],[665,2,2,3119,3121],[666,5,5,3121,3126],[667,2,2,3126,3128],[668,3,2,3128,3130],[669,4,4,3130,3134],[670,3,3,3134,3137]]],[21,25,22,3137,3159,[[671,3,3,3137,3140],[672,4,3,3140,3143],[673,2,2,3143,3145],[674,1,1,3145,3146],[675,5,5,3146,3151],[677,4,4,3151,3155],[678,6,4,3155,3159]]],[22,332,241,3159,3400,[[679,4,4,3159,3163],[680,11,6,3163,3169],[682,3,1,3169,3170],[683,5,3,3170,3173],[684,4,3,3173,3176],[685,8,4,3176,3180],[686,4,2,3180,3182],[687,10,7,3182,3189],[688,15,10,3189,3199],[689,4,3,3199,3202],[691,7,6,3202,3208],[692,14,9,3208,3217],[693,7,5,3217,3222],[694,5,3,3222,3225],[695,2,2,3225,3227],[696,4,3,3227,3230],[697,7,6,3230,3236],[698,4,2,3236,3238],[699,3,2,3238,3240],[700,7,5,3240,3245],[701,3,3,3245,3248],[702,10,7,3248,3255],[703,5,3,3255,3258],[704,1,1,3258,3259],[705,3,3,3259,3262],[706,5,5,3262,3267],[707,8,6,3267,3273],[708,18,10,3273,3283],[709,11,4,3283,3287],[710,9,6,3287,3293],[712,7,5,3293,3298],[713,1,1,3298,3299],[714,14,10,3299,3309],[715,7,7,3309,3316],[716,6,6,3316,3322],[717,1,1,3322,3323],[718,3,3,3323,3326],[719,1,1,3326,3327],[720,5,4,3327,3331],[722,7,4,3331,3335],[723,4,3,3335,3338],[724,2,2,3338,3340],[725,9,6,3340,3346],[726,1,1,3346,3347],[727,4,4,3347,3351],[728,2,1,3351,3352],[729,1,1,3352,3353],[730,3,3,3353,3356],[731,3,3,3356,3359],[732,4,3,3359,3362],[734,4,4,3362,3366],[735,8,7,3366,3373],[736,2,1,3373,3374],[737,5,4,3374,3378],[738,7,6,3378,3384],[739,1,1,3384,3385],[740,4,3,3385,3388],[741,3,3,3388,3391],[742,1,1,3391,3392],[743,6,4,3392,3396],[744,5,4,3396,3400]]],[23,495,375,3400,3775,[[745,10,8,3400,3408],[746,7,7,3408,3415],[747,8,6,3415,3421],[748,7,5,3421,3426],[749,8,7,3426,3433],[750,17,15,3433,3448],[751,14,11,3448,3459],[752,6,5,3459,3464],[753,10,9,3464,3473],[754,5,4,3473,3477],[755,9,9,3477,3486],[756,8,5,3486,3491],[757,9,8,3491,3499],[758,5,5,3499,3504],[759,10,9,3504,3513],[760,19,10,3513,3523],[761,7,5,3523,3528],[762,17,12,3528,3540],[763,7,5,3540,3545],[764,2,2,3545,3547],[765,8,6,3547,3553],[766,17,12,3553,3565],[767,17,16,3565,3581],[768,3,2,3581,3583],[769,16,10,3583,3593],[770,9,6,3593,3599],[771,8,6,3599,3605],[772,7,7,3605,3612],[773,7,5,3612,3617],[774,9,7,3617,3624],[775,15,10,3624,3634],[776,16,11,3634,3645],[777,8,6,3645,3651],[778,8,6,3651,3657],[779,4,4,3657,3661],[780,22,12,3661,3673],[781,9,7,3673,3680],[782,1,1,3680,3681],[783,3,3,3681,3684],[784,3,2,3684,3686],[786,4,3,3686,3689],[787,1,1,3689,3690],[788,12,7,3690,3697],[789,5,4,3697,3701],[790,6,5,3701,3706],[791,1,1,3706,3707],[792,24,14,3707,3721],[793,13,11,3721,3732],[794,15,12,3732,3744],[795,26,23,3744,3767],[796,13,8,3767,3775]]],[24,38,36,3775,3811,[[797,9,9,3775,3784],[798,8,7,3784,3791],[799,11,11,3791,3802],[800,5,5,3802,3807],[801,5,4,3807,3811]]],[25,417,322,3811,4133,[[802,16,11,3811,3822],[803,2,2,3822,3824],[804,6,5,3824,3829],[805,15,9,3829,3838],[806,6,4,3838,3842],[807,3,3,3842,3845],[808,10,7,3845,3852],[809,3,3,3852,3855],[810,8,4,3855,3859],[811,10,7,3859,3866],[812,10,9,3866,3875],[813,4,4,3875,3879],[814,6,5,3879,3884],[815,11,8,3884,3892],[816,1,1,3892,3893],[817,24,16,3893,3909],[818,5,5,3909,3914],[819,6,5,3914,3919],[820,4,3,3919,3922],[821,6,6,3922,3928],[822,5,4,3928,3932],[823,7,7,3932,3939],[824,20,16,3939,3955],[825,9,7,3955,3962],[826,5,5,3962,3967],[827,11,6,3967,3973],[828,10,8,3973,3981],[829,12,10,3981,3991],[830,11,8,3991,3999],[831,2,2,3999,4001],[832,5,3,4001,4004],[833,17,12,4004,4016],[834,10,10,4016,4026],[835,5,4,4026,4030],[836,8,6,4030,4036],[837,17,13,4036,4049],[838,19,13,4049,4062],[839,18,13,4062,4075],[840,12,11,4075,4086],[841,4,3,4086,4089],[842,6,4,4089,4093],[843,2,2,4093,4095],[844,6,5,4095,4100],[845,10,7,4100,4107],[846,4,4,4107,4111],[847,4,3,4111,4114],[848,5,4,4114,4118],[849,17,15,4118,4133]]],[26,61,45,4133,4178,[[850,4,4,4133,4137],[851,1,1,4137,4138],[857,9,7,4138,4145],[858,18,10,4145,4155],[859,9,8,4155,4163],[860,19,14,4163,4177],[861,1,1,4177,4178]]],[27,45,37,4178,4215,[[862,1,1,4178,4179],[863,2,2,4179,4181],[865,6,4,4181,4185],[866,2,2,4185,4187],[867,1,1,4187,4188],[868,4,3,4188,4191],[869,2,1,4191,4192],[870,5,4,4192,4196],[871,11,8,4196,4204],[872,4,4,4204,4208],[873,4,4,4208,4212],[874,2,2,4212,4214],[875,1,1,4214,4215]]],[28,19,16,4215,4231,[[876,6,5,4215,4220],[877,9,8,4220,4228],[878,4,3,4228,4231]]],[29,78,48,4231,4279,[[879,17,7,4231,4238],[880,11,5,4238,4243],[881,11,6,4243,4249],[882,5,3,4249,4252],[883,8,7,4252,4259],[884,5,4,4259,4263],[885,10,8,4263,4271],[886,3,2,4271,4273],[887,8,6,4273,4279]]],[30,5,5,4279,4284,[[888,5,5,4279,4284]]],[31,23,17,4284,4301,[[889,8,7,4284,4291],[890,2,2,4291,4293],[891,3,2,4293,4295],[892,10,6,4295,4301]]],[32,34,28,4301,4329,[[893,5,5,4301,4306],[894,4,4,4306,4310],[895,11,6,4310,4316],[896,3,3,4316,4319],[897,6,5,4319,4324],[898,1,1,4324,4325],[899,4,4,4325,4329]]],[33,13,12,4329,4341,[[900,4,4,4329,4333],[901,2,2,4333,4335],[902,7,6,4335,4341]]],[34,19,14,4341,4355,[[903,5,4,4341,4345],[904,11,7,4345,4352],[905,3,3,4352,4355]]],[35,26,20,4355,4375,[[906,12,8,4355,4363],[907,9,8,4363,4371],[908,5,4,4371,4375]]],[36,13,4,4375,4379,[[909,13,4,4375,4379]]],[37,69,48,4379,4427,[[911,4,4,4379,4383],[912,2,2,4383,4385],[913,6,4,4385,4389],[914,9,5,4389,4394],[915,2,2,4394,4396],[916,3,2,4396,4398],[917,1,1,4398,4399],[919,7,6,4399,4405],[920,3,2,4405,4407],[921,5,4,4407,4411],[922,15,8,4411,4419],[923,3,1,4419,4420],[924,9,7,4420,4427]]],[38,15,10,4427,4437,[[925,2,2,4427,4429],[926,6,4,4429,4433],[927,4,2,4433,4435],[928,3,2,4435,4437]]]],[1,6,10,14,16,19,25,27,28,29,35,46,51,54,69,93,138,144,149,154,162,163,165,167,169,171,173,176,177,178,180,182,183,184,186,187,190,191,192,194,196,200,202,207,219,221,222,228,243,270,274,275,294,315,318,327,329,342,351,371,372,386,388,393,395,400,414,419,426,427,429,432,440,443,461,465,473,474,479,480,481,485,488,498,501,504,506,513,524,525,527,538,544,549,553,556,564,574,590,600,604,606,609,613,621,633,634,636,637,638,640,652,655,664,667,676,688,699,701,702,713,714,724,725,739,740,743,767,768,779,782,786,791,797,798,803,805,829,830,833,836,858,863,867,870,883,885,890,893,907,919,921,923,939,949,959,960,961,964,970,973,977,983,992,1005,1007,1010,1016,1024,1025,1031,1091,1106,1117,1131,1133,1138,1140,1145,1147,1148,1149,1153,1154,1174,1183,1185,1188,1189,1191,1193,1196,1198,1205,1208,1210,1212,1227,1228,1229,1235,1236,1237,1238,1240,1251,1258,1273,1276,1278,1288,1289,1297,1306,1308,1309,1325,1328,1345,1359,1372,1373,1379,1390,1415,1426,1440,1442,1446,1451,1453,1457,1458,1465,1468,1469,1473,1486,1490,1495,1499,1503,1507,1517,1519,1526,1527,1529,1540,1542,1543,1548,1557,1559,1560,1568,1569,1584,1591,1597,1601,1621,1635,1640,1641,1646,1649,1653,1681,1690,1700,1702,1704,1713,1715,1716,1717,1719,1722,1731,1732,1751,1761,1764,1765,1783,1789,1790,1791,1794,1798,1799,1805,1807,1811,1820,1823,1824,1825,1829,1839,1843,1845,1849,1850,1867,1876,1882,1883,1891,1892,1896,1898,1902,1905,1910,1915,1916,1919,1936,1939,1943,1944,1946,1947,1949,1950,1952,1954,1955,1961,1967,1976,1984,1986,1989,1990,1992,1995,1999,2007,2008,2010,2012,2013,2020,2021,2022,2024,2030,2037,2042,2044,2046,2054,2056,2062,2063,2071,2075,2076,2077,2091,2096,2099,2107,2116,2122,2138,2146,2157,2162,2173,2183,2185,2193,2206,2207,2209,2214,2215,2216,2217,2221,2225,2232,2239,2242,2245,2247,2248,2259,2267,2269,2270,2274,2276,2279,2293,2301,2302,2303,2304,2305,2307,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2326,2327,2328,2329,2330,2331,2336,2339,2342,2343,2346,2348,2349,2351,2352,2353,2355,2356,2357,2358,2360,2361,2372,2373,2374,2386,2388,2389,2391,2392,2395,2396,2397,2398,2414,2415,2427,2439,2450,2452,2454,2458,2459,2465,2467,2472,2473,2477,2478,2489,2492,2494,2495,2497,2498,2502,2503,2508,2521,2523,2524,2529,2531,2577,2580,2583,2607,2609,2613,2617,2620,2631,2635,2640,2654,2659,2668,2669,2670,2671,2678,2679,2680,2681,2682,2683,2684,2685,2688,2689,2690,2694,2695,2710,2726,2727,2728,2729,2730,2731,2734,2736,2742,2743,2745,2749,2750,2752,2753,2756,2757,2760,2762,2763,2764,2767,2768,2775,2777,2778,2780,2781,2782,2783,2786,2787,2788,2791,2792,2793,2798,2799,2802,2803,2804,2805,2806,2807,2809,2810,2813,2815,2819,2820,2821,2823,2824,2825,2826,2828,2829,2830,2835,2836,2839,2840,2841,2842,2843,2846,2848,2852,2854,2856,2858,2859,2861,2862,2864,2870,2876,2881,2883,2888,2891,2892,2899,2909,2924,2925,2926,2928,2929,2931,2932,2933,2935,2936,2939,2940,2941,2942,2943,2944,2945,2947,2951,2962,2965,2966,2967,2970,2971,2973,2977,2978,2980,2983,2984,2992,2993,2994,2999,3017,3018,3024,3026,3029,3031,3032,3034,3035,3038,3039,3041,3043,3049,3051,3052,3097,3116,3117,3118,3125,3126,3127,3128,3129,3130,3131,3132,3136,3137,3138,3139,3140,3142,3161,3164,3172,3174,3177,3183,3185,3188,3190,3191,3192,3193,3194,3198,3203,3205,3209,3210,3211,3213,3214,3215,3216,3217,3219,3220,3222,3223,3231,3234,3235,3240,3241,3246,3247,3269,3276,3297,3298,3300,3303,3307,3355,3356,3357,3372,3378,3383,3391,3420,3422,3430,3450,3452,3453,3458,3460,3487,3488,3500,3525,3540,3542,3545,3548,3549,3552,3554,3556,3559,3578,3583,3585,3588,3589,3597,3601,3622,3654,3656,3657,3660,3663,3670,3675,3678,3685,3692,3696,3708,3718,3721,3727,3731,3738,3741,3743,3749,3750,3751,3753,3754,3755,3756,3757,3762,3768,3769,3770,3780,3784,3788,3792,3799,3800,3806,3807,3810,3822,3828,3829,3830,3832,3834,3840,3841,3842,3843,3844,3850,3852,3853,3859,3939,3946,3949,3951,3958,3960,3961,3976,3980,3982,3983,3984,3985,3987,3988,3997,3998,3999,4001,4002,4003,4004,4006,4007,4008,4010,4011,4012,4013,4014,4015,4017,4019,4022,4033,4035,4036,4037,4041,4049,4050,4053,4055,4060,4062,4069,4070,4078,4093,4099,4104,4110,4113,4117,4122,4126,4135,4137,4143,4144,4151,4158,4162,4178,4181,4191,4197,4198,4201,4205,4207,4211,4213,4216,4220,4221,4223,4227,4235,4236,4239,4240,4241,4243,4246,4247,4249,4254,4259,4261,4262,4274,4281,4289,4291,4294,4302,4304,4305,4306,4307,4308,4309,4313,4317,4332,4334,4335,4347,4348,4349,4351,4354,4360,4367,4380,4397,4405,4407,4411,4419,4422,4431,4433,4444,4448,4452,4479,4482,4484,4489,4492,4498,4545,4552,4557,4570,4572,4574,4575,4577,4587,4592,4599,4601,4607,4613,4650,4652,4653,4654,4655,4656,4657,4658,4659,4662,4667,4671,4672,4676,4678,4680,4714,4732,4762,4767,4770,4798,4808,4809,4810,4815,4819,4827,4846,4851,4865,4867,4868,4869,4882,4883,4884,4891,4892,4907,4963,4974,4987,4989,5006,5014,5017,5025,5030,5036,5040,5043,5044,5052,5060,5062,5068,5069,5075,5092,5094,5095,5101,5117,5124,5127,5133,5136,5140,5141,5147,5167,5172,5174,5175,5176,5188,5190,5195,5212,5217,5225,5226,5228,5229,5233,5237,5241,5242,5256,5259,5264,5267,5272,5277,5280,5282,5292,5328,5330,5334,5342,5345,5370,5374,5375,5378,5379,5382,5384,5392,5413,5415,5416,5417,5419,5421,5428,5430,5437,5439,5446,5447,5452,5453,5457,5460,5463,5469,5470,5476,5482,5484,5489,5494,5496,5504,5509,5513,5520,5525,5530,5540,5541,5543,5547,5550,5552,5553,5556,5562,5572,5585,5588,5590,5591,5593,5597,5598,5612,5613,5618,5621,5622,5626,5632,5634,5635,5646,5647,5654,5656,5659,5660,5667,5672,5674,5684,5703,5704,5706,5707,5709,5715,5717,5726,5728,5741,5743,5745,5746,5752,5760,5769,5771,5781,5794,5796,5805,5807,5809,5818,5820,5822,5839,5840,5844,5848,5875,5876,5877,5878,5880,5908,5909,5915,5928,5935,5943,5949,5982,5985,5986,6002,6031,6033,6034,6042,6055,6057,6069,6075,6077,6082,6088,6090,6091,6095,6098,6100,6102,6111,6114,6120,6132,6157,6163,6170,6179,6193,6201,6210,6220,6248,6282,6298,6302,6306,6307,6309,6332,6333,6371,6435,6436,6438,6446,6449,6459,6473,6474,6475,6476,6483,6523,6578,6580,6584,6587,6588,6589,6614,6623,6633,6640,6641,6642,6656,6657,6658,6661,6676,6679,6680,6682,6684,6685,6691,6693,6694,6695,6696,6699,6700,6706,6716,6722,6745,6757,6759,6762,6763,6764,6765,6766,6767,6768,6769,6771,6772,6776,6778,6779,6785,6787,6788,6797,6798,6802,6803,6805,6807,6815,6840,6855,6858,6866,6867,6870,6883,6889,6903,6904,6915,6925,6926,6928,6937,6939,6943,6948,6952,6958,6961,6963,6966,6968,6969,6975,6976,6978,6979,7002,7005,7012,7020,7026,7027,7044,7046,7051,7052,7054,7059,7063,7073,7095,7146,7154,7155,7159,7162,7175,7181,7187,7195,7197,7200,7221,7222,7223,7225,7226,7241,7248,7250,7251,7268,7298,7309,7310,7315,7316,7317,7323,7324,7326,7336,7338,7343,7349,7351,7362,7376,7378,7380,7388,7397,7407,7415,7416,7419,7424,7428,7430,7437,7446,7447,7451,7452,7457,7461,7472,7473,7474,7479,7486,7490,7493,7496,7499,7503,7512,7518,7521,7533,7540,7541,7555,7560,7561,7563,7567,7569,7575,7577,7586,7588,7595,7596,7611,7618,7623,7624,7633,7638,7640,7644,7646,7650,7653,7656,7657,7664,7667,7680,7681,7726,7729,7730,7738,7739,7745,7755,7759,7761,7763,7785,7787,7789,7793,7794,7795,7796,7800,7804,7819,7827,7831,7837,7838,7841,7842,7844,7849,7861,7869,7874,7877,7878,7879,7881,7884,7885,7891,7897,7903,7906,7908,7917,7918,7921,7940,7941,7957,7958,7960,7984,7992,7994,7995,8001,8002,8013,8014,8024,8028,8031,8032,8034,8038,8039,8040,8041,8043,8046,8047,8048,8053,8056,8058,8059,8060,8062,8068,8070,8073,8074,8089,8091,8098,8110,8111,8115,8122,8127,8131,8132,8134,8135,8137,8140,8144,8149,8152,8159,8164,8165,8167,8178,8188,8191,8202,8205,8206,8207,8219,8224,8225,8233,8234,8237,8238,8240,8254,8260,8261,8270,8279,8280,8282,8283,8285,8292,8293,8297,8303,8314,8316,8322,8326,8334,8335,8336,8339,8342,8346,8349,8354,8356,8357,8358,8360,8363,8364,8365,8369,8382,8389,8391,8393,8403,8407,8409,8412,8421,8422,8427,8434,8448,8451,8460,8461,8468,8470,8474,8479,8483,8486,8487,8490,8495,8496,8498,8509,8510,8511,8512,8513,8518,8520,8521,8533,8537,8549,8553,8562,8565,8566,8569,8575,8576,8577,8578,8581,8587,8590,8613,8630,8636,8652,8655,8661,8671,8696,8704,8712,8713,8717,8730,8734,8737,8740,8741,8744,8747,8750,8751,8752,8755,8761,8763,8764,8765,8770,8774,8781,8782,8785,8788,8789,8794,8796,8797,8801,8802,8805,8813,8820,8822,8835,8842,8845,8848,8849,8850,8851,8864,8873,8877,8883,8885,8892,8894,8897,8899,8901,8904,8906,8928,8931,8936,8937,8940,8950,8951,8952,8953,8954,8956,8959,8963,8965,8969,8970,8972,8973,8975,8976,8977,8982,8990,8992,8993,9001,9005,9008,9010,9012,9021,9025,9028,9029,9039,9051,9056,9058,9059,9060,9074,9076,9077,9085,9088,9095,9096,9099,9115,9118,9119,9132,9133,9138,9145,9149,9150,9155,9160,9161,9162,9165,9168,9169,9171,9183,9184,9185,9186,9187,9188,9197,9214,9216,9218,9220,9225,9232,9233,9237,9241,9243,9245,9247,9250,9256,9266,9268,9269,9272,9274,9276,9279,9280,9282,9284,9285,9288,9290,9291,9292,9294,9297,9298,9299,9300,9301,9302,9303,9306,9307,9310,9312,9320,9322,9331,9336,9337,9338,9339,9342,9344,9348,9353,9362,9364,9367,9369,9374,9380,9402,9403,9409,9420,9428,9430,9431,9438,9441,9446,9449,9451,9455,9458,9478,9480,9486,9488,9490,9498,9499,9503,9504,9512,9518,9519,9521,9525,9531,9542,9546,9551,9554,9556,9558,9564,9565,9566,9577,9587,9591,9597,9598,9603,9607,9612,9623,9624,9632,9634,9635,9637,9638,9640,9665,9668,9673,9685,9688,9698,9699,9700,9704,9705,9709,9713,9724,9732,9740,9742,9747,9750,9759,9773,9781,9785,9793,9796,9798,9802,9803,9815,9817,9823,9824,9826,9827,9829,9832,9837,9840,9841,9843,9847,9848,9854,9861,9862,9865,9867,9868,9869,9872,9879,9881,9883,9884,9885,9887,9890,9892,9894,9902,9911,9914,9915,9916,9924,9930,9931,9933,9935,9936,9937,9940,9942,9943,9944,9945,9946,9948,9950,9951,9952,9955,9956,9961,9967,9968,9970,9975,9976,9977,9978,9980,9982,9984,9986,9988,9992,9993,10001,10004,10006,10033,10036,10037,10038,10042,10044,10045,10047,10048,10049,10050,10051,10061,10063,10069,10082,10083,10093,10104,10105,10111,10118,10131,10132,10136,10142,10143,10144,10150,10152,10153,10154,10158,10161,10164,10165,10168,10171,10173,10177,10178,10181,10182,10185,10186,10189,10191,10192,10193,10194,10198,10200,10205,10207,10213,10214,10222,10223,10226,10227,10233,10239,10241,10242,10243,10244,10250,10438,10444,10448,10485,10486,10493,10498,10503,10539,10564,10616,10634,10635,10638,10641,10642,10643,10644,10646,10647,10648,10662,10663,10664,10672,10675,10676,10680,10683,10684,10688,10693,10698,10715,10724,10728,10735,10737,10739,10740,10741,10742,10743,10752,10758,10762,10767,10770,10776,10782,10784,10785,10788,10791,10806,10811,10812,10841,10845,10860,10870,10873,10880,10886,10888,10889,10897,10900,10904,10905,10907,10909,10912,10928,10935,10938,10941,10944,10949,10950,10956,10960,10972,10973,10974,10975,10976,10977,10978,10984,10987,10997,11011,11014,11048,11049,11052,11097,11099,11101,11103,11105,11106,11107,11109,11111,11113,11114,11115,11116,11117,11118,11119,11120,11121,11122,11123,11124,11125,11133,11134,11135,11136,11137,11138,11139,11140,11145,11147,11148,11162,11172,11173,11179,11187,11189,11190,11191,11193,11194,11195,11200,11203,11205,11207,11213,11215,11222,11227,11233,11234,11236,11237,11242,11243,11244,11245,11246,11250,11258,11259,11260,11265,11274,11276,11277,11287,11288,11292,11295,11298,11300,11309,11313,11316,11327,11330,11334,11335,11337,11338,11344,11345,11346,11349,11358,11360,11361,11363,11369,11370,11372,11379,11380,11382,11383,11393,11394,11399,11404,11405,11406,11409,11412,11413,11427,11439,11446,11447,11454,11457,11458,11459,11460,11464,11465,11471,11486,11489,11491,11494,11495,11499,11505,11510,11512,11516,11517,11518,11519,11520,11524,11533,11538,11539,11541,11549,11551,11558,11559,11560,11564,11565,11573,11578,11583,11585,11586,11587,11588,11589,11590,11596,11597,11598,11599,11601,11603,11609,11610,11611,11613,11616,11618,11621,11624,11628,11632,11639,11640,11649,11656,11659,11666,11667,11669,11674,11675,11676,11683,11686,11690,11695,11697,11698,11700,11702,11703,11704,11707,11708,11730,11731,11732,11739,11741,11743,11745,11747,11748,11750,11751,11753,11760,11762,11768,11773,11775,11776,11777,11780,11784,11790,11799,11800,11812,11814,11815,11818,11827,11828,11836,11837,11843,11844,11845,11849,11856,11863,11866,11868,11869,11876,11877,11880,11881,11883,11884,11885,11887,11891,11892,11893,11894,11895,11900,11901,11906,11907,11916,11919,11924,11926,11927,11932,11933,11937,11938,11943,11945,11946,11950,11954,11957,11960,11961,11964,11968,11976,11981,11982,11986,11987,11990,11991,11993,11997,11999,12001,12003,12008,12010,12016,12018,12022,12024,12088,12095,12099,12100,12105,12106,12107,12108,12115,12116,12117,12173,12179,12182,12184,12201,12218,12219,12222,12223,12224,12227,12232,12234,12236,12241,12242,12246,12250,12252,12254,12256,12258,12261,12262,12264,12267,12271,12298,12302,12311,12312,12314,12315,12325,12326,12329,12331,12332,12334,12335,12336,12337,12339,12344,12346,12355,12360,12364,12368,12371,12373,12377,12378,12389,12397,12398,12399,12400,12401,12404,12407,12408,12413,12418,12422,12483,12497,12498,12500,12509,12512,12513,12514,12515,12516,12517,12520,12521,12524,12530,12541,12544,12547,12548,12549,12550,12578,12581,12582,12583,12597,12602,12604,12609,12611,12632,12646,12647,12655,12661,12662,12663,12668,12673,12682,12684,12685,12686,12689,12690,12693,12697,12699,12700,12704,12708,12710,12717,12718,12719,12721,12725,12734,12744,12747,12748,12756,12757,12759,12766,12767,12769,12770,12778,12779,12780,12783,12787,12788,12790,12793,12795,12796,12797,12801,12802,12810,12814,12815,12816,12817,12819,12820,12822,12824,12825,12828,12834,12836,12837,12847,12850,12853,12855,12858,12859,12860,12861,12865,12867,12868,12875,12877,12880,12883,12886,12888,12892,12902,12903,12908,12909,12943,12945,12961,12981,12983,12994,13005,13006,13009,13020,13028,13035,13038,13044,13045,13046,13059,13062,13073,13077,13084,13085,13087,13088,13089,13142,13149,13164,13166,13167,13174,13179,13180,13184,13187,13197,13198,13203,13230,13242,13247,13248,13249,13251,13252,13253,13254,13255,13264,13268,13276,13282,13284,13285,13286,13291,13293,13296,13302,13303,13305,13306,13308,13309,13310,13322,13330,13337,13339,13347,13349,13351,13360,13364,13372,13381,13382,13386,13387,13391,13399,13413,13415,13417,13421,13434,13445,13454,13459,13464,13474,13476,13477,13490,13491,13503,13504,13512,13535,13536,13539,13545,13554,13558,13559,13561,13562,13569,13572,13573,13574,13587,13589,13593,13597,13598,13609,13624,13626,13630,13631,13634,13657,13660,13665,13669,13673,13677,13689,13696,13698,13704,13706,13710,13711,13712,13719,13720,13757,13759,13764,13766,13768,13769,13772,13781,13784,13785,13791,13798,13799,13803,13817,13819,13825,13843,13848,13857,13861,13862,13894,13896,13911,13918,13921,13922,13928,13930,13933,13942,13944,13947,13951,13958,13963,13965,13969,13971,13984,14002,14003,14005,14011,14013,14040,14044,14054,14055,14061,14065,14076,14080,14082,14090,14092,14094,14096,14098,14112,14128,14151,14159,14160,14167,14174,14196,14202,14203,14213,14214,14217,14222,14237,14243,14259,14287,14288,14291,14311,14344,14345,14347,14349,14354,14359,14360,14361,14363,14388,14423,14425,14426,14430,14431,14436,14442,14454,14455,14460,14461,14462,14479,14492,14506,14522,14523,14527,14532,14537,14540,14545,14549,14551,14553,14556,14559,14560,14561,14562,14566,14571,14590,14593,14599,14600,14601,14604,14614,14616,14627,14633,14644,14648,14654,14659,14673,14676,14684,14710,14716,14721,14728,14735,14736,14742,14744,14747,14754,14760,14762,14767,14770,14773,14779,14793,14815,14825,14830,14834,14845,14849,14858,14878,14929,14934,14942,14944,14950,14959,14962,14974,14982,15006,15013,15061,15137,15140,15191,15194,15215,15222,15224,15231,15244,15246,15259,15297,15298,15315,15324,15325,15333,15345,15371,15373,15391,15394,15395,15407,15408,15414,15422,15433,15451,15452,15454,15457,15469,15487,15501,15507,15528,15559,15560,15562,15566,15574,15576,15577,15583,15605,15620,15622,15644,15658,15668,15673,15683,15739,15746,15747,15751,15757,15760,15761,15775,15790,15791,15792,15793,15817,15831,15844,15855,15860,15869,15912,15915,15920,15947,15960,15967,16002,16025,16026,16027,16034,16060,16062,16086,16104,16106,16107,16113,16115,16132,16135,16150,16154,16169,16171,16172,16189,16202,16223,16224,16226,16228,16233,16238,16244,16253,16255,16273,16279,16289,16293,16297,16329,16346,16375,16384,16390,16427,16444,16458,16484,16505,16525,16555,16561,16562,16568,16578,16589,16590,16604,16629,16636,16641,16652,16668,16758,16786,16791,16850,16860,16863,16866,16867,16877,16899,16928,16936,16937,16962,16980,16985,16993,17021,17033,17074,17092,17097,17104,17109,17124,17125,17133,17135,17137,17138,17152,17155,17158,17191,17211,17217,17221,17229,17236,17257,17270,17310,17313,17321,17327,17328,17331,17350,17353,17373,17376,17377,17399,17403,17405,17418,17439,17443,17460,17464,17469,17472,17474,17487,17489,17497,17500,17514,17515,17516,17522,17529,17530,17537,17540,17544,17545,17558,17562,17571,17572,17579,17586,17602,17603,17605,17610,17613,17631,17632,17637,17640,17645,17646,17649,17654,17655,17659,17668,17679,17686,17697,17698,17699,17700,17701,17738,17745,17764,17769,17770,17775,17776,17783,17784,17787,17799,17808,17814,17831,17835,17836,17840,17846,17849,17850,17853,17856,17862,17865,17870,17874,17875,17876,17877,17878,17886,17892,17899,17908,17913,17917,17919,17923,17924,17929,17930,17932,17936,17940,17942,17950,17953,17954,17962,17963,17964,17967,17969,17974,17978,17981,17990,17993,17999,18001,18003,18005,18011,18012,18016,18020,18021,18031,18032,18038,18043,18056,18067,18074,18076,18077,18085,18088,18094,18101,18106,18110,18112,18115,18116,18117,18121,18125,18126,18151,18152,18154,18162,18165,18168,18170,18186,18191,18194,18196,18200,18201,18203,18205,18218,18222,18223,18225,18229,18233,18234,18242,18245,18249,18251,18252,18254,18255,18267,18270,18271,18272,18274,18279,18305,18308,18314,18317,18319,18330,18331,18333,18335,18336,18338,18339,18340,18341,18342,18352,18354,18360,18361,18374,18375,18385,18387,18395,18396,18405,18406,18410,18411,18414,18422,18429,18442,18469,18481,18485,18493,18505,18536,18537,18549,18552,18572,18573,18575,18593,18594,18600,18605,18606,18608,18610,18612,18616,18645,18646,18652,18658,18669,18684,18703,18710,18711,18712,18716,18720,18732,18738,18740,18756,18759,18760,18761,18766,18767,18769,18771,18772,18775,18776,18800,18804,18809,18818,18821,18822,18823,18825,18826,18828,18835,18844,18859,18860,18864,18869,18873,18885,18897,18900,18903,18904,18914,18924,18932,18934,18942,18953,18955,18956,18958,18960,18961,18962,18964,18970,18977,18980,18985,18999,19000,19002,19004,19008,19010,19018,19020,19023,19035,19043,19044,19047,19055,19064,19067,19070,19073,19085,19087,19089,19090,19092,19093,19095,19096,19098,19099,19100,19101,19103,19105,19106,19108,19112,19115,19127,19129,19130,19133,19134,19139,19140,19141,19148,19149,19150,19155,19159,19167,19171,19174,19176,19179,19184,19185,19187,19188,19193,19197,19200,19202,19220,19222,19226,19228,19234,19236,19241,19242,19243,19245,19247,19248,19257,19258,19260,19261,19263,19267,19268,19270,19279,19282,19287,19292,19293,19294,19296,19299,19308,19309,19316,19318,19319,19320,19321,19323,19329,19330,19331,19339,19340,19343,19346,19347,19349,19351,19352,19353,19354,19358,19359,19365,19375,19382,19387,19391,19392,19393,19394,19395,19400,19402,19404,19405,19406,19407,19410,19412,19415,19420,19422,19424,19433,19442,19444,19447,19449,19453,19454,19456,19458,19460,19461,19462,19463,19471,19478,19480,19481,19482,19484,19486,19487,19488,19492,19496,19499,19500,19501,19503,19514,19515,19516,19518,19519,19523,19524,19530,19534,19535,19536,19539,19543,19546,19547,19560,19563,19564,19567,19574,19577,19585,19587,19591,19592,19598,19601,19606,19607,19615,19617,19626,19628,19629,19630,19632,19633,19634,19645,19646,19663,19666,19667,19673,19675,19681,19682,19685,19687,19690,19694,19703,19706,19710,19711,19717,19719,19724,19728,19730,19733,19750,19755,19760,19762,19763,19765,19766,19771,19772,19773,19779,19780,19784,19788,19792,19796,19802,19805,19808,19816,19822,19823,19829,19830,19840,19841,19844,19846,19853,19854,19860,19863,19865,19870,19871,19872,19873,19874,19879,19882,19883,19885,19888,19889,19893,19899,19932,19934,19935,19945,19952,19992,19993,19994,20007,20012,20023,20030,20031,20033,20037,20039,20041,20042,20043,20045,20046,20047,20051,20066,20070,20077,20082,20091,20101,20102,20103,20104,20106,20111,20112,20116,20117,20118,20122,20123,20132,20135,20138,20141,20144,20146,20147,20149,20156,20157,20164,20169,20175,20179,20180,20181,20187,20193,20195,20201,20208,20210,20211,20213,20214,20219,20220,20223,20225,20226,20237,20239,20240,20241,20247,20254,20256,20258,20259,20260,20262,20263,20264,20268,20275,20276,20279,20280,20283,20284,20298,20299,20301,20303,20312,20315,20317,20318,20320,20324,20325,20326,20332,20342,20343,20346,20347,20348,20349,20351,20359,20374,20375,20378,20382,20393,20400,20402,20408,20415,20416,20425,20428,20439,20441,20442,20447,20459,20460,20464,20465,20467,20472,20481,20483,20484,20485,20486,20489,20490,20492,20493,20494,20516,20524,20525,20526,20527,20530,20531,20532,20533,20535,20536,20537,20538,20544,20547,20554,20562,20563,20566,20572,20577,20579,20580,20581,20585,20586,20597,20603,20605,20610,20614,20625,20626,20628,20630,20634,20635,20637,20649,20651,20652,20655,20659,20660,20663,20665,20668,20670,20677,20678,20679,20686,20687,20693,20702,20711,20713,20725,20726,20728,20734,20736,20737,20740,20744,20748,20750,20753,20757,20767,20768,20770,20771,20773,20774,20776,20777,20778,20789,20798,20799,20802,20805,20806,20808,20830,20832,20835,20845,20847,20851,20864,20869,20875,20880,20889,20891,20892,20903,20908,20912,20916,20927,20928,20951,20959,20966,20975,20979,20980,20989,20996,20997,20998,21007,21012,21014,21015,21016,21021,21023,21025,21027,21029,21031,21037,21048,21049,21053,21054,21056,21062,21063,21064,21067,21073,21078,21079,21085,21090,21093,21096,21099,21102,21103,21108,21116,21117,21119,21123,21124,21126,21132,21151,21153,21156,21157,21164,21169,21174,21175,21176,21178,21179,21180,21182,21183,21185,21186,21188,21190,21191,21197,21198,21201,21215,21219,21235,21243,21245,21250,21251,21252,21253,21256,21257,21258,21261,21264,21266,21275,21279,21282,21283,21290,21293,21299,21304,21305,21306,21307,21309,21315,21319,21336,21340,21346,21347,21349,21356,21357,21359,21361,21362,21364,21365,21369,21370,21371,21376,21377,21380,21384,21388,21390,21398,21399,21401,21403,21405,21407,21411,21413,21416,21417,21421,21422,21424,21427,21432,21433,21435,21436,21437,21441,21442,21443,21444,21445,21446,21447,21449,21450,21452,21453,21462,21465,21468,21471,21474,21476,21477,21478,21479,21492,21533,21541,21543,21546,21558,21560,21584,21590,21592,21596,21599,21609,21611,21612,21614,21616,21617,21623,21639,21645,21647,21649,21657,21669,21674,21687,21689,21691,21697,21704,21705,21706,21707,21708,21709,21710,21717,21723,21726,21727,21728,21729,21730,21733,21738,21745,21748,21757,21759,21963,21966,21973,21978,21979,21986,21988,21989,21999,22000,22001,22002,22005,22006,22008,22012,22015,22019,22022,22023,22024,22025,22026,22031,22036,22041,22050,22056,22057,22060,22061,22063,22064,22066,22070,22072,22073,22074,22076,22082,22098,22118,22119,22136,22142,22146,22147,22153,22162,22172,22190,22191,22192,22195,22209,22215,22216,22223,22229,22230,22232,22233,22234,22235,22236,22239,22243,22244,22248,22251,22254,22262,22263,22266,22272,22273,22285,22294,22296,22297,22299,22302,22313,22316,22324,22328,22329,22331,22339,22340,22345,22347,22349,22365,22367,22370,22372,22373,22375,22377,22380,22383,22385,22386,22387,22396,22397,22400,22404,22409,22410,22412,22417,22423,22424,22425,22431,22432,22434,22442,22446,22454,22455,22456,22464,22467,22470,22471,22473,22474,22475,22480,22481,22489,22491,22496,22499,22501,22503,22507,22510,22511,22521,22524,22525,22526,22533,22536,22538,22542,22543,22544,22545,22551,22555,22564,22568,22570,22574,22576,22577,22578,22579,22580,22582,22587,22593,22595,22596,22598,22599,22604,22610,22611,22613,22614,22615,22619,22621,22627,22631,22634,22636,22638,22640,22642,22661,22667,22677,22680,22682,22695,22697,22698,22699,22700,22706,22717,22718,22722,22724,22730,22731,22735,22746,22747,22748,22749,22750,22754,22762,22763,22764,22766,22769,22776,22787,22789,22790,22791,22792,22795,22796,22799,22803,22807,22810,22812,22813,22815,22816,22818,22820,22827,22828,22837,22838,22845,22847,22850,22851,22880,22886,22893,22894,22908,22911,22913,22916,22917,22921,22924,22925,22933,22934,22936,22939,22947,22952,22960,22976,23007,23008,23012,23013,23014,23015,23018,23019,23033,23034,23041,23045,23046,23047,23048,23049,23051,23052,23054,23055,23066,23072,23077,23080,23081,23084,23085,23088,23094,23096,23105,23106,23117,23119,23133,23137,23142,23144]]],["+",[937,875,[[0,86,84,0,84,[[0,1,1,0,1],[1,2,2,1,3],[3,1,1,3,4],[5,1,1,4,5],[6,2,2,5,7],[7,5,5,7,12],[9,1,1,12,13],[10,2,2,13,15],[11,1,1,15,16],[12,2,2,16,18],[15,2,2,18,20],[16,1,1,20,21],[17,3,3,21,24],[18,5,4,24,28],[19,2,2,28,30],[20,3,3,30,33],[22,2,2,33,35],[23,3,3,35,38],[24,4,4,38,42],[25,2,2,42,44],[26,1,1,44,45],[27,2,2,45,47],[28,5,5,47,52],[29,2,2,52,54],[30,1,1,54,55],[31,2,2,55,57],[32,2,2,57,59],[33,2,2,59,61],[34,1,1,61,62],[37,3,3,62,65],[39,3,2,65,67],[40,1,1,67,68],[41,3,3,68,71],[42,3,3,71,74],[43,2,2,74,76],[44,1,1,76,77],[46,2,2,77,79],[47,1,1,79,80],[48,1,1,80,81],[49,3,3,81,84]]],[1,39,38,84,122,[[52,2,1,84,85],[54,2,2,85,87],[57,2,2,87,89],[59,2,2,89,91],[62,1,1,91,92],[63,2,2,92,94],[64,1,1,94,95],[65,2,2,95,97],[66,1,1,97,98],[67,1,1,98,99],[69,3,3,99,102],[74,3,3,102,105],[75,1,1,105,106],[77,2,2,106,108],[78,1,1,108,109],[81,3,3,109,112],[82,3,3,112,115],[83,2,2,115,117],[88,2,2,117,119],[89,3,3,119,122]]],[2,21,19,122,141,[[91,1,1,122,123],[93,1,1,123,124],[95,3,3,124,127],[97,1,1,127,128],[99,1,1,128,129],[100,1,1,129,130],[104,8,6,130,136],[105,2,2,136,138],[106,1,1,138,139],[116,2,2,139,141]]],[3,45,42,141,183,[[120,1,1,141,142],[123,2,2,142,144],[124,1,1,144,145],[125,1,1,145,146],[126,2,2,146,148],[128,2,2,148,150],[129,1,1,150,151],[130,2,2,151,153],[132,3,3,153,156],[133,2,2,156,158],[134,1,1,158,159],[136,2,2,159,161],[137,5,5,161,166],[138,1,1,166,167],[139,1,1,167,168],[141,3,3,168,171],[142,1,1,171,172],[146,12,9,172,181],[148,1,1,181,182],[149,1,1,182,183]]],[4,41,37,183,220,[[156,2,2,183,185],[157,2,2,185,187],[158,1,1,187,188],[160,1,1,188,189],[161,1,1,189,190],[162,1,1,190,191],[163,3,3,191,194],[165,3,2,194,196],[166,1,1,196,197],[167,2,2,197,199],[169,1,1,199,200],[171,2,2,200,202],[172,1,1,202,203],[173,2,2,203,205],[174,2,1,205,206],[175,1,1,206,207],[176,2,2,207,209],[177,1,1,209,210],[180,2,2,210,212],[181,5,4,212,216],[183,1,1,216,217],[184,3,2,217,219],[185,1,1,219,220]]],[5,20,19,220,239,[[189,1,1,220,221],[191,3,2,221,223],[193,2,2,223,225],[196,1,1,225,226],[199,2,2,226,228],[200,2,2,228,230],[201,2,2,230,232],[203,1,1,232,233],[204,2,2,233,235],[205,1,1,235,236],[209,3,3,236,239]]],[6,23,23,239,262,[[211,1,1,239,240],[213,4,4,240,244],[214,1,1,244,245],[216,2,2,245,247],[217,1,1,247,248],[218,2,2,248,250],[221,2,2,250,252],[223,1,1,252,253],[225,2,2,253,255],[226,5,5,255,260],[228,1,1,260,261],[229,1,1,261,262]]],[7,1,1,262,263,[[233,1,1,262,263]]],[8,39,36,263,299,[[236,1,1,263,264],[239,1,1,264,265],[240,1,1,265,266],[241,5,3,266,269],[244,1,1,269,270],[245,1,1,270,271],[248,2,2,271,273],[249,1,1,273,274],[250,4,4,274,278],[251,1,1,278,279],[252,5,4,279,283],[254,1,1,283,284],[255,2,2,284,286],[258,2,2,286,288],[259,3,3,288,291],[260,1,1,291,292],[261,3,3,292,295],[263,3,3,295,298],[265,1,1,298,299]]],[9,44,40,299,339,[[268,1,1,299,300],[269,2,2,300,302],[271,2,2,302,304],[272,2,2,304,306],[273,2,2,306,308],[274,1,1,308,309],[276,1,1,309,310],[277,6,5,310,315],[278,2,2,315,317],[279,4,3,317,320],[280,1,1,320,321],[281,5,4,321,325],[284,2,2,325,327],[285,4,3,327,330],[286,3,3,330,333],[287,2,2,333,335],[288,1,1,335,336],[290,3,3,336,339]]],[10,43,36,339,375,[[291,1,1,339,340],[292,3,2,340,342],[293,1,1,342,343],[296,3,1,343,344],[297,4,3,344,347],[298,3,3,347,350],[299,5,3,350,353],[301,3,2,353,355],[302,2,2,355,357],[303,2,2,357,359],[304,2,2,359,361],[305,1,1,361,362],[306,2,2,362,364],[307,5,5,364,369],[308,2,2,369,371],[310,3,3,371,374],[311,1,1,374,375]]],[11,40,38,375,413,[[314,4,4,375,379],[315,1,1,379,380],[316,1,1,380,381],[317,2,2,381,383],[318,3,3,383,386],[322,1,1,386,387],[323,2,2,387,389],[324,1,1,389,390],[325,1,1,390,391],[327,1,1,391,392],[328,3,2,392,394],[329,5,4,394,398],[330,3,3,398,401],[332,1,1,401,402],[333,1,1,402,403],[334,1,1,403,404],[335,3,3,404,407],[336,3,3,407,410],[337,3,3,410,413]]],[12,14,13,413,426,[[342,1,1,413,414],[348,1,1,414,415],[349,1,1,415,416],[350,2,1,416,417],[351,2,2,417,419],[354,1,1,419,420],[355,1,1,420,421],[357,1,1,421,422],[358,2,2,422,424],[360,1,1,424,425],[366,1,1,425,426]]],[13,46,43,426,469,[[368,1,1,426,427],[369,3,3,427,430],[370,1,1,430,431],[371,2,2,431,433],[372,1,1,433,434],[373,6,4,434,438],[375,1,1,438,439],[376,1,1,439,440],[379,1,1,440,441],[382,3,3,441,444],[383,3,3,444,447],[385,1,1,447,448],[386,3,3,448,451],[387,2,2,451,453],[389,1,1,453,454],[390,1,1,454,455],[392,2,2,455,457],[394,1,1,457,458],[396,2,2,458,460],[397,1,1,460,461],[398,2,2,461,463],[399,2,2,463,465],[400,3,2,465,467],[401,1,1,467,468],[402,1,1,468,469]]],[14,4,4,469,473,[[403,2,2,469,471],[412,2,2,471,473]]],[15,25,23,473,496,[[413,1,1,473,474],[414,3,3,474,477],[415,1,1,477,478],[416,2,2,478,480],[420,1,1,480,481],[421,4,4,481,485],[422,1,1,485,486],[423,2,2,486,488],[424,6,4,488,492],[425,4,4,492,496]]],[16,17,16,496,512,[[426,2,2,496,498],[428,3,3,498,501],[429,2,2,501,503],[430,1,1,503,504],[432,2,2,504,506],[433,2,2,506,508],[434,5,4,508,512]]],[17,42,41,512,553,[[436,2,2,512,514],[440,2,1,514,515],[441,3,3,515,518],[444,2,2,518,520],[445,1,1,520,521],[447,1,1,521,522],[448,2,2,522,524],[449,2,2,524,526],[451,2,2,526,528],[452,1,1,528,529],[454,3,3,529,532],[455,2,2,532,534],[456,1,1,534,535],[457,1,1,535,536],[458,1,1,536,537],[459,1,1,537,538],[461,1,1,538,539],[462,1,1,539,540],[465,3,3,540,543],[467,2,2,543,545],[469,2,2,545,547],[471,2,2,547,549],[472,2,2,549,551],[473,1,1,551,552],[477,1,1,552,553]]],[18,46,44,553,597,[[478,1,1,553,554],[487,1,1,554,555],[494,1,1,555,556],[495,2,2,556,558],[502,1,1,558,559],[508,1,1,559,560],[509,2,2,560,562],[514,1,1,562,563],[515,1,1,563,564],[516,1,1,564,565],[517,1,1,565,566],[519,1,1,566,567],[521,1,1,567,568],[522,4,4,568,572],[523,1,1,572,573],[526,1,1,573,574],[538,1,1,574,575],[540,1,1,575,576],[549,1,1,576,577],[556,2,1,577,578],[565,1,1,578,579],[566,2,2,579,581],[580,3,2,581,583],[581,1,1,583,584],[583,1,1,584,585],[585,1,1,585,586],[586,1,1,586,587],[587,1,1,587,588],[592,1,1,588,589],[596,5,5,589,594],[616,1,1,594,595],[618,1,1,595,596],[625,1,1,596,597]]],[19,15,15,597,612,[[629,1,1,597,598],[631,1,1,598,599],[632,1,1,599,600],[633,2,2,600,602],[634,1,1,602,603],[637,1,1,603,604],[641,1,1,604,605],[643,1,1,605,606],[648,1,1,606,607],[651,1,1,607,608],[652,1,1,608,609],[654,1,1,609,610],[656,1,1,610,611],[658,1,1,611,612]]],[20,5,5,612,617,[[663,2,2,612,614],[666,2,2,614,616],[669,1,1,616,617]]],[21,3,3,617,620,[[671,1,1,617,618],[675,1,1,618,619],[678,1,1,619,620]]],[22,50,43,620,663,[[679,1,1,620,621],[683,2,2,621,623],[684,2,2,623,625],[685,1,1,625,626],[687,1,1,626,627],[688,3,2,627,629],[691,3,3,629,632],[692,3,2,632,634],[693,2,2,634,636],[694,1,1,636,637],[695,1,1,637,638],[696,1,1,638,639],[697,1,1,639,640],[698,2,1,640,641],[699,1,1,641,642],[700,1,1,642,643],[702,4,3,643,646],[703,3,2,646,648],[704,1,1,648,649],[705,3,3,649,652],[708,2,1,652,653],[709,1,1,653,654],[712,1,1,654,655],[714,1,1,655,656],[715,1,1,656,657],[716,1,1,657,658],[718,1,1,658,659],[728,2,1,659,660],[734,1,1,660,661],[735,1,1,661,662],[737,1,1,662,663]]],[23,84,79,663,742,[[745,2,2,663,665],[746,1,1,665,666],[748,1,1,666,667],[749,2,2,667,669],[750,2,2,669,671],[751,2,2,671,673],[752,1,1,673,674],[753,1,1,674,675],[754,1,1,675,676],[755,2,2,676,678],[756,2,2,678,680],[757,1,1,680,681],[758,1,1,681,682],[759,1,1,682,683],[760,5,4,683,687],[764,1,1,687,688],[765,5,5,688,693],[766,3,3,693,696],[767,2,2,696,698],[768,1,1,698,699],[769,2,2,699,701],[771,2,2,701,703],[772,4,4,703,707],[773,2,2,707,709],[774,2,2,709,711],[775,2,2,711,713],[776,5,4,713,717],[778,1,1,717,718],[779,3,3,718,721],[780,3,3,721,724],[781,4,3,724,727],[782,1,1,727,728],[788,4,3,728,731],[790,1,1,731,732],[792,4,3,732,735],[793,1,1,735,736],[794,1,1,736,737],[795,2,2,737,739],[796,3,3,739,742]]],[24,5,5,742,747,[[797,1,1,742,743],[798,1,1,743,744],[799,2,2,744,746],[800,1,1,746,747]]],[25,59,55,747,802,[[802,4,4,747,751],[807,1,1,751,752],[808,4,4,752,756],[809,1,1,756,757],[810,3,2,757,759],[811,3,3,759,762],[812,3,3,762,765],[814,1,1,765,766],[815,3,2,766,768],[817,2,2,768,770],[819,1,1,770,771],[820,1,1,771,772],[821,1,1,772,773],[822,1,1,773,774],[823,1,1,774,775],[824,4,3,775,778],[825,2,2,778,780],[827,1,1,780,781],[832,1,1,781,782],[833,2,2,782,784],[836,1,1,784,785],[838,3,3,785,788],[840,1,1,788,789],[842,4,4,789,793],[843,2,2,793,795],[845,4,3,795,798],[846,2,2,798,800],[849,2,2,800,802]]],[26,6,6,802,808,[[850,1,1,802,803],[857,1,1,803,804],[859,2,2,804,806],[860,2,2,806,808]]],[27,10,10,808,818,[[863,1,1,808,809],[865,4,4,809,813],[867,1,1,813,814],[870,1,1,814,815],[871,1,1,815,816],[873,1,1,816,817],[874,1,1,817,818]]],[28,6,5,818,823,[[877,3,3,818,821],[878,3,2,821,823]]],[29,10,9,823,832,[[881,3,2,823,825],[882,1,1,825,826],[883,1,1,826,827],[885,2,2,827,829],[887,3,3,829,832]]],[31,7,7,832,839,[[889,3,3,832,835],[891,1,1,835,836],[892,3,3,836,839]]],[32,8,7,839,846,[[893,1,1,839,840],[894,1,1,840,841],[895,4,3,841,844],[899,2,2,844,846]]],[33,1,1,846,847,[[900,1,1,846,847]]],[34,7,6,847,853,[[903,5,4,847,851],[904,2,2,851,853]]],[35,6,6,853,859,[[906,5,5,853,858],[908,1,1,858,859]]],[36,3,3,859,862,[[909,3,3,859,862]]],[37,11,10,862,872,[[913,2,1,862,863],[914,1,1,863,864],[919,1,1,864,865],[920,2,2,865,867],[921,3,3,867,870],[924,2,2,870,872]]],[38,5,3,872,875,[[925,1,1,872,873],[926,2,1,873,874],[927,2,1,874,875]]]],[6,46,54,93,144,163,176,186,190,191,194,196,243,275,294,315,327,329,393,395,419,427,429,440,461,465,479,485,501,513,524,538,544,574,590,633,637,655,664,667,676,688,724,725,767,779,786,798,803,805,829,830,836,858,921,949,960,970,977,983,992,1024,1133,1138,1145,1189,1191,1237,1273,1276,1278,1306,1308,1309,1325,1328,1359,1426,1442,1468,1503,1517,1519,1527,1584,1640,1649,1722,1731,1794,1805,1882,1892,1902,1943,1952,1976,1999,2021,2054,2062,2075,2215,2217,2232,2259,2321,2326,2372,2450,2458,2473,2478,2492,2495,2502,2508,2685,2690,2710,2728,2743,2775,2803,2852,2854,2876,2945,2980,3032,3172,3174,3185,3191,3192,3194,3213,3215,3247,3578,3588,3750,3852,3939,3946,3982,3999,4019,4060,4069,4099,4117,4151,4220,4221,4240,4249,4254,4281,4332,4335,4347,4351,4354,4360,4367,4407,4444,4479,4482,4489,4545,4650,4652,4653,4654,4655,4656,4657,4658,4659,4732,4767,5025,5030,5060,5068,5101,5141,5174,5195,5212,5225,5233,5280,5282,5292,5330,5334,5374,5413,5419,5439,5460,5463,5494,5504,5543,5547,5556,5632,5674,5684,5703,5704,5707,5745,5796,5809,5822,5908,5943,5949,5985,6002,6091,6157,6179,6193,6201,6220,6248,6282,6307,6309,6332,6473,6475,6476,6523,6580,6587,6588,6589,6614,6661,6676,6706,6722,6745,6866,6867,6904,6943,6948,6952,6961,6968,6969,6975,7005,7027,7162,7226,7315,7324,7336,7349,7351,7397,7430,7493,7496,7533,7563,7569,7575,7588,7618,7633,7644,7657,7664,7730,7745,7759,7837,7838,7841,7844,7849,7884,7906,7908,7921,7957,7958,7960,7994,8073,8089,8111,8140,8152,8159,8165,8202,8207,8219,8254,8260,8261,8279,8280,8283,8292,8316,8326,8334,8339,8363,8391,8407,8409,8412,8483,8498,8518,8520,8553,8569,8575,8576,8581,8587,8652,8704,8713,8717,8770,8774,8801,8835,8899,8940,8976,8982,8992,8993,9025,9056,9058,9060,9115,9119,9161,9162,9188,9218,9220,9233,9268,9290,9300,9320,9322,9331,9338,9339,9342,9353,9409,9431,9449,9458,9554,9556,9564,9565,9603,9612,9668,9673,9688,9698,9699,9824,9837,9840,9868,9894,9943,9968,9980,9988,10001,10004,10006,10033,10036,10038,10104,10132,10158,10178,10192,10198,10205,10213,10222,10227,10243,10250,10438,10680,10735,10770,10785,10788,10888,10900,10928,10944,10956,10987,11194,11213,11233,11237,11246,11259,11276,11277,11313,11337,11338,11344,11346,11370,11405,11457,11512,11516,11518,11538,11539,11541,11585,11597,11598,11613,11632,11640,11674,11697,11750,11751,11777,11837,11849,11869,11881,11885,11916,11919,11937,11954,11981,12016,12018,12022,12262,12264,12302,12312,12314,12326,12355,12360,12364,12498,12513,12530,12541,12549,12550,12597,12602,12655,12661,12662,12663,12684,12686,12693,12699,12717,12721,12748,12756,12757,12766,12767,12787,12810,12815,12822,12824,12847,12853,12860,12865,12877,12883,12961,12981,13005,13006,13073,13085,13088,13142,13167,13174,13187,13198,13251,13252,13264,13303,13306,13310,13339,13347,13381,13399,13434,13454,13477,13504,13558,13574,13587,13631,13634,13696,13710,13757,13759,13784,13785,13799,13928,13944,14054,14112,14160,14167,14259,14354,14360,14363,14460,14492,14522,14537,14561,14590,14599,14601,14604,14614,14616,14659,14825,14849,15013,15194,15325,15371,15373,15559,15562,15576,15668,15746,15760,15793,15844,15920,16002,16025,16026,16027,16253,16279,16375,16444,16505,16525,16555,16562,16590,16668,16786,16860,16985,17097,17124,17191,17229,17313,17399,17405,17460,17469,17514,17540,17605,17649,17659,17745,17764,17775,17776,17799,17846,17862,17877,17913,17919,17924,17940,17953,17964,17967,17978,17993,17999,18012,18031,18038,18056,18101,18110,18116,18121,18126,18151,18152,18154,18162,18233,18255,18319,18336,18387,18396,18422,18669,18756,18775,18809,18955,18958,18970,19055,19064,19085,19096,19103,19134,19141,19167,19200,19222,19241,19248,19257,19263,19287,19294,19316,19346,19347,19349,19352,19433,19442,19444,19447,19449,19454,19462,19463,19471,19518,19523,19534,19546,19567,19601,19606,19628,19629,19630,19634,19663,19667,19675,19687,19694,19711,19733,19762,19771,19773,19822,19829,19830,19841,19853,19863,19873,19879,19883,19885,19899,20023,20033,20039,20051,20091,20111,20116,20146,20210,20219,20256,20279,20284,20303,20318,20346,20375,20378,20442,20483,20484,20485,20489,20572,20581,20585,20586,20597,20610,20625,20628,20637,20649,20651,20670,20678,20679,20728,20736,20737,20767,20771,20880,20892,20912,20951,20980,21025,21037,21054,21063,21078,21116,21235,21258,21261,21359,21403,21405,21417,21471,21533,21541,21543,21546,21558,21560,21609,21611,21614,21639,21647,21717,21723,21738,21979,22026,22031,22073,22076,22119,22136,22142,22146,22147,22172,22209,22232,22254,22272,22328,22329,22331,22347,22349,22397,22409,22417,22446,22475,22481,22503,22507,22510,22536,22542,22543,22564,22570,22574,22579,22587,22604,22610,22611,22615,22667,22682,22697,22735,22746,22747,22748,22754,22762,22789,22790,22795,22796,22799,22827,22845,22847,22850,22916,22934,23014,23018,23019,23033,23034,23041,23072,23080,23094,23117,23137]]],["According",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[22,1,1,1,2,[[737,1,1,1,2]]]],[6371,18818]]],["Against",[4,4,[[8,1,1,0,1,[[262,1,1,0,1]]],[11,1,1,1,2,[[329,1,1,1,2]]],[13,1,1,2,3,[[402,1,1,2,3]]],[22,1,1,3,4,[[735,1,1,3,4]]]],[7940,9986,11999,18769]]],["At",[4,4,[[3,3,3,0,3,[[120,1,1,0,1],[125,2,2,1,3]]],[4,1,1,3,4,[[169,1,1,3,4]]]],[3770,3983,3988,5370]]],["Because",[3,3,[[10,1,1,0,1,[[305,1,1,0,1]]],[23,2,2,1,3,[[753,1,1,1,2],[776,1,1,2,3]]]],[9279,19188,19763]]],["Besides",[1,1,[[2,1,1,0,1,[[96,1,1,0,1]]]],[2892]]],["By",[3,3,[[18,3,3,0,3,[[548,1,1,0,1],[581,1,1,1,2],[614,1,1,2,3]]]],[14982,15583,16223]]],["For",[18,18,[[1,1,1,0,1,[[71,1,1,0,1]]],[10,1,1,1,2,[[306,1,1,1,2]]],[15,1,1,2,3,[[414,1,1,2,3]]],[18,1,1,3,4,[[509,1,1,3,4]]],[23,4,4,4,8,[[748,2,2,4,6],[752,1,1,6,7],[753,1,1,7,8]]],[24,2,2,8,10,[[797,1,1,8,9],[801,1,1,9,10]]],[29,8,8,10,18,[[879,5,5,10,15],[880,3,3,15,18]]]],[2122,9302,12311,14361,19035,19055,19174,19185,20326,20459,22367,22370,22373,22375,22377,22380,22383,22385]]],["In",[3,3,[[2,1,1,0,1,[[95,1,1,0,1]]],[18,1,1,1,2,[[539,1,1,1,2]]],[23,1,1,2,3,[[747,1,1,2,3]]]],[2870,14834,19004]]],["Over",[2,2,[[12,2,2,0,2,[[364,2,2,0,2]]]],[11111,11139]]],["To",[2,2,[[23,1,1,0,1,[[750,1,1,0,1]]],[25,1,1,1,2,[[842,1,1,1,2]]]],[19099,21543]]],["Upon",[12,12,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,1,1,1,2,[[79,1,1,1,2]]],[11,1,1,2,3,[[328,1,1,2,3]]],[17,2,2,3,5,[[465,1,1,3,4],[476,1,1,4,5]]],[18,2,2,5,7,[[488,1,1,5,6],[569,1,1,6,7]]],[22,2,2,7,9,[[710,1,1,7,8],[735,1,1,8,9]]],[23,1,1,9,10,[[775,1,1,9,10]]],[25,2,2,10,12,[[832,1,1,10,11],[844,1,1,11,12]]]],[740,2414,9978,13569,13921,14065,15414,18272,18772,19717,21243,21584]]],["With",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13768]]],["about",[12,12,[[0,1,1,0,1,[[40,1,1,0,1]]],[3,2,2,1,3,[[120,1,1,1,2],[132,1,1,2,3]]],[7,1,1,3,4,[[232,1,1,3,4]]],[8,3,3,4,7,[[257,3,3,4,7]]],[13,1,1,7,8,[[384,1,1,7,8]]],[14,1,1,8,9,[[412,1,1,8,9]]],[17,1,1,9,10,[[443,1,1,9,10]]],[19,2,2,10,12,[[630,1,1,10,11],[633,1,1,11,12]]]],[1237,3757,4243,7146,7793,7794,7804,11573,12267,13046,16458,16561]]],["above",[53,47,[[0,4,4,0,4,[[0,1,1,0,1],[27,1,1,1,2],[47,1,1,2,3],[48,1,1,3,4]]],[1,4,4,4,8,[[67,1,1,4,5],[77,1,1,5,6],[78,1,1,6,7],[88,1,1,7,8]]],[2,5,5,8,13,[[92,3,3,8,11],[93,1,1,11,12],[96,1,1,12,13]]],[3,2,2,13,15,[[119,1,1,13,14],[132,1,1,14,15]]],[4,4,4,15,19,[[177,1,1,15,16],[178,1,1,16,17],[180,2,2,17,19]]],[12,2,2,19,21,[[353,1,1,19,20],[364,1,1,20,21]]],[15,3,2,21,23,[[421,1,1,21,22],[424,2,1,22,23]]],[16,1,1,23,24,[[430,1,1,23,24]]],[18,21,16,24,40,[[485,1,1,24,25],[504,1,1,25,26],[534,4,2,26,28],[572,1,1,28,29],[573,1,1,29,30],[574,2,1,30,31],[576,1,1,31,32],[580,1,1,32,33],[581,1,1,33,34],[585,2,1,34,35],[590,2,1,35,36],[613,1,1,36,37],[614,1,1,37,38],[615,1,1,38,39],[625,1,1,39,40]]],[22,1,1,40,41,[[692,1,1,40,41]]],[25,3,3,41,44,[[811,1,1,41,42],[817,1,1,42,43],[830,1,1,43,44]]],[26,3,3,44,47,[[860,3,3,44,47]]]],[19,786,1473,1499,2010,2321,2349,2685,2782,2788,2793,2804,2883,3741,4197,5550,5585,5612,5654,10845,11115,12516,12663,12790,14013,14291,14773,14779,15457,15469,15487,15501,15560,15577,15747,15817,16202,16228,16233,16384,17942,20634,20805,21198,22041,22072,22073]]],["according",[5,5,[[1,1,1,0,1,[[87,1,1,0,1]]],[5,1,1,1,2,[[208,1,1,1,2]]],[11,1,1,2,3,[[335,1,1,2,3]]],[20,1,1,3,4,[[659,1,1,3,4]]],[22,1,1,4,5,[[741,1,1,4,5]]]],[2654,6435,10200,17321,18873]]],["accordingly",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18818]]],["after",[20,20,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,1,1,1,2,[[83,1,1,1,2]]],[3,3,3,2,5,[[117,1,1,2,3],[122,1,1,3,4],[132,1,1,4,5]]],[4,1,1,5,6,[[155,1,1,5,6]]],[9,2,2,6,8,[[278,1,1,6,7],[284,1,1,7,8]]],[10,1,1,8,9,[[306,1,1,8,9]]],[13,1,1,9,10,[[397,1,1,9,10]]],[14,2,2,10,12,[[404,1,1,10,11],[405,1,1,11,12]]],[15,1,1,12,13,[[419,1,1,12,13]]],[16,1,1,13,14,[[434,1,1,13,14]]],[17,1,1,14,15,[[465,1,1,14,15]]],[18,2,2,15,17,[[519,1,1,15,16],[587,1,1,16,17]]],[23,1,1,17,18,[[774,1,1,17,18]]],[25,1,1,18,19,[[849,1,1,18,19]]],[29,1,1,19,20,[[880,1,1,19,20]]]],[1457,2523,3622,3844,4223,4989,8314,8496,9307,11856,12088,12107,12483,12860,13562,14556,15790,19685,21733,22386]]],["against",[533,451,[[0,8,6,0,6,[[13,1,1,0,1],[33,1,1,1,2],[39,3,1,2,3],[41,1,1,3,4],[42,1,1,4,5],[49,1,1,5,6]]],[1,9,6,6,12,[[64,1,1,6,7],[65,6,3,7,10],[66,1,1,10,11],[72,1,1,11,12]]],[2,2,2,12,14,[[93,1,1,12,13],[108,1,1,13,14]]],[3,27,18,14,32,[[126,1,1,14,15],[130,7,5,15,20],[132,9,5,20,25],[133,1,1,25,26],[136,2,1,26,27],[142,3,1,27,28],[143,1,1,28,29],[146,1,1,29,30],[147,2,2,30,32]]],[4,16,15,32,47,[[161,1,1,32,33],[167,1,1,33,34],[171,1,1,34,35],[172,6,5,35,40],[173,1,1,40,41],[174,1,1,41,42],[175,2,2,42,44],[176,1,1,44,45],[180,2,2,45,47]]],[5,10,9,47,56,[[195,1,1,47,48],[196,6,5,48,53],[197,1,1,53,54],[208,2,2,54,56]]],[6,18,18,56,74,[[213,2,2,56,58],[214,1,1,58,59],[216,4,4,59,63],[217,1,1,63,64],[219,4,4,64,68],[225,1,1,68,69],[228,1,1,69,70],[229,1,1,70,71],[230,3,3,71,74]]],[8,11,10,74,84,[[246,1,1,74,75],[247,1,1,75,76],[249,1,1,76,77],[252,1,1,77,78],[257,3,2,78,80],[258,1,1,80,81],[260,1,1,81,82],[262,1,1,82,83],[265,1,1,83,84]]],[9,11,11,84,95,[[277,1,1,84,85],[278,2,2,85,87],[280,2,2,87,89],[283,1,1,89,90],[284,2,2,90,92],[289,2,2,92,94],[290,1,1,94,95]]],[10,19,17,95,112,[[296,2,2,95,97],[298,1,1,97,98],[303,5,3,98,101],[304,1,1,101,102],[305,3,3,102,105],[306,3,3,105,108],[310,2,2,108,110],[312,2,2,110,112]]],[11,30,25,112,137,[[315,1,1,112,113],[319,1,1,113,114],[322,1,1,114,115],[324,1,1,115,116],[326,1,1,116,117],[327,4,4,117,121],[328,1,1,121,122],[329,1,1,122,123],[330,4,3,123,126],[331,4,3,126,129],[333,2,2,129,131],[334,2,1,131,132],[335,2,2,132,134],[336,1,1,134,135],[337,4,2,135,137]]],[12,11,11,137,148,[[342,1,1,137,138],[347,2,2,138,140],[348,2,2,140,142],[349,2,2,142,144],[351,1,1,144,145],[358,2,2,145,147],[364,1,1,147,148]]],[13,44,41,148,189,[[372,1,1,148,149],[374,1,1,149,150],[375,1,1,150,151],[378,2,2,151,153],[379,3,3,153,156],[380,1,1,156,157],[382,1,1,157,158],[383,1,1,158,159],[384,1,1,159,160],[386,7,7,160,167],[387,1,1,167,168],[388,1,1,168,169],[390,4,4,169,173],[391,1,1,173,174],[392,3,2,174,176],[393,1,1,176,177],[394,2,2,177,179],[398,7,6,179,185],[399,2,2,185,187],[400,2,1,187,188],[401,1,1,188,189]]],[14,3,3,189,192,[[406,2,2,189,191],[410,1,1,191,192]]],[15,6,6,192,198,[[414,1,1,192,193],[416,1,1,193,194],[417,1,1,194,195],[418,1,1,195,196],[421,1,1,196,197],[425,1,1,197,198]]],[16,5,5,198,203,[[427,1,1,198,199],[430,1,1,199,200],[433,1,1,200,201],[434,2,2,201,203]]],[17,18,16,203,219,[[448,1,1,203,204],[451,2,2,204,206],[452,1,1,206,207],[453,1,1,207,208],[454,4,3,208,211],[456,1,1,211,212],[465,1,1,212,213],[466,2,2,213,215],[468,1,1,215,216],[469,3,2,216,218],[474,1,1,218,219]]],[18,37,33,219,252,[[479,2,1,219,220],[480,2,2,220,222],[492,2,2,222,224],[498,2,2,224,226],[504,2,1,226,227],[508,2,2,227,229],[512,4,4,229,233],[515,1,1,233,234],[518,3,2,234,236],[531,1,1,236,237],[532,1,1,237,238],[533,1,1,238,239],[536,1,1,239,240],[539,1,1,240,241],[558,1,1,241,242],[560,3,2,242,244],[563,1,1,244,245],[569,1,1,245,246],[571,1,1,246,247],[586,2,2,247,249],[596,1,1,249,250],[601,1,1,250,251],[615,1,1,251,252]]],[19,2,2,252,254,[[630,1,1,252,253],[646,1,1,253,254]]],[20,2,2,254,256,[[667,1,1,254,255],[668,1,1,255,256]]],[22,33,28,256,284,[[683,2,2,256,258],[685,3,2,258,260],[687,2,2,260,262],[688,4,3,262,265],[691,1,1,265,266],[692,3,3,266,269],[697,1,1,269,270],[701,1,1,270,271],[707,5,3,271,274],[709,3,2,274,276],[714,2,2,276,278],[715,3,3,278,281],[720,1,1,281,282],[732,1,1,282,283],[735,1,1,283,284]]],[23,88,69,284,353,[[745,3,2,284,286],[748,3,2,286,288],[750,4,4,288,292],[752,1,1,292,293],[755,2,2,293,295],[756,3,3,295,298],[759,2,2,298,300],[760,1,1,300,301],[762,5,4,301,305],[763,1,1,305,306],[765,2,2,306,308],[766,1,1,308,309],[767,4,4,309,313],[769,5,2,313,315],[770,5,3,315,318],[772,1,1,318,319],[773,1,1,319,320],[776,2,2,320,322],[778,5,3,322,325],[779,1,1,325,326],[780,3,1,326,327],[781,3,2,327,329],[788,1,1,329,330],[790,2,2,330,332],[792,3,3,332,335],[793,3,2,335,337],[794,8,7,337,344],[795,10,8,344,352],[796,3,1,352,353]]],[24,7,7,353,360,[[797,1,1,353,354],[798,1,1,354,355],[799,4,4,355,359],[801,1,1,359,360]]],[25,58,43,360,403,[[805,7,3,360,363],[806,1,1,363,364],[812,1,1,364,365],[814,1,1,365,366],[817,3,3,366,369],[820,1,1,369,370],[822,3,3,370,373],[823,1,1,373,374],[824,4,2,374,376],[826,1,1,376,377],[827,6,3,377,380],[828,1,1,380,381],[829,3,3,381,384],[830,5,3,384,387],[831,1,1,387,388],[835,1,1,388,389],[836,6,4,389,393],[837,3,2,393,395],[839,7,6,395,401],[840,1,1,401,402],[845,1,1,402,403]]],[26,11,9,403,412,[[857,2,2,403,405],[858,2,1,405,406],[860,7,6,406,412]]],[27,5,4,412,416,[[868,1,1,412,413],[869,2,1,413,414],[871,2,2,414,416]]],[29,11,8,416,424,[[879,1,1,416,417],[881,2,1,417,418],[883,3,2,418,420],[884,1,1,420,421],[885,4,3,421,424]]],[30,1,1,424,425,[[888,1,1,424,425]]],[31,2,2,425,427,[[889,2,2,425,427]]],[32,6,6,427,433,[[894,2,2,427,429],[895,1,1,429,430],[896,1,1,430,431],[897,2,2,431,433]]],[33,1,1,433,434,[[900,1,1,433,434]]],[34,1,1,434,435,[[904,1,1,434,435]]],[35,6,5,435,440,[[906,2,1,435,436],[907,4,4,436,440]]],[37,12,10,440,450,[[919,1,1,440,441],[920,1,1,441,442],[922,5,4,442,446],[923,2,1,446,447],[924,3,3,447,450]]],[38,2,1,450,451,[[927,2,1,450,451]]]],[351,1010,1174,1288,1308,1526,1944,1949,1954,1955,1986,2173,2809,3297,3997,4110,4135,4137,4143,4144,4197,4205,4213,4235,4236,4249,4313,4498,4557,4657,4667,4671,5176,5328,5417,5428,5430,5437,5446,5447,5457,5496,5504,5509,5540,5618,5660,6055,6069,6095,6098,6100,6102,6114,6438,6459,6578,6580,6623,6656,6657,6658,6685,6696,6772,6785,6788,6797,6939,7002,7026,7059,7063,7073,7446,7472,7560,7653,7795,7800,7819,7878,7940,8001,8282,8297,8314,8363,8369,8470,8509,8510,8661,8671,8696,8901,8906,9029,9186,9188,9216,9243,9266,9269,9276,9284,9292,9298,9420,9430,9486,9512,9603,9713,9802,9867,9915,9935,9944,9950,9955,9970,9992,10033,10037,10049,10069,10083,10093,10142,10143,10164,10182,10194,10213,10223,10226,10448,10662,10672,10684,10693,10739,10741,10784,10935,10938,11133,11316,11349,11393,11439,11446,11459,11460,11465,11486,11510,11524,11564,11588,11589,11599,11603,11609,11610,11624,11640,11649,11698,11700,11702,11703,11731,11739,11745,11760,11776,11777,11876,11877,11884,11891,11892,11894,11932,11933,11960,11987,12115,12116,12223,12326,12368,12389,12413,12521,12673,12725,12788,12820,12858,12859,13179,13242,13248,13268,13285,13302,13308,13309,13382,13569,13609,13626,13660,13689,13712,13857,13947,13958,13963,14090,14092,14202,14203,14288,14344,14349,14425,14430,14431,14436,14506,14549,14551,14728,14744,14760,14793,14830,15231,15244,15246,15298,15422,15452,15757,15775,15967,16104,16238,16484,16928,17489,17497,17764,17769,17783,17787,17840,17850,17856,17865,17874,17923,17932,17936,17950,18021,18085,18196,18200,18201,18252,18254,18331,18340,18360,18375,18385,18493,18740,18769,18961,18964,19043,19044,19092,19093,19095,19112,19171,19243,19245,19257,19258,19263,19321,19323,19346,19392,19395,19402,19407,19422,19442,19453,19461,19486,19514,19515,19516,19543,19547,19585,19591,19592,19626,19667,19755,19760,19802,19808,19823,19840,19844,19882,19893,20039,20046,20047,20082,20106,20122,20141,20157,20169,20175,20180,20181,20187,20195,20208,20213,20214,20223,20226,20239,20240,20241,20258,20280,20325,20348,20359,20400,20415,20416,20464,20531,20532,20536,20554,20659,20725,20799,20802,20806,20889,20959,20966,20975,20979,21029,21031,21085,21102,21103,21108,21151,21164,21178,21179,21185,21186,21201,21215,21315,21346,21347,21356,21357,21361,21364,21427,21433,21441,21442,21443,21446,21449,21611,21973,21986,22000,22050,22060,22061,22064,22066,22072,22191,22195,22234,22235,22372,22396,22424,22432,22464,22473,22474,22480,22511,22533,22544,22598,22599,22613,22631,22634,22638,22695,22754,22803,22810,22813,22815,22818,23012,23019,23047,23048,23052,23054,23066,23080,23081,23084,23133]]],["among",[7,7,[[1,2,2,0,2,[[79,2,2,0,2]]],[12,1,1,2,3,[[363,1,1,2,3]]],[13,1,1,3,4,[[399,1,1,3,4]]],[16,1,1,4,5,[[434,1,1,4,5]]],[20,1,1,5,6,[[664,1,1,5,6]]],[37,1,1,6,7,[[917,1,1,6,7]]]],[2395,2396,11107,11927,12855,17418,22976]]],["and",[2,2,[[6,1,1,0,1,[[225,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[6937,17862]]],["as",[3,3,[[2,1,1,0,1,[[114,1,1,0,1]]],[17,1,1,1,2,[[457,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]]],[3500,13413,15912]]],["at",[84,78,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]],[2,2,2,2,4,[[90,1,1,2,3],[115,1,1,3,4]]],[3,9,7,4,11,[[119,1,1,4,5],[122,1,1,5,6],[125,3,2,6,8],[143,2,1,8,9],[149,1,1,9,10],[151,1,1,10,11]]],[4,4,3,11,14,[[169,1,1,11,12],[171,2,1,12,13],[185,1,1,13,14]]],[6,1,1,14,15,[[229,1,1,14,15]]],[8,2,2,15,17,[[255,1,1,15,16],[260,1,1,16,17]]],[9,4,4,17,21,[[275,4,4,17,21]]],[11,2,2,21,23,[[316,1,1,21,22],[336,1,1,22,23]]],[12,1,1,23,24,[[349,1,1,23,24]]],[13,7,5,24,29,[[374,1,1,24,25],[381,1,1,25,26],[389,2,2,26,28],[392,3,1,28,29]]],[14,1,1,29,30,[[410,1,1,29,30]]],[15,3,3,30,33,[[417,1,1,30,31],[424,1,1,31,32],[425,1,1,32,33]]],[17,6,6,33,39,[[451,1,1,33,34],[452,1,1,34,35],[453,1,1,35,36],[462,1,1,36,37],[466,1,1,37,38],[474,1,1,38,39]]],[18,8,8,39,47,[[529,1,1,39,40],[545,1,1,40,41],[558,1,1,41,42],[583,2,2,42,44],[586,1,1,44,45],[587,1,1,45,46],[596,1,1,46,47]]],[19,3,3,47,50,[[635,1,1,47,48],[641,1,1,48,49],[650,1,1,49,50]]],[20,3,3,50,53,[[663,2,2,50,52],[670,1,1,52,53]]],[21,1,1,53,54,[[677,1,1,53,54]]],[22,5,5,54,59,[[730,2,2,54,56],[738,2,2,56,58],[744,1,1,58,59]]],[23,3,3,59,62,[[746,1,1,59,60],[793,1,1,60,61],[794,1,1,61,62]]],[24,3,2,62,64,[[797,1,1,62,63],[798,2,1,63,64]]],[25,11,11,64,75,[[817,1,1,64,65],[823,1,1,65,66],[827,1,1,66,67],[828,3,3,67,70],[829,1,1,70,71],[833,1,1,71,72],[840,1,1,72,73],[847,2,2,73,75]]],[26,2,2,75,77,[[857,1,1,75,76],[860,1,1,76,77]]],[37,1,1,77,78,[[913,1,1,77,78]]]],[621,1559,2760,3556,3731,3829,3983,3988,4575,4798,4865,5370,5421,5818,7046,7763,7885,8234,8237,8238,8240,9640,10205,10752,11363,11505,11669,11675,11741,12222,12399,12661,12690,13242,13268,13296,13504,13597,13861,14716,14929,15224,15658,15683,15761,15791,16060,16636,16791,17074,17403,17405,17529,17640,18710,18711,18825,18835,18924,18977,20144,20179,20317,20347,20808,20989,21116,21124,21156,21157,21176,21258,21468,21657,21674,21988,22063,22913]]],["because",[29,29,[[1,1,1,0,1,[[66,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[9,1,1,2,3,[[287,1,1,2,3]]],[10,1,1,3,4,[[311,1,1,3,4]]],[11,1,1,4,5,[[335,1,1,4,5]]],[14,5,5,5,10,[[405,1,1,5,6],[411,2,2,6,8],[412,2,2,8,10]]],[15,1,1,10,11,[[425,1,1,10,11]]],[17,2,2,11,13,[[467,1,1,11,12],[469,1,1,12,13]]],[18,2,2,13,15,[[537,1,1,13,14],[596,1,1,14,15]]],[22,2,2,15,17,[[700,1,1,15,16],[731,1,1,16,17]]],[23,3,3,17,20,[[746,1,1,17,18],[760,1,1,18,19],[763,1,1,19,20]]],[25,1,1,20,21,[[817,1,1,20,21]]],[29,8,8,21,29,[[879,5,5,21,26],[880,3,3,26,29]]]],[1990,7650,8587,9455,10191,12108,12241,12252,12258,12261,12700,13630,13719,14815,16034,18056,18720,19000,19354,19415,20777,22367,22370,22373,22375,22377,22380,22383,22385]]],["before",[12,11,[[1,2,2,0,2,[[69,1,1,0,1],[76,1,1,1,2]]],[5,2,2,2,4,[[196,1,1,2,3],[201,1,1,3,4]]],[6,2,2,4,6,[[224,2,2,4,6]]],[17,4,3,6,9,[[436,1,1,6,7],[437,2,1,7,8],[439,1,1,8,9]]],[33,1,1,9,10,[[901,1,1,9,10]]],[37,1,1,10,11,[[916,1,1,10,11]]]],[2071,2293,6069,6210,6925,6926,12875,12892,12945,22700,22952]]],["beside",[14,14,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[2,1,1,2,3,[[107,1,1,2,3]]],[3,5,5,3,8,[[140,1,1,3,4],[144,3,3,4,7],[147,1,1,7,8]]],[4,1,1,8,9,[[171,1,1,8,9]]],[6,1,1,9,10,[[217,1,1,9,10]]],[8,1,1,10,11,[[239,1,1,10,11]]],[18,1,1,11,12,[[500,1,1,11,12]]],[21,1,1,12,13,[[671,1,1,12,13]]],[22,1,1,13,14,[[710,1,1,13,14]]]],[923,1898,3269,4452,4587,4592,4601,4672,5415,6695,7298,14237,17545,18279]]],["between",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9362]]],["beyond",[1,1,[[2,1,1,0,1,[[104,1,1,0,1]]]],[3193]]],["by",[210,200,[[0,17,16,0,16,[[13,1,1,0,1],[15,2,1,1,2],[17,2,2,2,4],[23,3,3,4,7],[26,1,1,7,8],[28,1,1,8,9],[37,2,2,9,11],[40,1,1,11,12],[44,1,1,12,13],[47,1,1,13,14],[48,2,2,14,16]]],[1,19,19,16,35,[[51,3,3,16,19],[56,1,1,19,20],[61,1,1,20,21],[63,2,2,21,23],[64,1,1,23,24],[65,1,1,24,25],[67,2,2,25,27],[74,1,1,27,28],[79,2,2,28,30],[81,1,1,30,31],[86,3,3,31,34],[88,1,1,34,35]]],[2,5,5,35,40,[[92,3,3,35,38],[93,1,1,38,39],[96,1,1,39,40]]],[3,34,30,40,70,[[117,2,1,40,41],[118,4,4,41,45],[119,2,1,45,46],[120,2,1,46,47],[122,2,2,47,49],[127,1,1,49,50],[129,3,2,50,52],[136,1,1,52,53],[138,1,1,53,54],[139,4,4,54,58],[140,1,1,58,59],[142,2,2,59,61],[147,1,1,61,62],[149,5,5,62,67],[150,1,1,67,68],[151,1,1,68,69],[152,1,1,69,70]]],[4,8,7,70,77,[[154,1,1,70,71],[155,1,1,71,72],[156,1,1,72,73],[160,2,1,73,74],[173,1,1,74,75],[180,1,1,75,76],[185,1,1,76,77]]],[5,5,5,77,82,[[191,1,1,77,78],[196,1,1,78,79],[197,1,1,79,80],[199,1,1,80,81],[208,1,1,81,82]]],[6,7,7,82,89,[[215,2,2,82,84],[216,3,3,84,87],[219,1,1,87,88],[221,1,1,88,89]]],[8,5,5,89,94,[[236,1,1,89,90],[259,1,1,90,91],[260,1,1,91,92],[261,1,1,92,93],[265,1,1,93,94]]],[9,5,5,94,99,[[268,1,1,94,95],[279,1,1,95,96],[283,1,1,96,97],[286,2,2,97,99]]],[10,6,6,99,105,[[294,1,1,99,100],[298,1,1,100,101],[299,1,1,101,102],[303,1,1,102,103],[310,1,1,103,104],[312,1,1,104,105]]],[11,6,6,105,111,[[314,2,2,105,107],[322,1,1,107,108],[323,1,1,108,109],[335,1,1,109,110],[337,1,1,110,111]]],[12,2,2,111,113,[[344,1,1,111,112],[366,1,1,112,113]]],[13,6,6,113,119,[[368,1,1,113,114],[373,1,1,114,115],[387,1,1,115,116],[389,2,2,116,118],[401,1,1,118,119]]],[14,3,3,119,122,[[403,1,1,119,120],[410,2,2,120,122]]],[15,4,4,122,126,[[416,1,1,122,123],[421,1,1,123,124],[424,1,1,124,125],[425,1,1,125,126]]],[17,6,6,126,132,[[444,1,1,126,127],[463,1,1,127,128],[465,1,1,128,129],[466,1,1,129,130],[471,1,1,130,131],[474,1,1,131,132]]],[18,5,5,132,137,[[478,1,1,132,133],[527,1,1,133,134],[533,1,1,134,135],[571,1,1,135,136],[583,1,1,136,137]]],[19,4,3,137,140,[[635,1,1,137,138],[640,1,1,138,139],[651,2,1,139,140]]],[21,3,3,140,143,[[671,1,1,140,141],[675,1,1,141,142],[677,1,1,142,143]]],[22,7,6,143,149,[[697,2,1,143,144],[710,1,1,144,145],[716,1,1,145,146],[722,1,1,146,147],[727,1,1,147,148],[741,1,1,148,149]]],[23,19,17,149,166,[[749,1,1,149,150],[751,4,4,150,154],[759,1,1,154,155],[761,3,2,155,157],[762,1,1,157,158],[766,1,1,158,159],[769,1,1,159,160],[776,1,1,160,161],[778,1,1,161,162],[790,1,1,162,163],[793,1,1,163,164],[794,1,1,164,165],[796,2,1,165,166]]],[25,25,25,166,191,[[802,2,2,166,168],[804,1,1,168,169],[811,1,1,169,170],[817,2,2,170,172],[818,1,1,172,173],[820,1,1,173,174],[836,1,1,174,175],[838,1,1,175,176],[841,1,1,176,177],[847,1,1,177,178],[848,1,1,178,179],[849,12,12,179,191]]],[26,3,3,191,194,[[857,1,1,191,192],[858,1,1,192,193],[859,1,1,193,194]]],[27,3,3,194,197,[[872,1,1,194,195],[873,1,1,195,196],[874,1,1,196,197]]],[35,1,1,197,198,[[907,1,1,197,198]]],[37,2,2,198,200,[[914,2,2,198,200]]]],[342,388,426,432,604,621,634,767,797,1133,1140,1196,1359,1458,1490,1495,1557,1559,1569,1700,1867,1891,1898,1947,1950,2012,2013,2209,2386,2388,2465,2607,2609,2631,2668,2782,2788,2793,2804,2883,3656,3660,3670,3678,3685,3718,3769,3832,3834,4055,4078,4104,4334,4380,4419,4422,4431,4433,4452,4492,4552,4676,4762,4770,4808,4809,4810,4819,4846,4892,4974,4987,5052,5140,5452,5621,5822,5935,6082,6114,6170,6436,6633,6642,6679,6682,6684,6779,6855,7221,7842,7874,7908,8002,8062,8349,8460,8565,8566,8864,9028,9059,9185,9446,9499,9558,9564,9826,9843,10168,10226,10564,11172,11227,11345,11639,11666,11669,11986,12024,12232,12234,12377,12520,12661,12697,13062,13512,13561,13597,13768,13843,13942,14673,14762,15451,15673,16604,16758,17109,17544,17610,17631,18011,18267,18406,18537,18646,18885,19089,19129,19130,19133,19149,19331,19359,19365,19405,19462,19563,19765,19816,20047,20144,20179,20283,20465,20467,20525,20655,20768,20770,20830,20891,21349,21399,21479,21657,21691,21704,21705,21706,21707,21708,21709,21710,21726,21727,21728,21729,21730,21963,22006,22019,22243,22262,22273,22820,22925,22936]]],["captain",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8474]]],["concerning",[78,63,[[0,3,3,0,3,[[11,1,1,0,1],[23,1,1,1,2],[41,1,1,2,3]]],[1,1,1,3,4,[[73,1,1,3,4]]],[2,1,1,4,5,[[94,1,1,4,5]]],[3,2,2,5,7,[[124,1,1,5,6],[126,1,1,6,7]]],[5,1,1,7,8,[[209,1,1,7,8]]],[7,2,1,8,9,[[235,2,1,8,9]]],[8,1,1,9,10,[[260,1,1,9,10]]],[9,4,3,10,13,[[273,2,1,10,11],[279,1,1,11,12],[280,1,1,12,13]]],[10,6,6,13,19,[[292,2,2,13,15],[301,1,1,15,16],[312,3,3,16,19]]],[11,4,3,19,22,[[322,1,1,19,20],[331,1,1,20,21],[334,2,1,21,22]]],[12,6,5,22,27,[[348,1,1,22,23],[354,2,1,23,24],[356,1,1,24,25],[359,2,2,25,27]]],[13,2,2,27,29,[[397,1,1,27,28],[400,1,1,28,29]]],[14,1,1,29,30,[[412,1,1,29,30]]],[15,4,3,30,33,[[413,2,1,30,31],[423,1,1,31,32],[425,1,1,32,33]]],[16,1,1,33,34,[[434,1,1,33,34]]],[17,2,1,34,35,[[471,2,1,34,35]]],[18,2,2,35,37,[[567,1,1,35,36],[612,1,1,36,37]]],[20,3,3,37,40,[[659,1,1,37,38],[661,1,1,38,39],[665,1,1,39,40]]],[22,6,5,40,45,[[679,1,1,40,41],[680,1,1,41,42],[715,2,2,42,44],[723,2,1,44,45]]],[23,19,11,45,56,[[758,1,1,45,46],[760,4,1,46,47],[762,4,2,47,49],[767,1,1,49,50],[769,1,1,50,51],[771,4,2,51,53],[777,2,1,53,54],[783,1,1,54,55],[786,1,1,55,56]]],[25,3,3,56,59,[[815,1,1,56,57],[819,1,1,57,58],[837,1,1,58,59]]],[29,1,1,59,60,[[879,1,1,59,60]]],[32,2,2,60,62,[[893,1,1,60,61],[895,1,1,61,62]]],[33,1,1,62,63,[[900,1,1,62,63]]]],[318,600,1273,2185,2848,3961,4017,6474,7197,7891,8205,8356,8364,8774,8797,9118,9488,9498,9503,9803,10082,10158,10683,10886,10909,10976,10977,11863,11954,12254,12298,12611,12685,12860,13769,15391,16189,17328,17377,17439,17655,17686,18361,18374,18572,19308,19339,19391,19393,19499,19535,19615,19617,19779,19934,19994,20753,20851,21365,22365,22580,22613,22698]]],["employed",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10648]]],["for",[292,242,[[0,13,12,0,12,[[18,1,1,0,1],[19,2,2,1,3],[23,1,1,3,4],[25,4,4,4,8],[29,1,1,8,9],[36,3,2,9,11],[40,1,1,11,12]]],[1,15,9,12,21,[[61,1,1,12,13],[67,2,2,13,15],[71,5,1,15,16],[78,4,3,16,19],[79,3,2,19,21]]],[2,43,39,21,60,[[90,1,1,21,22],[93,6,6,22,28],[94,6,5,28,33],[95,2,1,33,34],[96,1,1,34,35],[97,1,1,35,36],[99,1,1,36,37],[101,2,2,37,39],[103,7,7,39,46],[104,2,2,46,48],[105,6,5,48,53],[106,1,1,53,54],[108,2,1,54,55],[111,1,1,55,56],[112,1,1,56,57],[115,3,3,57,60]]],[3,19,17,60,77,[[121,2,2,60,62],[122,2,2,62,64],[123,1,1,64,65],[124,3,3,65,68],[131,4,2,68,70],[132,2,2,70,72],[141,1,1,72,73],[144,2,2,73,75],[145,1,1,75,76],[147,1,1,76,77]]],[4,5,4,77,81,[[160,1,1,77,78],[176,2,1,78,79],[183,1,1,79,80],[184,1,1,80,81]]],[6,1,1,81,82,[[219,1,1,81,82]]],[8,4,3,82,85,[[239,1,1,82,83],[257,1,1,83,84],[265,2,1,84,85]]],[9,13,10,85,95,[[267,5,2,85,87],[269,1,1,87,88],[272,1,1,88,89],[277,1,1,89,90],[279,1,1,90,91],[280,1,1,91,92],[285,3,3,92,95]]],[10,4,4,95,99,[[292,2,2,95,97],[298,1,1,97,98],[306,1,1,98,99]]],[11,7,5,99,104,[[318,1,1,99,100],[320,2,1,100,101],[322,1,1,101,102],[324,1,1,102,103],[326,2,1,103,104]]],[12,2,2,104,106,[[343,1,1,104,105],[366,1,1,105,106]]],[13,12,9,106,115,[[373,1,1,106,107],[391,2,1,107,108],[395,5,3,108,111],[396,1,1,111,112],[398,1,1,112,113],[401,2,2,113,115]]],[14,3,3,115,118,[[410,2,2,115,117],[412,1,1,117,118]]],[15,10,9,118,127,[[413,1,1,118,119],[416,1,1,119,120],[417,1,1,120,121],[418,1,1,121,122],[422,3,3,122,125],[423,1,1,125,126],[424,2,1,126,127]]],[16,11,10,127,137,[[429,2,2,127,129],[431,1,1,129,130],[432,2,2,130,132],[433,2,2,132,134],[434,4,3,134,137]]],[17,5,5,137,142,[[441,1,1,137,138],[443,1,1,138,139],[451,1,1,139,140],[473,1,1,140,141],[477,1,1,141,142]]],[18,9,8,142,150,[[516,1,1,142,143],[517,1,1,143,144],[521,1,1,144,145],[527,1,1,145,146],[534,1,1,146,147],[547,1,1,147,148],[592,2,1,148,149],[615,1,1,149,150]]],[19,3,3,150,153,[[644,1,1,150,151],[655,1,1,151,152],[656,1,1,152,153]]],[20,2,2,153,155,[[661,1,1,153,154],[669,1,1,154,155]]],[21,1,1,155,156,[[675,1,1,155,156]]],[22,15,10,156,166,[[688,1,1,156,157],[691,2,1,157,158],[694,2,1,158,159],[702,1,1,159,160],[709,2,1,160,161],[710,3,1,161,162],[732,1,1,162,163],[740,1,1,163,164],[742,1,1,164,165],[744,1,1,165,166]]],[23,34,24,166,190,[[747,1,1,166,167],[749,2,2,167,169],[753,5,5,169,174],[754,1,1,174,175],[759,2,2,175,177],[760,3,1,177,178],[762,1,1,178,179],[766,3,1,179,180],[774,3,2,180,182],[775,7,3,182,185],[777,3,2,185,187],[792,1,1,187,188],[795,2,2,188,190]]],[24,7,7,190,197,[[797,2,2,190,192],[798,2,2,192,194],[799,2,2,194,196],[801,1,1,196,197]]],[25,20,16,197,213,[[810,1,1,197,198],[814,1,1,198,199],[827,1,1,199,200],[828,2,2,200,202],[830,1,1,202,203],[832,3,1,203,204],[833,5,4,204,208],[837,4,3,208,211],[846,1,1,211,212],[847,1,1,212,213]]],[26,5,4,213,217,[[858,4,3,213,216],[861,1,1,216,217]]],[27,4,4,217,221,[[868,1,1,217,218],[870,2,2,218,220],[871,1,1,220,221]]],[28,4,3,221,224,[[876,3,2,221,223],[878,1,1,223,224]]],[29,12,12,224,236,[[879,5,5,224,229],[880,3,3,229,232],[884,1,1,232,233],[885,2,2,233,235],[886,1,1,235,236]]],[31,1,1,236,237,[[892,1,1,236,237]]],[32,1,1,237,238,[[893,1,1,237,238]]],[33,1,1,238,239,[[902,1,1,238,239]]],[37,5,2,239,241,[[922,5,2,239,241]]],[38,1,1,241,242,[[928,1,1,241,242]]]],[474,498,506,613,699,701,713,714,863,1091,1117,1227,1820,2007,2008,2122,2361,2372,2373,2397,2398,2749,2798,2815,2821,2823,2826,2830,2836,2840,2843,2846,2848,2856,2891,2951,2994,3051,3052,3129,3130,3131,3132,3140,3142,3164,3183,3198,3217,3219,3231,3234,3235,3246,3303,3378,3430,3542,3548,3552,3800,3807,3834,3844,3853,3951,3958,3960,4178,4181,4240,4241,4484,4599,4607,4613,4714,5147,5541,5746,5794,6771,7310,7795,7984,8034,8048,8089,8164,8285,8354,8358,8512,8513,8553,8788,8789,9051,9290,9685,9732,9796,9862,9902,10503,11173,11334,11708,11800,11812,11815,11845,11895,11990,11991,12224,12236,12271,12302,12373,12401,12407,12581,12582,12583,12611,12668,12770,12778,12796,12814,12816,12825,12828,12850,12860,12865,13005,13035,13255,13803,13930,14523,14540,14593,14676,14770,14974,15831,16233,16899,17217,17229,17376,17522,17602,17876,17917,17978,18106,18254,18271,18738,18864,18897,18932,19010,19067,19087,19176,19184,19185,19187,19193,19220,19319,19330,19343,19404,19471,19681,19682,19703,19706,19728,19780,19784,20111,20220,20260,20315,20332,20343,20351,20393,20402,20459,20626,20713,21117,21123,21126,21201,21245,21250,21258,21264,21266,21377,21380,21390,21645,21669,22006,22008,22015,22082,22192,22215,22223,22230,22299,22302,22345,22367,22370,22373,22375,22377,22380,22383,22385,22456,22467,22470,22489,22577,22595,22722,23046,23055,23142]]],["forward",[2,2,[[14,2,2,0,2,[[405,2,2,0,2]]]],[12105,12106]]],["from",[3,3,[[4,1,1,0,1,[[165,1,1,0,1]]],[25,1,1,1,2,[[841,1,1,1,2]]],[26,1,1,2,3,[[851,1,1,2,3]]]],[5277,21492,21759]]],["governor",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9344]]],["have",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14098]]],["her",[3,3,[[16,3,3,0,3,[[427,2,2,0,2],[429,1,1,2,3]]]],[12734,12744,12770]]],["him",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12779]]],["how",[1,1,[[12,1,1,0,1,[[356,1,1,0,1]]]],[10912]]],["in",[315,293,[[0,4,4,0,4,[[0,1,1,0,1],[24,1,1,1,2],[29,1,1,2,3],[48,1,1,3,4]]],[1,19,16,4,20,[[57,1,1,4,5],[58,1,1,5,6],[72,1,1,6,7],[74,4,2,7,9],[75,1,1,9,10],[76,1,1,10,11],[77,3,3,11,14],[78,2,1,14,15],[83,2,2,15,17],[88,3,3,17,20]]],[2,13,13,20,33,[[91,1,1,20,21],[94,1,1,21,22],[95,1,1,22,23],[96,1,1,23,24],[101,1,1,24,25],[103,6,6,25,31],[106,1,1,31,32],[114,1,1,32,33]]],[3,14,13,33,46,[[118,1,1,33,34],[119,1,1,34,35],[121,1,1,35,36],[122,1,1,36,37],[131,1,1,37,38],[132,2,2,38,40],[135,1,1,40,41],[138,1,1,41,42],[141,2,1,42,43],[147,1,1,43,44],[149,1,1,44,45],[152,1,1,45,46]]],[4,22,20,46,66,[[157,2,2,46,48],[158,1,1,48,49],[159,1,1,49,50],[161,1,1,50,51],[162,1,1,51,52],[163,4,3,52,55],[169,2,2,55,57],[175,1,1,57,58],[177,2,2,58,60],[180,3,2,60,62],[182,1,1,62,63],[183,2,2,63,65],[184,1,1,65,66]]],[5,7,6,66,72,[[188,1,1,66,67],[196,2,2,67,69],[197,1,1,69,70],[204,3,2,70,72]]],[6,4,4,72,76,[[215,3,3,72,75],[219,1,1,75,76]]],[8,3,3,76,79,[[236,1,1,76,77],[252,1,1,77,78],[260,1,1,78,79]]],[9,5,5,79,84,[[267,2,2,79,81],[277,1,1,81,82],[284,1,1,82,83],[289,1,1,83,84]]],[10,13,13,84,97,[[301,1,1,84,85],[304,2,2,85,87],[305,3,3,87,90],[306,4,4,90,94],[312,3,3,94,97]]],[11,27,27,97,124,[[313,1,1,97,98],[315,1,1,98,99],[320,1,1,99,100],[322,1,1,100,101],[324,1,1,101,102],[325,2,2,102,104],[326,3,3,104,107],[327,7,7,107,114],[328,1,1,114,115],[329,1,1,115,116],[332,1,1,116,117],[333,2,2,117,119],[335,4,4,119,123],[336,1,1,123,124]]],[12,21,17,124,141,[[346,1,1,124,125],[350,1,1,125,126],[360,3,1,126,127],[364,12,12,127,139],[366,4,2,139,141]]],[13,30,25,141,166,[[367,1,1,141,142],[369,1,1,142,143],[375,2,1,143,144],[382,1,1,144,145],[386,1,1,145,146],[389,1,1,146,147],[390,2,2,147,149],[391,1,1,149,150],[393,1,1,150,151],[394,1,1,151,152],[396,1,1,152,153],[398,1,1,153,154],[399,1,1,154,155],[400,5,4,155,159],[401,8,6,159,165],[402,2,1,165,166]]],[14,1,1,166,167,[[404,1,1,166,167]]],[15,6,6,167,173,[[420,1,1,167,168],[421,3,3,168,171],[424,1,1,171,172],[425,1,1,172,173]]],[16,1,1,173,174,[[435,1,1,173,174]]],[17,13,13,174,187,[[443,1,1,174,175],[452,1,1,175,176],[453,2,2,176,178],[454,1,1,178,179],[455,1,1,179,180],[456,2,2,180,182],[457,1,1,182,183],[462,1,1,183,184],[474,1,1,184,185],[476,1,1,185,186],[477,1,1,186,187]]],[18,16,16,187,203,[[484,1,1,187,188],[486,1,1,188,189],[508,1,1,189,190],[513,1,1,190,191],[514,3,3,191,194],[519,2,2,194,196],[526,1,1,196,197],[527,1,1,197,198],[551,1,1,198,199],[568,1,1,199,200],[614,1,1,200,201],[616,1,1,201,202],[623,1,1,202,203]]],[19,9,9,203,212,[[643,2,2,203,205],[647,1,1,205,206],[648,1,1,206,207],[649,2,2,207,209],[652,1,1,209,210],[655,1,1,210,211],[658,1,1,211,212]]],[20,1,1,212,213,[[659,1,1,212,213]]],[22,25,21,213,234,[[686,1,1,213,214],[687,1,1,214,215],[688,1,1,215,216],[692,2,2,216,218],[699,1,1,218,219],[702,2,1,219,220],[706,1,1,220,221],[708,3,2,221,223],[709,2,1,223,224],[714,2,1,224,225],[716,2,2,225,227],[719,1,1,227,228],[725,1,1,228,229],[727,1,1,229,230],[735,2,2,230,232],[736,1,1,232,233],[737,1,1,233,234]]],[23,21,20,234,254,[[750,2,2,234,236],[751,1,1,236,237],[752,1,1,237,238],[753,1,1,238,239],[758,1,1,239,240],[760,1,1,240,241],[764,1,1,241,242],[767,1,1,242,243],[769,1,1,243,244],[771,1,1,244,245],[772,1,1,245,246],[773,1,1,246,247],[775,1,1,247,248],[780,4,3,248,251],[789,2,2,251,253],[793,1,1,253,254]]],[24,2,2,254,256,[[799,1,1,254,255],[800,1,1,255,256]]],[25,18,18,256,274,[[812,1,1,256,257],[813,1,1,257,258],[815,1,1,258,259],[817,1,1,259,260],[818,1,1,260,261],[819,1,1,261,262],[829,1,1,262,263],[834,1,1,263,264],[835,1,1,264,265],[837,2,2,265,267],[838,3,3,267,270],[839,2,2,270,272],[840,1,1,272,273],[845,1,1,273,274]]],[26,7,7,274,281,[[850,1,1,274,275],[858,1,1,275,276],[859,2,2,276,278],[860,3,3,278,281]]],[27,4,4,281,285,[[870,1,1,281,282],[871,1,1,282,283],[872,1,1,283,284],[873,1,1,284,285]]],[29,5,4,285,289,[[881,3,2,285,287],[885,1,1,287,288],[887,1,1,288,289]]],[30,1,1,289,290,[[888,1,1,289,290]]],[31,2,2,290,292,[[891,1,1,290,291],[892,1,1,291,292]]],[37,1,1,292,293,[[912,1,1,292,293]]]],[19,676,867,1490,1732,1751,2146,2207,2221,2245,2276,2317,2318,2319,2360,2497,2498,2680,2681,2682,2767,2835,2852,2888,3049,3127,3128,3129,3138,3139,3140,3240,3487,3675,3696,3810,3841,4191,4201,4211,4305,4411,4489,4680,4815,4891,5069,5075,5092,5124,5172,5188,5217,5226,5229,5382,5384,5520,5553,5562,5622,5646,5728,5741,5752,5805,5880,6077,6091,6120,6298,6302,6633,6640,6641,6779,7225,7640,7869,8040,8047,8270,8490,8655,9149,9237,9247,9256,9272,9280,9288,9297,9303,9310,9518,9519,9525,9551,9597,9750,9827,9869,9879,9883,9911,9914,9924,9931,9936,9940,9946,9951,9956,9961,9982,9993,10118,10136,10144,10168,10186,10189,10193,10207,10616,10767,11011,11111,11113,11114,11116,11117,11118,11119,11120,11121,11122,11123,11124,11189,11193,11195,11233,11393,11520,11621,11674,11690,11704,11730,11762,11790,11843,11907,11926,11943,11954,11957,11964,11968,11976,11981,11990,11991,11993,12001,12095,12500,12514,12544,12547,12647,12682,12868,13045,13276,13286,13293,13305,13337,13381,13387,13415,13491,13848,13911,13928,14003,14040,14345,14442,14454,14455,14461,14559,14560,14654,14684,15061,15407,16226,16255,16346,16850,16867,16962,16993,17021,17033,17137,17221,17310,17331,17808,17846,17875,17929,17930,18043,18117,18170,18225,18245,18251,18336,18405,18410,18469,18600,18645,18767,18771,18800,18804,19090,19105,19127,19171,19179,19299,19343,19424,19492,19539,19607,19633,19666,19724,19860,19865,19870,20041,20045,20138,20374,20425,20665,20702,20734,20774,20835,20875,21182,21307,21340,21362,21376,21399,21411,21422,21437,21444,21474,21623,21745,22002,22023,22036,22056,22057,22074,22216,22229,22251,22263,22400,22404,22481,22501,22524,22564,22570,22911]]],["into",[48,47,[[0,3,3,0,3,[[39,2,2,0,2],[41,1,1,2,3]]],[1,1,1,3,4,[[78,1,1,3,4]]],[2,3,3,4,7,[[103,3,3,4,7]]],[9,1,1,7,8,[[272,1,1,7,8]]],[10,2,2,8,10,[[296,1,1,8,9],[310,1,1,9,10]]],[11,8,8,10,18,[[316,1,1,10,11],[322,1,1,11,12],[324,3,3,12,15],[334,3,3,15,18]]],[13,2,2,18,20,[[373,1,1,18,19],[400,1,1,19,20]]],[17,1,1,20,21,[[451,1,1,20,21]]],[18,3,3,21,24,[[493,1,1,21,22],[512,1,1,22,23],[609,1,1,23,24]]],[22,3,3,24,27,[[718,1,1,24,25],[743,2,2,25,27]]],[23,14,13,27,40,[[750,1,1,27,28],[751,1,1,28,29],[760,2,2,29,31],[763,1,1,31,32],[766,3,3,32,35],[776,1,1,35,36],[780,2,1,36,37],[788,1,1,37,38],[795,2,2,38,40]]],[25,5,5,40,45,[[821,1,1,40,41],[830,1,1,41,42],[833,1,1,42,43],[839,1,1,43,44],[848,1,1,44,45]]],[32,1,1,45,46,[[895,1,1,45,46]]],[33,1,1,46,47,[[902,1,1,46,47]]]],[1183,1193,1289,2339,3118,3126,3137,8167,8904,9441,9607,9817,9854,9861,9865,10150,10152,10154,11335,11950,13249,14096,14423,16154,18429,18903,18914,19098,19150,19349,19351,19412,19461,19480,19482,19766,19854,20031,20262,20263,20927,21197,21257,21435,21687,22613,22724]]],["me",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17668]]],["near",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6306]]],["of",[84,75,[[0,5,4,0,4,[[17,1,1,0,1],[20,2,1,1,2],[26,1,1,2,3],[40,1,1,3,4]]],[1,5,5,4,9,[[61,1,1,4,5],[66,1,1,5,6],[72,1,1,6,7],[81,2,2,7,9]]],[2,1,1,9,10,[[95,1,1,9,10]]],[3,1,1,10,11,[[134,1,1,10,11]]],[4,2,2,11,13,[[161,1,1,11,12],[170,1,1,12,13]]],[5,1,1,13,14,[[195,1,1,13,14]]],[6,2,2,14,16,[[219,1,1,14,15],[229,1,1,15,16]]],[9,3,2,16,18,[[268,2,1,16,17],[285,1,1,17,18]]],[10,7,2,18,20,[[294,5,1,18,19],[300,2,1,19,20]]],[11,3,2,20,22,[[319,1,1,20,21],[327,2,1,21,22]]],[12,6,6,22,28,[[346,1,1,22,23],[354,1,1,23,24],[358,1,1,24,25],[359,1,1,25,26],[360,1,1,26,27],[363,1,1,27,28]]],[13,9,8,28,36,[[375,3,2,28,30],[382,1,1,30,31],[389,1,1,31,32],[390,1,1,32,33],[396,1,1,33,34],[400,1,1,34,35],[401,1,1,35,36]]],[15,1,1,36,37,[[418,1,1,36,37]]],[16,1,1,37,38,[[431,1,1,37,38]]],[17,2,2,38,40,[[459,1,1,38,39],[476,1,1,39,40]]],[18,9,9,40,49,[[484,1,1,40,41],[487,1,1,41,42],[517,1,1,42,43],[566,1,1,43,44],[576,1,1,44,45],[581,1,1,45,46],[596,2,2,46,48],[608,1,1,48,49]]],[19,1,1,49,50,[[643,1,1,49,50]]],[20,1,1,50,51,[[660,1,1,50,51]]],[22,2,2,51,53,[[708,1,1,51,52],[717,1,1,52,53]]],[23,9,9,53,62,[[752,1,1,53,54],[755,1,1,54,55],[762,2,2,55,57],[776,1,1,57,58],[778,1,1,58,59],[780,1,1,59,60],[791,1,1,60,61],[796,1,1,61,62]]],[24,1,1,62,63,[[801,1,1,62,63]]],[25,3,3,63,66,[[829,1,1,63,64],[834,2,2,64,66]]],[28,3,3,66,69,[[876,2,2,66,68],[877,1,1,68,69]]],[31,3,3,69,72,[[891,1,1,69,70],[892,2,2,70,72]]],[32,2,2,72,74,[[898,1,1,72,73],[899,1,1,73,74]]],[35,1,1,74,75,[[908,1,1,74,75]]]],[443,525,768,1210,1823,1990,2157,2450,2452,2858,4289,5175,5392,6057,6757,7054,8062,8549,8877,9085,9724,9945,10643,10880,10949,10975,10997,11101,11369,11382,11519,11659,11683,11844,11945,11991,12408,12795,13445,13894,14005,14044,14532,15333,15507,15605,15960,16062,16150,16866,17353,18222,18414,19159,19247,19392,19394,19762,19805,19872,20077,20301,20460,21174,21304,21309,22294,22296,22324,22568,22570,22574,22661,22677,22838]]],["off",[1,1,[[2,1,1,0,1,[[93,1,1,0,1]]]],[2826]]],["office",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12684]]],["on",[290,267,[[0,14,12,0,12,[[5,1,1,0,1],[7,1,1,1,2],[16,1,1,2,3],[19,2,1,3,4],[20,1,1,4,5],[21,1,1,5,6],[23,1,1,6,7],[32,1,1,7,8],[36,1,1,8,9],[39,2,2,9,11],[45,2,1,11,12]]],[1,34,31,12,43,[[51,1,1,12,13],[61,4,3,13,16],[65,1,1,16,17],[66,1,1,17,18],[68,1,1,18,19],[70,1,1,19,20],[73,2,2,20,22],[74,1,1,22,23],[75,3,2,23,25],[77,7,6,25,31],[82,1,1,31,32],[83,1,1,32,33],[85,1,1,33,34],[87,2,2,34,36],[88,5,5,36,41],[89,2,2,41,43]]],[2,19,17,43,60,[[90,4,3,43,46],[92,2,2,46,48],[93,1,1,48,49],[95,2,2,49,51],[96,1,1,51,52],[97,1,1,52,53],[98,1,1,53,54],[100,3,3,54,57],[104,3,2,57,59],[105,1,1,59,60]]],[3,4,4,60,64,[[119,2,2,60,62],[120,1,1,62,63],[130,1,1,63,64]]],[4,10,10,64,74,[[159,1,1,64,65],[161,1,1,65,66],[162,2,2,66,68],[173,1,1,68,69],[174,1,1,69,70],[180,1,1,70,71],[182,1,1,71,72],[184,2,2,72,74]]],[5,4,4,74,78,[[194,1,1,74,75],[196,1,1,75,76],[199,1,1,76,77],[208,1,1,77,78]]],[6,8,8,78,86,[[216,2,2,78,80],[219,1,1,80,81],[220,1,1,81,82],[222,1,1,82,83],[223,2,2,83,85],[226,1,1,85,86]]],[7,2,2,86,88,[[233,1,1,86,87],[234,1,1,87,88]]],[8,11,11,88,99,[[240,1,1,88,89],[241,1,1,89,90],[246,1,1,90,91],[248,1,1,91,92],[256,1,1,92,93],[258,1,1,93,94],[260,3,3,94,97],[261,1,1,97,98],[262,1,1,98,99]]],[9,17,14,99,113,[[267,1,1,99,100],[268,1,1,100,101],[269,1,1,101,102],[270,1,1,102,103],[275,1,1,103,104],[278,1,1,104,105],[279,4,2,105,107],[280,5,4,107,111],[283,1,1,111,112],[287,1,1,112,113]]],[10,40,35,113,148,[[291,4,4,113,117],[292,3,3,117,120],[293,1,1,120,121],[294,1,1,121,122],[297,9,7,122,129],[298,5,5,129,134],[299,1,1,134,135],[300,2,2,135,137],[301,1,1,137,138],[304,1,1,138,139],[306,1,1,139,140],[308,7,4,140,144],[310,1,1,144,145],[312,3,3,145,148]]],[11,31,30,148,178,[[313,2,2,148,150],[314,1,1,150,151],[315,1,1,151,152],[316,2,2,152,154],[317,1,1,154,155],[318,1,1,155,156],[319,2,2,156,158],[320,1,1,158,159],[321,2,2,159,161],[322,2,2,161,163],[323,1,1,163,164],[325,1,1,164,165],[326,1,1,165,166],[327,1,1,166,167],[328,2,2,167,169],[330,7,6,169,175],[332,1,1,175,176],[335,2,2,176,178]]],[12,11,11,178,189,[[343,4,4,178,182],[347,1,1,182,183],[352,2,2,183,185],[355,1,1,185,186],[366,3,3,186,189]]],[13,25,22,189,211,[[369,4,4,189,193],[370,2,1,193,194],[372,2,2,194,196],[373,1,1,196,197],[374,1,1,197,198],[375,1,1,198,199],[380,1,1,199,200],[382,3,2,200,202],[384,2,2,202,204],[386,1,1,204,205],[390,1,1,205,206],[392,1,1,206,207],[394,1,1,207,208],[395,1,1,208,209],[398,1,1,209,210],[402,2,1,210,211]]],[15,1,1,211,212,[[420,1,1,211,212]]],[16,6,6,212,218,[[426,1,1,212,213],[427,1,1,213,214],[431,2,2,214,216],[432,1,1,216,217],[434,1,1,217,218]]],[17,5,5,218,223,[[439,1,1,218,219],[448,1,1,219,220],[450,1,1,220,221],[451,1,1,221,222],[473,1,1,222,223]]],[19,1,1,223,224,[[636,1,1,223,224]]],[21,1,1,224,225,[[673,1,1,224,225]]],[22,15,13,225,238,[[687,2,1,225,226],[689,2,1,226,227],[693,1,1,227,228],[694,1,1,228,229],[706,2,2,229,231],[708,1,1,231,232],[709,2,2,232,234],[714,4,4,234,238]]],[23,6,6,238,244,[[751,1,1,238,239],[757,2,2,239,241],[762,1,1,241,242],[774,1,1,242,243],[780,1,1,243,244]]],[24,1,1,244,245,[[797,1,1,244,245]]],[25,8,8,245,253,[[802,1,1,245,246],[804,1,1,246,247],[805,1,1,247,248],[817,3,3,248,251],[824,1,1,251,252],[844,1,1,252,253]]],[26,3,3,253,256,[[857,2,2,253,255],[859,1,1,255,256]]],[27,4,3,256,259,[[871,3,2,256,258],[872,1,1,258,259]]],[28,1,1,259,260,[[877,1,1,259,260]]],[29,1,1,260,261,[[883,1,1,260,261]]],[31,1,1,261,262,[[892,1,1,261,262]]],[34,2,2,262,264,[[904,2,2,262,264]]],[35,2,2,264,266,[[906,2,2,264,266]]],[37,2,1,266,267,[[922,2,1,266,267]]]],[138,192,400,504,527,556,636,964,1106,1188,1191,1415,1560,1823,1839,1845,1961,1992,2030,2107,2183,2185,2214,2245,2270,2302,2303,2316,2318,2320,2330,2477,2529,2577,2635,2640,2671,2681,2682,2683,2684,2727,2731,2753,2756,2757,2782,2783,2807,2859,2861,2883,2943,2977,2999,3024,3031,3174,3191,3211,3721,3727,3755,4113,5136,5167,5188,5190,5469,5476,5613,5715,5769,5771,6031,6090,6170,6446,6691,6694,6802,6815,6883,6889,6904,6978,7159,7187,7324,7338,7452,7490,7785,7831,7879,7881,7884,7918,7941,8032,8074,8110,8127,8233,8316,8322,8336,8360,8365,8382,8389,8461,8590,8737,8744,8763,8765,8785,8789,8794,8822,8873,8937,8963,8969,8970,8973,8975,8977,9005,9008,9010,9012,9039,9077,9088,9099,9138,9241,9294,9348,9364,9374,9380,9428,9490,9499,9504,9542,9546,9566,9587,9623,9624,9665,9705,9709,9724,9742,9759,9773,9796,9823,9848,9892,9916,9937,9967,9977,10038,10044,10045,10048,10050,10051,10105,10173,10177,10486,10493,10498,10503,10664,10811,10812,10897,11179,11187,11189,11236,11242,11244,11245,11258,11292,11300,11330,11358,11372,11486,11516,11517,11551,11560,11616,11702,11747,11768,11812,11893,12008,12497,12704,12747,12797,12802,12817,12859,12943,13166,13230,13254,13819,16652,17572,17849,17892,17963,17981,18165,18168,18234,18251,18254,18335,18336,18339,18341,19148,19268,19293,19387,19673,19865,20312,20472,20525,20535,20773,20774,20777,21012,21592,21966,21979,22024,22230,22233,22244,22316,22442,22578,22763,22764,22796,22799,23051]]],["ourselves",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12581]]],["over",[414,371,[[0,16,16,0,16,[[7,1,1,0,1],[8,1,1,1,2],[36,1,1,2,3],[38,2,2,3,5],[40,7,7,5,12],[41,1,1,12,13],[46,2,2,13,15],[48,1,1,15,16]]],[1,29,27,16,43,[[50,2,2,16,18],[51,1,1,18,19],[54,1,1,19,20],[57,5,3,20,23],[59,4,4,23,27],[61,3,3,27,30],[63,5,5,30,35],[67,2,2,35,37],[75,2,2,37,39],[79,1,1,39,40],[85,1,1,40,41],[86,1,1,41,42],[89,1,1,42,43]]],[2,5,5,43,48,[[103,3,3,43,46],[105,1,1,46,47],[115,1,1,47,48]]],[3,20,17,48,65,[[117,3,1,48,49],[126,14,13,49,62],[130,1,1,62,63],[132,1,1,63,64],[143,1,1,64,65]]],[4,16,12,65,77,[[153,1,1,65,66],[169,4,2,66,68],[173,1,1,68,69],[180,4,3,69,72],[182,2,1,72,73],[183,1,1,73,74],[184,2,2,74,76],[186,1,1,76,77]]],[5,3,3,77,80,[[190,1,1,77,78],[193,1,1,78,79],[194,1,1,79,80]]],[6,12,11,80,91,[[219,11,10,80,90],[221,1,1,90,91]]],[7,3,3,91,94,[[233,2,2,91,93],[234,1,1,93,94]]],[8,29,28,94,122,[[237,1,1,94,95],[243,4,4,95,99],[244,1,1,99,100],[245,2,2,100,102],[246,1,1,102,103],[247,4,4,103,107],[248,2,2,107,109],[249,1,1,109,110],[250,6,5,110,115],[251,1,1,115,116],[253,1,1,116,117],[254,1,1,117,118],[257,2,2,118,120],[258,1,1,120,121],[260,1,1,121,122]]],[9,38,29,122,151,[[267,2,1,122,123],[268,7,5,123,128],[269,4,3,128,131],[270,1,1,131,132],[271,7,5,132,137],[272,2,1,137,138],[273,4,3,138,141],[274,2,2,141,143],[278,1,1,143,144],[283,1,1,144,145],[284,2,2,145,147],[285,2,2,147,149],[286,3,2,149,151]]],[10,43,38,151,189,[[291,3,2,151,153],[292,2,2,153,155],[294,6,5,155,160],[295,3,3,160,163],[296,1,1,163,164],[298,1,1,164,165],[299,1,1,165,166],[301,3,3,166,169],[302,3,3,169,172],[303,1,1,172,173],[304,3,3,173,176],[305,4,3,176,179],[306,7,6,179,185],[309,2,2,185,187],[312,3,2,187,189]]],[11,25,24,189,213,[[315,1,1,189,190],[320,2,2,190,192],[321,1,1,192,193],[322,4,3,193,196],[323,2,2,196,198],[325,3,3,198,201],[327,5,5,201,206],[329,1,1,206,207],[330,2,2,207,209],[331,1,1,209,210],[333,1,1,210,211],[337,2,2,211,213]]],[12,47,40,213,253,[[343,1,1,213,214],[346,6,5,214,219],[348,3,3,219,222],[349,2,2,222,224],[351,2,2,224,226],[354,2,2,226,228],[355,3,3,228,231],[358,1,1,231,232],[359,1,1,232,233],[360,1,1,233,234],[363,5,5,234,239],[364,13,9,239,248],[365,3,2,248,250],[366,4,3,250,253]]],[13,23,23,253,276,[[367,3,3,253,256],[368,1,1,256,257],[371,1,1,257,258],[372,2,2,258,260],[375,2,2,260,262],[376,2,2,262,264],[379,2,2,264,266],[385,1,1,266,267],[386,1,1,267,268],[388,1,1,268,269],[392,1,1,269,270],[397,2,2,270,272],[398,1,1,272,273],[400,1,1,273,274],[402,2,2,274,276]]],[15,10,9,276,285,[[417,1,1,276,277],[419,1,1,277,278],[421,2,1,278,279],[423,2,2,279,281],[424,2,2,281,283],[425,2,2,283,285]]],[16,2,2,285,287,[[428,1,1,285,286],[433,1,1,286,287]]],[17,6,6,287,293,[[441,1,1,287,288],[442,1,1,288,289],[449,1,1,289,290],[461,1,1,290,291],[476,1,1,291,292],[477,1,1,292,293]]],[18,16,15,293,308,[[490,1,1,293,294],[518,1,1,294,295],[519,1,1,295,296],[524,2,2,296,298],[537,1,1,298,299],[545,1,1,299,300],[560,1,1,300,301],[565,1,1,301,302],[585,2,1,302,303],[586,1,1,303,304],[587,1,1,304,305],[601,2,2,305,307],[622,1,1,307,308]]],[19,3,3,308,311,[[646,1,1,308,309],[647,1,1,309,310],[655,1,1,310,311]]],[20,1,1,311,312,[[659,1,1,311,312]]],[21,1,1,312,313,[[672,1,1,312,313]]],[22,16,12,313,325,[[686,2,1,313,314],[689,1,1,314,315],[693,2,1,315,316],[697,1,1,316,317],[700,1,1,317,318],[701,1,1,318,319],[703,2,1,319,320],[714,2,2,320,322],[715,1,1,322,323],[732,1,1,323,324],[740,2,1,324,325]]],[23,14,12,325,337,[[745,2,1,325,326],[749,1,1,326,327],[750,1,1,327,328],[757,1,1,328,329],[759,1,1,329,330],[767,1,1,330,331],[775,2,1,331,332],[776,1,1,332,333],[784,1,1,333,334],[787,1,1,334,335],[788,1,1,335,336],[793,1,1,336,337]]],[24,2,2,337,339,[[798,1,1,337,338],[799,1,1,338,339]]],[25,19,19,339,358,[[802,3,3,339,342],[811,5,5,342,347],[812,1,1,347,348],[817,2,2,348,350],[820,1,1,350,351],[821,1,1,351,352],[828,1,1,352,353],[833,3,3,353,356],[835,1,1,356,357],[838,1,1,357,358]]],[26,2,2,358,360,[[850,1,1,358,359],[858,1,1,359,360]]],[27,1,1,360,361,[[871,1,1,360,361]]],[31,2,2,361,363,[[890,1,1,361,362],[892,1,1,362,363]]],[32,3,2,363,365,[[895,2,1,363,364],[896,1,1,364,365]]],[33,1,1,365,366,[[902,1,1,365,366]]],[35,2,1,366,367,[[908,2,1,366,367]]],[36,1,1,367,368,[[909,1,1,367,368]]],[37,3,3,368,371,[[915,1,1,368,369],[919,1,1,369,370],[924,1,1,370,371]]]],[184,219,1091,1153,1154,1228,1229,1235,1236,1238,1240,1251,1258,1440,1446,1495,1540,1543,1568,1646,1715,1716,1719,1789,1790,1791,1798,1829,1839,1843,1896,1905,1910,1915,1916,2020,2024,2247,2248,2388,2580,2613,2726,3116,3117,3161,3222,3540,3654,3998,4002,4003,4004,4006,4007,4008,4010,4011,4012,4013,4014,4015,4122,4207,4570,4907,5378,5379,5453,5634,5647,5674,5717,5743,5769,5807,5840,5928,6002,6033,6762,6763,6764,6765,6766,6767,6768,6769,6772,6776,6840,7154,7155,7181,7241,7376,7378,7380,7388,7407,7419,7437,7457,7461,7472,7473,7474,7486,7499,7555,7561,7567,7577,7586,7595,7596,7681,7726,7789,7796,7827,7891,8039,8053,8056,8058,8059,8060,8091,8098,8115,8132,8134,8135,8137,8144,8149,8178,8188,8191,8206,8224,8225,8293,8468,8479,8486,8521,8533,8577,8578,8751,8752,8781,8805,8845,8848,8849,8850,8851,8885,8892,8894,8897,9001,9074,9133,9145,9150,9168,9169,9171,9214,9220,9225,9232,9250,9274,9282,9285,9291,9299,9301,9306,9312,9402,9403,9521,9531,9577,9740,9747,9785,9798,9815,9829,9832,9847,9872,9881,9885,9930,9933,9942,9948,9952,9984,10042,10061,10063,10132,10241,10244,10485,10634,10635,10641,10646,10647,10675,10676,10698,10724,10758,10776,10782,10870,10873,10904,10905,10907,10950,10974,10984,11097,11099,11103,11106,11109,11113,11125,11134,11135,11136,11137,11138,11139,11140,11147,11148,11190,11191,11194,11203,11205,11207,11222,11276,11287,11288,11372,11394,11412,11413,11454,11458,11587,11618,11656,11753,11866,11868,11881,11946,11997,12003,12397,12422,12548,12597,12609,12632,12668,12684,12697,12759,12819,12983,13020,13197,13474,13922,13933,14076,14553,14562,14627,14633,14815,14934,15259,15324,15751,15761,15792,16106,16107,16329,16936,16980,17211,17327,17558,17814,17899,17962,18020,18067,18088,18125,18333,18352,18354,18732,18859,18956,19064,19106,19287,19318,19488,19719,19772,19952,20007,20037,20149,20349,20408,20486,20489,20490,20634,20635,20637,20651,20652,20677,20770,20789,20889,20928,21153,21251,21256,21279,21336,21421,21748,21989,22230,22551,22574,22614,22627,22731,22837,22850,22939,23013,23077]]],["oversee",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10644]]],["oversight",[2,2,[[12,1,1,0,1,[[346,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[10638,12604]]],["presence",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7787]]],["provocation",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19762]]],["sake",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14942]]],["sakes",[3,3,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,2,2,1,3,[[484,1,1,1,2],[582,1,1,2,3]]]],[10841,14002,15620]]],["steward",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9292]]],["than",[5,5,[[3,1,1,0,1,[[119,1,1,0,1]]],[17,1,1,1,2,[[458,1,1,1,2]]],[20,2,2,2,4,[[659,1,1,2,3],[663,1,1,3,4]]],[26,1,1,4,5,[[850,1,1,4,5]]]],[3738,13421,17331,17405,21757]]],["that",[3,3,[[0,1,1,0,1,[[30,1,1,0,1]]],[2,1,1,1,2,[[113,1,1,1,2]]],[13,1,1,2,3,[[395,1,1,2,3]]]],[893,3458,11827]]],["thee",[1,1,[[10,1,1,0,1,[[292,1,1,0,1]]]],[8813]]],["them",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13984]]],["thereby",[3,3,[[23,2,2,0,2,[[762,1,1,0,1],[763,1,1,1,2]]],[25,1,1,2,3,[[834,1,1,2,3]]]],[19400,19415,21299]]],["therein",[10,10,[[2,1,1,0,1,[[114,1,1,0,1]]],[3,2,2,1,3,[[129,1,1,1,2],[132,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[18,1,1,4,5,[[514,1,1,4,5]]],[23,2,2,5,7,[[780,2,2,5,7]]],[25,2,2,7,9,[[829,1,1,7,8],[838,1,1,8,9]]],[34,1,1,9,10,[[904,1,1,9,10]]]],[3488,4093,4240,12517,14479,19871,19874,21183,21422,22766]]],["thereon",[43,39,[[0,2,1,0,1,[[34,2,1,0,1]]],[1,7,6,1,7,[[66,1,1,1,2],[69,1,1,2,3],[79,3,2,3,5],[89,2,2,5,7]]],[2,7,7,7,14,[[91,3,3,7,10],[94,1,1,10,11],[95,1,1,11,12],[99,1,1,12,13],[100,1,1,13,14]]],[3,5,5,14,19,[[120,3,3,14,17],[121,1,1,17,18],[125,1,1,18,19]]],[4,1,1,19,20,[[179,1,1,19,20]]],[5,4,3,20,23,[[194,2,2,20,22],[208,2,1,22,23]]],[9,2,2,23,25,[[283,1,1,23,24],[285,1,1,24,25]]],[10,1,1,25,26,[[303,1,1,25,26]]],[11,1,1,26,27,[[328,1,1,26,27]]],[12,1,1,27,28,[[352,1,1,27,28]]],[13,3,3,28,31,[[369,2,2,28,30],[399,1,1,30,31]]],[14,2,2,31,33,[[405,2,2,31,33]]],[16,2,2,33,35,[[430,1,1,33,34],[432,1,1,34,35]]],[22,1,1,35,36,[[708,1,1,35,36]]],[25,3,2,36,38,[[816,1,1,36,37],[844,2,1,37,38]]],[37,1,1,38,39,[[914,1,1,38,39]]]],[1025,1995,2077,2389,2391,2734,2742,2763,2768,2777,2841,2861,2978,3035,3749,3750,3756,3807,3987,5591,6031,6033,6449,8468,8537,9197,9975,10806,11234,11243,11924,12099,12100,12793,12816,18229,20757,21590,22924]]],["thereto",[8,8,[[2,4,4,0,4,[[94,1,1,0,1],[95,1,1,1,2],[116,2,2,2,4]]],[3,1,1,4,5,[[135,1,1,4,5]]],[4,1,1,5,6,[[164,1,1,5,6]]],[12,1,1,6,7,[[359,1,1,6,7]]],[13,1,1,7,8,[[376,1,1,7,8]]]],[2846,2854,3597,3601,4306,5272,10978,11409]]],["thereupon",[3,3,[[1,1,1,0,1,[[80,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]],[35,1,1,2,3,[[907,1,1,2,3]]]],[2427,20778,22812]]],["therewith",[2,2,[[4,1,1,0,1,[[168,1,1,0,1]]],[25,1,1,1,2,[[805,1,1,1,2]]]],[5345,20544]]],["through",[6,6,[[11,1,1,0,1,[[336,1,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]],[18,1,1,2,3,[[558,1,1,2,3]]],[23,1,1,3,4,[[796,1,1,3,4]]],[26,1,1,4,5,[[857,1,1,4,5]]],[37,1,1,5,6,[[919,1,1,5,6]]]],[10222,13539,15222,20279,21986,23007]]],["throughout",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11590]]],["to",[193,174,[[0,5,4,0,4,[[17,1,1,0,1],[23,2,1,1,2],[42,1,1,2,3],[44,1,1,3,4]]],[1,9,8,4,12,[[55,1,1,4,5],[66,1,1,5,6],[67,1,1,6,7],[77,2,2,7,9],[83,1,1,9,10],[87,1,1,10,11],[88,2,1,11,12]]],[2,3,3,12,15,[[93,1,1,12,13],[94,1,1,13,14],[110,1,1,14,15]]],[3,17,14,15,29,[[118,1,1,15,16],[119,2,2,16,18],[120,7,5,18,23],[125,2,1,23,24],[126,1,1,24,25],[151,2,2,25,27],[152,2,2,27,29]]],[4,4,3,29,32,[[169,2,1,29,30],[179,1,1,30,31],[186,1,1,31,32]]],[6,2,2,32,34,[[219,2,2,32,34]]],[8,4,4,34,38,[[237,1,1,34,35],[240,1,1,35,36],[241,1,1,36,37],[248,1,1,37,38]]],[9,7,5,38,43,[[268,4,2,38,40],[270,1,1,40,41],[278,1,1,41,42],[284,1,1,42,43]]],[10,8,8,43,51,[[291,1,1,43,44],[299,1,1,44,45],[300,2,2,45,47],[302,2,2,47,49],[305,1,1,49,50],[310,1,1,50,51]]],[11,8,7,51,58,[[324,1,1,51,52],[328,1,1,52,53],[330,2,1,53,54],[335,1,1,54,55],[336,1,1,55,56],[337,2,2,56,58]]],[12,10,10,58,68,[[348,1,1,58,59],[349,4,4,59,63],[350,1,1,63,64],[359,1,1,64,65],[362,3,3,65,68]]],[13,20,17,68,85,[[367,1,1,68,69],[368,1,1,69,70],[374,2,1,70,71],[375,2,2,71,73],[376,1,1,73,74],[377,1,1,74,75],[378,1,1,75,76],[381,1,1,76,77],[385,1,1,77,78],[387,1,1,78,79],[391,1,1,79,80],[394,2,1,80,81],[396,2,1,81,82],[398,1,1,82,83],[400,1,1,83,84],[402,1,1,84,85]]],[14,1,1,85,86,[[409,1,1,85,86]]],[15,5,5,86,91,[[414,1,1,86,87],[415,2,2,87,89],[422,1,1,89,90],[424,1,1,90,91]]],[16,9,7,91,98,[[426,5,3,91,94],[428,1,1,94,95],[429,2,2,95,97],[431,1,1,97,98]]],[17,5,5,98,103,[[436,1,1,98,99],[442,1,1,99,100],[444,1,1,100,101],[456,1,1,101,102],[466,1,1,102,103]]],[18,3,3,103,106,[[493,1,1,103,104],[571,1,1,104,105],[610,1,1,105,106]]],[19,8,7,106,113,[[643,1,1,106,107],[644,2,1,107,108],[651,1,1,108,109],[652,2,2,109,111],[653,1,1,111,112],[656,1,1,112,113]]],[20,3,3,113,116,[[661,1,1,113,114],[665,1,1,114,115],[670,1,1,115,116]]],[22,21,21,116,137,[[688,2,2,116,118],[692,1,1,118,119],[693,1,1,119,120],[695,1,1,120,121],[707,2,2,121,123],[708,2,2,123,125],[712,1,1,125,126],[714,1,1,126,127],[720,1,1,127,128],[724,1,1,128,129],[725,1,1,129,130],[731,1,1,130,131],[734,2,2,131,133],[735,2,2,133,135],[743,1,1,135,136],[744,1,1,136,137]]],[23,25,23,137,160,[[745,1,1,137,138],[747,2,2,138,140],[755,2,2,140,142],[756,1,1,142,143],[758,1,1,143,144],[762,1,1,144,145],[765,1,1,145,146],[766,1,1,146,147],[767,2,2,147,149],[768,1,1,149,150],[769,1,1,150,151],[770,1,1,151,152],[773,1,1,152,153],[780,1,1,153,154],[781,1,1,154,155],[783,2,2,155,157],[788,3,1,157,158],[789,1,1,158,159],[795,1,1,159,160]]],[24,1,1,160,161,[[800,1,1,160,161]]],[25,7,7,161,168,[[814,1,1,161,162],[829,1,1,162,163],[834,1,1,163,164],[839,1,1,164,165],[840,1,1,165,166],[842,1,1,166,167],[845,1,1,167,168]]],[26,2,2,168,170,[[860,2,2,168,170]]],[29,1,1,170,171,[[884,1,1,170,171]]],[32,1,1,171,172,[[893,1,1,171,172]]],[38,4,2,172,174,[[926,2,1,172,173],[928,2,1,173,174]]]],[429,640,1297,1379,1681,1984,2022,2307,2314,2503,2659,2678,2830,2842,3356,3692,3708,3743,3762,3780,3784,3788,3792,3985,4001,4851,4869,4882,4884,5375,5598,5844,6803,6805,7251,7323,7343,7503,8068,8070,8122,8303,8511,8755,9056,9095,9096,9162,9165,9276,9451,9867,9975,10051,10194,10214,10233,10242,10688,10739,10740,10742,10743,10770,10972,11048,11049,11052,11200,11215,11360,11379,11380,11406,11427,11447,11499,11586,11628,11707,11777,11828,11880,11950,12008,12184,12314,12329,12346,12578,12646,12708,12710,12718,12756,12767,12769,12802,12880,13028,13077,13386,13593,14094,15433,16171,16863,16877,17092,17133,17138,17152,17236,17373,17443,17530,17853,17878,17929,17967,17990,18194,18205,18218,18223,18317,18342,18505,18594,18606,18712,18759,18761,18766,18776,18900,18942,18953,19018,19020,19228,19236,19260,19296,19395,19449,19481,19487,19519,19530,19535,19577,19666,19871,19888,19932,19935,20030,20043,20275,20428,20726,21174,21293,21436,21465,21533,21612,22057,22070,22455,22593,23105,23144]]],["touching",[2,2,[[2,1,1,0,1,[[94,1,1,0,1]]],[23,1,1,1,2,[[745,1,1,1,2]]]],[2843,18962]]],["toward",[20,20,[[1,4,4,0,4,[[58,2,2,0,2],[59,2,2,2,4]]],[5,1,1,4,5,[[189,1,1,4,5]]],[9,2,2,5,7,[[280,1,1,5,6],[290,1,1,6,7]]],[13,1,1,7,8,[[386,1,1,7,8]]],[14,1,1,8,9,[[405,1,1,8,9]]],[18,5,5,9,14,[[543,1,1,9,10],[563,1,1,10,11],[580,1,1,11,12],[593,1,1,12,13],[594,1,1,13,14]]],[21,1,1,14,15,[[677,1,1,14,15]]],[23,2,2,15,17,[[773,2,2,15,17]]],[25,3,3,17,20,[[818,1,1,17,18],[849,2,2,18,20]]]],[1764,1765,1798,1799,5909,8357,8712,11611,12108,14878,15297,15560,15860,15869,17637,19645,19646,20832,21723,21730]]],["under",[8,8,[[12,4,4,0,4,[[362,3,3,0,3],[363,1,1,3,4]]],[13,2,2,4,6,[[392,2,2,4,6]]],[23,1,1,6,7,[[777,1,1,6,7]]],[24,1,1,7,8,[[801,1,1,7,8]]]],[11048,11049,11052,11105,11743,11745,19788,20447]]],["unto",[165,155,[[0,14,12,0,12,[[18,2,2,0,2],[27,1,1,2,3],[29,1,1,3,4],[32,3,1,4,5],[37,1,1,5,6],[39,2,2,6,8],[40,2,2,8,10],[47,1,1,10,11],[48,1,1,11,12]]],[1,8,7,12,19,[[50,1,1,12,13],[69,2,2,13,15],[78,2,1,15,16],[81,1,1,16,17],[83,1,1,17,18],[88,1,1,18,19]]],[2,5,5,19,24,[[111,1,1,19,20],[115,1,1,20,21],[116,3,3,21,24]]],[3,13,13,24,37,[[118,1,1,24,25],[120,1,1,25,26],[121,1,1,26,27],[123,1,1,27,28],[127,3,3,28,31],[130,1,1,31,32],[134,2,2,32,34],[149,1,1,34,35],[150,1,1,35,36],[152,1,1,36,37]]],[4,4,4,37,41,[[156,1,1,37,38],[157,1,1,38,39],[175,1,1,39,40],[177,1,1,40,41]]],[5,3,3,41,44,[[188,2,2,41,43],[205,1,1,43,44]]],[6,3,2,44,46,[[217,1,1,44,45],[228,2,1,45,46]]],[8,7,7,46,53,[[236,1,1,46,47],[239,1,1,47,48],[247,1,1,48,49],[249,2,2,49,51],[259,1,1,51,52],[260,1,1,52,53]]],[9,5,5,53,58,[[279,1,1,53,54],[281,2,2,54,56],[283,1,1,56,57],[286,1,1,57,58]]],[10,4,4,58,62,[[292,1,1,58,59],[298,1,1,59,60],[301,1,1,60,61],[304,1,1,61,62]]],[11,6,6,62,68,[[330,1,1,62,63],[332,2,2,63,65],[334,3,3,65,68]]],[12,6,5,68,73,[[349,1,1,68,69],[350,2,1,69,70],[354,1,1,70,71],[359,1,1,71,72],[360,1,1,72,73]]],[13,14,13,73,86,[[371,1,1,73,74],[374,1,1,74,75],[379,1,1,75,76],[381,1,1,76,77],[384,2,2,77,79],[394,2,2,79,81],[396,1,1,81,82],[398,5,4,82,86]]],[14,7,7,86,93,[[406,1,1,86,87],[408,1,1,87,88],[409,1,1,88,89],[410,2,2,89,91],[411,1,1,91,92],[412,1,1,92,93]]],[15,18,14,93,107,[[415,13,9,93,102],[416,1,1,102,103],[417,2,2,103,105],[418,2,2,105,107]]],[16,3,3,107,110,[[426,1,1,107,108],[430,1,1,108,109],[434,1,1,109,110]]],[17,5,5,110,115,[[457,1,1,110,111],[469,3,3,111,114],[472,1,1,114,115]]],[18,8,8,115,123,[[487,1,1,115,116],[495,1,1,116,117],[496,1,1,117,118],[514,1,1,118,119],[525,2,2,119,121],[546,1,1,121,122],[567,1,1,122,123]]],[19,1,1,123,124,[[657,1,1,123,124]]],[20,1,1,124,125,[[660,1,1,124,125]]],[22,5,5,125,130,[[700,1,1,125,126],[709,1,1,126,127],[716,1,1,127,128],[723,1,1,128,129],[738,1,1,129,130]]],[23,15,15,130,145,[[747,1,1,130,131],[750,1,1,131,132],[751,1,1,132,133],[754,1,1,133,134],[756,1,1,134,135],[766,1,1,135,136],[767,1,1,136,137],[769,1,1,137,138],[770,2,2,138,140],[780,1,1,140,141],[784,1,1,141,142],[789,1,1,142,143],[793,1,1,143,144],[794,1,1,144,145]]],[24,1,1,145,146,[[800,1,1,145,146]]],[25,5,5,146,151,[[814,1,1,146,147],[839,1,1,147,148],[840,1,1,148,149],[841,1,1,149,150],[848,1,1,150,151]]],[32,2,2,151,153,[[896,1,1,151,152],[897,1,1,152,153]]],[34,1,1,153,154,[[904,1,1,153,154]]],[35,1,1,154,155,[[907,1,1,154,155]]]],[473,488,782,870,961,1131,1185,1193,1208,1235,1468,1486,1542,2056,2077,2353,2439,2503,2695,3383,3525,3583,3585,3589,3663,3770,3799,3859,4036,4037,4049,4126,4259,4261,4767,4827,4883,5006,5062,5525,5552,5876,5877,6333,6716,7020,7222,7317,7479,7512,7518,7861,7877,8342,8393,8422,8460,8562,8796,8990,9132,9245,10038,10104,10111,10153,10158,10165,10737,10762,10889,10973,11014,11274,11361,11460,11494,11549,11559,11780,11784,11836,11884,11893,11900,11906,12117,12173,12201,12218,12227,12246,12256,12329,12331,12332,12334,12335,12336,12337,12339,12344,12371,12397,12398,12404,12418,12719,12783,12861,13391,13698,13711,13720,13772,14055,14159,14174,14455,14644,14648,14962,15394,17257,17350,18067,18251,18395,18575,18826,19004,19108,19140,19202,19260,19460,19500,19536,19574,19587,19874,19945,20042,20156,20193,20441,20711,21432,21476,21492,21697,22621,22636,22764,22816]]],["upon",[1543,1305,[[0,99,87,0,87,[[0,9,8,0,8],[1,2,2,8,10],[2,1,1,10,11],[5,2,2,11,13],[6,15,13,13,26],[7,4,3,26,29],[8,5,4,29,33],[10,3,3,33,36],[14,3,2,36,38],[15,1,1,38,39],[16,1,1,39,40],[17,1,1,40,41],[18,3,2,41,43],[21,3,3,43,46],[23,6,5,46,51],[25,1,1,51,52],[26,3,2,52,54],[27,1,1,54,55],[28,2,2,55,57],[29,1,1,57,58],[30,5,5,58,63],[31,2,2,63,65],[33,2,2,65,67],[34,2,2,67,69],[37,3,3,69,72],[40,3,3,72,75],[42,1,1,75,76],[43,1,1,76,77],[44,3,2,77,79],[45,1,1,79,80],[46,1,1,80,81],[47,5,4,81,85],[49,3,2,85,87]]],[1,145,116,87,203,[[50,1,1,87,88],[52,3,2,88,90],[53,1,1,90,91],[54,3,3,91,94],[56,7,3,94,97],[57,3,3,97,100],[58,7,4,100,104],[59,2,2,104,106],[60,3,2,106,108],[61,4,4,108,112],[62,2,2,112,114],[63,4,2,114,116],[64,3,3,116,119],[65,1,1,119,120],[66,1,1,120,121],[68,4,4,121,125],[69,3,3,125,128],[70,4,4,128,132],[71,2,2,132,134],[73,1,1,134,135],[74,4,4,135,139],[75,5,4,139,143],[76,3,3,143,146],[77,18,14,146,160],[78,21,12,160,172],[79,4,3,172,175],[81,4,4,175,179],[82,2,2,179,181],[83,5,4,181,185],[85,2,1,185,186],[86,5,4,186,190],[88,7,7,190,197],[89,6,6,197,203]]],[2,157,119,203,322,[[90,10,7,203,210],[91,2,2,210,212],[92,13,9,212,221],[93,13,13,221,234],[94,2,2,234,236],[95,7,6,236,242],[96,2,2,242,244],[97,31,18,244,262],[98,8,8,262,270],[99,2,2,270,272],[100,14,11,272,283],[102,1,1,283,284],[103,17,7,284,291],[104,5,4,291,295],[105,13,10,295,305],[106,2,2,305,307],[107,1,1,307,308],[108,2,2,308,310],[110,2,2,310,312],[111,2,2,312,314],[113,4,4,314,318],[115,4,4,318,322]]],[3,70,62,322,384,[[117,1,1,322,323],[120,7,6,323,329],[121,4,3,329,332],[122,4,4,332,336],[123,1,1,336,337],[124,3,3,337,340],[125,5,5,340,345],[126,1,1,345,346],[127,10,7,346,353],[128,2,2,353,355],[130,2,2,355,357],[131,1,1,357,358],[132,4,4,358,362],[133,2,2,362,364],[134,2,2,364,366],[135,9,6,366,372],[136,1,1,372,373],[137,2,2,373,375],[138,2,2,375,377],[140,1,1,377,378],[143,3,3,378,381],[146,1,1,381,382],[151,2,2,382,384]]],[4,59,54,384,438,[[154,1,1,384,385],[156,7,7,385,392],[157,1,1,392,393],[158,2,2,393,395],[159,3,3,395,398],[163,5,4,398,402],[164,8,6,402,408],[167,1,1,408,409],[169,1,1,409,410],[171,1,1,410,411],[173,1,1,411,412],[174,5,4,412,416],[175,1,1,416,417],[176,1,1,417,418],[178,1,1,418,419],[179,4,4,419,423],[180,6,6,423,429],[181,1,1,429,430],[182,3,3,430,433],[184,3,2,433,435],[185,2,2,435,437],[186,1,1,437,438]]],[5,20,17,438,455,[[188,3,3,438,441],[190,1,1,441,442],[193,3,2,442,444],[194,1,1,444,445],[195,2,2,445,447],[196,4,3,447,450],[197,1,1,450,451],[198,1,1,451,452],[199,1,1,452,453],[209,2,1,453,454],[210,1,1,454,455]]],[6,43,40,455,495,[[213,2,2,455,457],[216,4,4,457,461],[217,2,2,461,463],[219,8,7,463,470],[221,3,3,470,473],[222,1,1,473,474],[223,1,1,474,475],[224,2,2,475,477],[225,2,1,477,478],[226,12,11,478,489],[228,1,1,489,490],[229,3,3,490,493],[230,2,2,493,495]]],[7,4,4,495,499,[[234,2,2,495,497],[235,2,2,497,499]]],[8,38,35,499,534,[[236,2,2,499,501],[237,3,3,501,504],[239,3,3,504,507],[240,2,1,507,508],[242,1,1,508,509],[244,2,2,509,511],[245,3,3,511,514],[246,2,2,514,516],[249,2,1,516,517],[251,1,1,517,518],[252,4,4,518,522],[253,1,1,522,523],[254,2,2,523,525],[255,3,3,525,528],[260,1,1,528,529],[261,1,1,529,530],[265,3,2,530,532],[266,2,2,532,534]]],[9,32,29,534,563,[[267,9,8,534,542],[270,1,1,542,543],[277,3,3,543,546],[279,2,2,546,548],[281,2,2,548,550],[282,3,3,550,553],[283,2,2,553,555],[284,2,2,555,557],[286,3,2,557,559],[287,1,1,559,560],[288,4,3,560,563]]],[10,59,50,563,613,[[291,10,10,563,573],[292,2,2,573,575],[293,2,2,575,577],[295,1,1,577,578],[296,4,2,578,580],[297,17,13,580,593],[298,1,1,593,594],[299,3,3,594,597],[302,5,4,597,601],[303,4,2,601,603],[307,3,3,603,606],[308,2,2,606,608],[310,2,2,608,610],[311,3,3,610,613]]],[11,37,28,613,641,[[315,3,3,613,616],[316,9,5,616,621],[318,3,2,621,623],[319,1,1,623,624],[321,2,2,624,626],[323,1,1,626,627],[325,3,2,627,629],[328,3,3,629,632],[330,3,2,632,634],[333,1,1,634,635],[334,2,2,635,637],[335,4,3,637,640],[337,2,1,640,641]]],[12,14,14,641,655,[[342,1,1,641,642],[343,1,1,642,643],[346,1,1,643,644],[347,1,1,644,645],[349,1,1,645,646],[351,1,1,646,647],[353,1,1,647,648],[357,1,1,648,649],[358,2,2,649,651],[365,3,3,651,654],[366,1,1,654,655]]],[13,55,47,655,702,[[367,1,1,655,656],[370,3,2,656,658],[372,4,3,658,661],[373,3,2,661,663],[375,1,1,663,664],[376,3,3,664,667],[379,2,2,667,669],[380,1,1,669,670],[381,2,2,670,672],[383,1,1,672,673],[384,3,3,673,676],[385,4,3,676,679],[386,3,3,679,682],[389,2,2,682,684],[390,3,3,684,687],[391,1,1,687,688],[392,2,2,688,690],[394,1,1,690,691],[395,2,2,691,693],[398,5,4,693,697],[400,5,3,697,700],[401,1,1,700,701],[402,2,1,701,702]]],[14,10,9,702,711,[[405,2,1,702,703],[409,3,3,703,706],[410,3,3,706,709],[411,2,2,709,711]]],[15,14,12,711,723,[[414,2,2,711,713],[416,1,1,713,714],[417,1,1,714,715],[420,2,2,715,717],[421,4,4,717,721],[422,1,1,721,722],[425,3,1,722,723]]],[16,14,12,723,735,[[426,1,1,723,724],[430,1,1,724,725],[431,1,1,725,726],[432,1,1,726,727],[433,2,2,727,729],[434,7,5,729,734],[435,1,1,734,735]]],[17,63,62,735,797,[[436,2,2,735,737],[437,2,2,737,739],[438,2,2,739,741],[442,1,1,741,742],[443,2,2,742,744],[444,2,2,744,746],[445,2,2,746,748],[447,1,1,748,749],[448,2,2,749,751],[449,2,2,751,753],[451,4,4,753,757],[453,2,2,757,759],[454,1,1,759,760],[455,3,3,760,763],[456,3,3,763,766],[457,1,1,766,767],[459,1,1,767,768],[460,1,1,768,769],[461,2,2,769,771],[462,2,2,771,773],[464,4,4,773,777],[465,2,2,777,779],[466,3,3,779,782],[468,5,4,782,786],[469,2,2,786,788],[471,2,2,788,790],[472,1,1,790,791],[473,2,2,791,793],[474,1,1,793,794],[476,2,2,794,796],[477,1,1,796,797]]],[18,76,70,797,867,[[479,1,1,797,798],[480,1,1,798,799],[481,2,2,799,801],[484,1,1,801,802],[488,1,1,802,803],[491,1,1,803,804],[495,3,2,804,806],[498,1,1,806,807],[499,4,4,807,811],[501,2,1,811,812],[504,1,1,812,813],[506,2,1,813,814],[508,1,1,814,815],[509,1,1,815,816],[510,1,1,816,817],[512,1,1,817,818],[513,1,1,818,819],[514,1,1,819,820],[517,1,1,820,821],[518,1,1,821,822],[522,1,1,822,823],[524,1,1,823,824],[528,1,1,824,825],[530,1,1,825,826],[532,5,5,826,831],[533,1,1,831,832],[540,1,1,832,833],[541,1,1,833,834],[546,3,3,834,837],[549,1,1,837,838],[555,2,2,838,840],[556,1,1,840,841],[557,2,1,841,842],[565,1,1,842,843],[566,1,1,843,844],[567,2,1,844,845],[568,1,1,845,846],[569,1,1,846,847],[571,1,1,847,848],[579,1,1,848,849],[580,1,1,849,850],[581,1,1,850,851],[582,2,2,851,853],[584,1,1,853,854],[596,1,1,854,855],[598,1,1,855,856],[602,2,2,856,858],[605,1,1,858,859],[606,1,1,859,860],[609,1,1,860,861],[610,3,2,861,863],[614,1,1,863,864],[616,1,1,864,865],[617,1,1,865,866],[626,1,1,866,867]]],[19,16,14,867,881,[[628,1,1,867,868],[630,1,1,868,869],[633,2,2,869,871],[634,2,1,871,872],[635,1,1,872,873],[636,1,1,873,874],[646,1,1,874,875],[651,1,1,875,876],[652,3,3,876,879],[653,2,1,879,880],[657,1,1,880,881]]],[20,9,8,881,889,[[663,1,1,881,882],[666,3,3,882,885],[667,1,1,885,886],[668,2,1,886,887],[669,2,2,887,889]]],[21,12,10,889,899,[[672,3,2,889,891],[673,1,1,891,892],[675,2,2,892,894],[677,1,1,894,895],[678,5,4,895,899]]],[22,110,83,899,982,[[679,1,1,899,900],[680,10,5,900,905],[682,3,1,905,906],[683,1,1,906,907],[684,2,2,907,909],[685,3,1,909,910],[686,1,1,910,911],[687,4,3,911,914],[688,3,2,914,916],[689,1,1,916,917],[691,1,1,917,918],[692,3,2,918,920],[693,1,1,920,921],[694,1,1,921,922],[696,3,2,922,924],[697,2,2,924,926],[698,2,1,926,927],[699,1,1,927,928],[700,3,3,928,931],[701,1,1,931,932],[702,3,3,932,935],[706,2,2,935,937],[707,1,1,937,938],[708,8,5,938,943],[710,3,3,943,946],[712,5,3,946,949],[713,1,1,949,950],[714,2,2,950,952],[716,1,1,952,953],[718,1,1,953,954],[720,3,3,954,957],[722,5,2,957,959],[723,1,1,959,960],[724,1,1,960,961],[725,6,4,961,965],[726,1,1,965,966],[727,2,2,966,968],[729,1,1,968,969],[730,1,1,969,970],[731,1,1,970,971],[734,1,1,971,972],[736,1,1,972,973],[737,1,1,973,974],[738,3,2,974,976],[739,1,1,976,977],[740,1,1,977,978],[741,1,1,978,979],[743,3,2,979,981],[744,2,1,981,982]]],[23,116,98,982,1080,[[745,1,1,982,983],[746,4,4,983,987],[747,2,2,987,989],[748,1,1,989,990],[749,2,2,990,992],[750,5,4,992,996],[751,4,1,996,997],[752,1,1,997,998],[753,1,1,998,999],[754,2,1,999,1000],[755,2,2,1000,1002],[756,1,1,1002,1003],[757,5,5,1003,1008],[758,1,1,1008,1009],[759,3,3,1009,1012],[760,2,2,1012,1014],[761,4,4,1014,1018],[762,1,1,1018,1019],[763,3,3,1019,1022],[766,4,4,1022,1026],[767,5,5,1026,1031],[768,1,1,1031,1032],[769,4,4,1032,1036],[770,1,1,1036,1037],[771,1,1,1037,1038],[772,1,1,1038,1039],[774,2,2,1039,1041],[775,2,2,1041,1043],[776,3,3,1043,1046],[777,2,2,1046,1048],[780,4,3,1048,1051],[784,1,1,1051,1052],[786,3,2,1052,1054],[788,2,1,1054,1055],[789,1,1,1055,1056],[790,1,1,1056,1057],[792,16,8,1057,1065],[793,3,3,1065,1068],[794,2,2,1068,1070],[795,9,8,1070,1078],[796,3,2,1078,1080]]],[24,5,5,1080,1085,[[797,2,2,1080,1082],[798,1,1,1082,1083],[799,1,1,1083,1084],[800,1,1,1084,1085]]],[25,146,126,1085,1211,[[802,6,5,1085,1090],[803,2,2,1090,1092],[804,4,4,1092,1096],[805,6,4,1096,1100],[806,5,3,1100,1103],[807,2,2,1103,1105],[808,6,5,1105,1110],[809,2,2,1110,1112],[810,4,3,1112,1115],[812,4,4,1115,1119],[813,3,3,1119,1122],[814,1,1,1122,1123],[815,6,5,1123,1128],[817,3,3,1128,1131],[818,2,2,1131,1133],[819,3,2,1133,1135],[821,3,3,1135,1138],[822,1,1,1138,1139],[823,4,4,1139,1143],[824,9,9,1143,1152],[825,7,6,1152,1158],[826,3,3,1158,1161],[827,2,2,1161,1163],[828,3,2,1163,1165],[829,4,4,1165,1169],[830,3,3,1169,1172],[831,1,1,1172,1173],[833,5,4,1173,1177],[834,4,4,1177,1181],[835,2,1,1181,1182],[837,7,6,1182,1188],[838,8,6,1188,1194],[839,6,3,1194,1197],[840,6,6,1197,1203],[841,1,1,1203,1204],[844,2,2,1204,1206],[845,3,2,1206,1208],[846,1,1,1208,1209],[848,2,2,1209,1211]]],[26,13,11,1211,1222,[[857,1,1,1211,1212],[858,9,7,1212,1219],[859,3,3,1219,1222]]],[27,13,12,1222,1234,[[862,1,1,1222,1223],[863,1,1,1223,1224],[865,2,1,1224,1225],[866,2,2,1225,1227],[868,2,2,1227,1229],[870,1,1,1229,1230],[871,2,2,1230,1232],[873,1,1,1232,1233],[875,1,1,1233,1234]]],[28,5,4,1234,1238,[[876,1,1,1234,1235],[877,4,3,1235,1238]]],[29,19,16,1238,1254,[[880,1,1,1238,1239],[881,2,2,1239,1241],[882,4,3,1241,1244],[883,3,3,1244,1247],[884,2,1,1247,1248],[885,1,1,1248,1249],[886,2,1,1249,1250],[887,4,4,1250,1254]]],[30,3,3,1254,1257,[[888,3,3,1254,1257]]],[31,4,4,1257,1261,[[889,3,3,1257,1260],[892,1,1,1260,1261]]],[32,8,7,1261,1268,[[893,1,1,1261,1262],[894,1,1,1262,1263],[895,2,1,1263,1264],[897,3,3,1264,1267],[899,1,1,1267,1268]]],[33,6,6,1268,1274,[[900,1,1,1268,1269],[901,1,1,1269,1270],[902,4,4,1270,1274]]],[34,6,5,1274,1279,[[904,3,2,1274,1276],[905,3,3,1276,1279]]],[35,6,4,1279,1283,[[906,3,2,1279,1281],[907,2,1,1281,1282],[908,1,1,1282,1283]]],[36,9,1,1283,1284,[[909,9,1,1283,1284]]],[37,26,19,1284,1303,[[911,2,2,1284,1286],[912,1,1,1286,1287],[913,3,2,1287,1289],[914,5,3,1289,1292],[915,1,1,1292,1293],[916,2,1,1293,1294],[919,3,2,1294,1296],[921,2,1,1296,1297],[922,3,2,1297,1299],[923,1,1,1299,1300],[924,3,3,1300,1303]]],[38,2,2,1303,1305,[[925,1,1,1303,1304],[926,1,1,1304,1305]]]],[1,10,14,16,25,27,28,29,35,51,69,149,154,162,163,165,167,169,171,173,176,177,178,180,182,183,187,200,202,207,221,222,228,270,274,275,371,372,386,414,443,480,481,549,553,564,606,609,621,638,652,702,739,743,791,797,798,833,883,885,890,907,919,959,960,1005,1007,1016,1031,1147,1148,1149,1198,1212,1237,1308,1345,1372,1373,1390,1451,1453,1465,1468,1469,1507,1529,1548,1591,1601,1621,1640,1641,1653,1690,1702,1704,1713,1715,1717,1751,1761,1764,1765,1783,1789,1807,1811,1829,1839,1849,1850,1876,1883,1915,1919,1936,1939,1946,1961,1989,2037,2042,2044,2046,2056,2063,2076,2091,2096,2099,2107,2116,2138,2193,2206,2216,2217,2225,2239,2242,2267,2269,2274,2276,2279,2301,2305,2315,2316,2319,2322,2323,2326,2327,2328,2329,2330,2331,2336,2342,2343,2346,2348,2349,2351,2352,2355,2356,2357,2358,2374,2386,2392,2415,2454,2459,2467,2472,2489,2494,2497,2503,2524,2531,2583,2607,2617,2620,2631,2669,2679,2683,2688,2689,2694,2695,2726,2727,2729,2730,2736,2745,2749,2750,2752,2753,2756,2757,2762,2763,2777,2780,2781,2783,2786,2787,2788,2791,2792,2793,2799,2802,2803,2804,2805,2810,2813,2819,2820,2824,2825,2828,2829,2839,2841,2858,2859,2861,2862,2864,2876,2881,2899,2924,2925,2926,2928,2929,2931,2932,2933,2935,2936,2939,2940,2941,2942,2943,2944,2945,2947,2962,2965,2966,2967,2970,2971,2973,2977,2983,2984,3017,3018,3024,3026,3029,3034,3035,3038,3039,3041,3043,3097,3118,3125,3128,3129,3136,3139,3140,3177,3188,3190,3192,3203,3205,3209,3210,3214,3216,3219,3220,3222,3223,3241,3246,3276,3298,3300,3355,3357,3372,3391,3450,3452,3453,3460,3545,3549,3554,3559,3657,3750,3751,3753,3754,3757,3768,3806,3807,3822,3828,3830,3842,3850,3939,3946,3949,3951,3980,3983,3984,3985,3987,4022,4033,4035,4041,4049,4050,4053,4055,4062,4070,4126,4144,4191,4198,4216,4227,4239,4246,4247,4262,4274,4291,4302,4304,4307,4308,4309,4317,4348,4349,4397,4405,4448,4572,4574,4577,4662,4867,4868,4963,5014,5017,5030,5036,5040,5043,5044,5062,5094,5095,5117,5127,5133,5226,5228,5229,5237,5241,5242,5256,5259,5264,5267,5342,5382,5416,5470,5476,5482,5484,5489,5513,5540,5572,5588,5590,5593,5597,5626,5635,5656,5659,5667,5672,5706,5709,5715,5726,5760,5781,5820,5839,5848,5875,5877,5878,5915,5982,5986,6034,6042,6057,6075,6088,6090,6111,6132,6163,6475,6483,6578,6584,6680,6682,6691,6693,6699,6700,6759,6772,6778,6787,6798,6803,6807,6858,6866,6867,6870,6903,6915,6928,6943,6952,6958,6961,6963,6966,6968,6969,6975,6976,6978,6979,7012,7044,7051,7052,7059,7095,7175,7187,7195,7200,7221,7223,7248,7250,7268,7309,7310,7316,7326,7362,7415,7416,7419,7424,7428,7447,7451,7521,7611,7623,7624,7656,7667,7680,7726,7729,7739,7755,7761,7903,7917,7992,7995,8013,8014,8024,8028,8031,8032,8038,8041,8043,8046,8131,8261,8280,8282,8335,8346,8403,8421,8427,8434,8448,8451,8461,8487,8495,8562,8566,8590,8613,8630,8636,8730,8734,8737,8741,8747,8750,8752,8755,8761,8764,8782,8802,8820,8842,8883,8928,8931,8936,8937,8950,8951,8952,8953,8954,8956,8959,8963,8965,8972,8975,9021,9056,9060,9076,9155,9160,9183,9184,9186,9187,9336,9337,9338,9367,9369,9438,9446,9455,9478,9480,9591,9598,9603,9632,9634,9635,9637,9638,9700,9704,9713,9781,9793,9841,9884,9887,9976,9978,9980,10045,10047,10131,10161,10165,10171,10181,10185,10239,10444,10503,10642,10663,10728,10791,10860,10928,10950,10960,11145,11148,11162,11189,11200,11250,11260,11295,11298,11309,11327,11346,11383,11399,11404,11406,11464,11471,11489,11491,11495,11533,11558,11560,11565,11578,11583,11586,11596,11599,11601,11667,11676,11686,11695,11704,11732,11747,11748,11775,11799,11814,11883,11887,11900,11901,11938,11957,11961,11982,12010,12100,12179,12182,12201,12219,12223,12232,12242,12250,12315,12325,12378,12400,12497,12509,12512,12515,12524,12544,12583,12689,12708,12780,12801,12815,12824,12834,12836,12837,12847,12859,12861,12867,12886,12888,12902,12903,12908,12909,13009,13038,13044,13059,13084,13087,13089,13149,13164,13180,13184,13203,13247,13248,13252,13253,13284,13291,13322,13330,13349,13351,13360,13364,13372,13417,13459,13464,13474,13476,13490,13503,13535,13536,13545,13554,13572,13573,13589,13598,13624,13657,13665,13669,13677,13704,13706,13764,13766,13781,13798,13817,13862,13896,13918,13933,13951,13965,13969,13971,14011,14061,14082,14128,14151,14196,14213,14214,14217,14222,14243,14287,14311,14347,14359,14388,14426,14442,14462,14527,14545,14600,14633,14710,14721,14735,14736,14742,14747,14754,14767,14845,14858,14944,14950,14959,15006,15137,15140,15191,15215,15315,15345,15395,15408,15414,15454,15528,15566,15574,15622,15644,15739,15947,16086,16113,16115,16132,16135,16169,16171,16172,16224,16244,16273,16390,16427,16458,16561,16568,16578,16629,16641,16937,17104,17125,17133,17135,17155,17270,17399,17464,17472,17474,17487,17500,17515,17516,17562,17571,17579,17603,17613,17632,17645,17646,17649,17654,17679,17697,17698,17699,17700,17701,17738,17745,17770,17776,17799,17814,17831,17835,17836,17870,17876,17886,17908,17953,17954,17969,17974,18001,18003,18005,18016,18032,18043,18074,18076,18077,18094,18112,18115,18116,18186,18191,18203,18223,18233,18234,18242,18249,18270,18272,18274,18305,18308,18314,18330,18338,18342,18411,18442,18481,18485,18505,18536,18552,18573,18593,18605,18608,18610,18612,18616,18652,18658,18684,18703,18716,18760,18800,18821,18822,18823,18844,18860,18869,18900,18904,18934,18960,18980,18985,18999,19002,19008,19023,19047,19070,19073,19100,19101,19112,19115,19139,19155,19197,19226,19234,19242,19261,19267,19270,19279,19282,19292,19309,19320,19323,19329,19340,19353,19358,19359,19375,19382,19406,19410,19420,19422,19456,19458,19478,19484,19486,19496,19501,19503,19524,19530,19547,19560,19563,19564,19587,19598,19632,19685,19690,19710,19730,19750,19760,19773,19792,19796,19846,19872,19873,19945,19992,19993,20012,20045,20066,20101,20102,20103,20104,20112,20117,20118,20123,20132,20135,20164,20201,20208,20225,20237,20247,20254,20259,20264,20268,20276,20298,20299,20320,20324,20342,20382,20439,20467,20481,20486,20490,20492,20493,20494,20516,20524,20526,20527,20530,20533,20537,20538,20547,20562,20563,20566,20577,20579,20580,20581,20585,20603,20605,20614,20626,20628,20630,20660,20663,20668,20678,20686,20687,20693,20726,20740,20744,20748,20750,20753,20767,20773,20776,20845,20847,20864,20869,20903,20908,20916,20975,20996,20997,20998,21007,21015,21016,21021,21023,21027,21048,21049,21053,21056,21062,21063,21064,21067,21073,21079,21090,21096,21099,21116,21119,21132,21151,21164,21169,21175,21180,21188,21190,21191,21219,21252,21253,21256,21275,21282,21283,21290,21306,21319,21369,21370,21371,21377,21384,21388,21398,21401,21403,21405,21407,21413,21437,21445,21447,21450,21452,21453,21462,21465,21477,21478,21596,21599,21616,21617,21649,21689,21691,21978,21999,22000,22001,22002,22005,22012,22015,22022,22025,22031,22098,22118,22146,22153,22162,22190,22192,22209,22236,22239,22266,22285,22297,22313,22339,22340,22387,22404,22409,22412,22417,22423,22425,22431,22434,22454,22471,22491,22496,22499,22501,22510,22521,22525,22526,22538,22543,22545,22576,22582,22596,22619,22634,22640,22642,22680,22699,22706,22717,22718,22730,22731,22749,22750,22769,22776,22787,22791,22792,22807,22828,22851,22886,22894,22908,22917,22921,22924,22925,22933,22947,22960,23008,23015,23045,23049,23055,23066,23072,23085,23088,23096,23106]]],["when",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22749]]],["where",[1,1,[[2,1,1,0,1,[[93,1,1,0,1]]]],[2807]]],["wherein",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12994]]],["whereon",[2,2,[[13,1,1,0,1,[[370,1,1,0,1]]],[21,1,1,1,2,[[674,1,1,1,2]]]],[11265,17586]]],["whereupon",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21048]]],["whom",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13559]]],["with",[103,97,[[0,3,3,0,3,[[31,1,1,0,1],[32,1,1,1,2],[40,1,1,2,3]]],[1,13,11,3,14,[[52,1,1,3,4],[54,1,1,4,5],[61,3,2,5,7],[65,1,1,7,8],[72,1,1,8,9],[77,3,2,9,11],[83,1,1,11,12],[88,2,2,12,14]]],[2,21,19,14,33,[[91,3,3,14,17],[92,3,3,17,20],[93,3,2,20,22],[96,4,4,22,26],[99,2,2,26,28],[103,1,1,28,29],[105,1,1,29,30],[108,1,1,30,31],[112,3,2,31,33]]],[3,8,8,33,41,[[122,2,2,33,35],[125,1,1,35,36],[131,2,2,36,38],[132,1,1,38,39],[135,1,1,39,40],[147,1,1,40,41]]],[4,3,3,41,44,[[168,1,1,41,42],[174,1,1,42,43],[176,1,1,43,44]]],[8,5,5,44,49,[[249,2,2,44,46],[252,2,2,46,48],[255,1,1,48,49]]],[10,2,2,49,51,[[291,1,1,49,50],[305,1,1,50,51]]],[11,2,2,51,53,[[325,1,1,51,52],[337,1,1,52,53]]],[12,3,3,53,56,[[344,1,1,53,54],[348,1,1,54,55],[358,1,1,55,56]]],[13,3,3,56,59,[[394,1,1,56,57],[395,1,1,57,58],[397,1,1,58,59]]],[15,1,1,59,60,[[417,1,1,59,60]]],[17,4,4,60,64,[[453,1,1,60,61],[468,1,1,61,62],[472,1,1,62,63],[473,1,1,63,64]]],[18,6,6,64,70,[[490,1,1,64,65],[492,1,1,65,66],[569,1,1,66,67],[593,1,1,67,68],[596,1,1,68,69],[619,1,1,69,70]]],[19,2,2,70,72,[[634,1,1,70,71],[653,1,1,71,72]]],[20,2,2,72,74,[[663,1,1,72,73],[670,1,1,73,74]]],[22,6,6,74,80,[[685,1,1,74,75],[692,1,1,75,76],[722,1,1,76,77],[725,1,1,77,78],[732,1,1,78,79],[738,1,1,79,80]]],[23,5,5,80,85,[[747,1,1,80,81],[781,1,1,81,82],[790,1,1,82,83],[793,1,1,83,84],[794,1,1,84,85]]],[25,9,7,85,92,[[817,4,2,85,87],[824,1,1,87,88],[826,1,1,88,89],[834,1,1,89,90],[838,2,2,90,92]]],[26,1,1,92,93,[[860,1,1,92,93]]],[29,1,1,93,94,[[881,1,1,93,94]]],[37,2,2,94,96,[[911,2,2,94,96]]],[38,1,1,96,97,[[926,1,1,96,97]]]],[939,973,1205,1597,1635,1824,1825,1967,2162,2304,2314,2521,2670,2678,2764,2775,2778,2782,2788,2793,2804,2806,2883,2891,2892,2909,2992,2993,3142,3211,3307,3420,3422,3840,3843,3976,4158,4162,4216,4294,4678,5345,5476,5530,7540,7541,7638,7646,7738,8740,9269,9890,10239,10539,10715,10941,11773,11818,11863,12389,13282,13673,13791,13825,14080,14090,15414,15855,15915,16293,16589,17158,17399,17537,17784,17929,18549,18605,18732,18828,19020,19889,20070,20147,20211,20798,20799,21014,21093,21305,21416,21424,22066,22410,22880,22893,23119]]],["within",[9,9,[[8,1,1,0,1,[[260,1,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[18,5,5,2,7,[[519,2,2,2,4],[520,1,1,4,5],[619,1,1,5,6],[620,1,1,6,7]]],[27,1,1,7,8,[[872,1,1,7,8]]],[31,1,1,8,9,[[890,1,1,8,9]]]],[7897,13203,14561,14566,14571,16289,16297,22248,22555]]]]},{"k":"H5922","v":[["*",[103,86,[[14,34,27,0,27,[[406,12,11,0,11],[407,11,7,11,18],[408,5,4,18,22],[409,6,5,22,27]]],[26,69,59,27,86,[[851,12,11,27,38],[852,7,5,38,43],[853,17,15,43,58],[854,10,8,58,66],[855,15,13,66,79],[856,8,7,79,86]]]],[12118,12121,12122,12124,12125,12127,12128,12129,12130,12132,12133,12135,12137,12139,12140,12141,12149,12151,12158,12162,12168,12169,12187,12190,12191,12196,12197,21768,21773,21776,21782,21786,21787,21788,21792,21804,21806,21807,21819,21823,21826,21835,21836,21842,21847,21850,21853,21854,21860,21861,21862,21864,21865,21866,21869,21870,21871,21873,21879,21881,21883,21888,21890,21895,21897,21903,21906,21908,21909,21910,21911,21915,21917,21918,21919,21920,21922,21923,21928,21934,21937,21939,21949,21952,21953,21961]]],["+",[6,6,[[14,2,2,0,2,[[406,2,2,0,2]]],[26,4,4,2,6,[[851,2,2,2,4],[852,1,1,4,5],[855,1,1,5,6]]]],[12124,12132,21773,21788,21819,21918]]],["about",[3,3,[[26,3,3,0,3,[[854,3,3,0,3]]]],[21881,21890,21903]]],["above",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21908]]],["against",[7,7,[[14,3,3,0,3,[[406,2,2,0,2],[409,1,1,2,3]]],[26,4,4,3,7,[[852,2,2,3,5],[854,1,1,5,6],[855,1,1,6,7]]]],[12118,12129,12196,21826,21836,21897,21910]]],["concerning",[6,6,[[14,3,3,0,3,[[407,2,2,0,2],[409,1,1,2,3]]],[26,3,3,3,6,[[851,1,1,3,4],[854,1,1,4,5],[855,1,1,5,6]]]],[12139,12151,12187,21776,21903,21917]]],["for",[5,5,[[14,4,4,0,4,[[406,1,1,0,1],[408,3,3,1,4]]],[26,1,1,4,5,[[855,1,1,4,5]]]],[12125,12162,12168,12169,21928]]],["from",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21923]]],["in",[10,10,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]],[26,8,8,2,10,[[852,2,2,2,4],[853,3,3,4,7],[854,1,1,7,8],[855,1,1,8,9],[856,1,1,9,10]]]],[12149,12158,21823,21835,21847,21866,21873,21883,21909,21961]]],["more",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21826]]],["of",[5,5,[[26,5,5,0,5,[[854,2,2,0,2],[856,3,3,2,5]]]],[21888,21890,21949,21952,21953]]],["on",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21919]]],["over",[13,12,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,12,11,1,12,[[851,3,2,1,3],[852,1,1,3,4],[853,5,5,4,9],[854,1,1,9,10],[855,2,2,10,12]]]],[12130,21806,21807,21819,21853,21854,21860,21862,21869,21895,21906,21908]]],["thereon",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12162]]],["to",[7,5,[[14,6,4,0,4,[[406,1,1,0,1],[407,3,2,1,3],[409,2,1,3,4]]],[26,1,1,4,5,[[855,1,1,4,5]]]],[12122,12137,12151,12191,21911]]],["unto",[16,13,[[14,9,7,0,7,[[406,5,4,0,4],[407,4,3,4,7]]],[26,7,6,7,13,[[851,1,1,7,8],[853,4,3,8,11],[855,1,1,11,12],[856,1,1,12,13]]]],[12121,12127,12128,12133,12135,12140,12141,21782,21864,21871,21873,21920,21949]]],["upon",[19,19,[[14,3,3,0,3,[[407,1,1,0,1],[409,2,2,1,3]]],[26,16,16,3,19,[[851,5,5,3,8],[853,5,5,8,13],[854,1,1,13,14],[855,2,2,14,16],[856,3,3,16,19]]]],[12139,12190,12197,21768,21786,21787,21792,21804,21842,21850,21861,21865,21870,21879,21915,21922,21934,21937,21939]]],["with",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21919]]]]},{"k":"H5923","v":[["*",[40,34,[[0,1,1,0,1,[[26,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,1,1,2,3,[[135,1,1,2,3]]],[4,2,2,3,5,[[173,1,1,3,4],[180,1,1,4,5]]],[8,1,1,5,6,[[241,1,1,5,6]]],[10,8,5,6,11,[[302,8,5,6,11]]],[13,7,5,11,16,[[376,7,5,11,16]]],[22,5,4,16,20,[[687,1,1,16,17],[688,2,1,17,18],[692,1,1,18,19],[725,1,1,19,20]]],[23,10,10,20,30,[[746,1,1,20,21],[749,1,1,21,22],[771,3,3,22,25],[772,4,4,25,29],[774,1,1,29,30]]],[24,2,2,30,32,[[797,1,1,30,31],[799,1,1,31,32]]],[25,1,1,32,33,[[835,1,1,32,33]]],[27,1,1,33,34,[[872,1,1,33,34]]]],[767,3537,4291,5450,5659,7338,9155,9160,9161,9162,9165,11399,11404,11405,11406,11409,17833,17877,17953,18605,18985,19063,19604,19607,19608,19620,19622,19629,19632,19675,20324,20381,21340,22244]]],["+",[4,4,[[10,1,1,0,1,[[302,1,1,0,1]]],[13,3,3,1,4,[[376,3,3,1,4]]]],[9155,11399,11405,11409]]],["yoke",[36,32,[[0,1,1,0,1,[[26,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,1,1,2,3,[[135,1,1,2,3]]],[4,2,2,3,5,[[173,1,1,3,4],[180,1,1,4,5]]],[8,1,1,5,6,[[241,1,1,5,6]]],[10,7,5,6,11,[[302,7,5,6,11]]],[13,4,3,11,14,[[376,4,3,11,14]]],[22,5,4,14,18,[[687,1,1,14,15],[688,2,1,15,16],[692,1,1,16,17],[725,1,1,17,18]]],[23,10,10,18,28,[[746,1,1,18,19],[749,1,1,19,20],[771,3,3,20,23],[772,4,4,23,27],[774,1,1,27,28]]],[24,2,2,28,30,[[797,1,1,28,29],[799,1,1,29,30]]],[25,1,1,30,31,[[835,1,1,30,31]]],[27,1,1,31,32,[[872,1,1,31,32]]]],[767,3537,4291,5450,5659,7338,9155,9160,9161,9162,9165,11399,11404,11406,17833,17877,17953,18605,18985,19063,19604,19607,19608,19620,19622,19629,19632,19675,20324,20381,21340,22244]]]]},{"k":"H5924","v":[["*",[4,4,[[26,4,4,0,4,[[851,1,1,0,1],[853,1,1,1,2],[854,1,1,2,3],[855,1,1,3,4]]]],[21782,21843,21881,21907]]],["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21907]]],["in",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[853,1,1,1,2],[854,1,1,2,3]]]],[21782,21843,21881]]]]},{"k":"H5925","v":[["Ulla",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10574]]]]},{"k":"H5926","v":[["stammerers",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18263]]]]},{"k":"H5927","v":[["*",[890,816,[[0,51,48,0,48,[[1,1,1,0,1],[7,1,1,1,2],[12,1,1,2,3],[16,1,1,3,4],[18,3,3,4,7],[21,2,2,7,9],[23,1,1,9,10],[25,1,1,10,11],[27,1,1,11,12],[30,2,2,12,14],[31,2,2,14,16],[34,3,3,16,19],[36,1,1,19,20],[37,2,2,20,22],[39,1,1,22,23],[40,7,7,23,30],[43,4,4,30,34],[44,2,2,34,36],[45,4,3,36,39],[48,3,2,39,41],[49,8,7,41,48]]],[1,62,59,48,107,[[50,1,1,48,49],[51,1,1,49,50],[52,2,2,50,52],[57,5,5,52,57],[59,2,2,57,59],[61,1,1,59,60],[62,2,2,60,62],[65,2,2,62,64],[66,2,2,64,66],[68,8,7,66,73],[69,1,1,73,74],[73,8,8,74,82],[74,1,1,82,83],[76,1,1,83,84],[79,2,2,84,86],[81,7,7,86,93],[82,6,5,93,98],[83,4,4,98,102],[89,6,5,102,107]]],[2,14,13,107,120,[[91,1,1,107,108],[100,7,6,108,114],[103,1,1,114,115],[105,2,2,115,117],[106,1,1,117,118],[108,1,1,118,119],[113,1,1,119,120]]],[3,42,37,120,157,[[124,2,2,120,122],[125,4,3,122,125],[126,1,1,125,126],[129,8,5,126,131],[130,5,4,131,135],[132,5,5,135,140],[135,1,1,140,141],[136,4,4,141,145],[137,3,3,145,148],[138,1,1,148,149],[139,4,4,149,153],[143,1,1,153,154],[148,2,2,154,156],[149,1,1,156,157]]],[4,32,30,157,187,[[153,9,8,157,165],[155,2,2,165,167],[157,1,1,167,168],[161,2,2,168,170],[162,2,2,170,172],[164,2,2,172,174],[166,3,2,174,176],[169,1,1,176,177],[172,1,1,177,178],[177,1,1,178,179],[179,1,1,179,180],[180,2,2,180,182],[181,1,1,182,183],[182,1,1,183,184],[184,2,2,184,186],[186,1,1,186,187]]],[5,55,49,187,236,[[188,2,2,187,189],[190,4,4,189,193],[192,3,3,193,196],[193,7,5,196,201],[194,7,7,201,208],[196,7,7,208,215],[197,1,1,215,216],[198,1,1,216,217],[200,1,1,217,218],[201,8,5,218,223],[202,1,1,223,224],[203,1,1,224,225],[204,3,2,225,227],[205,4,4,227,231],[208,3,3,231,234],[210,2,2,234,236]]],[6,73,60,236,296,[[211,6,6,236,242],[212,2,1,242,243],[214,4,3,243,246],[216,9,8,246,254],[218,2,2,254,256],[219,2,2,256,258],[221,3,3,258,261],[222,1,1,261,262],[223,5,4,262,266],[224,2,2,266,268],[225,5,4,268,272],[226,8,6,272,278],[228,4,3,278,281],[229,2,2,281,283],[230,13,9,283,292],[231,5,4,292,296]]],[7,1,1,296,297,[[235,1,1,296,297]]],[8,70,63,297,360,[[236,6,6,297,303],[237,5,4,303,307],[240,1,1,307,308],[241,6,6,308,314],[242,4,4,314,318],[243,1,1,318,319],[244,7,5,319,324],[245,3,3,324,327],[246,1,1,327,328],[247,1,1,328,329],[248,5,5,329,334],[249,8,6,334,340],[250,3,3,340,343],[252,3,2,343,345],[254,1,1,345,346],[258,2,2,346,348],[259,1,1,348,349],[260,3,3,349,352],[262,1,1,352,353],[263,6,5,353,358],[264,2,2,358,360]]],[9,36,30,360,390,[[267,1,1,360,361],[268,6,4,361,365],[271,5,4,365,369],[272,5,5,369,374],[273,1,1,374,375],[277,1,1,375,376],[281,5,2,376,378],[283,1,1,378,379],[284,1,1,379,380],[285,1,1,380,381],[286,1,1,381,382],[287,1,1,382,383],[288,1,1,383,384],[289,1,1,384,385],[290,5,5,385,390]]],[10,53,47,390,437,[[291,3,3,390,393],[292,1,1,393,394],[293,2,2,394,396],[295,1,1,396,397],[296,1,1,397,398],[298,3,2,398,400],[299,5,5,400,405],[300,4,4,405,409],[301,1,1,409,410],[302,8,6,410,416],[304,1,1,416,417],[305,2,2,417,419],[306,1,1,419,420],[307,1,1,420,421],[308,9,6,421,427],[310,4,4,427,431],[312,6,6,431,437]]],[11,60,51,437,488,[[313,9,7,437,444],[314,6,3,444,447],[315,5,5,447,452],[316,3,3,452,455],[318,1,1,455,456],[322,1,1,456,457],[324,5,4,457,461],[326,1,1,461,462],[327,1,1,462,463],[328,4,4,463,467],[329,6,5,467,472],[330,6,4,472,476],[331,3,3,476,479],[332,2,2,479,481],[334,1,1,481,482],[335,3,3,482,485],[336,2,2,485,487],[337,1,1,487,488]]],[12,24,22,488,510,[[348,1,1,488,489],[350,2,1,489,490],[351,5,4,490,494],[352,5,5,494,499],[353,2,2,499,501],[354,1,1,501,502],[358,4,4,502,506],[360,1,1,506,507],[363,1,1,507,508],[364,1,1,508,509],[366,1,1,509,510]]],[13,53,50,510,560,[[367,4,3,510,513],[368,1,1,513,514],[369,2,2,514,516],[371,3,2,516,518],[374,4,4,518,522],[375,3,3,522,525],[376,1,1,525,526],[377,1,1,526,527],[378,2,2,527,529],[382,2,2,529,531],[384,7,7,531,538],[386,2,2,538,540],[387,1,1,540,541],[389,1,1,541,542],[390,4,3,542,545],[391,1,1,545,546],[395,5,5,546,551],[398,1,1,551,552],[400,1,1,552,553],[401,3,3,553,556],[402,4,4,556,560]]],[14,14,13,560,573,[[403,4,3,560,563],[404,2,2,563,565],[405,3,3,565,568],[406,1,1,568,569],[409,3,3,569,572],[410,1,1,572,573]]],[15,13,13,573,586,[[414,1,1,573,574],[415,1,1,574,575],[416,3,3,575,578],[419,3,3,578,581],[421,1,1,581,582],[422,1,1,582,583],[424,3,3,583,586]]],[17,8,8,586,594,[[436,1,1,586,587],[440,1,1,587,588],[441,1,1,588,589],[442,1,1,589,590],[455,1,1,590,591],[471,2,2,591,593],[477,1,1,593,594]]],[18,23,23,594,617,[[495,1,1,594,595],[501,1,1,595,596],[507,1,1,596,597],[517,1,1,597,598],[524,2,2,598,600],[528,1,1,600,601],[539,1,1,601,602],[543,1,1,602,603],[545,1,1,603,604],[548,1,1,604,605],[551,1,1,605,606],[555,2,2,606,608],[558,1,1,608,609],[574,1,1,609,610],[579,1,1,610,611],[581,1,1,611,612],[584,1,1,612,613],[599,1,1,613,614],[609,1,1,614,615],[612,1,1,615,616],[614,1,1,616,617]]],[19,7,7,617,624,[[642,1,1,617,618],[648,1,1,618,619],[651,1,1,619,620],[652,1,1,620,621],[653,1,1,621,622],[657,1,1,622,623],[658,1,1,623,624]]],[20,2,2,624,626,[[661,1,1,624,625],[668,1,1,625,626]]],[21,5,5,626,631,[[673,1,1,626,627],[674,1,1,627,628],[676,1,1,628,629],[677,1,1,629,630],[678,1,1,630,631]]],[22,40,37,631,668,[[680,1,1,631,632],[683,2,2,632,634],[685,2,2,634,636],[686,2,1,636,637],[689,1,1,637,638],[692,3,3,638,641],[693,2,2,641,643],[699,1,1,643,644],[700,1,1,644,645],[702,1,1,645,646],[710,1,1,646,647],[712,3,3,647,650],[713,1,1,650,651],[714,3,2,651,653],[715,3,3,653,656],[716,1,1,656,657],[718,2,2,657,659],[731,1,1,659,660],[733,2,1,660,661],[735,3,3,661,664],[738,1,1,664,665],[741,1,1,665,666],[743,1,1,666,667],[744,1,1,667,668]]],[23,63,62,668,730,[[746,1,1,668,669],[747,1,1,669,670],[748,3,3,670,673],[749,1,1,673,674],[750,2,2,674,676],[751,1,1,676,677],[752,1,1,677,678],[753,1,1,678,679],[754,1,1,679,680],[755,1,1,680,681],[758,2,2,681,683],[760,2,2,683,685],[763,1,1,685,686],[765,1,1,686,687],[766,1,1,687,688],[767,2,2,688,690],[770,1,1,690,691],[771,1,1,691,692],[774,1,1,692,693],[775,1,1,693,694],[776,1,1,694,695],[777,1,1,695,696],[778,1,1,696,697],[779,1,1,697,698],[781,2,2,698,700],[782,2,2,700,702],[783,1,1,702,703],[788,1,1,703,704],[790,6,5,704,709],[791,1,1,709,710],[792,5,5,710,715],[793,4,4,715,719],[794,4,4,719,723],[795,6,6,723,729],[796,1,1,729,730]]],[24,2,2,730,732,[[797,1,1,730,731],[798,1,1,731,732]]],[25,39,38,732,770,[[809,1,1,732,733],[810,1,1,733,734],[812,2,2,734,736],[814,1,1,736,737],[815,3,3,737,740],[817,1,1,740,741],[820,1,1,741,742],[821,1,1,742,743],[824,1,1,743,744],[825,1,1,744,745],[827,3,2,745,747],[828,1,1,747,748],[830,1,1,748,749],[833,1,1,749,750],[837,1,1,750,751],[838,4,4,751,755],[839,5,5,755,760],[840,1,1,760,761],[841,4,4,761,765],[842,1,1,765,766],[844,2,2,766,768],[845,1,1,768,769],[848,1,1,769,770]]],[26,3,3,770,773,[[857,2,2,770,772],[860,1,1,772,773]]],[27,7,7,773,780,[[862,1,1,773,774],[863,1,1,774,775],[865,1,1,775,776],[869,1,1,776,777],[871,1,1,777,778],[873,1,1,778,779],[874,1,1,779,780]]],[28,7,6,780,786,[[876,1,1,780,781],[877,4,3,781,784],[878,2,2,784,786]]],[29,11,11,786,797,[[880,1,1,786,787],[881,2,2,787,789],[882,1,1,789,790],[883,1,1,790,791],[885,1,1,791,792],[886,2,2,792,794],[887,3,3,794,797]]],[30,1,1,797,798,[[888,1,1,797,798]]],[31,4,4,798,802,[[889,1,1,798,799],[890,1,1,799,800],[892,2,2,800,802]]],[32,3,3,802,805,[[894,1,1,802,803],[896,1,1,803,804],[898,1,1,804,805]]],[33,3,3,805,808,[[901,2,2,805,807],[902,1,1,807,808]]],[34,2,2,808,810,[[903,1,1,808,809],[905,1,1,809,810]]],[36,1,1,810,811,[[909,1,1,810,811]]],[37,6,5,811,816,[[924,6,5,811,816]]]],[36,203,319,419,472,485,487,549,560,607,715,785,883,885,952,954,1012,1014,1024,1111,1131,1132,1182,1197,1198,1200,1213,1214,1217,1222,1341,1348,1357,1358,1367,1383,1390,1415,1417,1477,1482,1511,1512,1513,1515,1520,1530,1531,1542,1577,1587,1596,1713,1714,1715,1716,1717,1789,1791,1854,1885,1886,1960,1961,1986,1993,2029,2038,2039,2044,2046,2049,2050,2077,2178,2179,2182,2186,2189,2190,2192,2195,2232,2292,2390,2391,2439,2442,2444,2445,2446,2461,2468,2474,2476,2478,2485,2488,2498,2499,2500,2520,2711,2732,2736,2743,2744,2774,3000,3001,3002,3003,3023,3042,3131,3210,3211,3243,3300,3448,3941,3942,3982,3986,3987,3999,4092,4096,4097,4105,4106,4121,4148,4150,4152,4206,4207,4208,4218,4221,4291,4316,4330,4336,4338,4345,4357,4373,4416,4418,4420,4430,4446,4566,4727,4729,4798,4913,4914,4916,4918,4920,4933,4934,4935,4976,5002,5058,5166,5180,5187,5189,5253,5254,5296,5297,5372,5428,5554,5591,5654,5672,5702,5720,5807,5808,5840,5875,5877,5926,5927,5928,5929,5954,5964,5969,5978,5979,5980,5982,6000,6003,6005,6012,6013,6022,6023,6033,6068,6069,6070,6071,6073,6097,6100,6124,6137,6195,6205,6208,6209,6210,6217,6266,6290,6304,6305,6331,6332,6333,6368,6438,6449,6459,6493,6508,6510,6511,6512,6513,6525,6531,6546,6604,6609,6611,6657,6659,6662,6667,6675,6680,6682,6689,6727,6730,6802,6805,6842,6845,6860,6872,6889,6900,6903,6904,6911,6928,6935,6938,6939,6942,6952,6954,6957,6966,6967,6980,7002,7005,7010,7049,7054,7057,7072,7077,7080,7082,7084,7085,7092,7094,7106,7107,7110,7121,7191,7215,7219,7223,7233,7234,7236,7246,7254,7259,7268,7331,7338,7340,7345,7346,7351,7352,7353,7359,7361,7362,7377,7402,7404,7405,7410,7417,7421,7426,7436,7446,7466,7490,7494,7495,7497,7500,7517,7518,7520,7521,7529,7554,7562,7566,7594,7641,7643,7721,7829,7839,7861,7866,7874,7896,7938,7950,7953,7955,7956,7957,7976,7978,8046,8050,8051,8052,8076,8149,8151,8154,8155,8159,8169,8172,8174,8175,8186,8279,8413,8419,8470,8511,8545,8556,8593,8611,8662,8710,8711,8714,8716,8717,8752,8757,8762,8804,8820,8831,8891,8904,8986,8989,9066,9067,9072,9075,9076,9084,9095,9096,9108,9123,9169,9175,9178,9179,9183,9184,9243,9266,9268,9300,9336,9370,9377,9382,9383,9384,9385,9409,9430,9434,9441,9486,9492,9495,9500,9509,9515,9536,9537,9539,9540,9542,9546,9549,9552,9562,9574,9583,9584,9596,9597,9603,9624,9637,9638,9698,9808,9854,9860,9867,9868,9907,9939,9968,9970,9972,9975,9986,9987,9988,9990,10019,10033,10037,10041,10049,10075,10084,10089,10103,10106,10149,10167,10174,10194,10203,10212,10228,10679,10766,10782,10784,10785,10788,10794,10803,10805,10816,10819,10822,10860,10868,10952,10953,10958,10960,11014,11093,11133,11185,11198,11200,11211,11227,11234,11243,11270,11273,11354,11357,11358,11359,11368,11379,11380,11413,11418,11439,11446,11510,11512,11544,11547,11553,11556,11561,11570,11576,11603,11621,11641,11674,11690,11691,11700,11725,11798,11811,11812,11818,11820,11880,11963,11980,11982,11986,11999,12009,12010,12016,12019,12021,12027,12028,12086,12099,12100,12103,12112,12179,12180,12201,12202,12322,12346,12362,12366,12380,12425,12426,12481,12529,12587,12625,12655,12661,12874,12977,12996,13017,13332,13756,13769,13930,14126,14244,14322,14527,14630,14634,14710,14836,14888,14918,14996,15071,15134,15144,15227,15487,15545,15579,15725,16093,16154,16182,16228,16808,17006,17110,17120,17150,17255,17313,17380,17497,17577,17584,17620,17635,17645,17688,17745,17763,17783,17788,17814,17900,17936,17941,17942,17962,17965,18037,18053,18113,18272,18306,18313,18316,18329,18331,18340,18366,18376,18381,18412,18429,18451,18713,18753,18771,18772,18773,18828,18877,18914,18925,18971,19018,19034,19040,19056,19068,19093,19094,19150,19175,19196,19214,19233,19295,19305,19350,19351,19412,19442,19474,19491,19492,19582,19618,19684,19697,19766,19793,19822,19834,19879,19885,19905,19908,19928,20031,20049,20052,20053,20054,20056,20075,20085,20095,20098,20115,20124,20146,20149,20155,20158,20169,20175,20187,20210,20215,20228,20239,20254,20262,20265,20285,20324,20342,20615,20625,20678,20679,20713,20734,20735,20738,20802,20884,20927,21053,21064,21103,21119,21151,21187,21251,21362,21403,21405,21409,21410,21434,21435,21436,21441,21443,21450,21483,21499,21517,21526,21533,21590,21596,21616,21691,21964,21969,22059,22105,22120,22148,22203,22233,22265,22281,22297,22318,22320,22331,22352,22355,22389,22396,22400,22420,22445,22465,22489,22491,22497,22500,22502,22531,22533,22554,22574,22575,22608,22622,22652,22700,22706,22715,22746,22784,22848,23081,23084,23085,23086,23087]]],["+",[92,88,[[0,4,3,0,3,[[36,1,1,0,1],[45,2,1,1,2],[49,1,1,2,3]]],[1,8,8,3,11,[[52,1,1,3,4],[57,1,1,4,5],[62,1,1,5,6],[74,1,1,6,7],[79,1,1,7,8],[82,2,2,8,10],[89,1,1,10,11]]],[2,3,3,11,14,[[100,2,2,11,13],[103,1,1,13,14]]],[3,6,5,14,19,[[124,1,1,14,15],[129,2,1,15,16],[130,2,2,16,18],[136,1,1,18,19]]],[4,4,4,19,23,[[153,2,2,19,21],[157,1,1,21,22],[166,1,1,22,23]]],[6,5,4,23,27,[[212,1,1,23,24],[216,1,1,24,25],[231,3,2,25,27]]],[7,1,1,27,28,[[235,1,1,27,28]]],[8,9,9,28,37,[[236,1,1,28,29],[241,1,1,29,30],[242,1,1,30,31],[243,1,1,31,32],[245,1,1,32,33],[247,1,1,33,34],[254,1,1,34,35],[263,2,2,35,37]]],[9,4,4,37,41,[[272,3,3,37,40],[273,1,1,40,41]]],[10,3,3,41,44,[[298,2,2,41,43],[302,1,1,43,44]]],[11,5,5,44,49,[[314,1,1,44,45],[329,2,2,45,47],[335,1,1,47,48],[337,1,1,48,49]]],[12,9,9,49,58,[[348,1,1,49,50],[351,1,1,50,51],[352,5,5,51,56],[353,1,1,56,57],[354,1,1,57,58]]],[13,5,5,58,63,[[368,1,1,58,59],[371,2,2,59,61],[390,2,2,61,63]]],[14,1,1,63,64,[[406,1,1,63,64]]],[15,5,5,64,69,[[414,1,1,64,65],[416,2,2,65,67],[422,1,1,67,68],[424,1,1,68,69]]],[19,1,1,69,70,[[658,1,1,69,70]]],[21,2,2,70,72,[[674,1,1,70,71],[676,1,1,71,72]]],[23,7,7,72,79,[[746,1,1,72,73],[755,1,1,73,74],[760,2,2,74,76],[767,1,1,76,77],[782,2,2,77,79]]],[25,4,4,79,83,[[815,1,1,79,80],[827,1,1,80,81],[838,1,1,81,82],[844,1,1,82,83]]],[27,1,1,83,84,[[873,1,1,83,84]]],[29,2,2,84,86,[[880,1,1,84,85],[887,1,1,85,86]]],[37,3,2,86,88,[[924,3,2,86,88]]]],[1111,1390,1531,1596,1717,1886,2232,2390,2485,2488,2711,3001,3042,3131,3941,4105,4121,4150,4336,4934,4935,5058,5297,6546,6662,7107,7110,7191,7234,7352,7353,7377,7436,7466,7721,7953,7957,8169,8172,8175,8186,8986,8989,9179,9552,9990,10019,10174,10228,10679,10788,10794,10803,10805,10816,10819,10822,10868,11227,11270,11273,11690,11691,12112,12322,12366,12380,12587,12655,17313,17584,17620,18971,19233,19350,19351,19491,19905,19908,20735,21119,21410,21596,22265,22389,22502,23086,23087]]],["Go",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9495]]],["arise",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8279]]],["ariseth",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9385]]],["arose",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[13,1,1,1,2,[[402,1,1,1,2]]]],[472,12009]]],["ascend",[7,7,[[18,2,2,0,2,[[501,1,1,0,1],[612,1,1,1,2]]],[22,2,2,2,4,[[692,2,2,2,4]]],[23,2,2,4,6,[[754,1,1,4,5],[795,1,1,5,6]]],[25,1,1,6,7,[[839,1,1,6,7]]]],[14244,16182,17941,17942,19214,20228,21434]]],["ascended",[6,6,[[1,1,1,0,1,[[68,1,1,0,1]]],[3,1,1,1,2,[[129,1,1,1,2]]],[5,2,2,2,4,[[194,1,1,2,3],[196,1,1,3,4]]],[6,1,1,4,5,[[223,1,1,4,5]]],[18,1,1,5,6,[[545,1,1,5,6]]]],[2044,4097,6023,6071,6904,14918]]],["ascending",[2,2,[[0,1,1,0,1,[[27,1,1,0,1]]],[8,1,1,1,2,[[263,1,1,1,2]]]],[785,7955]]],["away",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[11,1,1,1,2,[[324,1,1,1,2]]]],[8662,9868]]],["breaketh",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[954]]],["breaking",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[952]]],["bring",[3,3,[[0,1,1,0,1,[[49,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[8,1,1,2,3,[[263,1,1,2,3]]]],[1530,5672,7950]]],["brought",[8,8,[[5,2,2,0,2,[[193,1,1,0,1],[210,1,1,1,2]]],[6,1,1,2,3,[[226,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[10,1,1,4,5,[[302,1,1,4,5]]],[11,1,1,5,6,[[329,1,1,5,6]]],[13,1,1,6,7,[[402,1,1,6,7]]],[18,1,1,7,8,[[558,1,1,7,8]]]],[6000,6493,6967,7259,9179,9987,12010,15227]]],["broughtest",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2445]]],["burn",[2,2,[[1,1,1,0,1,[[76,1,1,0,1]]],[2,1,1,1,2,[[113,1,1,1,2]]]],[2292,3448]]],["burnt",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2774]]],["came",[7,7,[[3,1,1,0,1,[[135,1,1,0,1]]],[11,1,1,1,2,[[313,1,1,1,2]]],[18,1,1,2,3,[[555,1,1,2,3]]],[23,4,4,3,7,[[751,1,1,3,4],[763,1,1,4,5],[776,1,1,5,6],[788,1,1,6,7]]]],[4291,9539,15144,19150,19412,19766,20031]]],["chew",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5297]]],["cheweth",[6,6,[[2,5,5,0,5,[[100,5,5,0,5]]],[4,1,1,5,6,[[166,1,1,5,6]]]],[3000,3001,3002,3003,3023,5296]]],["climb",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22318]]],["come",[11,11,[[2,1,1,0,1,[[108,1,1,0,1]]],[6,2,2,1,3,[[223,1,1,1,2],[226,1,1,2,3]]],[8,2,2,3,5,[[236,1,1,3,4],[241,1,1,4,5]]],[22,1,1,5,6,[[743,1,1,5,6]]],[23,3,3,6,9,[[747,1,1,6,7],[792,1,1,7,8],[795,1,1,8,9]]],[25,2,2,9,11,[[839,1,1,9,10],[845,1,1,10,11]]]],[3300,6889,6966,7223,7338,18914,19018,20098,20262,21435,21616]]],["cometh",[3,3,[[11,1,1,0,1,[[324,1,1,0,1]]],[21,1,1,1,2,[[673,1,1,1,2]]],[25,1,1,2,3,[[821,1,1,2,3]]]],[9854,17577,20927]]],["dawning",[1,1,[[5,1,1,0,1,[[192,1,1,0,1]]]],[5964]]],["depart",[2,2,[[10,1,1,0,1,[[305,1,1,0,1]]],[13,1,1,1,2,[[382,1,1,1,2]]]],[9268,11512]]],["departed",[1,1,[[23,1,1,0,1,[[781,1,1,0,1]]]],[19879]]],["exalted",[2,2,[[18,2,2,0,2,[[524,1,1,0,1],[574,1,1,1,2]]]],[14634,15487]]],["fell",[2,2,[[2,2,2,0,2,[[105,2,2,0,2]]]],[3210,3211]]],["forth",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1182]]],["go",[4,4,[[3,1,1,0,1,[[136,1,1,0,1]]],[5,1,1,1,2,[[208,1,1,1,2]]],[17,1,1,2,3,[[441,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]]],[4330,6438,12996,19094]]],["goeth",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17380]]],["grow",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21691]]],["groweth",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5702]]],["in",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12977]]],["increased",[3,3,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]],[25,1,1,2,3,[[842,1,1,2,3]]]],[9515,11576,21533]]],["increaseth",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15071]]],["laid",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14836]]],["leap",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[885]]],["leaped",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[883]]],["levy",[1,1,[[10,1,1,0,1,[[299,1,1,0,1]]]],[9072]]],["lighted",[2,2,[[1,1,1,0,1,[[89,1,1,0,1]]],[3,1,1,1,2,[[124,1,1,1,2]]]],[2732,3942]]],["mentioned",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11621]]],["off",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13756]]],["offer",[29,29,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,1,1,1,2,[[79,1,1,1,2]]],[4,3,3,2,5,[[164,2,2,2,4],[179,1,1,4,5]]],[5,1,1,5,6,[[208,1,1,5,6]]],[6,2,2,6,8,[[216,1,1,6,7],[223,1,1,7,8]]],[8,2,2,8,10,[[237,1,1,8,9],[245,1,1,9,10]]],[9,1,1,10,11,[[290,1,1,10,11]]],[10,2,2,11,13,[[293,1,1,11,12],[299,1,1,12,13]]],[12,3,3,13,16,[[353,1,1,13,14],[358,1,1,14,15],[360,1,1,15,16]]],[13,5,5,16,21,[[389,1,1,16,17],[390,1,1,17,18],[395,2,2,18,20],[401,1,1,20,21]]],[14,2,2,21,23,[[405,2,2,21,23]]],[18,2,2,23,25,[[528,1,1,23,24],[543,1,1,24,25]]],[23,2,2,25,27,[[758,1,1,25,26],[777,1,1,26,27]]],[25,1,1,27,28,[[844,1,1,27,28]]],[29,1,1,28,29,[[883,1,1,28,29]]]],[549,2391,5253,5254,5591,6449,6680,6900,7268,7426,8716,8820,9076,10860,10958,11014,11674,11691,11812,11818,11982,12099,12103,14710,14888,19305,19793,21590,22445]]],["offered",[34,33,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,3,3,1,4,[[73,1,1,1,2],[81,1,1,2,3],[89,1,1,3,4]]],[3,4,4,4,8,[[139,4,4,4,8]]],[5,1,1,8,9,[[194,1,1,8,9]]],[6,4,4,9,13,[[216,1,1,9,10],[223,1,1,10,11],[230,1,1,11,12],[231,1,1,12,13]]],[8,5,5,13,18,[[241,2,2,13,15],[242,1,1,15,16],[248,2,2,16,18]]],[9,2,2,18,20,[[272,1,1,18,19],[290,1,1,19,20]]],[10,3,2,20,22,[[302,3,2,20,22]]],[11,3,3,22,25,[[315,2,2,22,24],[328,1,1,24,25]]],[12,2,2,25,27,[[358,1,1,25,26],[366,1,1,26,27]]],[13,3,3,27,30,[[367,1,1,27,28],[374,1,1,28,29],[395,1,1,29,30]]],[14,1,1,30,31,[[405,1,1,30,31]]],[17,1,1,31,32,[[436,1,1,31,32]]],[22,1,1,32,33,[[735,1,1,32,33]]]],[203,2182,2444,2736,4418,4420,4430,4446,6033,6682,6903,7080,7106,7345,7346,7361,7494,7497,8174,8717,9183,9184,9596,9603,9975,10960,11185,11200,11358,11798,12100,12874,18771]]],["offereth",[3,3,[[2,1,1,0,1,[[106,1,1,0,1]]],[22,1,1,1,2,[[744,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[3243,18925,20115]]],["offering",[6,6,[[8,1,1,0,1,[[248,1,1,0,1]]],[10,2,2,1,3,[[308,2,2,1,3]]],[13,3,3,3,6,[[374,1,1,3,4],[395,1,1,4,5],[401,1,1,5,6]]]],[7495,9370,9377,11359,11820,11980]]],["on",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8046]]],["over",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17110]]],["pay",[1,1,[[13,1,1,0,1,[[374,1,1,0,1]]]],[11354]]],["prefer",[1,1,[[18,1,1,0,1,[[614,1,1,0,1]]]],[16228]]],["put",[2,2,[[5,1,1,0,1,[[193,1,1,0,1]]],[12,1,1,1,2,[[364,1,1,1,2]]]],[5982,11133]]],["raised",[2,2,[[10,2,2,0,2,[[295,1,1,0,1],[299,1,1,1,2]]]],[8891,9066]]],["recovered",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19175]]],["restore",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19684]]],["rose",[1,1,[[31,1,1,0,1,[[892,1,1,0,1]]]],[22575]]],["scaleth",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17006]]],["set",[1,1,[[13,1,1,0,1,[[369,1,1,0,1]]]],[11234]]],["spring",[2,2,[[6,1,1,0,1,[[229,1,1,0,1]]],[8,1,1,1,2,[[244,1,1,1,2]]]],[7049,7417]]],["take",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15545]]],["up",[606,553,[[0,37,35,0,35,[[1,1,1,0,1],[12,1,1,1,2],[16,1,1,2,3],[18,2,2,3,5],[21,1,1,5,6],[23,1,1,6,7],[25,1,1,7,8],[34,3,3,8,11],[37,2,2,11,13],[40,7,7,13,20],[43,4,4,20,24],[44,2,2,24,26],[45,2,2,26,28],[48,3,2,28,30],[49,6,5,30,35]]],[1,46,43,35,78,[[50,1,1,35,36],[51,1,1,36,37],[52,1,1,37,38],[57,4,4,38,42],[59,2,2,42,44],[61,1,1,44,45],[62,1,1,45,46],[65,2,2,46,48],[66,2,2,48,50],[68,7,6,50,56],[69,1,1,56,57],[73,7,7,57,64],[81,5,5,64,69],[82,4,3,69,72],[83,4,4,72,76],[89,3,2,76,78]]],[3,28,24,78,102,[[125,4,3,78,81],[126,1,1,81,82],[129,5,3,82,85],[130,3,2,85,87],[132,5,5,87,92],[136,2,2,92,94],[137,3,3,94,97],[138,1,1,97,98],[143,1,1,98,99],[148,2,2,99,101],[149,1,1,101,102]]],[4,21,20,102,122,[[153,7,6,102,108],[155,2,2,108,110],[161,2,2,110,112],[162,2,2,112,114],[169,1,1,114,115],[172,1,1,115,116],[177,1,1,116,117],[180,1,1,117,118],[182,1,1,118,119],[184,2,2,119,121],[186,1,1,121,122]]],[5,46,40,122,162,[[188,2,2,122,124],[190,4,4,124,128],[192,2,2,128,130],[193,5,3,130,133],[194,5,5,133,138],[196,6,6,138,144],[197,1,1,144,145],[198,1,1,145,146],[200,1,1,146,147],[201,8,5,147,152],[202,1,1,152,153],[203,1,1,153,154],[204,3,2,154,156],[205,4,4,156,160],[208,1,1,160,161],[210,1,1,161,162]]],[6,56,49,162,211,[[211,6,6,162,168],[212,1,1,168,169],[214,4,3,169,172],[216,6,5,172,177],[218,2,2,177,179],[219,2,2,179,181],[221,3,3,181,184],[222,1,1,184,185],[223,1,1,185,186],[224,2,2,186,188],[225,5,4,188,192],[226,6,5,192,197],[228,3,3,197,200],[229,1,1,200,201],[230,12,9,201,210],[231,1,1,210,211]]],[8,47,42,211,253,[[236,4,4,211,215],[237,3,3,215,218],[240,1,1,218,219],[241,2,2,219,221],[242,2,2,221,223],[244,6,4,223,227],[245,1,1,227,228],[246,1,1,228,229],[248,2,2,229,231],[249,8,6,231,237],[250,3,3,237,240],[252,3,2,240,242],[258,2,2,242,244],[259,1,1,244,245],[260,3,3,245,248],[262,1,1,248,249],[263,2,2,249,251],[264,2,2,251,253]]],[9,26,20,253,273,[[268,6,4,253,257],[271,5,4,257,261],[272,1,1,261,262],[281,5,2,262,264],[283,1,1,264,265],[284,1,1,265,266],[285,1,1,266,267],[286,1,1,267,268],[287,1,1,268,269],[288,1,1,269,270],[290,3,3,270,273]]],[10,33,31,273,304,[[291,3,3,273,276],[292,1,1,276,277],[293,1,1,277,278],[296,1,1,278,279],[298,1,1,279,280],[299,2,2,280,282],[300,2,2,282,284],[301,1,1,284,285],[302,3,3,285,288],[304,1,1,288,289],[305,1,1,289,290],[306,1,1,290,291],[307,1,1,291,292],[308,6,4,292,296],[310,4,4,296,300],[312,4,4,300,304]]],[11,48,40,304,344,[[313,8,7,304,311],[314,5,2,311,313],[315,3,3,313,316],[316,3,3,316,319],[318,1,1,319,320],[322,1,1,320,321],[324,3,2,321,323],[326,1,1,323,324],[327,1,1,324,325],[328,3,3,325,328],[329,3,2,328,330],[330,6,4,330,334],[331,3,3,334,337],[332,2,2,337,339],[334,1,1,339,340],[335,2,2,340,342],[336,2,2,342,344]]],[12,9,7,344,351,[[350,2,1,344,345],[351,4,3,345,348],[358,2,2,348,350],[363,1,1,350,351]]],[13,27,27,351,378,[[367,3,3,351,354],[371,1,1,354,355],[374,1,1,355,356],[375,1,1,356,357],[376,1,1,357,358],[377,1,1,358,359],[378,2,2,359,361],[382,1,1,361,362],[384,6,6,362,368],[386,1,1,368,369],[387,1,1,369,370],[390,1,1,370,371],[391,1,1,371,372],[395,1,1,372,373],[398,1,1,373,374],[400,1,1,374,375],[401,1,1,375,376],[402,2,2,376,378]]],[14,10,9,378,387,[[403,4,3,378,381],[404,2,2,381,383],[409,3,3,383,386],[410,1,1,386,387]]],[15,8,8,387,395,[[415,1,1,387,388],[416,1,1,388,389],[419,3,3,389,392],[421,1,1,392,393],[424,2,2,393,395]]],[17,3,3,395,398,[[442,1,1,395,396],[455,1,1,396,397],[477,1,1,397,398]]],[18,10,10,398,408,[[495,1,1,398,399],[507,1,1,399,400],[517,1,1,400,401],[524,1,1,401,402],[548,1,1,402,403],[555,1,1,403,404],[581,1,1,404,405],[584,1,1,405,406],[599,1,1,406,407],[609,1,1,407,408]]],[19,4,4,408,412,[[642,1,1,408,409],[652,1,1,409,410],[653,1,1,410,411],[657,1,1,411,412]]],[20,1,1,412,413,[[668,1,1,412,413]]],[21,2,2,413,415,[[677,1,1,413,414],[678,1,1,414,415]]],[22,35,32,415,447,[[680,1,1,415,416],[683,2,2,416,418],[685,2,2,418,420],[686,2,1,420,421],[689,1,1,421,422],[692,1,1,422,423],[693,2,2,423,425],[699,1,1,425,426],[700,1,1,426,427],[702,1,1,427,428],[710,1,1,428,429],[712,3,3,429,432],[713,1,1,432,433],[714,3,2,433,435],[715,3,3,435,438],[716,1,1,438,439],[718,2,2,439,441],[731,1,1,441,442],[733,2,1,442,443],[735,2,2,443,445],[738,1,1,445,446],[741,1,1,446,447]]],[23,40,39,447,486,[[748,3,3,447,450],[749,1,1,450,451],[750,1,1,451,452],[753,1,1,452,453],[758,1,1,453,454],[765,1,1,454,455],[766,1,1,455,456],[767,1,1,456,457],[770,1,1,457,458],[771,1,1,458,459],[775,1,1,459,460],[778,1,1,460,461],[779,1,1,461,462],[781,1,1,462,463],[783,1,1,463,464],[790,6,5,464,469],[791,1,1,469,470],[792,3,3,470,473],[793,4,4,473,477],[794,4,4,477,481],[795,4,4,481,485],[796,1,1,485,486]]],[24,2,2,486,488,[[797,1,1,486,487],[798,1,1,487,488]]],[25,28,27,488,515,[[809,1,1,488,489],[810,1,1,489,490],[812,2,2,490,492],[814,1,1,492,493],[815,2,2,493,495],[817,1,1,495,496],[820,1,1,496,497],[824,1,1,497,498],[825,1,1,498,499],[827,2,1,499,500],[828,1,1,500,501],[830,1,1,501,502],[833,1,1,502,503],[837,1,1,503,504],[838,3,3,504,507],[839,3,3,507,510],[840,1,1,510,511],[841,4,4,511,515]]],[26,3,3,515,518,[[857,2,2,515,517],[860,1,1,517,518]]],[27,6,6,518,524,[[862,1,1,518,519],[863,1,1,519,520],[865,1,1,520,521],[869,1,1,521,522],[871,1,1,522,523],[874,1,1,523,524]]],[28,6,5,524,529,[[876,1,1,524,525],[877,3,2,525,527],[878,2,2,527,529]]],[29,8,8,529,537,[[881,2,2,529,531],[882,1,1,531,532],[885,1,1,532,533],[886,2,2,533,535],[887,2,2,535,537]]],[30,1,1,537,538,[[888,1,1,537,538]]],[31,3,3,538,541,[[889,1,1,538,539],[890,1,1,539,540],[892,1,1,540,541]]],[32,3,3,541,544,[[894,1,1,541,542],[896,1,1,542,543],[898,1,1,543,544]]],[33,3,3,544,547,[[901,2,2,544,546],[902,1,1,546,547]]],[34,2,2,547,549,[[903,1,1,547,548],[905,1,1,548,549]]],[36,1,1,549,550,[[909,1,1,549,550]]],[37,3,3,550,553,[[924,3,3,550,553]]]],[36,319,419,485,487,560,607,715,1012,1014,1024,1131,1132,1197,1198,1200,1213,1214,1217,1222,1341,1348,1357,1358,1367,1383,1415,1417,1477,1482,1511,1512,1513,1515,1520,1542,1577,1587,1713,1714,1715,1716,1789,1791,1854,1885,1960,1961,1986,1993,2029,2038,2039,2046,2049,2050,2077,2178,2179,2186,2189,2190,2192,2195,2439,2442,2446,2461,2468,2474,2476,2478,2498,2499,2500,2520,2743,2744,3982,3986,3987,3999,4092,4096,4106,4148,4152,4206,4207,4208,4218,4221,4316,4338,4345,4357,4373,4416,4566,4727,4729,4798,4913,4914,4916,4918,4920,4933,4976,5002,5166,5180,5187,5189,5372,5428,5554,5654,5720,5807,5808,5840,5875,5877,5926,5927,5928,5929,5954,5969,5978,5979,5980,6003,6005,6012,6013,6022,6068,6069,6070,6073,6097,6100,6124,6137,6195,6205,6208,6209,6210,6217,6266,6290,6304,6305,6331,6332,6333,6368,6459,6508,6510,6511,6512,6513,6525,6531,6546,6604,6609,6611,6657,6659,6667,6675,6689,6727,6730,6802,6805,6842,6845,6860,6872,6904,6911,6928,6935,6938,6939,6942,6952,6954,6957,6967,6980,7002,7005,7010,7054,7057,7072,7077,7080,7082,7084,7085,7092,7094,7121,7215,7219,7233,7236,7246,7254,7259,7331,7340,7351,7359,7362,7402,7404,7405,7410,7421,7446,7490,7500,7517,7518,7520,7521,7529,7554,7562,7566,7594,7641,7643,7829,7839,7861,7866,7874,7896,7938,7953,7956,7976,7978,8050,8051,8052,8076,8149,8151,8154,8155,8159,8413,8419,8470,8511,8545,8556,8593,8611,8710,8711,8714,8752,8757,8762,8804,8831,8904,8989,9067,9075,9084,9108,9123,9169,9175,9178,9243,9266,9300,9336,9382,9383,9384,9385,9409,9430,9434,9441,9486,9492,9500,9509,9536,9537,9539,9540,9542,9546,9549,9562,9574,9583,9584,9597,9624,9637,9638,9698,9808,9860,9867,9907,9939,9968,9970,9972,9986,9988,10033,10037,10041,10049,10075,10084,10089,10103,10106,10149,10167,10194,10203,10212,10766,10782,10784,10785,10952,10953,11093,11198,11200,11211,11273,11357,11368,11413,11418,11439,11446,11510,11544,11547,11553,11556,11561,11570,11603,11641,11700,11725,11811,11880,11963,11986,11999,12016,12019,12021,12027,12028,12086,12179,12180,12201,12202,12346,12362,12425,12426,12481,12529,12625,12661,13017,13332,13930,14126,14322,14527,14630,14996,15134,15579,15725,16093,16154,16808,17120,17150,17255,17497,17635,17645,17688,17745,17763,17783,17788,17814,17900,17936,17962,17965,18037,18053,18113,18272,18306,18313,18316,18329,18331,18340,18366,18376,18381,18412,18429,18451,18713,18753,18772,18773,18828,18877,19034,19040,19056,19068,19093,19196,19295,19442,19474,19492,19582,19618,19697,19822,19834,19885,19928,20049,20052,20053,20054,20056,20075,20085,20095,20124,20146,20149,20155,20158,20169,20175,20187,20210,20215,20239,20254,20265,20285,20324,20342,20615,20625,20678,20679,20713,20734,20738,20802,20884,21053,21064,21103,21151,21187,21251,21362,21403,21405,21409,21436,21441,21443,21450,21483,21499,21517,21526,21964,21969,22059,22105,22120,22148,22203,22233,22281,22297,22320,22331,22352,22355,22396,22400,22420,22465,22489,22491,22497,22500,22531,22533,22554,22574,22608,22622,22652,22700,22706,22715,22746,22784,22848,23081,23084,23085]]],["vapour",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13769]]],["went",[5,5,[[6,1,1,0,1,[[228,1,1,0,1]]],[10,2,2,1,3,[[300,2,2,1,3]]],[13,2,2,3,5,[[375,2,2,3,5]]]],[7010,9095,9096,11379,11380]]],["wrought",[1,1,[[13,1,1,0,1,[[369,1,1,0,1]]]],[11243]]]]},{"k":"H5928","v":[["offerings",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12160]]]]},{"k":"H5929","v":[["*",[18,13,[[0,2,2,0,2,[[2,1,1,0,1],[7,1,1,1,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[15,5,1,3,4,[[420,5,1,3,4]]],[17,1,1,4,5,[[448,1,1,4,5]]],[18,1,1,5,6,[[478,1,1,5,6]]],[19,1,1,6,7,[[638,1,1,6,7]]],[22,3,3,7,10,[[679,1,1,7,8],[712,1,1,8,9],[742,1,1,9,10]]],[23,2,2,10,12,[[752,1,1,10,11],[761,1,1,11,12]]],[25,2,1,12,13,[[848,2,1,12,13]]]],[62,194,3560,12508,13178,13942,16716,17684,18307,18891,19166,19365,21691]]],["branch",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16716]]],["branches",[5,1,[[15,5,1,0,1,[[420,5,1,0,1]]]],[12508]]],["leaf",[11,10,[[0,1,1,0,1,[[7,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[17,1,1,2,3,[[448,1,1,2,3]]],[18,1,1,3,4,[[478,1,1,3,4]]],[22,3,3,4,7,[[679,1,1,4,5],[712,1,1,5,6],[742,1,1,6,7]]],[23,2,2,7,9,[[752,1,1,7,8],[761,1,1,8,9]]],[25,2,1,9,10,[[848,2,1,9,10]]]],[194,3560,13178,13942,17684,18307,18891,19166,19365,21691]]],["leaves",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[62]]]]},{"k":"H5930","v":[["*",[288,262,[[0,7,7,0,7,[[7,1,1,0,1],[21,6,6,1,7]]],[1,17,16,7,23,[[59,1,1,7,8],[67,1,1,8,9],[69,1,1,9,10],[73,1,1,10,11],[78,3,3,11,14],[79,2,2,14,16],[80,1,1,16,17],[81,1,1,17,18],[84,1,1,18,19],[87,1,1,19,20],[89,4,3,20,23]]],[2,62,58,23,81,[[90,8,8,23,31],[92,1,1,31,32],[93,10,9,32,41],[94,2,2,41,43],[95,5,4,43,47],[96,4,3,47,50],[97,3,3,50,53],[98,10,10,53,63],[99,1,1,63,64],[101,2,2,64,66],[103,5,5,66,71],[104,2,2,71,73],[105,4,3,73,76],[106,1,1,76,77],[111,1,1,77,78],[112,3,3,78,81]]],[3,56,53,81,134,[[122,3,3,81,84],[123,13,13,84,97],[124,1,1,97,98],[126,1,1,98,99],[131,4,4,99,103],[139,4,4,103,107],[144,14,12,107,119],[145,16,15,119,134]]],[4,6,6,134,140,[[164,5,5,134,139],[179,1,1,139,140]]],[5,6,6,140,146,[[194,1,1,140,141],[208,5,5,141,146]]],[6,6,6,146,152,[[216,1,1,146,147],[221,1,1,147,148],[223,2,2,148,150],[230,1,1,150,151],[231,1,1,151,152]]],[8,10,9,152,161,[[241,2,2,152,154],[242,2,2,154,156],[245,1,1,156,157],[248,4,3,157,160],[250,1,1,160,161]]],[9,5,5,161,166,[[272,2,2,161,163],[290,3,3,163,166]]],[10,8,7,166,173,[[293,2,2,166,168],[298,2,1,168,169],[299,1,1,169,170],[300,1,1,170,171],[308,2,2,171,173]]],[11,9,6,173,179,[[315,1,1,173,174],[317,1,1,174,175],[322,2,2,175,177],[328,5,2,177,179]]],[12,13,11,179,190,[[343,1,1,179,180],[353,4,3,180,183],[358,5,4,183,187],[359,1,1,187,188],[360,1,1,188,189],[366,1,1,189,190]]],[13,30,24,190,214,[[367,1,1,190,191],[368,1,1,191,192],[370,1,1,192,193],[373,3,2,193,195],[374,1,1,195,196],[379,1,1,196,197],[389,1,1,197,198],[390,1,1,198,199],[395,12,9,199,208],[396,1,1,208,209],[397,4,2,209,211],[401,3,3,211,214]]],[14,8,6,214,220,[[405,6,5,214,219],[410,2,1,219,220]]],[15,1,1,220,221,[[422,1,1,220,221]]],[17,2,2,221,223,[[436,1,1,221,222],[477,1,1,222,223]]],[18,7,7,223,230,[[497,1,1,223,224],[517,1,1,224,225],[527,1,1,225,226],[528,2,2,226,228],[543,2,2,228,230]]],[22,5,5,230,235,[[679,1,1,230,231],[718,1,1,231,232],[721,1,1,232,233],[734,1,1,233,234],[739,1,1,234,235]]],[23,7,7,235,242,[[750,1,1,235,236],[751,2,2,236,238],[758,1,1,238,239],[761,1,1,239,240],[763,1,1,240,241],[777,1,1,241,242]]],[25,20,17,242,259,[[841,5,4,242,246],[844,3,3,246,249],[845,1,1,249,250],[846,5,4,250,254],[847,6,5,254,259]]],[27,1,1,259,260,[[867,1,1,259,260]]],[29,1,1,260,261,[[883,1,1,260,261]]],[32,1,1,261,262,[[898,1,1,261,262]]]],[203,549,550,553,554,555,560,1802,2011,2075,2182,2354,2361,2378,2391,2410,2429,2444,2547,2634,2713,2717,2736,2748,2749,2751,2754,2755,2758,2759,2762,2783,2802,2805,2813,2819,2820,2824,2825,2828,2829,2837,2840,2858,2859,2861,2874,2881,2887,2916,2935,2938,2945,2955,2956,2960,2965,2966,2967,2969,2970,2975,2977,2996,3050,3052,3124,3130,3131,3133,3142,3183,3198,3204,3206,3225,3243,3387,3414,3420,3439,3834,3837,3839,3865,3871,3877,3883,3889,3895,3901,3907,3913,3919,3925,3931,3937,3951,3998,4156,4158,4161,4177,4419,4422,4431,4433,4580,4583,4587,4588,4590,4591,4592,4596,4600,4601,4604,4608,4610,4614,4616,4619,4621,4624,4627,4630,4633,4636,4639,4642,4644,4646,4647,5246,5251,5253,5254,5267,5591,6033,6449,6452,6453,6454,6455,6680,6860,6900,6907,7080,7106,7345,7346,7361,7362,7426,7494,7495,7497,7582,8174,8175,8714,8716,8717,8820,8831,9049,9076,9084,9374,9379,9603,9664,9817,9818,9976,9978,10503,10821,10822,10860,10957,10958,10960,10963,10965,11014,11185,11200,11215,11252,11325,11331,11358,11464,11674,11691,11798,11809,11815,11818,11819,11822,11823,11825,11826,11842,11856,11857,11978,11980,11982,12099,12100,12101,12102,12103,12236,12582,12874,13930,14185,14531,14676,14707,14710,14886,14888,17665,18436,18528,18760,18851,19109,19140,19141,19305,19383,19412,19793,21503,21515,21516,21519,21590,21596,21599,21610,21645,21647,21653,21655,21657,21659,21667,21668,21670,22173,22445,22654]]],["+",[1,1,[[27,1,1,0,1,[[867,1,1,0,1]]]],[22173]]],["ascent",[1,1,[[10,1,1,0,1,[[300,1,1,0,1]]]],[9084]]],["burnt",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6452]]],["offering",[182,168,[[0,6,6,0,6,[[21,6,6,0,6]]],[1,12,11,6,17,[[67,1,1,6,7],[78,3,3,7,10],[79,1,1,10,11],[80,1,1,11,12],[84,1,1,12,13],[87,1,1,13,14],[89,4,3,14,17]]],[2,53,49,17,66,[[90,2,2,17,19],[93,10,9,19,28],[94,2,2,28,30],[95,5,4,30,34],[96,4,3,34,37],[97,2,2,37,39],[98,9,9,39,48],[99,1,1,48,49],[101,2,2,49,51],[103,5,5,51,56],[104,2,2,56,58],[105,4,3,58,61],[106,1,1,61,62],[111,1,1,62,63],[112,3,3,63,66]]],[3,53,50,66,116,[[122,3,3,66,69],[123,13,13,69,82],[124,1,1,82,83],[131,4,4,83,87],[139,3,3,87,90],[144,14,12,90,102],[145,15,14,102,116]]],[5,1,1,116,117,[[208,1,1,116,117]]],[6,3,3,117,120,[[221,1,1,117,118],[223,2,2,118,120]]],[8,7,6,120,126,[[241,1,1,120,121],[242,2,2,121,123],[248,4,3,123,126]]],[11,7,5,126,131,[[315,1,1,126,127],[317,1,1,127,128],[322,1,1,128,129],[328,4,2,129,131]]],[12,5,5,131,136,[[343,1,1,131,132],[353,1,1,132,133],[358,2,2,133,135],[359,1,1,135,136]]],[13,9,8,136,144,[[370,1,1,136,137],[373,1,1,137,138],[395,7,6,138,144]]],[14,2,2,144,146,[[405,1,1,144,145],[410,1,1,145,146]]],[15,1,1,146,147,[[422,1,1,146,147]]],[17,1,1,147,148,[[477,1,1,147,148]]],[18,3,3,148,151,[[517,1,1,148,149],[528,2,2,149,151]]],[22,2,2,151,153,[[718,1,1,151,152],[739,1,1,152,153]]],[23,1,1,153,154,[[758,1,1,153,154]]],[25,16,14,154,168,[[841,4,3,154,157],[844,1,1,157,158],[845,1,1,158,159],[846,4,4,159,163],[847,6,5,163,168]]]],[549,550,553,554,555,560,2011,2354,2361,2378,2410,2429,2547,2634,2713,2717,2736,2749,2751,2802,2805,2813,2819,2820,2824,2825,2828,2829,2837,2840,2858,2859,2861,2874,2881,2887,2916,2935,2945,2955,2956,2960,2965,2966,2967,2969,2975,2977,2996,3050,3052,3124,3130,3131,3133,3142,3183,3198,3204,3206,3225,3243,3387,3414,3420,3439,3834,3837,3839,3865,3871,3877,3883,3889,3895,3901,3907,3913,3919,3925,3931,3937,3951,4156,4158,4161,4177,4419,4431,4433,4580,4583,4587,4588,4590,4591,4592,4596,4600,4601,4604,4608,4610,4614,4616,4619,4621,4624,4627,4630,4633,4636,4639,4642,4644,4646,6449,6860,6900,6907,7345,7361,7362,7494,7495,7497,9603,9664,9818,9976,9978,10503,10860,10960,10963,10965,11252,11325,11809,11815,11818,11819,11823,11826,12102,12236,12582,13930,14531,14707,14710,18436,18851,19305,21515,21516,21519,21596,21610,21645,21647,21653,21655,21657,21659,21667,21668,21670]]],["offerings",[81,76,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,4,4,1,5,[[59,1,1,1,2],[69,1,1,2,3],[73,1,1,3,4],[81,1,1,4,5]]],[3,2,2,5,7,[[126,1,1,5,6],[145,1,1,6,7]]],[4,6,6,7,13,[[164,5,5,7,12],[179,1,1,12,13]]],[5,4,4,13,17,[[194,1,1,13,14],[208,3,3,14,17]]],[6,2,2,17,19,[[230,1,1,17,18],[231,1,1,18,19]]],[8,3,3,19,22,[[241,1,1,19,20],[245,1,1,20,21],[250,1,1,21,22]]],[9,4,4,22,26,[[272,2,2,22,24],[290,2,2,24,26]]],[10,5,4,26,30,[[293,2,2,26,28],[298,2,1,28,29],[299,1,1,29,30]]],[11,1,1,30,31,[[322,1,1,30,31]]],[12,6,6,31,37,[[353,2,2,31,33],[358,3,3,33,36],[366,1,1,36,37]]],[13,20,17,37,54,[[367,1,1,37,38],[368,1,1,38,39],[373,2,1,39,40],[374,1,1,40,41],[389,1,1,41,42],[390,1,1,42,43],[395,5,5,43,48],[396,1,1,48,49],[397,4,2,49,51],[401,3,3,51,54]]],[14,6,5,54,59,[[405,5,4,54,58],[410,1,1,58,59]]],[17,1,1,59,60,[[436,1,1,59,60]]],[18,2,2,60,62,[[527,1,1,60,61],[543,1,1,61,62]]],[22,3,3,62,65,[[679,1,1,62,63],[721,1,1,63,64],[734,1,1,64,65]]],[23,6,6,65,71,[[750,1,1,65,66],[751,2,2,66,68],[761,1,1,68,69],[763,1,1,69,70],[777,1,1,70,71]]],[25,3,3,71,74,[[844,2,2,71,73],[846,1,1,73,74]]],[29,1,1,74,75,[[883,1,1,74,75]]],[32,1,1,75,76,[[898,1,1,75,76]]]],[203,1802,2075,2182,2444,3998,4647,5246,5251,5253,5254,5267,5591,6033,6453,6454,6455,7080,7106,7346,7426,7582,8174,8175,8716,8717,8820,8831,9049,9076,9817,10822,10860,10957,10958,10960,11185,11200,11215,11331,11358,11674,11691,11798,11822,11823,11825,11826,11842,11856,11857,11978,11980,11982,12099,12100,12101,12103,12236,12874,14676,14886,17665,18528,18760,19109,19140,19141,19383,19412,19793,21590,21599,21647,22445,22654]]],["sacrifice",[17,17,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,9,9,1,10,[[90,6,6,1,7],[92,1,1,7,8],[97,1,1,8,9],[98,1,1,9,10]]],[3,1,1,10,11,[[139,1,1,10,11]]],[6,1,1,11,12,[[216,1,1,11,12]]],[9,1,1,12,13,[[290,1,1,12,13]]],[10,2,2,13,15,[[308,2,2,13,15]]],[11,1,1,15,16,[[328,1,1,15,16]]],[18,1,1,16,17,[[497,1,1,16,17]]]],[2391,2748,2754,2755,2758,2759,2762,2783,2938,2970,4422,6680,8714,9374,9379,9978,14185]]],["sacrifices",[4,4,[[12,2,2,0,2,[[353,1,1,0,1],[360,1,1,1,2]]],[13,1,1,2,3,[[379,1,1,2,3]]],[18,1,1,3,4,[[543,1,1,3,4]]]],[10821,11014,11464,14888]]],["up",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21503]]]]},{"k":"H5931","v":[["occasion",[3,2,[[26,3,2,0,2,[[855,3,2,0,2]]]],[21909,21910]]]]},{"k":"H5932","v":[["iniquity",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22234]]]]},{"k":"H5933","v":[["*",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1080,10303]]],["Aliah",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10303]]],["Alvah",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1080]]]]},{"k":"H5934","v":[["youth",[4,4,[[17,2,2,0,2,[[455,1,1,0,1],[468,1,1,1,2]]],[18,1,1,2,3,[[566,1,1,2,3]]],[22,1,1,3,4,[[732,1,1,3,4]]]],[13337,13675,15371,18727]]]]},{"k":"H5935","v":[["*",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1063,10292]]],["Alian",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10292]]],["Alvan",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1063]]]]},{"k":"H5936","v":[["horseleach",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17266]]]]},{"k":"H5937","v":[["*",[16,16,[[9,1,1,0,1,[[267,1,1,0,1]]],[18,7,7,1,8,[[505,1,1,1,2],[537,1,1,2,3],[545,1,1,3,4],[571,1,1,4,5],[573,1,1,5,6],[585,1,1,6,7],[626,1,1,7,8]]],[19,1,1,8,9,[[650,1,1,8,9]]],[22,1,1,9,10,[[701,1,1,9,10]]],[23,4,4,10,14,[[755,1,1,10,11],[759,1,1,11,12],[794,1,1,12,13],[795,1,1,13,14]]],[34,1,1,14,15,[[905,1,1,14,15]]],[35,1,1,15,16,[[908,1,1,15,16]]]],[8042,14306,14813,14904,15434,15477,15749,16390,17060,18089,19241,19332,20177,20251,22786,22834]]],["joyful",[2,2,[[18,2,2,0,2,[[573,1,1,0,1],[626,1,1,1,2]]]],[15477,16390]]],["rejoice",[8,8,[[18,3,3,0,3,[[537,1,1,0,1],[545,1,1,1,2],[585,1,1,2,3]]],[19,1,1,3,4,[[650,1,1,3,4]]],[22,1,1,4,5,[[701,1,1,4,5]]],[23,1,1,5,6,[[795,1,1,5,6]]],[34,1,1,6,7,[[905,1,1,6,7]]],[35,1,1,7,8,[[908,1,1,7,8]]]],[14813,14904,15749,17060,18089,20251,22786,22834]]],["rejoiced",[2,2,[[23,2,2,0,2,[[759,1,1,0,1],[794,1,1,1,2]]]],[19332,20177]]],["rejoicest",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19241]]],["rejoiceth",[1,1,[[18,1,1,0,1,[[505,1,1,0,1]]]],[14306]]],["triumph",[2,2,[[9,1,1,0,1,[[267,1,1,0,1]]],[18,1,1,1,2,[[571,1,1,1,2]]]],[8042,15434]]]]},{"k":"H5938","v":[["rejoiceth",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17753]]]]},{"k":"H5939","v":[["*",[4,4,[[0,1,1,0,1,[[14,1,1,0,1]]],[25,3,3,1,4,[[813,3,3,1,4]]]],[377,20686,20687,20692]]],["dark",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[377]]],["twilight",[3,3,[[25,3,3,0,3,[[813,3,3,0,3]]]],[20686,20687,20692]]]]},{"k":"H5940","v":[["pestle",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17191]]]]},{"k":"H5941","v":[["*",[33,30,[[8,32,29,0,29,[[236,7,7,0,7],[237,5,5,7,12],[238,12,10,12,22],[239,7,6,22,28],[249,1,1,28,29]]],[10,1,1,29,30,[[292,1,1,29,30]]]],[7215,7221,7224,7225,7226,7229,7237,7251,7252,7260,7262,7267,7277,7278,7281,7282,7284,7285,7288,7290,7291,7292,7301,7308,7310,7311,7312,7313,7511,8797]]],["+",[2,2,[[8,2,2,0,2,[[238,2,2,0,2]]]],[7288,7291]]],["Eli",[30,28,[[8,29,27,0,27,[[236,7,7,0,7],[237,5,5,7,12],[238,9,8,12,20],[239,7,6,20,26],[249,1,1,26,27]]],[10,1,1,27,28,[[292,1,1,27,28]]]],[7215,7221,7224,7225,7226,7229,7237,7251,7252,7260,7262,7267,7277,7278,7281,7282,7284,7285,7290,7292,7301,7308,7310,7311,7312,7313,7511,8797]]],["Eli's",[1,1,[[8,1,1,0,1,[[238,1,1,0,1]]]],[7290]]]]},{"k":"H5942","v":[["upper",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]]],[6221,6524]]]]},{"k":"H5943","v":[["*",[10,10,[[26,10,10,0,10,[[852,1,1,0,1],[853,6,6,1,7],[854,2,2,7,9],[856,1,1,9,10]]]],[21833,21839,21854,21861,21862,21869,21871,21892,21895,21958]]],["High",[6,6,[[26,6,6,0,6,[[853,5,5,0,5],[856,1,1,5,6]]]],[21854,21861,21862,21869,21871,21958]]],["high",[4,4,[[26,4,4,0,4,[[852,1,1,0,1],[853,1,1,1,2],[854,2,2,2,4]]]],[21833,21839,21892,21895]]]]},{"k":"H5944","v":[["*",[20,20,[[6,4,4,0,4,[[213,4,4,0,4]]],[9,1,1,4,5,[[284,1,1,4,5]]],[10,2,2,5,7,[[307,2,2,5,7]]],[11,4,4,7,11,[[313,1,1,7,8],[316,2,2,8,10],[335,1,1,10,11]]],[12,1,1,11,12,[[365,1,1,11,12]]],[13,2,2,12,14,[[369,1,1,12,13],[375,1,1,13,14]]],[15,2,2,14,16,[[415,2,2,14,16]]],[18,2,2,16,18,[[581,2,2,16,18]]],[23,2,2,18,20,[[766,2,2,18,20]]]],[6588,6591,6592,6593,8511,9336,9340,9535,9613,9614,10177,11154,11238,11368,12358,12359,15574,15584,19467,19468]]],["+",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15584]]],["ascent",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11368]]],["chamber",[6,6,[[9,1,1,0,1,[[284,1,1,0,1]]],[10,1,1,1,2,[[307,1,1,1,2]]],[11,4,4,2,6,[[313,1,1,2,3],[316,2,2,3,5],[335,1,1,5,6]]]],[8511,9340,9535,9613,9614,10177]]],["chambers",[5,5,[[12,1,1,0,1,[[365,1,1,0,1]]],[13,1,1,1,2,[[369,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[23,2,2,3,5,[[766,2,2,3,5]]]],[11154,11238,15574,19467,19468]]],["loft",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9336]]],["parlour",[4,4,[[6,4,4,0,4,[[213,4,4,0,4]]]],[6588,6591,6592,6593]]],["up",[2,2,[[15,2,2,0,2,[[415,2,2,0,2]]]],[12358,12359]]]]},{"k":"H5945","v":[["*",[53,53,[[0,5,5,0,5,[[13,4,4,0,4],[39,1,1,4,5]]],[3,1,1,5,6,[[140,1,1,5,6]]],[4,3,3,6,9,[[178,1,1,6,7],[180,1,1,7,8],[184,1,1,8,9]]],[5,1,1,9,10,[[202,1,1,9,10]]],[9,1,1,10,11,[[288,1,1,10,11]]],[10,1,1,11,12,[[299,1,1,11,12]]],[11,2,2,12,14,[[327,1,1,12,13],[330,1,1,13,14]]],[12,1,1,14,15,[[344,1,1,14,15]]],[13,5,5,15,20,[[373,1,1,15,16],[374,1,1,16,17],[389,1,1,17,18],[393,1,1,18,19],[398,1,1,19,20]]],[15,1,1,20,21,[[415,1,1,20,21]]],[18,22,22,21,43,[[484,1,1,21,22],[486,1,1,22,23],[495,1,1,23,24],[498,1,1,24,25],[523,1,1,25,26],[524,1,1,26,27],[527,1,1,27,28],[534,1,1,28,29],[550,1,1,29,30],[554,1,1,30,31],[555,3,3,31,34],[559,1,1,34,35],[560,1,1,35,36],[564,1,1,36,37],[566,1,1,37,38],[568,2,2,38,40],[569,1,1,40,41],[574,1,1,41,42],[584,1,1,42,43]]],[22,3,3,43,46,[[685,1,1,43,44],[692,1,1,44,45],[714,1,1,45,46]]],[23,2,2,46,48,[[764,1,1,46,47],[780,1,1,47,48]]],[24,2,2,48,50,[[799,2,2,48,50]]],[25,3,3,50,53,[[810,1,1,50,51],[842,1,1,51,52],[843,1,1,52,53]]]],[354,355,356,358,1189,4462,5585,5612,5766,6270,8616,9059,9960,10041,10559,11345,11351,11676,11758,11905,12352,14012,14023,14131,14198,14618,14627,14682,14770,15031,15103,15130,15148,15169,15239,15259,15306,15353,15396,15404,15412,15487,15710,17785,17942,18332,19424,19852,20389,20392,20624,21533,21557]]],["High",[18,18,[[3,1,1,0,1,[[140,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[18,12,12,3,15,[[486,1,1,3,4],[498,1,1,4,5],[523,1,1,5,6],[527,1,1,6,7],[550,1,1,7,8],[554,1,1,8,9],[555,1,1,9,10],[559,1,1,10,11],[568,2,2,11,13],[569,1,1,13,14],[584,1,1,14,15]]],[22,1,1,15,16,[[692,1,1,15,16]]],[24,2,2,16,18,[[799,2,2,16,18]]]],[4462,5766,8616,14023,14198,14618,14682,15031,15103,15130,15239,15396,15404,15412,15710,17942,20389,20392]]],["Highest",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14131]]],["high",[19,19,[[0,4,4,0,4,[[13,4,4,0,4]]],[4,2,2,4,6,[[178,1,1,4,5],[180,1,1,5,6]]],[10,1,1,6,7,[[299,1,1,6,7]]],[13,3,3,7,10,[[373,1,1,7,8],[389,1,1,8,9],[393,1,1,9,10]]],[15,1,1,10,11,[[415,1,1,10,11]]],[18,7,7,11,18,[[484,1,1,11,12],[524,1,1,12,13],[534,1,1,13,14],[555,2,2,14,16],[560,1,1,16,17],[574,1,1,17,18]]],[23,1,1,18,19,[[764,1,1,18,19]]]],[354,355,356,358,5585,5612,9059,11345,11676,11758,12352,14012,14627,14770,15148,15169,15259,15487,19424]]],["higher",[4,4,[[11,1,1,0,1,[[327,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]],[23,1,1,2,3,[[780,1,1,2,3]]],[25,1,1,3,4,[[810,1,1,3,4]]]],[9960,15353,19852,20624]]],["highest",[2,2,[[18,1,1,0,1,[[564,1,1,0,1]]],[25,1,1,1,2,[[842,1,1,1,2]]]],[15306,21533]]],["upper",[8,8,[[5,1,1,0,1,[[202,1,1,0,1]]],[11,1,1,1,2,[[330,1,1,1,2]]],[12,1,1,2,3,[[344,1,1,2,3]]],[13,2,2,3,5,[[374,1,1,3,4],[398,1,1,4,5]]],[22,2,2,5,7,[[685,1,1,5,6],[714,1,1,6,7]]],[25,1,1,7,8,[[843,1,1,7,8]]]],[6270,10041,10559,11351,11905,17785,18332,21557]]],["uppermost",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1189]]]]},{"k":"H5946","v":[["High",[4,4,[[26,4,4,0,4,[[856,4,4,0,4]]]],[21951,21955,21958,21960]]]]},{"k":"H5947","v":[["*",[7,7,[[22,5,5,0,5,[[691,1,1,0,1],[700,1,1,1,2],[701,1,1,2,3],[702,1,1,3,4],[710,1,1,4,5]]],[35,2,2,5,7,[[907,1,1,5,6],[908,1,1,6,7]]]],[17909,18054,18084,18103,18272,22820,22831]]],["joyous",[3,3,[[22,3,3,0,3,[[700,1,1,0,1],[701,1,1,1,2],[710,1,1,2,3]]]],[18054,18084,18272]]],["rejoice",[3,3,[[22,2,2,0,2,[[691,1,1,0,1],[702,1,1,1,2]]],[35,1,1,2,3,[[908,1,1,2,3]]]],[17909,18103,22831]]],["rejoicing",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22820]]]]},{"k":"H5948","v":[["furnace",[1,1,[[18,1,1,0,1,[[489,1,1,0,1]]]],[14072]]]]},{"k":"H5949","v":[["*",[24,24,[[4,2,2,0,2,[[174,2,2,0,2]]],[8,1,1,2,3,[[237,1,1,2,3]]],[12,1,1,3,4,[[353,1,1,3,4]]],[18,9,9,4,13,[[486,1,1,4,5],[491,1,1,5,6],[543,1,1,6,7],[554,1,1,7,8],[555,1,1,8,9],[576,1,1,9,10],[580,1,1,10,11],[582,1,1,11,12],[618,1,1,12,13]]],[22,1,1,13,14,[[690,1,1,13,14]]],[25,8,8,14,22,[[815,2,2,14,16],[821,2,2,16,18],[822,1,1,18,19],[825,1,1,19,20],[837,2,2,20,22]]],[35,2,2,22,24,[[908,2,2,22,24]]]],[5484,5487,7243,10828,14032,14081,14878,15105,15124,15507,15556,15607,16280,17904,20753,20754,20938,20939,20968,21070,21376,21378,22827,22831]]],["actions",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7243]]],["acts",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15556]]],["deeds",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[10828,15607]]],["doing",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14878]]],["doings",[13,13,[[18,2,2,0,2,[[486,1,1,0,1],[554,1,1,1,2]]],[22,1,1,2,3,[[690,1,1,2,3]]],[25,8,8,3,11,[[815,2,2,3,5],[821,2,2,5,7],[822,1,1,7,8],[825,1,1,8,9],[837,2,2,9,11]]],[35,2,2,11,13,[[908,2,2,11,13]]]],[14032,15105,17904,20753,20754,20938,20939,20968,21070,21376,21378,22827,22831]]],["inventions",[1,1,[[18,1,1,0,1,[[576,1,1,0,1]]]],[15507]]],["occasions",[2,2,[[4,2,2,0,2,[[174,2,2,0,2]]]],[5484,5487]]],["works",[3,3,[[18,3,3,0,3,[[491,1,1,0,1],[555,1,1,1,2],[618,1,1,2,3]]]],[14081,15124,16280]]]]},{"k":"H5950","v":[["work",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19750]]]]},{"k":"H5951","v":[["rejoicing",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22782]]]]},{"k":"H5952","v":[["chamber",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21915]]]]},{"k":"H5953","v":[["*",[19,17,[[1,1,1,0,1,[[59,1,1,0,1]]],[2,1,1,1,2,[[108,1,1,1,2]]],[3,1,1,2,3,[[138,1,1,2,3]]],[4,1,1,3,4,[[176,1,1,3,4]]],[6,2,2,4,6,[[229,1,1,4,5],[230,1,1,5,6]]],[8,2,2,6,8,[[241,1,1,6,7],[266,1,1,7,8]]],[12,1,1,8,9,[[347,1,1,8,9]]],[17,1,1,9,10,[[451,1,1,9,10]]],[18,1,1,10,11,[[618,1,1,10,11]]],[23,3,2,11,13,[[750,2,1,11,12],[782,1,1,12,13]]],[24,5,4,13,17,[[797,3,2,13,15],[798,1,1,15,16],[799,1,1,16,17]]]],[1779,3291,4404,5546,7049,7099,7337,8013,10663,13253,16280,19098,19914,20322,20332,20352,20405]]],["+",[2,1,[[23,2,1,0,1,[[750,2,1,0,1]]]],[19098]]],["abuse",[2,2,[[8,1,1,0,1,[[266,1,1,0,1]]],[12,1,1,1,2,[[347,1,1,1,2]]]],[8013,10663]]],["abused",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7049]]],["affecteth",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20405]]],["defiled",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13253]]],["do",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20332]]],["done",[3,3,[[24,3,3,0,3,[[797,2,2,0,2],[798,1,1,2,3]]]],[20322,20332,20352]]],["glean",[2,2,[[2,1,1,0,1,[[108,1,1,0,1]]],[4,1,1,1,2,[[176,1,1,1,2]]]],[3291,5546]]],["gleaned",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7099]]],["mock",[1,1,[[23,1,1,0,1,[[782,1,1,0,1]]]],[19914]]],["mocked",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4404]]],["practise",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16280]]],["wonderfully",[1,1,[[8,1,1,0,1,[[241,1,1,0,1]]]],[7337]]],["wrought",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1779]]]]},{"k":"H5954","v":[["*",[11,11,[[26,11,11,0,11,[[851,3,3,0,3],[853,2,2,3,5],[854,4,4,5,9],[855,2,2,9,11]]]],[21774,21782,21783,21844,21845,21882,21884,21887,21889,21915,21923]]],["brought",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21923]]],["came",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21884]]],["in",[8,8,[[26,8,8,0,8,[[851,3,3,0,3],[853,2,2,3,5],[854,3,3,5,8]]]],[21774,21782,21783,21844,21845,21882,21887,21889]]],["went",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21915]]]]},{"k":"H5955","v":[["*",[6,6,[[6,1,1,0,1,[[218,1,1,0,1]]],[22,2,2,1,3,[[695,1,1,1,2],[702,1,1,2,3]]],[23,1,1,3,4,[[793,1,1,3,4]]],[30,1,1,4,5,[[888,1,1,4,5]]],[32,1,1,5,6,[[899,1,1,5,6]]]],[6721,17989,18108,20136,22515,22665]]],["grapegleanings",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22665]]],["grapes",[5,5,[[6,1,1,0,1,[[218,1,1,0,1]]],[22,2,2,1,3,[[695,1,1,1,2],[702,1,1,2,3]]],[23,1,1,3,4,[[793,1,1,3,4]]],[30,1,1,4,5,[[888,1,1,4,5]]]],[6721,17989,18108,20136,22515]]]]},{"k":"H5956","v":[["*",[28,27,[[2,6,5,0,5,[[93,1,1,0,1],[94,3,3,1,4],[109,2,1,4,5]]],[3,1,1,5,6,[[121,1,1,5,6]]],[4,3,3,6,9,[[174,3,3,6,9]]],[8,1,1,9,10,[[247,1,1,9,10]]],[10,1,1,10,11,[[300,1,1,10,11]]],[11,1,1,11,12,[[316,1,1,11,12]]],[13,1,1,12,13,[[375,1,1,12,13]]],[17,3,3,13,16,[[441,1,1,13,14],[463,1,1,14,15],[477,1,1,15,16]]],[18,4,4,16,20,[[487,1,1,16,17],[503,1,1,17,18],[532,1,1,18,19],[567,1,1,19,20]]],[19,1,1,20,21,[[655,1,1,20,21]]],[20,1,1,21,22,[[670,1,1,21,22]]],[22,2,2,22,24,[[679,1,1,22,23],[736,1,1,23,24]]],[24,1,1,24,25,[[799,1,1,24,25]]],[25,1,1,25,26,[[823,1,1,25,26]]],[33,1,1,26,27,[[902,1,1,26,27]]]],[2808,2832,2833,2834,3322,3805,5471,5473,5474,7463,9082,9630,11366,12994,13525,13925,14042,14277,14733,15386,17223,17537,17669,18793,20410,21002,22723]]],["+",[4,3,[[2,2,1,0,1,[[109,2,1,0,1]]],[18,1,1,1,2,[[532,1,1,1,2]]],[22,1,1,2,3,[[736,1,1,2,3]]]],[3322,14733,18793]]],["blind",[1,1,[[8,1,1,0,1,[[247,1,1,0,1]]]],[7463]]],["dissemblers",[1,1,[[18,1,1,0,1,[[503,1,1,0,1]]]],[14277]]],["hid",[11,11,[[2,3,3,0,3,[[93,1,1,0,1],[94,2,2,1,3]]],[3,1,1,3,4,[[121,1,1,3,4]]],[10,1,1,4,5,[[300,1,1,4,5]]],[11,1,1,5,6,[[316,1,1,5,6]]],[13,1,1,6,7,[[375,1,1,6,7]]],[17,2,2,7,9,[[441,1,1,7,8],[463,1,1,8,9]]],[25,1,1,9,10,[[823,1,1,9,10]]],[33,1,1,10,11,[[902,1,1,10,11]]]],[2808,2833,2834,3805,9082,9630,11366,12994,13525,21002,22723]]],["hidden",[1,1,[[2,1,1,0,1,[[94,1,1,0,1]]]],[2832]]],["hide",[2,2,[[22,1,1,0,1,[[679,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]]],[17669,20410]]],["hidest",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14042]]],["hideth",[2,2,[[17,1,1,0,1,[[477,1,1,0,1]]],[19,1,1,1,2,[[655,1,1,1,2]]]],[13925,17223]]],["secret",[1,1,[[18,1,1,0,1,[[567,1,1,0,1]]]],[15386]]],["thing",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17537]]],["thyself",[3,3,[[4,3,3,0,3,[[174,3,3,0,3]]]],[5471,5473,5474]]]]},{"k":"H5957","v":[["*",[20,15,[[14,2,2,0,2,[[406,2,2,0,2]]],[26,18,13,2,15,[[851,5,3,2,5],[852,1,1,5,6],[853,3,2,6,8],[854,1,1,8,9],[855,3,3,9,12],[856,5,3,12,15]]]],[12125,12129,21762,21778,21802,21816,21840,21871,21884,21911,21926,21931,21947,21951,21960]]],["+",[5,3,[[26,5,3,0,3,[[851,3,2,0,2],[856,2,1,2,3]]]],[21778,21802,21951]]],["ever",[9,9,[[26,9,9,0,9,[[851,2,2,0,2],[852,1,1,2,3],[853,1,1,3,4],[854,1,1,4,5],[855,3,3,5,8],[856,1,1,8,9]]]],[21762,21802,21816,21871,21884,21911,21926,21931,21951]]],["everlasting",[4,4,[[26,4,4,0,4,[[853,2,2,0,2],[856,2,2,2,4]]]],[21840,21871,21947,21960]]],["old",[2,2,[[14,2,2,0,2,[[406,2,2,0,2]]]],[12125,12129]]]]},{"k":"H5958","v":[["*",[2,2,[[8,2,2,0,2,[[252,1,1,0,1],[255,1,1,1,2]]]],[7674,7752]]],["man",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7752]]],["stripling",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7674]]]]},{"k":"H5959","v":[["*",[7,7,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]],[18,1,1,2,3,[[545,1,1,2,3]]],[19,1,1,3,4,[[657,1,1,3,4]]],[21,2,2,4,6,[[671,1,1,4,5],[676,1,1,5,6]]],[22,1,1,6,7,[[685,1,1,6,7]]]],[634,1562,14925,17270,17540,17622,17796]]],["damsels",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14925]]],["maid",[2,2,[[1,1,1,0,1,[[51,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[1562,17270]]],["virgin",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]]],[634,17796]]],["virgins",[2,2,[[21,2,2,0,2,[[671,1,1,0,1],[676,1,1,1,2]]]],[17540,17622]]]]},{"k":"H5960","v":[["Almon",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6399]]]]},{"k":"H5961","v":[["Alamoth",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10811]]]]},{"k":"H5962","v":[["Elamites",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12119]]]]},{"k":"H5963","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4806,4807]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4807]]],["Almondiblathaim",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4806]]]]},{"k":"H5964","v":[["*",[4,4,[[12,4,4,0,4,[[343,1,1,0,1],[344,1,1,1,2],[345,1,1,2,3],[346,1,1,3,4]]]],[10514,10543,10611,10657]]],["Alameth",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10543]]],["Alemeth",[3,3,[[12,3,3,0,3,[[343,1,1,0,1],[345,1,1,1,2],[346,1,1,2,3]]]],[10514,10611,10657]]]]},{"k":"H5965","v":[["*",[3,3,[[17,2,2,0,2,[[455,1,1,0,1],[474,1,1,1,2]]],[19,1,1,2,3,[[634,1,1,2,3]]]],[13344,13847,16593]]],["goodly",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13847]]],["ourselves",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16593]]],["rejoice",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13344]]]]},{"k":"H5966","v":[["up",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13864]]]]},{"k":"H5967","v":[["ribs",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21938]]]]},{"k":"H5968","v":[["*",[5,5,[[0,1,1,0,1,[[37,1,1,0,1]]],[21,1,1,1,2,[[675,1,1,1,2]]],[22,1,1,2,3,[[729,1,1,2,3]]],[29,1,1,3,4,[[886,1,1,3,4]]],[31,1,1,4,5,[[892,1,1,4,5]]]],[1133,17612,18693,22494,22576]]],["faint",[1,1,[[29,1,1,0,1,[[886,1,1,0,1]]]],[22494]]],["fainted",[2,2,[[22,1,1,0,1,[[729,1,1,0,1]]],[31,1,1,1,2,[[892,1,1,1,2]]]],[18693,22576]]],["herself",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1133]]],["overlaid",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17612]]]]},{"k":"H5969","v":[["fainted",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21245]]]]},{"k":"H5970","v":[["*",[8,8,[[8,1,1,0,1,[[237,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[18,4,4,2,6,[[482,1,1,2,3],[486,1,1,3,4],[502,1,1,4,5],[545,1,1,5,6]]],[19,2,2,6,8,[[638,1,1,6,7],[655,1,1,7,8]]]],[7241,10852,13984,14023,14253,14903,16698,17208]]],["joyful",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13984]]],["rejoice",[4,4,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,2,2,1,3,[[486,1,1,1,2],[545,1,1,2,3]]],[19,1,1,3,4,[[655,1,1,3,4]]]],[10852,14023,14903,17208]]],["rejoiceth",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[19,1,1,1,2,[[638,1,1,1,2]]]],[7241,16698]]],["triumph",[1,1,[[18,1,1,0,1,[[502,1,1,0,1]]]],[14253]]]]},{"k":"H5971","v":[["*",[1868,1655,[[0,33,33,0,33,[[10,1,1,0,1],[13,1,1,1,2],[16,2,2,2,4],[18,1,1,4,5],[22,4,4,5,9],[24,2,2,9,11],[25,2,2,11,13],[26,1,1,13,14],[27,1,1,14,15],[31,1,1,15,16],[32,1,1,16,17],[33,2,2,17,19],[34,2,2,19,21],[40,2,2,21,23],[41,1,1,23,24],[46,2,2,24,26],[47,2,2,26,28],[48,4,4,28,32],[49,1,1,32,33]]],[1,175,149,33,182,[[50,4,3,33,36],[52,4,4,36,40],[53,4,4,40,44],[54,12,10,44,54],[55,1,1,54,55],[56,3,3,55,58],[57,17,13,58,71],[58,7,7,71,78],[59,2,2,78,80],[60,4,3,80,83],[61,5,5,83,88],[62,5,4,88,92],[63,5,4,92,96],[64,5,4,96,100],[65,3,3,100,103],[66,8,7,103,110],[67,15,12,110,122],[68,18,15,122,137],[69,4,3,137,140],[70,1,1,140,141],[71,2,2,141,143],[72,2,2,143,145],[73,5,4,145,149],[79,2,2,149,151],[80,1,1,151,152],[81,19,17,152,169],[82,12,9,169,178],[83,3,2,178,180],[85,2,2,180,182]]],[2,43,39,182,221,[[93,2,2,182,184],[96,4,4,184,188],[98,9,6,188,194],[99,1,1,194,195],[105,4,3,195,198],[106,3,3,198,201],[107,1,1,201,202],[108,3,3,202,205],[109,9,9,205,214],[110,4,4,214,218],[112,2,2,218,220],[115,1,1,220,221]]],[3,87,76,221,297,[[121,2,2,221,223],[125,1,1,223,224],[127,20,18,224,242],[128,2,2,242,244],[129,5,5,244,249],[130,10,9,249,258],[131,2,2,258,260],[132,3,2,260,262],[136,4,4,262,266],[137,15,12,266,278],[138,8,7,278,285],[139,2,2,285,287],[140,3,1,287,288],[141,4,3,288,291],[143,1,1,291,292],[147,3,3,292,295],[148,1,1,295,296],[149,1,1,296,297]]],[4,107,96,297,393,[[153,1,1,297,298],[154,7,7,298,305],[155,4,4,305,309],[156,7,6,309,315],[157,1,1,315,316],[158,1,1,316,317],[159,8,5,317,322],[161,8,7,322,329],[162,2,2,329,331],[165,2,2,331,333],[166,4,2,333,335],[168,1,1,335,336],[169,3,3,336,339],[170,1,1,339,340],[172,8,7,340,347],[173,2,1,347,348],[178,3,3,348,351],[179,16,16,351,367],[180,6,6,367,373],[181,1,1,373,374],[182,1,1,374,375],[183,3,3,375,378],[184,10,8,378,386],[185,7,7,386,393]]],[5,70,58,393,451,[[187,4,4,393,397],[189,7,5,397,402],[190,7,5,402,407],[191,3,2,407,409],[192,10,6,409,415],[193,6,5,415,420],[194,13,11,420,431],[196,3,3,431,434],[197,2,2,434,436],[200,1,1,436,437],[203,3,3,437,440],[210,11,11,440,451]]],[6,67,61,451,512,[[211,1,1,451,452],[212,4,4,452,456],[213,1,1,456,457],[214,1,1,457,458],[215,6,6,458,464],[217,9,8,464,472],[218,1,1,472,473],[219,16,13,473,486],[220,1,1,486,487],[221,4,4,487,491],[222,1,1,491,492],[224,3,3,492,495],[226,2,2,495,497],[228,4,4,497,501],[230,9,7,501,508],[231,4,4,508,512]]],[7,10,9,512,521,[[232,5,4,512,516],[233,1,1,516,517],[234,1,1,517,518],[235,3,3,518,521]]],[8,110,89,521,610,[[237,4,4,521,525],[239,3,3,525,528],[240,2,2,528,530],[241,3,1,530,531],[243,4,4,531,535],[244,8,6,535,541],[245,9,5,541,546],[246,8,7,546,553],[247,6,5,553,558],[248,12,11,558,569],[249,26,19,569,588],[250,8,8,588,596],[252,2,2,596,598],[253,2,2,598,600],[258,1,1,600,601],[261,5,4,601,605],[262,1,1,605,606],[265,5,3,606,609],[266,1,1,609,610]]],[9,103,85,610,695,[[267,3,2,610,612],[268,4,4,612,616],[269,8,7,616,623],[271,2,2,623,625],[272,5,4,625,629],[273,9,6,629,635],[274,1,1,635,636],[276,3,3,636,639],[277,2,2,639,641],[278,4,3,641,644],[279,1,1,644,645],[280,2,2,645,647],[281,6,5,647,652],[282,4,4,652,656],[283,9,7,656,663],[284,11,9,663,672],[285,10,6,672,678],[286,3,3,678,681],[288,4,3,681,684],[289,2,2,684,686],[290,10,9,686,695]]],[10,83,67,695,762,[[291,3,2,695,697],[293,5,3,697,700],[294,1,1,700,701],[295,2,2,701,703],[296,1,1,703,704],[298,21,17,704,721],[299,3,3,721,724],[302,14,13,724,737],[303,1,1,737,738],[304,3,2,738,740],[306,8,5,740,745],[308,8,6,745,751],[309,1,1,751,752],[310,5,4,752,756],[311,3,3,756,759],[312,4,3,759,762]]],[11,53,47,762,809,[[315,2,1,762,763],[316,4,4,763,767],[318,1,1,767,768],[319,3,3,768,771],[320,1,1,771,772],[321,1,1,772,773],[322,2,2,773,775],[323,9,6,775,781],[324,2,2,781,783],[325,1,1,783,784],[326,2,2,784,786],[327,4,4,786,790],[328,1,1,790,791],[330,2,2,791,793],[332,1,1,793,794],[333,2,1,794,795],[334,2,2,795,797],[335,6,6,797,803],[336,1,1,803,804],[337,6,5,804,809]]],[12,45,39,809,848,[[342,1,1,809,810],[347,1,1,810,811],[348,3,2,811,813],[350,1,1,813,814],[351,1,1,814,815],[353,8,8,815,823],[354,9,6,823,829],[355,1,1,829,830],[356,4,4,830,834],[357,2,1,834,835],[358,6,5,835,840],[359,1,1,840,841],[360,1,1,841,842],[365,2,2,842,844],[366,4,4,844,848]]],[13,112,98,848,946,[[367,4,3,848,851],[368,2,2,851,853],[372,14,11,853,864],[373,7,6,864,870],[374,2,2,870,872],[376,8,8,872,880],[378,1,1,880,881],[379,2,2,881,883],[380,1,1,883,884],[382,1,1,884,885],[383,1,1,885,886],[384,4,3,886,889],[385,1,1,889,890],[386,4,4,890,894],[387,2,2,894,896],[389,12,9,896,905],[390,4,3,905,908],[391,3,2,908,910],[392,2,2,910,912],[393,1,1,912,913],[395,2,1,913,914],[396,5,5,914,919],[397,3,3,919,922],[398,10,9,922,931],[399,4,3,931,934],[400,1,1,934,935],[401,6,6,935,941],[402,5,5,941,946]]],[14,23,19,946,965,[[403,1,1,946,947],[404,2,2,947,949],[405,6,4,949,953],[406,2,1,953,954],[410,2,2,954,956],[411,5,4,956,960],[412,5,5,960,965]]],[15,53,44,965,1009,[[413,2,2,965,967],[416,5,5,967,972],[417,6,5,972,977],[419,5,5,977,982],[420,15,10,982,992],[421,5,5,992,997],[422,6,5,997,1002],[423,4,3,1002,1005],[424,2,2,1005,1007],[425,3,2,1007,1009]]],[16,31,22,1009,1031,[[426,6,4,1009,1013],[427,2,2,1013,1015],[428,11,5,1015,1020],[429,2,2,1020,1022],[432,2,2,1022,1024],[433,6,5,1024,1029],[434,1,1,1029,1030],[435,1,1,1030,1031]]],[17,8,8,1031,1039,[[447,2,2,1031,1033],[452,1,1,1033,1034],[453,1,1,1034,1035],[469,2,2,1035,1037],[471,2,2,1037,1039]]],[18,120,112,1039,1151,[[480,2,2,1039,1041],[484,1,1,1041,1042],[486,1,1,1042,1043],[491,2,2,1043,1045],[495,4,3,1045,1048],[499,2,2,1048,1050],[505,1,1,1050,1051],[506,2,1,1051,1052],[510,2,2,1052,1054],[512,1,1,1054,1055],[521,1,1,1055,1056],[522,4,4,1056,1060],[524,4,3,1060,1063],[526,1,1,1063,1064],[527,2,2,1064,1066],[530,2,2,1066,1068],[533,1,1,1068,1069],[534,1,1,1069,1070],[536,1,1,1070,1071],[537,1,1,1071,1072],[539,1,1,1072,1073],[543,1,1,1073,1074],[544,5,3,1074,1077],[545,4,3,1077,1080],[549,3,3,1080,1083],[550,1,1,1083,1084],[551,2,2,1084,1086],[554,3,3,1086,1089],[555,5,5,1089,1094],[556,1,1,1094,1095],[557,1,1,1095,1096],[558,3,3,1096,1099],[560,1,1,1099,1100],[562,3,3,1100,1103],[564,1,1,1103,1104],[566,3,3,1104,1107],[571,3,3,1107,1110],[572,2,2,1110,1112],[573,5,5,1112,1117],[574,1,1,1117,1118],[575,1,1,1118,1119],[576,2,2,1119,1121],[577,1,1,1121,1122],[579,2,2,1122,1124],[582,6,6,1124,1130],[583,4,4,1130,1134],[584,1,1,1134,1135],[585,1,1,1135,1136],[587,1,1,1136,1137],[588,2,2,1137,1139],[590,1,1,1139,1140],[591,1,1,1140,1141],[593,2,2,1141,1143],[602,1,1,1143,1144],[612,2,2,1144,1146],[613,1,1,1146,1147],[621,3,2,1147,1149],[625,2,1,1149,1150],[626,1,1,1150,1151]]],[19,9,8,1151,1159,[[638,1,1,1151,1152],[641,1,1,1152,1153],[651,1,1,1153,1154],[655,1,1,1154,1155],[656,3,2,1155,1157],[657,2,2,1157,1159]]],[20,2,2,1159,1161,[[662,1,1,1159,1160],[670,1,1,1160,1161]]],[21,1,1,1161,1162,[[676,1,1,1161,1162]]],[22,130,125,1162,1287,[[679,3,3,1162,1165],[680,3,3,1165,1168],[681,7,6,1168,1174],[683,2,2,1174,1176],[684,3,3,1176,1179],[685,3,3,1179,1182],[686,5,5,1182,1187],[687,5,5,1187,1192],[688,6,6,1192,1198],[689,3,3,1198,1201],[690,1,1,1201,1202],[691,2,2,1202,1204],[692,4,4,1204,1208],[695,1,1,1208,1209],[696,3,2,1209,1211],[697,1,1,1211,1212],[700,1,1,1212,1213],[701,1,1,1213,1214],[702,3,3,1214,1217],[703,4,4,1217,1221],[704,2,2,1221,1223],[705,1,1,1223,1224],[706,3,3,1224,1227],[707,2,2,1227,1229],[708,6,6,1229,1235],[710,2,2,1235,1237],[711,5,4,1237,1241],[712,1,1,1241,1242],[714,1,1,1242,1243],[718,2,2,1243,1245],[720,3,3,1245,1248],[721,3,3,1248,1251],[722,1,1,1251,1252],[725,1,1,1252,1253],[727,3,3,1253,1256],[729,6,5,1256,1261],[730,4,4,1261,1265],[731,1,1,1265,1266],[734,2,2,1266,1268],[735,1,1,1268,1269],[736,1,1,1269,1270],[738,1,1,1270,1271],[739,1,1,1271,1272],[740,3,2,1272,1274],[741,6,6,1274,1280],[742,1,1,1280,1281],[743,6,6,1281,1287]]],[23,165,151,1287,1438,[[745,1,1,1287,1288],[746,4,4,1288,1292],[748,4,3,1292,1295],[749,5,5,1295,1300],[750,6,6,1300,1306],[751,4,4,1306,1310],[752,6,6,1310,1316],[753,4,4,1316,1320],[754,1,1,1320,1321],[755,2,2,1321,1323],[756,4,2,1323,1325],[757,2,2,1325,1327],[758,4,4,1327,1331],[759,3,3,1331,1334],[760,2,2,1334,1336],[761,1,1,1336,1337],[762,1,1,1337,1338],[763,3,3,1338,1341],[765,2,2,1341,1343],[766,2,2,1343,1345],[767,8,7,1345,1352],[768,1,1,1352,1353],[769,3,3,1353,1356],[770,11,10,1356,1366],[771,3,3,1366,1369],[772,5,5,1369,1374],[773,5,4,1374,1378],[774,2,2,1378,1380],[775,5,5,1380,1385],[776,3,3,1385,1388],[777,2,1,1388,1389],[778,4,4,1389,1393],[779,1,1,1393,1394],[780,7,6,1394,1400],[781,4,4,1400,1404],[782,3,2,1404,1406],[783,5,4,1406,1410],[784,2,2,1410,1412],[785,5,4,1412,1416],[786,2,2,1416,1418],[787,2,2,1418,1420],[788,5,4,1420,1424],[790,2,2,1424,1426],[792,2,2,1426,1428],[793,1,1,1428,1429],[794,3,3,1429,1432],[795,2,2,1432,1434],[796,6,4,1434,1438]]],[24,11,11,1438,1449,[[797,4,4,1438,1442],[798,1,1,1442,1443],[799,3,3,1443,1446],[800,3,3,1446,1449]]],[25,98,91,1449,1540,[[804,3,3,1449,1452],[808,1,1,1452,1453],[812,3,3,1453,1456],[813,1,1,1456,1457],[814,8,7,1457,1464],[815,3,3,1464,1467],[818,2,2,1467,1469],[819,1,1,1469,1470],[821,3,3,1470,1473],[822,2,1,1473,1474],[823,1,1,1474,1475],[824,1,1,1475,1476],[825,2,2,1476,1478],[826,2,2,1478,1480],[827,4,4,1480,1484],[828,3,3,1484,1487],[829,2,2,1487,1489],[830,1,1,1489,1490],[831,1,1,1490,1491],[832,1,1,1491,1492],[833,3,3,1492,1495],[834,9,7,1495,1502],[835,2,2,1502,1504],[837,6,6,1504,1510],[838,5,5,1510,1515],[839,9,8,1515,1523],[840,4,4,1523,1527],[843,1,1,1527,1528],[845,4,3,1528,1531],[846,4,4,1531,1535],[847,6,5,1535,1540]]],[26,16,15,1540,1555,[[857,1,1,1540,1541],[858,7,7,1541,1548],[859,1,1,1548,1549],[860,4,4,1549,1553],[861,3,2,1553,1555]]],[27,18,17,1555,1572,[[862,2,2,1555,1557],[863,3,2,1557,1559],[865,6,6,1559,1565],[867,1,1,1565,1566],[868,1,1,1566,1567],[870,1,1,1567,1568],[871,3,3,1568,1571],[872,1,1,1571,1572]]],[28,13,12,1572,1584,[[877,10,9,1572,1581],[878,3,3,1581,1584]]],[29,7,7,1584,1591,[[879,1,1,1584,1585],[881,1,1,1585,1586],[885,2,2,1586,1588],[886,1,1,1588,1589],[887,2,2,1589,1591]]],[30,1,1,1591,1592,[[888,1,1,1591,1592]]],[31,1,1,1592,1593,[[889,1,1,1592,1593]]],[32,19,19,1593,1612,[[893,2,2,1593,1595],[894,4,4,1595,1599],[895,2,2,1599,1601],[896,4,4,1601,1605],[897,2,2,1605,1607],[898,4,4,1607,1611],[899,1,1,1611,1612]]],[33,2,2,1612,1614,[[902,2,2,1612,1614]]],[34,6,6,1614,1620,[[904,4,4,1614,1618],[905,2,2,1618,1620]]],[35,7,7,1620,1627,[[906,1,1,1620,1621],[907,3,3,1621,1624],[908,3,3,1624,1627]]],[36,8,7,1627,1634,[[909,5,4,1627,1631],[910,3,3,1631,1634]]],[37,19,19,1634,1653,[[912,1,1,1634,1635],[917,1,1,1635,1636],[918,7,7,1636,1643],[919,1,1,1643,1644],[920,1,1,1644,1645],[921,1,1,1645,1646],[922,4,4,1646,1650],[923,1,1,1650,1651],[924,2,2,1651,1653]]],[38,2,2,1653,1655,[[925,1,1,1653,1654],[926,1,1,1654,1655]]]],[272,352,411,413,461,578,582,583,584,666,675,702,703,756,776,935,975,996,1002,1017,1040,1235,1250,1258,1441,1443,1455,1470,1483,1489,1502,1506,1526,1541,1552,1554,1586,1589,1591,1600,1617,1622,1631,1632,1633,1636,1637,1638,1639,1642,1644,1648,1654,1655,1662,1689,1699,1701,1711,1713,1714,1718,1719,1721,1730,1731,1732,1733,1739,1741,1742,1743,1749,1755,1756,1757,1759,1769,1780,1781,1808,1809,1814,1843,1847,1849,1850,1852,1870,1884,1885,1889,1894,1895,1902,1920,1933,1934,1936,1944,1951,1974,1977,1984,1985,1986,1987,1988,1989,1996,2000,2009,2012,2013,2014,2017,2018,2020,2021,2022,2024,2025,2031,2033,2034,2035,2036,2037,2038,2040,2041,2042,2043,2047,2049,2050,2051,2069,2071,2072,2085,2138,2141,2155,2171,2179,2180,2184,2185,2415,2420,2434,2439,2441,2444,2445,2447,2449,2450,2452,2455,2459,2460,2463,2466,2468,2469,2472,2473,2474,2476,2477,2478,2481,2483,2485,2486,2489,2505,2506,2571,2572,2798,2822,2899,2900,2904,2906,2960,2968,2971,2975,2976,2977,2980,3216,3225,3234,3239,3244,3245,3280,3289,3297,3299,3320,3321,3322,3323,3324,3335,3336,3342,3344,3346,3349,3359,3360,3431,3432,3536,3813,3819,3978,4025,4026,4032,4034,4035,4036,4037,4038,4040,4041,4042,4045,4048,4053,4056,4057,4058,4059,4074,4075,4093,4103,4105,4106,4107,4109,4117,4119,4121,4122,4123,4124,4127,4147,4179,4183,4235,4241,4312,4314,4331,4335,4342,4344,4345,4346,4347,4356,4358,4363,4369,4373,4374,4375,4378,4380,4381,4386,4387,4392,4416,4425,4440,4460,4472,4473,4475,4567,4666,4667,4696,4733,4774,4920,4942,4948,4954,4959,4963,4970,4971,4976,4977,4978,5003,5010,5014,5023,5024,5031,5037,5081,5100,5117,5118,5125,5127,5130,5159,5163,5169,5170,5183,5184,5186,5197,5201,5279,5281,5292,5311,5360,5371,5377,5380,5387,5428,5429,5432,5435,5436,5438,5443,5455,5581,5584,5585,5586,5594,5596,5597,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5620,5621,5643,5644,5648,5675,5692,5711,5735,5740,5744,5764,5766,5767,5779,5794,5801,5802,5808,5813,5815,5817,5827,5829,5831,5839,5853,5857,5861,5862,5896,5898,5899,5907,5909,5912,5920,5921,5929,5934,5938,5939,5954,5956,5957,5959,5965,5969,5979,5980,5981,5983,5989,6003,6005,6007,6011,6012,6013,6015,6016,6018,6022,6035,6071,6085,6097,6111,6114,6195,6289,6290,6292,6478,6492,6493,6494,6495,6497,6498,6500,6501,6503,6504,6525,6549,6551,6552,6557,6586,6612,6625,6632,6634,6636,6637,6641,6695,6696,6697,6698,6699,6700,6701,6702,6724,6783,6786,6787,6788,6789,6790,6791,6792,6796,6797,6799,6802,6803,6829,6840,6849,6850,6852,6871,6912,6925,6926,6973,6979,7000,7003,7013,7020,7056,7062,7064,7070,7076,7080,7085,7104,7106,7111,7117,7133,7137,7142,7143,7160,7183,7194,7199,7201,7253,7263,7264,7269,7300,7301,7314,7329,7330,7350,7376,7379,7388,7390,7393,7403,7404,7407,7408,7415,7429,7435,7441,7442,7443,7449,7450,7452,7456,7457,7459,7460,7466,7478,7479,7480,7482,7487,7489,7490,7491,7492,7493,7496,7499,7500,7501,7507,7510,7511,7523,7525,7528,7532,7534,7535,7536,7538,7539,7540,7541,7542,7546,7547,7548,7549,7553,7561,7564,7568,7569,7575,7581,7584,7590,7645,7648,7681,7689,7818,7910,7912,7919,7920,7942,7982,7984,7999,8018,8026,8034,8075,8076,8077,8079,8099,8112,8113,8115,8116,8117,8118,8134,8144,8159,8175,8176,8178,8187,8188,8190,8191,8203,8204,8224,8250,8252,8253,8266,8276,8314,8315,8317,8351,8369,8371,8401,8406,8412,8413,8419,8432,8440,8441,8444,8451,8452,8457,8458,8465,8471,8478,8479,8480,8481,8482,8483,8484,8485,8486,8494,8513,8514,8519,8520,8550,8551,8566,8569,8576,8630,8646,8650,8663,8664,8694,8695,8696,8701,8702,8707,8708,8709,8713,8756,8757,8818,8824,8825,8878,8885,8894,8909,9001,9015,9018,9019,9021,9023,9026,9028,9029,9035,9036,9037,9038,9041,9044,9045,9051,9058,9071,9074,9156,9157,9158,9160,9161,9163,9164,9166,9167,9174,9178,9181,9182,9217,9220,9225,9285,9298,9299,9304,9305,9362,9363,9365,9371,9378,9380,9408,9416,9418,9423,9450,9460,9463,9464,9484,9508,9523,9583,9616,9644,9645,9646,9704,9723,9724,9727,9748,9762,9802,9811,9842,9843,9846,9847,9848,9849,9853,9858,9878,9900,9917,9929,9930,9935,9960,9978,10050,10060,10103,10143,10149,10158,10167,10168,10171,10186,10195,10200,10216,10225,10233,10241,10244,10248,10453,10668,10675,10686,10764,10776,10822,10828,10840,10844,10846,10848,10856,10863,10869,10870,10872,10873,10884,10885,10904,10914,10918,10920,10921,10929,10936,10937,10939,10951,10956,10982,11008,11145,11164,11173,11178,11181,11182,11203,11204,11205,11222,11229,11287,11288,11303,11306,11307,11309,11311,11314,11315,11316,11321,11328,11329,11334,11337,11338,11344,11353,11356,11400,11401,11402,11404,11405,11407,11410,11411,11440,11462,11470,11488,11519,11532,11544,11545,11569,11580,11594,11608,11612,11620,11638,11643,11661,11662,11666,11668,11669,11672,11673,11676,11677,11687,11697,11700,11715,11719,11733,11753,11757,11827,11830,11840,11845,11847,11854,11858,11862,11864,11879,11881,11883,11888,11889,11890,11892,11893,11894,11918,11925,11933,11963,11969,11971,11973,11974,11978,11979,11994,12007,12008,12009,12016,12019,12029,12097,12098,12100,12108,12110,12114,12216,12237,12238,12239,12248,12251,12253,12254,12261,12263,12265,12304,12306,12365,12372,12373,12378,12381,12383,12395,12397,12400,12401,12424,12425,12427,12492,12493,12494,12496,12498,12499,12500,12502,12504,12505,12506,12509,12521,12533,12535,12541,12543,12563,12577,12579,12580,12583,12589,12590,12612,12654,12662,12672,12695,12707,12713,12718,12724,12734,12744,12753,12755,12758,12759,12761,12770,12773,12810,12811,12823,12826,12828,12830,12834,12836,12869,13130,13152,13266,13295,13703,13713,13756,13767,13963,13965,14003,14032,14084,14087,14145,14161,14165,14210,14235,14308,14319,14376,14378,14428,14583,14602,14607,14609,14614,14626,14628,14634,14649,14672,14675,14723,14725,14762,14777,14801,14810,14835,14881,14896,14897,14898,14907,14930,14935,15002,15003,15004,15030,15062,15066,15107,15108,15113,15114,15133,15165,15175,15184,15198,15202,15225,15228,15230,15244,15273,15277,15279,15307,15341,15345,15376,15436,15439,15445,15461,15464,15468,15470,15472,15475,15478,15484,15499,15500,15501,15511,15539,15543,15607,15619,15626,15630,15631,15649,15655,15685,15691,15699,15731,15745,15789,15799,15802,15821,15823,15862,15866,16112,16187,16189,16212,16307,16320,16385,16389,16702,16800,17103,17211,17226,17242,17276,17277,17397,17532,17626,17657,17658,17664,17688,17689,17691,17712,17714,17719,17720,17721,17722,17752,17764,17774,17778,17779,17784,17790,17799,17813,17816,17818,17819,17826,17831,17838,17842,17845,17848,17852,17856,17863,17864,17872,17874,17894,17895,17900,17904,17910,17920,17930,17934,17948,17960,17995,17999,18004,18029,18056,18090,18097,18099,18108,18121,18124,18125,18126,18141,18150,18162,18169,18175,18178,18206,18207,18222,18223,18226,18236,18243,18245,18272,18277,18282,18291,18298,18303,18308,18341,18421,18427,18485,18486,18502,18513,18525,18526,18540,18605,18644,18649,18658,18677,18678,18680,18689,18695,18700,18701,18702,18705,18719,18756,18760,18779,18787,18842,18852,18864,18866,18869,18872,18874,18877,18880,18884,18894,18899,18900,18907,18915,18916,18919,18964,18976,18978,18996,18997,19037,19038,19049,19072,19079,19081,19084,19089,19103,19108,19110,19111,19115,19116,19131,19135,19142,19152,19158,19160,19164,19172,19174,19175,19176,19177,19182,19190,19204,19230,19240,19263,19265,19276,19277,19303,19304,19309,19310,19316,19322,19335,19341,19346,19376,19399,19408,19418,19421,19447,19448,19456,19458,19486,19497,19506,19511,19516,19517,19518,19531,19535,19536,19553,19579,19580,19581,19583,19584,19588,19589,19590,19595,19596,19608,19609,19612,19619,19623,19625,19629,19633,19636,19651,19660,19667,19670,19689,19692,19693,19698,19705,19724,19752,19769,19773,19799,19802,19809,19811,19820,19839,19848,19849,19851,19852,19855,19856,19876,19878,19886,19892,19896,19899,19931,19932,19933,19937,19946,19947,19967,19970,19971,19973,19976,19983,19998,20001,20025,20030,20031,20034,20061,20069,20122,20126,20128,20172,20182,20207,20257,20270,20282,20291,20301,20304,20311,20317,20321,20328,20343,20368,20399,20402,20423,20426,20430,20507,20508,20513,20604,20656,20672,20675,20699,20717,20718,20725,20726,20727,20729,20731,20739,20740,20742,20834,20840,20867,20929,20930,20936,20956,21005,21031,21074,21075,21090,21097,21102,21107,21111,21120,21124,21154,21157,21176,21182,21196,21215,21242,21251,21257,21258,21282,21283,21286,21292,21297,21310,21311,21326,21343,21362,21367,21371,21374,21379,21387,21409,21410,21415,21420,21424,21431,21433,21434,21437,21439,21440,21441,21447,21452,21455,21461,21475,21566,21610,21618,21622,21638,21639,21646,21652,21658,21664,21673,21675,21679,21985,21994,22003,22004,22007,22008,22012,22014,22029,22050,22051,22068,22069,22082,22088,22103,22104,22106,22128,22137,22139,22141,22142,22145,22147,22178,22186,22209,22230,22235,22239,22247,22313,22316,22317,22327,22328,22329,22330,22337,22338,22345,22346,22359,22369,22401,22472,22479,22483,22505,22509,22523,22539,22581,22588,22599,22603,22604,22606,22611,22613,22621,22623,22625,22633,22640,22641,22650,22651,22653,22664,22678,22725,22730,22753,22756,22758,22761,22781,22784,22798,22813,22814,22815,22829,22832,22840,22842,22852,22853,22854,22857,22859,22869,22910,22967,22982,22983,22984,22987,22988,22996,22998,23015,23025,23038,23047,23048,23049,23051,23068,23070,23080,23093,23112]]],["+",[88,81,[[0,2,2,0,2,[[16,1,1,0,1],[49,1,1,1,2]]],[1,11,11,2,13,[[52,1,1,2,3],[57,4,4,3,7],[60,1,1,7,8],[61,1,1,8,9],[62,1,1,9,10],[73,1,1,10,11],[79,2,2,11,13]]],[2,10,10,13,23,[[93,1,1,13,14],[96,4,4,14,18],[106,1,1,18,19],[108,1,1,19,20],[109,1,1,20,21],[110,1,1,21,22],[112,1,1,22,23]]],[3,4,4,23,27,[[125,1,1,23,24],[127,1,1,24,25],[137,2,2,25,27]]],[4,3,3,27,30,[[156,1,1,27,28],[178,1,1,28,29],[183,1,1,29,30]]],[6,4,4,30,34,[[219,2,2,30,32],[221,1,1,32,33],[230,1,1,33,34]]],[8,6,5,34,39,[[245,2,2,34,36],[249,3,2,36,38],[250,1,1,38,39]]],[9,3,3,39,42,[[268,1,1,39,40],[271,1,1,40,41],[273,1,1,41,42]]],[10,2,2,42,44,[[298,2,2,42,44]]],[11,1,1,44,45,[[337,1,1,44,45]]],[12,1,1,45,46,[[348,1,1,45,46]]],[13,6,6,46,52,[[372,1,1,46,47],[390,1,1,47,48],[401,4,4,48,52]]],[14,4,4,52,56,[[405,1,1,52,53],[411,1,1,53,54],[412,2,2,54,56]]],[15,1,1,56,57,[[422,1,1,56,57]]],[16,9,4,57,61,[[426,2,1,57,58],[428,4,1,58,59],[433,3,2,59,61]]],[18,2,2,61,63,[[566,1,1,61,62],[591,1,1,62,63]]],[21,1,1,63,64,[[676,1,1,63,64]]],[22,4,4,64,68,[[681,1,1,64,65],[685,1,1,65,66],[696,1,1,66,67],[741,1,1,67,68]]],[23,9,9,68,77,[[756,1,1,68,69],[760,1,1,69,70],[767,2,2,70,72],[775,1,1,72,73],[776,1,1,73,74],[787,1,1,74,75],[792,1,1,75,76],[796,1,1,76,77]]],[25,4,3,77,80,[[833,1,1,77,78],[839,2,1,78,79],[847,1,1,79,80]]],[26,1,1,80,81,[[858,1,1,80,81]]]],[411,1526,1600,1718,1721,1739,1741,1809,1852,1885,2180,2415,2420,2822,2899,2900,2904,2906,3244,3289,3335,3359,3431,3978,4048,4356,4363,5014,5581,5740,6790,6791,6849,7085,7435,7443,7535,7536,7564,8079,8134,8187,9001,9026,10241,10675,11314,11700,11971,11973,11978,11979,12100,12238,12254,12263,12577,12724,12759,12826,12834,15345,15823,17626,17722,17790,18004,18869,19263,19346,19497,19516,19698,19752,19998,20122,20301,21258,21433,21673,22003]]],["Ammi",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22106]]],["each",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12695]]],["folk",[2,2,[[0,1,1,0,1,[[32,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[975,17277]]],["men",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4696]]],["nation",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]]],[2085,5644]]],["nations",[14,14,[[4,7,7,0,7,[[154,1,1,0,1],[156,3,3,1,4],[166,1,1,4,5],[180,1,1,5,6],[182,1,1,6,7]]],[12,1,1,7,8,[[353,1,1,7,8]]],[13,2,2,8,10,[[373,1,1,8,9],[379,1,1,9,10]]],[15,2,2,10,12,[[413,1,1,10,11],[421,1,1,11,12]]],[18,2,2,12,14,[[573,1,1,12,13],[583,1,1,13,14]]]],[4963,5010,5023,5031,5292,5648,5711,10844,11344,11462,12304,12533,15470,15685]]],["people",[1758,1576,[[0,30,30,0,30,[[10,1,1,0,1],[13,1,1,1,2],[16,1,1,2,3],[18,1,1,3,4],[22,4,4,4,8],[24,2,2,8,10],[25,2,2,10,12],[26,1,1,12,13],[27,1,1,13,14],[31,1,1,14,15],[33,2,2,15,17],[34,2,2,17,19],[40,2,2,19,21],[41,1,1,21,22],[46,2,2,22,24],[47,2,2,24,26],[48,4,4,26,30]]],[1,163,141,30,171,[[50,4,3,30,33],[52,3,3,33,36],[53,4,4,36,40],[54,12,10,40,50],[55,1,1,50,51],[56,3,3,51,54],[57,13,11,54,65],[58,7,7,65,72],[59,2,2,72,74],[60,3,3,74,77],[61,4,4,77,81],[62,4,3,81,84],[63,5,4,84,88],[64,5,4,88,92],[65,3,3,92,95],[66,8,7,95,102],[67,15,12,102,114],[68,18,15,114,129],[69,4,3,129,132],[71,2,2,132,134],[72,2,2,134,136],[73,4,4,136,140],[80,1,1,140,141],[81,19,17,141,158],[82,12,9,158,167],[83,3,2,167,169],[85,2,2,169,171]]],[2,32,29,171,200,[[93,1,1,171,172],[98,8,6,172,178],[99,1,1,178,179],[105,4,3,179,182],[106,2,2,182,184],[107,1,1,184,185],[108,2,2,185,187],[109,8,8,187,195],[110,3,3,195,198],[112,1,1,198,199],[115,1,1,199,200]]],[3,82,72,200,272,[[121,2,2,200,202],[127,19,18,202,220],[128,2,2,220,222],[129,5,5,222,227],[130,10,9,227,236],[131,2,2,236,238],[132,3,2,238,240],[136,4,4,240,244],[137,13,10,244,254],[138,8,7,254,261],[139,2,2,261,263],[140,3,1,263,264],[141,4,3,264,267],[143,1,1,267,268],[147,2,2,268,270],[148,1,1,270,271],[149,1,1,271,272]]],[4,96,87,272,359,[[153,1,1,272,273],[154,6,6,273,279],[155,4,4,279,283],[156,3,3,283,286],[157,1,1,286,287],[158,1,1,287,288],[159,8,5,288,293],[161,8,7,293,300],[162,2,2,300,302],[165,2,2,302,304],[166,3,2,304,306],[168,1,1,306,307],[169,3,3,307,310],[170,1,1,310,311],[172,8,7,311,318],[173,2,1,318,319],[178,2,2,319,321],[179,16,16,321,337],[180,4,4,337,341],[181,1,1,341,342],[183,2,2,342,344],[184,10,8,344,352],[185,7,7,352,359]]],[5,70,58,359,417,[[187,4,4,359,363],[189,7,5,363,368],[190,7,5,368,373],[191,3,2,373,375],[192,10,6,375,381],[193,6,5,381,386],[194,13,11,386,397],[196,3,3,397,400],[197,2,2,400,402],[200,1,1,402,403],[203,3,3,403,406],[210,11,11,406,417]]],[6,63,59,417,476,[[211,1,1,417,418],[212,4,4,418,422],[213,1,1,422,423],[214,1,1,423,424],[215,6,6,424,430],[217,9,8,430,438],[218,1,1,438,439],[219,14,12,439,451],[220,1,1,451,452],[221,3,3,452,455],[222,1,1,455,456],[224,3,3,456,459],[226,2,2,459,461],[228,4,4,461,465],[230,8,7,465,472],[231,4,4,472,476]]],[7,10,9,476,485,[[232,5,4,476,480],[233,1,1,480,481],[234,1,1,481,482],[235,3,3,482,485]]],[8,104,86,485,571,[[237,4,4,485,489],[239,3,3,489,492],[240,2,2,492,494],[241,3,1,494,495],[243,4,4,495,499],[244,8,6,499,505],[245,7,4,505,509],[246,8,7,509,516],[247,6,5,516,521],[248,12,11,521,532],[249,23,18,532,550],[250,7,7,550,557],[252,2,2,557,559],[253,2,2,559,561],[258,1,1,561,562],[261,5,4,562,566],[262,1,1,566,567],[265,5,3,567,570],[266,1,1,570,571]]],[9,100,82,571,653,[[267,3,2,571,573],[268,3,3,573,576],[269,8,7,576,583],[271,1,1,583,584],[272,5,4,584,588],[273,8,5,588,593],[274,1,1,593,594],[276,3,3,594,597],[277,2,2,597,599],[278,4,3,599,602],[279,1,1,602,603],[280,2,2,603,605],[281,6,5,605,610],[282,4,4,610,614],[283,9,7,614,621],[284,11,9,621,630],[285,10,6,630,636],[286,3,3,636,639],[288,4,3,639,642],[289,2,2,642,644],[290,10,9,644,653]]],[10,81,66,653,719,[[291,3,2,653,655],[293,5,3,655,658],[294,1,1,658,659],[295,2,2,659,661],[296,1,1,661,662],[298,19,16,662,678],[299,3,3,678,681],[302,14,13,681,694],[303,1,1,694,695],[304,3,2,695,697],[306,8,5,697,702],[308,8,6,702,708],[309,1,1,708,709],[310,5,4,709,713],[311,3,3,713,716],[312,4,3,716,719]]],[11,52,47,719,766,[[315,2,1,719,720],[316,4,4,720,724],[318,1,1,724,725],[319,3,3,725,728],[320,1,1,728,729],[321,1,1,729,730],[322,2,2,730,732],[323,9,6,732,738],[324,2,2,738,740],[325,1,1,740,741],[326,2,2,741,743],[327,4,4,743,747],[328,1,1,747,748],[330,2,2,748,750],[332,1,1,750,751],[333,2,1,751,752],[334,2,2,752,754],[335,6,6,754,760],[336,1,1,760,761],[337,5,5,761,766]]],[12,43,38,766,804,[[342,1,1,766,767],[347,1,1,767,768],[348,2,2,768,770],[350,1,1,770,771],[351,1,1,771,772],[353,7,7,772,779],[354,9,6,779,785],[355,1,1,785,786],[356,4,4,786,790],[357,2,1,790,791],[358,6,5,791,796],[359,1,1,796,797],[360,1,1,797,798],[365,2,2,798,800],[366,4,4,800,804]]],[13,104,91,804,895,[[367,4,3,804,807],[368,2,2,807,809],[372,13,10,809,819],[373,6,5,819,824],[374,2,2,824,826],[376,8,8,826,834],[378,1,1,834,835],[379,1,1,835,836],[380,1,1,836,837],[382,1,1,837,838],[383,1,1,838,839],[384,4,3,839,842],[385,1,1,842,843],[386,4,4,843,847],[387,2,2,847,849],[389,12,9,849,858],[390,3,3,858,861],[391,3,2,861,863],[392,2,2,863,865],[393,1,1,865,866],[395,2,1,866,867],[396,5,5,867,872],[397,3,3,872,875],[398,10,9,875,884],[399,4,3,884,887],[400,1,1,887,888],[401,2,2,888,890],[402,5,5,890,895]]],[14,19,16,895,911,[[403,1,1,895,896],[404,2,2,896,898],[405,5,3,898,901],[406,2,1,901,902],[410,2,2,902,904],[411,4,4,904,908],[412,3,3,908,911]]],[15,49,42,911,953,[[413,1,1,911,912],[416,5,5,912,917],[417,6,5,917,922],[419,5,5,922,927],[420,15,10,927,937],[421,4,4,937,941],[422,5,5,941,946],[423,4,3,946,949],[424,2,2,949,951],[425,2,2,951,953]]],[16,22,19,953,972,[[426,4,4,953,957],[427,2,2,957,959],[428,7,4,959,963],[429,2,2,963,965],[432,2,2,965,967],[433,3,3,967,970],[434,1,1,970,971],[435,1,1,971,972]]],[17,8,8,972,980,[[447,2,2,972,974],[452,1,1,974,975],[453,1,1,975,976],[469,2,2,976,978],[471,2,2,978,980]]],[18,116,108,980,1088,[[480,2,2,980,982],[484,1,1,982,983],[486,1,1,983,984],[491,2,2,984,986],[495,4,3,986,989],[499,2,2,989,991],[505,1,1,991,992],[506,2,1,992,993],[510,2,2,993,995],[512,1,1,995,996],[521,1,1,996,997],[522,4,4,997,1001],[524,4,3,1001,1004],[526,1,1,1004,1005],[527,2,2,1005,1007],[530,2,2,1007,1009],[533,1,1,1009,1010],[534,1,1,1010,1011],[536,1,1,1011,1012],[537,1,1,1012,1013],[539,1,1,1013,1014],[543,1,1,1014,1015],[544,5,3,1015,1018],[545,4,3,1018,1021],[549,3,3,1021,1024],[550,1,1,1024,1025],[551,2,2,1025,1027],[554,3,3,1027,1030],[555,5,5,1030,1035],[556,1,1,1035,1036],[557,1,1,1036,1037],[558,3,3,1037,1040],[560,1,1,1040,1041],[562,3,3,1041,1044],[564,1,1,1044,1045],[566,2,2,1045,1047],[571,3,3,1047,1050],[572,2,2,1050,1052],[573,4,4,1052,1056],[574,1,1,1056,1057],[575,1,1,1057,1058],[576,2,2,1058,1060],[577,1,1,1060,1061],[579,2,2,1061,1063],[582,6,6,1063,1069],[583,3,3,1069,1072],[584,1,1,1072,1073],[585,1,1,1073,1074],[587,1,1,1074,1075],[588,2,2,1075,1077],[590,1,1,1077,1078],[593,2,2,1078,1080],[602,1,1,1080,1081],[612,2,2,1081,1083],[613,1,1,1083,1084],[621,3,2,1084,1086],[625,2,1,1086,1087],[626,1,1,1087,1088]]],[19,8,7,1088,1095,[[638,1,1,1088,1089],[641,1,1,1089,1090],[651,1,1,1090,1091],[655,1,1,1091,1092],[656,3,2,1092,1094],[657,1,1,1094,1095]]],[20,2,2,1095,1097,[[662,1,1,1095,1096],[670,1,1,1096,1097]]],[22,126,122,1097,1219,[[679,3,3,1097,1100],[680,3,3,1100,1103],[681,6,5,1103,1108],[683,2,2,1108,1110],[684,3,3,1110,1113],[685,2,2,1113,1115],[686,5,5,1115,1120],[687,5,5,1120,1125],[688,6,6,1125,1131],[689,3,3,1131,1134],[690,1,1,1134,1135],[691,2,2,1135,1137],[692,4,4,1137,1141],[695,1,1,1141,1142],[696,2,2,1142,1144],[697,1,1,1144,1145],[700,1,1,1145,1146],[701,1,1,1146,1147],[702,3,3,1147,1150],[703,4,4,1150,1154],[704,2,2,1154,1156],[705,1,1,1156,1157],[706,3,3,1157,1160],[707,2,2,1160,1162],[708,6,6,1162,1168],[710,2,2,1168,1170],[711,5,4,1170,1174],[712,1,1,1174,1175],[714,1,1,1175,1176],[718,2,2,1176,1178],[720,3,3,1178,1181],[721,3,3,1181,1184],[722,1,1,1184,1185],[725,1,1,1185,1186],[727,3,3,1186,1189],[729,6,5,1189,1194],[730,4,4,1194,1198],[731,1,1,1198,1199],[734,2,2,1199,1201],[735,1,1,1201,1202],[736,1,1,1202,1203],[738,1,1,1203,1204],[739,1,1,1204,1205],[740,3,2,1205,1207],[741,5,5,1207,1212],[742,1,1,1212,1213],[743,6,6,1213,1219]]],[23,156,144,1219,1363,[[745,1,1,1219,1220],[746,4,4,1220,1224],[748,4,3,1224,1227],[749,5,5,1227,1232],[750,6,6,1232,1238],[751,4,4,1238,1242],[752,6,6,1242,1248],[753,4,4,1248,1252],[754,1,1,1252,1253],[755,2,2,1253,1255],[756,3,1,1255,1256],[757,2,2,1256,1258],[758,4,4,1258,1262],[759,3,3,1262,1265],[760,1,1,1265,1266],[761,1,1,1266,1267],[762,1,1,1267,1268],[763,3,3,1268,1271],[765,2,2,1271,1273],[766,2,2,1273,1275],[767,6,6,1275,1281],[768,1,1,1281,1282],[769,3,3,1282,1285],[770,11,10,1285,1295],[771,3,3,1295,1298],[772,5,5,1298,1303],[773,5,4,1303,1307],[774,2,2,1307,1309],[775,4,4,1309,1313],[776,2,2,1313,1315],[777,2,1,1315,1316],[778,4,4,1316,1320],[779,1,1,1320,1321],[780,7,6,1321,1327],[781,4,4,1327,1331],[782,3,2,1331,1333],[783,5,4,1333,1337],[784,2,2,1337,1339],[785,5,4,1339,1343],[786,2,2,1343,1345],[787,1,1,1345,1346],[788,5,4,1346,1350],[790,2,2,1350,1352],[792,1,1,1352,1353],[793,1,1,1353,1354],[794,3,3,1354,1357],[795,2,2,1357,1359],[796,5,4,1359,1363]]],[24,11,11,1363,1374,[[797,4,4,1363,1367],[798,1,1,1367,1368],[799,3,3,1368,1371],[800,3,3,1371,1374]]],[25,94,89,1374,1463,[[804,3,3,1374,1377],[808,1,1,1377,1378],[812,3,3,1378,1381],[813,1,1,1381,1382],[814,8,7,1382,1389],[815,3,3,1389,1392],[818,2,2,1392,1394],[819,1,1,1394,1395],[821,3,3,1395,1398],[822,2,1,1398,1399],[823,1,1,1399,1400],[824,1,1,1400,1401],[825,2,2,1401,1403],[826,2,2,1403,1405],[827,4,4,1405,1409],[828,3,3,1409,1412],[829,2,2,1412,1414],[830,1,1,1414,1415],[831,1,1,1415,1416],[832,1,1,1416,1417],[833,2,2,1417,1419],[834,9,7,1419,1426],[835,2,2,1426,1428],[837,6,6,1428,1434],[838,5,5,1434,1439],[839,7,7,1439,1446],[840,4,4,1446,1450],[843,1,1,1450,1451],[845,4,3,1451,1454],[846,4,4,1454,1458],[847,5,5,1458,1463]]],[26,15,14,1463,1477,[[857,1,1,1463,1464],[858,6,6,1464,1470],[859,1,1,1470,1471],[860,4,4,1471,1475],[861,3,2,1475,1477]]],[27,17,16,1477,1493,[[862,2,2,1477,1479],[863,2,1,1479,1480],[865,6,6,1480,1486],[867,1,1,1486,1487],[868,1,1,1487,1488],[870,1,1,1488,1489],[871,3,3,1489,1492],[872,1,1,1492,1493]]],[28,13,12,1493,1505,[[877,10,9,1493,1502],[878,3,3,1502,1505]]],[29,7,7,1505,1512,[[879,1,1,1505,1506],[881,1,1,1506,1507],[885,2,2,1507,1509],[886,1,1,1509,1510],[887,2,2,1510,1512]]],[30,1,1,1512,1513,[[888,1,1,1512,1513]]],[31,1,1,1513,1514,[[889,1,1,1513,1514]]],[32,19,19,1514,1533,[[893,2,2,1514,1516],[894,4,4,1516,1520],[895,2,2,1520,1522],[896,4,4,1522,1526],[897,2,2,1526,1528],[898,4,4,1528,1532],[899,1,1,1532,1533]]],[33,2,2,1533,1535,[[902,2,2,1533,1535]]],[34,6,6,1535,1541,[[904,4,4,1535,1539],[905,2,2,1539,1541]]],[35,7,7,1541,1548,[[906,1,1,1541,1542],[907,3,3,1542,1545],[908,3,3,1545,1548]]],[36,8,7,1548,1555,[[909,5,4,1548,1552],[910,3,3,1552,1555]]],[37,19,19,1555,1574,[[912,1,1,1555,1556],[917,1,1,1556,1557],[918,7,7,1557,1564],[919,1,1,1564,1565],[920,1,1,1565,1566],[921,1,1,1566,1567],[922,4,4,1567,1571],[923,1,1,1571,1572],[924,2,2,1572,1574]]],[38,2,2,1574,1576,[[925,1,1,1574,1575],[926,1,1,1575,1576]]]],[272,352,413,461,578,582,583,584,666,675,702,703,756,776,935,996,1002,1017,1040,1235,1250,1258,1441,1443,1455,1470,1483,1489,1502,1506,1541,1552,1554,1586,1589,1591,1617,1622,1631,1632,1633,1636,1637,1638,1639,1642,1644,1648,1654,1655,1662,1689,1699,1701,1711,1713,1714,1718,1719,1730,1731,1732,1733,1739,1742,1743,1749,1755,1756,1757,1759,1769,1780,1781,1808,1809,1814,1843,1847,1849,1850,1870,1884,1889,1894,1895,1902,1920,1933,1934,1936,1944,1951,1974,1977,1984,1985,1986,1987,1988,1989,1996,2000,2009,2012,2013,2014,2017,2018,2020,2021,2022,2024,2025,2031,2033,2034,2035,2036,2037,2038,2040,2041,2042,2043,2047,2049,2050,2051,2069,2071,2072,2138,2141,2155,2171,2179,2180,2184,2185,2434,2439,2441,2444,2445,2447,2449,2450,2452,2455,2459,2460,2463,2466,2468,2469,2472,2473,2474,2476,2477,2478,2481,2483,2485,2486,2489,2505,2506,2571,2572,2798,2960,2968,2971,2975,2976,2977,2980,3216,3225,3234,3239,3245,3280,3297,3299,3320,3321,3322,3323,3324,3336,3342,3344,3346,3349,3360,3432,3536,3813,3819,4025,4026,4032,4034,4035,4036,4037,4038,4040,4041,4042,4045,4048,4053,4056,4057,4058,4059,4074,4075,4093,4103,4105,4106,4107,4109,4117,4119,4121,4122,4123,4124,4127,4147,4179,4183,4235,4241,4312,4314,4331,4335,4342,4344,4345,4346,4347,4358,4369,4373,4374,4375,4378,4380,4381,4386,4387,4392,4416,4425,4440,4460,4472,4473,4475,4567,4666,4667,4733,4774,4920,4942,4948,4954,4959,4970,4971,4976,4977,4978,5003,5010,5024,5037,5081,5100,5117,5118,5125,5127,5130,5159,5163,5169,5170,5183,5184,5186,5197,5201,5279,5281,5292,5311,5360,5371,5377,5380,5387,5428,5429,5432,5435,5436,5438,5443,5455,5584,5585,5586,5594,5596,5597,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5620,5621,5643,5675,5692,5735,5744,5764,5766,5767,5779,5794,5801,5802,5808,5813,5815,5817,5827,5829,5831,5839,5853,5857,5861,5862,5896,5898,5899,5907,5909,5912,5920,5921,5929,5934,5938,5939,5954,5956,5957,5959,5965,5969,5979,5980,5981,5983,5989,6003,6005,6007,6011,6012,6013,6015,6016,6018,6022,6035,6071,6085,6097,6111,6114,6195,6289,6290,6292,6478,6492,6493,6494,6495,6497,6498,6500,6501,6503,6504,6525,6549,6551,6552,6557,6586,6612,6625,6632,6634,6636,6637,6641,6695,6696,6697,6698,6699,6700,6701,6702,6724,6783,6786,6787,6788,6789,6790,6792,6796,6797,6799,6802,6803,6829,6840,6850,6852,6871,6912,6925,6926,6973,6979,7000,7003,7013,7020,7056,7062,7064,7070,7076,7080,7085,7104,7106,7111,7117,7133,7137,7142,7143,7160,7183,7194,7199,7201,7253,7263,7264,7269,7300,7301,7314,7329,7330,7350,7376,7379,7388,7390,7393,7403,7404,7407,7408,7415,7429,7441,7442,7443,7449,7450,7452,7456,7457,7459,7460,7466,7478,7479,7480,7482,7487,7489,7490,7491,7492,7493,7496,7499,7500,7501,7507,7510,7511,7523,7525,7528,7532,7534,7536,7538,7539,7540,7541,7542,7546,7547,7548,7549,7553,7561,7568,7569,7575,7581,7584,7590,7645,7648,7681,7689,7818,7910,7912,7919,7920,7942,7982,7984,7999,8018,8026,8034,8075,8076,8077,8099,8112,8113,8115,8116,8117,8118,8144,8159,8175,8176,8178,8188,8190,8191,8203,8204,8224,8250,8252,8253,8266,8276,8314,8315,8317,8351,8369,8371,8401,8406,8412,8413,8419,8432,8440,8441,8444,8451,8452,8457,8458,8465,8471,8478,8479,8480,8481,8482,8483,8484,8485,8486,8494,8513,8514,8519,8520,8550,8551,8566,8569,8576,8630,8646,8650,8663,8664,8694,8695,8696,8701,8702,8707,8708,8709,8713,8756,8757,8818,8824,8825,8878,8885,8894,8909,9001,9015,9018,9019,9021,9023,9028,9029,9035,9036,9037,9038,9041,9044,9045,9051,9058,9071,9074,9156,9157,9158,9160,9161,9163,9164,9166,9167,9174,9178,9181,9182,9217,9220,9225,9285,9298,9299,9304,9305,9362,9363,9365,9371,9378,9380,9408,9416,9418,9423,9450,9460,9463,9464,9484,9508,9523,9583,9616,9644,9645,9646,9704,9723,9724,9727,9748,9762,9802,9811,9842,9843,9846,9847,9848,9849,9853,9858,9878,9900,9917,9929,9930,9935,9960,9978,10050,10060,10103,10143,10149,10158,10167,10168,10171,10186,10195,10200,10216,10225,10233,10241,10244,10248,10453,10668,10675,10686,10764,10776,10822,10828,10840,10846,10848,10856,10863,10869,10870,10872,10873,10884,10885,10904,10914,10918,10920,10921,10929,10936,10937,10939,10951,10956,10982,11008,11145,11164,11173,11178,11181,11182,11203,11204,11205,11222,11229,11287,11288,11303,11306,11307,11309,11311,11315,11316,11321,11328,11329,11334,11337,11338,11353,11356,11400,11401,11402,11404,11405,11407,11410,11411,11440,11470,11488,11519,11532,11544,11545,11569,11580,11594,11608,11612,11620,11638,11643,11661,11662,11666,11668,11669,11672,11673,11676,11677,11687,11697,11700,11715,11719,11733,11753,11757,11827,11830,11840,11845,11847,11854,11858,11862,11864,11879,11881,11883,11888,11889,11890,11892,11893,11894,11918,11925,11933,11963,11969,11974,11994,12007,12008,12009,12016,12019,12029,12097,12098,12108,12110,12114,12216,12237,12238,12239,12248,12251,12253,12261,12265,12306,12365,12372,12373,12378,12381,12383,12395,12397,12400,12401,12424,12425,12427,12492,12493,12494,12496,12498,12499,12500,12502,12504,12505,12506,12509,12521,12535,12541,12543,12563,12577,12579,12580,12583,12589,12590,12612,12654,12662,12672,12695,12707,12713,12718,12724,12734,12744,12753,12755,12758,12761,12770,12773,12810,12811,12823,12828,12830,12836,12869,13130,13152,13266,13295,13703,13713,13756,13767,13963,13965,14003,14032,14084,14087,14145,14161,14165,14210,14235,14308,14319,14376,14378,14428,14583,14602,14607,14609,14614,14626,14628,14634,14649,14672,14675,14723,14725,14762,14777,14801,14810,14835,14881,14896,14897,14898,14907,14930,14935,15002,15003,15004,15030,15062,15066,15107,15108,15113,15114,15133,15165,15175,15184,15198,15202,15225,15228,15230,15244,15273,15277,15279,15307,15341,15376,15436,15439,15445,15461,15464,15468,15472,15475,15478,15484,15499,15500,15501,15511,15539,15543,15607,15619,15626,15630,15631,15649,15655,15691,15699,15731,15745,15789,15799,15802,15821,15862,15866,16112,16187,16189,16212,16307,16320,16385,16389,16702,16800,17103,17211,17226,17242,17276,17397,17532,17657,17658,17664,17688,17689,17691,17712,17714,17719,17720,17721,17752,17764,17774,17778,17779,17784,17799,17813,17816,17818,17819,17826,17831,17838,17842,17845,17848,17852,17856,17863,17864,17872,17874,17894,17895,17900,17904,17910,17920,17930,17934,17948,17960,17995,17999,18004,18029,18056,18090,18097,18099,18108,18121,18124,18125,18126,18141,18150,18162,18169,18175,18178,18206,18207,18222,18223,18226,18236,18243,18245,18272,18277,18282,18291,18298,18303,18308,18341,18421,18427,18485,18486,18502,18513,18525,18526,18540,18605,18644,18649,18658,18677,18678,18680,18689,18695,18700,18701,18702,18705,18719,18756,18760,18779,18787,18842,18852,18864,18866,18872,18874,18877,18880,18884,18894,18899,18900,18907,18915,18916,18919,18964,18976,18978,18996,18997,19037,19038,19049,19072,19079,19081,19084,19089,19103,19108,19110,19111,19115,19116,19131,19135,19142,19152,19158,19160,19164,19172,19174,19175,19176,19177,19182,19190,19204,19230,19240,19265,19276,19277,19303,19304,19309,19310,19316,19322,19335,19341,19376,19399,19408,19418,19421,19447,19448,19456,19458,19486,19506,19511,19516,19517,19518,19531,19535,19536,19553,19579,19580,19581,19583,19584,19588,19589,19590,19595,19596,19608,19609,19612,19619,19623,19625,19629,19633,19636,19651,19660,19667,19670,19689,19692,19693,19705,19724,19769,19773,19799,19802,19809,19811,19820,19839,19848,19849,19851,19852,19855,19856,19876,19878,19886,19892,19896,19899,19931,19932,19933,19937,19946,19947,19967,19970,19971,19973,19976,19983,20001,20025,20030,20031,20034,20061,20069,20126,20128,20172,20182,20207,20257,20270,20282,20291,20301,20304,20311,20317,20321,20328,20343,20368,20399,20402,20423,20426,20430,20507,20508,20513,20604,20656,20672,20675,20699,20717,20718,20725,20726,20727,20729,20731,20739,20740,20742,20834,20840,20867,20929,20930,20936,20956,21005,21031,21074,21075,21090,21097,21102,21107,21111,21120,21124,21154,21157,21176,21182,21196,21215,21242,21251,21257,21282,21283,21286,21292,21297,21310,21311,21326,21343,21362,21367,21371,21374,21379,21387,21409,21410,21415,21420,21424,21431,21434,21437,21439,21440,21441,21447,21452,21455,21461,21475,21566,21610,21618,21622,21638,21639,21646,21652,21658,21664,21673,21675,21679,21985,21994,22004,22007,22008,22012,22014,22029,22050,22051,22068,22069,22082,22088,22103,22104,22128,22137,22139,22141,22142,22145,22147,22178,22186,22209,22230,22235,22239,22247,22313,22316,22317,22327,22328,22329,22330,22337,22338,22345,22346,22359,22369,22401,22472,22479,22483,22505,22509,22523,22539,22581,22588,22599,22603,22604,22606,22611,22613,22621,22623,22625,22633,22640,22641,22650,22651,22653,22664,22678,22725,22730,22753,22756,22758,22761,22781,22784,22798,22813,22814,22815,22829,22832,22840,22842,22852,22853,22854,22857,22859,22869,22910,22967,22982,22983,22984,22987,22988,22996,22998,23015,23025,23038,23047,23048,23049,23051,23068,23070,23080,23093,23112]]],["people's",[1,1,[[2,1,1,0,1,[[98,1,1,0,1]]]],[2968]]]]},{"k":"H5972","v":[["*",[14,13,[[14,4,4,0,4,[[407,1,1,0,1],[408,1,1,1,2],[409,2,2,2,4]]],[26,10,9,4,13,[[851,1,1,4,5],[852,4,3,5,8],[853,1,1,8,9],[854,1,1,9,10],[855,1,1,10,11],[856,2,2,11,13]]]],[12146,12163,12186,12198,21802,21811,21814,21836,21838,21893,21930,21947,21960]]],["+",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12146]]],["people",[13,12,[[14,3,3,0,3,[[408,1,1,0,1],[409,2,2,1,3]]],[26,10,9,3,12,[[851,1,1,3,4],[852,4,3,4,7],[853,1,1,7,8],[854,1,1,8,9],[855,1,1,9,10],[856,2,2,10,12]]]],[12163,12186,12198,21802,21811,21814,21836,21838,21893,21930,21947,21960]]]]},{"k":"H5973","v":[["*",[1060,929,[[0,92,84,0,84,[[2,2,2,0,2],[12,2,2,2,4],[17,3,3,4,7],[18,5,5,7,12],[19,2,2,12,14],[20,5,3,14,17],[21,1,1,17,18],[22,2,1,18,19],[23,5,5,19,24],[24,1,1,24,25],[25,7,5,25,30],[26,1,1,30,31],[27,2,2,31,33],[28,8,7,33,40],[29,3,3,40,43],[30,11,10,43,53],[31,8,7,53,60],[32,2,2,60,62],[34,4,4,62,66],[38,4,4,66,70],[39,1,1,70,71],[40,1,1,71,72],[41,1,1,72,73],[42,1,1,73,74],[43,3,3,74,77],[45,1,1,77,78],[46,2,2,78,80],[47,3,3,80,83],[49,1,1,83,84]]],[1,49,46,84,130,[[52,1,1,84,85],[53,3,2,85,87],[57,3,3,87,90],[58,1,1,90,91],[59,5,5,91,96],[60,1,1,96,97],[62,1,1,97,98],[63,1,1,98,99],[66,2,2,99,101],[67,4,4,101,105],[68,2,2,105,107],[69,3,2,107,109],[70,2,2,109,111],[71,8,7,111,118],[72,2,2,118,120],[73,3,3,120,123],[82,3,3,123,126],[83,4,4,126,130]]],[2,27,20,130,150,[[104,1,1,130,131],[114,19,12,131,143],[115,7,7,143,150]]],[3,20,18,150,168,[[126,2,1,150,151],[127,2,2,151,153],[129,1,1,153,154],[130,2,2,154,156],[136,1,1,156,157],[138,11,10,157,167],[139,1,1,167,168]]],[4,65,57,168,225,[[154,1,1,168,169],[156,1,1,169,170],[157,2,2,170,172],[160,1,1,172,173],[161,4,4,173,177],[162,2,2,177,179],[164,1,1,179,180],[166,2,2,180,182],[167,6,5,182,187],[169,1,1,187,188],[170,4,4,188,192],[172,6,4,192,196],[174,9,7,196,203],[175,3,3,203,206],[179,4,4,206,210],[181,6,5,210,215],[183,6,5,215,220],[184,5,4,220,224],[185,1,1,224,225]]],[5,41,35,225,260,[[187,5,3,225,228],[188,3,2,228,230],[189,2,1,230,231],[190,2,2,231,233],[193,3,3,233,236],[194,1,1,236,237],[195,2,1,237,238],[196,9,8,238,246],[197,4,4,246,250],[199,1,1,250,251],[200,2,2,251,253],[205,2,2,253,255],[206,1,1,255,256],[208,3,3,256,259],[210,1,1,259,260]]],[6,58,52,260,312,[[211,2,2,260,262],[212,1,1,262,263],[213,1,1,263,264],[214,6,4,264,268],[215,2,2,268,270],[216,4,4,270,274],[217,1,1,274,275],[218,3,2,275,277],[219,9,7,277,284],[221,7,7,284,291],[222,1,1,291,292],[223,1,1,292,293],[225,1,1,293,294],[226,3,3,294,297],[228,6,6,297,303],[229,5,4,303,307],[230,5,5,307,312]]],[7,15,12,312,324,[[232,6,4,312,316],[233,8,7,316,323],[235,1,1,323,324]]],[8,93,82,324,406,[[236,4,4,324,328],[237,5,4,328,332],[238,1,1,332,333],[239,1,1,333,334],[240,1,1,334,335],[244,5,5,335,340],[245,7,6,340,346],[247,1,1,346,347],[248,5,4,347,351],[249,7,5,351,356],[250,5,4,356,360],[251,3,3,360,363],[252,7,7,363,370],[253,5,4,370,374],[255,13,12,374,386],[257,5,5,386,391],[258,1,1,391,392],[260,3,3,392,395],[261,1,1,395,396],[262,3,3,396,399],[263,3,2,399,401],[264,4,3,401,404],[265,2,1,404,405],[266,1,1,405,406]]],[9,77,67,406,473,[[267,2,2,406,408],[268,4,3,408,411],[269,9,7,411,418],[271,1,1,418,419],[272,3,3,419,422],[273,3,3,422,425],[274,1,1,425,426],[275,3,3,426,429],[276,4,3,429,432],[277,4,4,432,436],[278,4,3,436,439],[279,7,7,439,446],[280,1,1,446,447],[281,7,6,447,453],[283,1,1,453,454],[284,1,1,454,455],[285,8,7,455,462],[286,1,1,462,463],[287,5,4,463,467],[288,4,2,467,469],[289,2,2,469,471],[290,2,2,471,473]]],[10,62,54,473,527,[[291,10,8,473,481],[292,3,3,481,484],[293,3,2,484,486],[295,1,1,486,487],[298,10,8,487,495],[299,1,1,495,496],[300,3,3,496,499],[301,8,8,499,507],[302,3,3,507,510],[303,1,1,510,511],[304,4,3,511,514],[305,5,4,514,518],[306,3,3,518,521],[307,1,1,521,522],[310,1,1,522,523],[312,5,4,523,527]]],[11,38,31,527,558,[[314,1,1,527,528],[318,1,1,528,529],[320,4,3,529,532],[321,1,1,532,533],[322,3,3,533,536],[323,1,1,536,537],[324,1,1,537,538],[325,4,3,538,541],[326,8,6,541,547],[327,6,4,547,551],[328,2,1,551,552],[330,3,3,552,555],[332,1,1,555,556],[333,1,1,556,557],[336,1,1,557,558]]],[12,55,53,558,611,[[341,2,2,558,560],[342,3,3,560,563],[345,1,1,563,564],[346,3,3,564,567],[348,4,3,567,570],[349,6,6,570,576],[350,3,3,576,579],[352,1,1,579,580],[353,2,2,580,582],[354,4,4,582,586],[355,1,1,586,587],[356,6,5,587,592],[357,1,1,592,593],[358,2,2,593,595],[359,5,5,595,600],[361,1,1,600,601],[362,2,2,601,603],[363,1,1,603,604],[364,1,1,604,605],[365,5,5,605,610],[366,1,1,610,611]]],[13,113,95,611,706,[[367,6,6,611,617],[368,5,4,617,621],[371,2,2,621,623],[372,4,3,623,626],[373,1,1,626,627],[374,1,1,627,628],[375,5,4,628,632],[376,1,1,632,633],[377,2,2,633,635],[378,3,3,635,638],[379,4,3,638,641],[380,4,3,641,644],[381,4,2,644,646],[382,3,3,646,649],[383,10,9,649,658],[384,3,2,658,660],[385,4,4,660,664],[386,8,7,664,671],[387,6,4,671,675],[388,2,2,675,677],[389,3,3,677,680],[390,4,3,680,683],[391,6,5,683,688],[392,5,4,688,692],[393,2,2,692,694],[394,2,2,694,696],[395,1,1,696,697],[398,8,5,697,702],[399,1,1,702,703],[401,1,1,703,704],[402,2,2,704,706]]],[14,24,23,706,729,[[403,3,3,706,709],[404,1,1,709,710],[406,1,1,710,711],[409,1,1,711,712],[410,16,15,712,727],[412,2,2,727,729]]],[15,13,12,729,741,[[414,3,2,729,731],[416,1,1,731,732],[417,1,1,732,733],[419,1,1,733,734],[421,3,3,734,737],[422,1,1,737,738],[424,2,2,738,740],[425,1,1,740,741]]],[16,11,9,741,750,[[427,3,2,741,743],[430,3,2,743,745],[431,2,2,745,747],[432,2,2,747,749],[434,1,1,749,750]]],[17,48,46,750,796,[[436,2,2,750,752],[438,2,2,752,754],[440,1,1,754,755],[444,4,4,755,759],[445,3,2,759,761],[446,1,1,761,762],[447,3,3,762,765],[449,1,1,765,766],[450,2,2,766,768],[451,1,1,768,769],[452,1,1,769,770],[455,1,1,770,771],[456,1,1,771,772],[457,2,2,772,774],[458,2,2,774,776],[460,2,2,776,778],[462,2,2,778,780],[463,1,1,780,781],[464,1,1,781,782],[465,1,1,782,783],[466,1,1,783,784],[468,1,1,784,785],[469,4,3,785,788],[470,1,1,788,789],[471,1,1,789,790],[472,1,1,790,791],[475,2,2,791,793],[476,1,1,793,794],[477,2,2,794,796]]],[18,65,54,796,850,[[495,5,3,796,799],[503,5,3,799,802],[505,4,2,802,804],[513,1,1,804,805],[516,1,1,805,806],[519,1,1,806,807],[523,2,2,807,809],[527,2,1,809,810],[543,2,1,810,811],[546,1,1,811,812],[549,1,1,812,813],[550,4,4,813,817],[554,1,1,817,818],[555,1,1,818,819],[558,1,1,819,820],[560,2,2,820,822],[562,1,1,822,823],[563,1,1,823,824],[564,1,1,824,825],[565,1,1,825,826],[566,4,4,826,830],[568,1,1,830,831],[571,2,1,831,832],[581,1,1,832,833],[583,2,2,833,835],[590,2,1,835,836],[592,1,1,836,837],[596,2,2,837,839],[597,3,3,839,842],[598,1,1,842,843],[603,2,2,843,845],[607,3,2,845,847],[616,1,1,847,848],[620,1,1,848,849],[625,1,1,849,850]]],[19,8,8,850,858,[[630,1,1,850,851],[637,1,1,851,852],[645,1,1,852,853],[650,1,1,853,854],[651,1,1,854,855],[656,1,1,855,856],[657,1,1,856,857],[658,1,1,857,858]]],[20,8,7,858,865,[[659,2,2,858,860],[660,2,1,860,861],[662,1,1,861,862],[664,1,1,862,863],[665,1,1,863,864],[667,1,1,864,865]]],[21,9,5,865,870,[[671,1,1,865,866],[674,4,2,866,868],[675,3,1,868,869],[676,1,1,869,870]]],[22,15,13,870,883,[[681,1,1,870,871],[685,1,1,871,872],[686,2,2,872,874],[689,2,1,874,875],[703,1,1,875,876],[706,2,2,876,878],[707,1,1,878,879],[712,2,1,879,880],[714,1,1,880,881],[716,1,1,881,882],[719,1,1,882,883]]],[23,7,6,883,889,[[750,2,1,883,884],[776,1,1,884,885],[778,1,1,885,886],[783,1,1,886,887],[785,1,1,887,888],[795,1,1,888,889]]],[26,17,15,889,904,[[850,1,1,889,890],[857,1,1,890,891],[858,1,1,891,892],[859,7,7,892,899],[860,7,5,899,904]]],[27,14,11,904,915,[[863,2,1,904,905],[865,4,3,905,908],[866,1,1,908,909],[870,1,1,909,910],[872,2,1,910,911],[873,3,3,911,914],[875,1,1,914,915]]],[28,2,2,915,917,[[877,1,1,915,916],[878,1,1,916,917]]],[29,3,3,917,920,[[880,1,1,917,918],[882,1,1,918,919],[884,1,1,919,920]]],[31,1,1,920,921,[[889,1,1,920,921]]],[32,4,3,921,924,[[894,1,1,921,922],[898,3,2,922,924]]],[33,1,1,924,925,[[902,1,1,924,925]]],[35,1,1,925,926,[[906,1,1,925,926]]],[37,4,3,926,929,[[918,2,1,926,927],[920,1,1,927,928],[924,1,1,928,929]]]],[61,67,319,332,440,447,449,476,487,489,491,492,504,508,523,535,536,552,575,603,605,618,645,649,669,695,708,712,720,721,771,788,793,801,804,809,814,820,822,825,838,845,846,875,876,878,896,897,902,904,905,911,923,932,934,937,940,952,953,956,961,975,1013,1014,1015,1017,1156,1159,1161,1163,1186,1227,1290,1324,1353,1356,1357,1390,1449,1450,1452,1463,1472,1515,1591,1613,1616,1722,1739,1740,1775,1783,1787,1795,1801,1803,1814,1886,1895,1985,1991,2005,2011,2017,2018,2035,2050,2070,2073,2080,2091,2125,2127,2128,2129,2132,2138,2143,2145,2149,2179,2185,2191,2482,2485,2489,2499,2501,2506,2524,3201,3475,3492,3504,3505,3508,3509,3510,3514,3516,3519,3522,3523,3545,3547,3548,3551,3552,3564,3565,4020,4040,4041,4106,4132,4151,4314,4383,4384,4387,4388,4389,4394,4396,4397,4410,4414,4437,4945,5027,5055,5057,5142,5164,5166,5167,5181,5195,5198,5263,5317,5319,5328,5331,5332,5335,5337,5383,5385,5397,5400,5403,5428,5431,5439,5447,5472,5474,5492,5493,5495,5498,5499,5515,5516,5521,5605,5606,5607,5608,5691,5694,5696,5697,5704,5734,5736,5744,5751,5755,5770,5772,5782,5783,5831,5856,5860,5868,5881,5883,5900,5913,5918,5978,5988,6000,6003,6039,6071,6079,6093,6095,6098,6100,6102,6107,6111,6112,6114,6128,6162,6194,6195,6367,6368,6376,6433,6434,6440,6503,6531,6533,6563,6595,6605,6607,6608,6609,6638,6643,6666,6667,6670,6671,6698,6729,6754,6760,6770,6773,6788,6791,6798,6802,6832,6833,6834,6837,6840,6849,6854,6870,6893,6932,6952,6962,6979,6996,7000,7012,7015,7018,7021,7027,7034,7035,7043,7068,7072,7074,7077,7082,7134,7135,7138,7149,7153,7155,7157,7161,7168,7170,7171,7200,7229,7236,7238,7239,7248,7261,7266,7273,7295,7301,7326,7396,7410,7414,7415,7416,7420,7424,7425,7427,7429,7444,7484,7487,7490,7500,7501,7510,7515,7525,7529,7553,7566,7585,7586,7590,7607,7609,7613,7637,7641,7644,7650,7651,7655,7660,7688,7689,7690,7704,7735,7737,7738,7739,7743,7744,7745,7746,7758,7763,7764,7765,7789,7791,7795,7804,7810,7829,7868,7877,7886,7911,7932,7933,7935,7950,7961,7969,7971,7976,8000,8014,8024,8046,8052,8054,8055,8089,8093,8096,8098,8103,8107,8109,8142,8161,8164,8179,8183,8189,8195,8220,8228,8230,8234,8242,8253,8257,8260,8263,8270,8272,8289,8297,8310,8328,8333,8337,8339,8340,8341,8343,8373,8408,8409,8417,8420,8424,8425,8473,8480,8527,8528,8536,8544,8548,8551,8552,8562,8584,8595,8598,8599,8628,8629,8658,8662,8708,8713,8724,8725,8726,8731,8738,8739,8750,8754,8778,8780,8803,8822,8833,8884,8994,9002,9003,9006,9042,9046,9047,9050,9078,9081,9101,9105,9112,9117,9119,9126,9129,9130,9146,9151,9166,9172,9175,9192,9223,9238,9249,9252,9257,9263,9273,9289,9300,9311,9337,9434,9520,9524,9529,9530,9560,9707,9748,9751,9755,9784,9808,9816,9828,9838,9871,9880,9883,9884,9906,9911,9912,9916,9918,9925,9932,9947,9950,9963,9983,10031,10050,10051,10119,10137,10208,10395,10408,10438,10447,10448,10607,10635,10640,10653,10682,10683,10686,10738,10739,10741,10747,10754,10759,10761,10762,10774,10809,10861,10862,10865,10871,10874,10876,10901,10909,10913,10921,10924,10926,10930,10949,10954,10971,10975,10979,10980,10982,11020,11053,11054,11093,11141,11144,11145,11155,11163,11164,11194,11195,11197,11202,11203,11205,11208,11214,11218,11219,11225,11278,11280,11289,11290,11293,11332,11364,11365,11385,11389,11395,11410,11415,11418,11438,11440,11453,11456,11461,11465,11476,11486,11488,11492,11499,11518,11519,11522,11526,11531,11532,11533,11537,11538,11539,11540,11541,11544,11545,11579,11582,11583,11587,11588,11593,11604,11616,11622,11623,11624,11625,11627,11633,11643,11651,11652,11657,11659,11664,11681,11693,11699,11711,11717,11723,11728,11732,11734,11749,11751,11755,11760,11764,11774,11791,11801,11878,11882,11883,11884,11908,11928,11987,12003,12016,12019,12020,12027,12029,12112,12201,12202,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12225,12234,12256,12266,12316,12319,12372,12400,12427,12519,12524,12528,12587,12625,12664,12696,12730,12737,12791,12793,12796,12807,12808,12815,12859,12873,12881,12918,12919,12974,13053,13054,13065,13077,13099,13103,13113,13130,13141,13144,13184,13212,13214,13259,13263,13337,13363,13393,13410,13426,13433,13463,13465,13492,13494,13508,13550,13558,13593,13679,13691,13692,13716,13724,13740,13787,13866,13879,13892,13930,13933,14141,14143,14144,14277,14278,14282,14300,14302,14447,14524,14563,14621,14625,14686,14888,14963,15005,15025,15042,15043,15045,15099,15150,15219,15248,15249,15275,15301,15305,15312,15347,15350,15359,15364,15410,15447,15596,15656,15657,15821,15843,15963,16022,16078,16079,16080,16083,16117,16118,16144,16147,16257,16300,16383,16485,16678,16904,17051,17100,17248,17282,17307,17326,17331,17349,17396,17427,17440,17484,17548,17595,17596,17599,17615,17721,17793,17817,17825,17890,18129,18179,18193,18199,18310,18342,18401,18461,19100,19735,19815,19935,19969,20252,21750,21979,22010,22022,22026,22030,22032,22034,22035,22036,22044,22047,22053,22075,22076,22123,22134,22138,22147,22157,22216,22252,22253,22254,22256,22284,22337,22345,22382,22420,22460,22534,22602,22650,22656,22724,22791,22999,23021,23073]]],["+",[91,89,[[0,9,9,0,9,[[12,1,1,0,1],[23,1,1,1,2],[25,1,1,2,3],[30,1,1,3,4],[31,1,1,4,5],[40,1,1,5,6],[43,2,2,6,8],[47,1,1,8,9]]],[1,10,10,9,19,[[57,3,3,9,12],[58,1,1,12,13],[59,2,2,13,15],[60,1,1,15,16],[70,1,1,16,17],[71,2,2,17,19]]],[2,2,2,19,21,[[114,2,2,19,21]]],[4,11,11,21,32,[[162,1,1,21,22],[167,4,4,22,26],[170,2,2,26,28],[174,1,1,28,29],[175,2,2,29,31],[181,1,1,31,32]]],[5,1,1,32,33,[[188,1,1,32,33]]],[6,5,4,33,37,[[211,1,1,33,34],[219,2,1,34,35],[225,1,1,35,36],[226,1,1,36,37]]],[7,2,2,37,39,[[233,1,1,37,38],[235,1,1,38,39]]],[8,16,16,39,55,[[236,2,2,39,41],[237,1,1,41,42],[245,2,2,42,44],[249,1,1,44,45],[251,1,1,45,46],[253,2,2,46,48],[255,7,7,48,55]]],[9,10,9,55,64,[[267,1,1,55,56],[269,4,3,56,59],[273,1,1,59,60],[275,2,2,60,62],[281,1,1,62,63],[290,1,1,63,64]]],[10,4,4,64,68,[[292,1,1,64,65],[301,1,1,65,66],[302,1,1,66,67],[304,1,1,67,68]]],[11,1,1,68,69,[[314,1,1,68,69]]],[12,3,3,69,72,[[342,1,1,69,70],[349,1,1,70,71],[354,1,1,71,72]]],[13,4,4,72,76,[[376,1,1,72,73],[386,1,1,73,74],[390,1,1,74,75],[398,1,1,75,76]]],[17,3,3,76,79,[[436,1,1,76,77],[463,1,1,77,78],[469,1,1,78,79]]],[18,4,4,79,83,[[505,1,1,79,80],[563,1,1,80,81],[566,1,1,81,82],[598,1,1,82,83]]],[22,4,4,83,87,[[685,1,1,83,84],[686,1,1,84,85],[706,1,1,85,86],[707,1,1,86,87]]],[23,1,1,87,88,[[778,1,1,87,88]]],[29,1,1,88,89,[[882,1,1,88,89]]]],[332,618,708,904,940,1227,1353,1356,1463,1722,1739,1740,1775,1783,1795,1814,2091,2125,2127,3509,3510,5198,5331,5332,5335,5337,5400,5403,5474,5515,5521,5697,5881,6533,6791,6932,6952,7161,7200,7229,7239,7273,7420,7427,7525,7609,7688,7689,7737,7739,7744,7745,7758,7763,7764,8024,8096,8107,8109,8195,8228,8234,8417,8713,8803,9117,9166,9223,9560,10448,10741,10876,11410,11593,11681,11882,12881,13508,13716,14300,15301,15359,16083,17793,17825,18193,18199,19815,22420]]],["With",[12,12,[[0,1,1,0,1,[[30,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]],[9,2,2,2,4,[[288,2,2,2,4]]],[12,1,1,4,5,[[366,1,1,4,5]]],[13,1,1,5,6,[[398,1,1,5,6]]],[17,3,3,6,9,[[438,1,1,6,7],[447,2,2,7,9]]],[18,3,3,9,12,[[495,2,2,9,11],[566,1,1,11,12]]]],[905,6162,8628,8629,11194,11883,12918,13141,13144,14143,14144,15347]]],["accompanying",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8161]]],["against",[35,34,[[4,5,5,0,5,[[161,2,2,0,2],[172,2,2,2,4],[183,1,1,4,5]]],[5,3,3,5,8,[[196,1,1,5,6],[197,1,1,6,7],[205,1,1,7,8]]],[6,10,10,8,18,[[215,1,1,8,9],[221,4,4,9,13],[230,5,5,13,18]]],[10,3,3,18,21,[[302,2,2,18,20],[310,1,1,20,21]]],[11,2,2,21,23,[[320,1,1,21,22],[325,1,1,22,23]]],[13,7,7,23,30,[[377,2,2,23,25],[379,2,2,25,27],[380,1,1,27,28],[383,1,1,28,29],[386,1,1,29,30]]],[17,2,2,30,32,[[445,1,1,30,31],[446,1,1,31,32]]],[18,2,1,32,33,[[571,2,1,32,33]]],[19,1,1,33,34,[[657,1,1,33,34]]]],[5164,5181,5431,5439,5755,6093,6112,6368,6643,6833,6834,6849,6854,7068,7072,7074,7077,7082,9172,9175,9434,9755,9883,11415,11418,11456,11465,11486,11533,11616,13103,13113,15447,17282]]],["all",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12400]]],["among",[10,10,[[2,1,1,0,1,[[114,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[5,2,2,2,4,[[206,1,1,2,3],[208,1,1,3,4]]],[6,1,1,4,5,[[228,1,1,4,5]]],[8,2,2,5,7,[[237,1,1,5,6],[245,1,1,6,7]]],[13,1,1,7,8,[[390,1,1,7,8]]],[15,1,1,8,9,[[421,1,1,8,9]]],[19,1,1,9,10,[[658,1,1,9,10]]]],[3514,5696,6376,6433,7018,7248,7429,11693,12528,17307]]],["and",[3,3,[[18,3,3,0,3,[[581,1,1,0,1],[592,1,1,1,2],[625,1,1,2,3]]]],[15596,15843,16383]]],["as",[3,3,[[12,1,1,0,1,[[362,1,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]],[20,1,1,2,3,[[660,1,1,2,3]]]],[11054,13077,17349]]],["at",[2,2,[[9,1,1,0,1,[[286,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[8562,22076]]],["before",[4,4,[[8,1,1,0,1,[[237,1,1,0,1]]],[16,1,1,1,2,[[432,1,1,1,2]]],[18,2,2,2,4,[[495,1,1,2,3],[550,1,1,3,4]]]],[7261,12815,14141,15042]]],["beside",[4,4,[[5,1,1,0,1,[[193,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[14,1,1,2,3,[[403,1,1,2,3]]],[18,1,1,3,4,[[550,1,1,3,4]]]],[5978,8340,12020,15045]]],["by",[22,20,[[0,2,2,0,2,[[24,1,1,0,1],[34,1,1,1,2]]],[1,1,1,2,3,[[71,1,1,2,3]]],[2,4,2,3,5,[[114,4,2,3,5]]],[6,3,3,5,8,[[219,1,1,5,6],[228,1,1,6,7],[229,1,1,7,8]]],[7,2,2,8,10,[[233,2,2,8,10]]],[8,4,4,10,14,[[236,1,1,10,11],[244,1,1,11,12],[245,1,1,12,13],[252,1,1,13,14]]],[9,3,3,14,17,[[272,1,1,14,15],[285,1,1,15,16],[290,1,1,16,17]]],[10,1,1,17,18,[[291,1,1,17,18]]],[12,1,1,18,19,[[358,1,1,18,19]]],[16,1,1,19,20,[[434,1,1,19,20]]]],[669,1015,2138,3508,3516,6760,6996,7035,7157,7170,7238,7414,7420,7644,8164,8548,8708,8726,10949,12859]]],["for",[4,4,[[8,1,1,0,1,[[247,1,1,0,1]]],[16,1,1,1,2,[[431,1,1,1,2]]],[18,2,2,2,4,[[603,2,2,2,4]]]],[7484,12796,16117,16118]]],["her",[3,3,[[7,2,2,0,2,[[232,2,2,0,2]]],[9,1,1,2,3,[[277,1,1,2,3]]]],[7134,7149,8263]]],["him",[1,1,[[13,1,1,0,1,[[383,1,1,0,1]]]],[11539]]],["in",[19,17,[[4,2,2,0,2,[[160,1,1,0,1],[167,1,1,1,2]]],[5,1,1,2,3,[[200,1,1,2,3]]],[10,4,3,3,6,[[298,3,2,3,5],[300,1,1,5,6]]],[12,2,2,6,8,[[359,1,1,6,7],[365,1,1,7,8]]],[13,7,6,8,14,[[367,1,1,8,9],[372,3,2,9,11],[375,1,1,11,12],[385,1,1,12,13],[395,1,1,13,14]]],[17,2,2,14,16,[[450,1,1,14,15],[464,1,1,15,16]]],[18,1,1,16,17,[[597,1,1,16,17]]]],[5142,5328,6194,9002,9003,9081,10971,11145,11205,11289,11290,11365,11579,11801,13212,13550,16079]]],["like",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15025]]],["long",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15005]]],["near",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7015]]],["of",[8,7,[[8,1,1,0,1,[[252,1,1,0,1]]],[9,3,2,1,3,[[272,1,1,1,2],[287,2,1,2,3]]],[10,1,1,3,4,[[301,1,1,3,4]]],[12,1,1,4,5,[[365,1,1,4,5]]],[13,2,2,5,7,[[382,1,1,5,6],[387,1,1,6,7]]]],[7660,8179,8584,9119,11155,11518,11643]]],["side",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10738]]],["than",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17349]]],["thee",[3,3,[[4,1,1,0,1,[[183,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]],[19,1,1,2,3,[[650,1,1,2,3]]]],[5736,16257,17051]]],["them",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7424]]],["to",[10,10,[[0,3,3,0,3,[[20,1,1,0,1],[30,2,2,1,3]]],[6,1,1,3,4,[[218,1,1,3,4]]],[8,1,1,4,5,[[250,1,1,4,5]]],[12,2,2,5,7,[[356,2,2,5,7]]],[13,1,1,7,8,[[390,1,1,7,8]]],[18,1,1,8,9,[[505,1,1,8,9]]],[32,1,1,9,10,[[894,1,1,9,10]]]],[536,897,902,6754,7566,10909,10913,11699,14302,22602]]],["toward",[3,3,[[0,1,1,0,1,[[30,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]],[18,1,1,2,3,[[562,1,1,2,3]]]],[875,11693,15275]]],["unto",[38,36,[[0,8,8,0,8,[[18,1,1,0,1],[19,2,2,1,3],[20,1,1,3,4],[23,2,2,4,6],[25,1,1,6,7],[39,1,1,7,8]]],[2,7,7,8,15,[[115,7,7,8,15]]],[3,2,2,15,17,[[126,1,1,15,16],[138,1,1,16,17]]],[5,2,2,17,19,[[188,1,1,17,18],[210,1,1,18,19]]],[6,1,1,19,20,[[218,1,1,19,20]]],[9,9,7,20,27,[[268,3,2,20,22],[269,1,1,22,23],[275,1,1,23,24],[276,2,1,24,25],[279,2,2,25,27]]],[10,1,1,27,28,[[293,1,1,27,28]]],[12,1,1,28,29,[[356,1,1,28,29]]],[13,2,2,29,31,[[367,2,2,29,31]]],[18,1,1,31,32,[[620,1,1,31,32]]],[23,1,1,32,33,[[783,1,1,32,33]]],[26,3,3,33,36,[[859,3,3,33,36]]]],[476,504,508,536,603,605,721,1186,3545,3547,3548,3551,3552,3564,3565,4020,4394,5881,6503,6754,8054,8055,8089,8230,8242,8333,8339,8822,10909,11202,11203,16300,19935,22026,22030,22034]]],["upon",[2,2,[[13,1,1,0,1,[[388,1,1,0,1]]],[17,1,1,1,2,[[445,1,1,1,2]]]],[11652,13103]]],["us",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17817]]],["with",[773,685,[[0,68,62,0,62,[[2,2,2,0,2],[12,1,1,2,3],[17,3,3,3,6],[18,4,4,6,10],[20,3,2,10,12],[21,1,1,12,13],[22,2,1,13,14],[23,2,2,14,16],[25,5,3,16,19],[26,1,1,19,20],[27,2,2,20,22],[28,8,7,22,29],[29,3,3,29,32],[30,6,6,32,38],[31,7,6,38,44],[32,2,2,44,46],[34,3,3,46,49],[38,4,4,49,53],[41,1,1,53,54],[42,1,1,54,55],[43,1,1,55,56],[45,1,1,56,57],[46,2,2,57,59],[47,2,2,59,61],[49,1,1,61,62]]],[1,38,36,62,98,[[52,1,1,62,63],[53,3,2,63,65],[59,3,3,65,68],[62,1,1,68,69],[63,1,1,69,70],[66,2,2,70,72],[67,4,4,72,76],[68,2,2,76,78],[69,3,2,78,80],[70,1,1,80,81],[71,5,5,81,86],[72,2,2,86,88],[73,3,3,88,91],[82,3,3,91,94],[83,4,4,94,98]]],[2,13,11,98,109,[[104,1,1,98,99],[114,12,10,99,109]]],[3,18,17,109,126,[[126,1,1,109,110],[127,2,2,110,112],[129,1,1,112,113],[130,2,2,113,115],[136,1,1,115,116],[138,10,9,116,125],[139,1,1,125,126]]],[4,45,41,126,167,[[154,1,1,126,127],[156,1,1,127,128],[157,2,2,128,130],[161,2,2,130,132],[162,1,1,132,133],[164,1,1,133,134],[166,2,2,134,136],[167,1,1,136,137],[169,1,1,137,138],[170,2,2,138,140],[172,4,4,140,144],[174,8,6,144,150],[175,1,1,150,151],[179,4,4,151,155],[181,4,3,155,158],[183,4,4,158,162],[184,5,4,162,166],[185,1,1,166,167]]],[5,30,26,167,193,[[187,5,3,167,170],[188,1,1,170,171],[189,2,1,171,172],[190,2,2,172,174],[193,2,2,174,176],[194,1,1,176,177],[195,2,1,177,178],[196,8,8,178,186],[197,3,3,186,189],[200,1,1,189,190],[205,1,1,190,191],[208,2,2,191,193]]],[6,36,32,193,225,[[211,1,1,193,194],[212,1,1,194,195],[213,1,1,195,196],[214,6,4,196,200],[215,1,1,200,201],[216,4,4,201,205],[217,1,1,205,206],[218,1,1,206,207],[219,6,5,207,212],[221,3,3,212,215],[222,1,1,215,216],[223,1,1,216,217],[226,2,2,217,219],[228,3,3,219,222],[229,4,3,222,225]]],[7,9,6,225,231,[[232,4,2,225,227],[233,5,4,227,231]]],[8,65,57,231,288,[[236,1,1,231,232],[237,2,1,232,233],[238,1,1,233,234],[239,1,1,234,235],[240,1,1,235,236],[244,4,4,236,240],[245,2,2,240,242],[248,5,4,242,246],[249,6,4,246,250],[250,4,4,250,254],[251,1,1,254,255],[252,5,5,255,260],[253,3,3,260,263],[255,6,5,263,268],[257,5,5,268,273],[258,1,1,273,274],[260,3,3,274,277],[261,1,1,277,278],[262,3,3,278,281],[263,3,2,281,283],[264,4,3,283,286],[265,2,1,286,287],[266,1,1,287,288]]],[9,46,43,288,331,[[267,1,1,288,289],[268,1,1,289,290],[269,4,3,290,293],[271,1,1,293,294],[273,2,2,294,296],[274,1,1,296,297],[276,2,2,297,299],[277,3,3,299,302],[278,4,3,302,305],[279,4,4,305,309],[280,1,1,309,310],[281,6,5,310,315],[283,1,1,315,316],[284,1,1,316,317],[285,7,7,317,324],[287,3,3,324,327],[288,2,2,327,329],[289,2,2,329,331]]],[10,48,42,331,373,[[291,9,7,331,338],[292,2,2,338,340],[293,2,2,340,342],[295,1,1,342,343],[298,7,6,343,349],[299,1,1,349,350],[300,2,2,350,352],[301,6,6,352,358],[303,1,1,358,359],[304,3,2,359,361],[305,5,4,361,365],[306,3,3,365,368],[307,1,1,368,369],[312,5,4,369,373]]],[11,35,28,373,401,[[318,1,1,373,374],[320,3,2,374,376],[321,1,1,376,377],[322,3,3,377,380],[323,1,1,380,381],[324,1,1,381,382],[325,3,2,382,384],[326,8,6,384,390],[327,6,4,390,394],[328,2,1,394,395],[330,3,3,395,398],[332,1,1,398,399],[333,1,1,399,400],[336,1,1,400,401]]],[12,42,41,401,442,[[341,2,2,401,403],[342,2,2,403,405],[345,1,1,405,406],[346,3,3,406,409],[348,4,3,409,412],[349,4,4,412,416],[350,3,3,416,419],[352,1,1,419,420],[353,2,2,420,422],[354,3,3,422,425],[355,1,1,425,426],[356,3,3,426,429],[357,1,1,429,430],[358,1,1,430,431],[359,4,4,431,435],[361,1,1,435,436],[362,1,1,436,437],[363,1,1,437,438],[364,1,1,438,439],[365,3,3,439,442]]],[13,85,74,442,516,[[367,3,3,442,445],[368,5,4,445,449],[371,2,2,449,451],[372,1,1,451,452],[373,1,1,452,453],[374,1,1,453,454],[375,4,4,454,458],[378,3,3,458,461],[379,2,2,461,463],[380,3,3,463,466],[381,4,2,466,468],[382,2,2,468,470],[383,8,7,470,477],[384,3,2,477,479],[385,3,3,479,482],[386,6,5,482,487],[387,5,3,487,490],[388,1,1,490,491],[389,3,3,491,494],[391,6,5,494,499],[392,5,4,499,503],[393,2,2,503,505],[394,2,2,505,507],[398,6,5,507,512],[399,1,1,512,513],[401,1,1,513,514],[402,2,2,514,516]]],[14,23,22,516,538,[[403,2,2,516,518],[404,1,1,518,519],[406,1,1,519,520],[409,1,1,520,521],[410,16,15,521,536],[412,2,2,536,538]]],[15,11,10,538,548,[[414,3,2,538,540],[416,1,1,540,541],[419,1,1,541,542],[421,2,2,542,544],[422,1,1,544,545],[424,2,2,545,547],[425,1,1,547,548]]],[16,8,6,548,554,[[427,3,2,548,550],[430,3,2,550,552],[431,1,1,552,553],[432,1,1,553,554]]],[17,36,35,554,589,[[436,1,1,554,555],[438,1,1,555,556],[440,1,1,556,557],[444,3,3,557,560],[445,1,1,560,561],[447,1,1,561,562],[449,1,1,562,563],[450,1,1,563,564],[451,1,1,564,565],[452,1,1,565,566],[455,1,1,566,567],[456,1,1,567,568],[457,2,2,568,570],[458,2,2,570,572],[460,2,2,572,574],[462,2,2,574,576],[465,1,1,576,577],[466,1,1,577,578],[468,1,1,578,579],[469,3,2,579,581],[470,1,1,581,582],[471,1,1,582,583],[472,1,1,583,584],[475,2,2,584,586],[476,1,1,586,587],[477,2,2,587,589]]],[18,41,34,589,623,[[495,2,2,589,591],[503,5,3,591,594],[505,2,1,594,595],[513,1,1,595,596],[516,1,1,596,597],[519,1,1,597,598],[523,2,2,598,600],[527,2,1,600,601],[543,2,1,601,602],[546,1,1,602,603],[550,1,1,603,604],[554,1,1,604,605],[555,1,1,605,606],[558,1,1,606,607],[560,2,2,607,609],[564,1,1,609,610],[565,1,1,610,611],[566,2,2,611,613],[568,1,1,613,614],[583,2,2,614,616],[590,2,1,616,617],[596,2,2,617,619],[597,2,2,619,621],[607,3,2,621,623]]],[19,5,5,623,628,[[630,1,1,623,624],[637,1,1,624,625],[645,1,1,625,626],[651,1,1,626,627],[656,1,1,627,628]]],[20,6,6,628,634,[[659,2,2,628,630],[662,1,1,630,631],[664,1,1,631,632],[665,1,1,632,633],[667,1,1,633,634]]],[21,9,5,634,639,[[671,1,1,634,635],[674,4,2,635,637],[675,3,1,637,638],[676,1,1,638,639]]],[22,10,8,639,647,[[681,1,1,639,640],[689,2,1,640,641],[703,1,1,641,642],[706,1,1,642,643],[712,2,1,643,644],[714,1,1,644,645],[716,1,1,645,646],[719,1,1,646,647]]],[23,5,4,647,651,[[750,2,1,647,648],[776,1,1,648,649],[785,1,1,649,650],[795,1,1,650,651]]],[26,13,11,651,662,[[850,1,1,651,652],[857,1,1,652,653],[858,1,1,653,654],[859,4,4,654,658],[860,6,4,658,662]]],[27,14,11,662,673,[[863,2,1,662,663],[865,4,3,663,666],[866,1,1,666,667],[870,1,1,667,668],[872,2,1,668,669],[873,3,3,669,672],[875,1,1,672,673]]],[28,2,2,673,675,[[877,1,1,673,674],[878,1,1,674,675]]],[29,2,2,675,677,[[880,1,1,675,676],[884,1,1,676,677]]],[31,1,1,677,678,[[889,1,1,677,678]]],[32,3,2,678,680,[[898,3,2,678,680]]],[33,1,1,680,681,[[902,1,1,680,681]]],[35,1,1,681,682,[[906,1,1,681,682]]],[37,4,3,682,685,[[918,2,1,682,683],[920,1,1,683,684],[924,1,1,684,685]]]],[61,67,319,440,447,449,487,489,491,492,523,535,552,575,645,649,695,712,720,771,788,793,801,804,809,814,820,822,825,838,845,846,876,878,896,905,911,923,932,934,937,952,953,956,961,975,1013,1014,1017,1156,1159,1161,1163,1290,1324,1357,1390,1449,1450,1452,1472,1515,1591,1613,1616,1787,1801,1803,1886,1895,1985,1991,2005,2011,2017,2018,2035,2050,2070,2073,2080,2127,2128,2129,2132,2143,2145,2149,2179,2185,2191,2482,2485,2489,2499,2501,2506,2524,3201,3475,3492,3504,3505,3509,3510,3514,3519,3522,3523,4020,4040,4041,4106,4132,4151,4314,4383,4384,4387,4388,4389,4396,4397,4410,4414,4437,4945,5027,5055,5057,5166,5167,5195,5263,5317,5319,5335,5383,5385,5397,5428,5431,5439,5447,5472,5492,5493,5495,5498,5499,5516,5605,5606,5607,5608,5691,5694,5704,5734,5744,5751,5755,5770,5772,5782,5783,5831,5856,5860,5868,5883,5900,5913,5918,5988,6000,6003,6039,6071,6079,6093,6095,6098,6100,6102,6107,6111,6114,6128,6195,6367,6434,6440,6531,6563,6595,6605,6607,6608,6609,6638,6666,6667,6670,6671,6698,6729,6770,6773,6788,6798,6802,6832,6837,6840,6870,6893,6962,6979,7000,7012,7021,7027,7034,7043,7135,7138,7153,7155,7168,7171,7236,7266,7295,7301,7326,7396,7410,7415,7416,7425,7444,7487,7490,7500,7501,7510,7515,7529,7553,7566,7585,7586,7590,7613,7637,7641,7650,7651,7655,7688,7690,7704,7735,7738,7743,7746,7765,7789,7791,7795,7804,7810,7829,7868,7877,7886,7911,7932,7933,7935,7950,7961,7969,7971,7976,8000,8014,8046,8052,8093,8098,8103,8142,8183,8189,8220,8253,8257,8260,8270,8272,8289,8297,8310,8328,8337,8341,8343,8373,8408,8409,8420,8424,8425,8473,8480,8527,8528,8536,8544,8548,8551,8552,8595,8598,8599,8628,8629,8658,8662,8724,8725,8731,8738,8739,8750,8754,8778,8780,8822,8833,8884,8994,9006,9042,9046,9047,9050,9078,9101,9105,9112,9126,9129,9130,9146,9151,9192,9238,9249,9252,9257,9263,9273,9289,9300,9311,9337,9520,9524,9529,9530,9707,9748,9751,9784,9808,9816,9828,9838,9871,9880,9884,9906,9911,9912,9916,9918,9925,9932,9947,9950,9963,9983,10031,10050,10051,10119,10137,10208,10395,10408,10438,10447,10607,10635,10640,10653,10682,10683,10686,10739,10747,10754,10759,10761,10762,10774,10809,10861,10862,10865,10871,10874,10901,10921,10924,10926,10930,10954,10975,10979,10980,10982,11020,11053,11093,11141,11144,11163,11164,11195,11197,11208,11214,11218,11219,11225,11278,11280,11293,11332,11364,11365,11385,11389,11395,11438,11440,11453,11461,11465,11476,11486,11488,11492,11499,11519,11522,11526,11531,11532,11537,11538,11540,11541,11544,11545,11582,11583,11587,11588,11604,11622,11623,11624,11625,11627,11633,11651,11657,11659,11664,11711,11717,11723,11728,11732,11734,11749,11751,11755,11760,11764,11774,11791,11878,11882,11883,11884,11908,11928,11987,12003,12016,12019,12027,12029,12112,12201,12202,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12225,12234,12256,12266,12316,12319,12372,12427,12519,12524,12587,12625,12664,12696,12730,12737,12791,12793,12807,12808,12873,12919,12974,13053,13054,13065,13099,13130,13184,13214,13259,13263,13337,13363,13393,13410,13426,13433,13463,13465,13492,13494,13558,13593,13679,13691,13692,13724,13740,13787,13866,13879,13892,13930,13933,14143,14144,14277,14278,14282,14302,14447,14524,14563,14621,14625,14686,14888,14963,15043,15099,15150,15219,15248,15249,15305,15312,15350,15364,15410,15656,15657,15821,15963,16022,16078,16080,16144,16147,16485,16678,16904,17100,17248,17326,17331,17396,17427,17440,17484,17548,17595,17596,17599,17615,17721,17890,18129,18179,18310,18342,18401,18461,19100,19735,19969,20252,21750,21979,22010,22022,22032,22035,22036,22044,22047,22053,22075,22123,22134,22138,22147,22157,22216,22252,22253,22254,22256,22284,22337,22345,22382,22460,22534,22650,22656,22724,22791,22999,23021,23073]]],["withal",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7607]]]]},{"k":"H5974","v":[["*",[23,20,[[14,5,4,0,4,[[407,1,1,0,1],[408,1,1,1,2],[409,3,2,2,4]]],[26,18,16,4,20,[[851,5,4,4,8],[853,7,7,8,15],[854,2,1,15,16],[855,1,1,16,17],[856,3,3,17,20]]]],[12136,12159,12186,12189,21769,21776,21780,21801,21839,21840,21852,21860,21862,21869,21871,21895,21926,21935,21946,21954]]],["by",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21935]]],["from",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21840,21871]]],["like",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21895]]],["people",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12189]]],["to",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[851,1,1,1,2]]]],[12159,21801]]],["toward",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21839]]],["unto",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21926]]],["with",[14,14,[[14,3,3,0,3,[[407,1,1,0,1],[409,2,2,1,3]]],[26,11,11,3,14,[[851,4,4,3,7],[853,4,4,7,11],[854,1,1,11,12],[856,2,2,12,14]]]],[12136,12186,12189,21769,21776,21780,21801,21852,21860,21862,21869,21895,21946,21954]]]]},{"k":"H5975","v":[["*",[521,496,[[0,16,16,0,16,[[17,2,2,0,2],[18,2,2,2,4],[23,2,2,4,6],[28,1,1,6,7],[29,1,1,7,8],[40,4,4,8,12],[42,1,1,12,13],[44,2,2,13,15],[46,1,1,15,16]]],[1,18,18,16,34,[[52,1,1,16,17],[57,1,1,17,18],[58,4,4,18,22],[63,1,1,22,23],[66,1,1,23,24],[67,2,2,24,26],[69,2,2,26,28],[70,1,1,28,29],[75,1,1,29,30],[81,1,1,30,31],[82,2,2,31,33],[85,1,1,33,34]]],[2,12,12,34,46,[[98,1,1,34,35],[102,4,4,35,39],[103,1,1,39,40],[105,2,2,40,42],[107,1,1,42,43],[108,1,1,43,44],[116,2,2,44,46]]],[3,21,21,46,67,[[117,1,1,46,47],[119,1,1,47,48],[121,3,3,48,51],[123,1,1,51,52],[124,1,1,52,53],[125,1,1,53,54],[127,1,1,54,55],[128,1,1,55,56],[130,1,1,56,57],[132,3,3,57,60],[138,2,2,60,62],[143,4,4,62,66],[151,1,1,66,67]]],[4,17,17,67,84,[[153,1,1,67,68],[156,2,2,68,70],[157,2,2,70,72],[162,2,2,72,74],[169,1,1,74,75],[170,2,2,75,77],[171,1,1,77,78],[176,1,1,78,79],[177,1,1,79,80],[179,2,2,80,82],[181,1,1,82,83],[183,1,1,83,84]]],[5,20,18,84,102,[[189,4,4,84,88],[190,1,1,88,89],[191,2,2,89,91],[194,1,1,91,92],[196,4,3,92,95],[197,1,1,95,96],[204,2,1,96,97],[206,3,3,97,100],[207,1,1,100,101],[209,1,1,101,102]]],[6,10,10,102,112,[[212,1,1,102,103],[213,1,1,103,104],[214,1,1,104,105],[216,1,1,105,106],[217,1,1,106,107],[219,3,3,107,110],[226,1,1,110,111],[230,1,1,111,112]]],[7,1,1,112,113,[[233,1,1,112,113]]],[8,17,16,113,129,[[241,2,2,113,115],[244,1,1,115,116],[249,1,1,116,117],[251,2,2,117,119],[252,5,4,119,123],[254,2,2,123,125],[255,1,1,125,126],[261,1,1,126,127],[265,2,2,127,129]]],[9,16,15,129,144,[[267,2,2,129,131],[268,3,3,131,134],[281,2,2,134,136],[283,1,1,136,137],[284,2,2,137,139],[286,5,4,139,143],[288,1,1,143,144]]],[10,29,28,144,172,[[291,2,2,144,146],[293,2,2,146,148],[297,1,1,148,149],[298,4,4,149,153],[300,3,3,153,156],[302,3,3,156,159],[303,5,4,159,163],[305,1,1,163,164],[307,1,1,164,165],[308,1,1,165,166],[309,2,2,166,168],[310,1,1,168,169],[312,3,3,169,172]]],[11,29,26,172,198,[[314,3,2,172,174],[315,2,2,174,176],[316,3,3,176,179],[317,5,5,179,184],[318,1,1,184,185],[320,2,2,185,187],[321,1,1,187,188],[322,3,2,188,190],[323,2,2,190,192],[325,2,2,192,194],[327,1,1,194,195],[330,2,2,195,197],[335,2,1,197,198]]],[12,14,14,198,212,[[343,4,4,198,202],[352,2,2,202,204],[353,1,1,204,205],[354,1,1,205,206],[357,1,1,206,207],[358,3,3,207,210],[359,1,1,210,211],[360,1,1,211,212]]],[13,51,50,212,262,[[369,1,1,212,213],[370,1,1,213,214],[371,2,2,214,216],[372,3,3,216,219],[373,2,1,219,220],[374,1,1,220,221],[375,4,4,221,225],[376,2,2,225,227],[377,2,2,227,229],[384,3,3,229,232],[385,2,2,232,234],[386,7,7,234,241],[389,3,3,241,244],[390,2,2,244,246],[391,2,2,246,248],[392,1,1,248,249],[395,3,3,249,252],[396,2,2,252,254],[397,1,1,254,255],[399,2,2,255,257],[400,2,2,257,259],[401,3,3,259,262]]],[14,10,10,262,272,[[404,2,2,262,264],[405,3,3,264,267],[411,2,2,267,269],[412,3,3,269,272]]],[15,27,24,272,296,[[415,6,6,272,278],[416,3,2,278,280],[418,2,2,280,282],[419,4,3,282,285],[420,3,2,285,287],[421,1,1,287,288],[422,1,1,288,289],[424,4,4,289,293],[425,3,3,293,296]]],[16,12,12,296,308,[[428,1,1,296,297],[429,2,2,297,299],[430,2,2,299,301],[431,1,1,301,302],[432,2,2,302,304],[433,2,2,304,306],[434,2,2,306,308]]],[17,8,8,308,316,[[439,1,1,308,309],[443,1,1,309,310],[449,1,1,310,311],[464,1,1,311,312],[465,1,1,312,313],[467,1,1,313,314],[469,1,1,314,315],[472,1,1,315,316]]],[18,32,31,316,347,[[478,1,1,316,317],[487,1,1,317,318],[495,1,1,318,319],[496,1,1,319,320],[503,1,1,320,321],[507,1,1,321,322],[508,1,1,322,323],[510,2,2,323,325],[515,2,1,325,326],[553,1,1,326,327],[579,1,1,327,328],[581,1,1,328,329],[582,1,1,329,330],[583,2,2,330,332],[584,1,1,332,333],[586,2,2,333,335],[588,2,2,335,337],[589,2,2,337,339],[596,2,2,339,341],[599,1,1,341,342],[607,1,1,342,343],[611,1,1,343,344],[612,1,1,344,345],[624,1,1,345,346],[625,1,1,346,347]]],[19,4,4,347,351,[[639,1,1,347,348],[652,1,1,348,349],[654,1,1,349,350],[656,1,1,350,351]]],[20,5,5,351,356,[[659,1,1,351,352],[660,1,1,352,353],[662,2,2,353,355],[666,1,1,355,356]]],[21,1,1,356,357,[[672,1,1,356,357]]],[22,18,17,357,374,[[681,1,1,357,358],[684,1,1,358,359],[688,1,1,359,360],[689,1,1,360,361],[699,2,2,361,363],[714,2,2,363,365],[722,1,1,365,366],[724,1,1,366,367],[725,2,2,367,369],[726,1,1,369,370],[728,1,1,370,371],[737,1,1,371,372],[739,1,1,372,373],[744,2,1,373,374]]],[23,28,28,374,402,[[748,1,1,374,375],[750,1,1,375,376],[751,2,2,376,378],[758,1,1,378,379],[759,2,2,379,381],[761,1,1,381,382],[762,1,1,382,383],[763,1,1,383,384],[767,2,2,384,386],[770,1,1,386,387],[772,1,1,387,388],[776,1,1,388,389],[779,1,1,389,390],[780,1,1,390,391],[784,1,1,391,392],[788,1,1,392,393],[790,2,2,393,395],[792,3,3,395,398],[793,1,1,398,399],[794,1,1,399,400],[795,1,1,400,401],[796,1,1,401,402]]],[25,35,32,402,434,[[802,4,3,402,405],[803,2,2,405,407],[804,2,2,407,409],[809,2,1,409,410],[810,1,1,410,411],[811,6,5,411,416],[812,1,1,416,417],[814,1,1,417,418],[818,1,1,418,419],[822,1,1,419,420],[823,2,2,420,422],[825,1,1,422,423],[828,1,1,423,424],[832,1,1,424,425],[834,1,1,425,426],[838,1,1,426,427],[841,1,1,427,428],[844,1,1,428,429],[845,3,3,429,432],[847,1,1,432,433],[848,1,1,433,434]]],[26,43,37,434,471,[[850,3,3,434,437],[851,1,1,437,438],[857,10,9,438,447],[859,5,4,447,451],[860,20,17,451,468],[861,4,3,468,471]]],[27,2,2,471,473,[[871,1,1,471,472],[874,1,1,472,473]]],[29,1,1,473,474,[[880,1,1,473,474]]],[30,2,2,474,476,[[888,2,2,474,476]]],[31,1,1,476,477,[[889,1,1,476,477]]],[32,1,1,477,478,[[897,1,1,477,478]]],[33,3,2,478,480,[[900,1,1,478,479],[901,2,1,479,480]]],[34,3,3,480,483,[[904,1,1,480,481],[905,2,2,481,483]]],[36,1,1,483,484,[[910,1,1,483,484]]],[37,12,11,484,495,[[911,3,3,484,487],[913,6,5,487,492],[914,1,1,492,493],[924,2,2,493,495]]],[38,1,1,495,496,[[927,1,1,495,496]]]],[432,446,474,484,621,622,830,839,1196,1198,1212,1241,1305,1359,1367,1427,1584,1732,1752,1753,1758,1770,1908,1989,2012,2022,2069,2072,2098,2250,2464,2482,2483,2586,2958,3057,3075,3080,3089,3122,3208,3211,3274,3297,3578,3581,3609,3698,3808,3810,3822,3852,3952,3973,4048,4064,4122,4203,4212,4242,4399,4401,4556,4573,4575,4576,4857,4930,5014,5015,5058,5084,5194,5196,5376,5389,5391,5423,5536,5555,5597,5598,5694,5743,5901,5906,5909,5910,5920,5947,5949,6035,6072,6077,6083,6120,6298,6376,6378,6381,6425,6469,6559,6587,6619,6685,6715,6761,6789,6798,6974,7082,7156,7345,7351,7418,7517,7616,7617,7621,7626,7644,7669,7709,7726,7768,7918,7987,7988,8031,8032,8072,8074,8077,8391,8406,8466,8482,8508,8558,8565,8566,8569,8636,8719,8745,8831,8832,8959,8996,8999,9007,9040,9087,9098,9099,9157,9159,9183,9185,9208,9209,9212,9253,9318,9356,9398,9400,9446,9499,9501,9515,9558,9564,9590,9597,9609,9615,9618,9656,9658,9662,9663,9672,9705,9736,9738,9773,9797,9802,9840,9843,9877,9889,9945,10041,10052,10168,10485,10486,10487,10493,10807,10808,10837,10877,10930,10935,10949,10950,10966,11013,11242,11250,11280,11282,11285,11294,11295,11330,11360,11371,11372,11382,11383,11401,11403,11429,11436,11560,11562,11576,11581,11584,11592,11596,11600,11604,11607,11608,11610,11666,11669,11675,11690,11697,11709,11718,11750,11802,11816,11817,11832,11843,11856,11916,11927,11964,11965,11968,11971,11976,12090,12095,12105,12106,12107,12246,12252,12265,12266,12267,12328,12330,12333,12340,12341,12342,12368,12372,12402,12408,12421,12423,12485,12497,12498,12513,12581,12655,12663,12664,12668,12682,12690,12701,12751,12767,12776,12780,12781,12798,12814,12816,12821,12828,12836,12850,12946,13044,13183,13540,13577,13644,13707,13783,13940,14042,14151,14177,14285,14326,14339,14375,14377,14501,15088,15547,15577,15616,15674,15681,15724,15761,15786,15796,15803,15806,15812,15988,15989,16091,16143,16173,16177,16368,16377,16726,17119,17173,17228,17319,17342,17393,17396,17461,17563,17720,17771,17882,17894,18041,18043,18332,18343,18544,18593,18611,18612,18627,18670,18814,18848,18944,19033,19105,19121,19129,19299,19316,19334,19376,19404,19421,19502,19506,19574,19623,19745,19842,19863,19951,20025,20060,20066,20091,20099,20125,20146,20210,20262,20288,20485,20488,20489,20493,20494,20525,20526,20615,20624,20636,20639,20650,20651,20652,20678,20713,20839,20965,20990,21006,21067,21150,21244,21306,21407,21480,21578,21610,21614,21623,21657,21689,21741,21742,21756,21760,21964,21965,21967,21968,21976,21979,21983,21984,21986,22026,22028,22031,22032,22037,22038,22039,22040,22042,22043,22044,22047,22049,22050,22051,22052,22053,22056,22057,22061,22067,22082,22086,22094,22234,22279,22394,22521,22524,22546,22637,22690,22707,22749,22774,22779,22860,22886,22888,22889,22913,22915,22916,22917,22919,22936,23072,23080,23122]]],["+",[29,29,[[0,1,1,0,1,[[18,1,1,0,1]]],[2,2,2,1,3,[[103,1,1,1,2],[116,1,1,2,3]]],[3,3,3,3,6,[[121,2,2,3,5],[124,1,1,5,6]]],[8,1,1,6,7,[[244,1,1,6,7]]],[10,2,2,7,9,[[302,1,1,7,8],[305,1,1,8,9]]],[11,1,1,9,10,[[320,1,1,9,10]]],[12,2,2,10,12,[[352,2,2,10,12]]],[13,7,7,12,19,[[377,1,1,12,13],[384,1,1,13,14],[389,1,1,14,15],[390,1,1,15,16],[392,1,1,16,17],[395,1,1,17,18],[397,1,1,18,19]]],[14,2,2,19,21,[[405,1,1,19,20],[411,1,1,20,21]]],[15,1,1,21,22,[[416,1,1,21,22]]],[18,1,1,22,23,[[612,1,1,22,23]]],[20,1,1,23,24,[[662,1,1,23,24]]],[23,3,3,24,27,[[784,1,1,24,25],[795,1,1,25,26],[796,1,1,26,27]]],[25,1,1,27,28,[[844,1,1,27,28]]],[26,1,1,28,29,[[859,1,1,28,29]]]],[484,3122,3581,3810,3822,3952,7418,9157,9253,9738,10807,10808,11436,11576,11666,11690,11750,11816,11856,12105,12246,12372,16177,17393,19951,20262,20288,21578,22028]]],["Stand",[7,7,[[6,1,1,0,1,[[214,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]],[22,1,1,2,3,[[725,1,1,2,3]]],[23,3,3,3,6,[[750,1,1,3,4],[751,1,1,4,5],[770,1,1,5,6]]],[33,1,1,6,7,[[901,1,1,6,7]]]],[6619,8031,18611,19105,19121,19574,22707]]],["abide",[2,1,[[5,2,1,0,1,[[204,2,1,0,1]]]],[6298]]],["abideth",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[20,1,1,1,2,[[659,1,1,1,2]]]],[15988,17319]]],["aloof",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14501]]],["appoint",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12423]]],["appointed",[7,7,[[13,3,3,0,3,[[374,1,1,0,1],[386,1,1,1,2],[399,1,1,2,3]]],[15,3,3,3,6,[[418,1,1,3,4],[424,1,1,4,5],[425,1,1,5,6]]],[16,1,1,6,7,[[429,1,1,6,7]]]],[11360,11608,11916,12408,12655,12701,12767]]],["arise",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12776]]],["arose",[1,1,[[12,1,1,0,1,[[357,1,1,0,1]]]],[10930]]],["behind",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7988]]],["by",[2,2,[[23,1,1,0,1,[[788,1,1,0,1]]],[37,1,1,1,2,[[913,1,1,1,2]]]],[20025,22917]]],["ceased",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22546]]],["confirmed",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[10837,15616]]],["continue",[4,4,[[1,1,1,0,1,[[70,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[23,1,1,2,3,[[776,1,1,2,3]]],[26,1,1,3,4,[[860,1,1,3,4]]]],[2098,15989,19745,22044]]],["continued",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7156]]],["continueth",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13183]]],["dwell",[1,1,[[1,1,1,0,1,[[57,1,1,0,1]]]],[1732]]],["employed",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12267]]],["endure",[3,3,[[1,1,1,0,1,[[67,1,1,0,1]]],[18,1,1,1,2,[[579,1,1,1,2]]],[25,1,1,2,3,[[823,1,1,2,3]]]],[2022,15547,20990]]],["endureth",[4,4,[[18,4,4,0,4,[[588,2,2,0,2],[589,2,2,2,4]]]],[15796,15803,15806,15812]]],["enduring",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14177]]],["establish",[2,2,[[13,1,1,0,1,[[375,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[11372,22050]]],["established",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11832]]],["establisheth",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17228]]],["fast",[1,1,[[18,1,1,0,1,[[510,1,1,0,1]]]],[14375]]],["forth",[2,2,[[26,2,2,0,2,[[860,2,2,0,2]]]],[22047,22049]]],["himself",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3578]]],["left",[2,2,[[0,2,2,0,2,[[28,1,1,0,1],[29,1,1,1,2]]]],[830,839]]],["made",[2,2,[[13,1,1,0,1,[[391,1,1,0,1]]],[15,1,1,1,2,[[422,1,1,1,2]]]],[11709,12581]]],["ordained",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11429]]],["over",[1,1,[[3,1,1,0,1,[[123,1,1,0,1]]]],[3852]]],["placed",[1,1,[[10,1,1,0,1,[[302,1,1,0,1]]]],[9183]]],["present",[3,3,[[2,1,1,0,1,[[105,1,1,0,1]]],[3,1,1,1,2,[[119,1,1,1,2]]],[9,1,1,2,3,[[286,1,1,2,3]]]],[3208,3698,8558]]],["presented",[1,1,[[2,1,1,0,1,[[105,1,1,0,1]]]],[3211]]],["raiseth",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15724]]],["remain",[3,2,[[22,3,2,0,2,[[688,1,1,0,1],[744,2,1,1,2]]]],[17882,18944]]],["remained",[4,4,[[11,1,1,0,1,[[325,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]],[26,1,1,3,4,[[859,1,1,3,4]]]],[9877,17342,20091,22032]]],["remaineth",[1,1,[[36,1,1,0,1,[[910,1,1,0,1]]]],[22860]]],["set",[24,24,[[0,1,1,0,1,[[46,1,1,0,1]]],[3,4,4,1,5,[[121,1,1,1,2],[127,1,1,2,3],[143,2,2,3,5]]],[6,1,1,5,6,[[226,1,1,5,6]]],[12,2,2,6,8,[[343,1,1,6,7],[359,1,1,7,8]]],[13,4,4,8,12,[[385,2,2,8,10],[389,1,1,10,11],[401,1,1,11,12]]],[14,1,1,12,13,[[405,1,1,12,13]]],[15,4,4,13,17,[[416,2,2,13,15],[425,2,2,15,17]]],[17,1,1,17,18,[[469,1,1,17,18]]],[18,1,1,18,19,[[508,1,1,18,19]]],[22,1,1,19,20,[[699,1,1,19,20]]],[25,3,3,20,23,[[803,1,1,20,21],[804,1,1,21,22],[825,1,1,22,23]]],[26,1,1,23,24,[[857,1,1,23,24]]]],[1427,3808,4048,4573,4576,6974,10485,10966,11581,11584,11675,11968,12107,12368,12372,12682,12690,13707,14339,18041,20494,20526,21067,21979]]],["setteth",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8636,14151]]],["settle",[1,1,[[12,1,1,0,1,[[354,1,1,0,1]]]],[10877]]],["stablished",[1,1,[[18,1,1,0,1,[[625,1,1,0,1]]]],[16377]]],["stand",[113,112,[[1,3,3,0,3,[[58,1,1,0,1],[66,1,1,1,2],[82,1,1,2,3]]],[2,2,2,3,5,[[107,1,1,3,4],[108,1,1,4,5]]],[3,4,4,5,9,[[117,1,1,5,6],[132,1,1,6,7],[143,1,1,7,8],[151,1,1,8,9]]],[4,9,9,9,18,[[157,1,1,9,10],[162,1,1,10,11],[170,2,2,11,13],[171,1,1,13,14],[176,1,1,14,15],[177,1,1,15,16],[179,2,2,16,18]]],[5,5,5,18,23,[[189,1,1,18,19],[196,1,1,19,20],[206,2,2,20,22],[209,1,1,22,23]]],[6,1,1,23,24,[[212,1,1,23,24]]],[8,3,3,24,27,[[241,1,1,24,25],[251,1,1,25,26],[254,1,1,26,27]]],[10,6,6,27,33,[[291,1,1,27,28],[298,1,1,28,29],[300,1,1,29,30],[307,1,1,30,31],[308,1,1,31,32],[309,1,1,32,33]]],[11,5,5,33,38,[[315,1,1,33,34],[317,2,2,34,36],[318,1,1,36,37],[322,1,1,37,38]]],[12,2,2,38,40,[[358,1,1,38,39],[360,1,1,39,40]]],[13,7,7,40,47,[[371,1,1,40,41],[375,1,1,41,42],[386,2,2,42,44],[395,1,1,44,45],[400,1,1,45,46],[401,1,1,46,47]]],[14,3,3,47,50,[[411,1,1,47,48],[412,2,2,48,50]]],[15,1,1,50,51,[[419,1,1,50,51]]],[16,2,2,51,53,[[428,1,1,51,52],[433,1,1,52,53]]],[17,1,1,53,54,[[443,1,1,53,54]]],[18,9,9,54,63,[[507,1,1,54,55],[515,1,1,55,56],[553,1,1,56,57],[586,2,2,57,59],[599,1,1,59,60],[607,1,1,60,61],[611,1,1,61,62],[624,1,1,62,63]]],[19,3,3,63,66,[[639,1,1,63,64],[652,1,1,64,65],[654,1,1,65,66]]],[20,1,1,66,67,[[666,1,1,66,67]]],[22,4,4,67,71,[[689,1,1,67,68],[699,1,1,68,69],[728,1,1,69,70],[739,1,1,70,71]]],[23,9,9,71,80,[[751,1,1,71,72],[758,1,1,72,73],[759,1,1,73,74],[761,1,1,74,75],[779,1,1,75,76],[790,1,1,76,77],[792,1,1,77,78],[793,1,1,78,79],[794,1,1,79,80]]],[25,11,11,80,91,[[803,1,1,80,81],[814,1,1,81,82],[818,1,1,82,83],[823,1,1,83,84],[828,1,1,84,85],[834,1,1,85,86],[845,3,3,86,89],[847,1,1,89,90],[848,1,1,90,91]]],[26,12,11,91,102,[[850,2,2,91,93],[857,2,2,93,95],[859,1,1,95,96],[860,6,5,96,101],[861,1,1,101,102]]],[29,1,1,102,103,[[880,1,1,102,103]]],[32,1,1,103,104,[[897,1,1,103,104]]],[33,2,2,104,106,[[900,1,1,104,105],[901,1,1,105,106]]],[34,1,1,106,107,[[904,1,1,106,107]]],[37,4,4,107,111,[[913,1,1,107,108],[914,1,1,108,109],[924,2,2,109,111]]],[38,1,1,111,112,[[927,1,1,111,112]]]],[1753,1989,2483,3274,3297,3609,4203,4575,4857,5084,5194,5389,5391,5423,5536,5555,5597,5598,5906,6072,6376,6378,6469,6559,7351,7617,7709,8719,8996,9087,9318,9356,9398,9590,9658,9663,9705,9797,10950,11013,11282,11371,11596,11604,11802,11965,11971,12252,12265,12266,12423,12751,12828,13044,14326,14501,15088,15761,15786,16091,16143,16173,16368,16726,17119,17173,17461,17894,18043,18670,18848,19129,19299,19334,19376,19842,20066,20099,20146,20210,20493,20713,20839,21006,21150,21306,21610,21614,21623,21657,21689,21741,21742,21965,21968,22026,22042,22052,22053,22061,22067,22094,22394,22637,22690,22707,22749,22919,22936,23072,23080,23122]]],["standest",[4,4,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,1,1,1,2,[[52,1,1,1,2]]],[5,1,1,2,3,[[191,1,1,2,3]]],[18,1,1,3,4,[[487,1,1,3,4]]]],[622,1584,5949,14042]]],["standeth",[14,14,[[3,1,1,0,1,[[130,1,1,0,1]]],[4,3,3,1,4,[[153,1,1,1,2],[169,1,1,2,3],[181,1,1,3,4]]],[16,2,2,4,6,[[431,1,1,4,5],[432,1,1,5,6]]],[18,3,3,6,9,[[478,1,1,6,7],[503,1,1,7,8],[510,1,1,8,9]]],[21,1,1,9,10,[[672,1,1,9,10]]],[22,3,3,10,13,[[681,1,1,10,11],[724,1,1,11,12],[737,1,1,12,13]]],[26,1,1,13,14,[[861,1,1,13,14]]]],[4122,4930,5376,5694,12798,12816,13940,14285,14377,17563,17720,18593,18814,22082]]],["standing",[10,9,[[8,1,1,0,1,[[254,1,1,0,1]]],[10,3,3,1,4,[[303,2,2,1,3],[312,1,1,3,4]]],[13,2,2,4,6,[[375,1,1,4,5],[384,1,1,5,6]]],[16,1,1,6,7,[[430,1,1,6,7]]],[26,1,1,7,8,[[857,1,1,7,8]]],[37,2,1,8,9,[[913,2,1,8,9]]]],[7726,9209,9212,9499,11382,11560,12781,21967,22913]]],["stay",[10,10,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,1,1,1,2,[[58,1,1,1,2]]],[2,4,4,2,6,[[102,4,4,2,6]]],[5,1,1,6,7,[[196,1,1,6,7]]],[8,1,1,7,8,[[255,1,1,7,8]]],[23,1,1,8,9,[[748,1,1,8,9]]],[27,1,1,9,10,[[874,1,1,9,10]]]],[474,1770,3057,3075,3080,3089,6083,7768,19033,22279]]],["stayed",[7,7,[[4,1,1,0,1,[[162,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[8,1,1,2,3,[[265,1,1,2,3]]],[9,1,1,3,4,[[283,1,1,3,4]]],[11,3,3,4,7,[[316,1,1,4,5],[325,1,1,5,6],[327,1,1,6,7]]]],[5196,6077,7987,8466,9609,9889,9945]]],["still",[13,12,[[3,1,1,0,1,[[125,1,1,0,1]]],[5,2,2,1,3,[[189,1,1,1,2],[197,1,1,2,3]]],[8,1,1,3,4,[[249,1,1,3,4]]],[9,4,3,4,7,[[268,1,1,4,5],[284,1,1,5,6],[286,2,1,6,7]]],[15,1,1,7,8,[[424,1,1,7,8]]],[17,3,3,8,11,[[439,1,1,8,9],[467,1,1,9,10],[472,1,1,10,11]]],[34,1,1,11,12,[[905,1,1,11,12]]]],[3973,5901,6120,7517,8072,8508,8566,12663,12946,13644,13783,22779]]],["stood",[168,160,[[0,9,9,0,9,[[17,2,2,0,2],[23,1,1,2,3],[40,4,4,3,7],[42,1,1,7,8],[44,1,1,8,9]]],[1,7,7,9,16,[[58,1,1,9,10],[63,1,1,10,11],[67,1,1,11,12],[69,2,2,12,14],[81,1,1,14,15],[82,1,1,15,16]]],[2,1,1,16,17,[[98,1,1,16,17]]],[3,6,6,17,23,[[128,1,1,17,18],[132,2,2,18,20],[138,2,2,20,22],[143,1,1,22,23]]],[4,3,3,23,26,[[156,1,1,23,24],[157,1,1,24,25],[183,1,1,25,26]]],[5,8,8,26,34,[[189,2,2,26,28],[190,1,1,28,29],[191,1,1,29,30],[194,1,1,30,31],[196,1,1,31,32],[206,1,1,32,33],[207,1,1,33,34]]],[6,7,7,34,41,[[213,1,1,34,35],[216,1,1,35,36],[217,1,1,36,37],[219,3,3,37,40],[230,1,1,40,41]]],[8,8,7,41,48,[[241,1,1,41,42],[251,1,1,42,43],[252,5,4,43,47],[261,1,1,47,48]]],[9,7,7,48,55,[[267,1,1,48,49],[268,2,2,49,51],[281,1,1,51,52],[284,1,1,52,53],[286,2,2,53,55]]],[10,15,14,55,69,[[291,1,1,55,56],[293,2,2,56,58],[297,1,1,58,59],[298,3,3,59,62],[300,2,2,62,64],[302,1,1,64,65],[303,3,2,65,67],[309,1,1,67,68],[312,1,1,68,69]]],[11,19,17,69,86,[[314,3,2,69,71],[315,1,1,71,72],[316,2,2,72,74],[317,3,3,74,77],[320,1,1,77,78],[321,1,1,78,79],[322,2,2,79,81],[323,2,2,81,83],[330,2,2,83,85],[335,2,1,85,86]]],[12,2,2,86,88,[[343,1,1,86,87],[358,1,1,87,88]]],[13,20,20,88,108,[[369,1,1,88,89],[370,1,1,89,90],[371,1,1,90,91],[372,3,3,91,94],[373,1,1,94,95],[375,1,1,95,96],[376,2,2,96,98],[384,1,1,98,99],[386,3,3,99,102],[389,1,1,102,103],[390,1,1,103,104],[395,1,1,104,105],[396,1,1,105,106],[400,1,1,106,107],[401,1,1,107,108]]],[14,1,1,108,109,[[405,1,1,108,109]]],[15,5,4,109,113,[[419,1,1,109,110],[420,2,1,110,111],[421,1,1,111,112],[424,1,1,112,113]]],[16,3,3,113,116,[[430,1,1,113,114],[433,1,1,114,115],[434,1,1,115,116]]],[18,2,2,116,118,[[581,1,1,116,117],[583,1,1,117,118]]],[22,3,3,118,121,[[684,1,1,118,119],[714,2,2,119,121]]],[23,9,9,121,130,[[759,1,1,121,122],[762,1,1,122,123],[763,1,1,123,124],[767,2,2,124,126],[772,1,1,126,127],[780,1,1,127,128],[790,1,1,128,129],[792,1,1,129,130]]],[25,17,14,130,144,[[802,4,3,130,133],[804,1,1,133,134],[809,2,1,134,135],[810,1,1,135,136],[811,6,5,136,141],[812,1,1,141,142],[822,1,1,142,143],[841,1,1,143,144]]],[26,8,8,144,152,[[850,1,1,144,145],[851,1,1,145,146],[857,2,2,146,148],[859,2,2,148,150],[860,1,1,150,151],[861,1,1,151,152]]],[27,1,1,152,153,[[871,1,1,152,153]]],[30,1,1,153,154,[[888,1,1,153,154]]],[34,1,1,154,155,[[905,1,1,154,155]]],[37,5,5,155,160,[[911,3,3,155,158],[913,2,2,158,160]]]],[432,446,621,1196,1198,1212,1241,1305,1359,1752,1908,2012,2069,2072,2464,2482,2958,4064,4212,4242,4399,4401,4556,5015,5058,5743,5909,5910,5920,5947,6035,6077,6381,6425,6587,6685,6715,6761,6789,6798,7082,7345,7616,7621,7626,7644,7669,7918,8032,8074,8077,8391,8482,8565,8569,8745,8831,8832,8959,8999,9007,9040,9098,9099,9159,9185,9208,9400,9501,9558,9564,9597,9615,9618,9656,9662,9672,9736,9773,9797,9802,9840,9843,10041,10052,10168,10493,10949,11242,11250,11280,11285,11294,11295,11330,11383,11401,11403,11562,11592,11600,11607,11669,11697,11817,11843,11964,11976,12106,12485,12497,12513,12664,12780,12821,12850,15577,15674,17771,18332,18343,19316,19404,19421,19502,19506,19623,19863,20060,20125,20485,20488,20489,20525,20615,20624,20636,20639,20650,20651,20652,20678,20965,21480,21756,21760,21964,21976,22026,22031,22037,22086,22234,22524,22774,22886,22888,22889,22915,22916]]],["stoodest",[2,2,[[4,1,1,0,1,[[156,1,1,0,1]]],[30,1,1,1,2,[[888,1,1,1,2]]]],[5014,22521]]],["tarried",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8406]]],["tarry",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1367]]],["up",[41,40,[[1,3,3,0,3,[[58,1,1,0,1],[75,1,1,1,2],[85,1,1,2,3]]],[10,1,1,3,4,[[312,1,1,3,4]]],[12,1,1,4,5,[[358,1,1,4,5]]],[13,3,3,5,8,[[386,1,1,5,6],[391,1,1,6,7],[399,1,1,7,8]]],[14,2,2,8,10,[[404,2,2,8,10]]],[15,9,9,10,19,[[415,6,6,10,16],[418,1,1,16,17],[419,1,1,17,18],[420,1,1,18,19]]],[16,1,1,19,20,[[432,1,1,19,20]]],[17,2,2,20,22,[[464,1,1,20,21],[465,1,1,21,22]]],[18,1,1,22,23,[[583,1,1,22,23]]],[20,1,1,23,24,[[662,1,1,23,24]]],[22,3,3,24,27,[[722,1,1,24,25],[725,1,1,25,26],[726,1,1,26,27]]],[25,2,2,27,29,[[832,1,1,27,28],[838,1,1,28,29]]],[26,12,11,29,40,[[857,4,3,29,32],[860,7,7,32,39],[861,1,1,39,40]]]],[1758,2250,2586,9515,10935,11610,11718,11927,12090,12095,12328,12330,12333,12340,12341,12342,12402,12421,12498,12814,13540,13577,15681,17396,18544,18612,18627,21244,21407,21983,21984,21986,22038,22039,22040,22043,22050,22056,22057,22082]]],["waited",[5,5,[[10,1,1,0,1,[[310,1,1,0,1]]],[12,2,2,1,3,[[343,2,2,1,3]]],[13,1,1,3,4,[[373,1,1,3,4]]],[15,1,1,4,5,[[424,1,1,4,5]]]],[9446,10486,10487,11330,12668]]],["withstand",[3,2,[[16,1,1,0,1,[[434,1,1,0,1]]],[26,2,1,1,2,[[860,2,1,1,2]]]],[12836,22051]]]]},{"k":"H5976","v":[["stand",[1,1,[[25,1,1,0,1,[[830,1,1,0,1]]]],[21190]]]]},{"k":"H5977","v":[["*",[9,9,[[13,3,3,0,3,[[396,1,1,0,1],[400,1,1,1,2],[401,1,1,2,3]]],[15,3,3,3,6,[[420,1,1,3,4],[421,1,1,4,5],[425,1,1,5,6]]],[26,3,3,6,9,[[857,2,2,6,8],[859,1,1,8,9]]]],[11843,11964,11976,12500,12514,12682,21978,21979,22026]]],["+",[2,2,[[26,2,2,0,2,[[857,1,1,0,1],[859,1,1,1,2]]]],[21979,22026]]],["place",[6,6,[[13,3,3,0,3,[[396,1,1,0,1],[400,1,1,1,2],[401,1,1,2,3]]],[15,3,3,3,6,[[420,1,1,3,4],[421,1,1,4,5],[425,1,1,5,6]]]],[11843,11964,11976,12500,12514,12682]]],["stood",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21978]]]]},{"k":"H5978","v":[["*",[24,24,[[0,2,2,0,2,[[20,1,1,0,1],[30,1,1,1,2]]],[1,1,1,2,3,[[66,1,1,2,3]]],[4,3,3,3,6,[[157,1,1,3,4],[184,2,2,4,6]]],[6,1,1,6,7,[[227,1,1,6,7]]],[17,13,13,7,20,[[441,1,1,7,8],[444,1,1,8,9],[445,1,1,9,10],[448,2,2,10,12],[452,1,1,12,13],[458,2,2,13,15],[463,1,1,15,16],[464,3,3,16,19],[466,1,1,19,20]]],[18,4,4,20,24,[[500,1,1,20,21],[527,1,1,21,22],[532,1,1,22,23],[578,1,1,23,24]]]],[536,880,1985,5084,5792,5797,6990,12982,13086,13098,13172,13173,13262,13425,13429,13518,13537,13538,13552,13601,14239,14679,14750,15519]]],["+",[3,3,[[0,1,1,0,1,[[30,1,1,0,1]]],[17,2,2,1,3,[[445,1,1,1,2],[464,1,1,2,3]]]],[880,13098,13538]]],["against",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13425]]],["by",[1,1,[[4,1,1,0,1,[[157,1,1,0,1]]]],[5084]]],["in",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13552]]],["mine",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14679]]],["take",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13429]]],["unto",[2,2,[[0,1,1,0,1,[[20,1,1,0,1]]],[17,1,1,1,2,[[448,1,1,1,2]]]],[536,13173]]],["with",[13,13,[[1,1,1,0,1,[[66,1,1,0,1]]],[4,2,2,1,3,[[184,2,2,1,3]]],[6,1,1,3,4,[[227,1,1,3,4]]],[17,6,6,4,10,[[444,1,1,4,5],[448,1,1,5,6],[452,1,1,6,7],[463,1,1,7,8],[464,1,1,8,9],[466,1,1,9,10]]],[18,3,3,10,13,[[500,1,1,10,11],[532,1,1,11,12],[578,1,1,12,13]]]],[1985,5792,5797,6990,13086,13172,13262,13518,13537,13601,14239,14750,15519]]],["within",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12982]]]]},{"k":"H5979","v":[["standing",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22590]]]]},{"k":"H5980","v":[["*",[32,28,[[1,5,5,0,5,[[74,1,1,0,1],[77,1,1,1,2],[86,1,1,2,3],[87,1,1,3,4],[88,1,1,4,5]]],[2,1,1,5,6,[[92,1,1,5,6]]],[9,2,1,6,7,[[282,2,1,6,7]]],[10,1,1,7,8,[[297,1,1,7,8]]],[12,5,4,8,12,[[361,2,1,8,9],[362,1,1,9,10],[363,2,2,10,12]]],[15,1,1,12,13,[[424,1,1,12,13]]],[20,2,2,13,15,[[663,1,1,13,14],[665,1,1,14,15]]],[25,15,13,15,28,[[802,2,2,15,17],[804,3,2,17,19],[811,1,1,19,20],[812,1,1,20,21],[841,1,1,21,22],[843,1,1,22,23],[846,2,2,23,25],[849,4,3,25,28]]]],[2222,2320,2618,2651,2684,2787,8439,8954,11046,11054,11089,11093,12648,17413,17443,20484,20485,20510,20515,20652,20677,21495,21559,21636,21637,21715,21720,21723]]],["+",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[12,1,1,1,2,[[363,1,1,1,2]]]],[8954,11089]]],["against",[24,21,[[1,4,4,0,4,[[74,1,1,0,1],[77,1,1,1,2],[86,1,1,2,3],[88,1,1,3,4]]],[9,1,1,4,5,[[282,1,1,4,5]]],[12,4,3,5,8,[[361,2,1,5,6],[362,1,1,6,7],[363,1,1,7,8]]],[15,1,1,8,9,[[424,1,1,8,9]]],[20,1,1,9,10,[[665,1,1,9,10]]],[25,13,11,10,21,[[802,2,2,10,12],[804,3,2,12,14],[841,1,1,14,15],[843,1,1,15,16],[846,2,2,16,18],[849,4,3,18,21]]]],[2222,2320,2618,2684,8439,11046,11054,11093,12648,17443,20484,20485,20510,20515,21495,21559,21636,21637,21715,21720,21723]]],["at",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8439]]],["beside",[2,2,[[25,2,2,0,2,[[811,1,1,0,1],[812,1,1,1,2]]]],[20652,20677]]],["by",[1,1,[[2,1,1,0,1,[[92,1,1,0,1]]]],[2787]]],["points",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17413]]],["to",[1,1,[[1,1,1,0,1,[[87,1,1,0,1]]]],[2651]]]]},{"k":"H5981","v":[["Ummah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6351]]]]},{"k":"H5982","v":[["*",[111,84,[[1,39,30,0,30,[[62,4,2,0,2],[63,2,2,2,4],[75,2,2,4,6],[76,9,7,6,13],[82,2,2,13,15],[84,2,2,15,17],[85,2,2,17,19],[87,13,8,19,27],[88,2,2,27,29],[89,1,1,29,30]]],[3,7,6,30,36,[[119,2,2,30,32],[120,2,2,32,34],[128,1,1,34,35],[130,2,1,35,36]]],[4,2,1,36,37,[[183,2,1,36,37]]],[6,4,4,37,41,[[226,3,3,37,40],[230,1,1,40,41]]],[10,22,13,41,54,[[297,22,13,41,54]]],[11,6,5,54,59,[[323,1,1,54,55],[335,1,1,55,56],[337,4,3,56,59]]],[12,1,1,59,60,[[355,1,1,59,60]]],[13,8,6,60,66,[[369,3,3,60,63],[370,4,2,63,65],[389,1,1,65,66]]],[15,4,2,66,68,[[421,4,2,66,68]]],[16,1,1,68,69,[[426,1,1,68,69]]],[17,2,2,69,71,[[444,1,1,69,70],[461,1,1,70,71]]],[18,2,2,71,73,[[552,1,1,71,72],[576,1,1,72,73]]],[19,1,1,73,74,[[636,1,1,73,74]]],[21,2,2,74,76,[[673,1,1,74,75],[675,1,1,75,76]]],[23,7,6,76,82,[[745,1,1,76,77],[771,1,1,77,78],[796,5,4,78,82]]],[25,3,2,82,84,[[841,1,1,82,83],[843,2,1,83,84]]]],[1888,1889,1908,1913,2267,2272,2282,2283,2284,2286,2287,2288,2289,2482,2483,2542,2548,2602,2604,2643,2644,2645,2647,2648,2650,2652,2661,2697,2704,2725,3728,3729,3774,3775,4064,4122,5743,6974,6975,6978,7094,8936,8937,8940,8949,8950,8951,8952,8953,8954,8955,8956,8975,8976,9843,10168,10235,10238,10239,10898,11244,11245,11246,11258,11259,11669,12523,12530,12708,13057,13478,15074,15506,16639,17581,17613,18964,19615,20293,20296,20297,20298,21526,21558]]],["+",[2,1,[[10,2,1,0,1,[[297,2,1,0,1]]]],[8949]]],["pillar",[29,21,[[1,8,6,0,6,[[62,4,2,0,2],[63,2,2,2,4],[82,2,2,4,6]]],[3,3,2,6,8,[[128,1,1,6,7],[130,2,1,7,8]]],[4,2,1,8,9,[[183,2,1,8,9]]],[6,1,1,9,10,[[230,1,1,9,10]]],[10,2,1,10,11,[[297,2,1,10,11]]],[11,4,3,11,14,[[323,1,1,11,12],[335,1,1,12,13],[337,2,1,13,14]]],[13,1,1,14,15,[[389,1,1,14,15]]],[15,4,2,15,17,[[421,4,2,15,17]]],[18,1,1,17,18,[[576,1,1,17,18]]],[23,3,3,18,21,[[745,1,1,18,19],[796,2,2,19,21]]]],[1888,1889,1908,1913,2482,2483,4064,4122,5743,7094,8955,9843,10168,10239,11669,12523,12530,15506,18964,20297,20298]]],["pillars",[80,65,[[1,31,24,0,24,[[75,2,2,0,2],[76,9,7,2,9],[84,2,2,9,11],[85,2,2,11,13],[87,13,8,13,21],[88,2,2,21,23],[89,1,1,23,24]]],[3,4,4,24,28,[[119,2,2,24,26],[120,2,2,26,28]]],[6,3,3,28,31,[[226,3,3,28,31]]],[10,18,13,31,44,[[297,18,13,31,44]]],[11,2,2,44,46,[[337,2,2,44,46]]],[12,1,1,46,47,[[355,1,1,46,47]]],[13,7,5,47,52,[[369,3,3,47,50],[370,4,2,50,52]]],[16,1,1,52,53,[[426,1,1,52,53]]],[17,2,2,53,55,[[444,1,1,53,54],[461,1,1,54,55]]],[18,1,1,55,56,[[552,1,1,55,56]]],[19,1,1,56,57,[[636,1,1,56,57]]],[21,2,2,57,59,[[673,1,1,57,58],[675,1,1,58,59]]],[23,4,4,59,63,[[771,1,1,59,60],[796,3,3,60,63]]],[25,3,2,63,65,[[841,1,1,63,64],[843,2,1,64,65]]]],[2267,2272,2282,2283,2284,2286,2287,2288,2289,2542,2548,2602,2604,2643,2644,2645,2647,2648,2650,2652,2661,2697,2704,2725,3728,3729,3774,3775,6974,6975,6978,8936,8937,8940,8949,8950,8951,8952,8953,8954,8955,8956,8975,8976,10235,10238,10898,11244,11245,11246,11258,11259,12708,13057,13478,15074,16639,17581,17613,19615,20293,20296,20297,21526,21558]]]]},{"k":"H5983","v":[["*",[105,97,[[0,1,1,0,1,[[18,1,1,0,1]]],[3,2,1,1,2,[[137,2,1,1,2]]],[4,5,4,2,6,[[154,3,2,2,4],[155,2,2,4,6]]],[5,3,3,6,9,[[198,1,1,6,7],[199,2,2,7,9]]],[6,27,27,9,36,[[213,1,1,9,10],[220,6,6,10,16],[221,17,17,16,33],[222,3,3,33,36]]],[8,3,3,36,39,[[246,1,1,36,37],[247,1,1,37,38],[249,1,1,38,39]]],[9,17,15,39,54,[[274,1,1,39,40],[276,11,9,40,49],[277,1,1,49,50],[278,3,3,50,53],[283,1,1,53,54]]],[10,2,2,54,56,[[301,2,2,54,56]]],[11,2,2,56,58,[[335,1,1,56,57],[336,1,1,57,58]]],[12,14,13,58,71,[[355,1,1,58,59],[356,11,10,59,69],[357,2,2,69,71]]],[13,7,5,71,76,[[386,4,4,71,75],[393,3,1,75,76]]],[18,1,1,76,77,[[560,1,1,76,77]]],[22,1,1,77,78,[[689,1,1,77,78]]],[23,9,9,78,87,[[753,1,1,78,79],[769,1,1,79,80],[771,1,1,80,81],[784,2,2,81,83],[785,2,2,83,85],[793,2,2,85,87]]],[25,7,6,87,93,[[822,2,2,87,89],[826,5,4,89,93]]],[26,1,1,93,94,[[860,1,1,93,94]]],[29,1,1,94,95,[[879,1,1,94,95]]],[35,2,2,95,97,[[907,2,2,95,97]]]],[495,4364,4957,4975,4986,4991,6132,6164,6179,6581,6817,6818,6820,6822,6828,6829,6833,6834,6835,6837,6838,6841,6842,6843,6844,6856,6857,6858,6859,6860,6861,6862,6865,6870,6871,6872,7456,7472,7555,8221,8241,8242,8243,8246,8248,8250,8251,8254,8259,8260,8295,8312,8317,8476,9115,9141,10178,10204,10901,10908,10909,10910,10913,10914,10916,10918,10919,10922,10926,10927,10929,11588,11597,11609,11610,11760,15248,17898,19201,19555,19599,19952,19955,19967,19972,20129,20133,20964,20972,21085,21086,21088,21093,22077,22377,22813,22814]]],["+",[14,13,[[13,1,1,0,1,[[393,1,1,0,1]]],[23,6,6,1,7,[[771,1,1,1,2],[784,2,2,2,4],[785,2,2,4,6],[793,1,1,6,7]]],[25,7,6,7,13,[[822,2,2,7,9],[826,5,4,9,13]]]],[11760,19599,19952,19955,19967,19972,20129,20964,20972,21085,21086,21088,21093]]],["Ammon",[90,84,[[0,1,1,0,1,[[18,1,1,0,1]]],[3,2,1,1,2,[[137,2,1,1,2]]],[4,5,4,2,6,[[154,3,2,2,4],[155,2,2,4,6]]],[5,3,3,6,9,[[198,1,1,6,7],[199,2,2,7,9]]],[6,27,27,9,36,[[213,1,1,9,10],[220,6,6,10,16],[221,17,17,16,33],[222,3,3,33,36]]],[8,2,2,36,38,[[247,1,1,36,37],[249,1,1,37,38]]],[9,17,15,38,53,[[274,1,1,38,39],[276,11,9,39,48],[277,1,1,48,49],[278,3,3,49,52],[283,1,1,52,53]]],[10,2,2,53,55,[[301,2,2,53,55]]],[11,2,2,55,57,[[335,1,1,55,56],[336,1,1,56,57]]],[12,14,13,57,70,[[355,1,1,57,58],[356,11,10,58,68],[357,2,2,68,70]]],[13,6,5,70,75,[[386,4,4,70,74],[393,2,1,74,75]]],[18,1,1,75,76,[[560,1,1,75,76]]],[22,1,1,76,77,[[689,1,1,76,77]]],[23,3,3,77,80,[[753,1,1,77,78],[769,1,1,78,79],[793,1,1,79,80]]],[26,1,1,80,81,[[860,1,1,80,81]]],[29,1,1,81,82,[[879,1,1,81,82]]],[35,2,2,82,84,[[907,2,2,82,84]]]],[495,4364,4957,4975,4986,4991,6132,6164,6179,6581,6817,6818,6820,6822,6828,6829,6833,6834,6835,6837,6838,6841,6842,6843,6844,6856,6857,6858,6859,6860,6861,6862,6865,6870,6871,6872,7472,7555,8221,8241,8242,8243,8246,8248,8250,8251,8254,8259,8260,8295,8312,8317,8476,9115,9141,10178,10204,10901,10908,10909,10910,10913,10914,10916,10918,10919,10922,10926,10927,10929,11588,11597,11609,11610,11760,15248,17898,19201,19555,20133,22077,22377,22813,22814]]],["Ammonites",[1,1,[[8,1,1,0,1,[[246,1,1,0,1]]]],[7456]]]]},{"k":"H5984","v":[["*",[22,22,[[4,2,2,0,2,[[154,1,1,0,1],[175,1,1,1,2]]],[8,2,2,2,4,[[246,2,2,2,4]]],[9,1,1,4,5,[[289,1,1,4,5]]],[10,4,4,5,9,[[301,2,2,5,7],[304,2,2,7,9]]],[12,1,1,9,10,[[348,1,1,9,10]]],[13,4,4,10,14,[[378,1,1,10,11],[386,1,1,11,12],[390,1,1,12,13],[392,1,1,13,14]]],[14,1,1,14,15,[[411,1,1,14,15]]],[15,6,6,15,21,[[414,2,2,15,17],[416,2,2,17,19],[425,2,2,19,21]]],[23,1,1,21,22,[[793,1,1,21,22]]]],[4958,5503,7446,7447,8690,9109,9113,9239,9249,10712,11450,11588,11703,11740,12238,12317,12326,12362,12366,12672,12694,20128]]],["+",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20128]]],["Ammon",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12694]]],["Ammonite",[9,9,[[4,1,1,0,1,[[175,1,1,0,1]]],[8,2,2,1,3,[[246,2,2,1,3]]],[9,1,1,3,4,[[289,1,1,3,4]]],[12,1,1,4,5,[[348,1,1,4,5]]],[15,4,4,5,9,[[414,2,2,5,7],[416,1,1,7,8],[425,1,1,8,9]]]],[5503,7446,7447,8690,10712,12317,12326,12362,12672]]],["Ammonites",[7,7,[[4,1,1,0,1,[[154,1,1,0,1]]],[10,2,2,1,3,[[301,2,2,1,3]]],[13,2,2,3,5,[[386,1,1,3,4],[392,1,1,4,5]]],[14,1,1,5,6,[[411,1,1,5,6]]],[15,1,1,6,7,[[416,1,1,6,7]]]],[4958,9109,9113,11588,11740,12238,12366]]],["Ammonitess",[4,4,[[10,2,2,0,2,[[304,2,2,0,2]]],[13,2,2,2,4,[[378,1,1,2,3],[390,1,1,3,4]]]],[9239,9249,11450,11703]]]]},{"k":"H5985","v":[]},{"k":"H5986","v":[["Amos",[7,7,[[29,7,7,0,7,[[879,1,1,0,1],[885,5,5,1,6],[886,1,1,6,7]]]],[22365,22472,22474,22475,22476,22478,22483]]]]},{"k":"H5987","v":[["Amok",[2,2,[[15,2,2,0,2,[[424,2,2,0,2]]]],[12631,12644]]]]},{"k":"H5988","v":[["Ammiel",[6,6,[[3,1,1,0,1,[[129,1,1,0,1]]],[9,3,3,1,4,[[275,2,2,1,3],[283,1,1,3,4]]],[12,2,2,4,6,[[340,1,1,4,5],[363,1,1,5,6]]]],[4087,8231,8232,8476,10366,11082]]]]},{"k":"H5989","v":[["Ammihud",[10,10,[[3,7,7,0,7,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5],[150,2,2,5,7]]],[9,1,1,7,8,[[279,1,1,7,8]]],[12,2,2,8,10,[[344,1,1,8,9],[346,1,1,9,10]]]],[3614,3676,3898,3903,4010,4836,4844,8354,10561,10619]]]]},{"k":"H5990","v":[["Ammizabad",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11115]]]]},{"k":"H5991","v":[]},{"k":"H5992","v":[["Amminadab",[13,12,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,5,5,1,6,[[117,1,1,1,2],[118,1,1,2,3],[123,2,2,3,5],[126,1,1,5,6]]],[7,2,2,6,8,[[235,2,2,6,8]]],[12,5,4,8,12,[[339,2,1,8,9],[343,1,1,9,10],[352,2,2,10,12]]]],[1678,3611,3661,3862,3867,4002,7209,7210,10316,10476,10801,10802]]]]},{"k":"H5993","v":[]},{"k":"H5994","v":[["deep",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21780]]]]},{"k":"H5995","v":[["*",[4,4,[[23,1,1,0,1,[[753,1,1,0,1]]],[29,1,1,1,2,[[880,1,1,1,2]]],[32,1,1,2,3,[[896,1,1,2,3]]],[37,1,1,3,4,[[922,1,1,3,4]]]],[19197,22392,22632,23051]]],["handful",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19197]]],["sheaf",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23051]]],["sheaves",[2,2,[[29,1,1,0,1,[[880,1,1,0,1]]],[32,1,1,1,2,[[896,1,1,1,2]]]],[22392,22632]]]]},{"k":"H5996","v":[["Ammishaddai",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3616,3683,3916,3921,4013]]]]},{"k":"H5997","v":[["*",[12,10,[[2,11,9,0,9,[[95,2,1,0,1],[107,1,1,1,2],[108,3,3,2,5],[113,1,1,5,6],[114,4,3,6,9]]],[37,1,1,9,10,[[923,1,1,9,10]]]],[2851,3271,3292,3296,3298,3465,3483,3484,3486,23066]]],["+",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3483]]],["another",[2,2,[[2,2,2,0,2,[[108,1,1,0,1],[114,1,1,1,2]]]],[3292,3486]]],["fellow",[1,1,[[37,1,1,0,1,[[923,1,1,0,1]]]],[23066]]],["neighbour",[7,6,[[2,7,6,0,6,[[95,2,1,0,1],[108,2,2,1,3],[113,1,1,3,4],[114,2,2,4,6]]]],[2851,3296,3298,3465,3483,3484]]],["neighbour's",[1,1,[[2,1,1,0,1,[[107,1,1,0,1]]]],[3271]]]]},{"k":"H5998","v":[["*",[11,11,[[18,1,1,0,1,[[604,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]],[20,8,8,2,10,[[659,1,1,2,3],[660,4,4,3,7],[663,2,2,7,9],[666,1,1,9,10]]],[31,1,1,10,11,[[892,1,1,10,11]]]],[16122,16866,17318,17344,17352,17353,17354,17413,17415,17475,22578]]],["+",[6,6,[[20,6,6,0,6,[[659,1,1,0,1],[660,3,3,1,4],[663,2,2,4,6]]]],[17318,17344,17352,17353,17413,17415]]],["labour",[2,2,[[18,1,1,0,1,[[604,1,1,0,1]]],[20,1,1,1,2,[[666,1,1,1,2]]]],[16122,17475]]],["laboured",[2,2,[[20,1,1,0,1,[[660,1,1,0,1]]],[31,1,1,1,2,[[892,1,1,1,2]]]],[17354,22578]]],["laboureth",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16866]]]]},{"k":"H5999","v":[["*",[55,54,[[0,1,1,0,1,[[40,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[4,1,1,2,3,[[178,1,1,2,3]]],[6,1,1,3,4,[[220,1,1,3,4]]],[17,8,8,4,12,[[438,1,1,4,5],[439,1,1,5,6],[440,2,2,6,8],[442,1,1,8,9],[446,1,1,9,10],[450,1,1,10,11],[451,1,1,11,12]]],[18,13,13,12,25,[[484,2,2,12,14],[487,2,2,14,16],[502,1,1,16,17],[532,1,1,17,18],[550,2,2,18,20],[567,1,1,20,21],[571,1,1,21,22],[582,1,1,22,23],[584,1,1,23,24],[617,1,1,24,25]]],[19,2,2,25,27,[[651,1,1,25,26],[658,1,1,26,27]]],[20,22,21,27,48,[[659,1,1,27,28],[660,9,8,28,36],[661,1,1,36,37],[662,4,4,37,41],[663,3,3,41,44],[664,1,1,44,45],[666,1,1,45,46],[667,1,1,46,47],[668,1,1,47,48]]],[22,3,3,48,51,[[688,1,1,48,49],[731,1,1,49,50],[737,1,1,50,51]]],[23,1,1,51,52,[[764,1,1,51,52]]],[34,2,2,52,54,[[903,2,2,52,54]]]],[1246,4437,5573,6827,12914,12938,12957,12958,13011,13124,13238,13240,14009,14011,14048,14055,14269,14742,15025,15036,15388,15451,15650,15711,16272,17081,17291,17318,17343,17344,17351,17352,17353,17354,17355,17357,17372,17385,17387,17389,17390,17412,17415,17416,17424,17473,17484,17508,17851,18722,18804,19440,22734,22744]]],["+",[2,2,[[20,1,1,0,1,[[660,1,1,0,1]]],[22,1,1,1,2,[[731,1,1,1,2]]]],[17354,18722]]],["grievance",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22734]]],["grievousness",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17851]]],["iniquity",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22744]]],["labour",[24,23,[[4,1,1,0,1,[[178,1,1,0,1]]],[18,3,3,1,4,[[567,1,1,1,2],[582,1,1,2,3],[584,1,1,3,4]]],[20,19,18,4,22,[[659,1,1,4,5],[660,8,7,5,12],[661,1,1,12,13],[662,2,2,13,15],[663,3,3,15,18],[664,1,1,18,19],[666,1,1,19,20],[667,1,1,20,21],[668,1,1,21,22]]],[23,1,1,22,23,[[764,1,1,22,23]]]],[5573,15388,15650,15711,17318,17343,17344,17351,17352,17353,17355,17357,17372,17389,17390,17412,17415,17416,17424,17473,17484,17508,19440]]],["mischief",[9,9,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,6,6,1,7,[[484,2,2,1,3],[487,2,2,3,5],[571,1,1,5,6],[617,1,1,6,7]]],[19,1,1,7,8,[[651,1,1,7,8]]],[22,1,1,8,9,[[737,1,1,8,9]]]],[13238,14009,14011,14048,14055,15451,16272,17081,18804]]],["miserable",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13240]]],["misery",[3,3,[[6,1,1,0,1,[[220,1,1,0,1]]],[17,1,1,1,2,[[446,1,1,1,2]]],[19,1,1,2,3,[[658,1,1,2,3]]]],[6827,13124,17291]]],["pain",[1,1,[[18,1,1,0,1,[[502,1,1,0,1]]]],[14269]]],["painful",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15036]]],["perverseness",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4437]]],["sorrow",[2,2,[[17,1,1,0,1,[[438,1,1,0,1]]],[18,1,1,1,2,[[532,1,1,1,2]]]],[12914,14742]]],["toil",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1246]]],["travail",[2,2,[[20,2,2,0,2,[[662,2,2,0,2]]]],[17385,17387]]],["trouble",[3,3,[[17,2,2,0,2,[[440,2,2,0,2]]],[18,1,1,2,3,[[550,1,1,2,3]]]],[12957,12958,15025]]],["wearisome",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13011]]],["wickedness",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12938]]]]},{"k":"H6000","v":[["Amal",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10570]]]]},{"k":"H6001","v":[["*",[9,9,[[6,1,1,0,1,[[215,1,1,0,1]]],[17,2,2,1,3,[[438,1,1,1,2],[455,1,1,2,3]]],[19,1,1,3,4,[[643,1,1,3,4]]],[20,5,5,4,9,[[660,2,2,4,6],[661,1,1,6,7],[662,1,1,7,8],[667,1,1,8,9]]]],[6649,12924,13348,16866,17351,17355,17368,17389,17484]]],["labour",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17389]]],["laboured",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17355]]],["laboureth",[2,2,[[19,1,1,0,1,[[643,1,1,0,1]]],[20,1,1,1,2,[[661,1,1,1,2]]]],[16866,17368]]],["misery",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12924]]],["taken",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17351]]],["takest",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17484]]],["wicked",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13348]]],["workmen's",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6649]]]]},{"k":"H6002","v":[["*",[35,33,[[0,2,2,0,2,[[35,2,2,0,2]]],[1,7,7,2,9,[[66,7,7,2,9]]],[3,2,1,9,10,[[140,2,1,9,10]]],[4,2,2,10,12,[[177,2,2,10,12]]],[6,3,3,12,15,[[213,1,1,12,13],[215,1,1,13,14],[220,1,1,14,15]]],[8,13,12,15,27,[[249,1,1,15,16],[250,10,9,16,25],[263,1,1,25,26],[265,1,1,26,27]]],[9,2,2,27,29,[[267,1,1,27,28],[274,1,1,28,29]]],[12,3,3,29,32,[[338,1,1,29,30],[341,1,1,30,31],[355,1,1,31,32]]],[18,1,1,32,33,[[560,1,1,32,33]]]],[1052,1056,1991,1992,1993,1994,1996,1997,1999,4466,5564,5566,6581,6637,6823,7556,7562,7563,7565,7566,7567,7568,7578,7580,7592,7960,7996,8023,8221,10288,10428,10901,15248]]],["+",[2,2,[[9,1,1,0,1,[[274,1,1,0,1]]],[12,1,1,1,2,[[355,1,1,1,2]]]],[8221,10901]]],["Amalek",[22,21,[[0,2,2,0,2,[[35,2,2,0,2]]],[1,7,7,2,9,[[66,7,7,2,9]]],[3,2,1,9,10,[[140,2,1,9,10]]],[4,2,2,10,12,[[177,2,2,10,12]]],[6,2,2,12,14,[[213,1,1,12,13],[215,1,1,13,14]]],[8,5,5,14,19,[[250,4,4,14,18],[263,1,1,18,19]]],[12,1,1,19,20,[[338,1,1,19,20]]],[18,1,1,20,21,[[560,1,1,20,21]]]],[1052,1056,1991,1992,1993,1994,1996,1997,1999,4466,5564,5566,6581,6637,7562,7563,7565,7580,7960,10288,15248]]],["Amalekites",[11,11,[[6,1,1,0,1,[[220,1,1,0,1]]],[8,8,8,1,9,[[249,1,1,1,2],[250,6,6,2,8],[265,1,1,8,9]]],[9,1,1,9,10,[[267,1,1,9,10]]],[12,1,1,10,11,[[341,1,1,10,11]]]],[6823,7556,7566,7567,7568,7578,7580,7592,7996,8023,10428]]]]},{"k":"H6003","v":[["*",[16,16,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,4,4,1,5,[[129,1,1,1,2],[130,3,3,2,5]]],[6,4,4,5,9,[[216,2,2,5,7],[217,1,1,7,8],[222,1,1,8,9]]],[8,5,5,9,14,[[250,2,2,9,11],[262,1,1,11,12],[265,2,2,12,14]]],[9,2,2,14,16,[[267,2,2,14,16]]]],[343,4104,4133,4151,4153,6657,6687,6706,6884,7566,7575,7938,7979,7991,8030,8035]]],["+",[2,2,[[8,2,2,0,2,[[250,1,1,0,1],[265,1,1,1,2]]]],[7575,7991]]],["Amalekite",[2,2,[[9,2,2,0,2,[[267,2,2,0,2]]]],[8030,8035]]],["Amalekites",[12,12,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,4,4,1,5,[[129,1,1,1,2],[130,3,3,2,5]]],[6,4,4,5,9,[[216,2,2,5,7],[217,1,1,7,8],[222,1,1,8,9]]],[8,3,3,9,12,[[250,1,1,9,10],[262,1,1,10,11],[265,1,1,11,12]]]],[343,4104,4133,4151,4153,6657,6687,6706,6884,7566,7938,7979]]]]},{"k":"H6004","v":[["*",[3,3,[[24,1,1,0,1,[[800,1,1,0,1]]],[25,2,2,1,3,[[829,1,1,1,2],[832,1,1,2,3]]]],[20421,21160,21238]]],["dim",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20421]]],["hide",[2,2,[[25,2,2,0,2,[[829,1,1,0,1],[832,1,1,1,2]]]],[21160,21238]]]]},{"k":"H6005","v":[["Immanuel",[2,2,[[22,2,2,0,2,[[685,1,1,0,1],[686,1,1,1,2]]]],[17796,17815]]]]},{"k":"H6006","v":[["*",[9,9,[[0,1,1,0,1,[[43,1,1,0,1]]],[10,1,1,1,2,[[302,1,1,1,2]]],[13,1,1,2,3,[[376,1,1,2,3]]],[15,2,2,3,5,[[416,1,1,3,4],[425,1,1,4,5]]],[18,1,1,5,6,[[545,1,1,5,6]]],[22,2,2,6,8,[[724,2,2,6,8]]],[37,1,1,8,9,[[922,1,1,8,9]]]],[1337,9162,11406,12376,12686,14919,18587,18589,23048]]],["+",[2,2,[[10,1,1,0,1,[[302,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]]],[9162,12686]]],["borne",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18589]]],["burden",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23048]]],["laded",[2,2,[[0,1,1,0,1,[[43,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]]],[1337,12376]]],["loaden",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18587]]],["loadeth",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14919]]],["put",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11406]]]]},{"k":"H6007","v":[["Amasiah",[1,1,[[13,1,1,0,1,[[383,1,1,0,1]]]],[11539]]]]},{"k":"H6008","v":[["Amad",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6347]]]]},{"k":"H6009","v":[["*",[9,9,[[18,1,1,0,1,[[569,1,1,0,1]]],[22,4,4,1,5,[[685,1,1,1,2],[707,1,1,2,3],[708,1,1,3,4],[709,1,1,4,5]]],[23,2,2,5,7,[[793,2,2,5,7]]],[27,2,2,7,9,[[866,1,1,7,8],[870,1,1,8,9]]]],[15416,17793,18208,18250,18256,20135,20157,22154,22217]]],["deep",[5,5,[[18,1,1,0,1,[[569,1,1,0,1]]],[22,2,2,1,3,[[707,1,1,1,2],[708,1,1,2,3]]],[23,2,2,3,5,[[793,2,2,3,5]]]],[15416,18208,18250,20135,20157]]],["deeply",[2,2,[[22,1,1,0,1,[[709,1,1,0,1]]],[27,1,1,1,2,[[870,1,1,1,2]]]],[18256,22217]]],["depth",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17793]]],["profound",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22154]]]]},{"k":"H6010","v":[["*",[69,64,[[0,6,5,0,5,[[13,5,4,0,4],[36,1,1,4,5]]],[3,1,1,5,6,[[130,1,1,5,6]]],[5,12,11,6,17,[[193,2,2,6,8],[194,1,1,8,9],[196,1,1,9,10],[199,2,2,10,12],[201,2,2,12,14],[203,2,1,14,15],[204,2,2,15,17]]],[6,8,8,17,25,[[211,2,2,17,19],[215,1,1,19,20],[216,1,1,20,21],[217,3,3,21,24],[228,1,1,24,25]]],[8,5,5,25,30,[[241,1,1,25,26],[252,2,2,26,28],[256,1,1,28,29],[266,1,1,29,30]]],[9,4,4,30,34,[[271,2,2,30,32],[284,1,1,32,33],[289,1,1,33,34]]],[10,1,1,34,35,[[310,1,1,34,35]]],[12,6,6,35,41,[[347,1,1,35,36],[348,1,1,36,37],[349,1,1,37,38],[351,2,2,38,40],[364,1,1,40,41]]],[13,2,1,41,42,[[386,2,1,41,42]]],[17,2,2,42,44,[[474,2,2,42,44]]],[18,4,4,44,48,[[537,1,1,44,45],[542,1,1,45,46],[561,1,1,46,47],[585,1,1,47,48]]],[21,1,1,48,49,[[672,1,1,48,49]]],[22,4,4,49,53,[[695,1,1,49,50],[700,1,1,50,51],[706,1,1,51,52],[743,1,1,52,53]]],[23,6,5,53,58,[[765,1,1,53,54],[775,1,1,54,55],[791,1,1,55,56],[792,1,1,56,57],[793,2,1,57,58]]],[27,2,2,58,60,[[862,1,1,58,59],[863,1,1,59,60]]],[28,4,3,60,63,[[878,4,3,60,63]]],[32,1,1,63,64,[[893,1,1,63,64]]]],[339,344,346,353,1097,4133,6000,6002,6015,6076,6173,6181,6209,6210,6291,6309,6314,6528,6543,6638,6687,6695,6702,6706,7021,7344,7620,7637,7781,8016,8150,8154,8496,8666,9436,10666,10688,10735,10783,10787,11138,11613,13844,13855,14813,14873,15265,15749,17555,17988,18059,18185,18907,19453,19731,20078,20088,20131,22099,22120,22345,22355,22357,22583]]],["+",[2,2,[[0,1,1,0,1,[[36,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]]],[1097,6209]]],["dale",[2,2,[[0,1,1,0,1,[[13,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]]],[353,8496]]],["vale",[3,3,[[0,3,3,0,3,[[13,3,3,0,3]]]],[339,344,346]]],["valley",[53,50,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[5,11,10,2,12,[[193,2,2,2,4],[194,1,1,4,5],[196,1,1,5,6],[199,2,2,6,8],[201,1,1,8,9],[203,2,1,9,10],[204,2,2,10,12]]],[6,8,8,12,20,[[211,2,2,12,14],[215,1,1,14,15],[216,1,1,15,16],[217,3,3,16,19],[228,1,1,19,20]]],[8,5,5,20,25,[[241,1,1,20,21],[252,2,2,21,23],[256,1,1,23,24],[266,1,1,24,25]]],[9,3,3,25,28,[[271,2,2,25,27],[289,1,1,27,28]]],[12,4,4,28,32,[[347,1,1,28,29],[348,1,1,29,30],[351,2,2,30,32]]],[13,2,1,32,33,[[386,2,1,32,33]]],[17,1,1,33,34,[[474,1,1,33,34]]],[18,3,3,34,37,[[537,1,1,34,35],[561,1,1,35,36],[585,1,1,36,37]]],[22,3,3,37,40,[[695,1,1,37,38],[706,1,1,38,39],[743,1,1,39,40]]],[23,5,5,40,45,[[765,1,1,40,41],[775,1,1,41,42],[791,1,1,42,43],[792,1,1,43,44],[793,1,1,44,45]]],[27,2,2,45,47,[[862,1,1,45,46],[863,1,1,46,47]]],[28,4,3,47,50,[[878,4,3,47,50]]]],[353,4133,6000,6002,6015,6076,6173,6181,6210,6291,6309,6314,6528,6543,6638,6687,6695,6702,6706,7021,7344,7620,7637,7781,8016,8150,8154,8666,10666,10688,10783,10787,11613,13855,14813,15265,15749,17988,18185,18907,19453,19731,20078,20088,20131,22099,22120,22345,22355,22357]]],["valleys",[9,9,[[10,1,1,0,1,[[310,1,1,0,1]]],[12,2,2,1,3,[[349,1,1,1,2],[364,1,1,2,3]]],[17,1,1,3,4,[[474,1,1,3,4]]],[18,1,1,4,5,[[542,1,1,4,5]]],[21,1,1,5,6,[[672,1,1,5,6]]],[22,1,1,6,7,[[700,1,1,6,7]]],[23,1,1,7,8,[[793,1,1,7,8]]],[32,1,1,8,9,[[893,1,1,8,9]]]],[9436,10735,11138,13844,14873,17555,18059,20131,22583]]]]},{"k":"H6011","v":[["*",[2,2,[[19,2,2,0,2,[[636,1,1,0,1],[652,1,1,1,2]]]],[16656,17116]]],["depth",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17116]]],["depths",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16656]]]]},{"k":"H6012","v":[["*",[3,3,[[22,1,1,0,1,[[711,1,1,0,1]]],[25,2,2,1,3,[[804,2,2,1,3]]]],[18298,20507,20508]]],["deeper",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18298]]],["strange",[2,2,[[25,2,2,0,2,[[804,2,2,0,2]]]],[20507,20508]]]]},{"k":"H6013","v":[["*",[17,16,[[2,7,7,0,7,[[102,7,7,0,7]]],[17,2,2,7,9,[[446,1,1,7,8],[447,1,1,8,9]]],[18,1,1,9,10,[[541,1,1,9,10]]],[19,4,4,10,14,[[645,1,1,10,11],[647,1,1,11,12],[649,1,1,12,13],[650,1,1,13,14]]],[20,2,1,14,15,[[665,2,1,14,15]]],[25,1,1,15,16,[[824,1,1,15,16]]]],[3055,3056,3077,3082,3083,3084,3086,13116,13150,14856,16905,16959,17029,17071,17453,21039]]],["+",[2,1,[[20,2,1,0,1,[[665,2,1,0,1]]]],[17453]]],["deep",[6,6,[[18,1,1,0,1,[[541,1,1,0,1]]],[19,4,4,1,5,[[645,1,1,1,2],[647,1,1,2,3],[649,1,1,3,4],[650,1,1,4,5]]],[25,1,1,5,6,[[824,1,1,5,6]]]],[14856,16905,16959,17029,17071,21039]]],["deeper",[8,8,[[2,7,7,0,7,[[102,7,7,0,7]]],[17,1,1,7,8,[[446,1,1,7,8]]]],[3055,3056,3077,3082,3083,3084,3086,13116]]],["things",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13150]]]]},{"k":"H6014","v":[["*",[3,3,[[4,2,2,0,2,[[173,1,1,0,1],[176,1,1,1,2]]],[18,1,1,2,3,[[606,1,1,2,3]]]],[5461,5532,16139]]],["bindeth",[1,1,[[18,1,1,0,1,[[606,1,1,0,1]]]],[16139]]],["merchandise",[2,2,[[4,2,2,0,2,[[173,1,1,0,1],[176,1,1,1,2]]]],[5461,5532]]]]},{"k":"H6015","v":[["wool",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21942]]]]},{"k":"H6016","v":[["*",[14,14,[[1,6,6,0,6,[[65,6,6,0,6]]],[2,4,4,6,10,[[112,4,4,6,10]]],[4,1,1,10,11,[[176,1,1,10,11]]],[7,2,2,11,13,[[233,2,2,11,13]]],[17,1,1,13,14,[[459,1,1,13,14]]]],[1963,1965,1969,1979,1980,1983,3412,3413,3414,3417,5544,7156,7164,13446]]],["omer",[5,5,[[1,5,5,0,5,[[65,5,5,0,5]]]],[1963,1965,1979,1980,1983]]],["omers",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1969]]],["sheaf",[6,6,[[2,4,4,0,4,[[112,4,4,0,4]]],[4,1,1,4,5,[[176,1,1,4,5]]],[17,1,1,5,6,[[459,1,1,5,6]]]],[3412,3413,3414,3417,5544,13446]]],["sheaves",[2,2,[[7,2,2,0,2,[[233,2,2,0,2]]]],[7156,7164]]]]},{"k":"H6017","v":[["Gomorrah",[19,19,[[0,9,9,0,9,[[9,1,1,0,1],[12,1,1,1,2],[13,4,4,2,6],[17,1,1,6,7],[18,2,2,7,9]]],[4,2,2,9,11,[[181,1,1,9,10],[184,1,1,10,11]]],[22,3,3,11,14,[[679,2,2,11,13],[691,1,1,13,14]]],[23,3,3,14,17,[[767,1,1,14,15],[793,1,1,15,16],[794,1,1,16,17]]],[29,1,1,17,18,[[882,1,1,17,18]]],[35,1,1,18,19,[[907,1,1,18,19]]]],[253,328,338,344,346,347,444,481,485,5702,5790,17663,17664,17925,19498,20145,20206,22421,22814]]]]},{"k":"H6018","v":[["Omri",[18,16,[[10,12,10,0,10,[[306,12,10,0,10]]],[11,1,1,10,11,[[320,1,1,10,11]]],[12,3,3,11,14,[[344,1,1,11,12],[346,1,1,12,13],[364,1,1,13,14]]],[13,1,1,14,15,[[388,1,1,14,15]]],[32,1,1,15,16,[[898,1,1,15,16]]]],[9299,9300,9304,9305,9306,9308,9310,9311,9312,9313,9753,10543,10619,11127,11646,22664]]]]},{"k":"H6019","v":[["*",[14,12,[[1,3,2,0,2,[[55,3,2,0,2]]],[3,4,3,2,5,[[119,1,1,2,3],[142,3,2,3,5]]],[12,6,6,5,11,[[343,3,3,5,8],[360,2,2,8,10],[361,1,1,10,11]]],[14,1,1,11,12,[[412,1,1,11,12]]]],[1673,1675,3711,4547,4548,10456,10457,10472,10995,10996,11035,12286]]],["+",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4548]]],["Amram",[12,11,[[1,3,2,0,2,[[55,3,2,0,2]]],[3,2,2,2,4,[[119,1,1,2,3],[142,1,1,3,4]]],[12,6,6,4,10,[[343,3,3,4,7],[360,2,2,7,9],[361,1,1,9,10]]],[14,1,1,10,11,[[412,1,1,10,11]]]],[1673,1675,3711,4547,10456,10457,10472,10995,10996,11035,12286]]],["Amram's",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4548]]]]},{"k":"H6020","v":[["Amramites",[2,2,[[3,1,1,0,1,[[119,1,1,0,1]]],[12,1,1,1,2,[[363,1,1,1,2]]]],[3719,11100]]]]},{"k":"H6021","v":[["Amasa",[16,12,[[9,11,8,0,8,[[283,2,1,0,1],[285,1,1,1,2],[286,8,6,2,8]]],[10,2,2,8,10,[[292,2,2,8,10]]],[12,2,1,10,11,[[339,2,1,10,11]]],[13,1,1,11,12,[[394,1,1,11,12]]]],[8474,8524,8558,8559,8562,8563,8564,8566,8775,8802,10323,11776]]]]},{"k":"H6022","v":[["Amasai",[5,5,[[12,4,4,0,4,[[343,2,2,0,2],[349,1,1,2,3],[352,1,1,3,4]]],[13,1,1,4,5,[[395,1,1,4,5]]]],[10479,10489,10738,10815,11803]]]]},{"k":"H6023","v":[["Amashai",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12601]]]]},{"k":"H6024","v":[["Anab",[2,2,[[5,2,2,0,2,[[197,1,1,0,1],[201,1,1,1,2]]]],[6128,6252]]]]},{"k":"H6025","v":[["*",[19,17,[[0,3,3,0,3,[[39,2,2,0,2],[48,1,1,2,3]]],[2,1,1,3,4,[[114,1,1,3,4]]],[3,4,3,4,7,[[122,2,1,4,5],[129,2,2,5,7]]],[4,4,3,7,10,[[175,1,1,7,8],[184,3,2,8,10]]],[15,1,1,10,11,[[425,1,1,10,11]]],[22,2,2,11,13,[[683,2,2,11,13]]],[23,1,1,13,14,[[752,1,1,13,14]]],[27,2,2,14,16,[[864,1,1,14,15],[870,1,1,15,16]]],[29,1,1,16,17,[[887,1,1,16,17]]]],[1182,1183,1484,3474,3826,4095,4098,5524,5772,5790,12686,17741,17743,19166,22129,22218,22508]]],["grape",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5772]]],["grapes",[17,15,[[0,3,3,0,3,[[39,2,2,0,2],[48,1,1,2,3]]],[2,1,1,3,4,[[114,1,1,3,4]]],[3,4,3,4,7,[[122,2,1,4,5],[129,2,2,5,7]]],[4,3,2,7,9,[[175,1,1,7,8],[184,2,1,8,9]]],[15,1,1,9,10,[[425,1,1,9,10]]],[22,2,2,10,12,[[683,2,2,10,12]]],[23,1,1,12,13,[[752,1,1,12,13]]],[27,1,1,13,14,[[870,1,1,13,14]]],[29,1,1,14,15,[[887,1,1,14,15]]]],[1182,1183,1484,3474,3826,4095,4098,5524,5790,12686,17741,17743,19166,22218,22508]]],["wine",[1,1,[[27,1,1,0,1,[[864,1,1,0,1]]]],[22129]]]]},{"k":"H6026","v":[["*",[10,10,[[4,1,1,0,1,[[180,1,1,0,1]]],[17,2,2,1,3,[[457,1,1,1,2],[462,1,1,2,3]]],[18,2,2,3,5,[[514,2,2,3,5]]],[22,4,4,5,9,[[733,1,1,5,6],[735,1,1,6,7],[736,1,1,7,8],[744,1,1,8,9]]],[23,1,1,9,10,[[750,1,1,9,10]]]],[5667,13415,13491,14454,14461,18742,18769,18800,18933,19091]]],["+",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5667]]],["delicate",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19091]]],["delight",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13415]]],["delighted",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18933]]],["himself",[1,1,[[17,1,1,0,1,[[462,1,1,0,1]]]],[13491]]],["itself",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18742]]],["themselves",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14461]]],["thyself",[2,2,[[18,1,1,0,1,[[514,1,1,0,1]]],[22,1,1,1,2,[[736,1,1,1,2]]]],[14454,18800]]],["yourselves",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18769]]]]},{"k":"H6027","v":[["*",[2,2,[[22,2,2,0,2,[[691,1,1,0,1],[736,1,1,1,2]]]],[17928,18799]]],["delight",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18799]]],["pleasant",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17928]]]]},{"k":"H6028","v":[["*",[3,3,[[4,2,2,0,2,[[180,2,2,0,2]]],[22,1,1,2,3,[[725,1,1,2,3]]]],[5665,5667,18600]]],["delicate",[2,2,[[4,1,1,0,1,[[180,1,1,0,1]]],[22,1,1,1,2,[[725,1,1,1,2]]]],[5665,18600]]],["woman",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5667]]]]},{"k":"H6029","v":[["*",[2,2,[[17,1,1,0,1,[[466,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]]],[13624,16561]]],["bind",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13624]]],["tie",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16561]]]]},{"k":"H6030","v":[["*",[329,317,[[0,19,18,0,18,[[17,1,1,0,1],[22,3,3,1,4],[23,1,1,4,5],[26,2,2,5,7],[29,1,1,7,8],[30,4,4,8,12],[33,1,1,12,13],[34,1,1,13,14],[39,1,1,14,15],[40,2,1,15,16],[41,1,1,16,17],[44,1,1,17,18]]],[1,9,8,18,26,[[53,1,1,18,19],[64,1,1,19,20],[68,2,2,20,22],[69,1,1,22,23],[72,1,1,23,24],[73,1,1,24,25],[81,2,1,25,26]]],[3,7,7,26,33,[[127,1,1,26,27],[137,1,1,27,28],[138,1,1,28,29],[139,2,2,29,31],[148,1,1,31,32],[151,1,1,32,33]]],[4,12,12,33,45,[[153,2,2,33,35],[157,1,1,35,36],[171,2,2,36,38],[172,1,1,38,39],[173,1,1,39,40],[177,1,1,40,41],[178,1,1,41,42],[179,2,2,42,44],[183,1,1,44,45]]],[5,5,5,45,50,[[187,1,1,45,46],[193,1,1,46,47],[195,1,1,47,48],[208,1,1,48,49],[210,1,1,49,50]]],[6,7,6,50,56,[[215,1,1,50,51],[217,1,1,51,52],[218,2,1,52,53],[228,1,1,53,54],[229,1,1,54,55],[230,1,1,55,56]]],[7,3,3,56,59,[[232,1,1,56,57],[233,2,2,57,59]]],[8,38,37,59,96,[[236,2,2,59,61],[239,2,2,61,63],[242,1,1,63,64],[243,1,1,64,65],[244,5,5,65,70],[245,1,1,70,71],[247,1,1,71,72],[249,4,4,72,76],[251,1,1,76,77],[253,1,1,77,78],[255,3,3,78,81],[256,3,3,81,84],[257,2,2,84,86],[258,1,1,86,87],[260,1,1,87,88],[261,4,3,88,91],[263,2,2,91,93],[264,2,2,93,95],[265,1,1,95,96]]],[9,11,11,96,107,[[267,1,1,96,97],[270,1,1,97,98],[279,1,1,98,99],[280,2,2,99,101],[281,1,1,101,102],[285,3,3,102,105],[286,1,1,105,106],[288,1,1,106,107]]],[10,19,16,107,123,[[291,3,3,107,110],[292,2,2,110,112],[293,1,1,112,113],[302,2,2,113,115],[303,1,1,115,116],[308,8,5,116,121],[310,2,2,121,123]]],[11,10,9,123,132,[[313,3,3,123,126],[315,1,1,126,127],[316,1,1,127,128],[319,3,3,128,131],[330,2,1,131,132]]],[12,3,3,132,135,[[349,1,1,132,133],[358,2,2,133,135]]],[13,3,3,135,138,[[376,1,1,135,136],[395,1,1,136,137],[400,1,1,137,138]]],[14,3,3,138,141,[[405,1,1,138,139],[412,2,2,139,141]]],[15,1,1,141,142,[[420,1,1,141,142]]],[16,2,2,142,144,[[430,1,1,142,143],[432,1,1,143,144]]],[17,60,60,144,204,[[436,2,2,144,146],[437,2,2,146,148],[438,1,1,148,149],[439,1,1,149,150],[440,1,1,150,151],[441,1,1,151,152],[443,1,1,152,153],[444,6,6,153,159],[446,2,2,159,161],[447,2,2,161,163],[448,1,1,163,164],[449,1,1,164,165],[450,3,3,165,168],[451,3,3,168,171],[453,1,1,171,172],[454,3,3,172,175],[455,2,2,175,177],[456,1,1,177,178],[457,1,1,178,179],[458,2,2,179,181],[460,1,1,181,182],[461,1,1,182,183],[465,1,1,183,184],[466,1,1,184,185],[467,7,7,185,192],[468,2,2,192,194],[469,1,1,194,195],[470,2,2,195,197],[473,1,1,197,198],[475,5,5,198,203],[477,1,1,203,204]]],[18,38,38,204,242,[[480,1,1,204,205],[481,1,1,205,206],[490,1,1,206,207],[494,1,1,207,208],[495,1,1,208,209],[497,3,3,209,212],[499,2,2,212,214],[504,1,1,214,215],[511,1,1,215,216],[515,1,1,216,217],[532,1,1,217,218],[537,1,1,218,219],[542,1,1,219,220],[546,3,3,220,223],[558,1,1,223,224],[563,2,2,224,226],[568,1,1,226,227],[576,2,2,227,229],[579,1,1,229,230],[585,1,1,230,231],[595,2,2,231,233],[596,4,4,233,237],[597,1,1,237,238],[615,1,1,238,239],[620,2,2,239,241],[624,1,1,241,242]]],[19,7,7,242,249,[[628,1,1,242,243],[642,1,1,243,244],[645,1,1,244,245],[648,1,1,245,246],[652,1,1,246,247],[653,2,2,247,249]]],[20,2,2,249,251,[[663,1,1,249,250],[668,1,1,250,251]]],[21,2,2,251,253,[[672,1,1,251,252],[675,1,1,252,253]]],[22,18,17,253,270,[[681,1,1,253,254],[691,1,1,254,255],[692,2,2,255,257],[699,1,1,257,258],[703,1,1,258,259],[708,1,1,259,260],[714,2,1,260,261],[719,1,1,261,262],[724,1,1,262,263],[727,1,1,263,264],[728,1,1,264,265],[736,1,1,265,266],[737,1,1,266,267],[743,2,2,267,269],[744,1,1,269,270]]],[23,13,13,270,283,[[751,2,2,270,272],[755,1,1,272,273],[758,1,1,273,274],[767,2,2,274,276],[769,1,1,276,277],[777,1,1,277,278],[779,1,1,278,279],[786,1,1,279,280],[788,2,2,280,282],[795,1,1,282,283]]],[25,2,2,283,285,[[815,2,2,283,285]]],[27,9,6,285,291,[[863,6,3,285,288],[866,1,1,288,289],[868,1,1,289,290],[875,1,1,290,291]]],[28,1,1,291,292,[[877,1,1,291,292]]],[29,1,1,292,293,[[885,1,1,292,293]]],[31,1,1,293,294,[[890,1,1,293,294]]],[32,3,3,294,297,[[895,1,1,294,295],[898,2,2,295,297]]],[34,2,2,297,299,[[904,2,2,297,299]]],[36,3,3,299,302,[[910,3,3,299,302]]],[37,14,14,302,316,[[911,4,4,302,306],[913,1,1,306,307],[914,5,5,307,312],[916,2,2,312,314],[920,1,1,314,315],[923,1,1,315,316]]],[38,1,1,316,317,[[926,1,1,316,317]]]],[451,576,581,585,641,764,766,863,887,904,909,916,993,1014,1190,1211,1274,1361,1602,1941,2034,2045,2067,2146,2180,2456,4052,4357,4393,4428,4442,4749,4875,4906,4933,5073,5422,5424,5438,5454,5556,5571,5599,5600,5749,5867,5996,6061,6447,6492,6652,6708,6727,7007,7052,7058,7148,7155,7160,7227,7229,7314,7317,7361,7387,7399,7403,7408,7410,7412,7430,7463,7520,7536,7545,7547,7613,7683,7740,7758,7762,7776,7777,7783,7796,7801,7814,7871,7911,7919,7927,7948,7957,7972,7976,8000,8038,8129,8349,8374,8375,8410,8532,8553,8554,8574,8644,8745,8753,8760,8792,8800,8843,9158,9164,9190,9362,9365,9367,9370,9378,9412,9419,9543,9544,9545,9587,9632,9709,9720,9726,10060,10737,10960,10962,11408,11822,11948,12108,12254,12264,12499,12786,12810,12876,12878,12893,12895,12906,12931,12952,12979,13030,13052,13054,13065,13066,13067,13083,13109,13110,13129,13132,13175,13196,13204,13205,13209,13239,13241,13246,13277,13298,13304,13313,13327,13329,13356,13390,13420,13424,13462,13468,13577,13623,13629,13634,13640,13643,13644,13645,13648,13662,13663,13684,13721,13732,13794,13865,13866,13867,13869,13870,13923,13961,13966,14077,14109,14159,14183,14188,14191,14206,14225,14292,14392,14505,14734,14812,14865,14948,14951,14952,15224,15285,15291,15410,15505,15507,15523,15748,15874,15890,15924,15940,16043,16070,16075,16234,16294,16300,16358,16428,16835,16924,16997,17131,17145,17146,17417,17512,17564,17604,17716,17928,17938,17960,18044,18123,18236,18351,18468,18593,18644,18664,18795,18812,18909,18921,18926,19132,19146,19231,19300,19519,19521,19564,19778,19840,19979,20025,20030,20226,20735,20738,22120,22126,22127,22157,22188,22290,22330,22478,22550,22612,22651,22653,22750,22759,22867,22868,22869,22888,22889,22890,22891,22916,22926,22927,22928,22933,22934,22951,22952,23022,23068,23115]]],["+",[45,42,[[0,6,5,0,5,[[22,3,3,0,3],[33,1,1,3,4],[40,2,1,4,5]]],[5,3,3,5,8,[[187,1,1,5,6],[193,1,1,6,7],[195,1,1,7,8]]],[8,9,9,8,17,[[244,2,2,8,10],[249,1,1,10,11],[255,2,2,11,13],[256,2,2,13,15],[257,1,1,15,16],[260,1,1,16,17]]],[9,4,4,17,21,[[270,1,1,17,18],[281,1,1,18,19],[285,2,2,19,21]]],[10,2,2,21,23,[[291,1,1,21,22],[302,1,1,22,23]]],[11,2,2,23,25,[[319,2,2,23,25]]],[17,9,9,25,34,[[436,2,2,25,27],[437,2,2,27,29],[467,1,1,29,30],[473,1,1,30,31],[475,2,2,31,33],[477,1,1,33,34]]],[20,1,1,34,35,[[668,1,1,34,35]]],[21,1,1,35,36,[[675,1,1,35,36]]],[23,2,2,36,38,[[788,2,2,36,38]]],[27,4,2,38,40,[[863,4,2,38,40]]],[37,2,2,40,42,[[911,2,2,40,42]]]],[576,581,585,993,1211,5867,5996,6061,7399,7410,7520,7758,7762,7776,7777,7801,7871,8129,8410,8553,8554,8753,9164,9709,9726,12876,12878,12893,12895,13629,13794,13865,13867,13923,17512,17604,20025,20030,22126,22127,22889,22891]]],["Answer",[4,4,[[11,1,1,0,1,[[330,1,1,0,1]]],[19,2,2,1,3,[[653,2,2,1,3]]],[22,1,1,3,4,[[714,1,1,3,4]]]],[10060,17145,17146,18351]]],["Answerest",[1,1,[[8,1,1,0,1,[[261,1,1,0,1]]]],[7919]]],["Hear",[4,4,[[10,1,1,0,1,[[308,1,1,0,1]]],[18,3,3,1,4,[[481,1,1,1,2],[546,1,1,2,3],[620,1,1,3,4]]]],[9378,13966,14951,16300]]],["Sing",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16358]]],["account",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13663]]],["another",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7783]]],["answer",[52,52,[[0,2,2,0,2,[[29,1,1,0,1],[44,1,1,1,2]]],[4,4,4,2,6,[[172,1,1,2,3],[173,1,1,3,4],[177,1,1,4,5],[179,1,1,5,6]]],[8,1,1,6,7,[[255,1,1,6,7]]],[10,2,2,7,9,[[302,1,1,7,8],[308,1,1,8,9]]],[11,1,1,9,10,[[316,1,1,9,10]]],[17,17,17,10,27,[[440,1,1,10,11],[444,4,4,11,15],[448,1,1,15,16],[449,1,1,16,17],[454,1,1,17,18],[455,1,1,18,19],[458,1,1,19,20],[466,1,1,20,21],[467,2,2,21,23],[468,1,1,23,24],[470,1,1,24,25],[475,2,2,25,27]]],[18,8,8,27,35,[[504,1,1,27,28],[542,1,1,28,29],[563,1,1,29,30],[568,1,1,30,31],[579,1,1,31,32],[585,1,1,32,33],[596,1,1,33,34],[620,1,1,34,35]]],[19,2,2,35,37,[[628,1,1,35,36],[642,1,1,36,37]]],[22,8,8,37,45,[[692,1,1,37,38],[708,1,1,38,39],[724,1,1,39,40],[728,1,1,40,41],[736,1,1,41,42],[743,2,2,42,44],[744,1,1,44,45]]],[23,3,3,45,48,[[751,1,1,45,46],[777,1,1,46,47],[786,1,1,47,48]]],[25,2,2,48,50,[[815,2,2,48,50]]],[28,1,1,50,51,[[877,1,1,50,51]]],[34,1,1,51,52,[[904,1,1,51,52]]]],[863,1361,5438,5454,5556,5600,7740,9158,9370,9632,12952,13054,13065,13066,13083,13175,13196,13313,13329,13424,13623,13645,13648,13662,13732,13866,13869,14292,14865,15291,15410,15523,15748,15940,16294,16428,16835,17960,18236,18593,18664,18795,18909,18921,18926,19146,19778,19979,20735,20738,22330,22759]]],["answered",[139,138,[[0,11,11,0,11,[[17,1,1,0,1],[23,1,1,1,2],[26,2,2,2,4],[30,4,4,4,8],[34,1,1,8,9],[39,1,1,9,10],[41,1,1,10,11]]],[1,5,5,11,16,[[53,1,1,11,12],[64,1,1,12,13],[68,2,2,13,15],[73,1,1,15,16]]],[3,5,5,16,21,[[127,1,1,16,17],[138,1,1,17,18],[139,2,2,18,20],[148,1,1,20,21]]],[4,2,2,21,23,[[153,2,2,21,23]]],[5,2,2,23,25,[[208,1,1,23,24],[210,1,1,24,25]]],[6,7,6,25,31,[[215,1,1,25,26],[217,1,1,26,27],[218,2,1,27,28],[228,1,1,28,29],[229,1,1,29,30],[230,1,1,30,31]]],[7,2,2,31,33,[[233,2,2,31,33]]],[8,20,20,33,53,[[236,2,2,33,35],[239,2,2,35,37],[244,2,2,37,39],[245,1,1,39,40],[249,3,3,40,43],[251,1,1,43,44],[253,1,1,44,45],[257,1,1,45,46],[258,1,1,46,47],[261,3,3,47,50],[263,1,1,50,51],[264,1,1,51,52],[265,1,1,52,53]]],[9,6,6,53,59,[[279,1,1,53,54],[280,2,2,54,56],[285,1,1,56,57],[286,1,1,57,58],[288,1,1,58,59]]],[10,11,11,59,70,[[291,2,2,59,61],[292,2,2,61,63],[293,1,1,63,64],[303,1,1,64,65],[308,3,3,65,68],[310,2,2,68,70]]],[11,6,6,70,76,[[313,3,3,70,73],[315,1,1,73,74],[319,1,1,74,75],[330,1,1,75,76]]],[12,3,3,76,79,[[349,1,1,76,77],[358,2,2,77,79]]],[13,3,3,79,82,[[376,1,1,79,80],[395,1,1,80,81],[400,1,1,81,82]]],[14,2,2,82,84,[[412,2,2,82,84]]],[15,1,1,84,85,[[420,1,1,84,85]]],[16,2,2,85,87,[[430,1,1,85,86],[432,1,1,86,87]]],[17,24,24,87,111,[[439,1,1,87,88],[441,1,1,88,89],[443,1,1,89,90],[444,2,2,90,92],[446,2,2,92,94],[447,1,1,94,95],[450,1,1,95,96],[451,1,1,96,97],[453,1,1,97,98],[454,1,1,98,99],[455,1,1,99,100],[456,1,1,100,101],[457,1,1,101,102],[458,1,1,102,103],[460,1,1,103,104],[461,1,1,104,105],[467,4,4,105,109],[469,1,1,109,110],[475,1,1,110,111]]],[18,4,4,111,115,[[495,1,1,111,112],[558,1,1,112,113],[576,1,1,113,114],[595,1,1,114,115]]],[22,2,2,115,117,[[699,1,1,115,116],[714,1,1,116,117]]],[23,5,5,117,122,[[751,1,1,117,118],[755,1,1,118,119],[767,2,2,119,121],[779,1,1,121,122]]],[29,1,1,122,123,[[885,1,1,122,123]]],[32,1,1,123,124,[[898,1,1,123,124]]],[34,1,1,124,125,[[904,1,1,124,125]]],[36,3,3,125,128,[[910,3,3,125,128]]],[37,10,10,128,138,[[911,2,2,128,130],[913,1,1,130,131],[914,5,5,131,136],[916,2,2,136,138]]]],[451,641,764,766,887,904,909,916,1014,1190,1274,1602,1941,2034,2045,2180,4052,4393,4428,4442,4749,4906,4933,6447,6492,6652,6708,6727,7007,7052,7058,7155,7160,7227,7229,7314,7317,7403,7412,7430,7536,7545,7547,7613,7683,7796,7814,7911,7919,7927,7948,7976,8000,8349,8374,8375,8532,8574,8644,8745,8760,8792,8800,8843,9190,9362,9365,9367,9412,9419,9543,9544,9545,9587,9720,10060,10737,10960,10962,11408,11822,11948,12254,12264,12499,12786,12810,12931,12979,13030,13052,13067,13109,13110,13129,13204,13239,13277,13298,13327,13356,13390,13420,13462,13468,13634,13640,13643,13644,13684,13870,14159,15224,15505,15874,18044,18351,19132,19231,19519,19521,19840,22478,22653,22750,22867,22868,22869,22888,22890,22916,22926,22927,22928,22933,22934,22951,22952]]],["answeredst",[2,2,[[18,2,2,0,2,[[576,1,1,0,1],[615,1,1,1,2]]]],[15507,16234]]],["answerest",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13241]]],["answereth",[5,5,[[8,1,1,0,1,[[263,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]],[17,1,1,2,3,[[447,1,1,2,3]]],[19,1,1,3,4,[[645,1,1,3,4]]],[20,1,1,4,5,[[663,1,1,4,5]]]],[7957,9365,13132,16924,17417]]],["bear",[2,2,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,1,1,1,2,[[157,1,1,1,2]]]],[2067,5073]]],["beareth",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17131]]],["course",[1,1,[[14,1,1,0,1,[[405,1,1,0,1]]]],[12108]]],["cry",[2,2,[[1,1,1,0,1,[[81,1,1,0,1]]],[22,1,1,1,2,[[691,1,1,1,2]]]],[2456,17928]]],["give",[1,1,[[23,1,1,0,1,[[769,1,1,0,1]]]],[19564]]],["hear",[21,21,[[8,1,1,0,1,[[243,1,1,0,1]]],[10,2,2,1,3,[[308,2,2,1,3]]],[17,1,1,3,4,[[465,1,1,3,4]]],[18,12,12,4,16,[[490,1,1,4,5],[494,1,1,5,6],[497,3,3,6,9],[515,1,1,9,10],[532,1,1,10,11],[537,1,1,11,12],[546,2,2,12,14],[563,1,1,14,15],[596,1,1,15,16]]],[22,1,1,16,17,[[719,1,1,16,17]]],[27,1,1,17,18,[[863,1,1,17,18]]],[32,1,1,18,19,[[895,1,1,18,19]]],[37,2,2,19,21,[[920,1,1,19,20],[923,1,1,20,21]]]],[7387,9367,9378,13577,14077,14109,14183,14188,14191,14505,14734,14812,14948,14952,15285,16043,18468,22126,22612,23022,23068]]],["heard",[11,11,[[8,1,1,0,1,[[242,1,1,0,1]]],[17,1,1,1,2,[[454,1,1,1,2]]],[18,5,5,2,7,[[480,1,1,2,3],[499,1,1,3,4],[511,1,1,4,5],[595,1,1,5,6],[597,1,1,6,7]]],[19,1,1,7,8,[[648,1,1,7,8]]],[22,1,1,8,9,[[727,1,1,8,9]]],[27,1,1,9,10,[[875,1,1,9,10]]],[31,1,1,10,11,[[890,1,1,10,11]]]],[7361,13304,13961,14225,14392,15890,16075,16997,18644,22290,22550]]],["heardest",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15924]]],["hearest",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14206]]],["low",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18123]]],["said",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7408]]],["sang",[1,1,[[8,1,1,0,1,[[264,1,1,0,1]]]],[7972]]],["scholar",[1,1,[[38,1,1,0,1,[[926,1,1,0,1]]]],[23115]]],["shout",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2456]]],["sing",[2,2,[[3,1,1,0,1,[[137,1,1,0,1]]],[27,1,1,1,2,[[863,1,1,1,2]]]],[4357,22120]]],["spake",[3,3,[[17,2,2,0,2,[[438,1,1,0,1],[470,1,1,1,2]]],[21,1,1,2,3,[[672,1,1,2,3]]]],[12906,13721,17564]]],["speak",[5,5,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,2,2,1,3,[[178,1,1,1,2],[179,1,1,2,3]]],[18,1,1,3,4,[[596,1,1,3,4]]],[22,1,1,4,5,[[692,1,1,4,5]]]],[2146,5571,5599,16070,17938]]],["testified",[3,3,[[4,1,1,0,1,[[171,1,1,0,1]]],[7,1,1,1,2,[[232,1,1,1,2]]],[9,1,1,2,3,[[267,1,1,2,3]]]],[5424,7148,8038]]],["testifieth",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22188]]],["testify",[8,8,[[3,1,1,0,1,[[151,1,1,0,1]]],[4,2,2,1,3,[[171,1,1,1,2],[183,1,1,2,3]]],[17,1,1,3,4,[[450,1,1,3,4]]],[22,1,1,4,5,[[737,1,1,4,5]]],[23,1,1,5,6,[[758,1,1,5,6]]],[27,1,1,6,7,[[866,1,1,6,7]]],[32,1,1,7,8,[[898,1,1,7,8]]]],[4875,5422,5749,13209,18812,19300,22157,22651]]],["up",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20226]]],["utter",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13205]]],["witness",[3,3,[[8,1,1,0,1,[[247,1,1,0,1]]],[17,1,1,1,2,[[451,1,1,1,2]]],[22,1,1,2,3,[[681,1,1,2,3]]]],[7463,13246,17716]]]]},{"k":"H6031","v":[["*",[82,78,[[0,5,5,0,5,[[14,1,1,0,1],[15,2,2,1,3],[30,1,1,3,4],[33,1,1,4,5]]],[1,7,6,5,11,[[50,2,2,5,7],[59,1,1,7,8],[71,3,2,8,10],[81,1,1,10,11]]],[2,5,5,11,16,[[105,2,2,11,13],[112,3,3,13,16]]],[3,4,3,16,19,[[140,2,1,16,17],[145,1,1,17,18],[146,1,1,18,19]]],[4,7,7,19,26,[[160,3,3,19,22],[173,1,1,22,23],[174,2,2,23,25],[178,1,1,25,26]]],[6,5,5,26,31,[[226,3,3,26,29],[229,1,1,29,30],[230,1,1,30,31]]],[9,5,5,31,36,[[273,1,1,31,32],[279,4,4,32,36]]],[10,4,3,36,39,[[292,2,1,36,37],[298,1,1,37,38],[301,1,1,38,39]]],[11,1,1,39,40,[[329,1,1,39,40]]],[13,1,1,40,41,[[372,1,1,40,41]]],[14,1,1,41,42,[[410,1,1,41,42]]],[17,2,2,42,44,[[465,1,1,42,43],[472,1,1,43,44]]],[18,15,15,44,59,[[512,1,1,44,45],[532,1,1,45,46],[565,1,1,46,47],[566,1,1,47,48],[567,1,1,48,49],[571,1,1,49,50],[579,1,1,50,51],[582,1,1,51,52],[584,1,1,52,53],[593,1,1,53,54],[596,4,4,54,58],[609,1,1,58,59]]],[20,2,2,59,61,[[659,1,1,59,60],[661,1,1,60,61]]],[22,9,9,61,70,[[705,1,1,61,62],[709,1,1,62,63],[731,2,2,63,65],[736,3,3,65,68],[738,1,1,68,69],[742,1,1,69,70]]],[24,2,2,70,72,[[799,1,1,70,71],[801,1,1,71,72]]],[25,2,2,72,74,[[823,2,2,72,74]]],[26,1,1,74,75,[[859,1,1,74,75]]],[33,2,1,75,76,[[900,2,1,75,76]]],[35,1,1,76,77,[[908,1,1,76,77]]],[37,1,1,77,78,[[920,1,1,77,78]]]],[373,387,390,923,982,1543,1544,1780,2135,2136,2456,3230,3232,3429,3431,3434,4470,4615,4661,5139,5140,5153,5461,5494,5499,5572,6954,6955,6968,7048,7059,8190,8329,8331,8339,8349,8796,9020,9147,10003,11308,12222,13568,13792,14423,14751,15315,15348,15393,15436,15544,15624,15716,15858,15965,15969,15973,16005,16152,17328,17369,18153,18254,18715,18718,18789,18791,18796,18835,18897,20387,20453,20986,20987,22027,22696,22839,23018]]],["+",[13,12,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,2,1,1,2,[[71,2,1,1,2]]],[2,4,4,2,6,[[105,2,2,2,4],[112,2,2,4,6]]],[3,1,1,6,7,[[145,1,1,6,7]]],[4,1,1,7,8,[[174,1,1,7,8]]],[9,2,2,8,10,[[279,2,2,8,10]]],[10,1,1,10,11,[[301,1,1,10,11]]],[25,1,1,11,12,[[823,1,1,11,12]]]],[923,2136,3230,3232,3429,3434,4615,5494,8339,8349,9147,20987]]],["abase",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18254]]],["afflict",[20,19,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,2,2,1,3,[[50,1,1,1,2],[71,1,1,2,3]]],[3,3,2,3,5,[[140,2,1,3,4],[146,1,1,4,5]]],[6,3,3,5,8,[[226,3,3,5,8]]],[9,1,1,8,9,[[273,1,1,8,9]]],[13,1,1,9,10,[[372,1,1,9,10]]],[17,1,1,10,11,[[472,1,1,10,11]]],[18,3,3,11,14,[[532,1,1,11,12],[566,1,1,12,13],[571,1,1,13,14]]],[22,2,2,14,16,[[736,1,1,14,15],[742,1,1,15,16]]],[24,1,1,16,17,[[799,1,1,16,17]]],[33,1,1,17,18,[[900,1,1,17,18]]],[35,1,1,18,19,[[908,1,1,18,19]]]],[373,1543,2135,4470,4661,6954,6955,6968,8190,11308,13792,14751,15348,15436,18791,18897,20387,22696,22839]]],["afflicted",[21,20,[[1,1,1,0,1,[[50,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[4,1,1,2,3,[[178,1,1,2,3]]],[10,2,1,3,4,[[292,2,1,3,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[17,1,1,5,6,[[465,1,1,5,6]]],[18,8,8,6,14,[[565,1,1,6,7],[567,1,1,7,8],[584,1,1,8,9],[593,1,1,9,10],[596,4,4,10,14]]],[22,5,5,14,19,[[731,2,2,14,16],[736,2,2,16,18],[738,1,1,18,19]]],[33,1,1,19,20,[[900,1,1,19,20]]]],[1544,3431,5572,8796,10003,13568,15315,15393,15716,15858,15965,15969,15973,16005,18715,18718,18789,18796,18835,22696]]],["afflictest",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9020]]],["afflictions",[1,1,[[18,1,1,0,1,[[609,1,1,0,1]]]],[16152]]],["defiled",[1,1,[[0,1,1,0,1,[[33,1,1,0,1]]]],[982]]],["exercised",[2,2,[[20,2,2,0,2,[[659,1,1,0,1],[661,1,1,1,2]]]],[17328,17369]]],["force",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8329]]],["forced",[2,2,[[6,1,1,0,1,[[230,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]]],[7059,8331]]],["hardly",[1,1,[[0,1,1,0,1,[[15,1,1,0,1]]]],[387]]],["humble",[3,3,[[4,2,2,0,2,[[160,2,2,0,2]]],[6,1,1,2,3,[[229,1,1,2,3]]]],[5139,5153,7048]]],["humbled",[5,5,[[4,3,3,0,3,[[160,1,1,0,1],[173,1,1,1,2],[174,1,1,2,3]]],[18,1,1,3,4,[[512,1,1,3,4]]],[25,1,1,4,5,[[823,1,1,4,5]]]],[5140,5461,5499,14423,20986]]],["hurt",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15624]]],["ourselves",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12222]]],["ravished",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20453]]],["sing",[2,2,[[1,1,1,0,1,[[81,1,1,0,1]]],[22,1,1,1,2,[[705,1,1,1,2]]]],[2456,18153]]],["thyself",[3,3,[[0,1,1,0,1,[[15,1,1,0,1]]],[1,1,1,1,2,[[59,1,1,1,2]]],[26,1,1,2,3,[[859,1,1,2,3]]]],[390,1780,22027]]],["troubled",[1,1,[[37,1,1,0,1,[[920,1,1,0,1]]]],[23018]]],["weakened",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15544]]]]},{"k":"H6032","v":[["*",[30,28,[[26,30,28,0,28,[[851,9,9,0,9],[852,9,8,9,17],[853,3,2,17,19],[854,4,4,19,23],[855,4,4,23,27],[856,1,1,27,28]]]],[21763,21765,21766,21768,21773,21778,21784,21785,21805,21816,21821,21823,21826,21831,21832,21833,21835,21856,21867,21881,21884,21887,21891,21917,21918,21921,21925,21935]]],["answered",[16,16,[[26,16,16,0,16,[[851,9,9,0,9],[852,3,3,9,12],[853,1,1,12,13],[854,1,1,13,14],[855,2,2,14,16]]]],[21763,21765,21766,21768,21773,21778,21784,21785,21805,21823,21831,21832,21856,21891,21917,21918]]],["spake",[14,14,[[26,14,14,0,14,[[852,6,6,0,6],[853,2,2,6,8],[854,3,3,8,11],[855,2,2,11,13],[856,1,1,13,14]]]],[21816,21821,21826,21831,21833,21835,21856,21867,21881,21884,21887,21921,21925,21935]]]]},{"k":"H6033","v":[["poor",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]]]},{"k":"H6034","v":[["Anah",[12,10,[[0,9,7,0,7,[[35,9,7,0,7]]],[12,3,3,7,10,[[338,3,3,7,10]]]],[1042,1054,1058,1060,1064,1065,1069,10290,10292,10293]]]]},{"k":"H6035","v":[["*",[21,20,[[3,1,1,0,1,[[128,1,1,0,1]]],[18,12,11,1,12,[[486,1,1,1,2],[487,2,2,2,4],[499,1,1,4,5],[502,2,1,5,6],[511,1,1,6,7],[514,1,1,7,8],[546,1,1,8,9],[553,1,1,9,10],[624,1,1,10,11],[626,1,1,11,12]]],[19,3,3,12,15,[[630,1,1,12,13],[641,1,1,13,14],[643,1,1,14,15]]],[22,3,3,15,18,[[689,1,1,15,16],[707,1,1,16,17],[739,1,1,17,18]]],[29,1,1,18,19,[[880,1,1,18,19]]],[35,1,1,19,20,[[907,1,1,19,20]]]],[4062,14033,14053,14058,14230,14260,14390,14461,14967,15090,16357,16389,16489,16793,16859,17888,18212,18844,22386,22808]]],["humble",[5,5,[[18,5,5,0,5,[[486,1,1,0,1],[487,2,2,1,3],[511,1,1,3,4],[546,1,1,4,5]]]],[14033,14053,14058,14390,14967]]],["lowly",[2,2,[[19,2,2,0,2,[[630,1,1,0,1],[643,1,1,1,2]]]],[16489,16859]]],["meek",[13,12,[[3,1,1,0,1,[[128,1,1,0,1]]],[18,7,6,1,7,[[499,1,1,1,2],[502,2,1,2,3],[514,1,1,3,4],[553,1,1,4,5],[624,1,1,5,6],[626,1,1,6,7]]],[22,3,3,7,10,[[689,1,1,7,8],[707,1,1,8,9],[739,1,1,9,10]]],[29,1,1,10,11,[[880,1,1,10,11]]],[35,1,1,11,12,[[907,1,1,11,12]]]],[4062,14230,14260,14461,15090,16357,16389,17888,18212,18844,22386,22808]]],["poor",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16793]]]]},{"k":"H6036","v":[["Anub",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10393]]]]},{"k":"H6037","v":[["meekness",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14601]]]]},{"k":"H6038","v":[["*",[6,6,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]],[19,3,3,2,5,[[642,1,1,2,3],[645,1,1,3,4],[649,1,1,4,5]]],[35,1,1,5,6,[[907,1,1,5,6]]]],[8638,14153,16840,16913,17019,22808]]],["gentleness",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8638,14153]]],["humility",[3,3,[[19,3,3,0,3,[[642,1,1,0,1],[645,1,1,1,2],[649,1,1,2,3]]]],[16840,16913,17019]]],["meekness",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22808]]]]},{"k":"H6039","v":[["affliction",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14228]]]]},{"k":"H6040","v":[["*",[37,37,[[0,4,4,0,4,[[15,1,1,0,1],[28,1,1,1,2],[30,1,1,2,3],[40,1,1,3,4]]],[1,3,3,4,7,[[52,2,2,4,6],[53,1,1,6,7]]],[4,2,2,7,9,[[168,1,1,7,8],[178,1,1,8,9]]],[8,1,1,9,10,[[236,1,1,9,10]]],[9,1,1,10,11,[[282,1,1,10,11]]],[11,1,1,11,12,[[326,1,1,11,12]]],[12,1,1,12,13,[[359,1,1,12,13]]],[15,1,1,13,14,[[421,1,1,13,14]]],[17,6,6,14,20,[[445,1,1,14,15],[465,2,2,15,17],[471,3,3,17,20]]],[18,10,10,20,30,[[486,1,1,20,21],[502,1,1,21,22],[508,1,1,22,23],[521,1,1,23,24],[565,1,1,24,25],[584,2,2,25,27],[596,3,3,27,30]]],[19,1,1,30,31,[[658,1,1,30,31]]],[22,1,1,31,32,[[726,1,1,31,32]]],[24,5,5,32,37,[[797,3,3,32,35],[799,2,2,35,37]]]],[392,827,915,1247,1586,1596,1632,5345,5573,7223,8438,9922,10978,12520,13101,13573,13584,13744,13751,13757,14034,14269,14338,14595,15317,15709,15740,15948,15990,16051,17289,18624,20313,20317,20319,20355,20373]]],["+",[5,5,[[1,1,1,0,1,[[52,1,1,0,1]]],[17,1,1,1,2,[[471,1,1,1,2]]],[18,1,1,2,3,[[584,1,1,2,3]]],[19,1,1,3,4,[[658,1,1,3,4]]],[24,1,1,4,5,[[797,1,1,4,5]]]],[1596,13757,15740,17289,20313]]],["affliction",[29,29,[[0,4,4,0,4,[[15,1,1,0,1],[28,1,1,1,2],[30,1,1,2,3],[40,1,1,3,4]]],[1,2,2,4,6,[[52,1,1,4,5],[53,1,1,5,6]]],[4,2,2,6,8,[[168,1,1,6,7],[178,1,1,7,8]]],[8,1,1,8,9,[[236,1,1,8,9]]],[9,1,1,9,10,[[282,1,1,9,10]]],[11,1,1,10,11,[[326,1,1,10,11]]],[15,1,1,11,12,[[421,1,1,11,12]]],[17,5,5,12,17,[[445,1,1,12,13],[465,2,2,13,15],[471,2,2,15,17]]],[18,7,7,17,24,[[502,1,1,17,18],[521,1,1,18,19],[565,1,1,19,20],[584,1,1,20,21],[596,3,3,21,24]]],[22,1,1,24,25,[[726,1,1,24,25]]],[24,4,4,25,29,[[797,2,2,25,27],[799,2,2,27,29]]]],[392,827,915,1247,1586,1632,5345,5573,7223,8438,9922,12520,13101,13573,13584,13744,13751,14269,14595,15317,15709,15948,15990,16051,18624,20317,20319,20355,20373]]],["trouble",[3,3,[[12,1,1,0,1,[[359,1,1,0,1]]],[18,2,2,1,3,[[486,1,1,1,2],[508,1,1,2,3]]]],[10978,14034,14338]]]]},{"k":"H6041","v":[["*",[74,72,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,2,2,1,3,[[108,1,1,1,2],[112,1,1,2,3]]],[4,4,4,3,7,[[167,1,1,3,4],[176,3,3,4,7]]],[9,1,1,7,8,[[288,1,1,7,8]]],[17,7,7,8,15,[[459,3,3,8,11],[464,1,1,11,12],[469,1,1,12,13],[471,2,2,13,15]]],[18,28,26,15,41,[[486,1,1,15,16],[487,3,2,16,18],[489,1,1,18,19],[491,1,1,19,20],[495,1,1,20,21],[499,1,1,21,22],[502,1,1,22,23],[511,1,1,23,24],[512,2,1,24,25],[514,1,1,25,26],[517,1,1,26,27],[545,1,1,27,28],[546,1,1,28,29],[547,1,1,29,30],[549,3,3,30,33],[551,2,2,33,35],[559,1,1,35,36],[563,1,1,36,37],[565,1,1,37,38],[586,2,2,38,40],[617,1,1,40,41]]],[19,5,5,41,46,[[642,1,1,41,42],[649,1,1,42,43],[657,1,1,43,44],[658,2,2,44,46]]],[20,1,1,46,47,[[664,1,1,46,47]]],[22,13,13,47,60,[[681,2,2,47,49],[688,2,2,49,51],[692,1,1,51,52],[704,1,1,52,53],[710,1,1,53,54],[719,1,1,54,55],[727,1,1,55,56],[729,1,1,56,57],[732,1,1,57,58],[736,1,1,58,59],[744,1,1,59,60]]],[23,1,1,60,61,[[766,1,1,60,61]]],[25,4,4,61,65,[[817,1,1,61,62],[819,2,2,62,64],[823,1,1,64,65]]],[29,1,1,65,66,[[886,1,1,65,66]]],[34,1,1,66,67,[[905,1,1,66,67]]],[35,1,1,67,68,[[908,1,1,67,68]]],[37,4,4,68,72,[[917,1,1,68,69],[919,1,1,69,70],[921,2,2,70,72]]]],[2138,3291,3424,5330,5537,5539,5540,8630,13440,13445,13450,13544,13711,13742,13751,14039,14043,14050,14071,14086,14145,14228,14267,14394,14420,14464,14542,14910,14964,14976,15002,15004,15012,15067,15069,15236,15285,15323,15771,15777,16275,16822,17037,17265,17293,17304,17425,17721,17722,17852,17880,17960,18136,18266,18468,18649,18694,18734,18793,18924,19470,20811,20861,20866,21005,22485,22782,22832,22972,23008,23035,23039]]],["+",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20866]]],["afflicted",[14,14,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[18,6,6,2,8,[[495,1,1,2,3],[499,1,1,3,4],[502,1,1,4,5],[559,1,1,5,6],[565,1,1,6,7],[617,1,1,7,8]]],[19,2,2,8,10,[[642,1,1,8,9],[649,1,1,9,10]]],[22,3,3,10,13,[[727,1,1,10,11],[729,1,1,11,12],[732,1,1,12,13]]],[35,1,1,13,14,[[908,1,1,13,14]]]],[8630,13711,14145,14228,14267,15236,15323,16275,16822,17037,18649,18694,18734,22832]]],["lowly",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23008]]],["poor",[58,56,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,2,2,1,3,[[108,1,1,1,2],[112,1,1,2,3]]],[4,4,4,3,7,[[167,1,1,3,4],[176,3,3,4,7]]],[17,6,6,7,13,[[459,3,3,7,10],[464,1,1,10,11],[471,2,2,11,13]]],[18,22,20,13,33,[[486,1,1,13,14],[487,3,2,14,16],[489,1,1,16,17],[491,1,1,17,18],[511,1,1,18,19],[512,2,1,19,20],[514,1,1,20,21],[517,1,1,21,22],[545,1,1,22,23],[546,1,1,23,24],[547,1,1,24,25],[549,3,3,25,28],[551,2,2,28,30],[563,1,1,30,31],[586,2,2,31,33]]],[19,3,3,33,36,[[657,1,1,33,34],[658,2,2,34,36]]],[20,1,1,36,37,[[664,1,1,36,37]]],[22,10,10,37,47,[[681,2,2,37,39],[688,2,2,39,41],[692,1,1,41,42],[704,1,1,42,43],[710,1,1,43,44],[719,1,1,44,45],[736,1,1,45,46],[744,1,1,46,47]]],[23,1,1,47,48,[[766,1,1,47,48]]],[25,3,3,48,51,[[817,1,1,48,49],[819,1,1,49,50],[823,1,1,50,51]]],[29,1,1,51,52,[[886,1,1,51,52]]],[34,1,1,52,53,[[905,1,1,52,53]]],[37,3,3,53,56,[[917,1,1,53,54],[921,2,2,54,56]]]],[2138,3291,3424,5330,5537,5539,5540,13440,13445,13450,13544,13742,13751,14039,14043,14050,14071,14086,14394,14420,14464,14542,14910,14964,14976,15002,15004,15012,15067,15069,15285,15771,15777,17265,17293,17304,17425,17721,17722,17852,17880,17960,18136,18266,18468,18793,18924,19470,20811,20861,21005,22485,22782,22972,23035,23039]]]]},{"k":"H6042","v":[["Unni",[3,3,[[12,2,2,0,2,[[352,2,2,0,2]]],[15,1,1,2,3,[[424,1,1,2,3]]]],[10809,10811,12633]]]]},{"k":"H6043","v":[["Anaiah",[2,2,[[15,2,2,0,2,[[420,1,1,0,1],[422,1,1,1,2]]]],[12497,12571]]]]},{"k":"H6044","v":[["Anim",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6252]]]]},{"k":"H6045","v":[["*",[8,8,[[20,8,8,0,8,[[659,1,1,0,1],[660,2,2,1,3],[661,1,1,3,4],[662,1,1,4,5],[663,2,2,5,7],[666,1,1,7,8]]]],[17328,17356,17359,17369,17389,17400,17411,17474]]],["business",[2,2,[[20,2,2,0,2,[[663,1,1,0,1],[666,1,1,1,2]]]],[17400,17474]]],["travail",[6,6,[[20,6,6,0,6,[[659,1,1,0,1],[660,2,2,1,3],[661,1,1,3,4],[662,1,1,4,5],[663,1,1,5,6]]]],[17328,17356,17359,17369,17389,17411]]]]},{"k":"H6046","v":[["Anem",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10527]]]]},{"k":"H6047","v":[["Anamim",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[247,10263]]]]},{"k":"H6048","v":[["Anammelech",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10014]]]]},{"k":"H6049","v":[["*",[11,11,[[0,1,1,0,1,[[8,1,1,0,1]]],[2,1,1,1,2,[[108,1,1,1,2]]],[4,2,2,2,4,[[170,2,2,2,4]]],[6,1,1,4,5,[[219,1,1,4,5]]],[11,1,1,5,6,[[333,1,1,5,6]]],[13,1,1,6,7,[[399,1,1,6,7]]],[22,2,2,7,9,[[680,1,1,7,8],[735,1,1,8,9]]],[23,1,1,9,10,[[771,1,1,9,10]]],[32,1,1,10,11,[[897,1,1,10,11]]]],[219,3307,5394,5398,6791,10125,11914,17691,18768,19605,22645]]],["Meonenim",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6791]]],["bring",[1,1,[[0,1,1,0,1,[[8,1,1,0,1]]]],[219]]],["enchanters",[1,1,[[23,1,1,0,1,[[771,1,1,0,1]]]],[19605]]],["soothsayers",[2,2,[[22,1,1,0,1,[[680,1,1,0,1]]],[32,1,1,1,2,[[897,1,1,1,2]]]],[17691,22645]]],["sorceress",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18768]]],["times",[5,5,[[2,1,1,0,1,[[108,1,1,0,1]]],[4,2,2,1,3,[[170,2,2,1,3]]],[11,1,1,3,4,[[333,1,1,3,4]]],[13,1,1,4,5,[[399,1,1,4,5]]]],[3307,5394,5398,10125,11914]]]]},{"k":"H6050","v":[["clouds",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21946]]]]},{"k":"H6051","v":[["*",[87,80,[[0,4,3,0,3,[[8,4,3,0,3]]],[1,20,19,3,22,[[62,2,2,3,5],[63,3,3,5,8],[65,1,1,8,9],[68,2,2,9,11],[73,4,3,11,14],[82,2,2,14,16],[83,1,1,16,17],[89,5,5,17,22]]],[2,2,2,22,24,[[105,2,2,22,24]]],[3,20,16,24,40,[[125,11,8,24,32],[126,3,3,32,35],[127,1,1,35,36],[128,2,2,36,38],[130,2,1,38,39],[132,1,1,39,40]]],[4,5,4,40,44,[[153,1,1,40,41],[156,1,1,41,42],[157,1,1,42,43],[183,2,1,43,44]]],[10,2,2,44,46,[[298,2,2,44,46]]],[13,2,2,46,48,[[371,2,2,46,48]]],[15,2,2,48,50,[[421,2,2,48,50]]],[17,6,6,50,56,[[442,1,1,50,51],[461,2,2,51,53],[472,2,2,53,55],[473,1,1,55,56]]],[18,4,4,56,60,[[555,1,1,56,57],[574,1,1,57,58],[576,1,1,58,59],[582,1,1,59,60]]],[22,2,2,60,62,[[682,1,1,60,61],[722,1,1,61,62]]],[23,1,1,62,63,[[748,1,1,62,63]]],[24,1,1,63,64,[[799,1,1,63,64]]],[25,11,11,64,75,[[802,2,2,64,66],[809,1,1,66,67],[811,2,2,67,69],[831,2,2,69,71],[833,1,1,71,72],[835,1,1,72,73],[839,2,2,73,75]]],[27,2,2,75,77,[[867,1,1,75,76],[874,1,1,76,77]]],[28,1,1,77,78,[[877,1,1,77,78]]],[33,1,1,78,79,[[900,1,1,78,79]]],[35,1,1,79,80,[[906,1,1,79,80]]]],[218,219,221,1888,1889,1908,1909,1913,1957,2035,2042,2192,2193,2195,2482,2483,2501,2741,2742,2743,2744,2745,3203,3214,3980,3981,3982,3983,3984,3985,3986,3987,3999,4000,4022,4049,4064,4069,4122,4236,4925,5015,5075,5743,8995,8996,11281,11282,12523,12530,13017,13475,13476,13780,13784,13802,15127,15480,15506,15645,17738,18555,19040,20398,20468,20492,20615,20636,20637,21207,21222,21255,21325,21434,21441,22171,22269,22313,22687,22802]]],["Clouds",[1,1,[[18,1,1,0,1,[[574,1,1,0,1]]]],[15480]]],["cloud",[75,68,[[0,4,3,0,3,[[8,4,3,0,3]]],[1,18,17,3,20,[[62,2,2,3,5],[63,3,3,5,8],[65,1,1,8,9],[68,2,2,9,11],[73,4,3,11,14],[83,1,1,14,15],[89,5,5,15,20]]],[2,2,2,20,22,[[105,2,2,20,22]]],[3,20,16,22,38,[[125,11,8,22,30],[126,3,3,30,33],[127,1,1,33,34],[128,2,2,34,36],[130,2,1,36,37],[132,1,1,37,38]]],[4,4,3,38,41,[[153,1,1,38,39],[157,1,1,39,40],[183,2,1,40,41]]],[10,2,2,41,43,[[298,2,2,41,43]]],[13,2,2,43,45,[[371,2,2,43,45]]],[15,1,1,45,46,[[421,1,1,45,46]]],[17,6,6,46,52,[[442,1,1,46,47],[461,2,2,47,49],[472,2,2,49,51],[473,1,1,51,52]]],[18,2,2,52,54,[[555,1,1,52,53],[582,1,1,53,54]]],[22,2,2,54,56,[[682,1,1,54,55],[722,1,1,55,56]]],[24,1,1,56,57,[[799,1,1,56,57]]],[25,9,9,57,66,[[802,2,2,57,59],[809,1,1,59,60],[811,2,2,60,62],[831,1,1,62,63],[833,1,1,63,64],[839,2,2,64,66]]],[27,2,2,66,68,[[867,1,1,66,67],[874,1,1,67,68]]]],[218,219,221,1888,1889,1908,1909,1913,1957,2035,2042,2192,2193,2195,2501,2741,2742,2743,2744,2745,3203,3214,3980,3981,3982,3983,3984,3985,3986,3987,3999,4000,4022,4049,4064,4069,4122,4236,4925,5075,5743,8995,8996,11281,11282,12530,13017,13475,13476,13780,13784,13802,15127,15645,17738,18555,20398,20468,20492,20615,20636,20637,21222,21255,21434,21441,22171,22269]]],["clouds",[5,5,[[4,1,1,0,1,[[156,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]],[28,1,1,2,3,[[877,1,1,2,3]]],[33,1,1,3,4,[[900,1,1,3,4]]],[35,1,1,4,5,[[906,1,1,4,5]]]],[5015,19040,22313,22687,22802]]],["cloudy",[6,6,[[1,2,2,0,2,[[82,2,2,0,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[18,1,1,3,4,[[576,1,1,3,4]]],[25,2,2,4,6,[[831,1,1,4,5],[835,1,1,5,6]]]],[2482,2483,12523,15506,21207,21325]]]]},{"k":"H6052","v":[["Anan",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12575]]]]},{"k":"H6053","v":[["cloud",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12909]]]]},{"k":"H6054","v":[["Anani",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10385]]]]},{"k":"H6055","v":[["Ananiah",[2,2,[[15,2,2,0,2,[[415,1,1,0,1],[423,1,1,1,2]]]],[12350,12620]]]]},{"k":"H6056","v":[["*",[4,3,[[26,4,3,0,3,[[853,4,3,0,3]]]],[21849,21851,21858]]],["boughs",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21849]]],["branches",[3,2,[[26,3,2,0,2,[[853,3,2,0,2]]]],[21851,21858]]]]},{"k":"H6057","v":[["*",[7,7,[[2,1,1,0,1,[[112,1,1,0,1]]],[18,1,1,1,2,[[557,1,1,1,2]]],[25,4,4,2,6,[[818,2,2,2,4],[832,1,1,4,5],[837,1,1,5,6]]],[38,1,1,6,7,[[928,1,1,6,7]]]],[3442,15208,20833,20848,21233,21367,23139]]],["boughs",[3,3,[[2,1,1,0,1,[[112,1,1,0,1]]],[18,1,1,1,2,[[557,1,1,1,2]]],[25,1,1,2,3,[[818,1,1,2,3]]]],[3442,15208,20848]]],["branch",[1,1,[[38,1,1,0,1,[[928,1,1,0,1]]]],[23139]]],["branches",[3,3,[[25,3,3,0,3,[[818,1,1,0,1],[832,1,1,1,2],[837,1,1,2,3]]]],[20833,21233,21367]]]]},{"k":"H6058","v":[["branches",[1,1,[[25,1,1,0,1,[[820,1,1,0,1]]]],[20891]]]]},{"k":"H6059","v":[["*",[3,2,[[4,2,1,0,1,[[167,2,1,0,1]]],[18,1,1,1,2,[[550,1,1,1,2]]]],[5333,15026]]],["+",[2,1,[[4,2,1,0,1,[[167,2,1,0,1]]]],[5333]]],["chain",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15026]]]]},{"k":"H6060","v":[["*",[3,3,[[6,1,1,0,1,[[218,1,1,0,1]]],[19,1,1,1,2,[[628,1,1,1,2]]],[21,1,1,2,3,[[674,1,1,2,3]]]],[6745,16409,17591]]],["chain",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17591]]],["chains",[2,2,[[6,1,1,0,1,[[218,1,1,0,1]]],[19,1,1,1,2,[[628,1,1,1,2]]]],[6745,16409]]]]},{"k":"H6061","v":[["*",[9,8,[[3,3,3,0,3,[[129,3,3,0,3]]],[4,1,1,3,4,[[161,1,1,3,4]]],[5,4,3,4,7,[[201,3,2,4,6],[207,1,1,6,7]]],[6,1,1,7,8,[[211,1,1,7,8]]]],[4097,4103,4108,5159,6215,6216,6392,6529]]],["+",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6216]]],["Anak",[8,8,[[3,3,3,0,3,[[129,3,3,0,3]]],[4,1,1,3,4,[[161,1,1,3,4]]],[5,3,3,4,7,[[201,2,2,4,6],[207,1,1,6,7]]],[6,1,1,7,8,[[211,1,1,7,8]]]],[4097,4103,4108,5159,6215,6216,6392,6529]]]]},{"k":"H6062","v":[["Anakims",[9,9,[[4,5,5,0,5,[[153,1,1,0,1],[154,3,3,1,4],[161,1,1,4,5]]],[5,4,4,5,9,[[197,2,2,5,7],[200,2,2,7,9]]]],[4920,4948,4949,4959,5159,6128,6129,6199,6202]]]]},{"k":"H6063","v":[["Aner",[3,3,[[0,2,2,0,2,[[13,2,2,0,2]]],[12,1,1,2,3,[[343,1,1,2,3]]]],[349,360,10524]]]]},{"k":"H6064","v":[["*",[9,8,[[1,2,1,0,1,[[70,2,1,0,1]]],[4,1,1,1,2,[[174,1,1,1,2]]],[13,1,1,2,3,[[402,1,1,2,3]]],[19,4,4,3,7,[[644,1,1,3,4],[648,1,1,4,5],[649,1,1,5,6],[654,1,1,6,7]]],[29,1,1,7,8,[[880,1,1,7,8]]]],[2099,5489,11996,16899,16995,17018,17181,22387]]],["+",[3,2,[[1,2,1,0,1,[[70,2,1,0,1]]],[13,1,1,1,2,[[402,1,1,1,2]]]],[2099,11996]]],["amerce",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5489]]],["condemned",[1,1,[[29,1,1,0,1,[[880,1,1,0,1]]]],[22387]]],["punish",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16899]]],["punished",[3,3,[[19,3,3,0,3,[[648,1,1,0,1],[649,1,1,1,2],[654,1,1,2,3]]]],[16995,17018,17181]]]]},{"k":"H6065","v":[["confiscation",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12199]]]]},{"k":"H6066","v":[["*",[2,2,[[11,1,1,0,1,[[335,1,1,0,1]]],[19,1,1,1,2,[[646,1,1,1,2]]]],[10198,16944]]],["punishment",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16944]]],["tribute",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10198]]]]},{"k":"H6067","v":[["Anath",[2,2,[[6,2,2,0,2,[[213,1,1,0,1],[215,1,1,1,2]]]],[6599,6629]]]]},{"k":"H6068","v":[["Anathoth",[15,15,[[5,1,1,0,1,[[207,1,1,0,1]]],[10,1,1,1,2,[[292,1,1,1,2]]],[12,2,2,2,4,[[343,1,1,2,3],[344,1,1,3,4]]],[14,1,1,4,5,[[404,1,1,4,5]]],[15,3,3,5,8,[[419,1,1,5,6],[422,1,1,6,7],[423,1,1,7,8]]],[22,1,1,8,9,[[688,1,1,8,9]]],[23,6,6,9,15,[[745,1,1,9,10],[755,2,2,10,12],[776,3,3,12,15]]]],[6399,8796,10514,10543,12050,12447,12568,12620,17880,18947,19247,19249,19738,19739,19740]]]]},{"k":"H6069","v":[["*",[5,5,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,3,3,1,4,[[348,1,1,1,2],[349,1,1,2,3],[364,1,1,3,4]]],[23,1,1,4,5,[[773,1,1,4,5]]]],[8680,10701,10723,11121,19662]]],["Anathoth",[1,1,[[23,1,1,0,1,[[773,1,1,0,1]]]],[19662]]],["Anethothite",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8680]]],["Anetothite",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11121]]],["Antothite",[2,2,[[12,2,2,0,2,[[348,1,1,0,1],[349,1,1,1,2]]]],[10701,10723]]]]},{"k":"H6070","v":[["Antothijah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10599]]]]},{"k":"H6071","v":[["*",[5,5,[[21,1,1,0,1,[[678,1,1,0,1]]],[22,1,1,1,2,[[727,1,1,1,2]]],[28,2,2,2,4,[[876,1,1,2,3],[878,1,1,3,4]]],[29,1,1,4,5,[[887,1,1,4,5]]]],[17642,18662,22296,22361,22508]]],["+",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17642]]],["wine",[4,4,[[22,1,1,0,1,[[727,1,1,0,1]]],[28,2,2,1,3,[[876,1,1,1,2],[878,1,1,2,3]]],[29,1,1,3,4,[[887,1,1,3,4]]]],[18662,22296,22361,22508]]]]},{"k":"H6072","v":[["down",[1,1,[[38,1,1,0,1,[[928,1,1,0,1]]]],[23141]]]]},{"k":"H6073","v":[["branches",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15583]]]]},{"k":"H6074","v":[["leaves",[3,3,[[26,3,3,0,3,[[853,3,3,0,3]]]],[21849,21851,21858]]]]},{"k":"H6075","v":[["*",[2,2,[[3,1,1,0,1,[[130,1,1,0,1]]],[34,1,1,1,2,[[904,1,1,1,2]]]],[4152,22752]]],["presumed",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4152]]],["up",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22752]]]]},{"k":"H6076","v":[["*",[9,9,[[4,1,1,0,1,[[180,1,1,0,1]]],[8,5,5,1,6,[[240,3,3,1,4],[241,2,2,4,6]]],[11,1,1,6,7,[[317,1,1,6,7]]],[22,1,1,7,8,[[710,1,1,7,8]]],[32,1,1,8,9,[[896,1,1,8,9]]]],[5638,7325,7328,7331,7335,7336,9671,18273,22628]]],["emerods",[6,6,[[4,1,1,0,1,[[180,1,1,0,1]]],[8,5,5,1,6,[[240,3,3,1,4],[241,2,2,4,6]]]],[5638,7325,7328,7331,7335,7336]]],["forts",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18273]]],["hold",[1,1,[[32,1,1,0,1,[[896,1,1,0,1]]]],[22628]]],["tower",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9671]]]]},{"k":"H6077","v":[["Ophel",[5,5,[[13,2,2,0,2,[[393,1,1,0,1],[399,1,1,1,2]]],[15,3,3,2,5,[[415,2,2,2,4],[423,1,1,4,5]]]],[11758,11922,12353,12354,12609]]]]},{"k":"H6078","v":[["Ophni",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6317]]]]},{"k":"H6079","v":[["*",[10,10,[[17,3,3,0,3,[[438,1,1,0,1],[451,1,1,1,2],[476,1,1,2,3]]],[18,2,2,3,5,[[488,1,1,3,4],[609,1,1,4,5]]],[19,4,4,5,9,[[631,1,1,5,6],[633,2,2,6,8],[657,1,1,8,9]]],[23,1,1,9,10,[[753,1,1,9,10]]]],[12913,13254,13906,14063,16155,16515,16544,16565,17264,19193]]],["dawning",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12913]]],["eyelids",[9,9,[[17,2,2,0,2,[[451,1,1,0,1],[476,1,1,1,2]]],[18,2,2,2,4,[[488,1,1,2,3],[609,1,1,3,4]]],[19,4,4,4,8,[[631,1,1,4,5],[633,2,2,5,7],[657,1,1,7,8]]],[23,1,1,8,9,[[753,1,1,8,9]]]],[13254,13906,14063,16155,16515,16544,16565,17264,19193]]]]},{"k":"H6080","v":[["cast",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8439]]]]},{"k":"H6081","v":[["Epher",[4,4,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,3,3,1,4,[[338,1,1,1,2],[341,1,1,2,3],[342,1,1,3,4]]]],[662,10285,10402,10452]]]]},{"k":"H6082","v":[["young",[5,5,[[21,5,5,0,5,[[672,2,2,0,2],[674,1,1,2,3],[677,1,1,3,4],[678,1,1,4,5]]]],[17563,17571,17587,17630,17654]]]]},{"k":"H6083","v":[["*",[110,103,[[0,9,7,0,7,[[1,1,1,0,1],[2,3,2,1,3],[12,2,1,3,4],[17,1,1,4,5],[25,1,1,5,6],[27,1,1,6,7]]],[1,3,2,7,9,[[57,3,2,7,9]]],[2,4,4,9,13,[[103,3,3,9,12],[106,1,1,12,13]]],[3,3,3,13,16,[[121,1,1,13,14],[135,1,1,14,15],[139,1,1,15,16]]],[4,4,3,16,19,[[161,2,1,16,17],[180,1,1,17,18],[184,1,1,18,19]]],[5,1,1,19,20,[[193,1,1,19,20]]],[8,1,1,20,21,[[237,1,1,20,21]]],[9,2,2,21,23,[[282,1,1,21,22],[288,1,1,22,23]]],[10,3,3,23,26,[[306,1,1,23,24],[308,1,1,24,25],[310,1,1,25,26]]],[11,6,5,26,31,[[325,1,1,26,27],[335,5,4,27,31]]],[13,1,1,31,32,[[367,1,1,31,32]]],[15,2,2,32,34,[[416,2,2,32,34]]],[17,26,26,34,60,[[437,1,1,34,35],[439,1,1,35,36],[440,1,1,36,37],[442,2,2,37,39],[443,1,1,39,40],[445,1,1,40,41],[449,2,2,41,43],[451,1,1,43,44],[452,1,1,44,45],[454,1,1,45,46],[455,1,1,46,47],[456,1,1,47,48],[457,1,1,48,49],[462,1,1,49,50],[463,2,2,50,52],[465,2,2,52,54],[469,1,1,54,55],[473,1,1,55,56],[474,1,1,56,57],[475,1,1,57,58],[476,1,1,58,59],[477,1,1,59,60]]],[18,13,13,60,73,[[484,1,1,60,61],[495,1,1,61,62],[499,2,2,62,64],[507,1,1,64,65],[521,1,1,65,66],[549,1,1,66,67],[555,1,1,67,68],[579,1,1,68,69],[580,1,1,69,70],[581,1,1,70,71],[590,1,1,71,72],[596,1,1,72,73]]],[19,1,1,73,74,[[635,1,1,73,74]]],[20,3,2,74,76,[[661,2,1,74,75],[670,1,1,75,76]]],[22,15,14,76,90,[[680,2,2,76,78],[703,1,1,78,79],[704,2,2,79,81],[707,2,1,81,82],[712,2,2,82,84],[718,1,1,84,85],[719,1,1,85,86],[725,1,1,86,87],[727,1,1,87,88],[730,1,1,88,89],[743,1,1,89,90]]],[24,2,2,90,92,[[798,1,1,90,91],[799,1,1,91,92]]],[25,4,4,92,96,[[825,1,1,92,93],[827,2,2,93,95],[828,1,1,95,96]]],[26,1,1,96,97,[[861,1,1,96,97]]],[29,1,1,97,98,[[880,1,1,97,98]]],[32,2,2,98,100,[[893,1,1,98,99],[899,1,1,99,100]]],[34,1,1,100,101,[[903,1,1,100,101]]],[35,1,1,101,102,[[906,1,1,101,102]]],[37,1,1,102,103,[[919,1,1,102,103]]]],[37,69,74,334,451,707,787,1726,1727,3152,3153,3156,3248,3809,4306,4426,5178,5635,5782,5982,7248,8439,8645,9285,9379,9418,9878,10169,10171,10177,10180,11203,12361,12369,12903,12949,12957,13013,13029,13048,13095,13189,13200,13253,13276,13322,13337,13381,13413,13497,13506,13510,13563,13576,13698,13831,13848,13877,13921,13928,14000,14160,14219,14233,14328,14596,15009,15140,15535,15563,15600,15820,15923,16628,17379,17530,17695,17704,18130,18135,18149,18197,18310,18312,18432,18453,18600,18659,18698,18922,20342,20383,21063,21104,21112,21151,22083,22386,22589,22681,22741,22804,23002]]],["+",[11,10,[[3,1,1,0,1,[[135,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[17,4,4,2,6,[[440,1,1,2,3],[443,1,1,3,4],[445,1,1,4,5],[463,1,1,5,6]]],[18,1,1,6,7,[[590,1,1,6,7]]],[20,1,1,7,8,[[661,1,1,7,8]]],[22,3,2,8,10,[[707,2,1,8,9],[730,1,1,9,10]]]],[4306,7248,12957,13048,13095,13506,15820,17379,18197,18698]]],["ashes",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10169]]],["dust",[85,81,[[0,8,6,0,6,[[1,1,1,0,1],[2,3,2,1,3],[12,2,1,3,4],[17,1,1,4,5],[27,1,1,5,6]]],[1,3,2,6,8,[[57,3,2,6,8]]],[2,2,2,8,10,[[103,1,1,8,9],[106,1,1,9,10]]],[3,2,2,10,12,[[121,1,1,10,11],[139,1,1,11,12]]],[4,4,3,12,15,[[161,2,1,12,13],[180,1,1,13,14],[184,1,1,14,15]]],[5,1,1,15,16,[[193,1,1,15,16]]],[9,2,2,16,18,[[282,1,1,16,17],[288,1,1,17,18]]],[10,3,3,18,21,[[306,1,1,18,19],[308,1,1,19,20],[310,1,1,20,21]]],[11,2,2,21,23,[[325,1,1,21,22],[335,1,1,22,23]]],[13,1,1,23,24,[[367,1,1,23,24]]],[17,18,18,24,42,[[437,1,1,24,25],[439,1,1,25,26],[442,2,2,26,28],[449,1,1,28,29],[451,1,1,29,30],[452,1,1,30,31],[455,1,1,31,32],[456,1,1,32,33],[457,1,1,33,34],[462,1,1,34,35],[463,1,1,35,36],[465,1,1,36,37],[469,1,1,37,38],[473,1,1,38,39],[474,1,1,39,40],[475,1,1,40,41],[477,1,1,41,42]]],[18,12,12,42,54,[[484,1,1,42,43],[495,1,1,43,44],[499,2,2,44,46],[507,1,1,46,47],[521,1,1,47,48],[549,1,1,48,49],[555,1,1,49,50],[579,1,1,50,51],[580,1,1,51,52],[581,1,1,52,53],[596,1,1,53,54]]],[19,1,1,54,55,[[635,1,1,54,55]]],[20,2,2,55,57,[[661,1,1,55,56],[670,1,1,56,57]]],[22,11,11,57,68,[[680,1,1,57,58],[703,1,1,58,59],[704,2,2,59,61],[712,2,2,61,63],[718,1,1,63,64],[719,1,1,64,65],[725,1,1,65,66],[727,1,1,66,67],[743,1,1,67,68]]],[24,2,2,68,70,[[798,1,1,68,69],[799,1,1,69,70]]],[25,4,4,70,74,[[825,1,1,70,71],[827,2,2,71,73],[828,1,1,73,74]]],[26,1,1,74,75,[[861,1,1,74,75]]],[29,1,1,75,76,[[880,1,1,75,76]]],[32,2,2,76,78,[[893,1,1,76,77],[899,1,1,77,78]]],[34,1,1,78,79,[[903,1,1,78,79]]],[35,1,1,79,80,[[906,1,1,79,80]]],[37,1,1,80,81,[[919,1,1,80,81]]]],[37,69,74,334,451,787,1726,1727,3152,3248,3809,4426,5178,5635,5782,5982,8439,8645,9285,9379,9418,9878,10177,11203,12903,12949,13013,13029,13200,13253,13276,13337,13381,13413,13497,13510,13576,13698,13831,13848,13877,13928,14000,14160,14219,14233,14328,14596,15009,15140,15535,15563,15600,15923,16628,17379,17530,17695,18130,18135,18149,18310,18312,18432,18453,18600,18659,18922,20342,20383,21063,21104,21112,21151,22083,22386,22589,22681,22741,22804,23002]]],["earth",[5,5,[[0,1,1,0,1,[[25,1,1,0,1]]],[17,3,3,1,4,[[454,1,1,1,2],[465,1,1,2,3],[476,1,1,3,4]]],[22,1,1,4,5,[[680,1,1,4,5]]]],[707,13322,13563,13921,17704]]],["ground",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13189]]],["morter",[2,2,[[2,2,2,0,2,[[103,2,2,0,2]]]],[3153,3156]]],["powder",[3,2,[[11,3,2,0,2,[[335,3,2,0,2]]]],[10171,10180]]],["rubbish",[2,2,[[15,2,2,0,2,[[416,2,2,0,2]]]],[12361,12369]]]]},{"k":"H6084","v":[["Ophrah",[8,8,[[5,1,1,0,1,[[204,1,1,0,1]]],[6,5,5,1,6,[[216,2,2,1,3],[218,2,2,3,5],[219,1,1,5,6]]],[8,1,1,6,7,[[248,1,1,6,7]]],[12,1,1,7,8,[[341,1,1,7,8]]]],[6316,6665,6678,6746,6751,6759,7502,10399]]]]},{"k":"H6085","v":[["*",[14,12,[[0,12,10,0,10,[[22,8,6,0,6],[24,1,1,6,7],[48,2,2,7,9],[49,1,1,9,10]]],[5,1,1,10,11,[[201,1,1,10,11]]],[13,1,1,11,12,[[379,1,1,11,12]]]],[579,581,584,585,587,588,667,1502,1503,1519,6211,11472]]],["+",[1,1,[[0,1,1,0,1,[[22,1,1,0,1]]]],[587]]],["Ephrain",[1,1,[[13,1,1,0,1,[[379,1,1,0,1]]]],[11472]]],["Ephron",[12,11,[[0,11,10,0,10,[[22,7,6,0,6],[24,1,1,6,7],[48,2,2,7,9],[49,1,1,9,10]]],[5,1,1,10,11,[[201,1,1,10,11]]]],[579,581,584,585,587,588,667,1502,1503,1519,6211]]]]},{"k":"H6086","v":[["*",[329,287,[[0,30,25,0,25,[[0,4,3,0,3],[1,5,3,3,6],[2,11,10,6,16],[5,1,1,16,17],[17,2,2,17,19],[21,5,4,19,23],[22,1,1,23,24],[39,1,1,24,25]]],[1,31,30,25,55,[[56,1,1,25,26],[58,1,1,26,27],[59,3,2,27,29],[64,1,1,29,30],[74,5,5,30,35],[75,2,2,35,37],[76,2,2,37,39],[79,2,2,39,41],[80,1,1,41,42],[84,3,3,42,45],[85,2,2,45,47],[86,6,6,47,53],[87,2,2,53,55]]],[2,21,20,55,75,[[90,4,4,55,59],[92,1,1,59,60],[93,1,1,60,61],[95,1,1,61,62],[100,1,1,62,63],[103,6,6,63,69],[104,1,1,69,70],[108,1,1,70,71],[112,2,1,71,72],[115,2,2,72,74],[116,1,1,74,75]]],[3,6,6,75,81,[[129,1,1,75,76],[131,2,2,76,78],[135,1,1,78,79],[147,1,1,79,80],[151,1,1,80,81]]],[4,20,16,81,97,[[156,1,1,81,82],[162,2,2,82,84],[164,1,1,84,85],[168,1,1,85,86],[171,3,1,86,87],[172,4,2,87,89],[173,2,2,89,91],[174,1,1,91,92],[180,3,3,92,95],[181,2,2,95,97]]],[5,9,7,97,104,[[188,1,1,97,98],[194,2,1,98,99],[195,3,3,99,102],[196,3,2,102,104]]],[6,10,10,104,114,[[216,1,1,104,105],[219,9,9,105,114]]],[8,1,1,114,115,[[241,1,1,114,115]]],[9,6,5,115,120,[[271,2,1,115,116],[272,1,1,116,117],[287,1,1,117,118],[289,1,1,118,119],[290,1,1,119,120]]],[10,29,22,120,142,[[294,1,1,120,121],[295,6,4,121,125],[296,7,7,125,132],[299,2,1,132,133],[300,3,2,133,135],[304,1,1,135,136],[305,1,1,136,137],[307,2,2,137,139],[308,6,3,139,142]]],[11,10,10,142,152,[[315,2,2,142,144],[318,2,2,144,146],[324,2,2,146,148],[328,1,1,148,149],[329,1,1,149,150],[331,1,1,150,151],[334,1,1,151,152]]],[12,11,8,152,160,[[351,2,1,152,153],[353,1,1,153,154],[357,1,1,154,155],[358,1,1,155,156],[359,4,3,156,159],[366,2,1,159,160]]],[13,12,11,160,171,[[368,6,5,160,165],[369,1,1,165,166],[375,2,2,166,168],[382,1,1,168,169],[394,1,1,169,170],[400,1,1,170,171]]],[14,1,1,171,172,[[405,1,1,171,172]]],[15,9,8,172,180,[[414,1,1,172,173],[420,3,2,173,175],[421,1,1,175,176],[422,3,3,176,179],[425,1,1,179,180]]],[16,9,8,180,188,[[427,1,1,180,181],[430,2,1,181,182],[431,1,1,182,183],[432,2,2,183,185],[433,1,1,185,186],[434,2,2,186,188]]],[17,4,4,188,192,[[449,1,1,188,189],[454,1,1,189,190],[459,1,1,190,191],[476,1,1,191,192]]],[18,6,6,192,198,[[478,1,1,192,193],[551,1,1,193,194],[573,1,1,194,195],[581,1,1,195,196],[582,1,1,196,197],[625,1,1,197,198]]],[19,6,6,198,204,[[630,1,1,198,199],[638,1,1,199,200],[640,1,1,200,201],[642,1,1,201,202],[653,2,2,202,204]]],[20,5,4,204,208,[[660,2,2,204,206],[668,1,1,206,207],[669,2,1,207,208]]],[21,3,3,208,211,[[672,1,1,208,209],[673,1,1,209,210],[674,1,1,210,211]]],[22,17,17,211,228,[[685,1,1,211,212],[688,2,2,212,214],[708,1,1,214,215],[715,1,1,215,216],[718,1,1,216,217],[719,1,1,217,218],[722,4,4,218,222],[723,1,1,222,223],[733,1,1,223,224],[734,1,1,224,225],[735,1,1,225,226],[738,1,1,226,227],[743,1,1,227,228]]],[23,15,15,228,243,[[746,2,2,228,230],[747,3,3,230,233],[749,1,1,233,234],[751,2,2,234,236],[754,2,2,236,238],[755,1,1,238,239],[761,2,2,239,241],[772,1,1,241,242],[790,1,1,242,243]]],[24,3,3,243,246,[[800,1,1,243,244],[801,2,2,244,246]]],[25,45,31,246,277,[[807,1,1,246,247],[816,6,3,247,250],[818,5,1,250,251],[821,4,3,251,254],[822,1,1,254,255],[825,1,1,255,256],[827,1,1,256,257],[832,9,8,257,265],[835,1,1,265,266],[837,1,1,266,267],[838,8,4,267,271],[840,1,1,271,272],[842,4,3,272,275],[848,2,2,275,277]]],[27,1,1,277,278,[[865,1,1,277,278]]],[28,3,3,278,281,[[876,2,2,278,280],[877,1,1,280,281]]],[34,2,2,281,283,[[904,2,2,281,283]]],[36,2,2,283,285,[[909,1,1,283,284],[910,1,1,284,285]]],[37,2,2,285,287,[[915,1,1,285,286],[922,1,1,286,287]]]],[10,11,28,39,46,47,56,57,58,61,63,66,67,72,77,79,151,428,432,550,553,554,556,588,1191,1704,1767,1782,1792,1945,2200,2205,2208,2218,2223,2250,2261,2273,2278,2383,2387,2425,2538,2555,2564,2586,2597,2605,2608,2614,2619,2629,2632,2634,2639,2752,2753,2757,2762,2783,2807,2861,3029,3115,3117,3156,3160,3162,3163,3180,3304,3442,3528,3544,3600,4095,4185,4186,4295,4684,4863,5032,5187,5189,5242,5363,5411,5446,5447,5469,5470,5476,5647,5653,5675,5690,5696,5875,6031,6058,6060,6064,6090,6091,6680,6762,6763,6764,6765,6766,6767,6768,6769,6802,7345,8143,8162,8599,8660,8714,8877,8884,8886,8888,8896,8906,8911,8919,8927,8928,8929,8930,9062,9090,9091,9241,9271,9327,9329,9364,9374,9379,9595,9601,9678,9680,9861,9862,9967,9993,10079,10151,10775,10853,10931,10957,10968,10978,10979,11166,11219,11220,11221,11225,11227,11234,11374,11375,11515,11768,11944,12104,12315,12497,12508,12536,12583,12584,12586,12702,12747,12793,12797,12816,12817,12824,12847,12859,13188,13307,13456,13915,13942,15053,15477,15587,15639,16380,16473,16718,16759,16811,17161,17162,17338,17339,17502,17516,17557,17580,17596,17784,17865,17869,18250,18371,18440,18470,18546,18547,18552,18556,18581,18752,18756,18770,18838,18919,18985,18992,19008,19011,19015,19072,19137,19139,19204,19209,19245,19359,19365,19631,20067,20428,20446,20455,20576,20756,20757,20760,20849,20923,20927,20942,20954,21066,21112,21234,21235,21238,21239,21244,21245,21246,21248,21340,21389,21413,21414,21416,21417,21458,21542,21548,21551,21686,21691,22145,22303,22310,22333,22759,22767,22848,22874,22940,23051]]],["+",[12,12,[[0,3,3,0,3,[[1,1,1,0,1],[2,1,1,1,2],[21,1,1,2,3]]],[2,1,1,3,4,[[90,1,1,3,4]]],[5,1,1,4,5,[[196,1,1,4,5]]],[9,1,1,5,6,[[271,1,1,5,6]]],[11,1,1,6,7,[[324,1,1,6,7]]],[12,1,1,7,8,[[351,1,1,7,8]]],[15,1,1,8,9,[[420,1,1,8,9]]],[21,1,1,9,10,[[673,1,1,9,10]]],[22,1,1,10,11,[[722,1,1,10,11]]],[34,1,1,11,12,[[904,1,1,11,12]]]],[47,77,556,2752,6091,8143,9861,10775,12508,17580,18546,22759]]],["gallows",[8,7,[[16,8,7,0,7,[[430,2,1,0,1],[431,1,1,1,2],[432,2,2,2,4],[433,1,1,4,5],[434,2,2,5,7]]]],[12793,12797,12816,12817,12824,12847,12859]]],["helve",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5411]]],["planks",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21551]]],["staff",[3,3,[[9,2,2,0,2,[[287,1,1,0,1],[289,1,1,1,2]]],[12,1,1,2,3,[[357,1,1,2,3]]]],[8599,8660,10931]]],["stalks",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5875]]],["stick",[9,5,[[11,1,1,0,1,[[318,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]],[25,7,3,2,5,[[838,7,3,2,5]]]],[9680,20428,21413,21414,21416]]],["sticks",[5,5,[[3,2,2,0,2,[[131,2,2,0,2]]],[10,2,2,2,4,[[307,2,2,2,4]]],[25,1,1,4,5,[[838,1,1,4,5]]]],[4185,4186,9327,9329,21417]]],["stock",[2,2,[[23,2,2,0,2,[[746,1,1,0,1],[754,1,1,1,2]]]],[18992,19209]]],["stocks",[2,2,[[23,1,1,0,1,[[747,1,1,0,1]]],[27,1,1,1,2,[[865,1,1,1,2]]]],[19011,22145]]],["timber",[22,21,[[1,1,1,0,1,[[80,1,1,0,1]]],[2,1,1,1,2,[[103,1,1,1,2]]],[10,6,5,2,7,[[295,4,3,2,5],[296,1,1,5,6],[305,1,1,6,7]]],[11,2,2,7,9,[[324,1,1,7,8],[334,1,1,8,9]]],[12,3,3,9,12,[[351,1,1,9,10],[359,2,2,10,12]]],[13,6,6,12,18,[[368,4,4,12,16],[382,1,1,16,17],[400,1,1,17,18]]],[15,1,1,18,19,[[414,1,1,18,19]]],[25,1,1,19,20,[[827,1,1,19,20]]],[37,1,1,20,21,[[915,1,1,20,21]]]],[2425,3156,8884,8886,8896,8906,9271,9862,10151,10775,10978,10979,11219,11220,11221,11225,11515,11944,12315,21112,22940]]],["tree",[82,71,[[0,19,15,0,15,[[0,4,3,0,3],[1,4,2,3,5],[2,8,7,5,12],[17,2,2,12,14],[39,1,1,14,15]]],[1,3,3,15,18,[[58,1,1,15,16],[59,1,1,16,17],[64,1,1,17,18]]],[2,1,1,18,19,[[116,1,1,18,19]]],[4,6,6,19,25,[[164,1,1,19,20],[171,1,1,20,21],[172,1,1,21,22],[173,2,2,22,24],[174,1,1,24,25]]],[5,2,1,25,26,[[194,2,1,25,26]]],[10,6,6,26,32,[[296,5,5,26,31],[304,1,1,31,32]]],[11,3,3,32,35,[[315,1,1,32,33],[328,1,1,33,34],[329,1,1,34,35]]],[13,2,2,35,37,[[369,1,1,35,36],[394,1,1,36,37]]],[16,1,1,37,38,[[427,1,1,37,38]]],[17,3,3,38,41,[[449,1,1,38,39],[454,1,1,39,40],[459,1,1,40,41]]],[18,1,1,41,42,[[478,1,1,41,42]]],[19,4,4,42,46,[[630,1,1,42,43],[638,1,1,43,44],[640,1,1,44,45],[642,1,1,45,46]]],[20,2,1,46,47,[[669,2,1,46,47]]],[22,7,7,47,54,[[718,1,1,47,48],[719,1,1,48,49],[722,2,2,49,51],[734,1,1,51,52],[735,1,1,52,53],[743,1,1,53,54]]],[23,6,6,54,60,[[746,1,1,54,55],[747,2,2,55,57],[754,1,1,57,58],[755,1,1,58,59],[761,1,1,59,60]]],[25,14,9,60,69,[[807,1,1,60,61],[816,3,2,61,63],[818,4,1,63,64],[821,2,1,64,65],[822,1,1,65,66],[832,1,1,66,67],[835,1,1,67,68],[837,1,1,68,69]]],[28,1,1,69,70,[[877,1,1,69,70]]],[36,1,1,70,71,[[910,1,1,70,71]]]],[10,11,28,39,46,56,58,61,66,67,72,79,428,432,1191,1767,1782,1945,3600,5242,5411,5446,5469,5470,5476,6031,8919,8927,8928,8929,8930,9241,9595,9967,9993,11234,11768,12747,13188,13307,13456,13942,16473,16718,16759,16811,17516,18440,18470,18552,18556,18756,18770,18919,18985,19008,19015,19204,19245,19365,20576,20756,20760,20849,20942,20954,21238,21340,21389,22333,22874]]],["trees",[77,69,[[0,3,3,0,3,[[2,2,2,0,2],[22,1,1,2,3]]],[1,2,1,3,4,[[59,2,1,3,4]]],[2,5,4,4,8,[[108,1,1,4,5],[112,2,1,5,6],[115,2,2,6,8]]],[4,5,4,8,12,[[168,1,1,8,9],[172,3,2,9,11],[180,1,1,11,12]]],[5,2,1,12,13,[[196,2,1,12,13]]],[6,9,9,13,22,[[219,9,9,13,22]]],[9,1,1,22,23,[[271,1,1,22,23]]],[10,8,5,23,28,[[294,1,1,23,24],[295,2,1,24,25],[299,2,1,25,26],[300,3,2,26,28]]],[11,1,1,28,29,[[315,1,1,28,29]]],[12,2,2,29,31,[[353,1,1,29,30],[359,1,1,30,31]]],[13,3,3,31,34,[[368,1,1,31,32],[375,2,2,32,34]]],[14,1,1,34,35,[[405,1,1,34,35]]],[15,4,4,35,39,[[420,1,1,35,36],[421,1,1,36,37],[422,2,2,37,39]]],[18,5,5,39,44,[[551,1,1,39,40],[573,1,1,40,41],[581,1,1,41,42],[582,1,1,42,43],[625,1,1,43,44]]],[20,2,2,44,46,[[660,2,2,44,46]]],[21,2,2,46,48,[[672,1,1,46,47],[674,1,1,47,48]]],[22,4,4,48,52,[[685,1,1,48,49],[688,1,1,49,50],[722,1,1,50,51],[733,1,1,51,52]]],[23,2,2,52,54,[[751,1,1,52,53],[761,1,1,53,54]]],[25,14,13,54,67,[[816,2,2,54,56],[818,1,1,56,57],[821,1,1,57,58],[832,8,7,58,65],[848,2,2,65,67]]],[28,2,2,67,69,[[876,2,2,67,69]]]],[57,63,588,1792,3304,3442,3528,3544,5363,5446,5447,5653,6090,6762,6763,6764,6765,6766,6767,6768,6769,6802,8143,8877,8888,9062,9090,9091,9601,10853,10968,11219,11374,11375,12104,12508,12536,12584,12586,15053,15477,15587,15639,16380,17338,17339,17557,17596,17784,17869,18547,18752,19139,19359,20756,20760,20849,20923,21234,21235,21239,21244,21245,21246,21248,21686,21691,22303,22310]]],["wood",[104,99,[[0,5,5,0,5,[[5,1,1,0,1],[21,4,4,1,5]]],[1,25,25,5,30,[[56,1,1,5,6],[74,5,5,6,11],[75,2,2,11,13],[76,2,2,13,15],[79,2,2,15,17],[84,3,3,17,20],[85,2,2,20,22],[86,6,6,22,28],[87,2,2,28,30]]],[2,13,13,30,43,[[90,3,3,30,33],[92,1,1,33,34],[93,1,1,34,35],[95,1,1,35,36],[100,1,1,36,37],[103,5,5,37,42],[104,1,1,42,43]]],[3,4,4,43,47,[[129,1,1,43,44],[135,1,1,44,45],[147,1,1,45,46],[151,1,1,46,47]]],[4,8,8,47,55,[[156,1,1,47,48],[162,2,2,48,50],[171,1,1,50,51],[180,2,2,51,53],[181,2,2,53,55]]],[5,3,3,55,58,[[195,3,3,55,58]]],[6,1,1,58,59,[[216,1,1,58,59]]],[8,1,1,59,60,[[241,1,1,59,60]]],[9,2,2,60,62,[[272,1,1,60,61],[290,1,1,61,62]]],[10,7,4,62,66,[[296,1,1,62,63],[308,6,3,63,66]]],[11,2,2,66,68,[[318,1,1,66,67],[331,1,1,67,68]]],[12,4,3,68,71,[[358,1,1,68,69],[359,1,1,69,70],[366,2,1,70,71]]],[13,1,1,71,72,[[368,1,1,71,72]]],[15,3,3,72,75,[[420,1,1,72,73],[422,1,1,73,74],[425,1,1,74,75]]],[17,1,1,75,76,[[476,1,1,75,76]]],[19,2,2,76,78,[[653,2,2,76,78]]],[20,1,1,78,79,[[668,1,1,78,79]]],[22,5,5,79,84,[[688,1,1,79,80],[708,1,1,80,81],[715,1,1,81,82],[723,1,1,82,83],[738,1,1,83,84]]],[23,4,4,84,88,[[749,1,1,84,85],[751,1,1,85,86],[772,1,1,86,87],[790,1,1,87,88]]],[24,2,2,88,90,[[801,2,2,88,90]]],[25,7,6,90,96,[[816,1,1,90,91],[821,1,1,91,92],[825,1,1,92,93],[840,1,1,93,94],[842,3,2,94,96]]],[34,1,1,96,97,[[904,1,1,96,97]]],[36,1,1,97,98,[[909,1,1,97,98]]],[37,1,1,98,99,[[922,1,1,98,99]]]],[151,550,553,554,556,1704,2200,2205,2208,2218,2223,2250,2261,2273,2278,2383,2387,2538,2555,2564,2586,2597,2605,2608,2614,2619,2629,2632,2634,2639,2753,2757,2762,2783,2807,2861,3029,3115,3117,3160,3162,3163,3180,4095,4295,4684,4863,5032,5187,5189,5411,5647,5675,5690,5696,6058,6060,6064,6680,7345,8162,8714,8911,9364,9374,9379,9678,10079,10957,10968,11166,11227,12497,12583,12702,13915,17161,17162,17502,17865,18250,18371,18581,18838,19072,19137,19631,20067,20446,20455,20757,20927,21066,21458,21542,21548,22767,22848,23051]]]]},{"k":"H6087","v":[["*",[17,17,[[0,3,3,0,3,[[5,1,1,0,1],[33,1,1,1,2],[44,1,1,2,3]]],[8,2,2,3,5,[[255,2,2,3,5]]],[9,1,1,5,6,[[285,1,1,5,6]]],[10,1,1,6,7,[[291,1,1,6,7]]],[12,1,1,7,8,[[341,1,1,7,8]]],[15,2,2,8,10,[[420,2,2,8,10]]],[17,1,1,10,11,[[445,1,1,10,11]]],[18,2,2,11,13,[[533,1,1,11,12],[555,1,1,12,13]]],[20,1,1,13,14,[[668,1,1,13,14]]],[22,2,2,14,16,[[732,1,1,14,15],[741,1,1,15,16]]],[23,1,1,16,17,[[788,1,1,16,17]]]],[143,987,1363,7733,7764,8513,8723,10395,12503,12504,13094,14760,15153,17502,18729,18876,20029]]],["+",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18876]]],["displeased",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8723]]],["grieve",[2,2,[[12,1,1,0,1,[[341,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[10395,15153]]],["grieved",[8,8,[[0,3,3,0,3,[[5,1,1,0,1],[33,1,1,1,2],[44,1,1,2,3]]],[8,2,2,3,5,[[255,2,2,3,5]]],[9,1,1,5,6,[[285,1,1,5,6]]],[15,1,1,6,7,[[420,1,1,6,7]]],[22,1,1,7,8,[[732,1,1,7,8]]]],[143,987,1363,7733,7764,8513,12504,18729]]],["hurt",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17502]]],["made",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13094]]],["sorry",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12503]]],["worship",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20029]]],["wrest",[1,1,[[18,1,1,0,1,[[533,1,1,0,1]]]],[14760]]]]},{"k":"H6088","v":[["lamentable",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21925]]]]},{"k":"H6089","v":[["*",[7,7,[[0,1,1,0,1,[[2,1,1,0,1]]],[18,1,1,1,2,[[604,1,1,1,2]]],[19,4,4,2,6,[[632,1,1,2,3],[637,1,1,3,4],[641,1,1,4,5],[642,1,1,5,6]]],[23,1,1,6,7,[[766,1,1,6,7]]]],[71,16123,16527,16678,16795,16808,19482]]],["grievous",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16808]]],["idol",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19482]]],["labour",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16795]]],["labours",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16527]]],["sorrow",[2,2,[[0,1,1,0,1,[[2,1,1,0,1]]],[19,1,1,1,2,[[637,1,1,1,2]]]],[71,16678]]],["sorrows",[1,1,[[18,1,1,0,1,[[604,1,1,0,1]]]],[16123]]]]},{"k":"H6090","v":[["*",[4,4,[[12,1,1,0,1,[[341,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]],[22,2,2,2,4,[[692,1,1,2,3],[726,1,1,3,4]]]],[10394,16263,17931,18619]]],["+",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17931]]],["idol",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18619]]],["sorrow",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10394]]],["wicked",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16263]]]]},{"k":"H6091","v":[["*",[17,17,[[8,1,1,0,1,[[266,1,1,0,1]]],[9,1,1,1,2,[[271,1,1,1,2]]],[12,1,1,2,3,[[347,1,1,2,3]]],[13,1,1,3,4,[[390,1,1,3,4]]],[18,4,4,4,8,[[583,2,2,4,6],[592,1,1,6,7],[612,1,1,7,8]]],[22,2,2,8,10,[[688,1,1,8,9],[724,1,1,9,10]]],[23,1,1,10,11,[[794,1,1,10,11]]],[27,4,4,11,15,[[865,1,1,11,12],[869,1,1,12,13],[874,1,1,13,14],[875,1,1,14,15]]],[32,1,1,15,16,[[893,1,1,15,16]]],[37,1,1,16,17,[[923,1,1,16,17]]]],[8018,8153,10668,11695,15687,15689,15834,16190,17861,18587,20168,22150,22198,22268,22290,22586,23061]]],["idols",[16,16,[[8,1,1,0,1,[[266,1,1,0,1]]],[12,1,1,1,2,[[347,1,1,1,2]]],[13,1,1,2,3,[[390,1,1,2,3]]],[18,4,4,3,7,[[583,2,2,3,5],[592,1,1,5,6],[612,1,1,6,7]]],[22,2,2,7,9,[[688,1,1,7,8],[724,1,1,8,9]]],[23,1,1,9,10,[[794,1,1,9,10]]],[27,4,4,10,14,[[865,1,1,10,11],[869,1,1,11,12],[874,1,1,12,13],[875,1,1,13,14]]],[32,1,1,14,15,[[893,1,1,14,15]]],[37,1,1,15,16,[[923,1,1,15,16]]]],[8018,10668,11695,15687,15689,15834,16190,17861,18587,20168,22150,22198,22268,22290,22586,23061]]],["images",[1,1,[[9,1,1,0,1,[[271,1,1,0,1]]]],[8153]]]]},{"k":"H6092","v":[["labours",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18789]]]]},{"k":"H6093","v":[["*",[3,3,[[0,3,3,0,3,[[2,2,2,0,2],[4,1,1,2,3]]]],[71,72,134]]],["+",[1,1,[[0,1,1,0,1,[[4,1,1,0,1]]]],[134]]],["sorrow",[2,2,[[0,2,2,0,2,[[2,2,2,0,2]]]],[71,72]]]]},{"k":"H6094","v":[["*",[5,5,[[17,1,1,0,1,[[444,1,1,0,1]]],[18,2,2,1,3,[[493,1,1,1,2],[624,1,1,2,3]]],[19,2,2,3,5,[[637,1,1,3,4],[642,1,1,4,5]]]],[13079,14096,16354,16666,16820]]],["sorrow",[2,2,[[19,2,2,0,2,[[637,1,1,0,1],[642,1,1,1,2]]]],[16666,16820]]],["sorrows",[2,2,[[17,1,1,0,1,[[444,1,1,0,1]]],[18,1,1,1,2,[[493,1,1,1,2]]]],[13079,14096]]],["wounds",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16354]]]]},{"k":"H6095","v":[["shutteth",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16870]]]]},{"k":"H6096","v":[["backbone",[1,1,[[2,1,1,0,1,[[92,1,1,0,1]]]],[2787]]]]},{"k":"H6097","v":[["trees",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19095]]]]},{"k":"H6098","v":[["*",[88,85,[[4,1,1,0,1,[[184,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[9,10,7,2,9,[[281,2,2,2,4],[282,3,2,4,6],[283,5,3,6,9]]],[10,4,4,9,13,[[291,1,1,9,10],[302,3,3,10,13]]],[11,1,1,13,14,[[330,1,1,13,14]]],[12,1,1,14,15,[[349,1,1,14,15]]],[13,5,5,15,20,[[376,3,3,15,18],[388,1,1,18,19],[391,1,1,19,20]]],[14,3,3,20,23,[[406,1,1,20,21],[412,2,2,21,23]]],[15,1,1,23,24,[[416,1,1,23,24]]],[17,9,9,24,33,[[440,1,1,24,25],[445,1,1,25,26],[447,1,1,26,27],[453,1,1,27,28],[456,1,1,28,29],[457,1,1,29,30],[464,1,1,30,31],[473,1,1,31,32],[477,1,1,32,33]]],[18,11,11,33,44,[[478,1,1,33,34],[490,1,1,34,35],[491,1,1,35,36],[497,1,1,36,37],[510,2,2,37,39],[550,1,1,39,40],[583,2,2,40,42],[584,1,1,42,43],[596,1,1,43,44]]],[19,10,10,44,54,[[628,2,2,44,46],[635,1,1,46,47],[639,1,1,47,48],[646,2,2,48,50],[647,2,2,50,52],[648,1,1,52,53],[654,1,1,53,54]]],[22,18,18,54,72,[[683,1,1,54,55],[686,1,1,55,56],[689,1,1,56,57],[692,1,1,57,58],[694,1,1,58,59],[697,3,3,59,62],[703,1,1,62,63],[706,1,1,63,64],[707,1,1,64,65],[708,1,1,65,66],[714,1,1,66,67],[718,1,1,67,68],[722,1,1,68,69],[724,2,2,69,71],[725,1,1,71,72]]],[23,8,8,72,80,[[762,2,2,72,74],[763,1,1,74,75],[776,1,1,75,76],[793,3,3,76,79],[794,1,1,79,80]]],[25,2,2,80,82,[[808,1,1,80,81],[812,1,1,81,82]]],[27,1,1,82,83,[[871,1,1,82,83]]],[32,1,1,83,84,[[896,1,1,83,84]]],[37,1,1,84,85,[[916,1,1,84,85]]]],[5786,7061,8420,8423,8446,8449,8456,8463,8472,8729,9159,9164,9165,10044,10739,11403,11408,11409,11649,11720,12115,12255,12260,12374,12964,13089,13141,13283,13371,13407,13553,13795,13925,13940,14076,14086,14186,14376,14377,15044,15664,15694,15710,15922,16425,16430,16616,16734,16945,16946,16959,16972,17014,17178,17758,17817,17886,17954,17972,18007,18015,18021,18119,18193,18208,18218,18335,18433,18559,18596,18597,18612,19402,19407,19414,19750,20134,20147,20157,20211,20603,20657,22231,22632,22960]]],["+",[7,7,[[9,1,1,0,1,[[283,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[19,1,1,3,4,[[654,1,1,3,4]]],[22,2,2,4,6,[[686,1,1,4,5],[718,1,1,5,6]]],[27,1,1,6,7,[[871,1,1,6,7]]]],[8463,12374,15922,17178,17817,18433,22231]]],["Counsel",[2,2,[[19,2,2,0,2,[[635,1,1,0,1],[647,1,1,1,2]]]],[16616,16959]]],["advice",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11409]]],["advisement",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10739]]],["counsel",[73,71,[[4,1,1,0,1,[[184,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[9,9,7,2,9,[[281,2,2,2,4],[282,3,2,4,6],[283,4,3,6,9]]],[10,4,4,9,13,[[291,1,1,9,10],[302,3,3,10,13]]],[11,1,1,13,14,[[330,1,1,13,14]]],[13,4,4,14,18,[[376,2,2,14,16],[388,1,1,16,17],[391,1,1,17,18]]],[14,2,2,18,20,[[412,2,2,18,20]]],[17,9,9,20,29,[[440,1,1,20,21],[445,1,1,21,22],[447,1,1,22,23],[453,1,1,23,24],[456,1,1,24,25],[457,1,1,25,26],[464,1,1,26,27],[473,1,1,27,28],[477,1,1,28,29]]],[18,10,10,29,39,[[478,1,1,29,30],[490,1,1,30,31],[491,1,1,31,32],[497,1,1,32,33],[510,2,2,33,35],[550,1,1,35,36],[583,2,2,36,38],[584,1,1,38,39]]],[19,7,7,39,46,[[628,2,2,39,41],[639,1,1,41,42],[646,2,2,42,44],[647,1,1,44,45],[648,1,1,45,46]]],[22,13,13,46,59,[[683,1,1,46,47],[689,1,1,47,48],[694,1,1,48,49],[697,3,3,49,52],[706,1,1,52,53],[707,1,1,53,54],[708,1,1,54,55],[714,1,1,55,56],[722,1,1,56,57],[724,2,2,57,59]]],[23,8,8,59,67,[[762,2,2,59,61],[763,1,1,61,62],[776,1,1,62,63],[793,3,3,63,66],[794,1,1,66,67]]],[25,2,2,67,69,[[808,1,1,67,68],[812,1,1,68,69]]],[32,1,1,69,70,[[896,1,1,69,70]]],[37,1,1,70,71,[[916,1,1,70,71]]]],[5786,7061,8420,8423,8446,8449,8456,8463,8472,8729,9159,9164,9165,10044,11403,11408,11649,11720,12255,12260,12964,13089,13141,13283,13371,13407,13553,13795,13925,13940,14076,14086,14186,14376,14377,15044,15664,15694,15710,16425,16430,16734,16945,16946,16972,17014,17758,17886,17972,18007,18015,18021,18193,18208,18218,18335,18559,18596,18597,19402,19407,19414,19750,20134,20147,20157,20211,20603,20657,22632,22960]]],["counsels",[2,2,[[22,2,2,0,2,[[703,1,1,0,1],[725,1,1,1,2]]]],[18119,18612]]],["purpose",[2,2,[[14,1,1,0,1,[[406,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]]],[12115,17954]]]]},{"k":"H6099","v":[["*",[31,31,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[50,1,1,1,2]]],[3,3,3,2,5,[[130,1,1,2,3],[138,1,1,3,4],[148,1,1,4,5]]],[4,6,6,5,11,[[156,1,1,5,6],[159,1,1,6,7],[161,2,2,7,9],[163,1,1,9,10],[178,1,1,10,11]]],[5,1,1,11,12,[[209,1,1,11,12]]],[18,3,3,12,15,[[487,1,1,12,13],[512,1,1,13,14],[612,1,1,14,15]]],[19,3,3,15,18,[[634,1,1,15,16],[645,1,1,16,17],[657,1,1,17,18]]],[22,3,3,18,21,[[686,1,1,18,19],[731,1,1,19,20],[738,1,1,20,21]]],[26,2,2,21,23,[[857,1,1,21,22],[860,1,1,22,23]]],[28,4,4,23,27,[[876,1,1,23,24],[877,3,3,24,27]]],[29,1,1,27,28,[[883,1,1,27,28]]],[32,2,2,28,30,[[896,2,2,28,30]]],[37,1,1,30,31,[[918,1,1,30,31]]]],[442,1541,4120,4381,4719,5042,5112,5158,5171,5231,5571,6469,14051,14428,16185,16601,16919,17277,17814,18723,18843,21985,22061,22297,22313,22316,22322,22435,22623,22627,22998]]],["+",[2,2,[[3,1,1,0,1,[[138,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[4381,17277]]],["great",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4719]]],["mightier",[7,7,[[1,1,1,0,1,[[50,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[4,5,5,2,7,[[156,1,1,2,3],[159,1,1,3,4],[161,2,2,4,6],[163,1,1,6,7]]]],[1541,4120,5042,5112,5158,5171,5231]]],["mighty",[7,7,[[0,1,1,0,1,[[17,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]],[18,1,1,2,3,[[612,1,1,2,3]]],[19,1,1,3,4,[[645,1,1,3,4]]],[26,2,2,4,6,[[857,1,1,4,5],[860,1,1,5,6]]],[29,1,1,6,7,[[883,1,1,6,7]]]],[442,5571,16185,16919,21985,22061,22435]]],["much",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14428]]],["ones",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14051]]],["strong",[12,12,[[5,1,1,0,1,[[209,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]],[22,3,3,2,5,[[686,1,1,2,3],[731,1,1,3,4],[738,1,1,4,5]]],[28,4,4,5,9,[[876,1,1,5,6],[877,3,3,6,9]]],[32,2,2,9,11,[[896,2,2,9,11]]],[37,1,1,11,12,[[918,1,1,11,12]]]],[6469,16601,17814,18723,18843,22297,22313,22316,22322,22623,22627,22998]]]]},{"k":"H6100","v":[["*",[7,7,[[3,2,2,0,2,[[149,2,2,0,2]]],[4,1,1,2,3,[[154,1,1,2,3]]],[10,2,2,3,5,[[299,1,1,3,4],[312,1,1,4,5]]],[13,2,2,5,7,[[374,1,1,5,6],[386,1,1,6,7]]]],[4795,4796,4946,9077,9528,11363,11623]]],["+",[2,2,[[3,1,1,0,1,[[149,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]]],[4796,4946]]],["Eziongaber",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4795]]],["Eziongeber",[4,4,[[10,2,2,0,2,[[299,1,1,0,1],[312,1,1,1,2]]],[13,2,2,2,4,[[374,1,1,2,3],[386,1,1,3,4]]]],[9077,9528,11363,11623]]]]},{"k":"H6101","v":[["+",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7002]]]]},{"k":"H6102","v":[["*",[14,14,[[19,14,14,0,14,[[633,2,2,0,2],[637,1,1,2,3],[640,1,1,3,4],[642,1,1,4,5],[646,1,1,5,6],[647,1,1,6,7],[648,1,1,7,8],[649,1,1,8,9],[651,1,1,9,10],[653,4,4,10,14]]]],[16546,16549,16682,16751,16826,16949,16958,17009,17028,17109,17154,17155,17156,17157]]],["+",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17109]]],["slothful",[7,7,[[19,7,7,0,7,[[642,1,1,0,1],[646,1,1,1,2],[648,1,1,2,3],[649,1,1,3,4],[653,3,3,4,7]]]],[16826,16949,17009,17028,17154,17155,17156]]],["sluggard",[6,6,[[19,6,6,0,6,[[633,2,2,0,2],[637,1,1,2,3],[640,1,1,3,4],[647,1,1,4,5],[653,1,1,5,6]]]],[16546,16549,16682,16751,16958,17157]]]]},{"k":"H6103","v":[["*",[2,2,[[19,1,1,0,1,[[646,1,1,0,1]]],[20,1,1,1,2,[[668,1,1,1,2]]]],[16940,17511]]],["Slothfulness",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16940]]],["slothfulness",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17511]]]]},{"k":"H6104","v":[["idleness",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17311]]]]},{"k":"H6105","v":[["*",[20,20,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,2,2,1,3,[[50,2,2,1,3]]],[18,6,6,3,9,[[515,1,1,3,4],[517,2,2,4,6],[546,1,1,6,7],[582,1,1,7,8],[616,1,1,8,9]]],[22,3,3,9,12,[[707,1,1,9,10],[709,1,1,10,11],[711,1,1,11,12]]],[23,5,5,12,17,[[749,1,1,12,13],[759,1,1,13,14],[774,2,2,14,16],[794,1,1,16,17]]],[26,3,3,17,20,[[857,2,2,17,19],[860,1,1,19,20]]]],[708,1539,1552,14509,14530,14537,14939,15630,16256,18203,18251,18294,19064,19323,19681,19682,20183,21969,21985,22059]]],["+",[5,5,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,2,2,1,3,[[50,2,2,1,3]]],[22,2,2,3,5,[[707,1,1,3,4],[709,1,1,4,5]]]],[708,1539,1552,18203,18251]]],["bones",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20183]]],["great",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16256]]],["increased",[4,4,[[23,4,4,0,4,[[749,1,1,0,1],[759,1,1,1,2],[774,2,2,2,4]]]],[19064,19323,19681,19682]]],["mighty",[2,2,[[18,1,1,0,1,[[546,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]]],[14939,21985]]],["more",[2,2,[[18,2,2,0,2,[[517,2,2,0,2]]]],[14530,14537]]],["shutteth",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18294]]],["strong",[3,3,[[18,1,1,0,1,[[515,1,1,0,1]]],[26,2,2,1,3,[[857,1,1,1,2],[860,1,1,2,3]]]],[14509,21969,22059]]],["stronger",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15630]]]]},{"k":"H6106","v":[["*",[126,108,[[0,7,6,0,6,[[1,2,1,0,1],[6,1,1,1,2],[16,2,2,2,4],[28,1,1,4,5],[49,1,1,5,6]]],[1,7,6,6,12,[[61,4,4,6,10],[62,2,1,10,11],[73,1,1,11,12]]],[2,5,5,12,17,[[112,5,5,12,17]]],[3,4,4,17,21,[[125,1,1,17,18],[135,2,2,18,20],[140,1,1,20,21]]],[4,1,1,21,22,[[184,1,1,21,22]]],[5,3,3,22,25,[[191,1,1,22,23],[196,1,1,23,24],[210,1,1,24,25]]],[6,2,2,25,27,[[219,1,1,25,26],[229,1,1,26,27]]],[8,1,1,27,28,[[266,1,1,27,28]]],[9,9,6,28,34,[[271,1,1,28,29],[285,2,2,29,31],[287,6,3,31,34]]],[10,3,2,34,36,[[303,3,2,34,36]]],[11,7,5,36,41,[[325,1,1,36,37],[335,6,4,37,41]]],[12,2,2,41,43,[[347,1,1,41,42],[348,1,1,42,43]]],[13,1,1,43,44,[[400,1,1,43,44]]],[17,13,13,44,57,[[437,1,1,44,45],[439,1,1,45,46],[442,1,1,46,47],[445,1,1,47,48],[454,1,1,48,49],[455,1,1,49,50],[456,2,2,50,52],[465,2,2,52,54],[468,2,2,54,56],[475,1,1,56,57]]],[18,15,15,57,72,[[483,1,1,57,58],[499,2,2,58,60],[508,1,1,60,61],[509,1,1,61,62],[511,1,1,62,63],[512,1,1,63,64],[515,1,1,64,65],[519,1,1,65,66],[528,1,1,66,67],[530,1,1,67,68],[579,2,2,68,70],[586,1,1,70,71],[618,1,1,71,72]]],[19,5,5,72,77,[[630,1,1,72,73],[639,1,1,73,74],[641,1,1,74,75],[642,1,1,75,76],[643,1,1,76,77]]],[20,1,1,77,78,[[669,1,1,77,78]]],[22,3,3,78,81,[[716,1,1,78,79],[736,1,1,79,80],[744,1,1,80,81]]],[23,7,3,81,84,[[752,5,1,81,82],[764,1,1,82,83],[767,1,1,83,84]]],[24,4,4,84,88,[[797,1,1,84,85],[799,1,1,85,86],[800,2,2,86,88]]],[25,21,15,88,103,[[803,1,1,88,89],[807,1,1,89,90],[825,6,4,90,94],[833,1,1,94,95],[838,10,6,95,101],[840,1,1,101,102],[841,1,1,102,103]]],[29,2,2,103,105,[[880,1,1,103,104],[884,1,1,104,105]]],[32,2,2,105,107,[[895,2,2,105,107]]],[34,1,1,107,108,[[905,1,1,107,108]]]],[53,172,420,423,809,1531,1833,1857,1862,1867,1886,2187,3416,3423,3430,3431,3432,3977,4305,4307,4454,5806,5945,6091,6508,6756,7053,8022,8133,8523,8524,8592,8593,8594,9186,9215,9892,10179,10181,10183,10185,10671,10674,11938,12896,12944,13023,13097,13317,13337,13378,13379,13574,13587,13669,13671,13882,13987,14218,14221,14341,14358,14408,14420,14493,14565,14699,14724,15524,15526,15773,16283,16463,16723,16802,16837,16864,17518,18403,18797,18936,19154,19431,19493,20323,20358,20427,20428,20495,20568,21058,21060,21061,21066,21275,21398,21400,21401,21402,21404,21408,21463,21478,22380,22460,22610,22611,22784]]],["+",[13,13,[[0,4,4,0,4,[[1,1,1,0,1],[6,1,1,1,2],[16,2,2,2,4]]],[1,3,3,4,7,[[61,2,2,4,6],[62,1,1,6,7]]],[2,2,2,7,9,[[112,2,2,7,9]]],[5,1,1,9,10,[[191,1,1,9,10]]],[11,1,1,10,11,[[335,1,1,10,11]]],[17,1,1,11,12,[[442,1,1,11,12]]],[25,1,1,12,13,[[841,1,1,12,13]]]],[53,172,420,423,1857,1867,1886,3416,3423,5945,10183,13023,21478]]],["body",[2,2,[[1,1,1,0,1,[[73,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[2187,20427]]],["bone",[15,14,[[0,2,2,0,2,[[1,1,1,0,1],[28,1,1,1,2]]],[1,1,1,2,3,[[61,1,1,2,3]]],[3,3,3,3,6,[[125,1,1,3,4],[135,2,2,4,6]]],[6,1,1,6,7,[[219,1,1,6,7]]],[9,2,2,7,9,[[271,1,1,7,8],[285,1,1,8,9]]],[12,1,1,9,10,[[348,1,1,9,10]]],[17,2,2,10,12,[[437,1,1,10,11],[454,1,1,11,12]]],[25,3,2,12,14,[[838,2,1,12,13],[840,1,1,13,14]]]],[53,809,1862,3977,4305,4307,6756,8133,8524,10674,12896,13317,21404,21463]]],["bones",[86,74,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,1,1,1,2,[[62,1,1,1,2]]],[3,1,1,2,3,[[140,1,1,2,3]]],[5,1,1,3,4,[[210,1,1,3,4]]],[6,1,1,4,5,[[229,1,1,4,5]]],[8,1,1,5,6,[[266,1,1,5,6]]],[9,7,4,6,10,[[285,1,1,6,7],[287,6,3,7,10]]],[10,3,2,10,12,[[303,3,2,10,12]]],[11,6,5,12,17,[[325,1,1,12,13],[335,5,4,13,17]]],[12,1,1,17,18,[[347,1,1,17,18]]],[13,1,1,18,19,[[400,1,1,18,19]]],[17,9,9,19,28,[[439,1,1,19,20],[445,1,1,20,21],[455,1,1,21,22],[456,1,1,22,23],[465,2,2,23,25],[468,2,2,25,27],[475,1,1,27,28]]],[18,15,15,28,43,[[483,1,1,28,29],[499,2,2,29,31],[508,1,1,31,32],[509,1,1,32,33],[511,1,1,33,34],[512,1,1,34,35],[515,1,1,35,36],[519,1,1,36,37],[528,1,1,37,38],[530,1,1,38,39],[579,2,2,39,41],[586,1,1,41,42],[618,1,1,42,43]]],[19,5,5,43,48,[[630,1,1,43,44],[639,1,1,44,45],[641,1,1,45,46],[642,1,1,46,47],[643,1,1,47,48]]],[20,1,1,48,49,[[669,1,1,48,49]]],[22,3,3,49,52,[[716,1,1,49,50],[736,1,1,50,51],[744,1,1,51,52]]],[23,7,3,52,55,[[752,5,1,52,53],[764,1,1,53,54],[767,1,1,54,55]]],[24,3,3,55,58,[[797,1,1,55,56],[799,1,1,56,57],[800,1,1,57,58]]],[25,14,11,58,69,[[807,1,1,58,59],[825,4,3,59,62],[833,1,1,62,63],[838,8,6,63,69]]],[29,2,2,69,71,[[880,1,1,69,70],[884,1,1,70,71]]],[32,2,2,71,73,[[895,2,2,71,73]]],[34,1,1,73,74,[[905,1,1,73,74]]]],[1531,1886,4454,6508,7053,8022,8523,8592,8593,8594,9186,9215,9892,10179,10181,10183,10185,10671,11938,12944,13097,13337,13379,13574,13587,13669,13671,13882,13987,14218,14221,14341,14358,14408,14420,14493,14565,14699,14724,15524,15526,15773,16283,16463,16723,16802,16837,16864,17518,18403,18797,18936,19154,19431,19493,20323,20358,20428,20568,21060,21061,21066,21275,21398,21400,21401,21402,21404,21408,22380,22460,22610,22611,22784]]],["same",[5,4,[[2,3,3,0,3,[[112,3,3,0,3]]],[25,2,1,3,4,[[825,2,1,3,4]]]],[3430,3431,3432,21058]]],["selfsame",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]]],[1833,5806]]],["strength",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13378]]],["very",[2,2,[[5,1,1,0,1,[[196,1,1,0,1]]],[25,1,1,1,2,[[803,1,1,1,2]]]],[6091,20495]]]]},{"k":"H6107","v":[["*",[3,3,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]],[12,1,1,2,3,[[341,1,1,2,3]]]],[6231,6324,10414]]],["Azem",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]]],[6231,6324]]],["Ezem",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10414]]]]},{"k":"H6108","v":[["*",[3,3,[[4,1,1,0,1,[[160,1,1,0,1]]],[17,1,1,1,2,[[465,1,1,1,2]]],[18,1,1,2,3,[[616,1,1,2,3]]]],[5154,13578,16254]]],["might",[1,1,[[4,1,1,0,1,[[160,1,1,0,1]]]],[5154]]],["strong",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13578]]],["substance",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16254]]]]},{"k":"H6109","v":[["*",[3,3,[[22,2,2,0,2,[[718,1,1,0,1],[725,1,1,1,2]]],[33,1,1,2,3,[[902,1,1,2,3]]]],[18449,18608,22721]]],["abundance",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18608]]],["strength",[2,2,[[22,1,1,0,1,[[718,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[18449,22721]]]]},{"k":"H6110","v":[["strong",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18472]]]]},{"k":"H6111","v":[["*",[3,3,[[3,2,2,0,2,[[150,2,2,0,2]]],[5,1,1,2,3,[[201,1,1,2,3]]]],[4820,4821,6206]]],["+",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4821]]],["Azmon",[2,2,[[3,1,1,0,1,[[150,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]]],[4820,6206]]]]},{"k":"H6112","v":[["Eznite",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8661]]]]},{"k":"H6113","v":[["*",[46,45,[[0,3,2,0,2,[[15,1,1,0,1],[19,2,1,1,2]]],[3,3,3,2,5,[[132,2,2,2,4],[141,1,1,4,5]]],[4,2,2,5,7,[[163,1,1,5,6],[184,1,1,6,7]]],[6,2,2,7,9,[[223,2,2,7,9]]],[8,3,3,9,12,[[244,1,1,9,10],[256,2,2,10,12]]],[9,2,2,12,14,[[290,2,2,12,14]]],[10,4,4,14,18,[[298,1,1,14,15],[304,1,1,15,16],[308,1,1,16,17],[311,1,1,17,18]]],[11,4,4,18,22,[[316,1,1,18,19],[321,1,1,19,20],[326,1,1,20,21],[329,1,1,21,22]]],[12,3,3,22,25,[[349,1,1,22,23],[358,1,1,23,24],[366,1,1,24,25]]],[13,7,7,25,32,[[368,1,1,25,26],[372,1,1,26,27],[373,1,1,27,28],[379,1,1,28,29],[380,1,1,29,30],[386,1,1,30,31],[388,1,1,31,32]]],[15,1,1,32,33,[[418,1,1,32,33]]],[17,3,3,33,36,[[439,1,1,33,34],[447,1,1,34,35],[464,1,1,35,36]]],[18,1,1,36,37,[[583,1,1,36,37]]],[22,1,1,37,38,[[744,1,1,37,38]]],[23,4,4,38,42,[[764,1,1,38,39],[777,1,1,39,40],[780,1,1,40,41],[783,1,1,41,42]]],[26,3,3,42,45,[[859,2,2,42,44],[860,1,1,44,45]]]],[383,513,4242,4244,4479,5225,5794,6899,6900,7408,7777,7779,8713,8717,9020,9228,9385,9472,9627,9764,9922,9987,10721,10956,11178,11217,11308,11337,11473,11486,11624,11653,12411,12932,13143,13541,15681,18931,19431,19776,19847,19938,22023,22031,22042]]],["+",[6,5,[[0,2,1,0,1,[[19,2,1,0,1]]],[4,1,1,1,2,[[163,1,1,1,2]]],[12,1,1,2,3,[[366,1,1,2,3]]],[13,2,2,3,5,[[368,1,1,3,4],[386,1,1,4,5]]]],[513,5225,11178,11217,11624]]],["close",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10721]]],["detain",[2,2,[[6,2,2,0,2,[[223,2,2,0,2]]]],[6899,6900]]],["detained",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7779]]],["kept",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7777]]],["prevail",[1,1,[[13,1,1,0,1,[[380,1,1,0,1]]]],[11486]]],["recover",[1,1,[[13,1,1,0,1,[[379,1,1,0,1]]]],[11473]]],["refrained",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13541]]],["reign",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7408]]],["restrained",[1,1,[[0,1,1,0,1,[[15,1,1,0,1]]]],[383]]],["retain",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22042]]],["retained",[2,2,[[26,2,2,0,2,[[859,2,2,0,2]]]],[22023,22031]]],["shut",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18931]]],["slack",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9627]]],["stayed",[7,7,[[3,3,3,0,3,[[132,2,2,0,2],[141,1,1,2,3]]],[9,2,2,3,5,[[290,2,2,3,5]]],[12,1,1,5,6,[[358,1,1,5,6]]],[18,1,1,6,7,[[583,1,1,6,7]]]],[4242,4244,4479,8713,8717,10956,15681]]],["still",[1,1,[[13,1,1,0,1,[[388,1,1,0,1]]]],[11653]]],["stop",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9385]]],["up",[14,14,[[4,1,1,0,1,[[184,1,1,0,1]]],[10,3,3,1,4,[[298,1,1,1,2],[304,1,1,2,3],[311,1,1,3,4]]],[11,3,3,4,7,[[321,1,1,4,5],[326,1,1,5,6],[329,1,1,6,7]]],[13,2,2,7,9,[[372,1,1,7,8],[373,1,1,8,9]]],[15,1,1,9,10,[[418,1,1,9,10]]],[23,4,4,10,14,[[764,1,1,10,11],[777,1,1,11,12],[780,1,1,12,13],[783,1,1,13,14]]]],[5794,9020,9228,9472,9764,9922,9987,11308,11337,12411,19431,19776,19847,19938]]],["withhold",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12932]]],["withholdeth",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13143]]]]},{"k":"H6114","v":[["+",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7000]]]]},{"k":"H6115","v":[["*",[3,3,[[18,1,1,0,1,[[584,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]],[22,1,1,2,3,[[731,1,1,2,3]]]],[15738,17267,18719]]],["+",[2,2,[[18,1,1,0,1,[[584,1,1,0,1]]],[22,1,1,1,2,[[731,1,1,1,2]]]],[15738,18719]]],["barren",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17267]]]]},{"k":"H6116","v":[["*",[11,11,[[2,1,1,0,1,[[112,1,1,0,1]]],[3,1,1,1,2,[[145,1,1,1,2]]],[4,1,1,2,3,[[168,1,1,2,3]]],[11,1,1,3,4,[[322,1,1,3,4]]],[13,1,1,4,5,[[373,1,1,4,5]]],[15,1,1,5,6,[[420,1,1,5,6]]],[22,1,1,6,7,[[679,1,1,6,7]]],[23,1,1,7,8,[[753,1,1,7,8]]],[28,2,2,8,10,[[876,1,1,8,9],[877,1,1,9,10]]],[29,1,1,10,11,[[883,1,1,10,11]]]],[3438,4643,5350,9813,11333,12511,17667,19177,22305,22326,22444]]],["assemblies",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22444]]],["assembly",[9,9,[[2,1,1,0,1,[[112,1,1,0,1]]],[3,1,1,1,2,[[145,1,1,1,2]]],[4,1,1,2,3,[[168,1,1,2,3]]],[11,1,1,3,4,[[322,1,1,3,4]]],[13,1,1,4,5,[[373,1,1,4,5]]],[15,1,1,5,6,[[420,1,1,5,6]]],[23,1,1,6,7,[[753,1,1,6,7]]],[28,2,2,7,9,[[876,1,1,7,8],[877,1,1,8,9]]]],[3438,4643,5350,9813,11333,12511,19177,22305,22326]]],["meeting",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17667]]]]},{"k":"H6117","v":[["*",[5,4,[[0,1,1,0,1,[[26,1,1,0,1]]],[17,1,1,1,2,[[472,1,1,1,2]]],[23,2,1,2,3,[[753,2,1,2,3]]],[27,1,1,3,4,[[873,1,1,3,4]]]],[763,13773,19179,22255]]],["+",[3,2,[[23,2,1,0,1,[[753,2,1,0,1]]],[27,1,1,1,2,[[873,1,1,1,2]]]],[19179,22255]]],["stay",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13773]]],["supplanted",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[763]]]]},{"k":"H6118","v":[["*",[15,15,[[0,2,2,0,2,[[21,1,1,0,1],[25,1,1,1,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[4,2,2,3,5,[[159,1,1,3,4],[160,1,1,4,5]]],[9,2,2,5,7,[[278,2,2,5,7]]],[18,5,5,7,12,[[496,1,1,7,8],[517,1,1,8,9],[547,1,1,9,10],[596,2,2,10,12]]],[19,1,1,12,13,[[649,1,1,12,13]]],[22,1,1,13,14,[[683,1,1,13,14]]],[29,1,1,14,15,[[882,1,1,14,15]]]],[565,697,4132,5123,5157,8292,8296,14179,14540,14974,15931,16010,17019,17762,22422]]],["+",[4,4,[[0,1,1,0,1,[[21,1,1,0,1]]],[9,2,2,1,3,[[278,2,2,1,3]]],[29,1,1,3,4,[[882,1,1,3,4]]]],[565,8292,8296,22422]]],["Because",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[697]]],["By",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17019]]],["because",[2,2,[[3,1,1,0,1,[[130,1,1,0,1]]],[4,1,1,1,2,[[160,1,1,1,2]]]],[4132,5157]]],["end",[2,2,[[18,2,2,0,2,[[596,2,2,0,2]]]],[15931,16010]]],["for",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17762]]],["if",[1,1,[[4,1,1,0,1,[[159,1,1,0,1]]]],[5123]]],["reward",[3,3,[[18,3,3,0,3,[[496,1,1,0,1],[517,1,1,1,2],[547,1,1,2,3]]]],[14179,14540,14974]]]]},{"k":"H6119","v":[["*",[13,13,[[0,4,4,0,4,[[2,1,1,0,1],[24,1,1,1,2],[48,2,2,2,4]]],[5,1,1,4,5,[[194,1,1,4,5]]],[6,1,1,5,6,[[215,1,1,5,6]]],[17,1,1,6,7,[[453,1,1,6,7]]],[18,4,4,7,11,[[518,1,1,7,8],[533,1,1,8,9],[554,1,1,9,10],[566,1,1,10,11]]],[21,1,1,11,12,[[671,1,1,11,12]]],[23,1,1,12,13,[[757,1,1,12,13]]]],[70,684,1490,1492,6015,6645,13285,14551,14761,15112,15377,17545,19288]]],["+",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6645]]],["footsteps",[3,3,[[18,2,2,0,2,[[554,1,1,0,1],[566,1,1,1,2]]],[21,1,1,2,3,[[671,1,1,2,3]]]],[15112,15377,17545]]],["heel",[4,4,[[0,2,2,0,2,[[2,1,1,0,1],[24,1,1,1,2]]],[17,1,1,2,3,[[453,1,1,2,3]]],[18,1,1,3,4,[[518,1,1,3,4]]]],[70,684,13285,14551]]],["heels",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[23,1,1,1,2,[[757,1,1,1,2]]]],[1490,19288]]],["last",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1492]]],["steps",[1,1,[[18,1,1,0,1,[[533,1,1,0,1]]]],[14761]]],["wait",[1,1,[[5,1,1,0,1,[[194,1,1,0,1]]]],[6015]]]]},{"k":"H6120","v":[["heels",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14653]]]]},{"k":"H6121","v":[["*",[3,3,[[22,1,1,0,1,[[718,1,1,0,1]]],[23,1,1,1,2,[[761,1,1,1,2]]],[27,1,1,2,3,[[867,1,1,2,3]]]],[18424,19366,22175]]],["crooked",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18424]]],["deceitful",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19366]]],["polluted",[1,1,[[27,1,1,0,1,[[867,1,1,0,1]]]],[22175]]]]},{"k":"H6122","v":[["subtilty",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9812]]]]},{"k":"H6123","v":[["+",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[556]]]]},{"k":"H6124","v":[["ringstraked",[7,6,[[0,7,6,0,6,[[29,3,3,0,3],[30,4,3,3,6]]]],[865,869,870,881,883,885]]]]},{"k":"H6125","v":[["oppression",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14735]]]]},{"k":"H6126","v":[["Akkub",[8,8,[[12,2,2,0,2,[[340,1,1,0,1],[346,1,1,1,2]]],[14,2,2,2,4,[[404,2,2,2,4]]],[15,4,4,4,8,[[419,1,1,4,5],[420,1,1,5,6],[423,1,1,6,7],[424,1,1,7,8]]]],[10385,10632,12069,12072,12465,12500,12607,12649]]]]},{"k":"H6127","v":[["wrong",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22735]]]]},{"k":"H6128","v":[["*",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[18,1,1,1,2,[[602,1,1,1,2]]]],[6629,16115]]],["+",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6629]]],["ways",[1,1,[[18,1,1,0,1,[[602,1,1,0,1]]]],[16115]]]]},{"k":"H6129","v":[["crooked",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18152]]]]},{"k":"H6130","v":[["Akan",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1067]]]]},{"k":"H6131","v":[["*",[7,7,[[0,1,1,0,1,[[48,1,1,0,1]]],[5,2,2,1,3,[[197,2,2,1,3]]],[9,1,1,3,4,[[274,1,1,3,4]]],[12,1,1,4,5,[[355,1,1,4,5]]],[20,1,1,5,6,[[661,1,1,5,6]]],[35,1,1,6,7,[[907,1,1,6,7]]]],[1479,6113,6116,8213,10894,17361,22809]]],["+",[4,4,[[5,2,2,0,2,[[197,2,2,0,2]]],[9,1,1,2,3,[[274,1,1,2,3]]],[12,1,1,3,4,[[355,1,1,3,4]]]],[6113,6116,8213,10894]]],["down",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1479]]],["up",[2,2,[[20,1,1,0,1,[[661,1,1,0,1]]],[35,1,1,1,2,[[907,1,1,1,2]]]],[17361,22809]]]]},{"k":"H6132","v":[["roots",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21941]]]]},{"k":"H6133","v":[["stock",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3516]]]]},{"k":"H6134","v":[["Eker",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10333]]]]},{"k":"H6135","v":[["*",[12,11,[[0,3,3,0,3,[[10,1,1,0,1],[24,1,1,1,2],[28,1,1,2,3]]],[1,1,1,3,4,[[72,1,1,3,4]]],[4,2,1,4,5,[[159,2,1,4,5]]],[6,2,2,5,7,[[223,2,2,5,7]]],[8,1,1,7,8,[[237,1,1,7,8]]],[17,1,1,8,9,[[459,1,1,8,9]]],[18,1,1,9,10,[[590,1,1,9,10]]],[22,1,1,10,11,[[732,1,1,10,11]]]],[296,679,826,2170,5125,6886,6887,7245,13457,15822,18724]]],["barren",[11,11,[[0,3,3,0,3,[[10,1,1,0,1],[24,1,1,1,2],[28,1,1,2,3]]],[1,1,1,3,4,[[72,1,1,3,4]]],[4,1,1,4,5,[[159,1,1,4,5]]],[6,2,2,5,7,[[223,2,2,5,7]]],[8,1,1,7,8,[[237,1,1,7,8]]],[17,1,1,8,9,[[459,1,1,8,9]]],[18,1,1,9,10,[[590,1,1,9,10]]],[22,1,1,10,11,[[732,1,1,10,11]]]],[296,679,826,2170,5125,6886,6887,7245,13457,15822,18724]]],["male",[1,1,[[4,1,1,0,1,[[159,1,1,0,1]]]],[5125]]]]},{"k":"H6136","v":[["stump",[3,3,[[26,3,3,0,3,[[853,3,3,0,3]]]],[21852,21860,21863]]]]},{"k":"H6137","v":[["*",[8,8,[[3,1,1,0,1,[[150,1,1,0,1]]],[4,1,1,1,2,[[160,1,1,1,2]]],[6,1,1,2,3,[[211,1,1,2,3]]],[10,2,2,3,5,[[302,2,2,3,5]]],[13,2,2,5,7,[[376,2,2,5,7]]],[25,1,1,7,8,[[803,1,1,7,8]]]],[4820,5152,6545,9162,9165,11406,11409,20498]]],["Akrabbim",[2,2,[[3,1,1,0,1,[[150,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]]],[4820,6545]]],["scorpions",[6,6,[[4,1,1,0,1,[[160,1,1,0,1]]],[10,2,2,1,3,[[302,2,2,1,3]]],[13,2,2,3,5,[[376,2,2,3,5]]],[25,1,1,5,6,[[803,1,1,5,6]]]],[5152,9162,9165,11406,11409,20498]]]]},{"k":"H6138","v":[["*",[22,20,[[5,5,5,0,5,[[199,1,1,0,1],[201,3,3,1,4],[205,1,1,4,5]]],[6,1,1,5,6,[[211,1,1,5,6]]],[8,7,5,6,11,[[240,2,1,6,7],[241,2,2,7,9],[242,1,1,9,10],[252,2,1,10,11]]],[11,4,4,11,15,[[313,4,4,11,15]]],[23,1,1,15,16,[[769,1,1,15,16]]],[29,1,1,16,17,[[879,1,1,16,17]]],[35,1,1,17,18,[[907,1,1,17,18]]],[37,2,2,18,20,[[919,2,2,18,20]]]],[6157,6213,6247,6248,6364,6527,7329,7347,7348,7366,7670,9535,9536,9539,9549,19554,22372,22809,23004,23006]]],["+",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[8,1,1,1,2,[[242,1,1,1,2]]]],[6248,7366]]],["Ekron",[20,18,[[5,4,4,0,4,[[199,1,1,0,1],[201,2,2,1,3],[205,1,1,3,4]]],[6,1,1,4,5,[[211,1,1,4,5]]],[8,6,4,5,9,[[240,2,1,5,6],[241,2,2,6,8],[252,2,1,8,9]]],[11,4,4,9,13,[[313,4,4,9,13]]],[23,1,1,13,14,[[769,1,1,13,14]]],[29,1,1,14,15,[[879,1,1,14,15]]],[35,1,1,15,16,[[907,1,1,15,16]]],[37,2,2,16,18,[[919,2,2,16,18]]]],[6157,6213,6247,6364,6527,7329,7347,7348,7670,9535,9536,9539,9549,19554,22372,22809,23004,23006]]]]},{"k":"H6139","v":[["Ekronites",[2,2,[[5,1,1,0,1,[[199,1,1,0,1]]],[8,1,1,1,2,[[240,1,1,1,2]]]],[6157,7329]]]]},{"k":"H6140","v":[["*",[5,5,[[17,1,1,0,1,[[444,1,1,0,1]]],[19,2,2,1,3,[[637,1,1,1,2],[655,1,1,2,3]]],[22,1,1,3,4,[[737,1,1,3,4]]],[32,1,1,4,5,[[895,1,1,4,5]]]],[13071,16665,17214,18808,22617]]],["crooked",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18808]]],["perverse",[2,2,[[17,1,1,0,1,[[444,1,1,0,1]]],[19,1,1,1,2,[[655,1,1,1,2]]]],[13071,17214]]],["pervert",[1,1,[[32,1,1,0,1,[[895,1,1,0,1]]]],[22617]]],["perverteth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16665]]]]},{"k":"H6141","v":[["*",[11,11,[[4,1,1,0,1,[[184,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,2,2,2,4,[[495,1,1,2,3],[578,1,1,3,4]]],[19,7,7,4,11,[[629,1,1,4,5],[635,1,1,5,6],[638,1,1,6,7],[644,1,1,7,8],[646,1,1,8,9],[649,1,1,9,10],[655,1,1,10,11]]]],[5763,8629,14144,15517,16448,16610,16708,16893,16926,17020,17202]]],["+",[2,2,[[19,2,2,0,2,[[646,1,1,0,1],[655,1,1,1,2]]]],[16926,17202]]],["crooked",[1,1,[[19,1,1,0,1,[[629,1,1,0,1]]]],[16448]]],["froward",[6,6,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,2,2,1,3,[[495,1,1,1,2],[578,1,1,2,3]]],[19,3,3,3,6,[[638,1,1,3,4],[644,1,1,4,5],[649,1,1,5,6]]]],[8629,14144,15517,16708,16893,17020]]],["perverse",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]]],[5763,16610]]]]},{"k":"H6142","v":[["Ikkesh",[3,3,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,2,2,1,3,[[348,1,1,1,2],[364,1,1,2,3]]]],[8679,10701,11118]]]]},{"k":"H6143","v":[["froward",[2,2,[[19,2,2,0,2,[[631,1,1,0,1],[633,1,1,1,2]]]],[16514,16552]]]]},{"k":"H6144","v":[["*",[6,6,[[3,2,2,0,2,[[137,2,2,0,2]]],[4,3,3,2,5,[[154,3,3,2,5]]],[22,1,1,5,6,[[693,1,1,5,6]]]],[4355,4368,4947,4956,4967,17961]]],["+",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4956]]],["Ar",[5,5,[[3,2,2,0,2,[[137,2,2,0,2]]],[4,2,2,2,4,[[154,2,2,2,4]]],[22,1,1,4,5,[[693,1,1,4,5]]]],[4355,4368,4947,4967,17961]]]]},{"k":"H6145","v":[["*",[2,2,[[8,1,1,0,1,[[263,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]]],[7958,16259]]],["enemies",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16259]]],["enemy",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7958]]]]},{"k":"H6146","v":[["enemies",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21856]]]]},{"k":"H6147","v":[["Er",[10,7,[[0,5,4,0,4,[[37,3,3,0,3],[45,2,1,3,4]]],[3,2,1,4,5,[[142,2,1,4,5]]],[12,3,2,5,7,[[339,2,1,5,6],[341,1,1,6,7]]]],[1122,1125,1126,1398,4508,10309,10406]]]]},{"k":"H6148","v":[["*",[18,18,[[0,2,2,0,2,[[42,1,1,0,1],[43,1,1,1,2]]],[14,1,1,2,3,[[411,1,1,2,3]]],[15,1,1,3,4,[[417,1,1,3,4]]],[17,1,1,4,5,[[452,1,1,4,5]]],[18,2,2,5,7,[[583,1,1,5,6],[596,1,1,6,7]]],[19,9,9,7,16,[[633,1,1,7,8],[638,1,1,8,9],[641,1,1,9,10],[644,1,1,10,11],[647,2,2,11,13],[649,1,1,13,14],[651,1,1,14,15],[654,1,1,15,16]]],[23,1,1,16,17,[[774,1,1,16,17]]],[25,1,1,17,18,[[828,1,1,17,18]]]],[1299,1356,12239,12385,13263,15686,16020,16541,16703,16782,16891,16970,16973,17041,17100,17182,19688,21148]]],["+",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19688]]],["becometh",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16891]]],["intermeddle",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16782]]],["meddle",[2,2,[[19,2,2,0,2,[[647,1,1,0,1],[651,1,1,1,2]]]],[16973,17100]]],["mingled",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15686]]],["mortgaged",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12385]]],["occupiers",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21148]]],["sureties",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17041]]],["surety",[8,8,[[0,2,2,0,2,[[42,1,1,0,1],[43,1,1,1,2]]],[17,1,1,2,3,[[452,1,1,2,3]]],[18,1,1,3,4,[[596,1,1,3,4]]],[19,4,4,4,8,[[633,1,1,4,5],[638,1,1,5,6],[647,1,1,6,7],[654,1,1,7,8]]]],[1299,1356,13263,16020,16541,16703,16970,17182]]],["themselves",[1,1,[[14,1,1,0,1,[[411,1,1,0,1]]]],[12239]]]]},{"k":"H6149","v":[["*",[12,12,[[11,1,1,0,1,[[330,1,1,0,1]]],[18,1,1,1,2,[[581,1,1,1,2]]],[19,2,2,2,4,[[630,1,1,2,3],[640,1,1,3,4]]],[22,2,2,4,6,[[714,1,1,4,5],[716,1,1,5,6]]],[23,2,2,6,8,[[750,1,1,6,7],[775,1,1,7,8]]],[25,2,2,8,10,[[817,1,1,8,9],[828,1,1,9,10]]],[27,1,1,10,11,[[870,1,1,10,11]]],[38,1,1,11,12,[[927,1,1,11,12]]]],[10047,15605,16479,16766,18338,18404,19109,19717,20799,21130,22212,23124]]],["occupy",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21130]]],["pleasant",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23124]]],["pleasing",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22212]]],["pleasure",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20799]]],["pledges",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]]],[10047,18338]]],["sweet",[5,5,[[18,1,1,0,1,[[581,1,1,0,1]]],[19,2,2,1,3,[[630,1,1,1,2],[640,1,1,2,3]]],[23,2,2,3,5,[[750,1,1,3,4],[775,1,1,4,5]]]],[15605,16479,16766,19109,19717]]],["undertake",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18404]]]]},{"k":"H6150","v":[["*",[3,3,[[6,1,1,0,1,[[229,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[22,1,1,2,3,[[702,1,1,2,3]]]],[7033,7634,18106]]],["darkened",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18106]]],["evening",[2,2,[[6,1,1,0,1,[[229,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]]],[7033,7634]]]]},{"k":"H6151","v":[["*",[4,2,[[26,4,2,0,2,[[851,4,2,0,2]]]],[21799,21801]]],["mixed",[3,2,[[26,3,2,0,2,[[851,3,2,0,2]]]],[21799,21801]]],["themselves",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21801]]]]},{"k":"H6152","v":[["Arabia",[5,4,[[13,1,1,0,1,[[375,1,1,0,1]]],[22,2,1,1,2,[[699,2,1,1,2]]],[23,1,1,2,3,[[769,1,1,2,3]]],[25,1,1,3,4,[[828,1,1,3,4]]]],[11378,18048,19558,21142]]]]},{"k":"H6153","v":[["*",[134,125,[[0,13,13,0,13,[[0,6,6,0,6],[7,1,1,6,7],[18,1,1,7,8],[23,2,2,8,10],[28,1,1,10,11],[29,1,1,11,12],[48,1,1,12,13]]],[1,13,12,13,25,[[61,3,2,13,15],[65,4,4,15,19],[67,2,2,19,21],[76,1,1,21,22],[78,2,2,22,24],[79,1,1,24,25]]],[2,33,29,25,54,[[95,1,1,25,26],[100,9,8,26,34],[103,1,1,34,35],[104,15,14,35,49],[106,1,1,49,50],[111,1,1,50,51],[112,4,2,51,53],[113,1,1,53,54]]],[3,13,13,54,67,[[125,5,5,54,59],[135,6,6,59,65],[144,2,2,65,67]]],[4,5,4,67,71,[[168,2,2,67,69],[175,1,1,69,70],[180,2,1,70,71]]],[5,4,4,71,75,[[191,1,1,71,72],[193,1,1,72,73],[194,1,1,73,74],[196,1,1,74,75]]],[6,4,4,75,79,[[229,1,1,75,76],[230,2,2,76,78],[231,1,1,78,79]]],[7,1,1,79,80,[[233,1,1,79,80]]],[8,3,3,80,83,[[249,1,1,80,81],[255,1,1,81,82],[265,1,1,82,83]]],[9,3,3,83,86,[[267,1,1,83,84],[277,2,2,84,86]]],[10,2,2,86,88,[[307,1,1,86,87],[312,1,1,87,88]]],[11,1,1,88,89,[[328,1,1,88,89]]],[12,2,2,89,91,[[353,1,1,89,90],[360,1,1,90,91]]],[13,7,4,91,95,[[368,1,1,91,92],[379,4,1,92,93],[384,1,1,93,94],[397,1,1,94,95]]],[14,3,3,95,98,[[405,1,1,95,96],[411,2,2,96,98]]],[16,1,1,98,99,[[427,1,1,98,99]]],[17,2,2,99,101,[[439,1,1,99,100],[442,1,1,100,101]]],[18,8,8,101,109,[[507,1,1,101,102],[532,1,1,102,103],[536,2,2,103,105],[542,1,1,105,106],[567,1,1,106,107],[581,1,1,107,108],[618,1,1,108,109]]],[19,1,1,109,110,[[634,1,1,109,110]]],[20,1,1,110,111,[[669,1,1,110,111]]],[22,1,1,111,112,[[695,1,1,111,112]]],[23,1,1,112,113,[[750,1,1,112,113]]],[25,5,5,113,118,[[813,2,2,113,115],[825,1,1,115,116],[834,1,1,116,117],[847,1,1,117,118]]],[26,3,3,118,121,[[857,2,2,118,120],[858,1,1,120,121]]],[34,1,1,121,122,[[903,1,1,121,122]]],[35,2,2,122,124,[[907,1,1,122,123],[908,1,1,123,124]]],[37,1,1,124,125,[[924,1,1,124,125]]]],[4,7,12,18,22,30,194,458,602,654,818,846,1500,1822,1834,1953,1955,1959,1960,2012,2013,2293,2375,2377,2390,2869,3021,3022,3024,3025,3028,3029,3036,3037,3157,3173,3174,3175,3176,3178,3179,3184,3185,3186,3187,3189,3190,3191,3195,3250,3375,3407,3434,3449,3968,3970,3976,3980,3986,4296,4297,4299,4308,4310,4311,4581,4585,5346,5348,5511,5678,5944,5982,6031,6090,7040,7077,7080,7104,7166,7532,7735,7995,8034,8261,8272,9323,9515,9978,10860,11013,11215,11464,11576,11857,12100,12241,12242,12738,12950,13012,14324,14749,14796,14804,14868,15384,15594,16278,16584,17519,17997,19093,20684,20687,21074,21302,21657,21975,21987,22009,22739,22812,22823,23075]]],["+",[14,11,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,1,1,1,2,[[76,1,1,1,2]]],[2,2,2,2,4,[[112,1,1,2,3],[113,1,1,3,4]]],[3,1,1,4,5,[[125,1,1,4,5]]],[5,1,1,5,6,[[194,1,1,5,6]]],[9,1,1,6,7,[[277,1,1,6,7]]],[13,4,1,7,8,[[379,4,1,7,8]]],[19,1,1,8,9,[[634,1,1,8,9]]],[22,1,1,9,10,[[695,1,1,9,10]]],[26,1,1,10,11,[[857,1,1,10,11]]]],[654,2293,3434,3449,3986,6031,8261,11464,16584,17997,21975]]],["Evening",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14749]]],["even",[71,66,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,9,8,1,9,[[61,2,1,1,2],[65,3,3,2,5],[67,1,1,5,6],[78,2,2,6,8],[79,1,1,8,9]]],[2,30,27,9,36,[[100,9,8,9,17],[103,1,1,17,18],[104,15,14,18,32],[106,1,1,32,33],[111,1,1,33,34],[112,3,2,34,36]]],[3,12,12,36,48,[[125,4,4,36,40],[135,6,6,40,46],[144,2,2,46,48]]],[4,4,3,48,51,[[168,2,2,48,50],[180,2,1,50,51]]],[5,1,1,51,52,[[191,1,1,51,52]]],[6,4,4,52,56,[[229,1,1,52,53],[230,2,2,53,55],[231,1,1,55,56]]],[7,1,1,56,57,[[233,1,1,56,57]]],[8,1,1,57,58,[[255,1,1,57,58]]],[9,2,2,58,60,[[267,1,1,58,59],[277,1,1,59,60]]],[10,1,1,60,61,[[312,1,1,60,61]]],[12,1,1,61,62,[[360,1,1,61,62]]],[13,1,1,62,63,[[384,1,1,62,63]]],[25,3,3,63,66,[[813,2,2,63,65],[825,1,1,65,66]]]],[458,1834,1953,1959,1960,2013,2375,2377,2390,3021,3022,3024,3025,3028,3029,3036,3037,3157,3173,3174,3175,3176,3178,3179,3184,3185,3186,3187,3189,3190,3191,3195,3250,3375,3407,3434,3968,3970,3976,3980,4296,4297,4299,4308,4310,4311,4581,4585,5346,5348,5678,5944,7040,7077,7080,7104,7166,7735,8034,8272,9515,11013,11576,20684,20687,21074]]],["evening",[43,43,[[0,10,10,0,10,[[0,6,6,0,6],[7,1,1,6,7],[23,1,1,7,8],[28,1,1,8,9],[29,1,1,9,10]]],[1,3,3,10,13,[[61,1,1,10,11],[65,1,1,11,12],[67,1,1,12,13]]],[4,1,1,13,14,[[175,1,1,13,14]]],[5,1,1,14,15,[[196,1,1,14,15]]],[8,2,2,15,17,[[249,1,1,15,16],[265,1,1,16,17]]],[10,1,1,17,18,[[307,1,1,17,18]]],[11,1,1,18,19,[[328,1,1,18,19]]],[12,1,1,19,20,[[353,1,1,19,20]]],[13,2,2,20,22,[[368,1,1,20,21],[397,1,1,21,22]]],[14,3,3,22,25,[[405,1,1,22,23],[411,2,2,23,25]]],[16,1,1,25,26,[[427,1,1,25,26]]],[17,1,1,26,27,[[439,1,1,26,27]]],[18,6,6,27,33,[[536,2,2,27,29],[542,1,1,29,30],[567,1,1,30,31],[581,1,1,31,32],[618,1,1,32,33]]],[20,1,1,33,34,[[669,1,1,33,34]]],[23,1,1,34,35,[[750,1,1,34,35]]],[25,2,2,35,37,[[834,1,1,35,36],[847,1,1,36,37]]],[26,2,2,37,39,[[857,1,1,37,38],[858,1,1,38,39]]],[34,1,1,39,40,[[903,1,1,39,40]]],[35,2,2,40,42,[[907,1,1,40,41],[908,1,1,41,42]]],[37,1,1,42,43,[[924,1,1,42,43]]]],[4,7,12,18,22,30,194,602,818,846,1822,1955,2012,5511,6090,7532,7995,9323,9978,10860,11215,11857,12100,12241,12242,12738,12950,14796,14804,14868,15384,15594,16278,17519,19093,21302,21657,21987,22009,22739,22812,22823,23075]]],["eventide",[1,1,[[5,1,1,0,1,[[193,1,1,0,1]]]],[5982]]],["night",[4,4,[[0,1,1,0,1,[[48,1,1,0,1]]],[2,1,1,1,2,[[95,1,1,1,2]]],[17,1,1,2,3,[[442,1,1,2,3]]],[18,1,1,3,4,[[507,1,1,3,4]]]],[1500,2869,13012,14324]]]]},{"k":"H6154","v":[["*",[16,16,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,9,9,1,10,[[102,9,9,1,10]]],[10,1,1,10,11,[[300,1,1,10,11]]],[15,1,1,11,12,[[425,1,1,11,12]]],[23,3,3,12,15,[[769,2,2,12,14],[794,1,1,14,15]]],[25,1,1,15,16,[[831,1,1,15,16]]]],[1854,3100,3101,3103,3104,3105,3108,3109,3110,3111,9094,12674,19554,19558,20203,21209]]],["Arabia",[1,1,[[10,1,1,0,1,[[300,1,1,0,1]]]],[9094]]],["mixed",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1854]]],["multitude",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12674]]],["people",[4,4,[[23,3,3,0,3,[[769,2,2,0,2],[794,1,1,2,3]]],[25,1,1,3,4,[[831,1,1,3,4]]]],[19554,19558,20203,21209]]],["woof",[9,9,[[2,9,9,0,9,[[102,9,9,0,9]]]],[3100,3101,3103,3104,3105,3108,3109,3110,3111]]]]},{"k":"H6155","v":[["willows",[5,5,[[2,1,1,0,1,[[112,1,1,0,1]]],[17,1,1,1,2,[[475,1,1,1,2]]],[18,1,1,2,3,[[614,1,1,2,3]]],[22,2,2,3,5,[[693,1,1,3,4],[722,1,1,4,5]]]],[3442,13886,16224,17967,18537]]]]},{"k":"H6156","v":[["sweet",[2,2,[[19,1,1,0,1,[[647,1,1,0,1]]],[21,1,1,1,2,[[672,1,1,1,2]]]],[16971,17568]]]]},{"k":"H6157","v":[["*",[9,7,[[1,7,5,0,5,[[57,7,5,0,5]]],[18,2,2,5,7,[[555,1,1,5,6],[582,1,1,6,7]]]],[1731,1732,1734,1739,1741,15158,15637]]],["flies",[2,2,[[18,2,2,0,2,[[555,1,1,0,1],[582,1,1,1,2]]]],[15158,15637]]],["swarm",[2,1,[[1,2,1,0,1,[[57,2,1,0,1]]]],[1734]]],["swarms",[5,4,[[1,5,4,0,4,[[57,5,4,0,4]]]],[1731,1732,1739,1741]]]]},{"k":"H6158","v":[["*",[10,10,[[0,1,1,0,1,[[7,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]],[4,1,1,2,3,[[166,1,1,2,3]]],[10,2,2,3,5,[[307,2,2,3,5]]],[17,1,1,5,6,[[473,1,1,5,6]]],[18,1,1,6,7,[[624,1,1,6,7]]],[19,1,1,7,8,[[657,1,1,7,8]]],[21,1,1,8,9,[[675,1,1,8,9]]],[22,1,1,9,10,[[712,1,1,9,10]]]],[190,3012,5304,9321,9323,13834,16360,17268,17609,18314]]],["raven",[6,6,[[0,1,1,0,1,[[7,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]],[4,1,1,2,3,[[166,1,1,2,3]]],[17,1,1,3,4,[[473,1,1,3,4]]],[21,1,1,4,5,[[675,1,1,4,5]]],[22,1,1,5,6,[[712,1,1,5,6]]]],[190,3012,5304,13834,17609,18314]]],["ravens",[4,4,[[10,2,2,0,2,[[307,2,2,0,2]]],[18,1,1,2,3,[[624,1,1,2,3]]],[19,1,1,3,4,[[657,1,1,3,4]]]],[9321,9323,16360,17268]]]]},{"k":"H6159","v":[["Oreb",[7,4,[[6,5,2,0,2,[[217,4,1,0,1],[218,1,1,1,2]]],[18,1,1,2,3,[[560,1,1,2,3]]],[22,1,1,3,4,[[688,1,1,3,4]]]],[6719,6722,15252,17876]]]]},{"k":"H6160","v":[["*",[61,57,[[3,9,9,0,9,[[138,1,1,0,1],[142,2,2,1,3],[147,1,1,3,4],[149,3,3,4,7],[151,1,1,7,8],[152,1,1,8,9]]],[4,10,8,9,17,[[153,2,2,9,11],[154,1,1,11,12],[155,2,1,12,13],[156,2,1,13,14],[163,1,1,14,15],[186,2,2,15,17]]],[5,13,11,17,28,[[189,1,1,17,18],[190,1,1,18,19],[191,1,1,19,20],[194,1,1,20,21],[197,2,2,21,23],[198,4,3,23,26],[199,1,1,26,27],[204,2,1,27,28]]],[8,1,1,28,29,[[258,1,1,28,29]]],[9,4,4,29,33,[[268,1,1,29,30],[270,1,1,30,31],[281,1,1,31,32],[283,1,1,32,33]]],[11,3,3,33,36,[[326,1,1,33,34],[337,2,2,34,36]]],[17,2,2,36,38,[[459,1,1,36,37],[474,1,1,37,38]]],[18,1,1,38,39,[[545,1,1,38,39]]],[22,6,6,39,45,[[711,1,1,39,40],[713,2,2,40,42],[718,1,1,42,43],[719,1,1,43,44],[729,1,1,44,45]]],[23,9,9,45,54,[[746,1,1,45,46],[749,1,1,46,47],[761,1,1,47,48],[783,2,2,48,50],[794,1,1,50,51],[795,1,1,51,52],[796,2,2,52,54]]],[25,1,1,54,55,[[848,1,1,54,55]]],[29,1,1,55,56,[[884,1,1,55,56]]],[37,1,1,56,57,[[924,1,1,56,57]]]],[4376,4492,4552,4676,4808,4809,4810,4846,4892,4893,4899,4946,4992,5053,5238,5840,5847,5909,5923,5944,6016,6109,6123,6131,6133,6138,6186,6311,7834,8078,8127,8417,8465,9921,10226,10227,13441,13840,14904,18288,18321,18326,18423,18470,18676,18971,19064,19363,19927,19928,20178,20255,20283,20284,21687,22464,23078]]],["+",[1,1,[[4,1,1,0,1,[[186,1,1,0,1]]]],[5840]]],["Arabah",[2,1,[[5,2,1,0,1,[[204,2,1,0,1]]]],[6311]]],["champaign",[1,1,[[4,1,1,0,1,[[163,1,1,0,1]]]],[5238]]],["desert",[8,8,[[22,5,5,0,5,[[713,2,2,0,2],[718,1,1,2,3],[719,1,1,3,4],[729,1,1,4,5]]],[23,2,2,5,7,[[761,1,1,5,6],[794,1,1,6,7]]],[25,1,1,7,8,[[848,1,1,7,8]]]],[18321,18326,18423,18470,18676,19363,20178,21687]]],["deserts",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18971]]],["evenings",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19064]]],["heavens",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14904]]],["plain",[22,19,[[4,7,5,0,5,[[153,2,2,0,2],[154,1,1,2,3],[155,2,1,3,4],[156,2,1,4,5]]],[5,6,5,5,10,[[189,1,1,5,6],[194,1,1,6,7],[197,1,1,7,8],[198,3,2,8,10]]],[8,1,1,10,11,[[258,1,1,10,11]]],[9,3,3,11,14,[[268,1,1,11,12],[270,1,1,12,13],[281,1,1,13,14]]],[11,2,2,14,16,[[326,1,1,14,15],[337,1,1,15,16]]],[23,2,2,16,18,[[783,1,1,16,17],[796,1,1,17,18]]],[37,1,1,18,19,[[924,1,1,18,19]]]],[4893,4899,4946,4992,5053,5909,6016,6123,6131,6133,7834,8078,8127,8417,9921,10226,19927,20283,23078]]],["plains",[19,19,[[3,9,9,0,9,[[138,1,1,0,1],[142,2,2,1,3],[147,1,1,3,4],[149,3,3,4,7],[151,1,1,7,8],[152,1,1,8,9]]],[4,1,1,9,10,[[186,1,1,9,10]]],[5,5,5,10,15,[[190,1,1,10,11],[191,1,1,11,12],[197,1,1,12,13],[198,1,1,13,14],[199,1,1,14,15]]],[9,1,1,15,16,[[283,1,1,15,16]]],[11,1,1,16,17,[[337,1,1,16,17]]],[23,2,2,17,19,[[783,1,1,17,18],[796,1,1,18,19]]]],[4376,4492,4552,4676,4808,4809,4810,4846,4892,5847,5923,5944,6109,6138,6186,8465,10227,19928,20284]]],["wilderness",[5,5,[[17,2,2,0,2,[[459,1,1,0,1],[474,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]],[29,1,1,4,5,[[884,1,1,4,5]]]],[13441,13840,18288,20255,22464]]]]},{"k":"H6161","v":[["*",[2,2,[[8,1,1,0,1,[[252,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]]],[7636,16891]]],["pledge",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7636]]],["surety",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16891]]]]},{"k":"H6162","v":[["pledge",[3,3,[[0,3,3,0,3,[[37,3,3,0,3]]]],[1136,1137,1139]]]]},{"k":"H6163","v":[["*",[9,9,[[13,4,4,0,4,[[383,1,1,0,1],[387,1,1,1,2],[388,1,1,2,3],[392,1,1,3,4]]],[15,3,3,4,7,[[414,1,1,4,5],[416,1,1,5,6],[418,1,1,6,7]]],[22,1,1,7,8,[[691,1,1,7,8]]],[23,1,1,8,9,[[747,1,1,8,9]]]],[11534,11640,11645,11739,12326,12366,12402,17926,19004]]],["Arabian",[4,4,[[15,2,2,0,2,[[414,1,1,0,1],[418,1,1,1,2]]],[22,1,1,2,3,[[691,1,1,2,3]]],[23,1,1,3,4,[[747,1,1,3,4]]]],[12326,12402,17926,19004]]],["Arabians",[5,5,[[13,4,4,0,4,[[383,1,1,0,1],[387,1,1,1,2],[388,1,1,2,3],[392,1,1,3,4]]],[15,1,1,4,5,[[416,1,1,4,5]]]],[11534,11640,11645,11739,12366]]]]},{"k":"H6164","v":[["Arbathite",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8684,10705]]]]},{"k":"H6165","v":[["*",[3,2,[[18,2,1,0,1,[[519,2,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]]],[14556,22311]]],["cry",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22311]]],["panteth",[2,1,[[18,2,1,0,1,[[519,2,1,0,1]]]],[14556]]]]},{"k":"H6166","v":[["Arad",[5,5,[[3,2,2,0,2,[[137,1,1,0,1],[149,1,1,1,2]]],[5,1,1,2,3,[[198,1,1,2,3]]],[6,1,1,3,4,[[211,1,1,3,4]]],[12,1,1,4,5,[[345,1,1,4,5]]]],[4341,4800,6144,6525,10590]]]]},{"k":"H6167","v":[["asses",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21895]]]]},{"k":"H6168","v":[["*",[15,14,[[0,1,1,0,1,[[23,1,1,0,1]]],[2,2,2,1,3,[[109,2,2,1,3]]],[13,1,1,3,4,[[390,1,1,3,4]]],[18,4,3,4,7,[[514,1,1,4,5],[614,2,1,5,6],[618,1,1,6,7]]],[22,4,4,7,11,[[681,1,1,7,8],[700,1,1,8,9],[710,1,1,9,10],[731,1,1,10,11]]],[24,1,1,11,12,[[800,1,1,11,12]]],[34,1,1,12,13,[[905,1,1,12,13]]],[35,1,1,13,14,[[907,1,1,13,14]]]],[611,3336,3337,11688,14485,16229,16284,17724,18058,18274,18723,20441,22781,22819]]],["+",[4,4,[[2,2,2,0,2,[[109,2,2,0,2]]],[13,1,1,2,3,[[390,1,1,2,3]]],[18,1,1,3,4,[[618,1,1,3,4]]]],[3336,3337,11688,16284]]],["Rase",[1,1,[[18,1,1,0,1,[[614,1,1,0,1]]]],[16229]]],["discover",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17724]]],["discovering",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22781]]],["emptied",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[611]]],["himself",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14485]]],["naked",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20441]]],["out",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18723]]],["poured",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18274]]],["rase",[1,1,[[18,1,1,0,1,[[614,1,1,0,1]]]],[16229]]],["uncover",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22819]]],["uncovered",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18058]]]]},{"k":"H6169","v":[["reeds",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18011]]]]},{"k":"H6170","v":[["*",[4,4,[[21,2,2,0,2,[[675,1,1,0,1],[676,1,1,1,2]]],[25,2,2,2,4,[[818,2,2,2,4]]]],[17611,17616,20832,20835]]],["+",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20832]]],["bed",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17611]]],["beds",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17616]]],["furrows",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20835]]]]},{"k":"H6171","v":[["ass",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13839]]]]},{"k":"H6172","v":[["*",[54,40,[[0,5,4,0,4,[[8,3,2,0,2],[41,2,2,2,4]]],[1,2,2,4,6,[[69,1,1,4,5],[77,1,1,5,6]]],[2,32,20,6,26,[[107,24,14,6,20],[109,8,6,20,26]]],[4,2,2,26,28,[[175,1,1,26,27],[176,1,1,27,28]]],[8,1,1,28,29,[[255,1,1,28,29]]],[22,2,2,29,31,[[698,1,1,29,30],[725,1,1,30,31]]],[24,1,1,31,32,[[797,1,1,31,32]]],[25,8,7,32,39,[[817,4,3,32,35],[823,1,1,35,36],[824,3,3,36,39]]],[27,1,1,39,40,[[863,1,1,39,40]]]],[227,228,1261,1264,2077,2335,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3329,3335,3336,3337,3338,3339,5514,5526,7760,18033,18602,20318,20770,20798,20799,20986,21017,21025,21036,22114]]],["+",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2335]]],["nakedness",[50,36,[[0,5,4,0,4,[[8,3,2,0,2],[41,2,2,2,4]]],[1,1,1,4,5,[[69,1,1,4,5]]],[2,32,20,5,25,[[107,24,14,5,19],[109,8,6,19,25]]],[8,1,1,25,26,[[255,1,1,25,26]]],[22,1,1,26,27,[[725,1,1,26,27]]],[24,1,1,27,28,[[797,1,1,27,28]]],[25,8,7,28,35,[[817,4,3,28,31],[823,1,1,31,32],[824,3,3,32,35]]],[27,1,1,35,36,[[863,1,1,35,36]]]],[227,228,1261,1264,2077,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3329,3335,3336,3337,3338,3339,7760,18602,20318,20770,20798,20799,20986,21017,21025,21036,22114]]],["shame",[1,1,[[22,1,1,0,1,[[698,1,1,0,1]]]],[18033]]],["unclean",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5514]]],["uncleanness",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5526]]]]},{"k":"H6173","v":[["dishonour",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12124]]]]},{"k":"H6174","v":[["*",[16,15,[[0,1,1,0,1,[[1,1,1,0,1]]],[8,1,1,1,2,[[254,1,1,1,2]]],[17,6,5,2,7,[[436,2,1,2,3],[457,1,1,3,4],[459,2,2,4,6],[461,1,1,6,7]]],[20,1,1,7,8,[[663,1,1,7,8]]],[22,4,4,8,12,[[698,3,3,8,11],[736,1,1,11,12]]],[27,1,1,12,13,[[863,1,1,12,13]]],[29,1,1,13,14,[[880,1,1,13,14]]],[32,1,1,14,15,[[893,1,1,14,15]]]],[55,7730,12890,13395,13443,13446,13473,17412,18031,18032,18033,18793,22108,22395,22587]]],["Naked",[1,1,[[17,1,1,0,1,[[436,1,1,0,1]]]],[12890]]],["naked",[15,15,[[0,1,1,0,1,[[1,1,1,0,1]]],[8,1,1,1,2,[[254,1,1,1,2]]],[17,5,5,2,7,[[436,1,1,2,3],[457,1,1,3,4],[459,2,2,4,6],[461,1,1,6,7]]],[20,1,1,7,8,[[663,1,1,7,8]]],[22,4,4,8,12,[[698,3,3,8,11],[736,1,1,11,12]]],[27,1,1,12,13,[[863,1,1,12,13]]],[29,1,1,13,14,[[880,1,1,13,14]]],[32,1,1,14,15,[[893,1,1,14,15]]]],[55,7730,12890,13395,13443,13446,13473,17412,18031,18032,18033,18793,22108,22395,22587]]]]},{"k":"H6175","v":[["*",[11,11,[[0,1,1,0,1,[[2,1,1,0,1]]],[17,2,2,1,3,[[440,1,1,1,2],[450,1,1,2,3]]],[19,8,8,3,11,[[639,2,2,3,5],[640,1,1,5,6],[641,3,3,6,9],[649,1,1,9,10],[654,1,1,10,11]]]],[56,12963,13208,16735,16742,16763,16780,16787,16790,17018,17181]]],["crafty",[2,2,[[17,2,2,0,2,[[440,1,1,0,1],[450,1,1,1,2]]]],[12963,13208]]],["prudent",[8,8,[[19,8,8,0,8,[[639,2,2,0,2],[640,1,1,2,3],[641,3,3,3,6],[649,1,1,6,7],[654,1,1,7,8]]]],[16735,16742,16763,16780,16787,16790,17018,17181]]],["subtil",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[56]]]]},{"k":"H6176","v":[["heath",[2,2,[[23,2,2,0,2,[[761,1,1,0,1],[792,1,1,1,2]]]],[19363,20086]]]]},{"k":"H6177","v":[["*",[16,16,[[3,1,1,0,1,[[148,1,1,0,1]]],[4,3,3,1,4,[[154,1,1,1,2],[155,1,1,2,3],[156,1,1,3,4]]],[5,4,4,4,8,[[198,1,1,4,5],[199,3,3,5,8]]],[6,2,2,8,10,[[221,2,2,8,10]]],[8,1,1,10,11,[[265,1,1,10,11]]],[9,1,1,11,12,[[290,1,1,11,12]]],[11,1,1,12,13,[[322,1,1,12,13]]],[12,1,1,13,14,[[342,1,1,13,14]]],[22,1,1,14,15,[[695,1,1,14,15]]],[23,1,1,15,16,[[792,1,1,15,16]]]],[4752,4974,4987,5052,6132,6163,6170,6179,6855,6862,8006,8697,9826,10436,17985,20099]]],["+",[7,7,[[4,2,2,0,2,[[155,1,1,0,1],[156,1,1,1,2]]],[5,3,3,2,5,[[198,1,1,2,3],[199,2,2,3,5]]],[6,1,1,5,6,[[221,1,1,5,6]]],[11,1,1,6,7,[[322,1,1,6,7]]]],[4987,5052,6132,6163,6170,6862,9826]]],["Aroer",[9,9,[[3,1,1,0,1,[[148,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]],[5,1,1,2,3,[[199,1,1,2,3]]],[6,1,1,3,4,[[221,1,1,3,4]]],[8,1,1,4,5,[[265,1,1,4,5]]],[9,1,1,5,6,[[290,1,1,5,6]]],[12,1,1,6,7,[[342,1,1,6,7]]],[22,1,1,7,8,[[695,1,1,7,8]]],[23,1,1,8,9,[[792,1,1,8,9]]]],[4752,4974,6179,6855,8006,8697,10436,17985,20099]]]]},{"k":"H6178","v":[["clifts",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13563]]]]},{"k":"H6179","v":[["Eri",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1402,4505]]]]},{"k":"H6180","v":[["Erites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4505]]]]},{"k":"H6181","v":[["*",[6,6,[[25,4,4,0,4,[[817,3,3,0,3],[824,1,1,3,4]]],[32,1,1,4,5,[[893,1,1,4,5]]],[34,1,1,5,6,[[905,1,1,5,6]]]],[20769,20784,20801,21036,22590,22777]]],["+",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22777]]],["bare",[4,4,[[25,4,4,0,4,[[817,3,3,0,3],[824,1,1,3,4]]]],[20769,20784,20801,21036]]],["naked",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22590]]]]},{"k":"H6182","v":[["dough",[4,4,[[3,2,2,0,2,[[131,2,2,0,2]]],[15,1,1,2,3,[[422,1,1,2,3]]],[25,1,1,3,4,[[845,1,1,3,4]]]],[4173,4174,12586,21629]]]]},{"k":"H6183","v":[["heavens",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17769]]]]},{"k":"H6184","v":[["*",[20,20,[[17,3,3,0,3,[[441,1,1,0,1],[450,1,1,1,2],[462,1,1,2,3]]],[18,3,3,3,6,[[514,1,1,3,4],[531,1,1,4,5],[563,1,1,5,6]]],[19,1,1,6,7,[[638,1,1,6,7]]],[22,7,7,7,14,[[691,1,1,7,8],[703,3,3,8,11],[707,2,2,11,13],[727,1,1,13,14]]],[23,2,2,14,16,[[759,1,1,14,15],[764,1,1,15,16]]],[25,4,4,16,20,[[829,1,1,16,17],[831,1,1,17,18],[832,1,1,18,19],[833,1,1,19,20]]]],[13001,13223,13494,14485,14728,15298,16704,17917,18121,18122,18123,18198,18213,18661,19336,19433,21164,21215,21242,21260]]],["mighty",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[13001]]],["one",[2,2,[[22,1,1,0,1,[[707,1,1,0,1]]],[23,1,1,1,2,[[764,1,1,1,2]]]],[18213,19433]]],["ones",[3,3,[[22,3,3,0,3,[[703,2,2,0,2],[707,1,1,2,3]]]],[18122,18123,18198]]],["oppressor",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13223]]],["oppressors",[2,2,[[17,1,1,0,1,[[462,1,1,0,1]]],[18,1,1,1,2,[[531,1,1,1,2]]]],[13494,14728]]],["power",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14485]]],["strong",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16704]]],["terrible",[8,8,[[22,3,3,0,3,[[691,1,1,0,1],[703,1,1,1,2],[727,1,1,2,3]]],[23,1,1,3,4,[[759,1,1,3,4]]],[25,4,4,4,8,[[829,1,1,4,5],[831,1,1,5,6],[832,1,1,6,7],[833,1,1,7,8]]]],[17917,18121,18661,19336,21164,21215,21242,21260]]],["violent",[1,1,[[18,1,1,0,1,[[563,1,1,0,1]]]],[15298]]]]},{"k":"H6185","v":[["childless",[4,4,[[0,1,1,0,1,[[14,1,1,0,1]]],[2,2,2,1,3,[[109,2,2,1,3]]],[23,1,1,3,4,[[766,1,1,3,4]]]],[362,3338,3339,19484]]]]},{"k":"H6186","v":[["*",[76,71,[[0,2,2,0,2,[[13,1,1,0,1],[21,1,1,1,2]]],[1,3,3,2,5,[[76,1,1,2,3],[89,2,2,3,5]]],[2,12,10,5,15,[[90,3,3,5,8],[95,1,1,8,9],[113,3,3,9,12],[116,5,3,12,15]]],[3,1,1,15,16,[[139,1,1,15,16]]],[5,1,1,16,17,[[188,1,1,16,17]]],[6,6,4,17,21,[[230,6,4,17,21]]],[8,4,4,21,25,[[239,1,1,21,22],[252,3,3,22,25]]],[9,5,5,25,30,[[276,4,4,25,29],[289,1,1,29,30]]],[10,1,1,30,31,[[308,1,1,30,31]]],[11,1,1,31,32,[[335,1,1,31,32]]],[12,9,8,32,40,[[349,4,4,32,36],[356,5,4,36,40]]],[13,2,2,40,42,[[379,1,1,40,41],[380,1,1,41,42]]],[17,9,9,42,51,[[441,1,1,42,43],[448,1,1,43,44],[458,1,1,44,45],[463,2,2,45,47],[467,1,1,47,48],[468,1,1,48,49],[471,1,1,49,50],[472,1,1,50,51]]],[18,7,7,51,58,[[482,1,1,51,52],[500,1,1,52,53],[517,1,1,53,54],[527,1,1,54,55],[555,1,1,55,56],[566,1,1,56,57],[609,1,1,57,58]]],[19,1,1,58,59,[[636,1,1,58,59]]],[22,5,5,59,64,[[699,1,1,59,60],[708,1,1,60,61],[718,1,1,61,62],[722,1,1,62,63],[743,1,1,63,64]]],[23,5,5,64,69,[[750,1,1,64,65],[790,1,1,65,66],[794,3,3,66,69]]],[25,1,1,69,70,[[824,1,1,69,70]]],[28,1,1,70,71,[[877,1,1,70,71]]]],[344,556,2293,2711,2730,2752,2753,2757,2861,3449,3450,3454,3578,3582,3584,4420,5875,7074,7076,7084,7087,7299,7620,7626,7639,8248,8249,8250,8257,8658,9374,10200,10728,10753,10755,10756,10916,10917,10918,10924,11456,11485,12982,13171,13423,13521,13523,13642,13655,13755,13788,13976,14240,14530,14689,15132,15332,16168,16640,18040,18250,18438,18540,18908,19112,20048,20175,20180,20208,21048,22316]]],["+",[14,14,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,1,1,1,2,[[89,1,1,1,2]]],[2,4,4,2,6,[[90,3,3,2,5],[113,1,1,5,6]]],[3,1,1,6,7,[[139,1,1,6,7]]],[10,1,1,7,8,[[308,1,1,7,8]]],[11,1,1,8,9,[[335,1,1,8,9]]],[12,2,2,9,11,[[356,2,2,9,11]]],[13,2,2,11,13,[[379,1,1,11,12],[380,1,1,12,13]]],[28,1,1,13,14,[[877,1,1,13,14]]]],[556,2711,2752,2753,2757,3450,4420,9374,10200,10916,10924,11456,11485,22316]]],["Order",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20048]]],["Prepare",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18040]]],["against",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12982]]],["array",[20,19,[[6,5,4,0,4,[[230,5,4,0,4]]],[8,4,4,4,8,[[239,1,1,4,5],[252,3,3,5,8]]],[9,4,4,8,12,[[276,4,4,8,12]]],[12,3,3,12,15,[[356,3,3,12,15]]],[23,4,4,15,19,[[750,1,1,15,16],[794,3,3,16,19]]]],[7074,7076,7084,7087,7299,7620,7626,7639,8248,8249,8250,8257,10917,10918,10924,19112,20175,20180,20208]]],["compare",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18438]]],["compared",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15332]]],["direct",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13976]]],["directed",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13642]]],["equal",[2,2,[[17,2,2,0,2,[[463,2,2,0,2]]]],[13521,13523]]],["esteem",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13755]]],["estimate",[2,1,[[2,2,1,0,1,[[116,2,1,0,1]]]],[3584]]],["expert",[3,3,[[12,3,3,0,3,[[349,3,3,0,3]]]],[10753,10755,10756]]],["furnish",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15132]]],["furnished",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16640]]],["handle",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10728]]],["joined",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[344]]],["lay",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2861]]],["ordained",[2,2,[[18,1,1,0,1,[[609,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]]],[16168,18250]]],["order",[10,10,[[1,1,1,0,1,[[76,1,1,0,1]]],[2,2,2,1,3,[[113,2,2,1,3]]],[5,1,1,3,4,[[188,1,1,3,4]]],[17,3,3,4,7,[[458,1,1,4,5],[468,1,1,5,6],[472,1,1,6,7]]],[18,2,2,7,9,[[517,1,1,7,8],[527,1,1,8,9]]],[22,1,1,9,10,[[722,1,1,9,10]]]],[2293,3449,3454,5875,13423,13655,13788,14530,14689,18540]]],["ordered",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[17,1,1,1,2,[[448,1,1,1,2]]]],[8658,13171]]],["prepare",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18908]]],["prepared",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21048]]],["preparest",[1,1,[[18,1,1,0,1,[[500,1,1,0,1]]]],[14240]]],["set",[2,2,[[1,1,1,0,1,[[89,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]]],[2730,7076]]],["value",[3,2,[[2,3,2,0,2,[[116,3,2,0,2]]]],[3578,3582]]]]},{"k":"H6187","v":[["*",[33,29,[[1,2,2,0,2,[[89,2,2,0,2]]],[2,24,20,2,22,[[94,2,2,2,4],[95,1,1,4,5],[116,21,17,5,22]]],[3,1,1,22,23,[[134,1,1,22,23]]],[6,1,1,23,24,[[227,1,1,23,24]]],[11,2,2,24,26,[[324,1,1,24,25],[335,1,1,25,26]]],[17,2,2,26,28,[[463,1,1,26,27],[476,1,1,27,28]]],[18,1,1,28,29,[[532,1,1,28,29]]]],[2711,2730,2845,2848,2855,3572,3573,3574,3575,3576,3577,3578,3582,3583,3585,3586,3587,3588,3589,3593,3595,3597,4273,6990,9854,10200,13517,13900,14745]]],["+",[2,2,[[2,2,2,0,2,[[116,2,2,0,2]]]],[3578,3588]]],["at",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9854]]],["equal",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14745]]],["estimation",[21,17,[[2,20,16,0,16,[[94,2,2,0,2],[95,1,1,2,3],[116,17,13,3,16]]],[3,1,1,16,17,[[134,1,1,16,17]]]],[2845,2848,2855,3572,3573,3574,3575,3576,3577,3583,3585,3586,3587,3589,3593,3597,4273]]],["estimations",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3595]]],["order",[2,2,[[1,2,2,0,2,[[89,2,2,0,2]]]],[2711,2730]]],["price",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13517]]],["proportion",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13900]]],["suit",[1,1,[[6,1,1,0,1,[[227,1,1,0,1]]]],[6990]]],["taxation",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10200]]],["valuest",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3582]]]]},{"k":"H6188","v":[["*",[2,2,[[2,1,1,0,1,[[108,1,1,0,1]]],[34,1,1,1,2,[[904,1,1,1,2]]]],[3304,22764]]],["+",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3304]]],["uncovered",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22764]]]]},{"k":"H6189","v":[["*",[36,32,[[0,1,1,0,1,[[16,1,1,0,1]]],[1,3,3,1,4,[[55,2,2,1,3],[61,1,1,3,4]]],[2,3,2,4,6,[[108,2,1,4,5],[115,1,1,5,6]]],[5,1,1,6,7,[[191,1,1,6,7]]],[6,2,2,7,9,[[224,1,1,7,8],[225,1,1,8,9]]],[8,4,4,9,13,[[249,1,1,9,10],[252,2,2,10,12],[266,1,1,12,13]]],[9,1,1,13,14,[[267,1,1,13,14]]],[12,1,1,14,15,[[347,1,1,14,15]]],[22,1,1,15,16,[[730,1,1,15,16]]],[23,3,2,16,18,[[750,1,1,16,17],[753,2,1,17,18]]],[25,16,14,18,32,[[829,1,1,18,19],[832,1,1,19,20],[833,10,10,20,30],[845,4,2,30,32]]]],[411,1667,1685,1864,3304,3565,5941,6912,6947,7514,7644,7654,8013,8042,10663,18697,19099,19201,21167,21248,21267,21269,21272,21273,21274,21275,21276,21277,21278,21280,21606,21608]]],["+",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[25,1,1,1,2,[[833,1,1,1,2]]]],[1864,21275]]],["uncircumcised",[34,30,[[0,1,1,0,1,[[16,1,1,0,1]]],[1,2,2,1,3,[[55,2,2,1,3]]],[2,3,2,3,5,[[108,2,1,3,4],[115,1,1,4,5]]],[5,1,1,5,6,[[191,1,1,5,6]]],[6,2,2,6,8,[[224,1,1,6,7],[225,1,1,7,8]]],[8,4,4,8,12,[[249,1,1,8,9],[252,2,2,9,11],[266,1,1,11,12]]],[9,1,1,12,13,[[267,1,1,12,13]]],[12,1,1,13,14,[[347,1,1,13,14]]],[22,1,1,14,15,[[730,1,1,14,15]]],[23,3,2,15,17,[[750,1,1,15,16],[753,2,1,16,17]]],[25,15,13,17,30,[[829,1,1,17,18],[832,1,1,18,19],[833,9,9,19,28],[845,4,2,28,30]]]],[411,1667,1685,3304,3565,5941,6912,6947,7514,7644,7654,8013,8042,10663,18697,19099,19201,21167,21248,21267,21269,21272,21273,21274,21276,21277,21278,21280,21606,21608]]]]},{"k":"H6190","v":[["*",[15,15,[[0,6,6,0,6,[[16,5,5,0,5],[33,1,1,5,6]]],[1,1,1,6,7,[[53,1,1,6,7]]],[2,1,1,7,8,[[101,1,1,7,8]]],[4,1,1,8,9,[[162,1,1,8,9]]],[5,1,1,9,10,[[191,1,1,9,10]]],[8,2,2,10,12,[[253,2,2,10,12]]],[9,1,1,12,13,[[269,1,1,12,13]]],[23,2,2,13,15,[[748,1,1,13,14],[753,1,1,14,15]]]],[408,411,420,421,422,994,1626,3047,5202,5937,7701,7703,8095,19031,19200]]],["foreskin",[8,8,[[0,5,5,0,5,[[16,5,5,0,5]]],[1,1,1,5,6,[[53,1,1,5,6]]],[2,1,1,6,7,[[101,1,1,6,7]]],[4,1,1,7,8,[[162,1,1,7,8]]]],[408,411,420,421,422,1626,3047,5202]]],["foreskins",[5,5,[[5,1,1,0,1,[[191,1,1,0,1]]],[8,2,2,1,3,[[253,2,2,1,3]]],[9,1,1,3,4,[[269,1,1,3,4]]],[23,1,1,4,5,[[748,1,1,4,5]]]],[5937,7701,7703,8095,19031]]],["uncircumcised",[2,2,[[0,1,1,0,1,[[33,1,1,0,1]]],[23,1,1,1,2,[[753,1,1,1,2]]]],[994,19200]]]]},{"k":"H6191","v":[["*",[5,4,[[8,2,1,0,1,[[258,2,1,0,1]]],[18,1,1,1,2,[[560,1,1,1,2]]],[19,2,2,2,4,[[642,1,1,2,3],[646,1,1,3,4]]]],[7832,15244,16812,16950]]],["+",[2,1,[[8,2,1,0,1,[[258,2,1,0,1]]]],[7832]]],["beware",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16950]]],["crafty",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15244]]],["prudent",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16812]]]]},{"k":"H6192","v":[["together",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1928]]]]},{"k":"H6193","v":[["craftiness",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12964]]]]},{"k":"H6194","v":[["*",[11,10,[[7,1,1,0,1,[[234,1,1,0,1]]],[13,5,4,1,5,[[397,5,4,1,5]]],[15,2,2,5,7,[[416,1,1,5,6],[425,1,1,6,7]]],[21,1,1,7,8,[[677,1,1,7,8]]],[23,1,1,8,9,[[794,1,1,8,9]]],[36,1,1,9,10,[[910,1,1,9,10]]]],[7179,11860,11861,11862,11863,12361,12686,17629,20192,22871]]],["+",[3,2,[[13,2,1,0,1,[[397,2,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]]],[11860,12361]]],["corn",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7179]]],["heap",[2,2,[[21,1,1,0,1,[[677,1,1,0,1]]],[36,1,1,1,2,[[910,1,1,1,2]]]],[17629,22871]]],["heaps",[4,4,[[13,3,3,0,3,[[397,3,3,0,3]]],[23,1,1,3,4,[[794,1,1,3,4]]]],[11861,11862,11863,20192]]],["sheaves",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12686]]]]},{"k":"H6195","v":[["*",[5,5,[[1,1,1,0,1,[[70,1,1,0,1]]],[5,1,1,1,2,[[195,1,1,1,2]]],[19,3,3,2,5,[[628,1,1,2,3],[635,2,2,3,5]]]],[2091,6041,16404,16607,16614]]],["guile",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2091]]],["prudence",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16614]]],["subtilty",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16404]]],["wilily",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6041]]],["wisdom",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16607]]]]},{"k":"H6196","v":[["*",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[25,1,1,1,2,[[832,1,1,1,2]]]],[867,21238]]],["tree",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[867]]],["trees",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21238]]]]},{"k":"H6197","v":[["Eran",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4525]]]]},{"k":"H6198","v":[["Eranites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4525]]]]},{"k":"H6199","v":[["destitute",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15538]]]]},{"k":"H6200","v":[["Aroerite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10717]]]]},{"k":"H6201","v":[["*",[2,2,[[4,2,2,0,2,[[184,1,1,0,1],[185,1,1,1,2]]]],[5760,5838]]],["down",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5838]]],["drop",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5760]]]]},{"k":"H6202","v":[["*",[5,5,[[1,2,2,0,2,[[62,1,1,0,1],[83,1,1,1,2]]],[4,1,1,2,3,[[173,1,1,2,3]]],[22,1,1,3,4,[[744,1,1,3,4]]],[27,1,1,4,5,[[871,1,1,4,5]]]],[1880,2516,5453,18925,22227]]],["+",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18925]]],["beheaded",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5453]]],["down",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22227]]],["neck",[2,2,[[1,2,2,0,2,[[62,1,1,0,1],[83,1,1,1,2]]]],[1880,2516]]]]},{"k":"H6203","v":[["*",[35,33,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,5,5,1,6,[[72,1,1,1,2],[81,1,1,2,3],[82,2,2,3,5],[83,1,1,5,6]]],[2,1,1,6,7,[[94,1,1,6,7]]],[4,6,5,7,12,[[161,2,2,7,9],[162,1,1,9,10],[173,2,1,10,11],[183,1,1,11,12]]],[5,2,2,12,14,[[193,2,2,12,14]]],[9,1,1,14,15,[[288,1,1,14,15]]],[11,2,1,15,16,[[329,2,1,15,16]]],[13,3,3,16,19,[[395,1,1,16,17],[396,1,1,17,18],[402,1,1,18,19]]],[15,3,3,19,22,[[421,3,3,19,22]]],[17,1,1,22,23,[[451,1,1,22,23]]],[18,1,1,23,24,[[495,1,1,23,24]]],[19,1,1,24,25,[[656,1,1,24,25]]],[22,1,1,25,26,[[726,1,1,25,26]]],[23,7,7,26,33,[[746,1,1,26,27],[751,1,1,27,28],[761,1,1,28,29],[762,1,1,29,30],[763,1,1,30,31],[776,1,1,31,32],[792,1,1,32,33]]]],[1481,2171,2447,2476,2478,2505,2838,5163,5170,5202,5451,5755,5984,5988,8643,9997,11797,11835,12006,12527,12528,12540,13250,14158,17225,18618,18992,19145,19380,19401,19422,19764,20119]]],["+",[9,9,[[1,4,4,0,4,[[81,1,1,0,1],[82,2,2,1,3],[83,1,1,3,4]]],[4,4,4,4,8,[[161,2,2,4,6],[162,1,1,6,7],[173,1,1,7,8]]],[13,1,1,8,9,[[396,1,1,8,9]]]],[2447,2476,2478,2505,5163,5170,5202,5451,11835]]],["back",[4,4,[[23,4,4,0,4,[[746,1,1,0,1],[762,1,1,1,2],[776,1,1,2,3],[792,1,1,3,4]]]],[18992,19401,19764,20119]]],["backs",[4,4,[[1,1,1,0,1,[[72,1,1,0,1]]],[5,2,2,1,3,[[193,2,2,1,3]]],[13,1,1,3,4,[[395,1,1,3,4]]]],[2171,5984,5988,11797]]],["neck",[12,12,[[0,1,1,0,1,[[48,1,1,0,1]]],[2,1,1,1,2,[[94,1,1,1,2]]],[4,2,2,2,4,[[173,1,1,2,3],[183,1,1,3,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[13,1,1,5,6,[[402,1,1,5,6]]],[15,1,1,6,7,[[421,1,1,6,7]]],[17,1,1,7,8,[[451,1,1,7,8]]],[19,1,1,8,9,[[656,1,1,8,9]]],[22,1,1,9,10,[[726,1,1,9,10]]],[23,2,2,10,12,[[751,1,1,10,11],[761,1,1,11,12]]]],[1481,2838,5451,5755,9997,12006,12540,13250,17225,18618,19145,19380]]],["necks",[6,6,[[9,1,1,0,1,[[288,1,1,0,1]]],[11,1,1,1,2,[[329,1,1,1,2]]],[15,2,2,2,4,[[421,2,2,2,4]]],[18,1,1,4,5,[[495,1,1,4,5]]],[23,1,1,5,6,[[763,1,1,5,6]]]],[8643,9997,12527,12528,14158,19422]]]]},{"k":"H6204","v":[["Orpah",[2,2,[[7,2,2,0,2,[[232,2,2,0,2]]]],[7131,7141]]]]},{"k":"H6205","v":[["*",[15,15,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[157,1,1,2,3]]],[9,1,1,3,4,[[288,1,1,3,4]]],[10,1,1,4,5,[[298,1,1,4,5]]],[13,1,1,5,6,[[372,1,1,5,6]]],[17,2,2,6,8,[[457,1,1,6,7],[473,1,1,7,8]]],[18,2,2,8,10,[[495,1,1,8,9],[574,1,1,9,10]]],[22,1,1,10,11,[[738,1,1,10,11]]],[23,1,1,11,12,[[757,1,1,11,12]]],[25,1,1,12,13,[[835,1,1,12,13]]],[28,1,1,13,14,[[877,1,1,13,14]]],[35,1,1,14,15,[[906,1,1,14,15]]]],[2072,5015,5075,8612,8997,11283,13402,13802,14127,15480,18823,19282,21325,22313,22802]]],["cloud",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13402]]],["dark",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21325]]],["darkness",[13,13,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[157,1,1,2,3]]],[9,1,1,3,4,[[288,1,1,3,4]]],[10,1,1,4,5,[[298,1,1,4,5]]],[13,1,1,5,6,[[372,1,1,5,6]]],[17,1,1,6,7,[[473,1,1,6,7]]],[18,2,2,7,9,[[495,1,1,7,8],[574,1,1,8,9]]],[22,1,1,9,10,[[738,1,1,9,10]]],[23,1,1,10,11,[[757,1,1,10,11]]],[28,1,1,11,12,[[877,1,1,11,12]]],[35,1,1,12,13,[[906,1,1,12,13]]]],[2072,5015,5075,8612,8997,11283,13802,14127,15480,18823,19282,22313,22802]]]]},{"k":"H6206","v":[["*",[15,15,[[4,4,4,0,4,[[153,1,1,0,1],[159,1,1,1,2],[172,1,1,2,3],[183,1,1,3,4]]],[5,1,1,4,5,[[187,1,1,4,5]]],[17,2,2,5,7,[[448,1,1,5,6],[466,1,1,6,7]]],[18,2,2,7,9,[[487,1,1,7,8],[566,1,1,8,9]]],[22,6,6,9,15,[[680,2,2,9,11],[686,2,2,11,13],[707,1,1,13,14],[725,1,1,14,15]]]],[4921,5132,5430,5734,5860,13178,13622,14059,15333,17704,17706,17819,17820,18216,18611]]],["+",[1,1,[[5,1,1,0,1,[[187,1,1,0,1]]]],[5860]]],["Dread",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4921]]],["affrighted",[1,1,[[4,1,1,0,1,[[159,1,1,0,1]]]],[5132]]],["afraid",[2,2,[[4,1,1,0,1,[[183,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]]],[5734,17819]]],["break",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13178]]],["dread",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17820]]],["fear",[2,2,[[17,1,1,0,1,[[466,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]]],[13622,18216]]],["feared",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15333]]],["oppress",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14059]]],["prevail",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18611]]],["terribly",[2,2,[[22,2,2,0,2,[[680,2,2,0,2]]]],[17704,17706]]],["terrified",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5430]]]]},{"k":"H6207","v":[["*",[2,2,[[17,2,2,0,2,[[465,2,2,0,2]]]],[13560,13574]]],["fleeing",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13560]]],["sinews",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13574]]]]},{"k":"H6208","v":[["Arkite",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[251,10267]]]]},{"k":"H6209","v":[["*",[4,3,[[22,2,2,0,2,[[701,1,1,0,1],[710,1,1,1,2]]],[23,2,1,2,3,[[795,2,1,2,3]]]],[18090,18270,20270]]],["+",[2,1,[[23,2,1,0,1,[[795,2,1,0,1]]]],[20270]]],["bare",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18270]]],["up",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18090]]]]},{"k":"H6210","v":[["*",[10,9,[[4,2,1,0,1,[[155,2,1,0,1]]],[17,1,1,1,2,[[442,1,1,1,2]]],[18,3,3,2,5,[[483,1,1,2,3],[518,1,1,3,4],[609,1,1,4,5]]],[19,1,1,5,6,[[634,1,1,5,6]]],[21,1,1,6,7,[[671,1,1,6,7]]],[29,2,2,7,9,[[881,1,1,7,8],[884,1,1,8,9]]]],[4986,13021,13991,14545,16154,16591,17553,22407,22454]]],["+",[1,1,[[18,1,1,0,1,[[609,1,1,0,1]]]],[16154]]],["bed",[4,4,[[17,1,1,0,1,[[442,1,1,0,1]]],[18,1,1,1,2,[[518,1,1,1,2]]],[19,1,1,2,3,[[634,1,1,2,3]]],[21,1,1,3,4,[[671,1,1,3,4]]]],[13021,14545,16591,17553]]],["bedstead",[2,1,[[4,2,1,0,1,[[155,2,1,0,1]]]],[4986]]],["couch",[2,2,[[18,1,1,0,1,[[483,1,1,0,1]]],[29,1,1,1,2,[[881,1,1,1,2]]]],[13991,22407]]],["couches",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22454]]]]},{"k":"H6211","v":[["*",[12,12,[[17,3,3,0,3,[[439,1,1,0,1],[448,1,1,1,2],[462,1,1,2,3]]],[18,1,1,3,4,[[516,1,1,3,4]]],[22,2,2,4,6,[[728,1,1,4,5],[729,1,1,5,6]]],[26,5,5,6,11,[[853,4,4,6,10],[854,1,1,10,11]]],[27,1,1,11,12,[[866,1,1,11,12]]]],[12949,13181,13499,14523,18671,18681,21852,21862,21869,21870,21895,22164]]],["grass",[5,5,[[26,5,5,0,5,[[853,4,4,0,4],[854,1,1,4,5]]]],[21852,21862,21869,21870,21895]]],["moth",[7,7,[[17,3,3,0,3,[[439,1,1,0,1],[448,1,1,1,2],[462,1,1,2,3]]],[18,1,1,3,4,[[516,1,1,3,4]]],[22,2,2,4,6,[[728,1,1,4,5],[729,1,1,5,6]]],[27,1,1,6,7,[[866,1,1,6,7]]]],[12949,13181,13499,14523,18671,18681,22164]]]]},{"k":"H6212","v":[["*",[33,32,[[0,7,7,0,7,[[0,4,4,0,4],[1,1,1,4,5],[2,1,1,5,6],[8,1,1,6,7]]],[1,5,4,7,11,[[58,2,2,7,9],[59,3,2,9,11]]],[4,3,3,11,14,[[163,1,1,11,12],[181,1,1,12,13],[184,1,1,13,14]]],[11,1,1,14,15,[[331,1,1,14,15]]],[17,1,1,15,16,[[440,1,1,15,16]]],[18,7,7,16,23,[[549,1,1,16,17],[569,1,1,17,18],[579,2,2,18,20],[581,1,1,20,21],[582,1,1,21,22],[583,1,1,22,23]]],[19,2,2,23,25,[[646,1,1,23,24],[654,1,1,24,25]]],[22,2,2,25,27,[[715,1,1,25,26],[720,1,1,26,27]]],[23,2,2,27,29,[[756,1,1,27,28],[758,1,1,28,29]]],[29,1,1,29,30,[[885,1,1,29,30]]],[32,1,1,30,31,[[897,1,1,30,31]]],[37,1,1,31,32,[[920,1,1,31,32]]]],[10,11,28,29,35,73,208,1764,1767,1789,1792,5223,5702,5760,10087,12976,15016,15418,15525,15532,15585,15641,15671,16937,17194,18379,18495,19253,19299,22466,22640,23017]]],["grass",[16,16,[[4,3,3,0,3,[[163,1,1,0,1],[181,1,1,1,2],[184,1,1,2,3]]],[11,1,1,3,4,[[331,1,1,3,4]]],[17,1,1,4,5,[[440,1,1,4,5]]],[18,5,5,5,10,[[549,1,1,5,6],[569,1,1,6,7],[579,2,2,7,9],[583,1,1,9,10]]],[19,1,1,10,11,[[646,1,1,10,11]]],[22,1,1,11,12,[[715,1,1,11,12]]],[23,1,1,12,13,[[758,1,1,12,13]]],[29,1,1,13,14,[[885,1,1,13,14]]],[32,1,1,14,15,[[897,1,1,14,15]]],[37,1,1,15,16,[[920,1,1,15,16]]]],[5223,5702,5760,10087,12976,15016,15418,15525,15532,15671,16937,18379,19299,22466,22640,23017]]],["herb",[12,12,[[0,7,7,0,7,[[0,4,4,0,4],[1,1,1,4,5],[2,1,1,5,6],[8,1,1,6,7]]],[1,4,4,7,11,[[58,2,2,7,9],[59,2,2,9,11]]],[18,1,1,11,12,[[581,1,1,11,12]]]],[10,11,28,29,35,73,208,1764,1767,1789,1792,15585]]],["herbs",[5,5,[[1,1,1,0,1,[[59,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]],[19,1,1,2,3,[[654,1,1,2,3]]],[22,1,1,3,4,[[720,1,1,3,4]]],[23,1,1,4,5,[[756,1,1,4,5]]]],[1792,15641,17194,18495,19253]]]]},{"k":"H6213","v":[["*",[2633,2287,[[0,153,140,0,140,[[0,7,7,0,7],[1,5,4,7,11],[2,5,5,11,16],[3,1,1,16,17],[4,1,1,17,18],[5,9,6,18,24],[6,2,2,24,26],[7,2,2,26,28],[8,2,2,28,30],[10,3,2,30,32],[11,3,3,32,35],[12,1,1,35,36],[13,1,1,36,37],[15,1,1,37,38],[17,11,10,38,48],[18,5,4,48,52],[19,7,5,52,57],[20,7,6,57,63],[21,2,2,63,65],[23,4,4,65,69],[25,4,3,69,72],[26,9,9,72,81],[27,1,1,81,82],[28,4,4,82,86],[29,2,2,86,88],[30,8,8,88,96],[31,1,1,96,97],[32,1,1,97,98],[33,5,4,98,102],[34,2,2,102,104],[36,1,1,104,105],[37,1,1,105,106],[38,7,6,106,112],[39,3,3,112,115],[40,6,6,115,121],[41,4,4,121,125],[42,2,2,125,127],[43,5,5,127,132],[44,3,3,132,135],[46,2,2,135,137],[49,3,3,137,140]]],[1,323,270,140,410,[[50,3,3,140,143],[51,1,1,143,144],[52,2,2,144,146],[53,4,4,146,150],[54,4,4,150,154],[55,1,1,154,155],[56,6,5,155,160],[57,7,7,160,167],[58,2,2,167,169],[59,1,1,169,170],[60,1,1,170,171],[61,12,8,171,179],[62,1,1,179,180],[63,5,5,180,185],[64,2,2,185,187],[65,1,1,187,188],[66,3,3,188,191],[67,10,9,191,200],[68,2,2,200,202],[69,9,8,202,210],[70,3,3,210,213],[71,1,1,213,214],[72,4,4,214,218],[73,2,2,218,220],[74,23,18,220,238],[75,24,19,238,257],[76,10,7,257,264],[77,24,18,264,282],[78,9,7,282,289],[79,13,10,289,299],[80,9,8,299,307],[81,12,11,307,318],[82,2,2,318,320],[83,4,3,320,323],[84,9,7,323,330],[85,38,29,330,359],[86,22,19,359,378],[87,13,12,378,390],[88,22,19,390,409],[89,2,1,409,410]]],[2,94,78,410,488,[[91,3,3,410,413],[93,11,5,413,418],[94,3,2,418,420],[95,4,4,420,424],[96,2,2,424,426],[97,5,4,426,430],[98,5,4,430,434],[99,1,1,434,435],[100,1,1,435,436],[102,1,1,436,437],[103,2,2,437,439],[104,2,2,439,441],[105,7,6,441,447],[106,1,1,447,448],[107,10,7,448,455],[108,4,4,455,459],[109,5,5,459,464],[111,3,3,464,467],[112,13,12,467,479],[113,3,2,479,481],[114,3,2,481,483],[115,5,5,483,488]]],[3,127,108,488,596,[[117,2,1,488,489],[118,1,1,489,490],[120,3,3,490,493],[121,5,4,493,497],[122,6,5,497,502],[124,8,7,502,509],[125,13,10,509,519],[126,2,1,519,520],[127,2,2,520,522],[130,5,5,522,527],[131,21,16,527,543],[132,3,3,543,546],[133,2,1,546,547],[136,1,1,547,548],[137,4,3,548,551],[138,6,6,551,557],[139,5,5,557,562],[140,3,3,562,565],[143,1,1,565,566],[144,15,12,566,578],[145,6,6,578,584],[146,1,1,584,585],[147,1,1,585,586],[148,7,7,586,593],[149,3,2,593,595],[152,1,1,595,596]]],[4,163,148,596,744,[[153,4,4,596,600],[154,3,3,600,603],[155,6,4,603,607],[156,11,10,607,617],[157,9,9,617,626],[158,5,5,626,631],[159,5,5,631,636],[160,3,3,636,639],[161,5,5,639,644],[162,5,5,644,649],[163,7,7,649,656],[164,12,10,656,666],[165,3,3,666,669],[166,1,1,669,670],[167,4,4,670,674],[168,6,6,674,680],[169,8,7,680,687],[170,2,2,687,689],[171,4,3,689,692],[172,5,4,692,696],[173,2,2,696,698],[174,8,6,698,704],[175,1,1,704,705],[176,5,4,705,709],[177,4,3,709,712],[178,4,3,712,715],[179,3,3,715,718],[180,5,5,718,723],[181,5,4,723,727],[182,4,4,727,731],[183,7,6,731,737],[184,3,3,737,740],[185,1,1,740,741],[186,3,3,741,744]]],[5,64,55,744,799,[[187,3,3,744,747],[188,4,3,747,750],[189,1,1,750,751],[190,2,2,751,753],[191,4,4,753,757],[192,2,2,757,759],[193,4,4,759,763],[194,3,2,763,765],[195,11,9,765,774],[196,14,9,774,783],[197,3,3,783,786],[200,1,1,786,787],[208,5,5,787,792],[209,3,3,792,795],[210,4,4,795,799]]],[6,91,74,799,873,[[211,2,2,799,801],[212,5,5,801,806],[213,4,3,806,809],[214,1,1,809,810],[216,11,8,810,818],[217,3,1,818,819],[218,6,5,819,824],[219,9,6,824,830],[220,2,2,830,832],[221,6,5,832,837],[223,5,5,837,842],[224,3,2,842,844],[225,8,5,844,849],[226,1,1,849,850],[227,5,5,850,855],[228,7,7,855,862],[229,3,2,862,864],[230,4,3,864,867],[231,6,6,867,873]]],[7,13,10,873,883,[[232,3,2,873,875],[233,4,2,875,877],[234,5,5,877,882],[235,1,1,882,883]]],[8,88,83,883,966,[[236,2,2,883,885],[237,5,5,885,890],[238,3,3,890,893],[240,1,1,893,894],[241,5,5,894,899],[243,4,3,899,902],[245,3,3,902,905],[246,3,3,905,908],[247,6,6,908,914],[248,2,2,914,916],[249,10,9,916,925],[250,3,3,925,928],[251,2,2,928,930],[252,4,4,930,934],[254,2,2,934,936],[255,7,7,936,943],[257,1,1,943,944],[259,4,4,944,948],[260,6,5,948,953],[261,4,3,953,956],[262,1,1,956,957],[263,6,5,957,962],[264,2,2,962,964],[265,1,1,964,965],[266,1,1,965,966]]],[9,85,74,966,1040,[[268,4,2,966,968],[269,10,9,968,977],[271,1,1,977,978],[273,6,6,978,984],[274,2,2,984,986],[275,5,4,986,990],[276,3,2,990,992],[277,2,2,992,994],[278,10,8,994,1002],[279,8,7,1002,1009],[280,4,4,1009,1013],[281,3,3,1013,1016],[282,2,2,1016,1018],[283,2,2,1018,1020],[284,2,2,1020,1022],[285,8,6,1022,1028],[287,4,4,1028,1032],[288,1,1,1032,1033],[289,5,4,1033,1037],[290,3,3,1037,1040]]],[10,154,133,1040,1173,[[291,3,3,1040,1043],[292,11,10,1043,1053],[293,5,4,1053,1057],[295,3,3,1057,1060],[296,6,6,1060,1066],[297,18,14,1066,1080],[298,9,9,1080,1089],[299,5,5,1089,1094],[300,5,5,1094,1099],[301,8,7,1099,1106],[302,11,6,1106,1112],[303,2,2,1112,1114],[304,11,9,1114,1123],[305,10,10,1123,1133],[306,11,8,1133,1141],[307,6,4,1141,1145],[308,7,6,1145,1151],[309,3,3,1151,1154],[310,7,6,1154,1160],[311,5,5,1160,1165],[312,8,8,1165,1173]]],[11,158,126,1173,1299,[[313,1,1,1173,1174],[314,1,1,1174,1175],[315,3,2,1175,1177],[316,4,4,1177,1181],[317,2,2,1181,1183],[318,3,3,1183,1186],[319,4,4,1186,1190],[320,8,7,1190,1197],[322,9,7,1197,1204],[323,2,2,1204,1206],[324,8,6,1206,1212],[325,4,4,1212,1216],[326,6,4,1216,1220],[327,15,11,1220,1231],[328,4,4,1231,1235],[329,24,17,1235,1252],[330,5,4,1252,1256],[331,5,5,1256,1261],[332,3,3,1261,1264],[333,16,12,1264,1276],[334,6,5,1276,1281],[335,16,11,1281,1292],[336,8,6,1292,1298],[337,1,1,1298,1299]]],[12,39,37,1299,1336,[[341,1,1,1299,1300],[342,2,2,1300,1302],[347,1,1,1302,1303],[348,3,2,1303,1305],[349,1,1,1305,1306],[350,1,1,1306,1307],[351,1,1,1307,1308],[352,1,1,1308,1309],[353,2,2,1309,1311],[354,4,4,1311,1315],[355,2,2,1315,1317],[356,3,2,1317,1319],[357,1,1,1319,1320],[358,5,5,1320,1325],[359,4,4,1325,1329],[360,2,2,1329,1331],[364,1,1,1331,1332],[365,3,3,1332,1335],[366,1,1,1335,1336]]],[13,160,136,1336,1472,[[367,3,3,1336,1339],[368,5,5,1339,1344],[369,6,5,1344,1349],[370,15,11,1349,1360],[371,1,1,1360,1361],[372,5,5,1361,1366],[373,10,8,1366,1374],[375,5,5,1374,1379],[377,2,2,1379,1381],[378,3,3,1381,1384],[379,2,2,1384,1386],[380,2,2,1386,1388],[381,1,1,1388,1389],[384,2,2,1389,1391],[385,5,5,1391,1396],[386,5,4,1396,1400],[387,4,3,1400,1403],[388,1,1,1403,1404],[389,2,2,1404,1406],[390,11,10,1406,1416],[391,4,4,1416,1420],[392,5,4,1420,1424],[393,2,1,1424,1425],[394,4,4,1425,1429],[395,3,2,1429,1431],[396,10,8,1431,1439],[397,3,2,1439,1441],[398,5,5,1441,1446],[399,10,7,1446,1453],[400,11,9,1453,1462],[401,9,6,1462,1468],[402,4,4,1468,1472]]],[14,11,11,1472,1483,[[405,2,2,1472,1474],[408,2,2,1474,1476],[409,1,1,1476,1477],[412,6,6,1477,1483]]],[15,55,49,1483,1532,[[413,1,1,1483,1484],[414,4,3,1484,1487],[415,1,1,1487,1488],[416,6,6,1488,1494],[417,8,6,1494,1500],[418,5,5,1500,1505],[420,7,6,1505,1511],[421,12,11,1511,1522],[422,1,1,1522,1523],[423,1,1,1523,1524],[424,1,1,1524,1525],[425,8,7,1525,1532]]],[16,55,46,1532,1578,[[426,8,7,1532,1539],[427,6,5,1539,1544],[428,3,3,1544,1547],[429,2,2,1547,1549],[430,10,6,1549,1555],[431,8,6,1555,1561],[432,3,3,1561,1564],[434,15,14,1564,1578]]],[17,36,35,1578,1613,[[436,2,2,1578,1580],[439,1,1,1580,1581],[440,2,2,1581,1583],[444,3,3,1583,1586],[445,3,3,1586,1589],[447,1,1,1589,1590],[448,1,1,1590,1591],[449,2,2,1591,1593],[450,1,1,1593,1594],[456,1,1,1594,1595],[458,2,2,1595,1597],[460,1,1,1597,1598],[462,1,1,1598,1599],[463,2,2,1599,1601],[466,3,2,1601,1603],[467,1,1,1603,1604],[468,1,1,1604,1605],[470,2,2,1605,1607],[472,1,1,1607,1608],[475,2,2,1608,1610],[476,1,1,1610,1611],[477,2,2,1611,1613]]],[18,110,110,1613,1723,[[478,1,1,1613,1614],[484,1,1,1614,1615],[486,3,3,1615,1618],[491,2,2,1618,1620],[492,2,2,1620,1622],[495,1,1,1622,1623],[499,1,1,1623,1624],[508,1,1,1624,1625],[510,1,1,1625,1626],[511,2,2,1626,1628],[514,5,5,1628,1633],[516,1,1,1633,1634],[517,2,2,1634,1636],[527,1,1,1636,1637],[528,1,1,1637,1638],[529,2,2,1638,1640],[530,2,2,1640,1642],[533,2,2,1642,1644],[537,1,1,1644,1645],[543,2,2,1645,1647],[548,1,1,1647,1648],[549,1,1,1648,1649],[554,1,1,1649,1650],[555,2,2,1650,1652],[560,1,1,1652,1653],[563,3,3,1653,1656],[565,1,1,1656,1657],[572,2,2,1657,1659],[573,1,1,1659,1660],[575,1,1,1660,1661],[576,1,1,1661,1662],[577,1,1,1662,1663],[578,2,2,1663,1665],[580,5,5,1665,1670],[581,3,3,1670,1673],[582,1,1,1673,1674],[583,3,3,1674,1677],[584,2,2,1677,1679],[585,1,1,1679,1680],[586,3,3,1680,1683],[588,3,3,1683,1686],[592,3,3,1686,1689],[595,4,4,1689,1693],[596,8,8,1693,1701],[598,1,1,1701,1702],[601,1,1,1702,1703],[603,2,2,1703,1705],[611,1,1,1705,1706],[612,3,3,1706,1709],[613,3,3,1709,1712],[616,1,1,1712,1713],[617,1,1,1713,1714],[620,1,1,1714,1715],[622,1,1,1715,1716],[623,2,2,1716,1718],[624,1,1,1718,1719],[625,1,1,1719,1720],[626,3,3,1720,1723]]],[19,34,32,1723,1755,[[629,1,1,1723,1724],[630,1,1,1724,1725],[633,2,2,1725,1727],[635,1,1,1727,1728],[637,2,2,1728,1730],[638,1,1,1730,1731],[639,1,1,1731,1732],[640,1,1,1732,1733],[641,2,2,1733,1735],[643,1,1,1735,1736],[644,1,1,1736,1737],[647,2,2,1737,1739],[648,5,5,1739,1744],[649,2,2,1744,1746],[650,2,1,1746,1747],[651,3,2,1747,1749],[652,1,1,1749,1750],[653,1,1,1750,1751],[658,4,4,1751,1755]]],[20,43,37,1755,1792,[[659,4,3,1755,1758],[660,9,8,1758,1766],[661,6,4,1766,1770],[662,2,2,1770,1772],[663,1,1,1772,1773],[664,1,1,1773,1774],[665,3,3,1774,1777],[666,10,9,1777,1786],[667,4,3,1786,1789],[668,1,1,1789,1790],[669,1,1,1790,1791],[670,1,1,1791,1792]]],[21,4,4,1792,1796,[[671,1,1,1792,1793],[673,2,2,1793,1795],[678,1,1,1795,1796]]],[22,102,87,1796,1883,[[680,2,2,1796,1798],[681,1,1,1798,1799],[683,9,4,1799,1803],[685,1,1,1803,1804],[687,1,1,1804,1805],[688,5,4,1805,1809],[690,1,1,1809,1810],[693,1,1,1810,1811],[694,1,1,1811,1812],[695,2,2,1812,1814],[697,2,2,1814,1816],[698,1,1,1816,1817],[700,2,1,1817,1818],[703,2,2,1818,1820],[704,1,1,1820,1821],[705,3,2,1821,1823],[706,2,2,1823,1825],[707,2,1,1825,1826],[708,1,1,1826,1827],[709,1,1,1827,1828],[710,2,1,1828,1829],[711,1,1,1829,1830],[714,1,1,1830,1831],[715,5,5,1831,1836],[716,3,3,1836,1839],[718,1,1,1839,1840],[719,2,2,1840,1842],[720,1,1,1842,1843],[721,2,2,1843,1845],[722,8,7,1845,1852],[723,5,4,1852,1856],[724,5,4,1856,1860],[726,4,4,1860,1864],[729,1,1,1864,1865],[731,1,1,1865,1866],[732,1,1,1866,1867],[733,1,1,1867,1868],[734,3,2,1868,1870],[735,1,1,1870,1871],[736,3,2,1871,1873],[741,2,2,1873,1875],[742,3,3,1875,1878],[743,2,2,1878,1880],[744,3,3,1880,1883]]],[23,154,135,1883,2018,[[745,1,1,1883,1884],[746,4,4,1884,1888],[747,4,4,1888,1892],[748,3,3,1892,1895],[749,6,6,1895,1901],[750,3,3,1901,1904],[751,10,8,1904,1912],[752,4,4,1912,1916],[753,2,2,1916,1918],[754,2,2,1918,1920],[755,6,5,1920,1925],[756,3,3,1925,1928],[758,2,2,1928,1930],[759,1,1,1930,1931],[760,2,2,1931,1933],[761,4,4,1933,1937],[762,10,8,1937,1945],[763,1,1,1945,1946],[765,1,1,1946,1947],[766,6,5,1947,1952],[767,2,2,1952,1954],[770,3,3,1954,1957],[771,2,2,1957,1959],[772,2,2,1959,1961],[773,2,2,1961,1963],[774,4,3,1963,1966],[775,1,1,1966,1967],[776,8,7,1967,1974],[777,5,4,1974,1978],[778,1,1,1978,1979],[779,2,2,1979,1981],[780,2,2,1981,1983],[781,1,1,1983,1984],[782,3,3,1984,1987],[783,2,1,1987,1988],[784,2,2,1988,1990],[785,2,2,1990,1992],[786,4,4,1992,1996],[788,13,8,1996,2004],[790,3,2,2004,2006],[792,3,3,2006,2009],[794,5,3,2009,2012],[795,4,4,2012,2016],[796,3,2,2016,2018]]],[24,2,2,2018,2020,[[797,1,1,2018,2019],[798,1,1,2019,2020]]],[25,219,180,2020,2200,[[804,2,1,2020,2021],[805,2,2,2021,2023],[806,8,5,2023,2028],[807,2,2,2028,2030],[808,3,3,2030,2033],[809,8,6,2033,2039],[810,2,2,2039,2041],[812,5,4,2041,2045],[813,8,6,2045,2051],[814,1,1,2051,2052],[815,2,1,2052,2053],[816,3,2,2053,2055],[817,17,15,2055,2070],[818,7,7,2070,2077],[819,27,18,2077,2095],[821,12,11,2095,2106],[822,1,1,2106,2107],[823,8,7,2107,2114],[824,10,10,2114,2124],[825,8,6,2124,2130],[826,5,5,2130,2135],[828,3,2,2135,2137],[829,4,3,2137,2140],[830,3,3,2140,2143],[831,2,2,2143,2145],[832,3,2,2145,2147],[834,12,10,2147,2157],[836,5,4,2157,2161],[837,6,5,2161,2166],[838,4,4,2166,2170],[839,1,1,2170,2171],[840,2,2,2171,2173],[841,2,2,2173,2175],[842,5,4,2175,2179],[844,7,5,2179,2184],[845,2,2,2184,2186],[846,7,7,2186,2193],[847,10,7,2193,2200]]],[26,24,21,2200,2221,[[850,1,1,2200,2201],[857,4,4,2201,2205],[858,5,4,2205,2209],[860,14,12,2209,2221]]],[27,15,13,2221,2234,[[863,1,1,2221,2222],[867,3,2,2222,2224],[869,5,4,2224,2228],[870,2,2,2228,2230],[871,2,2,2230,2232],[872,1,1,2232,2233],[874,1,1,2233,2234]]],[28,4,4,2234,2238,[[877,4,4,2234,2238]]],[29,10,9,2238,2247,[[881,3,3,2238,2241],[882,3,2,2241,2243],[883,2,2,2243,2245],[887,2,2,2245,2247]]],[30,2,1,2247,2248,[[888,2,1,2247,2248]]],[31,7,6,2248,2254,[[889,4,4,2248,2252],[891,2,1,2252,2253],[892,1,1,2253,2254]]],[32,6,6,2254,2260,[[893,1,1,2254,2255],[894,1,1,2255,2256],[897,1,1,2256,2257],[898,2,2,2257,2259],[899,1,1,2259,2260]]],[33,2,2,2260,2262,[[900,2,2,2260,2262]]],[34,3,3,2262,2265,[[903,1,1,2262,2263],[904,1,1,2263,2264],[905,1,1,2264,2265]]],[35,4,4,2265,2269,[[906,1,1,2265,2266],[908,3,3,2266,2269]]],[36,2,2,2269,2271,[[909,1,1,2269,2270],[910,1,1,2270,2271]]],[37,8,7,2271,2278,[[911,3,2,2271,2273],[916,1,1,2273,2274],[917,2,2,2274,2276],[918,1,1,2276,2277],[920,1,1,2277,2278]]],[38,9,9,2278,2287,[[926,5,5,2278,2283],[927,2,2,2283,2285],[928,2,2,2285,2287]]]],[6,10,11,15,24,25,30,32,33,34,48,56,62,68,69,76,89,106,143,144,151,152,153,159,163,164,189,204,211,229,270,272,300,303,316,322,338,387,429,430,431,432,441,443,445,449,453,454,460,465,476,479,500,501,504,505,508,514,519,521,535,536,539,559,563,603,605,640,657,702,721,722,731,734,736,741,744,746,758,764,772,788,817,820,821,823,860,861,874,885,889,899,901,902,916,919,938,977,987,994,999,1011,1012,1014,1086,1129,1152,1158,1160,1168,1171,1172,1186,1187,1192,1220,1223,1227,1229,1242,1250,1270,1272,1277,1280,1301,1307,1326,1329,1331,1339,1341,1375,1377,1379,1449,1450,1516,1518,1526,1549,1550,1553,1558,1595,1599,1616,1618,1622,1631,1640,1641,1647,1648,1656,1691,1695,1696,1705,1707,1717,1723,1727,1728,1734,1736,1741,1747,1748,1802,1816,1828,1832,1844,1851,1855,1863,1864,1866,1875,1893,1894,1900,1902,1920,1931,1946,1964,1987,1989,1993,2000,2007,2008,2013,2016,2017,2019,2022,2023,2030,2034,2055,2057,2060,2061,2062,2074,2075,2076,2086,2088,2108,2143,2155,2156,2166,2168,2180,2184,2203,2204,2205,2206,2208,2212,2213,2214,2218,2219,2220,2221,2223,2224,2226,2232,2234,2235,2236,2239,2240,2241,2242,2245,2246,2249,2250,2252,2253,2254,2257,2258,2261,2264,2266,2271,2272,2273,2274,2275,2276,2278,2280,2281,2295,2296,2297,2299,2304,2306,2307,2308,2315,2316,2319,2320,2324,2326,2329,2332,2333,2335,2337,2338,2371,2372,2374,2375,2377,2383,2385,2386,2387,2400,2407,2414,2417,2419,2420,2424,2425,2426,2431,2434,2435,2436,2437,2439,2442,2446,2448,2452,2458,2459,2461,2466,2469,2473,2478,2490,2506,2513,2518,2532,2533,2541,2560,2563,2564,2566,2567,2568,2569,2570,2571,2572,2573,2574,2577,2578,2579,2580,2583,2584,2585,2586,2588,2589,2590,2591,2593,2594,2595,2597,2599,2600,2601,2602,2603,2605,2606,2608,2610,2611,2612,2614,2615,2616,2619,2620,2621,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2639,2640,2641,2642,2655,2657,2661,2663,2665,2666,2667,2668,2670,2672,2673,2679,2680,2683,2684,2686,2688,2689,2691,2694,2696,2706,2707,2723,2769,2770,2773,2797,2808,2815,2817,2822,2840,2847,2852,2856,2870,2871,2888,2903,2921,2922,2951,2953,2959,2960,2969,2975,2984,3029,3103,3130,3141,3183,3198,3210,3216,3217,3225,3230,3235,3244,3254,3255,3256,3277,3278,3280,3281,3285,3296,3316,3318,3326,3330,3331,3340,3341,3392,3393,3400,3405,3409,3410,3414,3421,3423,3427,3430,3432,3433,3437,3438,3465,3469,3487,3490,3525,3527,3538,3539,3540,3658,3692,3746,3762,3769,3796,3798,3799,3822,3827,3834,3839,3840,3844,3942,3943,3946,3951,3959,3961,3965,3967,3968,3969,3970,3971,3975,3976,3977,3978,3979,3990,4032,4039,4119,4120,4130,4136,4143,4156,4158,4159,4161,4164,4165,4166,4167,4175,4177,4182,4183,4187,4191,4192,4193,4200,4222,4232,4255,4338,4348,4349,4374,4377,4392,4393,4395,4403,4405,4418,4427,4435,4442,4446,4459,4460,4464,4576,4581,4583,4585,4592,4595,4597,4598,4600,4601,4602,4603,4608,4609,4610,4615,4620,4643,4647,4650,4695,4726,4731,4738,4741,4742,4743,4749,4764,4816,4889,4906,4910,4922,4936,4950,4960,4967,4977,4981,4996,4999,5005,5007,5009,5010,5017,5018,5020,5027,5029,5038,5054,5061,5063,5066,5067,5068,5080,5084,5085,5087,5089,5104,5110,5111,5116,5122,5123,5129,5130,5138,5154,5155,5169,5171,5173,5175,5178,5187,5189,5191,5204,5207,5211,5212,5213,5214,5215,5230,5240,5241,5244,5248,5254,5265,5267,5268,5270,5271,5272,5283,5286,5290,5319,5320,5324,5336,5337,5343,5350,5352,5354,5355,5363,5366,5368,5369,5374,5375,5376,5383,5393,5396,5415,5425,5426,5439,5442,5445,5447,5456,5459,5473,5475,5478,5482,5491,5496,5523,5533,5534,5543,5547,5556,5563,5564,5580,5582,5585,5595,5600,5611,5612,5624,5626,5631,5669,5681,5688,5703,5708,5716,5720,5721,5722,5732,5733,5740,5746,5749,5757,5764,5773,5804,5831,5848,5850,5851,5858,5859,5867,5879,5881,5883,5898,5918,5933,5936,5937,5944,5949,5952,5963,5985,5991,5995,5996,6004,6010,6040,6041,6046,6047,6052,6057,6061,6062,6063,6065,6087,6089,6092,6094,6096,6099,6101,6103,6116,6122,6125,6192,6431,6449,6450,6452,6454,6463,6466,6468,6481,6483,6493,6507,6516,6533,6547,6552,6555,6556,6562,6575,6580,6584,6600,6655,6656,6671,6673,6674,6681,6683,6694,6711,6720,6721,6722,6746,6754,6770,6773,6781,6787,6802,6810,6817,6826,6839,6856,6865,6866,6868,6885,6892,6899,6900,6903,6915,6919,6932,6935,6936,6939,6940,6960,6983,6984,6985,6986,6988,6996,6997,7007,7011,7017,7020,7024,7047,7048,7060,7063,7064,7109,7113,7117,7118,7125,7127,7135,7144,7160,7168,7176,7177,7178,7183,7188,7201,7219,7235,7254,7259,7262,7263,7275,7287,7293,7294,7327,7333,7336,7338,7340,7341,7377,7381,7385,7420,7425,7426,7452,7455,7458,7466,7467,7476,7477,7480,7482,7496,7504,7514,7515,7540,7544,7548,7551,7552,7553,7556,7562,7566,7579,7598,7599,7643,7644,7645,7647,7711,7724,7731,7732,7734,7738,7743,7744,7762,7790,7843,7845,7857,7858,7878,7879,7883,7889,7891,7921,7923,7930,7941,7944,7951,7957,7959,7960,7974,7975,8001,8020,8054,8055,8089,8090,8099,8101,8105,8106,8116,8117,8120,8157,8183,8189,8191,8201,8203,8205,8222,8224,8228,8230,8234,8238,8242,8252,8270,8286,8290,8291,8292,8295,8298,8304,8307,8317,8319,8322,8324,8327,8329,8333,8346,8371,8376,8377,8378,8390,8395,8415,8436,8446,8455,8472,8482,8491,8524,8529,8535,8538,8548,8549,8583,8584,8591,8594,8653,8663,8665,8670,8675,8702,8704,8709,8722,8723,8747,8773,8775,8776,8777,8779,8793,8794,8801,8808,8814,8822,8828,8831,8844,8886,8887,8894,8900,8901,8908,8919,8927,8929,8940,8941,8942,8948,8950,8952,8957,8961,8971,8972,8974,8979,8982,8985,9017,9024,9028,9030,9034,9044,9049,9050,9051,9052,9055,9059,9074,9077,9088,9091,9095,9097,9099,9114,9116,9120,9136,9141,9146,9149,9172,9178,9179,9182,9183,9184,9195,9217,9222,9226,9227,9233,9240,9242,9244,9245,9247,9252,9254,9256,9260,9261,9262,9272,9275,9280,9283,9288,9290,9297,9302,9308,9310,9313,9316,9322,9329,9330,9332,9354,9364,9366,9367,9373,9377,9388,9389,9407,9417,9418,9430,9432,9433,9448,9458,9462,9471,9476,9477,9491,9502,9519,9523,9525,9528,9532,9533,9551,9560,9578,9592,9605,9613,9616,9617,9660,9664,9676,9689,9705,9709,9716,9719,9726,9729,9731,9739,9740,9745,9750,9754,9798,9803,9812,9817,9818,9823,9827,9834,9838,9852,9861,9863,9864,9865,9869,9873,9879,9882,9883,9899,9911,9920,9924,9928,9931,9934,9943,9946,9949,9951,9953,9956,9959,9961,9965,9974,9979,9982,9985,9991,9994,9995,9998,9999,10000,10002,10005,10012,10013,10014,10015,10017,10020,10023,10024,10027,10028,10036,10055,10072,10076,10086,10091,10092,10101,10107,10118,10121,10122,10125,10126,10127,10128,10130,10134,10135,10136,10139,10144,10147,10150,10152,10154,10158,10169,10177,10180,10182,10184,10186,10187,10188,10193,10197,10202,10205,10207,10211,10215,10218,10221,10238,10395,10438,10447,10670,10692,10697,10752,10764,10790,10792,10832,10846,10865,10871,10882,10886,10898,10904,10909,10920,10929,10942,10944,10951,10957,10963,10972,10977,10979,10980,10988,11007,11135,11150,11153,11163,11183,11197,11199,11202,11214,11218,11223,11225,11229,11237,11239,11243,11244,11245,11247,11248,11252,11253,11254,11255,11257,11260,11262,11264,11265,11269,11295,11305,11315,11317,11321,11330,11331,11332,11333,11334,11335,11341,11345,11372,11375,11379,11381,11383,11415,11429,11446,11447,11451,11461,11462,11477,11479,11506,11552,11563,11582,11583,11585,11586,11587,11599,11619,11622,11623,11630,11635,11643,11648,11660,11664,11679,11684,11685,11688,11689,11690,11691,11693,11699,11701,11706,11712,11713,11720,11736,11743,11745,11747,11757,11765,11766,11788,11789,11793,11797,11828,11829,11830,11832,11839,11840,11848,11850,11874,11875,11880,11888,11902,11904,11908,11910,11911,11914,11915,11916,11917,11930,11935,11943,11945,11946,11949,11950,11954,11964,11965,11967,11972,11982,11983,11984,11985,11998,12001,12002,12005,12101,12106,12170,12173,12183,12255,12256,12257,12263,12264,12268,12305,12319,12323,12326,12343,12361,12365,12367,12375,12376,12380,12391,12394,12395,12397,12400,12401,12403,12404,12410,12414,12417,12497,12505,12508,12509,12510,12511,12517,12521,12528,12529,12535,12537,12539,12540,12542,12544,12545,12578,12600,12651,12676,12678,12681,12685,12688,12689,12698,12705,12707,12710,12711,12717,12722,12723,12725,12728,12735,12742,12744,12755,12756,12758,12763,12779,12783,12784,12785,12787,12791,12793,12796,12799,12802,12803,12804,12807,12809,12812,12816,12835,12837,12839,12846,12847,12848,12851,12852,12853,12855,12856,12857,12861,12862,12873,12874,12947,12960,12963,13060,13061,13063,13094,13095,13098,13137,13173,13186,13190,13230,13386,13428,13432,13463,13499,13529,13530,13602,13603,13650,13654,13726,13730,13774,13879,13883,13921,13930,13931,13942,13998,14025,14036,14037,14081,14083,14090,14092,14168,14235,14354,14372,14402,14404,14451,14453,14455,14457,14477,14521,14530,14533,14689,14695,14712,14719,14720,14722,14759,14766,14819,14888,14889,14995,15018,15107,15117,15125,15250,15293,15294,15301,15318,15459,15460,15470,15491,15503,15511,15516,15520,15555,15559,15567,15569,15570,15575,15590,15595,15611,15654,15670,15672,15722,15736,15755,15771,15776,15782,15797,15801,15803,15833,15838,15845,15875,15884,15885,15893,15963,15971,15982,16010,16019,16022,16024,16064,16083,16110,16117,16118,16175,16181,16182,16193,16200,16201,16203,16254,16275,16303,16339,16347,16348,16371,16379,16387,16392,16394,16447,16482,16543,16572,16628,16660,16679,16706,16741,16763,16789,16803,16852,16878,16966,16972,16987,16991,16999,17008,17009,17017,17043,17049,17085,17108,17121,17169,17297,17306,17308,17313,17324,17328,17329,17335,17336,17338,17339,17341,17344,17345,17350,17368,17370,17371,17373,17382,17384,17398,17429,17443,17449,17458,17461,17462,17467,17468,17469,17470,17472,17474,17475,17478,17481,17485,17512,17518,17535,17548,17580,17581,17648,17693,17705,17718,17741,17743,17744,17749,17804,17836,17853,17861,17863,17873,17905,17967,17972,17990,17991,18014,18019,18031,18063,18119,18124,18148,18156,18162,18179,18185,18209,18218,18257,18265,18292,18346,18363,18368,18378,18383,18384,18393,18397,18405,18443,18455,18471,18496,18512,18524,18535,18546,18548,18550,18552,18556,18557,18568,18570,18573,18579,18590,18592,18596,18597,18617,18619,18625,18628,18686,18720,18728,18751,18754,18755,18781,18788,18799,18878,18880,18888,18889,18890,18905,18909,18924,18926,18944,18958,18978,18982,18988,18993,19007,19008,19009,19018,19045,19054,19057,19059,19068,19071,19076,19077,19089,19102,19104,19115,19124,19129,19131,19132,19133,19136,19137,19149,19159,19161,19163,19165,19182,19199,19213,19214,19230,19232,19234,19241,19243,19251,19254,19260,19300,19315,19319,19348,19356,19365,19368,19379,19381,19387,19388,19390,19392,19394,19396,19397,19407,19419,19442,19457,19458,19462,19469,19471,19489,19504,19575,19586,19591,19598,19601,19624,19631,19658,19667,19678,19682,19691,19728,19748,19749,19751,19754,19761,19763,19766,19777,19784,19790,19793,19816,19833,19841,19845,19850,19889,19904,19907,19911,19935,19944,19957,19966,19968,19978,19980,19985,19995,20013,20014,20017,20019,20027,20029,20032,20035,20064,20073,20090,20110,20116,20181,20187,20195,20224,20227,20228,20236,20278,20296,20331,20349,20522,20538,20544,20553,20554,20555,20556,20561,20572,20573,20597,20600,20604,20610,20613,20616,20617,20621,20622,20626,20633,20664,20667,20668,20675,20683,20687,20689,20691,20705,20708,20726,20754,20757,20759,20767,20778,20779,20786,20792,20793,20803,20805,20809,20810,20812,20813,20816,20821,20825,20831,20833,20840,20842,20843,20848,20849,20854,20857,20858,20859,20860,20861,20862,20863,20866,20867,20868,20870,20871,20873,20875,20876,20877,20880,20904,20906,20908,20909,20912,20914,20916,20917,20919,20938,20939,20959,20979,20980,20983,20985,20987,20989,20990,21010,21015,21017,21028,21032,21036,21037,21045,21046,21055,21070,21073,21074,21075,21078,21080,21094,21095,21097,21098,21100,21126,21127,21161,21179,21183,21186,21192,21203,21218,21223,21239,21241,21293,21294,21295,21296,21298,21299,21306,21309,21311,21312,21350,21355,21358,21359,21381,21386,21391,21395,21396,21411,21416,21419,21421,21437,21469,21472,21491,21494,21544,21545,21546,21551,21580,21583,21590,21597,21599,21612,21613,21639,21647,21650,21652,21653,21654,21655,21657,21662,21667,21668,21669,21670,21678,21750,21965,21973,21985,21988,22000,22002,22003,22007,22039,22042,22043,22052,22053,22059,22060,22064,22066,22068,22072,22075,22113,22171,22176,22198,22200,22201,22208,22213,22224,22228,22240,22249,22268,22322,22331,22332,22337,22401,22402,22405,22422,22423,22431,22449,22507,22509,22525,22540,22541,22542,22545,22568,22573,22587,22596,22648,22651,22656,22673,22692,22693,22745,22766,22785,22805,22825,22833,22839,22854,22859,22884,22899,22958,22965,22971,22992,23017,23114,23115,23116,23118,23120,23135,23137,23139,23141]]],["+",[288,271,[[0,14,14,0,14,[[0,3,3,0,3],[5,2,2,3,5],[17,1,1,5,6],[19,1,1,6,7],[20,1,1,7,8],[21,1,1,8,9],[27,1,1,9,10],[30,1,1,10,11],[33,1,1,11,12],[43,2,2,12,14]]],[1,52,52,14,66,[[53,1,1,14,15],[58,1,1,15,16],[60,1,1,16,17],[67,1,1,17,18],[69,1,1,18,19],[74,2,2,19,21],[75,2,2,21,23],[76,2,2,23,25],[77,3,3,25,28],[79,1,1,28,29],[80,3,3,29,32],[81,1,1,32,33],[82,1,1,33,34],[84,1,1,34,35],[85,6,6,35,41],[86,9,9,41,50],[87,7,7,50,57],[88,9,9,57,66]]],[2,15,14,66,80,[[97,1,1,66,67],[98,3,2,67,69],[103,2,2,69,71],[104,1,1,71,72],[105,1,1,72,73],[107,2,2,73,75],[109,1,1,75,76],[114,2,2,76,78],[115,2,2,78,80]]],[3,12,12,80,92,[[122,1,1,80,81],[124,2,2,81,83],[125,2,2,83,85],[131,3,3,85,88],[132,2,2,88,90],[144,1,1,90,91],[148,1,1,91,92]]],[4,21,21,92,113,[[157,1,1,92,93],[158,2,2,93,95],[163,1,1,95,96],[167,1,1,96,97],[168,1,1,97,98],[169,2,2,98,100],[173,1,1,100,101],[176,2,2,101,103],[178,1,1,103,104],[179,1,1,104,105],[180,3,3,105,108],[181,1,1,108,109],[182,1,1,109,110],[183,2,2,110,112],[184,1,1,112,113]]],[5,6,6,113,119,[[188,1,1,113,114],[191,1,1,114,115],[195,1,1,115,116],[208,2,2,116,118],[209,1,1,118,119]]],[6,8,8,119,127,[[211,1,1,119,120],[212,1,1,120,121],[213,2,2,121,123],[216,1,1,123,124],[225,1,1,124,125],[226,1,1,125,126],[227,1,1,126,127]]],[8,10,8,127,135,[[247,2,2,127,129],[251,1,1,129,130],[255,1,1,130,131],[259,1,1,131,132],[260,2,1,132,133],[261,2,1,133,134],[264,1,1,134,135]]],[9,14,13,135,148,[[273,1,1,135,136],[275,3,2,136,138],[277,1,1,138,139],[278,3,3,139,142],[279,1,1,142,143],[280,4,4,143,147],[289,1,1,147,148]]],[10,20,19,148,167,[[295,2,2,148,150],[297,8,7,150,157],[298,2,2,157,159],[301,1,1,159,160],[302,2,2,160,162],[304,1,1,162,163],[306,1,1,163,164],[308,2,2,164,166],[311,1,1,166,167]]],[11,11,9,167,176,[[322,1,1,167,168],[324,2,2,168,170],[329,4,2,170,172],[331,1,1,172,173],[332,2,2,173,175],[333,1,1,175,176]]],[12,7,7,176,183,[[348,1,1,176,177],[354,1,1,177,178],[355,2,2,178,180],[358,1,1,180,181],[359,2,2,181,183]]],[13,22,20,183,203,[[368,1,1,183,184],[369,2,2,184,186],[370,5,4,186,190],[373,1,1,190,191],[375,1,1,191,192],[377,1,1,192,193],[386,1,1,193,194],[390,1,1,194,195],[392,1,1,195,196],[396,2,2,196,198],[399,1,1,198,199],[400,4,3,199,202],[401,1,1,202,203]]],[14,2,2,203,205,[[405,1,1,203,204],[408,1,1,204,205]]],[15,5,5,205,210,[[416,1,1,205,206],[421,2,2,206,208],[422,1,1,208,209],[425,1,1,209,210]]],[16,8,8,210,218,[[426,1,1,210,211],[430,2,2,211,213],[434,5,5,213,218]]],[17,3,3,218,221,[[436,1,1,218,219],[439,1,1,219,220],[445,1,1,220,221]]],[18,2,2,221,223,[[514,1,1,221,222],[563,1,1,222,223]]],[19,2,1,223,224,[[650,2,1,223,224]]],[20,9,8,224,232,[[659,3,2,224,226],[660,2,2,226,228],[661,1,1,228,229],[665,2,2,229,231],[669,1,1,231,232]]],[22,5,5,232,237,[[715,1,1,232,233],[716,1,1,233,234],[733,1,1,234,235],[734,1,1,235,236],[736,1,1,236,237]]],[23,21,16,237,253,[[747,1,1,237,238],[751,4,3,238,241],[758,1,1,241,242],[761,1,1,242,243],[766,1,1,243,244],[771,1,1,244,245],[776,2,2,245,247],[778,1,1,247,248],[784,1,1,248,249],[788,6,2,249,251],[790,1,1,251,252],[795,1,1,252,253]]],[25,16,15,253,268,[[805,1,1,253,254],[809,1,1,254,255],[817,2,2,255,257],[819,1,1,257,258],[821,3,3,258,261],[822,1,1,261,262],[832,2,1,262,263],[844,1,1,263,264],[846,1,1,264,265],[847,3,3,265,268]]],[26,1,1,268,269,[[857,1,1,268,269]]],[31,1,1,269,270,[[889,1,1,269,270]]],[35,1,1,270,271,[[908,1,1,270,271]]]],[6,15,24,143,151,449,505,539,563,788,874,1011,1331,1341,1618,1748,1816,2022,2062,2214,2223,2250,2253,2273,2281,2296,2299,2324,2387,2426,2436,2437,2473,2490,2541,2567,2570,2586,2589,2599,2601,2605,2614,2619,2620,2621,2627,2629,2632,2633,2634,2636,2639,2641,2642,2655,2663,2665,2666,2670,2672,2673,2686,2691,2694,2706,2953,2960,2975,3130,3141,3198,3225,3255,3281,3341,3487,3490,3538,3539,3839,3943,3951,3967,3970,4166,4175,4193,4222,4232,4600,4738,5068,5110,5111,5240,5324,5354,5366,5369,5459,5543,5547,5582,5595,5612,5626,5669,5708,5716,5740,5757,5804,5881,5944,6061,6431,6450,6466,6533,6556,6575,6580,6681,6932,6960,6988,7466,7480,7599,7744,7845,7889,7930,7974,8201,8228,8234,8270,8292,8298,8304,8322,8371,8376,8377,8378,8670,8886,8887,8948,8952,8957,8961,8971,8974,8982,9049,9050,9136,9172,9182,9233,9316,9364,9377,9458,9803,9864,9865,9995,10013,10076,10107,10118,10128,10692,10882,10898,10904,10942,10977,10979,11223,11237,11243,11248,11253,11257,11265,11332,11375,11415,11622,11690,11743,11840,11848,11916,11943,11950,11964,11983,12106,12170,12367,12517,12542,12578,12698,12717,12784,12787,12837,12853,12855,12857,12861,12873,12947,13098,14457,15301,17049,17324,17329,17344,17350,17370,17443,17458,17518,18368,18397,18751,18755,18799,19009,19124,19129,19132,19315,19365,19458,19601,19748,19754,19816,19957,20027,20035,20064,20224,20544,20621,20792,20805,20862,20906,20908,20916,20959,21241,21599,21647,21657,21667,21670,21988,22540,22839]]],["Deal",[2,2,[[13,1,1,0,1,[[385,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[11587,16022]]],["Did",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12689]]],["Do",[9,9,[[8,4,4,0,4,[[236,1,1,0,1],[249,3,3,1,4]]],[10,2,2,4,6,[[292,2,2,4,6]]],[12,1,1,6,7,[[354,1,1,6,7]]],[18,1,1,7,8,[[560,1,1,7,8]]],[19,1,1,8,9,[[633,1,1,8,9]]]],[7235,7515,7544,7548,8776,8801,10865,15250,16543]]],["Execute",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19457]]],["Keep",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10186]]],["Make",[11,11,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,2,2,1,3,[[54,1,1,1,2],[81,1,1,2,3]]],[3,2,2,3,5,[[126,1,1,3,4],[137,1,1,4,5]]],[5,1,1,5,6,[[191,1,1,5,6]]],[11,2,2,6,8,[[315,1,1,6,7],[330,1,1,7,8]]],[22,1,1,8,9,[[714,1,1,8,9]]],[23,1,1,9,10,[[771,1,1,9,10]]],[25,1,1,10,11,[[808,1,1,10,11]]]],[151,1648,2461,3990,4348,5936,9592,10055,18346,19598,20600]]],["Maker",[5,5,[[19,2,2,0,2,[[641,1,1,0,1],[644,1,1,1,2]]],[22,2,2,2,4,[[695,1,1,2,3],[732,1,1,3,4]]],[27,1,1,4,5,[[869,1,1,4,5]]]],[16803,16878,17990,18728,22208]]],["about",[1,1,[[4,1,1,0,1,[[183,1,1,0,1]]]],[5749]]],["appointed",[2,2,[[17,1,1,0,1,[[449,1,1,0,1]]],[18,1,1,1,2,[[581,1,1,1,2]]]],[13186,15590]]],["apt",[1,1,[[11,1,1,0,1,[[336,1,1,0,1]]]],[10218]]],["at",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18179]]],["bear",[4,4,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]],[25,1,1,2,3,[[818,1,1,2,3]]],[27,1,1,3,4,[[870,1,1,3,4]]]],[10091,18383,20848,22224]]],["become",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12735]]],["bestow",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11684]]],["bruised",[2,2,[[25,2,2,0,2,[[824,2,2,0,2]]]],[21010,21015]]],["bruising",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21028]]],["busy",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9448]]],["cause",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21386]]],["charge",[1,1,[[16,1,1,0,1,[[428,1,1,0,1]]]],[12756]]],["commit",[13,12,[[2,4,3,0,3,[[94,1,1,0,1],[107,3,2,1,3]]],[3,1,1,3,4,[[121,1,1,3,4]]],[4,1,1,4,5,[[171,1,1,4,5]]],[19,1,1,5,6,[[643,1,1,5,6]]],[23,1,1,6,7,[[788,1,1,6,7]]],[25,4,4,7,11,[[804,1,1,7,8],[809,1,1,8,9],[823,1,1,9,10],[834,1,1,10,11]]],[27,1,1,11,12,[[867,1,1,11,12]]]],[2847,3277,3280,3798,5426,16852,20017,20522,20621,20985,21293,22176]]],["committed",[25,25,[[2,2,2,0,2,[[107,1,1,0,1],[109,1,1,1,2]]],[3,1,1,2,3,[[131,1,1,2,3]]],[6,1,1,3,4,[[230,1,1,3,4]]],[23,7,7,4,11,[[746,1,1,4,5],[750,1,1,5,6],[752,1,1,6,7],[773,1,1,7,8],[788,3,3,8,11]]],[25,13,13,11,24,[[807,1,1,11,12],[817,1,1,12,13],[819,5,5,13,18],[821,1,1,18,19],[823,1,1,19,20],[834,2,2,20,22],[844,1,1,22,23],[845,1,1,23,24]]],[38,1,1,24,25,[[926,1,1,24,25]]]],[3281,3331,4177,7060,18978,19104,19165,19658,20013,20019,20032,20572,20812,20861,20870,20871,20876,20877,20938,20987,21293,21309,21580,21612,23114]]],["committeth",[4,4,[[25,4,4,0,4,[[809,1,1,0,1],[819,2,2,1,3],[834,1,1,3,4]]]],[20610,20873,20875,21298]]],["committing",[1,1,[[25,1,1,0,1,[[834,1,1,0,1]]]],[21295]]],["deal",[22,22,[[0,2,2,0,2,[[23,1,1,0,1],[46,1,1,1,2]]],[1,2,2,2,4,[[70,1,1,2,3],[72,1,1,3,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[4,1,1,5,6,[[159,1,1,5,6]]],[5,1,1,6,7,[[188,1,1,6,7]]],[7,1,1,7,8,[[232,1,1,7,8]]],[8,1,1,8,9,[[255,1,1,8,9]]],[13,1,1,9,10,[[368,1,1,9,10]]],[17,1,1,10,11,[[477,1,1,10,11]]],[19,1,1,11,12,[[639,1,1,11,12]]],[23,2,2,12,14,[[762,1,1,12,13],[765,1,1,13,14]]],[25,6,6,14,20,[[809,1,1,14,15],[817,1,1,15,16],[819,1,1,16,17],[823,1,1,17,18],[824,2,2,18,20]]],[26,2,2,20,22,[[850,1,1,20,21],[860,1,1,21,22]]]],[640,1449,2086,2155,4039,5116,5883,7135,7738,11214,13930,16741,19407,19442,20622,20821,20858,20990,21032,21036,21750,22043]]],["dealest",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1647]]],["dealeth",[7,7,[[6,1,1,0,1,[[228,1,1,0,1]]],[19,4,4,1,5,[[637,1,1,1,2],[640,1,1,2,3],[641,1,1,3,4],[648,1,1,4,5]]],[23,2,2,5,7,[[750,1,1,5,6],[752,1,1,6,7]]]],[6997,16660,16763,16789,17008,19102,19163]]],["dealt",[17,17,[[1,1,1,0,1,[[63,1,1,0,1]]],[6,2,2,1,3,[[219,2,2,1,3]]],[7,1,1,3,4,[[232,1,1,3,4]]],[8,1,1,4,5,[[259,1,1,4,5]]],[11,3,3,5,8,[[324,1,1,5,6],[333,1,1,6,7],[334,1,1,7,8]]],[12,1,1,8,9,[[357,1,1,8,9]]],[18,3,3,9,12,[[580,1,1,9,10],[596,1,1,10,11],[624,1,1,11,12]]],[25,3,3,12,15,[[823,1,1,12,13],[826,2,2,13,15]]],[28,1,1,15,16,[[877,1,1,15,16]]],[37,1,1,16,17,[[911,1,1,16,17]]]],[1900,6770,6773,7135,7857,9865,10125,10152,10929,15559,15963,16371,20983,21095,21098,22337,22884]]],["deckedst",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20778]]],["did",[310,286,[[0,16,15,0,15,[[5,2,1,0,1],[6,1,1,1,2],[20,1,1,2,3],[28,1,1,3,4],[37,1,1,4,5],[38,4,4,5,9],[41,2,2,9,11],[42,1,1,11,12],[43,1,1,12,13],[44,1,1,13,14],[49,1,1,14,15]]],[1,35,30,15,45,[[50,1,1,15,16],[53,1,1,16,17],[56,6,5,17,22],[57,6,6,22,28],[61,5,3,28,31],[62,1,1,31,32],[63,2,2,32,34],[65,1,1,34,35],[66,2,2,35,37],[67,2,2,37,39],[68,1,1,39,40],[81,2,2,40,42],[85,1,1,42,43],[88,2,1,43,44],[89,2,1,44,45]]],[2,6,6,45,51,[[93,1,1,45,46],[97,1,1,46,47],[99,1,1,47,48],[105,2,2,48,50],[113,1,1,50,51]]],[3,20,16,51,67,[[117,2,1,51,52],[118,1,1,52,53],[121,2,1,53,54],[124,4,3,54,57],[125,1,1,57,58],[130,1,1,58,59],[133,2,1,59,60],[136,1,1,60,61],[139,2,2,61,63],[143,1,1,63,64],[147,1,1,64,65],[148,1,1,65,66],[152,1,1,66,67]]],[4,18,18,67,85,[[153,1,1,67,68],[154,3,3,68,71],[155,1,1,71,72],[156,2,2,72,74],[159,1,1,74,75],[163,5,5,75,80],[176,1,1,80,81],[177,1,1,81,82],[181,1,1,82,83],[183,1,1,83,84],[186,1,1,84,85]]],[5,19,17,85,102,[[188,1,1,85,86],[190,2,2,86,88],[191,1,1,88,89],[192,1,1,89,90],[195,3,3,90,93],[196,6,4,93,97],[197,2,2,97,99],[200,1,1,99,100],[210,2,2,100,102]]],[6,18,17,102,119,[[212,2,2,102,104],[213,1,1,104,105],[214,1,1,105,106],[216,5,4,106,110],[219,1,1,110,111],[220,1,1,111,112],[221,1,1,112,113],[223,2,2,113,115],[225,1,1,115,116],[227,1,1,116,117],[231,2,2,117,119]]],[7,1,1,119,120,[[234,1,1,119,120]]],[8,7,7,120,127,[[236,1,1,120,121],[237,2,2,121,123],[241,1,1,123,124],[247,1,1,124,125],[250,1,1,125,126],[262,1,1,126,127]]],[9,7,7,127,134,[[269,1,1,127,128],[271,1,1,128,129],[278,1,1,129,130],[279,1,1,130,131],[281,1,1,131,132],[289,2,2,132,134]]],[10,34,33,134,167,[[292,2,1,134,135],[297,1,1,135,136],[301,4,4,136,140],[302,1,1,140,141],[304,4,4,141,145],[305,7,7,145,152],[306,7,7,152,159],[307,2,2,159,161],[308,1,1,161,162],[310,1,1,162,163],[311,2,2,163,165],[312,2,2,165,167]]],[11,59,53,167,220,[[313,1,1,167,168],[320,5,4,168,172],[322,2,2,172,174],[323,1,1,174,175],[324,3,3,175,178],[325,4,4,178,182],[326,6,4,182,186],[327,12,11,186,197],[328,3,3,197,200],[329,4,4,200,204],[330,2,1,204,205],[333,7,6,205,211],[334,1,1,211,212],[335,4,4,212,216],[336,4,4,216,220]]],[12,5,5,220,225,[[348,2,2,220,222],[351,1,1,222,223],[360,1,1,223,224],[364,1,1,224,225]]],[13,29,26,225,251,[[378,1,1,225,226],[380,1,1,226,227],[387,1,1,227,228],[388,1,1,228,229],[389,1,1,229,230],[390,3,3,230,233],[391,1,1,233,234],[392,2,1,234,235],[393,2,1,235,236],[394,1,1,236,237],[395,1,1,237,238],[397,2,2,238,240],[398,1,1,240,241],[399,3,2,241,243],[400,3,3,243,246],[401,1,1,246,247],[402,4,4,247,251]]],[14,1,1,251,252,[[412,1,1,251,252]]],[15,8,7,252,259,[[414,2,1,252,253],[417,2,2,253,255],[421,1,1,255,256],[423,1,1,256,257],[425,2,2,257,259]]],[16,5,5,259,264,[[426,1,1,259,260],[427,2,2,260,262],[429,1,1,262,263],[434,1,1,263,264]]],[17,2,2,264,266,[[436,1,1,264,265],[477,1,1,265,266]]],[18,2,2,266,268,[[555,1,1,266,267],[612,1,1,267,268]]],[22,5,5,268,273,[[698,1,1,268,269],[726,1,1,269,270],[736,1,1,270,271],[743,1,1,271,272],[744,1,1,272,273]]],[23,6,6,273,279,[[751,1,1,273,274],[755,1,1,274,275],[759,1,1,275,276],[780,1,1,276,277],[782,1,1,277,278],[796,1,1,278,279]]],[25,4,4,279,283,[[813,1,1,279,280],[819,1,1,280,281],[825,1,1,281,282],[847,1,1,282,283]]],[26,1,1,283,284,[[857,1,1,283,284]]],[31,1,1,284,285,[[891,1,1,284,285]]],[36,1,1,285,286,[[909,1,1,285,286]]]],[159,164,514,823,1129,1152,1168,1171,1172,1272,1277,1307,1326,1379,1518,1549,1631,1691,1695,1696,1705,1707,1717,1723,1727,1728,1734,1741,1844,1851,1866,1875,1893,1920,1964,1989,1993,2013,2023,2030,2459,2466,2595,2696,2723,2815,2921,2984,3216,3235,3469,3658,3692,3796,3942,3959,3961,3970,4130,4255,4338,4418,4446,4576,4695,4726,4889,4922,4950,4960,4967,4981,5007,5038,5129,5211,5212,5213,5214,5215,5534,5564,5681,5732,5848,5879,5918,5933,5949,5963,6046,6047,6063,6087,6092,6094,6103,6116,6122,6192,6481,6493,6552,6562,6580,6600,6655,6674,6681,6694,6810,6817,6868,6885,6903,6940,6986,7125,7127,7178,7219,7254,7262,7341,7467,7562,7941,8117,8157,8317,8346,8395,8670,8675,8775,8952,9114,9116,9146,9149,9183,9222,9240,9242,9247,9254,9256,9260,9272,9275,9280,9283,9288,9290,9297,9302,9310,9313,9316,9322,9332,9354,9433,9462,9477,9519,9532,9551,9729,9745,9750,9754,9812,9827,9838,9852,9861,9869,9873,9879,9882,9883,9899,9911,9920,9924,9928,9931,9934,9943,9946,9949,9951,9953,9956,9959,9961,9965,9979,9982,9985,10005,10023,10024,10027,10121,10122,10130,10136,10139,10144,10147,10184,10193,10197,10202,10205,10207,10211,10221,10692,10697,10790,11007,11135,11451,11477,11630,11648,11664,11679,11688,11689,11706,11736,11757,11765,11793,11874,11875,11908,11910,11930,11935,11945,11965,11984,11998,12001,12002,12005,12268,12323,12395,12397,12539,12600,12678,12681,12723,12728,12744,12779,12839,12874,13931,15125,16181,18031,18617,18788,18909,18926,19131,19234,19319,19850,19907,20278,20687,20867,21074,21667,21965,22568,22854]]],["didst",[11,11,[[0,1,1,0,1,[[19,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[4,1,1,2,3,[[155,1,1,2,3]]],[5,1,1,3,4,[[194,1,1,3,4]]],[8,1,1,4,5,[[250,1,1,4,5]]],[9,2,2,5,7,[[278,1,1,5,6],[279,1,1,6,7]]],[10,1,1,7,8,[[292,1,1,7,8]]],[15,1,1,8,9,[[421,1,1,8,9]]],[18,1,1,9,10,[[516,1,1,9,10]]],[22,1,1,10,11,[[742,1,1,10,11]]]],[501,4374,4977,6004,7579,8298,8333,8814,12528,14521,18888]]],["do",[543,513,[[0,33,31,0,31,[[10,2,1,0,1],[15,1,1,1,2],[17,6,6,2,8],[18,3,2,8,10],[20,1,1,10,11],[21,1,1,11,12],[25,1,1,12,13],[26,1,1,13,14],[29,1,1,14,15],[30,3,3,15,18],[33,2,2,18,20],[38,2,2,20,22],[40,4,4,22,26],[41,1,1,26,27],[42,1,1,27,28],[44,2,2,28,30],[46,1,1,30,31]]],[1,30,29,31,60,[[52,1,1,31,32],[53,2,2,32,34],[55,1,1,34,35],[57,1,1,35,36],[58,1,1,36,37],[64,1,1,37,38],[66,1,1,38,39],[67,1,1,39,40],[68,1,1,40,41],[69,2,2,41,43],[70,1,1,43,44],[71,1,1,44,45],[72,3,3,45,48],[73,2,2,48,50],[78,3,3,50,53],[80,1,1,53,54],[81,1,1,54,55],[82,1,1,55,56],[83,2,1,56,57],[84,2,2,57,59],[85,1,1,59,60]]],[2,29,27,60,87,[[93,3,2,60,62],[97,1,1,62,63],[98,1,1,63,64],[105,3,3,64,67],[107,3,2,67,69],[108,3,3,69,72],[109,2,2,72,74],[111,1,1,74,75],[112,9,9,75,84],[114,1,1,84,85],[115,2,2,85,87]]],[3,38,36,87,123,[[120,2,2,87,89],[122,1,1,89,90],[124,2,2,90,92],[125,1,1,92,93],[130,2,2,93,95],[131,4,3,95,98],[132,1,1,98,99],[137,1,1,99,100],[138,4,4,100,104],[139,2,2,104,106],[140,3,3,106,109],[144,3,3,109,112],[145,5,5,112,117],[146,1,1,117,118],[148,4,4,118,122],[149,2,1,122,123]]],[4,71,64,123,187,[[153,3,3,123,126],[155,3,3,126,129],[156,5,5,129,134],[157,6,6,134,140],[158,3,3,140,143],[159,3,3,143,146],[160,1,1,146,147],[163,1,1,147,148],[164,9,8,148,156],[165,2,2,156,158],[167,1,1,158,159],[168,1,1,159,160],[169,5,4,160,164],[170,2,2,164,166],[171,2,2,166,168],[172,2,2,168,170],[173,1,1,170,171],[174,5,3,171,174],[176,2,1,174,175],[177,2,1,175,176],[178,1,1,176,177],[179,1,1,177,178],[180,2,2,178,180],[181,2,1,180,181],[182,3,3,181,184],[183,2,2,184,186],[186,1,1,186,187]]],[5,12,11,187,198,[[187,3,3,187,190],[189,1,1,190,191],[192,1,1,191,192],[193,1,1,192,193],[194,2,2,193,195],[195,3,2,195,197],[196,1,1,197,198]]],[6,23,19,198,217,[[217,3,1,198,199],[218,1,1,199,200],[219,3,2,200,202],[220,1,1,202,203],[221,2,2,203,205],[223,1,1,205,206],[224,1,1,206,207],[225,1,1,207,208],[228,2,2,208,210],[229,3,2,210,212],[230,2,2,212,214],[231,3,3,214,217]]],[7,5,5,217,222,[[232,1,1,217,218],[234,3,3,218,221],[235,1,1,221,222]]],[8,25,25,222,247,[[237,2,2,222,224],[238,3,3,224,227],[240,1,1,227,228],[241,1,1,228,229],[243,1,1,229,230],[245,3,3,230,233],[246,1,1,233,234],[247,1,1,234,235],[249,1,1,235,236],[251,1,1,236,237],[255,3,3,237,240],[257,1,1,240,241],[259,1,1,241,242],[260,2,2,242,244],[263,2,2,244,246],[265,1,1,246,247]]],[9,25,23,247,270,[[269,4,3,247,250],[273,3,3,250,253],[275,1,1,253,254],[276,1,1,254,255],[278,1,1,255,256],[279,2,2,256,258],[281,1,1,258,259],[282,1,1,259,260],[283,1,1,260,261],[284,1,1,261,262],[285,6,5,262,267],[287,2,2,267,269],[290,1,1,269,270]]],[10,23,22,270,292,[[291,1,1,270,271],[292,3,3,271,274],[293,1,1,274,275],[298,3,3,275,278],[299,2,2,278,280],[300,1,1,280,281],[301,3,3,281,284],[302,1,1,284,285],[304,1,1,285,286],[307,1,1,286,287],[309,1,1,287,288],[310,4,3,288,291],[312,1,1,291,292]]],[11,21,19,292,311,[[314,1,1,292,293],[316,1,1,293,294],[318,2,2,294,296],[319,1,1,296,297],[320,2,2,297,299],[322,2,1,299,300],[323,1,1,300,301],[329,6,5,301,306],[330,1,1,306,307],[331,1,1,307,308],[333,1,1,308,309],[334,2,2,309,311]]],[12,10,10,311,321,[[349,1,1,311,312],[350,1,1,312,313],[354,1,1,313,314],[356,1,1,314,315],[358,2,2,315,317],[365,3,3,317,320],[366,1,1,320,321]]],[13,19,19,321,340,[[372,2,2,321,323],[373,1,1,323,324],[375,1,1,324,325],[380,1,1,325,326],[384,1,1,326,327],[385,4,4,327,331],[386,1,1,331,332],[389,1,1,332,333],[391,2,2,333,335],[396,1,1,335,336],[399,1,1,336,337],[400,2,2,337,339],[401,1,1,339,340]]],[14,5,5,340,345,[[409,1,1,340,341],[412,4,4,341,345]]],[15,12,11,345,356,[[413,1,1,345,346],[414,2,2,346,348],[416,1,1,348,349],[417,3,2,349,351],[418,2,2,351,353],[421,2,2,353,355],[425,1,1,355,356]]],[16,8,8,356,364,[[426,2,2,356,358],[428,1,1,358,359],[430,1,1,359,360],[431,2,2,360,362],[432,1,1,362,363],[434,1,1,363,364]]],[17,2,2,364,366,[[448,1,1,364,365],[466,1,1,365,366]]],[18,17,17,366,383,[[511,2,2,366,368],[514,2,2,368,370],[517,1,1,370,371],[533,2,2,371,373],[537,1,1,373,374],[580,3,3,374,377],[584,1,1,377,378],[585,1,1,378,379],[586,1,1,379,380],[588,1,1,380,381],[595,1,1,381,382],[620,1,1,382,383]]],[19,8,8,383,391,[[629,1,1,383,384],[630,1,1,384,385],[637,1,1,385,386],[648,3,3,386,389],[651,1,1,389,390],[652,1,1,390,391]]],[20,8,7,391,398,[[660,2,2,391,393],[661,1,1,393,394],[663,1,1,394,395],[666,2,2,395,397],[667,2,1,397,398]]],[21,1,1,398,399,[[678,1,1,398,399]]],[22,15,15,399,414,[[683,1,1,399,400],[688,2,2,400,402],[697,1,1,402,403],[706,1,1,403,404],[715,1,1,404,405],[720,1,1,405,406],[721,1,1,406,407],[723,1,1,407,408],[724,2,2,408,410],[726,2,2,410,412],[734,1,1,412,413],[743,1,1,413,414]]],[23,36,35,414,449,[[748,1,1,414,415],[749,1,1,415,416],[751,2,2,416,418],[753,1,1,418,419],[755,3,3,419,422],[756,1,1,422,423],[758,1,1,423,424],[761,2,2,424,426],[762,4,4,426,430],[763,1,1,430,431],[766,2,2,431,433],[770,2,2,433,435],[772,1,1,435,436],[773,1,1,436,437],[776,2,2,437,439],[777,1,1,439,440],[780,1,1,440,441],[783,2,1,441,442],[786,3,3,442,445],[788,1,1,445,446],[794,3,3,446,449]]],[25,37,36,449,485,[[806,2,1,449,450],[807,1,1,450,451],[808,1,1,451,452],[809,4,4,452,456],[812,1,1,456,457],[816,1,1,457,458],[817,1,1,458,459],[819,2,2,459,461],[821,2,2,461,463],[823,1,1,463,464],[824,2,2,464,466],[825,3,3,466,469],[826,1,1,469,470],[834,4,4,470,474],[836,2,2,474,476],[837,5,5,476,481],[838,1,1,481,482],[844,1,1,482,483],[846,2,2,483,485]]],[26,10,10,485,495,[[858,1,1,485,486],[860,9,9,486,495]]],[27,5,4,495,499,[[867,2,1,495,496],[870,1,1,496,497],[871,2,2,497,499]]],[28,1,1,499,500,[[877,1,1,499,500]]],[29,4,3,500,503,[[881,2,2,500,502],[882,2,1,502,503]]],[31,2,2,503,505,[[889,1,1,503,504],[891,1,1,504,505]]],[32,1,1,505,506,[[898,1,1,505,506]]],[35,2,2,506,508,[[908,2,2,506,508]]],[37,3,3,508,511,[[911,2,2,508,510],[918,1,1,510,511]]],[38,2,2,511,513,[[928,2,2,511,513]]]],[272,387,429,441,443,449,453,454,465,479,536,559,721,764,861,889,902,916,994,999,1158,1160,1220,1223,1229,1250,1270,1301,1375,1377,1450,1599,1616,1622,1656,1736,1747,1946,1987,2019,2034,2060,2061,2088,2143,2156,2166,2168,2180,2184,2337,2371,2377,2431,2452,2478,2506,2532,2566,2568,2797,2815,2951,2959,3216,3217,3230,3254,3256,3296,3316,3318,3326,3340,3400,3405,3409,3410,3423,3427,3430,3433,3437,3438,3487,3527,3540,3746,3762,3844,3946,3965,3979,4136,4143,4165,4167,4192,4200,4374,4392,4393,4395,4405,4435,4442,4459,4460,4464,4595,4602,4603,4609,4615,4620,4643,4647,4650,4741,4742,4743,4749,4816,4906,4910,4936,4977,4996,4999,5005,5009,5010,5018,5029,5054,5066,5067,5080,5084,5085,5087,5089,5104,5122,5123,5130,5138,5230,5241,5244,5248,5254,5265,5270,5271,5272,5283,5290,5336,5350,5374,5375,5376,5383,5393,5396,5415,5425,5442,5445,5456,5473,5475,5496,5533,5563,5582,5611,5624,5631,5688,5720,5721,5722,5732,5733,5850,5858,5859,5867,5898,5952,5985,6004,6010,6057,6062,6089,6711,6722,6787,6802,6826,6839,6865,6892,6919,6939,7007,7011,7047,7048,7063,7064,7109,7113,7118,7144,7176,7177,7183,7201,7263,7275,7287,7293,7294,7327,7333,7377,7420,7425,7426,7455,7476,7552,7598,7732,7734,7743,7790,7843,7878,7883,7944,7957,8001,8090,8099,8116,8183,8203,8205,8238,8252,8295,8319,8329,8415,8446,8455,8482,8524,8529,8538,8548,8549,8583,8584,8704,8747,8779,8793,8808,8844,9017,9024,9028,9052,9055,9088,9120,9141,9146,9178,9226,9330,9389,9417,9418,9432,9502,9560,9605,9689,9705,9716,9739,9740,9798,9834,9998,10000,10017,10020,10024,10036,10092,10127,10154,10158,10752,10764,10886,10920,10944,10957,11150,11153,11163,11183,11305,11315,11341,11372,11479,11563,11582,11583,11585,11586,11599,11660,11712,11713,11839,11917,11949,11954,11972,12183,12256,12257,12263,12264,12305,12319,12326,12361,12391,12394,12403,12414,12535,12540,12688,12710,12717,12758,12787,12799,12803,12812,12847,13173,13602,14402,14404,14453,14477,14533,14759,14766,14819,15567,15569,15570,15722,15755,15776,15803,15875,16303,16447,16482,16679,16987,16991,16999,17108,17121,17336,17344,17371,17398,17469,17470,17485,17648,17744,17853,17861,18019,18185,18384,18496,18524,18568,18596,18597,18625,18628,18754,18905,19057,19089,19133,19136,19182,19230,19232,19234,19254,19300,19379,19381,19390,19392,19394,19396,19419,19469,19471,19575,19586,19624,19667,19754,19766,19793,19845,19935,19978,19980,19995,20014,20181,20187,20195,20555,20573,20604,20610,20613,20616,20617,20675,20757,20767,20854,20870,20914,20916,20990,21037,21055,21070,21078,21080,21097,21294,21299,21311,21312,21355,21359,21381,21386,21391,21395,21396,21421,21583,21650,21655,22007,22039,22052,22053,22060,22064,22066,22068,22072,22075,22171,22213,22228,22240,22332,22402,22405,22422,22542,22568,22656,22825,22833,22884,22899,22992,23139,23141]]],["doer",[3,3,[[0,1,1,0,1,[[38,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]],[18,1,1,2,3,[[508,1,1,2,3]]]],[1171,8120,14354]]],["doers",[2,1,[[11,2,1,0,1,[[334,2,1,0,1]]]],[10150]]],["doest",[17,17,[[0,1,1,0,1,[[20,1,1,0,1]]],[1,2,2,1,3,[[67,2,2,1,3]]],[4,3,3,3,6,[[164,1,1,3,4],[166,1,1,4,5],[167,1,1,5,6]]],[6,1,1,6,7,[[221,1,1,6,7]]],[9,1,1,7,8,[[269,1,1,7,8]]],[10,2,2,8,10,[[292,1,1,8,9],[310,1,1,9,10]]],[17,2,2,10,12,[[444,1,1,10,11],[470,1,1,11,12]]],[18,2,2,12,14,[[554,1,1,12,13],[563,1,1,13,14]]],[20,1,1,14,15,[[666,1,1,14,15]]],[25,2,2,15,17,[[813,1,1,15,16],[825,1,1,16,17]]]],[535,2013,2016,5268,5319,5337,6856,8106,8773,9430,13063,13726,15107,15294,17462,20689,21075]]],["doeth",[44,42,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,3,3,1,4,[[80,2,2,1,3],[84,1,1,3,4]]],[2,3,3,4,7,[[93,1,1,4,5],[95,1,1,5,6],[112,1,1,6,7]]],[3,1,1,7,8,[[131,1,1,7,8]]],[17,4,4,8,12,[[440,1,1,8,9],[444,1,1,9,10],[458,1,1,10,11],[472,1,1,11,12]]],[18,12,12,12,24,[[478,1,1,12,13],[491,2,2,13,15],[492,2,2,15,17],[530,2,2,17,19],[549,1,1,19,20],[583,1,1,20,21],[595,2,2,21,23],[613,1,1,23,24]]],[19,1,1,24,25,[[633,1,1,24,25]]],[20,5,4,25,29,[[660,1,1,25,26],[661,2,1,26,27],[665,1,1,27,28],[666,1,1,28,29]]],[22,1,1,29,30,[[734,1,1,29,30]]],[23,2,2,30,32,[[749,1,1,30,31],[792,1,1,31,32]]],[25,7,6,32,38,[[818,1,1,32,33],[819,6,5,33,38]]],[26,1,1,38,39,[[858,1,1,38,39]]],[29,1,1,39,40,[[887,1,1,39,40]]],[38,2,2,40,42,[[926,2,2,40,42]]]],[885,2434,2435,2533,2822,2852,3432,4183,12960,13061,13432,13774,13942,14081,14083,14090,14092,14720,14722,15018,15654,15884,15885,16200,16572,17335,17373,17449,17461,18755,19077,20090,20840,20859,20860,20863,20873,20876,22002,22507,23115,23120]]],["doing",[11,11,[[0,2,2,0,2,[[30,1,1,0,1],[43,1,1,1,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[4,1,1,3,4,[[161,1,1,3,4]]],[10,2,2,4,6,[[306,1,1,4,5],[312,1,1,5,6]]],[11,1,1,6,7,[[333,1,1,6,7]]],[12,1,1,7,8,[[359,1,1,7,8]]],[13,1,1,8,9,[[386,1,1,8,9]]],[15,1,1,9,10,[[418,1,1,9,10]]],[22,1,1,10,11,[[736,1,1,10,11]]]],[901,1329,1931,5175,9302,9523,10135,10980,11619,12404,18799]]],["done",[315,294,[[0,24,22,0,22,[[2,2,2,0,2],[3,1,1,2,3],[7,1,1,3,4],[8,1,1,4,5],[11,1,1,5,6],[17,1,1,6,7],[19,4,2,7,9],[20,1,1,9,10],[23,1,1,10,11],[25,2,2,11,13],[26,2,2,13,15],[28,2,2,15,17],[30,1,1,17,18],[33,1,1,18,19],[39,1,1,19,20],[41,1,1,20,21],[43,1,1,21,22]]],[1,14,12,22,34,[[50,1,1,22,23],[51,1,1,23,24],[52,1,1,24,25],[61,2,1,25,26],[63,1,1,26,27],[67,3,3,27,30],[70,1,1,30,31],[80,1,1,31,32],[84,1,1,32,33],[88,2,1,33,34]]],[2,15,12,34,46,[[93,6,4,34,38],[94,1,1,38,39],[95,1,1,39,40],[97,2,2,40,42],[100,1,1,42,43],[107,1,1,43,44],[112,1,1,44,45],[113,2,1,45,46]]],[3,7,7,46,53,[[121,1,1,46,47],[131,2,2,47,49],[138,2,2,49,51],[139,1,1,51,52],[148,1,1,52,53]]],[4,8,8,53,61,[[155,1,1,53,54],[162,1,1,54,55],[164,1,1,55,56],[171,1,1,56,57],[172,1,1,57,58],[177,1,1,58,59],[178,1,1,59,60],[181,1,1,60,61]]],[5,14,12,61,73,[[193,2,2,61,63],[195,1,1,63,64],[196,7,5,64,69],[209,2,2,69,71],[210,2,2,71,73]]],[6,15,12,73,85,[[211,1,1,73,74],[212,2,2,74,76],[216,2,1,76,77],[218,1,1,77,78],[219,2,1,78,79],[221,1,1,79,80],[224,1,1,80,81],[225,5,4,81,85]]],[7,2,2,85,87,[[233,1,1,85,86],[234,1,1,86,87]]],[8,21,21,87,108,[[241,1,1,87,88],[243,1,1,88,89],[246,1,1,89,90],[247,1,1,90,91],[248,1,1,91,92],[249,1,1,92,93],[252,3,3,93,96],[254,1,1,96,97],[255,2,2,97,99],[259,1,1,99,100],[260,1,1,100,101],[261,2,2,101,103],[263,3,3,103,106],[264,1,1,106,107],[266,1,1,107,108]]],[9,10,10,108,118,[[268,1,1,108,109],[269,1,1,109,110],[277,1,1,110,111],[278,2,2,111,113],[279,1,1,113,114],[282,1,1,114,115],[287,1,1,115,116],[290,2,2,116,118]]],[10,11,11,118,129,[[291,1,1,118,119],[293,1,1,119,120],[298,1,1,120,121],[299,1,1,121,122],[303,1,1,122,123],[304,2,2,123,125],[305,1,1,125,126],[309,2,2,126,128],[312,1,1,128,129]]],[11,20,20,129,149,[[316,2,2,129,131],[317,1,1,131,132],[319,1,1,132,133],[320,1,1,133,134],[322,1,1,134,135],[327,3,3,135,138],[331,2,2,138,140],[332,1,1,140,141],[333,2,2,141,143],[335,4,4,143,147],[336,2,2,147,149]]],[12,3,3,149,152,[[347,1,1,149,150],[353,1,1,150,151],[358,1,1,151,152]]],[13,8,8,152,160,[[373,1,1,152,153],[390,2,2,153,155],[391,1,1,155,156],[395,2,2,156,158],[396,1,1,158,159],[398,1,1,159,160]]],[14,1,1,160,161,[[412,1,1,160,161]]],[15,5,5,161,166,[[417,1,1,161,162],[418,1,1,162,163],[420,1,1,163,164],[421,1,1,164,165],[425,1,1,165,166]]],[16,10,8,166,174,[[427,1,1,166,167],[429,1,1,167,168],[431,5,4,168,172],[434,3,2,172,174]]],[17,1,1,174,175,[[456,1,1,174,175]]],[18,19,19,175,194,[[484,1,1,175,176],[499,1,1,176,177],[517,1,1,177,178],[527,1,1,178,179],[528,1,1,179,180],[529,1,1,180,181],[543,1,1,181,182],[548,1,1,182,183],[555,1,1,183,184],[575,1,1,184,185],[582,1,1,185,186],[583,1,1,186,187],[586,1,1,187,188],[588,1,1,188,189],[592,1,1,189,190],[596,2,2,190,192],[603,2,2,192,194]]],[19,2,2,194,196,[[651,1,1,194,195],[658,1,1,195,196]]],[20,11,11,196,207,[[659,1,1,196,197],[660,1,1,197,198],[662,2,2,198,200],[666,5,5,200,205],[667,2,2,205,207]]],[22,17,16,207,223,[[683,2,1,207,208],[688,2,2,208,210],[690,1,1,210,211],[703,1,1,211,212],[711,1,1,212,213],[715,2,2,213,215],[716,2,2,215,217],[719,2,2,217,219],[722,1,1,219,220],[724,1,1,220,221],[726,1,1,221,222],[731,1,1,222,223]]],[23,28,28,223,251,[[746,1,1,223,224],[747,3,3,224,227],[749,1,1,227,228],[751,2,2,228,230],[752,1,1,230,231],[755,1,1,231,232],[760,1,1,232,233],[762,1,1,233,234],[766,1,1,234,235],[774,2,2,235,237],[775,1,1,237,238],[776,2,2,238,240],[779,2,2,240,242],[782,1,1,242,243],[784,1,1,243,244],[785,1,1,244,245],[786,1,1,245,246],[788,1,1,246,247],[794,2,2,247,249],[795,1,1,249,250],[796,1,1,250,251]]],[24,2,2,251,253,[[797,1,1,251,252],[798,1,1,252,253]]],[25,34,30,253,283,[[804,1,1,253,254],[806,2,2,254,256],[810,2,2,256,258],[812,1,1,258,259],[813,3,2,259,261],[815,2,1,261,262],[817,7,6,262,268],[818,2,2,268,270],[819,6,5,270,275],[824,2,2,275,277],[825,2,2,277,279],[834,1,1,279,280],[840,1,1,280,281],[844,1,1,281,282],[845,1,1,282,283]]],[26,4,3,283,286,[[858,2,1,283,284],[860,2,2,284,286]]],[28,1,1,286,287,[[877,1,1,286,287]]],[29,1,1,287,288,[[881,1,1,287,288]]],[30,2,1,288,289,[[888,2,1,288,289]]],[31,2,2,289,291,[[889,2,2,289,291]]],[32,1,1,291,292,[[898,1,1,291,292]]],[37,1,1,292,293,[[917,1,1,292,293]]],[38,1,1,293,294,[[926,1,1,293,294]]]],[68,69,89,204,229,316,445,500,504,536,657,702,721,746,772,820,821,899,987,1187,1280,1339,1550,1558,1595,1832,1894,2000,2007,2008,2108,2435,2533,2707,2797,2808,2817,2822,2847,2856,2922,2951,3029,3278,3405,3465,3799,4164,4187,4377,4403,4427,4731,4996,5207,5271,5425,5445,5556,5580,5703,5995,5996,6040,6065,6096,6099,6101,6103,6463,6468,6483,6507,6516,6547,6555,6683,6721,6770,6866,6915,6935,6936,6939,6940,7160,7188,7340,7377,7452,7477,7496,7551,7644,7645,7647,7724,7731,7762,7858,7891,7921,7923,7951,7959,7960,7975,8020,8055,8105,8286,8291,8307,8329,8436,8591,8702,8709,8723,8828,9051,9059,9195,9227,9240,9252,9388,9407,9533,9616,9617,9660,9719,9731,9823,9928,9934,9959,10072,10086,10101,10130,10134,10182,10184,10197,10202,10211,10221,10670,10832,10951,11345,11693,11699,11720,11793,11797,11832,11888,12255,12401,12410,12510,12544,12685,12725,12763,12796,12799,12802,12804,12846,12848,13386,13998,14235,14530,14689,14695,14719,14889,14995,15117,15491,15611,15672,15782,15801,15833,16019,16064,16117,16118,17108,17313,17328,17345,17382,17384,17467,17468,17472,17474,17475,17478,17481,17743,17861,17863,17905,18119,18292,18363,18378,18393,18405,18455,18471,18556,18596,18619,18720,18988,19007,19008,19018,19071,19133,19149,19159,19243,19348,19397,19462,19682,19691,19728,19761,19763,19833,19841,19904,19944,19968,19985,20027,20181,20195,20236,20278,20331,20349,20522,20553,20555,20626,20633,20667,20691,20708,20754,20809,20810,20813,20816,20821,20825,20843,20849,20863,20868,20871,20873,20875,21045,21046,21078,21080,21296,21472,21583,21613,22000,22060,22072,22331,22401,22525,22541,22545,22651,22965,23116]]],["dress",[5,5,[[0,1,1,0,1,[[17,1,1,0,1]]],[9,2,2,1,3,[[278,1,1,1,2],[279,1,1,2,3]]],[10,2,2,3,5,[[307,1,1,3,4],[308,1,1,4,5]]]],[431,8290,8324,9329,9366]]],["dressed",[6,6,[[0,1,1,0,1,[[17,1,1,0,1]]],[2,1,1,1,2,[[96,1,1,1,2]]],[8,1,1,2,3,[[260,1,1,2,3]]],[9,2,2,3,5,[[278,1,1,3,4],[285,1,1,4,5]]],[10,1,1,5,6,[[308,1,1,5,6]]]],[432,2888,7879,8290,8535,9367]]],["effect",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20110]]],["execute",[23,23,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[121,1,1,1,2]]],[4,1,1,2,3,[[162,1,1,2,3]]],[10,1,1,3,4,[[296,1,1,3,4]]],[18,3,3,4,7,[[596,1,1,4,5],[626,2,2,5,7]]],[22,1,1,7,8,[[694,1,1,7,8]]],[23,2,2,8,10,[[767,1,1,8,9],[777,1,1,9,10]]],[25,10,10,10,20,[[806,3,3,10,13],[812,1,1,13,14],[817,1,1,14,15],[826,2,2,15,17],[831,2,2,17,19],[846,1,1,19,20]]],[27,1,1,20,21,[[872,1,1,20,21]]],[32,2,2,21,23,[[897,1,1,21,22],[899,1,1,22,23]]]],[1828,3822,5204,8908,15982,16392,16394,17972,19489,19790,20554,20556,20561,20664,20803,21094,21100,21218,21223,21639,22249,22648,22673]]],["executed",[14,14,[[3,1,1,0,1,[[149,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[9,1,1,2,3,[[274,1,1,2,3]]],[13,1,1,3,4,[[390,1,1,3,4]]],[20,1,1,4,5,[[666,1,1,4,5]]],[23,1,1,5,6,[[767,1,1,5,6]]],[25,8,8,6,14,[[812,1,1,6,7],[819,2,2,7,9],[821,1,1,9,10],[824,1,1,10,11],[829,2,2,11,13],[840,1,1,13,14]]]],[4764,5831,8224,11701,17469,19504,20667,20857,20866,20919,21017,21179,21183,21469]]],["executedst",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7960]]],["executest",[1,1,[[18,1,1,0,1,[[576,1,1,0,1]]]],[15503]]],["executeth",[5,5,[[18,3,3,0,3,[[486,1,1,0,1],[580,1,1,1,2],[623,1,1,2,3]]],[23,1,1,3,4,[[749,1,1,3,4]]],[28,1,1,4,5,[[877,1,1,4,5]]]],[14037,15555,16348,19059,22322]]],["executing",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9823]]],["execution",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12835]]],["exercise",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19199]]],["fashioned",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13094]]],["fitteth",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18546]]],["flew",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7540]]],["followed",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8472]]],["forth",[9,7,[[0,1,1,0,1,[[40,1,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[22,4,2,2,4,[[683,4,2,2,4]]],[23,1,1,4,5,[[756,1,1,4,5]]],[25,2,2,5,7,[[818,2,2,5,7]]]],[1242,13190,17741,17743,19251,20831,20833]]],["fulfil",[1,1,[[18,1,1,0,1,[[622,1,1,0,1]]]],[16339]]],["fulfilling",[1,1,[[18,1,1,0,1,[[625,1,1,0,1]]]],[16379]]],["gat",[2,2,[[9,1,1,0,1,[[274,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[8222,17341]]],["gathered",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7556]]],["get",[2,2,[[4,1,1,0,1,[[160,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]]],[5155,12521]]],["getteth",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19368]]],["give",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17804]]],["given",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17718]]],["gotten",[8,7,[[0,1,1,0,1,[[11,1,1,0,1]]],[4,1,1,1,2,[[160,1,1,1,2]]],[22,1,1,2,3,[[693,1,1,2,3]]],[23,1,1,3,4,[[792,1,1,3,4]]],[25,3,2,4,6,[[829,2,1,4,5],[839,1,1,5,6]]],[26,1,1,6,7,[[858,1,1,6,7]]]],[303,5154,17967,20116,21161,21437,22003]]],["holden",[2,2,[[11,2,2,0,2,[[335,2,2,0,2]]]],[10187,10188]]],["indeed",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19458]]],["keep",[24,22,[[1,3,2,0,2,[[61,3,2,0,2]]],[3,9,8,2,10,[[125,9,8,2,10]]],[4,2,2,10,12,[[168,2,2,10,12]]],[12,1,1,12,13,[[341,1,1,12,13]]],[13,7,7,13,20,[[396,5,5,13,18],[401,2,2,18,20]]],[15,1,1,20,21,[[424,1,1,20,21]]],[16,1,1,21,22,[[428,1,1,21,22]]]],[1863,1864,3968,3969,3971,3975,3976,3977,3978,3979,5343,5352,10395,11828,11829,11830,11832,11850,11982,11984,12651,12755]]],["kept",[12,11,[[13,6,5,0,5,[[373,1,1,0,1],[396,1,1,1,2],[401,4,3,2,5]]],[14,2,2,5,7,[[405,1,1,5,6],[408,1,1,6,7]]],[15,2,2,7,9,[[420,1,1,7,8],[421,1,1,8,9]]],[16,1,1,9,10,[[434,1,1,9,10]]],[25,1,1,10,11,[[806,1,1,10,11]]]],[11333,11850,11967,11984,11985,12101,12173,12511,12545,12862,20553]]],["labour",[2,2,[[1,1,1,0,1,[[54,1,1,0,1]]],[19,1,1,1,2,[[648,1,1,1,2]]]],[1641,17009]]],["laboured",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12380]]],["made",[327,305,[[0,26,25,0,25,[[0,1,1,0,1],[1,4,3,1,4],[2,2,2,4,6],[4,1,1,6,7],[5,1,1,7,8],[6,1,1,8,9],[7,1,1,9,10],[8,1,1,10,11],[12,1,1,11,12],[13,1,1,12,13],[18,1,1,13,14],[20,2,2,14,16],[25,1,1,16,17],[26,2,2,17,19],[28,1,1,19,20],[30,1,1,20,21],[32,1,1,21,22],[36,1,1,22,23],[39,1,1,23,24],[49,1,1,24,25]]],[1,58,51,25,76,[[50,1,1,25,26],[74,1,1,26,27],[75,1,1,27,28],[81,5,5,28,33],[84,1,1,33,34],[85,23,18,34,52],[86,13,11,52,63],[87,5,5,63,68],[88,8,8,68,76]]],[2,5,5,76,81,[[91,3,3,76,79],[95,1,1,79,80],[102,1,1,80,81]]],[3,4,4,81,85,[[120,1,1,81,82],[122,1,1,82,83],[127,1,1,83,84],[137,1,1,84,85]]],[4,8,8,85,93,[[161,3,3,85,88],[162,2,2,88,90],[178,1,1,90,91],[184,2,2,91,93]]],[5,5,4,93,97,[[191,1,1,93,94],[195,2,1,94,95],[197,1,1,95,96],[208,1,1,96,97]]],[6,11,11,97,108,[[213,1,1,97,98],[216,1,1,98,99],[218,1,1,99,100],[219,1,1,100,101],[224,1,1,101,102],[227,2,2,102,104],[228,3,3,104,107],[231,1,1,107,108]]],[8,1,1,108,109,[[237,1,1,108,109]]],[9,3,3,109,112,[[269,1,1,109,110],[273,1,1,110,111],[279,1,1,111,112]]],[10,35,34,112,146,[[292,1,1,112,113],[293,1,1,113,114],[296,5,5,114,119],[297,8,8,119,127],[299,1,1,127,128],[300,4,4,128,132],[302,5,4,132,136],[303,1,1,136,137],[304,3,3,137,140],[305,2,2,140,142],[308,2,2,142,144],[312,2,2,144,146]]],[11,21,18,146,164,[[315,1,1,146,147],[324,1,1,147,148],[328,1,1,148,149],[329,8,6,149,155],[330,1,1,155,156],[333,2,2,156,158],[335,5,4,158,162],[336,1,1,162,163],[337,1,1,163,164]]],[12,8,8,164,172,[[342,2,2,164,166],[352,1,1,166,167],[353,1,1,167,168],[354,1,1,168,169],[358,1,1,169,170],[359,1,1,170,171],[360,1,1,171,172]]],[13,44,41,172,213,[[367,2,2,172,174],[369,4,3,174,177],[370,8,6,177,183],[371,1,1,183,184],[372,1,1,184,185],[373,3,3,185,188],[375,3,3,188,191],[377,1,1,191,192],[378,2,2,192,194],[379,2,2,194,196],[381,1,1,196,197],[384,1,1,197,198],[386,1,1,198,199],[387,2,2,199,201],[390,2,2,201,203],[392,2,2,203,205],[394,3,3,205,208],[398,2,2,208,210],[399,3,3,210,213]]],[15,5,5,213,218,[[415,1,1,213,214],[420,3,3,214,217],[421,1,1,217,218]]],[16,10,8,218,226,[[426,3,3,218,221],[427,2,1,221,222],[430,2,1,222,223],[432,1,1,223,224],[434,2,2,224,226]]],[17,7,7,226,233,[[445,1,1,226,227],[463,1,1,227,228],[466,1,1,228,229],[468,1,1,229,230],[475,2,2,230,232],[476,1,1,232,233]]],[18,20,20,233,253,[[486,1,1,233,234],[510,1,1,234,235],[563,1,1,235,236],[572,1,1,236,237],[573,1,1,237,238],[577,1,1,238,239],[581,1,1,239,240],[583,1,1,240,241],[588,1,1,241,242],[592,1,1,242,243],[595,1,1,243,244],[596,1,1,244,245],[598,1,1,245,246],[601,1,1,246,247],[611,1,1,247,248],[613,2,2,248,250],[616,1,1,250,251],[623,1,1,251,252],[626,1,1,252,253]]],[19,2,2,253,255,[[635,1,1,253,254],[647,1,1,254,255]]],[20,3,3,255,258,[[660,2,2,255,257],[668,1,1,257,258]]],[21,2,2,258,260,[[673,2,2,258,260]]],[22,15,14,260,274,[[680,2,2,260,262],[695,1,1,262,263],[700,1,1,263,264],[705,1,1,264,265],[707,2,1,265,266],[709,1,1,266,267],[721,1,1,267,268],[722,1,1,268,269],[723,2,2,269,271],[724,1,1,271,272],[735,1,1,272,273],[744,1,1,273,274]]],[23,12,11,274,285,[[746,1,1,274,275],[752,1,1,275,276],[754,1,1,276,277],[756,1,1,277,278],[762,2,1,278,279],[776,1,1,279,280],[781,1,1,280,281],[782,1,1,281,282],[785,1,1,282,283],[795,1,1,283,284],[796,1,1,284,285]]],[25,17,15,285,300,[[808,1,1,285,286],[817,1,1,286,287],[823,2,2,287,289],[828,2,1,289,290],[830,2,2,290,292],[832,1,1,292,293],[841,2,2,293,295],[842,5,4,295,299],[847,1,1,299,300]]],[27,3,3,300,303,[[869,2,2,300,302],[874,1,1,302,303]]],[29,1,1,303,304,[[883,1,1,303,304]]],[31,1,1,304,305,[[892,1,1,304,305]]]],[30,32,33,34,56,62,106,144,163,189,211,322,338,460,519,521,722,741,758,817,919,977,1086,1192,1516,1553,2226,2266,2442,2446,2458,2469,2473,2560,2570,2574,2577,2578,2579,2580,2583,2584,2585,2590,2591,2593,2594,2597,2600,2601,2602,2603,2606,2608,2610,2611,2612,2615,2616,2621,2628,2630,2631,2635,2636,2637,2640,2661,2665,2668,2679,2680,2683,2684,2688,2689,2769,2770,2773,2870,3103,3769,3827,4032,4349,5169,5173,5178,5189,5191,5585,5764,5773,5937,6052,6125,6454,6584,6656,6746,6781,6919,6984,6985,7017,7020,7024,7117,7259,8101,8189,8327,8794,8831,8900,8901,8919,8927,8929,8940,8941,8942,8950,8972,8974,8979,8985,9077,9091,9095,9097,9099,9179,9182,9183,9184,9217,9227,9244,9245,9261,9262,9367,9373,9491,9528,9578,9863,9974,9991,9999,10002,10012,10014,10015,10028,10122,10126,10169,10177,10180,10184,10215,10238,10438,10447,10792,10846,10871,10963,10972,10988,11197,11199,11239,11244,11245,11247,11252,11254,11255,11260,11264,11269,11295,11330,11331,11333,11379,11381,11383,11429,11446,11447,11461,11462,11506,11552,11623,11635,11643,11685,11691,11745,11747,11766,11788,11789,11880,11902,11911,11915,11930,12343,12497,12509,12510,12529,12705,12707,12711,12742,12793,12816,12851,12852,13095,13530,13603,13654,13879,13883,13921,14036,14372,15293,15459,15470,15511,15595,15670,15797,15845,15893,15971,16083,16110,16175,16201,16203,16254,16347,16387,16628,16966,17338,17339,17512,17580,17581,17693,17705,17991,18063,18162,18209,18257,18512,18535,18573,18579,18590,18781,18924,18993,19161,19213,19260,19388,19751,19889,19911,19966,20227,20296,20597,20786,20980,20989,21127,21186,21192,21239,21491,21494,21544,21545,21546,21551,21678,22198,22200,22268,22449,22573]]],["madest",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20779]]],["maintain",[6,6,[[10,3,3,0,3,[[298,3,3,0,3]]],[13,2,2,3,5,[[372,2,2,3,5]]],[18,1,1,5,6,[[617,1,1,5,6]]]],[9030,9034,9044,11317,11321,16275]]],["maintained",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14025]]],["make",[205,179,[[0,14,13,0,13,[[0,1,1,0,1],[1,1,1,1,2],[2,1,1,2,3],[5,3,2,3,5],[10,1,1,5,6],[11,1,1,6,7],[17,1,1,7,8],[26,3,3,8,11],[34,2,2,11,13]]],[1,98,78,13,91,[[54,1,1,13,14],[69,5,4,14,18],[74,20,17,18,35],[75,21,17,35,52],[76,8,5,52,57],[77,21,15,57,72],[78,1,1,72,73],[79,12,9,73,82],[81,2,2,82,84],[83,1,1,84,85],[84,1,1,85,86],[85,5,5,86,91]]],[2,3,3,91,94,[[108,1,1,91,92],[111,1,1,92,93],[115,1,1,93,94]]],[3,5,4,94,98,[[126,1,1,94,95],[130,1,1,95,96],[131,3,2,96,98]]],[4,11,11,98,109,[[156,3,3,98,101],[157,1,1,101,102],[161,1,1,102,103],[162,1,1,103,104],[167,1,1,104,105],[168,1,1,105,106],[172,1,1,106,107],[174,2,2,107,109]]],[6,1,1,109,110,[[227,1,1,109,110]]],[8,6,6,110,116,[[241,2,2,110,112],[243,1,1,112,113],[247,1,1,113,114],[248,1,1,114,115],[252,1,1,115,116]]],[9,1,1,116,117,[[273,1,1,116,117]]],[10,2,1,117,118,[[307,2,1,117,118]]],[11,4,4,118,122,[[316,1,1,118,119],[318,1,1,119,120],[319,2,2,120,122]]],[13,4,4,122,126,[[370,2,2,122,124],[373,1,1,124,125],[386,1,1,125,126]]],[15,2,2,126,128,[[420,2,2,126,128]]],[16,2,2,128,130,[[426,1,1,128,129],[434,1,1,129,130]]],[17,2,2,130,132,[[463,1,1,130,131],[466,1,1,131,132]]],[18,2,2,132,134,[[592,1,1,132,133],[612,1,1,133,134]]],[19,2,2,134,136,[[647,1,1,134,135],[651,1,1,135,136]]],[21,1,1,136,137,[[671,1,1,136,137]]],[22,10,9,137,146,[[688,1,1,137,138],[697,1,1,138,139],[703,1,1,139,140],[705,2,1,140,141],[722,1,1,141,142],[723,1,1,142,143],[741,2,2,143,145],[744,1,1,145,146]]],[23,13,11,146,157,[[748,1,1,146,147],[749,2,2,147,149],[750,1,1,149,150],[751,1,1,150,151],[760,1,1,151,152],[762,1,1,152,153],[772,1,1,153,154],[774,2,1,154,155],[788,1,1,155,156],[790,2,1,156,157]]],[25,12,12,157,169,[[805,1,1,157,158],[812,1,1,158,159],[814,1,1,159,160],[818,1,1,160,161],[819,1,1,161,162],[821,1,1,162,163],[825,1,1,163,164],[828,1,1,164,165],[836,1,1,165,166],[838,2,2,166,168],[844,1,1,168,169]]],[26,1,1,169,170,[[860,1,1,169,170]]],[29,1,1,170,171,[[887,1,1,170,171]]],[32,1,1,171,172,[[893,1,1,171,172]]],[33,2,2,172,174,[[900,2,2,172,174]]],[34,1,1,174,175,[[904,1,1,174,175]]],[35,1,1,175,176,[[906,1,1,175,176]]],[37,2,2,176,178,[[916,1,1,176,177],[920,1,1,177,178]]],[38,1,1,178,179,[[926,1,1,178,179]]]],[25,48,76,152,153,270,300,430,731,734,736,1012,1014,1640,2055,2074,2075,2076,2203,2204,2205,2206,2208,2212,2213,2214,2218,2219,2220,2221,2224,2226,2232,2234,2235,2236,2239,2240,2241,2242,2245,2246,2249,2252,2254,2257,2258,2261,2264,2266,2271,2272,2274,2275,2276,2278,2280,2295,2297,2304,2306,2307,2308,2315,2316,2319,2320,2326,2329,2332,2333,2335,2338,2383,2385,2386,2400,2407,2414,2417,2419,2420,2439,2448,2513,2564,2569,2571,2572,2573,2588,3285,3393,3525,3990,4120,4156,4191,5020,5027,5029,5061,5171,5187,5320,5363,5439,5478,5482,6983,7336,7338,7381,7482,7504,7643,8191,9330,9613,9676,9709,9726,11257,11262,11335,11623,12505,12508,12722,12856,13529,13603,15838,16193,16972,17085,17548,17873,18014,18124,18156,18552,18568,18878,18880,18944,19054,19068,19076,19115,19137,19356,19388,19631,19678,20029,20073,20538,20668,20726,20842,20880,20912,21073,21126,21358,21416,21419,21590,22042,22509,22587,22692,22693,22766,22805,22958,23017,23118]]],["maker",[7,7,[[17,2,2,0,2,[[467,1,1,0,1],[470,1,1,1,2]]],[18,1,1,2,3,[[572,1,1,2,3]]],[19,1,1,3,4,[[649,1,1,3,4]]],[22,2,2,4,6,[[700,1,1,4,5],[729,1,1,5,6]]],[23,1,1,6,7,[[777,1,1,6,7]]]],[13650,13730,15460,17017,18063,18686,19777]]],["makest",[4,4,[[6,1,1,0,1,[[228,1,1,0,1]]],[22,1,1,1,2,[[723,1,1,1,2]]],[25,1,1,2,3,[[817,1,1,2,3]]],[34,1,1,3,4,[[903,1,1,3,4]]]],[6996,18570,20793,22745]]],["maketh",[22,22,[[4,2,2,0,2,[[172,1,1,0,1],[179,1,1,1,2]]],[17,4,4,2,6,[[444,1,1,2,3],[450,1,1,3,4],[460,1,1,4,5],[462,1,1,5,6]]],[18,2,2,6,8,[[581,1,1,6,7],[612,1,1,7,8]]],[19,2,2,8,10,[[658,2,2,8,10]]],[20,1,1,10,11,[[661,1,1,10,11]]],[22,6,6,11,17,[[718,1,1,11,12],[722,4,4,12,16],[724,1,1,16,17]]],[23,2,2,17,19,[[754,1,1,17,18],[795,1,1,18,19]]],[25,1,1,19,20,[[823,1,1,19,20]]],[29,2,2,20,22,[[882,1,1,20,21],[883,1,1,21,22]]]],[5447,5600,13060,13230,13463,13499,15575,16182,17306,17308,17370,18443,18546,18548,18550,18557,18592,19214,20228,20979,22423,22431]]],["making",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17535]]],["meet",[2,1,[[25,2,1,0,1,[[816,2,1,0,1]]]],[20759]]],["observe",[2,2,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,1,1,1,2,[[168,1,1,1,2]]]],[2518,5355]]],["occupied",[1,1,[[1,1,1,0,1,[[87,1,1,0,1]]]],[2657]]],["offer",[32,28,[[1,5,4,0,4,[[78,5,4,0,4]]],[2,7,7,4,11,[[94,1,1,4,5],[95,1,1,5,6],[104,1,1,6,7],[105,1,1,7,8],[106,1,1,8,9],[111,1,1,9,10],[112,1,1,10,11]]],[3,14,11,11,22,[[122,3,2,11,13],[131,2,2,13,15],[144,8,6,15,21],[145,1,1,21,22]]],[4,1,1,22,23,[[164,1,1,22,23]]],[5,1,1,23,24,[[208,1,1,23,24]]],[6,1,1,24,25,[[223,1,1,24,25]]],[11,2,2,25,27,[[317,1,1,25,26],[322,1,1,26,27]]],[18,1,1,27,28,[[543,1,1,27,28]]]],[2372,2374,2375,2377,2840,2871,3183,3210,3244,3392,3414,3834,3840,4167,4177,4581,4585,4597,4598,4601,4608,4610,5267,6449,6900,9664,9817,14888]]],["offered",[5,5,[[2,1,1,0,1,[[98,1,1,0,1]]],[3,2,2,1,3,[[144,2,2,1,3]]],[10,1,1,3,4,[[293,1,1,3,4]]],[13,1,1,4,5,[[373,1,1,4,5]]]],[2969,4592,4601,8831,11331]]],["offering",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9818]]],["ordained",[3,3,[[3,1,1,0,1,[[144,1,1,0,1]]],[10,2,2,1,3,[[302,2,2,1,3]]]],[4583,9183,9184]]],["pass",[4,4,[[0,2,2,0,2,[[40,1,1,0,1],[49,1,1,1,2]]],[18,1,1,2,3,[[514,1,1,2,3]]],[25,1,1,3,4,[[813,1,1,3,4]]]],[1227,1526,14455,20705]]],["perform",[8,8,[[1,1,1,0,1,[[67,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[175,1,1,2,3]]],[17,1,1,3,4,[[440,1,1,3,4]]],[18,1,1,4,5,[[596,1,1,4,5]]],[22,1,1,5,6,[[687,1,1,5,6]]],[23,1,1,6,7,[[745,1,1,6,7]]],[25,1,1,7,8,[[813,1,1,7,8]]]],[2017,5017,5523,12963,16010,17836,18958,20705]]],["performed",[4,4,[[9,1,1,0,1,[[287,1,1,0,1]]],[16,2,2,1,3,[[430,1,1,1,2],[432,1,1,2,3]]],[25,1,1,3,4,[[838,1,1,3,4]]]],[8594,12785,12809,21411]]],["practise",[3,3,[[22,1,1,0,1,[[710,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]],[32,1,1,2,3,[[894,1,1,2,3]]]],[18265,21985,22596]]],["practised",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21973]]],["prepare",[17,15,[[3,3,3,0,3,[[131,3,3,0,3]]],[5,1,1,3,4,[[208,1,1,3,4]]],[16,1,1,4,5,[[430,1,1,4,5]]],[25,12,10,5,15,[[813,1,1,5,6],[836,1,1,6,7],[844,2,1,7,8],[846,3,3,8,11],[847,5,4,11,15]]]],[4158,4159,4165,6452,12787,20683,21350,21597,21652,21653,21654,21662,21667,21668,21669]]],["prepared",[13,12,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[9,1,1,2,3,[[281,1,1,2,3]]],[10,1,1,3,4,[[291,1,1,3,4]]],[15,3,2,4,6,[[417,2,1,4,5],[425,1,1,5,6]]],[16,4,4,6,10,[[430,3,3,6,9],[431,1,1,9,10]]],[22,1,1,10,11,[[742,1,1,10,11]]],[27,1,1,11,12,[[863,1,1,11,12]]]],[744,1855,8390,8722,12400,12676,12783,12784,12791,12807,18889,22113]]],["preparest",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4161]]],["preparing",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12678]]],["procure",[2,2,[[23,2,2,0,2,[[770,1,1,0,1],[777,1,1,1,2]]]],[19591,19784]]],["procured",[2,2,[[23,2,2,0,2,[[746,1,1,0,1],[748,1,1,1,2]]]],[18982,19045]]],["provide",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[860]]],["provided",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11904]]],["put",[1,1,[[8,1,1,0,1,[[243,1,1,0,1]]]],[7385]]],["ready",[2,2,[[6,2,2,0,2,[[216,1,1,0,1],[223,1,1,1,2]]]],[6673,6899]]],["requite",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8055]]],["sacrifice",[2,2,[[1,1,1,0,1,[[59,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]]],[1802,3421]]],["sacrificed",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10015]]],["served",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6720]]],["set",[2,2,[[13,1,1,0,1,[[368,1,1,0,1]]],[19,1,1,1,2,[[649,1,1,1,2]]]],[11229,17043]]],["shew",[16,16,[[0,3,3,0,3,[[19,1,1,0,1],[23,1,1,1,2],[39,1,1,2,3]]],[1,1,1,3,4,[[63,1,1,3,4]]],[5,1,1,4,5,[[188,1,1,4,5]]],[6,1,1,5,6,[[216,1,1,5,6]]],[9,4,4,6,10,[[268,1,1,6,7],[269,1,1,7,8],[275,1,1,8,9],[276,1,1,9,10]]],[10,1,1,10,11,[[292,1,1,10,11]]],[12,1,1,11,12,[[356,1,1,11,12]]],[18,2,2,12,14,[[565,1,1,12,13],[586,1,1,13,14]]],[25,1,1,14,15,[[834,1,1,14,15]]],[37,1,1,15,16,[[917,1,1,15,16]]]],[508,603,1186,1902,5881,6671,8055,8089,8230,8242,8777,10909,15318,15771,21311,22971]]],["shewed",[16,15,[[0,3,3,0,3,[[18,1,1,0,1],[23,1,1,1,2],[31,1,1,2,3]]],[3,1,1,3,4,[[130,1,1,3,4]]],[4,1,1,4,5,[[186,1,1,4,5]]],[6,2,1,5,6,[[218,2,1,5,6]]],[8,1,1,6,7,[[250,1,1,6,7]]],[9,2,2,7,9,[[268,1,1,7,8],[276,1,1,8,9]]],[10,3,3,9,12,[[293,1,1,9,10],[306,1,1,10,11],[312,1,1,11,12]]],[12,1,1,12,13,[[356,1,1,12,13]]],[13,2,2,13,15,[[367,1,1,13,14],[373,1,1,14,15]]]],[476,605,938,4119,5851,6754,7566,8054,8242,8822,9310,9525,10909,11202,11334]]],["shewest",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19749]]],["sheweth",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8653,14168]]],["shewing",[2,2,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,1,1,1,2,[[157,1,1,1,2]]]],[2057,5063]]],["sinneth",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4182]]],["spendeth",[1,1,[[20,1,1,0,1,[[664,1,1,0,1]]]],[17429]]],["take",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18218]]],["taken",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6865]]],["trimmed",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8535]]],["unto",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19784]]],["up",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23137]]],["used",[2,2,[[2,1,1,0,1,[[96,1,1,0,1]]],[25,1,1,1,2,[[836,1,1,1,2]]]],[2903,21355]]],["with",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11914]]],["work",[21,21,[[1,5,5,0,5,[[80,2,2,0,2],[84,2,2,2,4],[88,1,1,4,5]]],[5,1,1,5,6,[[195,1,1,5,6]]],[8,1,1,6,7,[[249,1,1,6,7]]],[10,3,3,7,10,[[297,1,1,7,8],[311,2,2,8,10]]],[13,2,2,10,12,[[368,2,2,10,12]]],[15,1,1,12,13,[[416,1,1,12,13]]],[17,1,1,13,14,[[458,1,1,13,14]]],[18,2,2,14,16,[[578,1,1,14,15],[596,1,1,15,16]]],[22,1,1,16,17,[[710,1,1,16,17]]],[25,1,1,17,18,[[834,1,1,17,18]]],[26,1,1,18,19,[[860,1,1,18,19]]],[36,1,1,19,20,[[910,1,1,19,20]]],[38,1,1,20,21,[[927,1,1,20,21]]]],[2424,2425,2563,2566,2667,6041,7514,8948,9471,9476,11218,11225,12365,13428,15516,16024,18265,21306,22059,22859,23135]]],["workers",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14451]]],["worketh",[6,6,[[18,1,1,0,1,[[578,1,1,0,1]]],[19,3,3,1,4,[[638,1,1,1,2],[653,1,1,2,3],[658,1,1,3,4]]],[20,1,1,4,5,[[661,1,1,4,5]]],[22,1,1,5,6,[[742,1,1,5,6]]]],[15520,16706,17169,17297,17368,18890]]],["working",[1,1,[[18,1,1,0,1,[[529,1,1,0,1]]]],[14712]]],["wrought",[46,44,[[0,1,1,0,1,[[33,1,1,0,1]]],[1,2,2,1,3,[[85,2,2,1,3]]],[2,1,1,3,4,[[109,1,1,3,4]]],[4,4,4,4,8,[[165,1,1,4,5],[169,1,1,5,6],[174,1,1,6,7],[183,1,1,7,8]]],[5,1,1,8,9,[[193,1,1,8,9]]],[6,1,1,9,10,[[230,1,1,9,10]]],[7,2,1,10,11,[[233,2,1,10,11]]],[8,4,3,11,14,[[246,1,1,11,12],[249,2,1,12,13],[254,1,1,13,14]]],[9,3,3,14,17,[[284,1,1,14,15],[289,2,2,15,17]]],[10,3,3,17,20,[[295,1,1,17,18],[299,1,1,18,19],[306,1,1,19,20]]],[11,4,4,20,24,[[315,1,1,20,21],[324,1,1,21,22],[329,1,1,22,23],[333,1,1,23,24]]],[13,6,6,24,30,[[387,1,1,24,25],[390,1,1,25,26],[397,1,1,26,27],[399,1,1,27,28],[400,2,2,28,30]]],[15,5,5,30,35,[[416,2,2,30,32],[418,1,1,32,33],[421,2,2,33,35]]],[17,1,1,35,36,[[447,1,1,35,36]]],[22,1,1,36,37,[[704,1,1,36,37]]],[23,2,2,37,39,[[755,1,1,37,38],[762,1,1,38,39]]],[25,5,5,39,44,[[821,4,4,39,43],[830,1,1,43,44]]]],[987,2567,2574,3330,5286,5368,5491,5746,5991,7064,7168,7458,7553,7711,8491,8663,8665,8894,9074,9308,9578,9861,9994,10125,11630,11690,11874,11914,11943,11946,12375,12376,12417,12529,12537,13137,18148,19241,19387,20904,20909,20917,20939,21203]]],["wroughtest",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7168]]],["yield",[6,4,[[18,1,1,0,1,[[584,1,1,0,1]]],[22,2,1,1,2,[[683,2,1,1,2]]],[27,2,1,2,3,[[869,2,1,2,3]]],[34,1,1,3,4,[[905,1,1,3,4]]]],[15736,17749,22201,22785]]],["yielding",[2,2,[[0,2,2,0,2,[[0,2,2,0,2]]]],[10,11]]]]},{"k":"H6214","v":[["Asahel",[18,17,[[9,12,11,0,11,[[268,9,8,0,8],[269,2,2,8,10],[289,1,1,10,11]]],[12,3,3,11,14,[[339,1,1,11,12],[348,1,1,12,13],[364,1,1,13,14]]],[13,2,2,14,16,[[383,1,1,14,15],[397,1,1,15,16]]],[14,1,1,16,17,[[412,1,1,16,17]]]],[8067,8068,8069,8070,8071,8072,8079,8081,8108,8111,8677,10322,10699,11116,11531,11867,12267]]]]},{"k":"H6215","v":[["*",[97,82,[[0,76,63,0,63,[[24,9,8,0,8],[25,1,1,8,9],[26,21,17,9,26],[27,4,4,26,30],[31,9,9,30,39],[32,5,5,39,44],[34,2,2,44,46],[35,25,17,46,63]]],[4,6,6,63,69,[[154,6,6,63,69]]],[5,2,1,69,70,[[210,2,1,69,70]]],[12,2,2,70,72,[[338,2,2,70,72]]],[23,2,2,72,74,[[793,2,2,72,74]]],[30,7,6,74,80,[[888,7,6,74,80]]],[38,2,2,80,82,[[925,2,2,80,82]]]],[683,684,685,686,687,688,690,692,726,728,732,733,738,742,746,748,749,750,751,757,759,761,764,765,768,769,778,779,781,782,931,932,934,936,939,941,945,946,947,961,964,969,975,976,1012,1040,1041,1042,1044,1045,1046,1048,1049,1050,1052,1053,1054,1055,1057,1058,1059,1080,1083,4942,4943,4946,4950,4960,4967,6480,10286,10287,20135,20137,22516,22518,22519,22528,22529,22531,23091,23092]]],["+",[3,3,[[0,2,2,0,2,[[35,2,2,0,2]]],[5,1,1,2,3,[[210,1,1,2,3]]]],[1044,1054,6480]]],["Esau",[82,73,[[0,62,54,0,54,[[24,8,7,0,7],[25,1,1,7,8],[26,20,16,8,24],[27,3,3,24,27],[31,9,9,27,36],[32,5,5,36,41],[34,2,2,41,43],[35,14,11,43,54]]],[4,6,6,54,60,[[154,6,6,54,60]]],[5,1,1,60,61,[[210,1,1,60,61]]],[12,2,2,61,63,[[338,2,2,61,63]]],[23,2,2,63,65,[[793,2,2,63,65]]],[30,7,6,65,71,[[888,7,6,65,71]]],[38,2,2,71,73,[[925,2,2,71,73]]]],[683,685,686,687,688,690,692,726,728,732,733,738,742,746,748,749,751,757,759,761,764,765,768,769,779,781,782,931,932,934,936,939,941,945,946,947,961,964,969,975,976,1012,1040,1041,1042,1045,1046,1048,1049,1050,1055,1059,1080,1083,4942,4943,4946,4950,4960,4967,6480,10286,10287,20135,20137,22516,22518,22519,22528,22529,22531,23091,23092]]],["Esau's",[12,9,[[0,12,9,0,9,[[24,1,1,0,1],[26,1,1,1,2],[27,1,1,2,3],[35,9,6,3,9]]]],[684,750,778,1050,1052,1053,1054,1057,1058]]]]},{"k":"H6216","v":[["oppressor",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19457]]]]},{"k":"H6217","v":[["*",[4,3,[[17,1,1,0,1,[[470,1,1,0,1]]],[20,2,1,1,2,[[662,2,1,1,2]]],[29,1,1,2,3,[[881,1,1,2,3]]]],[13729,17382,22404]]],["oppressed",[2,2,[[20,1,1,0,1,[[662,1,1,0,1]]],[29,1,1,1,2,[[881,1,1,1,2]]]],[17382,22404]]],["oppressions",[2,2,[[17,1,1,0,1,[[470,1,1,0,1]]],[20,1,1,1,2,[[662,1,1,1,2]]]],[13729,17382]]]]},{"k":"H6218","v":[["*",[16,16,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[2,3,3,2,5,[[105,1,1,2,3],[112,1,1,3,4],[114,1,1,4,5]]],[3,1,1,5,6,[[145,1,1,5,6]]],[5,1,1,6,7,[[190,1,1,6,7]]],[11,1,1,7,8,[[337,1,1,7,8]]],[18,3,3,8,11,[[510,1,1,8,9],[569,1,1,9,10],[621,1,1,10,11]]],[23,2,2,11,13,[[796,2,2,11,13]]],[25,3,3,13,16,[[821,1,1,13,14],[825,1,1,14,15],[841,1,1,15,16]]]],[646,1819,3230,3429,3478,4615,5929,10223,14368,15414,16314,20280,20288,20896,21057,21478]]],["strings",[3,3,[[18,3,3,0,3,[[510,1,1,0,1],[569,1,1,1,2],[621,1,1,2,3]]]],[14368,15414,16314]]],["ten",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[646]]],["tenth",[12,12,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,3,3,1,4,[[105,1,1,1,2],[112,1,1,2,3],[114,1,1,3,4]]],[3,1,1,4,5,[[145,1,1,4,5]]],[5,1,1,5,6,[[190,1,1,5,6]]],[11,1,1,6,7,[[337,1,1,6,7]]],[23,2,2,7,9,[[796,2,2,7,9]]],[25,3,3,9,12,[[821,1,1,9,10],[825,1,1,10,11],[841,1,1,11,12]]]],[1819,3230,3429,3478,4615,5929,10223,20280,20288,20896,21057,21478]]]]},{"k":"H6219","v":[["bright",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21140]]]]},{"k":"H6220","v":[["Ashvath",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10568]]]]},{"k":"H6221","v":[["Asiel",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10420]]]]},{"k":"H6222","v":[["*",[8,8,[[11,2,2,0,2,[[334,2,2,0,2]]],[12,5,5,2,7,[[341,1,1,2,3],[343,1,1,3,4],[346,1,1,4,5],[352,2,2,5,7]]],[13,1,1,7,8,[[400,1,1,7,8]]]],[10157,10159,10421,10484,10620,10797,10802,11953]]],["Asahiah",[2,2,[[11,2,2,0,2,[[334,2,2,0,2]]]],[10157,10159]]],["Asaiah",[6,6,[[12,5,5,0,5,[[341,1,1,0,1],[343,1,1,1,2],[346,1,1,2,3],[352,2,2,3,5]]],[13,1,1,5,6,[[400,1,1,5,6]]]],[10421,10484,10620,10797,10802,11953]]]]},{"k":"H6223","v":[["*",[23,23,[[1,1,1,0,1,[[79,1,1,0,1]]],[7,1,1,1,2,[[234,1,1,1,2]]],[9,3,3,2,5,[[278,3,3,2,5]]],[17,1,1,5,6,[[462,1,1,5,6]]],[18,2,2,6,8,[[522,1,1,6,7],[526,1,1,7,8]]],[19,9,9,8,17,[[637,1,1,8,9],[641,1,1,9,10],[645,2,2,10,12],[649,3,3,12,15],[655,2,2,15,17]]],[20,3,3,17,20,[[663,1,1,17,18],[668,2,2,18,20]]],[22,1,1,20,21,[[731,1,1,20,21]]],[23,1,1,21,22,[[753,1,1,21,22]]],[32,1,1,22,23,[[898,1,1,22,23]]]],[2397,7182,8287,8288,8290,13500,14609,14650,16671,16792,16912,16924,17017,17022,17031,17202,17207,17409,17499,17513,18720,19198,22660]]],["man",[1,1,[[17,1,1,0,1,[[462,1,1,0,1]]]],[13500]]],["man's",[2,2,[[19,2,2,0,2,[[637,1,1,0,1],[645,1,1,1,2]]]],[16671,16912]]],["men",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22660]]],["rich",[19,19,[[1,1,1,0,1,[[79,1,1,0,1]]],[7,1,1,1,2,[[234,1,1,1,2]]],[9,3,3,2,5,[[278,3,3,2,5]]],[18,2,2,5,7,[[522,1,1,5,6],[526,1,1,6,7]]],[19,7,7,7,14,[[641,1,1,7,8],[645,1,1,8,9],[649,3,3,9,12],[655,2,2,12,14]]],[20,3,3,14,17,[[663,1,1,14,15],[668,2,2,15,17]]],[22,1,1,17,18,[[731,1,1,17,18]]],[23,1,1,18,19,[[753,1,1,18,19]]]],[2397,7182,8287,8288,8290,14609,14650,16792,16924,17017,17022,17031,17202,17207,17409,17499,17513,18720,19198]]]]},{"k":"H6224","v":[["*",[29,26,[[0,2,1,0,1,[[7,2,1,0,1]]],[1,1,1,1,2,[[65,1,1,1,2]]],[2,3,3,2,5,[[94,1,1,2,3],[95,1,1,3,4],[116,1,1,4,5]]],[3,3,3,5,8,[[121,1,1,5,6],[123,1,1,6,7],[144,1,1,7,8]]],[4,2,2,8,10,[[175,2,2,8,10]]],[11,1,1,10,11,[[337,1,1,10,11]]],[12,5,4,11,15,[[349,1,1,11,12],[361,1,1,12,13],[362,1,1,13,14],[364,2,1,14,15]]],[14,1,1,15,16,[[412,1,1,15,16]]],[16,1,1,16,17,[[427,1,1,16,17]]],[22,1,1,17,18,[[684,1,1,17,18]]],[23,3,3,18,21,[[776,1,1,18,19],[783,1,1,19,20],[796,1,1,20,21]]],[25,5,4,21,25,[[825,1,1,21,22],[830,2,1,22,23],[834,1,1,23,24],[846,1,1,24,25]]],[37,1,1,25,26,[[918,1,1,25,26]]]],[188,1983,2841,2869,3602,3807,3916,4582,5502,5503,10223,10733,11026,11063,11122,12268,12740,17782,19732,19924,20280,21057,21184,21301,21641,22995]]],["part",[3,3,[[2,2,2,0,2,[[94,1,1,0,1],[95,1,1,1,2]]],[25,1,1,2,3,[[846,1,1,2,3]]]],[2841,2869,21641]]],["tenth",[26,23,[[0,2,1,0,1,[[7,2,1,0,1]]],[1,1,1,1,2,[[65,1,1,1,2]]],[2,1,1,2,3,[[116,1,1,2,3]]],[3,3,3,3,6,[[121,1,1,3,4],[123,1,1,4,5],[144,1,1,5,6]]],[4,2,2,6,8,[[175,2,2,6,8]]],[11,1,1,8,9,[[337,1,1,8,9]]],[12,5,4,9,13,[[349,1,1,9,10],[361,1,1,10,11],[362,1,1,11,12],[364,2,1,12,13]]],[14,1,1,13,14,[[412,1,1,13,14]]],[16,1,1,14,15,[[427,1,1,14,15]]],[22,1,1,15,16,[[684,1,1,15,16]]],[23,3,3,16,19,[[776,1,1,16,17],[783,1,1,17,18],[796,1,1,18,19]]],[25,4,3,19,22,[[825,1,1,19,20],[830,2,1,20,21],[834,1,1,21,22]]],[37,1,1,22,23,[[918,1,1,22,23]]]],[188,1983,3602,3807,3916,4582,5502,5503,10223,10733,11026,11063,11122,12268,12740,17782,19732,19924,20280,21057,21184,21301,22995]]]]},{"k":"H6225","v":[["*",[6,6,[[1,1,1,0,1,[[68,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[18,4,4,2,6,[[551,1,1,2,3],[557,1,1,3,4],[581,1,1,4,5],[621,1,1,5,6]]]],[2044,5699,15049,15202,15603,16310]]],["angry",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15202]]],["smoke",[5,5,[[1,1,1,0,1,[[68,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[18,3,3,2,5,[[551,1,1,2,3],[581,1,1,3,4],[621,1,1,4,5]]]],[2044,5699,15049,15603,16310]]]]},{"k":"H6226","v":[["smoking",[2,2,[[1,1,1,0,1,[[69,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]]],[2069,17786]]]]},{"k":"H6227","v":[["*",[25,24,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,2,1,1,2,[[68,2,1,1,2]]],[5,2,2,2,4,[[194,2,2,2,4]]],[6,2,2,4,6,[[230,2,2,4,6]]],[9,1,1,6,7,[[288,1,1,6,7]]],[17,1,1,7,8,[[476,1,1,7,8]]],[18,4,4,8,12,[[495,1,1,8,9],[514,1,1,9,10],[545,1,1,10,11],[579,1,1,11,12]]],[19,1,1,12,13,[[637,1,1,12,13]]],[21,1,1,13,14,[[673,1,1,13,14]]],[22,7,7,14,21,[[682,1,1,14,15],[684,1,1,15,16],[687,1,1,16,17],[692,1,1,17,18],[712,1,1,18,19],[729,1,1,19,20],[743,1,1,20,21]]],[27,1,1,21,22,[[874,1,1,21,22]]],[28,1,1,22,23,[[877,1,1,22,23]]],[33,1,1,23,24,[[901,1,1,23,24]]]],[377,2044,6022,6023,7092,7094,8611,13908,14126,14470,14902,15524,16682,17577,17738,17773,17847,17959,18313,18679,18902,22269,22341,22712]]],["smoke",[24,23,[[1,2,1,0,1,[[68,2,1,0,1]]],[5,2,2,1,3,[[194,2,2,1,3]]],[6,2,2,3,5,[[230,2,2,3,5]]],[9,1,1,5,6,[[288,1,1,5,6]]],[17,1,1,6,7,[[476,1,1,6,7]]],[18,4,4,7,11,[[495,1,1,7,8],[514,1,1,8,9],[545,1,1,9,10],[579,1,1,10,11]]],[19,1,1,11,12,[[637,1,1,11,12]]],[21,1,1,12,13,[[673,1,1,12,13]]],[22,7,7,13,20,[[682,1,1,13,14],[684,1,1,14,15],[687,1,1,15,16],[692,1,1,16,17],[712,1,1,17,18],[729,1,1,18,19],[743,1,1,19,20]]],[27,1,1,20,21,[[874,1,1,20,21]]],[28,1,1,21,22,[[877,1,1,21,22]]],[33,1,1,22,23,[[901,1,1,22,23]]]],[2044,6022,6023,7092,7094,8611,13908,14126,14470,14902,15524,16682,17577,17738,17773,17847,17959,18313,18679,18902,22269,22341,22712]]],["smoking",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[377]]]]},{"k":"H6228","v":[["Ashan",[4,4,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]],[12,2,2,2,4,[[341,1,1,2,3],[343,1,1,3,4]]]],[6244,6328,10417,10513]]]]},{"k":"H6229","v":[["strove",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[712]]]]},{"k":"H6230","v":[["Esek",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[712]]]]},{"k":"H6231","v":[["*",[36,35,[[2,3,3,0,3,[[95,2,2,0,2],[108,1,1,2,3]]],[4,3,3,3,6,[[176,1,1,3,4],[180,2,2,4,6]]],[8,2,2,6,8,[[247,2,2,6,8]]],[12,1,1,8,9,[[353,1,1,8,9]]],[17,2,2,9,11,[[445,1,1,9,10],[475,1,1,10,11]]],[18,6,6,11,17,[[549,1,1,11,12],[580,1,1,12,13],[582,1,1,13,14],[596,2,2,14,16],[623,1,1,16,17]]],[19,4,4,17,21,[[641,1,1,17,18],[649,1,1,18,19],[655,2,2,19,21]]],[20,1,1,21,22,[[662,1,1,21,22]]],[22,2,2,22,24,[[701,1,1,22,23],[730,1,1,23,24]]],[23,3,3,24,27,[[751,1,1,24,25],[765,1,1,25,26],[794,1,1,26,27]]],[25,3,2,27,29,[[819,1,1,27,28],[823,2,1,28,29]]],[27,2,2,29,31,[[866,1,1,29,30],[873,1,1,30,31]]],[29,1,1,31,32,[[882,1,1,31,32]]],[32,1,1,32,33,[[894,1,1,32,33]]],[37,1,1,33,34,[[917,1,1,33,34]]],[38,1,1,34,35,[[927,1,1,34,35]]]],[2851,2853,3294,5539,5640,5644,7463,7464,10841,13089,13887,15004,15555,15620,16019,16020,16348,16803,17031,17199,17213,17382,18089,18700,19125,19452,20199,20867,21005,22163,22259,22411,22597,22972,23125]]],["+",[4,4,[[2,2,2,0,2,[[95,1,1,0,1],[108,1,1,1,2]]],[8,1,1,2,3,[[247,1,1,2,3]]],[25,1,1,3,4,[[819,1,1,3,4]]]],[2851,3294,7463,20867]]],["defrauded",[1,1,[[8,1,1,0,1,[[247,1,1,0,1]]]],[7464]]],["gotten",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2853]]],["oppress",[9,9,[[4,1,1,0,1,[[176,1,1,0,1]]],[17,1,1,1,2,[[445,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[23,1,1,3,4,[[751,1,1,3,4]]],[27,1,1,4,5,[[873,1,1,4,5]]],[29,1,1,5,6,[[882,1,1,5,6]]],[32,1,1,6,7,[[894,1,1,6,7]]],[37,1,1,7,8,[[917,1,1,7,8]]],[38,1,1,8,9,[[927,1,1,8,9]]]],[5539,13089,16020,19125,22259,22411,22597,22972,23125]]],["oppressed",[9,9,[[4,2,2,0,2,[[180,2,2,0,2]]],[18,2,2,2,4,[[580,1,1,2,3],[623,1,1,3,4]]],[22,2,2,4,6,[[701,1,1,4,5],[730,1,1,5,6]]],[23,1,1,6,7,[[794,1,1,6,7]]],[25,1,1,7,8,[[823,1,1,7,8]]],[27,1,1,8,9,[[866,1,1,8,9]]]],[5640,5644,15555,16348,18089,18700,20199,21005,22163]]],["oppresseth",[3,3,[[19,3,3,0,3,[[641,1,1,0,1],[649,1,1,1,2],[655,1,1,2,3]]]],[16803,17031,17199]]],["oppressor",[2,2,[[18,1,1,0,1,[[549,1,1,0,1]]],[23,1,1,1,2,[[765,1,1,1,2]]]],[15004,19452]]],["oppressors",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[20,1,1,1,2,[[662,1,1,1,2]]]],[16019,17382]]],["up",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13887]]],["used",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[21005]]],["violence",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17213]]],["wrong",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[10841,15620]]]]},{"k":"H6232","v":[["Eshek",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10614]]]]},{"k":"H6233","v":[["*",[15,15,[[2,1,1,0,1,[[95,1,1,0,1]]],[18,3,3,1,4,[[539,1,1,1,2],[550,1,1,2,3],[596,1,1,3,4]]],[20,2,2,4,6,[[663,1,1,4,5],[665,1,1,5,6]]],[22,3,3,6,9,[[708,1,1,6,7],[732,1,1,7,8],[737,1,1,8,9]]],[23,2,2,9,11,[[750,1,1,9,10],[766,1,1,10,11]]],[25,4,4,11,15,[[819,1,1,11,12],[823,3,3,12,15]]]],[2853,14837,15028,16032,17405,17436,18229,18737,18813,19095,19471,20867,20983,20988,21005]]],["+",[3,3,[[18,1,1,0,1,[[596,1,1,0,1]]],[22,1,1,1,2,[[732,1,1,1,2]]],[25,1,1,2,3,[[819,1,1,2,3]]]],[16032,18737,20867]]],["extortion",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[20988]]],["oppression",[10,10,[[18,2,2,0,2,[[539,1,1,0,1],[550,1,1,1,2]]],[20,2,2,2,4,[[663,1,1,2,3],[665,1,1,3,4]]],[22,2,2,4,6,[[708,1,1,4,5],[737,1,1,5,6]]],[23,2,2,6,8,[[750,1,1,6,7],[766,1,1,7,8]]],[25,2,2,8,10,[[823,2,2,8,10]]]],[14837,15028,17405,17436,18229,18813,19095,19471,20983,21005]]],["thing",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2853]]]]},{"k":"H6234","v":[["oppressed",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18404]]]]},{"k":"H6235","v":[["*",[174,155,[[0,15,12,0,12,[[4,1,1,0,1],[15,1,1,1,2],[17,2,1,2,3],[23,2,2,3,5],[30,2,2,5,7],[31,2,1,7,8],[41,1,1,8,9],[44,2,1,9,10],[49,2,2,10,12]]],[1,11,9,12,21,[[67,2,2,12,14],[75,2,2,14,16],[76,2,1,16,17],[83,1,1,17,18],[85,2,2,18,20],[87,2,1,20,21]]],[2,3,3,21,24,[[115,1,1,21,22],[116,2,2,22,24]]],[3,18,17,24,41,[[123,14,13,24,37],[127,2,2,37,39],[130,1,1,39,40],[145,1,1,40,41]]],[4,3,3,41,44,[[153,1,1,41,42],[156,1,1,42,43],[162,1,1,43,44]]],[5,6,6,44,50,[[201,1,1,44,45],[203,1,1,45,46],[207,2,2,46,48],[208,1,1,48,49],[210,1,1,49,50]]],[6,12,12,50,62,[[211,1,1,50,51],[212,1,1,51,52],[213,1,1,52,53],[214,3,3,53,56],[216,1,1,56,57],[217,1,1,57,58],[222,1,1,58,59],[227,1,1,59,60],[230,2,2,60,62]]],[7,2,2,62,64,[[232,1,1,62,63],[235,1,1,63,64]]],[8,6,6,64,70,[[236,1,1,64,65],[250,1,1,65,66],[252,2,2,66,68],[260,2,2,68,70]]],[9,6,6,70,76,[[281,1,1,70,71],[284,3,3,71,74],[285,1,1,74,75],[286,1,1,75,76]]],[10,20,17,76,93,[[294,1,1,76,77],[295,1,1,77,78],[296,5,5,78,83],[297,9,7,83,90],[301,3,2,90,92],[304,1,1,92,93]]],[11,13,9,93,102,[[317,2,1,93,94],[325,2,1,94,95],[326,1,1,95,96],[327,1,1,96,97],[332,5,3,97,100],[336,1,1,100,101],[337,1,1,101,102]]],[12,2,2,102,104,[[343,1,1,102,103],[366,1,1,103,104]]],[13,13,12,104,116,[[370,6,6,104,110],[380,1,1,110,111],[391,2,2,111,113],[393,2,1,113,114],[396,1,1,114,115],[402,1,1,115,116]]],[14,3,3,116,119,[[403,1,1,116,117],[410,2,2,117,119]]],[15,3,3,119,122,[[416,1,1,119,120],[417,1,1,120,121],[423,1,1,121,122]]],[16,5,5,122,127,[[428,1,1,122,123],[434,4,4,123,127]]],[17,1,1,127,128,[[454,1,1,127,128]]],[20,1,1,128,129,[[665,1,1,128,129]]],[22,3,2,129,131,[[683,1,1,129,130],[716,2,1,130,131]]],[23,4,4,131,135,[[785,3,3,131,134],[786,1,1,134,135]]],[25,15,11,135,146,[[841,1,1,135,136],[842,1,1,136,137],[843,1,1,137,138],[846,5,4,138,142],[849,7,4,142,146]]],[26,4,4,146,150,[[850,4,4,146,150]]],[29,2,2,150,152,[[883,1,1,150,151],[884,1,1,151,152]]],[36,1,1,152,153,[[910,1,1,152,153]]],[37,2,2,153,155,[[915,1,1,153,154],[918,1,1,154,155]]]],[119,384,456,601,613,880,914,943,1255,1381,1528,1532,2020,2024,2236,2251,2284,2524,2574,2587,2645,3550,3575,3577,3864,3870,3876,3882,3888,3894,3900,3906,3912,3918,3924,3930,3936,4043,4056,4130,4631,4907,5017,5190,6259,6280,6386,6407,6440,6505,6513,6553,6597,6605,6609,6613,6681,6697,6880,6990,7064,7088,7131,7192,7220,7564,7635,7636,7866,7899,8405,8481,8489,8493,8554,8557,8867,8892,8899,8919,8920,8921,8922,8944,8957,8958,8961,8971,8972,8977,9139,9143,9221,9652,9878,9903,9942,10107,10108,10109,10216,10247,10515,11171,11247,11248,11249,11252,11253,11254,11476,11715,11716,11760,11851,12002,12026,12213,12225,12371,12400,12589,12756,12844,12846,12847,12848,13300,17448,17749,18398,19958,19959,19965,19982,21488,21528,21556,21631,21633,21635,21644,21711,21712,21715,21720,21749,21751,21752,21757,22426,22459,22871,22938,22999]]],["+",[5,4,[[0,1,1,0,1,[[17,1,1,0,1]]],[3,2,1,1,2,[[123,2,1,1,2]]],[8,1,1,2,3,[[236,1,1,2,3]]],[20,1,1,3,4,[[665,1,1,3,4]]]],[456,3936,7220,17448]]],["Ten",[2,2,[[1,1,1,0,1,[[75,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]]],[2251,8867]]],["ten",[164,147,[[0,14,12,0,12,[[4,1,1,0,1],[15,1,1,1,2],[17,1,1,2,3],[23,2,2,3,5],[30,2,2,5,7],[31,2,1,7,8],[41,1,1,8,9],[44,2,1,9,10],[49,2,2,10,12]]],[1,8,6,12,18,[[75,1,1,12,13],[76,2,1,13,14],[83,1,1,14,15],[85,2,2,15,17],[87,2,1,17,18]]],[2,3,3,18,21,[[115,1,1,18,19],[116,2,2,19,21]]],[3,16,16,21,37,[[123,12,12,21,33],[127,2,2,33,35],[130,1,1,35,36],[145,1,1,36,37]]],[4,2,2,37,39,[[156,1,1,37,38],[162,1,1,38,39]]],[5,6,6,39,45,[[201,1,1,39,40],[203,1,1,40,41],[207,2,2,41,43],[208,1,1,43,44],[210,1,1,44,45]]],[6,12,12,45,57,[[211,1,1,45,46],[212,1,1,46,47],[213,1,1,47,48],[214,3,3,48,51],[216,1,1,51,52],[217,1,1,52,53],[222,1,1,53,54],[227,1,1,54,55],[230,2,2,55,57]]],[7,2,2,57,59,[[232,1,1,57,58],[235,1,1,58,59]]],[8,5,5,59,64,[[250,1,1,59,60],[252,2,2,60,62],[260,2,2,62,64]]],[9,6,6,64,70,[[281,1,1,64,65],[284,3,3,65,68],[285,1,1,68,69],[286,1,1,69,70]]],[10,19,16,70,86,[[295,1,1,70,71],[296,5,5,71,76],[297,9,7,76,83],[301,3,2,83,85],[304,1,1,85,86]]],[11,13,9,86,95,[[317,2,1,86,87],[325,2,1,87,88],[326,1,1,88,89],[327,1,1,89,90],[332,5,3,90,93],[336,1,1,93,94],[337,1,1,94,95]]],[12,2,2,95,97,[[343,1,1,95,96],[366,1,1,96,97]]],[13,13,12,97,109,[[370,6,6,97,103],[380,1,1,103,104],[391,2,2,104,106],[393,2,1,106,107],[396,1,1,107,108],[402,1,1,108,109]]],[14,3,3,109,112,[[403,1,1,109,110],[410,2,2,110,112]]],[15,3,3,112,115,[[416,1,1,112,113],[417,1,1,113,114],[423,1,1,114,115]]],[16,5,5,115,120,[[428,1,1,115,116],[434,4,4,116,120]]],[17,1,1,120,121,[[454,1,1,120,121]]],[22,3,2,121,123,[[683,1,1,121,122],[716,2,1,122,123]]],[23,4,4,123,127,[[785,3,3,123,126],[786,1,1,126,127]]],[25,15,11,127,138,[[841,1,1,127,128],[842,1,1,128,129],[843,1,1,129,130],[846,5,4,130,134],[849,7,4,134,138]]],[26,4,4,138,142,[[850,4,4,138,142]]],[29,2,2,142,144,[[883,1,1,142,143],[884,1,1,143,144]]],[36,1,1,144,145,[[910,1,1,144,145]]],[37,2,2,145,147,[[915,1,1,145,146],[918,1,1,146,147]]]],[119,384,456,601,613,880,914,943,1255,1381,1528,1532,2236,2284,2524,2574,2587,2645,3550,3575,3577,3864,3870,3876,3882,3888,3894,3900,3906,3912,3918,3924,3930,4043,4056,4130,4631,5017,5190,6259,6280,6386,6407,6440,6505,6513,6553,6597,6605,6609,6613,6681,6697,6880,6990,7064,7088,7131,7192,7564,7635,7636,7866,7899,8405,8481,8489,8493,8554,8557,8892,8899,8919,8920,8921,8922,8944,8957,8958,8961,8971,8972,8977,9139,9143,9221,9652,9878,9903,9942,10107,10108,10109,10216,10247,10515,11171,11247,11248,11249,11252,11253,11254,11476,11715,11716,11760,11851,12002,12026,12213,12225,12371,12400,12589,12756,12844,12846,12847,12848,13300,17749,18398,19958,19959,19965,19982,21488,21528,21556,21631,21633,21635,21644,21711,21712,21715,21720,21749,21751,21752,21757,22426,22459,22871,22938,22999]]],["tens",[3,3,[[1,2,2,0,2,[[67,2,2,0,2]]],[4,1,1,2,3,[[153,1,1,2,3]]]],[2020,2024,4907]]]]},{"k":"H6236","v":[["*",[6,5,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,5,4,1,5,[[853,1,1,1,2],[856,4,3,2,5]]]],[12168,21866,21940,21953,21957]]],["+",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[12168,21866]]],["ten",[4,3,[[26,4,3,0,3,[[856,4,3,0,3]]]],[21940,21953,21957]]]]},{"k":"H6237","v":[["*",[9,7,[[0,2,1,0,1,[[27,2,1,0,1]]],[4,3,2,1,3,[[166,2,1,1,2],[178,1,1,2,3]]],[8,2,2,3,5,[[243,2,2,3,5]]],[15,2,2,5,7,[[422,2,2,5,7]]]],[795,5312,5578,7384,7386,12586,12587]]],["+",[5,3,[[0,2,1,0,1,[[27,2,1,0,1]]],[4,3,2,1,3,[[166,2,1,1,2],[178,1,1,2,3]]]],[795,5312,5578]]],["tenth",[2,2,[[8,2,2,0,2,[[243,2,2,0,2]]]],[7384,7386]]],["tithes",[2,2,[[15,2,2,0,2,[[422,2,2,0,2]]]],[12586,12587]]]]},{"k":"H6238","v":[["*",[17,17,[[0,1,1,0,1,[[13,1,1,0,1]]],[8,2,2,1,3,[[237,1,1,1,2],[252,1,1,2,3]]],[17,1,1,3,4,[[450,1,1,3,4]]],[18,2,2,4,6,[[526,1,1,4,5],[542,1,1,5,6]]],[19,6,6,6,12,[[637,2,2,6,8],[640,1,1,8,9],[648,1,1,9,10],[650,1,1,10,11],[655,1,1,11,12]]],[23,1,1,12,13,[[749,1,1,12,13]]],[25,1,1,13,14,[[828,1,1,13,14]]],[26,1,1,14,15,[[860,1,1,14,15]]],[27,1,1,15,16,[[873,1,1,15,16]]],[37,1,1,16,17,[[921,1,1,16,17]]]],[359,7247,7643,13232,14664,14869,16660,16678,16754,17001,17048,17216,19085,21154,22038,22260,23033]]],["+",[2,2,[[0,1,1,0,1,[[13,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[359,22038]]],["enrich",[2,2,[[8,1,1,0,1,[[252,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[7643,21154]]],["enrichest",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14869]]],["rich",[12,12,[[8,1,1,0,1,[[237,1,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]],[18,1,1,2,3,[[526,1,1,2,3]]],[19,6,6,3,9,[[637,2,2,3,5],[640,1,1,5,6],[648,1,1,6,7],[650,1,1,7,8],[655,1,1,8,9]]],[23,1,1,9,10,[[749,1,1,9,10]]],[27,1,1,10,11,[[873,1,1,10,11]]],[37,1,1,11,12,[[921,1,1,11,12]]]],[7247,13232,14664,16660,16678,16754,17001,17048,17216,19085,22260,23033]]]]},{"k":"H6239","v":[["*",[37,36,[[0,1,1,0,1,[[30,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[10,3,3,2,5,[[293,2,2,2,4],[300,1,1,4,5]]],[12,2,2,5,7,[[366,2,2,5,7]]],[13,6,6,7,13,[[367,2,2,7,9],[375,1,1,9,10],[383,1,1,10,11],[384,1,1,11,12],[398,1,1,12,13]]],[16,2,2,13,15,[[426,1,1,13,14],[430,1,1,14,15]]],[18,3,3,15,18,[[526,1,1,15,16],[529,1,1,16,17],[589,1,1,17,18]]],[19,9,9,18,27,[[630,1,1,18,19],[635,1,1,19,20],[638,2,2,20,22],[640,1,1,22,23],[641,1,1,23,24],[649,2,2,24,26],[657,1,1,26,27]]],[20,6,6,27,33,[[662,1,1,27,28],[663,3,3,28,31],[664,1,1,31,32],[667,1,1,32,33]]],[23,2,2,33,35,[[753,1,1,33,34],[761,1,1,34,35]]],[26,2,1,35,36,[[860,2,1,35,36]]]],[889,7643,8827,8829,9102,11176,11192,11205,11206,11386,11528,11543,11902,12706,12790,14654,14717,15806,16471,16620,16704,16716,16755,16796,17016,17019,17259,17389,17410,17411,17416,17419,17486,19198,19368,22038]]],["+",[2,2,[[19,1,1,0,1,[[649,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[17016,22038]]],["Riches",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16620]]],["riches",[34,34,[[0,1,1,0,1,[[30,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[10,3,3,2,5,[[293,2,2,2,4],[300,1,1,4,5]]],[12,2,2,5,7,[[366,2,2,5,7]]],[13,6,6,7,13,[[367,2,2,7,9],[375,1,1,9,10],[383,1,1,10,11],[384,1,1,11,12],[398,1,1,12,13]]],[16,2,2,13,15,[[426,1,1,13,14],[430,1,1,14,15]]],[18,3,3,15,18,[[526,1,1,15,16],[529,1,1,16,17],[589,1,1,17,18]]],[19,7,7,18,25,[[630,1,1,18,19],[638,2,2,19,21],[640,1,1,21,22],[641,1,1,22,23],[649,1,1,23,24],[657,1,1,24,25]]],[20,6,6,25,31,[[662,1,1,25,26],[663,3,3,26,29],[664,1,1,29,30],[667,1,1,30,31]]],[23,2,2,31,33,[[753,1,1,31,32],[761,1,1,32,33]]],[26,1,1,33,34,[[860,1,1,33,34]]]],[889,7643,8827,8829,9102,11176,11192,11205,11206,11386,11528,11543,11902,12706,12790,14654,14717,15806,16471,16704,16716,16755,16796,17019,17259,17389,17410,17411,17416,17419,17486,19198,19368,22038]]]]},{"k":"H6240","v":[["+",[338,292,[[0,24,23,0,23,[[4,2,2,0,2],[6,2,2,2,4],[7,1,1,4,5],[10,1,1,5,6],[13,4,3,6,9],[16,2,2,9,11],[24,1,1,11,12],[30,1,1,12,13],[31,1,1,13,14],[34,1,1,14,15],[36,2,2,15,17],[41,2,2,17,19],[45,2,2,19,21],[46,1,1,21,22],[48,1,1,22,23]]],[1,20,17,23,40,[[61,2,2,23,25],[64,1,1,25,26],[65,1,1,26,27],[73,2,1,27,28],[75,3,3,28,31],[76,2,2,31,33],[77,2,1,33,34],[85,3,3,34,37],[87,2,2,37,39],[88,2,1,39,40]]],[2,6,6,40,46,[[112,4,4,40,44],[113,1,1,44,45],[116,1,1,45,46]]],[3,39,31,46,77,[[117,1,1,46,47],[123,11,6,47,53],[125,3,3,53,56],[132,1,1,56,57],[133,2,2,57,59],[144,2,2,59,61],[145,13,10,61,71],[147,4,4,71,75],[149,2,2,75,77]]],[4,3,3,77,80,[[153,3,3,77,80]]],[5,24,24,80,104,[[189,1,1,80,81],[190,6,6,81,87],[191,1,1,87,88],[194,1,1,88,89],[201,3,3,89,92],[204,2,2,92,94],[205,4,4,94,98],[207,6,6,98,104]]],[6,7,7,104,111,[[213,1,1,104,105],[218,1,1,105,106],[220,1,1,106,107],[229,1,1,107,108],[230,2,2,108,110],[231,1,1,110,111]]],[9,8,7,111,118,[[268,3,2,111,113],[274,1,1,113,114],[275,1,1,114,115],[276,1,1,115,116],[283,1,1,116,117],[285,1,1,117,118]]],[10,22,20,118,138,[[294,2,2,118,120],[296,1,1,120,121],[297,6,5,121,126],[298,1,1,126,127],[300,2,2,127,129],[301,1,1,129,130],[302,2,2,130,132],[304,1,1,132,133],[305,1,1,133,134],[306,1,1,134,135],[308,1,1,135,136],[309,2,1,136,137],[312,1,1,137,138]]],[11,26,25,138,163,[[315,2,1,138,139],[320,1,1,139,140],[321,1,1,140,141],[325,2,2,141,143],[326,3,3,143,146],[327,2,2,146,148],[328,2,2,148,150],[329,1,1,150,151],[330,1,1,151,152],[332,1,1,152,153],[333,1,1,153,154],[334,1,1,154,155],[335,2,2,155,157],[336,2,2,157,159],[337,4,4,159,163]]],[12,59,44,163,207,[[341,1,1,163,164],[343,3,3,164,167],[344,1,1,167,168],[346,1,1,168,169],[349,2,2,169,171],[352,1,1,171,172],[355,1,1,172,173],[361,10,6,173,179],[362,33,24,179,203],[363,2,2,203,205],[364,4,2,205,207]]],[13,26,25,207,232,[[367,1,1,207,208],[370,2,2,208,210],[375,2,2,210,212],[377,1,1,212,213],[378,1,1,213,214],[379,3,2,214,216],[381,1,1,216,217],[391,1,1,217,218],[392,2,2,218,220],[393,2,2,220,222],[394,1,1,222,223],[395,1,1,223,224],[396,1,1,224,225],[399,1,1,225,226],[400,2,2,226,228],[401,2,2,228,230],[402,2,2,230,232]]],[14,10,9,232,241,[[404,3,3,232,235],[408,1,1,235,236],[410,6,5,236,241]]],[15,4,4,241,245,[[417,1,1,241,242],[419,3,3,242,245]]],[16,19,11,245,256,[[427,1,1,245,246],[428,5,3,246,249],[433,2,1,249,250],[434,11,6,250,256]]],[17,1,1,256,257,[[477,1,1,256,257]]],[22,2,2,257,259,[[714,1,1,257,258],[716,1,1,258,259]]],[23,14,13,259,272,[[745,2,2,259,261],[769,1,1,261,262],[776,2,2,262,264],[783,1,1,264,265],[796,8,7,265,272]]],[25,21,17,272,289,[[827,1,1,272,273],[830,1,1,273,274],[831,1,1,274,275],[832,1,1,275,276],[833,4,2,276,278],[834,1,1,278,279],[841,3,3,279,282],[844,4,2,282,284],[846,3,3,284,287],[848,1,1,287,288],[849,1,1,288,289]]],[27,1,1,289,290,[[864,1,1,289,290]]],[31,1,1,290,291,[[892,1,1,290,291]]],[37,1,1,291,292,[[911,1,1,291,292]]]],[113,115,170,179,187,291,340,341,350,417,422,674,914,950,1033,1085,1092,1265,1284,1404,1408,1448,1501,1822,1834,1947,1948,2181,2242,2243,2260,2286,2287,2314,2580,2581,2596,2647,2648,2678,3407,3408,3436,3441,3451,3577,3648,3853,3922,3928,3934,3936,3937,3968,3970,3976,4243,4246,4250,4593,4594,4620,4621,4622,4623,4625,4628,4631,4634,4637,4640,4669,4704,4710,4716,4763,4769,4894,4895,4915,5905,5912,5913,5914,5918,5919,5930,5944,6027,6238,6243,6253,6317,6321,6327,6336,6343,6359,6385,6387,6388,6400,6414,6421,6582,6729,6819,7053,7079,7098,7112,8064,8079,8222,8237,8246,8450,8528,8851,8870,8934,8935,8937,8949,8959,8978,9050,9099,9105,9138,9183,9184,9239,9250,9306,9372,9406,9531,9577,9752,9785,9872,9881,9913,9917,9919,9927,9958,9964,9965,9984,10037,10104,10120,10148,10188,10201,10210,10220,10224,10230,10239,10249,10412,10514,10516,10517,10546,10637,10733,10751,10801,10902,11019,11027,11028,11029,11030,11031,11051,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11086,11088,11123,11124,11208,11250,11261,11383,11389,11435,11450,11454,11474,11500,11729,11733,11735,11756,11763,11765,11808,11842,11909,11936,11941,11967,11985,11998,12004,12033,12045,12066,12170,12210,12219,12225,12232,12236,12396,12431,12444,12462,12736,12754,12759,12760,12829,12835,12849,12851,12852,12853,12855,13934,18331,18395,18948,18949,19537,19732,19740,19925,20277,20281,20288,20296,20297,20305,20307,21101,21184,21224,21231,21249,21265,21301,21478,21488,21526,21588,21589,21642,21651,21655,21692,21737,22130,22579,22885]]]]},{"k":"H6241","v":[["*",[33,22,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,5,5,1,6,[[103,2,2,1,3],[112,2,2,3,5],[113,1,1,5,6]]],[3,27,16,6,22,[[131,3,3,6,9],[144,13,7,9,16],[145,11,6,16,22]]]],[2376,3121,3132,3415,3419,3451,4157,4159,4162,4586,4589,4590,4597,4598,4605,4606,4611,4612,4617,4618,4622,4623]]],["+",[10,5,[[3,10,5,0,5,[[144,6,3,0,3],[145,4,2,3,5]]]],[4590,4598,4606,4618,4623]]],["deal",[4,4,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,1,1,1,2,[[103,1,1,1,2]]],[3,2,2,2,4,[[131,1,1,2,3],[145,1,1,3,4]]]],[2376,3132,4157,4612]]],["deals",[19,13,[[2,4,4,0,4,[[103,1,1,0,1],[112,2,2,1,3],[113,1,1,3,4]]],[3,15,9,4,13,[[131,2,2,4,6],[144,7,4,6,10],[145,6,3,10,13]]]],[3121,3415,3419,3451,4159,4162,4586,4589,4597,4605,4611,4617,4622]]]]},{"k":"H6242","v":[["*",[315,281,[[0,12,10,0,10,[[5,1,1,0,1],[7,1,1,1,2],[10,1,1,2,3],[17,2,1,3,4],[22,1,1,4,5],[30,2,2,5,7],[31,3,2,7,9],[36,1,1,9,10]]],[1,23,19,10,29,[[61,1,1,10,11],[75,4,4,11,15],[76,5,3,15,18],[79,2,2,18,20],[85,4,4,20,24],[87,7,5,24,29]]],[2,4,3,29,32,[[116,4,3,29,32]]],[3,32,32,32,64,[[117,15,15,32,47],[119,3,3,47,50],[123,2,2,50,52],[124,1,1,52,53],[126,1,1,53,54],[127,1,1,54,55],[130,1,1,55,56],[134,1,1,56,57],[141,1,1,57,58],[142,4,4,58,62],[148,1,1,62,63],[149,1,1,63,64]]],[4,2,2,64,66,[[183,1,1,64,65],[186,1,1,65,66]]],[5,2,2,66,68,[[201,1,1,66,67],[205,1,1,67,68]]],[6,12,12,68,80,[[214,1,1,68,69],[217,1,1,69,70],[218,1,1,70,71],[220,2,2,71,73],[221,1,1,73,74],[225,1,1,74,75],[226,1,1,75,76],[230,4,4,76,80]]],[8,2,2,80,82,[[242,1,1,80,81],[249,1,1,81,82]]],[9,9,9,82,91,[[269,1,1,82,83],[274,2,2,83,85],[275,1,1,85,86],[276,1,1,86,87],[284,1,1,87,88],[285,1,1,88,89],[287,1,1,89,90],[290,1,1,90,91]]],[10,25,21,91,112,[[294,1,1,91,92],[295,2,1,92,93],[296,6,4,93,97],[298,2,1,97,98],[299,4,4,98,102],[300,1,1,102,103],[304,1,1,103,104],[305,2,2,104,106],[306,4,4,106,110],[310,1,1,110,111],[312,1,1,111,112]]],[11,19,17,112,129,[[316,1,1,112,113],[320,1,1,113,114],[322,1,1,114,115],[324,1,1,115,116],[325,1,1,116,117],[326,2,1,117,118],[327,4,4,118,122],[328,1,1,122,123],[330,2,1,123,124],[333,1,1,124,125],[335,2,2,125,127],[336,1,1,127,128],[337,1,1,128,129]]],[12,41,39,129,168,[[339,1,1,129,130],[344,4,4,130,134],[349,4,4,134,138],[352,2,2,138,140],[355,2,2,140,142],[357,1,1,142,143],[360,3,3,143,146],[361,5,3,146,149],[362,5,5,149,154],[364,14,14,154,168]]],[13,36,27,168,195,[[368,4,1,168,169],[369,7,5,169,174],[370,2,1,174,175],[371,1,1,175,176],[373,3,2,176,178],[374,1,1,178,179],[375,1,1,179,180],[377,1,1,180,181],[379,1,1,181,182],[386,1,1,182,183],[391,3,2,183,185],[393,2,2,185,187],[394,2,2,187,189],[395,2,1,189,190],[397,1,1,190,191],[399,1,1,191,192],[402,3,3,192,195]]],[14,20,20,195,215,[[403,1,1,195,196],[404,13,13,196,209],[405,1,1,209,210],[410,4,4,210,214],[412,1,1,214,215]]],[15,19,19,215,234,[[413,1,1,215,216],[414,1,1,216,217],[417,1,1,217,218],[418,1,1,218,219],[419,11,11,219,230],[421,1,1,230,231],[423,3,3,231,234]]],[16,4,3,234,237,[[426,1,1,234,235],[433,2,1,235,236],[434,1,1,236,237]]],[23,5,5,237,242,[[769,1,1,237,238],[796,4,4,238,242]]],[25,37,29,242,271,[[805,1,1,242,243],[809,1,1,243,244],[812,1,1,244,245],[830,1,1,245,246],[841,9,9,246,255],[842,4,3,255,258],[843,1,1,258,259],[846,8,5,259,264],[849,11,7,264,271]]],[26,2,2,271,273,[[859,2,2,271,273]]],[36,7,6,273,279,[[909,1,1,273,274],[910,6,5,274,279]]],[37,2,2,279,281,[[911,1,1,279,280],[915,1,1,280,281]]]],[140,197,290,455,572,911,914,942,943,1111,1834,2237,2253,2254,2255,2282,2283,2288,2395,2396,2575,2589,2590,2591,2643,2644,2651,2657,2659,3573,3575,3595,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3731,3735,3739,3936,3938,3963,3999,4043,4137,4273,4480,4491,4493,4503,4551,4729,4799,5730,5846,6234,6351,6602,6697,6729,6813,6814,6862,6949,6980,7069,7075,7089,7100,7354,7522,8101,8213,8214,8237,8246,8485,8528,8600,8700,8867,8889,8898,8899,8912,8916,9048,9061,9062,9065,9079,9089,9238,9258,9282,9291,9293,9298,9312,9438,9522,9645,9753,9829,9856,9872,9898,9926,9952,9955,9958,9965,10026,10138,10196,10201,10220,10249,10328,10537,10542,10544,10575,10748,10750,10755,10757,10796,10797,10894,10895,10932,10987,11007,11010,11031,11032,11033,11073,11074,11075,11076,11077,11110,11111,11113,11114,11116,11117,11118,11119,11120,11121,11122,11123,11124,11132,11221,11232,11233,11237,11240,11242,11247,11280,11329,11334,11347,11373,11435,11474,11618,11705,11709,11756,11763,11765,11770,11792,11871,11929,11995,11998,12004,12025,12038,12039,12044,12046,12048,12050,12053,12054,12055,12059,12060,12068,12094,12105,12212,12220,12221,12228,12261,12297,12308,12396,12416,12436,12437,12442,12443,12447,12450,12451,12452,12455,12457,12489,12512,12596,12600,12602,12703,12826,12864,19537,20277,20304,20306,20307,20539,20620,20656,21200,21478,21490,21498,21502,21506,21507,21510,21513,21526,21528,21530,21536,21555,21631,21633,21635,21636,21642,21710,21711,21712,21715,21717,21722,21723,22019,22028,22855,22856,22865,22871,22873,22875,22885,22938]]],["+",[7,7,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[87,1,1,1,2]]],[2,1,1,2,3,[[116,1,1,2,3]]],[10,1,1,3,4,[[299,1,1,3,4]]],[12,2,2,4,6,[[360,1,1,4,5],[364,1,1,5,6]]],[14,1,1,6,7,[[405,1,1,6,7]]]],[455,2659,3573,9065,11010,11132,12105]]],["Twenty",[2,2,[[11,2,2,0,2,[[328,1,1,0,1],[330,1,1,1,2]]]],[9965,10026]]],["twentieth",[36,34,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[3,1,1,2,3,[[126,1,1,2,3]]],[10,1,1,3,4,[[305,1,1,3,4]]],[11,4,4,4,8,[[324,1,1,4,5],[325,1,1,5,6],[327,1,1,6,7],[337,1,1,7,8]]],[12,10,8,8,16,[[361,5,3,8,11],[362,5,5,11,16]]],[13,1,1,16,17,[[373,1,1,16,17]]],[14,1,1,17,18,[[412,1,1,17,18]]],[15,3,3,18,21,[[413,1,1,18,19],[414,1,1,19,20],[417,1,1,20,21]]],[16,1,1,21,22,[[433,1,1,21,22]]],[23,3,3,22,25,[[769,1,1,22,23],[796,2,2,23,25]]],[25,2,2,25,27,[[830,1,1,25,26],[841,1,1,26,27]]],[26,1,1,27,28,[[859,1,1,27,28]]],[36,5,5,28,33,[[909,1,1,28,29],[910,4,4,29,33]]],[37,1,1,33,34,[[911,1,1,33,34]]]],[197,1834,3999,9258,9856,9872,9955,10249,11031,11032,11033,11073,11074,11075,11076,11077,11334,12261,12297,12308,12396,12826,19537,20306,20307,21200,21478,22019,22855,22856,22865,22873,22875,22885]]],["twenty",[270,241,[[0,10,9,0,9,[[5,1,1,0,1],[10,1,1,1,2],[17,1,1,2,3],[22,1,1,3,4],[30,2,2,4,6],[31,3,2,6,8],[36,1,1,8,9]]],[1,21,17,9,26,[[75,4,4,9,13],[76,5,3,13,16],[79,2,2,16,18],[85,4,4,18,22],[87,6,4,22,26]]],[2,3,2,26,28,[[116,3,2,26,28]]],[3,31,31,28,59,[[117,15,15,28,43],[119,3,3,43,46],[123,2,2,46,48],[124,1,1,48,49],[127,1,1,49,50],[130,1,1,50,51],[134,1,1,51,52],[141,1,1,52,53],[142,4,4,53,57],[148,1,1,57,58],[149,1,1,58,59]]],[4,2,2,59,61,[[183,1,1,59,60],[186,1,1,60,61]]],[5,2,2,61,63,[[201,1,1,61,62],[205,1,1,62,63]]],[6,12,12,63,75,[[214,1,1,63,64],[217,1,1,64,65],[218,1,1,65,66],[220,2,2,66,68],[221,1,1,68,69],[225,1,1,69,70],[226,1,1,70,71],[230,4,4,71,75]]],[8,2,2,75,77,[[242,1,1,75,76],[249,1,1,76,77]]],[9,9,9,77,86,[[269,1,1,77,78],[274,2,2,78,80],[275,1,1,80,81],[276,1,1,81,82],[284,1,1,82,83],[285,1,1,83,84],[287,1,1,84,85],[290,1,1,85,86]]],[10,23,19,86,105,[[294,1,1,86,87],[295,2,1,87,88],[296,6,4,88,92],[298,2,1,92,93],[299,3,3,93,96],[300,1,1,96,97],[304,1,1,97,98],[305,1,1,98,99],[306,4,4,99,103],[310,1,1,103,104],[312,1,1,104,105]]],[11,13,12,105,117,[[316,1,1,105,106],[320,1,1,106,107],[322,1,1,107,108],[326,2,1,108,109],[327,3,3,109,112],[330,1,1,112,113],[333,1,1,113,114],[335,2,2,114,116],[336,1,1,116,117]]],[12,29,29,117,146,[[339,1,1,117,118],[344,4,4,118,122],[349,4,4,122,126],[352,2,2,126,128],[355,2,2,128,130],[357,1,1,130,131],[360,2,2,131,133],[364,13,13,133,146]]],[13,35,26,146,172,[[368,4,1,146,147],[369,7,5,147,152],[370,2,1,152,153],[371,1,1,153,154],[373,2,1,154,155],[374,1,1,155,156],[375,1,1,156,157],[377,1,1,157,158],[379,1,1,158,159],[386,1,1,159,160],[391,3,2,160,162],[393,2,2,162,164],[394,2,2,164,166],[395,2,1,166,167],[397,1,1,167,168],[399,1,1,168,169],[402,3,3,169,172]]],[14,18,18,172,190,[[403,1,1,172,173],[404,13,13,173,186],[410,4,4,186,190]]],[15,16,16,190,206,[[418,1,1,190,191],[419,11,11,191,202],[421,1,1,202,203],[423,3,3,203,206]]],[16,3,3,206,209,[[426,1,1,206,207],[433,1,1,207,208],[434,1,1,208,209]]],[23,2,2,209,211,[[796,2,2,209,211]]],[25,35,27,211,238,[[805,1,1,211,212],[809,1,1,212,213],[812,1,1,213,214],[841,8,8,214,222],[842,4,3,222,225],[843,1,1,225,226],[846,8,5,226,231],[849,11,7,231,238]]],[26,1,1,238,239,[[859,1,1,238,239]]],[36,2,1,239,240,[[910,2,1,239,240]]],[37,1,1,240,241,[[915,1,1,240,241]]]],[140,290,455,572,911,914,942,943,1111,2237,2253,2254,2255,2282,2283,2288,2395,2396,2575,2589,2590,2591,2643,2644,2651,2657,3575,3595,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3731,3735,3739,3936,3938,3963,4043,4137,4273,4480,4491,4493,4503,4551,4729,4799,5730,5846,6234,6351,6602,6697,6729,6813,6814,6862,6949,6980,7069,7075,7089,7100,7354,7522,8101,8213,8214,8237,8246,8485,8528,8600,8700,8867,8889,8898,8899,8912,8916,9048,9061,9062,9079,9089,9238,9282,9291,9293,9298,9312,9438,9522,9645,9753,9829,9898,9926,9952,9958,10026,10138,10196,10201,10220,10328,10537,10542,10544,10575,10748,10750,10755,10757,10796,10797,10894,10895,10932,10987,11007,11110,11111,11113,11114,11116,11117,11118,11119,11120,11121,11122,11123,11124,11221,11232,11233,11237,11240,11242,11247,11280,11329,11347,11373,11435,11474,11618,11705,11709,11756,11763,11765,11770,11792,11871,11929,11995,11998,12004,12025,12038,12039,12044,12046,12048,12050,12053,12054,12055,12059,12060,12068,12094,12212,12220,12221,12228,12416,12436,12437,12442,12443,12447,12450,12451,12452,12455,12457,12489,12512,12596,12600,12602,12703,12826,12864,20277,20304,20539,20620,20656,21490,21498,21502,21506,21507,21510,21513,21526,21528,21530,21536,21555,21631,21633,21635,21636,21642,21710,21711,21712,21715,21717,21722,21723,22028,22871,22938]]]]},{"k":"H6243","v":[["twenty",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21906]]]]},{"k":"H6244","v":[["consumed",[3,3,[[18,3,3,0,3,[[483,1,1,0,1],[508,2,2,1,3]]]],[13992,14340,14341]]]]},{"k":"H6245","v":[["*",[2,2,[[23,1,1,0,1,[[749,1,1,0,1]]],[31,1,1,1,2,[[889,1,1,1,2]]]],[19086,22537]]],["shine",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19086]]],["think",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22537]]]]},{"k":"H6246","v":[["thought",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21908]]]]},{"k":"H6247","v":[["bright",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17612]]]]},{"k":"H6248","v":[["thought",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13133]]]]},{"k":"H6249","v":[["+",[19,18,[[1,4,4,0,4,[[75,2,2,0,2],[85,2,2,2,4]]],[3,2,2,4,6,[[123,1,1,4,5],[145,1,1,5,6]]],[4,1,1,6,7,[[153,1,1,6,7]]],[11,1,1,7,8,[[337,1,1,7,8]]],[12,5,4,8,12,[[349,1,1,8,9],[361,1,1,9,10],[362,1,1,10,11],[364,2,1,11,12]]],[23,3,3,12,15,[[745,1,1,12,13],[783,1,1,13,14],[796,1,1,14,15]]],[25,2,2,15,17,[[827,1,1,15,16],[841,1,1,16,17]]],[37,1,1,17,18,[[911,1,1,17,18]]]],[2242,2243,2580,2581,3922,4628,4895,10224,10733,11027,11064,11123,18949,19925,20281,21101,21526,22885]]]]},{"k":"H6250","v":[["thoughts",[1,1,[[18,1,1,0,1,[[623,1,1,0,1]]]],[16345]]]]},{"k":"H6251","v":[["flocks",[4,4,[[4,4,4,0,4,[[159,1,1,0,1],[180,3,3,1,4]]]],[5124,5615,5629,5662]]]]},{"k":"H6252","v":[["*",[12,12,[[4,1,1,0,1,[[153,1,1,0,1]]],[5,4,4,1,5,[[195,1,1,1,2],[198,1,1,2,3],[199,2,2,3,5]]],[6,2,2,5,7,[[212,1,1,5,6],[220,1,1,6,7]]],[8,4,4,7,11,[[242,2,2,7,9],[247,1,1,9,10],[266,1,1,10,11]]],[12,1,1,11,12,[[343,1,1,11,12]]]],[4896,6047,6134,6166,6185,6558,6817,7355,7356,7470,8019,10525]]],["Ashtaroth",[11,11,[[5,4,4,0,4,[[195,1,1,0,1],[198,1,1,1,2],[199,2,2,2,4]]],[6,2,2,4,6,[[212,1,1,4,5],[220,1,1,5,6]]],[8,4,4,6,10,[[242,2,2,6,8],[247,1,1,8,9],[266,1,1,9,10]]],[12,1,1,10,11,[[343,1,1,10,11]]]],[6047,6134,6166,6185,6558,6817,7355,7356,7470,8019,10525]]],["Astaroth",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4896]]]]},{"k":"H6253","v":[["Ashtoreth",[3,3,[[10,2,2,0,2,[[301,2,2,0,2]]],[11,1,1,2,3,[[335,1,1,2,3]]]],[9113,9141,10178]]]]},{"k":"H6254","v":[["Ashterathite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10717]]]]},{"k":"H6255","v":[["Karnaim",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[341]]]]},{"k":"H6256","v":[["*",[296,258,[[0,10,9,0,9,[[7,1,1,0,1],[17,2,2,1,3],[20,1,1,3,4],[23,2,1,4,5],[28,1,1,5,6],[30,1,1,6,7],[37,2,2,7,9]]],[1,3,3,9,12,[[58,1,1,9,10],[67,2,2,10,12]]],[2,3,3,12,15,[[104,1,1,12,13],[105,1,1,13,14],[115,1,1,14,15]]],[3,2,2,15,17,[[138,1,1,15,16],[139,1,1,16,17]]],[4,18,18,17,35,[[153,3,3,17,20],[154,1,1,20,21],[155,6,6,21,27],[156,1,1,27,28],[157,1,1,28,29],[161,1,1,29,30],[162,2,2,30,32],[163,1,1,32,33],[180,1,1,33,34],[184,1,1,34,35]]],[5,7,7,35,42,[[191,1,1,35,36],[192,1,1,36,37],[194,1,1,37,38],[196,1,1,38,39],[197,3,3,39,42]]],[6,10,10,42,52,[[213,1,1,42,43],[214,1,1,43,44],[220,1,1,44,45],[221,1,1,45,46],[222,1,1,46,47],[223,1,1,47,48],[224,1,1,48,49],[231,3,3,49,52]]],[7,1,1,52,53,[[233,1,1,52,53]]],[8,4,4,53,57,[[239,1,1,53,54],[244,1,1,54,55],[253,1,1,55,56],[255,1,1,56,57]]],[9,3,3,57,60,[[277,2,2,57,59],[290,1,1,59,60]]],[10,7,7,60,67,[[298,1,1,60,61],[301,2,2,61,63],[304,1,1,63,64],[305,1,1,64,65],[309,1,1,65,66],[310,1,1,66,67]]],[11,11,11,67,78,[[316,2,2,67,69],[317,1,1,69,70],[319,2,2,70,72],[320,1,1,72,73],[322,1,1,73,74],[328,1,1,74,75],[330,1,1,75,76],[332,1,1,76,77],[336,1,1,77,78]]],[12,9,7,78,85,[[346,2,1,78,79],[349,2,2,79,81],[357,2,1,81,82],[358,2,2,82,84],[366,1,1,84,85]]],[13,16,16,85,101,[[373,1,1,85,86],[379,1,1,86,87],[381,1,1,87,88],[382,2,2,88,90],[384,1,1,90,91],[386,1,1,91,92],[387,2,2,92,94],[390,1,1,94,95],[391,1,1,95,96],[394,2,2,96,98],[395,1,1,98,99],[396,1,1,99,100],[401,1,1,100,101]]],[14,3,3,101,104,[[410,1,1,101,102],[412,2,2,102,104]]],[15,7,7,104,111,[[416,1,1,104,105],[418,1,1,105,106],[421,2,2,106,108],[422,1,1,108,109],[425,2,2,109,111]]],[16,5,4,111,115,[[426,1,1,111,112],[429,2,1,112,113],[430,1,1,113,114],[433,1,1,114,115]]],[17,10,10,115,125,[[440,1,1,115,116],[441,1,1,116,117],[457,1,1,117,118],[459,1,1,118,119],[462,1,1,119,120],[473,2,2,120,122],[474,3,3,122,125]]],[18,22,22,125,147,[[478,1,1,125,126],[481,1,1,126,127],[486,1,1,127,128],[487,2,2,128,130],[498,1,1,130,131],[508,1,1,131,132],[509,1,1,132,133],[511,1,1,133,134],[514,2,2,134,136],[539,1,1,136,137],[546,1,1,137,138],[548,1,1,138,139],[558,1,1,139,140],[579,1,1,140,141],[581,1,1,141,142],[582,1,1,142,143],[583,1,1,143,144],[596,2,2,144,146],[622,1,1,146,147]]],[19,5,5,147,152,[[632,1,1,147,148],[633,1,1,148,149],[635,1,1,149,150],[642,1,1,150,151],[644,1,1,151,152]]],[20,40,18,152,170,[[661,31,10,152,162],[665,1,1,162,163],[666,3,3,163,166],[667,4,3,166,169],[668,1,1,169,170]]],[21,1,1,170,171,[[672,1,1,170,171]]],[22,11,11,171,182,[[687,1,1,171,172],[691,1,1,172,173],[695,1,1,173,174],[696,1,1,174,175],[698,1,1,175,176],[711,2,2,176,178],[717,1,1,178,179],[726,1,1,179,180],[727,1,1,180,181],[738,1,1,181,182]]],[23,36,34,182,216,[[746,3,3,182,185],[747,1,1,185,186],[748,1,1,186,187],[749,1,1,187,188],[750,1,1,188,189],[752,4,4,189,193],[754,1,1,193,194],[755,2,2,194,196],[758,2,2,196,198],[759,2,1,198,199],[762,1,1,199,200],[764,1,1,200,201],[771,1,1,201,202],[774,1,1,202,203],[775,1,1,203,204],[777,2,2,204,206],[790,1,1,206,207],[793,1,1,207,208],[794,5,5,208,213],[795,4,3,213,216]]],[25,18,14,216,230,[[805,4,2,216,218],[808,2,2,218,220],[813,1,1,220,221],[817,3,2,221,223],[822,2,2,223,225],[823,1,1,225,226],[828,1,1,226,227],[831,1,1,227,228],[835,1,1,228,229],[836,2,1,229,230]]],[26,16,13,230,243,[[857,1,1,230,231],[858,2,2,231,233],[860,6,6,233,239],[861,7,4,239,243]]],[27,3,3,243,246,[[863,1,1,243,244],[871,1,1,244,245],[874,1,1,245,246]]],[28,1,1,246,247,[[878,1,1,246,247]]],[29,2,1,247,248,[[883,2,1,247,248]]],[32,3,3,248,251,[[894,1,1,248,249],[895,1,1,249,250],[897,1,1,250,251]]],[35,4,3,251,254,[[906,1,1,251,252],[908,3,2,252,254]]],[36,3,2,254,256,[[909,3,2,254,256]]],[37,2,2,256,258,[[920,1,1,256,257],[924,1,1,257,258]]]],[194,434,438,535,602,802,883,1120,1146,1760,2021,2025,3193,3203,3528,4379,4439,4901,4908,4910,4972,4979,4983,4987,4993,4996,4998,5018,5058,5177,5187,5194,5222,5623,5793,5936,5975,6031,6091,6113,6117,6128,6597,6603,6825,6855,6875,6907,6913,7116,7124,7126,7163,7317,7407,7695,7742,8260,8261,8707,9050,9112,9137,9219,9272,9389,9414,9619,9620,9673,9708,9725,9749,9799,9969,10040,10110,10212,10640,10742,10752,10927,10962,10963,11194,11332,11471,11495,11516,11519,11576,11609,11634,11643,11688,11731,11780,11786,11818,11830,11983,12235,12265,12266,12381,12402,12538,12539,12583,12692,12702,12715,12776,12792,12826,12977,12995,13405,13437,13491,13816,13825,13835,13836,13852,13942,13972,14030,14042,14046,14200,14346,14361,14389,14469,14489,14835,14948,14985,15232,15534,15598,15625,15654,15918,16024,16335,16536,16554,16632,16830,16890,17360,17361,17362,17363,17364,17365,17366,17367,17370,17376,17446,17463,17464,17467,17483,17486,17487,17510,17566,17830,17928,17997,18004,18031,18281,18285,18413,18630,18644,18843,18982,18992,18993,19019,19038,19082,19104,19154,19160,19165,19168,19216,19238,19240,19301,19312,19326,19407,19438,19603,19674,19692,19790,19795,20066,20135,20170,20182,20186,20193,20197,20218,20230,20245,20539,20540,20584,20589,20707,20770,20819,20969,20973,20979,21155,21207,21339,21349,21978,22009,22013,22042,22049,22050,22060,22071,22076,22082,22085,22090,22092,22114,22237,22279,22344,22436,22598,22612,22636,22799,22839,22840,22842,22844,23017,23075]]],["+",[21,21,[[4,1,1,0,1,[[153,1,1,0,1]]],[5,1,1,1,2,[[194,1,1,1,2]]],[7,1,1,2,3,[[233,1,1,2,3]]],[9,1,1,3,4,[[277,1,1,3,4]]],[12,1,1,4,5,[[346,1,1,4,5]]],[13,3,3,5,8,[[387,1,1,5,6],[390,1,1,6,7],[391,1,1,7,8]]],[16,1,1,8,9,[[430,1,1,8,9]]],[17,1,1,9,10,[[462,1,1,9,10]]],[18,2,2,10,12,[[481,1,1,10,11],[487,1,1,11,12]]],[19,2,2,12,14,[[633,1,1,12,13],[635,1,1,13,14]]],[20,1,1,14,15,[[667,1,1,14,15]]],[22,2,2,15,17,[[695,1,1,15,16],[726,1,1,16,17]]],[23,1,1,17,18,[[764,1,1,17,18]]],[25,2,2,18,20,[[805,2,2,18,20]]],[26,1,1,20,21,[[861,1,1,20,21]]]],[4910,6031,7163,8261,10640,11643,11688,11731,12792,13491,13972,14046,16554,16632,17483,17997,18630,19438,20539,20540,22092]]],["after",[1,1,[[12,1,1,0,1,[[357,1,1,0,1]]]],[10927]]],["certain",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22049]]],["in",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[194]]],["long",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22279]]],["season",[14,14,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,2,2,1,3,[[163,1,1,1,2],[180,1,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[17,2,2,4,6,[[440,1,1,4,5],[473,1,1,5,6]]],[18,3,3,6,9,[[478,1,1,6,7],[581,1,1,7,8],[622,1,1,8,9]]],[19,1,1,9,10,[[642,1,1,9,10]]],[20,1,1,10,11,[[668,1,1,10,11]]],[23,2,2,11,13,[[749,1,1,11,12],[777,1,1,12,13]]],[25,1,1,13,14,[[835,1,1,13,14]]]],[3528,5222,5623,10963,12977,13825,13942,15598,16335,16830,17510,19082,19795,21339]]],["seasons",[2,2,[[1,2,2,0,2,[[67,2,2,0,2]]]],[2021,2025]]],["time",[224,190,[[0,9,8,0,8,[[17,2,2,0,2],[20,1,1,2,3],[23,2,1,3,4],[28,1,1,4,5],[30,1,1,5,6],[37,2,2,6,8]]],[1,1,1,8,9,[[58,1,1,8,9]]],[2,1,1,9,10,[[104,1,1,9,10]]],[3,2,2,10,12,[[138,1,1,10,11],[139,1,1,11,12]]],[4,15,15,12,27,[[153,2,2,12,14],[154,1,1,14,15],[155,6,6,15,21],[156,1,1,21,22],[157,1,1,22,23],[161,1,1,23,24],[162,2,2,24,26],[184,1,1,26,27]]],[5,6,6,27,33,[[191,1,1,27,28],[192,1,1,28,29],[196,1,1,29,30],[197,3,3,30,33]]],[6,10,10,33,43,[[213,1,1,33,34],[214,1,1,34,35],[220,1,1,35,36],[221,1,1,36,37],[222,1,1,37,38],[223,1,1,38,39],[224,1,1,39,40],[231,3,3,40,43]]],[8,4,4,43,47,[[239,1,1,43,44],[244,1,1,44,45],[253,1,1,45,46],[255,1,1,46,47]]],[9,2,2,47,49,[[277,1,1,47,48],[290,1,1,48,49]]],[10,6,6,49,55,[[298,1,1,49,50],[301,1,1,50,51],[304,1,1,51,52],[305,1,1,52,53],[309,1,1,53,54],[310,1,1,54,55]]],[11,11,11,55,66,[[316,2,2,55,57],[317,1,1,57,58],[319,2,2,58,60],[320,1,1,60,61],[322,1,1,61,62],[328,1,1,62,63],[330,1,1,63,64],[332,1,1,64,65],[336,1,1,65,66]]],[12,4,4,66,70,[[346,1,1,66,67],[349,1,1,67,68],[357,1,1,68,69],[358,1,1,69,70]]],[13,10,10,70,80,[[373,1,1,70,71],[379,1,1,71,72],[382,2,2,72,74],[384,1,1,74,75],[387,1,1,75,76],[394,2,2,76,78],[396,1,1,78,79],[401,1,1,79,80]]],[14,2,2,80,82,[[410,1,1,80,81],[412,1,1,81,82]]],[15,4,4,82,86,[[416,1,1,82,83],[418,1,1,83,84],[421,1,1,84,85],[425,1,1,85,86]]],[16,3,2,86,88,[[429,2,1,86,87],[433,1,1,87,88]]],[17,6,6,88,94,[[441,1,1,88,89],[457,1,1,89,90],[473,1,1,90,91],[474,3,3,91,94]]],[18,10,10,94,104,[[498,1,1,94,95],[509,1,1,95,96],[514,2,2,96,98],[546,1,1,98,99],[548,1,1,99,100],[558,1,1,100,101],[579,1,1,101,102],[582,1,1,102,103],[596,1,1,103,104]]],[20,38,16,104,120,[[661,31,10,104,114],[665,1,1,114,115],[666,3,3,115,118],[667,3,2,118,120]]],[21,1,1,120,121,[[672,1,1,120,121]]],[22,7,7,121,128,[[691,1,1,121,122],[696,1,1,122,123],[698,1,1,123,124],[711,1,1,124,125],[717,1,1,125,126],[727,1,1,126,127],[738,1,1,127,128]]],[23,32,30,128,158,[[746,2,2,128,130],[747,1,1,130,131],[748,1,1,131,132],[750,1,1,132,133],[752,4,4,133,137],[754,1,1,137,138],[755,2,2,138,140],[758,2,2,140,142],[759,2,1,142,143],[762,1,1,143,144],[771,1,1,144,145],[774,1,1,145,146],[775,1,1,146,147],[777,1,1,147,148],[790,1,1,148,149],[793,1,1,149,150],[794,5,5,150,155],[795,4,3,155,158]]],[25,12,10,158,168,[[805,2,2,158,160],[808,2,2,160,162],[817,3,2,162,164],[823,1,1,164,165],[828,1,1,165,166],[831,1,1,166,167],[836,2,1,167,168]]],[26,11,8,168,176,[[857,1,1,168,169],[858,1,1,169,170],[860,3,3,170,173],[861,6,3,173,176]]],[27,2,2,176,178,[[863,1,1,176,177],[871,1,1,177,178]]],[28,1,1,178,179,[[878,1,1,178,179]]],[29,2,1,179,180,[[883,2,1,179,180]]],[32,3,3,180,183,[[894,1,1,180,181],[895,1,1,181,182],[897,1,1,182,183]]],[35,4,3,183,186,[[906,1,1,183,184],[908,3,2,184,186]]],[36,3,2,186,188,[[909,3,2,186,188]]],[37,2,2,188,190,[[920,1,1,188,189],[924,1,1,189,190]]]],[434,438,535,602,802,883,1120,1146,1760,3193,4379,4439,4901,4908,4972,4979,4983,4987,4993,4996,4998,5018,5058,5177,5187,5194,5793,5936,5975,6091,6113,6117,6128,6597,6603,6825,6855,6875,6907,6913,7116,7124,7126,7317,7407,7695,7742,8260,8707,9050,9137,9219,9272,9389,9414,9619,9620,9673,9708,9725,9749,9799,9969,10040,10110,10212,10640,10742,10927,10962,11332,11471,11516,11519,11576,11634,11780,11786,11830,11983,12235,12265,12381,12402,12538,12692,12776,12826,12995,13405,13816,13835,13836,13852,14200,14361,14469,14489,14948,14985,15232,15534,15625,16024,17360,17361,17362,17363,17364,17365,17366,17367,17370,17376,17446,17463,17464,17467,17486,17487,17566,17928,18004,18031,18281,18413,18644,18843,18992,18993,19019,19038,19104,19154,19160,19165,19168,19216,19238,19240,19301,19312,19326,19407,19603,19674,19692,19790,20066,20135,20170,20182,20186,20193,20197,20218,20230,20245,20539,20540,20584,20589,20770,20819,20979,21155,21207,21349,21978,22009,22060,22071,22076,22082,22085,22090,22114,22237,22344,22436,22598,22612,22636,22799,22839,22840,22842,22844,23017,23075]]],["times",[24,24,[[2,1,1,0,1,[[105,1,1,0,1]]],[12,2,2,1,3,[[349,1,1,1,2],[366,1,1,2,3]]],[13,1,1,3,4,[[381,1,1,3,4]]],[14,1,1,4,5,[[412,1,1,4,5]]],[15,3,3,5,8,[[421,1,1,5,6],[422,1,1,6,7],[425,1,1,7,8]]],[16,1,1,8,9,[[426,1,1,8,9]]],[17,1,1,9,10,[[459,1,1,9,10]]],[18,7,7,10,17,[[486,1,1,10,11],[487,1,1,11,12],[508,1,1,12,13],[511,1,1,13,14],[539,1,1,14,15],[583,1,1,15,16],[596,1,1,16,17]]],[19,2,2,17,19,[[632,1,1,17,18],[644,1,1,18,19]]],[22,1,1,19,20,[[711,1,1,19,20]]],[25,1,1,20,21,[[813,1,1,20,21]]],[26,3,3,21,24,[[858,1,1,21,22],[860,2,2,22,24]]]],[3203,10752,11194,11495,12266,12539,12583,12702,12715,13437,14030,14042,14346,14389,14835,15654,15918,16536,16890,18285,20707,22013,22042,22050]]],["when",[7,7,[[10,1,1,0,1,[[301,1,1,0,1]]],[13,2,2,1,3,[[386,1,1,1,2],[395,1,1,2,3]]],[22,1,1,3,4,[[687,1,1,3,4]]],[23,1,1,4,5,[[746,1,1,4,5]]],[25,2,2,5,7,[[822,2,2,5,7]]]],[9112,11609,11818,17830,18982,20969,20973]]]]},{"k":"H6257","v":[["*",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[19,1,1,1,2,[[651,1,1,1,2]]]],[13231,17106]]],["fit",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17106]]],["ready",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13231]]]]},{"k":"H6258","v":[["*",[433,422,[[0,40,40,0,40,[[2,1,1,0,1],[3,1,1,1,2],[10,1,1,2,3],[11,1,1,3,4],[18,1,1,4,5],[19,1,1,5,6],[20,1,1,6,7],[21,1,1,7,8],[23,1,1,8,9],[25,2,2,9,11],[26,4,4,11,15],[28,2,2,15,17],[29,1,1,17,18],[30,6,6,18,24],[31,2,2,24,26],[36,1,1,26,27],[40,1,1,27,28],[42,1,1,28,29],[43,3,3,29,32],[44,2,2,32,34],[45,1,1,34,35],[46,1,1,35,36],[47,1,1,36,37],[49,3,3,37,40]]],[1,20,20,40,60,[[52,3,3,40,43],[53,1,1,43,44],[54,2,2,44,46],[55,1,1,46,47],[58,3,3,47,50],[59,1,1,50,51],[67,2,2,51,53],[68,1,1,53,54],[81,4,4,54,58],[82,2,2,58,60]]],[3,15,15,60,75,[[127,2,2,60,62],[130,1,1,62,63],[138,8,8,63,71],[140,3,3,71,74],[147,1,1,74,75]]],[4,9,9,75,84,[[154,1,1,75,76],[156,1,1,76,77],[157,1,1,77,78],[162,2,2,78,80],[164,1,1,80,81],[178,1,1,81,82],[183,1,1,82,83],[184,1,1,83,84]]],[5,19,17,84,101,[[187,1,1,84,85],[188,1,1,85,86],[189,1,1,86,87],[191,1,1,87,88],[195,6,6,88,94],[199,1,1,94,95],[200,4,3,95,98],[208,2,1,98,99],[210,2,2,99,101]]],[6,24,24,101,125,[[216,1,1,101,102],[217,1,1,102,103],[218,3,3,103,106],[219,3,3,106,109],[221,5,5,109,114],[223,3,3,114,117],[224,1,1,117,118],[225,1,1,118,119],[226,1,1,119,120],[227,2,2,120,122],[228,1,1,122,123],[230,2,2,123,125]]],[7,4,4,125,129,[[233,1,1,125,126],[234,3,3,126,129]]],[8,46,44,129,173,[[236,1,1,129,130],[237,2,2,130,132],[241,1,1,132,133],[243,2,2,133,135],[244,2,2,135,137],[245,1,1,137,138],[247,5,5,138,143],[248,3,3,143,146],[249,1,1,146,147],[250,4,4,147,151],[252,1,1,151,152],[253,1,1,152,153],[254,1,1,153,154],[255,2,2,154,156],[256,1,1,156,157],[258,1,1,157,158],[259,2,2,158,160],[260,6,4,160,164],[261,5,5,164,169],[262,1,1,169,170],[263,1,1,170,171],[264,2,2,171,173]]],[9,30,28,173,201,[[268,2,2,173,175],[269,1,1,175,176],[270,1,1,176,177],[273,4,4,177,181],[278,3,3,181,184],[279,3,3,184,187],[280,2,2,187,189],[281,1,1,189,190],[282,1,1,190,191],[283,2,2,191,193],[284,2,1,193,194],[285,4,3,194,197],[286,1,1,197,198],[290,3,3,198,201]]],[10,23,22,201,223,[[291,3,2,201,203],[292,3,3,203,206],[293,1,1,206,207],[295,2,2,207,209],[298,2,2,209,211],[302,4,4,211,215],[304,1,1,215,216],[307,1,1,216,217],[308,3,3,217,220],[309,1,1,220,221],[311,1,1,221,222],[312,1,1,222,223]]],[11,22,22,223,245,[[313,1,1,223,224],[315,2,2,224,226],[316,1,1,226,227],[317,3,3,227,230],[319,2,2,230,232],[320,1,1,232,233],[321,1,1,233,234],[322,2,2,234,236],[324,1,1,236,237],[325,2,2,237,239],[330,4,4,239,243],[331,2,2,243,245]]],[12,13,13,245,258,[[354,4,4,245,249],[358,3,3,249,252],[359,2,2,252,254],[365,2,2,254,256],[366,2,2,256,258]]],[13,29,29,258,287,[[367,2,2,258,260],[368,3,3,260,263],[372,4,4,263,267],[373,2,2,267,269],[376,3,3,269,272],[379,1,1,272,273],[382,1,1,273,274],[384,1,1,274,275],[385,1,1,275,276],[386,1,1,276,277],[391,1,1,277,278],[394,2,2,278,280],[395,4,4,280,284],[396,1,1,284,285],[398,1,1,285,286],[401,1,1,286,287]]],[14,6,6,287,293,[[411,3,3,287,290],[412,3,3,290,293]]],[15,5,4,293,297,[[417,1,1,293,294],[418,3,2,294,296],[421,1,1,296,297]]],[17,18,18,297,315,[[438,1,1,297,298],[439,1,1,298,299],[441,3,3,299,302],[442,1,1,302,303],[443,1,1,303,304],[448,1,1,304,305],[449,1,1,305,306],[451,2,2,306,308],[465,3,3,308,311],[470,1,1,311,312],[472,1,1,312,313],[477,2,2,313,315]]],[18,13,13,315,328,[[479,1,1,315,316],[489,1,1,316,317],[494,1,1,317,318],[497,1,1,318,319],[504,1,1,319,320],[516,1,1,320,321],[551,1,1,321,322],[590,1,1,322,323],[592,1,1,323,324],[596,1,1,324,325],[598,1,1,325,326],[602,1,1,326,327],[608,1,1,327,328]]],[19,3,3,328,331,[[632,1,1,328,329],[634,1,1,329,330],[635,1,1,330,331]]],[22,29,26,331,357,[[679,1,1,331,332],[683,2,2,332,334],[687,1,1,334,335],[694,1,1,335,336],[706,1,1,336,337],[707,2,1,337,338],[708,1,1,338,339],[711,3,1,339,340],[714,3,3,340,343],[715,2,2,343,345],[721,2,2,345,347],[722,1,1,347,348],[725,1,1,348,349],[726,3,3,349,352],[727,2,2,352,354],[730,1,1,354,355],[737,1,1,355,356],[742,1,1,356,357]]],[23,16,16,357,373,[[746,1,1,357,358],[747,1,1,358,359],[748,1,1,359,360],[751,1,1,360,361],[758,1,1,361,362],[762,1,1,362,363],[770,1,1,363,364],[771,2,2,364,366],[773,1,1,366,367],[776,1,1,367,368],[781,1,1,368,369],[784,1,1,369,370],[786,2,2,370,372],[788,1,1,372,373]]],[25,8,8,373,381,[[805,1,1,373,374],[808,2,2,374,376],[820,1,1,376,377],[824,1,1,377,378],[827,1,1,378,379],[840,1,1,379,380],[844,1,1,380,381]]],[26,7,7,381,388,[[858,3,3,381,384],[859,3,3,384,387],[860,1,1,387,388]]],[27,12,12,388,400,[[863,2,2,388,390],[865,1,1,390,391],[866,2,2,391,393],[868,1,1,393,394],[869,3,3,394,397],[871,2,2,397,399],[874,1,1,399,400]]],[28,1,1,400,401,[[877,1,1,400,401]]],[29,2,2,401,403,[[884,1,1,401,402],[885,1,1,402,403]]],[31,1,1,403,404,[[892,1,1,403,404]]],[32,8,8,404,412,[[896,4,4,404,408],[897,2,2,408,410],[899,2,2,410,412]]],[33,1,1,412,413,[[900,1,1,412,413]]],[36,4,4,413,417,[[909,1,1,413,414],[910,3,3,414,417]]],[37,2,2,417,419,[[918,1,1,417,418],[919,1,1,418,419]]],[38,3,3,419,422,[[925,1,1,419,420],[926,1,1,420,421],[927,1,1,421,422]]]],[77,90,272,317,466,502,536,559,640,714,721,730,735,763,770,827,829,860,886,889,901,903,915,917,932,938,1103,1228,1300,1334,1354,1357,1363,1366,1420,1424,1456,1511,1523,1527,1588,1589,1597,1613,1637,1650,1656,1757,1760,1761,1794,2010,2018,2031,2448,2468,2470,2472,2478,2486,4030,4047,4125,4379,4381,4386,4394,4404,4408,4409,4413,4457,4460,4463,4681,4951,5005,5078,5198,5208,5249,5576,5747,5797,5853,5881,5905,5948,6043,6048,6049,6056,6060,6062,6161,6197,6198,6199,6430,6490,6499,6667,6697,6721,6725,6734,6770,6786,6792,6836,6837,6842,6852,6854,6888,6891,6896,6911,6947,6959,6983,6993,7007,7063,7067,7156,7174,7183,7184,7228,7256,7270,7338,7374,7378,7403,7404,7437,7462,7467,7470,7473,7476,7497,7498,7499,7538,7561,7563,7585,7590,7647,7698,7708,7759,7761,7775,7830,7859,7860,7868,7878,7887,7888,7913,7916,7921,7924,7925,7931,7964,7974,7977,8055,8056,8099,8131,8188,8205,8208,8209,8296,8309,8314,8330,8337,8350,8371,8388,8423,8437,8458,8465,8481,8518,8520,8521,8560,8702,8705,8708,8729,8735,8779,8786,8794,8823,8882,8884,9010,9011,9155,9162,9167,9177,9232,9341,9352,9355,9360,9391,9458,9503,9547,9591,9599,9629,9653,9662,9669,9711,9716,9733,9782,9795,9812,9857,9890,9894,10044,10045,10047,10049,10080,10086,10870,10886,10889,10890,10942,10946,10949,10975,10983,11151,11153,11177,11181,11203,11204,11218,11224,11226,11298,11299,11322,11323,11339,11340,11399,11406,11411,11461,11518,11564,11583,11597,11723,11774,11775,11796,11801,11802,11822,11835,11890,11969,12245,12247,12249,12254,12255,12263,12387,12408,12410,12543,12917,12935,12981,12999,13006,13029,13035,13172,13197,13245,13257,13558,13566,13573,13735,13790,13927,13930,13955,14071,14114,14188,14291,14519,15054,15815,15848,15965,16089,16112,16151,16524,16599,16634,17675,17742,17744,17836,17983,18186,18215,18225,18289,18335,18338,18340,18372,18378,18506,18524,18534,18607,18620,18621,18630,18641,18655,18701,18821,18893,18983,19006,19039,19132,19303,19395,19585,19602,19612,19662,19767,19894,19945,19990,19997,20017,20543,20580,20585,20894,21050,21118,21473,21581,22003,22005,22010,22026,22032,22035,22038,22112,22115,22149,22155,22159,22180,22202,22204,22207,22227,22228,22268,22323,22457,22480,22571,22627,22629,22630,22631,22634,22637,22668,22674,22697,22845,22858,22859,22870,22987,23007,23098,23104,23135]]],["+",[20,20,[[4,1,1,0,1,[[164,1,1,0,1]]],[7,1,1,1,2,[[234,1,1,1,2]]],[8,2,2,2,4,[[236,1,1,2,3],[261,1,1,3,4]]],[11,1,1,4,5,[[317,1,1,4,5]]],[13,3,3,5,8,[[382,1,1,5,6],[395,1,1,6,7],[401,1,1,7,8]]],[18,5,5,8,13,[[590,1,1,8,9],[592,1,1,9,10],[598,1,1,10,11],[602,1,1,11,12],[608,1,1,12,13]]],[22,3,3,13,16,[[687,1,1,13,14],[726,1,1,14,15],[737,1,1,15,16]]],[23,1,1,16,17,[[747,1,1,16,17]]],[26,1,1,17,18,[[859,1,1,17,18]]],[27,1,1,18,19,[[863,1,1,18,19]]],[32,1,1,19,20,[[896,1,1,19,20]]]],[5249,7184,7228,7916,9669,11518,11796,11969,15815,15848,16089,16112,16151,17836,18620,18821,19006,22032,22112,22627]]],["Now",[134,134,[[0,14,14,0,14,[[19,1,1,0,1],[20,1,1,1,2],[26,3,3,2,5],[28,1,1,5,6],[30,1,1,6,7],[40,1,1,7,8],[43,3,3,8,11],[44,1,1,11,12],[49,2,2,12,14]]],[1,8,8,14,22,[[52,1,1,14,15],[53,1,1,15,16],[55,1,1,16,17],[59,1,1,17,18],[67,1,1,18,19],[68,1,1,19,20],[81,1,1,20,21],[82,1,1,21,22]]],[3,3,3,22,25,[[138,2,2,22,24],[147,1,1,24,25]]],[4,4,4,25,29,[[154,1,1,25,26],[156,1,1,26,27],[157,1,1,27,28],[183,1,1,28,29]]],[5,6,6,29,35,[[188,1,1,29,30],[189,1,1,30,31],[195,1,1,31,32],[199,1,1,32,33],[200,1,1,33,34],[210,1,1,34,35]]],[6,7,7,35,42,[[217,1,1,35,36],[219,2,2,36,38],[223,2,2,38,40],[227,1,1,40,41],[230,1,1,41,42]]],[8,16,16,42,58,[[241,1,1,42,43],[243,1,1,43,44],[244,1,1,44,45],[245,1,1,45,46],[247,3,3,46,49],[250,2,2,49,51],[256,1,1,51,52],[258,1,1,52,53],[260,2,2,53,55],[261,2,2,55,57],[263,1,1,57,58]]],[9,11,11,58,69,[[269,1,1,58,59],[273,1,1,59,60],[278,2,2,60,62],[279,2,2,62,64],[280,1,1,64,65],[283,1,1,65,66],[285,2,2,66,68],[286,1,1,68,69]]],[10,8,8,69,77,[[291,1,1,69,70],[292,2,2,70,72],[295,1,1,72,73],[302,1,1,73,74],[307,1,1,74,75],[308,1,1,75,76],[312,1,1,76,77]]],[11,9,9,77,86,[[317,1,1,77,78],[319,1,1,78,79],[321,1,1,79,80],[322,2,2,80,82],[330,3,3,82,85],[331,1,1,85,86]]],[12,7,7,86,93,[[354,2,2,86,88],[358,1,1,88,89],[359,2,2,89,91],[365,1,1,91,92],[366,1,1,92,93]]],[13,13,13,93,106,[[367,1,1,93,94],[368,1,1,94,95],[372,4,4,95,99],[373,1,1,99,100],[384,1,1,100,101],[394,1,1,101,102],[395,2,2,102,104],[396,1,1,104,105],[398,1,1,105,106]]],[14,3,3,106,109,[[411,1,1,106,107],[412,2,2,107,109]]],[15,2,2,109,111,[[418,1,1,109,110],[421,1,1,110,111]]],[17,1,1,111,112,[[441,1,1,111,112]]],[18,1,1,112,113,[[497,1,1,112,113]]],[19,1,1,113,114,[[635,1,1,113,114]]],[22,6,6,114,120,[[706,1,1,114,115],[708,1,1,115,116],[711,1,1,116,117],[714,1,1,117,118],[715,1,1,118,119],[730,1,1,119,120]]],[23,3,3,120,123,[[762,1,1,120,121],[773,1,1,121,122],[786,1,1,122,123]]],[25,5,5,123,128,[[808,2,2,123,125],[827,1,1,125,126],[840,1,1,126,127],[844,1,1,127,128]]],[26,1,1,128,129,[[858,1,1,128,129]]],[29,1,1,129,130,[[885,1,1,129,130]]],[32,3,3,130,133,[[896,2,2,130,132],[897,1,1,132,133]]],[36,1,1,133,134,[[909,1,1,133,134]]]],[502,536,730,735,770,829,917,1228,1334,1354,1357,1363,1511,1527,1588,1613,1656,1794,2010,2031,2448,2486,4379,4394,4681,4951,5005,5078,5747,5881,5905,6060,6161,6199,6499,6697,6770,6786,6888,6896,6993,7067,7338,7378,7404,7437,7467,7473,7476,7563,7585,7775,7830,7878,7887,7924,7925,7964,8099,8188,8296,8314,8330,8350,8371,8465,8518,8521,8560,8729,8779,8794,8884,9177,9341,9360,9503,9653,9711,9782,9795,9812,10044,10045,10047,10080,10870,10890,10946,10975,10983,11151,11177,11203,11226,11298,11299,11322,11323,11339,11564,11775,11801,11822,11835,11890,12249,12255,12263,12410,12543,13006,14188,16634,18186,18225,18289,18338,18372,18701,19395,19662,19997,20580,20585,21118,21473,21581,22005,22480,22629,22631,22634,22845]]],["now",[275,267,[[0,25,25,0,25,[[2,1,1,0,1],[3,1,1,1,2],[10,1,1,2,3],[18,1,1,3,4],[21,1,1,4,5],[23,1,1,5,6],[25,2,2,6,8],[26,1,1,8,9],[28,1,1,9,10],[29,1,1,10,11],[30,5,5,11,16],[31,2,2,16,18],[36,1,1,18,19],[42,1,1,19,20],[44,1,1,20,21],[45,1,1,21,22],[46,1,1,22,23],[47,1,1,23,24],[49,1,1,24,25]]],[1,12,12,25,37,[[52,2,2,25,27],[54,2,2,27,29],[58,3,3,29,32],[67,1,1,32,33],[81,3,3,33,36],[82,1,1,36,37]]],[3,12,12,37,49,[[127,2,2,37,39],[130,1,1,39,40],[138,6,6,40,46],[140,3,3,46,49]]],[4,4,4,49,53,[[162,2,2,49,51],[178,1,1,51,52],[184,1,1,52,53]]],[5,12,10,53,63,[[187,1,1,53,54],[191,1,1,54,55],[195,5,5,55,60],[200,3,2,60,62],[208,2,1,62,63]]],[6,17,17,63,80,[[216,1,1,63,64],[218,3,3,64,67],[219,1,1,67,68],[221,5,5,68,73],[223,1,1,73,74],[224,1,1,74,75],[225,1,1,75,76],[226,1,1,76,77],[227,1,1,77,78],[228,1,1,78,79],[230,1,1,79,80]]],[7,3,3,80,83,[[233,1,1,80,81],[234,2,2,81,83]]],[8,28,27,83,110,[[237,2,2,83,85],[243,1,1,85,86],[244,1,1,86,87],[247,2,2,87,89],[248,3,3,89,92],[249,1,1,92,93],[250,2,2,93,95],[252,1,1,95,96],[253,1,1,96,97],[254,1,1,97,98],[255,2,2,98,100],[259,2,2,100,102],[260,4,3,102,105],[261,2,2,105,107],[262,1,1,107,108],[264,2,2,108,110]]],[9,19,18,110,128,[[268,2,2,110,112],[270,1,1,112,113],[273,3,3,113,116],[278,1,1,116,117],[279,1,1,117,118],[280,1,1,118,119],[281,1,1,119,120],[282,1,1,120,121],[283,1,1,121,122],[284,2,1,122,123],[285,2,2,123,125],[290,3,3,125,128]]],[10,15,14,128,142,[[291,2,1,128,129],[292,1,1,129,130],[293,1,1,130,131],[295,1,1,131,132],[298,2,2,132,134],[302,3,3,134,137],[304,1,1,137,138],[308,2,2,138,140],[309,1,1,140,141],[311,1,1,141,142]]],[11,11,11,142,153,[[313,1,1,142,143],[315,2,2,143,145],[316,1,1,145,146],[317,1,1,146,147],[319,1,1,147,148],[320,1,1,148,149],[324,1,1,149,150],[325,1,1,150,151],[330,1,1,151,152],[331,1,1,152,153]]],[12,6,6,153,159,[[354,2,2,153,155],[358,2,2,155,157],[365,1,1,157,158],[366,1,1,158,159]]],[13,12,12,159,171,[[367,1,1,159,160],[368,2,2,160,162],[373,1,1,162,163],[376,2,2,163,165],[379,1,1,165,166],[385,1,1,166,167],[386,1,1,167,168],[391,1,1,168,169],[394,1,1,169,170],[395,1,1,170,171]]],[14,3,3,171,174,[[411,2,2,171,173],[412,1,1,173,174]]],[15,3,2,174,176,[[417,1,1,174,175],[418,2,1,175,176]]],[17,17,17,176,193,[[438,1,1,176,177],[439,1,1,177,178],[441,2,2,178,180],[442,1,1,180,181],[443,1,1,181,182],[448,1,1,182,183],[449,1,1,183,184],[451,2,2,184,186],[465,3,3,186,189],[470,1,1,189,190],[472,1,1,190,191],[477,2,2,191,193]]],[18,7,7,193,200,[[479,1,1,193,194],[489,1,1,194,195],[494,1,1,195,196],[504,1,1,196,197],[516,1,1,197,198],[551,1,1,198,199],[596,1,1,199,200]]],[19,2,2,200,202,[[632,1,1,200,201],[634,1,1,201,202]]],[22,20,18,202,220,[[679,1,1,202,203],[683,2,2,203,205],[694,1,1,205,206],[707,2,1,206,207],[711,2,1,207,208],[714,2,2,208,210],[715,1,1,210,211],[721,2,2,211,213],[722,1,1,213,214],[725,1,1,214,215],[726,2,2,215,217],[727,2,2,217,219],[742,1,1,219,220]]],[23,12,12,220,232,[[746,1,1,220,221],[748,1,1,221,222],[751,1,1,222,223],[758,1,1,223,224],[770,1,1,224,225],[771,2,2,225,227],[776,1,1,227,228],[781,1,1,228,229],[784,1,1,229,230],[786,1,1,230,231],[788,1,1,231,232]]],[25,3,3,232,235,[[805,1,1,232,233],[820,1,1,233,234],[824,1,1,234,235]]],[26,5,5,235,240,[[858,2,2,235,237],[859,2,2,237,239],[860,1,1,239,240]]],[27,11,11,240,251,[[863,1,1,240,241],[865,1,1,241,242],[866,2,2,242,244],[868,1,1,244,245],[869,3,3,245,248],[871,2,2,248,250],[874,1,1,250,251]]],[28,1,1,251,252,[[877,1,1,251,252]]],[29,1,1,252,253,[[884,1,1,252,253]]],[31,1,1,253,254,[[892,1,1,253,254]]],[32,4,4,254,258,[[896,1,1,254,255],[897,1,1,255,256],[899,2,2,256,258]]],[33,1,1,258,259,[[900,1,1,258,259]]],[36,3,3,259,262,[[910,3,3,259,262]]],[37,2,2,262,264,[[918,1,1,262,263],[919,1,1,263,264]]],[38,3,3,264,267,[[925,1,1,264,265],[926,1,1,265,266],[927,1,1,266,267]]]],[77,90,272,466,559,640,714,721,763,827,860,886,889,901,903,915,932,938,1103,1300,1366,1420,1424,1456,1523,1589,1597,1637,1650,1757,1760,1761,2018,2468,2470,2472,2478,4030,4047,4125,4381,4386,4404,4408,4409,4413,4457,4460,4463,5198,5208,5576,5797,5853,5948,6043,6048,6049,6056,6062,6197,6198,6430,6667,6721,6725,6734,6792,6836,6837,6842,6852,6854,6891,6911,6947,6959,6983,7007,7063,7156,7174,7183,7256,7270,7374,7403,7462,7470,7497,7498,7499,7538,7561,7590,7647,7698,7708,7759,7761,7859,7860,7868,7887,7888,7913,7921,7931,7974,7977,8055,8056,8131,8205,8208,8209,8309,8337,8388,8423,8437,8458,8481,8518,8520,8702,8705,8708,8735,8786,8823,8882,9010,9011,9155,9162,9167,9232,9352,9355,9391,9458,9547,9591,9599,9629,9662,9716,9733,9857,9890,10049,10086,10886,10889,10942,10949,11153,11181,11204,11218,11224,11340,11399,11411,11461,11583,11597,11723,11774,11802,12245,12247,12254,12387,12408,12917,12935,12981,12999,13029,13035,13172,13197,13245,13257,13558,13566,13573,13735,13790,13927,13930,13955,14071,14114,14291,14519,15054,15965,16524,16599,17675,17742,17744,17983,18215,18289,18335,18340,18378,18506,18524,18534,18607,18621,18630,18641,18655,18893,18983,19039,19132,19303,19585,19602,19612,19767,19894,19945,19990,20017,20543,20894,21050,22003,22010,22026,22035,22038,22115,22149,22155,22159,22180,22202,22204,22207,22227,22228,22268,22323,22457,22571,22630,22637,22668,22674,22697,22858,22859,22870,22987,23007,23098,23104,23135]]],["therefore",[2,2,[[0,1,1,0,1,[[11,1,1,0,1]]],[5,1,1,1,2,[[210,1,1,1,2]]]],[317,6490]]],["whereas",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11406]]],["yet",[1,1,[[11,1,1,0,1,[[325,1,1,0,1]]]],[9894]]]]},{"k":"H6259","v":[["*",[2,2,[[22,1,1,0,1,[[688,1,1,0,1]]],[23,1,1,1,2,[[796,1,1,1,2]]]],[17863,20277]]],["+",[1,1,[[23,1,1,0,1,[[796,1,1,0,1]]]],[20277]]],["treasures",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17863]]]]},{"k":"H6260","v":[["*",[29,29,[[0,2,2,0,2,[[30,2,2,0,2]]],[3,13,13,2,15,[[123,13,13,2,15]]],[4,1,1,15,16,[[184,1,1,15,16]]],[18,3,3,16,19,[[527,2,2,16,18],[543,1,1,18,19]]],[19,1,1,19,20,[[654,1,1,19,20]]],[22,3,3,20,23,[[679,1,1,20,21],[692,1,1,21,22],[712,1,1,22,23]]],[23,2,2,23,25,[[794,1,1,23,24],[795,1,1,24,25]]],[25,3,3,25,28,[[828,1,1,25,26],[835,1,1,26,27],[840,1,1,27,28]]],[37,1,1,28,29,[[920,1,1,28,29]]]],[883,885,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3938,5772,14677,14681,14888,17195,17665,17937,18309,20174,20252,21142,21330,21466,23019]]],["goats",[26,26,[[3,13,13,0,13,[[123,13,13,0,13]]],[4,1,1,13,14,[[184,1,1,13,14]]],[18,3,3,14,17,[[527,2,2,14,16],[543,1,1,16,17]]],[19,1,1,17,18,[[654,1,1,17,18]]],[22,2,2,18,20,[[679,1,1,18,19],[712,1,1,19,20]]],[23,2,2,20,22,[[794,1,1,20,21],[795,1,1,21,22]]],[25,3,3,22,25,[[828,1,1,22,23],[835,1,1,23,24],[840,1,1,24,25]]],[37,1,1,25,26,[[920,1,1,25,26]]]],[3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3938,5772,14677,14681,14888,17195,17665,18309,20174,20252,21142,21330,21466,23019]]],["ones",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17937]]],["rams",[2,2,[[0,2,2,0,2,[[30,2,2,0,2]]]],[883,885]]]]},{"k":"H6261","v":[["fit",[1,1,[[2,1,1,0,1,[[105,1,1,0,1]]]],[3222]]]]},{"k":"H6262","v":[["Attai",[4,4,[[12,3,3,0,3,[[339,2,2,0,2],[349,1,1,2,3]]],[13,1,1,3,4,[[377,1,1,3,4]]]],[10341,10342,10731,11434]]]]},{"k":"H6263","v":[["ready",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21822]]]]},{"k":"H6264","v":[["*",[5,5,[[4,1,1,0,1,[[184,1,1,0,1]]],[16,2,2,1,3,[[428,1,1,1,2],[433,1,1,2,3]]],[17,2,2,3,5,[[438,1,1,3,4],[450,1,1,4,5]]]],[5793,12761,12830,12912,13227]]],["come",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5793]]],["ready",[4,4,[[16,2,2,0,2,[[428,1,1,0,1],[433,1,1,1,2]]],[17,2,2,2,4,[[438,1,1,2,3],[450,1,1,3,4]]]],[12761,12830,12912,13227]]]]},{"k":"H6265","v":[["Athaiah",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12592]]]]},{"k":"H6266","v":[["durable",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18095]]]]},{"k":"H6267","v":[["*",[2,2,[[12,1,1,0,1,[[341,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]]],[10407,18173]]],["ancient",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10407]]],["drawn",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18173]]]]},{"k":"H6268","v":[["Ancient",[3,3,[[26,3,3,0,3,[[856,3,3,0,3]]]],[21942,21946,21955]]]]},{"k":"H6269","v":[["Athach",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[8008]]]]},{"k":"H6270","v":[["Athlai",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12280]]]]},{"k":"H6271","v":[["Athaliah",[17,17,[[11,7,7,0,7,[[320,1,1,0,1],[323,6,6,1,7]]],[12,1,1,7,8,[[345,1,1,7,8]]],[13,8,8,8,16,[[388,4,4,8,12],[389,3,3,12,15],[390,1,1,15,16]]],[14,1,1,16,17,[[410,1,1,16,17]]]],[9753,9830,9831,9832,9842,9843,9849,10601,11646,11654,11655,11656,11668,11669,11677,11684,12208]]]]},{"k":"H6272","v":[["darkened",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17848]]]]},{"k":"H6273","v":[["Othni",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11084]]]]},{"k":"H6274","v":[["Othniel",[7,6,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,3,3,1,4,[[211,1,1,1,2],[213,2,2,2,4]]],[12,3,2,4,6,[[341,2,1,4,5],[364,1,1,5,6]]]],[6219,6522,6577,6579,10398,11124]]]]},{"k":"H6275","v":[["*",[9,9,[[0,2,2,0,2,[[11,1,1,0,1],[25,1,1,1,2]]],[17,5,5,2,7,[[444,1,1,2,3],[449,1,1,3,4],[453,1,1,4,5],[456,1,1,5,6],[467,1,1,6,7]]],[18,1,1,7,8,[[483,1,1,7,8]]],[19,1,1,8,9,[[652,1,1,8,9]]]],[306,714,13056,13199,13280,13362,13643,13992,17114]]],["+",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13643]]],["old",[2,2,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,1,1,1,2,[[483,1,1,1,2]]]],[13362,13992]]],["out",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17114]]],["removed",[4,4,[[0,2,2,0,2,[[11,1,1,0,1],[25,1,1,1,2]]],[17,2,2,2,4,[[449,1,1,2,3],[453,1,1,3,4]]]],[306,714,13199,13280]]],["removeth",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13056]]]]},{"k":"H6276","v":[["durable",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16620]]]]},{"k":"H6277","v":[["*",[4,4,[[8,1,1,0,1,[[237,1,1,0,1]]],[18,3,3,1,4,[[508,1,1,1,2],[552,1,1,2,3],[571,1,1,3,4]]]],[7243,14349,15076,15435]]],["arrogancy",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7243]]],["stiff",[1,1,[[18,1,1,0,1,[[552,1,1,0,1]]]],[15076]]],["things",[2,2,[[18,2,2,0,2,[[508,1,1,0,1],[571,1,1,1,2]]]],[14349,15435]]]]},{"k":"H6278","v":[["Ittahkazin",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6334]]]]},{"k":"H6279","v":[["*",[20,19,[[0,2,1,0,1,[[24,2,1,0,1]]],[1,8,8,1,9,[[57,5,5,1,6],[58,1,1,6,7],[59,2,2,7,9]]],[6,1,1,9,10,[[223,1,1,9,10]]],[9,2,2,10,12,[[287,1,1,10,11],[290,1,1,11,12]]],[12,1,1,12,13,[[342,1,1,12,13]]],[13,2,2,13,15,[[399,2,2,13,15]]],[14,1,1,15,16,[[410,1,1,15,16]]],[17,2,2,16,18,[[457,1,1,16,17],[468,1,1,17,18]]],[22,1,1,18,19,[[697,1,1,18,19]]]],[679,1718,1719,1738,1739,1740,1770,1794,1795,6892,8594,8717,10448,11921,11927,12224,13416,13676,18026]]],["+",[6,6,[[1,5,5,0,5,[[57,3,3,0,3],[58,1,1,3,4],[59,1,1,4,5]]],[6,1,1,5,6,[[223,1,1,5,6]]]],[1718,1739,1740,1770,1795,6892]]],["intreat",[3,3,[[1,3,3,0,3,[[57,2,2,0,2],[59,1,1,2,3]]]],[1719,1738,1794]]],["intreated",[9,8,[[0,2,1,0,1,[[24,2,1,0,1]]],[9,2,2,1,3,[[287,1,1,1,2],[290,1,1,2,3]]],[12,1,1,3,4,[[342,1,1,3,4]]],[13,2,2,4,6,[[399,2,2,4,6]]],[14,1,1,6,7,[[410,1,1,6,7]]],[22,1,1,7,8,[[697,1,1,7,8]]]],[679,8594,8717,10448,11921,11927,12224,18026]]],["pray",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13676]]],["prayer",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13416]]]]},{"k":"H6280","v":[["*",[2,2,[[19,1,1,0,1,[[654,1,1,0,1]]],[25,1,1,1,2,[[836,1,1,1,2]]]],[17175,21357]]],["deceitful",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17175]]],["multiplied",[1,1,[[25,1,1,0,1,[[836,1,1,0,1]]]],[21357]]]]},{"k":"H6281","v":[["Ether",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]]],[6244,6328]]]]},{"k":"H6282","v":[["*",[2,2,[[25,1,1,0,1,[[809,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[20615,22830]]],["suppliants",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22830]]],["thick",[1,1,[[25,1,1,0,1,[[809,1,1,0,1]]]],[20615]]]]},{"k":"H6283","v":[["abundance",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19781]]]]},{"k":"H6284","v":[["corners",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5784]]]]},{"k":"H6285","v":[["*",[86,59,[[1,15,14,0,14,[[74,1,1,0,1],[75,2,2,1,3],[76,5,4,3,7],[85,2,2,7,9],[86,1,1,9,10],[87,4,4,10,14]]],[2,6,5,14,19,[[102,1,1,14,15],[108,3,2,15,17],[110,1,1,17,18],[112,1,1,18,19]]],[3,6,3,19,22,[[140,1,1,19,20],[150,1,1,20,21],[151,4,1,21,22]]],[5,6,5,22,27,[[201,1,1,22,23],[204,5,4,23,27]]],[15,1,1,27,28,[[421,1,1,27,28]]],[23,4,4,28,32,[[753,1,1,28,29],[769,1,1,29,30],[792,1,1,30,31],[793,1,1,31,32]]],[25,47,26,32,58,[[842,1,1,32,33],[846,2,1,33,34],[848,8,5,34,39],[849,36,19,39,58]]],[29,1,1,58,59,[[881,1,1,58,59]]]],[2221,2253,2255,2281,2283,2284,2285,2589,2591,2617,2642,2644,2645,2646,3093,3290,3308,3350,3424,4463,4819,4850,6207,6305,6307,6308,6313,12533,19201,19557,20125,20159,21538,21637,21694,21696,21697,21698,21699,21703,21704,21705,21706,21707,21708,21709,21710,21718,21725,21726,21727,21728,21729,21730,21732,21734,21735,21736,22407]]],["+",[18,16,[[2,1,1,0,1,[[102,1,1,0,1]]],[25,17,15,1,16,[[846,2,1,1,2],[849,15,14,2,16]]]],[3093,21637,21704,21705,21706,21707,21708,21709,21710,21718,21725,21726,21727,21728,21729,21732]]],["corner",[5,5,[[1,1,1,0,1,[[85,1,1,0,1]]],[2,1,1,1,2,[[110,1,1,1,2]]],[5,1,1,2,3,[[204,1,1,2,3]]],[23,1,1,3,4,[[792,1,1,3,4]]],[29,1,1,4,5,[[881,1,1,4,5]]]],[2591,3350,6307,20125,22407]]],["corners",[11,10,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[2,4,3,2,5,[[108,3,2,2,4],[112,1,1,4,5]]],[3,1,1,5,6,[[140,1,1,5,6]]],[15,1,1,6,7,[[421,1,1,6,7]]],[23,3,3,7,10,[[753,1,1,7,8],[769,1,1,8,9],[793,1,1,9,10]]]],[2221,2617,3290,3308,3424,4463,12533,19201,19557,20159]]],["end",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21538]]],["quarter",[4,4,[[3,1,1,0,1,[[150,1,1,0,1]]],[5,3,3,1,4,[[201,1,1,1,2],[204,2,2,2,4]]]],[4819,6207,6307,6308]]],["side",[46,36,[[1,12,11,0,11,[[75,2,2,0,2],[76,5,4,2,6],[85,1,1,6,7],[87,4,4,7,11]]],[3,4,1,11,12,[[151,4,1,11,12]]],[5,2,2,12,14,[[204,2,2,12,14]]],[25,28,22,14,36,[[848,8,5,14,19],[849,20,17,19,36]]]],[2253,2255,2281,2283,2284,2285,2589,2642,2644,2645,2646,4850,6305,6313,21694,21696,21697,21698,21699,21704,21705,21706,21707,21708,21709,21710,21718,21725,21726,21727,21728,21729,21730,21734,21735,21736]]],["sides",[1,1,[[25,1,1,0,1,[[849,1,1,0,1]]]],[21703]]]]},{"k":"H6286","v":[["*",[14,14,[[1,1,1,0,1,[[57,1,1,0,1]]],[4,1,1,1,2,[[176,1,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]],[14,1,1,3,4,[[409,1,1,3,4]]],[18,1,1,4,5,[[626,1,1,4,5]]],[22,9,9,5,14,[[688,1,1,5,6],[722,1,1,6,7],[727,1,1,7,8],[733,1,1,8,9],[738,4,4,9,13],[739,1,1,13,14]]]],[1719,5545,6696,12200,16389,17865,18556,18639,18745,18828,18830,18834,18842,18846]]],["+",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12200]]],["Glory",[1,1,[[1,1,1,0,1,[[57,1,1,0,1]]]],[1719]]],["beautify",[2,2,[[18,1,1,0,1,[[626,1,1,0,1]]],[22,1,1,1,2,[[738,1,1,1,2]]]],[16389,18834]]],["boughs",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5545]]],["glorified",[5,5,[[22,5,5,0,5,[[727,1,1,0,1],[733,1,1,1,2],[738,2,2,2,4],[739,1,1,4,5]]]],[18639,18745,18830,18842,18846]]],["glorify",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18828]]],["himself",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18556]]],["itself",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17865]]],["themselves",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6696]]]]},{"k":"H6287","v":[["*",[7,7,[[1,1,1,0,1,[[88,1,1,0,1]]],[22,3,3,1,4,[[681,1,1,1,2],[739,2,2,2,4]]],[25,3,3,4,7,[[825,2,2,4,6],[845,1,1,6,7]]]],[2692,17727,18846,18853,21073,21079,21617]]],["beauty",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18846]]],["bonnets",[2,2,[[22,1,1,0,1,[[681,1,1,0,1]]],[25,1,1,1,2,[[845,1,1,1,2]]]],[17727,21617]]],["goodly",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2692]]],["head",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21073]]],["ornaments",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18853]]],["tires",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21079]]]]},{"k":"H6288","v":[["*",[7,7,[[22,1,1,0,1,[[688,1,1,0,1]]],[25,6,6,1,7,[[818,1,1,1,2],[832,5,5,2,7]]]],[17883,20831,21235,21236,21238,21242,21243]]],["bough",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17883]]],["boughs",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21242]]],["branches",[4,4,[[25,4,4,0,4,[[832,4,4,0,4]]]],[21235,21236,21238,21243]]],["sprigs",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20831]]]]},{"k":"H6289","v":[["blackness",[2,2,[[28,1,1,0,1,[[877,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[22317,22709]]]]},{"k":"H6290","v":[["*",[11,10,[[0,1,1,0,1,[[20,1,1,0,1]]],[3,4,4,1,5,[[126,1,1,1,2],[128,1,1,2,3],[129,2,2,3,5]]],[4,2,2,5,7,[[153,1,1,5,6],[185,1,1,6,7]]],[8,1,1,7,8,[[260,1,1,7,8]]],[10,2,1,8,9,[[301,2,1,8,9]]],[34,1,1,9,10,[[905,1,1,9,10]]]],[534,4000,4075,4078,4101,4893,5812,7862,9126,22771]]],["+",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9126]]],["Paran",[10,10,[[0,1,1,0,1,[[20,1,1,0,1]]],[3,4,4,1,5,[[126,1,1,1,2],[128,1,1,2,3],[129,2,2,3,5]]],[4,2,2,5,7,[[153,1,1,5,6],[185,1,1,6,7]]],[8,1,1,7,8,[[260,1,1,7,8]]],[10,1,1,8,9,[[301,1,1,8,9]]],[34,1,1,9,10,[[905,1,1,9,10]]]],[534,4000,4075,4078,4101,4893,5812,7862,9126,22771]]]]},{"k":"H6291","v":[["figs",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17567]]]]},{"k":"H6292","v":[["*",[4,4,[[2,2,2,0,2,[[96,1,1,0,1],[108,1,1,1,2]]],[22,1,1,2,3,[[743,1,1,2,3]]],[25,1,1,3,4,[[805,1,1,3,4]]]],[2897,3288,18901,20543]]],["abominable",[3,3,[[2,1,1,0,1,[[108,1,1,0,1]]],[22,1,1,1,2,[[743,1,1,1,2]]],[25,1,1,2,3,[[805,1,1,2,3]]]],[3288,18901,20543]]],["abomination",[1,1,[[2,1,1,0,1,[[96,1,1,0,1]]]],[2897]]]]},{"k":"H6293","v":[["*",[46,43,[[0,3,3,0,3,[[22,1,1,0,1],[27,1,1,1,2],[31,1,1,2,3]]],[1,3,3,3,6,[[54,2,2,3,5],[72,1,1,5,6]]],[3,2,2,6,8,[[151,2,2,6,8]]],[5,10,8,8,16,[[188,1,1,8,9],[202,1,1,9,10],[203,1,1,10,11],[205,7,5,11,16]]],[6,3,3,16,19,[[218,1,1,16,17],[225,1,1,17,18],[228,1,1,18,19]]],[7,2,2,19,21,[[232,1,1,19,20],[233,1,1,20,21]]],[8,4,3,21,24,[[245,1,1,21,22],[257,3,2,22,24]]],[9,1,1,24,25,[[267,1,1,24,25]]],[10,6,6,25,31,[[292,6,6,25,31]]],[17,2,2,31,33,[[456,1,1,31,32],[471,1,1,32,33]]],[22,5,5,33,38,[[725,1,1,33,34],[731,2,2,34,36],[737,1,1,36,37],[742,1,1,37,38]]],[23,4,4,38,42,[[751,1,1,38,39],[759,1,1,39,40],[771,1,1,40,41],[780,1,1,41,42]]],[29,1,1,42,43,[[883,1,1,42,43]]]],[579,784,929,1635,1652,2148,4864,4866,5885,6272,6285,6332,6343,6347,6348,6355,6740,6941,7018,7143,7171,7423,7804,7805,8037,8795,8799,8801,8802,8804,8816,13370,13768,18602,18717,18723,18816,18890,19135,19326,19614,19867,22442]]],["+",[2,2,[[1,1,1,0,1,[[54,1,1,0,1]]],[22,1,1,1,2,[[742,1,1,1,2]]]],[1652,18890]]],["Intreat",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7143]]],["betwixt",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13768]]],["came",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6272]]],["entreat",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19326]]],["fall",[7,7,[[6,2,2,0,2,[[218,1,1,0,1],[225,1,1,1,2]]],[8,2,2,2,4,[[257,2,2,2,4]]],[9,1,1,4,5,[[267,1,1,4,5]]],[10,2,2,5,7,[[292,2,2,5,7]]]],[6740,6941,7804,7805,8037,8799,8801]]],["fell",[5,5,[[8,1,1,0,1,[[257,1,1,0,1]]],[10,4,4,1,5,[[292,4,4,1,5]]]],[7805,8795,8802,8804,8816]]],["intercession",[4,4,[[22,1,1,0,1,[[731,1,1,0,1]]],[23,3,3,1,4,[[751,1,1,1,2],[771,1,1,2,3],[780,1,1,3,4]]]],[18723,19135,19614,19867]]],["intercessor",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18816]]],["intreat",[1,1,[[0,1,1,0,1,[[22,1,1,0,1]]]],[579]]],["laid",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18717]]],["lighted",[1,1,[[0,1,1,0,1,[[27,1,1,0,1]]]],[784]]],["meet",[5,5,[[1,1,1,0,1,[[72,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]],[7,1,1,2,3,[[233,1,1,2,3]]],[8,1,1,3,4,[[245,1,1,3,4]]],[22,1,1,4,5,[[725,1,1,4,5]]]],[2148,5885,7171,7423,18602]]],["meeteth",[2,2,[[3,2,2,0,2,[[151,2,2,0,2]]]],[4864,4866]]],["met",[2,2,[[0,1,1,0,1,[[31,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[929,22442]]],["pray",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13370]]],["reached",[2,1,[[5,2,1,0,1,[[205,2,1,0,1]]]],[6332]]],["reacheth",[5,4,[[5,5,4,0,4,[[205,5,4,0,4]]]],[6343,6347,6348,6355]]],["run",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7018]]],["together",[1,1,[[5,1,1,0,1,[[203,1,1,0,1]]]],[6285]]],["upon",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1635]]]]},{"k":"H6294","v":[["*",[2,2,[[10,1,1,0,1,[[295,1,1,0,1]]],[20,1,1,1,2,[[667,1,1,1,2]]]],[8882,17486]]],["chance",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17486]]],["occurrent",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8882]]]]},{"k":"H6295","v":[["Pagiel",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3617,3685,3922,3927,4014]]]]},{"k":"H6296","v":[["faint",[2,2,[[8,2,2,0,2,[[265,2,2,0,2]]]],[7988,7999]]]]},{"k":"H6297","v":[["*",[22,21,[[0,1,1,0,1,[[14,1,1,0,1]]],[2,2,1,1,2,[[115,2,1,1,2]]],[3,3,3,2,5,[[130,3,3,2,5]]],[8,1,1,5,6,[[252,1,1,5,6]]],[11,1,1,6,7,[[331,1,1,6,7]]],[13,2,2,7,9,[[386,2,2,7,9]]],[22,4,4,9,13,[[692,1,1,9,10],[712,1,1,10,11],[715,1,1,11,12],[744,1,1,12,13]]],[23,3,3,13,16,[[775,1,1,13,14],[777,1,1,14,15],[785,1,1,15,16]]],[25,3,3,16,19,[[807,1,1,16,17],[844,2,2,17,19]]],[29,1,1,19,20,[[886,1,1,19,20]]],[33,1,1,20,21,[[902,1,1,20,21]]]],[371,3554,4137,4140,4141,7664,10096,11611,11612,17947,18306,18388,18946,19731,19780,19966,20568,21579,21581,22484,22715]]],["bodies",[6,6,[[13,2,2,0,2,[[386,2,2,0,2]]],[23,3,3,2,5,[[775,1,1,2,3],[777,1,1,3,4],[785,1,1,4,5]]],[29,1,1,5,6,[[886,1,1,5,6]]]],[11611,11612,19731,19780,19966,22484]]],["carcase",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17947]]],["carcases",[13,12,[[0,1,1,0,1,[[14,1,1,0,1]]],[2,2,1,1,2,[[115,2,1,1,2]]],[3,3,3,2,5,[[130,3,3,2,5]]],[8,1,1,5,6,[[252,1,1,5,6]]],[22,2,2,6,8,[[712,1,1,6,7],[744,1,1,7,8]]],[25,3,3,8,11,[[807,1,1,8,9],[844,2,2,9,11]]],[33,1,1,11,12,[[902,1,1,11,12]]]],[371,3554,4137,4140,4141,7664,18306,18946,20568,21579,21581,22715]]],["corpses",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10096,18388]]]]},{"k":"H6298","v":[["*",[14,14,[[0,2,2,0,2,[[31,1,1,0,1],[32,1,1,1,2]]],[1,2,2,2,4,[[53,2,2,2,4]]],[8,1,1,4,5,[[260,1,1,4,5]]],[9,1,1,5,6,[[268,1,1,5,6]]],[17,1,1,6,7,[[440,1,1,6,7]]],[18,1,1,7,8,[[562,1,1,7,8]]],[19,3,3,8,11,[[644,1,1,8,9],[649,1,1,9,10],[656,1,1,10,11]]],[22,1,1,11,12,[[712,1,1,11,12]]],[23,1,1,12,13,[[785,1,1,12,13]]],[27,1,1,13,14,[[874,1,1,13,14]]]],[945,968,1625,1628,7881,8062,12965,15281,16885,17017,17237,18317,19963,22274]]],["meet",[4,4,[[17,1,1,0,1,[[440,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]],[22,1,1,2,3,[[712,1,1,2,3]]],[27,1,1,3,4,[[874,1,1,3,4]]]],[12965,16885,18317,22274]]],["meeteth",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[945]]],["met",[6,6,[[0,1,1,0,1,[[32,1,1,0,1]]],[1,2,2,1,3,[[53,2,2,1,3]]],[8,1,1,3,4,[[260,1,1,3,4]]],[9,1,1,4,5,[[268,1,1,4,5]]],[23,1,1,5,6,[[785,1,1,5,6]]]],[968,1625,1628,7881,8062,19963]]],["together",[3,3,[[18,1,1,0,1,[[562,1,1,0,1]]],[19,2,2,1,3,[[649,1,1,1,2],[656,1,1,2,3]]]],[15281,17017,17237]]]]},{"k":"H6299","v":[["*",[59,48,[[1,8,4,0,4,[[62,4,2,0,2],[70,1,1,2,3],[83,3,1,3,4]]],[2,4,3,4,7,[[108,2,1,4,5],[116,2,2,5,7]]],[3,6,3,7,10,[[134,6,3,7,10]]],[4,6,6,10,16,[[159,1,1,10,11],[161,1,1,11,12],[165,1,1,12,13],[167,1,1,13,14],[173,1,1,14,15],[176,1,1,15,16]]],[8,1,1,16,17,[[249,1,1,16,17]]],[9,3,2,17,19,[[270,1,1,17,18],[273,2,1,18,19]]],[10,1,1,19,20,[[291,1,1,19,20]]],[12,2,1,20,21,[[354,2,1,20,21]]],[15,1,1,21,22,[[413,1,1,21,22]]],[17,3,3,22,25,[[440,1,1,22,23],[441,1,1,23,24],[468,1,1,24,25]]],[18,14,13,25,38,[[502,1,1,25,26],[503,1,1,26,27],[508,1,1,27,28],[511,1,1,28,29],[521,1,1,29,30],[526,3,2,30,32],[532,1,1,32,33],[546,1,1,33,34],[548,1,1,34,35],[555,1,1,35,36],[596,1,1,36,37],[607,1,1,37,38]]],[22,4,4,38,42,[[679,1,1,38,39],[707,1,1,39,40],[713,1,1,40,41],[729,1,1,41,42]]],[23,2,2,42,44,[[759,1,1,42,43],[775,1,1,43,44]]],[27,2,2,44,46,[[868,1,1,44,45],[874,1,1,45,46]]],[32,1,1,46,47,[[898,1,1,46,47]]],[37,1,1,47,48,[[920,1,1,47,48]]]],[1880,1882,2085,2516,3301,3597,3599,4272,4273,4274,5119,5183,5277,5334,5455,5543,7553,8129,8203,8746,10884,12306,12971,13001,13678,14273,14284,14336,14410,14597,14655,14663,14750,14953,14999,15155,16032,16148,17681,18215,18330,18684,19336,19702,22191,22280,22652,23024]]],["+",[11,9,[[2,2,1,0,1,[[108,2,1,0,1]]],[3,2,1,1,2,[[134,2,1,1,2]]],[8,1,1,2,3,[[249,1,1,2,3]]],[9,1,1,3,4,[[270,1,1,3,4]]],[10,1,1,4,5,[[291,1,1,4,5]]],[18,2,2,5,7,[[502,1,1,5,6],[607,1,1,6,7]]],[22,1,1,7,8,[[707,1,1,7,8]]],[23,1,1,8,9,[[775,1,1,8,9]]]],[3301,4272,7553,8129,8746,14273,16148,18215,19702]]],["Deliver",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16032]]],["Redeem",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[13001]]],["deliver",[2,2,[[17,1,1,0,1,[[468,1,1,0,1]]],[18,1,1,1,2,[[546,1,1,1,2]]]],[13678,14953]]],["delivered",[2,2,[[18,2,2,0,2,[[532,1,1,0,1],[555,1,1,1,2]]]],[14750,15155]]],["means",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14655]]],["ransom",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22280]]],["ransomed",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18330]]],["redeem",[19,15,[[1,7,3,0,3,[[62,4,2,0,2],[83,3,1,2,3]]],[2,1,1,3,4,[[116,1,1,3,4]]],[3,3,3,4,7,[[134,3,3,4,7]]],[9,1,1,7,8,[[273,1,1,7,8]]],[12,1,1,8,9,[[354,1,1,8,9]]],[17,1,1,9,10,[[440,1,1,9,10]]],[18,4,4,10,14,[[503,1,1,10,11],[521,1,1,11,12],[526,2,2,12,14]]],[23,1,1,14,15,[[759,1,1,14,15]]]],[1880,1882,2516,3597,4272,4273,4274,8203,10884,12971,14284,14597,14655,14663,19336]]],["redeemed",[18,18,[[1,1,1,0,1,[[70,1,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]],[3,1,1,2,3,[[134,1,1,2,3]]],[4,6,6,3,9,[[159,1,1,3,4],[161,1,1,4,5],[165,1,1,5,6],[167,1,1,6,7],[173,1,1,7,8],[176,1,1,8,9]]],[12,1,1,9,10,[[354,1,1,9,10]]],[15,1,1,10,11,[[413,1,1,10,11]]],[18,2,2,11,13,[[508,1,1,11,12],[548,1,1,12,13]]],[22,2,2,13,15,[[679,1,1,13,14],[729,1,1,14,15]]],[27,1,1,15,16,[[868,1,1,15,16]]],[32,1,1,16,17,[[898,1,1,16,17]]],[37,1,1,17,18,[[920,1,1,17,18]]]],[2085,3599,4273,5119,5183,5277,5334,5455,5543,10884,12306,14336,14999,17681,18684,22191,22652,23024]]],["redeemedst",[1,1,[[9,1,1,0,1,[[273,1,1,0,1]]]],[8203]]],["redeemeth",[1,1,[[18,1,1,0,1,[[511,1,1,0,1]]]],[14410]]]]},{"k":"H6300","v":[["Pedahel",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4844]]]]},{"k":"H6301","v":[["Pedahzur",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3614,3678,3904,3909,4011]]]]},{"k":"H6302","v":[["redeemed",[2,2,[[3,2,2,0,2,[[119,2,2,0,2]]]],[3738,3740]]]]},{"k":"H6303","v":[["Padon",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12071,12467]]]]},{"k":"H6304","v":[["*",[4,4,[[1,1,1,0,1,[[57,1,1,0,1]]],[18,2,2,1,3,[[588,1,1,1,2],[607,1,1,2,3]]],[22,1,1,3,4,[[728,1,1,3,4]]]],[1733,15802,16147,18664]]],["+",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18664]]],["division",[1,1,[[1,1,1,0,1,[[57,1,1,0,1]]]],[1733]]],["redemption",[2,2,[[18,2,2,0,2,[[588,1,1,0,1],[607,1,1,1,2]]]],[15802,16147]]]]},{"k":"H6305","v":[["Pedaiah",[8,8,[[11,1,1,0,1,[[335,1,1,0,1]]],[12,3,3,1,4,[[340,2,2,1,3],[364,1,1,3,4]]],[15,4,4,4,8,[[415,1,1,4,5],[420,1,1,5,6],[423,1,1,6,7],[425,1,1,7,8]]]],[10201,10379,10380,11129,12352,12497,12595,12684]]]]},{"k":"H6306","v":[["*",[5,4,[[1,1,1,0,1,[[70,1,1,0,1]]],[3,3,2,1,3,[[119,3,2,1,3]]],[18,1,1,3,4,[[526,1,1,3,4]]]],[2107,3741,3743,14656]]],["+",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3741]]],["ransom",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2107]]],["redeemed",[2,2,[[3,2,2,0,2,[[119,2,2,0,2]]]],[3741,3743]]],["redemption",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14656]]]]},{"k":"H6307","v":[["*",[11,11,[[0,11,11,0,11,[[24,1,1,0,1],[27,4,4,1,5],[30,1,1,5,6],[32,1,1,6,7],[34,2,2,7,9],[45,1,1,9,10],[47,1,1,10,11]]]],[678,775,778,779,780,891,978,1020,1037,1401,1458]]],["+",[4,4,[[0,4,4,0,4,[[24,1,1,0,1],[32,1,1,1,2],[34,1,1,2,3],[47,1,1,3,4]]]],[678,978,1020,1458]]],["Padanaram",[7,7,[[0,7,7,0,7,[[27,4,4,0,4],[30,1,1,4,5],[34,1,1,5,6],[45,1,1,6,7]]]],[775,778,779,780,891,1037,1401]]]]},{"k":"H6308","v":[["Deliver",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13674]]]]},{"k":"H6309","v":[["fat",[3,3,[[2,3,3,0,3,[[90,2,2,0,2],[97,1,1,2,3]]]],[2753,2757,2937]]]]},{"k":"H6310","v":[["*",[497,459,[[0,21,20,0,20,[[3,1,1,0,1],[7,1,1,1,2],[23,1,1,2,3],[24,1,1,3,4],[28,5,4,4,8],[33,1,1,8,9],[40,1,1,9,10],[41,1,1,10,11],[42,3,3,11,14],[43,3,3,14,17],[44,2,2,17,19],[46,1,1,19,20]]],[1,23,17,20,37,[[53,7,5,20,25],[61,1,1,25,26],[62,1,1,26,27],[65,3,3,27,30],[66,2,2,30,32],[72,1,1,32,33],[77,3,1,33,34],[83,1,1,34,35],[87,1,1,35,36],[88,3,1,36,37]]],[2,8,7,37,44,[[113,1,1,37,38],[114,4,3,38,41],[116,3,3,41,44]]],[3,49,43,44,87,[[119,3,3,44,47],[120,5,5,47,52],[122,1,1,52,53],[123,3,3,53,56],[125,8,4,56,60],[126,1,1,60,61],[128,2,1,61,62],[129,1,1,62,63],[130,1,1,63,64],[132,2,2,64,66],[136,1,1,66,67],[137,1,1,67,68],[138,3,3,68,71],[139,3,3,71,74],[140,1,1,74,75],[142,3,3,75,78],[143,3,2,78,80],[146,1,1,80,81],[148,1,1,81,82],[149,2,2,82,84],[151,2,2,84,86],[152,1,1,86,87]]],[4,23,20,87,107,[[153,2,2,87,89],[160,1,1,89,90],[161,1,1,90,91],[163,1,1,91,92],[165,2,1,92,93],[169,4,3,93,96],[170,1,1,96,97],[171,2,1,97,98],[172,1,1,98,99],[173,2,2,99,101],[175,1,1,101,102],[182,1,1,102,103],[183,2,2,103,105],[184,1,1,105,106],[186,1,1,106,107]]],[5,27,26,107,133,[[187,2,2,107,109],[192,2,2,109,111],[194,2,1,111,112],[195,2,2,112,114],[196,9,9,114,123],[197,3,3,123,126],[201,1,1,126,127],[203,1,1,127,128],[204,1,1,128,129],[205,2,2,129,131],[207,1,1,131,132],[208,1,1,132,133]]],[6,14,13,133,146,[[211,2,2,133,135],[214,2,2,135,137],[217,1,1,137,138],[219,1,1,138,139],[221,3,2,139,141],[228,2,2,141,143],[230,2,2,143,145],[231,1,1,145,146]]],[8,13,12,146,158,[[236,1,1,146,147],[237,2,2,147,149],[247,2,2,149,151],[248,1,1,151,152],[249,2,2,152,154],[250,2,2,154,156],[252,1,1,156,157],[257,2,1,157,158]]],[9,8,8,158,166,[[267,1,1,158,159],[279,1,1,159,160],[280,2,2,160,162],[281,1,1,162,163],[283,1,1,163,164],[284,1,1,164,165],[288,1,1,165,166]]],[10,13,11,166,177,[[297,3,1,166,167],[298,2,2,167,169],[303,2,2,169,171],[307,2,2,171,173],[309,1,1,173,174],[312,3,3,174,177]]],[11,10,7,177,184,[[314,1,1,177,178],[316,2,1,178,179],[322,3,2,179,181],[333,2,1,181,182],[335,1,1,182,183],[336,1,1,183,184]]],[12,3,3,184,187,[[349,2,2,184,186],[353,1,1,186,187]]],[13,10,10,187,197,[[372,2,2,187,189],[384,3,3,189,192],[397,1,1,192,193],[401,1,1,193,194],[402,3,3,194,197]]],[14,4,3,197,200,[[403,1,1,197,198],[410,1,1,198,199],[411,2,1,199,200]]],[15,1,1,200,201,[[421,1,1,200,201]]],[16,1,1,201,202,[[432,1,1,201,202]]],[17,36,36,202,238,[[436,2,2,202,204],[438,1,1,204,205],[440,2,2,205,207],[442,1,1,207,208],[443,2,2,208,210],[444,1,1,210,211],[450,4,4,211,215],[451,2,2,215,217],[454,1,1,217,218],[455,1,1,218,219],[456,1,1,219,220],[457,1,1,220,221],[458,2,2,221,223],[464,2,2,223,225],[465,1,1,225,226],[466,1,1,226,227],[467,1,1,227,228],[468,2,2,228,230],[470,1,1,230,231],[471,1,1,231,232],[472,1,1,232,233],[474,1,1,233,234],[475,2,2,234,236],[476,2,2,236,238]]],[18,67,66,238,304,[[482,1,1,238,239],[485,1,1,239,240],[487,1,1,240,241],[494,2,2,241,243],[495,1,1,243,244],[496,1,1,244,245],[499,2,2,245,247],[510,1,1,247,248],[511,1,1,248,249],[512,1,1,249,250],[513,1,1,250,251],[514,1,1,251,252],[515,2,2,252,254],[516,2,2,254,256],[517,1,1,256,257],[526,2,2,257,259],[527,2,2,259,261],[528,1,1,261,262],[531,1,1,262,263],[532,1,1,263,264],[535,1,1,264,265],[536,2,2,265,267],[539,1,1,267,268],[540,2,2,268,270],[543,2,2,270,272],[546,1,1,272,273],[548,2,2,273,275],[550,1,1,275,276],[555,4,4,276,280],[558,1,1,280,281],[566,1,1,281,282],[582,1,1,282,283],[584,1,1,283,284],[586,3,2,284,286],[592,1,1,286,287],[596,7,7,287,294],[603,1,1,294,295],[610,1,1,295,296],[612,2,2,296,298],[615,1,1,298,299],[618,2,2,299,301],[621,2,2,301,303],[622,1,1,303,304]]],[19,56,54,304,358,[[629,1,1,304,305],[631,2,2,305,307],[632,2,2,307,309],[633,3,2,309,311],[634,1,1,311,312],[635,4,4,312,316],[637,6,5,316,321],[638,2,2,321,323],[639,3,3,323,326],[640,2,2,326,328],[641,1,1,328,329],[642,4,4,329,333],[643,3,3,333,336],[645,4,4,336,340],[646,2,2,340,342],[647,1,1,342,343],[648,1,1,343,344],[649,2,2,344,346],[651,1,1,346,347],[653,4,4,347,351],[654,2,2,351,353],[657,2,2,353,355],[658,3,3,355,358]]],[20,7,6,358,364,[[663,2,2,358,360],[664,1,1,360,361],[666,1,1,361,362],[668,3,2,362,364]]],[21,1,1,364,365,[[671,1,1,364,365]]],[22,28,24,365,389,[[679,1,1,365,366],[683,1,1,366,367],[684,1,1,367,368],[687,2,2,368,370],[688,1,1,370,371],[689,1,1,371,372],[697,1,1,372,373],[707,1,1,373,374],[708,1,1,374,375],[712,1,1,375,376],[718,1,1,376,377],[723,1,1,377,378],[726,1,1,378,379],[727,1,1,379,380],[729,1,1,380,381],[730,1,1,381,382],[731,3,2,382,384],[733,1,1,384,385],[735,1,1,385,386],[736,1,1,386,387],[737,4,1,387,388],[740,1,1,388,389]]],[23,28,25,389,414,[[745,2,1,389,390],[749,1,1,390,391],[751,1,1,391,392],[753,3,3,392,395],[756,1,1,395,396],[759,1,1,396,397],[765,1,1,397,398],[767,1,1,398,399],[773,1,1,399,400],[776,2,1,400,401],[778,2,1,401,402],[780,6,6,402,408],[788,3,3,408,411],[789,1,1,411,412],[792,1,1,412,413],[795,1,1,413,414]]],[24,5,5,414,419,[[797,1,1,414,415],[798,1,1,415,416],[799,3,3,416,419]]],[25,17,16,419,435,[[803,1,1,419,420],[804,4,4,420,424],[805,1,1,424,425],[817,2,2,425,427],[822,1,1,427,428],[825,1,1,428,429],[830,1,1,429,430],[834,4,3,430,433],[835,1,1,433,434],[836,1,1,434,435]]],[26,2,2,435,437,[[859,2,2,435,437]]],[27,3,3,437,440,[[863,1,1,437,438],[867,1,1,438,439],[871,1,1,439,440]]],[28,1,1,440,441,[[876,1,1,440,441]]],[29,2,2,441,443,[[881,1,1,441,442],[884,1,1,442,443]]],[30,1,1,443,444,[[888,1,1,443,444]]],[32,5,5,444,449,[[895,1,1,444,445],[896,1,1,445,446],[898,1,1,446,447],[899,2,2,447,449]]],[33,1,1,449,450,[[902,1,1,449,450]]],[35,1,1,450,451,[[908,1,1,450,451]]],[37,5,5,451,456,[[915,1,1,451,452],[918,1,1,452,453],[919,1,1,453,454],[923,1,1,454,455],[924,1,1,455,456]]],[38,3,3,456,459,[[926,3,3,456,459]]]],[90,194,648,686,797,798,803,805,1006,1235,1279,1297,1302,1311,1325,1326,1332,1370,1379,1432,1611,1612,1613,1616,1617,1820,1876,1963,1965,1968,1984,1996,2157,2325,2523,2654,2687,3458,3485,3520,3521,3578,3586,3588,3708,3731,3743,3770,3780,3784,3788,3792,3844,3855,3857,3858,3982,3983,3985,3988,4001,4067,4078,4149,4224,4226,4335,4364,4393,4403,4413,4421,4428,4432,4459,4499,4543,4545,4568,4575,4650,4742,4762,4798,4853,4875,4884,4918,4935,5140,5180,5214,5287,5370,5374,5375,5402,5421,5440,5452,5464,5523,5722,5747,5749,5759,5844,5859,5869,5959,5970,6026,6039,6051,6082,6086,6091,6092,6094,6096,6099,6101,6103,6118,6119,6121,6215,6279,6297,6368,6371,6384,6435,6517,6534,6614,6615,6700,6792,6864,6865,7012,7020,7091,7102,7112,7224,7241,7243,7474,7475,7506,7534,7535,7568,7584,7653,7806,8038,8349,8359,8375,8403,8454,8503,8611,8965,9000,9009,9205,9210,9318,9341,9405,9493,9502,9503,9560,9637,9814,9818,10135,10200,10205,10743,10752,10832,11286,11297,11554,11563,11564,11856,11988,12005,12014,12015,12017,12218,12248,12531,12815,12884,12886,12905,12966,12967,13019,13031,13050,13071,13208,13209,13216,13233,13243,13248,13313,13338,13360,13411,13423,13431,13541,13555,13575,13615,13633,13652,13656,13736,13752,13771,13861,13868,13887,13907,13909,13982,14014,14048,14106,14113,14126,14182,14217,14225,14372,14389,14431,14441,14480,14503,14504,14513,14521,14528,14651,14661,14684,14687,14706,14727,14753,14785,14797,14802,14831,14844,14850,14887,14890,14950,14984,14991,15029,15114,15115,15143,15149,15227,15327,15611,15741,15757,15785,15835,15911,15941,15970,15986,16001,16006,16029,16117,16171,16191,16192,16235,16279,16283,16313,16316,16341,16439,16495,16514,16521,16524,16542,16552,16599,16605,16610,16615,16631,16662,16667,16670,16687,16688,16697,16699,16725,16727,16733,16749,16750,16775,16809,16821,16830,16835,16850,16863,16866,16905,16907,16908,16921,16949,16953,16971,17007,17021,17029,17086,17148,17150,17156,17169,17171,17190,17271,17283,17292,17293,17310,17399,17403,17424,17460,17505,17506,17539,17674,17753,17776,17841,17846,17864,17888,18011,18206,18219,18319,18425,18584,18617,18638,18689,18711,18718,18720,18751,18769,18800,18821,18856,18955,19072,19147,19183,19187,19195,19251,19334,19447,19500,19645,19735,19804,19846,19848,19859,19860,19869,19874,20027,20035,20036,20041,20108,20256,20328,20348,20383,20392,20400,20500,20504,20505,20519,20529,20543,20818,20825,20966,21083,21204,21287,21302,21311,21323,21357,22018,22031,22122,22172,22237,22296,22407,22455,22522,22613,22624,22660,22669,22680,22724,22833,22944,22985,23006,23067,23080,23109,23110,23112]]],["+",[63,61,[[2,2,2,0,2,[[116,2,2,0,2]]],[3,3,3,2,5,[[142,1,1,2,3],[146,1,1,3,4],[148,1,1,4,5]]],[4,2,2,5,7,[[169,1,1,5,6],[183,1,1,6,7]]],[5,2,2,7,9,[[187,1,1,7,8],[192,1,1,8,9]]],[6,1,1,9,10,[[221,1,1,9,10]]],[8,3,3,10,13,[[237,1,1,10,11],[248,1,1,11,12],[252,1,1,12,13]]],[9,1,1,13,14,[[288,1,1,13,14]]],[13,2,2,14,16,[[401,1,1,14,15],[402,1,1,15,16]]],[14,3,3,16,19,[[403,1,1,16,17],[410,1,1,17,18],[411,1,1,18,19]]],[15,1,1,19,20,[[421,1,1,19,20]]],[16,1,1,20,21,[[432,1,1,20,21]]],[17,7,7,21,28,[[440,1,1,21,22],[450,1,1,22,23],[457,1,1,23,24],[471,1,1,24,25],[472,1,1,25,26],[476,2,2,26,28]]],[18,4,4,28,32,[[485,1,1,28,29],[495,1,1,29,30],[499,1,1,30,31],[596,1,1,31,32]]],[19,2,2,32,34,[[629,1,1,32,33],[646,1,1,33,34]]],[22,6,4,34,38,[[723,1,1,34,35],[726,1,1,35,36],[733,1,1,36,37],[737,3,1,37,38]]],[23,11,11,38,49,[[751,1,1,38,39],[767,1,1,39,40],[780,6,6,40,46],[788,1,1,46,47],[789,1,1,47,48],[795,1,1,48,49]]],[24,1,1,49,50,[[799,1,1,49,50]]],[25,3,3,50,53,[[804,1,1,50,51],[834,1,1,51,52],[835,1,1,52,53]]],[27,1,1,53,54,[[863,1,1,53,54]]],[28,1,1,54,55,[[876,1,1,54,55]]],[29,1,1,55,56,[[881,1,1,55,56]]],[30,1,1,56,57,[[888,1,1,56,57]]],[37,2,2,57,59,[[918,1,1,57,58],[919,1,1,58,59]]],[38,2,2,59,61,[[926,2,2,59,61]]]],[3578,3588,4545,4650,4742,5374,5749,5859,5959,6865,7243,7506,7653,8611,11988,12005,12017,12218,12248,12531,12815,12966,13216,13411,13752,13771,13907,13909,14014,14126,14225,15941,16439,16949,18584,18617,18751,18821,19147,19500,19846,19848,19859,19860,19869,19874,20027,20041,20256,20392,20519,21287,21323,22122,22296,22407,22522,22985,23006,23110,23112]]],["accord",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6039]]],["according",[3,3,[[5,1,1,0,1,[[204,1,1,0,1]]],[10,1,1,1,2,[[307,1,1,1,2]]],[19,1,1,2,3,[[639,1,1,2,3]]]],[6297,9318,16727]]],["after",[1,1,[[23,1,1,0,1,[[773,1,1,0,1]]]],[19645]]],["another",[3,3,[[11,2,2,0,2,[[322,1,1,0,1],[333,1,1,1,2]]],[14,1,1,2,3,[[411,1,1,2,3]]]],[9814,10135,12248]]],["appointment",[2,2,[[3,1,1,0,1,[[120,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]]],[3770,8349]]],["assent",[1,1,[[13,1,1,0,1,[[384,1,1,0,1]]]],[11554]]],["collar",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13575]]],["command",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13861]]],["commandment",[37,33,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,2,2,1,3,[[66,1,1,1,2],[87,1,1,2,3]]],[3,18,14,3,17,[[119,1,1,3,4],[120,3,3,4,7],[125,7,3,7,10],[126,1,1,10,11],[129,1,1,11,12],[130,1,1,12,13],[140,1,1,13,14],[143,1,1,14,15],[149,2,2,15,17]]],[4,3,3,17,20,[[153,2,2,17,19],[161,1,1,19,20]]],[5,4,4,20,24,[[187,1,1,20,21],[201,1,1,21,22],[203,1,1,22,23],[207,1,1,23,24]]],[8,3,3,24,27,[[247,2,2,24,26],[250,1,1,26,27]]],[11,2,2,27,29,[[335,1,1,27,28],[336,1,1,28,29]]],[12,1,1,29,30,[[349,1,1,29,30]]],[19,1,1,30,31,[[635,1,1,30,31]]],[20,1,1,31,32,[[666,1,1,31,32]]],[24,1,1,32,33,[[797,1,1,32,33]]]],[1379,1984,2654,3731,3780,3784,3792,3983,3985,3988,4001,4078,4149,4459,4568,4762,4798,4918,4935,5180,5869,6215,6279,6384,7474,7475,7584,10200,10205,10752,16631,17460,20328]]],["eat",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[686]]],["edge",[35,32,[[0,1,1,0,1,[[33,1,1,0,1]]],[1,1,1,1,2,[[66,1,1,1,2]]],[3,1,1,2,3,[[137,1,1,2,3]]],[4,3,2,3,5,[[165,2,1,3,4],[172,1,1,4,5]]],[5,13,12,5,17,[[192,1,1,5,6],[194,2,1,6,7],[196,6,6,7,13],[197,3,3,13,16],[205,1,1,16,17]]],[6,8,8,17,25,[[211,2,2,17,19],[214,2,2,19,21],[228,1,1,21,22],[230,2,2,22,24],[231,1,1,24,25]]],[8,3,2,25,27,[[250,1,1,25,26],[257,2,1,26,27]]],[9,1,1,27,28,[[281,1,1,27,28]]],[11,1,1,28,29,[[322,1,1,28,29]]],[17,2,2,29,31,[[436,2,2,29,31]]],[23,1,1,31,32,[[765,1,1,31,32]]]],[1006,1996,4364,5287,5440,5970,6026,6092,6094,6096,6099,6101,6103,6118,6119,6121,6368,6517,6534,6614,6615,7020,7091,7102,7112,7568,7806,8403,9818,12884,12886,19447]]],["end",[2,2,[[11,2,2,0,2,[[322,1,1,0,1],[333,1,1,1,2]]]],[9814,10135]]],["entry",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16605]]],["go",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17021]]],["hole",[6,2,[[1,6,2,0,2,[[77,3,1,0,1],[88,3,1,1,2]]]],[2325,2687]]],["in",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22237]]],["mind",[1,1,[[2,1,1,0,1,[[113,1,1,0,1]]]],[3458]]],["mouth",[277,260,[[0,14,13,0,13,[[3,1,1,0,1],[7,1,1,1,2],[23,1,1,2,3],[28,5,4,3,7],[41,1,1,7,8],[42,2,2,8,10],[43,2,2,10,12],[44,1,1,12,13]]],[1,8,6,13,19,[[53,6,4,13,17],[62,1,1,17,18],[72,1,1,18,19]]],[3,11,10,19,29,[[128,2,1,19,20],[132,2,2,20,22],[138,2,2,22,24],[139,3,3,24,27],[142,1,1,27,28],[151,1,1,28,29]]],[4,10,8,29,37,[[160,1,1,29,30],[163,1,1,30,31],[169,2,1,31,32],[170,1,1,32,33],[171,2,1,33,34],[175,1,1,34,35],[182,1,1,35,36],[184,1,1,36,37]]],[5,4,4,37,41,[[195,1,1,37,38],[196,3,3,38,41]]],[6,5,5,41,46,[[217,1,1,41,42],[219,1,1,42,43],[221,2,2,43,45],[228,1,1,45,46]]],[8,4,4,46,50,[[236,1,1,46,47],[237,1,1,47,48],[249,2,2,48,50]]],[9,4,4,50,54,[[267,1,1,50,51],[280,2,2,51,53],[284,1,1,53,54]]],[10,11,9,54,63,[[297,3,1,54,55],[298,2,2,55,57],[303,1,1,57,58],[307,1,1,58,59],[309,1,1,59,60],[312,3,3,60,63]]],[11,2,1,63,64,[[316,2,1,63,64]]],[12,1,1,64,65,[[353,1,1,64,65]]],[13,6,6,65,71,[[372,2,2,65,67],[384,2,2,67,69],[402,2,2,69,71]]],[17,24,24,71,95,[[438,1,1,71,72],[440,1,1,72,73],[442,1,1,73,74],[443,2,2,74,76],[444,1,1,76,77],[450,3,3,77,80],[451,2,2,80,82],[454,1,1,82,83],[455,1,1,83,84],[456,1,1,84,85],[458,2,2,85,87],[464,2,2,87,89],[466,1,1,89,90],[467,1,1,90,91],[468,1,1,91,92],[470,1,1,92,93],[475,2,2,93,95]]],[18,56,55,95,150,[[482,1,1,95,96],[487,1,1,96,97],[494,2,2,97,99],[496,1,1,99,100],[510,1,1,100,101],[511,1,1,101,102],[512,1,1,102,103],[513,1,1,103,104],[514,1,1,104,105],[515,2,2,105,107],[516,2,2,107,109],[517,1,1,109,110],[526,1,1,110,111],[527,2,2,111,113],[528,1,1,113,114],[531,1,1,114,115],[532,1,1,115,116],[535,1,1,116,117],[536,2,2,117,119],[539,1,1,119,120],[540,2,2,120,122],[543,2,2,122,124],[546,1,1,124,125],[548,2,2,125,127],[550,1,1,127,128],[555,3,3,128,131],[558,1,1,131,132],[566,1,1,132,133],[582,1,1,133,134],[584,1,1,134,135],[586,3,2,135,137],[596,6,6,137,143],[603,1,1,143,144],[615,1,1,144,145],[618,2,2,145,147],[621,2,2,147,149],[622,1,1,149,150]]],[19,48,46,150,196,[[631,2,2,150,152],[632,1,1,152,153],[633,3,2,153,155],[634,1,1,155,156],[635,2,2,156,158],[637,6,5,158,163],[638,2,2,163,165],[639,2,2,165,167],[640,2,2,167,169],[641,1,1,169,170],[642,4,4,170,174],[643,3,3,174,177],[645,4,4,177,181],[646,1,1,181,182],[647,1,1,182,183],[648,1,1,183,184],[649,1,1,184,185],[651,1,1,185,186],[653,4,4,186,190],[654,1,1,190,191],[657,2,2,191,193],[658,3,3,193,196]]],[20,5,5,196,201,[[663,2,2,196,198],[664,1,1,198,199],[668,2,2,199,201]]],[21,1,1,201,202,[[671,1,1,201,202]]],[22,21,20,202,222,[[679,1,1,202,203],[683,1,1,203,204],[684,1,1,204,205],[687,2,2,205,207],[688,1,1,207,208],[689,1,1,208,209],[697,1,1,209,210],[707,1,1,210,211],[708,1,1,211,212],[712,1,1,212,213],[718,1,1,213,214],[727,1,1,214,215],[729,1,1,215,216],[731,3,2,216,218],[735,1,1,218,219],[736,1,1,219,220],[737,1,1,220,221],[740,1,1,221,222]]],[23,14,11,222,233,[[745,2,1,222,223],[749,1,1,223,224],[753,3,3,224,227],[756,1,1,227,228],[759,1,1,228,229],[776,2,1,229,230],[778,2,1,230,231],[788,1,1,231,232],[792,1,1,232,233]]],[24,2,2,233,235,[[798,1,1,233,234],[799,1,1,234,235]]],[25,14,13,235,248,[[803,1,1,235,236],[804,3,3,236,239],[805,1,1,239,240],[817,2,2,240,242],[822,1,1,242,243],[825,1,1,243,244],[830,1,1,244,245],[834,3,2,245,247],[836,1,1,247,248]]],[26,2,2,248,250,[[859,2,2,248,250]]],[27,1,1,250,251,[[867,1,1,250,251]]],[32,4,4,251,255,[[896,1,1,251,252],[898,1,1,252,253],[899,2,2,253,255]]],[33,1,1,255,256,[[902,1,1,255,256]]],[35,1,1,256,257,[[908,1,1,256,257]]],[37,2,2,257,259,[[915,1,1,257,258],[924,1,1,258,259]]],[38,1,1,259,260,[[926,1,1,259,260]]]],[90,194,648,797,798,803,805,1279,1302,1311,1325,1326,1370,1612,1613,1616,1617,1876,2157,4067,4224,4226,4403,4413,4421,4428,4432,4499,4875,5140,5214,5370,5402,5421,5523,5722,5759,6051,6082,6086,6091,6700,6792,6864,6865,7012,7224,7241,7534,7535,8038,8359,8375,8503,8965,9000,9009,9205,9341,9405,9493,9502,9503,9637,10832,11286,11297,11563,11564,12014,12015,12905,12967,13019,13031,13050,13071,13208,13209,13233,13243,13248,13313,13338,13360,13423,13431,13541,13555,13615,13633,13652,13736,13868,13887,13982,14048,14106,14113,14182,14372,14389,14431,14441,14480,14503,14504,14513,14521,14528,14651,14684,14687,14706,14727,14753,14785,14797,14802,14831,14844,14850,14887,14890,14950,14984,14991,15029,15114,15115,15149,15227,15327,15611,15741,15757,15785,15911,15970,15986,16001,16006,16029,16117,16235,16279,16283,16313,16316,16341,16495,16514,16524,16542,16552,16599,16610,16615,16662,16667,16670,16687,16688,16697,16699,16725,16733,16749,16750,16775,16809,16821,16830,16835,16850,16863,16866,16905,16907,16908,16921,16953,16971,17007,17029,17086,17148,17150,17156,17169,17171,17271,17283,17292,17293,17310,17399,17403,17424,17505,17506,17539,17674,17753,17776,17841,17846,17864,17888,18011,18206,18219,18319,18425,18638,18689,18718,18720,18769,18800,18821,18856,18955,19072,19183,19187,19195,19251,19334,19735,19804,20036,20108,20348,20383,20500,20504,20505,20529,20543,20818,20825,20966,21083,21204,21302,21311,21357,22018,22031,22172,22624,22660,22669,22680,22724,22833,22944,23080,23109]]],["mouths",[11,11,[[0,1,1,0,1,[[43,1,1,0,1]]],[4,1,1,1,2,[[183,1,1,1,2]]],[18,5,5,2,7,[[499,1,1,2,3],[555,1,1,3,4],[592,1,1,4,5],[612,2,2,5,7]]],[22,1,1,7,8,[[730,1,1,7,8]]],[23,1,1,8,9,[[788,1,1,8,9]]],[24,1,1,9,10,[[799,1,1,9,10]]],[32,1,1,10,11,[[895,1,1,10,11]]]],[1332,5747,14217,15143,15835,16191,16192,18711,20035,20400,22613]]],["parts",[1,1,[[37,1,1,0,1,[[923,1,1,0,1]]]],[23067]]],["portion",[2,2,[[4,1,1,0,1,[[173,1,1,0,1]]],[11,1,1,1,2,[[314,1,1,1,2]]]],[5464,9560]]],["saith",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8454]]],["sayings",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14661]]],["sentence",[1,1,[[4,1,1,0,1,[[169,1,1,0,1]]]],[5375]]],["skirts",[1,1,[[18,1,1,0,1,[[610,1,1,0,1]]]],[16171]]],["sound",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22455]]],["speech",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1611]]],["talk",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17506]]],["tenor",[2,2,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,1,1,1,2,[[83,1,1,1,2]]]],[1297,2523]]],["to",[15,14,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,4,4,1,5,[[61,1,1,1,2],[65,3,3,2,5]]],[2,3,2,5,7,[[114,2,1,5,6],[116,1,1,6,7]]],[3,5,5,7,12,[[122,1,1,7,8],[123,2,2,8,10],[142,1,1,10,11],[151,1,1,11,12]]],[13,1,1,12,13,[[397,1,1,12,13]]],[19,1,1,13,14,[[654,1,1,13,14]]]],[1432,1820,1963,1965,1968,3485,3586,3844,3855,3857,4543,4853,11856,17190]]],["twoedged",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16521]]],["unto",[3,3,[[2,2,2,0,2,[[114,2,2,0,2]]],[3,1,1,2,3,[[123,1,1,2,3]]]],[3520,3521,3858]]],["when",[1,1,[[3,1,1,0,1,[[125,1,1,0,1]]]],[3982]]],["wish",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13656]]],["word",[15,14,[[0,1,1,0,1,[[40,1,1,0,1]]],[3,8,7,1,8,[[119,2,2,1,3],[120,1,1,3,4],[136,1,1,4,5],[138,1,1,5,6],[143,2,1,6,7],[152,1,1,7,8]]],[4,2,2,8,10,[[173,1,1,8,9],[186,1,1,9,10]]],[5,2,2,10,12,[[205,1,1,10,11],[208,1,1,11,12]]],[10,1,1,12,13,[[303,1,1,12,13]]],[12,1,1,13,14,[[349,1,1,13,14]]]],[1235,3708,3743,3788,4335,4393,4575,4884,5452,5844,6371,6435,9210,10743]]]]},{"k":"H6311","v":[["*",[82,57,[[0,3,3,0,3,[[18,1,1,0,1],[21,1,1,1,2],[39,1,1,2,3]]],[3,3,3,3,6,[[138,1,1,3,4],[148,2,2,4,6]]],[4,5,4,6,10,[[157,2,2,6,8],[164,1,1,8,9],[181,2,1,9,10]]],[5,2,2,10,12,[[204,2,2,10,12]]],[6,3,3,12,15,[[214,1,1,12,13],[228,1,1,13,14],[229,1,1,14,15]]],[7,2,2,15,17,[[235,2,2,15,17]]],[8,3,3,17,20,[[251,1,1,17,18],[256,1,1,18,19],[258,1,1,19,20]]],[9,1,1,20,21,[[286,1,1,20,21]]],[10,4,4,21,25,[[292,1,1,21,22],[309,2,2,22,24],[312,1,1,24,25]]],[11,8,7,25,32,[[314,3,3,25,28],[315,2,1,28,29],[319,2,2,29,31],[322,1,1,31,32]]],[12,1,1,32,33,[[366,1,1,32,33]]],[13,1,1,33,34,[[384,1,1,33,34]]],[14,1,1,34,35,[[406,1,1,34,35]]],[17,2,1,35,36,[[473,2,1,35,36]]],[18,1,1,36,37,[[609,1,1,36,37]]],[22,4,2,37,39,[[700,3,1,37,38],[730,1,1,38,39]]],[25,38,18,39,57,[[809,3,3,39,42],[841,25,10,42,52],[842,10,5,52,57]]]],[469,552,1187,4383,4724,4734,5056,5084,5248,5694,6299,6301,6619,6996,7033,7191,7192,7606,7780,7813,8558,8800,9396,9400,9487,9553,9555,9557,9587,9710,9711,9816,11181,11548,12112,13804,16165,18068,18701,20610,20613,20621,21487,21489,21498,21503,21511,21514,21516,21518,21525,21526,21527,21528,21541,21545,21552]]],["+",[36,16,[[17,1,1,0,1,[[473,1,1,0,1]]],[25,35,15,1,16,[[841,25,10,1,11],[842,10,5,11,16]]]],[13804,21487,21489,21498,21503,21511,21514,21516,21518,21525,21526,21527,21528,21541,21545,21552]]],["Here",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9587]]],["here",[43,40,[[0,3,3,0,3,[[18,1,1,0,1],[21,1,1,1,2],[39,1,1,2,3]]],[3,3,3,3,6,[[138,1,1,3,4],[148,2,2,4,6]]],[4,5,4,6,10,[[157,2,2,6,8],[164,1,1,8,9],[181,2,1,9,10]]],[5,2,2,10,12,[[204,2,2,10,12]]],[6,3,3,12,15,[[214,1,1,12,13],[228,1,1,13,14],[229,1,1,14,15]]],[7,2,2,15,17,[[235,2,2,15,17]]],[8,2,2,17,19,[[256,1,1,17,18],[258,1,1,18,19]]],[9,1,1,19,20,[[286,1,1,19,20]]],[10,4,4,20,24,[[292,1,1,20,21],[309,2,2,21,23],[312,1,1,23,24]]],[11,7,7,24,31,[[314,3,3,24,27],[315,1,1,27,28],[319,2,2,28,30],[322,1,1,30,31]]],[12,1,1,31,32,[[366,1,1,31,32]]],[13,1,1,32,33,[[384,1,1,32,33]]],[17,1,1,33,34,[[473,1,1,33,34]]],[18,1,1,34,35,[[609,1,1,34,35]]],[22,4,2,35,37,[[700,3,1,35,36],[730,1,1,36,37]]],[25,3,3,37,40,[[809,3,3,37,40]]]],[469,552,1187,4383,4724,4734,5056,5084,5248,5694,6299,6301,6619,6996,7033,7191,7192,7780,7813,8558,8800,9396,9400,9487,9553,9555,9557,9587,9710,9711,9816,11181,11548,13804,16165,18068,18701,20610,20613,20621]]],["hither",[2,2,[[8,1,1,0,1,[[251,1,1,0,1]]],[14,1,1,1,2,[[406,1,1,1,2]]]],[7606,12112]]]]},{"k":"H6312","v":[["*",[4,4,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[6,1,1,2,3,[[220,1,1,2,3]]],[12,1,1,3,4,[[344,1,1,3,4]]]],[1399,4512,6812,10536]]],["Phuvah",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1399]]],["Pua",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4512]]],["Puah",[2,2,[[6,1,1,0,1,[[220,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]]],[6812,10536]]]]},{"k":"H6313","v":[["*",[4,4,[[0,1,1,0,1,[[44,1,1,0,1]]],[18,2,2,1,3,[[515,1,1,1,2],[554,1,1,2,3]]],[34,1,1,3,4,[[903,1,1,3,4]]]],[1384,14498,15095,22735]]],["ceased",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15095]]],["fainted",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1384]]],["feeble",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14498]]],["slacked",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22735]]]]},{"k":"H6314","v":[["rest",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20350]]]]},{"k":"H6315","v":[["*",[14,14,[[18,2,2,0,2,[[487,1,1,0,1],[489,1,1,1,2]]],[19,7,7,2,9,[[633,1,1,2,3],[639,1,1,3,4],[641,2,2,4,6],[646,2,2,6,8],[656,1,1,8,9]]],[21,3,3,9,12,[[672,1,1,9,10],[674,2,2,10,12]]],[25,1,1,12,13,[[822,1,1,12,13]]],[34,1,1,13,14,[[904,1,1,13,14]]]],[14046,14071,16559,16736,16777,16797,16930,16934,17232,17571,17588,17598,20975,22751]]],["+",[2,2,[[19,1,1,0,1,[[656,1,1,0,1]]],[21,1,1,1,2,[[674,1,1,1,2]]]],[17232,17588]]],["blow",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20975]]],["break",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17571]]],["puffeth",[2,2,[[18,2,2,0,2,[[487,1,1,0,1],[489,1,1,1,2]]]],[14046,14071]]],["speak",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22751]]],["speaketh",[5,5,[[19,5,5,0,5,[[633,1,1,0,1],[639,1,1,1,2],[641,1,1,2,3],[646,2,2,3,5]]]],[16559,16736,16797,16930,16934]]],["upon",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17598]]],["utter",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16777]]]]},{"k":"H6316","v":[["*",[7,7,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[23,1,1,2,3,[[790,1,1,2,3]]],[25,3,3,3,6,[[828,1,1,3,4],[831,1,1,4,5],[839,1,1,5,6]]],[33,1,1,6,7,[[902,1,1,6,7]]]],[240,10260,20054,21131,21209,21430,22721]]],["Libya",[2,2,[[25,2,2,0,2,[[831,1,1,0,1],[839,1,1,1,2]]]],[21209,21430]]],["Libyans",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20054]]],["Phut",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[240,21131]]],["Put",[2,2,[[12,1,1,0,1,[[338,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[10260,22721]]]]},{"k":"H6317","v":[["Putiel",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1680]]]]},{"k":"H6318","v":[["Potiphar",[2,2,[[0,2,2,0,2,[[36,1,1,0,1],[38,1,1,1,2]]]],[1119,1150]]]]},{"k":"H6319","v":[["Potipherah",[3,3,[[0,3,3,0,3,[[40,2,2,0,2],[45,1,1,2,3]]]],[1240,1245,1406]]]]},{"k":"H6320","v":[["*",[4,4,[[11,1,1,0,1,[[321,1,1,0,1]]],[12,1,1,1,2,[[366,1,1,1,2]]],[22,1,1,2,3,[[732,1,1,2,3]]],[23,1,1,3,4,[[748,1,1,3,4]]]],[9786,11166,18734,19057]]],["+",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9786]]],["colours",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18734]]],["glistering",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11166]]],["painting",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19057]]]]},{"k":"H6321","v":[["beans",[2,2,[[9,1,1,0,1,[[283,1,1,0,1]]],[25,1,1,1,2,[[805,1,1,1,2]]]],[8477,20538]]]]},{"k":"H6322","v":[["Pul",[4,3,[[11,2,1,0,1,[[327,2,1,0,1]]],[12,1,1,1,2,[[342,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]]],[9944,10454,18941]]]]},{"k":"H6323","v":[["distracted",[1,1,[[18,1,1,0,1,[[565,1,1,0,1]]]],[15323]]]]},{"k":"H6324","v":[["Punites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4512]]]]},{"k":"H6325","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4802,4803]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4803]]],["Punon",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4802]]]]},{"k":"H6326","v":[["Puah",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1547]]]]},{"k":"H6327","v":[["*",[67,66,[[0,5,5,0,5,[[9,1,1,0,1],[10,3,3,1,4],[48,1,1,4,5]]],[1,1,1,5,6,[[54,1,1,5,6]]],[3,1,1,6,7,[[126,1,1,6,7]]],[4,3,3,7,10,[[156,1,1,7,8],[180,1,1,8,9],[182,1,1,9,10]]],[8,3,3,10,13,[[246,1,1,10,11],[248,1,1,11,12],[249,1,1,12,13]]],[9,3,3,13,16,[[284,1,1,13,14],[286,1,1,14,15],[288,1,1,15,16]]],[10,1,1,16,17,[[312,1,1,16,17]]],[11,1,1,17,18,[[337,1,1,17,18]]],[13,1,1,18,19,[[384,1,1,18,19]]],[15,1,1,19,20,[[413,1,1,19,20]]],[17,5,5,20,25,[[451,1,1,20,21],[453,1,1,21,22],[472,1,1,22,23],[473,1,1,23,24],[475,1,1,24,25]]],[18,3,3,25,28,[[495,1,1,25,26],[545,1,1,26,27],[621,1,1,27,28]]],[19,1,1,28,29,[[632,1,1,28,29]]],[22,3,3,29,32,[[702,1,1,29,30],[706,1,1,30,31],[719,1,1,31,32]]],[23,10,10,32,42,[[753,1,1,32,33],[754,1,1,33,34],[757,1,1,34,35],[762,1,1,35,36],[767,3,3,36,39],[774,1,1,39,40],[784,1,1,40,41],[796,1,1,41,42]]],[25,19,18,42,60,[[812,2,2,42,44],[813,1,1,44,45],[821,3,3,45,48],[823,1,1,48,49],[829,1,1,49,50],[830,2,2,50,52],[831,2,2,52,54],[835,5,4,54,58],[837,1,1,58,59],[847,1,1,59,60]]],[33,1,1,60,61,[[901,1,1,60,61]]],[34,2,2,61,63,[[905,2,2,61,63]]],[35,1,1,63,64,[[908,1,1,63,64]]],[37,2,2,64,66,[[911,1,1,64,65],[923,1,1,65,66]]]],[252,270,274,275,1480,1644,4023,5031,5675,5711,7456,7493,7542,8486,8576,8617,9497,10227,11558,12304,13250,13287,13780,13817,13875,14132,14901,16311,16533,18096,18189,18467,19191,19222,19290,19401,19485,19486,19513,19678,19956,20284,20671,20672,20695,20918,20929,20936,20991,21182,21195,21196,21227,21230,21318,21319,21325,21334,21378,21673,22700,22774,22782,22830,22895,23066]]],["+",[7,7,[[0,1,1,0,1,[[10,1,1,0,1]]],[15,1,1,1,2,[[413,1,1,1,2]]],[23,2,2,2,4,[[767,2,2,2,4]]],[25,3,3,4,7,[[830,1,1,4,5],[831,2,2,5,7]]]],[274,12304,19485,19486,21195,21227,21230]]],["abroad",[8,8,[[0,3,3,0,3,[[9,1,1,0,1],[10,2,2,1,3]]],[1,1,1,3,4,[[54,1,1,3,4]]],[17,1,1,4,5,[[475,1,1,4,5]]],[22,2,2,5,7,[[702,1,1,5,6],[706,1,1,6,7]]],[37,1,1,7,8,[[911,1,1,7,8]]]],[252,270,275,1644,13875,18096,18189,22895]]],["breaketh",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19513]]],["dispersed",[2,2,[[19,1,1,0,1,[[632,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[16533,22830]]],["drive",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13287]]],["pieces",[2,2,[[17,1,1,0,1,[[451,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[13250,22700]]],["retired",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8576]]],["scatter",[12,12,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[180,1,1,2,3]]],[18,1,1,3,4,[[621,1,1,3,4]]],[22,1,1,4,5,[[719,1,1,4,5]]],[23,3,3,5,8,[[753,1,1,5,6],[757,1,1,6,7],[762,1,1,7,8]]],[25,3,3,8,11,[[813,1,1,8,9],[821,1,1,9,10],[823,1,1,10,11]]],[34,1,1,11,12,[[905,1,1,11,12]]]],[1480,5031,5675,16311,18467,19191,19290,19401,20695,20918,20991,22782]]],["scattered",[30,29,[[3,1,1,0,1,[[126,1,1,0,1]]],[4,1,1,1,2,[[182,1,1,1,2]]],[8,2,2,2,4,[[246,1,1,2,3],[248,1,1,3,4]]],[9,2,2,4,6,[[284,1,1,4,5],[288,1,1,5,6]]],[10,1,1,6,7,[[312,1,1,6,7]]],[11,1,1,7,8,[[337,1,1,7,8]]],[13,1,1,8,9,[[384,1,1,8,9]]],[18,2,2,9,11,[[495,1,1,9,10],[545,1,1,10,11]]],[23,4,4,11,15,[[754,1,1,11,12],[774,1,1,12,13],[784,1,1,13,14],[796,1,1,14,15]]],[25,13,12,15,27,[[812,2,2,15,17],[821,2,2,17,19],[829,1,1,19,20],[830,1,1,20,21],[835,5,4,21,25],[837,1,1,25,26],[847,1,1,26,27]]],[34,1,1,27,28,[[905,1,1,27,28]]],[37,1,1,28,29,[[923,1,1,28,29]]]],[4023,5711,7456,7493,8486,8617,9497,10227,11558,14132,14901,19222,19678,19956,20284,20671,20672,20929,20936,21182,21196,21318,21319,21325,21334,21378,21673,22774,23066]]],["scattereth",[2,2,[[17,2,2,0,2,[[472,1,1,0,1],[473,1,1,1,2]]]],[13780,13817]]],["yourselves",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7542]]]]},{"k":"H6328","v":[["*",[2,2,[[22,1,1,0,1,[[706,1,1,0,1]]],[23,1,1,1,2,[[754,1,1,1,2]]]],[18171,19205]]],["move",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19205]]],["stumble",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18171]]]]},{"k":"H6329","v":[["*",[7,7,[[18,2,2,0,2,[[617,1,1,0,1],[621,1,1,1,2]]],[19,4,4,2,6,[[630,1,1,2,3],[635,1,1,3,4],[639,1,1,4,5],[645,1,1,5,6]]],[22,1,1,6,7,[[736,1,1,6,7]]]],[16271,16318,16468,16637,16721,16923,18796]]],["affording",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16318]]],["further",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16271]]],["getteth",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16468]]],["obtain",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16637]]],["obtaineth",[2,2,[[19,2,2,0,2,[[639,1,1,0,1],[645,1,1,1,2]]]],[16721,16923]]],["out",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18796]]]]},{"k":"H6330","v":[["grief",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7892]]]]},{"k":"H6331","v":[["*",[2,2,[[18,2,2,0,2,[[510,1,1,0,1],[566,1,1,1,2]]]],[14376,15359]]],["nought",[1,1,[[18,1,1,0,1,[[510,1,1,0,1]]]],[14376]]],["take",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15359]]]]},{"k":"H6332","v":[["*",[8,7,[[16,8,7,0,7,[[428,1,1,0,1],[434,7,6,1,7]]]],[12754,12858,12860,12862,12863,12865,12866]]],["Pur",[3,3,[[16,3,3,0,3,[[428,1,1,0,1],[434,2,2,1,3]]]],[12754,12858,12860]]],["Purim",[5,5,[[16,5,5,0,5,[[434,5,5,0,5]]]],[12860,12862,12863,12865,12866]]]]},{"k":"H6333","v":[["*",[2,2,[[22,1,1,0,1,[[741,1,1,0,1]]],[36,1,1,1,2,[[910,1,1,1,2]]]],[18869,22871]]],["press",[1,1,[[36,1,1,0,1,[[910,1,1,0,1]]]],[22871]]],["winepress",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18869]]]]},{"k":"H6334","v":[["Poratha",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12842]]]]},{"k":"H6335","v":[["*",[4,4,[[23,1,1,0,1,[[794,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]],[34,1,1,2,3,[[903,1,1,2,3]]],[38,1,1,3,4,[[928,1,1,3,4]]]],[20177,22730,22739,23140]]],["fat",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20177]]],["scattered",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22730]]],["spread",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22739]]],["up",[1,1,[[38,1,1,0,1,[[928,1,1,0,1]]]],[23140]]]]},{"k":"H6336","v":[["Puhites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10359]]]]},{"k":"H6337","v":[["*",[9,9,[[17,1,1,0,1,[[463,1,1,0,1]]],[18,3,3,1,4,[[496,1,1,1,2],[498,1,1,2,3],[596,1,1,3,4]]],[19,1,1,4,5,[[635,1,1,4,5]]],[21,2,2,5,7,[[675,2,2,5,7]]],[22,1,1,7,8,[[691,1,1,7,8]]],[24,1,1,8,9,[[800,1,1,8,9]]]],[13521,14178,14194,16025,16621,17609,17613,17918,20422]]],["+",[4,4,[[18,2,2,0,2,[[496,1,1,0,1],[596,1,1,1,2]]],[19,1,1,2,3,[[635,1,1,2,3]]],[22,1,1,3,4,[[691,1,1,3,4]]]],[14178,16025,16621,17918]]],["gold",[5,5,[[17,1,1,0,1,[[463,1,1,0,1]]],[18,1,1,1,2,[[498,1,1,1,2]]],[21,2,2,2,4,[[675,2,2,2,4]]],[24,1,1,4,5,[[800,1,1,4,5]]]],[13521,14194,17609,17613,20422]]]]},{"k":"H6338","v":[["best",[1,1,[[10,1,1,0,1,[[300,1,1,0,1]]]],[9097]]]]},{"k":"H6339","v":[["*",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[9,1,1,1,2,[[272,1,1,1,2]]]],[1497,8173]]],["leaping",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8173]]],["strong",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1497]]]]},{"k":"H6340","v":[["*",[10,10,[[16,1,1,0,1,[[428,1,1,0,1]]],[18,5,5,1,6,[[530,1,1,1,2],[566,1,1,2,3],[589,1,1,3,4],[618,1,1,4,5],[624,1,1,5,6]]],[19,1,1,6,7,[[638,1,1,6,7]]],[23,2,2,7,9,[[747,1,1,7,8],[794,1,1,8,9]]],[28,1,1,9,10,[[878,1,1,9,10]]]],[12755,14724,15336,15812,16283,16367,16712,19015,20183,22345]]],["+",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19015]]],["abroad",[1,1,[[16,1,1,0,1,[[428,1,1,0,1]]]],[12755]]],["dispersed",[1,1,[[18,1,1,0,1,[[589,1,1,0,1]]]],[15812]]],["scattered",[5,5,[[18,3,3,0,3,[[530,1,1,0,1],[566,1,1,1,2],[618,1,1,2,3]]],[23,1,1,3,4,[[794,1,1,3,4]]],[28,1,1,4,5,[[878,1,1,4,5]]]],[14724,15336,16283,20183,22345]]],["scattereth",[2,2,[[18,1,1,0,1,[[624,1,1,0,1]]],[19,1,1,1,2,[[638,1,1,1,2]]]],[16367,16712]]]]},{"k":"H6341","v":[["*",[27,25,[[1,1,1,0,1,[[88,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[5,1,1,2,3,[[209,1,1,2,3]]],[17,2,2,3,5,[[453,1,1,3,4],[457,1,1,4,5]]],[18,9,8,5,13,[[488,1,1,5,6],[546,1,1,6,7],[568,1,1,7,8],[596,1,1,8,9],[601,2,1,9,10],[617,1,1,10,11],[618,1,1,11,12],[619,1,1,12,13]]],[19,2,2,13,15,[[634,1,1,13,14],[649,1,1,14,15]]],[20,1,1,15,16,[[667,1,1,15,16]]],[22,3,3,16,19,[[686,1,1,16,17],[702,2,2,17,19]]],[23,3,3,19,22,[[762,1,1,19,20],[792,2,2,20,22]]],[27,2,2,22,24,[[866,1,1,22,23],[870,1,1,23,24]]],[29,2,1,24,25,[[881,2,1,24,25]]]],[2667,4232,6473,13285,13399,14065,14957,15398,16008,16109,16268,16285,16289,16598,17020,17487,17821,18112,18113,19406,20123,20124,22153,22216,22400]]],["+",[2,2,[[18,2,2,0,2,[[568,1,1,0,1],[601,1,1,1,2]]]],[15398,16109]]],["gin",[2,2,[[17,1,1,0,1,[[453,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]]],[13285,17821]]],["plates",[2,2,[[1,1,1,0,1,[[88,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]]],[2667,4232]]],["snare",[15,14,[[18,5,5,0,5,[[546,1,1,0,1],[596,1,1,1,2],[601,1,1,2,3],[617,1,1,3,4],[619,1,1,4,5]]],[19,1,1,5,6,[[634,1,1,5,6]]],[20,1,1,6,7,[[667,1,1,6,7]]],[22,2,2,7,9,[[702,2,2,7,9]]],[23,2,2,9,11,[[792,2,2,9,11]]],[27,2,2,11,13,[[866,1,1,11,12],[870,1,1,12,13]]],[29,2,1,13,14,[[881,2,1,13,14]]]],[14957,16008,16109,16268,16289,16598,17487,18112,18113,20123,20124,22153,22216,22400]]],["snares",[6,6,[[5,1,1,0,1,[[209,1,1,0,1]]],[17,1,1,1,2,[[457,1,1,1,2]]],[18,2,2,2,4,[[488,1,1,2,3],[618,1,1,3,4]]],[19,1,1,4,5,[[649,1,1,4,5]]],[23,1,1,5,6,[[762,1,1,5,6]]]],[6473,13399,14065,16285,17020,19406]]]]},{"k":"H6342","v":[["*",[25,25,[[4,2,2,0,2,[[180,2,2,0,2]]],[17,3,3,2,5,[[438,1,1,2,3],[439,1,1,3,4],[458,1,1,4,5]]],[18,5,5,5,10,[[491,1,1,5,6],[504,1,1,6,7],[530,1,1,7,8],[555,1,1,8,9],[596,1,1,9,10]]],[19,2,2,10,12,[[630,1,1,10,11],[655,1,1,11,12]]],[22,8,8,12,20,[[690,1,1,12,13],[697,2,2,13,15],[711,1,1,15,16],[722,2,2,16,18],[729,1,1,18,19],[738,1,1,19,20]]],[23,3,3,20,23,[[777,1,1,20,21],[780,2,2,21,23]]],[27,1,1,23,24,[[864,1,1,23,24]]],[32,1,1,24,25,[[899,1,1,24,25]]]],[5677,5678,12929,12944,13434,14085,14286,14724,15166,16059,16479,17210,17902,18020,18021,18293,18541,18544,18686,18826,19784,19858,19866,22133,22681]]],["+",[4,4,[[17,1,1,0,1,[[438,1,1,0,1]]],[18,2,2,1,3,[[491,1,1,1,2],[530,1,1,2,3]]],[27,1,1,3,4,[[864,1,1,3,4]]]],[12929,14085,14724,22133]]],["Fear",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18541]]],["afraid",[9,9,[[17,1,1,0,1,[[458,1,1,0,1]]],[18,1,1,1,2,[[504,1,1,1,2]]],[19,1,1,2,3,[[630,1,1,2,3]]],[22,3,3,3,6,[[690,1,1,3,4],[697,1,1,4,5],[711,1,1,5,6]]],[23,2,2,6,8,[[780,2,2,6,8]]],[32,1,1,8,9,[[899,1,1,8,9]]]],[13434,14286,16479,17902,18021,18293,19858,19866,22681]]],["awe",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16059]]],["fear",[6,6,[[4,2,2,0,2,[[180,2,2,0,2]]],[22,3,3,2,5,[[697,1,1,2,3],[722,1,1,3,4],[738,1,1,4,5]]],[23,1,1,5,6,[[777,1,1,5,6]]]],[5677,5678,18020,18544,18826,19784]]],["feared",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[22,1,1,1,2,[[729,1,1,1,2]]]],[15166,18686]]],["feareth",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17210]]],["shake",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12944]]]]},{"k":"H6343","v":[["*",[49,48,[[0,2,2,0,2,[[30,2,2,0,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[4,3,3,3,6,[[154,1,1,3,4],[163,1,1,4,5],[180,1,1,5,6]]],[8,1,1,6,7,[[246,1,1,6,7]]],[12,1,1,7,8,[[351,1,1,7,8]]],[13,4,4,8,12,[[380,1,1,8,9],[383,1,1,9,10],[385,1,1,10,11],[386,1,1,11,12]]],[16,3,3,12,15,[[433,1,1,12,13],[434,2,2,13,15]]],[17,10,10,15,25,[[438,1,1,15,16],[439,1,1,16,17],[448,1,1,17,18],[450,1,1,18,19],[456,1,1,19,20],[457,1,1,20,21],[460,1,1,21,22],[466,1,1,22,23],[474,2,2,23,25]]],[18,9,8,25,33,[[491,1,1,25,26],[508,1,1,26,27],[513,1,1,27,28],[530,2,1,28,29],[541,1,1,29,30],[568,1,1,30,31],[582,1,1,31,32],[596,1,1,32,33]]],[19,4,4,33,37,[[628,3,3,33,36],[630,1,1,36,37]]],[21,1,1,37,38,[[673,1,1,37,38]]],[22,5,5,38,43,[[680,3,3,38,41],[702,2,2,41,43]]],[23,4,4,43,47,[[774,1,1,43,44],[792,2,2,44,46],[793,1,1,46,47]]],[24,1,1,47,48,[[799,1,1,47,48]]]],[915,926,1936,4963,5233,5678,7452,10791,11489,11533,11583,11616,12834,12836,12837,12929,12944,13164,13224,13364,13399,13463,13611,13850,13856,14085,14342,14439,14724,14851,15400,15644,16018,16426,16427,16433,16480,17579,17695,17704,17706,18112,18113,19672,20123,20124,20132,20401]]],["+",[11,11,[[4,1,1,0,1,[[180,1,1,0,1]]],[17,2,2,1,3,[[438,1,1,1,2],[456,1,1,2,3]]],[18,5,5,3,8,[[491,1,1,3,4],[530,1,1,4,5],[541,1,1,5,6],[568,1,1,6,7],[596,1,1,7,8]]],[19,2,2,8,10,[[628,1,1,8,9],[630,1,1,9,10]]],[21,1,1,10,11,[[673,1,1,10,11]]]],[5678,12929,13364,14085,14724,14851,15400,16018,16433,16480,17579]]],["Fear",[4,4,[[17,1,1,0,1,[[439,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]],[24,1,1,3,4,[[799,1,1,3,4]]]],[12944,18112,20123,20401]]],["dread",[3,3,[[1,1,1,0,1,[[64,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]],[17,1,1,2,3,[[448,1,1,2,3]]]],[1936,4963,13164]]],["dreadful",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13224]]],["fear",[29,29,[[0,2,2,0,2,[[30,2,2,0,2]]],[4,1,1,2,3,[[163,1,1,2,3]]],[8,1,1,3,4,[[246,1,1,3,4]]],[12,1,1,4,5,[[351,1,1,4,5]]],[13,4,4,5,9,[[380,1,1,5,6],[383,1,1,6,7],[385,1,1,7,8],[386,1,1,8,9]]],[16,3,3,9,12,[[433,1,1,9,10],[434,2,2,10,12]]],[17,4,4,12,16,[[457,1,1,12,13],[460,1,1,13,14],[474,2,2,14,16]]],[18,4,4,16,20,[[508,1,1,16,17],[513,1,1,17,18],[530,1,1,18,19],[582,1,1,19,20]]],[19,2,2,20,22,[[628,2,2,20,22]]],[22,4,4,22,26,[[680,3,3,22,25],[702,1,1,25,26]]],[23,3,3,26,29,[[774,1,1,26,27],[792,1,1,27,28],[793,1,1,28,29]]]],[915,926,5233,7452,10791,11489,11533,11583,11616,12834,12836,12837,13399,13463,13850,13856,14342,14439,14724,15644,16426,16427,17695,17704,17706,18113,19672,20124,20132]]],["terror",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13611]]]]},{"k":"H6344","v":[["stones",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13881]]]]},{"k":"H6345","v":[["fear",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18984]]]]},{"k":"H6346","v":[["*",[28,27,[[10,2,2,0,2,[[300,1,1,0,1],[310,1,1,1,2]]],[11,1,1,2,3,[[330,1,1,2,3]]],[13,1,1,3,4,[[375,1,1,3,4]]],[14,1,1,4,5,[[410,1,1,4,5]]],[15,8,7,5,12,[[414,2,2,5,7],[415,1,1,7,8],[417,4,3,8,11],[424,1,1,11,12]]],[16,3,3,12,15,[[428,1,1,12,13],[433,1,1,13,14],[434,1,1,14,15]]],[22,1,1,15,16,[[714,1,1,15,16]]],[23,3,3,16,19,[[795,3,3,16,19]]],[25,3,3,19,22,[[824,3,3,19,22]]],[36,4,4,22,26,[[909,2,2,22,24],[910,2,2,24,26]]],[38,1,1,26,27,[[925,1,1,26,27]]]],[9094,9432,10048,11378,12237,12314,12316,12334,12396,12397,12400,12650,12759,12826,12837,18339,20235,20240,20269,21013,21019,21030,22841,22854,22857,22876,23097]]],["captain",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]]],[10048,18339]]],["captains",[7,7,[[10,1,1,0,1,[[310,1,1,0,1]]],[23,3,3,1,4,[[795,3,3,1,4]]],[25,3,3,4,7,[[824,3,3,4,7]]]],[9432,20235,20240,20269,21013,21019,21030]]],["deputies",[2,2,[[16,2,2,0,2,[[433,1,1,0,1],[434,1,1,1,2]]]],[12826,12837]]],["governor",[10,9,[[15,5,4,0,4,[[415,1,1,0,1],[417,3,2,1,3],[424,1,1,3,4]]],[36,4,4,4,8,[[909,2,2,4,6],[910,2,2,6,8]]],[38,1,1,8,9,[[925,1,1,8,9]]]],[12334,12396,12400,12650,22841,22854,22857,22876,23097]]],["governors",[7,7,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]],[14,1,1,2,3,[[410,1,1,2,3]]],[15,3,3,3,6,[[414,2,2,3,5],[417,1,1,5,6]]],[16,1,1,6,7,[[428,1,1,6,7]]]],[9094,11378,12237,12314,12316,12397,12759]]]]},{"k":"H6347","v":[["*",[10,10,[[14,6,6,0,6,[[407,3,3,0,3],[408,3,3,3,6]]],[26,4,4,6,10,[[852,3,3,6,9],[855,1,1,9,10]]]],[12137,12140,12148,12157,12158,12164,21809,21810,21834,21912]]],["captains",[4,4,[[26,4,4,0,4,[[852,3,3,0,3],[855,1,1,3,4]]]],[21809,21810,21834,21912]]],["governor",[6,6,[[14,6,6,0,6,[[407,3,3,0,3],[408,3,3,3,6]]]],[12137,12140,12148,12157,12158,12164]]]]},{"k":"H6348","v":[["light",[2,2,[[6,1,1,0,1,[[219,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[6758,22824]]]]},{"k":"H6349","v":[["Unstable",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1477]]]]},{"k":"H6350","v":[["lightness",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19516]]]]},{"k":"H6351","v":[["snared",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18502]]]]},{"k":"H6352","v":[["coals",[3,3,[[19,1,1,0,1,[[653,1,1,0,1]]],[22,2,2,1,3,[[722,1,1,1,2],[732,1,1,2,3]]]],[17162,18545,18739]]]]},{"k":"H6353","v":[["potters'",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21799]]]]},{"k":"H6354","v":[["*",[10,8,[[9,2,2,0,2,[[283,1,1,0,1],[284,1,1,1,2]]],[22,3,2,2,4,[[702,3,2,2,4]]],[23,4,3,4,7,[[792,4,3,4,7]]],[24,1,1,7,8,[[799,1,1,7,8]]]],[8458,8495,18112,18113,20108,20123,20124,20401]]],["hole's",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20108]]],["pit",[8,6,[[9,2,2,0,2,[[283,1,1,0,1],[284,1,1,1,2]]],[22,3,2,2,4,[[702,3,2,2,4]]],[23,3,2,4,6,[[792,3,2,4,6]]]],[8458,8495,18112,18113,20123,20124]]],["snare",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20401]]]]},{"k":"H6355","v":[["Pahathmoab",[6,6,[[14,3,3,0,3,[[404,1,1,0,1],[410,1,1,1,2],[412,1,1,2,3]]],[15,3,3,3,6,[[415,1,1,3,4],[419,1,1,4,5],[422,1,1,5,6]]]],[12033,12205,12282,12338,12431,12563]]]]},{"k":"H6356","v":[["inward",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3107]]]]},{"k":"H6357","v":[["topaz",[4,4,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[17,1,1,2,3,[[463,1,1,2,3]]],[25,1,1,3,4,[[829,1,1,3,4]]]],[2310,2674,13523,21170]]]]},{"k":"H6358","v":[["open",[4,4,[[10,4,4,0,4,[[296,4,4,0,4]]]],[8914,8925,8928,8931]]]]},{"k":"H6359","v":[]},{"k":"H6360","v":[["*",[3,3,[[22,1,1,0,1,[[719,1,1,0,1]]],[23,2,2,1,3,[[767,1,1,1,2],[794,1,1,2,3]]]],[18458,19513,20189]]],["+",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18458]]],["hammer",[2,2,[[23,2,2,0,2,[[767,1,1,0,1],[794,1,1,1,2]]]],[19513,20189]]]]},{"k":"H6361","v":[["hosen",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21828]]]]},{"k":"H6362","v":[["*",[5,5,[[8,1,1,0,1,[[254,1,1,0,1]]],[12,1,1,1,2,[[346,1,1,1,2]]],[13,1,1,2,3,[[389,1,1,2,3]]],[18,1,1,3,4,[[499,1,1,3,4]]],[19,1,1,4,5,[[644,1,1,4,5]]]],[7716,10648,11664,14211,16887]]],["away",[1,1,[[8,1,1,0,1,[[254,1,1,0,1]]]],[7716]]],["dismissed",[1,1,[[13,1,1,0,1,[[389,1,1,0,1]]]],[11664]]],["free",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10648]]],["out",[2,2,[[18,1,1,0,1,[[499,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]]],[14211,16887]]]]},{"k":"H6363","v":[["*",[12,10,[[1,8,6,0,6,[[62,5,4,0,4],[83,3,2,4,6]]],[3,3,3,6,9,[[119,1,1,6,7],[124,1,1,7,8],[134,1,1,8,9]]],[25,1,1,9,10,[[821,1,1,9,10]]]],[1869,1879,1880,1882,2515,2516,3704,3955,4272,20921]]],["firstling",[4,4,[[1,4,4,0,4,[[62,2,2,0,2],[83,2,2,2,4]]]],[1879,1880,2515,2516]]],["open",[1,1,[[3,1,1,0,1,[[124,1,1,0,1]]]],[3955]]],["openeth",[7,7,[[1,4,4,0,4,[[62,3,3,0,3],[83,1,1,3,4]]],[3,2,2,4,6,[[119,1,1,4,5],[134,1,1,5,6]]],[25,1,1,6,7,[[821,1,1,6,7]]]],[1869,1879,1882,2515,3704,4272,20921]]]]},{"k":"H6364","v":[["Pibeseth",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21221]]]]},{"k":"H6365","v":[["*",[3,3,[[17,2,2,0,2,[[465,1,1,0,1],[466,1,1,1,2]]],[19,1,1,2,3,[[651,1,1,2,3]]]],[13581,13617,17101]]],["destruction",[2,2,[[17,2,2,0,2,[[465,1,1,0,1],[466,1,1,1,2]]]],[13581,13617]]],["ruin",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17101]]]]},{"k":"H6366","v":[["edges",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6584]]]]},{"k":"H6367","v":[["Pihahiroth",[4,4,[[1,2,2,0,2,[[63,2,2,0,2]]],[3,2,2,2,4,[[149,2,2,2,4]]]],[1891,1898,4767,4768]]]]},{"k":"H6368","v":[["ashes",[2,2,[[1,2,2,0,2,[[58,2,2,0,2]]]],[1750,1752]]]]},{"k":"H6369","v":[["Phichol",[3,3,[[0,3,3,0,3,[[20,2,2,0,2],[25,1,1,2,3]]]],[535,545,718]]]]},{"k":"H6370","v":[["*",[37,35,[[0,4,4,0,4,[[21,1,1,0,1],[24,1,1,1,2],[34,1,1,2,3],[35,1,1,3,4]]],[6,12,12,4,16,[[218,1,1,4,5],[229,8,8,5,13],[230,3,3,13,16]]],[9,9,8,16,24,[[269,2,1,16,17],[271,1,1,17,18],[281,1,1,18,19],[282,2,2,19,21],[285,1,1,21,22],[286,1,1,22,23],[287,1,1,23,24]]],[10,1,1,24,25,[[301,1,1,24,25]]],[12,5,5,25,30,[[338,1,1,25,26],[339,2,2,26,28],[340,1,1,28,29],[344,1,1,29,30]]],[13,2,1,30,31,[[377,2,1,30,31]]],[16,1,1,31,32,[[427,1,1,31,32]]],[21,2,2,32,34,[[676,2,2,32,34]]],[25,1,1,34,35,[[824,1,1,34,35]]]],[571,664,1033,1052,6750,7025,7026,7033,7034,7048,7049,7051,7053,7058,7059,7060,8088,8145,8405,8447,8448,8516,8557,8591,9111,10284,10352,10354,10370,10549,11435,12738,17622,17623,21027]]],["+",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7025]]],["concubine",[21,20,[[0,3,3,0,3,[[21,1,1,0,1],[34,1,1,1,2],[35,1,1,2,3]]],[6,11,11,3,14,[[218,1,1,3,4],[229,7,7,4,11],[230,3,3,11,14]]],[9,3,2,14,16,[[269,2,1,14,15],[287,1,1,15,16]]],[12,4,4,16,20,[[338,1,1,16,17],[339,2,2,17,19],[344,1,1,19,20]]]],[571,1033,1052,6750,7026,7033,7034,7048,7049,7051,7053,7058,7059,7060,8088,8591,10284,10352,10354,10549]]],["concubines",[14,13,[[0,1,1,0,1,[[24,1,1,0,1]]],[9,6,6,1,7,[[271,1,1,1,2],[281,1,1,2,3],[282,2,2,3,5],[285,1,1,5,6],[286,1,1,6,7]]],[10,1,1,7,8,[[301,1,1,7,8]]],[12,1,1,8,9,[[340,1,1,8,9]]],[13,2,1,9,10,[[377,2,1,9,10]]],[16,1,1,10,11,[[427,1,1,10,11]]],[21,2,2,11,13,[[676,2,2,11,13]]]],[664,8145,8405,8447,8448,8516,8557,9111,10370,11435,12738,17622,17623]]],["paramours",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21027]]]]},{"k":"H6371","v":[["fat",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13230]]]]},{"k":"H6372","v":[["*",[25,24,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,3,3,1,4,[[141,2,2,1,3],[147,1,1,3,4]]],[5,5,5,4,9,[[208,4,4,4,8],[210,1,1,8,9]]],[6,1,1,9,10,[[230,1,1,9,10]]],[8,7,7,10,17,[[236,1,1,10,11],[237,1,1,11,12],[239,4,4,12,16],[249,1,1,16,17]]],[12,4,3,17,20,[[343,3,2,17,19],[346,1,1,19,20]]],[14,3,3,20,23,[[409,1,1,20,21],[410,2,2,21,23]]],[18,1,1,23,24,[[583,1,1,23,24]]]],[1680,4478,4482,4670,6439,6456,6457,6458,6509,7082,7215,7274,7301,7308,7314,7316,7511,10458,10504,10635,12178,12203,12234,15681]]],["Phinehas",[24,23,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,3,3,1,4,[[141,2,2,1,3],[147,1,1,3,4]]],[5,5,5,4,9,[[208,4,4,4,8],[210,1,1,8,9]]],[6,1,1,9,10,[[230,1,1,9,10]]],[8,6,6,10,16,[[236,1,1,10,11],[237,1,1,11,12],[239,3,3,12,15],[249,1,1,15,16]]],[12,4,3,16,19,[[343,3,2,16,18],[346,1,1,18,19]]],[14,3,3,19,22,[[409,1,1,19,20],[410,2,2,20,22]]],[18,1,1,22,23,[[583,1,1,22,23]]]],[1680,4478,4482,4670,6439,6456,6457,6458,6509,7082,7215,7274,7301,7308,7314,7511,10458,10504,10635,12178,12203,12234,15681]]],["Phinehas'",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7316]]]]},{"k":"H6373","v":[["Pinon",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1081,10304]]]]},{"k":"H6374","v":[["*",[2,2,[[18,1,1,0,1,[[626,1,1,0,1]]],[22,1,1,1,2,[[719,1,1,1,2]]]],[16391,18466]]],["teeth",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18466]]],["twoedged",[1,1,[[18,1,1,0,1,[[626,1,1,0,1]]]],[16391]]]]},{"k":"H6375","v":[["together",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22709]]]]},{"k":"H6376","v":[["Pison",[1,1,[[0,1,1,0,1,[[1,1,1,0,1]]]],[41]]]]},{"k":"H6377","v":[["Pithon",[2,2,[[12,2,2,0,2,[[345,1,1,0,1],[346,1,1,1,2]]]],[10610,10656]]]]},{"k":"H6378","v":[["*",[3,3,[[8,1,1,0,1,[[245,1,1,0,1]]],[11,2,2,1,3,[[321,2,2,1,3]]]],[7419,9757,9759]]],["box",[2,2,[[11,2,2,0,2,[[321,2,2,0,2]]]],[9757,9759]]],["vial",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7419]]]]},{"k":"H6379","v":[["out",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21681]]]]},{"k":"H6380","v":[["*",[3,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,2,1,1,2,[[419,2,1,1,2]]]],[12084,12479]]],["Pochereth",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12479]]],["Zebaim",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12084,12479]]]]},{"k":"H6381","v":[["*",[71,69,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,2,2,1,3,[[52,1,1,1,2],[83,1,1,2,3]]],[2,2,2,3,5,[[111,1,1,3,4],[116,1,1,4,5]]],[3,3,3,5,8,[[122,1,1,5,6],[131,2,2,6,8]]],[4,3,3,8,11,[[169,1,1,8,9],[180,1,1,9,10],[182,1,1,10,11]]],[5,1,1,11,12,[[189,1,1,11,12]]],[6,2,2,12,14,[[216,1,1,12,13],[223,1,1,13,14]]],[9,2,2,14,16,[[267,1,1,14,15],[279,1,1,15,16]]],[12,3,3,16,19,[[353,3,3,16,19]]],[13,2,2,19,21,[[368,1,1,19,20],[392,1,1,20,21]]],[15,1,1,21,22,[[421,1,1,21,22]]],[17,6,6,22,28,[[440,1,1,22,23],[444,1,1,23,24],[445,1,1,24,25],[472,2,2,25,27],[477,1,1,27,28]]],[18,30,30,28,58,[[486,1,1,28,29],[503,1,1,29,30],[508,1,1,30,31],[517,1,1,31,32],[548,1,1,32,33],[549,1,1,33,34],[552,1,1,34,35],[555,3,3,35,38],[563,1,1,38,39],[573,1,1,39,40],[575,1,1,40,41],[582,2,2,41,43],[583,2,2,43,45],[584,5,5,45,50],[588,1,1,50,51],[595,1,1,51,52],[596,2,2,52,54],[608,1,1,54,55],[613,1,1,55,56],[616,1,1,56,57],[622,1,1,57,58]]],[19,1,1,58,59,[[657,1,1,58,59]]],[22,3,2,59,61,[[706,1,1,59,60],[707,2,1,60,61]]],[23,3,3,61,64,[[765,1,1,61,62],[776,2,2,62,64]]],[26,2,2,64,66,[[857,1,1,64,65],[860,1,1,65,66]]],[28,1,1,66,67,[[877,1,1,66,67]]],[32,1,1,67,68,[[899,1,1,67,68]]],[37,2,1,68,69,[[918,2,1,68,69]]]],[438,1599,2506,3390,3572,3825,4156,4161,5372,5670,5719,5898,6667,6903,8048,8319,10829,10832,10844,11220,11747,12528,12960,13061,13102,13774,13783,13925,14022,14280,14352,14530,14993,15018,15072,15117,15124,15145,15294,15468,15491,15608,15611,15658,15673,15707,15714,15720,15723,15730,15797,15892,15916,15925,16149,16200,16253,16325,17269,18193,18207,19442,19748,19758,21985,22072,22337,22679,22982]]],["+",[2,2,[[4,1,1,0,1,[[169,1,1,0,1]]],[18,1,1,1,2,[[508,1,1,1,2]]]],[5372,14352]]],["accomplish",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3390]]],["hard",[4,4,[[0,1,1,0,1,[[17,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[23,2,2,2,4,[[776,2,2,2,4]]]],[438,8319,19748,19758]]],["hidden",[1,1,[[4,1,1,0,1,[[182,1,1,0,1]]]],[5719]]],["high",[1,1,[[18,1,1,0,1,[[608,1,1,0,1]]]],[16149]]],["marvellous",[6,5,[[17,1,1,0,1,[[445,1,1,0,1]]],[18,2,2,1,3,[[595,1,1,1,2],[616,1,1,2,3]]],[32,1,1,3,4,[[899,1,1,3,4]]],[37,2,1,4,5,[[918,2,1,4,5]]]],[13102,15892,16253,22679,22982]]],["marvellously",[2,2,[[13,1,1,0,1,[[392,1,1,0,1]]],[17,1,1,1,2,[[472,1,1,1,2]]]],[11747,13774]]],["marvels",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2506]]],["miracles",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6667]]],["performing",[2,2,[[3,2,2,0,2,[[131,2,2,0,2]]]],[4156,4161]]],["separate",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3825]]],["singular",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3572]]],["things",[6,6,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,4,4,1,5,[[549,1,1,1,2],[563,1,1,2,3],[575,1,1,3,4],[596,1,1,4,5]]],[26,1,1,5,6,[[860,1,1,5,6]]]],[12960,15018,15294,15491,15916,22072]]],["wonderful",[6,6,[[4,1,1,0,1,[[180,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]],[13,1,1,2,3,[[368,1,1,2,3]]],[17,1,1,3,4,[[477,1,1,3,4]]],[19,1,1,4,5,[[657,1,1,4,5]]],[22,1,1,5,6,[[706,1,1,5,6]]]],[5670,8048,11220,13925,17269,18193]]],["wonderfully",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21985]]],["wonders",[9,9,[[1,1,1,0,1,[[52,1,1,0,1]]],[5,1,1,1,2,[[189,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[17,1,1,3,4,[[444,1,1,3,4]]],[18,5,5,4,9,[[555,1,1,4,5],[573,1,1,5,6],[583,1,1,6,7],[584,1,1,7,8],[613,1,1,8,9]]]],[1599,5898,12528,13061,15124,15468,15658,15723,16200]]],["wondrous",[2,2,[[17,1,1,0,1,[[472,1,1,0,1]]],[18,1,1,1,2,[[622,1,1,1,2]]]],[13783,16325]]],["wondrously",[2,2,[[6,1,1,0,1,[[223,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[6903,22337]]],["work",[2,1,[[22,2,1,0,1,[[707,2,1,0,1]]]],[18207]]],["works",[20,20,[[12,3,3,0,3,[[353,3,3,0,3]]],[18,16,16,3,19,[[486,1,1,3,4],[503,1,1,4,5],[517,1,1,5,6],[548,1,1,6,7],[552,1,1,7,8],[555,2,2,8,10],[582,2,2,10,12],[583,1,1,12,13],[584,4,4,13,17],[588,1,1,17,18],[596,1,1,18,19]]],[23,1,1,19,20,[[765,1,1,19,20]]]],[10829,10832,10844,14022,14280,14530,14993,15072,15117,15145,15608,15611,15673,15707,15714,15720,15730,15797,15925,19442]]]]},{"k":"H6382","v":[["*",[13,13,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,7,7,1,8,[[554,2,2,1,3],[555,1,1,3,4],[565,2,2,4,6],[566,1,1,6,7],[596,1,1,7,8]]],[22,3,3,8,11,[[687,1,1,8,9],[703,1,1,9,10],[707,1,1,10,11]]],[24,1,1,11,12,[[797,1,1,11,12]]],[26,1,1,12,13,[[861,1,1,12,13]]]],[1931,15104,15107,15125,15318,15320,15331,16027,17835,18119,18207,20319,22087]]],["Wonderful",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17835]]],["things",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15125]]],["wonder",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18207]]],["wonderful",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[22,1,1,1,2,[[703,1,1,1,2]]]],[16027,18119]]],["wonderfully",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20319]]],["wonders",[7,7,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,5,5,1,6,[[554,2,2,1,3],[565,2,2,3,5],[566,1,1,5,6]]],[26,1,1,6,7,[[861,1,1,6,7]]]],[1931,15104,15107,15318,15320,15331,22087]]]]},{"k":"H6383","v":[["*",[2,2,[[6,1,1,0,1,[[223,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]]],[6902,16245]]],["secret",[1,1,[[6,1,1,0,1,[[223,1,1,0,1]]]],[6902]]],["wonderful",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16245]]]]},{"k":"H6384","v":[["Palluites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4494]]]]},{"k":"H6385","v":[["*",[4,4,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[17,1,1,2,3,[[473,1,1,2,3]]],[18,1,1,3,4,[[532,1,1,3,4]]]],[259,10271,13818,14741]]],["divide",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14741]]],["divided",[3,3,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[17,1,1,2,3,[[473,1,1,2,3]]]],[259,10271,13818]]]]},{"k":"H6386","v":[["divided",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21799]]]]},{"k":"H6387","v":[["dividing",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21958]]]]},{"k":"H6388","v":[["*",[10,10,[[17,1,1,0,1,[[464,1,1,0,1]]],[18,4,4,1,5,[[478,1,1,1,2],[523,1,1,2,3],[542,1,1,3,4],[596,1,1,4,5]]],[19,2,2,5,7,[[632,1,1,5,6],[648,1,1,6,7]]],[22,2,2,7,9,[[708,1,1,7,8],[710,1,1,8,9]]],[24,1,1,9,10,[[799,1,1,9,10]]]],[13538,13942,14618,14869,16034,16533,16985,18242,18261,20402]]],["Rivers",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16034]]],["river",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14869]]],["rivers",[7,7,[[17,1,1,0,1,[[464,1,1,0,1]]],[18,1,1,1,2,[[478,1,1,1,2]]],[19,2,2,2,4,[[632,1,1,2,3],[648,1,1,3,4]]],[22,2,2,4,6,[[708,1,1,4,5],[710,1,1,5,6]]],[24,1,1,6,7,[[799,1,1,6,7]]]],[13538,13942,16533,16985,18242,18261,20402]]],["streams",[1,1,[[18,1,1,0,1,[[523,1,1,0,1]]]],[14618]]]]},{"k":"H6389","v":[["Peleg",[7,7,[[0,5,5,0,5,[[9,1,1,0,1],[10,4,4,1,5]]],[12,2,2,5,7,[[338,2,2,5,7]]]],[259,282,283,284,285,10271,10277]]]]},{"k":"H6390","v":[["rivers",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13343]]]]},{"k":"H6391","v":[["divisions",[3,3,[[6,2,2,0,2,[[215,2,2,0,2]]],[13,1,1,2,3,[[401,1,1,2,3]]]],[6638,6639,11971]]]]},{"k":"H6392","v":[["divisions",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12169]]]]},{"k":"H6393","v":[["torches",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22702]]]]},{"k":"H6394","v":[["Pildash",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[569]]]]},{"k":"H6395","v":[["*",[7,7,[[1,4,4,0,4,[[57,1,1,0,1],[58,1,1,1,2],[60,1,1,2,3],[82,1,1,3,4]]],[18,3,3,4,7,[[481,1,1,4,5],[494,1,1,5,6],[616,1,1,6,7]]]],[1732,1746,1813,2489,13968,14110,16253]]],["+",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14110]]],["apart",[1,1,[[18,1,1,0,1,[[481,1,1,0,1]]]],[13968]]],["difference",[1,1,[[1,1,1,0,1,[[60,1,1,0,1]]]],[1813]]],["separated",[1,1,[[1,1,1,0,1,[[82,1,1,0,1]]]],[2489]]],["sever",[2,2,[[1,2,2,0,2,[[57,1,1,0,1],[58,1,1,1,2]]]],[1732,1746]]],["wonderfully",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16253]]]]},{"k":"H6396","v":[["*",[5,5,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]],[3,2,2,2,4,[[142,2,2,2,4]]],[12,1,1,4,5,[[342,1,1,4,5]]]],[1395,1669,4494,4497,10431]]],["Pallu",[4,4,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,2,2,1,3,[[142,2,2,1,3]]],[12,1,1,3,4,[[342,1,1,3,4]]]],[1669,4494,4497,10431]]],["Phallu",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1395]]]]},{"k":"H6397","v":[["Pelonite",[3,3,[[12,3,3,0,3,[[348,2,2,0,2],[364,1,1,2,3]]]],[10700,10709,11119]]]]},{"k":"H6398","v":[["*",[5,5,[[11,1,1,0,1,[[316,1,1,0,1]]],[17,2,2,1,3,[[451,1,1,1,2],[474,1,1,2,3]]],[18,1,1,3,4,[[618,1,1,3,4]]],[19,1,1,4,5,[[634,1,1,4,5]]]],[9642,13251,13837,16283,16598]]],["cleaveth",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13251]]],["cutteth",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16283]]],["forth",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13837]]],["shred",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9642]]],["through",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16598]]]]},{"k":"H6399","v":[["*",[10,10,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,9,9,1,10,[[852,5,5,1,6],[855,2,2,6,8],[856,2,2,8,10]]]],[12197,21819,21821,21824,21825,21835,21921,21925,21947,21960]]],["ministers",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12197]]],["serve",[7,7,[[26,7,7,0,7,[[852,5,5,0,5],[856,2,2,5,7]]]],[21819,21821,21824,21825,21835,21947,21960]]],["servest",[2,2,[[26,2,2,0,2,[[855,2,2,0,2]]]],[21921,21925]]]]},{"k":"H6400","v":[["piece",[6,6,[[6,1,1,0,1,[[219,1,1,0,1]]],[8,1,1,1,2,[[265,1,1,1,2]]],[9,1,1,2,3,[[277,1,1,2,3]]],[17,1,1,3,4,[[476,1,1,3,4]]],[21,2,2,4,6,[[674,1,1,4,5],[676,1,1,5,6]]]],[6807,7990,8280,13912,17585,17621]]]]},{"k":"H6401","v":[["Pileha",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12573]]]]},{"k":"H6402","v":[["service",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12192]]]]},{"k":"H6403","v":[["*",[26,24,[[9,2,2,0,2,[[288,2,2,0,2]]],[17,2,2,2,4,[[456,1,1,2,3],[458,1,1,3,4]]],[18,18,17,4,21,[[494,1,1,4,5],[495,3,3,5,8],[499,2,2,8,10],[508,1,1,10,11],[514,2,1,11,12],[517,1,1,12,13],[520,1,1,13,14],[533,1,1,14,15],[547,1,1,15,16],[548,2,2,16,18],[559,1,1,18,19],[568,1,1,19,20],[621,1,1,20,21]]],[22,1,1,21,22,[[683,1,1,21,22]]],[25,1,1,22,23,[[808,1,1,22,23]]],[32,2,1,23,24,[[898,2,1,23,24]]]],[8604,8646,13365,13426,14116,14120,14161,14166,14208,14212,14332,14490,14542,14567,14762,14976,14978,14980,15237,15409,16307,17768,20593,22662]]],["Deliver",[2,2,[[18,2,2,0,2,[[548,1,1,0,1],[559,1,1,1,2]]]],[14980,15237]]],["calveth",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13365]]],["deliver",[9,8,[[18,8,7,0,7,[[494,1,1,0,1],[499,2,2,1,3],[508,1,1,3,4],[514,2,1,4,5],[520,1,1,5,6],[568,1,1,6,7]]],[32,1,1,7,8,[[898,1,1,7,8]]]],[14116,14208,14212,14332,14490,14567,15409,22662]]],["delivered",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[458,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]]],[8646,13426,14161]]],["deliverer",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,4,4,1,5,[[495,1,1,1,2],[517,1,1,2,3],[547,1,1,3,4],[621,1,1,4,5]]]],[8604,14120,14542,14976,16307]]],["deliverest",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22662]]],["delivereth",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14166]]],["escape",[3,3,[[18,2,2,0,2,[[533,1,1,0,1],[548,1,1,1,2]]],[25,1,1,2,3,[[808,1,1,2,3]]]],[14762,14978,20593]]],["safe",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17768]]]]},{"k":"H6404","v":[["Pelet",[2,2,[[12,2,2,0,2,[[339,1,1,0,1],[349,1,1,1,2]]]],[10353,10723]]]]},{"k":"H6405","v":[["deliverance",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14362]]]]},{"k":"H6406","v":[["*",[2,2,[[3,1,1,0,1,[[129,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]]],[4084,7905]]],["Palti",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4084]]],["Phalti",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7905]]]]},{"k":"H6407","v":[["Paltite",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8679]]]]},{"k":"H6408","v":[["Piltai",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12641]]]]},{"k":"H6409","v":[["*",[2,2,[[3,1,1,0,1,[[150,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]]],[4842,8096]]],["Paltiel",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4842]]],["Phaltiel",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8096]]]]},{"k":"H6410","v":[["Pelatiah",[5,5,[[12,2,2,0,2,[[340,1,1,0,1],[341,1,1,1,2]]],[15,1,1,2,3,[[422,1,1,2,3]]],[25,2,2,3,5,[[812,2,2,3,5]]]],[10382,10427,12571,20656,20668]]]]},{"k":"H6411","v":[["Pelaiah",[3,3,[[12,1,1,0,1,[[340,1,1,0,1]]],[15,2,2,1,3,[[420,1,1,1,2],[422,1,1,2,3]]]],[10385,12500,12559]]]]},{"k":"H6412","v":[["*",[24,23,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[5,1,1,2,3,[[194,1,1,2,3]]],[6,2,2,3,5,[[222,2,2,3,5]]],[11,1,1,5,6,[[321,1,1,5,6]]],[22,2,2,6,8,[[723,1,1,6,7],[744,1,1,7,8]]],[23,6,5,8,13,[[786,1,1,8,9],[788,3,2,9,11],[794,1,1,11,12],[795,1,1,12,13]]],[24,1,1,13,14,[[798,1,1,13,14]]],[25,7,7,14,21,[[807,2,2,14,16],[808,1,1,16,17],[825,2,2,17,19],[834,2,2,19,21]]],[29,1,1,21,22,[[887,1,1,21,22]]],[30,1,1,22,23,[[888,1,1,22,23]]]],[349,4369,6024,6873,6874,9771,18581,18941,19992,20024,20038,20194,20262,20354,20571,20572,20593,21082,21083,21301,21302,22496,22524]]],["+",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20354]]],["escape",[12,11,[[5,1,1,0,1,[[194,1,1,0,1]]],[11,1,1,1,2,[[321,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]],[23,5,4,3,7,[[786,1,1,3,4],[788,3,2,4,6],[794,1,1,6,7]]],[25,3,3,7,10,[[807,2,2,7,9],[808,1,1,9,10]]],[30,1,1,10,11,[[888,1,1,10,11]]]],[6024,9771,18941,19992,20024,20038,20194,20571,20572,20593,22524]]],["escaped",[8,8,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[6,1,1,2,3,[[222,1,1,2,3]]],[22,1,1,3,4,[[723,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]],[25,3,3,5,8,[[825,1,1,5,6],[834,2,2,6,8]]]],[349,4369,6874,18581,20262,21083,21301,21302]]],["escapeth",[2,2,[[25,1,1,0,1,[[825,1,1,0,1]]],[29,1,1,1,2,[[887,1,1,1,2]]]],[21082,22496]]],["fugitives",[1,1,[[6,1,1,0,1,[[222,1,1,0,1]]]],[6873]]]]},{"k":"H6413","v":[["*",[28,28,[[0,2,2,0,2,[[31,1,1,0,1],[44,1,1,1,2]]],[1,1,1,2,3,[[59,1,1,2,3]]],[6,1,1,3,4,[[231,1,1,3,4]]],[9,1,1,4,5,[[281,1,1,4,5]]],[11,2,2,5,7,[[331,2,2,5,7]]],[12,1,1,7,8,[[341,1,1,7,8]]],[13,3,3,8,11,[[378,1,1,8,9],[386,1,1,9,10],[396,1,1,10,11]]],[14,4,4,11,15,[[411,4,4,11,15]]],[15,1,1,15,16,[[413,1,1,15,16]]],[22,5,5,16,21,[[682,1,1,16,17],[688,1,1,17,18],[693,1,1,18,19],[715,2,2,19,21]]],[23,2,2,21,23,[[769,1,1,21,22],[794,1,1,22,23]]],[25,1,1,23,24,[[815,1,1,23,24]]],[26,1,1,24,25,[[860,1,1,24,25]]],[28,2,2,25,27,[[877,2,2,25,27]]],[30,1,1,27,28,[[888,1,1,27,28]]]],[936,1365,1782,7119,8403,10091,10092,10428,11444,11611,11833,12245,12250,12251,12252,12298,17735,17870,17969,18383,18384,19569,20195,20753,22078,22314,22343,22527]]],["+",[2,2,[[26,1,1,0,1,[[860,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[22078,22314]]],["deliverance",[5,5,[[0,1,1,0,1,[[44,1,1,0,1]]],[13,1,1,1,2,[[378,1,1,1,2]]],[14,1,1,2,3,[[411,1,1,2,3]]],[28,1,1,3,4,[[877,1,1,3,4]]],[30,1,1,4,5,[[888,1,1,4,5]]]],[1365,11444,12250,22343,22527]]],["escape",[7,7,[[0,1,1,0,1,[[31,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[14,1,1,3,4,[[411,1,1,3,4]]],[22,1,1,4,5,[[715,1,1,4,5]]],[23,2,2,5,7,[[769,1,1,5,6],[794,1,1,6,7]]]],[936,8403,10092,12245,18384,19569,20195]]],["escaped",[11,11,[[1,1,1,0,1,[[59,1,1,0,1]]],[6,1,1,1,2,[[231,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[12,1,1,3,4,[[341,1,1,3,4]]],[13,2,2,4,6,[[386,1,1,4,5],[396,1,1,5,6]]],[14,1,1,6,7,[[411,1,1,6,7]]],[15,1,1,7,8,[[413,1,1,7,8]]],[22,3,3,8,11,[[682,1,1,8,9],[688,1,1,9,10],[715,1,1,10,11]]]],[1782,7119,10091,10428,11611,11833,12252,12298,17735,17870,18383]]],["escapeth",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17969]]],["escaping",[1,1,[[14,1,1,0,1,[[411,1,1,0,1]]]],[12251]]],["remnant",[1,1,[[25,1,1,0,1,[[815,1,1,0,1]]]],[20753]]]]},{"k":"H6414","v":[["judges",[3,3,[[1,1,1,0,1,[[70,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[17,1,1,2,3,[[466,1,1,2,3]]]],[2099,5789,13599]]]]},{"k":"H6415","v":[["judgment",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17972]]]]},{"k":"H6416","v":[["judge",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13616]]]]},{"k":"H6417","v":[["judgment",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18171]]]]},{"k":"H6418","v":[["*",[10,9,[[9,1,1,0,1,[[269,1,1,0,1]]],[15,8,7,1,8,[[415,8,7,1,8]]],[19,1,1,8,9,[[658,1,1,8,9]]]],[8110,12336,12339,12341,12342,12343,12344,12345,17303]]],["distaff",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17303]]],["part",[8,7,[[15,8,7,0,7,[[415,8,7,0,7]]]],[12336,12339,12341,12342,12343,12344,12345]]],["staff",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8110]]]]},{"k":"H6419","v":[["*",[84,82,[[0,3,3,0,3,[[19,2,2,0,2],[47,1,1,2,3]]],[3,3,2,3,5,[[127,1,1,3,4],[137,2,1,4,5]]],[4,2,2,5,7,[[161,2,2,5,7]]],[8,11,10,7,17,[[236,4,4,7,11],[237,3,2,11,13],[242,1,1,13,14],[243,1,1,14,15],[247,2,2,15,17]]],[9,1,1,17,18,[[273,1,1,17,18]]],[10,10,10,18,28,[[298,9,9,18,27],[303,1,1,27,28]]],[11,6,6,28,34,[[316,1,1,28,29],[318,2,2,29,31],[331,2,2,31,33],[332,1,1,33,34]]],[12,1,1,34,35,[[354,1,1,34,35]]],[13,14,14,35,49,[[372,8,8,35,43],[373,2,2,43,45],[396,1,1,45,46],[398,2,2,46,48],[399,1,1,48,49]]],[14,1,1,49,50,[[412,1,1,49,50]]],[15,4,4,50,54,[[413,2,2,50,52],[414,1,1,52,53],[416,1,1,53,54]]],[17,2,2,54,56,[[477,2,2,54,56]]],[18,4,4,56,60,[[482,1,1,56,57],[509,1,1,57,58],[549,1,1,58,59],[583,1,1,59,60]]],[22,7,7,60,67,[[694,1,1,60,61],[715,2,2,61,63],[716,1,1,63,64],[722,1,1,64,65],[723,2,2,65,67]]],[23,10,10,67,77,[[751,1,1,67,68],[755,1,1,68,69],[758,1,1,69,70],[773,2,2,70,72],[776,1,1,72,73],[781,1,1,73,74],[786,3,3,74,77]]],[25,1,1,77,78,[[817,1,1,77,78]]],[26,2,2,78,80,[[858,2,2,78,80]]],[31,2,2,80,82,[[890,1,1,80,81],[892,1,1,81,82]]]],[502,512,1462,4026,4347,5177,5183,7222,7224,7238,7239,7241,7265,7357,7375,7479,7483,8207,9013,9014,9015,9018,9020,9027,9029,9033,9039,9190,9636,9691,9692,10076,10081,10100,10888,11301,11302,11303,11306,11308,11314,11316,11320,11325,11338,11845,11895,11899,11921,12253,12300,12302,12311,12368,13930,13932,13975,14361,15015,15681,17981,18367,18373,18392,18550,18575,18581,19135,19240,19304,19642,19647,19747,19877,19977,19979,19995,20814,21992,22008,22549,22570]]],["+",[2,2,[[9,1,1,0,1,[[273,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]]],[8207,9039]]],["Pray",[4,4,[[8,1,1,0,1,[[247,1,1,0,1]]],[23,3,3,1,4,[[758,1,1,1,2],[781,1,1,2,3],[786,1,1,3,4]]]],[7479,19304,19877,19995]]],["intreat",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7265]]],["judge",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7265]]],["judged",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20814]]],["judgment",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15681]]],["make",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]]],[9014,11303]]],["pray",[30,30,[[0,1,1,0,1,[[19,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[8,2,2,2,4,[[242,1,1,2,3],[247,1,1,3,4]]],[10,7,7,4,11,[[298,6,6,4,10],[303,1,1,10,11]]],[12,1,1,11,12,[[354,1,1,11,12]]],[13,6,6,12,18,[[372,5,5,12,17],[373,1,1,17,18]]],[15,1,1,18,19,[[413,1,1,18,19]]],[17,1,1,19,20,[[477,1,1,19,20]]],[18,2,2,20,22,[[482,1,1,20,21],[509,1,1,21,22]]],[22,2,2,22,24,[[694,1,1,22,23],[723,1,1,23,24]]],[23,6,6,24,30,[[751,1,1,24,25],[755,1,1,25,26],[773,2,2,26,28],[786,2,2,28,30]]]],[502,4347,7357,7483,9015,9018,9020,9027,9029,9033,9190,10888,11306,11308,11314,11316,11320,11338,12302,13930,13975,14361,17981,18581,19135,19240,19642,19647,19977,19979]]],["prayed",[30,30,[[0,1,1,0,1,[[19,1,1,0,1]]],[3,2,2,1,3,[[127,1,1,1,2],[137,1,1,2,3]]],[4,2,2,3,5,[[161,2,2,3,5]]],[8,4,4,5,9,[[236,2,2,5,7],[237,1,1,7,8],[243,1,1,8,9]]],[11,6,6,9,15,[[316,1,1,9,10],[318,2,2,10,12],[331,2,2,12,14],[332,1,1,14,15]]],[13,4,4,15,19,[[396,1,1,15,16],[398,2,2,16,18],[399,1,1,18,19]]],[14,1,1,19,20,[[412,1,1,19,20]]],[15,2,2,20,22,[[413,1,1,20,21],[414,1,1,21,22]]],[17,1,1,22,23,[[477,1,1,22,23]]],[22,3,3,23,26,[[715,2,2,23,25],[716,1,1,25,26]]],[23,1,1,26,27,[[776,1,1,26,27]]],[26,1,1,27,28,[[858,1,1,27,28]]],[31,2,2,28,30,[[890,1,1,28,29],[892,1,1,29,30]]]],[512,4026,4347,5177,5183,7222,7239,7241,7375,9636,9691,9692,10076,10081,10100,11845,11895,11899,11921,12253,12300,12311,13932,18367,18373,18392,19747,21992,22549,22570]]],["prayer",[2,2,[[15,1,1,0,1,[[416,1,1,0,1]]],[18,1,1,1,2,[[549,1,1,1,2]]]],[12368,15015]]],["prayeth",[4,4,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,2,2,1,3,[[372,2,2,1,3]]],[22,1,1,3,4,[[722,1,1,3,4]]]],[9013,11301,11302,18550]]],["praying",[4,4,[[8,2,2,0,2,[[236,2,2,0,2]]],[13,1,1,2,3,[[373,1,1,2,3]]],[26,1,1,3,4,[[858,1,1,3,4]]]],[7224,7238,11325,22008]]],["supplication",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18575]]],["thought",[1,1,[[0,1,1,0,1,[[47,1,1,0,1]]]],[1462]]]]},{"k":"H6420","v":[["Palal",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12352]]]]},{"k":"H6421","v":[["Pelaliah",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12600]]]]},{"k":"H6422","v":[["certain",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21974]]]]},{"k":"H6423","v":[["*",[3,3,[[7,1,1,0,1,[[235,1,1,0,1]]],[8,1,1,1,2,[[256,1,1,1,2]]],[11,1,1,2,3,[[318,1,1,2,3]]]],[7191,7774,9682]]],["+",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9682]]],["such",[2,2,[[7,1,1,0,1,[[235,1,1,0,1]]],[8,1,1,1,2,[[256,1,1,1,2]]]],[7191,7774]]]]},{"k":"H6424","v":[["*",[6,6,[[18,2,2,0,2,[[535,1,1,0,1],[555,1,1,1,2]]],[19,3,3,2,5,[[631,1,1,2,3],[632,2,2,3,5]]],[22,1,1,5,6,[[704,1,1,5,6]]]],[14781,15163,16516,16523,16538,18137]]],["Ponder",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16516]]],["made",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15163]]],["ponder",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16523]]],["pondereth",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16538]]],["weigh",[2,2,[[18,1,1,0,1,[[535,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]]],[14781,18137]]]]},{"k":"H6425","v":[["*",[2,2,[[19,1,1,0,1,[[643,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[16851,18432]]],["scales",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18432]]],["weight",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16851]]]]},{"k":"H6426","v":[["tremble",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13057]]]]},{"k":"H6427","v":[["*",[4,4,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,1,1,1,2,[[532,1,1,1,2]]],[22,1,1,2,3,[[699,1,1,2,3]]],[25,1,1,3,4,[[808,1,1,3,4]]]],[13361,14737,18039,20595]]],["fearfulness",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18039]]],["horror",[2,2,[[18,1,1,0,1,[[532,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]]],[14737,20595]]],["trembling",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13361]]]]},{"k":"H6428","v":[["*",[4,4,[[23,2,2,0,2,[[750,1,1,0,1],[769,1,1,1,2]]],[25,1,1,2,3,[[828,1,1,2,3]]],[32,1,1,3,4,[[893,1,1,3,4]]]],[19115,19568,21151,22589]]],["themselves",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21151]]],["thyself",[2,2,[[23,1,1,0,1,[[750,1,1,0,1]]],[32,1,1,1,2,[[893,1,1,1,2]]]],[19115,22589]]],["yourselves",[1,1,[[23,1,1,0,1,[[769,1,1,0,1]]]],[19568]]]]},{"k":"H6429","v":[["*",[8,8,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,4,4,1,5,[[537,1,1,1,2],[560,1,1,2,3],[564,1,1,3,4],[585,1,1,4,5]]],[22,2,2,5,7,[[692,2,2,5,7]]],[28,1,1,7,8,[[878,1,1,7,8]]]],[1934,14815,15248,15305,15751,17957,17959,22347]]],["Palestina",[3,3,[[1,1,1,0,1,[[64,1,1,0,1]]],[22,2,2,1,3,[[692,2,2,1,3]]]],[1934,17957,17959]]],["Palestine",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22347]]],["Philistia",[3,3,[[18,3,3,0,3,[[537,1,1,0,1],[564,1,1,1,2],[585,1,1,2,3]]]],[14815,15305,15751]]],["Philistines",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15248]]]]},{"k":"H6430","v":[["*",[287,243,[[0,8,8,0,8,[[9,1,1,0,1],[20,2,2,1,3],[25,5,5,3,8]]],[1,2,2,8,10,[[62,1,1,8,9],[72,1,1,9,10]]],[5,2,2,10,12,[[199,2,2,10,12]]],[6,34,31,12,43,[[213,2,2,12,14],[220,3,3,14,17],[223,2,2,17,19],[224,5,4,19,23],[225,9,8,23,31],[226,13,12,31,43]]],[8,152,125,43,168,[[239,10,8,43,51],[240,4,4,51,55],[241,8,8,55,63],[242,12,7,63,70],[244,1,1,70,71],[245,1,1,71,72],[247,1,1,72,73],[248,12,10,73,83],[249,15,13,83,96],[252,40,32,96,128],[253,7,6,128,134],[254,2,2,134,136],[256,1,1,136,137],[257,1,1,137,138],[258,8,7,138,145],[259,1,1,145,146],[262,3,3,146,149],[263,6,5,149,154],[264,10,7,154,161],[265,1,1,161,162],[266,8,6,162,168]]],[9,30,24,168,192,[[267,1,1,168,169],[269,2,2,169,171],[271,8,6,171,177],[274,3,2,177,179],[285,1,1,179,180],[287,7,5,180,185],[289,8,7,185,192]]],[10,3,3,192,195,[[294,1,1,192,193],[305,1,1,193,194],[306,1,1,194,195]]],[11,3,3,195,198,[[320,2,2,195,197],[330,1,1,197,198]]],[12,29,23,198,221,[[338,1,1,198,199],[347,8,6,199,205],[348,6,5,205,210],[349,2,1,210,211],[351,7,6,211,217],[355,3,2,217,219],[357,2,2,219,221]]],[13,7,6,221,227,[[375,1,1,221,222],[383,1,1,222,223],[387,1,1,223,224],[392,3,2,224,226],[394,1,1,226,227]]],[22,3,3,227,230,[[680,1,1,227,228],[687,1,1,228,229],[689,1,1,229,230]]],[23,4,3,230,233,[[769,1,1,230,231],[791,3,2,231,233]]],[25,4,4,233,237,[[817,2,2,233,235],[826,2,2,235,237]]],[29,3,3,237,240,[[879,1,1,237,238],[884,1,1,238,239],[887,1,1,239,240]]],[30,1,1,240,241,[[888,1,1,240,241]]],[35,1,1,241,242,[[907,1,1,241,242]]],[37,1,1,242,243,[[919,1,1,242,243]]]],[248,545,547,693,700,706,707,710,1884,2175,6156,6157,6571,6599,6817,6818,6822,6885,6889,6910,6911,6912,6913,6932,6934,6935,6938,6940,6941,6943,6949,6954,6957,6958,6961,6963,6967,6969,6970,6972,6976,6977,6979,7298,7299,7300,7303,7304,7306,7307,7314,7320,7321,7327,7330,7332,7333,7335,7343,7347,7348,7349,7352,7355,7359,7360,7362,7363,7365,7366,7407,7423,7469,7488,7489,7490,7496,7497,7501,7502,7504,7505,7508,7509,7512,7519,7527,7529,7530,7538,7539,7544,7545,7554,7555,7560,7619,7620,7621,7622,7626,7628,7629,7634,7637,7639,7641,7644,7650,7651,7654,7655,7658,7659,7660,7661,7662,7663,7664,7666,7667,7668,7669,7670,7671,7672,7673,7675,7682,7693,7697,7701,7703,7706,7711,7714,7781,7797,7811,7812,7813,7814,7815,7837,7838,7840,7931,7937,7941,7943,7946,7947,7957,7961,7968,7969,7970,7971,7974,7976,7978,7994,8010,8011,8016,8017,8018,8020,8042,8095,8099,8149,8150,8151,8154,8156,8157,8210,8221,8520,8592,8595,8597,8598,8599,8662,8663,8664,8665,8666,8667,8669,8865,9276,9298,9729,9730,10032,10264,10660,10661,10666,10667,10668,10670,10686,10687,10688,10689,10691,10739,10782,10783,10784,10787,10789,10790,10891,10901,10930,10931,11390,11534,11640,11738,11739,11782,17691,17841,17898,19554,20074,20077,20789,20819,21098,21099,22372,22452,22502,22529,22810,23005]]],["+",[6,6,[[6,4,4,0,4,[[224,2,2,0,2],[225,1,1,2,3],[226,1,1,3,4]]],[9,1,1,4,5,[[274,1,1,4,5]]],[12,1,1,5,6,[[355,1,1,5,6]]]],[6912,6913,6932,6977,8221,10901]]],["Philistim",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[248]]],["Philistine",[33,28,[[8,32,27,0,27,[[252,28,23,0,23],[253,1,1,23,24],[254,1,1,24,25],[256,1,1,25,26],[257,1,1,26,27]]],[9,1,1,27,28,[[287,1,1,27,28]]]],[7626,7628,7629,7634,7641,7644,7650,7651,7654,7655,7658,7659,7660,7661,7662,7663,7666,7667,7668,7669,7672,7673,7675,7682,7711,7781,7797,8597]]],["Philistines",[243,207,[[0,6,6,0,6,[[20,1,1,0,1],[25,5,5,1,6]]],[1,2,2,6,8,[[62,1,1,6,7],[72,1,1,7,8]]],[5,2,2,8,10,[[199,2,2,8,10]]],[6,30,28,10,38,[[213,2,2,10,12],[220,3,3,12,15],[223,2,2,15,17],[224,3,3,17,20],[225,8,7,20,27],[226,12,11,27,38]]],[8,118,98,38,136,[[239,10,8,38,46],[240,4,4,46,50],[241,8,8,50,58],[242,12,7,58,65],[244,1,1,65,66],[245,1,1,66,67],[247,1,1,67,68],[248,12,10,68,78],[249,13,11,78,89],[252,12,11,89,100],[253,6,5,100,105],[254,1,1,105,106],[258,8,7,106,113],[259,1,1,113,114],[262,3,3,114,117],[263,6,5,117,122],[264,10,7,122,129],[265,1,1,129,130],[266,8,6,130,136]]],[9,28,22,136,158,[[267,1,1,136,137],[269,2,2,137,139],[271,8,6,139,145],[274,2,1,145,146],[285,1,1,146,147],[287,6,4,147,151],[289,8,7,151,158]]],[10,3,3,158,161,[[294,1,1,158,159],[305,1,1,159,160],[306,1,1,160,161]]],[11,3,3,161,164,[[320,2,2,161,163],[330,1,1,163,164]]],[12,27,21,164,185,[[338,1,1,164,165],[347,8,6,165,171],[348,5,4,171,175],[349,2,1,175,176],[351,7,6,176,182],[355,2,1,182,183],[357,2,2,183,185]]],[13,7,6,185,191,[[375,1,1,185,186],[383,1,1,186,187],[387,1,1,187,188],[392,3,2,188,190],[394,1,1,190,191]]],[22,3,3,191,194,[[680,1,1,191,192],[687,1,1,192,193],[689,1,1,193,194]]],[23,4,3,194,197,[[769,1,1,194,195],[791,3,2,195,197]]],[25,4,4,197,201,[[817,2,2,197,199],[826,2,2,199,201]]],[29,3,3,201,204,[[879,1,1,201,202],[884,1,1,202,203],[887,1,1,203,204]]],[30,1,1,204,205,[[888,1,1,204,205]]],[35,1,1,205,206,[[907,1,1,205,206]]],[37,1,1,206,207,[[919,1,1,206,207]]]],[545,693,700,706,707,710,1884,2175,6156,6157,6571,6599,6817,6818,6822,6885,6889,6910,6911,6913,6934,6935,6938,6940,6941,6943,6949,6954,6957,6958,6961,6963,6967,6969,6970,6972,6976,6979,7298,7299,7300,7303,7304,7306,7307,7314,7320,7321,7327,7330,7332,7333,7335,7343,7347,7348,7349,7352,7355,7359,7360,7362,7363,7365,7366,7407,7423,7469,7488,7489,7490,7496,7497,7501,7502,7504,7505,7508,7519,7527,7529,7530,7538,7539,7544,7545,7554,7555,7560,7619,7620,7621,7622,7637,7639,7641,7664,7669,7670,7671,7693,7697,7701,7703,7706,7714,7811,7812,7813,7814,7815,7837,7838,7840,7931,7937,7941,7943,7946,7947,7957,7961,7968,7969,7970,7971,7974,7976,7978,7994,8010,8011,8016,8017,8018,8020,8042,8095,8099,8149,8150,8151,8154,8156,8157,8210,8520,8592,8595,8598,8599,8662,8663,8664,8665,8666,8667,8669,8865,9276,9298,9729,9730,10032,10264,10660,10661,10666,10667,10668,10670,10686,10687,10688,10691,10739,10782,10783,10784,10787,10789,10790,10891,10930,10931,11390,11534,11640,11738,11739,11782,17691,17841,17898,19554,20074,20077,20789,20819,21098,21099,22372,22452,22502,22529,22810,23005]]],["Philistines'",[4,4,[[0,1,1,0,1,[[20,1,1,0,1]]],[8,2,2,1,3,[[249,2,2,1,3]]],[12,1,1,3,4,[[348,1,1,3,4]]]],[547,7509,7512,10689]]]]},{"k":"H6431","v":[["Peleth",[2,2,[[3,1,1,0,1,[[132,1,1,0,1]]],[12,1,1,1,2,[[339,1,1,1,2]]]],[4195,10339]]]]},{"k":"H6432","v":[["Pelethites",[7,7,[[9,4,4,0,4,[[274,1,1,0,1],[281,1,1,1,2],[286,2,2,2,4]]],[10,2,2,4,6,[[291,2,2,4,6]]],[12,1,1,6,7,[[355,1,1,6,7]]]],[8227,8407,8561,8577,8755,8761,10907]]]]},{"k":"H6433","v":[["*",[6,6,[[26,6,6,0,6,[[853,1,1,0,1],[855,2,2,1,3],[856,3,3,3,6]]]],[21868,21922,21927,21938,21941,21953]]],["mouth",[5,5,[[26,5,5,0,5,[[853,1,1,0,1],[855,1,1,1,2],[856,3,3,2,5]]]],[21868,21922,21938,21941,21953]]],["mouths",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21927]]]]},{"k":"H6434","v":[["corner",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23078]]]]},{"k":"H6435","v":[["*",[132,124,[[0,17,17,0,17,[[2,2,2,0,2],[10,1,1,2,3],[18,3,3,3,6],[23,1,1,6,7],[25,2,2,7,9],[30,2,2,9,11],[31,1,1,11,12],[37,2,2,12,14],[41,1,1,14,15],[43,1,1,15,16],[44,1,1,16,17]]],[1,13,12,17,29,[[50,1,1,17,18],[54,1,1,18,19],[62,1,1,19,20],[68,3,3,20,23],[69,1,1,23,24],[72,2,2,24,26],[82,1,1,26,27],[83,3,2,27,29]]],[2,1,1,29,30,[[99,1,1,29,30]]],[3,3,3,30,33,[[132,2,2,30,32],[136,1,1,32,33]]],[4,28,24,33,57,[[156,5,4,33,37],[158,2,2,37,39],[159,2,2,39,41],[160,2,2,41,43],[161,1,1,43,44],[163,1,1,44,45],[164,4,3,45,48],[167,1,1,48,49],[171,1,1,49,50],[172,3,3,50,53],[174,1,1,53,54],[177,1,1,54,55],[181,2,1,55,56],[184,2,1,56,57]]],[5,3,3,57,60,[[188,1,1,57,58],[192,1,1,58,59],[210,1,1,59,60]]],[6,5,5,60,65,[[217,1,1,60,61],[219,1,1,61,62],[224,1,1,62,63],[225,1,1,63,64],[228,1,1,64,65]]],[7,1,1,65,66,[[235,1,1,65,66]]],[8,6,6,66,72,[[244,1,1,66,67],[248,1,1,67,68],[250,1,1,68,69],[255,1,1,69,70],[262,1,1,70,71],[266,1,1,71,72]]],[9,6,5,72,77,[[267,2,1,72,73],[278,1,1,73,74],[281,1,1,74,75],[283,1,1,75,76],[286,1,1,76,77]]],[11,2,2,77,79,[[314,1,1,77,78],[322,1,1,78,79]]],[12,1,1,79,80,[[347,1,1,79,80]]],[17,2,2,80,82,[[467,1,1,80,81],[471,1,1,81,82]]],[18,9,9,82,91,[[479,1,1,82,83],[484,1,1,83,84],[490,2,2,84,86],[505,1,1,86,87],[515,1,1,87,88],[527,1,1,88,89],[536,1,1,89,90],[568,1,1,90,91]]],[19,18,17,91,108,[[632,3,3,91,94],[636,1,1,94,95],[647,1,1,95,96],[649,1,1,96,97],[651,1,1,97,98],[652,4,4,98,102],[653,2,2,102,104],[657,4,3,104,107],[658,1,1,107,108]]],[22,6,6,108,114,[[684,1,1,108,109],[705,1,1,109,110],[706,1,1,110,111],[714,1,1,111,112],[726,2,2,112,114]]],[23,8,7,114,121,[[745,1,1,114,115],[748,1,1,115,116],[750,2,1,116,117],[754,1,1,117,118],[765,1,1,118,119],[782,1,1,119,120],[795,1,1,120,121]]],[27,1,1,121,122,[[863,1,1,121,122]]],[29,1,1,122,123,[[883,1,1,122,123]]],[38,1,1,123,124,[[928,1,1,123,124]]]],[58,77,270,472,474,476,597,699,701,897,904,939,1130,1142,1256,1358,1369,1542,1635,1884,2047,2048,2050,2070,2173,2177,2476,2508,2511,2984,4220,4228,4329,5013,5020,5023,5027,5098,5101,5133,5136,5148,5149,5185,5224,5253,5259,5270,5328,5412,5432,5433,5434,5479,5550,5697,5785,5885,5967,6503,6696,6808,6924,6941,7018,7196,7396,7504,7566,7733,7941,8013,8042,8314,8403,8465,8560,9567,9816,10663,13641,13754,13957,13997,14077,14078,14300,14506,14690,14801,15407,16523,16526,16527,16646,16967,17040,17097,17121,17123,17129,17130,17145,17146,17257,17260,17261,17289,17779,18154,18186,18348,18619,18621,18963,19031,19097,19225,19452,19914,20258,22108,22429,23144]]],["+",[2,2,[[4,2,2,0,2,[[160,1,1,0,1],[164,1,1,1,2]]]],[5148,5259]]],["Lest",[22,22,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,1,1,1,2,[[83,1,1,1,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[4,5,5,3,8,[[156,1,1,3,4],[160,1,1,4,5],[161,1,1,5,6],[171,1,1,6,7],[181,1,1,7,8]]],[8,2,2,8,10,[[248,1,1,8,9],[262,1,1,9,10]]],[17,1,1,10,11,[[467,1,1,10,11]]],[18,2,2,11,13,[[484,1,1,11,12],[490,1,1,12,13]]],[19,8,8,13,21,[[632,3,3,13,16],[649,1,1,16,17],[651,1,1,17,18],[652,1,1,18,19],[657,1,1,19,20],[658,1,1,20,21]]],[27,1,1,21,22,[[863,1,1,21,22]]]],[701,2511,4228,5020,5149,5185,5412,5697,7504,7941,13641,13997,14078,16523,16526,16527,17040,17097,17123,17260,17289,22108]]],["Peradventure",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[904]]],["lest",[92,87,[[0,10,10,0,10,[[2,2,2,0,2],[10,1,1,2,3],[18,3,3,3,6],[25,1,1,6,7],[31,1,1,7,8],[37,1,1,8,9],[44,1,1,9,10]]],[1,11,10,10,20,[[50,1,1,10,11],[54,1,1,11,12],[68,3,3,12,15],[69,1,1,15,16],[72,2,2,16,18],[82,1,1,18,19],[83,2,1,19,20]]],[2,1,1,20,21,[[99,1,1,20,21]]],[3,2,2,21,23,[[132,1,1,21,22],[136,1,1,22,23]]],[4,16,14,23,37,[[156,4,3,23,26],[158,2,2,26,28],[159,2,2,28,30],[172,3,3,30,33],[174,1,1,33,34],[177,1,1,34,35],[181,1,1,35,36],[184,2,1,36,37]]],[5,3,3,37,40,[[188,1,1,37,38],[192,1,1,38,39],[210,1,1,39,40]]],[6,3,3,40,43,[[217,1,1,40,41],[224,1,1,41,42],[228,1,1,42,43]]],[7,1,1,43,44,[[235,1,1,43,44]]],[8,4,4,44,48,[[244,1,1,44,45],[250,1,1,45,46],[255,1,1,46,47],[266,1,1,47,48]]],[9,6,5,48,53,[[267,2,1,48,49],[278,1,1,49,50],[281,1,1,50,51],[283,1,1,51,52],[286,1,1,52,53]]],[12,1,1,53,54,[[347,1,1,53,54]]],[17,1,1,54,55,[[471,1,1,54,55]]],[18,7,7,55,62,[[479,1,1,55,56],[490,1,1,56,57],[505,1,1,57,58],[515,1,1,58,59],[527,1,1,59,60],[536,1,1,60,61],[568,1,1,61,62]]],[19,10,10,62,72,[[636,1,1,62,63],[647,1,1,63,64],[652,3,3,64,67],[653,2,2,67,69],[657,3,3,69,72]]],[22,6,6,72,78,[[684,1,1,72,73],[705,1,1,73,74],[706,1,1,74,75],[714,1,1,75,76],[726,2,2,76,78]]],[23,8,7,78,85,[[745,1,1,78,79],[748,1,1,79,80],[750,2,1,80,81],[754,1,1,81,82],[765,1,1,82,83],[782,1,1,83,84],[795,1,1,84,85]]],[29,1,1,85,86,[[883,1,1,85,86]]],[38,1,1,86,87,[[928,1,1,86,87]]]],[58,77,270,472,474,476,699,939,1142,1369,1542,1635,2047,2048,2050,2070,2173,2177,2476,2508,2984,4220,4329,5013,5023,5027,5098,5101,5133,5136,5432,5433,5434,5479,5550,5697,5785,5885,5967,6503,6696,6924,7018,7196,7396,7566,7733,8013,8042,8314,8403,8465,8560,10663,13754,13957,14077,14300,14506,14690,14801,15407,16646,16967,17121,17129,17130,17145,17146,17257,17260,17261,17779,18154,18186,18348,18619,18621,18963,19031,19097,19225,19452,19914,20258,22429,23144]]],["peradventure",[5,5,[[0,3,3,0,3,[[37,1,1,0,1],[41,1,1,1,2],[43,1,1,2,3]]],[1,1,1,3,4,[[62,1,1,3,4]]],[11,1,1,4,5,[[314,1,1,4,5]]]],[1130,1256,1358,1884,9567]]],["that",[10,9,[[0,2,2,0,2,[[23,1,1,0,1],[30,1,1,1,2]]],[4,5,4,2,6,[[163,1,1,2,3],[164,3,2,3,5],[167,1,1,5,6]]],[6,2,2,6,8,[[219,1,1,6,7],[225,1,1,7,8]]],[11,1,1,8,9,[[322,1,1,8,9]]]],[597,897,5224,5253,5270,5328,6808,6941,9816]]]]},{"k":"H6436","v":[["Pannag",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21138]]]]},{"k":"H6437","v":[["*",[134,127,[[0,4,4,0,4,[[17,1,1,0,1],[23,3,3,1,4]]],[1,6,6,4,10,[[51,1,1,4,5],[56,1,1,5,6],[59,1,1,6,7],[63,1,1,7,8],[65,1,1,8,9],[81,1,1,9,10]]],[2,5,5,10,15,[[103,1,1,10,11],[108,2,2,11,13],[109,1,1,13,14],[115,1,1,14,15]]],[3,5,5,15,20,[[128,1,1,15,16],[130,1,1,16,17],[132,2,2,17,19],[137,1,1,19,20]]],[4,16,16,20,36,[[153,3,3,20,23],[154,3,3,23,26],[155,1,1,26,27],[161,2,2,27,29],[162,1,1,29,30],[168,1,1,30,31],[175,1,1,31,32],[181,1,1,32,33],[182,1,1,33,34],[183,2,2,34,36]]],[5,5,5,36,41,[[193,1,1,36,37],[194,1,1,37,38],[201,2,2,38,40],[208,1,1,40,41]]],[6,9,9,41,50,[[216,1,1,41,42],[225,1,1,42,43],[228,2,2,43,45],[229,1,1,45,46],[230,4,4,46,50]]],[8,5,4,50,54,[[245,1,1,50,51],[248,3,2,51,53],[249,1,1,53,54]]],[9,3,3,54,57,[[267,1,1,54,55],[268,1,1,55,56],[275,1,1,56,57]]],[10,8,5,57,62,[[292,1,1,57,58],[297,4,1,58,59],[298,1,1,59,60],[300,1,1,60,61],[307,1,1,61,62]]],[11,4,4,62,66,[[314,1,1,62,63],[317,1,1,63,64],[325,1,1,64,65],[335,1,1,65,66]]],[13,8,5,66,71,[[370,4,1,66,67],[372,1,1,67,68],[379,1,1,68,69],[386,1,1,69,70],[392,1,1,70,71]]],[17,5,5,71,76,[[440,1,1,71,72],[441,1,1,72,73],[456,1,1,73,74],[459,1,1,74,75],[471,1,1,75,76]]],[18,9,9,76,85,[[502,1,1,76,77],[517,1,1,77,78],[523,1,1,78,79],[546,1,1,79,80],[557,1,1,80,81],[563,1,1,81,82],[567,1,1,82,83],[579,1,1,83,84],[596,1,1,84,85]]],[19,1,1,85,86,[[644,1,1,85,86]]],[20,2,2,86,88,[[660,2,2,86,88]]],[21,1,1,88,89,[[676,1,1,88,89]]],[22,8,8,89,97,[[686,1,1,89,90],[691,1,1,90,91],[718,1,1,91,92],[723,1,1,92,93],[731,1,1,93,94],[734,1,1,94,95],[735,1,1,95,96],[740,1,1,96,97]]],[23,10,10,97,107,[[746,1,1,97,98],[750,1,1,98,99],[776,1,1,99,100],[790,2,2,100,102],[791,1,1,102,103],[792,1,1,103,104],[793,2,2,104,106],[794,1,1,106,107]]],[25,14,14,107,121,[[809,1,1,107,108],[810,1,1,108,109],[811,1,1,109,110],[812,1,1,110,111],[818,1,1,111,112],[830,1,1,112,113],[837,1,1,113,114],[844,2,2,114,116],[845,1,1,116,117],[847,3,3,117,120],[848,1,1,120,121]]],[27,1,1,121,122,[[864,1,1,121,122]]],[33,1,1,122,123,[[901,1,1,122,123]]],[35,1,1,123,124,[[908,1,1,123,124]]],[36,1,1,124,125,[[909,1,1,124,125]]],[38,2,2,125,127,[[926,1,1,125,126],[927,1,1,126,127]]]],[446,622,640,654,1566,1708,1783,1916,1957,2453,3147,3285,3312,3324,3533,4069,4133,4209,4236,4373,4899,4916,4932,4939,4941,4946,4976,5172,5184,5191,5349,5511,5697,5725,5746,5748,5988,6022,6204,6209,6430,6668,6933,7014,7019,7050,7094,7096,7099,7101,7427,7502,7503,7555,8029,8069,8235,8773,8959,9013,9092,9320,9575,9659,9894,10181,11250,11301,11467,11611,11752,12952,13006,13360,13454,13757,14267,14529,14619,14951,15207,15300,15387,15538,16030,16881,17344,17345,17615,17828,17920,18423,18583,18717,18764,18779,18864,18992,19093,19764,20050,20066,20076,20119,20135,20151,20182,20607,20624,20644,20656,20831,21199,21368,21573,21589,21600,21656,21667,21674,21681,22129,22707,22835,22849,23116,23121]]],["+",[9,9,[[0,1,1,0,1,[[23,1,1,0,1]]],[2,1,1,1,2,[[103,1,1,1,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[17,2,2,3,5,[[456,1,1,3,4],[471,1,1,4,5]]],[18,2,2,5,7,[[517,1,1,5,6],[579,1,1,6,7]]],[23,1,1,7,8,[[790,1,1,7,8]]],[38,1,1,8,9,[[926,1,1,8,9]]]],[654,3147,4209,13360,13757,14529,15538,20050,23116]]],["Look",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[22,1,1,1,2,[[723,1,1,1,2]]]],[16030,18583]]],["Prepare",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18423]]],["Regard",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3312]]],["Turn",[3,3,[[2,1,1,0,1,[[108,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[18,1,1,2,3,[[502,1,1,2,3]]]],[3285,4899,14267]]],["appeared",[1,1,[[1,1,1,0,1,[[63,1,1,0,1]]]],[1916]]],["aside",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17615]]],["away",[4,4,[[4,2,2,0,2,[[181,1,1,0,1],[182,1,1,1,2]]],[18,1,1,2,3,[[567,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]]],[5697,5725,15387,19093]]],["back",[5,5,[[13,1,1,0,1,[[379,1,1,0,1]]],[23,3,3,1,4,[[790,1,1,1,2],[791,1,1,2,3],[793,1,1,3,4]]],[33,1,1,4,5,[[901,1,1,4,5]]]],[11467,20066,20076,20135,22707]]],["beholdeth",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13454]]],["dawning",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7050]]],["faces",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[446]]],["herself",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20151]]],["lieth",[1,1,[[25,1,1,0,1,[[810,1,1,0,1]]]],[20624]]],["look",[8,8,[[4,1,1,0,1,[[161,1,1,0,1]]],[9,1,1,1,2,[[275,1,1,1,2]]],[17,1,1,2,3,[[441,1,1,2,3]]],[22,2,2,3,5,[[686,1,1,3,4],[734,1,1,4,5]]],[25,2,2,5,7,[[830,1,1,5,6],[844,1,1,6,7]]],[27,1,1,7,8,[[864,1,1,7,8]]]],[5184,8235,13006,17828,18764,21199,21589,22129]]],["looked",[15,15,[[1,2,2,0,2,[[51,1,1,0,1],[65,1,1,1,2]]],[3,2,2,2,4,[[128,1,1,2,3],[132,1,1,3,4]]],[5,1,1,4,5,[[194,1,1,4,5]]],[6,2,2,5,7,[[216,1,1,5,6],[230,1,1,6,7]]],[9,2,2,7,9,[[267,1,1,7,8],[268,1,1,8,9]]],[13,2,2,9,11,[[386,1,1,9,10],[392,1,1,10,11]]],[20,1,1,11,12,[[660,1,1,11,12]]],[25,2,2,12,14,[[811,1,1,12,13],[847,1,1,13,14]]],[36,1,1,14,15,[[909,1,1,14,15]]]],[1566,1957,4069,4236,6022,6668,7094,8029,8069,11611,11752,17344,20644,21674,22849]]],["looketh",[8,8,[[5,1,1,0,1,[[201,1,1,0,1]]],[25,7,7,1,8,[[809,1,1,1,2],[812,1,1,2,3],[844,1,1,3,4],[845,1,1,4,5],[847,2,2,5,7],[848,1,1,7,8]]]],[6204,20607,20656,21573,21600,21656,21667,21681]]],["looking",[9,3,[[5,1,1,0,1,[[201,1,1,0,1]]],[10,4,1,1,2,[[297,4,1,1,2]]],[13,4,1,2,3,[[370,4,1,2,3]]]],[6209,8959,11250]]],["myself",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5191]]],["on",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5511]]],["out",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22835]]],["prepare",[3,3,[[22,2,2,0,2,[[735,1,1,0,1],[740,1,1,1,2]]],[38,1,1,2,3,[[927,1,1,2,3]]]],[18779,18864,23121]]],["prepared",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[622]]],["preparedst",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15207]]],["respect",[4,4,[[2,1,1,0,1,[[115,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[11,1,1,2,3,[[325,1,1,2,3]]],[13,1,1,3,4,[[372,1,1,3,4]]]],[3533,9013,9894,11301]]],["return",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6430]]],["right",[1,1,[[18,1,1,0,1,[[523,1,1,0,1]]]],[14619]]],["turn",[13,13,[[0,1,1,0,1,[[23,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[4,4,4,2,6,[[153,1,1,2,3],[154,1,1,3,4],[168,1,1,4,5],[183,1,1,5,6]]],[10,1,1,6,7,[[307,1,1,6,7]]],[17,1,1,7,8,[[440,1,1,7,8]]],[18,2,2,8,10,[[546,1,1,8,9],[563,1,1,9,10]]],[22,1,1,10,11,[[691,1,1,10,11]]],[23,1,1,11,12,[[794,1,1,11,12]]],[25,1,1,12,13,[[837,1,1,12,13]]]],[640,4133,4932,4941,5349,5748,9320,12952,14951,15300,17920,20182,21368]]],["turned",[32,31,[[1,3,3,0,3,[[56,1,1,0,1],[59,1,1,1,2],[81,1,1,2,3]]],[3,1,1,3,4,[[137,1,1,3,4]]],[4,6,6,4,10,[[153,1,1,4,5],[154,2,2,5,7],[155,1,1,7,8],[161,1,1,8,9],[183,1,1,9,10]]],[5,1,1,10,11,[[193,1,1,10,11]]],[6,6,6,11,17,[[225,1,1,11,12],[228,2,2,12,14],[230,3,3,14,17]]],[8,5,4,17,21,[[245,1,1,17,18],[248,3,2,18,20],[249,1,1,20,21]]],[10,1,1,21,22,[[300,1,1,21,22]]],[11,3,3,22,25,[[314,1,1,22,23],[317,1,1,23,24],[335,1,1,24,25]]],[20,1,1,25,26,[[660,1,1,25,26]]],[22,1,1,26,27,[[731,1,1,26,27]]],[23,3,3,27,30,[[746,1,1,27,28],[776,1,1,28,29],[792,1,1,29,30]]],[25,1,1,30,31,[[818,1,1,30,31]]]],[1708,1783,2453,4373,4916,4939,4946,4976,5172,5746,5988,6933,7014,7019,7096,7099,7101,7427,7502,7503,7555,9092,9575,9659,10181,17345,18717,18992,19764,20119,20831]]],["turnest",[1,1,[[10,1,1,0,1,[[292,1,1,0,1]]]],[8773]]],["turneth",[2,2,[[2,1,1,0,1,[[109,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]]],[3324,16881]]]]},{"k":"H6438","v":[["*",[30,30,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[6,1,1,2,3,[[230,1,1,2,3]]],[8,1,1,3,4,[[249,1,1,3,4]]],[10,1,1,4,5,[[297,1,1,4,5]]],[11,1,1,5,6,[[326,1,1,5,6]]],[13,4,4,6,10,[[391,1,1,6,7],[392,2,2,7,9],[394,1,1,9,10]]],[15,3,3,10,13,[[415,3,3,10,13]]],[17,2,2,13,15,[[436,1,1,13,14],[473,1,1,14,15]]],[18,1,1,15,16,[[595,1,1,15,16]]],[19,4,4,16,20,[[634,2,2,16,18],[648,1,1,18,19],[652,1,1,19,20]]],[22,2,2,20,22,[[697,1,1,20,21],[706,1,1,21,22]]],[23,3,3,22,25,[[775,2,2,22,24],[795,1,1,24,25]]],[25,2,2,25,27,[[844,1,1,25,26],[846,1,1,26,27]]],[35,2,2,27,29,[[906,1,1,27,28],[908,1,1,28,29]]],[37,1,1,29,30,[[920,1,1,29,30]]]],[2274,2635,7056,7546,8968,9909,11727,11741,11747,11788,12351,12358,12359,12888,13799,15891,16583,16587,16993,17137,18017,18180,19729,19731,20238,21592,21649,22803,22826,23020]]],["bulwarks",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11747]]],["chief",[2,2,[[6,1,1,0,1,[[230,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]]],[7056,7546]]],["corner",[18,18,[[11,1,1,0,1,[[326,1,1,0,1]]],[13,3,3,1,4,[[391,1,1,1,2],[392,1,1,2,3],[394,1,1,3,4]]],[15,3,3,4,7,[[415,3,3,4,7]]],[17,1,1,7,8,[[473,1,1,7,8]]],[18,1,1,8,9,[[595,1,1,8,9]]],[19,4,4,9,13,[[634,2,2,9,11],[648,1,1,11,12],[652,1,1,12,13]]],[22,1,1,13,14,[[706,1,1,13,14]]],[23,3,3,14,17,[[775,2,2,14,16],[795,1,1,16,17]]],[37,1,1,17,18,[[920,1,1,17,18]]]],[9909,11727,11741,11788,12351,12358,12359,13799,15891,16583,16587,16993,17137,18180,19729,19731,20238,23020]]],["corners",[6,6,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[17,1,1,3,4,[[436,1,1,3,4]]],[25,2,2,4,6,[[844,1,1,4,5],[846,1,1,5,6]]]],[2274,2635,8968,12888,21592,21649]]],["stay",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18017]]],["towers",[2,2,[[35,2,2,0,2,[[906,1,1,0,1],[908,1,1,1,2]]]],[22803,22826]]]]},{"k":"H6439","v":[["*",[9,8,[[0,2,2,0,2,[[31,2,2,0,2]]],[6,4,3,2,5,[[218,4,3,2,5]]],[10,1,1,5,6,[[302,1,1,5,6]]],[12,2,2,6,8,[[341,1,1,6,7],[345,1,1,7,8]]]],[958,959,6727,6728,6736,9176,10389,10600]]],["Peniel",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[958]]],["Penuel",[8,7,[[0,1,1,0,1,[[31,1,1,0,1]]],[6,4,3,1,4,[[218,4,3,1,4]]],[10,1,1,4,5,[[302,1,1,4,5]]],[12,2,2,5,7,[[341,1,1,5,6],[345,1,1,6,7]]]],[959,6727,6728,6736,9176,10389,10600]]]]},{"k":"H6440","v":[["*",[2116,1881,[[0,141,126,0,126,[[0,4,3,0,3],[1,1,1,3,4],[2,1,1,4,5],[3,5,4,5,9],[5,5,4,9,13],[6,6,6,13,19],[7,3,3,19,22],[8,1,1,22,23],[9,2,1,23,24],[10,4,4,24,28],[12,2,2,28,30],[15,3,3,30,33],[16,4,4,33,37],[17,3,3,37,40],[18,5,4,40,44],[19,1,1,44,45],[22,6,6,45,51],[23,5,5,51,56],[24,3,2,56,58],[26,6,5,58,63],[28,1,1,63,64],[29,3,3,64,67],[30,4,4,67,71],[31,10,6,71,77],[32,6,4,77,81],[33,2,2,81,83],[34,2,2,83,85],[35,3,3,85,88],[37,1,1,88,89],[39,2,2,89,91],[40,5,4,91,95],[42,8,8,95,103],[43,4,4,103,107],[44,3,3,107,110],[45,3,2,110,112],[46,6,6,112,118],[47,3,3,118,121],[48,1,1,121,122],[49,4,4,122,126]]],[1,127,111,126,237,[[50,1,1,126,127],[51,1,1,127,128],[52,2,2,128,130],[53,2,2,130,132],[55,2,2,132,134],[56,3,2,134,136],[57,2,2,136,138],[58,5,4,138,142],[59,7,6,142,148],[60,1,1,148,149],[62,2,2,149,151],[63,6,4,151,155],[65,4,4,155,159],[66,2,2,159,161],[67,1,1,161,162],[68,2,2,162,164],[69,2,2,164,166],[70,1,1,166,167],[72,11,10,167,177],[74,5,3,177,180],[75,1,1,180,181],[76,1,1,181,182],[77,9,8,182,190],[78,7,7,190,197],[79,5,4,197,201],[81,6,6,201,207],[82,10,8,207,215],[83,13,10,215,225],[84,2,2,225,227],[85,1,1,227,228],[86,2,1,228,229],[88,3,3,229,232],[89,5,5,232,237]]],[2,107,94,237,331,[[90,3,3,237,240],[92,5,5,240,245],[93,12,8,245,253],[95,4,3,253,256],[96,1,1,256,257],[97,4,4,257,261],[98,7,5,261,266],[99,8,7,266,273],[101,1,1,273,274],[102,1,1,274,275],[103,11,11,275,286],[104,3,3,286,289],[105,11,10,289,299],[106,3,3,299,302],[107,5,5,302,307],[108,6,4,307,311],[109,4,4,311,315],[111,1,1,315,316],[112,4,4,316,320],[113,4,4,320,324],[115,7,5,324,329],[116,2,2,329,331]]],[3,119,96,331,427,[[119,7,4,331,335],[120,1,1,335,336],[121,4,4,336,340],[122,4,4,340,344],[123,3,2,344,346],[124,10,8,346,354],[125,2,1,354,355],[126,4,4,355,359],[127,2,2,359,361],[128,2,2,361,363],[129,1,1,363,364],[130,6,5,364,369],[131,3,3,369,372],[132,12,12,372,384],[133,4,4,384,388],[134,2,2,388,390],[135,3,3,390,393],[136,5,4,393,397],[137,2,2,397,399],[138,4,2,399,401],[139,1,1,401,402],[140,1,1,402,403],[142,1,1,403,404],[143,12,6,404,410],[147,2,2,410,412],[148,12,8,412,420],[149,6,5,420,425],[151,1,1,425,426],[152,2,1,426,427]]],[4,131,114,427,541,[[153,10,9,427,436],[154,10,9,436,445],[155,2,2,445,447],[156,6,6,447,453],[157,4,3,453,456],[158,3,3,456,459],[159,11,10,459,469],[160,1,1,469,470],[161,9,7,470,477],[162,3,3,477,480],[163,6,5,480,485],[164,6,5,485,490],[166,3,3,490,493],[167,1,1,493,494],[168,4,3,494,497],[169,1,1,497,498],[170,2,2,498,500],[171,2,1,500,501],[172,2,2,501,503],[173,1,1,503,504],[174,2,2,504,506],[175,1,1,506,507],[176,2,2,507,509],[177,2,2,509,511],[178,5,4,511,515],[179,1,1,515,516],[180,9,6,516,522],[181,2,2,522,524],[182,3,3,524,527],[183,10,8,527,535],[184,2,2,535,537],[185,2,2,537,539],[186,3,2,539,541]]],[5,90,76,541,617,[[187,2,2,541,543],[188,4,4,543,547],[189,5,4,547,551],[190,7,6,551,557],[191,3,2,557,559],[192,9,8,559,567],[193,10,8,567,575],[194,7,6,575,581],[195,2,1,581,582],[196,5,5,582,587],[197,3,2,587,589],[199,3,3,589,592],[200,1,1,592,593],[201,1,1,593,594],[203,4,2,594,596],[204,6,6,596,602],[205,2,2,602,604],[206,2,2,604,606],[207,1,1,606,607],[208,2,2,607,609],[209,6,4,609,613],[210,5,4,613,617]]],[6,46,43,617,660,[[211,3,3,617,620],[212,4,4,620,624],[213,2,2,624,626],[214,3,3,626,629],[215,2,1,629,630],[216,7,6,630,636],[218,1,1,636,637],[219,3,3,637,640],[221,6,6,640,646],[223,2,2,646,648],[226,2,2,648,650],[228,2,2,650,652],[230,8,7,652,659],[231,1,1,659,660]]],[7,2,2,660,662,[[233,1,1,660,661],[235,1,1,661,662]]],[8,98,89,662,751,[[236,6,6,662,668],[237,6,6,668,674],[238,1,1,674,675],[239,3,3,675,678],[240,4,2,678,680],[241,1,1,680,681],[242,3,3,681,684],[243,3,3,684,687],[244,8,6,687,693],[245,4,4,693,697],[246,2,1,697,698],[247,3,2,698,700],[248,1,1,700,701],[249,2,2,701,703],[250,2,2,703,705],[251,5,5,705,710],[252,6,6,710,716],[253,6,6,716,722],[254,4,4,722,726],[255,3,2,726,728],[256,5,4,728,732],[257,1,1,732,733],[258,3,3,733,736],[259,1,1,736,737],[260,4,4,737,741],[261,4,4,741,745],[263,3,2,745,747],[264,1,1,747,748],[265,2,2,748,750],[266,1,1,750,751]]],[9,73,66,751,817,[[268,4,4,751,755],[269,6,4,755,759],[271,3,3,759,762],[272,7,6,762,768],[273,7,7,768,775],[275,1,1,775,776],[276,8,7,776,783],[277,3,3,783,786],[279,1,1,786,787],[280,8,7,787,794],[281,4,4,794,798],[282,3,1,798,799],[283,2,2,799,801],[284,3,3,801,804],[285,7,7,804,811],[286,1,1,811,812],[287,2,2,812,814],[289,1,1,814,815],[290,2,2,815,817]]],[10,100,88,817,905,[[291,8,7,817,824],[292,9,8,824,832],[293,7,7,832,839],[295,1,1,839,840],[296,6,4,840,844],[297,5,4,844,848],[298,21,18,848,866],[299,6,5,866,871],[300,2,2,871,873],[301,2,2,873,875],[302,4,4,875,879],[303,3,2,879,881],[304,2,2,881,883],[305,1,1,883,884],[306,3,3,884,887],[307,4,4,887,891],[308,6,6,891,897],[309,4,3,897,900],[311,4,3,900,903],[312,2,2,903,905]]],[11,73,68,905,973,[[313,1,1,905,906],[315,3,2,906,908],[316,7,6,908,914],[317,8,7,914,921],[318,3,3,921,924],[320,3,3,924,927],[321,3,3,927,930],[322,1,1,930,931],[323,2,2,931,933],[324,1,1,933,934],[325,3,3,934,937],[326,3,3,937,940],[328,4,3,940,943],[329,6,6,943,949],[330,3,3,949,952],[331,4,4,952,956],[332,2,2,956,958],[333,4,4,958,962],[334,3,2,962,964],[335,4,4,964,968],[336,2,2,968,970],[337,3,3,970,973]]],[12,63,56,973,1029,[[338,1,1,973,974],[341,1,1,974,975],[342,2,2,975,977],[343,1,1,977,978],[346,1,1,978,979],[347,1,1,979,980],[348,2,2,980,982],[349,4,3,982,985],[350,2,2,985,987],[351,2,2,987,989],[352,1,1,989,990],[353,11,10,990,1000],[354,7,7,1000,1007],[356,10,7,1007,1014],[358,4,3,1014,1017],[359,4,3,1017,1020],[360,2,2,1020,1022],[361,3,3,1022,1025],[366,4,4,1025,1029]]],[13,118,105,1029,1134,[[367,5,5,1029,1034],[368,2,2,1034,1036],[369,6,5,1036,1041],[370,3,3,1041,1044],[371,3,3,1044,1047],[372,12,10,1047,1057],[373,6,6,1057,1063],[374,1,1,1063,1064],[375,3,3,1064,1067],[376,3,3,1067,1070],[378,1,1,1070,1071],[379,5,5,1071,1076],[380,7,5,1076,1081],[381,2,2,1081,1083],[384,2,2,1083,1085],[385,4,3,1085,1088],[386,12,11,1088,1099],[388,1,1,1099,1100],[389,1,1,1100,1101],[390,1,1,1101,1102],[391,5,5,1102,1107],[392,1,1,1107,1108],[393,1,1,1108,1109],[394,3,3,1109,1112],[395,4,4,1112,1116],[396,2,1,1116,1117],[397,1,1,1117,1118],[398,5,4,1118,1122],[399,6,5,1122,1127],[400,8,5,1127,1132],[401,1,1,1132,1133],[402,1,1,1133,1134]]],[14,10,9,1134,1143,[[409,1,1,1134,1135],[410,2,2,1135,1137],[411,5,4,1137,1141],[412,2,2,1141,1143]]],[15,31,28,1143,1171,[[413,3,3,1143,1146],[414,7,6,1146,1152],[416,4,4,1152,1156],[417,2,1,1156,1157],[418,1,1,1157,1158],[420,4,3,1158,1161],[421,6,6,1161,1167],[424,1,1,1167,1168],[425,3,3,1168,1171]]],[16,36,32,1171,1203,[[426,9,8,1171,1179],[427,4,4,1179,1183],[428,1,1,1183,1184],[429,4,4,1184,1188],[430,1,1,1188,1189],[431,5,4,1189,1193],[432,3,3,1193,1196],[433,7,5,1196,1201],[434,2,2,1201,1203]]],[17,70,67,1203,1270,[[436,2,2,1203,1205],[437,2,2,1205,1207],[438,1,1,1207,1208],[439,2,2,1208,1210],[440,2,1,1210,1211],[441,1,1,1211,1212],[443,2,2,1212,1214],[444,2,2,1214,1216],[446,2,2,1216,1218],[448,6,6,1218,1224],[449,1,1,1224,1225],[450,3,3,1225,1228],[451,3,3,1228,1231],[452,2,2,1231,1233],[453,1,1,1233,1234],[454,1,1,1234,1235],[456,4,4,1235,1239],[457,2,2,1239,1241],[458,4,3,1241,1244],[459,2,2,1244,1246],[461,2,2,1246,1248],[464,1,1,1248,1249],[465,2,2,1249,1251],[467,1,1,1251,1252],[468,2,2,1252,1254],[469,3,2,1254,1256],[470,2,2,1256,1258],[472,2,2,1258,1260],[473,1,1,1260,1261],[474,1,1,1261,1262],[475,1,1,1262,1263],[476,4,4,1263,1267],[477,3,3,1267,1270]]],[18,129,122,1270,1392,[[481,1,1,1270,1271],[482,1,1,1271,1272],[486,2,2,1272,1274],[487,1,1,1274,1275],[488,1,1,1275,1276],[490,1,1,1276,1277],[493,1,1,1277,1278],[494,4,4,1278,1282],[495,2,2,1282,1284],[496,1,1,1284,1285],[498,3,3,1285,1288],[499,3,3,1288,1291],[500,1,1,1291,1292],[501,1,1,1292,1293],[504,3,2,1293,1295],[507,1,1,1295,1296],[508,2,2,1296,1298],[511,2,2,1298,1300],[512,1,1,1300,1301],[515,3,2,1301,1303],[518,1,1,1303,1304],[519,3,3,1304,1307],[520,1,1,1307,1308],[521,4,4,1308,1312],[522,1,1,1312,1313],[527,1,1,1313,1314],[528,2,2,1314,1316],[532,1,1,1316,1317],[533,1,1,1317,1318],[534,1,1,1318,1319],[537,1,1,1319,1320],[538,2,2,1320,1322],[539,1,1,1322,1323],[544,1,1,1323,1324],[545,8,6,1324,1330],[546,3,3,1330,1333],[549,3,3,1333,1336],[553,1,1,1336,1337],[555,1,1,1337,1338],[556,1,1,1338,1339],[557,6,6,1339,1345],[559,1,1,1345,1346],[560,2,2,1346,1348],[561,1,1,1348,1349],[562,1,1,1349,1350],[563,1,1,1350,1351],[565,2,2,1351,1353],[566,3,3,1353,1356],[567,1,1,1356,1357],[572,2,2,1357,1359],[573,3,3,1359,1362],[574,3,2,1362,1364],[575,2,2,1364,1366],[577,1,1,1366,1367],[579,4,4,1367,1371],[581,3,3,1371,1374],[582,2,2,1374,1376],[583,2,2,1376,1378],[591,2,1,1378,1379],[593,1,1,1379,1380],[596,4,4,1380,1384],[609,1,1,1384,1385],[616,1,1,1385,1386],[617,1,1,1386,1387],[618,1,1,1387,1388],[619,2,1,1388,1389],[620,2,2,1389,1391],[624,1,1,1391,1392]]],[19,42,38,1392,1430,[[631,1,1,1392,1393],[633,1,1,1393,1394],[634,2,2,1394,1396],[635,3,3,1396,1399],[641,2,2,1399,1401],[642,2,2,1401,1403],[643,4,3,1403,1406],[644,3,3,1406,1409],[645,4,3,1409,1412],[646,1,1,1412,1413],[648,1,1,1413,1414],[649,2,1,1414,1415],[650,1,1,1415,1416],[651,2,2,1416,1418],[652,5,5,1418,1423],[654,5,4,1423,1427],[655,1,1,1427,1428],[656,1,1,1428,1429],[657,1,1,1429,1430]]],[20,21,19,1430,1449,[[659,2,2,1430,1432],[660,4,3,1432,1435],[661,1,1,1435,1436],[662,1,1,1436,1437],[663,2,2,1437,1439],[665,2,2,1439,1441],[666,5,4,1441,1445],[667,1,1,1445,1446],[668,2,2,1446,1448],[669,1,1,1448,1449]]],[21,2,2,1449,1451,[[677,1,1,1449,1450],[678,1,1,1450,1451]]],[22,88,81,1451,1532,[[679,1,1,1451,1452],[680,3,3,1452,1455],[681,3,3,1455,1458],[683,1,1,1458,1459],[684,1,1,1459,1460],[685,1,1,1460,1461],[686,2,2,1461,1463],[687,2,2,1463,1465],[688,1,1,1465,1466],[691,2,1,1466,1467],[692,1,1,1467,1468],[694,1,1,1468,1469],[695,3,2,1469,1471],[696,2,2,1471,1473],[697,5,5,1473,1478],[698,1,1,1478,1479],[699,4,1,1479,1480],[701,2,2,1480,1482],[702,1,1,1482,1483],[703,2,2,1483,1485],[704,1,1,1485,1486],[705,1,1,1486,1487],[706,1,1,1487,1488],[707,1,1,1488,1489],[708,3,2,1489,1491],[709,1,1,1491,1492],[714,2,2,1492,1494],[715,3,3,1494,1497],[716,2,2,1497,1499],[718,1,1,1499,1500],[719,2,2,1500,1502],[720,1,1,1502,1503],[721,1,1,1503,1504],[723,3,2,1504,1506],[726,2,2,1506,1508],[728,2,2,1508,1510],[729,1,1,1510,1511],[730,1,1,1511,1512],[731,3,3,1512,1515],[732,1,1,1515,1516],[733,1,1,1516,1517],[735,2,2,1517,1519],[736,1,1,1519,1520],[737,1,1,1520,1521],[740,1,1,1521,1522],[741,2,2,1522,1524],[742,4,4,1524,1528],[743,2,2,1528,1530],[744,2,2,1530,1532]]],[23,129,111,1532,1643,[[745,5,3,1532,1535],[746,2,2,1535,1537],[747,1,1,1537,1538],[748,4,3,1538,1541],[749,2,2,1541,1543],[750,1,1,1543,1544],[751,5,5,1544,1549],[752,1,1,1549,1550],[753,3,3,1550,1553],[757,2,2,1553,1555],[758,1,1,1555,1556],[759,5,4,1556,1560],[760,2,2,1560,1562],[761,2,1,1562,1563],[762,5,3,1563,1566],[763,1,1,1566,1567],[765,3,3,1567,1570],[766,1,1,1570,1571],[767,4,3,1571,1574],[768,1,1,1574,1575],[769,7,6,1575,1581],[770,3,3,1581,1584],[771,1,1,1584,1585],[772,3,2,1585,1587],[774,2,2,1587,1589],[775,2,1,1589,1590],[776,3,3,1590,1593],[777,3,3,1593,1596],[778,3,3,1596,1599],[779,5,4,1599,1603],[780,3,3,1603,1606],[781,2,2,1606,1608],[782,2,2,1608,1610],[783,2,2,1610,1612],[784,2,2,1612,1614],[785,4,3,1614,1617],[786,7,5,1617,1622],[788,8,6,1622,1628],[790,1,1,1628,1629],[792,1,1,1629,1630],[793,4,3,1630,1633],[794,4,4,1633,1637],[795,2,2,1637,1639],[796,4,4,1639,1643]]],[24,11,10,1643,1653,[[797,3,3,1643,1646],[798,2,2,1646,1648],[799,1,1,1648,1649],[800,2,1,1649,1650],[801,3,3,1650,1653]]],[25,155,129,1653,1782,[[802,12,8,1653,1661],[803,4,3,1661,1664],[804,5,4,1664,1668],[805,3,3,1668,1671],[807,4,4,1671,1675],[808,2,2,1675,1677],[809,3,3,1677,1680],[810,2,2,1680,1682],[811,11,3,1682,1685],[812,1,1,1685,1686],[813,2,2,1686,1688],[814,1,1,1688,1689],[815,7,7,1689,1696],[816,2,1,1696,1697],[817,5,5,1697,1702],[821,6,5,1702,1707],[822,2,2,1707,1709],[823,1,1,1709,1710],[824,2,2,1710,1712],[826,1,1,1712,1713],[828,1,1,1713,1714],[829,3,3,1714,1717],[830,2,2,1717,1719],[831,2,2,1719,1721],[833,2,2,1721,1723],[834,3,3,1723,1726],[835,1,1,1726,1727],[836,1,1,1727,1728],[837,2,2,1728,1730],[838,1,1,1730,1731],[839,3,2,1731,1733],[840,5,5,1733,1738],[841,15,11,1738,1749],[842,10,9,1749,1758],[843,11,10,1758,1768],[844,3,3,1768,1771],[845,6,5,1771,1776],[846,2,1,1776,1777],[847,2,2,1777,1779],[848,1,1,1779,1780],[849,3,2,1780,1782]]],[26,33,32,1782,1814,[[850,6,6,1782,1788],[851,1,1,1788,1789],[857,8,8,1789,1797],[858,8,8,1797,1805],[859,5,4,1805,1809],[860,5,5,1809,1814]]],[27,9,9,1814,1823,[[863,1,1,1814,1815],[866,2,2,1815,1817],[867,1,1,1817,1818],[868,2,2,1818,1820],[871,2,2,1820,1822],[872,1,1,1822,1823]]],[28,8,6,1823,1829,[[877,8,6,1823,1829]]],[29,7,7,1829,1836,[[879,1,1,1829,1830],[880,1,1,1830,1831],[883,2,2,1831,1833],[887,3,3,1833,1836]]],[31,4,3,1836,1839,[[889,4,3,1836,1839]]],[32,5,4,1839,1843,[[893,1,1,1839,1840],[894,2,1,1840,1841],[895,1,1,1841,1842],[898,1,1,1842,1843]]],[33,5,5,1843,1848,[[900,2,2,1843,1845],[901,2,2,1845,1847],[902,1,1,1847,1848]]],[34,3,3,1848,1851,[[903,1,1,1848,1849],[904,1,1,1849,1850],[905,1,1,1850,1851]]],[35,3,3,1851,1854,[[906,3,3,1851,1854]]],[36,2,2,1854,1856,[[909,1,1,1854,1855],[910,1,1,1855,1856]]],[37,16,16,1856,1872,[[912,1,1,1856,1857],[913,5,5,1857,1862],[914,1,1,1862,1863],[915,1,1,1863,1864],[917,1,1,1864,1865],[918,3,3,1865,1868],[922,1,1,1868,1869],[924,3,3,1869,1872]]],[38,9,9,1872,1881,[[925,2,2,1872,1874],[926,3,3,1874,1877],[927,3,3,1877,1880],[928,1,1,1880,1881]]]],[1,19,28,36,63,84,85,93,95,138,144,148,150,160,162,163,166,177,182,191,192,196,228,243,270,274,275,294,327,328,387,389,393,398,400,414,415,432,440,446,470,478,484,485,510,574,575,579,583,588,590,598,603,624,631,642,667,676,734,737,747,757,773,821,860,863,870,875,878,894,908,931,944,945,948,949,958,963,970,974,978,990,1001,1012,1018,1046,1047,1071,1134,1179,1181,1226,1238,1241,1251,1293,1295,1299,1304,1305,1321,1323,1324,1338,1347,1350,1353,1361,1363,1365,1414,1416,1422,1426,1427,1430,1433,1438,1462,1466,1471,1503,1507,1519,1522,1524,1544,1569,1585,1586,1604,1622,1667,1685,1694,1695,1730,1734,1752,1753,1755,1772,1780,1787,1788,1791,1805,1806,1816,1888,1889,1891,1898,1908,1914,1956,1961,1980,1981,1988,1989,2011,2033,2044,2054,2071,2078,2159,2161,2164,2165,2167,2171,2172,2173,2174,2175,2215,2225,2232,2244,2293,2305,2318,2320,2322,2323,2328,2330,2331,2346,2347,2359,2360,2361,2362,2378,2388,2390,2398,2418,2439,2443,2450,2458,2461,2472,2475,2484,2487,2488,2489,2492,2493,2496,2502,2507,2516,2519,2520,2525,2526,2529,2530,2531,2544,2551,2569,2613,2682,2684,2700,2712,2713,2730,2732,2733,2748,2750,2756,2779,2785,2786,2790,2791,2799,2801,2802,2809,2810,2812,2813,2819,2856,2863,2874,2909,2926,2943,2944,2946,2955,2957,2958,2974,2977,2978,2979,2980,2981,2992,2994,2996,3051,3093,3118,3122,3123,3127,3129,3134,3135,3138,3140,3142,3164,3182,3183,3198,3202,3203,3208,3211,3213,3214,3215,3216,3219,3231,3239,3240,3245,3274,3275,3278,3279,3281,3295,3296,3303,3313,3321,3323,3324,3341,3372,3413,3422,3430,3442,3449,3450,3452,3454,3531,3532,3534,3541,3561,3578,3581,3696,3698,3699,3730,3750,3808,3810,3817,3822,3839,3843,3848,3849,3853,3860,3941,3942,3948,3949,3950,3952,3960,3961,3971,3997,3998,4021,4023,4044,4055,4062,4073,4097,4113,4122,4145,4150,4151,4168,4178,4181,4196,4198,4201,4203,4210,4211,4216,4232,4234,4237,4239,4240,4248,4251,4253,4254,4259,4276,4292,4293,4305,4314,4317,4320,4321,4351,4360,4378,4408,4444,4447,4550,4556,4559,4571,4573,4575,4576,4714,4718,4722,4735,4738,4739,4740,4745,4747,4750,4767,4768,4807,4812,4815,4857,4880,4900,4909,4913,4914,4922,4925,4930,4934,4937,4948,4950,4958,4959,4960,4963,4969,4971,4974,4993,5003,5012,5014,5036,5041,5042,5048,5057,5058,5060,5101,5105,5111,5112,5113,5117,5121,5130,5131,5132,5133,5134,5135,5157,5159,5160,5161,5162,5175,5176,5182,5194,5197,5203,5212,5231,5233,5234,5240,5247,5252,5258,5269,5270,5292,5313,5316,5339,5353,5358,5361,5382,5391,5396,5423,5430,5446,5463,5476,5487,5514,5529,5538,5549,5556,5570,5571,5576,5579,5592,5618,5631,5636,5642,5661,5671,5689,5694,5709,5723,5727,5731,5733,5734,5736,5739,5745,5746,5749,5778,5807,5811,5837,5840,5849,5856,5865,5878,5879,5880,5893,5899,5903,5904,5907,5915,5917,5921,5922,5923,5933,5935,5948,5950,5953,5955,5956,5957,5958,5962,5975,5980,5981,5982,5984,5986,5988,5989,5999,6007,6008,6012,6016,6017,6034,6061,6072,6074,6075,6076,6078,6113,6117,6157,6160,6179,6202,6217,6279,6282,6294,6299,6301,6303,6307,6309,6332,6372,6378,6381,6425,6453,6455,6463,6465,6469,6473,6477,6484,6488,6494,6519,6520,6532,6548,6559,6563,6566,6570,6595,6613,6614,6622,6628,6656,6660,6663,6665,6672,6676,6747,6775,6793,6794,6832,6838,6840,6852,6853,6862,6899,6904,6952,6974,7014,7016,7077,7080,7082,7086,7089,7093,7096,7104,7159,7197,7224,7227,7228,7230,7231,7234,7251,7257,7258,7268,7270,7275,7277,7299,7300,7314,7322,7323,7351,7358,7359,7362,7380,7387,7389,7400,7403,7406,7410,7415,7418,7423,7426,7437,7443,7460,7462,7467,7497,7521,7533,7567,7593,7603,7605,7611,7616,7617,7625,7642,7649,7659,7667,7675,7687,7688,7689,7691,7692,7705,7713,7714,7716,7730,7731,7745,7778,7779,7782,7784,7791,7828,7834,7836,7841,7871,7880,7884,7896,7906,7908,7924,7925,7964,7967,7975,7994,7998,8010,8063,8066,8071,8073,8094,8112,8115,8116,8135,8152,8156,8161,8162,8171,8173,8174,8178,8189,8195,8196,8198,8203,8206,8209,8233,8249,8253,8254,8255,8256,8258,8259,8270,8272,8274,8326,8363,8376,8378,8380,8384,8388,8389,8390,8403,8407,8412,8445,8460,8468,8485,8486,8492,8515,8516,8519,8524,8528,8529,8539,8562,8581,8589,8664,8696,8705,8719,8722,8740,8742,8745,8749,8767,8774,8777,8785,8786,8787,8790,8796,8815,8822,8828,8831,8832,8838,8840,8844,8881,8899,8916,8917,8925,8940,8976,8982,8983,8990,8993,8996,8999,9007,9008,9010,9013,9016,9018,9025,9031,9035,9039,9044,9047,9049,9050,9054,9055,9057,9058,9076,9087,9103,9115,9144,9153,9157,9159,9181,9190,9218,9227,9242,9252,9308,9313,9316,9318,9320,9322,9331,9342,9348,9356,9380,9383,9387,9398,9400,9406,9455,9477,9480,9490,9501,9548,9590,9600,9615,9632,9634,9641,9646,9647,9648,9649,9650,9662,9663,9670,9674,9675,9696,9706,9736,9738,9742,9770,9788,9793,9797,9831,9847,9867,9875,9885,9894,9904,9907,9908,9966,9977,9981,9985,9991,9994,10001,10003,10006,10029,10046,10048,10067,10075,10076,10087,10100,10101,10121,10128,10130,10132,10155,10164,10168,10178,10190,10192,10205,10222,10241,10248,10251,10295,10425,10438,10453,10486,10635,10660,10676,10686,10721,10728,10737,10768,10770,10782,10789,10815,10821,10824,10826,10831,10847,10849,10850,10853,10857,10859,10871,10876,10879,10884,10887,10888,10890,10914,10917,10921,10922,10923,10925,10926,10946,10950,10964,10969,10972,10982,10996,11014,11017,11021,11046,11176,11179,11186,11189,11199,11200,11204,11206,11207,11215,11217,11233,11237,11242,11244,11246,11259,11265,11266,11274,11277,11282,11285,11294,11296,11298,11301,11304,11306,11313,11318,11324,11328,11331,11338,11341,11343,11344,11358,11371,11375,11387,11397,11401,11403,11442,11460,11466,11467,11468,11469,11480,11482,11485,11487,11488,11492,11498,11551,11562,11578,11583,11587,11590,11592,11594,11596,11599,11600,11602,11603,11604,11605,11608,11655,11673,11691,11712,11718,11721,11725,11726,11751,11761,11767,11773,11778,11797,11802,11810,11814,11836,11874,11877,11882,11887,11896,11910,11917,11920,11927,11931,11937,11951,11957,11960,11964,11988,12005,12201,12222,12230,12243,12244,12246,12252,12253,12258,12300,12302,12307,12308,12309,12310,12312,12313,12320,12361,12364,12368,12373,12397,12420,12494,12495,12496,12519,12522,12535,12539,12543,12546,12660,12675,12676,12690,12705,12712,12713,12715,12716,12718,12719,12721,12733,12735,12741,12747,12754,12764,12767,12768,12770,12793,12794,12802,12804,12806,12813,12815,12816,12818,12820,12821,12822,12832,12845,12859,12880,12881,12896,12898,12928,12945,12949,12961,13006,13041,13045,13075,13078,13123,13127,13161,13163,13168,13169,13173,13177,13201,13207,13210,13230,13246,13252,13254,13266,13272,13293,13326,13363,13373,13386,13388,13397,13415,13423,13434,13436,13451,13454,13476,13477,13556,13567,13568,13649,13655,13676,13702,13712,13732,13734,13781,13788,13823,13856,13877,13898,13901,13902,13910,13930,13931,13933,13971,13981,14024,14040,14052,14066,14075,14103,14105,14112,14116,14118,14124,14160,14182,14197,14200,14203,14228,14231,14233,14240,14247,14293,14294,14326,14347,14351,14393,14404,14415,14493,14495,14554,14557,14560,14566,14571,14574,14586,14587,14595,14609,14671,14700,14702,14735,14768,14774,14811,14822,14826,14835,14894,14901,14902,14903,14904,14907,14908,14942,14952,14957,15005,15009,15017,15088,15168,15196,15200,15201,15205,15207,15214,15217,15235,15254,15257,15268,15284,15293,15310,15322,15340,15341,15349,15386,15456,15460,15471,15474,15478,15481,15483,15496,15499,15510,15523,15531,15546,15549,15586,15600,15601,15610,15623,15674,15697,15829,15857,15956,16033,16067,16068,16161,16246,16276,16278,16288,16295,16300,16368,16493,16575,16588,16590,16627,16629,16632,16784,16791,16820,16840,16855,16858,16865,16887,16891,16897,16906,16913,16917,16931,17013,17044,17045,17102,17110,17118,17119,17120,17136,17139,17173,17186,17188,17192,17217,17250,17281,17325,17331,17340,17342,17359,17373,17397,17399,17403,17432,17455,17459,17461,17470,17471,17476,17498,17503,17514,17631,17652,17666,17695,17704,17706,17710,17716,17722,17760,17771,17784,17811,17824,17832,17844,17877,17914,17949,17973,17992,17996,17999,18002,18005,18012,18020,18021,18024,18035,18050,18094,18095,18096,18125,18126,18147,18157,18189,18215,18228,18234,18258,18337,18339,18358,18366,18379,18392,18393,18430,18453,18477,18496,18515,18562,18563,18621,18633,18668,18669,18686,18708,18713,18714,18718,18731,18752,18766,18781,18794,18802,18865,18875,18878,18886,18887,18888,18892,18900,18903,18944,18945,18954,18959,18963,18987,18992,19014,19028,19031,19053,19061,19080,19096,19129,19131,19134,19138,19143,19155,19182,19188,19197,19283,19292,19309,19316,19324,19332,19334,19340,19353,19373,19401,19404,19407,19414,19448,19450,19452,19479,19493,19494,19523,19525,19550,19560,19561,19567,19571,19572,19575,19576,19591,19601,19626,19634,19673,19687,19727,19755,19762,19764,19780,19793,19799,19806,19816,19819,19828,19830,19834,19842,19849,19851,19864,19885,19894,19904,19921,19939,19940,19945,19951,19966,19972,19975,19977,19984,19986,19990,19992,20013,20020,20021,20022,20032,20033,20061,20124,20132,20146,20164,20171,20174,20182,20210,20263,20276,20279,20288,20301,20309,20315,20316,20332,20335,20351,20389,20436,20451,20452,20454,20470,20472,20473,20474,20475,20476,20479,20492,20496,20498,20502,20510,20511,20522,20525,20530,20532,20536,20565,20567,20568,20572,20595,20599,20605,20615,20620,20628,20630,20647,20654,20655,20668,20686,20692,20725,20732,20734,20735,20737,20738,20739,20746,20761,20767,20780,20781,20812,20825,20896,20930,20938,20941,20942,20946,20960,21006,21031,21048,21085,21156,21166,21174,21178,21185,21188,21213,21228,21252,21258,21302,21307,21311,21319,21346,21376,21390,21399,21427,21445,21453,21462,21471,21472,21477,21483,21489,21492,21496,21497,21499,21503,21521,21522,21523,21524,21530,21538,21540,21541,21544,21545,21547,21548,21551,21554,21555,21556,21559,21560,21562,21563,21564,21565,21567,21575,21576,21596,21602,21603,21610,21611,21614,21637,21658,21664,21680,21717,21723,21742,21746,21747,21750,21755,21756,21760,21964,21965,21966,21967,21968,21978,21979,21984,21991,21995,21996,21998,22001,22005,22006,22008,22021,22024,22027,22030,22052,22053,22054,22055,22058,22107,22157,22167,22169,22180,22188,22232,22240,22242,22314,22317,22321,22322,22331,22342,22365,22388,22431,22442,22499,22501,22503,22533,22534,22541,22583,22608,22612,22652,22689,22690,22700,22709,22717,22740,22768,22773,22789,22790,22794,22852,22869,22912,22913,22915,22916,22920,22921,22929,22939,22964,22986,22997,22998,23053,23072,23073,23088,23097,23098,23106,23108,23112,23121,23134,23136,23143]]],["+",[547,506,[[0,36,34,0,34,[[2,1,1,0,1],[3,2,2,1,3],[5,1,1,3,4],[6,1,1,4,5],[10,1,1,5,6],[15,3,3,6,9],[17,1,1,9,10],[18,3,2,10,12],[22,4,4,12,16],[23,1,1,16,17],[24,2,2,17,19],[26,1,1,19,20],[30,1,1,20,21],[31,3,2,21,23],[34,2,2,23,25],[35,2,2,25,27],[40,2,2,27,29],[44,1,1,29,30],[46,2,2,30,32],[48,1,1,32,33],[49,1,1,33,34]]],[1,35,35,34,69,[[50,1,1,34,35],[51,1,1,35,36],[52,1,1,36,37],[53,1,1,37,38],[57,1,1,38,39],[58,2,2,39,41],[59,2,2,41,43],[63,2,2,43,45],[68,2,2,45,47],[69,1,1,47,48],[72,6,6,48,54],[74,2,2,54,56],[75,1,1,56,57],[77,2,2,57,59],[81,1,1,59,60],[82,1,1,60,61],[83,3,3,61,64],[84,2,2,64,66],[85,1,1,66,67],[88,2,2,67,69]]],[2,15,15,69,84,[[95,1,1,69,70],[97,1,1,70,71],[98,2,2,71,73],[99,2,2,73,75],[105,3,3,75,78],[107,1,1,78,79],[108,1,1,79,80],[109,1,1,80,81],[111,1,1,81,82],[115,2,2,82,84]]],[3,21,20,84,104,[[124,2,2,84,86],[126,1,1,86,87],[132,2,2,87,89],[133,1,1,89,90],[136,3,3,90,93],[137,2,2,93,95],[138,3,2,95,97],[139,1,1,97,98],[148,2,2,98,100],[149,4,4,100,104]]],[4,38,36,104,140,[[153,1,1,104,105],[154,4,4,105,109],[156,1,1,109,110],[157,4,3,110,113],[158,1,1,113,114],[159,5,5,114,119],[160,1,1,119,120],[161,4,3,120,123],[163,3,3,123,126],[164,2,2,126,128],[166,1,1,128,129],[169,1,1,129,130],[170,1,1,130,131],[172,2,2,131,133],[173,1,1,133,134],[180,3,3,134,137],[183,2,2,137,139],[185,1,1,139,140]]],[5,30,26,140,166,[[188,4,4,140,144],[189,1,1,144,145],[190,3,2,145,147],[191,2,1,147,148],[192,1,1,148,149],[195,2,1,149,150],[196,1,1,150,151],[197,1,1,151,152],[199,3,3,152,155],[203,1,1,155,156],[204,2,2,156,158],[205,1,1,158,159],[209,5,4,159,163],[210,3,3,163,166]]],[6,17,16,166,182,[[212,3,3,166,169],[215,2,1,169,170],[216,4,4,170,174],[219,2,2,174,176],[221,4,4,176,180],[226,2,2,180,182]]],[8,22,21,182,203,[[242,1,1,182,183],[243,1,1,183,184],[249,1,1,184,185],[252,1,1,185,186],[253,4,4,186,190],[254,2,2,190,192],[255,1,1,192,193],[256,4,3,193,196],[258,1,1,196,197],[259,1,1,197,198],[260,1,1,198,199],[261,2,2,199,201],[265,1,1,201,202],[266,1,1,202,203]]],[9,14,14,203,217,[[268,1,1,203,204],[273,3,3,204,207],[276,4,4,207,211],[277,1,1,211,212],[280,1,1,212,213],[281,2,2,213,215],[287,1,1,215,216],[289,1,1,216,217]]],[10,33,28,217,245,[[291,1,1,217,218],[292,5,4,218,222],[293,1,1,222,223],[295,1,1,223,224],[296,4,2,224,226],[297,4,3,226,229],[298,5,5,229,234],[299,1,1,234,235],[301,1,1,235,236],[302,1,1,236,237],[303,1,1,237,238],[304,1,1,238,239],[307,3,3,239,242],[308,1,1,242,243],[311,3,2,243,245]]],[11,21,21,245,266,[[313,1,1,245,246],[315,1,1,246,247],[317,3,3,247,250],[318,1,1,250,251],[321,1,1,251,252],[323,1,1,252,253],[325,1,1,253,254],[328,2,2,254,256],[329,3,3,256,259],[331,1,1,259,260],[333,3,3,260,263],[334,1,1,263,264],[335,1,1,264,265],[337,1,1,265,266]]],[12,16,16,266,282,[[342,2,2,266,268],[347,1,1,268,269],[348,1,1,269,270],[349,1,1,270,271],[353,2,2,271,273],[354,2,2,273,275],[356,4,4,275,279],[358,2,2,279,281],[366,1,1,281,282]]],[13,30,27,282,309,[[367,1,1,282,283],[369,3,3,283,286],[370,2,2,286,288],[371,2,2,288,290],[372,2,2,290,292],[376,1,1,292,293],[378,1,1,293,294],[379,2,2,294,296],[385,2,1,296,297],[386,2,2,297,299],[388,1,1,299,300],[394,1,1,300,301],[398,2,1,301,302],[399,5,4,302,306],[400,2,2,306,308],[402,1,1,308,309]]],[14,1,1,309,310,[[412,1,1,309,310]]],[15,7,7,310,317,[[414,2,2,310,312],[416,3,3,312,315],[417,1,1,315,316],[425,1,1,316,317]]],[16,5,5,317,322,[[426,1,1,317,318],[429,1,1,318,319],[430,1,1,319,320],[432,1,1,320,321],[433,1,1,321,322]]],[17,21,19,322,341,[[440,2,1,322,323],[441,1,1,323,324],[448,2,2,324,326],[451,1,1,326,327],[452,1,1,327,328],[453,1,1,328,329],[454,1,1,329,330],[457,1,1,330,331],[458,3,2,331,333],[459,1,1,333,334],[461,1,1,334,335],[465,2,2,335,337],[470,1,1,337,338],[472,1,1,338,339],[474,1,1,339,340],[477,1,1,340,341]]],[18,27,22,341,363,[[486,1,1,341,342],[494,3,3,342,345],[495,1,1,345,346],[515,3,2,346,348],[521,1,1,348,349],[528,1,1,349,350],[532,1,1,350,351],[537,1,1,351,352],[538,1,1,352,353],[545,5,3,353,356],[555,1,1,356,357],[566,1,1,357,358],[573,1,1,358,359],[574,2,1,359,360],[579,1,1,360,361],[591,2,1,361,362],[616,1,1,362,363]]],[19,3,3,363,366,[[633,1,1,363,364],[644,1,1,364,365],[657,1,1,365,366]]],[20,8,8,366,374,[[659,1,1,366,367],[661,1,1,367,368],[665,1,1,368,369],[666,3,3,369,372],[668,1,1,372,373],[669,1,1,373,374]]],[22,37,33,374,407,[[680,3,3,374,377],[681,1,1,377,378],[685,1,1,378,379],[687,1,1,379,380],[688,1,1,380,381],[691,1,1,381,382],[694,1,1,382,383],[695,1,1,383,384],[696,1,1,384,385],[697,5,5,385,390],[698,1,1,390,391],[699,4,1,391,392],[702,1,1,392,393],[704,1,1,393,394],[708,3,2,394,396],[709,1,1,396,397],[715,1,1,397,398],[719,1,1,398,399],[726,1,1,399,400],[729,1,1,400,401],[735,2,2,401,403],[741,1,1,403,404],[742,3,3,404,407]]],[23,57,50,407,457,[[745,3,3,407,410],[748,4,3,410,413],[749,1,1,413,414],[750,1,1,414,415],[751,1,1,415,416],[753,1,1,416,417],[757,1,1,417,418],[758,1,1,418,419],[759,1,1,419,420],[760,1,1,420,421],[761,1,1,421,422],[762,1,1,422,423],[765,1,1,423,424],[766,1,1,424,425],[767,3,2,425,427],[769,6,5,427,432],[770,2,2,432,434],[771,1,1,434,435],[775,1,1,435,436],[776,1,1,436,437],[777,1,1,437,438],[779,3,2,438,440],[781,1,1,440,441],[782,1,1,441,442],[783,1,1,442,443],[784,1,1,443,444],[785,4,3,444,447],[786,3,2,447,449],[788,4,3,449,452],[790,1,1,452,453],[792,1,1,453,454],[794,1,1,454,455],[795,1,1,455,456],[796,1,1,456,457]]],[24,3,3,457,460,[[798,1,1,457,458],[801,2,2,458,460]]],[25,26,23,460,483,[[803,2,2,460,462],[804,1,1,462,463],[811,2,2,463,465],[815,1,1,465,466],[817,1,1,466,467],[831,1,1,467,468],[833,1,1,468,469],[839,1,1,469,470],[841,1,1,470,471],[842,3,3,471,474],[843,6,5,474,479],[845,1,1,479,480],[846,2,1,480,481],[849,3,2,481,483]]],[26,1,1,483,484,[[860,1,1,483,484]]],[27,4,4,484,488,[[863,1,1,484,485],[871,2,2,485,487],[872,1,1,487,488]]],[28,1,1,488,489,[[877,1,1,488,489]]],[29,2,2,489,491,[[880,1,1,489,490],[883,1,1,490,491]]],[31,3,2,491,493,[[889,3,2,491,493]]],[32,1,1,493,494,[[893,1,1,493,494]]],[33,1,1,494,495,[[900,1,1,494,495]]],[34,1,1,495,496,[[904,1,1,495,496]]],[35,3,3,496,499,[[906,3,3,496,499]]],[36,1,1,499,500,[[909,1,1,499,500]]],[37,3,3,500,503,[[912,1,1,500,501],[924,2,2,501,503]]],[38,3,3,503,506,[[926,2,2,503,505],[927,1,1,505,506]]]],[63,93,95,150,166,294,387,389,393,440,478,485,574,575,579,590,603,667,676,773,908,948,949,1012,1018,1046,1047,1226,1241,1361,1430,1433,1503,1519,1544,1569,1586,1604,1734,1753,1772,1780,1787,1908,1914,2033,2044,2054,2161,2165,2172,2173,2174,2175,2225,2232,2244,2318,2330,2458,2492,2502,2507,2520,2544,2551,2569,2682,2700,2863,2926,2958,2977,2979,2980,3203,3213,3215,3275,3313,3341,3372,3534,3561,3941,3942,4023,4237,4240,4253,4317,4320,4321,4351,4360,4378,4408,4444,4735,4739,4767,4768,4812,4815,4909,4950,4959,4960,4963,5042,5057,5058,5060,5105,5112,5130,5131,5132,5133,5157,5161,5162,5176,5212,5231,5233,5269,5270,5292,5382,5396,5430,5446,5463,5631,5642,5671,5731,5734,5837,5878,5879,5880,5893,5903,5917,5933,5935,5950,6061,6075,6113,6157,6160,6179,6282,6307,6309,6332,6463,6465,6469,6473,6484,6488,6494,6548,6563,6566,6628,6656,6660,6663,6665,6775,6794,6832,6852,6853,6862,6952,6974,7359,7387,7533,7642,7687,7688,7691,7705,7714,7716,7745,7778,7782,7784,7836,7841,7871,7906,7908,7994,8010,8073,8189,8195,8203,8249,8253,8254,8258,8274,8363,8407,8412,8581,8664,8767,8777,8786,8787,8790,8844,8881,8899,8925,8940,8976,8982,8993,8996,9010,9025,9039,9058,9115,9153,9190,9242,9320,9322,9331,9342,9477,9480,9548,9600,9648,9649,9674,9706,9770,9831,9875,9966,9981,9991,9994,10003,10067,10121,10128,10132,10164,10178,10248,10438,10453,10660,10686,10721,10850,10853,10871,10884,10917,10921,10922,10925,10946,10964,11176,11207,11233,11237,11246,11259,11265,11277,11282,11298,11313,11397,11442,11460,11469,11578,11594,11602,11655,11767,11882,11910,11917,11920,11931,11937,11960,12005,12258,12313,12320,12364,12368,12373,12397,12676,12721,12770,12793,12813,12832,12961,13006,13168,13173,13252,13272,13293,13326,13397,13434,13436,13454,13477,13567,13568,13732,13788,13856,13931,14024,14105,14112,14116,14160,14493,14495,14587,14702,14735,14811,14822,14901,14902,14908,15168,15349,15474,15483,15531,15829,16246,16575,16897,17281,17325,17373,17455,17461,17470,17471,17498,17514,17695,17704,17706,17710,17784,17844,17877,17914,17973,17992,17999,18005,18012,18020,18021,18024,18035,18050,18096,18147,18228,18234,18258,18358,18477,18633,18686,18766,18781,18878,18886,18887,18888,18954,18959,18963,19028,19031,19053,19080,19096,19131,19182,19283,19309,19332,19353,19373,19407,19452,19479,19493,19494,19550,19561,19567,19571,19572,19575,19591,19601,19727,19755,19793,19830,19834,19885,19904,19940,19951,19966,19972,19975,19986,19992,20013,20032,20033,20061,20124,20182,20276,20288,20335,20451,20452,20496,20498,20511,20654,20655,20746,20825,21213,21258,21445,21496,21530,21538,21541,21554,21555,21560,21562,21565,21603,21637,21717,21723,22058,22107,22232,22240,22242,22317,22388,22442,22534,22541,22583,22689,22768,22789,22790,22794,22852,22912,23072,23073,23108,23112,23134]]],["Before",[5,5,[[18,3,3,0,3,[[557,1,1,0,1],[573,1,1,1,2],[575,1,1,2,3]]],[19,1,1,3,4,[[645,1,1,3,4]]],[34,1,1,4,5,[[905,1,1,4,5]]]],[15200,15478,15499,16913,22773]]],["Beforetime",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7400]]],["afore",[2,2,[[22,1,1,0,1,[[696,1,1,0,1]]],[25,1,1,1,2,[[834,1,1,1,2]]]],[18002,21302]]],["aforetime",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13266]]],["against",[9,9,[[1,1,1,0,1,[[63,1,1,0,1]]],[4,3,3,1,4,[[183,1,1,1,2],[184,1,1,2,3],[186,1,1,3,4]]],[8,1,1,4,5,[[250,1,1,4,5]]],[12,1,1,5,6,[[351,1,1,5,6]]],[13,3,3,6,9,[[380,1,1,6,7],[386,2,2,7,9]]]],[1891,5749,5807,5840,7567,10782,11485,11599,11604]]],["anger",[3,3,[[18,1,1,0,1,[[498,1,1,0,1]]],[23,1,1,1,2,[[747,1,1,1,2]]],[24,1,1,2,3,[[800,1,1,2,3]]]],[14200,19014,20436]]],["at",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12820]]],["before",[971,904,[[0,51,48,0,48,[[5,2,2,0,2],[6,1,1,2,3],[9,2,1,3,4],[12,2,2,4,6],[16,2,2,6,8],[17,2,2,8,10],[18,1,1,10,11],[19,1,1,11,12],[22,2,2,12,14],[23,4,4,14,18],[26,3,2,18,20],[28,1,1,20,21],[29,1,1,21,22],[31,4,4,22,26],[32,4,3,26,29],[33,1,1,29,30],[35,1,1,30,31],[39,1,1,31,32],[40,2,2,32,34],[42,5,5,34,39],[43,1,1,39,40],[44,2,2,40,42],[45,1,1,42,43],[46,2,2,43,45],[47,2,2,45,47],[49,1,1,47,48]]],[1,64,61,48,109,[[53,1,1,48,49],[55,2,2,49,51],[56,3,2,51,53],[57,1,1,53,54],[58,3,3,54,57],[59,1,1,57,58],[60,1,1,58,59],[62,2,2,59,61],[63,3,3,61,64],[65,3,3,64,67],[66,2,2,67,69],[67,1,1,69,70],[70,1,1,70,71],[72,5,5,71,76],[74,1,1,76,77],[76,1,1,77,78],[77,6,5,78,83],[78,7,7,83,90],[79,5,4,90,94],[81,4,4,94,98],[82,2,2,98,100],[83,4,4,100,104],[89,5,5,104,109]]],[2,79,75,109,184,[[90,3,3,109,112],[92,5,5,112,117],[93,12,8,117,125],[95,3,3,125,128],[96,1,1,128,129],[97,3,3,129,132],[98,4,4,132,136],[99,6,6,136,142],[101,1,1,142,143],[103,9,9,143,152],[104,3,3,152,155],[105,8,8,155,163],[106,1,1,163,164],[107,4,4,164,168],[108,2,2,168,170],[112,4,4,170,174],[113,4,4,174,178],[115,4,4,178,182],[116,2,2,182,184]]],[3,83,68,184,252,[[119,6,4,184,188],[121,4,4,188,192],[122,2,2,192,194],[123,3,2,194,196],[124,8,6,196,202],[125,2,1,202,203],[126,3,3,203,206],[127,1,1,206,207],[129,1,1,207,208],[130,5,5,208,213],[131,3,3,213,216],[132,7,7,216,223],[133,3,3,223,226],[134,2,2,226,228],[135,2,2,228,230],[136,1,1,230,231],[142,1,1,231,232],[143,12,6,232,238],[147,2,2,238,240],[148,10,8,240,248],[149,2,2,248,250],[151,1,1,250,251],[152,2,1,251,252]]],[4,65,59,252,311,[[153,8,8,252,260],[154,2,2,260,262],[155,2,2,262,264],[156,4,4,264,268],[158,1,1,268,269],[159,2,2,269,271],[161,4,4,271,275],[162,2,2,275,277],[163,3,3,277,280],[164,4,3,280,283],[166,2,2,283,285],[167,1,1,285,286],[168,3,2,286,288],[170,1,1,288,289],[171,2,1,289,290],[174,2,2,290,292],[175,1,1,292,293],[176,2,2,293,295],[178,5,4,295,299],[179,1,1,299,300],[180,3,2,300,302],[181,2,2,302,304],[182,3,3,304,307],[183,4,3,307,310],[185,1,1,310,311]]],[5,54,48,311,359,[[187,2,2,311,313],[189,4,3,313,316],[190,3,3,316,319],[192,8,7,319,326],[193,8,7,326,333],[194,6,5,333,338],[196,4,4,338,342],[197,1,1,342,343],[200,1,1,343,344],[201,1,1,344,345],[203,3,1,345,346],[204,4,4,346,350],[205,1,1,350,351],[206,2,2,351,353],[207,1,1,353,354],[208,2,2,354,356],[209,1,1,356,357],[210,2,2,357,359]]],[6,24,23,359,382,[[211,3,3,359,362],[212,1,1,362,363],[213,2,2,363,365],[214,3,3,365,368],[216,1,1,368,369],[218,1,1,369,370],[219,1,1,370,371],[221,2,2,371,373],[228,1,1,373,374],[230,8,7,374,381],[231,1,1,381,382]]],[8,62,57,382,439,[[236,4,4,382,386],[237,6,6,386,392],[238,1,1,392,393],[239,3,3,393,396],[240,2,2,396,398],[241,1,1,398,399],[242,2,2,399,401],[243,2,2,401,403],[244,6,5,403,408],[245,4,4,408,412],[246,2,1,412,413],[247,3,2,413,415],[249,1,1,415,416],[250,1,1,416,417],[251,5,5,417,422],[252,4,4,422,426],[253,2,2,426,428],[254,1,1,428,429],[255,2,1,429,430],[256,1,1,430,431],[257,1,1,431,432],[258,2,2,432,434],[260,1,1,434,435],[261,1,1,435,436],[263,3,2,436,438],[265,1,1,438,439]]],[9,34,33,439,472,[[268,2,2,439,441],[269,2,2,441,443],[271,3,3,443,446],[272,7,6,446,452],[273,4,4,452,456],[276,3,3,456,459],[277,1,1,459,460],[279,1,1,460,461],[280,1,1,461,462],[281,1,1,462,463],[284,1,1,463,464],[285,5,5,464,469],[286,1,1,469,470],[287,1,1,470,471],[290,1,1,471,472]]],[10,53,50,472,522,[[291,6,6,472,478],[292,3,3,478,481],[293,6,6,481,487],[296,1,1,487,488],[297,1,1,488,489],[298,14,12,489,501],[299,4,4,501,505],[300,1,1,505,506],[301,1,1,506,507],[302,3,3,507,510],[304,1,1,510,511],[305,1,1,511,512],[306,3,3,512,515],[307,1,1,515,516],[308,2,2,516,518],[309,3,2,518,520],[312,2,2,520,522]]],[11,28,28,522,550,[[315,1,1,522,523],[316,5,5,523,528],[317,3,3,528,531],[318,1,1,531,532],[320,1,1,532,533],[322,1,1,533,534],[323,1,1,534,535],[326,1,1,535,536],[328,1,1,536,537],[329,1,1,537,538],[330,2,2,538,540],[331,3,3,540,543],[332,1,1,543,544],[333,1,1,544,545],[334,2,2,545,547],[335,2,2,547,549],[337,1,1,549,550]]],[12,36,33,550,583,[[338,1,1,550,551],[343,1,1,551,552],[348,1,1,552,553],[350,2,2,553,555],[351,1,1,555,556],[352,1,1,556,557],[353,7,6,557,563],[354,5,5,563,568],[356,6,5,568,573],[358,1,1,573,574],[359,3,2,574,576],[360,2,2,576,578],[361,2,2,578,580],[366,3,3,580,583]]],[13,66,62,583,645,[[367,4,4,583,587],[368,2,2,587,589],[369,1,1,589,590],[370,1,1,590,591],[371,1,1,591,592],[372,8,7,592,599],[373,4,4,599,603],[374,1,1,603,604],[375,2,2,604,606],[376,2,2,606,608],[379,3,3,608,611],[380,6,4,611,615],[381,1,1,615,616],[384,2,2,616,618],[385,1,1,618,619],[386,6,6,619,625],[389,1,1,625,626],[390,1,1,626,627],[391,3,3,627,630],[392,1,1,630,631],[393,1,1,631,632],[394,2,2,632,634],[395,3,3,634,637],[396,1,1,637,638],[397,1,1,638,639],[398,1,1,639,640],[399,1,1,640,641],[400,5,4,641,645]]],[14,6,5,645,650,[[409,1,1,645,646],[410,2,2,646,648],[411,2,1,648,649],[412,1,1,649,650]]],[15,19,18,650,668,[[413,2,2,650,652],[414,1,1,652,653],[416,1,1,653,654],[417,1,1,654,655],[418,1,1,655,656],[420,4,3,656,659],[421,6,6,659,665],[424,1,1,665,666],[425,2,2,666,668]]],[16,22,21,668,689,[[426,5,5,668,673],[427,2,2,673,675],[428,1,1,675,676],[429,2,2,676,678],[431,5,4,678,682],[432,1,1,682,683],[433,4,4,683,687],[434,2,2,687,689]]],[17,15,15,689,704,[[438,1,1,689,690],[439,1,1,690,691],[443,2,2,691,693],[448,1,1,693,694],[450,2,2,694,696],[456,2,2,696,698],[458,1,1,698,699],[468,1,1,699,700],[470,1,1,700,701],[476,2,2,701,703],[477,1,1,703,704]]],[18,36,35,704,739,[[495,1,1,704,705],[499,2,2,705,707],[500,1,1,707,708],[512,1,1,708,709],[519,1,1,709,710],[527,1,1,710,711],[533,1,1,711,712],[534,1,1,712,713],[538,1,1,713,714],[539,1,1,714,715],[545,3,3,715,718],[546,1,1,718,719],[549,1,1,719,720],[556,1,1,720,721],[557,1,1,721,722],[560,1,1,722,723],[562,1,1,723,724],[563,1,1,724,725],[565,1,1,725,726],[572,1,1,726,727],[573,1,1,727,728],[574,1,1,728,729],[575,1,1,729,730],[579,1,1,730,731],[582,1,1,731,732],[583,1,1,732,733],[593,1,1,733,734],[596,2,2,734,736],[618,1,1,736,737],[619,2,1,737,738],[624,1,1,738,739]]],[19,15,13,739,752,[[635,2,2,739,741],[641,1,1,741,742],[642,1,1,742,743],[643,2,1,743,744],[644,1,1,744,745],[645,2,2,745,747],[649,2,1,747,748],[650,1,1,748,749],[652,2,2,749,751],[654,1,1,751,752]]],[20,8,8,752,760,[[659,1,1,752,753],[660,3,3,753,756],[662,1,1,756,757],[663,2,2,757,759],[667,1,1,759,760]]],[21,1,1,760,761,[[678,1,1,760,761]]],[22,27,25,761,786,[[679,1,1,761,762],[686,1,1,762,763],[687,1,1,763,764],[695,2,1,764,765],[701,1,1,765,766],[714,1,1,766,767],[715,2,2,767,769],[716,1,1,769,770],[718,1,1,770,771],[719,1,1,771,772],[720,1,1,772,773],[721,1,1,773,774],[723,3,2,774,776],[726,1,1,776,777],[730,1,1,777,778],[731,2,2,778,780],[733,1,1,780,781],[736,1,1,781,782],[740,1,1,782,783],[743,1,1,783,784],[744,2,2,784,786]]],[23,41,38,786,824,[[745,1,1,786,787],[746,1,1,787,788],[751,1,1,788,789],[753,1,1,789,790],[759,3,3,790,793],[762,3,3,793,796],[763,1,1,796,797],[765,1,1,797,798],[768,1,1,798,799],[770,1,1,799,800],[772,2,1,800,801],[774,1,1,801,802],[775,1,1,802,803],[777,1,1,803,804],[778,3,3,804,807],[779,2,2,807,809],[780,3,3,809,812],[781,1,1,812,813],[782,1,1,813,814],[783,1,1,814,815],[784,1,1,815,816],[786,2,2,816,818],[788,2,1,818,819],[793,3,2,819,821],[794,2,2,821,823],[796,1,1,823,824]]],[24,3,3,824,827,[[797,3,3,824,827]]],[25,36,36,827,863,[[803,1,1,827,828],[804,1,1,828,829],[805,1,1,829,830],[807,2,2,830,832],[809,2,2,832,834],[810,1,1,834,835],[815,1,1,835,836],[817,3,3,836,839],[821,1,1,839,840],[823,1,1,840,841],[824,2,2,841,843],[829,2,2,843,845],[831,1,1,845,846],[834,1,1,846,847],[837,1,1,847,848],[841,4,4,848,852],[842,1,1,852,853],[843,3,3,853,856],[844,1,1,856,857],[845,4,4,857,861],[847,2,2,861,863]]],[26,15,15,863,878,[[850,4,4,863,867],[851,1,1,867,868],[857,4,4,868,872],[858,4,4,872,876],[859,1,1,876,877],[860,1,1,877,878]]],[28,5,4,878,882,[[877,5,4,878,882]]],[29,2,2,882,884,[[879,1,1,882,883],[887,1,1,883,884]]],[31,1,1,884,885,[[889,1,1,884,885]]],[32,3,2,885,887,[[894,2,1,885,886],[898,1,1,886,887]]],[33,1,1,887,888,[[900,1,1,887,888]]],[36,1,1,888,889,[[910,1,1,888,889]]],[37,12,12,889,901,[[913,5,5,889,894],[914,1,1,894,895],[917,1,1,895,896],[918,3,3,896,899],[922,1,1,899,900],[924,1,1,900,901]]],[38,3,3,901,904,[[927,2,2,901,903],[928,1,1,903,904]]]],[148,150,160,243,327,328,398,415,432,446,484,510,583,588,598,624,631,642,734,737,821,860,931,944,945,948,963,974,978,990,1071,1181,1238,1241,1299,1304,1305,1323,1324,1338,1363,1365,1414,1426,1427,1466,1471,1522,1622,1667,1685,1694,1695,1730,1752,1753,1755,1791,1816,1888,1889,1891,1898,1908,1956,1980,1981,1988,1989,2011,2078,2159,2164,2167,2171,2172,2225,2293,2305,2322,2323,2328,2331,2346,2347,2359,2360,2361,2362,2378,2388,2390,2398,2418,2439,2443,2461,2472,2475,2492,2516,2519,2520,2530,2712,2713,2730,2732,2733,2748,2750,2756,2779,2785,2786,2790,2791,2799,2801,2802,2809,2810,2812,2813,2819,2856,2863,2874,2909,2943,2944,2946,2955,2957,2958,2974,2978,2979,2981,2992,2994,2996,3051,3122,3123,3127,3129,3134,3135,3138,3140,3142,3182,3183,3198,3202,3208,3211,3214,3215,3216,3219,3231,3239,3274,3278,3279,3281,3295,3303,3413,3422,3430,3442,3449,3450,3452,3454,3531,3532,3541,3561,3578,3581,3696,3698,3699,3730,3808,3810,3817,3822,3839,3843,3853,3860,3948,3949,3950,3952,3960,3961,3971,3997,3998,4021,4044,4097,4113,4122,4145,4150,4151,4168,4178,4181,4196,4201,4203,4210,4211,4232,4234,4248,4251,4254,4259,4276,4292,4293,4314,4550,4556,4559,4571,4573,4575,4576,4714,4718,4722,4735,4738,4739,4740,4745,4747,4750,4767,4807,4857,4880,4900,4913,4914,4922,4925,4930,4934,4937,4969,4971,4993,5003,5012,5014,5036,5048,5111,5113,5135,5159,5160,5175,5182,5194,5197,5233,5234,5240,5247,5252,5258,5313,5316,5339,5353,5358,5391,5423,5476,5487,5514,5529,5538,5570,5571,5576,5579,5592,5618,5636,5689,5694,5709,5723,5727,5731,5736,5739,5811,5856,5865,5899,5904,5907,5915,5922,5923,5953,5955,5956,5957,5958,5962,5975,5980,5981,5982,5984,5988,5989,5999,6007,6008,6012,6016,6017,6072,6074,6076,6078,6113,6202,6217,6279,6294,6299,6301,6303,6372,6378,6381,6425,6453,6455,6469,6477,6488,6519,6520,6532,6559,6570,6595,6613,6614,6622,6672,6747,6793,6838,6840,7014,7077,7080,7082,7086,7089,7093,7096,7104,7224,7227,7231,7234,7251,7257,7258,7268,7270,7275,7277,7299,7300,7314,7322,7323,7351,7358,7362,7380,7389,7403,7406,7410,7415,7418,7423,7426,7437,7443,7460,7462,7467,7521,7593,7603,7605,7611,7616,7617,7625,7649,7659,7675,7689,7692,7730,7731,7779,7791,7828,7834,7880,7924,7964,7967,7998,8063,8066,8112,8115,8135,8152,8156,8161,8162,8171,8173,8174,8178,8196,8198,8206,8209,8255,8256,8259,8272,8326,8389,8390,8485,8519,8524,8528,8529,8539,8562,8589,8705,8719,8722,8740,8742,8745,8749,8774,8796,8815,8822,8828,8831,8832,8838,8840,8917,8983,8990,9007,9008,9010,9013,9016,9018,9035,9044,9047,9049,9050,9054,9055,9057,9076,9087,9144,9157,9159,9181,9227,9252,9308,9313,9316,9318,9356,9387,9398,9406,9490,9501,9590,9615,9634,9641,9646,9647,9662,9663,9670,9696,9736,9797,9847,9908,9977,9985,10029,10046,10075,10076,10087,10101,10130,10155,10164,10168,10190,10251,10295,10486,10676,10768,10770,10789,10815,10821,10824,10826,10849,10857,10859,10876,10879,10887,10888,10890,10914,10917,10921,10923,10926,10964,10969,10982,10996,11014,11017,11021,11179,11186,11189,11199,11200,11204,11206,11215,11217,11244,11266,11274,11294,11296,11298,11301,11304,11306,11318,11328,11331,11341,11343,11358,11371,11375,11401,11403,11466,11467,11468,11480,11482,11487,11488,11498,11551,11562,11587,11592,11596,11600,11603,11605,11608,11673,11691,11712,11718,11726,11751,11761,11773,11778,11802,11810,11814,11836,11874,11887,11927,11951,11957,11960,11964,12201,12222,12230,12252,12253,12300,12302,12308,12361,12397,12420,12494,12495,12496,12519,12522,12535,12539,12543,12546,12660,12675,12690,12705,12713,12718,12719,12721,12735,12747,12754,12764,12768,12794,12802,12804,12806,12816,12818,12820,12821,12822,12845,12859,12928,12949,13041,13045,13169,13207,13210,13373,13388,13423,13655,13734,13898,13910,13933,14124,14231,14233,14240,14415,14557,14671,14768,14774,14826,14835,14903,14904,14907,14957,15009,15196,15207,15254,15284,15293,15310,15460,15471,15481,15496,15549,15623,15674,15857,16067,16068,16278,16288,16368,16627,16632,16791,16840,16858,16887,16913,16917,17044,17045,17118,17139,17173,17331,17340,17342,17359,17397,17399,17403,17476,17652,17666,17811,17832,17996,18095,18337,18366,18379,18393,18430,18453,18496,18515,18562,18563,18621,18708,18713,18718,18752,18794,18865,18903,18944,18945,18963,18987,19129,19188,19316,19324,19334,19401,19404,19407,19414,19448,19525,19576,19626,19687,19727,19799,19806,19816,19819,19828,19842,19849,19851,19864,19894,19921,19939,19945,19977,19984,20020,20146,20164,20174,20210,20309,20315,20316,20332,20502,20522,20530,20567,20568,20605,20615,20628,20732,20780,20781,20812,20896,21006,21031,21048,21166,21174,21228,21311,21376,21489,21499,21503,21524,21548,21556,21563,21564,21596,21602,21610,21611,21614,21658,21664,21742,21750,21755,21756,21760,21964,21965,21967,21968,21998,22001,22006,22008,22027,22052,22314,22321,22322,22342,22365,22499,22533,22608,22652,22690,22869,22913,22915,22916,22920,22921,22929,22964,22986,22997,22998,23053,23088,23121,23136,23143]]],["beforetime",[3,3,[[4,1,1,0,1,[[154,1,1,0,1]]],[5,1,1,1,2,[[197,1,1,1,2]]],[8,1,1,2,3,[[244,1,1,2,3]]]],[4950,6117,7400]]],["countenance",[30,30,[[0,4,4,0,4,[[3,2,2,0,2],[30,2,2,2,4]]],[3,1,1,4,5,[[122,1,1,4,5]]],[4,1,1,5,6,[[180,1,1,5,6]]],[8,1,1,6,7,[[236,1,1,6,7]]],[11,1,1,7,8,[[320,1,1,7,8]]],[15,2,2,8,10,[[414,2,2,8,10]]],[17,2,2,10,12,[[449,1,1,10,11],[464,1,1,11,12]]],[18,10,10,12,22,[[481,1,1,12,13],[488,1,1,13,14],[498,1,1,14,15],[519,2,2,15,17],[520,1,1,17,18],[521,1,1,18,19],[557,1,1,19,20],[566,1,1,20,21],[567,1,1,21,22]]],[19,4,4,22,26,[[642,1,1,22,23],[643,1,1,23,24],[652,1,1,24,25],[654,1,1,25,26]]],[20,1,1,26,27,[[665,1,1,26,27]]],[22,1,1,27,28,[[681,1,1,27,28]]],[25,1,1,28,29,[[828,1,1,28,29]]],[26,1,1,29,30,[[857,1,1,29,30]]]],[84,85,875,878,3849,5661,7230,9738,12309,12310,13201,13556,13971,14066,14197,14560,14566,14571,14574,15214,15341,15386,16820,16855,17136,17186,17432,17716,21156,21984]]],["edge",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17503]]],["endure",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15005]]],["face",[306,278,[[0,39,36,0,36,[[0,3,2,0,2],[1,1,1,2,3],[3,1,1,3,4],[5,2,2,4,6],[6,4,4,6,10],[7,3,3,10,13],[10,3,3,13,16],[16,2,2,16,18],[18,1,1,18,19],[29,1,1,19,20],[30,1,1,20,21],[31,3,2,21,23],[32,2,1,23,24],[37,1,1,24,25],[40,1,1,25,26],[42,3,3,26,29],[43,2,2,29,31],[45,2,2,31,33],[47,1,1,33,34],[49,2,2,34,36]]],[1,17,13,36,49,[[52,1,1,36,37],[59,3,2,37,39],[65,1,1,39,40],[81,1,1,40,41],[82,5,4,41,45],[83,6,4,45,49]]],[2,7,7,49,56,[[102,1,1,49,50],[106,1,1,50,51],[108,1,1,51,52],[109,3,3,52,55],[115,1,1,55,56]]],[3,6,6,56,62,[[122,1,1,56,57],[127,1,1,57,58],[128,2,2,58,60],[132,1,1,60,61],[140,1,1,61,62]]],[4,14,12,62,74,[[158,1,1,62,63],[159,3,2,63,65],[161,1,1,65,66],[177,2,2,66,68],[180,1,1,68,69],[183,3,3,69,72],[184,1,1,72,73],[186,2,1,73,74]]],[5,3,3,74,77,[[191,1,1,74,75],[193,2,2,75,77]]],[6,2,1,77,78,[[216,2,1,77,78]]],[7,1,1,78,79,[[233,1,1,78,79]]],[8,5,5,79,84,[[240,2,2,79,81],[252,1,1,81,82],[260,1,1,82,83],[261,1,1,83,84]]],[9,11,9,84,93,[[268,1,1,84,85],[269,2,1,85,86],[275,1,1,86,87],[280,5,4,87,91],[284,1,1,91,92],[285,1,1,92,93]]],[10,7,7,93,100,[[298,1,1,93,94],[303,2,2,94,96],[308,2,2,96,98],[309,1,1,98,99],[311,1,1,99,100]]],[11,11,11,100,111,[[316,2,2,100,102],[320,1,1,102,103],[321,2,2,103,105],[324,1,1,105,106],[325,1,1,106,107],[326,2,2,107,109],[330,1,1,109,110],[332,1,1,110,111]]],[12,1,1,111,112,[[353,1,1,111,112]]],[13,8,8,112,120,[[372,2,2,112,114],[373,1,1,114,115],[391,2,2,115,117],[396,1,1,117,118],[398,1,1,118,119],[401,1,1,119,120]]],[14,2,2,120,122,[[411,2,2,120,122]]],[16,2,2,122,124,[[426,1,1,122,123],[432,1,1,123,124]]],[17,18,18,124,142,[[436,1,1,124,125],[437,1,1,125,126],[439,1,1,126,127],[446,1,1,127,128],[448,1,1,128,129],[450,1,1,129,130],[451,2,2,130,132],[456,1,1,132,133],[457,1,1,133,134],[459,1,1,134,135],[461,1,1,135,136],[468,1,1,136,137],[469,1,1,137,138],[472,1,1,138,139],[473,1,1,139,140],[476,2,2,140,142]]],[18,34,33,142,175,[[482,1,1,142,143],[487,1,1,143,144],[490,1,1,144,145],[494,1,1,145,146],[498,1,1,146,147],[499,1,1,147,148],[501,1,1,148,149],[504,3,2,149,151],[507,1,1,151,152],[508,1,1,152,153],[511,1,1,153,154],[518,1,1,154,155],[521,2,2,155,157],[528,1,1,157,158],[544,1,1,158,159],[546,2,2,159,161],[557,3,3,161,164],[561,1,1,164,165],[565,1,1,165,166],[566,1,1,166,167],[579,1,1,167,168],[581,3,3,168,171],[582,1,1,171,172],[596,1,1,172,173],[609,1,1,173,174],[620,1,1,174,175]]],[19,7,6,175,181,[[634,2,2,175,177],[635,1,1,177,178],[648,1,1,178,179],[651,1,1,179,180],[654,2,1,180,181]]],[20,2,1,181,182,[[666,2,1,181,182]]],[22,16,16,182,198,[[684,1,1,182,183],[686,1,1,183,184],[692,1,1,184,185],[701,1,1,185,186],[703,1,1,186,187],[705,1,1,187,188],[706,1,1,188,189],[707,1,1,189,190],[714,1,1,190,191],[716,1,1,191,192],[728,2,2,192,194],[732,1,1,194,195],[737,1,1,195,196],[742,1,1,196,197],[743,1,1,197,198]]],[23,13,13,198,211,[[745,1,1,198,199],[746,1,1,199,200],[752,1,1,200,201],[757,1,1,201,202],[760,1,1,202,203],[762,1,1,203,204],[765,1,1,204,205],[769,1,1,205,206],[772,1,1,206,207],[776,2,2,207,209],[777,1,1,209,210],[788,1,1,210,211]]],[24,2,2,211,213,[[798,1,1,211,212],[799,1,1,212,213]]],[25,53,41,213,254,[[802,5,2,213,215],[804,2,2,215,217],[805,2,2,217,219],[807,1,1,219,220],[808,1,1,220,221],[810,1,1,221,222],[811,6,1,222,223],[812,1,1,223,224],[813,2,2,224,226],[814,1,1,226,227],[815,4,4,227,231],[816,2,1,231,232],[821,3,2,232,234],[822,2,2,234,236],[826,1,1,236,237],[829,1,1,237,238],[830,1,1,238,239],[835,1,1,239,240],[836,1,1,240,241],[839,2,2,241,243],[840,4,4,243,247],[841,2,1,247,248],[842,5,4,248,252],[844,1,1,252,253],[845,1,1,253,254]]],[26,13,12,254,266,[[857,3,3,254,257],[858,3,3,257,260],[859,4,3,260,263],[860,3,3,263,266]]],[27,4,4,266,270,[[866,2,2,266,268],[868,2,2,268,270]]],[28,1,1,270,271,[[877,1,1,270,271]]],[29,3,3,271,274,[[883,1,1,271,272],[887,2,2,272,274]]],[32,1,1,274,275,[[895,1,1,274,275]]],[33,2,2,275,277,[[901,1,1,275,276],[902,1,1,276,277]]],[37,1,1,277,278,[[915,1,1,277,278]]]],[1,28,36,93,138,144,162,163,177,182,191,192,196,270,274,275,400,414,470,863,894,948,958,970,1134,1251,1293,1295,1321,1347,1350,1414,1416,1462,1507,1524,1585,1805,1806,1961,2450,2484,2489,2493,2496,2525,2526,2529,2531,3093,3245,3313,3321,3323,3324,3541,3848,4055,4062,4073,4198,4447,5101,5117,5121,5160,5549,5556,5618,5733,5745,5746,5778,5849,5948,5982,5986,6676,7159,7322,7323,7667,7884,7925,8071,8094,8233,8378,8380,8384,8388,8486,8515,8999,9190,9218,9348,9383,9400,9455,9632,9634,9742,9788,9793,9867,9885,9904,9907,10048,10100,10831,11285,11324,11338,11721,11725,11836,11896,11988,12243,12244,12716,12815,12880,12896,12945,13123,13177,13230,13246,13254,13386,13415,13451,13476,13676,13712,13781,13823,13901,13902,13981,14052,14075,14118,14203,14228,14247,14293,14294,14326,14347,14404,14554,14586,14595,14700,14894,14942,14952,15201,15205,15217,15268,15322,15340,15523,15586,15600,15601,15610,16033,16161,16300,16588,16590,16629,17013,17110,17188,17459,17771,17824,17949,18094,18125,18157,18189,18215,18339,18392,18668,18669,18731,18802,18892,18900,18959,18992,19155,19292,19340,19401,19450,19560,19634,19762,19764,19780,20021,20351,20389,20474,20492,20510,20525,20532,20536,20565,20599,20630,20647,20668,20686,20692,20725,20734,20735,20738,20739,20761,20930,20941,20946,20960,21085,21178,21185,21319,21346,21427,21445,21462,21471,21472,21477,21492,21540,21545,21547,21551,21575,21603,21966,21978,21979,21991,21996,22005,22021,22024,22030,22053,22054,22055,22157,22167,22180,22188,22331,22431,22501,22503,22612,22700,22717,22939]]],["faces",[59,55,[[0,2,2,0,2,[[8,1,1,0,1],[29,1,1,1,2]]],[1,5,3,2,5,[[69,1,1,2,3],[74,2,1,3,4],[86,2,1,4,5]]],[2,1,1,5,6,[[98,1,1,5,6]]],[3,4,4,6,10,[[130,1,1,6,7],[132,2,2,7,9],[136,1,1,9,10]]],[6,2,2,10,12,[[223,1,1,10,11],[228,1,1,11,12]]],[9,1,1,12,13,[[285,1,1,12,13]]],[10,2,2,13,15,[[292,1,1,13,14],[308,1,1,14,15]]],[12,3,2,15,17,[[349,2,1,15,16],[358,1,1,16,17]]],[13,2,2,17,19,[[369,1,1,17,18],[395,1,1,18,19]]],[17,2,2,19,21,[[444,1,1,19,20],[475,1,1,20,21]]],[18,2,2,21,23,[[511,1,1,21,22],[560,1,1,22,23]]],[22,4,4,23,27,[[681,1,1,23,24],[691,1,1,24,25],[703,1,1,25,26],[731,1,1,26,27]]],[23,8,8,27,35,[[749,1,1,27,28],[751,1,1,28,29],[774,1,1,29,30],[786,2,2,30,32],[788,1,1,32,33],[794,1,1,33,34],[795,1,1,34,35]]],[24,1,1,35,36,[[801,1,1,35,36]]],[25,14,13,36,49,[[802,5,5,36,41],[804,1,1,41,42],[808,1,1,42,43],[809,1,1,43,44],[811,3,2,44,46],[815,1,1,46,47],[821,1,1,47,48],[842,1,1,48,49]]],[26,2,2,49,51,[[850,1,1,49,50],[858,1,1,50,51]]],[28,1,1,51,52,[[877,1,1,51,52]]],[33,1,1,52,53,[[901,1,1,52,53]]],[34,1,1,53,54,[[903,1,1,53,54]]],[38,1,1,54,55,[[926,1,1,54,55]]]],[228,870,2071,2215,2613,2977,4113,4216,4239,4317,6904,7016,8516,8785,9380,10728,10950,11242,11797,13075,13877,14393,15257,17722,17914,18126,18714,19061,19138,19673,19990,19992,20022,20171,20263,20454,20470,20472,20474,20475,20479,20510,20595,20620,20647,20655,20737,20942,21544,21747,21995,22317,22709,22740,23106]]],["favour",[4,4,[[18,2,2,0,2,[[522,1,1,0,1],[596,1,1,1,2]]],[19,2,2,2,4,[[646,1,1,2,3],[656,1,1,3,4]]]],[14609,15956,16931,17250]]],["first",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8094]]],["for",[3,3,[[0,1,1,0,1,[[33,1,1,0,1]]],[6,1,1,1,2,[[223,1,1,1,2]]],[8,1,1,2,3,[[236,1,1,2,3]]]],[1001,6899,7228]]],["forefront",[3,3,[[11,1,1,0,1,[[328,1,1,0,1]]],[25,2,2,1,3,[[841,1,1,1,2],[848,1,1,2,3]]]],[9977,21496,21680]]],["forepart",[4,4,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[10,1,1,2,3,[[296,1,1,2,3]]],[25,1,1,3,4,[[843,1,1,3,4]]]],[2320,2684,8916,21559]]],["form",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8376]]],["forth",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20132]]],["forward",[3,3,[[23,1,1,0,1,[[751,1,1,0,1]]],[25,2,2,1,3,[[802,2,2,1,3]]]],[19143,20473,20476]]],["from",[2,2,[[3,1,1,0,1,[[138,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]]],[4408,8403]]],["front",[2,2,[[9,1,1,0,1,[[276,1,1,0,1]]],[13,1,1,1,2,[[369,1,1,1,2]]]],[8249,11233]]],["heaviness",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13078]]],["him",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13930]]],["himself",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11590]]],["long",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15017]]],["look",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1179]]],["looked",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21497]]],["looketh",[2,2,[[25,2,2,0,2,[[841,2,2,0,2]]]],[21483,21499]]],["me",[1,1,[[0,1,1,0,1,[[43,1,1,0,1]]]],[1353]]],["meet",[2,2,[[12,1,1,0,1,[[349,1,1,0,1]]],[13,1,1,1,2,[[381,1,1,1,2]]]],[10737,11492]]],["mouth",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8468]]],["of",[3,3,[[16,1,1,0,1,[[427,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]],[23,1,1,2,3,[[761,1,1,2,3]]]],[12733,15697,19373]]],["old",[2,2,[[12,1,1,0,1,[[341,1,1,0,1]]],[18,1,1,1,2,[[579,1,1,1,2]]]],[10425,15546]]],["open",[13,13,[[0,1,1,0,1,[[0,1,1,0,1]]],[2,3,3,1,4,[[103,2,2,1,3],[106,1,1,3,4]]],[3,1,1,4,5,[[135,1,1,4,5]]],[9,1,1,5,6,[[277,1,1,5,6]]],[23,1,1,6,7,[[753,1,1,6,7]]],[25,6,6,7,13,[[817,1,1,7,8],[830,1,1,8,9],[833,1,1,9,10],[834,1,1,10,11],[838,1,1,11,12],[840,1,1,12,13]]]],[19,3118,3164,3240,4305,8270,19197,20767,21188,21252,21307,21399,21453]]],["past",[2,2,[[4,1,1,0,1,[[154,1,1,0,1]]],[12,1,1,1,2,[[346,1,1,1,2]]]],[4948,10635]]],["person",[10,9,[[2,2,1,0,1,[[108,2,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[8,1,1,2,3,[[260,1,1,2,3]]],[9,1,1,3,4,[[283,1,1,3,4]]],[17,2,2,4,6,[[448,1,1,4,5],[467,1,1,5,6]]],[19,1,1,6,7,[[645,1,1,6,7]]],[23,1,1,7,8,[[796,1,1,7,8]]],[38,1,1,8,9,[[925,1,1,8,9]]]],[3296,5661,7896,8460,13161,13649,16906,20301,23097]]],["persons",[11,11,[[4,3,3,0,3,[[153,1,1,0,1],[162,1,1,1,2],[168,1,1,2,3]]],[13,1,1,3,4,[[385,1,1,3,4]]],[17,2,2,4,6,[[448,1,1,4,5],[469,1,1,5,6]]],[18,1,1,6,7,[[559,1,1,6,7]]],[19,2,2,7,9,[[651,1,1,7,8],[655,1,1,8,9]]],[24,1,1,9,10,[[800,1,1,9,10]]],[38,1,1,10,11,[[925,1,1,10,11]]]],[4909,5203,5361,11583,13163,13702,15235,17102,17217,20436,23098]]],["presence",[37,35,[[0,2,2,0,2,[[24,1,1,0,1],[26,1,1,1,2]]],[1,3,3,2,5,[[59,1,1,2,3],[82,2,2,3,5]]],[5,2,2,5,7,[[190,1,1,5,6],[194,1,1,6,7]]],[8,1,1,7,8,[[254,1,1,7,8]]],[9,4,2,8,10,[[282,3,1,8,9],[290,1,1,9,10]]],[10,1,1,10,11,[[291,1,1,10,11]]],[11,4,4,11,15,[[315,1,1,11,12],[325,1,1,12,13],[336,1,1,13,14],[337,1,1,14,15]]],[12,2,2,15,17,[[353,1,1,15,16],[361,1,1,16,17]]],[13,3,3,17,20,[[375,1,1,17,18],[386,1,1,18,19],[400,1,1,19,20]]],[15,1,1,20,21,[[414,1,1,20,21]]],[16,1,1,21,22,[[426,1,1,21,22]]],[17,2,2,22,24,[[436,1,1,22,23],[437,1,1,23,24]]],[18,5,5,24,29,[[493,1,1,24,25],[508,1,1,25,26],[572,1,1,26,27],[577,1,1,27,28],[617,1,1,28,29]]],[19,3,3,29,32,[[644,1,1,29,30],[652,2,2,30,32]]],[22,1,1,32,33,[[741,1,1,32,33]]],[23,2,2,33,35,[[767,1,1,33,34],[796,1,1,34,35]]]],[676,757,1788,2487,2488,5921,6034,7713,8445,8696,8745,9590,9894,10222,10241,10847,11046,11387,11596,11937,12308,12712,12881,12898,14103,14351,15456,15510,16276,16891,17119,17120,18875,19523,20279]]],["prospect",[6,5,[[25,6,5,0,5,[[841,4,3,0,3],[843,1,1,3,4],[844,1,1,4,5]]]],[21521,21522,21523,21567,21576]]],["purposed",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11877]]],["seemeth",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16865]]],["shewbread",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3750]]],["sight",[28,28,[[0,1,1,0,1,[[46,1,1,0,1]]],[3,1,1,1,2,[[119,1,1,1,2]]],[4,1,1,2,3,[[156,1,1,2,3]]],[10,1,1,3,4,[[299,1,1,3,4]]],[11,4,4,4,8,[[329,2,2,4,6],[335,1,1,6,7],[336,1,1,7,8]]],[12,1,1,8,9,[[359,1,1,8,9]]],[13,1,1,9,10,[[373,1,1,9,10]]],[14,1,1,10,11,[[411,1,1,10,11]]],[15,2,2,11,13,[[413,1,1,11,12],[414,1,1,12,13]]],[16,2,2,13,15,[[427,1,1,13,14],[433,1,1,14,15]]],[17,1,1,15,16,[[456,1,1,15,16]]],[18,4,4,16,20,[[486,1,1,16,17],[496,1,1,17,18],[553,1,1,18,19],[620,1,1,19,20]]],[19,1,1,20,21,[[631,1,1,20,21]]],[20,1,1,21,22,[[660,1,1,21,22]]],[22,1,1,22,23,[[683,1,1,22,23]]],[23,2,2,23,25,[[751,1,1,23,24],[759,1,1,24,25]]],[25,2,2,25,27,[[821,1,1,25,26],[837,1,1,26,27]]],[27,1,1,27,28,[[867,1,1,27,28]]]],[1438,3696,5041,9058,10001,10006,10192,10205,10972,11344,12246,12307,12312,12741,12822,13363,14040,14182,15088,16295,16493,17359,17760,19134,19316,20938,21390,22169]]],["state",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17192]]],["than",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13702]]],["themselves",[1,1,[[25,1,1,0,1,[[807,1,1,0,1]]]],[20572]]],["till",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8116]]],["time",[2,2,[[4,1,1,0,1,[[154,1,1,0,1]]],[7,1,1,1,2,[[235,1,1,1,2]]]],[4958,7197]]],["to",[3,3,[[0,1,1,0,1,[[26,1,1,0,1]]],[10,2,2,1,3,[[298,1,1,1,2],[300,1,1,2,3]]]],[747,9031,9103]]],["toward",[2,2,[[16,1,1,0,1,[[426,1,1,0,1]]],[21,1,1,1,2,[[677,1,1,1,2]]]],[12715,17631]]],["unto",[6,6,[[0,1,1,0,1,[[46,1,1,0,1]]],[4,2,2,1,3,[[154,1,1,1,2],[159,1,1,2,3]]],[8,1,1,3,4,[[248,1,1,3,4]]],[17,1,1,4,5,[[446,1,1,4,5]]],[19,1,1,5,6,[[641,1,1,5,6]]]],[1422,4974,5134,7497,13127,16784]]],["upon",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12767]]],["with",[6,6,[[8,1,1,0,1,[[264,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[11,3,3,2,5,[[317,2,2,2,4],[318,1,1,4,5]]],[26,1,1,5,6,[[850,1,1,5,6]]]],[7975,8492,9648,9650,9675,21746]]],["within",[1,1,[[25,1,1,0,1,[[803,1,1,0,1]]]],[20502]]]]},{"k":"H6441","v":[["*",[13,12,[[2,1,1,0,1,[[99,1,1,0,1]]],[10,4,4,1,5,[[296,4,4,1,5]]],[11,1,1,5,6,[[319,1,1,5,6]]],[13,3,3,6,9,[[369,1,1,6,7],[395,2,2,7,9]]],[18,1,1,9,10,[[522,1,1,9,10]]],[25,3,2,10,12,[[841,2,1,10,11],[842,1,1,11,12]]]],[2995,8914,8915,8917,8926,9718,11233,11807,11809,14610,21493,21529]]],["+",[4,4,[[2,1,1,0,1,[[99,1,1,0,1]]],[10,2,2,1,3,[[296,2,2,1,3]]],[13,1,1,3,4,[[369,1,1,3,4]]]],[2995,8915,8917,11233]]],["in",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11809]]],["inward",[2,2,[[25,2,2,0,2,[[841,1,1,0,1],[842,1,1,1,2]]]],[21493,21529]]],["part",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11807]]],["within",[5,5,[[10,2,2,0,2,[[296,2,2,0,2]]],[11,1,1,2,3,[[319,1,1,2,3]]],[18,1,1,3,4,[[522,1,1,3,4]]],[25,1,1,4,5,[[841,1,1,4,5]]]],[8914,8926,9718,14610,21493]]]]},{"k":"H6442","v":[["*",[32,29,[[10,4,4,0,4,[[296,2,2,0,2],[297,2,2,2,4]]],[12,1,1,4,5,[[365,1,1,4,5]]],[13,1,1,5,6,[[370,1,1,5,6]]],[16,2,2,6,8,[[429,1,1,6,7],[430,1,1,7,8]]],[25,24,21,8,29,[[809,2,2,8,10],[811,1,1,10,11],[841,8,7,11,18],[842,3,2,18,20],[843,3,3,20,23],[844,1,1,23,24],[845,4,3,24,27],[846,1,1,27,28],[847,1,1,28,29]]]],[8923,8932,8946,8984,11154,11268,12773,12780,20607,20620,20636,21492,21496,21500,21504,21505,21509,21521,21541,21543,21555,21556,21567,21577,21616,21620,21626,21649,21656]]],["+",[2,2,[[10,1,1,0,1,[[296,1,1,0,1]]],[25,1,1,1,2,[[811,1,1,1,2]]]],[8932,20636]]],["inner",[28,26,[[10,3,3,0,3,[[296,1,1,0,1],[297,2,2,1,3]]],[12,1,1,3,4,[[365,1,1,3,4]]],[13,1,1,4,5,[[370,1,1,4,5]]],[16,2,2,5,7,[[429,1,1,5,6],[430,1,1,6,7]]],[25,21,19,7,26,[[809,2,2,7,9],[841,8,7,9,16],[842,2,2,16,18],[843,2,2,18,20],[844,1,1,20,21],[845,4,3,21,24],[846,1,1,24,25],[847,1,1,25,26]]]],[8923,8946,8984,11154,11268,12773,12780,20607,20620,21492,21496,21500,21504,21505,21509,21521,21541,21543,21555,21567,21577,21616,21620,21626,21649,21656]]],["inward",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21556]]],["within",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21543]]]]},{"k":"H6443","v":[["*",[6,6,[[17,1,1,0,1,[[463,1,1,0,1]]],[19,4,4,1,5,[[630,1,1,1,2],[635,1,1,2,3],[647,1,1,3,4],[658,1,1,4,5]]],[24,1,1,5,6,[[800,1,1,5,6]]]],[13522,16470,16613,16969,17294,20427]]],["+",[5,5,[[17,1,1,0,1,[[463,1,1,0,1]]],[19,3,3,1,4,[[630,1,1,1,2],[635,1,1,2,3],[658,1,1,3,4]]],[24,1,1,4,5,[[800,1,1,4,5]]]],[13522,16470,16613,17294,20427]]],["rubies",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16969]]]]},{"k":"H6444","v":[["Peninnah",[3,2,[[8,3,2,0,2,[[236,3,2,0,2]]]],[7214,7216]]]]},{"k":"H6445","v":[["up",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17245]]]]},{"k":"H6446","v":[["colours",[5,5,[[0,3,3,0,3,[[36,3,3,0,3]]],[9,2,2,3,5,[[279,2,2,3,5]]]],[1086,1106,1115,8335,8336]]]]},{"k":"H6447","v":[["part",[2,2,[[26,2,2,0,2,[[854,2,2,0,2]]]],[21879,21898]]]]},{"k":"H6448","v":[["consider",[1,1,[[18,1,1,0,1,[[525,1,1,0,1]]]],[14647]]]]},{"k":"H6449","v":[["*",[6,6,[[3,2,2,0,2,[[137,1,1,0,1],[139,1,1,1,2]]],[4,4,4,2,6,[[155,2,2,2,4],[156,1,1,4,5],[186,1,1,5,6]]]],[4360,4430,4992,5002,5053,5840]]],["+",[1,1,[[4,1,1,0,1,[[155,1,1,0,1]]]],[4992]]],["Pisgah",[5,5,[[3,2,2,0,2,[[137,1,1,0,1],[139,1,1,1,2]]],[4,3,3,2,5,[[155,1,1,2,3],[156,1,1,3,4],[186,1,1,4,5]]]],[4360,4430,5002,5053,5840]]]]},{"k":"H6450","v":[["Pasdammim",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10686]]]]},{"k":"H6451","v":[["handful",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15016]]]]},{"k":"H6452","v":[["*",[7,7,[[1,3,3,0,3,[[61,3,3,0,3]]],[9,1,1,3,4,[[270,1,1,3,4]]],[10,2,2,4,6,[[308,2,2,4,6]]],[22,1,1,6,7,[[709,1,1,6,7]]]],[1829,1839,1843,8124,9362,9367,18255]]],["halt",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9362]]],["lame",[1,1,[[9,1,1,0,1,[[270,1,1,0,1]]]],[8124]]],["leaped",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9367]]],["over",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18255]]],["pass",[2,2,[[1,2,2,0,2,[[61,2,2,0,2]]]],[1829,1839]]],["passed",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1843]]]]},{"k":"H6453","v":[["*",[49,46,[[1,6,6,0,6,[[61,5,5,0,5],[83,1,1,5,6]]],[2,1,1,6,7,[[112,1,1,6,7]]],[3,11,10,7,17,[[125,9,8,7,15],[144,1,1,15,16],[149,1,1,16,17]]],[4,4,4,17,21,[[168,4,4,17,21]]],[5,2,2,21,23,[[191,2,2,21,23]]],[11,3,3,23,26,[[335,3,3,23,26]]],[13,19,17,26,43,[[396,6,6,26,32],[401,13,11,32,43]]],[14,2,2,43,45,[[408,2,2,43,45]]],[25,1,1,45,46,[[846,1,1,45,46]]]],[1827,1837,1843,1859,1864,2521,3407,3967,3969,3970,3971,3975,3977,3978,3979,4593,4763,5343,5344,5347,5348,5944,5945,10186,10187,10188,11828,11829,11832,11842,11844,11845,11967,11972,11973,11974,11975,11977,11979,11982,11983,11984,11985,12170,12171,21651]]],["offerings",[3,3,[[13,3,3,0,3,[[401,3,3,0,3]]]],[11973,11974,11975]]],["passover",[45,42,[[1,6,6,0,6,[[61,5,5,0,5],[83,1,1,5,6]]],[2,1,1,6,7,[[112,1,1,6,7]]],[3,11,10,7,17,[[125,9,8,7,15],[144,1,1,15,16],[149,1,1,16,17]]],[4,4,4,17,21,[[168,4,4,17,21]]],[5,2,2,21,23,[[191,2,2,21,23]]],[11,3,3,23,26,[[335,3,3,23,26]]],[13,15,13,26,39,[[396,5,5,26,31],[401,10,8,31,39]]],[14,2,2,39,41,[[408,2,2,39,41]]],[25,1,1,41,42,[[846,1,1,41,42]]]],[1827,1837,1843,1859,1864,2521,3407,3967,3969,3970,3971,3975,3977,3978,3979,4593,4763,5343,5344,5347,5348,5944,5945,10186,10187,10188,11828,11829,11832,11842,11845,11967,11972,11977,11979,11982,11983,11984,11985,12170,12171,21651]]],["passovers",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11844]]]]},{"k":"H6454","v":[["*",[4,4,[[12,1,1,0,1,[[341,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,2,2,2,4,[[415,1,1,2,3],[419,1,1,3,4]]]],[10397,12076,12333,12471]]],["Paseah",[3,3,[[12,1,1,0,1,[[341,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,1,1,2,3,[[415,1,1,2,3]]]],[10397,12076,12333]]],["Phaseah",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12471]]]]},{"k":"H6455","v":[["*",[14,13,[[2,1,1,0,1,[[110,1,1,0,1]]],[4,1,1,1,2,[[167,1,1,1,2]]],[9,5,4,2,6,[[271,3,2,2,4],[275,1,1,4,5],[285,1,1,5,6]]],[17,1,1,6,7,[[464,1,1,6,7]]],[19,1,1,7,8,[[653,1,1,7,8]]],[22,2,2,8,10,[[711,1,1,8,9],[713,1,1,9,10]]],[23,1,1,10,11,[[775,1,1,10,11]]],[38,2,2,11,13,[[925,2,2,11,13]]]],[3363,5340,8138,8140,8240,8537,13547,17148,18302,18326,19699,23097,23102]]],["+",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17148]]],["lame",[13,12,[[2,1,1,0,1,[[110,1,1,0,1]]],[4,1,1,1,2,[[167,1,1,1,2]]],[9,5,4,2,6,[[271,3,2,2,4],[275,1,1,4,5],[285,1,1,5,6]]],[17,1,1,6,7,[[464,1,1,6,7]]],[22,2,2,7,9,[[711,1,1,7,8],[713,1,1,8,9]]],[23,1,1,9,10,[[775,1,1,9,10]]],[38,2,2,10,12,[[925,2,2,10,12]]]],[3363,5340,8138,8140,8240,8537,13547,18302,18326,19699,23097,23102]]]]},{"k":"H6456","v":[["*",[23,23,[[4,3,3,0,3,[[159,2,2,0,2],[164,1,1,2,3]]],[6,2,2,3,5,[[213,2,2,3,5]]],[11,1,1,5,6,[[329,1,1,5,6]]],[13,5,5,6,11,[[399,2,2,6,8],[400,3,3,8,11]]],[18,1,1,11,12,[[555,1,1,11,12]]],[22,4,4,12,16,[[688,1,1,12,13],[699,1,1,13,14],[708,1,1,14,15],[720,1,1,15,16]]],[23,4,4,16,20,[[752,1,1,16,17],[794,1,1,17,18],[795,2,2,18,20]]],[27,1,1,20,21,[[872,1,1,20,21]]],[32,2,2,21,23,[[893,1,1,21,22],[897,1,1,22,23]]]],[5116,5136,5243,6587,6594,10024,11927,11930,11936,11937,11940,15171,17860,18044,18239,18488,19172,20204,20259,20264,22242,22586,22646]]],["images",[21,21,[[4,3,3,0,3,[[159,2,2,0,2],[164,1,1,2,3]]],[11,1,1,3,4,[[329,1,1,3,4]]],[13,5,5,4,9,[[399,2,2,4,6],[400,3,3,6,9]]],[18,1,1,9,10,[[555,1,1,9,10]]],[22,4,4,10,14,[[688,1,1,10,11],[699,1,1,11,12],[708,1,1,12,13],[720,1,1,13,14]]],[23,4,4,14,18,[[752,1,1,14,15],[794,1,1,15,16],[795,2,2,16,18]]],[27,1,1,18,19,[[872,1,1,18,19]]],[32,2,2,19,21,[[893,1,1,19,20],[897,1,1,20,21]]]],[5116,5136,5243,10024,11927,11930,11936,11937,11940,15171,17860,18044,18239,18488,19172,20204,20259,20264,22242,22586,22646]]],["quarries",[2,2,[[6,2,2,0,2,[[213,2,2,0,2]]]],[6587,6594]]]]},{"k":"H6457","v":[["Pasach",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10568]]]]},{"k":"H6458","v":[["*",[6,6,[[1,2,2,0,2,[[83,2,2,0,2]]],[4,2,2,2,4,[[162,2,2,2,4]]],[10,1,1,4,5,[[295,1,1,4,5]]],[34,1,1,5,6,[[904,1,1,5,6]]]],[2497,2500,5187,5189,8896,22766]]],["Hew",[2,2,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,1,1,1,2,[[162,1,1,1,2]]]],[2497,5187]]],["graven",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22766]]],["hew",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8896]]],["hewed",[2,2,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,1,1,1,2,[[162,1,1,1,2]]]],[2500,5189]]]]},{"k":"H6459","v":[["*",[31,31,[[1,1,1,0,1,[[69,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[4,5,5,2,7,[[156,3,3,2,5],[157,1,1,5,6],[179,1,1,6,7]]],[6,8,8,7,15,[[227,2,2,7,9],[228,6,6,9,15]]],[11,1,1,15,16,[[333,1,1,15,16]]],[13,1,1,16,17,[[399,1,1,16,17]]],[18,1,1,17,18,[[574,1,1,17,18]]],[22,9,9,18,27,[[718,2,2,18,20],[720,1,1,20,21],[722,4,4,21,25],[723,1,1,25,26],[726,1,1,26,27]]],[23,2,2,27,29,[[754,1,1,27,28],[795,1,1,28,29]]],[33,1,1,29,30,[[900,1,1,29,30]]],[34,1,1,30,31,[[904,1,1,30,31]]]],[2055,3525,5020,5027,5029,5061,5600,6983,6984,7007,7010,7011,7013,7023,7024,10126,11915,15485,18439,18440,18497,18542,18543,18548,18550,18581,18619,19215,20229,22698,22766]]],["+",[2,2,[[23,2,2,0,2,[[754,1,1,0,1],[795,1,1,1,2]]]],[19215,20229]]],["graven",[1,1,[[4,1,1,0,1,[[179,1,1,0,1]]]],[5600]]],["image",[26,26,[[1,1,1,0,1,[[69,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[4,4,4,2,6,[[156,3,3,2,5],[157,1,1,5,6]]],[6,8,8,6,14,[[227,2,2,6,8],[228,6,6,8,14]]],[11,1,1,14,15,[[333,1,1,14,15]]],[13,1,1,15,16,[[399,1,1,15,16]]],[22,8,8,16,24,[[718,2,2,16,18],[722,4,4,18,22],[723,1,1,22,23],[726,1,1,23,24]]],[33,1,1,24,25,[[900,1,1,24,25]]],[34,1,1,25,26,[[904,1,1,25,26]]]],[2055,3525,5020,5027,5029,5061,6983,6984,7007,7010,7011,7013,7023,7024,10126,11915,18439,18440,18542,18543,18548,18550,18581,18619,22698,22766]]],["images",[2,2,[[18,1,1,0,1,[[574,1,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]]],[15485,18497]]]]},{"k":"H6460","v":[["psaltery",[4,4,[[26,4,4,0,4,[[852,4,4,0,4]]]],[21812,21814,21817,21822]]]]},{"k":"H6461","v":[["fail",[1,1,[[18,1,1,0,1,[[489,1,1,0,1]]]],[14067]]]]},{"k":"H6462","v":[["Pispah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10573]]]]},{"k":"H6463","v":[["cry",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18494]]]]},{"k":"H6464","v":[["*",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1079,10302]]],["Pai",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10302]]],["Pau",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1079]]]]},{"k":"H6465","v":[["*",[5,4,[[3,4,3,0,3,[[139,1,1,0,1],[141,2,1,1,2],[147,1,1,2,3]]],[5,1,1,3,4,[[208,1,1,3,4]]]],[4444,4489,4680,6443]]],["+",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4489]]],["Peor",[4,4,[[3,3,3,0,3,[[139,1,1,0,1],[141,1,1,1,2],[147,1,1,2,3]]],[5,1,1,3,4,[[208,1,1,3,4]]]],[4444,4489,4680,6443]]]]},{"k":"H6466","v":[["*",[57,56,[[1,1,1,0,1,[[64,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[17,12,12,3,15,[[442,1,1,3,4],[446,1,1,4,5],[457,1,1,5,6],[466,1,1,6,7],[468,1,1,7,8],[469,3,3,8,11],[470,1,1,11,12],[471,2,2,12,14],[472,1,1,14,15]]],[18,26,26,15,41,[[482,1,1,15,16],[483,1,1,16,17],[484,2,2,17,19],[488,1,1,19,20],[491,1,1,20,21],[492,1,1,21,22],[505,1,1,22,23],[508,1,1,23,24],[513,1,1,24,25],[521,1,1,25,26],[530,1,1,26,27],[535,1,1,27,28],[536,1,1,28,29],[541,1,1,29,30],[545,1,1,30,31],[551,1,1,31,32],[569,2,2,32,34],[571,2,2,34,36],[578,1,1,36,37],[596,1,1,37,38],[602,1,1,38,39],[618,2,2,39,41]]],[19,4,4,41,45,[[637,1,1,41,42],[643,1,1,42,43],[648,1,1,43,44],[657,1,1,44,45]]],[22,7,6,45,51,[[704,1,1,45,46],[709,1,1,46,47],[719,1,1,47,48],[721,1,1,48,49],[722,3,2,49,51]]],[27,2,2,51,53,[[867,1,1,51,52],[868,1,1,52,53]]],[32,1,1,53,54,[[894,1,1,53,54]]],[34,1,1,54,55,[[903,1,1,54,55]]],[35,1,1,55,56,[[907,1,1,55,56]]]],[1937,4439,5785,13028,13116,13406,13591,13679,13691,13705,13715,13726,13739,13759,13781,13978,13993,14008,14010,14062,14084,14089,14302,14350,14450,14572,14723,14781,14792,14852,14928,15060,15418,15420,15435,15447,15521,15901,16115,16280,16285,16685,16844,16999,17271,18142,18252,18455,18518,18545,18548,22175,22179,22596,22736,22808]]],["+",[1,1,[[18,1,1,0,1,[[536,1,1,0,1]]]],[14792]]],["Maker",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13739]]],["commit",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22179]]],["didst",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14572]]],["do",[6,6,[[17,4,4,0,4,[[442,1,1,0,1],[446,1,1,1,2],[457,1,1,2,3],[472,1,1,3,4]]],[18,2,2,4,6,[[488,1,1,4,5],[596,1,1,5,6]]]],[13028,13116,13406,13781,14062,15901]]],["doers",[1,1,[[18,1,1,0,1,[[578,1,1,0,1]]]],[15521]]],["doest",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13726]]],["done",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[19,1,1,2,3,[[657,1,1,2,3]]]],[5785,13715,17271]]],["made",[3,3,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,1,1,1,2,[[484,1,1,1,2]]],[19,1,1,2,3,[[643,1,1,2,3]]]],[1937,14010,16844]]],["maketh",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18548]]],["ordaineth",[1,1,[[18,1,1,0,1,[[484,1,1,0,1]]]],[14008]]],["work",[7,7,[[18,2,2,0,2,[[535,1,1,0,1],[618,1,1,1,2]]],[22,2,2,2,4,[[709,1,1,2,3],[721,1,1,3,4]]],[27,1,1,4,5,[[867,1,1,4,5]]],[32,1,1,5,6,[[894,1,1,5,6]]],[34,1,1,6,7,[[903,1,1,6,7]]]],[14781,16280,18252,18518,22175,22596,22736]]],["workers",[18,18,[[17,3,3,0,3,[[466,1,1,0,1],[469,2,2,1,3]]],[18,13,13,3,16,[[482,1,1,3,4],[483,1,1,4,5],[491,1,1,5,6],[505,1,1,6,7],[513,1,1,7,8],[530,1,1,8,9],[541,1,1,9,10],[569,2,2,10,12],[571,2,2,12,14],[602,1,1,14,15],[618,1,1,15,16]]],[19,2,2,16,18,[[637,1,1,16,17],[648,1,1,17,18]]]],[13591,13691,13705,13978,13993,14084,14302,14450,14723,14852,15418,15420,15435,15447,16115,16285,16685,16999]]],["worketh",[4,3,[[17,1,1,0,1,[[468,1,1,0,1]]],[18,1,1,1,2,[[492,1,1,1,2]]],[22,2,1,2,3,[[722,2,1,2,3]]]],[13679,14089,18545]]],["working",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15060]]],["wrought",[7,7,[[3,1,1,0,1,[[139,1,1,0,1]]],[17,1,1,1,2,[[471,1,1,1,2]]],[18,2,2,2,4,[[508,1,1,2,3],[545,1,1,3,4]]],[22,2,2,4,6,[[704,1,1,4,5],[719,1,1,5,6]]],[35,1,1,6,7,[[907,1,1,6,7]]]],[4439,13759,14350,14928,18142,18455,22808]]]]},{"k":"H6467","v":[["*",[37,37,[[4,2,2,0,2,[[184,1,1,0,1],[185,1,1,1,2]]],[7,1,1,2,3,[[233,1,1,2,3]]],[9,1,1,3,4,[[289,1,1,3,4]]],[12,1,1,4,5,[[348,1,1,4,5]]],[17,5,5,5,10,[[442,1,1,5,6],[459,1,1,6,7],[469,1,1,7,8],[471,2,2,8,10]]],[18,11,11,10,21,[[486,1,1,10,11],[505,1,1,11,12],[521,1,1,12,13],[541,1,1,13,14],[554,1,1,14,15],[567,1,1,15,16],[569,1,1,16,17],[572,1,1,17,18],[581,1,1,18,19],[588,1,1,19,20],[620,1,1,20,21]]],[19,5,5,21,26,[[647,1,1,21,22],[648,2,2,22,24],[651,2,2,24,26]]],[22,6,6,26,32,[[679,1,1,26,27],[683,1,1,27,28],[719,1,1,28,29],[723,2,2,29,31],[737,1,1,31,32]]],[23,3,3,32,35,[[766,1,1,32,33],[769,1,1,33,34],[794,1,1,34,35]]],[34,2,2,35,37,[[903,1,1,35,36],[905,1,1,36,37]]]],[5762,5821,7161,8673,10695,13010,13441,13694,13745,13760,14037,14303,14572,14859,15105,15394,15415,15463,15594,15796,16298,16965,16990,16992,17091,17108,17685,17751,18475,18570,18572,18806,19467,19548,20195,22736,22770]]],["+",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8673]]],["act",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18806]]],["acts",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10695]]],["deeds",[2,2,[[18,1,1,0,1,[[505,1,1,0,1]]],[23,1,1,1,2,[[769,1,1,1,2]]]],[14303,19548]]],["getting",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16990]]],["maker",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17685]]],["work",[28,28,[[4,2,2,0,2,[[184,1,1,0,1],[185,1,1,1,2]]],[7,1,1,2,3,[[233,1,1,2,3]]],[17,5,5,3,8,[[442,1,1,3,4],[459,1,1,4,5],[469,1,1,5,6],[471,2,2,6,8]]],[18,9,9,8,17,[[486,1,1,8,9],[521,1,1,9,10],[541,1,1,10,11],[554,1,1,11,12],[567,1,1,12,13],[569,1,1,13,14],[572,1,1,14,15],[581,1,1,15,16],[588,1,1,16,17]]],[19,3,3,17,20,[[647,1,1,17,18],[648,1,1,18,19],[651,1,1,19,20]]],[22,4,4,20,24,[[683,1,1,20,21],[719,1,1,21,22],[723,2,2,22,24]]],[23,2,2,24,26,[[766,1,1,24,25],[794,1,1,25,26]]],[34,2,2,26,28,[[903,1,1,26,27],[905,1,1,27,28]]]],[5762,5821,7161,13010,13441,13694,13745,13760,14037,14572,14859,15105,15394,15415,15463,15594,15796,16965,16992,17108,17751,18475,18570,18572,19467,20195,22736,22770]]],["works",[2,2,[[18,1,1,0,1,[[620,1,1,0,1]]],[19,1,1,1,2,[[651,1,1,1,2]]]],[16298,17091]]]]},{"k":"H6468","v":[["*",[14,14,[[2,1,1,0,1,[[108,1,1,0,1]]],[13,1,1,1,2,[[381,1,1,1,2]]],[18,3,3,2,5,[[494,1,1,2,3],[505,1,1,3,4],[586,1,1,4,5]]],[19,2,2,5,7,[[637,1,1,5,6],[638,1,1,6,7]]],[22,5,5,7,12,[[718,1,1,7,8],[727,1,1,8,9],[739,1,1,9,10],[740,1,1,10,11],[743,1,1,11,12]]],[23,1,1,12,13,[[775,1,1,12,13]]],[25,1,1,13,14,[[830,1,1,13,14]]]],[3294,11497,14107,14304,15775,16672,16706,18430,18640,18851,18865,18904,19707,21203]]],["labour",[2,2,[[19,1,1,0,1,[[637,1,1,0,1]]],[25,1,1,1,2,[[830,1,1,1,2]]]],[16672,21203]]],["reward",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15775]]],["wages",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3294]]],["work",[8,8,[[13,1,1,0,1,[[381,1,1,0,1]]],[19,1,1,1,2,[[638,1,1,1,2]]],[22,5,5,2,7,[[718,1,1,2,3],[727,1,1,3,4],[739,1,1,4,5],[740,1,1,5,6],[743,1,1,6,7]]],[23,1,1,7,8,[[775,1,1,7,8]]]],[11497,16706,18430,18640,18851,18865,18904,19707]]],["works",[2,2,[[18,2,2,0,2,[[494,1,1,0,1],[505,1,1,1,2]]]],[14107,14304]]]]},{"k":"H6469","v":[["Peulthai",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11082]]]]},{"k":"H6470","v":[["*",[5,5,[[0,1,1,0,1,[[40,1,1,0,1]]],[6,1,1,1,2,[[223,1,1,1,2]]],[18,1,1,2,3,[[554,1,1,2,3]]],[26,2,2,3,5,[[851,2,2,3,5]]]],[1203,6909,15097,21759,21761]]],["move",[1,1,[[6,1,1,0,1,[[223,1,1,0,1]]]],[6909]]],["troubled",[4,4,[[0,1,1,0,1,[[40,1,1,0,1]]],[18,1,1,1,2,[[554,1,1,1,2]]],[26,2,2,2,4,[[851,2,2,2,4]]]],[1203,15097,21759,21761]]]]},{"k":"H6471","v":[["*",[118,108,[[0,10,10,0,10,[[1,1,1,0,1],[17,1,1,1,2],[26,1,1,2,3],[28,2,2,3,5],[29,1,1,5,6],[32,1,1,6,7],[40,1,1,7,8],[42,1,1,8,9],[45,1,1,9,10]]],[1,9,9,10,19,[[57,1,1,10,11],[58,2,2,11,13],[59,1,1,13,14],[72,1,1,14,15],[74,1,1,15,16],[83,2,2,16,18],[86,1,1,18,19]]],[2,10,10,19,29,[[93,2,2,19,21],[97,1,1,21,22],[103,4,4,22,26],[105,2,2,26,28],[114,1,1,28,29]]],[3,6,5,29,34,[[130,1,1,29,30],[135,1,1,30,31],[136,1,1,31,32],[140,3,2,32,34]]],[4,4,4,34,38,[[153,1,1,34,35],[161,1,1,35,36],[162,1,1,36,37],[168,1,1,37,38]]],[5,8,7,38,45,[[192,7,6,38,44],[196,1,1,44,45]]],[6,13,9,45,54,[[215,1,1,45,46],[216,2,1,46,47],[225,1,1,47,48],[226,5,4,48,52],[230,4,2,52,54]]],[8,7,5,54,59,[[238,2,1,54,55],[253,1,1,55,56],[255,3,2,56,58],[261,1,1,58,59]]],[9,3,3,59,62,[[283,1,1,59,60],[289,1,1,60,61],[290,1,1,61,62]]],[10,8,8,62,70,[[297,3,3,62,65],[299,1,1,65,66],[301,1,1,66,67],[307,1,1,67,68],[308,1,1,68,69],[312,1,1,69,70]]],[11,8,7,70,77,[[316,1,1,70,71],[317,2,2,71,73],[325,4,3,73,76],[331,1,1,76,77]]],[12,2,2,77,79,[[348,1,1,77,78],[358,1,1,78,79]]],[13,2,2,79,81,[[374,1,1,79,80],[384,1,1,80,81]]],[15,4,4,81,85,[[416,1,1,81,82],[418,2,2,82,84],[425,1,1,84,85]]],[17,2,2,85,87,[[454,1,1,85,86],[468,1,1,86,87]]],[18,8,8,87,95,[[494,1,1,87,88],[534,1,1,88,89],[535,1,1,89,90],[551,1,1,90,91],[562,1,1,91,92],[583,1,1,92,93],[596,1,1,93,94],[617,1,1,94,95]]],[19,3,2,95,97,[[634,2,1,95,96],[656,1,1,96,97]]],[20,2,2,97,99,[[664,1,1,97,98],[665,1,1,98,99]]],[21,1,1,99,100,[[677,1,1,99,100]]],[22,4,4,100,104,[[704,1,1,100,101],[715,1,1,101,102],[719,1,1,102,103],[744,1,1,103,104]]],[23,2,2,104,106,[[754,1,1,104,105],[760,1,1,105,106]]],[25,1,1,106,107,[[842,1,1,106,107]]],[33,1,1,107,108,[[900,1,1,107,108]]]],[53,456,763,829,830,850,963,1227,1300,1416,1742,1756,1769,1794,2161,2207,2519,2520,2607,2801,2812,2928,3118,3127,3138,3162,3215,3220,3477,4130,4293,4322,4447,4456,4903,5176,5196,5358,5952,5953,5960,5963,5964,5965,6106,6651,6693,6932,6964,6967,6969,6977,7084,7085,7286,7687,7755,7771,7913,8456,8661,8695,8938,8939,8964,9076,9117,9338,9384,9496,9638,9657,9661,9889,9890,9896,10085,10684,10937,11359,11557,12371,12405,12406,12691,13300,13679,14108,14774,14789,15051,15284,15694,16031,16267,16587,17229,17423,17451,17628,18136,18377,18458,18930,19219,19357,21532,22693]]],["+",[24,18,[[1,2,2,0,2,[[83,2,2,0,2]]],[3,2,1,2,3,[[140,2,1,2,3]]],[5,3,3,3,6,[[192,3,3,3,6]]],[6,6,3,6,9,[[226,2,1,6,7],[230,4,2,7,9]]],[8,5,3,9,12,[[238,2,1,9,10],[255,2,1,10,11],[261,1,1,11,12]]],[9,1,1,12,13,[[290,1,1,12,13]]],[11,2,2,13,15,[[325,2,2,13,15]]],[17,1,1,15,16,[[468,1,1,15,16]]],[20,1,1,16,17,[[665,1,1,16,17]]],[22,1,1,17,18,[[744,1,1,17,18]]]],[2519,2520,4447,5952,5960,5963,6969,7084,7085,7286,7755,7913,8695,9889,9890,13679,17451,18930]]],["Now",[4,4,[[0,2,2,0,2,[[28,1,1,0,1],[45,1,1,1,2]]],[6,1,1,2,3,[[225,1,1,2,3]]],[19,1,1,3,4,[[634,1,1,3,4]]]],[830,1416,6932,16587]]],["anvil",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18458]]],["corners",[3,3,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]]],[2207,2607,8964]]],["feet",[6,6,[[11,1,1,0,1,[[331,1,1,0,1]]],[18,2,2,1,3,[[535,1,1,1,2],[551,1,1,2,3]]],[19,1,1,3,4,[[656,1,1,3,4]]],[21,1,1,4,5,[[677,1,1,4,5]]],[22,1,1,5,6,[[715,1,1,5,6]]]],[10085,14789,15051,17229,17628,18377]]],["footsteps",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14108]]],["goings",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16267]]],["now",[3,3,[[0,2,2,0,2,[[1,1,1,0,1],[29,1,1,1,2]]],[19,1,1,2,3,[[634,1,1,2,3]]]],[53,850,16587]]],["once",[9,8,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[59,1,1,1,2]]],[6,4,3,2,5,[[216,2,1,2,3],[226,2,2,3,5]]],[15,1,1,5,6,[[425,1,1,5,6]]],[23,2,2,6,8,[[754,1,1,6,7],[760,1,1,7,8]]]],[456,1794,6693,6967,6977,12691,19219,19357]]],["order",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21532]]],["ranks",[2,2,[[10,2,2,0,2,[[297,2,2,0,2]]]],[8938,8939]]],["steps",[4,4,[[18,3,3,0,3,[[534,1,1,0,1],[562,1,1,1,2],[596,1,1,2,3]]],[22,1,1,3,4,[[704,1,1,3,4]]]],[14774,15284,16031,18136]]],["time",[14,14,[[0,2,2,0,2,[[28,1,1,0,1],[42,1,1,1,2]]],[1,3,3,2,5,[[57,1,1,2,3],[58,2,2,3,5]]],[4,2,2,5,7,[[161,1,1,5,6],[162,1,1,6,7]]],[5,2,2,7,9,[[192,1,1,7,8],[196,1,1,8,9]]],[9,2,2,9,11,[[283,1,1,9,10],[289,1,1,10,11]]],[12,1,1,11,12,[[348,1,1,11,12]]],[15,1,1,12,13,[[418,1,1,12,13]]],[33,1,1,13,14,[[900,1,1,13,14]]]],[829,1300,1742,1756,1769,5176,5196,5965,6106,8456,8661,10684,12406,22693]]],["times",[39,38,[[0,2,2,0,2,[[26,1,1,0,1],[32,1,1,1,2]]],[1,1,1,2,3,[[72,1,1,2,3]]],[2,10,10,3,13,[[93,2,2,3,5],[97,1,1,5,6],[103,4,4,6,10],[105,2,2,10,12],[114,1,1,12,13]]],[3,3,3,13,16,[[130,1,1,13,14],[135,1,1,14,15],[140,1,1,15,16]]],[4,2,2,16,18,[[153,1,1,16,17],[168,1,1,17,18]]],[5,3,2,18,20,[[192,3,2,18,20]]],[6,1,1,20,21,[[226,1,1,20,21]]],[8,1,1,21,22,[[255,1,1,21,22]]],[10,4,4,22,26,[[299,1,1,22,23],[307,1,1,23,24],[308,1,1,24,25],[312,1,1,25,26]]],[11,5,5,26,31,[[316,1,1,26,27],[317,2,2,27,29],[325,2,2,29,31]]],[12,1,1,31,32,[[358,1,1,31,32]]],[13,2,2,32,34,[[374,1,1,32,33],[384,1,1,33,34]]],[15,2,2,34,36,[[416,1,1,34,35],[418,1,1,35,36]]],[17,1,1,36,37,[[454,1,1,36,37]]],[18,1,1,37,38,[[583,1,1,37,38]]]],[763,963,2161,2801,2812,2928,3118,3127,3138,3162,3215,3220,3477,4130,4293,4456,4903,5358,5953,5964,6964,7771,9076,9338,9384,9496,9638,9657,9661,9890,9896,10937,11359,11557,12371,12405,13300,15694]]],["twice",[5,5,[[0,1,1,0,1,[[40,1,1,0,1]]],[3,1,1,1,2,[[136,1,1,1,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[10,1,1,3,4,[[301,1,1,3,4]]],[20,1,1,4,5,[[664,1,1,4,5]]]],[1227,4322,7687,9117,17423]]],["wheels",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6651]]]]},{"k":"H6472","v":[["*",[7,4,[[1,7,4,0,4,[[77,3,2,0,2],[88,4,2,2,4]]]],[2326,2327,2689,2690]]],["bell",[4,2,[[1,4,2,0,2,[[77,2,1,0,1],[88,2,1,1,2]]]],[2327,2690]]],["bells",[3,2,[[1,3,2,0,2,[[77,1,1,0,1],[88,2,1,1,2]]]],[2326,2689]]]]},{"k":"H6473","v":[["*",[4,4,[[17,2,2,0,2,[[451,1,1,0,1],[464,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[22,1,1,3,4,[[683,1,1,3,4]]]],[13248,13555,16029,17753]]],["gaped",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13248]]],["opened",[3,3,[[17,1,1,0,1,[[464,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[22,1,1,2,3,[[683,1,1,2,3]]]],[13555,16029,17753]]]]},{"k":"H6474","v":[["Paarai",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8688]]]]},{"k":"H6475","v":[["*",[15,15,[[0,1,1,0,1,[[3,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[4,1,1,2,3,[[163,1,1,2,3]]],[6,2,2,3,5,[[221,2,2,3,5]]],[17,1,1,5,6,[[470,1,1,5,6]]],[18,5,5,6,11,[[499,1,1,6,7],[543,1,1,7,8],[621,3,3,8,11]]],[22,1,1,11,12,[[688,1,1,11,12]]],[24,2,2,12,14,[[798,1,1,12,13],[799,1,1,13,14]]],[25,1,1,14,15,[[803,1,1,14,15]]]],[90,4224,5214,6864,6865,13736,14217,14887,16312,16315,16316,17864,20348,20400,20500]]],["+",[5,5,[[0,1,1,0,1,[[3,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[4,1,1,2,3,[[163,1,1,2,3]]],[6,1,1,3,4,[[221,1,1,3,4]]],[18,1,1,4,5,[[621,1,1,4,5]]]],[90,4224,5214,6865,16315]]],["Rid",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16316]]],["gaped",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14217]]],["open",[2,2,[[17,1,1,0,1,[[470,1,1,0,1]]],[25,1,1,1,2,[[803,1,1,1,2]]]],[13736,20500]]],["opened",[4,4,[[6,1,1,0,1,[[221,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]],[24,2,2,2,4,[[798,1,1,2,3],[799,1,1,3,4]]]],[6864,17864,20348,20400]]],["rid",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16312]]],["uttered",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14887]]]]},{"k":"H6476","v":[["*",[8,8,[[18,1,1,0,1,[[575,1,1,0,1]]],[22,6,6,1,7,[[692,1,1,1,2],[722,1,1,2,3],[727,1,1,3,4],[730,1,1,4,5],[732,1,1,5,6],[733,1,1,6,7]]],[32,1,1,7,8,[[895,1,1,7,8]]]],[15494,17935,18556,18649,18705,18724,18752,22611]]],["break",[1,1,[[32,1,1,0,1,[[895,1,1,0,1]]]],[22611]]],["forth",[5,5,[[22,5,5,0,5,[[692,1,1,0,1],[722,1,1,1,2],[727,1,1,2,3],[732,1,1,3,4],[733,1,1,4,5]]]],[17935,18556,18649,18724,18752]]],["joy",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18705]]],["noise",[1,1,[[18,1,1,0,1,[[575,1,1,0,1]]]],[15494]]]]},{"k":"H6477","v":[["+",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7506]]]]},{"k":"H6478","v":[["pilled",[2,2,[[0,2,2,0,2,[[29,2,2,0,2]]]],[867,868]]]]},{"k":"H6479","v":[["strakes",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[867]]]]},{"k":"H6480","v":[["broken",[1,1,[[18,1,1,0,1,[[537,1,1,0,1]]]],[14809]]]]},{"k":"H6481","v":[["*",[3,3,[[4,1,1,0,1,[[175,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[21,1,1,2,3,[[675,1,1,2,3]]]],[5501,9445,17605]]],["+",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5501]]],["wounded",[2,2,[[10,1,1,0,1,[[310,1,1,0,1]]],[21,1,1,1,2,[[675,1,1,1,2]]]],[9445,17605]]]]},{"k":"H6482","v":[["*",[8,7,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,2,1,1,2,[[70,2,1,1,2]]],[17,1,1,2,3,[[444,1,1,2,3]]],[19,3,3,3,6,[[647,1,1,3,4],[650,1,1,4,5],[654,1,1,5,6]]],[22,1,1,6,7,[[679,1,1,6,7]]]],[102,2102,13068,16984,17073,17175,17660]]],["wound",[3,2,[[1,2,1,0,1,[[70,2,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]]],[2102,16984]]],["wounding",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[102]]],["wounds",[4,4,[[17,1,1,0,1,[[444,1,1,0,1]]],[19,2,2,1,3,[[650,1,1,1,2],[654,1,1,2,3]]],[22,1,1,3,4,[[679,1,1,3,4]]]],[13068,17073,17175,17660]]]]},{"k":"H6483","v":[["Aphses",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11030]]]]},{"k":"H6484","v":[["*",[7,7,[[0,3,3,0,3,[[18,2,2,0,2],[32,1,1,2,3]]],[6,1,1,3,4,[[229,1,1,3,4]]],[8,1,1,4,5,[[250,1,1,4,5]]],[11,2,2,5,7,[[314,1,1,5,6],[317,1,1,6,7]]]],[460,466,971,7031,7583,9568,9663]]],["pressed",[2,2,[[0,2,2,0,2,[[18,2,2,0,2]]]],[460,466]]],["stubbornness",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7583]]],["urged",[4,4,[[0,1,1,0,1,[[32,1,1,0,1]]],[6,1,1,1,2,[[229,1,1,1,2]]],[11,2,2,2,4,[[314,1,1,2,3],[317,1,1,3,4]]]],[971,7031,9568,9663]]]]},{"k":"H6485","v":[["*",[303,269,[[0,9,7,0,7,[[20,1,1,0,1],[38,2,2,1,3],[39,1,1,3,4],[40,1,1,4,5],[49,4,2,5,7]]],[1,18,12,7,19,[[52,2,1,7,8],[53,1,1,8,9],[62,2,1,9,10],[69,1,1,10,11],[79,5,3,11,14],[81,2,1,14,15],[83,1,1,15,16],[87,4,3,16,19]]],[2,3,3,19,22,[[95,1,1,19,20],[107,1,1,20,21],[115,1,1,21,22]]],[3,103,90,22,112,[[117,22,21,22,43],[118,19,18,43,61],[119,12,9,61,70],[120,22,17,70,87],[123,1,1,87,88],[130,2,2,88,90],[132,1,1,90,91],[142,20,17,91,108],[143,1,1,108,109],[147,3,3,109,112]]],[4,2,2,112,114,[[157,1,1,112,113],[172,1,1,113,114]]],[5,2,2,114,116,[[194,1,1,114,115],[196,1,1,115,116]]],[6,6,5,116,121,[[225,1,1,116,117],[230,3,2,117,119],[231,2,2,119,121]]],[7,1,1,121,122,[[232,1,1,121,122]]],[8,18,15,122,137,[[237,1,1,122,123],[246,1,1,123,124],[248,1,1,124,125],[249,2,1,125,126],[250,2,2,126,128],[252,1,1,128,129],[255,6,4,129,133],[260,3,3,133,136],[264,1,1,136,137]]],[9,5,5,137,142,[[268,1,1,137,138],[269,1,1,138,139],[284,1,1,139,140],[290,2,2,140,142]]],[10,8,6,142,148,[[301,1,1,142,143],[304,1,1,143,144],[310,6,4,144,148]]],[11,12,11,148,159,[[315,1,1,148,149],[317,1,1,149,150],[319,1,1,150,151],[321,1,1,151,152],[322,2,1,152,153],[323,1,1,153,154],[324,1,1,154,155],[334,2,2,155,157],[337,2,2,157,159]]],[12,3,3,159,162,[[358,1,1,159,160],[360,1,1,160,161],[363,1,1,161,162]]],[13,7,7,162,169,[[378,1,1,162,163],[389,1,1,163,164],[391,1,1,164,165],[400,3,3,165,168],[402,1,1,168,169]]],[14,1,1,169,170,[[403,1,1,169,170]]],[15,2,2,170,172,[[419,1,1,170,171],[424,1,1,171,172]]],[16,1,1,172,173,[[427,1,1,172,173]]],[17,6,6,173,179,[[440,1,1,173,174],[442,1,1,174,175],[466,1,1,175,176],[469,1,1,176,177],[470,1,1,177,178],[471,1,1,178,179]]],[18,9,9,179,188,[[485,1,1,179,180],[494,1,1,180,181],[508,1,1,181,182],[536,1,1,182,183],[542,1,1,183,184],[557,1,1,184,185],[566,1,1,185,186],[583,1,1,186,187],[586,1,1,187,188]]],[19,1,1,188,189,[[646,1,1,188,189]]],[22,16,16,189,205,[[688,2,2,189,191],[691,2,2,191,193],[701,1,1,193,194],[702,2,2,194,196],[704,3,3,196,199],[705,2,2,199,201],[707,1,1,201,202],[712,1,1,202,203],[716,1,1,203,204],[740,1,1,204,205]]],[23,49,45,205,250,[[745,1,1,205,206],[747,1,1,206,207],[749,2,2,207,209],[750,2,2,209,211],[753,2,2,211,213],[755,1,1,213,214],[757,1,1,214,215],[758,1,1,215,216],[759,2,2,216,218],[765,1,1,218,219],[767,4,3,219,222],[769,1,1,222,223],[771,2,2,223,225],[773,2,2,225,227],[774,1,1,227,228],[776,1,1,228,229],[780,2,2,229,231],[781,1,1,231,232],[784,4,3,232,235],[785,3,3,235,238],[788,3,2,238,240],[790,1,1,240,241],[793,2,2,241,243],[794,4,3,243,246],[795,4,4,246,250]]],[24,1,1,250,251,[[800,1,1,250,251]]],[25,2,2,251,253,[[824,1,1,251,252],[839,1,1,252,253]]],[27,7,7,253,260,[[862,1,1,253,254],[863,1,1,254,255],[865,2,2,255,257],[869,1,1,257,258],[870,1,1,258,259],[873,1,1,259,260]]],[29,3,2,260,262,[[881,3,2,260,262]]],[35,5,5,262,267,[[906,3,3,262,265],[907,1,1,265,266],[908,1,1,266,267]]],[37,3,2,267,269,[[920,2,1,267,268],[921,1,1,268,269]]]],[514,1153,1154,1176,1229,1530,1531,1595,1632,1886,2056,2394,2395,2396,2472,2503,2654,2658,2659,2853,3276,3540,3607,3623,3625,3626,3627,3629,3631,3633,3635,3637,3639,3641,3643,3645,3647,3648,3649,3650,3651,3653,3654,3662,3664,3666,3667,3669,3671,3673,3674,3677,3679,3681,3682,3684,3686,3688,3689,3690,3691,3702,3707,3708,3714,3726,3731,3732,3734,3735,3766,3770,3772,3773,3775,3777,3779,3780,3781,3783,3784,3785,3787,3788,3789,3791,3792,3852,4126,4137,4223,4496,4507,4511,4514,4516,4523,4526,4530,4532,4536,4539,4540,4543,4546,4551,4552,4553,4570,4678,4712,4713,5062,5436,6012,6082,6930,7069,7071,7105,7111,7133,7261,7453,7500,7525,7562,7564,7636,7736,7748,7755,7757,7868,7876,7882,7971,8079,8089,8479,8694,8696,9136,9245,9423,9434,9435,9447,9582,9671,9724,9790,9812,9844,9861,10150,10154,10244,10245,10940,11007,11109,11447,11670,11709,11943,11945,11950,12016,12018,12421,12668,12727,12975,13026,13602,13696,13735,13759,14016,14106,14336,14795,14869,15212,15358,15655,15761,16948,17862,17878,17910,17917,18094,18116,18117,18144,18146,18151,18152,18154,18199,18319,18400,18860,18956,19018,19067,19087,19095,19104,19184,19200,19248,19287,19303,19318,19330,19454,19486,19488,19518,19546,19604,19618,19645,19667,19687,19736,19862,19873,19895,19946,19948,19952,19959,19967,19975,20023,20039,20070,20135,20146,20184,20197,20210,20239,20256,20259,20264,20442,21028,21433,22098,22118,22142,22147,22207,22217,22254,22397,22409,22795,22796,22799,22812,22827,23019,23044]]],["+",[80,69,[[0,7,5,0,5,[[20,1,1,0,1],[38,1,1,1,2],[39,1,1,2,3],[49,4,2,3,5]]],[1,5,3,5,8,[[52,2,1,5,6],[53,1,1,6,7],[62,2,1,7,8]]],[2,1,1,8,9,[[95,1,1,8,9]]],[3,10,9,9,18,[[117,2,2,9,11],[119,1,1,11,12],[120,3,3,12,15],[123,1,1,15,16],[142,3,2,16,18]]],[5,1,1,18,19,[[194,1,1,18,19]]],[6,1,1,19,20,[[225,1,1,19,20]]],[7,1,1,20,21,[[232,1,1,20,21]]],[8,4,3,21,24,[[237,1,1,21,22],[248,1,1,22,23],[255,2,1,23,24]]],[9,3,3,24,27,[[269,1,1,24,25],[284,1,1,25,26],[290,1,1,26,27]]],[10,6,4,27,31,[[301,1,1,27,28],[310,5,3,28,31]]],[11,2,2,31,33,[[315,1,1,31,32],[319,1,1,32,33]]],[13,1,1,33,34,[[402,1,1,33,34]]],[14,1,1,34,35,[[403,1,1,34,35]]],[17,2,2,35,37,[[469,1,1,35,36],[471,1,1,36,37]]],[22,5,5,37,42,[[688,1,1,37,38],[701,1,1,38,39],[702,1,1,39,40],[705,2,2,40,42]]],[23,17,15,42,57,[[753,1,1,42,43],[755,1,1,43,44],[757,1,1,44,45],[765,1,1,45,46],[767,1,1,46,47],[769,1,1,47,48],[773,1,1,48,49],[774,1,1,49,50],[780,1,1,50,51],[781,1,1,51,52],[788,3,2,52,54],[790,1,1,54,55],[794,2,1,55,56],[795,1,1,56,57]]],[25,1,1,57,58,[[824,1,1,57,58]]],[27,4,4,58,62,[[862,1,1,58,59],[865,2,2,59,61],[873,1,1,61,62]]],[29,2,2,62,64,[[881,2,2,62,64]]],[35,4,4,64,68,[[906,3,3,64,67],[908,1,1,67,68]]],[37,2,1,68,69,[[920,2,1,68,69]]]],[514,1154,1176,1530,1531,1595,1632,1886,2853,3653,3654,3707,3775,3777,3789,3852,4552,4553,6012,6930,7133,7261,7500,7736,8089,8479,8696,9136,9423,9434,9447,9582,9724,12016,12018,13696,13759,17862,18094,18116,18152,18154,19200,19248,19287,19454,19518,19546,19667,19687,19873,19895,20023,20039,20070,20184,20256,21028,22098,22142,22147,22254,22397,22409,22795,22796,22799,22827,23019]]],["Number",[2,2,[[3,1,1,0,1,[[119,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]]],[3732,7525]]],["Set",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15761]]],["appoint",[9,9,[[0,1,1,0,1,[[40,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,2,2,2,4,[[119,1,1,2,3],[120,1,1,3,4]]],[16,1,1,4,5,[[427,1,1,4,5]]],[23,4,4,5,9,[[759,1,1,5,6],[793,1,1,6,7],[794,1,1,7,8],[795,1,1,8,9]]]],[1229,3540,3702,3770,12727,19318,20146,20210,20239]]],["appointed",[3,3,[[8,1,1,0,1,[[264,1,1,0,1]]],[15,2,2,1,3,[[419,1,1,1,2],[424,1,1,2,3]]]],[7971,12421,12668]]],["bestowed",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9671]]],["commit",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14336]]],["committed",[4,4,[[10,1,1,0,1,[[304,1,1,0,1]]],[13,1,1,1,2,[[378,1,1,1,2]]],[23,2,2,2,4,[[784,1,1,2,3],[785,1,1,3,4]]]],[9245,11447,19948,19967]]],["counted",[3,3,[[1,1,1,0,1,[[87,1,1,0,1]]],[12,2,2,1,3,[[358,1,1,1,2],[360,1,1,2,3]]]],[2654,10940,11007]]],["deprived",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18400]]],["empty",[3,3,[[8,3,3,0,3,[[255,3,3,0,3]]]],[7748,7755,7757]]],["forward",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11945]]],["governor",[5,5,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,4,4,1,5,[[784,2,2,1,3],[785,2,2,3,5]]]],[10245,19946,19948,19959,19975]]],["how",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7636]]],["judgment",[2,2,[[23,2,2,0,2,[[795,2,2,0,2]]]],[20259,20264]]],["lacked",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8079]]],["lacketh",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4713]]],["lacking",[2,2,[[6,1,1,0,1,[[231,1,1,0,1]]],[23,1,1,1,2,[[767,1,1,1,2]]]],[7105,19488]]],["make",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5436]]],["missed",[3,3,[[8,3,3,0,3,[[255,1,1,0,1],[260,2,2,1,3]]]],[7748,7876,7882]]],["missing",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7868]]],["mustereth",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17910]]],["number",[9,9,[[1,1,1,0,1,[[79,1,1,0,1]]],[3,7,7,1,8,[[117,1,1,1,2],[119,1,1,2,3],[120,5,5,3,8]]],[9,1,1,8,9,[[290,1,1,8,9]]]],[2394,3607,3707,3766,3772,3773,3780,3784,8694]]],["numbered",[90,82,[[1,4,4,0,4,[[79,2,2,0,2],[87,2,2,2,4]]],[3,77,70,4,74,[[117,19,18,4,22],[118,19,18,22,40],[119,8,6,40,46],[120,13,11,46,57],[130,1,1,57,58],[142,17,16,58,74]]],[6,4,3,74,77,[[230,3,2,74,76],[231,1,1,76,77]]],[8,3,3,77,80,[[246,1,1,77,78],[249,1,1,78,79],[250,1,1,79,80]]],[10,1,1,80,81,[[310,1,1,80,81]]],[13,1,1,81,82,[[391,1,1,81,82]]]],[2395,2396,2658,2659,3623,3625,3626,3627,3629,3631,3633,3635,3637,3639,3641,3643,3645,3647,3648,3649,3650,3651,3662,3664,3666,3667,3669,3671,3673,3674,3677,3679,3681,3682,3684,3686,3688,3689,3690,3691,3708,3714,3726,3731,3734,3735,3779,3780,3781,3783,3784,3785,3787,3788,3789,3791,3792,4137,4496,4507,4511,4514,4516,4523,4526,4530,4532,4536,4539,4540,4543,4546,4551,4552,7069,7071,7111,7453,7525,7564,9435,11709]]],["numberest",[2,1,[[1,2,1,0,1,[[79,2,1,0,1]]]],[2394]]],["officers",[3,3,[[3,2,2,0,2,[[147,2,2,0,2]]],[11,1,1,2,3,[[323,1,1,2,3]]]],[4678,4712,9844]]],["over",[1,1,[[13,1,1,0,1,[[389,1,1,0,1]]]],[11670]]],["overseer",[1,1,[[0,1,1,0,1,[[38,1,1,0,1]]]],[1153]]],["overseers",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11950]]],["oversight",[4,4,[[11,3,3,0,3,[[324,1,1,0,1],[334,2,2,1,3]]],[13,1,1,3,4,[[400,1,1,3,4]]]],[9861,10150,10154,11943]]],["punish",[3,3,[[22,2,2,0,2,[[691,1,1,0,1],[704,1,1,1,2]]],[23,1,1,2,3,[[771,1,1,2,3]]]],[17917,18151,19604]]],["remember",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7562]]],["ruler",[1,1,[[11,1,1,0,1,[[337,1,1,0,1]]]],[10244]]],["rulers",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11109]]],["see",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9790]]],["set",[5,5,[[3,1,1,0,1,[[143,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[22,1,1,2,3,[[740,1,1,2,3]]],[23,2,2,3,5,[[745,1,1,3,4],[784,1,1,4,5]]]],[4570,6082,18860,18956,19952]]],["sum",[1,1,[[1,1,1,0,1,[[87,1,1,0,1]]]],[2654]]],["up",[2,2,[[22,1,1,0,1,[[688,1,1,0,1]]],[23,1,1,1,2,[[780,1,1,1,2]]]],[17878,19862]]],["visit",[29,28,[[1,2,1,0,1,[[81,2,1,0,1]]],[2,1,1,1,2,[[107,1,1,1,2]]],[17,2,2,2,4,[[440,1,1,2,3],[442,1,1,3,4]]],[18,4,4,4,8,[[536,1,1,4,5],[557,1,1,5,6],[566,1,1,6,7],[583,1,1,7,8]]],[23,13,13,8,21,[[747,1,1,8,9],[749,2,2,9,11],[750,1,1,11,12],[753,1,1,12,13],[758,1,1,13,14],[759,1,1,14,15],[767,1,1,15,16],[771,1,1,16,17],[773,1,1,17,18],[776,1,1,18,19],[793,1,1,19,20],[794,1,1,20,21]]],[24,1,1,21,22,[[800,1,1,21,22]]],[27,3,3,22,25,[[863,1,1,22,23],[869,1,1,23,24],[870,1,1,24,25]]],[29,1,1,25,26,[[881,1,1,25,26]]],[35,1,1,26,27,[[907,1,1,26,27]]],[37,1,1,27,28,[[921,1,1,27,28]]]],[2472,3276,12975,13026,14795,15212,15358,15655,19018,19067,19087,19104,19184,19303,19330,19486,19618,19645,19736,20135,20197,20442,22118,22207,22217,22409,22812,23044]]],["visited",[11,11,[[3,1,1,0,1,[[132,1,1,0,1]]],[17,1,1,1,2,[[470,1,1,1,2]]],[18,1,1,2,3,[[494,1,1,2,3]]],[19,1,1,3,4,[[646,1,1,3,4]]],[22,4,4,4,8,[[702,1,1,4,5],[704,2,2,5,7],[707,1,1,7,8]]],[23,2,2,8,10,[[750,1,1,8,9],[767,1,1,9,10]]],[25,1,1,10,11,[[839,1,1,10,11]]]],[4223,13735,14106,16948,18117,18144,18146,18199,19095,19486,21433]]],["visitest",[2,2,[[18,2,2,0,2,[[485,1,1,0,1],[542,1,1,1,2]]]],[14016,14869]]],["visiteth",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13602]]],["visiting",[4,4,[[1,2,2,0,2,[[69,1,1,0,1],[83,1,1,1,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[4,1,1,3,4,[[157,1,1,3,4]]]],[2056,2503,4126,5062]]],["want",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18319]]],["wanting",[2,1,[[11,2,1,0,1,[[322,2,1,0,1]]]],[9812]]]]},{"k":"H6486","v":[["*",[32,31,[[3,5,4,0,4,[[119,2,2,0,2],[120,2,1,2,3],[132,1,1,3,4]]],[11,1,1,4,5,[[323,1,1,4,5]]],[12,4,4,5,9,[[360,1,1,5,6],[361,2,2,6,8],[363,1,1,8,9]]],[13,4,4,9,13,[[383,1,1,9,10],[389,1,1,10,11],[390,1,1,11,12],[392,1,1,12,13]]],[17,1,1,13,14,[[445,1,1,13,14]]],[18,1,1,14,15,[[586,1,1,14,15]]],[22,3,3,15,18,[[688,1,1,15,16],[693,1,1,16,17],[738,1,1,17,18]]],[23,9,9,18,27,[[752,1,1,18,19],[754,1,1,19,20],[755,1,1,20,21],[767,1,1,21,22],[790,1,1,22,23],[792,1,1,23,24],[794,1,1,24,25],[795,1,1,25,26],[796,1,1,26,27]]],[25,2,2,27,29,[[810,1,1,27,28],[845,1,1,28,29]]],[27,1,1,29,30,[[870,1,1,29,30]]],[32,1,1,30,31,[[899,1,1,30,31]]]],[3724,3728,3759,4223,9847,10994,11018,11034,11107,11537,11674,11688,11743,13098,15763,17853,17967,18838,19165,19216,19249,19496,20066,20124,20193,20230,20287,20623,21610,22215,22668]]],["+",[1,1,[[23,1,1,0,1,[[796,1,1,0,1]]]],[20287]]],["account",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11743]]],["charge",[2,2,[[25,2,2,0,2,[[810,1,1,0,1],[845,1,1,1,2]]]],[20623,21610]]],["custody",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3728]]],["numbers",[1,1,[[13,1,1,0,1,[[383,1,1,0,1]]]],[11537]]],["office",[3,3,[[3,1,1,0,1,[[120,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]],[18,1,1,2,3,[[586,1,1,2,3]]]],[3759,11688,15763]]],["officers",[3,3,[[11,1,1,0,1,[[323,1,1,0,1]]],[12,1,1,1,2,[[363,1,1,1,2]]],[22,1,1,2,3,[[738,1,1,2,3]]]],[9847,11107,18838]]],["offices",[2,2,[[12,1,1,0,1,[[361,1,1,0,1]]],[13,1,1,1,2,[[389,1,1,1,2]]]],[11018,11674]]],["orderings",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11034]]],["oversight",[2,2,[[3,2,2,0,2,[[119,1,1,0,1],[120,1,1,1,2]]]],[3724,3759]]],["reckoning",[1,1,[[12,1,1,0,1,[[360,1,1,0,1]]]],[10994]]],["up",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17967]]],["visitation",[13,13,[[3,1,1,0,1,[[132,1,1,0,1]]],[17,1,1,1,2,[[445,1,1,1,2]]],[22,1,1,2,3,[[688,1,1,2,3]]],[23,8,8,3,11,[[752,1,1,3,4],[754,1,1,4,5],[755,1,1,5,6],[767,1,1,6,7],[790,1,1,7,8],[792,1,1,8,9],[794,1,1,9,10],[795,1,1,10,11]]],[27,1,1,11,12,[[870,1,1,11,12]]],[32,1,1,12,13,[[899,1,1,12,13]]]],[4223,13098,17853,19165,19216,19249,19496,20066,20124,20193,20230,22215,22668]]]]},{"k":"H6487","v":[["*",[3,3,[[0,1,1,0,1,[[40,1,1,0,1]]],[2,2,2,1,3,[[95,2,2,1,3]]]],[1231,2851,2853]]],["keep",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2851]]],["store",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1231]]],["that",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2853]]]]},{"k":"H6488","v":[["ward",[1,1,[[23,1,1,0,1,[[781,1,1,0,1]]]],[19887]]]]},{"k":"H6489","v":[["Pekod",[2,2,[[23,1,1,0,1,[[794,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[20187,21030]]]]},{"k":"H6490","v":[["*",[24,24,[[18,24,24,0,24,[[496,1,1,0,1],[580,1,1,1,2],[588,1,1,2,3],[596,21,21,3,24]]]],[14176,15567,15800,15902,15913,15925,15938,15943,15954,15961,15967,15976,15985,15991,15992,15998,16002,16008,16026,16032,16039,16057,16066,16071]]],["+",[2,2,[[18,2,2,0,2,[[596,2,2,0,2]]]],[16002,16008]]],["commandments",[2,2,[[18,2,2,0,2,[[580,1,1,0,1],[588,1,1,1,2]]]],[15567,15800]]],["precepts",[19,19,[[18,19,19,0,19,[[596,19,19,0,19]]]],[15902,15913,15925,15938,15943,15954,15961,15967,15976,15985,15991,15992,15998,16026,16032,16039,16057,16066,16071]]],["statutes",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14176]]]]},{"k":"H6491","v":[["*",[20,18,[[0,3,3,0,3,[[2,2,2,0,2],[20,1,1,2,3]]],[11,6,4,3,7,[[316,1,1,3,4],[318,4,2,4,6],[331,1,1,6,7]]],[17,2,2,7,9,[[449,1,1,7,8],[462,1,1,8,9]]],[18,1,1,9,10,[[623,1,1,9,10]]],[19,1,1,10,11,[[647,1,1,10,11]]],[22,4,4,11,15,[[713,1,1,11,12],[715,1,1,12,13],[720,2,2,13,15]]],[23,1,1,15,16,[[776,1,1,15,16]]],[26,1,1,16,17,[[858,1,1,16,17]]],[37,1,1,17,18,[[922,1,1,17,18]]]],[60,62,532,9638,9691,9694,10077,13184,13500,16349,16967,18325,18369,18487,18500,19750,22006,23049]]],["+",[7,5,[[0,1,1,0,1,[[20,1,1,0,1]]],[11,5,3,1,4,[[316,1,1,1,2],[318,4,2,2,4]]],[37,1,1,4,5,[[922,1,1,4,5]]]],[532,9638,9691,9694,23049]]],["open",[7,7,[[11,1,1,0,1,[[331,1,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[19,1,1,2,3,[[647,1,1,2,3]]],[22,2,2,3,5,[[715,1,1,3,4],[720,1,1,4,5]]],[23,1,1,5,6,[[776,1,1,5,6]]],[26,1,1,6,7,[[858,1,1,6,7]]]],[10077,13184,16967,18369,18487,19750,22006]]],["opened",[3,3,[[0,2,2,0,2,[[2,2,2,0,2]]],[22,1,1,2,3,[[713,1,1,2,3]]]],[60,62,18325]]],["openeth",[2,2,[[17,1,1,0,1,[[462,1,1,0,1]]],[18,1,1,1,2,[[623,1,1,1,2]]]],[13500,16349]]],["opening",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18500]]]]},{"k":"H6492","v":[["Pekah",[11,11,[[11,9,9,0,9,[[327,7,7,0,7],[328,2,2,7,9]]],[13,1,1,9,10,[[394,1,1,9,10]]],[22,1,1,10,11,[[685,1,1,10,11]]]],[9950,9952,9954,9955,9956,9957,9962,9964,9968,11770,17783]]]]},{"k":"H6493","v":[["*",[2,2,[[1,2,2,0,2,[[53,1,1,0,1],[72,1,1,1,2]]]],[1612,2152]]],["seeing",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1612]]],["wise",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2152]]]]},{"k":"H6494","v":[["Pekahiah",[3,3,[[11,3,3,0,3,[[327,3,3,0,3]]]],[9947,9948,9951]]]]},{"k":"H6495","v":[["prison",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18844]]]]},{"k":"H6496","v":[["*",[13,13,[[0,1,1,0,1,[[40,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[11,1,1,2,3,[[337,1,1,2,3]]],[13,2,2,3,5,[[390,1,1,3,4],[397,1,1,4,5]]],[15,4,4,5,9,[[423,3,3,5,8],[424,1,1,8,9]]],[16,1,1,9,10,[[427,1,1,9,10]]],[23,3,3,10,13,[[764,1,1,10,11],[773,1,1,11,12],[796,1,1,12,13]]]],[1229,6782,10241,11688,11867,12597,12602,12610,12666,12727,19423,19661,20301]]],["+",[2,2,[[15,2,2,0,2,[[423,2,2,0,2]]]],[12597,12602]]],["charge",[1,1,[[23,1,1,0,1,[[796,1,1,0,1]]]],[20301]]],["governor",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19423]]],["officer",[2,2,[[6,1,1,0,1,[[219,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]]],[6782,11688]]],["officers",[3,3,[[0,1,1,0,1,[[40,1,1,0,1]]],[16,1,1,1,2,[[427,1,1,1,2]]],[23,1,1,2,3,[[773,1,1,2,3]]]],[1229,12727,19661]]],["overseer",[2,2,[[15,2,2,0,2,[[423,1,1,0,1],[424,1,1,1,2]]]],[12610,12666]]],["overseers",[1,1,[[13,1,1,0,1,[[397,1,1,0,1]]]],[11867]]],["set",[1,1,[[11,1,1,0,1,[[337,1,1,0,1]]]],[10241]]]]},{"k":"H6497","v":[["knops",[3,2,[[10,3,2,0,2,[[296,1,1,0,1],[297,2,1,1,2]]]],[8914,8958]]]]},{"k":"H6498","v":[["gourds",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9642]]]]},{"k":"H6499","v":[["*",[133,119,[[0,1,1,0,1,[[31,1,1,0,1]]],[1,9,8,1,9,[[73,1,1,1,2],[78,8,7,2,9]]],[2,30,23,9,32,[[93,17,12,9,21],[97,4,3,21,24],[105,8,7,24,31],[112,1,1,31,32]]],[3,52,50,32,82,[[123,14,14,32,46],[124,3,2,46,48],[131,1,1,48,49],[139,6,6,49,55],[144,7,7,55,62],[145,21,20,62,82]]],[6,4,3,82,85,[[216,4,3,82,85]]],[8,2,2,85,87,[[236,2,2,85,87]]],[10,6,4,87,91,[[308,6,4,87,91]]],[12,2,2,91,93,[[352,1,1,91,92],[366,1,1,92,93]]],[13,4,3,93,96,[[379,1,1,93,94],[395,1,1,94,95],[396,2,1,95,96]]],[14,1,1,96,97,[[410,1,1,96,97]]],[17,1,1,97,98,[[477,1,1,97,98]]],[18,4,4,98,102,[[499,1,1,98,99],[527,1,1,99,100],[528,1,1,100,101],[546,1,1,101,102]]],[22,2,2,102,104,[[679,1,1,102,103],[712,1,1,103,104]]],[23,1,1,104,105,[[794,1,1,104,105]]],[25,13,13,105,118,[[840,1,1,105,106],[844,5,5,106,111],[846,4,4,111,115],[847,3,3,115,118]]],[27,1,1,118,119,[[875,1,1,118,119]]]],[943,2182,2337,2339,2346,2347,2348,2350,2372,2798,2799,2800,2802,2803,2806,2807,2809,2810,2811,2815,2816,2919,2931,2934,3204,3207,3212,3215,3216,3219,3228,3420,3865,3871,3877,3883,3889,3895,3901,3907,3913,3919,3925,3931,3937,3938,3947,3951,4177,4417,4418,4420,4430,4445,4446,4588,4589,4591,4596,4597,4604,4605,4610,4611,4616,4617,4621,4622,4625,4626,4628,4629,4631,4632,4634,4635,4637,4638,4640,4641,4644,4645,6679,6680,6682,7236,7237,9364,9366,9367,9374,10817,11185,11462,11812,11851,12236,13930,14216,14677,14710,14966,17665,18310,20193,21466,21591,21593,21594,21595,21597,21648,21652,21653,21654,21661,21662,21666,22284]]],["+",[3,3,[[2,2,2,0,2,[[93,2,2,0,2]]],[6,1,1,2,3,[[216,1,1,2,3]]]],[2800,2811,6679]]],["bullock",[88,79,[[1,8,7,0,7,[[78,8,7,0,7]]],[2,27,21,7,28,[[93,14,10,7,17],[97,4,3,17,20],[105,8,7,20,27],[112,1,1,27,28]]],[3,30,29,28,57,[[123,12,12,28,40],[124,2,1,40,41],[131,1,1,41,42],[139,4,4,42,46],[144,4,4,46,50],[145,7,7,50,57]]],[6,3,3,57,60,[[216,3,3,57,60]]],[8,1,1,60,61,[[236,1,1,60,61]]],[10,5,4,61,65,[[308,5,4,61,65]]],[13,1,1,65,66,[[379,1,1,65,66]]],[18,2,2,66,68,[[527,1,1,66,67],[546,1,1,67,68]]],[25,11,11,68,79,[[844,5,5,68,73],[846,3,3,73,76],[847,3,3,76,79]]]],[2337,2339,2346,2347,2348,2350,2372,2798,2799,2802,2803,2806,2807,2809,2810,2815,2816,2919,2931,2934,3204,3207,3212,3215,3216,3219,3228,3420,3865,3871,3877,3883,3889,3895,3901,3907,3913,3919,3925,3931,3947,4177,4418,4420,4430,4446,4589,4591,4597,4605,4610,4611,4616,4617,4622,4644,4645,6679,6680,6682,7237,9364,9366,9367,9374,11462,14677,14966,21591,21593,21594,21595,21597,21648,21652,21654,21661,21662,21666]]],["bullock's",[1,1,[[2,1,1,0,1,[[93,1,1,0,1]]]],[2799]]],["bullocks",[36,35,[[3,21,21,0,21,[[123,2,2,0,2],[124,1,1,2,3],[139,1,1,3,4],[144,3,3,4,7],[145,14,14,7,21]]],[8,1,1,21,22,[[236,1,1,21,22]]],[10,1,1,22,23,[[308,1,1,22,23]]],[12,2,2,23,25,[[352,1,1,23,24],[366,1,1,24,25]]],[13,3,2,25,27,[[395,1,1,25,26],[396,2,1,26,27]]],[14,1,1,27,28,[[410,1,1,27,28]]],[17,1,1,28,29,[[477,1,1,28,29]]],[18,1,1,29,30,[[528,1,1,29,30]]],[22,2,2,30,32,[[679,1,1,30,31],[712,1,1,31,32]]],[23,1,1,32,33,[[794,1,1,32,33]]],[25,2,2,33,35,[[840,1,1,33,34],[846,1,1,34,35]]]],[3937,3938,3951,4445,4588,4596,4604,4621,4622,4625,4626,4628,4629,4631,4632,4634,4635,4637,4638,4640,4641,7236,9364,10817,11185,11812,11851,12236,13930,14710,17665,18310,20193,21466,21653]]],["bulls",[2,2,[[0,1,1,0,1,[[31,1,1,0,1]]],[18,1,1,1,2,[[499,1,1,1,2]]]],[943,14216]]],["calves",[1,1,[[27,1,1,0,1,[[875,1,1,0,1]]]],[22284]]],["oxen",[2,2,[[1,1,1,0,1,[[73,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]]],[2182,4417]]]]},{"k":"H6500","v":[["fruitful",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22281]]]]},{"k":"H6501","v":[["*",[10,10,[[0,1,1,0,1,[[15,1,1,0,1]]],[17,4,4,1,5,[[441,1,1,1,2],[446,1,1,2,3],[459,1,1,3,4],[474,1,1,4,5]]],[18,1,1,5,6,[[581,1,1,5,6]]],[22,1,1,6,7,[[710,1,1,6,7]]],[23,2,2,7,9,[[746,1,1,7,8],[758,1,1,8,9]]],[27,1,1,9,10,[[869,1,1,9,10]]]],[393,12983,13120,13441,13839,15582,18273,18989,19299,22203]]],["ass",[4,4,[[17,2,2,0,2,[[441,1,1,0,1],[474,1,1,1,2]]],[23,1,1,2,3,[[746,1,1,2,3]]],[27,1,1,3,4,[[869,1,1,3,4]]]],[12983,13839,18989,22203]]],["ass's",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13120]]],["asses",[4,4,[[17,1,1,0,1,[[459,1,1,0,1]]],[18,1,1,1,2,[[581,1,1,1,2]]],[22,1,1,2,3,[[710,1,1,2,3]]],[23,1,1,3,4,[[758,1,1,3,4]]]],[13441,15582,18273,19299]]],["wild",[1,1,[[0,1,1,0,1,[[15,1,1,0,1]]]],[393]]]]},{"k":"H6502","v":[["Piram",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6067]]]]},{"k":"H6503","v":[["*",[3,2,[[11,1,1,0,1,[[335,1,1,0,1]]],[12,2,1,1,2,[[363,2,1,1,2]]]],[10176,11095]]],["Parbar",[2,1,[[12,2,1,0,1,[[363,2,1,0,1]]]],[11095]]],["suburbs",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10176]]]]},{"k":"H6504","v":[["*",[26,26,[[0,8,8,0,8,[[1,1,1,0,1],[9,2,2,1,3],[12,3,3,3,6],[24,1,1,6,7],[29,1,1,7,8]]],[4,1,1,8,9,[[184,1,1,8,9]]],[6,1,1,9,10,[[214,1,1,9,10]]],[7,1,1,10,11,[[232,1,1,10,11]]],[9,1,1,11,12,[[267,1,1,11,12]]],[11,1,1,12,13,[[314,1,1,12,13]]],[15,1,1,13,14,[[416,1,1,13,14]]],[16,1,1,14,15,[[428,1,1,14,15]]],[17,2,2,15,17,[[439,1,1,15,16],[476,1,1,16,17]]],[18,2,2,17,19,[[499,1,1,17,18],[569,1,1,18,19]]],[19,5,5,19,24,[[643,1,1,19,20],[644,1,1,20,21],[645,2,2,21,23],[646,1,1,23,24]]],[25,1,1,24,25,[[802,1,1,24,25]]],[27,1,1,25,26,[[865,1,1,25,26]]]],[40,239,266,327,329,332,681,870,5766,6610,7144,8045,9562,12378,12755,12941,13905,14218,15420,16868,16882,16902,16919,16929,20475,22147]]],["abroad",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12941]]],["dispersed",[1,1,[[16,1,1,0,1,[[428,1,1,0,1]]]],[12755]]],["divided",[3,3,[[0,2,2,0,2,[[9,2,2,0,2]]],[9,1,1,2,3,[[267,1,1,2,3]]]],[239,266,8045]]],["himself",[2,2,[[6,1,1,0,1,[[214,1,1,0,1]]],[19,1,1,1,2,[[645,1,1,1,2]]]],[6610,16902]]],["joint",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14218]]],["part",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7144]]],["parted",[2,2,[[0,1,1,0,1,[[1,1,1,0,1]]],[11,1,1,1,2,[[314,1,1,1,2]]]],[40,9562]]],["parteth",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16919]]],["scattered",[1,1,[[18,1,1,0,1,[[569,1,1,0,1]]]],[15420]]],["separate",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[870]]],["separated",[6,6,[[0,2,2,0,2,[[12,1,1,0,1],[24,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[15,1,1,3,4,[[416,1,1,3,4]]],[19,1,1,4,5,[[646,1,1,4,5]]],[27,1,1,5,6,[[865,1,1,5,6]]]],[332,681,5766,12378,16929,22147]]],["separateth",[2,2,[[19,2,2,0,2,[[643,1,1,0,1],[644,1,1,1,2]]]],[16868,16882]]],["stretched",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20475]]],["sundered",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13905]]],["themselves",[1,1,[[0,1,1,0,1,[[12,1,1,0,1]]]],[329]]],["thyself",[1,1,[[0,1,1,0,1,[[12,1,1,0,1]]]],[327]]]]},{"k":"H6505","v":[["*",[15,13,[[9,4,2,0,2,[[279,1,1,0,1],[284,3,1,1,2]]],[10,2,2,2,4,[[300,1,1,2,3],[308,1,1,3,4]]],[11,1,1,4,5,[[317,1,1,4,5]]],[12,1,1,5,6,[[349,1,1,5,6]]],[13,1,1,6,7,[[375,1,1,6,7]]],[14,1,1,7,8,[[404,1,1,7,8]]],[15,1,1,8,9,[[419,1,1,8,9]]],[18,1,1,9,10,[[509,1,1,9,10]]],[22,1,1,10,11,[[744,1,1,10,11]]],[25,1,1,11,12,[[828,1,1,11,12]]],[37,1,1,12,13,[[924,1,1,12,13]]]],[8346,8487,9104,9346,9664,10760,11388,12093,12488,14364,18942,21135,23083]]],["+",[2,2,[[10,1,1,0,1,[[308,1,1,0,1]]],[11,1,1,1,2,[[317,1,1,1,2]]]],[9346,9664]]],["mule",[6,4,[[9,4,2,0,2,[[279,1,1,0,1],[284,3,1,1,2]]],[18,1,1,2,3,[[509,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[8346,8487,14364,23083]]],["mules",[7,7,[[10,1,1,0,1,[[300,1,1,0,1]]],[12,1,1,1,2,[[349,1,1,1,2]]],[13,1,1,2,3,[[375,1,1,2,3]]],[14,1,1,3,4,[[404,1,1,3,4]]],[15,1,1,4,5,[[419,1,1,4,5]]],[22,1,1,5,6,[[744,1,1,5,6]]],[25,1,1,6,7,[[828,1,1,6,7]]]],[9104,10760,11388,12093,12488,18942,21135]]]]},{"k":"H6506","v":[["mule",[3,3,[[10,3,3,0,3,[[291,3,3,0,3]]]],[8750,8755,8761]]]]},{"k":"H6507","v":[["seed",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22308]]]]},{"k":"H6508","v":[["*",[3,3,[[15,1,1,0,1,[[414,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]],[21,1,1,2,3,[[674,1,1,2,3]]]],[12315,17338,17595]]],["forest",[1,1,[[15,1,1,0,1,[[414,1,1,0,1]]]],[12315]]],["orchard",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17595]]],["orchards",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17338]]]]},{"k":"H6509","v":[["*",[29,28,[[0,15,14,0,14,[[0,2,2,0,2],[7,1,1,2,3],[8,2,2,3,5],[16,2,2,5,7],[25,1,1,7,8],[27,1,1,8,9],[34,1,1,9,10],[40,1,1,10,11],[46,1,1,11,12],[47,1,1,12,13],[48,2,1,13,14]]],[1,2,2,14,16,[[50,1,1,14,15],[72,1,1,15,16]]],[2,1,1,16,17,[[115,1,1,16,17]]],[4,1,1,17,18,[[181,1,1,17,18]]],[18,2,2,18,20,[[582,1,1,18,19],[605,1,1,19,20]]],[22,4,4,20,24,[[689,1,1,20,21],[695,1,1,21,22],[710,1,1,22,23],[723,1,1,23,24]]],[23,2,2,24,26,[[747,1,1,24,25],[767,1,1,25,26]]],[25,2,2,26,28,[[820,1,1,26,27],[837,1,1,27,28]]]],[21,27,200,206,212,403,417,714,776,1022,1247,1447,1455,1495,1539,2174,3533,5697,15630,16129,17885,17989,18271,18569,19018,19487,20891,21370]]],["+",[3,3,[[0,1,1,0,1,[[16,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[18,1,1,2,3,[[582,1,1,2,3]]]],[417,3533,15630]]],["beareth",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5697]]],["forth",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18569]]],["fruit",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21370]]],["fruitful",[19,18,[[0,13,12,0,12,[[0,2,2,0,2],[7,1,1,2,3],[8,2,2,3,5],[16,1,1,5,6],[25,1,1,6,7],[27,1,1,7,8],[34,1,1,8,9],[40,1,1,9,10],[47,1,1,10,11],[48,2,1,11,12]]],[1,1,1,12,13,[[50,1,1,12,13]]],[18,1,1,13,14,[[605,1,1,13,14]]],[22,2,2,14,16,[[695,1,1,14,15],[710,1,1,15,16]]],[23,1,1,16,17,[[767,1,1,16,17]]],[25,1,1,17,18,[[820,1,1,17,18]]]],[21,27,200,206,212,403,714,776,1022,1247,1455,1495,1539,16129,17989,18271,19487,20891]]],["grew",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1447]]],["grow",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17885]]],["increased",[2,2,[[1,1,1,0,1,[[72,1,1,0,1]]],[23,1,1,1,2,[[747,1,1,1,2]]]],[2174,19018]]]]},{"k":"H6510","v":[["*",[26,22,[[0,12,9,0,9,[[31,1,1,0,1],[40,11,8,1,9]]],[3,5,5,9,14,[[135,5,5,9,14]]],[8,5,4,14,18,[[241,5,4,14,18]]],[17,1,1,18,19,[[456,1,1,18,19]]],[22,1,1,19,20,[[689,1,1,19,20]]],[27,1,1,20,21,[[865,1,1,20,21]]],[29,1,1,21,22,[[882,1,1,21,22]]]],[943,1197,1198,1199,1213,1214,1215,1221,1222,4291,4294,4295,4298,4299,7338,7341,7343,7345,13365,17891,22149,22411]]],["cow",[2,2,[[17,1,1,0,1,[[456,1,1,0,1]]],[22,1,1,1,2,[[689,1,1,1,2]]]],[13365,17891]]],["heifer",[6,6,[[3,5,5,0,5,[[135,5,5,0,5]]],[27,1,1,5,6,[[865,1,1,5,6]]]],[4291,4294,4295,4298,4299,22149]]],["kine",[18,14,[[0,12,9,0,9,[[31,1,1,0,1],[40,11,8,1,9]]],[8,5,4,9,13,[[241,5,4,9,13]]],[29,1,1,13,14,[[882,1,1,13,14]]]],[943,1197,1198,1199,1213,1214,1215,1221,1222,7338,7341,7343,7345,22411]]]]},{"k":"H6511","v":[["Parah",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6316]]]]},{"k":"H6512","v":[["+",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17705]]]]},{"k":"H6513","v":[["Phurah",[2,2,[[6,2,2,0,2,[[217,2,2,0,2]]]],[6704,6705]]]]},{"k":"H6514","v":[["*",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12082,12477]]],["Perida",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12477]]],["Peruda",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12082]]]]},{"k":"H6515","v":[["Paruah",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8861]]]]},{"k":"H6516","v":[["Parvaim",[1,1,[[13,1,1,0,1,[[369,1,1,0,1]]]],[11235]]]]},{"k":"H6517","v":[["*",[3,3,[[3,1,1,0,1,[[127,1,1,0,1]]],[6,1,1,1,2,[[216,1,1,1,2]]],[8,1,1,2,3,[[237,1,1,2,3]]]],[4032,6673,7254]]],["pans",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4032]]],["pot",[2,2,[[6,1,1,0,1,[[216,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]]],[6673,7254]]]]},{"k":"H6518","v":[["villages",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22782]]]]},{"k":"H6519","v":[["*",[3,3,[[16,1,1,0,1,[[434,1,1,0,1]]],[25,1,1,1,2,[[839,1,1,1,2]]],[37,1,1,2,3,[[912,1,1,2,3]]]],[12853,21436,22903]]],["unwalled",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12853]]],["villages",[1,1,[[25,1,1,0,1,[[839,1,1,0,1]]]],[21436]]],["walls",[1,1,[[37,1,1,0,1,[[912,1,1,0,1]]]],[22903]]]]},{"k":"H6520","v":[["villages",[2,2,[[6,2,2,0,2,[[215,2,2,0,2]]]],[6630,6634]]]]},{"k":"H6521","v":[["*",[3,3,[[4,1,1,0,1,[[155,1,1,0,1]]],[8,1,1,1,2,[[241,1,1,1,2]]],[16,1,1,2,3,[[434,1,1,2,3]]]],[4980,7349,12853]]],["country",[1,1,[[8,1,1,0,1,[[241,1,1,0,1]]]],[7349]]],["unwalled",[1,1,[[4,1,1,0,1,[[155,1,1,0,1]]]],[4980]]],["villages",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12853]]]]},{"k":"H6522","v":[["*",[23,23,[[0,3,3,0,3,[[12,1,1,0,1],[14,1,1,1,2],[33,1,1,2,3]]],[1,5,5,3,8,[[52,2,2,3,5],[72,1,1,5,6],[82,1,1,6,7],[83,1,1,7,8]]],[4,2,2,8,10,[[159,1,1,8,9],[172,1,1,9,10]]],[5,6,6,10,16,[[189,1,1,10,11],[195,1,1,11,12],[197,1,1,12,13],[198,1,1,13,14],[203,1,1,14,15],[210,1,1,15,16]]],[6,3,3,16,19,[[211,2,2,16,18],[213,1,1,18,19]]],[10,1,1,19,20,[[299,1,1,19,20]]],[13,1,1,20,21,[[374,1,1,20,21]]],[14,1,1,21,22,[[411,1,1,21,22]]],[15,1,1,22,23,[[421,1,1,22,23]]]],[325,380,1010,1587,1596,2167,2475,2507,5112,5444,5903,6038,6110,6138,6290,6487,6513,6514,6573,9071,11353,12238,12519]]],["Perizzite",[5,5,[[0,1,1,0,1,[[12,1,1,0,1]]],[1,2,2,1,3,[[82,1,1,1,2],[83,1,1,2,3]]],[5,2,2,3,5,[[195,1,1,3,4],[197,1,1,4,5]]]],[325,2475,2507,6038,6110]]],["Perizzites",[18,18,[[0,2,2,0,2,[[14,1,1,0,1],[33,1,1,1,2]]],[1,3,3,2,5,[[52,2,2,2,4],[72,1,1,4,5]]],[4,2,2,5,7,[[159,1,1,5,6],[172,1,1,6,7]]],[5,4,4,7,11,[[189,1,1,7,8],[198,1,1,8,9],[203,1,1,9,10],[210,1,1,10,11]]],[6,3,3,11,14,[[211,2,2,11,13],[213,1,1,13,14]]],[10,1,1,14,15,[[299,1,1,14,15]]],[13,1,1,15,16,[[374,1,1,15,16]]],[14,1,1,16,17,[[411,1,1,16,17]]],[15,1,1,17,18,[[421,1,1,17,18]]]],[380,1010,1587,1596,2167,5112,5444,5903,6138,6290,6487,6513,6514,6573,9071,11353,12238,12519]]]]},{"k":"H6523","v":[["*",[20,14,[[26,20,14,0,14,[[851,14,8,0,8],[853,2,2,8,10],[854,2,2,10,12],[856,2,2,12,14]]]],[21791,21792,21793,21798,21799,21800,21801,21803,21852,21860,21878,21897,21940,21952]]],["+",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21940]]],["iron",[19,13,[[26,19,13,0,13,[[851,14,8,0,8],[853,2,2,8,10],[854,2,2,10,12],[856,1,1,12,13]]]],[21791,21792,21793,21798,21799,21800,21801,21803,21852,21860,21878,21897,21952]]]]},{"k":"H6524","v":[["*",[37,33,[[0,1,1,0,1,[[39,1,1,0,1]]],[1,2,2,1,3,[[58,2,2,1,3]]],[2,8,7,3,10,[[102,7,6,3,9],[103,1,1,9,10]]],[3,2,2,10,12,[[133,2,2,10,12]]],[17,1,1,12,13,[[449,1,1,12,13]]],[18,4,4,13,17,[[549,1,1,13,14],[569,3,3,14,17]]],[19,2,2,17,19,[[638,1,1,17,18],[641,1,1,18,19]]],[21,3,2,19,21,[[676,1,1,19,20],[677,2,1,20,21]]],[22,6,5,21,26,[[695,1,1,21,22],[705,1,1,22,23],[713,3,2,23,25],[744,1,1,25,26]]],[25,4,3,26,29,[[808,1,1,26,27],[814,2,1,27,28],[818,1,1,28,29]]],[27,3,3,29,32,[[871,1,1,29,30],[875,2,2,30,32]]],[34,1,1,32,33,[[905,1,1,32,33]]]],[1182,1751,1752,3064,3072,3077,3091,3094,3109,3154,4249,4252,13190,15007,15418,15423,15424,16716,16783,17625,17639,17994,18157,18321,18322,18936,20587,20728,20849,22229,22287,22289,22785]]],["+",[4,2,[[2,2,1,0,1,[[102,2,1,0,1]]],[22,2,1,1,2,[[713,2,1,1,2]]]],[3064,18322]]],["appear",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17639]]],["blossom",[3,3,[[3,1,1,0,1,[[133,1,1,0,1]]],[22,1,1,1,2,[[713,1,1,1,2]]],[34,1,1,2,3,[[905,1,1,2,3]]]],[4249,18321,22785]]],["bud",[2,2,[[17,1,1,0,1,[[449,1,1,0,1]]],[22,1,1,1,2,[[705,1,1,1,2]]]],[13190,18157]]],["budded",[3,3,[[0,1,1,0,1,[[39,1,1,0,1]]],[3,1,1,1,2,[[133,1,1,1,2]]],[25,1,1,2,3,[[808,1,1,2,3]]]],[1182,4252,20587]]],["flourish",[9,9,[[18,3,3,0,3,[[549,1,1,0,1],[569,2,2,1,3]]],[19,2,2,3,5,[[638,1,1,3,4],[641,1,1,4,5]]],[21,1,1,5,6,[[677,1,1,5,6]]],[22,2,2,6,8,[[695,1,1,6,7],[744,1,1,7,8]]],[25,1,1,8,9,[[818,1,1,8,9]]]],[15007,15423,15424,16716,16783,17639,17994,18936,20849]]],["flourished",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17625]]],["fly",[2,1,[[25,2,1,0,1,[[814,2,1,0,1]]]],[20728]]],["forth",[2,2,[[1,2,2,0,2,[[58,2,2,0,2]]]],[1751,1752]]],["grow",[2,2,[[27,2,2,0,2,[[875,2,2,0,2]]]],[22287,22289]]],["groweth",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3091]]],["out",[3,3,[[2,3,3,0,3,[[102,2,2,0,2],[103,1,1,2,3]]]],[3072,3077,3154]]],["spreading",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3109]]],["spring",[1,1,[[18,1,1,0,1,[[569,1,1,0,1]]]],[15418]]],["up",[2,2,[[2,1,1,0,1,[[102,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]]],[3094,22229]]]]},{"k":"H6525","v":[["*",[17,15,[[1,8,6,0,6,[[74,4,3,0,3],[86,4,3,3,6]]],[3,2,2,6,8,[[124,1,1,6,7],[133,1,1,7,8]]],[10,2,2,8,10,[[297,2,2,8,10]]],[13,2,2,10,12,[[370,2,2,10,12]]],[22,2,2,12,14,[[683,1,1,12,13],[696,1,1,13,14]]],[33,1,1,14,15,[[900,1,1,14,15]]]],[2226,2228,2229,2621,2623,2624,3943,4252,8960,8983,11251,11267,17763,18002,22688]]],["blossom",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17763]]],["bud",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18002]]],["buds",[1,1,[[3,1,1,0,1,[[133,1,1,0,1]]]],[4252]]],["flower",[5,3,[[1,4,2,0,2,[[74,2,1,0,1],[86,2,1,1,2]]],[33,1,1,2,3,[[900,1,1,2,3]]]],[2228,2623,22688]]],["flowers",[9,9,[[1,4,4,0,4,[[74,2,2,0,2],[86,2,2,2,4]]],[3,1,1,4,5,[[124,1,1,4,5]]],[10,2,2,5,7,[[297,2,2,5,7]]],[13,2,2,7,9,[[370,2,2,7,9]]]],[2226,2229,2621,2624,3943,8960,8983,11251,11267]]]]},{"k":"H6526","v":[["youth",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13569]]]]},{"k":"H6527","v":[["chant",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22455]]]]},{"k":"H6528","v":[["grape",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3291]]]]},{"k":"H6529","v":[["*",[119,107,[[0,9,8,0,8,[[0,4,3,0,3],[2,3,3,3,6],[3,1,1,6,7],[29,1,1,7,8]]],[1,1,1,8,9,[[59,1,1,8,9]]],[2,8,8,9,17,[[108,3,3,9,12],[112,1,1,12,13],[114,1,1,13,14],[115,2,2,14,16],[116,1,1,16,17]]],[3,3,3,17,20,[[129,3,3,17,20]]],[4,21,12,20,32,[[153,1,1,20,21],[159,2,1,21,22],[178,2,2,22,24],[180,13,7,24,31],[182,3,1,31,32]]],[11,2,2,32,34,[[331,2,2,32,34]]],[15,3,3,34,37,[[421,1,1,34,35],[422,2,2,35,37]]],[18,11,11,37,48,[[478,1,1,37,38],[498,1,1,38,39],[535,1,1,39,40],[549,1,1,40,41],[581,1,1,41,42],[582,1,1,42,43],[584,2,2,43,45],[604,1,1,45,46],[609,1,1,46,47],[625,1,1,47,48]]],[19,10,10,48,58,[[628,1,1,48,49],[635,1,1,49,50],[638,1,1,50,51],[639,1,1,51,52],[640,1,1,52,53],[645,2,2,53,55],[654,1,1,55,56],[658,2,2,56,58]]],[20,1,1,58,59,[[660,1,1,58,59]]],[21,5,5,59,64,[[672,1,1,59,60],[674,2,2,60,62],[678,2,2,62,64]]],[22,9,9,64,73,[[681,1,1,64,65],[682,1,1,65,66],[688,1,1,66,67],[691,1,1,67,68],[692,1,1,68,69],[705,1,1,69,70],[715,2,2,70,72],[743,1,1,72,73]]],[23,11,11,73,84,[[746,1,1,73,74],[750,1,1,74,75],[751,1,1,75,76],[755,1,1,76,77],[756,1,1,77,78],[761,2,2,78,80],[765,1,1,80,81],[773,2,2,81,83],[776,1,1,83,84]]],[24,1,1,84,85,[[798,1,1,84,85]]],[25,11,10,85,95,[[818,3,3,85,88],[820,2,2,88,90],[826,1,1,90,91],[835,1,1,91,92],[837,2,2,92,94],[848,2,1,94,95]]],[27,5,4,95,99,[[870,1,1,95,96],[871,3,2,96,98],[875,1,1,98,99]]],[28,1,1,99,100,[[877,1,1,99,100]]],[29,3,3,100,103,[[880,1,1,100,101],[884,1,1,101,102],[887,1,1,102,103]]],[32,2,2,103,105,[[898,1,1,103,104],[899,1,1,104,105]]],[37,1,1,105,106,[[918,1,1,105,106]]],[38,1,1,106,107,[[927,1,1,106,107]]]],[10,11,28,57,58,61,82,832,1792,3304,3305,3306,3442,3488,3528,3544,3600,4095,4101,4102,4917,5124,5568,5576,5615,5622,5629,5644,5653,5662,5664,5717,10090,10091,12547,12584,12586,13942,14201,14790,15016,15584,15641,15733,15736,16124,16162,16380,16431,16621,16718,16733,16749,16921,16922,17187,17300,17315,17338,17557,17595,17598,17651,17652,17717,17735,17862,17924,17957,18160,18382,18383,18918,18972,19108,19139,19242,19251,19365,19367,19454,19640,19663,19750,20352,20833,20834,20848,20893,20895,21087,21340,21367,21389,21691,22224,22226,22238,22290,22333,22388,22462,22509,22655,22677,22988,23131]]],["+",[17,17,[[0,4,4,0,4,[[2,3,3,0,3],[3,1,1,3,4]]],[2,1,1,4,5,[[116,1,1,4,5]]],[3,1,1,5,6,[[129,1,1,5,6]]],[4,2,2,6,8,[[153,1,1,6,7],[178,1,1,7,8]]],[18,2,2,8,10,[[581,1,1,8,9],[609,1,1,9,10]]],[19,6,6,10,16,[[628,1,1,10,11],[639,1,1,11,12],[640,1,1,12,13],[645,1,1,13,14],[658,2,2,14,16]]],[32,1,1,16,17,[[899,1,1,16,17]]]],[57,58,61,82,3600,4095,4917,5576,15584,16162,16431,16733,16749,16921,17300,17315,22677]]],["boughs",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3442]]],["fruit",[91,79,[[0,5,4,0,4,[[0,4,3,0,3],[29,1,1,3,4]]],[1,1,1,4,5,[[59,1,1,4,5]]],[2,5,5,5,10,[[108,3,3,5,8],[114,1,1,8,9],[115,1,1,9,10]]],[3,2,2,10,12,[[129,2,2,10,12]]],[4,19,10,12,22,[[159,2,1,12,13],[178,1,1,13,14],[180,13,7,14,21],[182,3,1,21,22]]],[11,1,1,22,23,[[331,1,1,22,23]]],[15,3,3,23,26,[[421,1,1,23,24],[422,2,2,24,26]]],[18,5,5,26,31,[[478,1,1,26,27],[498,1,1,27,28],[549,1,1,28,29],[582,1,1,29,30],[604,1,1,30,31]]],[19,4,4,31,35,[[635,1,1,31,32],[638,1,1,32,33],[645,1,1,33,34],[654,1,1,34,35]]],[21,3,3,35,38,[[672,1,1,35,36],[678,2,2,36,38]]],[22,9,9,38,47,[[681,1,1,38,39],[682,1,1,39,40],[688,1,1,40,41],[691,1,1,41,42],[692,1,1,42,43],[705,1,1,43,44],[715,2,2,44,46],[743,1,1,46,47]]],[23,11,11,47,58,[[746,1,1,47,48],[750,1,1,48,49],[751,1,1,49,50],[755,1,1,50,51],[756,1,1,51,52],[761,2,2,52,54],[765,1,1,54,55],[773,2,2,55,57],[776,1,1,57,58]]],[24,1,1,58,59,[[798,1,1,58,59]]],[25,11,10,59,69,[[818,3,3,59,62],[820,2,2,62,64],[826,1,1,64,65],[835,1,1,65,66],[837,2,2,66,68],[848,2,1,68,69]]],[27,5,4,69,73,[[870,1,1,69,70],[871,3,2,70,72],[875,1,1,72,73]]],[28,1,1,73,74,[[877,1,1,73,74]]],[29,3,3,74,77,[[880,1,1,74,75],[884,1,1,75,76],[887,1,1,76,77]]],[32,1,1,77,78,[[898,1,1,77,78]]],[37,1,1,78,79,[[918,1,1,78,79]]]],[10,11,28,832,1792,3304,3305,3306,3488,3528,4101,4102,5124,5568,5615,5622,5629,5644,5653,5662,5664,5717,10091,12547,12584,12586,13942,14201,15016,15641,16124,16621,16718,16922,17187,17557,17651,17652,17717,17735,17862,17924,17957,18160,18382,18383,18918,18972,19108,19139,19242,19251,19365,19367,19454,19640,19663,19750,20352,20833,20834,20848,20893,20895,21087,21340,21367,21389,21691,22224,22226,22238,22290,22333,22388,22462,22509,22655,22988]]],["fruitful",[2,2,[[18,2,2,0,2,[[584,1,1,0,1],[625,1,1,1,2]]]],[15733,16380]]],["fruits",[7,7,[[2,1,1,0,1,[[115,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[18,1,1,2,3,[[584,1,1,2,3]]],[20,1,1,3,4,[[660,1,1,3,4]]],[21,2,2,4,6,[[674,2,2,4,6]]],[38,1,1,6,7,[[927,1,1,6,7]]]],[3544,10090,15736,17338,17595,17598,23131]]],["reward",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14790]]]]},{"k":"H6530","v":[["*",[6,6,[[18,1,1,0,1,[[494,1,1,0,1]]],[22,1,1,1,2,[[713,1,1,1,2]]],[23,1,1,2,3,[[751,1,1,2,3]]],[25,2,2,3,5,[[808,1,1,3,4],[819,1,1,4,5]]],[26,1,1,5,6,[[860,1,1,5,6]]]],[14107,18329,19130,20599,20859,22050]]],["+",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22050]]],["destroyer",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14107]]],["ravenous",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18329]]],["robber",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20859]]],["robbers",[2,2,[[23,1,1,0,1,[[751,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]]],[19130,20599]]]]},{"k":"H6531","v":[["*",[6,6,[[1,2,2,0,2,[[50,2,2,0,2]]],[2,3,3,2,5,[[114,3,3,2,5]]],[25,1,1,5,6,[[835,1,1,5,6]]]],[1545,1546,3512,3515,3522,21317]]],["+",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3522]]],["cruelty",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21317]]],["rigour",[4,4,[[1,2,2,0,2,[[50,2,2,0,2]]],[2,2,2,2,4,[[114,2,2,2,4]]]],[1545,1546,3512,3515]]]]},{"k":"H6532","v":[["*",[25,23,[[1,15,13,0,13,[[75,5,3,0,3],[76,1,1,3,4],[79,1,1,4,5],[84,1,1,5,6],[85,1,1,6,7],[87,1,1,7,8],[88,1,1,8,9],[89,4,4,9,13]]],[2,7,7,13,20,[[93,2,2,13,15],[105,3,3,15,18],[110,1,1,18,19],[113,1,1,19,20]]],[3,2,2,20,22,[[120,1,1,20,21],[134,1,1,21,22]]],[13,1,1,22,23,[[369,1,1,22,23]]]],[2266,2268,2270,2293,2388,2543,2601,2660,2698,2710,2728,2729,2733,2801,2812,3203,3213,3216,3368,3449,3748,4264,11243]]],["+",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2268]]],["vail",[24,23,[[1,14,13,0,13,[[75,4,3,0,3],[76,1,1,3,4],[79,1,1,4,5],[84,1,1,5,6],[85,1,1,6,7],[87,1,1,7,8],[88,1,1,8,9],[89,4,4,9,13]]],[2,7,7,13,20,[[93,2,2,13,15],[105,3,3,15,18],[110,1,1,18,19],[113,1,1,19,20]]],[3,2,2,20,22,[[120,1,1,20,21],[134,1,1,21,22]]],[13,1,1,22,23,[[369,1,1,22,23]]]],[2266,2268,2270,2293,2388,2543,2601,2660,2698,2710,2728,2729,2733,2801,2812,3203,3213,3216,3368,3449,3748,4264,11243]]]]},{"k":"H6533","v":[["*",[3,3,[[2,3,3,0,3,[[99,1,1,0,1],[102,1,1,1,2],[110,1,1,2,3]]]],[2983,3097,3355]]],["rend",[2,2,[[2,2,2,0,2,[[99,1,1,0,1],[110,1,1,1,2]]]],[2983,3355]]],["rent",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3097]]]]},{"k":"H6534","v":[["Parmashta",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12843]]]]},{"k":"H6535","v":[["Parnach",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4841]]]]},{"k":"H6536","v":[["*",[14,12,[[2,7,6,0,6,[[100,7,6,0,6]]],[4,4,3,6,9,[[166,4,3,6,9]]],[18,1,1,9,10,[[546,1,1,9,10]]],[22,1,1,10,11,[[736,1,1,10,11]]],[23,1,1,11,12,[[760,1,1,11,12]]]],[3000,3001,3002,3003,3004,3023,5296,5297,5298,14966,18793,19343]]],["+",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3001,5297]]],["deal",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18793]]],["divide",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3004,5297]]],["divideth",[5,5,[[2,4,4,0,4,[[100,4,4,0,4]]],[4,1,1,4,5,[[166,1,1,4,5]]]],[3001,3002,3003,3023,5298]]],["hoofs",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14966]]],["parteth",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3000,5296]]],["tear",[1,1,[[23,1,1,0,1,[[760,1,1,0,1]]]],[19343]]]]},{"k":"H6537","v":[["*",[3,2,[[26,3,2,0,2,[[854,3,2,0,2]]]],[21899,21902]]],["PERES",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21902]]],["UPHARSIN",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21899]]],["divided",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21902]]]]},{"k":"H6538","v":[["ossifrage",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3010,5302]]]]},{"k":"H6539","v":[["*",[28,24,[[13,4,3,0,3,[[402,4,3,0,3]]],[14,11,9,3,12,[[403,4,3,3,6],[405,1,1,6,7],[406,4,3,7,10],[409,1,1,10,11],[411,1,1,11,12]]],[16,5,5,12,17,[[426,4,4,12,16],[435,1,1,16,17]]],[25,2,2,17,19,[[828,1,1,17,18],[839,1,1,18,19]]],[26,6,5,19,24,[[857,1,1,19,20],[859,4,3,20,23],[860,1,1,23,24]]]],[12013,12015,12016,12017,12018,12024,12104,12113,12115,12117,12174,12246,12705,12716,12720,12721,12868,21131,21430,21981,22016,22028,22035,22038]]],["Persia",[27,23,[[13,4,3,0,3,[[402,4,3,0,3]]],[14,11,9,3,12,[[403,4,3,3,6],[405,1,1,6,7],[406,4,3,7,10],[409,1,1,10,11],[411,1,1,11,12]]],[16,4,4,12,16,[[426,3,3,12,15],[435,1,1,15,16]]],[25,2,2,16,18,[[828,1,1,16,17],[839,1,1,17,18]]],[26,6,5,18,23,[[857,1,1,18,19],[859,4,3,19,22],[860,1,1,22,23]]]],[12013,12015,12016,12017,12018,12024,12104,12113,12115,12117,12174,12246,12705,12716,12720,12868,21131,21430,21981,22016,22028,22035,22038]]],["Persians",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12721]]]]},{"k":"H6540","v":[["*",[6,6,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]],[26,4,4,2,6,[[854,1,1,2,3],[855,3,3,3,6]]]],[12134,12165,21902,21913,21917,21920]]],["Persia",[2,2,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]]],[12134,12165]]],["Persians",[4,4,[[26,4,4,0,4,[[854,1,1,0,1],[855,3,3,1,4]]]],[21902,21913,21917,21920]]]]},{"k":"H6541","v":[["*",[21,16,[[1,1,1,0,1,[[59,1,1,0,1]]],[2,9,6,1,7,[[100,9,6,1,7]]],[4,5,3,7,10,[[166,5,3,7,10]]],[22,1,1,10,11,[[683,1,1,10,11]]],[23,1,1,11,12,[[791,1,1,11,12]]],[25,2,2,12,14,[[827,1,1,12,13],[833,1,1,13,14]]],[32,1,1,14,15,[[896,1,1,14,15]]],[37,1,1,15,16,[[921,1,1,15,16]]]],[1803,3000,3001,3002,3003,3004,3023,5296,5297,5298,17767,20076,21111,21261,22633,23044]]],["+",[3,3,[[2,2,2,0,2,[[100,2,2,0,2]]],[37,1,1,2,3,[[921,1,1,2,3]]]],[3000,3004,23044]]],["claws",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5296]]],["hoof",[12,10,[[1,1,1,0,1,[[59,1,1,0,1]]],[2,7,6,1,7,[[100,7,6,1,7]]],[4,4,3,7,10,[[166,4,3,7,10]]]],[1803,3000,3001,3002,3003,3004,3023,5296,5297,5298]]],["hoofs",[5,5,[[22,1,1,0,1,[[683,1,1,0,1]]],[23,1,1,1,2,[[791,1,1,1,2]]],[25,2,2,2,4,[[827,1,1,2,3],[833,1,1,3,4]]],[32,1,1,4,5,[[896,1,1,4,5]]]],[17767,20076,21111,21261,22633]]]]},{"k":"H6542","v":[["Persian",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12646]]]]},{"k":"H6543","v":[["Persian",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21933]]]]},{"k":"H6544","v":[["*",[16,15,[[1,3,2,0,2,[[54,1,1,0,1],[81,2,1,1,2]]],[2,3,3,2,5,[[99,1,1,2,3],[102,1,1,3,4],[110,1,1,4,5]]],[3,1,1,5,6,[[121,1,1,5,6]]],[6,1,1,6,7,[[215,1,1,6,7]]],[13,1,1,7,8,[[394,1,1,7,8]]],[19,6,6,8,14,[[628,1,1,8,9],[631,1,1,9,10],[635,1,1,10,11],[640,1,1,11,12],[642,1,1,12,13],[656,1,1,13,14]]],[25,1,1,14,15,[[825,1,1,14,15]]]],[1636,2463,2983,3097,3355,3810,6625,11783,16425,16505,16635,16765,16839,17242,21070]]],["+",[5,5,[[1,1,1,0,1,[[54,1,1,0,1]]],[2,1,1,1,2,[[110,1,1,1,2]]],[3,1,1,2,3,[[121,1,1,2,3]]],[6,1,1,3,4,[[215,1,1,3,4]]],[13,1,1,4,5,[[394,1,1,4,5]]]],[1636,3355,3810,6625,11783]]],["Avoid",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16505]]],["Uncover",[1,1,[[2,1,1,0,1,[[99,1,1,0,1]]]],[2983]]],["back",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21070]]],["bare",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3097]]],["naked",[2,1,[[1,2,1,0,1,[[81,2,1,0,1]]]],[2463]]],["nought",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16425]]],["perish",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17242]]],["refuse",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16635]]],["refuseth",[2,2,[[19,2,2,0,2,[[640,1,1,0,1],[642,1,1,1,2]]]],[16765,16839]]]]},{"k":"H6545","v":[["locks",[2,2,[[3,1,1,0,1,[[122,1,1,0,1]]],[25,1,1,1,2,[[845,1,1,1,2]]]],[3828,21619]]]]},{"k":"H6546","v":[["*",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]]],[5800,6625]]],["+",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6625]]],["revenges",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5800]]]]},{"k":"H6547","v":[["*",[268,230,[[0,94,72,0,72,[[11,6,4,0,4],[36,1,1,4,5],[38,1,1,5,6],[39,12,9,6,15],[40,34,25,15,40],[41,2,2,40,42],[43,1,1,42,43],[44,6,5,43,48],[45,3,3,48,51],[46,24,18,51,69],[49,4,3,69,72]]],[1,115,106,72,178,[[50,3,3,72,75],[51,7,6,75,81],[52,2,2,81,83],[53,2,2,83,85],[54,10,10,85,95],[55,7,7,95,102],[56,16,14,102,116],[57,17,14,116,130],[58,12,11,130,141],[59,12,12,141,153],[60,7,6,153,159],[61,2,2,159,161],[62,2,2,161,163],[63,11,10,163,173],[64,2,2,173,175],[67,3,3,175,178]]],[4,7,7,178,185,[[158,2,2,178,180],[159,2,2,180,182],[163,1,1,182,183],[181,1,1,183,184],[186,1,1,184,185]]],[8,2,2,185,187,[[237,1,1,185,186],[241,1,1,186,187]]],[10,13,10,187,197,[[293,2,1,187,188],[297,1,1,188,189],[299,2,2,189,191],[301,8,6,191,197]]],[11,4,3,197,200,[[329,1,1,197,198],[330,1,1,198,199],[335,2,1,199,200]]],[12,1,1,200,201,[[341,1,1,200,201]]],[13,1,1,201,202,[[374,1,1,201,202]]],[15,1,1,202,203,[[421,1,1,202,203]]],[18,2,2,203,205,[[612,1,1,203,204],[613,1,1,204,205]]],[21,1,1,205,206,[[671,1,1,205,206]]],[22,5,4,206,210,[[697,2,1,206,207],[708,2,2,207,209],[714,1,1,209,210]]],[23,9,8,210,218,[[769,1,1,210,211],[781,3,3,211,214],[787,1,1,214,215],[790,3,2,215,217],[791,1,1,217,218]]],[25,13,12,218,230,[[818,1,1,218,219],[830,2,2,219,221],[831,4,4,221,225],[832,2,2,225,227],[833,4,3,227,230]]]],[313,315,316,318,1119,1150,1174,1179,1183,1185,1186,1189,1191,1192,1193,1196,1199,1202,1203,1204,1205,1209,1210,1211,1212,1220,1223,1227,1228,1229,1230,1232,1233,1234,1236,1237,1239,1240,1241,1250,1267,1268,1342,1360,1366,1374,1375,1379,1391,1417,1419,1421,1422,1423,1424,1425,1427,1428,1429,1430,1431,1434,1439,1440,1442,1443,1444,1445,1446,1510,1512,1513,1543,1551,1554,1559,1561,1562,1563,1564,1569,1589,1590,1622,1623,1633,1634,1637,1638,1642,1646,1647,1652,1653,1655,1656,1666,1667,1668,1682,1684,1685,1686,1687,1688,1689,1692,1694,1695,1696,1698,1699,1700,1705,1707,1708,1711,1718,1719,1722,1725,1729,1730,1734,1735,1738,1739,1740,1741,1742,1743,1749,1750,1752,1754,1755,1762,1769,1775,1776,1777,1778,1780,1783,1784,1785,1788,1793,1795,1797,1801,1804,1805,1807,1809,1811,1814,1815,1816,1845,1846,1882,1884,1892,1893,1894,1897,1898,1899,1906,1907,1912,1917,1924,1939,2003,2007,2009,5107,5108,5119,5129,5211,5681,5850,7267,7337,8817,8942,9067,9075,9109,9126,9127,9128,9129,9130,9990,10045,10200,10403,11357,12521,16184,16211,17546,18015,18219,18220,18336,19553,19879,19881,19885,20006,20062,20070,20074,20842,21185,21186,21225,21226,21228,21229,21232,21248,21250,21279,21280]]],["+",[5,5,[[0,3,3,0,3,[[40,2,2,0,2],[44,1,1,2,3]]],[1,2,2,3,5,[[57,2,2,3,5]]]],[1211,1220,1374,1739,1741]]],["Pharaoh",[217,195,[[0,77,64,0,64,[[11,5,4,0,4],[38,1,1,4,5],[39,5,5,5,10],[40,32,25,10,35],[41,2,2,35,37],[43,1,1,37,38],[44,4,4,38,42],[45,3,3,42,45],[46,20,16,45,61],[49,4,3,61,64]]],[1,94,89,64,153,[[50,3,3,64,67],[51,3,2,67,69],[52,2,2,69,71],[53,2,2,71,73],[54,9,9,73,82],[55,7,7,82,89],[56,12,10,89,99],[57,14,13,99,112],[58,12,11,112,123],[59,8,8,123,131],[60,5,5,131,136],[61,2,2,136,138],[62,2,2,138,140],[63,9,9,140,149],[64,1,1,149,150],[67,3,3,150,153]]],[4,6,6,153,159,[[158,1,1,153,154],[159,2,2,154,156],[163,1,1,156,157],[181,1,1,157,158],[186,1,1,158,159]]],[8,1,1,159,160,[[241,1,1,159,160]]],[10,8,8,160,168,[[293,1,1,160,161],[299,1,1,161,162],[301,6,6,162,168]]],[11,4,3,168,171,[[329,1,1,168,169],[330,1,1,169,170],[335,2,1,170,171]]],[12,1,1,171,172,[[341,1,1,171,172]]],[13,1,1,172,173,[[374,1,1,172,173]]],[15,1,1,173,174,[[421,1,1,173,174]]],[18,2,2,174,176,[[612,1,1,174,175],[613,1,1,175,176]]],[22,5,4,176,180,[[697,2,1,176,177],[708,2,2,177,179],[714,1,1,179,180]]],[23,5,4,180,184,[[769,1,1,180,181],[790,3,2,181,183],[791,1,1,183,184]]],[25,12,11,184,195,[[818,1,1,184,185],[830,2,2,185,187],[831,3,3,187,190],[832,2,2,190,192],[833,4,3,192,195]]]],[313,315,316,318,1150,1174,1185,1186,1189,1191,1196,1199,1202,1203,1204,1205,1209,1210,1211,1212,1220,1223,1227,1228,1229,1230,1232,1233,1234,1236,1237,1239,1240,1241,1250,1267,1268,1342,1360,1366,1375,1379,1391,1417,1419,1421,1422,1423,1424,1425,1427,1428,1429,1430,1431,1439,1440,1442,1443,1444,1446,1510,1512,1513,1543,1551,1554,1559,1569,1589,1590,1622,1623,1633,1634,1637,1638,1642,1647,1652,1653,1655,1656,1666,1667,1668,1682,1684,1685,1686,1687,1689,1692,1694,1695,1696,1700,1705,1708,1711,1718,1719,1722,1725,1729,1730,1734,1735,1738,1739,1740,1742,1743,1749,1750,1752,1754,1755,1762,1769,1775,1776,1777,1778,1780,1783,1785,1793,1795,1801,1805,1807,1811,1814,1815,1816,1845,1846,1882,1884,1892,1893,1894,1897,1898,1899,1906,1907,1917,1939,2003,2007,2009,5108,5119,5129,5211,5681,5850,7337,8817,9067,9109,9126,9127,9128,9129,9130,9990,10045,10200,10403,11357,12521,16184,16211,18015,18219,18220,18336,19553,20062,20070,20074,20842,21185,21186,21225,21226,21229,21232,21248,21250,21279,21280]]],["Pharaoh's",[46,43,[[0,14,12,0,12,[[11,1,1,0,1],[36,1,1,1,2],[39,7,5,2,7],[44,1,1,7,8],[46,4,4,8,12]]],[1,19,19,12,31,[[51,4,4,12,16],[54,1,1,16,17],[56,4,4,17,21],[57,1,1,21,22],[59,4,4,22,26],[60,2,2,26,28],[63,2,2,28,30],[64,1,1,30,31]]],[4,1,1,31,32,[[158,1,1,31,32]]],[8,1,1,32,33,[[237,1,1,32,33]]],[10,5,4,33,37,[[293,1,1,33,34],[297,1,1,34,35],[299,1,1,35,36],[301,2,1,36,37]]],[21,1,1,37,38,[[671,1,1,37,38]]],[23,4,4,38,42,[[781,3,3,38,41],[787,1,1,41,42]]],[25,1,1,42,43,[[831,1,1,42,43]]]],[313,1119,1179,1183,1185,1192,1193,1374,1434,1440,1445,1446,1561,1562,1563,1564,1646,1688,1698,1699,1707,1729,1784,1788,1797,1804,1809,1816,1893,1912,1924,5107,7267,8817,8942,9075,9128,17546,19879,19881,19885,20006,21228]]]]},{"k":"H6548","v":[["Pharaohhophra",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20040]]]]},{"k":"H6549","v":[["*",[5,5,[[11,4,4,0,4,[[335,4,4,0,4]]],[23,1,1,4,5,[[790,1,1,4,5]]]],[10194,10198,10199,10200,20047]]],["Pharaohnecho",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20047]]],["Pharaohnechoh",[4,4,[[11,4,4,0,4,[[335,4,4,0,4]]]],[10194,10198,10199,10200]]]]},{"k":"H6550","v":[["flea",[2,2,[[8,2,2,0,2,[[259,1,1,0,1],[261,1,1,1,2]]]],[7853,7925]]]]},{"k":"H6551","v":[["*",[6,6,[[14,3,3,0,3,[[404,1,1,0,1],[410,1,1,1,2],[412,1,1,2,3]]],[15,3,3,3,6,[[415,1,1,3,4],[419,1,1,4,5],[422,1,1,5,6]]]],[12030,12204,12277,12352,12428,12563]]],["Parosh",[5,5,[[14,2,2,0,2,[[404,1,1,0,1],[412,1,1,1,2]]],[15,3,3,2,5,[[415,1,1,2,3],[419,1,1,3,4],[422,1,1,4,5]]]],[12030,12277,12352,12428,12563]]],["Pharosh",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12204]]]]},{"k":"H6552","v":[["Pirathon",[1,1,[[6,1,1,0,1,[[222,1,1,0,1]]]],[6884]]]]},{"k":"H6553","v":[["Pirathonite",[5,5,[[6,2,2,0,2,[[222,2,2,0,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[12,2,2,3,5,[[348,1,1,3,4],[364,1,1,4,5]]]],[6882,6884,8683,10704,11123]]]]},{"k":"H6554","v":[["Pharpar",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9659]]]]},{"k":"H6555","v":[["*",[49,48,[[0,4,4,0,4,[[27,1,1,0,1],[29,2,2,1,3],[37,1,1,3,4]]],[1,3,3,4,7,[[50,1,1,4,5],[68,2,2,5,7]]],[8,3,3,7,10,[[238,1,1,7,8],[260,1,1,8,9],[263,1,1,9,10]]],[9,4,4,10,14,[[271,1,1,10,11],[272,1,1,11,12],[279,2,2,12,14]]],[11,2,2,14,16,[[317,1,1,14,15],[326,1,1,15,16]]],[12,5,5,16,21,[[341,1,1,16,17],[350,2,2,17,19],[351,1,1,19,20],[352,1,1,20,21]]],[13,7,7,21,28,[[377,1,1,21,22],[386,1,1,22,23],[390,1,1,23,24],[391,1,1,24,25],[392,1,1,25,26],[397,1,1,26,27],[398,1,1,27,28]]],[15,4,4,28,32,[[413,1,1,28,29],[414,1,1,29,30],[416,2,2,30,32]]],[17,3,3,32,35,[[436,1,1,32,33],[451,1,1,33,34],[463,1,1,34,35]]],[18,4,4,35,39,[[537,1,1,35,36],[557,1,1,36,37],[566,1,1,37,38],[583,1,1,38,39]]],[19,2,2,39,41,[[630,1,1,39,40],[652,1,1,40,41]]],[20,2,2,41,43,[[661,1,1,41,42],[668,1,1,42,43]]],[22,2,2,43,45,[[683,1,1,43,44],[732,1,1,44,45]]],[27,2,2,45,47,[[865,2,2,45,47]]],[32,2,1,47,48,[[894,2,1,47,48]]]],[787,860,873,1148,1544,2048,2050,7277,7871,7965,8152,8165,8342,8344,9670,9909,10423,10762,10771,10785,10804,11437,11624,11684,11727,11738,11859,11880,12299,12320,12362,12366,12879,13252,13508,14808,15210,15366,15680,16465,17141,17362,17501,17744,18726,22135,22143,22608]]],["+",[6,6,[[1,1,1,0,1,[[50,1,1,0,1]]],[9,1,1,1,2,[[271,1,1,1,2]]],[12,1,1,2,3,[[351,1,1,2,3]]],[13,3,3,3,6,[[386,1,1,3,4],[390,1,1,4,5],[392,1,1,5,6]]]],[1544,8152,10785,11624,11684,11738]]],["abroad",[3,3,[[0,1,1,0,1,[[27,1,1,0,1]]],[12,1,1,1,2,[[350,1,1,1,2]]],[13,1,1,2,3,[[397,1,1,2,3]]]],[787,10762,11859]]],["away",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7871]]],["breach",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10804]]],["breaches",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12366]]],["breaker",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22608]]],["breaketh",[2,2,[[17,1,1,0,1,[[451,1,1,0,1]]],[20,1,1,1,2,[[668,1,1,1,2]]]],[13252,17501]]],["broken",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11880]]],["compelled",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7965]]],["dispersed",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11437]]],["down",[10,10,[[11,1,1,0,1,[[326,1,1,0,1]]],[13,1,1,1,2,[[391,1,1,1,2]]],[15,3,3,2,5,[[413,1,1,2,3],[414,1,1,3,4],[416,1,1,4,5]]],[18,2,2,5,7,[[557,1,1,5,6],[566,1,1,6,7]]],[19,1,1,7,8,[[652,1,1,7,8]]],[20,1,1,8,9,[[661,1,1,8,9]]],[22,1,1,9,10,[[683,1,1,9,10]]]],[9909,11727,12299,12320,12362,15210,15366,17141,17362,17744]]],["forth",[4,4,[[0,1,1,0,1,[[37,1,1,0,1]]],[1,2,2,1,3,[[68,2,2,1,3]]],[22,1,1,3,4,[[732,1,1,3,4]]]],[1148,2048,2050,18726]]],["in",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15680]]],["increase",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22143]]],["increased",[4,4,[[0,2,2,0,2,[[29,2,2,0,2]]],[12,1,1,2,3,[[341,1,1,2,3]]],[17,1,1,3,4,[[436,1,1,3,4]]]],[860,873,10423,12879]]],["made",[2,2,[[9,1,1,0,1,[[272,1,1,0,1]]],[12,1,1,1,2,[[350,1,1,1,2]]]],[8165,10771]]],["open",[1,1,[[8,1,1,0,1,[[238,1,1,0,1]]]],[7277]]],["out",[3,3,[[17,1,1,0,1,[[463,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]],[27,1,1,2,3,[[865,1,1,2,3]]]],[13508,16465,22135]]],["pressed",[2,2,[[9,2,2,0,2,[[279,2,2,0,2]]]],[8342,8344]]],["scattered",[1,1,[[18,1,1,0,1,[[537,1,1,0,1]]]],[14808]]],["up",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22608]]],["urged",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9670]]]]},{"k":"H6556","v":[["*",[19,18,[[0,1,1,0,1,[[37,1,1,0,1]]],[6,1,1,1,2,[[231,1,1,1,2]]],[9,2,2,2,4,[[271,1,1,2,3],[272,1,1,3,4]]],[10,1,1,4,5,[[301,1,1,4,5]]],[12,2,2,5,7,[[350,1,1,5,6],[351,1,1,6,7]]],[15,1,1,7,8,[[418,1,1,7,8]]],[17,3,2,8,10,[[451,2,1,8,9],[465,1,1,9,10]]],[18,2,2,10,12,[[583,1,1,10,11],[621,1,1,11,12]]],[22,2,2,12,14,[[708,1,1,12,13],[736,1,1,13,14]]],[25,2,2,14,16,[[814,1,1,14,15],[823,1,1,15,16]]],[29,2,2,16,18,[[882,1,1,16,17],[887,1,1,17,18]]]],[1148,7117,8152,8165,9135,10771,10785,12402,13252,13571,15674,16319,18230,18798,20713,21006,22413,22506]]],["breach",[11,10,[[0,1,1,0,1,[[37,1,1,0,1]]],[6,1,1,1,2,[[231,1,1,1,2]]],[9,2,2,2,4,[[271,1,1,2,3],[272,1,1,3,4]]],[12,1,1,4,5,[[350,1,1,4,5]]],[15,1,1,5,6,[[418,1,1,5,6]]],[17,2,1,6,7,[[451,2,1,6,7]]],[18,1,1,7,8,[[583,1,1,7,8]]],[22,2,2,8,10,[[708,1,1,8,9],[736,1,1,9,10]]]],[1148,7117,8152,8165,10771,12402,13252,15674,18230,18798]]],["breaches",[3,3,[[10,1,1,0,1,[[301,1,1,0,1]]],[29,2,2,1,3,[[882,1,1,1,2],[887,1,1,2,3]]]],[9135,22413,22506]]],["forth",[1,1,[[12,1,1,0,1,[[351,1,1,0,1]]]],[10785]]],["gap",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[21006]]],["gaps",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20713]]],["in",[2,2,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,1,1,1,2,[[621,1,1,1,2]]]],[13571,16319]]]]},{"k":"H6557","v":[["*",[15,13,[[0,3,2,0,2,[[37,1,1,0,1],[45,2,1,1,2]]],[3,2,2,2,4,[[142,2,2,2,4]]],[7,3,2,4,6,[[235,3,2,4,6]]],[12,5,5,6,11,[[339,2,2,6,8],[341,1,1,8,9],[346,1,1,9,10],[364,1,1,10,11]]],[15,2,2,11,13,[[423,2,2,11,13]]]],[1148,1398,4509,4510,7202,7208,10310,10311,10386,10619,11112,12592,12594]]],["Perez",[3,3,[[12,1,1,0,1,[[364,1,1,0,1]]],[15,2,2,1,3,[[423,2,2,1,3]]]],[11112,12592,12594]]],["Pharez",[12,10,[[0,3,2,0,2,[[37,1,1,0,1],[45,2,1,1,2]]],[3,2,2,2,4,[[142,2,2,2,4]]],[7,3,2,4,6,[[235,3,2,4,6]]],[12,4,4,6,10,[[339,2,2,6,8],[341,1,1,8,9],[346,1,1,9,10]]]],[1148,1398,4509,4510,7202,7208,10310,10311,10386,10619]]]]},{"k":"H6558","v":[["Pharzites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4509]]]]},{"k":"H6559","v":[["Perazim",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18185]]]]},{"k":"H6560","v":[["*",[2,2,[[9,1,1,0,1,[[272,1,1,0,1]]],[12,1,1,1,2,[[350,1,1,1,2]]]],[8165,10771]]],["Perezuzza",[1,1,[[12,1,1,0,1,[[350,1,1,0,1]]]],[10771]]],["Perezuzzah",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8165]]]]},{"k":"H6561","v":[["*",[10,10,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,3,3,1,4,[[81,3,3,1,4]]],[10,1,1,4,5,[[309,1,1,4,5]]],[18,2,2,5,7,[[484,1,1,5,6],[613,1,1,6,7]]],[24,1,1,7,8,[[801,1,1,7,8]]],[25,1,1,8,9,[[820,1,1,8,9]]],[37,1,1,9,10,[[921,1,1,9,10]]]],[767,2440,2441,2462,9398,13997,16220,20450,20893,23044]]],["+",[2,2,[[1,1,1,0,1,[[81,1,1,0,1]]],[37,1,1,1,2,[[921,1,1,1,2]]]],[2441,23044]]],["break",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[767]]],["broken",[1,1,[[25,1,1,0,1,[[820,1,1,0,1]]]],[20893]]],["deliver",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20450]]],["off",[2,2,[[1,2,2,0,2,[[81,2,2,0,2]]]],[2440,2462]]],["pieces",[1,1,[[18,1,1,0,1,[[484,1,1,0,1]]]],[13997]]],["redeemed",[1,1,[[18,1,1,0,1,[[613,1,1,0,1]]]],[16220]]],["rent",[1,1,[[10,1,1,0,1,[[309,1,1,0,1]]]],[9398]]]]},{"k":"H6562","v":[["break",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]]]},{"k":"H6563","v":[["*",[2,2,[[30,1,1,0,1,[[888,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[22524,22713]]],["crossway",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22524]]],["robbery",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22713]]]]},{"k":"H6564","v":[["broth",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18901]]]]},{"k":"H6565","v":[["*",[51,47,[[0,1,1,0,1,[[16,1,1,0,1]]],[2,2,2,1,3,[[115,2,2,1,3]]],[3,8,5,3,8,[[131,1,1,3,4],[146,7,4,4,8]]],[4,2,2,8,10,[[183,2,2,8,10]]],[6,1,1,10,11,[[212,1,1,10,11]]],[9,2,2,11,13,[[281,1,1,11,12],[283,1,1,12,13]]],[10,1,1,13,14,[[305,1,1,13,14]]],[13,1,1,14,15,[[382,1,1,14,15]]],[14,2,2,15,17,[[406,1,1,15,16],[411,1,1,16,17]]],[15,1,1,17,18,[[416,1,1,17,18]]],[17,4,4,18,22,[[440,1,1,18,19],[450,1,1,19,20],[451,1,1,20,21],[475,1,1,21,22]]],[18,3,3,22,25,[[551,1,1,22,23],[562,1,1,23,24],[596,1,1,24,25]]],[19,1,1,25,26,[[642,1,1,25,26]]],[20,1,1,26,27,[[670,1,1,26,27]]],[22,7,6,27,33,[[686,1,1,27,28],[692,1,1,28,29],[702,3,2,29,31],[711,1,1,31,32],[722,1,1,32,33]]],[23,5,5,33,38,[[755,1,1,33,34],[758,1,1,34,35],[775,1,1,35,36],[777,2,2,36,38]]],[25,6,6,38,44,[[817,1,1,38,39],[818,4,4,39,43],[845,1,1,43,44]]],[37,3,3,44,47,[[921,3,3,44,47]]]],[411,3539,3568,4184,4656,4660,4661,4663,5744,5748,6546,8423,8463,9268,11512,12115,12251,12374,12963,13207,13250,13872,15061,15275,16024,16829,17528,17817,17955,18100,18114,18287,18558,19236,19314,19723,19795,19796,20821,20840,20841,20843,20844,21606,23038,23039,23042]]],["+",[19,16,[[0,1,1,0,1,[[16,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,4,2,2,4,[[146,4,2,2,4]]],[4,2,2,4,6,[[183,2,2,4,6]]],[9,2,2,6,8,[[281,1,1,6,7],[283,1,1,7,8]]],[10,1,1,8,9,[[305,1,1,8,9]]],[15,1,1,9,10,[[416,1,1,9,10]]],[22,2,1,10,11,[[702,2,1,10,11]]],[23,2,2,11,13,[[755,1,1,11,12],[777,1,1,12,13]]],[25,1,1,13,14,[[845,1,1,13,14]]],[37,2,2,14,16,[[921,2,2,14,16]]]],[411,3539,4660,4663,5744,5748,8423,8463,9268,12374,18114,19236,19795,21606,23038,23042]]],["asunder",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13250]]],["brake",[2,2,[[23,1,1,0,1,[[775,1,1,0,1]]],[25,1,1,1,2,[[818,1,1,1,2]]]],[19723,20841]]],["break",[6,6,[[2,1,1,0,1,[[115,1,1,0,1]]],[6,1,1,1,2,[[212,1,1,1,2]]],[13,1,1,2,3,[[382,1,1,2,3]]],[14,1,1,3,4,[[411,1,1,3,4]]],[23,1,1,4,5,[[758,1,1,4,5]]],[25,1,1,5,6,[[818,1,1,5,6]]]],[3568,6546,11512,12251,19314,20840]]],["breaking",[2,2,[[25,2,2,0,2,[[817,1,1,0,1],[818,1,1,1,2]]]],[20821,20843]]],["broken",[6,6,[[3,1,1,0,1,[[131,1,1,0,1]]],[22,2,2,1,3,[[702,1,1,1,2],[711,1,1,2,3]]],[23,1,1,3,4,[[777,1,1,3,4]]],[25,1,1,4,5,[[818,1,1,4,5]]],[37,1,1,5,6,[[921,1,1,5,6]]]],[4184,18100,18287,19796,20844,23039]]],["cease",[1,1,[[18,1,1,0,1,[[562,1,1,0,1]]]],[15275]]],["disannul",[2,2,[[17,1,1,0,1,[[475,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]]],[13872,17955]]],["disappointed",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16829]]],["disappointeth",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12963]]],["divide",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15061]]],["effect",[1,1,[[3,1,1,0,1,[[146,1,1,0,1]]]],[4656]]],["fail",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17528]]],["frustrate",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12115]]],["frustrateth",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18558]]],["nought",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17817]]],["off",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13207]]],["void",[3,3,[[3,2,2,0,2,[[146,2,2,0,2]]],[18,1,1,2,3,[[596,1,1,2,3]]]],[4660,4661,16024]]]]},{"k":"H6566","v":[["*",[68,67,[[1,5,5,0,5,[[58,2,2,0,2],[74,1,1,2,3],[86,1,1,3,4],[89,1,1,4,5]]],[3,6,6,5,11,[[120,6,6,5,11]]],[4,2,2,11,13,[[174,1,1,11,12],[184,1,1,12,13]]],[6,1,1,13,14,[[218,1,1,13,14]]],[7,1,1,14,15,[[234,1,1,14,15]]],[9,1,1,15,16,[[283,1,1,15,16]]],[10,5,5,16,21,[[296,1,1,16,17],[298,4,4,17,21]]],[11,2,2,21,23,[[320,1,1,21,22],[331,1,1,22,23]]],[12,1,1,23,24,[[365,1,1,23,24]]],[13,5,5,24,29,[[369,1,1,24,25],[371,1,1,25,26],[372,3,3,26,29]]],[14,1,1,29,30,[[411,1,1,29,30]]],[17,3,3,30,33,[[446,1,1,30,31],[471,1,1,31,32],[474,1,1,32,33]]],[18,5,5,33,38,[[521,1,1,33,34],[545,1,1,34,35],[582,1,1,35,36],[617,1,1,36,37],[620,1,1,37,38]]],[19,3,3,38,41,[[640,1,1,38,39],[656,1,1,39,40],[658,1,1,40,41]]],[22,7,6,41,47,[[679,1,1,41,42],[697,1,1,42,43],[703,2,1,43,44],[711,1,1,44,45],[715,1,1,45,46],[743,1,1,46,47]]],[23,3,3,47,50,[[748,1,1,47,48],[792,1,1,48,49],[793,1,1,49,50]]],[24,4,4,50,54,[[797,3,3,50,53],[800,1,1,53,54]]],[25,8,8,54,62,[[803,1,1,54,55],[813,1,1,55,56],[817,1,1,56,57],[818,2,2,57,59],[820,1,1,59,60],[833,1,1,60,61],[835,1,1,61,62]]],[27,2,2,62,64,[[866,1,1,62,63],[868,1,1,63,64]]],[28,1,1,64,65,[[877,1,1,64,65]]],[32,1,1,65,66,[[895,1,1,65,66]]],[37,1,1,66,67,[[912,1,1,66,67]]]],[1771,1775,2215,2613,2726,3749,3750,3751,3754,3756,3757,5487,5769,6744,7181,8468,8923,8992,9007,9023,9039,9742,10075,11161,11242,11276,11294,11295,11311,12242,13121,13766,13860,14591,14914,15645,16268,16299,16763,17229,17304,17669,18012,18129,18302,18366,18899,19058,20120,20149,20320,20323,20327,20424,20502,20693,20770,20845,20846,20889,21251,21325,22153,22190,22313,22611,22905]]],["+",[8,8,[[1,2,2,0,2,[[58,1,1,0,1],[89,1,1,1,2]]],[6,1,1,2,3,[[218,1,1,2,3]]],[9,1,1,3,4,[[283,1,1,3,4]]],[10,1,1,4,5,[[296,1,1,4,5]]],[13,1,1,5,6,[[371,1,1,5,6]]],[25,1,1,6,7,[[833,1,1,6,7]]],[37,1,1,7,8,[[912,1,1,7,8]]]],[1771,2726,6744,8468,8923,11276,21251,22905]]],["abroad",[2,2,[[1,1,1,0,1,[[58,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]]],[1775,5769]]],["breaketh",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20424]]],["forth",[13,12,[[1,1,1,0,1,[[74,1,1,0,1]]],[10,3,3,1,4,[[298,3,3,1,4]]],[13,4,4,4,8,[[369,1,1,4,5],[372,3,3,5,8]]],[18,1,1,8,9,[[620,1,1,8,9]]],[22,3,2,9,11,[[679,1,1,9,10],[703,2,1,10,11]]],[24,1,1,11,12,[[797,1,1,11,12]]]],[2215,8992,9007,9023,11242,11294,11295,11311,16299,17669,18129,20327]]],["open",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16763]]],["out",[8,8,[[1,1,1,0,1,[[86,1,1,0,1]]],[12,1,1,1,2,[[365,1,1,1,2]]],[14,1,1,2,3,[[411,1,1,2,3]]],[17,1,1,3,4,[[446,1,1,3,4]]],[18,1,1,4,5,[[521,1,1,4,5]]],[19,1,1,5,6,[[658,1,1,5,6]]],[22,1,1,6,7,[[743,1,1,6,7]]],[24,1,1,7,8,[[797,1,1,7,8]]]],[2613,11161,12242,13121,14591,17304,18899,20320]]],["pieces",[1,1,[[32,1,1,0,1,[[895,1,1,0,1]]]],[22611]]],["scattered",[3,3,[[18,1,1,0,1,[[545,1,1,0,1]]],[25,2,2,1,3,[[818,1,1,1,2],[835,1,1,2,3]]]],[14914,20846,21325]]],["spread",[26,26,[[3,6,6,0,6,[[120,6,6,0,6]]],[4,1,1,6,7,[[174,1,1,6,7]]],[7,1,1,7,8,[[234,1,1,7,8]]],[11,2,2,8,10,[[320,1,1,8,9],[331,1,1,9,10]]],[18,2,2,10,12,[[582,1,1,10,11],[617,1,1,11,12]]],[22,3,3,12,15,[[697,1,1,12,13],[711,1,1,13,14],[715,1,1,14,15]]],[23,2,2,15,17,[[792,1,1,15,16],[793,1,1,16,17]]],[24,1,1,17,18,[[797,1,1,17,18]]],[25,5,5,18,23,[[803,1,1,18,19],[813,1,1,19,20],[817,1,1,20,21],[818,1,1,21,22],[820,1,1,22,23]]],[27,2,2,23,25,[[866,1,1,23,24],[868,1,1,24,25]]],[28,1,1,25,26,[[877,1,1,25,26]]]],[3749,3750,3751,3754,3756,3757,5487,7181,9742,10075,15645,16268,18012,18302,18366,20120,20149,20323,20502,20693,20770,20845,20889,22153,22190,22313]]],["spreadeth",[3,3,[[17,1,1,0,1,[[471,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]],[23,1,1,2,3,[[748,1,1,2,3]]]],[13766,17229,19058]]],["stretch",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13860]]],["up",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9039]]]]},{"k":"H6567","v":[["*",[4,4,[[2,1,1,0,1,[[113,1,1,0,1]]],[3,1,1,1,2,[[131,1,1,1,2]]],[15,1,1,2,3,[[420,1,1,2,3]]],[19,1,1,3,4,[[650,1,1,3,4]]]],[3458,4187,12501,17076]]],["declared",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4187]]],["distinctly",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12501]]],["shewed",[1,1,[[2,1,1,0,1,[[113,1,1,0,1]]]],[3458]]],["stingeth",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17076]]]]},{"k":"H6568","v":[["plainly",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12128]]]]},{"k":"H6569","v":[["dung",[7,6,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,3,3,1,4,[[93,1,1,1,2],[97,1,1,2,3],[105,1,1,3,4]]],[3,1,1,4,5,[[135,1,1,4,5]]],[38,2,1,5,6,[[926,2,1,5,6]]]],[2350,2806,2934,3228,4294,23106]]]]},{"k":"H6570","v":[["Peresh",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10551]]]]},{"k":"H6571","v":[["*",[57,54,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,7,7,1,8,[[63,6,6,1,7],[64,1,1,7,8]]],[5,1,1,8,9,[[210,1,1,8,9]]],[8,2,2,9,11,[[243,1,1,9,10],[248,1,1,10,11]]],[9,3,3,11,14,[[267,1,1,11,12],[274,1,1,12,13],[276,1,1,13,14]]],[10,7,6,14,20,[[291,1,1,14,15],[294,1,1,15,16],[299,2,2,16,18],[300,2,1,18,19],[310,1,1,19,20]]],[11,4,4,20,24,[[314,1,1,20,21],[325,2,2,21,23],[330,1,1,23,24]]],[12,2,2,24,26,[[355,1,1,24,25],[356,1,1,25,26]]],[13,7,6,26,32,[[367,2,1,26,27],[374,2,2,27,29],[375,1,1,29,30],[378,1,1,30,31],[382,1,1,31,32]]],[14,1,1,32,33,[[410,1,1,32,33]]],[15,1,1,33,34,[[414,1,1,33,34]]],[22,7,7,34,41,[[699,2,2,34,36],[700,2,2,36,38],[706,1,1,38,39],[709,1,1,39,40],[714,1,1,40,41]]],[23,2,2,41,43,[[748,1,1,41,42],[790,1,1,42,43]]],[25,6,6,43,49,[[824,2,2,43,45],[827,2,2,45,47],[828,1,1,47,48],[839,1,1,48,49]]],[26,1,1,49,50,[[860,1,1,49,50]]],[27,1,1,50,51,[[862,1,1,50,51]]],[28,1,1,51,52,[[877,1,1,51,52]]],[33,1,1,52,53,[[902,1,1,52,53]]],[34,2,1,53,54,[[903,2,1,53,54]]]],[1515,1898,1906,1907,1912,1915,1917,1939,6482,7380,7490,8028,8213,8258,8722,8870,9070,9073,9105,9428,9563,9878,9885,10048,10894,10913,11208,11352,11355,11389,11440,11517,12223,12316,18042,18044,18058,18059,18192,18251,18339,19056,20049,21013,21019,21107,21110,21135,21429,22076,22101,22315,22715,22739]]],["+",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8028]]],["horseman",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22715]]],["horsemen",[55,52,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,7,7,1,8,[[63,6,6,1,7],[64,1,1,7,8]]],[5,1,1,8,9,[[210,1,1,8,9]]],[8,2,2,9,11,[[243,1,1,9,10],[248,1,1,10,11]]],[9,2,2,11,13,[[274,1,1,11,12],[276,1,1,12,13]]],[10,7,6,13,19,[[291,1,1,13,14],[294,1,1,14,15],[299,2,2,15,17],[300,2,1,17,18],[310,1,1,18,19]]],[11,4,4,19,23,[[314,1,1,19,20],[325,2,2,20,22],[330,1,1,22,23]]],[12,2,2,23,25,[[355,1,1,23,24],[356,1,1,24,25]]],[13,7,6,25,31,[[367,2,1,25,26],[374,2,2,26,28],[375,1,1,28,29],[378,1,1,29,30],[382,1,1,30,31]]],[14,1,1,31,32,[[410,1,1,31,32]]],[15,1,1,32,33,[[414,1,1,32,33]]],[22,7,7,33,40,[[699,2,2,33,35],[700,2,2,35,37],[706,1,1,37,38],[709,1,1,38,39],[714,1,1,39,40]]],[23,2,2,40,42,[[748,1,1,40,41],[790,1,1,41,42]]],[25,6,6,42,48,[[824,2,2,42,44],[827,2,2,44,46],[828,1,1,46,47],[839,1,1,47,48]]],[26,1,1,48,49,[[860,1,1,48,49]]],[27,1,1,49,50,[[862,1,1,49,50]]],[28,1,1,50,51,[[877,1,1,50,51]]],[34,2,1,51,52,[[903,2,1,51,52]]]],[1515,1898,1906,1907,1912,1915,1917,1939,6482,7380,7490,8213,8258,8722,8870,9070,9073,9105,9428,9563,9878,9885,10048,10894,10913,11208,11352,11355,11389,11440,11517,12223,12316,18042,18044,18058,18059,18192,18251,18339,19056,20049,21013,21019,21107,21110,21135,21429,22076,22101,22315,22739]]]]},{"k":"H6572","v":[["copy",[4,4,[[14,1,1,0,1,[[409,1,1,0,1]]],[16,3,3,1,4,[[428,1,1,1,2],[429,1,1,2,3],[433,1,1,3,4]]]],[12184,12761,12770,12830]]]]},{"k":"H6573","v":[["copy",[3,3,[[14,3,3,0,3,[[406,2,2,0,2],[407,1,1,2,3]]]],[12121,12133,12140]]]]},{"k":"H6574","v":[["dirt",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6590]]]]},{"k":"H6575","v":[["*",[2,2,[[16,2,2,0,2,[[429,1,1,0,1],[435,1,1,1,2]]]],[12769,12868]]],["declaration",[1,1,[[16,1,1,0,1,[[435,1,1,0,1]]]],[12868]]],["sum",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12769]]]]},{"k":"H6576","v":[["spreadeth",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13476]]]]},{"k":"H6577","v":[["Parshandatha",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12841]]]]},{"k":"H6578","v":[["Euphrates",[19,19,[[0,2,2,0,2,[[1,1,1,0,1],[14,1,1,1,2]]],[4,2,2,2,4,[[153,1,1,2,3],[163,1,1,3,4]]],[5,1,1,4,5,[[187,1,1,4,5]]],[9,1,1,5,6,[[274,1,1,5,6]]],[11,2,2,6,8,[[335,1,1,6,7],[336,1,1,7,8]]],[12,2,2,8,10,[[342,1,1,8,9],[355,1,1,9,10]]],[13,1,1,10,11,[[401,1,1,10,11]]],[23,8,8,11,19,[[757,4,4,11,15],[790,3,3,15,18],[795,1,1,18,19]]]],[44,378,4899,5232,5855,8212,10194,10209,10437,10893,11986,19270,19271,19272,19273,20047,20051,20055,20275]]]]},{"k":"H6579","v":[["*",[3,3,[[16,2,2,0,2,[[426,1,1,0,1],[431,1,1,1,2]]],[26,1,1,2,3,[[850,1,1,2,3]]]],[12705,12802,21740]]],["noble",[1,1,[[16,1,1,0,1,[[431,1,1,0,1]]]],[12802]]],["nobles",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12705]]],["princes",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21740]]]]},{"k":"H6580","v":[["extremity",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13735]]]]},{"k":"H6581","v":[["*",[22,18,[[2,22,18,0,18,[[102,19,15,0,15],[103,3,3,15,18]]]],[3057,3058,3059,3060,3074,3075,3079,3080,3084,3086,3087,3088,3103,3105,3107,3150,3155,3159]]],["+",[8,4,[[2,8,4,0,4,[[102,8,4,0,4]]]],[3059,3074,3079,3087]]],["spread",[13,13,[[2,13,13,0,13,[[102,10,10,0,10],[103,3,3,10,13]]]],[3057,3058,3075,3080,3084,3086,3088,3103,3105,3107,3150,3155,3159]]],["spreadeth",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3060]]]]},{"k":"H6582","v":[["pieces",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20365]]]]},{"k":"H6583","v":[["Pashur",[14,12,[[12,1,1,0,1,[[346,1,1,0,1]]],[14,2,2,1,3,[[404,1,1,1,2],[412,1,1,2,3]]],[15,3,3,3,6,[[419,1,1,3,4],[422,1,1,4,5],[423,1,1,5,6]]],[23,8,6,6,12,[[764,5,4,6,10],[765,1,1,10,11],[782,2,1,11,12]]]],[10627,12065,12274,12461,12552,12600,19423,19424,19425,19428,19441,19896]]]]},{"k":"H6584","v":[["*",[43,42,[[0,1,1,0,1,[[36,1,1,0,1]]],[2,3,3,1,4,[[90,1,1,1,2],[95,1,1,2,3],[105,1,1,3,4]]],[3,2,2,4,6,[[136,2,2,4,6]]],[6,4,3,6,9,[[219,3,2,6,8],[230,1,1,8,9]]],[8,9,9,9,18,[[253,1,1,9,10],[254,1,1,10,11],[258,1,1,11,12],[262,2,2,12,14],[265,2,2,14,16],[266,2,2,16,18]]],[9,1,1,18,19,[[289,1,1,18,19]]],[12,4,4,19,23,[[347,2,2,19,21],[351,2,2,21,23]]],[13,4,4,23,27,[[391,1,1,23,24],[394,1,1,24,25],[395,1,1,25,26],[401,1,1,26,27]]],[15,1,1,27,28,[[416,1,1,27,28]]],[17,3,3,28,31,[[436,1,1,28,29],[454,1,1,29,30],[457,1,1,30,31]]],[21,1,1,31,32,[[675,1,1,31,32]]],[22,1,1,32,33,[[710,1,1,32,33]]],[25,4,4,33,37,[[817,1,1,33,34],[824,1,1,34,35],[827,1,1,35,36],[845,1,1,36,37]]],[27,2,2,37,39,[[863,1,1,37,38],[868,1,1,38,39]]],[32,2,2,39,41,[[894,1,1,39,40],[895,1,1,40,41]]],[33,1,1,41,42,[[902,1,1,41,42]]]],[1106,2751,2860,3224,4337,4339,6787,6798,7091,7680,7730,7837,7938,7940,7979,7992,8017,8018,8663,10667,10668,10783,10787,11717,11782,11825,11977,12382,12886,13306,13395,17601,18270,20801,21033,21116,21618,22108,22179,22603,22611,22728]]],["+",[16,16,[[0,1,1,0,1,[[36,1,1,0,1]]],[2,3,3,1,4,[[90,1,1,1,2],[95,1,1,2,3],[105,1,1,3,4]]],[3,2,2,4,6,[[136,2,2,4,6]]],[8,5,5,6,11,[[258,1,1,6,7],[262,1,1,7,8],[265,1,1,8,9],[266,2,2,9,11]]],[12,1,1,11,12,[[347,1,1,11,12]]],[13,1,1,12,13,[[395,1,1,12,13]]],[17,1,1,13,14,[[454,1,1,13,14]]],[21,1,1,14,15,[[675,1,1,14,15]]],[25,1,1,15,16,[[845,1,1,15,16]]]],[1106,2751,2860,3224,4337,4339,7837,7938,7979,8017,8018,10667,11825,13306,17601,21618]]],["abroad",[1,1,[[12,1,1,0,1,[[351,1,1,0,1]]]],[10787]]],["fell",[1,1,[[17,1,1,0,1,[[436,1,1,0,1]]]],[12886]]],["flay",[1,1,[[32,1,1,0,1,[[895,1,1,0,1]]]],[22611]]],["flayed",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11977]]],["forward",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6798]]],["himself",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7680]]],["invaded",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11782]]],["invasion",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7992]]],["off",[4,4,[[8,1,1,0,1,[[254,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]],[25,1,1,2,3,[[827,1,1,2,3]]],[32,1,1,3,4,[[894,1,1,3,4]]]],[7730,12382,21116,22603]]],["ran",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6798]]],["road",[1,1,[[8,1,1,0,1,[[262,1,1,0,1]]]],[7940]]],["rushed",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7091]]],["set",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6787]]],["spoil",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8663]]],["spoileth",[2,2,[[27,1,1,0,1,[[868,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[22179,22728]]],["spread",[1,1,[[12,1,1,0,1,[[351,1,1,0,1]]]],[10783]]],["strip",[4,4,[[22,1,1,0,1,[[710,1,1,0,1]]],[25,2,2,1,3,[[817,1,1,1,2],[824,1,1,2,3]]],[27,1,1,3,4,[[863,1,1,3,4]]]],[18270,20801,21033,22108]]],["stripped",[2,2,[[12,1,1,0,1,[[347,1,1,0,1]]],[17,1,1,1,2,[[457,1,1,1,2]]]],[10668,13395]]],["upon",[1,1,[[13,1,1,0,1,[[391,1,1,0,1]]]],[11717]]]]},{"k":"H6585","v":[["go",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18155]]]]},{"k":"H6586","v":[["*",[41,37,[[10,2,2,0,2,[[298,1,1,0,1],[302,1,1,1,2]]],[11,6,5,2,7,[[313,1,1,2,3],[315,2,2,3,5],[320,3,2,5,7]]],[13,4,3,7,10,[[376,1,1,7,8],[387,3,2,8,10]]],[14,1,1,10,11,[[412,1,1,10,11]]],[18,2,2,11,13,[[514,1,1,11,12],[528,1,1,12,13]]],[19,2,2,13,15,[[645,1,1,13,14],[655,1,1,14,15]]],[22,9,8,15,23,[[679,2,2,15,17],[721,1,1,17,18],[724,1,1,18,19],[726,1,1,19,20],[731,2,1,20,21],[737,1,1,21,22],[744,1,1,22,23]]],[23,4,4,23,27,[[746,2,2,23,25],[747,1,1,25,26],[777,1,1,26,27]]],[24,1,1,27,28,[[799,1,1,27,28]]],[25,3,3,28,31,[[803,1,1,28,29],[819,1,1,29,30],[821,1,1,30,31]]],[26,1,1,31,32,[[857,1,1,31,32]]],[27,3,3,32,35,[[868,1,1,32,33],[869,1,1,33,34],[875,1,1,34,35]]],[29,2,1,35,36,[[882,2,1,35,36]]],[35,1,1,36,37,[[908,1,1,36,37]]]],[9035,9170,9534,9581,9583,9747,9749,11414,11632,11634,12265,14488,14704,16920,17217,17656,17682,18532,18594,18622,18723,18813,18946,18973,18994,19015,19783,20396,20495,20880,20933,21984,22191,22195,22291,22414,22831]]],["offended",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16920]]],["rebelled",[6,6,[[10,1,1,0,1,[[302,1,1,0,1]]],[11,3,3,1,4,[[313,1,1,1,2],[315,2,2,2,4]]],[13,1,1,4,5,[[376,1,1,4,5]]],[22,1,1,5,6,[[679,1,1,5,6]]]],[9170,9534,9581,9583,11414,17656]]],["revolt",[1,1,[[13,1,1,0,1,[[387,1,1,0,1]]]],[11634]]],["revolted",[5,4,[[11,3,2,0,2,[[320,3,2,0,2]]],[13,2,2,2,4,[[387,2,2,2,4]]]],[9747,9749,11632,11634]]],["transgress",[3,3,[[19,1,1,0,1,[[655,1,1,0,1]]],[25,1,1,1,2,[[821,1,1,1,2]]],[29,1,1,2,3,[[882,1,1,2,3]]]],[17217,20933,22414]]],["transgressed",[13,13,[[10,1,1,0,1,[[298,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]],[22,2,2,2,4,[[721,1,1,2,3],[744,1,1,3,4]]],[23,4,4,4,8,[[746,2,2,4,6],[747,1,1,6,7],[777,1,1,7,8]]],[24,1,1,8,9,[[799,1,1,8,9]]],[25,2,2,9,11,[[803,1,1,9,10],[819,1,1,10,11]]],[27,1,1,11,12,[[868,1,1,11,12]]],[35,1,1,12,13,[[908,1,1,12,13]]]],[9035,12265,18532,18946,18973,18994,19015,19783,20396,20495,20880,22191,22831]]],["transgressing",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18813]]],["transgression",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22414]]],["transgressor",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18622]]],["transgressors",[8,7,[[18,2,2,0,2,[[514,1,1,0,1],[528,1,1,1,2]]],[22,4,3,2,5,[[679,1,1,2,3],[724,1,1,3,4],[731,2,1,4,5]]],[26,1,1,5,6,[[857,1,1,5,6]]],[27,1,1,6,7,[[875,1,1,6,7]]]],[14488,14704,17682,18594,18723,21984,22291]]],["trespassed",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22195]]]]},{"k":"H6587","v":[["step",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7733]]]]},{"k":"H6588","v":[["*",[93,90,[[0,3,2,0,2,[[30,1,1,0,1],[49,2,1,1,2]]],[1,3,3,2,5,[[71,1,1,2,3],[72,1,1,3,4],[83,1,1,4,5]]],[2,2,2,5,7,[[105,2,2,5,7]]],[3,1,1,7,8,[[130,1,1,7,8]]],[5,1,1,8,9,[[210,1,1,8,9]]],[8,2,2,9,11,[[259,1,1,9,10],[260,1,1,10,11]]],[10,1,1,11,12,[[298,1,1,11,12]]],[17,10,10,12,22,[[442,1,1,12,13],[443,1,1,13,14],[448,1,1,14,15],[449,1,1,15,16],[466,1,1,16,17],[468,1,1,17,18],[469,2,2,18,20],[470,1,1,20,21],[471,1,1,21,22]]],[18,14,14,22,36,[[482,1,1,22,23],[496,1,1,23,24],[502,1,1,24,25],[509,2,2,25,27],[513,1,1,27,28],[516,1,1,28,29],[528,2,2,29,31],[536,1,1,31,32],[542,1,1,32,33],[566,1,1,33,34],[580,1,1,34,35],[584,1,1,35,36]]],[19,12,12,36,48,[[637,2,2,36,38],[639,1,1,38,39],[644,2,2,39,41],[646,1,1,41,42],[655,3,3,42,45],[656,3,3,45,48]]],[22,11,10,48,58,[[702,1,1,48,49],[721,1,1,49,50],[722,1,1,50,51],[728,1,1,51,52],[731,2,2,52,54],[735,1,1,54,55],[736,1,1,55,56],[737,3,2,56,58]]],[23,1,1,58,59,[[749,1,1,58,59]]],[24,3,3,59,62,[[797,3,3,59,62]]],[25,10,10,62,72,[[815,1,1,62,63],[819,4,4,63,67],[822,1,1,67,68],[834,2,2,68,70],[838,1,1,70,71],[840,1,1,71,72]]],[26,3,3,72,75,[[857,2,2,72,74],[858,1,1,74,75]]],[29,10,10,75,85,[[879,5,5,75,80],[880,3,3,80,83],[881,1,1,83,84],[883,1,1,84,85]]],[32,6,5,85,90,[[893,3,2,85,87],[895,1,1,87,88],[898,1,1,88,89],[899,1,1,89,90]]]],[909,1523,2122,2165,2503,3217,3222,4126,6495,7850,7889,9035,13029,13033,13176,13198,13621,13659,13689,13720,13726,13745,13983,14181,14258,14356,14360,14439,14520,14692,14694,14793,14863,15358,15561,15716,16668,16675,16732,16882,16892,16936,17198,17209,17220,17230,17240,17246,18115,18530,18555,18663,18716,18719,18769,18787,18812,18820,19064,20315,20324,20332,20742,20871,20877,20879,20880,20968,21290,21292,21420,21472,21973,21974,22012,22367,22370,22373,22375,22377,22380,22383,22385,22409,22435,22584,22592,22616,22655,22682]]],["+",[5,5,[[2,1,1,0,1,[[105,1,1,0,1]]],[18,2,2,1,3,[[496,1,1,1,2],[509,1,1,2,3]]],[22,2,2,3,5,[[731,2,2,3,5]]]],[3217,14181,14360,18716,18719]]],["rebellion",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13720]]],["sin",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16675]]],["sins",[2,2,[[19,2,2,0,2,[[637,1,1,0,1],[655,1,1,1,2]]]],[16668,17209]]],["transgression",[36,35,[[1,1,1,0,1,[[83,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[8,1,1,2,3,[[259,1,1,2,3]]],[17,6,6,3,9,[[442,1,1,3,4],[443,1,1,4,5],[448,1,1,5,6],[449,1,1,6,7],[468,1,1,7,8],[469,1,1,8,9]]],[18,5,5,9,14,[[509,1,1,9,10],[513,1,1,10,11],[536,1,1,11,12],[566,1,1,12,13],[584,1,1,13,14]]],[19,9,9,14,23,[[639,1,1,14,15],[644,2,2,15,17],[646,1,1,17,18],[655,2,2,18,20],[656,3,3,20,23]]],[22,4,4,23,27,[[702,1,1,23,24],[735,1,1,24,25],[736,1,1,25,26],[737,1,1,26,27]]],[25,1,1,27,28,[[834,1,1,27,28]]],[26,3,3,28,31,[[857,2,2,28,30],[858,1,1,30,31]]],[32,5,4,31,35,[[893,2,1,31,32],[895,1,1,32,33],[898,1,1,33,34],[899,1,1,34,35]]]],[2503,4126,7850,13029,13033,13176,13198,13659,13689,14356,14439,14793,15358,15716,16732,16882,16892,16936,17198,17220,17230,17240,17246,18115,18769,18787,18820,21292,21973,21974,22012,22584,22616,22655,22682]]],["transgressions",[43,42,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,1,1,1,2,[[105,1,1,1,2]]],[5,1,1,2,3,[[210,1,1,2,3]]],[10,1,1,3,4,[[298,1,1,3,4]]],[17,3,3,4,7,[[466,1,1,4,5],[470,1,1,5,6],[471,1,1,6,7]]],[18,7,7,7,14,[[482,1,1,7,8],[502,1,1,8,9],[516,1,1,9,10],[528,2,2,10,12],[542,1,1,12,13],[580,1,1,13,14]]],[22,5,4,14,18,[[721,1,1,14,15],[722,1,1,15,16],[728,1,1,16,17],[737,2,1,17,18]]],[23,1,1,18,19,[[749,1,1,18,19]]],[24,3,3,19,22,[[797,3,3,19,22]]],[25,9,9,22,31,[[815,1,1,22,23],[819,4,4,23,27],[822,1,1,27,28],[834,1,1,28,29],[838,1,1,29,30],[840,1,1,30,31]]],[29,10,10,31,41,[[879,5,5,31,36],[880,3,3,36,39],[881,1,1,39,40],[883,1,1,40,41]]],[32,1,1,41,42,[[893,1,1,41,42]]]],[2165,3222,6495,9035,13621,13726,13745,13983,14258,14520,14692,14694,14863,15561,18530,18555,18663,18812,19064,20315,20324,20332,20742,20871,20877,20879,20880,20968,21290,21420,21472,22367,22370,22373,22375,22377,22380,22383,22385,22409,22435,22592]]],["trespass",[5,4,[[0,3,2,0,2,[[30,1,1,0,1],[49,2,1,1,2]]],[1,1,1,2,3,[[71,1,1,2,3]]],[8,1,1,3,4,[[260,1,1,3,4]]]],[909,1523,2122,7889]]]]},{"k":"H6589","v":[["*",[2,2,[[19,1,1,0,1,[[640,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[16750,20787]]],["+",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20787]]],["wide",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16750]]]]},{"k":"H6590","v":[["make",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21890]]]]},{"k":"H6591","v":[["*",[32,26,[[26,32,26,0,26,[[851,13,12,0,12],[853,8,6,12,18],[854,10,7,18,25],[856,1,1,25,26]]]],[21762,21763,21764,21765,21767,21774,21782,21783,21784,21788,21794,21803,21843,21844,21846,21855,21856,21861,21881,21882,21886,21889,21890,21891,21900,21949]]],["interpretation",[30,26,[[26,30,26,0,26,[[851,13,12,0,12],[853,8,6,12,18],[854,8,7,18,25],[856,1,1,25,26]]]],[21762,21763,21764,21765,21767,21774,21782,21783,21784,21788,21794,21803,21843,21844,21846,21855,21856,21861,21881,21882,21886,21889,21890,21891,21900,21949]]],["interpretations",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21890]]],["interpreting",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21886]]]]},{"k":"H6592","v":[["interpretation",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17459]]]]},{"k":"H6593","v":[["*",[16,15,[[2,4,4,0,4,[[102,4,4,0,4]]],[4,1,1,4,5,[[174,1,1,4,5]]],[5,1,1,5,6,[[188,1,1,5,6]]],[6,1,1,6,7,[[225,1,1,6,7]]],[19,1,1,7,8,[[658,1,1,7,8]]],[22,1,1,8,9,[[697,1,1,8,9]]],[23,1,1,9,10,[[757,1,1,9,10]]],[25,4,3,10,13,[[841,1,1,10,11],[845,3,2,11,13]]],[27,2,2,13,15,[[863,2,2,13,15]]]],[3099,3100,3104,3111,5481,5875,6943,17297,18013,19267,21480,21616,21617,22110,22114]]],["flax",[7,7,[[5,1,1,0,1,[[188,1,1,0,1]]],[6,1,1,1,2,[[225,1,1,1,2]]],[19,1,1,2,3,[[658,1,1,2,3]]],[22,1,1,3,4,[[697,1,1,3,4]]],[25,1,1,4,5,[[841,1,1,4,5]]],[27,2,2,5,7,[[863,2,2,5,7]]]],[5875,6943,17297,18013,21480,22110,22114]]],["linen",[9,8,[[2,4,4,0,4,[[102,4,4,0,4]]],[4,1,1,4,5,[[174,1,1,4,5]]],[23,1,1,5,6,[[757,1,1,5,6]]],[25,3,2,6,8,[[845,3,2,6,8]]]],[3099,3100,3104,3111,5481,19267,21616,21617]]]]},{"k":"H6594","v":[["*",[4,3,[[1,2,1,0,1,[[58,2,1,0,1]]],[22,2,2,1,3,[[720,1,1,1,2],[721,1,1,2,3]]]],[1773,18483,18522]]],["flax",[3,2,[[1,2,1,0,1,[[58,2,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]]],[1773,18483]]],["tow",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18522]]]]},{"k":"H6595","v":[["*",[15,15,[[0,1,1,0,1,[[17,1,1,0,1]]],[2,2,2,1,3,[[91,1,1,1,2],[95,1,1,2,3]]],[6,1,1,3,4,[[229,1,1,3,4]]],[7,1,1,4,5,[[233,1,1,4,5]]],[8,2,2,5,7,[[237,1,1,5,6],[263,1,1,6,7]]],[9,1,1,7,8,[[278,1,1,7,8]]],[10,1,1,8,9,[[307,1,1,8,9]]],[17,1,1,9,10,[[466,1,1,9,10]]],[18,1,1,10,11,[[624,1,1,10,11]]],[19,3,3,11,14,[[644,1,1,11,12],[650,1,1,12,13],[655,1,1,13,14]]],[25,1,1,14,15,[[814,1,1,14,15]]]],[429,2768,2870,7029,7163,7276,7964,8289,9328,13605,16368,16874,17052,17217,20727]]],["+",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8289]]],["morsel",[8,8,[[0,1,1,0,1,[[17,1,1,0,1]]],[6,1,1,1,2,[[229,1,1,1,2]]],[7,1,1,2,3,[[233,1,1,2,3]]],[8,1,1,3,4,[[263,1,1,3,4]]],[10,1,1,4,5,[[307,1,1,4,5]]],[17,1,1,5,6,[[466,1,1,5,6]]],[19,2,2,6,8,[[644,1,1,6,7],[650,1,1,7,8]]]],[429,7029,7163,7964,9328,13605,16874,17052]]],["morsels",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16368]]],["piece",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[19,1,1,1,2,[[655,1,1,1,2]]]],[7276,17217]]],["pieces",[3,3,[[2,2,2,0,2,[[91,1,1,0,1],[95,1,1,1,2]]],[25,1,1,2,3,[[814,1,1,2,3]]]],[2768,2870,20727]]]]},{"k":"H6596","v":[["*",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]]],[8984,17724]]],["hinges",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8984]]],["parts",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17724]]]]},{"k":"H6597","v":[["*",[25,25,[[3,2,2,0,2,[[122,1,1,0,1],[128,1,1,1,2]]],[5,2,2,2,4,[[196,1,1,2,3],[197,1,1,3,4]]],[13,1,1,4,5,[[395,1,1,4,5]]],[17,3,3,5,8,[[440,1,1,5,6],[444,1,1,6,7],[457,1,1,7,8]]],[18,2,2,8,10,[[541,2,2,8,10]]],[19,4,4,10,14,[[630,1,1,10,11],[633,1,1,11,12],[634,1,1,12,13],[651,1,1,13,14]]],[20,1,1,14,15,[[667,1,1,14,15]]],[22,4,4,15,19,[[707,1,1,15,16],[708,1,1,16,17],[725,1,1,17,18],[726,1,1,18,19]]],[23,5,5,19,24,[[748,1,1,19,20],[750,1,1,20,21],[759,1,1,21,22],[762,1,1,22,23],[795,1,1,23,24]]],[38,1,1,24,25,[[927,1,1,24,25]]]],[3832,4063,6073,6114,11827,12954,13074,13399,14854,14857,16480,16555,16597,17101,17487,18198,18230,18610,18617,19047,19115,19323,19406,20220,23121]]],["straightway",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16597]]],["sudden",[2,2,[[17,1,1,0,1,[[457,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]]],[13399,16480]]],["suddenly",[22,22,[[3,2,2,0,2,[[122,1,1,0,1],[128,1,1,1,2]]],[5,2,2,2,4,[[196,1,1,2,3],[197,1,1,3,4]]],[13,1,1,4,5,[[395,1,1,4,5]]],[17,2,2,5,7,[[440,1,1,5,6],[444,1,1,6,7]]],[18,2,2,7,9,[[541,2,2,7,9]]],[19,2,2,9,11,[[633,1,1,9,10],[651,1,1,10,11]]],[20,1,1,11,12,[[667,1,1,11,12]]],[22,4,4,12,16,[[707,1,1,12,13],[708,1,1,13,14],[725,1,1,14,15],[726,1,1,15,16]]],[23,5,5,16,21,[[748,1,1,16,17],[750,1,1,17,18],[759,1,1,18,19],[762,1,1,19,20],[795,1,1,20,21]]],[38,1,1,21,22,[[927,1,1,21,22]]]],[3832,4063,6073,6114,11827,12954,13074,14854,14857,16555,17101,17487,18198,18230,18610,18617,19047,19115,19323,19406,20220,23121]]]]},{"k":"H6598","v":[["*",[6,6,[[26,6,6,0,6,[[850,5,5,0,5],[860,1,1,5,6]]]],[21742,21745,21750,21752,21753,22062]]],["+",[4,4,[[26,4,4,0,4,[[850,4,4,0,4]]]],[21742,21745,21750,21752]]],["meat",[2,2,[[26,2,2,0,2,[[850,1,1,0,1],[860,1,1,1,2]]]],[21753,22062]]]]},{"k":"H6599","v":[["*",[2,2,[[16,1,1,0,1,[[426,1,1,0,1]]],[20,1,1,1,2,[[666,1,1,1,2]]]],[12722,17469]]],["against",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17469]]],["decree",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12722]]]]},{"k":"H6600","v":[["*",[6,6,[[14,4,4,0,4,[[406,1,1,0,1],[407,2,2,1,3],[408,1,1,3,4]]],[26,2,2,4,6,[[852,1,1,4,5],[853,1,1,5,6]]]],[12127,12141,12145,12162,21823,21854]]],["answer",[2,2,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]]],[12127,12145]]],["letter",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12141]]],["matter",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[853,1,1,1,2]]]],[21823,21854]]],["word",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12162]]]]},{"k":"H6601","v":[["*",[28,26,[[0,1,1,0,1,[[8,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[4,1,1,2,3,[[163,1,1,2,3]]],[6,2,2,3,5,[[224,1,1,3,4],[226,1,1,4,5]]],[9,1,1,5,6,[[269,1,1,5,6]]],[10,3,3,6,9,[[312,3,3,6,9]]],[13,3,3,9,12,[[384,3,3,9,12]]],[17,3,3,12,15,[[440,1,1,12,13],[466,2,2,13,15]]],[18,1,1,15,16,[[555,1,1,15,16]]],[19,5,5,16,21,[[628,1,1,16,17],[643,1,1,17,18],[647,1,1,18,19],[651,1,1,19,20],[652,1,1,20,21]]],[23,3,2,21,23,[[764,3,2,21,23]]],[25,2,1,23,24,[[815,2,1,23,24]]],[27,2,2,24,26,[[863,1,1,24,25],[868,1,1,25,26]]]],[232,2129,5224,6924,6954,8106,9500,9501,9502,11561,11562,11563,12953,13597,13615,15149,16410,16869,16973,17107,17128,19429,19432,20740,22119,22189]]],["+",[4,4,[[6,1,1,0,1,[[224,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]],[13,1,1,2,3,[[384,1,1,2,3]]],[25,1,1,3,4,[[815,1,1,3,4]]]],[6924,9500,11561,20740]]],["Entice",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6954]]],["allure",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22119]]],["deceive",[2,2,[[9,1,1,0,1,[[269,1,1,0,1]]],[19,1,1,1,2,[[651,1,1,1,2]]]],[8106,17107]]],["deceived",[5,4,[[4,1,1,0,1,[[163,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]],[23,2,1,2,3,[[764,2,1,2,3]]],[25,1,1,3,4,[[815,1,1,3,4]]]],[5224,13597,19429,20740]]],["enlarge",[1,1,[[0,1,1,0,1,[[8,1,1,0,1]]]],[232]]],["entice",[4,4,[[1,1,1,0,1,[[71,1,1,0,1]]],[13,2,2,1,3,[[384,2,2,1,3]]],[19,1,1,3,4,[[628,1,1,3,4]]]],[2129,11562,11563,16410]]],["enticed",[2,2,[[17,1,1,0,1,[[466,1,1,0,1]]],[23,1,1,1,2,[[764,1,1,1,2]]]],[13615,19432]]],["enticeth",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16869]]],["flatter",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15149]]],["flattereth",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16973]]],["persuade",[2,2,[[10,2,2,0,2,[[312,2,2,0,2]]]],[9501,9502]]],["persuaded",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17128]]],["silly",[2,2,[[17,1,1,0,1,[[440,1,1,0,1]]],[27,1,1,1,2,[[868,1,1,1,2]]]],[12953,22189]]]]},{"k":"H6602","v":[["Pethuel",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22292]]]]},{"k":"H6603","v":[["*",[11,11,[[1,6,6,0,6,[[77,3,3,0,3],[88,3,3,3,6]]],[10,1,1,6,7,[[296,1,1,6,7]]],[13,2,2,7,9,[[368,2,2,7,9]]],[18,1,1,9,10,[[551,1,1,9,10]]],[37,1,1,10,11,[[913,1,1,10,11]]]],[2304,2314,2329,2670,2678,2694,8925,11218,11225,15054,22921]]],["+",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11218]]],["carved",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8925]]],["engravings",[5,5,[[1,5,5,0,5,[[77,3,3,0,3],[88,2,2,3,5]]]],[2304,2314,2329,2678,2694]]],["graven",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2670]]],["graving",[2,2,[[13,1,1,0,1,[[368,1,1,0,1]]],[37,1,1,1,2,[[913,1,1,1,2]]]],[11225,22921]]],["work",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15054]]]]},{"k":"H6604","v":[["*",[2,2,[[3,1,1,0,1,[[138,1,1,0,1]]],[4,1,1,1,2,[[175,1,1,1,2]]]],[4380,5504]]],["+",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5504]]],["Pethor",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4380]]]]},{"k":"H6605","v":[["*",[143,132,[[0,9,9,0,9,[[6,1,1,0,1],[7,1,1,1,2],[23,1,1,2,3],[28,1,1,3,4],[29,1,1,4,5],[40,1,1,5,6],[41,1,1,6,7],[42,1,1,7,8],[43,1,1,8,9]]],[1,6,6,9,15,[[51,1,1,9,10],[70,1,1,10,11],[77,3,3,11,14],[88,1,1,14,15]]],[3,4,4,15,19,[[132,1,1,15,16],[135,1,1,16,17],[138,1,1,17,18],[142,1,1,18,19]]],[4,6,4,19,23,[[167,4,2,19,21],[172,1,1,21,22],[180,1,1,22,23]]],[5,2,2,23,25,[[194,1,1,23,24],[196,1,1,24,25]]],[6,4,3,25,28,[[213,2,1,25,26],[214,1,1,26,27],[229,1,1,27,28]]],[8,1,1,28,29,[[238,1,1,28,29]]],[10,4,4,29,33,[[297,1,1,29,30],[298,2,2,30,32],[310,1,1,32,33]]],[11,5,4,33,37,[[321,2,2,33,35],[325,2,1,35,36],[327,1,1,36,37]]],[13,7,7,37,44,[[368,2,2,37,39],[369,1,1,39,40],[372,2,2,40,42],[373,1,1,42,43],[395,1,1,43,44]]],[15,6,5,44,49,[[413,1,1,44,45],[418,1,1,45,46],[419,1,1,46,47],[420,2,1,47,48],[425,1,1,48,49]]],[17,13,13,49,62,[[438,1,1,49,50],[446,1,1,50,51],[447,2,2,51,53],[464,1,1,53,54],[465,1,1,54,55],[466,1,1,55,56],[467,2,2,56,58],[468,1,1,58,59],[473,1,1,59,60],[474,1,1,60,61],[476,1,1,61,62]]],[18,18,18,62,80,[[482,1,1,62,63],[507,1,1,63,64],[514,1,1,64,65],[515,1,1,65,66],[516,1,1,66,67],[526,1,1,67,68],[528,1,1,68,69],[555,2,2,69,71],[579,1,1,71,72],[581,1,1,72,73],[582,2,2,73,75],[583,1,1,75,76],[586,1,1,76,77],[593,1,1,77,78],[595,1,1,78,79],[622,1,1,79,80]]],[19,4,4,80,84,[[651,1,1,80,81],[658,3,3,81,84]]],[21,3,3,84,87,[[675,3,3,84,87]]],[22,21,18,87,105,[[683,1,1,87,88],[692,1,1,88,89],[698,1,1,89,90],[700,2,1,90,91],[702,1,1,91,92],[704,1,1,92,93],[706,1,1,93,94],[713,1,1,94,95],[719,1,1,95,96],[723,3,2,96,98],[726,1,1,98,99],[728,1,1,99,100],[729,1,1,100,101],[730,1,1,101,102],[731,2,1,102,103],[736,1,1,103,104],[738,1,1,104,105]]],[23,6,6,105,111,[[745,1,1,105,106],[749,1,1,106,107],[757,1,1,107,108],[784,1,1,108,109],[794,2,2,109,111]]],[25,15,13,111,124,[[802,1,1,111,112],[804,2,2,112,114],[822,2,2,114,116],[825,1,1,116,117],[826,1,1,117,118],[834,2,1,118,119],[838,2,2,119,121],[845,1,1,121,122],[847,3,2,122,124]]],[26,1,1,124,125,[[859,1,1,124,125]]],[29,1,1,125,126,[[886,1,1,125,126]]],[33,3,2,126,128,[[901,1,1,126,127],[902,2,1,127,128]]],[37,3,3,128,131,[[913,1,1,128,129],[921,1,1,129,130],[923,1,1,130,131]]],[38,1,1,131,132,[[927,1,1,131,132]]]],[170,189,623,826,852,1251,1279,1311,1335,1560,2110,2302,2304,2329,2670,4226,4304,4403,4499,5327,5330,5438,5623,6019,6086,6593,6618,7051,7291,8970,9014,9037,9419,9759,9766,9888,9941,11218,11225,11236,11302,11322,11339,11794,12302,12406,12423,12498,12690,12905,13113,13142,13146,13551,13568,13620,13647,13648,13652,13824,13839,13902,13982,14330,14464,14503,14521,14652,14706,15115,15136,15541,15599,15626,15647,15668,15757,15864,15888,16336,17086,17292,17293,17310,17600,17603,17604,17766,17945,18031,18074,18113,18132,18188,18325,18469,18562,18569,18622,18667,18687,18698,18718,18792,18832,18960,19074,19285,19945,20191,20192,20465,20504,20529,20966,20972,21083,21092,21302,21409,21410,21601,21656,21667,22031,22486,22705,22725,22921,23029,23060,23130]]],["+",[29,28,[[0,6,6,0,6,[[7,1,1,0,1],[28,1,1,1,2],[29,1,1,2,3],[40,1,1,3,4],[41,1,1,4,5],[42,1,1,5,6]]],[1,1,1,6,7,[[77,1,1,6,7]]],[3,3,3,7,10,[[132,1,1,7,8],[138,1,1,8,9],[142,1,1,9,10]]],[4,2,2,10,12,[[167,2,2,10,12]]],[5,1,1,12,13,[[196,1,1,12,13]]],[6,1,1,13,14,[[214,1,1,13,14]]],[8,1,1,14,15,[[238,1,1,14,15]]],[13,2,2,15,17,[[368,1,1,15,16],[395,1,1,16,17]]],[17,1,1,17,18,[[447,1,1,17,18]]],[18,1,1,18,19,[[622,1,1,18,19]]],[23,1,1,19,20,[[794,1,1,19,20]]],[25,7,7,20,27,[[804,2,2,20,22],[825,1,1,22,23],[826,1,1,23,24],[834,1,1,24,25],[838,2,2,25,27]]],[33,2,1,27,28,[[902,2,1,27,28]]]],[189,826,852,1251,1279,1311,2304,4226,4403,4499,5327,5330,6086,6618,7291,11218,11794,13142,16336,20191,20504,20529,21083,21092,21302,21409,21410,22725]]],["Open",[7,7,[[11,1,1,0,1,[[325,1,1,0,1]]],[18,1,1,1,2,[[595,1,1,1,2]]],[19,2,2,2,4,[[658,2,2,2,4]]],[21,1,1,4,5,[[675,1,1,4,5]]],[22,1,1,5,6,[[704,1,1,5,6]]],[37,1,1,6,7,[[921,1,1,6,7]]]],[9888,15888,17292,17293,17600,18132,23029]]],["drawn",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20972]]],["engrave",[1,1,[[37,1,1,0,1,[[913,1,1,0,1]]]],[22921]]],["forth",[2,2,[[23,1,1,0,1,[[745,1,1,0,1]]],[29,1,1,1,2,[[886,1,1,1,2]]]],[18960,22486]]],["free",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15626]]],["grave",[3,3,[[1,2,2,0,2,[[77,2,2,0,2]]],[13,1,1,2,3,[[368,1,1,2,3]]]],[2302,2329,11225]]],["graved",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[13,1,1,1,2,[[369,1,1,1,2]]]],[8970,11236]]],["graven",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2670]]],["loose",[6,6,[[17,1,1,0,1,[[473,1,1,0,1]]],[18,1,1,1,2,[[579,1,1,1,2]]],[22,3,3,2,5,[[698,1,1,2,3],[723,1,1,3,4],[736,1,1,4,5]]],[23,1,1,5,6,[[784,1,1,5,6]]]],[13824,15541,18031,18562,18792,19945]]],["loosed",[5,5,[[17,2,2,0,2,[[465,1,1,0,1],[474,1,1,1,2]]],[18,1,1,2,3,[[593,1,1,2,3]]],[22,2,2,3,5,[[683,1,1,3,4],[729,1,1,4,5]]]],[13568,13839,15864,17766,18687]]],["looseth",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13146]]],["off",[2,2,[[10,1,1,0,1,[[310,1,1,0,1]]],[18,1,1,1,2,[[507,1,1,1,2]]]],[9419,14330]]],["open",[35,34,[[1,1,1,0,1,[[70,1,1,0,1]]],[3,1,1,1,2,[[135,1,1,1,2]]],[4,2,2,2,4,[[172,1,1,2,3],[180,1,1,3,4]]],[5,1,1,4,5,[[194,1,1,4,5]]],[10,2,2,5,7,[[298,2,2,5,7]]],[11,1,1,7,8,[[321,1,1,7,8]]],[13,3,3,8,11,[[372,2,2,8,10],[373,1,1,10,11]]],[15,2,2,11,13,[[413,1,1,11,12],[418,1,1,12,13]]],[17,3,3,13,16,[[446,1,1,13,14],[467,1,1,14,15],[476,1,1,15,16]]],[18,4,4,16,20,[[482,1,1,16,17],[526,1,1,17,18],[528,1,1,18,19],[555,1,1,19,20]]],[21,1,1,20,21,[[675,1,1,20,21]]],[22,8,7,21,28,[[700,2,1,21,22],[702,1,1,22,23],[706,1,1,23,24],[719,1,1,24,25],[723,2,2,25,27],[738,1,1,27,28]]],[23,3,3,28,31,[[749,1,1,28,29],[757,1,1,29,30],[794,1,1,30,31]]],[25,2,2,31,33,[[822,1,1,31,32],[847,1,1,32,33]]],[38,1,1,33,34,[[927,1,1,33,34]]]],[2110,4304,5438,5623,6019,9014,9037,9759,11302,11322,11339,12302,12406,13113,13648,13902,13982,14652,14706,15115,17603,18074,18113,18188,18469,18562,18569,18832,19074,19285,20192,20966,21667,23130]]],["opened",[34,31,[[0,2,2,0,2,[[6,1,1,0,1],[43,1,1,1,2]]],[1,1,1,2,3,[[51,1,1,2,3]]],[6,3,2,3,5,[[213,2,1,3,4],[229,1,1,4,5]]],[11,3,3,5,8,[[321,1,1,5,6],[325,1,1,6,7],[327,1,1,7,8]]],[15,4,3,8,11,[[419,1,1,8,9],[420,2,1,9,10],[425,1,1,10,11]]],[17,3,3,11,14,[[438,1,1,11,12],[466,1,1,12,13],[468,1,1,13,14]]],[18,5,5,14,19,[[516,1,1,14,15],[555,1,1,15,16],[582,1,1,16,17],[583,1,1,17,18],[586,1,1,18,19]]],[21,1,1,19,20,[[675,1,1,19,20]]],[22,4,4,20,24,[[692,1,1,20,21],[726,1,1,21,22],[728,1,1,22,23],[731,1,1,23,24]]],[25,5,4,24,28,[[802,1,1,24,25],[834,1,1,25,26],[845,1,1,26,27],[847,2,1,27,28]]],[26,1,1,28,29,[[859,1,1,28,29]]],[33,1,1,29,30,[[901,1,1,29,30]]],[37,1,1,30,31,[[923,1,1,30,31]]]],[170,1335,1560,6593,7051,9766,9888,9941,12423,12498,12690,12905,13620,13652,14521,15136,15647,15668,15757,17604,17945,18622,18667,18718,20465,21302,21601,21656,22031,22705,23060]]],["openest",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15599]]],["openeth",[4,4,[[18,1,1,0,1,[[515,1,1,0,1]]],[19,2,2,1,3,[[651,1,1,1,2],[658,1,1,2,3]]],[22,1,1,3,4,[[731,1,1,3,4]]]],[14503,17086,17310,18718]]],["out",[2,2,[[17,1,1,0,1,[[464,1,1,0,1]]],[18,1,1,1,2,[[514,1,1,1,2]]]],[13551,14464]]],["thyself",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18698]]],["ungirded",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[623]]],["unstopped",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18325]]],["vent",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13647]]],["wide",[2,2,[[4,2,2,0,2,[[167,2,2,0,2]]]],[5327,5330]]]]},{"k":"H6606","v":[["*",[2,2,[[26,2,2,0,2,[[855,1,1,0,1],[856,1,1,1,2]]]],[21915,21943]]],["open",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21915]]],["opened",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21943]]]]},{"k":"H6607","v":[["*",[164,154,[[0,10,9,0,9,[[3,1,1,0,1],[5,1,1,1,2],[17,3,3,2,5],[18,3,2,5,7],[37,1,1,7,8],[42,1,1,8,9]]],[1,22,20,9,29,[[61,2,2,9,11],[75,1,1,11,12],[78,4,4,12,16],[82,4,3,16,19],[84,2,1,19,20],[85,1,1,20,21],[87,2,2,21,23],[88,1,1,23,24],[89,5,5,24,29]]],[2,24,24,29,53,[[90,2,2,29,31],[92,1,1,31,32],[93,3,3,32,35],[97,5,5,35,40],[99,1,1,40,41],[101,1,1,41,42],[103,3,3,42,45],[104,2,2,45,47],[105,1,1,47,48],[106,4,4,48,52],[108,1,1,52,53]]],[3,17,17,53,70,[[119,2,2,53,55],[120,2,2,55,57],[122,3,3,57,60],[126,1,1,60,61],[127,1,1,61,62],[128,1,1,62,63],[132,4,4,63,67],[136,1,1,67,68],[141,1,1,68,69],[143,1,1,69,70]]],[4,2,2,70,72,[[174,1,1,70,71],[183,1,1,71,72]]],[5,3,3,72,75,[[194,1,1,72,73],[205,1,1,73,74],[206,1,1,74,75]]],[6,9,9,75,84,[[214,1,1,75,76],[219,4,4,76,80],[228,2,2,80,82],[229,2,2,82,84]]],[8,1,1,84,85,[[237,1,1,84,85]]],[9,3,3,85,88,[[276,1,1,85,86],[277,2,2,86,88]]],[10,9,9,88,97,[[296,3,3,88,91],[297,1,1,91,92],[304,2,2,92,94],[307,1,1,94,95],[309,1,1,95,96],[312,1,1,96,97]]],[11,5,5,97,102,[[316,1,1,97,98],[317,1,1,98,99],[319,1,1,99,100],[322,1,1,100,101],[335,1,1,101,102]]],[12,2,2,102,104,[[346,1,1,102,103],[356,1,1,103,104]]],[13,3,3,104,107,[[370,1,1,104,105],[378,1,1,105,106],[384,1,1,106,107]]],[15,2,2,107,109,[[415,2,2,107,109]]],[16,1,1,109,110,[[430,1,1,109,110]]],[17,2,2,110,112,[[466,2,2,110,112]]],[18,2,2,112,114,[[501,2,2,112,114]]],[19,6,6,114,120,[[628,1,1,114,115],[632,1,1,115,116],[635,2,2,116,118],[636,1,1,118,119],[644,1,1,119,120]]],[21,1,1,120,121,[[677,1,1,120,121]]],[22,2,2,121,123,[[681,1,1,121,122],[691,1,1,122,123]]],[23,5,5,123,128,[[745,1,1,123,124],[763,1,1,124,125],[770,1,1,125,126],[780,1,1,126,127],[787,1,1,127,128]]],[25,30,23,128,151,[[809,5,5,128,133],[811,1,1,133,134],[812,1,1,134,135],[834,1,1,135,136],[841,5,4,136,140],[842,10,5,140,145],[843,5,4,145,149],[847,1,1,149,150],[848,1,1,150,151]]],[27,1,1,151,152,[[863,1,1,151,152]]],[32,2,2,152,154,[[897,1,1,152,153],[899,1,1,153,154]]]],[86,153,425,426,434,463,468,1133,1309,1838,1839,2271,2340,2347,2368,2378,2481,2482,2483,2546,2603,2641,2663,2702,2712,2713,2719,2735,2736,2748,2750,2780,2799,2802,2813,2920,2921,2948,2950,2952,2984,3050,3122,3134,3149,3182,3197,3208,3239,3240,3241,3244,3302,3717,3718,3768,3769,3833,3836,3841,3991,4034,4064,4212,4213,4221,4244,4317,4477,4556,5491,5743,6031,6372,6376,6619,6789,6794,6798,6806,7009,7010,7050,7051,7262,8248,8268,8282,8904,8927,8929,8939,9224,9245,9327,9400,9490,9618,9656,9710,9801,10173,10636,10916,11268,11447,11551,12347,12348,12780,13597,13622,14248,14250,16421,16525,16605,16636,16652,16892,17640,17733,17908,18961,19409,19582,19852,20006,20607,20611,20612,20618,20620,20652,20656,21310,21488,21490,21515,21517,21528,21529,21537,21543,21546,21554,21556,21563,21564,21658,21680,22120,22639,22669]]],["+",[5,5,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[2,2,2,2,4,[[97,1,1,2,3],[99,1,1,3,4]]],[15,1,1,4,5,[[415,1,1,4,5]]]],[426,1838,2950,2984,12348]]],["door",[111,104,[[0,8,7,0,7,[[3,1,1,0,1],[5,1,1,1,2],[17,2,2,2,4],[18,3,2,4,6],[42,1,1,6,7]]],[1,20,19,7,26,[[61,1,1,7,8],[75,1,1,8,9],[78,4,4,9,13],[82,4,3,13,16],[84,1,1,16,17],[85,1,1,17,18],[87,2,2,18,20],[88,1,1,20,21],[89,5,5,21,26]]],[2,22,22,26,48,[[90,2,2,26,28],[92,1,1,28,29],[93,3,3,29,32],[97,4,4,32,36],[101,1,1,36,37],[103,3,3,37,40],[104,2,2,40,42],[105,1,1,42,43],[106,4,4,43,47],[108,1,1,47,48]]],[3,17,17,48,65,[[119,2,2,48,50],[120,2,2,50,52],[122,3,3,52,55],[126,1,1,55,56],[127,1,1,56,57],[128,1,1,57,58],[132,4,4,58,62],[136,1,1,62,63],[141,1,1,63,64],[143,1,1,64,65]]],[4,2,2,65,67,[[174,1,1,65,66],[183,1,1,66,67]]],[5,1,1,67,68,[[205,1,1,67,68]]],[6,4,4,68,72,[[214,1,1,68,69],[219,1,1,69,70],[229,2,2,70,72]]],[8,1,1,72,73,[[237,1,1,72,73]]],[9,1,1,73,74,[[277,1,1,73,74]]],[10,4,4,74,78,[[296,2,2,74,76],[304,2,2,76,78]]],[11,2,2,78,80,[[316,1,1,78,79],[317,1,1,79,80]]],[12,1,1,80,81,[[346,1,1,80,81]]],[15,1,1,81,82,[[415,1,1,81,82]]],[17,2,2,82,84,[[466,2,2,82,84]]],[19,2,2,84,86,[[632,1,1,84,85],[636,1,1,85,86]]],[25,22,17,86,103,[[809,5,5,86,91],[811,1,1,91,92],[812,1,1,92,93],[841,2,1,93,94],[842,9,5,94,99],[843,2,2,99,101],[847,1,1,101,102],[848,1,1,102,103]]],[27,1,1,103,104,[[863,1,1,103,104]]]],[86,153,425,434,463,468,1309,1839,2271,2340,2347,2368,2378,2481,2482,2483,2546,2603,2641,2663,2702,2712,2713,2719,2735,2736,2748,2750,2780,2799,2802,2813,2920,2921,2948,2952,3050,3122,3134,3149,3182,3197,3208,3239,3240,3241,3244,3302,3717,3718,3768,3769,3833,3836,3841,3991,4034,4064,4212,4213,4221,4244,4317,4477,4556,5491,5743,6372,6619,6806,7050,7051,7262,8268,8904,8929,9224,9245,9618,9656,10636,12347,13597,13622,16525,16652,20607,20611,20612,20618,20620,20652,20656,21490,21528,21529,21537,21543,21546,21554,21564,21658,21680,22120]]],["doors",[11,11,[[10,1,1,0,1,[[297,1,1,0,1]]],[18,2,2,1,3,[[501,2,2,1,3]]],[19,2,2,3,5,[[635,2,2,3,5]]],[25,5,5,5,10,[[834,1,1,5,6],[842,1,1,6,7],[843,3,3,7,10]]],[32,1,1,10,11,[[899,1,1,10,11]]]],[8939,14248,14250,16605,16636,21310,21537,21556,21563,21564,22669]]],["entering",[11,11,[[5,2,2,0,2,[[194,1,1,0,1],[206,1,1,1,2]]],[6,5,5,2,7,[[219,3,3,2,5],[228,2,2,5,7]]],[9,2,2,7,9,[[276,1,1,7,8],[277,1,1,8,9]]],[10,1,1,9,10,[[296,1,1,9,10]]],[23,1,1,10,11,[[745,1,1,10,11]]]],[6031,6376,6789,6794,6798,7009,7010,8248,8282,8927,18961]]],["entrance",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[378,1,1,1,2]]]],[9490,11447]]],["entrances",[1,1,[[32,1,1,0,1,[[897,1,1,0,1]]]],[22639]]],["entries",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21515]]],["entry",[7,7,[[13,1,1,0,1,[[370,1,1,0,1]]],[23,4,4,1,5,[[763,1,1,1,2],[770,1,1,2,3],[780,1,1,3,4],[787,1,1,4,5]]],[25,2,2,5,7,[[841,2,2,5,7]]]],[11268,19409,19582,19852,20006,21488,21517]]],["gate",[4,4,[[10,1,1,0,1,[[307,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]],[16,1,1,2,3,[[430,1,1,2,3]]],[19,1,1,3,4,[[644,1,1,3,4]]]],[9327,10916,12780,16892]]],["gates",[3,3,[[21,1,1,0,1,[[677,1,1,0,1]]],[22,2,2,1,3,[[681,1,1,1,2],[691,1,1,2,3]]]],[17640,17733,17908]]],["in",[6,6,[[1,1,1,0,1,[[84,1,1,0,1]]],[10,1,1,1,2,[[309,1,1,1,2]]],[11,3,3,2,5,[[319,1,1,2,3],[322,1,1,3,4],[335,1,1,4,5]]],[13,1,1,5,6,[[384,1,1,5,6]]]],[2546,9400,9710,9801,10173,11551]]],["openings",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16421]]],["place",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1133]]]]},{"k":"H6608","v":[["entrance",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16028]]]]},{"k":"H6609","v":[["swords",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14753]]]]},{"k":"H6610","v":[["*",[2,2,[[25,2,2,0,2,[[817,1,1,0,1],[830,1,1,1,2]]]],[20825,21204]]],["open",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20825]]],["opening",[1,1,[[25,1,1,0,1,[[830,1,1,0,1]]]],[21204]]]]},{"k":"H6611","v":[["Pethahiah",[4,4,[[12,1,1,0,1,[[361,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]],[15,2,2,2,4,[[421,1,1,2,3],[423,1,1,3,4]]]],[11031,12275,12516,12612]]]]},{"k":"H6612","v":[["*",[19,18,[[18,3,3,0,3,[[496,1,1,0,1],[593,1,1,1,2],[596,1,1,2,3]]],[19,15,14,3,17,[[628,4,3,3,6],[634,1,1,6,7],[635,1,1,7,8],[636,3,3,8,11],[641,2,2,11,13],[646,1,1,13,14],[648,1,1,14,15],[649,1,1,15,16],[654,1,1,16,17]]],[25,1,1,17,18,[[846,1,1,17,18]]]],[14175,15854,16028,16404,16422,16432,16582,16607,16642,16644,16654,16787,16790,16950,16995,17018,17181,21650]]],["+",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21650]]],["foolish",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16644]]],["ones",[2,2,[[19,2,2,0,2,[[628,1,1,0,1],[634,1,1,1,2]]]],[16422,16582]]],["simple",[14,14,[[18,3,3,0,3,[[496,1,1,0,1],[593,1,1,1,2],[596,1,1,2,3]]],[19,11,11,3,14,[[628,2,2,3,5],[635,1,1,5,6],[636,2,2,6,8],[641,2,2,8,10],[646,1,1,10,11],[648,1,1,11,12],[649,1,1,12,13],[654,1,1,13,14]]]],[14175,15854,16028,16404,16432,16607,16642,16654,16787,16790,16950,16995,17018,17181]]],["simplicity",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16422]]]]},{"k":"H6613","v":[["breadth",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[852,1,1,1,2]]]],[12154,21808]]]]},{"k":"H6614","v":[["stomacher",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17731]]]]},{"k":"H6615","v":[["simple",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16651]]]]},{"k":"H6616","v":[["*",[11,11,[[0,2,2,0,2,[[37,2,2,0,2]]],[1,5,5,2,7,[[77,2,2,2,4],[88,3,3,4,7]]],[3,2,2,7,9,[[131,1,1,7,8],[135,1,1,8,9]]],[6,1,1,9,10,[[226,1,1,9,10]]],[25,1,1,10,11,[[841,1,1,10,11]]]],[1137,1144,2321,2330,2667,2685,2695,4191,4304,6958,21480]]],["bound",[1,1,[[3,1,1,0,1,[[135,1,1,0,1]]]],[4304]]],["bracelets",[2,2,[[0,2,2,0,2,[[37,2,2,0,2]]]],[1137,1144]]],["lace",[4,4,[[1,4,4,0,4,[[77,2,2,0,2],[88,2,2,2,4]]]],[2321,2330,2685,2695]]],["line",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21480]]],["ribband",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4191]]],["thread",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6958]]],["wires",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2667]]]]},{"k":"H6617","v":[["*",[5,5,[[0,1,1,0,1,[[29,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,1,1,2,3,[[440,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]],[19,1,1,4,5,[[635,1,1,4,5]]]],[838,8629,12964,14144,16610]]],["froward",[3,3,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]],[19,1,1,2,3,[[635,1,1,2,3]]]],[12964,14144,16610]]],["unsavoury",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8629]]],["wrestled",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[838]]]]},{"k":"H6618","v":[["crooked",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5763]]]]},{"k":"H6619","v":[["Pithom",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1543]]]]},{"k":"H6620","v":[["*",[6,6,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,2,2,1,3,[[455,2,2,1,3]]],[18,2,2,3,5,[[535,1,1,3,4],[568,1,1,4,5]]],[22,1,1,5,6,[[689,1,1,5,6]]]],[5791,13340,13342,14783,15408,17892]]],["adder",[2,2,[[18,2,2,0,2,[[535,1,1,0,1],[568,1,1,1,2]]]],[14783,15408]]],["asp",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17892]]],["asps",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,2,2,1,3,[[455,2,2,1,3]]]],[5791,13340,13342]]]]},{"k":"H6621","v":[["*",[7,7,[[3,2,2,0,2,[[122,1,1,0,1],[151,1,1,1,2]]],[19,2,2,2,4,[[633,1,1,2,3],[656,1,1,3,4]]],[22,2,2,4,6,[[707,1,1,4,5],[708,1,1,5,6]]],[34,1,1,6,7,[[904,1,1,6,7]]]],[3832,4867,16555,17225,18198,18230,22755]]],["instant",[2,2,[[22,2,2,0,2,[[707,1,1,0,1],[708,1,1,1,2]]]],[18198,18230]]],["suddenly",[4,4,[[3,1,1,0,1,[[151,1,1,0,1]]],[19,2,2,1,3,[[633,1,1,1,2],[656,1,1,2,3]]],[34,1,1,3,4,[[904,1,1,3,4]]]],[4867,16555,17225,22755]]],["very",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3832]]]]},{"k":"H6622","v":[["*",[9,7,[[0,9,7,0,7,[[39,3,3,0,3],[40,6,4,3,7]]]],[1180,1188,1194,1203,1207,1208,1210]]],["interpret",[4,3,[[0,4,3,0,3,[[40,4,3,0,3]]]],[1203,1207,1210]]],["interpretation",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1188]]],["interpreted",[3,3,[[0,3,3,0,3,[[39,1,1,0,1],[40,2,2,1,3]]]],[1194,1207,1208]]],["interpreter",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1180]]]]},{"k":"H6623","v":[["*",[5,5,[[0,5,5,0,5,[[39,4,4,0,4],[40,1,1,4,5]]]],[1177,1180,1184,1190,1206]]],["interpretation",[4,4,[[0,4,4,0,4,[[39,3,3,0,3],[40,1,1,3,4]]]],[1177,1184,1190,1206]]],["interpretations",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1180]]]]},{"k":"H6624","v":[["*",[5,5,[[22,1,1,0,1,[[689,1,1,0,1]]],[23,2,2,1,3,[[788,2,2,1,3]]],[25,2,2,3,5,[[830,1,1,3,4],[831,1,1,4,5]]]],[17895,20011,20025,21197,21218]]],["+",[2,2,[[22,1,1,0,1,[[689,1,1,0,1]]],[25,1,1,1,2,[[831,1,1,1,2]]]],[17895,21218]]],["Pathros",[3,3,[[23,2,2,0,2,[[788,2,2,0,2]]],[25,1,1,2,3,[[830,1,1,2,3]]]],[20011,20025,21197]]]]},{"k":"H6625","v":[["Pathrusim",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[248,10264]]]]},{"k":"H6626","v":[["part",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2768]]]]},{"k":"H6627","v":[["*",[2,2,[[4,1,1,0,1,[[175,1,1,0,1]]],[25,1,1,1,2,[[805,1,1,1,2]]]],[5513,20541]]],["cometh",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5513]]],["out",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20541]]]]},{"k":"H6628","v":[["trees",[2,2,[[17,2,2,0,2,[[475,2,2,0,2]]]],[13885,13886]]]]},{"k":"H6629","v":[["*",[274,247,[[0,63,52,0,52,[[3,2,2,0,2],[11,1,1,2,3],[12,1,1,3,4],[19,1,1,4,5],[20,2,2,5,7],[23,1,1,7,8],[25,1,1,8,9],[26,1,1,9,10],[28,8,7,10,17],[29,14,9,17,26],[30,11,8,26,34],[31,2,2,34,36],[32,2,1,36,37],[33,1,1,37,38],[36,3,3,38,41],[37,3,3,41,44],[44,1,1,44,45],[45,3,2,45,47],[46,4,4,47,51],[49,1,1,51,52]]],[1,15,14,52,66,[[51,3,3,52,55],[52,2,1,55,56],[58,1,1,56,57],[59,2,2,57,59],[61,3,3,59,62],[69,1,1,62,63],[71,2,2,63,65],[83,1,1,65,66]]],[2,9,9,66,75,[[90,2,2,66,68],[92,1,1,68,69],[94,3,3,69,72],[95,1,1,72,73],[111,1,1,73,74],[116,1,1,74,75]]],[3,12,12,75,87,[[127,1,1,75,76],[131,1,1,76,77],[138,1,1,77,78],[143,1,1,78,79],[147,6,6,79,85],[148,2,2,85,87]]],[4,17,16,87,103,[[159,1,1,87,88],[160,1,1,88,89],[164,3,3,89,92],[166,2,2,92,94],[167,3,2,94,96],[168,1,1,96,97],[170,1,1,97,98],[180,4,4,98,102],[184,1,1,102,103]]],[5,1,1,103,104,[[193,1,1,103,104]]],[8,20,19,104,123,[[243,1,1,104,105],[249,1,1,105,106],[250,4,4,106,110],[251,2,2,110,112],[252,4,4,112,116],[259,1,1,116,117],[260,5,4,117,121],[262,1,1,121,122],[265,1,1,122,123]]],[9,5,5,123,128,[[273,1,1,123,124],[278,2,2,124,126],[283,1,1,126,127],[290,1,1,127,128]]],[10,7,7,128,135,[[291,3,3,128,131],[294,1,1,131,132],[298,2,2,132,134],[312,1,1,134,135]]],[11,1,1,135,136,[[317,1,1,135,136]]],[12,7,7,136,143,[[341,2,2,136,138],[342,1,1,138,139],[349,1,1,139,140],[354,1,1,140,141],[358,1,1,141,142],[364,1,1,142,143]]],[13,13,12,143,155,[[371,1,1,143,144],[373,1,1,144,145],[380,1,1,145,146],[381,1,1,146,147],[383,1,1,147,148],[384,2,2,148,150],[395,1,1,150,151],[396,2,1,151,152],[397,1,1,152,153],[398,1,1,153,154],[401,1,1,154,155]]],[14,1,1,155,156,[[412,1,1,155,156]]],[15,5,5,156,161,[[415,2,2,156,158],[417,1,1,158,159],[422,1,1,159,160],[424,1,1,160,161]]],[17,5,5,161,166,[[436,2,2,161,163],[456,1,1,163,164],[465,1,1,164,165],[477,1,1,165,166]]],[18,16,16,166,182,[[521,2,2,166,168],[526,1,1,168,169],[542,1,1,169,170],[551,1,1,170,171],[554,1,1,171,172],[555,2,2,172,174],[556,1,1,174,175],[557,1,1,175,176],[572,1,1,176,177],[577,1,1,177,178],[584,1,1,178,179],[591,2,2,179,181],[621,1,1,181,182]]],[19,1,1,182,183,[[654,1,1,182,183]]],[20,1,1,183,184,[[660,1,1,183,184]]],[21,1,1,184,185,[[671,1,1,184,185]]],[22,8,8,185,193,[[685,1,1,185,186],[691,1,1,186,187],[700,1,1,187,188],[731,1,1,188,189],[738,1,1,189,190],[739,1,1,190,191],[741,1,1,191,192],[743,1,1,192,193]]],[23,18,18,193,211,[[747,1,1,193,194],[749,1,1,194,195],[756,1,1,195,196],[757,1,1,196,197],[767,3,3,197,200],[769,3,3,200,203],[775,1,1,203,204],[777,2,2,204,206],[793,2,2,206,208],[794,3,3,208,211]]],[25,29,19,211,230,[[825,1,1,211,212],[826,1,1,212,213],[835,20,12,213,225],[837,4,2,225,227],[844,2,2,227,229],[846,1,1,229,230]]],[27,1,1,230,231,[[866,1,1,230,231]]],[28,1,1,231,232,[[876,1,1,231,232]]],[29,2,2,232,234,[[884,1,1,232,233],[885,1,1,233,234]]],[31,1,1,234,235,[[891,1,1,234,235]]],[32,3,3,235,238,[[894,1,1,235,236],[897,1,1,236,237],[899,1,1,237,238]]],[34,1,1,238,239,[[905,1,1,238,239]]],[35,1,1,239,240,[[907,1,1,239,240]]],[37,9,7,240,247,[[919,1,1,240,241],[920,1,1,241,242],[921,6,4,242,246],[923,1,1,246,247]]]],[81,83,314,323,509,540,541,626,706,736,797,798,801,802,803,804,805,861,862,866,868,869,870,871,872,873,877,881,883,885,892,911,914,916,933,935,973,1008,1085,1095,1097,1131,1132,1136,1368,1418,1420,1421,1423,1424,1437,1514,1570,1571,1573,1580,1745,1786,1801,1837,1848,1854,2075,2114,2143,2499,2747,2755,2784,2836,2845,2848,2855,3390,3602,4046,4156,4415,4571,4692,4694,4696,4700,4701,4707,4734,4754,5124,5150,5246,5257,5261,5313,5316,5333,5338,5344,5388,5615,5629,5642,5662,5772,6000,7386,7540,7569,7574,7575,7581,7606,7614,7633,7638,7646,7652,7842,7863,7865,7877,7879,7939,7998,8188,8288,8290,8478,8709,8726,8736,8742,8867,8990,9048,9497,9673,10424,10426,10449,10760,10870,10951,11140,11274,11329,11490,11501,11534,11544,11558,11824,11851,11860,11904,11973,12271,12328,12359,12400,12585,12663,12872,12885,13366,13558,13934,14582,14593,14662,14873,15049,15113,15165,15183,15198,15199,15461,15511,15740,15826,15828,16318,17192,17340,17545,17803,17920,18065,18717,18828,18848,18877,18907,19026,19075,19252,19286,19485,19486,19487,19568,19569,19570,19703,19787,19788,20147,20156,20172,20174,20211,21061,21088,21315,21316,21319,21321,21323,21324,21325,21328,21330,21332,21335,21344,21396,21397,21595,21597,21645,22158,22309,22454,22479,22565,22607,22641,22678,22785,22811,23015,23018,23032,23035,23039,23045,23066]]],["+",[14,14,[[0,5,5,0,5,[[37,1,1,0,1],[45,2,2,1,3],[46,2,2,3,5]]],[3,1,1,5,6,[[148,1,1,5,6]]],[4,2,2,6,8,[[164,1,1,6,7],[167,1,1,7,8]]],[8,1,1,8,9,[[259,1,1,8,9]]],[9,1,1,9,10,[[278,1,1,9,10]]],[18,3,3,10,13,[[555,1,1,10,11],[591,2,2,11,13]]],[29,1,1,13,14,[[884,1,1,13,14]]]],[1131,1418,1420,1423,1437,4734,5261,5333,7842,8290,15183,15826,15828,22454]]],["cattle",[15,11,[[0,14,10,0,10,[[29,6,5,0,5],[30,8,5,5,10]]],[20,1,1,10,11,[[660,1,1,10,11]]]],[869,870,871,872,873,881,883,885,914,916,17340]]],["flock",[80,70,[[0,13,13,0,13,[[3,1,1,0,1],[20,1,1,1,2],[26,1,1,2,3],[28,1,1,3,4],[29,3,3,4,7],[30,2,2,7,9],[32,1,1,9,10],[36,2,2,10,12],[37,1,1,12,13]]],[1,5,4,13,17,[[51,3,3,13,16],[52,2,1,16,17]]],[2,6,6,17,23,[[90,1,1,17,18],[92,1,1,18,19],[94,2,2,19,21],[95,1,1,21,22],[116,1,1,22,23]]],[3,1,1,23,24,[[131,1,1,23,24]]],[4,3,3,24,27,[[164,1,1,24,25],[167,1,1,25,26],[168,1,1,26,27]]],[13,1,1,27,28,[[401,1,1,27,28]]],[14,1,1,28,29,[[412,1,1,28,29]]],[17,2,2,29,31,[[456,1,1,29,30],[465,1,1,30,31]]],[18,3,3,31,34,[[554,1,1,31,32],[557,1,1,32,33],[584,1,1,33,34]]],[21,1,1,34,35,[[671,1,1,34,35]]],[22,1,1,35,36,[[741,1,1,35,36]]],[23,9,9,36,45,[[757,1,1,36,37],[767,2,2,37,39],[769,3,3,39,42],[775,1,1,42,43],[793,1,1,43,44],[794,1,1,44,45]]],[25,22,15,45,60,[[825,1,1,45,46],[835,15,9,46,55],[837,3,2,55,57],[844,2,2,57,59],[846,1,1,59,60]]],[29,1,1,60,61,[[885,1,1,60,61]]],[31,1,1,61,62,[[891,1,1,61,62]]],[32,1,1,62,63,[[899,1,1,62,63]]],[34,1,1,63,64,[[905,1,1,63,64]]],[37,8,6,64,70,[[919,1,1,64,65],[920,1,1,65,66],[921,6,4,66,70]]]],[83,541,736,805,861,862,870,877,911,973,1085,1095,1136,1570,1571,1573,1580,2747,2784,2836,2848,2855,3602,4156,5257,5338,5344,11973,12271,13366,13558,15113,15199,15740,17545,18877,19286,19486,19487,19568,19569,19570,19703,20147,20211,21061,21316,21319,21321,21323,21328,21330,21332,21335,21344,21396,21397,21595,21597,21645,22479,22565,22678,22785,23015,23018,23032,23035,23039,23045]]],["flocks",[53,52,[[0,17,16,0,16,[[12,1,1,0,1],[23,1,1,1,2],[25,1,1,2,3],[29,5,4,3,7],[31,2,2,7,9],[32,1,1,9,10],[36,1,1,10,11],[44,1,1,11,12],[45,1,1,12,13],[46,2,2,13,15],[49,1,1,15,16]]],[1,5,5,16,21,[[59,2,2,16,18],[61,2,2,18,20],[83,1,1,20,21]]],[2,2,2,21,23,[[90,1,1,21,22],[94,1,1,22,23]]],[3,2,2,23,25,[[127,1,1,23,24],[147,1,1,24,25]]],[4,3,3,25,28,[[160,1,1,25,26],[164,1,1,26,27],[166,1,1,27,28]]],[8,1,1,28,29,[[265,1,1,28,29]]],[9,1,1,29,30,[[278,1,1,29,30]]],[12,3,3,30,33,[[341,2,2,30,32],[364,1,1,32,33]]],[13,2,2,33,35,[[383,1,1,33,34],[398,1,1,34,35]]],[15,1,1,35,36,[[422,1,1,35,36]]],[18,1,1,36,37,[[542,1,1,36,37]]],[19,1,1,37,38,[[654,1,1,37,38]]],[22,3,3,38,41,[[738,1,1,38,39],[739,1,1,39,40],[743,1,1,40,41]]],[23,6,6,41,47,[[747,1,1,41,42],[749,1,1,42,43],[777,2,2,43,45],[793,1,1,45,46],[794,1,1,46,47]]],[25,3,3,47,50,[[826,1,1,47,48],[835,1,1,48,49],[837,1,1,49,50]]],[27,1,1,50,51,[[866,1,1,50,51]]],[35,1,1,51,52,[[907,1,1,51,52]]]],[323,626,706,866,868,869,870,933,935,973,1097,1368,1418,1421,1424,1514,1786,1801,1848,1854,2499,2755,2845,4046,4694,5150,5246,5313,7998,8288,10424,10426,11140,11534,11904,12585,14873,17192,18828,18848,18907,19026,19075,19787,19788,20156,20174,21088,21315,21397,22158,22811]]],["lamb",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1837]]],["sheep",[111,108,[[0,14,14,0,14,[[3,1,1,0,1],[11,1,1,1,2],[19,1,1,2,3],[20,1,1,3,4],[28,7,7,4,11],[30,1,1,11,12],[33,1,1,12,13],[37,1,1,13,14]]],[1,4,4,14,18,[[58,1,1,14,15],[69,1,1,15,16],[71,2,2,16,18]]],[2,1,1,18,19,[[111,1,1,18,19]]],[3,8,8,19,27,[[138,1,1,19,20],[143,1,1,20,21],[147,5,5,21,26],[148,1,1,26,27]]],[4,9,9,27,36,[[159,1,1,27,28],[166,1,1,28,29],[167,1,1,29,30],[170,1,1,30,31],[180,4,4,31,35],[184,1,1,35,36]]],[5,1,1,36,37,[[193,1,1,36,37]]],[8,18,17,37,54,[[243,1,1,37,38],[249,1,1,38,39],[250,4,4,39,43],[251,2,2,43,45],[252,4,4,45,49],[260,5,4,49,53],[262,1,1,53,54]]],[9,3,3,54,57,[[273,1,1,54,55],[283,1,1,55,56],[290,1,1,56,57]]],[10,7,7,57,64,[[291,3,3,57,60],[294,1,1,60,61],[298,2,2,61,63],[312,1,1,63,64]]],[11,1,1,64,65,[[317,1,1,64,65]]],[12,4,4,65,69,[[342,1,1,65,66],[349,1,1,66,67],[354,1,1,67,68],[358,1,1,68,69]]],[13,10,9,69,78,[[371,1,1,69,70],[373,1,1,70,71],[380,1,1,71,72],[381,1,1,72,73],[384,2,2,73,75],[395,1,1,75,76],[396,2,1,76,77],[397,1,1,77,78]]],[15,4,4,78,82,[[415,2,2,78,80],[417,1,1,80,81],[424,1,1,81,82]]],[17,3,3,82,85,[[436,2,2,82,84],[477,1,1,84,85]]],[18,9,9,85,94,[[521,2,2,85,87],[526,1,1,87,88],[551,1,1,88,89],[555,1,1,89,90],[556,1,1,90,91],[572,1,1,91,92],[577,1,1,92,93],[621,1,1,93,94]]],[22,4,4,94,98,[[685,1,1,94,95],[691,1,1,95,96],[700,1,1,96,97],[731,1,1,97,98]]],[23,3,3,98,101,[[756,1,1,98,99],[767,1,1,99,100],[794,1,1,100,101]]],[25,4,3,101,104,[[835,4,3,101,104]]],[28,1,1,104,105,[[876,1,1,104,105]]],[32,2,2,105,107,[[894,1,1,105,106],[897,1,1,106,107]]],[37,1,1,107,108,[[923,1,1,107,108]]]],[81,314,509,540,797,798,801,802,803,804,805,892,1008,1132,1745,2075,2114,2143,3390,4415,4571,4692,4696,4700,4701,4707,4754,5124,5316,5338,5388,5615,5629,5642,5662,5772,6000,7386,7540,7569,7574,7575,7581,7606,7614,7633,7638,7646,7652,7863,7865,7877,7879,7939,8188,8478,8709,8726,8736,8742,8867,8990,9048,9497,9673,10449,10760,10870,10951,11274,11329,11490,11501,11544,11558,11824,11851,11860,12328,12359,12400,12663,12872,12885,13934,14582,14593,14662,15049,15165,15198,15461,15511,16318,17803,17920,18065,18717,19252,19485,20172,21319,21324,21325,22309,22607,22641,23066]]]]},{"k":"H6630","v":[["Zaanan",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22590]]]]},{"k":"H6631","v":[["*",[11,11,[[17,4,4,0,4,[[440,1,1,0,1],[456,1,1,1,2],[462,1,1,2,3],[466,1,1,3,4]]],[22,7,7,4,11,[[700,1,1,4,5],[712,1,1,5,6],[720,1,1,6,7],[722,1,1,7,8],[726,1,1,8,9],[739,1,1,9,10],[743,1,1,10,11]]]],[12976,13363,13495,13596,18076,18304,18485,18536,18633,18852,18920]]],["forth",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18304]]],["offspring",[9,9,[[17,4,4,0,4,[[440,1,1,0,1],[456,1,1,1,2],[462,1,1,2,3],[466,1,1,3,4]]],[22,5,5,4,9,[[700,1,1,4,5],[722,1,1,5,6],[726,1,1,6,7],[739,1,1,7,8],[743,1,1,8,9]]]],[12976,13363,13495,13596,18076,18536,18633,18852,18920]]],["out",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18485]]]]},{"k":"H6632","v":[["*",[3,3,[[2,1,1,0,1,[[100,1,1,0,1]]],[3,1,1,1,2,[[123,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]]],[3026,3853,18942]]],["covered",[1,1,[[3,1,1,0,1,[[123,1,1,0,1]]]],[3853]]],["litters",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18942]]],["tortoise",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3026]]]]},{"k":"H6633","v":[["*",[14,12,[[1,2,1,0,1,[[87,2,1,0,1]]],[3,4,4,1,5,[[120,1,1,1,2],[124,1,1,2,3],[147,2,2,3,5]]],[8,1,1,5,6,[[237,1,1,5,6]]],[11,1,1,6,7,[[337,1,1,6,7]]],[22,4,3,7,10,[[707,3,2,7,9],[709,1,1,9,10]]],[23,1,1,10,11,[[796,1,1,10,11]]],[37,1,1,11,12,[[924,1,1,11,12]]]],[2641,3766,3963,4671,4706,7262,10241,18200,18201,18254,20301,23080]]],["+",[3,3,[[3,1,1,0,1,[[124,1,1,0,1]]],[11,1,1,1,2,[[337,1,1,1,2]]],[23,1,1,2,3,[[796,1,1,2,3]]]],[3963,10241,20301]]],["assembled",[2,2,[[1,1,1,0,1,[[87,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]]],[2641,7262]]],["assembling",[1,1,[[1,1,1,0,1,[[87,1,1,0,1]]]],[2641]]],["fight",[4,3,[[22,4,3,0,3,[[707,3,2,0,2],[709,1,1,2,3]]]],[18200,18201,18254]]],["fought",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23080]]],["perform",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3766]]],["warred",[2,2,[[3,2,2,0,2,[[147,2,2,0,2]]]],[4671,4706]]]]},{"k":"H6634","v":[["*",[10,7,[[26,10,7,0,7,[[853,4,4,0,4],[854,5,2,4,6],[856,1,1,6,7]]]],[21854,21862,21869,21872,21893,21895,21952]]],["+",[4,1,[[26,4,1,0,1,[[854,4,1,0,1]]]],[21893]]],["will",[5,5,[[26,5,5,0,5,[[853,4,4,0,4],[854,1,1,4,5]]]],[21854,21862,21869,21872,21895]]],["would",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21952]]]]},{"k":"H6635","v":[["*",[484,461,[[0,4,4,0,4,[[1,1,1,0,1],[20,2,2,1,3],[25,1,1,3,4]]],[1,5,5,4,9,[[55,1,1,4,5],[56,1,1,5,6],[61,3,3,6,9]]],[3,76,70,9,79,[[117,16,15,9,24],[118,20,20,24,44],[120,5,5,44,49],[124,2,2,49,51],[126,17,13,51,64],[142,1,1,64,65],[147,13,12,65,77],[148,1,1,77,78],[149,1,1,78,79]]],[4,4,4,79,83,[[156,1,1,79,80],[169,1,1,80,81],[172,1,1,81,82],[176,1,1,82,83]]],[5,5,5,83,88,[[190,1,1,83,84],[191,2,2,84,86],[208,2,2,86,88]]],[6,4,4,88,92,[[214,2,2,88,90],[218,1,1,90,91],[219,1,1,91,92]]],[8,10,10,92,102,[[236,2,2,92,94],[239,1,1,94,95],[247,1,1,95,96],[249,1,1,96,97],[250,1,1,97,98],[252,2,2,98,100],[261,1,1,100,101],[263,1,1,101,102]]],[9,15,15,102,117,[[268,1,1,102,103],[269,1,1,103,104],[271,1,1,104,105],[272,2,2,105,107],[273,3,3,107,110],[274,1,1,110,111],[276,3,3,111,114],[283,1,1,114,115],[285,1,1,115,116],[286,1,1,116,117]]],[10,14,13,117,130,[[291,2,2,117,119],[292,4,3,119,122],[294,1,1,122,123],[301,2,2,123,125],[306,1,1,125,126],[308,1,1,126,127],[309,2,2,127,129],[312,1,1,129,130]]],[11,9,9,130,139,[[315,1,1,130,131],[316,1,1,131,132],[317,1,1,132,133],[329,1,1,133,134],[333,2,2,134,136],[335,2,2,136,138],[337,1,1,138,139]]],[12,26,26,139,165,[[342,1,1,139,140],[344,3,3,140,143],[348,1,1,143,144],[349,9,9,144,153],[354,2,2,153,155],[355,1,1,155,156],[356,3,3,156,159],[357,1,1,159,160],[362,1,1,160,161],[363,1,1,161,162],[364,3,3,162,165]]],[13,12,12,165,177,[[383,1,1,165,166],[384,1,1,166,167],[391,2,2,167,169],[392,3,3,169,172],[394,2,2,172,174],[399,3,3,174,177]]],[15,2,1,177,178,[[421,2,1,177,178]]],[17,3,3,178,181,[[442,1,1,178,179],[445,1,1,179,180],[449,1,1,180,181]]],[18,23,23,181,204,[[501,1,1,181,182],[510,1,1,182,183],[521,1,1,183,184],[523,2,2,184,186],[525,1,1,186,187],[536,1,1,187,188],[537,1,1,188,189],[545,2,2,189,191],[546,1,1,191,192],[557,4,4,192,196],[561,4,4,196,200],[566,1,1,200,201],[580,1,1,201,202],[585,1,1,202,203],[625,1,1,203,204]]],[22,70,66,204,270,[[679,2,2,204,206],[680,1,1,206,207],[681,2,2,207,209],[683,4,4,209,213],[684,2,2,213,215],[686,2,2,215,217],[687,3,3,217,220],[688,5,5,220,225],[691,3,2,225,227],[692,4,4,227,231],[695,1,1,231,232],[696,2,1,232,233],[697,7,7,233,240],[699,1,1,240,241],[700,6,5,241,246],[701,1,1,246,247],[702,2,2,247,249],[703,1,1,249,250],[706,3,3,250,253],[707,1,1,253,254],[709,2,2,254,256],[712,3,2,256,258],[715,2,2,258,260],[717,1,1,260,261],[718,2,2,261,263],[722,1,1,263,264],[723,2,2,264,266],[725,1,1,266,267],[726,1,1,267,268],[729,1,1,268,269],[732,1,1,269,270]]],[23,88,87,270,357,[[746,1,1,270,271],[747,1,1,271,272],[749,1,1,272,273],[750,2,2,273,275],[751,2,2,275,277],[752,2,2,277,279],[753,3,3,279,282],[754,1,1,282,283],[755,3,3,283,286],[759,1,1,286,287],[760,1,1,287,288],[763,4,4,288,292],[764,1,1,292,293],[767,3,3,293,296],[769,5,5,296,301],[770,1,1,301,302],[771,4,4,302,306],[772,2,2,306,308],[773,5,5,308,313],[774,1,1,313,314],[775,2,2,314,316],[776,3,3,316,319],[777,3,3,319,322],[779,4,4,322,326],[782,1,1,326,327],[783,1,1,327,328],[786,2,2,328,330],[787,1,1,330,331],[788,4,4,331,335],[790,4,3,335,338],[792,2,2,338,340],[793,4,4,340,344],[794,5,5,344,349],[795,7,7,349,356],[796,1,1,356,357]]],[26,6,5,357,362,[[857,5,4,357,361],[859,1,1,361,362]]],[27,1,1,362,363,[[873,1,1,362,363]]],[29,9,9,363,372,[[881,1,1,363,364],[882,1,1,364,365],[883,4,4,365,369],[884,2,2,369,371],[887,1,1,371,372]]],[32,1,1,372,373,[[896,1,1,372,373]]],[33,2,2,373,375,[[901,1,1,373,374],[902,1,1,374,375]]],[34,1,1,375,376,[[904,1,1,375,376]]],[35,3,3,376,379,[[906,1,1,376,377],[907,2,2,377,379]]],[36,14,12,379,391,[[909,5,5,379,384],[910,9,7,384,391]]],[37,53,46,391,437,[[911,9,7,391,398],[912,3,3,398,401],[913,3,3,401,404],[914,2,2,404,406],[915,1,1,406,407],[916,2,2,407,409],[917,6,5,409,414],[918,18,15,414,429],[919,1,1,429,430],[920,1,1,430,431],[922,1,1,431,432],[923,2,2,432,434],[924,4,3,434,437]]],[38,24,24,437,461,[[925,8,8,437,445],[926,6,6,445,451],[927,8,8,451,459],[928,2,2,459,461]]]],[31,535,545,718,1681,1689,1833,1857,1867,3607,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3656,3661,3662,3664,3666,3667,3668,3669,3671,3673,3674,3676,3677,3679,3681,3682,3683,3684,3686,3688,3690,3746,3773,3778,3782,3786,3963,3964,4002,4003,4004,4006,4007,4008,4010,4011,4012,4013,4014,4015,4016,4491,4667,4668,4669,4670,4678,4685,4691,4692,4696,4700,4712,4717,4745,4761,5023,5367,5436,5530,5923,5948,5949,6438,6459,6601,6606,6725,6783,7215,7223,7301,7469,7558,7562,7663,7673,7910,7943,8057,8104,8142,8159,8175,8188,8206,8207,8225,8247,8256,8258,8474,8524,8577,8736,8742,8775,8802,8805,8848,9123,9129,9299,9356,9397,9401,9499,9590,9616,9648,9999,10122,10124,10169,10170,10241,10446,10539,10546,10575,10682,10728,10734,10741,10743,10744,10745,10753,10756,10757,10870,10887,10905,10915,10923,10925,10927,11047,11103,11112,11114,11143,11541,11560,11709,11711,11743,11745,11746,11773,11776,11911,11913,11919,12517,13009,13103,13195,14251,14372,14580,14621,14625,14642,14795,14817,14911,14912,14941,15202,15205,15212,15217,15260,15262,15267,15271,15334,15570,15753,16373,17663,17678,17697,17708,17722,17746,17748,17755,17763,17772,17774,17820,17825,17836,17842,17848,17866,17873,17874,17876,17883,17910,17919,17950,17951,17952,17955,17986,18004,18008,18016,18020,18021,18022,18024,18029,18045,18057,18064,18066,18067,18077,18086,18116,18118,18124,18169,18186,18193,18199,18254,18255,18305,18307,18368,18384,18417,18422,18446,18539,18573,18574,18603,18616,18688,18728,18984,19021,19072,19095,19098,19122,19140,19155,19156,19182,19190,19192,19217,19243,19246,19248,19331,19345,19410,19418,19420,19422,19434,19499,19500,19520,19542,19561,19562,19563,19566,19590,19600,19614,19615,19617,19620,19632,19639,19643,19652,19656,19660,19675,19714,19726,19745,19746,19749,19786,19787,19797,19836,19840,19841,19842,19912,19939,19990,19993,20007,20012,20017,20021,20035,20055,20063,20070,20081,20095,20132,20134,20153,20162,20184,20191,20197,20199,20200,20215,20217,20226,20231,20245,20269,20270,20301,21971,21972,21973,21974,22016,22257,22408,22423,22437,22438,22439,22450,22458,22464,22500,22624,22712,22717,22761,22792,22814,22815,22842,22845,22847,22849,22854,22859,22861,22862,22863,22864,22866,22878,22881,22882,22884,22890,22892,22894,22895,22907,22908,22910,22919,22921,22922,22928,22931,22940,22959,22962,22965,22966,22971,22974,22975,22977,22978,22979,22980,22982,22983,22985,22987,22990,22994,22995,22996,22997,22998,22999,23014,23019,23050,23061,23066,23084,23085,23089,23093,23095,23097,23098,23099,23100,23102,23103,23105,23107,23110,23111,23115,23119,23121,23125,23127,23130,23131,23132,23134,23137,23139,23141]]],["+",[5,5,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,3,3,1,4,[[124,2,2,1,3],[147,1,1,3,4]]],[13,1,1,4,5,[[392,1,1,4,5]]]],[1833,3963,3964,4678,11745]]],["appointed",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22016]]],["armies",[21,21,[[1,3,3,0,3,[[55,1,1,0,1],[56,1,1,1,2],[61,1,1,2,3]]],[3,13,13,3,16,[[117,1,1,3,4],[118,7,7,4,11],[126,4,4,11,15],[149,1,1,15,16]]],[4,1,1,16,17,[[172,1,1,16,17]]],[18,3,3,17,20,[[521,1,1,17,18],[537,1,1,18,19],[545,1,1,19,20]]],[22,1,1,20,21,[[712,1,1,20,21]]]],[1681,1689,1867,3607,3661,3667,3668,3674,3676,3682,3683,4002,4006,4010,4016,4761,5436,14580,14817,14912,18305]]],["army",[7,7,[[0,1,1,0,1,[[25,1,1,0,1]]],[6,3,3,1,4,[[214,1,1,1,2],[218,1,1,2,3],[219,1,1,3,4]]],[12,2,2,4,6,[[357,1,1,4,5],[364,1,1,5,6]]],[13,1,1,6,7,[[391,1,1,6,7]]]],[718,6606,6725,6783,10927,11143,11711]]],["battle",[5,5,[[3,2,2,0,2,[[147,2,2,0,2]]],[5,1,1,2,3,[[208,1,1,2,3]]],[12,2,2,3,5,[[349,2,2,3,5]]]],[4691,4692,6459,10753,10756]]],["company",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14911]]],["host",[100,96,[[0,3,3,0,3,[[1,1,1,0,1],[20,2,2,1,3]]],[3,26,26,3,29,[[118,12,12,3,15],[120,1,1,15,16],[126,12,12,16,28],[147,1,1,28,29]]],[4,2,2,29,31,[[156,1,1,29,30],[169,1,1,30,31]]],[5,2,2,31,33,[[191,2,2,31,33]]],[6,1,1,33,34,[[214,1,1,33,34]]],[8,4,4,34,38,[[247,1,1,34,35],[249,1,1,35,36],[252,1,1,36,37],[261,1,1,37,38]]],[9,9,9,38,47,[[268,1,1,38,39],[269,1,1,39,40],[274,1,1,40,41],[276,3,3,41,44],[283,1,1,44,45],[285,1,1,45,46],[286,1,1,46,47]]],[10,10,9,47,56,[[291,2,2,47,49],[292,3,2,49,51],[294,1,1,51,52],[301,2,2,52,54],[306,1,1,54,55],[312,1,1,55,56]]],[11,8,8,56,64,[[316,1,1,56,57],[317,1,1,57,58],[329,1,1,58,59],[333,2,2,59,61],[335,2,2,61,63],[337,1,1,63,64]]],[12,10,10,64,74,[[349,2,2,64,66],[355,1,1,66,67],[356,3,3,67,70],[362,1,1,70,71],[363,1,1,71,72],[364,2,2,72,74]]],[13,5,5,74,79,[[384,1,1,74,75],[392,1,1,75,76],[394,1,1,76,77],[399,2,2,77,79]]],[15,2,1,79,80,[[421,2,1,79,80]]],[18,1,1,80,81,[[510,1,1,80,81]]],[22,6,5,81,86,[[691,1,1,81,82],[702,1,1,82,83],[712,2,1,83,84],[718,1,1,84,85],[723,1,1,85,86]]],[23,5,5,86,91,[[752,1,1,86,87],[763,1,1,87,88],[777,1,1,88,89],[795,1,1,89,90],[796,1,1,90,91]]],[26,5,4,91,95,[[857,5,4,91,95]]],[35,1,1,95,96,[[906,1,1,95,96]]]],[31,535,545,3662,3664,3666,3669,3671,3673,3677,3679,3681,3684,3686,3688,3746,4002,4003,4004,4006,4007,4008,4010,4011,4012,4013,4014,4015,4712,5023,5367,5948,5949,6601,7469,7558,7673,7910,8057,8104,8225,8247,8256,8258,8474,8524,8577,8736,8742,8802,8805,8848,9123,9129,9299,9499,9616,9648,9999,10122,10124,10169,10170,10241,10734,10741,10905,10915,10923,10925,11047,11103,11112,11114,11560,11746,11773,11911,11913,12517,14372,17910,18116,18307,18446,18573,19155,19420,19797,20215,20301,21971,21972,21973,21974,22792]]],["hosts",[293,281,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,3,3,1,4,[[117,1,1,1,2],[118,1,1,2,3],[126,1,1,3,4]]],[8,5,5,4,9,[[236,2,2,4,6],[239,1,1,6,7],[250,1,1,7,8],[252,1,1,8,9]]],[9,6,6,9,15,[[271,1,1,9,10],[272,2,2,10,12],[273,3,3,12,15]]],[10,4,4,15,19,[[292,1,1,15,16],[308,1,1,16,17],[309,2,2,17,19]]],[11,1,1,19,20,[[315,1,1,19,20]]],[12,3,3,20,23,[[348,1,1,20,21],[354,2,2,21,23]]],[18,18,18,23,41,[[501,1,1,23,24],[523,2,2,24,26],[525,1,1,26,27],[536,1,1,27,28],[546,1,1,28,29],[557,4,4,29,33],[561,4,4,33,37],[566,1,1,37,38],[580,1,1,38,39],[585,1,1,39,40],[625,1,1,40,41]]],[22,62,60,41,101,[[679,2,2,41,43],[680,1,1,43,44],[681,2,2,44,46],[683,4,4,46,50],[684,2,2,50,52],[686,2,2,52,54],[687,3,3,54,57],[688,5,5,57,62],[691,2,2,62,64],[692,4,4,64,68],[695,1,1,68,69],[696,2,1,69,70],[697,7,7,70,77],[699,1,1,77,78],[700,6,5,78,83],[701,1,1,83,84],[702,1,1,84,85],[703,1,1,85,86],[706,3,3,86,89],[707,1,1,89,90],[709,2,2,90,92],[715,2,2,92,94],[717,1,1,94,95],[722,1,1,95,96],[723,1,1,96,97],[725,1,1,97,98],[726,1,1,98,99],[729,1,1,99,100],[732,1,1,100,101]]],[23,83,82,101,183,[[746,1,1,101,102],[747,1,1,102,103],[749,1,1,103,104],[750,2,2,104,106],[751,2,2,106,108],[752,1,1,108,109],[753,3,3,109,112],[754,1,1,112,113],[755,3,3,113,116],[759,1,1,116,117],[760,1,1,117,118],[763,3,3,118,121],[764,1,1,121,122],[767,3,3,122,125],[769,5,5,125,130],[770,1,1,130,131],[771,4,4,131,135],[772,2,2,135,137],[773,5,5,137,142],[774,1,1,142,143],[775,2,2,143,145],[776,3,3,145,148],[777,2,2,148,150],[779,4,4,150,154],[782,1,1,154,155],[783,1,1,155,156],[786,2,2,156,158],[787,1,1,158,159],[788,4,4,159,163],[790,4,3,163,166],[792,2,2,166,168],[793,4,4,168,172],[794,5,5,172,177],[795,6,6,177,183]]],[27,1,1,183,184,[[873,1,1,183,184]]],[29,9,9,184,193,[[881,1,1,184,185],[882,1,1,185,186],[883,4,4,186,190],[884,2,2,190,192],[887,1,1,192,193]]],[32,1,1,193,194,[[896,1,1,193,194]]],[33,2,2,194,196,[[901,1,1,194,195],[902,1,1,195,196]]],[34,1,1,196,197,[[904,1,1,196,197]]],[35,2,2,197,199,[[907,2,2,197,199]]],[36,14,12,199,211,[[909,5,5,199,204],[910,9,7,204,211]]],[37,53,46,211,257,[[911,9,7,211,218],[912,3,3,218,221],[913,3,3,221,224],[914,2,2,224,226],[915,1,1,226,227],[916,2,2,227,229],[917,6,5,229,234],[918,18,15,234,249],[919,1,1,249,250],[920,1,1,250,251],[922,1,1,251,252],[923,2,2,252,254],[924,4,3,254,257]]],[38,24,24,257,281,[[925,8,8,257,265],[926,6,6,265,271],[927,8,8,271,279],[928,2,2,279,281]]]],[1857,3656,3690,4013,7215,7223,7301,7562,7663,8142,8159,8175,8188,8206,8207,8775,9356,9397,9401,9590,10682,10870,10887,14251,14621,14625,14642,14795,14941,15202,15205,15212,15217,15260,15262,15267,15271,15334,15570,15753,16373,17663,17678,17697,17708,17722,17746,17748,17755,17763,17772,17774,17820,17825,17836,17842,17848,17866,17873,17874,17876,17883,17910,17919,17950,17951,17952,17955,17986,18004,18008,18016,18020,18021,18022,18024,18029,18045,18057,18064,18066,18067,18077,18086,18118,18124,18169,18186,18193,18199,18254,18255,18368,18384,18417,18539,18574,18603,18616,18688,18728,18984,19021,19072,19095,19098,19122,19140,19156,19182,19190,19192,19217,19243,19246,19248,19331,19345,19410,19418,19422,19434,19499,19500,19520,19542,19561,19562,19563,19566,19590,19600,19614,19615,19617,19620,19632,19639,19643,19652,19656,19660,19675,19714,19726,19745,19746,19749,19786,19787,19836,19840,19841,19842,19912,19939,19990,19993,20007,20012,20017,20021,20035,20055,20063,20070,20081,20095,20132,20134,20153,20162,20184,20191,20197,20199,20200,20217,20226,20231,20245,20269,20270,22257,22408,22423,22437,22438,22439,22450,22458,22464,22500,22624,22712,22717,22761,22814,22815,22842,22845,22847,22849,22854,22859,22861,22862,22863,22864,22866,22878,22881,22882,22884,22890,22892,22894,22895,22907,22908,22910,22919,22921,22922,22928,22931,22940,22959,22962,22965,22966,22971,22974,22975,22977,22978,22979,22980,22982,22983,22985,22987,22990,22994,22995,22996,22997,22998,22999,23014,23019,23050,23061,23066,23084,23085,23089,23093,23095,23097,23098,23099,23100,23102,23103,23105,23107,23110,23111,23115,23119,23121,23125,23127,23130,23131,23132,23134,23137,23139,23141]]],["of",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11919]]],["service",[4,4,[[3,4,4,0,4,[[120,4,4,0,4]]]],[3773,3778,3782,3786]]],["soldiers",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10539]]],["time",[2,2,[[17,2,2,0,2,[[442,1,1,0,1],[449,1,1,1,2]]]],[13009,13195]]],["war",[41,40,[[3,25,24,0,24,[[117,14,14,0,14],[142,1,1,14,15],[147,9,8,15,23],[148,1,1,23,24]]],[4,1,1,24,25,[[176,1,1,24,25]]],[5,2,2,25,27,[[190,1,1,25,26],[208,1,1,26,27]]],[12,8,8,27,35,[[342,1,1,27,28],[344,2,2,28,30],[349,5,5,30,35]]],[13,4,4,35,39,[[383,1,1,35,36],[391,1,1,36,37],[392,1,1,37,38],[394,1,1,38,39]]],[17,1,1,39,40,[[445,1,1,39,40]]]],[3607,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,4491,4667,4668,4669,4670,4685,4696,4700,4717,4745,5530,5923,6438,10446,10546,10575,10728,10743,10744,10745,10757,11541,11709,11743,11776,13103]]],["warfare",[2,2,[[8,1,1,0,1,[[263,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[7943,18422]]]]},{"k":"H6636","v":[["*",[5,5,[[0,3,3,0,3,[[9,1,1,0,1],[13,2,2,1,3]]],[4,1,1,3,4,[[181,1,1,3,4]]],[27,1,1,4,5,[[872,1,1,4,5]]]],[253,338,344,5702,22248]]],["Zeboiim",[2,2,[[0,2,2,0,2,[[13,2,2,0,2]]]],[338,344]]],["Zeboim",[3,3,[[0,1,1,0,1,[[9,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[27,1,1,2,3,[[872,1,1,2,3]]]],[253,5702,22248]]]]},{"k":"H6637","v":[["Zobebah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10393]]]]},{"k":"H6638","v":[["swell",[2,2,[[3,2,2,0,2,[[121,2,2,0,2]]]],[3814,3819]]]]},{"k":"H6639","v":[["swell",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3813]]]]},{"k":"H6640","v":[["purpose",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21922]]]]},{"k":"H6641","v":[["speckled",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19258]]]]},{"k":"H6642","v":[["reached",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7163]]]]},{"k":"H6643","v":[["*",[32,32,[[4,4,4,0,4,[[164,2,2,0,2],[166,1,1,2,3],[167,1,1,3,4]]],[9,2,2,4,6,[[267,1,1,4,5],[268,1,1,5,6]]],[10,1,1,6,7,[[294,1,1,6,7]]],[12,1,1,7,8,[[349,1,1,7,8]]],[19,1,1,8,9,[[633,1,1,8,9]]],[21,5,5,9,14,[[672,3,3,9,12],[673,1,1,12,13],[678,1,1,13,14]]],[22,8,8,14,22,[[682,1,1,14,15],[691,2,2,15,17],[701,1,1,17,18],[702,1,1,18,19],[706,3,3,19,22]]],[23,1,1,22,23,[[747,1,1,22,23]]],[25,5,5,23,28,[[808,1,1,23,24],[821,2,2,24,26],[826,1,1,26,27],[827,1,1,27,28]]],[26,4,4,28,32,[[857,1,1,28,29],[860,3,3,29,32]]]],[5255,5262,5295,5341,8041,8067,8867,10728,16545,17561,17563,17571,17576,17654,17735,17920,17925,18086,18111,18165,18168,18169,19021,20597,20901,20910,21092,21120,21970,22052,22077,22081]]],["beautiful",[1,1,[[22,1,1,0,1,[[682,1,1,0,1]]]],[17735]]],["beauty",[2,2,[[9,1,1,0,1,[[267,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]]],[8041,20597]]],["glorious",[5,5,[[22,2,2,0,2,[[706,2,2,0,2]]],[26,3,3,2,5,[[860,3,3,2,5]]]],[18165,18168,22052,22077,22081]]],["glory",[8,8,[[22,4,4,0,4,[[691,1,1,0,1],[701,1,1,1,2],[702,1,1,2,3],[706,1,1,3,4]]],[25,4,4,4,8,[[821,2,2,4,6],[826,1,1,6,7],[827,1,1,7,8]]]],[17925,18086,18111,18169,20901,20910,21092,21120]]],["goodly",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19021]]],["pleasant",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21970]]],["roe",[6,6,[[9,1,1,0,1,[[268,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]],[21,3,3,2,5,[[672,2,2,2,4],[678,1,1,4,5]]],[22,1,1,5,6,[[691,1,1,5,6]]]],[8067,16545,17563,17571,17654,17920]]],["roebuck",[4,4,[[4,4,4,0,4,[[164,2,2,0,2],[166,1,1,2,3],[167,1,1,3,4]]]],[5255,5262,5295,5341]]],["roebucks",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8867]]],["roes",[3,3,[[12,1,1,0,1,[[349,1,1,0,1]]],[21,2,2,1,3,[[672,1,1,1,2],[673,1,1,2,3]]]],[10728,17561,17576]]]]},{"k":"H6644","v":[["Zibia",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10584]]]]},{"k":"H6645","v":[["Zibiah",[2,2,[[11,1,1,0,1,[[324,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]]],[9851,11678]]]]},{"k":"H6646","v":[["roes",[2,2,[[21,2,2,0,2,[[674,1,1,0,1],[677,1,1,1,2]]]],[17587,17630]]]]},{"k":"H6647","v":[["wet",[5,5,[[26,5,5,0,5,[[853,4,4,0,4],[854,1,1,4,5]]]],[21852,21860,21862,21870,21895]]]]},{"k":"H6648","v":[["colours",[3,1,[[6,3,1,0,1,[[215,3,1,0,1]]]],[6653]]]]},{"k":"H6649","v":[["Zibeon",[8,7,[[0,6,5,0,5,[[35,6,5,0,5]]],[12,2,2,5,7,[[338,2,2,5,7]]]],[1042,1054,1060,1064,1069,10290,10292]]]]},{"k":"H6650","v":[["Zeboim",[2,2,[[8,1,1,0,1,[[248,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[7503,12622]]]]},{"k":"H6651","v":[["*",[7,7,[[0,2,2,0,2,[[40,2,2,0,2]]],[1,1,1,2,3,[[57,1,1,2,3]]],[17,1,1,3,4,[[462,1,1,3,4]]],[18,1,1,4,5,[[516,1,1,4,5]]],[34,1,1,5,6,[[903,1,1,5,6]]],[37,1,1,6,7,[[919,1,1,6,7]]]],[1230,1244,1724,13497,14518,22741,23002]]],["+",[1,1,[[1,1,1,0,1,[[57,1,1,0,1]]]],[1724]]],["gathered",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1244]]],["heap",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22741]]],["up",[4,4,[[0,1,1,0,1,[[40,1,1,0,1]]],[17,1,1,1,2,[[462,1,1,1,2]]],[18,1,1,2,3,[[516,1,1,2,3]]],[37,1,1,3,4,[[919,1,1,3,4]]]],[1230,13497,14518,23002]]]]},{"k":"H6652","v":[["heaps",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9801]]]]},{"k":"H6653","v":[["handfuls",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7165]]]]},{"k":"H6654","v":[["*",[33,27,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,9,5,1,6,[[74,3,1,1,2],[75,1,1,2,3],[79,1,1,3,4],[86,4,2,4,6]]],[3,1,1,6,7,[[149,1,1,6,7]]],[4,1,1,7,8,[[183,1,1,7,8]]],[5,3,3,8,11,[[189,1,1,8,9],[198,1,1,9,10],[209,1,1,10,11]]],[6,1,1,11,12,[[212,1,1,11,12]]],[7,1,1,12,13,[[233,1,1,12,13]]],[8,5,4,13,17,[[241,1,1,13,14],[255,2,2,14,16],[258,2,1,16,17]]],[9,2,2,17,19,[[268,1,1,17,18],[279,1,1,18,19]]],[18,1,1,19,20,[[568,1,1,19,20]]],[22,2,2,20,22,[[738,1,1,20,21],[744,1,1,21,22]]],[25,6,5,22,27,[[805,5,4,22,26],[835,1,1,26,27]]]],[153,2227,2248,2386,2622,2631,4815,5754,5909,6139,6473,6548,7163,7339,7750,7755,7836,8065,8351,15402,18825,18934,20533,20535,20537,20538,21334]]],["+",[17,12,[[1,6,2,0,2,[[74,3,1,0,1],[86,3,1,1,2]]],[4,1,1,2,3,[[183,1,1,2,3]]],[5,2,2,3,5,[[189,1,1,3,4],[198,1,1,4,5]]],[7,1,1,5,6,[[233,1,1,5,6]]],[8,4,3,6,9,[[241,1,1,6,7],[255,1,1,7,8],[258,2,1,8,9]]],[9,1,1,9,10,[[279,1,1,9,10]]],[18,1,1,10,11,[[568,1,1,10,11]]],[25,1,1,11,12,[[805,1,1,11,12]]]],[2227,2622,5754,5909,6139,7163,7339,7755,7836,8351,15402,20537]]],["another",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20537]]],["side",[8,8,[[0,1,1,0,1,[[5,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[9,1,1,2,3,[[268,1,1,2,3]]],[22,1,1,3,4,[[738,1,1,3,4]]],[25,4,4,4,8,[[805,3,3,4,7],[835,1,1,7,8]]]],[153,7750,8065,18825,20533,20535,20538,21334]]],["sides",[7,7,[[1,3,3,0,3,[[75,1,1,0,1],[79,1,1,1,2],[86,1,1,2,3]]],[3,1,1,3,4,[[149,1,1,3,4]]],[5,1,1,4,5,[[209,1,1,4,5]]],[6,1,1,5,6,[[212,1,1,5,6]]],[22,1,1,6,7,[[744,1,1,6,7]]]],[2248,2386,2631,4815,6473,6548,18934]]]]},{"k":"H6655","v":[["*",[2,2,[[26,2,2,0,2,[[855,1,1,0,1],[856,1,1,1,2]]]],[21909,21958]]],["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21909]]],["against",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21958]]]]},{"k":"H6656","v":[["true",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21821]]]]},{"k":"H6657","v":[["Zedad",[2,2,[[3,1,1,0,1,[[150,1,1,0,1]]],[25,1,1,1,2,[[848,1,1,1,2]]]],[4824,21694]]]]},{"k":"H6658","v":[["*",[3,3,[[1,1,1,0,1,[[70,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]],[35,1,1,2,3,[[908,1,1,2,3]]]],[2090,7850,22826]]],["+",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]]],[2090,7850]]],["destroyed",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22826]]]]},{"k":"H6659","v":[["*",[53,50,[[9,14,13,0,13,[[274,1,1,0,1],[281,7,6,1,7],[283,1,1,7,8],[284,3,3,8,11],[285,1,1,11,12],[286,1,1,12,13]]],[10,11,11,13,24,[[291,8,8,13,21],[292,1,1,21,22],[294,2,2,22,24]]],[11,1,1,24,25,[[327,1,1,24,25]]],[12,15,13,25,38,[[343,5,3,25,28],[346,1,1,28,29],[349,1,1,29,30],[352,1,1,30,31],[353,1,1,31,32],[355,1,1,32,33],[361,3,3,33,36],[364,1,1,36,37],[366,1,1,37,38]]],[13,2,2,38,40,[[393,1,1,38,39],[397,1,1,39,40]]],[14,1,1,40,41,[[409,1,1,40,41]]],[15,5,5,41,46,[[415,2,2,41,43],[422,1,1,43,44],[423,1,1,44,45],[425,1,1,45,46]]],[25,4,4,46,50,[[841,1,1,46,47],[844,1,1,47,48],[845,1,1,48,49],[849,1,1,49,50]]]],[8226,8413,8414,8416,8418,8424,8425,8464,8497,8500,8505,8522,8579,8725,8743,8749,8751,8755,8756,8761,8762,8805,8846,8848,9958,10462,10466,10507,10626,10748,10802,10859,10906,11018,11021,11046,11126,11186,11756,11864,12175,12331,12356,12570,12599,12684,21523,21591,21614,21713]]],["Zadok",[52,49,[[9,13,12,0,12,[[274,1,1,0,1],[281,6,5,1,6],[283,1,1,6,7],[284,3,3,7,10],[285,1,1,10,11],[286,1,1,11,12]]],[10,11,11,12,23,[[291,8,8,12,20],[292,1,1,20,21],[294,2,2,21,23]]],[11,1,1,23,24,[[327,1,1,23,24]]],[12,15,13,24,37,[[343,5,3,24,27],[346,1,1,27,28],[349,1,1,28,29],[352,1,1,29,30],[353,1,1,30,31],[355,1,1,31,32],[361,3,3,32,35],[364,1,1,35,36],[366,1,1,36,37]]],[13,2,2,37,39,[[393,1,1,37,38],[397,1,1,38,39]]],[14,1,1,39,40,[[409,1,1,39,40]]],[15,5,5,40,45,[[415,2,2,40,42],[422,1,1,42,43],[423,1,1,43,44],[425,1,1,44,45]]],[25,4,4,45,49,[[841,1,1,45,46],[844,1,1,46,47],[845,1,1,47,48],[849,1,1,48,49]]]],[8226,8413,8414,8416,8418,8424,8464,8497,8500,8505,8522,8579,8725,8743,8749,8751,8755,8756,8761,8762,8805,8846,8848,9958,10462,10466,10507,10626,10748,10802,10859,10906,11018,11021,11046,11126,11186,11756,11864,12175,12331,12356,12570,12599,12684,21523,21591,21614,21713]]],["Zadok's",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8425]]]]},{"k":"H6660","v":[["wait",[2,2,[[3,2,2,0,2,[[151,2,2,0,2]]]],[4865,4867]]]]},{"k":"H6661","v":[["Ziddim",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6356]]]]},{"k":"H6662","v":[["*",[206,197,[[0,10,8,0,8,[[5,1,1,0,1],[6,1,1,1,2],[17,7,5,2,7],[19,1,1,7,8]]],[1,3,3,8,11,[[58,1,1,8,9],[72,2,2,9,11]]],[4,4,4,11,15,[[156,1,1,11,12],[168,1,1,12,13],[177,1,1,13,14],[184,1,1,14,15]]],[8,1,1,15,16,[[259,1,1,15,16]]],[9,2,2,16,18,[[270,1,1,16,17],[289,1,1,17,18]]],[10,2,2,18,20,[[292,1,1,18,19],[298,1,1,19,20]]],[11,1,1,20,21,[[322,1,1,20,21]]],[13,2,2,21,23,[[372,1,1,21,22],[378,1,1,22,23]]],[14,1,1,23,24,[[411,1,1,23,24]]],[15,2,2,24,26,[[421,2,2,24,26]]],[17,7,7,26,33,[[447,1,1,26,27],[452,1,1,27,28],[457,1,1,28,29],[462,1,1,29,30],[467,1,1,30,31],[469,1,1,31,32],[471,1,1,32,33]]],[18,52,50,33,83,[[478,2,2,33,35],[482,1,1,35,36],[484,3,2,36,38],[488,3,3,38,41],[491,1,1,41,42],[508,1,1,42,43],[509,1,1,43,44],[510,1,1,44,45],[511,3,3,45,48],[514,9,9,48,57],[529,1,1,57,58],[532,1,1,58,59],[535,2,2,59,61],[541,1,1,61,62],[545,1,1,62,63],[546,1,1,63,64],[549,1,1,64,65],[552,1,1,65,66],[569,1,1,66,67],[571,1,1,67,68],[574,2,2,68,70],[589,2,2,70,72],[593,1,1,72,73],[595,2,2,73,75],[596,1,1,75,76],[602,2,1,76,77],[606,1,1,77,78],[617,1,1,78,79],[618,1,1,79,80],[619,1,1,80,81],[622,1,1,81,82],[623,1,1,82,83]]],[19,66,66,83,149,[[629,1,1,83,84],[630,1,1,84,85],[631,1,1,85,86],[636,1,1,86,87],[637,13,13,87,100],[638,8,8,100,108],[639,8,8,108,116],[640,5,5,116,121],[641,2,2,121,123],[642,3,3,123,126],[644,2,2,126,128],[645,3,3,128,131],[647,1,1,131,132],[648,4,4,132,136],[650,1,1,136,137],[651,3,3,137,140],[652,1,1,140,141],[655,3,3,141,144],[656,5,5,144,149]]],[20,8,7,149,156,[[661,1,1,149,150],[665,3,3,150,153],[666,2,1,153,154],[667,2,2,154,156]]],[22,14,12,156,168,[[681,1,1,156,157],[683,1,1,157,158],[702,1,1,158,159],[704,3,2,159,161],[707,1,1,161,162],[719,1,1,162,163],[723,1,1,163,164],[727,1,1,164,165],[731,1,1,165,166],[735,2,1,166,167],[738,1,1,167,168]]],[23,3,3,168,171,[[756,1,1,168,169],[764,1,1,169,170],[767,1,1,170,171]]],[24,2,2,171,173,[[797,1,1,171,172],[800,1,1,172,173]]],[25,16,14,173,187,[[804,3,2,173,175],[814,1,1,175,176],[819,5,5,176,181],[822,2,2,181,183],[824,1,1,183,184],[834,4,3,184,187]]],[26,1,1,187,188,[[858,1,1,187,188]]],[27,1,1,188,189,[[875,1,1,188,189]]],[29,2,2,189,191,[[880,1,1,189,190],[883,1,1,190,191]]],[34,3,3,191,194,[[903,2,2,191,193],[904,1,1,193,194]]],[35,1,1,194,195,[[908,1,1,194,195]]],[37,1,1,195,196,[[919,1,1,195,196]]],[38,1,1,196,197,[[927,1,1,196,197]]]],[146,160,447,448,449,450,452,499,1769,2151,2152,5012,5361,5548,5762,7856,8131,8656,8802,9017,9802,11305,11443,12252,12519,12544,13132,13269,13408,13498,13629,13700,13743,13944,13945,13985,14004,14006,14062,14064,14066,14085,14349,14366,14367,14403,14407,14409,14462,14466,14467,14471,14475,14479,14480,14482,14489,14716,14754,14789,14790,14860,14903,14963,15007,15081,15423,15452,15489,15490,15807,15809,15853,15884,15889,16035,16113,16136,16276,16281,16293,16337,16349,16453,16488,16508,16647,16659,16662,16663,16667,16672,16676,16677,16680,16681,16684,16686,16687,16688,16696,16697,16698,16709,16711,16716,16718,16719,16722,16724,16726,16729,16731,16732,16740,16745,16752,16756,16768,16769,16772,16791,16804,16813,16835,16836,16888,16899,16906,16911,16918,16961,16996,16999,17002,17010,17068,17094,17095,17103,17139,17197,17208,17224,17226,17230,17231,17240,17251,17376,17444,17445,17449,17472,17476,17477,17717,17762,18111,18132,18137,18214,18477,18582,18660,18722,18766,18842,19250,19434,19489,20328,20433,20522,20523,20730,20854,20858,20869,20873,20875,20947,20948,21052,21292,21293,21298,22002,22291,22385,22435,22735,22744,22752,22825,23008,23138]]],["+",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13743]]],["Righteous",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[23,1,1,1,2,[[756,1,1,1,2]]]],[16035,19250]]],["just",[42,41,[[0,1,1,0,1,[[5,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[17,3,3,4,7,[[447,1,1,4,5],[462,1,1,5,6],[469,1,1,6,7]]],[18,2,2,7,9,[[484,1,1,7,8],[514,1,1,8,9]]],[19,18,18,9,27,[[630,1,1,9,10],[631,1,1,10,11],[636,1,1,11,12],[637,4,4,12,16],[638,1,1,16,17],[639,2,2,17,19],[640,1,1,19,20],[644,2,2,20,22],[645,1,1,22,23],[647,1,1,23,24],[648,1,1,24,25],[651,1,1,25,26],[656,1,1,26,27]]],[20,3,3,27,30,[[665,2,2,27,29],[666,1,1,29,30]]],[22,4,3,30,33,[[704,2,1,30,31],[707,1,1,31,32],[723,1,1,32,33]]],[24,1,1,33,34,[[800,1,1,33,34]]],[25,2,2,34,36,[[819,2,2,34,36]]],[27,1,1,36,37,[[875,1,1,36,37]]],[29,1,1,37,38,[[883,1,1,37,38]]],[34,1,1,38,39,[[904,1,1,38,39]]],[35,1,1,39,40,[[908,1,1,39,40]]],[37,1,1,40,41,[[919,1,1,40,41]]]],[146,5762,8656,12544,13132,13498,13700,14004,14462,16488,16508,16647,16662,16663,16676,16687,16697,16732,16740,16769,16888,16899,16918,16961,16999,17095,17251,17444,17449,17472,18137,18214,18582,20433,20854,20858,22291,22435,22752,22825,23008]]],["lawful",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18660]]],["righteous",[160,154,[[0,9,7,0,7,[[6,1,1,0,1],[17,7,5,1,6],[19,1,1,6,7]]],[1,3,3,7,10,[[58,1,1,7,8],[72,2,2,8,10]]],[4,3,3,10,13,[[156,1,1,10,11],[168,1,1,11,12],[177,1,1,12,13]]],[8,1,1,13,14,[[259,1,1,13,14]]],[9,1,1,14,15,[[270,1,1,14,15]]],[10,2,2,15,17,[[292,1,1,15,16],[298,1,1,16,17]]],[11,1,1,17,18,[[322,1,1,17,18]]],[13,2,2,18,20,[[372,1,1,18,19],[378,1,1,19,20]]],[14,1,1,20,21,[[411,1,1,20,21]]],[15,1,1,21,22,[[421,1,1,21,22]]],[17,3,3,22,25,[[452,1,1,22,23],[457,1,1,23,24],[467,1,1,24,25]]],[18,49,48,25,73,[[478,2,2,25,27],[482,1,1,27,28],[484,2,2,28,30],[488,3,3,30,33],[491,1,1,33,34],[508,1,1,34,35],[509,1,1,35,36],[510,1,1,36,37],[511,3,3,37,40],[514,8,8,40,48],[529,1,1,48,49],[532,1,1,49,50],[535,2,2,50,52],[541,1,1,52,53],[545,1,1,53,54],[546,1,1,54,55],[549,1,1,55,56],[552,1,1,56,57],[569,1,1,57,58],[571,1,1,58,59],[574,2,2,59,61],[589,2,2,61,63],[593,1,1,63,64],[595,2,2,64,66],[602,2,1,66,67],[606,1,1,67,68],[617,1,1,68,69],[618,1,1,69,70],[619,1,1,70,71],[622,1,1,71,72],[623,1,1,72,73]]],[19,48,48,73,121,[[629,1,1,73,74],[637,9,9,74,83],[638,7,7,83,90],[639,6,6,90,96],[640,4,4,96,100],[641,2,2,100,102],[642,3,3,102,105],[645,2,2,105,107],[648,3,3,107,110],[650,1,1,110,111],[651,2,2,111,113],[652,1,1,113,114],[655,3,3,114,117],[656,4,4,117,121]]],[20,5,5,121,126,[[661,1,1,121,122],[665,1,1,122,123],[666,1,1,123,124],[667,2,2,124,126]]],[22,9,8,126,134,[[681,1,1,126,127],[683,1,1,127,128],[702,1,1,128,129],[704,1,1,129,130],[719,1,1,130,131],[731,1,1,131,132],[735,2,1,132,133],[738,1,1,133,134]]],[23,2,2,134,136,[[764,1,1,134,135],[767,1,1,135,136]]],[24,1,1,136,137,[[797,1,1,136,137]]],[25,14,12,137,149,[[804,3,2,137,139],[814,1,1,139,140],[819,3,3,140,143],[822,2,2,143,145],[824,1,1,145,146],[834,4,3,146,149]]],[26,1,1,149,150,[[858,1,1,149,150]]],[29,1,1,150,151,[[880,1,1,150,151]]],[34,2,2,151,153,[[903,2,2,151,153]]],[38,1,1,153,154,[[927,1,1,153,154]]]],[160,447,448,449,450,452,499,1769,2151,2152,5012,5361,5548,7856,8131,8802,9017,9802,11305,11443,12252,12519,13269,13408,13629,13944,13945,13985,14004,14006,14062,14064,14066,14085,14349,14366,14367,14403,14407,14409,14466,14467,14471,14475,14479,14480,14482,14489,14716,14754,14789,14790,14860,14903,14963,15007,15081,15423,15452,15489,15490,15807,15809,15853,15884,15889,16113,16136,16276,16281,16293,16337,16349,16453,16659,16667,16672,16677,16680,16681,16684,16686,16688,16696,16698,16709,16711,16716,16718,16719,16722,16724,16726,16729,16731,16745,16752,16756,16768,16772,16791,16804,16813,16835,16836,16906,16911,16996,17002,17010,17068,17094,17103,17139,17197,17208,17224,17226,17230,17231,17240,17376,17445,17472,17476,17477,17717,17762,18111,18132,18477,18722,18766,18842,19434,19489,20328,20522,20523,20730,20869,20873,20875,20947,20948,21052,21292,21293,21298,22002,22385,22735,22744,23138]]]]},{"k":"H6663","v":[["*",[41,40,[[0,2,2,0,2,[[37,1,1,0,1],[43,1,1,1,2]]],[1,1,1,2,3,[[72,1,1,2,3]]],[4,1,1,3,4,[[177,1,1,3,4]]],[9,1,1,4,5,[[281,1,1,4,5]]],[10,1,1,5,6,[[298,1,1,5,6]]],[13,1,1,6,7,[[372,1,1,6,7]]],[17,17,17,7,24,[[439,1,1,7,8],[444,3,3,8,11],[445,1,1,11,12],[446,1,1,12,13],[448,1,1,13,14],[450,1,1,14,15],[457,1,1,15,16],[460,1,1,16,17],[462,1,1,17,18],[467,1,1,18,19],[468,2,2,19,21],[469,1,1,21,22],[470,1,1,22,23],[475,1,1,23,24]]],[18,4,4,24,28,[[496,1,1,24,25],[528,1,1,25,26],[559,1,1,26,27],[620,1,1,27,28]]],[19,1,1,28,29,[[644,1,1,28,29]]],[22,6,6,29,35,[[683,1,1,29,30],[721,2,2,30,32],[723,1,1,32,33],[728,1,1,33,34],[731,1,1,34,35]]],[23,1,1,35,36,[[747,1,1,35,36]]],[25,3,2,36,38,[[817,3,2,36,38]]],[26,2,2,38,40,[[857,1,1,38,39],[861,1,1,39,40]]]],[1145,1340,2151,5548,8393,9017,11305,12947,13053,13066,13071,13101,13110,13171,13217,13392,13465,13486,13630,13662,13682,13688,13727,13872,14177,14695,15236,16295,16888,17762,18514,18531,18586,18670,18722,19013,20813,20814,21975,22084]]],["+",[4,4,[[4,1,1,0,1,[[177,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]],[25,1,1,2,3,[[817,1,1,2,3]]],[26,1,1,3,4,[[861,1,1,3,4]]]],[5548,12947,20813,22084]]],["cleansed",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21975]]],["just",[2,2,[[17,2,2,0,2,[[444,1,1,0,1],[468,1,1,1,2]]]],[13053,13662]]],["justice",[2,2,[[9,1,1,0,1,[[281,1,1,0,1]]],[18,1,1,1,2,[[559,1,1,1,2]]]],[8393,15236]]],["justified",[11,11,[[17,4,4,0,4,[[446,1,1,0,1],[448,1,1,1,2],[460,1,1,2,3],[467,1,1,3,4]]],[18,2,2,4,6,[[528,1,1,4,5],[620,1,1,5,6]]],[22,3,3,6,9,[[721,2,2,6,8],[723,1,1,8,9]]],[23,1,1,9,10,[[747,1,1,9,10]]],[25,1,1,10,11,[[817,1,1,10,11]]]],[13110,13171,13465,13630,14695,16295,18514,18531,18586,19013,20814]]],["justifieth",[2,2,[[19,1,1,0,1,[[644,1,1,0,1]]],[22,1,1,1,2,[[728,1,1,1,2]]]],[16888,18670]]],["justify",[6,6,[[1,1,1,0,1,[[72,1,1,0,1]]],[17,3,3,1,4,[[444,1,1,1,2],[462,1,1,2,3],[468,1,1,3,4]]],[22,2,2,4,6,[[683,1,1,4,5],[731,1,1,5,6]]]],[2151,13071,13486,13682,17762,18722]]],["justifying",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]]],[9017,11305]]],["ourselves",[1,1,[[0,1,1,0,1,[[43,1,1,0,1]]]],[1340]]],["righteous",[10,10,[[0,1,1,0,1,[[37,1,1,0,1]]],[17,7,7,1,8,[[444,1,1,1,2],[445,1,1,2,3],[450,1,1,3,4],[457,1,1,4,5],[469,1,1,5,6],[470,1,1,6,7],[475,1,1,7,8]]],[18,1,1,8,9,[[496,1,1,8,9]]],[25,1,1,9,10,[[817,1,1,9,10]]]],[1145,13066,13101,13217,13392,13688,13727,13872,14177,20814]]]]},{"k":"H6664","v":[["*",[118,111,[[2,5,2,0,2,[[108,5,2,0,2]]],[4,7,5,2,7,[[153,1,1,2,3],[168,3,2,3,5],[177,2,1,5,6],[185,1,1,6,7]]],[17,7,7,7,14,[[441,1,1,7,8],[443,2,2,8,10],[464,1,1,10,11],[466,1,1,11,12],[470,1,1,12,13],[471,1,1,13,14]]],[18,49,49,14,63,[[481,2,2,14,16],[484,2,2,16,18],[486,2,2,18,20],[492,1,1,20,21],[494,2,2,21,23],[495,2,2,23,25],[500,1,1,25,26],[512,3,3,26,29],[514,1,1,29,30],[517,1,1,30,31],[522,2,2,31,33],[525,1,1,33,34],[527,1,1,34,35],[528,1,1,35,36],[529,1,1,36,37],[535,1,1,37,38],[542,1,1,38,39],[549,1,1,39,40],[562,3,3,40,43],[566,1,1,43,44],[571,1,1,44,45],[573,1,1,45,46],[574,2,2,46,48],[575,1,1,48,49],[595,1,1,49,50],[596,12,12,50,62],[609,1,1,62,63]]],[19,8,8,63,71,[[628,1,1,63,64],[629,1,1,64,65],[635,2,2,65,67],[639,1,1,67,68],[643,1,1,68,69],[652,1,1,69,70],[658,1,1,70,71]]],[20,3,3,71,74,[[661,1,1,71,72],[663,1,1,72,73],[665,1,1,73,74]]],[22,25,25,74,99,[[679,2,2,74,76],[689,2,2,76,78],[694,1,1,78,79],[704,2,2,79,81],[710,1,1,81,82],[719,2,2,82,84],[720,2,2,84,86],[723,3,3,86,89],[729,3,3,89,92],[736,2,2,92,94],[737,1,1,94,95],[739,1,1,95,96],[740,2,2,96,98],[742,1,1,98,99]]],[23,6,6,99,105,[[755,1,1,99,100],[766,1,1,100,101],[767,1,1,101,102],[775,1,1,102,103],[777,1,1,103,104],[794,1,1,104,105]]],[25,4,2,105,107,[[804,1,1,105,106],[846,3,1,106,107]]],[26,1,1,107,108,[[858,1,1,107,108]]],[27,2,2,108,110,[[863,1,1,108,109],[871,1,1,109,110]]],[35,1,1,110,111,[[907,1,1,110,111]]]],[3296,3317,4908,5360,5362,5562,5829,13007,13032,13035,13546,13594,13722,13739,13966,13970,14003,14012,14025,14029,14089,14104,14118,14138,14142,14238,14434,14437,14438,14456,14534,14601,14604,14644,14674,14710,14713,14780,14865,15002,15281,15282,15284,15340,15446,15478,15480,15484,15499,15888,15905,15960,15973,16004,16019,16021,16036,16040,16042,16058,16062,16070,16160,16403,16442,16610,16617,16736,16853,17118,17293,17375,17405,17444,17675,17680,17888,17889,17974,18139,18140,18260,18453,18461,18486,18501,18569,18574,18580,18674,18678,18680,18788,18794,18804,18846,18855,18856,18890,19246,19467,19490,19714,19791,20173,20522,21640,22012,22124,22237,22808]]],["+",[5,4,[[4,2,1,0,1,[[168,2,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]],[23,1,1,2,3,[[766,1,1,2,3]]],[25,1,1,3,4,[[804,1,1,3,4]]]],[5362,18501,19467,20522]]],["Just",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3317]]],["Justice",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15340]]],["RIGHTEOUSNESS",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19490]]],["Righteous",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16853]]],["Righteousness",[1,1,[[18,1,1,0,1,[[562,1,1,0,1]]]],[15284]]],["cause",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14437]]],["even",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13594]]],["just",[9,4,[[2,3,1,0,1,[[108,3,1,0,1]]],[4,3,2,1,3,[[168,1,1,1,2],[177,2,1,2,3]]],[25,3,1,3,4,[[846,3,1,3,4]]]],[3317,5360,5562,21640]]],["justice",[9,9,[[17,1,1,0,1,[[443,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[19,2,2,2,4,[[628,1,1,2,3],[635,1,1,3,4]]],[20,1,1,4,5,[[663,1,1,4,5]]],[22,2,2,5,7,[[736,1,1,5,6],[737,1,1,6,7]]],[23,2,2,7,9,[[775,1,1,7,8],[794,1,1,8,9]]]],[13032,16019,16403,16617,17405,18788,18804,19714,20173]]],["right",[3,3,[[18,3,3,0,3,[[486,1,1,0,1],[494,1,1,1,2],[596,1,1,2,3]]]],[14025,14104,15973]]],["righteous",[7,7,[[18,6,6,0,6,[[596,6,6,0,6]]],[22,1,1,6,7,[[719,1,1,6,7]]]],[15905,15960,16004,16036,16058,16062,18453]]],["righteously",[3,3,[[4,1,1,0,1,[[153,1,1,0,1]]],[19,1,1,1,2,[[658,1,1,1,2]]],[23,1,1,2,3,[[755,1,1,2,3]]]],[4908,17293,19246]]],["righteousness",[75,75,[[2,1,1,0,1,[[108,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[17,5,5,2,7,[[441,1,1,2,3],[443,1,1,3,4],[464,1,1,4,5],[470,1,1,5,6],[471,1,1,6,7]]],[18,36,36,7,43,[[481,2,2,7,9],[484,2,2,9,11],[486,1,1,11,12],[492,1,1,12,13],[494,1,1,13,14],[495,2,2,14,16],[500,1,1,16,17],[512,2,2,17,19],[514,1,1,19,20],[517,1,1,20,21],[522,2,2,21,23],[525,1,1,23,24],[527,1,1,24,25],[528,1,1,25,26],[529,1,1,26,27],[535,1,1,27,28],[542,1,1,28,29],[549,1,1,29,30],[562,2,2,30,32],[571,1,1,32,33],[573,1,1,33,34],[574,2,2,34,36],[575,1,1,36,37],[595,1,1,37,38],[596,4,4,38,42],[609,1,1,42,43]]],[19,4,4,43,47,[[629,1,1,43,44],[635,1,1,44,45],[639,1,1,45,46],[652,1,1,46,47]]],[20,2,2,47,49,[[661,1,1,47,48],[665,1,1,48,49]]],[22,21,21,49,70,[[679,2,2,49,51],[689,2,2,51,53],[694,1,1,53,54],[704,2,2,54,56],[710,1,1,56,57],[719,1,1,57,58],[720,1,1,58,59],[723,3,3,59,62],[729,3,3,62,65],[736,1,1,65,66],[739,1,1,66,67],[740,2,2,67,69],[742,1,1,69,70]]],[23,1,1,70,71,[[777,1,1,70,71]]],[26,1,1,71,72,[[858,1,1,71,72]]],[27,2,2,72,74,[[863,1,1,72,73],[871,1,1,73,74]]],[35,1,1,74,75,[[907,1,1,74,75]]]],[3296,5829,13007,13035,13546,13722,13739,13966,13970,14003,14012,14029,14089,14118,14138,14142,14238,14434,14438,14456,14534,14601,14604,14644,14674,14710,14713,14780,14865,15002,15281,15282,15446,15478,15480,15484,15499,15888,16021,16040,16042,16070,16160,16442,16610,16736,17118,17375,17444,17675,17680,17888,17889,17974,18139,18140,18260,18461,18486,18569,18574,18580,18674,18678,18680,18794,18846,18855,18856,18890,19791,22012,22124,22237,22808]]]]},{"k":"H6665","v":[["righteousness",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]]]},{"k":"H6666","v":[["*",[157,150,[[0,3,3,0,3,[[14,1,1,0,1],[17,1,1,1,2],[29,1,1,2,3]]],[4,6,6,3,9,[[158,1,1,3,4],[161,3,3,4,7],[176,1,1,7,8],[185,1,1,8,9]]],[6,2,1,9,10,[[215,2,1,9,10]]],[8,2,2,10,12,[[247,1,1,10,11],[261,1,1,11,12]]],[9,4,4,12,16,[[274,1,1,12,13],[285,1,1,13,14],[288,2,2,14,16]]],[10,3,3,16,19,[[293,1,1,16,17],[298,1,1,17,18],[300,1,1,18,19]]],[12,1,1,19,20,[[355,1,1,19,20]]],[13,2,2,20,22,[[372,1,1,20,21],[375,1,1,21,22]]],[15,1,1,22,23,[[414,1,1,22,23]]],[17,4,4,23,27,[[462,1,1,23,24],[468,1,1,24,25],[470,1,1,25,26],[472,1,1,26,27]]],[18,34,34,27,61,[[482,1,1,27,28],[488,1,1,28,29],[499,1,1,29,30],[501,1,1,30,31],[508,1,1,31,32],[510,1,1,32,33],[513,2,2,33,35],[517,1,1,35,36],[528,1,1,36,37],[546,1,1,37,38],[548,5,5,38,43],[549,2,2,43,45],[565,1,1,45,46],[566,1,1,46,47],[575,1,1,47,48],[576,1,1,48,49],[580,2,2,49,51],[583,2,2,51,53],[588,1,1,53,54],[589,2,2,54,56],[596,2,2,56,58],[620,2,2,58,60],[622,1,1,60,61]]],[19,18,17,61,78,[[635,2,2,61,63],[637,1,1,63,64],[638,5,5,64,69],[639,1,1,69,70],[640,1,1,70,71],[641,1,1,71,72],[642,1,1,72,73],[643,3,3,73,76],[648,3,2,76,78]]],[22,36,34,78,112,[[679,1,1,78,79],[683,3,3,79,82],[687,1,1,82,83],[688,1,1,83,84],[706,1,1,84,85],[710,3,2,85,87],[711,2,2,87,89],[723,3,3,89,92],[724,2,2,92,94],[726,2,2,94,96],[729,2,2,96,98],[732,2,2,98,100],[734,2,1,100,101],[735,1,1,101,102],[736,1,1,102,103],[737,4,4,103,107],[738,1,1,107,108],[739,2,2,108,110],[741,1,1,110,111],[742,1,1,111,112]]],[23,8,7,112,119,[[748,1,1,112,113],[753,1,1,113,114],[766,2,2,114,116],[767,1,1,116,117],[777,2,1,117,118],[795,1,1,118,119]]],[25,20,18,119,137,[[804,1,1,119,120],[815,2,2,120,122],[819,9,8,122,130],[834,7,6,130,136],[846,1,1,136,137]]],[26,3,3,137,140,[[858,3,3,137,140]]],[27,1,1,140,141,[[871,1,1,140,141]]],[28,1,1,141,142,[[877,1,1,141,142]]],[29,3,3,142,145,[[883,2,2,142,144],[884,1,1,144,145]]],[32,2,2,145,147,[[898,1,1,145,146],[899,1,1,146,147]]],[37,1,1,147,148,[[918,1,1,147,148]]],[38,2,2,148,150,[[927,1,1,148,149],[928,1,1,149,150]]]],[366,443,863,5111,5161,5162,5163,5538,5831,6634,7467,7928,8224,8539,8623,8627,8822,9017,9088,10904,11305,11372,12327,13487,13676,13728,13792,13981,14066,14235,14246,14332,14371,14444,14448,14535,14705,14962,14978,14991,14992,14995,15000,15001,15003,15320,15342,15492,15503,15555,15566,15654,15682,15796,15806,15812,15938,16040,16294,16304,16327,16620,16622,16658,16692,16693,16694,16706,16707,16747,16753,16806,16816,16848,16852,16871,16987,17005,17681,17746,17755,17762,17836,17872,18181,18275,18276,18284,18294,18569,18584,18585,18598,18599,18615,18632,18679,18681,18737,18740,18754,18777,18788,18809,18814,18816,18817,18838,18853,18854,18867,18891,19029,19199,19457,19469,19489,19790,20222,20522,20745,20751,20854,20868,20869,20870,20871,20873,20875,20876,21292,21293,21294,21296,21298,21299,21639,21995,22004,22006,22237,22334,22430,22447,22462,22653,22673,22984,23123,23140]]],["+",[4,4,[[22,1,1,0,1,[[724,1,1,0,1]]],[25,3,3,1,4,[[819,2,2,1,3],[834,1,1,3,4]]]],[18598,20873,20875,21298]]],["Righteousness",[2,2,[[19,2,2,0,2,[[640,1,1,0,1],[641,1,1,1,2]]]],[16753,16806]]],["acts",[3,2,[[6,2,1,0,1,[[215,2,1,0,1]]],[8,1,1,1,2,[[247,1,1,1,2]]]],[6634,7467]]],["justice",[15,15,[[0,1,1,0,1,[[17,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[9,1,1,2,3,[[274,1,1,2,3]]],[10,1,1,3,4,[[300,1,1,3,4]]],[12,1,1,4,5,[[355,1,1,4,5]]],[13,1,1,5,6,[[375,1,1,5,6]]],[17,1,1,6,7,[[472,1,1,6,7]]],[19,1,1,7,8,[[648,1,1,7,8]]],[22,4,4,8,12,[[687,1,1,8,9],[734,1,1,9,10],[737,2,2,10,12]]],[23,2,2,12,14,[[766,1,1,12,13],[767,1,1,13,14]]],[25,1,1,14,15,[[846,1,1,14,15]]]],[443,5831,8224,9088,10904,11372,13792,16987,17836,18754,18809,18814,19469,19489,21639]]],["moderately",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22334]]],["right",[9,9,[[9,1,1,0,1,[[285,1,1,0,1]]],[15,1,1,1,2,[[414,1,1,1,2]]],[25,7,7,2,9,[[819,4,4,2,6],[834,3,3,6,9]]]],[8539,12327,20854,20868,20870,20876,21294,21296,21299]]],["righteously",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18294]]],["righteousness",[118,115,[[0,2,2,0,2,[[14,1,1,0,1],[29,1,1,1,2]]],[4,5,5,2,7,[[158,1,1,2,3],[161,3,3,3,6],[176,1,1,6,7]]],[8,1,1,7,8,[[261,1,1,7,8]]],[9,2,2,8,10,[[288,2,2,8,10]]],[10,2,2,10,12,[[293,1,1,10,11],[298,1,1,11,12]]],[13,1,1,12,13,[[372,1,1,12,13]]],[17,3,3,13,16,[[462,1,1,13,14],[468,1,1,14,15],[470,1,1,15,16]]],[18,33,33,16,49,[[482,1,1,16,17],[488,1,1,17,18],[499,1,1,18,19],[501,1,1,19,20],[508,1,1,20,21],[510,1,1,21,22],[513,2,2,22,24],[517,1,1,24,25],[528,1,1,25,26],[546,1,1,26,27],[548,5,5,27,32],[549,2,2,32,34],[565,1,1,34,35],[566,1,1,35,36],[575,1,1,36,37],[576,1,1,37,38],[580,2,2,38,40],[583,2,2,40,42],[588,1,1,42,43],[589,2,2,43,45],[596,2,2,45,47],[620,1,1,47,48],[622,1,1,48,49]]],[19,15,14,49,63,[[635,2,2,49,51],[637,1,1,51,52],[638,5,5,52,57],[639,1,1,57,58],[642,1,1,58,59],[643,3,3,59,62],[648,2,1,62,63]]],[22,29,28,63,91,[[679,1,1,63,64],[683,3,3,64,67],[688,1,1,67,68],[706,1,1,68,69],[710,3,2,69,71],[711,1,1,71,72],[723,3,3,72,75],[724,1,1,75,76],[726,2,2,76,78],[729,2,2,78,80],[732,2,2,80,82],[734,1,1,82,83],[735,1,1,83,84],[736,1,1,84,85],[737,2,2,85,87],[738,1,1,87,88],[739,2,2,88,90],[741,1,1,90,91]]],[23,6,5,91,96,[[748,1,1,91,92],[753,1,1,92,93],[766,1,1,93,94],[777,2,1,94,95],[795,1,1,95,96]]],[25,8,8,96,104,[[804,1,1,96,97],[815,2,2,97,99],[819,3,3,99,102],[834,2,2,102,104]]],[26,2,2,104,106,[[858,2,2,104,106]]],[27,1,1,106,107,[[871,1,1,106,107]]],[29,3,3,107,110,[[883,2,2,107,109],[884,1,1,109,110]]],[32,2,2,110,112,[[898,1,1,110,111],[899,1,1,111,112]]],[37,1,1,112,113,[[918,1,1,112,113]]],[38,2,2,113,115,[[927,1,1,113,114],[928,1,1,114,115]]]],[366,863,5111,5161,5162,5163,5538,7928,8623,8627,8822,9017,11305,13487,13676,13728,13981,14066,14235,14246,14332,14371,14444,14448,14535,14705,14962,14978,14991,14992,14995,15000,15001,15003,15320,15342,15492,15503,15555,15566,15654,15682,15796,15806,15812,15938,16040,16294,16327,16620,16622,16658,16692,16693,16694,16706,16707,16747,16816,16848,16852,16871,17005,17681,17746,17755,17762,17872,18181,18275,18276,18284,18569,18584,18585,18599,18615,18632,18679,18681,18737,18740,18754,18777,18788,18816,18817,18838,18853,18854,18867,19029,19199,19457,19790,20222,20522,20745,20751,20869,20871,20873,21292,21293,21995,22004,22237,22430,22447,22462,22653,22673,22984,23123,23140]]],["righteousness'",[1,1,[[18,1,1,0,1,[[620,1,1,0,1]]]],[16304]]],["righteousnesses",[3,3,[[22,1,1,0,1,[[742,1,1,0,1]]],[25,1,1,1,2,[[834,1,1,1,2]]],[26,1,1,2,3,[[858,1,1,2,3]]]],[18891,21293,22006]]]]},{"k":"H6667","v":[["*",[62,61,[[10,2,2,0,2,[[312,2,2,0,2]]],[11,6,5,2,7,[[336,3,3,2,5],[337,3,2,5,7]]],[12,2,2,7,9,[[340,2,2,7,9]]],[13,4,4,9,13,[[384,2,2,9,11],[402,2,2,11,13]]],[15,1,1,13,14,[[422,1,1,13,14]]],[23,47,47,14,61,[[745,1,1,14,15],[765,3,3,15,18],[768,1,1,18,19],[771,2,2,19,21],[772,1,1,21,22],[773,3,3,22,25],[776,4,4,25,29],[778,5,5,29,34],[780,1,1,34,35],[781,5,5,35,40],[782,7,7,40,47],[783,5,5,47,52],[788,1,1,52,53],[793,1,1,53,54],[795,1,1,54,55],[796,6,6,55,61]]]],[9491,9504,10219,10220,10222,10224,10229,10376,10377,11552,11565,12003,12004,12550,18949,19441,19443,19447,19532,19599,19608,19619,19638,19656,19657,19732,19734,19735,19736,19803,19805,19807,19809,19822,19854,19875,19877,19891,19892,19895,19900,19909,19910,19911,19912,19914,19919,19924,19925,19927,19928,19929,20040,20161,20271,20277,20279,20281,20284,20286,20287]]],["Zedekiah",[61,60,[[10,2,2,0,2,[[312,2,2,0,2]]],[11,6,5,2,7,[[336,3,3,2,5],[337,3,2,5,7]]],[12,2,2,7,9,[[340,2,2,7,9]]],[13,4,4,9,13,[[384,2,2,9,11],[402,2,2,11,13]]],[23,47,47,13,60,[[745,1,1,13,14],[765,3,3,14,17],[768,1,1,17,18],[771,2,2,18,20],[772,1,1,20,21],[773,3,3,21,24],[776,4,4,24,28],[778,5,5,28,33],[780,1,1,33,34],[781,5,5,34,39],[782,7,7,39,46],[783,5,5,46,51],[788,1,1,51,52],[793,1,1,52,53],[795,1,1,53,54],[796,6,6,54,60]]]],[9491,9504,10219,10220,10222,10224,10229,10376,10377,11552,11565,12003,12004,18949,19441,19443,19447,19532,19599,19608,19619,19638,19656,19657,19732,19734,19735,19736,19803,19805,19807,19809,19822,19854,19875,19877,19891,19892,19895,19900,19909,19910,19911,19912,19914,19919,19924,19925,19927,19928,19929,20040,20161,20271,20277,20279,20281,20284,20286,20287]]],["Zidkijah",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12550]]]]},{"k":"H6668","v":[["+",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12228]]]]},{"k":"H6669","v":[["yellow",[3,3,[[2,3,3,0,3,[[102,3,3,0,3]]]],[3082,3084,3088]]]]},{"k":"H6670","v":[["*",[9,9,[[16,1,1,0,1,[[433,1,1,0,1]]],[18,1,1,1,2,[[581,1,1,1,2]]],[22,4,4,2,6,[[688,1,1,2,3],[690,1,1,3,4],[702,1,1,4,5],[732,1,1,5,6]]],[23,3,3,6,9,[[749,1,1,6,7],[775,1,1,7,8],[794,1,1,8,9]]]],[12832,15586,17880,17906,18109,18724,19066,19698,20177]]],["aloud",[2,2,[[22,2,2,0,2,[[702,1,1,0,1],[732,1,1,1,2]]]],[18109,18724]]],["bellow",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20177]]],["neighed",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19066]]],["out",[1,1,[[22,1,1,0,1,[[690,1,1,0,1]]]],[17906]]],["rejoiced",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12832]]],["shine",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15586]]],["shout",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19698]]],["up",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17880]]]]},{"k":"H6671","v":[["oil",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13447]]]]},{"k":"H6672","v":[["*",[24,24,[[0,3,3,0,3,[[5,1,1,0,1],[42,2,2,1,3]]],[4,1,1,3,4,[[180,1,1,3,4]]],[9,1,1,4,5,[[270,1,1,4,5]]],[10,4,4,5,9,[[308,3,3,5,8],[310,1,1,8,9]]],[11,1,1,9,10,[[316,1,1,9,10]]],[17,2,2,10,12,[[440,1,1,10,11],[446,1,1,11,12]]],[18,3,3,12,15,[[514,1,1,12,13],[532,1,1,13,14],[568,1,1,14,15]]],[21,1,1,15,16,[[671,1,1,15,16]]],[22,3,3,16,19,[[694,1,1,16,17],[736,1,1,17,18],[737,1,1,18,19]]],[23,3,3,19,22,[[750,1,1,19,20],[759,1,1,20,21],[764,1,1,21,22]]],[29,1,1,22,23,[[886,1,1,22,23]]],[35,1,1,23,24,[[907,1,1,23,24]]]],[153,1306,1315,5640,8125,9367,9368,9370,9424,9623,12965,13125,14456,14749,15401,17544,17972,18796,18810,19093,19323,19438,22490,22809]]],["+",[2,2,[[17,1,1,0,1,[[446,1,1,0,1]]],[23,1,1,1,2,[[764,1,1,1,2]]]],[13125,19438]]],["day",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22809]]],["midday",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9370]]],["noon",[11,11,[[0,2,2,0,2,[[42,2,2,0,2]]],[9,1,1,2,3,[[270,1,1,2,3]]],[10,3,3,3,6,[[308,2,2,3,5],[310,1,1,5,6]]],[11,1,1,6,7,[[316,1,1,6,7]]],[18,1,1,7,8,[[532,1,1,7,8]]],[21,1,1,8,9,[[671,1,1,8,9]]],[23,1,1,9,10,[[750,1,1,9,10]]],[29,1,1,10,11,[[886,1,1,10,11]]]],[1306,1315,8125,9367,9368,9424,9623,14749,17544,19093,22490]]],["noonday",[8,8,[[4,1,1,0,1,[[180,1,1,0,1]]],[17,1,1,1,2,[[440,1,1,1,2]]],[18,2,2,2,4,[[514,1,1,2,3],[568,1,1,3,4]]],[22,3,3,4,7,[[694,1,1,4,5],[736,1,1,5,6],[737,1,1,6,7]]],[23,1,1,7,8,[[759,1,1,7,8]]]],[5640,12965,14456,15401,17972,18796,18810,19323]]],["window",[1,1,[[0,1,1,0,1,[[5,1,1,0,1]]]],[153]]]]},{"k":"H6673","v":[["*",[9,3,[[22,8,2,0,2,[[706,8,2,0,2]]],[27,1,1,2,3,[[866,1,1,2,3]]]],[18174,18177,22163]]],["commandment",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22163]]],["precept",[8,2,[[22,8,2,0,2,[[706,8,2,0,2]]]],[18174,18177]]]]},{"k":"H6674","v":[["filthy",[2,2,[[37,2,2,0,2,[[913,2,2,0,2]]]],[22915,22916]]]]},{"k":"H6675","v":[["*",[3,3,[[19,1,1,0,1,[[657,1,1,0,1]]],[22,2,2,1,3,[[682,1,1,1,2],[706,1,1,2,3]]]],[17263,17737,18172]]],["+",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17263]]],["filth",[1,1,[[22,1,1,0,1,[[682,1,1,0,1]]]],[17737]]],["filthiness",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18172]]]]},{"k":"H6676","v":[["neck",[3,3,[[26,3,3,0,3,[[854,3,3,0,3]]]],[21881,21890,21903]]]]},{"k":"H6677","v":[["*",[43,40,[[0,8,6,0,6,[[26,2,2,0,2],[32,1,1,2,3],[40,1,1,3,4],[44,2,1,4,5],[45,2,1,5,6]]],[4,1,1,6,7,[[180,1,1,6,7]]],[5,2,1,7,8,[[196,2,1,7,8]]],[6,3,3,8,11,[[215,1,1,8,9],[218,2,2,9,11]]],[15,1,1,11,12,[[415,1,1,11,12]]],[17,3,3,12,15,[[450,1,1,12,13],[474,1,1,13,14],[476,1,1,14,15]]],[18,1,1,15,16,[[552,1,1,15,16]]],[21,4,4,16,20,[[671,1,1,16,17],[674,2,2,17,19],[677,1,1,19,20]]],[22,4,4,20,24,[[686,1,1,20,21],[688,1,1,21,22],[708,1,1,22,23],[730,1,1,23,24]]],[23,10,10,24,34,[[771,4,4,24,28],[772,4,4,28,32],[774,1,1,32,33],[783,1,1,33,34]]],[24,2,2,34,36,[[797,1,1,34,35],[801,1,1,35,36]]],[25,1,1,36,37,[[822,1,1,36,37]]],[27,1,1,37,38,[[871,1,1,37,38]]],[32,1,1,38,39,[[894,1,1,38,39]]],[34,1,1,39,40,[[905,1,1,39,40]]]],[743,767,964,1237,1372,1415,5659,6088,6653,6740,6745,12332,13229,13853,13910,15076,17547,17586,17591,17631,17815,17877,18245,18698,19598,19604,19607,19608,19628,19629,19630,19632,19675,19930,20324,20447,20973,22236,22598,22781]]],["+",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17591]]],["Zedekiah's",[1,1,[[23,1,1,0,1,[[783,1,1,0,1]]]],[19930]]],["neck",[31,29,[[0,8,6,0,6,[[26,2,2,0,2],[32,1,1,2,3],[40,1,1,3,4],[44,2,1,4,5],[45,2,1,5,6]]],[4,1,1,6,7,[[180,1,1,6,7]]],[17,3,3,7,10,[[450,1,1,7,8],[474,1,1,8,9],[476,1,1,9,10]]],[18,1,1,10,11,[[552,1,1,10,11]]],[21,3,3,11,14,[[671,1,1,11,12],[674,1,1,12,13],[677,1,1,13,14]]],[22,4,4,14,18,[[686,1,1,14,15],[688,1,1,15,16],[708,1,1,16,17],[730,1,1,17,18]]],[23,8,8,18,26,[[771,3,3,18,21],[772,4,4,21,25],[774,1,1,25,26]]],[24,1,1,26,27,[[797,1,1,26,27]]],[27,1,1,27,28,[[871,1,1,27,28]]],[34,1,1,28,29,[[905,1,1,28,29]]]],[743,767,964,1237,1372,1415,5659,13229,13853,13910,15076,17547,17586,17631,17815,17877,18245,18698,19598,19604,19607,19628,19629,19630,19632,19675,20324,22236,22781]]],["necks",[10,9,[[5,2,1,0,1,[[196,2,1,0,1]]],[6,3,3,1,4,[[215,1,1,1,2],[218,2,2,2,4]]],[15,1,1,4,5,[[415,1,1,4,5]]],[23,1,1,5,6,[[771,1,1,5,6]]],[24,1,1,6,7,[[801,1,1,6,7]]],[25,1,1,7,8,[[822,1,1,7,8]]],[32,1,1,8,9,[[894,1,1,8,9]]]],[6088,6653,6740,6745,12332,19608,20447,20973,22598]]]]},{"k":"H6678","v":[["*",[12,12,[[8,1,1,0,1,[[249,1,1,0,1]]],[9,6,6,1,7,[[274,3,3,1,4],[276,2,2,4,6],[289,1,1,6,7]]],[10,1,1,7,8,[[301,1,1,7,8]]],[12,4,4,8,12,[[355,3,3,8,11],[356,1,1,11,12]]]],[7555,8212,8214,8221,8246,8248,8689,9131,10893,10895,10899,10913]]],["+",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]]],[8689,10913]]],["Zoba",[2,2,[[9,2,2,0,2,[[276,2,2,0,2]]]],[8246,8248]]],["Zobah",[8,8,[[8,1,1,0,1,[[249,1,1,0,1]]],[9,3,3,1,4,[[274,3,3,1,4]]],[10,1,1,4,5,[[301,1,1,4,5]]],[12,3,3,5,8,[[355,3,3,5,8]]]],[7555,8212,8214,8221,9131,10893,10895,10899]]]]},{"k":"H6679","v":[["*",[18,15,[[0,3,3,0,3,[[26,3,3,0,3]]],[2,1,1,3,4,[[106,1,1,3,4]]],[5,1,1,4,5,[[195,1,1,4,5]]],[17,2,2,5,7,[[445,1,1,5,6],[473,1,1,6,7]]],[18,1,1,7,8,[[617,1,1,7,8]]],[19,1,1,8,9,[[633,1,1,8,9]]],[23,1,1,9,10,[[760,1,1,9,10]]],[24,3,2,10,12,[[799,2,1,10,11],[800,1,1,11,12]]],[25,4,2,12,14,[[814,4,2,12,14]]],[32,1,1,14,15,[[899,1,1,14,15]]]],[730,732,760,3248,6049,13102,13832,16274,16566,19352,20406,20438,20726,20728,22666]]],["+",[3,2,[[24,2,1,0,1,[[799,2,1,0,1]]],[25,1,1,1,2,[[814,1,1,1,2]]]],[20406,20728]]],["hunt",[10,9,[[0,1,1,0,1,[[26,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]],[18,1,1,2,3,[[617,1,1,2,3]]],[19,1,1,3,4,[[633,1,1,3,4]]],[23,1,1,4,5,[[760,1,1,4,5]]],[24,1,1,5,6,[[800,1,1,5,6]]],[25,3,2,6,8,[[814,3,2,6,8]]],[32,1,1,8,9,[[899,1,1,8,9]]]],[732,13832,16274,16566,19352,20438,20726,20728,22666]]],["huntest",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13102]]],["hunteth",[1,1,[[2,1,1,0,1,[[106,1,1,0,1]]]],[3248]]],["provision",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6049]]],["take",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[730]]],["taken",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[760]]]]},{"k":"H6680","v":[["*",[494,475,[[0,27,26,0,26,[[1,1,1,0,1],[2,2,2,1,3],[5,1,1,3,4],[6,3,3,4,7],[11,1,1,7,8],[17,1,1,8,9],[20,1,1,9,10],[25,1,1,10,11],[26,1,1,11,12],[27,2,2,12,14],[31,3,3,14,17],[41,1,1,17,18],[43,1,1,18,19],[44,1,1,19,20],[46,1,1,20,21],[48,2,2,21,23],[49,4,3,23,26]]],[1,54,54,26,80,[[50,1,1,26,27],[53,1,1,27,28],[54,1,1,28,29],[55,1,1,29,30],[56,4,4,30,34],[61,2,2,34,36],[65,4,4,36,40],[67,1,1,40,41],[68,1,1,41,42],[72,1,1,42,43],[74,1,1,43,44],[76,1,1,44,45],[78,1,1,45,46],[80,2,2,46,48],[81,1,1,48,49],[83,5,5,49,54],[84,4,4,54,58],[85,3,3,58,61],[87,1,1,61,62],[88,10,10,62,72],[89,8,8,72,80]]],[2,35,34,80,114,[[95,1,1,80,81],[96,3,2,81,83],[97,11,11,83,94],[98,5,5,94,99],[99,4,4,99,103],[102,1,1,103,104],[103,4,4,104,108],[105,1,1,108,109],[106,1,1,109,110],[113,2,2,110,112],[114,1,1,112,113],[116,1,1,113,114]]],[3,48,45,114,159,[[117,2,2,114,116],[118,2,2,116,118],[119,3,3,118,121],[120,1,1,121,122],[121,1,1,122,123],[124,3,3,123,126],[125,2,2,126,128],[131,3,2,128,130],[133,1,1,130,131],[135,1,1,131,132],[136,2,2,132,134],[142,1,1,134,135],[143,4,4,135,139],[144,1,1,139,140],[145,1,1,140,141],[146,2,2,141,143],[147,5,5,143,148],[148,2,2,148,150],[150,4,3,150,153],[151,1,1,153,154],[152,6,5,154,159]]],[4,88,86,159,245,[[153,5,5,159,164],[154,2,2,164,166],[155,3,3,166,169],[156,7,6,169,175],[157,5,5,175,180],[158,7,7,180,187],[159,1,1,187,188],[160,2,2,188,190],[161,2,2,190,192],[162,2,2,192,194],[163,5,5,194,199],[164,5,5,199,204],[165,2,2,204,206],[167,3,3,206,209],[169,1,1,209,210],[170,2,2,210,212],[171,2,2,212,214],[172,1,1,214,215],[176,3,3,215,218],[178,3,3,218,221],[179,5,4,221,225],[180,6,6,225,231],[181,1,1,231,232],[182,4,4,232,236],[183,6,6,236,242],[184,1,1,242,243],[185,1,1,243,244],[186,1,1,244,245]]],[5,43,39,245,284,[[187,7,7,245,252],[189,2,2,252,254],[190,6,5,254,259],[192,1,1,259,260],[193,1,1,260,261],[194,7,7,261,268],[195,1,1,268,269],[196,2,2,269,271],[197,5,3,271,274],[199,1,1,274,275],[200,2,2,275,277],[203,1,1,277,278],[204,1,1,278,279],[207,2,2,279,281],[208,3,2,281,283],[209,1,1,283,284]]],[6,6,6,284,290,[[212,1,1,284,285],[213,1,1,285,286],[214,1,1,286,287],[223,1,1,287,288],[231,2,2,288,290]]],[7,3,3,290,293,[[233,2,2,290,292],[234,1,1,292,293]]],[8,10,8,293,301,[[237,1,1,293,294],[248,3,2,294,296],[252,1,1,296,297],[253,1,1,297,298],[255,1,1,298,299],[256,2,1,299,300],[260,1,1,300,301]]],[9,19,17,301,318,[[270,1,1,301,302],[271,1,1,302,303],[272,1,1,303,304],[273,2,2,304,306],[275,1,1,306,307],[277,1,1,307,308],[279,3,2,308,310],[280,2,2,310,312],[283,2,2,312,314],[284,3,2,314,316],[287,1,1,316,317],[290,1,1,317,318]]],[10,18,17,318,335,[[291,1,1,318,319],[292,3,3,319,322],[295,2,2,322,324],[298,1,1,324,325],[299,1,1,325,326],[301,4,3,326,329],[303,2,2,329,331],[305,1,1,331,332],[307,2,2,332,334],[312,1,1,334,335]]],[11,19,18,335,353,[[323,3,3,335,338],[326,1,1,338,339],[328,2,2,339,341],[329,5,5,341,346],[330,2,2,346,348],[332,1,1,348,349],[333,2,1,349,350],[334,1,1,350,351],[335,2,2,351,353]]],[12,12,12,353,365,[[343,1,1,353,354],[351,1,1,354,355],[352,1,1,355,356],[353,2,2,356,358],[354,2,2,358,360],[359,4,4,360,364],[361,1,1,364,365]]],[13,8,8,365,373,[[373,2,2,365,367],[384,1,1,367,368],[385,1,1,368,369],[389,1,1,369,370],[391,1,1,370,371],[399,1,1,371,372],[400,1,1,372,373]]],[14,3,3,373,376,[[406,1,1,373,374],[410,1,1,374,375],[411,1,1,375,376]]],[15,7,7,376,383,[[413,2,2,376,378],[417,1,1,378,379],[419,1,1,379,380],[420,2,2,380,382],[421,1,1,382,383]]],[16,9,9,383,392,[[427,2,2,383,385],[428,2,2,385,387],[429,4,4,387,391],[433,1,1,391,392]]],[17,3,3,392,395,[[471,1,1,392,393],[472,1,1,393,394],[473,1,1,394,395]]],[18,15,15,395,410,[[484,1,1,395,396],[510,1,1,396,397],[519,1,1,397,398],[521,1,1,398,399],[545,1,1,399,400],[548,1,1,400,401],[555,2,2,401,403],[568,1,1,403,404],[582,1,1,404,405],[588,1,1,405,406],[596,2,2,406,408],[610,1,1,408,409],[625,1,1,409,410]]],[22,10,10,410,420,[[683,1,1,410,411],[688,1,1,411,412],[691,1,1,412,413],[701,1,1,413,414],[712,1,1,414,415],[716,1,1,415,416],[723,2,2,416,418],[726,1,1,418,419],[733,1,1,419,420]]],[23,39,37,420,457,[[745,2,2,420,422],[751,4,3,422,425],[755,3,2,425,427],[757,2,2,427,429],[758,1,1,429,430],[761,1,1,430,431],[763,1,1,431,432],[767,1,1,432,433],[770,2,2,433,435],[771,1,1,435,436],[773,1,1,436,437],[776,3,3,437,440],[778,1,1,440,441],[779,6,6,441,447],[780,3,3,447,450],[781,1,1,450,451],[782,2,2,451,453],[783,1,1,453,454],[791,1,1,454,455],[794,1,1,455,456],[795,1,1,456,457]]],[24,4,4,457,461,[[797,2,2,457,459],[798,1,1,459,460],[799,1,1,460,461]]],[25,6,6,461,467,[[810,1,1,461,462],[811,1,1,462,463],[813,1,1,463,464],[825,1,1,464,465],[838,2,2,465,467]]],[29,5,5,467,472,[[880,1,1,467,468],[884,1,1,468,469],[887,3,3,469,472]]],[33,1,1,472,473,[[900,1,1,472,473]]],[37,1,1,473,474,[[911,1,1,473,474]]],[38,1,1,474,475,[[928,1,1,474,475]]]],[46,66,72,159,164,168,175,318,443,517,703,735,774,779,932,945,947,1277,1325,1377,1431,1502,1506,1508,1518,1522,1554,1629,1638,1668,1687,1691,1695,1705,1844,1866,1963,1971,1979,1981,2022,2033,2159,2217,2292,2371,2426,2431,2446,2500,2507,2514,2528,2530,2532,2535,2541,2560,2567,2571,2572,2655,2665,2669,2671,2685,2690,2693,2695,2696,2706,2707,2723,2726,2728,2730,2732,2734,2736,2739,2858,2915,2917,2921,2922,2926,2930,2934,2938,2946,2948,2951,2952,2953,2958,2959,2960,2963,2974,2978,2990,2992,2995,3106,3115,3116,3147,3151,3235,3237,3448,3469,3490,3604,3623,3658,3691,3692,3708,3734,3743,3792,3794,3942,3959,3961,3970,3973,4176,4189,4255,4291,4320,4338,4493,4565,4573,4576,4577,4579,4648,4649,4664,4671,4685,4695,4705,4711,4743,4746,4818,4829,4845,4847,4881,4884,4885,4889,4892,4895,4908,4910,4911,4933,4942,4975,4993,4996,5003,5006,5009,5017,5018,5027,5044,5065,5068,5069,5085,5086,5087,5088,5092,5103,5106,5110,5111,5122,5138,5148,5169,5173,5191,5199,5216,5221,5230,5235,5236,5251,5254,5261,5268,5272,5277,5290,5324,5330,5334,5367,5402,5404,5413,5415,5444,5533,5543,5547,5579,5580,5582,5586,5589,5595,5596,5612,5619,5624,5625,5626,5656,5680,5710,5716,5719,5724,5733,5738,5742,5751,5753,5757,5804,5814,5848,5858,5860,5861,5862,5864,5867,5869,5896,5901,5913,5918,5920,5926,5927,5959,5987,6006,6010,6029,6031,6033,6035,6037,6061,6091,6104,6119,6122,6127,6160,6189,6192,6279,6301,6383,6389,6428,6431,6476,6565,6572,6605,6898,7112,7122,7158,7164,7178,7269,7498,7499,7638,7698,7759,7774,7891,8132,8157,8178,8187,8191,8238,8278,8345,8346,8364,8375,8463,8472,8483,8490,8594,8711,8752,8771,8813,8816,8884,8895,9043,9055,9118,9119,9146,9193,9205,9254,9321,9326,9511,9834,9838,9844,9902,9978,9979,9996,9998,10010,10017,10018,10030,10036,10099,10127,10157,10169,10186,10503,10790,10806,10835,10860,10869,10873,10970,10976,10977,10981,11034,11337,11341,11572,11585,11664,11708,11916,11953,12113,12218,12248,12303,12304,12396,12422,12494,12507,12525,12734,12744,12749,12759,12767,12770,12772,12779,12826,13768,13781,13805,14001,14375,14563,14575,14928,14979,15118,15136,15406,15614,15802,15902,16036,16172,16376,17745,17856,17909,18088,18319,18391,18572,18573,18619,18744,18953,18963,19141,19142,19150,19230,19234,19271,19272,19307,19379,19412,19516,19574,19580,19600,19658,19744,19754,19766,19823,19829,19831,19833,19837,19839,19841,19847,19850,19868,19895,19905,19922,19934,20080,20187,20271,20320,20327,20349,20391,20633,20639,20687,21074,21404,21407,22391,22461,22498,22499,22504,22698,22884,23142]]],["+",[157,153,[[0,9,9,0,9,[[1,1,1,0,1],[6,1,1,1,2],[17,1,1,2,3],[25,1,1,3,4],[27,1,1,4,5],[31,1,1,5,6],[43,1,1,6,7],[48,1,1,7,8],[49,1,1,8,9]]],[1,23,23,9,32,[[61,2,2,9,11],[65,1,1,11,12],[74,1,1,12,13],[76,1,1,13,14],[83,1,1,14,15],[87,1,1,15,16],[88,9,9,16,25],[89,7,7,25,32]]],[2,15,14,32,46,[[95,1,1,32,33],[96,2,1,33,34],[97,5,5,34,39],[98,1,1,39,40],[103,1,1,40,41],[105,1,1,41,42],[113,2,2,42,44],[114,1,1,44,45],[116,1,1,45,46]]],[3,31,31,46,77,[[117,2,2,46,48],[118,2,2,48,50],[119,1,1,50,51],[120,1,1,51,52],[121,1,1,52,53],[124,3,3,53,56],[125,1,1,56,57],[131,2,2,57,59],[142,1,1,59,60],[143,2,2,60,62],[144,1,1,62,63],[145,1,1,63,64],[146,1,1,64,65],[147,5,5,65,70],[148,1,1,70,71],[150,2,2,71,73],[151,1,1,73,74],[152,3,3,74,77]]],[4,11,11,77,88,[[153,2,2,77,79],[155,1,1,79,80],[179,2,2,80,82],[180,1,1,82,83],[181,1,1,83,84],[183,2,2,84,86],[184,1,1,86,87],[186,1,1,87,88]]],[5,17,14,88,102,[[187,2,2,88,90],[189,2,2,90,92],[190,4,3,92,95],[194,2,2,95,97],[197,4,2,97,99],[200,1,1,99,100],[203,1,1,100,101],[204,1,1,101,102]]],[6,3,3,102,105,[[212,1,1,102,103],[213,1,1,103,104],[231,1,1,104,105]]],[7,2,2,105,107,[[233,2,2,105,107]]],[8,1,1,107,108,[[253,1,1,107,108]]],[9,6,6,108,114,[[270,1,1,108,109],[275,1,1,109,110],[277,1,1,110,111],[279,1,1,111,112],[283,1,1,112,113],[284,1,1,113,114]]],[10,6,6,114,120,[[292,2,2,114,116],[298,1,1,116,117],[301,2,2,117,119],[312,1,1,119,120]]],[11,9,9,120,129,[[323,1,1,120,121],[328,1,1,121,122],[329,2,2,122,124],[330,1,1,124,125],[332,1,1,125,126],[334,1,1,126,127],[335,2,2,127,129]]],[12,1,1,129,130,[[359,1,1,129,130]]],[13,4,4,130,134,[[373,1,1,130,131],[384,1,1,131,132],[385,1,1,132,133],[400,1,1,133,134]]],[14,1,1,134,135,[[410,1,1,134,135]]],[15,2,2,135,137,[[413,2,2,135,137]]],[18,2,2,137,139,[[555,1,1,137,138],[610,1,1,138,139]]],[22,2,2,139,141,[[683,1,1,139,140],[716,1,1,140,141]]],[23,8,8,141,149,[[755,1,1,141,142],[776,1,1,142,143],[779,2,2,143,145],[780,2,2,145,147],[782,1,1,147,148],[795,1,1,148,149]]],[25,1,1,149,150,[[811,1,1,149,150]]],[29,2,2,150,152,[[887,2,2,150,152]]],[37,1,1,152,153,[[911,1,1,152,153]]]],[46,168,443,703,779,945,1325,1506,1508,1844,1866,1981,2217,2292,2528,2655,2665,2669,2671,2685,2690,2693,2695,2696,2706,2726,2728,2730,2732,2734,2736,2739,2858,2917,2926,2930,2934,2938,2946,2963,3116,3235,3448,3469,3490,3604,3623,3658,3691,3692,3743,3792,3794,3942,3959,3961,3970,4176,4189,4493,4565,4573,4579,4648,4664,4671,4685,4695,4705,4711,4746,4818,4829,4847,4881,4884,4889,4895,4908,5003,5586,5596,5619,5680,5751,5753,5804,5848,5861,5862,5896,5901,5920,5926,5927,6029,6033,6122,6127,6192,6279,6301,6565,6572,7122,7158,7164,7698,8132,8238,8278,8345,8472,8483,8771,8816,9043,9118,9119,9511,9844,9978,9996,10017,10030,10099,10157,10169,10186,10977,11337,11572,11585,11953,12218,12303,12304,15118,16172,17745,18391,19230,19744,19829,19837,19847,19868,19905,20271,20639,22498,22499,22884]]],["appoint",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8178]]],["appointed",[4,4,[[8,1,1,0,1,[[260,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[10,1,1,2,3,[[291,1,1,2,3]]],[15,1,1,3,4,[[417,1,1,3,4]]]],[7891,8463,8752,12396]]],["bade",[3,3,[[1,1,1,0,1,[[65,1,1,0,1]]],[7,1,1,1,2,[[234,1,1,1,2]]],[9,1,1,2,3,[[280,1,1,2,3]]]],[1971,7178,8375]]],["charge",[12,12,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,1,1,1,2,[[143,1,1,1,2]]],[4,1,1,2,3,[[183,1,1,2,3]]],[9,2,2,3,5,[[280,1,1,3,4],[284,1,1,4,5]]],[12,1,1,5,6,[[359,1,1,5,6]]],[15,1,1,6,7,[[419,1,1,6,7]]],[16,1,1,7,8,[[429,1,1,7,8]]],[18,1,1,8,9,[[568,1,1,8,9]]],[22,1,1,9,10,[[688,1,1,9,10]]],[23,2,2,10,12,[[783,1,1,10,11],[791,1,1,11,12]]]],[1668,4577,5742,8364,8483,10976,12422,12770,15406,17856,19934,20080]]],["charged",[13,13,[[0,2,2,0,2,[[27,1,1,0,1],[48,1,1,1,2]]],[1,1,1,2,3,[[50,1,1,2,3]]],[5,1,1,3,4,[[208,1,1,3,4]]],[9,1,1,4,5,[[284,1,1,4,5]]],[10,2,2,5,7,[[292,1,1,5,6],[303,1,1,6,7]]],[11,2,2,7,9,[[329,2,2,7,9]]],[12,1,1,9,10,[[359,1,1,9,10]]],[16,2,2,10,12,[[427,2,2,10,12]]],[23,1,1,12,13,[[779,1,1,12,13]]]],[774,1502,1554,6431,8490,8813,9193,9998,10018,10970,12734,12744,19831]]],["command",[64,63,[[0,2,2,0,2,[[26,1,1,0,1],[49,1,1,1,2]]],[1,3,3,2,5,[[56,1,1,2,3],[67,1,1,3,4],[83,1,1,4,5]]],[2,4,4,5,9,[[102,1,1,5,6],[103,3,3,6,9]]],[3,2,2,9,11,[[125,1,1,9,10],[152,1,1,10,11]]],[4,39,38,11,49,[[154,1,1,11,12],[156,3,2,12,14],[158,2,2,14,16],[159,1,1,16,17],[160,2,2,17,19],[162,1,1,19,20],[163,5,5,20,25],[164,4,4,25,29],[165,1,1,29,30],[167,3,3,30,33],[170,1,1,33,34],[171,2,2,34,36],[176,2,2,36,38],[179,3,3,38,41],[180,4,4,41,45],[182,4,4,45,49]]],[5,1,1,49,50,[[190,1,1,49,50]]],[10,2,2,50,52,[[295,1,1,50,51],[301,1,1,51,52]]],[18,2,2,52,54,[[519,1,1,52,53],[521,1,1,53,54]]],[22,1,1,54,55,[[723,1,1,54,55]]],[23,6,6,55,61,[[745,2,2,55,57],[755,1,1,57,58],[770,1,1,58,59],[771,1,1,59,60],[778,1,1,60,61]]],[24,1,1,61,62,[[797,1,1,61,62]]],[29,1,1,62,63,[[887,1,1,62,63]]]],[735,1522,1687,2022,2507,3106,3115,3147,3151,3973,4885,4942,5006,5044,5088,5092,5122,5138,5148,5199,5216,5221,5230,5235,5236,5251,5254,5268,5272,5290,5324,5330,5334,5402,5413,5415,5543,5547,5586,5589,5595,5612,5624,5625,5626,5710,5716,5719,5724,5913,8884,9146,14563,14575,18572,18953,18963,19230,19574,19600,19823,20320,22504]]],["commanded",[219,214,[[0,13,13,0,13,[[2,2,2,0,2],[5,1,1,2,3],[6,2,2,3,5],[11,1,1,5,6],[20,1,1,6,7],[31,2,2,7,9],[41,1,1,9,10],[44,1,1,10,11],[46,1,1,11,12],[49,1,1,12,13]]],[1,23,23,13,36,[[53,1,1,13,14],[54,1,1,14,15],[56,3,3,15,18],[65,1,1,18,19],[68,1,1,19,20],[72,1,1,20,21],[78,1,1,21,22],[80,2,2,22,24],[81,1,1,24,25],[83,3,3,25,28],[84,4,4,28,32],[85,2,2,32,34],[88,1,1,34,35],[89,1,1,35,36]]],[2,16,16,36,52,[[96,1,1,36,37],[97,6,6,37,43],[98,4,4,43,47],[99,4,4,47,51],[106,1,1,51,52]]],[3,13,13,52,65,[[119,2,2,52,54],[131,1,1,54,55],[133,1,1,55,56],[135,1,1,56,57],[136,2,2,57,59],[143,1,1,59,60],[146,1,1,60,61],[150,2,2,61,63],[152,2,2,63,65]]],[4,35,35,65,100,[[153,3,3,65,68],[155,2,2,68,70],[156,3,3,70,73],[157,5,5,73,78],[158,5,5,78,83],[161,2,2,83,85],[162,1,1,85,86],[164,1,1,86,87],[165,1,1,87,88],[169,1,1,88,89],[170,1,1,89,90],[172,1,1,90,91],[176,1,1,91,92],[178,3,3,92,95],[180,1,1,95,96],[183,3,3,96,99],[185,1,1,99,100]]],[5,22,21,100,121,[[187,3,3,100,103],[190,1,1,103,104],[192,1,1,104,105],[193,1,1,105,106],[194,5,5,106,111],[195,1,1,111,112],[196,2,2,112,114],[197,1,1,114,115],[199,1,1,115,116],[200,1,1,116,117],[207,2,2,117,119],[208,2,1,119,120],[209,1,1,120,121]]],[6,3,3,121,124,[[214,1,1,121,122],[223,1,1,122,123],[231,1,1,123,124]]],[8,8,6,124,130,[[237,1,1,124,125],[248,3,2,125,127],[252,1,1,127,128],[255,1,1,128,129],[256,2,1,129,130]]],[9,7,7,130,137,[[271,1,1,130,131],[273,2,2,131,133],[279,2,2,133,135],[287,1,1,135,136],[290,1,1,136,137]]],[10,7,7,137,144,[[295,1,1,137,138],[299,1,1,138,139],[301,1,1,139,140],[303,1,1,140,141],[305,1,1,141,142],[307,2,2,142,144]]],[11,8,7,144,151,[[323,2,2,144,146],[326,1,1,146,147],[328,1,1,147,148],[329,1,1,148,149],[330,1,1,149,150],[333,2,1,150,151]]],[12,9,9,151,160,[[343,1,1,151,152],[351,1,1,152,153],[352,1,1,153,154],[353,2,2,154,156],[354,2,2,156,158],[359,1,1,158,159],[361,1,1,159,160]]],[13,4,4,160,164,[[373,1,1,160,161],[389,1,1,161,162],[391,1,1,162,163],[399,1,1,163,164]]],[14,2,2,164,166,[[406,1,1,164,165],[411,1,1,165,166]]],[15,2,2,166,168,[[420,2,2,166,168]]],[16,4,4,168,172,[[428,2,2,168,170],[429,1,1,170,171],[433,1,1,171,172]]],[17,1,1,172,173,[[473,1,1,172,173]]],[18,9,9,173,182,[[484,1,1,173,174],[510,1,1,174,175],[545,1,1,175,176],[555,1,1,176,177],[582,1,1,177,178],[588,1,1,178,179],[596,2,2,179,181],[625,1,1,181,182]]],[22,4,4,182,186,[[691,1,1,182,183],[712,1,1,183,184],[723,1,1,184,185],[726,1,1,185,186]]],[23,21,20,186,206,[[751,4,3,186,189],[755,1,1,189,190],[757,2,2,190,192],[758,1,1,192,193],[761,1,1,193,194],[763,1,1,194,195],[767,1,1,195,196],[770,1,1,196,197],[773,1,1,197,198],[776,1,1,198,199],[779,3,3,199,202],[780,1,1,202,203],[781,1,1,203,204],[782,1,1,204,205],[794,1,1,205,206]]],[24,2,2,206,208,[[797,1,1,206,207],[798,1,1,207,208]]],[25,5,5,208,213,[[810,1,1,208,209],[813,1,1,209,210],[825,1,1,210,211],[838,2,2,211,213]]],[29,1,1,213,214,[[880,1,1,213,214]]]],[66,72,159,164,175,318,517,932,947,1277,1377,1431,1518,1629,1638,1691,1695,1705,1963,2033,2159,2371,2426,2431,2446,2500,2514,2530,2532,2535,2541,2560,2567,2571,2707,2723,2915,2921,2922,2948,2951,2952,2953,2958,2959,2960,2974,2978,2990,2992,2995,3237,3708,3734,4176,4255,4291,4320,4338,4576,4649,4829,4845,4881,4892,4910,4911,4933,4993,4996,5009,5017,5018,5065,5068,5069,5085,5086,5087,5103,5106,5110,5111,5169,5173,5191,5261,5277,5367,5404,5444,5533,5579,5580,5582,5656,5733,5738,5757,5814,5858,5860,5864,5918,5959,5987,6006,6010,6031,6035,6037,6061,6091,6104,6119,6160,6189,6383,6389,6428,6476,6605,6898,7112,7269,7498,7499,7638,7759,7774,8157,8187,8191,8345,8346,8594,8711,8895,9055,9118,9205,9254,9321,9326,9834,9838,9902,9979,10010,10036,10127,10503,10790,10806,10835,10860,10869,10873,10981,11034,11341,11664,11708,11916,12113,12248,12494,12507,12749,12759,12779,12826,13805,14001,14375,14928,15136,15614,15802,15902,16036,16376,17909,18319,18573,18619,19141,19142,19150,19234,19271,19272,19307,19379,19412,19516,19580,19658,19766,19833,19839,19841,19850,19895,19922,20187,20327,20349,20633,20687,21074,21404,21407,22391]]],["commandedst",[2,2,[[15,1,1,0,1,[[421,1,1,0,1]]],[23,1,1,1,2,[[776,1,1,1,2]]]],[12525,19754]]],["commander",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18744]]],["commandest",[2,2,[[5,2,2,0,2,[[187,2,2,0,2]]]],[5867,5869]]],["commandeth",[6,6,[[1,1,1,0,1,[[65,1,1,0,1]]],[3,1,1,1,2,[[148,1,1,1,2]]],[17,2,2,2,4,[[471,1,1,2,3],[472,1,1,3,4]]],[24,1,1,4,5,[[799,1,1,4,5]]],[29,1,1,5,6,[[884,1,1,5,6]]]],[1979,4743,13768,13781,20391,22461]]],["commandment",[6,6,[[1,1,1,0,1,[[85,1,1,0,1]]],[16,2,2,1,3,[[429,2,2,1,3]]],[18,1,1,3,4,[[548,1,1,3,4]]],[22,1,1,4,5,[[701,1,1,4,5]]],[33,1,1,5,6,[[900,1,1,5,6]]]],[2572,12767,12772,14979,18088,22698]]],["forbad",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4975]]],["forbidden",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5027]]],["messenger",[1,1,[[0,1,1,0,1,[[49,1,1,0,1]]]],[1522]]],["unto",[1,1,[[38,1,1,0,1,[[928,1,1,0,1]]]],[23142]]]]},{"k":"H6681","v":[["shout",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18491]]]]},{"k":"H6682","v":[["*",[4,4,[[18,1,1,0,1,[[621,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]],[23,2,2,2,4,[[758,1,1,2,3],[790,1,1,3,4]]]],[16319,18106,19295,20057]]],["complaining",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16319]]],["cry",[2,2,[[23,2,2,0,2,[[758,1,1,0,1],[790,1,1,1,2]]]],[19295,20057]]],["crying",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18106]]]]},{"k":"H6683","v":[["deep",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18560]]]]},{"k":"H6684","v":[["*",[21,17,[[6,1,1,0,1,[[230,1,1,0,1]]],[8,2,2,1,3,[[242,1,1,1,2],[266,1,1,2,3]]],[9,5,5,3,8,[[267,1,1,3,4],[278,4,4,4,8]]],[10,1,1,8,9,[[311,1,1,8,9]]],[12,1,1,9,10,[[347,1,1,9,10]]],[14,1,1,10,11,[[410,1,1,10,11]]],[15,1,1,11,12,[[413,1,1,11,12]]],[16,2,1,12,13,[[429,2,1,12,13]]],[22,3,2,13,15,[[736,3,2,13,15]]],[23,1,1,15,16,[[758,1,1,15,16]]],[37,3,1,16,17,[[917,3,1,16,17]]]],[7080,7358,8022,8034,8302,8307,8308,8309,9478,10671,12224,12300,12778,18789,18790,19305,22967]]],["+",[4,3,[[9,1,1,0,1,[[278,1,1,0,1]]],[15,1,1,1,2,[[413,1,1,1,2]]],[37,2,1,2,3,[[917,2,1,2,3]]]],[8302,12300,22967]]],["fast",[7,5,[[9,2,2,0,2,[[278,2,2,0,2]]],[16,2,1,2,3,[[429,2,1,2,3]]],[22,2,1,3,4,[[736,2,1,3,4]]],[23,1,1,4,5,[[758,1,1,4,5]]]],[8307,8309,12778,18790,19305]]],["fasted",[10,10,[[6,1,1,0,1,[[230,1,1,0,1]]],[8,2,2,1,3,[[242,1,1,1,2],[266,1,1,2,3]]],[9,2,2,3,5,[[267,1,1,3,4],[278,1,1,4,5]]],[10,1,1,5,6,[[311,1,1,5,6]]],[12,1,1,6,7,[[347,1,1,6,7]]],[14,1,1,7,8,[[410,1,1,7,8]]],[22,1,1,8,9,[[736,1,1,8,9]]],[37,1,1,9,10,[[917,1,1,9,10]]]],[7080,7358,8022,8034,8308,9478,10671,12224,18789,22967]]]]},{"k":"H6685","v":[["*",[26,22,[[9,1,1,0,1,[[278,1,1,0,1]]],[10,2,2,1,3,[[311,2,2,1,3]]],[13,1,1,3,4,[[386,1,1,3,4]]],[14,1,1,4,5,[[410,1,1,4,5]]],[15,1,1,5,6,[[421,1,1,5,6]]],[16,2,2,6,8,[[429,1,1,6,7],[434,1,1,7,8]]],[18,3,3,8,11,[[512,1,1,8,9],[546,1,1,9,10],[586,1,1,10,11]]],[22,4,3,11,14,[[736,4,3,11,14]]],[23,2,2,14,16,[[780,2,2,14,16]]],[26,1,1,16,17,[[858,1,1,16,17]]],[28,3,3,17,20,[[876,1,1,17,18],[877,2,2,18,20]]],[31,1,1,20,21,[[891,1,1,20,21]]],[37,4,1,21,22,[[918,4,1,21,22]]]],[8302,9460,9463,11590,12222,12512,12765,12865,14423,14945,15779,18789,18791,18792,19848,19851,21991,22305,22323,22326,22563,22995]]],["+",[2,2,[[9,1,1,0,1,[[278,1,1,0,1]]],[18,1,1,1,2,[[586,1,1,1,2]]]],[8302,15779]]],["fast",[16,12,[[10,2,2,0,2,[[311,2,2,0,2]]],[13,1,1,2,3,[[386,1,1,2,3]]],[14,1,1,3,4,[[410,1,1,3,4]]],[22,4,3,4,7,[[736,4,3,4,7]]],[23,1,1,7,8,[[780,1,1,7,8]]],[28,2,2,8,10,[[876,1,1,8,9],[877,1,1,9,10]]],[31,1,1,10,11,[[891,1,1,10,11]]],[37,4,1,11,12,[[918,4,1,11,12]]]],[9460,9463,11590,12222,18789,18791,18792,19851,22305,22326,22563,22995]]],["fasting",[7,7,[[15,1,1,0,1,[[421,1,1,0,1]]],[16,1,1,1,2,[[429,1,1,1,2]]],[18,2,2,2,4,[[512,1,1,2,3],[546,1,1,3,4]]],[23,1,1,4,5,[[780,1,1,4,5]]],[26,1,1,5,6,[[858,1,1,5,6]]],[28,1,1,6,7,[[877,1,1,6,7]]]],[12512,12765,14423,14945,19848,21991,22323]]],["fastings",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12865]]]]},{"k":"H6686","v":[["Zuar",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3612,3663,3868,3873,4003]]]]},{"k":"H6687","v":[["*",[3,3,[[4,1,1,0,1,[[163,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]]],[5212,9680,20408]]],["+",[1,1,[[4,1,1,0,1,[[163,1,1,0,1]]]],[5212]]],["flowed",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20408]]],["swim",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9680]]]]},{"k":"H6688","v":[["+",[2,2,[[18,1,1,0,1,[[496,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]]],[14178,16864]]]]},{"k":"H6689","v":[["*",[4,4,[[8,2,2,0,2,[[236,1,1,0,1],[244,1,1,1,2]]],[12,2,2,2,4,[[343,2,2,2,4]]]],[7213,7396,10480,10489]]],["Zophai",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10480]]],["Zuph",[3,3,[[8,2,2,0,2,[[236,1,1,0,1],[244,1,1,1,2]]],[12,1,1,2,3,[[343,1,1,2,3]]]],[7213,7396,10489]]]]},{"k":"H6690","v":[["Zophah",[2,2,[[12,2,2,0,2,[[344,2,2,0,2]]]],[10570,10571]]]]},{"k":"H6691","v":[["Zophar",[4,4,[[17,4,4,0,4,[[437,1,1,0,1],[446,1,1,1,2],[455,1,1,2,3],[477,1,1,3,4]]]],[12902,13109,13327,13931]]]]},{"k":"H6692","v":[["*",[9,9,[[3,1,1,0,1,[[133,1,1,0,1]]],[18,5,5,1,6,[[549,1,1,1,2],[567,1,1,2,3],[569,1,1,3,4],[580,1,1,4,5],[609,1,1,5,6]]],[21,1,1,6,7,[[672,1,1,6,7]]],[22,1,1,7,8,[[705,1,1,7,8]]],[25,1,1,8,9,[[808,1,1,8,9]]]],[4252,15016,15384,15418,15564,16169,17563,18157,20587]]],["bloomed",[1,1,[[3,1,1,0,1,[[133,1,1,0,1]]]],[4252]]],["blossom",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18157]]],["blossomed",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20587]]],["flourish",[3,3,[[18,3,3,0,3,[[549,1,1,0,1],[569,1,1,1,2],[609,1,1,2,3]]]],[15016,15418,16169]]],["flourisheth",[2,2,[[18,2,2,0,2,[[567,1,1,0,1],[580,1,1,1,2]]]],[15384,15564]]],["himself",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17563]]]]},{"k":"H6693","v":[["*",[11,10,[[4,3,3,0,3,[[180,3,3,0,3]]],[6,2,2,3,5,[[224,1,1,3,4],[226,1,1,4,5]]],[17,1,1,5,6,[[467,1,1,5,6]]],[22,4,3,6,9,[[707,2,2,6,8],[729,2,1,8,9]]],[23,1,1,9,10,[[763,1,1,9,10]]]],[5664,5666,5668,6926,6965,13646,18195,18200,18686,19416]]],["constraineth",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13646]]],["distress",[5,5,[[4,3,3,0,3,[[180,3,3,0,3]]],[22,2,2,3,5,[[707,2,2,3,5]]]],[5664,5666,5668,18195,18200]]],["oppressor",[2,1,[[22,2,1,0,1,[[729,2,1,0,1]]]],[18686]]],["pressed",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6965]]],["sore",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6926]]],["straiten",[1,1,[[23,1,1,0,1,[[763,1,1,0,1]]]],[19416]]]]},{"k":"H6694","v":[["*",[3,3,[[17,2,2,0,2,[[463,1,1,0,1],[464,1,1,1,2]]],[22,1,1,2,3,[[704,1,1,2,3]]]],[13506,13538,18146]]],["+",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13538]]],["molten",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13506]]],["out",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18146]]]]},{"k":"H6695","v":[["*",[4,4,[[19,1,1,0,1,[[628,1,1,0,1]]],[22,2,2,1,3,[[686,1,1,1,2],[708,1,1,2,3]]],[26,1,1,3,4,[[858,1,1,3,4]]]],[16427,17829,18223,22013]]],["anguish",[3,3,[[19,1,1,0,1,[[628,1,1,0,1]]],[22,2,2,1,3,[[686,1,1,1,2],[708,1,1,2,3]]]],[16427,17829,18223]]],["troublous",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22013]]]]},{"k":"H6696","v":[["*",[38,38,[[1,2,2,0,2,[[72,1,1,0,1],[81,1,1,1,2]]],[4,5,5,2,7,[[154,2,2,2,4],[166,1,1,4,5],[172,2,2,5,7]]],[6,1,1,7,8,[[219,1,1,7,8]]],[8,1,1,8,9,[[258,1,1,8,9]]],[9,2,2,9,11,[[277,1,1,9,10],[286,1,1,10,11]]],[10,4,4,11,15,[[297,1,1,11,12],[305,1,1,12,13],[306,1,1,13,14],[310,1,1,14,15]]],[11,8,8,15,23,[[317,1,1,15,16],[318,2,2,16,18],[324,1,1,18,19],[328,1,1,19,20],[329,1,1,20,21],[330,1,1,21,22],[336,1,1,22,23]]],[12,1,1,23,24,[[357,1,1,23,24]]],[13,1,1,24,25,[[394,1,1,24,25]]],[16,1,1,25,26,[[433,1,1,25,26]]],[18,1,1,26,27,[[616,1,1,26,27]]],[21,1,1,27,28,[[678,1,1,27,28]]],[22,2,2,28,30,[[699,1,1,28,29],[707,1,1,29,30]]],[23,5,5,30,35,[[765,2,2,30,32],[776,1,1,32,33],[781,1,1,33,34],[783,1,1,34,35]]],[25,2,2,35,37,[[805,1,1,35,36],[806,1,1,36,37]]],[26,1,1,37,38,[[850,1,1,37,38]]]],[2166,2442,4947,4957,5315,5439,5446,6785,7818,8260,8569,8949,9276,9300,9409,9670,9698,9699,9860,9968,9988,10033,10213,10927,11784,12828,16244,17649,18037,18196,19444,19449,19733,19879,19924,20532,20549,21738]]],["+",[23,23,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,2,2,1,3,[[172,2,2,1,3]]],[6,1,1,3,4,[[219,1,1,3,4]]],[8,1,1,4,5,[[258,1,1,4,5]]],[9,2,2,5,7,[[277,1,1,5,6],[286,1,1,6,7]]],[10,3,3,7,10,[[297,1,1,7,8],[306,1,1,8,9],[310,1,1,9,10]]],[11,6,6,10,16,[[318,2,2,10,12],[328,1,1,12,13],[329,1,1,13,14],[330,1,1,14,15],[336,1,1,15,16]]],[12,1,1,16,17,[[357,1,1,16,17]]],[21,1,1,17,18,[[678,1,1,17,18]]],[23,4,4,18,22,[[765,2,2,18,20],[776,1,1,20,21],[781,1,1,21,22]]],[26,1,1,22,23,[[850,1,1,22,23]]]],[2166,5439,5446,6785,7818,8260,8569,8949,9300,9409,9698,9699,9968,9988,10033,10213,10927,17649,19444,19449,19733,19879,21738]]],["Distress",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4947]]],["assault",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12828]]],["bags",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9860]]],["beset",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16244]]],["besiege",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18037]]],["besieged",[1,1,[[23,1,1,0,1,[[783,1,1,0,1]]]],[19924]]],["bind",[1,1,[[25,1,1,0,1,[[806,1,1,0,1]]]],[20549]]],["bound",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9670]]],["distress",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4957]]],["distressed",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11784]]],["fashioned",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2442]]],["siege",[3,3,[[10,1,1,0,1,[[305,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]],[25,1,1,2,3,[[805,1,1,2,3]]]],[9276,18196,20532]]],["up",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5315]]]]},{"k":"H6697","v":[["*",[76,72,[[1,4,3,0,3,[[66,2,1,0,1],[82,2,2,1,3]]],[3,1,1,3,4,[[139,1,1,3,4]]],[4,9,8,4,12,[[160,1,1,4,5],[184,8,7,5,12]]],[6,3,3,12,15,[[216,1,1,12,13],[217,1,1,13,14],[223,1,1,14,15]]],[8,2,2,15,17,[[237,1,1,15,16],[259,1,1,16,17]]],[9,6,5,17,22,[[287,1,1,17,18],[288,4,3,18,21],[289,1,1,21,22]]],[12,1,1,22,23,[[348,1,1,22,23]]],[17,7,7,23,30,[[449,1,1,23,24],[453,1,1,24,25],[454,1,1,25,26],[457,1,1,26,27],[459,1,1,27,28],[463,1,1,28,29],[464,1,1,29,30]]],[18,26,26,30,56,[[495,3,3,30,33],[496,1,1,33,34],[504,1,1,34,35],[505,1,1,35,36],[508,1,1,36,37],[526,1,1,37,38],[538,1,1,38,39],[539,3,3,39,42],[548,1,1,42,43],[550,1,1,43,44],[555,3,3,44,47],[558,1,1,47,48],[566,2,2,48,50],[569,1,1,50,51],[571,1,1,51,52],[572,1,1,52,53],[582,1,1,53,54],[591,1,1,54,55],[621,1,1,55,56]]],[19,1,1,56,57,[[657,1,1,56,57]]],[22,12,11,57,68,[[680,3,3,57,60],[686,1,1,60,61],[688,1,1,61,62],[695,1,1,62,63],[704,1,1,63,64],[708,1,1,64,65],[722,1,1,65,66],[726,2,1,66,67],[729,1,1,67,68]]],[23,2,2,68,70,[[762,1,1,68,69],[765,1,1,69,70]]],[33,1,1,70,71,[[900,1,1,70,71]]],[34,1,1,71,72,[[903,1,1,71,72]]]],[1989,2494,2495,4425,5152,5762,5771,5773,5776,5788,5789,5795,6675,6719,6903,7242,7841,8590,8605,8634,8649,8656,10688,13199,13280,13321,13413,13444,13514,13538,14120,14149,14164,14182,14290,14300,14333,14662,14821,14829,14833,14834,14979,15046,15128,15133,15148,15233,15352,15369,15426,15453,15455,15647,15830,16306,17270,17695,17704,17706,17821,17876,17993,18134,18246,18541,18635,18674,19398,19453,22690,22743]]],["+",[4,4,[[4,1,1,0,1,[[160,1,1,0,1]]],[18,1,1,1,2,[[558,1,1,1,2]]],[22,1,1,2,3,[[726,1,1,2,3]]],[23,1,1,3,4,[[762,1,1,3,4]]]],[5152,15233,18635,19398]]],["God",[2,2,[[22,1,1,0,1,[[722,1,1,0,1]]],[34,1,1,1,2,[[903,1,1,1,2]]]],[18541,22743]]],["One",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18246]]],["Rock",[6,6,[[4,5,5,0,5,[[184,5,5,0,5]]],[9,1,1,5,6,[[289,1,1,5,6]]]],[5762,5773,5776,5788,5789,8656]]],["beauty",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14662]]],["edge",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15369]]],["rock",[47,45,[[1,4,3,0,3,[[66,2,1,0,1],[82,2,2,1,3]]],[4,3,3,3,6,[[184,3,3,3,6]]],[6,3,3,6,9,[[216,1,1,6,7],[217,1,1,7,8],[223,1,1,8,9]]],[8,1,1,9,10,[[237,1,1,9,10]]],[9,5,4,10,14,[[287,1,1,10,11],[288,4,3,11,14]]],[12,1,1,14,15,[[348,1,1,14,15]]],[17,5,5,15,20,[[449,1,1,15,16],[453,1,1,16,17],[454,1,1,17,18],[459,1,1,18,19],[464,1,1,19,20]]],[18,17,17,20,37,[[495,2,2,20,22],[504,1,1,22,23],[505,1,1,23,24],[508,1,1,24,25],[538,1,1,25,26],[539,3,3,26,29],[555,2,2,29,31],[566,1,1,31,32],[569,1,1,32,33],[571,1,1,33,34],[572,1,1,34,35],[582,1,1,35,36],[591,1,1,36,37]]],[19,1,1,37,38,[[657,1,1,37,38]]],[22,6,6,38,44,[[680,1,1,38,39],[686,1,1,39,40],[688,1,1,40,41],[695,1,1,41,42],[726,1,1,42,43],[729,1,1,43,44]]],[23,1,1,44,45,[[765,1,1,44,45]]]],[1989,2494,2495,5771,5789,5795,6675,6719,6903,7242,8590,8605,8634,8649,10688,13199,13280,13321,13444,13538,14149,14164,14290,14300,14333,14821,14829,14833,14834,15133,15148,15352,15426,15453,15455,15647,15830,17270,17695,17821,17876,17993,18635,18674,19453]]],["rocks",[7,7,[[3,1,1,0,1,[[139,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]],[17,1,1,2,3,[[463,1,1,2,3]]],[18,1,1,3,4,[[555,1,1,3,4]]],[22,2,2,4,6,[[680,2,2,4,6]]],[33,1,1,6,7,[[900,1,1,6,7]]]],[4425,7841,13514,15128,17704,17706,22690]]],["stones",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13413]]],["strength",[5,5,[[18,4,4,0,4,[[495,1,1,0,1],[496,1,1,1,2],[550,1,1,2,3],[621,1,1,3,4]]],[22,1,1,4,5,[[704,1,1,4,5]]]],[14120,14182,15046,16306,18134]]],["strong",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14979]]]]},{"k":"H6698","v":[["Zur",[5,5,[[3,2,2,0,2,[[141,1,1,0,1],[147,1,1,1,2]]],[5,1,1,2,3,[[199,1,1,2,3]]],[12,2,2,3,5,[[345,1,1,3,4],[346,1,1,4,5]]]],[4486,4672,6175,10605,10651]]]]},{"k":"H6699","v":[["*",[4,1,[[25,4,1,0,1,[[844,4,1,0,1]]]],[21583]]],["form",[2,1,[[25,2,1,0,1,[[844,2,1,0,1]]]],[21583]]],["forms",[2,1,[[25,2,1,0,1,[[844,2,1,0,1]]]],[21583]]]]},{"k":"H6700","v":[["Zuriel",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3727]]]]},{"k":"H6701","v":[["Zurishaddai",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3610,3670,3886,3891,4007]]]]},{"k":"H6702","v":[["burn",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18155]]]]},{"k":"H6703","v":[["*",[4,4,[[21,1,1,0,1,[[675,1,1,0,1]]],[22,2,2,1,3,[[696,1,1,1,2],[710,1,1,2,3]]],[23,1,1,3,4,[[748,1,1,3,4]]]],[17608,18001,18263,19038]]],["clear",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18001]]],["dry",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19038]]],["plainly",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18263]]],["white",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17608]]]]},{"k":"H6704","v":[["up",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17752]]]]},{"k":"H6705","v":[["whiter",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20427]]]]},{"k":"H6706","v":[["*",[5,5,[[15,1,1,0,1,[[416,1,1,0,1]]],[25,4,4,1,5,[[825,2,2,1,3],[827,2,2,3,5]]]],[12372,21063,21064,21104,21114]]],["places",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12372]]],["top",[4,4,[[25,4,4,0,4,[[825,2,2,0,2],[827,2,2,2,4]]]],[21063,21064,21104,21114]]]]},{"k":"H6707","v":[["dry",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14906]]]]},{"k":"H6708","v":[]},{"k":"H6709","v":[["savour",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22331]]]]},{"k":"H6710","v":[["drought",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18797]]]]},{"k":"H6711","v":[["*",[13,12,[[0,11,10,0,10,[[16,1,1,0,1],[17,4,3,1,4],[18,1,1,4,5],[20,2,2,5,7],[25,1,1,7,8],[38,2,2,8,10]]],[1,1,1,10,11,[[81,1,1,10,11]]],[6,1,1,11,12,[[226,1,1,11,12]]]],[414,436,437,439,471,519,522,700,1163,1166,2444,6974]]],["+",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6974]]],["laugh",[3,3,[[0,3,3,0,3,[[17,2,2,0,2],[20,1,1,2,3]]]],[437,439,519]]],["laughed",[3,3,[[0,3,3,0,3,[[16,1,1,0,1],[17,2,2,1,3]]]],[414,436,439]]],["mock",[2,2,[[0,2,2,0,2,[[38,2,2,0,2]]]],[1163,1166]]],["mocked",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[471]]],["mocking",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[522]]],["play",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2444]]],["sporting",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[700]]]]},{"k":"H6712","v":[["*",[2,2,[[0,1,1,0,1,[[20,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[519,21039]]],["laugh",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[519]]],["scorn",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21039]]]]},{"k":"H6713","v":[["white",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21139]]]]},{"k":"H6714","v":[["Zohar",[4,4,[[0,3,3,0,3,[[22,1,1,0,1],[24,1,1,1,2],[45,1,1,2,3]]],[1,1,1,3,4,[[55,1,1,3,4]]]],[579,667,1396,1670]]]]},{"k":"H6715","v":[["white",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6633]]]]},{"k":"H6716","v":[["*",[4,4,[[3,1,1,0,1,[[140,1,1,0,1]]],[22,1,1,1,2,[[711,1,1,1,2]]],[25,1,1,2,3,[[831,1,1,2,3]]],[26,1,1,3,4,[[860,1,1,3,4]]]],[4470,18300,21213,22066]]],["ship",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18300]]],["ships",[3,3,[[3,1,1,0,1,[[140,1,1,0,1]]],[25,1,1,1,2,[[831,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[4470,21213,22066]]]]},{"k":"H6717","v":[["Ziba",[16,13,[[9,16,13,0,13,[[275,8,7,0,7],[282,6,4,7,11],[285,2,2,11,13]]]],[8229,8230,8231,8236,8237,8238,8239,8427,8428,8429,8430,8528,8540]]]]},{"k":"H6718","v":[["*",[19,18,[[0,12,11,0,11,[[9,2,1,0,1],[24,2,2,1,3],[26,8,8,3,11]]],[2,1,1,11,12,[[106,1,1,11,12]]],[5,2,2,12,14,[[195,2,2,12,14]]],[15,1,1,14,15,[[425,1,1,14,15]]],[17,1,1,15,16,[[473,1,1,15,16]]],[18,1,1,16,17,[[609,1,1,16,17]]],[19,1,1,17,18,[[639,1,1,17,18]]]],[243,685,686,730,732,734,746,752,757,758,760,3248,6042,6051,12686,13834,16166,16746]]],["+",[5,5,[[0,4,4,0,4,[[26,4,4,0,4]]],[5,1,1,4,5,[[195,1,1,4,5]]]],[746,752,757,758,6051]]],["catcheth",[1,1,[[2,1,1,0,1,[[106,1,1,0,1]]]],[3248]]],["food",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13834]]],["hunter",[3,2,[[0,3,2,0,2,[[9,2,1,0,1],[24,1,1,1,2]]]],[243,685]]],["hunting",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16746]]],["provision",[2,2,[[5,1,1,0,1,[[195,1,1,0,1]]],[18,1,1,1,2,[[609,1,1,1,2]]]],[6042,16166]]],["venison",[5,5,[[0,5,5,0,5,[[24,1,1,0,1],[26,4,4,1,5]]]],[686,730,732,734,760]]],["victuals",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12686]]]]},{"k":"H6719","v":[["hunters",[1,1,[[23,1,1,0,1,[[760,1,1,0,1]]]],[19352]]]]},{"k":"H6720","v":[["*",[9,9,[[0,2,2,0,2,[[41,1,1,0,1],[44,1,1,1,2]]],[1,1,1,2,3,[[61,1,1,2,3]]],[5,2,2,3,5,[[187,1,1,3,4],[195,1,1,4,5]]],[6,2,2,5,7,[[217,1,1,5,6],[230,1,1,6,7]]],[8,1,1,7,8,[[257,1,1,7,8]]],[18,1,1,8,9,[[555,1,1,8,9]]]],[1277,1379,1855,5862,6048,6702,7064,7797,15138]]],["meat",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15138]]],["provision",[2,2,[[0,2,2,0,2,[[41,1,1,0,1],[44,1,1,1,2]]]],[1277,1379]]],["victual",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]]],[1855,7064]]],["victuals",[4,4,[[5,2,2,0,2,[[187,1,1,0,1],[195,1,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]],[8,1,1,3,4,[[257,1,1,3,4]]]],[5862,6048,6702,7797]]]]},{"k":"H6721","v":[["*",[23,23,[[0,3,3,0,3,[[9,2,2,0,2],[48,1,1,2,3]]],[5,2,2,3,5,[[197,1,1,3,4],[205,1,1,4,5]]],[6,3,3,5,8,[[211,1,1,5,6],[220,1,1,6,7],[228,1,1,7,8]]],[9,1,1,8,9,[[290,1,1,8,9]]],[10,2,2,9,11,[[301,1,1,9,10],[307,1,1,10,11]]],[12,1,1,11,12,[[338,1,1,11,12]]],[22,3,3,12,15,[[701,3,3,12,15]]],[23,3,3,15,18,[[769,1,1,15,16],[771,1,1,16,17],[791,1,1,17,18]]],[25,3,3,18,21,[[828,1,1,18,19],[829,2,2,19,21]]],[28,1,1,21,22,[[878,1,1,21,22]]],[37,1,1,22,23,[[919,1,1,22,23]]]],[249,253,1486,6115,6349,6540,6817,7021,8698,9141,9326,10265,18079,18081,18089,19556,19599,20077,21129,21178,21179,22347,23001]]],["+",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[6,1,1,1,2,[[228,1,1,1,2]]]],[253,7021]]],["Sidon",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[249]]],["Zidon",[19,19,[[0,1,1,0,1,[[48,1,1,0,1]]],[5,2,2,1,3,[[197,1,1,1,2],[205,1,1,2,3]]],[6,2,2,3,5,[[211,1,1,3,4],[220,1,1,4,5]]],[9,1,1,5,6,[[290,1,1,5,6]]],[10,1,1,6,7,[[307,1,1,6,7]]],[12,1,1,7,8,[[338,1,1,7,8]]],[22,3,3,8,11,[[701,3,3,8,11]]],[23,3,3,11,14,[[769,1,1,11,12],[771,1,1,12,13],[791,1,1,13,14]]],[25,3,3,14,17,[[828,1,1,14,15],[829,2,2,15,17]]],[28,1,1,17,18,[[878,1,1,17,18]]],[37,1,1,18,19,[[919,1,1,18,19]]]],[1486,6115,6349,6540,6817,8698,9326,10265,18079,18081,18089,19556,19599,20077,21129,21178,21179,22347,23001]]],["Zidonians",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9141]]]]},{"k":"H6722","v":[["*",[15,14,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,2,2,1,3,[[199,2,2,1,3]]],[6,4,3,3,6,[[213,1,1,3,4],[220,1,1,4,5],[228,2,1,5,6]]],[10,4,4,6,10,[[295,1,1,6,7],[301,2,2,7,9],[306,1,1,9,10]]],[11,1,1,10,11,[[335,1,1,10,11]]],[12,1,1,11,12,[[359,1,1,11,12]]],[14,1,1,12,13,[[405,1,1,12,13]]],[25,1,1,13,14,[[833,1,1,13,14]]]],[4984,6158,6160,6571,6823,7000,8884,9109,9113,9314,10178,10968,12104,21278]]],["+",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7000]]],["Sidonians",[5,5,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,2,2,1,3,[[199,2,2,1,3]]],[6,1,1,3,4,[[213,1,1,3,4]]],[10,1,1,4,5,[[295,1,1,4,5]]]],[4984,6158,6160,6571,8884]]],["Zidon",[1,1,[[14,1,1,0,1,[[405,1,1,0,1]]]],[12104]]],["Zidonians",[8,8,[[6,2,2,0,2,[[220,1,1,0,1],[228,1,1,1,2]]],[10,3,3,2,5,[[301,2,2,2,4],[306,1,1,4,5]]],[11,1,1,5,6,[[335,1,1,5,6]]],[12,1,1,6,7,[[359,1,1,6,7]]],[25,1,1,7,8,[[833,1,1,7,8]]]],[6823,7000,9109,9113,9314,10178,10968,21278]]]]},{"k":"H6723","v":[["*",[16,16,[[17,2,2,0,2,[[459,1,1,0,1],[465,1,1,1,2]]],[18,4,4,2,6,[[540,1,1,2,3],[555,1,1,3,4],[582,1,1,4,5],[584,1,1,5,6]]],[22,3,3,6,9,[[713,1,1,6,7],[719,1,1,7,8],[731,1,1,8,9]]],[23,3,3,9,12,[[746,1,1,9,10],[794,1,1,10,11],[795,1,1,11,12]]],[25,1,1,12,13,[[820,1,1,12,13]]],[27,1,1,13,14,[[863,1,1,13,14]]],[28,1,1,14,15,[[877,1,1,14,15]]],[35,1,1,15,16,[[907,1,1,15,16]]]],[13455,13560,14840,15130,15647,15734,18321,18469,18713,18971,20178,20255,20894,22108,22331,22818]]],["Drought",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13455]]],["barren",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22331]]],["drought",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18971]]],["dry",[8,8,[[18,2,2,0,2,[[540,1,1,0,1],[584,1,1,1,2]]],[22,2,2,2,4,[[719,1,1,2,3],[731,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]],[25,1,1,5,6,[[820,1,1,5,6]]],[27,1,1,6,7,[[863,1,1,6,7]]],[35,1,1,7,8,[[907,1,1,7,8]]]],[14840,15734,18469,18713,20255,20894,22108,22818]]],["land",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20178]]],["place",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18321]]],["places",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15647]]],["wilderness",[2,2,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[13560,15130]]]]},{"k":"H6724","v":[["place",[2,2,[[22,2,2,0,2,[[703,1,1,0,1],[710,1,1,1,2]]]],[18123,18261]]]]},{"k":"H6725","v":[["*",[3,3,[[11,1,1,0,1,[[335,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]],[25,1,1,2,3,[[840,1,1,2,3]]]],[10182,19712,21463]]],["sign",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21463]]],["title",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10182]]],["waymarks",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19712]]]]},{"k":"H6726","v":[["*",[154,154,[[9,1,1,0,1,[[271,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[11,2,2,2,4,[[331,2,2,2,4]]],[12,1,1,4,5,[[348,1,1,4,5]]],[13,1,1,5,6,[[371,1,1,5,6]]],[18,38,38,6,44,[[479,1,1,6,7],[486,2,2,7,9],[491,1,1,9,10],[497,1,1,10,11],[525,3,3,11,14],[527,1,1,14,15],[528,1,1,15,16],[530,1,1,16,17],[542,1,1,17,18],[546,1,1,18,19],[551,1,1,19,20],[553,1,1,20,21],[555,1,1,21,22],[561,1,1,22,23],[564,2,2,23,25],[574,1,1,25,26],[576,1,1,26,27],[579,3,3,27,30],[587,1,1,30,31],[602,1,1,31,32],[603,1,1,32,33],[605,1,1,33,34],[606,1,1,34,35],[609,1,1,35,36],[610,1,1,36,37],[611,1,1,37,38],[612,1,1,38,39],[614,2,2,39,41],[623,1,1,41,42],[624,1,1,42,43],[626,1,1,43,44]]],[21,1,1,44,45,[[673,1,1,44,45]]],[22,47,47,45,92,[[679,2,2,45,47],[680,1,1,47,48],[681,2,2,48,50],[682,3,3,50,53],[686,1,1,53,54],[688,3,3,54,57],[690,1,1,57,58],[692,1,1,58,59],[694,1,1,59,60],[696,1,1,60,61],[702,1,1,61,62],[706,1,1,62,63],[707,1,1,63,64],[708,1,1,64,65],[709,2,2,65,67],[711,3,3,67,70],[712,1,1,70,71],[713,1,1,71,72],[715,2,2,72,74],[718,1,1,74,75],[719,1,1,75,76],[724,1,1,76,77],[727,1,1,77,78],[729,3,3,78,81],[730,4,4,81,85],[737,1,1,85,86],[738,1,1,86,87],[739,1,1,87,88],[740,2,2,88,90],[742,1,1,90,91],[744,1,1,91,92]]],[23,17,17,92,109,[[747,1,1,92,93],[748,2,2,93,95],[750,2,2,95,97],[752,1,1,97,98],[753,1,1,98,99],[758,1,1,99,100],[770,1,1,100,101],[774,1,1,101,102],[775,2,2,102,104],[794,2,2,104,106],[795,3,3,106,109]]],[24,15,15,109,124,[[797,3,3,109,112],[798,7,7,112,119],[800,3,3,119,122],[801,2,2,122,124]]],[28,7,7,124,131,[[877,4,4,124,128],[878,3,3,128,131]]],[29,2,2,131,133,[[879,1,1,131,132],[884,1,1,132,133]]],[30,2,2,133,135,[[888,2,2,133,135]]],[32,9,9,135,144,[[893,1,1,135,136],[895,2,2,136,138],[896,6,6,138,144]]],[35,2,2,144,146,[[908,2,2,144,146]]],[37,8,8,146,154,[[911,2,2,146,148],[912,2,2,148,150],[918,2,2,150,152],[919,2,2,152,154]]]],[8139,8986,10082,10092,10678,11270,13951,14032,14035,14087,14184,14636,14645,14646,14670,14709,14725,14861,14970,15050,15083,15181,15266,15303,15306,15486,15501,15534,15537,15542,15788,16111,16116,16131,16137,16164,16172,16175,16196,16223,16225,16351,16363,16387,17582,17662,17681,17688,17723,17724,17736,17737,17738,17825,17862,17874,17882,17906,17960,17970,18004,18118,18180,18201,18236,18254,18259,18284,18293,18299,18311,18330,18374,18384,18429,18478,18599,18650,18676,18684,18689,18697,18698,18703,18704,18820,18835,18846,18855,18865,18895,18930,19016,19033,19058,19091,19112,19172,19194,19312,19590,19684,19697,19703,20171,20194,20222,20236,20247,20314,20316,20327,20333,20336,20338,20340,20342,20345,20350,20422,20431,20442,20453,20460,22312,22326,22334,22343,22359,22360,22364,22366,22451,22527,22531,22592,22618,22620,22622,22627,22628,22630,22631,22633,22834,22836,22892,22895,22906,22909,22978,22979,23008,23012]]],["+",[16,16,[[18,8,8,0,8,[[491,1,1,0,1],[497,1,1,1,2],[527,1,1,2,3],[530,1,1,3,4],[587,1,1,4,5],[605,1,1,5,6],[611,1,1,6,7],[612,1,1,7,8]]],[22,2,2,8,10,[[680,1,1,8,9],[740,1,1,9,10]]],[23,3,3,10,13,[[753,1,1,10,11],[794,1,1,11,12],[795,1,1,12,13]]],[28,1,1,13,14,[[878,1,1,13,14]]],[29,1,1,14,15,[[879,1,1,14,15]]],[32,1,1,15,16,[[896,1,1,15,16]]]],[14087,14184,14670,14725,15788,16131,16175,16196,17688,18855,19194,20194,20222,22359,22366,22622]]],["Sion",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14861]]],["Zion",[137,137,[[9,1,1,0,1,[[271,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[11,2,2,2,4,[[331,2,2,2,4]]],[12,1,1,4,5,[[348,1,1,4,5]]],[13,1,1,5,6,[[371,1,1,5,6]]],[18,29,29,6,35,[[479,1,1,6,7],[486,2,2,7,9],[525,3,3,9,12],[528,1,1,12,13],[546,1,1,13,14],[551,1,1,14,15],[553,1,1,15,16],[555,1,1,16,17],[561,1,1,17,18],[564,2,2,18,20],[574,1,1,20,21],[576,1,1,21,22],[579,3,3,22,25],[602,1,1,25,26],[603,1,1,26,27],[606,1,1,27,28],[609,1,1,28,29],[610,1,1,29,30],[614,2,2,30,32],[623,1,1,32,33],[624,1,1,33,34],[626,1,1,34,35]]],[21,1,1,35,36,[[673,1,1,35,36]]],[22,45,45,36,81,[[679,2,2,36,38],[681,2,2,38,40],[682,3,3,40,43],[686,1,1,43,44],[688,3,3,44,47],[690,1,1,47,48],[692,1,1,48,49],[694,1,1,49,50],[696,1,1,50,51],[702,1,1,51,52],[706,1,1,52,53],[707,1,1,53,54],[708,1,1,54,55],[709,2,2,55,57],[711,3,3,57,60],[712,1,1,60,61],[713,1,1,61,62],[715,2,2,62,64],[718,1,1,64,65],[719,1,1,65,66],[724,1,1,66,67],[727,1,1,67,68],[729,3,3,68,71],[730,4,4,71,75],[737,1,1,75,76],[738,1,1,76,77],[739,1,1,77,78],[740,1,1,78,79],[742,1,1,79,80],[744,1,1,80,81]]],[23,14,14,81,95,[[747,1,1,81,82],[748,2,2,82,84],[750,2,2,84,86],[752,1,1,86,87],[758,1,1,87,88],[770,1,1,88,89],[774,1,1,89,90],[775,2,2,90,92],[794,1,1,92,93],[795,2,2,93,95]]],[24,15,15,95,110,[[797,3,3,95,98],[798,7,7,98,105],[800,3,3,105,108],[801,2,2,108,110]]],[28,6,6,110,116,[[877,4,4,110,114],[878,2,2,114,116]]],[29,1,1,116,117,[[884,1,1,116,117]]],[30,2,2,117,119,[[888,2,2,117,119]]],[32,8,8,119,127,[[893,1,1,119,120],[895,2,2,120,122],[896,5,5,122,127]]],[35,2,2,127,129,[[908,2,2,127,129]]],[37,8,8,129,137,[[911,2,2,129,131],[912,2,2,131,133],[918,2,2,133,135],[919,2,2,135,137]]]],[8139,8986,10082,10092,10678,11270,13951,14032,14035,14636,14645,14646,14709,14970,15050,15083,15181,15266,15303,15306,15486,15501,15534,15537,15542,16111,16116,16137,16164,16172,16223,16225,16351,16363,16387,17582,17662,17681,17723,17724,17736,17737,17738,17825,17862,17874,17882,17906,17960,17970,18004,18118,18180,18201,18236,18254,18259,18284,18293,18299,18311,18330,18374,18384,18429,18478,18599,18650,18676,18684,18689,18697,18698,18703,18704,18820,18835,18846,18865,18895,18930,19016,19033,19058,19091,19112,19172,19312,19590,19684,19697,19703,20171,20236,20247,20314,20316,20327,20333,20336,20338,20340,20342,20345,20350,20422,20431,20442,20453,20460,22312,22326,22334,22343,22360,22364,22451,22527,22531,22592,22618,22620,22627,22628,22630,22631,22633,22834,22836,22892,22895,22906,22909,22978,22979,23008,23012]]]]},{"k":"H6727","v":[["Ziha",[3,3,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,2,2,1,3,[[419,1,1,1,2],[423,1,1,2,3]]]],[12070,12466,12609]]]]},{"k":"H6728","v":[["*",[6,6,[[18,2,2,0,2,[[549,1,1,0,1],[551,1,1,1,2]]],[22,3,3,2,5,[[691,1,1,2,3],[701,1,1,3,4],[712,1,1,4,5]]],[23,1,1,5,6,[[794,1,1,5,6]]]],[15009,15062,17927,18090,18317,20205]]],["desert",[3,3,[[22,2,2,0,2,[[691,1,1,0,1],[712,1,1,1,2]]],[23,1,1,2,3,[[794,1,1,2,3]]]],[17927,18317,20205]]],["wilderness",[3,3,[[18,2,2,0,2,[[549,1,1,0,1],[551,1,1,1,2]]],[22,1,1,2,3,[[701,1,1,2,3]]]],[15009,15062,18090]]]]},{"k":"H6729","v":[["stocks",[1,1,[[23,1,1,0,1,[[773,1,1,0,1]]]],[19661]]]]},{"k":"H6730","v":[["Zior",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6256]]]]},{"k":"H6731","v":[["*",[15,15,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[2,1,1,2,3,[[97,1,1,2,3]]],[3,1,1,3,4,[[133,1,1,3,4]]],[10,4,4,4,8,[[296,4,4,4,8]]],[17,1,1,8,9,[[449,1,1,8,9]]],[18,1,1,9,10,[[580,1,1,9,10]]],[22,4,4,10,14,[[706,1,1,10,11],[718,3,3,11,14]]],[23,1,1,14,15,[[792,1,1,14,15]]]],[2329,2694,2926,4252,8914,8925,8928,8931,13183,15564,18165,18426,18427,18428,20089]]],["blossoms",[1,1,[[3,1,1,0,1,[[133,1,1,0,1]]]],[4252]]],["flower",[6,6,[[17,1,1,0,1,[[449,1,1,0,1]]],[18,1,1,1,2,[[580,1,1,1,2]]],[22,4,4,2,6,[[706,1,1,2,3],[718,3,3,3,6]]]],[13183,15564,18165,18426,18427,18428]]],["flowers",[4,4,[[10,4,4,0,4,[[296,4,4,0,4]]]],[8914,8925,8928,8931]]],["plate",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[2,1,1,2,3,[[97,1,1,2,3]]]],[2329,2694,2926]]],["wings",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20089]]]]},{"k":"H6732","v":[["Ziz",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11603]]]]},{"k":"H6733","v":[["flower",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18168]]]]},{"k":"H6734","v":[["*",[4,3,[[3,3,2,0,2,[[131,3,2,0,2]]],[25,1,1,2,3,[[809,1,1,2,3]]]],[4191,4192,20607]]],["fringe",[2,2,[[3,2,2,0,2,[[131,2,2,0,2]]]],[4191,4192]]],["fringes",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4191]]],["lock",[1,1,[[25,1,1,0,1,[[809,1,1,0,1]]]],[20607]]]]},{"k":"H6735","v":[["*",[12,11,[[8,1,1,0,1,[[239,1,1,0,1]]],[19,3,3,1,4,[[640,1,1,1,2],[652,1,1,2,3],[653,1,1,3,4]]],[22,5,4,4,8,[[691,1,1,4,5],[696,1,1,5,6],[699,2,1,6,7],[735,1,1,7,8]]],[23,1,1,8,9,[[793,1,1,8,9]]],[26,1,1,9,10,[[859,1,1,9,10]]],[30,1,1,10,11,[[888,1,1,10,11]]]],[7316,16764,17126,17155,17914,17999,18038,18774,20141,22031,22511]]],["ambassador",[3,3,[[19,1,1,0,1,[[640,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]],[30,1,1,2,3,[[888,1,1,2,3]]]],[16764,20141,22511]]],["ambassadors",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[17999]]],["hinges",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17155]]],["messenger",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17126]]],["messengers",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18774]]],["pains",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7316]]],["pangs",[3,2,[[22,3,2,0,2,[[691,1,1,0,1],[699,2,1,1,2]]]],[17914,18038]]],["sorrows",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22031]]]]},{"k":"H6736","v":[["idols",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18577]]]]},{"k":"H6737","v":[["ambassadors",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6041]]]]},{"k":"H6738","v":[["*",[49,47,[[0,1,1,0,1,[[18,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[6,2,2,2,4,[[219,2,2,2,4]]],[11,4,3,4,7,[[332,4,3,4,7]]],[12,1,1,7,8,[[366,1,1,7,8]]],[17,4,4,8,12,[[442,1,1,8,9],[443,1,1,9,10],[449,1,1,10,11],[452,1,1,11,12]]],[18,10,10,12,22,[[494,1,1,12,13],[513,1,1,13,14],[534,1,1,14,15],[540,1,1,15,16],[557,1,1,16,17],[568,1,1,17,18],[579,1,1,18,19],[586,1,1,19,20],[598,1,1,20,21],[621,1,1,21,22]]],[20,4,3,22,25,[[664,1,1,22,23],[665,2,1,23,24],[666,1,1,24,25]]],[21,1,1,25,26,[[672,1,1,25,26]]],[22,11,11,26,37,[[682,1,1,26,27],[694,1,1,27,28],[703,2,2,28,30],[708,2,2,30,32],[710,1,1,32,33],[712,1,1,33,34],[716,1,1,34,35],[727,1,1,35,36],[729,1,1,36,37]]],[23,1,1,37,38,[[792,1,1,37,38]]],[24,1,1,38,39,[[800,1,1,38,39]]],[25,4,4,39,43,[[818,1,1,39,40],[832,3,3,40,43]]],[27,2,2,43,45,[[865,1,1,43,44],[875,1,1,44,45]]],[31,2,2,45,47,[[892,2,2,45,47]]]],[465,4117,6769,6790,10107,10108,10109,11179,13010,13038,13183,13267,14111,14445,14769,14846,15208,15396,15532,15778,16086,16309,17429,17441,17471,17557,17739,17972,18122,18123,18219,18220,18261,18318,18398,18638,18689,20125,20440,20848,21236,21242,21247,22146,22289,22573,22574]]],["+",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21242]]],["defence",[3,2,[[3,1,1,0,1,[[130,1,1,0,1]]],[20,2,1,1,2,[[665,2,1,1,2]]]],[4117,17441]]],["shade",[1,1,[[18,1,1,0,1,[[598,1,1,0,1]]]],[16086]]],["shadow",[44,43,[[0,1,1,0,1,[[18,1,1,0,1]]],[6,2,2,1,3,[[219,2,2,1,3]]],[11,4,3,3,6,[[332,4,3,3,6]]],[12,1,1,6,7,[[366,1,1,6,7]]],[17,4,4,7,11,[[442,1,1,7,8],[443,1,1,8,9],[449,1,1,9,10],[452,1,1,10,11]]],[18,9,9,11,20,[[494,1,1,11,12],[513,1,1,12,13],[534,1,1,13,14],[540,1,1,14,15],[557,1,1,15,16],[568,1,1,16,17],[579,1,1,17,18],[586,1,1,18,19],[621,1,1,19,20]]],[20,2,2,20,22,[[664,1,1,20,21],[666,1,1,21,22]]],[21,1,1,22,23,[[672,1,1,22,23]]],[22,11,11,23,34,[[682,1,1,23,24],[694,1,1,24,25],[703,2,2,25,27],[708,2,2,27,29],[710,1,1,29,30],[712,1,1,30,31],[716,1,1,31,32],[727,1,1,32,33],[729,1,1,33,34]]],[23,1,1,34,35,[[792,1,1,34,35]]],[24,1,1,35,36,[[800,1,1,35,36]]],[25,3,3,36,39,[[818,1,1,36,37],[832,2,2,37,39]]],[27,2,2,39,41,[[865,1,1,39,40],[875,1,1,40,41]]],[31,2,2,41,43,[[892,2,2,41,43]]]],[465,6769,6790,10107,10108,10109,11179,13010,13038,13183,13267,14111,14445,14769,14846,15208,15396,15532,15778,16309,17429,17471,17557,17739,17972,18122,18123,18219,18220,18261,18318,18398,18638,18689,20125,20440,20848,21236,21247,22146,22289,22573,22574]]]]},{"k":"H6739","v":[["*",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[855,1,1,1,2]]]],[12161,21915]]],["pray",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12161]]],["prayed",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21915]]]]},{"k":"H6740","v":[["*",[3,3,[[8,1,1,0,1,[[237,1,1,0,1]]],[22,2,2,1,3,[[722,2,2,1,3]]]],[7255,18549,18552]]],["roast",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7255]]],["roasted",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18552]]],["roasteth",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18549]]]]},{"k":"H6741","v":[["Zillah",[3,3,[[0,3,3,0,3,[[3,3,3,0,3]]]],[98,101,102]]]]},{"k":"H6742","v":[["cake",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6707]]]]},{"k":"H6743","v":[["*",[66,64,[[0,7,7,0,7,[[23,4,4,0,4],[38,3,3,4,7]]],[3,1,1,7,8,[[130,1,1,7,8]]],[4,1,1,8,9,[[180,1,1,8,9]]],[5,2,1,9,10,[[187,2,1,9,10]]],[6,4,4,10,14,[[224,2,2,10,12],[225,1,1,12,13],[228,1,1,13,14]]],[8,5,5,14,19,[[245,2,2,14,16],[246,1,1,16,17],[251,1,1,17,18],[253,1,1,18,19]]],[9,1,1,19,20,[[285,1,1,19,20]]],[10,2,2,20,22,[[312,2,2,20,22]]],[12,3,3,22,25,[[359,2,2,22,24],[366,1,1,24,25]]],[13,10,10,25,35,[[373,1,1,25,26],[379,1,1,26,27],[380,1,1,27,28],[384,2,2,28,30],[386,1,1,30,31],[390,1,1,31,32],[392,1,1,32,33],[397,1,1,33,34],[398,1,1,34,35]]],[15,2,2,35,37,[[413,1,1,35,36],[414,1,1,36,37]]],[18,4,4,37,41,[[478,1,1,37,38],[514,1,1,38,39],[522,1,1,39,40],[595,1,1,40,41]]],[19,1,1,41,42,[[655,1,1,41,42]]],[22,4,4,42,46,[[726,1,1,42,43],[731,1,1,43,44],[732,1,1,44,45],[733,1,1,45,46]]],[23,8,7,46,53,[[746,1,1,46,47],[749,1,1,47,48],[756,1,1,48,49],[757,2,2,49,51],[766,2,1,51,52],[776,1,1,52,53]]],[25,5,5,53,58,[[816,1,1,53,54],[817,1,1,54,55],[818,3,3,55,58]]],[26,5,5,58,63,[[857,3,3,58,61],[860,2,2,61,63]]],[29,1,1,63,64,[[883,1,1,63,64]]]],[612,631,633,647,1151,1152,1172,4149,5640,5859,6915,6928,6943,6998,7424,7428,7451,7608,7686,8528,9492,9495,10975,10977,11187,11335,11465,11482,11553,11556,11607,11697,11737,11875,11905,12307,12327,13942,14457,14601,15894,17209,18629,18721,18740,18751,19002,19086,19250,19273,19276,19484,19736,20758,20775,20834,20835,20840,21973,21985,21986,22063,22072,22429]]],["+",[2,2,[[4,1,1,0,1,[[180,1,1,0,1]]],[5,1,1,1,2,[[187,1,1,1,2]]]],[5640,5859]]],["came",[5,5,[[6,1,1,0,1,[[224,1,1,0,1]]],[8,4,4,1,5,[[245,1,1,1,2],[246,1,1,2,3],[251,1,1,3,4],[253,1,1,4,5]]]],[6928,7428,7451,7608,7686]]],["come",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7424]]],["effected",[1,1,[[13,1,1,0,1,[[373,1,1,0,1]]]],[11335]]],["good",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19276]]],["meet",[1,1,[[25,1,1,0,1,[[816,1,1,0,1]]]],[20758]]],["mightily",[2,2,[[6,2,2,0,2,[[224,1,1,0,1],[225,1,1,1,2]]]],[6915,6943]]],["out",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22429]]],["over",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8528]]],["profitable",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19273]]],["prosper",[36,35,[[0,4,4,0,4,[[23,2,2,0,2],[38,2,2,2,4]]],[3,1,1,4,5,[[130,1,1,4,5]]],[10,2,2,5,7,[[312,2,2,5,7]]],[12,2,2,7,9,[[359,2,2,7,9]]],[13,6,6,9,15,[[379,1,1,9,10],[384,2,2,10,12],[386,1,1,12,13],[390,1,1,13,14],[392,1,1,14,15]]],[15,2,2,15,17,[[413,1,1,15,16],[414,1,1,16,17]]],[18,1,1,17,18,[[478,1,1,17,18]]],[19,1,1,18,19,[[655,1,1,18,19]]],[22,3,3,19,22,[[731,1,1,19,20],[732,1,1,20,21],[733,1,1,21,22]]],[23,6,5,22,27,[[746,1,1,22,23],[749,1,1,23,24],[756,1,1,24,25],[766,2,1,25,26],[776,1,1,26,27]]],[25,4,4,27,31,[[817,1,1,27,28],[818,3,3,28,31]]],[26,4,4,31,35,[[857,2,2,31,33],[860,2,2,33,35]]]],[631,633,1152,1172,4149,9492,9495,10975,10977,11465,11553,11556,11607,11697,11737,12307,12327,13942,17209,18721,18740,18751,19002,19086,19250,19484,19736,20775,20834,20835,20840,21985,21986,22063,22072]]],["prospered",[6,6,[[0,1,1,0,1,[[23,1,1,0,1]]],[12,1,1,1,2,[[366,1,1,1,2]]],[13,3,3,2,5,[[380,1,1,2,3],[397,1,1,3,4],[398,1,1,4,5]]],[26,1,1,5,6,[[857,1,1,5,6]]]],[647,11187,11482,11875,11905,21973]]],["prospereth",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14457]]],["prosperity",[1,1,[[18,1,1,0,1,[[595,1,1,0,1]]]],[15894]]],["prosperous",[5,5,[[0,2,2,0,2,[[23,1,1,0,1],[38,1,1,1,2]]],[5,1,1,2,3,[[187,1,1,2,3]]],[6,1,1,3,4,[[228,1,1,3,4]]],[22,1,1,4,5,[[726,1,1,4,5]]]],[612,1151,5859,6998,18629]]],["prosperously",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14601]]]]},{"k":"H6744","v":[["*",[4,4,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]],[26,2,2,2,4,[[852,1,1,2,3],[855,1,1,3,4]]]],[12142,12165,21837,21933]]],["promoted",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21837]]],["prospered",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[855,1,1,1,2]]]],[12165,21933]]],["prospereth",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12142]]]]},{"k":"H6745","v":[["pans",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11979]]]]},{"k":"H6746","v":[["cruse",[1,1,[[11,1,1,0,1,[[314,1,1,0,1]]]],[9571]]]]},{"k":"H6747","v":[["*",[3,3,[[11,1,1,0,1,[[333,1,1,0,1]]],[19,2,2,1,3,[[646,1,1,1,2],[653,1,1,2,3]]]],[10132,16949,17156]]],["bosom",[2,2,[[19,2,2,0,2,[[646,1,1,0,1],[653,1,1,1,2]]]],[16949,17156]]],["dish",[1,1,[[11,1,1,0,1,[[333,1,1,0,1]]]],[10132]]]]},{"k":"H6748","v":[["roast",[3,3,[[1,2,2,0,2,[[61,2,2,0,2]]],[22,1,1,2,3,[[722,1,1,2,3]]]],[1824,1825,18549]]]]},{"k":"H6749","v":[["sank",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1930]]]]},{"k":"H6750","v":[["*",[4,4,[[8,1,1,0,1,[[238,1,1,0,1]]],[11,1,1,1,2,[[333,1,1,1,2]]],[23,1,1,2,3,[[763,1,1,2,3]]],[34,1,1,3,4,[[905,1,1,3,4]]]],[7287,10131,19410,22784]]],["quivered",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22784]]],["tingle",[3,3,[[8,1,1,0,1,[[238,1,1,0,1]]],[11,1,1,1,2,[[333,1,1,1,2]]],[23,1,1,2,3,[[763,1,1,2,3]]]],[7287,10131,19410]]]]},{"k":"H6751","v":[["*",[2,2,[[15,1,1,0,1,[[425,1,1,0,1]]],[25,1,1,1,2,[[832,1,1,1,2]]]],[12690,21233]]],["dark",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12690]]],["shadowing",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21233]]]]},{"k":"H6752","v":[["*",[4,4,[[17,1,1,0,1,[[475,1,1,0,1]]],[21,2,2,1,3,[[672,1,1,1,2],[674,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]]],[13886,17571,17588,19093]]],["shadow",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13886]]],["shadows",[3,3,[[21,2,2,0,2,[[672,1,1,0,1],[674,1,1,1,2]]],[23,1,1,2,3,[[750,1,1,2,3]]]],[17571,17588,19093]]]]},{"k":"H6753","v":[["Hazelelponi",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10388]]]]},{"k":"H6754","v":[["*",[17,15,[[0,5,4,0,4,[[0,3,2,0,2],[4,1,1,2,3],[8,1,1,3,4]]],[3,1,1,4,5,[[149,1,1,4,5]]],[8,3,2,5,7,[[241,3,2,5,7]]],[11,1,1,7,8,[[323,1,1,7,8]]],[13,1,1,8,9,[[389,1,1,8,9]]],[18,2,2,9,11,[[516,1,1,9,10],[550,1,1,10,11]]],[25,3,3,11,14,[[808,1,1,11,12],[817,1,1,12,13],[824,1,1,13,14]]],[29,1,1,14,15,[[883,1,1,14,15]]]],[25,26,108,211,4812,7336,7342,9847,11673,14518,15040,20597,20779,21021,22449]]],["image",[6,5,[[0,5,4,0,4,[[0,3,2,0,2],[4,1,1,2,3],[8,1,1,3,4]]],[18,1,1,4,5,[[550,1,1,4,5]]]],[25,26,108,211,15040]]],["images",[10,9,[[3,1,1,0,1,[[149,1,1,0,1]]],[8,3,2,1,3,[[241,3,2,1,3]]],[11,1,1,3,4,[[323,1,1,3,4]]],[13,1,1,4,5,[[389,1,1,4,5]]],[25,3,3,5,8,[[808,1,1,5,6],[817,1,1,6,7],[824,1,1,7,8]]],[29,1,1,8,9,[[883,1,1,8,9]]]],[4812,7336,7342,9847,11673,20597,20779,21021,22449]]],["shew",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14518]]]]},{"k":"H6755","v":[["*",[17,15,[[26,17,15,0,15,[[851,5,4,0,4],[852,12,11,4,15]]]],[21789,21790,21792,21793,21808,21809,21810,21812,21814,21817,21819,21821,21822,21825,21826]]],["form",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21826]]],["image",[15,13,[[26,15,13,0,13,[[851,4,3,0,3],[852,11,10,3,13]]]],[21789,21792,21793,21808,21809,21810,21812,21814,21817,21819,21821,21822,21825]]],["image's",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21790]]]]},{"k":"H6756","v":[["*",[3,3,[[6,1,1,0,1,[[219,1,1,0,1]]],[9,1,1,1,2,[[289,1,1,1,2]]],[18,1,1,2,3,[[545,1,1,2,3]]]],[6802,8681,14914]]],["Salmon",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14914]]],["Zalmon",[2,2,[[6,1,1,0,1,[[219,1,1,0,1]]],[9,1,1,1,2,[[289,1,1,1,2]]]],[6802,8681]]]]},{"k":"H6757","v":[["death",[18,17,[[17,10,9,0,9,[[438,1,1,0,1],[445,2,2,1,3],[447,1,1,3,4],[451,1,1,4,5],[459,2,1,5,6],[463,1,1,6,7],[469,1,1,7,8],[473,1,1,8,9]]],[18,4,4,9,13,[[500,1,1,9,10],[521,1,1,10,11],[584,2,2,11,13]]],[22,1,1,13,14,[[687,1,1,13,14]]],[23,2,2,14,16,[[746,1,1,14,15],[757,1,1,15,16]]],[29,1,1,16,17,[[883,1,1,16,17]]]],[12909,13107,13108,13150,13254,13453,13507,13705,13810,14239,14590,15709,15713,17831,18971,19282,22431]]]]},{"k":"H6758","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4801,4802]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4802]]],["Zalmonah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4801]]]]},{"k":"H6759","v":[["Zalmunna",[12,9,[[6,11,8,0,8,[[218,11,8,0,8]]],[18,1,1,8,9,[[560,1,1,8,9]]]],[6724,6725,6726,6729,6731,6734,6737,6740,15252]]]]},{"k":"H6760","v":[["*",[4,4,[[0,1,1,0,1,[[31,1,1,0,1]]],[32,2,2,1,3,[[896,2,2,1,3]]],[35,1,1,3,4,[[908,1,1,3,4]]]],[959,22626,22627,22839]]],["halted",[2,2,[[0,1,1,0,1,[[31,1,1,0,1]]],[32,1,1,1,2,[[896,1,1,1,2]]]],[959,22627]]],["halteth",[2,2,[[32,1,1,0,1,[[896,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[22626,22839]]]]},{"k":"H6761","v":[["*",[3,3,[[18,2,2,0,2,[[512,1,1,0,1],[515,1,1,1,2]]],[23,1,1,2,3,[[764,1,1,2,3]]]],[14425,14507,19432]]],["adversity",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14425]]],["halt",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14507]]],["halting",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19432]]]]},{"k":"H6762","v":[["Zelah",[2,2,[[5,1,1,0,1,[[204,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]]],[6321,8594]]]]},{"k":"H6763","v":[["*",[41,32,[[0,2,2,0,2,[[1,2,2,0,2]]],[1,19,15,2,17,[[74,3,2,2,4],[75,6,4,4,8],[76,1,1,8,9],[79,1,1,9,10],[85,3,3,10,13],[86,4,3,13,16],[87,1,1,16,17]]],[9,1,1,17,18,[[282,1,1,17,18]]],[10,7,6,18,24,[[296,6,5,18,23],[297,1,1,23,24]]],[17,1,1,24,25,[[453,1,1,24,25]]],[25,11,7,25,32,[[842,11,7,25,32]]]],[51,52,2207,2209,2255,2261,2262,2270,2279,2386,2591,2597,2598,2607,2609,2631,2640,8439,8901,8904,8911,8912,8930,8937,13288,21531,21532,21533,21534,21535,21537,21552]]],["+",[1,1,[[0,1,1,0,1,[[1,1,1,0,1]]]],[51]]],["another",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21532]]],["beams",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8937]]],["boards",[2,2,[[10,2,2,0,2,[[296,2,2,0,2]]]],[8911,8912]]],["chamber",[3,3,[[10,1,1,0,1,[[296,1,1,0,1]]],[25,2,2,1,3,[[842,2,2,1,3]]]],[8904,21531,21535]]],["chambers",[8,7,[[10,1,1,0,1,[[296,1,1,0,1]]],[25,7,6,1,7,[[842,7,6,1,7]]]],[8901,21532,21533,21534,21535,21537,21552]]],["corners",[2,2,[[1,2,2,0,2,[[79,1,1,0,1],[86,1,1,1,2]]]],[2386,2631]]],["leaves",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8930]]],["one",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21532]]],["planks",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8911]]],["rib",[1,1,[[0,1,1,0,1,[[1,1,1,0,1]]]],[52]]],["side",[15,11,[[1,13,9,0,9,[[74,2,1,0,1],[75,6,4,1,5],[85,3,3,5,8],[86,2,1,8,9]]],[9,1,1,9,10,[[282,1,1,9,10]]],[17,1,1,10,11,[[453,1,1,10,11]]]],[2207,2255,2261,2262,2270,2591,2597,2598,2607,8439,13288]]],["sides",[4,4,[[1,4,4,0,4,[[74,1,1,0,1],[76,1,1,1,2],[86,1,1,2,3],[87,1,1,3,4]]]],[2209,2279,2609,2640]]]]},{"k":"H6764","v":[["Zalaph",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12357]]]]},{"k":"H6765","v":[["Zelophehad",[11,9,[[3,8,7,0,7,[[142,2,1,0,1],[143,2,2,1,3],[152,4,4,3,7]]],[5,1,1,7,8,[[203,1,1,7,8]]],[12,2,1,8,9,[[344,2,1,8,9]]]],[4522,4555,4561,4881,4885,4889,4890,6278,10550]]]]},{"k":"H6766","v":[["Zelzah",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7420]]]]},{"k":"H6767","v":[["*",[6,5,[[4,1,1,0,1,[[180,1,1,0,1]]],[9,1,1,1,2,[[272,1,1,1,2]]],[17,1,1,2,3,[[476,1,1,2,3]]],[18,2,1,3,4,[[627,2,1,3,4]]],[22,1,1,4,5,[[696,1,1,4,5]]]],[5653,8162,13895,16399,17998]]],["cymbals",[3,2,[[9,1,1,0,1,[[272,1,1,0,1]]],[18,2,1,1,2,[[627,2,1,1,2]]]],[8162,16399]]],["locust",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5653]]],["shadowing",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[17998]]],["spears",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13895]]]]},{"k":"H6768","v":[["Zelek",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8690,10712]]]]},{"k":"H6769","v":[["Zilthai",[2,2,[[12,2,2,0,2,[[345,1,1,0,1],[349,1,1,1,2]]]],[10595,10740]]]]},{"k":"H6770","v":[["*",[10,10,[[1,1,1,0,1,[[66,1,1,0,1]]],[6,2,2,1,3,[[214,1,1,1,2],[225,1,1,2,3]]],[7,1,1,3,4,[[233,1,1,3,4]]],[17,1,1,4,5,[[459,1,1,4,5]]],[18,2,2,5,7,[[519,1,1,5,6],[540,1,1,6,7]]],[22,3,3,7,10,[[726,1,1,7,8],[727,1,1,8,9],[743,1,1,9,10]]]],[1986,6618,6947,7158,13447,14557,14840,18635,18646,18910]]],["+",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6947]]],["athirst",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7158]]],["thirst",[2,2,[[17,1,1,0,1,[[459,1,1,0,1]]],[22,1,1,1,2,[[727,1,1,1,2]]]],[13447,18646]]],["thirsted",[2,2,[[1,1,1,0,1,[[66,1,1,0,1]]],[22,1,1,1,2,[[726,1,1,1,2]]]],[1986,18635]]],["thirsteth",[2,2,[[18,2,2,0,2,[[519,1,1,0,1],[540,1,1,1,2]]]],[14557,14840]]],["thirsty",[2,2,[[6,1,1,0,1,[[214,1,1,0,1]]],[22,1,1,1,2,[[743,1,1,1,2]]]],[6618,18910]]]]},{"k":"H6771","v":[["*",[9,9,[[4,1,1,0,1,[[181,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[18,1,1,2,3,[[584,1,1,2,3]]],[19,1,1,3,4,[[652,1,1,3,4]]],[22,5,5,4,9,[[699,1,1,4,5],[707,1,1,5,6],[710,1,1,6,7],[722,1,1,7,8],[733,1,1,8,9]]]],[5698,8478,15704,17134,18049,18201,18265,18536,18741]]],["man",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18201]]],["thirst",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5698]]],["thirsteth",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18741]]],["thirsty",[6,6,[[9,1,1,0,1,[[283,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]],[19,1,1,2,3,[[652,1,1,2,3]]],[22,3,3,3,6,[[699,1,1,3,4],[710,1,1,4,5],[722,1,1,5,6]]]],[8478,15704,17134,18049,18265,18536]]]]},{"k":"H6772","v":[["*",[17,17,[[1,1,1,0,1,[[66,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[6,1,1,2,3,[[225,1,1,2,3]]],[13,1,1,3,4,[[398,1,1,3,4]]],[15,2,2,4,6,[[421,2,2,4,6]]],[18,2,2,6,8,[[546,1,1,6,7],[581,1,1,7,8]]],[22,3,3,8,11,[[683,1,1,8,9],[719,1,1,9,10],[728,1,1,10,11]]],[23,1,1,11,12,[[792,1,1,11,12]]],[24,1,1,12,13,[[800,1,1,12,13]]],[25,1,1,13,14,[[820,1,1,13,14]]],[27,1,1,14,15,[[863,1,1,14,15]]],[29,2,2,15,17,[[886,2,2,15,17]]]],[1986,5659,6947,11886,12526,12531,14956,15582,17752,18468,18664,20098,20424,20894,22108,22492,22494]]],["thirst",[16,16,[[1,1,1,0,1,[[66,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[6,1,1,2,3,[[225,1,1,2,3]]],[13,1,1,3,4,[[398,1,1,3,4]]],[15,2,2,4,6,[[421,2,2,4,6]]],[18,2,2,6,8,[[546,1,1,6,7],[581,1,1,7,8]]],[22,3,3,8,11,[[683,1,1,8,9],[719,1,1,9,10],[728,1,1,10,11]]],[23,1,1,11,12,[[792,1,1,11,12]]],[24,1,1,12,13,[[800,1,1,12,13]]],[27,1,1,13,14,[[863,1,1,13,14]]],[29,2,2,14,16,[[886,2,2,14,16]]]],[1986,5659,6947,11886,12526,12531,14956,15582,17752,18468,18664,20098,20424,22108,22492,22494]]],["thirsty",[1,1,[[25,1,1,0,1,[[820,1,1,0,1]]]],[20894]]]]},{"k":"H6773","v":[["+",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18990]]]]},{"k":"H6774","v":[["*",[3,3,[[4,1,1,0,1,[[160,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]],[22,1,1,2,3,[[713,1,1,2,3]]]],[5152,15732,18327]]],["drought",[1,1,[[4,1,1,0,1,[[160,1,1,0,1]]]],[5152]]],["ground",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15732]]],["land",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18327]]]]},{"k":"H6775","v":[["*",[5,5,[[3,2,2,0,2,[[141,2,2,0,2]]],[9,1,1,2,3,[[286,1,1,2,3]]],[18,2,2,3,5,[[527,1,1,3,4],[583,1,1,4,5]]]],[4474,4476,8562,14687,15679]]],["fastened",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8562]]],["frameth",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14687]]],["himself",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4474]]],["joined",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4476]]],["themselves",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15679]]]]},{"k":"H6776","v":[["*",[15,15,[[6,2,2,0,2,[[229,2,2,0,2]]],[8,2,2,2,4,[[246,1,1,2,3],[249,1,1,3,4]]],[9,1,1,4,5,[[282,1,1,4,5]]],[10,2,2,5,7,[[309,2,2,5,7]]],[11,2,2,7,9,[[317,1,1,7,8],[321,1,1,8,9]]],[17,2,2,9,11,[[436,1,1,9,10],[477,1,1,10,11]]],[22,3,3,11,14,[[683,1,1,11,12],[699,2,2,12,14]]],[23,1,1,14,15,[[795,1,1,14,15]]]],[7027,7034,7452,7522,8427,9406,9408,9664,9781,12872,13934,17749,18042,18044,20235]]],["+",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9664]]],["acres",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17749]]],["couple",[4,4,[[6,1,1,0,1,[[229,1,1,0,1]]],[9,1,1,1,2,[[282,1,1,1,2]]],[22,2,2,2,4,[[699,2,2,2,4]]]],[7027,8427,18042,18044]]],["oxen",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20235]]],["together",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9781]]],["two",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7034]]],["yoke",[6,6,[[8,2,2,0,2,[[246,1,1,0,1],[249,1,1,1,2]]],[10,2,2,2,4,[[309,2,2,2,4]]],[17,2,2,4,6,[[436,1,1,4,5],[477,1,1,5,6]]]],[7452,7522,9406,9408,12872,13934]]]]},{"k":"H6777","v":[["locks",[4,4,[[21,3,3,0,3,[[674,2,2,0,2],[676,1,1,2,3]]],[22,1,1,3,4,[[725,1,1,3,4]]]],[17583,17585,17621,18601]]]]},{"k":"H6778","v":[["raisins",[4,4,[[8,2,2,0,2,[[260,1,1,0,1],[265,1,1,1,2]]],[9,1,1,2,3,[[282,1,1,2,3]]],[12,1,1,3,4,[[349,1,1,3,4]]]],[7879,7990,8427,10760]]]]},{"k":"H6779","v":[["*",[33,32,[[0,5,5,0,5,[[1,2,2,0,2],[2,1,1,2,3],[40,2,2,3,5]]],[1,1,1,5,6,[[59,1,1,5,6]]],[2,1,1,6,7,[[102,1,1,6,7]]],[4,1,1,7,8,[[181,1,1,7,8]]],[6,1,1,8,9,[[226,1,1,8,9]]],[9,2,2,9,11,[[276,1,1,9,10],[289,1,1,10,11]]],[12,1,1,11,12,[[356,1,1,11,12]]],[17,3,3,12,15,[[440,1,1,12,13],[443,1,1,13,14],[473,1,1,14,15]]],[18,4,4,15,19,[[562,1,1,15,16],[581,1,1,16,17],[609,1,1,17,18],[624,1,1,18,19]]],[20,1,1,19,20,[[660,1,1,19,20]]],[22,8,7,20,27,[[720,1,1,20,21],[721,1,1,21,22],[722,1,1,22,23],[723,1,1,23,24],[733,1,1,24,25],[736,1,1,25,26],[739,2,1,26,27]]],[23,1,1,27,28,[[777,1,1,27,28]]],[25,3,3,28,31,[[817,1,1,28,29],[818,1,1,29,30],[830,1,1,30,31]]],[37,1,1,31,32,[[916,1,1,31,32]]]],[35,39,73,1201,1218,1782,3089,5702,6971,8245,8658,10912,12957,13048,13820,15282,15585,16168,16359,17339,18489,18524,18537,18569,18750,18794,18854,19790,20769,20831,21204,22959]]],["again",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6971]]],["beareth",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5702]]],["bud",[2,2,[[18,1,1,0,1,[[609,1,1,0,1]]],[22,1,1,1,2,[[733,1,1,1,2]]]],[16168,18750]]],["forth",[9,8,[[0,1,1,0,1,[[2,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]],[20,1,1,2,3,[[660,1,1,2,3]]],[22,5,4,3,7,[[720,1,1,3,4],[721,1,1,4,5],[736,1,1,5,6],[739,2,1,6,7]]],[25,1,1,7,8,[[830,1,1,7,8]]]],[73,13820,17339,18489,18524,18794,18854,21204]]],["grew",[2,2,[[0,1,1,0,1,[[1,1,1,0,1]]],[25,1,1,1,2,[[818,1,1,1,2]]]],[35,20831]]],["grow",[5,5,[[0,1,1,0,1,[[1,1,1,0,1]]],[9,1,1,1,2,[[289,1,1,1,2]]],[17,1,1,2,3,[[443,1,1,2,3]]],[18,2,2,3,5,[[581,1,1,3,4],[624,1,1,4,5]]]],[39,8658,13048,15585,16359]]],["groweth",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1782]]],["grown",[3,3,[[9,1,1,0,1,[[276,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]],[25,1,1,2,3,[[817,1,1,2,3]]]],[8245,10912,20769]]],["spring",[2,2,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,1,1,1,2,[[562,1,1,1,2]]]],[12957,15282]]],["up",[7,7,[[0,2,2,0,2,[[40,2,2,0,2]]],[2,1,1,2,3,[[102,1,1,2,3]]],[22,2,2,3,5,[[722,1,1,3,4],[723,1,1,4,5]]],[23,1,1,5,6,[[777,1,1,5,6]]],[37,1,1,6,7,[[916,1,1,6,7]]]],[1201,1218,3089,18537,18569,19790,22959]]]]},{"k":"H6780","v":[["*",[12,12,[[0,1,1,0,1,[[18,1,1,0,1]]],[18,1,1,1,2,[[542,1,1,1,2]]],[22,2,2,2,4,[[682,1,1,2,3],[739,1,1,3,4]]],[23,2,2,4,6,[[767,1,1,4,5],[777,1,1,5,6]]],[25,3,3,6,9,[[817,1,1,6,7],[818,2,2,7,9]]],[27,1,1,9,10,[[869,1,1,9,10]]],[37,2,2,10,12,[[913,1,1,10,11],[916,1,1,11,12]]]],[482,14870,17735,18854,19489,19790,20769,20834,20835,22201,22920,22959]]],["BRANCH",[2,2,[[37,2,2,0,2,[[913,1,1,0,1],[916,1,1,1,2]]]],[22920,22959]]],["Branch",[2,2,[[23,2,2,0,2,[[767,1,1,0,1],[777,1,1,1,2]]]],[19489,19790]]],["branch",[1,1,[[22,1,1,0,1,[[682,1,1,0,1]]]],[17735]]],["bud",[3,3,[[22,1,1,0,1,[[739,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]],[27,1,1,2,3,[[869,1,1,2,3]]]],[18854,20769,22201]]],["grew",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[25,1,1,1,2,[[818,1,1,1,2]]]],[482,20835]]],["spring",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20834]]],["springing",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14870]]]]},{"k":"H6781","v":[["*",[7,7,[[0,3,3,0,3,[[23,3,3,0,3]]],[3,2,2,3,5,[[135,1,1,3,4],[147,1,1,4,5]]],[25,2,2,5,7,[[817,1,1,5,6],[824,1,1,6,7]]]],[613,621,638,4304,4714,20773,21049]]],["bracelets",[6,6,[[0,3,3,0,3,[[23,3,3,0,3]]],[3,1,1,3,4,[[147,1,1,3,4]]],[25,2,2,4,6,[[817,1,1,4,5],[824,1,1,5,6]]]],[613,621,638,4714,20773,21049]]],["covering",[1,1,[[3,1,1,0,1,[[135,1,1,0,1]]]],[4304]]]]},{"k":"H6782","v":[["robber",[2,2,[[17,2,2,0,2,[[440,1,1,0,1],[453,1,1,1,2]]]],[12956,13285]]]]},{"k":"H6783","v":[["ever",[2,2,[[2,2,2,0,2,[[114,2,2,0,2]]]],[3492,3499]]]]},{"k":"H6784","v":[["dry",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22222]]]]},{"k":"H6785","v":[["*",[16,16,[[2,4,4,0,4,[[102,4,4,0,4]]],[4,1,1,4,5,[[174,1,1,4,5]]],[6,1,1,5,6,[[216,1,1,5,6]]],[11,1,1,6,7,[[315,1,1,6,7]]],[18,1,1,7,8,[[624,1,1,7,8]]],[19,1,1,8,9,[[658,1,1,8,9]]],[22,2,2,9,11,[[679,1,1,9,10],[729,1,1,10,11]]],[25,3,3,11,14,[[828,1,1,11,12],[835,1,1,12,13],[845,1,1,13,14]]],[27,2,2,14,16,[[863,2,2,14,16]]]],[3099,3100,3104,3111,5481,6691,9580,16367,17297,17672,18681,21139,21316,21616,22110,22114]]],["wool",[11,11,[[6,1,1,0,1,[[216,1,1,0,1]]],[11,1,1,1,2,[[315,1,1,1,2]]],[18,1,1,2,3,[[624,1,1,2,3]]],[19,1,1,3,4,[[658,1,1,3,4]]],[22,2,2,4,6,[[679,1,1,4,5],[729,1,1,5,6]]],[25,3,3,6,9,[[828,1,1,6,7],[835,1,1,7,8],[845,1,1,8,9]]],[27,2,2,9,11,[[863,2,2,9,11]]]],[6691,9580,16367,17297,17672,18681,21139,21316,21616,22110,22114]]],["woollen",[5,5,[[2,4,4,0,4,[[102,4,4,0,4]]],[4,1,1,4,5,[[174,1,1,4,5]]]],[3099,3100,3104,3111,5481]]]]},{"k":"H6786","v":[["Zemarite",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[252,10268]]]]},{"k":"H6787","v":[["Zemaraim",[2,2,[[5,1,1,0,1,[[204,1,1,0,1]]],[13,1,1,1,2,[[379,1,1,1,2]]]],[6315,11457]]]]},{"k":"H6788","v":[["*",[5,5,[[25,5,5,0,5,[[818,2,2,0,2],[832,3,3,2,5]]]],[20828,20847,21233,21240,21244]]],["+",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20847]]],["branch",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20828]]],["top",[3,3,[[25,3,3,0,3,[[832,3,3,0,3]]]],[21233,21240,21244]]]]},{"k":"H6789","v":[["*",[15,14,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,2,2,1,3,[[441,1,1,1,2],[458,1,1,2,3]]],[18,11,10,3,13,[[495,1,1,3,4],[531,1,1,4,5],[546,1,1,5,6],[550,1,1,6,7],[565,1,1,7,8],[571,2,1,8,9],[578,2,2,9,11],[596,1,1,11,12],[620,1,1,12,13]]],[24,1,1,13,14,[[799,1,1,13,14]]]],[8643,12995,13436,14158,14730,14939,15047,15324,15454,15518,15521,16037,16305,20407]]],["consumed",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16037]]],["destroy",[4,4,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,3,3,1,4,[[495,1,1,1,2],[546,1,1,2,3],[578,1,1,3,4]]]],[8643,14158,14939,15521]]],["destroyed",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15047]]],["off",[8,7,[[17,1,1,0,1,[[458,1,1,0,1]]],[18,6,5,1,6,[[531,1,1,1,2],[565,1,1,2,3],[571,2,1,3,4],[578,1,1,4,5],[620,1,1,5,6]]],[24,1,1,6,7,[[799,1,1,6,7]]]],[13436,14730,15324,15454,15518,16305,20407]]],["vanish",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12995]]]]},{"k":"H6790","v":[["Zin",[10,9,[[3,7,6,0,6,[[129,1,1,0,1],[136,1,1,1,2],[143,2,1,2,3],[149,1,1,3,4],[150,2,2,4,6]]],[4,1,1,6,7,[[184,1,1,6,7]]],[5,2,2,7,9,[[201,2,2,7,9]]]],[4096,4312,4568,4796,4819,4820,5809,6203,6205]]]]},{"k":"H6791","v":[["*",[2,2,[[17,1,1,0,1,[[440,1,1,0,1]]],[19,1,1,1,2,[[649,1,1,1,2]]]],[12956,17020]]],["+",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12956]]],["Thorns",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17020]]]]},{"k":"H6792","v":[["sheep",[2,2,[[3,1,1,0,1,[[148,1,1,0,1]]],[18,1,1,1,2,[[485,1,1,1,2]]]],[4742,14019]]]]},{"k":"H6793","v":[["*",[22,20,[[8,2,2,0,2,[[252,2,2,0,2]]],[10,2,1,2,3,[[300,2,1,2,3]]],[12,3,3,3,6,[[349,3,3,3,6]]],[13,5,4,6,10,[[375,2,1,6,7],[377,1,1,7,8],[380,1,1,8,9],[391,1,1,9,10]]],[18,3,3,10,13,[[482,1,1,10,11],[512,1,1,11,12],[568,1,1,12,13]]],[19,1,1,13,14,[[652,1,1,13,14]]],[23,1,1,14,15,[[790,1,1,14,15]]],[25,4,4,15,19,[[824,1,1,15,16],[827,1,1,16,17],[839,1,1,17,18],[840,1,1,18,19]]],[29,1,1,19,20,[[882,1,1,19,20]]]],[7625,7659,9095,10728,10744,10754,11379,11426,11483,11709,13985,14412,15399,17126,20048,21031,21108,21429,21457,22412]]],["buckler",[3,3,[[18,1,1,0,1,[[512,1,1,0,1]]],[25,2,2,1,3,[[824,1,1,1,2],[827,1,1,2,3]]]],[14412,21031,21108]]],["bucklers",[2,2,[[25,2,2,0,2,[[839,1,1,0,1],[840,1,1,1,2]]]],[21429,21457]]],["cold",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17126]]],["hooks",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22412]]],["shield",[9,9,[[8,2,2,0,2,[[252,2,2,0,2]]],[12,3,3,2,5,[[349,3,3,2,5]]],[13,1,1,5,6,[[391,1,1,5,6]]],[18,2,2,6,8,[[482,1,1,6,7],[568,1,1,7,8]]],[23,1,1,8,9,[[790,1,1,8,9]]]],[7625,7659,10728,10744,10754,11709,13985,15399,20048]]],["shields",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11426]]],["target",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9095,11379]]],["targets",[3,3,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,2,2,1,3,[[375,1,1,1,2],[380,1,1,2,3]]]],[9095,11379,11483]]]]},{"k":"H6794","v":[["*",[2,2,[[9,1,1,0,1,[[271,1,1,0,1]]],[18,1,1,1,2,[[519,1,1,1,2]]]],[8140,14562]]],["gutter",[1,1,[[9,1,1,0,1,[[271,1,1,0,1]]]],[8140]]],["waterspouts",[1,1,[[18,1,1,0,1,[[519,1,1,0,1]]]],[14562]]]]},{"k":"H6795","v":[["*",[3,3,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,2,2,1,3,[[211,1,1,1,2],[214,1,1,2,3]]]],[6220,6523,6620]]],["fastened",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6620]]],["lighted",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]]],[6220,6523]]]]},{"k":"H6796","v":[["thorns",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4815]]]]},{"k":"H6797","v":[["*",[5,4,[[17,1,1,0,1,[[464,1,1,0,1]]],[22,2,2,1,3,[[681,1,1,1,2],[740,1,1,2,3]]],[37,2,1,3,4,[[913,2,1,3,4]]]],[13546,17730,18857,22917]]],["diadem",[2,2,[[17,1,1,0,1,[[464,1,1,0,1]]],[22,1,1,1,2,[[740,1,1,1,2]]]],[13546,18857]]],["hoods",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17730]]],["mitre",[2,1,[[37,2,1,0,1,[[913,2,1,0,1]]]],[22917]]]]},{"k":"H6798","v":[["withered",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1218]]]]},{"k":"H6799","v":[["Zenan",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6239]]]]},{"k":"H6800","v":[["*",[2,2,[[19,1,1,0,1,[[638,1,1,0,1]]],[32,1,1,1,2,[[898,1,1,1,2]]]],[16690,22656]]],["humbly",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22656]]],["lowly",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16690]]]]},{"k":"H6801","v":[["*",[3,2,[[2,1,1,0,1,[[105,1,1,0,1]]],[22,2,1,1,2,[[700,2,1,1,2]]]],[3205,18070]]],["+",[2,1,[[22,2,1,0,1,[[700,2,1,0,1]]]],[18070]]],["attired",[1,1,[[2,1,1,0,1,[[105,1,1,0,1]]]],[3205]]]]},{"k":"H6802","v":[["toss",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18070]]]]},{"k":"H6803","v":[["pot",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1980]]]]},{"k":"H6804","v":[["pipes",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22934]]]]},{"k":"H6805","v":[["*",[8,8,[[0,1,1,0,1,[[48,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[9,1,1,2,3,[[272,1,1,2,3]]],[17,1,1,3,4,[[453,1,1,3,4]]],[18,1,1,4,5,[[545,1,1,4,5]]],[19,1,1,5,6,[[634,1,1,5,6]]],[23,1,1,6,7,[[754,1,1,6,7]]],[34,1,1,7,8,[[905,1,1,7,8]]]],[1495,6627,8170,13290,14907,16583,19206,22780]]],["bring",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13290]]],["go",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19206]]],["gone",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8170]]],["march",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14907]]],["marchedst",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6627]]],["run",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1495]]],["through",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22780]]],["went",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16583]]]]},{"k":"H6806","v":[["*",[14,14,[[9,2,2,0,2,[[272,1,1,0,1],[288,1,1,1,2]]],[17,5,5,2,7,[[449,1,1,2,3],[453,1,1,3,4],[466,2,2,4,6],[469,1,1,6,7]]],[18,1,1,7,8,[[495,1,1,7,8]]],[19,4,4,8,12,[[631,1,1,8,9],[632,1,1,9,10],[643,1,1,10,11],[657,1,1,11,12]]],[23,1,1,12,13,[[754,1,1,12,13]]],[24,1,1,13,14,[[800,1,1,13,14]]]],[8170,8639,13197,13283,13592,13625,13704,14154,16502,16522,16849,17280,19224,20438]]],["go",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17280]]],["goings",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13704]]],["paces",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8170]]],["steps",[11,11,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,4,4,1,5,[[449,1,1,1,2],[453,1,1,2,3],[466,2,2,3,5]]],[18,1,1,5,6,[[495,1,1,5,6]]],[19,3,3,6,9,[[631,1,1,6,7],[632,1,1,7,8],[643,1,1,8,9]]],[23,1,1,9,10,[[754,1,1,9,10]]],[24,1,1,10,11,[[800,1,1,10,11]]]],[8639,13197,13283,13592,13625,14154,16502,16522,16849,19224,20438]]]]},{"k":"H6807","v":[["*",[3,3,[[9,1,1,0,1,[[271,1,1,0,1]]],[12,1,1,1,2,[[351,1,1,1,2]]],[22,1,1,2,3,[[681,1,1,2,3]]]],[8156,10789,17727]]],["going",[2,2,[[9,1,1,0,1,[[271,1,1,0,1]]],[12,1,1,1,2,[[351,1,1,1,2]]]],[8156,10789]]],["legs",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17727]]]]},{"k":"H6808","v":[["*",[5,4,[[22,2,2,0,2,[[729,1,1,0,1],[741,1,1,1,2]]],[23,3,2,2,4,[[746,1,1,2,3],[792,2,1,3,4]]]],[18687,18867,18985,20092]]],["exile",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18687]]],["travelling",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18867]]],["wander",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20092]]],["wanderers",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20092]]],["wanderest",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18985]]]]},{"k":"H6809","v":[["vail",[3,3,[[0,3,3,0,3,[[23,1,1,0,1],[37,2,2,1,3]]]],[656,1133,1138]]]]},{"k":"H6810","v":[["*",[22,22,[[0,8,8,0,8,[[18,4,4,0,4],[24,1,1,4,5],[28,1,1,5,6],[42,1,1,6,7],[47,1,1,7,8]]],[5,1,1,8,9,[[192,1,1,8,9]]],[6,1,1,9,10,[[216,1,1,9,10]]],[8,1,1,10,11,[[244,1,1,10,11]]],[10,1,1,11,12,[[306,1,1,11,12]]],[17,2,2,12,14,[[465,1,1,12,13],[467,1,1,13,14]]],[18,2,2,14,16,[[545,1,1,14,15],[596,1,1,15,16]]],[22,1,1,16,17,[[738,1,1,16,17]]],[23,4,4,17,21,[[758,1,1,17,18],[792,1,1,18,19],[793,1,1,19,20],[794,1,1,20,21]]],[32,1,1,21,22,[[897,1,1,21,22]]]],[488,491,492,495,681,821,1323,1465,5975,6669,7412,9317,13558,13634,14927,16039,18843,19296,20084,20147,20211,22635]]],["+",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13558]]],["least",[4,4,[[6,1,1,0,1,[[216,1,1,0,1]]],[8,1,1,1,2,[[244,1,1,1,2]]],[23,2,2,2,4,[[793,1,1,2,3],[794,1,1,3,4]]]],[6669,7412,20147,20211]]],["little",[2,2,[[18,1,1,0,1,[[545,1,1,0,1]]],[32,1,1,1,2,[[897,1,1,1,2]]]],[14927,22635]]],["one",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18843]]],["ones",[2,2,[[23,2,2,0,2,[[758,1,1,0,1],[792,1,1,1,2]]]],[19296,20084]]],["small",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16039]]],["young",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13634]]],["younger",[7,7,[[0,7,7,0,7,[[18,4,4,0,4],[24,1,1,4,5],[28,1,1,5,6],[47,1,1,6,7]]]],[488,491,492,495,681,821,1465]]],["youngest",[3,3,[[0,1,1,0,1,[[42,1,1,0,1]]],[5,1,1,1,2,[[192,1,1,1,2]]],[10,1,1,2,3,[[306,1,1,2,3]]]],[1323,5975,9317]]]]},{"k":"H6811","v":[["Zair",[1,1,[[11,1,1,0,1,[[320,1,1,0,1]]]],[9748]]]]},{"k":"H6812","v":[["youth",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1323]]]]},{"k":"H6813","v":[["down",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18299]]]]},{"k":"H6814","v":[["Zoan",[7,7,[[3,1,1,0,1,[[129,1,1,0,1]]],[18,2,2,1,3,[[555,2,2,1,3]]],[22,3,3,3,6,[[697,2,2,3,5],[708,1,1,5,6]]],[25,1,1,6,7,[[831,1,1,6,7]]]],[4097,15125,15156,18015,18017,18221,21218]]]]},{"k":"H6815","v":[["*",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[6,1,1,1,2,[[214,1,1,1,2]]]],[6354,6610]]],["Zaanaim",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6610]]],["Zaanannim",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6354]]]]},{"k":"H6816","v":[["image",[1,1,[[13,1,1,0,1,[[369,1,1,0,1]]]],[11239]]]]},{"k":"H6817","v":[["*",[55,53,[[0,3,3,0,3,[[3,1,1,0,1],[26,1,1,1,2],[40,1,1,2,3]]],[1,10,9,3,12,[[54,2,2,3,5],[57,1,1,5,6],[63,2,2,6,8],[64,1,1,8,9],[66,1,1,9,10],[71,3,2,10,12]]],[3,3,3,12,15,[[127,1,1,12,13],[128,1,1,13,14],[136,1,1,14,15]]],[4,3,3,15,18,[[174,2,2,15,17],[178,1,1,17,18]]],[5,1,1,18,19,[[210,1,1,18,19]]],[6,6,6,19,25,[[214,1,1,19,20],[217,2,2,20,22],[220,2,2,22,24],[222,1,1,24,25]]],[8,2,2,25,27,[[245,1,1,25,26],[248,1,1,26,27]]],[10,1,1,27,28,[[310,1,1,27,28]]],[11,8,8,28,36,[[314,1,1,28,29],[315,1,1,29,30],[316,2,2,30,32],[318,2,2,32,34],[320,2,2,34,36]]],[13,1,1,36,37,[[379,1,1,36,37]]],[15,1,1,37,38,[[421,1,1,37,38]]],[17,2,2,38,40,[[454,1,1,38,39],[470,1,1,39,40]]],[18,5,5,40,45,[[511,1,1,40,41],[554,1,1,41,42],[565,1,1,42,43],[584,2,2,43,45]]],[22,5,5,45,50,[[697,1,1,45,46],[711,1,1,46,47],[720,1,1,47,48],[724,1,1,48,49],[743,1,1,49,50]]],[23,3,2,50,52,[[766,2,1,50,51],[793,1,1,51,52]]],[24,1,1,52,53,[[798,1,1,52,53]]]],[89,761,1250,1640,1647,1722,1899,1904,1945,1987,2136,2140,4026,4072,4327,5494,5497,5573,6483,6602,6717,6718,6823,6828,6870,7435,7489,9447,9563,9597,9604,9643,9679,9700,9730,9732,11467,12538,13304,13732,14405,15094,15309,15705,15727,18024,18286,18482,18593,18911,19474,20130,20350]]],["+",[4,3,[[1,2,1,0,1,[[71,2,1,0,1]]],[8,1,1,1,2,[[245,1,1,1,2]]],[11,1,1,2,3,[[315,1,1,2,3]]]],[2136,7435,9597]]],["cried",[27,27,[[0,2,2,0,2,[[26,1,1,0,1],[40,1,1,1,2]]],[1,4,4,2,6,[[54,1,1,2,3],[57,1,1,3,4],[64,1,1,4,5],[66,1,1,5,6]]],[3,3,3,6,9,[[127,1,1,6,7],[128,1,1,7,8],[136,1,1,8,9]]],[4,3,3,9,12,[[174,2,2,9,11],[178,1,1,11,12]]],[5,1,1,12,13,[[210,1,1,12,13]]],[6,2,2,13,15,[[214,1,1,13,14],[220,1,1,14,15]]],[10,1,1,15,16,[[310,1,1,15,16]]],[11,5,5,16,21,[[314,1,1,16,17],[316,1,1,17,18],[318,2,2,18,20],[320,1,1,20,21]]],[13,1,1,21,22,[[379,1,1,21,22]]],[15,1,1,22,23,[[421,1,1,22,23]]],[18,3,3,23,26,[[554,1,1,23,24],[565,1,1,24,25],[584,1,1,25,26]]],[24,1,1,26,27,[[798,1,1,26,27]]]],[761,1250,1647,1722,1945,1987,4026,4072,4327,5494,5497,5573,6483,6602,6823,9447,9563,9604,9679,9700,9732,11467,12538,15094,15309,15705,20350]]],["criest",[1,1,[[1,1,1,0,1,[[63,1,1,0,1]]]],[1904]]],["crieth",[2,2,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]]],[89,2140]]],["cry",[13,12,[[1,1,1,0,1,[[54,1,1,0,1]]],[11,1,1,1,2,[[320,1,1,1,2]]],[17,1,1,2,3,[[470,1,1,2,3]]],[18,2,2,3,5,[[511,1,1,3,4],[584,1,1,4,5]]],[22,5,5,5,10,[[697,1,1,5,6],[711,1,1,6,7],[720,1,1,7,8],[724,1,1,8,9],[743,1,1,9,10]]],[23,3,2,10,12,[[766,2,1,10,11],[793,1,1,11,12]]]],[1640,9730,13732,14405,15727,18024,18286,18482,18593,18911,19474,20130]]],["out",[3,3,[[1,1,1,0,1,[[63,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]],[17,1,1,2,3,[[454,1,1,2,3]]]],[1899,9643,13304]]],["together",[5,5,[[6,4,4,0,4,[[217,2,2,0,2],[220,1,1,2,3],[222,1,1,3,4]]],[8,1,1,4,5,[[248,1,1,4,5]]]],[6717,6718,6828,6870,7489]]]]},{"k":"H6818","v":[["*",[21,20,[[0,3,3,0,3,[[17,1,1,0,1],[18,1,1,1,2],[26,1,1,2,3]]],[1,5,5,3,8,[[52,2,2,3,5],[60,1,1,5,6],[61,1,1,6,7],[71,1,1,7,8]]],[8,2,2,8,10,[[239,1,1,8,9],[244,1,1,9,10]]],[15,1,1,10,11,[[417,1,1,10,11]]],[17,3,2,11,13,[[462,1,1,11,12],[469,2,1,12,13]]],[18,1,1,13,14,[[486,1,1,13,14]]],[22,1,1,14,15,[[683,1,1,14,15]]],[23,4,4,15,19,[[769,1,1,15,16],[792,2,2,16,18],[793,1,1,18,19]]],[35,1,1,19,20,[[906,1,1,19,20]]]],[445,470,761,1586,1588,1812,1846,2136,7311,7407,12383,13490,13711,14033,17746,19570,20083,20085,20148,22797]]],["cry",[19,18,[[0,3,3,0,3,[[17,1,1,0,1],[18,1,1,1,2],[26,1,1,2,3]]],[1,5,5,3,8,[[52,2,2,3,5],[60,1,1,5,6],[61,1,1,6,7],[71,1,1,7,8]]],[8,1,1,8,9,[[244,1,1,8,9]]],[15,1,1,9,10,[[417,1,1,9,10]]],[17,3,2,10,12,[[462,1,1,10,11],[469,2,1,11,12]]],[18,1,1,12,13,[[486,1,1,12,13]]],[22,1,1,13,14,[[683,1,1,13,14]]],[23,3,3,14,17,[[769,1,1,14,15],[792,1,1,15,16],[793,1,1,16,17]]],[35,1,1,17,18,[[906,1,1,17,18]]]],[445,470,761,1586,1588,1812,1846,2136,7407,12383,13490,13711,14033,17746,19570,20085,20148,22797]]],["crying",[2,2,[[8,1,1,0,1,[[239,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[7311,20083]]]]},{"k":"H6819","v":[["*",[3,3,[[17,1,1,0,1,[[449,1,1,0,1]]],[23,1,1,1,2,[[774,1,1,1,2]]],[37,1,1,2,3,[[923,1,1,2,3]]]],[13202,19686,23066]]],["low",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13202]]],["ones",[1,1,[[37,1,1,0,1,[[923,1,1,0,1]]]],[23066]]],["small",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19686]]]]},{"k":"H6820","v":[["*",[10,9,[[0,7,6,0,6,[[12,1,1,0,1],[13,2,2,1,3],[18,4,3,3,6]]],[4,1,1,6,7,[[186,1,1,6,7]]],[22,1,1,7,8,[[693,1,1,7,8]]],[23,1,1,8,9,[[792,1,1,8,9]]]],[328,338,344,479,480,487,5842,17965,20114]]],["+",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[487,20114]]],["Zoar",[8,8,[[0,6,6,0,6,[[12,1,1,0,1],[13,2,2,1,3],[18,3,3,3,6]]],[4,1,1,6,7,[[186,1,1,6,7]]],[22,1,1,7,8,[[693,1,1,7,8]]]],[328,338,344,479,480,487,5842,17965]]]]},{"k":"H6821","v":[["cleaveth",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20428]]]]},{"k":"H6822","v":[["*",[36,34,[[0,1,1,0,1,[[30,1,1,0,1]]],[8,2,2,1,3,[[239,1,1,1,2],[249,1,1,2,3]]],[9,6,5,3,8,[[279,1,1,3,4],[284,5,4,4,8]]],[11,3,3,8,11,[[321,3,3,8,11]]],[17,1,1,11,12,[[450,1,1,11,12]]],[18,3,3,12,15,[[482,1,1,12,13],[514,1,1,13,14],[543,1,1,14,15]]],[19,2,2,15,17,[[642,1,1,15,16],[658,1,1,16,17]]],[21,1,1,17,18,[[677,1,1,17,18]]],[22,4,4,18,22,[[699,2,2,18,20],[730,1,1,20,21],[734,1,1,21,22]]],[23,2,2,22,24,[[750,1,1,22,23],[792,1,1,23,24]]],[24,1,1,24,25,[[800,1,1,24,25]]],[25,5,4,25,29,[[804,1,1,25,26],[834,4,3,26,29]]],[27,1,1,29,30,[[870,1,1,29,30]]],[32,2,2,30,32,[[899,2,2,30,32]]],[33,1,1,32,33,[[901,1,1,32,33]]],[34,1,1,33,34,[[904,1,1,33,34]]]],[922,7310,7524,8351,8502,8503,8504,8505,9773,9774,9776,13225,13976,14482,14880,16810,17311,17631,18040,18041,18704,18763,19106,20099,20437,20519,21282,21286,21287,22216,22668,22671,22700,22749]]],["behold",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14880]]],["beholding",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16810]]],["espy",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20099]]],["for",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13225]]],["look",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22671]]],["looketh",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17631]]],["up",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13976]]],["watch",[5,5,[[0,1,1,0,1,[[30,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[22,1,1,2,3,[[699,1,1,2,3]]],[33,1,1,3,4,[[901,1,1,3,4]]],[34,1,1,4,5,[[904,1,1,4,5]]]],[922,8351,18040,22700,22749]]],["watched",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20437]]],["watcheth",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14482]]],["watching",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7310]]],["watchman",[14,13,[[9,5,4,0,4,[[284,5,4,0,4]]],[11,3,3,4,7,[[321,3,3,4,7]]],[22,1,1,7,8,[[699,1,1,7,8]]],[25,4,4,8,12,[[804,1,1,8,9],[834,3,3,9,12]]],[27,1,1,12,13,[[870,1,1,12,13]]]],[8502,8503,8504,8505,9773,9774,9776,18041,20519,21282,21286,21287,22216]]],["watchman's",[1,1,[[25,1,1,0,1,[[834,1,1,0,1]]]],[21286]]],["watchmen",[5,5,[[8,1,1,0,1,[[249,1,1,0,1]]],[22,2,2,1,3,[[730,1,1,1,2],[734,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]],[32,1,1,4,5,[[899,1,1,4,5]]]],[7524,18704,18763,19106,22668]]],["well",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17311]]]]},{"k":"H6823","v":[["*",[46,39,[[1,26,23,0,23,[[74,5,4,0,4],[75,4,3,4,7],[76,2,2,7,9],[79,2,2,9,11],[85,4,3,11,14],[86,6,6,14,20],[87,3,3,20,23]]],[10,13,9,23,32,[[296,12,8,23,31],[300,1,1,31,32]]],[11,1,1,32,33,[[330,1,1,32,33]]],[13,5,5,33,38,[[369,3,3,33,36],[370,1,1,36,37],[375,1,1,37,38]]],[19,1,1,38,39,[[653,1,1,38,39]]]],[2206,2208,2219,2223,2264,2267,2272,2274,2278,2385,2387,2600,2602,2604,2606,2608,2615,2619,2630,2632,2635,2639,2661,8911,8916,8917,8918,8924,8926,8928,8931,9097,10040,11233,11235,11239,11255,11381,17164]]],["+",[6,6,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]],[10,3,3,2,5,[[296,3,3,2,5]]],[13,1,1,5,6,[[369,1,1,5,6]]]],[2264,2600,8911,8917,8924,11235]]],["covered",[4,4,[[10,3,3,0,3,[[296,3,3,0,3]]],[19,1,1,3,4,[[653,1,1,3,4]]]],[8911,8916,8931,17164]]],["overlaid",[25,24,[[1,13,13,0,13,[[75,1,1,0,1],[85,3,3,1,4],[86,6,6,4,10],[87,3,3,10,13]]],[10,7,6,13,19,[[296,6,5,13,18],[300,1,1,18,19]]],[11,1,1,19,20,[[330,1,1,19,20]]],[13,4,4,20,24,[[369,2,2,20,22],[370,1,1,22,23],[375,1,1,23,24]]]],[2267,2600,2602,2604,2606,2608,2615,2619,2630,2632,2635,2639,2661,8916,8917,8918,8926,8928,9097,10040,11233,11239,11255,11381]]],["overlay",[11,10,[[1,11,10,0,10,[[74,5,4,0,4],[75,2,2,4,6],[76,2,2,6,8],[79,2,2,8,10]]]],[2206,2208,2219,2223,2264,2272,2274,2278,2385,2387]]]]},{"k":"H6824","v":[["swimmest",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21254]]]]},{"k":"H6825","v":[["*",[3,3,[[0,2,2,0,2,[[35,2,2,0,2]]],[12,1,1,2,3,[[338,1,1,2,3]]]],[1051,1055,10288]]],["Zephi",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10288]]],["Zepho",[2,2,[[0,2,2,0,2,[[35,2,2,0,2]]]],[1051,1055]]]]},{"k":"H6826","v":[["*",[5,5,[[1,2,2,0,2,[[87,2,2,0,2]]],[3,2,2,2,4,[[132,2,2,2,4]]],[22,1,1,4,5,[[708,1,1,4,5]]]],[2650,2652,4232,4233,18239]]],["covering",[3,3,[[3,2,2,0,2,[[132,2,2,0,2]]],[22,1,1,2,3,[[708,1,1,2,3]]]],[4232,4233,18239]]],["overlaying",[2,2,[[1,2,2,0,2,[[87,2,2,0,2]]]],[2650,2652]]]]},{"k":"H6827","v":[["Zephon",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4504]]]]},{"k":"H6828","v":[["*",[153,141,[[0,2,2,0,2,[[12,1,1,0,1],[27,1,1,1,2]]],[1,6,6,2,8,[[75,2,2,2,4],[76,1,1,4,5],[85,1,1,5,6],[87,1,1,6,7],[89,1,1,7,8]]],[2,1,1,8,9,[[90,1,1,8,9]]],[3,5,5,9,14,[[118,1,1,9,10],[119,1,1,10,11],[150,2,2,11,13],[151,1,1,13,14]]],[4,2,2,14,16,[[154,1,1,14,15],[155,1,1,15,16]]],[5,25,22,16,38,[[194,2,2,16,18],[197,1,1,18,19],[199,1,1,19,20],[201,6,6,20,26],[202,1,1,26,27],[203,3,2,27,29],[204,8,6,29,35],[205,2,2,35,37],[210,1,1,37,38]]],[6,4,4,38,42,[[212,1,1,38,39],[217,1,1,39,40],[222,1,1,40,41],[231,1,1,41,42]]],[8,1,1,42,43,[[249,1,1,42,43]]],[10,1,1,43,44,[[297,1,1,43,44]]],[11,1,1,44,45,[[328,1,1,44,45]]],[12,3,3,45,48,[[346,1,1,45,46],[363,2,2,46,48]]],[13,1,1,48,49,[[370,1,1,48,49]]],[17,2,2,49,51,[[461,1,1,49,50],[472,1,1,50,51]]],[18,3,3,51,54,[[525,1,1,51,52],[566,1,1,52,53],[584,1,1,53,54]]],[19,1,1,54,55,[[652,1,1,54,55]]],[20,2,2,55,57,[[659,1,1,55,56],[669,1,1,56,57]]],[21,1,1,57,58,[[674,1,1,57,58]]],[22,5,5,58,63,[[692,2,2,58,60],[719,1,1,60,61],[721,1,1,61,62],[727,1,1,62,63]]],[23,25,25,63,88,[[745,3,3,63,66],[747,2,2,66,68],[748,1,1,68,69],[750,2,2,69,71],[754,1,1,71,72],[757,1,1,72,73],[759,1,1,73,74],[760,1,1,74,75],[767,1,1,75,76],[769,2,2,76,78],[775,1,1,78,79],[790,4,4,79,83],[791,1,1,83,84],[794,3,3,84,87],[795,1,1,87,88]]],[25,46,38,88,126,[[802,1,1,88,89],[809,5,3,89,92],[810,1,1,92,93],[821,1,1,93,94],[822,1,1,94,95],[827,1,1,95,96],[833,1,1,96,97],[839,2,2,97,99],[840,1,1,99,100],[841,8,7,100,107],[842,1,1,107,108],[843,7,6,108,114],[845,1,1,114,115],[847,3,2,115,117],[848,5,3,117,120],[849,7,6,120,126]]],[26,9,9,126,135,[[857,1,1,126,127],[860,8,8,127,135]]],[29,1,1,135,136,[[886,1,1,135,136]]],[35,1,1,136,137,[[907,1,1,136,137]]],[37,5,4,137,141,[[912,1,1,137,138],[916,3,2,138,140],[924,1,1,140,141]]]],[332,787,2255,2270,2283,2591,2644,2729,2756,3683,3727,4823,4825,4850,4941,5002,6013,6015,6109,6157,6207,6208,6209,6210,6212,6213,6271,6284,6285,6298,6305,6309,6310,6311,6312,6335,6348,6506,6554,6695,6870,7121,7513,8959,9977,10639,11091,11094,11250,13474,13791,14636,15338,15702,17136,17321,17516,17598,17941,17959,18476,18511,18648,18959,18960,18961,19014,19020,19033,19090,19111,19223,19286,19327,19351,19492,19543,19560,19699,20051,20055,20065,20069,20075,20169,20175,20207,20260,20468,20607,20609,20618,20624,20942,20948,21107,21278,21431,21440,21450,21496,21497,21500,21512,21517,21521,21523,21537,21553,21554,21556,21563,21565,21569,21603,21664,21674,21681,21694,21696,21703,21712,21718,21719,21732,21733,21965,22042,22043,22044,22047,22049,22051,22076,22080,22493,22818,22905,22953,22955,23072]]],["+",[37,37,[[5,13,13,0,13,[[194,2,2,0,2],[197,1,1,2,3],[201,2,2,3,5],[202,1,1,5,6],[203,2,2,6,8],[204,3,3,8,11],[205,1,1,11,12],[210,1,1,12,13]]],[6,3,3,13,16,[[212,1,1,13,14],[217,1,1,14,15],[231,1,1,15,16]]],[8,1,1,16,17,[[249,1,1,16,17]]],[17,1,1,17,18,[[472,1,1,17,18]]],[18,1,1,18,19,[[584,1,1,18,19]]],[22,3,3,19,22,[[692,1,1,19,20],[719,1,1,20,21],[727,1,1,21,22]]],[23,11,11,22,33,[[745,1,1,22,23],[748,1,1,23,24],[750,1,1,24,25],[754,1,1,25,26],[757,1,1,26,27],[759,1,1,27,28],[790,1,1,28,29],[791,1,1,29,30],[794,2,2,30,32],[795,1,1,32,33]]],[25,2,2,33,35,[[809,1,1,33,34],[827,1,1,34,35]]],[26,1,1,35,36,[[860,1,1,35,36]]],[29,1,1,36,37,[[886,1,1,36,37]]]],[6013,6015,6109,6208,6212,6271,6284,6285,6298,6305,6310,6335,6506,6554,6695,7121,7513,13791,15702,17959,18476,18648,18960,19033,19090,19223,19286,19327,20065,20075,20169,20207,20260,20609,21107,22080,22493]]],["north",[92,86,[[0,1,1,0,1,[[27,1,1,0,1]]],[1,5,5,1,6,[[75,2,2,1,3],[76,1,1,3,4],[85,1,1,4,5],[87,1,1,5,6]]],[3,3,3,6,9,[[150,2,2,6,8],[151,1,1,8,9]]],[5,4,4,9,13,[[201,1,1,9,10],[204,3,3,10,13]]],[10,1,1,13,14,[[297,1,1,13,14]]],[11,1,1,14,15,[[328,1,1,14,15]]],[12,1,1,15,16,[[346,1,1,15,16]]],[13,1,1,16,17,[[370,1,1,16,17]]],[17,1,1,17,18,[[461,1,1,17,18]]],[18,2,2,18,20,[[525,1,1,18,19],[566,1,1,19,20]]],[19,1,1,20,21,[[652,1,1,20,21]]],[20,2,2,21,23,[[659,1,1,21,22],[669,1,1,22,23]]],[21,1,1,23,24,[[674,1,1,23,24]]],[22,2,2,24,26,[[692,1,1,24,25],[721,1,1,25,26]]],[23,14,14,26,40,[[745,2,2,26,28],[747,2,2,28,30],[750,1,1,30,31],[760,1,1,31,32],[767,1,1,32,33],[769,2,2,33,35],[775,1,1,35,36],[790,3,3,36,39],[794,1,1,39,40]]],[25,39,34,40,74,[[802,1,1,40,41],[809,4,3,41,44],[810,1,1,44,45],[821,1,1,45,46],[822,1,1,46,47],[833,1,1,47,48],[839,2,2,48,50],[840,1,1,50,51],[841,7,6,51,57],[842,1,1,57,58],[843,7,6,58,64],[845,1,1,64,65],[847,3,2,65,67],[848,3,2,67,69],[849,5,5,69,74]]],[26,7,7,74,81,[[860,7,7,74,81]]],[35,1,1,81,82,[[907,1,1,81,82]]],[37,5,4,82,86,[[912,1,1,82,83],[916,3,2,83,85],[924,1,1,85,86]]]],[787,2255,2270,2283,2591,2644,4823,4825,4850,6207,6305,6309,6312,8959,9977,10639,11250,13474,14636,15338,17136,17321,17516,17598,17941,18511,18959,18961,19014,19020,19111,19351,19492,19543,19560,19699,20051,20055,20069,20175,20468,20607,20609,20618,20624,20942,20948,21278,21431,21440,21450,21497,21500,21512,21517,21521,21523,21537,21553,21554,21556,21563,21565,21569,21603,21664,21674,21694,21696,21703,21712,21718,21719,21732,22042,22043,22044,22047,22049,22051,22076,22818,22905,22953,22955,23072]]],["northward",[22,22,[[0,1,1,0,1,[[12,1,1,0,1]]],[1,1,1,1,2,[[89,1,1,1,2]]],[2,1,1,2,3,[[90,1,1,2,3]]],[3,1,1,3,4,[[119,1,1,3,4]]],[4,2,2,4,6,[[154,1,1,4,5],[155,1,1,5,6]]],[5,7,7,6,13,[[199,1,1,6,7],[201,3,3,7,10],[203,1,1,10,11],[204,2,2,11,13]]],[6,1,1,13,14,[[222,1,1,13,14]]],[12,2,2,14,16,[[363,2,2,14,16]]],[25,5,5,16,21,[[841,1,1,16,17],[848,2,2,17,19],[849,2,2,19,21]]],[26,1,1,21,22,[[857,1,1,21,22]]]],[332,2729,2756,3727,4941,5002,6157,6209,6210,6213,6285,6311,6312,6870,11091,11094,21496,21681,21696,21703,21733,21965]]],["side",[2,2,[[3,1,1,0,1,[[118,1,1,0,1]]],[5,1,1,1,2,[[205,1,1,1,2]]]],[3683,6348]]]]},{"k":"H6829","v":[["Zaphon",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6181]]]]},{"k":"H6830","v":[["northern",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22331]]]]},{"k":"H6831","v":[["Zephonites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4504]]]]},{"k":"H6832","v":[["dung",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20544]]]]},{"k":"H6833","v":[["*",[40,36,[[0,2,2,0,2,[[6,1,1,0,1],[14,1,1,1,2]]],[2,13,9,2,11,[[103,13,9,2,11]]],[4,3,3,11,14,[[156,1,1,11,12],[166,1,1,12,13],[174,1,1,13,14]]],[15,1,1,14,15,[[417,1,1,14,15]]],[17,1,1,15,16,[[476,1,1,15,16]]],[18,7,7,16,23,[[485,1,1,16,17],[488,1,1,17,18],[561,1,1,18,19],[579,1,1,19,20],[581,1,1,20,21],[601,1,1,21,22],[625,1,1,22,23]]],[19,4,4,23,27,[[633,1,1,23,24],[634,1,1,24,25],[653,1,1,25,26],[654,1,1,26,27]]],[20,2,2,27,29,[[667,1,1,27,28],[670,1,1,28,29]]],[22,1,1,29,30,[[709,1,1,29,30]]],[24,1,1,30,31,[[799,1,1,30,31]]],[25,3,3,31,34,[[818,1,1,31,32],[840,2,2,32,34]]],[27,1,1,34,35,[[872,1,1,34,35]]],[29,1,1,35,36,[[881,1,1,35,36]]]],[173,370,3115,3116,3117,3118,3160,3161,3162,3163,3164,5021,5301,5476,12400,13893,14020,14060,15262,15528,15588,16109,16381,16545,16598,17143,17177,17487,17527,18255,20406,20848,21452,21465,22251,22400]]],["bird",[21,17,[[0,1,1,0,1,[[6,1,1,0,1]]],[2,9,5,1,6,[[103,9,5,1,6]]],[17,1,1,6,7,[[476,1,1,6,7]]],[18,2,2,7,9,[[488,1,1,7,8],[601,1,1,8,9]]],[19,4,4,9,13,[[633,1,1,9,10],[634,1,1,10,11],[653,1,1,11,12],[654,1,1,12,13]]],[20,1,1,13,14,[[670,1,1,13,14]]],[24,1,1,14,15,[[799,1,1,14,15]]],[27,1,1,15,16,[[872,1,1,15,16]]],[29,1,1,16,17,[[881,1,1,16,17]]]],[173,3117,3118,3162,3163,3164,13893,14060,16109,16545,16598,17143,17177,17527,20406,22251,22400]]],["bird's",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5476]]],["birds",[10,10,[[0,1,1,0,1,[[14,1,1,0,1]]],[2,4,4,1,5,[[103,4,4,1,5]]],[4,1,1,5,6,[[166,1,1,5,6]]],[18,1,1,6,7,[[581,1,1,6,7]]],[20,1,1,7,8,[[667,1,1,7,8]]],[22,1,1,8,9,[[709,1,1,8,9]]],[25,1,1,9,10,[[840,1,1,9,10]]]],[370,3115,3116,3160,3161,5301,15588,17487,18255,21452]]],["fowl",[5,5,[[4,1,1,0,1,[[156,1,1,0,1]]],[18,2,2,1,3,[[485,1,1,1,2],[625,1,1,2,3]]],[25,2,2,3,5,[[818,1,1,3,4],[840,1,1,4,5]]]],[5021,14020,16381,20848,21465]]],["fowls",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12400]]],["sparrow",[2,2,[[18,2,2,0,2,[[561,1,1,0,1],[579,1,1,1,2]]]],[15262,15528]]]]},{"k":"H6834","v":[["Zippor",[7,7,[[3,5,5,0,5,[[138,4,4,0,4],[139,1,1,4,5]]],[5,1,1,5,6,[[210,1,1,5,6]]],[6,1,1,6,7,[[221,1,1,6,7]]]],[4377,4379,4385,4391,4434,6485,6854]]]]},{"k":"H6835","v":[["cruse",[7,7,[[8,3,3,0,3,[[261,3,3,0,3]]],[10,4,4,3,7,[[307,3,3,3,6],[309,1,1,6,7]]]],[7916,7917,7921,9329,9331,9333,9393]]]]},{"k":"H6836","v":[["watching",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20437]]]]},{"k":"H6837","v":[["Ziphion",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1402]]]]},{"k":"H6838","v":[["wafers",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1978]]]]},{"k":"H6839","v":[["Zophim",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4430]]]]},{"k":"H6840","v":[]},{"k":"H6841","v":[["+",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12168]]]]},{"k":"H6842","v":[["*",[6,5,[[13,1,1,0,1,[[395,1,1,0,1]]],[14,1,1,1,2,[[410,1,1,1,2]]],[26,4,3,2,5,[[857,4,3,2,5]]]],[11812,12236,21966,21969,21982]]],["+",[3,3,[[13,1,1,0,1,[[395,1,1,0,1]]],[26,2,2,1,3,[[857,2,2,1,3]]]],[11812,21966,21969]]],["goat",[2,2,[[26,2,2,0,2,[[857,2,2,0,2]]]],[21966,21982]]],["goats",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12236]]]]},{"k":"H6843","v":[["*",[3,3,[[22,1,1,0,1,[[706,1,1,0,1]]],[25,2,2,1,3,[[808,2,2,1,3]]]],[18169,20584,20587]]],["diadem",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18169]]],["morning",[2,2,[[25,2,2,0,2,[[808,2,2,0,2]]]],[20584,20587]]]]},{"k":"H6844","v":[["watchtower",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18040]]]]},{"k":"H6845","v":[["*",[32,31,[[1,2,2,0,2,[[51,2,2,0,2]]],[5,1,1,2,3,[[188,1,1,2,3]]],[17,8,8,3,11,[[445,1,1,3,4],[449,1,1,4,5],[450,1,1,5,6],[452,1,1,6,7],[455,1,1,7,8],[456,1,1,8,9],[458,1,1,9,10],[459,1,1,10,11]]],[18,8,8,11,19,[[487,1,1,11,12],[494,1,1,12,13],[504,1,1,13,14],[508,2,2,14,16],[533,1,1,16,17],[560,1,1,17,18],[596,1,1,18,19]]],[19,9,8,19,27,[[628,2,2,19,21],[629,2,2,21,23],[634,1,1,23,24],[637,1,1,24,25],[640,1,1,25,26],[654,2,1,26,27]]],[21,1,1,27,28,[[677,1,1,27,28]]],[23,1,1,28,29,[[760,1,1,28,29]]],[25,1,1,29,30,[[808,1,1,29,30]]],[27,1,1,30,31,[[874,1,1,30,31]]]],[1556,1557,5873,13099,13194,13223,13264,13352,13374,13431,13437,14049,14117,14290,14350,14351,14761,15244,15909,16411,16418,16434,16440,16576,16670,16769,17185,17640,19353,20599,22278]]],["esteemed",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13431]]],["hid",[8,8,[[1,1,1,0,1,[[51,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]],[17,2,2,2,4,[[445,1,1,2,3],[452,1,1,3,4]]],[18,2,2,4,6,[[494,1,1,4,5],[596,1,1,5,6]]],[23,1,1,6,7,[[760,1,1,6,7]]],[27,1,1,7,8,[[874,1,1,7,8]]]],[1556,5873,13099,13264,14117,15909,19353,22278]]],["hidden",[2,2,[[17,2,2,0,2,[[450,1,1,0,1],[459,1,1,1,2]]]],[13223,13437]]],["hide",[5,5,[[1,1,1,0,1,[[51,1,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[18,2,2,2,4,[[504,1,1,2,3],[533,1,1,3,4]]],[19,1,1,4,5,[[629,1,1,4,5]]]],[1557,13194,14290,14761,16434]]],["hideth",[2,1,[[19,2,1,0,1,[[654,2,1,0,1]]]],[17185]]],["ones",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15244]]],["places",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13352]]],["privily",[2,2,[[19,2,2,0,2,[[628,2,2,0,2]]]],[16411,16418]]],["secret",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20599]]],["secretly",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14351]]],["set",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14049]]],["up",[7,7,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,1,1,1,2,[[508,1,1,1,2]]],[19,4,4,2,6,[[629,1,1,2,3],[634,1,1,3,4],[637,1,1,4,5],[640,1,1,5,6]]],[21,1,1,6,7,[[677,1,1,6,7]]]],[13374,14350,16440,16576,16670,16769,17640]]]]},{"k":"H6846","v":[["Zephaniah",[10,10,[[11,1,1,0,1,[[337,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]],[23,5,5,2,7,[[765,1,1,2,3],[773,2,2,3,5],[781,1,1,5,6],[796,1,1,6,7]]],[35,1,1,7,8,[[906,1,1,7,8]]],[37,2,2,8,10,[[916,2,2,8,10]]]],[10240,10490,19441,19660,19664,19877,20300,22788,22957,22961]]]]},{"k":"H6847","v":[["Zaphnathpaaneah",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1240]]]]},{"k":"H6848","v":[["*",[5,5,[[19,1,1,0,1,[[650,1,1,0,1]]],[22,3,3,1,4,[[689,1,1,1,2],[692,1,1,2,3],[737,1,1,3,4]]],[23,1,1,4,5,[[752,1,1,4,5]]]],[17076,17892,17957,18805,19170]]],["adder",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17076]]],["cockatrice",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17957]]],["cockatrice'",[2,2,[[22,2,2,0,2,[[689,1,1,0,1],[737,1,1,1,2]]]],[17892,18805]]],["cockatrices",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19170]]]]},{"k":"H6849","v":[["issue",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18076]]]]},{"k":"H6850","v":[["*",[4,4,[[22,4,4,0,4,[[686,1,1,0,1],[688,1,1,1,2],[707,1,1,2,3],[716,1,1,3,4]]]],[17826,17864,18197,18404]]],["chatter",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18404]]],["peep",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17826]]],["peeped",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17864]]],["whisper",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18197]]]]},{"k":"H6851","v":[["tree",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20830]]]]},{"k":"H6852","v":[["early",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6697]]]]},{"k":"H6853","v":[["*",[4,4,[[26,4,4,0,4,[[853,4,4,0,4]]]],[21849,21851,21858,21870]]],["birds'",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21870]]],["fowls",[3,3,[[26,3,3,0,3,[[853,3,3,0,3]]]],[21849,21851,21858]]]]},{"k":"H6854","v":[["*",[13,13,[[1,11,11,0,11,[[57,11,11,0,11]]],[18,2,2,11,13,[[555,1,1,11,12],[582,1,1,12,13]]]],[1712,1713,1714,1715,1716,1717,1718,1719,1721,1722,1723,15158,15636]]],["+",[2,2,[[1,1,1,0,1,[[57,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[1713,15636]]],["frogs",[11,11,[[1,10,10,0,10,[[57,10,10,0,10]]],[18,1,1,10,11,[[555,1,1,10,11]]]],[1712,1714,1715,1716,1717,1718,1719,1721,1722,1723,15158]]]]},{"k":"H6855","v":[["Zipporah",[3,3,[[1,3,3,0,3,[[51,1,1,0,1],[53,1,1,1,2],[67,1,1,2,3]]]],[1575,1626,2001]]]]},{"k":"H6856","v":[["*",[2,2,[[4,1,1,0,1,[[173,1,1,0,1]]],[23,1,1,1,2,[[761,1,1,1,2]]]],[5459,19358]]],["nails",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5459]]],["point",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19358]]]]},{"k":"H6857","v":[["Zephath",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6526]]]]},{"k":"H6858","v":[["chapiter",[1,1,[[13,1,1,0,1,[[369,1,1,0,1]]]],[11244]]]]},{"k":"H6859","v":[["Zephathah",[1,1,[[13,1,1,0,1,[[380,1,1,0,1]]]],[11485]]]]},{"k":"H6860","v":[["Ziklag",[15,12,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]],[8,7,4,2,6,[[262,2,1,2,3],[265,5,3,3,6]]],[9,2,2,6,8,[[267,1,1,6,7],[270,1,1,7,8]]],[12,3,3,8,11,[[341,1,1,8,9],[349,2,2,9,11]]],[15,1,1,11,12,[[423,1,1,11,12]]]],[6233,6326,7936,7979,7992,8004,8023,8130,10415,10721,10740,12616]]]]},{"k":"H6861","v":[["husk",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9645]]]]},{"k":"H6862","v":[["*",[109,106,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,3,3,1,4,[[126,1,1,1,2],[138,1,1,2,3],[140,1,1,3,4]]],[4,5,5,4,9,[[156,1,1,4,5],[184,3,3,5,8],[185,1,1,8,9]]],[5,1,1,9,10,[[191,1,1,9,10]]],[6,1,1,10,11,[[221,1,1,10,11]]],[8,1,1,11,12,[[237,1,1,11,12]]],[9,3,3,12,15,[[288,1,1,12,13],[290,2,2,13,15]]],[11,1,1,15,16,[[318,1,1,15,16]]],[12,2,2,16,18,[[349,1,1,16,17],[358,1,1,17,18]]],[13,1,1,18,19,[[381,1,1,18,19]]],[14,1,1,19,20,[[406,1,1,19,20]]],[15,3,2,20,22,[[416,1,1,20,21],[421,2,1,21,22]]],[16,2,2,22,24,[[432,2,2,22,24]]],[17,8,8,24,32,[[441,1,1,24,25],[442,1,1,25,26],[450,1,1,26,27],[451,1,1,27,28],[454,1,1,28,29],[471,1,1,29,30],[473,1,1,30,31],[476,1,1,31,32]]],[18,40,40,32,72,[[480,1,1,32,33],[481,1,1,33,34],[490,1,1,34,35],[495,1,1,35,36],[504,2,2,36,38],[508,1,1,38,39],[509,1,1,39,40],[521,3,3,40,43],[536,1,1,43,44],[537,2,2,44,46],[543,1,1,46,47],[546,1,1,47,48],[551,1,1,48,49],[555,3,3,49,52],[558,1,1,52,53],[566,2,2,53,55],[574,1,1,55,56],[579,1,1,56,57],[582,1,1,57,58],[583,2,2,58,60],[584,5,5,60,65],[585,2,2,65,67],[589,1,1,67,68],[596,3,3,68,71],[613,1,1,71,72]]],[19,2,2,72,74,[[650,1,1,72,73],[651,1,1,73,74]]],[22,13,13,74,87,[[679,1,1,74,75],[683,1,1,75,76],[687,1,1,76,77],[703,1,1,77,78],[704,2,2,78,80],[708,1,1,80,81],[727,1,1,81,82],[737,2,2,82,84],[741,2,2,84,86],[742,1,1,86,87]]],[23,4,4,87,91,[[774,1,1,87,88],[790,1,1,88,89],[792,1,1,89,90],[794,1,1,90,91]]],[24,10,8,91,99,[[797,7,5,91,96],[798,2,2,96,98],[800,1,1,98,99]]],[25,2,2,99,101,[[831,1,1,99,100],[840,1,1,100,101]]],[27,1,1,101,102,[[866,1,1,101,102]]],[29,1,1,102,103,[[881,1,1,102,103]]],[32,1,1,103,104,[[897,1,1,103,104]]],[33,1,1,104,105,[[900,1,1,104,105]]],[37,1,1,105,106,[[918,1,1,105,106]]]],[356,3997,4401,4454,5034,5785,5799,5801,5817,5947,6836,7272,8609,8705,8706,9675,10737,10946,11494,12111,12370,12538,12811,12813,13001,13019,13227,13247,13308,13752,13816,13903,13958,13966,14078,14124,14287,14297,14340,14362,14576,14578,14581,14806,14818,14819,14887,14952,15058,15155,15174,15179,15231,15349,15368,15481,15523,15630,15662,15695,15701,15705,15712,15718,15727,15754,15755,15811,16037,16041,16055,16220,17071,17089,17678,17769,17840,18122,18141,18146,18237,18656,18818,18819,18875,18884,18887,19683,20055,20085,20173,20315,20317,20320,20327,20330,20336,20349,20432,21220,21471,22167,22406,22642,22686,22986]]],["+",[12,12,[[4,1,1,0,1,[[185,1,1,0,1]]],[16,1,1,1,2,[[432,1,1,1,2]]],[17,2,2,2,4,[[441,1,1,2,3],[471,1,1,3,4]]],[18,6,6,4,10,[[509,1,1,4,5],[521,1,1,5,6],[537,1,1,6,7],[582,1,1,7,8],[585,1,1,8,9],[613,1,1,9,10]]],[22,1,1,10,11,[[679,1,1,10,11]]],[23,1,1,11,12,[[790,1,1,11,12]]]],[5817,12813,13001,13752,14362,14578,14818,15630,15754,16220,17678,20055]]],["Trouble",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[13227,16041]]],["adversaries",[19,19,[[4,2,2,0,2,[[184,2,2,0,2]]],[5,1,1,2,3,[[191,1,1,2,3]]],[14,1,1,3,4,[[406,1,1,3,4]]],[15,1,1,4,5,[[416,1,1,4,5]]],[18,2,2,5,7,[[558,1,1,5,6],[566,1,1,6,7]]],[22,4,4,7,11,[[687,1,1,7,8],[737,1,1,8,9],[741,1,1,9,10],[742,1,1,10,11]]],[23,2,2,11,13,[[774,1,1,11,12],[794,1,1,12,13]]],[24,4,4,13,17,[[797,3,3,13,16],[798,1,1,16,17]]],[32,1,1,17,18,[[897,1,1,17,18]]],[33,1,1,18,19,[[900,1,1,18,19]]]],[5785,5801,5947,12111,12370,15231,15368,17840,18818,18884,18887,19683,20173,20315,20317,20327,20349,22642,22686]]],["adversary",[5,5,[[18,1,1,0,1,[[551,1,1,0,1]]],[24,3,3,1,4,[[797,1,1,1,2],[798,1,1,2,3],[800,1,1,3,4]]],[29,1,1,4,5,[[881,1,1,4,5]]]],[15058,20320,20336,20432,22406]]],["adversity",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18237]]],["afflicted",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18875]]],["affliction",[3,3,[[18,1,1,0,1,[[583,1,1,0,1]]],[27,1,1,1,2,[[866,1,1,1,2]]],[37,1,1,2,3,[[918,1,1,2,3]]]],[15695,22167,22986]]],["anguish",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13019]]],["close",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13903]]],["distress",[6,6,[[6,1,1,0,1,[[221,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,2,2,2,4,[[481,1,1,2,3],[495,1,1,3,4]]],[22,1,1,4,5,[[703,1,1,4,5]]],[24,1,1,5,6,[[797,1,1,5,6]]]],[6836,8609,13966,14124,18122,20330]]],["distresses",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21220]]],["enemies",[22,21,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[9,1,1,3,4,[[290,1,1,3,4]]],[12,1,1,4,5,[[349,1,1,4,5]]],[15,2,1,5,6,[[421,2,1,5,6]]],[17,1,1,6,7,[[454,1,1,6,7]]],[18,11,11,7,18,[[504,2,2,7,9],[521,1,1,9,10],[537,1,1,10,11],[555,1,1,11,12],[574,1,1,12,13],[583,1,1,13,14],[585,1,1,14,15],[589,1,1,15,16],[596,2,2,16,18]]],[22,1,1,18,19,[[704,1,1,18,19]]],[23,1,1,19,20,[[792,1,1,19,20]]],[25,1,1,20,21,[[840,1,1,20,21]]]],[356,4454,5799,8705,10737,12538,13308,14287,14297,14576,14819,15179,15481,15662,15755,15811,16037,16055,18141,20085,21471]]],["enemy",[10,10,[[3,1,1,0,1,[[126,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[16,1,1,2,3,[[432,1,1,2,3]]],[17,1,1,3,4,[[451,1,1,3,4]]],[18,3,3,4,7,[[521,1,1,4,5],[555,1,1,5,6],[584,1,1,6,7]]],[22,1,1,7,8,[[737,1,1,7,8]]],[24,2,2,8,10,[[797,2,2,8,10]]]],[3997,7272,12811,13247,14581,15155,15701,18819,20315,20317]]],["enemy's",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15174]]],["foes",[2,2,[[12,1,1,0,1,[[358,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]]],[10946,15349]]],["narrow",[2,2,[[3,1,1,0,1,[[138,1,1,0,1]]],[19,1,1,1,2,[[650,1,1,1,2]]]],[4401,17071]]],["small",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17089]]],["sorrow",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17769]]],["strait",[3,3,[[9,1,1,0,1,[[290,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]],[22,1,1,2,3,[[727,1,1,2,3]]]],[8706,9675,18656]]],["tribulation",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5034]]],["trouble",[14,14,[[13,1,1,0,1,[[381,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]],[18,11,11,2,13,[[480,1,1,2,3],[490,1,1,3,4],[508,1,1,4,5],[536,1,1,5,6],[543,1,1,6,7],[546,1,1,7,8],[579,1,1,8,9],[584,4,4,9,13]]],[22,1,1,13,14,[[704,1,1,13,14]]]],[11494,13816,13958,14078,14340,14806,14887,14952,15523,15705,15712,15718,15727,18146]]]]},{"k":"H6863","v":[["Zer",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6356]]]]},{"k":"H6864","v":[["*",[5,5,[[1,1,1,0,1,[[53,1,1,0,1]]],[5,2,2,1,3,[[191,2,2,1,3]]],[22,1,1,3,4,[[683,1,1,3,4]]],[25,1,1,4,5,[[804,1,1,4,5]]]],[1626,5936,5937,17767,20511]]],["+",[1,1,[[25,1,1,0,1,[[804,1,1,0,1]]]],[20511]]],["flint",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17767]]],["sharp",[2,2,[[5,2,2,0,2,[[191,2,2,0,2]]]],[5936,5937]]],["stone",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1626]]]]},{"k":"H6865","v":[["*",[42,39,[[5,1,1,0,1,[[205,1,1,0,1]]],[9,2,2,1,3,[[271,1,1,1,2],[290,1,1,2,3]]],[10,4,4,3,7,[[295,1,1,3,4],[297,1,1,4,5],[299,2,2,5,7]]],[12,1,1,7,8,[[351,1,1,7,8]]],[13,2,2,8,10,[[368,2,2,8,10]]],[18,3,3,10,13,[[522,1,1,10,11],[560,1,1,11,12],[564,1,1,12,13]]],[22,6,5,13,18,[[701,6,5,13,18]]],[23,3,3,18,21,[[769,1,1,18,19],[771,1,1,19,20],[791,1,1,20,21]]],[25,14,12,21,33,[[827,5,5,21,26],[828,5,4,26,30],[829,2,2,30,32],[830,2,1,32,33]]],[27,1,1,33,34,[[870,1,1,33,34]]],[28,1,1,34,35,[[878,1,1,34,35]]],[29,2,2,35,37,[[879,2,2,35,37]]],[37,2,2,37,39,[[919,2,2,37,39]]]],[6350,8143,8699,8879,8947,9062,9063,10775,11214,11222,14609,15248,15305,18078,18082,18085,18092,18094,19556,19599,20077,21102,21103,21104,21107,21115,21123,21124,21129,21153,21159,21169,21201,22221,22347,22373,22374,23001,23002]]],["+",[3,3,[[10,2,2,0,2,[[297,1,1,0,1],[299,1,1,1,2]]],[25,1,1,2,3,[[830,1,1,2,3]]]],[8947,9063,21201]]],["Tyre",[18,17,[[5,1,1,0,1,[[205,1,1,0,1]]],[9,2,2,1,3,[[271,1,1,1,2],[290,1,1,2,3]]],[10,2,2,3,5,[[295,1,1,3,4],[299,1,1,4,5]]],[12,1,1,5,6,[[351,1,1,5,6]]],[13,2,2,6,8,[[368,2,2,6,8]]],[18,3,3,8,11,[[522,1,1,8,9],[560,1,1,9,10],[564,1,1,10,11]]],[22,6,5,11,16,[[701,6,5,11,16]]],[28,1,1,16,17,[[878,1,1,16,17]]]],[6350,8143,8699,8879,9062,10775,11214,11222,14609,15248,15305,18078,18082,18085,18092,18094,22347]]],["Tyrus",[21,20,[[23,3,3,0,3,[[769,1,1,0,1],[771,1,1,1,2],[791,1,1,2,3]]],[25,13,12,3,15,[[827,5,5,3,8],[828,5,4,8,12],[829,2,2,12,14],[830,1,1,14,15]]],[27,1,1,15,16,[[870,1,1,15,16]]],[29,2,2,16,18,[[879,2,2,16,18]]],[37,2,2,18,20,[[919,2,2,18,20]]]],[19556,19599,20077,21102,21103,21104,21107,21115,21123,21124,21129,21153,21159,21169,21201,22221,22373,22374,23001,23002]]]]},{"k":"H6866","v":[["burned",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20942]]]]},{"k":"H6867","v":[["*",[3,3,[[2,2,2,0,2,[[102,2,2,0,2]]],[19,1,1,2,3,[[643,1,1,2,3]]]],[3075,3080,16867]]],["burning",[2,2,[[2,1,1,0,1,[[102,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]]],[3075,16867]]],["inflammation",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3080]]]]},{"k":"H6868","v":[["*",[2,2,[[10,1,1,0,1,[[301,1,1,0,1]]],[13,1,1,1,2,[[370,1,1,1,2]]]],[9134,11263]]],["Zereda",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9134]]],["Zeredathah",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11263]]]]},{"k":"H6869","v":[["*",[73,72,[[0,3,2,0,2,[[34,1,1,0,1],[41,2,1,1,2]]],[4,2,2,2,4,[[183,2,2,2,4]]],[6,1,1,4,5,[[220,1,1,4,5]]],[8,3,3,5,8,[[236,1,1,5,6],[245,1,1,6,7],[261,1,1,7,8]]],[9,1,1,8,9,[[270,1,1,8,9]]],[10,1,1,9,10,[[291,1,1,9,10]]],[11,1,1,10,11,[[331,1,1,10,11]]],[13,2,2,11,13,[[381,1,1,11,12],[386,1,1,12,13]]],[15,2,2,13,15,[[421,2,2,13,15]]],[17,2,2,15,17,[[440,1,1,15,16],[462,1,1,16,17]]],[18,24,24,17,41,[[486,1,1,17,18],[487,1,1,18,19],[497,1,1,19,20],[499,1,1,20,21],[502,2,2,21,23],[508,1,1,23,24],[511,2,2,24,26],[514,1,1,26,27],[523,1,1,27,28],[527,1,1,28,29],[531,1,1,29,30],[548,1,1,30,31],[554,1,1,31,32],[555,1,1,32,33],[558,1,1,33,34],[563,1,1,34,35],[568,1,1,35,36],[593,1,1,36,37],[597,1,1,37,38],[615,1,1,38,39],[619,1,1,39,40],[620,1,1,40,41]]],[19,7,7,41,48,[[628,1,1,41,42],[638,1,1,42,43],[639,1,1,43,44],[644,1,1,44,45],[648,1,1,45,46],[651,1,1,46,47],[652,1,1,47,48]]],[22,7,7,48,55,[[686,1,1,48,49],[708,1,1,49,50],[711,1,1,50,51],[715,1,1,51,52],[724,1,1,52,53],[741,1,1,53,54],[743,1,1,54,55]]],[23,8,8,55,63,[[748,1,1,55,56],[750,1,1,56,57],[758,1,1,57,58],[759,1,1,58,59],[760,1,1,59,60],[774,1,1,60,61],[793,1,1,61,62],[794,1,1,62,63]]],[26,1,1,63,64,[[861,1,1,63,64]]],[30,2,2,64,66,[[888,2,2,64,66]]],[31,1,1,66,67,[[890,1,1,66,67]]],[33,2,2,67,69,[[900,2,2,67,69]]],[34,1,1,69,70,[[905,1,1,69,70]]],[35,1,1,70,71,[[906,1,1,70,71]]],[37,1,1,71,72,[[920,1,1,71,72]]]],[1014,1273,5745,5749,6825,7218,7437,7929,8129,8746,10064,11496,11596,12538,12548,12970,13490,14030,14042,14183,14215,14268,14273,14338,14394,14405,14489,14615,14683,14732,14996,15095,15162,15224,15291,15410,15851,16075,16238,16288,16304,16427,16696,16732,16890,17007,17089,17132,17829,18223,18281,18355,18593,18875,18913,19058,19113,19301,19326,19355,19674,20151,20209,22082,22522,22524,22550,22691,22693,22784,22802,23027]]],["+",[7,7,[[13,1,1,0,1,[[386,1,1,0,1]]],[18,1,1,1,2,[[620,1,1,1,2]]],[19,3,3,2,5,[[638,1,1,2,3],[639,1,1,3,4],[648,1,1,4,5]]],[22,1,1,5,6,[[724,1,1,5,6]]],[31,1,1,6,7,[[890,1,1,6,7]]]],[11596,16304,16696,16732,17007,18593,22550]]],["adversary",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7218]]],["adversities",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14338]]],["adversity",[4,4,[[9,1,1,0,1,[[270,1,1,0,1]]],[13,1,1,1,2,[[381,1,1,1,2]]],[19,2,2,2,4,[[644,1,1,2,3],[651,1,1,3,4]]]],[8129,11496,16890,17089]]],["affliction",[5,5,[[22,1,1,0,1,[[741,1,1,0,1]]],[23,2,2,1,3,[[759,1,1,1,2],[760,1,1,2,3]]],[33,1,1,3,4,[[900,1,1,3,4]]],[37,1,1,4,5,[[920,1,1,4,5]]]],[18875,19326,19355,22693,23027]]],["anguish",[5,5,[[0,1,1,0,1,[[41,1,1,0,1]]],[23,4,4,1,5,[[748,1,1,1,2],[750,1,1,2,3],[793,1,1,3,4],[794,1,1,4,5]]]],[1273,19058,19113,20151,20209]]],["distress",[8,8,[[0,2,2,0,2,[[34,1,1,0,1],[41,1,1,1,2]]],[10,1,1,2,3,[[291,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[18,1,1,4,5,[[597,1,1,4,5]]],[19,1,1,5,6,[[628,1,1,5,6]]],[30,2,2,6,8,[[888,2,2,6,8]]]],[1014,1273,8746,12548,16075,16427,22522,22524]]],["tribulation",[2,2,[[6,1,1,0,1,[[220,1,1,0,1]]],[8,1,1,1,2,[[261,1,1,1,2]]]],[6825,7929]]],["tribulations",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7437]]],["trouble",[30,30,[[11,1,1,0,1,[[331,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[17,1,1,2,3,[[462,1,1,2,3]]],[18,16,16,3,19,[[486,1,1,3,4],[487,1,1,4,5],[497,1,1,5,6],[499,1,1,6,7],[514,1,1,7,8],[523,1,1,8,9],[527,1,1,9,10],[531,1,1,10,11],[554,1,1,11,12],[555,1,1,12,13],[558,1,1,13,14],[563,1,1,14,15],[568,1,1,15,16],[593,1,1,16,17],[615,1,1,17,18],[619,1,1,18,19]]],[19,1,1,19,20,[[652,1,1,19,20]]],[22,4,4,20,24,[[686,1,1,20,21],[708,1,1,21,22],[711,1,1,22,23],[715,1,1,23,24]]],[23,2,2,24,26,[[758,1,1,24,25],[774,1,1,25,26]]],[26,1,1,26,27,[[861,1,1,26,27]]],[33,1,1,27,28,[[900,1,1,27,28]]],[34,1,1,28,29,[[905,1,1,28,29]]],[35,1,1,29,30,[[906,1,1,29,30]]]],[10064,12538,13490,14030,14042,14183,14215,14489,14615,14683,14732,15095,15162,15224,15291,15410,15851,16238,16288,17132,17829,18223,18281,18355,19301,19674,22082,22691,22784,22802]]],["troubles",[9,9,[[4,2,2,0,2,[[183,2,2,0,2]]],[17,1,1,2,3,[[440,1,1,2,3]]],[18,5,5,3,8,[[502,2,2,3,5],[511,2,2,5,7],[548,1,1,7,8]]],[22,1,1,8,9,[[743,1,1,8,9]]]],[5745,5749,12970,14268,14273,14394,14405,14996,18913]]]]},{"k":"H6870","v":[["Zeruiah",[26,25,[[8,1,1,0,1,[[261,1,1,0,1]]],[9,14,14,1,15,[[268,2,2,1,3],[269,1,1,3,4],[274,1,1,4,5],[280,1,1,5,6],[282,2,2,6,8],[283,1,1,8,9],[284,1,1,9,10],[285,2,2,10,12],[287,1,1,12,13],[289,2,2,13,15]]],[10,3,3,15,18,[[291,1,1,15,16],[292,2,2,16,18]]],[12,8,7,18,25,[[339,2,1,18,19],[348,2,2,19,21],[355,2,2,21,23],[363,1,1,23,24],[364,1,1,24,25]]]],[7911,8062,8067,8120,8225,8357,8435,8436,8474,8480,8532,8533,8597,8671,8690,8724,8775,8792,10322,10679,10712,10902,10905,11105,11133]]]]},{"k":"H6871","v":[["Zeruah",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9134]]]]},{"k":"H6872","v":[["*",[10,9,[[0,2,1,0,1,[[41,2,1,0,1]]],[8,2,2,1,3,[[244,1,1,1,2],[260,1,1,2,3]]],[9,1,1,3,4,[[283,1,1,3,4]]],[17,1,1,4,5,[[449,1,1,4,5]]],[19,1,1,5,6,[[634,1,1,5,6]]],[21,1,1,6,7,[[671,1,1,6,7]]],[29,1,1,7,8,[[887,1,1,7,8]]],[36,1,1,8,9,[[909,1,1,8,9]]]],[1287,7392,7890,8462,13198,16595,17550,22504,22846]]],["Zeror",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7392]]],["bag",[3,3,[[17,1,1,0,1,[[449,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]],[36,1,1,2,3,[[909,1,1,2,3]]]],[13198,16595,22846]]],["bundle",[3,3,[[0,1,1,0,1,[[41,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]],[21,1,1,2,3,[[671,1,1,2,3]]]],[1287,7890,17550]]],["bundles",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1287]]],["grain",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22504]]],["stone",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8462]]]]},{"k":"H6873","v":[["*",[2,2,[[22,1,1,0,1,[[720,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]]],[18493,22801]]],["cry",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22801]]],["roar",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18493]]]]},{"k":"H6874","v":[["Zeri",[1,1,[[12,1,1,0,1,[[362,1,1,0,1]]]],[11049]]]]},{"k":"H6875","v":[["balm",[6,6,[[0,2,2,0,2,[[36,1,1,0,1],[42,1,1,1,2]]],[23,3,3,2,5,[[752,1,1,2,3],[790,1,1,3,4],[795,1,1,4,5]]],[25,1,1,5,6,[[828,1,1,5,6]]]],[1108,1301,19175,20056,20220,21138]]]]},{"k":"H6876","v":[["Tyre",[5,5,[[10,1,1,0,1,[[297,1,1,0,1]]],[12,1,1,1,2,[[359,1,1,1,2]]],[13,1,1,2,3,[[368,1,1,2,3]]],[14,1,1,3,4,[[405,1,1,3,4]]],[15,1,1,4,5,[[425,1,1,4,5]]]],[8948,10968,11225,12104,12687]]]]},{"k":"H6877","v":[["*",[4,3,[[6,3,2,0,2,[[219,3,2,0,2]]],[8,1,1,2,3,[[248,1,1,2,3]]]],[6800,6803,7491]]],["hold",[3,2,[[6,3,2,0,2,[[219,3,2,0,2]]]],[6800,6803]]],["places",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7491]]]]},{"k":"H6878","v":[["need",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11227]]]]},{"k":"H6879","v":[["*",[20,18,[[1,1,1,0,1,[[53,1,1,0,1]]],[2,5,5,1,6,[[102,2,2,1,3],[103,2,2,3,5],[111,1,1,5,6]]],[3,3,2,6,8,[[121,1,1,6,7],[128,2,1,7,8]]],[9,1,1,8,9,[[269,1,1,8,9]]],[11,6,6,9,15,[[317,3,3,9,12],[319,2,2,12,14],[327,1,1,14,15]]],[13,4,3,15,18,[[392,4,3,15,18]]]],[1607,3096,3097,3113,3114,3373,3794,4069,8110,9648,9658,9674,9710,9715,9930,11752,11753,11755]]],["leper",[13,12,[[2,4,4,0,4,[[102,1,1,0,1],[103,2,2,1,3],[111,1,1,3,4]]],[3,1,1,4,5,[[121,1,1,4,5]]],[9,1,1,5,6,[[269,1,1,5,6]]],[11,4,4,6,10,[[317,3,3,6,9],[327,1,1,9,10]]],[13,3,2,10,12,[[392,3,2,10,12]]]],[3097,3113,3114,3373,3794,8110,9648,9658,9674,9930,11753,11755]]],["lepers",[1,1,[[11,1,1,0,1,[[319,1,1,0,1]]]],[9715]]],["leprous",[6,5,[[1,1,1,0,1,[[53,1,1,0,1]]],[2,1,1,1,2,[[102,1,1,1,2]]],[3,2,1,2,3,[[128,2,1,2,3]]],[11,1,1,3,4,[[319,1,1,3,4]]],[13,1,1,4,5,[[392,1,1,4,5]]]],[1607,3096,4069,9710,11752]]]]},{"k":"H6880","v":[["*",[3,3,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,1,1,1,2,[[159,1,1,1,2]]],[5,1,1,2,3,[[210,1,1,2,3]]]],[2172,5131,6488]]],["hornet",[2,2,[[4,1,1,0,1,[[159,1,1,0,1]]],[5,1,1,1,2,[[210,1,1,1,2]]]],[5131,6488]]],["hornets",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2172]]]]},{"k":"H6881","v":[["*",[10,10,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]],[6,6,6,2,8,[[223,2,2,2,4],[226,1,1,4,5],[228,3,3,5,8]]],[13,1,1,8,9,[[377,1,1,8,9]]],[15,1,1,9,10,[[423,1,1,9,10]]]],[6235,6362,6886,6909,6980,6995,7001,7004,11424,12617]]],["+",[3,3,[[6,3,3,0,3,[[223,1,1,0,1],[228,2,2,1,3]]]],[6886,6995,7004]]],["Zareah",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12617]]],["Zorah",[5,5,[[5,1,1,0,1,[[205,1,1,0,1]]],[6,3,3,1,4,[[223,1,1,1,2],[226,1,1,2,3],[228,1,1,3,4]]],[13,1,1,4,5,[[377,1,1,4,5]]]],[6362,6909,6980,7001,11424]]],["Zoreah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6235]]]]},{"k":"H6882","v":[["*",[3,3,[[12,3,3,0,3,[[339,2,2,0,2],[341,1,1,2,3]]]],[10359,10360,10387]]],["Zareathites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10359]]],["Zorathites",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10387]]],["Zorites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10360]]]]},{"k":"H6883","v":[["*",[35,33,[[2,29,27,0,27,[[102,21,19,0,19],[103,8,8,19,27]]],[4,1,1,27,28,[[176,1,1,27,28]]],[11,4,4,28,32,[[317,4,4,28,32]]],[13,1,1,32,33,[[392,1,1,32,33]]]],[3054,3055,3060,3061,3063,3064,3065,3067,3072,3077,3079,3082,3094,3095,3099,3101,3103,3104,3111,3114,3118,3143,3145,3155,3165,3166,3168,5533,9650,9653,9654,9674,11751]]],["+",[3,3,[[11,3,3,0,3,[[317,3,3,0,3]]]],[9650,9653,9654]]],["leprosy",[32,30,[[2,29,27,0,27,[[102,21,19,0,19],[103,8,8,19,27]]],[4,1,1,27,28,[[176,1,1,27,28]]],[11,1,1,28,29,[[317,1,1,28,29]]],[13,1,1,29,30,[[392,1,1,29,30]]]],[3054,3055,3060,3061,3063,3064,3065,3067,3072,3077,3079,3082,3094,3095,3099,3101,3103,3104,3111,3114,3118,3143,3145,3155,3165,3166,3168,5533,9674,11751]]]]},{"k":"H6884","v":[["*",[33,29,[[6,2,2,0,2,[[217,1,1,0,1],[227,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[15,2,2,3,5,[[415,2,2,3,5]]],[18,8,7,5,12,[[489,1,1,5,6],[494,1,1,6,7],[495,1,1,7,8],[503,1,1,8,9],[543,2,1,9,10],[582,1,1,10,11],[596,1,1,11,12]]],[19,2,2,12,14,[[652,1,1,12,13],[657,1,1,13,14]]],[22,6,5,14,19,[[679,1,1,14,15],[718,2,1,15,16],[719,1,1,16,17],[724,1,1,17,18],[726,1,1,18,19]]],[23,6,5,19,24,[[750,2,1,19,20],[753,1,1,20,21],[754,2,2,21,23],[795,1,1,23,24]]],[26,2,2,24,26,[[860,1,1,24,25],[861,1,1,25,26]]],[37,2,1,26,27,[[923,2,1,26,27]]],[38,2,2,27,29,[[927,2,2,27,29]]]],[6698,6984,8633,12335,12359,14072,14106,14148,14275,14883,15625,16038,17117,17256,17679,18439,18458,18592,18624,19118,19182,19210,19215,20229,22071,22091,23068,23122,23123]]],["away",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17679]]],["casteth",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18439]]],["finer",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17117]]],["founder",[5,5,[[6,1,1,0,1,[[227,1,1,0,1]]],[23,4,4,1,5,[[750,1,1,1,2],[754,2,2,2,4],[795,1,1,4,5]]]],[6984,19118,19210,19215,20229]]],["goldsmith",[3,3,[[22,3,3,0,3,[[718,1,1,0,1],[719,1,1,1,2],[724,1,1,2,3]]]],[18439,18458,18592]]],["goldsmiths",[2,2,[[15,2,2,0,2,[[415,2,2,0,2]]]],[12335,12359]]],["melt",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19182]]],["melteth",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19118]]],["pure",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[16038,17256]]],["refine",[1,1,[[37,1,1,0,1,[[923,1,1,0,1]]]],[23068]]],["refined",[2,2,[[22,1,1,0,1,[[726,1,1,0,1]]],[37,1,1,1,2,[[923,1,1,1,2]]]],[18624,23068]]],["refiner",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23123]]],["refiner's",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23122]]],["tried",[8,7,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,6,5,1,6,[[489,1,1,1,2],[494,1,1,2,3],[495,1,1,3,4],[543,2,1,4,5],[582,1,1,5,6]]],[26,1,1,6,7,[[861,1,1,6,7]]]],[8633,14072,14106,14148,14883,15625,22091]]],["try",[3,3,[[6,1,1,0,1,[[217,1,1,0,1]]],[18,1,1,1,2,[[503,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[6698,14275,22071]]]]},{"k":"H6885","v":[["goldsmith's",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12358]]]]},{"k":"H6886","v":[["Zarephath",[3,3,[[10,2,2,0,2,[[307,2,2,0,2]]],[30,1,1,2,3,[[888,1,1,2,3]]]],[9326,9327,22530]]]]},{"k":"H6887","v":[["*",[54,52,[[1,2,2,0,2,[[61,1,1,0,1],[72,1,1,1,2]]],[2,1,1,2,3,[[107,1,1,2,3]]],[3,4,4,3,7,[[126,1,1,3,4],[141,2,2,4,6],[149,1,1,6,7]]],[4,2,1,7,8,[[180,2,1,7,8]]],[5,1,1,8,9,[[195,1,1,8,9]]],[8,3,3,9,12,[[248,1,1,9,10],[260,1,1,10,11],[263,1,1,11,12]]],[9,3,3,12,15,[[267,1,1,12,13],[279,1,1,13,14],[286,1,1,14,15]]],[10,1,1,15,16,[[298,1,1,15,16]]],[12,1,1,16,17,[[358,1,1,16,17]]],[13,3,3,17,20,[[372,1,1,17,18],[394,1,1,18,19],[399,1,1,19,20]]],[15,1,1,20,21,[[421,1,1,20,21]]],[16,4,4,21,25,[[428,1,1,21,22],[433,1,1,22,23],[434,2,2,23,25]]],[17,1,1,25,26,[[461,1,1,25,26]]],[18,14,14,26,40,[[483,1,1,26,27],[484,2,2,27,29],[485,1,1,29,30],[487,1,1,30,31],[500,1,1,31,32],[508,1,1,32,33],[519,1,1,33,34],[546,1,1,34,35],[551,2,2,35,37],[606,2,2,37,39],[620,1,1,39,40]]],[19,2,2,40,42,[[653,1,1,40,41],[657,1,1,41,42]]],[22,4,3,42,45,[[686,1,1,42,43],[689,2,1,43,44],[706,1,1,44,45]]],[23,3,3,45,48,[[754,1,1,45,46],[792,1,1,46,47],[793,1,1,47,48]]],[27,2,2,48,50,[[865,1,1,48,49],[874,1,1,49,50]]],[29,1,1,50,51,[[883,1,1,50,51]]],[35,1,1,51,52,[[906,1,1,51,52]]]],[1850,2166,3269,3997,4488,4489,4815,5663,6041,7491,7890,7957,8048,8319,8557,9022,10947,11310,11786,11920,12538,12757,12818,12844,12858,13475,13992,13999,14001,14014,14046,14240,14342,14565,14954,15052,15071,16133,16134,16305,17149,17255,17823,17897,18184,19219,20121,20149,22152,22278,22435,22804]]],["+",[4,4,[[3,1,1,0,1,[[141,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]],[22,1,1,2,3,[[689,1,1,2,3]]],[27,1,1,3,4,[[865,1,1,3,4]]]],[4488,10947,17897,22152]]],["adversaries",[3,3,[[1,1,1,0,1,[[72,1,1,0,1]]],[18,1,1,1,2,[[546,1,1,1,2]]],[22,1,1,2,3,[[689,1,1,2,3]]]],[2166,14954,17897]]],["afflict",[2,2,[[18,1,1,0,1,[[620,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[16305,22435]]],["afflicted",[2,2,[[18,2,2,0,2,[[606,2,2,0,2]]]],[16133,16134]]],["affliction",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11920]]],["besiege",[4,3,[[4,2,1,0,1,[[180,2,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[13,1,1,2,3,[[372,1,1,2,3]]]],[5663,9022,11310]]],["bindeth",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17149]]],["bound",[2,2,[[8,1,1,0,1,[[260,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[7890,17255]]],["distress",[3,3,[[13,1,1,0,1,[[394,1,1,0,1]]],[23,1,1,1,2,[[754,1,1,1,2]]],[35,1,1,2,3,[[906,1,1,2,3]]]],[11786,19219,22804]]],["distressed",[2,2,[[8,1,1,0,1,[[263,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]]],[7957,8048]]],["enemies",[9,9,[[18,9,9,0,9,[[483,1,1,0,1],[484,1,1,1,2],[485,1,1,2,3],[487,1,1,3,4],[500,1,1,4,5],[508,1,1,5,6],[519,1,1,6,7],[551,2,2,7,9]]]],[13992,14001,14014,14046,14240,14342,14565,15052,15071]]],["enemy",[5,5,[[16,4,4,0,4,[[428,1,1,0,1],[433,1,1,1,2],[434,2,2,2,4]]],[18,1,1,4,5,[[484,1,1,4,5]]]],[12757,12818,12844,12858,13999]]],["narrower",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18184]]],["oppresseth",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[3997]]],["pangs",[2,2,[[23,2,2,0,2,[[792,1,1,0,1],[793,1,1,1,2]]]],[20121,20149]]],["strait",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7491]]],["up",[6,6,[[1,1,1,0,1,[[61,1,1,0,1]]],[5,1,1,1,2,[[195,1,1,1,2]]],[9,1,1,2,3,[[286,1,1,2,3]]],[17,1,1,3,4,[[461,1,1,3,4]]],[22,1,1,4,5,[[686,1,1,4,5]]],[27,1,1,5,6,[[874,1,1,5,6]]]],[1850,6041,8557,13475,17823,22278]]],["vex",[3,3,[[2,1,1,0,1,[[107,1,1,0,1]]],[3,2,2,1,3,[[141,1,1,1,2],[149,1,1,2,3]]]],[3269,4489,4815]]],["vexed",[2,2,[[9,1,1,0,1,[[279,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]]],[8319,12538]]]]},{"k":"H6888","v":[["Zererath",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6716]]]]},{"k":"H6889","v":[["Zereth",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10392]]]]},{"k":"H6890","v":[["Zarethshahar",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6173]]]]},{"k":"H6891","v":[["*",[3,3,[[5,1,1,0,1,[[189,1,1,0,1]]],[10,2,2,1,3,[[294,1,1,1,2],[297,1,1,2,3]]]],[5909,8856,8980]]],["Zaretan",[1,1,[[5,1,1,0,1,[[189,1,1,0,1]]]],[5909]]],["Zartanah",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8856]]],["Zarthan",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8980]]]]},{"k":"H6892","v":[["vomit",[4,4,[[19,1,1,0,1,[[653,1,1,0,1]]],[22,2,2,1,3,[[697,1,1,1,2],[706,1,1,2,3]]],[23,1,1,3,4,[[792,1,1,3,4]]]],[17152,18018,18172,20106]]]]},{"k":"H6893","v":[["*",[5,5,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[18,1,1,2,3,[[579,1,1,2,3]]],[22,1,1,3,4,[[712,1,1,3,4]]],[35,1,1,4,5,[[907,1,1,4,5]]]],[3015,5307,15527,18314,22819]]],["cormorant",[2,2,[[22,1,1,0,1,[[712,1,1,0,1]]],[35,1,1,1,2,[[907,1,1,1,2]]]],[18314,22819]]],["pelican",[3,3,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[18,1,1,2,3,[[579,1,1,2,3]]]],[3015,5307,15527]]]]},{"k":"H6894","v":[["cab",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9699]]]]},{"k":"H6895","v":[["*",[11,9,[[3,10,8,0,8,[[138,2,2,0,2],[139,7,5,2,7],[140,1,1,7,8]]],[19,1,1,8,9,[[638,1,1,8,9]]]],[4386,4392,4424,4427,4429,4441,4443,4456,16714]]],["+",[2,1,[[3,2,1,0,1,[[139,2,1,0,1]]]],[4441]]],["curse",[8,8,[[3,7,7,0,7,[[138,2,2,0,2],[139,4,4,2,6],[140,1,1,6,7]]],[19,1,1,7,8,[[638,1,1,7,8]]]],[4386,4392,4424,4427,4429,4443,4456,16714]]],["cursed",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4424]]]]},{"k":"H6896","v":[["maw",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5387]]]]},{"k":"H6897","v":[["belly",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4479]]]]},{"k":"H6898","v":[["tent",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4479]]]]},{"k":"H6899","v":[["companies",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18778]]]]},{"k":"H6900","v":[["*",[14,13,[[0,3,2,0,2,[[34,2,1,0,1],[46,1,1,1,2]]],[4,1,1,2,3,[[186,1,1,2,3]]],[8,1,1,3,4,[[245,1,1,3,4]]],[11,3,3,4,7,[[321,1,1,4,5],[333,1,1,5,6],[335,1,1,6,7]]],[13,1,1,7,8,[[392,1,1,7,8]]],[20,1,1,8,9,[[664,1,1,8,9]]],[22,1,1,9,10,[[692,1,1,9,10]]],[23,1,1,10,11,[[766,1,1,10,11]]],[25,2,2,11,13,[[833,2,2,11,13]]]],[1031,1450,5845,7420,9784,10145,10195,11755,17420,17948,19473,21271,21272]]],["burial",[4,4,[[13,1,1,0,1,[[392,1,1,0,1]]],[20,1,1,1,2,[[664,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]],[23,1,1,3,4,[[766,1,1,3,4]]]],[11755,17420,17948,19473]]],["buryingplace",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1450]]],["grave",[4,3,[[0,2,1,0,1,[[34,2,1,0,1]]],[25,2,2,1,3,[[833,2,2,1,3]]]],[1031,21271,21272]]],["sepulchre",[5,5,[[4,1,1,0,1,[[186,1,1,0,1]]],[8,1,1,1,2,[[245,1,1,1,2]]],[11,3,3,2,5,[[321,1,1,2,3],[333,1,1,3,4],[335,1,1,4,5]]]],[5845,7420,9784,10145,10195]]]]},{"k":"H6901","v":[["*",[13,12,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]],[12,2,2,2,4,[[349,1,1,2,3],[358,1,1,3,4]]],[13,2,2,4,6,[[395,2,2,4,6]]],[14,1,1,6,7,[[410,1,1,6,7]]],[16,3,3,7,10,[[429,1,1,7,8],[434,2,2,8,10]]],[17,2,1,10,11,[[437,2,1,10,11]]],[19,1,1,11,12,[[646,1,1,11,12]]]],[2240,2578,10738,10945,11807,11813,12231,12766,12857,12861,12901,16945]]],["+",[2,2,[[13,1,1,0,1,[[395,1,1,0,1]]],[17,1,1,1,2,[[437,1,1,1,2]]]],[11813,12901]]],["Choose",[1,1,[[12,1,1,0,1,[[358,1,1,0,1]]]],[10945]]],["held",[1,1,[[1,1,1,0,1,[[85,1,1,0,1]]]],[2578]]],["hold",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2240]]],["receive",[2,2,[[17,1,1,0,1,[[437,1,1,0,1]]],[19,1,1,1,2,[[646,1,1,1,2]]]],[12901,16945]]],["received",[2,2,[[12,1,1,0,1,[[349,1,1,0,1]]],[16,1,1,1,2,[[429,1,1,1,2]]]],[10738,12766]]],["took",[3,3,[[13,1,1,0,1,[[395,1,1,0,1]]],[14,1,1,1,2,[[410,1,1,1,2]]],[16,1,1,2,3,[[434,1,1,2,3]]]],[11807,12231,12861]]],["undertook",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12857]]]]},{"k":"H6902","v":[["*",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[854,1,1,1,2],[856,1,1,2,3]]]],[21764,21905,21951]]],["receive",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21764]]],["take",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21951]]],["took",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21905]]]]},{"k":"H6903","v":[["*",[29,29,[[14,5,5,0,5,[[406,2,2,0,2],[408,1,1,2,3],[409,2,2,3,5]]],[26,24,24,5,29,[[851,8,8,5,13],[852,5,5,13,18],[853,1,1,18,19],[854,5,5,19,24],[855,5,5,24,29]]]],[12124,12126,12164,12187,12190,21766,21768,21770,21782,21789,21798,21799,21803,21810,21814,21815,21829,21836,21855,21875,21879,21884,21886,21896,21908,21909,21914,21915,21927]]],["+",[22,22,[[14,3,3,0,3,[[406,1,1,0,1],[409,2,2,1,3]]],[26,19,19,3,22,[[851,7,7,3,10],[852,4,4,10,14],[853,1,1,14,15],[854,2,2,15,17],[855,5,5,17,22]]]],[12124,12187,12190,21766,21768,21770,21782,21798,21799,21803,21814,21815,21829,21836,21855,21886,21896,21908,21909,21914,21915,21927]]],["against",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21879]]],["before",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[852,1,1,1,2],[854,1,1,2,3]]]],[21789,21810,21875]]],["means",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12126]]],["of",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21884]]],["to",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12164]]]]},{"k":"H6904","v":[["war",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21109]]]]},{"k":"H6905","v":[["before",[1,1,[[11,1,1,0,1,[[327,1,1,0,1]]]],[9935]]]]},{"k":"H6906","v":[["*",[6,3,[[19,2,1,0,1,[[649,2,1,0,1]]],[38,4,2,1,3,[[927,4,2,1,3]]]],[17038,23128,23129]]],["rob",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23128]]],["robbed",[3,2,[[38,3,2,0,2,[[927,3,2,0,2]]]],[23128,23129]]],["spoil",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17038]]],["spoiled",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17038]]]]},{"k":"H6907","v":[["dregs",[2,2,[[22,2,2,0,2,[[729,2,2,0,2]]]],[18690,18695]]]]},{"k":"H6908","v":[["*",[127,121,[[0,3,3,0,3,[[40,2,2,0,2],[48,1,1,2,3]]],[4,3,3,3,6,[[165,1,1,3,4],[182,2,2,4,6]]],[5,2,2,6,8,[[195,1,1,6,7],[196,1,1,7,8]]],[6,2,2,8,10,[[219,1,1,8,9],[222,1,1,9,10]]],[8,10,9,10,19,[[242,3,3,10,13],[243,1,1,13,14],[257,1,1,14,15],[260,1,1,15,16],[263,3,2,16,18],[264,1,1,18,19]]],[9,3,3,19,22,[[268,2,2,19,21],[269,1,1,21,22]]],[10,5,5,22,27,[[301,1,1,22,23],[308,2,2,23,25],[310,1,1,25,26],[312,1,1,26,27]]],[11,2,2,27,29,[[318,1,1,27,28],[322,1,1,28,29]]],[12,3,3,29,32,[[348,1,1,29,30],[350,1,1,30,31],[353,1,1,31,32]]],[13,11,10,32,42,[[379,1,1,32,33],[381,2,2,33,35],[384,1,1,35,36],[386,1,1,36,37],[389,1,1,37,38],[390,2,1,38,39],[391,1,1,39,40],[398,2,2,40,42]]],[14,5,5,42,47,[[409,1,1,42,43],[410,1,1,43,44],[412,3,3,44,47]]],[15,5,5,47,52,[[413,1,1,47,48],[416,1,1,48,49],[417,1,1,49,50],[419,1,1,50,51],[425,1,1,51,52]]],[16,3,3,52,55,[[427,3,3,52,55]]],[18,4,4,55,59,[[518,1,1,55,56],[579,1,1,56,57],[583,1,1,57,58],[584,1,1,58,59]]],[19,2,2,59,61,[[640,1,1,59,60],[655,1,1,60,61]]],[22,20,18,61,79,[[689,1,1,61,62],[691,1,1,62,63],[700,1,1,63,64],[712,2,2,64,66],[718,1,1,66,67],[721,2,2,67,69],[722,1,1,69,70],[723,1,1,70,71],[726,1,1,71,72],[727,1,1,72,73],[732,1,1,73,74],[734,3,1,74,75],[738,2,2,75,77],[740,1,1,77,78],[744,1,1,78,79]]],[23,8,8,79,87,[[767,1,1,79,80],[773,1,1,80,81],[775,2,2,81,83],[776,1,1,83,84],[784,1,1,84,85],[793,2,2,85,87]]],[25,16,15,87,102,[[812,1,1,87,88],[817,2,1,88,89],[821,2,2,89,91],[823,2,2,91,93],[829,1,1,93,94],[830,2,2,94,96],[835,1,1,96,97],[837,1,1,97,98],[838,1,1,98,99],[839,1,1,99,100],[840,2,2,100,102]]],[27,3,3,102,105,[[862,1,1,102,103],[869,1,1,103,104],[870,1,1,104,105]]],[28,4,4,105,109,[[877,2,2,105,107],[878,2,2,107,109]]],[32,5,4,109,113,[[893,1,1,109,110],[894,2,1,110,111],[896,2,2,111,113]]],[33,2,2,113,115,[[901,1,1,113,114],[902,1,1,114,115]]],[34,1,1,115,116,[[904,1,1,115,116]]],[35,3,3,116,119,[[908,3,3,116,119]]],[37,2,2,119,121,[[920,2,2,119,121]]]],[1230,1243,1475,5288,5711,5712,6039,6070,6801,6873,7357,7358,7359,7373,7789,7862,7943,7946,7968,8074,8079,8102,9132,9360,9361,9409,9486,9698,9811,10674,10762,10855,11460,11499,11500,11547,11591,11658,11682,11709,11879,11881,12201,12216,12253,12259,12261,12305,12379,12398,12425,12682,12727,12732,12743,14548,15543,15698,15702,16758,17204,17896,17920,18061,18318,18319,18431,18510,18514,18544,18581,18628,18654,18730,18761,18825,18828,18863,18940,19487,19649,19699,19701,19768,19956,20132,20141,20672,20799,20929,20936,20995,20996,21182,21188,21196,21326,21383,21418,21433,21465,21475,22105,22204,22214,22317,22327,22345,22354,22586,22607,22626,22632,22709,22730,22753,22828,22839,22840,23024,23026]]],["+",[31,30,[[0,2,2,0,2,[[40,2,2,0,2]]],[6,1,1,2,3,[[222,1,1,2,3]]],[8,4,4,3,7,[[242,1,1,3,4],[263,2,2,4,6],[264,1,1,6,7]]],[9,2,2,7,9,[[268,1,1,7,8],[269,1,1,8,9]]],[10,3,3,9,12,[[308,1,1,9,10],[310,1,1,10,11],[312,1,1,11,12]]],[11,2,2,12,14,[[318,1,1,12,13],[322,1,1,13,14]]],[13,5,5,14,19,[[381,1,1,14,15],[384,1,1,15,16],[389,1,1,16,17],[390,1,1,17,18],[391,1,1,18,19]]],[15,1,1,19,20,[[419,1,1,19,20]]],[16,1,1,20,21,[[427,1,1,20,21]]],[22,2,2,21,23,[[700,1,1,21,22],[744,1,1,22,23]]],[23,1,1,23,24,[[767,1,1,23,24]]],[25,3,3,24,27,[[817,1,1,24,25],[829,1,1,25,26],[830,1,1,26,27]]],[27,1,1,27,28,[[862,1,1,27,28]]],[28,1,1,28,29,[[878,1,1,28,29]]],[32,2,1,29,30,[[894,2,1,29,30]]]],[1230,1243,6873,7357,7943,7946,7968,8079,8102,9361,9409,9486,9698,9811,11499,11547,11658,11682,11709,12425,12727,18061,18940,19487,20799,21182,21196,22105,22345,22607]]],["assemble",[2,2,[[28,1,1,0,1,[[877,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[22327,22828]]],["assembled",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12253]]],["gather",[34,34,[[4,3,3,0,3,[[165,1,1,0,1],[182,2,2,1,3]]],[10,1,1,3,4,[[308,1,1,3,4]]],[13,1,1,4,5,[[390,1,1,4,5]]],[15,1,1,5,6,[[413,1,1,5,6]]],[18,1,1,6,7,[[583,1,1,6,7]]],[19,1,1,7,8,[[655,1,1,7,8]]],[22,4,4,8,12,[[718,1,1,8,9],[721,1,1,9,10],[732,1,1,10,11],[734,1,1,11,12]]],[23,4,4,12,16,[[773,1,1,12,13],[775,2,2,13,15],[776,1,1,15,16]]],[25,9,9,16,25,[[812,1,1,16,17],[817,1,1,17,18],[821,2,2,18,20],[823,2,2,20,22],[835,1,1,22,23],[837,1,1,23,24],[838,1,1,24,25]]],[27,1,1,25,26,[[869,1,1,25,26]]],[28,1,1,26,27,[[877,1,1,26,27]]],[32,2,2,27,29,[[896,2,2,27,29]]],[33,1,1,29,30,[[901,1,1,29,30]]],[35,2,2,30,32,[[908,2,2,30,32]]],[37,2,2,32,34,[[920,2,2,32,34]]]],[5288,5711,5712,9360,11682,12305,15698,17204,18431,18510,18730,18761,19649,19699,19701,19768,20672,20799,20929,20936,20995,20996,21326,21383,21418,22204,22317,22626,22632,22709,22839,22840,23024,23026]]],["gathered",[15,15,[[10,1,1,0,1,[[301,1,1,0,1]]],[13,2,2,1,3,[[379,1,1,1,2],[398,1,1,2,3]]],[15,1,1,3,4,[[417,1,1,3,4]]],[18,2,2,4,6,[[579,1,1,4,5],[584,1,1,5,6]]],[22,4,4,6,10,[[712,2,2,6,8],[721,1,1,8,9],[734,1,1,9,10]]],[23,1,1,10,11,[[784,1,1,10,11]]],[25,3,3,11,14,[[830,1,1,11,12],[839,1,1,12,13],[840,1,1,13,14]]],[32,1,1,14,15,[[893,1,1,14,15]]]],[9132,11460,11879,12398,15543,15702,18318,18319,18514,18761,19956,21188,21433,21475,22586]]],["gathereth",[4,4,[[18,1,1,0,1,[[518,1,1,0,1]]],[19,1,1,1,2,[[640,1,1,1,2]]],[22,1,1,2,3,[[734,1,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[14548,16758,18761,22730]]],["heapeth",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22753]]],["resort",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12379]]],["themselves",[4,4,[[5,1,1,0,1,[[195,1,1,0,1]]],[8,1,1,1,2,[[257,1,1,1,2]]],[12,2,2,2,4,[[348,1,1,2,3],[350,1,1,3,4]]]],[6039,7789,10674,10762]]],["together",[28,28,[[0,1,1,0,1,[[48,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[6,1,1,2,3,[[219,1,1,2,3]]],[8,5,5,3,8,[[242,2,2,3,5],[243,1,1,5,6],[260,1,1,6,7],[263,1,1,7,8]]],[9,1,1,8,9,[[268,1,1,8,9]]],[12,1,1,9,10,[[353,1,1,9,10]]],[13,3,3,10,13,[[381,1,1,10,11],[386,1,1,11,12],[398,1,1,12,13]]],[14,4,4,13,17,[[409,1,1,13,14],[410,1,1,14,15],[412,2,2,15,17]]],[15,1,1,17,18,[[425,1,1,17,18]]],[16,2,2,18,20,[[427,2,2,18,20]]],[22,6,6,20,26,[[689,1,1,20,21],[722,1,1,21,22],[727,1,1,22,23],[738,2,2,23,25],[740,1,1,25,26]]],[23,1,1,26,27,[[793,1,1,26,27]]],[28,1,1,27,28,[[878,1,1,27,28]]]],[1475,6070,6801,7358,7359,7373,7862,7946,8074,10855,11500,11591,11881,12201,12216,12259,12261,12682,12732,12743,17896,18544,18654,18825,18828,18863,20141,22354]]],["up",[3,3,[[22,1,1,0,1,[[691,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]],[27,1,1,2,3,[[870,1,1,2,3]]]],[17920,20132,22214]]],["yourselves",[3,3,[[22,2,2,0,2,[[723,1,1,0,1],[726,1,1,1,2]]],[25,1,1,2,3,[[840,1,1,2,3]]]],[18581,18628,21465]]]]},{"k":"H6909","v":[["*",[3,3,[[5,1,1,0,1,[[201,1,1,0,1]]],[9,1,1,1,2,[[289,1,1,1,2]]],[12,1,1,2,3,[[348,1,1,2,3]]]],[6223,8673,10695]]],["+",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8673]]],["Kabzeel",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[6223,10695]]]]},{"k":"H6910","v":[["gather",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[20996]]]]},{"k":"H6911","v":[["Kibzaim",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6403]]]]},{"k":"H6912","v":[["*",[133,122,[[0,28,23,0,23,[[14,1,1,0,1],[22,8,7,1,8],[24,2,2,8,10],[34,3,3,10,13],[46,2,2,13,15],[47,1,1,15,16],[48,4,2,16,18],[49,7,5,18,23]]],[3,3,3,23,26,[[127,1,1,23,24],[136,1,1,24,25],[149,1,1,25,26]]],[4,4,3,26,29,[[162,1,1,26,27],[173,2,1,27,28],[186,1,1,28,29]]],[5,3,3,29,32,[[210,3,3,29,32]]],[6,9,9,32,41,[[212,1,1,32,33],[218,1,1,33,34],[220,2,2,34,36],[222,4,4,36,40],[226,1,1,40,41]]],[7,1,1,41,42,[[232,1,1,41,42]]],[8,3,3,42,45,[[260,1,1,42,43],[263,1,1,43,44],[266,1,1,44,45]]],[9,7,7,45,52,[[268,3,3,45,48],[269,1,1,48,49],[270,1,1,49,50],[283,1,1,50,51],[287,1,1,51,52]]],[10,18,16,52,68,[[292,3,3,52,55],[301,2,2,55,57],[303,4,2,57,59],[304,3,3,59,62],[305,2,2,62,64],[306,2,2,64,66],[312,2,2,66,68]]],[11,19,19,68,87,[[320,1,1,68,69],[321,4,4,69,73],[322,1,1,73,74],[324,1,1,74,75],[325,4,4,75,79],[326,2,2,79,81],[327,2,2,81,83],[328,1,1,83,84],[333,2,2,84,86],[335,1,1,86,87]]],[12,1,1,87,88,[[347,1,1,87,88]]],[13,17,16,88,104,[[375,1,1,88,89],[378,1,1,89,90],[380,1,1,90,91],[382,1,1,91,92],[387,2,2,92,94],[388,1,1,94,95],[390,3,2,95,97],[391,1,1,97,98],[392,1,1,98,99],[393,1,1,99,100],[394,1,1,100,101],[398,1,1,101,102],[399,1,1,102,103],[401,1,1,103,104]]],[17,1,1,104,105,[[462,1,1,104,105]]],[18,1,1,105,106,[[556,1,1,105,106]]],[20,1,1,106,107,[[666,1,1,106,107]]],[23,10,9,107,116,[[751,1,1,107,108],[752,1,1,108,109],[758,1,1,109,110],[760,2,2,110,112],[763,2,1,112,113],[764,1,1,113,114],[766,1,1,114,115],[769,1,1,115,116]]],[25,6,5,116,121,[[840,6,5,116,121]]],[27,1,1,121,122,[[870,1,1,121,122]]]],[375,575,577,579,582,584,586,590,667,668,1019,1030,1040,1449,1450,1458,1502,1504,1511,1512,1513,1519,1520,4058,4312,4764,5192,5470,5845,6506,6508,6509,6554,6751,6813,6816,6876,6879,6881,6884,6980,7144,7862,7945,8022,8053,8054,8081,8113,8132,8472,8594,8780,8801,8804,9123,9151,9213,9215,9231,9236,9249,9257,9273,9289,9311,9517,9530,9751,9766,9784,9790,9791,9828,9871,9880,9884,9891,9892,9912,9916,9932,9963,9983,10137,10145,10195,10671,11395,11453,11476,11523,11625,11644,11653,11693,11702,11732,11755,11764,11791,11908,11928,11990,13496,15188,17468,19151,19155,19309,19340,19342,19418,19428,19473,19567,21459,21460,21461,21462,21463,22214]]],["+",[23,18,[[0,13,9,0,9,[[22,5,4,0,4],[48,3,1,4,5],[49,5,4,5,9]]],[3,1,1,9,10,[[127,1,1,9,10]]],[4,2,1,10,11,[[173,2,1,10,11]]],[9,2,2,11,13,[[268,1,1,11,12],[269,1,1,12,13]]],[10,2,2,13,15,[[301,1,1,13,14],[312,1,1,14,15]]],[12,1,1,15,16,[[347,1,1,15,16]]],[25,2,2,16,18,[[840,2,2,16,18]]]],[577,579,584,590,1504,1511,1512,1513,1520,4058,5470,8053,8113,9123,9517,10671,21459,21462]]],["buried",[86,84,[[0,8,8,0,8,[[14,1,1,0,1],[24,2,2,1,3],[34,3,3,3,6],[47,1,1,6,7],[49,1,1,7,8]]],[3,2,2,8,10,[[136,1,1,8,9],[149,1,1,9,10]]],[4,2,2,10,12,[[162,1,1,10,11],[186,1,1,11,12]]],[5,3,3,12,15,[[210,3,3,12,15]]],[6,9,9,15,24,[[212,1,1,15,16],[218,1,1,16,17],[220,2,2,17,19],[222,4,4,19,23],[226,1,1,23,24]]],[7,1,1,24,25,[[232,1,1,24,25]]],[8,3,3,25,28,[[260,1,1,25,26],[263,1,1,26,27],[266,1,1,27,28]]],[9,5,5,28,33,[[268,2,2,28,30],[270,1,1,30,31],[283,1,1,31,32],[287,1,1,32,33]]],[10,12,11,33,44,[[292,2,2,33,35],[301,1,1,35,36],[303,2,1,36,37],[304,2,2,37,39],[305,2,2,39,41],[306,2,2,41,43],[312,1,1,43,44]]],[11,15,15,44,59,[[320,1,1,44,45],[321,1,1,45,46],[322,1,1,46,47],[324,1,1,47,48],[325,3,3,48,51],[326,2,2,51,53],[327,2,2,53,55],[328,1,1,55,56],[333,2,2,56,58],[335,1,1,58,59]]],[13,17,16,59,75,[[375,1,1,59,60],[378,1,1,60,61],[380,1,1,61,62],[382,1,1,62,63],[387,2,2,63,65],[388,1,1,65,66],[390,3,2,66,68],[391,1,1,68,69],[392,1,1,69,70],[393,1,1,70,71],[394,1,1,71,72],[398,1,1,72,73],[399,1,1,73,74],[401,1,1,74,75]]],[17,1,1,75,76,[[462,1,1,75,76]]],[20,1,1,76,77,[[666,1,1,76,77]]],[23,6,6,77,83,[[752,1,1,77,78],[760,2,2,78,80],[764,1,1,80,81],[766,1,1,81,82],[769,1,1,82,83]]],[25,1,1,83,84,[[840,1,1,83,84]]]],[375,667,668,1019,1030,1040,1458,1519,4312,4764,5192,5845,6506,6508,6509,6554,6751,6813,6816,6876,6879,6881,6884,6980,7144,7862,7945,8022,8054,8081,8132,8472,8594,8780,8804,9151,9215,9236,9249,9257,9273,9289,9311,9530,9751,9784,9828,9871,9880,9884,9891,9912,9916,9932,9963,9983,10137,10145,10195,11395,11453,11476,11523,11625,11644,11653,11693,11702,11732,11755,11764,11791,11908,11928,11990,13496,17468,19155,19340,19342,19428,19473,19567,21463]]],["buriers",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21463]]],["bury",[21,20,[[0,7,7,0,7,[[22,3,3,0,3],[46,2,2,3,5],[48,1,1,5,6],[49,1,1,6,7]]],[10,4,4,7,11,[[292,1,1,7,8],[303,2,2,8,10],[304,1,1,10,11]]],[11,3,3,11,14,[[321,3,3,11,14]]],[18,1,1,14,15,[[556,1,1,14,15]]],[23,4,3,15,18,[[751,1,1,15,16],[758,1,1,16,17],[763,2,1,17,18]]],[25,1,1,18,19,[[840,1,1,18,19]]],[27,1,1,19,20,[[870,1,1,19,20]]]],[575,582,586,1449,1450,1502,1511,8801,9213,9215,9231,9766,9790,9791,15188,19151,19309,19418,21461,22214]]],["burying",[2,2,[[11,1,1,0,1,[[325,1,1,0,1]]],[25,1,1,1,2,[[840,1,1,1,2]]]],[9892,21460]]]]},{"k":"H6913","v":[["*",[67,62,[[0,8,7,0,7,[[22,5,4,0,4],[48,1,1,4,5],[49,2,2,5,7]]],[1,1,1,7,8,[[63,1,1,7,8]]],[3,2,2,8,10,[[135,2,2,8,10]]],[6,2,2,10,12,[[218,1,1,10,11],[226,1,1,11,12]]],[9,6,6,12,18,[[268,1,1,12,13],[269,1,1,13,14],[270,1,1,14,15],[283,1,1,15,16],[285,1,1,16,17],[287,1,1,17,18]]],[10,4,4,18,22,[[303,3,3,18,21],[304,1,1,21,22]]],[11,6,5,22,27,[[325,1,1,22,23],[334,1,1,23,24],[335,4,3,24,27]]],[13,8,8,27,35,[[382,1,1,27,28],[387,1,1,28,29],[390,1,1,29,30],[394,1,1,30,31],[398,1,1,31,32],[400,2,2,32,34],[401,1,1,34,35]]],[15,3,3,35,38,[[414,2,2,35,37],[415,1,1,37,38]]],[17,5,5,38,43,[[438,1,1,38,39],[440,1,1,39,40],[445,1,1,40,41],[452,1,1,41,42],[456,1,1,42,43]]],[18,3,3,43,46,[[482,1,1,43,44],[565,2,2,44,46]]],[22,5,4,46,50,[[692,1,1,46,47],[700,2,1,47,48],[731,1,1,48,49],[743,1,1,49,50]]],[23,4,4,50,54,[[749,1,1,50,51],[752,1,1,51,52],[764,1,1,52,53],[770,1,1,53,54]]],[25,9,7,54,61,[[833,4,4,54,58],[838,4,2,58,60],[840,1,1,60,61]]],[33,1,1,61,62,[[900,1,1,61,62]]]],[575,577,580,591,1503,1511,1519,1900,4305,4307,6751,6980,8081,8113,8132,8472,8548,8594,9206,9214,9215,9231,9892,10165,10171,10181,10182,11523,11644,11702,11791,11908,11937,11961,11990,12310,12312,12343,12926,12977,13105,13261,13387,13982,15313,15319,17947,18068,18720,18901,19074,19154,19439,19595,21270,21271,21273,21274,21409,21410,21459,22698]]],["+",[4,4,[[22,1,1,0,1,[[692,1,1,0,1]]],[23,1,1,1,2,[[752,1,1,1,2]]],[25,2,2,2,4,[[838,2,2,2,4]]]],[17947,19154,21409,21410]]],["buryingplace",[6,6,[[0,5,5,0,5,[[22,3,3,0,3],[48,1,1,3,4],[49,1,1,4,5]]],[6,1,1,5,6,[[226,1,1,5,6]]]],[575,580,591,1503,1519,6980]]],["grave",[18,18,[[0,1,1,0,1,[[49,1,1,0,1]]],[3,2,2,1,3,[[135,2,2,1,3]]],[9,2,2,3,5,[[269,1,1,3,4],[285,1,1,4,5]]],[10,2,2,5,7,[[303,1,1,5,6],[304,1,1,6,7]]],[11,1,1,7,8,[[334,1,1,7,8]]],[13,1,1,8,9,[[400,1,1,8,9]]],[17,4,4,9,13,[[438,1,1,9,10],[440,1,1,10,11],[445,1,1,11,12],[456,1,1,12,13]]],[18,2,2,13,15,[[565,2,2,13,15]]],[22,1,1,15,16,[[731,1,1,15,16]]],[23,1,1,16,17,[[764,1,1,16,17]]],[33,1,1,17,18,[[900,1,1,17,18]]]],[1511,4305,4307,8113,8548,9214,9231,10165,11961,12926,12977,13105,13387,15313,15319,18720,19439,22698]]],["graves",[13,13,[[1,1,1,0,1,[[63,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]],[13,1,1,2,3,[[400,1,1,2,3]]],[17,1,1,3,4,[[452,1,1,3,4]]],[22,1,1,4,5,[[743,1,1,4,5]]],[23,1,1,5,6,[[770,1,1,5,6]]],[25,7,7,6,13,[[833,4,4,6,10],[838,2,2,10,12],[840,1,1,12,13]]]],[1900,10171,11937,13261,18901,19595,21270,21271,21273,21274,21409,21410,21459]]],["sepulchre",[14,13,[[0,1,1,0,1,[[22,1,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]],[9,4,4,2,6,[[268,1,1,2,3],[270,1,1,3,4],[283,1,1,4,5],[287,1,1,5,6]]],[10,2,2,6,8,[[303,2,2,6,8]]],[11,2,2,8,10,[[325,1,1,8,9],[335,1,1,9,10]]],[18,1,1,10,11,[[482,1,1,10,11]]],[22,2,1,11,12,[[700,2,1,11,12]]],[23,1,1,12,13,[[749,1,1,12,13]]]],[577,6751,8081,8132,8472,8594,9206,9215,9892,10182,13982,18068,19074]]],["sepulchres",[12,11,[[0,1,1,0,1,[[22,1,1,0,1]]],[11,2,1,1,2,[[335,2,1,1,2]]],[13,6,6,2,8,[[382,1,1,2,3],[387,1,1,3,4],[390,1,1,4,5],[394,1,1,5,6],[398,1,1,6,7],[401,1,1,7,8]]],[15,3,3,8,11,[[414,2,2,8,10],[415,1,1,10,11]]]],[577,10181,11523,11644,11702,11791,11908,11990,12310,12312,12343]]]]},{"k":"H6914","v":[["*",[5,5,[[3,4,4,0,4,[[127,2,2,0,2],[149,2,2,2,4]]],[4,1,1,4,5,[[161,1,1,4,5]]]],[4058,4059,4776,4777,5179]]],["+",[2,2,[[3,2,2,0,2,[[127,1,1,0,1],[149,1,1,1,2]]]],[4059,4777]]],["Kibrothhattaavah",[3,3,[[3,2,2,0,2,[[127,1,1,0,1],[149,1,1,1,2]]],[4,1,1,2,3,[[161,1,1,2,3]]]],[4058,4776,5179]]]]},{"k":"H6915","v":[["*",[15,15,[[0,3,3,0,3,[[23,2,2,0,2],[42,1,1,2,3]]],[1,3,3,3,6,[[53,1,1,3,4],[61,1,1,4,5],[83,1,1,5,6]]],[3,1,1,6,7,[[138,1,1,6,7]]],[8,2,2,7,9,[[259,1,1,7,8],[263,1,1,8,9]]],[10,2,2,9,11,[[291,2,2,9,11]]],[12,1,1,11,12,[[366,1,1,11,12]]],[13,2,2,12,14,[[386,1,1,12,13],[395,1,1,13,14]]],[15,1,1,14,15,[[420,1,1,14,15]]]],[617,639,1318,1632,1843,2504,4406,7847,7956,8733,8748,11184,11605,11821,12499]]],["bowed",[3,3,[[10,2,2,0,2,[[291,2,2,0,2]]],[15,1,1,2,3,[[420,1,1,2,3]]]],[8733,8748,12499]]],["head",[6,6,[[0,2,2,0,2,[[23,2,2,0,2]]],[1,2,2,2,4,[[61,1,1,2,3],[83,1,1,3,4]]],[3,1,1,4,5,[[138,1,1,4,5]]],[13,1,1,5,6,[[386,1,1,5,6]]]],[617,639,1843,2504,4406,11605]]],["heads",[4,4,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,1,1,1,2,[[53,1,1,1,2]]],[12,1,1,2,3,[[366,1,1,2,3]]],[13,1,1,3,4,[[395,1,1,3,4]]]],[1318,1632,11184,11821]]],["stooped",[2,2,[[8,2,2,0,2,[[259,1,1,0,1],[263,1,1,1,2]]]],[7847,7956]]]]},{"k":"H6916","v":[["cassia",[2,2,[[1,1,1,0,1,[[79,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[2406,21140]]]]},{"k":"H6917","v":[["ancient",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6644]]]]},{"k":"H6918","v":[["*",[116,106,[[1,2,2,0,2,[[68,1,1,0,1],[78,1,1,1,2]]],[2,20,15,2,17,[[95,3,3,2,5],[96,1,1,5,6],[99,1,1,6,7],[100,4,2,7,9],[105,1,1,9,10],[108,2,1,10,11],[109,3,2,11,13],[110,4,3,13,16],[113,1,1,16,17]]],[3,7,7,17,24,[[121,1,1,17,18],[122,2,2,18,20],[131,1,1,20,21],[132,3,3,21,24]]],[4,7,7,24,31,[[159,1,1,24,25],[166,2,2,25,27],[175,1,1,27,28],[178,1,1,28,29],[180,1,1,29,30],[185,1,1,30,31]]],[5,1,1,31,32,[[210,1,1,31,32]]],[8,2,2,32,34,[[237,1,1,32,33],[241,1,1,33,34]]],[11,2,2,34,36,[[316,1,1,34,35],[331,1,1,35,36]]],[13,1,1,36,37,[[401,1,1,36,37]]],[15,3,3,37,40,[[420,3,3,37,40]]],[17,3,3,40,43,[[440,1,1,40,41],[441,1,1,41,42],[450,1,1,42,43]]],[18,15,15,43,58,[[493,1,1,43,44],[499,1,1,44,45],[511,1,1,45,46],[523,1,1,46,47],[542,1,1,47,48],[548,1,1,48,49],[555,1,1,49,50],[566,3,3,50,53],[576,3,3,53,56],[583,1,1,56,57],[588,1,1,57,58]]],[19,2,2,58,60,[[636,1,1,58,59],[657,1,1,59,60]]],[20,1,1,60,61,[[666,1,1,60,61]]],[22,38,34,61,95,[[679,1,1,61,62],[682,1,1,62,63],[683,3,3,63,66],[684,3,1,66,67],[688,2,2,67,69],[690,1,1,69,70],[695,1,1,70,71],[707,2,2,71,73],[708,3,3,73,76],[709,1,1,76,77],[715,1,1,77,78],[718,1,1,78,79],[719,3,3,79,82],[721,3,3,82,85],[723,1,1,85,86],[725,1,1,86,87],[726,1,1,87,88],[727,2,1,88,89],[732,1,1,89,90],[733,1,1,90,91],[735,2,1,91,92],[736,1,1,92,93],[738,2,2,93,95]]],[23,2,2,95,97,[[794,1,1,95,96],[795,1,1,96,97]]],[25,2,2,97,99,[[840,1,1,97,98],[843,1,1,98,99]]],[26,3,2,99,101,[[857,3,2,99,101]]],[27,2,2,101,103,[[872,2,2,101,103]]],[34,2,2,103,105,[[903,1,1,103,104],[905,1,1,104,105]]],[37,1,1,105,106,[[924,1,1,105,106]]]],[2032,2367,2865,2875,2876,2885,2990,3041,3042,3225,3283,3325,3344,3351,3352,3353,3455,3809,3828,3831,4193,4197,4199,4201,5117,5292,5311,5514,5585,5620,5813,6495,7242,7351,9612,10083,11969,12502,12503,12504,12952,12988,13218,14095,14207,14397,14618,14864,14998,15154,15331,15333,15344,15502,15504,15508,15667,15802,16648,17254,17468,17658,17736,17755,17758,17763,17772,17867,17870,17906,17990,18212,18216,18228,18229,18232,18251,18375,18445,18465,18467,18471,18508,18519,18520,18572,18603,18631,18643,18728,18745,18780,18799,18830,18835,20195,20217,21455,21565,21974,21985,22249,22252,22743,22771,23073]]],["+",[2,2,[[17,1,1,0,1,[[440,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[12952,20217]]],["Holy",[3,3,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,2,2,1,3,[[684,1,1,1,2],[735,1,1,2,3]]]],[10083,17772,18780]]],["One",[39,38,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,3,3,1,4,[[548,1,1,1,2],[555,1,1,2,3],[566,1,1,3,4]]],[22,30,29,4,33,[[679,1,1,4,5],[683,2,2,5,7],[688,2,2,7,9],[690,1,1,9,10],[695,1,1,10,11],[707,2,2,11,13],[708,3,3,13,16],[709,1,1,16,17],[715,1,1,17,18],[718,1,1,18,19],[719,3,3,19,22],[721,3,3,22,25],[723,1,1,25,26],[725,1,1,26,27],[726,1,1,27,28],[727,2,1,28,29],[732,1,1,29,30],[733,1,1,30,31],[738,2,2,31,33]]],[23,1,1,33,34,[[794,1,1,33,34]]],[25,1,1,34,35,[[840,1,1,34,35]]],[27,1,1,35,36,[[872,1,1,35,36]]],[34,2,2,36,38,[[903,1,1,36,37],[905,1,1,37,38]]]],[12988,14998,15154,15344,17658,17758,17763,17867,17870,17906,17990,18212,18216,18228,18229,18232,18251,18375,18445,18465,18467,18471,18508,18519,18520,18572,18603,18631,18643,18728,18745,18830,18835,20195,21455,22249,22743,22771]]],["holy",[61,55,[[1,2,2,0,2,[[68,1,1,0,1],[78,1,1,1,2]]],[2,20,15,2,17,[[95,3,3,2,5],[96,1,1,5,6],[99,1,1,6,7],[100,4,2,7,9],[105,1,1,9,10],[108,2,1,10,11],[109,3,2,11,13],[110,4,3,13,16],[113,1,1,16,17]]],[3,7,7,17,24,[[121,1,1,17,18],[122,2,2,18,20],[131,1,1,20,21],[132,3,3,21,24]]],[4,6,6,24,30,[[159,1,1,24,25],[166,2,2,25,27],[175,1,1,27,28],[178,1,1,28,29],[180,1,1,29,30]]],[5,1,1,30,31,[[210,1,1,30,31]]],[8,2,2,31,33,[[237,1,1,31,32],[241,1,1,32,33]]],[11,1,1,33,34,[[316,1,1,33,34]]],[13,1,1,34,35,[[401,1,1,34,35]]],[15,3,3,35,38,[[420,3,3,35,38]]],[18,7,7,38,45,[[499,1,1,38,39],[523,1,1,39,40],[542,1,1,40,41],[576,3,3,41,44],[588,1,1,44,45]]],[19,2,2,45,47,[[636,1,1,45,46],[657,1,1,46,47]]],[20,1,1,47,48,[[666,1,1,47,48]]],[22,6,5,48,53,[[682,1,1,48,49],[683,1,1,49,50],[684,2,1,50,51],[735,1,1,51,52],[736,1,1,52,53]]],[25,1,1,53,54,[[843,1,1,53,54]]],[26,1,1,54,55,[[857,1,1,54,55]]]],[2032,2367,2865,2875,2876,2885,2990,3041,3042,3225,3283,3325,3344,3351,3352,3353,3455,3809,3828,3831,4193,4197,4199,4201,5117,5292,5311,5514,5585,5620,6495,7242,7351,9612,11969,12502,12503,12504,14207,14618,14864,15502,15504,15508,15802,16648,17254,17468,17736,17755,17772,18780,18799,21565,21985]]],["saint",[3,2,[[18,1,1,0,1,[[583,1,1,0,1]]],[26,2,1,1,2,[[857,2,1,1,2]]]],[15667,21974]]],["saints",[8,8,[[4,1,1,0,1,[[185,1,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]],[18,4,4,2,6,[[493,1,1,2,3],[511,1,1,3,4],[566,2,2,4,6]]],[27,1,1,6,7,[[872,1,1,6,7]]],[37,1,1,7,8,[[924,1,1,7,8]]]],[5813,13218,14095,14397,15331,15333,22252,23073]]]]},{"k":"H6919","v":[["*",[5,5,[[4,1,1,0,1,[[184,1,1,0,1]]],[22,2,2,1,3,[[728,1,1,1,2],[742,1,1,2,3]]],[23,2,2,3,5,[[759,1,1,3,4],[761,1,1,4,5]]]],[5780,18673,18887,19329,19361]]],["burneth",[1,1,[[22,1,1,0,1,[[742,1,1,0,1]]]],[18887]]],["kindle",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18673]]],["kindled",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[23,2,2,1,3,[[759,1,1,1,2],[761,1,1,2,3]]]],[5780,19329,19361]]]]},{"k":"H6920","v":[["*",[2,2,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]]],[3540,5633]]],["ague",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3540]]],["fever",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5633]]]]},{"k":"H6921","v":[["*",[69,64,[[0,3,3,0,3,[[40,3,3,0,3]]],[1,3,2,3,5,[[59,2,1,3,4],[63,1,1,4,5]]],[17,3,3,5,8,[[450,1,1,5,6],[462,1,1,6,7],[473,1,1,7,8]]],[18,2,2,8,10,[[525,1,1,8,9],[555,1,1,9,10]]],[22,1,1,10,11,[[705,1,1,10,11]]],[23,1,1,11,12,[[762,1,1,11,12]]],[25,52,48,12,60,[[812,1,1,12,13],[818,1,1,13,14],[820,1,1,14,15],[828,1,1,15,16],[841,7,7,16,23],[842,1,1,23,24],[843,5,5,24,29],[844,4,4,29,33],[845,1,1,33,34],[846,2,1,34,35],[847,2,2,35,37],[848,6,4,37,41],[849,20,19,41,60]]],[27,2,2,60,62,[[873,1,1,60,61],[874,1,1,61,62]]],[31,1,1,62,63,[[892,1,1,62,63]]],[34,1,1,63,64,[[903,1,1,63,64]]]],[1201,1218,1222,1790,1910,13205,13502,13817,14641,15139,18159,19401,20656,20835,20893,21147,21483,21487,21496,21499,21500,21509,21521,21540,21561,21562,21564,21567,21568,21573,21574,21576,21589,21600,21637,21656,21667,21680,21681,21682,21697,21703,21704,21705,21706,21707,21708,21709,21710,21712,21718,21719,21720,21723,21725,21726,21727,21728,21729,21734,22253,22281,22576,22740]]],["+",[2,2,[[25,2,2,0,2,[[841,1,1,0,1],[843,1,1,1,2]]]],[21487,21561]]],["east",[49,46,[[1,3,2,0,2,[[59,2,1,0,1],[63,1,1,1,2]]],[18,1,1,2,3,[[525,1,1,2,3]]],[23,1,1,3,4,[[762,1,1,3,4]]],[25,43,41,4,45,[[818,1,1,4,5],[820,1,1,5,6],[828,1,1,6,7],[841,5,5,7,12],[842,1,1,12,13],[843,4,4,13,17],[844,4,4,17,21],[845,1,1,21,22],[846,1,1,22,23],[847,2,2,23,25],[848,3,2,25,27],[849,19,18,27,45]]],[31,1,1,45,46,[[892,1,1,45,46]]]],[1790,1910,14641,19401,20835,20893,21147,21483,21499,21500,21509,21521,21540,21562,21564,21567,21568,21573,21574,21576,21589,21600,21637,21656,21667,21680,21697,21703,21704,21705,21706,21707,21708,21709,21710,21712,21718,21719,21723,21725,21726,21727,21728,21729,21734,22576]]],["eastward",[7,7,[[25,7,7,0,7,[[812,1,1,0,1],[841,1,1,1,2],[846,1,1,2,3],[848,3,3,3,6],[849,1,1,6,7]]]],[20656,21496,21637,21680,21681,21682,21720]]],["wind",[11,11,[[0,3,3,0,3,[[40,3,3,0,3]]],[17,3,3,3,6,[[450,1,1,3,4],[462,1,1,4,5],[473,1,1,5,6]]],[18,1,1,6,7,[[555,1,1,6,7]]],[22,1,1,7,8,[[705,1,1,7,8]]],[27,2,2,8,10,[[873,1,1,8,9],[874,1,1,9,10]]],[34,1,1,10,11,[[903,1,1,10,11]]]],[1201,1218,1222,13205,13502,13817,15139,18159,22253,22281,22740]]]]},{"k":"H6922","v":[["*",[13,12,[[26,13,12,0,12,[[853,6,6,0,6],[854,1,1,6,7],[856,6,5,7,12]]]],[21845,21846,21850,21854,21855,21860,21885,21951,21954,21955,21958,21960]]],["holy",[4,4,[[26,4,4,0,4,[[853,3,3,0,3],[854,1,1,3,4]]]],[21845,21846,21855,21885]]],["one",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21850,21860]]],["ones",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21854]]],["saints",[6,5,[[26,6,5,0,5,[[856,6,5,0,5]]]],[21951,21954,21955,21958,21960]]]]},{"k":"H6923","v":[["*",[26,25,[[4,1,1,0,1,[[175,1,1,0,1]]],[9,2,2,1,3,[[288,2,2,1,3]]],[11,1,1,3,4,[[331,1,1,3,4]]],[15,1,1,4,5,[[425,1,1,4,5]]],[17,3,3,5,8,[[438,1,1,5,6],[465,1,1,6,7],[476,1,1,7,8]]],[18,12,12,8,20,[[494,1,1,8,9],[495,2,2,9,11],[498,1,1,11,12],[536,1,1,12,13],[545,1,1,13,14],[556,1,1,14,15],[565,1,1,15,16],[566,1,1,16,17],[572,1,1,17,18],[596,2,2,18,20]]],[22,2,2,20,22,[[699,1,1,20,21],[715,1,1,21,22]]],[29,1,1,22,23,[[887,1,1,22,23]]],[31,1,1,23,24,[[892,1,1,23,24]]],[32,2,1,24,25,[[898,2,1,24,25]]]],[5504,8608,8621,10093,12673,12916,13584,13899,14116,14123,14136,14194,14800,14925,15193,15321,15340,15456,16045,16046,18049,18385,22505,22570,22654]]],["+",[2,2,[[18,1,1,0,1,[[494,1,1,0,1]]],[29,1,1,1,2,[[887,1,1,1,2]]]],[14116,22505]]],["before",[7,6,[[11,1,1,0,1,[[331,1,1,0,1]]],[18,2,2,1,3,[[545,1,1,1,2],[572,1,1,2,3]]],[22,1,1,3,4,[[715,1,1,3,4]]],[31,1,1,4,5,[[892,1,1,4,5]]],[32,2,1,5,6,[[898,2,1,5,6]]]],[10093,14925,15456,18385,22570,22654]]],["go",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15340]]],["met",[2,2,[[4,1,1,0,1,[[175,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]]],[5504,12673]]],["prevent",[5,5,[[17,1,1,0,1,[[438,1,1,0,1]]],[18,4,4,1,5,[[536,1,1,1,2],[556,1,1,2,3],[565,1,1,3,4],[596,1,1,4,5]]]],[12916,14800,15193,15321,16046]]],["prevented",[8,8,[[9,2,2,0,2,[[288,2,2,0,2]]],[17,2,2,2,4,[[465,1,1,2,3],[476,1,1,3,4]]],[18,3,3,4,7,[[495,2,2,4,6],[596,1,1,6,7]]],[22,1,1,7,8,[[699,1,1,7,8]]]],[8608,8621,13584,13899,14123,14136,16045,18049]]],["preventest",[1,1,[[18,1,1,0,1,[[498,1,1,0,1]]]],[14194]]]]},{"k":"H6924","v":[["*",[87,83,[[0,12,10,0,10,[[1,1,1,0,1],[2,1,1,1,2],[9,1,1,2,3],[10,1,1,3,4],[11,2,1,4,5],[12,2,2,5,7],[24,2,1,7,8],[27,1,1,8,9],[28,1,1,9,10]]],[1,2,2,10,12,[[76,1,1,10,11],[87,1,1,11,12]]],[2,2,2,12,14,[[90,1,1,12,13],[105,1,1,13,14]]],[3,10,9,14,23,[[118,1,1,14,15],[119,1,1,15,16],[126,1,1,16,17],[139,1,1,17,18],[150,5,4,18,22],[151,1,1,22,23]]],[4,2,2,23,25,[[185,2,2,23,25]]],[5,5,5,25,30,[[193,1,1,25,26],[201,1,1,26,27],[204,1,1,27,28],[205,2,2,28,30]]],[6,5,5,30,35,[[216,2,2,30,32],[217,1,1,32,33],[218,2,2,33,35]]],[10,3,3,35,38,[[294,1,1,35,36],[297,1,1,36,37],[307,1,1,37,38]]],[11,2,2,38,40,[[325,1,1,38,39],[331,1,1,39,40]]],[13,1,1,40,41,[[370,1,1,40,41]]],[15,1,1,41,42,[[424,1,1,41,42]]],[17,3,3,42,45,[[436,1,1,42,43],[458,1,1,43,44],[464,1,1,44,45]]],[18,11,11,45,56,[[521,1,1,45,46],[532,1,1,46,47],[545,1,1,47,48],[551,2,2,48,50],[554,2,2,50,52],[555,1,1,52,53],[596,1,1,53,54],[616,1,1,54,55],[620,1,1,55,56]]],[19,2,2,56,58,[[635,2,2,56,58]]],[22,9,9,58,67,[[680,1,1,58,59],[687,1,1,59,60],[689,1,1,60,61],[697,1,1,61,62],[701,1,1,62,63],[715,1,1,63,64],[723,1,1,64,65],[724,1,1,65,66],[729,1,1,66,67]]],[23,3,3,67,70,[[774,1,1,67,68],[790,1,1,68,69],[793,1,1,69,70]]],[24,3,3,70,73,[[797,1,1,70,71],[798,1,1,71,72],[801,1,1,72,73]]],[25,6,5,73,78,[[809,2,1,73,74],[812,1,1,74,75],[826,2,2,75,77],[846,1,1,77,78]]],[31,1,1,78,79,[[892,1,1,78,79]]],[32,2,2,79,81,[[897,1,1,79,80],[899,1,1,80,81]]],[34,1,1,81,82,[[903,1,1,81,82]]],[37,1,1,82,83,[[924,1,1,82,83]]]],[38,79,264,268,306,329,332,664,787,796,2285,2646,2761,3215,3661,3730,3993,4423,4819,4826,4827,4831,4850,5825,5837,5978,6207,6313,6333,6334,6657,6687,6706,6729,6730,8874,8973,9320,9888,10086,11256,12670,12872,13427,13534,14572,14751,14933,15050,15060,15098,15104,15115,16050,16244,16298,16624,16625,17691,17841,17898,18015,18084,18378,18582,18596,18682,19687,20071,20155,20317,20349,20463,20620,20678,21087,21093,21637,22573,22635,22684,22743,23072]]],["+",[25,24,[[0,6,5,0,5,[[1,1,1,0,1],[2,1,1,1,2],[10,1,1,2,3],[11,2,1,3,4],[12,1,1,4,5]]],[3,1,1,5,6,[[150,1,1,5,6]]],[5,1,1,6,7,[[193,1,1,6,7]]],[6,1,1,7,8,[[218,1,1,7,8]]],[11,1,1,8,9,[[331,1,1,8,9]]],[15,1,1,9,10,[[424,1,1,9,10]]],[18,4,4,10,14,[[551,1,1,10,11],[554,2,2,11,13],[620,1,1,13,14]]],[19,1,1,14,15,[[635,1,1,14,15]]],[22,4,4,15,19,[[680,1,1,15,16],[687,1,1,16,17],[723,1,1,17,18],[724,1,1,18,19]]],[25,1,1,19,20,[[812,1,1,19,20]]],[31,1,1,20,21,[[892,1,1,20,21]]],[32,1,1,21,22,[[897,1,1,21,22]]],[34,1,1,22,23,[[903,1,1,22,23]]],[37,1,1,23,24,[[924,1,1,23,24]]]],[38,79,268,306,329,4827,5978,6730,10086,12670,15060,15098,15104,16298,16625,17691,17841,18582,18596,20678,22573,22635,22743,23072]]],["aforetime",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19687]]],["ancient",[5,5,[[4,1,1,0,1,[[185,1,1,0,1]]],[22,4,4,1,5,[[697,1,1,1,2],[701,1,1,2,3],[715,1,1,3,4],[729,1,1,4,5]]]],[5825,18015,18084,18378,18682]]],["before",[2,2,[[18,1,1,0,1,[[616,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]]],[16244,16624]]],["country",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8874]]],["east",[25,24,[[0,4,4,0,4,[[9,1,1,0,1],[24,1,1,1,2],[27,1,1,2,3],[28,1,1,3,4]]],[1,2,2,4,6,[[76,1,1,4,5],[87,1,1,5,6]]],[3,4,4,6,10,[[119,1,1,6,7],[139,1,1,7,8],[150,1,1,8,9],[151,1,1,9,10]]],[5,3,3,10,13,[[201,1,1,10,11],[204,1,1,11,12],[205,1,1,12,13]]],[6,4,4,13,17,[[216,2,2,13,15],[217,1,1,15,16],[218,1,1,16,17]]],[17,1,1,17,18,[[436,1,1,17,18]]],[22,1,1,18,19,[[689,1,1,18,19]]],[23,1,1,19,20,[[793,1,1,19,20]]],[25,5,4,20,24,[[809,2,1,20,21],[826,2,2,21,23],[846,1,1,23,24]]]],[264,664,787,796,2285,2646,3730,4423,4826,4850,6207,6313,6334,6657,6687,6706,6729,12872,17898,20155,20620,21087,21093,21637]]],["eastward",[10,10,[[0,2,2,0,2,[[12,1,1,0,1],[24,1,1,1,2]]],[2,1,1,2,3,[[105,1,1,2,3]]],[3,3,3,3,6,[[150,3,3,3,6]]],[5,1,1,6,7,[[205,1,1,6,7]]],[10,2,2,7,9,[[297,1,1,7,8],[307,1,1,8,9]]],[11,1,1,9,10,[[325,1,1,9,10]]]],[332,664,3215,4819,4827,4831,6333,8973,9320,9888]]],["end",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11256]]],["eternal",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5837]]],["forward",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13427]]],["old",[11,11,[[18,6,6,0,6,[[521,1,1,0,1],[532,1,1,1,2],[545,1,1,2,3],[551,1,1,3,4],[555,1,1,4,5],[596,1,1,5,6]]],[23,1,1,6,7,[[790,1,1,6,7]]],[24,3,3,7,10,[[797,1,1,7,8],[798,1,1,8,9],[801,1,1,9,10]]],[32,1,1,10,11,[[899,1,1,10,11]]]],[14572,14751,14933,15050,15115,16050,20071,20317,20349,20463,22684]]],["part",[1,1,[[2,1,1,0,1,[[90,1,1,0,1]]]],[2761]]],["parts",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[3993]]],["past",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13534]]],["side",[1,1,[[3,1,1,0,1,[[118,1,1,0,1]]]],[3661]]]]},{"k":"H6925","v":[["*",[42,38,[[14,4,4,0,4,[[406,2,2,0,2],[409,2,2,2,4]]],[26,38,34,4,38,[[851,10,10,4,14],[852,1,1,14,15],[853,5,4,15,19],[854,6,6,19,25],[855,10,8,25,33],[856,6,5,33,38]]]],[12128,12133,12187,12192,21764,21767,21768,21769,21773,21776,21782,21783,21785,21794,21820,21839,21843,21844,21845,21887,21889,21891,21893,21897,21898,21906,21915,21916,21917,21918,21923,21927,21931,21940,21941,21943,21946,21953]]],["+",[12,11,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,11,10,1,11,[[851,3,3,1,4],[853,1,1,4,5],[854,2,2,5,7],[855,3,2,7,9],[856,2,2,9,11]]]],[12187,21764,21773,21776,21839,21893,21898,21906,21931,21941,21953]]],["before",[29,26,[[14,3,3,0,3,[[406,2,2,0,2],[409,1,1,2,3]]],[26,26,23,3,26,[[851,6,6,3,9],[852,1,1,9,10],[853,4,3,10,13],[854,4,4,13,17],[855,7,6,17,23],[856,4,3,23,26]]]],[12128,12133,12192,21767,21768,21769,21782,21783,21794,21820,21843,21844,21845,21887,21889,21891,21897,21915,21916,21917,21918,21923,21927,21940,21943,21946]]],["of",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21785]]]]},{"k":"H6926","v":[["*",[4,4,[[0,2,2,0,2,[[1,1,1,0,1],[3,1,1,1,2]]],[8,1,1,2,3,[[248,1,1,2,3]]],[25,1,1,3,4,[[840,1,1,3,4]]]],[44,95,7490,21459]]],["east",[3,3,[[0,2,2,0,2,[[1,1,1,0,1],[3,1,1,1,2]]],[25,1,1,2,3,[[840,1,1,2,3]]]],[44,95,21459]]],["eastward",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7490]]]]},{"k":"H6927","v":[["*",[6,4,[[18,1,1,0,1,[[606,1,1,0,1]]],[22,1,1,1,2,[[701,1,1,1,2]]],[25,4,2,2,4,[[817,3,1,2,3],[837,1,1,3,4]]]],[16138,18084,20817,21370]]],["+",[1,1,[[18,1,1,0,1,[[606,1,1,0,1]]]],[16138]]],["antiquity",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18084]]],["estate",[3,1,[[25,3,1,0,1,[[817,3,1,0,1]]]],[20817]]],["estates",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21370]]]]},{"k":"H6928","v":[["+",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[855,1,1,1,2]]]],[12145,21915]]]]},{"k":"H6929","v":[["Kedemah",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[673,10283]]]]},{"k":"H6930","v":[["east",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21687]]]]},{"k":"H6931","v":[["*",[10,10,[[8,1,1,0,1,[[259,1,1,0,1]]],[17,1,1,1,2,[[453,1,1,1,2]]],[22,1,1,2,3,[[721,1,1,2,3]]],[25,4,4,3,7,[[811,1,1,3,4],[812,1,1,4,5],[839,1,1,5,6],[848,1,1,6,7]]],[28,1,1,7,8,[[877,1,1,7,8]]],[37,1,1,8,9,[[924,1,1,8,9]]],[38,1,1,9,10,[[927,1,1,9,10]]]],[7852,13296,18523,20652,20656,21442,21697,22331,23076,23124]]],["ancients",[1,1,[[8,1,1,0,1,[[259,1,1,0,1]]]],[7852]]],["before",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13296]]],["east",[4,4,[[25,3,3,0,3,[[811,1,1,0,1],[812,1,1,1,2],[848,1,1,2,3]]],[28,1,1,3,4,[[877,1,1,3,4]]]],[20652,20656,21697,22331]]],["former",[2,2,[[37,1,1,0,1,[[924,1,1,0,1]]],[38,1,1,1,2,[[927,1,1,1,2]]]],[23076,23124]]],["old",[2,2,[[22,1,1,0,1,[[721,1,1,0,1]]],[25,1,1,1,2,[[839,1,1,1,2]]]],[18523,21442]]]]},{"k":"H6932","v":[["Kedemoth",[4,4,[[4,1,1,0,1,[[154,1,1,0,1]]],[5,2,2,1,3,[[199,1,1,1,2],[207,1,1,2,3]]],[12,1,1,3,4,[[343,1,1,3,4]]]],[4964,6172,6418,10533]]]]},{"k":"H6933","v":[["first",[3,3,[[26,3,3,0,3,[[856,3,3,0,3]]]],[21937,21941,21957]]]]},{"k":"H6934","v":[["Kadmiel",[8,8,[[14,2,2,0,2,[[404,1,1,0,1],[405,1,1,1,2]]],[15,6,6,2,8,[[419,1,1,2,3],[421,2,2,3,5],[422,1,1,5,6],[424,2,2,6,8]]]],[12067,12106,12463,12515,12516,12558,12632,12648]]]]},{"k":"H6935","v":[["Kadmonites",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[379]]]]},{"k":"H6936","v":[["*",[11,11,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,3,3,1,4,[[180,1,1,1,2],[185,2,2,2,4]]],[9,1,1,4,5,[[280,1,1,4,5]]],[17,1,1,5,6,[[437,1,1,5,6]]],[18,2,2,6,8,[[484,1,1,6,7],[545,1,1,7,8]]],[22,1,1,8,9,[[681,1,1,8,9]]],[23,2,2,9,11,[[746,1,1,9,10],[792,1,1,10,11]]]],[1499,5646,5826,5830,8381,12898,14011,14921,17724,18981,20125]]],["crown",[1,1,[[17,1,1,0,1,[[437,1,1,0,1]]]],[12898]]],["head",[8,8,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,3,3,1,4,[[180,1,1,1,2],[185,2,2,2,4]]],[9,1,1,4,5,[[280,1,1,4,5]]],[22,1,1,5,6,[[681,1,1,5,6]]],[23,2,2,6,8,[[746,1,1,6,7],[792,1,1,7,8]]]],[1499,5646,5826,5830,8381,17724,18981,20125]]],["pate",[1,1,[[18,1,1,0,1,[[484,1,1,0,1]]]],[14011]]],["scalp",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14921]]]]},{"k":"H6937","v":[["*",[17,17,[[10,1,1,0,1,[[308,1,1,0,1]]],[17,3,3,1,4,[[440,1,1,1,2],[441,1,1,2,3],[465,1,1,3,4]]],[18,4,4,4,8,[[512,1,1,4,5],[515,1,1,5,6],[519,1,1,6,7],[520,1,1,7,8]]],[23,3,3,8,11,[[748,1,1,8,9],[752,1,1,9,10],[758,1,1,10,11]]],[25,3,3,11,14,[[832,1,1,11,12],[833,2,2,12,14]]],[28,2,2,14,16,[[877,1,1,14,15],[878,1,1,15,16]]],[32,1,1,16,17,[[895,1,1,16,17]]]],[9386,12962,12994,13585,14424,14496,14564,14568,19055,19174,19295,21245,21255,21256,22321,22358,22614]]],["+",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21255]]],["black",[4,4,[[10,1,1,0,1,[[308,1,1,0,1]]],[23,3,3,1,4,[[748,1,1,1,2],[752,1,1,2,3],[758,1,1,3,4]]]],[9386,19055,19174,19295]]],["blackish",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12994]]],["dark",[3,3,[[25,1,1,0,1,[[833,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]],[32,1,1,2,3,[[895,1,1,2,3]]]],[21256,22321,22614]]],["darkened",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22358]]],["heavily",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14424]]],["mourn",[2,2,[[17,1,1,0,1,[[440,1,1,0,1]]],[25,1,1,1,2,[[832,1,1,1,2]]]],[12962,21245]]],["mourning",[4,4,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,3,3,1,4,[[515,1,1,1,2],[519,1,1,2,3],[520,1,1,3,4]]]],[13585,14496,14564,14568]]]]},{"k":"H6938","v":[["Kedar",[12,11,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[18,1,1,2,3,[[597,1,1,2,3]]],[21,1,1,3,4,[[671,1,1,3,4]]],[22,4,4,4,8,[[699,2,2,4,6],[720,1,1,6,7],[738,1,1,7,8]]],[23,3,2,8,10,[[746,1,1,8,9],[793,2,1,9,10]]],[25,1,1,10,11,[[828,1,1,10,11]]]],[671,10281,16079,17542,18051,18052,18491,18828,18975,20155,21142]]]]},{"k":"H6939","v":[["Kidron",[11,10,[[9,1,1,0,1,[[281,1,1,0,1]]],[10,2,2,1,3,[[292,1,1,1,2],[305,1,1,2,3]]],[11,4,3,3,6,[[335,4,3,3,6]]],[13,3,3,6,9,[[381,1,1,6,7],[395,1,1,7,8],[396,1,1,8,9]]],[23,1,1,9,10,[[775,1,1,9,10]]]],[8412,8807,9262,10169,10171,10177,11506,11807,11841,19731]]]]},{"k":"H6940","v":[["blackness",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18665]]]]},{"k":"H6941","v":[["mournfully",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23134]]]]},{"k":"H6942","v":[["*",[171,152,[[0,1,1,0,1,[[1,1,1,0,1]]],[1,28,25,1,26,[[62,1,1,1,2],[68,4,4,2,6],[69,2,2,6,8],[77,3,3,8,11],[78,10,8,11,19],[79,3,2,19,21],[80,1,1,21,22],[89,4,4,22,26]]],[2,31,29,26,55,[[95,2,2,26,28],[97,5,5,28,33],[99,1,1,33,34],[100,1,1,34,35],[105,1,1,35,36],[109,2,2,36,38],[110,4,3,38,41],[111,6,5,41,46],[114,1,1,46,47],[116,8,8,47,55]]],[3,11,10,55,65,[[119,1,1,55,56],[122,1,1,56,57],[123,2,1,57,58],[124,1,1,58,59],[127,1,1,59,60],[132,2,2,60,62],[136,2,2,62,64],[143,1,1,64,65]]],[4,4,4,65,69,[[157,1,1,65,66],[167,1,1,66,67],[174,1,1,67,68],[184,1,1,68,69]]],[5,4,3,69,72,[[189,1,1,69,70],[193,2,1,70,71],[206,1,1,71,72]]],[6,2,1,72,73,[[227,2,1,72,73]]],[8,4,3,73,76,[[242,1,1,73,74],[251,2,1,74,75],[256,1,1,75,76]]],[9,3,2,76,78,[[274,2,1,76,77],[277,1,1,77,78]]],[10,3,3,78,81,[[298,1,1,78,79],[299,2,2,79,81]]],[11,2,2,81,83,[[322,1,1,81,82],[324,1,1,82,83]]],[12,8,7,83,90,[[352,2,2,83,85],[355,1,1,85,86],[360,1,1,86,87],[363,4,3,87,90]]],[13,24,20,90,110,[[368,1,1,90,91],[371,1,1,91,92],[373,3,3,92,95],[392,1,1,95,96],[395,8,5,96,101],[396,6,5,101,106],[397,2,2,106,108],[401,1,1,108,109],[402,1,1,109,110]]],[14,1,1,110,111,[[405,1,1,110,111]]],[15,5,3,111,114,[[415,2,1,111,112],[424,2,1,112,113],[425,1,1,113,114]]],[17,1,1,114,115,[[436,1,1,114,115]]],[22,8,7,115,122,[[683,1,1,115,116],[686,1,1,116,117],[691,1,1,117,118],[707,2,1,118,119],[708,1,1,119,120],[743,1,1,120,121],[744,1,1,121,122]]],[23,9,9,122,131,[[745,1,1,122,123],[750,1,1,123,124],[756,1,1,124,125],[761,3,3,125,128],[766,1,1,128,129],[795,2,2,129,131]]],[25,15,14,131,145,[[821,3,3,131,134],[829,2,2,134,136],[837,2,1,136,137],[838,1,1,137,138],[839,2,2,138,140],[840,1,1,140,141],[845,2,2,141,143],[847,1,1,143,144],[849,1,1,144,145]]],[28,4,4,145,149,[[876,1,1,145,146],[877,2,2,146,148],[878,1,1,148,149]]],[32,1,1,149,150,[[895,1,1,149,150]]],[35,1,1,150,151,[[906,1,1,150,151]]],[36,1,1,151,152,[[910,1,1,151,152]]]],[33,1869,2036,2040,2048,2049,2059,2062,2296,2331,2334,2337,2357,2363,2369,2372,2373,2379,2380,2411,2412,2433,2716,2717,2718,2720,2867,2876,2927,2928,2929,2932,2947,2980,3041,3220,3325,3326,3353,3360,3368,3371,3372,3378,3385,3401,3479,3584,3585,3586,3587,3588,3589,3592,3596,3705,3834,3851,3956,4042,4231,4232,4323,4324,4568,5065,5338,5479,5809,5898,5989,6379,6983,7353,7600,7777,8220,8263,9049,9054,9058,9813,9868,10803,10805,10901,10996,11103,11104,11105,11215,11279,11331,11340,11344,11750,11796,11806,11808,11810,11825,11830,11835,11842,11844,11851,11860,11872,11972,12007,12102,12328,12671,12693,12874,17755,17820,17909,18216,18246,18902,18939,18951,19093,19252,19379,19381,19384,19461,20239,20240,20907,20915,20936,21179,21182,21382,21425,21441,21448,21475,21618,21623,21675,21713,22305,22326,22327,22352,22613,22794,22867]]],["+",[31,29,[[1,4,4,0,4,[[68,1,1,0,1],[78,2,2,1,3],[89,1,1,3,4]]],[2,4,4,4,8,[[97,1,1,4,5],[114,1,1,5,6],[116,2,2,6,8]]],[3,1,1,8,9,[[122,1,1,8,9]]],[5,2,2,9,11,[[193,1,1,9,10],[206,1,1,10,11]]],[6,2,1,11,12,[[227,2,1,11,12]]],[8,1,1,12,13,[[251,1,1,12,13]]],[10,2,2,13,15,[[298,1,1,13,14],[299,1,1,14,15]]],[13,5,4,15,19,[[373,2,2,15,17],[395,3,2,17,19]]],[15,1,1,19,20,[[425,1,1,19,20]]],[22,3,3,20,23,[[686,1,1,20,21],[707,1,1,21,22],[708,1,1,22,23]]],[23,2,2,23,25,[[761,2,2,23,25]]],[25,4,4,25,29,[[837,1,1,25,26],[838,1,1,26,27],[845,1,1,27,28],[847,1,1,28,29]]]],[2040,2363,2380,2717,2947,3479,3584,3589,3834,5989,6379,6983,7600,9049,9054,11331,11340,11796,11808,12693,17820,18216,18246,19381,19384,21382,21425,21618,21675]]],["Prepare",[3,3,[[23,2,2,0,2,[[750,1,1,0,1],[795,1,1,1,2]]],[28,1,1,2,3,[[878,1,1,2,3]]]],[19093,20240,22352]]],["Proclaim",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9813]]],["Sanctify",[2,2,[[1,1,1,0,1,[[62,1,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]]],[1869,22305]]],["bid",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22794]]],["consecrate",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[79,1,1,1,2]]]],[2296,2412]]],["consecrated",[3,3,[[13,2,2,0,2,[[392,1,1,0,1],[397,1,1,1,2]]],[14,1,1,2,3,[[405,1,1,2,3]]]],[11750,11860,12102]]],["dedicate",[3,3,[[9,1,1,0,1,[[274,1,1,0,1]]],[12,1,1,1,2,[[363,1,1,1,2]]],[13,1,1,2,3,[[368,1,1,2,3]]]],[8220,11104,11215]]],["dedicated",[6,5,[[9,1,1,0,1,[[274,1,1,0,1]]],[11,1,1,1,2,[[324,1,1,1,2]]],[12,4,3,2,5,[[355,1,1,2,3],[363,3,2,3,5]]]],[8220,9868,10901,11103,11105]]],["defiled",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5479]]],["hallow",[10,10,[[1,3,3,0,3,[[77,1,1,0,1],[78,1,1,1,2],[89,1,1,2,3]]],[2,4,4,3,7,[[105,1,1,3,4],[111,3,3,4,7]]],[23,1,1,7,8,[[761,1,1,7,8]]],[25,2,2,8,10,[[821,1,1,8,9],[845,1,1,9,10]]]],[2331,2337,2716,3220,3371,3372,3401,19379,20915,21623]]],["hallowed",[8,8,[[1,2,2,0,2,[[69,1,1,0,1],[78,1,1,1,2]]],[2,1,1,2,3,[[111,1,1,2,3]]],[3,3,3,3,6,[[119,1,1,3,4],[132,2,2,4,6]]],[10,1,1,6,7,[[299,1,1,6,7]]],[13,1,1,7,8,[[402,1,1,7,8]]]],[2062,2357,3401,3705,4231,4232,9058,12007]]],["holier",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18902]]],["holy",[6,6,[[1,3,3,0,3,[[69,1,1,0,1],[78,1,1,1,2],[79,1,1,2,3]]],[2,2,2,3,5,[[95,2,2,3,5]]],[36,1,1,5,6,[[910,1,1,5,6]]]],[2059,2373,2411,2867,2876,22867]]],["myself",[1,1,[[25,1,1,0,1,[[839,1,1,0,1]]]],[21448]]],["ones",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17909]]],["prepare",[4,4,[[23,3,3,0,3,[[756,1,1,0,1],[766,1,1,1,2],[795,1,1,2,3]]],[32,1,1,3,4,[[895,1,1,3,4]]]],[19252,19461,20239,22613]]],["purified",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8263]]],["sanctified",[32,29,[[0,1,1,0,1,[[1,1,1,0,1]]],[1,1,1,1,2,[[78,1,1,1,2]]],[2,4,4,2,6,[[97,2,2,2,4],[99,1,1,4,5],[116,1,1,5,6]]],[3,4,3,6,9,[[123,2,1,6,7],[124,1,1,7,8],[136,1,1,8,9]]],[4,1,1,9,10,[[184,1,1,9,10]]],[8,2,2,10,12,[[242,1,1,10,11],[256,1,1,11,12]]],[13,5,5,12,17,[[371,1,1,12,13],[373,1,1,13,14],[395,1,1,14,15],[396,2,2,15,17]]],[15,4,2,17,19,[[415,2,1,17,18],[424,2,1,18,19]]],[17,1,1,19,20,[[436,1,1,19,20]]],[22,1,1,20,21,[[683,1,1,20,21]]],[23,1,1,21,22,[[745,1,1,21,22]]],[25,7,7,22,29,[[821,1,1,22,23],[829,2,2,23,25],[837,1,1,25,26],[839,1,1,26,27],[840,1,1,27,28],[849,1,1,28,29]]]],[33,2379,2927,2932,2980,3585,3851,3956,4324,5809,7353,7777,11279,11344,11810,11835,11844,12328,12671,12874,17755,18951,20936,21179,21182,21382,21441,21475,21713]]],["sanctify",[36,35,[[1,11,11,0,11,[[68,2,2,0,2],[77,1,1,2,3],[78,4,4,3,7],[79,1,1,7,8],[80,1,1,8,9],[89,2,2,9,11]]],[2,14,13,11,24,[[97,2,2,11,13],[109,1,1,13,14],[110,4,3,14,17],[111,2,2,17,19],[116,5,5,19,24]]],[3,2,2,24,26,[[136,1,1,24,25],[143,1,1,25,26]]],[4,2,2,26,28,[[157,1,1,26,27],[167,1,1,27,28]]],[12,1,1,28,29,[[360,1,1,28,29]]],[13,2,2,29,31,[[395,1,1,29,30],[396,1,1,30,31]]],[22,1,1,31,32,[[707,1,1,31,32]]],[25,1,1,32,33,[[821,1,1,32,33]]],[28,2,2,33,35,[[877,2,2,33,35]]]],[2036,2049,2334,2369,2372,2373,2380,2411,2433,2718,2720,2928,2929,3326,3353,3360,3368,3378,3385,3586,3587,3588,3592,3596,4323,4568,5065,5338,10996,11808,11844,18216,20907,22326,22327]]],["themselves",[10,9,[[1,1,1,0,1,[[68,1,1,0,1]]],[12,1,1,1,2,[[352,1,1,1,2]]],[13,7,6,2,8,[[395,3,2,2,4],[396,3,3,4,7],[397,1,1,7,8]]],[22,1,1,8,9,[[744,1,1,8,9]]]],[2048,10805,11806,11825,11830,11842,11851,11872,18939]]],["yourselves",[8,8,[[2,2,2,0,2,[[100,1,1,0,1],[109,1,1,1,2]]],[3,1,1,2,3,[[127,1,1,2,3]]],[5,2,2,3,5,[[189,1,1,3,4],[193,1,1,4,5]]],[8,1,1,5,6,[[251,1,1,5,6]]],[12,1,1,6,7,[[352,1,1,6,7]]],[13,1,1,7,8,[[401,1,1,7,8]]]],[3041,3325,4042,5898,5989,7600,10803,11972]]]]},{"k":"H6943","v":[["*",[12,12,[[5,5,5,0,5,[[198,1,1,0,1],[201,1,1,1,2],[205,1,1,2,3],[206,1,1,3,4],[207,1,1,4,5]]],[6,4,4,5,9,[[214,4,4,5,9]]],[11,1,1,9,10,[[327,1,1,9,10]]],[12,2,2,10,12,[[343,2,2,10,12]]]],[6152,6225,6358,6379,6413,6605,6608,6609,6610,9954,10526,10530]]],["+",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6605]]],["Kedesh",[11,11,[[5,5,5,0,5,[[198,1,1,0,1],[201,1,1,1,2],[205,1,1,2,3],[206,1,1,3,4],[207,1,1,4,5]]],[6,3,3,5,8,[[214,3,3,5,8]]],[11,1,1,8,9,[[327,1,1,8,9]]],[12,2,2,9,11,[[343,2,2,9,11]]]],[6152,6225,6358,6379,6413,6608,6609,6610,9954,10526,10530]]]]},{"k":"H6944","v":[["*",[470,382,[[1,70,53,0,53,[[52,1,1,0,1],[61,2,1,1,2],[64,2,2,2,4],[65,1,1,4,5],[71,1,1,5,6],[75,5,2,6,8],[77,8,7,8,15],[78,7,6,15,21],[79,15,10,21,31],[80,4,4,31,35],[84,4,3,35,38],[85,4,4,38,42],[86,1,1,42,43],[87,5,4,43,47],[88,6,3,47,50],[89,4,3,50,53]]],[2,92,70,53,123,[[91,4,2,53,55],[93,1,1,55,56],[94,3,2,56,58],[95,7,4,58,62],[96,4,2,62,64],[97,1,1,64,65],[99,9,5,65,70],[101,1,1,70,71],[103,3,1,71,72],[105,11,10,72,82],[108,2,2,82,84],[109,1,1,84,85],[110,4,2,85,87],[111,14,11,87,98],[112,12,12,98,110],[113,2,1,110,111],[114,1,1,111,112],[116,12,11,112,123]]],[3,57,48,123,171,[[119,5,5,123,128],[120,10,6,128,134],[121,2,2,134,136],[122,1,1,136,137],[123,15,15,137,152],[124,1,1,152,153],[134,14,9,153,162],[144,4,4,162,166],[145,3,3,166,169],[147,1,1,169,170],[151,1,1,170,171]]],[4,4,4,171,175,[[164,1,1,171,172],[178,2,2,172,174],[185,1,1,174,175]]],[5,2,2,175,177,[[191,1,1,175,176],[192,1,1,176,177]]],[8,3,3,177,180,[[256,3,3,177,180]]],[10,12,8,180,188,[[296,2,1,180,181],[297,3,2,181,183],[298,5,4,183,187],[305,2,1,187,188]]],[11,3,2,188,190,[[324,3,2,188,190]]],[12,17,15,190,205,[[343,2,1,190,191],[346,1,1,191,192],[353,3,3,192,195],[359,1,1,195,196],[360,4,3,196,199],[361,1,1,199,200],[363,2,2,200,202],[365,1,1,202,203],[366,2,2,203,205]]],[13,31,24,205,229,[[369,4,2,205,207],[370,2,1,207,208],[371,6,4,208,212],[374,1,1,212,213],[381,2,1,213,214],[386,1,1,214,215],[389,1,1,215,216],[390,1,1,216,217],[395,3,3,217,220],[396,2,2,220,222],[397,5,4,222,226],[401,3,3,226,229]]],[14,6,4,229,233,[[404,2,1,229,230],[410,2,1,230,231],[411,2,2,231,233]]],[15,7,6,233,239,[[419,2,1,233,234],[421,1,1,234,235],[422,2,2,235,237],[423,2,2,237,239]]],[18,45,45,239,284,[[479,1,1,239,240],[480,1,1,240,241],[482,1,1,241,242],[488,1,1,242,243],[492,1,1,243,244],[497,2,2,244,246],[501,1,1,246,247],[505,1,1,247,248],[506,1,1,248,249],[507,1,1,249,250],[510,1,1,250,251],[520,1,1,251,252],[524,1,1,252,253],[525,1,1,253,254],[528,1,1,254,255],[537,1,1,255,256],[540,1,1,256,257],[545,3,3,257,260],[551,1,1,260,261],[554,1,1,261,262],[555,1,1,262,263],[556,1,1,263,264],[564,1,1,264,265],[566,2,2,265,267],[570,1,1,267,268],[573,1,1,268,269],[574,1,1,269,270],[575,1,1,270,271],[576,1,1,271,272],[579,1,1,272,273],[580,1,1,273,274],[582,2,2,274,276],[583,1,1,276,277],[585,1,1,277,278],[587,1,1,278,279],[591,1,1,279,280],[611,1,1,280,281],[615,1,1,281,282],[622,1,1,282,283],[627,1,1,283,284]]],[19,1,1,284,285,[[647,1,1,284,285]]],[22,23,23,285,308,[[684,1,1,285,286],[689,1,1,286,287],[701,1,1,287,288],[705,1,1,288,289],[713,1,1,289,290],[721,1,1,290,291],[726,1,1,291,292],[730,2,2,292,294],[734,1,1,294,295],[735,1,1,295,296],[736,1,1,296,297],[740,2,2,297,299],[741,4,4,299,303],[742,2,2,303,305],[743,2,2,305,307],[744,1,1,307,308]]],[23,6,6,308,314,[[746,1,1,308,309],[755,1,1,309,310],[767,1,1,310,311],[769,1,1,311,312],[775,2,2,312,314]]],[24,1,1,314,315,[[800,1,1,314,315]]],[25,57,38,315,353,[[821,3,2,315,317],[823,3,2,317,319],[829,1,1,319,320],[837,4,4,320,324],[840,3,2,324,326],[842,4,3,326,329],[843,8,3,329,332],[844,4,3,332,335],[845,8,5,335,340],[846,9,6,340,346],[847,1,1,346,347],[849,9,6,347,353]]],[26,13,10,353,363,[[857,2,2,353,355],[858,6,4,355,359],[860,4,3,359,362],[861,1,1,362,363]]],[28,3,2,363,365,[[877,1,1,363,364],[878,2,1,364,365]]],[29,2,2,365,367,[[880,1,1,365,366],[882,1,1,366,367]]],[30,2,2,367,369,[[888,2,2,367,369]]],[31,2,2,369,371,[[890,2,2,369,371]]],[32,1,1,371,372,[[893,1,1,371,372]]],[34,1,1,372,373,[[904,1,1,372,373]]],[35,2,2,373,375,[[908,2,2,373,375]]],[36,1,1,375,376,[[910,1,1,375,376]]],[37,5,5,376,381,[[912,2,2,376,378],[918,1,1,378,379],[924,2,2,379,381]]],[38,1,1,381,382,[[926,1,1,381,382]]]],[1584,1832,1931,1933,1970,2144,2268,2269,2295,2297,2322,2328,2329,2331,2336,2342,2365,2366,2369,2370,2373,2392,2395,2406,2407,2411,2413,2414,2417,2418,2419,2430,2431,2434,2435,2533,2550,2552,2567,2569,2570,2572,2633,2657,2658,2659,2660,2665,2694,2705,2716,2717,2720,2765,2772,2801,2845,2846,2866,2874,2878,2879,2880,2885,2926,2981,2987,2989,2994,2995,3048,3124,3203,3204,3205,3217,3218,3221,3224,3228,3233,3234,3289,3305,3321,3351,3367,3371,3372,3373,3375,3376,3379,3381,3383,3384,3385,3401,3404,3405,3406,3409,3410,3422,3423,3426,3429,3437,3438,3439,3455,3481,3573,3579,3580,3584,3591,3593,3595,3598,3600,3602,3603,3720,3723,3724,3739,3742,3747,3755,3758,3759,3762,3763,3801,3802,3843,3859,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935,3936,3958,4260,4262,4265,4266,4267,4273,4274,4276,4289,4584,4595,4602,4603,4609,4615,4620,4670,4870,5266,5579,5581,5812,5949,5968,7776,7777,7778,8912,8984,8985,8989,8991,8993,8995,9264,9854,9868,10503,10644,10830,10849,10855,10983,10996,11011,11015,11020,11097,11103,11155,11167,11180,11237,11239,11268,11269,11273,11275,11279,11357,11508,11608,11662,11684,11796,11798,11824,11846,11854,11860,11866,11868,11872,11969,11971,11979,12090,12229,12239,12245,12485,12525,12580,12582,12589,12606,13951,13961,13980,14063,14088,14184,14188,14244,14301,14310,14323,14387,14569,14633,14635,14702,14813,14841,14905,14917,14924,15051,15106,15167,15186,15302,15346,15361,15431,15474,15490,15491,15508,15540,15550,15609,15648,15698,15749,15789,15824,16174,16233,16341,16395,16979,17782,17893,18095,18164,18328,18533,18616,18697,18706,18760,18778,18799,18863,18866,18876,18877,18881,18884,18895,18896,18908,18922,18942,18968,19241,19493,19564,19714,19731,20421,20934,20935,20984,21002,21171,21379,21380,21381,21397,21455,21473,21530,21547,21549,21565,21566,21572,21579,21580,21584,21607,21612,21618,21622,21626,21631,21632,21633,21634,21636,21637,21674,21712,21714,21716,21720,21722,21723,21974,21975,22004,22008,22012,22014,22064,22066,22081,22088,22312,22360,22386,22412,22526,22527,22552,22555,22581,22768,22824,22831,22867,22911,22912,22979,23088,23089,23114]]],["+",[89,44,[[1,14,7,0,7,[[75,4,2,0,2],[78,2,1,2,3],[79,6,3,3,6],[89,2,1,6,7]]],[2,27,14,7,21,[[91,4,2,7,9],[95,6,3,9,12],[96,4,2,12,14],[99,4,2,14,16],[103,2,1,16,17],[110,2,1,17,18],[111,1,1,18,19],[113,2,1,19,20],[116,2,1,20,21]]],[3,10,4,21,25,[[120,4,2,21,23],[134,6,2,23,25]]],[10,2,1,25,26,[[296,2,1,25,26]]],[12,4,2,26,28,[[343,2,1,26,27],[360,2,1,27,28]]],[13,10,5,28,33,[[369,4,2,28,30],[370,2,1,30,31],[371,2,1,31,32],[397,2,1,32,33]]],[14,2,1,33,34,[[404,2,1,33,34]]],[15,2,1,34,35,[[419,2,1,34,35]]],[18,1,1,35,36,[[497,1,1,35,36]]],[25,15,7,36,43,[[842,2,1,36,37],[843,5,2,37,39],[844,2,1,39,40],[845,2,1,40,41],[846,2,1,41,42],[849,2,1,42,43]]],[26,2,1,43,44,[[858,2,1,43,44]]]],[2268,2269,2373,2392,2411,2418,2717,2765,2772,2866,2874,2878,2880,2885,2989,2994,3124,3367,3371,3455,3598,3747,3762,4266,4267,8912,10503,10996,11237,11239,11268,11275,11868,12090,12485,14184,21530,21565,21566,21584,21612,21633,21714,22012]]],["HOLINESS",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[37,1,1,2,3,[[924,1,1,2,3]]]],[2329,2694,23088]]],["consecrated",[1,1,[[5,1,1,0,1,[[192,1,1,0,1]]]],[5968]]],["dedicated",[7,5,[[10,3,2,0,2,[[297,1,1,0,1],[305,2,1,1,2]]],[13,4,3,2,5,[[371,1,1,2,3],[381,2,1,3,4],[397,1,1,4,5]]]],[8985,9264,11269,11508,11866]]],["hallowed",[2,2,[[8,2,2,0,2,[[256,2,2,0,2]]]],[7776,7778]]],["holiness",[27,27,[[1,1,1,0,1,[[64,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[13,2,2,2,4,[[386,1,1,2,3],[397,1,1,3,4]]],[18,11,11,4,15,[[506,1,1,4,5],[507,1,1,5,6],[524,1,1,6,7],[525,1,1,7,8],[537,1,1,8,9],[566,1,1,9,10],[570,1,1,10,11],[573,1,1,11,12],[574,1,1,12,13],[585,1,1,13,14],[587,1,1,14,15]]],[22,5,5,15,20,[[701,1,1,15,16],[713,1,1,16,17],[740,1,1,17,18],[741,2,2,18,20]]],[23,3,3,20,23,[[746,1,1,20,21],[767,1,1,21,22],[775,1,1,22,23]]],[29,1,1,23,24,[[882,1,1,23,24]]],[30,1,1,24,25,[[888,1,1,24,25]]],[37,1,1,25,26,[[924,1,1,25,26]]],[38,1,1,26,27,[[926,1,1,26,27]]]],[1931,10849,11608,11872,14310,14323,14633,14635,14813,15361,15431,15474,15490,15749,15789,18095,18328,18863,18881,18884,18968,19493,19714,22412,22527,23089,23114]]],["holy",[228,213,[[1,42,36,0,36,[[52,1,1,0,1],[61,2,1,1,2],[64,1,1,2,3],[65,1,1,3,4],[71,1,1,4,5],[75,1,1,5,6],[77,6,6,6,12],[78,5,5,12,17],[79,7,5,17,22],[80,4,4,22,26],[84,4,3,26,29],[86,1,1,29,30],[87,1,1,30,31],[88,5,3,31,34],[89,2,2,34,36]]],[2,44,42,36,78,[[95,1,1,36,37],[97,1,1,37,38],[99,4,3,38,41],[103,1,1,41,42],[105,11,10,42,52],[108,1,1,52,53],[109,1,1,53,54],[110,2,2,54,56],[111,2,2,56,58],[112,12,12,58,70],[114,1,1,70,71],[116,7,7,71,78]]],[3,12,12,78,90,[[122,1,1,78,79],[134,2,2,79,81],[144,4,4,81,85],[145,3,3,85,88],[147,1,1,88,89],[151,1,1,89,90]]],[4,1,1,90,91,[[178,1,1,90,91]]],[5,1,1,91,92,[[191,1,1,91,92]]],[8,1,1,92,93,[[256,1,1,92,93]]],[10,5,5,93,98,[[297,1,1,93,94],[298,4,4,94,98]]],[12,6,6,98,104,[[353,2,2,98,100],[359,1,1,100,101],[360,1,1,101,102],[366,2,2,102,104]]],[13,10,10,104,114,[[371,2,2,104,106],[374,1,1,106,107],[389,1,1,107,108],[395,2,2,108,110],[396,1,1,110,111],[401,3,3,111,114]]],[14,4,3,114,117,[[410,2,1,114,115],[411,2,2,115,117]]],[15,5,5,117,122,[[421,1,1,117,118],[422,2,2,118,120],[423,2,2,120,122]]],[18,24,24,122,146,[[479,1,1,122,123],[480,1,1,123,124],[482,1,1,124,125],[488,1,1,125,126],[492,1,1,126,127],[497,1,1,127,128],[501,1,1,128,129],[505,1,1,129,130],[510,1,1,130,131],[520,1,1,131,132],[528,1,1,132,133],[545,2,2,133,135],[556,1,1,135,136],[564,1,1,136,137],[566,1,1,137,138],[575,1,1,138,139],[576,1,1,139,140],[580,1,1,140,141],[582,2,2,141,143],[583,1,1,143,144],[615,1,1,144,145],[622,1,1,145,146]]],[19,1,1,146,147,[[647,1,1,146,147]]],[22,17,17,147,164,[[684,1,1,147,148],[689,1,1,148,149],[705,1,1,149,150],[726,1,1,150,151],[730,2,2,151,153],[734,1,1,153,154],[735,1,1,154,155],[736,1,1,155,156],[740,1,1,156,157],[741,2,2,157,159],[742,2,2,159,161],[743,2,2,161,163],[744,1,1,163,164]]],[23,3,3,164,167,[[755,1,1,164,165],[769,1,1,165,166],[775,1,1,166,167]]],[25,30,26,167,193,[[821,2,2,167,169],[823,1,1,169,170],[829,1,1,170,171],[837,4,4,171,175],[840,3,2,175,177],[843,2,2,177,179],[844,2,2,179,181],[845,2,2,181,183],[846,5,4,183,187],[847,1,1,187,188],[849,7,5,188,193]]],[26,8,7,193,200,[[858,3,3,193,196],[860,4,3,196,199],[861,1,1,199,200]]],[28,3,2,200,202,[[877,1,1,200,201],[878,2,1,201,202]]],[29,1,1,202,203,[[880,1,1,202,203]]],[30,1,1,203,204,[[888,1,1,203,204]]],[31,2,2,204,206,[[890,2,2,204,206]]],[32,1,1,206,207,[[893,1,1,206,207]]],[34,1,1,207,208,[[904,1,1,207,208]]],[35,1,1,208,209,[[908,1,1,208,209]]],[36,1,1,209,210,[[910,1,1,209,210]]],[37,3,3,210,213,[[912,2,2,210,212],[918,1,1,212,213]]]],[1584,1832,1933,1970,2144,2268,2295,2297,2322,2328,2331,2336,2342,2365,2366,2369,2370,2407,2413,2414,2417,2419,2430,2431,2434,2435,2533,2550,2552,2633,2657,2665,2694,2705,2716,2720,2879,2926,2987,2994,2995,3124,3203,3204,3205,3217,3218,3221,3224,3228,3233,3234,3305,3321,3351,3367,3371,3401,3404,3405,3406,3409,3410,3422,3423,3426,3429,3437,3438,3439,3481,3579,3580,3584,3591,3600,3602,3603,3843,4267,4274,4584,4595,4602,4603,4609,4615,4620,4670,4870,5581,5949,7777,8984,8989,8991,8993,8995,10830,10855,10983,11015,11167,11180,11273,11279,11357,11662,11796,11798,11854,11969,11971,11979,12229,12239,12245,12525,12580,12582,12589,12606,13951,13961,13980,14063,14088,14188,14244,14301,14387,14569,14702,14905,14917,15186,15302,15346,15491,15508,15550,15609,15648,15698,16233,16341,16979,17782,17893,18164,18616,18697,18706,18760,18778,18799,18866,18876,18877,18895,18896,18908,18922,18942,19241,19564,19731,20934,20935,21002,21171,21379,21380,21381,21397,21455,21473,21565,21566,21579,21580,21618,21622,21631,21634,21636,21637,21674,21712,21716,21720,21722,21723,22004,22008,22012,22064,22066,22081,22088,22312,22360,22386,22526,22552,22555,22581,22768,22831,22867,22911,22912,22979]]],["most",[2,2,[[10,2,2,0,2,[[297,1,1,0,1],[298,1,1,1,2]]]],[8984,8991]]],["portion",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21631]]],["saints",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5812]]],["sanctuary",[67,65,[[1,10,10,0,10,[[79,2,2,0,2],[85,4,4,2,6],[87,4,4,6,10]]],[2,5,5,10,15,[[93,1,1,10,11],[94,1,1,11,12],[99,1,1,12,13],[116,2,2,13,15]]],[3,28,27,15,42,[[119,5,5,15,20],[120,4,3,20,23],[123,15,15,23,38],[124,1,1,38,39],[134,3,3,39,42]]],[12,2,2,42,44,[[346,1,1,42,43],[361,1,1,43,44]]],[13,1,1,44,45,[[396,1,1,44,45]]],[18,9,9,45,54,[[540,1,1,45,46],[545,1,1,46,47],[551,1,1,47,48],[554,1,1,48,49],[555,1,1,49,50],[579,1,1,50,51],[591,1,1,51,52],[611,1,1,52,53],[627,1,1,53,54]]],[22,1,1,54,55,[[721,1,1,54,55]]],[24,1,1,55,56,[[800,1,1,55,56]]],[25,6,5,56,61,[[842,2,2,56,58],[843,1,1,58,59],[845,2,1,59,60],[846,1,1,60,61]]],[26,3,3,61,64,[[857,2,2,61,63],[858,1,1,63,64]]],[35,1,1,64,65,[[908,1,1,64,65]]]],[2395,2406,2567,2569,2570,2572,2657,2658,2659,2660,2801,2845,2981,3573,3595,3720,3723,3724,3739,3742,3755,3758,3759,3859,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935,3936,3958,4260,4262,4273,10644,11020,11846,14841,14924,15051,15106,15167,15540,15824,16174,16395,18533,20421,21547,21549,21572,21626,21632,21974,21975,22014,22824]]],["thing",[9,7,[[2,8,6,0,6,[[94,1,1,0,1],[101,1,1,1,2],[108,1,1,2,3],[111,4,2,3,5],[116,1,1,5,6]]],[3,1,1,6,7,[[120,1,1,6,7]]]],[2846,3048,3289,3379,3383,3593,3758]]],["things",[33,32,[[1,1,1,0,1,[[77,1,1,0,1]]],[2,8,8,1,9,[[94,1,1,1,2],[111,7,7,2,9]]],[3,6,6,9,15,[[120,1,1,9,10],[121,2,2,10,12],[134,3,3,12,15]]],[4,2,2,15,17,[[164,1,1,15,16],[178,1,1,16,17]]],[11,3,2,17,19,[[324,3,2,17,19]]],[12,4,4,19,23,[[360,1,1,19,20],[363,2,2,20,22],[365,1,1,22,23]]],[13,4,4,23,27,[[371,1,1,23,24],[390,1,1,24,25],[395,1,1,25,26],[397,1,1,26,27]]],[25,5,5,27,32,[[821,1,1,27,28],[823,2,2,28,30],[845,2,2,30,32]]]],[2331,2845,3372,3373,3375,3376,3381,3384,3385,3763,3801,3802,4265,4276,4289,5266,5579,9854,9868,11011,11097,11103,11155,11269,11684,11824,11860,20935,20984,21002,21607,21612]]]]},{"k":"H6945","v":[["*",[6,6,[[4,1,1,0,1,[[175,1,1,0,1]]],[10,3,3,1,4,[[304,1,1,1,2],[305,1,1,2,3],[312,1,1,3,4]]],[11,1,1,4,5,[[335,1,1,4,5]]],[17,1,1,5,6,[[471,1,1,5,6]]]],[5517,9242,9261,9526,10172,13750]]],["sodomite",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5517]]],["sodomites",[4,4,[[10,3,3,0,3,[[304,1,1,0,1],[305,1,1,1,2],[312,1,1,2,3]]],[11,1,1,3,4,[[335,1,1,3,4]]]],[9242,9261,9526,10172]]],["unclean",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13750]]]]},{"k":"H6946","v":[["*",[18,18,[[0,3,3,0,3,[[13,1,1,0,1],[15,1,1,1,2],[19,1,1,2,3]]],[3,8,8,3,11,[[129,1,1,3,4],[136,4,4,4,8],[143,1,1,8,9],[149,2,2,9,11]]],[4,2,2,11,13,[[153,1,1,11,12],[184,1,1,12,13]]],[6,2,2,13,15,[[221,2,2,13,15]]],[18,1,1,15,16,[[506,1,1,15,16]]],[25,2,2,16,18,[[848,1,1,16,17],[849,1,1,17,18]]]],[343,395,496,4101,4312,4325,4327,4333,4568,4796,4797,4938,5809,6845,6846,14316,21698,21730]]],["+",[4,4,[[3,3,3,0,3,[[136,2,2,0,2],[149,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]]],[4325,4333,4797,5809]]],["Kadesh",[14,14,[[0,3,3,0,3,[[13,1,1,0,1],[15,1,1,1,2],[19,1,1,2,3]]],[3,5,5,3,8,[[129,1,1,3,4],[136,2,2,4,6],[143,1,1,6,7],[149,1,1,7,8]]],[4,1,1,8,9,[[153,1,1,8,9]]],[6,2,2,9,11,[[221,2,2,9,11]]],[18,1,1,11,12,[[506,1,1,11,12]]],[25,2,2,12,14,[[848,1,1,12,13],[849,1,1,13,14]]]],[343,395,496,4101,4312,4327,4568,4796,4938,6845,6846,14316,21698,21730]]]]},{"k":"H6947","v":[["*",[10,10,[[3,2,2,0,2,[[148,1,1,0,1],[150,1,1,1,2]]],[4,4,4,2,6,[[153,2,2,2,4],[154,1,1,4,5],[161,1,1,5,6]]],[5,4,4,6,10,[[196,1,1,6,7],[200,2,2,7,9],[201,1,1,9,10]]]],[4726,4820,4894,4911,4952,5180,6105,6193,6194,6205]]],["+",[5,5,[[3,1,1,0,1,[[148,1,1,0,1]]],[4,2,2,1,3,[[154,1,1,1,2],[161,1,1,2,3]]],[5,2,2,3,5,[[196,1,1,3,4],[200,1,1,4,5]]]],[4726,4952,5180,6105,6194]]],["Kadeshbarnea",[5,5,[[3,1,1,0,1,[[150,1,1,0,1]]],[4,2,2,1,3,[[153,2,2,1,3]]],[5,2,2,3,5,[[200,1,1,3,4],[201,1,1,4,5]]]],[4820,4894,4911,6193,6205]]]]},{"k":"H6948","v":[["*",[5,4,[[0,3,2,0,2,[[37,3,2,0,2]]],[4,1,1,2,3,[[175,1,1,2,3]]],[27,1,1,3,4,[[865,1,1,3,4]]]],[1140,1141,5517,22147]]],["harlot",[3,2,[[0,3,2,0,2,[[37,3,2,0,2]]]],[1140,1141]]],["harlots",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22147]]],["whore",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5517]]]]},{"k":"H6949","v":[["*",[4,4,[[20,1,1,0,1,[[668,1,1,0,1]]],[23,2,2,1,3,[[775,2,2,1,3]]],[25,1,1,3,4,[[819,1,1,3,4]]]],[17503,19720,19721,20851]]],["blunt",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17503]]],["edge",[3,3,[[23,2,2,0,2,[[775,2,2,0,2]]],[25,1,1,2,3,[[819,1,1,2,3]]]],[19720,19721,20851]]]]},{"k":"H6950","v":[["*",[38,38,[[1,2,2,0,2,[[81,1,1,0,1],[84,1,1,1,2]]],[2,2,2,2,4,[[97,2,2,2,4]]],[3,9,9,4,13,[[117,1,1,4,5],[124,1,1,5,6],[126,1,1,6,7],[132,3,3,7,10],[136,3,3,10,13]]],[4,3,3,13,16,[[156,1,1,13,14],[183,2,2,14,16]]],[5,2,2,16,18,[[204,1,1,16,17],[208,1,1,17,18]]],[6,1,1,18,19,[[230,1,1,18,19]]],[10,3,3,19,22,[[298,2,2,19,21],[302,1,1,21,22]]],[12,3,3,22,25,[[350,1,1,22,23],[352,1,1,23,24],[365,1,1,24,25]]],[13,4,4,25,29,[[371,2,2,25,27],[377,1,1,27,28],[386,1,1,28,29]]],[16,5,5,29,34,[[433,1,1,29,30],[434,4,4,30,34]]],[17,1,1,34,35,[[446,1,1,34,35]]],[23,1,1,35,36,[[770,1,1,35,36]]],[25,2,2,36,38,[[839,2,2,36,38]]]],[2439,2532,2920,2921,3622,3948,3995,4197,4213,4236,4313,4319,4321,5014,5740,5756,6294,6438,7055,8986,8987,9172,10765,10794,11144,11270,11271,11415,11613,12828,12836,12849,12850,12852,13118,19581,21432,21438]]],["+",[14,14,[[1,1,1,0,1,[[84,1,1,0,1]]],[3,4,4,1,5,[[124,1,1,1,2],[132,1,1,2,3],[136,2,2,3,5]]],[4,2,2,5,7,[[156,1,1,5,6],[183,1,1,6,7]]],[10,2,2,7,9,[[298,1,1,7,8],[302,1,1,8,9]]],[12,3,3,9,12,[[350,1,1,9,10],[352,1,1,10,11],[365,1,1,11,12]]],[13,2,2,12,14,[[371,1,1,12,13],[377,1,1,13,14]]]],[2532,3948,4213,4319,4321,5014,5740,8986,9172,10765,10794,11144,11270,11415]]],["Gather",[1,1,[[4,1,1,0,1,[[183,1,1,0,1]]]],[5756]]],["assembled",[2,2,[[3,1,1,0,1,[[117,1,1,0,1]]],[25,1,1,1,2,[[839,1,1,1,2]]]],[3622,21432]]],["gather",[1,1,[[2,1,1,0,1,[[97,1,1,0,1]]]],[2920]]],["gathered",[3,3,[[3,1,1,0,1,[[132,1,1,0,1]]],[23,1,1,1,2,[[770,1,1,1,2]]],[25,1,1,2,3,[[839,1,1,2,3]]]],[4236,19581,21438]]],["themselves",[3,3,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,2,2,1,3,[[371,1,1,1,2],[386,1,1,2,3]]]],[8987,11271,11613]]],["together",[14,14,[[1,1,1,0,1,[[81,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]],[3,3,3,2,5,[[126,1,1,2,3],[132,1,1,3,4],[136,1,1,4,5]]],[5,2,2,5,7,[[204,1,1,5,6],[208,1,1,6,7]]],[6,1,1,7,8,[[230,1,1,7,8]]],[16,5,5,8,13,[[433,1,1,8,9],[434,4,4,9,13]]],[17,1,1,13,14,[[446,1,1,13,14]]]],[2439,2921,3995,4197,4313,6294,6438,7055,12828,12836,12849,12850,12852,13118]]]]},{"k":"H6951","v":[["*",[123,116,[[0,4,4,0,4,[[27,1,1,0,1],[34,1,1,1,2],[47,1,1,2,3],[48,1,1,3,4]]],[1,2,2,4,6,[[61,1,1,4,5],[65,1,1,5,6]]],[2,5,5,6,11,[[93,3,3,6,9],[105,2,2,9,11]]],[3,12,12,11,23,[[126,1,1,11,12],[130,1,1,12,13],[131,1,1,13,14],[132,3,3,14,17],[135,1,1,17,18],[136,4,4,18,22],[138,1,1,22,23]]],[4,11,9,23,32,[[157,1,1,23,24],[161,1,1,24,25],[162,1,1,25,26],[170,1,1,26,27],[175,6,4,27,31],[183,1,1,31,32]]],[5,1,1,32,33,[[194,1,1,32,33]]],[6,3,3,33,36,[[230,1,1,33,34],[231,2,2,34,36]]],[8,1,1,36,37,[[252,1,1,36,37]]],[10,6,5,37,42,[[298,5,4,37,41],[302,1,1,41,42]]],[12,7,6,42,48,[[350,2,2,42,44],[365,1,1,44,45],[366,4,3,45,48]]],[13,26,23,48,71,[[367,2,2,48,50],[372,4,3,50,53],[373,1,1,53,54],[386,2,2,54,56],[389,1,1,56,57],[390,1,1,57,58],[394,1,1,58,59],[395,4,4,59,63],[396,9,7,63,70],[397,1,1,70,71]]],[14,5,5,71,76,[[404,1,1,71,72],[412,4,4,72,76]]],[15,5,5,76,81,[[417,1,1,76,77],[419,1,1,77,78],[420,2,2,78,80],[425,1,1,80,81]]],[17,1,1,81,82,[[465,1,1,81,82]]],[18,9,9,82,91,[[499,2,2,82,84],[503,1,1,84,85],[512,1,1,85,86],[517,2,2,86,88],[566,1,1,88,89],[584,1,1,89,90],[626,1,1,90,91]]],[19,3,3,91,94,[[632,1,1,91,92],[648,1,1,92,93],[653,1,1,93,94]]],[23,4,4,94,98,[[770,1,1,94,95],[775,1,1,95,96],[788,1,1,96,97],[794,1,1,97,98]]],[24,1,1,98,99,[[797,1,1,98,99]]],[25,15,15,99,114,[[817,1,1,99,100],[818,1,1,100,101],[824,3,3,101,104],[827,1,1,104,105],[828,2,2,105,107],[833,3,3,107,110],[839,4,4,110,114]]],[28,1,1,114,115,[[877,1,1,114,115]]],[32,1,1,115,116,[[894,1,1,115,116]]]],[776,1022,1455,1479,1822,1950,2808,2809,2816,3218,3234,3995,4113,4168,4197,4227,4241,4309,4315,4317,4321,4323,4379,5075,5167,5190,5400,5501,5502,5503,5508,5758,6037,7056,7107,7110,7665,8999,9007,9040,9050,9154,10762,10764,11151,11165,11174,11184,11197,11199,11285,11294,11295,11332,11592,11601,11659,11683,11778,11814,11819,11822,11823,11829,11831,11840,11844,11850,11851,11852,11872,12091,12253,12260,12264,12266,12395,12486,12495,12510,12672,13585,14226,14229,14278,14428,14534,14535,15331,15731,16386,16531,17000,17167,19589,19699,20025,20175,20320,20802,20842,21031,21053,21054,21107,21148,21155,21251,21270,21271,21429,21432,21438,21440,22327,22600]]],["+",[2,2,[[3,1,1,0,1,[[136,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]]],[4321,12260]]],["assembly",[17,17,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[61,1,1,1,2],[65,1,1,2,3]]],[2,1,1,3,4,[[93,1,1,3,4]]],[3,2,2,4,6,[[130,1,1,4,5],[136,1,1,5,6]]],[4,4,4,6,10,[[157,1,1,6,7],[161,1,1,7,8],[162,1,1,8,9],[170,1,1,9,10]]],[6,2,2,10,12,[[230,1,1,10,11],[231,1,1,11,12]]],[8,1,1,12,13,[[252,1,1,12,13]]],[13,1,1,13,14,[[396,1,1,13,14]]],[23,2,2,14,16,[[770,1,1,14,15],[794,1,1,15,16]]],[25,1,1,16,17,[[824,1,1,16,17]]]],[1479,1822,1950,2808,4113,4317,5075,5167,5190,5400,7056,7110,7665,11850,19589,20175,21031]]],["companies",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21107]]],["company",[16,16,[[0,1,1,0,1,[[34,1,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]],[25,13,13,3,16,[[817,1,1,3,4],[818,1,1,4,5],[824,2,2,5,7],[828,2,2,7,9],[833,3,3,9,12],[839,4,4,12,16]]]],[1022,4379,19699,20802,20842,21053,21054,21148,21155,21251,21270,21271,21429,21432,21438,21440]]],["congregation",[84,77,[[2,4,4,0,4,[[93,2,2,0,2],[105,2,2,2,4]]],[3,8,8,4,12,[[126,1,1,4,5],[131,1,1,5,6],[132,3,3,6,9],[135,1,1,9,10],[136,2,2,10,12]]],[4,7,5,12,17,[[175,6,4,12,16],[183,1,1,16,17]]],[5,1,1,17,18,[[194,1,1,17,18]]],[6,1,1,18,19,[[231,1,1,18,19]]],[10,6,5,19,24,[[298,5,4,19,23],[302,1,1,23,24]]],[12,7,6,24,30,[[350,2,2,24,26],[365,1,1,26,27],[366,4,3,27,30]]],[13,25,22,30,52,[[367,2,2,30,32],[372,4,3,32,35],[373,1,1,35,36],[386,2,2,36,38],[389,1,1,38,39],[390,1,1,39,40],[394,1,1,40,41],[395,4,4,41,45],[396,8,6,45,51],[397,1,1,51,52]]],[14,4,4,52,56,[[404,1,1,52,53],[412,3,3,53,56]]],[15,5,5,56,61,[[417,1,1,56,57],[419,1,1,57,58],[420,2,2,58,60],[425,1,1,60,61]]],[17,1,1,61,62,[[465,1,1,61,62]]],[18,9,9,62,71,[[499,2,2,62,64],[503,1,1,64,65],[512,1,1,65,66],[517,2,2,66,68],[566,1,1,68,69],[584,1,1,69,70],[626,1,1,70,71]]],[19,3,3,71,74,[[632,1,1,71,72],[648,1,1,72,73],[653,1,1,73,74]]],[24,1,1,74,75,[[797,1,1,74,75]]],[28,1,1,75,76,[[877,1,1,75,76]]],[32,1,1,76,77,[[894,1,1,76,77]]]],[2809,2816,3218,3234,3995,4168,4197,4227,4241,4309,4315,4323,5501,5502,5503,5508,5758,6037,7107,8999,9007,9040,9050,9154,10762,10764,11151,11165,11174,11184,11197,11199,11285,11294,11295,11332,11592,11601,11659,11683,11778,11814,11819,11822,11823,11829,11831,11840,11844,11851,11852,11872,12091,12253,12264,12266,12395,12486,12495,12510,12672,13585,14226,14229,14278,14428,14534,14535,15331,15731,16386,16531,17000,17167,20320,22327,22600]]],["multitude",[3,3,[[0,2,2,0,2,[[27,1,1,0,1],[47,1,1,1,2]]],[23,1,1,2,3,[[788,1,1,2,3]]]],[776,1455,20025]]]]},{"k":"H6952","v":[["*",[2,2,[[4,1,1,0,1,[[185,1,1,0,1]]],[15,1,1,1,2,[[417,1,1,1,2]]]],[5814,12389]]],["assembly",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12389]]],["congregation",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5814]]]]},{"k":"H6953","v":[["*",[7,7,[[20,7,7,0,7,[[659,3,3,0,3],[665,1,1,3,4],[670,3,3,4,7]]]],[17316,17317,17327,17456,17531,17532,17533]]],["Preacher",[3,3,[[20,3,3,0,3,[[659,3,3,0,3]]]],[17316,17317,17327]]],["preacher",[4,4,[[20,4,4,0,4,[[665,1,1,0,1],[670,3,3,1,4]]]],[17456,17531,17532,17533]]]]},{"k":"H6954","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4782,4783]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4783]]],["Kehelathah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4782]]]]},{"k":"H6955","v":[["Kohath",[32,29,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,3,2,1,3,[[55,3,2,1,3]]],[3,12,11,3,14,[[119,4,4,3,7],[120,4,3,7,10],[123,1,1,10,11],[132,1,1,11,12],[142,2,2,12,14]]],[5,4,3,14,17,[[207,4,3,14,17]]],[12,12,12,17,29,[[343,9,9,17,26],[352,1,1,26,27],[360,2,2,27,29]]]],[1397,1671,1673,3709,3711,3719,3721,3745,3747,3758,3859,4195,4546,4547,6386,6401,6407,10455,10456,10470,10472,10476,10492,10515,10520,10524,10796,10989,10995]]]]},{"k":"H6956","v":[["Kohathites",[15,15,[[3,7,7,0,7,[[119,2,2,0,2],[120,3,3,2,5],[126,1,1,5,6],[142,1,1,6,7]]],[5,2,2,7,9,[[207,2,2,7,9]]],[12,3,3,9,12,[[343,2,2,9,11],[346,1,1,11,12]]],[13,3,3,12,15,[[386,1,1,12,13],[395,1,1,13,14],[400,1,1,14,15]]]],[3719,3722,3761,3777,3780,4009,4546,6385,6391,10487,10508,10647,11606,11803,11945]]]]},{"k":"H6957","v":[["*",[21,15,[[10,1,1,0,1,[[297,1,1,0,1]]],[11,1,1,1,2,[[333,1,1,1,2]]],[13,1,1,2,3,[[370,1,1,2,3]]],[17,1,1,3,4,[[473,1,1,3,4]]],[18,1,1,4,5,[[496,1,1,4,5]]],[22,12,6,5,11,[[706,9,3,5,8],[712,2,2,8,10],[722,1,1,10,11]]],[23,1,1,11,12,[[775,1,1,11,12]]],[24,1,1,12,13,[[798,1,1,12,13]]],[25,1,1,13,14,[[848,1,1,13,14]]],[37,1,1,14,15,[[911,1,1,14,15]]]],[8957,10132,11248,13798,14172,18174,18177,18181,18314,18320,18546,19730,20340,21682,22894]]],["line",[20,14,[[10,1,1,0,1,[[297,1,1,0,1]]],[11,1,1,1,2,[[333,1,1,1,2]]],[13,1,1,2,3,[[370,1,1,2,3]]],[17,1,1,3,4,[[473,1,1,3,4]]],[18,1,1,4,5,[[496,1,1,4,5]]],[22,11,5,5,10,[[706,9,3,5,8],[712,2,2,8,10]]],[23,1,1,10,11,[[775,1,1,10,11]]],[24,1,1,11,12,[[798,1,1,11,12]]],[25,1,1,12,13,[[848,1,1,12,13]]],[37,1,1,13,14,[[911,1,1,13,14]]]],[8957,10132,11248,13798,14172,18174,18177,18181,18314,18320,19730,20340,21682,22894]]],["rule",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18546]]]]},{"k":"H6958","v":[["*",[8,7,[[2,4,3,0,3,[[107,3,2,0,2],[109,1,1,2,3]]],[17,1,1,3,4,[[455,1,1,3,4]]],[19,2,2,4,6,[[650,1,1,4,5],[652,1,1,5,6]]],[31,1,1,6,7,[[890,1,1,6,7]]]],[3276,3279,3340,13341,17052,17129,22558]]],["+",[5,4,[[2,4,3,0,3,[[107,3,2,0,2],[109,1,1,2,3]]],[31,1,1,3,4,[[890,1,1,3,4]]]],[3276,3279,3340,22558]]],["again",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13341]]],["up",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17052]]],["vomit",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17129]]]]},{"k":"H6959","v":[["helmet",[2,2,[[8,1,1,0,1,[[252,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[7656,21031]]]]},{"k":"H6960","v":[["*",[49,45,[[0,2,2,0,2,[[0,1,1,0,1],[48,1,1,1,2]]],[17,5,5,2,7,[[438,1,1,2,3],[441,1,1,3,4],[442,1,1,4,5],[452,1,1,5,6],[465,1,1,6,7]]],[18,17,14,7,21,[[502,3,3,7,10],[504,2,1,10,11],[514,2,2,11,13],[516,1,1,13,14],[517,2,1,14,15],[529,1,1,15,16],[533,1,1,16,17],[546,2,2,17,19],[596,1,1,19,20],[607,2,1,20,21]]],[19,1,1,21,22,[[647,1,1,21,22]]],[22,15,14,22,36,[[683,3,3,22,25],[686,1,1,25,26],[703,2,1,26,27],[704,1,1,27,28],[711,1,1,28,29],[718,1,1,29,30],[727,1,1,30,31],[729,1,1,31,32],[737,2,2,32,34],[738,1,1,34,35],[742,1,1,35,36]]],[23,5,5,36,41,[[747,1,1,36,37],[752,1,1,37,38],[757,1,1,38,39],[758,2,2,39,41]]],[24,2,2,41,43,[[798,1,1,41,42],[799,1,1,42,43]]],[27,1,1,43,44,[[873,1,1,43,44]]],[32,1,1,44,45,[[897,1,1,44,45]]]],[8,1491,12913,12997,13010,13273,13583,14254,14256,14272,14299,14459,14484,14519,14526,14719,14761,14941,14955,15993,16145,16976,17741,17743,17746,17824,18127,18138,18281,18451,18659,18678,18809,18811,18830,18888,19019,19168,19282,19312,19315,20348,20379,22258,22640]]],["+",[2,2,[[22,1,1,0,1,[[742,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]]],[18888,20348]]],["Wait",[2,2,[[18,2,2,0,2,[[504,1,1,0,1],[514,1,1,1,2]]]],[14299,14484]]],["for",[5,5,[[17,2,2,0,2,[[442,1,1,0,1],[465,1,1,1,2]]],[18,2,2,2,4,[[533,1,1,2,3],[607,1,1,3,4]]],[24,1,1,4,5,[[799,1,1,4,5]]]],[13010,13583,14761,16145,20379]]],["gathered",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19019]]],["look",[4,4,[[17,1,1,0,1,[[438,1,1,0,1]]],[22,2,2,1,3,[[686,1,1,1,2],[737,1,1,2,3]]],[23,1,1,3,4,[[757,1,1,3,4]]]],[12913,17824,18811,19282]]],["looked",[6,6,[[18,1,1,0,1,[[546,1,1,0,1]]],[22,3,3,1,4,[[683,3,3,1,4]]],[23,2,2,4,6,[[752,1,1,4,5],[758,1,1,5,6]]]],[14955,17741,17743,17746,19168,19312]]],["on",[3,3,[[18,3,3,0,3,[[502,1,1,0,1],[529,1,1,1,2],[546,1,1,2,3]]]],[14272,14719,14941]]],["patiently",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14526]]],["tarrieth",[1,1,[[32,1,1,0,1,[[897,1,1,0,1]]]],[22640]]],["together",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[8]]],["upon",[2,2,[[18,1,1,0,1,[[514,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[14459,18451]]],["wait",[13,13,[[17,1,1,0,1,[[452,1,1,0,1]]],[18,5,5,1,6,[[502,2,2,1,3],[504,1,1,3,4],[516,1,1,4,5],[607,1,1,5,6]]],[19,1,1,6,7,[[647,1,1,6,7]]],[22,4,4,7,11,[[727,1,1,7,8],[729,1,1,8,9],[737,1,1,9,10],[738,1,1,10,11]]],[23,1,1,11,12,[[758,1,1,11,12]]],[27,1,1,12,13,[[873,1,1,12,13]]]],[13273,14254,14256,14299,14519,16145,16976,18659,18678,18809,18830,19315,22258]]],["waited",[8,7,[[0,1,1,0,1,[[48,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]],[18,2,2,2,4,[[517,1,1,2,3],[596,1,1,3,4]]],[22,4,3,4,7,[[703,2,1,4,5],[704,1,1,5,6],[711,1,1,6,7]]]],[1491,12997,14526,15993,18127,18138,18281]]]]},{"k":"H6961","v":[]},{"k":"H6962","v":[["*",[6,6,[[18,3,3,0,3,[[572,1,1,0,1],[596,1,1,1,2],[616,1,1,2,3]]],[25,3,3,3,6,[[807,1,1,3,4],[821,1,1,4,5],[837,1,1,5,6]]]],[15464,16056,16260,20572,20938,21390]]],["grieved",[3,3,[[18,3,3,0,3,[[572,1,1,0,1],[596,1,1,1,2],[616,1,1,2,3]]]],[15464,16056,16260]]],["lothe",[1,1,[[25,1,1,0,1,[[807,1,1,0,1]]]],[20572]]],["yourselves",[2,2,[[25,2,2,0,2,[[821,1,1,0,1],[837,1,1,1,2]]]],[20938,21390]]]]},{"k":"H6963","v":[["*",[506,436,[[0,25,23,0,23,[[2,3,3,0,3],[3,2,2,3,5],[15,1,1,5,6],[20,4,3,6,9],[21,1,1,9,10],[25,1,1,10,11],[26,6,5,11,16],[28,1,1,16,17],[29,1,1,17,18],[38,3,3,18,21],[44,2,2,21,23]]],[1,31,24,23,47,[[52,1,1,23,24],[53,4,3,24,27],[54,1,1,27,28],[58,5,5,28,33],[64,1,1,33,34],[67,2,2,34,36],[68,5,3,36,39],[69,2,1,39,40],[72,2,2,40,42],[73,1,1,42,43],[77,1,1,43,44],[81,5,2,44,46],[85,1,1,46,47]]],[2,2,2,47,49,[[94,1,1,47,48],[115,1,1,48,49]]],[3,6,6,49,55,[[123,1,1,49,50],[130,2,2,50,52],[132,1,1,52,53],[136,1,1,53,54],[137,1,1,54,55]]],[4,38,35,55,90,[[153,2,2,55,57],[156,5,4,57,61],[157,7,6,61,67],[160,1,1,67,68],[161,1,1,68,69],[165,2,2,69,71],[167,1,1,71,72],[170,1,1,72,73],[173,3,2,73,75],[178,3,3,75,78],[179,2,2,78,80],[180,5,5,80,85],[182,4,4,85,89],[185,1,1,89,90]]],[5,7,7,90,97,[[191,1,1,90,91],[192,3,3,91,94],[196,1,1,94,95],[208,1,1,95,96],[210,1,1,96,97]]],[6,11,11,97,108,[[212,3,3,97,100],[215,1,1,100,101],[216,1,1,101,102],[219,1,1,102,103],[223,1,1,103,104],[228,2,2,104,106],[230,1,1,106,107],[231,1,1,107,108]]],[7,2,2,108,110,[[232,2,2,108,110]]],[8,37,31,110,141,[[236,1,1,110,111],[237,1,1,111,112],[239,4,2,112,114],[242,1,1,114,115],[243,4,4,115,119],[246,1,1,119,120],[247,5,5,120,125],[250,7,6,125,131],[254,1,1,131,132],[259,2,1,132,133],[260,1,1,133,134],[261,3,1,134,135],[263,5,5,135,140],[265,1,1,140,141]]],[9,12,12,141,153,[[269,1,1,141,142],[271,1,1,142,143],[272,1,1,143,144],[278,1,1,144,145],[279,2,2,145,147],[281,2,2,147,149],[285,2,2,149,151],[288,2,2,151,153]]],[10,16,15,153,168,[[291,4,3,153,156],[298,1,1,156,157],[304,1,1,157,158],[307,1,1,158,159],[308,5,5,159,164],[309,2,2,164,166],[310,2,2,166,168]]],[11,11,9,168,177,[[316,1,1,168,169],[318,1,1,169,170],[319,4,2,170,172],[322,1,1,172,173],[323,1,1,173,174],[330,2,2,174,176],[331,1,1,176,177]]],[12,3,3,177,180,[[351,1,1,177,178],[352,2,2,178,180]]],[13,10,9,180,189,[[371,2,1,180,181],[381,1,1,181,182],[386,1,1,182,183],[389,1,1,183,184],[390,1,1,184,185],[396,2,2,185,187],[398,1,1,187,188],[402,1,1,188,189]]],[14,8,5,189,194,[[403,1,1,189,190],[405,5,2,190,192],[412,2,2,192,194]]],[15,3,3,194,197,[[416,1,1,194,195],[420,1,1,195,196],[421,1,1,196,197]]],[17,21,19,197,216,[[437,1,1,197,198],[438,1,1,198,199],[439,2,2,199,201],[444,1,1,201,202],[450,1,1,202,203],[456,1,1,203,204],[463,1,1,204,205],[464,1,1,205,206],[465,1,1,206,207],[468,1,1,207,208],[469,1,1,208,209],[472,5,3,209,212],[473,2,2,212,214],[474,1,1,214,215],[475,1,1,215,216]]],[18,59,54,216,270,[[480,1,1,216,217],[482,2,2,217,219],[483,1,1,219,220],[495,2,2,220,222],[496,1,1,222,223],[503,1,1,223,224],[504,1,1,224,225],[505,2,2,225,227],[506,7,6,227,233],[508,1,1,233,234],[519,2,2,234,236],[521,1,1,236,237],[523,1,1,237,238],[524,2,2,238,240],[532,2,2,240,242],[535,1,1,242,243],[541,1,1,243,244],[543,2,2,244,246],[545,2,1,246,247],[551,1,1,247,248],[554,4,3,248,251],[558,1,1,251,252],[563,1,1,252,253],[570,2,2,253,255],[572,1,1,255,256],[575,2,2,256,258],[579,1,1,258,259],[580,1,1,259,260],[581,2,2,260,262],[583,1,1,262,263],[593,1,1,263,264],[595,1,1,264,265],[596,1,1,265,266],[607,2,1,266,267],[617,1,1,267,268],[618,1,1,268,269],[619,2,1,269,270]]],[19,7,7,270,277,[[628,1,1,270,271],[629,1,1,271,272],[632,1,1,272,273],[635,2,2,273,275],[653,1,1,275,276],[654,1,1,276,277]]],[20,6,5,277,282,[[663,2,2,277,279],[665,1,1,279,280],[668,1,1,280,281],[670,2,1,281,282]]],[21,6,5,282,287,[[672,4,3,282,285],[675,1,1,285,286],[678,1,1,286,287]]],[22,36,31,287,318,[[684,2,2,287,289],[688,1,1,289,290],[691,3,2,290,292],[693,1,1,292,293],[702,2,2,293,295],[706,1,1,295,296],[707,2,2,296,298],[708,3,3,298,301],[709,1,1,301,302],[710,1,1,302,303],[711,1,1,303,304],[714,1,1,304,305],[715,1,1,305,306],[718,3,3,306,309],[720,1,1,309,310],[726,1,1,310,311],[728,1,1,311,312],[729,1,1,312,313],[730,2,1,313,314],[736,2,2,314,316],[743,2,1,316,317],[744,3,1,317,318]]],[23,82,64,318,382,[[746,1,1,318,319],[747,4,4,319,323],[748,7,6,323,329],[750,2,2,329,331],[751,6,3,331,334],[752,2,2,334,336],[753,3,3,336,339],[754,2,2,339,341],[755,3,3,341,344],[756,1,1,344,345],[760,4,1,345,346],[762,2,2,346,348],[766,2,2,348,350],[769,7,3,350,353],[770,1,1,353,354],[774,2,2,354,356],[775,2,2,356,358],[776,1,1,358,359],[777,5,1,359,360],[779,1,1,360,361],[782,1,1,361,362],[784,1,1,362,363],[786,5,4,363,367],[787,2,2,367,369],[788,1,1,369,370],[790,1,1,370,371],[791,1,1,371,372],[792,2,2,372,374],[793,2,1,374,375],[794,4,4,375,379],[795,4,3,379,382]]],[24,2,2,382,384,[[798,1,1,382,383],[799,1,1,383,384]]],[25,32,24,384,408,[[802,7,3,384,387],[804,4,2,387,389],[809,1,1,389,390],[810,1,1,390,391],[811,2,1,391,392],[812,1,1,392,393],[820,2,2,393,395],[822,1,1,395,396],[824,1,1,396,397],[827,3,3,397,400],[828,2,2,400,402],[832,1,1,402,403],[834,3,3,403,406],[838,1,1,406,407],[844,2,1,407,408]]],[26,8,6,408,414,[[857,1,1,408,409],[858,3,3,409,412],[859,4,2,412,414]]],[28,4,3,414,417,[[877,3,2,414,416],[878,1,1,416,417]]],[29,3,3,417,420,[[879,1,1,417,418],[880,1,1,418,419],[881,1,1,419,420]]],[31,2,2,420,422,[[890,2,2,420,422]]],[32,2,2,422,424,[[898,2,2,422,424]]],[33,4,3,424,427,[[901,2,2,424,426],[902,2,1,426,427]]],[34,2,2,427,429,[[905,2,2,427,429]]],[35,4,4,429,433,[[906,2,2,429,431],[907,1,1,431,432],[908,1,1,432,433]]],[36,1,1,433,434,[[909,1,1,433,434]]],[37,3,2,434,436,[[916,1,1,434,435],[921,2,1,435,436]]]],[63,65,72,89,102,383,525,529,530,565,697,735,740,749,765,770,806,836,1163,1164,1167,1360,1374,1597,1602,1609,1610,1634,1765,1770,1771,1775,1776,1946,2018,2023,2031,2042,2045,2069,2165,2166,2180,2328,2455,2456,2572,2831,3560,3939,4109,4130,4228,4327,4343,4926,4937,5016,5034,5037,5040,5075,5076,5077,5078,5079,5081,5157,5180,5276,5290,5324,5400,5465,5467,5573,5580,5583,5595,5599,5612,5613,5626,5656,5673,5710,5716,5718,5728,5817,5940,5954,5959,5969,6078,6428,6500,6547,6549,6565,6634,6664,6761,6893,6996,7018,7067,7104,7136,7141,7225,7265,7303,7311,7362,7376,7378,7388,7391,7449,7461,7474,7475,7477,7478,7561,7574,7579,7580,7582,7584,7712,7855,7896,7922,7954,7960,7963,7964,7965,7982,8113,8156,8172,8304,8331,8353,8399,8412,8515,8546,8609,8616,8757,8758,8762,9040,9224,9339,9367,9368,9369,9370,9382,9399,9400,9433,9444,9634,9706,9713,9717,9799,9842,10036,10052,10083,10789,10807,10819,11281,11504,11606,11668,11686,11832,11854,11893,12015,12017,12109,12110,12259,12264,12379,12508,12515,12903,12922,12940,12946,13067,13224,13367,13530,13542,13588,13658,13699,13771,13773,13774,13818,13827,13858,13873,13961,13975,13976,13993,14124,14131,14171,14280,14292,14301,14305,14311,14312,14313,14315,14316,14317,14353,14559,14562,14587,14620,14626,14630,14735,14749,14784,14851,14881,14892,14933,15071,15094,15110,15111,15228,15290,15429,15430,15461,15495,15496,15526,15569,15578,15583,15676,15849,15884,16047,16142,16269,16277,16287,16420,16436,16530,16603,16606,17166,17183,17400,17403,17435,17513,17527,17562,17566,17568,17600,17653,17773,17777,17880,17908,17910,17964,18109,18113,18187,18197,18199,18236,18247,18248,18254,18268,18282,18343,18375,18423,18426,18429,18482,18634,18672,18676,18704,18787,18790,18916,18928,18980,19011,19015,19023,19027,19042,19043,19046,19048,19056,19058,19106,19112,19142,19147,19153,19169,19172,19185,19188,19194,19214,19223,19230,19233,19242,19257,19345,19394,19403,19474,19475,19544,19564,19570,19585,19672,19686,19706,19707,19754,19786,19831,19915,19944,19981,19988,19989,19996,20001,20004,20033,20067,20076,20083,20114,20148,20188,20194,20208,20212,20228,20266,20267,20339,20410,20488,20489,20492,20514,20515,20622,20623,20638,20668,20888,20890,20966,21049,21110,21113,21115,21149,21151,21246,21284,21285,21312,21404,21574,21977,21998,21999,22002,22021,22024,22316,22322,22359,22366,22381,22399,22550,22557,22649,22657,22706,22712,22714,22778,22784,22797,22801,22819,22822,22852,22962,23031]]],["+",[35,35,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,2,2,1,3,[[68,1,1,1,2],[85,1,1,2,3]]],[6,1,1,3,4,[[215,1,1,3,4]]],[10,2,2,4,6,[[308,2,2,4,6]]],[13,2,2,6,8,[[396,1,1,6,7],[402,1,1,7,8]]],[14,3,3,8,11,[[403,1,1,8,9],[405,1,1,9,10],[412,1,1,10,11]]],[15,1,1,11,12,[[420,1,1,11,12]]],[18,5,5,12,17,[[521,1,1,12,13],[532,1,1,13,14],[570,1,1,14,15],[579,1,1,15,16],[581,1,1,16,17]]],[22,5,5,17,22,[[684,1,1,17,18],[702,1,1,18,19],[708,1,1,19,20],[709,1,1,20,21],[711,1,1,21,22]]],[23,8,8,22,30,[[746,1,1,22,23],[747,1,1,23,24],[748,1,1,24,25],[752,1,1,25,26],[756,1,1,26,27],[791,1,1,27,28],[793,1,1,28,29],[794,1,1,29,30]]],[25,4,4,30,34,[[820,1,1,30,31],[827,2,2,31,33],[832,1,1,33,34]]],[29,1,1,34,35,[[881,1,1,34,35]]]],[1360,2031,2572,6634,9368,9369,11832,12015,12017,12109,12259,12508,14587,14735,15430,15526,15583,17773,18113,18248,18254,18282,18980,19011,19056,19169,19257,20076,20148,20212,20888,21110,21115,21246,22399]]],["bleating",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7574]]],["crackling",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17435]]],["cry",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4228]]],["fame",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1374]]],["lowing",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7574]]],["noise",[39,25,[[1,4,3,0,3,[[69,1,1,0,1],[81,3,2,1,3]]],[8,4,2,3,5,[[239,4,2,3,5]]],[10,2,2,5,7,[[291,2,2,5,7]]],[11,4,2,7,9,[[319,3,1,7,8],[323,1,1,8,9]]],[13,1,1,9,10,[[389,1,1,9,10]]],[14,3,1,10,11,[[405,3,1,10,11]]],[18,1,1,11,12,[[519,1,1,11,12]]],[22,3,2,12,14,[[691,2,1,12,13],[707,1,1,13,14]]],[23,3,3,14,17,[[754,1,1,14,15],[755,1,1,15,16],[793,1,1,16,17]]],[24,1,1,17,18,[[798,1,1,17,18]]],[25,8,4,18,22,[[802,3,1,18,19],[804,3,1,19,20],[838,1,1,20,21],[844,1,1,21,22]]],[28,2,1,22,23,[[877,2,1,22,23]]],[33,2,1,23,24,[[902,2,1,23,24]]],[35,1,1,24,25,[[906,1,1,24,25]]]],[2069,2455,2456,7303,7311,8758,8762,9713,9842,11668,12110,14562,17910,18199,19223,19242,20148,20339,20488,20515,21404,21574,22316,22714,22797]]],["peace",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13542]]],["proclamation",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11686]]],["sound",[36,36,[[1,1,1,0,1,[[77,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[5,2,2,2,4,[[192,2,2,2,4]]],[9,3,3,4,7,[[271,1,1,4,5],[272,1,1,5,6],[281,1,1,6,7]]],[10,4,4,7,11,[[291,2,2,7,9],[304,1,1,9,10],[308,1,1,10,11]]],[11,1,1,11,12,[[318,1,1,11,12]]],[12,2,2,12,14,[[351,1,1,12,13],[352,1,1,13,14]]],[13,1,1,14,15,[[371,1,1,14,15]]],[15,1,1,15,16,[[416,1,1,15,16]]],[17,3,3,16,19,[[450,1,1,16,17],[456,1,1,17,18],[474,1,1,18,19]]],[18,3,3,19,22,[[524,1,1,19,20],[554,1,1,20,21],[575,1,1,21,22]]],[20,1,1,22,23,[[670,1,1,22,23]]],[23,7,7,23,30,[[748,2,2,23,25],[750,1,1,25,26],[769,1,1,26,27],[786,1,1,27,28],[794,1,1,28,29],[795,1,1,29,30]]],[25,5,5,30,35,[[811,1,1,30,31],[827,1,1,31,32],[828,1,1,32,33],[834,2,2,33,35]]],[29,1,1,35,36,[[880,1,1,35,36]]]],[2328,3560,5954,5969,8156,8172,8399,8757,8758,9224,9382,9706,10789,10819,11281,12379,13224,13367,13858,14630,15110,15496,17527,19046,19048,19106,19544,19989,20188,20266,20638,21113,21149,21284,21285,22381]]],["speaketh",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17166]]],["thunder",[7,7,[[1,2,2,0,2,[[58,2,2,0,2]]],[8,3,3,2,5,[[242,1,1,2,3],[247,2,2,3,5]]],[17,2,2,5,7,[[463,1,1,5,6],[473,1,1,6,7]]]],[1765,1771,7362,7477,7478,13530,13818]]],["thunderings",[2,2,[[1,2,2,0,2,[[58,1,1,0,1],[69,1,1,1,2]]]],[1770,2069]]],["thunders",[3,3,[[1,3,3,0,3,[[58,2,2,0,2],[68,1,1,2,3]]]],[1775,1776,2042]]],["voice",[374,331,[[0,23,21,0,21,[[2,3,3,0,3],[3,2,2,3,5],[15,1,1,5,6],[20,4,3,6,9],[21,1,1,9,10],[25,1,1,10,11],[26,6,5,11,16],[28,1,1,16,17],[29,1,1,17,18],[38,3,3,18,21]]],[1,17,14,21,35,[[52,1,1,21,22],[53,4,3,22,25],[54,1,1,25,26],[64,1,1,26,27],[67,2,2,27,29],[68,3,2,29,31],[72,2,2,31,33],[73,1,1,33,34],[81,2,1,34,35]]],[2,1,1,35,36,[[94,1,1,35,36]]],[3,5,5,36,41,[[123,1,1,36,37],[130,2,2,37,39],[136,1,1,39,40],[137,1,1,40,41]]],[4,38,35,41,76,[[153,2,2,41,43],[156,5,4,43,47],[157,7,6,47,53],[160,1,1,53,54],[161,1,1,54,55],[165,2,2,55,57],[167,1,1,57,58],[170,1,1,58,59],[173,3,2,59,61],[178,3,3,61,64],[179,2,2,64,66],[180,5,5,66,71],[182,4,4,71,75],[185,1,1,75,76]]],[5,5,5,76,81,[[191,1,1,76,77],[192,1,1,77,78],[196,1,1,78,79],[208,1,1,79,80],[210,1,1,80,81]]],[6,9,9,81,90,[[212,3,3,81,84],[216,1,1,84,85],[219,1,1,85,86],[223,1,1,86,87],[228,2,2,87,89],[230,1,1,89,90]]],[7,2,2,90,92,[[232,2,2,90,92]]],[8,27,24,92,116,[[236,1,1,92,93],[237,1,1,93,94],[243,4,4,94,98],[247,3,3,98,101],[250,5,5,101,106],[254,1,1,106,107],[259,2,1,107,108],[260,1,1,108,109],[261,3,1,109,110],[263,5,5,110,115],[265,1,1,115,116]]],[9,9,9,116,125,[[269,1,1,116,117],[278,1,1,117,118],[279,2,2,118,120],[281,1,1,120,121],[285,2,2,121,123],[288,2,2,123,125]]],[10,8,8,125,133,[[298,1,1,125,126],[307,1,1,126,127],[308,2,2,127,129],[309,2,2,129,131],[310,2,2,131,133]]],[11,6,6,133,139,[[316,1,1,133,134],[319,1,1,134,135],[322,1,1,135,136],[330,2,2,136,138],[331,1,1,138,139]]],[12,1,1,139,140,[[352,1,1,139,140]]],[13,5,5,140,145,[[371,1,1,140,141],[381,1,1,141,142],[386,1,1,142,143],[396,1,1,143,144],[398,1,1,144,145]]],[14,2,2,145,147,[[405,1,1,145,146],[412,1,1,146,147]]],[15,1,1,147,148,[[421,1,1,147,148]]],[17,15,13,148,161,[[437,1,1,148,149],[438,1,1,149,150],[439,2,2,150,152],[444,1,1,152,153],[465,1,1,153,154],[468,1,1,154,155],[469,1,1,155,156],[472,5,3,156,159],[473,1,1,159,160],[475,1,1,160,161]]],[18,50,45,161,206,[[480,1,1,161,162],[482,2,2,162,164],[483,1,1,164,165],[495,2,2,165,167],[496,1,1,167,168],[503,1,1,168,169],[504,1,1,169,170],[505,2,2,170,172],[506,7,6,172,178],[508,1,1,178,179],[519,1,1,179,180],[523,1,1,180,181],[524,1,1,181,182],[532,1,1,182,183],[535,1,1,183,184],[541,1,1,184,185],[543,2,2,185,187],[545,2,1,187,188],[551,1,1,188,189],[554,3,2,189,191],[558,1,1,191,192],[563,1,1,192,193],[570,1,1,193,194],[572,1,1,194,195],[575,1,1,195,196],[580,1,1,196,197],[581,1,1,197,198],[583,1,1,198,199],[593,1,1,199,200],[595,1,1,200,201],[596,1,1,201,202],[607,2,1,202,203],[617,1,1,203,204],[618,1,1,204,205],[619,2,1,205,206]]],[19,6,6,206,212,[[628,1,1,206,207],[629,1,1,207,208],[632,1,1,208,209],[635,2,2,209,211],[654,1,1,211,212]]],[20,4,4,212,216,[[663,2,2,212,214],[668,1,1,214,215],[670,1,1,215,216]]],[21,6,5,216,221,[[672,4,3,216,219],[675,1,1,219,220],[678,1,1,220,221]]],[22,28,24,221,245,[[684,1,1,221,222],[688,1,1,222,223],[691,1,1,223,224],[693,1,1,224,225],[702,1,1,225,226],[706,1,1,226,227],[707,1,1,227,228],[708,2,2,228,230],[710,1,1,230,231],[714,1,1,231,232],[715,1,1,232,233],[718,3,3,233,236],[720,1,1,236,237],[726,1,1,237,238],[728,1,1,238,239],[729,1,1,239,240],[730,2,1,240,241],[736,2,2,241,243],[743,2,1,243,244],[744,3,1,244,245]]],[23,64,48,245,293,[[747,3,3,245,248],[748,4,3,248,251],[750,1,1,251,252],[751,6,3,252,255],[752,1,1,255,256],[753,3,3,256,259],[754,1,1,259,260],[755,2,2,260,262],[760,4,1,262,263],[762,2,2,263,265],[766,2,2,265,267],[769,6,3,267,270],[770,1,1,270,271],[774,2,2,271,273],[775,2,2,273,275],[776,1,1,275,276],[777,5,1,276,277],[779,1,1,277,278],[782,1,1,278,279],[784,1,1,279,280],[786,4,3,280,283],[787,2,2,283,285],[788,1,1,285,286],[790,1,1,286,287],[792,2,2,287,289],[794,2,2,289,291],[795,3,2,291,293]]],[24,1,1,293,294,[[799,1,1,293,294]]],[25,15,14,294,308,[[802,4,3,294,297],[804,1,1,297,298],[809,1,1,298,299],[810,1,1,299,300],[811,1,1,300,301],[812,1,1,301,302],[820,1,1,302,303],[822,1,1,303,304],[824,1,1,304,305],[828,1,1,305,306],[834,1,1,306,307],[844,1,1,307,308]]],[26,8,6,308,314,[[857,1,1,308,309],[858,3,3,309,312],[859,4,2,312,314]]],[28,2,2,314,316,[[877,1,1,314,315],[878,1,1,315,316]]],[29,1,1,316,317,[[879,1,1,316,317]]],[31,2,2,317,319,[[890,2,2,317,319]]],[32,2,2,319,321,[[898,2,2,319,321]]],[33,2,2,321,323,[[901,2,2,321,323]]],[34,2,2,323,325,[[905,2,2,323,325]]],[35,3,3,325,328,[[906,1,1,325,326],[907,1,1,326,327],[908,1,1,327,328]]],[36,1,1,328,329,[[909,1,1,328,329]]],[37,3,2,329,331,[[916,1,1,329,330],[921,2,1,330,331]]]],[63,65,72,89,102,383,525,529,530,565,697,735,740,749,765,770,806,836,1163,1164,1167,1597,1602,1609,1610,1634,1946,2018,2023,2042,2045,2165,2166,2180,2456,2831,3939,4109,4130,4327,4343,4926,4937,5016,5034,5037,5040,5075,5076,5077,5078,5079,5081,5157,5180,5276,5290,5324,5400,5465,5467,5573,5580,5583,5595,5599,5612,5613,5626,5656,5673,5710,5716,5718,5728,5817,5940,5959,6078,6428,6500,6547,6549,6565,6664,6761,6893,6996,7018,7067,7136,7141,7225,7265,7376,7378,7388,7391,7461,7474,7475,7561,7579,7580,7582,7584,7712,7855,7896,7922,7954,7960,7963,7964,7965,7982,8113,8304,8331,8353,8412,8515,8546,8609,8616,9040,9339,9367,9370,9399,9400,9433,9444,9634,9717,9799,10036,10052,10083,10807,11281,11504,11606,11854,11893,12109,12264,12515,12903,12922,12940,12946,13067,13588,13658,13699,13771,13773,13774,13827,13873,13961,13975,13976,13993,14124,14131,14171,14280,14292,14301,14305,14311,14312,14313,14315,14316,14317,14353,14559,14620,14626,14749,14784,14851,14881,14892,14933,15071,15094,15111,15228,15290,15429,15461,15495,15569,15578,15676,15849,15884,16047,16142,16269,16277,16287,16420,16436,16530,16603,16606,17183,17400,17403,17513,17527,17562,17566,17568,17600,17653,17777,17880,17908,17964,18109,18187,18197,18236,18247,18268,18343,18375,18423,18426,18429,18482,18634,18672,18676,18704,18787,18790,18916,18928,19015,19023,19027,19042,19043,19058,19112,19142,19147,19153,19172,19185,19188,19194,19214,19230,19233,19345,19394,19403,19474,19475,19544,19564,19570,19585,19672,19686,19706,19707,19754,19786,19831,19915,19944,19981,19988,19996,20001,20004,20033,20067,20083,20114,20194,20208,20228,20267,20410,20488,20489,20492,20514,20622,20623,20638,20668,20890,20966,21049,21151,21312,21574,21977,21998,21999,22002,22021,22024,22322,22359,22366,22550,22557,22649,22657,22706,22712,22778,22784,22801,22819,22822,22852,22962,23031]]],["voices",[2,2,[[6,1,1,0,1,[[231,1,1,0,1]]],[8,1,1,1,2,[[246,1,1,1,2]]]],[7104,7449]]]]},{"k":"H6964","v":[["Kolaiah",[2,2,[[15,1,1,0,1,[[423,1,1,0,1]]],[23,1,1,1,2,[[773,1,1,1,2]]]],[12595,19656]]]]},{"k":"H6965","v":[["*",[628,596,[[0,51,50,0,50,[[3,1,1,0,1],[5,1,1,1,2],[8,3,3,2,5],[12,1,1,5,6],[16,3,3,6,9],[17,1,1,9,10],[18,6,5,10,15],[20,2,2,15,17],[21,2,2,17,19],[22,4,4,19,23],[23,3,3,23,26],[24,1,1,26,27],[25,1,1,27,28],[26,3,3,28,31],[27,1,1,31,32],[30,4,4,32,36],[31,1,1,36,37],[34,2,2,37,39],[36,2,2,39,41],[37,2,2,41,43],[40,1,1,43,44],[42,3,3,44,47],[43,1,1,47,48],[45,1,1,48,49],[48,1,1,49,50]]],[1,20,19,50,69,[[50,1,1,50,51],[51,1,1,51,52],[55,1,1,52,53],[59,1,1,53,54],[61,2,2,54,56],[64,1,1,56,57],[70,1,1,57,58],[73,1,1,58,59],[75,1,1,59,60],[81,3,3,60,63],[82,2,2,63,65],[89,5,4,65,69]]],[2,7,7,69,76,[[108,1,1,69,70],[114,1,1,70,71],[115,2,2,71,73],[116,3,3,73,76]]],[3,32,28,76,104,[[117,1,1,76,77],[123,1,1,77,78],[125,1,1,78,79],[126,2,2,79,81],[127,1,1,81,82],[132,2,2,82,84],[138,4,4,84,88],[139,3,3,88,91],[140,3,3,91,94],[141,1,1,94,95],[146,12,8,95,103],[148,1,1,103,104]]],[4,35,32,104,136,[[154,2,2,104,106],[158,1,1,106,107],[160,1,1,107,108],[161,2,2,108,110],[162,1,1,110,111],[163,1,1,111,112],[165,1,1,112,113],[168,1,1,113,114],[169,1,1,114,115],[170,2,2,115,117],[171,4,3,117,120],[174,3,2,120,122],[177,2,2,122,124],[179,3,3,124,127],[180,3,3,127,130],[181,2,2,130,132],[183,1,1,132,133],[184,1,1,133,134],[185,2,1,134,135],[186,1,1,135,136]]],[5,21,20,136,156,[[187,1,1,136,137],[188,1,1,137,138],[189,1,1,138,139],[190,2,2,139,141],[191,1,1,141,142],[192,1,1,142,143],[193,5,4,143,147],[194,5,5,147,152],[204,2,2,152,154],[210,2,2,154,156]]],[6,42,38,156,194,[[212,3,3,156,159],[213,3,3,159,162],[214,2,2,162,164],[215,3,2,164,166],[217,4,3,166,169],[218,3,2,169,171],[219,5,5,171,176],[220,2,2,176,178],[223,1,1,178,179],[226,1,1,179,180],[228,2,2,180,182],[229,8,7,182,189],[230,5,5,189,194]]],[7,6,6,194,200,[[232,1,1,194,195],[233,1,1,195,196],[234,1,1,196,197],[235,3,3,197,200]]],[8,47,45,200,245,[[236,2,2,200,202],[237,2,2,202,204],[238,3,3,204,207],[239,1,1,207,208],[244,3,2,208,210],[248,2,2,210,212],[250,2,2,212,214],[251,2,2,214,216],[252,3,3,216,219],[253,1,1,219,220],[255,4,4,220,224],[256,1,1,224,225],[257,2,2,225,227],[258,4,4,227,231],[259,5,4,231,235],[260,4,4,235,239],[261,2,2,239,241],[262,1,1,241,242],[263,2,2,242,244],[266,1,1,244,245]]],[9,37,35,245,280,[[268,3,2,245,247],[269,2,2,247,249],[272,1,1,249,250],[273,2,2,250,252],[277,1,1,252,253],[278,5,4,253,257],[279,3,3,257,260],[280,3,3,260,263],[281,2,2,263,265],[283,4,4,265,269],[284,2,2,269,271],[285,2,2,271,273],[288,3,3,273,276],[289,2,2,276,278],[290,2,2,278,280]]],[10,40,36,280,316,[[291,2,2,280,282],[292,3,3,282,285],[293,3,3,285,288],[296,1,1,288,289],[297,3,1,289,290],[298,3,2,290,292],[299,1,1,292,293],[301,4,4,293,297],[302,1,1,297,298],[304,6,5,298,303],[305,1,1,303,304],[306,1,1,304,305],[307,2,2,305,307],[309,5,5,307,312],[311,4,4,312,316]]],[11,23,23,316,339,[[313,2,2,316,318],[315,1,1,318,319],[316,1,1,319,320],[318,1,1,320,321],[319,3,3,321,324],[320,3,3,324,327],[321,2,2,327,329],[322,1,1,329,330],[323,1,1,330,331],[324,1,1,331,332],[325,1,1,332,333],[328,1,1,333,334],[333,1,1,334,335],[335,3,3,335,338],[337,1,1,338,339]]],[12,6,6,339,345,[[347,1,1,339,340],[354,1,1,340,341],[358,1,1,341,342],[359,2,2,342,344],[365,1,1,344,345]]],[13,18,17,345,362,[[369,1,1,345,346],[372,3,2,346,348],[373,1,1,348,349],[376,1,1,349,350],[379,2,2,350,352],[386,1,1,352,353],[387,2,2,353,355],[388,1,1,355,356],[394,2,2,356,358],[395,1,1,358,359],[396,2,2,359,361],[399,1,1,361,362]]],[14,7,7,362,369,[[403,1,1,362,363],[405,1,1,363,364],[411,1,1,364,365],[412,4,4,365,369]]],[15,10,10,369,379,[[414,3,3,369,372],[415,1,1,372,373],[416,1,1,373,374],[417,1,1,374,375],[421,4,4,375,379]]],[16,10,8,379,387,[[430,1,1,379,380],[432,1,1,380,381],[433,1,1,381,382],[434,7,5,382,387]]],[17,22,22,387,409,[[436,1,1,387,388],[439,1,1,388,389],[442,1,1,389,390],[443,1,1,390,391],[446,1,1,391,392],[449,1,1,392,393],[450,1,1,393,394],[451,2,2,394,396],[454,2,2,396,398],[455,1,1,398,399],[457,1,1,399,400],[459,2,2,400,402],[460,1,1,402,403],[462,1,1,403,404],[464,1,1,404,405],[465,2,2,405,407],[466,1,1,407,408],[476,1,1,408,409]]],[18,51,51,409,460,[[478,1,1,409,410],[480,2,2,410,412],[484,1,1,412,413],[486,1,1,413,414],[487,1,1,414,415],[489,1,1,415,416],[494,2,2,416,418],[495,3,3,418,421],[497,1,1,421,422],[501,1,1,422,423],[504,2,2,423,425],[512,2,2,425,427],[513,1,1,427,428],[517,1,1,428,429],[518,2,2,429,431],[521,2,2,431,433],[531,1,1,433,434],[536,1,1,434,435],[545,1,1,435,436],[551,2,2,436,438],[553,1,1,438,439],[555,2,2,439,441],[559,1,1,441,442],[563,1,1,442,443],[565,1,1,443,444],[566,1,1,444,445],[569,1,1,445,446],[571,1,1,446,447],[579,1,1,447,448],[584,1,1,448,449],[586,1,1,449,450],[590,1,1,450,451],[596,4,4,451,455],[601,1,1,455,456],[604,1,1,456,457],[609,1,1,457,458],[616,1,1,458,459],[617,1,1,459,460]]],[19,10,10,460,470,[[633,1,1,460,461],[642,1,1,461,462],[646,1,1,462,463],[651,2,2,463,465],[655,2,2,465,467],[657,1,1,467,468],[658,2,2,468,470]]],[20,3,2,470,472,[[662,2,1,470,471],[670,1,1,471,472]]],[21,4,4,472,476,[[672,2,2,472,474],[673,1,1,474,475],[675,1,1,475,476]]],[22,36,35,476,511,[[680,2,2,476,478],[685,1,1,478,479],[686,1,1,479,480],[692,4,4,480,484],[699,1,1,484,485],[701,2,2,485,487],[702,1,1,487,488],[704,2,2,488,490],[705,1,1,490,491],[706,2,2,491,493],[707,1,1,493,494],[709,1,1,494,495],[710,2,2,495,497],[711,1,1,497,498],[718,1,1,498,499],[721,1,1,499,500],[722,2,1,500,501],[724,1,1,501,502],[727,3,3,502,505],[729,1,1,505,506],[730,1,1,506,507],[732,1,1,507,508],[736,1,1,508,509],[738,1,1,509,510],[739,1,1,510,511]]],[23,43,41,511,552,[[745,1,1,511,512],[746,2,2,512,514],[750,3,3,514,517],[752,1,1,517,518],[754,1,1,518,519],[755,1,1,519,520],[757,2,2,520,522],[762,1,1,522,523],[767,3,3,523,526],[769,1,1,526,527],[770,1,1,527,528],[772,1,1,528,529],[773,2,2,529,531],[774,2,2,531,533],[775,1,1,533,534],[777,1,1,534,535],[778,1,1,535,536],[779,2,2,536,538],[781,1,1,538,539],[785,1,1,539,540],[788,5,3,540,543],[790,1,1,543,544],[793,3,3,544,547],[794,1,1,547,548],[795,4,4,548,552]]],[24,3,3,552,555,[[797,1,1,552,553],[798,1,1,553,554],[799,1,1,554,555]]],[25,9,9,555,564,[[804,2,2,555,557],[808,1,1,557,558],[814,1,1,558,559],[817,2,2,559,561],[827,1,1,561,562],[835,2,2,562,564]]],[26,2,2,564,566,[[857,1,1,564,565],[858,1,1,565,566]]],[27,2,2,566,568,[[867,1,1,566,567],[871,1,1,567,568]]],[29,10,8,568,576,[[880,1,1,568,569],[883,2,1,569,570],[884,1,1,570,571],[885,3,3,571,574],[886,1,1,574,575],[887,2,1,575,576]]],[30,2,1,576,577,[[888,2,1,576,577]]],[31,6,6,577,583,[[889,3,3,577,580],[891,3,3,580,583]]],[32,7,7,583,590,[[894,2,2,583,585],[896,1,1,585,586],[897,1,1,586,587],[898,1,1,587,588],[899,2,2,588,590]]],[33,2,2,590,592,[[900,2,2,590,592]]],[34,2,2,592,594,[[903,1,1,592,593],[904,1,1,593,594]]],[35,1,1,594,595,[[908,1,1,594,595]]],[37,1,1,595,596,[[921,1,1,595,596]]]],[87,155,214,216,222,335,404,416,418,440,458,471,472,490,492,531,545,550,566,574,578,588,591,601,645,652,692,695,746,758,770,775,886,890,894,908,950,1012,1014,1090,1118,1127,1138,1225,1298,1303,1305,1328,1391,1482,1540,1571,1659,1800,1846,1847,1927,2096,2190,2265,2439,2444,2463,2481,2483,2709,2724,2725,2740,3313,3499,3525,3533,3584,3587,3589,3655,3851,3980,4009,4023,4056,4196,4219,4388,4389,4395,4396,4434,4435,4440,4455,4463,4471,4478,4652,4653,4655,4657,4659,4660,4661,4662,4732,4951,4962,5093,5155,5162,5169,5197,5227,5273,5364,5372,5399,5402,5417,5421,5422,5474,5496,5553,5554,5587,5589,5611,5618,5620,5647,5692,5701,5744,5796,5821,5849,5853,5880,5909,5919,5930,5941,5975,5986,5988,5989,6002,6003,6005,6009,6021,6031,6297,6301,6485,6502,6555,6561,6563,6577,6583,6588,6608,6613,6630,6635,6703,6709,6713,6739,6740,6772,6786,6788,6789,6797,6812,6814,6895,6952,7002,7023,7027,7029,7031,7033,7034,7051,7052,7059,7062,7072,7073,7087,7133,7164,7186,7195,7197,7200,7221,7235,7248,7275,7282,7284,7288,7312,7394,7417,7499,7500,7571,7573,7607,7608,7653,7666,7670,7703,7755,7764,7771,7772,7782,7795,7800,7814,7823,7826,7834,7843,7846,7847,7859,7862,7890,7902,7903,7907,7910,7932,7965,7967,8021,8063,8064,8091,8102,8159,8192,8205,8261,8297,8303,8306,8307,8332,8346,8348,8363,8379,8387,8398,8403,8450,8470,8471,8472,8509,8510,8518,8519,8641,8642,8651,8654,8663,8703,8710,8766,8767,8774,8789,8810,8828,8836,8837,8908,8955,9005,9039,9056,9122,9126,9131,9148,9166,9220,9222,9230,9232,9235,9253,9315,9326,9327,9390,9392,9394,9395,9408,9458,9466,9467,9469,9536,9548,9600,9633,9689,9712,9714,9719,9728,9729,9748,9758,9762,9805,9830,9870,9892,9970,10122,10168,10189,10190,10248,10671,10874,10952,10980,10983,11145,11246,11292,11323,11342,11410,11457,11459,11606,11628,11633,11654,11776,11779,11803,11841,11854,11911,12021,12099,12242,12256,12257,12258,12262,12319,12325,12327,12328,12373,12395,12514,12515,12516,12519,12788,12814,12821,12855,12861,12863,12865,12866,12889,12934,13012,13044,13125,13193,13232,13246,13250,13315,13322,13353,13417,13450,13458,13464,13488,13540,13569,13585,13602,13914,13944,13958,13964,14001,14040,14053,14071,14110,14116,14156,14157,14166,14190,14244,14288,14297,14412,14421,14450,14527,14550,14552,14576,14597,14728,14791,14901,15070,15071,15090,15118,15119,15241,15298,15318,15369,15422,15447,15534,15728,15783,15820,15926,15936,15960,16004,16104,16123,16159,16241,16273,16549,16829,16946,17095,17101,17208,17224,17255,17299,17312,17391,17527,17564,17567,17573,17603,17704,17706,17789,17817,17937,17949,17950,17952,18040,18089,18090,18115,18144,18149,18160,18182,18185,18196,18252,18267,18268,18289,18428,18522,18559,18596,18642,18643,18644,18690,18698,18740,18798,18822,18847,18963,18992,18993,19093,19094,19106,19157,19221,19231,19270,19272,19386,19488,19489,19504,19561,19589,19624,19645,19650,19676,19691,19697,19789,19819,19837,19839,19884,19959,20035,20038,20039,20061,20141,20155,20158,20198,20213,20224,20241,20276,20324,20351,20416,20524,20525,20588,20714,20822,20824,21108,21336,21342,21988,22000,22169,22239,22390,22425,22464,22466,22469,22473,22495,22506,22511,22533,22534,22537,22560,22561,22564,22603,22605,22633,22638,22649,22670,22672,22690,22693,22737,22755,22828,23044]]],["+",[70,63,[[0,6,6,0,6,[[5,1,1,0,1],[8,2,2,1,3],[16,2,2,3,5],[25,1,1,5,6]]],[1,6,5,6,11,[[55,1,1,6,7],[75,1,1,7,8],[89,4,3,8,11]]],[2,1,1,11,12,[[115,1,1,11,12]]],[3,4,4,12,16,[[117,1,1,12,13],[123,1,1,13,14],[126,1,1,14,15],[146,1,1,15,16]]],[4,5,4,16,20,[[160,1,1,16,17],[161,1,1,17,18],[174,2,1,18,19],[179,1,1,19,20]]],[6,4,3,20,23,[[215,1,1,20,21],[217,2,1,21,22],[228,1,1,22,23]]],[8,3,3,23,26,[[236,1,1,23,24],[250,1,1,24,25],[257,1,1,25,26]]],[9,2,2,26,28,[[273,1,1,26,27],[288,1,1,27,28]]],[10,8,7,28,35,[[292,1,1,28,29],[296,1,1,29,30],[297,2,1,30,31],[298,1,1,31,32],[299,1,1,32,33],[302,1,1,33,34],[305,1,1,34,35]]],[11,2,2,35,37,[[335,2,2,35,37]]],[12,1,1,37,38,[[354,1,1,37,38]]],[13,5,5,38,43,[[369,1,1,38,39],[372,1,1,39,40],[373,1,1,40,41],[376,1,1,41,42],[387,1,1,42,43]]],[15,1,1,43,44,[[421,1,1,43,44]]],[16,4,3,44,47,[[430,1,1,44,45],[434,3,2,45,47]]],[18,2,2,47,49,[[494,1,1,47,48],[536,1,1,48,49]]],[20,1,1,49,50,[[662,1,1,49,50]]],[22,1,1,50,51,[[727,1,1,50,51]]],[23,10,8,51,59,[[755,1,1,51,52],[772,1,1,52,53],[773,1,1,53,54],[777,1,1,54,55],[778,1,1,55,56],[779,1,1,56,57],[788,4,2,57,59]]],[25,1,1,59,60,[[817,1,1,59,60]]],[26,1,1,60,61,[[858,1,1,60,61]]],[29,1,1,61,62,[[887,1,1,61,62]]],[34,1,1,62,63,[[903,1,1,62,63]]]],[155,214,216,404,416,695,1659,2265,2709,2725,2740,3533,3655,3851,4009,4662,5155,5162,5474,5589,6630,6713,7023,7235,7573,7795,8192,8651,8774,8908,8955,9005,9056,9166,9253,10168,10189,10874,11246,11292,11342,11410,11633,12519,12788,12863,12865,14110,14791,17391,18642,19231,19624,19645,19789,19819,19839,20035,20039,20824,22000,22506,22737]]],["Arise",[53,53,[[0,5,5,0,5,[[12,1,1,0,1],[18,1,1,1,2],[20,1,1,2,3],[27,1,1,3,4],[34,1,1,4,5]]],[4,2,2,5,7,[[161,1,1,5,6],[162,1,1,6,7]]],[6,3,3,7,10,[[217,2,2,7,9],[228,1,1,9,10]]],[8,2,2,10,12,[[251,1,1,10,11],[258,1,1,11,12]]],[9,3,3,12,15,[[279,1,1,12,13],[281,1,1,13,14],[283,1,1,14,15]]],[10,7,7,15,22,[[304,2,2,15,17],[307,1,1,17,18],[309,2,2,18,20],[311,2,2,20,22]]],[11,2,2,22,24,[[313,1,1,22,23],[320,1,1,23,24]]],[12,1,1,24,25,[[359,1,1,24,25]]],[14,1,1,25,26,[[412,1,1,25,26]]],[18,9,9,26,35,[[480,1,1,26,27],[484,1,1,27,28],[486,1,1,28,29],[487,1,1,29,30],[494,1,1,30,31],[521,1,1,31,32],[551,1,1,32,33],[559,1,1,33,34],[609,1,1,34,35]]],[21,1,1,35,36,[[672,1,1,35,36]]],[22,1,1,36,37,[[738,1,1,36,37]]],[23,8,8,37,45,[[746,1,1,37,38],[750,1,1,38,39],[757,1,1,39,40],[762,1,1,40,41],[775,1,1,41,42],[790,1,1,42,43],[793,2,2,43,45]]],[24,1,1,45,46,[[798,1,1,45,46]]],[25,1,1,46,47,[[804,1,1,46,47]]],[30,1,1,47,48,[[888,1,1,47,48]]],[31,2,2,48,50,[[889,1,1,48,49],[891,1,1,49,50]]],[32,3,3,50,53,[[894,1,1,50,51],[896,1,1,51,52],[898,1,1,52,53]]]],[335,472,531,775,1012,5169,5197,6703,6709,7002,7607,7814,8332,8403,8470,9220,9230,9326,9392,9394,9466,9469,9536,9728,10980,12256,13964,14001,14040,14053,14116,14597,15070,15241,16159,17567,18822,18992,19094,19272,19386,19697,20061,20155,20158,20351,20524,22511,22533,22560,22605,22633,22649]]],["Rise",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6740]]],["Stablish",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15936]]],["Up",[8,8,[[0,2,2,0,2,[[18,1,1,0,1],[43,1,1,1,2]]],[1,1,1,2,3,[[81,1,1,2,3]]],[5,1,1,3,4,[[193,1,1,3,4]]],[6,3,3,4,7,[[214,1,1,4,5],[218,1,1,5,6],[229,1,1,6,7]]],[8,1,1,7,8,[[244,1,1,7,8]]]],[471,1328,2439,5989,6613,6739,7052,7417]]],["abide",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22690]]],["again",[3,3,[[1,1,1,0,1,[[70,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[19,1,1,2,3,[[651,1,1,2,3]]]],[2096,5821,17095]]],["against",[6,6,[[1,1,1,0,1,[[64,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[17,1,1,2,3,[[462,1,1,2,3]]],[18,2,2,3,5,[[521,1,1,3,4],[551,1,1,4,5]]],[24,1,1,5,6,[[799,1,1,5,6]]]],[1927,5821,13488,14576,15071,20416]]],["arise",[50,49,[[0,8,8,0,8,[[26,3,3,0,3],[30,1,1,3,4],[34,1,1,4,5],[40,1,1,5,6],[42,2,2,6,8]]],[4,2,2,8,10,[[165,1,1,8,9],[169,1,1,9,10]]],[5,2,2,10,12,[[187,1,1,10,11],[194,1,1,11,12]]],[6,1,1,12,13,[[215,1,1,12,13]]],[8,1,1,13,14,[[244,1,1,13,14]]],[9,6,5,14,19,[[268,2,1,14,15],[269,1,1,15,16],[283,1,1,16,17],[285,1,1,17,18],[288,1,1,18,19]]],[10,2,2,19,21,[[293,1,1,19,20],[311,1,1,20,21]]],[12,1,1,21,22,[[359,1,1,21,22]]],[13,1,1,22,23,[[372,1,1,22,23]]],[15,1,1,23,24,[[414,1,1,23,24]]],[17,2,2,24,26,[[442,1,1,24,25],[460,1,1,25,26]]],[18,6,6,26,32,[[489,1,1,26,27],[545,1,1,27,28],[555,1,1,28,29],[565,1,1,29,30],[579,1,1,30,31],[586,1,1,31,32]]],[19,1,1,32,33,[[633,1,1,32,33]]],[22,6,6,33,39,[[699,1,1,33,34],[701,1,1,34,35],[704,1,1,35,36],[709,1,1,36,37],[727,1,1,37,38],[730,1,1,38,39]]],[23,5,5,39,44,[[745,1,1,39,40],[746,1,1,40,41],[750,1,1,41,42],[752,1,1,42,43],[757,1,1,43,44]]],[27,1,1,44,45,[[871,1,1,44,45]]],[29,2,2,45,47,[[885,2,2,45,47]]],[31,1,1,47,48,[[889,1,1,47,48]]],[32,1,1,48,49,[[899,1,1,48,49]]]],[746,758,770,886,1014,1225,1298,1303,5273,5372,5853,6003,6635,7394,8063,8102,8450,8518,8641,8828,9458,10983,11323,12327,13012,13464,14071,14901,15119,15318,15534,15783,16549,18040,18089,18149,18252,18643,18698,18963,18993,19093,19157,19270,22239,22466,22469,22537,22672]]],["ariseth",[2,2,[[22,2,2,0,2,[[680,2,2,0,2]]]],[17704,17706]]],["arising",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12814]]],["arose",[104,103,[[0,7,6,0,6,[[18,3,2,0,2],[23,2,2,2,4],[36,1,1,4,5],[37,1,1,5,6]]],[4,1,1,6,7,[[186,1,1,6,7]]],[5,4,4,7,11,[[194,2,2,7,9],[204,1,1,9,10],[210,1,1,10,11]]],[6,12,12,11,23,[[212,1,1,11,12],[213,1,1,12,13],[214,1,1,13,14],[215,1,1,14,15],[218,1,1,15,16],[220,2,2,16,18],[223,1,1,18,19],[226,1,1,19,20],[229,1,1,20,21],[230,2,2,21,23]]],[7,1,1,23,24,[[232,1,1,23,24]]],[8,26,26,24,50,[[238,2,2,24,26],[244,1,1,26,27],[248,1,1,27,28],[252,3,3,28,31],[253,1,1,31,32],[255,4,4,32,36],[256,1,1,36,37],[258,3,3,37,40],[259,2,2,40,42],[260,3,3,42,45],[261,2,2,45,47],[262,1,1,47,48],[263,1,1,48,49],[266,1,1,49,50]]],[9,14,14,50,64,[[268,1,1,50,51],[272,1,1,51,52],[277,1,1,52,53],[278,2,2,53,55],[279,2,2,55,57],[280,2,2,57,59],[281,1,1,59,60],[283,2,2,60,62],[285,1,1,62,63],[289,1,1,63,64]]],[10,12,12,64,76,[[291,1,1,64,65],[292,1,1,65,66],[293,1,1,66,67],[298,1,1,67,68],[301,2,2,68,70],[304,2,2,70,72],[307,1,1,72,73],[309,3,3,73,76]]],[11,11,11,76,87,[[313,1,1,76,77],[316,1,1,77,78],[319,2,2,78,80],[320,1,1,80,81],[321,1,1,81,82],[322,1,1,82,83],[323,1,1,83,84],[324,1,1,84,85],[335,1,1,85,86],[337,1,1,86,87]]],[12,1,1,87,88,[[347,1,1,87,88]]],[13,4,4,88,92,[[388,1,1,88,89],[395,1,1,89,90],[396,2,2,90,92]]],[14,1,1,92,93,[[412,1,1,92,93]]],[15,1,1,93,94,[[414,1,1,93,94]]],[16,1,1,94,95,[[433,1,1,94,95]]],[17,3,3,95,98,[[436,1,1,95,96],[454,1,1,96,97],[464,1,1,97,98]]],[18,1,1,98,99,[[553,1,1,98,99]]],[23,1,1,99,100,[[785,1,1,99,100]]],[25,1,1,100,101,[[804,1,1,100,101]]],[31,2,2,101,103,[[891,2,2,101,103]]]],[490,492,601,652,1090,1138,5849,6005,6021,6301,6485,6555,6588,6608,6630,6740,6812,6814,6895,6952,7027,7062,7072,7133,7282,7284,7417,7500,7653,7666,7670,7703,7755,7764,7771,7772,7782,7823,7826,7834,7843,7847,7862,7902,7903,7907,7910,7932,7965,8021,8064,8159,8261,8303,8306,8346,8348,8379,8387,8398,8471,8472,8519,8663,8767,8810,8836,9039,9126,9148,9222,9235,9327,9390,9395,9408,9548,9633,9714,9719,9729,9762,9805,9830,9870,10190,10248,10671,11654,11803,11841,11854,12257,12319,12821,12889,13315,13540,15090,19959,20525,22561,22564]]],["assured",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3589]]],["clearer",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13125]]],["confirm",[2,2,[[7,1,1,0,1,[[235,1,1,0,1]]],[25,1,1,1,2,[[814,1,1,1,2]]]],[7197,20714]]],["confirmed",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12866]]],["confirmeth",[3,3,[[3,1,1,0,1,[[146,1,1,0,1]]],[4,1,1,1,2,[[179,1,1,1,2]]],[22,1,1,2,3,[[722,1,1,2,3]]]],[4662,5611,18559]]],["continue",[2,2,[[8,1,1,0,1,[[248,1,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]]],[7499,13232]]],["decreed",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12865]]],["dim",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7312]]],["endure",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13044]]],["enemies",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2463]]],["establish",[7,7,[[0,1,1,0,1,[[16,1,1,0,1]]],[3,1,1,1,2,[[146,1,1,1,2]]],[4,2,2,2,4,[[180,1,1,2,3],[181,1,1,3,4]]],[9,1,1,4,5,[[273,1,1,4,5]]],[22,1,1,5,6,[[727,1,1,5,6]]],[25,1,1,6,7,[[817,1,1,6,7]]]],[418,4661,5620,5692,8205,18644,20822]]],["established",[8,8,[[0,1,1,0,1,[[8,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[4,1,1,2,3,[[171,1,1,2,3]]],[8,1,1,3,4,[[259,1,1,3,4]]],[17,1,1,4,5,[[457,1,1,4,5]]],[18,1,1,5,6,[[555,1,1,5,6]]],[19,2,2,6,8,[[642,1,1,6,7],[657,1,1,7,8]]]],[222,3499,5421,7859,13417,15118,16829,17255]]],["good",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4435]]],["hold",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13914]]],["maketh",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15728]]],["ordained",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12861]]],["perform",[2,2,[[8,1,1,0,1,[[238,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[7288,16004]]],["performed",[5,5,[[8,1,1,0,1,[[250,1,1,0,1]]],[23,4,4,1,5,[[767,1,1,1,2],[774,1,1,2,3],[779,1,1,3,4],[795,1,1,4,5]]]],[7571,19504,19691,19837,20241]]],["performeth",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12395]]],["pitch",[1,1,[[5,1,1,0,1,[[190,1,1,0,1]]]],[5930]]],["raise",[5,5,[[5,1,1,0,1,[[194,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]],[23,1,1,2,3,[[767,1,1,2,3]]],[32,1,1,3,4,[[897,1,1,3,4]]],[37,1,1,4,5,[[921,1,1,4,5]]]],[6031,18196,19489,22638,23044]]],["raised",[1,1,[[5,1,1,0,1,[[193,1,1,0,1]]]],[6002]]],["rear",[1,1,[[9,1,1,0,1,[[290,1,1,0,1]]]],[8710]]],["remain",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5880]]],["rise",[26,26,[[3,1,1,0,1,[[140,1,1,0,1]]],[5,1,1,1,2,[[204,1,1,1,2]]],[8,2,2,2,4,[[257,1,1,2,3],[259,1,1,3,4]]],[9,2,2,4,6,[[278,1,1,4,5],[284,1,1,5,6]]],[17,1,1,6,7,[[465,1,1,6,7]]],[18,5,5,7,12,[[495,1,1,7,8],[504,1,1,8,9],[513,1,1,9,10],[596,1,1,10,11],[617,1,1,11,12]]],[19,3,3,12,15,[[651,1,1,12,13],[655,2,2,13,15]]],[21,1,1,15,16,[[673,1,1,15,16]]],[22,6,6,16,22,[[692,1,1,16,17],[702,1,1,17,18],[704,1,1,18,19],[711,1,1,19,20],[721,1,1,20,21],[732,1,1,21,22]]],[23,2,2,22,24,[[769,1,1,22,23],[795,1,1,23,24]]],[29,2,2,24,26,[[883,1,1,24,25],[885,1,1,25,26]]]],[4463,6297,7800,7846,8307,8510,13569,14156,14288,14450,15960,16273,17101,17208,17224,17573,17949,18115,18144,18289,18522,18740,19561,20276,22425,22473]]],["risen",[5,5,[[8,1,1,0,1,[[260,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]],[11,1,1,2,3,[[318,1,1,2,3]]],[18,2,2,3,5,[[497,1,1,3,4],[563,1,1,4,5]]]],[7890,8363,9689,14190,15298]]],["riseth",[3,3,[[4,1,1,0,1,[[174,1,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[19,1,1,2,3,[[658,1,1,2,3]]]],[5496,13193,17299]]],["rising",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13450]]],["rose",[4,4,[[1,1,1,0,1,[[59,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[10,1,1,2,3,[[293,1,1,2,3]]],[11,1,1,3,4,[[320,1,1,3,4]]]],[1800,7059,8837,9748]]],["set",[4,4,[[4,1,1,0,1,[[180,1,1,0,1]]],[10,1,1,1,2,[[304,1,1,1,2]]],[18,1,1,2,3,[[517,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]]],[5647,9222,14527,19106]]],["stablish",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12855]]],["stand",[26,23,[[2,2,2,0,2,[[116,2,2,0,2]]],[3,9,6,2,8,[[146,9,6,2,8]]],[5,2,2,8,10,[[193,2,2,8,10]]],[17,1,1,10,11,[[454,1,1,10,11]]],[18,3,3,11,14,[[478,1,1,11,12],[501,1,1,12,13],[566,1,1,13,14]]],[19,1,1,14,15,[[646,1,1,14,15]]],[22,7,7,15,22,[[685,1,1,15,16],[686,1,1,16,17],[692,1,1,17,18],[706,1,1,18,19],[710,1,1,19,20],[718,1,1,20,21],[724,1,1,21,22]]],[23,1,1,22,23,[[788,1,1,22,23]]]],[3584,3587,4652,4653,4655,4657,4659,4660,5988,5989,13322,13944,14244,15369,16946,17789,17817,17952,18182,18267,18428,18596,20038]]],["strengthen",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15926]]],["succeed",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5553]]],["sure",[2,2,[[0,2,2,0,2,[[22,2,2,0,2]]]],[588,591]]],["up",[202,202,[[0,19,19,0,19,[[3,1,1,0,1],[17,1,1,1,2],[18,1,1,2,3],[20,1,1,3,4],[21,2,2,4,6],[22,2,2,6,8],[23,1,1,8,9],[24,1,1,9,10],[30,3,3,10,13],[31,1,1,13,14],[36,1,1,14,15],[37,1,1,15,16],[42,1,1,16,17],[45,1,1,17,18],[48,1,1,18,19]]],[1,9,9,19,28,[[50,1,1,19,20],[51,1,1,20,21],[61,2,2,21,23],[73,1,1,23,24],[81,1,1,24,25],[82,2,2,25,27],[89,1,1,27,28]]],[2,2,2,28,30,[[108,1,1,28,29],[115,1,1,29,30]]],[3,15,15,30,45,[[125,1,1,30,31],[126,1,1,31,32],[127,1,1,32,33],[132,2,2,33,35],[138,4,4,35,39],[139,2,2,39,41],[140,2,2,41,43],[141,1,1,43,44],[148,1,1,44,45]]],[4,16,16,45,61,[[154,2,2,45,47],[158,1,1,47,48],[163,1,1,48,49],[168,1,1,49,50],[170,2,2,50,52],[171,3,3,52,55],[177,1,1,55,56],[179,1,1,56,57],[180,1,1,57,58],[181,1,1,58,59],[183,1,1,59,60],[184,1,1,60,61]]],[5,7,7,61,68,[[189,1,1,61,62],[190,1,1,62,63],[191,1,1,63,64],[192,1,1,64,65],[193,1,1,65,66],[194,1,1,66,67],[210,1,1,67,68]]],[6,17,17,68,85,[[212,2,2,68,70],[213,2,2,70,72],[219,5,5,72,77],[229,6,6,77,83],[230,2,2,83,85]]],[7,4,4,85,89,[[233,1,1,85,86],[234,1,1,86,87],[235,2,2,87,89]]],[8,6,6,89,95,[[236,1,1,89,90],[237,2,2,90,92],[251,1,1,92,93],[259,1,1,93,94],[263,1,1,94,95]]],[9,7,7,95,102,[[269,1,1,95,96],[278,2,2,96,98],[284,1,1,98,99],[288,1,1,99,100],[289,1,1,100,101],[290,1,1,101,102]]],[10,9,9,102,111,[[291,1,1,102,103],[292,1,1,103,104],[297,1,1,104,105],[298,1,1,105,106],[301,2,2,106,108],[304,1,1,108,109],[306,1,1,109,110],[311,1,1,110,111]]],[11,6,6,111,117,[[315,1,1,111,112],[319,1,1,112,113],[321,1,1,113,114],[325,1,1,114,115],[328,1,1,115,116],[333,1,1,116,117]]],[12,2,2,117,119,[[358,1,1,117,118],[365,1,1,118,119]]],[13,8,8,119,127,[[372,1,1,119,120],[379,2,2,120,122],[386,1,1,122,123],[387,1,1,123,124],[394,2,2,124,126],[399,1,1,126,127]]],[14,5,5,127,132,[[403,1,1,127,128],[405,1,1,128,129],[411,1,1,129,130],[412,2,2,130,132]]],[15,6,6,132,138,[[414,1,1,132,133],[415,1,1,133,134],[416,1,1,134,135],[421,3,3,135,138]]],[17,6,6,138,144,[[451,2,2,138,140],[455,1,1,140,141],[459,1,1,141,142],[465,1,1,142,143],[466,1,1,143,144]]],[18,14,14,144,158,[[480,1,1,144,145],[495,2,2,145,147],[504,1,1,147,148],[512,2,2,148,150],[518,2,2,150,152],[531,1,1,152,153],[569,1,1,153,154],[571,1,1,154,155],[590,1,1,155,156],[601,1,1,156,157],[604,1,1,157,158]]],[19,1,1,158,159,[[658,1,1,158,159]]],[20,2,2,159,161,[[662,1,1,159,160],[670,1,1,160,161]]],[21,2,2,161,163,[[672,1,1,161,162],[675,1,1,162,163]]],[22,10,10,163,173,[[692,2,2,163,165],[701,1,1,165,166],[705,1,1,166,167],[706,1,1,167,168],[710,1,1,168,169],[722,1,1,169,170],[729,1,1,170,171],[736,1,1,171,172],[739,1,1,172,173]]],[23,10,10,173,183,[[754,1,1,173,174],[767,1,1,174,175],[770,1,1,175,176],[773,1,1,176,177],[774,1,1,177,178],[781,1,1,178,179],[793,1,1,179,180],[794,1,1,180,181],[795,2,2,181,183]]],[24,1,1,183,184,[[797,1,1,183,184]]],[25,4,4,184,188,[[808,1,1,184,185],[827,1,1,185,186],[835,2,2,186,188]]],[26,1,1,188,189,[[857,1,1,188,189]]],[27,1,1,189,190,[[867,1,1,189,190]]],[29,5,5,190,195,[[880,1,1,190,191],[883,1,1,191,192],[884,1,1,192,193],[886,1,1,193,194],[887,1,1,194,195]]],[30,1,1,195,196,[[888,1,1,195,196]]],[31,1,1,196,197,[[889,1,1,196,197]]],[32,2,2,197,199,[[894,1,1,197,198],[899,1,1,198,199]]],[33,1,1,199,200,[[900,1,1,199,200]]],[34,1,1,200,201,[[904,1,1,200,201]]],[35,1,1,201,202,[[908,1,1,201,202]]]],[87,440,458,545,550,566,574,578,645,692,890,894,908,950,1118,1127,1305,1391,1482,1540,1571,1846,1847,2190,2444,2481,2483,2724,3313,3525,3980,4023,4056,4196,4219,4388,4389,4395,4396,4434,4440,4455,4471,4478,4732,4951,4962,5093,5227,5364,5399,5402,5417,5421,5422,5554,5587,5618,5701,5744,5796,5909,5919,5941,5975,5986,6009,6502,6561,6563,6577,6583,6772,6786,6788,6789,6797,7029,7031,7033,7034,7051,7052,7073,7087,7164,7186,7195,7200,7221,7248,7275,7608,7846,7967,8091,8297,8303,8509,8642,8654,8703,8766,8789,8955,9005,9122,9131,9232,9315,9467,9600,9712,9758,9892,9970,10122,10952,11145,11292,11457,11459,11606,11628,11776,11779,11911,12021,12099,12242,12258,12262,12325,12328,12373,12514,12515,12516,13246,13250,13353,13458,13585,13602,13958,14157,14166,14297,14412,14421,14550,14552,14728,15422,15447,15820,16104,16123,17312,17391,17527,17564,17603,17937,17950,18090,18160,18185,18268,18559,18690,18798,18847,19221,19488,19589,19650,19676,19884,20141,20198,20213,20224,20324,20588,21108,21336,21342,21988,22169,22390,22425,22464,22495,22506,22511,22534,22603,22670,22693,22755,22828]]],["upholden",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12934]]],["uprising",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16241]]]]},{"k":"H6966","v":[["*",[35,30,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]],[26,33,28,2,30,[[851,5,4,2,6],[852,11,9,6,15],[853,1,1,15,16],[854,2,2,16,18],[855,6,6,18,24],[856,8,6,24,30]]]],[12136,12169,21779,21789,21797,21802,21808,21809,21810,21812,21814,21819,21821,21825,21831,21854,21885,21895,21906,21908,21912,21913,21920,21924,21937,21938,21943,21949,21950,21957]]],["Arise",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21938]]],["appointeth",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21895]]],["arise",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[856,2,2,1,3]]]],[21797,21950,21957]]],["arose",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21924]]],["by",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21949]]],["establish",[2,2,[[26,2,2,0,2,[[855,2,2,0,2]]]],[21912,21913]]],["establisheth",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21920]]],["made",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21885]]],["rise",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21957]]],["set",[3,3,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,2,2,1,3,[[855,2,2,1,3]]]],[12169,21906,21908]]],["stand",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[856,1,1,1,2]]]],[21802,21937]]],["stood",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[852,1,1,1,2],[856,1,1,2,3]]]],[21789,21810,21943]]],["up",[15,14,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,14,13,1,14,[[851,2,2,1,3],[852,10,9,3,12],[853,1,1,12,13],[856,1,1,13,14]]]],[12136,21779,21802,21808,21809,21810,21812,21814,21819,21821,21825,21831,21854,21938]]]]},{"k":"H6967","v":[["*",[45,43,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,10,10,1,11,[[74,2,2,1,3],[76,2,2,3,5],[79,1,1,5,6],[86,3,3,6,9],[87,2,2,9,11]]],[8,2,2,11,13,[[251,1,1,11,12],[263,1,1,12,13]]],[10,13,12,13,25,[[296,5,5,13,18],[297,8,7,18,25]]],[11,3,2,25,27,[[331,1,1,25,26],[337,2,1,26,27]]],[13,3,3,27,30,[[370,2,2,27,29],[372,1,1,29,30]]],[21,1,1,30,31,[[677,1,1,30,31]]],[22,2,2,31,33,[[688,1,1,31,32],[715,1,1,32,33]]],[23,2,2,33,35,[[796,2,2,33,35]]],[25,8,8,35,43,[[814,1,1,35,36],[818,1,1,36,37],[820,1,1,37,38],[832,4,4,38,42],[841,1,1,42,43]]]],[152,2205,2218,2273,2290,2384,2605,2614,2629,2634,2651,7602,7962,8898,8906,8916,8919,8922,8936,8949,8950,8957,8961,8966,8969,10084,10239,11247,11248,11295,17634,17883,18376,20297,20298,20726,20831,20892,21233,21235,21240,21244,21482]]],["+",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7962]]],["height",[30,28,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,10,10,1,11,[[74,2,2,1,3],[76,2,2,3,5],[79,1,1,5,6],[86,3,3,6,9],[87,2,2,9,11]]],[10,9,8,11,19,[[296,3,3,11,14],[297,6,5,14,19]]],[11,2,1,19,20,[[337,2,1,19,20]]],[13,2,2,20,22,[[370,2,2,20,22]]],[23,2,2,22,24,[[796,2,2,22,24]]],[25,4,4,24,28,[[832,3,3,24,27],[841,1,1,27,28]]]],[152,2205,2218,2273,2290,2384,2605,2614,2629,2634,2651,8898,8916,8922,8936,8950,8957,8961,8966,10239,11247,11248,20297,20298,21235,21240,21244,21482]]],["high",[5,5,[[10,4,4,0,4,[[296,2,2,0,2],[297,2,2,2,4]]],[13,1,1,4,5,[[372,1,1,4,5]]]],[8906,8919,8949,8969,11295]]],["stature",[7,7,[[8,1,1,0,1,[[251,1,1,0,1]]],[21,1,1,1,2,[[677,1,1,1,2]]],[22,1,1,2,3,[[688,1,1,2,3]]],[25,4,4,3,7,[[814,1,1,3,4],[818,1,1,4,5],[820,1,1,5,6],[832,1,1,6,7]]]],[7602,17634,17883,20726,20831,20892,21233]]],["tall",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10084,18376]]]]},{"k":"H6968","v":[["upright",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3537]]]]},{"k":"H6969","v":[["*",[8,6,[[9,2,2,0,2,[[267,1,1,0,1],[269,1,1,1,2]]],[13,1,1,2,3,[[401,1,1,2,3]]],[23,1,1,3,4,[[753,1,1,3,4]]],[25,4,2,4,6,[[828,1,1,4,5],[833,3,1,5,6]]]],[8039,8114,11991,19192,21153,21264]]],["lament",[4,2,[[25,4,2,0,2,[[828,1,1,0,1],[833,3,1,1,2]]]],[21153,21264]]],["lamented",[3,3,[[9,2,2,0,2,[[267,1,1,0,1],[269,1,1,1,2]]],[13,1,1,2,3,[[401,1,1,2,3]]]],[8039,8114,11991]]],["women",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19192]]]]},{"k":"H6970","v":[["Koa",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21030]]]]},{"k":"H6971","v":[["apes",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9101,11385]]]]},{"k":"H6972","v":[["*",[2,2,[[22,2,2,0,2,[[685,1,1,0,1],[696,1,1,1,2]]]],[17788,18003]]],["summer",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18003]]],["vex",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17788]]]]},{"k":"H6973","v":[["*",[8,8,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,1,1,1,2,[[50,1,1,1,2]]],[2,1,1,2,3,[[109,1,1,2,3]]],[3,2,2,3,5,[[137,1,1,3,4],[138,1,1,4,5]]],[10,1,1,5,6,[[301,1,1,5,6]]],[19,1,1,6,7,[[630,1,1,6,7]]],[22,1,1,7,8,[[685,1,1,7,8]]]],[773,1544,3341,4345,4378,9133,16466,17798]]],["abhorred",[2,2,[[2,1,1,0,1,[[109,1,1,0,1]]],[10,1,1,1,2,[[301,1,1,1,2]]]],[3341,9133]]],["abhorrest",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17798]]],["distressed",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4378]]],["grieved",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1544]]],["loatheth",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4345]]],["weary",[2,2,[[0,1,1,0,1,[[26,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]]],[773,16466]]]]},{"k":"H6974","v":[["*",[22,21,[[8,1,1,0,1,[[261,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]],[17,1,1,2,3,[[449,1,1,2,3]]],[18,7,7,3,10,[[480,1,1,3,4],[494,1,1,4,5],[512,1,1,5,6],[521,1,1,6,7],[536,1,1,7,8],[550,1,1,8,9],[616,1,1,9,10]]],[19,2,2,10,12,[[633,1,1,10,11],[650,1,1,11,12]]],[22,3,2,12,14,[[704,1,1,12,13],[707,2,1,13,14]]],[23,3,3,14,17,[[775,1,1,14,15],[795,2,2,15,17]]],[25,1,1,17,18,[[808,1,1,17,18]]],[26,1,1,18,19,[[861,1,1,18,19]]],[28,1,1,19,20,[[876,1,1,19,20]]],[34,1,1,20,21,[[904,1,1,20,21]]]],[7917,9634,13193,13962,14118,14433,14594,14795,15040,16257,16562,17079,18149,18201,19717,20251,20269,20583,22083,22296,22767]]],["+",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15040]]],["Awake",[3,3,[[22,1,1,0,1,[[704,1,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[18149,22296,22767]]],["arise",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14594]]],["awake",[7,7,[[17,1,1,0,1,[[449,1,1,0,1]]],[18,4,4,1,5,[[494,1,1,1,2],[512,1,1,2,3],[536,1,1,3,4],[616,1,1,4,5]]],[19,1,1,5,6,[[650,1,1,5,6]]],[26,1,1,6,7,[[861,1,1,6,7]]]],[13193,14118,14433,14795,16257,17079,22083]]],["awaked",[4,4,[[8,1,1,0,1,[[261,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]],[18,1,1,2,3,[[480,1,1,2,3]]],[23,1,1,3,4,[[775,1,1,3,4]]]],[7917,9634,13962,19717]]],["awakest",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16562]]],["awaketh",[2,1,[[22,2,1,0,1,[[707,2,1,0,1]]]],[18201]]],["wake",[2,2,[[23,2,2,0,2,[[795,2,2,0,2]]]],[20251,20269]]],["watcheth",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20583]]]]},{"k":"H6975","v":[["*",[12,12,[[0,1,1,0,1,[[2,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[6,2,2,2,4,[[218,2,2,2,4]]],[9,1,1,4,5,[[289,1,1,4,5]]],[18,1,1,5,6,[[595,1,1,5,6]]],[22,2,2,6,8,[[710,1,1,6,7],[711,1,1,7,8]]],[23,2,2,8,10,[[748,1,1,8,9],[756,1,1,9,10]]],[25,1,1,10,11,[[829,1,1,10,11]]],[27,1,1,11,12,[[871,1,1,11,12]]]],[73,2119,6726,6735,8659,15881,18272,18291,19030,19262,21181,22233]]],["Thorns",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[73]]],["thorn",[2,2,[[25,1,1,0,1,[[829,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]]],[21181,22233]]],["thorns",[9,9,[[1,1,1,0,1,[[71,1,1,0,1]]],[6,2,2,1,3,[[218,2,2,1,3]]],[9,1,1,3,4,[[289,1,1,3,4]]],[18,1,1,4,5,[[595,1,1,4,5]]],[22,2,2,5,7,[[710,1,1,5,6],[711,1,1,6,7]]],[23,2,2,7,9,[[748,1,1,7,8],[756,1,1,8,9]]]],[2119,6726,6735,8659,15881,18272,18291,19030,19262]]]]},{"k":"H6976","v":[["*",[7,7,[[5,1,1,0,1,[[209,1,1,0,1]]],[12,2,2,1,3,[[341,1,1,1,2],[361,1,1,2,3]]],[14,1,1,3,4,[[404,1,1,3,4]]],[15,3,3,4,7,[[415,2,2,4,6],[419,1,1,6,7]]]],[6473,10393,11025,12088,12331,12348,12483]]],["Coz",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10393]]],["Hakkoz",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11025]]],["Koz",[4,4,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,3,3,1,4,[[415,2,2,1,3],[419,1,1,3,4]]]],[12088,12331,12348,12483]]],["thorns",[1,1,[[5,1,1,0,1,[[209,1,1,0,1]]]],[6473]]]]},{"k":"H6977","v":[["locks",[2,2,[[21,2,2,0,2,[[675,2,2,0,2]]]],[17600,17609]]]]},{"k":"H6978","v":[["out",[2,2,[[22,2,2,0,2,[[696,2,2,0,2]]]],[17999,18004]]]]},{"k":"H6979","v":[["*",[5,4,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,2,2,1,3,[[700,1,1,1,2],[715,1,1,2,3]]],[23,2,1,3,4,[[750,2,1,3,4]]]],[10085,18057,18377,19096]]],["casteth",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19096]]],["digged",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10085,18377]]],["down",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18057]]],["out",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19096]]]]},{"k":"H6980","v":[["*",[2,2,[[22,2,2,0,2,[[737,2,2,0,2]]]],[18805,18806]]],["web",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18805]]],["webs",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18806]]]]},{"k":"H6981","v":[["Kore",[3,3,[[12,2,2,0,2,[[346,1,1,0,1],[363,1,1,1,2]]],[13,1,1,2,3,[[397,1,1,2,3]]]],[10634,11078,11868]]]]},{"k":"H6982","v":[["*",[5,5,[[0,1,1,0,1,[[18,1,1,0,1]]],[11,2,2,1,3,[[318,2,2,1,3]]],[13,1,1,3,4,[[369,1,1,3,4]]],[21,1,1,4,5,[[671,1,1,4,5]]]],[465,9676,9679,11236,17554]]],["beam",[2,2,[[11,2,2,0,2,[[318,2,2,0,2]]]],[9676,9679]]],["beams",[2,2,[[13,1,1,0,1,[[369,1,1,0,1]]],[21,1,1,1,2,[[671,1,1,1,2]]]],[11236,17554]]],["roof",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[465]]]]},{"k":"H6983","v":[["snare",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18214]]]]},{"k":"H6984","v":[["Kushaiah",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10808]]]]},{"k":"H6985","v":[["very",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20809]]]]},{"k":"H6986","v":[["*",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,1,1,1,2,[[568,1,1,1,2]]],[22,1,1,2,3,[[706,1,1,2,3]]]],[5782,15401,18166]]],["+",[1,1,[[18,1,1,0,1,[[568,1,1,0,1]]]],[15401]]],["destroying",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18166]]],["destruction",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5782]]]]},{"k":"H6987","v":[["destruction",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22280]]]]},{"k":"H6988","v":[["incense",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5820]]]]},{"k":"H6989","v":[["Keturah",[4,4,[[0,2,2,0,2,[[24,2,2,0,2]]],[12,2,2,2,4,[[338,2,2,2,4]]]],[659,662,10284,10285]]]]},{"k":"H6990","v":[["off",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13043]]]]},{"k":"H6991","v":[["*",[3,3,[[17,2,2,0,2,[[448,1,1,0,1],[459,1,1,1,2]]],[18,1,1,2,3,[[616,1,1,2,3]]]],[13168,13450,16258]]],["killeth",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13450]]],["slay",[2,2,[[17,1,1,0,1,[[448,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]]],[13168,16258]]]]},{"k":"H6992","v":[["*",[7,6,[[26,7,6,0,6,[[851,3,2,0,2],[852,1,1,2,3],[854,2,2,3,5],[856,1,1,5,6]]]],[21771,21772,21829,21893,21904,21944]]],["+",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21893]]],["slain",[4,3,[[26,4,3,0,3,[[851,2,1,0,1],[854,1,1,1,2],[856,1,1,2,3]]]],[21771,21904,21944]]],["slay",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21772]]],["slew",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21829]]]]},{"k":"H6993","v":[["+",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22519]]]]},{"k":"H6994","v":[["*",[4,4,[[0,1,1,0,1,[[31,1,1,0,1]]],[9,1,1,1,2,[[273,1,1,1,2]]],[12,1,1,2,3,[[354,1,1,2,3]]],[29,1,1,3,4,[[886,1,1,3,4]]]],[938,8199,10880,22486]]],["+",[1,1,[[29,1,1,0,1,[[886,1,1,0,1]]]],[22486]]],["small",[1,1,[[9,1,1,0,1,[[273,1,1,0,1]]]],[8199]]],["thing",[1,1,[[12,1,1,0,1,[[354,1,1,0,1]]]],[10880]]],["worthy",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[938]]]]},{"k":"H6995","v":[["little",[2,2,[[10,1,1,0,1,[[302,1,1,0,1]]],[13,1,1,1,2,[[376,1,1,1,2]]]],[9161,11405]]]]},{"k":"H6996","v":[["*",[101,100,[[0,20,19,0,19,[[0,1,1,0,1],[8,1,1,1,2],[18,1,1,2,3],[26,2,2,3,5],[28,2,2,5,7],[41,5,5,7,12],[42,1,1,12,13],[43,6,5,13,18],[47,1,1,18,19]]],[1,2,2,19,21,[[67,2,2,19,21]]],[3,1,1,21,22,[[138,1,1,21,22]]],[4,3,3,22,25,[[153,1,1,22,23],[177,2,2,23,25]]],[6,4,4,25,29,[[211,1,1,25,26],[213,1,1,26,27],[219,1,1,27,28],[225,1,1,28,29]]],[8,13,13,29,42,[[237,1,1,29,30],[240,1,1,30,31],[244,1,1,31,32],[249,1,1,32,33],[250,1,1,33,34],[251,1,1,34,35],[252,1,1,35,36],[255,2,2,36,38],[257,1,1,38,39],[260,1,1,39,40],[265,2,2,40,42]]],[9,2,2,42,44,[[275,1,1,42,43],[278,1,1,43,44]]],[10,7,7,44,51,[[292,1,1,44,45],[293,1,1,45,46],[298,1,1,46,47],[301,1,1,47,48],[307,1,1,48,49],[308,1,1,49,50],[312,1,1,50,51]]],[11,7,7,51,58,[[314,1,1,51,52],[316,1,1,52,53],[317,2,2,53,55],[330,1,1,55,56],[335,1,1,56,57],[337,1,1,57,58]]],[12,4,4,58,62,[[349,1,1,58,59],[361,1,1,59,60],[362,1,1,60,61],[363,1,1,61,62]]],[13,7,7,62,69,[[381,1,1,62,63],[384,1,1,63,64],[387,1,1,64,65],[388,1,1,65,66],[397,1,1,66,67],[400,1,1,67,68],[402,1,1,68,69]]],[16,2,2,69,71,[[426,2,2,69,71]]],[17,1,1,71,72,[[438,1,1,71,72]]],[18,2,2,72,74,[[581,1,1,72,73],[592,1,1,73,74]]],[19,1,1,74,75,[[657,1,1,74,75]]],[20,1,1,75,76,[[667,1,1,75,76]]],[21,2,2,76,78,[[672,1,1,76,77],[678,1,1,77,78]]],[22,5,5,78,83,[[689,1,1,78,79],[700,1,1,79,80],[714,1,1,80,81],[732,1,1,81,82],[738,1,1,82,83]]],[23,8,8,83,91,[[750,1,1,83,84],[752,1,1,84,85],[760,1,1,85,86],[775,1,1,86,87],[786,2,2,87,89],[788,1,1,89,90],[793,1,1,90,91]]],[25,3,3,91,94,[[817,2,2,91,93],[844,1,1,93,94]]],[29,3,3,94,97,[[884,1,1,94,95],[885,2,2,95,97]]],[30,1,1,97,98,[[888,1,1,97,98]]],[31,1,1,98,99,[[891,1,1,98,99]]],[37,1,1,99,100,[[914,1,1,99,100]]]],[15,229,468,742,769,811,813,1265,1267,1272,1284,1286,1319,1326,1336,1344,1347,1350,1470,2021,2025,4393,4909,5560,5561,6522,6577,6759,6931,7259,7328,7412,7557,7577,7606,7632,7732,7765,7802,7897,7980,7997,8239,8289,8790,8823,9049,9125,9330,9385,9511,9574,9613,9649,9661,10048,10167,10248,10734,11046,11054,11090,11503,11572,11641,11645,11869,11963,12011,12707,12722,12923,15596,15843,17275,17489,17569,17648,17890,18076,18339,18730,18843,19102,19163,19342,19725,19976,19983,20022,20142,20808,20823,21586,22461,22466,22469,22512,22563,22932]]],["+",[13,13,[[0,1,1,0,1,[[18,1,1,0,1]]],[8,3,3,1,4,[[240,1,1,1,2],[244,1,1,2,3],[265,1,1,3,4]]],[11,2,2,4,6,[[335,1,1,4,5],[337,1,1,5,6]]],[23,6,6,6,12,[[750,1,1,6,7],[752,1,1,7,8],[775,1,1,8,9],[786,2,2,9,11],[788,1,1,11,12]]],[25,1,1,12,13,[[844,1,1,12,13]]]],[468,7328,7412,7980,10167,10248,19102,19163,19725,19976,19983,20022,21586]]],["least",[4,4,[[11,1,1,0,1,[[330,1,1,0,1]]],[12,1,1,1,2,[[349,1,1,1,2]]],[22,1,1,2,3,[[714,1,1,2,3]]],[31,1,1,3,4,[[891,1,1,3,4]]]],[10048,10734,18339,22563]]],["less",[3,3,[[3,1,1,0,1,[[138,1,1,0,1]]],[8,2,2,1,3,[[257,1,1,1,2],[260,1,1,2,3]]]],[4393,7802,7897]]],["lesser",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[15]]],["little",[19,19,[[8,3,3,0,3,[[237,1,1,0,1],[250,1,1,1,2],[255,1,1,2,3]]],[9,1,1,3,4,[[278,1,1,3,4]]],[10,5,5,4,9,[[293,1,1,4,5],[298,1,1,5,6],[301,1,1,6,7],[307,1,1,7,8],[308,1,1,8,9]]],[11,4,4,9,13,[[314,1,1,9,10],[316,1,1,10,11],[317,2,2,11,13]]],[19,1,1,13,14,[[657,1,1,13,14]]],[20,1,1,14,15,[[667,1,1,14,15]]],[21,2,2,15,17,[[672,1,1,15,16],[678,1,1,16,17]]],[22,1,1,17,18,[[689,1,1,17,18]]],[29,1,1,18,19,[[884,1,1,18,19]]]],[7259,7577,7765,8289,8823,9049,9125,9330,9385,9574,9613,9649,9661,17275,17489,17569,17648,17890,22461]]],["one",[2,2,[[0,1,1,0,1,[[43,1,1,0,1]]],[22,1,1,1,2,[[738,1,1,1,2]]]],[1344,18843]]],["quantity",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18076]]],["small",[27,27,[[1,2,2,0,2,[[67,2,2,0,2]]],[4,3,3,2,5,[[153,1,1,2,3],[177,2,2,3,5]]],[8,2,2,5,7,[[255,1,1,5,6],[265,1,1,6,7]]],[10,2,2,7,9,[[292,1,1,7,8],[312,1,1,8,9]]],[12,2,2,9,11,[[362,1,1,9,10],[363,1,1,10,11]]],[13,5,5,11,16,[[381,1,1,11,12],[384,1,1,12,13],[397,1,1,13,14],[400,1,1,14,15],[402,1,1,15,16]]],[16,2,2,16,18,[[426,2,2,16,18]]],[17,1,1,18,19,[[438,1,1,18,19]]],[18,2,2,19,21,[[581,1,1,19,20],[592,1,1,20,21]]],[22,1,1,21,22,[[732,1,1,21,22]]],[23,2,2,22,24,[[760,1,1,22,23],[793,1,1,23,24]]],[29,2,2,24,26,[[885,2,2,24,26]]],[30,1,1,26,27,[[888,1,1,26,27]]]],[2021,2025,4909,5560,5561,7732,7997,8790,9511,11054,11090,11503,11572,11869,11963,12011,12707,12722,12923,15596,15843,18730,19342,20142,22466,22469,22512]]],["things",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22932]]],["young",[1,1,[[9,1,1,0,1,[[275,1,1,0,1]]]],[8239]]],["younger",[14,14,[[0,7,7,0,7,[[8,1,1,0,1],[26,2,2,1,3],[28,2,2,3,5],[42,1,1,5,6],[47,1,1,6,7]]],[6,3,3,7,10,[[211,1,1,7,8],[213,1,1,8,9],[225,1,1,9,10]]],[8,1,1,10,11,[[249,1,1,10,11]]],[12,1,1,11,12,[[361,1,1,11,12]]],[25,2,2,12,14,[[817,2,2,12,14]]]],[229,742,769,811,813,1319,1470,6522,6577,6931,7557,11046,20808,20823]]],["youngest",[15,14,[[0,10,9,0,9,[[41,5,5,0,5],[43,5,4,5,9]]],[6,1,1,9,10,[[219,1,1,9,10]]],[8,2,2,10,12,[[251,1,1,10,11],[252,1,1,11,12]]],[13,2,2,12,14,[[387,1,1,12,13],[388,1,1,13,14]]]],[1265,1267,1272,1284,1286,1326,1336,1347,1350,6759,7606,7632,11641,11645]]]]},{"k":"H6997","v":[["Hakkatan",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12213]]]]},{"k":"H6998","v":[["*",[5,5,[[4,1,1,0,1,[[175,1,1,0,1]]],[17,2,2,1,3,[[443,1,1,1,2],[465,1,1,2,3]]],[25,2,2,3,5,[[818,2,2,3,5]]]],[5525,13041,13561,20829,20847]]],["+",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20829]]],["down",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13041]]],["off",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20847]]],["pluck",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5525]]],["up",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13561]]]]},{"k":"H6999","v":[["*",[116,112,[[1,8,7,0,7,[[78,3,3,0,3],[79,4,3,3,6],[89,1,1,6,7]]],[2,33,33,7,40,[[90,4,4,7,11],[91,4,4,11,15],[92,3,3,15,18],[93,5,5,18,23],[94,1,1,23,24],[95,3,3,24,27],[96,2,2,27,29],[97,4,4,29,33],[98,5,5,33,38],[105,1,1,38,39],[106,1,1,39,40]]],[3,3,3,40,43,[[121,1,1,40,41],[132,1,1,41,42],[134,1,1,42,43]]],[8,4,3,43,46,[[237,4,3,43,46]]],[10,7,7,46,53,[[293,1,1,46,47],[299,1,1,47,48],[301,1,1,48,49],[302,1,1,49,50],[303,2,2,50,52],[312,1,1,52,53]]],[11,13,12,53,65,[[324,1,1,53,54],[326,1,1,54,55],[327,2,2,55,57],[328,3,3,57,60],[329,1,1,60,61],[330,1,1,61,62],[334,1,1,62,63],[335,3,2,63,65]]],[12,2,2,65,67,[[343,1,1,65,66],[360,1,1,66,67]]],[13,16,15,67,82,[[368,2,2,67,69],[379,1,1,69,70],[391,1,1,70,71],[392,4,3,71,74],[394,3,3,74,77],[395,2,2,77,79],[396,1,1,79,80],[398,1,1,80,81],[400,1,1,81,82]]],[21,1,1,82,83,[[673,1,1,82,83]]],[22,2,2,83,85,[[743,2,2,83,85]]],[23,21,21,85,106,[[745,1,1,85,86],[751,1,1,86,87],[755,3,3,87,90],[762,1,1,90,91],[763,2,2,91,93],[776,1,1,93,94],[777,1,1,94,95],[788,10,10,95,105],[792,1,1,105,106]]],[27,3,3,106,109,[[863,1,1,106,107],[865,1,1,107,108],[872,1,1,108,109]]],[29,1,1,109,110,[[882,1,1,109,110]]],[34,1,1,110,111,[[903,1,1,110,111]]],[38,1,1,111,112,[[925,1,1,111,112]]]],[2349,2354,2361,2389,2390,2402,2734,2754,2758,2760,2762,2764,2771,2773,2778,2783,2789,2794,2805,2814,2821,2826,2830,2842,2861,2864,2871,2884,2910,2933,2937,2938,2945,2963,2966,2967,2970,2973,3226,3241,3818,4234,4274,7255,7256,7268,8819,9076,9116,9184,9185,9186,9523,9853,9900,9929,9960,9967,9976,9978,9994,10028,10162,10170,10173,10503,10996,11215,11217,11464,11718,11748,11750,11751,11767,11768,11789,11798,11802,11841,11887,11958,17577,18900,18904,18962,19128,19238,19239,19243,19399,19411,19420,19760,19793,20013,20015,20018,20025,20027,20028,20029,20031,20033,20035,20115,22118,22146,22242,22415,22747,23100]]],["+",[12,11,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,6,6,1,7,[[90,1,1,1,2],[91,2,2,2,4],[96,1,1,4,5],[97,2,2,5,7]]],[8,3,2,7,9,[[237,3,2,7,9]]],[11,2,2,9,11,[[328,2,2,9,11]]]],[2354,2754,2764,2778,2910,2937,2938,7255,7256,9976,9978]]],["burn",[29,29,[[1,4,4,0,4,[[78,2,2,0,2],[79,2,2,2,4]]],[2,19,19,4,23,[[90,3,3,4,7],[91,2,2,7,9],[92,3,3,9,12],[93,5,5,12,17],[94,1,1,17,18],[95,2,2,18,20],[96,1,1,20,21],[105,1,1,21,22],[106,1,1,22,23]]],[3,2,2,23,25,[[121,1,1,23,24],[134,1,1,24,25]]],[8,1,1,25,26,[[237,1,1,25,26]]],[13,2,2,26,28,[[368,1,1,26,27],[379,1,1,27,28]]],[23,1,1,28,29,[[788,1,1,28,29]]]],[2349,2361,2389,2402,2758,2760,2762,2771,2773,2783,2789,2794,2805,2814,2821,2826,2830,2842,2861,2864,2884,3226,3241,3818,4274,7268,11215,11464,20015]]],["burned",[3,3,[[2,1,1,0,1,[[97,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]],[23,1,1,2,3,[[788,1,1,2,3]]]],[2933,11798,20031]]],["burnt",[8,8,[[1,1,1,0,1,[[89,1,1,0,1]]],[2,7,7,1,8,[[95,1,1,1,2],[97,1,1,2,3],[98,5,5,3,8]]]],[2734,2871,2945,2963,2966,2967,2970,2973]]],["incense",[58,56,[[1,2,2,0,2,[[79,2,2,0,2]]],[10,7,7,2,9,[[293,1,1,2,3],[299,1,1,3,4],[301,1,1,4,5],[302,1,1,5,6],[303,2,2,6,8],[312,1,1,8,9]]],[11,11,10,9,19,[[324,1,1,9,10],[326,1,1,10,11],[327,2,2,11,13],[328,1,1,13,14],[329,1,1,14,15],[330,1,1,15,16],[334,1,1,16,17],[335,3,2,17,19]]],[12,1,1,19,20,[[360,1,1,19,20]]],[13,12,11,20,31,[[391,1,1,20,21],[392,4,3,21,24],[394,3,3,24,27],[395,1,1,27,28],[396,1,1,28,29],[398,1,1,29,30],[400,1,1,30,31]]],[22,2,2,31,33,[[743,2,2,31,33]]],[23,18,18,33,51,[[745,1,1,33,34],[751,1,1,34,35],[755,3,3,35,38],[762,1,1,38,39],[763,2,2,39,41],[776,1,1,41,42],[788,8,8,42,50],[792,1,1,50,51]]],[27,3,3,51,54,[[863,1,1,51,52],[865,1,1,52,53],[872,1,1,53,54]]],[34,1,1,54,55,[[903,1,1,54,55]]],[38,1,1,55,56,[[925,1,1,55,56]]]],[2389,2390,8819,9076,9116,9184,9185,9186,9523,9853,9900,9929,9960,9967,9994,10028,10162,10170,10173,10996,11718,11748,11750,11751,11767,11768,11789,11802,11841,11887,11958,18900,18904,18962,19128,19238,19239,19243,19399,19411,19420,19760,20013,20018,20025,20027,20028,20029,20033,20035,20115,22118,22146,22242,22747,23100]]],["kindle",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19793]]],["offer",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4234]]],["offered",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10503]]],["perfumed",[1,1,[[21,1,1,0,1,[[673,1,1,0,1]]]],[17577]]],["sacrifice",[2,2,[[13,1,1,0,1,[[368,1,1,0,1]]],[29,1,1,1,2,[[882,1,1,1,2]]]],[11217,22415]]]]},{"k":"H7000","v":[["joined",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21677]]]]},{"k":"H7001","v":[["*",[3,3,[[26,3,3,0,3,[[854,3,3,0,3]]]],[21880,21886,21890]]],["doubts",[2,2,[[26,2,2,0,2,[[854,2,2,0,2]]]],[21886,21890]]],["joints",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21880]]]]},{"k":"H7002","v":[["incense",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20031]]]]},{"k":"H7003","v":[["Kitron",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6539]]]]},{"k":"H7004","v":[["*",[60,58,[[1,19,18,0,18,[[74,1,1,0,1],[79,7,7,1,8],[80,2,2,8,10],[84,4,3,10,13],[86,2,2,13,15],[88,1,1,15,16],[89,2,2,16,18]]],[2,5,4,18,22,[[93,1,1,18,19],[99,1,1,19,20],[105,3,2,20,22]]],[3,21,21,22,43,[[120,1,1,22,23],[123,13,13,23,36],[132,7,7,36,43]]],[8,1,1,43,44,[[237,1,1,43,44]]],[12,2,2,44,46,[[343,1,1,44,45],[365,1,1,45,46]]],[13,5,5,46,51,[[368,1,1,46,47],[379,1,1,47,48],[392,2,2,48,50],[395,1,1,50,51]]],[18,2,2,51,53,[[543,1,1,51,52],[618,1,1,52,53]]],[19,1,1,53,54,[[654,1,1,53,54]]],[22,1,1,54,55,[[679,1,1,54,55]]],[25,3,3,55,58,[[809,1,1,55,56],[817,1,1,56,57],[824,1,1,57,58]]]],[2201,2383,2389,2390,2391,2409,2417,2419,2428,2431,2539,2546,2559,2629,2633,2702,2712,2734,2802,2978,3213,3214,3759,3864,3870,3876,3882,3888,3894,3900,3906,3912,3918,3924,3930,3936,4201,4211,4212,4229,4234,4240,4241,7268,10503,11161,11215,11464,11748,11751,11798,14888,16278,17178,17667,20615,20780,21048]]],["incense",[57,55,[[1,17,16,0,16,[[74,1,1,0,1],[79,5,5,1,6],[80,2,2,6,8],[84,4,3,8,11],[86,2,2,11,13],[88,1,1,13,14],[89,2,2,14,16]]],[2,5,4,16,20,[[93,1,1,16,17],[99,1,1,17,18],[105,3,2,18,20]]],[3,21,21,20,41,[[120,1,1,20,21],[123,13,13,21,34],[132,7,7,34,41]]],[8,1,1,41,42,[[237,1,1,41,42]]],[12,2,2,42,44,[[343,1,1,42,43],[365,1,1,43,44]]],[13,5,5,44,49,[[368,1,1,44,45],[379,1,1,45,46],[392,2,2,46,48],[395,1,1,48,49]]],[18,2,2,49,51,[[543,1,1,49,50],[618,1,1,50,51]]],[22,1,1,51,52,[[679,1,1,51,52]]],[25,3,3,52,55,[[809,1,1,52,53],[817,1,1,53,54],[824,1,1,54,55]]]],[2201,2383,2389,2390,2391,2409,2428,2431,2539,2546,2559,2629,2633,2702,2712,2734,2802,2978,3213,3214,3759,3864,3870,3876,3882,3888,3894,3900,3906,3912,3918,3924,3930,3936,4201,4211,4212,4229,4234,4240,4241,7268,10503,11161,11215,11464,11748,11751,11798,14888,16278,17667,20615,20780,21048]]],["perfume",[3,3,[[1,2,2,0,2,[[79,2,2,0,2]]],[19,1,1,2,3,[[654,1,1,2,3]]]],[2417,2419,17178]]]]},{"k":"H7005","v":[["Kattath",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6336]]]]},{"k":"H7006","v":[["spue",[1,1,[[23,1,1,0,1,[[769,1,1,0,1]]]],[19561]]]]},{"k":"H7007","v":[["summer",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21793]]]]},{"k":"H7008","v":[["*",[4,3,[[0,2,1,0,1,[[18,2,1,0,1]]],[18,2,2,1,3,[[596,1,1,1,2],[625,1,1,2,3]]]],[485,15981,16379]]],["smoke",[3,2,[[0,2,1,0,1,[[18,2,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[485,15981]]],["vapour",[1,1,[[18,1,1,0,1,[[625,1,1,0,1]]]],[16379]]]]},{"k":"H7009","v":[["substance",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13409]]]]},{"k":"H7010","v":[["statute",[2,2,[[26,2,2,0,2,[[855,2,2,0,2]]]],[21912,21920]]]]},{"k":"H7011","v":[["*",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[855,1,1,1,2]]]],[21863,21931]]],["stedfast",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21931]]],["sure",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21863]]]]},{"k":"H7012","v":[["up",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20417]]]]},{"k":"H7013","v":[["spear",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8596]]]]},{"k":"H7014","v":[["*",[19,16,[[0,16,13,0,13,[[3,16,13,0,13]]],[3,1,1,13,14,[[140,1,1,13,14]]],[5,1,1,14,15,[[201,1,1,14,15]]],[6,1,1,15,16,[[214,1,1,15,16]]]],[80,81,82,84,85,87,88,92,94,95,96,103,104,4468,6259,6610]]],["Cain",[17,14,[[0,16,13,0,13,[[3,16,13,0,13]]],[5,1,1,13,14,[[201,1,1,13,14]]]],[80,81,82,84,85,87,88,92,94,95,96,103,104,6259]]],["Kenite",[2,2,[[3,1,1,0,1,[[140,1,1,0,1]]],[6,1,1,1,2,[[214,1,1,1,2]]]],[4468,6610]]]]},{"k":"H7015","v":[["*",[18,16,[[9,1,1,0,1,[[267,1,1,0,1]]],[13,2,1,1,2,[[401,2,1,1,2]]],[23,3,3,2,5,[[751,1,1,2,3],[753,2,2,3,5]]],[25,10,9,5,14,[[803,1,1,5,6],[820,3,2,6,8],[827,1,1,8,9],[828,2,2,9,11],[829,1,1,11,12],[833,2,2,12,14]]],[29,2,2,14,16,[[883,1,1,14,15],[886,1,1,15,16]]]],[8039,11991,19148,19185,19195,20502,20882,20895,21117,21123,21153,21169,21250,21264,22424,22491]]],["lamentation",[15,14,[[9,1,1,0,1,[[267,1,1,0,1]]],[23,3,3,1,4,[[751,1,1,1,2],[753,2,2,2,4]]],[25,9,8,4,12,[[820,3,2,4,6],[827,1,1,6,7],[828,2,2,7,9],[829,1,1,9,10],[833,2,2,10,12]]],[29,2,2,12,14,[[883,1,1,12,13],[886,1,1,13,14]]]],[8039,19148,19185,19195,20882,20895,21117,21123,21153,21169,21250,21264,22424,22491]]],["lamentations",[3,2,[[13,2,1,0,1,[[401,2,1,0,1]]],[25,1,1,1,2,[[803,1,1,1,2]]]],[11991,20502]]]]},{"k":"H7016","v":[["Kinah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6224]]]]},{"k":"H7017","v":[["*",[12,10,[[0,1,1,0,1,[[14,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[6,5,4,2,6,[[211,1,1,2,3],[214,3,2,3,5],[215,1,1,5,6]]],[8,4,3,6,9,[[250,2,1,6,7],[262,1,1,7,8],[265,1,1,8,9]]],[12,1,1,9,10,[[339,1,1,9,10]]]],[379,4467,6525,6610,6616,6647,7566,7940,8007,10361]]],["+",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6610]]],["Kenite",[4,3,[[6,4,3,0,3,[[211,1,1,0,1],[214,2,1,1,2],[215,1,1,2,3]]]],[6525,6616,6647]]],["Kenites",[7,6,[[0,1,1,0,1,[[14,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[8,4,3,2,5,[[250,2,1,2,3],[262,1,1,3,4],[265,1,1,4,5]]],[12,1,1,5,6,[[339,1,1,5,6]]]],[379,4467,7566,7940,8007,10361]]]]},{"k":"H7018","v":[["*",[6,6,[[0,5,5,0,5,[[4,5,5,0,5]]],[12,1,1,5,6,[[338,1,1,5,6]]]],[114,115,117,118,119,10254]]],["Cainan",[5,5,[[0,5,5,0,5,[[4,5,5,0,5]]]],[114,115,117,118,119]]],["Kenan",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10254]]]]},{"k":"H7019","v":[["*",[20,20,[[0,1,1,0,1,[[7,1,1,0,1]]],[9,2,2,1,3,[[282,2,2,1,3]]],[18,2,2,3,5,[[509,1,1,3,4],[551,1,1,4,5]]],[19,4,4,5,9,[[633,1,1,5,6],[637,1,1,6,7],[653,1,1,7,8],[657,1,1,8,9]]],[22,2,2,9,11,[[694,1,1,9,10],[706,1,1,10,11]]],[23,4,4,11,15,[[752,1,1,11,12],[784,2,2,12,14],[792,1,1,14,15]]],[29,3,3,15,18,[[881,1,1,15,16],[886,2,2,16,18]]],[32,1,1,18,19,[[899,1,1,18,19]]],[37,1,1,19,20,[[924,1,1,19,20]]]],[205,8427,8428,14359,15065,16548,16661,17142,17276,17978,18168,19173,19951,19953,20112,22410,22482,22483,22665,23076]]],["fruit",[3,3,[[9,1,1,0,1,[[282,1,1,0,1]]],[29,2,2,1,3,[[886,2,2,1,3]]]],[8428,22482,22483]]],["fruits",[6,6,[[9,1,1,0,1,[[282,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]],[23,3,3,2,5,[[784,2,2,2,4],[792,1,1,4,5]]],[32,1,1,5,6,[[899,1,1,5,6]]]],[8427,17978,19951,19953,20112,22665]]],["summer",[11,11,[[0,1,1,0,1,[[7,1,1,0,1]]],[18,2,2,1,3,[[509,1,1,1,2],[551,1,1,2,3]]],[19,4,4,3,7,[[633,1,1,3,4],[637,1,1,4,5],[653,1,1,5,6],[657,1,1,6,7]]],[22,1,1,7,8,[[706,1,1,7,8]]],[23,1,1,8,9,[[752,1,1,8,9]]],[29,1,1,9,10,[[881,1,1,9,10]]],[37,1,1,10,11,[[924,1,1,10,11]]]],[205,14359,15065,16548,16661,17142,17276,18168,19173,22410,23076]]]]},{"k":"H7020","v":[["*",[4,4,[[1,4,4,0,4,[[75,2,2,0,2],[85,2,2,2,4]]]],[2239,2245,2577,2583]]],["outmost",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2245]]],["uttermost",[3,3,[[1,3,3,0,3,[[75,1,1,0,1],[85,2,2,1,3]]]],[2239,2577,2583]]]]},{"k":"H7021","v":[["gourd",[5,4,[[31,5,4,0,4,[[892,5,4,0,4]]]],[22574,22575,22577,22578]]]]},{"k":"H7022","v":[["spewing",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22764]]]]},{"k":"H7023","v":[["*",[74,64,[[1,2,2,0,2,[[79,1,1,0,1],[86,1,1,1,2]]],[2,5,4,2,6,[[90,1,1,2,3],[94,1,1,3,4],[103,3,2,4,6]]],[3,3,2,6,8,[[138,2,1,6,7],[151,1,1,7,8]]],[5,1,1,8,9,[[188,1,1,8,9]]],[8,6,5,9,14,[[253,1,1,9,10],[254,2,1,10,11],[255,1,1,11,12],[260,2,2,12,14]]],[9,1,1,14,15,[[271,1,1,14,15]]],[10,13,10,15,25,[[294,1,1,15,16],[296,9,6,16,22],[304,1,1,22,23],[306,1,1,23,24],[311,1,1,24,25]]],[11,4,4,25,29,[[316,1,1,25,26],[321,2,2,26,28],[332,1,1,28,29]]],[12,2,2,29,31,[[351,1,1,29,30],[366,1,1,30,31]]],[13,4,3,31,34,[[369,4,3,31,34]]],[18,1,1,34,35,[[539,1,1,34,35]]],[22,4,4,35,39,[[700,1,1,35,36],[703,1,1,36,37],[716,1,1,37,38],[737,1,1,38,39]]],[23,1,1,39,40,[[748,1,1,39,40]]],[25,25,22,40,62,[[805,1,1,40,41],[809,4,3,41,44],[813,3,3,44,47],[814,4,3,47,50],[824,1,1,50,51],[834,1,1,51,52],[842,10,9,52,61],[844,1,1,61,62]]],[29,1,1,62,63,[[883,1,1,62,63]]],[34,1,1,63,64,[[904,1,1,63,64]]]],[2385,2630,2760,2839,3148,3150,4400,4849,5884,7687,7716,7755,7883,7895,8143,8877,8901,8902,8911,8912,8923,8925,9228,9294,9472,9613,9764,9789,10100,10775,11168,11236,11240,11241,14830,18057,18122,18392,18810,19046,20532,20611,20612,20614,20685,20687,20692,20720,20722,20723,21021,21310,21531,21532,21535,21538,21539,21543,21546,21548,21551,21580,22442,22759]]],["+",[4,4,[[3,1,1,0,1,[[151,1,1,0,1]]],[9,1,1,1,2,[[271,1,1,1,2]]],[12,1,1,2,3,[[351,1,1,2,3]]],[34,1,1,3,4,[[904,1,1,3,4]]]],[4849,8143,10775,22759]]],["side",[2,2,[[2,2,2,0,2,[[90,1,1,0,1],[94,1,1,1,2]]]],[2760,2839]]],["sides",[2,2,[[1,2,2,0,2,[[79,1,1,0,1],[86,1,1,1,2]]]],[2385,2630]]],["very",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19046]]],["wall",[49,43,[[2,1,1,0,1,[[103,1,1,0,1]]],[3,2,1,1,2,[[138,2,1,1,2]]],[5,1,1,2,3,[[188,1,1,2,3]]],[8,6,5,3,8,[[253,1,1,3,4],[254,2,1,4,5],[255,1,1,5,6],[260,2,2,6,8]]],[10,7,6,8,14,[[294,1,1,8,9],[296,3,2,9,11],[304,1,1,11,12],[306,1,1,12,13],[311,1,1,13,14]]],[11,4,4,14,18,[[316,1,1,14,15],[321,2,2,15,17],[332,1,1,17,18]]],[13,2,2,18,20,[[369,2,2,18,20]]],[18,1,1,20,21,[[539,1,1,20,21]]],[22,3,3,21,24,[[703,1,1,21,22],[716,1,1,22,23],[737,1,1,23,24]]],[25,21,18,24,42,[[805,1,1,24,25],[809,4,3,25,28],[813,3,3,28,31],[814,4,3,31,34],[824,1,1,34,35],[842,7,6,35,41],[844,1,1,41,42]]],[29,1,1,42,43,[[883,1,1,42,43]]]],[3148,4400,5884,7687,7716,7755,7883,7895,8877,8901,8923,9228,9294,9472,9613,9764,9789,10100,11240,11241,14830,18122,18392,18810,20532,20611,20612,20614,20685,20687,20692,20720,20722,20723,21021,21531,21532,21535,21538,21543,21546,21580,22442]]],["walls",[16,14,[[2,2,2,0,2,[[103,2,2,0,2]]],[10,6,5,2,7,[[296,6,5,2,7]]],[12,1,1,7,8,[[366,1,1,7,8]]],[13,2,1,8,9,[[369,2,1,8,9]]],[22,1,1,9,10,[[700,1,1,9,10]]],[25,4,4,10,14,[[834,1,1,10,11],[842,3,3,11,14]]]],[3148,3150,8901,8902,8911,8912,8925,11168,11236,18057,21310,21539,21548,21551]]]]},{"k":"H7024","v":[["*",[5,5,[[11,1,1,0,1,[[328,1,1,0,1]]],[22,2,2,1,3,[[693,1,1,1,2],[700,1,1,2,3]]],[29,2,2,3,5,[[879,1,1,3,4],[887,1,1,4,5]]]],[9972,17961,18058,22369,22502]]],["+",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22502]]],["Kir",[4,4,[[11,1,1,0,1,[[328,1,1,0,1]]],[22,2,2,1,3,[[693,1,1,1,2],[700,1,1,2,3]]],[29,1,1,3,4,[[879,1,1,3,4]]]],[9972,17961,18058,22369]]]]},{"k":"H7025","v":[["*",[5,5,[[11,1,1,0,1,[[315,1,1,0,1]]],[22,2,2,1,3,[[694,2,2,1,3]]],[23,2,2,3,5,[[792,2,2,3,5]]]],[9601,17976,17980,20111,20116]]],["Kirharaseth",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9601]]],["Kirhareseth",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17976]]],["Kirharesh",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17980]]],["Kirheres",[2,2,[[23,2,2,0,2,[[792,2,2,0,2]]]],[20111,20116]]]]},{"k":"H7026","v":[["Keros",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12071,12467]]]]},{"k":"H7027","v":[["Kish",[21,17,[[8,6,5,0,5,[[244,3,2,0,2],[245,2,2,2,4],[249,1,1,4,5]]],[9,1,1,5,6,[[287,1,1,5,6]]],[12,12,9,6,15,[[345,3,2,6,8],[346,3,2,8,10],[349,1,1,10,11],[360,2,2,11,13],[361,2,1,13,14],[363,1,1,14,15]]],[13,1,1,15,16,[[395,1,1,15,16]]],[16,1,1,16,17,[[427,1,1,16,17]]]],[7392,7394,7429,7439,7559,8594,10605,10608,10651,10654,10721,11004,11005,11044,11105,11803,12729]]]]},{"k":"H7028","v":[["*",[6,5,[[6,4,3,0,3,[[214,2,2,0,2],[215,2,1,2,3]]],[10,1,1,3,4,[[308,1,1,3,4]]],[18,1,1,4,5,[[560,1,1,4,5]]]],[6606,6612,6644,9381,15250]]],["+",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6606]]],["Kishon",[4,3,[[6,3,2,0,2,[[214,1,1,0,1],[215,2,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]]],[6612,6644,9381]]],["Kison",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15250]]]]},{"k":"H7029","v":[["Kishi",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10498]]]]},{"k":"H7030","v":[["harp",[4,4,[[26,4,4,0,4,[[852,4,4,0,4]]]],[21812,21814,21817,21822]]]]},{"k":"H7031","v":[["*",[13,13,[[9,1,1,0,1,[[268,1,1,0,1]]],[17,1,1,1,2,[[459,1,1,1,2]]],[20,1,1,2,3,[[667,1,1,2,3]]],[22,4,4,3,7,[[683,1,1,3,4],[696,1,1,4,5],[697,1,1,5,6],[708,1,1,6,7]]],[23,2,2,7,9,[[746,1,1,7,8],[790,1,1,8,9]]],[24,1,1,9,10,[[800,1,1,9,10]]],[28,1,1,10,11,[[878,1,1,10,11]]],[29,2,2,11,13,[[880,2,2,11,13]]]],[8067,13454,17486,17765,17999,18005,18233,18988,20051,20439,22347,22393,22394]]],["+",[1,1,[[29,1,1,0,1,[[880,1,1,0,1]]]],[22393]]],["light",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8067]]],["swift",[8,8,[[17,1,1,0,1,[[459,1,1,0,1]]],[20,1,1,1,2,[[667,1,1,1,2]]],[22,3,3,2,5,[[696,1,1,2,3],[697,1,1,3,4],[708,1,1,4,5]]],[23,2,2,5,7,[[746,1,1,5,6],[790,1,1,6,7]]],[29,1,1,7,8,[[880,1,1,7,8]]]],[13454,17486,17999,18005,18233,18988,20051,22394]]],["swifter",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20439]]],["swiftly",[2,2,[[22,1,1,0,1,[[683,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]]],[17765,22347]]]]},{"k":"H7032","v":[["*",[7,7,[[26,7,7,0,7,[[852,4,4,0,4],[853,1,1,4,5],[855,1,1,5,6],[856,1,1,6,7]]]],[21812,21814,21817,21822,21868,21925,21944]]],["sound",[4,4,[[26,4,4,0,4,[[852,4,4,0,4]]]],[21812,21814,21817,21822]]],["voice",[3,3,[[26,3,3,0,3,[[853,1,1,0,1],[855,1,1,1,2],[856,1,1,2,3]]]],[21868,21925,21944]]]]},{"k":"H7033","v":[["*",[4,4,[[2,1,1,0,1,[[91,1,1,0,1]]],[5,1,1,1,2,[[191,1,1,1,2]]],[18,1,1,2,3,[[515,1,1,2,3]]],[23,1,1,3,4,[[773,1,1,3,4]]]],[2776,5945,14497,19657]]],["dried",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2776]]],["loathsome",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14497]]],["parched",[1,1,[[5,1,1,0,1,[[191,1,1,0,1]]]],[5945]]],["roasted",[1,1,[[23,1,1,0,1,[[773,1,1,0,1]]]],[19657]]]]},{"k":"H7034","v":[["*",[6,6,[[4,2,2,0,2,[[177,1,1,0,1],[179,1,1,1,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[19,1,1,3,4,[[639,1,1,3,4]]],[22,2,2,4,6,[[681,1,1,4,5],[694,1,1,5,6]]]],[5550,5601,7699,16728,17712,17983]]],["base",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17712]]],["contemned",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17983]]],["despised",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16728]]],["esteemed",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7699]]],["light",[1,1,[[4,1,1,0,1,[[179,1,1,0,1]]]],[5601]]],["vile",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5550]]]]},{"k":"H7035","v":[["together",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8568]]]]},{"k":"H7036","v":[["*",[17,17,[[17,1,1,0,1,[[445,1,1,0,1]]],[18,1,1,1,2,[[560,1,1,1,2]]],[19,8,8,2,10,[[630,1,1,2,3],[633,1,1,3,4],[636,1,1,4,5],[638,1,1,5,6],[639,1,1,6,7],[640,1,1,7,8],[645,1,1,8,9],[649,1,1,9,10]]],[22,1,1,10,11,[[700,1,1,10,11]]],[23,2,2,11,13,[[757,1,1,11,12],[790,1,1,12,13]]],[27,2,2,13,15,[[865,2,2,13,15]]],[33,1,1,15,16,[[902,1,1,15,16]]],[34,1,1,16,17,[[904,1,1,16,17]]]],[13101,15257,16490,16573,16645,16690,16735,16765,16904,17025,18070,19292,20057,22140,22151,22717,22764]]],["confusion",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13101]]],["dishonour",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16573]]],["ignominy",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16904]]],["reproach",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17025]]],["shame",[13,13,[[18,1,1,0,1,[[560,1,1,0,1]]],[19,5,5,1,6,[[630,1,1,1,2],[636,1,1,2,3],[638,1,1,3,4],[639,1,1,4,5],[640,1,1,5,6]]],[22,1,1,6,7,[[700,1,1,6,7]]],[23,2,2,7,9,[[757,1,1,7,8],[790,1,1,8,9]]],[27,2,2,9,11,[[865,2,2,9,11]]],[33,1,1,11,12,[[902,1,1,11,12]]],[34,1,1,12,13,[[904,1,1,12,13]]]],[15257,16490,16645,16690,16735,16765,18070,19292,20057,22140,22151,22717,22764]]]]},{"k":"H7037","v":[["caldron",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[32,1,1,1,2,[[895,1,1,1,2]]]],[7254,22611]]]]},{"k":"H7038","v":[["parts",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3392]]]]},{"k":"H7039","v":[["*",[6,5,[[2,1,1,0,1,[[112,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[8,2,2,2,4,[[252,1,1,2,3],[260,1,1,3,4]]],[9,2,1,4,5,[[283,2,1,4,5]]]],[3416,7163,7635,7879,8477]]],["corn",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3416]]],["parched",[5,4,[[7,1,1,0,1,[[233,1,1,0,1]]],[8,2,2,1,3,[[252,1,1,1,2],[260,1,1,2,3]]],[9,2,1,3,4,[[283,2,1,3,4]]]],[7163,7635,7879,8477]]]]},{"k":"H7040","v":[["Kallai",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12644]]]]},{"k":"H7041","v":[["Kelaiah",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12275]]]]},{"k":"H7042","v":[["Kelita",[3,3,[[14,1,1,0,1,[[412,1,1,0,1]]],[15,2,2,1,3,[[420,1,1,1,2],[422,1,1,2,3]]]],[12275,12500,12559]]]]},{"k":"H7043","v":[["*",[82,79,[[0,6,6,0,6,[[7,3,3,0,3],[11,1,1,3,4],[15,2,2,4,6]]],[1,3,3,6,9,[[67,1,1,6,7],[70,1,1,7,8],[71,1,1,8,9]]],[2,7,6,9,15,[[108,1,1,9,10],[109,2,1,10,11],[113,4,4,11,15]]],[4,1,1,15,16,[[175,1,1,15,16]]],[5,1,1,16,17,[[210,1,1,16,17]]],[6,1,1,17,18,[[219,1,1,17,18]]],[8,5,5,18,23,[[237,1,1,18,19],[238,1,1,19,20],[241,1,1,20,21],[252,1,1,21,22],[253,1,1,22,23]]],[9,11,10,23,33,[[267,1,1,23,24],[272,1,1,24,25],[282,7,6,25,31],[285,2,2,31,33]]],[10,5,5,33,38,[[292,1,1,33,34],[302,3,3,34,37],[306,1,1,37,38]]],[11,3,3,38,41,[[314,1,1,38,39],[315,1,1,39,40],[332,1,1,40,41]]],[13,3,3,41,44,[[376,3,3,41,44]]],[15,2,2,44,46,[[425,2,2,44,46]]],[17,5,5,46,51,[[438,1,1,46,47],[442,1,1,47,48],[444,1,1,48,49],[459,1,1,49,50],[475,1,1,50,51]]],[18,3,3,51,54,[[514,1,1,51,52],[539,1,1,52,53],[586,1,1,53,54]]],[19,4,4,54,58,[[641,1,1,54,55],[647,1,1,55,56],[657,2,2,56,58]]],[20,5,4,58,62,[[665,2,2,58,60],[668,3,2,60,62]]],[22,6,6,62,68,[[686,1,1,62,63],[687,1,1,63,64],[701,1,1,64,65],[708,1,1,65,66],[727,1,1,66,67],[743,1,1,67,68]]],[23,5,5,68,73,[[748,2,2,68,70],[750,1,1,70,71],[752,1,1,71,72],[759,1,1,72,73]]],[25,3,3,73,76,[[809,1,1,73,74],[822,1,1,74,75],[823,1,1,75,76]]],[31,1,1,76,77,[[889,1,1,76,77]]],[33,1,1,77,78,[[900,1,1,77,78]]],[34,1,1,78,79,[[903,1,1,78,79]]]],[191,194,204,301,385,386,2021,2094,2141,3295,3327,3457,3460,3461,3469,5504,6485,6781,7270,7289,7336,7661,7699,8045,8179,8431,8433,8435,8436,8437,8439,8532,8554,8778,9155,9160,9161,9314,9575,9594,10108,11399,11404,11405,12673,12696,12905,13014,13076,13454,13868,14472,14831,15783,16778,16974,17261,17262,17450,17451,17503,17513,17828,17830,18086,18233,18642,18917,19040,19051,19103,19164,19325,20621,20965,20983,22536,22698,22739]]],["+",[12,12,[[0,1,1,0,1,[[7,1,1,0,1]]],[2,1,1,1,2,[[109,1,1,1,2]]],[6,1,1,2,3,[[219,1,1,2,3]]],[8,2,2,3,5,[[241,1,1,3,4],[252,1,1,4,5]]],[9,3,3,5,8,[[282,2,2,5,7],[285,1,1,7,8]]],[13,1,1,8,9,[[376,1,1,8,9]]],[17,1,1,9,10,[[438,1,1,9,10]]],[23,1,1,10,11,[[750,1,1,10,11]]],[25,1,1,11,12,[[822,1,1,11,12]]]],[204,3327,6781,7336,7661,8435,8436,8532,11405,12905,19103,20965]]],["Curse",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17513]]],["Ease",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11404]]],["abated",[2,2,[[0,2,2,0,2,[[7,2,2,0,2]]]],[191,194]]],["accursed",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18917]]],["afflicted",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17830]]],["contempt",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18086]]],["curse",[13,13,[[2,1,1,0,1,[[108,1,1,0,1]]],[4,1,1,1,2,[[175,1,1,1,2]]],[5,1,1,2,3,[[210,1,1,2,3]]],[9,2,2,3,5,[[282,2,2,3,5]]],[15,1,1,5,6,[[425,1,1,5,6]]],[18,2,2,6,8,[[539,1,1,6,7],[586,1,1,7,8]]],[19,1,1,8,9,[[657,1,1,8,9]]],[20,2,2,9,11,[[665,1,1,9,10],[668,1,1,10,11]]],[22,1,1,11,12,[[686,1,1,11,12]]],[23,1,1,12,13,[[759,1,1,12,13]]]],[3295,5504,6485,8436,8437,12673,14831,15783,17261,17450,17513,17828,19325]]],["cursed",[13,13,[[2,4,4,0,4,[[109,1,1,0,1],[113,3,3,1,4]]],[9,3,3,4,7,[[282,3,3,4,7]]],[10,1,1,7,8,[[292,1,1,7,8]]],[11,1,1,8,9,[[314,1,1,8,9]]],[15,1,1,9,10,[[425,1,1,9,10]]],[17,1,1,10,11,[[459,1,1,10,11]]],[18,1,1,11,12,[[514,1,1,11,12]]],[20,1,1,12,13,[[665,1,1,12,13]]]],[3327,3457,3460,3469,8431,8433,8439,8778,9575,12696,13454,14472,17451]]],["curseth",[5,5,[[0,1,1,0,1,[[11,1,1,0,1]]],[1,1,1,1,2,[[70,1,1,1,2]]],[2,1,1,2,3,[[113,1,1,2,3]]],[19,2,2,3,5,[[647,1,1,3,4],[657,1,1,4,5]]]],[301,2094,3461,16974,17262]]],["despise",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8554]]],["despised",[2,2,[[0,2,2,0,2,[[15,2,2,0,2]]]],[385,386]]],["ease",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11399]]],["easier",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2021]]],["easy",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16778]]],["esteemed",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7270]]],["light",[2,2,[[8,1,1,0,1,[[253,1,1,0,1]]],[25,1,1,1,2,[[823,1,1,1,2]]]],[7699,20983]]],["lighten",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22536]]],["lighter",[3,3,[[10,3,3,0,3,[[302,3,3,0,3]]]],[9155,9160,9161]]],["lightly",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19051]]],["revile",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2141]]],["slightly",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19164]]],["swift",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18233]]],["swifter",[5,5,[[9,1,1,0,1,[[267,1,1,0,1]]],[17,2,2,1,3,[[442,1,1,1,2],[444,1,1,2,3]]],[23,1,1,3,4,[[748,1,1,3,4]]],[34,1,1,4,5,[[903,1,1,4,5]]]],[8045,13014,13076,19040,22739]]],["thing",[5,5,[[10,1,1,0,1,[[306,1,1,0,1]]],[11,2,2,1,3,[[315,1,1,1,2],[332,1,1,2,3]]],[22,1,1,3,4,[[727,1,1,3,4]]],[25,1,1,4,5,[[809,1,1,4,5]]]],[9314,9594,10108,18642,20621]]],["vile",[4,4,[[8,1,1,0,1,[[238,1,1,0,1]]],[9,1,1,1,2,[[272,1,1,1,2]]],[17,1,1,2,3,[[475,1,1,2,3]]],[33,1,1,3,4,[[900,1,1,3,4]]]],[7289,8179,13868,22698]]],["whet",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17503]]]]},{"k":"H7044","v":[["*",[2,2,[[25,1,1,0,1,[[802,1,1,0,1]]],[26,1,1,1,2,[[859,1,1,1,2]]]],[20471,22021]]],["burnished",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20471]]],["polished",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22021]]]]},{"k":"H7045","v":[["*",[33,33,[[0,2,2,0,2,[[26,2,2,0,2]]],[4,11,11,2,13,[[163,3,3,2,5],[173,1,1,5,6],[175,1,1,6,7],[179,1,1,7,8],[180,2,2,8,10],[181,1,1,10,11],[182,2,2,11,13]]],[5,1,1,13,14,[[194,1,1,13,14]]],[6,1,1,14,15,[[219,1,1,14,15]]],[9,1,1,15,16,[[282,1,1,15,16]]],[10,1,1,16,17,[[292,1,1,16,17]]],[11,1,1,17,18,[[334,1,1,17,18]]],[15,1,1,18,19,[[425,1,1,18,19]]],[18,2,2,19,21,[[586,2,2,19,21]]],[19,2,2,21,23,[[653,1,1,21,22],[654,1,1,22,23]]],[23,9,9,23,32,[[768,1,1,23,24],[769,1,1,24,25],[770,1,1,25,26],[773,1,1,26,27],[786,1,1,27,28],[788,3,3,28,31],[793,1,1,31,32]]],[37,1,1,32,33,[[918,1,1,32,33]]]],[739,740,5234,5236,5237,5470,5505,5598,5626,5656,5706,5709,5727,6036,6811,8438,8778,10164,12673,15772,15773,17143,17183,19533,19552,19578,19657,19993,20018,20022,20032,20140,22989]]],["accursed",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5470]]],["curse",[24,24,[[0,2,2,0,2,[[26,2,2,0,2]]],[4,6,6,2,8,[[163,3,3,2,5],[175,1,1,5,6],[179,1,1,6,7],[182,1,1,7,8]]],[6,1,1,8,9,[[219,1,1,8,9]]],[10,1,1,9,10,[[292,1,1,9,10]]],[11,1,1,10,11,[[334,1,1,10,11]]],[15,1,1,11,12,[[425,1,1,11,12]]],[19,2,2,12,14,[[653,1,1,12,13],[654,1,1,13,14]]],[23,9,9,14,23,[[768,1,1,14,15],[769,1,1,15,16],[770,1,1,16,17],[773,1,1,17,18],[786,1,1,18,19],[788,3,3,19,22],[793,1,1,22,23]]],[37,1,1,23,24,[[918,1,1,23,24]]]],[739,740,5234,5236,5237,5505,5598,5709,6811,8778,10164,12673,17143,17183,19533,19552,19578,19657,19993,20018,20022,20032,20140,22989]]],["curses",[3,3,[[4,3,3,0,3,[[180,2,2,0,2],[181,1,1,2,3]]]],[5626,5656,5706]]],["cursing",[4,4,[[4,1,1,0,1,[[182,1,1,0,1]]],[9,1,1,1,2,[[282,1,1,1,2]]],[18,2,2,2,4,[[586,2,2,2,4]]]],[5727,8438,15772,15773]]],["cursings",[1,1,[[5,1,1,0,1,[[194,1,1,0,1]]]],[6036]]]]},{"k":"H7046","v":[["*",[4,4,[[11,1,1,0,1,[[314,1,1,0,1]]],[25,2,2,1,3,[[817,1,1,1,2],[823,1,1,2,3]]],[34,1,1,3,4,[[903,1,1,3,4]]]],[9574,20793,20981,22741]]],["mock",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[20981]]],["mocked",[1,1,[[11,1,1,0,1,[[314,1,1,0,1]]]],[9574]]],["scoff",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22741]]],["scornest",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20793]]]]},{"k":"H7047","v":[["derision",[3,3,[[18,2,2,0,2,[[521,1,1,0,1],[556,1,1,1,2]]],[23,1,1,2,3,[[764,1,1,2,3]]]],[14584,15189,19430]]]]},{"k":"H7048","v":[["mocking",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[20980]]]]},{"k":"H7049","v":[["*",[7,7,[[6,1,1,0,1,[[230,1,1,0,1]]],[8,2,2,1,3,[[252,1,1,1,2],[260,1,1,2,3]]],[10,3,3,3,6,[[296,3,3,3,6]]],[23,1,1,6,7,[[754,1,1,6,7]]]],[7070,7667,7890,8925,8928,8931,19219]]],["+",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19219]]],["carved",[3,3,[[10,3,3,0,3,[[296,3,3,0,3]]]],[8925,8928,8931]]],["out",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7890]]],["slang",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7667]]],["sling",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7070]]]]},{"k":"H7050","v":[["*",[22,22,[[1,13,13,0,13,[[76,5,5,0,5],[84,1,1,5,6],[87,6,6,6,12],[88,1,1,12,13]]],[3,2,2,13,15,[[119,1,1,13,14],[120,1,1,14,15]]],[8,3,3,15,18,[[252,2,2,15,17],[260,1,1,17,18]]],[10,1,1,18,19,[[296,1,1,18,19]]],[13,1,1,19,20,[[392,1,1,19,20]]],[17,1,1,20,21,[[476,1,1,20,21]]],[37,1,1,21,22,[[919,1,1,21,22]]]],[2281,2283,2284,2286,2287,2548,2642,2645,2647,2648,2649,2651,2704,3718,3769,7658,7668,7890,8930,11746,13916,23014]]],["+",[2,2,[[17,1,1,0,1,[[476,1,1,0,1]]],[37,1,1,1,2,[[919,1,1,1,2]]]],[13916,23014]]],["hangings",[15,15,[[1,13,13,0,13,[[76,5,5,0,5],[84,1,1,5,6],[87,6,6,6,12],[88,1,1,12,13]]],[3,2,2,13,15,[[119,1,1,13,14],[120,1,1,14,15]]]],[2281,2283,2284,2286,2287,2548,2642,2645,2647,2648,2649,2651,2704,3718,3769]]],["leaves",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8930]]],["sling",[3,3,[[8,3,3,0,3,[[252,2,2,0,2],[260,1,1,2,3]]]],[7658,7668,7890]]],["slings",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11746]]]]},{"k":"H7051","v":[["slingers",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9601]]]]},{"k":"H7052","v":[["light",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4345]]]]},{"k":"H7053","v":[["+",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7506]]]]},{"k":"H7054","v":[["*",[10,8,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,3,2,1,3,[[168,1,1,1,2],[175,2,1,2,3]]],[6,2,1,3,4,[[225,2,1,3,4]]],[11,1,1,4,5,[[331,1,1,4,5]]],[22,2,2,5,7,[[695,1,1,5,6],[715,1,1,6,7]]],[27,1,1,7,8,[[869,1,1,7,8]]]],[2119,5351,5525,6934,10087,17988,18379,22201]]],["corn",[7,5,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,3,2,1,3,[[168,1,1,1,2],[175,2,1,2,3]]],[6,2,1,3,4,[[225,2,1,3,4]]],[22,1,1,4,5,[[695,1,1,4,5]]]],[2119,5351,5525,6934,17988]]],["stalk",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22201]]],["up",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10087,18379]]]]},{"k":"H7055","v":[["Kemuel",[3,3,[[0,1,1,0,1,[[21,1,1,0,1]]],[3,1,1,1,2,[[150,1,1,1,2]]],[12,1,1,2,3,[[364,1,1,2,3]]]],[568,4840,11126]]]]},{"k":"H7056","v":[["Camon",[1,1,[[6,1,1,0,1,[[220,1,1,0,1]]]],[6816]]]]},{"k":"H7057","v":[["nettles",[2,2,[[22,1,1,0,1,[[712,1,1,0,1]]],[27,1,1,1,2,[[870,1,1,1,2]]]],[18316,22214]]]]},{"k":"H7058","v":[["*",[14,14,[[0,1,1,0,1,[[17,1,1,0,1]]],[3,1,1,1,2,[[121,1,1,1,2]]],[6,1,1,2,3,[[216,1,1,2,3]]],[8,2,2,3,5,[[236,1,1,3,4],[263,1,1,4,5]]],[9,1,1,5,6,[[283,1,1,5,6]]],[10,4,4,6,10,[[294,1,1,6,7],[307,3,3,7,10]]],[11,1,1,10,11,[[316,1,1,10,11]]],[12,1,1,11,12,[[349,1,1,11,12]]],[22,1,1,12,13,[[725,1,1,12,13]]],[27,1,1,13,14,[[869,1,1,13,14]]]],[430,3807,6673,7236,7966,8477,8866,9329,9331,9333,9644,10760,18601,22201]]],["flour",[4,4,[[6,1,1,0,1,[[216,1,1,0,1]]],[8,2,2,1,3,[[236,1,1,1,2],[263,1,1,2,3]]],[9,1,1,3,4,[[283,1,1,3,4]]]],[6673,7236,7966,8477]]],["meal",[10,10,[[0,1,1,0,1,[[17,1,1,0,1]]],[3,1,1,1,2,[[121,1,1,1,2]]],[10,4,4,2,6,[[294,1,1,2,3],[307,3,3,3,6]]],[11,1,1,6,7,[[316,1,1,6,7]]],[12,1,1,7,8,[[349,1,1,7,8]]],[22,1,1,8,9,[[725,1,1,8,9]]],[27,1,1,9,10,[[869,1,1,9,10]]]],[430,3807,8866,9329,9331,9333,9644,10760,18601,22201]]]]},{"k":"H7059","v":[["*",[2,2,[[17,2,2,0,2,[[451,1,1,0,1],[457,1,1,1,2]]]],[13246,13405]]],["down",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13405]]],["wrinkles",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13246]]]]},{"k":"H7060","v":[["*",[2,2,[[22,2,2,0,2,[[697,1,1,0,1],[711,1,1,1,2]]]],[18010,18288]]],["down",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18288]]],["wither",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18010]]]]},{"k":"H7061","v":[["*",[3,3,[[2,2,2,0,2,[[91,1,1,0,1],[94,1,1,1,2]]],[3,1,1,2,3,[[121,1,1,2,3]]]],[2764,2842,3818]]],["handful",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3818]]],["take",[2,2,[[2,2,2,0,2,[[91,1,1,0,1],[94,1,1,1,2]]]],[2764,2842]]]]},{"k":"H7062","v":[["*",[4,4,[[0,1,1,0,1,[[40,1,1,0,1]]],[2,3,3,1,4,[[91,1,1,1,2],[94,1,1,2,3],[95,1,1,3,4]]]],[1242,2764,2842,2864]]],["+",[2,2,[[2,2,2,0,2,[[91,1,1,0,1],[94,1,1,1,2]]]],[2764,2842]]],["handful",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2864]]],["handfuls",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1242]]]]},{"k":"H7063","v":[["thorns",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17110]]]]},{"k":"H7064","v":[["*",[13,13,[[0,1,1,0,1,[[5,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[4,2,2,2,4,[[174,1,1,2,3],[184,1,1,3,4]]],[17,2,2,4,6,[[464,1,1,4,5],[474,1,1,5,6]]],[18,1,1,6,7,[[561,1,1,6,7]]],[19,1,1,7,8,[[654,1,1,7,8]]],[22,2,2,8,10,[[688,1,1,8,9],[694,1,1,9,10]]],[23,1,1,10,11,[[793,1,1,10,11]]],[30,1,1,11,12,[[888,1,1,11,12]]],[34,1,1,12,13,[[904,1,1,12,13]]]],[151,4467,5476,5769,13550,13861,15262,17177,17864,17971,20143,22514,22757]]],["+",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13861]]],["nest",[11,11,[[3,1,1,0,1,[[140,1,1,0,1]]],[4,2,2,1,3,[[174,1,1,1,2],[184,1,1,2,3]]],[17,1,1,3,4,[[464,1,1,3,4]]],[18,1,1,4,5,[[561,1,1,4,5]]],[19,1,1,5,6,[[654,1,1,5,6]]],[22,2,2,6,8,[[688,1,1,6,7],[694,1,1,7,8]]],[23,1,1,8,9,[[793,1,1,8,9]]],[30,1,1,9,10,[[888,1,1,9,10]]],[34,1,1,10,11,[[904,1,1,10,11]]]],[4467,5476,5769,13550,15262,17177,17864,17971,20143,22514,22757]]],["rooms",[1,1,[[0,1,1,0,1,[[5,1,1,0,1]]]],[151]]]]},{"k":"H7065","v":[["*",[34,29,[[0,3,3,0,3,[[25,1,1,0,1],[29,1,1,1,2],[36,1,1,2,3]]],[3,6,5,3,8,[[121,3,2,3,5],[127,1,1,5,6],[141,2,2,6,8]]],[4,3,2,8,10,[[184,3,2,8,10]]],[9,1,1,10,11,[[287,1,1,10,11]]],[10,5,3,11,14,[[304,1,1,11,12],[309,4,2,12,14]]],[18,4,4,14,18,[[514,1,1,14,15],[550,1,1,15,16],[555,1,1,16,17],[583,1,1,17,18]]],[19,4,4,18,22,[[630,1,1,18,19],[650,1,1,19,20],[651,2,2,20,22]]],[22,1,1,22,23,[[689,1,1,22,23]]],[25,3,3,23,26,[[809,1,1,23,24],[832,1,1,24,25],[840,1,1,25,26]]],[28,1,1,26,27,[[877,1,1,26,27]]],[37,3,2,27,29,[[911,1,1,27,28],[918,2,1,28,29]]]],[706,831,1094,3806,3822,4053,4482,4484,5774,5779,8582,9240,9397,9401,14451,15023,15171,15667,16486,17061,17080,17098,17897,20607,21239,21473,22329,22892,22978]]],["+",[9,6,[[3,3,2,0,2,[[121,3,2,0,2]]],[10,5,3,2,5,[[304,1,1,2,3],[309,4,2,3,5]]],[22,1,1,5,6,[[689,1,1,5,6]]]],[3806,3822,9240,9397,9401,17897]]],["Enviest",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4053]]],["Envy",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16486]]],["envied",[5,5,[[0,3,3,0,3,[[25,1,1,0,1],[29,1,1,1,2],[36,1,1,2,3]]],[18,1,1,3,4,[[583,1,1,3,4]]],[25,1,1,4,5,[[832,1,1,4,5]]]],[706,831,1094,15667,21239]]],["envious",[4,4,[[18,2,2,0,2,[[514,1,1,0,1],[550,1,1,1,2]]],[19,2,2,2,4,[[651,2,2,2,4]]]],[14451,15023,17080,17098]]],["envy",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17061]]],["jealous",[5,4,[[25,1,1,0,1,[[840,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]],[37,3,2,2,4,[[911,1,1,2,3],[918,2,1,3,4]]]],[21473,22329,22892,22978]]],["jealousy",[5,4,[[4,3,2,0,2,[[184,3,2,0,2]]],[18,1,1,2,3,[[555,1,1,2,3]]],[25,1,1,3,4,[[809,1,1,3,4]]]],[5774,5779,15171,20607]]],["zeal",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8582]]],["zealous",[2,2,[[3,2,2,0,2,[[141,2,2,0,2]]]],[4482,4484]]]]},{"k":"H7066","v":[["buy",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12190]]]]},{"k":"H7067","v":[["*",[6,5,[[1,3,2,0,2,[[69,1,1,0,1],[83,2,1,1,2]]],[4,3,3,2,5,[[156,1,1,2,3],[157,1,1,3,4],[158,1,1,4,5]]]],[2056,2510,5028,5062,5101]]],["Jealous",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2510]]],["jealous",[5,5,[[1,2,2,0,2,[[69,1,1,0,1],[83,1,1,1,2]]],[4,3,3,2,5,[[156,1,1,2,3],[157,1,1,3,4],[158,1,1,4,5]]]],[2056,2510,5028,5062,5101]]]]},{"k":"H7068","v":[["*",[43,41,[[3,9,7,0,7,[[121,7,6,0,6],[141,2,1,6,7]]],[4,1,1,7,8,[[181,1,1,7,8]]],[11,2,2,8,10,[[322,1,1,8,9],[331,1,1,9,10]]],[17,1,1,10,11,[[440,1,1,10,11]]],[18,3,3,11,14,[[546,1,1,11,12],[556,1,1,12,13],[596,1,1,13,14]]],[19,3,3,14,17,[[633,1,1,14,15],[641,1,1,15,16],[654,1,1,16,17]]],[20,2,2,17,19,[[662,1,1,17,18],[667,1,1,18,19]]],[21,1,1,19,20,[[678,1,1,19,20]]],[22,7,7,20,27,[[687,1,1,20,21],[689,1,1,21,22],[704,1,1,22,23],[715,1,1,23,24],[720,1,1,24,25],[737,1,1,25,26],[741,1,1,26,27]]],[25,10,10,27,37,[[806,1,1,27,28],[809,2,2,28,30],[817,2,2,30,32],[824,1,1,32,33],[836,1,1,33,34],[837,2,2,34,36],[839,1,1,36,37]]],[35,2,2,37,39,[[906,1,1,37,38],[908,1,1,38,39]]],[37,2,2,39,41,[[911,1,1,39,40],[918,1,1,40,41]]]],[3806,3807,3810,3817,3821,3822,4482,5699,9809,10092,12953,14944,15190,16037,16574,16802,17173,17385,17481,17646,17836,17897,18141,18384,18493,18817,18881,20559,20607,20609,20800,20804,21032,21355,21364,21365,21444,22805,22828,22892,22978]]],["+",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4482]]],["envied",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17385]]],["envy",[7,7,[[17,1,1,0,1,[[440,1,1,0,1]]],[19,2,2,1,3,[[641,1,1,1,2],[654,1,1,2,3]]],[20,1,1,3,4,[[667,1,1,3,4]]],[22,2,2,4,6,[[689,1,1,4,5],[704,1,1,5,6]]],[25,1,1,6,7,[[836,1,1,6,7]]]],[12953,16802,17173,17481,17897,18141,21355]]],["jealousies",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3821]]],["jealousy",[24,23,[[3,7,6,0,6,[[121,6,5,0,5],[141,1,1,5,6]]],[4,1,1,6,7,[[181,1,1,6,7]]],[18,1,1,7,8,[[556,1,1,7,8]]],[19,1,1,8,9,[[633,1,1,8,9]]],[21,1,1,9,10,[[678,1,1,9,10]]],[22,1,1,10,11,[[720,1,1,10,11]]],[25,8,8,11,19,[[809,2,2,11,13],[817,2,2,13,15],[824,1,1,15,16],[837,2,2,16,18],[839,1,1,18,19]]],[35,2,2,19,21,[[906,1,1,19,20],[908,1,1,20,21]]],[37,2,2,21,23,[[911,1,1,21,22],[918,1,1,22,23]]]],[3806,3807,3810,3817,3822,4482,5699,15190,16574,17646,18493,20607,20609,20800,20804,21032,21364,21365,21444,22805,22828,22892,22978]]],["zeal",[9,9,[[11,2,2,0,2,[[322,1,1,0,1],[331,1,1,1,2]]],[18,2,2,2,4,[[546,1,1,2,3],[596,1,1,3,4]]],[22,4,4,4,8,[[687,1,1,4,5],[715,1,1,5,6],[737,1,1,6,7],[741,1,1,7,8]]],[25,1,1,8,9,[[806,1,1,8,9]]]],[9809,10092,14944,16037,17836,18384,18817,18881,20559]]]]},{"k":"H7069","v":[["*",[84,75,[[0,12,12,0,12,[[3,1,1,0,1],[13,2,2,1,3],[24,1,1,3,4],[32,1,1,4,5],[38,1,1,5,6],[46,4,4,6,10],[48,1,1,10,11],[49,1,1,11,12]]],[1,2,2,12,14,[[64,1,1,12,13],[70,1,1,13,14]]],[2,9,9,14,23,[[111,1,1,14,15],[114,7,7,15,22],[116,1,1,22,23]]],[4,2,2,23,25,[[180,1,1,23,24],[184,1,1,24,25]]],[5,1,1,25,26,[[210,1,1,25,26]]],[7,6,5,26,31,[[235,6,5,26,31]]],[9,5,3,31,34,[[278,1,1,31,32],[290,4,2,32,34]]],[10,1,1,34,35,[[306,1,1,34,35]]],[11,2,2,35,37,[[324,1,1,35,36],[334,1,1,36,37]]],[12,2,1,37,38,[[358,2,1,37,38]]],[13,1,1,38,39,[[400,1,1,38,39]]],[15,2,2,39,41,[[417,2,2,39,41]]],[18,3,3,41,44,[[551,1,1,41,42],[555,1,1,42,43],[616,1,1,43,44]]],[19,14,11,44,55,[[628,1,1,44,45],[631,4,2,45,47],[635,1,1,47,48],[642,1,1,48,49],[643,2,1,49,50],[644,1,1,50,51],[645,1,1,51,52],[646,1,1,52,53],[647,1,1,53,54],[650,1,1,54,55]]],[20,1,1,55,56,[[660,1,1,55,56]]],[22,4,4,56,60,[[679,1,1,56,57],[689,1,1,57,58],[702,1,1,58,59],[721,1,1,59,60]]],[23,13,11,60,71,[[757,3,3,60,63],[763,1,1,63,64],[776,9,7,64,71]]],[25,1,1,71,72,[[808,1,1,71,72]]],[29,1,1,72,73,[[886,1,1,72,73]]],[37,2,2,73,75,[[921,1,1,73,74],[923,1,1,74,75]]]],[80,355,358,668,979,1150,1439,1440,1442,1443,1503,1519,1936,2079,3380,3483,3484,3497,3499,3513,3514,3519,3594,5679,5764,6508,7194,7195,7198,7199,7200,8289,8713,8716,9307,9862,10151,10958,11944,12390,12398,15050,15167,16252,16405,16495,16497,16624,16839,16856,16889,16916,16933,16968,17067,17340,17657,17895,18097,18529,19267,19268,19270,19408,19738,19739,19740,19746,19756,19774,19775,20589,22487,23033,23064]]],["+",[15,12,[[0,2,2,0,2,[[32,1,1,0,1],[46,1,1,1,2]]],[7,1,1,2,3,[[235,1,1,2,3]]],[9,4,2,3,5,[[290,4,2,3,5]]],[10,1,1,5,6,[[306,1,1,5,6]]],[12,2,1,6,7,[[358,2,1,6,7]]],[15,1,1,7,8,[[417,1,1,7,8]]],[22,1,1,8,9,[[689,1,1,8,9]]],[23,3,3,9,12,[[757,1,1,9,10],[776,2,2,10,12]]]],[979,1440,7199,8713,8716,9307,10958,12390,17895,19268,19739,19740]]],["Buy",[5,5,[[7,2,2,0,2,[[235,2,2,0,2]]],[19,1,1,2,3,[[650,1,1,2,3]]],[23,2,2,3,5,[[776,2,2,3,5]]]],[7194,7198,17067,19738,19756]]],["Get",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16495]]],["attain",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16405]]],["bought",[15,15,[[0,5,5,0,5,[[38,1,1,0,1],[46,2,2,1,3],[48,1,1,3,4],[49,1,1,4,5]]],[2,4,4,5,9,[[114,3,3,5,8],[116,1,1,8,9]]],[4,1,1,9,10,[[184,1,1,9,10]]],[5,1,1,10,11,[[210,1,1,10,11]]],[9,1,1,11,12,[[278,1,1,11,12]]],[15,1,1,12,13,[[417,1,1,12,13]]],[22,1,1,13,14,[[721,1,1,13,14]]],[23,1,1,14,15,[[776,1,1,14,15]]]],[1150,1442,1443,1503,1519,3497,3499,3519,3594,5764,6508,8289,12398,18529,19774]]],["buy",[15,15,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,1,1,1,2,[[70,1,1,1,2]]],[2,4,4,2,6,[[111,1,1,2,3],[114,3,3,3,6]]],[4,1,1,6,7,[[180,1,1,6,7]]],[7,1,1,7,8,[[235,1,1,7,8]]],[11,2,2,8,10,[[324,1,1,8,9],[334,1,1,9,10]]],[13,1,1,10,11,[[400,1,1,10,11]]],[23,3,3,11,14,[[776,3,3,11,14]]],[29,1,1,14,15,[[886,1,1,14,15]]]],[1439,2079,3380,3484,3513,3514,5679,7195,9862,10151,11944,19738,19739,19775,22487]]],["buyer",[3,3,[[19,1,1,0,1,[[647,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]],[25,1,1,2,3,[[808,1,1,2,3]]]],[16968,18097,20589]]],["buyest",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[7,1,1,1,2,[[235,1,1,1,2]]]],[3483,7195]]],["cattle",[1,1,[[37,1,1,0,1,[[923,1,1,0,1]]]],[23064]]],["get",[8,6,[[19,6,4,0,4,[[631,3,2,0,2],[643,2,1,2,3],[644,1,1,3,4]]],[23,2,2,4,6,[[757,1,1,4,5],[763,1,1,5,6]]]],[16495,16497,16856,16889,19267,19408]]],["getteth",[3,3,[[19,3,3,0,3,[[642,1,1,0,1],[645,1,1,1,2],[646,1,1,2,3]]]],[16839,16916,16933]]],["got",[2,2,[[20,1,1,0,1,[[660,1,1,0,1]]],[23,1,1,1,2,[[757,1,1,1,2]]]],[17340,19270]]],["gotten",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[80]]],["owner",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17657]]],["possessed",[3,3,[[18,1,1,0,1,[[616,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]],[23,1,1,2,3,[[776,1,1,2,3]]]],[16252,16624,19746]]],["possessor",[2,2,[[0,2,2,0,2,[[13,2,2,0,2]]]],[355,358]]],["possessors",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23033]]],["purchased",[5,5,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[7,1,1,2,3,[[235,1,1,2,3]]],[18,2,2,3,5,[[551,1,1,3,4],[555,1,1,4,5]]]],[668,1936,7200,15050,15167]]]]},{"k":"H7070","v":[["*",[62,38,[[0,2,2,0,2,[[40,2,2,0,2]]],[1,25,11,2,13,[[74,12,5,2,7],[79,1,1,7,8],[86,12,5,8,13]]],[10,1,1,13,14,[[304,1,1,13,14]]],[11,1,1,14,15,[[330,1,1,14,15]]],[17,2,2,15,17,[[466,1,1,15,16],[475,1,1,16,17]]],[18,1,1,17,18,[[545,1,1,17,18]]],[21,1,1,18,19,[[674,1,1,18,19]]],[22,6,6,19,25,[[697,1,1,19,20],[713,1,1,20,21],[714,1,1,21,22],[720,1,1,22,23],[721,1,1,23,24],[724,1,1,24,25]]],[23,1,1,25,26,[[750,1,1,25,26]]],[25,22,12,26,38,[[828,1,1,26,27],[830,1,1,27,28],[841,10,5,28,33],[842,1,1,33,34],[843,9,4,34,38]]]],[1200,1217,2226,2227,2228,2230,2231,2405,2621,2622,2623,2625,2626,9233,10045,13610,13885,14930,17596,18010,18327,18336,18483,18529,18592,19109,21140,21189,21480,21482,21483,21484,21485,21534,21568,21569,21570,21571]]],["+",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13610]]],["balance",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18592]]],["branch",[5,3,[[1,5,3,0,3,[[74,2,1,0,1],[86,3,2,1,3]]]],[2228,2621,2623]]],["branches",[19,9,[[1,19,9,0,9,[[74,10,5,0,5],[86,9,4,5,9]]]],[2226,2227,2228,2230,2231,2622,2623,2625,2626]]],["calamus",[3,3,[[1,1,1,0,1,[[79,1,1,0,1]]],[21,1,1,1,2,[[674,1,1,1,2]]],[25,1,1,2,3,[[828,1,1,2,3]]]],[2405,17596,21140]]],["cane",[2,2,[[22,1,1,0,1,[[721,1,1,0,1]]],[23,1,1,1,2,[[750,1,1,1,2]]]],[18529,19109]]],["reed",[22,16,[[10,1,1,0,1,[[304,1,1,0,1]]],[11,1,1,1,2,[[330,1,1,1,2]]],[17,1,1,2,3,[[475,1,1,2,3]]],[22,2,2,3,5,[[714,1,1,3,4],[720,1,1,4,5]]],[25,17,11,5,16,[[830,1,1,5,6],[841,10,5,6,11],[842,1,1,11,12],[843,5,4,12,16]]]],[9233,10045,13885,18336,18483,21189,21480,21482,21483,21484,21485,21534,21568,21569,21570,21571]]],["reeds",[6,6,[[22,2,2,0,2,[[697,1,1,0,1],[713,1,1,1,2]]],[25,4,4,2,6,[[843,4,4,2,6]]]],[18010,18327,21568,21569,21570,21571]]],["spearmen",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14930]]],["stalk",[2,2,[[0,2,2,0,2,[[40,2,2,0,2]]]],[1200,1217]]]]},{"k":"H7071","v":[["Kanah",[3,3,[[5,3,3,0,3,[[202,1,1,0,1],[203,1,1,1,2],[205,1,1,2,3]]]],[6273,6284,6349]]]]},{"k":"H7072","v":[["jealous",[2,2,[[5,1,1,0,1,[[210,1,1,0,1]]],[33,1,1,1,2,[[900,1,1,1,2]]]],[6495,22686]]]]},{"k":"H7073","v":[["Kenaz",[11,11,[[0,3,3,0,3,[[35,3,3,0,3]]],[5,1,1,3,4,[[201,1,1,3,4]]],[6,3,3,4,7,[[211,1,1,4,5],[213,2,2,5,7]]],[12,4,4,7,11,[[338,2,2,7,9],[341,2,2,9,11]]]],[1051,1055,1082,6219,6522,6577,6579,10288,10305,10398,10400]]]]},{"k":"H7074","v":[["*",[4,4,[[0,1,1,0,1,[[14,1,1,0,1]]],[3,1,1,1,2,[[148,1,1,1,2]]],[5,2,2,2,4,[[200,2,2,2,4]]]],[379,4730,6193,6201]]],["Kenezite",[3,3,[[3,1,1,0,1,[[148,1,1,0,1]]],[5,2,2,1,3,[[200,2,2,1,3]]]],[4730,6193,6201]]],["Kenizzites",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[379]]]]},{"k":"H7075","v":[["*",[10,10,[[0,3,3,0,3,[[30,1,1,0,1],[33,1,1,1,2],[35,1,1,2,3]]],[2,1,1,3,4,[[111,1,1,3,4]]],[5,1,1,4,5,[[200,1,1,4,5]]],[18,2,2,5,7,[[581,1,1,5,6],[582,1,1,6,7]]],[19,1,1,7,8,[[631,1,1,7,8]]],[25,2,2,8,10,[[839,2,2,8,10]]]],[891,1003,1046,3380,6191,15595,15627,16497,21437,21438]]],["+",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3380]]],["getting",[2,2,[[0,1,1,0,1,[[30,1,1,0,1]]],[19,1,1,1,2,[[631,1,1,1,2]]]],[891,16497]]],["goods",[2,2,[[25,2,2,0,2,[[839,2,2,0,2]]]],[21437,21438]]],["riches",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15595]]],["substance",[4,4,[[0,2,2,0,2,[[33,1,1,0,1],[35,1,1,1,2]]],[5,1,1,2,3,[[200,1,1,2,3]]],[18,1,1,3,4,[[582,1,1,3,4]]]],[1003,1046,6191,15627]]]]},{"k":"H7076","v":[["cinnamon",[3,3,[[1,1,1,0,1,[[79,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]],[21,1,1,2,3,[[674,1,1,2,3]]]],[2405,16592,17596]]]]},{"k":"H7077","v":[["*",[5,5,[[18,1,1,0,1,[[581,1,1,0,1]]],[22,1,1,1,2,[[712,1,1,1,2]]],[23,2,2,2,4,[[766,1,1,2,3],[792,1,1,3,4]]],[25,1,1,4,5,[[832,1,1,4,5]]]],[15588,18318,19477,20108,21236]]],["nest",[3,3,[[22,1,1,0,1,[[712,1,1,0,1]]],[23,2,2,1,3,[[766,1,1,1,2],[792,1,1,2,3]]]],[18318,19477,20108]]],["nests",[2,2,[[18,1,1,0,1,[[581,1,1,0,1]]],[25,1,1,1,2,[[832,1,1,1,2]]]],[15588,21236]]]]},{"k":"H7078","v":[["end",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13278]]]]},{"k":"H7079","v":[["Kenath",[2,2,[[3,1,1,0,1,[[148,1,1,0,1]]],[12,1,1,1,2,[[339,1,1,1,2]]]],[4760,10329]]]]},{"k":"H7080","v":[["*",[20,20,[[4,2,2,0,2,[[170,2,2,0,2]]],[5,1,1,2,3,[[199,1,1,2,3]]],[8,2,2,3,5,[[241,1,1,3,4],[263,1,1,4,5]]],[11,1,1,5,6,[[329,1,1,5,6]]],[22,2,2,6,8,[[681,1,1,6,7],[722,1,1,7,8]]],[23,2,2,8,10,[[771,1,1,8,9],[773,1,1,9,10]]],[25,6,6,10,16,[[814,2,2,10,12],[822,3,3,12,15],[823,1,1,15,16]]],[32,3,3,16,19,[[895,3,3,16,19]]],[37,1,1,19,20,[[920,1,1,19,20]]]],[5394,5398,6176,7333,7950,10000,17709,18558,19605,19643,20717,20731,20965,20967,20973,21004,22614,22615,22619,23018]]],["+",[2,2,[[22,1,1,0,1,[[722,1,1,0,1]]],[32,1,1,1,2,[[895,1,1,1,2]]]],[18558,22614]]],["divination",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20967]]],["divine",[5,5,[[8,1,1,0,1,[[263,1,1,0,1]]],[25,3,3,1,4,[[814,2,2,1,3],[822,1,1,3,4]]],[32,1,1,4,5,[[895,1,1,4,5]]]],[7950,20717,20731,20973,22619]]],["diviners",[6,6,[[4,1,1,0,1,[[170,1,1,0,1]]],[8,1,1,1,2,[[241,1,1,1,2]]],[23,2,2,2,4,[[771,1,1,2,3],[773,1,1,3,4]]],[32,1,1,4,5,[[895,1,1,4,5]]],[37,1,1,5,6,[[920,1,1,5,6]]]],[5398,7333,19605,19643,22615,23018]]],["divining",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[21004]]],["prudent",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17709]]],["soothsayer",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6176]]],["use",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20965]]],["used",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10000]]],["useth",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5394]]]]},{"k":"H7081","v":[["*",[11,11,[[3,2,2,0,2,[[138,1,1,0,1],[139,1,1,1,2]]],[4,1,1,2,3,[[170,1,1,2,3]]],[8,1,1,3,4,[[250,1,1,3,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[19,1,1,5,6,[[643,1,1,5,6]]],[23,1,1,6,7,[[758,1,1,6,7]]],[25,4,4,7,11,[[814,2,2,7,9],[822,2,2,9,11]]]],[4382,4439,5394,7583,10000,16850,19307,20714,20731,20965,20966]]],["divination",[8,8,[[3,2,2,0,2,[[138,1,1,0,1],[139,1,1,1,2]]],[4,1,1,2,3,[[170,1,1,2,3]]],[11,1,1,3,4,[[329,1,1,3,4]]],[23,1,1,4,5,[[758,1,1,4,5]]],[25,3,3,5,8,[[814,1,1,5,6],[822,2,2,6,8]]]],[4382,4439,5394,10000,19307,20714,20965,20966]]],["divinations",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20731]]],["sentence",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16850]]],["witchcraft",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7583]]]]},{"k":"H7082","v":[["off",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20834]]]]},{"k":"H7083","v":[["inkhorn",[3,3,[[25,3,3,0,3,[[810,3,3,0,3]]]],[20624,20625,20633]]]]},{"k":"H7084","v":[["*",[18,16,[[5,1,1,0,1,[[201,1,1,0,1]]],[8,14,12,1,13,[[258,14,12,1,13]]],[12,1,1,13,14,[[341,1,1,13,14]]],[15,2,2,14,16,[[415,2,2,14,16]]]],[6246,7811,7812,7813,7814,7815,7816,7817,7818,7820,7821,7822,7823,10404,12344,12345]]],["+",[2,1,[[8,2,1,0,1,[[258,2,1,0,1]]]],[7823]]],["Keilah",[16,15,[[5,1,1,0,1,[[201,1,1,0,1]]],[8,12,11,1,12,[[258,12,11,1,12]]],[12,1,1,12,13,[[341,1,1,12,13]]],[15,2,2,13,15,[[415,2,2,13,15]]]],[6246,7811,7812,7813,7814,7815,7816,7817,7818,7820,7821,7822,10404,12344,12345]]]]},{"k":"H7085","v":[["+",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3309]]]]},{"k":"H7086","v":[["*",[17,17,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[3,15,15,2,17,[[120,1,1,2,3],[123,14,14,3,17]]]],[2224,2620,3750,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3934,3935]]],["charger",[13,13,[[3,13,13,0,13,[[123,13,13,0,13]]]],[3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935]]],["chargers",[1,1,[[3,1,1,0,1,[[123,1,1,0,1]]]],[3934]]],["dishes",[3,3,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]]],[2224,2620,3750]]]]},{"k":"H7087","v":[["*",[4,4,[[1,1,1,0,1,[[64,1,1,0,1]]],[17,1,1,1,2,[[445,1,1,1,2]]],[35,1,1,2,3,[[906,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[1928,13096,22799,23074]]],["congealed",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1928]]],["curdled",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13096]]],["dark",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23074]]],["settled",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22799]]]]},{"k":"H7088","v":[["off",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18402]]]]},{"k":"H7089","v":[["Destruction",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20602]]]]},{"k":"H7090","v":[["bittern",[3,3,[[22,2,2,0,2,[[692,1,1,0,1],[712,1,1,1,2]]],[35,1,1,2,3,[[907,1,1,2,3]]]],[17951,18314,22819]]]]},{"k":"H7091","v":[["owl",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18318]]]]},{"k":"H7092","v":[["*",[7,7,[[4,1,1,0,1,[[167,1,1,0,1]]],[17,2,2,1,3,[[440,1,1,1,2],[459,1,1,2,3]]],[18,2,2,3,5,[[554,1,1,3,4],[584,1,1,4,5]]],[21,1,1,5,6,[[672,1,1,5,6]]],[22,1,1,6,7,[[730,1,1,6,7]]]],[5326,12967,13460,15102,15741,17562,18711]]],["+",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5326]]],["shut",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18711]]],["skipping",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17562]]],["stop",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15741]]],["stoppeth",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12967]]],["up",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15102]]],["way",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13460]]]]},{"k":"H7093","v":[["*",[67,62,[[0,5,5,0,5,[[3,1,1,0,1],[5,1,1,1,2],[7,1,1,2,3],[15,1,1,3,4],[40,1,1,4,5]]],[1,1,1,5,6,[[61,1,1,5,6]]],[3,1,1,6,7,[[129,1,1,6,7]]],[4,3,3,7,10,[[161,1,1,7,8],[167,1,1,8,9],[183,1,1,9,10]]],[6,1,1,10,11,[[221,1,1,10,11]]],[9,2,2,11,13,[[280,1,1,11,12],[281,1,1,12,13]]],[10,2,2,13,15,[[292,1,1,13,14],[307,1,1,14,15]]],[11,1,1,15,16,[[331,1,1,15,16]]],[13,3,3,16,19,[[374,1,1,16,17],[384,1,1,17,18],[387,1,1,18,19]]],[15,1,1,19,20,[[425,1,1,19,20]]],[16,1,1,20,21,[[427,1,1,20,21]]],[17,4,4,21,25,[[441,1,1,21,22],[451,1,1,22,23],[457,1,1,23,24],[463,1,1,24,25]]],[18,2,2,25,27,[[516,1,1,25,26],[596,1,1,26,27]]],[20,3,3,27,30,[[662,2,2,27,29],[670,1,1,29,30]]],[22,4,4,30,34,[[687,1,1,30,31],[701,2,2,31,33],[715,1,1,33,34]]],[23,5,5,34,39,[[757,1,1,34,35],[778,1,1,35,36],[786,1,1,36,37],[794,1,1,37,38],[795,1,1,38,39]]],[24,2,1,39,40,[[800,2,1,39,40]]],[25,9,7,40,47,[[808,5,3,40,43],[822,2,2,43,45],[830,1,1,45,46],[836,1,1,46,47]]],[26,15,13,47,60,[[857,2,2,47,49],[858,2,1,49,50],[860,6,6,50,56],[861,5,4,56,60]]],[29,1,1,60,61,[[886,1,1,60,61]]],[34,1,1,61,62,[[904,1,1,61,62]]]],[82,150,189,384,1196,1857,4100,5168,5320,5738,6868,8382,8396,8809,9324,10084,11347,11544,11643,12677,12736,12989,13241,13394,13507,14516,15994,17389,17397,17535,17836,18092,18094,18376,19272,19815,19982,20192,20225,20438,20579,20580,20583,20969,20973,21196,21349,21978,21980,22014,22042,22049,22063,22071,22076,22081,22085,22087,22090,22094,22483,22751]]],["+",[25,25,[[0,4,4,0,4,[[3,1,1,0,1],[7,1,1,1,2],[15,1,1,2,3],[40,1,1,3,4]]],[1,1,1,4,5,[[61,1,1,4,5]]],[3,1,1,5,6,[[129,1,1,5,6]]],[4,3,3,6,9,[[161,1,1,6,7],[167,1,1,7,8],[183,1,1,8,9]]],[6,1,1,9,10,[[221,1,1,9,10]]],[9,2,2,10,12,[[280,1,1,10,11],[281,1,1,11,12]]],[10,2,2,12,14,[[292,1,1,12,13],[307,1,1,13,14]]],[13,2,2,14,16,[[374,1,1,14,15],[387,1,1,15,16]]],[16,1,1,16,17,[[427,1,1,16,17]]],[17,1,1,17,18,[[457,1,1,17,18]]],[22,2,2,18,20,[[701,2,2,18,20]]],[23,4,4,20,24,[[757,1,1,20,21],[778,1,1,21,22],[786,1,1,22,23],[794,1,1,23,24]]],[25,1,1,24,25,[[830,1,1,24,25]]]],[82,189,384,1196,1857,4100,5168,5320,5738,6868,8382,8396,8809,9324,11347,11643,12736,13394,18092,18094,19272,19815,19982,20192,21196]]],["after",[3,3,[[13,1,1,0,1,[[384,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[11544,12677,22049]]],["border",[1,1,[[22,1,1,0,1,[[715,1,1,0,1]]]],[18376]]],["borders",[1,1,[[11,1,1,0,1,[[331,1,1,0,1]]]],[10084]]],["end",[37,32,[[0,1,1,0,1,[[5,1,1,0,1]]],[17,3,3,1,4,[[441,1,1,1,2],[451,1,1,2,3],[463,1,1,3,4]]],[18,2,2,4,6,[[516,1,1,4,5],[596,1,1,5,6]]],[20,3,3,6,9,[[662,2,2,6,8],[670,1,1,8,9]]],[22,1,1,9,10,[[687,1,1,9,10]]],[23,1,1,10,11,[[795,1,1,10,11]]],[24,2,1,11,12,[[800,2,1,11,12]]],[25,8,6,12,18,[[808,5,3,12,15],[822,2,2,15,17],[836,1,1,17,18]]],[26,14,12,18,30,[[857,2,2,18,20],[858,2,1,20,21],[860,5,5,21,26],[861,5,4,26,30]]],[29,1,1,30,31,[[886,1,1,30,31]]],[34,1,1,31,32,[[904,1,1,31,32]]]],[150,12989,13241,13507,14516,15994,17389,17397,17535,17836,20225,20438,20579,20580,20583,20969,20973,21349,21978,21980,22014,22042,22063,22071,22076,22081,22085,22087,22090,22094,22483,22751]]]]},{"k":"H7094","v":[["*",[2,2,[[11,1,1,0,1,[[318,1,1,0,1]]],[21,1,1,1,2,[[674,1,1,1,2]]]],[9680,17584]]],["down",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9680]]],["shorn",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17584]]]]},{"k":"H7095","v":[["*",[3,3,[[10,2,2,0,2,[[296,1,1,0,1],[297,1,1,1,2]]],[31,1,1,2,3,[[890,1,1,2,3]]]],[8921,8971,22554]]],["bottoms",[1,1,[[31,1,1,0,1,[[890,1,1,0,1]]]],[22554]]],["size",[2,2,[[10,2,2,0,2,[[296,1,1,0,1],[297,1,1,1,2]]]],[8921,8971]]]]},{"k":"H7096","v":[["*",[5,5,[[2,2,2,0,2,[[103,2,2,0,2]]],[11,1,1,2,3,[[322,1,1,2,3]]],[19,1,1,3,4,[[653,1,1,3,4]]],[34,1,1,4,5,[[904,1,1,4,5]]]],[3152,3154,9825,17147,22758]]],["+",[2,2,[[2,1,1,0,1,[[103,1,1,0,1]]],[11,1,1,1,2,[[322,1,1,1,2]]]],[3154,9825]]],["off",[3,3,[[2,1,1,0,1,[[103,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[3152,17147,22758]]]]},{"k":"H7097","v":[["*",[97,87,[[0,6,5,0,5,[[7,1,1,0,1],[18,1,1,1,2],[22,1,1,2,3],[46,3,2,3,5]]],[1,9,7,5,12,[[62,1,1,5,6],[65,1,1,6,7],[68,1,1,7,8],[75,3,2,8,10],[85,3,2,10,12]]],[3,8,8,12,20,[[127,1,1,12,13],[136,1,1,13,14],[138,2,2,14,16],[139,1,1,16,17],[149,2,2,17,19],[150,1,1,19,20]]],[4,9,6,20,26,[[156,2,1,20,21],[165,2,1,21,22],[166,1,1,22,23],[180,3,2,23,25],[182,1,1,25,26]]],[5,15,14,26,40,[[189,3,3,26,29],[190,1,1,29,30],[195,1,1,30,31],[199,1,1,31,32],[201,6,5,32,37],[204,3,3,37,40]]],[6,4,4,40,44,[[216,1,1,40,41],[217,3,3,41,44]]],[7,1,1,44,45,[[234,1,1,44,45]]],[8,4,4,45,49,[[244,1,1,45,46],[249,3,3,46,49]]],[9,1,1,49,50,[[290,1,1,49,50]]],[10,1,1,50,51,[[299,1,1,50,51]]],[11,4,4,51,55,[[319,2,2,51,53],[320,1,1,53,54],[330,1,1,54,55]]],[15,1,1,55,56,[[413,1,1,55,56]]],[18,5,5,56,61,[[496,2,2,56,58],[523,1,1,58,59],[538,1,1,59,60],[612,1,1,60,61]]],[19,1,1,61,62,[[644,1,1,61,62]]],[22,12,11,62,73,[[680,2,1,62,63],[683,1,1,63,64],[685,2,2,64,66],[691,1,1,66,67],[720,1,1,67,68],[721,1,1,68,69],[726,1,1,69,70],[727,1,1,70,71],[734,1,1,71,72],[740,1,1,72,73]]],[23,8,6,73,79,[[754,1,1,73,74],[756,2,1,74,75],[769,3,2,75,77],[795,2,2,77,79]]],[25,5,5,79,84,[[804,1,1,79,80],[826,1,1,80,81],[834,1,1,81,82],[840,1,1,82,83],[849,1,1,83,84]]],[33,3,3,84,87,[[901,1,1,84,85],[902,2,2,85,87]]]],[186,461,580,1422,1441,1887,1982,2038,2240,2263,2578,2599,4025,4327,4411,4416,4429,4766,4797,4819,5036,5279,5318,5660,5675,5712,5895,5901,5908,5929,6053,6181,6203,6204,6207,6210,6223,6308,6309,6312,6675,6705,6711,6713,7179,7418,7510,7535,7551,8700,9061,9712,9715,9730,10034,12305,14172,14174,14623,14821,16182,16897,17692,17765,17785,17800,17911,18490,18511,18634,18642,18764,18865,19214,19261,19565,19567,20228,20243,20518,21092,21282,21462,21703,22708,22715,22721]]],["+",[42,40,[[0,4,4,0,4,[[7,1,1,0,1],[18,1,1,1,2],[46,2,2,2,4]]],[3,1,1,4,5,[[150,1,1,4,5]]],[4,7,5,5,10,[[156,2,1,5,6],[165,1,1,6,7],[166,1,1,7,8],[180,3,2,8,10]]],[5,7,7,10,17,[[189,1,1,10,11],[195,1,1,11,12],[201,4,4,12,16],[204,1,1,16,17]]],[9,1,1,17,18,[[290,1,1,17,18]]],[10,1,1,18,19,[[299,1,1,18,19]]],[11,2,2,19,21,[[320,1,1,19,20],[330,1,1,20,21]]],[18,3,3,21,24,[[496,1,1,21,22],[538,1,1,22,23],[612,1,1,23,24]]],[22,5,5,24,29,[[683,1,1,24,25],[691,1,1,25,26],[720,1,1,26,27],[721,1,1,27,28],[734,1,1,28,29]]],[23,5,5,29,34,[[754,1,1,29,30],[756,1,1,30,31],[769,1,1,31,32],[795,2,2,32,34]]],[25,5,5,34,39,[[804,1,1,34,35],[826,1,1,35,36],[834,1,1,36,37],[840,1,1,37,38],[849,1,1,38,39]]],[33,1,1,39,40,[[902,1,1,39,40]]]],[186,461,1422,1441,4819,5036,5279,5318,5660,5675,5895,6053,6203,6204,6207,6223,6308,8700,9061,9730,10034,14174,14821,16182,17765,17911,18490,18511,18764,19214,19261,19567,20228,20243,20518,21092,21282,21462,21703,22721]]],["border",[2,2,[[1,1,1,0,1,[[68,1,1,0,1]]],[5,1,1,1,2,[[190,1,1,1,2]]]],[2038,5929]]],["borders",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1982]]],["brim",[1,1,[[5,1,1,0,1,[[189,1,1,0,1]]]],[5908]]],["brink",[1,1,[[5,1,1,0,1,[[189,1,1,0,1]]]],[5901]]],["edge",[6,6,[[1,3,3,0,3,[[62,1,1,0,1],[75,1,1,1,2],[85,1,1,2,3]]],[3,2,2,3,5,[[149,2,2,3,5]]],[5,1,1,5,6,[[199,1,1,5,6]]]],[1887,2240,2578,4766,4797,6181]]],["end",[27,25,[[0,2,2,0,2,[[22,1,1,0,1],[46,1,1,1,2]]],[1,3,2,2,4,[[75,2,1,2,3],[85,1,1,3,4]]],[4,1,1,4,5,[[165,1,1,4,5]]],[5,4,4,5,9,[[201,2,2,5,7],[204,2,2,7,9]]],[6,1,1,9,10,[[216,1,1,9,10]]],[7,1,1,10,11,[[234,1,1,10,11]]],[8,3,3,11,14,[[244,1,1,11,12],[249,2,2,12,14]]],[18,2,2,14,16,[[496,1,1,14,15],[523,1,1,15,16]]],[22,6,5,16,21,[[680,2,1,16,17],[685,1,1,17,18],[726,1,1,18,19],[727,1,1,19,20],[740,1,1,20,21]]],[23,2,2,21,23,[[756,1,1,21,22],[769,1,1,22,23]]],[33,2,2,23,25,[[901,1,1,23,24],[902,1,1,24,25]]]],[580,1441,2263,2599,5279,6207,6210,6309,6312,6675,7179,7418,7535,7551,14172,14623,17692,17785,18634,18642,18865,19261,19567,22708,22715]]],["ends",[2,2,[[19,1,1,0,1,[[644,1,1,0,1]]],[23,1,1,1,2,[[769,1,1,1,2]]]],[16897,19565]]],["other",[1,1,[[1,1,1,0,1,[[85,1,1,0,1]]]],[2599]]],["outmost",[1,1,[[4,1,1,0,1,[[182,1,1,0,1]]]],[5712]]],["outside",[3,3,[[6,3,3,0,3,[[217,3,3,0,3]]]],[6705,6711,6713]]],["part",[6,6,[[3,1,1,0,1,[[139,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[11,2,2,2,4,[[319,2,2,2,4]]],[15,1,1,4,5,[[413,1,1,4,5]]],[22,1,1,5,6,[[685,1,1,5,6]]]],[4429,7510,9712,9715,12305,17800]]],["parts",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4025]]],["utmost",[2,2,[[3,2,2,0,2,[[138,2,2,0,2]]]],[4411,4416]]],["uttermost",[1,1,[[3,1,1,0,1,[[136,1,1,0,1]]]],[4327]]]]},{"k":"H7098","v":[["*",[36,31,[[1,21,17,0,17,[[74,4,2,0,2],[75,1,1,2,3],[76,1,1,3,4],[77,5,5,4,9],[85,1,1,9,10],[86,4,2,10,12],[88,5,5,12,17]]],[6,1,1,17,18,[[228,1,1,17,18]]],[10,4,3,18,21,[[296,2,1,18,19],[302,1,1,19,20],[303,1,1,20,21]]],[11,1,1,21,22,[[329,1,1,21,22]]],[17,2,2,22,24,[[461,1,1,22,23],[463,1,1,23,24]]],[18,2,2,24,26,[[496,1,1,24,25],[542,1,1,25,26]]],[22,3,3,26,29,[[718,1,1,26,27],[719,2,2,27,29]]],[23,1,1,29,30,[[793,1,1,29,30]]],[25,1,1,30,31,[[816,1,1,30,31]]]],[2213,2214,2239,2276,2300,2316,2317,2318,2319,2577,2611,2612,2668,2680,2681,2682,2683,6995,8920,9182,9217,10015,13481,13528,14174,14868,18448,18456,18460,20163,20758]]],["+",[12,10,[[1,6,4,0,4,[[74,2,1,0,1],[75,1,1,1,2],[85,1,1,2,3],[86,2,1,3,4]]],[6,1,1,4,5,[[228,1,1,4,5]]],[10,3,3,5,8,[[296,1,1,5,6],[302,1,1,6,7],[303,1,1,7,8]]],[11,1,1,8,9,[[329,1,1,8,9]]],[22,1,1,9,10,[[719,1,1,9,10]]]],[2214,2239,2577,2612,6995,8920,9182,9217,10015,18460]]],["corners",[1,1,[[1,1,1,0,1,[[76,1,1,0,1]]]],[2276]]],["edges",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2300,2668]]],["ends",[17,17,[[1,12,12,0,12,[[74,2,2,0,2],[77,4,4,2,6],[86,2,2,6,8],[88,4,4,8,12]]],[17,1,1,12,13,[[463,1,1,12,13]]],[18,1,1,13,14,[[496,1,1,13,14]]],[22,2,2,14,16,[[718,1,1,14,15],[719,1,1,15,16]]],[25,1,1,16,17,[[816,1,1,16,17]]]],[2213,2214,2316,2317,2318,2319,2611,2612,2680,2681,2682,2683,13528,14174,18448,18456,20758]]],["part",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8920]]],["parts",[2,2,[[17,1,1,0,1,[[461,1,1,0,1]]],[18,1,1,1,2,[[542,1,1,1,2]]]],[13481,14868]]],["quarters",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20163]]]]},{"k":"H7099","v":[["ends",[4,4,[[1,1,1,0,1,[[87,1,1,0,1]]],[18,2,2,1,3,[[525,1,1,1,2],[542,1,1,2,3]]],[22,1,1,3,4,[[704,1,1,3,4]]]],[2638,14644,14865,18145]]]]},{"k":"H7100","v":[["fitches",[3,2,[[22,3,2,0,2,[[706,3,2,0,2]]]],[18189,18191]]]]},{"k":"H7101","v":[["*",[12,12,[[5,1,1,0,1,[[196,1,1,0,1]]],[6,2,2,1,3,[[221,2,2,1,3]]],[19,2,2,3,5,[[633,1,1,3,4],[652,1,1,4,5]]],[22,4,4,5,9,[[679,1,1,5,6],[681,2,2,6,8],[700,1,1,8,9]]],[26,1,1,9,10,[[860,1,1,9,10]]],[32,2,2,10,12,[[895,2,2,10,12]]]],[6088,6835,6840,16547,17128,17664,17713,17714,18055,22054,22609,22617]]],["captain",[2,2,[[6,2,2,0,2,[[221,2,2,0,2]]]],[6835,6840]]],["captains",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6088]]],["guide",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16547]]],["prince",[2,2,[[19,1,1,0,1,[[652,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[17128,22054]]],["princes",[2,2,[[32,2,2,0,2,[[895,2,2,0,2]]]],[22609,22617]]],["ruler",[2,2,[[22,2,2,0,2,[[681,2,2,0,2]]]],[17713,17714]]],["rulers",[2,2,[[22,2,2,0,2,[[679,1,1,0,1],[700,1,1,1,2]]]],[17664,18055]]]]},{"k":"H7102","v":[["cassia",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14605]]]]},{"k":"H7103","v":[["Kezia",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13936]]]]},{"k":"H7104","v":[["Keziz",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6314]]]]},{"k":"H7105","v":[["*",[54,49,[[0,3,3,0,3,[[7,1,1,0,1],[29,1,1,1,2],[44,1,1,2,3]]],[1,3,3,3,6,[[72,1,1,3,4],[83,2,2,4,6]]],[2,7,4,6,10,[[108,2,1,6,7],[112,4,2,7,9],[114,1,1,9,10]]],[4,1,1,10,11,[[176,1,1,10,11]]],[5,1,1,11,12,[[189,1,1,11,12]]],[6,1,1,12,13,[[225,1,1,12,13]]],[7,4,3,13,16,[[232,1,1,13,14],[233,3,2,14,16]]],[8,3,3,16,19,[[241,1,1,16,17],[243,1,1,17,18],[247,1,1,18,19]]],[9,4,3,19,22,[[287,3,2,19,21],[289,1,1,21,22]]],[17,4,4,22,26,[[440,1,1,22,23],[449,1,1,23,24],[453,1,1,24,25],[464,1,1,25,26]]],[18,1,1,26,27,[[557,1,1,26,27]]],[19,5,5,27,32,[[633,1,1,27,28],[637,1,1,28,29],[647,1,1,29,30],[652,1,1,30,31],[653,1,1,31,32]]],[22,8,8,32,40,[[687,1,1,32,33],[694,1,1,33,34],[695,2,2,34,36],[696,2,2,36,38],[701,1,1,38,39],[705,1,1,39,40]]],[23,5,5,40,45,[[749,2,2,40,42],[752,1,1,42,43],[794,1,1,43,44],[795,1,1,44,45]]],[27,1,1,45,46,[[867,1,1,45,46]]],[28,2,2,46,48,[[876,1,1,46,47],[878,1,1,47,48]]],[29,1,1,48,49,[[882,1,1,48,49]]]],[205,844,1364,2160,2517,2518,3290,3412,3424,3474,5544,5908,6930,7149,7170,7172,7344,7381,7477,8589,8590,8666,12956,13190,13292,13551,15209,16548,16661,16958,17126,17142,17832,17978,17988,17994,18001,18002,18080,18162,19075,19082,19173,20182,20245,22178,22302,22356,22417]]],["boughs",[3,3,[[17,1,1,0,1,[[449,1,1,0,1]]],[18,1,1,1,2,[[557,1,1,1,2]]],[22,1,1,2,3,[[705,1,1,2,3]]]],[13190,15209,18162]]],["branch",[2,2,[[17,2,2,0,2,[[453,1,1,0,1],[464,1,1,1,2]]]],[13292,13551]]],["harvest",[47,42,[[0,3,3,0,3,[[7,1,1,0,1],[29,1,1,1,2],[44,1,1,2,3]]],[1,3,3,3,6,[[72,1,1,3,4],[83,2,2,4,6]]],[2,7,4,6,10,[[108,2,1,6,7],[112,4,2,7,9],[114,1,1,9,10]]],[4,1,1,10,11,[[176,1,1,10,11]]],[5,1,1,11,12,[[189,1,1,11,12]]],[6,1,1,12,13,[[225,1,1,12,13]]],[7,4,3,13,16,[[232,1,1,13,14],[233,3,2,14,16]]],[8,3,3,16,19,[[241,1,1,16,17],[243,1,1,17,18],[247,1,1,18,19]]],[9,3,2,19,21,[[287,3,2,19,21]]],[17,1,1,21,22,[[440,1,1,21,22]]],[19,5,5,22,27,[[633,1,1,22,23],[637,1,1,23,24],[647,1,1,24,25],[652,1,1,25,26],[653,1,1,26,27]]],[22,6,6,27,33,[[687,1,1,27,28],[694,1,1,28,29],[695,1,1,29,30],[696,2,2,30,32],[701,1,1,32,33]]],[23,5,5,33,38,[[749,2,2,33,35],[752,1,1,35,36],[794,1,1,36,37],[795,1,1,37,38]]],[27,1,1,38,39,[[867,1,1,38,39]]],[28,2,2,39,41,[[876,1,1,39,40],[878,1,1,40,41]]],[29,1,1,41,42,[[882,1,1,41,42]]]],[205,844,1364,2160,2517,2518,3290,3412,3424,3474,5544,5908,6930,7149,7170,7172,7344,7381,7477,8589,8590,12956,16548,16661,16958,17126,17142,17832,17978,17994,18001,18002,18080,19075,19082,19173,20182,20245,22178,22302,22356,22417]]],["harvestman",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17988]]],["time",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8666]]]]},{"k":"H7106","v":[["*",[2,2,[[2,1,1,0,1,[[103,1,1,0,1]]],[25,1,1,1,2,[[847,1,1,1,2]]]],[3152,21677]]],["corners",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21677]]],["scraped",[1,1,[[2,1,1,0,1,[[103,1,1,0,1]]]],[3152]]]]},{"k":"H7107","v":[["*",[34,32,[[0,2,2,0,2,[[39,1,1,0,1],[40,1,1,1,2]]],[1,1,1,2,3,[[65,1,1,2,3]]],[2,2,2,3,5,[[99,2,2,3,5]]],[3,2,2,5,7,[[132,1,1,5,6],[147,1,1,6,7]]],[4,5,5,7,12,[[153,1,1,7,8],[161,4,4,8,12]]],[5,1,1,12,13,[[208,1,1,12,13]]],[8,1,1,13,14,[[264,1,1,13,14]]],[11,2,2,14,16,[[317,1,1,14,15],[325,1,1,15,16]]],[16,2,2,16,18,[[426,1,1,16,17],[427,1,1,17,18]]],[18,1,1,18,19,[[583,1,1,18,19]]],[20,1,1,19,20,[[663,1,1,19,20]]],[22,8,7,20,27,[[686,1,1,20,21],[725,1,1,21,22],[732,1,1,22,23],[735,3,2,23,25],[742,2,2,25,27]]],[23,1,1,27,28,[[781,1,1,27,28]]],[24,1,1,28,29,[[801,1,1,28,29]]],[37,4,3,29,32,[[911,3,2,29,31],[918,1,1,31,32]]]],[1174,1205,1967,2983,2993,4216,4678,4926,5164,5165,5176,5179,6444,7971,9658,9890,12714,12745,15683,17403,17828,18605,18732,18781,18782,18890,18894,19889,20464,22880,22893,22990]]],["+",[10,10,[[4,3,3,0,3,[[161,3,3,0,3]]],[22,3,3,3,6,[[732,1,1,3,4],[735,1,1,4,5],[742,1,1,5,6]]],[24,1,1,6,7,[[801,1,1,6,7]]],[37,3,3,7,10,[[911,2,2,7,9],[918,1,1,9,10]]]],[5164,5165,5179,18732,18781,18894,20464,22880,22893,22990]]],["angered",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15683]]],["angry",[2,2,[[2,1,1,0,1,[[99,1,1,0,1]]],[20,1,1,1,2,[[663,1,1,1,2]]]],[2993,17403]]],["come",[1,1,[[2,1,1,0,1,[[99,1,1,0,1]]]],[2983]]],["displeased",[1,1,[[37,1,1,0,1,[[911,1,1,0,1]]]],[22893]]],["themselves",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17828]]],["wroth",[18,17,[[0,2,2,0,2,[[39,1,1,0,1],[40,1,1,1,2]]],[1,1,1,2,3,[[65,1,1,2,3]]],[3,2,2,3,5,[[132,1,1,3,4],[147,1,1,4,5]]],[4,2,2,5,7,[[153,1,1,5,6],[161,1,1,6,7]]],[5,1,1,7,8,[[208,1,1,7,8]]],[8,1,1,8,9,[[264,1,1,8,9]]],[11,2,2,9,11,[[317,1,1,9,10],[325,1,1,10,11]]],[16,2,2,11,13,[[426,1,1,11,12],[427,1,1,12,13]]],[22,4,3,13,16,[[725,1,1,13,14],[735,2,1,14,15],[742,1,1,15,16]]],[23,1,1,16,17,[[781,1,1,16,17]]]],[1174,1205,1967,4216,4678,4926,5176,6444,7971,9658,9890,12714,12745,18605,18782,18890,19889]]]]},{"k":"H7108","v":[["furious",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21770]]]]},{"k":"H7109","v":[["wrath",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12196]]]]},{"k":"H7110","v":[["*",[29,29,[[3,3,3,0,3,[[117,1,1,0,1],[132,1,1,1,2],[134,1,1,2,3]]],[4,1,1,3,4,[[181,1,1,3,4]]],[5,2,2,4,6,[[195,1,1,4,5],[208,1,1,5,6]]],[11,1,1,6,7,[[315,1,1,6,7]]],[12,1,1,7,8,[[364,1,1,7,8]]],[13,6,6,8,14,[[385,2,2,8,10],[390,1,1,10,11],[395,1,1,11,12],[398,2,2,12,14]]],[16,1,1,14,15,[[426,1,1,14,15]]],[18,2,2,15,17,[[515,1,1,15,16],[579,1,1,16,17]]],[20,1,1,17,18,[[663,1,1,17,18]]],[22,3,3,18,21,[[712,1,1,18,19],[732,1,1,19,20],[738,1,1,20,21]]],[23,4,4,21,25,[[754,1,1,21,22],[765,1,1,22,23],[776,1,1,23,24],[794,1,1,24,25]]],[27,1,1,25,26,[[871,1,1,25,26]]],[37,3,3,26,29,[[911,2,2,26,28],[917,1,1,28,29]]]],[3657,4240,4262,5707,6057,6446,9603,11133,11578,11586,11695,11799,11900,11901,12720,14491,15531,17414,18305,18731,18831,19211,19445,19768,20179,22232,22880,22893,22974]]],["+",[4,4,[[23,2,2,0,2,[[754,1,1,0,1],[794,1,1,1,2]]],[37,2,2,2,4,[[911,2,2,2,4]]]],[19211,20179,22880,22893]]],["foam",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22232]]],["indignation",[3,3,[[4,1,1,0,1,[[181,1,1,0,1]]],[11,1,1,1,2,[[315,1,1,1,2]]],[22,1,1,2,3,[[712,1,1,2,3]]]],[5707,9603,18305]]],["wrath",[21,21,[[3,3,3,0,3,[[117,1,1,0,1],[132,1,1,1,2],[134,1,1,2,3]]],[5,2,2,3,5,[[195,1,1,3,4],[208,1,1,4,5]]],[12,1,1,5,6,[[364,1,1,5,6]]],[13,6,6,6,12,[[385,2,2,6,8],[390,1,1,8,9],[395,1,1,9,10],[398,2,2,10,12]]],[16,1,1,12,13,[[426,1,1,12,13]]],[18,2,2,13,15,[[515,1,1,13,14],[579,1,1,14,15]]],[20,1,1,15,16,[[663,1,1,15,16]]],[22,2,2,16,18,[[732,1,1,16,17],[738,1,1,17,18]]],[23,2,2,18,20,[[765,1,1,18,19],[776,1,1,19,20]]],[37,1,1,20,21,[[917,1,1,20,21]]]],[3657,4240,4262,6057,6446,11133,11578,11586,11695,11799,11900,11901,12720,14491,15531,17414,18731,18831,19445,19768,22974]]]]},{"k":"H7111","v":[["barked",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22298]]]]},{"k":"H7112","v":[["*",[14,14,[[1,1,1,0,1,[[88,1,1,0,1]]],[4,1,1,1,2,[[177,1,1,1,2]]],[6,2,2,2,4,[[211,2,2,2,4]]],[9,1,1,4,5,[[270,1,1,4,5]]],[11,3,3,5,8,[[328,1,1,5,6],[330,1,1,6,7],[336,1,1,7,8]]],[13,1,1,8,9,[[394,1,1,8,9]]],[18,2,2,9,11,[[523,1,1,9,10],[606,1,1,10,11]]],[23,3,3,11,14,[[753,1,1,11,12],[769,1,1,12,13],[793,1,1,13,14]]]],[2667,5559,6515,6516,8132,9980,10040,10215,11788,14623,16136,19201,19557,20159]]],["+",[6,6,[[4,1,1,0,1,[[177,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]],[9,1,1,2,3,[[270,1,1,2,3]]],[11,2,2,3,5,[[328,1,1,3,4],[336,1,1,4,5]]],[13,1,1,5,6,[[394,1,1,5,6]]]],[5559,6515,8132,9980,10215,11788]]],["asunder",[1,1,[[18,1,1,0,1,[[606,1,1,0,1]]]],[16136]]],["cut",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2667]]],["cutteth",[1,1,[[18,1,1,0,1,[[523,1,1,0,1]]]],[14623]]],["off",[2,2,[[6,1,1,0,1,[[211,1,1,0,1]]],[11,1,1,1,2,[[330,1,1,1,2]]]],[6516,10040]]],["utmost",[3,3,[[23,3,3,0,3,[[753,1,1,0,1],[769,1,1,1,2],[793,1,1,2,3]]]],[19201,19557,20159]]]]},{"k":"H7113","v":[["off",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21851]]]]},{"k":"H7114","v":[["*",[49,46,[[2,7,5,0,5,[[108,2,1,0,1],[112,3,2,1,3],[114,2,2,3,5]]],[3,2,2,5,7,[[127,1,1,5,6],[137,1,1,6,7]]],[4,1,1,7,8,[[176,1,1,7,8]]],[6,2,2,8,10,[[220,1,1,8,9],[226,1,1,9,10]]],[7,7,7,10,17,[[233,7,7,10,17]]],[8,2,2,17,19,[[241,1,1,17,18],[243,1,1,18,19]]],[11,2,2,19,21,[[316,1,1,19,20],[331,1,1,20,21]]],[17,3,3,21,24,[[439,1,1,21,22],[456,1,1,22,23],[459,1,1,23,24]]],[18,4,4,24,28,[[566,1,1,24,25],[579,1,1,25,26],[603,1,1,26,27],[606,1,1,27,28]]],[19,2,2,28,30,[[637,1,1,28,29],[649,1,1,29,30]]],[20,1,1,30,31,[[669,1,1,30,31]]],[22,6,5,31,36,[[695,1,1,31,32],[706,1,1,32,33],[715,1,1,33,34],[728,2,1,34,35],[737,1,1,35,36]]],[23,2,2,36,38,[[753,1,1,36,37],[756,1,1,37,38]]],[25,1,1,38,39,[[843,1,1,38,39]]],[27,3,3,39,42,[[869,1,1,39,40],[871,2,2,40,42]]],[29,1,1,42,43,[[887,1,1,42,43]]],[32,2,2,43,45,[[894,1,1,43,44],[898,1,1,44,45]]],[37,1,1,45,46,[[921,1,1,45,46]]]],[3290,3412,3424,3474,3480,4047,4344,5544,6827,6965,7152,7153,7154,7155,7156,7158,7163,7344,7381,9621,10090,12938,13359,13442,15371,15544,16120,16139,16683,17023,17517,17988,18184,18382,18664,18801,19197,19262,21557,22201,22237,22238,22508,22602,22663,23036]]],["+",[7,5,[[2,5,4,0,4,[[108,2,1,0,1],[112,2,2,1,3],[114,1,1,3,4]]],[22,2,1,4,5,[[728,2,1,4,5]]]],[3290,3412,3424,3480,18664]]],["discouraged",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4344]]],["down",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5544]]],["grieved",[1,1,[[6,1,1,0,1,[[220,1,1,0,1]]]],[6827]]],["harvestman",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19197]]],["lothed",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23036]]],["mower",[1,1,[[18,1,1,0,1,[[606,1,1,0,1]]]],[16139]]],["reap",[14,14,[[2,1,1,0,1,[[114,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[8,1,1,2,3,[[243,1,1,2,3]]],[11,1,1,3,4,[[331,1,1,3,4]]],[17,2,2,4,6,[[439,1,1,4,5],[459,1,1,5,6]]],[18,1,1,6,7,[[603,1,1,6,7]]],[19,1,1,7,8,[[649,1,1,7,8]]],[20,1,1,8,9,[[669,1,1,8,9]]],[22,1,1,9,10,[[715,1,1,9,10]]],[23,1,1,10,11,[[756,1,1,10,11]]],[27,2,2,11,13,[[869,1,1,11,12],[871,1,1,12,13]]],[32,1,1,13,14,[[898,1,1,13,14]]]],[3474,7158,7381,10090,12938,13442,16120,17023,17517,18382,19262,22201,22237,22663]]],["reaped",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22238]]],["reaper",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22508]]],["reapers",[7,7,[[7,6,6,0,6,[[233,6,6,0,6]]],[11,1,1,6,7,[[316,1,1,6,7]]]],[7152,7153,7154,7155,7156,7163,9621]]],["reapest",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3424]]],["reapeth",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17988]]],["reaping",[1,1,[[8,1,1,0,1,[[241,1,1,0,1]]]],[7344]]],["short",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4047]]],["shortened",[4,4,[[18,2,2,0,2,[[566,1,1,0,1],[579,1,1,1,2]]],[19,1,1,2,3,[[637,1,1,2,3]]],[22,1,1,3,4,[[737,1,1,3,4]]]],[15371,15544,16683,18801]]],["shorter",[2,2,[[22,1,1,0,1,[[706,1,1,0,1]]],[25,1,1,1,2,[[843,1,1,1,2]]]],[18184,21557]]],["straitened",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22602]]],["troubled",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13359]]],["vexed",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6965]]]]},{"k":"H7115","v":[["+",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1664]]]]},{"k":"H7116","v":[["*",[5,5,[[11,1,1,0,1,[[331,1,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[19,2,2,2,4,[[641,2,2,2,4]]],[22,1,1,4,5,[[715,1,1,4,5]]]],[10087,13182,16789,16801,18379]]],["few",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13182]]],["hasty",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16801]]],["small",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10087,18379]]],["soon",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16789]]]]},{"k":"H7117","v":[["+",[5,5,[[15,1,1,0,1,[[419,1,1,0,1]]],[26,4,4,1,5,[[850,4,4,1,5]]]],[12490,21739,21742,21752,21755]]]]},{"k":"H7118","v":[["*",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[853,2,2,1,3]]]],[21800,21866,21871]]],["+",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21800]]],["end",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21866,21871]]]]},{"k":"H7119","v":[["cold",[2,2,[[19,1,1,0,1,[[652,1,1,0,1]]],[23,1,1,1,2,[[762,1,1,1,2]]]],[17138,19398]]]]},{"k":"H7120","v":[["cold",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[205]]]]},{"k":"H7121","v":[["*",[737,691,[[0,111,102,0,102,[[0,5,3,0,3],[1,4,3,3,6],[2,2,2,6,8],[3,4,3,8,11],[4,3,3,11,14],[10,1,1,14,15],[11,2,2,15,17],[12,1,1,17,18],[15,4,4,18,22],[16,3,3,22,25],[18,4,4,25,29],[19,2,2,29,31],[20,5,5,31,36],[21,3,3,36,39],[23,2,2,39,41],[24,3,3,41,44],[25,8,7,44,51],[26,3,3,51,54],[27,2,2,54,56],[28,4,4,56,60],[29,8,8,60,68],[30,5,4,68,72],[31,2,2,72,74],[32,2,2,74,76],[34,7,5,76,81],[37,5,5,81,86],[38,4,3,86,89],[40,6,6,89,95],[44,1,1,95,96],[45,1,1,96,97],[46,1,1,97,98],[47,2,2,98,100],[48,1,1,100,101],[49,1,1,101,102]]],[1,34,34,102,136,[[50,1,1,102,103],[51,5,5,103,108],[52,1,1,108,109],[56,1,1,109,110],[57,2,2,110,112],[58,1,1,112,113],[59,2,2,113,115],[61,2,2,115,117],[64,1,1,117,118],[65,1,1,118,119],[66,2,2,119,121],[68,3,3,121,124],[73,2,2,124,126],[80,1,1,126,127],[81,1,1,127,128],[82,2,2,128,130],[83,4,4,130,134],[84,1,1,134,135],[85,1,1,135,136]]],[2,9,9,136,145,[[90,1,1,136,137],[98,1,1,137,138],[99,1,1,138,139],[102,1,1,139,140],[112,4,4,140,144],[114,1,1,144,145]]],[3,16,16,145,161,[[117,1,1,145,146],[127,2,2,146,148],[128,1,1,148,149],[129,2,2,149,151],[132,1,1,151,152],[137,1,1,152,153],[138,3,3,153,156],[140,1,1,156,157],[141,1,1,157,158],[148,3,3,158,161]]],[4,22,21,161,182,[[154,2,2,161,163],[155,4,3,163,166],[156,1,1,166,167],[157,1,1,167,168],[167,2,2,168,170],[169,1,1,170,171],[172,1,1,171,172],[176,1,1,172,173],[177,2,2,173,175],[180,1,1,175,176],[181,1,1,176,177],[183,3,3,177,180],[184,1,1,180,181],[185,1,1,181,182]]],[5,15,15,182,197,[[190,1,1,182,183],[191,1,1,183,184],[192,1,1,184,185],[193,1,1,185,186],[194,2,2,186,188],[195,1,1,188,189],[196,1,1,189,190],[205,1,1,190,191],[207,1,1,191,192],[208,2,2,192,194],[209,1,1,194,195],[210,2,2,195,197]]],[6,27,26,197,223,[[211,2,2,197,199],[212,1,1,199,200],[214,1,1,200,201],[216,2,2,201,203],[217,2,2,203,205],[218,1,1,205,206],[219,2,2,206,208],[220,1,1,208,209],[222,1,1,209,210],[223,1,1,210,211],[224,1,1,211,212],[225,3,3,212,215],[226,5,4,215,219],[228,3,3,219,222],[231,1,1,222,223]]],[7,7,5,223,228,[[232,3,2,223,225],[235,4,3,225,228]]],[8,37,31,228,259,[[236,1,1,228,229],[238,12,7,229,236],[239,1,1,236,237],[241,1,1,237,238],[242,1,1,238,239],[244,5,5,239,244],[247,2,2,244,246],[251,3,3,246,249],[252,1,1,249,250],[254,1,1,250,251],[255,2,2,251,253],[257,1,1,253,254],[258,1,1,254,255],[259,1,1,255,256],[261,2,1,256,257],[263,1,1,257,258],[264,1,1,258,259]]],[9,30,28,259,287,[[267,2,2,259,261],[268,2,2,261,263],[271,2,2,263,265],[272,2,2,265,267],[275,2,2,267,269],[277,1,1,269,270],[278,3,3,270,273],[279,2,2,273,275],[280,1,1,275,276],[281,2,2,276,278],[283,1,1,278,279],[284,5,4,279,283],[286,1,1,283,284],[287,1,1,284,285],[288,3,2,285,287]]],[10,43,39,287,326,[[291,10,9,287,296],[292,2,2,296,298],[297,2,1,298,299],[298,3,2,299,301],[299,1,1,301,302],[302,2,2,302,304],[303,4,4,304,308],[306,1,1,308,309],[307,4,4,309,313],[308,7,6,313,319],[310,2,2,319,321],[311,3,3,321,324],[312,2,2,324,326]]],[11,34,29,326,355,[[315,2,2,326,328],[316,8,4,328,332],[317,2,2,332,334],[318,1,1,334,335],[319,2,2,335,337],[320,1,1,337,338],[321,1,1,338,339],[322,2,2,339,341],[323,1,1,341,342],[324,1,1,342,343],[326,1,1,343,344],[330,3,3,344,347],[331,1,1,347,348],[332,1,1,348,349],[334,3,3,349,352],[335,4,3,352,355]]],[12,14,14,355,369,[[341,2,2,355,357],[343,1,1,357,358],[344,2,2,358,360],[348,1,1,360,361],[350,2,2,361,363],[351,1,1,363,364],[352,1,1,364,365],[353,1,1,365,366],[358,1,1,366,367],[359,1,1,367,368],[360,1,1,368,369]]],[13,15,14,369,383,[[369,1,1,369,370],[372,2,1,370,371],[373,1,1,371,372],[376,1,1,372,373],[380,1,1,373,374],[384,2,2,374,376],[386,2,2,376,378],[390,1,1,378,379],[398,1,1,379,380],[400,3,3,380,383]]],[14,2,2,383,385,[[404,1,1,383,384],[410,1,1,384,385]]],[15,8,8,385,393,[[417,1,1,385,386],[418,1,1,386,387],[419,1,1,387,388],[420,3,3,388,391],[421,1,1,391,392],[425,1,1,392,393]]],[16,11,10,393,403,[[427,1,1,393,394],[428,1,1,394,395],[429,3,2,395,397],[430,1,1,397,398],[431,3,3,398,401],[433,1,1,401,402],[434,1,1,402,403]]],[17,10,10,403,413,[[436,1,1,403,404],[440,1,1,404,405],[444,1,1,405,406],[447,1,1,406,407],[448,1,1,407,408],[449,1,1,408,409],[452,1,1,409,410],[454,1,1,410,411],[462,1,1,411,412],[477,1,1,412,413]]],[18,56,53,413,466,[[480,1,1,413,414],[481,2,2,414,416],[491,1,1,416,417],[494,1,1,417,418],[495,2,2,418,420],[497,1,1,420,421],[499,1,1,421,422],[504,1,1,422,423],[505,1,1,423,424],[507,1,1,424,425],[508,1,1,425,426],[511,1,1,426,427],[519,1,1,427,428],[526,1,1,428,429],[527,3,3,429,432],[530,1,1,432,433],[532,1,1,433,434],[533,1,1,434,435],[534,1,1,435,436],[538,1,1,436,437],[543,1,1,437,438],[546,1,1,438,439],[556,1,1,439,440],[557,1,1,440,441],[558,1,1,441,442],[563,3,3,442,445],[565,1,1,445,446],[566,1,1,446,447],[568,1,1,447,448],[576,2,1,448,449],[579,1,1,449,450],[582,2,2,450,452],[593,4,4,452,456],[595,1,1,456,457],[596,2,2,457,459],[597,1,1,459,460],[607,1,1,460,461],[615,1,1,461,462],[618,2,1,462,463],[622,2,1,463,464],[624,2,2,464,466]]],[19,17,17,466,483,[[628,3,3,466,469],[629,1,1,469,470],[634,1,1,470,471],[635,2,2,471,473],[636,3,3,473,476],[639,1,1,476,477],[643,1,1,477,478],[645,1,1,478,479],[647,1,1,479,480],[648,1,1,480,481],[651,1,1,481,482],[654,1,1,482,483]]],[20,1,1,483,484,[[664,1,1,483,484]]],[21,1,1,484,485,[[675,1,1,484,485]]],[22,85,83,485,568,[[679,2,2,485,487],[682,1,1,487,488],[684,2,2,488,490],[685,2,2,490,492],[686,2,2,492,494],[687,1,1,494,495],[690,1,1,495,496],[691,1,1,496,497],[692,1,1,497,498],[699,2,2,498,500],[700,2,2,500,502],[707,2,2,502,504],[708,1,1,504,505],[709,1,1,505,506],[710,1,1,506,507],[712,3,3,507,510],[713,1,1,510,511],[714,1,1,511,512],[715,1,1,512,513],[718,5,4,513,517],[719,4,4,517,521],[720,1,1,521,522],[721,3,3,522,525],[722,2,2,525,527],[723,2,2,527,529],[724,1,1,529,530],[725,2,2,530,532],[726,6,6,532,538],[727,1,1,538,539],[728,1,1,539,540],[729,1,1,540,541],[732,2,2,541,543],[733,2,2,543,545],[734,1,1,545,546],[736,5,5,546,551],[737,1,1,551,552],[738,2,2,552,554],[739,4,4,554,558],[740,4,3,558,561],[741,1,1,561,562],[742,1,1,562,563],[743,4,4,563,567],[744,1,1,567,568]]],[23,63,58,568,626,[[745,1,1,568,569],[746,1,1,569,570],[747,4,4,570,574],[748,2,2,574,576],[750,1,1,576,577],[751,7,7,577,584],[753,1,1,584,585],[754,1,1,585,586],[755,3,3,586,589],[756,1,1,589,590],[758,1,1,590,591],[759,1,1,591,592],[763,2,2,592,594],[764,2,2,594,596],[767,1,1,596,597],[769,2,1,597,598],[773,2,2,598,600],[774,1,1,600,601],[775,1,1,601,602],[776,1,1,602,603],[777,2,2,603,605],[778,5,3,605,608],[779,1,1,608,609],[780,13,11,609,620],[786,1,1,620,621],[788,1,1,621,622],[790,1,1,622,623],[793,1,1,623,624],[795,2,2,624,626]]],[24,7,7,626,633,[[797,3,3,626,629],[798,1,1,629,630],[799,2,2,630,632],[800,1,1,632,633]]],[25,9,9,633,642,[[809,1,1,633,634],[810,2,2,634,636],[811,1,1,636,637],[821,1,1,637,638],[824,1,1,638,639],[837,1,1,639,640],[839,1,1,640,641],[840,1,1,641,642]]],[26,5,5,642,647,[[851,1,1,642,643],[857,1,1,643,644],[858,2,2,644,646],[859,1,1,646,647]]],[27,10,9,647,656,[[862,3,3,647,650],[863,2,1,650,651],[868,2,2,651,653],[872,3,3,653,656]]],[28,6,5,656,661,[[876,2,2,656,658],[877,3,2,658,660],[878,1,1,660,661]]],[29,6,6,661,667,[[882,1,1,661,662],[883,2,2,662,664],[885,1,1,664,665],[887,2,2,665,667]]],[31,8,8,667,675,[[889,3,3,667,670],[890,1,1,670,671],[891,4,4,671,675]]],[32,2,2,675,677,[[895,1,1,675,676],[898,1,1,676,677]]],[34,1,1,677,678,[[904,1,1,677,678]]],[35,2,2,678,680,[[906,1,1,678,679],[908,1,1,679,680]]],[36,1,1,680,681,[[909,1,1,680,681]]],[37,11,9,681,690,[[911,3,3,681,684],[913,1,1,684,685],[917,3,2,685,687],[918,1,1,687,688],[921,2,1,688,689],[923,1,1,689,690]]],[38,1,1,690,691,[[925,1,1,690,691]]]],[4,7,9,49,50,53,64,75,96,104,105,107,108,134,275,306,316,322,392,394,395,396,402,412,416,462,479,494,495,503,504,516,525,530,544,546,558,561,562,648,649,683,684,688,701,710,712,713,714,717,725,728,763,769,774,792,827,828,829,830,836,838,841,843,848,850,851,854,877,920,921,927,930,958,977,980,1018,1019,1021,1026,1029,1122,1123,1124,1148,1149,1163,1164,1167,1203,1209,1238,1240,1246,1247,1359,1419,1449,1457,1467,1474,1517,1550,1561,1562,1564,1574,1576,1583,1696,1718,1735,1769,1793,1801,1837,1847,1943,1978,1990,1998,2029,2033,2046,2184,2193,2422,2443,2480,2492,2501,2502,2511,2527,2561,2568,2746,2954,2981,3097,3404,3406,3423,3439,3479,3620,4027,4058,4064,4091,4099,4206,4343,4380,4395,4412,4456,4473,4756,4759,4760,4949,4958,4984,4988,4989,5011,5054,5321,5328,5383,5437,5540,5555,5557,5621,5681,5735,5739,5742,5761,5829,5914,5943,5955,6002,6036,6037,6059,6088,6368,6390,6427,6460,6462,6477,6485,6526,6535,6550,6605,6678,6686,6697,6714,6720,6761,6808,6815,6870,6908,6924,6946,6947,6948,6967,6968,6974,6977,7005,7016,7022,7115,7147,7148,7201,7204,7207,7232,7280,7281,7282,7284,7285,7286,7292,7318,7333,7364,7400,7404,7413,7415,7417,7477,7478,7598,7600,7603,7626,7713,7767,7768,7798,7838,7847,7919,7957,7973,8029,8037,8065,8075,8141,8152,8159,8165,8229,8236,8272,8310,8311,8314,8334,8340,8389,8391,8400,8454,8496,8503,8504,8506,8570,8582,8606,8609,8726,8727,8736,8742,8743,8745,8749,8758,8766,8806,8812,8955,9028,9037,9064,9154,9171,9186,9188,9205,9216,9307,9327,9328,9337,9338,9344,9365,9366,9367,9368,9369,9415,9435,9460,9463,9469,9489,9493,9586,9589,9615,9618,9625,9639,9654,9658,9685,9717,9718,9728,9757,9812,9813,9843,9857,9903,10028,10042,10052,10075,10109,10153,10155,10161,10167,10181,10182,10394,10395,10519,10551,10558,10680,10766,10771,10785,10802,10828,10960,10970,10997,11246,11315,11338,11398,11486,11550,11554,11590,11613,11683,11893,11951,11957,11963,12088,12222,12394,12408,12483,12496,12501,12511,12514,12672,12738,12759,12767,12773,12791,12794,12802,12804,12826,12860,12873,12952,13067,13132,13175,13196,13274,13313,13491,13936,13961,13966,13968,14084,14109,14121,14124,14191,14206,14292,14300,14327,14348,14394,14562,14659,14669,14672,14683,14723,14748,14764,14770,14821,14890,14938,15191,15216,15224,15287,15289,15291,15317,15352,15410,15505,15523,15607,15622,15850,15852,15861,15865,15874,16043,16044,16075,16141,16234,16277,16338,16355,16360,16421,16424,16428,16436,16579,16603,16606,16641,16653,16656,16742,16861,16907,16960,16997,17087,17185,17427,17604,17667,17680,17734,17772,17773,17785,17796,17810,17811,17835,17904,17909,17948,18043,18046,18064,18072,18204,18205,18224,18254,18264,18315,18317,18319,18328,18343,18366,18422,18423,18426,18446,18453,18455,18460,18476,18486,18506,18512,18527,18538,18540,18564,18565,18597,18600,18604,18615,18616,18622,18626,18627,18629,18637,18664,18675,18728,18729,18745,18746,18760,18787,18791,18795,18798,18799,18804,18835,18839,18844,18845,18846,18849,18856,18858,18866,18885,18892,18898,18909,18912,18921,18926,18961,18967,19006,19014,19019,19021,19032,19047,19119,19121,19129,19130,19132,19133,19146,19149,19192,19226,19232,19240,19242,19255,19302,19331,19409,19413,19425,19430,19490,19563,19647,19664,19684,19697,19765,19778,19791,19809,19816,19818,19840,19846,19848,19850,19851,19852,19855,19856,19857,19860,19863,19865,19983,20036,20062,20156,20273,20275,20325,20329,20331,20354,20409,20411,20435,20622,20623,20625,20646,20924,21030,21388,21446,21459,21760,21977,22006,22007,22016,22098,22100,22103,22121,22185,22189,22241,22242,22247,22305,22310,22326,22343,22352,22415,22431,22439,22468,22501,22507,22533,22537,22545,22550,22560,22562,22563,22566,22613,22657,22750,22794,22829,22851,22882,22892,22895,22922,22969,22975,22979,23035,23068,23093]]],["+",[77,75,[[0,24,24,0,24,[[3,1,1,0,1],[4,3,3,1,4],[16,2,2,4,6],[20,1,1,6,7],[26,2,2,7,9],[27,2,2,9,11],[29,5,5,11,16],[34,2,2,16,18],[37,3,3,18,21],[40,3,3,21,24]]],[1,3,3,24,27,[[51,1,1,24,25],[65,1,1,25,26],[85,1,1,26,27]]],[2,1,1,27,28,[[99,1,1,27,28]]],[3,2,2,28,30,[[127,1,1,28,29],[148,1,1,29,30]]],[4,3,3,30,33,[[157,1,1,30,31],[183,2,2,31,33]]],[5,3,3,33,36,[[190,1,1,33,34],[192,1,1,34,35],[194,1,1,35,36]]],[6,1,1,36,37,[[223,1,1,36,37]]],[7,1,1,37,38,[[235,1,1,37,38]]],[8,9,9,38,47,[[236,1,1,38,39],[238,3,3,39,42],[242,1,1,42,43],[244,1,1,43,44],[251,1,1,44,45],[257,1,1,45,46],[264,1,1,46,47]]],[9,3,3,47,50,[[278,2,2,47,49],[279,1,1,49,50]]],[10,6,5,50,55,[[291,1,1,50,51],[297,2,1,51,52],[306,1,1,52,53],[308,1,1,53,54],[312,1,1,54,55]]],[11,7,6,55,61,[[316,2,1,55,56],[317,1,1,56,57],[318,1,1,57,58],[326,1,1,58,59],[335,2,2,59,61]]],[12,1,1,61,62,[[344,1,1,61,62]]],[13,1,1,62,63,[[373,1,1,62,63]]],[15,1,1,63,64,[[417,1,1,63,64]]],[18,1,1,64,65,[[526,1,1,64,65]]],[20,1,1,65,66,[[664,1,1,65,66]]],[23,8,8,66,74,[[747,1,1,66,67],[755,1,1,67,68],[773,1,1,68,69],[780,2,2,69,71],[786,1,1,71,72],[795,2,2,72,74]]],[29,1,1,74,75,[[887,1,1,74,75]]]],[105,107,108,134,412,416,516,728,763,774,792,841,843,850,851,854,1021,1026,1122,1123,1124,1203,1209,1246,1576,1978,2568,2981,4058,4756,5054,5739,5742,5914,5955,6036,6908,7201,7232,7280,7285,7292,7364,7417,7603,7798,7973,8310,8311,8334,8726,8955,9307,9344,9489,9639,9654,9685,9903,10181,10182,10558,11338,12394,14659,17427,19014,19232,19664,19846,19860,19983,20273,20275,22507]]],["Call",[13,13,[[6,1,1,0,1,[[226,1,1,0,1]]],[7,1,1,1,2,[[232,1,1,1,2]]],[9,1,1,2,3,[[283,1,1,2,3]]],[10,2,2,3,5,[[291,2,2,3,5]]],[11,2,2,5,7,[[316,2,2,5,7]]],[17,1,1,7,8,[[440,1,1,7,8]]],[22,1,1,8,9,[[686,1,1,8,9]]],[23,1,1,9,10,[[777,1,1,9,10]]],[27,3,3,10,13,[[862,3,3,10,13]]]],[6974,7147,8454,8745,8749,9615,9618,12952,17810,19778,22098,22100,22103]]],["Calling",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18597]]],["Cry",[5,5,[[10,1,1,0,1,[[308,1,1,0,1]]],[22,2,2,1,3,[[718,1,1,1,2],[736,1,1,2,3]]],[37,2,2,3,5,[[911,2,2,3,5]]]],[9368,18426,18787,22892,22895]]],["Proclaim",[2,2,[[10,1,1,0,1,[[311,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]]],[9460,22352]]],["Read",[2,2,[[22,2,2,0,2,[[707,2,2,0,2]]]],[18204,18205]]],["against",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9435]]],["bewrayeth",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17185]]],["bidden",[2,2,[[8,2,2,0,2,[[244,2,2,0,2]]]],[7404,7413]]],["call",[98,93,[[0,5,5,0,5,[[1,1,1,0,1],[3,1,1,1,2],[15,1,1,2,3],[23,1,1,3,4],[45,1,1,4,5]]],[1,3,3,5,8,[[51,2,2,5,7],[83,1,1,7,8]]],[3,4,4,8,12,[[132,1,1,8,9],[138,3,3,9,12]]],[4,7,6,12,18,[[154,2,2,12,14],[155,2,1,14,15],[156,1,1,15,16],[177,1,1,16,17],[185,1,1,17,18]]],[6,2,2,18,20,[[222,1,1,18,19],[231,1,1,19,20]]],[7,2,2,20,22,[[232,2,2,20,22]]],[8,4,4,22,26,[[238,2,2,22,24],[247,1,1,24,25],[251,1,1,25,26]]],[10,5,4,26,30,[[298,1,1,26,27],[308,3,2,27,29],[312,1,1,29,30]]],[11,2,2,30,32,[[317,1,1,30,31],[322,1,1,31,32]]],[12,1,1,32,33,[[353,1,1,32,33]]],[13,1,1,33,34,[[384,1,1,33,34]]],[17,2,2,34,36,[[448,1,1,34,35],[449,1,1,35,36]]],[18,14,13,36,49,[[481,2,2,36,38],[491,1,1,38,39],[495,1,1,39,40],[497,1,1,40,41],[527,1,1,41,42],[532,1,1,42,43],[557,1,1,43,44],[579,1,1,44,45],[582,1,1,45,46],[593,2,2,46,48],[622,2,1,48,49]]],[19,3,3,49,52,[[634,1,1,49,50],[635,1,1,50,51],[636,1,1,51,52]]],[22,20,20,52,72,[[685,1,1,52,53],[690,1,1,53,54],[700,2,2,54,56],[712,1,1,56,57],[719,1,1,57,58],[722,2,2,58,60],[723,1,1,60,61],[726,1,1,61,62],[733,2,2,62,64],[736,3,3,64,67],[738,2,2,67,69],[740,1,1,69,70],[743,2,2,70,72]]],[23,7,7,72,79,[[745,1,1,72,73],[747,2,2,73,75],[750,1,1,75,76],[751,1,1,76,77],[753,1,1,77,78],[754,1,1,78,79]]],[25,2,2,79,81,[[837,1,1,79,80],[840,1,1,80,81]]],[26,1,1,81,82,[[851,1,1,81,82]]],[27,3,2,82,84,[[863,2,1,82,83],[868,1,1,83,84]]],[28,4,3,84,87,[[876,1,1,84,85],[877,3,2,85,87]]],[29,1,1,87,88,[[883,1,1,87,88]]],[31,1,1,88,89,[[889,1,1,88,89]]],[35,1,1,89,90,[[908,1,1,89,90]]],[37,2,2,90,92,[[913,1,1,90,91],[923,1,1,91,92]]],[38,1,1,92,93,[[925,1,1,92,93]]]],[49,105,392,648,1419,1561,1574,2511,4206,4380,4395,4412,4949,4958,4984,5011,5555,5829,6870,7115,7147,7148,7282,7284,7477,7598,9037,9365,9366,9493,9658,9812,10828,11554,13175,13196,13966,13968,14084,14121,14191,14672,14748,15216,15523,15607,15861,15865,16338,16579,16606,16653,17796,17904,18064,18072,18315,18476,18538,18540,18564,18627,18745,18746,18791,18795,18799,18835,18839,18866,18912,18921,18961,19019,19021,19119,19146,19192,19226,21388,21459,21760,22121,22189,22305,22326,22343,22439,22537,22829,22922,23068,23093]]],["called",[312,301,[[0,75,70,0,70,[[0,5,3,0,3],[1,2,2,3,5],[2,2,2,5,7],[3,2,2,7,9],[10,1,1,9,10],[11,2,2,10,12],[12,1,1,12,13],[15,3,3,13,16],[16,1,1,16,17],[18,4,4,17,21],[19,2,2,21,23],[20,4,4,23,27],[21,3,3,27,30],[23,1,1,30,31],[24,3,3,31,34],[25,8,7,34,41],[26,1,1,41,42],[28,4,4,42,46],[29,3,3,46,49],[30,5,4,49,53],[31,2,2,53,55],[32,2,2,55,57],[34,5,4,57,61],[37,2,2,61,63],[38,1,1,63,64],[40,2,2,64,66],[46,1,1,66,67],[47,1,1,67,68],[48,1,1,68,69],[49,1,1,69,70]]],[1,22,22,70,92,[[51,2,2,70,72],[52,1,1,72,73],[56,1,1,73,74],[57,2,2,74,76],[58,1,1,76,77],[59,2,2,77,79],[61,2,2,79,81],[64,1,1,81,82],[66,2,2,82,84],[68,3,3,84,87],[73,1,1,87,88],[80,1,1,88,89],[82,1,1,89,90],[83,1,1,90,91],[84,1,1,91,92]]],[2,2,2,92,94,[[90,1,1,92,93],[98,1,1,93,94]]],[3,9,9,94,103,[[127,1,1,94,95],[128,1,1,95,96],[129,2,2,96,98],[137,1,1,98,99],[140,1,1,99,100],[141,1,1,100,101],[148,2,2,101,103]]],[4,7,7,103,110,[[155,2,2,103,105],[167,1,1,105,106],[177,1,1,106,107],[180,1,1,107,108],[181,1,1,108,109],[183,1,1,109,110]]],[5,10,10,110,120,[[191,1,1,110,111],[193,1,1,111,112],[195,1,1,112,113],[196,1,1,113,114],[205,1,1,114,115],[208,2,2,115,117],[209,1,1,117,118],[210,2,2,118,120]]],[6,18,18,120,138,[[211,2,2,120,122],[212,1,1,122,123],[214,1,1,123,124],[216,2,2,124,126],[219,1,1,126,127],[220,1,1,127,128],[224,1,1,128,129],[225,3,3,129,132],[226,4,4,132,136],[228,2,2,136,138]]],[7,1,1,138,139,[[235,1,1,138,139]]],[8,13,11,139,150,[[238,6,4,139,143],[241,1,1,143,144],[244,1,1,144,145],[247,1,1,145,146],[251,1,1,146,147],[254,1,1,147,148],[258,1,1,148,149],[263,1,1,149,150]]],[9,19,18,150,168,[[267,2,2,150,152],[268,2,2,152,154],[271,2,2,154,156],[272,1,1,156,157],[275,2,2,157,159],[277,1,1,159,160],[278,1,1,160,161],[280,1,1,161,162],[281,2,2,162,164],[284,4,3,164,167],[287,1,1,167,168]]],[10,15,14,168,182,[[291,5,4,168,172],[292,2,2,172,174],[298,1,1,174,175],[299,1,1,175,176],[302,2,2,176,178],[307,2,2,178,180],[308,1,1,180,181],[310,1,1,181,182]]],[11,13,13,182,195,[[315,2,2,182,184],[316,4,4,184,188],[319,2,2,188,190],[320,1,1,190,191],[321,1,1,191,192],[324,1,1,192,193],[330,2,2,193,195]]],[12,11,11,195,206,[[341,2,2,195,197],[343,1,1,197,198],[344,1,1,198,199],[348,1,1,199,200],[350,2,2,200,202],[351,1,1,202,203],[352,1,1,203,204],[358,1,1,204,205],[359,1,1,205,206]]],[13,6,6,206,212,[[369,1,1,206,207],[372,1,1,207,208],[376,1,1,208,209],[384,1,1,209,210],[386,1,1,210,211],[390,1,1,211,212]]],[14,1,1,212,213,[[404,1,1,212,213]]],[15,1,1,213,214,[[419,1,1,213,214]]],[16,7,6,214,220,[[427,1,1,214,215],[428,1,1,215,216],[429,3,2,216,218],[433,1,1,218,219],[434,1,1,219,220]]],[17,4,4,220,224,[[436,1,1,220,221],[444,1,1,221,222],[454,1,1,222,223],[477,1,1,223,224]]],[18,5,5,224,229,[[527,1,1,224,225],[556,1,1,225,226],[565,1,1,226,227],[576,1,1,227,228],[593,1,1,228,229]]],[19,3,3,229,232,[[628,1,1,229,230],[643,1,1,230,231],[651,1,1,231,232]]],[21,1,1,232,233,[[675,1,1,232,233]]],[22,33,33,233,266,[[679,1,1,233,234],[682,1,1,234,235],[687,1,1,235,236],[691,1,1,236,237],[710,1,1,237,238],[713,1,1,238,239],[719,2,2,239,241],[720,1,1,241,242],[721,2,2,242,244],[723,1,1,244,245],[725,2,2,245,247],[726,4,4,247,251],[727,1,1,251,252],[728,1,1,252,253],[729,1,1,253,254],[732,2,2,254,256],[734,1,1,256,257],[736,1,1,257,258],[739,1,1,258,259],[740,3,3,259,262],[741,1,1,262,263],[743,2,2,263,265],[744,1,1,265,266]]],[23,18,18,266,284,[[751,5,5,266,271],[755,1,1,271,272],[756,1,1,272,273],[758,1,1,273,274],[759,1,1,274,275],[763,1,1,275,276],[764,1,1,276,277],[767,1,1,277,278],[769,1,1,278,279],[774,1,1,279,280],[776,1,1,280,281],[777,1,1,281,282],[778,1,1,282,283],[779,1,1,283,284]]],[24,4,4,284,288,[[797,3,3,284,287],[798,1,1,287,288]]],[25,2,2,288,290,[[810,1,1,288,289],[821,1,1,289,290]]],[26,4,4,290,294,[[857,1,1,290,291],[858,2,2,291,293],[859,1,1,293,294]]],[27,3,3,294,297,[[872,3,3,294,297]]],[29,1,1,297,298,[[885,1,1,297,298]]],[36,1,1,298,299,[[909,1,1,298,299]]],[37,3,2,299,301,[[918,1,1,299,300],[921,2,1,300,301]]]],[4,7,9,49,53,64,75,96,104,275,306,316,322,394,395,396,402,462,479,494,495,503,504,525,530,544,546,558,561,562,649,683,684,688,701,710,712,713,714,717,725,769,827,828,829,830,836,838,848,877,920,921,927,930,958,977,980,1018,1019,1021,1029,1148,1149,1163,1240,1247,1449,1457,1474,1517,1562,1564,1583,1696,1718,1735,1769,1793,1801,1837,1847,1943,1990,1998,2029,2033,2046,2193,2422,2480,2527,2561,2746,2954,4027,4064,4091,4099,4343,4456,4473,4759,4760,4988,4989,5321,5557,5621,5681,5735,5943,6002,6059,6088,6368,6427,6460,6462,6477,6485,6526,6535,6550,6605,6678,6686,6808,6815,6924,6946,6947,6948,6967,6968,6974,6977,7005,7022,7207,7281,7282,7284,7286,7333,7400,7478,7600,7713,7838,7957,8029,8037,8065,8075,8141,8152,8159,8229,8236,8272,8314,8389,8391,8400,8496,8504,8506,8582,8727,8736,8742,8743,8806,8812,9028,9064,9154,9171,9327,9328,9367,9415,9586,9589,9615,9618,9625,9639,9717,9718,9728,9757,9857,10028,10042,10394,10395,10519,10551,10680,10766,10771,10785,10802,10960,10970,11246,11315,11398,11550,11613,11683,12088,12483,12738,12759,12767,12773,12826,12860,12873,13067,13313,13936,14669,15191,15317,15505,15852,16424,16861,17087,17604,17680,17734,17835,17909,18264,18328,18453,18460,18486,18506,18512,18565,18600,18604,18615,18622,18626,18629,18637,18664,18675,18728,18729,18760,18798,18846,18856,18858,18866,18885,18898,18909,18926,19129,19130,19132,19133,19149,19242,19255,19302,19331,19413,19425,19490,19563,19684,19765,19791,19816,19840,20325,20329,20331,20354,20625,20924,21977,22006,22007,22016,22241,22242,22247,22468,22851,22979,23035]]],["calledst",[3,3,[[6,1,1,0,1,[[218,1,1,0,1]]],[8,1,1,1,2,[[238,1,1,1,2]]],[18,1,1,2,3,[[558,1,1,2,3]]]],[6720,7281,15224]]],["calleth",[13,13,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[17,1,1,2,3,[[447,1,1,2,3]]],[18,2,2,3,5,[[519,1,1,3,4],[624,1,1,4,5]]],[19,1,1,5,6,[[645,1,1,5,6]]],[22,4,4,6,10,[[699,1,1,6,7],[718,1,1,7,8],[737,1,1,8,9],[742,1,1,9,10]]],[27,1,1,10,11,[[868,1,1,10,11]]],[29,2,2,11,13,[[883,1,1,11,12],[887,1,1,12,13]]]],[9028,11315,13132,14562,16355,16907,18046,18446,18804,18892,22185,22431,22501]]],["calling",[2,2,[[22,2,2,0,2,[[679,1,1,0,1],[719,1,1,1,2]]]],[17667,18455]]],["cried",[54,53,[[0,5,5,0,5,[[38,3,3,0,3],[40,1,1,3,4],[44,1,1,4,5]]],[6,3,3,5,8,[[217,1,1,5,6],[219,1,1,6,7],[228,1,1,7,8]]],[8,5,5,8,13,[[252,1,1,8,9],[255,2,2,9,11],[259,1,1,11,12],[261,1,1,12,13]]],[9,3,3,13,16,[[284,1,1,13,14],[286,1,1,14,15],[288,1,1,15,16]]],[10,7,7,16,23,[[303,4,4,16,20],[307,2,2,20,22],[308,1,1,22,23]]],[11,3,3,23,26,[[323,1,1,23,24],[330,1,1,24,25],[332,1,1,25,26]]],[13,2,2,26,28,[[380,1,1,26,27],[398,1,1,27,28]]],[18,9,9,28,37,[[480,1,1,28,29],[507,1,1,29,30],[511,1,1,30,31],[543,1,1,31,32],[596,2,2,32,34],[597,1,1,34,35],[607,1,1,35,36],[615,1,1,36,37]]],[22,5,5,37,42,[[684,2,2,37,39],[699,1,1,39,40],[708,1,1,40,41],[714,1,1,41,42]]],[23,2,2,42,44,[[748,1,1,42,43],[764,1,1,43,44]]],[24,1,1,44,45,[[800,1,1,44,45]]],[25,2,2,45,47,[[810,1,1,45,46],[811,1,1,46,47]]],[31,3,3,47,50,[[889,1,1,47,48],[890,1,1,48,49],[891,1,1,49,50]]],[37,4,3,50,53,[[911,1,1,50,51],[917,3,2,51,53]]]],[1163,1164,1167,1238,1359,6714,6761,7016,7626,7767,7768,7847,7919,8503,8570,8609,9186,9188,9205,9216,9337,9338,9369,9843,10052,10109,11486,11893,13961,14327,14394,14890,16043,16044,16075,16141,16234,17772,17773,18043,18224,18343,19047,19430,20435,20623,20646,22545,22550,22562,22882,22969,22975]]],["criest",[2,2,[[8,1,1,0,1,[[261,1,1,0,1]]],[19,1,1,1,2,[[629,1,1,1,2]]]],[7919,16436]]],["crieth",[4,4,[[19,2,2,0,2,[[628,1,1,0,1],[636,1,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]],[32,1,1,3,4,[[898,1,1,3,4]]]],[16421,16641,18423,22657]]],["cry",[32,31,[[2,1,1,0,1,[[102,1,1,0,1]]],[4,2,2,1,3,[[167,1,1,1,2],[176,1,1,2,3]]],[18,11,10,3,13,[[499,1,1,3,4],[504,1,1,4,5],[505,1,1,5,6],[533,1,1,6,7],[534,1,1,7,8],[538,1,1,8,9],[563,1,1,9,10],[566,1,1,10,11],[618,2,1,11,12],[624,1,1,12,13]]],[19,2,2,13,15,[[635,1,1,13,14],[648,1,1,14,15]]],[22,4,4,15,19,[[686,1,1,15,16],[712,1,1,16,17],[718,2,2,17,19]]],[23,7,7,19,26,[[746,1,1,19,20],[747,1,1,20,21],[748,1,1,21,22],[755,1,1,22,23],[775,1,1,23,24],[790,1,1,24,25],[793,1,1,25,26]]],[25,1,1,26,27,[[809,1,1,26,27]]],[28,1,1,27,28,[[876,1,1,27,28]]],[31,2,2,28,30,[[889,1,1,28,29],[891,1,1,29,30]]],[32,1,1,30,31,[[895,1,1,30,31]]]],[3097,5328,5540,14206,14292,14300,14764,14770,14821,15287,15352,16277,16360,16603,16997,17811,18317,18422,18426,18967,19006,19032,19240,19697,20062,20156,20622,22310,22533,22566,22613]]],["crying",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14938]]],["famous",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7204]]],["for",[4,4,[[1,1,1,0,1,[[50,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]],[23,1,1,2,3,[[769,1,1,2,3]]],[25,1,1,3,4,[[839,1,1,3,4]]]],[1550,15622,19563,21446]]],["forth",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18254]]],["gave",[2,2,[[0,1,1,0,1,[[1,1,1,0,1]]],[7,1,1,1,2,[[235,1,1,1,2]]]],[50,7207]]],["guests",[4,4,[[10,2,2,0,2,[[291,2,2,0,2]]],[19,1,1,2,3,[[636,1,1,2,3]]],[35,1,1,3,4,[[906,1,1,3,4]]]],[8758,8766,16656,22794]]],["invited",[3,3,[[8,1,1,0,1,[[244,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[16,1,1,2,3,[[430,1,1,2,3]]]],[7415,8340,12791]]],["meet",[2,2,[[10,1,1,0,1,[[311,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]]],[9469,17785]]],["mentioned",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6390]]],["name",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8165]]],["named",[5,5,[[0,1,1,0,1,[[47,1,1,0,1]]],[8,1,1,1,2,[[239,1,1,1,2]]],[12,1,1,2,3,[[360,1,1,2,3]]],[22,1,1,3,4,[[739,1,1,3,4]]],[23,1,1,4,5,[[788,1,1,4,5]]]],[1467,7318,10997,18849,20036]]],["on",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8606]]],["preach",[2,2,[[15,1,1,0,1,[[418,1,1,0,1]]],[31,1,1,1,2,[[891,1,1,1,2]]]],[12408,22560]]],["proclaim",[17,17,[[1,1,1,0,1,[[82,1,1,0,1]]],[2,5,5,1,6,[[112,4,4,1,5],[114,1,1,5,6]]],[4,1,1,6,7,[[172,1,1,6,7]]],[6,1,1,7,8,[[217,1,1,7,8]]],[16,1,1,8,9,[[431,1,1,8,9]]],[19,1,1,9,10,[[647,1,1,9,10]]],[22,2,2,10,12,[[739,2,2,10,12]]],[23,4,4,12,16,[[751,1,1,12,13],[763,1,1,13,14],[778,2,2,14,16]]],[29,1,1,16,17,[[882,1,1,16,17]]]],[2492,3404,3406,3423,3439,3479,5437,6697,12802,16960,18844,18845,19121,19409,19809,19818,22415]]],["proclaimed",[10,10,[[1,2,2,0,2,[[83,2,2,0,2]]],[10,1,1,2,3,[[311,1,1,2,3]]],[11,2,2,3,5,[[322,1,1,3,4],[335,1,1,4,5]]],[13,1,1,5,6,[[386,1,1,5,6]]],[14,1,1,6,7,[[410,1,1,6,7]]],[16,1,1,7,8,[[431,1,1,7,8]]],[23,1,1,8,9,[[780,1,1,8,9]]],[31,1,1,9,10,[[891,1,1,9,10]]]],[2501,2502,9463,9813,10181,11590,12222,12804,19851,22563]]],["proclaimeth",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16742]]],["proclaiming",[2,2,[[23,2,2,0,2,[[778,2,2,0,2]]]],[19816,19818]]],["proclamation",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2443]]],["publish",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5761]]],["read",[28,26,[[1,1,1,0,1,[[73,1,1,0,1]]],[4,1,1,1,2,[[169,1,1,1,2]]],[5,1,1,2,3,[[194,1,1,2,3]]],[11,5,5,3,8,[[331,1,1,3,4],[334,3,3,4,7],[335,1,1,7,8]]],[13,3,3,8,11,[[400,3,3,8,11]]],[15,5,5,11,16,[[420,3,3,11,14],[421,1,1,14,15],[425,1,1,15,16]]],[16,1,1,16,17,[[431,1,1,16,17]]],[22,2,2,17,19,[[712,1,1,17,18],[715,1,1,18,19]]],[23,9,7,19,26,[[780,9,7,19,26]]]],[2184,5383,6037,10075,10153,10155,10161,10167,11951,11957,11963,12496,12501,12511,12514,12672,12794,18319,18366,19848,19852,19855,19856,19857,19863,19865]]],["readeth",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22750]]],["reading",[1,1,[[23,1,1,0,1,[[780,1,1,0,1]]]],[19850]]],["renowned",[3,3,[[3,1,1,0,1,[[117,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]],[25,1,1,2,3,[[824,1,1,2,3]]]],[3620,17948,21030]]],["said",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13274]]],["themselves",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18616]]],["upon",[18,18,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[462,1,1,1,2]]],[18,11,11,2,13,[[494,1,1,2,3],[495,1,1,3,4],[508,1,1,4,5],[527,1,1,5,6],[530,1,1,6,7],[563,2,2,7,9],[568,1,1,9,10],[576,1,1,10,11],[593,1,1,11,12],[595,1,1,12,13]]],[19,1,1,13,14,[[628,1,1,13,14]]],[22,1,1,14,15,[[721,1,1,14,15]]],[23,1,1,15,16,[[773,1,1,15,16]]],[24,2,2,16,18,[[799,2,2,16,18]]]],[8609,13491,14109,14124,14348,14683,14723,15289,15291,15410,15505,15850,15874,16428,18527,19647,20409,20411]]]]},{"k":"H7122","v":[["*",[34,33,[[0,3,3,0,3,[[41,2,2,0,2],[48,1,1,2,3]]],[1,2,2,3,5,[[50,1,1,3,4],[54,1,1,4,5]]],[2,1,1,5,6,[[99,1,1,5,6]]],[4,2,2,6,8,[[174,1,1,6,7],[183,1,1,7,8]]],[8,1,1,8,9,[[251,1,1,8,9]]],[9,3,3,9,12,[[267,1,1,9,10],[284,1,1,10,11],[286,1,1,11,12]]],[10,4,3,12,15,[[292,1,1,12,13],[308,3,2,13,15]]],[11,12,12,15,27,[[316,2,2,15,17],[317,2,2,17,19],[320,2,2,19,21],[321,3,3,21,24],[322,1,1,24,25],[328,1,1,25,26],[335,1,1,26,27]]],[17,1,1,27,28,[[439,1,1,27,28]]],[22,2,2,28,30,[[692,1,1,28,29],[729,1,1,29,30]]],[23,3,3,30,33,[[757,1,1,30,31],[776,1,1,31,32],[788,1,1,32,33]]]],[1256,1290,1474,1542,1635,2996,5476,5757,7599,8028,8487,8555,8789,9348,9357,9629,9634,9668,9673,9735,9736,9773,9774,9777,9808,9973,10194,12944,17937,18692,19288,19754,20033]]],["against",[2,2,[[11,2,2,0,2,[[321,1,1,0,1],[335,1,1,1,2]]]],[9777,10194]]],["be",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5476]]],["befall",[4,4,[[0,3,3,0,3,[[41,2,2,0,2],[48,1,1,2,3]]],[4,1,1,3,4,[[183,1,1,3,4]]]],[1256,1290,1474,5757]]],["befallen",[1,1,[[2,1,1,0,1,[[99,1,1,0,1]]]],[2996]]],["chance",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8028]]],["come",[2,2,[[22,1,1,0,1,[[729,1,1,0,1]]],[23,1,1,1,2,[[757,1,1,1,2]]]],[18692,19288]]],["coming",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7599]]],["happened",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8555]]],["meet",[14,13,[[10,3,2,0,2,[[292,1,1,0,1],[308,2,1,1,2]]],[11,10,10,2,12,[[316,2,2,2,4],[317,2,2,4,6],[320,2,2,6,8],[321,2,2,8,10],[322,1,1,10,11],[328,1,1,11,12]]],[22,1,1,12,13,[[692,1,1,12,13]]]],[8789,9357,9629,9634,9668,9673,9735,9736,9773,9774,9808,9973,17937]]],["met",[3,3,[[1,1,1,0,1,[[54,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]]],[1635,8487,9348]]],["out",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1542]]],["unto",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20033]]],["upon",[2,2,[[17,1,1,0,1,[[439,1,1,0,1]]],[23,1,1,1,2,[[776,1,1,1,2]]]],[12944,19754]]]]},{"k":"H7123","v":[["*",[11,10,[[14,2,2,0,2,[[406,2,2,0,2]]],[26,9,8,2,10,[[852,1,1,2,3],[853,1,1,3,4],[854,7,6,4,10]]]],[12128,12133,21811,21851,21881,21882,21886,21889,21890,21891]]],["called",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21886]]],["cried",[3,3,[[26,3,3,0,3,[[852,1,1,0,1],[853,1,1,1,2],[854,1,1,2,3]]]],[21811,21851,21881]]],["read",[7,7,[[14,2,2,0,2,[[406,2,2,0,2]]],[26,5,5,2,7,[[854,5,5,2,7]]]],[12128,12133,21881,21882,21889,21890,21891]]]]},{"k":"H7124","v":[["partridge",[2,2,[[8,1,1,0,1,[[261,1,1,0,1]]],[23,1,1,1,2,[[761,1,1,1,2]]]],[7925,19368]]]]},{"k":"H7125","v":[["*",[99,96,[[0,11,11,0,11,[[13,1,1,0,1],[14,1,1,1,2],[17,1,1,2,3],[18,1,1,3,4],[23,2,2,4,6],[28,1,1,6,7],[29,1,1,7,8],[31,1,1,8,9],[32,1,1,9,10],[45,1,1,10,11]]],[1,7,7,11,18,[[53,2,2,11,13],[54,1,1,13,14],[56,1,1,14,15],[63,1,1,15,16],[67,1,1,16,17],[68,1,1,17,18]]],[3,9,9,18,27,[[136,2,2,18,20],[137,2,2,20,22],[138,2,2,22,24],[139,1,1,24,25],[140,1,1,25,26],[147,1,1,26,27]]],[4,4,4,27,31,[[153,1,1,27,28],[154,1,1,28,29],[155,1,1,29,30],[181,1,1,30,31]]],[5,5,5,31,36,[[194,3,3,31,34],[195,1,1,34,35],[197,1,1,35,36]]],[6,11,11,36,47,[[214,2,2,36,38],[216,1,1,38,39],[217,1,1,39,40],[221,2,2,40,42],[224,1,1,42,43],[225,1,1,43,44],[229,1,1,44,45],[230,2,2,45,47]]],[8,19,17,47,64,[[239,2,2,47,49],[244,1,1,49,50],[245,1,1,50,51],[248,1,1,51,52],[250,1,1,52,53],[252,5,4,53,57],[253,1,1,57,58],[256,1,1,58,59],[258,1,1,59,60],[260,3,3,60,63],[265,2,1,63,64]]],[9,13,13,64,77,[[272,1,1,64,65],[276,4,4,65,69],[281,1,1,69,70],[282,1,1,70,71],[284,1,1,71,72],[285,5,5,72,77]]],[10,1,1,77,78,[[292,1,1,77,78]]],[11,4,4,78,82,[[313,3,3,78,81],[314,1,1,81,82]]],[12,4,4,82,86,[[356,4,4,82,86]]],[13,1,1,86,87,[[401,1,1,86,87]]],[17,1,1,87,88,[[474,1,1,87,88]]],[18,2,2,88,90,[[512,1,1,88,89],[536,1,1,89,90]]],[19,2,2,90,92,[[634,2,2,90,92]]],[23,3,2,92,94,[[785,1,1,92,93],[795,2,1,93,94]]],[29,1,1,94,95,[[882,1,1,94,95]]],[37,1,1,95,96,[[912,1,1,95,96]]]],[353,370,426,458,608,656,808,846,934,964,1415,1615,1628,1652,1700,1916,2006,2043,4329,4331,4363,4373,4409,4411,4419,4447,4677,4936,4970,4976,5686,6007,6016,6024,6048,6127,6617,6621,6689,6718,6860,6863,6914,6943,7027,7079,7085,7298,7299,7405,7428,7495,7572,7620,7639,7666,7673,7682,7773,7838,7881,7893,7895,7999,8177,8245,8249,8250,8257,8421,8427,8484,8526,8527,8531,8535,8536,8778,9536,9539,9540,9566,10912,10917,10918,10924,11986,13855,14413,14794,16585,16590,19963,20243,22422,22902]]],["+",[1,1,[[5,1,1,0,1,[[197,1,1,0,1]]]],[6127]]],["against",[36,36,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[3,5,5,2,7,[[136,2,2,2,4],[137,2,2,4,6],[138,1,1,6,7]]],[4,4,4,7,11,[[153,1,1,7,8],[154,1,1,8,9],[155,1,1,9,10],[181,1,1,10,11]]],[5,3,3,11,14,[[194,3,3,11,14]]],[6,5,5,14,19,[[217,1,1,14,15],[224,1,1,15,16],[225,1,1,16,17],[230,2,2,17,19]]],[8,8,8,19,27,[[239,2,2,19,21],[244,1,1,21,22],[252,3,3,22,25],[258,1,1,25,26],[260,1,1,26,27]]],[9,4,4,27,31,[[276,3,3,27,30],[284,1,1,30,31]]],[12,3,3,31,34,[[356,3,3,31,34]]],[13,1,1,34,35,[[401,1,1,34,35]]],[18,1,1,35,36,[[512,1,1,35,36]]]],[370,1916,4329,4331,4363,4373,4409,4936,4970,4976,5686,6007,6016,6024,6718,6914,6943,7079,7085,7298,7299,7405,7620,7639,7673,7838,7881,8249,8250,8257,8484,10917,10918,10924,11986,14413]]],["come",[1,1,[[1,1,1,0,1,[[56,1,1,0,1]]]],[1700]]],["help",[1,1,[[18,1,1,0,1,[[536,1,1,0,1]]]],[14794]]],["meet",[54,51,[[0,10,10,0,10,[[13,1,1,0,1],[17,1,1,1,2],[18,1,1,2,3],[23,2,2,3,5],[28,1,1,5,6],[29,1,1,6,7],[31,1,1,7,8],[32,1,1,8,9],[45,1,1,9,10]]],[1,4,4,10,14,[[53,2,2,10,12],[67,1,1,12,13],[68,1,1,13,14]]],[3,3,3,14,17,[[138,1,1,14,15],[139,1,1,15,16],[147,1,1,16,17]]],[5,1,1,17,18,[[195,1,1,17,18]]],[6,6,6,18,24,[[214,2,2,18,20],[216,1,1,20,21],[221,2,2,21,23],[229,1,1,23,24]]],[8,9,7,24,31,[[248,1,1,24,25],[250,1,1,25,26],[252,2,1,26,27],[253,1,1,27,28],[260,2,2,28,30],[265,2,1,30,31]]],[9,8,8,31,39,[[272,1,1,31,32],[276,1,1,32,33],[281,1,1,33,34],[285,5,5,34,39]]],[10,1,1,39,40,[[292,1,1,39,40]]],[11,4,4,40,44,[[313,3,3,40,43],[314,1,1,43,44]]],[12,1,1,44,45,[[356,1,1,44,45]]],[17,1,1,45,46,[[474,1,1,45,46]]],[19,1,1,46,47,[[634,1,1,46,47]]],[23,3,2,47,49,[[785,1,1,47,48],[795,2,1,48,49]]],[29,1,1,49,50,[[882,1,1,49,50]]],[37,1,1,50,51,[[912,1,1,50,51]]]],[353,426,458,608,656,808,846,934,964,1415,1615,1628,2006,2043,4411,4419,4677,6048,6617,6621,6689,6860,6863,7027,7495,7572,7666,7682,7893,7895,7999,8177,8245,8421,8526,8527,8531,8535,8536,8778,9536,9539,9540,9566,10912,13855,16590,19963,20243,22422,22902]]],["meeting",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7773]]],["met",[3,3,[[8,1,1,0,1,[[245,1,1,0,1]]],[9,1,1,1,2,[[282,1,1,1,2]]],[19,1,1,2,3,[[634,1,1,2,3]]]],[7428,8427,16585]]],["seek",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4447]]],["way",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1652]]]]},{"k":"H7126","v":[["*",[280,260,[[0,5,5,0,5,[[11,1,1,0,1],[19,1,1,1,2],[26,1,1,2,3],[36,1,1,3,4],[46,1,1,4,5]]],[1,16,16,5,21,[[52,1,1,5,6],[61,1,1,6,7],[63,2,2,7,9],[65,1,1,9,10],[71,1,1,10,11],[77,1,1,11,12],[78,4,4,12,16],[81,1,1,16,17],[85,1,1,17,18],[89,3,3,18,21]]],[2,102,91,21,112,[[90,9,7,21,28],[91,8,7,28,35],[92,9,7,35,42],[93,2,2,42,44],[94,1,1,44,45],[95,3,3,45,48],[96,16,14,48,62],[97,5,5,62,67],[98,8,8,67,75],[99,4,4,75,79],[101,1,1,79,80],[103,1,1,80,81],[105,5,5,81,86],[106,1,1,86,87],[107,3,3,87,90],[109,1,1,90,91],[110,7,5,91,96],[111,8,7,96,103],[112,8,7,103,110],[116,2,2,110,112]]],[3,58,55,112,167,[[119,2,2,112,114],[121,3,3,114,117],[122,2,2,117,119],[123,8,7,119,126],[124,2,2,126,128],[125,3,3,128,131],[131,8,7,131,138],[132,9,8,138,146],[134,5,5,146,151],[141,1,1,151,152],[142,1,1,152,153],[143,2,2,153,155],[144,6,6,155,161],[145,3,3,161,164],[147,2,2,164,166],[152,1,1,166,167]]],[4,13,13,167,180,[[153,2,2,167,169],[154,2,2,169,171],[156,1,1,171,172],[157,2,2,172,174],[167,1,1,174,175],[172,2,2,175,177],[174,1,1,177,178],[177,1,1,178,179],[183,1,1,179,180]]],[5,14,9,180,189,[[189,1,1,180,181],[193,8,4,181,185],[194,2,2,185,187],[196,2,1,187,188],[203,1,1,188,189]]],[6,5,5,189,194,[[213,2,2,189,191],[215,1,1,191,192],[229,1,1,192,193],[230,1,1,193,194]]],[8,4,4,194,198,[[245,2,2,194,196],[249,1,1,196,197],[252,1,1,197,198]]],[9,3,3,198,201,[[281,1,1,198,199],[286,2,2,199,201]]],[10,3,3,201,204,[[292,2,2,201,203],[310,1,1,203,204]]],[11,2,2,204,206,[[328,2,2,204,206]]],[12,1,1,206,207,[[353,1,1,206,207]]],[13,1,1,207,208,[[401,1,1,207,208]]],[14,1,1,208,209,[[410,1,1,208,209]]],[16,1,1,209,210,[[430,1,1,209,210]]],[17,2,2,210,212,[[466,1,1,210,211],[468,1,1,211,212]]],[18,8,8,212,220,[[504,1,1,212,213],[509,1,1,213,214],[542,1,1,214,215],[546,1,1,215,216],[549,1,1,216,217],[568,1,1,217,218],[596,2,2,218,220]]],[19,1,1,220,221,[[632,1,1,220,221]]],[20,1,1,221,222,[[663,1,1,221,222]]],[22,13,13,222,235,[[683,2,2,222,224],[686,1,1,224,225],[704,1,1,225,226],[712,1,1,226,227],[719,3,3,227,230],[724,1,1,230,231],[726,1,1,231,232],[732,1,1,232,233],[735,1,1,233,234],[743,1,1,234,235]]],[23,1,1,235,236,[[774,1,1,235,236]]],[24,2,2,236,238,[[799,1,1,236,237],[800,1,1,237,238]]],[25,17,16,238,254,[[810,1,1,238,239],[813,1,1,239,240],[819,1,1,240,241],[823,1,1,241,242],[837,1,1,242,243],[838,2,2,243,245],[843,1,1,245,246],[844,3,3,246,249],[845,5,4,249,253],[847,1,1,253,254]]],[27,1,1,254,255,[[868,1,1,254,255]]],[31,1,1,255,256,[[889,1,1,255,256]]],[35,1,1,256,257,[[908,1,1,256,257]]],[36,1,1,257,258,[[910,1,1,257,258]]],[38,2,2,258,260,[[925,1,1,258,259],[927,1,1,259,260]]]],[309,499,768,1101,1449,1584,1864,1899,1909,1956,2121,2294,2339,2340,2344,2346,2457,2568,2719,2721,2739,2747,2748,2750,2755,2758,2759,2760,2763,2766,2770,2773,2774,2775,2776,2779,2781,2784,2785,2787,2790,2792,2798,2809,2838,2863,2869,2870,2882,2887,2888,2890,2891,2892,2893,2895,2897,2904,2908,2912,2914,2917,2923,2930,2935,2939,2941,2955,2958,2960,2961,2962,2968,2969,2970,2978,2981,2982,2996,3051,3123,3202,3207,3210,3212,3221,3239,3257,3265,3270,3334,3351,3353,3362,3363,3366,3372,3387,3389,3390,3391,3393,3394,3410,3418,3420,3427,3429,3438,3439,3579,3581,3696,3698,3801,3808,3817,3837,3839,3852,3853,3860,3861,3862,3868,3869,3948,3949,3971,3972,3978,4157,4160,4162,4163,4166,4180,4186,4199,4203,4204,4211,4229,4232,4233,4234,4259,4260,4261,4272,4279,4477,4550,4555,4559,4579,4580,4588,4596,4603,4604,4616,4621,4644,4712,4714,4880,4909,4914,4957,4975,5015,5076,5080,5328,5429,5437,5484,5558,5742,5897,5990,5992,5993,5994,6007,6025,6088,6279,6585,6586,6648,7037,7078,7438,7439,7544,7666,8394,8570,8571,8771,8777,9437,9975,9977,10821,11978,12236,12781,13625,13672,14287,14364,14864,14953,15010,15405,16048,16067,16525,17398,17747,17758,17810,18147,18304,18452,18456,18472,18599,18630,18737,18768,18902,19688,20411,20438,20623,20703,20855,20980,21367,21404,21414,21566,21594,21595,21596,21606,21614,21615,21626,21659,22184,22537,22822,22869,23097,23125]]],["+",[60,57,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,3,3,1,4,[[52,1,1,1,2],[63,1,1,2,3],[89,1,1,3,4]]],[2,28,27,4,31,[[90,3,3,4,7],[91,1,1,7,8],[94,1,1,8,9],[96,5,5,9,14],[97,5,5,14,19],[98,4,4,19,23],[99,1,1,23,24],[105,4,4,24,28],[110,3,2,28,30],[111,1,1,30,31]]],[3,16,15,31,46,[[119,1,1,31,32],[121,1,1,32,33],[122,1,1,33,34],[123,4,3,34,37],[124,2,2,37,39],[125,1,1,39,40],[132,2,2,40,42],[134,2,2,42,44],[143,1,1,44,45],[147,1,1,45,46]]],[4,1,1,46,47,[[157,1,1,46,47]]],[5,5,4,47,51,[[189,1,1,47,48],[193,4,3,48,51]]],[6,2,2,51,53,[[213,2,2,51,53]]],[19,1,1,53,54,[[632,1,1,53,54]]],[22,1,1,54,55,[[732,1,1,54,55]]],[25,1,1,55,56,[[845,1,1,55,56]]],[35,1,1,56,57,[[908,1,1,56,57]]]],[499,1584,1909,2719,2747,2750,2759,2776,2838,2887,2895,2908,2912,2917,2923,2930,2935,2939,2941,2962,2968,2969,2970,2996,3207,3210,3212,3221,3353,3366,3394,3698,3808,3837,3860,3861,3862,3948,3949,3972,4203,4204,4260,4279,4559,4714,5080,5897,5992,5993,5994,6585,6586,16525,18737,21606,22822]]],["Go",[1,1,[[2,1,1,0,1,[[98,1,1,0,1]]]],[2960]]],["Produce",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18472]]],["Stand",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18902]]],["approach",[10,10,[[2,6,6,0,6,[[107,3,3,0,3],[109,1,1,3,4],[110,2,2,4,6]]],[4,1,1,6,7,[[183,1,1,6,7]]],[5,1,1,7,8,[[194,1,1,7,8]]],[18,1,1,8,9,[[542,1,1,8,9]]],[25,1,1,9,10,[[843,1,1,9,10]]]],[3257,3265,3270,3334,3362,3363,5742,6007,14864,21566]]],["approached",[1,1,[[11,1,1,0,1,[[328,1,1,0,1]]]],[9975]]],["bring",[23,23,[[1,4,4,0,4,[[78,3,3,0,3],[89,1,1,3,4]]],[2,8,8,4,12,[[90,4,4,4,8],[91,2,2,8,10],[93,1,1,10,11],[116,1,1,11,12]]],[3,10,10,12,22,[[121,1,1,12,13],[122,1,1,13,14],[131,4,4,14,18],[132,1,1,18,19],[134,2,2,19,21],[144,1,1,21,22]]],[4,1,1,22,23,[[153,1,1,22,23]]]],[2339,2340,2344,2721,2747,2755,2758,2760,2766,2773,2798,3579,3801,3839,4157,4162,4163,4180,4211,4259,4272,4603,4909]]],["brought",[9,9,[[1,2,2,0,2,[[71,1,1,0,1],[78,1,1,1,2]]],[3,4,4,2,6,[[123,1,1,2,3],[125,1,1,3,4],[131,1,1,4,5],[141,1,1,5,6]]],[5,2,2,6,8,[[193,1,1,6,7],[194,1,1,7,8]]],[11,1,1,8,9,[[328,1,1,8,9]]]],[2121,2346,3853,3978,4186,4477,5990,6025,9977]]],["came",[6,6,[[3,2,2,0,2,[[125,1,1,0,1],[143,1,1,1,2]]],[4,1,1,2,3,[[174,1,1,2,3]]],[10,1,1,3,4,[[292,1,1,3,4]]],[18,1,1,4,5,[[504,1,1,4,5]]],[31,1,1,5,6,[[889,1,1,5,6]]]],[3971,4555,5484,8777,14287,22537]]],["camest",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4975]]],["come",[4,2,[[1,1,1,0,1,[[85,1,1,0,1]]],[5,3,1,1,2,[[193,3,1,1,2]]]],[2568,5990]]],["forth",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6648]]],["goeth",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3372]]],["hand",[4,4,[[0,1,1,0,1,[[26,1,1,0,1]]],[4,1,1,1,2,[[167,1,1,1,2]]],[25,2,2,2,4,[[813,1,1,2,3],[837,1,1,3,4]]]],[768,5328,20703,21367]]],["join",[1,1,[[25,1,1,0,1,[[838,1,1,0,1]]]],[21414]]],["joined",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9437]]],["lay",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17747]]],["near",[47,45,[[0,2,2,0,2,[[11,1,1,0,1],[36,1,1,1,2]]],[1,3,3,2,5,[[61,1,1,2,3],[65,1,1,3,4],[89,1,1,4,5]]],[2,3,3,5,8,[[98,1,1,5,6],[99,2,2,6,8]]],[3,5,4,8,12,[[132,3,2,8,10],[147,1,1,10,11],[152,1,1,11,12]]],[4,4,4,12,16,[[153,1,1,12,13],[156,1,1,13,14],[157,1,1,14,15],[177,1,1,15,16]]],[5,3,2,16,18,[[196,2,1,16,17],[203,1,1,17,18]]],[6,2,2,18,20,[[229,1,1,18,19],[230,1,1,19,20]]],[8,3,3,20,23,[[245,2,2,20,22],[249,1,1,22,23]]],[9,2,2,23,25,[[286,2,2,23,25]]],[16,1,1,25,26,[[430,1,1,25,26]]],[17,1,1,26,27,[[468,1,1,26,27]]],[18,2,2,27,29,[[509,1,1,27,28],[596,1,1,28,29]]],[22,7,7,29,36,[[704,1,1,29,30],[712,1,1,30,31],[719,2,2,31,33],[724,1,1,33,34],[726,1,1,34,35],[735,1,1,35,36]]],[23,1,1,36,37,[[774,1,1,36,37]]],[24,2,2,37,39,[[799,1,1,37,38],[800,1,1,38,39]]],[25,5,5,39,44,[[810,1,1,39,40],[819,1,1,40,41],[823,1,1,41,42],[845,2,2,42,44]]],[38,1,1,44,45,[[927,1,1,44,45]]]],[309,1101,1864,1956,2739,2958,2981,2982,4199,4234,4712,4880,4914,5015,5076,5558,6088,6279,7037,7078,7438,7439,7544,8570,8571,12781,13672,14364,16067,18147,18304,18452,18456,18599,18630,18768,19688,20411,20438,20623,20855,20980,21614,21615,23125]]],["nigh",[14,14,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,2,2,1,3,[[63,1,1,1,2],[81,1,1,2,3]]],[3,1,1,3,4,[[134,1,1,3,4]]],[4,3,3,4,7,[[154,1,1,4,5],[172,2,2,5,7]]],[8,1,1,7,8,[[252,1,1,7,8]]],[9,1,1,8,9,[[281,1,1,8,9]]],[10,1,1,9,10,[[292,1,1,9,10]]],[18,3,3,10,13,[[546,1,1,10,11],[568,1,1,11,12],[596,1,1,12,13]]],[22,1,1,13,14,[[683,1,1,13,14]]]],[1449,1899,2457,4261,4957,5429,5437,7666,8394,8771,14953,15405,16048,17758]]],["offer",[67,61,[[2,46,40,0,40,[[90,2,1,0,1],[91,4,4,1,5],[92,9,7,5,12],[93,1,1,12,13],[95,3,3,13,16],[96,7,6,16,22],[98,1,1,22,23],[101,1,1,23,24],[103,1,1,24,25],[106,1,1,25,26],[110,2,2,26,28],[111,5,4,28,32],[112,8,7,32,39],[116,1,1,39,40]]],[3,11,11,40,51,[[121,1,1,40,41],[123,1,1,41,42],[131,1,1,42,43],[144,5,5,43,48],[145,3,3,48,51]]],[13,1,1,51,52,[[401,1,1,51,52]]],[18,1,1,52,53,[[549,1,1,52,53]]],[25,6,6,53,59,[[844,3,3,53,56],[845,2,2,56,58],[847,1,1,58,59]]],[36,1,1,59,60,[[910,1,1,59,60]]],[38,1,1,60,61,[[925,1,1,60,61]]]],[2748,2763,2774,2775,2776,2779,2781,2784,2785,2787,2790,2792,2809,2863,2869,2870,2882,2890,2891,2892,2893,2904,2955,3051,3123,3239,3351,3362,3387,3389,3391,3393,3410,3418,3420,3427,3429,3438,3439,3581,3817,3868,4160,4579,4580,4588,4596,4604,4616,4621,4644,11978,15010,21594,21595,21596,21614,21626,21659,22869,23097]]],["offered",[12,12,[[2,3,3,0,3,[[96,1,1,0,1],[99,1,1,1,2],[105,1,1,2,3]]],[3,7,7,3,10,[[119,1,1,3,4],[123,2,2,4,6],[132,3,3,6,9],[142,1,1,9,10]]],[12,1,1,10,11,[[353,1,1,10,11]]],[14,1,1,11,12,[[410,1,1,11,12]]]],[2887,2978,3202,3696,3852,3869,4229,4232,4233,4550,10821,12236]]],["offereth",[4,4,[[2,3,3,0,3,[[96,2,2,0,2],[111,1,1,2,3]]],[3,1,1,3,4,[[131,1,1,3,4]]]],[2888,2897,3390,4157]]],["offering",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4166]]],["presented",[2,2,[[2,2,2,0,2,[[91,1,1,0,1],[96,1,1,1,2]]]],[2770,2914]]],["ready",[2,2,[[20,1,1,0,1,[[663,1,1,0,1]]],[27,1,1,1,2,[[868,1,1,1,2]]]],[17398,22184]]],["take",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2294]]],["together",[1,1,[[25,1,1,0,1,[[838,1,1,0,1]]]],[21404]]],["unto",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13625]]],["went",[2,2,[[2,1,1,0,1,[[98,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]]],[2961,17810]]]]},{"k":"H7127","v":[["*",[9,9,[[14,3,3,0,3,[[408,2,2,0,2],[409,1,1,2,3]]],[26,6,6,3,9,[[852,2,2,3,5],[855,2,2,5,7],[856,2,2,7,9]]]],[12161,12168,12190,21815,21833,21917,21925,21946,21949]]],["came",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21925]]],["near",[5,5,[[26,5,5,0,5,[[852,2,2,0,2],[855,1,1,2,3],[856,2,2,3,5]]]],[21815,21833,21917,21946,21949]]],["offer",[2,2,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]]],[12161,12190]]],["offered",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12168]]]]},{"k":"H7128","v":[["*",[9,9,[[9,1,1,0,1,[[283,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]],[18,5,5,2,7,[[532,2,2,2,4],[545,1,1,4,5],[555,1,1,5,6],[621,1,1,6,7]]],[20,1,1,7,8,[[667,1,1,7,8]]],[37,1,1,8,9,[[924,1,1,8,9]]]],[8460,13816,14750,14753,14930,15122,16306,17493,23071]]],["+",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14750]]],["battle",[4,4,[[9,1,1,0,1,[[283,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]],[18,1,1,2,3,[[555,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[8460,13816,15122,23071]]],["war",[4,4,[[18,3,3,0,3,[[532,1,1,0,1],[545,1,1,1,2],[621,1,1,2,3]]],[20,1,1,3,4,[[667,1,1,3,4]]]],[14753,14930,16306,17493]]]]},{"k":"H7129","v":[["war",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21954]]]]},{"k":"H7130","v":[["*",[226,219,[[0,8,7,0,7,[[17,2,2,0,2],[23,1,1,2,3],[24,1,1,3,4],[40,2,1,4,5],[44,1,1,5,6],[47,1,1,6,7]]],[1,16,16,7,23,[[52,1,1,7,8],[57,1,1,8,9],[59,1,1,9,10],[61,1,1,10,11],[66,1,1,11,12],[72,2,2,12,14],[78,3,3,14,17],[80,1,1,17,18],[82,2,2,18,20],[83,3,3,20,23]]],[2,24,20,23,43,[[90,2,2,23,25],[92,6,3,25,28],[93,3,2,28,30],[96,1,1,30,31],[97,3,3,31,34],[98,1,1,34,35],[106,2,2,35,37],[107,1,1,37,38],[109,4,4,38,42],[112,1,1,42,43]]],[3,10,10,43,53,[[121,1,1,43,44],[127,3,3,44,47],[130,5,5,47,52],[131,1,1,52,53]]],[4,41,41,53,94,[[153,1,1,53,54],[154,3,3,54,57],[156,3,3,57,60],[158,1,1,60,61],[159,1,1,61,62],[163,1,1,62,63],[165,5,5,63,68],[167,1,1,68,69],[168,1,1,69,70],[169,4,4,70,74],[170,3,3,74,77],[171,3,3,77,80],[173,3,3,80,83],[174,2,2,83,85],[175,2,2,85,87],[176,1,1,87,88],[178,1,1,88,89],[180,1,1,89,90],[181,2,2,90,92],[183,2,2,92,94]]],[5,20,19,94,113,[[187,1,1,94,95],[189,3,3,95,98],[190,1,1,98,99],[192,1,1,99,100],[193,3,2,100,102],[194,1,1,102,103],[195,3,3,103,106],[196,1,1,106,107],[199,1,1,107,108],[202,1,1,108,109],[204,1,1,109,110],[210,3,3,110,113]]],[6,8,8,113,121,[[211,4,4,113,117],[213,1,1,117,118],[220,1,1,118,119],[228,2,2,119,121]]],[8,3,3,121,124,[[239,1,1,121,122],[251,1,1,122,123],[260,1,1,123,124]]],[10,4,4,124,128,[[293,1,1,124,125],[307,2,2,125,127],[310,1,1,127,128]]],[17,1,1,128,129,[[455,1,1,128,129]]],[18,27,27,129,156,[[482,1,1,129,130],[513,1,1,130,131],[516,1,1,131,132],[523,1,1,132,133],[525,1,1,133,134],[526,1,1,134,135],[528,1,1,135,136],[532,4,4,136,140],[539,1,1,140,141],[541,1,1,141,142],[551,3,3,142,145],[555,1,1,145,146],[559,1,1,146,147],[571,1,1,147,148],[578,2,2,148,150],[580,1,1,150,151],[586,2,2,151,153],[587,1,1,153,154],[615,1,1,154,155],[624,1,1,155,156]]],[19,3,3,156,159,[[641,1,1,156,157],[642,1,1,157,158],[653,1,1,158,159]]],[22,16,16,159,175,[[682,1,1,159,160],[683,2,2,160,162],[684,1,1,162,163],[688,1,1,163,164],[690,1,1,164,165],[694,1,1,165,166],[697,4,4,166,170],[702,1,1,170,171],[703,1,1,171,172],[704,1,1,172,173],[707,1,1,173,174],[741,1,1,174,175]]],[23,10,10,175,185,[[748,1,1,175,176],[750,2,2,176,178],[753,1,1,178,179],[758,1,1,179,180],[767,1,1,180,181],[773,1,1,181,182],[774,1,1,182,183],[775,1,1,183,184],[790,1,1,184,185]]],[24,4,4,185,189,[[797,2,2,185,187],[799,1,1,187,188],[800,1,1,188,189]]],[25,4,4,189,193,[[812,1,1,189,190],[823,1,1,190,191],[837,2,2,191,193]]],[27,2,2,193,195,[[866,1,1,193,194],[872,1,1,194,195]]],[28,1,1,195,196,[[877,1,1,195,196]]],[29,5,5,196,201,[[880,1,1,196,197],[881,1,1,197,198],[883,1,1,198,199],[885,2,2,199,201]]],[32,7,7,201,208,[[895,1,1,201,202],[897,5,5,202,207],[898,1,1,207,208]]],[33,1,1,208,209,[[902,1,1,208,209]]],[34,3,2,209,211,[[904,1,1,209,210],[905,2,1,210,211]]],[35,6,6,211,217,[[908,6,6,211,217]]],[37,2,2,217,219,[[922,1,1,217,218],[924,1,1,218,219]]]],[436,448,594,680,1216,1364,1467,1599,1732,1778,1825,1990,2165,2169,2349,2353,2358,2434,2476,2478,2505,2506,2508,2754,2758,2781,2787,2792,2803,2806,2882,2933,2938,2942,2967,3239,3245,3280,3321,3323,3324,3336,3432,3819,4028,4044,4045,4119,4121,4122,4150,4152,4183,4934,4952,4953,4954,5007,5009,5038,5101,5132,5214,5273,5277,5283,5285,5286,5330,5353,5366,5371,5379,5384,5386,5399,5402,5416,5425,5426,5455,5456,5468,5491,5494,5514,5516,5532,5577,5654,5690,5695,5744,5745,5862,5895,5898,5903,5916,5974,5988,5989,6037,6044,6053,6059,6065,6167,6275,6300,6481,6493,6499,6538,6539,6541,6542,6573,6827,7000,7013,7300,7608,7898,8844,9338,9339,9447,13340,13982,14439,14515,14619,14643,14659,14701,14736,14742,14743,14747,14831,14856,15052,15059,15060,15141,15234,15450,15515,15520,15550,15773,15777,15788,16238,16364,16805,16838,17165,17737,17747,17764,17781,17873,17906,17980,18005,18007,18018,18028,18108,18129,18139,18216,18877,19041,19090,19095,19183,19302,19493,19643,19688,19724,20066,20325,20330,20399,20433,20674,21003,21385,21386,22156,22249,22338,22382,22404,22440,22472,22474,22619,22640,22641,22643,22646,22647,22662,22725,22767,22770,22823,22825,22831,22832,22835,22837,23046,23069]]],["+",[47,46,[[0,2,1,0,1,[[40,2,1,0,1]]],[1,2,2,1,3,[[72,1,1,1,2],[80,1,1,2,3]]],[2,8,8,3,11,[[106,2,2,3,5],[107,1,1,5,6],[109,4,4,6,10],[112,1,1,10,11]]],[3,3,3,11,14,[[130,2,2,11,13],[131,1,1,13,14]]],[4,18,18,14,32,[[154,3,3,14,17],[156,2,2,17,19],[165,2,2,19,21],[167,1,1,21,22],[169,2,2,22,24],[170,2,2,24,26],[171,1,1,26,27],[173,2,2,27,29],[174,2,2,29,31],[176,1,1,31,32]]],[5,2,2,32,34,[[193,2,2,32,34]]],[6,1,1,34,35,[[220,1,1,34,35]]],[10,2,2,35,37,[[307,2,2,35,37]]],[18,1,1,37,38,[[551,1,1,37,38]]],[22,1,1,38,39,[[682,1,1,38,39]]],[23,2,2,39,41,[[750,1,1,39,40],[774,1,1,40,41]]],[29,1,1,41,42,[[880,1,1,41,42]]],[32,3,3,42,45,[[897,3,3,42,45]]],[35,1,1,45,46,[[908,1,1,45,46]]]],[1216,2169,2434,3239,3245,3280,3321,3323,3324,3336,3432,4121,4152,4183,4952,4953,4954,5007,5038,5277,5285,5330,5371,5379,5399,5402,5425,5456,5468,5491,5494,5532,5988,5989,6827,9338,9339,15059,17737,19090,19688,22382,22643,22646,22647,22831]]],["among",[48,48,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,3,3,1,4,[[66,1,1,1,2],[83,2,2,2,4]]],[3,7,7,4,11,[[121,1,1,4,5],[127,3,3,5,8],[130,3,3,8,11]]],[4,14,14,11,25,[[153,1,1,11,12],[158,1,1,12,13],[159,1,1,13,14],[165,3,3,14,17],[168,1,1,17,18],[169,1,1,18,19],[170,1,1,19,20],[171,1,1,20,21],[175,1,1,21,22],[178,1,1,22,23],[183,2,2,23,25]]],[5,13,13,25,38,[[189,2,2,25,27],[190,1,1,27,28],[194,1,1,28,29],[195,3,3,29,32],[196,1,1,32,33],[199,1,1,33,34],[202,1,1,34,35],[204,1,1,35,36],[210,2,2,36,38]]],[6,5,5,38,43,[[211,4,4,38,42],[213,1,1,42,43]]],[8,1,1,43,44,[[239,1,1,43,44]]],[18,2,2,44,46,[[532,1,1,44,45],[559,1,1,45,46]]],[19,1,1,46,47,[[642,1,1,46,47]]],[32,1,1,47,48,[[895,1,1,47,48]]]],[594,1990,2505,2506,3819,4028,4044,4045,4119,4122,4150,4934,5101,5132,5273,5283,5286,5353,5366,5386,5426,5516,5577,5744,5745,5898,5903,5916,6037,6044,6053,6059,6065,6167,6275,6300,6481,6499,6538,6539,6541,6542,6573,7300,14747,15234,16838,22619]]],["before",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1778]]],["bowels",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15773]]],["charge",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5455]]],["heart",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19183]]],["him",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8844]]],["in",[6,6,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,1,1,1,2,[[72,1,1,1,2]]],[4,3,3,2,5,[[156,1,1,2,3],[171,1,1,3,4],[181,1,1,4,5]]],[5,1,1,5,6,[[192,1,1,5,6]]]],[1364,2165,5009,5416,5690,5974]]],["inward",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14856]]],["inwardly",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14831]]],["inwards",[19,15,[[1,3,3,0,3,[[78,3,3,0,3]]],[2,16,12,3,15,[[90,2,2,3,5],[92,6,3,5,8],[93,3,2,8,10],[96,1,1,10,11],[97,3,3,11,14],[98,1,1,14,15]]]],[2349,2353,2358,2754,2758,2781,2787,2792,2803,2806,2882,2933,2938,2942,2967]]],["midst",[61,60,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,5,5,1,6,[[52,1,1,1,2],[57,1,1,2,3],[82,2,2,3,5],[83,1,1,5,6]]],[4,3,3,6,9,[[163,1,1,6,7],[169,1,1,7,8],[175,1,1,8,9]]],[5,1,1,9,10,[[193,1,1,9,10]]],[6,1,1,10,11,[[228,1,1,10,11]]],[8,1,1,11,12,[[251,1,1,11,12]]],[10,1,1,12,13,[[310,1,1,12,13]]],[18,9,9,13,22,[[523,1,1,13,14],[525,1,1,14,15],[532,2,2,15,17],[551,2,2,17,19],[555,1,1,19,20],[587,1,1,20,21],[615,1,1,21,22]]],[19,1,1,22,23,[[641,1,1,22,23]]],[22,12,12,23,35,[[683,2,2,23,25],[684,1,1,25,26],[688,1,1,26,27],[690,1,1,27,28],[697,4,4,28,32],[702,1,1,32,33],[703,1,1,33,34],[707,1,1,34,35]]],[23,4,4,35,39,[[750,1,1,35,36],[758,1,1,36,37],[773,1,1,37,38],[790,1,1,38,39]]],[24,3,3,39,42,[[797,1,1,39,40],[799,1,1,40,41],[800,1,1,41,42]]],[25,1,1,42,43,[[823,1,1,42,43]]],[27,2,2,43,45,[[866,1,1,43,44],[872,1,1,44,45]]],[28,1,1,45,46,[[877,1,1,45,46]]],[29,3,3,46,49,[[881,1,1,46,47],[885,2,2,47,49]]],[32,3,3,49,52,[[897,2,2,49,51],[898,1,1,51,52]]],[33,1,1,52,53,[[902,1,1,52,53]]],[34,3,2,53,55,[[904,1,1,53,54],[905,2,1,54,55]]],[35,4,4,55,59,[[908,4,4,55,59]]],[37,1,1,59,60,[[924,1,1,59,60]]]],[1467,1599,1732,2476,2478,2508,5214,5384,5514,5989,7013,7608,9447,14619,14643,14742,14743,15052,15060,15141,15788,16238,16805,17747,17764,17781,17873,17906,18005,18007,18018,18028,18108,18129,18216,19095,19302,19643,20066,20325,20399,20433,21003,22156,22249,22338,22404,22472,22474,22640,22641,22662,22725,22767,22770,22825,22832,22835,22837,23069]]],["part",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13982]]],["parts",[2,2,[[22,1,1,0,1,[[694,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[17980,19724]]],["purtenance",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1825]]],["therein",[2,2,[[0,1,1,0,1,[[17,1,1,0,1]]],[6,1,1,1,2,[[228,1,1,1,2]]]],[448,7000]]],["thought",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14659]]],["through",[5,5,[[4,1,1,0,1,[[181,1,1,0,1]]],[5,3,3,1,4,[[187,1,1,1,2],[189,1,1,2,3],[210,1,1,3,4]]],[29,1,1,4,5,[[883,1,1,4,5]]]],[5695,5862,5895,6493,22440]]],["within",[26,26,[[0,2,2,0,2,[[17,1,1,0,1],[24,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[8,1,1,3,4,[[260,1,1,3,4]]],[17,1,1,4,5,[[455,1,1,4,5]]],[18,10,10,5,15,[[513,1,1,5,6],[516,1,1,6,7],[528,1,1,7,8],[532,1,1,8,9],[571,1,1,9,10],[578,2,2,10,12],[580,1,1,12,13],[586,1,1,13,14],[624,1,1,14,15]]],[19,1,1,15,16,[[653,1,1,15,16]]],[22,2,2,16,18,[[704,1,1,16,17],[741,1,1,17,18]]],[23,2,2,18,20,[[748,1,1,18,19],[767,1,1,19,20]]],[24,1,1,20,21,[[797,1,1,20,21]]],[25,3,3,21,24,[[812,1,1,21,22],[837,2,2,22,24]]],[35,1,1,24,25,[[908,1,1,24,25]]],[37,1,1,25,26,[[922,1,1,25,26]]]],[436,680,5654,7898,13340,14439,14515,14701,14736,15450,15515,15520,15550,15777,16364,17165,18139,18877,19041,19493,20330,20674,21385,21386,22823,23046]]]]},{"k":"H7131","v":[["*",[12,11,[[3,6,5,0,5,[[117,1,1,0,1],[119,2,2,1,3],[133,2,1,3,4],[134,1,1,4,5]]],[4,1,1,5,6,[[172,1,1,5,6]]],[8,1,1,6,7,[[252,1,1,6,7]]],[9,1,1,7,8,[[284,1,1,7,8]]],[10,1,1,8,9,[[294,1,1,8,9]]],[25,2,2,9,11,[[841,1,1,9,10],[846,1,1,10,11]]]],[3655,3702,3730,4257,4264,5430,7659,8503,8871,21523,21634]]],["+",[2,1,[[3,2,1,0,1,[[133,2,1,0,1]]]],[4257]]],["approach",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5430]]],["came",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8871]]],["near",[4,4,[[8,1,1,0,1,[[252,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[25,2,2,2,4,[[841,1,1,2,3],[846,1,1,3,4]]]],[7659,8503,21523,21634]]],["nigh",[4,4,[[3,4,4,0,4,[[117,1,1,0,1],[119,2,2,1,3],[134,1,1,3,4]]]],[3655,3702,3730,4264]]]]},{"k":"H7132","v":[["*",[2,2,[[18,1,1,0,1,[[550,1,1,0,1]]],[22,1,1,1,2,[[736,1,1,1,2]]]],[15048,18788]]],["approaching",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18788]]],["near",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15048]]]]},{"k":"H7133","v":[["*",[82,78,[[2,40,36,0,36,[[90,6,4,0,4],[91,8,6,4,10],[92,7,7,10,17],[93,3,3,17,20],[94,1,1,20,21],[95,1,1,21,22],[96,6,6,22,28],[98,2,2,28,30],[106,1,1,30,31],[111,2,2,31,33],[112,1,1,33,34],[116,2,2,34,36]]],[3,38,38,36,74,[[121,1,1,36,37],[122,2,2,37,39],[123,28,28,39,67],[125,2,2,67,69],[131,2,2,69,71],[134,1,1,71,72],[144,1,1,72,73],[147,1,1,73,74]]],[15,2,2,74,76,[[422,1,1,74,75],[425,1,1,75,76]]],[25,2,2,76,78,[[821,1,1,76,77],[841,1,1,77,78]]]],[2747,2748,2755,2759,2763,2766,2767,2769,2774,2775,2779,2780,2784,2785,2786,2790,2792,2818,2823,2827,2841,2869,2892,2893,2894,2895,2908,2917,2960,2968,3239,3387,3396,3416,3579,3581,3807,3837,3844,3853,3860,3861,3862,3863,3867,3869,3873,3875,3879,3881,3885,3887,3891,3893,3897,3899,3903,3905,3909,3911,3915,3917,3921,3923,3927,3929,3933,3972,3978,4157,4178,4266,4579,4714,12583,12702,20923,21520]]],["oblation",[11,11,[[2,9,9,0,9,[[91,5,5,0,5],[92,1,1,5,6],[96,2,2,6,8],[111,1,1,8,9]]],[3,2,2,9,11,[[134,1,1,9,10],[147,1,1,10,11]]]],[2766,2767,2769,2774,2775,2779,2893,2908,3387,4266,4714]]],["oblations",[1,1,[[2,1,1,0,1,[[96,1,1,0,1]]]],[2917]]],["offered",[1,1,[[2,1,1,0,1,[[96,1,1,0,1]]]],[2894]]],["offering",[67,64,[[2,27,24,0,24,[[90,6,4,0,4],[91,2,1,4,5],[92,6,6,5,11],[93,3,3,11,14],[94,1,1,14,15],[95,1,1,15,16],[96,2,2,16,18],[98,2,2,18,20],[106,1,1,20,21],[111,1,1,21,22],[112,1,1,22,23],[116,1,1,23,24]]],[3,36,36,24,60,[[121,1,1,24,25],[122,2,2,25,27],[123,28,28,27,55],[125,2,2,55,57],[131,2,2,57,59],[144,1,1,59,60]]],[15,2,2,60,62,[[422,1,1,60,61],[425,1,1,61,62]]],[25,2,2,62,64,[[821,1,1,62,63],[841,1,1,63,64]]]],[2747,2748,2755,2759,2763,2780,2784,2785,2786,2790,2792,2818,2823,2827,2841,2869,2892,2895,2960,2968,3239,3396,3416,3579,3807,3837,3844,3853,3860,3861,3862,3863,3867,3869,3873,3875,3879,3881,3885,3887,3891,3893,3897,3899,3903,3905,3909,3911,3915,3917,3921,3923,3927,3929,3933,3972,3978,4157,4178,4579,12583,12702,20923,21520]]],["offerings",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2775]]],["sacrifice",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3581]]]]},{"k":"H7134","v":[["*",[5,5,[[6,1,1,0,1,[[219,1,1,0,1]]],[8,2,2,1,3,[[248,2,2,1,3]]],[18,1,1,3,4,[[551,1,1,3,4]]],[23,1,1,4,5,[[790,1,1,4,5]]]],[6802,7505,7506,15053,20067]]],["axe",[2,2,[[6,1,1,0,1,[[219,1,1,0,1]]],[8,1,1,1,2,[[248,1,1,1,2]]]],[6802,7505]]],["axes",[3,3,[[8,1,1,0,1,[[248,1,1,0,1]]],[18,1,1,1,2,[[551,1,1,1,2]]],[23,1,1,2,3,[[790,1,1,2,3]]]],[7506,15053,20067]]]]},{"k":"H7135","v":[["cold",[5,5,[[17,2,2,0,2,[[459,1,1,0,1],[472,1,1,1,2]]],[18,1,1,2,3,[[624,1,1,2,3]]],[19,1,1,3,4,[[652,1,1,3,4]]],[33,1,1,4,5,[[902,1,1,4,5]]]],[13443,13778,16368,17133,22729]]]]},{"k":"H7136","v":[["*",[27,27,[[0,4,4,0,4,[[23,1,1,0,1],[26,1,1,1,2],[41,1,1,2,3],[43,1,1,3,4]]],[1,1,1,4,5,[[52,1,1,4,5]]],[3,6,6,5,11,[[127,1,1,5,6],[139,4,4,6,10],[151,1,1,10,11]]],[4,1,1,11,12,[[177,1,1,11,12]]],[7,1,1,12,13,[[233,1,1,12,13]]],[8,1,1,13,14,[[263,1,1,13,14]]],[9,1,1,14,15,[[267,1,1,14,15]]],[13,1,1,15,16,[[400,1,1,15,16]]],[15,3,3,16,19,[[414,1,1,16,17],[415,2,2,17,19]]],[16,2,2,19,21,[[429,1,1,19,20],[431,1,1,20,21]]],[18,1,1,21,22,[[581,1,1,21,22]]],[20,3,3,22,25,[[660,2,2,22,24],[667,1,1,24,25]]],[22,1,1,25,26,[[719,1,1,25,26]]],[26,1,1,26,27,[[859,1,1,26,27]]]],[603,747,1281,1353,1597,4047,4419,4420,4431,4432,4856,5565,7152,7952,8028,11944,12315,12330,12333,12769,12806,15574,17347,17348,17486,18473,22029]]],["+",[4,4,[[0,1,1,0,1,[[23,1,1,0,1]]],[3,2,2,1,3,[[139,2,2,1,3]]],[13,1,1,3,4,[[400,1,1,3,4]]]],[603,4420,4432,11944]]],["appoint",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4856]]],["beams",[4,4,[[15,3,3,0,3,[[414,1,1,0,1],[415,2,2,1,3]]],[18,1,1,3,4,[[581,1,1,3,4]]]],[12315,12330,12333,15574]]],["befall",[2,2,[[0,1,1,0,1,[[43,1,1,0,1]]],[26,1,1,1,2,[[859,1,1,1,2]]]],[1353,22029]]],["befallen",[1,1,[[16,1,1,0,1,[[431,1,1,0,1]]]],[12806]]],["befell",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1281]]],["brought",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[747]]],["come",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4419]]],["happen",[2,2,[[8,1,1,0,1,[[263,1,1,0,1]]],[22,1,1,1,2,[[719,1,1,1,2]]]],[7952,18473]]],["happened",[2,2,[[9,1,1,0,1,[[267,1,1,0,1]]],[16,1,1,1,2,[[429,1,1,1,2]]]],[8028,12769]]],["happeneth",[3,3,[[20,3,3,0,3,[[660,2,2,0,2],[667,1,1,2,3]]]],[17347,17348,17486]]],["light",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7152]]],["meet",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4431]]],["met",[2,2,[[1,1,1,0,1,[[52,1,1,0,1]]],[4,1,1,1,2,[[177,1,1,1,2]]]],[1597,5565]]],["pass",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4047]]]]},{"k":"H7137","v":[["+",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5510]]]]},{"k":"H7138","v":[["*",[77,75,[[0,2,2,0,2,[[18,1,1,0,1],[44,1,1,1,2]]],[1,3,3,2,5,[[61,1,1,2,3],[62,1,1,3,4],[81,1,1,4,5]]],[2,4,4,5,9,[[99,1,1,5,6],[110,2,2,6,8],[114,1,1,8,9]]],[3,2,2,9,11,[[140,1,1,9,10],[143,1,1,10,11]]],[4,8,8,11,19,[[156,1,1,11,12],[165,1,1,12,13],[173,2,2,13,15],[174,1,1,15,16],[182,1,1,16,17],[184,2,2,17,19]]],[5,1,1,19,20,[[195,1,1,19,20]]],[7,2,2,20,22,[[233,1,1,20,21],[234,1,1,21,22]]],[9,1,1,22,23,[[285,1,1,22,23]]],[10,3,3,23,26,[[298,2,2,23,25],[311,1,1,25,26]]],[12,1,1,26,27,[[349,1,1,26,27]]],[13,1,1,27,28,[[372,1,1,27,28]]],[15,1,1,28,29,[[425,1,1,28,29]]],[16,2,2,29,31,[[426,1,1,29,30],[434,1,1,30,31]]],[17,3,3,31,34,[[452,1,1,31,32],[454,1,1,32,33],[455,1,1,33,34]]],[18,9,9,34,43,[[492,1,1,34,35],[499,1,1,35,36],[511,1,1,36,37],[515,1,1,37,38],[552,1,1,38,39],[562,1,1,39,40],[596,1,1,40,41],[622,1,1,41,42],[625,1,1,42,43]]],[19,2,2,43,45,[[637,1,1,43,44],[654,1,1,44,45]]],[22,8,8,45,53,[[691,2,2,45,47],[711,1,1,47,48],[728,1,1,48,49],[729,1,1,49,50],[733,1,1,50,51],[734,1,1,51,52],[735,1,1,52,53]]],[23,5,5,53,58,[[756,1,1,53,54],[767,1,1,54,55],[769,1,1,55,56],[792,2,2,56,58]]],[25,11,10,58,68,[[807,1,1,58,59],[808,2,2,59,61],[812,1,1,61,62],[823,1,1,62,63],[824,2,2,63,65],[831,2,1,65,66],[843,1,1,66,67],[844,1,1,67,68]]],[26,1,1,68,69,[[858,1,1,68,69]]],[28,3,3,69,72,[[876,1,1,69,70],[877,1,1,70,71],[878,1,1,71,72]]],[30,1,1,72,73,[[888,1,1,72,73]]],[35,3,2,73,75,[[906,3,2,73,75]]]],[477,1368,1820,1884,2465,2980,3347,3348,3494,4463,4565,5011,5279,5450,5453,5472,5722,5775,5793,6053,7169,7184,8553,9031,9044,9453,10760,11318,12675,12716,12854,13272,13311,13331,14090,14215,14406,14501,15072,15280,16049,16338,16385,16670,17179,17912,17928,18292,18670,18678,18746,18754,18784,19251,19507,19560,20096,20104,20575,20584,20585,20658,20981,21012,21019,21207,21565,21591,21995,22306,22312,22357,22525,22794,22801]]],["+",[7,7,[[2,1,1,0,1,[[114,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[10,1,1,2,3,[[311,1,1,2,3]]],[12,1,1,3,4,[[349,1,1,3,4]]],[17,1,1,4,5,[[455,1,1,4,5]]],[23,1,1,5,6,[[767,1,1,5,6]]],[25,1,1,6,7,[[808,1,1,6,7]]]],[3494,5775,9453,10760,13331,19507,20585]]],["allied",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12675]]],["approach",[2,2,[[25,2,2,0,2,[[843,1,1,0,1],[844,1,1,1,2]]]],[21565,21591]]],["hand",[5,5,[[4,1,1,0,1,[[184,1,1,0,1]]],[22,1,1,1,2,[[691,1,1,1,2]]],[28,2,2,2,4,[[876,1,1,2,3],[877,1,1,3,4]]],[35,1,1,4,5,[[906,1,1,4,5]]]],[5793,17912,22306,22312,22794]]],["kin",[2,2,[[7,1,1,0,1,[[233,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]]],[7169,8553]]],["kinsfolk",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13311]]],["kinsmen",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14501]]],["near",[34,32,[[0,2,2,0,2,[[18,1,1,0,1],[44,1,1,1,2]]],[1,1,1,2,3,[[62,1,1,2,3]]],[2,1,1,3,4,[[110,1,1,3,4]]],[10,1,1,4,5,[[298,1,1,4,5]]],[13,1,1,5,6,[[372,1,1,5,6]]],[18,4,4,6,10,[[499,1,1,6,7],[552,1,1,7,8],[596,1,1,8,9],[625,1,1,9,10]]],[19,2,2,10,12,[[637,1,1,10,11],[654,1,1,11,12]]],[22,7,7,12,19,[[691,1,1,12,13],[711,1,1,13,14],[728,1,1,14,15],[729,1,1,15,16],[733,1,1,16,17],[734,1,1,17,18],[735,1,1,18,19]]],[23,4,4,19,23,[[756,1,1,19,20],[769,1,1,20,21],[792,2,2,21,23]]],[25,6,5,23,28,[[807,1,1,23,24],[808,1,1,24,25],[812,1,1,25,26],[823,1,1,26,27],[831,2,1,27,28]]],[26,1,1,28,29,[[858,1,1,28,29]]],[28,1,1,29,30,[[878,1,1,29,30]]],[30,1,1,30,31,[[888,1,1,30,31]]],[35,2,1,31,32,[[906,2,1,31,32]]]],[477,1368,1884,3347,9031,11318,14215,15072,16049,16385,16670,17179,17928,18292,18670,18678,18746,18754,18784,19251,19560,20096,20104,20575,20584,20658,20981,21207,21995,22357,22525,22801]]],["nearer",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7184]]],["neighbour",[2,2,[[1,1,1,0,1,[[81,1,1,0,1]]],[18,1,1,1,2,[[492,1,1,1,2]]]],[2465,14090]]],["neighbours",[3,3,[[5,1,1,0,1,[[195,1,1,0,1]]],[25,2,2,1,3,[[824,2,2,1,3]]]],[6053,21012,21019]]],["next",[5,5,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[143,1,1,1,2]]],[4,2,2,2,4,[[173,2,2,2,4]]],[16,1,1,4,5,[[426,1,1,4,5]]]],[1820,4565,5450,5453,12716]]],["nigh",[12,12,[[2,2,2,0,2,[[99,1,1,0,1],[110,1,1,1,2]]],[3,1,1,2,3,[[140,1,1,2,3]]],[4,4,4,3,7,[[156,1,1,3,4],[165,1,1,4,5],[174,1,1,5,6],[182,1,1,6,7]]],[10,1,1,7,8,[[298,1,1,7,8]]],[16,1,1,8,9,[[434,1,1,8,9]]],[18,3,3,9,12,[[511,1,1,9,10],[562,1,1,10,11],[622,1,1,11,12]]]],[2980,3348,4463,5011,5279,5472,5722,9044,12854,14406,15280,16338]]],["short",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13272]]]]},{"k":"H7139","v":[["*",[5,5,[[2,1,1,0,1,[[110,1,1,0,1]]],[23,1,1,1,2,[[760,1,1,1,2]]],[25,2,2,2,4,[[828,1,1,2,3],[830,1,1,3,4]]],[32,1,1,4,5,[[893,1,1,4,5]]]],[3350,19342,21152,21201,22595]]],["+",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21152]]],["bald",[3,3,[[23,1,1,0,1,[[760,1,1,0,1]]],[25,1,1,1,2,[[830,1,1,1,2]]],[32,1,1,2,3,[[893,1,1,2,3]]]],[19342,21201,22595]]],["make",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3350]]]]},{"k":"H7140","v":[["*",[7,7,[[0,1,1,0,1,[[30,1,1,0,1]]],[17,3,3,1,4,[[441,1,1,1,2],[472,1,1,2,3],[473,1,1,3,4]]],[18,1,1,4,5,[[624,1,1,4,5]]],[23,1,1,5,6,[[780,1,1,5,6]]],[25,1,1,6,7,[[802,1,1,6,7]]]],[913,12994,13779,13822,16368,19872,20486]]],["crystal",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20486]]],["frost",[3,3,[[0,1,1,0,1,[[30,1,1,0,1]]],[17,1,1,1,2,[[472,1,1,1,2]]],[23,1,1,2,3,[[780,1,1,2,3]]]],[913,13779,19872]]],["ice",[3,3,[[17,2,2,0,2,[[441,1,1,0,1],[473,1,1,1,2]]],[18,1,1,2,3,[[624,1,1,2,3]]]],[12994,13822,16368]]]]},{"k":"H7141","v":[["Korah",[26,26,[[0,4,4,0,4,[[35,4,4,0,4]]],[1,2,2,4,6,[[55,2,2,4,6]]],[3,15,15,6,21,[[132,11,11,6,17],[142,3,3,17,20],[143,1,1,20,21]]],[12,5,5,21,26,[[338,1,1,21,22],[339,1,1,22,23],[343,2,2,23,25],[346,1,1,25,26]]]],[1045,1054,1056,1058,1676,1679,4195,4199,4200,4202,4210,4213,4218,4221,4226,4234,4243,4498,4499,4500,4557,10287,10349,10476,10491,10634]]]]},{"k":"H7142","v":[["*",[3,2,[[2,1,1,0,1,[[102,1,1,0,1]]],[11,2,1,1,2,[[314,2,1,1,2]]]],[3092,9574]]],["bald",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3092]]],["head",[2,1,[[11,2,1,0,1,[[314,2,1,0,1]]]],[9574]]]]},{"k":"H7143","v":[["*",[14,14,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,13,13,1,14,[[784,4,4,1,5],[785,4,4,5,9],[786,2,2,9,11],[787,3,3,11,14]]]],[10245,19949,19954,19956,19957,19968,19970,19971,19973,19976,19983,19999,20001,20002]]],["Careah",[1,1,[[11,1,1,0,1,[[337,1,1,0,1]]]],[10245]]],["Kareah",[13,13,[[23,13,13,0,13,[[784,4,4,0,4],[785,4,4,4,8],[786,2,2,8,10],[787,3,3,10,13]]]],[19949,19954,19956,19957,19968,19970,19971,19973,19976,19983,19999,20001,20002]]]]},{"k":"H7144","v":[["*",[11,11,[[2,1,1,0,1,[[110,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[22,3,3,2,5,[[681,1,1,2,3],[693,1,1,3,4],[700,1,1,4,5]]],[23,2,2,5,7,[[791,1,1,5,6],[792,1,1,6,7]]],[25,2,2,7,9,[[808,1,1,7,8],[828,1,1,8,9]]],[29,1,1,9,10,[[886,1,1,9,10]]],[32,1,1,10,11,[[893,1,1,10,11]]]],[3350,5291,17731,17962,18064,20078,20117,20595,21152,22491,22595]]],["+",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21152]]],["Baldness",[1,1,[[23,1,1,0,1,[[791,1,1,0,1]]]],[20078]]],["bald",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20117]]],["baldness",[8,8,[[2,1,1,0,1,[[110,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[22,3,3,2,5,[[681,1,1,2,3],[693,1,1,3,4],[700,1,1,4,5]]],[25,1,1,5,6,[[808,1,1,5,6]]],[29,1,1,6,7,[[886,1,1,6,7]]],[32,1,1,7,8,[[893,1,1,7,8]]]],[3350,5291,17731,17962,18064,20595,22491,22595]]]]},{"k":"H7145","v":[["*",[8,8,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[12,5,5,2,7,[[346,2,2,2,4],[349,1,1,4,5],[363,2,2,5,7]]],[13,1,1,7,8,[[386,1,1,7,8]]]],[1679,4547,10634,10646,10726,11078,11096,11606]]],["Korahite",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10646]]],["Korahites",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10634]]],["Korathites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4547]]],["Kore",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11096]]],["Korhites",[4,4,[[1,1,1,0,1,[[55,1,1,0,1]]],[12,2,2,1,3,[[349,1,1,1,2],[363,1,1,2,3]]],[13,1,1,3,4,[[386,1,1,3,4]]]],[1679,10726,11078,11606]]]]},{"k":"H7146","v":[["*",[4,3,[[2,4,3,0,3,[[102,4,3,0,3]]]],[3094,3095,3107]]],["head",[3,2,[[2,3,2,0,2,[[102,3,2,0,2]]]],[3094,3095]]],["within",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3107]]]]},{"k":"H7147","v":[["contrary",[7,7,[[2,7,7,0,7,[[115,7,7,0,7]]]],[3545,3547,3548,3551,3552,3564,3565]]]]},{"k":"H7148","v":[["famous",[2,2,[[3,2,2,0,2,[[132,1,1,0,1],[142,1,1,1,2]]]],[4196,4498]]]]},{"k":"H7149","v":[["*",[9,7,[[14,9,7,0,7,[[406,9,7,0,7]]]],[12120,12122,12123,12125,12126,12129,12131]]],["cities",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12120]]],["city",[8,6,[[14,8,6,0,6,[[406,8,6,0,6]]]],[12122,12123,12125,12126,12129,12131]]]]},{"k":"H7150","v":[["preaching",[1,1,[[31,1,1,0,1,[[891,1,1,0,1]]]],[22560]]]]},{"k":"H7151","v":[["*",[31,31,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,2,2,1,3,[[154,1,1,1,2],[155,1,1,2,3]]],[5,2,2,3,5,[[201,1,1,3,4],[207,1,1,4,5]]],[10,2,2,5,7,[[291,2,2,5,7]]],[17,1,1,7,8,[[474,1,1,7,8]]],[18,1,1,8,9,[[525,1,1,8,9]]],[19,5,5,9,14,[[637,1,1,9,10],[638,1,1,10,11],[645,2,2,11,13],[656,1,1,13,14]]],[22,10,10,14,24,[[679,2,2,14,16],[700,1,1,16,17],[702,1,1,17,18],[703,2,2,18,20],[704,1,1,20,21],[707,1,1,21,22],[710,1,1,22,23],[711,1,1,23,24]]],[23,1,1,24,25,[[793,1,1,24,25]]],[24,1,1,25,26,[[798,1,1,25,26]]],[27,1,1,26,27,[[867,1,1,26,27]]],[32,1,1,27,28,[[896,1,1,27,28]]],[34,3,3,28,31,[[904,3,3,28,31]]]],[4368,4974,4979,6215,6392,8758,8762,13841,14636,16671,16698,16912,16920,17232,17675,17680,18054,18105,18120,18121,18135,18194,18272,18299,20152,20343,22175,22630,22756,22760,22765]]],["+",[4,4,[[3,1,1,0,1,[[137,1,1,0,1]]],[19,2,2,1,3,[[645,1,1,1,2],[656,1,1,2,3]]],[32,1,1,3,4,[[896,1,1,3,4]]]],[4368,16920,17232,22630]]],["city",[27,27,[[4,2,2,0,2,[[154,1,1,0,1],[155,1,1,1,2]]],[5,2,2,2,4,[[201,1,1,2,3],[207,1,1,3,4]]],[10,2,2,4,6,[[291,2,2,4,6]]],[17,1,1,6,7,[[474,1,1,6,7]]],[18,1,1,7,8,[[525,1,1,7,8]]],[19,3,3,8,11,[[637,1,1,8,9],[638,1,1,9,10],[645,1,1,10,11]]],[22,10,10,11,21,[[679,2,2,11,13],[700,1,1,13,14],[702,1,1,14,15],[703,2,2,15,17],[704,1,1,17,18],[707,1,1,18,19],[710,1,1,19,20],[711,1,1,20,21]]],[23,1,1,21,22,[[793,1,1,21,22]]],[24,1,1,22,23,[[798,1,1,22,23]]],[27,1,1,23,24,[[867,1,1,23,24]]],[34,3,3,24,27,[[904,3,3,24,27]]]],[4974,4979,6215,6392,8758,8762,13841,14636,16671,16698,16912,17675,17680,18054,18105,18120,18121,18135,18194,18272,18299,20152,20343,22175,22756,22760,22765]]]]},{"k":"H7152","v":[["Kerioth",[4,4,[[5,1,1,0,1,[[201,1,1,0,1]]],[23,2,2,1,3,[[792,2,2,1,3]]],[29,1,1,3,4,[[880,1,1,3,4]]]],[6227,20104,20121,22381]]]]},{"k":"H7153","v":[["*",[7,7,[[0,2,2,0,2,[[22,1,1,0,1],[34,1,1,1,2]]],[5,3,3,2,5,[[200,1,1,2,3],[201,1,1,3,4],[206,1,1,4,5]]],[6,1,1,5,6,[[211,1,1,5,6]]],[15,1,1,6,7,[[423,1,1,6,7]]]],[573,1038,6202,6256,6379,6519,12613]]],["Arbah",[1,1,[[0,1,1,0,1,[[34,1,1,0,1]]]],[1038]]],["Kirjatharba",[6,6,[[0,1,1,0,1,[[22,1,1,0,1]]],[5,3,3,1,4,[[200,1,1,1,2],[201,1,1,2,3],[206,1,1,3,4]]],[6,1,1,4,5,[[211,1,1,4,5]]],[15,1,1,5,6,[[423,1,1,5,6]]]],[573,6202,6256,6379,6519,12613]]]]},{"k":"H7154","v":[["Kirjathbaal",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[204,1,1,1,2]]]],[6262,6307]]]]},{"k":"H7155","v":[["Kirjathhuzoth",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4414]]]]},{"k":"H7156","v":[["*",[6,6,[[3,1,1,0,1,[[148,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]],[12,1,1,2,3,[[343,1,1,2,3]]],[23,2,2,3,5,[[792,2,2,3,5]]],[25,1,1,5,6,[[826,1,1,5,6]]]],[4755,6173,10530,20081,20103,21092]]],["Kiriathaim",[3,3,[[23,2,2,0,2,[[792,2,2,0,2]]],[25,1,1,2,3,[[826,1,1,2,3]]]],[20081,20103,21092]]],["Kirjathaim",[3,3,[[3,1,1,0,1,[[148,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]],[12,1,1,2,3,[[343,1,1,2,3]]]],[4755,6173,10530]]]]},{"k":"H7157","v":[["*",[20,19,[[5,6,6,0,6,[[195,1,1,0,1],[201,2,2,1,3],[204,3,3,3,6]]],[6,2,1,6,7,[[228,2,1,6,7]]],[8,3,3,7,10,[[241,1,1,7,8],[242,2,2,8,10]]],[12,5,5,10,15,[[339,3,3,10,13],[350,2,2,13,15]]],[13,1,1,15,16,[[367,1,1,15,16]]],[14,1,1,16,17,[[404,1,1,16,17]]],[15,1,1,17,18,[[419,1,1,17,18]]],[23,1,1,18,19,[[770,1,1,18,19]]]],[6054,6211,6262,6307,6308,6321,7005,7352,7353,7354,10356,10358,10359,10765,10766,11198,12052,12449,19592]]],["+",[3,3,[[12,1,1,0,1,[[350,1,1,0,1]]],[13,1,1,1,2,[[367,1,1,1,2]]],[23,1,1,2,3,[[770,1,1,2,3]]]],[10765,11198,19592]]],["Kirjath",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6321]]],["Kirjatharim",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12052]]],["Kirjathjearim",[15,14,[[5,5,5,0,5,[[195,1,1,0,1],[201,2,2,1,3],[204,2,2,3,5]]],[6,2,1,5,6,[[228,2,1,5,6]]],[8,3,3,6,9,[[241,1,1,6,7],[242,2,2,7,9]]],[12,4,4,9,13,[[339,3,3,9,12],[350,1,1,12,13]]],[15,1,1,13,14,[[419,1,1,13,14]]]],[6054,6211,6262,6307,6308,7005,7352,7353,7354,10356,10358,10359,10766,12449]]]]},{"k":"H7158","v":[["*",[5,5,[[5,3,3,0,3,[[201,3,3,0,3]]],[6,2,2,3,5,[[211,2,2,3,5]]]],[6217,6218,6251,6520,6521]]],["Kirjathsannah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6251]]],["Kirjathsepher",[4,4,[[5,2,2,0,2,[[201,2,2,0,2]]],[6,2,2,2,4,[[211,2,2,2,4]]]],[6217,6218,6520,6521]]]]},{"k":"H7159","v":[["+",[2,2,[[25,2,2,0,2,[[838,2,2,0,2]]]],[21403,21405]]]]},{"k":"H7160","v":[["*",[4,4,[[1,3,3,0,3,[[83,3,3,0,3]]],[18,1,1,3,4,[[546,1,1,3,4]]]],[2525,2526,2531,14966]]],["horns",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14966]]],["shone",[3,3,[[1,3,3,0,3,[[83,3,3,0,3]]]],[2525,2526,2531]]]]},{"k":"H7161","v":[["*",[76,69,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,10,8,1,9,[[76,2,1,1,2],[78,1,1,2,3],[79,3,3,3,6],[86,2,2,6,8],[87,2,1,8,9]]],[2,8,8,9,17,[[93,5,5,9,14],[97,1,1,14,15],[98,1,1,15,16],[105,1,1,16,17]]],[4,2,1,17,18,[[185,2,1,17,18]]],[5,1,1,18,19,[[192,1,1,18,19]]],[8,4,4,19,23,[[237,2,2,19,21],[251,2,2,21,23]]],[9,1,1,23,24,[[288,1,1,23,24]]],[10,5,5,24,29,[[291,3,3,24,27],[292,1,1,27,28],[312,1,1,28,29]]],[12,1,1,29,30,[[362,1,1,29,30]]],[13,1,1,30,31,[[384,1,1,30,31]]],[17,1,1,31,32,[[451,1,1,31,32]]],[18,13,12,32,44,[[495,1,1,32,33],[499,1,1,33,34],[552,4,3,34,37],[566,2,2,37,39],[569,1,1,39,40],[589,1,1,40,41],[595,1,1,41,42],[609,1,1,42,43],[625,1,1,43,44]]],[22,1,1,44,45,[[683,1,1,44,45]]],[23,2,2,45,47,[[761,1,1,45,46],[792,1,1,46,47]]],[24,2,2,47,49,[[798,2,2,47,49]]],[25,5,5,49,54,[[828,1,1,49,50],[830,1,1,50,51],[835,1,1,51,52],[844,2,2,52,54]]],[26,9,8,54,62,[[857,9,8,54,62]]],[29,2,2,62,64,[[881,1,1,62,63],[884,1,1,63,64]]],[32,1,1,64,65,[[896,1,1,64,65]]],[34,1,1,65,66,[[905,1,1,65,66]]],[37,5,3,66,69,[[911,5,3,66,69]]]],[560,2274,2348,2384,2385,2392,2629,2630,2635,2802,2813,2820,2825,2829,2932,2962,3219,5827,5954,7241,7250,7596,7608,8605,8756,8767,8768,8798,9491,11051,11552,13253,14120,14225,15075,15076,15081,15343,15350,15421,15812,15896,16168,16385,17740,19358,20105,20335,20349,21136,21204,21334,21587,21592,21964,21966,21967,21968,21969,21970,21981,21982,22409,22463,22633,22772,22896,22897,22899]]],["+",[2,2,[[18,1,1,0,1,[[499,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]]],[14225,17740]]],["horn",[28,28,[[5,1,1,0,1,[[192,1,1,0,1]]],[8,4,4,1,5,[[237,2,2,1,3],[251,2,2,3,5]]],[9,1,1,5,6,[[288,1,1,5,6]]],[10,1,1,6,7,[[291,1,1,6,7]]],[12,1,1,7,8,[[362,1,1,7,8]]],[17,1,1,8,9,[[451,1,1,8,9]]],[18,9,9,9,18,[[495,1,1,9,10],[552,2,2,10,12],[566,2,2,12,14],[569,1,1,14,15],[589,1,1,15,16],[609,1,1,16,17],[625,1,1,17,18]]],[23,1,1,18,19,[[792,1,1,18,19]]],[24,2,2,19,21,[[798,2,2,19,21]]],[25,1,1,21,22,[[830,1,1,21,22]]],[26,4,4,22,26,[[857,4,4,22,26]]],[32,1,1,26,27,[[896,1,1,26,27]]],[37,1,1,27,28,[[911,1,1,27,28]]]],[5954,7241,7250,7596,7608,8605,8756,11051,13253,14120,15075,15076,15343,15350,15421,15812,16168,16385,20105,20335,20349,21204,21966,21969,21970,21982,22633,22899]]],["horns",[46,40,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,10,8,1,9,[[76,2,1,1,2],[78,1,1,2,3],[79,3,3,3,6],[86,2,2,6,8],[87,2,1,8,9]]],[2,8,8,9,17,[[93,5,5,9,14],[97,1,1,14,15],[98,1,1,15,16],[105,1,1,16,17]]],[4,2,1,17,18,[[185,2,1,17,18]]],[10,4,4,18,22,[[291,2,2,18,20],[292,1,1,20,21],[312,1,1,21,22]]],[13,1,1,22,23,[[384,1,1,22,23]]],[18,3,2,23,25,[[552,2,1,23,24],[595,1,1,24,25]]],[23,1,1,25,26,[[761,1,1,25,26]]],[25,4,4,26,30,[[828,1,1,26,27],[835,1,1,27,28],[844,2,2,28,30]]],[26,5,4,30,34,[[857,5,4,30,34]]],[29,2,2,34,36,[[881,1,1,34,35],[884,1,1,35,36]]],[34,1,1,36,37,[[905,1,1,36,37]]],[37,4,3,37,40,[[911,4,3,37,40]]]],[560,2274,2348,2384,2385,2392,2629,2630,2635,2802,2813,2820,2825,2829,2932,2962,3219,5827,8767,8768,8798,9491,11552,15081,15896,19358,21136,21334,21587,21592,21964,21967,21968,21981,22409,22463,22772,22896,22897,22899]]]]},{"k":"H7162","v":[["*",[14,10,[[26,14,10,0,10,[[852,4,4,0,4],[856,10,6,4,10]]]],[21812,21814,21817,21822,21940,21941,21944,21953,21954,21957]]],["cornet",[4,4,[[26,4,4,0,4,[[852,4,4,0,4]]]],[21812,21814,21817,21822]]],["horn",[5,4,[[26,5,4,0,4,[[856,5,4,0,4]]]],[21941,21944,21953,21954]]],["horns",[5,4,[[26,5,4,0,4,[[856,5,4,0,4]]]],[21940,21941,21953,21957]]]]},{"k":"H7163","v":[["Kerenhappuch",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13936]]]]},{"k":"H7164","v":[["*",[2,2,[[22,2,2,0,2,[[724,2,2,0,2]]]],[18587,18588]]],["stoop",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18588]]],["stoopeth",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18587]]]]},{"k":"H7165","v":[["taches",[10,7,[[1,10,7,0,7,[[75,5,3,0,3],[84,1,1,3,4],[85,3,2,4,6],[88,1,1,6,7]]]],[2241,2246,2268,2542,2579,2584,2697]]]]},{"k":"H7166","v":[["feet",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8639,14154]]]]},{"k":"H7167","v":[["*",[63,60,[[0,3,3,0,3,[[36,2,2,0,2],[43,1,1,2,3]]],[1,2,2,3,5,[[77,1,1,3,4],[88,1,1,4,5]]],[2,1,1,5,6,[[102,1,1,5,6]]],[3,1,1,6,7,[[130,1,1,6,7]]],[5,1,1,7,8,[[193,1,1,7,8]]],[6,1,1,8,9,[[221,1,1,8,9]]],[8,4,4,9,13,[[239,1,1,9,10],[250,2,2,10,12],[263,1,1,12,13]]],[9,7,6,13,19,[[267,2,2,13,15],[269,1,1,15,16],[279,3,2,16,18],[281,1,1,18,19]]],[10,10,9,19,28,[[301,6,5,19,24],[303,2,2,24,26],[304,1,1,26,27],[311,1,1,27,28]]],[11,11,10,28,38,[[314,1,1,28,29],[317,3,2,29,31],[318,1,1,31,32],[323,1,1,32,33],[329,1,1,33,34],[330,1,1,34,35],[331,1,1,35,36],[334,2,2,36,38]]],[13,3,3,38,41,[[389,1,1,38,39],[400,2,2,39,41]]],[14,2,2,41,43,[[411,2,2,41,43]]],[16,1,1,43,44,[[429,1,1,43,44]]],[17,2,2,44,46,[[436,1,1,44,45],[437,1,1,45,46]]],[18,1,1,46,47,[[512,1,1,46,47]]],[20,1,1,47,48,[[661,1,1,47,48]]],[22,3,3,48,51,[[714,1,1,48,49],[715,1,1,49,50],[742,1,1,50,51]]],[23,5,5,51,56,[[748,1,1,51,52],[766,1,1,52,53],[780,2,2,53,55],[785,1,1,55,56]]],[25,2,2,56,58,[[814,2,2,56,58]]],[27,1,1,58,59,[[874,1,1,58,59]]],[28,1,1,59,60,[[877,1,1,59,60]]]],[1112,1117,1337,2325,2687,3108,4114,5982,6864,7309,7587,7588,7959,8024,8033,8112,8336,8348,8421,9119,9120,9121,9138,9139,9187,9189,9226,9478,9563,9654,9655,9704,9843,10004,10061,10062,10156,10164,11669,11952,11960,12240,12242,12763,12889,12903,14425,17366,18352,18353,18886,19057,19468,19865,19866,19962,20728,20729,22274,22324]]],["+",[24,23,[[0,1,1,0,1,[[36,1,1,0,1]]],[6,1,1,1,2,[[221,1,1,1,2]]],[8,2,2,2,4,[[250,1,1,2,3],[263,1,1,3,4]]],[9,1,1,4,5,[[279,1,1,4,5]]],[10,5,4,5,9,[[301,4,3,5,8],[304,1,1,8,9]]],[11,6,6,9,15,[[317,1,1,9,10],[318,1,1,10,11],[323,1,1,11,12],[331,1,1,12,13],[334,2,2,13,15]]],[13,3,3,15,18,[[389,1,1,15,16],[400,2,2,16,18]]],[14,1,1,18,19,[[411,1,1,18,19]]],[16,1,1,19,20,[[429,1,1,19,20]]],[17,1,1,20,21,[[436,1,1,20,21]]],[22,1,1,21,22,[[715,1,1,21,22]]],[23,1,1,22,23,[[780,1,1,22,23]]]],[1112,6864,7588,7959,8348,9119,9121,9139,9226,9655,9704,9843,10062,10156,10164,11669,11952,11960,12240,12763,12889,18353,19866]]],["Rend",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8112]]],["cut",[1,1,[[23,1,1,0,1,[[780,1,1,0,1]]]],[19865]]],["out",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19468]]],["rend",[7,7,[[1,1,1,0,1,[[88,1,1,0,1]]],[2,1,1,1,2,[[102,1,1,1,2]]],[10,1,1,2,3,[[301,1,1,2,3]]],[20,1,1,3,4,[[661,1,1,3,4]]],[22,1,1,4,5,[[742,1,1,4,5]]],[27,1,1,5,6,[[874,1,1,5,6]]],[28,1,1,6,7,[[877,1,1,6,7]]]],[2687,3108,9120,17366,18886,22274,22324]]],["rent",[25,25,[[0,2,2,0,2,[[36,1,1,0,1],[43,1,1,1,2]]],[1,1,1,2,3,[[77,1,1,2,3]]],[3,1,1,3,4,[[130,1,1,3,4]]],[5,1,1,4,5,[[193,1,1,4,5]]],[8,2,2,5,7,[[239,1,1,5,6],[250,1,1,6,7]]],[9,5,5,7,12,[[267,2,2,7,9],[279,2,2,9,11],[281,1,1,11,12]]],[10,4,4,12,16,[[301,1,1,12,13],[303,2,2,13,15],[311,1,1,15,16]]],[11,5,5,16,21,[[314,1,1,16,17],[317,2,2,17,19],[329,1,1,19,20],[330,1,1,20,21]]],[14,1,1,21,22,[[411,1,1,21,22]]],[17,1,1,22,23,[[437,1,1,22,23]]],[22,1,1,23,24,[[714,1,1,23,24]]],[23,1,1,24,25,[[785,1,1,24,25]]]],[1117,1337,2325,4114,5982,7309,7587,8024,8033,8336,8348,8421,9138,9187,9189,9478,9563,9654,9655,10004,10061,12242,12903,18352,19962]]],["rentest",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19057]]],["tear",[3,3,[[18,1,1,0,1,[[512,1,1,0,1]]],[25,2,2,1,3,[[814,2,2,1,3]]]],[14425,20728,20729]]]]},{"k":"H7168","v":[["*",[4,4,[[10,2,2,0,2,[[301,2,2,0,2]]],[11,1,1,2,3,[[314,1,1,2,3]]],[19,1,1,3,4,[[650,1,1,3,4]]]],[9138,9139,9563,17065]]],["pieces",[3,3,[[10,2,2,0,2,[[301,2,2,0,2]]],[11,1,1,2,3,[[314,1,1,2,3]]]],[9138,9139,9563]]],["rags",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17065]]]]},{"k":"H7169","v":[["*",[5,5,[[17,1,1,0,1,[[468,1,1,0,1]]],[18,1,1,1,2,[[512,1,1,1,2]]],[19,3,3,2,5,[[633,1,1,2,3],[637,1,1,3,4],[643,1,1,4,5]]]],[13656,14429,16553,16666,16870]]],["formed",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13656]]],["moving",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16870]]],["wink",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14429]]],["winketh",[2,2,[[19,2,2,0,2,[[633,1,1,0,1],[637,1,1,1,2]]]],[16553,16666]]]]},{"k":"H7170","v":[["+",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[855,1,1,1,2]]]],[21815,21929]]]]},{"k":"H7171","v":[["destruction",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20065]]]]},{"k":"H7172","v":[["*",[8,6,[[3,1,1,0,1,[[121,1,1,0,1]]],[10,6,4,1,5,[[296,4,3,1,4],[297,2,1,4,5]]],[29,1,1,5,6,[[887,1,1,5,6]]]],[3809,8911,8912,8926,8941,22498]]],["+",[2,2,[[10,2,2,0,2,[[296,1,1,0,1],[297,1,1,1,2]]]],[8911,8941]]],["bottom",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22498]]],["floor",[4,4,[[3,1,1,0,1,[[121,1,1,0,1]]],[10,3,3,1,4,[[296,3,3,1,4]]]],[3809,8911,8912,8926]]],["other",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8941]]]]},{"k":"H7173","v":[["Karkaa",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6205]]]]},{"k":"H7174","v":[["Karkor",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6729]]]]},{"k":"H7175","v":[["*",[51,34,[[1,48,31,0,31,[[75,23,14,0,14],[84,1,1,14,15],[85,22,14,15,29],[88,1,1,29,30],[89,1,1,30,31]]],[3,2,2,31,33,[[119,1,1,31,32],[120,1,1,32,33]]],[25,1,1,33,34,[[828,1,1,33,34]]]],[2250,2251,2252,2253,2254,2255,2256,2257,2258,2260,2261,2262,2263,2264,2542,2586,2587,2588,2589,2590,2591,2592,2593,2594,2596,2597,2598,2599,2600,2697,2725,3728,3774,21127]]],["+",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2542]]],["benches",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21127]]],["board",[17,10,[[1,17,10,0,10,[[75,9,5,0,5],[85,8,5,5,10]]]],[2251,2252,2254,2256,2260,2587,2588,2590,2592,2596]]],["boards",[32,28,[[1,30,26,0,26,[[75,14,12,0,12],[85,14,12,12,24],[88,1,1,24,25],[89,1,1,25,26]]],[3,2,2,26,28,[[119,1,1,26,27],[120,1,1,27,28]]]],[2250,2252,2253,2254,2255,2257,2258,2260,2261,2262,2263,2264,2586,2588,2589,2590,2591,2593,2594,2596,2597,2598,2599,2600,2697,2725,3728,3774]]]]},{"k":"H7176","v":[["city",[5,5,[[17,1,1,0,1,[[464,1,1,0,1]]],[19,4,4,1,5,[[635,1,1,1,2],[636,2,2,2,4],[638,1,1,4,5]]]],[13539,16605,16641,16652,16699]]]]},{"k":"H7177","v":[["Kartah",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6415]]]]},{"k":"H7178","v":[["Kartan",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6413]]]]},{"k":"H7179","v":[["stubble",[16,16,[[1,2,2,0,2,[[54,1,1,0,1],[64,1,1,1,2]]],[17,3,3,2,5,[[448,1,1,2,3],[476,2,2,3,5]]],[18,1,1,5,6,[[560,1,1,5,6]]],[22,5,5,6,11,[[683,1,1,6,7],[711,1,1,7,8],[718,1,1,8,9],[719,1,1,9,10],[725,1,1,10,11]]],[23,1,1,11,12,[[757,1,1,11,12]]],[28,1,1,12,13,[[877,1,1,12,13]]],[30,1,1,13,14,[[888,1,1,13,14]]],[33,1,1,14,15,[[900,1,1,14,15]]],[38,1,1,15,16,[[928,1,1,15,16]]]],[1644,1927,13178,13916,13917,15254,17763,18290,18444,18453,18613,19290,22316,22528,22694,23139]]]]},{"k":"H7180","v":[["cucumbers",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4029]]]]},{"k":"H7181","v":[["*",[46,45,[[8,1,1,0,1,[[250,1,1,0,1]]],[13,2,2,1,3,[[386,1,1,1,2],[399,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[17,2,2,4,6,[[448,1,1,4,5],[468,1,1,5,6]]],[18,8,8,6,14,[[482,1,1,6,7],[487,1,1,7,8],[494,1,1,8,9],[532,1,1,9,10],[538,1,1,10,11],[543,1,1,11,12],[563,1,1,12,13],[619,1,1,13,14]]],[19,8,8,14,22,[[628,1,1,14,15],[629,1,1,15,16],[631,2,2,16,18],[632,1,1,18,19],[634,1,1,19,20],[644,1,1,20,21],[656,1,1,21,22]]],[21,1,1,22,23,[[678,1,1,22,23]]],[22,9,9,23,32,[[688,1,1,23,24],[699,1,1,24,25],[706,1,1,25,26],[710,1,1,26,27],[712,1,1,27,28],[720,1,1,28,29],[726,1,1,29,30],[727,1,1,30,31],[729,1,1,31,32]]],[23,8,7,32,39,[[750,4,3,32,35],[752,1,1,35,36],[762,2,2,36,38],[767,1,1,38,39]]],[26,1,1,39,40,[[858,1,1,39,40]]],[27,1,1,40,41,[[866,1,1,40,41]]],[32,1,1,41,42,[[893,1,1,41,42]]],[37,2,2,42,44,[[911,1,1,42,43],[917,1,1,43,44]]],[38,1,1,44,45,[[927,1,1,44,45]]]],[7582,11602,11918,12545,13159,13681,13975,14058,14104,14734,14820,14892,15290,16292,16424,16435,16491,16510,16518,16599,16877,17236,17653,17880,18042,18187,18262,18304,18503,18632,18637,18677,19099,19106,19108,19159,19402,19403,19502,22007,22153,22581,22882,22973,23136]]],["Attend",[2,2,[[18,2,2,0,2,[[532,1,1,0,1],[619,1,1,1,2]]]],[14734,16292]]],["Hearken",[4,4,[[13,1,1,0,1,[[386,1,1,0,1]]],[18,1,1,1,2,[[482,1,1,1,2]]],[22,1,1,2,3,[[729,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]]],[11602,13975,18677,19106]]],["attend",[6,6,[[18,2,2,0,2,[[494,1,1,0,1],[563,1,1,1,2]]],[19,4,4,2,6,[[631,2,2,2,4],[632,1,1,4,5],[634,1,1,5,6]]]],[14104,15290,16491,16510,16518,16599]]],["attended",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14892]]],["hear",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14058]]],["heard",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17880]]],["hearken",[17,17,[[8,1,1,0,1,[[250,1,1,0,1]]],[13,1,1,1,2,[[399,1,1,1,2]]],[17,1,1,2,3,[[448,1,1,2,3]]],[19,1,1,3,4,[[656,1,1,3,4]]],[21,1,1,4,5,[[678,1,1,4,5]]],[22,5,5,5,10,[[706,1,1,5,6],[710,1,1,6,7],[712,1,1,7,8],[720,1,1,8,9],[727,1,1,9,10]]],[23,2,2,10,12,[[750,2,2,10,12]]],[26,1,1,12,13,[[858,1,1,12,13]]],[27,1,1,13,14,[[866,1,1,13,14]]],[32,1,1,14,15,[[893,1,1,14,15]]],[37,2,2,15,17,[[911,1,1,15,16],[917,1,1,16,17]]]],[7582,11918,13159,17236,17653,18187,18262,18304,18503,18637,19099,19106,22007,22153,22581,22882,22973]]],["hearkened",[6,6,[[15,1,1,0,1,[[421,1,1,0,1]]],[22,2,2,1,3,[[699,1,1,1,2],[726,1,1,2,3]]],[23,2,2,3,5,[[750,1,1,3,4],[752,1,1,4,5]]],[38,1,1,5,6,[[927,1,1,5,6]]]],[12545,18042,18632,19108,19159,23136]]],["heed",[3,3,[[19,1,1,0,1,[[644,1,1,0,1]]],[23,2,2,1,3,[[762,2,2,1,3]]]],[16877,19402,19403]]],["incline",[1,1,[[19,1,1,0,1,[[629,1,1,0,1]]]],[16435]]],["marked",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19502]]],["regarded",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16424]]],["unto",[1,1,[[18,1,1,0,1,[[538,1,1,0,1]]]],[14820]]],["well",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13681]]]]},{"k":"H7182","v":[["*",[4,3,[[10,1,1,0,1,[[308,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]],[22,2,1,2,3,[[699,2,1,2,3]]]],[9370,9634,18042]]],["diligently",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18042]]],["hearing",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9634]]],["heed",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18042]]],["regarded",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9370]]]]},{"k":"H7183","v":[["*",[5,5,[[13,2,2,0,2,[[372,1,1,0,1],[373,1,1,1,2]]],[15,2,2,2,4,[[413,2,2,2,4]]],[18,1,1,4,5,[[607,1,1,4,5]]]],[11322,11339,12302,12307,16142]]],["attent",[2,2,[[13,2,2,0,2,[[372,1,1,0,1],[373,1,1,1,2]]]],[11322,11339]]],["attentive",[3,3,[[15,2,2,0,2,[[413,2,2,0,2]]],[18,1,1,2,3,[[607,1,1,2,3]]]],[12302,12307,16142]]]]},{"k":"H7184","v":[["*",[4,4,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]],[12,1,1,3,4,[[365,1,1,3,4]]]],[2224,2620,3750,11160]]],["covers",[3,3,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]]],[2224,2620,3750]]],["cups",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11160]]]]},{"k":"H7185","v":[["*",[28,28,[[0,3,3,0,3,[[34,2,2,0,2],[48,1,1,2,3]]],[1,2,2,3,5,[[56,1,1,3,4],[62,1,1,4,5]]],[4,4,4,5,9,[[153,1,1,5,6],[154,1,1,6,7],[162,1,1,7,8],[167,1,1,8,9]]],[8,1,1,9,10,[[240,1,1,9,10]]],[9,1,1,10,11,[[285,1,1,10,11]]],[10,1,1,11,12,[[302,1,1,11,12]]],[11,2,2,12,14,[[314,1,1,12,13],[329,1,1,13,14]]],[13,3,3,14,17,[[376,1,1,14,15],[396,1,1,15,16],[402,1,1,16,17]]],[15,3,3,17,20,[[421,3,3,17,20]]],[17,1,1,20,21,[[444,1,1,20,21]]],[18,1,1,21,22,[[572,1,1,21,22]]],[19,2,2,22,24,[[655,1,1,22,23],[656,1,1,23,24]]],[22,1,1,24,25,[[686,1,1,24,25]]],[23,3,3,25,28,[[751,1,1,25,26],[761,1,1,26,27],[763,1,1,27,28]]]],[1027,1028,1480,1688,1882,4909,4968,5202,5337,7326,8554,9155,9561,9997,11399,11835,12006,12527,12528,12540,13055,15462,17210,17225,17828,19145,19380,19422]]],["+",[11,11,[[1,1,1,0,1,[[56,1,1,0,1]]],[4,3,3,1,4,[[154,1,1,1,2],[162,1,1,2,3],[167,1,1,3,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[13,2,2,5,7,[[396,1,1,5,6],[402,1,1,6,7]]],[15,2,2,7,9,[[421,2,2,7,9]]],[23,2,2,9,11,[[751,1,1,9,10],[763,1,1,10,11]]]],[1688,4968,5202,5337,9997,11835,12006,12527,12528,19145,19422]]],["Harden",[1,1,[[18,1,1,0,1,[[572,1,1,0,1]]]],[15462]]],["bestead",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17828]]],["cruel",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1480]]],["fiercer",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8554]]],["grievous",[2,2,[[10,1,1,0,1,[[302,1,1,0,1]]],[13,1,1,1,2,[[376,1,1,1,2]]]],[9155,11399]]],["hard",[3,3,[[0,2,2,0,2,[[34,2,2,0,2]]],[4,1,1,2,3,[[153,1,1,2,3]]]],[1027,1028,4909]]],["hardened",[2,2,[[15,1,1,0,1,[[421,1,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]]],[12540,13055]]],["hardeneth",[2,2,[[19,2,2,0,2,[[655,1,1,0,1],[656,1,1,1,2]]]],[17210,17225]]],["hardly",[1,1,[[1,1,1,0,1,[[62,1,1,0,1]]]],[1882]]],["sore",[1,1,[[8,1,1,0,1,[[240,1,1,0,1]]]],[7326]]],["stiff",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19380]]],["thing",[1,1,[[11,1,1,0,1,[[314,1,1,0,1]]]],[9561]]]]},{"k":"H7186","v":[["*",[36,36,[[0,2,2,0,2,[[41,2,2,0,2]]],[1,7,7,2,9,[[50,1,1,2,3],[55,1,1,3,4],[67,1,1,4,5],[81,1,1,5,6],[82,2,2,6,8],[83,1,1,8,9]]],[4,4,4,9,13,[[161,2,2,9,11],[178,1,1,11,12],[183,1,1,12,13]]],[6,2,2,13,15,[[212,1,1,13,14],[214,1,1,14,15]]],[8,3,3,15,18,[[236,1,1,15,16],[255,1,1,16,17],[260,1,1,17,18]]],[9,2,2,18,20,[[268,1,1,18,19],[269,1,1,19,20]]],[10,3,3,20,23,[[302,2,2,20,22],[304,1,1,22,23]]],[13,2,2,23,25,[[376,2,2,23,25]]],[17,1,1,25,26,[[465,1,1,25,26]]],[18,1,1,26,27,[[537,1,1,26,27]]],[21,1,1,27,28,[[678,1,1,27,28]]],[22,6,6,28,34,[[692,1,1,28,29],[697,1,1,29,30],[699,1,1,30,31],[705,2,2,31,33],[726,1,1,33,34]]],[25,2,2,34,36,[[803,1,1,34,35],[804,1,1,35,36]]]],[1259,1282,1546,1664,2025,2447,2476,2478,2505,5163,5170,5572,5755,6564,6623,7227,7740,7864,8066,8120,9155,9164,9224,11399,11408,13582,14810,17646,17931,18008,18037,18152,18159,18618,20496,20509]]],["+",[13,13,[[1,6,6,0,6,[[55,1,1,0,1],[67,1,1,1,2],[81,1,1,2,3],[82,2,2,3,5],[83,1,1,5,6]]],[4,2,2,6,8,[[161,2,2,6,8]]],[6,2,2,8,10,[[212,1,1,8,9],[214,1,1,9,10]]],[17,1,1,10,11,[[465,1,1,10,11]]],[25,2,2,11,13,[[803,1,1,11,12],[804,1,1,12,13]]]],[1664,2025,2447,2476,2478,2505,5163,5170,6564,6623,13582,20496,20509]]],["churlish",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7864]]],["cruel",[2,2,[[21,1,1,0,1,[[678,1,1,0,1]]],[22,1,1,1,2,[[697,1,1,1,2]]]],[17646,18008]]],["grievous",[3,3,[[10,1,1,0,1,[[302,1,1,0,1]]],[13,1,1,1,2,[[376,1,1,1,2]]],[22,1,1,2,3,[[699,1,1,2,3]]]],[9155,11399,18037]]],["hard",[5,5,[[1,1,1,0,1,[[50,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]],[9,1,1,2,3,[[269,1,1,2,3]]],[18,1,1,3,4,[[537,1,1,3,4]]],[22,1,1,4,5,[[692,1,1,4,5]]]],[1546,5572,8120,14810,17931]]],["heavy",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9224]]],["obstinate",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18618]]],["rough",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18159]]],["roughly",[5,5,[[0,2,2,0,2,[[41,2,2,0,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[10,1,1,3,4,[[302,1,1,3,4]]],[13,1,1,4,5,[[376,1,1,4,5]]]],[1259,1282,7740,9164,11408]]],["sore",[2,2,[[9,1,1,0,1,[[268,1,1,0,1]]],[22,1,1,1,2,[[705,1,1,1,2]]]],[8066,18152]]],["sorrowful",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7227]]],["stiff",[1,1,[[4,1,1,0,1,[[183,1,1,0,1]]]],[5755]]]]},{"k":"H7187","v":[["truth",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21805,21874]]]]},{"k":"H7188","v":[["hardened",[2,2,[[17,1,1,0,1,[[474,1,1,0,1]]],[22,1,1,1,2,[[741,1,1,1,2]]]],[13850,18883]]]]},{"k":"H7189","v":[["*",[2,2,[[18,1,1,0,1,[[537,1,1,0,1]]],[19,1,1,1,2,[[649,1,1,1,2]]]],[14811,17036]]],["certainty",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17036]]],["truth",[1,1,[[18,1,1,0,1,[[537,1,1,0,1]]]],[14811]]]]},{"k":"H7190","v":[["stubbornness",[1,1,[[4,1,1,0,1,[[161,1,1,0,1]]]],[5184]]]]},{"k":"H7191","v":[["*",[2,2,[[5,2,2,0,2,[[205,1,1,0,1],[207,1,1,1,2]]]],[6341,6409]]],["Kishion",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6341]]],["Kishon",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6409]]]]},{"k":"H7192","v":[["*",[3,3,[[0,1,1,0,1,[[32,1,1,0,1]]],[5,1,1,1,2,[[210,1,1,1,2]]],[17,1,1,2,3,[[477,1,1,2,3]]]],[979,6508,13933]]],["+",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13933]]],["money",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[979]]],["silver",[1,1,[[5,1,1,0,1,[[210,1,1,0,1]]]],[6508]]]]},{"k":"H7193","v":[["*",[8,7,[[2,3,3,0,3,[[100,3,3,0,3]]],[4,2,2,3,5,[[166,2,2,3,5]]],[8,1,1,5,6,[[252,1,1,5,6]]],[25,2,1,6,7,[[830,2,1,6,7]]]],[3006,3007,3009,5299,5300,7623,21187]]],["mail",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7623]]],["scales",[7,6,[[2,3,3,0,3,[[100,3,3,0,3]]],[4,2,2,3,5,[[166,2,2,3,5]]],[25,2,1,5,6,[[830,2,1,5,6]]]],[3006,3007,3009,5299,5300,21187]]]]},{"k":"H7194","v":[["*",[44,44,[[0,4,4,0,4,[[29,2,2,0,2],[37,1,1,2,3],[43,1,1,3,4]]],[4,2,2,4,6,[[158,1,1,4,5],[163,1,1,5,6]]],[5,2,2,6,8,[[188,2,2,6,8]]],[8,3,3,8,11,[[253,1,1,8,9],[257,2,2,9,11]]],[9,1,1,11,12,[[281,1,1,11,12]]],[10,4,4,12,16,[[305,1,1,12,13],[306,3,3,13,16]]],[11,10,10,16,26,[[321,1,1,16,17],[322,1,1,17,18],[324,1,1,18,19],[326,1,1,19,20],[327,4,4,20,24],[333,2,2,24,26]]],[13,6,6,26,32,[[390,3,3,26,29],[391,1,1,29,30],[399,2,2,30,32]]],[15,2,2,32,34,[[416,2,2,32,34]]],[17,3,3,34,37,[[473,1,1,34,35],[474,1,1,35,36],[476,1,1,36,37]]],[19,4,4,37,41,[[630,1,1,37,38],[633,1,1,38,39],[634,1,1,39,40],[649,1,1,40,41]]],[22,1,1,41,42,[[727,1,1,41,42]]],[23,1,1,42,43,[[795,1,1,42,43]]],[29,1,1,43,44,[[885,1,1,43,44]]]],[871,872,1147,1354,5094,5226,5887,5890,7677,7795,7800,8420,9276,9292,9299,9303,9770,9802,9870,9915,9935,9940,9950,9955,10142,10143,11698,11702,11703,11731,11932,11933,12365,12367,13824,13844,13893,16458,16561,16578,17030,18654,20275,22474]]],["+",[2,2,[[5,2,2,0,2,[[188,2,2,0,2]]]],[5887,5890]]],["Bind",[2,2,[[19,2,2,0,2,[[633,1,1,0,1],[634,1,1,1,2]]]],[16561,16578]]],["bind",[8,8,[[4,2,2,0,2,[[158,1,1,0,1],[163,1,1,1,2]]],[17,3,3,2,5,[[473,1,1,2,3],[474,1,1,3,4],[476,1,1,4,5]]],[19,1,1,5,6,[[630,1,1,5,6]]],[22,1,1,6,7,[[727,1,1,6,7]]],[23,1,1,7,8,[[795,1,1,7,8]]]],[5094,5226,13824,13844,13893,16458,18654,20275]]],["bound",[2,2,[[0,1,1,0,1,[[37,1,1,0,1]]],[19,1,1,1,2,[[649,1,1,1,2]]]],[1147,17030]]],["conspirators",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8420]]],["conspired",[18,18,[[8,2,2,0,2,[[257,2,2,0,2]]],[10,3,3,2,5,[[305,1,1,2,3],[306,2,2,3,5]]],[11,6,6,5,11,[[321,1,1,5,6],[322,1,1,6,7],[327,2,2,7,9],[333,2,2,9,11]]],[13,5,5,11,16,[[390,3,3,11,14],[399,2,2,14,16]]],[15,1,1,16,17,[[416,1,1,16,17]]],[29,1,1,17,18,[[885,1,1,17,18]]]],[7795,7800,9276,9292,9299,9770,9802,9935,9950,10142,10143,11698,11702,11703,11932,11933,12367,22474]]],["knit",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7677]]],["made",[5,5,[[11,4,4,0,4,[[324,1,1,0,1],[326,1,1,1,2],[327,2,2,2,4]]],[13,1,1,4,5,[[391,1,1,4,5]]]],[9870,9915,9940,9955,11731]]],["stronger",[2,2,[[0,2,2,0,2,[[29,2,2,0,2]]]],[871,872]]],["together",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12365]]],["up",[1,1,[[0,1,1,0,1,[[43,1,1,0,1]]]],[1354]]],["wrought",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9303]]]]},{"k":"H7195","v":[["*",[16,13,[[9,1,1,0,1,[[281,1,1,0,1]]],[10,1,1,1,2,[[306,1,1,1,2]]],[11,7,6,2,8,[[323,2,1,2,3],[324,1,1,3,4],[326,1,1,4,5],[327,2,2,5,7],[329,1,1,7,8]]],[13,3,2,8,10,[[389,2,1,8,9],[391,1,1,9,10]]],[22,2,1,10,11,[[686,2,1,10,11]]],[23,1,1,11,12,[[755,1,1,11,12]]],[25,1,1,12,13,[[823,1,1,12,13]]]],[8401,9303,9843,9870,9915,9940,9955,9987,11669,11731,17819,19235,21001]]],["Treason",[4,2,[[11,2,1,0,1,[[323,2,1,0,1]]],[13,2,1,1,2,[[389,2,1,1,2]]]],[9843,11669]]],["confederacy",[2,1,[[22,2,1,0,1,[[686,2,1,0,1]]]],[17819]]],["conspiracy",[9,9,[[9,1,1,0,1,[[281,1,1,0,1]]],[11,5,5,1,6,[[324,1,1,1,2],[326,1,1,2,3],[327,2,2,3,5],[329,1,1,5,6]]],[13,1,1,6,7,[[391,1,1,6,7]]],[23,1,1,7,8,[[755,1,1,7,8]]],[25,1,1,8,9,[[823,1,1,8,9]]]],[8401,9870,9915,9940,9955,9987,11731,19235,21001]]],["treason",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9303]]]]},{"k":"H7196","v":[["*",[2,2,[[22,1,1,0,1,[[681,1,1,0,1]]],[23,1,1,1,2,[[746,1,1,1,2]]]],[17727,18997]]],["attire",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18997]]],["headbands",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17727]]]]},{"k":"H7197","v":[["*",[8,7,[[1,2,2,0,2,[[54,2,2,0,2]]],[3,2,2,2,4,[[131,2,2,2,4]]],[10,2,2,4,6,[[307,2,2,4,6]]],[35,2,1,6,7,[[907,2,1,6,7]]]],[1639,1644,4185,4186,9327,9329,22806]]],["gather",[2,2,[[1,2,2,0,2,[[54,2,2,0,2]]]],[1639,1644]]],["gathered",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4185]]],["gathering",[3,3,[[3,1,1,0,1,[[131,1,1,0,1]]],[10,2,2,1,3,[[307,2,2,1,3]]]],[4186,9327,9329]]],["together",[2,1,[[35,2,1,0,1,[[907,2,1,0,1]]]],[22806]]]]},{"k":"H7198","v":[["*",[75,73,[[0,7,7,0,7,[[8,3,3,0,3],[20,1,1,3,4],[26,1,1,4,5],[47,1,1,5,6],[48,1,1,6,7]]],[5,1,1,7,8,[[210,1,1,7,8]]],[8,2,2,8,10,[[237,1,1,8,9],[253,1,1,9,10]]],[9,3,3,10,13,[[267,2,2,10,12],[288,1,1,12,13]]],[10,1,1,13,14,[[312,1,1,13,14]]],[11,5,4,14,18,[[318,1,1,14,15],[321,1,1,15,16],[325,3,2,16,18]]],[12,5,4,18,22,[[342,1,1,18,19],[345,1,1,19,20],[347,1,1,20,21],[349,2,1,21,22]]],[13,4,4,22,26,[[380,1,1,22,23],[383,1,1,23,24],[384,1,1,24,25],[392,1,1,25,26]]],[15,2,2,26,28,[[416,2,2,26,28]]],[17,3,3,28,31,[[455,1,1,28,29],[464,1,1,29,30],[476,1,1,30,31]]],[18,10,10,31,41,[[484,1,1,31,32],[488,1,1,32,33],[495,1,1,33,34],[514,2,2,34,36],[521,1,1,36,37],[523,1,1,37,38],[553,1,1,38,39],[555,2,2,39,41]]],[22,8,8,41,49,[[683,1,1,41,42],[685,1,1,42,43],[691,1,1,43,44],[699,2,2,44,46],[700,1,1,46,47],[719,1,1,47,48],[744,1,1,48,49]]],[23,10,10,49,59,[[748,1,1,49,50],[750,1,1,50,51],[753,1,1,51,52],[790,1,1,52,53],[793,1,1,53,54],[794,3,3,54,57],[795,2,2,57,59]]],[24,2,2,59,61,[[798,1,1,59,60],[799,1,1,60,61]]],[25,3,3,61,64,[[802,1,1,61,62],[840,2,2,62,64]]],[27,4,4,64,68,[[862,2,2,64,66],[863,1,1,66,67],[868,1,1,67,68]]],[29,1,1,68,69,[[880,1,1,68,69]]],[34,1,1,69,70,[[905,1,1,69,70]]],[37,3,3,70,73,[[919,2,2,70,72],[920,1,1,72,73]]]],[218,219,221,529,730,1473,1497,6488,7244,7680,8040,8044,8637,9514,9696,9780,9886,9887,10446,10615,10662,10722,11483,11540,11575,11746,12372,12375,13350,13552,13916,14007,14061,14152,14464,14465,14577,14623,15084,15122,15170,17767,17806,17924,18050,18052,18055,18453,18941,19056,19112,19178,20054,20162,20180,20195,20208,20215,20268,20336,20366,20492,21451,21457,22099,22101,22123,22194,22394,22777,23009,23012,23020]]],["+",[6,6,[[0,1,1,0,1,[[20,1,1,0,1]]],[12,2,2,1,3,[[345,1,1,1,2],[347,1,1,2,3]]],[17,1,1,3,4,[[476,1,1,3,4]]],[22,1,1,4,5,[[700,1,1,4,5]]],[23,1,1,5,6,[[748,1,1,5,6]]]],[529,10615,10662,13916,18055,19056]]],["archers",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18052]]],["bow",[55,54,[[0,6,6,0,6,[[8,3,3,0,3],[26,1,1,3,4],[47,1,1,4,5],[48,1,1,5,6]]],[5,1,1,6,7,[[210,1,1,6,7]]],[8,1,1,7,8,[[253,1,1,7,8]]],[9,3,3,8,11,[[267,2,2,8,10],[288,1,1,10,11]]],[10,1,1,11,12,[[312,1,1,11,12]]],[11,5,4,12,16,[[318,1,1,12,13],[321,1,1,13,14],[325,3,2,14,16]]],[12,2,2,16,18,[[342,1,1,16,17],[349,1,1,17,18]]],[13,2,2,18,20,[[383,1,1,18,19],[384,1,1,19,20]]],[17,2,2,20,22,[[455,1,1,20,21],[464,1,1,21,22]]],[18,8,8,22,30,[[484,1,1,22,23],[488,1,1,23,24],[495,1,1,24,25],[514,1,1,25,26],[521,1,1,26,27],[523,1,1,27,28],[553,1,1,28,29],[555,1,1,29,30]]],[22,3,3,30,33,[[699,1,1,30,31],[719,1,1,31,32],[744,1,1,32,33]]],[23,8,8,33,41,[[750,1,1,33,34],[753,1,1,34,35],[790,1,1,35,36],[793,1,1,36,37],[794,3,3,37,40],[795,1,1,40,41]]],[24,2,2,41,43,[[798,1,1,41,42],[799,1,1,42,43]]],[25,2,2,43,45,[[802,1,1,43,44],[840,1,1,44,45]]],[27,4,4,45,49,[[862,2,2,45,47],[863,1,1,47,48],[868,1,1,48,49]]],[29,1,1,49,50,[[880,1,1,49,50]]],[34,1,1,50,51,[[905,1,1,50,51]]],[37,3,3,51,54,[[919,2,2,51,53],[920,1,1,53,54]]]],[218,219,221,730,1473,1497,6488,7680,8040,8044,8637,9514,9696,9780,9886,9887,10446,10722,11540,11575,13350,13552,14007,14061,14152,14464,14577,14623,15084,15170,18050,18453,18941,19112,19178,20054,20162,20180,20195,20208,20215,20336,20366,20492,21451,22099,22101,22123,22194,22394,22777,23009,23012,23020]]],["bows",[13,13,[[8,1,1,0,1,[[237,1,1,0,1]]],[12,1,1,1,2,[[349,1,1,1,2]]],[13,2,2,2,4,[[380,1,1,2,3],[392,1,1,3,4]]],[15,2,2,4,6,[[416,2,2,4,6]]],[18,2,2,6,8,[[514,1,1,6,7],[555,1,1,7,8]]],[22,3,3,8,11,[[683,1,1,8,9],[685,1,1,9,10],[691,1,1,10,11]]],[23,1,1,11,12,[[795,1,1,11,12]]],[25,1,1,12,13,[[840,1,1,12,13]]]],[7244,10722,11483,11746,12372,12375,14465,15122,17767,17806,17924,20268,21457]]]]},{"k":"H7199","v":[["+",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[533]]]]},{"k":"H7200","v":[["*",[1308,1208,[[0,140,132,0,132,[[0,8,8,0,8],[1,1,1,8,9],[2,1,1,9,10],[5,3,3,10,13],[6,1,1,13,14],[7,3,3,14,17],[8,4,4,17,21],[10,1,1,21,22],[11,6,5,22,27],[12,3,3,27,30],[15,4,3,30,33],[16,1,1,33,34],[17,4,3,34,37],[18,2,2,37,39],[19,1,1,39,40],[20,3,3,40,43],[21,4,4,43,47],[23,3,3,47,50],[25,5,4,50,54],[26,2,2,54,56],[27,2,2,56,58],[28,4,4,58,62],[29,2,2,62,64],[30,8,7,64,71],[31,4,4,71,75],[32,4,3,75,78],[33,2,2,78,80],[34,2,2,80,82],[36,5,5,82,87],[37,3,3,87,90],[38,4,4,90,94],[39,2,2,94,96],[40,5,5,96,101],[41,8,7,101,108],[42,4,4,108,112],[43,5,5,112,117],[44,4,4,117,121],[45,2,2,121,123],[47,6,5,123,128],[48,1,1,128,129],[49,3,3,129,132]]],[1,92,80,132,212,[[50,1,1,132,133],[51,7,6,133,139],[52,9,6,139,145],[53,6,6,145,151],[54,2,2,151,153],[55,2,2,153,155],[56,1,1,155,156],[57,1,1,156,157],[58,2,2,157,159],[59,7,6,159,165],[61,2,2,165,167],[62,3,2,167,169],[63,5,3,169,172],[65,5,5,172,177],[67,1,1,177,178],[68,2,2,178,180],[69,3,2,180,182],[71,1,1,182,183],[72,3,3,183,186],[73,1,1,186,187],[74,3,2,187,189],[75,1,1,189,190],[76,1,1,190,191],[80,1,1,191,192],[81,5,5,192,197],[82,8,6,197,203],[83,7,7,203,210],[84,1,1,210,211],[88,1,1,211,212]]],[2,48,44,212,256,[[94,1,1,212,213],[98,4,4,213,217],[102,32,30,217,247],[103,8,7,247,254],[105,1,1,254,255],[109,2,1,255,256]]],[3,47,44,256,300,[[120,1,1,256,257],[124,1,1,257,258],[127,2,2,258,260],[129,5,5,260,265],[130,5,4,265,269],[131,1,1,269,270],[132,2,2,270,272],[133,1,1,272,273],[136,2,2,273,275],[137,1,1,275,276],[138,7,7,276,283],[139,6,4,283,287],[140,5,5,287,292],[141,1,1,292,293],[143,2,2,293,295],[148,4,4,295,299],[151,1,1,299,300]]],[4,68,66,300,366,[[153,8,8,300,308],[154,2,2,308,310],[155,5,5,310,315],[156,9,9,315,324],[157,2,1,324,325],[159,1,1,325,326],[161,2,2,326,328],[162,1,1,328,329],[163,3,3,329,332],[164,1,1,332,333],[168,3,2,333,335],[170,1,1,335,336],[172,1,1,336,337],[173,2,2,337,339],[174,2,2,339,341],[175,1,1,341,342],[178,1,1,342,343],[180,5,5,343,348],[181,5,5,348,353],[182,1,1,353,354],[183,2,2,354,356],[184,6,6,356,362],[185,2,2,362,364],[186,2,2,364,366]]],[5,16,16,366,382,[[188,1,1,366,367],[189,1,1,367,368],[191,2,2,368,370],[192,1,1,370,371],[193,1,1,371,372],[194,6,6,372,378],[208,1,1,378,379],[209,2,2,379,381],[210,1,1,381,382]]],[6,44,40,382,422,[[211,3,2,382,384],[212,1,1,384,385],[213,1,1,385,386],[214,1,1,386,387],[215,1,1,387,388],[216,3,2,388,390],[217,1,1,390,391],[219,5,4,391,395],[221,1,1,395,396],[222,1,1,396,397],[223,7,7,397,404],[224,4,4,404,408],[226,5,5,408,413],[228,3,3,413,416],[229,4,3,416,419],[230,2,2,419,421],[231,1,1,421,422]]],[7,2,2,422,424,[[232,1,1,422,423],[233,1,1,423,424]]],[8,80,71,424,495,[[236,3,2,424,426],[238,2,2,426,428],[239,1,1,428,429],[240,1,1,429,430],[241,5,4,430,434],[244,7,6,434,440],[245,3,3,440,443],[247,4,4,443,447],[248,2,2,447,449],[249,5,5,449,454],[250,1,1,454,455],[251,7,5,455,460],[252,6,6,460,466],[253,2,2,466,468],[254,4,4,468,472],[255,1,1,472,473],[256,1,1,473,474],[257,1,1,474,475],[258,4,3,475,478],[259,5,3,478,481],[260,4,4,481,485],[261,4,4,485,489],[263,5,4,489,493],[266,2,2,493,495]]],[9,47,42,495,537,[[267,1,1,495,496],[269,2,1,496,497],[272,1,1,497,498],[273,1,1,498,499],[276,5,5,499,504],[277,1,1,504,505],[278,1,1,505,506],[279,5,4,506,510],[280,5,4,510,514],[281,4,4,514,518],[282,1,1,518,519],[283,3,3,519,522],[284,8,7,522,529],[286,2,1,529,530],[288,2,2,530,532],[290,5,5,532,537]]],[10,36,33,537,570,[[291,1,1,537,538],[293,2,2,538,540],[296,1,1,540,541],[298,2,1,541,542],[299,3,2,542,544],[300,3,3,544,547],[301,2,2,547,549],[302,2,1,549,550],[303,2,2,550,552],[304,1,1,552,553],[306,1,1,553,554],[307,1,1,554,555],[308,5,5,555,560],[309,1,1,560,561],[310,3,3,561,564],[311,1,1,564,565],[312,5,5,565,570]]],[11,65,56,570,626,[[314,6,5,570,575],[315,5,4,575,579],[316,1,1,579,580],[317,2,2,580,582],[318,10,7,582,589],[319,4,4,589,593],[320,3,3,593,596],[321,7,6,596,602],[322,3,3,602,605],[323,3,3,605,608],[324,1,1,608,609],[325,2,2,609,611],[326,3,3,611,614],[328,2,2,614,616],[331,1,1,616,617],[332,6,3,617,620],[334,1,1,620,621],[335,4,4,621,625],[337,1,1,625,626]]],[12,19,19,626,645,[[347,2,2,626,628],[349,1,1,628,629],[352,1,1,629,630],[354,1,1,630,631],[356,5,5,631,636],[358,7,7,636,643],[365,1,1,643,644],[366,1,1,644,645]]],[13,32,31,645,676,[[367,1,1,645,646],[369,1,1,646,647],[371,2,1,647,648],[373,2,2,648,650],[375,3,3,650,653],[376,1,1,653,654],[378,1,1,654,655],[381,1,1,655,656],[384,5,5,656,661],[385,1,1,661,662],[386,1,1,662,663],[388,2,2,663,665],[389,1,1,665,666],[390,2,2,666,668],[391,2,2,668,670],[392,1,1,670,671],[395,1,1,671,672],[396,1,1,672,673],[397,1,1,673,674],[398,1,1,674,675],[400,1,1,675,676]]],[14,1,1,676,677,[[405,1,1,676,677]]],[15,7,7,677,684,[[414,1,1,677,678],[416,2,2,678,680],[418,1,1,680,681],[421,1,1,681,682],[425,2,2,682,684]]],[16,15,14,684,698,[[426,3,3,684,687],[427,2,2,687,689],[428,2,2,689,691],[429,1,1,691,692],[430,3,3,692,695],[432,1,1,695,696],[433,2,1,696,697],[434,1,1,697,698]]],[17,50,49,698,747,[[437,1,1,698,699],[438,2,2,699,701],[439,1,1,701,702],[440,1,1,702,703],[441,1,1,703,704],[442,1,1,704,705],[443,1,1,705,706],[444,2,2,706,708],[445,4,3,708,711],[446,1,1,711,712],[448,1,1,712,713],[454,1,1,713,714],[455,2,2,714,716],[456,1,1,716,717],[457,4,4,717,721],[458,1,1,721,722],[463,3,3,722,725],[464,2,2,725,727],[466,4,4,727,731],[467,1,1,731,732],[468,3,3,732,735],[469,2,2,735,737],[470,1,1,737,738],[472,2,2,738,740],[473,2,2,740,742],[475,2,2,742,744],[476,1,1,744,745],[477,2,2,745,747]]],[18,100,99,747,846,[[481,1,1,747,748],[485,1,1,748,749],[486,1,1,749,750],[487,2,2,750,752],[491,1,1,752,753],[493,1,1,753,754],[495,1,1,754,755],[499,2,2,755,757],[502,2,2,757,759],[504,1,1,759,760],[508,2,2,760,762],[510,1,1,762,763],[511,2,2,763,765],[512,3,3,765,768],[513,1,1,768,769],[514,5,5,769,774],[517,2,2,774,776],[518,1,1,776,777],[519,1,1,777,778],[522,1,1,778,779],[525,2,2,779,781],[526,3,3,781,784],[527,2,2,784,786],[529,1,1,786,787],[530,1,1,787,788],[531,1,1,788,789],[532,1,1,789,790],[536,2,2,790,792],[537,1,1,792,793],[540,1,1,793,794],[541,2,2,794,796],[543,2,2,796,798],[545,1,1,798,799],[546,2,2,799,801],[548,1,1,801,802],[550,1,1,802,803],[551,1,1,803,804],[554,2,1,804,805],[555,1,1,805,806],[557,1,1,806,807],[561,2,2,807,809],[562,1,1,809,810],[563,1,1,810,811],[566,1,1,811,812],[567,2,2,812,814],[568,2,2,814,816],[571,1,1,816,817],[572,1,1,817,818],[574,2,2,818,820],[575,1,1,820,821],[579,1,1,821,822],[583,2,2,822,824],[584,2,2,824,826],[586,1,1,826,827],[589,2,2,827,829],[590,1,1,829,830],[591,1,1,830,831],[592,1,1,831,832],[595,1,1,832,833],[596,6,6,833,839],[605,2,2,839,841],[612,1,1,841,842],[615,1,1,842,843],[616,2,2,843,845],[619,1,1,845,846]]],[19,13,13,846,859,[[633,1,1,846,847],[634,1,1,847,848],[647,1,1,848,849],[649,1,1,849,850],[650,2,2,850,852],[651,2,2,852,854],[652,1,1,854,855],[653,1,1,855,856],[654,2,2,856,858],[656,1,1,858,859]]],[20,48,44,859,903,[[659,4,4,859,863],[660,6,5,863,868],[661,6,5,868,873],[662,5,5,873,878],[663,5,4,878,882],[664,3,3,882,885],[665,6,6,885,891],[666,5,4,891,895],[667,3,3,895,898],[668,2,2,898,900],[669,2,2,900,902],[670,1,1,902,903]]],[21,9,8,903,911,[[671,1,1,903,904],[672,2,2,904,906],[673,2,2,906,908],[676,3,2,908,910],[677,1,1,910,911]]],[22,82,76,911,987,[[679,1,1,911,912],[683,2,2,912,914],[684,5,4,914,918],[687,1,1,918,919],[692,1,1,919,920],[694,1,1,920,921],[695,2,2,921,923],[696,1,1,923,924],[699,3,3,924,927],[700,2,2,927,929],[704,1,1,929,930],[706,2,1,930,931],[707,3,3,931,934],[708,4,3,934,937],[710,1,1,937,938],[711,4,4,938,942],[713,1,1,942,943],[715,1,1,943,944],[716,2,2,944,946],[717,5,2,946,948],[718,2,2,948,950],[719,4,4,950,954],[720,2,2,954,956],[722,3,3,956,959],[725,2,2,959,961],[727,2,2,961,963],[730,3,3,963,966],[731,3,3,966,969],[735,1,1,969,970],[736,2,2,970,972],[737,2,2,972,974],[738,3,3,974,977],[739,1,1,977,978],[740,1,1,978,979],[741,1,1,979,980],[742,1,1,980,981],[744,6,6,981,987]]],[23,71,66,987,1053,[[745,6,4,987,991],[746,5,4,991,995],[747,4,4,995,999],[748,5,5,999,1004],[749,3,3,1004,1007],[750,1,1,1007,1008],[751,3,3,1008,1011],[755,2,2,1011,1013],[756,2,2,1013,1015],[757,3,3,1015,1018],[758,1,1,1018,1019],[761,2,2,1019,1021],[762,1,1,1021,1022],[764,4,3,1022,1025],[766,2,2,1025,1027],[767,4,4,1027,1031],[768,2,2,1031,1033],[773,1,1,1033,1034],[774,2,1,1034,1035],[775,2,2,1035,1037],[776,2,2,1037,1039],[777,1,1,1039,1040],[778,1,1,1040,1041],[782,1,1,1041,1042],[783,1,1,1042,1043],[784,1,1,1043,1044],[785,1,1,1044,1045],[786,3,3,1045,1048],[788,2,2,1048,1050],[790,1,1,1050,1051],[795,1,1,1051,1052],[796,1,1,1052,1053]]],[24,16,16,1053,1069,[[797,8,8,1053,1061],[798,2,2,1061,1063],[799,5,5,1063,1068],[801,1,1,1068,1069]]],[25,77,65,1069,1134,[[802,6,5,1069,1074],[803,1,1,1074,1075],[804,1,1,1075,1076],[805,1,1,1076,1077],[809,13,10,1077,1087],[810,1,1,1087,1088],[811,7,6,1088,1094],[812,3,3,1094,1097],[813,6,5,1097,1102],[814,1,1,1102,1103],[815,2,2,1103,1105],[817,4,4,1105,1109],[819,3,2,1109,1111],[820,2,2,1111,1113],[821,2,2,1113,1115],[822,2,2,1115,1117],[824,3,3,1117,1120],[829,2,2,1120,1122],[833,1,1,1122,1123],[834,2,2,1123,1125],[838,1,1,1125,1126],[840,2,2,1126,1128],[841,4,1,1128,1129],[842,1,1,1129,1130],[844,3,1,1130,1131],[845,2,2,1131,1133],[848,1,1,1133,1134]]],[26,22,17,1134,1151,[[850,4,3,1134,1137],[857,11,8,1137,1145],[858,2,2,1145,1147],[859,4,3,1147,1150],[861,1,1,1150,1151]]],[27,4,4,1151,1155,[[866,1,1,1151,1152],[867,1,1,1152,1153],[870,2,2,1153,1155]]],[28,1,1,1155,1156,[[877,1,1,1155,1156]]],[29,9,9,1156,1165,[[881,1,1,1156,1157],[884,1,1,1157,1158],[885,4,4,1158,1162],[886,2,2,1162,1164],[887,1,1,1164,1165]]],[30,2,2,1165,1167,[[888,2,2,1165,1167]]],[31,2,2,1167,1169,[[891,1,1,1167,1168],[892,1,1,1168,1169]]],[32,6,5,1169,1174,[[898,1,1,1169,1170],[899,5,4,1170,1174]]],[33,2,2,1174,1176,[[902,2,2,1174,1176]]],[34,7,7,1176,1183,[[903,3,3,1176,1179],[904,1,1,1179,1180],[905,3,3,1180,1183]]],[35,1,1,1183,1184,[[908,1,1,1183,1184]]],[36,2,1,1184,1185,[[910,2,1,1184,1185]]],[37,22,20,1185,1205,[[911,4,4,1185,1189],[912,2,2,1189,1191],[913,2,2,1191,1193],[914,3,2,1193,1195],[915,5,4,1195,1199],[916,2,2,1199,1201],[919,3,3,1201,1204],[920,1,1,1204,1205]]],[38,3,3,1205,1208,[[925,1,1,1205,1206],[927,2,2,1206,1208]]]],[3,8,9,11,17,20,24,30,49,61,139,142,149,160,188,191,196,219,221,227,228,271,299,305,310,312,313,328,332,333,385,386,394,398,425,426,445,458,485,505,522,529,532,551,555,560,561,621,654,655,694,700,716,720,728,754,779,781,797,805,826,827,831,839,875,878,883,885,915,916,923,930,948,953,958,961,965,970,981,982,1012,1020,1087,1097,1101,1103,1108,1121,1133,1134,1152,1162,1163,1172,1178,1188,1214,1217,1223,1228,1236,1253,1259,1261,1264,1273,1279,1287,1293,1295,1306,1319,1347,1350,1352,1355,1358,1370,1371,1385,1386,1415,1416,1454,1459,1461,1462,1468,1488,1517,1521,1529,1548,1556,1559,1560,1565,1566,1579,1581,1582,1583,1586,1588,1595,1602,1606,1615,1619,1622,1632,1651,1653,1656,1658,1686,1725,1758,1776,1782,1783,1787,1800,1805,1806,1829,1839,1874,1884,1902,1919,1920,1954,1957,1962,1976,1979,2013,2030,2047,2069,2073,2123,2149,2159,2161,2187,2204,2235,2265,2280,2422,2439,2443,2447,2457,2463,2483,2485,2486,2491,2493,2496,2499,2506,2516,2519,2520,2526,2531,2561,2707,2831,2957,2959,2976,2977,3055,3057,3058,3059,3060,3062,3065,3066,3067,3069,3071,3072,3073,3077,3078,3079,3082,3083,3084,3086,3088,3091,3095,3101,3102,3103,3105,3107,3108,3109,3114,3146,3147,3148,3150,3155,3159,3203,3335,3763,3943,4039,4047,4093,4101,4103,4107,4108,4118,4122,4130,4131,4192,4213,4236,4253,4317,4340,4348,4377,4398,4400,4402,4406,4408,4416,4419,4425,4429,4437,4447,4448,4463,4466,4467,4478,4566,4567,4719,4726,4727,4729,4868,4900,4911,4913,4920,4923,4925,4927,4928,4962,4969,4996,4999,5000,5002,5003,5007,5009,5013,5016,5019,5023,5032,5039,5040,5077,5130,5170,5173,5207,5210,5215,5234,5253,5346,5358,5400,5428,5454,5458,5471,5474,5514,5573,5621,5643,5645,5678,5679,5681,5682,5683,5696,5701,5723,5739,5743,5777,5778,5794,5797,5807,5810,5819,5831,5840,5843,5870,5896,5940,5947,5951,5997,6003,6006,6010,6016,6022,6023,6454,6463,6464,6483,6533,6534,6552,6592,6621,6631,6666,6676,6711,6790,6797,6802,6809,6864,6872,6887,6894,6903,6904,6905,6906,6907,6910,6911,6917,6920,6950,6954,6967,6973,6976,7000,7002,7019,7027,7041,7054,7090,7095,7123,7145,7167,7223,7234,7278,7297,7312,7326,7340,7344,7347,7350,7400,7402,7407,7408,7409,7410,7429,7432,7442,7472,7476,7477,7484,7491,7496,7524,7525,7537,7546,7560,7595,7596,7601,7602,7612,7613,7642,7643,7646,7660,7669,7673,7691,7704,7709,7711,7721,7726,7759,7786,7796,7825,7832,7833,7849,7850,7854,7878,7884,7886,7896,7908,7910,7917,7921,7947,7954,7955,7963,8014,8016,8029,8094,8173,8182,8246,8249,8254,8255,8259,8261,8305,8322,8323,8345,8351,8380,8384,8386,8388,8392,8414,8416,8417,8438,8466,8467,8472,8488,8489,8499,8502,8504,8505,8507,8566,8613,8618,8695,8705,8709,8712,8714,8765,8821,8844,8914,8993,9053,9063,9083,9086,9091,9117,9136,9167,9196,9209,9222,9301,9340,9342,9343,9356,9358,9380,9390,9415,9421,9430,9480,9497,9499,9505,9512,9513,9561,9563,9566,9570,9575,9590,9593,9598,9602,9628,9654,9668,9680,9687,9691,9694,9695,9704,9706,9709,9720,9721,9726,9737,9740,9756,9758,9772,9773,9778,9782,9783,9796,9809,9816,9830,9833,9843,9860,9875,9892,9904,9907,9922,9973,9975,10077,10103,10111,10113,10165,10181,10182,10189,10194,10241,10664,10666,10737,10820,10880,10913,10917,10922,10923,10926,10946,10949,10950,10954,10955,10957,10962,11153,11181,11201,11230,11277,11327,11336,11367,11370,11375,11411,11444,11499,11558,11560,11566,11573,11574,11582,11604,11650,11654,11669,11688,11699,11721,11725,11737,11799,11834,11862,11877,11961,12109,12324,12370,12373,12417,12520,12686,12694,12706,12713,12716,12733,12739,12751,12752,12770,12781,12788,12792,12814,12823,12860,12904,12913,12920,12938,12954,12999,13015,13047,13062,13076,13090,13101,13104,13119,13154,13324,13333,13343,13375,13400,13401,13403,13408,13428,13514,13528,13531,13540,13543,13592,13607,13609,13614,13633,13671,13676,13678,13704,13709,13725,13790,13793,13810,13815,13875,13876,13922,13927,13938,13971,14015,14034,14052,14055,14082,14102,14133,14211,14221,14269,14270,14298,14338,14342,14379,14396,14400,14427,14431,14432,14447,14463,14475,14484,14485,14487,14528,14537,14548,14557,14607,14639,14642,14657,14658,14667,14686,14691,14716,14721,14732,14741,14794,14800,14810,14841,14855,14858,14878,14891,14924,14958,14967,14996,15023,15057,15109,15124,15212,15266,15268,15278,15301,15374,15393,15394,15403,15411,15438,15463,15482,15484,15493,15537,15656,15695,15723,15741,15780,15811,15813,15819,15825,15835,15876,15935,15972,15994,16051,16056,16057,16131,16132,16191,16237,16255,16263,16290,16546,16582,16966,17018,17075,17077,17097,17111,17120,17153,17181,17194,17240,17323,17325,17329,17331,17334,17336,17345,17346,17357,17369,17372,17375,17377,17381,17382,17384,17385,17388,17396,17405,17408,17410,17415,17418,17422,17423,17440,17442,17443,17444,17456,17458,17467,17468,17474,17475,17484,17486,17488,17498,17500,17517,17520,17526,17543,17566,17568,17574,17582,17623,17625,17639,17666,17751,17758,17770,17774,17778,17779,17831,17944,17981,17990,17991,18000,18038,18041,18042,18061,18063,18140,18168,18208,18211,18216,18227,18237,18247,18262,18294,18296,18298,18299,18322,18369,18395,18401,18414,18416,18425,18446,18456,18471,18474,18479,18498,18500,18542,18549,18551,18602,18609,18643,18654,18704,18706,18711,18713,18721,18722,18783,18789,18793,18815,18816,18823,18825,18826,18852,18856,18881,18889,18927,18930,18936,18940,18941,18946,18956,18957,18958,18959,18975,18984,18988,18996,19004,19008,19009,19010,19048,19050,19051,19052,19053,19059,19070,19079,19105,19130,19131,19136,19244,19246,19252,19253,19286,19292,19293,19306,19363,19365,19401,19426,19434,19440,19464,19466,19497,19498,19502,19508,19525,19527,19667,19673,19694,19717,19735,19755,19799,19804,19916,19927,19945,19970,19977,19989,19993,20012,20027,20050,20273,20301,20317,20318,20319,20320,20321,20322,20328,20330,20348,20352,20355,20390,20404,20413,20414,20443,20465,20468,20479,20491,20492,20501,20525,20544,20606,20608,20610,20611,20613,20614,20616,20617,20619,20621,20631,20634,20641,20642,20648,20653,20655,20656,20679,20680,20682,20683,20686,20692,20693,20711,20753,20754,20768,20770,20799,20812,20863,20877,20886,20892,20923,20943,20965,20968,21018,21020,21021,21174,21175,21279,21283,21286,21405,21463,21469,21481,21534,21575,21603,21604,21685,21747,21750,21752,21962,21963,21964,21965,21967,21968,21976,21981,22006,22009,22020,22022,22023,22086,22165,22177,22218,22221,22339,22404,22452,22465,22468,22471,22472,22482,22483,22496,22522,22523,22568,22573,22657,22673,22674,22679,22680,22717,22719,22734,22736,22744,22749,22774,22775,22778,22835,22858,22886,22887,22896,22898,22900,22901,22913,22916,22924,22932,22937,22938,22941,22945,22948,22955,23004,23007,23013,23023,23094,23122,23138]]],["+",[260,251,[[0,30,29,0,29,[[0,2,2,0,2],[5,2,2,2,4],[8,1,1,4,5],[10,1,1,5,6],[11,1,1,6,7],[12,1,1,7,8],[20,1,1,8,9],[21,1,1,9,10],[23,2,2,10,12],[25,2,1,12,13],[26,1,1,13,14],[28,1,1,14,15],[30,4,4,15,19],[32,1,1,19,20],[40,1,1,20,21],[41,4,4,21,25],[42,1,1,25,26],[44,1,1,26,27],[45,1,1,27,28],[49,1,1,28,29]]],[1,29,28,29,57,[[51,3,3,29,32],[52,3,2,32,34],[53,1,1,34,35],[59,1,1,35,36],[61,2,2,36,38],[63,3,3,38,41],[65,2,2,41,43],[67,1,1,43,44],[69,1,1,44,45],[73,1,1,45,46],[81,2,2,46,48],[82,3,3,48,51],[83,5,5,51,56],[88,1,1,56,57]]],[2,15,13,57,70,[[102,10,10,57,67],[103,3,2,67,69],[109,2,1,69,70]]],[3,18,18,70,88,[[124,1,1,70,71],[129,2,2,71,73],[130,2,2,73,75],[138,5,5,75,80],[140,3,3,80,83],[143,1,1,83,84],[148,4,4,84,88]]],[4,20,19,88,107,[[153,1,1,88,89],[155,3,3,89,92],[156,2,2,92,94],[161,1,1,94,95],[163,2,2,95,97],[168,2,1,97,98],[174,2,2,98,100],[178,1,1,100,101],[181,3,3,101,104],[183,1,1,104,105],[184,2,2,105,107]]],[5,5,5,107,112,[[188,1,1,107,108],[189,1,1,108,109],[208,1,1,109,110],[209,1,1,110,111],[210,1,1,111,112]]],[6,7,6,112,118,[[212,1,1,112,113],[219,2,1,113,114],[224,1,1,114,115],[228,2,2,115,117],[229,1,1,117,118]]],[7,1,1,118,119,[[233,1,1,118,119]]],[8,24,23,119,142,[[236,3,2,119,121],[241,1,1,121,122],[244,2,2,122,124],[247,2,2,124,126],[250,1,1,126,127],[251,1,1,127,128],[252,3,3,128,131],[254,2,2,131,133],[255,1,1,133,134],[257,1,1,134,135],[258,1,1,135,136],[259,2,2,136,138],[260,1,1,138,139],[261,1,1,139,140],[263,2,2,140,142]]],[9,7,6,142,148,[[269,2,1,142,143],[272,1,1,143,144],[284,2,2,144,146],[290,2,2,146,148]]],[10,11,11,148,159,[[299,1,1,148,149],[300,1,1,149,150],[301,1,1,150,151],[303,2,2,151,153],[308,1,1,153,154],[310,2,2,154,156],[312,3,3,156,159]]],[11,13,13,159,172,[[315,1,1,159,160],[320,1,1,160,161],[321,3,3,161,164],[325,2,2,164,166],[326,1,1,166,167],[328,2,2,167,169],[332,1,1,169,170],[335,1,1,170,171],[337,1,1,171,172]]],[12,4,4,172,176,[[352,1,1,172,173],[358,3,3,173,176]]],[13,7,7,176,183,[[375,1,1,176,177],[384,3,3,177,180],[386,1,1,180,181],[388,1,1,181,182],[397,1,1,182,183]]],[14,1,1,183,184,[[405,1,1,183,184]]],[15,1,1,184,185,[[421,1,1,184,185]]],[16,4,4,185,189,[[426,1,1,185,186],[430,3,3,186,189]]],[17,2,2,189,191,[[476,1,1,189,190],[477,1,1,190,191]]],[18,5,5,191,196,[[508,1,1,191,192],[510,1,1,192,193],[546,1,1,193,194],[575,1,1,194,195],[596,1,1,195,196]]],[20,11,11,196,207,[[659,1,1,196,197],[661,1,1,197,198],[662,4,4,198,202],[665,1,1,202,203],[666,2,2,203,205],[667,1,1,205,206],[669,1,1,206,207]]],[21,1,1,207,208,[[672,1,1,207,208]]],[22,12,11,208,219,[[684,3,2,208,210],[699,1,1,210,211],[708,1,1,211,212],[711,2,2,212,214],[716,1,1,214,215],[722,1,1,215,216],[730,1,1,216,217],[744,2,2,217,219]]],[23,10,10,219,229,[[748,1,1,219,220],[751,1,1,220,221],[756,1,1,221,222],[766,1,1,222,223],[776,1,1,223,224],[778,1,1,224,225],[785,1,1,225,226],[786,1,1,226,227],[788,1,1,227,228],[796,1,1,228,229]]],[24,2,2,229,231,[[797,1,1,229,230],[801,1,1,230,231]]],[25,9,9,231,240,[[809,1,1,231,232],[812,1,1,232,233],[815,2,2,233,235],[817,1,1,235,236],[819,1,1,236,237],[834,2,2,237,239],[840,1,1,239,240]]],[26,5,5,240,245,[[850,1,1,240,241],[857,2,2,241,243],[859,2,2,243,245]]],[27,1,1,245,246,[[866,1,1,245,246]]],[29,1,1,246,247,[[887,1,1,246,247]]],[31,1,1,247,248,[[891,1,1,247,248]]],[34,1,1,248,249,[[903,1,1,248,249]]],[36,1,1,249,250,[[910,1,1,249,250]]],[37,1,1,250,251,[[914,1,1,250,251]]]],[3,30,139,149,227,271,312,328,522,551,621,655,720,728,805,875,878,885,915,965,1223,1259,1261,1279,1287,1306,1385,1416,1517,1559,1560,1579,1586,1588,1632,1782,1829,1839,1902,1919,1920,1954,1979,2013,2069,2187,2447,2457,2483,2493,2496,2506,2519,2520,2526,2531,2707,3055,3067,3082,3083,3084,3086,3101,3102,3103,3107,3147,3148,3335,3943,4093,4108,4130,4131,4377,4398,4400,4402,4406,4448,4466,4467,4566,4719,4726,4727,4729,4927,4996,4999,5000,5007,5023,5170,5210,5215,5358,5471,5474,5573,5681,5696,5701,5739,5807,5810,5870,5896,6454,6463,6483,6552,6790,6917,7000,7002,7041,7167,7223,7234,7344,7407,7408,7476,7484,7595,7601,7642,7660,7673,7721,7726,7759,7796,7832,7849,7850,7884,7910,7947,7954,8094,8173,8488,8505,8709,8712,9063,9083,9136,9196,9209,9358,9421,9430,9497,9499,9512,9598,9756,9772,9773,9778,9875,9892,9922,9973,9975,10103,10181,10241,10820,10950,10954,10955,11367,11558,11560,11573,11604,11650,11862,12109,12520,12706,12781,12788,12792,13922,13938,14338,14379,14958,15493,15935,17329,17369,17382,17384,17385,17396,17442,17474,17475,17484,17520,17568,17774,17778,18038,18237,18294,18298,18395,18551,18706,18940,18941,19050,19131,19253,19464,19735,19804,19970,19993,20012,20301,20319,20443,20613,20656,20753,20754,20799,20863,21283,21286,21469,21747,21965,21976,22022,22023,22165,22496,22568,22744,22858,22932]]],["Behold",[14,14,[[4,5,5,0,5,[[153,2,2,0,2],[154,1,1,2,3],[156,1,1,3,4],[163,1,1,4,5]]],[5,2,2,5,7,[[194,1,1,5,6],[209,1,1,6,7]]],[18,1,1,7,8,[[561,1,1,7,8]]],[20,1,1,8,9,[[665,1,1,8,9]]],[24,2,2,9,11,[[797,1,1,9,10],[798,1,1,10,11]]],[34,1,1,11,12,[[903,1,1,11,12]]],[37,2,2,12,14,[[913,1,1,12,13],[916,1,1,13,14]]]],[4900,4913,4969,5009,5234,6006,6464,15268,17456,20330,20352,22736,22916,22955]]],["Consider",[3,3,[[18,3,3,0,3,[[502,1,1,0,1],[596,2,2,1,3]]]],[14270,16051,16057]]],["Considerest",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19799]]],["Lo",[2,2,[[20,1,1,0,1,[[665,1,1,0,1]]],[25,1,1,1,2,[[805,1,1,1,2]]]],[17458,20544]]],["Look",[3,3,[[6,1,1,0,1,[[217,1,1,0,1]]],[19,1,1,1,2,[[650,1,1,1,2]]],[21,1,1,2,3,[[671,1,1,2,3]]]],[6711,17075,17543]]],["Mark",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8345]]],["Provide",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7612]]],["Saw",[1,1,[[21,1,1,0,1,[[673,1,1,0,1]]]],[17574]]],["See",[23,23,[[0,3,3,0,3,[[26,1,1,0,1],[38,1,1,1,2],[40,1,1,2,3]]],[1,5,5,3,8,[[56,1,1,3,4],[65,1,1,4,5],[80,1,1,5,6],[82,1,1,6,7],[84,1,1,7,8]]],[4,2,2,8,10,[[182,1,1,8,9],[184,1,1,9,10]]],[5,2,2,10,12,[[192,1,1,10,11],[194,1,1,11,12]]],[8,2,2,12,14,[[245,1,1,12,13],[258,1,1,13,14]]],[9,4,4,14,18,[[273,1,1,14,15],[280,1,1,15,16],[281,2,2,16,18]]],[10,1,1,18,19,[[307,1,1,18,19]]],[11,1,1,19,20,[[318,1,1,19,20]]],[20,1,1,20,21,[[659,1,1,20,21]]],[22,1,1,21,22,[[708,1,1,21,22]]],[23,1,1,22,23,[[745,1,1,22,23]]]],[754,1163,1236,1686,1976,2422,2485,2561,5723,5797,5951,6010,7442,7833,8182,8386,8392,8417,9340,9706,17325,18227,18956]]],["Seeing",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18500]]],["Seer",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7400]]],["Seest",[3,3,[[10,1,1,0,1,[[311,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]],[23,1,1,2,3,[[751,1,1,2,3]]]],[9480,17153,19136]]],["Shew",[2,2,[[6,1,1,0,1,[[211,1,1,0,1]]],[18,1,1,1,2,[[562,1,1,1,2]]]],[6533,15278]]],["advise",[1,1,[[12,1,1,0,1,[[358,1,1,0,1]]]],[10946]]],["another",[5,5,[[0,1,1,0,1,[[41,1,1,0,1]]],[11,2,2,1,3,[[326,2,2,1,3]]],[13,2,2,3,5,[[391,2,2,3,5]]]],[1253,9904,9907,11721,11725]]],["appear",[18,18,[[0,1,1,0,1,[[0,1,1,0,1]]],[1,3,3,1,4,[[72,2,2,1,3],[83,1,1,3,4]]],[2,4,4,4,8,[[98,2,2,4,6],[102,1,1,6,7],[105,1,1,7,8]]],[6,1,1,8,9,[[223,1,1,8,9]]],[13,1,1,9,10,[[367,1,1,9,10]]],[18,3,3,10,13,[[519,1,1,10,11],[567,1,1,11,12],[579,1,1,12,13]]],[21,1,1,13,14,[[672,1,1,13,14]]],[22,2,2,14,16,[[679,1,1,14,15],[744,1,1,15,16]]],[23,1,1,16,17,[[757,1,1,16,17]]],[25,1,1,17,18,[[822,1,1,17,18]]]],[8,2159,2161,2516,2957,2959,3109,3203,6905,11201,14557,15394,15537,17566,17666,18927,19292,20968]]],["appeared",[39,36,[[0,9,8,0,8,[[11,2,1,0,1],[16,1,1,1,2],[17,1,1,2,3],[25,2,2,3,5],[34,2,2,5,7],[47,1,1,7,8]]],[1,6,6,8,14,[[52,2,2,8,10],[53,2,2,10,12],[55,1,1,12,13],[65,1,1,13,14]]],[2,1,1,14,15,[[98,1,1,14,15]]],[3,4,4,15,19,[[130,1,1,15,16],[132,2,2,16,18],[136,1,1,18,19]]],[4,1,1,19,20,[[183,1,1,19,20]]],[6,3,3,20,23,[[216,1,1,20,21],[223,2,2,21,23]]],[8,1,1,23,24,[[238,1,1,23,24]]],[9,1,1,24,25,[[288,1,1,24,25]]],[10,4,3,25,28,[[293,1,1,25,26],[299,2,1,26,27],[301,1,1,27,28]]],[13,2,2,28,30,[[369,1,1,28,29],[373,1,1,29,30]]],[23,1,1,30,31,[[775,1,1,30,31]]],[25,3,3,31,34,[[811,2,2,31,33],[820,1,1,33,34]]],[26,3,2,34,36,[[850,1,1,34,35],[857,2,1,35,36]]]],[305,398,425,694,716,1012,1020,1454,1581,1595,1602,1606,1658,1957,2976,4118,4213,4236,4317,5743,6666,6887,6894,7297,8618,8821,9053,9117,11230,11336,19694,20634,20641,20892,21752,21962]]],["appeareth",[3,3,[[2,1,1,0,1,[[102,1,1,0,1]]],[18,1,1,1,2,[[561,1,1,1,2]]],[38,1,1,2,3,[[927,1,1,2,3]]]],[3066,15266,23122]]],["approveth",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20390]]],["beheld",[17,17,[[0,2,2,0,2,[[18,1,1,0,1],[47,1,1,1,2]]],[6,1,1,2,3,[[226,1,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[17,1,1,4,5,[[466,1,1,4,5]]],[18,2,2,5,7,[[596,1,1,5,6],[619,1,1,6,7]]],[19,1,1,7,8,[[634,1,1,7,8]]],[22,1,1,8,9,[[719,1,1,8,9]]],[23,4,4,9,13,[[748,3,3,9,12],[775,1,1,12,13]]],[25,3,3,13,16,[[802,1,1,13,14],[809,1,1,14,15],[838,1,1,15,16]]],[34,1,1,16,17,[[905,1,1,16,17]]]],[485,1459,6976,10949,13614,16056,16290,16582,18479,19051,19052,19053,19717,20479,20606,21405,22774]]],["behold",[34,34,[[4,2,2,0,2,[[154,1,1,0,1],[155,1,1,1,2]]],[9,1,1,2,3,[[290,1,1,2,3]]],[17,3,3,3,6,[[454,1,1,3,4],[457,1,1,4,5],[475,1,1,5,6]]],[18,4,4,6,10,[[514,1,1,6,7],[536,1,1,7,8],[557,1,1,8,9],[590,1,1,9,10]]],[19,1,1,10,11,[[650,1,1,10,11]]],[20,1,1,11,12,[[660,1,1,11,12]]],[21,1,1,12,13,[[673,1,1,12,13]]],[22,6,6,13,19,[[704,1,1,13,14],[711,1,1,14,15],[718,1,1,15,16],[719,1,1,16,17],[727,1,1,17,18],[741,1,1,18,19]]],[23,5,5,19,24,[[757,1,1,19,20],[764,1,1,20,21],[773,1,1,21,22],[784,1,1,22,23],[786,1,1,23,24]]],[24,2,2,24,26,[[797,1,1,24,25],[799,1,1,25,26]]],[25,4,4,26,30,[[829,2,2,26,28],[841,1,1,28,29],[845,1,1,29,30]]],[26,1,1,30,31,[[858,1,1,30,31]]],[29,1,1,31,32,[[881,1,1,31,32]]],[32,2,2,32,34,[[899,2,2,32,34]]]],[4962,5002,8714,13324,13401,13875,14487,14794,15212,15819,17077,17345,17582,18140,18296,18446,18474,18654,18881,19286,19426,19667,19945,19977,20328,20404,21174,21175,21481,21604,22006,22404,22673,22674]]],["beholding",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17408]]],["consider",[10,10,[[1,1,1,0,1,[[82,1,1,0,1]]],[2,1,1,1,2,[[102,1,1,1,2]]],[8,1,1,2,3,[[260,1,1,2,3]]],[18,3,3,3,6,[[485,1,1,3,4],[486,1,1,4,5],[522,1,1,5,6]]],[19,1,1,6,7,[[633,1,1,6,7]]],[20,1,1,7,8,[[665,1,1,7,8]]],[22,1,1,8,9,[[683,1,1,8,9]]],[25,1,1,9,10,[[813,1,1,9,10]]]],[2486,3065,7878,14015,14034,14607,16546,17443,17751,20683]]],["considereth",[2,2,[[25,2,2,0,2,[[819,2,2,0,2]]]],[20863,20877]]],["discern",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23138]]],["enjoy",[4,4,[[20,4,4,0,4,[[660,2,2,0,2],[661,1,1,2,3],[663,1,1,3,4]]]],[17334,17357,17372,17415]]],["experience",[1,1,[[20,1,1,0,1,[[659,1,1,0,1]]]],[17331]]],["foreseeth",[2,2,[[19,2,2,0,2,[[649,1,1,0,1],[654,1,1,1,2]]]],[17018,17181]]],["gaze",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2047]]],["heed",[2,2,[[12,1,1,0,1,[[365,1,1,0,1]]],[13,1,1,1,2,[[385,1,1,1,2]]]],[11153,11582]]],["himself",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]]],[1415,9343]]],["itself",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17194]]],["lo",[1,1,[[12,1,1,0,1,[[358,1,1,0,1]]]],[10957]]],["look",[18,18,[[0,1,1,0,1,[[12,1,1,0,1]]],[1,3,3,1,4,[[54,1,1,1,2],[59,1,1,2,3],[74,1,1,3,4]]],[2,7,7,4,11,[[102,3,3,4,7],[103,4,4,7,11]]],[4,1,1,11,12,[[180,1,1,11,12]]],[9,1,1,12,13,[[282,1,1,12,13]]],[11,2,2,13,15,[[318,1,1,13,14],[322,1,1,14,15]]],[12,1,1,15,16,[[349,1,1,15,16]]],[20,1,1,16,17,[[670,1,1,16,17]]],[22,1,1,17,18,[[744,1,1,17,18]]]],[332,1653,1787,2235,3091,3105,3108,3114,3150,3155,3159,5643,8438,9706,9816,10737,17526,18946]]],["looked",[42,42,[[0,9,9,0,9,[[7,1,1,0,1],[15,1,1,1,2],[17,1,1,2,3],[21,1,1,3,4],[28,2,2,4,6],[32,1,1,6,7],[36,1,1,7,8],[38,1,1,8,9]]],[1,2,2,9,11,[[51,1,1,9,10],[52,1,1,10,11]]],[3,1,1,11,12,[[133,1,1,11,12]]],[4,1,1,12,13,[[161,1,1,12,13]]],[5,1,1,13,14,[[191,1,1,13,14]]],[6,1,1,14,15,[[219,1,1,14,15]]],[8,2,2,15,17,[[241,1,1,15,16],[249,1,1,16,17]]],[9,2,2,17,19,[[279,1,1,17,18],[284,1,1,18,19]]],[11,3,3,19,22,[[314,1,1,19,20],[318,1,1,20,21],[323,1,1,21,22]]],[13,1,1,22,23,[[389,1,1,22,23]]],[15,1,1,23,24,[[416,1,1,23,24]]],[16,1,1,24,25,[[427,1,1,24,25]]],[19,1,1,25,26,[[651,1,1,25,26]]],[25,7,7,26,33,[[802,1,1,26,27],[803,1,1,27,28],[809,1,1,28,29],[811,2,2,29,31],[822,1,1,31,32],[845,1,1,32,33]]],[26,2,2,33,35,[[859,1,1,33,34],[861,1,1,34,35]]],[30,2,2,35,37,[[888,2,2,35,37]]],[37,5,5,37,42,[[912,1,1,37,38],[914,1,1,38,39],[915,2,2,39,41],[916,1,1,41,42]]]],[196,394,426,560,797,827,961,1108,1172,1565,1581,4253,5173,5947,6797,7350,7524,8351,8502,9575,9704,9843,11669,12373,12739,17111,20468,20501,20611,20634,20642,20965,21603,22020,22086,22522,22523,22900,22924,22937,22945,22948]]],["looketh",[3,2,[[8,2,1,0,1,[[251,2,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]]],[7602,18168]]],["meet",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12733]]],["myself",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9356]]],["on",[10,10,[[2,6,6,0,6,[[102,6,6,0,6]]],[6,2,2,6,8,[[223,2,2,6,8]]],[17,1,1,8,9,[[475,1,1,8,9]]],[18,1,1,9,10,[[512,1,1,9,10]]]],[3055,3057,3058,3073,3078,3088,6903,6904,13876,14427]]],["out",[3,3,[[0,1,1,0,1,[[40,1,1,0,1]]],[11,2,2,1,3,[[321,1,1,1,2],[322,1,1,2,3]]]],[1228,9758,9796]]],["perceive",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17381]]],["perceived",[4,4,[[6,1,1,0,1,[[216,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]],[13,1,1,2,3,[[384,1,1,2,3]]],[23,1,1,3,4,[[767,1,1,3,4]]]],[6676,9513,11574,19502]]],["provide",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[555]]],["provided",[2,2,[[4,1,1,0,1,[[185,1,1,0,1]]],[8,1,1,1,2,[[251,1,1,1,2]]]],[5831,7596]]],["regard",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14891]]],["regarded",[2,2,[[12,1,1,0,1,[[354,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]]],[10880,15695]]],["regardeth",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17517]]],["respect",[4,4,[[18,1,1,0,1,[[615,1,1,0,1]]],[22,3,3,1,4,[[695,2,2,1,3],[700,1,1,3,4]]]],[16237,17990,17991,18063]]],["respecteth",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13793]]],["saw",[219,211,[[0,41,41,0,41,[[0,5,5,0,5],[2,1,1,5,6],[5,1,1,6,7],[8,1,1,7,8],[11,1,1,8,9],[15,2,2,9,11],[17,1,1,11,12],[20,1,1,12,13],[23,1,1,13,14],[25,1,1,14,15],[27,1,1,15,16],[28,1,1,16,17],[29,2,2,17,19],[30,1,1,19,20],[31,2,2,20,22],[33,1,1,22,23],[36,2,2,23,25],[37,3,3,25,28],[38,2,2,28,30],[39,1,1,30,31],[40,2,2,31,33],[41,2,2,33,35],[42,1,1,35,36],[43,1,1,36,37],[47,1,1,37,38],[48,1,1,38,39],[49,2,2,39,41]]],[1,11,11,41,52,[[51,2,2,41,43],[52,1,1,43,44],[57,1,1,44,45],[58,1,1,45,46],[59,1,1,46,47],[65,1,1,47,48],[69,1,1,48,49],[81,3,3,49,52]]],[2,1,1,52,53,[[98,1,1,52,53]]],[3,6,6,53,59,[[129,2,2,53,55],[136,1,1,55,56],[138,1,1,56,57],[140,1,1,57,58],[141,1,1,58,59]]],[4,5,5,59,64,[[153,1,1,59,60],[156,2,2,60,62],[159,1,1,62,63],[184,1,1,63,64]]],[5,4,4,64,68,[[193,1,1,64,65],[194,3,3,65,68]]],[6,15,15,68,83,[[211,1,1,68,69],[213,1,1,69,70],[219,1,1,70,71],[221,1,1,71,72],[222,1,1,72,73],[224,2,2,73,75],[226,3,3,75,78],[228,1,1,78,79],[229,2,2,79,81],[230,2,2,81,83]]],[7,1,1,83,84,[[232,1,1,83,84]]],[8,18,18,84,102,[[240,1,1,84,85],[245,2,2,85,87],[247,1,1,87,88],[248,2,2,88,90],[249,1,1,90,91],[252,1,1,91,92],[253,2,2,92,94],[258,1,1,94,95],[260,1,1,95,96],[261,2,2,96,98],[263,2,2,98,100],[266,2,2,100,102]]],[9,17,16,102,118,[[267,1,1,102,103],[276,5,5,103,108],[277,1,1,108,109],[278,1,1,109,110],[280,2,2,110,112],[283,2,2,112,114],[284,3,3,114,117],[286,2,1,117,118]]],[10,5,5,118,123,[[293,1,1,118,119],[302,1,1,119,120],[306,1,1,120,121],[308,1,1,121,122],[309,1,1,122,123]]],[11,12,11,123,134,[[314,3,2,123,125],[315,1,1,125,126],[316,1,1,126,127],[317,1,1,127,128],[318,3,3,128,131],[321,1,1,131,132],[323,1,1,132,133],[324,1,1,133,134]]],[12,8,8,134,142,[[347,2,2,134,136],[356,5,5,136,141],[358,1,1,141,142]]],[13,6,6,142,148,[[373,1,1,142,143],[378,1,1,143,144],[381,1,1,144,145],[388,1,1,145,146],[390,1,1,146,147],[398,1,1,147,148]]],[15,3,3,148,151,[[418,1,1,148,149],[425,2,2,149,151]]],[16,3,3,151,154,[[426,1,1,151,152],[428,1,1,152,153],[432,1,1,153,154]]],[17,6,6,154,160,[[437,1,1,154,155],[438,1,1,155,156],[464,2,2,156,158],[466,1,1,158,159],[467,1,1,159,160]]],[18,7,6,160,166,[[525,1,1,160,161],[550,1,1,161,162],[554,2,1,162,163],[572,1,1,163,164],[574,1,1,164,165],[591,1,1,165,166]]],[20,6,6,166,172,[[660,2,2,166,168],[661,1,1,168,169],[662,1,1,169,170],[666,1,1,170,171],[667,1,1,171,172]]],[21,1,1,172,173,[[676,1,1,172,173]]],[22,5,5,173,178,[[684,1,1,173,174],[699,1,1,174,175],[719,1,1,175,176],[737,2,2,176,178]]],[23,4,4,178,182,[[747,2,2,178,180],[783,1,1,180,181],[788,1,1,181,182]]],[24,1,1,182,183,[[797,1,1,182,183]]],[25,21,18,183,201,[[802,4,3,183,186],[804,1,1,186,187],[809,2,2,187,189],[811,3,3,189,192],[817,2,2,192,194],[820,1,1,194,195],[821,1,1,195,196],[824,3,3,196,199],[842,1,1,199,200],[844,3,1,200,201]]],[26,6,4,201,205,[[857,5,3,201,204],[859,1,1,204,205]]],[27,2,2,205,207,[[870,2,2,205,207]]],[34,2,2,207,209,[[905,2,2,207,209]]],[37,2,2,209,211,[[911,2,2,209,211]]]],[9,11,17,20,24,61,142,228,313,385,386,426,532,654,700,779,826,831,839,883,930,953,982,1087,1101,1121,1133,1134,1152,1162,1188,1214,1217,1253,1273,1319,1352,1468,1488,1521,1529,1556,1566,1583,1725,1776,1800,1962,2069,2439,2443,2463,2977,4103,4107,4340,4408,4447,4478,4911,5016,5019,5130,5777,5997,6016,6022,6023,6533,6592,6809,6864,6872,6910,6920,6950,6967,6973,7019,7027,7054,7090,7095,7145,7326,7429,7432,7472,7491,7496,7560,7669,7691,7704,7825,7886,7908,7917,7955,7963,8014,8016,8029,8246,8249,8254,8255,8259,8261,8305,8380,8384,8467,8472,8488,8504,8507,8566,8844,9167,9301,9380,9390,9563,9566,9602,9628,9668,9691,9694,9695,9783,9830,9860,10664,10666,10913,10917,10922,10923,10926,10962,11327,11444,11499,11654,11688,11877,12417,12686,12694,12716,12752,12814,12904,12920,13540,13543,13609,13633,14639,15023,15109,15463,15482,15825,17346,17357,17375,17388,17468,17486,17623,17770,18042,18456,18815,18816,19009,19010,19927,20027,20317,20465,20491,20492,20525,20608,20614,20648,20653,20655,20768,20812,20886,20923,21018,21020,21021,21534,21575,21963,21964,21968,22022,22218,22221,22775,22778,22886,22896]]],["sawest",[6,6,[[0,1,1,0,1,[[19,1,1,0,1]]],[8,2,2,1,3,[[254,1,1,1,2],[263,1,1,2,3]]],[9,1,1,3,4,[[284,1,1,3,4]]],[18,1,1,4,5,[[527,1,1,4,5]]],[26,1,1,5,6,[[857,1,1,5,6]]]],[505,7711,7955,8489,14686,21981]]],["see",[259,249,[[0,21,21,0,21,[[1,1,1,0,1],[7,1,1,1,2],[11,1,1,2,3],[17,1,1,3,4],[20,1,1,4,5],[30,2,2,5,7],[31,1,1,7,8],[33,1,1,8,9],[36,2,2,9,11],[41,1,1,11,12],[42,2,2,12,14],[43,3,3,14,17],[44,2,2,17,19],[47,2,2,19,21]]],[1,13,13,21,34,[[50,1,1,21,22],[52,2,2,22,24],[53,2,2,24,26],[54,1,1,26,27],[55,1,1,27,28],[59,2,2,28,30],[62,1,1,30,31],[63,1,1,31,32],[72,1,1,32,33],[82,1,1,33,34]]],[2,3,3,34,37,[[102,3,3,34,37]]],[3,10,8,37,45,[[120,1,1,37,38],[127,2,2,38,40],[130,1,1,40,41],[138,1,1,41,42],[139,4,2,42,44],[140,1,1,44,45]]],[4,12,12,45,57,[[153,1,1,45,46],[155,1,1,46,47],[156,1,1,47,48],[170,1,1,48,49],[175,1,1,49,50],[180,4,4,50,54],[181,1,1,54,55],[184,1,1,55,56],[186,1,1,56,57]]],[5,1,1,57,58,[[194,1,1,57,58]]],[6,2,2,58,60,[[226,1,1,58,59],[231,1,1,59,60]]],[8,16,15,60,75,[[238,1,1,60,61],[239,1,1,61,62],[241,2,2,62,64],[247,1,1,64,65],[249,3,3,65,68],[252,1,1,68,69],[254,1,1,69,70],[256,1,1,70,71],[259,3,2,71,73],[260,1,1,73,74],[261,1,1,74,75]]],[9,7,6,75,81,[[279,3,2,75,77],[280,2,2,77,79],[290,2,2,79,81]]],[10,4,4,81,85,[[302,1,1,81,82],[304,1,1,82,83],[310,1,1,83,84],[312,1,1,84,85]]],[11,16,15,85,100,[[314,1,1,85,86],[315,3,2,86,88],[317,1,1,88,89],[318,2,2,89,91],[319,4,4,91,95],[321,1,1,95,96],[322,1,1,96,97],[331,1,1,97,98],[334,1,1,98,99],[335,1,1,99,100]]],[13,5,5,100,105,[[376,1,1,100,101],[384,1,1,101,102],[395,1,1,102,103],[396,1,1,103,104],[400,1,1,104,105]]],[15,2,2,105,107,[[414,1,1,105,106],[416,1,1,106,107]]],[16,3,2,107,109,[[428,1,1,107,108],[433,2,1,108,109]]],[17,17,17,109,126,[[438,1,1,109,110],[441,1,1,110,111],[442,1,1,111,112],[444,2,2,112,114],[445,1,1,114,115],[455,1,1,115,116],[456,1,1,116,117],[457,2,2,117,119],[458,1,1,119,120],[463,1,1,120,121],[466,1,1,121,122],[468,2,2,122,124],[470,1,1,124,125],[472,1,1,125,126]]],[18,41,41,126,167,[[487,1,1,126,127],[491,1,1,127,128],[493,1,1,128,129],[499,1,1,129,130],[504,1,1,130,131],[508,1,1,131,132],[511,2,2,132,134],[513,1,1,134,135],[514,1,1,135,136],[517,1,1,136,137],[518,1,1,137,138],[526,2,2,138,140],[529,1,1,140,141],[530,1,1,141,142],[536,1,1,142,143],[540,1,1,143,144],[541,2,2,144,146],[543,1,1,146,147],[546,1,1,147,148],[551,1,1,148,149],[563,1,1,149,150],[566,1,1,150,151],[568,1,1,151,152],[571,1,1,152,153],[574,1,1,153,154],[583,1,1,154,155],[584,2,2,155,157],[589,2,2,157,159],[592,1,1,159,160],[595,1,1,160,161],[596,1,1,161,162],[605,2,2,162,164],[612,1,1,164,165],[616,2,2,165,167]]],[19,2,2,167,169,[[651,1,1,167,168],[656,1,1,168,169]]],[20,4,4,169,173,[[660,1,1,169,170],[661,2,2,170,172],[665,1,1,172,173]]],[21,3,2,173,175,[[676,2,1,173,174],[677,1,1,174,175]]],[22,25,25,175,200,[[683,1,1,175,176],[684,1,1,176,177],[692,1,1,177,178],[696,1,1,178,179],[707,1,1,179,180],[710,1,1,180,181],[711,1,1,181,182],[713,1,1,182,183],[715,1,1,183,184],[716,1,1,184,185],[718,1,1,185,186],[719,1,1,186,187],[720,1,1,187,188],[722,1,1,188,189],[727,1,1,189,190],[730,2,2,190,192],[731,3,3,192,195],[738,2,2,195,197],[739,1,1,197,198],[740,1,1,198,199],[744,1,1,199,200]]],[23,25,23,200,223,[[745,2,2,200,202],[746,5,4,202,206],[747,1,1,206,207],[748,1,1,207,208],[749,3,3,208,211],[750,1,1,211,212],[755,1,1,212,213],[758,1,1,213,214],[761,2,2,214,216],[764,2,2,216,218],[766,1,1,218,219],[767,1,1,219,220],[774,2,1,220,221],[786,1,1,221,222],[795,1,1,222,223]]],[24,2,2,223,225,[[797,2,2,223,225]]],[25,10,9,225,234,[[809,3,3,225,228],[813,5,4,228,232],[821,1,1,232,233],[833,1,1,233,234]]],[28,1,1,234,235,[[877,1,1,234,235]]],[29,1,1,235,236,[[884,1,1,235,236]]],[31,1,1,236,237,[[892,1,1,236,237]]],[32,3,3,237,240,[[898,1,1,237,238],[899,2,2,238,240]]],[34,1,1,240,241,[[904,1,1,240,241]]],[35,1,1,241,242,[[908,1,1,241,242]]],[36,1,1,242,243,[[910,1,1,242,243]]],[37,5,5,243,248,[[912,1,1,243,244],[915,2,2,244,246],[919,1,1,246,247],[920,1,1,247,248]]],[38,1,1,248,249,[[925,1,1,248,249]]]],[49,191,310,445,529,885,923,948,981,1097,1103,1264,1293,1295,1347,1350,1358,1370,1386,1461,1462,1548,1582,1583,1619,1622,1651,1656,1805,1806,1884,1902,2149,2493,3060,3062,3069,3763,4039,4047,4131,4416,4425,4429,4463,4928,5003,5032,5400,5514,5621,5645,5678,5679,5683,5778,5843,6003,6954,7123,7278,7312,7340,7344,7477,7525,7537,7546,7646,7709,7786,7850,7854,7896,7921,8322,8323,8380,8388,8695,8705,9167,9222,9415,9505,9561,9590,9593,9654,9691,9694,9709,9720,9721,9726,9773,9809,10077,10165,10182,11411,11566,11799,11834,11961,12324,12370,12751,12823,12913,12999,13015,13062,13076,13101,13343,13375,13400,13408,13428,13531,13592,13676,13678,13725,13790,14052,14082,14102,14211,14298,14342,14396,14400,14447,14484,14528,14548,14657,14667,14716,14721,14800,14841,14855,14858,14878,14967,15057,15301,15374,15403,15438,15484,15656,15723,15741,15811,15813,15835,15876,15972,16131,16132,16191,16255,16263,17097,17240,17336,17377,17381,17440,17625,17639,17758,17779,17944,18000,18211,18262,18299,18322,18369,18401,18425,18471,18498,18542,18643,18704,18711,18713,18721,18722,18825,18826,18852,18856,18936,18957,18959,18975,18984,18988,18996,19004,19048,19059,19070,19079,19105,19246,19306,19363,19365,19434,19440,19466,19508,19673,19989,20273,20321,20322,20610,20617,20619,20682,20686,20692,20693,20943,21279,22339,22452,22573,22657,22674,22680,22749,22835,22858,22901,22938,22941,23004,23023,23094]]],["seeing",[7,7,[[0,2,2,0,2,[[18,1,1,0,1],[27,1,1,1,2]]],[1,1,1,2,3,[[71,1,1,2,3]]],[3,1,1,3,4,[[151,1,1,3,4]]],[10,1,1,4,5,[[291,1,1,4,5]]],[19,1,1,5,6,[[647,1,1,5,6]]],[20,1,1,6,7,[[659,1,1,6,7]]]],[458,781,2123,4868,8765,16966,17323]]],["seemeth",[1,1,[[2,1,1,0,1,[[103,1,1,0,1]]]],[3146]]],["seen",[128,121,[[0,8,7,0,7,[[6,1,1,0,1],[7,1,1,1,2],[8,1,1,2,3],[21,1,1,3,4],[31,1,1,4,5],[32,2,1,5,6],[44,1,1,6,7]]],[1,8,7,7,14,[[59,1,1,7,8],[62,2,1,8,9],[63,1,1,9,10],[68,1,1,10,11],[69,1,1,11,12],[82,1,1,12,13],[83,1,1,13,14]]],[2,3,2,14,16,[[94,1,1,14,15],[102,2,1,15,16]]],[3,3,3,16,19,[[130,1,1,16,17],[139,1,1,17,18],[143,1,1,18,19]]],[4,9,9,19,28,[[153,2,2,19,21],[156,1,1,21,22],[157,1,1,22,23],[162,1,1,23,24],[168,1,1,24,25],[173,1,1,25,26],[181,1,1,26,27],[185,1,1,27,28]]],[6,6,6,28,34,[[215,1,1,28,29],[216,1,1,29,30],[219,1,1,30,31],[223,1,1,31,32],[224,1,1,32,33],[229,1,1,33,34]]],[8,4,4,34,38,[[241,1,1,34,35],[251,1,1,35,36],[252,1,1,36,37],[258,1,1,37,38]]],[9,3,3,38,41,[[283,1,1,38,39],[284,1,1,39,40],[288,1,1,40,41]]],[10,5,4,41,45,[[296,1,1,41,42],[298,2,1,42,43],[300,2,2,43,45]]],[11,4,3,45,48,[[321,1,1,45,46],[332,2,1,46,47],[335,1,1,47,48]]],[12,1,1,48,49,[[366,1,1,48,49]]],[13,4,3,49,52,[[371,2,1,49,50],[375,2,2,50,52]]],[16,1,1,52,53,[[434,1,1,52,53]]],[17,10,10,53,63,[[439,1,1,53,54],[440,1,1,54,55],[443,1,1,55,56],[445,1,1,56,57],[448,1,1,57,58],[455,1,1,58,59],[466,1,1,59,60],[468,1,1,60,61],[473,2,2,61,63]]],[18,12,12,63,75,[[487,1,1,63,64],[495,1,1,64,65],[512,2,2,65,67],[514,2,2,67,69],[525,1,1,69,70],[531,1,1,70,71],[532,1,1,71,72],[545,1,1,72,73],[567,1,1,73,74],[596,1,1,74,75]]],[19,1,1,75,76,[[652,1,1,75,76]]],[20,10,10,76,86,[[663,2,2,76,78],[664,3,3,78,81],[665,1,1,81,82],[666,1,1,82,83],[667,1,1,83,84],[668,2,2,84,86]]],[22,11,10,86,96,[[687,1,1,86,87],[694,1,1,87,88],[700,1,1,88,89],[717,2,1,89,90],[722,1,1,90,91],[725,1,1,91,92],[735,1,1,92,93],[738,1,1,93,94],[742,1,1,94,95],[744,1,1,95,96]]],[23,8,8,96,104,[[745,1,1,96,97],[747,1,1,97,98],[751,1,1,98,99],[756,1,1,99,100],[757,1,1,100,101],[767,2,2,101,103],[790,1,1,103,104]]],[24,6,6,104,110,[[797,2,2,104,106],[798,1,1,106,107],[799,3,3,107,110]]],[25,6,6,110,116,[[809,3,3,110,113],[812,1,1,113,114],[814,1,1,114,115],[848,1,1,115,116]]],[26,2,2,116,118,[[857,1,1,116,117],[858,1,1,117,118]]],[27,1,1,118,119,[[867,1,1,118,119]]],[37,2,2,119,121,[[919,2,2,119,121]]]],[160,188,219,561,958,970,1371,1783,1874,1902,2030,2073,2496,2499,2831,3059,4122,4437,4567,4920,4923,5013,5077,5207,5346,5454,5682,5819,6631,6676,6802,6906,6911,7054,7347,7613,7643,7832,8466,8499,8613,8914,8993,9086,9091,9782,10113,10194,11181,11277,11370,11375,12860,12938,12954,13047,13104,13154,13333,13607,13671,13810,13815,14055,14133,14431,14432,14475,14485,14642,14732,14741,14924,15393,15994,17120,17410,17415,17418,17422,17423,17444,17467,17488,17498,17500,17831,17981,18061,18416,18549,18602,18783,18823,18889,18930,18958,19008,19130,19252,19293,19497,19498,20050,20318,20320,20348,20355,20413,20414,20616,20619,20621,20679,20711,21685,21967,22009,22177,23007,23013]]],["seer",[4,4,[[8,3,3,0,3,[[244,3,3,0,3]]],[9,1,1,3,4,[[281,1,1,3,4]]]],[7400,7402,7410,8416]]],["seer's",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7409]]],["seers",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18227]]],["seest",[22,22,[[0,2,2,0,2,[[12,1,1,0,1],[30,1,1,1,2]]],[1,1,1,2,3,[[59,1,1,2,3]]],[4,3,3,3,6,[[164,1,1,3,4],[172,1,1,4,5],[173,1,1,5,6]]],[17,1,1,6,7,[[445,1,1,6,7]]],[20,1,1,7,8,[[663,1,1,7,8]]],[22,2,2,8,10,[[736,2,2,8,10]]],[23,5,5,10,15,[[745,2,2,10,12],[764,1,1,12,13],[768,1,1,13,14],[776,1,1,14,15]]],[25,2,2,15,17,[[809,1,1,15,16],[841,1,1,16,17]]],[26,1,1,17,18,[[850,1,1,17,18]]],[29,2,2,18,20,[[885,1,1,18,19],[886,1,1,19,20]]],[37,2,2,20,22,[[914,1,1,20,21],[915,1,1,21,22]]]],[333,916,1805,5253,5428,5458,13090,17405,18789,18793,18957,18959,19434,19527,19755,20610,21481,21750,22472,22483,22924,22938]]],["seeth",[25,25,[[0,2,2,0,2,[[15,1,1,0,1],[43,1,1,1,2]]],[1,1,1,2,3,[[53,1,1,2,3]]],[2,1,1,3,4,[[102,1,1,3,4]]],[4,1,1,4,5,[[184,1,1,4,5]]],[8,1,1,5,6,[[251,1,1,5,6]]],[11,1,1,6,7,[[314,1,1,6,7]]],[17,7,7,7,14,[[445,1,1,7,8],[446,1,1,8,9],[457,1,1,9,10],[463,2,2,10,12],[469,1,1,12,13],[477,1,1,13,14]]],[18,2,2,14,16,[[514,1,1,14,15],[526,1,1,15,16]]],[20,1,1,16,17,[[666,1,1,16,17]]],[22,5,5,17,22,[[699,1,1,17,18],[706,1,1,18,19],[707,2,2,19,21],[725,1,1,21,22]]],[25,3,3,22,25,[[809,1,1,22,23],[810,1,1,23,24],[840,1,1,24,25]]]],[394,1355,1615,3072,5794,7602,9570,13090,13119,13403,13514,13528,13704,13927,14463,14658,17474,18041,18168,18208,18216,18609,20616,20631,21463]]],["shew",[21,20,[[0,1,1,0,1,[[11,1,1,0,1]]],[1,3,3,1,4,[[58,1,1,1,2],[74,1,1,2,3],[82,1,1,3,4]]],[4,1,1,4,5,[[153,1,1,4,5]]],[5,1,1,5,6,[[191,1,1,5,6]]],[6,1,1,6,7,[[214,1,1,6,7]]],[9,1,1,7,8,[[281,1,1,7,8]]],[16,2,2,8,10,[[426,1,1,8,9],[429,1,1,9,10]]],[18,3,3,10,13,[[481,1,1,10,11],[527,1,1,11,12],[568,1,1,12,13]]],[22,1,1,13,14,[[708,1,1,13,14]]],[23,1,1,14,15,[[762,1,1,14,15]]],[25,2,1,15,16,[[841,2,1,15,16]]],[32,1,1,16,17,[[899,1,1,16,17]]],[33,1,1,17,18,[[902,1,1,17,18]]],[34,1,1,18,19,[[903,1,1,18,19]]],[37,1,1,19,20,[[911,1,1,19,20]]]],[299,1758,2204,2491,4925,5940,6621,8414,12713,12770,13971,14691,15411,18247,19401,21481,22679,22717,22734,22887]]],["shewed",[34,32,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,3,3,1,4,[[74,1,1,1,2],[75,1,1,2,3],[76,1,1,3,4]]],[2,1,1,4,5,[[102,1,1,4,5]]],[3,1,1,5,6,[[129,1,1,5,6]]],[4,4,4,6,10,[[156,2,2,6,8],[157,1,1,8,9],[186,1,1,9,10]]],[6,2,2,10,12,[[211,1,1,10,11],[223,1,1,11,12]]],[11,7,6,12,18,[[318,1,1,12,13],[320,2,2,13,15],[323,1,1,15,16],[332,3,2,16,18]]],[18,3,3,18,21,[[537,1,1,18,19],[548,1,1,19,20],[555,1,1,20,21]]],[22,3,2,21,23,[[717,3,2,21,23]]],[23,2,2,23,25,[[768,1,1,23,24],[782,1,1,24,25]]],[25,1,1,25,26,[[812,1,1,25,26]]],[29,4,4,26,30,[[885,3,3,26,29],[886,1,1,29,30]]],[37,2,2,30,32,[[911,1,1,30,31],[913,1,1,31,32]]]],[1462,2235,2265,2280,3071,4101,5039,5040,5077,5840,6534,6907,9680,9737,9740,9833,10111,10113,14810,14996,15124,18414,18416,19525,19916,20680,22465,22468,22471,22482,22898,22913]]],["shewedst",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19244]]],["sheweth",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4419]]],["sight",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13709]]],["spied",[2,2,[[1,1,1,0,1,[[51,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]]],[1565,10189]]],["spy",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9687]]],["stare",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14221]]],["thyself",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9342]]],["up",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14537]]],["upon",[13,13,[[0,2,2,0,2,[[8,1,1,0,1],[39,1,1,1,2]]],[2,3,3,2,5,[[102,3,3,2,5]]],[3,2,2,5,7,[[131,1,1,5,6],[137,1,1,6,7]]],[13,1,1,7,8,[[390,1,1,7,8]]],[18,2,2,8,10,[[502,1,1,8,9],[586,1,1,9,10]]],[25,1,1,10,11,[[817,1,1,10,11]]],[26,1,1,11,12,[[850,1,1,11,12]]],[33,1,1,12,13,[[902,1,1,12,13]]]],[221,1178,3077,3079,3095,4192,4348,11699,14269,15780,20770,21750,22719]]],["visions",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11737]]]]},{"k":"H7201","v":[["glede",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5303]]]]},{"k":"H7202","v":[]},{"k":"H7203","v":[["*",[6,6,[[12,3,3,0,3,[[346,1,1,0,1],[363,1,1,1,2],[366,1,1,2,3]]],[13,2,2,3,5,[[382,2,2,3,5]]],[22,1,1,5,6,[[706,1,1,5,6]]]],[10637,11105,11193,11516,11519,18171]]],["seer",[5,5,[[12,3,3,0,3,[[346,1,1,0,1],[363,1,1,1,2],[366,1,1,2,3]]],[13,2,2,3,5,[[382,2,2,3,5]]]],[10637,11105,11193,11516,11519]]],["vision",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18171]]]]},{"k":"H7204","v":[["Haroeh",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10358]]]]},{"k":"H7205","v":[["*",[72,68,[[0,13,13,0,13,[[28,1,1,0,1],[29,1,1,1,2],[34,2,2,2,4],[36,3,3,4,7],[41,2,2,7,9],[45,2,2,9,11],[47,1,1,11,12],[48,1,1,12,13]]],[1,3,2,13,15,[[50,1,1,13,14],[55,2,1,14,15]]],[3,20,18,15,33,[[117,3,3,15,18],[118,3,2,18,20],[123,1,1,20,21],[126,1,1,21,22],[129,1,1,22,23],[132,1,1,23,24],[142,2,1,24,25],[148,8,8,25,33]]],[4,3,3,33,36,[[163,1,1,33,34],[179,1,1,34,35],[185,1,1,35,36]]],[5,22,21,36,57,[[190,1,1,36,37],[199,3,2,37,39],[201,1,1,39,40],[204,2,2,40,42],[206,1,1,42,43],[207,2,2,43,45],[208,12,12,45,57]]],[6,2,2,57,59,[[215,2,2,57,59]]],[12,6,6,59,65,[[339,1,1,59,60],[342,3,3,60,63],[343,2,2,63,65]]],[25,3,3,65,68,[[849,3,3,65,68]]]],[827,844,1033,1034,1104,1105,1112,1274,1289,1394,1395,1456,1476,1534,1669,3609,3624,3625,3668,3674,3880,4006,4079,4195,4494,4719,4720,4724,4743,4747,4749,4751,4755,5214,5598,5816,5922,6169,6177,6208,6300,6310,6380,6388,6417,6435,6436,6437,6439,6441,6447,6451,6456,6457,6458,6459,6460,6638,6639,10307,10429,10431,10446,10517,10532,21708,21709,21733]]],["+",[2,2,[[5,1,1,0,1,[[207,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]]],[6417,10532]]],["Reuben",[70,66,[[0,13,13,0,13,[[28,1,1,0,1],[29,1,1,1,2],[34,2,2,2,4],[36,3,3,4,7],[41,2,2,7,9],[45,2,2,9,11],[47,1,1,11,12],[48,1,1,12,13]]],[1,3,2,13,15,[[50,1,1,13,14],[55,2,1,14,15]]],[3,20,18,15,33,[[117,3,3,15,18],[118,3,2,18,20],[123,1,1,20,21],[126,1,1,21,22],[129,1,1,22,23],[132,1,1,23,24],[142,2,1,24,25],[148,8,8,25,33]]],[4,3,3,33,36,[[163,1,1,33,34],[179,1,1,34,35],[185,1,1,35,36]]],[5,21,20,36,56,[[190,1,1,36,37],[199,3,2,37,39],[201,1,1,39,40],[204,2,2,40,42],[206,1,1,42,43],[207,1,1,43,44],[208,12,12,44,56]]],[6,2,2,56,58,[[215,2,2,56,58]]],[12,5,5,58,63,[[339,1,1,58,59],[342,3,3,59,62],[343,1,1,62,63]]],[25,3,3,63,66,[[849,3,3,63,66]]]],[827,844,1033,1034,1104,1105,1112,1274,1289,1394,1395,1456,1476,1534,1669,3609,3624,3625,3668,3674,3880,4006,4079,4195,4494,4719,4720,4724,4743,4747,4749,4751,4755,5214,5598,5816,5922,6169,6177,6208,6300,6310,6380,6388,6435,6436,6437,6439,6441,6447,6451,6456,6457,6458,6459,6460,6638,6639,10307,10429,10431,10446,10517,21708,21709,21733]]]]},{"k":"H7206","v":[["*",[18,17,[[3,2,2,0,2,[[142,1,1,0,1],[150,1,1,1,2]]],[4,4,4,2,6,[[155,2,2,2,4],[156,1,1,4,5],[181,1,1,5,6]]],[5,4,4,6,10,[[187,1,1,6,7],[198,1,1,7,8],[199,1,1,8,9],[208,1,1,9,10]]],[11,1,1,10,11,[[322,1,1,10,11]]],[12,7,6,11,17,[[342,2,2,11,13],[348,2,1,13,14],[349,1,1,14,15],[363,1,1,15,16],[364,1,1,16,17]]]],[4496,4830,4987,4991,5047,5687,5863,6136,6162,6427,9826,10434,10454,10715,10757,11109,11125]]],["Reuben",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4830]]],["Reubenite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10715]]],["Reubenites",[16,16,[[3,1,1,0,1,[[142,1,1,0,1]]],[4,4,4,1,5,[[155,2,2,1,3],[156,1,1,3,4],[181,1,1,4,5]]],[5,4,4,5,9,[[187,1,1,5,6],[198,1,1,6,7],[199,1,1,7,8],[208,1,1,8,9]]],[11,1,1,9,10,[[322,1,1,9,10]]],[12,6,6,10,16,[[342,2,2,10,12],[348,1,1,12,13],[349,1,1,13,14],[363,1,1,14,15],[364,1,1,15,16]]]],[4496,4987,4991,5047,5687,5863,6136,6162,6427,9826,10434,10454,10715,10757,11109,11125]]]]},{"k":"H7207","v":[]},{"k":"H7208","v":[["Reumah",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[571]]]]},{"k":"H7209","v":[["glass",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13787]]]]},{"k":"H7210","v":[["*",[5,5,[[0,1,1,0,1,[[15,1,1,0,1]]],[8,1,1,1,2,[[251,1,1,1,2]]],[17,2,2,2,4,[[442,1,1,2,3],[468,1,1,3,4]]],[33,1,1,4,5,[[902,1,1,4,5]]]],[394,7607,13016,13671,22718]]],["+",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13671]]],["gazingstock",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22718]]],["seen",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13016]]],["seest",[1,1,[[0,1,1,0,1,[[15,1,1,0,1]]]],[394]]],["to",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7607]]]]},{"k":"H7211","v":[["*",[4,4,[[12,2,2,0,2,[[341,1,1,0,1],[342,1,1,1,2]]],[14,1,1,2,3,[[404,1,1,2,3]]],[15,1,1,3,4,[[419,1,1,3,4]]]],[10387,10433,12074,12470]]],["Reaia",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10433]]],["Reaiah",[3,3,[[12,1,1,0,1,[[341,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,1,1,2,3,[[419,1,1,2,3]]]],[10387,12074,12470]]]]},{"k":"H7212","v":[]},{"k":"H7213","v":[["up",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23078]]]]},{"k":"H7214","v":[["*",[9,9,[[3,2,2,0,2,[[139,1,1,0,1],[140,1,1,1,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[17,2,2,3,5,[[474,2,2,3,5]]],[18,3,3,5,8,[[499,1,1,5,6],[506,1,1,6,7],[569,1,1,7,8]]],[22,1,1,8,9,[[712,1,1,8,9]]]],[4438,4454,5827,13843,13844,14225,14314,15421,18310]]],["unicorn",[6,6,[[3,2,2,0,2,[[139,1,1,0,1],[140,1,1,1,2]]],[17,2,2,2,4,[[474,2,2,2,4]]],[18,2,2,4,6,[[506,1,1,4,5],[569,1,1,5,6]]]],[4438,4454,13843,13844,14314,15421]]],["unicorns",[3,3,[[4,1,1,0,1,[[185,1,1,0,1]]],[18,1,1,1,2,[[499,1,1,1,2]]],[22,1,1,2,3,[[712,1,1,2,3]]]],[5827,14225,18310]]]]},{"k":"H7215","v":[["coral",[2,2,[[17,1,1,0,1,[[463,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[13522,21137]]]]},{"k":"H7216","v":[["Ramoth",[5,5,[[4,1,1,0,1,[[156,1,1,0,1]]],[5,2,2,1,3,[[206,1,1,1,2],[207,1,1,2,3]]],[12,2,2,3,5,[[343,2,2,3,5]]]],[5047,6380,6419,10527,10534]]]]},{"k":"H7217","v":[["*",[14,13,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,13,12,1,13,[[851,3,3,1,4],[852,1,1,4,5],[853,3,3,5,8],[856,6,5,8,13]]]],[12144,21786,21790,21796,21834,21842,21847,21850,21934,21939,21942,21948,21953]]],["chief",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12144]]],["head",[11,11,[[26,11,11,0,11,[[851,3,3,0,3],[852,1,1,3,4],[853,3,3,4,7],[856,4,4,7,11]]]],[21786,21790,21796,21834,21842,21847,21850,21934,21942,21948,21953]]],["heads",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21939]]],["sum",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21934]]]]},{"k":"H7218","v":[["*",[598,547,[[0,19,16,0,16,[[1,1,1,0,1],[2,1,1,1,2],[7,1,1,2,3],[10,1,1,3,4],[27,2,2,4,6],[39,5,5,6,11],[46,1,1,11,12],[47,6,3,12,15],[48,1,1,15,16]]],[1,26,25,16,41,[[55,2,2,16,18],[61,2,2,18,20],[66,2,2,20,22],[67,1,1,22,23],[68,2,1,23,24],[73,1,1,24,25],[75,1,1,25,26],[77,1,1,26,27],[78,6,6,27,33],[79,2,2,33,35],[83,1,1,35,36],[85,2,2,36,38],[87,3,3,38,41]]],[2,40,38,41,79,[[90,4,4,41,45],[92,3,3,45,48],[93,6,6,48,54],[94,1,1,54,55],[95,1,1,55,56],[97,6,6,56,62],[98,1,1,62,63],[99,1,1,63,64],[102,7,7,64,71],[103,3,3,71,74],[105,2,1,74,75],[108,1,1,75,76],[110,3,2,76,78],[113,1,1,78,79]]],[3,41,36,79,115,[[117,4,4,79,83],[120,2,2,83,85],[121,2,2,85,87],[122,8,5,87,92],[123,1,1,92,93],[124,1,1,93,94],[126,2,2,94,96],[129,1,1,96,97],[130,3,3,97,100],[133,1,1,100,101],[136,1,1,101,102],[137,1,1,102,103],[139,3,3,103,106],[141,2,2,106,108],[142,1,1,108,109],[144,1,1,109,110],[146,1,1,110,111],[147,3,2,111,113],[148,1,1,113,114],[152,2,1,114,115]]],[4,17,16,115,131,[[153,3,2,115,117],[155,1,1,117,118],[157,1,1,118,119],[172,1,1,119,120],[173,1,1,120,121],[180,3,3,121,124],[181,1,1,124,125],[184,1,1,125,126],[185,4,4,126,130],[186,1,1,130,131]]],[5,15,13,131,144,[[188,2,1,131,132],[193,1,1,132,133],[197,1,1,133,134],[200,1,1,134,135],[201,2,2,135,137],[205,1,1,137,138],[207,2,1,138,139],[208,3,3,139,142],[209,1,1,142,143],[210,1,1,143,144]]],[6,28,27,144,171,[[215,2,2,144,146],[216,1,1,146,147],[217,4,4,147,151],[218,1,1,151,152],[219,10,9,152,161],[220,1,1,161,162],[221,3,3,162,165],[223,1,1,165,166],[226,5,5,166,171]]],[8,23,21,171,192,[[236,1,1,171,172],[239,1,1,172,173],[240,1,1,173,174],[244,1,1,174,175],[245,1,1,175,176],[246,1,1,176,177],[248,4,2,177,179],[249,1,1,179,180],[250,1,1,180,181],[252,6,6,181,187],[260,1,1,187,188],[261,1,1,188,189],[263,1,1,189,190],[264,1,1,190,191],[266,1,1,191,192]]],[9,32,25,192,217,[[267,3,3,192,195],[268,2,2,195,197],[269,2,2,197,199],[270,5,3,199,202],[271,1,1,202,203],[278,2,1,203,204],[279,2,1,204,205],[280,2,1,205,206],[281,4,2,206,208],[282,2,2,208,210],[284,1,1,210,211],[286,2,2,211,213],[288,1,1,213,214],[289,3,3,214,217]]],[10,23,20,217,237,[[292,5,4,217,221],[297,9,7,221,228],[298,3,3,228,231],[300,1,1,231,232],[308,1,1,232,233],[310,2,2,233,235],[311,2,2,235,237]]],[11,17,16,237,253,[[313,1,1,237,238],[314,2,2,238,240],[316,2,1,240,241],[318,3,3,241,244],[321,3,3,244,247],[322,3,3,247,250],[331,1,1,250,251],[337,2,2,251,253]]],[12,73,63,253,316,[[341,1,1,253,254],[342,5,4,254,258],[344,7,6,258,264],[345,5,4,264,268],[346,6,5,268,273],[347,1,1,273,274],[348,7,6,274,280],[349,9,8,280,288],[351,1,1,288,289],[352,1,1,289,290],[353,2,2,290,292],[357,2,1,292,293],[360,9,9,293,302],[361,6,4,302,306],[363,7,6,306,312],[364,3,3,312,315],[366,1,1,315,316]]],[13,22,20,316,336,[[367,1,1,316,317],[369,2,2,317,319],[370,2,1,319,320],[371,2,2,320,322],[372,1,1,322,323],[377,1,1,323,324],[379,1,1,324,325],[385,2,2,325,327],[386,1,1,327,328],[389,1,1,328,329],[390,2,2,329,331],[391,2,1,331,332],[392,2,2,332,334],[394,1,1,334,335],[397,1,1,335,336]]],[14,13,13,336,349,[[403,1,1,336,337],[404,1,1,337,338],[405,1,1,338,339],[406,2,2,339,341],[409,2,2,341,343],[410,3,3,343,346],[411,2,2,346,348],[412,1,1,348,349]]],[15,16,16,349,365,[[416,1,1,349,350],[419,2,2,350,352],[420,1,1,352,353],[421,1,1,353,354],[422,1,1,354,355],[423,4,4,355,359],[424,6,6,359,365]]],[16,5,5,365,370,[[427,1,1,365,366],[430,1,1,366,367],[431,2,2,367,369],[434,1,1,369,370]]],[17,13,13,370,383,[[436,2,2,370,372],[437,1,1,372,373],[445,1,1,373,374],[447,1,1,374,375],[451,1,1,375,376],[454,1,1,376,377],[455,1,1,377,378],[457,1,1,378,379],[459,1,1,379,380],[464,2,2,380,382],[476,1,1,382,383]]],[18,33,32,383,415,[[480,1,1,383,384],[484,1,1,384,385],[495,1,1,385,386],[498,1,1,386,387],[499,1,1,387,388],[500,1,1,388,389],[501,2,2,389,391],[504,1,1,391,392],[515,1,1,392,393],[517,1,1,393,394],[521,1,1,394,395],[537,1,1,395,396],[543,1,1,396,397],[545,1,1,397,398],[546,1,1,398,399],[549,1,1,399,400],[551,2,2,400,402],[560,1,1,402,403],[585,1,1,403,404],[586,1,1,404,405],[587,2,2,405,407],[595,1,1,407,408],[596,1,1,408,409],[610,1,1,409,410],[614,1,1,410,411],[616,1,1,411,412],[617,2,2,412,414],[618,2,1,414,415]]],[19,10,10,415,425,[[628,2,2,415,417],[631,1,1,417,418],[635,3,3,418,421],[637,1,1,421,422],[638,1,1,422,423],[650,1,1,423,424],[652,1,1,424,425]]],[20,3,3,425,428,[[660,1,1,425,426],[661,1,1,426,427],[667,1,1,427,428]]],[21,9,7,428,435,[[672,1,1,428,429],[674,3,2,429,431],[675,2,2,431,433],[677,2,1,433,434],[678,1,1,434,435]]],[22,28,26,435,461,[[679,2,2,435,437],[680,1,1,437,438],[685,5,3,438,441],[687,2,2,441,443],[693,1,1,443,444],[695,1,1,444,445],[697,1,1,445,446],[706,2,2,446,448],[707,1,1,448,449],[708,1,1,449,450],[713,1,1,450,451],[715,1,1,451,452],[718,1,1,452,453],[719,2,2,453,455],[720,1,1,455,456],[726,1,1,456,457],[729,2,2,457,459],[736,1,1,459,460],[737,1,1,460,461]]],[23,13,13,461,474,[[746,1,1,461,462],[753,1,1,462,463],[757,1,1,463,464],[758,2,2,464,466],[762,1,1,466,467],[766,1,1,467,468],[767,1,1,468,469],[774,1,1,469,470],[775,1,1,470,471],[792,1,1,471,472],[796,2,2,472,474]]],[24,9,7,474,481,[[797,1,1,474,475],[798,5,3,475,478],[799,1,1,478,479],[800,1,1,479,480],[801,1,1,480,481]]],[25,40,38,481,519,[[802,4,3,481,484],[806,1,1,484,485],[807,1,1,485,486],[808,1,1,486,487],[809,1,1,487,488],[810,1,1,488,489],[811,2,2,489,491],[812,1,1,491,492],[814,1,1,492,493],[817,4,4,493,497],[818,3,3,497,500],[822,2,2,500,502],[823,1,1,502,503],[824,2,2,503,505],[825,1,1,505,506],[828,2,2,506,508],[830,1,1,508,509],[833,1,1,509,510],[834,1,1,510,511],[839,2,2,511,513],[840,1,1,513,514],[841,1,1,514,515],[843,1,1,515,516],[844,1,1,516,517],[845,3,2,517,519]]],[26,1,1,519,520,[[850,1,1,519,520]]],[27,2,2,520,522,[[862,1,1,520,521],[865,1,1,521,522]]],[28,3,3,522,525,[[877,1,1,522,523],[878,2,2,523,525]]],[29,6,6,525,531,[[879,1,1,525,526],[880,1,1,526,527],[884,1,1,527,528],[886,1,1,528,529],[887,2,2,529,531]]],[30,1,1,531,532,[[888,1,1,531,532]]],[31,3,3,532,535,[[890,1,1,532,533],[892,2,2,533,535]]],[32,5,5,535,540,[[894,1,1,535,536],[895,3,3,536,539],[896,1,1,539,540]]],[33,1,1,540,541,[[902,1,1,540,541]]],[34,2,2,541,543,[[905,2,2,541,543]]],[37,6,4,543,547,[[911,1,1,543,544],[913,2,1,544,545],[914,2,1,545,546],[916,1,1,546,547]]]],[40,70,188,270,785,791,1185,1188,1189,1191,1192,1451,1465,1468,1469,1499,1669,1680,1818,1825,1992,1993,2024,2046,2194,2259,2325,2342,2343,2346,2351,2353,2355,2394,2405,2498,2595,2604,2650,2652,2661,2749,2753,2757,2760,2780,2786,2791,2799,2806,2810,2819,2824,2828,2838,2854,2926,2929,2931,2935,2937,2939,2966,2983,3064,3081,3082,3092,3093,3096,3097,3120,3129,3140,3222,3308,3350,3355,3460,3606,3608,3620,3653,3745,3765,3799,3810,3828,3830,3832,3834,3841,3852,3951,3992,3998,4078,4112,4148,4152,4247,4339,4360,4425,4430,4444,4475,4486,4491,4588,4649,4690,4713,4746,4880,4905,4907,5002,5076,5436,5459,5624,5634,5655,5689,5800,5815,5825,5826,5831,5840,5888,5982,6117,6188,6210,6211,6372,6382,6440,6447,6456,6462,6477,6649,6653,6680,6710,6713,6714,6719,6747,6761,6779,6788,6790,6791,6797,6798,6807,6811,6829,6837,6838,6840,6889,6952,6962,6966,6968,6971,7223,7309,7323,7413,7419,7456,7502,7503,7553,7577,7623,7656,7664,7669,7672,7675,7900,7918,7944,7971,8018,8024,8032,8038,8065,8074,8089,8110,8127,8128,8132,8156,8316,8336,8382,8419,8421,8427,8435,8487,8575,8576,8646,8661,8666,8671,8802,8803,8807,8814,8950,8951,8952,8953,8956,8969,8975,8986,8993,9017,9098,9383,9439,9440,9460,9463,9542,9554,9556,9622,9699,9705,9706,9759,9762,9786,9799,9800,9801,10082,10240,10249,10427,10435,10440,10443,10452,10537,10538,10542,10544,10546,10575,10581,10585,10588,10603,10624,10628,10632,10648,10649,10668,10679,10683,10684,10688,10693,10715,10723,10729,10734,10738,10739,10740,10743,10752,10789,10803,10825,10827,10928,10991,10992,10994,10999,11000,11001,11002,11003,11007,11019,11021,11036,11046,11087,11089,11098,11103,11108,11109,11110,11112,11114,11175,11196,11244,11245,11258,11270,11277,11305,11436,11465,11584,11587,11614,11658,11683,11688,11716,11744,11752,11776,11864,12021,12095,12109,12112,12113,12178,12201,12202,12217,12218,12240,12243,12268,12363,12490,12491,12506,12528,12563,12591,12601,12604,12605,12631,12636,12646,12647,12648,12670,12741,12781,12801,12805,12859,12886,12889,12903,13101,13152,13242,13306,13332,13401,13460,13535,13557,13895,13960,14011,14161,14194,14211,14240,14248,14250,14291,14494,14537,14585,14814,14885,14921,14939,15016,15061,15062,15243,15750,15780,15792,15793,15891,16058,16171,16228,16256,16270,16272,16281,16409,16421,16499,16604,16625,16628,16662,16714,17078,17135,17347,17370,17483,17560,17590,17596,17600,17609,17632,17643,17659,17660,17687,17790,17791,17802,17843,17844,17962,17989,18019,18165,18168,18203,18234,18330,18374,18441,18455,18477,18491,18630,18684,18693,18791,18817,19002,19176,19287,19296,19297,19400,19460,19503,19690,19698,20117,20300,20307,20315,20342,20347,20351,20408,20421,20458,20486,20489,20490,20547,20576,20595,20607,20632,20634,20644,20676,20726,20774,20787,20793,20805,20829,20844,20847,20963,20965,21007,21022,21049,21079,21143,21151,21201,21275,21284,21427,21428,21449,21478,21564,21584,21617,21619,21747,22105,22146,22316,22347,22350,22366,22386,22457,22491,22496,22498,22525,22553,22574,22576,22608,22609,22617,22619,22621,22722,22781,22782,22899,22917,22924,22958]]],["+",[25,24,[[2,1,1,0,1,[[102,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[4,2,2,2,4,[[184,1,1,2,3],[185,1,1,3,4]]],[5,1,1,4,5,[[201,1,1,4,5]]],[6,1,1,5,6,[[219,1,1,5,6]]],[9,2,2,6,8,[[270,1,1,6,7],[282,1,1,7,8]]],[13,3,3,8,11,[[385,1,1,8,9],[391,1,1,9,10],[394,1,1,10,11]]],[14,1,1,11,12,[[404,1,1,11,12]]],[15,2,2,12,14,[[419,1,1,12,13],[423,1,1,13,14]]],[19,1,1,14,15,[[635,1,1,14,15]]],[20,1,1,15,16,[[661,1,1,15,16]]],[21,3,2,16,18,[[674,2,1,16,17],[675,1,1,17,18]]],[22,5,5,18,23,[[718,1,1,18,19],[719,2,2,19,21],[720,1,1,21,22],[726,1,1,22,23]]],[25,1,1,23,24,[[818,1,1,23,24]]]],[3064,4425,5800,5825,6211,6790,8127,8427,11584,11716,11776,12095,12491,12604,16625,17370,17590,17600,18441,18455,18477,18491,18630,20847]]],["bands",[2,2,[[12,1,1,0,1,[[349,1,1,0,1]]],[17,1,1,1,2,[[436,1,1,1,2]]]],[10743,12886]]],["beginning",[5,5,[[1,1,1,0,1,[[61,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[24,1,1,3,4,[[798,1,1,3,4]]],[25,1,1,4,5,[[841,1,1,4,5]]]],[1818,6713,16058,20351,21478]]],["beginnings",[2,2,[[3,2,2,0,2,[[126,1,1,0,1],[144,1,1,1,2]]]],[3998,4588]]],["captain",[4,4,[[3,1,1,0,1,[[130,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]],[13,1,1,2,3,[[379,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]]],[4112,10715,11465,12528]]],["captains",[6,6,[[4,1,1,0,1,[[181,1,1,0,1]]],[12,5,5,1,6,[[341,1,1,1,2],[348,1,1,2,3],[349,3,3,3,6]]]],[5689,10427,10688,10734,10738,10740]]],["chapiters",[4,4,[[1,4,4,0,4,[[85,1,1,0,1],[87,3,3,1,4]]]],[2604,2650,2652,2661]]],["chief",[89,85,[[3,4,3,0,3,[[147,1,1,0,1],[148,1,1,1,2],[152,2,1,2,3]]],[4,1,1,3,4,[[153,1,1,3,4]]],[9,3,3,4,7,[[289,3,3,4,7]]],[11,1,1,7,8,[[337,1,1,7,8]]],[12,40,37,8,45,[[342,3,3,8,11],[344,2,2,11,13],[345,1,1,13,14],[346,5,4,14,18],[348,5,4,18,22],[349,2,2,22,24],[352,1,1,24,25],[353,1,1,25,26],[360,7,7,26,33],[361,3,3,33,36],[363,7,6,36,42],[364,3,3,42,45]]],[13,8,8,45,53,[[367,1,1,45,46],[377,1,1,46,47],[385,1,1,47,48],[389,1,1,48,49],[390,1,1,49,50],[392,2,2,50,52],[397,1,1,52,53]]],[14,8,8,53,61,[[403,1,1,53,54],[405,1,1,54,55],[406,2,2,55,57],[409,1,1,57,58],[410,2,2,58,60],[412,1,1,60,61]]],[15,11,11,61,72,[[419,1,1,61,62],[420,1,1,62,63],[422,1,1,63,64],[423,2,2,64,66],[424,6,6,66,72]]],[17,2,2,72,74,[[447,1,1,72,73],[464,1,1,73,74]]],[18,1,1,74,75,[[614,1,1,74,75]]],[19,1,1,75,76,[[628,1,1,75,76]]],[21,1,1,76,77,[[674,1,1,76,77]]],[23,3,3,77,80,[[757,1,1,77,78],[775,1,1,78,79],[796,1,1,79,80]]],[24,1,1,80,81,[[797,1,1,80,81]]],[25,4,4,81,85,[[828,1,1,81,82],[839,2,2,82,84],[840,1,1,84,85]]]],[4690,4746,4880,4907,8661,8666,8671,10240,10435,10440,10443,10538,10575,10603,10624,10632,10648,10649,10679,10683,10684,10693,10723,10738,10803,10825,10991,10992,10994,10999,11000,11001,11007,11019,11021,11046,11087,11089,11098,11103,11108,11109,11110,11112,11114,11196,11436,11587,11658,11683,11744,11752,11864,12021,12109,12112,12113,12178,12202,12218,12268,12490,12506,12563,12591,12601,12631,12636,12646,12647,12648,12670,13152,13557,16228,16421,17596,19287,19698,20300,20315,21143,21427,21428,21449]]],["chiefest",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7413]]],["companies",[7,7,[[6,5,5,0,5,[[217,2,2,0,2],[219,3,3,2,5]]],[8,2,2,5,7,[[246,1,1,5,6],[248,1,1,6,7]]]],[6710,6714,6788,6797,6798,7456,7502]]],["company",[5,4,[[6,2,2,0,2,[[219,2,2,0,2]]],[8,3,2,2,4,[[248,3,2,2,4]]]],[6791,6798,7502,7503]]],["ends",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[371,1,1,1,2]]]],[8993,11277]]],["every",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6653]]],["excellent",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16281]]],["first",[6,6,[[12,5,5,0,5,[[349,1,1,0,1],[353,1,1,1,2],[360,2,2,2,4],[361,1,1,4,5]]],[29,1,1,5,6,[[884,1,1,5,6]]]],[10729,10827,11002,11003,11036,22457]]],["forefront",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11614]]],["head",[262,241,[[0,14,11,0,11,[[2,1,1,0,1],[39,5,5,1,6],[46,1,1,6,7],[47,6,3,7,10],[48,1,1,10,11]]],[1,9,9,11,20,[[61,1,1,11,12],[75,1,1,12,13],[78,6,6,13,19],[85,1,1,19,20]]],[2,36,34,20,54,[[90,4,4,20,24],[92,3,3,24,27],[93,6,6,27,33],[94,1,1,33,34],[97,6,6,34,40],[98,1,1,40,41],[102,6,6,41,47],[103,3,3,47,50],[105,2,1,50,51],[110,3,2,51,53],[113,1,1,53,54]]],[3,12,9,54,63,[[117,1,1,54,55],[121,1,1,55,56],[122,8,5,56,61],[133,1,1,61,62],[141,1,1,62,63]]],[4,5,5,63,68,[[173,1,1,63,64],[180,3,3,64,67],[185,1,1,67,68]]],[5,4,3,68,71,[[188,2,1,68,69],[197,1,1,69,70],[208,1,1,70,71]]],[6,11,11,71,82,[[215,1,1,71,72],[219,1,1,72,73],[220,1,1,73,74],[221,3,3,74,77],[223,1,1,77,78],[226,4,4,78,82]]],[8,15,15,82,97,[[236,1,1,82,83],[239,1,1,83,84],[240,1,1,84,85],[245,1,1,85,86],[249,1,1,86,87],[250,1,1,87,88],[252,6,6,88,94],[260,1,1,94,95],[263,1,1,95,96],[266,1,1,96,97]]],[9,24,19,97,116,[[267,3,3,97,100],[268,1,1,100,101],[269,2,2,101,103],[270,4,3,103,106],[278,2,1,106,107],[279,2,1,107,108],[280,2,1,108,109],[281,3,2,109,111],[282,1,1,111,112],[284,1,1,112,113],[286,2,2,113,115],[288,1,1,115,116]]],[10,6,5,116,121,[[292,5,4,116,120],[298,1,1,120,121]]],[11,12,11,121,132,[[314,2,2,121,123],[316,2,1,123,124],[318,3,3,124,127],[321,3,3,127,130],[331,1,1,130,131],[337,1,1,131,132]]],[12,4,3,132,135,[[347,1,1,132,133],[357,2,1,133,134],[366,1,1,134,135]]],[13,1,1,135,136,[[372,1,1,135,136]]],[14,2,2,136,138,[[411,2,2,136,138]]],[15,1,1,138,139,[[416,1,1,138,139]]],[16,4,4,139,143,[[427,1,1,139,140],[431,2,2,140,142],[434,1,1,142,143]]],[17,7,7,143,150,[[436,1,1,143,144],[445,1,1,144,145],[451,1,1,145,146],[454,1,1,146,147],[455,1,1,147,148],[464,1,1,148,149],[476,1,1,149,150]]],[18,21,21,150,171,[[480,1,1,150,151],[484,1,1,151,152],[495,1,1,152,153],[498,1,1,153,154],[499,1,1,154,155],[500,1,1,155,156],[504,1,1,156,157],[515,1,1,157,158],[517,1,1,158,159],[521,1,1,159,160],[537,1,1,160,161],[545,1,1,161,162],[546,1,1,162,163],[560,1,1,163,164],[585,1,1,164,165],[587,1,1,165,166],[595,1,1,166,167],[610,1,1,167,168],[617,2,2,168,170],[618,1,1,170,171]]],[19,5,5,171,176,[[628,1,1,171,172],[631,1,1,172,173],[637,1,1,173,174],[638,1,1,174,175],[652,1,1,175,176]]],[20,2,2,176,178,[[660,1,1,176,177],[667,1,1,177,178]]],[21,5,4,178,182,[[672,1,1,178,179],[675,1,1,179,180],[677,2,1,180,181],[678,1,1,181,182]]],[22,17,15,182,197,[[679,2,2,182,184],[685,5,3,184,187],[687,2,2,187,189],[697,1,1,189,190],[706,2,2,190,192],[715,1,1,192,193],[729,2,2,193,195],[736,1,1,195,196],[737,1,1,196,197]]],[23,8,8,197,205,[[746,1,1,197,198],[753,1,1,198,199],[762,1,1,199,200],[766,1,1,200,201],[767,1,1,201,202],[774,1,1,202,203],[792,1,1,203,204],[796,1,1,204,205]]],[24,3,3,205,208,[[798,1,1,205,206],[799,1,1,206,207],[801,1,1,207,208]]],[25,16,16,208,224,[[806,1,1,208,209],[809,1,1,209,210],[810,1,1,210,211],[811,2,2,211,213],[814,1,1,213,214],[817,4,4,214,218],[818,1,1,218,219],[822,2,2,219,221],[830,1,1,221,222],[834,1,1,222,223],[843,1,1,223,224]]],[26,1,1,224,225,[[850,1,1,224,225]]],[27,1,1,225,226,[[862,1,1,225,226]]],[28,2,2,226,228,[[878,2,2,226,228]]],[29,3,3,228,231,[[880,1,1,228,229],[886,1,1,229,230],[887,1,1,230,231]]],[30,1,1,231,232,[[888,1,1,231,232]]],[31,3,3,232,235,[[890,1,1,232,233],[892,2,2,233,235]]],[32,1,1,235,236,[[894,1,1,235,236]]],[34,2,2,236,238,[[905,2,2,236,238]]],[37,4,3,238,241,[[911,1,1,238,239],[913,2,1,239,240],[916,1,1,240,241]]]],[70,1185,1188,1189,1191,1192,1451,1465,1468,1469,1499,1825,2259,2342,2343,2346,2351,2353,2355,2595,2749,2753,2757,2760,2780,2786,2791,2799,2806,2810,2819,2824,2828,2838,2926,2929,2931,2935,2937,2939,2966,3081,3082,3092,3093,3096,3097,3120,3129,3140,3222,3350,3355,3460,3608,3810,3828,3830,3832,3834,3841,4247,4486,5459,5624,5634,5655,5826,5888,6117,6440,6649,6807,6829,6837,6838,6840,6889,6962,6966,6968,6971,7223,7309,7323,7419,7553,7577,7623,7656,7664,7669,7672,7675,7900,7944,8018,8024,8032,8038,8065,8089,8110,8127,8128,8132,8316,8336,8382,8419,8421,8435,8487,8575,8576,8646,8802,8803,8807,8814,9017,9554,9556,9622,9699,9705,9706,9759,9762,9786,10082,10249,10668,10928,11175,11305,12240,12243,12363,12741,12801,12805,12859,12889,13101,13242,13306,13332,13535,13895,13960,14011,14161,14194,14211,14240,14291,14494,14537,14585,14814,14921,14939,15243,15750,15793,15891,16171,16270,16272,16281,16409,16499,16662,16714,17135,17347,17483,17560,17609,17632,17643,17659,17660,17790,17791,17802,17843,17844,18019,18165,18168,18374,18684,18693,18791,18817,19002,19176,19400,19460,19503,19690,20117,20307,20347,20408,20458,20547,20607,20632,20634,20644,20726,20774,20787,20793,20805,20844,20963,20965,21201,21284,21564,21747,22105,22347,22350,22386,22491,22496,22525,22553,22574,22576,22608,22781,22782,22899,22917,22958]]],["heads",[84,79,[[0,1,1,0,1,[[1,1,1,0,1]]],[1,3,3,1,4,[[55,2,2,1,3],[67,1,1,3,4]]],[2,2,2,4,6,[[99,1,1,4,5],[108,1,1,5,6]]],[3,7,7,6,13,[[117,1,1,6,7],[123,1,1,7,8],[124,1,1,8,9],[126,1,1,9,10],[129,1,1,10,11],[141,1,1,11,12],[146,1,1,12,13]]],[4,4,4,13,17,[[153,1,1,13,14],[157,1,1,14,15],[185,2,2,15,17]]],[5,9,8,17,25,[[193,1,1,17,18],[200,1,1,18,19],[205,1,1,19,20],[207,2,1,20,21],[208,2,2,21,23],[209,1,1,23,24],[210,1,1,24,25]]],[6,3,3,25,28,[[217,1,1,25,26],[218,1,1,26,27],[219,1,1,27,28]]],[8,1,1,28,29,[[264,1,1,28,29]]],[10,3,3,29,32,[[298,1,1,29,30],[310,2,2,30,32]]],[11,3,3,32,35,[[322,3,3,32,35]]],[12,14,13,35,48,[[342,2,1,35,36],[344,5,5,36,41],[345,4,4,41,45],[346,1,1,45,46],[349,2,2,46,48]]],[13,2,2,48,50,[[369,1,1,48,49],[371,1,1,49,50]]],[17,1,1,50,51,[[437,1,1,50,51]]],[18,7,7,51,58,[[501,2,2,51,53],[543,1,1,53,54],[551,2,2,54,56],[586,1,1,56,57],[587,1,1,57,58]]],[22,2,2,58,60,[[693,1,1,58,59],[713,1,1,59,60]]],[23,2,2,60,62,[[758,2,2,60,62]]],[24,2,1,62,63,[[798,2,1,62,63]]],[25,15,13,63,76,[[802,4,3,63,66],[808,1,1,66,67],[812,1,1,67,68],[823,1,1,68,69],[824,2,2,69,71],[825,1,1,71,72],[828,1,1,72,73],[833,1,1,73,74],[845,3,2,74,76]]],[32,3,3,76,79,[[895,3,3,76,79]]]],[40,1669,1680,2024,2983,3308,3620,3852,3951,3992,4078,4475,4649,4907,5076,5815,5831,5982,6188,6372,6382,6447,6456,6462,6477,6719,6747,6811,7971,8986,9439,9440,9799,9800,9801,10452,10537,10542,10544,10546,10575,10581,10585,10588,10603,10628,10739,10752,11245,11270,12903,14248,14250,14885,15061,15062,15780,15792,17962,18330,19296,19297,20342,20486,20489,20490,20595,20676,21007,21022,21049,21079,21151,21275,21617,21619,22609,22617,22619]]],["height",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13401]]],["high",[3,3,[[10,2,2,0,2,[[311,2,2,0,2]]],[13,1,1,2,3,[[390,1,1,2,3]]]],[9460,9463,11688]]],["lead",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5436]]],["men",[3,3,[[12,1,1,0,1,[[361,1,1,0,1]]],[14,2,2,1,3,[[409,1,1,1,2],[410,1,1,2,3]]]],[11019,12201,12217]]],["part",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16628]]],["principal",[5,5,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,1,1,1,2,[[95,1,1,1,2]]],[3,1,1,2,3,[[121,1,1,2,3]]],[12,1,1,3,4,[[361,1,1,3,4]]],[15,1,1,4,5,[[423,1,1,4,5]]]],[2405,2854,3799,11046,12605]]],["rulers",[2,2,[[4,1,1,0,1,[[153,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]]],[4905,18203]]],["sum",[9,9,[[1,1,1,0,1,[[79,1,1,0,1]]],[3,7,7,1,8,[[117,2,2,1,3],[120,2,2,3,5],[142,1,1,5,6],[147,2,2,6,8]]],[18,1,1,8,9,[[616,1,1,8,9]]]],[2394,3606,3653,3745,3765,4491,4690,4713,16256]]],["top",[58,53,[[0,3,3,0,3,[[10,1,1,0,1],[27,2,2,1,3]]],[1,7,6,3,9,[[66,2,2,3,5],[68,2,1,5,6],[73,1,1,6,7],[77,1,1,7,8],[83,1,1,8,9]]],[3,6,6,9,15,[[130,2,2,9,11],[136,1,1,11,12],[137,1,1,12,13],[139,2,2,13,15]]],[4,2,2,15,17,[[155,1,1,15,16],[186,1,1,16,17]]],[5,1,1,17,18,[[201,1,1,17,18]]],[6,4,4,18,22,[[216,1,1,18,19],[219,2,2,19,21],[226,1,1,21,22]]],[8,1,1,22,23,[[261,1,1,22,23]]],[9,2,2,23,25,[[268,1,1,23,24],[281,1,1,24,25]]],[10,10,8,25,33,[[297,8,6,25,31],[300,1,1,31,32],[308,1,1,32,33]]],[11,1,1,33,34,[[313,1,1,33,34]]],[13,4,3,34,37,[[369,1,1,34,35],[370,2,1,35,36],[391,1,1,36,37]]],[16,1,1,37,38,[[430,1,1,37,38]]],[18,1,1,38,39,[[549,1,1,38,39]]],[19,2,2,39,41,[[635,1,1,39,40],[650,1,1,40,41]]],[22,3,3,41,44,[[680,1,1,41,42],[695,1,1,42,43],[708,1,1,43,44]]],[24,2,2,44,46,[[798,1,1,44,45],[800,1,1,45,46]]],[25,2,2,46,48,[[818,1,1,46,47],[844,1,1,47,48]]],[29,2,2,48,50,[[879,1,1,48,49],[887,1,1,49,50]]],[32,1,1,50,51,[[896,1,1,50,51]]],[33,1,1,51,52,[[902,1,1,51,52]]],[37,2,1,52,53,[[914,2,1,52,53]]]],[270,785,791,1992,1993,2046,2194,2325,2498,4148,4152,4339,4360,4430,4444,5002,5840,6210,6680,6761,6779,6952,7918,8074,8421,8951,8952,8953,8956,8969,8975,9098,9383,9542,11244,11258,11716,12781,15016,16604,17078,17687,17989,18234,20351,20421,20829,21584,22366,22498,22621,22722,22924]]],["tops",[8,8,[[0,1,1,0,1,[[7,1,1,0,1]]],[9,1,1,1,2,[[271,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[12,1,1,3,4,[[351,1,1,3,4]]],[17,1,1,4,5,[[459,1,1,4,5]]],[25,1,1,5,6,[[807,1,1,5,6]]],[27,1,1,6,7,[[865,1,1,6,7]]],[28,1,1,7,8,[[877,1,1,7,8]]]],[188,8156,8950,10789,13460,20576,22146,22316]]]]},{"k":"H7219","v":[["*",[12,12,[[4,3,3,0,3,[[181,1,1,0,1],[184,2,2,1,3]]],[17,1,1,3,4,[[455,1,1,3,4]]],[18,1,1,4,5,[[546,1,1,4,5]]],[23,3,3,5,8,[[752,1,1,5,6],[753,1,1,6,7],[767,1,1,7,8]]],[24,2,2,8,10,[[799,2,2,8,10]]],[27,1,1,10,11,[[871,1,1,10,11]]],[29,1,1,11,12,[[884,1,1,11,12]]]],[5697,5790,5791,13342,14956,19167,19190,19499,20359,20373,22229,22462]]],["gall",[9,9,[[4,2,2,0,2,[[181,1,1,0,1],[184,1,1,1,2]]],[18,1,1,2,3,[[546,1,1,2,3]]],[23,3,3,3,6,[[752,1,1,3,4],[753,1,1,4,5],[767,1,1,5,6]]],[24,2,2,6,8,[[799,2,2,6,8]]],[29,1,1,8,9,[[884,1,1,8,9]]]],[5697,5790,14956,19167,19190,19499,20359,20373,22462]]],["hemlock",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22229]]],["poison",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13342]]],["venom",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5791]]]]},{"k":"H7220","v":[["Rosh",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1407]]]]},{"k":"H7221","v":[["+",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21370]]]]},{"k":"H7222","v":[["+",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22929]]]]},{"k":"H7223","v":[["*",[182,174,[[0,10,10,0,10,[[7,1,1,0,1],[12,1,1,1,2],[24,1,1,2,3],[25,1,1,3,4],[27,1,1,4,5],[31,1,1,5,6],[32,1,1,6,7],[37,1,1,7,8],[39,1,1,8,9],[40,1,1,9,10]]],[1,11,9,10,19,[[53,1,1,10,11],[61,5,4,11,15],[83,3,2,15,17],[89,2,2,17,19]]],[2,9,9,19,28,[[93,1,1,19,20],[94,1,1,20,21],[98,1,1,21,22],[112,5,5,22,27],[115,1,1,27,28]]],[3,13,12,28,40,[[118,1,1,28,29],[122,1,1,29,30],[123,1,1,30,31],[125,2,2,31,33],[126,2,2,33,35],[136,1,1,35,36],[137,1,1,36,37],[144,2,2,37,39],[149,2,1,39,40]]],[4,12,12,40,52,[[156,1,1,40,41],[161,1,1,41,42],[162,5,5,42,47],[165,1,1,47,48],[168,1,1,48,49],[169,1,1,49,50],[171,1,1,50,51],[176,1,1,51,52]]],[5,5,5,52,57,[[190,1,1,52,53],[194,3,3,53,56],[207,1,1,56,57]]],[6,4,4,57,61,[[228,1,1,57,58],[230,3,3,58,61]]],[7,1,1,61,62,[[234,1,1,61,62]]],[8,2,2,62,64,[[249,1,1,62,63],[252,1,1,63,64]]],[9,6,6,64,70,[[273,1,1,64,65],[284,1,1,65,66],[285,2,2,66,68],[286,1,1,68,69],[287,1,1,69,70]]],[10,5,5,70,75,[[303,1,1,70,71],[307,1,1,71,72],[308,1,1,72,73],[310,2,2,73,75]]],[11,3,3,75,78,[[313,1,1,75,76],[329,2,2,76,78]]],[12,13,11,78,89,[[346,1,1,78,79],[348,2,1,79,80],[349,1,1,80,81],[352,1,1,81,82],[354,1,1,82,83],[355,1,1,83,84],[361,1,1,84,85],[362,1,1,85,86],[364,3,2,86,88],[366,1,1,88,89]]],[13,16,14,89,103,[[369,1,1,89,90],[375,1,1,90,91],[378,1,1,91,92],[382,1,1,92,93],[383,1,1,93,94],[386,1,1,94,95],[388,1,1,95,96],[391,1,1,96,97],[392,1,1,97,98],[394,1,1,98,99],[395,4,2,99,101],[401,2,2,101,103]]],[14,6,6,103,109,[[405,1,1,103,104],[408,1,1,104,105],[409,1,1,105,106],[410,1,1,106,107],[411,1,1,107,108],[412,1,1,108,109]]],[15,3,3,109,112,[[417,1,1,109,110],[419,1,1,110,111],[420,1,1,111,112]]],[16,3,3,112,115,[[426,1,1,112,113],[428,2,2,113,115]]],[17,2,2,115,117,[[443,1,1,115,116],[450,1,1,116,117]]],[18,2,2,117,119,[[556,1,1,117,118],[566,1,1,118,119]]],[19,2,2,119,121,[[645,1,1,119,120],[647,1,1,120,121]]],[20,2,2,121,123,[[659,1,1,121,122],[665,1,1,122,123]]],[22,19,19,123,142,[[679,1,1,123,124],[687,1,1,124,125],[719,3,3,125,128],[720,1,1,128,129],[721,3,3,129,132],[722,1,1,132,133],[724,1,1,133,134],[726,2,2,134,136],[730,1,1,136,137],[738,1,1,137,138],[739,1,1,138,139],[743,3,3,139,142]]],[23,10,9,142,151,[[751,1,1,142,143],[755,1,1,143,144],[760,1,1,144,145],[761,1,1,145,146],[777,2,2,146,148],[778,1,1,148,149],[780,2,1,149,150],[794,1,1,150,151]]],[25,5,5,151,156,[[830,1,1,151,152],[831,1,1,152,153],[841,1,1,153,154],[846,2,2,154,156]]],[26,6,6,156,162,[[857,1,1,156,157],[859,3,3,157,160],[860,2,2,160,162]]],[27,1,1,162,163,[[863,1,1,162,163]]],[28,1,1,163,164,[[877,1,1,163,164]]],[32,1,1,164,165,[[896,1,1,164,165]]],[36,2,2,165,167,[[910,2,2,165,167]]],[37,7,7,167,174,[[911,1,1,167,168],[916,1,1,168,169],[917,2,2,169,171],[918,1,1,171,172],[922,1,1,172,173],[924,1,1,173,174]]]],[196,322,683,693,792,945,962,1147,1185,1215,1609,1818,1831,1832,1834,2497,2500,2709,2724,2816,2838,2968,3407,3409,3437,3441,3442,3569,3667,3835,3862,3966,3970,4001,4002,4312,4366,4593,4595,4763,5036,5175,5187,5188,5189,5190,5196,5281,5346,5371,5420,5529,5929,6007,6008,6035,6391,7022,7076,7086,7093,7182,7522,7648,8190,8505,8531,8554,8572,8589,9190,9330,9366,9417,9425,9547,10017,10023,10617,10679,10735,10804,10872,10907,11022,11055,11111,11112,11193,11232,11393,11452,11520,11526,11621,11645,11730,11754,11790,11794,11808,11967,11993,12109,12170,12182,12232,12239,12269,12397,12425,12511,12716,12754,12759,13037,13210,15193,15375,16918,16975,17326,17439,17680,17830,18455,18473,18478,18489,18514,18523,18532,18539,18595,18617,18626,18700,18830,18847,18904,18913,18914,19131,19236,19354,19369,19782,19786,19806,19870,20183,21200,21224,21498,21648,21651,21982,22019,22027,22028,22049,22065,22112,22334,22628,22858,22864,22882,22949,22969,22974,22987,23052,23078]]],["+",[6,6,[[1,1,1,0,1,[[61,1,1,0,1]]],[12,2,2,1,3,[[348,1,1,1,2],[352,1,1,2,3]]],[20,1,1,3,4,[[665,1,1,3,4]]],[23,2,2,4,6,[[755,1,1,4,5],[761,1,1,5,6]]]],[1831,10679,10804,17439,19236,19369]]],["aforetime",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18700]]],["ancestors",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3569]]],["before",[3,3,[[3,1,1,0,1,[[122,1,1,0,1]]],[5,1,1,1,2,[[194,1,1,1,2]]],[10,1,1,2,3,[[303,1,1,2,3]]]],[3835,6035,9190]]],["beforetime",[1,1,[[9,1,1,0,1,[[273,1,1,0,1]]]],[8190]]],["beginning",[3,3,[[7,1,1,0,1,[[234,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]],[19,1,1,2,3,[[647,1,1,2,3]]]],[7182,10872,16975]]],["chief",[3,3,[[12,1,1,0,1,[[355,1,1,0,1]]],[14,1,1,1,2,[[411,1,1,1,2]]],[26,1,1,2,3,[[859,1,1,2,3]]]],[10907,12239,22028]]],["eldest",[1,1,[[13,1,1,0,1,[[388,1,1,0,1]]]],[11645]]],["first",[126,121,[[0,7,7,0,7,[[7,1,1,0,1],[12,1,1,1,2],[24,1,1,2,3],[25,1,1,3,4],[27,1,1,4,5],[37,1,1,5,6],[40,1,1,6,7]]],[1,10,9,7,16,[[53,1,1,7,8],[61,4,4,8,12],[83,3,2,12,14],[89,2,2,14,16]]],[2,8,8,16,24,[[93,1,1,16,17],[94,1,1,17,18],[98,1,1,18,19],[112,5,5,19,24]]],[3,11,10,24,34,[[118,1,1,24,25],[123,1,1,25,26],[125,2,2,26,28],[126,2,2,28,30],[136,1,1,30,31],[144,2,2,31,33],[149,2,1,33,34]]],[4,9,9,34,43,[[161,1,1,34,35],[162,5,5,35,40],[165,1,1,40,41],[168,1,1,41,42],[169,1,1,42,43]]],[5,4,4,43,47,[[190,1,1,43,44],[194,2,2,44,46],[207,1,1,46,47]]],[6,4,4,47,51,[[228,1,1,47,48],[230,3,3,48,51]]],[8,1,1,51,52,[[249,1,1,51,52]]],[9,3,3,52,55,[[285,2,2,52,54],[287,1,1,54,55]]],[10,4,4,55,59,[[307,1,1,55,56],[308,1,1,56,57],[310,2,2,57,59]]],[12,9,8,59,67,[[346,1,1,59,60],[348,1,1,60,61],[349,1,1,61,62],[361,1,1,62,63],[362,1,1,63,64],[364,3,2,64,66],[366,1,1,66,67]]],[13,15,13,67,80,[[369,1,1,67,68],[375,1,1,68,69],[378,1,1,69,70],[382,1,1,70,71],[383,1,1,71,72],[386,1,1,72,73],[391,1,1,73,74],[392,1,1,74,75],[394,1,1,75,76],[395,4,2,76,78],[401,2,2,78,80]]],[14,5,5,80,85,[[405,1,1,80,81],[408,1,1,81,82],[409,1,1,82,83],[410,1,1,83,84],[412,1,1,84,85]]],[15,2,2,85,87,[[419,1,1,85,86],[420,1,1,86,87]]],[16,3,3,87,90,[[426,1,1,87,88],[428,2,2,88,90]]],[17,1,1,90,91,[[450,1,1,90,91]]],[19,1,1,91,92,[[645,1,1,91,92]]],[22,8,8,92,100,[[679,1,1,92,93],[687,1,1,93,94],[719,2,2,94,96],[721,1,1,96,97],[722,1,1,97,98],[726,1,1,98,99],[738,1,1,99,100]]],[23,6,6,100,106,[[751,1,1,100,101],[760,1,1,101,102],[777,2,2,102,104],[780,1,1,104,105],[794,1,1,105,106]]],[25,5,5,106,111,[[830,1,1,106,107],[831,1,1,107,108],[841,1,1,108,109],[846,2,2,109,111]]],[26,3,3,111,114,[[857,1,1,111,112],[859,2,2,112,114]]],[27,1,1,114,115,[[863,1,1,114,115]]],[28,1,1,115,116,[[877,1,1,115,116]]],[32,1,1,116,117,[[896,1,1,116,117]]],[36,1,1,117,118,[[910,1,1,117,118]]],[37,3,3,118,121,[[916,1,1,118,119],[922,1,1,119,120],[924,1,1,120,121]]]],[196,322,683,693,792,1147,1215,1609,1818,1831,1832,1834,2497,2500,2709,2724,2816,2838,2968,3407,3409,3437,3441,3442,3667,3862,3966,3970,4001,4002,4312,4593,4595,4763,5175,5187,5188,5189,5190,5196,5281,5346,5371,5929,6007,6008,6391,7022,7076,7086,7093,7522,8531,8554,8589,9330,9366,9417,9425,10617,10679,10735,11022,11055,11111,11112,11193,11232,11393,11452,11520,11526,11621,11730,11754,11790,11794,11808,11967,11993,12109,12170,12182,12232,12269,12425,12511,12716,12754,12759,13210,16918,17680,17830,18455,18478,18532,18539,18626,18830,19131,19354,19782,19786,19870,20183,21200,21224,21498,21648,21651,21982,22019,22027,22112,22334,22628,22858,22949,23052,23078]]],["foremost",[3,3,[[0,2,2,0,2,[[31,1,1,0,1],[32,1,1,1,2]]],[9,1,1,2,3,[[284,1,1,2,3]]]],[945,962,8505]]],["former",[25,25,[[0,1,1,0,1,[[39,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[4,1,1,2,3,[[176,1,1,2,3]]],[8,1,1,3,4,[[252,1,1,3,4]]],[11,3,3,4,7,[[313,1,1,4,5],[329,2,2,5,7]]],[15,1,1,7,8,[[417,1,1,7,8]]],[17,1,1,8,9,[[443,1,1,8,9]]],[18,2,2,9,11,[[556,1,1,9,10],[566,1,1,10,11]]],[20,1,1,11,12,[[659,1,1,11,12]]],[22,4,4,12,16,[[739,1,1,12,13],[743,3,3,13,16]]],[23,2,2,16,18,[[778,1,1,16,17],[780,1,1,17,18]]],[26,2,2,18,20,[[860,2,2,18,20]]],[36,1,1,20,21,[[910,1,1,20,21]]],[37,4,4,21,25,[[911,1,1,21,22],[917,2,2,22,24],[918,1,1,24,25]]]],[1185,4366,5529,7648,9547,10017,10023,12397,13037,15193,15375,17326,18847,18904,18913,18914,19806,19870,22049,22065,22864,22882,22969,22974,22987]]],["past",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5036]]],["things",[6,6,[[22,6,6,0,6,[[719,1,1,0,1],[720,1,1,1,2],[721,2,2,2,4],[724,1,1,4,5],[726,1,1,5,6]]]],[18473,18489,18514,18523,18595,18617]]],["time",[2,2,[[4,1,1,0,1,[[171,1,1,0,1]]],[9,1,1,1,2,[[286,1,1,1,2]]]],[5420,8572]]]]},{"k":"H7224","v":[["first",[1,1,[[23,1,1,0,1,[[769,1,1,0,1]]]],[19535]]]]},{"k":"H7225","v":[["*",[51,49,[[0,3,3,0,3,[[0,1,1,0,1],[9,1,1,1,2],[48,1,1,2,3]]],[1,2,2,3,5,[[72,1,1,3,4],[83,1,1,4,5]]],[2,2,2,5,7,[[91,1,1,5,6],[112,1,1,6,7]]],[3,4,4,7,11,[[131,2,2,7,9],[134,1,1,9,10],[140,1,1,10,11]]],[4,7,6,11,17,[[163,1,1,11,12],[170,2,1,12,13],[173,1,1,13,14],[178,2,2,14,16],[185,1,1,16,17]]],[8,2,2,17,19,[[237,1,1,17,18],[250,1,1,18,19]]],[13,1,1,19,20,[[397,1,1,19,20]]],[15,2,2,20,22,[[422,1,1,20,21],[424,1,1,21,22]]],[17,3,3,22,25,[[443,1,1,22,23],[475,1,1,23,24],[477,1,1,24,25]]],[18,3,3,25,28,[[555,1,1,25,26],[582,1,1,26,27],[588,1,1,27,28]]],[19,5,5,28,33,[[628,1,1,28,29],[630,1,1,29,30],[631,1,1,30,31],[635,1,1,31,32],[644,1,1,32,33]]],[20,1,1,33,34,[[665,1,1,33,34]]],[22,1,1,34,35,[[724,1,1,34,35]]],[23,6,6,35,41,[[746,1,1,35,36],[770,1,1,36,37],[771,1,1,37,38],[772,1,1,38,39],[793,2,2,39,41]]],[25,4,3,41,44,[[821,1,1,41,42],[845,2,1,42,43],[849,1,1,43,44]]],[26,1,1,44,45,[[860,1,1,44,45]]],[27,1,1,45,46,[[870,1,1,45,46]]],[29,2,2,46,48,[[884,2,2,46,48]]],[32,1,1,48,49,[[893,1,1,48,49]]]],[0,244,1476,2163,2522,2774,3412,4173,4174,4269,4466,5220,5388,5464,5568,5576,5831,7269,7581,11859,12586,12668,13036,13883,13934,15164,15642,15803,16407,16464,16497,16624,16887,17437,18596,18968,19573,19597,19619,20161,20162,20935,21629,21716,22077,22218,22451,22456,22592]]],["+",[9,9,[[3,1,1,0,1,[[131,1,1,0,1]]],[4,3,3,1,4,[[163,1,1,1,2],[178,2,2,2,4]]],[8,1,1,4,5,[[237,1,1,4,5]]],[17,1,1,5,6,[[477,1,1,5,6]]],[19,1,1,6,7,[[630,1,1,6,7]]],[20,1,1,7,8,[[665,1,1,7,8]]],[22,1,1,8,9,[[724,1,1,8,9]]]],[4174,5220,5568,5576,7269,13934,16464,17437,18596]]],["beginning",[14,14,[[0,3,3,0,3,[[0,1,1,0,1],[9,1,1,1,2],[48,1,1,2,3]]],[4,1,1,3,4,[[173,1,1,3,4]]],[17,1,1,4,5,[[443,1,1,4,5]]],[18,1,1,5,6,[[588,1,1,5,6]]],[19,3,3,6,9,[[628,1,1,6,7],[635,1,1,7,8],[644,1,1,8,9]]],[23,4,4,9,13,[[770,1,1,9,10],[771,1,1,10,11],[772,1,1,11,12],[793,1,1,12,13]]],[32,1,1,13,14,[[893,1,1,13,14]]]],[0,244,1476,5464,13036,15803,16407,16624,16887,19573,19597,19619,20161,22592]]],["chief",[8,8,[[8,1,1,0,1,[[250,1,1,0,1]]],[17,1,1,1,2,[[475,1,1,1,2]]],[18,2,2,2,4,[[555,1,1,2,3],[582,1,1,3,4]]],[23,1,1,4,5,[[793,1,1,4,5]]],[26,1,1,5,6,[[860,1,1,5,6]]],[29,2,2,6,8,[[884,2,2,6,8]]]],[7581,13883,15164,15642,20162,22077,22451,22456]]],["first",[7,6,[[1,2,2,0,2,[[72,1,1,0,1],[83,1,1,1,2]]],[3,2,2,2,4,[[131,1,1,2,3],[140,1,1,3,4]]],[4,1,1,4,5,[[170,1,1,4,5]]],[25,2,1,5,6,[[845,2,1,5,6]]]],[2163,2522,4173,4466,5388,21629]]],["firstfruit",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5388]]],["firstfruits",[9,9,[[2,2,2,0,2,[[91,1,1,0,1],[112,1,1,1,2]]],[3,1,1,2,3,[[134,1,1,2,3]]],[13,1,1,3,4,[[397,1,1,3,4]]],[15,2,2,4,6,[[422,1,1,4,5],[424,1,1,5,6]]],[23,1,1,6,7,[[746,1,1,6,7]]],[25,2,2,7,9,[[821,1,1,7,8],[849,1,1,8,9]]]],[2774,3412,4269,11859,12586,12668,18968,20935,21716]]],["part",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5831]]],["thing",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16497]]],["time",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22218]]]]},{"k":"H7226","v":[]},{"k":"H7227","v":[["*",[458,439,[[0,13,13,0,13,[[5,1,1,0,1],[6,1,1,1,2],[12,1,1,2,3],[20,1,1,3,4],[23,1,1,4,5],[24,1,1,5,6],[25,1,1,6,7],[29,1,1,7,8],[32,1,1,8,9],[35,1,1,9,10],[36,1,1,10,11],[44,1,1,11,12],[49,1,1,12,13]]],[1,10,9,13,22,[[50,1,1,13,14],[51,1,1,14,15],[54,1,1,15,16],[58,1,1,16,17],[61,1,1,17,18],[68,1,1,18,19],[72,3,2,19,21],[83,1,1,21,22]]],[2,2,2,22,24,[[104,1,1,22,23],[114,1,1,23,24]]],[3,17,17,24,41,[[125,1,1,24,25],[127,1,1,25,26],[129,1,1,26,27],[130,1,1,27,28],[132,2,2,28,30],[136,2,2,30,32],[137,1,1,32,33],[138,2,2,33,35],[140,1,1,35,36],[142,2,2,36,38],[148,1,1,38,39],[149,1,1,39,40],[151,1,1,40,41]]],[4,23,21,41,62,[[153,2,2,41,43],[154,4,4,43,47],[155,2,2,47,49],[159,3,2,49,51],[161,1,1,51,52],[167,2,1,52,53],[172,2,2,53,55],[177,1,1,55,56],[178,1,1,56,57],[180,2,2,57,59],[183,2,2,59,61],[185,1,1,61,62]]],[5,15,13,62,75,[[196,1,1,62,63],[197,4,3,63,66],[203,3,3,66,69],[205,2,2,69,71],[208,3,2,71,73],[209,1,1,73,74],[210,1,1,74,75]]],[6,5,5,75,80,[[217,2,2,75,77],[218,1,1,77,78],[219,1,1,78,79],[226,1,1,79,80]]],[8,5,5,80,85,[[237,1,1,80,81],[247,1,1,81,82],[249,2,2,82,84],[261,1,1,84,85]]],[9,8,8,85,93,[[269,1,1,85,86],[279,1,1,86,87],[280,1,1,87,88],[281,1,1,88,89],[288,1,1,89,90],[289,1,1,90,91],[290,2,2,91,93]]],[10,12,12,93,105,[[292,1,1,93,94],[293,2,2,94,96],[294,1,1,96,97],[295,1,1,97,98],[300,1,1,98,99],[301,1,1,99,100],[302,1,1,100,101],[308,2,2,101,103],[309,2,2,103,105]]],[11,10,10,105,115,[[318,1,1,105,106],[321,1,1,106,107],[324,1,1,107,108],[337,7,7,108,115]]],[12,10,10,115,125,[[341,1,1,115,116],[342,1,1,116,117],[344,1,1,117,118],[348,1,1,118,119],[355,1,1,119,120],[358,2,2,120,122],[359,1,1,122,123],[361,1,1,123,124],[365,1,1,124,125]]],[13,30,28,125,153,[[367,2,2,125,127],[379,2,2,127,129],[380,2,2,129,131],[381,2,2,131,133],[383,1,1,133,134],[386,4,4,134,138],[387,2,2,138,140],[390,2,2,140,142],[391,1,1,142,143],[392,2,1,143,144],[394,2,2,144,146],[396,3,3,146,149],[398,5,4,149,153]]],[14,4,3,153,156,[[405,2,1,153,154],[412,2,2,154,156]]],[15,11,11,156,167,[[417,1,1,156,157],[418,1,1,157,158],[419,1,1,158,159],[421,7,7,159,166],[425,1,1,166,167]]],[16,7,7,167,174,[[426,4,4,167,171],[427,1,1,171,172],[429,1,1,172,173],[433,1,1,173,174]]],[17,15,15,174,189,[[436,1,1,174,175],[439,1,1,175,176],[440,1,1,176,177],[446,1,1,177,178],[451,1,1,178,179],[457,1,1,179,180],[458,1,1,180,181],[466,2,2,181,183],[467,1,1,183,184],[470,1,1,184,185],[471,2,2,185,187],[473,1,1,187,188],[474,1,1,188,189]]],[18,57,57,189,246,[[480,2,2,189,191],[481,1,1,191,192],[495,1,1,192,193],[496,3,3,193,196],[499,2,2,196,198],[502,1,1,198,199],[506,1,1,199,200],[508,2,2,200,202],[509,2,2,202,204],[511,1,1,204,205],[512,1,1,205,206],[513,1,1,206,207],[514,1,1,207,208],[517,4,4,208,212],[525,1,1,212,213],[532,1,1,213,214],[533,1,1,214,215],[539,1,1,215,216],[542,1,1,216,217],[545,1,1,217,218],[548,2,2,218,220],[554,1,1,220,221],[555,1,1,221,222],[563,2,2,222,224],[566,2,2,224,226],[570,1,1,226,227],[574,1,1,227,228],[580,1,1,228,229],[583,1,1,229,230],[584,1,1,230,231],[586,1,1,231,232],[587,1,1,232,233],[596,4,4,233,237],[597,1,1,237,238],[600,2,2,238,240],[606,2,2,240,242],[612,1,1,242,243],[621,1,1,243,244],[622,1,1,244,245],[624,1,1,245,246]]],[19,20,20,246,266,[[634,1,1,246,247],[637,1,1,247,248],[640,1,1,248,249],[641,2,2,249,251],[642,2,2,251,253],[646,3,3,253,256],[649,1,1,256,257],[653,1,1,257,258],[655,5,5,258,263],[656,2,2,263,265],[658,1,1,265,266]]],[20,8,7,266,273,[[660,1,1,266,267],[664,3,2,267,269],[665,2,2,269,271],[666,1,1,271,272],[668,1,1,272,273]]],[21,1,1,273,274,[[678,1,1,273,274]]],[22,26,25,274,299,[[680,2,2,274,276],[683,1,1,276,277],[684,1,1,277,278],[686,2,2,278,280],[691,1,1,280,281],[694,1,1,281,282],[695,2,2,282,284],[697,1,1,284,285],[699,1,1,285,286],[701,1,1,286,287],[708,1,1,287,288],[709,1,1,288,289],[720,1,1,289,290],[729,1,1,290,291],[730,2,2,291,293],[731,3,2,293,295],[732,2,2,295,297],[741,2,2,297,299]]],[23,41,38,299,337,[[747,1,1,299,300],[755,1,1,300,301],[756,1,1,301,302],[757,2,2,302,304],[760,2,1,304,305],[764,1,1,305,306],[766,1,1,306,307],[769,1,1,307,308],[771,1,1,308,309],[772,1,1,309,310],[776,2,2,310,312],[779,1,1,312,313],[780,1,1,313,314],[781,1,1,314,315],[783,5,4,315,319],[784,3,3,319,322],[785,3,3,322,325],[787,1,1,325,326],[794,1,1,326,327],[795,3,2,327,329],[796,8,8,329,337]]],[24,4,3,337,340,[[797,3,2,337,339],[799,1,1,339,340]]],[25,47,44,340,384,[[802,1,1,340,341],[804,1,1,341,342],[813,1,1,342,343],[817,1,1,343,344],[818,7,6,344,350],[820,1,1,350,351],[823,1,1,351,352],[825,1,1,352,353],[827,3,3,353,356],[828,4,4,356,360],[832,4,4,360,364],[833,4,4,364,368],[834,1,1,368,369],[838,1,1,369,370],[839,9,7,370,377],[840,1,1,377,378],[844,1,1,378,379],[845,1,1,379,380],[846,1,1,380,381],[848,3,3,381,384]]],[26,24,23,384,407,[[850,1,1,384,385],[857,2,2,385,387],[858,2,2,387,389],[860,15,14,389,403],[861,4,4,403,407]]],[27,3,3,407,410,[[864,2,2,407,409],[870,1,1,409,410]]],[28,4,4,410,414,[[877,3,3,410,413],[878,1,1,413,414]]],[29,7,6,414,420,[[881,2,2,414,416],[883,1,1,416,417],[884,2,1,417,418],[885,1,1,418,419],[886,1,1,419,420]]],[31,3,3,420,423,[[889,1,1,420,421],[892,2,2,421,423]]],[32,6,6,423,429,[[896,4,4,423,427],[897,2,2,427,429]]],[33,1,1,429,430,[[900,1,1,429,430]]],[34,3,3,430,433,[[904,2,2,430,432],[905,1,1,432,433]]],[37,4,4,433,437,[[912,1,1,433,434],[918,2,2,434,436],[924,1,1,436,437]]],[38,2,2,437,439,[[926,2,2,437,439]]]],[142,170,324,547,616,681,706,873,969,1047,1117,1386,1526,1541,1577,1637,1770,1854,2047,2146,2173,2502,3193,3520,3984,4057,4093,4126,4197,4201,4322,4326,4346,4378,4390,4453,4543,4545,4719,4814,4853,4898,4938,4939,4941,4948,4959,4994,5001,5112,5128,5171,5325,5428,5446,5550,5571,5623,5649,5745,5749,5817,6075,6111,6115,6125,6289,6290,6292,6330,6349,6429,6434,6461,6483,6696,6698,6749,6794,6979,7245,7477,7514,7527,7918,8103,8351,8358,8401,8619,8673,8706,8708,8808,8824,8827,8864,8885,9081,9109,9179,9342,9366,9391,9394,9690,9778,9860,10230,10232,10233,10234,10237,10240,10242,10412,10450,10557,10695,10898,10947,10949,10972,11019,11148,11203,11205,11461,11470,11486,11489,11493,11495,11536,11589,11599,11602,11612,11627,11639,11688,11702,11717,11742,11772,11777,11840,11844,11845,11879,11882,11898,11904,12109,12253,12265,12384,12419,12422,12528,12530,12538,12539,12541,12542,12546,12697,12706,12709,12710,12722,12732,12765,12834,12872,12933,12976,13127,13240,13394,13433,13613,13622,13637,13729,13754,13764,13814,13845,13958,13959,13971,14134,14178,14179,14181,14216,14229,14262,14311,14344,14350,14361,14365,14407,14428,14444,14466,14528,14530,14534,14535,14636,14750,14757,14829,14869,14911,14983,14996,15112,15128,15289,15299,15333,15376,15430,15479,15557,15694,15722,15785,15792,16054,16055,16060,16063,16080,16101,16102,16133,16134,16185,16312,16327,16356,16601,16677,16754,16792,16801,16813,16823,16929,16931,16946,17016,17151,17198,17208,17212,17216,17223,17246,17250,17313,17354,17418,17420,17451,17458,17464,17499,17647,17688,17689,17748,17781,17814,17822,17910,17983,17995,17996,18024,18042,18080,18242,18251,18500,18683,18710,18711,18722,18723,18724,18736,18867,18873,19003,19241,19259,19272,19275,19352,19432,19462,19548,19603,19626,19745,19750,19830,19874,19890,19932,19933,19934,19936,19942,19943,19946,19958,19967,19969,20003,20207,20225,20267,20288,20290,20291,20292,20295,20300,20302,20306,20311,20332,20377,20488,20508,20707,20803,20830,20832,20833,20834,20840,20842,20891,20981,21068,21103,21107,21119,21124,21136,21147,21154,21235,21236,21237,21245,21251,21257,21258,21261,21304,21399,21429,21431,21433,21434,21440,21447,21448,21475,21574,21605,21639,21686,21688,21689,21740,21986,21987,22006,22015,22039,22041,22046,22047,22049,22050,22054,22062,22069,22070,22075,22076,22077,22080,22083,22084,22085,22091,22131,22132,22215,22313,22322,22324,22356,22404,22410,22435,22452,22468,22484,22537,22570,22579,22622,22623,22631,22633,22640,22641,22696,22756,22758,22783,22910,22996,22998,23081,23109,23111]]],["+",[16,16,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[8,1,1,3,4,[[249,1,1,3,4]]],[9,2,2,4,6,[[288,1,1,4,5],[289,1,1,5,6]]],[13,2,2,6,8,[[367,1,1,6,7],[381,1,1,7,8]]],[15,1,1,8,9,[[419,1,1,8,9]]],[18,1,1,9,10,[[495,1,1,9,10]]],[20,1,1,10,11,[[665,1,1,10,11]]],[25,1,1,11,12,[[833,1,1,11,12]]],[26,1,1,12,13,[[861,1,1,12,13]]],[31,1,1,13,14,[[889,1,1,13,14]]],[38,2,2,14,16,[[926,2,2,14,16]]]],[1526,1577,5649,7527,8619,8673,11205,11493,12422,14134,17451,21258,22084,22537,23109,23111]]],["Great",[3,3,[[17,1,1,0,1,[[467,1,1,0,1]]],[18,2,2,1,3,[[596,2,2,1,3]]]],[13637,16054,16063]]],["Many",[13,13,[[18,7,7,0,7,[[480,1,1,0,1],[499,1,1,1,2],[509,1,1,2,3],[511,1,1,3,4],[517,1,1,4,5],[583,1,1,5,6],[596,1,1,6,7]]],[19,3,3,7,10,[[646,1,1,7,8],[656,1,1,8,9],[658,1,1,9,10]]],[21,1,1,10,11,[[678,1,1,10,11]]],[23,1,1,11,12,[[756,1,1,11,12]]],[26,1,1,12,13,[[861,1,1,12,13]]]],[13959,14216,14365,14407,14530,15694,16055,16931,17250,17313,17647,19259,22091]]],["abound",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17216]]],["aboundeth",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17246]]],["abundance",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12709]]],["abundant",[2,2,[[1,1,1,0,1,[[83,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[2502,20225]]],["abundantly",[2,2,[[3,1,1,0,1,[[136,1,1,0,1]]],[17,1,1,1,2,[[471,1,1,1,2]]]],[4322,13764]]],["captain",[24,24,[[11,7,7,0,7,[[337,7,7,0,7]]],[23,17,17,7,24,[[783,4,4,7,11],[784,3,3,11,14],[785,1,1,14,15],[787,1,1,15,16],[796,8,8,16,24]]]],[10230,10232,10233,10234,10237,10240,10242,19932,19933,19934,19936,19942,19943,19946,19967,20003,20288,20290,20291,20292,20295,20300,20302,20306]]],["common",[1,1,[[20,1,1,0,1,[[664,1,1,0,1]]]],[17418]]],["elder",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[681]]],["enough",[9,9,[[0,3,3,0,3,[[23,1,1,0,1],[32,1,1,1,2],[44,1,1,2,3]]],[1,1,1,3,4,[[58,1,1,3,4]]],[4,2,2,4,6,[[153,1,1,4,5],[154,1,1,5,6]]],[9,1,1,6,7,[[290,1,1,6,7]]],[10,1,1,7,8,[[309,1,1,7,8]]],[12,1,1,8,9,[[358,1,1,8,9]]]],[616,969,1386,1770,4898,4941,8708,9391,10949]]],["exceedingly",[2,2,[[18,2,2,0,2,[[600,2,2,0,2]]]],[16101,16102]]],["full",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20311]]],["great",[116,116,[[0,3,3,0,3,[[5,1,1,0,1],[6,1,1,1,2],[12,1,1,2,3]]],[3,2,2,3,5,[[127,1,1,3,4],[130,1,1,4,5]]],[5,5,5,5,10,[[197,1,1,5,6],[203,3,3,6,9],[205,1,1,9,10]]],[8,2,2,10,12,[[247,1,1,10,11],[261,1,1,11,12]]],[9,2,2,12,14,[[269,1,1,12,13],[290,1,1,13,14]]],[10,3,3,14,17,[[293,1,1,14,15],[295,1,1,15,16],[309,1,1,16,17]]],[12,1,1,17,18,[[358,1,1,17,18]]],[13,10,10,18,28,[[379,2,2,18,20],[381,1,1,20,21],[386,3,3,21,24],[387,2,2,24,26],[390,1,1,26,27],[394,1,1,27,28]]],[14,1,1,28,29,[[412,1,1,28,29]]],[15,3,3,29,32,[[421,3,3,29,32]]],[16,1,1,32,33,[[426,1,1,32,33]]],[17,8,8,33,41,[[436,1,1,33,34],[440,1,1,34,35],[457,1,1,35,36],[466,2,2,36,38],[471,1,1,38,39],[473,1,1,39,40],[474,1,1,40,41]]],[18,21,21,41,62,[[496,2,2,41,43],[499,1,1,43,44],[502,1,1,44,45],[508,1,1,45,46],[509,1,1,46,47],[512,1,1,47,48],[513,1,1,48,49],[517,2,2,49,51],[525,1,1,51,52],[545,1,1,52,53],[548,1,1,53,54],[554,1,1,54,55],[555,1,1,55,56],[584,1,1,56,57],[596,1,1,57,58],[612,1,1,58,59],[621,1,1,59,60],[622,1,1,60,61],[624,1,1,61,62]]],[19,7,7,62,69,[[640,1,1,62,63],[641,1,1,63,64],[642,1,1,64,65],[649,1,1,65,66],[653,1,1,66,67],[655,2,2,67,69]]],[20,3,3,69,72,[[660,1,1,69,70],[666,1,1,70,71],[668,1,1,71,72]]],[22,9,9,72,81,[[684,1,1,72,73],[691,1,1,73,74],[694,1,1,74,75],[701,1,1,75,76],[708,1,1,76,77],[729,1,1,77,78],[731,1,1,78,79],[732,1,1,79,80],[741,1,1,80,81]]],[23,3,3,81,84,[[757,1,1,81,82],[785,1,1,82,83],[795,1,1,83,84]]],[24,2,2,84,86,[[797,1,1,84,85],[799,1,1,85,86]]],[25,13,13,86,99,[[802,1,1,86,87],[818,3,3,87,90],[825,1,1,90,91],[827,1,1,91,92],[828,1,1,92,93],[832,3,3,93,96],[833,1,1,96,97],[839,1,1,97,98],[848,1,1,98,99]]],[26,5,5,99,104,[[858,1,1,99,100],[860,4,4,100,104]]],[27,1,1,104,105,[[870,1,1,104,105]]],[28,4,4,105,109,[[877,3,3,105,108],[878,1,1,108,109]]],[29,4,4,109,113,[[881,2,2,109,111],[884,1,1,111,112],[885,1,1,112,113]]],[31,1,1,113,114,[[892,1,1,113,114]]],[34,1,1,114,115,[[905,1,1,114,115]]],[37,1,1,115,116,[[924,1,1,115,116]]]],[142,170,324,4057,4126,6115,6289,6290,6292,6349,7477,7918,8103,8706,8824,8885,9394,10947,11461,11470,11495,11589,11599,11602,11627,11639,11702,11777,12253,12528,12542,12546,12722,12872,12976,13394,13613,13622,13754,13814,13845,14179,14181,14229,14262,14350,14361,14428,14444,14534,14535,14636,14911,14996,15112,15128,15722,16060,16185,16312,16327,16356,16754,16801,16823,17016,17151,17208,17212,17354,17464,17499,17781,17910,17983,18080,18242,18683,18723,18736,18873,19275,19969,20267,20311,20377,20488,20830,20833,20842,21068,21119,21147,21236,21237,21245,21261,21429,21688,22006,22039,22041,22046,22047,22215,22313,22322,22324,22356,22404,22410,22452,22468,22570,22783,23081]]],["greater",[4,4,[[4,2,2,0,2,[[159,1,1,0,1],[161,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]],[29,1,1,3,4,[[884,1,1,3,4]]]],[5112,5171,22049,22452]]],["greatly",[3,3,[[18,3,3,0,3,[[539,1,1,0,1],[542,1,1,1,2],[566,1,1,2,3]]]],[14829,14869,15333]]],["increased",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8401]]],["long",[8,8,[[3,1,1,0,1,[[136,1,1,0,1]]],[4,1,1,1,2,[[172,1,1,1,2]]],[5,3,3,2,5,[[197,1,1,2,3],[209,1,1,3,4],[210,1,1,4,5]]],[9,1,1,5,6,[[280,1,1,5,6]]],[10,1,1,6,7,[[293,1,1,6,7]]],[18,1,1,7,8,[[597,1,1,7,8]]]],[4326,5446,6125,6461,6483,8358,8827,16080]]],["manifold",[3,3,[[15,2,2,0,2,[[421,2,2,0,2]]],[29,1,1,2,3,[[883,1,1,2,3]]]],[12530,12538,22435]]],["many",[170,165,[[0,2,2,0,2,[[20,1,1,0,1],[36,1,1,1,2]]],[1,3,3,2,5,[[54,1,1,2,3],[68,1,1,3,4],[72,1,1,4,5]]],[2,2,2,5,7,[[104,1,1,5,6],[114,1,1,6,7]]],[3,7,7,7,14,[[125,1,1,7,8],[129,1,1,8,9],[138,1,1,9,10],[140,1,1,10,11],[142,2,2,11,13],[151,1,1,13,14]]],[4,11,10,14,24,[[153,1,1,14,15],[154,3,3,15,18],[159,1,1,18,19],[167,2,1,19,20],[177,1,1,20,21],[180,1,1,21,22],[183,2,2,22,24]]],[5,2,2,24,26,[[197,1,1,24,25],[208,1,1,25,26]]],[6,4,4,26,30,[[217,2,2,26,28],[218,1,1,28,29],[219,1,1,29,30]]],[8,2,2,30,32,[[237,1,1,30,31],[249,1,1,31,32]]],[10,5,5,32,37,[[292,1,1,32,33],[294,1,1,33,34],[301,1,1,34,35],[308,2,2,35,37]]],[11,1,1,37,38,[[321,1,1,37,38]]],[12,5,5,38,43,[[341,1,1,38,39],[342,1,1,39,40],[344,1,1,40,41],[348,1,1,41,42],[365,1,1,42,43]]],[13,5,5,43,48,[[380,1,1,43,44],[392,1,1,44,45],[396,2,2,45,47],[398,1,1,47,48]]],[14,3,2,48,50,[[405,2,1,48,49],[412,1,1,49,50]]],[15,5,5,50,55,[[417,1,1,50,51],[418,1,1,51,52],[421,2,2,52,54],[425,1,1,54,55]]],[16,4,4,55,59,[[426,1,1,55,56],[427,1,1,56,57],[429,1,1,57,58],[433,1,1,58,59]]],[17,4,4,59,63,[[439,1,1,59,60],[446,1,1,60,61],[451,1,1,61,62],[458,1,1,62,63]]],[18,11,11,63,74,[[480,1,1,63,64],[481,1,1,64,65],[506,1,1,65,66],[508,1,1,66,67],[514,1,1,67,68],[517,1,1,68,69],[532,1,1,69,70],[533,1,1,70,71],[548,1,1,71,72],[570,1,1,72,73],[587,1,1,73,74]]],[19,7,7,74,81,[[634,1,1,74,75],[637,1,1,75,76],[641,1,1,76,77],[646,2,2,77,79],[655,2,2,79,81]]],[20,3,2,81,83,[[664,2,1,81,82],[665,1,1,82,83]]],[22,12,12,83,95,[[680,2,2,83,85],[683,1,1,85,86],[686,2,2,86,88],[695,2,2,88,90],[709,1,1,90,91],[730,2,2,91,93],[731,2,2,93,95]]],[23,16,15,95,110,[[747,1,1,95,96],[755,1,1,96,97],[757,1,1,97,98],[760,2,1,98,99],[764,1,1,99,100],[766,1,1,100,101],[769,1,1,101,102],[771,1,1,102,103],[772,1,1,103,104],[776,1,1,104,105],[779,1,1,105,106],[780,1,1,106,107],[781,1,1,107,108],[794,1,1,108,109],[795,1,1,109,110]]],[24,1,1,110,111,[[797,1,1,110,111]]],[25,26,25,111,136,[[804,1,1,111,112],[813,1,1,112,113],[817,1,1,113,114],[818,3,3,114,117],[820,1,1,117,118],[827,1,1,118,119],[828,3,3,119,122],[833,2,2,122,124],[834,1,1,124,125],[838,1,1,125,126],[839,7,6,126,132],[840,1,1,132,133],[844,1,1,133,134],[848,2,2,134,136]]],[26,14,14,136,150,[[857,2,2,136,138],[858,1,1,138,139],[860,9,9,139,148],[861,2,2,148,150]]],[27,2,2,150,152,[[864,2,2,150,152]]],[29,1,1,152,153,[[886,1,1,152,153]]],[32,6,6,153,159,[[896,4,4,153,157],[897,2,2,157,159]]],[33,1,1,159,160,[[900,1,1,159,160]]],[34,2,2,160,162,[[904,2,2,160,162]]],[37,3,3,162,165,[[912,1,1,162,163],[918,2,2,163,165]]]],[547,1117,1637,2047,2146,3193,3520,3984,4093,4378,4453,4543,4545,4853,4938,4939,4948,4959,5112,5325,5550,5623,5745,5749,6111,6429,6696,6698,6749,6794,7245,7514,8808,8864,9109,9342,9366,9778,10412,10450,10557,10695,11148,11486,11742,11844,11845,11898,12109,12265,12384,12419,12539,12541,12697,12706,12732,12765,12834,12933,13127,13240,13433,13958,13971,14311,14344,14466,14528,14750,14757,14983,15430,15792,16601,16677,16792,16929,16946,17198,17223,17420,17458,17688,17689,17748,17814,17822,17995,17996,18251,18710,18711,18722,18723,19003,19241,19272,19352,19432,19462,19548,19603,19626,19745,19830,19874,19890,20207,20225,20332,20508,20707,20803,20832,20834,20842,20891,21103,21124,21136,21154,21251,21257,21304,21399,21431,21433,21434,21440,21447,21448,21475,21574,21686,21689,21986,21987,22015,22050,22054,22062,22069,22070,22075,22076,22077,22080,22083,22085,22131,22132,22484,22622,22623,22631,22633,22640,22641,22696,22756,22758,22910,22996,22998]]],["master",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21740]]],["mighty",[5,5,[[17,1,1,0,1,[[470,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]],[22,1,1,2,3,[[741,1,1,2,3]]],[23,1,1,3,4,[[776,1,1,3,4]]],[25,1,1,4,5,[[839,1,1,4,5]]]],[13729,15376,18867,19750,21440]]],["more",[11,11,[[1,1,1,0,1,[[50,1,1,0,1]]],[3,2,2,1,3,[[138,1,1,1,2],[149,1,1,2,3]]],[4,2,2,3,5,[[159,1,1,3,4],[172,1,1,4,5]]],[5,1,1,5,6,[[196,1,1,5,6]]],[6,1,1,6,7,[[226,1,1,6,7]]],[11,1,1,7,8,[[318,1,1,7,8]]],[12,1,1,8,9,[[361,1,1,8,9]]],[13,1,1,9,10,[[398,1,1,9,10]]],[22,1,1,10,11,[[732,1,1,10,11]]]],[1541,4390,4814,5128,5428,6075,6979,9690,11019,11882,18724]]],["much",[34,32,[[0,1,1,0,1,[[29,1,1,0,1]]],[3,3,3,1,4,[[132,2,2,1,3],[137,1,1,3,4]]],[4,1,1,4,5,[[155,1,1,4,5]]],[5,4,3,5,8,[[197,1,1,5,6],[205,1,1,6,7],[208,2,1,7,8]]],[9,1,1,8,9,[[279,1,1,8,9]]],[10,2,2,9,11,[[300,1,1,9,10],[302,1,1,10,11]]],[11,1,1,11,12,[[324,1,1,11,12]]],[12,2,2,12,14,[[355,1,1,12,13],[359,1,1,13,14]]],[13,11,10,14,24,[[380,1,1,14,15],[383,1,1,15,16],[386,1,1,16,17],[390,1,1,17,18],[391,1,1,18,19],[392,1,1,19,20],[394,1,1,20,21],[396,1,1,21,22],[398,3,2,22,24]]],[18,1,1,24,25,[[496,1,1,24,25]]],[19,1,1,25,26,[[642,1,1,25,26]]],[22,1,1,26,27,[[699,1,1,26,27]]],[25,3,3,27,30,[[818,1,1,27,28],[823,1,1,28,29],[827,1,1,29,30]]],[26,1,1,30,31,[[860,1,1,30,31]]],[31,1,1,31,32,[[892,1,1,31,32]]]],[873,4197,4201,4346,4994,6111,6330,6434,8351,9081,9179,9860,10898,10972,11489,11536,11612,11688,11717,11742,11772,11840,11879,11904,14178,16813,18042,20840,20981,21107,22049,22579]]],["multiply",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2173]]],["multitude",[7,7,[[1,2,2,0,2,[[61,1,1,0,1],[72,1,1,1,2]]],[3,1,1,2,3,[[148,1,1,2,3]]],[13,1,1,3,4,[[367,1,1,3,4]]],[18,2,2,4,6,[[574,1,1,4,5],[586,1,1,5,6]]],[25,1,1,6,7,[[832,1,1,6,7]]]],[1854,2146,4719,11203,15479,15785,21235]]],["officers",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12710]]],["one",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18024]]],["plenteous",[3,3,[[18,3,3,0,3,[[563,2,2,0,2],[580,1,1,2,3]]]],[15289,15299,15557]]],["populous",[1,1,[[4,1,1,0,1,[[178,1,1,0,1]]]],[5571]]],["princes",[2,2,[[23,2,2,0,2,[[783,1,1,0,1],[785,1,1,1,2]]]],[19936,19958]]],["store",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[706]]],["suffice",[3,3,[[4,1,1,0,1,[[155,1,1,0,1]]],[25,2,2,1,3,[[845,1,1,1,2],[846,1,1,2,3]]]],[5001,21605,21639]]],["sufficient",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5817]]],["than",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1047]]],["things",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18500]]],["time",[2,2,[[18,2,2,0,2,[[606,2,2,0,2]]]],[16133,16134]]]]},{"k":"H7228","v":[["archers",[2,2,[[17,1,1,0,1,[[451,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]]],[13251,20195]]]]},{"k":"H7229","v":[["*",[15,15,[[14,3,3,0,3,[[406,1,1,0,1],[407,2,2,1,3]]],[26,12,12,3,15,[[851,6,6,3,9],[853,2,2,9,11],[854,2,2,11,13],[856,2,2,13,15]]]],[12120,12142,12145,21768,21772,21789,21793,21803,21806,21846,21867,21875,21885,21935,21953]]],["captain",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21772]]],["chief",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21806]]],["great",[9,9,[[14,3,3,0,3,[[406,1,1,0,1],[407,2,2,1,3]]],[26,6,6,3,9,[[851,3,3,3,6],[853,1,1,6,7],[854,1,1,7,8],[856,1,1,8,9]]]],[12120,12142,12145,21789,21793,21803,21867,21875,21935]]],["lord",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21768]]],["master",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[854,1,1,1,2]]]],[21846,21885]]],["stout",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21953]]]]},{"k":"H7230","v":[["*",[153,147,[[0,5,5,0,5,[[15,1,1,0,1],[26,1,1,1,2],[29,1,1,2,3],[31,1,1,3,4],[47,1,1,4,5]]],[1,1,1,5,6,[[64,1,1,5,6]]],[2,1,1,6,7,[[114,1,1,6,7]]],[4,5,5,7,12,[[153,1,1,7,8],[159,1,1,8,9],[162,1,1,9,10],[180,2,2,10,12]]],[5,2,2,12,14,[[195,1,1,12,13],[197,1,1,13,14]]],[6,3,2,14,16,[[216,1,1,14,15],[217,2,1,15,16]]],[8,2,2,16,18,[[236,1,1,16,17],[248,1,1,17,18]]],[9,1,1,18,19,[[283,1,1,18,19]]],[10,8,8,19,27,[[291,2,2,19,21],[293,1,1,21,22],[294,1,1,22,23],[297,1,1,23,24],[298,1,1,24,25],[300,2,2,25,27]]],[11,1,1,27,28,[[331,1,1,27,28]]],[12,11,10,28,38,[[341,1,1,28,29],[349,1,1,29,30],[359,7,6,30,36],[366,2,2,36,38]]],[13,27,27,38,65,[[367,1,1,38,39],[368,1,1,39,40],[370,1,1,40,41],[371,1,1,41,42],[375,3,3,42,45],[377,1,1,45,46],[380,1,1,46,47],[381,1,1,47,48],[382,1,1,48,49],[383,1,1,49,50],[384,2,2,50,52],[386,1,1,52,53],[390,3,3,53,56],[393,1,1,56,57],[395,1,1,57,58],[396,3,3,58,61],[397,2,2,61,63],[398,2,2,63,65]]],[15,2,2,65,67,[[421,1,1,65,66],[425,1,1,66,67]]],[16,2,2,67,69,[[430,1,1,67,68],[435,1,1,68,69]]],[17,9,9,69,78,[[439,1,1,69,70],[446,1,1,70,71],[458,1,1,71,72],[461,1,1,72,73],[465,1,1,73,74],[467,1,1,74,75],[468,1,1,75,76],[470,1,1,76,77],[472,1,1,77,78]]],[18,17,16,78,94,[[482,2,2,78,80],[510,3,2,80,82],[514,1,1,82,83],[526,1,1,83,84],[528,1,1,84,85],[529,1,1,85,86],[543,1,1,86,87],[546,2,2,87,89],[549,1,1,89,90],[571,1,1,90,91],[583,2,2,91,93],[627,1,1,93,94]]],[19,12,12,94,106,[[632,1,1,94,95],[634,1,1,95,96],[637,1,1,96,97],[638,1,1,97,98],[640,1,1,98,99],[641,2,2,99,101],[642,1,1,101,102],[643,1,1,102,103],[647,2,2,103,105],[651,1,1,105,106]]],[20,6,4,106,110,[[659,2,1,106,107],[663,3,2,107,109],[669,1,1,109,110]]],[22,11,11,110,121,[[679,1,1,110,111],[685,1,1,111,112],[702,1,1,112,113],[715,1,1,113,114],[718,1,1,114,115],[725,3,3,115,118],[735,1,1,118,119],[741,2,2,119,121]]],[23,3,3,121,124,[[757,1,1,121,122],[774,2,2,122,124]]],[24,3,3,124,127,[[797,2,2,124,126],[799,1,1,126,127]]],[25,12,11,127,138,[[815,1,1,127,128],[820,1,1,128,129],[824,1,1,129,130],[828,5,4,130,134],[829,3,3,134,137],[832,1,1,137,138]]],[27,4,4,138,142,[[869,1,1,138,139],[870,1,1,139,140],[871,2,2,140,142]]],[33,2,2,142,144,[[902,2,2,142,144]]],[37,3,3,144,147,[[912,1,1,144,145],[918,1,1,145,146],[924,1,1,146,147]]]],[391,755,860,940,1467,1927,3485,4902,5118,5208,5658,5673,6050,6111,6659,6706,7228,7490,8460,8736,8742,8824,8864,8981,8990,9089,9106,10084,10423,10760,10967,10968,10969,10972,10978,10979,11166,11185,11209,11220,11264,11274,11365,11373,11391,11437,11490,11499,11517,11528,11543,11544,11612,11688,11701,11704,11758,11826,11832,11840,11851,11859,11864,11880,11904,12536,12693,12790,12869,12944,13110,13425,13470,13575,13635,13669,13729,13792,13980,13983,14382,14383,14461,14654,14692,14717,14876,14948,14951,15007,15450,15658,15696,16396,16540,16596,16675,16702,16770,16776,16800,16829,16848,16960,16969,17085,17333,17400,17404,17514,17665,17804,18117,18376,18446,18608,18611,18612,18775,18867,18873,19288,19681,19682,20313,20315,20386,20735,20892,21049,21133,21137,21139,21154,21162,21173,21175,21239,22206,22215,22226,22238,22715,22716,22903,22980,23082]]],["+",[24,24,[[0,2,2,0,2,[[15,1,1,0,1],[31,1,1,1,2]]],[4,2,2,2,4,[[159,1,1,2,3],[180,1,1,3,4]]],[5,1,1,4,5,[[195,1,1,4,5]]],[8,1,1,5,6,[[236,1,1,5,6]]],[10,3,3,6,9,[[293,1,1,6,7],[297,1,1,7,8],[298,1,1,8,9]]],[13,1,1,9,10,[[371,1,1,9,10]]],[17,1,1,10,11,[[470,1,1,10,11]]],[19,1,1,11,12,[[643,1,1,11,12]]],[22,3,3,12,15,[[685,1,1,12,13],[702,1,1,13,14],[718,1,1,14,15]]],[24,1,1,15,16,[[797,1,1,15,16]]],[25,5,5,16,21,[[824,1,1,16,17],[828,3,3,17,20],[829,1,1,20,21]]],[33,1,1,21,22,[[902,1,1,21,22]]],[37,2,2,22,24,[[912,1,1,22,23],[918,1,1,23,24]]]],[391,940,5118,5658,6050,7228,8824,8981,8990,11274,13729,16848,17804,18117,18446,20313,21049,21133,21137,21139,21175,22716,22903,22980]]],["Most",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16960]]],["Much",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16770]]],["abundance",[32,31,[[10,4,4,0,4,[[291,2,2,0,2],[300,2,2,2,4]]],[12,6,5,4,9,[[359,4,3,4,7],[366,2,2,7,9]]],[13,17,17,9,26,[[367,1,1,9,10],[368,1,1,10,11],[370,1,1,11,12],[375,3,3,12,15],[377,1,1,15,16],[380,1,1,16,17],[381,1,1,17,18],[383,1,1,18,19],[384,2,2,19,21],[386,1,1,21,22],[390,1,1,22,23],[395,1,1,23,24],[398,2,2,24,26]]],[15,1,1,26,27,[[421,1,1,26,27]]],[18,3,3,27,30,[[514,1,1,27,28],[529,1,1,28,29],[549,1,1,29,30]]],[37,1,1,30,31,[[924,1,1,30,31]]]],[8736,8742,9089,9106,10967,10978,10979,11166,11185,11209,11220,11264,11365,11373,11391,11437,11490,11499,11528,11543,11544,11612,11688,11826,11880,11904,12536,14461,14717,15007,23082]]],["abundantly",[4,4,[[12,3,3,0,3,[[349,1,1,0,1],[359,2,2,1,3]]],[13,1,1,3,4,[[397,1,1,3,4]]]],[10760,10969,10972,11859]]],["all",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12944]]],["excellent",[1,1,[[18,1,1,0,1,[[627,1,1,0,1]]]],[16396]]],["great",[6,6,[[13,2,2,0,2,[[390,1,1,0,1],[396,1,1,1,2]]],[17,2,2,2,4,[[458,1,1,2,3],[465,1,1,3,4]]],[18,1,1,4,5,[[510,1,1,4,5]]],[25,1,1,5,6,[[829,1,1,5,6]]]],[11701,11840,13425,13575,14383,21162]]],["greatly",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10423]]],["greatness",[8,8,[[1,1,1,0,1,[[64,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]],[15,1,1,2,3,[[425,1,1,2,3]]],[18,1,1,3,4,[[543,1,1,3,4]]],[19,1,1,4,5,[[632,1,1,4,5]]],[22,2,2,5,7,[[735,1,1,5,6],[741,1,1,6,7]]],[23,1,1,7,8,[[757,1,1,7,8]]]],[1927,11704,12693,14876,16540,18775,18867,19288]]],["huge",[1,1,[[13,1,1,0,1,[[382,1,1,0,1]]]],[11517]]],["long",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11832]]],["many",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17514]]],["much",[7,6,[[12,1,1,0,1,[[359,1,1,0,1]]],[13,1,1,1,2,[[393,1,1,1,2]]],[18,1,1,2,3,[[510,1,1,2,3]]],[19,2,2,3,5,[[634,1,1,3,4],[641,1,1,4,5]]],[20,2,1,5,6,[[659,2,1,5,6]]]],[10968,11758,14382,16596,16776,17333]]],["multitude",[58,56,[[0,2,2,0,2,[[29,1,1,0,1],[47,1,1,1,2]]],[2,1,1,2,3,[[114,1,1,2,3]]],[4,3,3,3,6,[[153,1,1,3,4],[162,1,1,4,5],[180,1,1,5,6]]],[5,1,1,6,7,[[197,1,1,6,7]]],[6,3,2,7,9,[[216,1,1,7,8],[217,2,1,8,9]]],[8,1,1,9,10,[[248,1,1,9,10]]],[9,1,1,10,11,[[283,1,1,10,11]]],[10,1,1,11,12,[[294,1,1,11,12]]],[11,1,1,12,13,[[331,1,1,12,13]]],[16,2,2,13,15,[[430,1,1,13,14],[435,1,1,14,15]]],[17,3,3,15,18,[[446,1,1,15,16],[467,1,1,16,17],[468,1,1,17,18]]],[18,10,10,18,28,[[482,2,2,18,20],[510,1,1,20,21],[526,1,1,21,22],[528,1,1,22,23],[546,2,2,23,25],[571,1,1,25,26],[583,2,2,26,28]]],[19,6,6,28,34,[[637,1,1,28,29],[638,1,1,29,30],[641,1,1,30,31],[642,1,1,31,32],[647,1,1,32,33],[651,1,1,33,34]]],[20,3,2,34,36,[[663,3,2,34,36]]],[22,6,6,36,42,[[679,1,1,36,37],[715,1,1,37,38],[725,3,3,38,41],[741,1,1,41,42]]],[23,2,2,42,44,[[774,2,2,42,44]]],[24,2,2,44,46,[[797,1,1,44,45],[799,1,1,45,46]]],[25,6,6,46,52,[[815,1,1,46,47],[820,1,1,47,48],[828,2,2,48,50],[829,1,1,50,51],[832,1,1,51,52]]],[27,3,3,52,55,[[870,1,1,52,53],[871,2,2,53,55]]],[33,1,1,55,56,[[902,1,1,55,56]]]],[860,1467,3485,4902,5208,5673,6111,6659,6706,7490,8460,8864,10084,12790,12869,13110,13635,13669,13980,13983,14382,14654,14692,14948,14951,15450,15658,15696,16675,16702,16800,16829,16969,17085,17400,17404,17665,18376,18608,18611,18612,18873,19681,19682,20315,20386,20735,20892,21139,21154,21173,21239,22215,22226,22238,22715]]],["number",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11851]]],["plentifully",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13470]]],["plenty",[3,3,[[0,1,1,0,1,[[26,1,1,0,1]]],[13,1,1,1,2,[[397,1,1,1,2]]],[17,1,1,2,3,[[472,1,1,2,3]]]],[755,11864,13792]]],["things",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22206]]]]},{"k":"H7231","v":[["*",[19,19,[[0,2,2,0,2,[[5,1,1,0,1],[17,1,1,1,2]]],[8,1,1,2,3,[[260,1,1,2,3]]],[17,1,1,3,4,[[470,1,1,3,4]]],[18,7,7,4,11,[[480,1,1,4,5],[481,1,1,5,6],[502,1,1,6,7],[515,1,1,7,8],[546,1,1,8,9],[581,1,1,9,10],[621,1,1,10,11]]],[20,1,1,11,12,[[663,1,1,11,12]]],[22,3,3,12,15,[[700,1,1,12,13],[737,1,1,13,14],[744,1,1,14,15]]],[23,3,3,15,18,[[749,1,1,15,16],[758,1,1,16,17],[790,1,1,17,18]]],[27,1,1,18,19,[[865,1,1,18,19]]]],[138,444,7871,13726,13958,13972,14270,14509,14939,15595,16318,17408,18061,18812,18938,19064,19300,20068,22140]]],["great",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[444]]],["increased",[4,4,[[18,2,2,0,2,[[480,1,1,0,1],[481,1,1,1,2]]],[20,1,1,2,3,[[663,1,1,2,3]]],[27,1,1,3,4,[[865,1,1,3,4]]]],[13958,13972,17408,22140]]],["manifold",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15595]]],["many",[6,6,[[8,1,1,0,1,[[260,1,1,0,1]]],[18,1,1,1,2,[[502,1,1,1,2]]],[22,2,2,2,4,[[700,1,1,2,3],[744,1,1,3,4]]],[23,2,2,4,6,[[749,1,1,4,5],[758,1,1,5,6]]]],[7871,14270,18061,18938,19064,19300]]],["more",[2,2,[[18,1,1,0,1,[[546,1,1,0,1]]],[23,1,1,1,2,[[790,1,1,1,2]]]],[14939,20068]]],["multiplied",[3,3,[[17,1,1,0,1,[[470,1,1,0,1]]],[18,1,1,1,2,[[515,1,1,1,2]]],[22,1,1,2,3,[[737,1,1,2,3]]]],[13726,14509,18812]]],["multiply",[1,1,[[0,1,1,0,1,[[5,1,1,0,1]]]],[138]]],["thousands",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16318]]]]},{"k":"H7232","v":[["*",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[1496,14132]]],["out",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14132]]],["shot",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1496]]]]},{"k":"H7233","v":[["*",[16,16,[[0,1,1,0,1,[[23,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,1,1,2,3,[[126,1,1,2,3]]],[4,3,3,3,6,[[184,1,1,3,4],[185,2,2,4,6]]],[6,1,1,6,7,[[230,1,1,6,7]]],[8,4,4,7,11,[[253,2,2,7,9],[256,1,1,9,10],[264,1,1,10,11]]],[18,2,2,11,13,[[480,1,1,11,12],[568,1,1,12,13]]],[21,1,1,13,14,[[675,1,1,13,14]]],[25,1,1,14,15,[[817,1,1,14,15]]],[32,1,1,15,16,[[898,1,1,15,16]]]],[651,3532,4024,5788,5812,5827,7064,7683,7684,7783,7972,13963,15402,17608,20769,22655]]],["+",[4,4,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[18,1,1,2,3,[[480,1,1,2,3]]],[21,1,1,3,4,[[675,1,1,3,4]]]],[3532,5812,13963,17608]]],["many",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[4024]]],["millions",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[651]]],["multiply",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20769]]],["thousand",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[18,1,1,2,3,[[568,1,1,2,3]]]],[5788,7064,15402]]],["thousands",[6,6,[[4,1,1,0,1,[[185,1,1,0,1]]],[8,4,4,1,5,[[253,2,2,1,3],[256,1,1,3,4],[264,1,1,4,5]]],[32,1,1,5,6,[[898,1,1,5,6]]]],[5827,7683,7684,7783,7972,22655]]]]},{"k":"H7234","v":[["decked",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16591]]]]},{"k":"H7235","v":[["*",[224,209,[[0,29,24,0,24,[[0,3,2,0,2],[2,2,1,2,3],[6,2,2,3,5],[7,1,1,5,6],[8,3,2,6,8],[14,1,1,8,9],[15,2,1,9,10],[16,2,2,10,12],[20,1,1,12,13],[21,2,1,13,14],[25,2,2,14,16],[27,1,1,16,17],[33,1,1,17,18],[34,1,1,18,19],[37,1,1,19,20],[40,1,1,20,21],[42,1,1,21,22],[46,1,1,22,23],[47,1,1,23,24]]],[1,11,11,24,35,[[50,4,4,24,28],[56,1,1,28,29],[60,1,1,29,30],[65,2,2,30,32],[79,1,1,32,33],[81,1,1,33,34],[85,1,1,34,35]]],[2,3,3,35,38,[[100,1,1,35,36],[114,1,1,36,37],[115,1,1,37,38]]],[3,3,3,38,41,[[142,1,1,38,39],[149,1,1,39,40],[151,1,1,40,41]]],[4,20,16,41,57,[[153,1,1,41,42],[155,1,1,42,43],[158,1,1,43,44],[159,2,2,44,46],[160,4,2,46,48],[163,1,1,48,49],[165,1,1,49,50],[166,1,1,50,51],[169,4,2,51,53],[171,1,1,53,54],[180,1,1,54,55],[182,2,2,55,57]]],[5,3,3,57,60,[[199,1,1,57,58],[208,1,1,58,59],[210,1,1,59,60]]],[6,3,3,60,63,[[219,1,1,60,61],[226,1,1,61,62],[230,1,1,62,63]]],[8,5,5,63,68,[[236,1,1,63,64],[237,1,1,64,65],[242,1,1,65,66],[249,1,1,66,67],[261,1,1,67,68]]],[9,7,7,68,75,[[267,1,1,68,69],[274,1,1,69,70],[278,2,2,70,72],[280,1,1,72,73],[284,1,1,73,74],[288,1,1,74,75]]],[10,4,4,75,79,[[294,2,2,75,77],[300,2,2,77,79]]],[11,3,3,79,82,[[322,1,1,79,80],[333,2,2,80,82]]],[12,10,10,82,92,[[341,2,2,82,84],[342,2,2,84,86],[344,1,1,86,87],[345,1,1,87,88],[357,1,1,88,89],[360,2,2,89,91],[364,1,1,91,92]]],[13,9,9,92,101,[[377,1,1,92,93],[380,1,1,93,94],[382,1,1,94,95],[391,1,1,95,96],[397,1,1,96,97],[398,1,1,97,98],[399,2,2,98,100],[402,1,1,100,101]]],[14,3,3,101,104,[[411,1,1,101,102],[412,2,2,102,104]]],[15,8,8,104,112,[[414,1,1,104,105],[416,3,3,105,108],[417,1,1,108,109],[418,1,1,109,110],[421,2,2,110,112]]],[17,8,8,112,120,[[444,1,1,112,113],[445,1,1,113,114],[462,1,1,114,115],[464,1,1,115,116],[468,1,1,116,117],[469,1,1,117,118],[474,1,1,118,119],[476,1,1,119,120]]],[18,10,10,120,130,[[493,1,1,120,121],[495,1,1,121,122],[521,1,1,122,123],[526,1,1,123,124],[528,1,1,124,125],[548,1,1,125,126],[555,1,1,126,127],[584,1,1,127,128],[607,1,1,128,129],[616,1,1,129,130]]],[19,11,10,130,140,[[631,1,1,130,131],[633,1,1,131,132],[636,1,1,132,133],[640,1,1,133,134],[649,1,1,134,135],[652,1,1,135,136],[655,2,2,136,138],[656,3,2,138,140]]],[20,18,15,140,155,[[659,1,1,140,141],[660,1,1,141,142],[663,5,5,142,147],[664,2,1,147,148],[665,2,2,148,150],[667,1,1,150,151],[668,1,1,151,152],[669,2,1,152,153],[670,3,2,153,155]]],[22,8,8,155,163,[[679,1,1,155,156],[687,1,1,156,157],[701,1,1,157,158],[708,1,1,158,159],[718,1,1,159,160],[729,1,1,160,161],[733,1,1,161,162],[735,1,1,162,163]]],[23,9,9,163,172,[[746,1,1,163,164],[747,1,1,164,165],[767,1,1,165,166],[773,1,1,166,167],[774,1,1,167,168],[777,1,1,168,169],[786,1,1,169,170],[790,2,2,170,172]]],[24,2,2,172,174,[[798,2,2,172,174]]],[25,20,19,174,193,[[812,1,1,174,175],[817,5,5,175,180],[820,1,1,180,181],[822,1,1,181,182],[823,1,1,182,183],[824,1,1,183,184],[825,1,1,184,185],[829,1,1,185,186],[832,1,1,186,187],[837,6,5,187,192],[838,1,1,192,193]]],[26,2,2,193,195,[[860,1,1,193,194],[861,1,1,194,195]]],[27,6,6,195,201,[[863,1,1,195,196],[869,2,2,196,198],[871,1,1,198,199],[873,2,2,199,201]]],[29,2,2,201,203,[[882,2,2,201,203]]],[31,1,1,203,204,[[892,1,1,203,204]]],[33,1,1,204,205,[[902,1,1,204,205]]],[34,1,1,205,206,[[904,1,1,205,206]]],[36,2,2,206,208,[[909,2,2,206,208]]],[37,2,1,208,209,[[920,2,1,208,209]]]],[21,27,71,176,177,200,206,212,361,391,399,417,533,564,696,716,776,992,1022,1131,1244,1324,1447,1455,1539,1542,1544,1552,1688,1815,1964,1965,2397,2451,2571,3039,3485,3533,4543,4814,4853,4902,4980,5089,5124,5133,5138,5150,5229,5289,5314,5380,5381,5412,5674,5713,5724,6155,6434,6479,6783,6973,7092,7224,7243,7354,7538,7926,8026,8217,8288,8316,8367,8486,8638,8873,8874,9089,9090,9811,10125,10135,10395,10412,10437,10451,10539,10615,10928,10994,11000,11132,11426,11488,11517,11713,11859,11902,11914,11931,12007,12243,12253,12265,12309,12360,12369,12378,12400,12418,12534,12548,13068,13103,13495,13550,13662,13720,13838,13891,14096,14153,14583,14664,14693,14997,15151,15737,16147,16257,16500,16575,16649,16758,17031,17140,17204,17224,17226,17240,17331,17340,17404,17408,17409,17414,17417,17428,17445,17446,17493,17507,17521,17532,17535,17669,17832,18093,18250,18449,18675,18747,18774,18987,19018,19487,19641,19686,19797,19977,20056,20061,20337,20354,20661,20769,20787,20788,20791,20813,20883,20959,21001,21026,21066,21162,21235,21369,21370,21388,21389,21396,21423,22075,22085,22113,22205,22208,22226,22253,22262,22414,22419,22579,22728,22754,22846,22849,23024]]],["+",[32,31,[[0,8,7,0,7,[[15,2,1,0,1],[20,1,1,1,2],[21,1,1,2,3],[25,1,1,3,4],[33,1,1,4,5],[37,1,1,5,6],[42,1,1,6,7]]],[1,2,2,7,9,[[56,1,1,7,8],[81,1,1,8,9]]],[3,1,1,9,10,[[149,1,1,9,10]]],[5,1,1,10,11,[[210,1,1,10,11]]],[6,1,1,11,12,[[226,1,1,11,12]]],[8,1,1,12,13,[[261,1,1,12,13]]],[10,1,1,13,14,[[294,1,1,13,14]]],[12,5,5,14,19,[[341,1,1,14,15],[357,1,1,15,16],[360,2,2,16,18],[364,1,1,18,19]]],[13,2,2,19,21,[[377,1,1,19,20],[402,1,1,20,21]]],[14,1,1,21,22,[[412,1,1,21,22]]],[15,1,1,22,23,[[416,1,1,22,23]]],[23,2,2,23,25,[[777,1,1,23,24],[786,1,1,24,25]]],[25,6,6,25,31,[[817,4,4,25,29],[824,1,1,29,30],[837,1,1,30,31]]]],[391,533,564,716,992,1131,1324,1688,2451,4814,6479,6973,7926,8874,10395,10928,10994,11000,11132,11426,12007,12253,12360,19797,19977,20787,20788,20791,20813,21026,21389]]],["Increase",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6783]]],["abundance",[2,2,[[9,1,1,0,1,[[278,1,1,0,1]]],[13,1,1,1,2,[[397,1,1,1,2]]]],[8316,11859]]],["abundantly",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18747]]],["authority",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17226]]],["continued",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7224]]],["full",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17507]]],["great",[7,7,[[0,1,1,0,1,[[14,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[15,1,1,3,4,[[416,1,1,3,4]]],[18,1,1,4,5,[[495,1,1,4,5]]],[20,2,2,5,7,[[659,1,1,5,6],[660,1,1,6,7]]]],[361,7092,8638,12378,14153,17331,17340]]],["greater",[2,2,[[8,1,1,0,1,[[249,1,1,0,1]]],[17,1,1,1,2,[[468,1,1,1,2]]]],[7538,13662]]],["greatly",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[71]]],["increase",[17,17,[[2,1,1,0,1,[[114,1,1,0,1]]],[4,2,2,1,3,[[158,1,1,1,2],[159,1,1,2,3]]],[18,2,2,3,5,[[521,1,1,3,4],[548,1,1,4,5]]],[19,3,3,5,8,[[640,1,1,5,6],[649,1,1,6,7],[655,1,1,7,8]]],[20,2,2,8,10,[[663,1,1,8,9],[664,1,1,9,10]]],[22,1,1,10,11,[[735,1,1,10,11]]],[23,1,1,11,12,[[767,1,1,11,12]]],[25,3,3,12,15,[[837,3,3,12,15]]],[26,1,1,15,16,[[860,1,1,15,16]]],[37,1,1,16,17,[[920,1,1,16,17]]]],[3485,5089,5133,14583,14997,16758,17031,17224,17408,17428,18774,19487,21370,21388,21396,22075,23024]]],["increased",[14,14,[[0,2,2,0,2,[[6,2,2,0,2]]],[12,1,1,2,3,[[342,1,1,2,3]]],[14,1,1,3,4,[[411,1,1,3,4]]],[18,1,1,4,5,[[526,1,1,4,5]]],[22,1,1,5,6,[[729,1,1,5,6]]],[23,1,1,6,7,[[773,1,1,6,7]]],[24,1,1,7,8,[[798,1,1,7,8]]],[25,2,2,8,10,[[817,1,1,8,9],[829,1,1,9,10]]],[26,1,1,10,11,[[861,1,1,10,11]]],[27,1,1,11,12,[[871,1,1,11,12]]],[29,1,1,12,13,[[882,1,1,12,13]]],[37,1,1,13,14,[[920,1,1,13,14]]]],[176,177,10451,12243,14664,18675,19641,20337,20769,21162,22085,22226,22419,23024]]],["increasest",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13103]]],["increaseth",[5,5,[[19,2,2,0,2,[[655,1,1,0,1],[656,1,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]],[27,1,1,3,4,[[873,1,1,3,4]]],[34,1,1,4,5,[[904,1,1,4,5]]]],[17204,17240,18449,22253,22754]]],["long",[3,3,[[4,2,2,0,2,[[166,1,1,0,1],[171,1,1,1,2]]],[8,1,1,2,3,[[242,1,1,2,3]]]],[5314,5412,7354]]],["many",[25,24,[[3,1,1,0,1,[[151,1,1,0,1]]],[4,1,1,1,2,[[155,1,1,1,2]]],[9,2,2,2,4,[[267,1,1,2,3],[278,1,1,3,4]]],[12,2,2,4,6,[[344,1,1,4,5],[345,1,1,5,6]]],[13,1,1,6,7,[[382,1,1,6,7]]],[14,1,1,7,8,[[412,1,1,7,8]]],[15,1,1,8,9,[[418,1,1,8,9]]],[17,1,1,9,10,[[476,1,1,9,10]]],[18,1,1,10,11,[[555,1,1,10,11]]],[19,2,2,11,13,[[631,1,1,11,12],[633,1,1,12,13]]],[20,6,5,13,18,[[663,1,1,13,14],[664,1,1,14,15],[669,2,1,15,16],[670,2,2,16,18]]],[22,2,2,18,20,[[679,1,1,18,19],[701,1,1,19,20]]],[23,2,2,20,22,[[790,2,2,20,22]]],[25,1,1,22,23,[[823,1,1,22,23]]],[27,1,1,23,24,[[869,1,1,23,24]]]],[4853,4980,8026,8288,10539,10615,11517,12265,12418,13891,15151,16500,16575,17404,17428,17521,17532,17535,17669,18093,20056,20061,21001,22205]]],["more",[11,11,[[1,3,3,0,3,[[65,1,1,0,1],[79,1,1,1,2],[85,1,1,2,3]]],[2,1,1,3,4,[[100,1,1,3,4]]],[3,1,1,4,5,[[142,1,1,4,5]]],[8,1,1,5,6,[[237,1,1,5,6]]],[9,2,2,6,8,[[280,1,1,6,7],[284,1,1,7,8]]],[13,2,2,8,10,[[391,1,1,8,9],[399,1,1,9,10]]],[31,1,1,10,11,[[892,1,1,10,11]]]],[1964,2397,2571,3039,4543,7243,8367,8486,11713,11931,22579]]],["much",[26,26,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,1,1,1,2,[[65,1,1,1,2]]],[5,2,2,2,4,[[199,1,1,2,3],[208,1,1,3,4]]],[9,1,1,4,5,[[274,1,1,4,5]]],[10,1,1,5,6,[[294,1,1,5,6]]],[11,3,3,6,9,[[322,1,1,6,7],[333,2,2,7,9]]],[13,3,3,9,12,[[380,1,1,9,10],[398,1,1,10,11],[399,1,1,11,12]]],[15,2,2,12,14,[[416,1,1,12,13],[421,1,1,13,14]]],[19,1,1,14,15,[[652,1,1,14,15]]],[20,7,7,15,22,[[663,3,3,15,18],[665,2,2,18,20],[667,1,1,20,21],[670,1,1,21,22]]],[22,1,1,22,23,[[708,1,1,22,23]]],[23,1,1,23,24,[[746,1,1,23,24]]],[36,2,2,24,26,[[909,2,2,24,26]]]],[1244,1965,6155,6434,8217,8873,9811,10125,10135,11488,11902,11914,12369,12548,17140,17409,17414,17417,17445,17446,17493,17535,18250,18987,22846,22849]]],["multiplied",[24,23,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,4,4,1,5,[[50,3,3,1,4],[60,1,1,4,5]]],[4,4,3,5,8,[[153,1,1,5,6],[160,2,1,6,7],[163,1,1,7,8]]],[12,1,1,8,9,[[342,1,1,8,9]]],[17,1,1,9,10,[[462,1,1,9,10]]],[18,2,2,10,12,[[493,1,1,10,11],[584,1,1,11,12]]],[19,2,2,12,14,[[636,1,1,12,13],[656,1,1,13,14]]],[22,1,1,14,15,[[687,1,1,14,15]]],[23,1,1,15,16,[[747,1,1,15,16]]],[25,3,3,16,19,[[812,1,1,16,17],[822,1,1,17,18],[832,1,1,18,19]]],[27,3,3,19,22,[[863,1,1,19,20],[869,1,1,20,21],[873,1,1,21,22]]],[33,1,1,22,23,[[902,1,1,22,23]]]],[1447,1539,1544,1552,1815,4902,5150,5229,10437,13495,14096,15737,16649,17240,17832,19018,20661,20959,21235,22113,22208,22262,22728]]],["multipliedst",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12534]]],["multiplieth",[2,2,[[17,2,2,0,2,[[444,1,1,0,1],[469,1,1,1,2]]]],[13068,13720]]],["multiply",[34,30,[[0,14,12,0,12,[[0,3,2,0,2],[2,1,1,2,3],[7,1,1,3,4],[8,3,2,4,6],[16,2,2,6,8],[25,1,1,8,9],[27,1,1,9,10],[34,1,1,10,11],[47,1,1,11,12]]],[1,1,1,12,13,[[50,1,1,12,13]]],[2,1,1,13,14,[[115,1,1,13,14]]],[4,11,9,14,23,[[159,1,1,14,15],[160,2,2,15,17],[165,1,1,17,18],[169,4,2,18,20],[180,1,1,20,21],[182,2,2,21,23]]],[12,1,1,23,24,[[341,1,1,23,24]]],[17,1,1,24,25,[[464,1,1,24,25]]],[23,1,1,25,26,[[774,1,1,25,26]]],[25,3,3,26,29,[[837,2,2,26,28],[838,1,1,28,29]]],[29,1,1,29,30,[[882,1,1,29,30]]]],[21,27,71,200,206,212,399,417,696,776,1022,1455,1542,3533,5124,5138,5150,5289,5380,5381,5674,5713,5724,10412,13550,19686,21369,21370,21423,22414]]],["multiplying",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[564]]],["nourished",[1,1,[[25,1,1,0,1,[[820,1,1,0,1]]]],[20883]]],["number",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16257]]],["on",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21066]]],["plenteous",[1,1,[[18,1,1,0,1,[[607,1,1,0,1]]]],[16147]]],["plenty",[1,1,[[10,1,1,0,1,[[300,1,1,0,1]]]],[9090]]],["sore",[1,1,[[15,1,1,0,1,[[414,1,1,0,1]]]],[12309]]],["store",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[15,1,1,1,2,[[417,1,1,1,2]]]],[9089,12400]]],["throughly",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14693]]],["up",[2,2,[[17,1,1,0,1,[[474,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]]],[13838,20354]]]]},{"k":"H7236","v":[["*",[6,5,[[26,6,5,0,5,[[851,1,1,0,1],[853,5,4,1,5]]]],[21806,21848,21857,21859,21870]]],["+",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21806]]],["grew",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21848,21857]]],["grown",[3,2,[[26,3,2,0,2,[[853,3,2,0,2]]]],[21859,21870]]]]},{"k":"H7237","v":[["*",[15,14,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,2,2,1,3,[[199,1,1,1,2],[201,1,1,2,3]]],[9,5,5,3,8,[[277,1,1,3,4],[278,3,3,4,7],[283,1,1,7,8]]],[12,2,1,8,9,[[357,2,1,8,9]]],[23,2,2,9,11,[[793,2,2,9,11]]],[25,2,2,11,13,[[822,1,1,11,12],[826,1,1,12,13]]],[29,1,1,13,14,[[879,1,1,13,14]]]],[4986,6179,6262,8260,8312,8313,8315,8476,10927,20129,20130,20964,21088,22378]]],["+",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8476]]],["Rabbah",[12,11,[[5,2,2,0,2,[[199,1,1,0,1],[201,1,1,1,2]]],[9,4,4,2,6,[[277,1,1,2,3],[278,3,3,3,6]]],[12,2,1,6,7,[[357,2,1,6,7]]],[23,2,2,7,9,[[793,2,2,7,9]]],[25,1,1,9,10,[[826,1,1,9,10]]],[29,1,1,10,11,[[879,1,1,10,11]]]],[6179,6262,8260,8312,8313,8315,10927,20129,20130,21088,22378]]],["Rabbath",[2,2,[[4,1,1,0,1,[[155,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[4986,20964]]]]},{"k":"H7238","v":[["*",[5,5,[[26,5,5,0,5,[[853,2,2,0,2],[854,2,2,2,4],[856,1,1,4,5]]]],[21859,21873,21892,21893,21960]]],["greatness",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[856,1,1,1,2]]]],[21859,21960]]],["majesty",[3,3,[[26,3,3,0,3,[[853,1,1,0,1],[854,2,2,1,3]]]],[21873,21892,21893]]]]},{"k":"H7239","v":[["*",[10,9,[[12,2,1,0,1,[[366,2,1,0,1]]],[14,2,2,1,3,[[404,2,2,1,3]]],[15,3,3,3,6,[[419,3,3,3,6]]],[18,1,1,6,7,[[545,1,1,6,7]]],[26,1,1,7,8,[[860,1,1,7,8]]],[31,1,1,8,9,[[892,1,1,8,9]]]],[11171,12091,12096,12486,12491,12492,14917,22048,22579]]],["+",[6,6,[[12,1,1,0,1,[[366,1,1,0,1]]],[14,2,2,1,3,[[404,2,2,1,3]]],[15,2,2,3,5,[[419,2,2,3,5]]],[31,1,1,5,6,[[892,1,1,5,6]]]],[11171,12091,12096,12486,12491,22579]]],["thousand",[3,3,[[12,1,1,0,1,[[366,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]],[18,1,1,2,3,[[545,1,1,2,3]]]],[11171,12492,14917]]],["thousands",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22048]]]]},{"k":"H7240","v":[["+",[2,1,[[26,2,1,0,1,[[856,2,1,0,1]]]],[21943]]]]},{"k":"H7241","v":[["showers",[6,6,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,2,2,1,3,[[542,1,1,1,2],[549,1,1,2,3]]],[23,2,2,3,5,[[747,1,1,3,4],[758,1,1,4,5]]],[32,1,1,5,6,[[897,1,1,5,6]]]],[5760,14870,15006,19005,19315,22640]]]]},{"k":"H7242","v":[["chain",[2,2,[[0,1,1,0,1,[[40,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[1237,20773]]]]},{"k":"H7243","v":[["*",[56,54,[[0,3,3,0,3,[[0,1,1,0,1],[1,1,1,1,2],[14,1,1,2,3]]],[1,3,3,3,6,[[77,1,1,3,4],[78,1,1,4,5],[88,1,1,5,6]]],[2,2,2,6,8,[[108,1,1,6,7],[112,1,1,7,8]]],[3,7,7,8,15,[[123,1,1,8,9],[131,2,2,9,11],[144,3,3,11,14],[145,1,1,14,15]]],[5,1,1,15,16,[[205,1,1,15,16]]],[6,1,1,16,17,[[229,1,1,16,17]]],[9,1,1,17,18,[[269,1,1,17,18]]],[10,3,3,18,21,[[296,3,3,18,21]]],[11,3,3,21,24,[[322,1,1,21,22],[327,1,1,22,23],[330,1,1,23,24]]],[12,14,13,24,37,[[339,1,1,24,25],[340,2,2,25,27],[345,1,1,27,28],[349,1,1,28,29],[360,1,1,29,30],[361,2,2,30,32],[362,1,1,32,33],[363,3,3,33,36],[364,2,1,36,37]]],[13,1,1,37,38,[[386,1,1,37,38]]],[14,1,1,38,39,[[410,1,1,38,39]]],[15,2,1,39,40,[[421,2,1,39,40]]],[23,8,8,40,48,[[769,1,1,40,41],[772,1,1,41,42],[780,1,1,42,43],[783,1,1,43,44],[789,1,1,44,45],[790,1,1,45,46],[795,1,1,46,47],[796,1,1,47,48]]],[25,3,3,48,51,[[802,1,1,48,49],[811,1,1,49,50],[849,1,1,50,51]]],[26,1,1,51,52,[[860,1,1,51,52]]],[37,2,2,52,54,[[916,1,1,52,53],[918,1,1,53,54]]]],[18,44,376,2313,2376,2677,3305,3415,3880,4157,4158,4582,4584,4591,4631,6338,7029,8085,8897,8929,8933,9823,9937,10033,10320,10363,10376,10577,10730,11002,11023,11038,11057,11079,11081,11088,11116,11613,12234,12514,19535,19619,19843,19925,20041,20047,20271,20282,20465,20647,21722,22038,22950,22995]]],["+",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8929]]],["foursquare",[1,1,[[25,1,1,0,1,[[849,1,1,0,1]]]],[21722]]],["fourth",[53,51,[[0,3,3,0,3,[[0,1,1,0,1],[1,1,1,1,2],[14,1,1,2,3]]],[1,2,2,3,5,[[77,1,1,3,4],[88,1,1,4,5]]],[2,2,2,5,7,[[108,1,1,5,6],[112,1,1,6,7]]],[3,7,7,7,14,[[123,1,1,7,8],[131,2,2,8,10],[144,3,3,10,13],[145,1,1,13,14]]],[5,1,1,14,15,[[205,1,1,14,15]]],[6,1,1,15,16,[[229,1,1,15,16]]],[9,1,1,16,17,[[269,1,1,16,17]]],[10,2,2,17,19,[[296,2,2,17,19]]],[11,3,3,19,22,[[322,1,1,19,20],[327,1,1,20,21],[330,1,1,21,22]]],[12,14,13,22,35,[[339,1,1,22,23],[340,2,2,23,25],[345,1,1,25,26],[349,1,1,26,27],[360,1,1,27,28],[361,2,2,28,30],[362,1,1,30,31],[363,3,3,31,34],[364,2,1,34,35]]],[13,1,1,35,36,[[386,1,1,35,36]]],[14,1,1,36,37,[[410,1,1,36,37]]],[15,2,1,37,38,[[421,2,1,37,38]]],[23,8,8,38,46,[[769,1,1,38,39],[772,1,1,39,40],[780,1,1,40,41],[783,1,1,41,42],[789,1,1,42,43],[790,1,1,43,44],[795,1,1,44,45],[796,1,1,45,46]]],[25,2,2,46,48,[[802,1,1,46,47],[811,1,1,47,48]]],[26,1,1,48,49,[[860,1,1,48,49]]],[37,2,2,49,51,[[916,1,1,49,50],[918,1,1,50,51]]]],[18,44,376,2313,2677,3305,3415,3880,4157,4158,4582,4584,4591,4631,6338,7029,8085,8897,8933,9823,9937,10033,10320,10363,10376,10577,10730,11002,11023,11038,11057,11079,11081,11088,11116,11613,12234,12514,19535,19619,19843,19925,20041,20047,20271,20282,20465,20647,22038,22950,22995]]],["part",[1,1,[[1,1,1,0,1,[[78,1,1,0,1]]]],[2376]]]]},{"k":"H7244","v":[["fourth",[6,5,[[26,6,5,0,5,[[851,1,1,0,1],[852,1,1,1,2],[856,4,3,2,5]]]],[21798,21832,21940,21952,21956]]]]},{"k":"H7245","v":[["Rabbith",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6341]]]]},{"k":"H7246","v":[["*",[3,3,[[2,2,2,0,2,[[95,1,1,0,1],[96,1,1,1,2]]],[12,1,1,2,3,[[360,1,1,2,3]]]],[2870,2891,11012]]],["baken",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2870]]],["fried",[2,2,[[2,1,1,0,1,[[96,1,1,0,1]]],[12,1,1,1,2,[[360,1,1,1,2]]]],[2891,11012]]]]},{"k":"H7247","v":[["Riblah",[11,11,[[3,1,1,0,1,[[150,1,1,0,1]]],[11,4,4,1,5,[[335,1,1,1,2],[337,3,3,2,5]]],[23,6,6,5,11,[[783,2,2,5,7],[796,4,4,7,11]]]],[4827,10198,10228,10242,10243,19928,19929,20285,20286,20302,20303]]]]},{"k":"H7248","v":[["Rabmag",[2,2,[[23,2,2,0,2,[[783,2,2,0,2]]]],[19926,19936]]]]},{"k":"H7249","v":[["Rabsaris",[3,3,[[11,1,1,0,1,[[330,1,1,0,1]]],[23,2,2,1,3,[[783,2,2,1,3]]]],[10041,19926,19936]]]]},{"k":"H7250","v":[["*",[3,3,[[2,3,3,0,3,[[107,1,1,0,1],[108,1,1,1,2],[109,1,1,2,3]]]],[3274,3300,3334]]],["down",[2,2,[[2,2,2,0,2,[[107,1,1,0,1],[109,1,1,1,2]]]],[3274,3334]]],["gender",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3300]]]]},{"k":"H7251","v":[["*",[12,12,[[1,6,6,0,6,[[76,1,1,0,1],[77,1,1,1,2],[79,1,1,2,3],[86,1,1,3,4],[87,1,1,4,5],[88,1,1,5,6]]],[10,2,2,6,8,[[297,2,2,6,8]]],[25,4,4,8,12,[[841,1,1,8,9],[842,1,1,9,10],[844,1,1,10,11],[846,1,1,11,12]]]],[2273,2309,2384,2629,2634,2673,8939,8965,21524,21547,21588,21632]]],["Foursquare",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2309]]],["foursquare",[7,7,[[1,5,5,0,5,[[76,1,1,0,1],[79,1,1,1,2],[86,1,1,2,3],[87,1,1,3,4],[88,1,1,4,5]]],[10,1,1,5,6,[[297,1,1,5,6]]],[25,1,1,6,7,[[841,1,1,6,7]]]],[2273,2384,2629,2634,2673,8965,21524]]],["square",[3,3,[[10,1,1,0,1,[[297,1,1,0,1]]],[25,2,2,1,3,[[844,1,1,1,2],[846,1,1,2,3]]]],[8939,21588,21632]]],["squared",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21547]]]]},{"k":"H7252","v":[["down",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16242]]]]},{"k":"H7253","v":[["*",[7,7,[[1,1,1,0,1,[[78,1,1,0,1]]],[8,1,1,1,2,[[244,1,1,1,2]]],[25,5,5,2,7,[[802,2,2,2,4],[811,1,1,4,5],[844,2,2,5,7]]]],[2376,7399,20472,20481,20644,21588,21589]]],["part",[2,2,[[1,1,1,0,1,[[78,1,1,0,1]]],[8,1,1,1,2,[[244,1,1,1,2]]]],[2376,7399]]],["sides",[3,3,[[25,3,3,0,3,[[802,2,2,0,2],[811,1,1,2,3]]]],[20472,20481,20644]]],["squares",[2,2,[[25,2,2,0,2,[[844,2,2,0,2]]]],[21588,21589]]]]},{"k":"H7254","v":[["Reba",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]]],[4672,6175]]]]},{"k":"H7255","v":[["*",[2,2,[[3,1,1,0,1,[[139,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]]],[4426,9699]]],["fourth",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4426]]],["part",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9699]]]]},{"k":"H7256","v":[["fourth",[4,4,[[1,2,2,0,2,[[69,1,1,0,1],[83,1,1,1,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[4,1,1,3,4,[[157,1,1,3,4]]]],[2056,2503,4126,5062]]]]},{"k":"H7257","v":[["*",[30,30,[[0,5,5,0,5,[[3,1,1,0,1],[28,1,1,1,2],[48,3,3,2,5]]],[1,1,1,5,6,[[72,1,1,5,6]]],[3,1,1,6,7,[[138,1,1,6,7]]],[4,3,3,7,10,[[174,1,1,7,8],[181,1,1,8,9],[185,1,1,9,10]]],[17,1,1,10,11,[[446,1,1,10,11]]],[18,2,2,11,13,[[500,1,1,11,12],[581,1,1,12,13]]],[21,1,1,13,14,[[671,1,1,13,14]]],[22,8,8,14,22,[[689,2,2,14,16],[691,2,2,16,18],[692,1,1,18,19],[695,1,1,19,20],[705,1,1,20,21],[732,1,1,21,22]]],[23,1,1,22,23,[[777,1,1,22,23]]],[25,4,4,23,27,[[820,1,1,23,24],[830,1,1,24,25],[835,2,2,25,27]]],[35,3,3,27,30,[[907,2,2,27,29],[908,1,1,29,30]]]],[86,797,1482,1487,1498,2149,4402,5476,5699,5823,13127,14237,15593,17544,17890,17891,17926,17927,17958,17985,18161,18734,19787,20883,21186,21327,21328,22812,22819,22833]]],["couched",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1482]]],["coucheth",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5823]]],["down",[16,16,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]],[17,1,1,2,3,[[446,1,1,2,3]]],[18,2,2,3,5,[[500,1,1,3,4],[581,1,1,4,5]]],[22,5,5,5,10,[[689,2,2,5,7],[692,1,1,7,8],[695,1,1,8,9],[705,1,1,9,10]]],[23,1,1,10,11,[[777,1,1,10,11]]],[25,2,2,11,13,[[820,1,1,11,12],[835,1,1,12,13]]],[35,3,3,13,16,[[907,2,2,13,15],[908,1,1,15,16]]]],[1487,4402,13127,14237,15593,17890,17891,17958,17985,18161,19787,20883,21328,22812,22819,22833]]],["fold",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17926]]],["lay",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18734]]],["lie",[3,3,[[4,1,1,0,1,[[181,1,1,0,1]]],[22,1,1,1,2,[[691,1,1,1,2]]],[25,1,1,2,3,[[835,1,1,2,3]]]],[5699,17927,21327]]],["lieth",[3,3,[[0,2,2,0,2,[[3,1,1,0,1],[48,1,1,1,2]]],[25,1,1,2,3,[[830,1,1,2,3]]]],[86,1498,21186]]],["lying",[2,2,[[0,1,1,0,1,[[28,1,1,0,1]]],[1,1,1,1,2,[[72,1,1,1,2]]]],[797,2149]]],["rest",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17544]]],["sitting",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5476]]]]},{"k":"H7258","v":[["*",[4,4,[[19,1,1,0,1,[[651,1,1,0,1]]],[22,2,2,1,3,[[713,1,1,1,2],[743,1,1,2,3]]],[23,1,1,3,4,[[794,1,1,3,4]]]],[17094,18327,18907,20172]]],["in",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18907]]],["lay",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18327]]],["place",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17094]]],["restingplace",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20172]]]]},{"k":"H7259","v":[["*",[30,29,[[0,30,29,0,29,[[21,1,1,0,1],[23,13,12,1,13],[24,3,3,13,16],[25,3,3,16,19],[26,6,6,19,25],[27,1,1,25,26],[28,1,1,26,27],[34,1,1,27,28],[48,1,1,28,29]]]],[570,606,620,621,636,642,644,649,650,651,652,655,658,678,679,686,699,700,727,732,733,738,742,769,773,778,807,1019,1504]]],["Rebekah",[28,27,[[0,28,27,0,27,[[21,1,1,0,1],[23,13,12,1,13],[24,3,3,13,16],[25,3,3,16,19],[26,6,6,19,25],[27,1,1,25,26],[48,1,1,26,27]]]],[570,606,620,621,636,642,644,649,650,651,652,655,658,678,679,686,699,700,727,732,733,738,742,769,773,778,1504]]],["Rebekah's",[2,2,[[0,2,2,0,2,[[28,1,1,0,1],[34,1,1,1,2]]]],[807,1019]]]]},{"k":"H7260","v":[["*",[8,8,[[26,8,8,0,8,[[851,1,1,0,1],[853,1,1,1,2],[856,6,6,2,8]]]],[21806,21840,21936,21940,21941,21944,21950,21953]]],["great",[6,6,[[26,6,6,0,6,[[851,1,1,0,1],[853,1,1,1,2],[856,4,4,2,6]]]],[21806,21840,21936,21940,21944,21950]]],["things",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21941,21953]]]]},{"k":"H7261","v":[["*",[8,8,[[26,8,8,0,8,[[853,1,1,0,1],[854,6,6,1,7],[855,1,1,7,8]]]],[21873,21875,21876,21877,21883,21884,21897,21922]]],["lords",[6,6,[[26,6,6,0,6,[[853,1,1,0,1],[854,4,4,1,5],[855,1,1,5,6]]]],[21873,21875,21883,21884,21897,21922]]],["princes",[2,2,[[26,2,2,0,2,[[854,2,2,0,2]]]],[21876,21877]]]]},{"k":"H7262","v":[["Rabshakeh",[16,16,[[11,8,8,0,8,[[330,6,6,0,6],[331,2,2,6,8]]],[22,8,8,8,16,[[714,6,6,8,14],[715,2,2,14,16]]]],[10041,10043,10050,10051,10052,10061,10065,10069,18332,18334,18341,18342,18343,18352,18356,18360]]]]},{"k":"H7263","v":[["clods",[2,2,[[17,2,2,0,2,[[456,1,1,0,1],[473,1,1,1,2]]]],[13388,13831]]]]},{"k":"H7264","v":[["*",[41,40,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[4,1,1,2,3,[[154,1,1,2,3]]],[8,2,2,3,5,[[249,1,1,3,4],[263,1,1,4,5]]],[9,3,3,5,8,[[273,1,1,5,6],[284,1,1,6,7],[288,1,1,7,8]]],[11,2,2,8,10,[[331,2,2,8,10]]],[12,1,1,10,11,[[354,1,1,10,11]]],[17,2,2,11,13,[[444,1,1,11,12],[447,1,1,12,13]]],[18,5,5,13,18,[[481,1,1,13,14],[495,1,1,14,15],[554,2,2,15,17],[576,1,1,17,18]]],[19,2,2,18,20,[[656,1,1,18,19],[657,1,1,19,20]]],[22,11,11,20,31,[[683,1,1,20,21],[691,1,1,21,22],[692,2,2,22,24],[701,1,1,24,25],[706,1,1,25,26],[710,2,2,26,28],[715,2,2,28,30],[742,1,1,30,31]]],[23,2,2,31,33,[[777,1,1,31,32],[794,1,1,32,33]]],[25,1,1,33,34,[[817,1,1,33,34]]],[28,2,2,34,36,[[877,2,2,34,36]]],[29,1,1,36,37,[[886,1,1,36,37]]],[32,1,1,37,38,[[899,1,1,37,38]]],[34,3,2,38,40,[[905,3,2,38,40]]]],[1382,1934,4963,7523,7957,8190,8511,8610,10088,10089,10872,13057,13134,13969,14125,15109,15111,15500,17233,17272,17764,17919,17937,17944,18088,18185,18269,18270,18380,18381,18887,19784,20200,20805,22312,22321,22489,22681,22775,22784]]],["+",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1382]]],["afraid",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1934]]],["awe",[1,1,[[18,1,1,0,1,[[481,1,1,0,1]]]],[13969]]],["disquiet",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20200]]],["disquieted",[2,2,[[8,1,1,0,1,[[263,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[7957,17272]]],["fretted",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20805]]],["move",[2,2,[[9,1,1,0,1,[[273,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]]],[8190,22681]]],["moved",[5,5,[[9,2,2,0,2,[[284,1,1,0,1],[288,1,1,1,2]]],[12,1,1,2,3,[[354,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]],[22,1,1,4,5,[[692,1,1,4,5]]]],[8511,8610,10872,14125,17937]]],["provoke",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13134]]],["quake",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22321]]],["quaked",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7523]]],["rage",[5,5,[[11,2,2,0,2,[[331,2,2,0,2]]],[19,1,1,2,3,[[656,1,1,2,3]]],[22,2,2,3,5,[[715,2,2,3,5]]]],[10088,10089,17233,18380,18381]]],["shake",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17919]]],["shaketh",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13057]]],["shook",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18088]]],["tremble",[9,9,[[4,1,1,0,1,[[154,1,1,0,1]]],[18,1,1,1,2,[[576,1,1,1,2]]],[22,3,3,2,5,[[683,1,1,2,3],[692,1,1,3,4],[742,1,1,4,5]]],[23,1,1,5,6,[[777,1,1,5,6]]],[28,1,1,6,7,[[877,1,1,6,7]]],[29,1,1,7,8,[[886,1,1,7,8]]],[34,1,1,8,9,[[905,1,1,8,9]]]],[4963,15500,17764,17944,18887,19784,22312,22489,22775]]],["trembled",[3,2,[[18,1,1,0,1,[[554,1,1,0,1]]],[34,2,1,1,2,[[905,2,1,1,2]]]],[15111,22784]]],["troubled",[3,3,[[18,1,1,0,1,[[554,1,1,0,1]]],[22,2,2,1,3,[[710,2,2,1,3]]]],[15109,18269,18270]]],["wroth",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18185]]]]},{"k":"H7265","v":[["+",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12146]]]]},{"k":"H7266","v":[["rage",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21820]]]]},{"k":"H7267","v":[["*",[7,7,[[17,5,5,0,5,[[438,2,2,0,2],[449,1,1,2,3],[472,1,1,3,4],[474,1,1,4,5]]],[22,1,1,5,6,[[692,1,1,5,6]]],[34,1,1,6,7,[[905,1,1,6,7]]]],[12921,12930,13182,13771,13858,17931,22770]]],["+",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17931]]],["noise",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13771]]],["rage",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13858]]],["trouble",[2,2,[[17,2,2,0,2,[[438,1,1,0,1],[449,1,1,1,2]]]],[12930,13182]]],["troubling",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12921]]],["wrath",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22770]]]]},{"k":"H7268","v":[["trembling",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5676]]]]},{"k":"H7269","v":[["trembling",[1,1,[[25,1,1,0,1,[[813,1,1,0,1]]]],[20698]]]]},{"k":"H7270","v":[["*",[25,24,[[0,7,7,0,7,[[41,7,7,0,7]]],[3,1,1,7,8,[[137,1,1,7,8]]],[4,1,1,8,9,[[153,1,1,8,9]]],[5,7,6,9,15,[[188,1,1,9,10],[192,3,3,10,13],[193,2,1,13,14],[200,1,1,14,15]]],[6,3,3,15,18,[[228,3,3,15,18]]],[8,1,1,18,19,[[261,1,1,18,19]]],[9,3,3,19,22,[[276,1,1,19,20],[281,1,1,20,21],[285,1,1,21,22]]],[12,1,1,22,23,[[356,1,1,22,23]]],[18,1,1,23,24,[[492,1,1,23,24]]]],[1261,1263,1266,1268,1282,1283,1286,4372,4916,5870,5971,5972,5974,5978,6194,6995,7007,7010,7909,8243,8399,8538,10910,14090]]],["+",[10,9,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[5,5,4,2,6,[[192,2,2,2,4],[193,2,1,4,5],[200,1,1,5,6]]],[6,3,3,6,9,[[228,3,3,6,9]]]],[4372,4916,5971,5974,5978,6194,6995,7007,7010]]],["backbiteth",[1,1,[[18,1,1,0,1,[[492,1,1,0,1]]]],[14090]]],["out",[2,2,[[9,1,1,0,1,[[276,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]]],[8243,10910]]],["slandered",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8538]]],["spies",[10,10,[[0,7,7,0,7,[[41,7,7,0,7]]],[5,1,1,7,8,[[192,1,1,7,8]]],[8,1,1,8,9,[[261,1,1,8,9]]],[9,1,1,9,10,[[281,1,1,9,10]]]],[1261,1263,1266,1268,1282,1283,1286,5972,7909,8399]]],["spy",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5870]]]]},{"k":"H7271","v":[["feet",[7,7,[[26,7,7,0,7,[[851,4,4,0,4],[856,3,3,4,7]]]],[21791,21792,21799,21800,21937,21940,21952]]]]},{"k":"H7272","v":[["*",[245,230,[[0,13,11,0,11,[[7,1,1,0,1],[17,1,1,1,2],[18,1,1,2,3],[23,2,1,3,4],[28,1,1,4,5],[29,1,1,5,6],[32,2,1,6,7],[40,1,1,7,8],[42,1,1,8,9],[48,2,2,9,11]]],[1,14,13,11,24,[[52,1,1,11,12],[53,1,1,12,13],[60,1,1,13,14],[61,1,1,14,15],[70,2,1,15,16],[72,1,1,16,17],[73,1,1,17,18],[74,1,1,18,19],[78,1,1,19,20],[79,2,2,20,22],[86,1,1,22,23],[89,1,1,23,24]]],[2,11,11,24,35,[[97,2,2,24,26],[100,3,3,26,29],[102,1,1,29,30],[103,4,4,30,34],[110,1,1,34,35]]],[3,5,5,35,40,[[136,1,1,35,36],[138,4,4,36,40]]],[4,17,16,40,56,[[154,2,2,40,42],[160,1,1,42,43],[163,3,3,43,46],[171,2,1,46,47],[177,1,1,47,48],[180,4,4,48,52],[181,1,1,52,53],[184,1,1,53,54],[185,2,2,54,56]]],[5,11,10,56,66,[[187,1,1,56,57],[189,2,2,57,59],[190,3,3,59,62],[191,1,1,62,63],[195,1,1,63,64],[196,2,1,64,65],[200,1,1,65,66]]],[6,11,10,66,76,[[211,2,2,66,68],[213,1,1,68,69],[214,3,3,69,72],[215,3,2,72,74],[218,1,1,74,75],[229,1,1,75,76]]],[8,9,9,76,85,[[237,1,1,76,77],[249,1,1,77,78],[252,1,1,78,79],[258,1,1,79,80],[259,1,1,80,81],[260,4,4,81,85]]],[9,16,16,85,101,[[268,1,1,85,86],[269,1,1,86,87],[270,2,2,87,89],[275,2,2,89,91],[277,1,1,91,92],[280,1,1,92,93],[281,3,3,93,96],[285,1,1,96,97],[287,1,1,97,98],[288,3,3,98,101]]],[10,6,6,101,107,[[292,1,1,101,102],[295,1,1,102,103],[304,2,2,103,105],[305,1,1,105,106],[310,1,1,106,107]]],[11,7,7,107,114,[[315,1,1,107,108],[316,2,2,108,110],[318,1,1,110,111],[321,1,1,111,112],[325,1,1,112,113],[333,1,1,113,114]]],[12,2,1,114,115,[[365,2,1,114,115]]],[13,3,3,115,118,[[369,1,1,115,116],[382,1,1,116,117],[399,1,1,117,118]]],[15,1,1,118,119,[[421,1,1,118,119]]],[16,1,1,119,120,[[433,1,1,119,120]]],[17,13,12,120,132,[[437,1,1,120,121],[447,1,1,121,122],[448,2,1,122,123],[453,2,2,123,125],[458,1,1,125,126],[463,1,1,126,127],[464,1,1,127,128],[465,1,1,128,129],[466,1,1,129,130],[468,1,1,130,131],[474,1,1,131,132]]],[18,31,31,132,163,[[485,1,1,132,133],[486,1,1,133,134],[495,3,3,134,137],[499,1,1,137,138],[502,1,1,138,139],[503,1,1,139,140],[508,1,1,140,141],[513,1,1,141,142],[515,1,1,142,143],[517,1,1,143,144],[524,1,1,144,145],[533,1,1,145,146],[543,2,2,146,148],[545,1,1,148,149],[550,1,1,149,150],[568,1,1,150,151],[571,1,1,151,152],[576,1,1,152,153],[582,1,1,153,154],[587,1,1,154,155],[592,1,1,155,156],[593,1,1,156,157],[596,3,3,157,160],[598,1,1,160,161],[599,1,1,161,162],[609,1,1,162,163]]],[19,15,15,163,178,[[628,2,2,163,165],[630,2,2,165,167],[631,2,2,167,169],[632,1,1,169,170],[633,3,3,170,173],[634,1,1,173,174],[646,1,1,174,175],[652,2,2,175,177],[653,1,1,177,178]]],[20,1,1,178,179,[[663,1,1,178,179]]],[21,1,1,179,180,[[675,1,1,179,180]]],[22,19,18,180,198,[[679,1,1,180,181],[681,1,1,181,182],[684,1,1,182,183],[685,1,1,183,184],[698,1,1,184,185],[701,1,1,185,186],[704,2,1,186,187],[706,1,1,187,188],[710,1,1,188,189],[719,2,2,189,191],[727,1,1,191,192],[730,1,1,192,193],[736,1,1,193,194],[737,1,1,194,195],[738,2,2,195,197],[744,1,1,197,198]]],[23,5,5,198,203,[[746,1,1,198,199],[757,1,1,199,200],[758,1,1,200,201],[762,1,1,201,202],[782,1,1,202,203]]],[24,3,3,203,206,[[797,1,1,203,204],[798,1,1,204,205],[799,1,1,205,206]]],[25,22,16,206,222,[[802,4,1,206,207],[803,2,2,207,209],[804,1,1,209,210],[807,1,1,210,211],[817,1,1,211,212],[825,2,2,212,214],[826,1,1,214,215],[830,2,1,215,216],[833,2,2,216,218],[835,4,2,218,220],[838,1,1,220,221],[844,1,1,221,222]]],[29,1,1,222,223,[[880,1,1,222,223]]],[33,2,2,223,225,[[900,2,2,223,225]]],[34,2,2,225,227,[[905,2,2,225,227]]],[37,2,2,227,229,[[924,2,2,227,229]]],[38,1,1,229,230,[[928,1,1,229,230]]]],[192,428,459,623,796,860,974,1239,1314,1483,1506,1584,1626,1814,1827,2101,2158,2187,2221,2356,2401,2403,2617,2738,2940,2941,3018,3020,3039,3064,3125,3128,3136,3139,3364,4330,4400,4403,4407,4408,4943,4966,5141,5214,5218,5232,5427,5556,5646,5667,5668,5676,5684,5793,5813,5834,5854,5906,5908,5913,5919,5928,5949,6042,6088,6196,6515,6516,6592,6609,6614,6616,6638,6650,6724,7045,7249,7521,7624,7832,7842,7885,7888,7902,7903,8067,8115,8124,8132,8230,8240,8267,8381,8405,8406,8407,8535,8600,8612,8636,8641,8775,8881,9224,9230,9272,9418,9585,9630,9640,9706,9791,9892,10127,11145,11242,11521,11916,12532,12820,12898,13133,13180,13284,13287,13430,13508,13547,13569,13593,13661,13849,14018,14036,14127,14151,14156,14220,14266,14285,14339,14449,14506,14527,14628,14768,14879,14882,14923,15022,15407,15449,15504,15624,15787,15837,15856,15957,15999,16003,16084,16091,16158,16415,16416,16478,16481,16516,16517,16522,16553,16558,16568,16586,16927,17130,17132,17147,17398,17601,17660,17723,17771,17802,18031,18084,18136,18167,18279,18453,18454,18659,18703,18799,18807,18834,18835,18923,18990,19282,19303,19406,19917,20323,20333,20388,20471,20493,20494,20526,20574,20787,21073,21079,21089,21194,21250,21261,21331,21332,21407,21579,22394,22687,22699,22773,22787,23072,23080,23141]]],["+",[12,12,[[0,1,1,0,1,[[28,1,1,0,1]]],[2,1,1,1,2,[[110,1,1,1,2]]],[4,1,1,2,3,[[154,1,1,2,3]]],[8,1,1,3,4,[[260,1,1,3,4]]],[12,1,1,4,5,[[365,1,1,4,5]]],[18,4,4,5,9,[[502,1,1,5,6],[576,1,1,6,7],[587,1,1,7,8],[609,1,1,8,9]]],[22,1,1,9,10,[[744,1,1,9,10]]],[24,1,1,10,11,[[798,1,1,10,11]]],[37,1,1,11,12,[[924,1,1,11,12]]]],[796,3364,4943,7888,11145,14266,15504,15787,16158,18923,20333,23080]]],["after",[4,4,[[8,1,1,0,1,[[260,1,1,0,1]]],[9,3,3,1,4,[[281,3,3,1,4]]]],[7903,8405,8406,8407]]],["as",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[974]]],["coming",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[860]]],["endure",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[974]]],["feet",[150,142,[[0,7,6,0,6,[[17,1,1,0,1],[18,1,1,1,2],[23,2,1,2,3],[42,1,1,3,4],[48,2,2,4,6]]],[1,9,9,6,15,[[52,1,1,6,7],[53,1,1,7,8],[61,1,1,8,9],[73,1,1,9,10],[74,1,1,10,11],[79,2,2,11,13],[86,1,1,13,14],[89,1,1,14,15]]],[2,4,4,15,19,[[97,1,1,15,16],[100,3,3,16,19]]],[3,1,1,19,20,[[136,1,1,19,20]]],[4,4,4,20,24,[[154,1,1,20,21],[163,1,1,21,22],[180,1,1,22,23],[185,1,1,23,24]]],[5,9,8,24,32,[[189,2,2,24,26],[190,3,3,26,29],[195,1,1,29,30],[196,2,1,30,31],[200,1,1,31,32]]],[6,7,6,32,38,[[213,1,1,32,33],[214,3,3,33,36],[215,2,1,36,37],[229,1,1,37,38]]],[8,5,5,38,43,[[237,1,1,38,39],[249,1,1,39,40],[259,1,1,40,41],[260,2,2,41,43]]],[9,10,10,43,53,[[269,1,1,43,44],[270,2,2,44,46],[275,2,2,46,48],[277,1,1,48,49],[285,1,1,49,50],[288,3,3,50,53]]],[10,5,5,53,58,[[292,1,1,53,54],[295,1,1,54,55],[304,2,2,55,57],[305,1,1,57,58]]],[11,6,6,58,64,[[316,2,2,58,60],[318,1,1,60,61],[321,1,1,61,62],[325,1,1,62,63],[333,1,1,63,64]]],[12,1,1,64,65,[[365,1,1,64,65]]],[13,2,2,65,67,[[369,1,1,65,66],[382,1,1,66,67]]],[15,1,1,67,68,[[421,1,1,67,68]]],[16,1,1,68,69,[[433,1,1,68,69]]],[17,8,7,69,76,[[447,1,1,69,70],[448,2,1,70,71],[453,2,2,71,73],[464,1,1,73,74],[465,1,1,74,75],[468,1,1,75,76]]],[18,18,18,76,94,[[485,1,1,76,77],[495,3,3,77,80],[499,1,1,80,81],[508,1,1,81,82],[517,1,1,82,83],[524,1,1,83,84],[533,1,1,84,85],[543,1,1,85,86],[550,1,1,86,87],[582,1,1,87,88],[592,1,1,88,89],[593,1,1,89,90],[596,3,3,90,93],[599,1,1,93,94]]],[19,9,9,94,103,[[628,1,1,94,95],[631,1,1,95,96],[632,1,1,96,97],[633,3,3,97,100],[634,1,1,100,101],[646,1,1,101,102],[653,1,1,102,103]]],[21,1,1,103,104,[[675,1,1,103,104]]],[22,13,13,104,117,[[681,1,1,104,105],[684,1,1,105,106],[685,1,1,106,107],[701,1,1,107,108],[704,1,1,108,109],[706,1,1,109,110],[710,1,1,110,111],[719,1,1,111,112],[727,1,1,112,113],[730,1,1,113,114],[737,1,1,114,115],[738,2,2,115,117]]],[23,4,4,117,121,[[757,1,1,117,118],[758,1,1,118,119],[762,1,1,119,120],[782,1,1,120,121]]],[24,2,2,121,123,[[797,1,1,121,122],[799,1,1,122,123]]],[25,17,13,123,136,[[802,3,1,123,124],[803,2,2,124,126],[804,1,1,126,127],[817,1,1,127,128],[825,2,2,128,130],[826,1,1,130,131],[833,1,1,131,132],[835,4,2,132,134],[838,1,1,134,135],[844,1,1,135,136]]],[33,2,2,136,138,[[900,2,2,136,138]]],[34,2,2,138,140,[[905,2,2,138,140]]],[37,1,1,140,141,[[924,1,1,140,141]]],[38,1,1,141,142,[[928,1,1,141,142]]]],[428,459,623,1314,1483,1506,1584,1626,1827,2187,2221,2401,2403,2617,2738,2941,3018,3020,3039,4330,4966,5232,5668,5813,5906,5908,5913,5919,5928,6042,6088,6196,6592,6609,6614,6616,6650,7045,7249,7521,7842,7885,7902,8115,8124,8132,8230,8240,8267,8535,8612,8636,8641,8775,8881,9224,9230,9272,9630,9640,9706,9791,9892,10127,11145,11242,11521,12532,12820,13133,13180,13284,13287,13547,13569,13661,14018,14127,14151,14156,14220,14339,14527,14628,14768,14882,15022,15624,15837,15856,15957,15999,16003,16091,16416,16516,16522,16553,16558,16568,16586,16927,17147,17601,17723,17771,17802,18084,18136,18167,18279,18454,18659,18703,18807,18834,18835,19282,19303,19406,19917,20323,20388,20471,20493,20494,20526,20787,21073,21079,21089,21250,21331,21332,21407,21579,22687,22699,22773,22787,23072,23141]]],["follow",[3,3,[[1,1,1,0,1,[[60,1,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]],[10,1,1,2,3,[[310,1,1,2,3]]]],[1814,6724,9418]]],["followed",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9585]]],["foot",[63,60,[[0,2,2,0,2,[[7,1,1,0,1],[40,1,1,1,2]]],[1,3,2,2,4,[[70,2,1,2,3],[78,1,1,3,4]]],[2,6,6,4,10,[[97,1,1,4,5],[102,1,1,5,6],[103,4,4,6,10]]],[3,1,1,10,11,[[138,1,1,10,11]]],[4,11,10,11,21,[[160,1,1,11,12],[163,1,1,12,13],[171,2,1,13,14],[177,1,1,14,15],[180,3,3,15,18],[181,1,1,18,19],[184,1,1,19,20],[185,1,1,20,21]]],[5,2,2,21,23,[[187,1,1,21,22],[191,1,1,22,23]]],[6,1,1,23,24,[[215,1,1,23,24]]],[9,3,3,24,27,[[268,1,1,24,25],[280,1,1,25,26],[287,1,1,26,27]]],[13,1,1,27,28,[[399,1,1,27,28]]],[17,5,5,28,33,[[437,1,1,28,29],[458,1,1,29,30],[463,1,1,30,31],[466,1,1,31,32],[474,1,1,32,33]]],[18,9,9,33,42,[[486,1,1,33,34],[503,1,1,34,35],[513,1,1,35,36],[515,1,1,36,37],[543,1,1,37,38],[545,1,1,38,39],[568,1,1,39,40],[571,1,1,40,41],[598,1,1,41,42]]],[19,6,6,42,48,[[628,1,1,42,43],[630,2,2,43,45],[631,1,1,45,46],[652,2,2,46,48]]],[20,1,1,48,49,[[663,1,1,48,49]]],[22,5,5,49,54,[[679,1,1,49,50],[698,1,1,50,51],[704,1,1,51,52],[719,1,1,52,53],[736,1,1,53,54]]],[23,1,1,54,55,[[746,1,1,54,55]]],[25,5,4,55,59,[[802,1,1,55,56],[807,1,1,56,57],[830,2,1,57,58],[833,1,1,58,59]]],[29,1,1,59,60,[[880,1,1,59,60]]]],[192,1239,2101,2356,2940,3064,3125,3128,3136,3139,4400,5141,5218,5427,5556,5646,5667,5676,5684,5793,5834,5854,5949,6638,8067,8381,8600,11916,12898,13430,13508,13593,13849,14036,14285,14449,14506,14879,14923,15407,15449,16084,16415,16478,16481,16517,17130,17132,17398,17660,18031,18136,18453,18799,18990,20471,20574,21194,21261,22394]]],["haunt",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7832]]],["legs",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7624]]],["possession",[1,1,[[4,1,1,0,1,[[163,1,1,0,1]]]],[5214]]],["times",[4,4,[[1,1,1,0,1,[[72,1,1,0,1]]],[3,3,3,1,4,[[138,3,3,1,4]]]],[2158,4403,4407,4408]]],["toes",[2,2,[[6,2,2,0,2,[[211,2,2,0,2]]]],[6515,6516]]]]},{"k":"H7273","v":[["*",[12,12,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[6,1,1,2,3,[[230,1,1,2,3]]],[8,2,2,3,5,[[239,1,1,3,4],[250,1,1,4,5]]],[9,2,2,5,7,[[274,1,1,5,6],[276,1,1,6,7]]],[10,1,1,7,8,[[310,1,1,7,8]]],[11,1,1,8,9,[[325,1,1,8,9]]],[12,2,2,9,11,[[355,1,1,9,10],[356,1,1,10,11]]],[23,1,1,11,12,[[756,1,1,11,12]]]],[1853,4045,7056,7307,7564,8213,8246,9437,9878,10894,10925,19254]]],["+",[4,4,[[6,1,1,0,1,[[230,1,1,0,1]]],[9,1,1,1,2,[[274,1,1,1,2]]],[12,2,2,2,4,[[355,1,1,2,3],[356,1,1,3,4]]]],[7056,8213,10894,10925]]],["foot",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1853]]],["footmen",[7,7,[[3,1,1,0,1,[[127,1,1,0,1]]],[8,2,2,1,3,[[239,1,1,1,2],[250,1,1,2,3]]],[9,1,1,3,4,[[276,1,1,3,4]]],[10,1,1,4,5,[[310,1,1,4,5]]],[11,1,1,5,6,[[325,1,1,5,6]]],[23,1,1,6,7,[[756,1,1,6,7]]]],[4045,7307,7564,8246,9437,9878,19254]]]]},{"k":"H7274","v":[["+",[2,2,[[9,2,2,0,2,[[283,1,1,0,1],[285,1,1,1,2]]]],[8476,8542]]]]},{"k":"H7275","v":[["*",[16,15,[[2,6,5,0,5,[[109,2,2,0,2],[113,4,3,2,5]]],[3,3,3,5,8,[[130,1,1,5,6],[131,2,2,6,8]]],[4,1,1,8,9,[[173,1,1,8,9]]],[5,1,1,9,10,[[193,1,1,9,10]]],[10,1,1,10,11,[[302,1,1,10,11]]],[13,2,2,11,13,[[376,1,1,11,12],[390,1,1,12,13]]],[25,2,2,13,15,[[817,1,1,13,14],[824,1,1,14,15]]]],[3320,3345,3460,3462,3469,4118,4188,4189,5468,6001,9169,11413,11698,20802,21054]]],["+",[3,2,[[2,2,1,0,1,[[113,2,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[3462,21054]]],["stone",[8,8,[[2,4,4,0,4,[[109,2,2,0,2],[113,2,2,2,4]]],[3,2,2,4,6,[[130,1,1,4,5],[131,1,1,5,6]]],[4,1,1,6,7,[[173,1,1,6,7]]],[25,1,1,7,8,[[817,1,1,7,8]]]],[3320,3345,3460,3469,4118,4188,5468,20802]]],["stoned",[5,5,[[3,1,1,0,1,[[131,1,1,0,1]]],[5,1,1,1,2,[[193,1,1,1,2]]],[10,1,1,2,3,[[302,1,1,2,3]]],[13,2,2,3,5,[[376,1,1,3,4],[390,1,1,4,5]]]],[4189,6001,9169,11413,11698]]]]},{"k":"H7276","v":[["Regem",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10353]]]]},{"k":"H7277","v":[["council",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14927]]]]},{"k":"H7278","v":[["Regemmelech",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22964]]]]},{"k":"H7279","v":[["murmured",[3,3,[[4,1,1,0,1,[[153,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]],[22,1,1,2,3,[[707,1,1,2,3]]]],[4919,15676,18217]]]]},{"k":"H7280","v":[["*",[13,13,[[4,1,1,0,1,[[180,1,1,0,1]]],[17,2,2,1,3,[[442,1,1,1,2],[461,1,1,2,3]]],[19,1,1,3,4,[[639,1,1,3,4]]],[22,3,3,4,7,[[712,1,1,4,5],[729,2,2,5,7]]],[23,6,6,7,13,[[775,2,2,7,9],[791,1,1,9,10],[793,1,1,10,11],[794,2,2,11,13]]]],[5676,13013,13479,16738,18317,18677,18688,19693,19726,20079,20146,20200,20210]]],["+",[2,2,[[4,1,1,0,1,[[180,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]]],[5676,20200]]],["broken",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13013]]],["divided",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18688]]],["divideth",[2,2,[[17,1,1,0,1,[[461,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[13479,19726]]],["moment",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16738]]],["rest",[4,4,[[22,2,2,0,2,[[712,1,1,0,1],[729,1,1,1,2]]],[23,2,2,2,4,[[775,1,1,2,3],[791,1,1,3,4]]]],[18317,18677,19693,20079]]],["suddenly",[2,2,[[23,2,2,0,2,[[793,1,1,0,1],[794,1,1,1,2]]]],[20146,20210]]]]},{"k":"H7281","v":[["*",[22,22,[[1,1,1,0,1,[[82,1,1,0,1]]],[3,2,2,1,3,[[132,2,2,1,3]]],[14,1,1,3,4,[[411,1,1,3,4]]],[17,4,4,4,8,[[442,1,1,4,5],[455,1,1,5,6],[456,1,1,6,7],[469,1,1,7,8]]],[18,3,3,8,11,[[483,1,1,8,9],[507,1,1,9,10],[550,1,1,10,11]]],[22,5,5,11,16,[[704,1,1,11,12],[705,1,1,12,13],[725,1,1,13,14],[732,2,2,14,16]]],[23,3,3,16,19,[[748,1,1,16,17],[762,2,2,17,19]]],[24,1,1,19,20,[[800,1,1,19,20]]],[25,2,2,20,22,[[827,1,1,20,21],[833,1,1,21,22]]]],[2478,4215,4239,12245,13026,13331,13368,13703,13995,14324,15039,18150,18154,18608,18730,18731,19047,19391,19393,20426,21116,21258]]],["instant",[2,2,[[23,2,2,0,2,[[762,2,2,0,2]]]],[19391,19393]]],["moment",[18,18,[[1,1,1,0,1,[[82,1,1,0,1]]],[3,2,2,1,3,[[132,2,2,1,3]]],[17,4,4,3,7,[[442,1,1,3,4],[455,1,1,4,5],[456,1,1,5,6],[469,1,1,6,7]]],[18,2,2,7,9,[[507,1,1,7,8],[550,1,1,8,9]]],[22,5,5,9,14,[[704,1,1,9,10],[705,1,1,10,11],[725,1,1,11,12],[732,2,2,12,14]]],[23,1,1,14,15,[[748,1,1,14,15]]],[24,1,1,15,16,[[800,1,1,15,16]]],[25,2,2,16,18,[[827,1,1,16,17],[833,1,1,17,18]]]],[2478,4215,4239,13026,13331,13368,13703,14324,15039,18150,18154,18608,18730,18731,19047,20426,21116,21258]]],["space",[1,1,[[14,1,1,0,1,[[411,1,1,0,1]]]],[12245]]],["suddenly",[1,1,[[18,1,1,0,1,[[483,1,1,0,1]]]],[13995]]]]},{"k":"H7282","v":[["quiet",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14430]]]]},{"k":"H7283","v":[["rage",[1,1,[[18,1,1,0,1,[[479,1,1,0,1]]]],[13946]]]]},{"k":"H7284","v":[["*",[3,3,[[26,3,3,0,3,[[855,3,3,0,3]]]],[21911,21916,21920]]],["assembled",[2,2,[[26,2,2,0,2,[[855,2,2,0,2]]]],[21916,21920]]],["together",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21911]]]]},{"k":"H7285","v":[["*",[2,2,[[18,2,2,0,2,[[532,1,1,0,1],[541,1,1,1,2]]]],[14746,14852]]],["+",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14852]]],["company",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14746]]]]},{"k":"H7286","v":[["*",[4,4,[[6,1,1,0,1,[[229,1,1,0,1]]],[10,1,1,1,2,[[296,1,1,1,2]]],[18,1,1,2,3,[[621,1,1,2,3]]],[22,1,1,3,4,[[723,1,1,3,4]]]],[7035,8928,16307,18562]]],["+",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8928]]],["spent",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7035]]],["subdue",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18562]]],["subdueth",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16307]]]]},{"k":"H7287","v":[["*",[27,25,[[0,2,2,0,2,[[0,2,2,0,2]]],[2,4,4,2,6,[[114,3,3,2,5],[115,1,1,5,6]]],[3,1,1,6,7,[[140,1,1,6,7]]],[6,4,2,7,9,[[215,2,1,7,8],[224,2,1,8,9]]],[10,3,3,9,12,[[294,1,1,9,10],[295,1,1,10,11],[299,1,1,11,12]]],[13,1,1,12,13,[[374,1,1,12,13]]],[15,1,1,13,14,[[421,1,1,13,14]]],[18,4,4,14,18,[[526,1,1,14,15],[545,1,1,15,16],[549,1,1,16,17],[587,1,1,17,18]]],[22,3,3,18,21,[[692,2,2,18,20],[719,1,1,20,21]]],[23,1,1,21,22,[[749,1,1,21,22]]],[24,1,1,22,23,[[797,1,1,22,23]]],[25,2,2,23,25,[[830,1,1,23,24],[835,1,1,24,25]]]],[25,27,3512,3515,3522,3541,4465,6636,6918,8868,8894,9074,11356,12539,14662,14927,15008,15788,17930,17934,18453,19089,20323,21198,21317]]],["+",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3522]]],["against",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20323]]],["dominion",[9,8,[[0,2,2,0,2,[[0,2,2,0,2]]],[3,1,1,2,3,[[140,1,1,2,3]]],[6,2,1,3,4,[[215,2,1,3,4]]],[10,1,1,4,5,[[294,1,1,4,5]]],[15,1,1,5,6,[[421,1,1,5,6]]],[18,2,2,6,8,[[526,1,1,6,7],[549,1,1,7,8]]]],[25,27,4465,6636,8868,12539,14662,15008]]],["over",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17930]]],["reign",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3541]]],["rule",[8,8,[[2,2,2,0,2,[[114,2,2,0,2]]],[10,1,1,2,3,[[299,1,1,2,3]]],[13,1,1,3,4,[[374,1,1,3,4]]],[18,1,1,4,5,[[587,1,1,4,5]]],[22,1,1,5,6,[[719,1,1,5,6]]],[23,1,1,6,7,[[749,1,1,6,7]]],[25,1,1,7,8,[[830,1,1,7,8]]]],[3512,3515,9074,11356,15788,18453,19089,21198]]],["ruled",[3,3,[[10,1,1,0,1,[[295,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]],[25,1,1,2,3,[[835,1,1,2,3]]]],[8894,17934,21317]]],["ruler",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14927]]],["taken",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6918]]],["took",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6918]]]]},{"k":"H7288","v":[["Raddai",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10320]]]]},{"k":"H7289","v":[["*",[2,2,[[21,1,1,0,1,[[675,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]]],[17605,17730]]],["vails",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17730]]],["veil",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17605]]]]},{"k":"H7290","v":[["*",[7,7,[[6,1,1,0,1,[[214,1,1,0,1]]],[18,1,1,1,2,[[553,1,1,1,2]]],[19,1,1,2,3,[[637,1,1,2,3]]],[26,2,2,3,5,[[857,1,1,3,4],[859,1,1,4,5]]],[31,2,2,5,7,[[889,2,2,5,7]]]],[6620,15087,16661,21979,22024,22536,22537]]],["asleep",[2,2,[[6,1,1,0,1,[[214,1,1,0,1]]],[31,1,1,1,2,[[889,1,1,1,2]]]],[6620,22536]]],["sleep",[3,3,[[18,1,1,0,1,[[553,1,1,0,1]]],[26,2,2,1,3,[[857,1,1,1,2],[859,1,1,2,3]]]],[15087,21979,22024]]],["sleeper",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22537]]],["sleepeth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16661]]]]},{"k":"H7291","v":[["*",[143,135,[[0,5,5,0,5,[[13,2,2,0,2],[30,1,1,2,3],[34,1,1,3,4],[43,1,1,4,5]]],[1,5,5,5,10,[[63,4,4,5,9],[64,1,1,9,10]]],[2,7,5,10,15,[[115,7,5,10,15]]],[4,8,8,15,23,[[153,1,1,15,16],[163,1,1,16,17],[168,1,1,17,18],[171,1,1,18,19],[180,2,2,19,21],[182,1,1,21,22],[184,1,1,22,23]]],[5,19,15,23,38,[[188,7,4,23,27],[193,1,1,27,28],[194,5,4,28,32],[196,2,2,32,34],[197,1,1,34,35],[206,1,1,35,36],[209,1,1,36,37],[210,1,1,37,38]]],[6,11,11,38,49,[[211,1,1,38,39],[213,1,1,39,40],[214,2,2,40,42],[217,2,2,42,44],[218,3,3,44,47],[219,1,1,47,48],[230,1,1,48,49]]],[8,11,10,49,59,[[242,1,1,49,50],[252,1,1,50,51],[258,2,2,51,53],[259,1,1,53,54],[260,1,1,54,55],[261,2,2,55,57],[265,3,2,57,59]]],[9,11,11,59,70,[[268,3,3,59,62],[283,1,1,62,63],[284,1,1,63,64],[286,4,4,64,68],[288,1,1,68,69],[290,1,1,69,70]]],[10,1,1,70,71,[[310,1,1,70,71]]],[11,3,3,71,74,[[317,1,1,71,72],[321,1,1,72,73],[337,1,1,73,74]]],[13,2,2,74,76,[[379,1,1,74,75],[380,1,1,75,76]]],[15,1,1,76,77,[[421,1,1,76,77]]],[17,4,4,77,81,[[448,1,1,77,78],[454,2,2,78,80],[465,1,1,80,81]]],[18,20,20,81,101,[[484,2,2,81,83],[495,1,1,83,84],[500,1,1,84,85],[508,1,1,85,86],[511,1,1,86,87],[512,2,2,87,89],[515,1,1,89,90],[546,1,1,90,91],[548,1,1,91,92],[560,1,1,92,93],[586,1,1,93,94],[596,5,5,94,99],[619,1,1,99,100],[620,1,1,100,101]]],[19,8,8,101,109,[[638,1,1,101,102],[639,1,1,102,103],[640,1,1,103,104],[642,1,1,104,105],[646,1,1,105,106],[648,1,1,106,107],[655,2,2,107,109]]],[20,1,1,109,110,[[661,1,1,109,110]]],[22,6,6,110,116,[[679,1,1,110,111],[683,1,1,111,112],[695,1,1,112,113],[708,1,1,113,114],[719,1,1,114,115],[729,1,1,115,116]]],[23,6,6,116,122,[[759,1,1,116,117],[761,1,1,117,118],[764,1,1,118,119],[773,1,1,119,120],[783,1,1,120,121],[796,1,1,121,122]]],[24,6,6,122,128,[[797,2,2,122,124],[799,2,2,124,126],[800,1,1,126,127],[801,1,1,127,128]]],[25,2,1,128,129,[[836,2,1,128,129]]],[27,4,4,129,133,[[863,1,1,129,130],[867,1,1,130,131],[869,1,1,131,132],[873,1,1,132,133]]],[29,1,1,133,134,[[879,1,1,133,134]]],[33,1,1,134,135,[[900,1,1,134,135]]]],[350,351,896,1016,1328,1893,1897,1898,1912,1929,3531,3532,3541,3560,3561,4936,5212,5362,5412,5633,5656,5715,5788,5874,5876,5885,5891,5981,6018,6019,6022,6026,6074,6083,6115,6377,6470,6482,6515,6596,6615,6621,6717,6719,6723,6724,6731,6794,7097,7363,7670,7835,7838,7853,7890,7923,7925,7986,7988,8068,8073,8077,8450,8494,8560,8561,8564,8567,8640,8705,9428,9668,9783,10227,11472,11488,12522,13178,13319,13325,13572,13996,14000,14155,14241,14346,14402,14413,14416,14510,14961,14987,15256,15771,15982,15984,16048,16055,16059,16292,16296,16707,16730,16768,16816,16932,17005,17197,17215,17374,17677,17750,17996,18233,18454,18674,19330,19375,19433,19653,19928,20284,20313,20316,20397,20420,20439,20447,21350,22112,22170,22197,22253,22375,22692]]],["+",[14,14,[[2,2,2,0,2,[[115,2,2,0,2]]],[4,1,1,2,3,[[171,1,1,2,3]]],[6,2,2,3,5,[[214,1,1,3,4],[217,1,1,4,5]]],[8,3,3,5,8,[[242,1,1,5,6],[252,1,1,6,7],[258,1,1,7,8]]],[9,1,1,8,9,[[284,1,1,8,9]]],[18,2,2,9,11,[[508,1,1,9,10],[619,1,1,10,11]]],[23,2,2,11,13,[[759,1,1,11,12],[773,1,1,12,13]]],[27,1,1,13,14,[[863,1,1,13,14]]]],[3531,3532,5412,6621,6719,7363,7670,7838,8494,14346,16292,19330,19653,22112]]],["Follow",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6596]]],["Persecute",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20420]]],["Pursue",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7986]]],["after",[5,5,[[18,1,1,0,1,[[596,1,1,0,1]]],[19,1,1,1,2,[[642,1,1,1,2]]],[22,2,2,2,4,[[679,1,1,2,3],[729,1,1,3,4]]],[27,1,1,4,5,[[873,1,1,4,5]]]],[16048,16816,17677,18674,22253]]],["chase",[4,4,[[2,2,2,0,2,[[115,2,2,0,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[5,1,1,3,4,[[209,1,1,3,4]]]],[3532,3560,5788,6470]]],["chased",[8,8,[[4,1,1,0,1,[[153,1,1,0,1]]],[5,4,4,1,5,[[193,1,1,1,2],[194,1,1,2,3],[196,1,1,3,4],[197,1,1,4,5]]],[6,2,2,5,7,[[219,1,1,5,6],[230,1,1,6,7]]],[22,1,1,7,8,[[695,1,1,7,8]]]],[4936,5981,6026,6074,6115,6794,7097,17996]]],["follow",[6,6,[[0,1,1,0,1,[[43,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[4,1,1,2,3,[[168,1,1,2,3]]],[18,2,2,3,5,[[500,1,1,3,4],[515,1,1,4,5]]],[22,1,1,5,6,[[683,1,1,5,6]]]],[1328,1893,5362,14241,14510,17750]]],["followed",[2,2,[[11,2,2,0,2,[[317,1,1,0,1],[321,1,1,1,2]]]],[9668,9783]]],["followeth",[3,3,[[19,3,3,0,3,[[639,1,1,0,1],[648,1,1,1,2],[655,1,1,2,3]]]],[16730,17005,17215]]],["hunt",[1,1,[[8,1,1,0,1,[[261,1,1,0,1]]]],[7925]]],["on",[1,1,[[27,1,1,0,1,[[867,1,1,0,1]]]],[22170]]],["past",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17374]]],["persecute",[12,12,[[17,2,2,0,2,[[454,2,2,0,2]]],[18,9,9,2,11,[[484,2,2,2,4],[512,2,2,4,6],[546,1,1,6,7],[548,1,1,7,8],[560,1,1,8,9],[596,2,2,9,11]]],[23,1,1,11,12,[[761,1,1,11,12]]]],[13319,13325,13996,14000,14413,14416,14961,14987,15256,15982,15984,19375]]],["persecuted",[5,5,[[4,1,1,0,1,[[182,1,1,0,1]]],[18,3,3,1,4,[[586,1,1,1,2],[596,1,1,2,3],[620,1,1,3,4]]],[24,1,1,4,5,[[799,1,1,4,5]]]],[5715,15771,16059,16296,20397]]],["persecution",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20447]]],["persecutors",[5,5,[[15,1,1,0,1,[[421,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[23,1,1,2,3,[[764,1,1,2,3]]],[24,2,2,3,5,[[797,1,1,3,4],[800,1,1,4,5]]]],[12522,16055,19433,20313,20439]]],["pursue",[26,25,[[0,1,1,0,1,[[34,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[4,2,2,2,4,[[180,2,2,2,4]]],[5,4,4,4,8,[[188,1,1,4,5],[194,1,1,5,6],[196,1,1,6,7],[206,1,1,7,8]]],[8,4,4,8,12,[[259,1,1,8,9],[260,1,1,9,10],[261,1,1,10,11],[265,1,1,11,12]]],[9,5,5,12,17,[[283,1,1,12,13],[286,3,3,13,16],[290,1,1,16,17]]],[17,2,2,17,19,[[448,1,1,17,18],[465,1,1,18,19]]],[18,1,1,19,20,[[511,1,1,19,20]]],[22,1,1,20,21,[[708,1,1,20,21]]],[25,2,1,21,22,[[836,2,1,21,22]]],[27,1,1,22,23,[[869,1,1,22,23]]],[29,1,1,23,24,[[879,1,1,23,24]]],[33,1,1,24,25,[[900,1,1,24,25]]]],[1016,1929,5633,5656,5874,6018,6083,6377,7853,7890,7923,7986,8450,8560,8561,8567,8705,13178,13572,14402,18233,21350,22197,22375,22692]]],["pursued",[31,30,[[0,3,3,0,3,[[13,2,2,0,2],[30,1,1,2,3]]],[1,3,3,3,6,[[63,3,3,3,6]]],[4,1,1,6,7,[[163,1,1,6,7]]],[5,5,4,7,11,[[188,2,1,7,8],[194,2,2,8,10],[210,1,1,10,11]]],[6,4,4,11,15,[[211,1,1,11,12],[214,1,1,12,13],[217,1,1,13,14],[218,1,1,14,15]]],[8,2,2,15,17,[[258,1,1,15,16],[265,1,1,16,17]]],[9,5,5,17,22,[[268,3,3,17,20],[286,1,1,20,21],[288,1,1,21,22]]],[10,1,1,22,23,[[310,1,1,22,23]]],[11,1,1,23,24,[[337,1,1,23,24]]],[13,2,2,24,26,[[379,1,1,24,25],[380,1,1,25,26]]],[18,1,1,26,27,[[495,1,1,26,27]]],[22,1,1,27,28,[[719,1,1,27,28]]],[23,2,2,28,30,[[783,1,1,28,29],[796,1,1,29,30]]]],[350,351,896,1897,1898,1912,5212,5876,6018,6019,6482,6515,6615,6717,6731,7835,7988,8068,8073,8077,8564,8640,9428,10227,11472,11488,14155,18454,19928,20284]]],["pursuer",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20316]]],["pursuers",[5,3,[[5,5,3,0,3,[[188,4,2,0,2],[194,1,1,2,3]]]],[5885,5891,6022]]],["pursueth",[7,7,[[2,3,3,0,3,[[115,3,3,0,3]]],[19,4,4,3,7,[[638,1,1,3,4],[640,1,1,4,5],[646,1,1,5,6],[655,1,1,6,7]]]],[3541,3560,3561,16707,16768,16932,17197]]],["pursuing",[2,2,[[6,2,2,0,2,[[218,2,2,0,2]]]],[6723,6724]]]]},{"k":"H7292","v":[["*",[4,4,[[18,1,1,0,1,[[615,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]],[21,1,1,2,3,[[676,1,1,2,3]]],[22,1,1,3,4,[[681,1,1,3,4]]]],[16234,16543,17619,17712]]],["overcome",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17619]]],["proudly",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17712]]],["strengthenedst",[1,1,[[18,1,1,0,1,[[615,1,1,0,1]]]],[16234]]],["sure",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16543]]]]},{"k":"H7293","v":[["*",[3,3,[[17,1,1,0,1,[[461,1,1,0,1]]],[22,2,2,1,3,[[708,1,1,1,2],[729,1,1,2,3]]]],[13479,18224,18682]]],["Rahab",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18682]]],["proud",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13479]]],["strength",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18224]]]]},{"k":"H7294","v":[["Rahab",[2,2,[[18,2,2,0,2,[[564,1,1,0,1],[566,1,1,1,2]]]],[15305,15336]]]]},{"k":"H7295","v":[["proud",[2,2,[[17,1,1,0,1,[[444,1,1,0,1]]],[18,1,1,1,2,[[517,1,1,1,2]]]],[13064,14529]]]]},{"k":"H7296","v":[["strength",[1,1,[[18,1,1,0,1,[[567,1,1,0,1]]]],[15388]]]]},{"k":"H7297","v":[["afraid",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18541]]]]},{"k":"H7298","v":[["*",[4,4,[[0,2,2,0,2,[[29,2,2,0,2]]],[1,1,1,2,3,[[51,1,1,2,3]]],[21,1,1,3,4,[[677,1,1,3,4]]]],[868,871,1570,17632]]],["galleries",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17632]]],["gutters",[2,2,[[0,2,2,0,2,[[29,2,2,0,2]]]],[868,871]]],["troughs",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1570]]]]},{"k":"H7299","v":[["form",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21789,21832]]]]},{"k":"H7300","v":[["*",[4,4,[[0,1,1,0,1,[[26,1,1,0,1]]],[18,1,1,1,2,[[532,1,1,1,2]]],[23,1,1,2,3,[[746,1,1,2,3]]],[27,1,1,3,4,[[872,1,1,3,4]]]],[767,14734,18996,22252]]],["dominion",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[767]]],["lords",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18996]]],["mourn",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14734]]],["ruleth",[1,1,[[27,1,1,0,1,[[872,1,1,0,1]]]],[22252]]]]},{"k":"H7301","v":[["*",[14,14,[[18,2,2,0,2,[[513,1,1,0,1],[542,1,1,1,2]]],[19,3,3,2,5,[[632,1,1,2,3],[634,1,1,3,4],[638,1,1,4,5]]],[22,5,5,5,10,[[694,1,1,5,6],[712,2,2,6,8],[721,1,1,8,9],[733,1,1,9,10]]],[23,3,3,10,13,[[775,2,2,10,12],[790,1,1,12,13]]],[24,1,1,13,14,[[799,1,1,13,14]]]],[14446,14870,16536,16593,16713,17978,18308,18310,18529,18750,19705,19716,20055,20369]]],["+",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18750]]],["abundantly",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14870]]],["bathed",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18308]]],["drunk",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20055]]],["drunken",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20369]]],["fill",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16593]]],["filled",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18529]]],["satiate",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19705]]],["satiated",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19716]]],["satisfied",[1,1,[[18,1,1,0,1,[[513,1,1,0,1]]]],[14446]]],["satisfy",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16536]]],["soaked",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18310]]],["water",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17978]]],["watereth",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16713]]]]},{"k":"H7302","v":[["*",[3,3,[[4,1,1,0,1,[[181,1,1,0,1]]],[22,1,1,1,2,[[736,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]]],[5698,18797,19703]]],["drunkenness",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5698]]],["watered",[2,2,[[22,1,1,0,1,[[736,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[18797,19703]]]]},{"k":"H7303","v":[["Rohgah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10569]]]]},{"k":"H7304","v":[["*",[3,3,[[8,1,1,0,1,[[251,1,1,0,1]]],[17,1,1,1,2,[[467,1,1,1,2]]],[23,1,1,2,3,[[766,1,1,2,3]]]],[7618,13648,19468]]],["large",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19468]]],["refreshed",[2,2,[[8,1,1,0,1,[[251,1,1,0,1]]],[17,1,1,1,2,[[467,1,1,1,2]]]],[7618,13648]]]]},{"k":"H7305","v":[["*",[2,2,[[0,1,1,0,1,[[31,1,1,0,1]]],[16,1,1,1,2,[[429,1,1,1,2]]]],[944,12776]]],["enlargement",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12776]]],["space",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[944]]]]},{"k":"H7306","v":[["*",[11,11,[[0,2,2,0,2,[[7,1,1,0,1],[26,1,1,1,2]]],[1,1,1,2,3,[[79,1,1,2,3]]],[2,1,1,3,4,[[115,1,1,3,4]]],[4,1,1,4,5,[[156,1,1,4,5]]],[6,1,1,5,6,[[226,1,1,5,6]]],[8,1,1,6,7,[[261,1,1,6,7]]],[17,1,1,7,8,[[474,1,1,7,8]]],[18,1,1,8,9,[[592,1,1,8,9]]],[22,1,1,9,10,[[689,1,1,9,10]]],[29,1,1,10,11,[[883,1,1,10,11]]]],[204,754,2420,3555,5032,6958,7924,13859,15836,17887,22444]]],["+",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[754]]],["accept",[1,1,[[8,1,1,0,1,[[261,1,1,0,1]]]],[7924]]],["smell",[5,5,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[4,1,1,2,3,[[156,1,1,2,3]]],[18,1,1,3,4,[[592,1,1,3,4]]],[29,1,1,4,5,[[883,1,1,4,5]]]],[2420,3555,5032,15836,22444]]],["smelled",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[204]]],["smelleth",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13859]]],["toucheth",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6958]]],["understanding",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17887]]]]},{"k":"H7307","v":[["*",[378,348,[[0,11,11,0,11,[[0,1,1,0,1],[2,1,1,1,2],[5,2,2,2,4],[6,2,2,4,6],[7,1,1,6,7],[25,1,1,7,8],[40,2,2,8,10],[44,1,1,10,11]]],[1,11,10,11,21,[[55,1,1,11,12],[59,3,2,12,14],[63,1,1,14,15],[64,2,2,15,17],[77,1,1,17,18],[80,1,1,18,19],[84,2,2,19,21]]],[3,14,12,21,33,[[121,3,2,21,23],[127,6,5,23,28],[130,1,1,28,29],[132,1,1,29,30],[140,1,1,30,31],[143,2,2,31,33]]],[4,2,2,33,35,[[154,1,1,33,34],[186,1,1,34,35]]],[5,2,2,35,37,[[188,1,1,35,36],[191,1,1,36,37]]],[6,10,10,37,47,[[213,1,1,37,38],[216,1,1,38,39],[218,1,1,39,40],[219,1,1,40,41],[221,1,1,41,42],[223,1,1,42,43],[224,2,2,43,45],[225,2,2,45,47]]],[8,16,14,47,61,[[236,1,1,47,48],[245,2,2,48,50],[246,1,1,50,51],[251,7,5,51,56],[253,1,1,56,57],[254,3,3,57,60],[265,1,1,60,61]]],[9,3,3,61,64,[[288,2,2,61,63],[289,1,1,63,64]]],[10,11,9,64,73,[[300,1,1,64,65],[308,2,2,65,67],[309,3,1,67,68],[311,1,1,68,69],[312,4,4,69,73]]],[11,5,5,73,78,[[314,3,3,73,76],[315,1,1,76,77],[331,1,1,77,78]]],[12,5,4,78,82,[[342,2,1,78,79],[346,1,1,79,80],[349,1,1,80,81],[365,1,1,81,82]]],[13,10,10,82,92,[[375,1,1,82,83],[381,1,1,83,84],[384,4,4,84,88],[386,1,1,88,89],[387,1,1,89,90],[390,1,1,90,91],[402,1,1,91,92]]],[14,2,2,92,94,[[403,2,2,92,94]]],[15,2,2,94,96,[[421,2,2,94,96]]],[17,31,31,96,127,[[436,1,1,96,97],[439,2,2,97,99],[441,2,2,99,101],[442,2,2,101,103],[443,1,1,103,104],[444,1,1,104,105],[445,1,1,105,106],[447,1,1,106,107],[450,3,3,107,110],[451,1,1,110,111],[452,1,1,111,112],[454,1,1,112,113],[455,1,1,113,114],[456,2,2,114,116],[461,1,1,116,117],[462,1,1,117,118],[463,1,1,118,119],[465,2,2,119,121],[467,2,2,121,123],[468,1,1,123,124],[469,1,1,124,125],[472,1,1,125,126],[476,1,1,126,127]]],[18,39,39,127,166,[[478,1,1,127,128],[488,1,1,128,129],[495,3,3,129,132],[508,1,1,132,133],[509,1,1,133,134],[510,1,1,134,135],[511,1,1,135,136],[512,1,1,136,137],[525,1,1,137,138],[528,4,4,138,142],[532,1,1,142,143],[553,1,1,143,144],[554,2,2,144,146],[555,2,2,146,148],[560,1,1,148,149],[580,1,1,149,150],[581,4,4,150,154],[583,1,1,154,155],[584,1,1,155,156],[612,2,2,156,158],[616,1,1,158,159],[619,1,1,159,160],[620,3,3,160,163],[623,1,1,163,164],[624,1,1,164,165],[625,1,1,165,166]]],[19,21,20,166,186,[[628,1,1,166,167],[638,2,2,167,169],[641,1,1,169,170],[642,2,2,170,172],[643,4,4,172,176],[644,2,2,176,178],[645,2,1,178,179],[652,3,3,179,182],[654,1,1,182,183],[656,2,2,183,185],[657,1,1,185,186]]],[20,24,20,186,206,[[659,4,3,186,189],[660,3,3,189,192],[661,3,2,192,194],[662,3,3,194,197],[663,1,1,197,198],[664,1,1,198,199],[665,3,2,199,201],[666,2,1,201,202],[668,1,1,202,203],[669,2,2,203,205],[670,1,1,205,206]]],[22,51,46,206,252,[[682,2,1,206,207],[685,1,1,207,208],[689,6,3,208,211],[695,1,1,211,212],[697,2,2,212,214],[703,1,1,214,215],[704,2,2,215,217],[705,1,1,217,218],[706,1,1,218,219],[707,2,2,219,221],[708,2,2,221,223],[709,1,1,223,224],[710,2,2,224,226],[711,1,1,226,227],[712,1,1,227,228],[715,1,1,228,229],[716,1,1,229,230],[718,2,2,230,232],[719,2,2,232,234],[720,2,2,234,236],[722,1,1,236,237],[726,1,1,237,238],[732,1,1,238,239],[735,4,3,239,242],[737,2,2,242,244],[739,2,2,244,246],[741,3,3,246,249],[742,1,1,249,250],[743,1,1,250,251],[744,1,1,251,252]]],[23,18,17,252,269,[[746,1,1,252,253],[748,2,2,253,255],[749,1,1,255,256],[754,2,2,256,258],[757,1,1,258,259],[758,1,1,259,260],[762,1,1,260,261],[766,1,1,261,262],[793,3,2,262,264],[795,4,4,264,268],[796,1,1,268,269]]],[24,1,1,269,270,[[800,1,1,269,270]]],[25,52,44,270,314,[[802,6,4,270,274],[803,1,1,274,275],[804,4,3,275,278],[806,3,3,278,281],[809,1,1,281,282],[811,1,1,282,283],[812,6,4,283,287],[813,1,1,287,288],[814,3,3,288,291],[818,2,2,291,293],[819,1,1,293,294],[820,1,1,294,295],[821,1,1,295,296],[822,1,1,296,297],[828,1,1,297,298],[837,2,2,298,300],[838,10,7,300,307],[840,1,1,307,308],[843,5,5,308,313],[844,1,1,313,314]]],[26,4,4,314,318,[[851,2,2,314,316],[857,1,1,316,317],[860,1,1,317,318]]],[27,7,7,318,325,[[865,2,2,318,320],[866,1,1,320,321],[869,1,1,321,322],[870,1,1,322,323],[873,1,1,323,324],[874,1,1,324,325]]],[28,2,2,325,327,[[877,2,2,325,327]]],[29,1,1,327,328,[[882,1,1,327,328]]],[31,2,2,328,330,[[889,1,1,328,329],[892,1,1,329,330]]],[32,3,3,330,333,[[894,2,2,330,332],[895,1,1,332,333]]],[34,2,2,333,335,[[903,1,1,333,334],[904,1,1,334,335]]],[36,4,2,335,337,[[909,3,1,335,336],[910,1,1,336,337]]],[37,9,9,337,346,[[912,1,1,337,338],[914,1,1,338,339],[915,1,1,339,340],[916,2,2,340,342],[917,1,1,342,343],[922,2,2,343,345],[923,1,1,345,346]]],[38,3,2,346,348,[[926,3,2,346,348]]]],[1,63,140,154,174,181,184,727,1203,1233,1385,1664,1790,1796,1910,1928,1930,2296,2423,2552,2562,3806,3822,4041,4049,4050,4053,4055,4132,4216,4448,4570,4572,4968,5848,5880,5935,6578,6688,6722,6777,6858,6909,6915,6928,6943,6948,7227,7424,7428,7451,7608,7609,7610,7611,7618,7686,7715,7726,7729,7990,8613,8618,8655,9084,9353,9386,9398,9456,9501,9502,9503,9504,9560,9566,9567,9593,10068,10454,10639,10738,11155,11368,11491,11562,11563,11564,11565,11601,11640,11697,12015,12017,12021,12531,12541,12888,12939,12945,12982,13004,13015,13019,13031,13069,13098,13138,13205,13216,13233,13241,13261,13314,13329,13359,13373,13480,13484,13529,13572,13579,13636,13646,13654,13697,13790,13904,13943,14065,14128,14133,14160,14336,14357,14372,14406,14415,14641,14701,14702,14703,14708,14740,15093,15096,15099,15121,15152,15254,15565,15574,15575,15600,15601,15684,15724,16182,16192,16246,16289,16297,16300,16303,16345,16369,16379,16423,16701,16717,16801,16811,16820,16842,16858,16859,16872,16895,16900,16915,17127,17136,17141,17185,17235,17247,17255,17321,17329,17332,17344,17350,17359,17378,17380,17385,17387,17397,17413,17426,17437,17438,17466,17497,17517,17518,17530,17737,17784,17886,17888,17899,17996,18007,18018,18122,18139,18148,18159,18170,18203,18217,18218,18245,18253,18261,18274,18290,18319,18359,18406,18427,18433,18467,18480,18481,18485,18536,18630,18729,18778,18780,18781,18819,18821,18844,18846,18876,18877,18880,18891,18911,18924,18989,19038,19039,19071,19214,19215,19290,19299,19401,19476,20159,20163,20213,20223,20228,20229,20299,20440,20468,20476,20484,20485,20494,20514,20516,20526,20548,20556,20558,20607,20650,20656,20660,20674,20679,20694,20711,20719,20721,20835,20846,20880,20893,20927,20951,21147,21385,21386,21398,21402,21403,21405,21406,21407,21411,21477,21568,21569,21570,21571,21572,21577,21759,21761,21969,22040,22145,22152,22156,22201,22215,22253,22281,22339,22340,22423,22535,22576,22602,22606,22616,22742,22767,22854,22860,22905,22928,22945,22952,22955,22974,23046,23055,23061,23118,23119]]],["+",[5,5,[[0,1,1,0,1,[[6,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]],[18,2,2,2,4,[[532,1,1,2,3],[616,1,1,3,4]]],[25,1,1,4,5,[[802,1,1,4,5]]]],[181,12939,14740,16246,20468]]],["Spirit",[34,34,[[0,2,2,0,2,[[0,1,1,0,1],[40,1,1,1,2]]],[6,7,7,2,9,[[213,1,1,2,3],[216,1,1,3,4],[221,1,1,4,5],[223,1,1,5,6],[224,2,2,6,8],[225,1,1,8,9]]],[8,7,7,9,16,[[245,2,2,9,11],[246,1,1,11,12],[251,2,2,12,14],[254,2,2,14,16]]],[9,1,1,16,17,[[289,1,1,16,17]]],[10,2,2,17,19,[[308,1,1,17,18],[312,1,1,18,19]]],[11,1,1,19,20,[[314,1,1,19,20]]],[13,4,4,20,24,[[381,1,1,20,21],[384,1,1,21,22],[386,1,1,22,23],[390,1,1,23,24]]],[17,1,1,24,25,[[468,1,1,24,25]]],[22,7,7,25,32,[[718,1,1,25,26],[726,1,1,26,27],[737,1,1,27,28],[739,1,1,28,29],[741,3,3,29,32]]],[25,2,2,32,34,[[812,2,2,32,34]]]],[1,1233,6578,6688,6858,6909,6915,6928,6943,7424,7428,7451,7608,7609,7726,7729,8655,9353,9504,9567,11491,11565,11601,11697,13654,18433,18630,18819,18844,18876,18877,18880,20660,20679]]],["air",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13904]]],["anger",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6722]]],["blast",[4,4,[[1,1,1,0,1,[[64,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[22,2,2,2,4,[[703,1,1,2,3],[715,1,1,3,4]]]],[1928,10068,18122,18359]]],["breath",[26,26,[[0,2,2,0,2,[[5,1,1,0,1],[6,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[17,5,5,3,8,[[444,1,1,3,4],[447,1,1,4,5],[450,1,1,5,6],[452,1,1,6,7],[454,1,1,7,8]]],[18,5,5,8,13,[[495,1,1,8,9],[510,1,1,9,10],[581,1,1,10,11],[612,1,1,11,12],[623,1,1,12,13]]],[20,1,1,13,14,[[661,1,1,13,14]]],[22,3,3,14,17,[[689,1,1,14,15],[708,1,1,15,16],[711,1,1,16,17]]],[23,2,2,17,19,[[754,1,1,17,18],[795,1,1,18,19]]],[24,1,1,19,20,[[800,1,1,19,20]]],[25,5,5,20,25,[[838,5,5,20,25]]],[34,1,1,25,26,[[904,1,1,25,26]]]],[154,174,8618,13069,13138,13233,13261,13314,14133,14372,15600,16192,16345,17378,17888,18245,18290,19215,20229,20440,21402,21403,21405,21406,21407,22767]]],["cool",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[63]]],["courage",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5880]]],["mind",[5,5,[[0,1,1,0,1,[[25,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]],[25,2,2,2,4,[[812,1,1,2,3],[821,1,1,3,4]]],[34,1,1,4,5,[[903,1,1,4,5]]]],[727,17235,20660,20927,22742]]],["quarters",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10639]]],["side",[5,5,[[23,1,1,0,1,[[796,1,1,0,1]]],[25,4,4,1,5,[[843,4,4,1,5]]]],[20299,21568,21569,21570,21571]]],["sides",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21572]]],["spirit",[192,173,[[0,3,3,0,3,[[5,1,1,0,1],[40,1,1,1,2],[44,1,1,2,3]]],[1,5,5,3,8,[[55,1,1,3,4],[77,1,1,4,5],[80,1,1,5,6],[84,2,2,6,8]]],[3,11,9,8,17,[[121,3,2,8,10],[127,5,4,10,14],[130,1,1,14,15],[140,1,1,15,16],[143,1,1,16,17]]],[4,2,2,17,19,[[154,1,1,17,18],[186,1,1,18,19]]],[5,1,1,19,20,[[191,1,1,19,20]]],[6,2,2,20,22,[[219,1,1,20,21],[225,1,1,21,22]]],[8,9,8,22,30,[[236,1,1,22,23],[251,5,4,23,27],[253,1,1,27,28],[254,1,1,28,29],[265,1,1,29,30]]],[10,5,5,30,35,[[300,1,1,30,31],[311,1,1,31,32],[312,3,3,32,35]]],[11,2,2,35,37,[[314,2,2,35,37]]],[12,4,3,37,40,[[342,2,1,37,38],[349,1,1,38,39],[365,1,1,39,40]]],[13,6,6,40,46,[[375,1,1,40,41],[384,3,3,41,44],[387,1,1,44,45],[402,1,1,45,46]]],[14,2,2,46,48,[[403,2,2,46,48]]],[15,2,2,48,50,[[421,2,2,48,50]]],[17,12,12,50,62,[[439,1,1,50,51],[441,1,1,51,52],[442,1,1,52,53],[445,1,1,53,54],[450,1,1,54,55],[455,1,1,55,56],[456,1,1,56,57],[461,1,1,57,58],[462,1,1,58,59],[467,2,2,59,61],[469,1,1,61,62]]],[18,17,17,62,79,[[508,1,1,62,63],[509,1,1,63,64],[511,1,1,64,65],[528,4,4,65,69],[553,1,1,69,70],[554,2,2,70,72],[555,1,1,72,73],[581,1,1,73,74],[583,1,1,74,75],[619,1,1,75,76],[620,3,3,76,79]]],[19,14,13,79,92,[[628,1,1,79,80],[638,1,1,80,81],[641,1,1,81,82],[642,2,2,82,84],[643,3,3,84,87],[644,2,2,87,89],[645,2,1,89,90],[652,1,1,90,91],[656,1,1,91,92]]],[20,19,16,92,108,[[659,2,2,92,94],[660,3,3,94,97],[661,2,1,97,98],[662,3,3,98,101],[664,1,1,101,102],[665,3,2,102,104],[666,2,1,104,105],[668,1,1,105,106],[669,1,1,106,107],[670,1,1,107,108]]],[22,29,24,108,132,[[682,2,1,108,109],[689,4,1,109,110],[697,2,2,110,112],[704,1,1,112,113],[706,1,1,113,114],[707,2,2,114,116],[708,1,1,116,117],[709,1,1,117,118],[710,1,1,118,119],[712,1,1,119,120],[716,1,1,120,121],[718,1,1,121,122],[720,2,2,122,124],[722,1,1,124,125],[732,1,1,125,126],[735,3,2,126,128],[737,1,1,128,129],[739,1,1,129,130],[743,1,1,130,131],[744,1,1,131,132]]],[23,1,1,132,133,[[795,1,1,132,133]]],[25,24,21,133,154,[[802,5,3,133,136],[803,1,1,136,137],[804,4,3,137,140],[809,1,1,140,141],[811,1,1,141,142],[812,3,3,142,145],[814,1,1,145,146],[819,1,1,146,147],[822,1,1,147,148],[837,2,2,148,150],[838,2,2,150,152],[840,1,1,152,153],[844,1,1,153,154]]],[26,2,2,154,156,[[851,2,2,154,156]]],[27,2,2,156,158,[[865,1,1,156,157],[866,1,1,157,158]]],[28,2,2,158,160,[[877,2,2,158,160]]],[32,3,3,160,163,[[894,2,2,160,162],[895,1,1,162,163]]],[36,4,2,163,165,[[909,3,1,163,164],[910,1,1,164,165]]],[37,6,6,165,171,[[914,1,1,165,166],[916,1,1,166,167],[917,1,1,167,168],[922,2,2,168,170],[923,1,1,170,171]]],[38,3,2,171,173,[[926,3,2,171,173]]]],[140,1203,1385,1664,2296,2423,2552,2562,3806,3822,4041,4049,4050,4053,4132,4448,4572,4968,5848,5935,6777,6948,7227,7609,7610,7611,7618,7686,7715,7990,9084,9456,9501,9502,9503,9560,9566,10454,10738,11155,11368,11562,11563,11564,11640,12015,12017,12021,12531,12541,12945,12982,13019,13098,13216,13329,13359,13480,13484,13636,13646,13697,14336,14357,14406,14701,14702,14703,14708,15093,15096,15099,15121,15601,15684,16289,16297,16300,16303,16423,16701,16801,16811,16820,16858,16859,16872,16895,16900,16915,17141,17247,17329,17332,17344,17350,17359,17380,17385,17387,17397,17426,17437,17438,17466,17497,17518,17530,17737,17886,18007,18018,18139,18170,18203,18217,18218,18253,18274,18319,18406,18427,18481,18485,18536,18729,18780,18781,18821,18846,18911,18924,20223,20476,20484,20485,20494,20514,20516,20526,20607,20650,20656,20674,20679,20711,20880,20951,21385,21386,21398,21411,21477,21577,21759,21761,22145,22156,22339,22340,22602,22606,22616,22854,22860,22928,22955,22974,23046,23055,23061,23118,23119]]],["spirits",[5,5,[[3,2,2,0,2,[[132,1,1,0,1],[143,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[19,1,1,3,4,[[643,1,1,3,4]]],[37,1,1,4,5,[[916,1,1,4,5]]]],[4216,4570,15575,16842,22952]]],["spiritual",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22215]]],["tempest",[1,1,[[18,1,1,0,1,[[488,1,1,0,1]]]],[14065]]],["vain",[2,2,[[17,2,2,0,2,[[450,1,1,0,1],[451,1,1,1,2]]]],[13205,13241]]],["wind",[81,76,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,5,4,1,5,[[59,3,2,1,3],[63,1,1,3,4],[64,1,1,4,5]]],[3,1,1,5,6,[[127,1,1,5,6]]],[9,1,1,6,7,[[288,1,1,6,7]]],[10,4,2,7,9,[[308,1,1,7,8],[309,3,1,8,9]]],[11,1,1,9,10,[[315,1,1,9,10]]],[17,8,8,10,18,[[436,1,1,10,11],[441,1,1,11,12],[442,1,1,12,13],[443,1,1,13,14],[456,1,1,14,15],[465,2,2,15,17],[472,1,1,17,18]]],[18,13,13,18,31,[[478,1,1,18,19],[495,2,2,19,21],[512,1,1,21,22],[525,1,1,22,23],[555,1,1,23,24],[560,1,1,24,25],[580,1,1,25,26],[581,1,1,26,27],[584,1,1,27,28],[612,1,1,28,29],[624,1,1,29,30],[625,1,1,30,31]]],[19,5,5,31,36,[[638,1,1,31,32],[652,2,2,32,34],[654,1,1,34,35],[657,1,1,35,36]]],[20,4,3,36,39,[[659,2,1,36,37],[663,1,1,37,38],[669,1,1,38,39]]],[22,10,10,39,49,[[685,1,1,39,40],[689,1,1,40,41],[695,1,1,41,42],[704,1,1,42,43],[705,1,1,43,44],[710,1,1,44,45],[719,2,2,45,47],[735,1,1,47,48],[742,1,1,48,49]]],[23,11,11,49,60,[[746,1,1,49,50],[748,2,2,50,52],[749,1,1,52,53],[754,1,1,53,54],[757,1,1,54,55],[758,1,1,55,56],[762,1,1,56,57],[766,1,1,57,58],[795,2,2,58,60]]],[25,9,8,60,68,[[806,1,1,60,61],[813,1,1,61,62],[814,2,2,62,64],[818,1,1,64,65],[820,1,1,65,66],[828,1,1,66,67],[838,2,1,67,68]]],[27,4,4,68,72,[[865,1,1,68,69],[869,1,1,69,70],[873,1,1,70,71],[874,1,1,71,72]]],[29,1,1,72,73,[[882,1,1,72,73]]],[31,2,2,73,75,[[889,1,1,73,74],[892,1,1,74,75]]],[37,1,1,75,76,[[915,1,1,75,76]]]],[184,1790,1796,1910,1930,4055,8613,9386,9398,9593,12888,13004,13015,13031,13373,13572,13579,13790,13943,14128,14160,14415,14641,15152,15254,15565,15574,15724,16182,16369,16379,16717,17127,17136,17185,17255,17321,17413,17517,17784,17899,17996,18148,18159,18261,18467,18480,18778,18891,18989,19038,19039,19071,19214,19290,19299,19401,19476,20213,20228,20548,20694,20719,20721,20835,20893,21147,21406,22152,22201,22253,22281,22423,22535,22576,22945]]],["winds",[11,10,[[17,1,1,0,1,[[463,1,1,0,1]]],[23,3,2,1,3,[[793,3,2,1,3]]],[25,4,4,3,7,[[806,2,2,3,5],[818,1,1,5,6],[838,1,1,6,7]]],[26,2,2,7,9,[[857,1,1,7,8],[860,1,1,8,9]]],[37,1,1,9,10,[[912,1,1,9,10]]]],[13529,20159,20163,20556,20558,20846,21406,21969,22040,22905]]]]},{"k":"H7308","v":[["*",[11,11,[[26,11,11,0,11,[[851,1,1,0,1],[853,3,3,1,4],[854,4,4,4,8],[855,1,1,8,9],[856,2,2,9,11]]]],[21793,21845,21846,21855,21885,21886,21888,21894,21908,21935,21948]]],["mind",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21894]]],["spirit",[8,8,[[26,8,8,0,8,[[853,3,3,0,3],[854,3,3,3,6],[855,1,1,6,7],[856,1,1,7,8]]]],[21845,21846,21855,21885,21886,21888,21908,21948]]],["wind",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21793]]],["winds",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21935]]]]},{"k":"H7309","v":[["*",[2,2,[[1,1,1,0,1,[[57,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]]],[1725,20410]]],["breathing",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20410]]],["respite",[1,1,[[1,1,1,0,1,[[57,1,1,0,1]]]],[1725]]]]},{"k":"H7310","v":[["*",[2,2,[[18,2,2,0,2,[[500,1,1,0,1],[543,1,1,1,2]]]],[14240,14885]]],["over",[1,1,[[18,1,1,0,1,[[500,1,1,0,1]]]],[14240]]],["wealthy",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14885]]]]},{"k":"H7311","v":[["*",[189,184,[[0,6,6,0,6,[[6,1,1,0,1],[13,1,1,1,2],[30,1,1,2,3],[38,2,2,3,5],[40,1,1,5,6]]],[1,8,8,6,14,[[56,1,1,6,7],[63,2,2,7,9],[64,1,1,9,10],[65,1,1,10,11],[66,1,1,11,12],[78,1,1,12,13],[84,1,1,13,14]]],[2,7,7,14,21,[[91,1,1,14,15],[93,3,3,15,18],[95,2,2,18,20],[111,1,1,20,21]]],[3,17,16,21,37,[[131,4,3,21,24],[132,1,1,24,25],[134,7,7,25,32],[136,1,1,32,33],[140,1,1,33,34],[147,2,2,34,36],[149,1,1,36,37]]],[4,9,9,37,46,[[153,1,1,37,38],[154,2,2,38,40],[160,1,1,40,41],[161,1,1,41,42],[164,1,1,42,43],[169,1,1,43,44],[179,1,1,44,45],[184,1,1,45,46]]],[5,1,1,46,47,[[190,1,1,46,47]]],[8,5,5,47,52,[[237,4,4,47,51],[244,1,1,51,52]]],[9,3,3,52,55,[[288,3,3,52,55]]],[10,4,4,55,59,[[301,2,2,55,57],[304,1,1,57,58],[306,1,1,58,59]]],[11,3,3,59,62,[[314,1,1,59,60],[318,1,1,60,61],[331,1,1,61,62]]],[12,2,2,62,64,[[352,1,1,62,63],[362,1,1,63,64]]],[13,6,5,64,69,[[371,1,1,64,65],[396,2,1,65,66],[401,3,3,66,69]]],[14,4,4,69,73,[[405,1,1,69,70],[410,1,1,70,71],[411,2,2,71,73]]],[15,1,1,73,74,[[421,1,1,73,74]]],[17,6,6,74,80,[[452,1,1,74,75],[456,1,1,75,76],[457,1,1,76,77],[473,2,2,77,79],[474,1,1,79,80]]],[18,50,49,80,129,[[480,1,1,80,81],[486,1,1,81,82],[489,1,1,82,83],[490,1,1,83,84],[495,3,3,84,87],[498,1,1,87,88],[504,2,2,88,90],[507,1,1,90,91],[511,1,1,91,92],[514,1,1,92,93],[523,2,1,93,94],[534,2,2,94,96],[538,1,1,96,97],[543,1,1,97,98],[551,1,1,98,99],[552,5,5,99,104],[555,1,1,104,105],[566,6,6,105,111],[569,1,1,111,112],[576,3,3,112,115],[584,2,2,115,117],[585,1,1,117,118],[587,1,1,118,119],[589,1,1,119,120],[590,2,2,120,122],[595,2,2,122,124],[608,1,1,124,125],[615,1,1,125,126],[617,1,1,126,127],[622,1,1,127,128],[625,1,1,128,129]]],[19,8,8,129,137,[[630,1,1,129,130],[631,1,1,130,131],[633,1,1,131,132],[638,1,1,132,133],[641,2,2,133,135],[651,1,1,135,136],[657,1,1,136,137]]],[22,23,21,137,158,[[679,1,1,137,138],[680,3,3,138,141],[684,1,1,141,142],[688,2,1,142,143],[691,1,1,143,144],[692,1,1,144,145],[701,1,1,145,146],[703,1,1,146,147],[708,1,1,147,148],[711,1,1,148,149],[715,1,1,149,150],[718,2,1,150,151],[727,2,2,151,153],[730,1,1,153,154],[735,2,2,154,156],[736,1,1,156,157],[740,1,1,157,158]]],[24,1,1,158,159,[[798,1,1,158,159]]],[25,17,17,159,176,[[807,1,1,159,160],[811,3,3,160,163],[818,1,1,163,164],[821,1,1,164,165],[822,2,2,165,167],[832,2,2,167,169],[835,1,1,169,170],[846,3,3,170,173],[849,3,3,173,176]]],[26,4,4,176,180,[[857,1,1,176,177],[860,2,2,177,179],[861,1,1,179,180]]],[27,3,3,180,183,[[872,2,2,180,182],[874,1,1,182,183]]],[32,1,1,183,184,[[897,1,1,183,184]]]],[176,358,918,1164,1167,1239,1705,1897,1905,1922,1967,1994,2363,2555,2771,2803,2805,2814,2859,2864,3384,4172,4173,4183,4231,4276,4281,4283,4285,4286,4287,4289,4322,4453,4692,4716,4763,4920,4948,4959,5151,5159,5242,5384,5599,5785,5915,7241,7247,7248,7250,7415,8630,8649,8651,9134,9135,9225,9285,9564,9681,10083,10807,11051,11281,11851,11973,11974,11975,12109,12226,12243,12246,12516,13264,13377,13401,13808,13827,13861,13960,14034,14074,14076,14145,14164,14166,14204,14290,14291,14320,14391,14484,14624,14773,14779,14821,14880,15051,15075,15076,15077,15078,15081,15182,15339,15342,15343,15345,15350,15368,15421,15501,15504,15508,15724,15731,15747,15793,15812,15817,15820,15885,15897,16149,16237,16271,16321,16385,16490,16498,16557,16699,16801,16806,17086,17264,17656,17697,17698,17699,17770,17865,17908,17941,18081,18119,18235,18289,18375,18429,18647,18658,18709,18779,18780,18787,18864,20349,20576,20637,20649,20650,20847,20923,20966,20970,21234,21240,21319,21631,21639,21643,21710,21711,21722,21972,22048,22072,22088,22244,22247,22272,22642]]],["+",[15,15,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[2,1,1,2,3,[[95,1,1,2,3]]],[3,5,5,3,8,[[131,1,1,3,4],[132,1,1,4,5],[134,2,2,5,7],[136,1,1,7,8]]],[8,1,1,8,9,[[244,1,1,8,9]]],[14,2,2,9,11,[[405,1,1,9,10],[411,1,1,10,11]]],[17,1,1,11,12,[[474,1,1,11,12]]],[18,2,2,12,14,[[552,2,2,12,14]]],[25,1,1,14,15,[[849,1,1,14,15]]]],[1239,1905,2859,4183,4231,4286,4287,4322,7415,12109,12246,13861,15075,15076,21722]]],["Exalt",[2,2,[[18,2,2,0,2,[[576,2,2,0,2]]]],[15504,15508]]],["are",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13401]]],["away",[2,2,[[25,1,1,0,1,[[846,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]]],[21639,21972]]],["bred",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1967]]],["exalt",[14,14,[[1,1,1,0,1,[[64,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[17,1,1,2,3,[[452,1,1,2,3]]],[18,7,7,3,10,[[511,1,1,3,4],[514,1,1,4,5],[543,1,1,5,6],[569,1,1,6,7],[584,1,1,7,8],[595,1,1,8,9],[617,1,1,9,10]]],[22,3,3,10,13,[[691,1,1,10,11],[692,1,1,11,12],[703,1,1,12,13]]],[27,1,1,13,14,[[872,1,1,13,14]]]],[1922,7250,13264,14391,14484,14880,15421,15731,15897,16271,17908,17941,18119,22247]]],["exalted",[29,28,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[10,2,2,2,4,[[304,1,1,2,3],[306,1,1,3,4]]],[11,1,1,4,5,[[331,1,1,4,5]]],[15,1,1,5,6,[[421,1,1,5,6]]],[18,16,15,6,21,[[489,1,1,6,7],[490,1,1,7,8],[495,1,1,8,9],[498,1,1,9,10],[523,2,1,10,11],[534,2,2,11,13],[552,1,1,13,14],[566,4,4,14,18],[585,1,1,18,19],[589,1,1,19,20],[595,1,1,20,21]]],[19,1,1,21,22,[[638,1,1,21,22]]],[22,5,5,22,27,[[708,1,1,22,23],[711,1,1,23,24],[715,1,1,24,25],[727,1,1,25,26],[730,1,1,26,27]]],[27,1,1,27,28,[[874,1,1,27,28]]]],[7241,8649,9225,9285,10083,12516,14074,14076,14164,14204,14624,14773,14779,15081,15342,15343,15345,15350,15747,15812,15885,16699,18235,18289,18375,18647,18709,22272]]],["exalteth",[3,3,[[18,1,1,0,1,[[625,1,1,0,1]]],[19,2,2,1,3,[[641,2,2,1,3]]]],[16385,16801,16806]]],["extol",[2,2,[[18,2,2,0,2,[[507,1,1,0,1],[622,1,1,1,2]]]],[14320,16321]]],["gave",[4,4,[[13,4,4,0,4,[[396,1,1,0,1],[401,3,3,1,4]]]],[11851,11973,11974,11975]]],["give",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11851]]],["haughty",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8630]]],["heave",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4173]]],["heaved",[1,1,[[3,1,1,0,1,[[134,1,1,0,1]]]],[4289]]],["high",[23,23,[[1,1,1,0,1,[[63,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]],[4,2,2,2,4,[[164,1,1,2,3],[184,1,1,3,4]]],[9,1,1,4,5,[[288,1,1,4,5]]],[17,2,2,5,7,[[456,1,1,5,6],[473,1,1,6,7]]],[18,6,6,7,13,[[495,1,1,7,8],[555,1,1,8,9],[566,1,1,9,10],[576,1,1,10,11],[590,1,1,11,12],[615,1,1,12,13]]],[19,1,1,13,14,[[651,1,1,13,14]]],[22,4,4,14,18,[[680,2,2,14,16],[684,1,1,16,17],[735,1,1,17,18]]],[25,5,5,18,23,[[807,1,1,18,19],[818,1,1,19,20],[821,1,1,20,21],[832,1,1,21,22],[835,1,1,22,23]]]],[1897,4763,5242,5785,8651,13377,13808,14145,15182,15339,15501,15817,16237,17086,17698,17699,17770,18780,20576,20847,20923,21234,21319]]],["higher",[2,2,[[3,1,1,0,1,[[140,1,1,0,1]]],[18,1,1,1,2,[[538,1,1,1,2]]]],[4453,14821]]],["himself",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22072]]],["levy",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4692]]],["lifteth",[1,1,[[18,1,1,0,1,[[590,1,1,0,1]]]],[15820]]],["lofty",[3,3,[[18,1,1,0,1,[[608,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]],[22,1,1,2,3,[[680,1,1,2,3]]]],[16149,17264,17697]]],["loud",[1,1,[[4,1,1,0,1,[[179,1,1,0,1]]]],[5599]]],["off",[4,4,[[2,2,2,0,2,[[93,2,2,0,2]]],[25,1,1,2,3,[[822,1,1,2,3]]],[27,1,1,3,4,[[872,1,1,3,4]]]],[2803,2805,20970,22244]]],["offer",[9,9,[[1,1,1,0,1,[[84,1,1,0,1]]],[2,1,1,1,2,[[111,1,1,1,2]]],[3,3,3,2,5,[[134,3,3,2,5]]],[25,4,4,5,9,[[846,2,2,5,7],[849,2,2,7,9]]]],[2555,3384,4276,4281,4285,21631,21643,21710,21711]]],["offered",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12226]]],["promote",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16498]]],["promotion",[2,2,[[18,1,1,0,1,[[552,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]]],[15077,16490]]],["proud",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16557]]],["setteth",[1,1,[[18,1,1,0,1,[[552,1,1,0,1]]]],[15078]]],["take",[3,3,[[2,3,3,0,3,[[91,1,1,0,1],[93,1,1,1,2],[95,1,1,2,3]]]],[2771,2814,2864]]],["tall",[3,3,[[4,3,3,0,3,[[154,2,2,0,2],[161,1,1,2,3]]]],[4948,4959,5159]]],["taller",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4920]]],["up",[54,52,[[0,5,5,0,5,[[6,1,1,0,1],[13,1,1,1,2],[30,1,1,2,3],[38,2,2,3,5]]],[1,3,3,5,8,[[56,1,1,5,6],[66,1,1,6,7],[78,1,1,7,8]]],[3,4,4,8,12,[[131,2,2,8,10],[134,1,1,10,11],[147,1,1,11,12]]],[4,2,2,12,14,[[160,1,1,12,13],[169,1,1,13,14]]],[5,1,1,14,15,[[190,1,1,14,15]]],[8,2,2,15,17,[[237,2,2,15,17]]],[10,2,2,17,19,[[301,2,2,17,19]]],[11,2,2,19,21,[[314,1,1,19,20],[318,1,1,20,21]]],[12,2,2,21,23,[[352,1,1,21,22],[362,1,1,22,23]]],[13,1,1,23,24,[[371,1,1,23,24]]],[14,1,1,24,25,[[411,1,1,24,25]]],[17,1,1,25,26,[[473,1,1,25,26]]],[18,9,9,26,35,[[480,1,1,26,27],[486,1,1,27,28],[495,1,1,28,29],[504,2,2,29,31],[551,1,1,31,32],[566,1,1,32,33],[584,1,1,33,34],[587,1,1,34,35]]],[22,10,8,35,43,[[679,1,1,35,36],[688,2,1,36,37],[701,1,1,37,38],[718,2,1,38,39],[727,1,1,39,40],[735,1,1,40,41],[736,1,1,41,42],[740,1,1,42,43]]],[24,1,1,43,44,[[798,1,1,43,44]]],[25,5,5,44,49,[[811,3,3,44,47],[822,1,1,47,48],[832,1,1,48,49]]],[26,2,2,49,51,[[860,1,1,49,50],[861,1,1,50,51]]],[32,1,1,51,52,[[897,1,1,51,52]]]],[176,358,918,1164,1167,1705,1994,2363,4172,4173,4283,4716,5151,5384,5915,7247,7248,9134,9135,9564,9681,10807,11051,11281,12243,13827,13960,14034,14166,14290,14291,15051,15368,15724,15793,17656,17865,18081,18429,18658,18779,18787,18864,20349,20637,20649,20650,20966,21240,22048,22088,22642]]]]},{"k":"H7312","v":[["*",[7,7,[[19,2,2,0,2,[[648,1,1,0,1],[652,1,1,1,2]]],[22,4,4,2,6,[[680,2,2,2,4],[688,2,2,4,6]]],[23,1,1,6,7,[[792,1,1,6,7]]]],[16988,17116,17696,17702,17862,17883,20109]]],["haughtiness",[3,3,[[22,2,2,0,2,[[680,2,2,0,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[17696,17702,20109]]],["height",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17116]]],["high",[2,2,[[19,1,1,0,1,[[648,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[16988,17862]]],["ones",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17883]]]]},{"k":"H7313","v":[["*",[4,4,[[26,4,4,0,4,[[853,1,1,0,1],[854,3,3,1,4]]]],[21874,21893,21894,21897]]],["+",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21893]]],["extol",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21874]]],["thyself",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21897]]],["up",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21894]]]]},{"k":"H7314","v":[["height",[5,5,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,4,4,1,5,[[852,1,1,1,2],[853,3,3,2,5]]]],[12154,21808,21847,21848,21857]]]]},{"k":"H7315","v":[["high",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22778]]]]},{"k":"H7316","v":[["Rumah",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10201]]]]},{"k":"H7317","v":[["haughtily",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22598]]]]},{"k":"H7318","v":[["extolled",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14890]]]]},{"k":"H7319","v":[["high",[1,1,[[18,1,1,0,1,[[626,1,1,0,1]]]],[16391]]]]},{"k":"H7320","v":[["Romamtiezer",[2,2,[[12,2,2,0,2,[[362,2,2,0,2]]]],[11050,11077]]]]},{"k":"H7321","v":[["*",[45,41,[[3,2,2,0,2,[[126,2,2,0,2]]],[5,7,4,2,6,[[192,7,4,2,6]]],[6,2,2,6,8,[[217,1,1,6,7],[225,1,1,7,8]]],[8,4,4,8,12,[[239,1,1,8,9],[245,1,1,9,10],[252,2,2,10,12]]],[13,3,2,12,14,[[379,3,2,12,14]]],[14,2,2,14,16,[[405,2,2,14,16]]],[17,2,2,16,18,[[465,1,1,16,17],[473,1,1,17,18]]],[18,12,12,18,30,[[518,1,1,18,19],[524,1,1,19,20],[537,1,1,20,21],[542,1,1,21,22],[543,1,1,22,23],[558,1,1,23,24],[572,2,2,24,26],[575,2,2,26,28],[577,1,1,28,29],[585,1,1,29,30]]],[19,1,1,30,31,[[640,1,1,30,31]]],[22,4,4,31,35,[[693,1,1,31,32],[694,1,1,32,33],[720,1,1,33,34],[722,1,1,34,35]]],[23,1,1,35,36,[[794,1,1,35,36]]],[27,1,1,36,37,[[866,1,1,36,37]]],[28,1,1,37,38,[[877,1,1,37,38]]],[32,1,1,38,39,[[896,1,1,38,39]]],[35,1,1,39,40,[[908,1,1,39,40]]],[37,1,1,40,41,[[919,1,1,40,41]]]],[3995,3997,5954,5959,5965,5969,6715,6943,7302,7442,7638,7670,11465,11468,12108,12110,13562,13800,14553,14626,14815,14873,14874,15218,15455,15456,15494,15496,15509,15751,16767,17964,17979,18493,18556,20181,22160,22312,22629,22834,23008]]],["Shout",[2,2,[[5,1,1,0,1,[[192,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]]],[5965,20181]]],["alarm",[4,4,[[3,2,2,0,2,[[126,2,2,0,2]]],[13,1,1,2,3,[[379,1,1,2,3]]],[28,1,1,3,4,[[877,1,1,3,4]]]],[3995,3997,11465,22312]]],["aloud",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22160]]],["cried",[2,2,[[6,1,1,0,1,[[217,1,1,0,1]]],[17,1,1,1,2,[[465,1,1,1,2]]]],[6715,13562]]],["cry",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18493]]],["destroyed",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16767]]],["joy",[2,2,[[17,1,1,0,1,[[473,1,1,0,1]]],[18,1,1,1,2,[[542,1,1,1,2]]]],[13800,14873]]],["noise",[7,7,[[18,7,7,0,7,[[543,1,1,0,1],[558,1,1,1,2],[572,2,2,2,4],[575,2,2,4,6],[577,1,1,6,7]]]],[14874,15218,15455,15456,15494,15496,15509]]],["out",[2,2,[[22,1,1,0,1,[[693,1,1,0,1]]],[32,1,1,1,2,[[896,1,1,1,2]]]],[17964,22629]]],["shout",[9,7,[[5,4,2,0,2,[[192,4,2,0,2]]],[13,1,1,2,3,[[379,1,1,2,3]]],[18,1,1,3,4,[[524,1,1,3,4]]],[22,1,1,4,5,[[722,1,1,4,5]]],[35,1,1,5,6,[[908,1,1,5,6]]],[37,1,1,6,7,[[919,1,1,6,7]]]],[5954,5959,11468,14626,18556,22834,23008]]],["shouted",[10,9,[[5,2,1,0,1,[[192,2,1,0,1]]],[6,1,1,1,2,[[225,1,1,1,2]]],[8,4,4,2,6,[[239,1,1,2,3],[245,1,1,3,4],[252,2,2,4,6]]],[13,1,1,6,7,[[379,1,1,6,7]]],[14,2,2,7,9,[[405,2,2,7,9]]]],[5969,6943,7302,7442,7638,7670,11468,12108,12110]]],["shouting",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17979]]],["triumph",[3,3,[[18,3,3,0,3,[[518,1,1,0,1],[537,1,1,1,2],[585,1,1,2,3]]]],[14553,14815,15751]]]]},{"k":"H7322","v":[["tremble",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13478]]]]},{"k":"H7323","v":[["*",[103,92,[[0,10,10,0,10,[[17,2,2,0,2],[23,4,4,2,6],[28,2,2,6,8],[32,1,1,8,9],[40,1,1,9,10]]],[3,2,2,10,12,[[127,1,1,10,11],[132,1,1,11,12]]],[5,2,2,12,14,[[193,1,1,12,13],[194,1,1,13,14]]],[6,2,2,14,16,[[217,1,1,14,15],[223,1,1,15,16]]],[8,12,11,16,27,[[238,1,1,16,17],[239,1,1,17,18],[243,1,1,18,19],[245,1,1,19,20],[252,4,4,20,24],[255,3,2,24,26],[257,1,1,26,27]]],[9,12,8,27,35,[[281,1,1,27,28],[284,10,6,28,34],[288,1,1,34,35]]],[10,6,5,35,40,[[291,1,1,35,36],[304,3,2,36,38],[308,1,1,38,39],[309,1,1,39,40]]],[11,13,11,40,51,[[316,2,2,40,42],[317,2,2,42,44],[322,2,1,44,45],[323,6,5,45,50],[335,1,1,50,51]]],[13,7,6,51,57,[[378,3,2,51,53],[389,1,1,53,54],[396,2,2,54,56],[401,1,1,56,57]]],[16,4,4,57,61,[[428,2,2,57,59],[433,2,2,59,61]]],[17,3,3,61,64,[[444,1,1,61,62],[450,1,1,62,63],[451,1,1,63,64]]],[18,6,6,64,70,[[495,1,1,64,65],[496,1,1,65,66],[536,1,1,66,67],[545,1,1,67,68],[596,1,1,68,69],[624,1,1,69,70]]],[19,4,4,70,74,[[628,1,1,70,71],[631,1,1,71,72],[633,1,1,72,73],[645,1,1,73,74]]],[21,1,1,74,75,[[671,1,1,74,75]]],[22,3,3,75,78,[[718,1,1,75,76],[733,1,1,76,77],[737,1,1,77,78]]],[23,7,5,78,83,[[756,1,1,78,79],[767,1,1,79,80],[793,1,1,80,81],[794,1,1,81,82],[795,3,1,82,83]]],[26,1,1,83,84,[[857,1,1,83,84]]],[28,3,3,84,87,[[877,3,3,84,87]]],[29,1,1,87,88,[[884,1,1,87,88]]],[33,1,1,88,89,[[901,1,1,88,89]]],[34,1,1,89,90,[[904,1,1,89,90]]],[36,1,1,90,91,[[909,1,1,90,91]]],[37,1,1,91,92,[[912,1,1,91,92]]]],[426,431,608,611,619,620,807,808,964,1209,4051,4241,5998,6021,6715,6894,7281,7309,7380,7441,7635,7640,7666,7669,7736,7766,7804,8390,8497,8499,8500,8501,8502,8504,8632,8722,9245,9246,9387,9407,9625,9629,9667,9668,9818,9833,9835,9840,9842,9848,10177,11447,11448,11668,11833,11837,11979,12760,12762,12827,12831,13076,13229,13252,14147,14173,14794,14931,15930,16366,16416,16502,16558,16911,17541,18451,18745,18807,19254,19505,20146,20210,20243,21967,22315,22318,22320,22462,22703,22750,22849,22903]]],["Run",[4,4,[[8,1,1,0,1,[[255,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]],[37,1,1,3,4,[[912,1,1,3,4]]]],[7766,8501,9629,22903]]],["another",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20243]]],["away",[2,2,[[23,2,2,0,2,[[793,1,1,0,1],[794,1,1,1,2]]]],[20146,20210]]],["down",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10177]]],["footmen",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7804]]],["guard",[14,10,[[10,3,2,0,2,[[304,3,2,0,2]]],[11,8,6,2,8,[[322,2,1,2,3],[323,6,5,3,8]]],[13,3,2,8,10,[[378,3,2,8,10]]]],[9245,9246,9818,9833,9835,9840,9842,9848,11447,11448]]],["hastily",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1209]]],["out",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14931]]],["post",[2,2,[[17,1,1,0,1,[[444,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[13076,20243]]],["posts",[6,6,[[13,2,2,0,2,[[396,2,2,0,2]]],[16,4,4,2,6,[[428,2,2,2,4],[433,2,2,4,6]]]],[11833,11837,12760,12762,12827,12831]]],["ran",[28,28,[[0,9,9,0,9,[[17,2,2,0,2],[23,4,4,2,6],[28,2,2,6,8],[32,1,1,8,9]]],[3,2,2,9,11,[[127,1,1,9,10],[132,1,1,10,11]]],[5,2,2,11,13,[[193,1,1,11,12],[194,1,1,12,13]]],[6,2,2,13,15,[[217,1,1,13,14],[223,1,1,14,15]]],[8,7,7,15,22,[[238,1,1,15,16],[239,1,1,16,17],[245,1,1,17,18],[252,3,3,18,21],[255,1,1,21,22]]],[9,2,2,22,24,[[284,2,2,22,24]]],[10,2,2,24,26,[[308,1,1,24,25],[309,1,1,25,26]]],[23,1,1,26,27,[[767,1,1,26,27]]],[26,1,1,27,28,[[857,1,1,27,28]]]],[426,431,608,611,619,620,807,808,964,4051,4241,5998,6021,6715,6894,7281,7309,7441,7640,7666,7669,7766,8499,8501,9387,9407,19505,21967]]],["run",[29,28,[[8,3,3,0,3,[[243,1,1,0,1],[252,1,1,1,2],[255,1,1,2,3]]],[9,6,5,3,8,[[281,1,1,3,4],[284,4,3,4,7],[288,1,1,7,8]]],[10,1,1,8,9,[[291,1,1,8,9]]],[11,2,2,9,11,[[316,1,1,9,10],[317,1,1,10,11]]],[18,3,3,11,14,[[496,1,1,11,12],[536,1,1,12,13],[596,1,1,13,14]]],[19,1,1,14,15,[[628,1,1,14,15]]],[21,1,1,15,16,[[671,1,1,15,16]]],[22,3,3,16,19,[[718,1,1,16,17],[733,1,1,17,18],[737,1,1,18,19]]],[23,2,2,19,21,[[756,1,1,19,20],[795,1,1,20,21]]],[28,3,3,21,24,[[877,3,3,21,24]]],[29,1,1,24,25,[[884,1,1,24,25]]],[33,1,1,25,26,[[901,1,1,25,26]]],[34,1,1,26,27,[[904,1,1,26,27]]],[36,1,1,27,28,[[909,1,1,27,28]]]],[7380,7635,7736,8390,8497,8500,8501,8632,8722,9625,9667,14173,14794,15930,16416,17541,18451,18745,18807,19254,20243,22315,22318,22320,22462,22703,22750,22849]]],["runnest",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16502]]],["runneth",[4,4,[[17,2,2,0,2,[[450,1,1,0,1],[451,1,1,1,2]]],[18,1,1,2,3,[[624,1,1,2,3]]],[19,1,1,3,4,[[645,1,1,3,4]]]],[13229,13252,16366,16911]]],["running",[6,5,[[9,3,2,0,2,[[284,3,2,0,2]]],[11,1,1,2,3,[[317,1,1,2,3]]],[13,1,1,3,4,[[389,1,1,3,4]]],[19,1,1,4,5,[[633,1,1,4,5]]]],[8502,8504,9668,11668,16558]]],["speedily",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11979]]],["through",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14147]]]]},{"k":"H7324","v":[["*",[19,19,[[0,2,2,0,2,[[13,1,1,0,1],[41,1,1,1,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[2,1,1,3,4,[[115,1,1,3,4]]],[18,2,2,4,6,[[495,1,1,4,5],[512,1,1,5,6]]],[20,1,1,6,7,[[669,1,1,6,7]]],[21,1,1,7,8,[[671,1,1,7,8]]],[22,1,1,8,9,[[710,1,1,8,9]]],[23,2,2,9,11,[[792,2,2,9,11]]],[25,5,5,11,16,[[806,2,2,11,13],[813,1,1,13,14],[829,1,1,14,15],[831,1,1,15,16]]],[34,1,1,16,17,[[903,1,1,16,17]]],[37,1,1,17,18,[[914,1,1,17,18]]],[38,1,1,18,19,[[927,1,1,18,19]]]],[350,1287,1929,3557,14160,14413,17516,17540,18265,20091,20092,20548,20558,20694,21164,21215,22748,22934,23130]]],["+",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[350]]],["draw",[3,3,[[1,1,1,0,1,[[64,1,1,0,1]]],[25,2,2,1,3,[[829,1,1,1,2],[831,1,1,2,3]]]],[1929,21164,21215]]],["emptied",[2,2,[[0,1,1,0,1,[[41,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[1287,20091]]],["empty",[5,5,[[20,1,1,0,1,[[669,1,1,0,1]]],[22,1,1,1,2,[[710,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]],[34,1,1,3,4,[[903,1,1,3,4]]],[37,1,1,4,5,[[914,1,1,4,5]]]],[17516,18265,20092,22748,22934]]],["forth",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17540]]],["out",[7,7,[[2,1,1,0,1,[[115,1,1,0,1]]],[18,2,2,1,3,[[495,1,1,1,2],[512,1,1,2,3]]],[25,3,3,3,6,[[806,2,2,3,5],[813,1,1,5,6]]],[38,1,1,6,7,[[927,1,1,6,7]]]],[3557,14160,14413,20548,20558,20694,23130]]]]},{"k":"H7325","v":[["run",[1,1,[[2,1,1,0,1,[[104,1,1,0,1]]]],[3171]]]]},{"k":"H7326","v":[["*",[24,24,[[8,1,1,0,1,[[253,1,1,0,1]]],[9,3,3,1,4,[[278,3,3,1,4]]],[18,2,2,4,6,[[511,1,1,4,5],[559,1,1,5,6]]],[19,16,16,6,22,[[637,1,1,6,7],[640,3,3,7,10],[641,1,1,10,11],[644,1,1,11,12],[645,1,1,12,13],[646,3,3,13,16],[649,2,2,16,18],[655,3,3,18,21],[656,1,1,21,22]]],[20,2,2,22,24,[[662,1,1,22,23],[663,1,1,23,24]]]],[7699,8287,8289,8290,14398,15236,16660,16754,16755,16770,16792,16878,16924,16926,16932,16947,17017,17022,17199,17202,17223,17237,17395,17405]]],["lack",[1,1,[[18,1,1,0,1,[[511,1,1,0,1]]]],[14398]]],["needy",[1,1,[[18,1,1,0,1,[[559,1,1,0,1]]]],[15236]]],["poor",[22,22,[[8,1,1,0,1,[[253,1,1,0,1]]],[9,3,3,1,4,[[278,3,3,1,4]]],[19,16,16,4,20,[[637,1,1,4,5],[640,3,3,5,8],[641,1,1,8,9],[644,1,1,9,10],[645,1,1,10,11],[646,3,3,11,14],[649,2,2,14,16],[655,3,3,16,19],[656,1,1,19,20]]],[20,2,2,20,22,[[662,1,1,20,21],[663,1,1,21,22]]]],[7699,8287,8289,8290,16660,16754,16755,16770,16792,16878,16924,16926,16932,16947,17017,17022,17199,17202,17223,17237,17395,17405]]]]},{"k":"H7327","v":[["Ruth",[12,12,[[7,12,12,0,12,[[232,4,4,0,4],[233,4,4,4,8],[234,1,1,8,9],[235,3,3,9,12]]]],[7131,7141,7143,7149,7151,7157,7170,7171,7181,7195,7200,7203]]]]},{"k":"H7328","v":[["*",[9,8,[[26,9,8,0,8,[[851,8,7,0,7],[853,1,1,7,8]]]],[21776,21777,21785,21786,21787,21788,21805,21846]]],["secret",[6,6,[[26,6,6,0,6,[[851,5,5,0,5],[853,1,1,5,6]]]],[21776,21777,21785,21788,21805,21846]]],["secrets",[3,3,[[26,3,3,0,3,[[851,3,3,0,3]]]],[21786,21787,21805]]]]},{"k":"H7329","v":[["*",[2,2,[[22,1,1,0,1,[[695,1,1,0,1]]],[35,1,1,1,2,[[907,1,1,1,2]]]],[17987,22816]]],["+",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22816]]],["lean",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17987]]]]},{"k":"H7330","v":[["lean",[2,2,[[3,1,1,0,1,[[129,1,1,0,1]]],[25,1,1,1,2,[[835,1,1,1,2]]]],[4095,21333]]]]},{"k":"H7331","v":[["Rezon",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9131]]]]},{"k":"H7332","v":[["*",[3,3,[[18,1,1,0,1,[[583,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]],[32,1,1,2,3,[[898,1,1,2,3]]]],[15666,17866,22658]]],["leanness",[2,2,[[18,1,1,0,1,[[583,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[15666,17866]]],["scant",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22658]]]]},{"k":"H7333","v":[["prince",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16800]]]]},{"k":"H7334","v":[["leanness",[2,1,[[22,2,1,0,1,[[702,2,1,0,1]]]],[18111]]]]},{"k":"H7335","v":[["*",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[23,1,1,1,2,[[784,1,1,1,2]]]],[13215,19953]]],["at",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13215]]],["much",[1,1,[[23,1,1,0,1,[[784,1,1,0,1]]]],[19953]]]]},{"k":"H7336","v":[["*",[6,6,[[6,1,1,0,1,[[215,1,1,0,1]]],[18,1,1,1,2,[[479,1,1,1,2]]],[19,2,2,2,4,[[635,1,1,2,3],[658,1,1,3,4]]],[22,1,1,4,5,[[718,1,1,4,5]]],[34,1,1,5,6,[[903,1,1,5,6]]]],[6626,13947,16617,17288,18443,22741]]],["princes",[5,5,[[6,1,1,0,1,[[215,1,1,0,1]]],[19,2,2,1,3,[[635,1,1,1,2],[658,1,1,2,3]]],[22,1,1,3,4,[[718,1,1,3,4]]],[34,1,1,4,5,[[903,1,1,4,5]]]],[6626,16617,17288,18443,22741]]],["rulers",[1,1,[[18,1,1,0,1,[[479,1,1,0,1]]]],[13947]]]]},{"k":"H7337","v":[["*",[25,25,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,1,1,1,2,[[83,1,1,1,2]]],[4,3,3,2,5,[[164,1,1,2,3],[171,1,1,3,4],[185,1,1,4,5]]],[8,1,1,5,6,[[237,1,1,5,6]]],[9,1,1,6,7,[[288,1,1,6,7]]],[18,6,6,7,13,[[481,1,1,7,8],[495,1,1,8,9],[502,1,1,9,10],[512,1,1,10,11],[558,1,1,11,12],[596,1,1,12,13]]],[19,1,1,13,14,[[645,1,1,13,14]]],[22,7,7,14,21,[[683,1,1,14,15],[708,2,2,15,17],[732,1,1,17,18],[735,2,2,18,20],[738,1,1,20,21]]],[25,1,1,21,22,[[842,1,1,21,22]]],[29,1,1,22,23,[[879,1,1,22,23]]],[32,1,1,23,24,[[893,1,1,23,24]]],[34,1,1,24,25,[[904,1,1,24,25]]]],[714,2520,5260,5414,5830,7241,8639,13966,14154,14268,14431,15227,15930,16917,17753,18240,18250,18725,18769,18773,18826,21533,22377,22595,22753]]],["+",[4,4,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,2,2,1,3,[[164,1,1,1,2],[171,1,1,2,3]]],[29,1,1,3,4,[[879,1,1,3,4]]]],[2520,5260,5414,22377]]],["Enlarge",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18725]]],["enlarge",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[32,1,1,1,2,[[893,1,1,1,2]]]],[15930,22595]]],["enlarged",[8,8,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,3,3,2,5,[[481,1,1,2,3],[495,1,1,3,4],[502,1,1,4,5]]],[22,3,3,5,8,[[683,1,1,5,6],[735,1,1,6,7],[738,1,1,7,8]]]],[7241,8639,13966,14154,14268,17753,18773,18826]]],["enlargeth",[2,2,[[4,1,1,0,1,[[185,1,1,0,1]]],[34,1,1,1,2,[[904,1,1,1,2]]]],[5830,22753]]],["enlarging",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21533]]],["large",[2,2,[[22,2,2,0,2,[[708,2,2,0,2]]]],[18240,18250]]],["opened",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14431]]],["room",[2,2,[[0,1,1,0,1,[[25,1,1,0,1]]],[19,1,1,1,2,[[645,1,1,1,2]]]],[714,16917]]],["wide",[2,2,[[18,1,1,0,1,[[558,1,1,0,1]]],[22,1,1,1,2,[[735,1,1,1,2]]]],[15227,18769]]]]},{"k":"H7338","v":[["*",[2,2,[[17,2,2,0,2,[[471,1,1,0,1],[473,1,1,1,2]]]],[13752,13811]]],["breadth",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13811]]],["place",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13752]]]]},{"k":"H7339","v":[["*",[43,41,[[0,1,1,0,1,[[18,1,1,0,1]]],[4,1,1,1,2,[[165,1,1,1,2]]],[6,3,3,2,5,[[229,3,3,2,5]]],[9,1,1,5,6,[[287,1,1,5,6]]],[13,2,2,6,8,[[395,1,1,6,7],[398,1,1,7,8]]],[14,1,1,8,9,[[412,1,1,8,9]]],[15,4,3,9,12,[[420,4,3,9,12]]],[16,3,3,12,15,[[429,1,1,12,13],[431,2,2,13,15]]],[17,1,1,15,16,[[464,1,1,15,16]]],[18,2,2,16,18,[[532,1,1,16,17],[621,1,1,17,18]]],[19,5,5,18,23,[[628,1,1,18,19],[632,1,1,19,20],[634,1,1,20,21],[649,1,1,21,22],[653,1,1,22,23]]],[21,1,1,23,24,[[673,1,1,23,24]]],[22,2,2,24,26,[[693,1,1,24,25],[737,1,1,25,26]]],[23,5,5,26,31,[[749,1,1,26,27],[753,1,1,27,28],[792,1,1,28,29],[793,1,1,29,30],[794,1,1,30,31]]],[24,3,3,31,34,[[798,2,2,31,33],[800,1,1,33,34]]],[25,2,2,34,36,[[817,2,2,34,36]]],[26,1,1,36,37,[[858,1,1,36,37]]],[29,1,1,37,38,[[883,1,1,37,38]]],[33,1,1,38,39,[[901,1,1,38,39]]],[37,3,2,39,41,[[918,3,2,39,41]]]],[459,5288,7039,7041,7044,8592,11795,11881,12261,12494,12496,12509,12768,12802,12804,13539,14743,16319,16420,16533,16587,17028,17154,17573,17963,18814,19059,19196,20118,20153,20196,20343,20344,20438,20786,20793,22013,22439,22703,22980,22981]]],["+",[3,3,[[0,1,1,0,1,[[18,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]],[23,1,1,2,3,[[753,1,1,2,3]]]],[459,8592,19196]]],["places",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19059]]],["street",[19,18,[[4,1,1,0,1,[[165,1,1,0,1]]],[6,3,3,1,4,[[229,3,3,1,4]]],[13,2,2,4,6,[[395,1,1,4,5],[398,1,1,5,6]]],[14,1,1,6,7,[[412,1,1,6,7]]],[15,4,3,7,10,[[420,4,3,7,10]]],[16,3,3,10,13,[[429,1,1,10,11],[431,2,2,11,13]]],[17,1,1,13,14,[[464,1,1,13,14]]],[22,1,1,14,15,[[737,1,1,14,15]]],[25,2,2,15,17,[[817,2,2,15,17]]],[26,1,1,17,18,[[858,1,1,17,18]]]],[5288,7039,7041,7044,11795,11881,12261,12494,12496,12509,12768,12802,12804,13539,18814,20786,20793,22013]]],["streets",[18,17,[[18,2,2,0,2,[[532,1,1,0,1],[621,1,1,1,2]]],[19,5,5,2,7,[[628,1,1,2,3],[632,1,1,3,4],[634,1,1,4,5],[649,1,1,5,6],[653,1,1,6,7]]],[22,1,1,7,8,[[693,1,1,7,8]]],[23,3,3,8,11,[[792,1,1,8,9],[793,1,1,9,10],[794,1,1,10,11]]],[24,3,3,11,14,[[798,2,2,11,13],[800,1,1,13,14]]],[29,1,1,14,15,[[883,1,1,14,15]]],[37,3,2,15,17,[[918,3,2,15,17]]]],[14743,16319,16420,16533,16587,17028,17154,17963,20118,20153,20196,20343,20344,20438,22439,22980,22981]]],["ways",[2,2,[[21,1,1,0,1,[[673,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[17573,22703]]]]},{"k":"H7340","v":[["Rehob",[10,10,[[3,1,1,0,1,[[129,1,1,0,1]]],[5,3,3,1,4,[[205,2,2,1,3],[207,1,1,3,4]]],[6,1,1,4,5,[[211,1,1,4,5]]],[9,3,3,5,8,[[274,2,2,5,7],[276,1,1,7,8]]],[12,1,1,8,9,[[343,1,1,8,9]]],[15,1,1,9,10,[[422,1,1,9,10]]]],[4096,6349,6351,6412,6540,8212,8221,8248,10529,12560]]]]},{"k":"H7341","v":[["*",[101,89,[[0,2,2,0,2,[[5,1,1,0,1],[12,1,1,1,2]]],[1,22,22,2,24,[[74,3,3,2,5],[75,3,3,5,8],[76,4,4,8,12],[77,1,1,12,13],[79,1,1,13,14],[85,3,3,14,17],[86,4,4,17,21],[87,2,2,21,23],[88,1,1,23,24]]],[4,1,1,24,25,[[155,1,1,24,25]]],[10,11,8,25,33,[[294,1,1,25,26],[296,7,4,26,30],[297,3,3,30,33]]],[13,6,5,33,38,[[369,4,3,33,36],[370,1,1,36,37],[372,1,1,37,38]]],[17,1,1,38,39,[[472,1,1,38,39]]],[22,1,1,39,40,[[686,1,1,39,40]]],[25,55,47,40,87,[[841,18,17,40,57],[842,15,11,57,68],[843,5,5,68,73],[844,5,4,73,77],[846,4,4,77,81],[847,1,1,81,82],[849,7,5,82,87]]],[37,2,2,87,89,[[912,1,1,87,88],[915,1,1,88,89]]]],[152,335,2205,2212,2218,2237,2243,2251,2273,2284,2285,2290,2309,2384,2575,2581,2587,2605,2610,2614,2629,2634,2651,2673,4986,8873,8898,8899,8902,8916,8936,8940,8961,11232,11233,11237,11247,11295,13779,17815,21482,21483,21484,21488,21490,21496,21497,21498,21502,21506,21507,21510,21513,21519,21524,21525,21526,21527,21528,21529,21530,21531,21533,21535,21536,21537,21538,21540,21554,21556,21562,21563,21572,21585,21586,21588,21589,21631,21633,21635,21636,21677,21710,21711,21712,21715,21717,22901,22938]]],["breadth",[74,68,[[0,2,2,0,2,[[5,1,1,0,1],[12,1,1,1,2]]],[1,21,21,2,23,[[74,3,3,2,5],[75,3,3,5,8],[76,3,3,8,11],[77,1,1,11,12],[79,1,1,12,13],[85,3,3,13,16],[86,4,4,16,20],[87,2,2,20,22],[88,1,1,22,23]]],[4,1,1,23,24,[[155,1,1,23,24]]],[10,7,6,24,30,[[296,4,3,24,27],[297,3,3,27,30]]],[13,5,4,30,34,[[369,4,3,30,33],[370,1,1,33,34]]],[17,1,1,34,35,[[472,1,1,34,35]]],[22,1,1,35,36,[[686,1,1,35,36]]],[25,34,30,36,66,[[841,10,10,36,46],[842,9,8,46,54],[843,2,2,54,56],[844,3,2,56,58],[846,3,3,58,61],[849,7,5,61,66]]],[37,2,2,66,68,[[912,1,1,66,67],[915,1,1,67,68]]]],[152,335,2205,2212,2218,2237,2243,2251,2284,2285,2290,2309,2384,2575,2581,2587,2605,2610,2614,2629,2634,2651,2673,4986,8898,8899,8916,8936,8940,8961,11232,11233,11237,11247,13779,17815,21482,21488,21490,21496,21497,21498,21502,21513,21525,21526,21527,21528,21529,21530,21531,21533,21537,21540,21554,21556,21585,21586,21631,21633,21635,21710,21711,21712,21715,21717,22901,22938]]],["broad",[22,18,[[1,1,1,0,1,[[76,1,1,0,1]]],[10,3,1,1,2,[[296,3,1,1,2]]],[13,1,1,2,3,[[372,1,1,2,3]]],[25,17,15,3,18,[[841,8,7,3,10],[842,3,2,10,12],[843,2,2,12,14],[844,2,2,14,16],[846,1,1,16,17],[847,1,1,17,18]]]],[2273,8902,11295,21483,21484,21506,21507,21510,21519,21524,21527,21538,21563,21572,21588,21589,21636,21677]]],["largeness",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8873]]],["thick",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21538]]],["thickness",[2,2,[[25,2,2,0,2,[[842,1,1,0,1],[843,1,1,1,2]]]],[21535,21562]]],["wideness",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21536]]]]},{"k":"H7342","v":[["*",[20,20,[[0,1,1,0,1,[[33,1,1,0,1]]],[1,1,1,1,2,[[52,1,1,1,2]]],[6,1,1,2,3,[[228,1,1,2,3]]],[12,1,1,3,4,[[341,1,1,3,4]]],[15,5,5,4,9,[[415,1,1,4,5],[416,1,1,5,6],[419,1,1,6,7],[421,1,1,7,8],[424,1,1,8,9]]],[17,2,2,9,11,[[446,1,1,9,10],[465,1,1,10,11]]],[18,4,4,11,15,[[578,1,1,11,12],[581,1,1,12,13],[596,2,2,13,15]]],[19,2,2,15,17,[[648,1,1,15,16],[655,1,1,16,17]]],[22,1,1,17,18,[[700,1,1,17,18]]],[23,1,1,18,19,[[795,1,1,18,19]]],[25,1,1,19,20,[[824,1,1,19,20]]]],[1001,1587,7003,10425,12335,12378,12424,12546,12662,13117,13571,15518,15596,15943,15994,16988,17221,18070,20270,21039]]],["+",[5,5,[[0,1,1,0,1,[[33,1,1,0,1]]],[12,1,1,1,2,[[341,1,1,1,2]]],[15,1,1,2,3,[[419,1,1,2,3]]],[18,1,1,3,4,[[581,1,1,3,4]]],[22,1,1,4,5,[[700,1,1,4,5]]]],[1001,10425,12424,15596,18070]]],["broad",[4,4,[[15,2,2,0,2,[[415,1,1,0,1],[424,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]]],[12335,12662,15994,20270]]],["broader",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13117]]],["large",[5,5,[[1,1,1,0,1,[[52,1,1,0,1]]],[6,1,1,1,2,[[228,1,1,1,2]]],[15,2,2,2,4,[[416,1,1,2,3],[421,1,1,3,4]]],[25,1,1,4,5,[[824,1,1,4,5]]]],[1587,7003,12378,12546,21039]]],["liberty",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15943]]],["proud",[3,3,[[18,1,1,0,1,[[578,1,1,0,1]]],[19,2,2,1,3,[[648,1,1,1,2],[655,1,1,2,3]]]],[15518,16988,17221]]],["wide",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13571]]]]},{"k":"H7343","v":[["Rahab",[5,5,[[5,5,5,0,5,[[188,2,2,0,2],[192,3,3,2,5]]]],[5870,5872,5966,5972,5974]]]]},{"k":"H7344","v":[["*",[4,4,[[0,3,3,0,3,[[9,1,1,0,1],[25,1,1,1,2],[35,1,1,2,3]]],[12,1,1,3,4,[[338,1,1,3,4]]]],[245,714,1077,10300]]],["+",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1077,10300]]],["Rehoboth",[2,2,[[0,2,2,0,2,[[9,1,1,0,1],[25,1,1,1,2]]]],[245,714]]]]},{"k":"H7345","v":[["Rehabiah",[5,3,[[12,5,3,0,3,[[360,2,1,0,1],[361,2,1,1,2],[363,1,1,2,3]]]],[11000,11036,11102]]]]},{"k":"H7346","v":[["Rehoboam",[50,41,[[10,21,17,0,17,[[301,1,1,0,1],[302,12,9,1,10],[304,7,6,10,16],[305,1,1,16,17]]],[12,1,1,17,18,[[340,1,1,17,18]]],[13,28,23,18,41,[[375,1,1,18,19],[376,8,7,19,26],[377,8,7,26,33],[378,9,7,33,40],[379,2,1,40,41]]]],[9151,9152,9154,9157,9163,9168,9169,9172,9174,9178,9239,9243,9245,9247,9248,9249,9255,10371,11395,11396,11398,11401,11407,11408,11412,11413,11415,11417,11419,11431,11432,11435,11436,11438,11439,11442,11447,11450,11452,11453,11460]]]]},{"k":"H7347","v":[["*",[6,5,[[1,1,1,0,1,[[60,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[4,2,1,2,3,[[176,2,1,2,3]]],[22,1,1,3,4,[[725,1,1,3,4]]],[23,1,1,4,5,[[769,1,1,4,5]]]],[1811,4032,5531,18601,19544]]],["mill",[1,1,[[1,1,1,0,1,[[60,1,1,0,1]]]],[1811]]],["mills",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4032]]],["millstone",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5531]]],["millstones",[2,2,[[22,1,1,0,1,[[725,1,1,0,1]]],[23,1,1,1,2,[[769,1,1,1,2]]]],[18601,19544]]],["nether",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5531]]]]},{"k":"H7348","v":[["Rehum",[8,8,[[14,5,5,0,5,[[404,1,1,0,1],[406,4,4,1,5]]],[15,3,3,5,8,[[415,1,1,5,6],[422,1,1,6,7],[424,1,1,7,8]]]],[12029,12118,12119,12127,12133,12344,12574,12627]]]]},{"k":"H7349","v":[["*",[13,13,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,1,1,1,2,[[156,1,1,1,2]]],[13,1,1,2,3,[[396,1,1,2,3]]],[15,2,2,3,5,[[421,2,2,3,5]]],[18,6,6,5,11,[[555,1,1,5,6],[563,1,1,6,7],[580,1,1,7,8],[588,1,1,8,9],[589,1,1,9,10],[622,1,1,10,11]]],[28,1,1,11,12,[[877,1,1,11,12]]],[31,1,1,12,13,[[892,1,1,12,13]]]],[2502,5035,11836,12528,12542,15151,15299,15557,15797,15807,16328,22324,22570]]],["compassion",[5,5,[[18,5,5,0,5,[[555,1,1,0,1],[563,1,1,1,2],[588,1,1,2,3],[589,1,1,3,4],[622,1,1,4,5]]]],[15151,15299,15797,15807,16328]]],["merciful",[8,8,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,1,1,1,2,[[156,1,1,1,2]]],[13,1,1,2,3,[[396,1,1,2,3]]],[15,2,2,3,5,[[421,2,2,3,5]]],[18,1,1,5,6,[[580,1,1,5,6]]],[28,1,1,6,7,[[877,1,1,6,7]]],[31,1,1,7,8,[[892,1,1,7,8]]]],[2502,5035,11836,12528,12542,15557,22324,22570]]]]},{"k":"H7350","v":[["*",[85,85,[[0,2,2,0,2,[[21,1,1,0,1],[36,1,1,1,2]]],[1,4,4,2,6,[[51,1,1,2,3],[69,2,2,3,5],[73,1,1,5,6]]],[3,1,1,6,7,[[125,1,1,6,7]]],[4,5,5,7,12,[[165,1,1,7,8],[172,1,1,8,9],[180,1,1,9,10],[181,1,1,10,11],[182,1,1,11,12]]],[5,4,4,12,16,[[189,1,1,12,13],[195,3,3,13,16]]],[6,2,2,16,18,[[228,2,2,16,18]]],[8,1,1,18,19,[[261,1,1,18,19]]],[9,1,1,19,20,[[273,1,1,19,20]]],[10,2,2,20,22,[[298,2,2,20,22]]],[11,3,3,22,25,[[314,1,1,22,23],[331,1,1,23,24],[332,1,1,24,25]]],[12,1,1,25,26,[[354,1,1,25,26]]],[13,3,3,26,29,[[372,2,2,26,28],[392,1,1,28,29]]],[14,1,1,29,30,[[405,1,1,29,30]]],[15,2,2,30,32,[[416,1,1,30,31],[424,1,1,31,32]]],[16,1,1,32,33,[[434,1,1,32,33]]],[17,5,5,33,38,[[437,1,1,33,34],[471,2,2,34,36],[474,2,2,36,38]]],[18,7,7,38,45,[[487,1,1,38,39],[499,1,1,39,40],[515,1,1,40,41],[542,1,1,41,42],[580,1,1,42,43],[596,1,1,43,44],[616,1,1,44,45]]],[19,4,4,45,49,[[634,1,1,45,46],[642,1,1,46,47],[654,1,1,47,48],[658,1,1,48,49]]],[20,2,2,49,51,[[665,2,2,49,51]]],[22,18,18,51,69,[[683,1,1,51,52],[700,2,2,52,54],[701,1,1,54,55],[703,1,1,55,56],[711,1,1,56,57],[715,1,1,57,58],[717,1,1,58,59],[721,1,1,59,60],[724,1,1,60,61],[727,2,2,61,63],[735,2,2,63,65],[737,1,1,65,66],[738,2,2,66,68],[744,1,1,68,69]]],[23,8,8,69,77,[[756,1,1,69,70],[767,1,1,70,71],[769,1,1,71,72],[774,1,1,72,73],[775,1,1,73,74],[790,1,1,74,75],[792,1,1,75,76],[795,1,1,76,77]]],[25,3,3,77,80,[[807,1,1,77,78],[813,1,1,78,79],[823,1,1,79,80]]],[26,1,1,80,81,[[858,1,1,80,81]]],[28,1,1,81,82,[[878,1,1,81,82]]],[32,1,1,82,83,[[896,1,1,82,83]]],[34,1,1,83,84,[[903,1,1,83,84]]],[37,1,1,84,85,[[916,1,1,84,85]]]],[551,1101,1558,2069,2072,2178,3975,5279,5442,5660,5701,5719,5897,6043,6046,6059,7000,7021,7918,8199,9026,9031,9558,10086,10112,10880,11314,11318,11747,12110,12378,12667,12854,12903,13739,13761,13859,13863,14042,14205,14501,14865,15561,16053,16241,16594,16836,17179,17294,17452,17453,17765,18055,18063,18084,18119,18292,18378,18415,18511,18598,18637,18648,18774,18784,18814,18825,18830,18941,19251,19507,19560,19677,19694,20072,20104,20262,20575,20707,20981,21995,22351,22623,22739,22962]]],["+",[46,46,[[0,2,2,0,2,[[21,1,1,0,1],[36,1,1,1,2]]],[1,4,4,2,6,[[51,1,1,2,3],[69,2,2,3,5],[73,1,1,5,6]]],[4,1,1,6,7,[[180,1,1,6,7]]],[5,2,2,7,9,[[195,2,2,7,9]]],[8,1,1,9,10,[[261,1,1,9,10]]],[9,1,1,10,11,[[273,1,1,10,11]]],[10,1,1,11,12,[[298,1,1,11,12]]],[11,3,3,12,15,[[314,1,1,12,13],[331,1,1,13,14],[332,1,1,14,15]]],[12,1,1,15,16,[[354,1,1,15,16]]],[13,1,1,16,17,[[392,1,1,16,17]]],[14,1,1,17,18,[[405,1,1,17,18]]],[15,1,1,18,19,[[424,1,1,18,19]]],[17,5,5,19,24,[[437,1,1,19,20],[471,2,2,20,22],[474,2,2,22,24]]],[18,2,2,24,26,[[515,1,1,24,25],[616,1,1,25,26]]],[19,1,1,26,27,[[634,1,1,26,27]]],[22,13,13,27,40,[[683,1,1,27,28],[700,2,2,28,30],[701,1,1,30,31],[703,1,1,31,32],[715,1,1,32,33],[721,1,1,33,34],[727,2,2,34,36],[735,1,1,36,37],[737,1,1,37,38],[738,2,2,38,40]]],[23,4,4,40,44,[[767,1,1,40,41],[774,1,1,41,42],[775,1,1,42,43],[790,1,1,43,44]]],[32,1,1,44,45,[[896,1,1,44,45]]],[34,1,1,45,46,[[903,1,1,45,46]]]],[551,1101,1558,2069,2072,2178,5660,6043,6046,7918,8199,9026,9558,10086,10112,10880,11747,12110,12667,12903,13739,13761,13859,13863,14501,16241,16594,17765,18055,18063,18084,18119,18378,18511,18637,18648,18774,18814,18825,18830,19507,19677,19694,20072,22623,22739]]],["far",[20,20,[[4,1,1,0,1,[[181,1,1,0,1]]],[5,1,1,1,2,[[195,1,1,1,2]]],[6,2,2,2,4,[[228,2,2,2,4]]],[10,1,1,4,5,[[298,1,1,4,5]]],[13,1,1,5,6,[[372,1,1,5,6]]],[15,1,1,6,7,[[416,1,1,6,7]]],[16,1,1,7,8,[[434,1,1,7,8]]],[18,3,3,8,11,[[499,1,1,8,9],[580,1,1,9,10],[596,1,1,10,11]]],[19,2,2,11,13,[[642,1,1,11,12],[658,1,1,12,13]]],[20,1,1,13,14,[[665,1,1,13,14]]],[22,2,2,14,16,[[717,1,1,14,15],[724,1,1,15,16]]],[23,3,3,16,19,[[756,1,1,16,17],[769,1,1,17,18],[792,1,1,18,19]]],[25,1,1,19,20,[[823,1,1,19,20]]]],[5701,6059,7000,7021,9031,11314,12378,12854,14205,15561,16053,16836,17294,17452,18415,18598,19251,19560,20104,20981]]],["off",[18,18,[[3,1,1,0,1,[[125,1,1,0,1]]],[4,3,3,1,4,[[165,1,1,1,2],[172,1,1,2,3],[182,1,1,3,4]]],[13,1,1,4,5,[[372,1,1,4,5]]],[18,2,2,5,7,[[487,1,1,5,6],[542,1,1,6,7]]],[19,1,1,7,8,[[654,1,1,7,8]]],[20,1,1,8,9,[[665,1,1,8,9]]],[22,3,3,9,12,[[711,1,1,9,10],[735,1,1,10,11],[744,1,1,11,12]]],[23,1,1,12,13,[[795,1,1,12,13]]],[25,2,2,13,15,[[807,1,1,13,14],[813,1,1,14,15]]],[26,1,1,15,16,[[858,1,1,15,16]]],[28,1,1,16,17,[[878,1,1,16,17]]],[37,1,1,17,18,[[916,1,1,17,18]]]],[3975,5279,5442,5719,11318,14042,14865,17179,17453,18292,18784,18941,20262,20575,20707,21995,22351,22962]]],["space",[1,1,[[5,1,1,0,1,[[189,1,1,0,1]]]],[5897]]]]},{"k":"H7351","v":[["rafters",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17554]]]]},{"k":"H7352","v":[["far",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12157]]]]},{"k":"H7353","v":[["*",[4,4,[[0,2,2,0,2,[[30,1,1,0,1],[31,1,1,1,2]]],[21,1,1,2,3,[[676,1,1,2,3]]],[22,1,1,3,4,[[731,1,1,3,4]]]],[911,942,17620,18718]]],["ewes",[2,2,[[0,2,2,0,2,[[30,1,1,0,1],[31,1,1,1,2]]]],[911,942]]],["sheep",[2,2,[[21,1,1,0,1,[[676,1,1,0,1]]],[22,1,1,1,2,[[731,1,1,1,2]]]],[17620,18718]]]]},{"k":"H7354","v":[["*",[47,44,[[0,44,41,0,41,[[28,16,14,0,14],[29,10,9,14,23],[30,6,6,23,29],[32,3,3,29,32],[34,5,5,32,37],[45,3,3,37,40],[47,1,1,40,41]]],[7,1,1,41,42,[[235,1,1,41,42]]],[8,1,1,42,43,[[245,1,1,42,43]]],[23,1,1,43,44,[[775,1,1,43,44]]]],[801,804,805,806,807,811,812,813,815,820,823,824,825,826,831,832,836,837,838,844,845,852,855,877,887,892,905,906,907,961,962,967,1027,1030,1031,1035,1036,1405,1408,1411,1458,7201,7420,19706]]],["Rachel",[41,38,[[0,40,37,0,37,[[28,16,14,0,14],[29,9,8,14,22],[30,5,5,22,27],[32,3,3,27,30],[34,3,3,30,33],[45,3,3,33,36],[47,1,1,36,37]]],[7,1,1,37,38,[[235,1,1,37,38]]]],[801,804,805,806,807,811,812,813,815,820,823,824,825,826,831,832,836,838,844,845,852,855,877,887,892,905,907,961,962,967,1027,1030,1035,1405,1408,1411,1458,7201]]],["Rachel's",[5,5,[[0,4,4,0,4,[[29,1,1,0,1],[30,1,1,1,2],[34,2,2,2,4]]],[8,1,1,4,5,[[245,1,1,4,5]]]],[837,906,1031,1036,7420]]],["Rahel",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19706]]]]},{"k":"H7355","v":[["*",[47,43,[[1,2,1,0,1,[[82,2,1,0,1]]],[4,2,2,1,3,[[165,1,1,1,2],[182,1,1,2,3]]],[10,1,1,3,4,[[298,1,1,3,4]]],[11,1,1,4,5,[[325,1,1,4,5]]],[18,5,4,5,9,[[495,1,1,5,6],[579,1,1,6,7],[580,2,1,7,8],[593,1,1,8,9]]],[19,1,1,9,10,[[655,1,1,9,10]]],[22,12,12,10,22,[[687,1,1,10,11],[691,1,1,11,12],[692,1,1,12,13],[705,1,1,13,14],[708,1,1,14,15],[727,3,3,15,18],[732,2,2,18,20],[733,1,1,20,21],[738,1,1,21,22]]],[23,10,9,22,31,[[750,1,1,22,23],[756,1,1,23,24],[757,1,1,24,25],[765,1,1,25,26],[774,1,1,26,27],[775,2,1,27,28],[777,1,1,28,29],[786,1,1,29,30],[794,1,1,30,31]]],[24,1,1,31,32,[[799,1,1,31,32]]],[25,1,1,32,33,[[840,1,1,32,33]]],[27,7,6,33,39,[[862,2,2,33,35],[863,4,3,35,38],[875,1,1,38,39]]],[32,1,1,39,40,[[899,1,1,39,40]]],[34,1,1,40,41,[[905,1,1,40,41]]],[37,2,2,41,43,[[911,1,1,41,42],[920,1,1,42,43]]]],[2492,5289,5711,9035,9894,14119,15534,15562,15853,17209,17846,17924,17929,18162,18235,18646,18649,18651,18731,18733,18747,18831,19112,19264,19280,19447,19685,19711,19801,19987,20208,20386,21473,22100,22101,22106,22109,22128,22285,22683,22770,22890,23022]]],["+",[9,7,[[1,1,1,0,1,[[82,1,1,0,1]]],[18,2,1,1,2,[[580,2,1,1,2]]],[22,1,1,2,3,[[727,1,1,2,3]]],[23,2,1,3,4,[[775,2,1,3,4]]],[27,2,2,4,6,[[862,1,1,4,5],[863,1,1,5,6]]],[37,1,1,6,7,[[911,1,1,6,7]]]],[2492,15562,18651,19711,22100,22128,22890]]],["Ruhamah",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22106]]],["compassion",[5,5,[[4,2,2,0,2,[[165,1,1,0,1],[182,1,1,1,2]]],[23,1,1,2,3,[[756,1,1,2,3]]],[24,1,1,3,4,[[799,1,1,3,4]]],[32,1,1,4,5,[[899,1,1,4,5]]]],[5289,5711,19264,20386,22683]]],["love",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14119]]],["merciful",[1,1,[[18,1,1,0,1,[[593,1,1,0,1]]]],[15853]]],["mercy",[22,22,[[1,1,1,0,1,[[82,1,1,0,1]]],[19,1,1,1,2,[[655,1,1,1,2]]],[22,10,10,2,12,[[687,1,1,2,3],[692,1,1,3,4],[705,1,1,4,5],[708,1,1,5,6],[727,2,2,6,8],[732,2,2,8,10],[733,1,1,10,11],[738,1,1,11,12]]],[23,6,6,12,18,[[750,1,1,12,13],[757,1,1,13,14],[765,1,1,14,15],[774,1,1,15,16],[777,1,1,16,17],[794,1,1,17,18]]],[25,1,1,18,19,[[840,1,1,18,19]]],[27,2,2,19,21,[[863,1,1,19,20],[875,1,1,20,21]]],[34,1,1,21,22,[[905,1,1,21,22]]]],[2492,17209,17846,17929,18162,18235,18646,18649,18731,18733,18747,18831,19112,19280,19447,19685,19801,20208,21473,22128,22285,22770]]],["on",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[11,1,1,1,2,[[325,1,1,1,2]]]],[9035,9894]]],["pity",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17924]]],["upon",[5,5,[[18,1,1,0,1,[[579,1,1,0,1]]],[23,1,1,1,2,[[786,1,1,1,2]]],[27,2,2,2,4,[[862,1,1,2,3],[863,1,1,3,4]]],[37,1,1,4,5,[[920,1,1,4,5]]]],[15534,19987,22101,22109,23022]]]]},{"k":"H7356","v":[["*",[44,44,[[0,3,3,0,3,[[42,2,2,0,2],[48,1,1,2,3]]],[4,1,1,3,4,[[165,1,1,3,4]]],[6,1,1,4,5,[[215,1,1,4,5]]],[9,1,1,5,6,[[290,1,1,5,6]]],[10,2,2,6,8,[[293,1,1,6,7],[298,1,1,7,8]]],[12,1,1,8,9,[[358,1,1,8,9]]],[13,1,1,9,10,[[396,1,1,9,10]]],[15,5,5,10,15,[[413,1,1,10,11],[421,4,4,11,15]]],[18,11,11,15,26,[[502,1,1,15,16],[517,1,1,16,17],[528,1,1,17,18],[546,1,1,18,19],[554,1,1,19,20],[556,1,1,20,21],[580,1,1,21,22],[583,1,1,22,23],[596,2,2,23,25],[622,1,1,25,26]]],[19,2,2,26,28,[[639,1,1,26,27],[657,1,1,27,28]]],[22,5,5,28,33,[[724,1,1,28,29],[725,1,1,29,30],[732,1,1,30,31],[741,2,2,31,33]]],[23,2,2,33,35,[[760,1,1,33,34],[786,1,1,34,35]]],[24,1,1,35,36,[[799,1,1,35,36]]],[25,1,1,36,37,[[821,1,1,36,37]]],[26,3,3,37,40,[[850,1,1,37,38],[858,2,2,38,40]]],[27,1,1,40,41,[[863,1,1,40,41]]],[29,1,1,41,42,[[879,1,1,41,42]]],[37,2,2,42,44,[[911,1,1,42,43],[917,1,1,43,44]]]],[1304,1320,1498,5289,6653,8706,8842,9035,10947,11836,12307,12530,12538,12539,12542,14257,14536,14692,14951,15102,15193,15553,15697,15975,16054,16329,16729,17267,18589,18605,18730,18873,18881,19341,19987,20376,20921,21746,21997,22006,22124,22375,22894,22971]]],["bowels",[2,2,[[0,1,1,0,1,[[42,1,1,0,1]]],[10,1,1,1,2,[[293,1,1,1,2]]]],[1320,8842]]],["compassion",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[396,1,1,1,2]]]],[9035,11836]]],["compassions",[2,2,[[24,1,1,0,1,[[799,1,1,0,1]]],[37,1,1,1,2,[[917,1,1,1,2]]]],[20376,22971]]],["damsel",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6653]]],["love",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21746]]],["mercies",[25,25,[[9,1,1,0,1,[[290,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]],[15,3,3,2,5,[[421,3,3,2,5]]],[18,10,10,5,15,[[502,1,1,5,6],[517,1,1,6,7],[528,1,1,7,8],[546,1,1,8,9],[554,1,1,9,10],[556,1,1,10,11],[580,1,1,11,12],[596,2,2,12,14],[622,1,1,14,15]]],[19,1,1,15,16,[[639,1,1,15,16]]],[22,3,3,16,19,[[732,1,1,16,17],[741,2,2,17,19]]],[23,2,2,19,21,[[760,1,1,19,20],[786,1,1,20,21]]],[26,2,2,21,23,[[858,2,2,21,23]]],[27,1,1,23,24,[[863,1,1,23,24]]],[37,1,1,24,25,[[911,1,1,24,25]]]],[8706,10947,12530,12538,12539,14257,14536,14692,14951,15102,15193,15553,15975,16054,16329,16729,18730,18873,18881,19341,19987,21997,22006,22124,22894]]],["mercies'",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12542]]],["mercy",[4,4,[[0,1,1,0,1,[[42,1,1,0,1]]],[4,1,1,1,2,[[165,1,1,1,2]]],[15,1,1,2,3,[[413,1,1,2,3]]],[22,1,1,3,4,[[725,1,1,3,4]]]],[1304,5289,12307,18605]]],["pitied",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15697]]],["pity",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22375]]],["womb",[4,4,[[0,1,1,0,1,[[48,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]],[22,1,1,2,3,[[724,1,1,2,3]]],[25,1,1,3,4,[[821,1,1,3,4]]]],[1498,17267,18589,20921]]]]},{"k":"H7357","v":[["Raham",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10350]]]]},{"k":"H7358","v":[["*",[26,25,[[0,3,3,0,3,[[19,1,1,0,1],[28,1,1,1,2],[29,1,1,2,3]]],[1,4,4,3,7,[[62,3,3,3,6],[83,1,1,6,7]]],[3,4,4,7,11,[[119,1,1,7,8],[124,1,1,8,9],[128,1,1,9,10],[134,1,1,10,11]]],[8,2,2,11,13,[[236,2,2,11,13]]],[17,5,5,13,18,[[438,1,1,13,14],[445,1,1,14,15],[459,1,1,15,16],[466,1,1,16,17],[473,1,1,17,18]]],[18,3,3,18,21,[[499,1,1,18,19],[535,1,1,19,20],[587,1,1,20,21]]],[23,4,3,21,24,[[745,1,1,21,22],[764,3,2,22,24]]],[27,1,1,24,25,[[870,1,1,24,25]]]],[513,826,852,1869,1879,1882,2515,3704,3955,4071,4272,7217,7218,12915,13104,13456,13603,13801,14214,14782,15789,18951,19439,19440,22222]]],["+",[10,10,[[3,1,1,0,1,[[128,1,1,0,1]]],[17,3,3,1,4,[[438,1,1,1,2],[445,1,1,2,3],[473,1,1,3,4]]],[18,3,3,4,7,[[499,1,1,4,5],[535,1,1,5,6],[587,1,1,6,7]]],[23,3,3,7,10,[[745,1,1,7,8],[764,2,2,8,10]]]],[4071,12915,13104,13801,14214,14782,15789,18951,19439,19440]]],["matrix",[5,5,[[1,3,3,0,3,[[62,2,2,0,2],[83,1,1,2,3]]],[3,2,2,3,5,[[119,1,1,3,4],[134,1,1,4,5]]]],[1879,1882,2515,3704,4272]]],["womb",[10,10,[[0,2,2,0,2,[[28,1,1,0,1],[29,1,1,1,2]]],[1,1,1,2,3,[[62,1,1,2,3]]],[3,1,1,3,4,[[124,1,1,3,4]]],[8,2,2,4,6,[[236,2,2,4,6]]],[17,2,2,6,8,[[459,1,1,6,7],[466,1,1,7,8]]],[23,1,1,8,9,[[764,1,1,8,9]]],[27,1,1,9,10,[[870,1,1,9,10]]]],[826,852,1869,3955,7217,7218,13456,13603,19439,22222]]],["wombs",[1,1,[[0,1,1,0,1,[[19,1,1,0,1]]]],[513]]]]},{"k":"H7359","v":[["mercies",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21776]]]]},{"k":"H7360","v":[["eagle",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3015,5307]]]]},{"k":"H7361","v":[["two",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6653]]]]},{"k":"H7362","v":[["pitiful",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20430]]]]},{"k":"H7363","v":[["*",[3,3,[[0,1,1,0,1,[[0,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[23,1,1,2,3,[[767,1,1,2,3]]]],[1,5769,19493]]],["fluttereth",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5769]]],["moved",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[1]]],["shake",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19493]]]]},{"k":"H7364","v":[["*",[72,71,[[0,5,5,0,5,[[17,1,1,0,1],[18,1,1,1,2],[23,1,1,2,3],[42,2,2,3,5]]],[1,11,11,5,16,[[51,1,1,5,6],[78,2,2,6,8],[79,4,4,8,12],[89,4,4,12,16]]],[2,26,26,16,42,[[90,2,2,16,18],[97,2,2,18,20],[98,1,1,20,21],[103,2,2,21,23],[104,12,12,23,35],[105,4,4,35,39],[106,2,2,39,41],[111,1,1,41,42]]],[3,3,3,42,45,[[135,3,3,42,45]]],[4,2,2,45,47,[[173,1,1,45,46],[175,1,1,46,47]]],[6,1,1,47,48,[[229,1,1,47,48]]],[7,1,1,48,49,[[234,1,1,48,49]]],[8,1,1,49,50,[[260,1,1,49,50]]],[9,3,3,50,53,[[277,2,2,50,52],[278,1,1,52,53]]],[10,1,1,53,54,[[312,1,1,53,54]]],[11,3,3,54,57,[[317,3,3,54,57]]],[13,2,1,57,58,[[370,2,1,57,58]]],[17,2,2,58,60,[[444,1,1,58,59],[464,1,1,59,60]]],[18,3,3,60,63,[[503,1,1,60,61],[535,1,1,61,62],[550,1,1,62,63]]],[19,1,1,63,64,[[657,1,1,63,64]]],[21,2,2,64,66,[[675,2,2,64,66]]],[22,2,2,66,68,[[679,1,1,66,67],[682,1,1,67,68]]],[25,3,3,68,71,[[817,2,2,68,70],[824,1,1,70,71]]]],[428,459,623,1314,1321,1559,2340,2353,2400,2401,2402,2403,2719,2737,2738,2739,2754,2758,2923,2938,2967,3119,3120,3173,3174,3175,3176,3178,3179,3181,3184,3186,3189,3190,3195,3205,3225,3227,3229,3250,3251,3375,4296,4297,4308,5453,5511,7045,7175,7902,8261,8267,8306,9518,9657,9659,9660,11252,13081,13538,14279,14789,15033,17263,17601,17610,17670,17737,20766,20771,21047]]],["+",[12,12,[[1,2,2,0,2,[[79,1,1,0,1],[89,1,1,1,2]]],[2,7,7,2,9,[[98,1,1,2,3],[103,1,1,3,4],[104,1,1,4,5],[105,4,4,5,9]]],[4,1,1,9,10,[[173,1,1,9,10]]],[21,1,1,10,11,[[675,1,1,10,11]]],[22,1,1,11,12,[[682,1,1,11,12]]]],[2401,2738,2967,3120,3184,3205,3225,3227,3229,5453,17601,17737]]],["Wash",[3,3,[[7,1,1,0,1,[[234,1,1,0,1]]],[11,1,1,1,2,[[317,1,1,1,2]]],[22,1,1,2,3,[[679,1,1,2,3]]]],[7175,9660,17670]]],["bathe",[16,16,[[2,13,13,0,13,[[104,11,11,0,11],[106,2,2,11,13]]],[3,3,3,13,16,[[135,3,3,13,16]]]],[3173,3174,3175,3176,3178,3179,3181,3186,3189,3190,3195,3250,3251,4296,4297,4308]]],["myself",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13081]]],["wash",[25,24,[[0,3,3,0,3,[[17,1,1,0,1],[18,1,1,1,2],[23,1,1,2,3]]],[1,8,8,3,11,[[51,1,1,3,4],[78,2,2,4,6],[79,3,3,6,9],[89,2,2,9,11]]],[2,4,4,11,15,[[90,2,2,11,13],[103,1,1,13,14],[111,1,1,14,15]]],[4,1,1,15,16,[[175,1,1,15,16]]],[8,1,1,16,17,[[260,1,1,16,17]]],[9,1,1,17,18,[[277,1,1,17,18]]],[11,2,2,18,20,[[317,2,2,18,20]]],[13,2,1,20,21,[[370,2,1,20,21]]],[18,2,2,21,23,[[503,1,1,21,22],[535,1,1,22,23]]],[25,1,1,23,24,[[824,1,1,23,24]]]],[428,459,623,1559,2340,2353,2400,2402,2403,2719,2737,2754,2758,3119,3375,5511,7902,8267,9657,9659,11252,14279,14789,21047]]],["washed",[14,14,[[0,2,2,0,2,[[42,2,2,0,2]]],[1,1,1,2,3,[[89,1,1,2,3]]],[2,2,2,3,5,[[97,2,2,3,5]]],[6,1,1,5,6,[[229,1,1,5,6]]],[9,1,1,6,7,[[278,1,1,6,7]]],[10,1,1,7,8,[[312,1,1,7,8]]],[17,1,1,8,9,[[464,1,1,8,9]]],[18,1,1,9,10,[[550,1,1,9,10]]],[19,1,1,10,11,[[657,1,1,10,11]]],[21,1,1,11,12,[[675,1,1,11,12]]],[25,2,2,12,14,[[817,2,2,12,14]]]],[1314,1321,2739,2923,2938,7045,8306,9518,13538,15033,17263,17610,20766,20771]]],["washing",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8261]]]]},{"k":"H7365","v":[["trusted",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21835]]]]},{"k":"H7366","v":[["+",[2,2,[[18,2,2,0,2,[[537,1,1,0,1],[585,1,1,1,2]]]],[14815,15751]]]]},{"k":"H7367","v":[["washing",[2,2,[[21,2,2,0,2,[[674,1,1,0,1],[676,1,1,1,2]]]],[17584,17620]]]]},{"k":"H7368","v":[["*",[57,56,[[0,2,2,0,2,[[20,1,1,0,1],[43,1,1,1,2]]],[1,4,3,2,5,[[57,2,1,2,3],[72,1,1,3,4],[82,1,1,4,5]]],[4,2,2,5,7,[[164,1,1,5,6],[166,1,1,6,7]]],[5,2,2,7,9,[[189,1,1,7,8],[194,1,1,8,9]]],[6,1,1,9,10,[[228,1,1,9,10]]],[17,8,8,10,18,[[440,1,1,10,11],[446,1,1,11,12],[448,1,1,12,13],[454,1,1,13,14],[456,1,1,14,15],[457,2,2,15,17],[465,1,1,17,18]]],[18,11,11,18,29,[[499,2,2,18,20],[512,1,1,20,21],[515,1,1,21,22],[532,1,1,22,23],[548,1,1,23,24],[565,2,2,24,26],[580,1,1,26,27],[586,1,1,27,28],[596,1,1,28,29]]],[19,6,6,29,35,[[631,1,1,29,30],[632,1,1,30,31],[646,1,1,31,32],[649,2,2,32,34],[657,1,1,34,35]]],[20,2,2,35,37,[[661,1,1,35,36],[670,1,1,36,37]]],[22,8,8,37,45,[[684,1,1,37,38],[704,1,1,38,39],[707,1,1,39,40],[724,1,1,40,41],[727,1,1,41,42],[732,1,1,42,43],[737,2,2,43,45]]],[23,2,2,45,47,[[746,1,1,45,46],[771,1,1,46,47]]],[24,1,1,47,48,[[797,1,1,47,48]]],[25,5,5,48,53,[[809,1,1,48,49],[812,2,2,49,51],[844,1,1,51,52],[845,1,1,52,53]]],[28,2,2,53,55,[[877,1,1,53,54],[878,1,1,54,55]]],[32,1,1,55,56,[[899,1,1,55,56]]]],[529,1328,1738,2151,2480,5261,5314,5909,6006,7015,12955,13122,13174,13310,13371,13407,13412,13567,14215,14223,14432,14511,14739,14988,15316,15326,15561,15772,16048,16514,16525,16932,17020,17030,17259,17364,17529,17781,18145,18206,18599,18655,18737,18809,18811,18970,19606,20326,20610,20670,20671,21581,21609,22331,22349,22675]]],["+",[10,9,[[1,2,1,0,1,[[57,2,1,0,1]]],[17,1,1,1,2,[[454,1,1,1,2]]],[18,1,1,2,3,[[580,1,1,2,3]]],[19,1,1,3,4,[[632,1,1,3,4]]],[22,3,3,4,7,[[684,1,1,4,5],[707,1,1,5,6],[737,1,1,6,7]]],[23,1,1,7,8,[[771,1,1,7,8]]],[25,1,1,8,9,[[844,1,1,8,9]]]],[1738,13310,15561,16525,17781,18206,18809,19606,21581]]],["Withdraw",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13174]]],["away",[3,3,[[17,1,1,0,1,[[446,1,1,0,1]]],[18,1,1,1,2,[[565,1,1,1,2]]],[22,1,1,2,3,[[727,1,1,2,3]]]],[13122,15316,18655]]],["far",[29,29,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,2,2,1,3,[[164,1,1,1,2],[166,1,1,2,3]]],[5,1,1,3,4,[[189,1,1,3,4]]],[17,5,5,4,9,[[440,1,1,4,5],[456,1,1,5,6],[457,2,2,6,8],[465,1,1,8,9]]],[18,8,8,9,17,[[499,2,2,9,11],[512,1,1,11,12],[515,1,1,12,13],[548,1,1,13,14],[565,1,1,14,15],[586,1,1,15,16],[596,1,1,16,17]]],[19,5,5,17,22,[[631,1,1,17,18],[646,1,1,18,19],[649,2,2,19,21],[657,1,1,21,22]]],[22,2,2,22,24,[[704,1,1,22,23],[732,1,1,23,24]]],[23,1,1,24,25,[[746,1,1,24,25]]],[24,1,1,25,26,[[797,1,1,25,26]]],[25,2,2,26,28,[[812,1,1,26,27],[845,1,1,27,28]]],[28,1,1,28,29,[[878,1,1,28,29]]]],[2151,5261,5314,5909,12955,13371,13407,13412,13567,14215,14223,14432,14511,14988,15326,15772,16048,16514,16932,17020,17030,17259,18145,18737,18970,20326,20670,21609,22349]]],["go",[1,1,[[5,1,1,0,1,[[194,1,1,0,1]]]],[6006]]],["loosed",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17529]]],["off",[9,9,[[0,2,2,0,2,[[20,1,1,0,1],[43,1,1,1,2]]],[1,1,1,2,3,[[82,1,1,2,3]]],[18,1,1,3,4,[[532,1,1,3,4]]],[22,2,2,4,6,[[724,1,1,4,5],[737,1,1,5,6]]],[25,2,2,6,8,[[809,1,1,6,7],[812,1,1,7,8]]],[28,1,1,8,9,[[877,1,1,8,9]]]],[529,1328,2480,14739,18599,18811,20610,20671,22331]]],["refrain",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17364]]],["removed",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22675]]],["way",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7015]]]]},{"k":"H7369","v":[["far",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15047]]]]},{"k":"H7370","v":[["inditing",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14598]]]]},{"k":"H7371","v":[["shovel",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18241]]]]},{"k":"H7372","v":[["wet",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13444]]]]},{"k":"H7373","v":[["green",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13045]]]]},{"k":"H7374","v":[["fear",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20151]]]]},{"k":"H7375","v":[["fresher",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13675]]]]},{"k":"H7376","v":[["*",[6,6,[[11,1,1,0,1,[[320,1,1,0,1]]],[22,2,2,1,3,[[691,2,2,1,3]]],[27,2,2,3,5,[[871,1,1,3,4],[874,1,1,4,5]]],[33,1,1,5,6,[[902,1,1,5,6]]]],[9739,17922,17924,22239,22282,22722]]],["dash",[2,2,[[11,1,1,0,1,[[320,1,1,0,1]]],[22,1,1,1,2,[[691,1,1,1,2]]]],[9739,17924]]],["dashed",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17922]]],["pieces",[3,3,[[27,2,2,0,2,[[871,1,1,0,1],[874,1,1,1,2]]],[33,1,1,2,3,[[902,1,1,2,3]]]],[22239,22282,22722]]]]},{"k":"H7377","v":[["watering",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13780]]]]},{"k":"H7378","v":[["*",[66,58,[[0,4,4,0,4,[[25,3,3,0,3],[30,1,1,3,4]]],[1,3,2,4,6,[[66,2,1,4,5],[70,1,1,5,6]]],[3,2,2,6,8,[[136,2,2,6,8]]],[4,1,1,8,9,[[185,1,1,8,9]]],[6,8,5,9,14,[[216,4,2,9,11],[218,1,1,11,12],[221,2,1,12,13],[231,1,1,13,14]]],[8,3,3,14,17,[[237,1,1,14,15],[259,1,1,15,16],[260,1,1,16,17]]],[15,4,4,17,21,[[417,1,1,17,18],[425,3,3,18,21]]],[17,8,8,21,29,[[444,1,1,21,22],[445,1,1,22,23],[448,2,2,23,25],[458,1,1,25,26],[466,1,1,26,27],[468,1,1,27,28],[475,1,1,28,29]]],[18,5,5,29,34,[[512,1,1,29,30],[520,1,1,30,31],[551,1,1,31,32],[580,1,1,32,33],[596,1,1,33,34]]],[19,5,5,34,39,[[630,1,1,34,35],[649,1,1,35,36],[650,1,1,36,37],[652,2,2,37,39]]],[22,8,8,39,47,[[679,1,1,39,40],[681,1,1,40,41],[705,1,1,41,42],[723,1,1,42,43],[727,1,1,43,44],[728,1,1,44,45],[729,1,1,45,46],[735,1,1,46,47]]],[23,7,5,47,52,[[746,3,2,47,49],[756,1,1,49,50],[794,2,1,50,51],[795,1,1,51,52]]],[24,1,1,52,53,[[799,1,1,52,53]]],[27,4,2,53,55,[[863,2,1,53,54],[865,2,1,54,55]]],[29,1,1,55,56,[[885,1,1,55,56]]],[32,2,2,56,58,[[898,1,1,56,57],[899,1,1,57,58]]]],[712,713,714,909,1985,2095,4314,4324,5818,6685,6686,6720,6854,7124,7250,7854,7900,12389,12682,12688,12696,13054,13088,13161,13172,13425,13601,13663,13866,14411,14567,15070,15558,16052,16485,17038,17055,17121,17122,17671,17720,18159,18570,18661,18670,18695,18781,18974,18994,19250,20200,20248,20412,22107,22137,22468,22649,22673]]],["+",[10,8,[[6,2,1,0,1,[[221,2,1,0,1]]],[8,2,2,1,3,[[259,1,1,1,2],[260,1,1,2,3]]],[15,1,1,3,4,[[417,1,1,3,4]]],[18,1,1,4,5,[[551,1,1,4,5]]],[19,1,1,5,6,[[650,1,1,5,6]]],[23,3,2,6,8,[[794,2,1,6,7],[795,1,1,7,8]]]],[6854,7854,7900,12389,15070,17055,20200,20248]]],["Debate",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17122]]],["Plead",[3,3,[[18,2,2,0,2,[[512,1,1,0,1],[596,1,1,1,2]]],[27,1,1,2,3,[[863,1,1,2,3]]]],[14411,16052,22107]]],["Strive",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16485]]],["adversaries",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7250]]],["cause",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18695]]],["chide",[4,3,[[1,2,1,0,1,[[66,2,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]],[18,1,1,2,3,[[580,1,1,2,3]]]],[1985,6720,15558]]],["chode",[2,2,[[0,1,1,0,1,[[30,1,1,0,1]]],[3,1,1,1,2,[[136,1,1,1,2]]]],[909,4314]]],["complain",[1,1,[[6,1,1,0,1,[[231,1,1,0,1]]]],[7124]]],["contend",[6,6,[[17,2,2,0,2,[[444,1,1,0,1],[448,1,1,1,2]]],[22,2,2,2,4,[[728,1,1,2,3],[735,1,1,3,4]]],[29,1,1,4,5,[[885,1,1,4,5]]],[32,1,1,5,6,[[898,1,1,5,6]]]],[13054,13161,18670,18781,22468,22649]]],["contended",[4,4,[[15,3,3,0,3,[[425,3,3,0,3]]],[17,1,1,3,4,[[466,1,1,3,4]]]],[12682,12688,12696,13601]]],["contendest",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13088]]],["contendeth",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13866]]],["debate",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18159]]],["plead",[16,13,[[6,4,2,0,2,[[216,4,2,0,2]]],[17,2,2,2,4,[[448,1,1,2,3],[458,1,1,3,4]]],[18,1,1,4,5,[[520,1,1,4,5]]],[19,1,1,5,6,[[649,1,1,5,6]]],[22,2,2,6,8,[[679,1,1,6,7],[681,1,1,7,8]]],[23,4,3,8,11,[[746,3,2,8,10],[756,1,1,10,11]]],[27,1,1,11,12,[[863,1,1,11,12]]],[32,1,1,12,13,[[899,1,1,12,13]]]],[6685,6686,13172,13425,14567,17038,17671,17720,18974,18994,19250,22107,22673]]],["pleaded",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20412]]],["strive",[6,5,[[0,1,1,0,1,[[25,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[17,1,1,2,3,[[468,1,1,2,3]]],[19,1,1,3,4,[[652,1,1,3,4]]],[27,2,1,4,5,[[865,2,1,4,5]]]],[712,5818,13663,17121,22137]]],["striveth",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18570]]],["strove",[3,3,[[0,2,2,0,2,[[25,2,2,0,2]]],[3,1,1,2,3,[[136,1,1,2,3]]]],[713,714,4324]]],["together",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2095]]],["with",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18661]]]]},{"k":"H7379","v":[["*",[60,59,[[0,1,1,0,1,[[12,1,1,0,1]]],[1,4,4,1,5,[[66,1,1,1,2],[72,3,3,2,5]]],[4,5,5,5,10,[[153,1,1,5,6],[169,1,1,6,7],[171,1,1,7,8],[173,1,1,8,9],[177,1,1,9,10]]],[6,1,1,10,11,[[222,1,1,10,11]]],[8,2,2,11,13,[[259,1,1,11,12],[260,1,1,12,13]]],[9,3,3,13,16,[[281,2,2,13,15],[288,1,1,15,16]]],[13,2,2,16,18,[[385,2,2,16,18]]],[17,3,3,18,21,[[448,1,1,18,19],[464,1,1,19,20],[466,1,1,20,21]]],[18,7,7,21,28,[[495,1,1,21,22],[508,1,1,22,23],[512,1,1,23,24],[520,1,1,24,25],[532,1,1,25,26],[551,1,1,26,27],[596,1,1,27,28]]],[19,12,12,28,40,[[642,1,1,28,29],[644,2,2,29,31],[645,2,2,31,33],[647,1,1,33,34],[649,1,1,34,35],[650,1,1,35,36],[652,1,1,36,37],[653,2,2,37,39],[657,1,1,39,40]]],[22,5,5,40,45,[[679,1,1,40,41],[712,1,1,41,42],[719,2,2,42,44],[736,1,1,44,45]]],[23,6,6,45,51,[[755,1,1,45,46],[759,1,1,46,47],[764,1,1,47,48],[769,1,1,48,49],[794,1,1,49,50],[795,1,1,50,51]]],[24,2,2,51,53,[[799,2,2,51,53]]],[25,1,1,53,54,[[845,1,1,53,54]]],[27,2,2,54,56,[[865,1,1,54,55],[873,1,1,55,56]]],[32,3,2,56,58,[[898,2,1,56,57],[899,1,1,57,58]]],[34,1,1,58,59,[[903,1,1,58,59]]]],[325,1990,2146,2147,2150,4904,5372,5423,5452,5548,6871,7854,7900,8391,8393,8646,11584,11586,13159,13548,13623,14161,14351,14433,14567,14741,15070,16052,16825,16874,16887,16907,16918,16957,17038,17055,17122,17158,17162,17284,17677,18311,18462,18472,18790,19246,19325,19434,19565,20200,20248,20390,20412,21623,22134,22254,22650,22673,22734]]],["+",[8,8,[[6,1,1,0,1,[[222,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[13,1,1,2,3,[[385,1,1,2,3]]],[17,1,1,3,4,[[466,1,1,3,4]]],[18,3,3,4,7,[[495,1,1,4,5],[508,1,1,5,6],[551,1,1,6,7]]],[19,1,1,7,8,[[647,1,1,7,8]]]],[6871,8646,11586,13623,14161,14351,15070,16957]]],["cause",[21,21,[[1,3,3,0,3,[[72,3,3,0,3]]],[8,2,2,3,5,[[259,1,1,3,4],[260,1,1,4,5]]],[17,1,1,5,6,[[464,1,1,5,6]]],[18,3,3,6,9,[[512,1,1,6,7],[520,1,1,7,8],[596,1,1,8,9]]],[19,4,4,9,13,[[645,1,1,9,10],[649,1,1,10,11],[650,1,1,11,12],[652,1,1,12,13]]],[22,2,2,13,15,[[679,1,1,13,14],[719,1,1,14,15]]],[23,4,4,15,19,[[755,1,1,15,16],[764,1,1,16,17],[794,1,1,17,18],[795,1,1,18,19]]],[24,1,1,19,20,[[799,1,1,19,20]]],[32,1,1,20,21,[[899,1,1,20,21]]]],[2146,2147,2150,7854,7900,13548,14433,14567,16052,16918,17038,17055,17122,17677,18472,19246,19434,20200,20248,20390,22673]]],["causes",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20412]]],["chiding",[1,1,[[1,1,1,0,1,[[66,1,1,0,1]]]],[1990]]],["contention",[2,2,[[19,2,2,0,2,[[644,1,1,0,1],[645,1,1,1,2]]]],[16887,16907]]],["controversies",[1,1,[[13,1,1,0,1,[[385,1,1,0,1]]]],[11584]]],["controversy",[12,11,[[4,4,4,0,4,[[169,1,1,0,1],[171,1,1,1,2],[173,1,1,2,3],[177,1,1,3,4]]],[9,1,1,4,5,[[281,1,1,4,5]]],[22,1,1,5,6,[[712,1,1,5,6]]],[23,1,1,6,7,[[769,1,1,6,7]]],[25,1,1,7,8,[[845,1,1,7,8]]],[27,2,2,8,10,[[865,1,1,8,9],[873,1,1,9,10]]],[32,2,1,10,11,[[898,2,1,10,11]]]],[5372,5423,5452,5548,8391,18311,19565,21623,22134,22254,22650]]],["pleadings",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13159]]],["strife",[11,11,[[0,1,1,0,1,[[12,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[18,1,1,2,3,[[532,1,1,2,3]]],[19,5,5,3,8,[[642,1,1,3,4],[644,1,1,4,5],[653,2,2,5,7],[657,1,1,7,8]]],[22,1,1,8,9,[[736,1,1,8,9]]],[23,1,1,9,10,[[759,1,1,9,10]]],[34,1,1,10,11,[[903,1,1,10,11]]]],[325,4904,14741,16825,16874,17158,17162,17284,18790,19325,22734]]],["strive",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18462]]],["suit",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8393]]]]},{"k":"H7380","v":[["Ribai",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8682,10704]]]]},{"k":"H7381","v":[["*",[58,55,[[0,4,2,0,2,[[7,1,1,0,1],[26,3,1,1,2]]],[1,4,4,2,6,[[54,1,1,2,3],[78,3,3,3,6]]],[2,17,17,6,23,[[90,3,3,6,9],[91,3,3,9,12],[92,2,2,12,14],[93,1,1,14,15],[95,2,2,15,17],[97,2,2,17,19],[106,1,1,19,20],[112,2,2,20,22],[115,1,1,22,23]]],[3,18,18,23,41,[[131,6,6,23,29],[134,1,1,29,30],[144,6,6,30,36],[145,5,5,36,41]]],[17,1,1,41,42,[[449,1,1,41,42]]],[21,8,7,42,49,[[671,2,2,42,44],[672,1,1,44,45],[674,3,2,45,47],[677,2,2,47,49]]],[23,1,1,49,50,[[792,1,1,49,50]]],[25,4,4,50,54,[[807,1,1,50,51],[817,1,1,51,52],[821,2,2,52,54]]],[27,1,1,54,55,[[875,1,1,54,55]]]],[204,754,1653,2354,2361,2377,2754,2758,2762,2764,2771,2774,2783,2794,2826,2864,2870,2938,2945,3241,3415,3420,3555,4156,4160,4163,4166,4167,4177,4274,4579,4583,4585,4590,4601,4604,4610,4614,4616,4621,4644,13190,17540,17549,17567,17592,17593,17635,17640,20091,20576,20781,20923,20936,22288]]],["+",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13190]]],["savour",[45,45,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,4,4,1,5,[[54,1,1,1,2],[78,3,3,2,5]]],[2,17,17,5,22,[[90,3,3,5,8],[91,3,3,8,11],[92,2,2,11,13],[93,1,1,13,14],[95,2,2,14,16],[97,2,2,16,18],[106,1,1,18,19],[112,2,2,19,21],[115,1,1,21,22]]],[3,18,18,22,40,[[131,6,6,22,28],[134,1,1,28,29],[144,6,6,29,35],[145,5,5,35,40]]],[21,1,1,40,41,[[671,1,1,40,41]]],[25,4,4,41,45,[[807,1,1,41,42],[817,1,1,42,43],[821,2,2,43,45]]]],[204,1653,2354,2361,2377,2754,2758,2762,2764,2771,2774,2783,2794,2826,2864,2870,2938,2945,3241,3415,3420,3555,4156,4160,4163,4166,4167,4177,4274,4579,4583,4585,4590,4601,4604,4610,4614,4616,4621,4644,17540,20576,20781,20923,20936]]],["scent",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20091]]],["smell",[11,8,[[0,3,1,0,1,[[26,3,1,0,1]]],[21,7,6,1,7,[[671,1,1,1,2],[672,1,1,2,3],[674,3,2,3,5],[677,2,2,5,7]]],[27,1,1,7,8,[[875,1,1,7,8]]]],[754,17549,17567,17592,17593,17635,17640,22288]]]]},{"k":"H7382","v":[["smell",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21834]]]]},{"k":"H7383","v":[["*",[2,2,[[9,1,1,0,1,[[283,1,1,0,1]]],[19,1,1,1,2,[[654,1,1,1,2]]]],[8468,17191]]],["corn",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8468]]],["wheat",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17191]]]]},{"k":"H7384","v":[["Riphath",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[237,10258]]]]},{"k":"H7385","v":[["*",[12,12,[[2,2,2,0,2,[[115,2,2,0,2]]],[17,1,1,2,3,[[474,1,1,2,3]]],[18,3,3,3,6,[[479,1,1,3,4],[481,1,1,4,5],[550,1,1,5,6]]],[22,3,3,6,9,[[708,1,1,6,7],[727,1,1,7,8],[743,1,1,8,9]]],[23,2,2,9,11,[[795,2,2,9,11]]],[34,1,1,11,12,[[904,1,1,11,12]]]],[3540,3544,13850,13946,13967,15033,18224,18640,18920,20246,20270,22761]]],["empty",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20246]]],["purpose",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18224]]],["thing",[1,1,[[18,1,1,0,1,[[479,1,1,0,1]]]],[13946]]],["vain",[7,7,[[2,2,2,0,2,[[115,2,2,0,2]]],[17,1,1,2,3,[[474,1,1,2,3]]],[18,1,1,3,4,[[550,1,1,3,4]]],[22,2,2,4,6,[[727,1,1,4,5],[743,1,1,5,6]]],[23,1,1,6,7,[[795,1,1,6,7]]]],[3540,3544,13850,15033,18640,18920,20270]]],["vanity",[2,2,[[18,1,1,0,1,[[481,1,1,0,1]]],[34,1,1,1,2,[[904,1,1,1,2]]]],[13967,22761]]]]},{"k":"H7386","v":[["*",[14,14,[[0,2,2,0,2,[[36,1,1,0,1],[40,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[6,3,3,3,6,[[217,1,1,3,4],[219,1,1,4,5],[221,1,1,5,6]]],[9,1,1,6,7,[[272,1,1,6,7]]],[11,1,1,7,8,[[316,1,1,7,8]]],[13,1,1,8,9,[[379,1,1,8,9]]],[15,1,1,9,10,[[417,1,1,9,10]]],[19,2,2,10,12,[[639,1,1,10,11],[655,1,1,11,12]]],[22,1,1,12,13,[[707,1,1,12,13]]],[25,1,1,13,14,[[825,1,1,13,14]]]],[1107,1222,5805,6710,6758,6832,8177,9606,11460,12395,16730,17215,18201,21067]]],["emptied",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12395]]],["empty",[6,6,[[0,2,2,0,2,[[36,1,1,0,1],[40,1,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]],[11,1,1,3,4,[[316,1,1,3,4]]],[22,1,1,4,5,[[707,1,1,4,5]]],[25,1,1,5,6,[[825,1,1,5,6]]]],[1107,1222,6710,9606,18201,21067]]],["fellows",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8177]]],["vain",[6,6,[[4,1,1,0,1,[[184,1,1,0,1]]],[6,2,2,1,3,[[219,1,1,1,2],[221,1,1,2,3]]],[13,1,1,3,4,[[379,1,1,3,4]]],[19,2,2,4,6,[[639,1,1,4,5],[655,1,1,5,6]]]],[5805,6758,6832,11460,16730,17215]]]]},{"k":"H7387","v":[["*",[16,16,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,3,3,1,4,[[52,1,1,1,2],[72,1,1,2,3],[83,1,1,3,4]]],[4,2,2,4,6,[[167,1,1,4,5],[168,1,1,5,6]]],[7,2,2,6,8,[[232,1,1,6,7],[234,1,1,7,8]]],[8,1,1,8,9,[[241,1,1,8,9]]],[9,1,1,9,10,[[267,1,1,9,10]]],[17,1,1,10,11,[[457,1,1,10,11]]],[18,2,2,11,13,[[484,1,1,11,12],[502,1,1,12,13]]],[22,1,1,13,14,[[733,1,1,13,14]]],[23,2,2,14,16,[[758,1,1,14,15],[794,1,1,15,16]]]],[915,1600,2159,2516,5332,5358,7148,7189,7334,8044,13398,13999,14254,18751,19296,20175]]],["cause",[2,2,[[18,2,2,0,2,[[484,1,1,0,1],[502,1,1,1,2]]]],[13999,14254]]],["empty",[12,12,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,3,3,1,4,[[52,1,1,1,2],[72,1,1,2,3],[83,1,1,3,4]]],[4,2,2,4,6,[[167,1,1,4,5],[168,1,1,5,6]]],[7,2,2,6,8,[[232,1,1,6,7],[234,1,1,7,8]]],[8,1,1,8,9,[[241,1,1,8,9]]],[9,1,1,9,10,[[267,1,1,9,10]]],[17,1,1,10,11,[[457,1,1,10,11]]],[23,1,1,11,12,[[758,1,1,11,12]]]],[915,1600,2159,2516,5332,5358,7148,7189,7334,8044,13398,19296]]],["vain",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20175]]],["void",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18751]]]]},{"k":"H7388","v":[["*",[2,2,[[8,1,1,0,1,[[256,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]]],[7785,12984]]],["spittle",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7785]]],["white",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12984]]]]},{"k":"H7389","v":[["*",[7,7,[[19,7,7,0,7,[[633,1,1,0,1],[637,1,1,1,2],[640,1,1,2,3],[651,1,1,3,4],[655,1,1,4,5],[657,1,1,5,6],[658,1,1,6,7]]]],[16551,16671,16765,17113,17215,17259,17291]]],["Poverty",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16765]]],["poverty",[6,6,[[19,6,6,0,6,[[633,1,1,0,1],[637,1,1,1,2],[651,1,1,2,3],[655,1,1,3,4],[657,1,1,4,5],[658,1,1,5,6]]]],[16551,16671,17113,17215,17259,17291]]]]},{"k":"H7390","v":[["*",[16,16,[[0,3,3,0,3,[[17,1,1,0,1],[28,1,1,1,2],[32,1,1,2,3]]],[4,3,3,3,6,[[172,1,1,3,4],[180,2,2,4,6]]],[9,1,1,6,7,[[269,1,1,6,7]]],[12,2,2,7,9,[[359,1,1,7,8],[366,1,1,8,9]]],[13,1,1,9,10,[[379,1,1,9,10]]],[17,1,1,10,11,[[476,1,1,10,11]]],[19,3,3,11,14,[[631,1,1,11,12],[642,1,1,12,13],[652,1,1,13,14]]],[22,1,1,14,15,[[725,1,1,14,15]]],[25,1,1,15,16,[[818,1,1,15,16]]]],[431,812,973,5435,5665,5667,8120,10969,11165,11460,13891,16493,16808,17128,18600,20847]]],["+",[2,2,[[4,1,1,0,1,[[172,1,1,0,1]]],[13,1,1,1,2,[[379,1,1,1,2]]]],[5435,11460]]],["one",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20847]]],["soft",[3,3,[[17,1,1,0,1,[[476,1,1,0,1]]],[19,2,2,1,3,[[642,1,1,1,2],[652,1,1,2,3]]]],[13891,16808,17128]]],["tender",[9,9,[[0,3,3,0,3,[[17,1,1,0,1],[28,1,1,1,2],[32,1,1,2,3]]],[4,2,2,3,5,[[180,2,2,3,5]]],[12,2,2,5,7,[[359,1,1,5,6],[366,1,1,6,7]]],[19,1,1,7,8,[[631,1,1,7,8]]],[22,1,1,8,9,[[725,1,1,8,9]]]],[431,812,973,5665,5667,10969,11165,16493,18600]]],["weak",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8120]]]]},{"k":"H7391","v":[["+",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5667]]]]},{"k":"H7392","v":[["*",[78,75,[[0,3,3,0,3,[[23,1,1,0,1],[40,1,1,1,2],[48,1,1,2,3]]],[1,3,3,3,6,[[53,1,1,3,4],[64,2,2,4,6]]],[2,1,1,6,7,[[104,1,1,6,7]]],[3,2,2,7,9,[[138,2,2,7,9]]],[4,2,2,9,11,[[184,1,1,9,10],[185,1,1,10,11]]],[6,3,3,11,14,[[215,1,1,11,12],[220,1,1,12,13],[222,1,1,13,14]]],[8,3,3,14,17,[[260,2,2,14,16],[265,1,1,16,17]]],[9,6,6,17,23,[[272,1,1,17,18],[279,1,1,18,19],[282,1,1,19,20],[284,1,1,20,21],[285,1,1,21,22],[288,1,1,22,23]]],[10,5,5,23,28,[[291,3,3,23,26],[303,1,1,26,27],[308,1,1,27,28]]],[11,11,10,28,38,[[316,1,1,28,29],[321,5,5,29,34],[322,1,1,34,35],[325,2,1,35,36],[330,1,1,36,37],[335,1,1,37,38]]],[12,1,1,38,39,[[350,1,1,38,39]]],[13,1,1,39,40,[[401,1,1,39,40]]],[15,1,1,40,41,[[414,1,1,40,41]]],[16,5,5,41,46,[[431,3,3,41,44],[433,2,2,44,46]]],[17,2,2,46,48,[[465,1,1,46,47],[474,1,1,47,48]]],[18,5,5,48,53,[[495,1,1,48,49],[522,1,1,49,50],[543,1,1,50,51],[545,2,2,51,53]]],[22,4,4,53,57,[[697,1,1,53,54],[708,1,1,54,55],[714,1,1,55,56],[736,1,1,56,57]]],[23,6,5,57,62,[[750,1,1,57,58],[761,1,1,58,59],[766,1,1,59,60],[794,1,1,60,61],[795,2,1,61,62]]],[25,4,4,62,66,[[824,3,3,62,65],[839,1,1,65,66]]],[27,2,2,66,68,[[871,1,1,66,67],[875,1,1,67,68]]],[29,1,1,68,69,[[880,1,1,68,69]]],[34,1,1,69,70,[[905,1,1,69,70]]],[36,2,1,70,71,[[910,2,1,70,71]]],[37,4,4,71,75,[[911,1,1,71,72],[919,1,1,72,73],[920,1,1,73,74],[922,1,1,74,75]]]],[652,1238,1490,1621,1921,1941,3177,4397,4405,5771,5836,6633,6815,6883,7881,7903,7995,8160,8346,8428,8487,8537,8613,8750,8755,8761,9197,9386,9627,9772,9774,9775,9781,9784,9809,9887,10047,10195,10767,11990,12319,12801,12802,12804,12827,12831,13579,13852,14128,14601,14885,14904,14933,18005,18233,18338,18800,19112,19382,19458,20208,20233,21013,21019,21030,21440,22236,22285,22394,22776,22877,22886,23008,23021,23049]]],["+",[6,6,[[9,1,1,0,1,[[272,1,1,0,1]]],[10,1,1,1,2,[[291,1,1,1,2]]],[11,3,3,2,5,[[321,3,3,2,5]]],[12,1,1,5,6,[[350,1,1,5,6]]]],[8160,8761,9774,9775,9784,10767]]],["Put",[1,1,[[11,1,1,0,1,[[325,1,1,0,1]]]],[9887]]],["bring",[1,1,[[16,1,1,0,1,[[431,1,1,0,1]]]],[12802]]],["carried",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10195]]],["chariot",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9772]]],["horseback",[1,1,[[16,1,1,0,1,[[431,1,1,0,1]]]],[12804]]],["on",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8428]]],["put",[2,2,[[11,1,1,0,1,[[325,1,1,0,1]]],[13,1,1,1,2,[[401,1,1,1,2]]]],[9887,11990]]],["ridden",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4405]]],["ride",[18,18,[[0,1,1,0,1,[[40,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[9,1,1,3,4,[[285,1,1,3,4]]],[10,2,2,4,6,[[291,2,2,4,6]]],[11,1,1,6,7,[[322,1,1,6,7]]],[17,1,1,7,8,[[465,1,1,7,8]]],[18,2,2,8,10,[[522,1,1,8,9],[543,1,1,9,10]]],[22,2,2,10,12,[[708,1,1,10,11],[736,1,1,11,12]]],[23,2,2,12,14,[[750,1,1,12,13],[794,1,1,13,14]]],[27,2,2,14,16,[[871,1,1,14,15],[875,1,1,15,16]]],[34,1,1,16,17,[[905,1,1,16,17]]],[36,1,1,17,18,[[910,1,1,17,18]]]],[1238,5771,6633,8537,8750,8755,9809,13579,14601,14885,18233,18800,19112,20208,22236,22285,22776,22877]]],["rider",[7,6,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[64,2,2,1,3]]],[17,1,1,3,4,[[474,1,1,3,4]]],[23,2,1,4,5,[[795,2,1,4,5]]],[37,1,1,5,6,[[922,1,1,5,6]]]],[1490,1921,1941,13852,20233,23049]]],["riders",[5,5,[[11,1,1,0,1,[[330,1,1,0,1]]],[16,1,1,1,2,[[433,1,1,1,2]]],[22,1,1,2,3,[[714,1,1,2,3]]],[36,1,1,3,4,[[910,1,1,3,4]]],[37,1,1,4,5,[[920,1,1,4,5]]]],[10047,12827,18338,22877,23021]]],["rideth",[6,6,[[2,1,1,0,1,[[104,1,1,0,1]]],[16,1,1,1,2,[[431,1,1,1,2]]],[18,2,2,2,4,[[545,2,2,2,4]]],[22,1,1,4,5,[[697,1,1,4,5]]],[29,1,1,5,6,[[880,1,1,5,6]]]],[3177,12801,14904,14933,18005,22394]]],["riding",[7,7,[[3,1,1,0,1,[[138,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]],[23,2,2,2,4,[[761,1,1,2,3],[766,1,1,3,4]]],[25,1,1,4,5,[[839,1,1,4,5]]],[37,2,2,5,7,[[911,1,1,5,6],[919,1,1,6,7]]]],[4397,9627,19382,19458,21440,22886,23008]]],["rode",[13,13,[[0,1,1,0,1,[[23,1,1,0,1]]],[6,2,2,1,3,[[220,1,1,1,2],[222,1,1,2,3]]],[8,3,3,3,6,[[260,2,2,3,5],[265,1,1,5,6]]],[9,2,2,6,8,[[284,1,1,6,7],[288,1,1,7,8]]],[10,2,2,8,10,[[303,1,1,8,9],[308,1,1,9,10]]],[11,1,1,10,11,[[321,1,1,10,11]]],[15,1,1,11,12,[[414,1,1,11,12]]],[18,1,1,12,13,[[495,1,1,12,13]]]],[652,6815,6883,7881,7903,7995,8487,8613,9197,9386,9781,12319,14128]]],["set",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1621]]],["up",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8346]]],["upon",[5,5,[[4,1,1,0,1,[[185,1,1,0,1]]],[16,1,1,1,2,[[433,1,1,1,2]]],[25,3,3,2,5,[[824,3,3,2,5]]]],[5836,12831,21013,21019,21030]]]]},{"k":"H7393","v":[["*",[119,104,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,10,9,1,10,[[63,9,8,1,9],[64,1,1,9,10]]],[4,3,3,10,13,[[163,1,1,10,11],[172,1,1,11,12],[176,1,1,12,13]]],[5,4,4,13,17,[[197,1,1,13,14],[203,2,2,14,16],[210,1,1,16,17]]],[6,9,8,17,25,[[211,1,1,17,18],[214,6,5,18,23],[215,1,1,23,24],[219,1,1,24,25]]],[8,2,2,25,27,[[243,1,1,25,26],[248,1,1,26,27]]],[9,5,4,27,31,[[267,1,1,27,28],[274,2,1,28,29],[276,1,1,29,30],[277,1,1,30,31]]],[10,16,13,31,44,[[291,1,1,31,32],[299,2,2,32,34],[300,3,1,34,35],[306,1,1,35,36],[310,4,3,36,39],[312,5,5,39,44]]],[11,19,17,44,61,[[314,2,2,44,46],[317,1,1,46,47],[318,3,3,47,50],[319,2,2,50,52],[320,2,1,52,53],[321,3,2,53,55],[322,2,2,55,57],[325,2,2,57,59],[330,1,1,59,60],[331,1,1,60,61]]],[12,6,4,61,65,[[355,3,1,61,62],[356,3,3,62,65]]],[13,14,11,65,76,[[367,3,1,65,66],[374,2,2,66,68],[375,1,1,68,69],[378,1,1,69,70],[382,1,1,70,71],[384,3,3,71,74],[387,2,1,74,75],[401,1,1,75,76]]],[18,3,3,76,79,[[497,1,1,76,77],[545,1,1,77,78],[553,1,1,78,79]]],[21,1,1,79,80,[[671,1,1,79,80]]],[22,11,9,80,89,[[699,4,2,80,82],[700,2,2,82,84],[709,1,1,84,85],[714,1,1,85,86],[715,1,1,86,87],[721,1,1,87,88],[744,1,1,88,89]]],[23,6,6,89,95,[[761,1,1,89,90],[766,1,1,90,91],[790,1,1,91,92],[791,1,1,92,93],[794,1,1,93,94],[795,1,1,94,95]]],[25,4,4,95,99,[[824,1,1,95,96],[827,2,2,96,98],[840,1,1,98,99]]],[26,1,1,99,100,[[860,1,1,99,100]]],[33,3,3,100,103,[[901,3,3,100,103]]],[37,1,1,103,104,[[919,1,1,103,104]]]],[1515,1895,1896,1898,1906,1907,1912,1915,1917,1939,5212,5428,5531,6111,6291,6293,6482,6528,6602,6606,6612,6614,6615,6651,6807,7381,7490,8028,8213,8258,8280,8722,9070,9073,9105,9292,9409,9429,9433,9511,9512,9513,9515,9518,9562,9563,9656,9688,9689,9691,9713,9721,9748,9777,9780,9795,9809,9878,9885,10048,10084,10894,10913,10914,10925,11208,11352,11355,11389,11440,11517,11572,11573,11574,11633,11990,14189,14917,15087,17546,18042,18044,18058,18059,18251,18339,18376,18522,18942,19382,19458,20054,20076,20203,20233,21031,21107,21110,21468,22076,22702,22703,22712,23009]]],["chariot",[29,25,[[1,1,1,0,1,[[63,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[9,1,1,2,3,[[274,1,1,2,3]]],[10,4,3,3,6,[[310,2,1,3,4],[312,2,2,4,6]]],[11,9,8,6,14,[[314,2,2,6,8],[317,1,1,8,9],[319,1,1,9,10],[321,3,2,10,12],[322,1,1,12,13],[325,1,1,13,14]]],[12,1,1,14,15,[[355,1,1,14,15]]],[13,4,4,15,19,[[367,1,1,15,16],[374,1,1,16,17],[375,1,1,17,18],[401,1,1,18,19]]],[18,1,1,19,20,[[553,1,1,19,20]]],[22,5,3,20,23,[[699,4,2,20,22],[721,1,1,22,23]]],[23,1,1,23,24,[[795,1,1,23,24]]],[37,1,1,24,25,[[919,1,1,24,25]]]],[1895,6651,8213,9433,9515,9518,9562,9563,9656,9721,9777,9780,9809,9885,10894,11208,11352,11389,11990,15087,18042,18044,18522,20233,23009]]],["chariots",[86,78,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,9,8,1,9,[[63,8,7,1,8],[64,1,1,8,9]]],[4,2,2,9,11,[[163,1,1,9,10],[172,1,1,10,11]]],[5,4,4,11,15,[[197,1,1,11,12],[203,2,2,12,14],[210,1,1,14,15]]],[6,7,6,15,21,[[211,1,1,15,16],[214,6,5,16,21]]],[8,2,2,21,23,[[243,1,1,21,22],[248,1,1,22,23]]],[9,3,3,23,26,[[267,1,1,23,24],[274,1,1,24,25],[276,1,1,25,26]]],[10,12,10,26,36,[[291,1,1,26,27],[299,2,2,27,29],[300,3,1,29,30],[306,1,1,30,31],[310,2,2,31,33],[312,3,3,33,36]]],[11,10,9,36,45,[[318,3,3,36,39],[319,1,1,39,40],[320,2,1,40,41],[322,1,1,41,42],[325,1,1,42,43],[330,1,1,43,44],[331,1,1,44,45]]],[12,5,4,45,49,[[355,2,1,45,46],[356,3,3,46,49]]],[13,10,8,49,57,[[367,2,1,49,50],[374,1,1,50,51],[378,1,1,51,52],[382,1,1,52,53],[384,3,3,53,56],[387,2,1,56,57]]],[18,2,2,57,59,[[497,1,1,57,58],[545,1,1,58,59]]],[21,1,1,59,60,[[671,1,1,59,60]]],[22,6,6,60,66,[[700,2,2,60,62],[709,1,1,62,63],[714,1,1,63,64],[715,1,1,64,65],[744,1,1,65,66]]],[23,5,5,66,71,[[761,1,1,66,67],[766,1,1,67,68],[790,1,1,68,69],[791,1,1,69,70],[794,1,1,70,71]]],[25,3,3,71,74,[[827,2,2,71,73],[840,1,1,73,74]]],[26,1,1,74,75,[[860,1,1,74,75]]],[33,3,3,75,78,[[901,3,3,75,78]]]],[1515,1896,1898,1906,1907,1912,1915,1917,1939,5212,5428,6111,6291,6293,6482,6528,6602,6606,6612,6614,6615,7381,7490,8028,8213,8258,8722,9070,9073,9105,9292,9409,9429,9511,9512,9513,9688,9689,9691,9713,9748,9795,9878,10048,10084,10894,10913,10914,10925,11208,11355,11440,11517,11572,11573,11574,11633,14189,14917,17546,18058,18059,18251,18339,18376,18942,19382,19458,20054,20076,20203,21107,21110,21468,22076,22702,22703,22712]]],["millstone",[2,2,[[6,1,1,0,1,[[219,1,1,0,1]]],[9,1,1,1,2,[[277,1,1,1,2]]]],[6807,8280]]],["upper",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5531]]],["wagons",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21031]]]]},{"k":"H7394","v":[["Rechab",[13,13,[[9,4,4,0,4,[[270,4,4,0,4]]],[11,2,2,4,6,[[322,2,2,4,6]]],[12,1,1,6,7,[[339,1,1,6,7]]],[15,1,1,7,8,[[415,1,1,7,8]]],[23,5,5,8,13,[[779,5,5,8,13]]]],[8122,8125,8126,8129,9808,9816,10361,12341,19829,19831,19837,19839,19842]]]]},{"k":"H7395","v":[["*",[3,3,[[10,1,1,0,1,[[312,1,1,0,1]]],[11,1,1,1,2,[[321,1,1,1,2]]],[13,1,1,2,3,[[384,1,1,2,3]]]],[9514,9773,11575]]],["chariot",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9514]]],["horseman",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9773]]],["man",[1,1,[[13,1,1,0,1,[[384,1,1,0,1]]]],[11575]]]]},{"k":"H7396","v":[["chariots",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21141]]]]},{"k":"H7397","v":[["*",[5,5,[[12,1,1,0,1,[[341,1,1,0,1]]],[23,4,4,1,5,[[779,4,4,1,5]]]],[10397,19825,19826,19828,19841]]],["Rechabites",[4,4,[[23,4,4,0,4,[[779,4,4,0,4]]]],[19825,19826,19828,19841]]],["Rechah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10397]]]]},{"k":"H7398","v":[["chariot",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15574]]]]},{"k":"H7399","v":[["*",[28,27,[[0,11,10,0,10,[[11,1,1,0,1],[12,1,1,1,2],[13,5,4,2,6],[14,1,1,6,7],[30,1,1,7,8],[35,1,1,8,9],[45,1,1,9,10]]],[3,2,2,10,12,[[132,1,1,10,11],[151,1,1,11,12]]],[12,2,2,12,14,[[364,1,1,12,13],[365,1,1,13,14]]],[13,6,6,14,20,[[386,1,1,14,15],[387,2,2,15,17],[397,1,1,17,18],[398,1,1,18,19],[401,1,1,19,20]]],[14,4,4,20,24,[[403,2,2,20,22],[410,1,1,22,23],[412,1,1,23,24]]],[26,3,3,24,27,[[860,3,3,24,27]]]],[303,324,347,348,352,357,374,891,1047,1392,4226,4848,11140,11144,11612,11638,11641,11857,11904,11973,12020,12022,12222,12260,22049,22060,22064]]],["+",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11973]]],["goods",[12,11,[[0,7,6,0,6,[[13,5,4,0,4],[30,1,1,4,5],[45,1,1,5,6]]],[3,2,2,6,8,[[132,1,1,6,7],[151,1,1,7,8]]],[13,1,1,8,9,[[387,1,1,8,9]]],[14,2,2,9,11,[[403,2,2,9,11]]]],[347,348,352,357,891,1392,4226,4848,11638,12020,12022]]],["riches",[5,5,[[0,1,1,0,1,[[35,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]],[26,3,3,2,5,[[860,3,3,2,5]]]],[1047,11612,22049,22060,22064]]],["substance",[10,10,[[0,3,3,0,3,[[11,1,1,0,1],[12,1,1,1,2],[14,1,1,2,3]]],[12,2,2,3,5,[[364,1,1,3,4],[365,1,1,4,5]]],[13,3,3,5,8,[[387,1,1,5,6],[397,1,1,6,7],[398,1,1,7,8]]],[14,2,2,8,10,[[410,1,1,8,9],[412,1,1,9,10]]]],[303,324,374,11140,11144,11641,11857,11904,12222,12260]]]]},{"k":"H7400","v":[["*",[6,6,[[2,1,1,0,1,[[108,1,1,0,1]]],[19,2,2,1,3,[[638,1,1,1,2],[647,1,1,2,3]]],[23,2,2,3,5,[[750,1,1,3,4],[753,1,1,4,5]]],[25,1,1,5,6,[[823,1,1,5,6]]]],[3297,16701,16973,19117,19179,20985]]],["+",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16701]]],["slanders",[2,2,[[23,2,2,0,2,[[750,1,1,0,1],[753,1,1,1,2]]]],[19117,19179]]],["talebearer",[2,2,[[2,1,1,0,1,[[108,1,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]]],[3297,16973]]],["tales",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[20985]]]]},{"k":"H7401","v":[["*",[8,8,[[4,1,1,0,1,[[172,1,1,0,1]]],[11,1,1,1,2,[[334,1,1,1,2]]],[13,1,1,2,3,[[400,1,1,2,3]]],[17,1,1,3,4,[[458,1,1,3,4]]],[18,1,1,4,5,[[532,1,1,4,5]]],[22,2,2,5,7,[[679,1,1,5,6],[685,1,1,6,7]]],[23,1,1,7,8,[[795,1,1,7,8]]]],[5430,10164,11960,13435,14753,17660,17786,20258]]],["+",[2,2,[[17,1,1,0,1,[[458,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]]],[13435,17786]]],["faint",[2,2,[[4,1,1,0,1,[[172,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[5430,20258]]],["mollified",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17660]]],["softer",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14753]]],["tender",[2,2,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]]],[10164,11960]]]]},{"k":"H7402","v":[["*",[17,15,[[10,1,1,0,1,[[300,1,1,0,1]]],[15,3,3,1,4,[[415,2,2,1,3],[425,1,1,3,4]]],[21,1,1,4,5,[[673,1,1,4,5]]],[25,11,9,5,14,[[818,1,1,5,6],[828,10,8,6,14]]],[33,1,1,14,15,[[902,1,1,14,15]]]],[9094,12358,12359,12691,17577,20829,21124,21134,21136,21138,21141,21143,21144,21145,22728]]],["merchant",[3,3,[[21,1,1,0,1,[[673,1,1,0,1]]],[25,2,2,1,3,[[828,2,2,1,3]]]],[17577,21124,21141]]],["merchants",[14,12,[[10,1,1,0,1,[[300,1,1,0,1]]],[15,3,3,1,4,[[415,2,2,1,3],[425,1,1,3,4]]],[25,9,7,4,11,[[818,1,1,4,5],[828,8,6,5,11]]],[33,1,1,11,12,[[902,1,1,11,12]]]],[9094,12358,12359,12691,20829,21134,21136,21138,21143,21144,21145,22728]]]]},{"k":"H7403","v":[["Rachal",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[8007]]]]},{"k":"H7404","v":[["*",[4,4,[[25,4,4,0,4,[[827,1,1,0,1],[829,3,3,1,4]]]],[21112,21162,21173,21175]]],["merchandise",[2,2,[[25,2,2,0,2,[[827,1,1,0,1],[829,1,1,1,2]]]],[21112,21173]]],["traffick",[2,2,[[25,2,2,0,2,[[829,2,2,0,2]]]],[21162,21175]]]]},{"k":"H7405","v":[["+",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2321,2685]]]]},{"k":"H7406","v":[["places",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18424]]]]},{"k":"H7407","v":[["+",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14351]]]]},{"k":"H7408","v":[["*",[5,4,[[0,5,4,0,4,[[11,1,1,0,1],[30,2,1,1,2],[35,1,1,2,3],[45,1,1,3,4]]]],[303,891,1046,1392]]],["gathered",[1,1,[[0,1,1,0,1,[[11,1,1,0,1]]]],[303]]],["got",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1046]]],["gotten",[3,2,[[0,3,2,0,2,[[30,2,1,0,1],[45,1,1,1,2]]]],[891,1392]]]]},{"k":"H7409","v":[["*",[4,4,[[10,1,1,0,1,[[294,1,1,0,1]]],[16,2,2,1,3,[[433,2,2,1,3]]],[32,1,1,3,4,[[893,1,1,3,4]]]],[8872,12827,12831,22592]]],["beast",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22592]]],["dromedaries",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8872]]],["mules",[2,2,[[16,2,2,0,2,[[433,2,2,0,2]]]],[12827,12831]]]]},{"k":"H7410","v":[["*",[7,6,[[7,2,1,0,1,[[235,2,1,0,1]]],[12,4,4,1,5,[[339,4,4,1,5]]],[17,1,1,5,6,[[467,1,1,5,6]]]],[7209,10315,10316,10331,10333,13630]]],["+",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7209]]],["Ram",[6,6,[[7,1,1,0,1,[[235,1,1,0,1]]],[12,4,4,1,5,[[339,4,4,1,5]]],[17,1,1,5,6,[[467,1,1,5,6]]]],[7209,10315,10316,10331,10333,13630]]]]},{"k":"H7411","v":[["*",[12,12,[[0,1,1,0,1,[[28,1,1,0,1]]],[1,2,2,1,3,[[64,2,2,1,3]]],[5,1,1,3,4,[[195,1,1,3,4]]],[8,2,2,4,6,[[254,1,1,4,5],[263,1,1,5,6]]],[9,1,1,6,7,[[285,1,1,6,7]]],[12,1,1,7,8,[[349,1,1,7,8]]],[18,1,1,8,9,[[555,1,1,8,9]]],[19,1,1,9,10,[[653,1,1,9,10]]],[23,1,1,10,11,[[748,1,1,10,11]]],[24,1,1,11,12,[[797,1,1,11,12]]]],[820,1921,1941,6059,7723,7954,8537,10737,15122,17160,19056,20329]]],["+",[2,2,[[19,1,1,0,1,[[653,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]]],[17160,19056]]],["beguiled",[2,2,[[0,1,1,0,1,[[28,1,1,0,1]]],[5,1,1,1,2,[[195,1,1,1,2]]]],[820,6059]]],["betray",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10737]]],["carrying",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15122]]],["deceived",[4,4,[[8,2,2,0,2,[[254,1,1,0,1],[263,1,1,1,2]]],[9,1,1,2,3,[[285,1,1,2,3]]],[24,1,1,3,4,[[797,1,1,3,4]]]],[7723,7954,8537,20329]]],["thrown",[2,2,[[1,2,2,0,2,[[64,2,2,0,2]]]],[1921,1941]]]]},{"k":"H7412","v":[["*",[12,12,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,11,11,1,12,[[852,6,6,1,7],[855,4,4,7,11],[856,1,1,11,12]]]],[12197,21813,21818,21822,21827,21828,21831,21912,21917,21921,21929,21942]]],["cast",[10,10,[[26,10,10,0,10,[[852,6,6,0,6],[855,4,4,6,10]]]],[21813,21818,21822,21827,21828,21831,21912,21917,21921,21929]]],["down",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21942]]],["impose",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12197]]]]},{"k":"H7413","v":[["*",[4,4,[[25,4,4,0,4,[[817,4,4,0,4]]]],[20786,20787,20793,20801]]],["place",[3,3,[[25,3,3,0,3,[[817,3,3,0,3]]]],[20786,20787,20793]]],["places",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20801]]]]},{"k":"H7414","v":[["Ramah",[36,34,[[5,3,3,0,3,[[204,1,1,0,1],[205,2,2,1,3]]],[6,2,2,3,5,[[214,1,1,3,4],[229,1,1,4,5]]],[8,16,14,5,19,[[236,1,1,5,6],[237,1,1,6,7],[242,1,1,7,8],[243,1,1,8,9],[250,1,1,9,10],[251,1,1,10,11],[254,6,4,11,15],[255,1,1,15,16],[257,1,1,16,17],[260,1,1,17,18],[263,1,1,18,19]]],[10,3,3,19,22,[[305,3,3,19,22]]],[11,1,1,22,23,[[320,1,1,22,23]]],[13,4,4,23,27,[[382,3,3,23,26],[388,1,1,26,27]]],[14,1,1,27,28,[[404,1,1,27,28]]],[15,2,2,28,30,[[419,1,1,28,29],[423,1,1,29,30]]],[22,1,1,30,31,[[688,1,1,30,31]]],[23,2,2,31,33,[[775,1,1,31,32],[784,1,1,32,33]]],[27,1,1,33,34,[[866,1,1,33,34]]]],[6318,6350,6357,6604,7037,7231,7251,7369,7373,7594,7608,7724,7725,7728,7729,7731,7793,7862,7945,9266,9270,9271,9756,11510,11514,11515,11650,12053,12450,12621,17879,19706,19942,22160]]]]},{"k":"H7415","v":[["*",[7,7,[[1,1,1,0,1,[[65,1,1,0,1]]],[17,5,5,1,6,[[442,1,1,1,2],[452,1,1,2,3],[456,1,1,3,4],[459,1,1,4,5],[460,1,1,5,6]]],[22,1,1,6,7,[[692,1,1,6,7]]]],[1971,13013,13274,13381,13456,13467,17939]]],["worm",[5,5,[[1,1,1,0,1,[[65,1,1,0,1]]],[17,3,3,1,4,[[452,1,1,1,2],[459,1,1,2,3],[460,1,1,3,4]]],[22,1,1,4,5,[[692,1,1,4,5]]]],[1971,13274,13456,13467,17939]]],["worms",[2,2,[[17,2,2,0,2,[[442,1,1,0,1],[456,1,1,1,2]]]],[13013,13381]]]]},{"k":"H7416","v":[["*",[32,25,[[1,8,5,0,5,[[77,3,2,0,2],[88,5,3,2,5]]],[3,2,2,5,7,[[129,1,1,5,6],[136,1,1,6,7]]],[4,1,1,7,8,[[160,1,1,7,8]]],[8,1,1,8,9,[[249,1,1,8,9]]],[10,4,3,9,12,[[297,4,3,9,12]]],[11,1,1,12,13,[[337,1,1,12,13]]],[13,3,2,13,15,[[369,1,1,13,14],[370,2,1,14,15]]],[21,6,6,15,21,[[674,2,2,15,17],[676,2,2,17,19],[677,1,1,19,20],[678,1,1,20,21]]],[23,4,2,21,23,[[796,4,2,21,23]]],[28,1,1,23,24,[[876,1,1,23,24]]],[36,1,1,24,25,[[910,1,1,24,25]]]],[2326,2327,2688,2689,2690,4098,4316,5145,7510,8952,8954,8976,10239,11245,11259,17585,17595,17621,17625,17639,17642,20298,20299,22303,22874]]],["pomegranate",[8,6,[[1,4,2,0,2,[[77,2,1,0,1],[88,2,1,1,2]]],[21,3,3,2,5,[[674,1,1,2,3],[676,1,1,3,4],[678,1,1,4,5]]],[36,1,1,5,6,[[910,1,1,5,6]]]],[2327,2690,17585,17621,17642,22874]]],["pomegranates",[22,17,[[1,4,3,0,3,[[77,1,1,0,1],[88,3,2,1,3]]],[3,2,2,3,5,[[129,1,1,3,4],[136,1,1,4,5]]],[4,1,1,5,6,[[160,1,1,5,6]]],[10,4,3,6,9,[[297,4,3,6,9]]],[11,1,1,9,10,[[337,1,1,9,10]]],[13,3,2,10,12,[[369,1,1,10,11],[370,2,1,11,12]]],[21,3,3,12,15,[[674,1,1,12,13],[676,1,1,13,14],[677,1,1,14,15]]],[23,4,2,15,17,[[796,4,2,15,17]]]],[2326,2688,2689,4098,4316,5145,8952,8954,8976,10239,11245,11259,17595,17625,17639,20298,20299]]],["tree",[2,2,[[8,1,1,0,1,[[249,1,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]]],[7510,22303]]]]},{"k":"H7417","v":[["*",[16,13,[[5,3,3,0,3,[[201,1,1,0,1],[205,2,2,1,3]]],[6,4,3,3,6,[[230,3,2,3,5],[231,1,1,5,6]]],[9,3,3,6,9,[[270,3,3,6,9]]],[11,3,1,9,10,[[317,3,1,9,10]]],[12,2,2,10,12,[[341,1,1,10,11],[343,1,1,11,12]]],[37,1,1,12,13,[[924,1,1,12,13]]]],[6234,6328,6334,7099,7101,7115,8122,8125,8129,9665,10417,10531,23078]]],["Remmon",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6328]]],["Remmonmethoar",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6334]]],["Rimmon",[14,11,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,4,3,1,4,[[230,3,2,1,3],[231,1,1,3,4]]],[9,3,3,4,7,[[270,3,3,4,7]]],[11,3,1,7,8,[[317,3,1,7,8]]],[12,2,2,8,10,[[341,1,1,8,9],[343,1,1,9,10]]],[37,1,1,10,11,[[924,1,1,10,11]]]],[6234,7099,7101,7115,8122,8125,8129,9665,10417,10531,23078]]]]},{"k":"H7418","v":[["*",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[8,1,1,1,2,[[265,1,1,1,2]]]],[6329,8005]]],["Ramath",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6329]]],["Ramoth",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[8005]]]]},{"k":"H7419","v":[["height",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21253]]]]},{"k":"H7420","v":[["*",[15,15,[[3,1,1,0,1,[[141,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[12,2,2,3,5,[[349,2,2,3,5]]],[13,4,4,5,9,[[377,1,1,5,6],[380,1,1,6,7],[391,1,1,7,8],[392,1,1,8,9]]],[15,3,3,9,12,[[416,3,3,9,12]]],[23,1,1,12,13,[[790,1,1,12,13]]],[25,1,1,13,14,[[840,1,1,13,14]]],[28,1,1,14,15,[[878,1,1,14,15]]]],[4478,6631,9369,10728,10744,11426,11483,11709,11746,12372,12375,12380,20049,21457,22353]]],["buckler",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10728]]],["javelin",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4478]]],["lancets",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9369]]],["spear",[3,3,[[6,1,1,0,1,[[215,1,1,0,1]]],[12,1,1,1,2,[[349,1,1,1,2]]],[13,1,1,2,3,[[391,1,1,2,3]]]],[6631,10744,11709]]],["spears",[9,9,[[13,3,3,0,3,[[377,1,1,0,1],[380,1,1,1,2],[392,1,1,2,3]]],[15,3,3,3,6,[[416,3,3,3,6]]],[23,1,1,6,7,[[790,1,1,6,7]]],[25,1,1,7,8,[[840,1,1,7,8]]],[28,1,1,8,9,[[878,1,1,8,9]]]],[11426,11483,11746,12372,12375,12380,20049,21457,22353]]]]},{"k":"H7421","v":[]},{"k":"H7422","v":[["Ramiah",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12277]]]]},{"k":"H7423","v":[["*",[15,15,[[17,2,2,0,2,[[448,1,1,0,1],[462,1,1,1,2]]],[18,6,6,2,8,[[509,1,1,2,3],[529,1,1,3,4],[555,1,1,4,5],[578,1,1,5,6],[597,2,2,6,8]]],[19,4,4,8,12,[[637,1,1,8,9],[639,2,2,9,11],[646,1,1,11,12]]],[23,1,1,12,13,[[792,1,1,12,13]]],[27,1,1,13,14,[[868,1,1,13,14]]],[32,1,1,14,15,[[898,1,1,14,15]]]],[13160,13485,14357,14712,15170,15520,16076,16077,16660,16743,16746,16940,20090,22194,22660]]],["deceit",[2,2,[[17,1,1,0,1,[[462,1,1,0,1]]],[18,1,1,1,2,[[578,1,1,1,2]]]],[13485,15520]]],["deceitful",[4,4,[[18,2,2,0,2,[[555,1,1,0,1],[597,1,1,1,2]]],[27,1,1,2,3,[[868,1,1,2,3]]],[32,1,1,3,4,[[898,1,1,3,4]]]],[15170,16076,22194,22660]]],["deceitfully",[3,3,[[17,1,1,0,1,[[448,1,1,0,1]]],[18,1,1,1,2,[[529,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[13160,14712,20090]]],["false",[1,1,[[18,1,1,0,1,[[597,1,1,0,1]]]],[16077]]],["guile",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14357]]],["idle",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16940]]],["slack",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16660]]],["slothful",[2,2,[[19,2,2,0,2,[[639,2,2,0,2]]]],[16743,16746]]]]},{"k":"H7424","v":[["dromedaries",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12827]]]]},{"k":"H7425","v":[["*",[13,13,[[11,7,7,0,7,[[327,5,5,0,5],[328,2,2,5,7]]],[13,1,1,7,8,[[394,1,1,7,8]]],[22,5,5,8,13,[[685,4,4,8,12],[686,1,1,12,13]]]],[9950,9952,9955,9957,9962,9964,9968,11770,17783,17786,17787,17791,17813]]],["Remaliah",[11,11,[[11,7,7,0,7,[[327,5,5,0,5],[328,2,2,5,7]]],[13,1,1,7,8,[[394,1,1,7,8]]],[22,3,3,8,11,[[685,3,3,8,11]]]],[9950,9952,9955,9957,9962,9964,9968,11770,17783,17786,17787]]],["Remaliah's",[2,2,[[22,2,2,0,2,[[685,1,1,0,1],[686,1,1,1,2]]]],[17791,17813]]]]},{"k":"H7426","v":[["*",[5,5,[[3,1,1,0,1,[[132,1,1,0,1]]],[17,1,1,1,2,[[459,1,1,1,2]]],[25,3,3,2,5,[[811,3,3,2,5]]]],[4239,13460,20648,20650,20652]]],["exalted",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13460]]],["up",[4,4,[[3,1,1,0,1,[[132,1,1,0,1]]],[25,3,3,1,4,[[811,3,3,1,4]]]],[4239,20648,20650,20652]]]]},{"k":"H7427","v":[["+",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18282]]]]},{"k":"H7428","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4779,4780]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4780]]],["Rimmonparez",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4779]]]]},{"k":"H7429","v":[["*",[19,19,[[11,4,4,0,4,[[319,2,2,0,2],[321,1,1,2,3],[326,1,1,3,4]]],[13,1,1,4,5,[[391,1,1,4,5]]],[18,2,2,5,7,[[484,1,1,5,6],[568,1,1,6,7]]],[22,6,6,7,13,[[679,1,1,7,8],[694,1,1,8,9],[704,1,1,9,10],[706,1,1,10,11],[719,1,1,11,12],[741,1,1,12,13]]],[25,2,2,13,15,[[827,1,1,13,14],[835,1,1,14,15]]],[26,2,2,15,17,[[857,2,2,15,17]]],[32,1,1,17,18,[[897,1,1,17,18]]],[33,1,1,18,19,[[902,1,1,18,19]]]],[9724,9727,9789,9905,11722,14000,15408,17666,17973,18136,18167,18476,18869,21111,21331,21968,21971,22641,22726]]],["+",[3,3,[[11,1,1,0,1,[[326,1,1,0,1]]],[13,1,1,1,2,[[391,1,1,1,2]]],[25,1,1,2,3,[[827,1,1,2,3]]]],[9905,11722,21111]]],["down",[4,4,[[18,1,1,0,1,[[484,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]],[25,1,1,2,3,[[835,1,1,2,3]]],[32,1,1,3,4,[[897,1,1,3,4]]]],[14000,18136,21331,22641]]],["feet",[1,1,[[18,1,1,0,1,[[568,1,1,0,1]]]],[15408]]],["foot",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9789]]],["oppressors",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17973]]],["trample",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18869]]],["tread",[2,2,[[22,1,1,0,1,[[679,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[17666,22726]]],["treadeth",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18476]]],["trodden",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18167]]],["upon",[4,4,[[11,2,2,0,2,[[319,2,2,0,2]]],[26,2,2,2,4,[[857,2,2,2,4]]]],[9724,9727,21968,21971]]]]},{"k":"H7430","v":[["*",[17,17,[[0,10,10,0,10,[[0,4,4,0,4],[6,3,3,4,7],[7,2,2,7,9],[8,1,1,9,10]]],[2,3,3,10,13,[[100,2,2,10,12],[109,1,1,12,13]]],[4,1,1,13,14,[[156,1,1,13,14]]],[18,2,2,14,16,[[546,1,1,14,15],[581,1,1,15,16]]],[25,1,1,16,17,[[839,1,1,16,17]]]],[20,25,27,29,167,173,180,200,202,207,3041,3043,3343,5022,14969,15591,21445]]],["+",[1,1,[[2,1,1,0,1,[[109,1,1,0,1]]]],[3343]]],["creep",[2,2,[[18,1,1,0,1,[[581,1,1,0,1]]],[25,1,1,1,2,[[839,1,1,1,2]]]],[15591,21445]]],["creepeth",[8,8,[[0,6,6,0,6,[[0,2,2,0,2],[6,2,2,2,4],[7,2,2,4,6]]],[2,1,1,6,7,[[100,1,1,6,7]]],[4,1,1,7,8,[[156,1,1,7,8]]]],[25,29,167,173,200,202,3041,5022]]],["moved",[1,1,[[0,1,1,0,1,[[6,1,1,0,1]]]],[180]]],["moveth",[5,5,[[0,3,3,0,3,[[0,2,2,0,2],[8,1,1,2,3]]],[2,1,1,3,4,[[100,1,1,3,4]]],[18,1,1,4,5,[[546,1,1,4,5]]]],[20,27,207,3043,14969]]]]},{"k":"H7431","v":[["*",[17,17,[[0,10,10,0,10,[[0,3,3,0,3],[5,2,2,3,5],[6,2,2,5,7],[7,2,2,7,9],[8,1,1,9,10]]],[10,1,1,10,11,[[294,1,1,10,11]]],[18,2,2,11,13,[[581,1,1,11,12],[625,1,1,12,13]]],[25,2,2,13,15,[[809,1,1,13,14],[839,1,1,14,15]]],[27,1,1,15,16,[[863,1,1,15,16]]],[34,1,1,16,17,[[903,1,1,16,17]]]],[23,24,25,144,157,173,182,200,202,208,8877,15596,16381,20614,21445,22123,22745]]],["creepeth",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[24]]],["creeping",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15596]]],["thing",[8,8,[[0,8,8,0,8,[[0,2,2,0,2],[5,2,2,2,4],[6,1,1,4,5],[7,2,2,5,7],[8,1,1,7,8]]]],[23,25,144,157,173,200,202,208]]],["things",[7,7,[[0,1,1,0,1,[[6,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]],[18,1,1,2,3,[[625,1,1,2,3]]],[25,2,2,3,5,[[809,1,1,3,4],[839,1,1,4,5]]],[27,1,1,5,6,[[863,1,1,5,6]]],[34,1,1,6,7,[[903,1,1,6,7]]]],[182,8877,16381,20614,21445,22123,22745]]]]},{"k":"H7432","v":[["Remeth",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6342]]]]},{"k":"H7433","v":[["*",[20,20,[[10,8,8,0,8,[[294,1,1,0,1],[312,7,7,1,8]]],[11,4,4,8,12,[[320,1,1,8,9],[321,3,3,9,12]]],[13,8,8,12,20,[[384,7,7,12,19],[388,1,1,19,20]]]],[8857,9483,9484,9486,9492,9495,9500,9509,9755,9757,9760,9770,11544,11545,11547,11553,11556,11561,11570,11649]]],["Gilead",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9483]]],["Ramothgilead",[19,19,[[10,7,7,0,7,[[294,1,1,0,1],[312,6,6,1,7]]],[11,4,4,7,11,[[320,1,1,7,8],[321,3,3,8,11]]],[13,8,8,11,19,[[384,7,7,11,18],[388,1,1,18,19]]]],[8857,9484,9486,9492,9495,9500,9509,9755,9757,9760,9770,11544,11545,11547,11553,11556,11561,11570,11649]]]]},{"k":"H7434","v":[["Ramathmizpeh",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6180]]]]},{"k":"H7435","v":[["Ramathite",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11136]]]]},{"k":"H7436","v":[["Ramathaimzophim",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7213]]]]},{"k":"H7437","v":[["Ramathlehi",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6946]]]]},{"k":"H7438","v":[["songs",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14362]]]]},{"k":"H7439","v":[["rattleth",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13857]]]]},{"k":"H7440","v":[["*",[33,33,[[10,2,2,0,2,[[298,1,1,0,1],[312,1,1,1,2]]],[13,2,2,2,4,[[372,1,1,2,3],[386,1,1,3,4]]],[18,15,15,4,19,[[494,1,1,4,5],[507,1,1,5,6],[519,1,1,6,7],[524,1,1,7,8],[538,1,1,8,9],[565,1,1,9,10],[582,1,1,10,11],[583,1,1,11,12],[584,1,1,12,13],[595,1,1,13,14],[596,1,1,14,15],[603,3,3,15,18],[619,1,1,18,19]]],[19,1,1,19,20,[[638,1,1,19,20]]],[22,9,9,20,29,[[692,1,1,20,21],[713,1,1,21,22],[721,1,1,22,23],[722,1,1,23,24],[726,1,1,24,25],[727,1,1,25,26],[729,1,1,26,27],[732,1,1,27,28],[733,1,1,28,29]]],[23,3,3,29,32,[[751,1,1,29,30],[755,1,1,30,31],[758,1,1,31,32]]],[35,1,1,32,33,[[908,1,1,32,33]]]],[9013,9516,11301,11609,14104,14324,14559,14626,14820,15310,15649,15695,15721,15884,16067,16117,16120,16121,16292,16698,17935,18330,18519,18556,18634,18649,18684,18724,18752,19135,19240,19305,22837]]],["cry",[12,12,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[18,6,6,2,8,[[494,1,1,2,3],[538,1,1,3,4],[565,1,1,4,5],[583,1,1,5,6],[596,1,1,6,7],[619,1,1,7,8]]],[22,1,1,8,9,[[721,1,1,8,9]]],[23,3,3,9,12,[[751,1,1,9,10],[755,1,1,10,11],[758,1,1,11,12]]]],[9013,11301,14104,14820,15310,15695,16067,16292,18519,19135,19240,19305]]],["gladness",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15649]]],["joy",[3,3,[[18,3,3,0,3,[[507,1,1,0,1],[519,1,1,1,2],[603,1,1,2,3]]]],[14324,14559,16120]]],["proclamation",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9516]]],["rejoicing",[3,3,[[18,3,3,0,3,[[584,1,1,0,1],[595,1,1,1,2],[603,1,1,2,3]]]],[15721,15884,16121]]],["shouting",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16698]]],["sing",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11609]]],["singing",[9,9,[[18,1,1,0,1,[[603,1,1,0,1]]],[22,7,7,1,8,[[692,1,1,1,2],[722,1,1,2,3],[726,1,1,3,4],[727,1,1,4,5],[729,1,1,5,6],[732,1,1,6,7],[733,1,1,7,8]]],[35,1,1,8,9,[[908,1,1,8,9]]]],[16117,17935,18556,18634,18649,18684,18724,18752,22837]]],["songs",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18330]]],["triumph",[1,1,[[18,1,1,0,1,[[524,1,1,0,1]]]],[14626]]]]},{"k":"H7441","v":[["Rinnah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10405]]]]},{"k":"H7442","v":[["*",[54,53,[[2,1,1,0,1,[[98,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[17,2,2,3,5,[[464,1,1,3,4],[473,1,1,4,5]]],[18,26,25,5,30,[[482,1,1,5,6],[497,1,1,6,7],[509,1,1,7,8],[510,1,1,8,9],[512,1,1,9,10],[528,1,1,10,11],[536,1,1,11,12],[540,1,1,12,13],[542,1,1,13,14],[544,1,1,14,15],[548,1,1,15,16],[555,1,1,16,17],[558,1,1,17,18],[561,1,1,18,19],[566,1,1,19,20],[567,1,1,20,21],[569,1,1,21,22],[572,1,1,22,23],[573,1,1,23,24],[575,2,2,24,26],[609,3,2,26,28],[622,1,1,28,29],[626,1,1,29,30]]],[19,3,3,30,33,[[628,1,1,30,31],[635,1,1,31,32],[656,1,1,32,33]]],[22,14,14,33,47,[[690,1,1,33,34],[694,1,1,34,35],[702,1,1,35,36],[704,1,1,36,37],[713,2,2,37,39],[720,1,1,39,40],[722,1,1,40,41],[727,1,1,41,42],[730,2,2,42,44],[732,1,1,44,45],[739,1,1,45,46],[743,1,1,46,47]]],[23,3,3,47,50,[[775,2,2,47,49],[795,1,1,49,50]]],[24,1,1,50,51,[[798,1,1,50,51]]],[35,1,1,51,52,[[908,1,1,51,52]]],[37,1,1,52,53,[[912,1,1,52,53]]]],[2977,5801,10853,13545,13800,13984,14187,14366,14367,14437,14705,14806,14846,14868,14897,14999,15178,15218,15261,15338,15392,15415,15455,15477,15494,15498,16160,16167,16327,16390,16420,16605,17230,17906,17979,18109,18149,18322,18326,18491,18556,18649,18704,18705,18724,18850,18911,19698,19703,20260,20351,22834,22909]]],["+",[2,1,[[18,2,1,0,1,[[609,2,1,0,1]]]],[16167]]],["Rejoice",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,1,1,1,2,[[510,1,1,1,2]]]],[5801,14367]]],["Sing",[6,6,[[22,3,3,0,3,[[722,1,1,0,1],[727,1,1,1,2],[732,1,1,2,3]]],[23,1,1,3,4,[[775,1,1,3,4]]],[35,1,1,4,5,[[908,1,1,4,5]]],[37,1,1,5,6,[[912,1,1,5,6]]]],[18556,18649,18724,19698,22834,22909]]],["aloud",[4,4,[[18,4,4,0,4,[[528,1,1,0,1],[536,1,1,1,2],[558,1,1,2,3],[626,1,1,3,4]]]],[14705,14806,15218,16390]]],["crieth",[2,2,[[19,2,2,0,2,[[628,1,1,0,1],[635,1,1,1,2]]]],[16420,16605]]],["joy",[6,6,[[17,1,1,0,1,[[464,1,1,0,1]]],[18,5,5,1,6,[[482,1,1,1,2],[509,1,1,2,3],[512,1,1,3,4],[544,1,1,4,5],[609,1,1,5,6]]]],[13545,13984,14366,14437,14897,16160]]],["joyful",[1,1,[[18,1,1,0,1,[[575,1,1,0,1]]]],[15498]]],["out",[3,3,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[561,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]]],[10853,15261,20351]]],["rejoice",[9,9,[[18,8,8,0,8,[[497,1,1,0,1],[540,1,1,1,2],[542,1,1,2,3],[548,1,1,3,4],[566,1,1,4,5],[567,1,1,5,6],[573,1,1,6,7],[575,1,1,7,8]]],[22,1,1,8,9,[[739,1,1,8,9]]]],[14187,14846,14868,14999,15338,15392,15477,15494,18850]]],["sang",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13800]]],["shout",[1,1,[[22,1,1,0,1,[[690,1,1,0,1]]]],[17906]]],["shouted",[1,1,[[2,1,1,0,1,[[98,1,1,0,1]]]],[2977]]],["shouteth",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15178]]],["sing",[12,12,[[18,2,2,0,2,[[572,1,1,0,1],[622,1,1,1,2]]],[19,1,1,2,3,[[656,1,1,2,3]]],[22,7,7,3,10,[[702,1,1,3,4],[704,1,1,4,5],[713,1,1,5,6],[720,1,1,6,7],[730,2,2,7,9],[743,1,1,9,10]]],[23,2,2,10,12,[[775,1,1,10,11],[795,1,1,11,12]]]],[15455,16327,17230,18109,18149,18326,18491,18704,18705,18911,19703,20260]]],["singing",[2,2,[[22,2,2,0,2,[[694,1,1,0,1],[713,1,1,1,2]]]],[17979,18322]]],["triumph",[1,1,[[18,1,1,0,1,[[569,1,1,0,1]]]],[15415]]]]},{"k":"H7443","v":[["peacocks",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13847]]]]},{"k":"H7444","v":[]},{"k":"H7445","v":[["*",[4,4,[[17,2,2,0,2,[[438,1,1,0,1],[455,1,1,1,2]]],[18,2,2,2,4,[[540,1,1,2,3],[577,1,1,3,4]]]],[12911,13331,14844,15510]]],["joyful",[1,1,[[18,1,1,0,1,[[540,1,1,0,1]]]],[14844]]],["singing",[1,1,[[18,1,1,0,1,[[577,1,1,0,1]]]],[15510]]],["triumphing",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13331]]],["voice",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12911]]]]},{"k":"H7446","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4781,4782]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4782]]],["Rissah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4781]]]]},{"k":"H7447","v":[["*",[2,2,[[21,1,1,0,1,[[675,1,1,0,1]]],[29,1,1,1,2,[[884,1,1,1,2]]]],[17600,22461]]],["breaches",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22461]]],["drops",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17600]]]]},{"k":"H7448","v":[["bridle",[4,4,[[17,2,2,0,2,[[465,1,1,0,1],[476,1,1,1,2]]],[18,1,1,2,3,[[509,1,1,2,3]]],[22,1,1,3,4,[[708,1,1,3,4]]]],[13568,13901,14364,18245]]]]},{"k":"H7449","v":[["Resen",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[246]]]]},{"k":"H7450","v":[["+",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21669]]]]},{"k":"H7451","v":[["*",[664,623,[[0,36,34,0,34,[[1,2,2,0,2],[2,2,2,2,4],[5,2,1,4,5],[7,1,1,5,6],[12,1,1,6,7],[18,1,1,7,8],[23,1,1,8,9],[25,1,1,9,10],[27,1,1,10,11],[30,4,3,11,14],[36,3,3,14,17],[37,1,1,17,18],[38,1,1,18,19],[39,1,1,19,20],[40,6,6,20,26],[43,3,3,26,29],[46,1,1,29,30],[47,1,1,30,31],[49,3,3,31,34]]],[1,9,8,34,42,[[54,1,1,34,35],[59,1,1,35,36],[70,1,1,36,37],[72,1,1,37,38],[81,4,3,38,41],[82,1,1,41,42]]],[2,6,5,42,47,[[115,1,1,42,43],[116,5,4,43,47]]],[3,11,11,47,58,[[127,3,3,47,50],[129,1,1,50,51],[130,3,3,51,54],[136,1,1,54,55],[140,1,1,55,56],[148,1,1,56,57],[151,1,1,57,58]]],[4,35,33,58,91,[[153,2,2,58,60],[156,1,1,60,61],[158,1,1,61,62],[159,1,1,62,63],[161,1,1,63,64],[165,2,2,64,66],[167,1,1,66,67],[169,5,5,67,72],[171,2,2,72,74],[173,1,1,74,75],[174,5,5,75,80],[175,1,1,80,81],[176,1,1,81,82],[180,2,2,82,84],[181,1,1,84,85],[182,1,1,85,86],[183,6,4,86,90],[184,1,1,90,91]]],[5,1,1,91,92,[[209,1,1,91,92]]],[6,19,18,92,110,[[212,2,2,92,94],[213,3,2,94,96],[214,1,1,96,97],[216,1,1,97,98],[219,3,3,98,101],[220,1,1,101,102],[221,1,1,102,103],[223,1,1,103,104],[225,1,1,104,105],[230,5,5,105,110]]],[8,31,30,110,140,[[237,1,1,110,111],[241,1,1,111,112],[245,1,1,112,113],[247,3,3,113,116],[250,1,1,116,117],[251,4,4,117,121],[253,1,1,121,122],[254,1,1,122,123],[255,3,3,123,126],[258,1,1,126,127],[259,3,3,127,130],[260,7,6,130,136],[261,1,1,136,137],[264,2,2,137,139],[265,1,1,139,140]]],[9,15,14,140,154,[[269,2,1,140,141],[278,3,3,141,144],[279,2,2,144,146],[280,1,1,146,147],[281,1,1,147,148],[282,1,1,148,149],[283,1,1,149,150],[284,1,1,150,151],[285,2,2,151,153],[290,1,1,153,154]]],[10,27,25,154,179,[[291,1,1,154,155],[292,2,1,155,156],[293,1,1,156,157],[295,1,1,157,158],[299,1,1,158,159],[301,2,2,159,161],[303,1,1,161,162],[304,2,2,162,164],[305,2,2,164,166],[306,4,4,166,170],[310,1,1,170,171],[311,5,4,171,175],[312,4,4,175,179]]],[11,32,32,179,211,[[314,1,1,179,180],[315,1,1,180,181],[316,1,1,181,182],[318,1,1,182,183],[320,3,3,183,186],[325,2,2,186,188],[326,2,2,188,190],[327,4,4,190,194],[329,4,4,194,198],[333,7,7,198,205],[334,2,2,205,207],[335,2,2,207,209],[336,2,2,209,211]]],[12,4,4,211,215,[[339,1,1,211,212],[341,1,1,212,213],[344,1,1,213,214],[358,1,1,214,215]]],[13,21,21,215,236,[[373,2,2,215,217],[378,1,1,217,218],[384,3,3,218,221],[386,1,1,221,222],[387,2,2,222,224],[388,1,1,224,225],[391,1,1,225,226],[395,1,1,226,227],[399,4,4,227,231],[400,2,2,231,233],[402,3,3,233,236]]],[14,1,1,236,237,[[411,1,1,236,237]]],[15,13,13,237,250,[[413,1,1,237,238],[414,4,4,238,242],[418,2,2,242,244],[421,2,2,244,246],[425,4,4,246,250]]],[16,6,6,250,256,[[432,2,2,250,252],[433,2,2,252,254],[434,2,2,254,256]]],[17,15,15,256,271,[[436,2,2,256,258],[437,4,4,258,262],[440,1,1,262,263],[455,1,1,263,264],[456,1,1,264,265],[457,1,1,265,266],[463,1,1,266,267],[465,1,1,267,268],[466,1,1,268,269],[470,1,1,269,270],[477,1,1,270,271]]],[18,64,64,271,335,[[482,1,1,271,272],[484,2,2,272,274],[487,2,2,274,276],[492,1,1,276,277],[498,1,1,277,278],[500,1,1,278,279],[504,1,1,279,280],[505,1,1,280,281],[511,5,5,281,286],[512,3,3,286,289],[513,1,1,289,290],[514,2,2,290,292],[515,2,2,292,294],[517,2,2,294,296],[518,3,3,296,299],[526,1,1,299,300],[527,1,1,300,301],[528,1,1,301,302],[529,2,2,302,304],[531,1,1,304,305],[532,1,1,305,306],[533,1,1,306,307],[541,1,1,307,308],[547,1,1,308,309],[548,3,3,309,312],[550,1,1,312,313],[555,1,1,313,314],[565,1,1,314,315],[567,1,1,315,316],[568,1,1,316,317],[571,2,2,317,319],[574,1,1,319,320],[578,1,1,320,321],[584,3,3,321,324],[586,2,2,324,326],[589,1,1,326,327],[596,1,1,327,328],[598,1,1,328,329],[617,3,3,329,332],[618,2,2,332,334],[621,1,1,334,335]]],[19,68,64,335,399,[[628,2,2,335,337],[629,3,2,337,339],[630,3,3,339,342],[631,2,2,342,344],[632,1,1,344,345],[633,3,3,345,348],[635,2,1,348,349],[638,4,4,349,353],[639,4,4,353,357],[640,3,3,357,360],[641,4,4,360,364],[642,5,5,364,369],[643,5,5,369,374],[644,4,3,374,377],[646,1,1,377,378],[647,5,4,378,382],[648,2,2,382,384],[649,1,1,384,385],[650,1,1,385,386],[651,3,3,386,389],[652,1,1,389,390],[653,2,2,390,392],[654,1,1,392,393],[655,4,4,393,397],[656,1,1,397,398],[658,1,1,398,399]]],[20,31,27,399,426,[[659,1,1,399,400],[660,2,2,400,402],[662,2,2,402,404],[663,5,4,404,408],[664,2,2,408,410],[665,2,2,410,412],[666,7,6,412,418],[667,4,2,418,420],[668,2,2,420,422],[669,2,2,422,424],[670,2,2,424,426]]],[22,20,19,426,445,[[681,2,2,426,428],[683,2,1,428,429],[685,3,3,429,432],[691,1,1,432,433],[709,1,1,433,434],[710,1,1,434,435],[711,1,1,435,436],[723,1,1,436,437],[725,2,2,437,439],[734,1,1,439,440],[735,1,1,440,441],[737,2,2,441,443],[743,1,1,443,444],[744,1,1,444,445]]],[23,122,109,445,554,[[745,2,2,445,447],[746,7,6,447,453],[747,3,3,453,456],[748,3,3,456,459],[749,2,2,459,461],[750,4,4,461,465],[751,4,4,465,469],[752,2,2,469,471],[753,2,1,471,472],[755,8,7,472,479],[756,2,2,479,481],[757,1,1,481,482],[758,1,1,482,483],[759,2,2,483,485],[760,2,2,485,487],[761,2,2,487,489],[762,7,5,489,494],[763,2,2,494,496],[765,1,1,496,497],[766,1,1,497,498],[767,6,6,498,504],[768,5,4,504,508],[769,3,3,508,511],[770,5,3,511,514],[772,1,1,514,515],[773,1,1,515,516],[776,4,4,516,520],[777,1,1,520,521],[779,2,2,521,523],[780,4,3,523,526],[782,1,1,526,527],[783,2,2,527,529],[784,1,1,529,530],[785,1,1,530,531],[786,3,3,531,534],[788,14,10,534,544],[789,1,1,544,545],[792,2,2,545,547],[793,2,2,547,549],[795,4,4,549,553],[796,1,1,553,554]]],[24,3,3,554,557,[[797,2,2,554,556],[799,1,1,556,557]]],[25,24,22,557,579,[[806,2,2,557,559],[807,3,3,559,562],[808,3,2,562,564],[809,1,1,564,565],[812,1,1,565,566],[814,1,1,566,567],[815,4,3,567,570],[817,2,2,570,572],[821,2,2,572,574],[831,1,1,574,575],[834,1,1,575,576],[835,1,1,576,577],[837,1,1,577,578],[839,1,1,578,579]]],[26,3,3,579,582,[[858,3,3,579,582]]],[27,7,6,582,588,[[868,4,4,582,586],[870,1,1,586,587],[871,2,1,587,588]]],[28,2,2,588,590,[[877,1,1,588,589],[878,1,1,589,590]]],[29,7,7,590,597,[[881,1,1,590,591],[883,3,3,591,594],[884,1,1,594,595],[887,2,2,595,597]]],[30,1,1,597,598,[[888,1,1,597,598]]],[31,9,8,598,606,[[889,3,3,598,601],[891,3,2,601,603],[892,3,3,603,606]]],[32,7,6,606,612,[[893,1,1,606,607],[894,3,2,607,609],[895,2,2,609,611],[899,1,1,611,612]]],[33,2,2,612,614,[[900,1,1,612,613],[902,1,1,613,614]]],[34,3,2,614,616,[[903,1,1,614,615],[904,2,1,615,616]]],[35,1,1,616,617,[[908,1,1,616,617]]],[37,5,4,617,621,[[911,3,2,617,619],[917,1,1,619,620],[918,1,1,620,621]]],[38,3,2,621,623,[[925,2,1,621,622],[926,1,1,622,623]]]],[39,47,60,77,142,204,331,476,641,721,781,897,902,925,1085,1103,1116,1126,1158,1179,1198,1199,1214,1215,1216,1222,1328,1353,1358,1429,1467,1521,1523,1526,1651,1787,2085,2146,2450,2452,2460,2477,3530,3580,3582,3584,3603,4025,4034,4039,4094,4135,4143,4145,4316,4459,4731,4868,4927,4931,5029,5108,5126,5175,5277,5283,5340,5365,5366,5369,5371,5376,5425,5426,5468,5484,5489,5491,5492,5494,5509,5532,5646,5670,5700,5723,5745,5746,5749,5757,5781,6475,6556,6560,6575,6580,6600,6655,6777,6810,6811,6817,6856,6885,6932,7057,7066,7067,7088,7095,7263,7340,7437,7477,7479,7480,7579,7609,7610,7611,7618,7686,7715,7737,7739,7743,7819,7848,7850,7856,7864,7878,7882,7887,7889,7900,7923,7973,7974,8000,8120,8295,8297,8304,8333,8339,8373,8403,8434,8463,8510,8518,8546,8708,8769,8814,8825,8882,9060,9114,9133,9217,9228,9240,9275,9283,9290,9302,9308,9313,9415,9471,9472,9476,9480,9488,9498,9503,9532,9570,9578,9644,9707,9739,9745,9754,9873,9882,9906,9920,9934,9943,9949,9953,9985,9994,9996,10000,10121,10125,10128,10131,10134,10135,10139,10161,10165,10197,10202,10211,10221,10309,10395,10558,10949,11338,11346,11451,11549,11559,11564,11596,11630,11643,11648,11723,11797,11910,11914,11917,11930,11957,11961,11998,12002,12005,12250,12299,12308,12309,12317,12324,12403,12414,12539,12546,12678,12688,12689,12698,12813,12814,12820,12823,12836,12859,12870,12877,12894,12898,12901,12902,12970,13338,13385,13394,13532,13583,13617,13732,13933,13977,13999,14004,14047,14056,14090,14202,14239,14290,14302,14401,14402,14404,14407,14409,14414,14422,14436,14442,14469,14477,14502,14510,14537,14539,14543,14547,14549,14653,14687,14695,14711,14713,14730,14747,14760,14855,14973,14989,14996,15000,15028,15162,15311,15393,15405,15444,15454,15488,15517,15725,15733,15738,15760,15775,15810,15999,16088,16264,16265,16274,16280,16281,16315,16416,16433,16445,16447,16462,16484,16485,16504,16517,16531,16554,16558,16564,16615,16703,16707,16709,16715,16731,16732,16739,16740,16764,16766,16768,16788,16791,16794,16804,16810,16817,16822,16833,16835,16844,16846,16857,16867,16870,16884,16886,16893,16948,16962,16968,16976,16984,16994,16996,17018,17050,17080,17095,17099,17133,17164,17167,17181,17201,17206,17210,17218,17230,17296,17328,17350,17354,17384,17389,17398,17410,17411,17413,17418,17419,17443,17444,17461,17463,17464,17467,17469,17470,17478,17487,17498,17506,17515,17523,17524,17537,17716,17718,17759,17787,17797,17798,17917,18252,18266,18294,18568,18609,18610,18755,18766,18807,18815,18909,18926,18960,18962,18968,18978,18984,18992,18993,18998,19004,19007,19019,19033,19041,19045,19070,19086,19090,19096,19108,19118,19125,19131,19143,19149,19156,19159,19178,19234,19237,19238,19240,19241,19243,19249,19253,19263,19276,19309,19326,19336,19346,19348,19374,19375,19392,19394,19395,19396,19404,19410,19422,19450,19476,19494,19495,19496,19498,19501,19506,19526,19527,19532,19533,19539,19541,19566,19575,19585,19591,19626,19646,19754,19761,19763,19773,19780,19838,19840,19845,19849,19873,19899,19935,19939,19943,19968,19981,19985,19992,20012,20013,20015,20017,20019,20021,20027,20033,20037,20039,20045,20082,20096,20150,20164,20214,20236,20272,20276,20278,20331,20332,20392,20562,20563,20572,20573,20574,20582,20601,20613,20657,20730,20746,20752,20753,20785,20819,20938,20939,21216,21291,21338,21390,21435,22000,22001,22002,22179,22180,22181,22193,22223,22240,22324,22356,22401,22436,22437,22438,22453,22499,22505,22523,22533,22538,22539,22566,22568,22569,22570,22574,22591,22596,22598,22610,22619,22667,22695,22731,22744,22757,22835,22882,22893,22972,22993,23097,23120]]],["+",[50,49,[[0,2,2,0,2,[[27,1,1,0,1],[40,1,1,1,2]]],[1,1,1,2,3,[[70,1,1,2,3]]],[3,2,2,3,5,[[127,2,2,3,5]]],[4,7,7,5,12,[[165,1,1,5,6],[169,2,2,6,8],[171,1,1,8,9],[173,1,1,9,10],[174,1,1,10,11],[176,1,1,11,12]]],[8,2,2,12,14,[[260,1,1,12,13],[264,1,1,13,14]]],[9,2,2,14,16,[[278,1,1,14,15],[279,1,1,15,16]]],[10,1,1,16,17,[[303,1,1,16,17]]],[11,2,2,17,19,[[316,1,1,17,18],[329,1,1,18,19]]],[15,1,1,19,20,[[414,1,1,19,20]]],[17,4,4,20,24,[[436,2,2,20,22],[437,1,1,22,23],[463,1,1,23,24]]],[18,3,3,24,27,[[511,2,2,24,26],[584,1,1,26,27]]],[19,8,8,27,35,[[630,1,1,27,28],[631,1,1,28,29],[638,1,1,29,30],[640,1,1,30,31],[641,1,1,31,32],[643,3,3,32,35]]],[22,1,1,35,36,[[737,1,1,35,36]]],[23,7,7,36,43,[[746,1,1,36,37],[748,1,1,37,38],[753,1,1,38,39],[756,1,1,39,40],[762,1,1,40,41],[767,1,1,41,42],[788,1,1,42,43]]],[25,1,1,43,44,[[814,1,1,43,44]]],[27,2,1,44,45,[[871,2,1,44,45]]],[31,2,2,45,47,[[892,2,2,45,47]]],[32,1,1,47,48,[[899,1,1,47,48]]],[37,1,1,48,49,[[917,1,1,48,49]]]],[781,1216,2085,4025,4034,5277,5365,5371,5425,5468,5491,5532,7900,7974,8304,8339,9217,9644,9996,12317,12870,12877,12894,13532,14401,14402,15733,16462,16517,16703,16766,16788,16846,16857,16870,18815,18998,19041,19178,19253,19392,19498,20015,20730,22240,22569,22574,22667,22972]]],["Evil",[3,3,[[18,1,1,0,1,[[511,1,1,0,1]]],[19,2,2,1,3,[[640,1,1,1,2],[655,1,1,2,3]]]],[14409,16768,17201]]],["adversities",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7437]]],["adversity",[3,3,[[18,2,2,0,2,[[487,1,1,0,1],[571,1,1,1,2]]],[20,1,1,2,3,[[665,1,1,2,3]]]],[14047,15444,17443]]],["affliction",[5,5,[[15,1,1,0,1,[[413,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]],[30,1,1,3,4,[[888,1,1,3,4]]],[37,1,1,4,5,[[911,1,1,4,5]]]],[12299,15738,20096,22523,22893]]],["afflictions",[1,1,[[18,1,1,0,1,[[511,1,1,0,1]]]],[14407]]],["bad",[12,11,[[0,3,3,0,3,[[23,1,1,0,1],[30,2,2,1,3]]],[2,5,4,3,7,[[116,5,4,3,7]]],[3,2,2,7,9,[[129,1,1,7,8],[140,1,1,8,9]]],[9,1,1,9,10,[[280,1,1,9,10]]],[10,1,1,10,11,[[293,1,1,10,11]]]],[641,897,902,3580,3582,3584,3603,4094,4459,8373,8825]]],["calamities",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16281]]],["displeasure",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6932]]],["distress",[1,1,[[15,1,1,0,1,[[414,1,1,0,1]]]],[12324]]],["evil",[405,384,[[0,17,17,0,17,[[1,2,2,0,2],[2,2,2,2,4],[5,1,1,4,5],[7,1,1,5,6],[18,1,1,6,7],[36,3,3,7,10],[43,2,2,10,12],[46,1,1,12,13],[47,1,1,13,14],[49,3,3,14,17]]],[1,6,6,17,23,[[54,1,1,17,18],[59,1,1,18,19],[72,1,1,19,20],[81,2,2,20,22],[82,1,1,22,23]]],[2,1,1,23,24,[[115,1,1,23,24]]],[3,5,5,24,29,[[130,3,3,24,27],[136,1,1,27,28],[148,1,1,28,29]]],[4,14,13,29,42,[[153,2,2,29,31],[156,1,1,31,32],[159,1,1,32,33],[169,1,1,33,34],[171,1,1,34,35],[174,4,4,35,39],[181,1,1,39,40],[182,1,1,40,41],[183,2,1,41,42]]],[5,1,1,42,43,[[209,1,1,42,43]]],[6,14,13,43,56,[[212,2,2,43,45],[213,3,2,45,47],[214,1,1,47,48],[216,1,1,48,49],[219,2,2,49,51],[220,1,1,51,52],[223,1,1,52,53],[230,3,3,53,56]]],[8,22,22,56,78,[[237,1,1,56,57],[241,1,1,57,58],[247,1,1,58,59],[250,1,1,59,60],[251,4,4,60,64],[253,1,1,64,65],[254,1,1,65,66],[255,3,3,66,69],[259,2,2,69,71],[260,5,5,71,76],[261,1,1,76,77],[264,1,1,77,78]]],[9,9,9,78,87,[[269,1,1,78,79],[278,2,2,79,81],[279,1,1,81,82],[281,1,1,82,83],[283,1,1,83,84],[285,2,2,84,86],[290,1,1,86,87]]],[10,19,18,87,105,[[295,1,1,87,88],[299,1,1,88,89],[301,1,1,89,90],[304,2,2,90,92],[305,2,2,92,94],[306,4,4,94,98],[311,4,3,98,101],[312,4,4,101,105]]],[11,26,26,105,131,[[315,1,1,105,106],[318,1,1,106,107],[320,3,3,107,110],[325,2,2,110,112],[326,1,1,112,113],[327,4,4,113,117],[329,2,2,117,119],[333,6,6,119,125],[334,2,2,125,127],[335,2,2,127,129],[336,2,2,129,131]]],[12,4,4,131,135,[[339,1,1,131,132],[341,1,1,132,133],[344,1,1,133,134],[358,1,1,134,135]]],[13,17,17,135,152,[[373,1,1,135,136],[378,1,1,136,137],[384,3,3,137,140],[386,1,1,140,141],[387,1,1,141,142],[388,1,1,142,143],[395,1,1,143,144],[399,3,3,144,147],[400,2,2,147,149],[402,3,3,149,152]]],[14,1,1,152,153,[[411,1,1,152,153]]],[15,6,6,153,159,[[418,1,1,153,154],[421,1,1,154,155],[425,4,4,155,159]]],[16,2,2,159,161,[[432,1,1,159,160],[433,1,1,160,161]]],[17,6,6,161,167,[[437,2,2,161,163],[440,1,1,163,164],[465,1,1,164,165],[466,1,1,165,166],[477,1,1,166,167]]],[18,33,33,167,200,[[482,1,1,167,168],[484,1,1,168,169],[487,1,1,169,170],[492,1,1,170,171],[498,1,1,171,172],[500,1,1,172,173],[511,1,1,173,174],[512,1,1,174,175],[513,1,1,175,176],[514,2,2,176,178],[515,1,1,178,179],[517,1,1,179,180],[518,1,1,180,181],[526,1,1,181,182],[527,1,1,182,183],[528,1,1,183,184],[529,1,1,184,185],[531,1,1,185,186],[533,1,1,186,187],[541,1,1,187,188],[555,1,1,188,189],[567,1,1,189,190],[568,1,1,190,191],[574,1,1,191,192],[586,2,2,192,194],[589,1,1,194,195],[596,1,1,195,196],[598,1,1,196,197],[617,2,2,197,199],[618,1,1,199,200]]],[19,36,34,200,234,[[628,2,2,200,202],[629,2,2,202,204],[630,1,1,204,205],[631,1,1,205,206],[632,1,1,206,207],[633,1,1,207,208],[635,2,1,208,209],[638,1,1,209,210],[639,2,2,210,212],[641,2,2,212,214],[642,2,2,214,216],[643,2,2,216,218],[644,3,2,218,220],[646,1,1,220,221],[647,3,3,221,224],[648,1,1,224,225],[649,1,1,225,226],[650,1,1,226,227],[651,2,2,227,229],[654,1,1,229,230],[655,2,2,230,232],[656,1,1,232,233],[658,1,1,233,234]]],[20,22,19,234,253,[[660,1,1,234,235],[662,1,1,235,236],[663,4,4,236,240],[664,2,2,240,242],[666,5,4,242,246],[667,4,2,246,248],[668,1,1,248,249],[669,2,2,249,251],[670,2,2,251,253]]],[22,17,16,253,269,[[681,1,1,253,254],[683,2,1,254,255],[685,3,3,255,258],[691,1,1,258,259],[709,1,1,259,260],[710,1,1,260,261],[711,1,1,261,262],[723,1,1,262,263],[725,1,1,263,264],[734,1,1,264,265],[735,1,1,265,266],[737,1,1,266,267],[743,1,1,267,268],[744,1,1,268,269]]],[23,81,75,269,344,[[745,1,1,269,270],[746,2,2,270,272],[747,1,1,272,273],[748,1,1,273,274],[749,1,1,274,275],[750,2,2,275,277],[751,2,2,277,279],[752,1,1,279,280],[753,1,1,280,281],[755,6,5,281,286],[756,1,1,286,287],[757,1,1,287,288],[759,1,1,288,289],[760,2,2,289,291],[761,2,2,291,293],[762,6,5,293,298],[763,2,2,298,300],[765,1,1,300,301],[767,4,4,301,305],[768,3,2,305,307],[769,2,2,307,309],[770,5,3,309,312],[772,1,1,312,313],[773,1,1,313,314],[776,4,4,314,318],[779,2,2,318,320],[780,4,3,320,323],[783,1,1,323,324],[784,1,1,324,325],[785,1,1,325,326],[786,3,3,326,329],[788,7,7,329,336],[789,1,1,336,337],[792,1,1,337,338],[793,2,2,338,340],[795,3,3,340,343],[796,1,1,343,344]]],[24,1,1,344,345,[[799,1,1,344,345]]],[25,11,10,345,355,[[806,2,2,345,347],[807,2,2,347,349],[808,2,1,349,350],[815,1,1,350,351],[834,1,1,351,352],[835,1,1,352,353],[837,1,1,353,354],[839,1,1,354,355]]],[26,3,3,355,358,[[858,3,3,355,358]]],[28,1,1,358,359,[[877,1,1,358,359]]],[29,7,7,359,366,[[881,1,1,359,360],[883,3,3,360,363],[884,1,1,363,364],[887,2,2,364,366]]],[31,6,5,366,371,[[889,2,2,366,368],[891,3,2,368,370],[892,1,1,370,371]]],[32,6,5,371,376,[[893,1,1,371,372],[894,3,2,372,374],[895,2,2,374,376]]],[33,1,1,376,377,[[900,1,1,376,377]]],[34,3,2,377,379,[[903,1,1,377,378],[904,2,1,378,379]]],[35,1,1,379,380,[[908,1,1,379,380]]],[37,3,2,380,382,[[911,2,1,380,381],[918,1,1,381,382]]],[38,3,2,382,384,[[925,2,1,382,383],[926,1,1,383,384]]]],[39,47,60,77,142,204,476,1085,1103,1116,1328,1358,1429,1467,1521,1523,1526,1651,1787,2146,2450,2452,2477,3530,4135,4143,4145,4316,4731,4927,4931,5029,5126,5376,5426,5484,5489,5492,5494,5700,5723,5757,6475,6556,6560,6575,6580,6600,6655,6777,6811,6817,6885,7067,7088,7095,7263,7340,7479,7579,7609,7610,7611,7618,7686,7715,7737,7739,7743,7850,7856,7864,7878,7882,7887,7889,7923,7973,8120,8295,8297,8333,8403,8463,8518,8546,8708,8882,9060,9114,9228,9240,9275,9283,9290,9302,9308,9313,9471,9472,9480,9488,9498,9503,9532,9578,9707,9739,9745,9754,9873,9882,9920,9934,9943,9949,9953,9985,10000,10121,10128,10131,10134,10135,10139,10161,10165,10197,10202,10211,10221,10309,10395,10558,10949,11346,11451,11549,11559,11564,11596,11630,11648,11797,11910,11914,11930,11957,11961,11998,12002,12005,12250,12414,12539,12678,12688,12689,12698,12814,12823,12901,12902,12970,13583,13617,13933,13977,13999,14056,14090,14202,14239,14404,14422,14442,14469,14477,14510,14539,14547,14653,14687,14695,14713,14730,14760,14855,15162,15393,15405,15488,15760,15775,15810,15999,16088,16264,16274,16280,16416,16433,16445,16447,16484,16504,16531,16564,16615,16707,16731,16739,16791,16794,16810,16822,16844,16867,16884,16886,16948,16962,16976,16984,16994,17018,17050,17080,17099,17181,17206,17218,17230,17296,17354,17384,17398,17410,17411,17413,17418,17419,17461,17463,17469,17470,17478,17487,17498,17515,17523,17524,17537,17716,17759,17787,17797,17798,17917,18252,18266,18294,18568,18610,18755,18766,18807,18909,18926,18960,18968,18984,19019,19033,19070,19090,19108,19143,19149,19156,19178,19234,19237,19241,19243,19249,19263,19276,19326,19346,19348,19374,19375,19392,19394,19395,19396,19404,19410,19422,19450,19494,19496,19501,19506,19527,19532,19539,19566,19575,19585,19591,19626,19646,19754,19761,19763,19773,19838,19840,19845,19849,19873,19939,19943,19968,19981,19985,19992,20012,20017,20021,20027,20033,20037,20039,20045,20082,20150,20164,20236,20272,20276,20278,20392,20562,20563,20573,20574,20582,20753,21291,21338,21390,21435,22000,22001,22002,22324,22401,22436,22437,22438,22453,22499,22505,22538,22539,22566,22568,22570,22591,22596,22598,22610,22619,22695,22744,22757,22835,22882,22993,23097,23120]]],["evils",[8,7,[[4,4,3,0,3,[[183,4,3,0,3]]],[18,1,1,3,4,[[517,1,1,3,4]]],[23,1,1,4,5,[[746,1,1,4,5]]],[25,2,2,5,7,[[807,1,1,5,6],[821,1,1,6,7]]]],[5745,5746,5749,14537,18978,20572,20938]]],["favoured",[2,2,[[0,2,2,0,2,[[40,2,2,0,2]]]],[1215,1222]]],["grievous",[2,2,[[19,1,1,0,1,[[642,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[16817,17350]]],["harm",[4,4,[[0,1,1,0,1,[[30,1,1,0,1]]],[3,1,1,1,2,[[151,1,1,1,2]]],[19,1,1,2,3,[[630,1,1,2,3]]],[23,1,1,3,4,[[783,1,1,3,4]]]],[925,4868,16485,19935]]],["heavy",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17133]]],["hurt",[20,20,[[0,2,2,0,2,[[25,1,1,0,1],[30,1,1,1,2]]],[8,1,1,2,3,[[259,1,1,2,3]]],[9,1,1,3,4,[[284,1,1,3,4]]],[11,1,1,4,5,[[326,1,1,4,5]]],[13,1,1,5,6,[[391,1,1,5,6]]],[16,1,1,6,7,[[434,1,1,6,7]]],[18,7,7,7,14,[[512,2,2,7,9],[515,1,1,9,10],[518,1,1,10,11],[547,1,1,11,12],[548,2,2,12,14]]],[20,2,2,14,16,[[663,1,1,14,15],[666,1,1,15,16]]],[23,4,4,16,20,[[751,1,1,16,17],[768,1,1,17,18],[769,1,1,18,19],[782,1,1,19,20]]]],[721,902,7848,8510,9906,11723,12836,14414,14436,14502,14549,14973,14989,15000,17410,17467,19125,19533,19541,19899]]],["hurtful",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16315]]],["ill",[5,5,[[0,3,3,0,3,[[40,3,3,0,3]]],[4,1,1,3,4,[[167,1,1,3,4]]],[22,1,1,4,5,[[681,1,1,4,5]]]],[1198,1199,1214,5340,17718]]],["men",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13732]]],["mischief",[19,19,[[1,2,2,0,2,[[81,2,2,0,2]]],[8,1,1,2,3,[[258,1,1,2,3]]],[9,1,1,3,4,[[282,1,1,3,4]]],[10,2,2,4,6,[[301,1,1,4,5],[310,1,1,5,6]]],[15,1,1,6,7,[[418,1,1,6,7]]],[16,1,1,7,8,[[433,1,1,7,8]]],[18,2,2,8,10,[[505,1,1,8,9],[529,1,1,9,10]]],[19,8,8,10,18,[[633,2,2,10,12],[638,1,1,12,13],[639,1,1,13,14],[640,1,1,14,15],[644,1,1,15,16],[651,1,1,16,17],[655,1,1,17,18]]],[27,1,1,18,19,[[868,1,1,18,19]]]],[2450,2460,7819,8434,9133,9415,12403,12820,14302,14711,16554,16558,16715,16740,16764,16893,17095,17210,22193]]],["mischiefs",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,1,1,1,2,[[617,1,1,1,2]]]],[5781,16265]]],["mischievous",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17506]]],["misery",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17464]]],["naught",[3,2,[[11,1,1,0,1,[[314,1,1,0,1]]],[19,2,1,1,2,[[647,2,1,1,2]]]],[9570,16968]]],["naughty",[1,1,[[23,1,1,0,1,[[768,1,1,0,1]]]],[19526]]],["noisome",[2,2,[[25,2,2,0,2,[[815,2,2,0,2]]]],[20746,20752]]],["sad",[2,2,[[15,2,2,0,2,[[414,2,2,0,2]]]],[12308,12309]]],["sadly",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1179]]],["sore",[9,9,[[4,3,3,0,3,[[158,1,1,0,1],[180,2,2,1,3]]],[13,1,1,3,4,[[387,1,1,3,4]]],[17,1,1,4,5,[[437,1,1,4,5]]],[18,1,1,5,6,[[548,1,1,5,6]]],[20,2,2,6,8,[[659,1,1,6,7],[662,1,1,7,8]]],[25,1,1,8,9,[[815,1,1,8,9]]]],[5108,5646,5670,11643,12898,14996,17328,17389,20752]]],["sorrow",[1,1,[[0,1,1,0,1,[[43,1,1,0,1]]]],[1353]]],["things",[2,2,[[19,1,1,0,1,[[642,1,1,0,1]]],[23,1,1,1,2,[[747,1,1,1,2]]]],[16835,19007]]],["trouble",[9,9,[[18,3,3,0,3,[[504,1,1,0,1],[518,1,1,1,2],[584,1,1,2,3]]],[23,5,5,3,8,[[746,2,2,3,5],[755,2,2,5,7],[795,1,1,7,8]]],[24,1,1,8,9,[[797,1,1,8,9]]]],[14290,14543,15725,18992,18993,19238,19240,20214,20331]]],["troubles",[1,1,[[18,1,1,0,1,[[565,1,1,0,1]]]],[15311]]],["wicked",[24,24,[[0,2,2,0,2,[[12,1,1,0,1],[37,1,1,1,2]]],[4,2,2,2,4,[[169,1,1,2,3],[175,1,1,3,4]]],[8,1,1,4,5,[[265,1,1,4,5]]],[11,1,1,5,6,[[329,1,1,5,6]]],[13,1,1,6,7,[[373,1,1,6,7]]],[15,1,1,7,8,[[421,1,1,7,8]]],[16,2,2,8,10,[[432,1,1,8,9],[434,1,1,9,10]]],[17,1,1,10,11,[[456,1,1,10,11]]],[18,1,1,11,12,[[578,1,1,11,12]]],[19,5,5,12,17,[[629,1,1,12,13],[638,1,1,13,14],[639,1,1,14,15],[642,1,1,15,16],[653,1,1,16,17]]],[23,3,3,17,20,[[749,1,1,17,18],[750,1,1,18,19],[759,1,1,19,20]]],[25,4,4,20,24,[[809,1,1,20,21],[812,1,1,21,22],[821,1,1,22,23],[831,1,1,23,24]]]],[331,1126,5369,5509,8000,9994,11338,12546,12813,12859,13385,15517,16447,16709,16732,16833,17164,19086,19118,19336,20613,20657,20939,21216]]],["wickedly",[2,2,[[4,1,1,0,1,[[161,1,1,0,1]]],[18,1,1,1,2,[[550,1,1,1,2]]]],[5175,15028]]],["wickedness",[53,48,[[0,2,2,0,2,[[5,1,1,0,1],[38,1,1,1,2]]],[4,2,2,2,4,[[165,1,1,2,3],[169,1,1,3,4]]],[6,3,3,4,7,[[219,1,1,4,5],[230,2,2,5,7]]],[8,3,3,7,10,[[247,2,2,7,9],[260,1,1,9,10]]],[9,1,1,10,11,[[269,1,1,10,11]]],[10,4,3,11,14,[[291,1,1,11,12],[292,2,1,12,13],[311,1,1,13,14]]],[11,1,1,14,15,[[333,1,1,14,15]]],[17,2,2,15,17,[[455,1,1,15,16],[457,1,1,16,17]]],[18,3,3,17,20,[[484,1,1,17,18],[532,1,1,18,19],[571,1,1,19,20]]],[19,3,3,20,23,[[641,1,1,20,21],[648,1,1,21,22],[653,1,1,22,23]]],[20,1,1,23,24,[[665,1,1,23,24]]],[22,1,1,24,25,[[725,1,1,24,25]]],[23,17,13,25,38,[[745,1,1,25,26],[746,1,1,26,27],[747,1,1,27,28],[748,1,1,28,29],[750,1,1,29,30],[751,1,1,30,31],[752,1,1,31,32],[758,1,1,32,33],[766,1,1,33,34],[767,1,1,34,35],[777,1,1,35,36],[788,6,2,36,38]]],[24,1,1,38,39,[[797,1,1,38,39]]],[25,2,2,39,41,[[817,2,2,39,41]]],[27,4,4,41,45,[[868,3,3,41,44],[870,1,1,44,45]]],[28,1,1,45,46,[[878,1,1,45,46]]],[31,1,1,46,47,[[889,1,1,46,47]]],[33,1,1,47,48,[[902,1,1,47,48]]]],[142,1158,5283,5366,6810,7057,7066,7477,7480,7900,8120,8769,8814,9476,10125,13338,13394,14004,14747,15454,16804,16996,17167,17444,18609,18962,18984,19004,19045,19096,19131,19159,19309,19476,19495,19780,20013,20019,20332,20785,20819,22179,22180,22181,22223,22356,22533,22731]]],["worse",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11917]]],["worst",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20601]]],["wretchedness",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4039]]],["wrong",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6856]]]]},{"k":"H7452","v":[["*",[3,3,[[1,1,1,0,1,[[81,1,1,0,1]]],[17,1,1,1,2,[[471,1,1,1,2]]],[32,1,1,2,3,[[896,1,1,2,3]]]],[2455,13769,22629]]],["aloud",[1,1,[[32,1,1,0,1,[[896,1,1,0,1]]]],[22629]]],["noise",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13769]]],["shouted",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2455]]]]},{"k":"H7453","v":[["*",[187,172,[[0,7,7,0,7,[[10,2,2,0,2],[14,1,1,2,3],[30,1,1,3,4],[37,2,2,4,6],[42,1,1,6,7]]],[1,20,18,7,25,[[51,1,1,7,8],[60,1,1,8,9],[67,2,2,9,11],[69,4,2,11,13],[70,3,3,13,16],[71,7,7,16,23],[81,1,1,23,24],[82,1,1,24,25]]],[2,4,4,25,29,[[108,3,3,25,28],[109,1,1,28,29]]],[4,21,16,29,45,[[156,1,1,29,30],[157,4,2,30,32],[165,1,1,32,33],[167,2,1,33,34],[171,5,4,34,38],[174,2,2,38,40],[175,3,2,40,42],[176,1,1,42,43],[179,2,2,43,45]]],[5,1,1,45,46,[[206,1,1,45,46]]],[6,5,5,46,51,[[216,1,1,46,47],[217,3,3,47,50],[220,1,1,50,51]]],[7,2,2,51,53,[[234,1,1,51,52],[235,1,1,52,53]]],[8,7,6,53,59,[[245,1,1,53,54],[249,1,1,54,55],[250,1,1,55,56],[255,2,1,56,57],[263,1,1,57,58],[265,1,1,58,59]]],[9,6,4,59,63,[[268,2,1,59,60],[278,1,1,60,61],[279,1,1,61,62],[282,2,1,62,63]]],[10,3,3,63,66,[[298,1,1,63,64],[306,1,1,64,65],[310,1,1,65,66]]],[11,3,3,66,69,[[315,1,1,66,67],[319,2,2,67,69]]],[12,1,1,69,70,[[364,1,1,69,70]]],[13,2,2,70,72,[[372,1,1,70,71],[386,1,1,71,72]]],[16,2,2,72,74,[[434,2,2,72,74]]],[17,14,14,74,88,[[437,1,1,74,75],[441,2,2,75,77],[447,1,1,77,78],[451,2,2,78,80],[452,1,1,80,81],[454,1,1,81,82],[465,1,1,82,83],[466,1,1,83,84],[467,1,1,84,85],[470,1,1,85,86],[477,2,2,86,88]]],[18,8,8,88,96,[[489,1,1,88,89],[492,1,1,89,90],[505,1,1,90,91],[512,1,1,91,92],[515,1,1,92,93],[565,1,1,93,94],[578,1,1,94,95],[599,1,1,95,96]]],[19,33,30,96,126,[[630,2,2,96,98],[633,4,3,98,101],[638,2,2,101,103],[639,1,1,103,104],[641,2,2,104,106],[643,1,1,106,107],[644,2,2,107,109],[645,2,2,109,111],[646,3,2,111,113],[648,1,1,113,114],[649,1,1,114,115],[651,1,1,115,116],[652,4,4,116,120],[653,1,1,120,121],[654,5,4,121,125],[656,1,1,125,126]]],[20,1,1,126,127,[[662,1,1,126,127]]],[21,2,2,127,129,[[675,2,2,127,129]]],[22,5,5,129,134,[[681,1,1,129,130],[691,1,1,130,131],[697,1,1,131,132],[712,1,1,132,133],[719,1,1,133,134]]],[23,20,19,134,153,[[747,1,1,134,135],[749,1,1,135,136],[750,1,1,136,137],[751,1,1,137,138],[753,4,3,138,141],[763,1,1,141,142],[766,2,2,142,144],[767,3,3,144,147],[773,1,1,147,148],[775,1,1,148,149],[778,2,2,149,151],[780,1,1,151,152],[790,1,1,152,153]]],[24,1,1,153,154,[[797,1,1,153,154]]],[25,6,6,154,160,[[819,3,3,154,157],[823,2,2,157,159],[834,1,1,159,160]]],[27,1,1,160,161,[[864,1,1,160,161]]],[31,1,1,161,162,[[889,1,1,161,162]]],[32,1,1,162,163,[[899,1,1,162,163]]],[34,1,1,163,164,[[904,1,1,163,164]]],[37,8,7,164,171,[[913,2,2,164,166],[918,3,3,166,169],[921,1,1,169,170],[924,2,1,170,171]]],[38,1,1,171,172,[[927,1,1,171,172]]]],[269,273,370,922,1131,1139,1323,1567,1808,2006,2015,2067,2068,2091,2095,2112,2120,2121,2122,2123,2124,2127,2139,2465,2484,3294,3297,3299,3328,5046,5073,5074,5278,5321,5410,5411,5417,5420,5494,5496,5524,5525,5535,5602,5609,6377,6683,6707,6708,6716,6829,7186,7197,7429,7528,7588,7771,7959,8004,8065,8297,8320,8443,9016,9294,9443,9599,9710,9716,11142,11304,11610,12853,12856,12902,12992,13005,13132,13258,13259,13265,13318,13586,13597,13631,13724,13929,13932,14068,14090,14302,14424,14501,15326,15518,16097,16483,16484,16541,16543,16569,16697,16700,16745,16792,16793,16869,16890,16891,16918,16925,16929,16931,16994,17026,17107,17121,17122,17130,17131,17160,17178,17179,17183,17186,17229,17385,17599,17614,17712,17914,18006,18317,18457,19003,19066,19110,19124,19179,19180,19183,19416,19462,19467,19511,19514,19519,19658,19725,19816,19818,19858,20061,20312,20855,20860,20864,20987,20988,21306,22129,22538,22669,22763,22920,22922,22986,22992,22993,23034,23081,23136]]],["+",[10,10,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,2,2,1,3,[[70,1,1,1,2],[71,1,1,2,3]]],[17,1,1,3,4,[[441,1,1,3,4]]],[19,2,2,4,6,[[639,1,1,4,5],[646,1,1,5,6]]],[20,1,1,6,7,[[662,1,1,6,7]]],[23,1,1,7,8,[[753,1,1,7,8]]],[25,1,1,8,9,[[819,1,1,8,9]]],[34,1,1,9,10,[[904,1,1,9,10]]]],[922,2112,2139,12992,16745,16929,17385,19179,20864,22763]]],["another",[20,19,[[0,3,3,0,3,[[10,1,1,0,1],[14,1,1,1,2],[42,1,1,2,3]]],[1,2,2,3,5,[[67,1,1,3,4],[70,1,1,4,5]]],[6,2,2,5,7,[[216,1,1,5,6],[220,1,1,6,7]]],[7,1,1,7,8,[[234,1,1,7,8]]],[8,3,2,8,10,[[245,1,1,8,9],[255,2,1,9,10]]],[11,3,3,10,13,[[315,1,1,10,11],[319,2,2,11,13]]],[13,1,1,13,14,[[386,1,1,13,14]]],[16,2,2,14,16,[[434,2,2,14,16]]],[22,1,1,16,17,[[691,1,1,16,17]]],[23,1,1,17,18,[[790,1,1,17,18]]],[38,1,1,18,19,[[927,1,1,18,19]]]],[269,370,1323,2015,2095,6683,6829,7186,7429,7771,9599,9710,9716,11610,12853,12856,17914,20061,23136]]],["another's",[1,1,[[0,1,1,0,1,[[10,1,1,0,1]]]],[273]]],["brother",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5535]]],["companion",[3,3,[[1,1,1,0,1,[[81,1,1,0,1]]],[12,1,1,1,2,[[364,1,1,1,2]]],[17,1,1,2,3,[[465,1,1,2,3]]]],[2465,11142,13586]]],["companions",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13724]]],["companions'",[1,1,[[18,1,1,0,1,[[599,1,1,0,1]]]],[16097]]],["fellow",[8,8,[[1,1,1,0,1,[[51,1,1,0,1]]],[6,3,3,1,4,[[217,3,3,1,4]]],[8,1,1,4,5,[[249,1,1,4,5]]],[9,1,1,5,6,[[268,1,1,5,6]]],[22,1,1,6,7,[[712,1,1,6,7]]],[31,1,1,7,8,[[889,1,1,7,8]]]],[1567,6707,6708,6716,7528,8065,18317,22538]]],["fellow's",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8065]]],["fellows",[1,1,[[37,1,1,0,1,[[913,1,1,0,1]]]],[22920]]],["friend",[27,24,[[0,2,2,0,2,[[37,2,2,0,2]]],[1,1,1,2,3,[[82,1,1,2,3]]],[4,1,1,3,4,[[165,1,1,3,4]]],[9,3,2,4,6,[[279,1,1,4,5],[282,2,1,5,6]]],[17,1,1,6,7,[[441,1,1,6,7]]],[18,2,2,7,9,[[512,1,1,7,8],[565,1,1,8,9]]],[19,12,10,9,19,[[633,3,2,9,11],[644,2,2,11,13],[646,1,1,13,14],[649,1,1,14,15],[654,5,4,15,19]]],[21,1,1,19,20,[[675,1,1,19,20]]],[23,2,2,20,22,[[750,1,1,20,21],[763,1,1,21,22]]],[27,1,1,22,23,[[864,1,1,22,23]]],[32,1,1,23,24,[[899,1,1,23,24]]]],[1131,1139,2484,5278,8320,8443,13005,14424,15326,16541,16543,16890,16891,16931,17026,17178,17179,17183,17186,17614,19110,19416,22129,22669]]],["friends",[14,14,[[8,1,1,0,1,[[265,1,1,0,1]]],[10,1,1,1,2,[[306,1,1,1,2]]],[17,7,7,2,9,[[437,1,1,2,3],[451,1,1,3,4],[452,1,1,4,5],[454,1,1,5,6],[467,1,1,6,7],[477,2,2,7,9]]],[18,1,1,9,10,[[515,1,1,9,10]]],[19,2,2,10,12,[[645,1,1,10,11],[646,1,1,11,12]]],[21,1,1,12,13,[[675,1,1,12,13]]],[24,1,1,13,14,[[797,1,1,13,14]]]],[8004,9294,12902,13258,13265,13318,13631,13929,13932,14501,16925,16929,17599,20312]]],["lovers",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19003]]],["neighbour",[69,66,[[1,7,7,0,7,[[60,1,1,0,1],[69,1,1,1,2],[70,1,1,2,3],[71,4,4,3,7]]],[2,3,3,7,10,[[108,3,3,7,10]]],[4,11,9,10,19,[[156,1,1,10,11],[157,1,1,11,12],[167,2,1,12,13],[171,4,3,13,16],[174,1,1,16,17],[175,1,1,17,18],[179,1,1,18,19]]],[5,1,1,19,20,[[206,1,1,19,20]]],[7,1,1,20,21,[[235,1,1,20,21]]],[8,2,2,21,23,[[250,1,1,21,22],[263,1,1,22,23]]],[9,1,1,23,24,[[278,1,1,23,24]]],[10,2,2,24,26,[[298,1,1,24,25],[310,1,1,25,26]]],[13,1,1,26,27,[[372,1,1,26,27]]],[17,2,2,27,29,[[447,1,1,27,28],[451,1,1,28,29]]],[18,3,3,29,32,[[489,1,1,29,30],[492,1,1,30,31],[578,1,1,31,32]]],[19,15,15,32,47,[[630,2,2,32,34],[638,2,2,34,36],[641,2,2,36,38],[643,1,1,38,39],[645,1,1,39,40],[648,1,1,40,41],[651,1,1,41,42],[652,3,3,42,45],[653,1,1,45,46],[656,1,1,46,47]]],[22,3,3,47,50,[[681,1,1,47,48],[697,1,1,48,49],[719,1,1,49,50]]],[23,11,11,50,61,[[751,1,1,50,51],[753,3,3,51,54],[766,1,1,54,55],[767,3,3,55,58],[775,1,1,58,59],[778,2,2,59,61]]],[37,6,5,61,66,[[913,1,1,61,62],[918,3,3,62,65],[924,2,1,65,66]]]],[1808,2067,2091,2120,2122,2123,2127,3294,3297,3299,5046,5073,5321,5410,5411,5417,5496,5525,5609,6377,7197,7588,7959,8297,9016,9443,11304,13132,13259,14068,14090,15518,16483,16484,16697,16700,16792,16793,16869,16918,16994,17107,17121,17122,17131,17160,17229,17712,18006,18457,19124,19179,19180,19183,19462,19511,19514,19519,19725,19816,19818,22922,22986,22992,22993,23081]]],["neighbour's",[24,20,[[1,5,3,0,3,[[69,3,1,0,1],[71,2,2,1,3]]],[2,1,1,3,4,[[109,1,1,3,4]]],[4,8,6,4,10,[[157,3,1,4,5],[171,1,1,5,6],[174,1,1,6,7],[175,2,2,7,9],[179,1,1,9,10]]],[17,1,1,10,11,[[466,1,1,10,11]]],[19,2,2,11,13,[[633,1,1,11,12],[652,1,1,12,13]]],[23,2,2,13,15,[[749,1,1,13,14],[766,1,1,14,15]]],[25,4,4,15,19,[[819,2,2,15,17],[823,1,1,17,18],[834,1,1,18,19]]],[37,1,1,19,20,[[921,1,1,19,20]]]],[2068,2121,2124,3328,5074,5420,5494,5524,5525,5602,13597,16569,17130,19066,19467,20855,20860,20987,21306,23034]]],["neighbours",[2,2,[[18,1,1,0,1,[[505,1,1,0,1]]],[25,1,1,1,2,[[823,1,1,1,2]]]],[14302,20988]]],["neighbours'",[1,1,[[23,1,1,0,1,[[773,1,1,0,1]]]],[19658]]],["other",[2,2,[[1,1,1,0,1,[[67,1,1,0,1]]],[23,1,1,1,2,[[780,1,1,1,2]]]],[2006,19858]]]]},{"k":"H7454","v":[["*",[2,2,[[18,2,2,0,2,[[616,2,2,0,2]]]],[16241,16256]]],["thought",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16241]]],["thoughts",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16256]]]]},{"k":"H7455","v":[["*",[19,19,[[0,1,1,0,1,[[40,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[8,1,1,2,3,[[252,1,1,2,3]]],[15,1,1,3,4,[[414,1,1,3,4]]],[18,1,1,4,5,[[505,1,1,4,5]]],[20,1,1,5,6,[[665,1,1,5,6]]],[22,1,1,6,7,[[679,1,1,6,7]]],[23,11,11,7,18,[[748,1,1,7,8],[765,1,1,8,9],[767,2,2,9,11],[768,3,3,11,14],[769,1,1,14,15],[770,1,1,15,16],[773,1,1,16,17],[788,1,1,17,18]]],[27,1,1,18,19,[[870,1,1,18,19]]]],[1214,5631,7646,12309,14303,17432,17670,19031,19452,19486,19506,19526,19527,19532,19539,19575,19652,20032,22223]]],["+",[6,6,[[23,6,6,0,6,[[767,1,1,0,1],[768,3,3,1,4],[769,1,1,4,5],[773,1,1,5,6]]]],[19506,19526,19527,19532,19539,19652]]],["badness",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1214]]],["evil",[6,6,[[22,1,1,0,1,[[679,1,1,0,1]]],[23,5,5,1,6,[[748,1,1,1,2],[765,1,1,2,3],[767,1,1,3,4],[770,1,1,4,5],[788,1,1,5,6]]]],[17670,19031,19452,19486,19575,20032]]],["naughtiness",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7646]]],["sadness",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17432]]],["sorrow",[1,1,[[15,1,1,0,1,[[414,1,1,0,1]]]],[12309]]],["wickedness",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[18,1,1,1,2,[[505,1,1,1,2]]],[27,1,1,2,3,[[870,1,1,2,3]]]],[5631,14303,22223]]]]},{"k":"H7456","v":[["*",[13,13,[[0,1,1,0,1,[[40,1,1,0,1]]],[4,1,1,1,2,[[160,1,1,1,2]]],[18,2,2,2,4,[[511,1,1,2,3],[527,1,1,3,4]]],[19,3,3,4,7,[[633,1,1,4,5],[637,1,1,5,6],[646,1,1,6,7]]],[22,5,5,7,12,[[686,1,1,7,8],[687,1,1,8,9],[722,1,1,9,10],[727,1,1,10,11],[743,1,1,11,12]]],[23,1,1,12,13,[[786,1,1,12,13]]]],[1250,5140,14398,14680,16570,16659,16940,17828,17849,18545,18646,18910,19989]]],["famish",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16659]]],["famished",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1250]]],["hunger",[5,5,[[4,1,1,0,1,[[160,1,1,0,1]]],[18,1,1,1,2,[[511,1,1,1,2]]],[19,1,1,2,3,[[646,1,1,2,3]]],[22,1,1,3,4,[[727,1,1,3,4]]],[23,1,1,4,5,[[786,1,1,4,5]]]],[5140,14398,16940,18646,19989]]],["hungry",[6,6,[[18,1,1,0,1,[[527,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]],[22,4,4,2,6,[[686,1,1,2,3],[687,1,1,3,4],[722,1,1,4,5],[743,1,1,5,6]]]],[14680,16570,17828,17849,18545,18910]]]]},{"k":"H7457","v":[["*",[19,19,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[11,1,1,2,3,[[319,1,1,2,3]]],[17,4,4,3,7,[[440,1,1,3,4],[453,1,1,4,5],[457,1,1,5,6],[459,1,1,6,7]]],[18,4,4,7,11,[[584,3,3,7,10],[623,1,1,10,11]]],[19,2,2,11,13,[[652,1,1,11,12],[654,1,1,12,13]]],[22,4,4,13,17,[[707,1,1,13,14],[710,1,1,14,15],[736,2,2,15,17]]],[25,2,2,17,19,[[819,2,2,17,19]]]],[7245,8478,9719,12956,13288,13396,13446,15704,15708,15735,16348,17134,17176,18201,18265,18793,18796,20856,20865]]],["+",[2,2,[[17,1,1,0,1,[[457,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]]],[13396,15735]]],["Hungry",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15704]]],["hungerbitten",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13288]]],["hungry",[15,15,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[11,1,1,2,3,[[319,1,1,2,3]]],[17,2,2,3,5,[[440,1,1,3,4],[459,1,1,4,5]]],[18,2,2,5,7,[[584,1,1,5,6],[623,1,1,6,7]]],[19,2,2,7,9,[[652,1,1,7,8],[654,1,1,8,9]]],[22,4,4,9,13,[[707,1,1,9,10],[710,1,1,10,11],[736,2,2,11,13]]],[25,2,2,13,15,[[819,2,2,13,15]]]],[7245,8478,9719,12956,13446,15708,16348,17134,17176,18201,18265,18793,18796,20856,20865]]]]},{"k":"H7458","v":[["*",[101,88,[[0,24,17,0,17,[[11,2,1,0,1],[25,2,1,1,2],[40,12,8,2,10],[41,1,1,10,11],[42,1,1,11,12],[44,2,2,12,14],[46,4,3,14,17]]],[1,1,1,17,18,[[65,1,1,17,18]]],[4,2,2,18,20,[[180,1,1,18,19],[184,1,1,19,20]]],[7,1,1,20,21,[[232,1,1,20,21]]],[9,2,2,21,23,[[287,1,1,21,22],[290,1,1,22,23]]],[10,2,2,23,25,[[298,1,1,23,24],[308,1,1,24,25]]],[11,5,5,25,30,[[316,1,1,25,26],[318,1,1,26,27],[319,1,1,27,28],[320,1,1,28,29],[337,1,1,29,30]]],[12,1,1,30,31,[[358,1,1,30,31]]],[13,3,3,31,34,[[372,1,1,31,32],[386,1,1,32,33],[398,1,1,33,34]]],[15,2,2,34,36,[[417,1,1,34,35],[421,1,1,35,36]]],[17,1,1,36,37,[[440,1,1,36,37]]],[18,2,2,37,39,[[510,1,1,37,38],[582,1,1,38,39]]],[22,3,3,39,42,[[683,1,1,39,40],[692,1,1,40,41],[729,1,1,41,42]]],[23,33,30,42,72,[[749,1,1,42,43],[755,1,1,43,44],[758,6,5,44,49],[759,2,1,49,50],[760,1,1,50,51],[762,1,1,51,52],[765,2,2,52,54],[768,1,1,54,55],[771,2,2,55,57],[773,2,2,57,59],[776,2,2,59,61],[778,1,1,61,62],[782,2,2,62,64],[786,3,3,64,67],[788,5,4,67,71],[796,1,1,71,72]]],[24,3,3,72,75,[[798,1,1,72,73],[800,1,1,73,74],[801,1,1,74,75]]],[25,14,12,75,87,[[806,4,3,75,78],[807,2,2,78,80],[808,2,1,80,81],[813,1,1,81,82],[815,2,2,82,84],[835,1,1,84,85],[837,2,2,85,87]]],[29,2,1,87,88,[[886,2,1,87,88]]]],[308,693,1222,1225,1226,1231,1245,1249,1251,1252,1257,1291,1364,1369,1424,1433,1440,1950,5659,5782,7128,8581,8705,9022,9343,9641,9699,9711,9728,10225,10946,11310,11596,11886,12385,12526,12971,14385,15622,17752,17958,18692,19070,19248,19305,19306,19308,19309,19311,19317,19340,19405,19447,19449,19534,19604,19609,19652,19653,19755,19767,19818,19897,19904,19991,19992,19997,20022,20023,20028,20037,20282,20351,20429,20452,20558,20562,20563,20574,20575,20592,20696,20744,20752,21342,21388,21389,22492]]],["+",[1,1,[[25,1,1,0,1,[[813,1,1,0,1]]]],[20696]]],["dearth",[5,4,[[0,2,1,0,1,[[40,2,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]],[13,1,1,2,3,[[372,1,1,2,3]]],[15,1,1,3,4,[[417,1,1,3,4]]]],[1249,9641,11310,12385]]],["famine",[86,74,[[0,22,16,0,16,[[11,2,1,0,1],[25,2,1,1,2],[40,10,7,2,9],[41,1,1,9,10],[42,1,1,10,11],[44,2,2,11,13],[46,4,3,13,16]]],[7,1,1,16,17,[[232,1,1,16,17]]],[9,2,2,17,19,[[287,1,1,17,18],[290,1,1,18,19]]],[10,2,2,19,21,[[298,1,1,19,20],[308,1,1,20,21]]],[11,4,4,21,25,[[318,1,1,21,22],[319,1,1,22,23],[320,1,1,23,24],[337,1,1,24,25]]],[12,1,1,25,26,[[358,1,1,25,26]]],[13,2,2,26,28,[[386,1,1,26,27],[398,1,1,27,28]]],[17,1,1,28,29,[[440,1,1,28,29]]],[18,2,2,29,31,[[510,1,1,29,30],[582,1,1,30,31]]],[22,2,2,31,33,[[692,1,1,31,32],[729,1,1,32,33]]],[23,32,29,33,62,[[749,1,1,33,34],[755,1,1,34,35],[758,6,5,35,40],[759,2,1,40,41],[760,1,1,41,42],[762,1,1,42,43],[765,2,2,43,45],[768,1,1,45,46],[771,2,2,46,48],[773,2,2,48,50],[776,2,2,50,52],[778,1,1,52,53],[782,1,1,53,54],[786,3,3,54,57],[788,5,4,57,61],[796,1,1,61,62]]],[24,1,1,62,63,[[801,1,1,62,63]]],[25,12,10,63,73,[[806,4,3,63,66],[807,2,2,66,68],[808,2,1,68,69],[815,2,2,69,71],[837,2,2,71,73]]],[29,2,1,73,74,[[886,2,1,73,74]]]],[308,693,1222,1225,1226,1231,1245,1251,1252,1257,1291,1364,1369,1424,1433,1440,7128,8581,8705,9022,9343,9699,9711,9728,10225,10946,11596,11886,12971,14385,15622,17958,18692,19070,19248,19305,19306,19308,19309,19311,19317,19340,19405,19447,19449,19534,19604,19609,19652,19653,19755,19767,19818,19897,19991,19992,19997,20022,20023,20028,20037,20282,20452,20558,20562,20563,20574,20575,20592,20744,20752,21388,21389,22492]]],["famished",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17752]]],["hunger",[8,8,[[1,1,1,0,1,[[65,1,1,0,1]]],[4,2,2,1,3,[[180,1,1,1,2],[184,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[23,1,1,4,5,[[782,1,1,4,5]]],[24,2,2,5,7,[[798,1,1,5,6],[800,1,1,6,7]]],[25,1,1,7,8,[[835,1,1,7,8]]]],[1950,5659,5782,12526,19904,20351,20429,21342]]]]},{"k":"H7459","v":[["famine",[3,3,[[0,2,2,0,2,[[41,2,2,0,2]]],[18,1,1,2,3,[[514,1,1,2,3]]]],[1271,1285,14469]]]]},{"k":"H7460","v":[["*",[4,4,[[14,1,1,0,1,[[412,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[26,1,1,3,4,[[859,1,1,3,4]]]],[12261,12944,15603,22026]]],["trembleth",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15603]]],["trembling",[3,3,[[14,1,1,0,1,[[412,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]],[26,1,1,2,3,[[859,1,1,2,3]]]],[12261,12944,22026]]]]},{"k":"H7461","v":[["*",[5,5,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,3,3,1,4,[[479,1,1,1,2],[525,1,1,2,3],[532,1,1,3,4]]],[22,1,1,4,5,[[711,1,1,4,5]]]],[1935,13956,14640,14737,18293]]],["Fear",[1,1,[[18,1,1,0,1,[[525,1,1,0,1]]]],[14640]]],["fearfulness",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18293]]],["trembling",[3,3,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,2,2,1,3,[[479,1,1,1,2],[532,1,1,2,3]]]],[1935,13956,14737]]]]},{"k":"H7462","v":[["*",[171,142,[[0,23,20,0,20,[[3,1,1,0,1],[12,4,2,1,3],[25,2,1,3,4],[28,2,2,4,6],[29,2,2,6,8],[35,1,1,8,9],[36,4,4,9,13],[40,2,2,13,15],[45,2,2,15,17],[46,1,1,17,18],[47,1,1,18,19],[48,1,1,19,20]]],[1,4,4,20,24,[[51,2,2,20,22],[52,1,1,22,23],[83,1,1,23,24]]],[3,2,2,24,26,[[130,1,1,24,25],[143,1,1,25,26]]],[6,1,1,26,27,[[224,1,1,26,27]]],[8,7,7,27,34,[[251,1,1,27,28],[252,3,3,28,31],[256,1,1,31,32],[260,2,2,32,34]]],[9,2,2,34,36,[[271,1,1,34,35],[273,1,1,35,36]]],[10,1,1,36,37,[[312,1,1,36,37]]],[12,3,3,37,40,[[348,1,1,37,38],[354,1,1,38,39],[364,1,1,39,40]]],[13,1,1,40,41,[[384,1,1,40,41]]],[17,3,3,41,44,[[436,1,1,41,42],[459,2,2,42,44]]],[18,8,8,44,52,[[500,1,1,44,45],[505,1,1,45,46],[514,1,1,46,47],[526,1,1,47,48],[555,2,2,48,50],[557,2,2,50,52]]],[19,6,6,52,58,[[637,1,1,52,53],[640,1,1,53,54],[642,1,1,54,55],[649,1,1,55,56],[655,1,1,56,57],[656,1,1,57,58]]],[20,1,1,58,59,[[670,1,1,58,59]]],[21,7,6,59,65,[[671,3,2,59,61],[672,1,1,61,62],[674,1,1,62,63],[676,2,2,63,65]]],[22,16,15,65,80,[[683,1,1,65,66],[689,1,1,66,67],[691,1,1,67,68],[692,1,1,68,69],[705,1,1,69,70],[708,1,1,70,71],[709,1,1,71,72],[718,2,1,72,73],[722,2,2,73,75],[727,1,1,75,76],[734,1,1,76,77],[739,1,1,77,78],[741,1,1,78,79],[743,1,1,79,80]]],[23,27,22,80,102,[[746,2,2,80,82],[747,2,1,82,83],[750,2,1,83,84],[754,1,1,84,85],[756,1,1,85,86],[761,1,1,86,87],[766,2,1,87,88],[767,5,3,88,91],[769,3,3,91,94],[775,1,1,94,95],[777,1,1,95,96],[787,1,1,96,97],[793,1,1,97,98],[794,3,3,98,101],[795,1,1,101,102]]],[25,32,16,102,118,[[835,31,15,102,117],[838,1,1,117,118]]],[27,3,3,118,121,[[865,1,1,118,119],[870,1,1,119,120],[873,1,1,120,121]]],[29,2,2,121,123,[[879,1,1,121,122],[881,1,1,122,123]]],[31,1,1,123,124,[[891,1,1,123,124]]],[32,4,3,124,127,[[897,2,2,124,126],[899,2,1,126,127]]],[33,1,1,127,128,[[902,1,1,127,128]]],[35,3,3,128,131,[[907,2,2,128,130],[908,1,1,130,131]]],[37,13,11,131,142,[[920,2,2,131,133],[921,9,8,133,141],[923,2,1,141,142]]]],[81,325,326,712,802,804,861,866,1064,1085,1095,1096,1099,1197,1213,1418,1420,1423,1466,1497,1571,1573,1580,2499,4141,4571,6929,7606,7633,7652,7658,7779,7868,7877,8134,8187,9497,10675,10869,11138,11558,12883,13438,13457,14236,14308,14453,14662,15184,15185,15199,15211,16677,16767,16821,17039,17203,17227,17534,17544,17545,17570,17587,17616,17617,17756,17891,17926,17958,18161,18240,18254,18431,18553,18561,18645,18764,18848,18877,18922,18973,18981,19017,19092,19222,19259,19373,19476,19485,19486,19488,19568,19569,19570,19701,19787,20009,20146,20172,20185,20210,20235,21315,21316,21318,21320,21321,21322,21323,21325,21326,21327,21328,21329,21331,21332,21336,21421,22149,22210,22253,22366,22407,22565,22637,22638,22678,22730,22811,22812,22833,23018,23019,23031,23032,23033,23035,23036,23037,23043,23044,23066]]],["+",[23,22,[[0,6,6,0,6,[[29,1,1,0,1],[35,1,1,1,2],[36,1,1,2,3],[45,2,2,3,5],[46,1,1,5,6]]],[1,1,1,6,7,[[52,1,1,6,7]]],[3,1,1,7,8,[[130,1,1,7,8]]],[8,2,2,8,10,[[252,2,2,8,10]]],[9,2,2,10,12,[[271,1,1,10,11],[273,1,1,11,12]]],[12,2,2,12,14,[[348,1,1,12,13],[354,1,1,13,14]]],[20,1,1,14,15,[[670,1,1,14,15]]],[21,1,1,15,16,[[671,1,1,15,16]]],[23,2,2,16,18,[[761,1,1,16,17],[767,1,1,17,18]]],[25,2,2,18,20,[[835,2,2,18,20]]],[37,3,2,20,22,[[921,3,2,20,22]]]],[866,1064,1095,1418,1420,1423,1580,4141,7633,7652,8134,8187,10675,10869,17534,17545,19373,19486,21315,21323,23032,23035]]],["Feed",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22678]]],["Shepherd",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15199]]],["broken",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18981]]],["companion",[2,2,[[19,2,2,0,2,[[640,1,1,0,1],[655,1,1,1,2]]]],[16767,17203]]],["company",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17227]]],["devour",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15211]]],["eat",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21332]]],["entreateth",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13457]]],["fed",[8,7,[[0,3,3,0,3,[[40,2,2,0,2],[47,1,1,2,3]]],[12,1,1,3,4,[[364,1,1,3,4]]],[18,2,2,4,6,[[514,1,1,4,5],[555,1,1,5,6]]],[25,2,1,6,7,[[835,2,1,6,7]]]],[1197,1213,1466,11138,14453,15185,21321]]],["feed",[43,41,[[0,4,4,0,4,[[28,1,1,0,1],[29,1,1,1,2],[36,2,2,2,4]]],[1,1,1,4,5,[[83,1,1,4,5]]],[17,1,1,5,6,[[459,1,1,5,6]]],[18,3,3,6,9,[[505,1,1,6,7],[526,1,1,7,8],[555,1,1,8,9]]],[19,1,1,9,10,[[637,1,1,9,10]]],[21,2,2,10,12,[[674,1,1,10,11],[676,1,1,11,12]]],[22,9,9,12,21,[[683,1,1,12,13],[689,1,1,13,14],[692,1,1,14,15],[705,1,1,15,16],[708,1,1,16,17],[718,1,1,17,18],[727,1,1,18,19],[739,1,1,19,20],[743,1,1,20,21]]],[23,4,4,21,25,[[747,1,1,21,22],[750,1,1,22,23],[767,1,1,23,24],[794,1,1,24,25]]],[25,10,8,25,33,[[835,10,8,25,33]]],[27,2,2,33,35,[[865,1,1,33,34],[870,1,1,34,35]]],[31,1,1,35,36,[[891,1,1,35,36]]],[32,2,2,36,38,[[897,1,1,36,37],[899,1,1,37,38]]],[35,2,2,38,40,[[907,1,1,38,39],[908,1,1,39,40]]],[37,1,1,40,41,[[921,1,1,40,41]]]],[802,861,1096,1099,2499,13438,14308,14662,15184,16677,17587,17616,17756,17891,17958,18161,18240,18431,18645,18848,18922,19017,19092,19488,20185,21315,21316,21323,21326,21327,21328,21329,21336,22149,22210,22565,22637,22678,22812,22833,23037]]],["feedest",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17544]]],["feedeth",[4,4,[[21,2,2,0,2,[[672,1,1,0,1],[676,1,1,1,2]]],[22,1,1,2,3,[[722,1,1,2,3]]],[27,1,1,3,4,[[873,1,1,3,4]]]],[17570,17617,18553,22253]]],["feeding",[2,2,[[0,1,1,0,1,[[36,1,1,0,1]]],[17,1,1,1,2,[[436,1,1,1,2]]]],[1085,12883]]],["friend",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6929]]],["friendship",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17039]]],["herdmen",[7,4,[[0,6,3,0,3,[[12,4,2,0,2],[25,2,1,2,3]]],[8,1,1,3,4,[[256,1,1,3,4]]]],[325,326,712,7779]]],["keeper",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[81]]],["keepeth",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7606]]],["keeping",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7877]]],["kept",[1,1,[[0,1,1,0,1,[[28,1,1,0,1]]]],[804]]],["on",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16821]]],["pastors",[7,7,[[23,7,7,0,7,[[746,1,1,0,1],[747,1,1,1,2],[754,1,1,2,3],[756,1,1,3,4],[766,1,1,4,5],[767,2,2,5,7]]]],[18973,19017,19222,19259,19476,19485,19486]]],["shepherd",[25,23,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[143,1,1,1,2]]],[10,1,1,2,3,[[312,1,1,2,3]]],[13,1,1,3,4,[[384,1,1,3,4]]],[18,1,1,4,5,[[500,1,1,4,5]]],[22,3,3,5,8,[[718,1,1,5,6],[722,1,1,6,7],[741,1,1,7,8]]],[23,5,5,8,13,[[775,1,1,8,9],[787,1,1,9,10],[793,1,1,10,11],[794,1,1,11,12],[795,1,1,12,13]]],[25,6,5,13,18,[[835,5,4,13,17],[838,1,1,17,18]]],[29,1,1,18,19,[[881,1,1,18,19]]],[37,5,4,19,23,[[920,1,1,19,20],[921,2,2,20,22],[923,2,1,22,23]]]],[1497,4571,9497,11558,14236,18431,18561,18877,19701,20009,20146,20210,20235,21318,21321,21325,21336,21421,22407,23018,23043,23044,23066]]],["shepherd's",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7658]]],["shepherds",[31,26,[[1,2,2,0,2,[[51,2,2,0,2]]],[8,1,1,2,3,[[260,1,1,2,3]]],[22,3,3,3,6,[[691,1,1,3,4],[709,1,1,4,5],[734,1,1,5,6]]],[23,7,7,6,13,[[750,1,1,6,7],[767,1,1,7,8],[769,3,3,8,11],[777,1,1,11,12],[794,1,1,12,13]]],[25,10,5,13,18,[[835,10,5,13,18]]],[29,1,1,18,19,[[879,1,1,18,19]]],[32,1,1,19,20,[[897,1,1,19,20]]],[33,1,1,20,21,[[902,1,1,20,21]]],[35,1,1,21,22,[[907,1,1,21,22]]],[37,4,4,22,26,[[920,1,1,22,23],[921,3,3,23,26]]]],[1571,1573,7868,17926,18254,18764,19092,19488,19568,19569,19570,19787,20172,21315,21320,21321,21322,21323,22366,22638,22730,22811,23019,23031,23033,23036]]],["shepherds'",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17545]]],["up",[2,2,[[23,1,1,0,1,[[766,1,1,0,1]]],[25,1,1,1,2,[[835,1,1,1,2]]]],[19476,21331]]]]},{"k":"H7463","v":[["friend",[3,3,[[9,2,2,0,2,[[281,1,1,0,1],[282,1,1,1,2]]],[10,1,1,2,3,[[294,1,1,2,3]]]],[8426,8442,8849]]]]},{"k":"H7464","v":[["*",[3,3,[[6,2,2,0,2,[[221,2,2,0,2]]],[18,1,1,2,3,[[522,1,1,2,3]]]],[6866,6867,14611]]],["companions",[2,2,[[6,1,1,0,1,[[221,1,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]]],[6867,14611]]],["fellows",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6866]]]]},{"k":"H7465","v":[["broken",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17132]]]]},{"k":"H7466","v":[["Reu",[5,5,[[0,4,4,0,4,[[10,4,4,0,4]]],[12,1,1,4,5,[[338,1,1,4,5]]]],[284,285,286,287,10277]]]]},{"k":"H7467","v":[["*",[11,10,[[0,5,4,0,4,[[35,5,4,0,4]]],[1,1,1,4,5,[[51,1,1,4,5]]],[3,2,2,5,7,[[118,1,1,5,6],[126,1,1,6,7]]],[12,3,3,7,10,[[338,2,2,7,9],[346,1,1,9,10]]]],[1044,1050,1053,1057,1572,3672,4017,10287,10289,10623]]],["Raguel",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[4017]]],["Reuel",[10,9,[[0,5,4,0,4,[[35,5,4,0,4]]],[1,1,1,4,5,[[51,1,1,4,5]]],[3,1,1,5,6,[[118,1,1,5,6]]],[12,3,3,6,9,[[338,2,2,6,8],[346,1,1,8,9]]]],[1044,1050,1053,1057,1572,3672,10287,10289,10623]]]]},{"k":"H7468","v":[["*",[6,6,[[1,1,1,0,1,[[60,1,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]],[22,2,2,2,4,[[712,2,2,2,4]]],[23,1,1,4,5,[[753,1,1,4,5]]],[37,1,1,5,6,[[921,1,1,5,6]]]],[1808,12721,18318,18319,19195,23037]]],["another",[2,2,[[16,1,1,0,1,[[426,1,1,0,1]]],[37,1,1,1,2,[[921,1,1,1,2]]]],[12721,23037]]],["mate",[2,2,[[22,2,2,0,2,[[712,2,2,0,2]]]],[18318,18319]]],["neighbour",[2,2,[[1,1,1,0,1,[[60,1,1,0,1]]],[23,1,1,1,2,[[753,1,1,1,2]]]],[1808,19195]]]]},{"k":"H7469","v":[["vexation",[7,7,[[20,7,7,0,7,[[659,1,1,0,1],[660,3,3,1,4],[662,2,2,4,6],[664,1,1,6,7]]]],[17329,17344,17350,17359,17385,17387,17426]]]]},{"k":"H7470","v":[["*",[2,2,[[14,2,2,0,2,[[407,1,1,0,1],[409,1,1,1,2]]]],[12151,12191]]],["pleasure",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12151]]],["will",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12191]]]]},{"k":"H7471","v":[["pastures",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8867]]]]},{"k":"H7472","v":[["Rei",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8725]]]]},{"k":"H7473","v":[["*",[2,2,[[22,1,1,0,1,[[716,1,1,0,1]]],[37,1,1,1,2,[[921,1,1,1,2]]]],[18402,23045]]],["shepherd",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23045]]],["shepherd's",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18402]]]]},{"k":"H7474","v":[["love",[9,9,[[21,9,9,0,9,[[671,2,2,0,2],[672,3,3,2,5],[674,2,2,5,7],[675,1,1,7,8],[676,1,1,8,9]]]],[17546,17552,17556,17564,17567,17583,17589,17600,17618]]]]},{"k":"H7475","v":[["vexation",[3,3,[[20,3,3,0,3,[[659,1,1,0,1],[660,1,1,1,2],[662,1,1,2,3]]]],[17332,17355,17397]]]]},{"k":"H7476","v":[["*",[6,6,[[26,6,6,0,6,[[851,2,2,0,2],[853,1,1,2,3],[854,2,2,3,5],[856,1,1,5,6]]]],[21787,21788,21856,21880,21884,21961]]],["cogitations",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21961]]],["thoughts",[5,5,[[26,5,5,0,5,[[851,2,2,0,2],[853,1,1,2,3],[854,2,2,3,5]]]],[21787,21788,21856,21880,21884]]]]},{"k":"H7477","v":[["shaken",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22702]]]]},{"k":"H7478","v":[["trembling",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23047]]]]},{"k":"H7479","v":[["mufflers",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17726]]]]},{"k":"H7480","v":[["Reelaiah",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12029]]]]},{"k":"H7481","v":[["*",[13,13,[[8,3,3,0,3,[[236,1,1,0,1],[237,1,1,1,2],[242,1,1,2,3]]],[9,1,1,3,4,[[288,1,1,3,4]]],[12,1,1,4,5,[[353,1,1,4,5]]],[17,3,3,5,8,[[472,2,2,5,7],[475,1,1,7,8]]],[18,4,4,8,12,[[495,1,1,8,9],[506,1,1,9,10],[573,1,1,10,11],[575,1,1,11,12]]],[25,1,1,12,13,[[828,1,1,12,13]]]],[7218,7250,7362,8616,10852,13773,13774,13873,14131,14311,15476,15497,21156]]],["fret",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7218]]],["roar",[3,3,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,2,2,1,3,[[573,1,1,1,2],[575,1,1,2,3]]]],[10852,15476,15497]]],["thunder",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[17,1,1,1,2,[[475,1,1,1,2]]]],[7250,13873]]],["thundered",[3,3,[[8,1,1,0,1,[[242,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]]],[7362,8616,14131]]],["thundereth",[3,3,[[17,2,2,0,2,[[472,2,2,0,2]]],[18,1,1,2,3,[[506,1,1,2,3]]]],[13773,13774,14311]]],["troubled",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21156]]]]},{"k":"H7482","v":[["thunder",[6,6,[[17,2,2,0,2,[[461,1,1,0,1],[474,1,1,1,2]]],[18,3,3,2,5,[[554,1,1,2,3],[558,1,1,3,4],[581,1,1,4,5]]],[22,1,1,5,6,[[707,1,1,5,6]]]],[13481,13859,15111,15224,15578,18199]]]]},{"k":"H7483","v":[["thunder",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13853]]]]},{"k":"H7484","v":[["Raamah",[5,3,[[0,2,1,0,1,[[9,2,1,0,1]]],[12,2,1,1,2,[[338,2,1,1,2]]],[25,1,1,2,3,[[828,1,1,2,3]]]],[241,10261,21143]]]]},{"k":"H7485","v":[["Raamiah",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12427]]]]},{"k":"H7486","v":[["*",[5,5,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,2,2,1,3,[[50,1,1,1,2],[61,1,1,2,3]]],[3,2,2,3,5,[[149,2,2,3,5]]]],[1431,1543,1853,4763,4765]]],["+",[3,3,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,2,2,1,3,[[149,2,2,1,3]]]],[1853,4763,4765]]],["Raamses",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1543]]],["Rameses",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1431]]]]},{"k":"H7487","v":[["flourishing",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21841]]]]},{"k":"H7488","v":[["*",[20,20,[[4,1,1,0,1,[[164,1,1,0,1]]],[10,1,1,1,2,[[304,1,1,1,2]]],[11,2,2,2,4,[[328,1,1,2,3],[329,1,1,3,4]]],[13,1,1,4,5,[[394,1,1,4,5]]],[17,1,1,5,6,[[450,1,1,5,6]]],[18,4,4,6,10,[[514,1,1,6,7],[529,1,1,7,8],[569,2,2,8,10]]],[21,1,1,10,11,[[671,1,1,10,11]]],[22,1,1,11,12,[[735,1,1,11,12]]],[23,6,6,12,18,[[746,1,1,12,13],[747,2,2,13,15],[755,1,1,15,16],[761,2,2,16,18]]],[25,1,1,18,19,[[807,1,1,18,19]]],[27,1,1,19,20,[[875,1,1,19,20]]]],[5242,9241,9967,9993,11768,13235,14485,14718,15421,15425,17553,18770,18985,19008,19015,19242,19359,19365,20576,22290]]],["flourishing",[1,1,[[18,1,1,0,1,[[569,1,1,0,1]]]],[15425]]],["fresh",[1,1,[[18,1,1,0,1,[[569,1,1,0,1]]]],[15421]]],["green",[18,18,[[4,1,1,0,1,[[164,1,1,0,1]]],[10,1,1,1,2,[[304,1,1,1,2]]],[11,2,2,2,4,[[328,1,1,2,3],[329,1,1,3,4]]],[13,1,1,4,5,[[394,1,1,4,5]]],[17,1,1,5,6,[[450,1,1,5,6]]],[18,2,2,6,8,[[514,1,1,6,7],[529,1,1,7,8]]],[21,1,1,8,9,[[671,1,1,8,9]]],[22,1,1,9,10,[[735,1,1,9,10]]],[23,6,6,10,16,[[746,1,1,10,11],[747,2,2,11,13],[755,1,1,13,14],[761,2,2,14,16]]],[25,1,1,16,17,[[807,1,1,16,17]]],[27,1,1,17,18,[[875,1,1,17,18]]]],[5242,9241,9967,9993,11768,13235,14485,14718,17553,18770,18985,19008,19015,19242,19359,19365,20576,22290]]]]},{"k":"H7489","v":[["*",[98,95,[[0,9,9,0,9,[[18,2,2,0,2],[20,2,2,2,4],[30,1,1,4,5],[37,1,1,5,6],[42,1,1,6,7],[43,1,1,7,8],[47,1,1,8,9]]],[1,2,2,9,11,[[54,2,2,9,11]]],[2,1,1,11,12,[[94,1,1,11,12]]],[3,4,4,12,16,[[127,1,1,12,13],[132,1,1,13,14],[136,1,1,14,15],[138,1,1,15,16]]],[4,5,5,16,21,[[167,2,2,16,18],[178,1,1,18,19],[180,2,2,19,21]]],[5,2,2,21,23,[[210,2,2,21,23]]],[6,1,1,23,24,[[229,1,1,23,24]]],[7,1,1,24,25,[[232,1,1,24,25]]],[8,5,4,25,29,[[236,1,1,25,26],[247,2,1,26,27],[260,1,1,27,28],[261,1,1,28,29]]],[9,1,1,29,30,[[285,1,1,29,30]]],[10,3,3,30,33,[[304,1,1,30,31],[306,1,1,31,32],[307,1,1,32,33]]],[11,1,1,33,34,[[333,1,1,33,34]]],[12,3,2,34,36,[[353,1,1,34,35],[358,2,1,35,36]]],[15,3,3,36,39,[[414,2,2,36,38],[425,1,1,38,39]]],[17,3,3,39,42,[[443,1,1,39,40],[455,1,1,40,41],[469,1,1,41,42]]],[18,15,15,42,57,[[479,1,1,42,43],[492,1,1,43,44],[499,1,1,44,45],[503,1,1,45,46],[504,1,1,46,47],[514,3,3,47,50],[521,1,1,50,51],[541,1,1,51,52],[551,1,1,52,53],[569,1,1,53,54],[571,1,1,54,55],[582,1,1,55,56],[596,1,1,56,57]]],[19,7,7,57,64,[[631,1,1,57,58],[638,1,1,58,59],[644,1,1,59,60],[645,1,1,60,61],[651,3,3,61,64]]],[22,12,11,64,75,[[679,2,2,64,66],[686,1,1,66,67],[687,1,1,67,68],[689,1,1,68,69],[692,1,1,69,70],[702,2,1,70,71],[709,1,1,71,72],[719,1,1,72,73],[737,1,1,73,74],[743,1,1,74,75]]],[23,14,14,75,89,[[748,1,1,75,76],[751,1,1,76,77],[754,1,1,77,78],[755,1,1,78,79],[757,1,1,79,80],[759,1,1,80,81],[760,1,1,81,82],[764,1,1,82,83],[767,1,1,83,84],[769,2,2,84,86],[775,1,1,86,87],[782,1,1,87,88],[784,1,1,88,89]]],[31,1,1,89,90,[[892,1,1,89,90]]],[32,3,3,90,93,[[895,1,1,90,91],[896,1,1,91,92],[897,1,1,92,93]]],[35,1,1,93,94,[[906,1,1,93,94]]],[37,1,1,94,95,[[918,1,1,94,95]]]],[464,466,524,525,880,1129,1296,1329,1468,1654,1655,2834,4035,4209,4326,4409,5328,5329,5572,5665,5667,6491,6496,7047,7148,7220,7485,7895,7926,8518,9227,9308,9337,10130,10842,10951,12310,12317,12679,13049,13352,13707,13954,14091,14220,14278,14287,14451,14458,14459,14573,14852,15051,15422,15447,15621,16013,16506,16703,16877,16925,17087,17097,17098,17658,17670,17816,17846,17893,17948,18114,18252,18474,18815,18922,19049,19145,19206,19242,19289,19327,19348,19435,19498,19540,19563,19719,19904,19945,22569,22612,22626,22639,22799,22990]]],["+",[22,19,[[0,5,5,0,5,[[18,1,1,0,1],[20,1,1,1,2],[30,1,1,2,3],[37,1,1,3,4],[47,1,1,4,5]]],[3,2,2,5,7,[[132,1,1,5,6],[138,1,1,6,7]]],[6,1,1,7,8,[[229,1,1,7,8]]],[8,3,2,8,10,[[247,2,1,8,9],[260,1,1,9,10]]],[12,2,1,10,11,[[358,2,1,10,11]]],[19,2,2,11,13,[[638,1,1,11,12],[651,1,1,12,13]]],[22,3,2,13,15,[[702,2,1,13,14],[737,1,1,14,15]]],[23,2,2,15,17,[[769,1,1,15,16],[784,1,1,16,17]]],[31,1,1,17,18,[[892,1,1,17,18]]],[32,1,1,18,19,[[897,1,1,18,19]]]],[464,524,880,1129,1468,4209,4409,7047,7485,7895,10951,16703,17097,18114,18815,19540,19945,22569,22639]]],["Associate",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17816]]],["afflict",[2,2,[[18,1,1,0,1,[[521,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[14573,19719]]],["afflicted",[3,3,[[3,1,1,0,1,[[127,1,1,0,1]]],[7,1,1,1,2,[[232,1,1,1,2]]],[32,1,1,2,3,[[896,1,1,2,3]]]],[4035,7148,22626]]],["break",[2,2,[[18,1,1,0,1,[[479,1,1,0,1]]],[23,1,1,1,2,[[759,1,1,1,2]]]],[13954,19327]]],["broken",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19242]]],["do",[1,1,[[12,1,1,0,1,[[353,1,1,0,1]]]],[10842]]],["doer",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16877]]],["doers",[2,2,[[17,1,1,0,1,[[443,1,1,0,1]]],[18,1,1,1,2,[[503,1,1,1,2]]]],[13049,14278]]],["entreated",[2,2,[[1,1,1,0,1,[[54,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]]],[1654,5572]]],["evil",[20,20,[[0,1,1,0,1,[[43,1,1,0,1]]],[1,1,1,1,2,[[54,1,1,1,2]]],[2,1,1,2,3,[[94,1,1,2,3]]],[4,3,3,3,6,[[167,1,1,3,4],[180,2,2,4,6]]],[5,1,1,6,7,[[210,1,1,6,7]]],[10,2,2,7,9,[[304,1,1,7,8],[307,1,1,8,9]]],[18,1,1,9,10,[[514,1,1,9,10]]],[19,2,2,10,12,[[651,2,2,10,12]]],[22,2,2,12,14,[[679,1,1,12,13],[719,1,1,13,14]]],[23,5,5,14,19,[[748,1,1,14,15],[754,1,1,15,16],[757,1,1,16,17],[769,1,1,17,18],[782,1,1,18,19]]],[35,1,1,19,20,[[906,1,1,19,20]]]],[1329,1655,2834,5328,5665,5667,6491,9227,9337,14458,17087,17098,17670,18474,19049,19206,19289,19563,19904,22799]]],["evildoer",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17846]]],["evildoers",[9,9,[[18,4,4,0,4,[[514,2,2,0,2],[571,1,1,2,3],[596,1,1,3,4]]],[22,3,3,4,7,[[679,1,1,4,5],[692,1,1,5,6],[709,1,1,6,7]]],[23,2,2,7,9,[[764,1,1,7,8],[767,1,1,8,9]]]],[14451,14459,15447,16013,17658,17948,18252,19435,19498]]],["friendly",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16925]]],["grieved",[4,4,[[4,1,1,0,1,[[167,1,1,0,1]]],[8,1,1,1,2,[[236,1,1,1,2]]],[15,2,2,2,4,[[414,1,1,2,3],[425,1,1,3,4]]]],[5329,7220,12317,12679]]],["grievous",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[525]]],["harm",[2,2,[[8,1,1,0,1,[[261,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[7926,15621]]],["hurt",[4,4,[[5,1,1,0,1,[[210,1,1,0,1]]],[18,1,1,1,2,[[492,1,1,1,2]]],[22,2,2,2,4,[[689,1,1,2,3],[743,1,1,3,4]]]],[6496,14091,17893,18922]]],["ill",[3,3,[[0,1,1,0,1,[[42,1,1,0,1]]],[17,1,1,1,2,[[455,1,1,1,2]]],[32,1,1,2,3,[[895,1,1,2,3]]]],[1296,13352,22612]]],["mischief",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16506]]],["pieces",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13707]]],["punish",[1,1,[[37,1,1,0,1,[[918,1,1,0,1]]]],[22990]]],["sad",[1,1,[[15,1,1,0,1,[[414,1,1,0,1]]]],[12310]]],["vexed",[1,1,[[3,1,1,0,1,[[136,1,1,0,1]]]],[4326]]],["wicked",[4,4,[[18,4,4,0,4,[[499,1,1,0,1],[504,1,1,1,2],[541,1,1,2,3],[569,1,1,3,4]]]],[14220,14287,14852,15422]]],["wickedly",[2,2,[[11,1,1,0,1,[[333,1,1,0,1]]],[18,1,1,1,2,[[551,1,1,1,2]]]],[10130,15051]]],["worse",[5,5,[[0,1,1,0,1,[[18,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]],[10,1,1,2,3,[[306,1,1,2,3]]],[23,2,2,3,5,[[751,1,1,3,4],[760,1,1,4,5]]]],[466,8518,9308,19145,19348]]]]},{"k":"H7490","v":[["*",[2,1,[[26,2,1,0,1,[[851,2,1,0,1]]]],[21798]]],["breaketh",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21798]]],["bruise",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21798]]]]},{"k":"H7491","v":[["*",[5,5,[[17,1,1,0,1,[[471,1,1,0,1]]],[18,2,2,1,3,[[542,2,2,1,3]]],[19,1,1,3,4,[[630,1,1,3,4]]],[22,1,1,4,5,[[723,1,1,4,5]]]],[13764,14871,14872,16475,18569]]],["distil",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13764]]],["down",[2,2,[[19,1,1,0,1,[[630,1,1,0,1]]],[22,1,1,1,2,[[723,1,1,1,2]]]],[16475,18569]]],["drop",[2,2,[[18,2,2,0,2,[[542,2,2,0,2]]]],[14871,14872]]]]},{"k":"H7492","v":[["*",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[6,1,1,1,2,[[220,1,1,1,2]]]],[1926,6819]]],["pieces",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1926]]],["vexed",[1,1,[[6,1,1,0,1,[[220,1,1,0,1]]]],[6819]]]]},{"k":"H7493","v":[["*",[30,30,[[6,1,1,0,1,[[215,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,1,1,2,3,[[474,1,1,2,3]]],[18,6,6,3,9,[[495,1,1,3,4],[523,1,1,4,5],[537,1,1,5,6],[545,1,1,6,7],[549,1,1,7,8],[554,1,1,8,9]]],[22,3,3,9,12,[[691,1,1,9,10],[692,1,1,10,11],[702,1,1,11,12]]],[23,6,6,12,18,[[748,1,1,12,13],[752,1,1,13,14],[754,1,1,14,15],[793,1,1,15,16],[794,1,1,16,17],[795,1,1,17,18]]],[25,5,5,18,23,[[827,2,2,18,20],[828,1,1,20,21],[832,1,1,21,22],[839,1,1,22,23]]],[28,2,2,23,25,[[877,1,1,23,24],[878,1,1,24,25]]],[29,1,1,25,26,[[887,1,1,25,26]]],[33,1,1,26,27,[[900,1,1,26,27]]],[36,3,3,27,30,[[910,3,3,27,30]]]],[6627,8610,13854,14125,14617,14809,14908,15016,15111,17919,17944,18113,19051,19169,19211,20148,20212,20241,21110,21115,21149,21246,21445,22321,22359,22496,22689,22861,22862,22876]]],["+",[3,3,[[36,3,3,0,3,[[910,3,3,0,3]]]],[22861,22862,22876]]],["afraid",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13854]]],["moved",[2,2,[[23,2,2,0,2,[[793,1,1,0,1],[794,1,1,1,2]]]],[20148,20212]]],["quake",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22689]]],["remove",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17919]]],["shake",[11,11,[[18,2,2,0,2,[[523,1,1,0,1],[549,1,1,1,2]]],[22,2,2,2,4,[[692,1,1,2,3],[702,1,1,3,4]]],[25,5,5,4,9,[[827,2,2,4,6],[828,1,1,6,7],[832,1,1,7,8],[839,1,1,8,9]]],[28,1,1,9,10,[[878,1,1,9,10]]],[29,1,1,10,11,[[887,1,1,10,11]]]],[14617,15016,17944,18113,21110,21115,21149,21246,21445,22359,22496]]],["shook",[2,2,[[18,2,2,0,2,[[545,1,1,0,1],[554,1,1,1,2]]]],[14908,15111]]],["tremble",[4,4,[[18,1,1,0,1,[[537,1,1,0,1]]],[23,2,2,1,3,[[754,1,1,1,2],[795,1,1,2,3]]],[28,1,1,3,4,[[877,1,1,3,4]]]],[14809,19211,20241,22321]]],["trembled",[5,5,[[6,1,1,0,1,[[215,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]],[23,2,2,3,5,[[748,1,1,3,4],[752,1,1,4,5]]]],[6627,8610,14125,19051,19169]]]]},{"k":"H7494","v":[["*",[17,16,[[10,3,2,0,2,[[309,3,2,0,2]]],[17,2,2,2,4,[[474,1,1,2,3],[476,1,1,3,4]]],[22,2,2,4,6,[[687,1,1,4,5],[707,1,1,5,6]]],[23,2,2,6,8,[[754,1,1,6,7],[791,1,1,7,8]]],[25,5,5,8,13,[[804,2,2,8,10],[813,1,1,10,11],[838,1,1,11,12],[839,1,1,12,13]]],[29,1,1,13,14,[[879,1,1,13,14]]],[33,1,1,14,15,[[902,1,1,14,15]]],[37,1,1,15,16,[[924,1,1,15,16]]]],[9398,9399,13858,13917,17834,18199,19223,20076,20514,20515,20698,21404,21444,22365,22714,23073]]],["+",[1,1,[[23,1,1,0,1,[[791,1,1,0,1]]]],[20076]]],["commotion",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19223]]],["earthquake",[6,5,[[10,3,2,0,2,[[309,3,2,0,2]]],[22,1,1,2,3,[[707,1,1,2,3]]],[29,1,1,3,4,[[879,1,1,3,4]]],[37,1,1,4,5,[[924,1,1,4,5]]]],[9398,9399,18199,22365,23073]]],["fierceness",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13858]]],["noise",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17834]]],["quaking",[1,1,[[25,1,1,0,1,[[813,1,1,0,1]]]],[20698]]],["rattling",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22714]]],["rushing",[2,2,[[25,2,2,0,2,[[804,2,2,0,2]]]],[20514,20515]]],["shaking",[3,3,[[17,1,1,0,1,[[476,1,1,0,1]]],[25,2,2,1,3,[[838,1,1,1,2],[839,1,1,2,3]]]],[13917,21404,21444]]]]},{"k":"H7495","v":[["*",[67,62,[[0,3,2,0,2,[[19,1,1,0,1],[49,2,1,1,2]]],[1,3,2,2,4,[[64,1,1,2,3],[70,2,1,3,4]]],[2,4,4,4,8,[[102,2,2,4,6],[103,2,2,6,8]]],[3,1,1,8,9,[[128,1,1,8,9]]],[4,3,3,9,12,[[180,2,2,9,11],[184,1,1,11,12]]],[8,1,1,12,13,[[241,1,1,12,13]]],[10,1,1,13,14,[[308,1,1,13,14]]],[11,6,6,14,20,[[314,2,2,14,16],[320,1,1,16,17],[321,1,1,17,18],[332,2,2,18,20]]],[13,4,4,20,24,[[373,1,1,20,21],[382,1,1,21,22],[388,1,1,22,23],[396,1,1,23,24]]],[17,2,2,24,26,[[440,1,1,24,25],[448,1,1,25,26]]],[18,7,7,26,33,[[483,1,1,26,27],[507,1,1,27,28],[518,1,1,28,29],[537,1,1,29,30],[580,1,1,30,31],[584,1,1,31,32],[624,1,1,32,33]]],[20,1,1,33,34,[[661,1,1,33,34]]],[22,7,6,34,40,[[684,1,1,34,35],[697,2,1,35,36],[708,1,1,36,37],[731,1,1,37,38],[735,2,2,38,40]]],[23,13,11,40,51,[[747,1,1,40,41],[750,1,1,41,42],[752,2,2,42,44],[759,1,1,44,45],[761,2,1,45,46],[763,1,1,46,47],[774,1,1,47,48],[777,1,1,48,49],[795,3,2,49,51]]],[24,1,1,51,52,[[798,1,1,51,52]]],[25,4,4,52,56,[[835,1,1,52,53],[848,3,3,53,56]]],[27,5,5,56,61,[[866,1,1,56,57],[867,1,1,57,58],[868,1,1,58,59],[872,1,1,59,60],[875,1,1,60,61]]],[37,1,1,61,62,[[921,1,1,61,62]]]],[512,1508,1946,2096,3070,3089,3114,3159,4072,5638,5646,5797,7334,9371,9572,9573,9756,9771,10103,10106,11338,11521,11650,11847,12969,13157,13987,14321,14546,14809,15552,15719,16354,17362,17779,18026,18243,18716,18783,18784,19024,19103,19164,19175,19333,19371,19418,19684,19781,20220,20221,20345,21317,21687,21688,21690,22165,22168,22179,22243,22286,23044]]],["+",[8,7,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,2,1,1,2,[[70,2,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[13,2,2,3,5,[[373,1,1,3,4],[396,1,1,4,5]]],[23,2,2,5,7,[[752,1,1,5,6],[795,1,1,6,7]]]],[512,2096,9371,11338,11847,19164,20221]]],["Heal",[2,2,[[3,1,1,0,1,[[128,1,1,0,1]]],[23,1,1,1,2,[[761,1,1,1,2]]]],[4072,19371]]],["cure",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19781]]],["heal",[18,17,[[4,1,1,0,1,[[184,1,1,0,1]]],[11,2,2,1,3,[[332,2,2,1,3]]],[18,3,3,3,6,[[483,1,1,3,4],[518,1,1,4,5],[537,1,1,5,6]]],[20,1,1,6,7,[[661,1,1,6,7]]],[22,4,3,7,10,[[697,2,1,7,8],[735,2,2,8,10]]],[23,2,2,10,12,[[747,1,1,10,11],[774,1,1,11,12]]],[24,1,1,12,13,[[798,1,1,12,13]]],[27,3,3,13,16,[[866,1,1,13,14],[867,1,1,14,15],[875,1,1,15,16]]],[37,1,1,16,17,[[921,1,1,16,17]]]],[5797,10103,10106,13987,14546,14809,17362,18026,18783,18784,19024,19684,20345,22165,22168,22286,23044]]],["healed",[27,27,[[2,4,4,0,4,[[102,2,2,0,2],[103,2,2,2,4]]],[4,2,2,4,6,[[180,2,2,4,6]]],[8,1,1,6,7,[[241,1,1,6,7]]],[11,4,4,7,11,[[314,2,2,7,9],[320,1,1,9,10],[321,1,1,10,11]]],[13,1,1,11,12,[[388,1,1,11,12]]],[18,2,2,12,14,[[507,1,1,12,13],[584,1,1,13,14]]],[22,2,2,14,16,[[684,1,1,14,15],[731,1,1,15,16]]],[23,5,5,16,21,[[750,1,1,16,17],[759,1,1,17,18],[761,1,1,18,19],[795,2,2,19,21]]],[25,4,4,21,25,[[835,1,1,21,22],[848,3,3,22,25]]],[27,2,2,25,27,[[868,1,1,25,26],[872,1,1,26,27]]]],[3070,3089,3114,3159,5638,5646,7334,9572,9573,9756,9771,11650,14321,15719,17779,18716,19103,19333,19371,20220,20221,21317,21687,21688,21690,22179,22243]]],["healeth",[4,4,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,2,2,1,3,[[580,1,1,1,2],[624,1,1,2,3]]],[22,1,1,3,4,[[708,1,1,3,4]]]],[1946,15552,16354,18243]]],["physician",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19175]]],["physicians",[4,3,[[0,2,1,0,1,[[49,2,1,0,1]]],[13,1,1,1,2,[[382,1,1,1,2]]],[17,1,1,2,3,[[448,1,1,2,3]]]],[1508,11521,13157]]],["whole",[2,2,[[17,1,1,0,1,[[440,1,1,0,1]]],[23,1,1,1,2,[[763,1,1,1,2]]]],[12969,19418]]]]},{"k":"H7496","v":[["*",[8,8,[[17,1,1,0,1,[[461,1,1,0,1]]],[18,1,1,1,2,[[565,1,1,1,2]]],[19,3,3,2,5,[[629,1,1,2,3],[636,1,1,3,4],[648,1,1,4,5]]],[22,3,3,5,8,[[692,1,1,5,6],[704,2,2,6,8]]]],[13472,15318,16451,16656,17000,17937,18144,18149]]],["Dead",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13472]]],["dead",[6,6,[[18,1,1,0,1,[[565,1,1,0,1]]],[19,3,3,1,4,[[629,1,1,1,2],[636,1,1,2,3],[648,1,1,3,4]]],[22,2,2,4,6,[[692,1,1,4,5],[704,1,1,5,6]]]],[15318,16451,16656,17000,17937,18149]]],["deceased",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18144]]]]},{"k":"H7497","v":[["*",[21,20,[[0,2,2,0,2,[[13,1,1,0,1],[14,1,1,1,2]]],[4,5,4,2,6,[[154,3,2,2,4],[155,2,2,4,6]]],[5,5,5,6,11,[[198,1,1,6,7],[199,1,1,7,8],[201,1,1,8,9],[203,1,1,9,10],[204,1,1,10,11]]],[9,3,3,11,14,[[271,2,2,11,13],[289,1,1,13,14]]],[12,5,5,14,19,[[348,1,1,14,15],[351,1,1,15,16],[357,3,3,16,19]]],[22,1,1,19,20,[[695,1,1,19,20]]]],[341,380,4949,4958,4986,4988,6134,6166,6210,6290,6309,8150,8154,8666,10688,10783,10930,10932,10934,17988]]],["Rephaim",[6,6,[[9,3,3,0,3,[[271,2,2,0,2],[289,1,1,2,3]]],[12,2,2,3,5,[[348,1,1,3,4],[351,1,1,4,5]]],[22,1,1,5,6,[[695,1,1,5,6]]]],[8150,8154,8666,10688,10783,17988]]],["Rephaims",[2,2,[[0,2,2,0,2,[[13,1,1,0,1],[14,1,1,1,2]]]],[341,380]]],["giant",[3,3,[[12,3,3,0,3,[[357,3,3,0,3]]]],[10930,10932,10934]]],["giants",[10,9,[[4,5,4,0,4,[[154,3,2,0,2],[155,2,2,2,4]]],[5,5,5,4,9,[[198,1,1,4,5],[199,1,1,5,6],[201,1,1,6,7],[203,1,1,7,8],[204,1,1,8,9]]]],[4949,4958,4986,4988,6134,6166,6210,6290,6309]]]]},{"k":"H7498","v":[["*",[6,6,[[9,4,4,0,4,[[287,4,4,0,4]]],[12,2,2,4,6,[[345,2,2,4,6]]]],[8596,8598,8600,8602,10577,10612]]],["Rapha",[2,2,[[12,2,2,0,2,[[345,2,2,0,2]]]],[10577,10612]]],["giant",[4,4,[[9,4,4,0,4,[[287,4,4,0,4]]]],[8596,8598,8600,8602]]]]},{"k":"H7499","v":[["*",[3,3,[[23,2,2,0,2,[[774,1,1,0,1],[790,1,1,1,2]]],[25,1,1,2,3,[[831,1,1,2,3]]]],[19680,20056,21225]]],["+",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21225]]],["medicines",[2,2,[[23,2,2,0,2,[[774,1,1,0,1],[790,1,1,1,2]]]],[19680,20056]]]]},{"k":"H7500","v":[["health",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16463]]]]},{"k":"H7501","v":[["Rephael",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11084]]]]},{"k":"H7502","v":[["*",[3,3,[[17,2,2,0,2,[[452,1,1,0,1],[476,1,1,1,2]]],[21,1,1,2,3,[[672,1,1,2,3]]]],[13273,13918,17559]]],["comfort",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17559]]],["made",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13273]]],["spreadeth",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13918]]]]},{"k":"H7503","v":[["*",[46,45,[[1,4,3,0,3,[[53,1,1,0,1],[54,3,2,1,3]]],[4,4,4,3,7,[[156,1,1,3,4],[161,1,1,4,5],[183,2,2,5,7]]],[5,3,3,7,10,[[187,1,1,7,8],[196,1,1,8,9],[204,1,1,9,10]]],[6,3,3,10,13,[[218,1,1,10,11],[221,1,1,11,12],[229,1,1,12,13]]],[8,2,2,13,15,[[246,1,1,13,14],[250,1,1,14,15]]],[9,2,2,15,17,[[270,1,1,15,16],[290,1,1,16,17]]],[11,1,1,17,18,[[316,1,1,17,18]]],[12,2,2,18,20,[[358,1,1,18,19],[365,1,1,19,20]]],[13,1,1,20,21,[[381,1,1,20,21]]],[14,1,1,21,22,[[406,1,1,21,22]]],[15,2,2,22,24,[[418,2,2,22,24]]],[17,3,3,24,27,[[442,1,1,24,25],[447,1,1,25,26],[462,1,1,26,27]]],[18,3,3,27,30,[[514,1,1,27,28],[523,1,1,28,29],[615,1,1,29,30]]],[19,3,3,30,33,[[631,1,1,30,31],[645,1,1,31,32],[651,1,1,32,33]]],[21,1,1,33,34,[[673,1,1,33,34]]],[22,2,2,34,36,[[683,1,1,34,35],[691,1,1,35,36]]],[23,4,4,36,40,[[750,1,1,36,37],[782,1,1,37,38],[793,1,1,38,39],[794,1,1,39,40]]],[25,4,4,40,44,[[802,2,2,40,42],[808,1,1,42,43],[822,1,1,43,44]]],[35,1,1,44,45,[[908,1,1,44,45]]]],[1627,1640,1649,5035,5171,5734,5736,5856,6070,6296,6722,6866,7033,7448,7576,8121,8708,9630,10949,11163,11497,12114,12404,12410,13027,13149,13487,14458,14624,16239,16503,16910,17089,17575,17763,17913,19113,19899,20151,20209,20488,20489,20594,20951,22836]]],["+",[4,4,[[1,1,1,0,1,[[53,1,1,0,1]]],[4,1,1,1,2,[[161,1,1,1,2]]],[6,1,1,2,3,[[221,1,1,2,3]]],[23,1,1,3,4,[[782,1,1,3,4]]]],[1627,5171,6866,19899]]],["Cease",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14458]]],["Slack",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6070]]],["Stay",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7576]]],["abated",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6722]]],["alone",[2,2,[[11,1,1,0,1,[[316,1,1,0,1]]],[17,1,1,1,2,[[442,1,1,1,2]]]],[9630,13027]]],["consumeth",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17763]]],["down",[2,2,[[25,2,2,0,2,[[802,2,2,0,2]]]],[20488,20489]]],["draweth",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7033]]],["fail",[4,4,[[4,2,2,0,2,[[183,2,2,0,2]]],[5,1,1,2,3,[[187,1,1,2,3]]],[12,1,1,3,4,[[365,1,1,3,4]]]],[5734,5736,5856,11163]]],["faint",[2,2,[[19,1,1,0,1,[[651,1,1,0,1]]],[22,1,1,1,2,[[691,1,1,1,2]]]],[17089,17913]]],["feeble",[6,6,[[9,1,1,0,1,[[270,1,1,0,1]]],[23,3,3,1,4,[[750,1,1,1,2],[793,1,1,2,3],[794,1,1,3,4]]],[25,2,2,4,6,[[808,1,1,4,5],[822,1,1,5,6]]]],[8121,19113,20151,20209,20594,20951]]],["forsake",[2,2,[[4,1,1,0,1,[[156,1,1,0,1]]],[18,1,1,1,2,[[615,1,1,1,2]]]],[5035,16239]]],["go",[3,3,[[17,1,1,0,1,[[462,1,1,0,1]]],[19,1,1,1,2,[[631,1,1,1,2]]],[21,1,1,2,3,[[673,1,1,2,3]]]],[13487,16503,17575]]],["idle",[3,2,[[1,3,2,0,2,[[54,3,2,0,2]]]],[1640,1649]]],["leave",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12404]]],["respite",[1,1,[[8,1,1,0,1,[[246,1,1,0,1]]]],[7448]]],["slack",[2,2,[[5,1,1,0,1,[[204,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[6296,22836]]],["slothful",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16910]]],["stay",[2,2,[[9,1,1,0,1,[[290,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]]],[8708,10949]]],["still",[1,1,[[18,1,1,0,1,[[523,1,1,0,1]]]],[14624]]],["weak",[1,1,[[13,1,1,0,1,[[381,1,1,0,1]]]],[11497]]],["weakened",[2,2,[[14,1,1,0,1,[[406,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]]],[12114,12410]]],["weakeneth",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13149]]]]},{"k":"H7504","v":[["weak",[4,4,[[3,1,1,0,1,[[129,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[17,1,1,2,3,[[439,1,1,2,3]]],[22,1,1,3,4,[[713,1,1,3,4]]]],[4093,8451,12933,18323]]]]},{"k":"H7505","v":[["Raphu",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4084]]]]},{"k":"H7506","v":[["Rephah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10560]]]]},{"k":"H7507","v":[["bottom",[1,1,[[21,1,1,0,1,[[673,1,1,0,1]]]],[17581]]]]},{"k":"H7508","v":[["*",[5,5,[[1,3,3,0,3,[[66,2,2,0,2],[68,1,1,2,3]]],[3,2,2,3,5,[[149,2,2,3,5]]]],[1984,1991,2028,4774,4775]]],["+",[2,2,[[1,1,1,0,1,[[68,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]]],[2028,4775]]],["Rephidim",[3,3,[[1,2,2,0,2,[[66,2,2,0,2]]],[3,1,1,2,3,[[149,1,1,2,3]]]],[1984,1991,4774]]]]},{"k":"H7509","v":[["Rephaiah",[5,5,[[12,4,4,0,4,[[340,1,1,0,1],[341,1,1,1,2],[344,1,1,2,3],[346,1,1,3,4]]],[15,1,1,4,5,[[415,1,1,4,5]]]],[10382,10427,10537,10658,12336]]]]},{"k":"H7510","v":[["+",[1,1,[[23,1,1,0,1,[[791,1,1,0,1]]]],[20076]]]]},{"k":"H7511","v":[["*",[3,3,[[18,1,1,0,1,[[545,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]],[25,1,1,2,3,[[833,1,1,2,3]]]],[14930,16543,21250]]],["fouledst",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21250]]],["himself",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14930]]],["thyself",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16543]]]]},{"k":"H7512","v":[["stamped",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21940,21952]]]]},{"k":"H7513","v":[["floats",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11227]]]]},{"k":"H7514","v":[["leaning",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17645]]]]},{"k":"H7515","v":[["*",[2,2,[[19,1,1,0,1,[[652,1,1,0,1]]],[25,1,1,1,2,[[835,1,1,1,2]]]],[17139,21331]]],["foul",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21331]]],["troubled",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17139]]]]},{"k":"H7516","v":[["mire",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18785]]]]},{"k":"H7517","v":[["stalls",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22785]]]]},{"k":"H7518","v":[["pieces",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14930]]]]},{"k":"H7519","v":[["ran",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20478]]]]},{"k":"H7520","v":[["leap",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14916]]]]},{"k":"H7521","v":[["*",[56,54,[[0,1,1,0,1,[[32,1,1,0,1]]],[2,11,9,1,10,[[90,1,1,1,2],[96,1,1,2,3],[108,1,1,3,4],[111,3,3,4,7],[115,5,3,7,10]]],[4,2,2,10,12,[[185,2,2,10,12]]],[8,1,1,12,13,[[264,1,1,12,13]]],[9,1,1,13,14,[[290,1,1,13,14]]],[12,3,3,14,17,[[365,1,1,14,15],[366,2,2,15,17]]],[13,2,2,17,19,[[376,1,1,17,18],[402,1,1,18,19]]],[16,1,1,19,20,[[435,1,1,19,20]]],[17,4,4,20,24,[[449,1,1,20,21],[455,1,1,21,22],[468,1,1,22,23],[469,1,1,23,24]]],[18,13,13,24,37,[[517,1,1,24,25],[521,1,1,25,26],[526,1,1,26,27],[527,1,1,27,28],[528,1,1,28,29],[539,1,1,29,30],[554,1,1,30,31],[562,1,1,31,32],[579,1,1,32,33],[596,1,1,33,34],[624,2,2,34,36],[626,1,1,36,37]]],[19,2,2,37,39,[[630,1,1,37,38],[643,1,1,38,39]]],[20,1,1,39,40,[[667,1,1,39,40]]],[22,2,2,40,42,[[718,1,1,40,41],[720,1,1,41,42]]],[23,2,2,42,44,[[758,2,2,42,44]]],[25,3,3,44,47,[[821,2,2,44,46],[844,1,1,46,47]]],[27,1,1,47,48,[[869,1,1,47,48]]],[29,1,1,48,49,[[883,1,1,48,49]]],[32,1,1,49,50,[[898,1,1,49,50]]],[36,1,1,50,51,[[909,1,1,50,51]]],[38,3,3,51,54,[[925,3,3,51,54]]]],[970,2749,2897,3288,3392,3394,3396,3558,3565,3567,5821,5834,7971,8715,11147,11167,11181,11402,12014,12869,13187,13336,13676,13692,14538,14574,14661,14686,14707,14831,15100,15272,15535,16006,16361,16362,16389,16467,16847,17482,18422,18481,19303,19305,20935,20936,21599,22207,22445,22655,22848,23097,23099,23102]]],["+",[9,7,[[2,4,2,0,2,[[115,4,2,0,2]]],[13,1,1,2,3,[[402,1,1,2,3]]],[18,3,3,3,6,[[579,1,1,3,4],[624,2,2,4,6]]],[20,1,1,6,7,[[667,1,1,6,7]]]],[3558,3567,12014,15535,16361,16362,17482]]],["Accept",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16006]]],["accept",[11,11,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[9,1,1,2,3,[[290,1,1,2,3]]],[23,2,2,3,5,[[758,2,2,3,5]]],[25,3,3,5,8,[[821,2,2,5,7],[844,1,1,7,8]]],[29,1,1,8,9,[[883,1,1,8,9]]],[38,2,2,9,11,[[925,2,2,9,11]]]],[3565,5821,8715,19303,19305,20935,20936,21599,22445,23099,23102]]],["acceptable",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5834]]],["accepted",[7,7,[[2,6,6,0,6,[[90,1,1,0,1],[96,1,1,1,2],[108,1,1,2,3],[111,3,3,3,6]]],[16,1,1,6,7,[[435,1,1,6,7]]]],[2749,2897,3288,3392,3394,3396,12869]]],["accepteth",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22207]]],["accomplish",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13187]]],["affection",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11167]]],["approve",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14661]]],["consentedst",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14686]]],["delight",[2,2,[[17,1,1,0,1,[[469,1,1,0,1]]],[18,1,1,1,2,[[539,1,1,1,2]]]],[13692,14831]]],["delightest",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14707]]],["delighteth",[2,2,[[19,1,1,0,1,[[630,1,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]]],[16467,18481]]],["favour",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14574]]],["favourable",[3,3,[[17,1,1,0,1,[[468,1,1,0,1]]],[18,2,2,1,3,[[554,1,1,1,2],[562,1,1,2,3]]]],[13676,15100,15272]]],["liked",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11147]]],["pardoned",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18422]]],["please",[3,3,[[13,1,1,0,1,[[376,1,1,0,1]]],[17,1,1,1,2,[[455,1,1,1,2]]],[19,1,1,2,3,[[643,1,1,2,3]]]],[11402,13336,16847]]],["pleased",[4,4,[[0,1,1,0,1,[[32,1,1,0,1]]],[18,1,1,1,2,[[517,1,1,1,2]]],[32,1,1,2,3,[[898,1,1,2,3]]],[38,1,1,3,4,[[925,1,1,3,4]]]],[970,14538,22655,23097]]],["pleasure",[3,3,[[12,1,1,0,1,[[366,1,1,0,1]]],[18,1,1,1,2,[[626,1,1,1,2]]],[36,1,1,2,3,[[909,1,1,2,3]]]],[11181,16389,22848]]],["reconcile",[1,1,[[8,1,1,0,1,[[264,1,1,0,1]]]],[7971]]]]},{"k":"H7522","v":[["*",[56,56,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,1,1,1,2,[[77,1,1,1,2]]],[2,7,7,2,9,[[90,1,1,2,3],[108,1,1,3,4],[111,4,4,4,8],[112,1,1,8,9]]],[4,2,2,9,11,[[185,2,2,9,11]]],[13,1,1,11,12,[[381,1,1,11,12]]],[14,1,1,12,13,[[412,1,1,12,13]]],[15,2,2,13,15,[[421,2,2,13,15]]],[16,2,2,15,17,[[426,1,1,15,16],[434,1,1,16,17]]],[18,13,13,17,30,[[482,1,1,17,18],[496,1,1,18,19],[507,2,2,19,21],[517,1,1,21,22],[528,1,1,22,23],[546,1,1,23,24],[566,1,1,24,25],[580,1,1,25,26],[583,1,1,26,27],[620,1,1,27,28],[622,2,2,28,30]]],[19,14,14,30,44,[[635,1,1,30,31],[637,1,1,31,32],[638,3,3,32,35],[639,2,2,35,37],[641,2,2,37,39],[642,1,1,39,40],[643,2,2,40,42],[645,1,1,42,43],[646,1,1,43,44]]],[22,6,6,44,50,[[727,1,1,44,45],[734,1,1,45,46],[736,1,1,46,47],[738,2,2,47,49],[739,1,1,49,50]]],[23,1,1,50,51,[[750,1,1,50,51]]],[26,4,4,51,55,[[857,1,1,51,52],[860,3,3,52,55]]],[38,1,1,55,56,[[926,1,1,55,56]]]],[1479,2331,2748,3286,3388,3389,3390,3398,3413,5826,5833,11505,12263,12535,12548,12710,12839,13985,14182,14324,14326,14533,14709,14948,15343,15570,15655,16303,16336,16339,16637,16688,16689,16708,16715,16721,16741,16781,16807,16815,16853,16855,16923,16937,18644,18760,18791,18828,18831,18845,19109,21965,22039,22052,22072,23116]]],["acceptable",[8,8,[[2,1,1,0,1,[[111,1,1,0,1]]],[18,2,2,1,3,[[496,1,1,1,2],[546,1,1,2,3]]],[19,1,1,3,4,[[637,1,1,3,4]]],[22,3,3,4,7,[[727,1,1,4,5],[736,1,1,5,6],[739,1,1,6,7]]],[23,1,1,7,8,[[750,1,1,7,8]]]],[3389,14182,14948,16688,18644,18791,18845,19109]]],["acceptance",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18828]]],["accepted",[4,4,[[1,1,1,0,1,[[77,1,1,0,1]]],[2,2,2,1,3,[[111,1,1,1,2],[112,1,1,2,3]]],[22,1,1,3,4,[[734,1,1,3,4]]]],[2331,3390,3413,18760]]],["delight",[5,5,[[19,5,5,0,5,[[638,2,2,0,2],[639,1,1,2,3],[642,1,1,3,4],[643,1,1,4,5]]]],[16689,16708,16741,16815,16853]]],["desire",[3,3,[[13,1,1,0,1,[[381,1,1,0,1]]],[18,2,2,1,3,[[622,2,2,1,3]]]],[11505,16336,16339]]],["favour",[15,15,[[4,1,1,0,1,[[185,1,1,0,1]]],[18,5,5,1,6,[[482,1,1,1,2],[507,2,2,2,4],[566,1,1,4,5],[583,1,1,5,6]]],[19,8,8,6,14,[[635,1,1,6,7],[638,1,1,7,8],[639,1,1,8,9],[641,2,2,9,11],[643,1,1,11,12],[645,1,1,12,13],[646,1,1,13,14]]],[22,1,1,14,15,[[738,1,1,14,15]]]],[5833,13985,14324,14326,15343,15655,16637,16715,16721,16781,16807,16855,16923,16937,18831]]],["pleasure",[5,5,[[14,1,1,0,1,[[412,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[16,1,1,2,3,[[426,1,1,2,3]]],[18,2,2,3,5,[[528,1,1,3,4],[580,1,1,4,5]]]],[12263,12548,12710,14709,15570]]],["selfwill",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1479]]],["will",[12,12,[[2,4,4,0,4,[[90,1,1,0,1],[108,1,1,1,2],[111,2,2,2,4]]],[4,1,1,4,5,[[185,1,1,4,5]]],[18,2,2,5,7,[[517,1,1,5,6],[620,1,1,6,7]]],[26,4,4,7,11,[[857,1,1,7,8],[860,3,3,8,11]]],[38,1,1,11,12,[[926,1,1,11,12]]]],[2748,3286,3388,3398,5826,14533,16303,21965,22039,22052,22072,23116]]],["would",[2,2,[[15,1,1,0,1,[[421,1,1,0,1]]],[16,1,1,1,2,[[434,1,1,1,2]]]],[12535,12839]]]]},{"k":"H7523","v":[["*",[47,40,[[1,1,1,0,1,[[69,1,1,0,1]]],[3,20,14,1,15,[[151,20,14,1,15]]],[4,7,6,15,21,[[156,2,1,15,16],[157,1,1,16,17],[171,3,3,17,20],[174,1,1,20,21]]],[5,8,8,21,29,[[206,3,3,21,24],[207,5,5,24,29]]],[6,1,1,29,30,[[230,1,1,29,30]]],[10,1,1,30,31,[[311,1,1,30,31]]],[11,1,1,31,32,[[318,1,1,31,32]]],[17,1,1,32,33,[[459,1,1,32,33]]],[18,2,2,33,35,[[539,1,1,33,34],[571,1,1,34,35]]],[19,1,1,35,36,[[649,1,1,35,36]]],[22,1,1,36,37,[[679,1,1,36,37]]],[23,1,1,37,38,[[751,1,1,37,38]]],[27,2,2,38,40,[[865,1,1,38,39],[867,1,1,39,40]]]],[2064,4851,4856,4857,4861,4862,4863,4864,4866,4870,4871,4872,4873,4875,4876,5046,5070,5409,5410,5412,5496,6375,6377,6378,6394,6402,6408,6413,6419,7058,9470,9706,13450,14830,15437,17028,17675,19128,22135,22176]]],["+",[3,3,[[3,1,1,0,1,[[151,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[174,1,1,2,3]]]],[4872,5046,5496]]],["death",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4875]]],["kill",[2,2,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,1,1,1,2,[[157,1,1,1,2]]]],[2064,5070]]],["killed",[1,1,[[10,1,1,0,1,[[311,1,1,0,1]]]],[9470]]],["killing",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22135]]],["manslayer",[2,2,[[3,2,2,0,2,[[151,2,2,0,2]]]],[4851,4857]]],["murder",[3,3,[[18,1,1,0,1,[[571,1,1,0,1]]],[23,1,1,1,2,[[751,1,1,1,2]]],[27,1,1,2,3,[[867,1,1,2,3]]]],[15437,19128,22176]]],["murderer",[13,9,[[3,11,7,0,7,[[151,11,7,0,7]]],[11,1,1,7,8,[[318,1,1,7,8]]],[17,1,1,8,9,[[459,1,1,8,9]]]],[4861,4862,4863,4864,4866,4875,4876,9706,13450]]],["murderers",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17675]]],["slain",[3,3,[[6,1,1,0,1,[[230,1,1,0,1]]],[18,1,1,1,2,[[539,1,1,1,2]]],[19,1,1,2,3,[[649,1,1,2,3]]]],[7058,14830,17028]]],["slayer",[17,17,[[3,5,5,0,5,[[151,5,5,0,5]]],[4,4,4,5,9,[[156,1,1,5,6],[171,3,3,6,9]]],[5,8,8,9,17,[[206,3,3,9,12],[207,5,5,12,17]]]],[4856,4870,4871,4872,4873,5046,5409,5410,5412,6375,6377,6378,6394,6402,6408,6413,6419]]]]},{"k":"H7524","v":[["*",[2,2,[[18,1,1,0,1,[[519,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[14565,20966]]],["slaughter",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20966]]],["sword",[1,1,[[18,1,1,0,1,[[519,1,1,0,1]]]],[14565]]]]},{"k":"H7525","v":[["Rezia",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10574]]]]},{"k":"H7526","v":[["Rezin",[11,11,[[11,4,4,0,4,[[327,1,1,0,1],[328,3,3,1,4]]],[14,1,1,4,5,[[404,1,1,4,5]]],[15,1,1,5,6,[[419,1,1,5,6]]],[22,5,5,6,11,[[685,3,3,6,9],[686,1,1,9,10],[687,1,1,10,11]]]],[9962,9968,9969,9972,12075,12470,17783,17786,17790,17813,17840]]]]},{"k":"H7527","v":[["+",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2083]]]]},{"k":"H7528","v":[["paved",[1,1,[[21,1,1,0,1,[[673,1,1,0,1]]]],[17581]]]]},{"k":"H7529","v":[["coals",[1,1,[[10,1,1,0,1,[[309,1,1,0,1]]]],[9393]]]]},{"k":"H7530","v":[["Rezeph",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10073,18364]]]]},{"k":"H7531","v":[["*",[8,6,[[13,1,1,0,1,[[373,1,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]],[22,1,1,2,3,[[684,1,1,2,3]]],[25,5,3,3,6,[[841,4,2,3,5],[843,1,1,5,6]]]],[11327,12708,17775,21494,21495,21555]]],["coal",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17775]]],["pavement",[7,5,[[13,1,1,0,1,[[373,1,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]],[25,5,3,2,5,[[841,4,2,2,4],[843,1,1,4,5]]]],[11327,12708,21494,21495,21555]]]]},{"k":"H7532","v":[["Rizpah",[4,4,[[9,4,4,0,4,[[269,1,1,0,1],[287,3,3,1,4]]]],[8088,8588,8590,8591]]]]},{"k":"H7533","v":[["*",[19,18,[[0,1,1,0,1,[[24,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[6,2,2,2,4,[[219,1,1,2,3],[220,1,1,3,4]]],[8,2,2,4,6,[[247,2,2,4,6]]],[11,1,1,6,7,[[330,1,1,6,7]]],[13,1,1,7,8,[[382,1,1,7,8]]],[17,1,1,8,9,[[455,1,1,8,9]]],[18,1,1,9,10,[[551,1,1,9,10]]],[20,2,1,10,11,[[670,2,1,10,11]]],[22,4,4,11,15,[[714,1,1,11,12],[720,2,2,12,14],[736,1,1,14,15]]],[25,1,1,15,16,[[830,1,1,15,16]]],[27,1,1,16,17,[[866,1,1,16,17]]],[29,1,1,17,18,[[882,1,1,17,18]]]],[680,5644,6807,6819,7463,7464,10045,11519,13345,15062,17529,18336,18483,18484,18792,21190,22163,22411]]],["+",[2,2,[[6,2,2,0,2,[[219,1,1,0,1],[220,1,1,1,2]]]],[6807,6819]]],["brakest",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15062]]],["break",[1,1,[[25,1,1,0,1,[[830,1,1,0,1]]]],[21190]]],["broken",[4,3,[[20,2,1,0,1,[[670,2,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]],[27,1,1,2,3,[[866,1,1,2,3]]]],[17529,18336,22163]]],["bruised",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]]],[10045,18483]]],["crush",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22411]]],["crushed",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5644]]],["discouraged",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18484]]],["oppressed",[5,5,[[8,2,2,0,2,[[247,2,2,0,2]]],[13,1,1,2,3,[[382,1,1,2,3]]],[17,1,1,3,4,[[455,1,1,3,4]]],[22,1,1,4,5,[[736,1,1,4,5]]]],[7463,7464,11519,13345,18792]]],["together",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[680]]]]},{"k":"H7534","v":[["*",[3,3,[[0,3,3,0,3,[[40,3,3,0,3]]]],[1214,1215,1222]]],["+",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1214]]],["lean",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1215]]],["thin",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1222]]]]},{"k":"H7535","v":[["*",[108,106,[[0,10,10,0,10,[[5,1,1,0,1],[13,1,1,1,2],[18,1,1,2,3],[19,1,1,3,4],[23,1,1,4,5],[25,1,1,5,6],[40,1,1,6,7],[46,2,2,7,9],[49,1,1,9,10]]],[1,8,8,10,18,[[57,4,4,10,14],[58,1,1,14,15],[59,2,2,15,17],[70,1,1,17,18]]],[3,2,2,18,20,[[128,1,1,18,19],[136,1,1,19,20]]],[4,20,20,20,40,[[154,3,3,20,23],[155,2,2,23,25],[156,2,2,25,27],[162,1,1,27,28],[164,4,4,28,32],[167,2,2,32,34],[169,1,1,34,35],[172,3,3,35,38],[180,2,2,38,40]]],[5,15,15,40,55,[[187,3,3,40,43],[192,4,4,43,47],[194,2,2,47,49],[197,3,3,49,52],[199,2,2,52,54],[208,1,1,54,55]]],[6,6,4,55,59,[[213,2,1,55,56],[216,1,1,56,57],[224,1,1,57,58],[229,2,1,58,59]]],[8,2,2,59,61,[[236,1,1,59,60],[240,1,1,60,61]]],[10,12,12,61,73,[[293,2,2,61,63],[298,3,3,63,66],[301,1,1,66,67],[304,1,1,67,68],[305,3,3,68,71],[311,1,1,71,72],[312,1,1,72,73]]],[11,11,11,73,84,[[315,2,2,73,75],[322,1,1,75,76],[324,1,1,76,77],[326,2,2,77,79],[327,2,2,79,81],[329,2,2,81,83],[333,1,1,83,84]]],[13,11,11,84,95,[[371,1,1,84,85],[372,2,2,85,87],[381,1,1,87,88],[384,1,1,88,89],[391,1,1,89,90],[393,1,1,90,91],[394,1,1,91,92],[395,1,1,92,93],[399,2,2,93,95]]],[17,5,5,95,100,[[436,5,5,95,100]]],[18,2,2,100,102,[[509,1,1,100,101],[568,1,1,101,102]]],[19,1,1,102,103,[[640,1,1,102,103]]],[22,2,2,103,105,[[682,1,1,103,104],[706,1,1,104,105]]],[29,1,1,105,106,[[881,1,1,105,106]]]],[142,360,465,506,599,721,1235,1442,1446,1514,1719,1721,1738,1739,1768,1794,1801,2096,4061,4330,4966,4973,4975,4986,4994,5010,5013,5201,5255,5256,5263,5266,5324,5342,5380,5441,5443,5447,5624,5644,5858,5868,5869,5964,5966,5967,5973,6004,6029,6120,6121,6129,6160,6168,6431,6570,6693,6925,7044,7225,7323,8818,8819,8994,9004,9010,9121,9226,9254,9263,9272,9476,9496,9578,9579,9822,9853,9899,9900,9929,9960,9985,10001,10127,11278,11291,11298,11507,11557,11706,11757,11774,11825,11916,11925,12881,12884,12885,12886,12888,14361,15403,16757,17734,18183,22397]]],["+",[2,2,[[5,1,1,0,1,[[197,1,1,0,1]]],[13,1,1,1,2,[[399,1,1,1,2]]]],[6121,11916]]],["But",[9,9,[[4,4,4,0,4,[[155,1,1,0,1],[169,1,1,1,2],[172,2,2,2,4]]],[5,2,2,4,6,[[197,1,1,4,5],[208,1,1,5,6]]],[10,1,1,6,7,[[311,1,1,6,7]]],[11,1,1,7,8,[[324,1,1,7,8]]],[13,1,1,8,9,[[395,1,1,8,9]]]],[4994,5380,5441,5443,6120,6431,9476,9853,11825]]],["Howbeit",[4,4,[[10,1,1,0,1,[[301,1,1,0,1]]],[11,3,3,1,4,[[322,1,1,1,2],[326,1,1,2,3],[327,1,1,3,4]]]],[9121,9822,9900,9960]]],["Nevertheless",[3,3,[[10,2,2,0,2,[[298,1,1,0,1],[305,1,1,1,2]]],[11,1,1,2,3,[[315,1,1,2,3]]]],[9004,9272,9579]]],["Notwithstanding",[2,2,[[4,1,1,0,1,[[164,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]]],[5255,11291]]],["Only",[19,19,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,1,1,1,2,[[58,1,1,1,2]]],[4,10,10,2,12,[[154,2,2,2,4],[156,1,1,4,5],[162,1,1,5,6],[164,3,3,6,9],[167,2,2,9,11],[172,1,1,11,12]]],[5,3,3,12,15,[[187,1,1,12,13],[194,1,1,13,14],[199,1,1,14,15]]],[6,1,1,15,16,[[213,1,1,15,16]]],[10,1,1,16,17,[[293,1,1,16,17]]],[18,1,1,17,18,[[568,1,1,17,18]]],[19,1,1,18,19,[[640,1,1,18,19]]]],[1442,1768,4973,4975,5013,5201,5256,5263,5266,5324,5342,5447,5858,6029,6168,6570,8818,15403,16757]]],["Save",[1,1,[[11,1,1,0,1,[[327,1,1,0,1]]]],[9929]]],["Surely",[2,2,[[0,1,1,0,1,[[19,1,1,0,1]]],[4,1,1,1,2,[[156,1,1,1,2]]]],[506,5010]]],["but",[10,10,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,1,1,1,2,[[57,1,1,1,2]]],[6,2,2,2,4,[[216,1,1,2,3],[224,1,1,3,4]]],[10,1,1,4,5,[[312,1,1,4,5]]],[11,3,3,5,8,[[315,1,1,5,6],[329,2,2,6,8]]],[13,2,2,8,10,[[384,1,1,8,9],[391,1,1,9,10]]]],[721,1739,6693,6925,9496,9578,9985,10001,11557,11706]]],["even",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11774]]],["except",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1446]]],["howbeit",[1,1,[[13,1,1,0,1,[[393,1,1,0,1]]]],[11757]]],["howsoever",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7044]]],["least",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6570]]],["nevertheless",[2,2,[[10,1,1,0,1,[[305,1,1,0,1]]],[13,1,1,1,2,[[381,1,1,1,2]]]],[9263,11507]]],["only",[42,42,[[0,6,6,0,6,[[5,1,1,0,1],[13,1,1,1,2],[18,1,1,2,3],[23,1,1,3,4],[40,1,1,4,5],[49,1,1,5,6]]],[1,6,6,6,12,[[57,3,3,6,9],[59,2,2,9,11],[70,1,1,11,12]]],[3,2,2,12,14,[[128,1,1,12,13],[136,1,1,13,14]]],[4,4,4,14,18,[[154,1,1,14,15],[155,1,1,15,16],[180,2,2,16,18]]],[5,8,8,18,26,[[187,2,2,18,20],[192,3,3,20,23],[194,1,1,23,24],[197,1,1,24,25],[199,1,1,25,26]]],[6,1,1,26,27,[[229,1,1,26,27]]],[8,2,2,27,29,[[236,1,1,27,28],[240,1,1,28,29]]],[10,3,3,29,32,[[293,1,1,29,30],[304,1,1,30,31],[305,1,1,31,32]]],[11,1,1,32,33,[[333,1,1,32,33]]],[13,1,1,33,34,[[399,1,1,33,34]]],[17,5,5,34,39,[[436,5,5,34,39]]],[22,2,2,39,41,[[682,1,1,39,40],[706,1,1,40,41]]],[29,1,1,41,42,[[881,1,1,41,42]]]],[142,360,465,599,1235,1514,1719,1721,1738,1794,1801,2096,4061,4330,4966,4986,5624,5644,5868,5869,5964,5966,5973,6004,6129,6160,7044,7225,7323,8819,9226,9254,10127,11925,12881,12884,12885,12886,12888,17734,18183,22397]]],["save",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[371,1,1,1,2]]]],[8994,11278]]],["so",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]]],[9010,11298]]],["surely",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14361]]],["wise",[1,1,[[5,1,1,0,1,[[192,1,1,0,1]]]],[5967]]],["yet",[1,1,[[11,1,1,0,1,[[326,1,1,0,1]]]],[9899]]]]},{"k":"H7536","v":[["*",[3,3,[[17,2,2,0,2,[[442,1,1,0,1],[465,1,1,1,2]]],[22,1,1,2,3,[[728,1,1,2,3]]]],[13027,13567,18668]]],["spit",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13567]]],["spitting",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18668]]],["spittle",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13027]]]]},{"k":"H7537","v":[["rot",[2,2,[[19,1,1,0,1,[[637,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[16663,18440]]]]},{"k":"H7538","v":[["*",[5,5,[[17,1,1,0,1,[[448,1,1,0,1]]],[19,2,2,1,3,[[639,1,1,1,2],[641,1,1,2,3]]],[27,1,1,3,4,[[866,1,1,3,4]]],[34,1,1,4,5,[[905,1,1,4,5]]]],[13181,16723,16802,22164,22784]]],["rottenness",[4,4,[[19,2,2,0,2,[[639,1,1,0,1],[641,1,1,1,2]]],[27,1,1,2,3,[[866,1,1,2,3]]],[34,1,1,3,4,[[905,1,1,3,4]]]],[16723,16802,22164,22784]]],["thing",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13181]]]]},{"k":"H7539","v":[["rotten",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13915]]]]},{"k":"H7540","v":[["*",[9,9,[[12,1,1,0,1,[[352,1,1,0,1]]],[17,1,1,1,2,[[456,1,1,1,2]]],[18,3,3,2,5,[[506,1,1,2,3],[591,2,2,3,5]]],[20,1,1,5,6,[[661,1,1,5,6]]],[22,1,1,6,7,[[691,1,1,6,7]]],[28,1,1,7,8,[[877,1,1,7,8]]],[33,1,1,8,9,[[902,1,1,8,9]]]],[10820,13366,14314,15826,15828,17363,17927,22316,22714]]],["dance",[3,3,[[17,1,1,0,1,[[456,1,1,0,1]]],[20,1,1,1,2,[[661,1,1,1,2]]],[22,1,1,2,3,[[691,1,1,2,3]]]],[13366,17363,17927]]],["dancing",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10820]]],["jumping",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22714]]],["leap",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22316]]],["skip",[1,1,[[18,1,1,0,1,[[506,1,1,0,1]]]],[14314]]],["skipped",[2,2,[[18,2,2,0,2,[[591,2,2,0,2]]]],[15826,15828]]]]},{"k":"H7541","v":[["temples",[5,5,[[6,3,3,0,3,[[214,2,2,0,2],[215,1,1,2,3]]],[21,2,2,3,5,[[674,1,1,3,4],[676,1,1,4,5]]]],[6620,6621,6649,17585,17621]]]]},{"k":"H7542","v":[["Rakkon",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6367]]]]},{"k":"H7543","v":[["*",[8,8,[[1,4,4,0,4,[[79,3,3,0,3],[86,1,1,3,4]]],[12,1,1,4,5,[[346,1,1,4,5]]],[13,1,1,5,6,[[382,1,1,5,6]]],[20,1,1,6,7,[[668,1,1,6,7]]],[25,1,1,7,8,[[825,1,1,7,8]]]],[2407,2415,2417,2633,10645,11523,17494,21066]]],["+",[2,2,[[13,1,1,0,1,[[382,1,1,0,1]]],[25,1,1,1,2,[[825,1,1,1,2]]]],[11523,21066]]],["apothecary",[4,4,[[1,3,3,0,3,[[79,2,2,0,2],[86,1,1,2,3]]],[20,1,1,3,4,[[668,1,1,3,4]]]],[2407,2417,2633,17494]]],["compoundeth",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2415]]],["made",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10645]]]]},{"k":"H7544","v":[["spiced",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17642]]]]},{"k":"H7545","v":[["*",[2,2,[[1,2,2,0,2,[[79,2,2,0,2]]]],[2407,2417]]],["confection",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2417]]],["ointment",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2407]]]]},{"k":"H7546","v":[["apothecaries",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12335]]]]},{"k":"H7547","v":[["perfumes",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18774]]]]},{"k":"H7548","v":[["confectionaries",[1,1,[[8,1,1,0,1,[[243,1,1,0,1]]]],[7382]]]]},{"k":"H7549","v":[["firmament",[17,15,[[0,9,7,0,7,[[0,9,7,0,7]]],[18,2,2,7,9,[[496,1,1,7,8],[627,1,1,8,9]]],[25,5,5,9,14,[[802,4,4,9,13],[811,1,1,13,14]]],[26,1,1,14,15,[[861,1,1,14,15]]]],[5,6,7,13,14,16,19,14169,16395,20486,20487,20489,20490,20634,22084]]]]},{"k":"H7550","v":[["*",[8,8,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,3,3,2,5,[[91,1,1,2,3],[96,1,1,3,4],[97,1,1,4,5]]],[3,2,2,5,7,[[122,2,2,5,7]]],[12,1,1,7,8,[[360,1,1,7,8]]]],[2338,2359,2766,2891,2943,3838,3842,11012]]],["cakes",[1,1,[[12,1,1,0,1,[[360,1,1,0,1]]]],[11012]]],["wafer",[3,3,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]],[3,1,1,2,3,[[122,1,1,2,3]]]],[2359,2943,3842]]],["wafers",[4,4,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,2,2,1,3,[[91,1,1,1,2],[96,1,1,2,3]]],[3,1,1,3,4,[[122,1,1,3,4]]]],[2338,2766,2891,3838]]]]},{"k":"H7551","v":[["*",[9,9,[[1,8,8,0,8,[[75,1,1,0,1],[76,1,1,1,2],[77,1,1,2,3],[84,1,1,3,4],[85,1,1,4,5],[87,2,2,5,7],[88,1,1,7,8]]],[18,1,1,8,9,[[616,1,1,8,9]]]],[2271,2288,2332,2566,2603,2651,2656,2693,16254]]],["+",[6,6,[[1,6,6,0,6,[[75,1,1,0,1],[76,1,1,1,2],[77,1,1,2,3],[85,1,1,3,4],[87,1,1,4,5],[88,1,1,5,6]]]],[2271,2288,2332,2603,2651,2693]]],["embroiderer",[2,2,[[1,2,2,0,2,[[84,1,1,0,1],[87,1,1,1,2]]]],[2566,2656]]],["wrought",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16254]]]]},{"k":"H7552","v":[["*",[6,6,[[3,1,1,0,1,[[147,1,1,0,1]]],[5,2,2,1,3,[[199,1,1,1,2],[204,1,1,2,3]]],[12,3,3,3,6,[[339,2,2,3,5],[344,1,1,5,6]]]],[4672,6175,6320,10349,10350,10551]]],["Rakem",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10551]]],["Rekem",[5,5,[[3,1,1,0,1,[[147,1,1,0,1]]],[5,2,2,1,3,[[199,1,1,1,2],[204,1,1,2,3]]],[12,2,2,3,5,[[339,2,2,3,5]]]],[4672,6175,6320,10349,10350]]]]},{"k":"H7553","v":[["*",[12,11,[[6,2,1,0,1,[[215,2,1,0,1]]],[12,1,1,1,2,[[366,1,1,1,2]]],[18,1,1,2,3,[[522,1,1,2,3]]],[25,8,8,3,11,[[817,3,3,3,6],[818,1,1,6,7],[827,1,1,7,8],[828,3,3,8,11]]]],[6653,11166,14611,20772,20775,20780,20828,21116,21128,21137,21145]]],["+",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20780]]],["broidered",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21116]]],["colours",[2,2,[[12,1,1,0,1,[[366,1,1,0,1]]],[25,1,1,1,2,[[818,1,1,1,2]]]],[11166,20828]]],["needlework",[3,2,[[6,2,1,0,1,[[215,2,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]]],[6653,14611]]],["work",[5,5,[[25,5,5,0,5,[[817,2,2,0,2],[828,3,3,2,5]]]],[20772,20775,21128,21137,21145]]]]},{"k":"H7554","v":[["*",[11,11,[[1,1,1,0,1,[[88,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[17,1,1,3,4,[[472,1,1,3,4]]],[18,1,1,4,5,[[613,1,1,4,5]]],[22,3,3,5,8,[[718,1,1,5,6],[720,1,1,6,7],[722,1,1,7,8]]],[23,1,1,8,9,[[754,1,1,8,9]]],[25,2,2,9,11,[[807,1,1,9,10],[826,1,1,10,11]]]],[2667,4233,8645,13787,16202,18439,18485,18557,19210,20574,21089]]],["+",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2667]]],["abroad",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[8645,18557]]],["broad",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4233]]],["forth",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18485]]],["out",[2,2,[[17,1,1,0,1,[[472,1,1,0,1]]],[18,1,1,1,2,[[613,1,1,1,2]]]],[13787,16202]]],["over",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18439]]],["plates",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19210]]],["stamp",[1,1,[[25,1,1,0,1,[[807,1,1,0,1]]]],[20574]]],["stamped",[1,1,[[25,1,1,0,1,[[826,1,1,0,1]]]],[21089]]]]},{"k":"H7555","v":[["broad",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4232]]]]},{"k":"H7556","v":[["spit",[1,1,[[2,1,1,0,1,[[104,1,1,0,1]]]],[3176]]]]},{"k":"H7557","v":[["Rakkath",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6356]]]]},{"k":"H7558","v":[["grant",[1,1,[[14,1,1,0,1,[[405,1,1,0,1]]]],[12104]]]]},{"k":"H7559","v":[["noted",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22036]]]]},{"k":"H7560","v":[["*",[7,7,[[26,7,7,0,7,[[854,2,2,0,2],[855,5,5,2,7]]]],[21898,21899,21913,21914,21915,21917,21918]]],["sign",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21913]]],["signed",[4,4,[[26,4,4,0,4,[[855,4,4,0,4]]]],[21914,21915,21917,21918]]],["written",[2,2,[[26,2,2,0,2,[[854,2,2,0,2]]]],[21898,21899]]]]},{"k":"H7561","v":[["*",[34,34,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,1,1,1,2,[[177,1,1,1,2]]],[8,1,1,2,3,[[249,1,1,2,3]]],[9,1,1,3,4,[[288,1,1,3,4]]],[10,2,2,4,6,[[298,2,2,4,6]]],[13,3,3,6,9,[[372,1,1,6,7],[386,1,1,7,8],[388,1,1,8,9]]],[15,1,1,9,10,[[421,1,1,9,10]]],[17,11,11,10,21,[[444,2,2,10,12],[445,3,3,12,15],[450,1,1,15,16],[467,1,1,16,17],[469,3,3,17,20],[475,1,1,20,21]]],[18,4,4,21,25,[[495,1,1,21,22],[514,1,1,22,23],[571,1,1,23,24],[583,1,1,24,25]]],[19,2,2,25,27,[[639,1,1,25,26],[644,1,1,26,27]]],[20,1,1,27,28,[[665,1,1,27,28]]],[22,2,2,28,30,[[728,1,1,28,29],[732,1,1,29,30]]],[26,4,4,30,34,[[858,2,2,30,32],[860,1,1,32,33],[861,1,1,33,34]]]],[2122,5548,7555,8624,9017,9032,11319,11622,11647,12544,13071,13080,13088,13093,13101,13209,13631,13695,13700,13712,13872,14139,14483,15452,15657,16721,16888,17446,18671,18740,21993,22003,22068,22091]]],["+",[3,3,[[4,1,1,0,1,[[177,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]],[17,1,1,2,3,[[467,1,1,2,3]]]],[5548,11622,13631]]],["against",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22068]]],["condemn",[10,10,[[1,1,1,0,1,[[71,1,1,0,1]]],[17,4,4,1,5,[[444,1,1,1,2],[445,1,1,2,3],[469,1,1,3,4],[475,1,1,4,5]]],[18,2,2,5,7,[[514,1,1,5,6],[571,1,1,6,7]]],[19,1,1,7,8,[[639,1,1,7,8]]],[22,2,2,8,10,[[728,1,1,8,9],[732,1,1,9,10]]]],[2122,13071,13088,13700,13872,14483,15452,16721,18671,18740]]],["condemneth",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]]],[13209,16888]]],["condemning",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9017]]],["departed",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14139]]],["trouble",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13712]]],["vexed",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7555]]],["wicked",[4,4,[[17,3,3,0,3,[[444,1,1,0,1],[445,2,2,1,3]]],[20,1,1,3,4,[[665,1,1,3,4]]]],[13080,13093,13101,17446]]],["wickedly",[9,9,[[9,1,1,0,1,[[288,1,1,0,1]]],[13,2,2,1,3,[[372,1,1,1,2],[388,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[17,1,1,4,5,[[469,1,1,4,5]]],[18,1,1,5,6,[[583,1,1,5,6]]],[26,3,3,6,9,[[858,2,2,6,8],[861,1,1,8,9]]]],[8624,11319,11647,12544,13695,15657,21993,22003,22091]]],["wickedness",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9032]]]]},{"k":"H7562","v":[["*",[30,29,[[4,1,1,0,1,[[161,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]],[17,3,3,2,5,[[469,2,2,2,4],[470,1,1,4,5]]],[18,6,6,5,11,[[482,1,1,5,6],[487,1,1,6,7],[522,1,1,7,8],[561,1,1,8,9],[602,1,1,9,10],[618,1,1,10,11]]],[19,5,5,11,16,[[631,1,1,11,12],[635,1,1,12,13],[637,1,1,13,14],[639,1,1,14,15],[643,1,1,15,16]]],[20,4,3,16,19,[[661,2,1,16,17],[665,1,1,17,18],[666,1,1,18,19]]],[22,2,2,19,21,[[736,2,2,19,21]]],[23,1,1,21,22,[[758,1,1,21,22]]],[25,4,4,22,26,[[804,1,1,22,23],[808,1,1,23,24],[832,1,1,24,25],[834,1,1,25,26]]],[27,1,1,26,27,[[871,1,1,26,27]]],[32,2,2,27,29,[[898,2,2,27,29]]]],[5184,7852,13691,13693,13728,13977,14056,14604,15269,16113,16280,16507,16609,16658,16722,16852,17375,17454,17466,18790,18792,19313,20521,20588,21241,21292,22238,22658,22659]]],["+",[3,3,[[17,1,1,0,1,[[469,1,1,0,1]]],[25,2,2,1,3,[[804,1,1,1,2],[834,1,1,2,3]]]],[13693,20521,21292]]],["Wickedness",[1,1,[[8,1,1,0,1,[[259,1,1,0,1]]]],[7852]]],["iniquity",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17375]]],["wicked",[4,4,[[17,1,1,0,1,[[469,1,1,0,1]]],[18,2,2,1,3,[[602,1,1,1,2],[618,1,1,2,3]]],[32,1,1,3,4,[[898,1,1,3,4]]]],[13691,16113,16280,22659]]],["wickedness",[21,21,[[4,1,1,0,1,[[161,1,1,0,1]]],[17,1,1,1,2,[[470,1,1,1,2]]],[18,4,4,2,6,[[482,1,1,2,3],[487,1,1,3,4],[522,1,1,4,5],[561,1,1,5,6]]],[19,5,5,6,11,[[631,1,1,6,7],[635,1,1,7,8],[637,1,1,8,9],[639,1,1,9,10],[643,1,1,10,11]]],[20,3,3,11,14,[[661,1,1,11,12],[665,1,1,12,13],[666,1,1,13,14]]],[22,2,2,14,16,[[736,2,2,14,16]]],[23,1,1,16,17,[[758,1,1,16,17]]],[25,2,2,17,19,[[808,1,1,17,18],[832,1,1,18,19]]],[27,1,1,19,20,[[871,1,1,19,20]]],[32,1,1,20,21,[[898,1,1,20,21]]]],[5184,13728,13977,14056,14604,15269,16507,16609,16658,16722,16852,17375,17454,17466,18790,18792,19313,20588,21241,22238,22658]]]]},{"k":"H7563","v":[["*",[263,249,[[0,3,2,0,2,[[17,3,2,0,2]]],[1,4,4,2,6,[[51,1,1,2,3],[58,1,1,3,4],[72,2,2,4,6]]],[3,2,2,6,8,[[132,1,1,6,7],[151,1,1,7,8]]],[4,2,2,8,10,[[177,2,2,8,10]]],[8,2,2,10,12,[[237,1,1,10,11],[259,1,1,11,12]]],[9,1,1,12,13,[[270,1,1,12,13]]],[10,1,1,13,14,[[298,1,1,13,14]]],[13,2,2,14,16,[[372,1,1,14,15],[385,1,1,15,16]]],[17,26,26,16,42,[[438,1,1,16,17],[443,1,1,17,18],[444,2,2,18,20],[445,1,1,20,21],[446,1,1,21,22],[450,1,1,22,23],[451,1,1,23,24],[453,1,1,24,25],[455,2,2,25,27],[456,4,4,27,31],[457,1,1,31,32],[459,1,1,32,33],[462,2,2,33,35],[469,2,2,35,37],[471,2,2,37,39],[473,2,2,39,41],[475,1,1,41,42]]],[18,82,80,42,122,[[478,4,4,42,46],[480,1,1,46,47],[484,1,1,47,48],[486,3,3,48,51],[487,5,5,51,56],[488,3,3,56,59],[489,1,1,59,60],[494,2,2,60,62],[503,1,1,62,63],[505,1,1,63,64],[508,1,1,64,65],[509,1,1,65,66],[511,1,1,66,67],[513,2,2,67,69],[514,13,13,69,82],[516,1,1,82,83],[527,1,1,83,84],[532,1,1,84,85],[535,2,2,85,87],[545,1,1,87,88],[548,1,1,88,89],[550,2,2,89,91],[552,3,3,91,94],[559,2,2,94,96],[568,1,1,96,97],[569,1,1,97,98],[571,3,2,98,100],[574,1,1,100,101],[578,1,1,101,102],[581,1,1,102,103],[583,1,1,103,104],[586,3,3,104,107],[589,2,1,107,108],[596,6,6,108,114],[606,1,1,114,115],[616,1,1,115,116],[617,2,2,116,118],[618,1,1,118,119],[622,1,1,119,120],[623,1,1,120,121],[624,1,1,121,122]]],[19,78,77,122,199,[[629,1,1,122,123],[630,2,2,123,125],[631,2,2,125,127],[632,1,1,127,128],[636,1,1,128,129],[637,12,12,129,141],[638,8,8,141,149],[639,7,7,149,156],[640,4,4,156,160],[641,3,3,160,163],[642,5,5,163,168],[643,1,1,168,169],[644,2,2,169,171],[645,2,2,171,173],[646,1,1,173,174],[647,1,1,174,175],[648,8,7,175,182],[651,5,5,182,187],[652,2,2,187,189],[655,5,5,189,194],[656,5,5,194,199]]],[20,7,6,199,205,[[661,1,1,199,200],[665,1,1,200,201],[666,4,3,201,204],[667,1,1,204,205]]],[22,11,11,205,216,[[681,1,1,205,206],[683,1,1,206,207],[689,1,1,207,208],[691,1,1,208,209],[692,1,1,209,210],[704,1,1,210,211],[726,1,1,211,212],[731,1,1,212,213],[733,1,1,213,214],[735,2,2,214,216]]],[23,5,5,216,221,[[749,1,1,216,217],[756,1,1,217,218],[767,1,1,218,219],[769,1,1,219,220],[774,1,1,220,221]]],[25,28,20,221,241,[[804,6,2,221,223],[808,1,1,223,224],[814,1,1,224,225],[819,5,5,225,230],[822,4,4,230,234],[834,11,7,234,241]]],[26,2,1,241,242,[[861,2,1,241,242]]],[32,1,1,242,243,[[898,1,1,242,243]]],[34,3,3,243,246,[[903,2,2,243,245],[905,1,1,245,246]]],[35,1,1,246,247,[[906,1,1,246,247]]],[38,2,2,247,249,[[927,1,1,247,248],[928,1,1,248,249]]]],[447,449,1567,1769,2145,2151,4220,4876,5548,5549,7249,7852,8131,9017,11305,11578,12921,13051,13073,13075,13089,13128,13223,13249,13281,13331,13355,13362,13371,13372,13383,13407,13442,13488,13494,13701,13709,13742,13753,13806,13808,13876,13940,13943,13944,13945,13964,14004,14026,14037,14038,14043,14044,14045,14054,14056,14061,14064,14065,14074,14112,14116,14278,14302,14348,14365,14409,14439,14449,14460,14462,14464,14466,14467,14470,14471,14478,14482,14484,14485,14488,14490,14513,14684,14735,14782,14789,14902,14980,15023,15032,15075,15079,15081,15235,15237,15403,15418,15434,15444,15488,15521,15606,15669,15757,15761,15762,15813,15951,15959,15993,16008,16017,16053,16136,16258,16267,16271,16286,16340,16350,16357,16455,16480,16488,16504,16509,16539,16645,16659,16662,16663,16667,16672,16676,16680,16681,16683,16684,16686,16688,16693,16695,16696,16698,16699,16706,16711,16719,16724,16725,16726,16729,16731,16740,16745,16752,16756,16764,16772,16783,16791,16804,16813,16815,16816,16835,16836,16844,16888,16896,16904,16906,16953,16980,16988,16991,16994,16996,17002,17011,17013,17094,17095,17098,17099,17103,17118,17139,17197,17200,17208,17211,17224,17226,17231,17236,17240,17251,17376,17444,17468,17471,17472,17477,17718,17762,17888,17917,17933,18140,18636,18720,18747,18785,18786,19084,19250,19503,19565,19690,20520,20521,20598,20730,20869,20870,20872,20873,20876,20947,20948,20969,20973,21288,21289,21291,21292,21294,21295,21299,22091,22658,22735,22744,22781,22790,23138,23141]]],["+",[9,9,[[8,1,1,0,1,[[259,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]],[18,6,6,2,8,[[494,1,1,2,3],[514,1,1,3,4],[586,1,1,4,5],[596,2,2,5,7],[624,1,1,7,8]]],[19,1,1,8,9,[[642,1,1,8,9]]]],[7852,13808,14116,14490,15762,15951,16053,16357,16836]]],["guilty",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4876]]],["man",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,1,1,1,2,[[586,1,1,1,2]]]],[13223,15761]]],["men",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13709]]],["ungodly",[8,8,[[13,1,1,0,1,[[385,1,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[18,6,6,2,8,[[478,4,4,2,6],[480,1,1,6,7],[550,1,1,7,8]]]],[11578,13701,13940,13943,13944,13945,13964,15032]]],["wicked",[241,227,[[0,3,2,0,2,[[17,3,2,0,2]]],[1,3,3,2,5,[[58,1,1,2,3],[72,2,2,3,5]]],[3,1,1,5,6,[[132,1,1,5,6]]],[4,2,2,6,8,[[177,2,2,6,8]]],[8,1,1,8,9,[[237,1,1,8,9]]],[9,1,1,9,10,[[270,1,1,9,10]]],[10,1,1,10,11,[[298,1,1,10,11]]],[13,1,1,11,12,[[372,1,1,11,12]]],[17,22,22,12,34,[[438,1,1,12,13],[443,1,1,13,14],[444,2,2,14,16],[445,1,1,16,17],[446,1,1,17,18],[451,1,1,18,19],[453,1,1,19,20],[455,2,2,20,22],[456,4,4,22,26],[457,1,1,26,27],[459,1,1,27,28],[462,2,2,28,30],[471,2,2,30,32],[473,1,1,32,33],[475,1,1,33,34]]],[18,69,67,34,101,[[484,1,1,34,35],[486,3,3,35,38],[487,5,5,38,43],[488,3,3,43,46],[489,1,1,46,47],[494,1,1,47,48],[503,1,1,48,49],[505,1,1,49,50],[508,1,1,50,51],[509,1,1,51,52],[511,1,1,52,53],[513,2,2,53,55],[514,12,12,55,67],[516,1,1,67,68],[527,1,1,68,69],[532,1,1,69,70],[535,2,2,70,72],[545,1,1,72,73],[548,1,1,73,74],[550,1,1,74,75],[552,3,3,75,78],[559,2,2,78,80],[568,1,1,80,81],[569,1,1,81,82],[571,3,2,82,84],[574,1,1,84,85],[578,1,1,85,86],[581,1,1,86,87],[583,1,1,87,88],[586,1,1,88,89],[589,2,1,89,90],[596,4,4,90,94],[606,1,1,94,95],[616,1,1,95,96],[617,2,2,96,98],[618,1,1,98,99],[622,1,1,99,100],[623,1,1,100,101]]],[19,77,76,101,177,[[629,1,1,101,102],[630,2,2,102,104],[631,2,2,104,106],[632,1,1,106,107],[636,1,1,107,108],[637,12,12,108,120],[638,8,8,120,128],[639,7,7,128,135],[640,4,4,135,139],[641,3,3,139,142],[642,4,4,142,146],[643,1,1,146,147],[644,2,2,147,149],[645,2,2,149,151],[646,1,1,151,152],[647,1,1,152,153],[648,8,7,153,160],[651,5,5,160,165],[652,2,2,165,167],[655,5,5,167,172],[656,5,5,172,177]]],[20,7,6,177,183,[[661,1,1,177,178],[665,1,1,178,179],[666,4,3,179,182],[667,1,1,182,183]]],[22,11,11,183,194,[[681,1,1,183,184],[683,1,1,184,185],[689,1,1,185,186],[691,1,1,186,187],[692,1,1,187,188],[704,1,1,188,189],[726,1,1,189,190],[731,1,1,190,191],[733,1,1,191,192],[735,2,2,192,194]]],[23,5,5,194,199,[[749,1,1,194,195],[756,1,1,195,196],[767,1,1,196,197],[769,1,1,197,198],[774,1,1,198,199]]],[25,28,20,199,219,[[804,6,2,199,201],[808,1,1,201,202],[814,1,1,202,203],[819,5,5,203,208],[822,4,4,208,212],[834,11,7,212,219]]],[26,2,1,219,220,[[861,2,1,219,220]]],[32,1,1,220,221,[[898,1,1,220,221]]],[34,3,3,221,224,[[903,2,2,221,223],[905,1,1,223,224]]],[35,1,1,224,225,[[906,1,1,224,225]]],[38,2,2,225,227,[[927,1,1,225,226],[928,1,1,226,227]]]],[447,449,1769,2145,2151,4220,5548,5549,7249,8131,9017,11305,12921,13051,13073,13075,13089,13128,13249,13281,13331,13355,13362,13371,13372,13383,13407,13442,13488,13494,13742,13753,13806,13876,14004,14026,14037,14038,14043,14044,14045,14054,14056,14061,14064,14065,14074,14112,14278,14302,14348,14365,14409,14439,14449,14460,14462,14464,14466,14467,14470,14471,14478,14482,14484,14485,14488,14513,14684,14735,14782,14789,14902,14980,15023,15075,15079,15081,15235,15237,15403,15418,15434,15444,15488,15521,15606,15669,15757,15813,15959,15993,16008,16017,16136,16258,16267,16271,16286,16340,16350,16455,16480,16488,16504,16509,16539,16645,16659,16662,16663,16667,16672,16676,16680,16681,16683,16684,16686,16688,16693,16695,16696,16698,16699,16706,16711,16719,16724,16725,16726,16729,16731,16740,16745,16752,16756,16764,16772,16783,16791,16804,16813,16815,16816,16835,16844,16888,16896,16904,16906,16953,16980,16988,16991,16994,16996,17002,17011,17013,17094,17095,17098,17099,17103,17118,17139,17197,17200,17208,17211,17224,17226,17231,17236,17240,17251,17376,17444,17468,17471,17472,17477,17718,17762,17888,17917,17933,18140,18636,18720,18747,18785,18786,19084,19250,19503,19565,19690,20520,20521,20598,20730,20869,20870,20872,20873,20876,20947,20948,20969,20973,21288,21289,21291,21292,21294,21295,21299,22091,22658,22735,22744,22781,22790,23138,23141]]],["wrong",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1567]]]]},{"k":"H7564","v":[["*",[15,15,[[4,3,3,0,3,[[161,2,2,0,2],[177,1,1,2,3]]],[19,2,2,3,5,[[638,1,1,3,4],[640,1,1,4,5]]],[22,1,1,5,6,[[687,1,1,5,6]]],[25,5,5,6,11,[[806,1,1,6,7],[819,2,2,7,9],[834,2,2,9,11]]],[37,1,1,11,12,[[915,1,1,11,12]]],[38,3,3,12,15,[[925,1,1,12,13],[927,1,1,13,14],[928,1,1,14,15]]]],[5161,5162,5549,16693,16753,17847,20552,20869,20876,21292,21299,22944,23093,23135,23139]]],["+",[2,2,[[25,2,2,0,2,[[819,1,1,0,1],[834,1,1,1,2]]]],[20876,21299]]],["fault",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5549]]],["wickedly",[1,1,[[38,1,1,0,1,[[928,1,1,0,1]]]],[23139]]],["wickedness",[11,11,[[4,2,2,0,2,[[161,2,2,0,2]]],[19,2,2,2,4,[[638,1,1,2,3],[640,1,1,3,4]]],[22,1,1,4,5,[[687,1,1,4,5]]],[25,3,3,5,8,[[806,1,1,5,6],[819,1,1,6,7],[834,1,1,7,8]]],[37,1,1,8,9,[[915,1,1,8,9]]],[38,2,2,9,11,[[925,1,1,9,10],[927,1,1,10,11]]]],[5161,5162,16693,16753,17847,20552,20869,21292,22944,23093,23135]]]]},{"k":"H7565","v":[["*",[7,6,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[440,1,1,1,2]]],[18,2,2,2,4,[[553,1,1,2,3],[555,1,1,3,4]]],[21,2,1,4,5,[[678,2,1,4,5]]],[34,1,1,5,6,[[905,1,1,5,6]]]],[5782,12958,15084,15161,17646,22773]]],["+",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12958]]],["arrows",[1,1,[[18,1,1,0,1,[[553,1,1,0,1]]]],[15084]]],["coals",[3,2,[[21,2,1,0,1,[[678,2,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[17646,22773]]],["heat",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5782]]],["thunderbolts",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15161]]]]},{"k":"H7566","v":[["Resheph",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10560]]]]},{"k":"H7567","v":[["*",[2,2,[[23,1,1,0,1,[[749,1,1,0,1]]],[38,1,1,1,2,[[925,1,1,1,2]]]],[19075,23093]]],["impoverish",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19075]]],["impoverished",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23093]]]]},{"k":"H7568","v":[["*",[22,21,[[1,4,3,0,3,[[76,3,2,0,2],[87,1,1,2,3]]],[17,1,1,3,4,[[453,1,1,3,4]]],[18,8,8,4,12,[[486,1,1,4,5],[487,1,1,5,6],[502,1,1,6,7],[508,1,1,7,8],[512,2,2,8,10],[534,1,1,10,11],[617,1,1,11,12]]],[19,2,2,12,14,[[628,1,1,12,13],[656,1,1,13,14]]],[24,1,1,14,15,[[797,1,1,14,15]]],[25,4,4,15,19,[[813,1,1,15,16],[818,1,1,16,17],[820,1,1,17,18],[833,1,1,18,19]]],[27,2,2,19,21,[[866,1,1,19,20],[868,1,1,20,21]]]],[2276,2277,2637,13284,14036,14050,14266,14335,14417,14418,14774,16268,16417,17229,20323,20693,20845,20889,21251,22153,22190]]],["+",[4,4,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[18,2,2,2,4,[[502,1,1,2,3],[508,1,1,3,4]]]],[2276,2637,14266,14335]]],["net",[18,18,[[1,2,2,0,2,[[76,2,2,0,2]]],[17,1,1,2,3,[[453,1,1,2,3]]],[18,6,6,3,9,[[486,1,1,3,4],[487,1,1,4,5],[512,2,2,5,7],[534,1,1,7,8],[617,1,1,8,9]]],[19,2,2,9,11,[[628,1,1,9,10],[656,1,1,10,11]]],[24,1,1,11,12,[[797,1,1,11,12]]],[25,4,4,12,16,[[813,1,1,12,13],[818,1,1,13,14],[820,1,1,14,15],[833,1,1,15,16]]],[27,2,2,16,18,[[866,1,1,16,17],[868,1,1,17,18]]]],[2276,2277,13284,14036,14050,14417,14418,14774,16268,16417,17229,20323,20693,20845,20889,21251,22153,22190]]]]},{"k":"H7569","v":[["*",[2,2,[[10,1,1,0,1,[[296,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]]],[8917,20600]]],["chain",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20600]]],["chains",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8917]]]]},{"k":"H7570","v":[["*",[3,3,[[17,2,2,0,2,[[465,1,1,0,1],[476,1,1,1,2]]],[25,1,1,2,3,[[825,1,1,2,3]]]],[13584,13919,21061]]],["boil",[2,2,[[17,1,1,0,1,[[476,1,1,0,1]]],[25,1,1,1,2,[[825,1,1,1,2]]]],[13919,21061]]],["boiled",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13584]]]]},{"k":"H7571","v":[["well",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21061]]]]},{"k":"H7572","v":[]},{"k":"H7573","v":[["bind",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22592]]]]},{"k":"H7574","v":[["*",[4,4,[[10,2,2,0,2,[[309,2,2,0,2]]],[17,1,1,2,3,[[465,1,1,2,3]]],[18,1,1,3,4,[[597,1,1,3,4]]]],[9391,9392,13561,16078]]],["juniper",[2,2,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,1,1,1,2,[[597,1,1,1,2]]]],[13561,16078]]],["tree",[2,2,[[10,2,2,0,2,[[309,2,2,0,2]]]],[9391,9392]]]]},{"k":"H7575","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4778,4779]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4779]]],["Rithmah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4778]]]]},{"k":"H7576","v":[["bound",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22722]]]]},{"k":"H7577","v":[["chains",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18439]]]]},{"k":"H7578","v":[["trembling",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22267]]]]},{"k":"H7579","v":[["*",[19,18,[[0,8,7,0,7,[[23,8,7,0,7]]],[4,1,1,7,8,[[181,1,1,7,8]]],[5,3,3,8,11,[[195,3,3,8,11]]],[7,1,1,11,12,[[233,1,1,11,12]]],[8,2,2,12,14,[[242,1,1,12,13],[244,1,1,13,14]]],[9,1,1,14,15,[[289,1,1,14,15]]],[12,1,1,15,16,[[348,1,1,15,16]]],[22,1,1,16,17,[[690,1,1,16,17]]],[33,1,1,17,18,[[902,1,1,17,18]]]],[602,604,610,611,634,635,636,5690,6058,6060,6064,7158,7358,7402,8669,10691,17903,22726]]],["Draw",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22726]]],["draw",[8,8,[[0,6,6,0,6,[[23,6,6,0,6]]],[8,1,1,6,7,[[244,1,1,6,7]]],[22,1,1,7,8,[[690,1,1,7,8]]]],[602,604,610,611,634,635,7402,17903]]],["drawer",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5690]]],["drawers",[3,3,[[5,3,3,0,3,[[195,3,3,0,3]]]],[6058,6060,6064]]],["drawn",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7158]]],["drew",[5,5,[[0,2,2,0,2,[[23,2,2,0,2]]],[8,1,1,2,3,[[242,1,1,2,3]]],[9,1,1,3,4,[[289,1,1,3,4]]],[12,1,1,4,5,[[348,1,1,4,5]]]],[611,636,7358,8669,10691]]]]},{"k":"H7580","v":[["*",[20,17,[[6,1,1,0,1,[[224,1,1,0,1]]],[17,1,1,1,2,[[472,1,1,1,2]]],[18,4,4,2,6,[[499,1,1,2,3],[515,1,1,3,4],[551,1,1,4,5],[581,1,1,5,6]]],[22,1,1,6,7,[[683,1,1,6,7]]],[23,5,3,7,10,[[746,1,1,7,8],[769,3,1,8,9],[795,1,1,9,10]]],[25,1,1,10,11,[[823,1,1,10,11]]],[27,2,1,11,12,[[872,2,1,11,12]]],[28,1,1,12,13,[[878,1,1,12,13]]],[29,3,3,13,16,[[879,1,1,13,14],[881,2,2,14,16]]],[35,1,1,16,17,[[908,1,1,16,17]]]],[6914,13773,14217,14498,15052,15592,17768,18980,19564,20250,21001,22250,22359,22366,22399,22403,22823]]],["+",[2,1,[[23,2,1,0,1,[[769,2,1,0,1]]]],[19564]]],["roar",[10,9,[[18,2,2,0,2,[[551,1,1,0,1],[581,1,1,1,2]]],[22,1,1,2,3,[[683,1,1,2,3]]],[23,2,2,3,5,[[769,1,1,3,4],[795,1,1,4,5]]],[27,2,1,5,6,[[872,2,1,5,6]]],[28,1,1,6,7,[[878,1,1,6,7]]],[29,2,2,7,9,[[879,1,1,7,8],[881,1,1,8,9]]]],[15052,15592,17768,19564,20250,22250,22359,22366,22399]]],["roared",[4,4,[[6,1,1,0,1,[[224,1,1,0,1]]],[18,1,1,1,2,[[515,1,1,1,2]]],[23,1,1,2,3,[[746,1,1,2,3]]],[29,1,1,3,4,[[881,1,1,3,4]]]],[6914,14498,18980,22403]]],["roareth",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13773]]],["roaring",[3,3,[[18,1,1,0,1,[[499,1,1,0,1]]],[25,1,1,1,2,[[823,1,1,1,2]]],[35,1,1,2,3,[[908,1,1,2,3]]]],[14217,21001,22823]]]]},{"k":"H7581","v":[["*",[7,7,[[17,2,2,0,2,[[438,1,1,0,1],[439,1,1,1,2]]],[18,2,2,2,4,[[499,1,1,2,3],[509,1,1,3,4]]],[22,1,1,4,5,[[683,1,1,4,5]]],[25,1,1,5,6,[[820,1,1,5,6]]],[37,1,1,6,7,[[921,1,1,6,7]]]],[12928,12940,14205,14358,17768,20888,23031]]],["roaring",[6,6,[[17,1,1,0,1,[[439,1,1,0,1]]],[18,2,2,1,3,[[499,1,1,1,2],[509,1,1,2,3]]],[22,1,1,3,4,[[683,1,1,3,4]]],[25,1,1,4,5,[[820,1,1,4,5]]],[37,1,1,5,6,[[921,1,1,5,6]]]],[12940,14205,14358,17768,20888,23031]]],["roarings",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12928]]]]},{"k":"H7582","v":[["*",[6,5,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,5,4,1,5,[[684,2,1,1,2],[695,2,2,2,4],[715,1,1,4,5]]]],[10086,17780,17995,17996,18378]]],["desolate",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17780]]],["rush",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17996]]],["rushing",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17995]]],["waste",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10086,18378]]],["wasted",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17780]]]]},{"k":"H7583","v":[["wondering",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[612]]]]},{"k":"H7584","v":[["desolation",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16427]]]]},{"k":"H7585","v":[["*",[65,63,[[0,4,4,0,4,[[36,1,1,0,1],[41,1,1,1,2],[43,2,2,2,4]]],[3,2,2,4,6,[[132,2,2,4,6]]],[4,1,1,6,7,[[184,1,1,6,7]]],[8,1,1,7,8,[[237,1,1,7,8]]],[9,1,1,8,9,[[288,1,1,8,9]]],[10,2,2,9,11,[[292,2,2,9,11]]],[17,8,8,11,19,[[442,1,1,11,12],[446,1,1,12,13],[449,1,1,13,14],[452,2,2,14,16],[456,1,1,16,17],[459,1,1,17,18],[461,1,1,18,19]]],[18,16,15,19,34,[[483,1,1,19,20],[486,1,1,20,21],[493,1,1,21,22],[495,1,1,22,23],[507,1,1,23,24],[508,1,1,24,25],[526,3,2,25,27],[532,1,1,27,28],[563,1,1,28,29],[565,1,1,29,30],[566,1,1,30,31],[593,1,1,31,32],[616,1,1,32,33],[618,1,1,33,34]]],[19,9,9,34,43,[[628,1,1,34,35],[632,1,1,35,36],[634,1,1,36,37],[636,1,1,37,38],[642,2,2,38,40],[650,1,1,40,41],[654,1,1,41,42],[657,1,1,42,43]]],[20,1,1,43,44,[[667,1,1,43,44]]],[21,1,1,44,45,[[678,1,1,44,45]]],[22,9,9,45,54,[[683,1,1,45,46],[692,3,3,46,49],[706,2,2,49,51],[716,2,2,51,53],[735,1,1,53,54]]],[25,5,5,54,59,[[832,3,3,54,57],[833,2,2,57,59]]],[27,2,1,59,60,[[874,2,1,59,60]]],[29,1,1,60,61,[[887,1,1,60,61]]],[31,1,1,61,62,[[890,1,1,61,62]]],[34,1,1,62,63,[[904,1,1,62,63]]]],[1118,1290,1353,1355,4224,4227,5780,7246,8608,8776,8779,13017,13116,13194,13273,13276,13368,13455,13473,13990,14038,14102,14123,14322,14348,14662,14663,14747,15297,15311,15374,15851,16247,16283,16412,16522,16602,16656,16818,16831,17058,17189,17267,17485,17646,17753,17937,17939,17943,18179,18182,18400,18408,18774,21245,21246,21247,21269,21275,22280,22497,22550,22753]]],["+",[4,4,[[17,1,1,0,1,[[446,1,1,0,1]]],[18,1,1,1,2,[[563,1,1,1,2]]],[19,2,2,2,4,[[642,1,1,2,3],[650,1,1,3,4]]]],[13116,15297,16831,17058]]],["Hell",[4,4,[[17,1,1,0,1,[[461,1,1,0,1]]],[19,2,2,1,3,[[642,1,1,1,2],[654,1,1,2,3]]],[22,1,1,3,4,[[692,1,1,3,4]]]],[13473,16818,17189,17937]]],["grave",[30,28,[[0,4,4,0,4,[[36,1,1,0,1],[41,1,1,1,2],[43,2,2,2,4]]],[8,1,1,4,5,[[237,1,1,4,5]]],[10,2,2,5,7,[[292,2,2,5,7]]],[17,5,5,7,12,[[442,1,1,7,8],[449,1,1,8,9],[452,1,1,9,10],[456,1,1,10,11],[459,1,1,11,12]]],[18,8,7,12,19,[[483,1,1,12,13],[507,1,1,13,14],[508,1,1,14,15],[526,3,2,15,17],[565,1,1,17,18],[566,1,1,18,19]]],[19,2,2,19,21,[[628,1,1,19,20],[657,1,1,20,21]]],[20,1,1,21,22,[[667,1,1,21,22]]],[21,1,1,22,23,[[678,1,1,22,23]]],[22,3,3,23,26,[[692,1,1,23,24],[716,2,2,24,26]]],[25,1,1,26,27,[[832,1,1,26,27]]],[27,2,1,27,28,[[874,2,1,27,28]]]],[1118,1290,1353,1355,7246,8776,8779,13017,13194,13273,13368,13455,13990,14322,14348,14662,14663,15311,15374,16412,17267,17485,17646,17939,18400,18408,21245,22280]]],["grave's",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16283]]],["hell",[23,23,[[4,1,1,0,1,[[184,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,6,6,2,8,[[486,1,1,2,3],[493,1,1,3,4],[495,1,1,4,5],[532,1,1,5,6],[593,1,1,6,7],[616,1,1,7,8]]],[19,3,3,8,11,[[632,1,1,8,9],[634,1,1,9,10],[636,1,1,10,11]]],[22,5,5,11,16,[[683,1,1,11,12],[692,1,1,12,13],[706,2,2,13,15],[735,1,1,15,16]]],[25,4,4,16,20,[[832,2,2,16,18],[833,2,2,18,20]]],[29,1,1,20,21,[[887,1,1,20,21]]],[31,1,1,21,22,[[890,1,1,21,22]]],[34,1,1,22,23,[[904,1,1,22,23]]]],[5780,8608,14038,14102,14123,14747,15851,16247,16522,16602,16656,17753,17943,18179,18182,18774,21246,21247,21269,21275,22497,22550,22753]]],["pit",[3,3,[[3,2,2,0,2,[[132,2,2,0,2]]],[17,1,1,2,3,[[452,1,1,2,3]]]],[4224,4227,13276]]]]},{"k":"H7586","v":[["*",[401,330,[[0,3,3,0,3,[[35,2,2,0,2],[45,1,1,2,3]]],[1,1,1,3,4,[[55,1,1,3,4]]],[3,1,1,4,5,[[142,1,1,4,5]]],[8,297,241,5,246,[[244,19,16,5,21],[245,7,7,21,28],[246,10,8,28,36],[248,15,12,36,48],[249,31,27,48,75],[250,23,17,75,92],[251,11,10,92,102],[252,18,18,102,120],[253,35,25,120,145],[254,22,16,145,161],[255,7,7,161,168],[256,4,3,168,171],[257,8,7,171,178],[258,23,18,178,196],[259,15,10,196,206],[260,1,1,206,207],[261,15,11,207,218],[262,3,2,218,220],[263,17,15,220,235],[264,2,2,235,237],[266,11,9,237,246]]],[9,66,57,246,303,[[267,11,11,246,257],[268,8,7,257,264],[269,9,7,264,271],[270,7,5,271,276],[271,1,1,276,277],[272,3,3,277,280],[273,1,1,280,281],[275,7,6,281,287],[278,1,1,287,288],[282,2,2,288,290],[285,2,2,290,292],[287,13,10,292,302],[288,1,1,302,303]]],[12,32,26,303,329,[[338,2,2,303,305],[341,1,1,305,306],[342,1,1,306,307],[343,1,1,307,308],[345,2,1,308,309],[346,2,1,309,310],[347,12,10,310,320],[348,1,1,320,321],[349,7,5,321,326],[350,1,1,326,327],[352,1,1,327,328],[363,1,1,328,329]]],[22,1,1,329,330,[[688,1,1,329,330]]]],[1077,1078,1396,1670,4502,7393,7394,7396,7398,7399,7401,7406,7408,7409,7410,7412,7413,7415,7416,7417,7418,7429,7430,7432,7433,7434,7439,7444,7449,7450,7451,7452,7456,7457,7458,7460,7486,7487,7488,7489,7492,7494,7495,7496,7498,7500,7501,7507,7509,7510,7524,7525,7526,7527,7528,7529,7532,7541,7542,7543,7544,7545,7546,7548,7549,7550,7551,7552,7553,7554,7555,7557,7558,7559,7560,7561,7564,7565,7566,7567,7569,7571,7572,7573,7575,7576,7580,7584,7586,7591,7594,7595,7596,7597,7609,7610,7612,7614,7615,7616,7617,7618,7620,7626,7629,7630,7631,7632,7633,7637,7649,7650,7651,7652,7655,7656,7657,7673,7675,7676,7677,7678,7681,7682,7683,7684,7685,7686,7687,7688,7689,7691,7693,7694,7695,7696,7697,7698,7699,7700,7701,7703,7704,7705,7706,7707,7708,7710,7712,7713,7715,7716,7717,7720,7721,7723,7724,7725,7726,7727,7730,7755,7756,7757,7758,7760,7762,7763,7779,7782,7783,7793,7794,7796,7799,7800,7808,7809,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7829,7831,7834,7835,7836,7837,7838,7840,7841,7842,7843,7844,7846,7847,7848,7855,7861,7905,7906,7907,7908,7909,7910,7911,7912,7917,7922,7926,7930,7931,7934,7945,7946,7947,7948,7949,7950,7951,7952,7954,7955,7956,7957,7962,7963,7967,7970,7972,8011,8012,8013,8014,8015,8016,8017,8020,8021,8023,8024,8026,8027,8028,8034,8039,8043,8044,8045,8046,8053,8054,8056,8057,8059,8061,8064,8082,8087,8088,8089,8091,8094,8095,8121,8122,8124,8128,8130,8134,8173,8177,8180,8195,8228,8229,8230,8233,8234,8236,8293,8431,8434,8528,8535,8581,8582,8584,8586,8587,8588,8591,8592,8593,8594,8603,10300,10301,10409,10438,10478,10608,10654,10661,10662,10663,10664,10665,10666,10667,10670,10671,10672,10675,10721,10722,10739,10743,10749,10763,10820,11105,17879]]],["+",[6,6,[[8,3,3,0,3,[[246,1,1,0,1],[250,1,1,1,2],[254,1,1,2,3]]],[9,2,2,3,5,[[270,1,1,3,4],[287,1,1,4,5]]],[12,1,1,5,6,[[349,1,1,5,6]]]],[7460,7595,7716,8128,8588,10722]]],["Saul",[359,304,[[0,2,2,0,2,[[35,2,2,0,2]]],[8,274,229,2,231,[[244,18,16,2,18],[245,5,5,18,23],[246,9,8,23,31],[248,15,12,31,43],[249,29,26,43,69],[250,22,17,69,86],[251,10,9,86,95],[252,18,18,95,113],[253,29,23,113,136],[254,20,16,136,152],[255,5,5,152,157],[256,4,3,157,160],[257,8,7,160,167],[258,22,17,167,184],[259,13,8,184,192],[260,1,1,192,193],[261,14,10,193,203],[262,3,2,203,205],[263,17,15,205,220],[264,2,2,220,222],[266,10,9,222,231]]],[9,55,51,231,282,[[267,11,11,231,242],[268,6,6,242,248],[269,7,5,248,253],[270,3,3,253,256],[271,1,1,256,257],[272,2,2,257,259],[273,1,1,259,260],[275,6,6,260,266],[278,1,1,266,267],[282,2,2,267,269],[285,2,2,269,271],[287,12,10,271,281],[288,1,1,281,282]]],[12,27,21,282,303,[[342,1,1,282,283],[345,2,1,283,284],[346,2,1,284,285],[347,12,10,285,295],[348,1,1,295,296],[349,6,4,296,300],[350,1,1,300,301],[352,1,1,301,302],[363,1,1,302,303]]],[22,1,1,303,304,[[688,1,1,303,304]]]],[1077,1078,7393,7394,7396,7398,7399,7401,7406,7408,7409,7410,7412,7413,7415,7416,7417,7418,7429,7430,7434,7439,7444,7449,7450,7451,7452,7456,7457,7458,7460,7486,7487,7488,7489,7492,7494,7495,7496,7498,7500,7501,7507,7509,7510,7524,7525,7526,7527,7528,7529,7532,7541,7542,7543,7544,7545,7546,7548,7549,7550,7551,7552,7553,7554,7555,7557,7559,7560,7561,7564,7565,7566,7567,7569,7571,7572,7573,7575,7576,7580,7584,7586,7591,7594,7595,7596,7597,7609,7612,7614,7615,7616,7617,7618,7620,7626,7629,7630,7631,7632,7633,7637,7649,7650,7651,7652,7655,7656,7657,7673,7675,7676,7677,7678,7681,7682,7683,7684,7685,7686,7687,7688,7689,7691,7693,7694,7696,7697,7698,7700,7701,7703,7704,7705,7706,7707,7708,7710,7712,7713,7715,7716,7717,7720,7721,7723,7724,7725,7726,7727,7730,7756,7757,7758,7762,7763,7779,7782,7783,7793,7794,7796,7799,7800,7808,7809,7817,7818,7819,7820,7821,7822,7823,7824,7825,7827,7829,7831,7834,7835,7836,7837,7838,7840,7841,7842,7846,7847,7848,7855,7861,7905,7906,7907,7908,7909,7910,7911,7912,7922,7926,7930,7931,7934,7945,7946,7947,7948,7949,7950,7951,7952,7954,7955,7956,7957,7962,7963,7967,7970,7972,8011,8012,8013,8014,8015,8016,8017,8020,8021,8023,8024,8026,8027,8028,8034,8039,8043,8044,8045,8046,8053,8054,8056,8057,8061,8064,8082,8087,8088,8089,8091,8124,8128,8130,8134,8177,8180,8195,8228,8229,8230,8233,8234,8236,8293,8431,8434,8528,8535,8581,8582,8584,8586,8587,8588,8591,8592,8593,8594,8603,10438,10608,10654,10661,10662,10663,10664,10665,10666,10667,10670,10671,10672,10675,10721,10739,10743,10749,10763,10820,11105,17879]]],["Saul's",[29,28,[[8,20,19,0,19,[[244,1,1,0,1],[245,2,2,1,3],[249,2,1,3,4],[251,1,1,4,5],[253,6,6,5,11],[254,1,1,11,12],[255,2,2,12,14],[258,1,1,14,15],[259,2,2,15,17],[261,1,1,17,18],[266,1,1,18,19]]],[9,9,9,19,28,[[268,2,2,19,21],[269,2,2,21,23],[270,3,3,23,26],[272,1,1,26,27],[275,1,1,27,28]]]],[7394,7432,7433,7558,7610,7681,7686,7695,7696,7699,7704,7708,7755,7760,7826,7843,7844,7917,8011,8057,8059,8094,8095,8121,8122,8124,8173,8236]]],["Shaul",[7,7,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]],[3,1,1,2,3,[[142,1,1,2,3]]],[12,4,4,3,7,[[338,2,2,3,5],[341,1,1,5,6],[343,1,1,6,7]]]],[1396,1670,4502,10300,10301,10409,10478]]]]},{"k":"H7587","v":[["Shaulites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4502]]]]},{"k":"H7588","v":[["*",[18,16,[[18,4,3,0,3,[[517,1,1,0,1],[542,2,1,1,2],[551,1,1,2,3]]],[22,8,7,3,10,[[683,1,1,3,4],[691,1,1,4,5],[695,3,2,5,7],[702,1,1,7,8],[703,1,1,8,9],[744,1,1,9,10]]],[23,4,4,10,14,[[769,1,1,10,11],[790,1,1,11,12],[792,1,1,12,13],[795,1,1,13,14]]],[27,1,1,14,15,[[871,1,1,14,15]]],[29,1,1,15,16,[[880,1,1,15,16]]]],[14527,14867,15071,17753,17910,17995,17996,18103,18123,18928,19565,20062,20125,20267,22239,22381]]],["horrible",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14527]]],["noise",[8,7,[[18,2,1,0,1,[[542,2,1,0,1]]],[22,3,3,1,4,[[702,1,1,1,2],[703,1,1,2,3],[744,1,1,3,4]]],[23,3,3,4,7,[[769,1,1,4,5],[790,1,1,5,6],[795,1,1,6,7]]]],[14867,18103,18123,18928,19565,20062,20267]]],["pomp",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17753]]],["rushing",[3,2,[[22,3,2,0,2,[[695,3,2,0,2]]]],[17995,17996]]],["tumult",[3,3,[[18,1,1,0,1,[[551,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]],[29,1,1,2,3,[[880,1,1,2,3]]]],[15071,22239,22381]]],["tumultuous",[2,2,[[22,1,1,0,1,[[691,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[17910,20125]]]]},{"k":"H7589","v":[["*",[3,3,[[25,3,3,0,3,[[826,2,2,0,2],[837,1,1,2,3]]]],[21089,21098,21364]]],["despite",[1,1,[[25,1,1,0,1,[[826,1,1,0,1]]]],[21089]]],["despiteful",[2,2,[[25,2,2,0,2,[[826,1,1,0,1],[837,1,1,1,2]]]],[21098,21364]]]]},{"k":"H7590","v":[["*",[3,3,[[25,3,3,0,3,[[817,1,1,0,1],[829,2,2,1,3]]]],[20819,21181,21183]]],["despise",[2,2,[[25,2,2,0,2,[[817,1,1,0,1],[829,1,1,1,2]]]],[20819,21183]]],["despised",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21181]]]]},{"k":"H7591","v":[["destruction",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18107]]]]},{"k":"H7592","v":[["*",[172,157,[[0,13,11,0,11,[[23,2,2,0,2],[25,1,1,2,3],[31,3,2,3,5],[36,1,1,5,6],[37,1,1,6,7],[39,1,1,7,8],[42,3,2,8,10],[43,1,1,10,11]]],[1,7,7,11,18,[[52,1,1,11,12],[60,1,1,12,13],[61,2,2,13,15],[62,1,1,15,16],[67,1,1,16,17],[71,1,1,17,18]]],[3,1,1,18,19,[[143,1,1,18,19]]],[4,8,8,19,27,[[156,1,1,19,20],[158,1,1,20,21],[162,1,1,21,22],[165,1,1,22,23],[166,1,1,23,24],[170,2,2,24,26],[184,1,1,26,27]]],[5,5,5,27,32,[[190,2,2,27,29],[195,1,1,29,30],[201,1,1,30,31],[205,1,1,31,32]]],[6,14,14,32,46,[[211,2,2,32,34],[214,1,1,34,35],[215,1,1,35,36],[218,3,3,36,39],[223,2,2,39,41],[228,2,2,41,43],[230,3,3,43,46]]],[8,31,28,46,74,[[236,5,4,46,50],[237,1,1,50,51],[243,1,1,51,52],[245,2,2,52,54],[247,3,3,54,57],[249,1,1,57,58],[252,2,2,58,60],[254,1,1,60,61],[255,4,2,61,63],[257,3,3,63,66],[258,2,2,66,68],[260,2,2,68,70],[263,2,2,70,72],[265,2,2,72,74]]],[9,11,10,74,84,[[268,1,1,74,75],[269,1,1,75,76],[271,2,2,76,78],[274,1,1,78,79],[277,1,1,79,80],[278,1,1,80,81],[280,1,1,81,82],[282,1,1,82,83],[286,2,1,83,84]]],[10,15,9,84,93,[[292,5,3,84,87],[293,8,4,87,91],[300,1,1,91,92],[309,1,1,92,93]]],[11,6,6,93,99,[[314,2,2,93,95],[316,2,2,95,97],[318,1,1,97,98],[320,1,1,98,99]]],[12,5,5,99,104,[[341,1,1,99,100],[347,1,1,100,101],[351,2,2,101,103],[355,1,1,103,104]]],[13,6,4,104,108,[[367,4,2,104,106],[375,1,1,106,107],[377,1,1,107,108]]],[14,1,1,108,109,[[410,1,1,108,109]]],[15,2,2,109,111,[[413,1,1,109,110],[425,1,1,110,111]]],[17,7,7,111,118,[[443,1,1,111,112],[447,1,1,112,113],[456,1,1,113,114],[466,1,1,114,115],[473,1,1,115,116],[475,1,1,116,117],[477,1,1,117,118]]],[18,10,10,118,128,[[479,1,1,118,119],[498,1,1,119,120],[504,1,1,120,121],[512,1,1,121,122],[517,1,1,122,123],[555,1,1,123,124],[582,1,1,124,125],[586,1,1,125,126],[599,1,1,126,127],[614,1,1,127,128]]],[19,2,2,128,130,[[647,1,1,128,129],[657,1,1,129,130]]],[20,2,2,130,132,[[660,1,1,130,131],[665,1,1,131,132]]],[22,8,7,132,139,[[685,3,2,132,134],[708,1,1,134,135],[719,1,1,135,136],[723,1,1,136,137],[736,1,1,137,138],[743,1,1,138,139]]],[23,11,11,139,150,[[750,1,1,139,140],[759,1,1,140,141],[762,1,1,141,142],[767,1,1,142,143],[774,1,1,143,144],[780,1,1,144,145],[781,1,1,145,146],[782,2,2,146,148],[792,1,1,148,149],[794,1,1,149,150]]],[24,1,1,150,151,[[800,1,1,150,151]]],[25,1,1,151,152,[[822,1,1,151,152]]],[27,1,1,152,153,[[865,1,1,152,153]]],[31,1,1,153,154,[[892,1,1,153,154]]],[32,1,1,154,155,[[899,1,1,154,155]]],[36,1,1,155,156,[[910,1,1,155,156]]],[37,1,1,156,157,[[920,1,1,156,157]]]],[638,648,699,945,957,1098,1140,1179,1297,1317,1343,1601,1808,1851,1852,1881,2006,2127,4575,5036,5106,5198,5286,5316,5395,5400,5765,5916,5931,6051,6220,6371,6510,6523,6619,6648,6733,6743,6745,6890,6902,6998,7008,7072,7077,7081,7229,7232,7239,7240,7260,7379,7422,7440,7473,7477,7479,7545,7640,7674,7728,7736,7758,7797,7800,7802,7812,7814,7866,7869,7948,7958,7986,7999,8050,8094,8151,8155,8219,8266,8306,8374,8449,8572,8786,8790,8792,8821,8826,8827,8829,9092,9391,9560,9561,9606,9631,9679,9733,10395,10672,10784,10788,10900,11201,11205,11376,11437,12223,12298,12677,13037,13135,13384,13618,13796,13871,13926,13953,14195,14289,14421,14531,15131,15646,15765,16095,16225,16958,17258,17343,17439,17793,17794,18219,18479,18572,18788,18898,19105,19320,19397,19517,19673,19859,19891,19909,19922,20099,20171,20424,20965,22145,22576,22667,22866,23017]]],["+",[23,19,[[0,5,4,0,4,[[37,1,1,0,1],[39,1,1,1,2],[42,2,1,2,3],[43,1,1,3,4]]],[5,1,1,4,5,[[190,1,1,4,5]]],[6,1,1,5,6,[[228,1,1,5,6]]],[8,9,7,6,13,[[245,1,1,6,7],[252,1,1,7,8],[255,4,2,8,10],[260,2,2,10,12],[265,1,1,12,13]]],[9,3,2,13,15,[[274,1,1,13,14],[286,2,1,14,15]]],[10,4,4,15,19,[[292,1,1,15,16],[293,2,2,16,18],[309,1,1,18,19]]]],[1140,1179,1297,1343,5931,7008,7422,7640,7736,7758,7866,7869,7999,8219,8572,8792,8826,8827,9391]]],["Ask",[10,10,[[10,1,1,0,1,[[293,1,1,0,1]]],[11,1,1,1,2,[[314,1,1,1,2]]],[13,1,1,2,3,[[367,1,1,2,3]]],[18,1,1,3,4,[[479,1,1,3,4]]],[22,2,2,4,6,[[685,1,1,4,5],[723,1,1,5,6]]],[23,2,2,6,8,[[762,1,1,6,7],[774,1,1,7,8]]],[36,1,1,8,9,[[910,1,1,8,9]]],[37,1,1,9,10,[[920,1,1,9,10]]]],[8821,9560,11201,13953,17793,18572,19397,19673,22866,23017]]],["Enquire",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7674]]],["Pray",[1,1,[[18,1,1,0,1,[[599,1,1,0,1]]]],[16095]]],["ask",[24,24,[[0,1,1,0,1,[[31,1,1,0,1]]],[3,1,1,1,2,[[143,1,1,1,2]]],[4,3,3,2,5,[[156,1,1,2,3],[165,1,1,3,4],[184,1,1,4,5]]],[5,2,2,5,7,[[190,1,1,5,6],[201,1,1,6,7]]],[6,1,1,7,8,[[211,1,1,7,8]]],[8,2,2,8,10,[[247,1,1,8,9],[263,1,1,9,10]]],[9,1,1,10,11,[[280,1,1,10,11]]],[10,2,2,11,13,[[292,2,2,11,13]]],[17,1,1,13,14,[[447,1,1,13,14]]],[22,3,3,14,17,[[685,2,2,14,16],[736,1,1,16,17]]],[23,6,6,17,23,[[750,1,1,17,18],[759,1,1,18,19],[767,1,1,19,20],[782,1,1,20,21],[792,1,1,21,22],[794,1,1,22,23]]],[24,1,1,23,24,[[800,1,1,23,24]]]],[957,4575,5036,5286,5765,5916,6220,6523,7479,7958,8374,8786,8792,13135,17793,17794,18788,19105,19320,19517,19909,20099,20171,20424]]],["asked",[38,33,[[0,5,5,0,5,[[23,1,1,0,1],[25,1,1,1,2],[31,1,1,2,3],[36,1,1,3,4],[42,1,1,4,5]]],[1,1,1,5,6,[[67,1,1,5,6]]],[5,2,2,6,8,[[195,1,1,6,7],[205,1,1,7,8]]],[6,3,3,8,11,[[211,1,1,8,9],[215,1,1,9,10],[223,1,1,10,11]]],[8,5,5,11,16,[[236,3,3,11,14],[243,1,1,14,15],[254,1,1,15,16]]],[10,6,3,16,19,[[293,5,2,16,18],[300,1,1,18,19]]],[11,2,2,19,21,[[314,1,1,19,20],[320,1,1,20,21]]],[13,4,2,21,23,[[367,3,1,21,22],[375,1,1,22,23]]],[15,1,1,23,24,[[413,1,1,23,24]]],[17,1,1,24,25,[[456,1,1,24,25]]],[18,2,2,25,27,[[498,1,1,25,26],[582,1,1,26,27]]],[22,3,3,27,30,[[708,1,1,27,28],[719,1,1,28,29],[743,1,1,29,30]]],[23,3,3,30,33,[[780,1,1,30,31],[781,1,1,31,32],[782,1,1,32,33]]]],[638,699,957,1098,1317,2006,6051,6371,6510,6648,6890,7229,7232,7239,7379,7728,8827,8829,9092,9561,9733,11205,11376,12298,13384,14195,15646,18219,18479,18898,19859,19891,19922]]],["askest",[1,1,[[6,1,1,0,1,[[223,1,1,0,1]]]],[6902]]],["asketh",[4,4,[[0,1,1,0,1,[[31,1,1,0,1]]],[1,1,1,1,2,[[62,1,1,1,2]]],[4,1,1,2,3,[[158,1,1,2,3]]],[32,1,1,3,4,[[899,1,1,3,4]]]],[945,1881,5106,22667]]],["asking",[3,3,[[8,1,1,0,1,[[247,1,1,0,1]]],[12,1,1,1,2,[[347,1,1,1,2]]],[18,1,1,2,3,[[555,1,1,2,3]]]],[7477,10672,15131]]],["beg",[2,2,[[18,1,1,0,1,[[586,1,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]]],[15765,16958]]],["borrow",[4,4,[[1,3,3,0,3,[[52,1,1,0,1],[60,1,1,1,2],[71,1,1,2,3]]],[11,1,1,3,4,[[316,1,1,3,4]]]],[1601,1808,2127,9606]]],["borrowed",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]]],[1851,9679]]],["charge",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14421]]],["consulted",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20965]]],["consulter",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5395]]],["counsel",[5,5,[[6,3,3,0,3,[[228,1,1,0,1],[230,2,2,1,3]]],[8,1,1,3,4,[[249,1,1,3,4]]],[27,1,1,4,5,[[865,1,1,4,5]]]],[6998,7072,7077,7545,22145]]],["demand",[3,3,[[17,3,3,0,3,[[473,1,1,0,1],[475,1,1,1,2],[477,1,1,2,3]]]],[13796,13871,13926]]],["demanded",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8266]]],["desire",[3,3,[[6,1,1,0,1,[[218,1,1,0,1]]],[10,1,1,1,2,[[292,1,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]]],[6743,8790,9631]]],["desired",[4,4,[[8,1,1,0,1,[[247,1,1,0,1]]],[13,1,1,1,2,[[377,1,1,1,2]]],[18,1,1,2,3,[[504,1,1,2,3]]],[20,1,1,3,4,[[660,1,1,3,4]]]],[7473,11437,14289,17343]]],["desiredst",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5400]]],["desireth",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5316]]],["enquire",[6,6,[[0,1,1,0,1,[[23,1,1,0,1]]],[6,1,1,1,2,[[214,1,1,1,2]]],[8,1,1,2,3,[[257,1,1,2,3]]],[12,1,1,3,4,[[355,1,1,3,4]]],[17,1,1,4,5,[[443,1,1,4,5]]],[20,1,1,5,6,[[665,1,1,5,6]]]],[648,6619,7802,10900,13037,17439]]],["enquired",[15,15,[[6,2,2,0,2,[[218,1,1,0,1],[230,1,1,1,2]]],[8,7,7,2,9,[[245,1,1,2,3],[257,2,2,3,5],[258,2,2,5,7],[263,1,1,7,8],[265,1,1,8,9]]],[9,4,4,9,13,[[268,1,1,9,10],[271,2,2,10,12],[282,1,1,12,13]]],[12,2,2,13,15,[[351,2,2,13,15]]]],[6733,7081,7440,7797,7800,7812,7814,7948,7986,8050,8151,8155,8449,10784,10788]]],["leave",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12677]]],["lent",[4,3,[[1,1,1,0,1,[[61,1,1,0,1]]],[8,3,2,1,3,[[236,2,1,1,2],[237,1,1,2,3]]]],[1852,7240,7260]]],["on",[1,1,[[10,1,1,0,1,[[292,1,1,0,1]]]],[8790]]],["requested",[2,2,[[6,1,1,0,1,[[218,1,1,0,1]]],[12,1,1,1,2,[[341,1,1,1,2]]]],[6745,10395]]],["require",[3,3,[[4,1,1,0,1,[[162,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]],[14,1,1,2,3,[[410,1,1,2,3]]]],[5198,8094,12223]]],["required",[4,4,[[9,1,1,0,1,[[278,1,1,0,1]]],[18,2,2,1,3,[[517,1,1,1,2],[614,1,1,2,3]]],[19,1,1,3,4,[[657,1,1,3,4]]]],[8306,14531,16225,17258]]],["wished",[1,1,[[31,1,1,0,1,[[892,1,1,0,1]]]],[22576]]],["wishing",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13618]]]]},{"k":"H7593","v":[["*",[6,6,[[14,3,3,0,3,[[407,2,2,0,2],[409,1,1,2,3]]],[26,3,3,3,6,[[851,3,3,3,6]]]],[12143,12144,12194,21768,21769,21785]]],["asked",[3,3,[[14,2,2,0,2,[[407,2,2,0,2]]],[26,1,1,2,3,[[851,1,1,2,3]]]],[12143,12144,21768]]],["demanded",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21785]]],["require",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12194]]],["requireth",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21769]]]]},{"k":"H7594","v":[["Sheal",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12281]]]]},{"k":"H7595","v":[["demand",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21854]]]]},{"k":"H7596","v":[["*",[14,14,[[6,1,1,0,1,[[218,1,1,0,1]]],[8,3,3,1,4,[[236,2,2,1,3],[237,1,1,3,4]]],[10,2,2,4,6,[[292,2,2,4,6]]],[16,6,6,6,12,[[430,3,3,6,9],[432,2,2,9,11],[434,1,1,11,12]]],[17,1,1,12,13,[[441,1,1,12,13]]],[18,1,1,13,14,[[583,1,1,13,14]]]],[6743,7229,7239,7260,8786,8790,12785,12786,12787,12809,12810,12846,12986,15666]]],["loan",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7260]]],["petition",[10,10,[[8,2,2,0,2,[[236,2,2,0,2]]],[10,2,2,2,4,[[292,2,2,2,4]]],[16,6,6,4,10,[[430,3,3,4,7],[432,2,2,7,9],[434,1,1,9,10]]]],[7229,7239,8786,8790,12785,12786,12787,12809,12810,12846]]],["request",[3,3,[[6,1,1,0,1,[[218,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]],[18,1,1,2,3,[[583,1,1,2,3]]]],[6743,12986,15666]]]]},{"k":"H7597","v":[["*",[9,9,[[12,1,1,0,1,[[340,1,1,0,1]]],[14,2,2,1,3,[[405,2,2,1,3]]],[15,1,1,3,4,[[424,1,1,3,4]]],[36,5,5,4,9,[[909,3,3,4,7],[910,2,2,7,9]]]],[10378,12099,12105,12625,22841,22852,22854,22857,22878]]],["Salathiel",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10378]]],["Shealtiel",[8,8,[[14,2,2,0,2,[[405,2,2,0,2]]],[15,1,1,2,3,[[424,1,1,2,3]]],[36,5,5,3,8,[[909,3,3,3,6],[910,2,2,6,8]]]],[12099,12105,12625,22841,22852,22854,22857,22878]]]]},{"k":"H7598","v":[["Shealtiel",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12136]]]]},{"k":"H7599","v":[["*",[5,5,[[17,1,1,0,1,[[438,1,1,0,1]]],[19,1,1,1,2,[[628,1,1,1,2]]],[23,3,3,2,5,[[774,1,1,2,3],[790,1,1,3,4],[792,1,1,4,5]]]],[12922,16433,19677,20072,20091]]],["ease",[2,2,[[23,2,2,0,2,[[790,1,1,0,1],[792,1,1,1,2]]]],[20072,20091]]],["quiet",[2,2,[[19,1,1,0,1,[[628,1,1,0,1]]],[23,1,1,1,2,[[774,1,1,1,2]]]],[16433,19677]]],["rest",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12922]]]]},{"k":"H7600","v":[["*",[10,10,[[11,1,1,0,1,[[331,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[18,1,1,2,3,[[600,1,1,2,3]]],[22,5,5,3,8,[[710,3,3,3,6],[711,1,1,6,7],[715,1,1,7,8]]],[29,1,1,8,9,[[884,1,1,8,9]]],[37,1,1,9,10,[[911,1,1,9,10]]]],[10089,13133,16102,18268,18270,18277,18299,18381,22451,22893]]],["ease",[6,6,[[17,1,1,0,1,[[447,1,1,0,1]]],[18,1,1,1,2,[[600,1,1,1,2]]],[22,2,2,2,4,[[710,2,2,2,4]]],[29,1,1,4,5,[[884,1,1,4,5]]],[37,1,1,5,6,[[911,1,1,5,6]]]],[13133,16102,18268,18270,22451,22893]]],["quiet",[2,2,[[22,2,2,0,2,[[710,1,1,0,1],[711,1,1,1,2]]]],[18277,18299]]],["tumult",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10089,18381]]]]},{"k":"H7601","v":[["spoil",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19683]]]]},{"k":"H7602","v":[["*",[14,14,[[17,3,3,0,3,[[440,1,1,0,1],[442,1,1,1,2],[471,1,1,2,3]]],[18,4,4,3,7,[[533,2,2,3,5],[534,1,1,5,6],[596,1,1,6,7]]],[20,1,1,7,8,[[659,1,1,7,8]]],[22,1,1,8,9,[[720,1,1,8,9]]],[23,2,2,9,11,[[746,1,1,9,10],[758,1,1,10,11]]],[25,1,1,11,12,[[837,1,1,11,12]]],[29,2,2,12,14,[[880,1,1,12,13],[886,1,1,13,14]]]],[12956,13010,13756,14756,14757,14771,16029,17320,18494,18989,19299,21362,22386,22485]]],["+",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21362]]],["Desire",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13756]]],["desireth",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13010]]],["devour",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18494]]],["hasteth",[1,1,[[20,1,1,0,1,[[659,1,1,0,1]]]],[17320]]],["pant",[1,1,[[29,1,1,0,1,[[880,1,1,0,1]]]],[22386]]],["panted",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16029]]],["up",[7,7,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,3,3,1,4,[[533,2,2,1,3],[534,1,1,3,4]]],[23,2,2,4,6,[[746,1,1,4,5],[758,1,1,5,6]]],[29,1,1,6,7,[[886,1,1,6,7]]]],[12956,14756,14757,14771,18989,19299,22485]]]]},{"k":"H7603","v":[["*",[5,5,[[1,3,3,0,3,[[61,2,2,0,2],[62,1,1,2,3]]],[2,1,1,3,4,[[91,1,1,3,4]]],[4,1,1,4,5,[[168,1,1,4,5]]]],[1831,1835,1874,2773,5346]]],["bread",[1,1,[[4,1,1,0,1,[[168,1,1,0,1]]]],[5346]]],["leaven",[4,4,[[1,3,3,0,3,[[61,2,2,0,2],[62,1,1,2,3]]],[2,1,1,3,4,[[91,1,1,3,4]]]],[1831,1835,1874,2773]]]]},{"k":"H7604","v":[["*",[134,123,[[0,5,5,0,5,[[6,1,1,0,1],[13,1,1,1,2],[31,1,1,2,3],[41,1,1,3,4],[46,1,1,4,5]]],[1,8,8,5,13,[[57,3,3,5,8],[59,4,4,8,12],[63,1,1,12,13]]],[2,4,4,13,17,[[94,1,1,13,14],[114,1,1,14,15],[115,2,2,15,17]]],[3,3,3,17,20,[[125,1,1,17,18],[127,1,1,18,19],[137,1,1,19,20]]],[4,9,9,20,29,[[154,1,1,20,21],[155,2,2,21,23],[156,1,1,23,24],[159,1,1,24,25],[171,1,1,25,26],[180,3,3,26,29]]],[5,17,17,29,46,[[194,2,2,29,31],[196,6,6,31,37],[197,3,3,37,40],[199,3,3,40,43],[209,3,3,43,46]]],[6,3,3,46,49,[[214,1,1,46,47],[216,1,1,47,48],[217,1,1,48,49]]],[7,2,2,49,51,[[232,2,2,49,51]]],[8,7,6,51,57,[[240,1,1,51,52],[244,1,1,52,53],[246,2,1,53,54],[249,1,1,54,55],[251,1,1,55,56],[260,1,1,56,57]]],[9,2,1,57,58,[[280,2,1,57,58]]],[10,4,4,58,62,[[305,1,1,58,59],[306,1,1,59,60],[309,1,1,60,61],[312,1,1,61,62]]],[11,17,13,62,75,[[315,1,1,62,63],[319,3,1,63,64],[322,5,4,64,68],[325,1,1,68,69],[329,1,1,69,70],[331,1,1,70,71],[336,1,1,71,72],[337,4,3,72,75]]],[12,1,1,75,76,[[350,1,1,75,76]]],[13,3,3,76,79,[[387,1,1,76,77],[396,1,1,77,78],[400,1,1,78,79]]],[14,3,3,79,82,[[403,1,1,79,80],[411,2,2,80,82]]],[15,3,2,82,84,[[413,3,2,82,84]]],[17,1,1,84,85,[[456,1,1,84,85]]],[22,8,8,85,93,[[682,1,1,85,86],[689,2,2,86,88],[695,1,1,88,89],[702,2,2,89,91],[715,1,1,91,92],[727,1,1,92,93]]],[23,18,16,93,109,[[752,2,1,93,94],[765,1,1,94,95],[768,1,1,95,96],[778,1,1,96,97],[781,1,1,97,98],[782,2,2,98,100],[783,3,2,100,102],[784,1,1,102,103],[785,1,1,103,104],[786,1,1,104,105],[793,1,1,105,106],[794,1,1,106,107],[796,2,2,107,109]]],[25,4,4,109,113,[[807,1,1,109,110],[810,1,1,110,111],[818,1,1,111,112],[837,1,1,112,113]]],[26,3,2,113,115,[[859,3,2,113,115]]],[28,1,1,115,116,[[877,1,1,115,116]]],[29,2,1,116,117,[[883,2,1,116,117]]],[30,1,1,117,118,[[888,1,1,117,118]]],[35,1,1,118,119,[[908,1,1,118,119]]],[36,1,1,119,120,[[910,1,1,119,120]]],[37,3,3,120,123,[[919,1,1,120,121],[921,1,1,121,122],[922,1,1,122,123]]]],[182,346,936,1290,1438,1719,1721,1741,1782,1789,1796,1803,1917,2839,3521,3560,3563,3977,4050,4375,4972,4978,4986,5031,5131,5426,5662,5666,5673,6019,6024,6092,6094,6097,6101,6103,6104,6115,6121,6129,6155,6156,6166,6464,6467,6472,6615,6658,6697,7130,7132,7323,7415,7456,7544,7606,7883,8363,9278,9294,9405,9526,9601,9720,9804,9807,9810,9814,9878,10001,10091,10216,10233,10234,10244,10762,11641,11833,11954,12020,12245,12252,12298,12299,13389,17736,17895,17900,17989,18101,18107,18383,18657,19156,19447,19532,19808,19884,19899,19917,19932,19933,19947,19967,19977,20136,20186,20291,20292,20575,20630,20846,21395,22023,22032,22325,22426,22515,22832,22858,23006,23037,23059]]],["behind",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1803]]],["leave",[13,12,[[3,1,1,0,1,[[125,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[8,2,2,2,4,[[249,1,1,2,3],[260,1,1,3,4]]],[9,1,1,4,5,[[280,1,1,4,5]]],[11,1,1,5,6,[[325,1,1,5,6]]],[14,1,1,6,7,[[411,1,1,6,7]]],[23,1,1,7,8,[[793,1,1,7,8]]],[28,1,1,8,9,[[877,1,1,8,9]]],[29,2,1,9,10,[[883,2,1,9,10]]],[30,1,1,10,11,[[888,1,1,10,11]]],[35,1,1,11,12,[[908,1,1,11,12]]]],[3977,5662,7544,7883,8363,9878,12245,20136,22325,22426,22515,22832]]],["left",[64,63,[[0,3,3,0,3,[[31,1,1,0,1],[41,1,1,1,2],[46,1,1,2,3]]],[1,1,1,3,4,[[59,1,1,3,4]]],[2,2,2,4,6,[[115,2,2,4,6]]],[3,1,1,6,7,[[137,1,1,6,7]]],[4,6,6,7,13,[[154,1,1,7,8],[155,1,1,8,9],[156,1,1,9,10],[159,1,1,10,11],[180,2,2,11,13]]],[5,7,7,13,20,[[194,1,1,13,14],[196,4,4,14,18],[197,2,2,18,20]]],[6,2,2,20,22,[[214,1,1,20,21],[216,1,1,21,22]]],[7,2,2,22,24,[[232,2,2,22,24]]],[8,3,3,24,27,[[240,1,1,24,25],[244,1,1,25,26],[246,1,1,26,27]]],[9,1,1,27,28,[[280,1,1,27,28]]],[10,3,3,28,31,[[305,1,1,28,29],[306,1,1,29,30],[309,1,1,30,31]]],[11,10,9,31,40,[[315,1,1,31,32],[319,2,1,32,33],[322,3,3,33,36],[329,1,1,36,37],[337,3,3,37,40]]],[12,1,1,40,41,[[350,1,1,40,41]]],[13,2,2,41,43,[[387,1,1,41,42],[400,1,1,42,43]]],[15,2,2,43,45,[[413,2,2,43,45]]],[22,7,7,45,52,[[682,1,1,45,46],[689,2,2,46,48],[695,1,1,48,49],[702,2,2,49,51],[727,1,1,51,52]]],[23,6,6,52,58,[[765,1,1,52,53],[782,1,1,53,54],[783,1,1,54,55],[784,1,1,55,56],[786,1,1,56,57],[796,1,1,57,58]]],[25,2,2,58,60,[[810,1,1,58,59],[837,1,1,59,60]]],[26,2,2,60,62,[[859,2,2,60,62]]],[36,1,1,62,63,[[910,1,1,62,63]]]],[936,1290,1438,1789,3560,3563,4375,4972,4978,5031,5131,5666,5673,6019,6097,6101,6103,6104,6115,6121,6615,6658,7130,7132,7323,7415,7456,8363,9278,9294,9405,9601,9720,9804,9807,9814,10001,10233,10234,10244,10762,11641,11954,12298,12299,17736,17895,17900,17989,18101,18107,18657,19447,19917,19933,19947,19977,20292,20630,21395,22023,22032,22858]]],["let",[2,2,[[5,2,2,0,2,[[196,2,2,0,2]]]],[6092,6094]]],["remain",[16,15,[[1,2,2,0,2,[[57,2,2,0,2]]],[2,1,1,2,3,[[114,1,1,2,3]]],[4,1,1,3,4,[[171,1,1,3,4]]],[5,4,4,4,8,[[194,1,1,4,5],[209,3,3,5,8]]],[11,1,1,8,9,[[319,1,1,8,9]]],[14,1,1,9,10,[[411,1,1,9,10]]],[23,4,3,10,13,[[752,2,1,10,11],[768,1,1,11,12],[782,1,1,12,13]]],[25,1,1,13,14,[[818,1,1,13,14]]],[37,1,1,14,15,[[922,1,1,14,15]]]],[1719,1721,3521,5426,6024,6464,6467,6472,9720,12252,19156,19532,19899,20846,23059]]],["remained",[23,22,[[0,2,2,0,2,[[6,1,1,0,1],[13,1,1,1,2]]],[1,3,3,2,5,[[57,1,1,2,3],[59,1,1,3,4],[63,1,1,4,5]]],[3,1,1,5,6,[[127,1,1,5,6]]],[4,1,1,6,7,[[155,1,1,6,7]]],[5,2,2,7,9,[[197,1,1,7,8],[199,1,1,8,9]]],[6,1,1,9,10,[[217,1,1,9,10]]],[8,1,1,10,11,[[246,1,1,10,11]]],[10,1,1,11,12,[[312,1,1,11,12]]],[11,4,4,12,16,[[322,2,2,12,14],[336,1,1,14,15],[337,1,1,15,16]]],[23,6,5,16,21,[[778,1,1,16,17],[781,1,1,17,18],[783,2,1,18,19],[785,1,1,19,20],[796,1,1,20,21]]],[26,1,1,21,22,[[859,1,1,21,22]]]],[182,346,1741,1796,1917,4050,4986,6129,6166,6697,7456,9526,9804,9810,10216,10244,19808,19884,19932,19967,20291,22023]]],["remaineth",[8,8,[[1,1,1,0,1,[[59,1,1,0,1]]],[5,2,2,1,3,[[199,2,2,1,3]]],[8,1,1,3,4,[[251,1,1,3,4]]],[14,1,1,4,5,[[403,1,1,4,5]]],[17,1,1,5,6,[[456,1,1,5,6]]],[25,1,1,6,7,[[807,1,1,6,7]]],[37,1,1,7,8,[[919,1,1,7,8]]]],[1782,6155,6156,7606,12020,13389,20575,23006]]],["remnant",[4,4,[[11,1,1,0,1,[[331,1,1,0,1]]],[13,1,1,1,2,[[396,1,1,1,2]]],[15,1,1,2,3,[[413,1,1,2,3]]],[22,1,1,3,4,[[715,1,1,3,4]]]],[10091,11833,12299,18383]]],["reserve",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20186]]],["rest",[2,2,[[2,1,1,0,1,[[94,1,1,0,1]]],[37,1,1,1,2,[[921,1,1,1,2]]]],[2839,23037]]]]},{"k":"H7605","v":[["*",[26,25,[[12,2,2,0,2,[[348,1,1,0,1],[353,1,1,1,2]]],[13,2,2,2,4,[[375,1,1,2,3],[390,1,1,3,4]]],[14,3,3,4,7,[[405,1,1,4,5],[406,2,2,5,7]]],[15,3,3,7,10,[[422,1,1,7,8],[423,2,2,8,10]]],[16,2,2,10,12,[[434,2,2,10,12]]],[22,12,11,12,23,[[688,5,4,12,16],[689,2,2,16,18],[692,1,1,18,19],[694,1,1,19,20],[695,1,1,20,21],[699,1,1,21,22],[706,1,1,22,23]]],[35,1,1,23,24,[[906,1,1,23,24]]],[38,1,1,24,25,[[926,1,1,24,25]]]],[10681,10861,11393,11691,12105,12113,12117,12577,12589,12608,12846,12850,17869,17870,17871,17872,17895,17900,17950,17983,17986,18052,18169,22791,23118]]],["other",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12850]]],["remnant",[11,10,[[14,1,1,0,1,[[405,1,1,0,1]]],[22,9,8,1,9,[[688,4,3,1,4],[689,2,2,4,6],[692,1,1,6,7],[694,1,1,7,8],[695,1,1,8,9]]],[35,1,1,9,10,[[906,1,1,9,10]]]],[12105,17870,17871,17872,17895,17900,17950,17983,17986,22791]]],["residue",[4,4,[[15,1,1,0,1,[[423,1,1,0,1]]],[22,2,2,1,3,[[699,1,1,1,2],[706,1,1,2,3]]],[38,1,1,3,4,[[926,1,1,3,4]]]],[12608,18052,18169,23118]]],["rest",[10,10,[[12,2,2,0,2,[[348,1,1,0,1],[353,1,1,1,2]]],[13,2,2,2,4,[[375,1,1,2,3],[390,1,1,3,4]]],[14,2,2,4,6,[[406,2,2,4,6]]],[15,2,2,6,8,[[422,1,1,6,7],[423,1,1,7,8]]],[16,1,1,8,9,[[434,1,1,8,9]]],[22,1,1,9,10,[[688,1,1,9,10]]]],[10681,10861,11393,11691,12113,12117,12577,12589,12846,17869]]]]},{"k":"H7606","v":[["*",[12,10,[[14,8,6,0,6,[[406,5,3,0,3],[408,1,1,3,4],[409,2,2,4,6]]],[26,4,4,6,10,[[851,1,1,6,7],[856,3,3,7,10]]]],[12119,12120,12127,12167,12191,12193,21776,21940,21945,21952]]],["more",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12193]]],["residue",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21940,21952]]],["rest",[9,7,[[14,7,5,0,5,[[406,5,3,0,3],[408,1,1,3,4],[409,1,1,4,5]]],[26,2,2,5,7,[[851,1,1,5,6],[856,1,1,6,7]]]],[12119,12120,12127,12167,12191,21776,21945]]]]},{"k":"H7607","v":[["*",[16,16,[[1,1,1,0,1,[[70,1,1,0,1]]],[2,6,6,1,7,[[107,3,3,1,4],[109,1,1,4,5],[110,1,1,5,6],[114,1,1,6,7]]],[3,1,1,7,8,[[143,1,1,7,8]]],[18,3,3,8,11,[[550,1,1,8,9],[555,2,2,9,11]]],[19,2,2,11,13,[[632,1,1,11,12],[638,1,1,12,13]]],[23,1,1,13,14,[[795,1,1,13,14]]],[32,2,2,14,16,[[895,2,2,14,16]]]],[2087,3257,3263,3264,3337,3347,3518,4565,15046,15133,15140,16528,16705,20247,22610,22611]]],["+",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3518]]],["body",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16528]]],["flesh",[7,7,[[18,3,3,0,3,[[550,1,1,0,1],[555,2,2,1,3]]],[19,1,1,3,4,[[638,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]],[32,2,2,5,7,[[895,2,2,5,7]]]],[15046,15133,15140,16705,20247,22610,22611]]],["food",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2087]]],["kin",[2,2,[[2,2,2,0,2,[[109,1,1,0,1],[110,1,1,1,2]]]],[3337,3347]]],["kinsman",[1,1,[[3,1,1,0,1,[[143,1,1,0,1]]]],[4565]]],["kinswoman",[2,2,[[2,2,2,0,2,[[107,2,2,0,2]]]],[3263,3264]]],["near",[1,1,[[2,1,1,0,1,[[107,1,1,0,1]]]],[3257]]]]},{"k":"H7608","v":[["kinswomen",[1,1,[[2,1,1,0,1,[[107,1,1,0,1]]]],[3268]]]]},{"k":"H7609","v":[["Sherah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10559]]]]},{"k":"H7610","v":[["Shearjashub",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17785]]]]},{"k":"H7611","v":[["*",[66,66,[[0,1,1,0,1,[[44,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]],[11,3,3,2,5,[[331,2,2,2,4],[333,1,1,4,5]]],[12,2,2,5,7,[[341,1,1,5,6],[349,1,1,6,7]]],[13,2,2,7,9,[[400,1,1,7,8],[402,1,1,8,9]]],[14,1,1,9,10,[[411,1,1,9,10]]],[15,1,1,10,11,[[419,1,1,10,11]]],[18,1,1,11,12,[[553,1,1,11,12]]],[22,6,6,12,18,[[692,1,1,12,13],[693,1,1,13,14],[715,2,2,14,16],[722,1,1,16,17],[724,1,1,17,18]]],[23,24,24,18,42,[[750,1,1,18,19],[752,1,1,19,20],[755,1,1,20,21],[759,1,1,21,22],[767,1,1,22,23],[768,1,1,23,24],[769,1,1,24,25],[775,1,1,25,26],[783,1,1,26,27],[784,2,2,27,29],[785,2,2,29,31],[786,3,3,31,34],[787,1,1,34,35],[788,4,4,35,39],[791,2,2,39,41],[794,1,1,41,42]]],[25,7,7,42,49,[[806,1,1,42,43],[810,1,1,43,44],[812,1,1,44,45],[826,1,1,45,46],[837,3,3,46,49]]],[29,3,3,49,52,[[879,1,1,49,50],[883,1,1,50,51],[887,1,1,51,52]]],[32,5,5,52,57,[[894,1,1,52,53],[896,1,1,53,54],[897,2,2,54,56],[899,1,1,56,57]]],[35,3,3,57,60,[[907,2,2,57,59],[908,1,1,59,60]]],[36,3,3,60,63,[[909,2,2,60,62],[910,1,1,62,63]]],[37,3,3,63,66,[[918,3,3,63,66]]]],[1365,8363,10065,10092,10133,10428,10758,11942,12013,12251,12492,15091,17958,17969,18356,18384,18550,18589,19098,19156,19249,19324,19487,19532,19554,19698,19926,19952,19956,19967,19973,19977,19990,19994,20002,20017,20022,20024,20038,20077,20078,20192,20556,20630,20668,21099,21362,21363,21364,22372,22438,22507,22607,22627,22640,22641,22682,22812,22814,22833,22852,22854,22857,22982,22987,22988]]],["escaped",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[12013]]],["left",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20192]]],["posterity",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1365]]],["remain",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20017]]],["remainder",[2,2,[[9,1,1,0,1,[[280,1,1,0,1]]],[18,1,1,1,2,[[553,1,1,1,2]]]],[8363,15091]]],["remnant",[44,44,[[11,3,3,0,3,[[331,2,2,0,2],[333,1,1,2,3]]],[13,1,1,3,4,[[400,1,1,3,4]]],[14,1,1,4,5,[[411,1,1,4,5]]],[22,5,5,5,10,[[692,1,1,5,6],[693,1,1,6,7],[715,2,2,7,9],[724,1,1,9,10]]],[23,17,17,10,27,[[750,1,1,10,11],[755,1,1,11,12],[767,1,1,12,13],[769,1,1,13,14],[775,1,1,14,15],[784,2,2,15,17],[785,1,1,17,18],[786,3,3,18,21],[787,1,1,21,22],[788,3,3,22,25],[791,2,2,25,27]]],[25,3,3,27,30,[[806,1,1,27,28],[812,1,1,28,29],[826,1,1,29,30]]],[29,3,3,30,33,[[879,1,1,30,31],[883,1,1,31,32],[887,1,1,32,33]]],[32,5,5,33,38,[[894,1,1,33,34],[896,1,1,34,35],[897,2,2,35,37],[899,1,1,37,38]]],[35,2,2,38,40,[[907,1,1,38,39],[908,1,1,39,40]]],[36,2,2,40,42,[[909,2,2,40,42]]],[37,2,2,42,44,[[918,2,2,42,44]]]],[10065,10092,10133,11942,12251,17958,17969,18356,18384,18589,19098,19249,19487,19554,19698,19952,19956,19973,19977,19990,19994,20002,20022,20024,20038,20077,20078,20556,20668,21099,22372,22438,22507,22607,22627,22640,22641,22682,22812,22833,22852,22854,22982,22988]]],["residue",[13,13,[[22,1,1,0,1,[[722,1,1,0,1]]],[23,5,5,1,6,[[752,1,1,1,2],[759,1,1,2,3],[768,1,1,3,4],[783,1,1,4,5],[785,1,1,5,6]]],[25,4,4,6,10,[[810,1,1,6,7],[837,3,3,7,10]]],[35,1,1,10,11,[[907,1,1,10,11]]],[36,1,1,11,12,[[910,1,1,11,12]]],[37,1,1,12,13,[[918,1,1,12,13]]]],[18550,19156,19324,19532,19926,19967,20630,21362,21363,21364,22814,22857,22987]]],["rest",[3,3,[[12,2,2,0,2,[[341,1,1,0,1],[349,1,1,1,2]]],[15,1,1,2,3,[[419,1,1,2,3]]]],[10428,10758,12492]]]]},{"k":"H7612","v":[["desolation",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20401]]]]},{"k":"H7613","v":[["*",[14,13,[[0,2,2,0,2,[[3,1,1,0,1],[48,1,1,1,2]]],[2,7,6,2,8,[[102,6,5,2,7],[103,1,1,7,8]]],[17,3,3,8,11,[[448,1,1,8,9],[466,1,1,9,10],[476,1,1,10,11]]],[18,1,1,11,12,[[539,1,1,11,12]]],[34,1,1,12,13,[[903,1,1,12,13]]]],[86,1476,3054,3062,3071,3080,3095,3167,13164,13611,13913,14831,22738]]],["+",[3,3,[[17,2,2,0,2,[[466,1,1,0,1],[476,1,1,1,2]]],[18,1,1,2,3,[[539,1,1,2,3]]]],[13611,13913,14831]]],["accepted",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[86]]],["dignity",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[34,1,1,1,2,[[903,1,1,1,2]]]],[1476,22738]]],["excellency",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13164]]],["rising",[7,6,[[2,7,6,0,6,[[102,6,5,0,5],[103,1,1,5,6]]]],[3054,3062,3071,3080,3095,3167]]]]},{"k":"H7614","v":[["*",[23,23,[[0,3,3,0,3,[[9,2,2,0,2],[24,1,1,2,3]]],[10,4,4,3,7,[[300,4,4,3,7]]],[12,3,3,7,10,[[338,3,3,7,10]]],[13,4,4,10,14,[[375,4,4,10,14]]],[17,2,2,14,16,[[436,1,1,14,15],[441,1,1,15,16]]],[18,2,2,16,18,[[549,2,2,16,18]]],[22,1,1,18,19,[[738,1,1,18,19]]],[23,1,1,19,20,[[750,1,1,19,20]]],[25,3,3,20,23,[[828,2,2,20,22],[839,1,1,22,23]]]],[241,262,661,9080,9083,9089,9092,10261,10274,10284,11365,11367,11373,11376,12884,12997,15010,15015,18827,19109,21143,21144,21438]]],["+",[4,4,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]],[22,1,1,2,3,[[738,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]]],[9092,11376,18827,19109]]],["Sabeans",[1,1,[[17,1,1,0,1,[[436,1,1,0,1]]]],[12884]]],["Sheba",[18,18,[[0,3,3,0,3,[[9,2,2,0,2],[24,1,1,2,3]]],[10,3,3,3,6,[[300,3,3,3,6]]],[12,3,3,6,9,[[338,3,3,6,9]]],[13,3,3,9,12,[[375,3,3,9,12]]],[17,1,1,12,13,[[441,1,1,12,13]]],[18,2,2,13,15,[[549,2,2,13,15]]],[25,3,3,15,18,[[828,2,2,15,17],[839,1,1,17,18]]]],[241,262,661,9080,9083,9089,10261,10274,10284,11365,11367,11373,12997,15010,15015,21143,21144,21438]]]]},{"k":"H7615","v":[["Sabeans",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22351]]]]},{"k":"H7616","v":[["pieces",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22200]]]]},{"k":"H7617","v":[["*",[47,42,[[0,3,3,0,3,[[13,1,1,0,1],[30,1,1,1,2],[33,1,1,2,3]]],[1,1,1,3,4,[[71,1,1,3,4]]],[3,3,3,4,7,[[137,1,1,4,5],[140,1,1,5,6],[147,1,1,6,7]]],[4,1,1,7,8,[[173,1,1,7,8]]],[6,1,1,8,9,[[215,1,1,8,9]]],[8,3,3,9,12,[[265,3,3,9,12]]],[10,6,4,12,16,[[298,6,4,12,16]]],[11,2,2,16,18,[[317,1,1,16,17],[318,1,1,17,18]]],[12,1,1,18,19,[[342,1,1,18,19]]],[13,12,11,19,30,[[372,4,3,19,22],[380,1,1,22,23],[387,1,1,23,24],[391,1,1,24,25],[394,4,4,25,29],[396,1,1,29,30]]],[18,3,3,30,33,[[545,1,1,30,31],[583,1,1,31,32],[614,1,1,32,33]]],[22,3,2,33,35,[[692,2,1,33,34],[739,1,1,34,35]]],[23,6,5,35,40,[[757,1,1,35,36],[785,3,2,36,38],[787,1,1,38,39],[794,1,1,39,40]]],[25,1,1,40,41,[[807,1,1,40,41]]],[30,1,1,41,42,[[888,1,1,41,42]]]],[350,899,1009,2123,4341,4468,4673,5457,6635,7980,7981,7983,9031,9032,9033,9035,9649,9696,10449,11318,11319,11320,11490,11641,11716,11769,11772,11775,11781,11836,14918,15697,16225,17930,18844,19283,19967,19971,20009,20199,20572,22521]]],["+",[9,8,[[6,1,1,0,1,[[215,1,1,0,1]]],[8,1,1,1,2,[[265,1,1,1,2]]],[10,1,1,2,3,[[298,1,1,2,3]]],[13,4,3,3,6,[[372,3,2,3,5],[387,1,1,5,6]]],[18,1,1,6,7,[[545,1,1,6,7]]],[23,1,1,7,8,[[785,1,1,7,8]]]],[6635,7980,9033,11318,11320,11641,14918,19967]]],["away",[6,6,[[1,1,1,0,1,[[71,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[12,1,1,2,3,[[342,1,1,2,3]]],[13,3,3,3,6,[[380,1,1,3,4],[394,2,2,4,6]]]],[2123,9031,10449,11490,11769,11781]]],["captive",[16,16,[[0,2,2,0,2,[[13,1,1,0,1],[33,1,1,1,2]]],[3,1,1,2,3,[[140,1,1,2,3]]],[10,1,1,3,4,[[298,1,1,3,4]]],[11,2,2,4,6,[[317,1,1,4,5],[318,1,1,5,6]]],[13,5,5,6,11,[[372,1,1,6,7],[391,1,1,7,8],[394,2,2,8,10],[396,1,1,10,11]]],[18,1,1,11,12,[[614,1,1,11,12]]],[23,3,3,12,15,[[757,1,1,12,13],[785,2,2,13,15]]],[30,1,1,15,16,[[888,1,1,15,16]]]],[350,1009,4468,9035,9649,9696,11319,11716,11772,11775,11836,16225,19283,19967,19971,22521]]],["captives",[14,12,[[0,1,1,0,1,[[30,1,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]],[8,2,2,2,4,[[265,2,2,2,4]]],[10,3,2,4,6,[[298,3,2,4,6]]],[18,1,1,6,7,[[583,1,1,6,7]]],[22,3,2,7,9,[[692,2,1,7,8],[739,1,1,8,9]]],[23,2,2,9,11,[[787,1,1,9,10],[794,1,1,10,11]]],[25,1,1,11,12,[[807,1,1,11,12]]]],[899,4673,7981,7983,9031,9032,15697,17930,18844,20009,20199,20572]]],["taken",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5457]]],["took",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4341]]]]},{"k":"H7618","v":[["agate",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2312,2676]]]]},{"k":"H7619","v":[["*",[6,5,[[12,6,5,0,5,[[360,1,1,0,1],[361,2,1,1,2],[362,2,2,2,4],[363,1,1,4,5]]]],[10999,11035,11050,11066,11101]]],["Shebuel",[3,3,[[12,3,3,0,3,[[360,1,1,0,1],[362,1,1,1,2],[363,1,1,2,3]]]],[10999,11050,11101]]],["Shubael",[3,2,[[12,3,2,0,2,[[361,2,1,0,1],[362,1,1,1,2]]]],[11035,11066]]]]},{"k":"H7620","v":[["*",[19,16,[[0,2,2,0,2,[[28,2,2,0,2]]],[1,1,1,2,3,[[83,1,1,2,3]]],[2,1,1,3,4,[[101,1,1,3,4]]],[3,1,1,4,5,[[144,1,1,4,5]]],[4,4,3,5,8,[[168,4,3,5,8]]],[13,1,1,8,9,[[374,1,1,8,9]]],[23,1,1,9,10,[[749,1,1,9,10]]],[26,8,6,10,16,[[858,6,4,10,14],[859,2,2,14,16]]]],[822,823,2518,3049,4603,5351,5352,5358,11359,19082,22012,22013,22014,22015,22017,22018]]],["week",[4,3,[[0,2,2,0,2,[[28,2,2,0,2]]],[26,2,1,2,3,[[858,2,1,2,3]]]],[822,823,22015]]],["weeks",[15,13,[[1,1,1,0,1,[[83,1,1,0,1]]],[2,1,1,1,2,[[101,1,1,1,2]]],[3,1,1,2,3,[[144,1,1,2,3]]],[4,4,3,3,6,[[168,4,3,3,6]]],[13,1,1,6,7,[[374,1,1,6,7]]],[23,1,1,7,8,[[749,1,1,7,8]]],[26,6,5,8,13,[[858,4,3,8,11],[859,2,2,11,13]]]],[2518,3049,4603,5351,5352,5358,11359,19082,22012,22013,22014,22017,22018]]]]},{"k":"H7621","v":[["*",[30,29,[[0,2,2,0,2,[[23,1,1,0,1],[25,1,1,1,2]]],[1,1,1,2,3,[[71,1,1,2,3]]],[2,1,1,3,4,[[94,1,1,3,4]]],[3,5,4,4,8,[[121,2,1,4,5],[146,3,3,5,8]]],[4,1,1,8,9,[[159,1,1,8,9]]],[5,3,3,9,12,[[188,2,2,9,11],[195,1,1,11,12]]],[6,1,1,12,13,[[231,1,1,12,13]]],[8,1,1,13,14,[[249,1,1,13,14]]],[9,1,1,14,15,[[287,1,1,14,15]]],[10,1,1,15,16,[[292,1,1,15,16]]],[12,1,1,16,17,[[353,1,1,16,17]]],[13,1,1,17,18,[[381,1,1,17,18]]],[15,2,2,18,20,[[418,1,1,18,19],[422,1,1,19,20]]],[18,1,1,20,21,[[582,1,1,20,21]]],[20,2,2,21,23,[[666,1,1,21,22],[667,1,1,22,23]]],[22,1,1,23,24,[[743,1,1,23,24]]],[23,1,1,24,25,[[755,1,1,24,25]]],[25,1,1,25,26,[[822,1,1,25,26]]],[26,1,1,26,27,[[858,1,1,26,27]]],[34,1,1,27,28,[[905,1,1,27,28]]],[37,1,1,28,29,[[918,1,1,28,29]]]],[599,695,2124,2834,3813,4650,4658,4661,5119,5886,5889,6057,7107,7534,8587,8813,10836,11505,12419,12578,15615,17460,17477,18912,19231,20967,21999,22777,22993]]],["+",[4,4,[[0,1,1,0,1,[[23,1,1,0,1]]],[5,2,2,1,3,[[188,2,2,1,3]]],[15,1,1,3,4,[[418,1,1,3,4]]]],[599,5886,5889,12419]]],["curse",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18912]]],["oath",[23,22,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[2,1,1,2,3,[[94,1,1,2,3]]],[3,5,4,3,7,[[121,2,1,3,4],[146,3,3,4,7]]],[4,1,1,7,8,[[159,1,1,7,8]]],[5,1,1,8,9,[[195,1,1,8,9]]],[6,1,1,9,10,[[231,1,1,9,10]]],[8,1,1,10,11,[[249,1,1,10,11]]],[9,1,1,11,12,[[287,1,1,11,12]]],[10,1,1,12,13,[[292,1,1,12,13]]],[12,1,1,13,14,[[353,1,1,13,14]]],[13,1,1,14,15,[[381,1,1,14,15]]],[15,1,1,15,16,[[422,1,1,15,16]]],[18,1,1,16,17,[[582,1,1,16,17]]],[20,2,2,17,19,[[666,1,1,17,18],[667,1,1,18,19]]],[23,1,1,19,20,[[755,1,1,19,20]]],[26,1,1,20,21,[[858,1,1,20,21]]],[37,1,1,21,22,[[918,1,1,21,22]]]],[695,2124,2834,3813,4650,4658,4661,5119,6057,7107,7534,8587,8813,10836,11505,12578,15615,17460,17477,19231,21999,22993]]],["oaths",[2,2,[[25,1,1,0,1,[[822,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[20967,22777]]]]},{"k":"H7622","v":[["*",[31,26,[[4,1,1,0,1,[[182,1,1,0,1]]],[17,1,1,1,2,[[477,1,1,1,2]]],[18,4,4,2,6,[[491,1,1,2,3],[530,1,1,3,4],[562,1,1,4,5],[603,1,1,5,6]]],[23,12,11,6,17,[[773,1,1,6,7],[774,2,2,7,9],[775,1,1,9,10],[776,1,1,10,11],[777,4,3,11,14],[792,1,1,14,15],[793,2,2,15,17]]],[24,1,1,17,18,[[798,1,1,17,18]]],[25,7,3,18,21,[[817,5,1,18,19],[830,1,1,19,20],[840,1,1,20,21]]],[27,1,1,21,22,[[867,1,1,21,22]]],[28,1,1,22,23,[[878,1,1,22,23]]],[29,1,1,23,24,[[887,1,1,23,24]]],[35,2,2,24,26,[[907,1,1,24,25],[908,1,1,25,26]]]],[5711,13932,14087,14725,15272,16119,19649,19670,19685,19714,19775,19782,19786,19801,20127,20133,20166,20346,20815,21197,21473,22178,22344,22509,22812,22840]]],["+",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20815]]],["captives",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20815]]],["captivity",[29,26,[[4,1,1,0,1,[[182,1,1,0,1]]],[17,1,1,1,2,[[477,1,1,1,2]]],[18,4,4,2,6,[[491,1,1,2,3],[530,1,1,3,4],[562,1,1,4,5],[603,1,1,5,6]]],[23,12,11,6,17,[[773,1,1,6,7],[774,2,2,7,9],[775,1,1,9,10],[776,1,1,10,11],[777,4,3,11,14],[792,1,1,14,15],[793,2,2,15,17]]],[24,1,1,17,18,[[798,1,1,17,18]]],[25,5,3,18,21,[[817,3,1,18,19],[830,1,1,19,20],[840,1,1,20,21]]],[27,1,1,21,22,[[867,1,1,21,22]]],[28,1,1,22,23,[[878,1,1,22,23]]],[29,1,1,23,24,[[887,1,1,23,24]]],[35,2,2,24,26,[[907,1,1,24,25],[908,1,1,25,26]]]],[5711,13932,14087,14725,15272,16119,19649,19670,19685,19714,19775,19782,19786,19801,20127,20133,20166,20346,20815,21197,21473,22178,22344,22509,22812,22840]]]]},{"k":"H7623","v":[["*",[11,11,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,7,7,1,8,[[540,1,1,1,2],[542,1,1,2,3],[566,1,1,3,4],[583,1,1,4,5],[594,1,1,5,6],[622,1,1,6,7],[624,1,1,7,8]]],[19,1,1,8,9,[[656,1,1,8,9]]],[20,2,2,9,11,[[662,1,1,9,10],[666,1,1,10,11]]]],[10855,14842,14867,15335,15698,15868,16324,16363,17235,17383,17473]]],["+",[3,3,[[18,1,1,0,1,[[624,1,1,0,1]]],[20,2,2,1,3,[[662,1,1,1,2],[666,1,1,2,3]]]],[16363,17383,17473]]],["glory",[1,1,[[12,1,1,0,1,[[353,1,1,0,1]]]],[10855]]],["keepeth",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17235]]],["praise",[3,3,[[18,3,3,0,3,[[540,1,1,0,1],[594,1,1,1,2],[622,1,1,2,3]]]],[14842,15868,16324]]],["stillest",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15335]]],["stilleth",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14867]]],["triumph",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15698]]]]},{"k":"H7624","v":[["*",[5,5,[[26,5,5,0,5,[[851,1,1,0,1],[853,2,2,1,3],[854,2,2,3,5]]]],[21781,21871,21874,21878,21897]]],["praise",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21781,21874]]],["praised",[3,3,[[26,3,3,0,3,[[853,1,1,0,1],[854,2,2,1,3]]]],[21871,21878,21897]]]]},{"k":"H7625","v":[["tribes",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12168]]]]},{"k":"H7626","v":[["*",[190,178,[[0,3,3,0,3,[[48,3,3,0,3]]],[1,4,4,3,7,[[70,1,1,3,4],[73,1,1,4,5],[77,1,1,5,6],[88,1,1,6,7]]],[2,1,1,7,8,[[116,1,1,7,8]]],[3,6,6,8,14,[[120,1,1,8,9],[134,1,1,9,10],[140,2,2,10,12],[148,1,1,12,13],[152,1,1,13,14]]],[4,18,17,14,31,[[153,4,3,14,17],[155,1,1,17,18],[157,1,1,18,19],[162,1,1,19,20],[164,2,2,20,22],[168,1,1,22,23],[170,2,2,23,25],[181,4,4,25,29],[183,1,1,29,30],[185,1,1,30,31]]],[5,33,29,31,60,[[187,1,1,31,32],[189,2,1,32,33],[190,5,5,33,38],[193,4,2,38,40],[197,1,1,40,41],[198,2,2,41,43],[199,5,4,43,47],[204,3,3,47,50],[207,1,1,50,51],[208,7,7,51,58],[209,1,1,58,59],[210,1,1,59,60]]],[6,16,14,60,74,[[215,1,1,60,61],[228,4,3,61,64],[230,4,3,64,67],[231,7,7,67,74]]],[8,8,6,74,80,[[237,1,1,74,75],[244,2,1,75,76],[245,4,3,76,79],[250,1,1,79,80]]],[9,10,10,80,90,[[271,1,1,80,81],[273,2,2,81,83],[281,2,2,83,85],[284,1,1,85,86],[285,1,1,86,87],[286,1,1,87,88],[289,1,1,88,89],[290,1,1,89,90]]],[10,11,10,90,100,[[298,1,1,90,91],[301,6,5,91,96],[302,2,2,96,98],[304,1,1,98,99],[308,1,1,99,100]]],[11,2,2,100,102,[[329,1,1,100,101],[333,1,1,101,102]]],[12,12,12,102,114,[[342,3,3,102,105],[348,1,1,105,106],[349,1,1,106,107],[360,1,1,107,108],[363,1,1,108,109],[364,3,3,109,112],[365,1,1,112,113],[366,1,1,113,114]]],[13,4,4,114,118,[[372,1,1,114,115],[377,1,1,115,116],[378,1,1,116,117],[399,1,1,117,118]]],[17,3,3,118,121,[[444,1,1,118,119],[456,1,1,119,120],[472,1,1,120,121]]],[18,13,11,121,132,[[479,1,1,121,122],[500,1,1,122,123],[522,2,1,123,124],[551,1,1,124,125],[555,3,3,125,128],[566,1,1,128,129],[582,1,1,129,130],[599,2,1,130,131],[602,1,1,131,132]]],[19,8,8,132,140,[[637,1,1,132,133],[640,1,1,133,134],[649,2,2,134,136],[650,2,2,136,138],[653,1,1,138,139],[656,1,1,139,140]]],[22,12,12,140,152,[[687,1,1,140,141],[688,3,3,141,144],[689,1,1,144,145],[692,2,2,145,147],[697,1,1,147,148],[706,1,1,148,149],[708,1,1,149,150],[727,1,1,150,151],[741,1,1,151,152]]],[23,2,2,152,154,[[754,1,1,152,153],[795,1,1,153,154]]],[24,1,1,154,155,[[799,1,1,154,155]]],[25,16,16,155,171,[[820,2,2,155,157],[821,1,1,157,158],[822,2,2,158,160],[838,1,1,160,161],[846,1,1,161,162],[848,4,4,162,166],[849,5,5,166,171]]],[27,1,1,171,172,[[866,1,1,171,172]]],[29,2,2,172,174,[[879,2,2,172,174]]],[32,2,2,174,176,[[897,1,1,174,175],[899,1,1,175,176]]],[37,2,2,176,178,[[919,1,1,176,177],[920,1,1,177,178]]]],[1483,1489,1501,2097,2181,2314,2678,3602,3761,4259,4448,4463,4751,4882,4905,4907,4915,4988,5076,5194,5245,5254,5360,5385,5389,5687,5689,5697,5700,5756,5815,5863,5905,5912,5914,5915,5918,5922,5990,5992,6130,6136,6137,6161,6168,6183,6187,6295,6297,6300,6397,6433,6435,6436,6437,6439,6441,6447,6464,6477,6637,6994,7012,7023,7056,7064,7066,7105,7107,7108,7110,7117,7119,7126,7268,7412,7437,7438,7439,7577,8133,8187,8194,8391,8399,8492,8520,8568,8674,8694,9001,9121,9139,9140,9143,9144,9171,9172,9239,9372,10001,10126,10446,10451,10454,10696,10757,10997,11109,11125,11129,11131,11144,11170,11287,11430,11450,11915,13085,13364,13782,13954,14239,14603,15050,15168,15180,15181,15358,15643,16093,16113,16669,16771,17023,17030,17057,17058,17144,17239,17833,17855,17865,17874,17888,17933,17957,18017,18191,18248,18642,18883,19217,20231,20355,20892,20895,20932,20954,20957,21416,21638,21692,21700,21701,21702,21703,21721,21725,21731,21733,22161,22369,22372,22634,22678,23000,23027]]],["+",[6,5,[[5,4,3,0,3,[[189,2,1,0,1],[190,2,2,1,3]]],[6,1,1,3,4,[[231,1,1,3,4]]],[17,1,1,4,5,[[444,1,1,4,5]]]],[5905,5912,5914,7110,13085]]],["Sceptre",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4463]]],["correction",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13782]]],["darts",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8492]]],["pen",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6637]]],["rod",[33,33,[[1,1,1,0,1,[[70,1,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]],[9,1,1,2,3,[[273,1,1,2,3]]],[17,1,1,3,4,[[456,1,1,3,4]]],[18,5,5,4,9,[[479,1,1,4,5],[500,1,1,5,6],[551,1,1,6,7],[566,1,1,7,8],[602,1,1,8,9]]],[19,8,8,9,17,[[637,1,1,9,10],[640,1,1,10,11],[649,2,2,11,13],[650,2,2,13,15],[653,1,1,15,16],[656,1,1,16,17]]],[22,8,8,17,25,[[687,1,1,17,18],[688,3,3,18,21],[689,1,1,21,22],[692,1,1,22,23],[706,1,1,23,24],[708,1,1,24,25]]],[23,2,2,25,27,[[754,1,1,25,26],[795,1,1,26,27]]],[24,1,1,27,28,[[799,1,1,27,28]]],[25,3,3,28,31,[[821,1,1,28,29],[822,2,2,29,31]]],[32,2,2,31,33,[[897,1,1,31,32],[899,1,1,32,33]]]],[2097,3602,8194,13364,13954,14239,15050,15358,16113,16669,16771,17023,17030,17057,17058,17144,17239,17833,17855,17865,17874,17888,17957,18191,18248,19217,20231,20355,20932,20954,20957,22634,22678]]],["sceptre",[8,7,[[0,1,1,0,1,[[48,1,1,0,1]]],[18,2,1,1,2,[[522,2,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]],[25,1,1,3,4,[[820,1,1,3,4]]],[29,2,2,4,6,[[879,2,2,4,6]]],[37,1,1,6,7,[[920,1,1,6,7]]]],[1483,14603,17933,20895,22369,22372,23027]]],["sceptres",[1,1,[[25,1,1,0,1,[[820,1,1,0,1]]]],[20892]]],["staff",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8674,10696]]],["tribe",[54,54,[[3,3,3,0,3,[[120,1,1,0,1],[134,1,1,1,2],[148,1,1,2,3]]],[4,6,6,3,9,[[153,1,1,3,4],[155,1,1,4,5],[162,1,1,5,6],[170,1,1,6,7],[181,2,2,7,9]]],[5,18,18,9,27,[[187,1,1,9,10],[190,1,1,10,11],[193,2,2,11,13],[198,1,1,13,14],[199,4,4,14,18],[204,2,2,18,20],[208,7,7,20,27]]],[6,8,8,27,35,[[228,3,3,27,30],[230,1,1,30,31],[231,4,4,31,35]]],[8,3,3,35,38,[[244,1,1,35,36],[245,2,2,36,38]]],[10,5,5,38,43,[[301,3,3,38,41],[302,2,2,41,43]]],[11,1,1,43,44,[[329,1,1,43,44]]],[12,7,7,44,51,[[342,3,3,44,47],[349,1,1,47,48],[360,1,1,48,49],[363,1,1,49,50],[364,1,1,50,51]]],[18,2,2,51,53,[[555,2,2,51,53]]],[25,1,1,53,54,[[848,1,1,53,54]]]],[3761,4259,4751,4915,4988,5194,5385,5687,5697,5863,5922,5990,5992,6136,6161,6168,6183,6187,6297,6300,6433,6435,6436,6437,6439,6441,6447,6994,7012,7023,7066,7105,7108,7119,7126,7412,7438,7439,9121,9140,9144,9171,9172,10001,10446,10451,10454,10757,10997,11109,11129,15180,15181,21702]]],["tribes",[82,80,[[0,2,2,0,2,[[48,2,2,0,2]]],[1,3,3,2,5,[[73,1,1,2,3],[77,1,1,3,4],[88,1,1,4,5]]],[3,2,2,5,7,[[140,1,1,5,6],[152,1,1,6,7]]],[4,12,11,7,18,[[153,3,2,7,9],[157,1,1,9,10],[164,2,2,10,12],[168,1,1,12,13],[170,1,1,13,14],[181,2,2,14,16],[183,1,1,16,17],[185,1,1,17,18]]],[5,11,11,18,29,[[190,2,2,18,20],[193,2,2,20,22],[197,1,1,22,23],[198,1,1,23,24],[199,1,1,24,25],[204,1,1,25,26],[207,1,1,26,27],[209,1,1,27,28],[210,1,1,28,29]]],[6,6,6,29,35,[[228,1,1,29,30],[230,3,3,30,33],[231,2,2,33,35]]],[8,5,5,35,40,[[237,1,1,35,36],[244,1,1,36,37],[245,2,2,37,39],[250,1,1,39,40]]],[9,7,7,40,47,[[271,1,1,40,41],[273,1,1,41,42],[281,2,2,42,44],[285,1,1,44,45],[286,1,1,45,46],[290,1,1,46,47]]],[10,6,6,47,53,[[298,1,1,47,48],[301,3,3,48,51],[304,1,1,51,52],[308,1,1,52,53]]],[11,1,1,53,54,[[333,1,1,53,54]]],[12,4,4,54,58,[[364,2,2,54,56],[365,1,1,56,57],[366,1,1,57,58]]],[13,4,4,58,62,[[372,1,1,58,59],[377,1,1,59,60],[378,1,1,60,61],[399,1,1,61,62]]],[18,4,3,62,65,[[555,1,1,62,63],[582,1,1,63,64],[599,2,1,64,65]]],[22,3,3,65,68,[[697,1,1,65,66],[727,1,1,66,67],[741,1,1,67,68]]],[25,10,10,68,78,[[838,1,1,68,69],[846,1,1,69,70],[848,3,3,70,73],[849,5,5,73,78]]],[27,1,1,78,79,[[866,1,1,78,79]]],[37,1,1,79,80,[[919,1,1,79,80]]]],[1489,1501,2181,2314,2678,4448,4882,4905,4907,5076,5245,5254,5360,5389,5689,5700,5756,5815,5915,5918,5990,5992,6130,6137,6161,6295,6397,6464,6477,6994,7056,7064,7066,7107,7117,7268,7412,7437,7438,7577,8133,8187,8391,8399,8520,8568,8694,9001,9139,9140,9143,9239,9372,10126,11125,11131,11144,11170,11287,11430,11450,11915,15168,15643,16093,18017,18642,18883,21416,21638,21692,21700,21701,21703,21721,21725,21731,21733,22161,23000]]]]},{"k":"H7627","v":[["Sebat",[1,1,[[37,1,1,0,1,[[911,1,1,0,1]]]],[22885]]]]},{"k":"H7628","v":[["*",[50,48,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,5,5,1,6,[[137,2,2,1,3],[147,3,3,3,6]]],[4,3,3,6,9,[[173,2,2,6,8],[180,1,1,8,9]]],[6,1,1,9,10,[[215,1,1,9,10]]],[13,4,4,10,14,[[372,2,2,10,12],[394,1,1,12,13],[395,1,1,13,14]]],[14,4,4,14,18,[[404,1,1,14,15],[405,1,1,15,16],[410,1,1,16,17],[411,1,1,17,18]]],[15,4,4,18,22,[[413,2,2,18,20],[419,1,1,20,21],[420,1,1,21,22]]],[18,2,2,22,24,[[545,1,1,22,23],[555,1,1,23,24]]],[22,5,5,24,29,[[698,1,1,24,25],[724,1,1,25,26],[727,2,2,26,28],[730,1,1,28,29]]],[23,10,8,29,37,[[759,2,1,29,30],[764,1,1,30,31],[766,1,1,31,32],[774,2,2,32,34],[787,2,1,34,35],[790,1,1,35,36],[792,1,1,36,37]]],[24,2,2,37,39,[[797,2,2,37,39]]],[25,3,3,39,42,[[813,1,1,39,40],[831,2,2,40,42]]],[26,2,2,42,44,[[860,2,2,42,44]]],[29,2,2,44,46,[[882,1,1,44,45],[887,1,1,45,46]]],[33,1,1,46,47,[[902,1,1,46,47]]],[34,1,1,47,48,[[903,1,1,47,48]]]],[1845,4341,4369,4676,4683,4690,5457,5460,5652,6635,11319,11320,11781,11800,12028,12105,12236,12244,12298,12299,12426,12510,14918,15174,18033,18588,18660,18661,18698,19317,19428,19476,19677,19683,20008,20072,20126,20315,20328,20691,21221,21222,22044,22069,22420,22499,22722,22740]]],["+",[7,7,[[6,1,1,0,1,[[215,1,1,0,1]]],[14,3,3,1,4,[[404,1,1,1,2],[405,1,1,2,3],[410,1,1,3,4]]],[15,1,1,4,5,[[419,1,1,4,5]]],[18,1,1,5,6,[[545,1,1,5,6]]],[29,1,1,6,7,[[882,1,1,6,7]]]],[6635,12028,12105,12236,12426,14918,22420]]],["captive",[4,4,[[1,1,1,0,1,[[61,1,1,0,1]]],[4,1,1,1,2,[[173,1,1,1,2]]],[22,2,2,2,4,[[727,1,1,2,3],[730,1,1,3,4]]]],[1845,5457,18660,18698]]],["captives",[6,6,[[3,2,2,0,2,[[147,2,2,0,2]]],[13,1,1,2,3,[[394,1,1,2,3]]],[22,1,1,3,4,[[727,1,1,3,4]]],[23,1,1,4,5,[[792,1,1,4,5]]],[26,1,1,5,6,[[860,1,1,5,6]]]],[4676,4683,11781,18661,20126,22044]]],["captivity",[30,28,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,2,2,1,3,[[173,1,1,1,2],[180,1,1,2,3]]],[13,3,3,3,6,[[372,2,2,3,5],[395,1,1,5,6]]],[14,1,1,6,7,[[411,1,1,6,7]]],[15,3,3,7,10,[[413,2,2,7,9],[420,1,1,9,10]]],[18,1,1,10,11,[[555,1,1,10,11]]],[22,1,1,11,12,[[724,1,1,11,12]]],[23,9,7,12,19,[[759,2,1,12,13],[764,1,1,13,14],[766,1,1,14,15],[774,2,2,15,17],[787,2,1,17,18],[790,1,1,18,19]]],[24,2,2,19,21,[[797,2,2,19,21]]],[25,3,3,21,24,[[813,1,1,21,22],[831,2,2,22,24]]],[26,1,1,24,25,[[860,1,1,24,25]]],[29,1,1,25,26,[[887,1,1,25,26]]],[33,1,1,26,27,[[902,1,1,26,27]]],[34,1,1,27,28,[[903,1,1,27,28]]]],[4369,5460,5652,11319,11320,11800,12244,12298,12299,12510,15174,18588,19317,19428,19476,19677,19683,20008,20072,20315,20328,20691,21221,21222,22069,22499,22722,22740]]],["prisoners",[2,2,[[3,1,1,0,1,[[137,1,1,0,1]]],[22,1,1,1,2,[[698,1,1,1,2]]]],[4341,18033]]],["taken",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4690]]]]},{"k":"H7629","v":[["Shobi",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8476]]]]},{"k":"H7630","v":[["Shobai",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12069,12465]]]]},{"k":"H7631","v":[["flame",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[856,1,1,1,2]]]],[21829,21942]]]]},{"k":"H7632","v":[["spark",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13281]]]]},{"k":"H7633","v":[["*",[9,9,[[4,2,2,0,2,[[173,1,1,0,1],[184,1,1,1,2]]],[13,5,5,2,7,[[394,5,5,2,7]]],[15,1,1,7,8,[[416,1,1,7,8]]],[23,1,1,8,9,[[792,1,1,8,9]]]],[5458,5800,11769,11775,11777,11778,11779,12363,20126]]],["captives",[8,8,[[4,2,2,0,2,[[173,1,1,0,1],[184,1,1,1,2]]],[13,5,5,2,7,[[394,5,5,2,7]]],[23,1,1,7,8,[[792,1,1,7,8]]]],[5458,5800,11769,11775,11777,11778,11779,20126]]],["captivity",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12363]]]]},{"k":"H7634","v":[["Shachia",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10585]]]]},{"k":"H7635","v":[["*",[2,2,[[18,1,1,0,1,[[554,1,1,0,1]]],[23,1,1,1,2,[[762,1,1,1,2]]]],[15112,19399]]],["path",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15112]]],["paths",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19399]]]]},{"k":"H7636","v":[["cauls",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17725]]]]},{"k":"H7637","v":[["*",[98,94,[[0,4,3,0,3,[[1,3,2,0,2],[7,1,1,2,3]]],[1,17,17,3,20,[[61,2,2,3,5],[62,1,1,5,6],[65,4,4,6,10],[69,2,2,10,12],[70,1,1,12,13],[72,2,2,13,15],[73,1,1,15,16],[80,2,2,16,18],[83,1,1,18,19],[84,1,1,19,20]]],[2,20,20,20,40,[[102,6,6,20,26],[103,2,2,26,28],[105,1,1,28,29],[112,8,8,29,37],[114,3,3,37,40]]],[3,13,11,40,51,[[122,1,1,40,41],[123,1,1,41,42],[135,4,2,42,44],[144,1,1,44,45],[145,4,4,45,49],[147,2,2,49,51]]],[4,3,3,51,54,[[157,1,1,51,52],[167,1,1,52,53],[168,1,1,53,54]]],[5,4,4,54,58,[[192,3,3,54,57],[205,1,1,57,58]]],[6,3,3,58,61,[[224,3,3,58,61]]],[9,1,1,61,62,[[278,1,1,61,62]]],[10,3,3,62,65,[[298,1,1,62,63],[308,1,1,63,64],[310,1,1,64,65]]],[11,3,3,65,68,[[323,1,1,65,66],[330,1,1,66,67],[337,1,1,67,68]]],[12,8,7,68,75,[[339,1,1,68,69],[349,1,1,69,70],[361,1,1,70,71],[362,1,1,71,72],[363,2,2,72,74],[364,2,1,74,75]]],[13,4,4,75,79,[[371,1,1,75,76],[373,1,1,76,77],[389,1,1,77,78],[397,1,1,78,79]]],[14,3,3,79,82,[[405,2,2,79,81],[409,1,1,81,82]]],[15,4,4,82,86,[[419,1,1,82,83],[420,2,2,83,85],[422,1,1,85,86]]],[16,1,1,86,87,[[426,1,1,86,87]]],[23,2,2,87,89,[[772,1,1,87,88],[785,1,1,88,89]]],[25,2,2,89,91,[[821,1,1,89,90],[846,1,1,90,91]]],[36,1,1,91,92,[[910,1,1,91,92]]],[37,2,2,92,94,[[917,1,1,92,93],[918,1,1,93,94]]]],[32,33,187,1831,1832,1873,1973,1974,1976,1977,2061,2062,2079,2155,2156,2193,2435,2437,2517,2533,3057,3058,3079,3084,3086,3103,3120,3150,3230,3405,3410,3418,3426,3429,3436,3441,3443,3473,3478,3489,3832,3898,4301,4308,4602,4609,4615,4620,4640,4683,4688,5067,5331,5350,5953,5964,5965,6361,6924,6926,6927,8304,8987,9385,9437,9833,10033,10247,10321,10731,11025,11060,11080,11082,11119,11271,11334,11657,11861,12098,12103,12181,12493,12495,12507,12580,12712,19635,19958,20896,21655,22856,22967,22995]]],["seventh",[97,93,[[0,4,3,0,3,[[1,3,2,0,2],[7,1,1,2,3]]],[1,17,17,3,20,[[61,2,2,3,5],[62,1,1,5,6],[65,4,4,6,10],[69,2,2,10,12],[70,1,1,12,13],[72,2,2,13,15],[73,1,1,15,16],[80,2,2,16,18],[83,1,1,18,19],[84,1,1,19,20]]],[2,20,20,20,40,[[102,6,6,20,26],[103,2,2,26,28],[105,1,1,28,29],[112,8,8,29,37],[114,3,3,37,40]]],[3,13,11,40,51,[[122,1,1,40,41],[123,1,1,41,42],[135,4,2,42,44],[144,1,1,44,45],[145,4,4,45,49],[147,2,2,49,51]]],[4,3,3,51,54,[[157,1,1,51,52],[167,1,1,52,53],[168,1,1,53,54]]],[5,4,4,54,58,[[192,3,3,54,57],[205,1,1,57,58]]],[6,3,3,58,61,[[224,3,3,58,61]]],[9,1,1,61,62,[[278,1,1,61,62]]],[10,2,2,62,64,[[298,1,1,62,63],[310,1,1,63,64]]],[11,3,3,64,67,[[323,1,1,64,65],[330,1,1,65,66],[337,1,1,66,67]]],[12,8,7,67,74,[[339,1,1,67,68],[349,1,1,68,69],[361,1,1,69,70],[362,1,1,70,71],[363,2,2,71,73],[364,2,1,73,74]]],[13,4,4,74,78,[[371,1,1,74,75],[373,1,1,75,76],[389,1,1,76,77],[397,1,1,77,78]]],[14,3,3,78,81,[[405,2,2,78,80],[409,1,1,80,81]]],[15,4,4,81,85,[[419,1,1,81,82],[420,2,2,82,84],[422,1,1,84,85]]],[16,1,1,85,86,[[426,1,1,85,86]]],[23,2,2,86,88,[[772,1,1,86,87],[785,1,1,87,88]]],[25,2,2,88,90,[[821,1,1,88,89],[846,1,1,89,90]]],[36,1,1,90,91,[[910,1,1,90,91]]],[37,2,2,91,93,[[917,1,1,91,92],[918,1,1,92,93]]]],[32,33,187,1831,1832,1873,1973,1974,1976,1977,2061,2062,2079,2155,2156,2193,2435,2437,2517,2533,3057,3058,3079,3084,3086,3103,3120,3150,3230,3405,3410,3418,3426,3429,3436,3441,3443,3473,3478,3489,3832,3898,4301,4308,4602,4609,4615,4620,4640,4683,4688,5067,5331,5350,5953,5964,5965,6361,6924,6926,6927,8304,8987,9437,9833,10033,10247,10321,10731,11025,11060,11080,11082,11119,11271,11334,11657,11861,12098,12103,12181,12493,12495,12507,12580,12712,19635,19958,20896,21655,22856,22967,22995]]],["time",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9385]]]]},{"k":"H7638","v":[["nets",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8951]]]]},{"k":"H7639","v":[["*",[15,12,[[10,6,5,0,5,[[297,6,5,0,5]]],[11,3,2,5,7,[[313,1,1,5,6],[337,2,1,6,7]]],[13,3,2,7,9,[[370,3,2,7,9]]],[17,1,1,9,10,[[453,1,1,9,10]]],[23,2,2,10,12,[[796,2,2,10,12]]]],[8951,8952,8954,8975,8976,9535,10239,11258,11259,13284,20298,20299]]],["checker",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8951]]],["lattice",[1,1,[[11,1,1,0,1,[[313,1,1,0,1]]]],[9535]]],["network",[5,5,[[10,3,3,0,3,[[297,3,3,0,3]]],[23,2,2,3,5,[[796,2,2,3,5]]]],[8952,8954,8976,20298,20299]]],["networks",[2,2,[[10,2,2,0,2,[[297,2,2,0,2]]]],[8975,8976]]],["snare",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13284]]],["work",[2,1,[[11,2,1,0,1,[[337,2,1,0,1]]]],[10239]]],["wreath",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11259]]],["wreaths",[2,2,[[13,2,2,0,2,[[370,2,2,0,2]]]],[11258,11259]]]]},{"k":"H7640","v":[["leg",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18601]]]]},{"k":"H7641","v":[["*",[19,16,[[0,10,8,0,8,[[40,10,8,0,8]]],[6,1,1,8,9,[[222,1,1,8,9]]],[7,1,1,9,10,[[233,1,1,9,10]]],[17,1,1,10,11,[[459,1,1,10,11]]],[18,2,2,11,13,[[546,2,2,11,13]]],[22,3,2,13,15,[[695,2,1,13,14],[705,1,1,14,15]]],[37,1,1,15,16,[[914,1,1,15,16]]]],[1200,1201,1202,1217,1218,1219,1221,1222,6875,7151,13460,14937,14950,17988,18163,22934]]],["+",[2,2,[[18,1,1,0,1,[[546,1,1,0,1]]],[22,1,1,1,2,[[705,1,1,1,2]]]],[14950,18163]]],["Shibboleth",[1,1,[[6,1,1,0,1,[[222,1,1,0,1]]]],[6875]]],["branches",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22934]]],["corn",[3,3,[[0,1,1,0,1,[[40,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[17,1,1,2,3,[[459,1,1,2,3]]]],[1200,7151,13460]]],["ears",[11,8,[[0,9,7,0,7,[[40,9,7,0,7]]],[22,2,1,7,8,[[695,2,1,7,8]]]],[1201,1202,1217,1218,1219,1221,1222,17988]]],["floods",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14937]]]]},{"k":"H7642","v":[["snail",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14787]]]]},{"k":"H7643","v":[["*",[6,6,[[3,2,2,0,2,[[148,2,2,0,2]]],[5,1,1,2,3,[[199,1,1,2,3]]],[22,2,2,3,5,[[694,2,2,3,5]]],[23,1,1,5,6,[[792,1,1,5,6]]]],[4721,4756,6173,17977,17978,20112]]],["Shebam",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4721]]],["Shibmah",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4756]]],["Sibmah",[4,4,[[5,1,1,0,1,[[199,1,1,0,1]]],[22,2,2,1,3,[[694,2,2,1,3]]],[23,1,1,3,4,[[792,1,1,3,4]]]],[6173,17977,17978,20112]]]]},{"k":"H7644","v":[["Shebna",[9,9,[[11,4,4,0,4,[[330,3,3,0,3],[331,1,1,3,4]]],[22,5,5,4,9,[[700,1,1,4,5],[714,3,3,5,8],[715,1,1,8,9]]]],[10042,10050,10061,10063,18067,18333,18341,18352,18354]]]]},{"k":"H7645","v":[["Shebaniah",[7,7,[[12,1,1,0,1,[[352,1,1,0,1]]],[15,6,6,1,7,[[421,2,2,1,3],[422,3,3,3,6],[424,1,1,6,7]]]],[10815,12515,12516,12553,12559,12561,12638]]]]},{"k":"H7646","v":[["*",[98,94,[[1,2,2,0,2,[[65,2,2,0,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[4,7,7,3,10,[[158,1,1,3,4],[160,2,2,4,6],[163,1,1,6,7],[166,1,1,7,8],[178,1,1,8,9],[183,1,1,9,10]]],[7,1,1,10,11,[[233,1,1,10,11]]],[12,1,1,11,12,[[360,1,1,11,12]]],[13,2,2,12,14,[[390,1,1,12,13],[397,1,1,13,14]]],[15,1,1,14,15,[[421,1,1,14,15]]],[17,6,6,15,21,[[442,1,1,15,16],[444,1,1,16,17],[454,1,1,17,18],[462,1,1,18,19],[466,1,1,19,20],[473,1,1,20,21]]],[18,23,23,21,44,[[494,2,2,21,23],[499,1,1,23,24],[514,1,1,24,25],[536,1,1,25,26],[540,1,1,26,27],[542,1,1,27,28],[555,1,1,28,29],[558,1,1,29,30],[565,1,1,30,31],[567,1,1,31,32],[568,1,1,32,33],[580,1,1,33,34],[581,3,3,34,37],[582,1,1,37,38],[584,1,1,38,39],[600,2,2,39,41],[609,1,1,41,42],[622,1,1,42,43],[624,1,1,43,44]]],[19,18,15,44,59,[[628,1,1,44,45],[632,1,1,45,46],[639,2,2,46,48],[641,1,1,48,49],[645,2,1,49,50],[647,1,1,50,51],[652,2,2,51,53],[654,2,1,53,54],[655,2,1,54,55],[657,4,4,55,59]]],[20,4,4,59,63,[[659,1,1,59,60],[662,1,1,60,61],[663,1,1,61,62],[664,1,1,62,63]]],[22,7,7,63,70,[[679,1,1,63,64],[687,1,1,64,65],[722,1,1,65,66],[731,1,1,66,67],[736,2,2,67,69],[744,1,1,69,70]]],[23,6,6,70,76,[[749,1,1,70,71],[775,1,1,71,72],[788,1,1,72,73],[790,1,1,73,74],[794,2,2,74,76]]],[24,3,3,76,79,[[799,2,2,76,78],[801,1,1,78,79]]],[25,6,6,79,85,[[808,1,1,79,80],[817,2,2,80,82],[828,1,1,82,83],[833,1,1,83,84],[840,1,1,84,85]]],[27,3,2,85,87,[[865,1,1,85,86],[874,2,1,86,87]]],[28,2,2,87,89,[[877,2,2,87,89]]],[29,1,1,89,90,[[882,1,1,89,90]]],[32,1,1,90,91,[[898,1,1,90,91]]],[34,2,2,91,93,[[904,2,2,91,93]]],[36,1,1,93,94,[[909,1,1,93,94]]]],[1955,1959,3550,5097,5147,5149,5223,5319,5578,5748,7163,10984,11692,11864,12536,13012,13069,13319,13495,13619,13820,14117,14118,14230,14469,14805,14844,14864,15142,15233,15311,15392,15411,15554,15584,15587,15599,15646,15708,16101,16102,16166,16336,16365,16431,16527,16730,16733,16786,16921,16967,17129,17130,17189,17215,17260,17266,17267,17273,17323,17389,17407,17420,17665,17849,18549,18722,18796,18797,18933,19065,19705,20027,20055,20176,20185,20369,20384,20448,20596,20790,20791,21154,21252,21468,22143,22272,22330,22337,22418,22662,22753,22764,22846]]],["+",[3,3,[[23,2,2,0,2,[[749,1,1,0,1],[775,1,1,1,2]]],[36,1,1,2,3,[[909,1,1,2,3]]]],[19065,19705,22846]]],["enough",[3,3,[[13,1,1,0,1,[[397,1,1,0,1]]],[19,1,1,1,2,[[655,1,1,1,2]]],[27,1,1,2,3,[[865,1,1,2,3]]]],[11864,17215,22143]]],["fill",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21252]]],["filled",[20,19,[[1,1,1,0,1,[[65,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[18,4,4,3,7,[[555,1,1,3,4],[581,1,1,4,5],[600,2,2,5,7]]],[19,7,7,7,14,[[628,1,1,7,8],[632,1,1,8,9],[641,1,1,9,10],[645,1,1,10,11],[652,1,1,11,12],[657,2,2,12,14]]],[20,1,1,14,15,[[664,1,1,14,15]]],[24,1,1,15,16,[[799,1,1,15,16]]],[25,1,1,16,17,[[840,1,1,16,17]]],[27,2,1,17,18,[[874,2,1,17,18]]],[34,1,1,18,19,[[904,1,1,18,19]]]],[1959,5578,12536,15142,15599,16101,16102,16431,16527,16786,16921,17129,17267,17273,17420,20369,21468,22272,22764]]],["filledst",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21154]]],["filleth",[2,2,[[17,1,1,0,1,[[444,1,1,0,1]]],[18,1,1,1,2,[[624,1,1,1,2]]]],[13069,16365]]],["full",[15,15,[[1,1,1,0,1,[[65,1,1,0,1]]],[4,4,4,1,5,[[158,1,1,1,2],[160,2,2,2,4],[163,1,1,4,5]]],[12,1,1,5,6,[[360,1,1,5,6]]],[13,1,1,6,7,[[390,1,1,6,7]]],[17,1,1,7,8,[[442,1,1,7,8]]],[18,3,3,8,11,[[494,1,1,8,9],[565,1,1,9,10],[581,1,1,10,11]]],[19,2,2,11,13,[[654,1,1,11,12],[657,1,1,12,13]]],[22,1,1,13,14,[[679,1,1,13,14]]],[24,1,1,14,15,[[799,1,1,14,15]]]],[1955,5097,5147,5149,5223,10984,11692,13012,14117,15311,15587,17189,17260,17665,20384]]],["plenty",[2,2,[[19,1,1,0,1,[[655,1,1,0,1]]],[23,1,1,1,2,[[788,1,1,1,2]]]],[17215,20027]]],["satiate",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20055]]],["satisfied",[37,37,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[17,3,3,2,5,[[454,1,1,2,3],[462,1,1,3,4],[466,1,1,4,5]]],[18,9,9,5,14,[[494,1,1,5,6],[499,1,1,6,7],[514,1,1,7,8],[536,1,1,8,9],[540,1,1,9,10],[542,1,1,10,11],[558,1,1,11,12],[581,1,1,12,13],[582,1,1,13,14]]],[19,6,6,14,20,[[639,2,2,14,16],[645,1,1,16,17],[647,1,1,17,18],[654,1,1,18,19],[657,1,1,19,20]]],[20,3,3,20,23,[[659,1,1,20,21],[662,1,1,21,22],[663,1,1,22,23]]],[22,4,4,23,27,[[687,1,1,23,24],[722,1,1,24,25],[731,1,1,25,26],[744,1,1,26,27]]],[23,2,2,27,29,[[794,2,2,27,29]]],[24,1,1,29,30,[[801,1,1,29,30]]],[25,2,2,30,32,[[817,2,2,30,32]]],[28,2,2,32,34,[[877,2,2,32,34]]],[29,1,1,34,35,[[882,1,1,34,35]]],[32,1,1,35,36,[[898,1,1,35,36]]],[34,1,1,36,37,[[904,1,1,36,37]]]],[3550,5319,13319,13495,13619,14118,14230,14469,14805,14844,14864,15233,15584,15646,16730,16733,16921,16967,17189,17266,17323,17389,17407,17849,18549,18722,18933,20176,20185,20448,20790,20791,22330,22337,22418,22662,22753]]],["satisfiest",[1,1,[[18,1,1,0,1,[[622,1,1,0,1]]]],[16336]]],["satisfieth",[2,2,[[18,2,2,0,2,[[580,1,1,0,1],[584,1,1,1,2]]]],[15554,15708]]],["satisfy",[7,7,[[17,1,1,0,1,[[473,1,1,0,1]]],[18,3,3,1,4,[[567,1,1,1,2],[568,1,1,2,3],[609,1,1,3,4]]],[22,2,2,4,6,[[736,2,2,4,6]]],[25,1,1,6,7,[[808,1,1,6,7]]]],[13820,15392,15411,16166,18796,18797,20596]]],["sufficed",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7163]]],["themselves",[1,1,[[4,1,1,0,1,[[183,1,1,0,1]]]],[5748]]],["weary",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17130]]]]},{"k":"H7647","v":[["*",[8,8,[[0,6,6,0,6,[[40,6,6,0,6]]],[19,1,1,6,7,[[630,1,1,6,7]]],[20,1,1,7,8,[[663,1,1,7,8]]]],[1224,1225,1226,1229,1242,1248,16465,17409]]],["abundance",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17409]]],["plenteous",[2,2,[[0,2,2,0,2,[[40,2,2,0,2]]]],[1229,1242]]],["plenteousness",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1248]]],["plenty",[4,4,[[0,3,3,0,3,[[40,3,3,0,3]]],[19,1,1,3,4,[[630,1,1,3,4]]]],[1224,1225,1226,16465]]]]},{"k":"H7648","v":[["*",[8,8,[[1,1,1,0,1,[[65,1,1,0,1]]],[2,2,2,1,3,[[114,1,1,1,2],[115,1,1,2,3]]],[4,1,1,3,4,[[175,1,1,3,4]]],[7,1,1,4,5,[[233,1,1,4,5]]],[18,2,2,5,7,[[493,1,1,5,6],[555,1,1,6,7]]],[19,1,1,7,8,[[640,1,1,7,8]]]],[1950,3488,3529,5524,7167,14103,15138,16772]]],["+",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7167]]],["fill",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[4,1,1,1,2,[[175,1,1,1,2]]]],[3488,5524]]],["full",[3,3,[[1,1,1,0,1,[[65,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[18,1,1,2,3,[[555,1,1,2,3]]]],[1950,3529,15138]]],["fulness",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14103]]],["satisfying",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16772]]]]},{"k":"H7649","v":[["*",[10,10,[[0,2,2,0,2,[[24,1,1,0,1],[34,1,1,1,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[12,1,1,4,5,[[366,1,1,4,5]]],[17,3,3,5,8,[[445,1,1,5,6],[449,1,1,6,7],[477,1,1,7,8]]],[19,2,2,8,10,[[646,1,1,8,9],[654,1,1,9,10]]]],[666,1040,5833,7245,11192,13101,13182,13939,16948,17176]]],["full",[8,8,[[0,2,2,0,2,[[24,1,1,0,1],[34,1,1,1,2]]],[8,1,1,2,3,[[237,1,1,2,3]]],[12,1,1,3,4,[[366,1,1,3,4]]],[17,3,3,4,7,[[445,1,1,4,5],[449,1,1,5,6],[477,1,1,6,7]]],[19,1,1,7,8,[[654,1,1,7,8]]]],[666,1040,7245,11192,13101,13182,13939,17176]]],["satisfied",[2,2,[[4,1,1,0,1,[[185,1,1,0,1]]],[19,1,1,1,2,[[646,1,1,1,2]]]],[5833,16948]]]]},{"k":"H7650","v":[["*",[186,175,[[0,19,17,0,17,[[20,3,3,0,3],[21,1,1,3,4],[23,4,4,4,8],[24,2,1,8,9],[25,2,2,9,11],[30,1,1,11,12],[46,2,1,12,13],[49,4,4,13,17]]],[1,6,5,17,22,[[62,4,3,17,20],[81,1,1,20,21],[82,1,1,21,22]]],[2,4,4,22,26,[[94,1,1,22,23],[95,2,2,23,25],[108,1,1,25,26]]],[3,8,8,26,34,[[121,2,2,26,28],[127,1,1,28,29],[130,2,2,29,31],[146,1,1,31,32],[148,2,2,32,34]]],[4,33,33,34,67,[[153,3,3,34,37],[154,1,1,37,38],[156,2,2,38,40],[158,4,4,40,44],[159,3,3,44,47],[160,2,2,47,49],[161,1,1,49,50],[162,2,2,50,52],[163,2,2,52,54],[165,1,1,54,55],[171,1,1,55,56],[178,2,2,56,58],[180,2,2,58,60],[181,1,1,60,61],[182,1,1,61,62],[183,4,4,62,66],[186,1,1,66,67]]],[5,16,15,67,82,[[187,1,1,67,68],[188,3,3,68,71],[191,2,1,71,72],[192,2,2,72,74],[195,4,4,74,78],[200,1,1,78,79],[207,2,2,79,81],[209,1,1,81,82]]],[6,6,6,82,88,[[212,2,2,82,84],[225,1,1,84,85],[231,3,3,85,88]]],[8,12,11,88,99,[[238,1,1,88,89],[249,3,2,89,91],[254,1,1,91,92],[255,3,3,92,95],[259,2,2,95,97],[263,1,1,97,98],[265,1,1,98,99]]],[9,6,6,99,105,[[269,2,2,99,101],[285,2,2,101,103],[287,2,2,103,105]]],[10,10,10,105,115,[[291,5,5,105,110],[292,3,3,110,113],[308,1,1,113,114],[312,1,1,114,115]]],[11,2,2,115,117,[[323,1,1,115,116],[337,1,1,116,117]]],[13,4,4,117,121,[[381,2,2,117,119],[384,1,1,119,120],[402,1,1,120,121]]],[14,2,1,121,122,[[412,2,1,121,122]]],[15,2,2,122,124,[[417,1,1,122,123],[425,1,1,123,124]]],[18,12,12,124,136,[[492,1,1,124,125],[501,1,1,125,126],[540,1,1,126,127],[566,3,3,127,130],[572,1,1,130,131],[579,1,1,131,132],[587,1,1,132,133],[596,1,1,133,134],[609,2,2,134,136]]],[20,1,1,136,137,[[667,1,1,136,137]]],[21,5,5,137,142,[[672,1,1,137,138],[673,1,1,138,139],[675,2,2,139,141],[678,1,1,141,142]]],[22,10,7,142,149,[[692,1,1,142,143],[697,1,1,143,144],[723,2,1,144,145],[726,1,1,145,146],[732,2,1,146,147],[740,1,1,147,148],[743,2,1,148,149]]],[23,14,13,149,162,[[748,1,1,149,150],[749,2,2,150,152],[751,1,1,152,153],[755,1,1,153,154],[756,2,1,154,155],[766,1,1,155,156],[776,1,1,156,157],[782,1,1,157,158],[784,1,1,158,159],[788,1,1,159,160],[793,1,1,160,161],[795,1,1,161,162]]],[25,2,2,162,164,[[817,1,1,162,163],[822,1,1,163,164]]],[26,1,1,164,165,[[861,1,1,164,165]]],[27,1,1,165,166,[[865,1,1,165,166]]],[29,4,4,166,170,[[882,1,1,166,167],[884,1,1,167,168],[886,2,2,168,170]]],[32,1,1,170,171,[[899,1,1,170,171]]],[35,2,1,171,172,[[906,2,1,171,172]]],[37,2,2,172,174,[[915,2,2,172,174]]],[38,1,1,174,175,[[927,1,1,174,175]]]],[536,537,544,563,594,598,600,628,691,695,723,926,1451,1511,1512,1530,1531,1872,1878,1886,2451,2474,2834,2852,2854,3293,3811,3813,4036,4124,4131,4650,4728,4729,4900,4926,4927,4952,5025,5035,5096,5099,5104,5109,5119,5123,5124,5138,5155,5162,5197,5206,5217,5229,5289,5414,5569,5581,5620,5622,5692,5728,5735,5748,5749,5751,5843,5857,5881,5886,5889,5940,5971,5975,6052,6055,6056,6057,6196,6424,6425,6467,6546,6560,6941,7103,7109,7120,7290,7535,7536,7712,7733,7747,7772,7860,7861,7952,7993,8090,8116,8518,8534,8582,8597,8730,8734,8746,8747,8768,8778,8793,8812,9351,9496,9833,10246,11504,11505,11557,12006,12257,12394,12696,14091,14245,14850,15329,15361,15375,15465,15529,15790,16004,16153,16162,17477,17561,17576,17606,17607,17644,17952,18022,18584,18615,18732,18862,18913,19029,19060,19065,19128,19231,19265,19459,19753,19911,19950,20036,20140,20226,20770,20967,22088,22148,22412,22458,22488,22495,22684,22792,22939,22940,23125]]],["+",[8,6,[[1,2,1,0,1,[[62,2,1,0,1]]],[2,1,1,1,2,[[95,1,1,1,2]]],[3,2,2,2,4,[[121,2,2,2,4]]],[8,3,2,4,6,[[249,3,2,4,6]]]],[1886,2854,3811,3813,7535,7536]]],["Swear",[5,5,[[0,2,2,0,2,[[24,1,1,0,1],[46,1,1,1,2]]],[6,1,1,2,3,[[225,1,1,2,3]]],[8,2,2,3,5,[[259,1,1,3,4],[265,1,1,4,5]]]],[691,1451,6941,7860,7993]]],["adjure",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[9496,11557]]],["adjured",[1,1,[[5,1,1,0,1,[[192,1,1,0,1]]]],[5975]]],["charge",[5,5,[[21,5,5,0,5,[[672,1,1,0,1],[673,1,1,1,2],[675,2,2,2,4],[678,1,1,4,5]]]],[17561,17576,17606,17607,17644]]],["oath",[4,4,[[0,1,1,0,1,[[49,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]],[11,1,1,2,3,[[323,1,1,2,3]]],[15,1,1,3,4,[[417,1,1,3,4]]]],[1531,9351,9833,12394]]],["sware",[70,69,[[0,9,9,0,9,[[20,1,1,0,1],[23,2,2,1,3],[24,1,1,3,4],[25,2,2,4,6],[30,1,1,6,7],[46,1,1,7,8],[49,1,1,8,9]]],[1,3,3,9,12,[[62,2,2,9,11],[82,1,1,11,12]]],[3,4,4,12,16,[[130,2,2,12,14],[148,2,2,14,16]]],[4,24,24,16,40,[[153,3,3,16,19],[154,1,1,19,20],[156,2,2,20,22],[158,3,3,22,25],[159,2,2,25,27],[160,2,2,27,29],[161,1,1,29,30],[162,1,1,30,31],[163,2,2,31,33],[178,1,1,33,34],[180,1,1,34,35],[182,1,1,35,36],[183,3,3,36,39],[186,1,1,39,40]]],[5,9,8,40,48,[[187,1,1,40,41],[191,2,1,41,42],[192,1,1,42,43],[195,2,2,43,45],[200,1,1,45,46],[207,2,2,46,48]]],[6,1,1,48,49,[[212,1,1,48,49]]],[8,4,4,49,53,[[254,1,1,49,50],[255,1,1,50,51],[259,1,1,51,52],[263,1,1,52,53]]],[9,3,3,53,56,[[269,1,1,53,54],[285,1,1,54,55],[287,1,1,55,56]]],[10,4,4,56,60,[[291,2,2,56,58],[292,2,2,58,60]]],[11,1,1,60,61,[[337,1,1,60,61]]],[13,1,1,61,62,[[381,1,1,61,62]]],[14,1,1,62,63,[[412,1,1,62,63]]],[18,2,2,63,65,[[572,1,1,63,64],[609,1,1,64,65]]],[23,2,2,65,67,[[782,1,1,65,66],[784,1,1,66,67]]],[25,1,1,67,68,[[817,1,1,67,68]]],[26,1,1,68,69,[[861,1,1,68,69]]]],[544,598,600,691,695,723,926,1451,1530,1872,1878,2474,4124,4131,4728,4729,4900,4926,4927,4952,5025,5035,5096,5104,5109,5123,5124,5138,5155,5162,5197,5217,5229,5569,5622,5728,5748,5749,5751,5843,5857,5940,5971,6052,6057,6196,6424,6425,6546,7712,7733,7861,7952,8116,8534,8597,8746,8747,8778,8793,10246,11504,12257,15465,16153,19911,19950,20770,22088]]],["swarest",[5,5,[[1,1,1,0,1,[[81,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[4,1,1,2,3,[[178,1,1,2,3]]],[10,1,1,3,4,[[291,1,1,3,4]]],[18,1,1,4,5,[[566,1,1,4,5]]]],[2451,4036,5581,8734,15375]]],["swear",[38,36,[[0,6,6,0,6,[[20,2,2,0,2],[23,2,2,2,4],[49,2,2,4,6]]],[2,2,2,6,8,[[94,1,1,6,7],[108,1,1,7,8]]],[3,1,1,8,9,[[146,1,1,8,9]]],[4,2,2,9,11,[[158,1,1,9,10],[162,1,1,10,11]]],[5,4,4,11,15,[[188,3,3,11,14],[209,1,1,14,15]]],[8,1,1,15,16,[[255,1,1,15,16]]],[9,1,1,16,17,[[285,1,1,16,17]]],[10,3,3,17,20,[[291,2,2,17,19],[292,1,1,19,20]]],[13,1,1,20,21,[[402,1,1,20,21]]],[14,1,1,21,22,[[412,1,1,21,22]]],[15,1,1,22,23,[[425,1,1,22,23]]],[22,4,4,23,27,[[697,1,1,23,24],[723,1,1,24,25],[726,1,1,25,26],[743,1,1,26,27]]],[23,7,6,27,33,[[748,1,1,27,28],[749,1,1,28,29],[751,1,1,29,30],[756,2,1,30,31],[766,1,1,31,32],[776,1,1,32,33]]],[27,1,1,33,34,[[865,1,1,33,34]]],[29,1,1,34,35,[[886,1,1,34,35]]],[35,2,1,35,36,[[906,2,1,35,36]]]],[536,537,594,628,1511,1512,2834,3293,4650,5099,5206,5881,5886,5889,6467,7747,8518,8730,8768,8812,12006,12257,12696,18022,18584,18615,18913,19029,19060,19128,19265,19459,19753,22148,22495,22792]]],["swearers",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23125]]],["sweareth",[7,7,[[2,1,1,0,1,[[95,1,1,0,1]]],[18,2,2,1,3,[[492,1,1,1,2],[540,1,1,2,3]]],[20,1,1,3,4,[[667,1,1,3,4]]],[22,1,1,4,5,[[743,1,1,4,5]]],[37,2,2,5,7,[[915,2,2,5,7]]]],[2852,14091,14850,17477,18913,22939,22940]]],["sworn",[40,39,[[0,1,1,0,1,[[21,1,1,0,1]]],[4,6,6,1,7,[[159,1,1,1,2],[165,1,1,2,3],[171,1,1,3,4],[180,1,1,4,5],[181,1,1,5,6],[183,1,1,6,7]]],[5,2,2,7,9,[[195,2,2,7,9]]],[6,4,4,9,13,[[212,1,1,9,10],[231,3,3,10,13]]],[8,2,2,13,15,[[238,1,1,13,14],[255,1,1,14,15]]],[9,2,2,15,17,[[269,1,1,15,16],[287,1,1,16,17]]],[13,1,1,17,18,[[381,1,1,17,18]]],[18,7,7,18,25,[[501,1,1,18,19],[566,2,2,19,21],[579,1,1,21,22],[587,1,1,22,23],[596,1,1,23,24],[609,1,1,24,25]]],[22,5,4,25,29,[[692,1,1,25,26],[723,1,1,26,27],[732,2,1,27,28],[740,1,1,28,29]]],[23,5,5,29,34,[[749,1,1,29,30],[755,1,1,30,31],[788,1,1,31,32],[793,1,1,32,33],[795,1,1,33,34]]],[25,1,1,34,35,[[822,1,1,34,35]]],[29,3,3,35,38,[[882,1,1,35,36],[884,1,1,36,37],[886,1,1,37,38]]],[32,1,1,38,39,[[899,1,1,38,39]]]],[563,5119,5289,5414,5620,5692,5735,6055,6056,6560,7103,7109,7120,7290,7772,8090,8582,11505,14245,15329,15361,15529,15790,16004,16162,17952,18584,18732,18862,19065,19231,20036,20140,20226,20967,22412,22458,22488,22684]]]]},{"k":"H7651","v":[["*",[395,346,[[0,62,52,0,52,[[3,1,1,0,1],[4,5,4,1,5],[6,7,5,5,10],[7,4,4,10,14],[10,1,1,14,15],[20,3,3,15,18],[22,1,1,18,19],[24,1,1,19,20],[28,4,4,20,24],[30,1,1,24,25],[32,1,1,25,26],[36,1,1,26,27],[40,28,22,27,49],[45,1,1,49,50],[46,2,1,50,51],[49,1,1,51,52]]],[1,19,19,52,71,[[51,1,1,52,53],[55,2,2,53,55],[56,1,1,55,56],[61,2,2,56,58],[62,2,2,58,60],[71,1,1,60,61],[72,1,1,61,62],[74,1,1,62,63],[78,3,3,63,66],[83,1,1,66,67],[86,1,1,67,68],[87,3,3,68,71]]],[2,46,42,71,113,[[93,2,2,71,73],[97,4,3,73,76],[101,1,1,76,77],[102,8,8,77,85],[103,6,6,85,91],[104,4,4,91,95],[105,2,2,95,97],[111,1,1,97,98],[112,10,10,98,108],[114,4,1,108,109],[115,4,4,109,113]]],[3,46,41,113,154,[[117,2,2,113,115],[118,3,3,115,118],[119,1,1,118,119],[120,1,1,119,120],[124,1,1,120,121],[128,3,2,121,123],[129,1,1,123,124],[132,1,1,124,125],[135,4,4,125,129],[139,8,4,129,133],[142,3,3,133,136],[144,7,7,136,143],[145,7,7,143,150],[147,4,4,150,154]]],[4,12,11,154,165,[[159,1,1,154,155],[167,2,2,155,157],[168,6,5,157,162],[180,2,2,162,164],[183,1,1,164,165]]],[5,15,9,165,174,[[192,11,5,165,170],[204,4,4,170,174]]],[6,13,13,174,187,[[216,2,2,174,176],[218,2,2,176,178],[222,1,1,178,179],[224,2,2,179,181],[226,4,4,181,185],[230,2,2,185,187]]],[7,1,1,187,188,[[235,1,1,187,188]]],[8,7,7,188,195,[[237,1,1,188,189],[241,1,1,189,190],[245,1,1,190,191],[246,1,1,191,192],[248,1,1,192,193],[251,1,1,193,194],[266,1,1,194,195]]],[9,8,8,195,203,[[268,1,1,195,196],[271,1,1,196,197],[274,1,1,197,198],[276,1,1,198,199],[287,2,2,199,201],[289,1,1,201,202],[290,1,1,202,203]]],[10,18,15,203,218,[[292,1,1,203,204],[296,2,2,204,206],[297,2,1,206,207],[298,2,1,207,208],[301,1,1,208,209],[304,1,1,209,210],[306,3,2,210,212],[308,1,1,212,213],[309,1,1,213,214],[310,3,3,214,217],[312,1,1,217,218]]],[11,18,17,218,235,[[315,2,2,218,220],[316,1,1,220,221],[317,2,2,221,223],[320,3,3,223,226],[323,1,1,226,227],[324,1,1,227,228],[325,2,2,228,230],[327,1,1,230,231],[328,1,1,231,232],[336,1,1,232,233],[337,3,2,233,235]]],[12,22,21,235,256,[[340,2,2,235,237],[342,2,2,237,239],[344,2,2,239,241],[346,2,2,241,243],[347,1,1,243,244],[349,3,3,244,247],[352,2,1,247,248],[355,1,1,248,249],[356,1,1,249,250],[361,1,1,250,251],[362,1,1,251,252],[363,2,2,252,254],[366,2,2,254,256]]],[13,23,14,256,270,[[373,3,2,256,258],[378,1,1,258,259],[379,1,1,259,260],[381,2,1,260,261],[383,4,1,261,262],[390,1,1,262,263],[392,1,1,263,264],[395,4,1,264,265],[396,5,4,265,269],[401,1,1,269,270]]],[14,13,12,270,282,[[404,10,9,270,279],[408,1,1,279,280],[409,1,1,280,281],[410,1,1,281,282]]],[15,13,12,282,294,[[419,12,11,282,293],[420,1,1,293,294]]],[16,8,8,294,302,[[426,4,4,294,298],[427,2,2,298,300],[433,1,1,300,301],[434,1,1,301,302]]],[17,7,5,302,307,[[436,2,2,302,304],[437,2,1,304,305],[440,1,1,305,306],[477,2,1,306,307]]],[18,1,1,307,308,[[596,1,1,307,308]]],[19,5,5,308,313,[[633,1,1,308,309],[636,1,1,309,310],[651,1,1,310,311],[653,2,2,311,313]]],[20,1,1,313,314,[[669,1,1,313,314]]],[22,3,3,314,317,[[682,1,1,314,315],[689,1,1,315,316],[708,1,1,316,317]]],[23,7,7,317,324,[[759,1,1,317,318],[776,1,1,318,319],[778,1,1,319,320],[796,4,4,320,324]]],[25,20,17,324,341,[[804,2,2,324,326],[830,1,1,326,327],[831,1,1,327,328],[840,3,3,328,331],[841,2,2,331,333],[842,1,1,333,334],[844,2,2,334,336],[845,1,1,336,337],[846,7,4,337,341]]],[26,1,1,341,342,[[858,1,1,341,342]]],[32,1,1,342,343,[[897,1,1,342,343]]],[37,5,3,343,346,[[913,1,1,343,344],[914,4,2,344,346]]]],[103,112,130,131,136,161,162,163,169,170,187,193,195,197,287,541,542,543,572,675,813,815,822,825,896,963,1085,1197,1198,1199,1200,1201,1202,1213,1214,1215,1217,1218,1219,1221,1222,1224,1225,1229,1231,1242,1243,1248,1249,1411,1448,1516,1570,1671,1675,1710,1831,1835,1873,1874,2143,2159,2232,2366,2371,2373,2514,2627,2657,2658,2661,2801,2812,2928,2950,2952,3046,3056,3057,3073,3078,3083,3085,3102,3106,3118,3119,3127,3138,3149,3162,3181,3187,3192,3196,3215,3220,3396,3408,3410,3417,3420,3436,3438,3441,3442,3443,3444,3477,3542,3545,3548,3552,3635,3643,3666,3684,3689,3714,3779,3941,4073,4074,4097,4243,4293,4300,4303,4305,4417,4420,4430,4445,4496,4523,4540,4588,4594,4596,4598,4601,4604,4606,4610,4612,4616,4618,4620,4640,4644,4683,4700,4707,4716,5112,5320,5328,5345,5346,5351,5355,5357,5618,5636,5738,5953,5955,5957,5962,5964,6295,6298,6299,6302,6655,6679,6733,6745,6878,6921,6926,6956,6957,6962,6968,7069,7070,7205,7245,7332,7426,7448,7493,7605,8022,8060,8137,8213,8258,8586,8589,8692,8705,8781,8902,8934,8951,9050,9111,9239,9293,9298,9384,9405,9423,9437,9438,9531,9585,9602,9638,9657,9661,9728,9729,9730,9850,9851,9872,9881,9926,9964,10218,10230,10249,10365,10385,10441,10446,10540,10546,10628,10640,10671,10745,10747,10754,10817,10894,10925,11030,11070,11107,11109,11168,11191,11332,11333,11450,11462,11501,11534,11678,11745,11812,11848,11849,11850,11851,11983,12032,12036,12052,12060,12065,12066,12092,12093,12094,12173,12180,12236,12434,12438,12439,12449,12457,12461,12462,12487,12488,12489,12492,12511,12703,12707,12712,12716,12733,12740,12826,12864,12871,12872,12904,12970,13930,16062,16556,16639,17095,17157,17166,17515,17734,17899,18243,19324,19740,19815,20301,20304,20306,20307,20517,20518,21200,21224,21457,21460,21462,21499,21503,21529,21597,21598,21625,21650,21651,21653,21655,22013,22638,22921,22924,22932]]],["+",[23,21,[[0,8,6,0,6,[[6,5,3,0,3],[7,1,1,3,4],[36,1,1,4,5],[46,1,1,5,6]]],[2,1,1,6,7,[[115,1,1,6,7]]],[6,1,1,7,8,[[218,1,1,7,8]]],[7,1,1,8,9,[[235,1,1,8,9]]],[10,2,2,9,11,[[304,1,1,9,10],[312,1,1,10,11]]],[11,2,2,11,13,[[325,1,1,11,12],[328,1,1,12,13]]],[12,3,3,13,16,[[344,1,1,13,14],[361,1,1,14,15],[362,1,1,15,16]]],[13,1,1,16,17,[[378,1,1,16,17]]],[14,1,1,17,18,[[404,1,1,17,18]]],[15,1,1,18,19,[[419,1,1,18,19]]],[19,1,1,19,20,[[653,1,1,19,20]]],[23,1,1,20,21,[[776,1,1,20,21]]]],[161,162,170,187,1085,1448,3545,6733,7205,9239,9531,9872,9964,10546,11030,11070,11450,12066,12462,17157,19740]]],["Seven",[12,12,[[1,5,5,0,5,[[61,2,2,0,2],[62,1,1,2,3],[78,1,1,3,4],[83,1,1,4,5]]],[2,1,1,5,6,[[112,1,1,5,6]]],[4,2,2,6,8,[[168,2,2,6,8]]],[11,1,1,8,9,[[323,1,1,8,9]]],[18,1,1,9,10,[[596,1,1,9,10]]],[25,2,2,10,12,[[844,2,2,10,12]]]],[1831,1835,1873,2373,2514,3438,5351,5357,9850,16062,21597,21598]]],["seven",[344,300,[[0,53,46,0,46,[[4,5,4,0,4],[6,2,2,4,6],[7,3,3,6,9],[10,1,1,9,10],[20,3,3,10,13],[22,1,1,13,14],[24,1,1,14,15],[28,4,4,15,19],[30,1,1,19,20],[32,1,1,20,21],[40,28,22,21,43],[45,1,1,43,44],[46,1,1,44,45],[49,1,1,45,46]]],[1,14,14,46,60,[[51,1,1,46,47],[55,2,2,47,49],[56,1,1,49,50],[62,1,1,50,51],[71,1,1,51,52],[72,1,1,52,53],[74,1,1,53,54],[78,2,2,54,56],[86,1,1,56,57],[87,3,3,57,60]]],[2,41,37,60,97,[[93,2,2,60,62],[97,4,3,62,65],[101,1,1,65,66],[102,8,8,66,74],[103,6,6,74,80],[104,4,4,80,84],[105,2,2,84,86],[111,1,1,86,87],[112,9,9,87,96],[114,4,1,96,97]]],[3,46,41,97,138,[[117,2,2,97,99],[118,3,3,99,102],[119,1,1,102,103],[120,1,1,103,104],[124,1,1,104,105],[128,3,2,105,107],[129,1,1,107,108],[132,1,1,108,109],[135,4,4,109,113],[139,8,4,113,117],[142,3,3,117,120],[144,7,7,120,127],[145,7,7,127,134],[147,4,4,134,138]]],[4,9,9,138,147,[[159,1,1,138,139],[167,1,1,139,140],[168,4,4,140,144],[180,2,2,144,146],[183,1,1,146,147]]],[5,15,9,147,156,[[192,11,5,147,152],[204,4,4,152,156]]],[6,12,12,156,168,[[216,2,2,156,158],[218,1,1,158,159],[222,1,1,159,160],[224,2,2,160,162],[226,4,4,162,166],[230,2,2,166,168]]],[8,7,7,168,175,[[237,1,1,168,169],[241,1,1,169,170],[245,1,1,170,171],[246,1,1,171,172],[248,1,1,172,173],[251,1,1,173,174],[266,1,1,174,175]]],[9,8,8,175,183,[[268,1,1,175,176],[271,1,1,176,177],[274,1,1,177,178],[276,1,1,178,179],[287,2,2,179,181],[289,1,1,181,182],[290,1,1,182,183]]],[10,14,12,183,195,[[292,1,1,183,184],[296,2,2,184,186],[297,2,1,186,187],[298,2,1,187,188],[301,1,1,188,189],[306,1,1,189,190],[308,1,1,190,191],[309,1,1,191,192],[310,3,3,192,195]]],[11,11,10,195,205,[[315,2,2,195,197],[316,1,1,197,198],[317,2,2,198,200],[320,3,3,200,203],[336,1,1,203,204],[337,2,1,204,205]]],[12,19,18,205,223,[[340,2,2,205,207],[342,2,2,207,209],[344,1,1,209,210],[346,2,2,210,212],[347,1,1,212,213],[349,3,3,213,216],[352,2,1,216,217],[355,1,1,217,218],[356,1,1,218,219],[363,2,2,219,221],[366,2,2,221,223]]],[13,22,13,223,236,[[373,3,2,223,225],[379,1,1,225,226],[381,2,1,226,227],[383,4,1,227,228],[390,1,1,228,229],[392,1,1,229,230],[395,4,1,230,231],[396,5,4,231,235],[401,1,1,235,236]]],[14,11,10,236,246,[[404,9,8,236,244],[408,1,1,244,245],[410,1,1,245,246]]],[15,12,11,246,257,[[419,11,10,246,256],[420,1,1,256,257]]],[16,7,7,257,264,[[426,4,4,257,261],[427,1,1,261,262],[433,1,1,262,263],[434,1,1,263,264]]],[17,7,5,264,269,[[436,2,2,264,266],[437,2,1,266,267],[440,1,1,267,268],[477,2,1,268,269]]],[19,4,4,269,273,[[633,1,1,269,270],[636,1,1,270,271],[651,1,1,271,272],[653,1,1,272,273]]],[20,1,1,273,274,[[669,1,1,273,274]]],[22,3,3,274,277,[[682,1,1,274,275],[689,1,1,275,276],[708,1,1,276,277]]],[23,5,5,277,282,[[759,1,1,277,278],[778,1,1,278,279],[796,3,3,279,282]]],[25,16,13,282,295,[[804,2,2,282,284],[830,1,1,284,285],[840,3,3,285,288],[841,2,2,288,290],[842,1,1,290,291],[845,1,1,291,292],[846,6,3,292,295]]],[26,1,1,295,296,[[858,1,1,295,296]]],[32,1,1,296,297,[[897,1,1,296,297]]],[37,5,3,297,300,[[913,1,1,297,298],[914,4,2,298,300]]]],[112,130,131,136,163,169,193,195,197,287,541,542,543,572,675,813,815,822,825,896,963,1197,1198,1199,1200,1201,1202,1213,1214,1215,1217,1218,1219,1221,1222,1224,1225,1229,1231,1242,1243,1248,1249,1411,1448,1516,1570,1671,1675,1710,1874,2143,2159,2232,2366,2371,2627,2657,2658,2661,2801,2812,2928,2950,2952,3046,3056,3057,3073,3078,3083,3085,3102,3106,3118,3119,3127,3138,3149,3162,3181,3187,3192,3196,3215,3220,3396,3408,3410,3417,3420,3436,3441,3442,3443,3444,3477,3635,3643,3666,3684,3689,3714,3779,3941,4073,4074,4097,4243,4293,4300,4303,4305,4417,4420,4430,4445,4496,4523,4540,4588,4594,4596,4598,4601,4604,4606,4610,4612,4616,4618,4620,4640,4644,4683,4700,4707,4716,5112,5320,5345,5346,5351,5355,5618,5636,5738,5953,5955,5957,5962,5964,6295,6298,6299,6302,6655,6679,6745,6878,6921,6926,6956,6957,6962,6968,7069,7070,7245,7332,7426,7448,7493,7605,8022,8060,8137,8213,8258,8586,8589,8692,8705,8781,8902,8934,8951,9050,9111,9298,9384,9405,9423,9437,9438,9585,9602,9638,9657,9661,9728,9729,9730,10218,10249,10365,10385,10441,10446,10540,10628,10640,10671,10745,10747,10754,10817,10894,10925,11107,11109,11168,11191,11332,11333,11462,11501,11534,11678,11745,11812,11848,11849,11850,11851,11983,12032,12036,12052,12060,12065,12092,12093,12094,12173,12236,12434,12438,12439,12449,12457,12461,12487,12488,12489,12492,12511,12703,12707,12712,12716,12733,12826,12864,12871,12872,12904,12970,13930,16556,16639,17095,17166,17515,17734,17899,18243,19324,19815,20301,20306,20307,20517,20518,21200,21457,21460,21462,21499,21503,21529,21625,21651,21653,21655,22013,22638,22921,22924,22932]]],["sevenfold",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[103]]],["seventh",[12,12,[[4,1,1,0,1,[[167,1,1,0,1]]],[10,2,2,1,3,[[306,2,2,1,3]]],[11,4,4,3,7,[[324,1,1,3,4],[325,1,1,4,5],[327,1,1,5,6],[337,1,1,6,7]]],[14,1,1,7,8,[[409,1,1,7,8]]],[16,1,1,8,9,[[427,1,1,8,9]]],[23,1,1,9,10,[[796,1,1,9,10]]],[25,2,2,10,12,[[831,1,1,10,11],[846,1,1,11,12]]]],[5328,9293,9298,9851,9881,9926,10230,12180,12740,20304,21224,21650]]],["times",[3,3,[[2,3,3,0,3,[[115,3,3,0,3]]]],[3542,3548,3552]]]]},{"k":"H7652","v":[["Sheba",[10,10,[[5,1,1,0,1,[[205,1,1,0,1]]],[9,8,8,1,9,[[286,8,8,1,9]]],[12,1,1,9,10,[[342,1,1,9,10]]]],[6323,8555,8556,8560,8561,8564,8567,8575,8576,10441]]]]},{"k":"H7653","v":[["fulness",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20811]]]]},{"k":"H7654","v":[["*",[5,5,[[22,3,3,0,3,[[701,1,1,0,1],[733,1,1,1,2],[734,1,1,2,3]]],[25,2,2,3,5,[[817,1,1,3,4],[840,1,1,4,5]]]],[18095,18742,18764,20790,21467]]],["+",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20790]]],["enough",[1,1,[[22,1,1,0,1,[[734,1,1,0,1]]]],[18764]]],["full",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21467]]],["satisfieth",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18742]]],["sufficiently",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18095]]]]},{"k":"H7655","v":[["*",[6,6,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,5,5,1,6,[[852,1,1,1,2],[853,4,4,2,6]]]],[12187,21826,21853,21860,21862,21869]]],["seven",[5,5,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,4,4,1,5,[[853,4,4,1,5]]]],[12187,21853,21860,21862,21869]]],["times",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21826]]]]},{"k":"H7656","v":[["Shebah",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[725]]]]},{"k":"H7657","v":[["*",[91,90,[[0,8,8,0,8,[[3,1,1,0,1],[4,2,2,1,3],[10,1,1,3,4],[11,1,1,4,5],[24,1,1,5,6],[45,1,1,6,7],[49,1,1,7,8]]],[1,7,7,8,15,[[50,1,1,8,9],[64,1,1,9,10],[73,2,2,10,12],[87,3,3,12,15]]],[3,26,26,15,41,[[117,1,1,15,16],[118,1,1,16,17],[119,2,2,17,19],[123,13,13,19,32],[127,3,3,32,35],[142,1,1,35,36],[147,4,4,36,40],[149,1,1,40,41]]],[4,1,1,41,42,[[162,1,1,41,42]]],[6,10,10,42,52,[[211,1,1,42,43],[218,2,2,43,45],[219,6,6,45,51],[222,1,1,51,52]]],[8,1,1,52,53,[[241,1,1,52,53]]],[9,1,1,53,54,[[290,1,1,53,54]]],[10,1,1,54,55,[[295,1,1,54,55]]],[11,3,3,55,58,[[322,3,3,55,58]]],[12,2,2,58,60,[[358,2,2,58,60]]],[13,4,4,60,64,[[368,2,2,60,62],[395,1,1,62,63],[402,1,1,63,64]]],[14,8,8,64,72,[[404,5,5,64,69],[410,3,3,69,72]]],[15,5,5,72,77,[[419,4,4,72,76],[423,1,1,76,77]]],[16,1,1,77,78,[[434,1,1,77,78]]],[18,1,1,78,79,[[567,1,1,78,79]]],[22,3,2,79,81,[[701,3,2,79,81]]],[23,3,3,81,84,[[769,2,2,81,83],[773,1,1,83,84]]],[25,2,2,84,86,[[809,1,1,84,85],[842,1,1,85,86]]],[26,2,2,86,88,[[858,2,2,86,88]]],[37,2,2,88,90,[[911,1,1,88,89],[917,1,1,89,90]]]],[103,117,136,292,302,665,1413,1509,1537,1947,2178,2186,2658,2661,2662,3631,3662,3735,3738,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935,4040,4048,4049,4511,4696,4697,4701,4702,4769,5208,6516,6733,6749,6756,6758,6759,6772,6778,6810,6883,7350,8707,8893,9794,9799,9800,10939,10948,11213,11229,11823,12014,12030,12031,12032,12063,12067,12208,12215,12236,12428,12429,12459,12463,12607,12850,15388,18092,18094,19545,19546,19645,20615,21538,21990,22012,22890,22967]]],["+",[12,12,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,1,1,1,2,[[87,1,1,1,2]]],[3,8,8,2,10,[[117,1,1,2,3],[118,1,1,3,4],[119,2,2,4,6],[142,1,1,6,7],[147,3,3,7,10]]],[6,1,1,10,11,[[218,1,1,10,11]]],[18,1,1,11,12,[[567,1,1,11,12]]]],[665,2658,3631,3662,3735,3738,4511,4697,4701,4702,6733,15388]]],["Seventy",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22012]]],["seventy",[57,56,[[0,5,5,0,5,[[3,1,1,0,1],[4,2,2,1,3],[10,1,1,3,4],[11,1,1,4,5]]],[1,5,5,5,10,[[50,1,1,5,6],[73,2,2,6,8],[87,2,2,8,10]]],[3,17,17,10,27,[[123,13,13,10,23],[127,3,3,23,26],[147,1,1,26,27]]],[6,1,1,27,28,[[219,1,1,27,28]]],[9,1,1,28,29,[[290,1,1,28,29]]],[11,3,3,29,32,[[322,3,3,29,32]]],[12,1,1,32,33,[[358,1,1,32,33]]],[14,8,8,33,41,[[404,5,5,33,38],[410,3,3,38,41]]],[15,5,5,41,46,[[419,4,4,41,45],[423,1,1,45,46]]],[16,1,1,46,47,[[434,1,1,46,47]]],[22,3,2,47,49,[[701,3,2,47,49]]],[23,3,3,49,52,[[769,2,2,49,51],[773,1,1,51,52]]],[25,2,2,52,54,[[809,1,1,52,53],[842,1,1,53,54]]],[26,1,1,54,55,[[858,1,1,54,55]]],[37,1,1,55,56,[[917,1,1,55,56]]]],[103,117,136,292,302,1537,2178,2186,2661,2662,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935,4040,4048,4049,4696,6810,8707,9794,9799,9800,10948,12030,12031,12032,12063,12067,12208,12215,12236,12428,12429,12459,12463,12607,12850,18092,18094,19545,19546,19645,20615,21538,21990,22967]]],["ten",[21,21,[[0,2,2,0,2,[[45,1,1,0,1],[49,1,1,1,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[3,1,1,3,4,[[149,1,1,3,4]]],[4,1,1,4,5,[[162,1,1,4,5]]],[6,8,8,5,13,[[211,1,1,5,6],[218,1,1,6,7],[219,5,5,7,12],[222,1,1,12,13]]],[8,1,1,13,14,[[241,1,1,13,14]]],[10,1,1,14,15,[[295,1,1,14,15]]],[12,1,1,15,16,[[358,1,1,15,16]]],[13,4,4,16,20,[[368,2,2,16,18],[395,1,1,18,19],[402,1,1,19,20]]],[37,1,1,20,21,[[911,1,1,20,21]]]],[1413,1509,1947,4769,5208,6516,6749,6756,6758,6759,6772,6778,6883,7350,8893,10939,11213,11229,11823,12014,22890]]]]},{"k":"H7658","v":[["seven",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13935]]]]},{"k":"H7659","v":[["*",[6,6,[[0,2,2,0,2,[[3,2,2,0,2]]],[18,2,2,2,4,[[489,1,1,2,3],[556,1,1,3,4]]],[19,1,1,4,5,[[633,1,1,4,5]]],[22,1,1,5,6,[[708,1,1,5,6]]]],[94,103,14072,15197,16571,18243]]],["seven",[1,1,[[18,1,1,0,1,[[489,1,1,0,1]]]],[14072]]],["sevenfold",[5,5,[[0,2,2,0,2,[[3,2,2,0,2]]],[18,1,1,2,3,[[556,1,1,2,3]]],[19,1,1,3,4,[[633,1,1,3,4]]],[22,1,1,4,5,[[708,1,1,4,5]]]],[94,103,15197,16571,18243]]]]},{"k":"H7660","v":[["*",[2,2,[[1,2,2,0,2,[[77,2,2,0,2]]]],[2313,2332]]],["embroider",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2332]]],["set",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2313]]]]},{"k":"H7661","v":[["anguish",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8031]]]]},{"k":"H7662","v":[["*",[5,5,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,4,4,1,5,[[851,1,1,1,2],[853,3,3,2,5]]]],[12158,21802,21852,21860,21863]]],["alone",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12158]]],["leave",[3,3,[[26,3,3,0,3,[[853,3,3,0,3]]]],[21852,21860,21863]]],["left",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21802]]]]},{"k":"H7663","v":[["*",[8,8,[[7,1,1,0,1,[[232,1,1,0,1]]],[15,2,2,1,3,[[414,2,2,1,3]]],[16,1,1,3,4,[[434,1,1,3,4]]],[18,3,3,4,7,[[581,1,1,4,5],[596,1,1,5,6],[622,1,1,6,7]]],[22,1,1,7,8,[[716,1,1,7,8]]]],[7140,12320,12322,12835,15598,16064,16335,18408]]],["+",[2,2,[[15,2,2,0,2,[[414,2,2,0,2]]]],[12320,12322]]],["hope",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18408]]],["hoped",[2,2,[[16,1,1,0,1,[[434,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[12835,16064]]],["tarry",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7140]]],["wait",[2,2,[[18,2,2,0,2,[[581,1,1,0,1],[622,1,1,1,2]]]],[15598,16335]]]]},{"k":"H7664","v":[["*",[2,2,[[18,2,2,0,2,[[596,1,1,0,1],[623,1,1,1,2]]]],[16014,16346]]],["+",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16014]]],["hope",[1,1,[[18,1,1,0,1,[[623,1,1,0,1]]]],[16346]]]]},{"k":"H7665","v":[["*",[148,143,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,9,8,1,9,[[58,1,1,1,2],[61,1,1,2,3],[71,2,2,3,5],[72,2,1,5,6],[81,1,1,6,7],[83,2,2,7,9]]],[2,7,7,9,16,[[95,1,1,9,10],[100,1,1,10,11],[104,1,1,11,12],[111,1,1,12,13],[115,3,3,13,16]]],[3,1,1,16,17,[[125,1,1,16,17]]],[4,4,4,17,21,[[159,1,1,17,18],[161,1,1,18,19],[162,1,1,19,20],[164,1,1,20,21]]],[6,1,1,21,22,[[217,1,1,21,22]]],[8,1,1,22,23,[[239,1,1,22,23]]],[10,4,4,23,27,[[303,2,2,23,25],[309,1,1,25,26],[312,1,1,26,27]]],[11,4,4,27,31,[[323,1,1,27,28],[330,1,1,28,29],[335,1,1,29,30],[337,1,1,30,31]]],[13,6,6,31,37,[[380,2,2,31,33],[386,1,1,33,34],[389,1,1,34,35],[397,1,1,35,36],[400,1,1,36,37]]],[17,5,5,37,42,[[459,1,1,37,38],[464,1,1,38,39],[466,1,1,39,40],[473,2,2,40,42]]],[18,21,19,42,61,[[480,1,1,42,43],[487,1,1,43,44],[506,2,1,44,45],[511,2,2,45,47],[514,2,2,47,49],[523,1,1,49,50],[525,1,1,50,51],[528,2,1,51,52],[546,1,1,52,53],[551,1,1,53,54],[553,1,1,54,55],[581,1,1,55,56],[582,2,2,56,58],[584,1,1,58,59],[601,1,1,59,60],[624,1,1,60,61]]],[19,3,3,61,64,[[633,1,1,61,62],[652,1,1,62,63],[656,1,1,63,64]]],[20,1,1,64,65,[[670,1,1,64,65]]],[22,14,14,65,79,[[686,1,1,65,66],[692,3,3,66,69],[699,1,1,69,70],[702,1,1,70,71],[705,1,1,71,72],[706,1,1,72,73],[708,1,1,73,74],[716,1,1,74,75],[720,1,1,75,76],[723,1,1,76,77],[739,1,1,77,78],[744,1,1,78,79]]],[23,28,27,79,106,[[746,2,2,79,81],[749,1,1,81,82],[752,1,1,82,83],[758,1,1,83,84],[761,1,1,84,85],[763,3,2,85,87],[766,1,1,87,88],[767,1,1,88,89],[772,6,6,89,95],[774,1,1,95,96],[787,1,1,96,97],[792,4,4,97,101],[793,1,1,101,102],[794,1,1,102,103],[795,2,2,103,105],[796,1,1,105,106]]],[24,3,3,106,109,[[797,1,1,106,107],[798,1,1,107,108],[799,1,1,108,109]]],[25,21,20,109,129,[[805,1,1,109,110],[806,1,1,110,111],[807,3,3,111,114],[815,1,1,114,115],[827,1,1,115,116],[828,2,2,116,118],[830,1,1,118,119],[831,6,5,119,124],[832,1,1,124,125],[833,1,1,125,126],[835,3,3,126,129]]],[26,8,8,129,137,[[857,4,4,129,133],[860,4,4,133,137]]],[27,2,2,137,139,[[862,1,1,137,138],[863,1,1,138,139]]],[29,1,1,139,140,[[879,1,1,139,140]]],[31,1,1,140,141,[[889,1,1,140,141]]],[33,1,1,141,142,[[900,1,1,141,142]]],[37,1,1,142,143,[[921,1,1,142,143]]]],[466,1767,1862,2123,2127,2168,2457,2497,2509,2877,3030,3180,3391,3537,3543,3550,3977,5116,5174,5188,5243,6714,7315,9210,9212,9398,9528,9847,10028,10179,10235,11478,11488,11624,11673,11855,11937,13456,13549,13610,13803,13808,13964,14056,14313,14406,14408,14465,14467,14623,14641,14708,14955,15061,15084,15582,15622,15639,15715,16109,16354,16555,17128,17225,17529,17822,17933,17953,17957,18044,18105,18162,18177,18231,18403,18483,18563,18844,18931,18978,18985,19063,19174,19310,19375,19417,19418,19474,19493,19620,19622,19628,19629,19630,19631,19675,20010,20084,20097,20105,20118,20162,20189,20220,20242,20293,20325,20341,20358,20545,20562,20567,20569,20572,20744,21102,21147,21155,21190,21212,21222,21225,21226,21228,21242,21276,21317,21329,21340,21968,21969,21983,21986,22040,22056,22058,22062,22099,22123,22369,22535,22697,23044]]],["+",[25,23,[[1,2,1,0,1,[[72,2,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[4,1,1,2,3,[[164,1,1,2,3]]],[10,1,1,3,4,[[303,1,1,3,4]]],[11,2,2,4,6,[[330,1,1,4,5],[335,1,1,5,6]]],[13,2,2,6,8,[[380,1,1,6,7],[397,1,1,7,8]]],[18,1,1,8,9,[[506,1,1,8,9]]],[22,1,1,9,10,[[739,1,1,9,10]]],[23,8,7,10,17,[[763,2,1,10,11],[772,4,4,11,15],[792,1,1,15,16],[793,1,1,16,17]]],[25,4,4,17,21,[[831,3,3,17,20],[835,1,1,20,21]]],[26,1,1,21,22,[[857,1,1,21,22]]],[27,1,1,22,23,[[862,1,1,22,23]]]],[2168,3543,5243,9212,10028,10179,11478,11855,14313,18844,19418,19620,19622,19629,19630,20118,20162,21225,21226,21228,21340,21968,22099]]],["Break",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14056]]],["birth",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18931]]],["brake",[11,11,[[1,2,2,0,2,[[58,1,1,0,1],[81,1,1,1,2]]],[4,1,1,2,3,[[161,1,1,2,3]]],[6,1,1,3,4,[[217,1,1,3,4]]],[8,1,1,4,5,[[239,1,1,4,5]]],[17,1,1,5,6,[[464,1,1,5,6]]],[18,3,3,6,9,[[553,1,1,6,7],[582,2,2,7,9]]],[23,2,2,9,11,[[772,1,1,9,10],[796,1,1,10,11]]]],[1767,2457,5174,6714,7315,13549,15084,15622,15639,19628,20293]]],["brakest",[4,4,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,1,1,1,2,[[162,1,1,1,2]]],[18,1,1,2,3,[[551,1,1,2,3]]],[25,1,1,3,4,[[830,1,1,3,4]]]],[2497,5188,15061,21190]]],["break",[19,19,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,2,2,1,3,[[61,1,1,1,2],[83,1,1,2,3]]],[2,1,1,3,4,[[100,1,1,3,4]]],[3,1,1,4,5,[[125,1,1,4,5]]],[22,4,4,5,9,[[692,1,1,5,6],[708,1,1,6,7],[716,1,1,7,8],[720,1,1,8,9]]],[23,3,3,9,12,[[763,1,1,9,10],[774,1,1,10,11],[787,1,1,11,12]]],[25,4,4,12,16,[[805,1,1,12,13],[806,1,1,13,14],[815,1,1,14,15],[831,1,1,15,16]]],[27,1,1,16,17,[[863,1,1,16,17]]],[29,1,1,17,18,[[879,1,1,17,18]]],[33,1,1,18,19,[[900,1,1,18,19]]]],[466,1862,2509,3030,3977,17953,18231,18403,18483,19417,19675,20010,20545,20562,20744,21222,22123,22369,22697]]],["breakest",[1,1,[[18,1,1,0,1,[[525,1,1,0,1]]]],[14641]]],["breaketh",[3,3,[[18,2,2,0,2,[[506,1,1,0,1],[523,1,1,1,2]]],[19,1,1,2,3,[[652,1,1,2,3]]]],[14313,14623,17128]]],["broken",[58,57,[[2,5,5,0,5,[[95,1,1,0,1],[104,1,1,1,2],[111,1,1,2,3],[115,2,2,3,5]]],[10,1,1,5,6,[[312,1,1,5,6]]],[13,1,1,6,7,[[386,1,1,6,7]]],[17,3,3,7,10,[[459,1,1,7,8],[466,1,1,8,9],[473,1,1,9,10]]],[18,11,10,10,20,[[480,1,1,10,11],[511,2,2,11,13],[514,2,2,13,15],[528,2,1,15,16],[546,1,1,16,17],[584,1,1,17,18],[601,1,1,18,19],[624,1,1,19,20]]],[19,1,1,20,21,[[633,1,1,20,21]]],[20,1,1,21,22,[[670,1,1,21,22]]],[22,5,5,22,27,[[686,1,1,22,23],[692,2,2,23,25],[699,1,1,25,26],[706,1,1,26,27]]],[23,10,10,27,37,[[746,2,2,27,29],[749,1,1,29,30],[758,1,1,30,31],[767,1,1,31,32],[772,1,1,32,33],[792,2,2,33,35],[794,1,1,35,36],[795,1,1,36,37]]],[24,2,2,37,39,[[798,1,1,37,38],[799,1,1,38,39]]],[25,11,11,39,50,[[807,3,3,39,42],[827,1,1,42,43],[828,2,2,43,45],[831,1,1,45,46],[832,1,1,46,47],[833,1,1,47,48],[835,2,2,48,50]]],[26,5,5,50,55,[[857,3,3,50,53],[860,2,2,53,55]]],[31,1,1,55,56,[[889,1,1,55,56]]],[37,1,1,56,57,[[921,1,1,56,57]]]],[2877,3180,3391,3537,3550,9528,11624,13456,13610,13808,13964,14406,14408,14465,14467,14708,14955,15715,16109,16354,16555,17529,17822,17933,17957,18044,18177,18978,18985,19063,19310,19493,19631,20097,20105,20189,20242,20341,20358,20567,20569,20572,21102,21147,21155,21226,21242,21276,21317,21329,21969,21983,21986,22040,22058,22535,23044]]],["crush",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20325]]],["destroy",[2,2,[[23,1,1,0,1,[[761,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[19375,22062]]],["destroyed",[7,7,[[13,1,1,0,1,[[380,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]],[23,3,3,2,5,[[766,1,1,2,3],[792,1,1,3,4],[795,1,1,4,5]]],[25,1,1,5,6,[[831,1,1,5,6]]],[26,1,1,6,7,[[860,1,1,6,7]]]],[11488,17225,19474,20084,20220,21212,22056]]],["down",[2,2,[[4,1,1,0,1,[[159,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]]],[5116,18105]]],["hurt",[3,3,[[1,2,2,0,2,[[71,2,2,0,2]]],[23,1,1,2,3,[[752,1,1,2,3]]]],[2123,2127,19174]]],["off",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18162]]],["pieces",[6,6,[[10,1,1,0,1,[[309,1,1,0,1]]],[11,2,2,1,3,[[323,1,1,1,2],[337,1,1,2,3]]],[13,2,2,3,5,[[389,1,1,3,4],[400,1,1,4,5]]],[22,1,1,5,6,[[723,1,1,5,6]]]],[9398,9847,10235,11673,11937,18563]]],["quench",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15582]]],["torn",[1,1,[[10,1,1,0,1,[[303,1,1,0,1]]]],[9210]]],["up",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13803]]]]},{"k":"H7666","v":[["*",[21,20,[[0,14,14,0,14,[[40,2,2,0,2],[41,6,6,2,8],[42,4,4,8,12],[43,1,1,12,13],[46,1,1,13,14]]],[4,2,2,14,16,[[154,2,2,14,16]]],[19,1,1,16,17,[[638,1,1,16,17]]],[22,2,1,17,18,[[733,2,1,17,18]]],[29,2,2,18,20,[[886,2,2,18,20]]]],[1251,1252,1254,1255,1257,1258,1259,1262,1292,1294,1310,1312,1349,1434,4944,4966,16714,18741,22486,22487]]],["bought",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1434]]],["buy",[14,13,[[0,11,11,0,11,[[40,1,1,0,1],[41,5,5,1,6],[42,4,4,6,10],[43,1,1,10,11]]],[4,1,1,11,12,[[154,1,1,11,12]]],[22,2,1,12,13,[[733,2,1,12,13]]]],[1252,1254,1255,1257,1259,1262,1292,1294,1310,1312,1349,4944,18741]]],["sell",[3,3,[[4,1,1,0,1,[[154,1,1,0,1]]],[29,2,2,1,3,[[886,2,2,1,3]]]],[4966,22486,22487]]],["selleth",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16714]]],["sold",[2,2,[[0,2,2,0,2,[[40,1,1,0,1],[41,1,1,1,2]]]],[1251,1258]]]]},{"k":"H7667","v":[["*",[44,41,[[2,4,2,0,2,[[110,2,1,0,1],[113,2,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]],[17,1,1,3,4,[[476,1,1,3,4]]],[18,1,1,4,5,[[537,1,1,4,5]]],[19,4,4,5,9,[[642,1,1,5,6],[643,1,1,6,7],[644,1,1,7,8],[645,1,1,8,9]]],[22,9,9,9,18,[[679,1,1,9,10],[693,1,1,10,11],[708,3,3,11,14],[729,1,1,14,15],[737,1,1,15,16],[738,1,1,16,17],[743,1,1,17,18]]],[23,15,14,18,32,[[748,3,2,18,20],[750,2,2,20,22],[752,2,2,22,24],[754,1,1,24,25],[758,1,1,25,26],[774,2,2,26,28],[792,2,2,28,30],[794,1,1,30,31],[795,1,1,31,32]]],[24,5,5,32,37,[[798,2,2,32,34],[799,2,2,34,36],[800,1,1,36,37]]],[25,1,1,37,38,[[833,1,1,37,38]]],[29,1,1,38,39,[[884,1,1,38,39]]],[33,1,1,39,40,[[902,1,1,39,40]]],[35,1,1,40,41,[[906,1,1,40,41]]]],[3364,3466,6709,13913,14809,16811,16858,16892,16913,17682,17965,18230,18231,18243,18692,18807,18839,18911,19033,19047,19090,19103,19164,19174,19220,19310,19679,19682,20083,20085,20188,20266,20343,20345,20401,20402,20430,21257,22456,22731,22797]]],["+",[4,3,[[2,2,1,0,1,[[110,2,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[22,1,1,2,3,[[743,1,1,2,3]]]],[3364,13913,18911]]],["Breach",[1,1,[[2,1,1,0,1,[[113,1,1,0,1]]]],[3466]]],["Destruction",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19047]]],["affliction",[2,2,[[23,1,1,0,1,[[774,1,1,0,1]]],[29,1,1,1,2,[[884,1,1,1,2]]]],[19682,22456]]],["breach",[5,5,[[2,1,1,0,1,[[113,1,1,0,1]]],[19,1,1,1,2,[[642,1,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]],[23,1,1,3,4,[[758,1,1,3,4]]],[24,1,1,4,5,[[798,1,1,4,5]]]],[3466,16811,18243,19310,20345]]],["breaches",[1,1,[[18,1,1,0,1,[[537,1,1,0,1]]]],[14809]]],["breaking",[2,2,[[22,2,2,0,2,[[708,2,2,0,2]]]],[18230,18231]]],["bruise",[2,2,[[23,1,1,0,1,[[774,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[19679,22731]]],["crashing",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22797]]],["destruction",[20,20,[[19,3,3,0,3,[[643,1,1,0,1],[644,1,1,1,2],[645,1,1,2,3]]],[22,5,5,3,8,[[679,1,1,3,4],[693,1,1,4,5],[729,1,1,5,6],[737,1,1,6,7],[738,1,1,7,8]]],[23,7,7,8,15,[[748,2,2,8,10],[750,1,1,10,11],[792,2,2,11,13],[794,1,1,13,14],[795,1,1,14,15]]],[24,4,4,15,19,[[798,1,1,15,16],[799,2,2,16,18],[800,1,1,18,19]]],[25,1,1,19,20,[[833,1,1,19,20]]]],[16858,16892,16913,17682,17965,18692,18807,18839,19033,19047,19090,20083,20085,20188,20266,20343,20401,20402,20430,21257]]],["hurt",[4,4,[[23,4,4,0,4,[[750,1,1,0,1],[752,2,2,1,3],[754,1,1,3,4]]]],[19103,19164,19174,19220]]],["interpretation",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6709]]]]},{"k":"H7668","v":[["*",[9,9,[[0,7,7,0,7,[[41,4,4,0,4],[42,1,1,4,5],[43,1,1,5,6],[46,1,1,6,7]]],[15,1,1,7,8,[[422,1,1,7,8]]],[29,1,1,8,9,[[886,1,1,8,9]]]],[1253,1254,1271,1278,1292,1326,1434,12580,22486]]],["corn",[8,8,[[0,7,7,0,7,[[41,4,4,0,4],[42,1,1,4,5],[43,1,1,5,6],[46,1,1,6,7]]],[29,1,1,7,8,[[886,1,1,7,8]]]],[1253,1254,1271,1278,1292,1326,1434,22486]]],["victuals",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12580]]]]},{"k":"H7669","v":[["Sheber",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10354]]]]},{"k":"H7670","v":[["*",[2,2,[[23,1,1,0,1,[[761,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[19375,20950]]],["breaking",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20950]]],["destruction",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19375]]]]},{"k":"H7671","v":[["Shebarim",[1,1,[[5,1,1,0,1,[[193,1,1,0,1]]]],[5981]]]]},{"k":"H7672","v":[["astonied",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21883]]]]},{"k":"H7673","v":[["*",[71,67,[[0,3,3,0,3,[[1,2,2,0,2],[7,1,1,2,3]]],[1,7,6,3,9,[[54,1,1,3,4],[61,1,1,4,5],[65,1,1,5,6],[72,1,1,6,7],[80,1,1,7,8],[83,2,1,8,9]]],[2,7,6,9,15,[[91,1,1,9,10],[112,1,1,10,11],[114,1,1,11,12],[115,4,3,12,15]]],[4,1,1,15,16,[[184,1,1,15,16]]],[5,2,2,16,18,[[191,1,1,16,17],[208,1,1,17,18]]],[7,1,1,18,19,[[235,1,1,18,19]]],[11,2,2,19,21,[[335,2,2,19,21]]],[13,2,2,21,23,[[382,1,1,21,22],[402,1,1,22,23]]],[15,2,2,23,25,[[416,1,1,23,24],[418,1,1,24,25]]],[17,1,1,25,26,[[467,1,1,25,26]]],[18,4,4,26,30,[[485,1,1,26,27],[523,1,1,27,28],[566,1,1,28,29],[596,1,1,29,30]]],[19,2,2,30,32,[[645,1,1,30,31],[649,1,1,31,32]]],[22,10,8,32,40,[[691,1,1,32,33],[692,2,1,33,34],[694,1,1,34,35],[695,1,1,35,36],[699,1,1,36,37],[702,2,1,37,38],[708,1,1,38,39],[711,1,1,39,40]]],[23,6,6,40,46,[[751,1,1,40,41],[760,1,1,41,42],[775,1,1,42,43],[780,1,1,43,44],[792,2,2,44,46]]],[24,2,2,46,48,[[801,2,2,46,48]]],[25,13,13,48,61,[[807,1,1,48,49],[808,1,1,49,50],[813,1,1,50,51],[817,1,1,51,52],[824,2,2,52,54],[827,1,1,54,55],[831,3,3,55,58],[834,1,1,58,59],[835,2,2,59,61]]],[26,2,2,61,63,[[858,1,1,61,62],[860,1,1,62,63]]],[27,3,3,63,66,[[862,1,1,63,64],[863,1,1,64,65],[868,1,1,65,66]]],[29,1,1,66,67,[[886,1,1,66,67]]]],[32,33,205,1637,1831,1977,2156,2437,2517,2775,3434,3471,3530,3558,3559,5784,5946,6451,7204,10170,10176,11514,12014,12370,12404,13629,14014,14623,15370,16017,16919,17025,17917,17932,17979,17986,18037,18103,18228,18287,19153,19345,19727,19871,20113,20115,20456,20457,20569,20601,20703,20803,21034,21055,21113,21214,21217,21222,21308,21323,21338,22015,22054,22098,22116,22182,22485]]],["+",[4,4,[[1,1,1,0,1,[[54,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[11,2,2,2,4,[[335,2,2,2,4]]]],[1637,3559,10170,10176]]],["away",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[1831,16017]]],["cease",[37,37,[[0,1,1,0,1,[[7,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[5,1,1,2,3,[[208,1,1,2,3]]],[13,1,1,3,4,[[382,1,1,3,4]]],[15,2,2,4,6,[[416,1,1,4,5],[418,1,1,5,6]]],[18,2,2,6,8,[[523,1,1,6,7],[566,1,1,7,8]]],[19,2,2,8,10,[[645,1,1,8,9],[649,1,1,9,10]]],[22,5,5,10,15,[[691,1,1,10,11],[694,1,1,11,12],[695,1,1,12,13],[699,1,1,13,14],[708,1,1,14,15]]],[23,5,5,15,20,[[751,1,1,15,16],[760,1,1,16,17],[775,1,1,17,18],[780,1,1,18,19],[792,1,1,19,20]]],[25,13,13,20,33,[[807,1,1,20,21],[808,1,1,21,22],[813,1,1,22,23],[817,1,1,23,24],[824,2,2,24,26],[827,1,1,26,27],[831,3,3,27,30],[834,1,1,30,31],[835,2,2,31,33]]],[26,2,2,33,35,[[858,1,1,33,34],[860,1,1,34,35]]],[27,2,2,35,37,[[862,1,1,35,36],[863,1,1,36,37]]]],[205,5784,6451,11514,12370,12404,14623,15370,16919,17025,17917,17979,17986,18037,18228,19153,19345,19727,19871,20115,20569,20601,20703,20803,21034,21055,21113,21214,21217,21222,21308,21323,21338,22015,22054,22098,22116]]],["ceased",[6,5,[[5,1,1,0,1,[[191,1,1,0,1]]],[17,1,1,1,2,[[467,1,1,1,2]]],[22,2,1,2,3,[[692,2,1,2,3]]],[24,2,2,3,5,[[801,2,2,3,5]]]],[5946,13629,17932,20456,20457]]],["ceaseth",[4,3,[[22,3,2,0,2,[[702,2,1,0,1],[711,1,1,1,2]]],[27,1,1,2,3,[[868,1,1,2,3]]]],[18103,18287,22182]]],["celebrate",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3434]]],["fail",[2,2,[[23,1,1,0,1,[[792,1,1,0,1]]],[29,1,1,1,2,[[886,1,1,1,2]]]],[20113,22485]]],["keep",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3471]]],["lacking",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2775]]],["left",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7204]]],["rest",[5,4,[[1,3,2,0,2,[[72,1,1,0,1],[83,2,1,1,2]]],[2,2,2,2,4,[[115,2,2,2,4]]]],[2156,2517,3558,3559]]],["rested",[4,4,[[0,2,2,0,2,[[1,2,2,0,2]]],[1,2,2,2,4,[[65,1,1,2,3],[80,1,1,3,4]]]],[32,33,1977,2437]]],["rid",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3530]]],["sabbath",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[12014]]],["still",[1,1,[[18,1,1,0,1,[[485,1,1,0,1]]]],[14014]]]]},{"k":"H7674","v":[["*",[3,3,[[1,1,1,0,1,[[70,1,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]]],[2096,16957,18224]]],["cease",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16957]]],["still",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18224]]],["time",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2096]]]]},{"k":"H7675","v":[["*",[7,7,[[3,1,1,0,1,[[137,1,1,0,1]]],[9,2,2,1,3,[[289,2,2,1,3]]],[10,1,1,3,4,[[300,1,1,3,4]]],[13,1,1,4,5,[[375,1,1,4,5]]],[29,1,1,5,6,[[884,1,1,5,6]]],[30,1,1,6,7,[[888,1,1,6,7]]]],[4355,8660,8661,9098,11382,22453,22513]]],["dwelling",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4355]]],["habitation",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22513]]],["place",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8660]]],["seat",[3,3,[[9,1,1,0,1,[[289,1,1,0,1]]],[10,1,1,1,2,[[300,1,1,1,2]]],[29,1,1,2,3,[[884,1,1,2,3]]]],[8661,9098,22453]]],["sitting",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11382]]]]},{"k":"H7676","v":[["*",[110,88,[[1,15,13,0,13,[[65,4,4,0,4],[69,3,3,4,7],[80,6,4,7,11],[84,2,2,11,13]]],[2,25,18,13,31,[[105,1,1,13,14],[108,2,2,14,16],[112,9,6,16,22],[113,2,1,22,23],[114,6,4,23,27],[115,5,4,27,31]]],[3,4,3,31,34,[[131,1,1,31,32],[144,3,2,32,34]]],[4,3,3,34,37,[[157,3,3,34,37]]],[11,6,5,37,42,[[316,1,1,37,38],[323,4,3,38,41],[328,1,1,41,42]]],[12,3,2,42,44,[[346,2,1,42,43],[360,1,1,43,44]]],[13,7,6,44,50,[[368,1,1,44,45],[374,1,1,45,46],[389,3,2,46,48],[397,1,1,48,49],[402,1,1,49,50]]],[15,14,10,50,60,[[421,1,1,50,51],[422,3,2,51,53],[425,10,7,53,60]]],[22,8,6,60,66,[[679,1,1,60,61],[734,3,3,61,64],[736,2,1,64,65],[744,2,1,65,66]]],[23,7,4,66,70,[[761,7,4,66,70]]],[24,1,1,70,71,[[798,1,1,70,71]]],[25,15,15,71,86,[[821,6,6,71,77],[823,2,2,77,79],[824,1,1,79,80],[845,1,1,80,81],[846,1,1,81,82],[847,4,4,82,86]]],[27,1,1,86,87,[[863,1,1,86,87]]],[29,1,1,87,88,[[886,1,1,87,88]]]],[1970,1972,1973,1976,2059,2061,2062,2433,2434,2435,2436,2533,2534,3232,3284,3311,3405,3413,3417,3418,3434,3440,3454,3471,3473,3475,3477,3526,3558,3559,3567,4185,4586,4587,5065,5067,5068,9626,9834,9836,9838,9981,10647,11014,11215,11359,11660,11664,11857,12014,12525,12580,12582,12686,12687,12688,12689,12690,12692,12693,17667,18755,18757,18759,18799,18945,19378,19379,19381,19384,20338,20907,20908,20911,20915,20916,20919,20984,21002,21045,21623,21647,21656,21658,21659,21667,22116,22486]]],["+",[9,6,[[2,2,1,0,1,[[113,2,1,0,1]]],[3,2,1,1,2,[[144,2,1,1,2]]],[12,2,1,2,3,[[346,2,1,2,3]]],[22,1,1,3,4,[[736,1,1,3,4]]],[25,2,2,4,6,[[823,1,1,4,5],[847,1,1,5,6]]]],[3454,4587,10647,18799,21002,21656]]],["another",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18945]]],["sabbath",[67,53,[[1,14,12,0,12,[[65,4,4,0,4],[69,3,3,4,7],[80,5,3,7,10],[84,2,2,10,12]]],[2,12,9,12,21,[[105,1,1,12,13],[112,7,5,13,18],[114,4,3,18,21]]],[3,2,2,21,23,[[131,1,1,21,22],[144,1,1,22,23]]],[4,3,3,23,26,[[157,3,3,23,26]]],[11,6,5,26,31,[[316,1,1,26,27],[323,4,3,27,30],[328,1,1,30,31]]],[13,3,2,31,33,[[389,3,2,31,33]]],[15,13,9,33,42,[[421,1,1,33,34],[422,2,1,34,35],[425,10,7,35,42]]],[22,4,4,42,46,[[734,2,2,42,44],[736,1,1,44,45],[744,1,1,45,46]]],[23,7,4,46,50,[[761,7,4,46,50]]],[25,2,2,50,52,[[847,2,2,50,52]]],[29,1,1,52,53,[[886,1,1,52,53]]]],[1970,1972,1973,1976,2059,2061,2062,2434,2435,2436,2533,2534,3232,3405,3413,3417,3418,3434,3471,3473,3475,4185,4586,5065,5067,5068,9626,9834,9836,9838,9981,11660,11664,12525,12580,12686,12687,12688,12689,12690,12692,12693,18755,18759,18799,18945,19378,19379,19381,19384,21659,21667,22486]]],["sabbaths",[33,31,[[1,1,1,0,1,[[80,1,1,0,1]]],[2,11,9,1,10,[[108,2,2,1,3],[112,2,2,3,5],[114,2,1,5,6],[115,5,4,6,10]]],[12,1,1,10,11,[[360,1,1,10,11]]],[13,4,4,11,15,[[368,1,1,11,12],[374,1,1,12,13],[397,1,1,13,14],[402,1,1,14,15]]],[15,1,1,15,16,[[422,1,1,15,16]]],[22,2,2,16,18,[[679,1,1,16,17],[734,1,1,17,18]]],[24,1,1,18,19,[[798,1,1,18,19]]],[25,11,11,19,30,[[821,6,6,19,25],[823,1,1,25,26],[824,1,1,26,27],[845,1,1,27,28],[846,1,1,28,29],[847,1,1,29,30]]],[27,1,1,30,31,[[863,1,1,30,31]]]],[2433,3284,3311,3417,3440,3477,3526,3558,3559,3567,11014,11215,11359,11857,12014,12582,17667,18757,20338,20907,20908,20911,20915,20916,20919,20984,21045,21623,21647,21658,22116]]]]},{"k":"H7677","v":[["*",[11,10,[[1,3,3,0,3,[[65,1,1,0,1],[80,1,1,1,2],[84,1,1,2,3]]],[2,8,7,3,10,[[105,1,1,3,4],[112,5,4,4,8],[114,2,2,8,10]]]],[1970,2435,2533,3232,3405,3426,3434,3441,3473,3474]]],["rest",[8,8,[[1,3,3,0,3,[[65,1,1,0,1],[80,1,1,1,2],[84,1,1,2,3]]],[2,5,5,3,8,[[105,1,1,3,4],[112,2,2,4,6],[114,2,2,6,8]]]],[1970,2435,2533,3232,3405,3434,3473,3474]]],["sabbath",[3,2,[[2,3,2,0,2,[[112,3,2,0,2]]]],[3426,3441]]]]},{"k":"H7678","v":[["Shabbethai",[3,3,[[14,1,1,0,1,[[412,1,1,0,1]]],[15,2,2,1,3,[[420,1,1,1,2],[423,1,1,2,3]]]],[12267,12500,12604]]]]},{"k":"H7679","v":[["*",[2,2,[[17,2,2,0,2,[[447,1,1,0,1],[471,1,1,1,2]]]],[13151,13760]]],["increaseth",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13151]]],["magnify",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13760]]]]},{"k":"H7680","v":[["*",[3,3,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,2,2,1,3,[[853,1,1,1,2],[855,1,1,2,3]]]],[12132,21838,21930]]],["grow",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12132]]],["multiplied",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[855,1,1,1,2]]]],[21838,21930]]]]},{"k":"H7681","v":[["Shage",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10707]]]]},{"k":"H7682","v":[["*",[20,20,[[4,1,1,0,1,[[154,1,1,0,1]]],[17,2,2,1,3,[[440,1,1,1,2],[471,1,1,2,3]]],[18,7,7,3,10,[[497,1,1,3,4],[536,1,1,4,5],[546,1,1,5,6],[568,1,1,6,7],[584,1,1,7,8],[616,1,1,8,9],[625,1,1,9,10]]],[19,3,3,10,13,[[645,2,2,10,12],[656,1,1,12,13]]],[22,7,7,13,20,[[680,2,2,13,15],[687,1,1,15,16],[690,1,1,16,17],[704,1,1,17,18],[708,1,1,18,19],[711,1,1,19,20]]]],[4974,12962,13758,14183,14791,14964,15409,15740,16245,16384,16911,16912,17249,17696,17702,17840,17904,18135,18230,18284]]],["+",[2,2,[[18,1,1,0,1,[[584,1,1,0,1]]],[22,1,1,1,2,[[687,1,1,1,2]]]],[15740,17840]]],["defend",[2,2,[[18,2,2,0,2,[[497,1,1,0,1],[536,1,1,1,2]]]],[14183,14791]]],["exalted",[5,5,[[17,1,1,0,1,[[440,1,1,0,1]]],[22,4,4,1,5,[[680,2,2,1,3],[690,1,1,3,4],[711,1,1,4,5]]]],[12962,17696,17702,17904,18284]]],["exalteth",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13758]]],["excellent",[1,1,[[18,1,1,0,1,[[625,1,1,0,1]]]],[16384]]],["high",[5,5,[[18,3,3,0,3,[[546,1,1,0,1],[568,1,1,1,2],[616,1,1,2,3]]],[19,1,1,3,4,[[645,1,1,3,4]]],[22,1,1,4,5,[[708,1,1,4,5]]]],[14964,15409,16245,16912,18230]]],["lofty",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18135]]],["safe",[2,2,[[19,2,2,0,2,[[645,1,1,0,1],[656,1,1,1,2]]]],[16911,17249]]],["strong",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4974]]]]},{"k":"H7683","v":[["*",[4,4,[[2,1,1,0,1,[[94,1,1,0,1]]],[3,1,1,1,2,[[131,1,1,1,2]]],[17,1,1,2,3,[[447,1,1,2,3]]],[18,1,1,3,4,[[596,1,1,3,4]]]],[2848,4181,13144,15965]]],["astray",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15965]]],["deceived",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13144]]],["erred",[1,1,[[2,1,1,0,1,[[94,1,1,0,1]]]],[2848]]],["ignorantly",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4181]]]]},{"k":"H7684","v":[["*",[19,18,[[2,6,6,0,6,[[93,3,3,0,3],[94,2,2,3,5],[111,1,1,5,6]]],[3,9,8,6,14,[[131,7,6,6,12],[151,2,2,12,14]]],[5,2,2,14,16,[[206,2,2,14,16]]],[20,2,2,16,18,[[663,1,1,16,17],[668,1,1,17,18]]]],[2797,2817,2822,2845,2848,3383,4177,4178,4179,4180,4181,4182,4856,4860,6375,6381,17403,17498]]],["error",[2,2,[[20,2,2,0,2,[[663,1,1,0,1],[668,1,1,1,2]]]],[17403,17498]]],["ignorance",[12,11,[[2,5,5,0,5,[[93,3,3,0,3],[94,2,2,3,5]]],[3,7,6,5,11,[[131,7,6,5,11]]]],[2797,2817,2822,2845,2848,4177,4178,4179,4180,4181,4182]]],["unawares",[4,4,[[3,2,2,0,2,[[151,2,2,0,2]]],[5,2,2,2,4,[[206,2,2,2,4]]]],[4856,4860,6375,6381]]],["unwittingly",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3383]]]]},{"k":"H7685","v":[["*",[4,4,[[17,2,2,0,2,[[443,2,2,0,2]]],[18,2,2,2,4,[[550,1,1,2,3],[569,1,1,3,4]]]],[13036,13040,15032,15423]]],["grow",[2,2,[[17,1,1,0,1,[[443,1,1,0,1]]],[18,1,1,1,2,[[569,1,1,1,2]]]],[13040,15423]]],["increase",[2,2,[[17,1,1,0,1,[[443,1,1,0,1]]],[18,1,1,1,2,[[550,1,1,1,2]]]],[13036,15032]]]]},{"k":"H7686","v":[["*",[21,19,[[2,1,1,0,1,[[93,1,1,0,1]]],[3,1,1,1,2,[[131,1,1,1,2]]],[4,1,1,2,3,[[179,1,1,2,3]]],[8,1,1,3,4,[[261,1,1,3,4]]],[17,3,3,4,7,[[441,1,1,4,5],[447,1,1,5,6],[454,1,1,6,7]]],[18,3,3,7,10,[[596,3,3,7,10]]],[19,6,6,10,16,[[632,3,3,10,13],[646,1,1,13,14],[647,1,1,14,15],[655,1,1,15,16]]],[22,3,1,16,17,[[706,3,1,16,17]]],[25,2,2,17,19,[[835,1,1,17,18],[846,1,1,18,19]]]],[2808,4175,5603,7926,13002,13144,13301,15908,15919,16016,16536,16537,16540,16952,16955,17206,18171,21319,21650]]],["astray",[2,2,[[19,2,2,0,2,[[632,1,1,0,1],[655,1,1,1,2]]]],[16540,17206]]],["deceived",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16955]]],["deceiver",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13144]]],["err",[4,4,[[18,2,2,0,2,[[596,2,2,0,2]]],[19,1,1,2,3,[[646,1,1,2,3]]],[22,1,1,3,4,[[706,1,1,3,4]]]],[15919,16016,16952,18171]]],["erred",[6,5,[[3,1,1,0,1,[[131,1,1,0,1]]],[8,1,1,1,2,[[261,1,1,1,2]]],[17,2,2,2,4,[[441,1,1,2,3],[454,1,1,3,4]]],[22,2,1,4,5,[[706,2,1,4,5]]]],[4175,7926,13002,13301,18171]]],["erreth",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21650]]],["ignorance",[1,1,[[2,1,1,0,1,[[93,1,1,0,1]]]],[2808]]],["ravished",[2,2,[[19,2,2,0,2,[[632,2,2,0,2]]]],[16536,16537]]],["wander",[2,2,[[4,1,1,0,1,[[179,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[5603,15908]]],["wandered",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21319]]]]},{"k":"H7687","v":[["Segub",[3,3,[[10,1,1,0,1,[[306,1,1,0,1]]],[12,2,2,1,3,[[339,2,2,1,3]]]],[9317,10327,10328]]]]},{"k":"H7688","v":[["*",[3,3,[[18,1,1,0,1,[[510,1,1,0,1]]],[21,1,1,1,2,[[672,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]]],[14380,17563,17944]]],["forth",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17563]]],["look",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17944]]],["looketh",[1,1,[[18,1,1,0,1,[[510,1,1,0,1]]]],[14380]]]]},{"k":"H7689","v":[["*",[2,2,[[17,2,2,0,2,[[471,1,1,0,1],[472,1,1,1,2]]]],[13762,13792]]],["excellent",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13792]]],["great",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13762]]]]},{"k":"H7690","v":[["*",[13,13,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,12,12,1,13,[[851,4,4,1,5],[853,3,3,5,8],[854,1,1,8,9],[855,2,2,9,11],[856,2,2,11,13]]]],[12145,21764,21770,21789,21806,21847,21849,21858,21883,21919,21928,21938,21961]]],["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21928]]],["great",[3,3,[[26,3,3,0,3,[[851,2,2,0,2],[853,1,1,2,3]]]],[21764,21789,21847]]],["greatly",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21883]]],["many",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[851,1,1,1,2]]]],[12145,21806]]],["much",[4,4,[[26,4,4,0,4,[[853,2,2,0,2],[856,2,2,2,4]]]],[21849,21858,21938,21961]]],["sore",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21919]]],["very",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21770]]]]},{"k":"H7691","v":[["errors",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14180]]]]},{"k":"H7692","v":[["Shigionoth",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22769]]]]},{"k":"H7693","v":[["ravished",[2,2,[[22,1,1,0,1,[[691,1,1,0,1]]],[37,1,1,1,2,[[924,1,1,1,2]]]],[17922,23070]]]]},{"k":"H7694","v":[["queen",[2,2,[[15,1,1,0,1,[[414,1,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]]],[12313,14606]]]]},{"k":"H7695","v":[["wives",[3,3,[[26,3,3,0,3,[[854,3,3,0,3]]]],[21876,21877,21897]]]]},{"k":"H7696","v":[["*",[7,6,[[4,1,1,0,1,[[180,1,1,0,1]]],[8,3,2,1,3,[[256,3,2,1,3]]],[11,1,1,3,4,[[321,1,1,3,4]]],[23,1,1,4,5,[[773,1,1,4,5]]],[27,1,1,5,6,[[870,1,1,5,6]]]],[5645,7786,7787,9767,19661,22215]]],["mad",[5,5,[[4,1,1,0,1,[[180,1,1,0,1]]],[8,1,1,1,2,[[256,1,1,1,2]]],[11,1,1,2,3,[[321,1,1,2,3]]],[23,1,1,3,4,[[773,1,1,3,4]]],[27,1,1,4,5,[[870,1,1,4,5]]]],[5645,7786,9767,19661,22215]]],["man",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7787]]],["men",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7787]]]]},{"k":"H7697","v":[["*",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[11,1,1,1,2,[[321,1,1,1,2]]],[37,1,1,2,3,[[922,1,1,2,3]]]],[5639,9776,23049]]],["furiously",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9776]]],["madness",[2,2,[[4,1,1,0,1,[[180,1,1,0,1]]],[37,1,1,1,2,[[922,1,1,1,2]]]],[5639,23049]]]]},{"k":"H7698","v":[["*",[5,5,[[1,1,1,0,1,[[62,1,1,0,1]]],[4,4,4,1,5,[[159,1,1,1,2],[180,3,3,2,5]]]],[1879,5124,5615,5629,5662]]],["cometh",[1,1,[[1,1,1,0,1,[[62,1,1,0,1]]]],[1879]]],["increase",[4,4,[[4,4,4,0,4,[[159,1,1,0,1],[180,3,3,1,4]]]],[5124,5615,5629,5662]]]]},{"k":"H7699","v":[["*",[24,24,[[0,1,1,0,1,[[48,1,1,0,1]]],[17,2,2,1,3,[[438,1,1,1,2],[459,1,1,2,3]]],[18,1,1,3,4,[[499,1,1,3,4]]],[21,8,8,4,12,[[671,1,1,4,5],[674,1,1,5,6],[677,3,3,6,9],[678,3,3,9,12]]],[22,4,4,12,16,[[706,1,1,12,13],[710,1,1,13,14],[738,1,1,14,15],[744,1,1,15,16]]],[24,1,1,16,17,[[800,1,1,16,17]]],[25,4,4,17,21,[[817,1,1,17,18],[824,3,3,18,21]]],[27,2,2,21,23,[[863,1,1,21,22],[870,1,1,22,23]]],[28,1,1,23,24,[[877,1,1,23,24]]]],[1498,12916,13445,14213,17550,17587,17630,17634,17635,17641,17648,17650,18173,18271,18837,18933,20423,20769,21010,21028,21041,22107,22222,22327]]],["+",[3,3,[[17,1,1,0,1,[[459,1,1,0,1]]],[22,2,2,1,3,[[706,1,1,1,2],[744,1,1,2,3]]]],[13445,18173,18933]]],["breast",[2,2,[[22,1,1,0,1,[[738,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[18837,20423]]],["breasts",[17,17,[[0,1,1,0,1,[[48,1,1,0,1]]],[17,1,1,1,2,[[438,1,1,1,2]]],[18,1,1,2,3,[[499,1,1,2,3]]],[21,8,8,3,11,[[671,1,1,3,4],[674,1,1,4,5],[677,3,3,5,8],[678,3,3,8,11]]],[25,3,3,11,14,[[817,1,1,11,12],[824,2,2,12,14]]],[27,2,2,14,16,[[863,1,1,14,15],[870,1,1,15,16]]],[28,1,1,16,17,[[877,1,1,16,17]]]],[1498,12916,14213,17550,17587,17630,17634,17635,17641,17648,17650,20769,21010,21041,22107,22222,22327]]],["paps",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21028]]],["teats",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18271]]]]},{"k":"H7700","v":[["devils",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]]],[5775,15688]]]]},{"k":"H7701","v":[["*",[25,24,[[17,2,2,0,2,[[440,2,2,0,2]]],[18,1,1,2,3,[[489,1,1,2,3]]],[19,2,2,3,5,[[648,1,1,3,4],[651,1,1,4,5]]],[22,6,6,5,11,[[691,1,1,5,6],[694,1,1,6,7],[700,1,1,7,8],[729,1,1,8,9],[737,1,1,9,10],[738,1,1,10,11]]],[23,3,3,11,14,[[750,1,1,11,12],[764,1,1,12,13],[792,1,1,13,14]]],[25,1,1,14,15,[[846,1,1,14,15]]],[27,4,4,15,19,[[868,1,1,15,16],[870,1,1,16,17],[871,1,1,17,18],[873,1,1,18,19]]],[28,1,1,19,20,[[876,1,1,19,20]]],[29,3,2,20,22,[[881,1,1,20,21],[883,2,1,21,22]]],[34,2,2,22,24,[[903,1,1,22,23],[904,1,1,23,24]]]],[12972,12973,14071,16991,17081,17912,17973,18056,18692,18807,18839,19096,19430,20083,21639,22191,22214,22239,22253,22306,22405,22432,22734,22765]]],["+",[3,3,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,1,1,1,2,[[489,1,1,1,2]]],[27,1,1,2,3,[[870,1,1,2,3]]]],[12972,14071,22214]]],["desolation",[2,2,[[22,1,1,0,1,[[729,1,1,0,1]]],[27,1,1,1,2,[[873,1,1,1,2]]]],[18692,22253]]],["destruction",[5,5,[[17,1,1,0,1,[[440,1,1,0,1]]],[19,1,1,1,2,[[651,1,1,1,2]]],[22,1,1,2,3,[[691,1,1,2,3]]],[27,1,1,3,4,[[868,1,1,3,4]]],[28,1,1,4,5,[[876,1,1,4,5]]]],[12973,17081,17912,22191,22306]]],["robbery",[2,2,[[19,1,1,0,1,[[648,1,1,0,1]]],[29,1,1,1,2,[[881,1,1,1,2]]]],[16991,22405]]],["spoil",[4,4,[[23,2,2,0,2,[[750,1,1,0,1],[764,1,1,1,2]]],[25,1,1,2,3,[[846,1,1,2,3]]],[34,1,1,3,4,[[904,1,1,3,4]]]],[19096,19430,21639,22765]]],["spoiled",[3,2,[[27,1,1,0,1,[[871,1,1,0,1]]],[29,2,1,1,2,[[883,2,1,1,2]]]],[22239,22432]]],["spoiler",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17973]]],["spoiling",[3,3,[[22,1,1,0,1,[[700,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]],[34,1,1,2,3,[[903,1,1,2,3]]]],[18056,20083,22734]]],["wasting",[2,2,[[22,2,2,0,2,[[737,1,1,0,1],[738,1,1,1,2]]]],[18807,18839]]]]},{"k":"H7702","v":[["*",[3,3,[[17,1,1,0,1,[[474,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]],[27,1,1,2,3,[[871,1,1,2,3]]]],[13844,18188,22236]]],["clods",[2,2,[[22,1,1,0,1,[[706,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]]],[18188,22236]]],["harrow",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13844]]]]},{"k":"H7703","v":[["*",[57,47,[[6,1,1,0,1,[[215,1,1,0,1]]],[17,2,2,1,3,[[447,1,1,1,2],[450,1,1,2,3]]],[18,2,2,3,5,[[494,1,1,3,4],[614,1,1,4,5]]],[19,3,3,5,8,[[638,1,1,5,6],[646,1,1,6,7],[651,1,1,7,8]]],[22,11,6,8,14,[[693,2,1,8,9],[694,1,1,9,10],[699,2,1,10,11],[701,2,2,11,13],[711,4,1,13,14]]],[23,26,24,14,38,[[748,4,3,14,17],[749,1,1,17,18],[750,1,1,18,19],[753,1,1,19,20],[754,1,1,20,21],[756,1,1,21,22],[759,1,1,22,23],[769,1,1,23,24],[791,2,1,24,25],[792,6,6,25,31],[793,3,3,31,34],[795,4,4,34,38]]],[25,1,1,38,39,[[833,1,1,38,39]]],[27,2,2,39,41,[[871,2,2,39,41]]],[28,2,1,41,42,[[876,2,1,41,42]]],[30,1,1,42,43,[[888,1,1,42,43]]],[32,2,1,43,44,[[894,2,1,43,44]]],[33,1,1,44,45,[[902,1,1,44,45]]],[37,3,2,45,47,[[921,3,2,45,47]]]],[6650,13134,13224,14112,16230,16691,16951,17094,17961,17973,18037,18078,18091,18280,19040,19047,19057,19064,19115,19194,19221,19261,19323,19570,20077,20081,20088,20095,20098,20100,20112,20130,20137,20155,20260,20265,20267,20268,21260,22227,22239,22301,22515,22599,22719,23030,23031]]],["+",[8,6,[[23,5,4,0,4,[[769,1,1,0,1],[791,2,1,1,2],[793,1,1,2,3],[795,1,1,3,4]]],[25,1,1,4,5,[[833,1,1,4,5]]],[32,2,1,5,6,[[894,2,1,5,6]]]],[19570,20077,20155,20267,21260,22599]]],["dead",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6650]]],["destroy",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16691]]],["destroyed",[1,1,[[18,1,1,0,1,[[614,1,1,0,1]]]],[16230]]],["destroyer",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13224]]],["oppress",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14112]]],["robbers",[2,2,[[17,1,1,0,1,[[447,1,1,0,1]]],[30,1,1,1,2,[[888,1,1,1,2]]]],[13134,22515]]],["spoil",[4,4,[[19,1,1,0,1,[[651,1,1,0,1]]],[22,1,1,1,2,[[711,1,1,1,2]]],[23,1,1,2,3,[[749,1,1,2,3]]],[27,1,1,3,4,[[871,1,1,3,4]]]],[17094,18280,19064,22227]]],["spoiled",[17,14,[[22,2,1,0,1,[[711,2,1,0,1]]],[23,11,10,1,11,[[748,4,3,1,4],[753,1,1,4,5],[754,1,1,5,6],[792,3,3,6,9],[793,2,2,9,11]]],[27,1,1,11,12,[[871,1,1,11,12]]],[37,3,2,12,14,[[921,3,2,12,14]]]],[18280,19040,19047,19057,19194,19221,20081,20095,20100,20130,20137,22239,23030,23031]]],["spoiler",[8,8,[[22,2,2,0,2,[[694,1,1,0,1],[699,1,1,1,2]]],[23,6,6,2,8,[[750,1,1,2,3],[759,1,1,3,4],[792,3,3,4,7],[795,1,1,7,8]]]],[17973,18037,19115,19323,20088,20098,20112,20268]]],["spoilers",[3,3,[[23,3,3,0,3,[[756,1,1,0,1],[795,2,2,1,3]]]],[19261,20260,20265]]],["spoilest",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18280]]],["spoileth",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18037]]],["waste",[5,4,[[22,4,3,0,3,[[693,2,1,0,1],[701,2,2,1,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[17961,18078,18091,22719]]],["wasted",[2,1,[[28,2,1,0,1,[[876,2,1,0,1]]]],[22301]]],["wasteth",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16951]]]]},{"k":"H7704","v":[["*",[333,309,[[0,48,43,0,43,[[1,4,3,0,3],[2,3,3,3,6],[3,1,1,6,7],[13,1,1,7,8],[22,8,6,8,14],[23,2,2,14,16],[24,4,4,16,20],[26,3,3,20,23],[28,1,1,23,24],[29,2,2,24,26],[30,1,1,26,27],[31,1,1,27,28],[32,1,1,28,29],[33,3,3,29,32],[35,1,1,32,33],[36,2,2,33,35],[38,1,1,35,36],[40,1,1,36,37],[46,2,2,37,39],[48,4,3,39,42],[49,2,1,42,43]]],[1,22,16,43,59,[[50,1,1,43,44],[57,1,1,44,45],[58,8,5,45,50],[59,2,2,50,52],[65,1,1,52,53],[71,5,3,53,56],[72,4,3,56,59]]],[2,25,22,59,81,[[103,2,2,59,61],[106,1,1,61,62],[108,2,2,62,64],[112,1,1,64,65],[114,5,5,65,70],[115,2,2,70,72],[116,12,9,72,81]]],[3,8,8,81,89,[[132,1,1,81,82],[135,1,1,82,83],[136,1,1,83,84],[137,2,2,84,86],[138,2,2,86,88],[139,1,1,88,89]]],[4,14,13,89,102,[[157,1,1,89,90],[159,1,1,90,91],[163,1,1,91,92],[166,1,1,92,93],[172,1,1,93,94],[173,1,1,94,95],[174,2,2,95,97],[176,2,1,97,98],[180,3,3,98,101],[184,1,1,101,102]]],[5,4,4,102,106,[[194,1,1,102,103],[201,1,1,103,104],[207,1,1,104,105],[210,1,1,105,106]]],[6,12,12,106,118,[[211,1,1,106,107],[215,2,2,107,109],[219,5,5,109,114],[223,1,1,114,115],[229,1,1,115,116],[230,2,2,116,118]]],[7,16,13,118,131,[[232,5,4,118,122],[233,8,7,122,129],[235,3,2,129,131]]],[8,22,21,131,152,[[239,1,1,131,132],[241,3,3,132,135],[243,1,1,135,136],[246,1,1,136,137],[249,3,3,137,140],[252,1,1,140,141],[254,1,1,141,142],[255,5,4,142,146],[257,1,1,146,147],[260,1,1,147,148],[262,3,3,148,151],[265,1,1,151,152]]],[9,13,13,152,165,[[267,1,1,152,153],[268,1,1,153,154],[275,1,1,154,155],[276,1,1,155,156],[277,2,2,156,158],[280,1,1,158,159],[283,1,1,159,160],[284,1,1,160,161],[285,1,1,161,162],[286,1,1,162,163],[287,1,1,163,164],[289,1,1,164,165]]],[10,5,5,165,170,[[292,1,1,165,166],[301,1,1,166,167],[304,1,1,167,168],[306,1,1,168,169],[311,1,1,169,170]]],[11,12,10,170,180,[[316,3,1,170,171],[319,1,1,171,172],[320,3,3,172,175],[321,2,2,175,177],[326,1,1,177,178],[330,1,1,178,179],[331,1,1,179,180]]],[12,8,8,180,188,[[338,1,1,180,181],[343,1,1,181,182],[345,1,1,182,183],[348,1,1,183,184],[353,1,1,184,185],[356,1,1,185,186],[364,2,2,186,188]]],[13,4,4,188,192,[[391,1,1,188,189],[392,1,1,189,190],[397,2,2,190,192]]],[15,10,10,192,202,[[417,5,5,192,197],[423,2,2,197,199],[424,2,2,199,201],[425,1,1,201,202]]],[17,5,4,202,206,[[440,2,1,202,203],[459,1,1,203,204],[474,1,1,204,205],[475,1,1,205,206]]],[18,10,10,206,216,[[485,1,1,206,207],[527,1,1,207,208],[555,2,2,208,210],[557,1,1,210,211],[573,1,1,211,212],[580,1,1,212,213],[581,1,1,213,214],[584,1,1,214,215],[609,1,1,215,216]]],[19,5,5,216,221,[[650,1,1,216,217],[651,2,2,217,219],[654,1,1,219,220],[658,1,1,220,221]]],[20,1,1,221,222,[[663,1,1,221,222]]],[21,3,3,222,225,[[672,1,1,222,223],[673,1,1,223,224],[677,1,1,224,225]]],[22,10,9,225,234,[[683,2,1,225,226],[685,1,1,226,227],[710,1,1,227,228],[714,1,1,228,229],[715,1,1,229,230],[718,1,1,230,231],[721,1,1,231,232],[733,1,1,232,233],[734,1,1,233,234]]],[23,27,27,234,261,[[748,1,1,234,235],[750,2,2,235,237],[751,1,1,237,238],[752,1,1,238,239],[753,1,1,239,240],[756,2,2,240,242],[757,1,1,242,243],[758,2,2,243,245],[761,1,1,245,246],[762,1,1,246,247],[770,1,1,247,248],[771,1,1,248,249],[772,1,1,249,250],[776,7,7,250,257],[779,1,1,257,258],[784,2,2,258,260],[785,1,1,260,261]]],[24,1,1,261,262,[[800,1,1,261,262]]],[25,26,26,262,288,[[808,1,1,262,263],[817,2,2,263,265],[818,3,3,265,268],[821,1,1,268,269],[827,2,2,269,271],[830,1,1,271,272],[832,5,5,272,277],[833,1,1,277,278],[834,1,1,278,279],[835,3,3,279,282],[837,1,1,282,283],[839,1,1,283,284],[840,4,4,284,288]]],[27,7,7,288,295,[[863,2,2,288,290],[865,1,1,290,291],[871,1,1,291,292],[873,2,2,292,294],[874,1,1,294,295]]],[28,6,6,295,301,[[876,5,5,295,300],[877,1,1,300,301]]],[30,2,1,301,302,[[888,2,1,301,302]]],[32,5,5,302,307,[[893,1,1,302,303],[894,2,2,303,305],[895,1,1,305,306],[896,1,1,306,307]]],[37,1,1,307,308,[[920,1,1,307,308]]],[38,1,1,308,309,[[927,1,1,308,309]]]],[35,49,50,56,69,73,87,343,580,582,584,588,590,591,654,656,667,668,685,687,730,732,754,797,844,846,877,931,979,985,987,1008,1075,1090,1098,1154,1243,1440,1444,1502,1503,1505,1519,1546,1723,1745,1761,1763,1764,1767,1782,1792,1972,2118,2119,2144,2155,2160,2173,3118,3164,3240,3290,3300,3424,3472,3473,3481,3500,3503,3528,3546,3586,3587,3588,3589,3590,3591,3592,3594,3598,4208,4305,4328,4360,4362,4379,4398,4430,5074,5133,5223,5312,5446,5448,5495,5497,5544,5614,5627,5649,5771,6026,6220,6393,6508,6523,6627,6641,6781,6786,6796,6797,6798,6893,7040,7060,7085,7128,7129,7133,7149,7151,7152,7155,7157,7158,7166,7171,7193,7195,7299,7332,7345,7349,7383,7450,7522,7523,7533,7662,7709,7735,7741,7754,7765,7794,7876,7935,7937,7941,7989,8043,8067,8234,8248,8270,8282,8362,8457,8484,8540,8566,8590,8664,8796,9137,9229,9287,9475,9642,9719,9730,9732,9733,9781,9793,9905,10041,10087,10298,10510,10583,10686,10852,10916,11134,11135,11722,11755,11859,11873,12385,12386,12387,12393,12398,12613,12618,12653,12668,12681,12974,13442,13849,13884,14019,14679,15125,15156,15211,15477,15564,15582,15736,16157,17054,17106,17109,17195,17300,17406,17561,17576,17638,17747,17785,18271,18332,18379,18426,18525,18752,18762,19044,19101,19114,19139,19163,19197,19253,19258,19293,19298,19311,19360,19398,19590,19602,19632,19738,19739,19740,19746,19756,19774,19775,19832,19948,19954,19965,20429,20592,20767,20769,20830,20833,20849,20941,21106,21108,21188,21234,21235,21236,21243,21245,21252,21307,21318,21321,21340,21389,21445,21452,21453,21458,21465,22117,22123,22136,22229,22263,22264,22274,22301,22302,22303,22310,22311,22333,22529,22585,22597,22599,22620,22630,23017,23131]]],["+",[11,11,[[1,1,1,0,1,[[50,1,1,0,1]]],[2,3,3,1,4,[[116,3,3,1,4]]],[6,1,1,4,5,[[215,1,1,4,5]]],[7,4,4,5,9,[[232,2,2,5,7],[233,1,1,7,8],[235,1,1,8,9]]],[9,1,1,9,10,[[268,1,1,9,10]]],[15,1,1,10,11,[[424,1,1,10,11]]]],[1546,3586,3592,3598,6627,7133,7149,7155,7193,8067,12653]]],["country",[13,13,[[0,2,2,0,2,[[13,1,1,0,1],[31,1,1,1,2]]],[3,1,1,2,3,[[137,1,1,2,3]]],[6,1,1,3,4,[[230,1,1,3,4]]],[7,3,3,4,7,[[232,3,3,4,7]]],[8,4,4,7,11,[[241,1,1,7,8],[262,3,3,8,11]]],[12,1,1,11,12,[[345,1,1,11,12]]],[27,1,1,12,13,[[873,1,1,12,13]]]],[343,931,4360,7060,7128,7129,7133,7332,7935,7937,7941,10583,22264]]],["field",[242,224,[[0,46,41,0,41,[[1,4,3,0,3],[2,3,3,3,6],[3,1,1,6,7],[22,8,6,7,13],[23,2,2,13,15],[24,4,4,15,19],[26,3,3,19,22],[28,1,1,22,23],[29,2,2,23,25],[30,1,1,25,26],[32,1,1,26,27],[33,3,3,27,30],[35,1,1,30,31],[36,2,2,31,33],[38,1,1,33,34],[40,1,1,34,35],[46,2,2,35,37],[48,4,3,37,40],[49,2,1,40,41]]],[1,20,14,41,55,[[58,8,5,41,46],[59,2,2,46,48],[65,1,1,48,49],[71,5,3,49,52],[72,4,3,52,55]]],[2,19,17,55,72,[[103,1,1,55,56],[106,1,1,56,57],[108,2,2,57,59],[112,1,1,59,60],[114,4,4,60,64],[115,1,1,64,65],[116,9,7,65,72]]],[3,3,3,72,75,[[138,2,2,72,74],[139,1,1,74,75]]],[4,12,11,75,86,[[157,1,1,75,76],[159,1,1,76,77],[166,1,1,77,78],[172,1,1,78,79],[173,1,1,79,80],[174,2,2,80,82],[176,2,1,82,83],[180,3,3,83,86]]],[5,2,2,86,88,[[194,1,1,86,87],[201,1,1,87,88]]],[6,8,8,88,96,[[211,1,1,88,89],[215,1,1,89,90],[219,3,3,90,93],[223,1,1,93,94],[229,1,1,94,95],[230,1,1,95,96]]],[7,8,7,96,103,[[233,7,6,96,102],[235,1,1,102,103]]],[8,13,12,103,115,[[239,1,1,103,104],[241,2,2,104,106],[246,1,1,106,107],[249,1,1,107,108],[252,1,1,108,109],[254,1,1,109,110],[255,5,4,110,114],[265,1,1,114,115]]],[9,7,7,115,122,[[276,1,1,115,116],[277,1,1,116,117],[280,1,1,117,118],[283,1,1,118,119],[284,1,1,119,120],[286,1,1,120,121],[287,1,1,121,122]]],[10,3,3,122,125,[[301,1,1,122,123],[304,1,1,123,124],[311,1,1,124,125]]],[11,7,7,125,132,[[316,1,1,125,126],[319,1,1,126,127],[320,1,1,127,128],[321,2,2,128,130],[330,1,1,130,131],[331,1,1,131,132]]],[12,3,3,132,135,[[338,1,1,132,133],[356,1,1,133,134],[364,1,1,134,135]]],[13,2,2,135,137,[[392,1,1,135,136],[397,1,1,136,137]]],[15,1,1,137,138,[[425,1,1,137,138]]],[17,4,3,138,141,[[440,2,1,138,139],[459,1,1,139,140],[475,1,1,140,141]]],[18,8,8,141,149,[[485,1,1,141,142],[527,1,1,142,143],[555,2,2,143,145],[557,1,1,145,146],[573,1,1,146,147],[580,1,1,147,148],[581,1,1,148,149]]],[19,4,4,149,153,[[651,2,2,149,151],[654,1,1,151,152],[658,1,1,152,153]]],[20,1,1,153,154,[[663,1,1,153,154]]],[21,3,3,154,157,[[672,1,1,154,155],[673,1,1,155,156],[677,1,1,156,157]]],[22,9,8,157,165,[[683,2,1,157,158],[685,1,1,158,159],[714,1,1,159,160],[715,1,1,160,161],[718,1,1,161,162],[721,1,1,162,163],[733,1,1,163,164],[734,1,1,164,165]]],[23,19,19,165,184,[[748,1,1,165,166],[750,1,1,166,167],[751,1,1,167,168],[753,1,1,168,169],[756,2,2,169,171],[758,2,2,171,173],[761,1,1,173,174],[762,1,1,174,175],[770,1,1,175,176],[771,1,1,176,177],[772,1,1,177,178],[776,4,4,178,182],[779,1,1,182,183],[785,1,1,183,184]]],[24,1,1,184,185,[[800,1,1,184,185]]],[25,24,24,185,209,[[808,1,1,185,186],[817,2,2,186,188],[818,2,2,188,190],[821,1,1,190,191],[827,2,2,191,193],[832,5,5,193,198],[833,1,1,198,199],[834,1,1,199,200],[835,3,3,200,203],[837,1,1,203,204],[839,1,1,204,205],[840,4,4,205,209]]],[27,4,4,209,213,[[863,2,2,209,211],[865,1,1,211,212],[871,1,1,212,213]]],[28,6,6,213,219,[[876,5,5,213,218],[877,1,1,218,219]]],[32,3,3,219,222,[[893,1,1,219,220],[895,1,1,220,221],[896,1,1,221,222]]],[37,1,1,222,223,[[920,1,1,222,223]]],[38,1,1,223,224,[[927,1,1,223,224]]]],[35,49,50,56,69,73,87,580,582,584,588,590,591,654,656,667,668,685,687,730,732,754,797,844,846,877,979,985,987,1008,1075,1090,1098,1154,1243,1440,1444,1502,1503,1505,1519,1745,1761,1763,1764,1767,1782,1792,1972,2118,2119,2144,2155,2160,2173,3118,3240,3290,3300,3424,3472,3473,3481,3503,3528,3587,3588,3589,3590,3591,3592,3594,4379,4398,4430,5074,5133,5312,5446,5448,5495,5497,5544,5614,5627,5649,6026,6220,6523,6641,6786,6796,6797,6893,7040,7085,7151,7152,7157,7158,7166,7171,7195,7299,7345,7349,7450,7523,7662,7709,7735,7741,7754,7765,7989,8248,8282,8362,8457,8484,8566,8590,9137,9229,9475,9642,9719,9733,9781,9793,10041,10087,10298,10916,11135,11755,11859,12681,12974,13442,13884,14019,14679,15125,15156,15211,15477,15564,15582,17106,17109,17195,17300,17406,17561,17576,17638,17747,17785,18332,18379,18426,18525,18752,18762,19044,19114,19139,19197,19253,19258,19298,19311,19360,19398,19590,19602,19632,19738,19739,19740,19756,19832,19965,20429,20592,20767,20769,20830,20849,20941,21106,21108,21234,21235,21236,21243,21245,21252,21307,21318,21321,21340,21389,21445,21452,21453,21458,21465,22117,22123,22136,22229,22301,22302,22303,22310,22311,22333,22585,22620,22630,23017,23131]]],["fields",[44,43,[[1,1,1,0,1,[[57,1,1,0,1]]],[2,2,2,1,3,[[103,1,1,1,2],[114,1,1,2,3]]],[3,4,4,3,7,[[132,1,1,3,4],[135,1,1,4,5],[136,1,1,5,6],[137,1,1,6,7]]],[4,2,2,7,9,[[163,1,1,7,8],[184,1,1,8,9]]],[5,1,1,9,10,[[207,1,1,9,10]]],[6,2,2,10,12,[[219,2,2,10,12]]],[8,3,3,12,15,[[243,1,1,12,13],[257,1,1,13,14],[260,1,1,14,15]]],[9,2,2,15,17,[[267,1,1,15,16],[277,1,1,16,17]]],[10,2,2,17,19,[[292,1,1,17,18],[306,1,1,18,19]]],[12,3,3,19,22,[[343,1,1,19,20],[353,1,1,20,21],[364,1,1,21,22]]],[13,1,1,22,23,[[397,1,1,22,23]]],[15,3,3,23,26,[[423,2,2,23,25],[424,1,1,25,26]]],[18,2,2,26,28,[[584,1,1,26,27],[609,1,1,27,28]]],[19,1,1,28,29,[[650,1,1,28,29]]],[22,1,1,29,30,[[710,1,1,29,30]]],[23,8,8,30,38,[[750,1,1,30,31],[752,1,1,31,32],[757,1,1,32,33],[776,3,3,33,36],[784,2,2,36,38]]],[25,1,1,38,39,[[830,1,1,38,39]]],[27,1,1,39,40,[[873,1,1,39,40]]],[30,2,1,40,41,[[888,2,1,40,41]]],[32,2,2,41,43,[[894,2,2,41,43]]]],[1723,3164,3500,4208,4305,4328,4362,5223,5771,6393,6781,6798,7383,7794,7876,8043,8270,8796,9287,10510,10852,11134,11873,12613,12618,12668,15736,16157,17054,18271,19101,19163,19293,19746,19774,19775,19948,19954,21188,22263,22529,22597,22599]]],["ground",[4,4,[[5,1,1,0,1,[[210,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[12,1,1,3,4,[[348,1,1,3,4]]]],[6508,7533,8664,10686]]],["land",[7,7,[[7,1,1,0,1,[[235,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[9,2,2,2,4,[[275,1,1,2,3],[285,1,1,3,4]]],[11,2,2,4,6,[[320,2,2,4,6]]],[15,1,1,6,7,[[417,1,1,6,7]]]],[7193,7522,8234,8540,9730,9732,12398]]],["lands",[4,4,[[15,4,4,0,4,[[417,4,4,0,4]]]],[12385,12386,12387,12393]]],["soil",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20833]]],["wild",[7,6,[[2,1,1,0,1,[[115,1,1,0,1]]],[11,3,2,1,3,[[316,2,1,1,2],[326,1,1,2,3]]],[13,1,1,3,4,[[391,1,1,3,4]]],[17,1,1,4,5,[[474,1,1,4,5]]],[27,1,1,5,6,[[874,1,1,5,6]]]],[3546,9642,9905,11722,13849,22274]]]]},{"k":"H7705","v":[["+",[2,1,[[20,2,1,0,1,[[660,2,1,0,1]]]],[17341]]]]},{"k":"H7706","v":[["*",[48,48,[[0,6,6,0,6,[[16,1,1,0,1],[27,1,1,1,2],[34,1,1,2,3],[42,1,1,3,4],[47,1,1,4,5],[48,1,1,5,6]]],[1,1,1,6,7,[[55,1,1,6,7]]],[3,2,2,7,9,[[140,2,2,7,9]]],[7,2,2,9,11,[[232,2,2,9,11]]],[17,31,31,11,42,[[440,1,1,11,12],[441,2,2,12,14],[443,2,2,14,16],[446,1,1,16,17],[448,1,1,17,18],[450,1,1,18,19],[456,2,2,19,21],[457,5,5,21,26],[458,1,1,26,27],[459,1,1,27,28],[462,4,4,28,32],[464,1,1,32,33],[466,2,2,33,35],[467,1,1,35,36],[468,1,1,36,37],[469,2,2,37,39],[470,1,1,39,40],[472,1,1,40,41],[475,1,1,41,42]]],[18,2,2,42,44,[[545,1,1,42,43],[568,1,1,43,44]]],[22,1,1,44,45,[[691,1,1,44,45]]],[25,2,2,45,47,[[802,1,1,45,46],[811,1,1,46,47]]],[28,1,1,47,48,[[876,1,1,47,48]]]],[398,776,1022,1304,1454,1498,1658,4450,4462,7147,7148,12968,12982,12992,13032,13034,13115,13156,13228,13370,13375,13392,13406,13412,13414,13415,13435,13437,13483,13491,13492,13494,13537,13590,13623,13636,13654,13693,13695,13733,13792,13866,14914,15396,17912,20488,20638,22306]]],["+",[4,4,[[17,2,2,0,2,[[459,1,1,0,1],[462,1,1,1,2]]],[22,1,1,2,3,[[691,1,1,2,3]]],[28,1,1,3,4,[[876,1,1,3,4]]]],[13437,13494,17912,22306]]],["Almighty",[44,44,[[0,6,6,0,6,[[16,1,1,0,1],[27,1,1,1,2],[34,1,1,2,3],[42,1,1,3,4],[47,1,1,4,5],[48,1,1,5,6]]],[1,1,1,6,7,[[55,1,1,6,7]]],[3,2,2,7,9,[[140,2,2,7,9]]],[7,2,2,9,11,[[232,2,2,9,11]]],[17,29,29,11,40,[[440,1,1,11,12],[441,2,2,12,14],[443,2,2,14,16],[446,1,1,16,17],[448,1,1,17,18],[450,1,1,18,19],[456,2,2,19,21],[457,5,5,21,26],[458,1,1,26,27],[462,3,3,27,30],[464,1,1,30,31],[466,2,2,31,33],[467,1,1,33,34],[468,1,1,34,35],[469,2,2,35,37],[470,1,1,37,38],[472,1,1,38,39],[475,1,1,39,40]]],[18,2,2,40,42,[[545,1,1,40,41],[568,1,1,41,42]]],[25,2,2,42,44,[[802,1,1,42,43],[811,1,1,43,44]]]],[398,776,1022,1304,1454,1498,1658,4450,4462,7147,7148,12968,12982,12992,13032,13034,13115,13156,13228,13370,13375,13392,13406,13412,13414,13415,13435,13483,13491,13492,13537,13590,13623,13636,13654,13693,13695,13733,13792,13866,14914,15396,20488,20638]]]]},{"k":"H7707","v":[["Shedeur",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3609,3668,3880,3885,4006]]]]},{"k":"H7708","v":[["Siddim",[3,3,[[0,3,3,0,3,[[13,3,3,0,3]]]],[339,344,346]]]]},{"k":"H7709","v":[["*",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]],[22,1,1,2,3,[[694,1,1,2,3]]],[34,1,1,3,4,[[905,1,1,3,4]]]],[5790,10169,17977,22785]]],["+",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5790]]],["fields",[3,3,[[11,1,1,0,1,[[335,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]],[34,1,1,2,3,[[905,1,1,2,3]]]],[10169,17977,22785]]]]},{"k":"H7710","v":[["blasted",[3,3,[[0,3,3,0,3,[[40,3,3,0,3]]]],[1201,1218,1222]]]]},{"k":"H7711","v":[["*",[7,7,[[4,1,1,0,1,[[180,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[13,1,1,3,4,[[372,1,1,3,4]]],[22,1,1,4,5,[[715,1,1,4,5]]],[29,1,1,5,6,[[882,1,1,5,6]]],[36,1,1,6,7,[[910,1,1,6,7]]]],[5633,9022,10087,11310,18379,22419,22872]]],["blasted",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10087,18379]]],["blasting",[5,5,[[4,1,1,0,1,[[180,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[13,1,1,2,3,[[372,1,1,2,3]]],[29,1,1,3,4,[[882,1,1,3,4]]],[36,1,1,4,5,[[910,1,1,4,5]]]],[5633,9022,11310,22419,22872]]]]},{"k":"H7712","v":[["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21919]]]]},{"k":"H7713","v":[["*",[4,4,[[10,1,1,0,1,[[296,1,1,0,1]]],[11,2,2,1,3,[[323,2,2,1,3]]],[13,1,1,3,4,[[389,1,1,3,4]]]],[8905,9837,9844,11670]]],["+",[1,1,[[13,1,1,0,1,[[389,1,1,0,1]]]],[11670]]],["boards",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8905]]],["ranges",[2,2,[[11,2,2,0,2,[[323,2,2,0,2]]]],[9837,9844]]]]},{"k":"H7714","v":[["Shadrach",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21744]]]]},{"k":"H7715","v":[["Shadrach",[14,13,[[26,14,13,0,13,[[851,1,1,0,1],[852,13,12,1,13]]]],[21807,21819,21820,21821,21823,21826,21827,21829,21830,21833,21835,21836,21837]]]]},{"k":"H7716","v":[["*",[47,39,[[0,4,3,0,3,[[21,2,2,0,2],[29,2,1,2,3]]],[1,13,10,3,13,[[61,5,3,3,6],[62,1,1,6,7],[71,5,4,7,11],[83,2,2,11,13]]],[2,5,5,13,18,[[94,1,1,13,14],[101,1,1,14,15],[111,2,2,15,17],[116,1,1,17,18]]],[3,1,1,18,19,[[131,1,1,18,19]]],[4,5,4,19,23,[[166,2,1,19,20],[169,1,1,20,21],[170,1,1,21,22],[174,1,1,22,23]]],[5,1,1,23,24,[[192,1,1,23,24]]],[6,1,1,24,25,[[216,1,1,24,25]]],[8,4,4,25,29,[[249,1,1,25,26],[250,1,1,26,27],[252,1,1,27,28],[257,1,1,28,29]]],[18,1,1,29,30,[[596,1,1,29,30]]],[22,4,4,30,34,[[685,1,1,30,31],[721,1,1,31,32],[731,1,1,32,33],[744,1,1,33,34]]],[23,1,1,34,35,[[794,1,1,34,35]]],[25,7,4,35,39,[[835,6,3,35,38],[846,1,1,38,39]]]],[554,555,862,1819,1820,1821,1880,2114,2117,2122,2123,2515,2516,2837,3052,3392,3397,3596,4164,5294,5365,5387,5471,5970,6658,7542,7563,7652,7806,16074,17807,18528,18718,18925,20183,21330,21333,21335,21645]]],["+",[4,3,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[131,1,1,1,2]]],[4,2,1,2,3,[[166,2,1,2,3]]]],[1820,4164,5294]]],["cattle",[10,6,[[0,2,1,0,1,[[29,2,1,0,1]]],[22,2,2,1,3,[[685,1,1,1,2],[721,1,1,2,3]]],[25,6,3,3,6,[[835,6,3,3,6]]]],[862,17807,18528,21330,21333,21335]]],["ewe",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3397]]],["lamb",[15,14,[[0,2,2,0,2,[[21,2,2,0,2]]],[1,6,5,2,7,[[61,4,3,2,5],[62,1,1,5,6],[83,1,1,6,7]]],[2,3,3,7,10,[[94,1,1,7,8],[101,1,1,8,9],[111,1,1,9,10]]],[8,1,1,10,11,[[252,1,1,10,11]]],[22,2,2,11,13,[[731,1,1,11,12],[744,1,1,12,13]]],[25,1,1,13,14,[[846,1,1,13,14]]]],[554,555,1819,1820,1821,1880,2516,2837,3052,3392,7652,18718,18925,21645]]],["sheep",[17,16,[[1,6,5,0,5,[[71,5,4,0,4],[83,1,1,4,5]]],[2,1,1,5,6,[[116,1,1,5,6]]],[4,3,3,6,9,[[169,1,1,6,7],[170,1,1,7,8],[174,1,1,8,9]]],[5,1,1,9,10,[[192,1,1,9,10]]],[6,1,1,10,11,[[216,1,1,10,11]]],[8,3,3,11,14,[[249,1,1,11,12],[250,1,1,12,13],[257,1,1,13,14]]],[18,1,1,14,15,[[596,1,1,14,15]]],[23,1,1,15,16,[[794,1,1,15,16]]]],[2114,2117,2122,2123,2515,3596,5365,5387,5471,5970,6658,7542,7563,7806,16074,20183]]]]},{"k":"H7717","v":[["record",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13257]]]]},{"k":"H7718","v":[["*",[11,11,[[0,1,1,0,1,[[1,1,1,0,1]]],[1,7,7,1,8,[[74,1,1,1,2],[77,2,2,2,4],[84,2,2,4,6],[88,2,2,6,8]]],[12,1,1,8,9,[[366,1,1,8,9]]],[17,1,1,9,10,[[463,1,1,9,10]]],[25,1,1,10,11,[[829,1,1,10,11]]]],[42,2202,2302,2313,2540,2558,2670,2677,11166,13520,21170]]],["Onyx",[1,1,[[1,1,1,0,1,[[74,1,1,0,1]]]],[2202]]],["onyx",[10,10,[[0,1,1,0,1,[[1,1,1,0,1]]],[1,6,6,1,7,[[77,2,2,1,3],[84,2,2,3,5],[88,2,2,5,7]]],[12,1,1,7,8,[[366,1,1,7,8]]],[17,1,1,8,9,[[463,1,1,8,9]]],[25,1,1,9,10,[[829,1,1,9,10]]]],[42,2302,2313,2540,2558,2670,2677,11166,13520,21170]]]]},{"k":"H7719","v":[["Shoham",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11042]]]]},{"k":"H7720","v":[["*",[3,3,[[6,2,2,0,2,[[218,2,2,0,2]]],[22,1,1,2,3,[[681,1,1,2,3]]]],[6740,6745,17725]]],["ornaments",[2,2,[[6,2,2,0,2,[[218,2,2,0,2]]]],[6740,6745]]],["tires",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17725]]]]},{"k":"H7721","v":[["arise",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15335]]]]},{"k":"H7722","v":[["*",[12,11,[[17,3,3,0,3,[[465,2,2,0,2],[473,1,1,2,3]]],[18,4,3,3,6,[[512,3,2,3,5],[540,1,1,5,6]]],[19,1,1,6,7,[[630,1,1,6,7]]],[22,2,2,7,9,[[688,1,1,7,8],[725,1,1,8,9]]],[25,1,1,9,10,[[839,1,1,9,10]]],[35,1,1,10,11,[[906,1,1,10,11]]]],[13560,13571,13820,14418,14427,14848,16480,17853,18610,21434,22802]]],["+",[2,2,[[18,1,1,0,1,[[512,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]]],[14427,16480]]],["desolate",[2,2,[[17,2,2,0,2,[[465,1,1,0,1],[473,1,1,1,2]]]],[13560,13820]]],["desolation",[3,3,[[17,1,1,0,1,[[465,1,1,0,1]]],[22,2,2,1,3,[[688,1,1,1,2],[725,1,1,2,3]]]],[13571,17853,18610]]],["destroy",[1,1,[[18,1,1,0,1,[[540,1,1,0,1]]]],[14848]]],["destruction",[2,1,[[18,2,1,0,1,[[512,2,1,0,1]]]],[14418]]],["storm",[1,1,[[25,1,1,0,1,[[839,1,1,0,1]]]],[21434]]],["wasteness",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22802]]]]},{"k":"H7723","v":[["*",[53,48,[[1,3,2,0,2,[[69,2,1,0,1],[72,1,1,1,2]]],[4,3,2,2,4,[[157,3,2,2,4]]],[17,6,5,4,9,[[442,1,1,4,5],[446,1,1,5,6],[450,2,1,6,7],[466,1,1,7,8],[470,1,1,8,9]]],[18,15,14,9,23,[[489,1,1,9,10],[501,1,1,10,11],[503,1,1,11,12],[508,1,1,12,13],[518,1,1,13,14],[537,1,1,14,15],[566,1,1,15,16],[585,1,1,16,17],[596,1,1,17,18],[604,3,2,18,20],[616,1,1,20,21],[621,2,2,21,23]]],[19,1,1,23,24,[[657,1,1,23,24]]],[22,4,4,24,28,[[679,1,1,24,25],[683,1,1,25,26],[708,1,1,26,27],[737,1,1,27,28]]],[23,5,5,28,33,[[746,1,1,28,29],[748,1,1,29,30],[750,1,1,30,31],[762,1,1,31,32],[790,1,1,32,33]]],[24,2,1,33,34,[[798,2,1,33,34]]],[25,9,9,34,43,[[813,1,1,34,35],[814,5,5,35,40],[822,2,2,40,42],[823,1,1,42,43]]],[27,2,2,43,45,[[871,1,1,43,44],[873,1,1,44,45]]],[31,1,1,45,46,[[890,1,1,45,46]]],[37,1,1,46,47,[[920,1,1,46,47]]],[38,1,1,47,48,[[927,1,1,47,48]]]],[2058,2145,5064,5073,13011,13119,13234,13593,13733,14068,14245,14277,14337,14548,14818,15373,15754,15935,16122,16123,16259,16313,16316,17259,17667,17757,18245,18804,18995,19057,19118,19399,20056,20346,20704,20714,20715,20716,20717,20731,20967,20973,21004,22229,22263,22556,23018,23134]]],["false",[5,5,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,1,1,1,2,[[157,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]],[25,1,1,3,4,[[822,1,1,3,4]]],[37,1,1,4,5,[[920,1,1,4,5]]]],[2145,5073,20346,20967,23018]]],["falsely",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22229]]],["lies",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18804]]],["lying",[2,2,[[18,1,1,0,1,[[508,1,1,0,1]]],[31,1,1,1,2,[[890,1,1,1,2]]]],[14337,22556]]],["vain",[22,19,[[1,2,1,0,1,[[69,2,1,0,1]]],[4,2,1,1,2,[[157,2,1,1,2]]],[17,1,1,2,3,[[446,1,1,2,3]]],[18,8,7,3,10,[[503,1,1,3,4],[537,1,1,4,5],[566,1,1,5,6],[585,1,1,6,7],[604,3,2,7,9],[616,1,1,9,10]]],[22,1,1,10,11,[[679,1,1,10,11]]],[23,4,4,11,15,[[746,1,1,11,12],[748,1,1,12,13],[750,1,1,13,14],[790,1,1,14,15]]],[24,1,1,15,16,[[798,1,1,15,16]]],[25,2,2,16,18,[[813,1,1,16,17],[814,1,1,17,18]]],[38,1,1,18,19,[[927,1,1,18,19]]]],[2058,5064,13119,14277,14818,15373,15754,16122,16123,16259,17667,18995,19057,19118,20056,20346,20704,20715,23134]]],["vanity",[22,21,[[17,5,4,0,4,[[442,1,1,0,1],[450,2,1,1,2],[466,1,1,2,3],[470,1,1,3,4]]],[18,6,6,4,10,[[489,1,1,4,5],[501,1,1,5,6],[518,1,1,6,7],[596,1,1,7,8],[621,2,2,8,10]]],[19,1,1,10,11,[[657,1,1,10,11]]],[22,2,2,11,13,[[683,1,1,11,12],[708,1,1,12,13]]],[23,1,1,13,14,[[762,1,1,13,14]]],[25,6,6,14,20,[[814,4,4,14,18],[822,1,1,18,19],[823,1,1,19,20]]],[27,1,1,20,21,[[873,1,1,20,21]]]],[13011,13234,13593,13733,14068,14245,14548,15935,16313,16316,17259,17757,18245,19399,20714,20716,20717,20731,20973,21004,22263]]]]},{"k":"H7724","v":[["Sheva",[2,2,[[9,1,1,0,1,[[286,1,1,0,1]]],[12,1,1,1,2,[[339,1,1,1,2]]]],[8579,10355]]]]},{"k":"H7725","v":[["*",[1057,952,[[0,68,60,0,60,[[2,2,1,0,1],[7,5,4,1,5],[13,4,3,5,8],[14,1,1,8,9],[15,1,1,9,10],[17,4,3,10,13],[19,3,2,13,15],[20,1,1,15,16],[21,2,2,16,18],[23,4,3,18,21],[25,1,1,21,22],[26,2,2,22,24],[27,2,2,24,26],[28,1,1,26,27],[29,1,1,27,28],[30,3,3,28,31],[31,2,2,31,33],[32,1,1,33,34],[36,4,4,34,38],[37,2,2,38,40],[39,2,2,40,42],[40,1,1,42,43],[41,4,4,43,47],[42,7,6,47,53],[43,3,3,53,56],[47,1,1,56,57],[49,4,3,57,60]]],[1,28,24,60,84,[[53,8,5,60,65],[54,1,1,65,66],[59,1,1,66,67],[62,1,1,67,68],[63,4,4,68,72],[64,1,1,72,73],[68,1,1,73,74],[70,1,1,74,75],[71,1,1,75,76],[72,2,1,76,77],[73,1,1,77,78],[81,3,3,78,81],[82,1,1,81,82],[83,2,2,82,84]]],[2,18,14,84,98,[[95,1,1,84,85],[102,1,1,85,86],[103,2,2,86,88],[111,1,1,88,89],[114,11,7,89,96],[115,1,1,96,97],[116,1,1,97,98]]],[3,32,31,98,129,[[120,1,1,98,99],[121,3,2,99,101],[124,1,1,101,102],[126,1,1,102,103],[127,1,1,103,104],[129,2,2,104,106],[130,4,4,106,110],[132,1,1,110,111],[133,1,1,111,112],[134,1,1,112,113],[138,2,2,113,115],[139,4,4,115,119],[140,1,1,119,120],[141,2,2,120,122],[148,3,3,122,125],[149,1,1,125,126],[151,3,3,126,129]]],[4,35,31,129,160,[[153,3,3,129,132],[155,1,1,132,133],[156,2,2,133,135],[157,1,1,135,136],[165,1,1,136,137],[169,2,1,137,138],[172,4,4,138,142],[174,3,2,142,144],[175,2,2,144,146],[176,4,3,146,149],[180,3,3,149,152],[182,7,6,152,158],[184,2,2,158,160]]],[5,36,33,160,193,[[187,1,1,160,161],[188,3,3,161,164],[190,1,1,164,165],[191,1,1,165,166],[192,1,1,166,167],[193,2,2,167,169],[194,3,3,169,172],[196,4,4,172,176],[197,1,1,176,177],[200,1,1,177,178],[204,1,1,178,179],[205,5,4,179,183],[206,1,1,183,184],[208,8,7,184,191],[209,2,1,191,192],[210,1,1,192,193]]],[6,29,27,193,220,[[212,1,1,193,194],[213,1,1,194,195],[215,1,1,195,196],[216,1,1,196,197],[217,3,2,197,199],[218,3,3,199,202],[219,2,2,202,204],[221,6,6,204,210],[224,1,1,210,211],[225,1,1,211,212],[227,3,2,212,214],[228,1,1,214,215],[229,2,2,215,217],[230,1,1,217,218],[231,2,2,218,220]]],[7,15,13,220,233,[[232,12,10,220,230],[233,1,1,230,231],[235,2,2,231,233]]],[8,45,43,233,276,[[236,1,1,233,234],[238,2,2,234,236],[240,2,2,236,238],[241,8,7,238,245],[242,2,2,245,247],[244,1,1,247,248],[247,1,1,248,249],[249,1,1,249,250],[250,5,5,250,255],[252,4,4,255,259],[253,2,2,259,261],[258,2,2,261,263],[259,1,1,263,264],[260,3,3,264,267],[261,3,3,267,270],[262,1,1,270,271],[264,4,3,271,274],[265,2,2,274,276]]],[9,52,47,276,323,[[267,2,2,276,278],[268,2,2,278,280],[269,5,4,280,284],[272,1,1,284,285],[274,2,2,285,287],[275,1,1,287,288],[276,2,2,288,290],[277,2,2,290,292],[278,3,2,292,294],[280,2,2,294,296],[281,9,7,296,303],[282,3,3,303,306],[283,3,2,306,308],[284,1,1,308,309],[285,8,8,309,317],[286,1,1,317,318],[288,3,3,318,321],[289,1,1,321,322],[290,1,1,322,323]]],[10,62,54,323,377,[[292,9,8,323,331],[298,6,5,331,336],[299,2,1,336,337],[302,12,10,337,347],[303,16,14,347,361],[304,1,1,361,362],[307,2,2,362,364],[308,1,1,364,365],[309,5,5,365,370],[310,3,3,370,373],[312,5,4,373,377]]],[11,55,53,377,430,[[313,5,4,377,381],[314,3,3,381,384],[315,2,2,384,386],[316,4,4,386,390],[317,3,3,390,393],[319,2,2,393,395],[320,3,3,395,398],[321,4,4,398,402],[325,2,1,402,403],[326,4,4,403,407],[327,1,1,407,408],[328,1,1,408,409],[329,2,2,409,411],[330,2,2,411,413],[331,6,6,413,419],[332,4,4,419,423],[333,1,1,423,424],[334,2,2,424,426],[335,3,3,426,429],[336,1,1,429,430]]],[12,5,5,430,435,[[356,1,1,430,431],[357,1,1,431,432],[358,3,3,432,435]]],[13,62,54,435,489,[[372,8,7,435,442],[373,2,2,442,444],[376,6,6,444,450],[377,3,2,450,452],[378,2,2,452,454],[380,1,1,454,455],[381,1,1,455,456],[384,6,5,456,461],[385,4,3,461,464],[386,2,1,464,465],[388,1,1,465,466],[390,2,2,466,468],[391,3,3,468,471],[392,1,1,471,472],[393,1,1,472,473],[394,2,2,473,475],[395,1,1,475,476],[396,6,3,476,479],[397,1,1,479,480],[398,2,2,480,482],[399,2,2,482,484],[400,4,4,484,488],[402,1,1,488,489]]],[14,4,4,489,493,[[404,1,1,489,490],[408,1,1,490,491],[411,1,1,491,492],[412,1,1,492,493]]],[15,20,18,493,511,[[413,1,1,493,494],[414,4,3,494,497],[416,3,3,497,500],[417,2,2,500,502],[418,1,1,502,503],[419,1,1,503,504],[420,1,1,504,505],[421,6,5,505,510],[425,1,1,510,511]]],[16,8,8,511,519,[[427,1,1,511,512],[429,2,2,512,514],[431,1,1,514,515],[432,1,1,515,516],[433,2,2,516,518],[434,1,1,518,519]]],[17,39,38,519,557,[[436,1,1,519,520],[441,2,1,520,521],[442,2,2,521,523],[444,3,3,523,526],[445,3,3,526,529],[446,1,1,529,530],[448,1,1,530,531],[449,1,1,531,532],[450,2,2,532,534],[451,1,1,534,535],[452,1,1,535,536],[455,3,3,536,539],[457,1,1,539,540],[458,1,1,540,541],[465,1,1,541,542],[466,1,1,542,543],[467,1,1,543,544],[468,5,5,544,549],[469,1,1,549,550],[470,1,1,550,551],[471,1,1,551,552],[474,3,3,552,555],[475,1,1,555,556],[477,1,1,556,557]]],[18,70,67,557,624,[[483,2,2,557,559],[484,3,3,559,562],[486,2,2,562,564],[491,1,1,564,565],[495,3,3,565,568],[496,1,1,568,569],[499,1,1,569,570],[500,1,1,570,571],[505,1,1,571,572],[512,2,2,572,574],[521,1,1,574,575],[528,2,2,575,577],[530,1,1,577,578],[531,1,1,578,579],[533,1,1,579,580],[536,2,2,580,582],[537,1,1,582,583],[545,2,1,583,584],[546,1,1,584,585],[547,1,1,585,586],[548,2,1,586,587],[549,1,1,587,588],[550,1,1,588,589],[551,2,2,589,591],[555,4,4,591,595],[556,1,1,595,596],[557,4,4,596,600],[558,1,1,600,601],[562,5,5,601,606],[566,1,1,606,607],[567,3,2,607,609],[571,3,3,609,612],[581,2,2,612,614],[583,1,1,614,615],[593,2,2,615,617],[596,2,2,617,619],[603,2,2,619,621],[609,2,2,621,623],[623,1,1,623,624]]],[19,23,23,624,647,[[628,1,1,624,625],[629,1,1,625,626],[630,1,1,626,627],[639,1,1,627,628],[642,1,1,628,629],[644,1,1,629,630],[645,1,1,630,631],[646,1,1,631,632],[647,1,1,632,633],[649,1,1,633,634],[651,4,4,634,638],[652,2,2,638,640],[653,4,4,640,644],[654,1,1,644,645],[656,1,1,645,646],[657,1,1,646,647]]],[20,10,9,647,656,[[659,2,2,647,649],[661,1,1,649,650],[662,2,2,650,652],[663,1,1,652,653],[667,1,1,653,654],[670,3,2,654,656]]],[21,4,1,656,657,[[676,4,1,656,657]]],[22,51,50,657,707,[[679,3,3,657,660],[683,1,1,660,661],[684,2,2,661,663],[687,4,4,663,667],[688,3,3,667,670],[690,1,1,670,671],[692,1,1,671,672],[697,1,1,672,673],[699,1,1,673,674],[701,1,1,674,675],[706,1,1,675,676],[707,1,1,676,677],[709,1,1,677,678],[713,1,1,678,679],[714,1,1,679,680],[715,5,5,680,685],[716,2,1,685,686],[719,1,1,686,687],[720,1,1,687,688],[721,1,1,688,689],[722,3,3,689,692],[723,1,1,692,693],[724,1,1,693,694],[725,1,1,694,695],[727,2,2,695,697],[729,1,1,697,698],[730,1,1,698,699],[733,3,3,699,702],[736,2,2,702,704],[737,1,1,704,705],[741,1,1,705,706],[744,1,1,706,707]]],[23,112,92,707,799,[[746,2,2,707,709],[747,9,7,709,716],[748,4,3,716,719],[749,1,1,719,720],[750,1,1,720,721],[752,5,3,721,724],[755,1,1,724,725],[756,2,1,725,726],[758,1,1,726,727],[759,5,2,727,729],[760,1,1,729,730],[762,4,4,730,734],[766,4,3,734,737],[767,4,4,737,741],[768,2,2,741,743],[769,1,1,743,744],[770,1,1,744,745],[771,2,2,745,747],[772,3,3,747,750],[773,3,2,750,752],[774,5,4,752,756],[775,9,7,756,763],[776,3,3,763,766],[777,3,3,766,769],[778,6,4,769,773],[779,1,1,773,774],[780,3,3,774,777],[781,3,3,777,780],[782,1,1,780,781],[784,3,2,781,783],[785,3,2,783,785],[786,2,2,785,787],[787,1,1,787,788],[788,5,3,788,791],[790,2,2,791,793],[792,1,1,793,794],[793,2,2,794,796],[794,3,3,796,799]]],[24,14,13,799,812,[[797,5,5,799,804],[798,3,3,804,807],[799,4,4,807,811],[801,2,1,811,812]]],[25,62,52,812,864,[[802,1,1,812,813],[804,2,2,813,815],[808,2,1,815,816],[809,4,4,816,820],[810,1,1,820,821],[814,1,1,821,822],[815,3,1,822,823],[817,4,2,823,825],[819,13,12,825,837],[821,1,1,837,838],[822,2,2,838,840],[828,1,1,840,841],[830,2,1,841,842],[834,10,7,842,849],[835,2,2,849,851],[836,1,1,851,852],[839,3,3,852,855],[840,3,3,855,858],[845,1,1,858,859],[847,2,2,859,861],[848,3,3,861,864]]],[26,16,12,864,876,[[858,4,3,864,867],[859,1,1,867,868],[860,11,8,868,876]]],[27,22,21,876,897,[[863,2,2,876,878],[864,1,1,878,879],[865,1,1,879,880],[866,2,2,880,882],[867,2,2,882,884],[868,2,2,884,886],[869,1,1,886,887],[870,1,1,887,888],[872,3,2,888,890],[873,3,3,890,893],[875,4,4,893,897]]],[28,6,6,897,903,[[877,3,3,897,900],[878,3,3,900,903]]],[29,15,15,903,918,[[879,6,6,903,909],[880,3,3,909,912],[882,5,5,912,917],[887,1,1,917,918]]],[30,1,1,918,919,[[888,1,1,918,919]]],[31,5,4,919,923,[[889,1,1,919,920],[891,4,3,920,923]]],[32,4,4,923,927,[[893,1,1,923,924],[894,1,1,924,925],[897,1,1,925,926],[899,1,1,926,927]]],[33,1,1,927,928,[[901,1,1,927,928]]],[34,1,1,928,929,[[904,1,1,928,929]]],[35,2,2,929,931,[[907,1,1,929,930],[908,1,1,930,931]]],[37,18,16,931,947,[[911,5,4,931,935],[914,1,1,935,936],[915,1,1,936,937],[916,1,1,937,938],[917,1,1,938,939],[918,2,2,939,941],[919,3,2,941,943],[920,3,3,943,946],[923,1,1,946,947]]],[38,7,5,947,952,[[925,1,1,947,948],[926,1,1,948,949],[927,4,2,949,951],[928,1,1,951,952]]]],[74,186,190,192,195,343,352,353,376,390,434,438,457,502,509,545,552,566,596,597,599,710,771,772,788,794,798,861,876,886,928,934,937,976,1097,1105,1112,1113,1141,1148,1185,1193,1208,1276,1277,1280,1289,1292,1300,1302,1303,1308,1311,1332,1337,1349,1472,1511,1520,1521,1608,1619,1620,1621,1622,1654,1785,1884,1891,1915,1916,1917,1939,2034,2111,2139,2148,2191,2450,2465,2469,2484,2527,2531,2853,3068,3150,3154,3382,3479,3482,3496,3497,3510,3520,3521,3550,3594,3754,3799,3800,3964,4024,4028,4100,4101,4111,4112,4144,4151,4244,4254,4266,4383,4409,4421,4422,4432,4436,4471,4475,4482,4733,4736,4740,4767,4870,4873,4877,4914,4917,4937,4995,5034,5043,5083,5289,5380,5432,5433,5434,5435,5471,5472,5513,5514,5529,5538,5544,5642,5671,5679,5709,5710,5711,5716,5717,5718,5799,5801,5866,5885,5891,5892,5928,5936,5963,5979,6002,6023,6026,6028,6079,6085,6102,6107,6117,6194,6301,6333,6348,6350,6355,6378,6434,6435,6442,6444,6449,6455,6458,6472,6496,6564,6587,6652,6672,6697,6709,6728,6732,6752,6810,6811,6837,6838,6842,6860,6864,6868,6917,6948,6983,6984,7019,7027,7031,7102,7116,7125,7133,7134,7135,7137,7138,7139,7142,7143,7148,7149,7155,7193,7205,7231,7281,7282,7322,7330,7334,7335,7338,7339,7347,7348,7352,7355,7366,7396,7463,7535,7571,7585,7586,7590,7591,7633,7648,7671,7675,7678,7682,7833,7838,7840,7873,7882,7900,7926,7928,7930,7939,7971,7974,7978,7990,7997,8023,8044,8075,8079,8092,8097,8107,8108,8177,8212,8222,8234,8245,8254,8263,8274,8309,8317,8369,8377,8397,8408,8409,8414,8416,8418,8423,8429,8434,8438,8452,8469,8494,8521,8522,8523,8525,8526,8548,8550,8554,8576,8623,8627,8640,8663,8705,8786,8787,8790,8800,8802,8803,8811,8814,9018,9019,9020,9032,9033,9057,9156,9157,9160,9163,9167,9171,9172,9175,9177,9178,9188,9190,9193,9194,9200,9201,9202,9203,9204,9206,9207,9210,9213,9217,9246,9338,9339,9384,9393,9394,9402,9407,9408,9413,9417,9442,9497,9506,9508,9513,9538,9539,9544,9546,9564,9569,9576,9580,9603,9625,9634,9638,9641,9657,9661,9662,9715,9722,9730,9733,9756,9771,9774,9776,9792,9896,9910,9918,9921,9924,9945,9969,9986,9996,10038,10048,10068,10069,10070,10089,10094,10097,10103,10107,10108,10109,10122,10154,10165,10185,10190,10191,10203,10912,10929,10946,10954,10961,11305,11306,11307,11308,11319,11320,11324,11338,11343,11397,11400,11401,11404,11407,11411,11415,11418,11448,11449,11490,11494,11558,11567,11568,11569,11574,11577,11580,11584,11614,11650,11688,11696,11714,11717,11728,11734,11760,11775,11779,11801,11833,11835,11836,11855,11896,11900,11911,11921,11940,11942,11949,11961,12006,12028,12172,12251,12266,12305,12313,12322,12327,12363,12371,12374,12393,12394,12405,12426,12510,12528,12537,12539,12540,12546,12680,12738,12775,12777,12805,12815,12822,12825,12859,12890,13007,13015,13018,13063,13064,13069,13095,13102,13107,13118,13175,13194,13216,13225,13260,13270,13328,13336,13344,13412,13432,13580,13602,13642,13655,13675,13676,13680,13682,13698,13724,13746,13838,13846,13856,13868,13932,13989,13995,14002,14007,14011,14024,14038,14087,14138,14142,14155,14175,14231,14238,14303,14423,14427,14581,14703,14704,14725,14730,14764,14796,14804,14808,14922,14939,14974,14996,15010,15030,15059,15069,15147,15151,15152,15154,15197,15201,15205,15212,15217,15231,15272,15274,15275,15277,15279,15369,15381,15391,15433,15446,15454,15580,15600,15674,15855,15860,15957,15977,16116,16119,16161,16162,16345,16423,16452,16483,16733,16808,16886,16914,16949,16980,17036,17091,17097,17105,17108,17123,17126,17152,17156,17157,17168,17180,17232,17281,17321,17322,17379,17382,17388,17412,17486,17525,17530,17627,17679,17680,17681,17764,17779,17782,17841,17842,17846,17850,17854,17871,17872,17901,17955,18026,18047,18094,18170,18210,18256,18330,18339,18359,18360,18381,18386,18389,18398,18479,18502,18518,18552,18555,18558,18584,18594,18609,18641,18642,18684,18704,18747,18750,18751,18798,18799,18820,18883,18937,18989,19000,19003,19009,19012,19014,19016,19021,19024,19028,19035,19055,19061,19098,19157,19158,19159,19236,19264,19296,19322,19334,19351,19388,19392,19395,19404,19464,19465,19481,19487,19498,19504,19506,19530,19531,19539,19575,19612,19618,19621,19622,19624,19645,19649,19670,19677,19685,19691,19699,19707,19708,19709,19710,19712,19714,19768,19771,19775,19782,19786,19801,19812,19816,19817,19823,19838,19845,19849,19870,19881,19882,19894,19921,19946,19953,19971,19973,19985,19987,20002,20015,20024,20038,20061,20072,20127,20133,20166,20172,20175,20185,20318,20321,20323,20326,20329,20335,20340,20346,20357,20375,20394,20418,20463,20478,20521,20522,20590,20610,20617,20619,20621,20633,20730,20737,20815,20817,20856,20857,20861,20866,20870,20872,20873,20875,20876,20877,20879,20881,20917,20949,20974,21136,21197,21289,21291,21292,21294,21295,21298,21299,21317,21329,21351,21429,21433,21437,21450,21473,21475,21600,21664,21672,21680,21685,21686,22001,22004,22013,22035,22045,22046,22049,22054,22055,22064,22065,22066,22112,22114,22133,22142,22156,22167,22168,22178,22188,22194,22207,22211,22245,22249,22254,22258,22266,22283,22284,22286,22289,22323,22324,22325,22344,22347,22350,22367,22370,22372,22373,22375,22377,22380,22383,22385,22416,22418,22419,22420,22421,22509,22525,22544,22566,22567,22568,22586,22603,22636,22683,22701,22749,22812,22840,22881,22882,22884,22894,22923,22937,22948,22976,22979,22991,23007,23011,23022,23025,23026,23066,23093,23109,23127,23138,23144]]],["+",[155,141,[[0,15,12,0,12,[[7,2,2,0,2],[13,1,1,2,3],[14,1,1,3,4],[17,2,1,4,5],[23,2,1,5,6],[25,1,1,6,7],[28,1,1,7,8],[39,1,1,8,9],[42,1,1,9,10],[47,1,1,10,11],[49,2,1,11,12]]],[1,5,4,12,16,[[64,1,1,12,13],[68,1,1,13,14],[72,2,1,14,15],[83,1,1,15,16]]],[2,4,4,16,20,[[95,1,1,16,17],[114,2,2,17,19],[115,1,1,19,20]]],[3,4,4,20,24,[[120,1,1,20,21],[124,1,1,21,22],[133,1,1,22,23],[141,1,1,23,24]]],[4,5,3,24,27,[[174,2,1,24,25],[176,2,1,25,26],[182,1,1,26,27]]],[5,4,3,27,30,[[191,1,1,27,28],[208,1,1,28,29],[209,2,1,29,30]]],[6,5,5,30,35,[[219,1,1,30,31],[221,2,2,31,33],[227,2,2,33,35]]],[8,5,4,35,39,[[241,3,2,35,37],[253,1,1,37,38],[264,1,1,38,39]]],[9,12,12,39,51,[[269,2,2,39,41],[280,2,2,41,43],[281,3,3,43,46],[285,4,4,46,50],[288,1,1,50,51]]],[10,20,16,51,67,[[292,7,6,51,57],[298,1,1,57,58],[299,2,1,58,59],[302,4,4,59,63],[303,2,1,63,64],[307,2,2,64,66],[312,2,1,66,67]]],[11,12,12,67,79,[[320,1,1,67,68],[321,2,2,68,70],[325,1,1,70,71],[326,2,2,71,73],[328,1,1,73,74],[330,1,1,74,75],[332,1,1,75,76],[333,1,1,76,77],[334,2,2,77,79]]],[12,2,2,79,81,[[358,2,2,79,81]]],[13,11,10,81,91,[[372,2,2,81,83],[376,1,1,83,84],[377,1,1,84,85],[384,2,1,85,86],[398,1,1,86,87],[399,1,1,87,88],[400,2,2,88,90],[402,1,1,90,91]]],[15,1,1,91,92,[[414,1,1,91,92]]],[16,3,3,92,95,[[429,2,2,92,94],[433,1,1,94,95]]],[17,3,3,95,98,[[445,1,1,95,96],[470,1,1,96,97],[477,1,1,97,98]]],[18,6,6,98,104,[[555,2,2,98,100],[581,1,1,100,101],[603,2,2,101,103],[609,1,1,103,104]]],[19,4,4,104,108,[[646,1,1,104,105],[652,1,1,105,106],[654,1,1,106,107],[657,1,1,107,108]]],[20,1,1,108,109,[[661,1,1,108,109]]],[22,3,3,109,112,[[714,1,1,109,110],[716,1,1,110,111],[727,1,1,111,112]]],[23,13,12,112,124,[[762,1,1,112,113],[767,1,1,113,114],[773,3,2,114,116],[774,1,1,116,117],[775,1,1,117,118],[777,1,1,118,119],[786,2,2,119,121],[793,2,2,121,123],[794,1,1,123,124]]],[24,1,1,124,125,[[797,1,1,124,125]]],[25,9,9,125,134,[[809,3,3,125,128],[817,1,1,128,129],[821,1,1,129,130],[830,1,1,130,131],[840,2,2,131,133],[845,1,1,133,134]]],[28,1,1,134,135,[[878,1,1,134,135]]],[29,1,1,135,136,[[887,1,1,135,136]]],[33,1,1,136,137,[[901,1,1,136,137]]],[35,1,1,137,138,[[908,1,1,137,138]]],[37,2,2,138,140,[[917,1,1,138,139],[919,1,1,139,140]]],[38,1,1,140,141,[[926,1,1,140,141]]]],[186,190,352,376,434,596,710,798,1193,1311,1472,1521,1939,2034,2148,2531,2853,3496,3521,3550,3754,3964,4254,4482,5471,5538,5711,5936,6458,6472,6810,6838,6842,6983,6984,7334,7352,7678,7971,8092,8107,8369,8377,8409,8414,8418,8521,8522,8523,8554,8640,8786,8787,8790,8800,8802,8814,9032,9057,9157,9160,9167,9172,9190,9338,9339,9508,9733,9774,9776,9896,9921,9924,9969,10048,10109,10122,10154,10165,10946,10961,11319,11324,11411,11415,11569,11900,11911,11949,11961,12006,12327,12775,12777,12822,13095,13724,13932,15151,15152,15580,16116,16119,16161,16949,17123,17180,17281,17379,18339,18398,18641,19404,19487,19645,19649,19670,19714,19786,19985,19987,20133,20166,20185,20329,20610,20617,20619,20815,20917,21197,21473,21475,21600,22344,22509,22701,22840,22976,23007,23109]]],["Again",[1,1,[[11,1,1,0,1,[[313,1,1,0,1]]]],[9544]]],["Come",[1,1,[[10,1,1,0,1,[[302,1,1,0,1]]]],[9163]]],["Get",[1,1,[[4,1,1,0,1,[[157,1,1,0,1]]]],[5083]]],["Put",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1608]]],["Render",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20418]]],["Repent",[2,2,[[25,2,2,0,2,[[815,1,1,0,1],[819,1,1,1,2]]]],[20737,20879]]],["Restore",[3,3,[[15,1,1,0,1,[[417,1,1,0,1]]],[18,1,1,1,2,[[528,1,1,1,2]]],[22,1,1,2,3,[[720,1,1,2,3]]]],[12393,14703,18502]]],["Return",[19,19,[[0,3,3,0,3,[[15,1,1,0,1],[30,1,1,1,2],[31,1,1,2,3]]],[3,2,2,3,5,[[126,1,1,3,4],[139,1,1,4,5]]],[5,1,1,5,6,[[208,1,1,5,6]]],[9,1,1,6,7,[[285,1,1,6,7]]],[17,1,1,7,8,[[441,1,1,7,8]]],[18,5,5,8,13,[[483,1,1,8,9],[557,1,1,9,10],[567,2,2,10,12],[593,1,1,12,13]]],[21,1,1,13,14,[[676,1,1,13,14]]],[22,1,1,14,15,[[741,1,1,14,15]]],[23,3,3,15,18,[[747,2,2,15,17],[779,1,1,17,18]]],[38,1,1,18,19,[[927,1,1,18,19]]]],[390,876,937,4024,4421,6434,8525,13007,13989,15212,15381,15391,15855,17627,18883,19014,19024,19838,23127]]],["Turn",[11,11,[[1,1,1,0,1,[[81,1,1,0,1]]],[11,1,1,1,2,[[329,1,1,1,2]]],[18,1,1,2,3,[[562,1,1,2,3]]],[19,1,1,3,4,[[628,1,1,3,4]]],[22,1,1,4,5,[[709,1,1,4,5]]],[23,2,2,5,7,[[747,2,2,5,7]]],[24,1,1,7,8,[[801,1,1,7,8]]],[37,3,3,8,11,[[911,2,2,8,10],[919,1,1,10,11]]]],[2450,9996,15275,16423,18256,19009,19016,20463,22881,22882,23011]]],["again",[159,153,[[0,12,11,0,11,[[13,1,1,0,1],[21,1,1,1,2],[27,2,2,2,4],[29,1,1,4,5],[42,4,3,5,8],[43,2,2,8,10],[49,1,1,10,11]]],[1,5,5,11,16,[[53,1,1,11,12],[59,1,1,12,13],[63,1,1,13,14],[73,1,1,14,15],[82,1,1,15,16]]],[2,4,4,16,20,[[102,1,1,16,17],[103,2,2,17,19],[114,1,1,19,20]]],[3,5,5,20,25,[[127,1,1,20,21],[138,1,1,21,22],[139,1,1,22,23],[149,1,1,23,24],[151,1,1,24,25]]],[4,3,3,25,28,[[176,2,2,25,27],[182,1,1,27,28]]],[5,2,2,28,30,[[194,1,1,28,29],[204,1,1,29,30]]],[6,10,10,30,40,[[213,1,1,30,31],[216,1,1,31,32],[218,2,2,32,34],[221,1,1,34,35],[225,1,1,35,36],[229,2,2,36,38],[230,1,1,38,39],[231,1,1,39,40]]],[7,4,4,40,44,[[232,3,3,40,43],[235,1,1,43,44]]],[8,11,11,44,55,[[238,2,2,44,46],[240,1,1,46,47],[250,3,3,47,50],[252,1,1,50,51],[258,1,1,51,52],[260,1,1,52,53],[264,1,1,53,54],[265,1,1,54,55]]],[9,3,3,55,58,[[281,2,2,55,57],[285,1,1,57,58]]],[10,16,15,58,73,[[292,1,1,58,59],[298,2,2,59,61],[302,4,3,61,64],[303,4,4,64,68],[308,1,1,68,69],[309,3,3,69,72],[310,1,1,72,73]]],[11,13,13,73,86,[[313,2,2,73,75],[314,1,1,75,76],[316,3,3,76,79],[317,2,2,79,81],[319,1,1,81,82],[321,1,1,82,83],[325,1,1,83,84],[331,1,1,84,85],[332,1,1,85,86]]],[13,12,11,86,97,[[372,1,1,86,87],[376,2,2,87,89],[378,1,1,89,90],[384,1,1,90,91],[385,1,1,91,92],[386,1,1,92,93],[390,1,1,93,94],[396,3,2,94,96],[399,1,1,96,97]]],[14,3,3,97,100,[[404,1,1,97,98],[408,1,1,98,99],[411,1,1,99,100]]],[15,5,5,100,105,[[419,1,1,100,101],[420,1,1,101,102],[421,2,2,102,104],[425,1,1,104,105]]],[16,1,1,105,106,[[431,1,1,105,106]]],[17,2,2,106,108,[[445,1,1,106,107],[469,1,1,107,108]]],[18,10,8,108,116,[[495,1,1,108,109],[545,2,1,109,110],[548,2,1,110,111],[557,3,3,111,114],[562,2,2,114,116]]],[19,3,3,116,119,[[629,1,1,116,117],[630,1,1,117,118],[653,1,1,118,119]]],[20,1,1,119,120,[[659,1,1,119,120]]],[22,2,2,120,122,[[724,1,1,120,121],[730,1,1,121,122]]],[23,21,20,122,142,[[756,1,1,122,123],[759,1,1,123,124],[760,1,1,124,125],[762,1,1,125,126],[768,1,1,126,127],[769,1,1,127,128],[771,1,1,128,129],[772,3,3,129,132],[774,1,1,132,133],[775,4,3,133,136],[776,1,1,136,137],[780,1,1,137,138],[781,1,1,138,139],[785,1,1,139,140],[790,1,1,140,141],[792,1,1,141,142]]],[24,1,1,142,143,[[799,1,1,142,143]]],[25,3,3,143,146,[[835,2,2,143,145],[848,1,1,145,146]]],[26,1,1,146,147,[[858,1,1,146,147]]],[32,1,1,147,148,[[899,1,1,147,148]]],[37,5,5,148,153,[[914,1,1,148,149],[918,1,1,149,150],[920,3,3,150,153]]]],[352,552,788,794,861,1292,1302,1303,1332,1349,1511,1608,1785,1915,2191,2484,3068,3150,3154,3520,4028,4409,4432,4767,4877,5529,5544,5717,6023,6301,6587,6672,6728,6752,6837,6948,7027,7031,7102,7116,7138,7139,7148,7193,7281,7282,7330,7585,7590,7591,7648,7833,7873,7971,7990,8397,8414,8548,8811,9018,9019,9156,9171,9178,9188,9193,9201,9217,9384,9393,9394,9407,9413,9539,9546,9569,9625,9634,9641,9657,9661,9715,9792,9896,10070,10103,11307,11400,11407,11448,11574,11580,11614,11696,11833,11836,11921,12028,12172,12251,12426,12510,12539,12540,12680,12805,13102,13698,14155,14922,14996,15201,15205,15217,15277,15279,16452,16483,17156,17321,18594,18704,19264,19334,19351,19388,19530,19539,19612,19621,19622,19624,19685,19707,19708,19712,19768,19870,19882,19973,20061,20127,20394,21317,21329,21680,22013,22683,22923,22991,23022,23025,23026]]],["answer",[10,10,[[17,7,7,0,7,[[448,1,1,0,1],[455,1,1,1,2],[466,1,1,2,3],[467,1,1,3,4],[468,2,2,4,6],[475,1,1,6,7]]],[19,1,1,7,8,[[649,1,1,7,8]]],[22,1,1,8,9,[[719,1,1,8,9]]],[34,1,1,9,10,[[904,1,1,9,10]]]],[13175,13328,13602,13642,13655,13682,13868,17036,18479,22749]]],["answered",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12405]]],["answereth",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16914]]],["averse",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22603]]],["away",[45,45,[[0,2,2,0,2,[[26,2,2,0,2]]],[3,3,3,2,5,[[130,1,1,2,3],[141,1,1,3,4],[148,1,1,4,5]]],[4,1,1,5,6,[[175,1,1,5,6]]],[5,2,2,6,8,[[208,2,2,6,8]]],[13,3,3,8,11,[[373,1,1,8,9],[395,1,1,9,10],[396,1,1,10,11]]],[18,1,1,11,12,[[583,1,1,11,12]]],[19,3,3,12,15,[[642,1,1,12,13],[651,1,1,13,14],[656,1,1,14,15]]],[22,7,7,15,22,[[683,1,1,15,16],[687,3,3,16,19],[688,1,1,19,20],[690,1,1,20,21],[736,1,1,21,22]]],[23,5,5,22,27,[[746,1,1,22,23],[747,1,1,23,24],[752,1,1,24,25],[776,1,1,25,26],[794,1,1,26,27]]],[24,1,1,27,28,[[798,1,1,27,28]]],[25,5,5,28,33,[[815,1,1,28,29],[819,4,4,29,33]]],[26,1,1,33,34,[[858,1,1,33,34]]],[27,1,1,34,35,[[875,1,1,34,35]]],[29,8,8,35,43,[[879,5,5,35,40],[880,3,3,40,43]]],[31,1,1,43,44,[[891,1,1,43,44]]],[35,1,1,44,45,[[907,1,1,44,45]]]],[771,772,4151,4475,4733,5514,6442,6444,11343,11801,11835,15674,16808,17097,17232,17764,17841,17846,17850,17854,17901,18799,18989,19021,19157,19771,20172,20346,20737,20873,20875,20876,20877,22004,22286,22367,22370,22373,22375,22377,22380,22383,22385,22567,22812]]],["back",[53,51,[[0,1,1,0,1,[[37,1,1,0,1]]],[3,1,1,1,2,[[129,1,1,1,2]]],[4,1,1,2,3,[[175,1,1,2,3]]],[5,1,1,3,4,[[197,1,1,3,4]]],[6,2,2,4,6,[[221,1,1,4,5],[228,1,1,5,6]]],[7,2,2,6,8,[[232,1,1,6,7],[233,1,1,7,8]]],[8,1,1,8,9,[[250,1,1,8,9]]],[9,2,2,9,11,[[278,1,1,9,10],[283,1,1,10,11]]],[10,11,11,11,22,[[303,7,7,11,18],[304,1,1,18,19],[309,1,1,19,20],[312,2,2,20,22]]],[11,7,6,22,28,[[313,2,1,22,23],[314,1,1,23,24],[320,1,1,24,25],[327,1,1,25,26],[331,1,1,26,27],[332,1,1,27,28]]],[12,1,1,28,29,[[358,1,1,28,29]]],[13,3,3,29,32,[[384,1,1,29,30],[385,1,1,30,31],[391,1,1,31,32]]],[15,1,1,32,33,[[414,1,1,32,33]]],[17,2,2,33,35,[[468,1,1,33,34],[474,1,1,34,35]]],[18,5,5,35,40,[[491,1,1,35,36],[530,1,1,36,37],[547,1,1,37,38],[555,1,1,38,39],[562,1,1,39,40]]],[22,2,2,40,42,[[692,1,1,40,41],[715,1,1,41,42]]],[23,7,6,42,48,[[748,2,2,42,44],[750,1,1,44,45],[752,1,1,45,46],[755,1,1,46,47],[784,2,1,47,48]]],[25,3,3,48,51,[[839,2,2,48,50],[840,1,1,50,51]]]],[1148,4101,5513,6117,6864,7019,7142,7155,7571,8309,8452,9202,9203,9204,9206,9207,9210,9213,9246,9408,9506,9513,9538,9564,9756,9945,10089,10107,10954,11567,11580,11717,12322,13680,13856,14087,14725,14974,15154,15272,17955,18381,19035,19055,19098,19158,19236,19946,21429,21433,21450]]],["bring",[13,13,[[0,4,4,0,4,[[23,2,2,0,2],[36,1,1,2,3],[41,1,1,3,4]]],[3,1,1,4,5,[[138,1,1,4,5]]],[4,3,3,5,8,[[153,1,1,5,6],[180,2,2,6,8]]],[8,1,1,8,9,[[241,1,1,8,9]]],[17,1,1,9,10,[[465,1,1,9,10]]],[18,2,2,10,12,[[549,1,1,10,11],[571,1,1,11,12]]],[31,1,1,12,13,[[889,1,1,12,13]]]],[597,599,1097,1289,4383,4914,5671,5679,7338,13580,15010,15454,22544]]],["bringeth",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16980]]],["brought",[4,4,[[4,1,1,0,1,[[153,1,1,0,1]]],[5,1,1,1,2,[[200,1,1,1,2]]],[10,1,1,2,3,[[310,1,1,2,3]]],[25,1,1,3,4,[[828,1,1,3,4]]]],[4917,6194,9417,21136]]],["call",[1,1,[[4,1,1,0,1,[[182,1,1,0,1]]]],[5709]]],["carried",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11688]]],["consider",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5043]]],["considereth",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18552]]],["convert",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17779]]],["converted",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14704]]],["converting",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14175]]],["converts",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17681]]],["deliver",[3,3,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[13,1,1,2,3,[[394,1,1,2,3]]]],[1105,2139,11775]]],["drawn",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20335]]],["drew",[1,1,[[5,1,1,0,1,[[194,1,1,0,1]]]],[6028]]],["from",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18820]]],["gave",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[9986]]],["give",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2111]]],["giveth",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17105]]],["hinder",[2,2,[[17,2,2,0,2,[[444,1,1,0,1],[446,1,1,1,2]]]],[13063,13118]]],["home",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13846]]],["let",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18518]]],["more",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13015]]],["off",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20866]]],["out",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2465]]],["past",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13194]]],["pay",[1,1,[[13,1,1,0,1,[[393,1,1,0,1]]]],[11760]]],["perverted",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18609]]],["put",[2,2,[[1,1,1,0,1,[[53,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]]],[1608,7535]]],["recall",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20375]]],["recompense",[3,3,[[3,2,2,0,2,[[121,2,2,0,2]]],[27,1,1,2,3,[[873,1,1,2,3]]]],[3799,3800,22254]]],["recompensed",[5,5,[[3,1,1,0,1,[[121,1,1,0,1]]],[9,2,2,1,3,[[288,2,2,1,3]]],[18,2,2,3,5,[[495,2,2,3,5]]]],[3800,8623,8627,14138,14142]]],["recover",[1,1,[[9,1,1,0,1,[[274,1,1,0,1]]]],[8212]]],["recovered",[2,2,[[8,1,1,0,1,[[265,1,1,0,1]]],[23,1,1,1,2,[[785,1,1,1,2]]]],[7997,19973]]],["refresheth",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17126]]],["relieve",[2,2,[[24,2,2,0,2,[[797,2,2,0,2]]]],[20321,20326]]],["render",[15,15,[[3,1,1,0,1,[[134,1,1,0,1]]],[4,2,2,1,3,[[184,2,2,1,3]]],[6,1,1,3,4,[[219,1,1,3,4]]],[8,1,1,4,5,[[261,1,1,4,5]]],[17,1,1,5,6,[[468,1,1,5,6]]],[18,4,4,6,10,[[505,1,1,6,7],[556,1,1,7,8],[571,1,1,8,9],[593,1,1,9,10]]],[19,3,3,10,13,[[651,2,2,10,12],[653,1,1,12,13]]],[22,1,1,13,14,[[744,1,1,13,14]]],[37,1,1,14,15,[[919,1,1,14,15]]]],[4266,5799,5801,6811,7928,13676,14303,15197,15433,15860,17091,17108,17157,18937,23011]]],["rendered",[2,2,[[11,1,1,0,1,[[315,1,1,0,1]]],[19,1,1,1,2,[[639,1,1,1,2]]]],[9580,16733]]],["repent",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9032]]],["reported",[1,1,[[25,1,1,0,1,[[810,1,1,0,1]]]],[20633]]],["requite",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8438]]],["requited",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7882]]],["requiting",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11305]]],["rescue",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14427]]],["restore",[20,19,[[0,4,3,0,3,[[19,2,1,0,1],[39,1,1,1,2],[41,1,1,2,3]]],[2,1,1,3,4,[[114,1,1,3,4]]],[3,1,1,4,5,[[151,1,1,4,5]]],[4,1,1,5,6,[[174,1,1,5,6]]],[6,1,1,6,7,[[227,1,1,6,7]]],[8,1,1,7,8,[[247,1,1,7,8]]],[9,2,2,8,10,[[275,1,1,8,9],[282,1,1,9,10]]],[10,1,1,10,11,[[310,1,1,10,11]]],[15,1,1,11,12,[[417,1,1,11,12]]],[17,2,2,12,14,[[455,2,2,12,14]]],[22,2,2,14,16,[[679,1,1,14,15],[727,1,1,15,16]]],[23,1,1,16,17,[[771,1,1,16,17]]],[25,1,1,17,18,[[834,1,1,17,18]]],[26,1,1,18,19,[[858,1,1,18,19]]]],[502,1185,1277,3497,4870,5472,6983,7463,8234,8429,9442,12394,13336,13344,17680,18642,19618,21295,22013]]],["restored",[10,10,[[0,3,3,0,3,[[19,1,1,0,1],[40,1,1,1,2],[41,1,1,2,3]]],[4,1,1,3,4,[[180,1,1,3,4]]],[8,1,1,4,5,[[242,1,1,4,5]]],[11,1,1,5,6,[[326,1,1,5,6]]],[13,1,1,6,7,[[392,1,1,6,7]]],[18,1,1,7,8,[[546,1,1,7,8]]],[25,2,2,8,10,[[819,2,2,8,10]]]],[509,1208,1280,5642,7366,9918,11734,14939,20856,20861]]],["restorer",[2,2,[[7,1,1,0,1,[[235,1,1,0,1]]],[22,1,1,1,2,[[736,1,1,1,2]]]],[7205,18798]]],["restoreth",[1,1,[[18,1,1,0,1,[[500,1,1,0,1]]]],[14238]]],["retire",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8274]]],["return",[214,193,[[0,5,4,0,4,[[2,2,1,0,1],[13,1,1,1,2],[17,1,1,2,3],[30,1,1,3,4]]],[1,4,4,4,8,[[53,3,3,4,7],[62,1,1,7,8]]],[2,8,6,8,14,[[114,7,5,8,13],[116,1,1,13,14]]],[3,5,5,14,19,[[130,2,2,14,16],[148,2,2,16,18],[151,1,1,18,19]]],[4,10,9,19,28,[[155,1,1,19,20],[169,2,1,20,21],[172,4,4,21,25],[182,3,3,25,28]]],[5,2,2,28,30,[[187,1,1,28,29],[206,1,1,29,30]]],[6,2,2,30,32,[[217,1,1,30,31],[221,1,1,31,32]]],[7,6,6,32,38,[[232,6,6,32,38]]],[8,8,8,38,46,[[241,2,2,38,40],[242,1,1,40,41],[244,1,1,41,42],[250,1,1,42,43],[261,1,1,43,44],[264,2,2,44,46]]],[9,9,9,46,55,[[268,1,1,46,47],[269,1,1,47,48],[276,1,1,48,49],[278,1,1,49,50],[281,4,4,50,54],[290,1,1,54,55]]],[10,7,7,55,62,[[292,1,1,55,56],[298,1,1,56,57],[302,2,2,57,59],[303,1,1,59,60],[309,1,1,60,61],[312,1,1,61,62]]],[11,4,4,62,66,[[330,1,1,62,63],[331,2,2,63,65],[332,1,1,65,66]]],[12,1,1,66,67,[[356,1,1,66,67]]],[13,9,9,67,76,[[372,2,2,67,69],[376,2,2,69,71],[377,1,1,71,72],[384,2,2,72,74],[396,2,2,74,76]]],[15,3,3,76,79,[[414,1,1,76,77],[416,1,1,77,78],[421,1,1,78,79]]],[16,1,1,79,80,[[434,1,1,79,80]]],[17,11,11,80,91,[[436,1,1,80,81],[441,1,1,81,82],[442,1,1,82,83],[445,1,1,83,84],[450,1,1,84,85],[451,1,1,85,86],[452,1,1,86,87],[457,1,1,87,88],[468,1,1,88,89],[471,1,1,89,90],[474,1,1,90,91]]],[18,9,9,91,100,[[483,1,1,91,92],[484,2,2,92,94],[536,2,2,94,96],[550,1,1,96,97],[551,1,1,97,98],[571,1,1,98,99],[581,1,1,99,100]]],[19,1,1,100,101,[[653,1,1,100,101]]],[20,5,4,101,105,[[659,1,1,101,102],[663,1,1,102,103],[670,3,2,103,105]]],[21,3,1,105,106,[[676,3,1,105,106]]],[22,13,13,106,119,[[684,1,1,106,107],[688,2,2,107,109],[697,1,1,109,110],[699,1,1,110,111],[713,1,1,111,112],[715,2,2,112,114],[722,1,1,114,115],[723,1,1,115,116],[729,1,1,116,117],[733,2,2,117,119]]],[23,41,34,119,153,[[747,2,1,119,120],[748,2,1,120,121],[749,1,1,121,122],[752,2,2,122,124],[756,1,1,124,125],[759,4,2,125,127],[762,1,1,127,128],[766,4,3,128,131],[767,2,2,131,133],[768,1,1,133,134],[774,3,3,134,137],[775,1,1,137,138],[776,1,1,138,139],[777,2,2,139,141],[778,3,3,141,144],[780,2,2,144,146],[781,2,2,146,148],[782,1,1,148,149],[788,4,2,149,151],[790,1,1,151,152],[794,1,1,152,153]]],[25,13,10,153,163,[[808,2,1,153,154],[814,1,1,154,155],[817,3,1,155,156],[819,1,1,156,157],[822,2,2,157,159],[830,1,1,159,160],[847,2,2,160,162],[848,1,1,162,163]]],[26,9,7,163,170,[[859,1,1,163,164],[860,8,6,164,170]]],[27,15,14,170,184,[[863,2,2,170,172],[864,1,1,172,173],[866,1,1,173,174],[867,1,1,174,175],[868,2,2,175,177],[869,1,1,177,178],[870,1,1,178,179],[872,3,2,179,181],[873,1,1,181,182],[875,2,2,182,184]]],[28,3,3,184,187,[[877,1,1,184,185],[878,2,2,185,187]]],[30,1,1,187,188,[[888,1,1,187,188]]],[32,2,2,188,190,[[893,1,1,188,189],[897,1,1,189,190]]],[38,4,3,190,193,[[925,1,1,190,191],[927,3,2,191,193]]]],[74,353,438,886,1619,1620,1622,1884,3479,3482,3496,3497,3510,3594,4111,4112,4736,4740,4873,4995,5380,5432,5433,5434,5435,5710,5711,5716,5866,6378,6697,6860,7133,7134,7135,7137,7142,7143,7335,7339,7355,7396,7586,7926,7974,7978,8075,8097,8245,8309,8408,8409,8416,8423,8705,8803,9033,9175,9177,9200,9402,9497,10038,10068,10094,10108,10912,11306,11320,11401,11404,11418,11558,11568,11833,11836,12313,12371,12528,12859,12890,13007,13018,13107,13225,13260,13270,13412,13675,13746,13838,13995,14002,14011,14796,14804,15030,15069,15446,15600,17168,17322,17412,17525,17530,17627,17782,17871,17872,18026,18047,18330,18359,18386,18555,18584,18684,18747,18751,19003,19028,19061,19157,19158,19264,19322,19334,19395,19464,19465,19481,19498,19504,19531,19670,19677,19691,19699,19775,19782,19801,19812,19817,19823,19845,19849,19881,19894,19921,20024,20038,20072,20175,20590,20730,20817,20872,20949,20974,21197,21664,21672,21685,22035,22045,22046,22049,22064,22065,22066,22112,22114,22133,22167,22168,22188,22194,22207,22211,22245,22249,22266,22283,22289,22325,22347,22350,22525,22586,22636,23093,23127,23138]]],["returned",[144,143,[[0,18,18,0,18,[[7,3,3,0,3],[13,1,1,3,4],[17,1,1,4,5],[20,1,1,5,6],[21,1,1,6,7],[30,1,1,7,8],[31,1,1,8,9],[32,1,1,9,10],[36,2,2,10,12],[37,1,1,12,13],[41,1,1,13,14],[42,2,2,14,16],[43,1,1,16,17],[49,1,1,17,18]]],[1,7,7,18,25,[[53,2,2,18,20],[54,1,1,20,21],[63,2,2,21,23],[81,1,1,23,24],[83,1,1,24,25]]],[2,1,1,25,26,[[111,1,1,25,26]]],[3,5,5,26,31,[[129,1,1,26,27],[130,1,1,27,28],[132,1,1,28,29],[139,1,1,29,30],[140,1,1,30,31]]],[4,1,1,31,32,[[153,1,1,31,32]]],[5,13,13,32,45,[[188,3,3,32,35],[190,1,1,35,36],[192,1,1,36,37],[193,1,1,37,38],[194,1,1,38,39],[196,4,4,39,43],[208,2,2,43,45]]],[6,8,8,45,53,[[212,1,1,45,46],[215,1,1,46,47],[217,2,2,47,49],[218,1,1,49,50],[221,1,1,50,51],[224,1,1,51,52],[231,1,1,52,53]]],[7,2,1,53,54,[[232,2,1,53,54]]],[8,12,12,54,66,[[236,1,1,54,55],[241,2,2,55,57],[252,3,3,57,60],[253,1,1,60,61],[258,1,1,61,62],[259,1,1,62,63],[260,1,1,63,64],[261,1,1,64,65],[262,1,1,65,66]]],[9,18,18,66,84,[[267,2,2,66,68],[268,1,1,68,69],[269,2,2,69,71],[272,1,1,71,72],[274,1,1,72,73],[276,1,1,73,74],[277,1,1,74,75],[278,1,1,75,76],[282,1,1,76,77],[283,2,2,77,79],[284,1,1,79,80],[285,2,2,80,82],[286,1,1,82,83],[289,1,1,83,84]]],[10,3,3,84,87,[[302,1,1,84,85],[303,2,2,85,87]]],[11,11,11,87,98,[[314,1,1,87,88],[315,1,1,88,89],[316,1,1,89,90],[317,1,1,90,91],[319,1,1,91,92],[320,1,1,92,93],[321,1,1,93,94],[326,1,1,94,95],[331,2,2,95,97],[335,1,1,97,98]]],[12,1,1,98,99,[[357,1,1,98,99]]],[13,14,14,99,113,[[376,1,1,99,100],[377,1,1,100,101],[380,1,1,101,102],[385,2,2,102,104],[386,1,1,104,105],[388,1,1,105,106],[391,2,2,106,108],[394,1,1,108,109],[397,1,1,109,110],[398,1,1,110,111],[400,2,2,111,113]]],[15,3,3,113,116,[[414,1,1,113,114],[416,1,1,114,115],[421,1,1,115,116]]],[16,2,2,116,118,[[427,1,1,116,117],[432,1,1,117,118]]],[18,2,2,118,120,[[512,1,1,118,119],[555,1,1,119,120]]],[20,3,3,120,123,[[662,2,2,120,122],[667,1,1,122,123]]],[22,3,3,123,126,[[715,2,2,123,125],[716,1,1,125,126]]],[23,5,5,126,131,[[747,1,1,126,127],[758,1,1,127,128],[784,1,1,128,129],[785,1,1,129,130],[787,1,1,130,131]]],[25,3,3,131,134,[[802,1,1,131,132],[809,1,1,132,133],[848,1,1,133,134]]],[27,1,1,134,135,[[867,1,1,134,135]]],[29,5,5,135,140,[[882,5,5,135,140]]],[37,3,3,140,143,[[911,2,2,140,142],[918,1,1,142,143]]]],[186,192,195,343,457,545,566,928,934,976,1112,1113,1141,1276,1300,1308,1337,1520,1619,1621,1654,1916,1917,2469,2527,3382,4100,4144,4244,4422,4471,4937,5885,5891,5892,5928,5963,5979,6026,6079,6085,6102,6107,6435,6458,6564,6652,6697,6709,6732,6868,6917,7125,7149,7231,7347,7348,7633,7671,7675,7682,7838,7840,7900,7930,7939,8023,8044,8079,8097,8108,8177,8222,8254,8263,8317,8434,8452,8469,8494,8526,8550,8576,8663,9175,9194,9217,9576,9603,9638,9662,9722,9730,9771,9910,10069,10097,10185,10929,11397,11418,11490,11577,11584,11614,11650,11714,11728,11779,11855,11896,11940,11942,12322,12374,12539,12738,12815,14423,15147,17382,17388,17486,18360,18389,18398,19009,19296,19953,19971,20002,20478,20621,21686,22178,22416,22418,22419,22420,22421,22884,22894,22979]]],["returneth",[4,4,[[18,1,1,0,1,[[623,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]],[22,1,1,2,3,[[733,1,1,2,3]]],[25,1,1,3,4,[[836,1,1,3,4]]]],[16345,17152,18750,21351]]],["reverse",[2,2,[[3,1,1,0,1,[[139,1,1,0,1]]],[16,1,1,1,2,[[433,1,1,1,2]]]],[4436,12825]]],["reward",[2,2,[[18,1,1,0,1,[[531,1,1,0,1]]],[27,1,1,1,2,[[865,1,1,1,2]]]],[14730,22142]]],["rewardeth",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16886]]],["set",[1,1,[[8,1,1,0,1,[[240,1,1,0,1]]]],[7322]]],["take",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13069]]],["turn",[60,56,[[1,1,1,0,1,[[63,1,1,0,1]]],[4,3,3,1,4,[[156,1,1,1,2],[165,1,1,2,3],[182,1,1,3,4]]],[5,3,3,4,7,[[208,2,2,4,6],[210,1,1,6,7]]],[10,1,1,7,8,[[298,1,1,7,8]]],[13,4,4,8,12,[[372,2,2,8,10],[373,1,1,10,11],[381,1,1,11,12]]],[15,3,3,12,15,[[413,1,1,12,13],[416,1,1,13,14],[421,1,1,14,15]]],[17,1,1,15,16,[[458,1,1,15,16]]],[18,7,7,16,23,[[484,1,1,16,17],[499,1,1,17,18],[521,1,1,18,19],[533,1,1,19,20],[537,1,1,20,21],[596,1,1,21,22],[609,1,1,22,23]]],[22,3,3,23,26,[[679,1,1,23,24],[701,1,1,24,25],[706,1,1,25,26]]],[23,5,5,26,31,[[746,1,1,26,27],[762,1,1,27,28],[770,1,1,28,29],[775,1,1,29,30],[788,1,1,30,31]]],[25,14,11,31,42,[[804,2,2,31,33],[815,1,1,33,34],[819,3,3,34,37],[834,7,4,37,41],[839,1,1,41,42]]],[26,4,3,42,45,[[858,1,1,42,43],[860,3,2,43,45]]],[27,3,3,45,48,[[866,1,1,45,46],[873,1,1,46,47],[875,1,1,47,48]]],[28,2,2,48,50,[[877,2,2,48,50]]],[29,1,1,50,51,[[879,1,1,50,51]]],[31,2,2,51,53,[[891,2,2,51,53]]],[37,2,2,53,55,[[911,1,1,53,54],[923,1,1,54,55]]],[38,1,1,55,56,[[928,1,1,55,56]]]],[1891,5034,5289,5718,6449,6455,6496,9020,11308,11319,11338,11494,12305,12363,12537,13432,14007,14231,14581,14764,14808,15977,16162,17679,18094,18170,19000,19392,19575,19709,20015,20521,20522,20737,20870,20879,20881,21289,21291,21294,21299,21437,22001,22054,22055,22156,22258,22284,22323,22324,22372,22566,22567,22881,23066,23144]]],["turned",[29,29,[[5,2,2,0,2,[[193,1,1,0,1],[205,1,1,1,2]]],[11,3,3,2,5,[[335,2,2,2,4],[336,1,1,4,5]]],[13,1,1,5,6,[[378,1,1,5,6]]],[14,1,1,6,7,[[412,1,1,6,7]]],[15,1,1,7,8,[[421,1,1,7,8]]],[18,6,6,8,14,[[486,2,2,8,10],[558,1,1,10,11],[562,1,1,11,12],[566,1,1,12,13],[596,1,1,13,14]]],[22,1,1,14,15,[[707,1,1,14,15]]],[23,8,8,15,23,[[747,1,1,15,16],[752,1,1,16,17],[767,1,1,17,18],[775,2,2,18,20],[778,3,3,20,23]]],[24,3,3,23,26,[[797,1,1,23,24],[799,1,1,24,25],[801,1,1,25,26]]],[31,1,1,26,27,[[891,1,1,26,27]]],[37,2,2,27,29,[[915,1,1,27,28],[916,1,1,28,29]]]],[6002,6333,10190,10191,10203,11449,12266,12546,14024,14038,15231,15274,15369,15957,18210,19012,19159,19506,19709,19710,19812,19816,19817,20323,20357,20463,22568,22937,22948]]],["turnest",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,1,1,1,2,[[567,1,1,1,2]]]],[13216,15381]]],["turneth",[9,8,[[5,4,3,0,3,[[205,4,3,0,3]]],[22,2,2,3,5,[[687,1,1,3,4],[722,1,1,4,5]]],[24,1,1,5,6,[[797,1,1,5,6]]],[25,2,2,6,8,[[834,2,2,6,8]]]],[6348,6350,6355,17842,18558,20318,21292,21298]]],["withdraw",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13064]]],["withdrawest",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15059]]],["withdrawn",[2,2,[[24,1,1,0,1,[[798,1,1,0,1]]],[25,1,1,1,2,[[819,1,1,1,2]]]],[20340,20857]]]]},{"k":"H7726","v":[["*",[3,3,[[22,1,1,0,1,[[735,1,1,0,1]]],[23,2,2,1,3,[[747,2,2,1,3]]]],[18782,19016,19024]]],["backsliding",[2,2,[[23,2,2,0,2,[[747,2,2,0,2]]]],[19016,19024]]],["frowardly",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18782]]]]},{"k":"H7727","v":[["Shobab",[4,4,[[9,1,1,0,1,[[271,1,1,0,1]]],[12,3,3,1,4,[[339,1,1,1,2],[340,1,1,2,3],[351,1,1,3,4]]]],[8146,10324,10366,10778]]]]},{"k":"H7728","v":[["*",[3,3,[[23,2,2,0,2,[[775,1,1,0,1],[793,1,1,1,2]]],[32,1,1,2,3,[[894,1,1,2,3]]]],[19713,20131,22599]]],["away",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22599]]],["backsliding",[2,2,[[23,2,2,0,2,[[775,1,1,0,1],[793,1,1,1,2]]]],[19713,20131]]]]},{"k":"H7729","v":[["returning",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18232]]]]},{"k":"H7730","v":[["boughs",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8487]]]]},{"k":"H7731","v":[["Shobach",[2,2,[[9,2,2,0,2,[[276,2,2,0,2]]]],[8256,8258]]]]},{"k":"H7732","v":[["Shobal",[9,9,[[0,3,3,0,3,[[35,3,3,0,3]]],[12,6,6,3,9,[[338,2,2,3,5],[339,2,2,5,7],[341,2,2,7,9]]]],[1060,1063,1069,10290,10292,10356,10358,10386,10387]]]]},{"k":"H7733","v":[["Shobek",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12573]]]]},{"k":"H7734","v":[["turned",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8044]]]]},{"k":"H7735","v":[["grow",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17994]]]]},{"k":"H7736","v":[["wasteth",[1,1,[[18,1,1,0,1,[[568,1,1,0,1]]]],[15401]]]]},{"k":"H7737","v":[["*",[21,21,[[9,1,1,0,1,[[288,1,1,0,1]]],[16,3,3,1,4,[[428,1,1,1,2],[430,1,1,2,3],[432,1,1,3,4]]],[17,1,1,4,5,[[468,1,1,4,5]]],[18,6,6,5,11,[[493,1,1,5,6],[495,1,1,6,7],[498,1,1,7,8],[566,1,1,8,9],[596,1,1,9,10],[608,1,1,10,11]]],[19,4,4,11,15,[[630,1,1,11,12],[635,1,1,12,13],[653,1,1,13,14],[654,1,1,14,15]]],[22,4,4,15,19,[[706,1,1,15,16],[716,1,1,16,17],[718,1,1,17,18],[724,1,1,18,19]]],[24,1,1,19,20,[[798,1,1,19,20]]],[27,1,1,20,21,[[871,1,1,20,21]]]],[8636,12755,12792,12811,13677,14100,14151,14196,15345,15928,16150,16470,16613,17145,17184,18189,18403,18445,18591,20345,22226]]],["alike",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17184]]],["availeth",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12792]]],["behaved",[1,1,[[18,1,1,0,1,[[608,1,1,0,1]]]],[16150]]],["compared",[2,2,[[19,2,2,0,2,[[630,1,1,0,1],[635,1,1,1,2]]]],[16470,16613]]],["countervail",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12811]]],["equal",[3,3,[[22,2,2,0,2,[[718,1,1,0,1],[724,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]]],[18445,18591,20345]]],["forth",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22226]]],["laid",[3,3,[[18,3,3,0,3,[[498,1,1,0,1],[566,1,1,1,2],[596,1,1,2,3]]]],[14196,15345,15928]]],["like",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17145]]],["maketh",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8636,14151]]],["plain",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18189]]],["profit",[1,1,[[16,1,1,0,1,[[428,1,1,0,1]]]],[12755]]],["profited",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13677]]],["reckoned",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18403]]],["set",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14100]]]]},{"k":"H7738","v":[["substance",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13579]]]]},{"k":"H7739","v":[["made",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[854,1,1,1,2]]]],[21836,21895]]]]},{"k":"H7740","v":[["Shaveh",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[353]]]]},{"k":"H7741","v":[["Kiriathaim",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[341]]]]},{"k":"H7742","v":[["meditate",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[654]]]]},{"k":"H7743","v":[["*",[3,3,[[18,1,1,0,1,[[521,1,1,0,1]]],[19,1,1,1,2,[[629,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]]],[14596,16451,20374]]],["down",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14596]]],["humbled",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20374]]],["inclineth",[1,1,[[19,1,1,0,1,[[629,1,1,0,1]]]],[16451]]]]},{"k":"H7744","v":[["Shuah",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[660,10284]]]]},{"k":"H7745","v":[["*",[5,5,[[19,2,2,0,2,[[649,1,1,0,1],[650,1,1,1,2]]],[23,3,3,2,5,[[746,1,1,2,3],[762,2,2,3,5]]]],[17029,17071,18971,19404,19406]]],["ditch",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17071]]],["pit",[3,3,[[19,1,1,0,1,[[649,1,1,0,1]]],[23,2,2,1,3,[[762,2,2,1,3]]]],[17029,19404,19406]]],["pits",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18971]]]]},{"k":"H7746","v":[["Shuah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10396]]]]},{"k":"H7747","v":[["Shuhite",[5,5,[[17,5,5,0,5,[[437,1,1,0,1],[443,1,1,1,2],[453,1,1,2,3],[460,1,1,3,4],[477,1,1,4,5]]]],[12902,13030,13277,13462,13931]]]]},{"k":"H7748","v":[["Shuham",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4531]]]]},{"k":"H7749","v":[["Shuhamites",[2,2,[[3,2,2,0,2,[[142,2,2,0,2]]]],[4531,4532]]]]},{"k":"H7750","v":[["aside",[2,2,[[18,2,2,0,2,[[517,1,1,0,1],[578,1,1,1,2]]]],[14529,15516]]]]},{"k":"H7751","v":[["*",[13,13,[[3,1,1,0,1,[[127,1,1,0,1]]],[9,2,2,1,3,[[290,2,2,1,3]]],[13,1,1,3,4,[[382,1,1,3,4]]],[17,2,2,4,6,[[436,1,1,4,5],[437,1,1,5,6]]],[23,2,2,6,8,[[749,1,1,6,7],[793,1,1,7,8]]],[25,2,2,8,10,[[828,2,2,8,10]]],[26,1,1,10,11,[[861,1,1,10,11]]],[29,1,1,11,12,[[886,1,1,11,12]]],[37,1,1,12,13,[[914,1,1,12,13]]]],[4032,8694,8700,11518,12876,12893,19059,20130,21129,21147,22085,22493,22932]]],["+",[2,2,[[17,2,2,0,2,[[436,1,1,0,1],[437,1,1,1,2]]]],[12876,12893]]],["Go",[1,1,[[9,1,1,0,1,[[290,1,1,0,1]]]],[8694]]],["about",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4032]]],["fro",[6,6,[[13,1,1,0,1,[[382,1,1,0,1]]],[23,2,2,1,3,[[749,1,1,1,2],[793,1,1,2,3]]],[26,1,1,3,4,[[861,1,1,3,4]]],[29,1,1,4,5,[[886,1,1,4,5]]],[37,1,1,5,6,[[914,1,1,5,6]]]],[11518,19059,20130,22085,22493,22932]]],["gone",[1,1,[[9,1,1,0,1,[[290,1,1,0,1]]]],[8700]]],["mariners",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21129]]],["rowers",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21147]]]]},{"k":"H7752","v":[["*",[11,11,[[10,2,2,0,2,[[302,2,2,0,2]]],[13,2,2,2,4,[[376,2,2,2,4]]],[17,2,2,4,6,[[440,1,1,4,5],[444,1,1,5,6]]],[19,1,1,6,7,[[653,1,1,6,7]]],[22,3,3,7,10,[[688,1,1,7,8],[706,2,2,8,10]]],[33,1,1,10,11,[[902,1,1,10,11]]]],[9162,9165,11406,11409,12972,13074,17144,17876,18179,18182,22714]]],["scourge",[5,5,[[17,2,2,0,2,[[440,1,1,0,1],[444,1,1,1,2]]],[22,3,3,2,5,[[688,1,1,2,3],[706,2,2,3,5]]]],[12972,13074,17876,18179,18182]]],["whip",[2,2,[[19,1,1,0,1,[[653,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[17144,22714]]],["whips",[4,4,[[10,2,2,0,2,[[302,2,2,0,2]]],[13,2,2,2,4,[[376,2,2,2,4]]]],[9162,9165,11406,11409]]]]},{"k":"H7753","v":[["*",[3,3,[[17,2,2,0,2,[[436,1,1,0,1],[445,1,1,1,2]]],[27,1,1,2,3,[[863,1,1,2,3]]]],[12879,13097,22111]]],["+",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22111]]],["fenced",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13097]]],["hedge",[1,1,[[17,1,1,0,1,[[436,1,1,0,1]]]],[12879]]]]},{"k":"H7754","v":[["bough",[2,2,[[6,2,2,0,2,[[219,2,2,0,2]]]],[6802,6803]]]]},{"k":"H7755","v":[["*",[8,7,[[5,2,2,0,2,[[201,2,2,0,2]]],[8,2,1,2,3,[[252,2,1,2,3]]],[10,1,1,3,4,[[294,1,1,3,4]]],[12,1,1,4,5,[[341,1,1,4,5]]],[13,2,2,5,7,[[377,1,1,5,6],[394,1,1,6,7]]]],[6237,6250,7619,8854,10403,11421,11782]]],["Shocho",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11782]]],["Shochoh",[2,1,[[8,2,1,0,1,[[252,2,1,0,1]]]],[7619]]],["Shoco",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11421]]],["Socho",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10403]]],["Sochoh",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8854]]],["Socoh",[2,2,[[5,2,2,0,2,[[201,2,2,0,2]]]],[6237,6250]]]]},{"k":"H7756","v":[["Suchathites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10361]]]]},{"k":"H7757","v":[["*",[11,10,[[1,6,5,0,5,[[77,3,2,0,2],[88,3,3,2,5]]],[22,1,1,5,6,[[684,1,1,5,6]]],[23,2,2,6,8,[[757,2,2,6,8]]],[24,1,1,8,9,[[797,1,1,8,9]]],[33,1,1,9,10,[[902,1,1,9,10]]]],[2326,2327,2688,2689,2690,17770,19288,19292,20319,22717]]],["hem",[5,4,[[1,5,4,0,4,[[77,3,2,0,2],[88,2,2,2,4]]]],[2326,2327,2689,2690]]],["hems",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2688]]],["skirts",[4,4,[[23,2,2,0,2,[[757,2,2,0,2]]],[24,1,1,2,3,[[797,1,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[19288,19292,20319,22717]]],["train",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17770]]]]},{"k":"H7758","v":[["*",[3,3,[[17,2,2,0,2,[[447,2,2,0,2]]],[32,1,1,2,3,[[893,1,1,2,3]]]],[13145,13147,22587]]],["spoiled",[2,2,[[17,2,2,0,2,[[447,2,2,0,2]]]],[13145,13147]]],["stripped",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22587]]]]},{"k":"H7759","v":[["Shulamite",[2,1,[[21,2,1,0,1,[[676,2,1,0,1]]]],[17627]]]]},{"k":"H7760","v":[["*",[580,546,[[0,47,45,0,45,[[1,1,1,0,1],[3,1,1,1,2],[5,1,1,2,3],[8,1,1,3,4],[12,1,1,4,5],[20,3,3,5,8],[21,2,2,8,10],[23,4,4,10,14],[26,1,1,14,15],[27,4,3,15,18],[29,3,3,18,21],[30,3,3,21,24],[31,2,2,24,26],[32,1,1,26,27],[36,1,1,27,28],[39,1,1,28,29],[40,1,1,29,30],[42,3,3,30,33],[43,3,3,33,36],[44,3,3,36,39],[45,1,1,39,40],[46,3,3,40,43],[47,3,2,43,45]]],[1,50,47,45,92,[[50,1,1,45,46],[51,3,2,46,48],[52,1,1,48,49],[53,4,3,49,52],[54,2,2,52,54],[57,2,2,54,56],[58,2,2,56,58],[59,1,1,58,59],[63,1,1,59,60],[64,3,2,60,62],[66,2,2,62,64],[67,1,1,64,65],[68,1,1,65,66],[70,2,2,66,68],[71,1,1,68,69],[73,1,1,69,70],[75,1,1,70,71],[77,3,3,71,74],[78,2,2,74,76],[81,1,1,76,77],[82,1,1,77,78],[88,2,2,78,80],[89,12,12,80,92]]],[2,11,10,92,102,[[91,1,1,92,93],[94,1,1,93,94],[95,1,1,94,95],[97,4,3,95,98],[98,1,1,98,99],[99,1,1,99,100],[109,1,1,100,101],[113,1,1,101,102]]],[3,19,19,102,121,[[120,4,4,102,106],[122,2,2,106,108],[127,2,2,108,110],[132,3,3,110,113],[137,2,2,113,115],[138,1,1,115,116],[139,3,3,116,119],[140,2,2,119,121]]],[4,24,22,121,143,[[153,1,1,121,122],[156,1,1,122,123],[159,1,1,123,124],[162,3,3,124,127],[163,1,1,127,128],[164,2,2,128,130],[166,2,2,130,132],[169,4,2,132,134],[174,3,3,134,137],[178,1,1,137,138],[179,1,1,138,139],[183,2,2,139,141],[184,1,1,141,142],[185,1,1,142,143]]],[5,12,11,143,154,[[192,1,1,143,144],[193,2,2,144,146],[194,4,4,146,150],[196,3,2,150,152],[210,2,2,152,154]]],[6,21,20,154,174,[[211,1,1,154,155],[214,1,1,155,156],[216,2,1,156,157],[217,1,1,157,158],[218,2,2,158,160],[219,4,4,160,164],[221,1,1,164,165],[222,1,1,165,166],[225,1,1,166,167],[226,1,1,167,168],[228,3,3,168,171],[229,1,1,171,172],[230,2,2,172,174]]],[7,1,1,174,175,[[234,1,1,174,175]]],[8,35,33,175,208,[[237,1,1,175,176],[241,3,3,176,179],[242,1,1,179,180],[243,4,4,180,184],[244,4,3,184,187],[245,1,1,187,188],[246,2,2,188,190],[250,1,1,190,191],[252,2,2,191,193],[253,2,2,193,195],[254,3,2,195,197],[256,2,2,197,199],[257,2,2,199,201],[260,2,2,201,203],[263,3,3,203,206],[265,1,1,206,207],[266,1,1,207,208]]],[9,20,18,208,226,[[273,2,2,208,210],[274,3,2,210,212],[278,2,2,212,214],[279,3,3,214,217],[280,2,2,217,219],[281,1,1,219,220],[283,1,1,220,221],[284,3,2,221,223],[285,1,1,223,224],[289,2,2,224,226]]],[10,26,22,226,248,[[292,3,3,226,229],[295,1,1,229,230],[298,1,1,230,231],[299,1,1,231,232],[300,1,1,232,233],[301,1,1,233,234],[302,1,1,234,235],[304,1,1,235,236],[308,6,4,236,240],[309,1,1,240,241],[310,7,5,241,246],[311,1,1,246,247],[312,1,1,247,248]]],[11,26,25,248,273,[[314,1,1,248,249],[316,4,4,249,253],[318,1,1,253,254],[320,1,1,254,255],[321,2,2,255,257],[322,5,5,257,262],[323,2,2,262,264],[324,1,1,264,265],[325,2,2,265,267],[329,1,1,267,268],[330,1,1,268,269],[331,1,1,269,270],[332,1,1,270,271],[333,3,2,271,273]]],[12,7,7,273,280,[[347,1,1,273,274],[348,1,1,274,275],[354,2,2,275,277],[355,2,2,277,279],[363,1,1,279,280]]],[13,10,9,280,289,[[367,1,1,280,281],[372,2,2,281,283],[378,1,1,283,284],[384,1,1,284,285],[389,2,2,285,287],[399,3,2,287,289]]],[14,2,2,289,291,[[410,1,1,289,290],[412,1,1,290,291]]],[15,2,2,291,293,[[420,1,1,291,292],[421,1,1,292,293]]],[16,4,4,293,297,[[427,1,1,293,294],[428,1,1,294,295],[433,1,1,295,296],[435,1,1,296,297]]],[17,40,40,297,337,[[436,2,2,297,299],[437,1,1,299,300],[439,2,2,300,302],[440,2,2,302,304],[442,2,2,304,306],[448,2,2,306,308],[452,2,2,308,310],[453,1,1,310,311],[454,1,1,311,312],[455,1,1,312,313],[456,1,1,313,314],[457,1,1,314,315],[458,1,1,315,316],[459,3,3,316,319],[463,1,1,319,320],[464,1,1,320,321],[466,1,1,321,322],[468,1,1,322,323],[469,3,3,323,326],[471,1,1,326,327],[472,1,1,327,328],[473,4,4,328,332],[474,1,1,332,333],[475,1,1,333,334],[476,3,3,334,337]]],[18,36,36,337,373,[[495,1,1,337,338],[496,1,1,338,339],[516,1,1,339,340],[517,1,1,340,341],[521,2,2,341,343],[523,1,1,343,344],[527,1,1,344,345],[529,1,1,345,346],[531,1,1,346,347],[533,1,1,347,348],[543,3,3,348,351],[551,1,1,351,352],[555,3,3,352,355],[556,1,1,355,356],[557,1,1,356,357],[558,1,1,357,358],[562,1,1,358,359],[563,1,1,359,360],[566,3,3,360,363],[568,1,1,363,364],[581,2,2,364,366],[582,2,2,366,368],[584,3,3,368,371],[586,1,1,371,372],[624,1,1,372,373]]],[19,3,3,373,376,[[635,1,1,373,374],[650,1,1,374,375],[657,1,1,375,376]]],[21,3,3,376,379,[[671,1,1,376,377],[676,1,1,377,378],[678,1,1,378,379]]],[22,53,49,379,428,[[681,1,1,379,380],[683,2,1,380,381],[691,1,1,381,382],[692,2,2,382,384],[699,1,1,384,385],[701,1,1,385,386],[703,1,1,386,387],[705,1,1,387,388],[706,3,3,388,391],[715,1,1,391,392],[719,6,5,392,397],[720,5,5,397,402],[721,1,1,402,403],[722,1,1,403,404],[725,2,2,404,406],[727,3,2,406,408],[728,3,3,408,411],[729,5,4,411,415],[731,1,1,415,416],[732,1,1,416,417],[735,4,4,417,421],[737,1,1,421,422],[738,2,2,422,424],[739,1,1,424,425],[740,1,1,425,426],[741,1,1,426,427],[744,1,1,427,428]]],[23,37,35,428,463,[[746,1,1,428,429],[748,1,1,429,430],[749,1,1,430,431],[750,1,1,431,432],[751,1,1,432,433],[753,1,1,433,434],[754,1,1,434,435],[755,1,1,435,436],[756,2,1,436,437],[757,3,3,437,440],[761,1,1,440,441],[762,1,1,441,442],[763,1,1,442,443],[765,1,1,443,444],[768,1,1,444,445],[769,2,2,445,447],[773,1,1,447,448],[775,1,1,448,449],[776,2,2,449,451],[777,1,1,451,452],[782,1,1,452,453],[783,1,1,453,454],[784,2,2,454,456],[786,3,2,456,458],[787,1,1,458,459],[788,2,2,459,461],[793,1,1,461,462],[795,1,1,462,463]]],[24,2,2,463,465,[[799,2,2,463,465]]],[25,40,38,465,503,[[805,2,2,465,467],[806,1,1,467,468],[807,1,1,468,469],[808,1,1,469,470],[812,1,1,470,471],[814,1,1,471,472],[815,3,3,472,475],[816,1,1,475,476],[817,1,1,476,477],[818,2,2,477,479],[820,1,1,479,480],[821,2,2,480,482],[822,6,5,482,487],[824,2,2,487,489],[825,2,2,489,491],[826,1,1,491,492],[827,1,1,492,493],[829,1,1,493,494],[830,1,1,494,495],[831,1,1,495,496],[836,2,2,496,498],[839,1,1,498,499],[840,1,1,499,500],[841,1,1,500,501],[845,3,2,501,503]]],[26,4,3,503,506,[[850,3,2,503,505],[860,1,1,505,506]]],[27,4,4,506,510,[[862,1,1,506,507],[863,2,2,507,509],[872,1,1,509,510]]],[28,1,1,510,511,[[876,1,1,510,511]]],[29,3,3,511,514,[[885,1,1,511,512],[886,1,1,512,513],[887,1,1,513,514]]],[30,2,2,514,516,[[888,2,2,514,516]]],[32,8,7,516,523,[[893,2,2,516,518],[894,1,1,518,519],[896,3,2,519,521],[897,1,1,521,522],[899,1,1,522,523]]],[33,2,2,523,525,[[900,1,1,523,524],[902,1,1,524,525]]],[34,3,3,525,528,[[903,1,1,525,526],[904,1,1,526,527],[905,1,1,527,528]]],[35,2,2,528,530,[[907,1,1,528,529],[908,1,1,529,530]]],[36,7,5,530,535,[[909,2,2,530,532],[910,5,3,532,535]]],[37,10,9,535,544,[[913,2,1,535,536],[916,1,1,536,537],[917,2,2,537,539],[919,1,1,539,540],[920,1,1,540,541],[922,3,3,541,544]]],[38,3,2,544,546,[[925,1,1,544,545],[926,2,1,545,546]]]],[38,94,153,228,334,526,527,531,553,556,593,600,624,638,764,784,791,795,866,871,872,894,907,910,940,944,962,1117,1187,1237,1312,1321,1322,1325,1326,1345,1365,1366,1367,1389,1426,1446,1449,1469,1471,1543,1557,1568,1601,1612,1616,1622,1640,1646,1722,1733,1747,1763,1779,1910,1945,1946,1995,1997,2020,2033,2078,2090,2138,2183,2270,2305,2319,2330,2342,2360,2465,2495,2671,2683,2710,2712,2715,2725,2726,2727,2728,2731,2733,2735,2736,2737,2777,2841,2859,2925,2926,2943,2973,2978,3323,3452,3749,3751,3757,3762,3849,3850,4035,4041,4201,4212,4240,4348,4349,4413,4421,4428,4432,4467,4469,4905,5048,5126,5188,5191,5208,5226,5245,5261,5291,5314,5378,5379,5478,5484,5487,5568,5600,5747,5754,5804,5820,5967,5987,5995,6004,6014,6015,6030,6088,6091,6483,6501,6537,6620,6673,6716,6750,6752,6778,6779,6802,6803,6840,6872,6933,6952,7012,7014,7024,7054,7083,7090,7175,7260,7339,7342,7346,7364,7370,7374,7380,7381,7411,7414,7415,7437,7447,7456,7562,7658,7672,7681,7689,7711,7719,7778,7784,7794,7802,7879,7886,7944,7963,7964,8003,8019,8190,8203,8215,8223,8306,8317,8336,8349,8350,8359,8375,8393,8474,8479,8481,8530,8658,8676,8775,8785,8789,8887,9006,9054,9088,9144,9180,9239,9364,9366,9374,9383,9389,9414,9420,9432,9439,9442,9478,9507,9571,9613,9632,9634,9637,9696,9738,9769,9786,9796,9800,9801,9817,9820,9845,9847,9867,9878,9887,10017,10038,10089,10105,10123,10126,10669,10698,10872,10884,10896,10903,11087,11199,11293,11302,11450,11568,11671,11674,11915,11922,12218,12296,12501,12518,12741,12748,12819,12867,12877,12886,12894,12948,12950,12959,12962,13020,13028,13167,13180,13263,13272,13278,13305,13330,13360,13411,13425,13448,13451,13461,13507,13541,13612,13661,13696,13697,13706,13749,13784,13798,13802,13803,13826,13840,13868,13890,13896,13919,14161,14172,14520,14529,14584,14585,14622,14691,14717,14728,14763,14875,14882,14884,15052,15118,15120,15156,15186,15204,15222,15284,15298,15351,15355,15366,15404,15574,15580,15627,15633,15732,15734,15740,15760,16365,16631,17046,17277,17543,17626,17646,17714,17759,17915,17945,17951,18039,18090,18120,18160,18179,18181,18189,18381,18466,18469,18470,18471,18473,18484,18492,18495,18496,18505,18524,18540,18605,18606,18638,18647,18664,18665,18669,18676,18683,18689,18696,18721,18735,18766,18772,18773,18776,18821,18836,18838,18846,18861,18877,18941,18972,19034,19080,19097,19149,19183,19223,19239,19260,19267,19268,19282,19362,19400,19415,19450,19530,19543,19546,19657,19712,19751,19765,19800,19907,19935,19945,19951,19990,19992,20007,20021,20022,20165,20241,20365,20399,20531,20533,20551,20565,20597,20662,20725,20735,20738,20739,20761,20776,20829,20830,20886,20923,20941,20946,20963,20964,20966,20971,21031,21048,21063,21073,21085,21112,21178,21185,21225,21346,21348,21427,21469,21481,21604,21607,21744,21745,22053,22105,22108,22117,22248,22298,22472,22491,22499,22514,22517,22585,22586,22607,22627,22633,22634,22680,22698,22718,22743,22757,22787,22818,22839,22845,22847,22870,22873,22878,22917,22958,22974,22976,23012,23019,23047,23048,23051,23092,23105]]],["+",[109,100,[[0,9,9,0,9,[[1,1,1,0,1],[12,1,1,1,2],[23,1,1,2,3],[27,1,1,3,4],[29,1,1,4,5],[30,1,1,5,6],[31,1,1,6,7],[32,1,1,7,8],[47,1,1,8,9]]],[1,16,16,9,25,[[51,1,1,9,10],[53,1,1,10,11],[58,1,1,11,12],[63,1,1,12,13],[75,1,1,13,14],[77,1,1,14,15],[89,10,10,15,25]]],[2,5,4,25,29,[[97,3,2,25,27],[98,1,1,27,28],[109,1,1,28,29]]],[3,4,4,29,33,[[120,1,1,29,30],[122,1,1,30,31],[127,1,1,31,32],[140,1,1,32,33]]],[4,5,4,33,37,[[162,1,1,33,34],[163,1,1,34,35],[164,1,1,35,36],[169,2,1,36,37]]],[5,3,2,37,39,[[192,1,1,37,38],[196,2,1,38,39]]],[6,5,5,39,44,[[211,1,1,39,40],[214,1,1,40,41],[217,1,1,41,42],[228,2,2,42,44]]],[8,7,7,44,51,[[241,1,1,44,45],[243,1,1,45,46],[246,1,1,46,47],[254,1,1,47,48],[256,1,1,48,49],[260,1,1,49,50],[266,1,1,50,51]]],[9,4,3,51,54,[[280,2,2,51,53],[284,2,1,53,54]]],[10,3,3,54,57,[[302,1,1,54,55],[304,1,1,55,56],[312,1,1,56,57]]],[11,7,6,57,63,[[316,1,1,57,58],[321,1,1,58,59],[322,1,1,59,60],[329,1,1,60,61],[333,3,2,61,63]]],[12,1,1,63,64,[[347,1,1,63,64]]],[13,4,3,64,67,[[372,1,1,64,65],[378,1,1,65,66],[399,2,1,66,67]]],[14,1,1,67,68,[[410,1,1,67,68]]],[16,2,2,68,70,[[428,1,1,68,69],[433,1,1,69,70]]],[17,4,4,70,74,[[436,1,1,70,71],[437,1,1,71,72],[459,1,1,72,73],[472,1,1,73,74]]],[18,2,2,74,76,[[556,1,1,74,75],[586,1,1,75,76]]],[22,4,4,76,80,[[719,1,1,76,77],[722,1,1,77,78],[740,1,1,78,79],[741,1,1,79,80]]],[23,8,7,80,87,[[754,1,1,80,81],[763,1,1,81,82],[783,1,1,82,83],[784,1,1,83,84],[786,3,2,84,86],[795,1,1,86,87]]],[25,4,3,87,90,[[805,1,1,87,88],[816,1,1,88,89],[845,2,1,89,90]]],[32,1,1,90,91,[[896,1,1,90,91]]],[35,1,1,91,92,[[907,1,1,91,92]]],[36,5,4,92,96,[[909,2,2,92,94],[910,3,2,94,96]]],[37,3,3,96,99,[[922,3,3,96,99]]],[38,1,1,99,100,[[925,1,1,99,100]]]],[38,334,600,791,871,894,940,962,1471,1557,1616,1763,1910,2270,2305,2712,2715,2725,2726,2727,2728,2731,2733,2735,2737,2925,2926,2973,3323,3751,3850,4035,4469,5191,5226,5245,5379,5967,6088,6537,6620,6716,7014,7024,7342,7370,7456,7711,7784,7886,8019,8359,8375,8481,9180,9239,9507,9634,9786,9800,10017,10123,10126,10669,11293,11450,11915,12218,12748,12819,12877,12894,13451,13784,15186,15760,18473,18540,18861,18877,19223,19415,19935,19945,19990,19992,20241,20533,20761,21604,22627,22818,22845,22847,22870,22873,23047,23048,23051,23092]]],["Appoint",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20964]]],["Lay",[2,2,[[11,1,1,0,1,[[322,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]]],[9801,13896]]],["Put",[4,4,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,1,1,1,2,[[81,1,1,1,2]]],[13,1,1,2,3,[[384,1,1,2,3]]],[23,1,1,3,4,[[782,1,1,3,4]]]],[593,2465,11568,19907]]],["Set",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[8,1,1,1,2,[[244,1,1,1,2]]],[10,1,1,2,3,[[310,1,1,2,3]]],[21,1,1,3,4,[[678,1,1,3,4]]]],[5804,7414,9420,17646]]],["appoint",[10,9,[[1,1,1,0,1,[[70,1,1,0,1]]],[3,1,1,1,2,[[120,1,1,1,2]]],[8,2,2,2,4,[[243,2,2,2,4]]],[9,1,1,4,5,[[273,1,1,4,5]]],[22,1,1,5,6,[[739,1,1,5,6]]],[25,3,2,6,8,[[822,3,2,6,8]]],[27,1,1,8,9,[[862,1,1,8,9]]]],[2090,3762,7380,7381,8190,18846,20963,20966,22105]]],["appointed",[7,7,[[1,1,1,0,1,[[58,1,1,0,1]]],[11,3,3,1,4,[[322,1,1,1,2],[323,1,1,2,3],[330,1,1,3,4]]],[13,1,1,4,5,[[389,1,1,4,5]]],[18,1,1,5,6,[[555,1,1,5,6]]],[23,1,1,6,7,[[777,1,1,6,7]]]],[1747,9817,9847,10038,11674,15118,19800]]],["bring",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5478]]],["brought",[4,4,[[1,2,2,0,2,[[57,1,1,0,1],[64,1,1,1,2]]],[18,1,1,2,3,[[566,1,1,2,3]]],[22,1,1,3,4,[[701,1,1,3,4]]]],[1722,1946,15366,18090]]],["called",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6750]]],["cast",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18189]]],["change",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13272]]],["charged",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12948]]],["commit",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12959]]],["consider",[2,2,[[6,1,1,0,1,[[229,1,1,0,1]]],[22,1,1,1,2,[[719,1,1,1,2]]]],[7054,18471]]],["convey",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8887]]],["determined",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8349]]],["disposed",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13696]]],["done",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1779]]],["down",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13263]]],["gave",[4,3,[[15,1,1,0,1,[[420,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]],[26,2,1,2,3,[[850,2,1,2,3]]]],[12501,16631,21744]]],["gavest",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12518]]],["get",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22839]]],["give",[5,5,[[3,1,1,0,1,[[122,1,1,0,1]]],[4,1,1,1,2,[[174,1,1,1,2]]],[5,1,1,2,3,[[193,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[22,1,1,4,5,[[720,1,1,4,5]]]],[3849,5484,5995,7260,18492]]],["given",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5487]]],["had",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12296]]],["holdeth",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14882]]],["impute",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7802]]],["laid",[30,30,[[0,3,3,0,3,[[8,1,1,0,1],[21,2,2,1,3]]],[1,2,2,3,5,[[51,1,1,3,4],[68,1,1,4,5]]],[3,1,1,5,6,[[132,1,1,5,6]]],[5,1,1,6,7,[[196,1,1,6,7]]],[6,2,2,7,9,[[219,2,2,7,9]]],[8,3,3,9,12,[[250,1,1,9,10],[254,1,1,10,11],[260,1,1,11,12]]],[9,1,1,12,13,[[279,1,1,12,13]]],[10,1,1,13,14,[[308,1,1,13,14]]],[11,2,2,14,16,[[323,1,1,14,15],[332,1,1,15,16]]],[13,1,1,16,17,[[389,1,1,16,17]]],[16,1,1,17,18,[[435,1,1,17,18]]],[17,2,2,18,20,[[464,1,1,18,19],[473,1,1,19,20]]],[22,3,3,20,23,[[720,1,1,20,21],[729,1,1,21,22],[735,1,1,22,23]]],[25,2,2,23,25,[[812,1,1,23,24],[840,1,1,24,25]]],[28,1,1,25,26,[[876,1,1,25,26]]],[30,1,1,26,27,[[888,1,1,26,27]]],[32,1,1,27,28,[[897,1,1,27,28]]],[36,1,1,28,29,[[910,1,1,28,29]]],[37,1,1,29,30,[[917,1,1,29,30]]]],[228,553,556,1557,2033,4212,6091,6778,6802,7562,7719,7879,8336,9374,9845,10105,11671,12867,13541,13798,18505,18696,18776,20662,21469,22298,22517,22634,22870,22976]]],["laidst",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14884]]],["lay",[20,19,[[1,2,2,0,2,[[54,1,1,0,1],[71,1,1,1,2]]],[2,1,1,2,3,[[91,1,1,2,3]]],[5,1,1,3,4,[[194,1,1,3,4]]],[6,1,1,4,5,[[228,1,1,4,5]]],[8,1,1,5,6,[[246,1,1,5,6]]],[10,1,1,6,7,[[308,1,1,6,7]]],[11,1,1,7,8,[[316,1,1,7,8]]],[17,3,3,8,11,[[456,1,1,8,9],[469,1,1,9,10],[475,1,1,10,11]]],[22,3,3,11,14,[[691,1,1,11,12],[706,1,1,12,13],[725,1,1,13,14]]],[25,2,2,14,16,[[827,1,1,14,15],[836,1,1,15,16]]],[32,2,2,16,18,[[893,1,1,16,17],[899,1,1,17,18]]],[38,2,1,18,19,[[926,2,1,18,19]]]],[1640,2138,2777,6004,7012,7447,9364,9632,13360,13706,13868,17915,18181,18606,21112,21348,22586,22680,23105]]],["layeth",[4,4,[[17,1,1,0,1,[[459,1,1,0,1]]],[22,1,1,1,2,[[735,1,1,1,2]]],[23,2,2,2,4,[[753,1,1,2,3],[756,1,1,3,4]]]],[13448,18766,19183,19260]]],["made",[47,46,[[0,4,4,0,4,[[26,1,1,0,1],[44,2,2,1,3],[46,1,1,3,4]]],[1,3,3,4,7,[[51,1,1,4,5],[53,1,1,5,6],[64,1,1,6,7]]],[4,1,1,7,8,[[162,1,1,7,8]]],[5,1,1,8,9,[[194,1,1,8,9]]],[6,2,2,9,11,[[218,1,1,9,10],[221,1,1,10,11]]],[8,2,2,11,13,[[253,1,1,11,12],[265,1,1,12,13]]],[9,3,3,13,16,[[281,1,1,13,14],[283,1,1,14,15],[289,1,1,15,16]]],[10,2,2,16,18,[[300,1,1,16,17],[310,1,1,17,18]]],[11,2,2,18,20,[[322,1,1,18,19],[325,1,1,19,20]]],[12,1,1,20,21,[[363,1,1,20,21]]],[17,4,4,21,25,[[436,1,1,21,22],[466,1,1,22,23],[473,1,1,23,24],[474,1,1,24,25]]],[18,5,5,25,30,[[495,1,1,25,26],[523,1,1,26,27],[529,1,1,27,28],[568,1,1,28,29],[582,1,1,29,30]]],[21,2,2,30,32,[[671,1,1,30,31],[676,1,1,31,32]]],[22,6,5,32,37,[[692,1,1,32,33],[703,1,1,33,34],[706,1,1,34,35],[727,2,1,35,36],[729,1,1,36,37]]],[23,2,2,37,39,[[746,1,1,37,38],[756,1,1,38,39]]],[24,2,2,39,41,[[799,2,2,39,41]]],[25,2,2,41,43,[[820,1,1,41,42],[821,1,1,42,43]]],[37,3,3,43,46,[[917,1,1,43,44],[919,1,1,44,45],[920,1,1,45,46]]]],[764,1366,1367,1446,1568,1612,1945,5208,6030,6752,6840,7689,8003,8393,8474,8658,9088,9442,9820,9878,11087,12886,13612,13802,13840,14161,14622,14717,15404,15627,17543,17626,17945,18120,18179,18638,18683,18972,19260,20365,20399,20886,20923,22974,23012,23019]]],["make",[53,51,[[0,5,5,0,5,[[20,2,2,0,2],[45,1,1,2,3],[46,1,1,3,4],[47,1,1,4,5]]],[4,2,2,5,7,[[153,1,1,5,6],[166,1,1,6,7]]],[8,3,3,7,10,[[243,1,1,7,8],[257,1,1,8,9],[263,1,1,9,10]]],[9,1,1,10,11,[[273,1,1,10,11]]],[10,2,2,11,13,[[309,1,1,11,12],[310,1,1,12,13]]],[12,1,1,13,14,[[354,1,1,13,14]]],[17,2,2,14,16,[[453,1,1,14,15],[459,1,1,15,16]]],[18,3,3,16,19,[[516,1,1,16,17],[543,1,1,17,18],[566,1,1,18,19]]],[19,1,1,19,20,[[657,1,1,19,20]]],[22,16,15,20,35,[[681,1,1,20,21],[692,1,1,21,22],[719,3,2,22,24],[720,2,2,24,26],[721,1,1,26,27],[727,1,1,27,28],[728,2,2,28,30],[729,1,1,30,31],[731,1,1,31,32],[732,1,1,32,33],[738,2,2,33,35]]],[23,7,7,35,42,[[748,1,1,35,36],[750,1,1,36,37],[762,1,1,37,38],[769,2,2,38,40],[773,1,1,40,41],[775,1,1,41,42]]],[25,1,1,42,43,[[815,1,1,42,43]]],[27,2,2,43,45,[[863,2,2,43,45]]],[29,1,1,45,46,[[886,1,1,45,46]]],[32,3,2,46,48,[[893,1,1,46,47],[896,2,1,47,48]]],[33,1,1,48,49,[[900,1,1,48,49]]],[34,1,1,49,50,[[905,1,1,49,50]]],[36,1,1,50,51,[[910,1,1,50,51]]]],[526,531,1389,1426,1471,4905,5291,7374,7794,7944,8203,9389,9442,10884,13278,13461,14520,14875,15355,17277,17714,17951,18466,18469,18495,18496,18524,18647,18664,18665,18676,18721,18735,18836,18838,19034,19097,19400,19543,19546,19657,19712,20739,22108,22117,22491,22585,22633,22698,22787,22878]]],["makest",[3,3,[[18,3,3,0,3,[[521,2,2,0,2],[557,1,1,2,3]]]],[14584,14585,15204]]],["maketh",[8,8,[[1,1,1,0,1,[[53,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[18,4,4,2,6,[[517,1,1,2,3],[581,1,1,3,4],[584,1,1,4,5],[624,1,1,5,6]]],[22,1,1,6,7,[[705,1,1,6,7]]],[23,1,1,7,8,[[761,1,1,7,8]]]],[1612,13919,14529,15574,15740,16365,18160,19362]]],["on",[4,4,[[0,2,2,0,2,[[42,2,2,0,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[25,1,1,3,4,[[825,1,1,3,4]]]],[1321,1322,4240,21073]]],["ordain",[1,1,[[12,1,1,0,1,[[354,1,1,0,1]]]],[10872]]],["ordained",[2,2,[[18,1,1,0,1,[[558,1,1,0,1]]],[34,1,1,1,2,[[903,1,1,1,2]]]],[15222,22743]]],["ordereth",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14691]]],["place",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2020]]],["placed",[2,2,[[17,1,1,0,1,[[455,1,1,0,1]]],[23,1,1,1,2,[[749,1,1,1,2]]]],[13330,19080]]],["preserve",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1365]]],["purposed",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21745]]],["put",[105,101,[[0,14,14,0,14,[[23,1,1,0,1],[27,2,2,1,3],[29,1,1,3,4],[30,1,1,4,5],[31,1,1,5,6],[36,1,1,6,7],[39,1,1,7,8],[40,1,1,8,9],[42,1,1,9,10],[43,2,2,10,12],[46,1,1,12,13],[47,1,1,13,14]]],[1,15,15,14,29,[[52,1,1,14,15],[53,1,1,15,16],[57,1,1,16,17],[64,1,1,17,18],[66,1,1,18,19],[73,1,1,19,20],[77,2,2,20,22],[78,2,2,22,24],[82,1,1,24,25],[88,2,2,25,27],[89,2,2,27,29]]],[2,4,4,29,33,[[94,1,1,29,30],[95,1,1,30,31],[97,1,1,31,32],[99,1,1,32,33]]],[3,8,8,33,41,[[120,2,2,33,35],[127,1,1,35,36],[132,1,1,36,37],[137,1,1,37,38],[139,3,3,38,41]]],[4,7,7,41,48,[[159,1,1,41,42],[162,1,1,42,43],[164,1,1,43,44],[178,1,1,44,45],[183,2,2,45,47],[185,1,1,47,48]]],[5,2,2,48,50,[[193,1,1,48,49],[210,1,1,49,50]]],[6,6,5,50,55,[[216,2,1,50,51],[219,1,1,51,52],[222,1,1,52,53],[225,1,1,53,54],[226,1,1,54,55]]],[7,1,1,55,56,[[234,1,1,55,56]]],[8,7,7,56,63,[[241,2,2,56,58],[252,2,2,58,60],[254,1,1,60,61],[256,1,1,61,62],[263,1,1,62,63]]],[9,4,3,63,66,[[274,3,2,63,65],[278,1,1,65,66]]],[10,10,9,66,75,[[299,1,1,66,67],[301,1,1,67,68],[308,4,3,68,71],[310,3,3,71,74],[311,1,1,74,75]]],[11,5,5,75,80,[[314,1,1,75,76],[316,1,1,76,77],[321,1,1,77,78],[325,1,1,78,79],[331,1,1,79,80]]],[12,2,2,80,82,[[355,2,2,80,82]]],[13,3,3,82,85,[[367,1,1,82,83],[372,1,1,83,84],[399,1,1,84,85]]],[17,3,3,85,88,[[448,1,1,85,86],[458,1,1,86,87],[476,1,1,87,88]]],[18,1,1,88,89,[[533,1,1,88,89]]],[19,1,1,89,90,[[650,1,1,89,90]]],[22,6,5,90,95,[[683,2,1,90,91],[715,1,1,91,92],[729,2,2,92,94],[737,1,1,94,95]]],[23,3,3,95,98,[[757,2,2,95,97],[784,1,1,97,98]]],[25,2,2,98,100,[[817,1,1,98,99],[831,1,1,99,100]]],[32,1,1,100,101,[[894,1,1,100,101]]]],[638,784,791,872,907,944,1117,1187,1237,1312,1325,1326,1449,1469,1601,1622,1733,1946,1995,2183,2319,2330,2342,2360,2495,2671,2683,2710,2736,2841,2859,2943,2978,3749,3757,4041,4201,4349,4421,4428,4432,5126,5188,5261,5568,5747,5754,5820,5987,6483,6673,6803,6872,6933,6952,7175,7339,7346,7658,7672,7719,7778,7963,8215,8223,8317,9054,9144,9364,9366,9383,9414,9432,9439,9478,9571,9637,9769,9887,10089,10896,10903,11199,11302,11922,13167,13425,13890,14763,17046,17759,18381,18689,18696,18821,19267,19268,19951,20776,21225,22607]]],["puttest",[2,2,[[3,1,1,0,1,[[140,1,1,0,1]]],[17,1,1,1,2,[[448,1,1,1,2]]]],[4467,13180]]],["putteth",[5,5,[[3,1,1,0,1,[[138,1,1,0,1]]],[4,1,1,1,2,[[179,1,1,1,2]]],[17,1,1,2,3,[[468,1,1,2,3]]],[25,2,2,3,5,[[815,2,2,3,5]]]],[4413,5600,13661,20735,20738]]],["putting",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[527]]],["regarding",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12950]]],["rehearse",[1,1,[[1,1,1,0,1,[[66,1,1,0,1]]]],[1997]]],["set",[97,95,[[0,7,7,0,7,[[3,1,1,0,1],[5,1,1,1,2],[23,1,1,2,3],[27,1,1,3,4],[29,1,1,4,5],[30,1,1,5,6],[43,1,1,6,7]]],[1,3,3,7,10,[[50,1,1,7,8],[54,1,1,8,9],[70,1,1,9,10]]],[2,1,1,10,11,[[113,1,1,10,11]]],[3,1,1,11,12,[[137,1,1,11,12]]],[4,4,4,12,16,[[156,1,1,12,13],[166,1,1,13,14],[169,2,2,14,16]]],[5,3,3,16,19,[[194,2,2,16,18],[210,1,1,18,19]]],[6,3,3,19,22,[[219,1,1,19,20],[230,2,2,20,22]]],[8,7,6,22,28,[[242,1,1,22,23],[244,3,2,23,25],[245,1,1,25,26],[253,1,1,26,27],[263,1,1,27,28]]],[9,3,3,28,31,[[278,1,1,28,29],[284,1,1,29,30],[289,1,1,30,31]]],[10,4,4,31,35,[[292,2,2,31,33],[298,1,1,33,34],[310,1,1,34,35]]],[11,4,4,35,39,[[316,1,1,35,36],[318,1,1,36,37],[322,1,1,37,38],[324,1,1,38,39]]],[12,1,1,39,40,[[348,1,1,39,40]]],[16,1,1,40,41,[[427,1,1,40,41]]],[17,5,5,41,46,[[442,1,1,41,42],[454,1,1,42,43],[469,1,1,43,44],[473,2,2,44,46]]],[18,7,7,46,53,[[496,1,1,46,47],[531,1,1,47,48],[555,1,1,48,49],[562,1,1,49,50],[563,1,1,50,51],[566,1,1,51,52],[581,1,1,52,53]]],[22,5,5,53,58,[[719,1,1,53,54],[720,1,1,54,55],[728,1,1,55,56],[735,1,1,56,57],[744,1,1,57,58]]],[23,9,9,58,67,[[751,1,1,58,59],[765,1,1,59,60],[768,1,1,60,61],[776,2,2,61,63],[787,1,1,63,64],[788,2,2,64,66],[793,1,1,66,67]]],[25,19,19,67,86,[[805,1,1,67,68],[806,1,1,68,69],[807,1,1,69,70],[808,1,1,70,71],[814,1,1,71,72],[818,2,2,72,74],[821,1,1,74,75],[822,1,1,75,76],[824,2,2,76,78],[825,1,1,78,79],[826,1,1,79,80],[829,1,1,80,81],[830,1,1,81,82],[836,1,1,82,83],[839,1,1,83,84],[841,1,1,84,85],[845,1,1,85,86]]],[26,1,1,86,87,[[860,1,1,86,87]]],[27,1,1,87,88,[[872,1,1,87,88]]],[29,2,2,88,90,[[885,1,1,88,89],[887,1,1,89,90]]],[30,1,1,90,91,[[888,1,1,90,91]]],[33,1,1,91,92,[[902,1,1,91,92]]],[34,1,1,92,93,[[904,1,1,92,93]]],[37,3,2,93,95,[[913,2,1,93,94],[916,1,1,94,95]]]],[94,153,624,795,866,910,1345,1543,1646,2078,3452,4348,5048,5314,5378,5379,6014,6015,6501,6779,7083,7090,7364,7411,7415,7437,7681,7964,8306,8479,8676,8785,8789,9006,9420,9613,9696,9796,9867,10698,12741,13028,13305,13697,13803,13826,14172,14728,15120,15284,15298,15351,15580,18470,18484,18669,18772,18941,19149,19450,19530,19751,19765,20007,20021,20022,20165,20531,20551,20565,20597,20725,20829,20830,20941,20946,21031,21048,21063,21085,21178,21185,21346,21427,21481,21607,22053,22248,22472,22499,22514,22718,22757,22917,22958]]],["settest",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13020]]],["setteth",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13507]]],["shed",[1,1,[[10,1,1,0,1,[[292,1,1,0,1]]]],[8775]]],["shew",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18605]]],["shewed",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15633]]],["stedfastly",[1,1,[[11,1,1,0,1,[[320,1,1,0,1]]]],[9738]]],["take",[2,2,[[9,2,2,0,2,[[279,1,1,0,1],[285,1,1,1,2]]]],[8350,8530]]],["turn",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19282]]],["turned",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18039]]],["turneth",[2,2,[[18,2,2,0,2,[[584,2,2,0,2]]]],[15732,15734]]],["up",[6,6,[[17,3,3,0,3,[[440,1,1,0,1],[457,1,1,1,2],[471,1,1,2,3]]],[18,1,1,3,4,[[551,1,1,3,4]]],[22,1,1,4,5,[[735,1,1,4,5]]],[23,1,1,5,6,[[755,1,1,5,6]]]],[12962,13411,13749,15052,18773,19239]]],["will",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20971]]],["wrought",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15156]]]]},{"k":"H7761","v":[["*",[26,25,[[14,16,15,0,15,[[406,3,2,0,2],[407,6,6,2,8],[408,5,5,8,13],[409,2,2,13,15]]],[26,10,10,15,25,[[851,1,1,15,16],[852,3,3,16,19],[853,1,1,19,20],[854,1,1,20,21],[855,4,4,21,25]]]],[12129,12131,12137,12142,12143,12147,12148,12151,12152,12154,12159,12162,12163,12186,12194,21763,21817,21819,21836,21843,21886,21918,21919,21922,21931]]],["+",[9,9,[[14,3,3,0,3,[[406,1,1,0,1],[407,2,2,1,3]]],[26,6,6,3,9,[[852,2,2,3,5],[853,1,1,5,6],[854,1,1,6,7],[855,2,2,7,9]]]],[12129,12137,12143,21819,21836,21843,21886,21918,21931]]],["Give",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12131]]],["given",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12131]]],["laid",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[855,1,1,1,2]]]],[12142,21922]]],["made",[9,9,[[14,7,7,0,7,[[407,3,3,0,3],[408,4,4,3,7]]],[26,2,2,7,9,[[851,1,1,7,8],[852,1,1,8,9]]]],[12147,12148,12151,12152,12154,12162,12163,21763,21817]]],["make",[3,3,[[14,3,3,0,3,[[408,1,1,0,1],[409,2,2,1,3]]]],[12159,12186,12194]]],["set",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21919]]]]},{"k":"H7762","v":[["garlick",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4029]]]]},{"k":"H7763","v":[["Shomer",[2,2,[[11,1,1,0,1,[[324,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]]],[9871,10567]]]]},{"k":"H7764","v":[["Shuni",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1402,4504]]]]},{"k":"H7765","v":[["Shunites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4504]]]]},{"k":"H7766","v":[["Shunem",[3,3,[[5,1,1,0,1,[[205,1,1,0,1]]],[8,1,1,1,2,[[263,1,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]]],[6339,7946,9611]]]]},{"k":"H7767","v":[["Shunammite",[8,8,[[10,5,5,0,5,[[291,2,2,0,2],[292,3,3,2,5]]],[11,3,3,5,8,[[316,3,3,5,8]]]],[8720,8732,8787,8791,8792,9615,9628,9639]]]]},{"k":"H7768","v":[["*",[21,21,[[17,8,8,0,8,[[454,1,1,0,1],[459,1,1,1,2],[464,1,1,2,3],[465,2,2,3,5],[470,1,1,5,6],[471,1,1,6,7],[473,1,1,7,8]]],[18,9,9,8,17,[[495,2,2,8,10],[499,1,1,10,11],[505,1,1,11,12],[507,1,1,12,13],[508,1,1,13,14],[549,1,1,14,15],[565,1,1,15,16],[596,1,1,16,17]]],[22,1,1,17,18,[[736,1,1,17,18]]],[24,1,1,18,19,[[799,1,1,18,19]]],[31,1,1,19,20,[[890,1,1,19,20]]],[34,1,1,20,21,[[903,1,1,20,21]]]],[13304,13448,13544,13577,13585,13729,13749,13834,14124,14159,14228,14301,14321,14353,15012,15321,16045,18795,20362,22550,22733]]],["aloud",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13304]]],["cried",[10,10,[[17,2,2,0,2,[[464,1,1,0,1],[465,1,1,1,2]]],[18,7,7,2,9,[[495,2,2,2,4],[499,1,1,4,5],[507,1,1,5,6],[508,1,1,6,7],[565,1,1,7,8],[596,1,1,8,9]]],[31,1,1,9,10,[[890,1,1,9,10]]]],[13544,13585,14124,14159,14228,14321,14353,15321,16045,22550]]],["crieth",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15012]]],["cry",[6,6,[[17,3,3,0,3,[[465,1,1,0,1],[471,1,1,1,2],[473,1,1,2,3]]],[18,1,1,3,4,[[505,1,1,3,4]]],[22,1,1,4,5,[[736,1,1,4,5]]],[34,1,1,5,6,[[903,1,1,5,6]]]],[13577,13749,13834,14301,18795,22733]]],["out",[2,2,[[17,2,2,0,2,[[459,1,1,0,1],[470,1,1,1,2]]]],[13448,13729]]],["shout",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20362]]]]},{"k":"H7769","v":[["*",[2,2,[[17,2,2,0,2,[[465,1,1,0,1],[471,1,1,1,2]]]],[13581,13755]]],["cry",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13581]]],["riches",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13755]]]]},{"k":"H7770","v":[["*",[3,3,[[0,2,2,0,2,[[37,2,2,0,2]]],[12,1,1,2,3,[[339,1,1,2,3]]]],[1121,1131,10309]]],["Shua",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10309]]],["Shuah",[2,2,[[0,2,2,0,2,[[37,2,2,0,2]]]],[1121,1131]]]]},{"k":"H7771","v":[["*",[3,3,[[17,1,1,0,1,[[469,1,1,0,1]]],[22,2,2,1,3,[[700,1,1,1,2],[710,1,1,2,3]]]],[13702,18057,18264]]],["bountiful",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18264]]],["crying",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18057]]],["rich",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13702]]]]},{"k":"H7772","v":[["Shoa",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21030]]]]},{"k":"H7773","v":[["cry",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13975]]]]},{"k":"H7774","v":[["Shua",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10567]]]]},{"k":"H7775","v":[["cry",[11,11,[[1,1,1,0,1,[[51,1,1,0,1]]],[8,1,1,1,2,[[240,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[18,6,6,3,9,[[495,1,1,3,4],[511,1,1,4,5],[516,1,1,5,6],[517,1,1,6,7],[579,1,1,7,8],[622,1,1,8,9]]],[23,1,1,9,10,[[752,1,1,9,10]]],[24,1,1,10,11,[[799,1,1,10,11]]]],[1577,7331,8609,14124,14403,14524,14526,15522,16339,19172,20410]]]]},{"k":"H7776","v":[["*",[7,6,[[6,1,1,0,1,[[225,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]],[18,1,1,2,3,[[540,1,1,2,3]]],[21,2,1,3,4,[[672,2,1,3,4]]],[24,1,1,4,5,[[801,1,1,4,5]]],[25,1,1,5,6,[[814,1,1,5,6]]]],[6933,12362,14849,17569,20460,20712]]],["fox",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12362]]],["foxes",[6,5,[[6,1,1,0,1,[[225,1,1,0,1]]],[18,1,1,1,2,[[540,1,1,1,2]]],[21,2,1,2,3,[[672,2,1,2,3]]],[24,1,1,3,4,[[801,1,1,3,4]]],[25,1,1,4,5,[[814,1,1,4,5]]]],[6933,14849,17569,20460,20712]]]]},{"k":"H7777","v":[["Shual",[2,2,[[8,1,1,0,1,[[248,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]]],[7502,10571]]]]},{"k":"H7778","v":[["*",[37,37,[[9,1,1,0,1,[[284,1,1,0,1]]],[11,2,2,1,3,[[319,2,2,1,3]]],[12,14,14,3,17,[[346,6,6,3,9],[352,3,3,9,12],[353,1,1,12,13],[360,1,1,13,14],[363,3,3,14,17]]],[13,6,6,17,23,[[374,1,1,17,18],[389,2,2,18,20],[397,1,1,20,21],[400,1,1,21,22],[401,1,1,22,23]]],[14,4,4,23,27,[[404,2,2,23,25],[409,1,1,25,26],[412,1,1,26,27]]],[15,10,10,27,37,[[419,3,3,27,30],[422,2,2,30,32],[423,1,1,32,33],[424,3,3,33,36],[425,1,1,36,37]]]],[8504,9717,9718,10632,10633,10636,10637,10639,10641,10809,10814,10815,10858,10988,11078,11089,11096,11360,11660,11675,11868,11946,11981,12069,12097,12180,12276,12421,12465,12493,12577,12588,12607,12649,12669,12671,12676]]],["doorkeepers",[2,2,[[12,2,2,0,2,[[352,2,2,0,2]]]],[10814,10815]]],["porter",[4,4,[[9,1,1,0,1,[[284,1,1,0,1]]],[11,1,1,1,2,[[319,1,1,1,2]]],[12,1,1,2,3,[[346,1,1,2,3]]],[13,1,1,3,4,[[397,1,1,3,4]]]],[8504,9717,10636,11868]]],["porters",[31,31,[[11,1,1,0,1,[[319,1,1,0,1]]],[12,11,11,1,12,[[346,5,5,1,6],[352,1,1,6,7],[353,1,1,7,8],[360,1,1,8,9],[363,3,3,9,12]]],[13,5,5,12,17,[[374,1,1,12,13],[389,2,2,13,15],[400,1,1,15,16],[401,1,1,16,17]]],[14,4,4,17,21,[[404,2,2,17,19],[409,1,1,19,20],[412,1,1,20,21]]],[15,10,10,21,31,[[419,3,3,21,24],[422,2,2,24,26],[423,1,1,26,27],[424,3,3,27,30],[425,1,1,30,31]]]],[9718,10632,10633,10637,10639,10641,10809,10858,10988,11078,11089,11096,11360,11660,11675,11946,11981,12069,12097,12180,12276,12421,12465,12493,12577,12588,12607,12649,12669,12671,12676]]]]},{"k":"H7779","v":[["*",[4,3,[[0,2,1,0,1,[[2,2,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]],[18,1,1,2,3,[[616,1,1,2,3]]]],[70,13068,16250]]],["breaketh",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13068]]],["bruise",[2,1,[[0,2,1,0,1,[[2,2,1,0,1]]]],[70]]],["cover",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16250]]]]},{"k":"H7780","v":[["Shophach",[2,2,[[12,2,2,0,2,[[356,2,2,0,2]]]],[10923,10925]]]]},{"k":"H7781","v":[["Shuphamites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4528]]]]},{"k":"H7782","v":[["*",[72,63,[[1,3,3,0,3,[[68,2,2,0,2],[69,1,1,2,3]]],[2,2,1,3,4,[[114,2,1,3,4]]],[5,14,8,4,12,[[192,14,8,4,12]]],[6,10,8,12,20,[[213,1,1,12,13],[216,1,1,13,14],[217,8,6,14,20]]],[8,1,1,20,21,[[248,1,1,20,21]]],[9,6,6,21,27,[[268,1,1,21,22],[272,1,1,22,23],[281,1,1,23,24],[284,1,1,24,25],[286,2,2,25,27]]],[10,3,3,27,30,[[291,3,3,27,30]]],[11,1,1,30,31,[[321,1,1,30,31]]],[12,1,1,31,32,[[352,1,1,31,32]]],[13,1,1,32,33,[[381,1,1,32,33]]],[15,2,2,33,35,[[416,2,2,33,35]]],[17,2,2,35,37,[[474,2,2,35,37]]],[18,4,4,37,41,[[524,1,1,37,38],[558,1,1,38,39],[575,1,1,39,40],[627,1,1,40,41]]],[22,3,3,41,44,[[696,1,1,41,42],[705,1,1,42,43],[736,1,1,43,44]]],[23,7,7,44,51,[[748,3,3,44,47],[750,2,2,47,49],[786,1,1,49,50],[795,1,1,50,51]]],[25,4,4,51,55,[[834,4,4,51,55]]],[27,2,2,55,57,[[866,1,1,55,56],[869,1,1,56,57]]],[28,2,2,57,59,[[877,2,2,57,59]]],[29,2,2,59,61,[[880,1,1,59,60],[881,1,1,60,61]]],[35,1,1,61,62,[[906,1,1,61,62]]],[37,1,1,62,63,[[919,1,1,62,63]]]],[2042,2045,2069,3478,5953,5954,5955,5957,5958,5962,5965,5969,6595,6688,6702,6710,6712,6713,6714,6716,7488,8077,8172,8399,8494,8555,8576,8751,8756,8758,9769,10819,11504,12377,12379,13858,13859,14630,15220,15496,16397,18000,18164,18787,19032,19046,19048,19090,19106,19989,20239,21283,21284,21285,21286,22160,22195,22312,22326,22381,22401,22803,23013]]],["cornet",[3,3,[[12,1,1,0,1,[[352,1,1,0,1]]],[18,1,1,1,2,[[575,1,1,1,2]]],[27,1,1,2,3,[[866,1,1,2,3]]]],[10819,15496,22160]]],["cornets",[1,1,[[13,1,1,0,1,[[381,1,1,0,1]]]],[11504]]],["trumpet",[48,47,[[1,3,3,0,3,[[68,2,2,0,2],[69,1,1,2,3]]],[2,2,1,3,4,[[114,2,1,3,4]]],[5,2,2,4,6,[[192,2,2,4,6]]],[6,4,4,6,10,[[213,1,1,6,7],[216,1,1,7,8],[217,2,2,8,10]]],[8,1,1,10,11,[[248,1,1,10,11]]],[9,6,6,11,17,[[268,1,1,11,12],[272,1,1,12,13],[281,1,1,13,14],[284,1,1,14,15],[286,2,2,15,17]]],[10,3,3,17,20,[[291,3,3,17,20]]],[15,2,2,20,22,[[416,2,2,20,22]]],[17,1,1,22,23,[[474,1,1,22,23]]],[18,3,3,23,26,[[524,1,1,23,24],[558,1,1,24,25],[627,1,1,25,26]]],[22,3,3,26,29,[[696,1,1,26,27],[705,1,1,27,28],[736,1,1,28,29]]],[23,7,7,29,36,[[748,3,3,29,32],[750,2,2,32,34],[786,1,1,34,35],[795,1,1,35,36]]],[25,4,4,36,40,[[834,4,4,36,40]]],[27,1,1,40,41,[[869,1,1,40,41]]],[28,2,2,41,43,[[877,2,2,41,43]]],[29,2,2,43,45,[[880,1,1,43,44],[881,1,1,44,45]]],[35,1,1,45,46,[[906,1,1,45,46]]],[37,1,1,46,47,[[919,1,1,46,47]]]],[2042,2045,2069,3478,5954,5969,6595,6688,6710,6712,7488,8077,8172,8399,8494,8555,8576,8751,8756,8758,12377,12379,13858,14630,15220,16397,18000,18164,18787,19032,19046,19048,19090,19106,19989,20239,21283,21284,21285,21286,22195,22312,22326,22381,22401,22803,23013]]],["trumpets",[20,14,[[5,12,7,0,7,[[192,12,7,0,7]]],[6,6,5,7,12,[[217,6,5,7,12]]],[11,1,1,12,13,[[321,1,1,12,13]]],[17,1,1,13,14,[[474,1,1,13,14]]]],[5953,5955,5957,5958,5962,5965,5969,6702,6712,6713,6714,6716,9769,13859]]]]},{"k":"H7783","v":[["*",[3,3,[[18,1,1,0,1,[[542,1,1,0,1]]],[28,2,2,1,3,[[877,1,1,1,2],[878,1,1,2,3]]]],[14869,22335,22356]]],["overflow",[2,2,[[28,2,2,0,2,[[877,1,1,0,1],[878,1,1,1,2]]]],[22335,22356]]],["waterest",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14869]]]]},{"k":"H7784","v":[["*",[4,4,[[19,1,1,0,1,[[634,1,1,0,1]]],[20,2,2,1,3,[[670,2,2,1,3]]],[21,1,1,3,4,[[673,1,1,3,4]]]],[16583,17527,17528,17573]]],["street",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16583]]],["streets",[3,3,[[20,2,2,0,2,[[670,2,2,0,2]]],[21,1,1,2,3,[[673,1,1,2,3]]]],[17527,17528,17573]]]]},{"k":"H7785","v":[["*",[19,19,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,8,8,2,10,[[96,3,3,2,5],[97,2,2,5,7],[98,1,1,7,8],[99,2,2,8,10]]],[3,2,2,10,12,[[122,1,1,10,11],[134,1,1,11,12]]],[4,1,1,12,13,[[180,1,1,12,13]]],[6,1,1,13,14,[[225,1,1,13,14]]],[8,1,1,14,15,[[244,1,1,14,15]]],[18,1,1,15,16,[[624,1,1,15,16]]],[19,1,1,16,17,[[653,1,1,16,17]]],[21,1,1,17,18,[[675,1,1,17,18]]],[22,1,1,18,19,[[725,1,1,18,19]]]],[2358,2363,2911,2912,2913,2942,2943,2974,2991,2992,3843,4275,5646,6937,7415,16361,17148,17613,18601]]],["hip",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6937]]],["legs",[4,4,[[4,1,1,0,1,[[180,1,1,0,1]]],[18,1,1,1,2,[[624,1,1,1,2]]],[19,1,1,2,3,[[653,1,1,2,3]]],[21,1,1,3,4,[[675,1,1,3,4]]]],[5646,16361,17148,17613]]],["shoulder",[13,13,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,8,8,2,10,[[96,3,3,2,5],[97,2,2,5,7],[98,1,1,7,8],[99,2,2,8,10]]],[3,2,2,10,12,[[122,1,1,10,11],[134,1,1,11,12]]],[8,1,1,12,13,[[244,1,1,12,13]]]],[2358,2363,2911,2912,2913,2942,2943,2974,2991,2992,3843,4275,7415]]],["thigh",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18601]]]]},{"k":"H7786","v":[["reigned",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6776]]]]},{"k":"H7787","v":[["cut",[1,1,[[12,1,1,0,1,[[357,1,1,0,1]]]],[10929]]]]},{"k":"H7788","v":[["*",[2,2,[[22,1,1,0,1,[[735,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[18774,21146]]],["sing",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21146]]],["wentest",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18774]]]]},{"k":"H7789","v":[["*",[17,17,[[3,2,2,0,2,[[139,1,1,0,1],[140,1,1,1,2]]],[17,11,11,2,13,[[442,1,1,2,3],[452,1,1,3,4],[455,1,1,4,5],[459,1,1,5,6],[468,2,2,6,8],[469,1,1,8,9],[470,3,3,9,12],[471,1,1,12,13]]],[21,1,1,13,14,[[674,1,1,13,14]]],[23,1,1,14,15,[[749,1,1,14,15]]],[27,2,2,15,17,[[874,1,1,15,16],[875,1,1,16,17]]]],[4425,4463,13016,13275,13335,13451,13664,13677,13712,13725,13733,13734,13760,17590,19084,22273,22290]]],["behold",[6,6,[[3,2,2,0,2,[[139,1,1,0,1],[140,1,1,1,2]]],[17,4,4,2,6,[[455,1,1,2,3],[469,1,1,3,4],[470,1,1,4,5],[471,1,1,5,6]]]],[4425,4463,13335,13712,13725,13760]]],["look",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17590]]],["looketh",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13677]]],["observe",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22273]]],["observed",[1,1,[[27,1,1,0,1,[[875,1,1,0,1]]]],[22290]]],["perceiveth",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13664]]],["regard",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13733]]],["see",[4,4,[[17,4,4,0,4,[[442,1,1,0,1],[452,1,1,1,2],[459,1,1,2,3],[470,1,1,3,4]]]],[13016,13275,13451,13734]]],["wait",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19084]]]]},{"k":"H7790","v":[["enemies",[1,1,[[18,1,1,0,1,[[569,1,1,0,1]]]],[15422]]]]},{"k":"H7791","v":[["*",[5,5,[[0,2,2,0,2,[[48,2,2,0,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[17,1,1,3,4,[[459,1,1,3,4]]],[18,1,1,4,5,[[495,1,1,4,5]]]],[1479,1495,8632,13447,14147]]],["wall",[4,4,[[0,2,2,0,2,[[48,2,2,0,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]]],[1479,1495,8632,14147]]],["walls",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13447]]]]},{"k":"H7792","v":[["walls",[3,3,[[14,3,3,0,3,[[406,3,3,0,3]]]],[12122,12123,12126]]]]},{"k":"H7793","v":[["Shur",[6,6,[[0,3,3,0,3,[[15,1,1,0,1],[19,1,1,1,2],[24,1,1,2,3]]],[1,1,1,3,4,[[64,1,1,3,4]]],[8,2,2,4,6,[[250,1,1,4,5],[262,1,1,5,6]]]],[388,496,676,1942,7567,7938]]]]},{"k":"H7794","v":[["*",[78,68,[[0,1,1,0,1,[[31,1,1,0,1]]],[1,24,15,1,16,[[69,1,1,1,2],[70,14,6,2,8],[71,6,5,8,13],[72,2,2,13,15],[83,1,1,15,16]]],[2,10,10,16,26,[[93,1,1,16,17],[96,1,1,17,18],[98,3,3,18,21],[106,1,1,21,22],[111,3,3,22,25],[116,1,1,25,26]]],[3,4,4,26,30,[[123,1,1,26,27],[131,1,1,27,28],[134,1,1,28,29],[138,1,1,29,30]]],[4,12,12,30,42,[[157,2,2,30,32],[166,1,1,32,33],[167,1,1,33,34],[169,1,1,34,35],[170,1,1,35,36],[174,3,3,36,39],[177,1,1,39,40],[180,1,1,40,41],[185,1,1,41,42]]],[5,2,2,42,44,[[192,1,1,42,43],[193,1,1,43,44]]],[6,2,2,44,46,[[216,2,2,44,46]]],[8,5,4,46,50,[[247,1,1,46,47],[249,2,1,47,48],[250,1,1,48,49],[257,1,1,49,50]]],[9,1,1,50,51,[[272,1,1,50,51]]],[10,2,2,51,53,[[291,2,2,51,53]]],[15,1,1,53,54,[[417,1,1,53,54]]],[17,3,3,54,57,[[441,1,1,54,55],[456,1,1,55,56],[459,1,1,56,57]]],[18,2,2,57,59,[[546,1,1,57,58],[583,1,1,58,59]]],[19,3,3,59,62,[[634,1,1,59,60],[641,1,1,60,61],[642,1,1,61,62]]],[22,4,4,62,66,[[679,1,1,62,63],[685,1,1,63,64],[710,1,1,64,65],[744,1,1,65,66]]],[25,1,1,66,67,[[802,1,1,66,67]]],[27,1,1,67,68,[[873,1,1,67,68]]]],[933,2068,2105,2106,2109,2110,2112,2113,2114,2117,2122,2123,2143,2148,2156,2515,2805,2902,2957,2971,2972,3238,3392,3396,3397,3596,3853,4164,4274,4379,5067,5074,5294,5338,5365,5387,5471,5474,5480,5551,5642,5827,5970,6000,6658,6679,7463,7542,7563,7806,8170,8736,8742,12400,12983,13365,13439,14966,15671,16597,16776,16824,17657,17807,18279,18925,20474,22263]]],["+",[8,8,[[1,2,2,0,2,[[70,1,1,0,1],[71,1,1,1,2]]],[2,1,1,2,3,[[93,1,1,2,3]]],[6,1,1,3,4,[[216,1,1,3,4]]],[8,1,1,4,5,[[250,1,1,4,5]]],[17,1,1,5,6,[[459,1,1,5,6]]],[18,1,1,6,7,[[546,1,1,6,7]]],[19,1,1,7,8,[[642,1,1,7,8]]]],[2112,2117,2805,6679,7563,13439,14966,16824]]],["bull",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13365]]],["bullock",[9,9,[[2,5,5,0,5,[[98,3,3,0,3],[111,2,2,3,5]]],[3,1,1,5,6,[[131,1,1,5,6]]],[4,3,3,6,9,[[167,1,1,6,7],[169,1,1,7,8],[185,1,1,8,9]]]],[2957,2971,2972,3392,3396,4164,5338,5365,5827]]],["bullocks",[1,1,[[27,1,1,0,1,[[873,1,1,0,1]]]],[22263]]],["cow",[2,2,[[2,1,1,0,1,[[111,1,1,0,1]]],[3,1,1,1,2,[[134,1,1,1,2]]]],[3397,4274]]],["ox",[49,40,[[1,21,13,0,13,[[69,1,1,0,1],[70,13,6,1,7],[71,4,3,7,10],[72,2,2,10,12],[83,1,1,12,13]]],[2,3,3,13,16,[[96,1,1,13,14],[106,1,1,14,15],[116,1,1,15,16]]],[3,2,2,16,18,[[123,1,1,16,17],[138,1,1,17,18]]],[4,9,9,18,27,[[157,2,2,18,20],[166,1,1,20,21],[170,1,1,21,22],[174,3,3,22,25],[177,1,1,25,26],[180,1,1,26,27]]],[5,1,1,27,28,[[192,1,1,27,28]]],[6,1,1,28,29,[[216,1,1,28,29]]],[8,3,2,29,31,[[247,1,1,29,30],[249,2,1,30,31]]],[15,1,1,31,32,[[417,1,1,31,32]]],[17,1,1,32,33,[[441,1,1,32,33]]],[18,1,1,33,34,[[583,1,1,33,34]]],[19,2,2,34,36,[[634,1,1,34,35],[641,1,1,35,36]]],[22,3,3,36,39,[[679,1,1,36,37],[710,1,1,37,38],[744,1,1,38,39]]],[25,1,1,39,40,[[802,1,1,39,40]]]],[2068,2105,2106,2109,2110,2112,2113,2114,2122,2123,2148,2156,2515,2902,3238,3596,3853,4379,5067,5074,5294,5387,5471,5474,5480,5551,5642,5970,6658,7463,7542,12400,12983,15671,16597,16776,17657,18279,18925,20474]]],["oxen",[8,8,[[0,1,1,0,1,[[31,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[5,1,1,2,3,[[193,1,1,2,3]]],[8,1,1,3,4,[[257,1,1,3,4]]],[9,1,1,4,5,[[272,1,1,4,5]]],[10,2,2,5,7,[[291,2,2,5,7]]],[22,1,1,7,8,[[685,1,1,7,8]]]],[933,2143,6000,7806,8170,8736,8742,17807]]]]},{"k":"H7795","v":[["principal",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18189]]]]},{"k":"H7796","v":[["Sorek",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6953]]]]},{"k":"H7797","v":[["*",[27,24,[[4,4,2,0,2,[[180,2,1,0,1],[182,2,1,1,2]]],[17,2,2,2,4,[[438,1,1,2,3],[474,1,1,3,4]]],[18,7,7,4,11,[[496,1,1,4,5],[512,1,1,5,6],[517,1,1,6,7],[545,1,1,7,8],[547,1,1,8,9],[596,2,2,9,11]]],[22,9,8,11,19,[[713,1,1,11,12],[739,2,1,12,13],[740,1,1,13,14],[742,1,1,14,15],[743,2,2,15,17],[744,2,2,17,19]]],[23,1,1,19,20,[[776,1,1,19,20]]],[24,2,2,20,22,[[797,1,1,20,21],[800,1,1,21,22]]],[25,1,1,22,23,[[822,1,1,22,23]]],[35,1,1,23,24,[[908,1,1,23,24]]]],[5674,5717,12926,13855,14173,14419,14541,14903,14975,15912,16060,18321,18853,18859,18890,18915,18916,18932,18936,19772,20331,20441,20954,22837]]],["+",[2,1,[[22,2,1,0,1,[[739,2,1,0,1]]]],[18853]]],["Rejoice",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20441]]],["glad",[4,4,[[17,1,1,0,1,[[438,1,1,0,1]]],[22,2,2,1,3,[[713,1,1,1,2],[743,1,1,2,3]]],[24,1,1,3,4,[[797,1,1,3,4]]]],[12926,18321,18915,20331]]],["joy",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18916]]],["mirth",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20954]]],["rejoice",[12,12,[[4,2,2,0,2,[[180,1,1,0,1],[182,1,1,1,2]]],[18,5,5,2,7,[[512,1,1,2,3],[517,1,1,3,4],[545,1,1,4,5],[547,1,1,5,6],[596,1,1,6,7]]],[22,3,3,7,10,[[740,1,1,7,8],[744,2,2,8,10]]],[23,1,1,10,11,[[776,1,1,10,11]]],[35,1,1,11,12,[[908,1,1,11,12]]]],[5674,5717,14419,14541,14903,14975,16060,18859,18932,18936,19772,22837]]],["rejoiced",[3,3,[[4,2,2,0,2,[[180,1,1,0,1],[182,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]]],[5674,5717,15912]]],["rejoiceth",[3,3,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,1,1,1,2,[[496,1,1,1,2]]],[22,1,1,2,3,[[742,1,1,2,3]]]],[13855,14173,18890]]]]},{"k":"H7798","v":[["Shavsha",[1,1,[[12,1,1,0,1,[[355,1,1,0,1]]]],[10906]]]]},{"k":"H7799","v":[["*",[13,13,[[10,3,3,0,3,[[297,3,3,0,3]]],[13,1,1,3,4,[[370,1,1,3,4]]],[21,8,8,4,12,[[672,3,3,4,7],[674,1,1,7,8],[675,1,1,8,9],[676,2,2,9,11],[677,1,1,11,12]]],[27,1,1,12,13,[[875,1,1,12,13]]]],[8953,8956,8960,11251,17555,17556,17570,17587,17611,17616,17617,17629,22287]]],["lilies",[8,8,[[10,1,1,0,1,[[297,1,1,0,1]]],[13,1,1,1,2,[[370,1,1,1,2]]],[21,6,6,2,8,[[672,1,1,2,3],[674,1,1,3,4],[675,1,1,4,5],[676,2,2,5,7],[677,1,1,7,8]]]],[8960,11251,17570,17587,17611,17616,17617,17629]]],["lily",[5,5,[[10,2,2,0,2,[[297,2,2,0,2]]],[21,2,2,2,4,[[672,2,2,2,4]]],[27,1,1,4,5,[[875,1,1,4,5]]]],[8953,8956,17555,17556,22287]]]]},{"k":"H7800","v":[["Shushan",[21,19,[[15,1,1,0,1,[[413,1,1,0,1]]],[16,19,17,1,18,[[426,2,2,1,3],[427,3,3,3,6],[428,2,1,6,7],[429,2,2,7,9],[433,2,2,9,11],[434,8,7,11,18]]],[26,1,1,18,19,[[857,1,1,18,19]]]],[12297,12704,12707,12727,12729,12732,12762,12770,12778,12831,12832,12840,12845,12846,12847,12848,12849,12852,21963]]]]},{"k":"H7801","v":[["Susanchites",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12119]]]]},{"k":"H7802","v":[]},{"k":"H7803","v":[["Shuthelah",[4,4,[[3,2,2,0,2,[[142,2,2,0,2]]],[12,2,2,2,4,[[344,2,2,2,4]]]],[4524,4525,10555,10556]]]]},{"k":"H7804","v":[["*",[9,7,[[26,9,7,0,7,[[852,4,3,0,3],[855,5,4,3,7]]]],[21822,21824,21835,21919,21921,21925,21932]]],["deliver",[6,5,[[26,6,5,0,5,[[852,3,2,0,2],[855,3,3,2,5]]]],[21822,21824,21919,21921,21925]]],["delivered",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[855,1,1,1,2]]]],[21835,21932]]],["delivereth",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21932]]]]},{"k":"H7805","v":[["*",[3,3,[[17,2,2,0,2,[[455,1,1,0,1],[463,1,1,1,2]]],[21,1,1,2,3,[[671,1,1,2,3]]]],[13335,13511,17543]]],["+",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17543]]],["saw",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13335]]],["seen",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13511]]]]},{"k":"H7806","v":[["*",[21,21,[[1,21,21,0,21,[[75,3,3,0,3],[76,3,3,3,6],[77,3,3,6,9],[85,3,3,9,12],[87,3,3,12,15],[88,6,6,15,21]]]],[2236,2266,2271,2281,2288,2290,2299,2301,2308,2574,2601,2603,2642,2649,2651,2666,2669,2672,2688,2692,2693]]],["+",[20,20,[[1,20,20,0,20,[[75,3,3,0,3],[76,3,3,3,6],[77,3,3,6,9],[85,3,3,9,12],[87,3,3,12,15],[88,5,5,15,20]]]],[2236,2266,2271,2281,2288,2290,2299,2301,2308,2574,2601,2603,2642,2649,2651,2666,2669,2672,2692,2693]]],["twined",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2688]]]]},{"k":"H7807","v":[["+",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13418]]]]},{"k":"H7808","v":[["thought",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22423]]]]},{"k":"H7809","v":[["*",[2,2,[[17,1,1,0,1,[[441,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[13000,20795]]],["hirest",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20795]]],["reward",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[13000]]]]},{"k":"H7810","v":[["*",[23,21,[[1,2,1,0,1,[[72,2,1,0,1]]],[4,4,3,1,4,[[162,1,1,1,2],[168,2,1,2,3],[179,1,1,3,4]]],[8,1,1,4,5,[[243,1,1,4,5]]],[10,1,1,5,6,[[305,1,1,5,6]]],[11,1,1,6,7,[[328,1,1,6,7]]],[13,1,1,7,8,[[385,1,1,7,8]]],[17,1,1,8,9,[[450,1,1,8,9]]],[18,2,2,9,11,[[492,1,1,9,10],[503,1,1,10,11]]],[19,4,4,11,15,[[633,1,1,11,12],[644,2,2,12,14],[648,1,1,14,15]]],[22,4,4,15,19,[[679,1,1,15,16],[683,1,1,16,17],[711,1,1,17,18],[723,1,1,18,19]]],[25,1,1,19,20,[[823,1,1,19,20]]],[32,1,1,20,21,[[895,1,1,20,21]]]],[2152,5203,5361,5610,7372,9268,9971,11583,13237,14092,14283,16575,16881,16896,16998,17677,17762,18294,18574,20988,22619]]],["bribery",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13237]]],["bribes",[3,3,[[8,1,1,0,1,[[243,1,1,0,1]]],[18,1,1,1,2,[[503,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]]],[7372,14283,18294]]],["gift",[6,4,[[1,2,1,0,1,[[72,2,1,0,1]]],[4,2,1,1,2,[[168,2,1,1,2]]],[19,2,2,2,4,[[644,2,2,2,4]]]],[2152,5361,16881,16896]]],["gifts",[4,4,[[13,1,1,0,1,[[385,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]],[22,1,1,2,3,[[679,1,1,2,3]]],[25,1,1,3,4,[[823,1,1,3,4]]]],[11583,16575,17677,20988]]],["present",[2,2,[[10,1,1,0,1,[[305,1,1,0,1]]],[11,1,1,1,2,[[328,1,1,1,2]]]],[9268,9971]]],["reward",[7,7,[[4,2,2,0,2,[[162,1,1,0,1],[179,1,1,1,2]]],[18,1,1,2,3,[[492,1,1,2,3]]],[19,1,1,3,4,[[648,1,1,3,4]]],[22,2,2,4,6,[[683,1,1,4,5],[723,1,1,5,6]]],[32,1,1,6,7,[[895,1,1,6,7]]]],[5203,5610,14092,16998,17762,18574,22619]]]]},{"k":"H7811","v":[["*",[3,2,[[18,1,1,0,1,[[483,1,1,0,1]]],[22,2,1,1,2,[[703,2,1,1,2]]]],[13991,18129]]],["swim",[2,2,[[18,1,1,0,1,[[483,1,1,0,1]]],[22,1,1,1,2,[[703,1,1,1,2]]]],[13991,18129]]],["swimmeth",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18129]]]]},{"k":"H7812","v":[["*",[172,166,[[0,23,21,0,21,[[17,1,1,0,1],[18,1,1,1,2],[21,1,1,2,3],[22,2,2,3,5],[23,3,3,5,8],[26,2,1,8,9],[32,4,3,9,12],[36,3,3,12,15],[41,1,1,15,16],[42,2,2,16,18],[46,1,1,18,19],[47,1,1,19,20],[48,1,1,20,21]]],[1,11,11,21,32,[[53,1,1,21,22],[60,1,1,22,23],[61,1,1,23,24],[67,1,1,24,25],[69,1,1,25,26],[72,1,1,26,27],[73,1,1,27,28],[81,1,1,28,29],[82,1,1,29,30],[83,2,2,30,32]]],[2,1,1,32,33,[[115,1,1,32,33]]],[3,2,2,33,35,[[138,1,1,33,34],[141,1,1,34,35]]],[4,8,8,35,43,[[156,1,1,35,36],[157,1,1,36,37],[160,1,1,37,38],[163,1,1,38,39],[169,1,1,39,40],[178,1,1,40,41],[181,1,1,41,42],[182,1,1,42,43]]],[5,3,3,43,46,[[191,1,1,43,44],[209,2,2,44,46]]],[6,4,4,46,50,[[212,3,3,46,49],[217,1,1,49,50]]],[7,1,1,50,51,[[233,1,1,50,51]]],[8,12,12,51,63,[[236,3,3,51,54],[237,1,1,54,55],[250,3,3,55,58],[255,1,1,58,59],[259,1,1,59,60],[260,2,2,60,62],[263,1,1,62,63]]],[9,13,13,63,76,[[267,1,1,63,64],[275,2,2,64,66],[278,1,1,66,67],[280,3,3,67,70],[281,2,2,70,72],[282,1,1,72,73],[284,2,2,73,75],[290,1,1,75,76]]],[10,11,11,76,87,[[291,5,5,76,81],[292,1,1,81,82],[299,2,2,82,84],[301,1,1,84,85],[306,1,1,85,86],[312,1,1,86,87]]],[11,12,10,87,97,[[314,1,1,87,88],[316,1,1,88,89],[317,3,1,89,90],[329,3,3,90,93],[330,1,1,93,94],[331,1,1,94,95],[333,2,2,95,97]]],[12,3,3,97,100,[[353,1,1,97,98],[358,1,1,98,99],[366,1,1,99,100]]],[13,11,11,100,111,[[373,3,3,100,103],[386,1,1,103,104],[390,1,1,104,105],[391,1,1,105,106],[395,3,3,106,109],[398,1,1,109,110],[399,1,1,110,111]]],[15,3,3,111,114,[[420,1,1,111,112],[421,2,2,112,114]]],[16,3,2,114,116,[[428,3,2,114,116]]],[17,1,1,116,117,[[436,1,1,116,117]]],[18,17,17,117,134,[[482,1,1,117,118],[499,2,2,118,120],[506,1,1,120,121],[522,1,1,121,122],[543,1,1,122,123],[549,1,1,123,124],[558,1,1,124,125],[563,1,1,125,126],[572,1,1,126,127],[573,1,1,127,128],[574,1,1,128,129],[576,2,2,129,131],[583,1,1,131,132],[609,1,1,132,133],[615,1,1,133,134]]],[19,1,1,134,135,[[639,1,1,134,135]]],[22,14,14,135,149,[[680,2,2,135,137],[705,1,1,137,138],[714,1,1,138,139],[715,1,1,139,140],[722,2,2,140,142],[723,1,1,142,143],[724,1,1,143,144],[727,2,2,144,146],[729,1,1,146,147],[738,1,1,147,148],[744,1,1,148,149]]],[23,8,8,149,157,[[745,1,1,149,150],[751,1,1,150,151],[752,1,1,151,152],[757,1,1,152,153],[760,1,1,153,154],[766,1,1,154,155],[769,1,1,155,156],[770,1,1,156,157]]],[25,4,4,157,161,[[809,1,1,157,158],[847,3,3,158,161]]],[32,1,1,161,162,[[897,1,1,161,162]]],[35,3,2,162,164,[[906,2,1,162,163],[907,1,1,163,164]]],[37,2,2,164,166,[[924,2,2,164,166]]]],[426,458,552,578,583,617,639,643,756,963,966,967,1090,1092,1093,1258,1316,1318,1451,1463,1481,1632,1814,1843,2006,2056,2168,2178,2446,2483,2504,2510,3525,4406,4473,5023,5062,5156,5224,5367,5576,5705,5725,5948,6467,6476,6557,6562,6564,6709,7159,7215,7231,7240,7276,7585,7590,7591,7771,7847,7884,7902,7956,8024,8233,8235,8306,8360,8378,8389,8394,8421,8430,8499,8506,8712,8733,8740,8748,8764,8770,8789,9057,9060,9141,9314,9533,9566,9640,9665,9999,10018,10019,10046,10098,10122,10140,10849,10955,11184,11327,11343,11346,11605,11694,11718,11819,11820,11821,11887,11911,12499,12514,12517,12749,12752,12889,13980,14231,14233,14310,14608,14877,15011,15226,15293,15460,15474,15485,15504,15508,15670,16158,16233,16744,17693,17705,18164,18337,18390,18548,18550,18575,18592,18643,18659,18696,18835,18945,18962,19121,19155,19276,19347,19463,19540,19574,20620,21657,21658,21664,22646,22792,22816,23084,23085]]],["beseech",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8430]]],["bowed",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8389]]],["crouch",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7276]]],["down",[13,12,[[0,3,2,0,2,[[26,2,1,0,1],[48,1,1,1,2]]],[1,1,1,2,3,[[72,1,1,2,3]]],[2,1,1,3,4,[[115,1,1,3,4]]],[3,1,1,4,5,[[141,1,1,4,5]]],[6,1,1,5,6,[[212,1,1,5,6]]],[9,1,1,6,7,[[284,1,1,6,7]]],[18,1,1,7,8,[[549,1,1,7,8]]],[22,4,4,8,12,[[723,1,1,8,9],[727,1,1,9,10],[729,1,1,10,11],[738,1,1,11,12]]]],[756,1481,2168,3525,4473,6564,8506,15011,18575,18659,18696,18835]]],["flat",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4406]]],["herself",[4,4,[[7,1,1,0,1,[[233,1,1,0,1]]],[8,2,2,1,3,[[260,2,2,1,3]]],[11,1,1,3,4,[[316,1,1,3,4]]]],[7159,7884,7902,9640]]],["himself",[20,20,[[0,7,7,0,7,[[17,1,1,0,1],[18,1,1,1,2],[22,2,2,2,4],[32,1,1,4,5],[46,1,1,5,6],[47,1,1,6,7]]],[8,3,3,7,10,[[255,1,1,7,8],[259,1,1,8,9],[263,1,1,9,10]]],[9,4,4,10,14,[[275,1,1,10,11],[280,1,1,11,12],[284,1,1,12,13],[290,1,1,13,14]]],[10,4,4,14,18,[[291,3,3,14,17],[292,1,1,17,18]]],[12,1,1,18,19,[[358,1,1,18,19]]],[13,1,1,19,20,[[391,1,1,19,20]]]],[426,458,578,583,963,1451,1463,7771,7847,7956,8235,8378,8499,8712,8740,8764,8770,8789,10955,11718]]],["myself",[2,1,[[11,2,1,0,1,[[317,2,1,0,1]]]],[9665]]],["obeisance",[9,9,[[0,3,3,0,3,[[36,2,2,0,2],[42,1,1,2,3]]],[1,1,1,3,4,[[67,1,1,3,4]]],[9,3,3,4,7,[[267,1,1,4,5],[280,1,1,5,6],[281,1,1,6,7]]],[10,1,1,7,8,[[291,1,1,7,8]]],[13,1,1,8,9,[[390,1,1,8,9]]]],[1090,1092,1318,2006,8024,8360,8394,8733,11694]]],["ourselves",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1093]]],["reverence",[4,4,[[9,1,1,0,1,[[275,1,1,0,1]]],[10,1,1,1,2,[[291,1,1,1,2]]],[16,2,2,2,4,[[428,2,2,2,4]]]],[8233,8748,12749,12752]]],["reverenced",[1,1,[[16,1,1,0,1,[[428,1,1,0,1]]]],[12749]]],["stoop",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16744]]],["themselves",[9,8,[[0,5,4,0,4,[[32,3,2,0,2],[41,1,1,2,3],[42,1,1,3,4]]],[1,1,1,4,5,[[60,1,1,4,5]]],[6,2,2,5,7,[[212,2,2,5,7]]],[11,1,1,7,8,[[314,1,1,7,8]]]],[966,967,1258,1316,1814,6557,6562,9566]]],["thyself",[2,2,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,1,1,1,2,[[157,1,1,1,2]]]],[2056,5062]]],["worship",[54,53,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,2,2,1,3,[[73,1,1,1,2],[83,1,1,2,3]]],[4,5,5,3,8,[[156,1,1,3,4],[160,1,1,4,5],[163,1,1,5,6],[178,1,1,6,7],[182,1,1,7,8]]],[5,1,1,8,9,[[191,1,1,8,9]]],[8,3,3,9,12,[[236,1,1,9,10],[250,2,2,10,12]]],[10,1,1,12,13,[[299,1,1,12,13]]],[11,3,3,13,16,[[317,1,1,13,14],[329,1,1,14,15],[330,1,1,15,16]]],[12,1,1,16,17,[[353,1,1,16,17]]],[13,2,2,17,19,[[373,1,1,17,18],[398,1,1,18,19]]],[18,15,15,19,34,[[482,1,1,19,20],[499,2,2,20,22],[506,1,1,22,23],[522,1,1,23,24],[543,1,1,24,25],[558,1,1,25,26],[563,1,1,26,27],[572,1,1,27,28],[573,1,1,28,29],[574,1,1,29,30],[576,2,2,30,32],[609,1,1,32,33],[615,1,1,33,34]]],[22,7,7,34,41,[[680,2,2,34,36],[705,1,1,36,37],[714,1,1,37,38],[724,1,1,38,39],[727,1,1,39,40],[744,1,1,40,41]]],[23,4,4,41,45,[[751,1,1,41,42],[757,1,1,42,43],[769,1,1,43,44],[770,1,1,44,45]]],[25,3,3,45,48,[[847,3,3,45,48]]],[32,1,1,48,49,[[897,1,1,48,49]]],[35,3,2,49,51,[[906,2,1,49,50],[907,1,1,50,51]]],[37,2,2,51,53,[[924,2,2,51,53]]]],[552,2178,2510,5023,5156,5224,5576,5725,5948,7215,7585,7590,9057,9665,10019,10046,10849,11343,11887,13980,14231,14233,14310,14608,14877,15226,15293,15460,15474,15485,15504,15508,16158,16233,17693,17705,18164,18337,18592,18643,18945,19121,19276,19540,19574,21657,21658,21664,22646,22792,22816,23084,23085]]],["worshipped",[39,39,[[0,3,3,0,3,[[23,3,3,0,3]]],[1,5,5,3,8,[[53,1,1,3,4],[61,1,1,4,5],[81,1,1,5,6],[82,1,1,6,7],[83,1,1,7,8]]],[4,2,2,8,10,[[169,1,1,8,9],[181,1,1,9,10]]],[6,1,1,10,11,[[217,1,1,10,11]]],[8,3,3,11,14,[[236,2,2,11,13],[250,1,1,13,14]]],[9,2,2,14,16,[[278,1,1,14,15],[281,1,1,15,16]]],[10,4,4,16,20,[[299,1,1,16,17],[301,1,1,17,18],[306,1,1,18,19],[312,1,1,19,20]]],[11,3,3,20,23,[[329,1,1,20,21],[333,2,2,21,23]]],[12,1,1,23,24,[[366,1,1,23,24]]],[13,6,6,24,30,[[373,2,2,24,26],[395,3,3,26,29],[399,1,1,29,30]]],[15,2,2,30,32,[[420,1,1,30,31],[421,1,1,31,32]]],[17,1,1,32,33,[[436,1,1,32,33]]],[18,1,1,33,34,[[583,1,1,33,34]]],[23,4,4,34,38,[[745,1,1,34,35],[752,1,1,35,36],[760,1,1,36,37],[766,1,1,37,38]]],[25,1,1,38,39,[[809,1,1,38,39]]]],[617,639,643,1632,1843,2446,2483,2504,5367,5705,6709,7231,7240,7591,8306,8421,9060,9141,9314,9533,9999,10122,10140,11184,11327,11346,11819,11820,11821,11911,12499,12514,12889,15670,18962,19155,19347,19463,20620]]],["worshippeth",[3,3,[[15,1,1,0,1,[[421,1,1,0,1]]],[22,2,2,1,3,[[722,2,2,1,3]]]],[12517,18548,18550]]],["worshipping",[3,3,[[11,1,1,0,1,[[331,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]]],[10098,11605,18390]]],["yourselves",[3,3,[[5,2,2,0,2,[[209,2,2,0,2]]],[11,1,1,2,3,[[329,1,1,2,3]]]],[6467,6476,10018]]]]},{"k":"H7813","v":[["in",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21684]]]]},{"k":"H7814","v":[["*",[15,14,[[17,3,2,0,2,[[443,1,1,0,1],[447,2,1,1,2]]],[18,1,1,2,3,[[603,1,1,2,3]]],[19,2,2,3,5,[[637,1,1,3,4],[641,1,1,4,5]]],[20,4,4,5,9,[[660,1,1,5,6],[665,2,2,6,8],[668,1,1,8,9]]],[23,4,4,9,13,[[764,1,1,9,10],[792,3,3,10,13]]],[24,1,1,13,14,[[799,1,1,13,14]]]],[13050,13132,16117,16679,16785,17335,17432,17435,17512,19429,20106,20107,20119,20368]]],["+",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17432]]],["derision",[5,5,[[23,4,4,0,4,[[764,1,1,0,1],[792,3,3,1,4]]],[24,1,1,4,5,[[799,1,1,4,5]]]],[19429,20106,20107,20119,20368]]],["laughing",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13050]]],["laughter",[5,5,[[18,1,1,0,1,[[603,1,1,0,1]]],[19,1,1,1,2,[[641,1,1,1,2]]],[20,3,3,2,5,[[660,1,1,2,3],[665,1,1,3,4],[668,1,1,4,5]]]],[16117,16785,17335,17435,17512]]],["mocked",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13132]]],["scorn",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13132]]],["sport",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16679]]]]},{"k":"H7815","v":[["+",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20428]]]]},{"k":"H7816","v":[["pit",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17206]]]]},{"k":"H7817","v":[["*",[21,21,[[17,2,2,0,2,[[444,1,1,0,1],[473,1,1,1,2]]],[18,8,8,2,10,[[487,1,1,2,3],[512,1,1,3,4],[515,1,1,4,5],[519,3,3,5,8],[520,1,1,8,9],[584,1,1,9,10]]],[19,1,1,10,11,[[641,1,1,10,11]]],[20,1,1,11,12,[[670,1,1,11,12]]],[22,8,8,12,20,[[680,3,3,12,15],[683,1,1,15,16],[703,1,1,16,17],[704,1,1,17,18],[707,1,1,18,19],[738,1,1,19,20]]],[34,1,1,20,21,[[905,1,1,20,21]]]],[13064,13833,14051,14424,14496,14560,14561,14566,14571,15738,16791,17527,17694,17696,17702,17754,18130,18135,18197,18835,22774]]],["bending",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18835]]],["bow",[2,2,[[19,1,1,0,1,[[641,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[16791,22774]]],["couch",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13833]]],["down",[12,12,[[18,6,6,0,6,[[512,1,1,0,1],[515,1,1,1,2],[519,3,3,2,5],[520,1,1,5,6]]],[22,6,6,6,12,[[680,3,3,6,9],[683,1,1,9,10],[703,1,1,10,11],[704,1,1,11,12]]]],[14424,14496,14560,14561,14566,14571,17694,17696,17702,17754,18130,18135]]],["humbleth",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14051]]],["low",[3,3,[[18,1,1,0,1,[[584,1,1,0,1]]],[20,1,1,1,2,[[670,1,1,1,2]]],[22,1,1,2,3,[[707,1,1,2,3]]]],[15738,17527,18197]]],["stoop",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13064]]]]},{"k":"H7818","v":[["pressed",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1183]]]]},{"k":"H7819","v":[["*",[81,70,[[0,2,2,0,2,[[21,1,1,0,1],[36,1,1,1,2]]],[1,6,6,2,8,[[61,2,2,2,4],[78,3,3,4,7],[83,1,1,7,8]]],[2,36,30,8,38,[[90,2,2,8,10],[92,3,3,10,13],[93,7,5,13,18],[95,2,1,18,19],[96,2,1,19,20],[97,3,3,20,23],[98,4,4,23,27],[103,8,7,27,34],[105,2,2,34,36],[106,2,1,36,37],[111,1,1,37,38]]],[3,3,3,38,41,[[127,1,1,38,39],[130,1,1,39,40],[135,1,1,40,41]]],[6,1,1,41,42,[[222,1,1,41,42]]],[8,4,3,42,45,[[236,1,1,42,43],[249,3,2,43,45]]],[10,1,1,45,46,[[308,1,1,45,46]]],[11,3,3,46,49,[[322,2,2,46,48],[337,1,1,48,49]]],[13,8,6,49,55,[[395,4,2,49,51],[396,1,1,51,52],[401,3,3,52,55]]],[14,1,1,55,56,[[408,1,1,55,56]]],[22,3,3,56,59,[[700,1,1,56,57],[735,1,1,57,58],[744,1,1,58,59]]],[23,6,4,59,63,[[753,1,1,59,60],[783,2,1,60,61],[785,1,1,61,62],[796,2,1,62,63]]],[25,6,6,63,69,[[817,1,1,63,64],[824,1,1,64,65],[841,3,3,65,68],[845,1,1,68,69]]],[27,1,1,69,70,[[866,1,1,69,70]]]],[557,1114,1822,1837,2347,2352,2356,2521,2750,2756,2780,2786,2791,2799,2810,2819,2824,2828,2874,2881,2932,2936,2940,2961,2965,2968,2971,3116,3117,3124,3130,3136,3161,3162,3212,3216,3238,3397,4046,4124,4292,6875,7237,7540,7542,9381,9800,9807,10229,11813,11815,11842,11967,11972,11977,12171,18065,18770,18925,19183,19929,19964,20286,20783,21046,21516,21518,21519,21610,22154]]],["+",[27,25,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,3,3,1,4,[[78,3,3,1,4]]],[2,16,14,4,18,[[90,1,1,4,5],[93,4,4,5,9],[96,2,1,9,10],[98,2,2,10,12],[103,5,4,12,16],[105,2,2,16,18]]],[8,1,1,18,19,[[236,1,1,18,19]]],[23,2,2,19,21,[[783,1,1,19,20],[796,1,1,20,21]]],[25,4,4,21,25,[[817,1,1,21,22],[824,1,1,22,23],[841,1,1,23,24],[845,1,1,24,25]]]],[557,2347,2352,2356,2750,2799,2819,2824,2828,2881,2961,2965,3124,3130,3136,3161,3212,3216,7237,19929,20286,20783,21046,21519,21610]]],["kill",[9,9,[[1,2,2,0,2,[[61,2,2,0,2]]],[2,6,6,2,8,[[90,1,1,2,3],[92,3,3,3,6],[93,1,1,6,7],[111,1,1,7,8]]],[13,1,1,8,9,[[401,1,1,8,9]]]],[1822,1837,2756,2780,2786,2791,2819,3397,11972]]],["killed",[15,12,[[0,1,1,0,1,[[36,1,1,0,1]]],[2,6,5,1,6,[[93,1,1,1,2],[95,2,1,2,3],[97,1,1,3,4],[103,2,2,4,6]]],[13,7,5,6,11,[[395,4,2,6,8],[396,1,1,8,9],[401,2,2,9,11]]],[14,1,1,11,12,[[408,1,1,11,12]]]],[1114,2810,2874,2936,3116,3117,11813,11815,11842,11967,11977,12171]]],["killeth",[3,2,[[2,2,1,0,1,[[106,2,1,0,1]]],[22,1,1,1,2,[[744,1,1,1,2]]]],[3238,18925]]],["killing",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18065]]],["offer",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2521]]],["out",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19183]]],["slain",[3,3,[[2,1,1,0,1,[[103,1,1,0,1]]],[3,2,2,1,3,[[127,1,1,1,2],[130,1,1,2,3]]]],[3162,4046,4124]]],["slaughter",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22154]]],["slay",[4,4,[[2,1,1,0,1,[[93,1,1,0,1]]],[3,1,1,1,2,[[135,1,1,1,2]]],[8,1,1,2,3,[[249,1,1,2,3]]],[25,1,1,3,4,[[841,1,1,3,4]]]],[2828,4292,7542,21516]]],["slaying",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18770]]],["slew",[15,15,[[2,4,4,0,4,[[97,2,2,0,2],[98,2,2,2,4]]],[6,1,1,4,5,[[222,1,1,4,5]]],[8,2,2,5,7,[[249,2,2,5,7]]],[10,1,1,7,8,[[308,1,1,7,8]]],[11,3,3,8,11,[[322,2,2,8,10],[337,1,1,10,11]]],[23,3,3,11,14,[[783,1,1,11,12],[785,1,1,12,13],[796,1,1,13,14]]],[25,1,1,14,15,[[841,1,1,14,15]]]],[2932,2940,2968,2971,6875,7540,7542,9381,9800,9807,10229,19929,19964,20286,21518]]]]},{"k":"H7820","v":[["beaten",[5,4,[[10,2,2,0,2,[[300,2,2,0,2]]],[13,3,2,2,4,[[375,3,2,2,4]]]],[9095,9096,11379,11380]]]]},{"k":"H7821","v":[["killing",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11844]]]]},{"k":"H7822","v":[["*",[13,12,[[1,4,3,0,3,[[58,4,3,0,3]]],[2,4,4,3,7,[[102,4,4,3,7]]],[4,2,2,7,9,[[180,2,2,7,9]]],[11,1,1,9,10,[[332,1,1,9,10]]],[17,1,1,10,11,[[437,1,1,10,11]]],[22,1,1,11,12,[[716,1,1,11,12]]]],[1751,1752,1753,3070,3071,3072,3075,5638,5646,10105,12898,18411]]],["boil",[9,9,[[1,3,3,0,3,[[58,3,3,0,3]]],[2,4,4,3,7,[[102,4,4,3,7]]],[11,1,1,7,8,[[332,1,1,7,8]]],[22,1,1,8,9,[[716,1,1,8,9]]]],[1751,1752,1753,3070,3071,3072,3075,10105,18411]]],["boils",[2,2,[[1,1,1,0,1,[[58,1,1,0,1]]],[17,1,1,1,2,[[437,1,1,1,2]]]],[1753,12898]]],["botch",[2,2,[[4,2,2,0,2,[[180,2,2,0,2]]]],[5638,5646]]]]},{"k":"H7823","v":[["same",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10090,18382]]]]},{"k":"H7824","v":[["cieled",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21542]]]]},{"k":"H7825","v":[["*",[2,2,[[18,1,1,0,1,[[584,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[15719,20440]]],["+",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15719]]],["pits",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20440]]]]},{"k":"H7826","v":[["lion",[7,7,[[17,3,3,0,3,[[439,1,1,0,1],[445,1,1,1,2],[463,1,1,2,3]]],[18,1,1,3,4,[[568,1,1,3,4]]],[19,1,1,4,5,[[653,1,1,4,5]]],[27,2,2,5,7,[[866,1,1,5,6],[874,1,1,6,7]]]],[12940,13102,13512,15408,17154,22166,22273]]]]},{"k":"H7827","v":[["onycha",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2416]]]]},{"k":"H7828","v":[["cuckow",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3013,5305]]]]},{"k":"H7829","v":[["consumption",[2,2,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]]],[3540,5633]]]]},{"k":"H7830","v":[["*",[2,2,[[17,2,2,0,2,[[463,1,1,0,1],[476,1,1,1,2]]]],[13512,13922]]],["lion's",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13512]]],["pride",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13922]]]]},{"k":"H7831","v":[["Shahazimah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6343]]]]},{"k":"H7832","v":[["*",[36,36,[[6,2,2,0,2,[[226,2,2,0,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[9,3,3,3,6,[[268,1,1,3,4],[272,2,2,4,6]]],[12,2,2,6,8,[[350,1,1,6,7],[352,1,1,7,8]]],[13,1,1,8,9,[[396,1,1,8,9]]],[17,9,9,9,18,[[440,1,1,9,10],[464,1,1,10,11],[465,1,1,11,12],[474,3,3,12,15],[475,1,1,15,16],[476,2,2,16,18]]],[18,5,5,18,23,[[479,1,1,18,19],[514,1,1,19,20],[529,1,1,20,21],[536,1,1,21,22],[581,1,1,22,23]]],[19,6,6,23,29,[[628,1,1,23,24],[635,2,2,24,26],[653,1,1,26,27],[656,1,1,27,28],[658,1,1,28,29]]],[20,1,1,29,30,[[661,1,1,29,30]]],[23,3,3,30,33,[[759,1,1,30,31],[774,1,1,31,32],[775,1,1,32,33]]],[24,1,1,33,34,[[797,1,1,33,34]]],[34,1,1,34,35,[[903,1,1,34,35]]],[37,1,1,35,36,[[918,1,1,35,36]]]],[6974,6976,7683,8063,8162,8178,10768,10820,11837,12973,13556,13558,13841,13852,13856,13884,13893,13917,13949,14463,14716,14798,15597,16426,16632,16633,17160,17233,17309,17363,19332,19686,19695,20317,22741,22981]]],["+",[2,2,[[13,1,1,0,1,[[396,1,1,0,1]]],[17,1,1,1,2,[[465,1,1,1,2]]]],[11837,13558]]],["Rejoicing",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16633]]],["deride",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22741]]],["laugh",[8,8,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,4,4,1,5,[[479,1,1,1,2],[514,1,1,2,3],[529,1,1,3,4],[536,1,1,4,5]]],[19,2,2,5,7,[[628,1,1,5,6],[656,1,1,6,7]]],[20,1,1,7,8,[[661,1,1,7,8]]]],[12973,13949,14463,14716,14798,16426,17233,17363]]],["laughed",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13556]]],["laugheth",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13917]]],["merry",[2,2,[[23,2,2,0,2,[[774,1,1,0,1],[775,1,1,1,2]]]],[19686,19695]]],["mock",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20317]]],["mockers",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19332]]],["mocketh",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13856]]],["play",[5,5,[[9,2,2,0,2,[[268,1,1,0,1],[272,1,1,1,2]]],[17,2,2,2,4,[[475,1,1,2,3],[476,1,1,3,4]]],[18,1,1,4,5,[[581,1,1,4,5]]]],[8063,8178,13884,13893,15597]]],["played",[3,3,[[8,1,1,0,1,[[253,1,1,0,1]]],[9,1,1,1,2,[[272,1,1,1,2]]],[12,1,1,2,3,[[350,1,1,2,3]]]],[7683,8162,10768]]],["playing",[2,2,[[12,1,1,0,1,[[352,1,1,0,1]]],[37,1,1,1,2,[[918,1,1,1,2]]]],[10820,22981]]],["rejoice",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17309]]],["rejoicing",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16632]]],["scorneth",[2,2,[[17,2,2,0,2,[[474,2,2,0,2]]]],[13841,13852]]],["sport",[3,3,[[6,2,2,0,2,[[226,2,2,0,2]]],[19,1,1,2,3,[[653,1,1,2,3]]]],[6974,6976,17160]]]]},{"k":"H7833","v":[["*",[4,4,[[1,1,1,0,1,[[79,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,1,1,2,3,[[449,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]]],[2418,8645,13200,14160]]],["beat",[2,2,[[1,1,1,0,1,[[79,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]]],[2418,8645]]],["small",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14160]]],["wear",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13200]]]]},{"k":"H7834","v":[["*",[21,21,[[4,1,1,0,1,[[185,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,5,5,2,7,[[470,1,1,2,3],[471,1,1,3,4],[472,2,2,4,6],[473,1,1,6,7]]],[18,9,9,7,16,[[495,1,1,7,8],[513,1,1,8,9],[534,1,1,9,10],[545,1,1,10,11],[554,1,1,11,12],[555,1,1,12,13],[566,2,2,13,15],[585,1,1,15,16]]],[19,2,2,16,18,[[630,1,1,16,17],[635,1,1,17,18]]],[22,2,2,18,20,[[718,1,1,18,19],[723,1,1,19,20]]],[23,1,1,20,21,[[795,1,1,20,21]]]],[5836,8614,13725,13764,13787,13790,13830,14129,14443,14778,14934,15110,15136,15332,15363,15746,16475,16630,18435,18569,20221]]],["clouds",[11,11,[[17,4,4,0,4,[[470,1,1,0,1],[471,1,1,1,2],[472,1,1,2,3],[473,1,1,3,4]]],[18,5,5,4,9,[[513,1,1,4,5],[534,1,1,5,6],[545,1,1,6,7],[555,1,1,7,8],[585,1,1,8,9]]],[19,2,2,9,11,[[630,1,1,9,10],[635,1,1,10,11]]]],[13725,13764,13790,13830,14443,14778,14934,15136,15746,16475,16630]]],["dust",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18435]]],["heaven",[2,2,[[18,2,2,0,2,[[566,2,2,0,2]]]],[15332,15363]]],["skies",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,2,2,1,3,[[495,1,1,1,2],[554,1,1,2,3]]],[22,1,1,3,4,[[723,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]]],[8614,14129,15110,18569,20221]]],["sky",[2,2,[[4,1,1,0,1,[[185,1,1,0,1]]],[17,1,1,1,2,[[472,1,1,1,2]]]],[5836,13787]]]]},{"k":"H7835","v":[["black",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13587]]]]},{"k":"H7836","v":[["*",[12,12,[[17,3,3,0,3,[[442,1,1,0,1],[443,1,1,1,2],[459,1,1,2,3]]],[18,2,2,3,5,[[540,1,1,3,4],[555,1,1,4,5]]],[19,5,5,5,10,[[628,1,1,5,6],[634,1,1,6,7],[635,1,1,7,8],[638,1,1,8,9],[640,1,1,9,10]]],[22,1,1,10,11,[[704,1,1,10,11]]],[27,1,1,11,12,[[866,1,1,11,12]]]],[13029,13034,13441,14840,15147,16428,16590,16619,16715,16771,18139,22167]]],["+",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13034]]],["betimes",[2,2,[[17,1,1,0,1,[[459,1,1,0,1]]],[19,1,1,1,2,[[640,1,1,1,2]]]],[13441,16771]]],["early",[5,5,[[18,1,1,0,1,[[555,1,1,0,1]]],[19,2,2,1,3,[[628,1,1,1,2],[635,1,1,2,3]]],[22,1,1,3,4,[[704,1,1,3,4]]],[27,1,1,4,5,[[866,1,1,4,5]]]],[15147,16428,16619,18139,22167]]],["morning",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13029]]],["seek",[2,2,[[18,1,1,0,1,[[540,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]]],[14840,16590]]],["seeketh",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16715]]]]},{"k":"H7837","v":[["*",[23,23,[[0,3,3,0,3,[[18,1,1,0,1],[31,2,2,1,3]]],[5,1,1,3,4,[[192,1,1,3,4]]],[6,1,1,4,5,[[229,1,1,4,5]]],[8,1,1,5,6,[[244,1,1,5,6]]],[15,1,1,6,7,[[416,1,1,6,7]]],[17,3,3,7,10,[[438,1,1,7,8],[473,1,1,8,9],[476,1,1,9,10]]],[18,3,3,10,13,[[534,1,1,10,11],[585,1,1,11,12],[616,1,1,12,13]]],[21,1,1,13,14,[[676,1,1,13,14]]],[22,4,4,14,18,[[686,1,1,14,15],[692,1,1,15,16],[725,1,1,16,17],[736,1,1,17,18]]],[27,2,2,18,20,[[867,1,1,18,19],[871,1,1,19,20]]],[28,1,1,20,21,[[877,1,1,20,21]]],[29,1,1,21,22,[[882,1,1,21,22]]],[31,1,1,22,23,[[892,1,1,22,23]]]],[472,952,954,5964,7049,7417,12380,12913,13805,13906,14776,15744,16248,17624,17827,17940,18610,18794,22170,22240,22313,22423,22575]]],["day",[6,6,[[0,2,2,0,2,[[31,2,2,0,2]]],[5,1,1,2,3,[[192,1,1,2,3]]],[6,1,1,3,4,[[229,1,1,3,4]]],[8,1,1,4,5,[[244,1,1,4,5]]],[17,1,1,5,6,[[438,1,1,5,6]]]],[952,954,5964,7049,7417,12913]]],["dayspring",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13805]]],["early",[2,2,[[18,2,2,0,2,[[534,1,1,0,1],[585,1,1,1,2]]]],[14776,15744]]],["light",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17827]]],["morning",[12,12,[[0,1,1,0,1,[[18,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]],[17,1,1,2,3,[[476,1,1,2,3]]],[18,1,1,3,4,[[616,1,1,3,4]]],[21,1,1,4,5,[[676,1,1,4,5]]],[22,2,2,5,7,[[692,1,1,5,6],[736,1,1,6,7]]],[27,2,2,7,9,[[867,1,1,7,8],[871,1,1,8,9]]],[28,1,1,9,10,[[877,1,1,9,10]]],[29,1,1,10,11,[[882,1,1,10,11]]],[31,1,1,11,12,[[892,1,1,11,12]]]],[472,12380,13906,16248,17624,17940,18794,22170,22240,22313,22423,22575]]],["riseth",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18610]]]]},{"k":"H7838","v":[["black",[6,6,[[2,2,2,0,2,[[102,2,2,0,2]]],[21,2,2,2,4,[[671,1,1,2,3],[675,1,1,3,4]]],[37,2,2,4,6,[[916,2,2,4,6]]]],[3083,3089,17542,17609,22949,22953]]]]},{"k":"H7839","v":[["youth",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17523]]]]},{"k":"H7840","v":[["black",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17543]]]]},{"k":"H7841","v":[["Shehariah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10601]]]]},{"k":"H7842","v":[["Shaharaim",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10583]]]]},{"k":"H7843","v":[["*",[146,135,[[0,17,14,0,14,[[5,5,4,0,4],[8,2,2,4,6],[12,1,1,6,7],[17,4,3,7,10],[18,4,3,10,13],[37,1,1,13,14]]],[1,4,4,14,18,[[57,1,1,14,15],[61,1,1,15,16],[70,1,1,16,17],[81,1,1,17,18]]],[2,1,1,18,19,[[108,1,1,18,19]]],[3,1,1,19,20,[[148,1,1,19,20]]],[4,11,10,20,30,[[156,3,3,20,23],[161,2,2,23,25],[162,1,1,25,26],[172,2,2,26,28],[183,2,1,28,29],[184,1,1,29,30]]],[5,1,1,30,31,[[208,1,1,30,31]]],[6,7,7,31,38,[[212,1,1,31,32],[216,2,2,32,34],[230,4,4,34,38]]],[7,1,1,38,39,[[235,1,1,38,39]]],[8,6,6,39,45,[[241,1,1,39,40],[248,1,1,40,41],[249,1,1,41,42],[258,1,1,42,43],[261,2,2,43,45]]],[9,7,6,45,51,[[267,1,1,45,46],[277,1,1,46,47],[280,1,1,47,48],[286,2,2,48,50],[290,2,1,50,51]]],[11,5,4,51,55,[[320,1,1,51,52],[325,1,1,52,53],[330,2,1,53,54],[331,1,1,54,55]]],[12,5,3,55,58,[[357,1,1,55,56],[358,4,2,56,58]]],[13,10,10,58,68,[[378,2,2,58,60],[387,1,1,60,61],[390,1,1,61,62],[391,1,1,62,63],[392,1,1,63,64],[393,1,1,64,65],[400,1,1,65,66],[401,1,1,66,67],[402,1,1,67,68]]],[18,5,5,68,73,[[491,1,1,68,69],[530,1,1,69,70],[555,2,2,70,72],[583,1,1,72,73]]],[19,5,5,73,78,[[633,1,1,73,74],[638,1,1,74,75],[650,1,1,75,76],[652,1,1,76,77],[655,1,1,77,78]]],[22,11,9,78,87,[[679,1,1,78,79],[689,1,1,79,80],[692,1,1,80,81],[714,2,1,81,82],[715,1,1,82,83],[729,1,1,83,84],[732,1,1,84,85],[743,3,2,85,87]]],[23,21,21,87,108,[[746,1,1,87,88],[748,1,1,88,89],[749,1,1,89,90],[750,2,2,90,92],[755,1,1,92,93],[756,1,1,93,94],[757,3,3,94,97],[759,2,2,97,99],[762,1,1,99,100],[766,1,1,100,101],[780,1,1,101,102],[792,1,1,102,103],[793,1,1,103,104],[795,4,4,104,108]]],[24,3,3,108,111,[[798,3,3,108,111]]],[25,11,11,111,122,[[806,1,1,111,112],[810,1,1,112,113],[817,1,1,113,114],[821,2,2,114,116],[823,1,1,116,117],[824,1,1,117,118],[827,1,1,118,119],[829,1,1,119,120],[831,1,1,120,121],[844,1,1,121,122]]],[26,5,4,122,126,[[857,3,2,122,124],[858,1,1,124,125],[860,1,1,125,126]]],[27,3,3,126,129,[[870,1,1,126,127],[872,1,1,127,128],[874,1,1,128,129]]],[29,1,1,129,130,[[879,1,1,129,130]]],[33,1,1,130,131,[[901,1,1,130,131]]],[35,1,1,131,132,[[908,1,1,131,132]]],[38,3,3,132,135,[[925,1,1,132,133],[926,1,1,133,134],[927,1,1,134,135]]]],[148,149,150,154,216,220,328,452,455,456,470,471,486,1128,1734,1839,2103,2445,3308,4733,5020,5029,5035,5169,5183,5196,5446,5447,5757,5763,6459,6564,6658,6659,7075,7079,7089,7096,7196,7336,7502,7523,7820,7914,7920,8036,8260,8367,8569,8574,8708,9746,9894,10049,10073,10927,10946,10949,11444,11449,11631,11700,11720,11748,11757,11944,11987,12012,14081,14720,15151,15158,15674,16572,16697,17052,17139,17220,17658,17893,17948,18340,18364,18686,18739,18905,18922,18995,19034,19068,19094,19117,19245,19259,19273,19275,19280,19318,19321,19388,19461,19871,20098,20136,20213,20223,20232,20237,20337,20338,20340,20562,20630,20809,20912,20939,21006,21018,21104,21174,21215,21575,21985,21986,22014,22053,22217,22249,22275,22375,22701,22827,23103,23111,23131]]],["+",[31,30,[[0,6,6,0,6,[[5,1,1,0,1],[12,1,1,1,2],[17,1,1,2,3],[18,3,3,3,6]]],[2,1,1,6,7,[[108,1,1,6,7]]],[4,3,2,7,9,[[172,1,1,7,8],[183,2,1,8,9]]],[5,1,1,9,10,[[208,1,1,9,10]]],[6,1,1,10,11,[[216,1,1,10,11]]],[7,1,1,11,12,[[235,1,1,11,12]]],[8,2,2,12,14,[[241,1,1,12,13],[261,1,1,13,14]]],[9,2,2,14,16,[[267,1,1,14,15],[277,1,1,15,16]]],[11,1,1,16,17,[[320,1,1,16,17]]],[12,1,1,17,18,[[357,1,1,17,18]]],[13,3,3,18,21,[[387,1,1,18,19],[390,1,1,19,20],[393,1,1,20,21]]],[18,1,1,21,22,[[583,1,1,21,22]]],[19,1,1,22,23,[[655,1,1,22,23]]],[23,3,3,23,26,[[757,1,1,23,24],[780,1,1,24,25],[795,1,1,25,26]]],[25,3,3,26,29,[[810,1,1,26,27],[821,1,1,27,28],[844,1,1,28,29]]],[38,1,1,29,30,[[927,1,1,29,30]]]],[149,328,452,470,471,486,3308,5446,5757,6459,6658,7196,7336,7920,8036,8260,9746,10927,11631,11700,11757,15674,17220,19280,19871,20237,20630,20912,21575,23131]]],["Corrupt",[1,1,[[18,1,1,0,1,[[530,1,1,0,1]]]],[14720]]],["Destroy",[2,2,[[8,1,1,0,1,[[261,1,1,0,1]]],[22,1,1,1,2,[[743,1,1,1,2]]]],[7914,18905]]],["battered",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8569]]],["corrupt",[8,8,[[0,2,2,0,2,[[5,2,2,0,2]]],[4,2,2,2,4,[[156,2,2,2,4]]],[18,1,1,4,5,[[491,1,1,4,5]]],[19,1,1,5,6,[[652,1,1,5,6]]],[25,2,2,6,8,[[821,1,1,6,7],[824,1,1,7,8]]]],[148,149,5020,5029,14081,17139,20939,21018]]],["corrupted",[10,10,[[1,2,2,0,2,[[57,1,1,0,1],[81,1,1,1,2]]],[4,2,2,2,4,[[161,1,1,2,3],[184,1,1,3,4]]],[6,1,1,4,5,[[212,1,1,4,5]]],[25,2,2,5,7,[[817,1,1,5,6],[829,1,1,6,7]]],[27,1,1,7,8,[[870,1,1,7,8]]],[35,1,1,8,9,[[908,1,1,8,9]]],[38,1,1,9,10,[[926,1,1,9,10]]]],[1734,2445,5169,5763,6564,20809,21174,22217,22827,23111]]],["corrupters",[2,2,[[22,1,1,0,1,[[679,1,1,0,1]]],[23,1,1,1,2,[[750,1,1,1,2]]]],[17658,19117]]],["corrupting",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22053]]],["destroy",[51,48,[[0,8,8,0,8,[[5,2,2,0,2],[8,2,2,2,4],[17,3,3,4,7],[18,1,1,7,8]]],[3,1,1,8,9,[[148,1,1,8,9]]],[4,4,4,9,13,[[156,1,1,9,10],[161,1,1,10,11],[162,1,1,11,12],[172,1,1,12,13]]],[6,1,1,13,14,[[216,1,1,13,14]]],[8,1,1,14,15,[[258,1,1,14,15]]],[9,3,3,15,18,[[280,1,1,15,16],[286,1,1,16,17],[290,1,1,17,18]]],[11,3,2,18,20,[[325,1,1,18,19],[330,2,1,19,20]]],[12,1,1,20,21,[[358,1,1,20,21]]],[13,4,4,21,25,[[378,2,2,21,23],[391,1,1,23,24],[401,1,1,24,25]]],[22,6,5,25,30,[[689,1,1,25,26],[714,2,1,26,27],[729,1,1,27,28],[743,2,2,28,30]]],[23,9,9,30,39,[[749,1,1,30,31],[750,1,1,31,32],[755,1,1,32,33],[759,2,2,33,35],[792,1,1,35,36],[793,1,1,36,37],[795,2,2,37,39]]],[24,1,1,39,40,[[798,1,1,39,40]]],[25,4,4,40,44,[[806,1,1,40,41],[823,1,1,41,42],[827,1,1,42,43],[831,1,1,43,44]]],[26,4,3,44,47,[[857,3,2,44,46],[858,1,1,46,47]]],[27,1,1,47,48,[[872,1,1,47,48]]]],[150,154,216,220,452,455,456,470,4733,5035,5183,5196,5447,6659,7820,8367,8574,8708,9894,10049,10949,11444,11449,11720,11987,17893,18340,18686,18905,18922,19068,19094,19245,19318,19321,20098,20136,20223,20232,20340,20562,21006,21104,21215,21985,21986,22014,22249]]],["destroyed",[16,16,[[6,3,3,0,3,[[230,3,3,0,3]]],[9,1,1,3,4,[[290,1,1,3,4]]],[11,1,1,4,5,[[331,1,1,4,5]]],[12,1,1,5,6,[[358,1,1,5,6]]],[13,2,2,6,8,[[400,1,1,6,7],[402,1,1,7,8]]],[18,2,2,8,10,[[555,2,2,8,10]]],[22,2,2,10,12,[[692,1,1,10,11],[715,1,1,11,12]]],[23,1,1,12,13,[[756,1,1,12,13]]],[24,2,2,13,15,[[798,2,2,13,15]]],[27,1,1,15,16,[[874,1,1,15,16]]]],[7079,7089,7096,8708,10073,10949,11944,12012,15151,15158,17948,18364,19259,20337,20338,22275]]],["destroyer",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]]],[1839,19034]]],["destroyers",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19461]]],["destroyeth",[2,2,[[19,2,2,0,2,[[633,1,1,0,1],[638,1,1,1,2]]]],[16572,16697]]],["destroying",[4,4,[[12,2,2,0,2,[[358,2,2,0,2]]],[23,2,2,2,4,[[746,1,1,2,3],[795,1,1,3,4]]]],[10946,10949,18995,20213]]],["destruction",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11748]]],["down",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7075]]],["lose",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17052]]],["mar",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19275]]],["marred",[3,3,[[23,2,2,0,2,[[757,1,1,0,1],[762,1,1,1,2]]],[33,1,1,2,3,[[901,1,1,2,3]]]],[19273,19388,22701]]],["off",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22375]]],["perish",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2103]]],["spilled",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1128]]],["spoilers",[2,2,[[8,2,2,0,2,[[248,1,1,0,1],[249,1,1,1,2]]]],[7502,7523]]],["thing",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23103]]],["waster",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18739]]]]},{"k":"H7844","v":[["*",[3,2,[[26,3,2,0,2,[[851,1,1,0,1],[855,2,1,1,2]]]],[21767,21909]]],["corrupt",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21767]]],["fault",[2,1,[[26,2,1,0,1,[[855,2,1,0,1]]]],[21909]]]]},{"k":"H7845","v":[["*",[23,23,[[17,7,7,0,7,[[444,1,1,0,1],[452,1,1,1,2],[468,5,5,2,7]]],[18,9,9,7,16,[[484,1,1,7,8],[486,1,1,8,9],[493,1,1,9,10],[507,1,1,10,11],[512,1,1,11,12],[526,1,1,12,13],[532,1,1,13,14],[571,1,1,14,15],[580,1,1,15,16]]],[19,1,1,16,17,[[653,1,1,16,17]]],[22,2,2,17,19,[[716,1,1,17,18],[729,1,1,18,19]]],[25,3,3,19,22,[[820,2,2,19,21],[829,1,1,21,22]]],[31,1,1,22,23,[[890,1,1,22,23]]]],[13082,13274,13668,13672,13674,13678,13680,14010,14036,14102,14328,14417,14657,14755,15444,15553,17168,18407,18687,20885,20889,21165,22554]]],["+",[3,3,[[18,1,1,0,1,[[580,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]],[31,1,1,2,3,[[890,1,1,2,3]]]],[15553,18407,22554]]],["corruption",[3,3,[[17,1,1,0,1,[[452,1,1,0,1]]],[18,2,2,1,3,[[493,1,1,1,2],[526,1,1,2,3]]]],[13274,14102,14657]]],["destruction",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14755]]],["ditch",[2,2,[[17,1,1,0,1,[[444,1,1,0,1]]],[18,1,1,1,2,[[484,1,1,1,2]]]],[13082,14010]]],["grave",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13672]]],["pit",[13,13,[[17,4,4,0,4,[[468,4,4,0,4]]],[18,4,4,4,8,[[486,1,1,4,5],[507,1,1,5,6],[512,1,1,6,7],[571,1,1,7,8]]],[19,1,1,8,9,[[653,1,1,8,9]]],[22,1,1,9,10,[[729,1,1,9,10]]],[25,3,3,10,13,[[820,2,2,10,12],[829,1,1,12,13]]]],[13668,13674,13678,13680,14036,14328,14417,15444,17168,18687,20885,20889,21165]]]]},{"k":"H7846","v":[["revolters",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22154]]]]},{"k":"H7847","v":[["*",[6,6,[[3,4,4,0,4,[[121,4,4,0,4]]],[19,2,2,4,6,[[631,1,1,4,5],[634,1,1,5,6]]]],[3804,3811,3812,3821,16505,16600]]],["aside",[4,4,[[3,4,4,0,4,[[121,4,4,0,4]]]],[3804,3811,3812,3821]]],["decline",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16600]]],["turn",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16505]]]]},{"k":"H7848","v":[["*",[28,28,[[1,26,26,0,26,[[74,5,5,0,5],[75,4,4,5,9],[76,2,2,9,11],[79,2,2,11,13],[84,2,2,13,15],[85,3,3,15,18],[86,6,6,18,24],[87,2,2,24,26]]],[4,1,1,26,27,[[162,1,1,26,27]]],[22,1,1,27,28,[[719,1,1,27,28]]]],[2200,2205,2208,2218,2223,2250,2261,2267,2272,2273,2278,2383,2387,2538,2555,2586,2597,2602,2605,2608,2614,2619,2629,2632,2634,2639,5189,18470]]],["shittim",[27,27,[[1,26,26,0,26,[[74,5,5,0,5],[75,4,4,5,9],[76,2,2,9,11],[79,2,2,11,13],[84,2,2,13,15],[85,3,3,15,18],[86,6,6,18,24],[87,2,2,24,26]]],[4,1,1,26,27,[[162,1,1,26,27]]]],[2200,2205,2208,2218,2223,2250,2261,2267,2272,2273,2278,2383,2387,2538,2555,2586,2597,2602,2605,2608,2614,2619,2629,2632,2634,2639,5189]]],["tree",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18470]]]]},{"k":"H7849","v":[["*",[6,5,[[3,2,1,0,1,[[127,2,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[17,1,1,2,3,[[447,1,1,2,3]]],[18,1,1,3,4,[[565,1,1,3,4]]],[23,1,1,4,5,[[752,1,1,4,5]]]],[4056,8468,13151,15317,19155]]],["+",[2,1,[[3,2,1,0,1,[[127,2,1,0,1]]]],[4056]]],["enlargeth",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13151]]],["out",[1,1,[[18,1,1,0,1,[[565,1,1,0,1]]]],[15317]]],["spread",[2,2,[[9,1,1,0,1,[[283,1,1,0,1]]],[23,1,1,1,2,[[752,1,1,1,2]]]],[8468,19155]]]]},{"k":"H7850","v":[["scourges",[1,1,[[5,1,1,0,1,[[209,1,1,0,1]]]],[6473]]]]},{"k":"H7851","v":[["*",[5,5,[[3,1,1,0,1,[[141,1,1,0,1]]],[5,2,2,1,3,[[188,1,1,1,2],[189,1,1,2,3]]],[28,1,1,3,4,[[878,1,1,3,4]]],[32,1,1,4,5,[[898,1,1,4,5]]]],[4472,5870,5894,22361,22653]]],["+",[1,1,[[5,1,1,0,1,[[189,1,1,0,1]]]],[5894]]],["Shittim",[4,4,[[3,1,1,0,1,[[141,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]],[28,1,1,2,3,[[878,1,1,2,3]]],[32,1,1,3,4,[[898,1,1,3,4]]]],[4472,5870,22361,22653]]]]},{"k":"H7852","v":[["*",[6,6,[[0,3,3,0,3,[[26,1,1,0,1],[48,1,1,1,2],[49,1,1,2,3]]],[17,2,2,3,5,[[451,1,1,3,4],[465,1,1,4,5]]],[18,1,1,5,6,[[532,1,1,5,6]]]],[768,1496,1521,13247,13578,14735]]],["+",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[768]]],["against",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13578]]],["hate",[2,2,[[0,1,1,0,1,[[49,1,1,0,1]]],[18,1,1,1,2,[[532,1,1,1,2]]]],[1521,14735]]],["hated",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1496]]],["hateth",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13247]]]]},{"k":"H7853","v":[["*",[6,6,[[18,5,5,0,5,[[515,1,1,0,1],[548,1,1,1,2],[586,3,3,2,5]]],[37,1,1,5,6,[[913,1,1,5,6]]]],[14510,14989,15759,15775,15784,22913]]],["adversaries",[5,5,[[18,5,5,0,5,[[515,1,1,0,1],[548,1,1,1,2],[586,3,3,2,5]]]],[14510,14989,15759,15775,15784]]],["resist",[1,1,[[37,1,1,0,1,[[913,1,1,0,1]]]],[22913]]]]},{"k":"H7854","v":[["*",[27,23,[[3,2,2,0,2,[[138,2,2,0,2]]],[8,1,1,2,3,[[264,1,1,2,3]]],[9,1,1,3,4,[[285,1,1,3,4]]],[10,4,4,4,8,[[295,1,1,4,5],[301,3,3,5,8]]],[12,1,1,8,9,[[358,1,1,8,9]]],[17,14,11,9,20,[[436,7,5,9,14],[437,7,6,14,20]]],[18,1,1,20,21,[[586,1,1,20,21]]],[37,3,2,21,23,[[913,3,2,21,23]]]],[4397,4407,7971,8533,8882,9122,9131,9133,10935,12875,12876,12877,12878,12881,12892,12893,12894,12895,12897,12898,15761,22913,22914]]],["+",[2,2,[[10,1,1,0,1,[[301,1,1,0,1]]],[17,1,1,1,2,[[437,1,1,1,2]]]],[9131,12898]]],["Satan",[18,14,[[12,1,1,0,1,[[358,1,1,0,1]]],[17,13,10,1,11,[[436,7,5,1,6],[437,6,5,6,11]]],[18,1,1,11,12,[[586,1,1,11,12]]],[37,3,2,12,14,[[913,3,2,12,14]]]],[10935,12875,12876,12877,12878,12881,12892,12893,12894,12895,12897,15761,22913,22914]]],["adversaries",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8533]]],["adversary",[5,5,[[3,1,1,0,1,[[138,1,1,0,1]]],[8,1,1,1,2,[[264,1,1,1,2]]],[10,3,3,2,5,[[295,1,1,2,3],[301,2,2,3,5]]]],[4397,7971,8882,9122,9133]]],["withstand",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4407]]]]},{"k":"H7855","v":[["accusation",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12116]]]]},{"k":"H7856","v":[["Sitnah",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[713]]]]},{"k":"H7857","v":[["*",[31,30,[[2,3,3,0,3,[[95,1,1,0,1],[104,2,2,1,3]]],[10,1,1,3,4,[[312,1,1,3,4]]],[13,1,1,4,5,[[398,1,1,4,5]]],[17,1,1,5,6,[[449,1,1,5,6]]],[18,4,4,6,10,[[546,2,2,6,8],[555,1,1,8,9],[601,1,1,9,10]]],[21,1,1,10,11,[[678,1,1,10,11]]],[22,9,9,11,20,[[686,1,1,11,12],[688,1,1,12,13],[706,4,4,13,17],[708,1,1,17,18],[721,1,1,18,19],[744,1,1,19,20]]],[23,3,2,20,22,[[752,1,1,20,21],[791,2,1,21,22]]],[25,4,4,22,26,[[814,2,2,22,24],[817,1,1,24,25],[839,1,1,25,26]]],[26,4,4,26,30,[[860,4,4,26,30]]]],[2877,3179,3180,9518,11879,13200,14937,14950,15133,16106,17647,17815,17872,18166,18179,18181,18182,18245,18507,18934,19159,20075,20719,20721,20771,21447,22046,22058,22062,22076]]],["+",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9518]]],["away",[2,2,[[17,1,1,0,1,[[449,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[13200,20771]]],["drown",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17647]]],["flowing",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18934]]],["overflow",[10,10,[[18,2,2,0,2,[[546,2,2,0,2]]],[22,4,4,2,6,[[686,1,1,2,3],[688,1,1,3,4],[706,1,1,4,5],[721,1,1,5,6]]],[23,1,1,6,7,[[791,1,1,6,7]]],[26,3,3,7,10,[[860,3,3,7,10]]]],[14937,14950,17815,17872,18181,18507,20075,22046,22062,22076]]],["overflowed",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15133]]],["overflowing",[8,8,[[22,4,4,0,4,[[706,3,3,0,3],[708,1,1,3,4]]],[23,1,1,4,5,[[791,1,1,4,5]]],[25,3,3,5,8,[[814,2,2,5,7],[839,1,1,7,8]]]],[18166,18179,18182,18245,20075,20719,20721,21447]]],["overflown",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22058]]],["overwhelmed",[1,1,[[18,1,1,0,1,[[601,1,1,0,1]]]],[16106]]],["ran",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11879]]],["rinsed",[3,3,[[2,3,3,0,3,[[95,1,1,0,1],[104,2,2,1,3]]]],[2877,3179,3180]]],["rusheth",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19159]]]]},{"k":"H7858","v":[["*",[6,6,[[17,1,1,0,1,[[473,1,1,0,1]]],[18,1,1,1,2,[[509,1,1,1,2]]],[19,1,1,2,3,[[654,1,1,2,3]]],[26,2,2,3,5,[[858,1,1,3,4],[860,1,1,4,5]]],[33,1,1,5,6,[[900,1,1,5,6]]]],[13818,14361,17173,22014,22058,22692]]],["flood",[3,3,[[26,2,2,0,2,[[858,1,1,0,1],[860,1,1,1,2]]],[33,1,1,2,3,[[900,1,1,2,3]]]],[22014,22058,22692]]],["floods",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14361]]],["outrageous",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17173]]],["waters",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13818]]]]},{"k":"H7859","v":[["side",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21938]]]]},{"k":"H7860","v":[["*",[25,25,[[1,5,5,0,5,[[54,5,5,0,5]]],[3,1,1,5,6,[[127,1,1,5,6]]],[4,7,7,6,13,[[153,1,1,6,7],[168,1,1,7,8],[172,3,3,8,11],[181,1,1,11,12],[183,1,1,12,13]]],[5,5,5,13,18,[[187,1,1,13,14],[189,1,1,14,15],[194,1,1,15,16],[209,1,1,16,17],[210,1,1,17,18]]],[12,3,3,18,21,[[360,1,1,18,19],[363,1,1,19,20],[364,1,1,20,21]]],[13,3,3,21,24,[[385,1,1,21,22],[392,1,1,22,23],[400,1,1,23,24]]],[19,1,1,24,25,[[633,1,1,24,25]]]],[1638,1642,1646,1647,1651,4040,4907,5360,5432,5435,5436,5689,5756,5861,5895,6035,6462,6477,10987,11106,11110,11587,11743,11946,16547]]],["officers",[23,23,[[1,5,5,0,5,[[54,5,5,0,5]]],[3,1,1,5,6,[[127,1,1,5,6]]],[4,7,7,6,13,[[153,1,1,6,7],[168,1,1,7,8],[172,3,3,8,11],[181,1,1,11,12],[183,1,1,12,13]]],[5,5,5,13,18,[[187,1,1,13,14],[189,1,1,14,15],[194,1,1,15,16],[209,1,1,16,17],[210,1,1,17,18]]],[12,3,3,18,21,[[360,1,1,18,19],[363,1,1,19,20],[364,1,1,20,21]]],[13,2,2,21,23,[[385,1,1,21,22],[400,1,1,22,23]]]],[1638,1642,1646,1647,1651,4040,4907,5360,5432,5435,5436,5689,5756,5861,5895,6035,6462,6477,10987,11106,11110,11587,11946]]],["overseer",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16547]]],["ruler",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11743]]]]},{"k":"H7861","v":[["Shitrai",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11138]]]]},{"k":"H7862","v":[["*",[3,3,[[18,2,2,0,2,[[545,1,1,0,1],[553,1,1,1,2]]],[22,1,1,2,3,[[696,1,1,2,3]]]],[14929,15092,18004]]],["present",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18004]]],["presents",[2,2,[[18,2,2,0,2,[[545,1,1,0,1],[553,1,1,1,2]]]],[14929,15092]]]]},{"k":"H7863","v":[["excellency",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13332]]]]},{"k":"H7864","v":[]},{"k":"H7865","v":[["Sion",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5052]]]]},{"k":"H7866","v":[["Shion",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6340]]]]},{"k":"H7867","v":[["grayheaded",[2,2,[[8,1,1,0,1,[[247,1,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]]],[7462,13213]]]]},{"k":"H7868","v":[["elders",[5,5,[[14,5,5,0,5,[[407,2,2,0,2],[408,3,3,2,5]]]],[12139,12143,12158,12159,12165]]]]},{"k":"H7869","v":[["+",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9222]]]]},{"k":"H7870","v":[["captivity",[1,1,[[18,1,1,0,1,[[603,1,1,0,1]]]],[16116]]]]},{"k":"H7871","v":[["lay",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8543]]]]},{"k":"H7872","v":[["*",[19,19,[[0,5,5,0,5,[[14,1,1,0,1],[24,1,1,1,2],[41,1,1,2,3],[43,2,2,3,5]]],[2,1,1,5,6,[[108,1,1,5,6]]],[4,1,1,6,7,[[184,1,1,6,7]]],[6,1,1,7,8,[[218,1,1,7,8]]],[7,1,1,8,9,[[235,1,1,8,9]]],[10,2,2,9,11,[[292,2,2,9,11]]],[12,1,1,11,12,[[366,1,1,11,12]]],[17,1,1,12,13,[[476,1,1,12,13]]],[18,2,2,13,15,[[548,1,1,13,14],[569,1,1,14,15]]],[19,2,2,15,17,[[643,1,1,15,16],[647,1,1,16,17]]],[22,1,1,17,18,[[724,1,1,17,18]]],[27,1,1,18,19,[[868,1,1,18,19]]]],[375,666,1290,1353,1355,3313,5783,6751,7205,8776,8779,11192,13920,14994,15425,16871,16983,18590,22187]]],["+",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11192]]],["age",[5,5,[[0,2,2,0,2,[[14,1,1,0,1],[24,1,1,1,2]]],[6,1,1,2,3,[[218,1,1,2,3]]],[7,1,1,3,4,[[235,1,1,3,4]]],[18,1,1,4,5,[[569,1,1,4,5]]]],[375,666,6751,7205,15425]]],["grayheaded",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14994]]],["hairs",[6,6,[[0,3,3,0,3,[[41,1,1,0,1],[43,2,2,1,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[22,1,1,4,5,[[724,1,1,4,5]]],[27,1,1,5,6,[[868,1,1,5,6]]]],[1290,1353,1355,5783,18590,22187]]],["head",[4,4,[[2,1,1,0,1,[[108,1,1,0,1]]],[10,2,2,1,3,[[292,2,2,1,3]]],[19,1,1,3,4,[[647,1,1,3,4]]]],[3313,8776,8779,16983]]],["hoary",[2,2,[[17,1,1,0,1,[[476,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]]],[13920,16871]]]]},{"k":"H7873","v":[["pursuing",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9368]]]]},{"k":"H7874","v":[["plaister",[2,2,[[4,2,2,0,2,[[179,2,2,0,2]]]],[5587,5589]]]]},{"k":"H7875","v":[["*",[4,4,[[4,2,2,0,2,[[179,2,2,0,2]]],[22,1,1,2,3,[[711,1,1,2,3]]],[29,1,1,3,4,[[880,1,1,3,4]]]],[5587,5589,18291,22380]]],["lime",[2,2,[[22,1,1,0,1,[[711,1,1,0,1]]],[29,1,1,1,2,[[880,1,1,1,2]]]],[18291,22380]]],["plaister",[2,2,[[4,2,2,0,2,[[179,2,2,0,2]]]],[5587,5589]]]]},{"k":"H7876","v":[["unmindful",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5776]]]]},{"k":"H7877","v":[["Shiza",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10715]]]]},{"k":"H7878","v":[["*",[20,20,[[6,1,1,0,1,[[215,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[17,2,2,2,4,[[442,1,1,2,3],[447,1,1,3,4]]],[18,14,14,4,18,[[532,1,1,4,5],[546,1,1,5,6],[554,3,3,6,9],[582,1,1,9,10],[596,6,6,10,16],[620,1,1,16,17],[622,1,1,17,18]]],[19,1,1,18,19,[[633,1,1,18,19]]],[22,1,1,19,20,[[731,1,1,19,20]]]],[6633,10829,13019,13136,14749,14947,15096,15099,15105,15608,15913,15921,15925,15946,15976,16046,16298,16325,16562,18719]]],["Speak",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6633]]],["commune",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15099]]],["complain",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13019]]],["complained",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15096]]],["declare",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18719]]],["meditate",[5,5,[[18,5,5,0,5,[[596,5,5,0,5]]]],[15913,15921,15946,15976,16046]]],["muse",[1,1,[[18,1,1,0,1,[[620,1,1,0,1]]]],[16298]]],["pray",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14749]]],["speak",[3,3,[[17,1,1,0,1,[[447,1,1,0,1]]],[18,2,2,1,3,[[546,1,1,1,2],[622,1,1,2,3]]]],[13136,14947,16325]]],["talk",[5,5,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,3,3,1,4,[[554,1,1,1,2],[582,1,1,2,3],[596,1,1,3,4]]],[19,1,1,4,5,[[633,1,1,4,5]]]],[10829,15105,15608,15925,16562]]]]},{"k":"H7879","v":[["*",[13,13,[[8,1,1,0,1,[[236,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]],[11,1,1,2,3,[[321,1,1,2,3]]],[17,5,5,3,8,[[442,1,1,3,4],[444,1,1,4,5],[445,1,1,5,6],[456,1,1,6,7],[458,1,1,7,8]]],[18,4,4,8,12,[[532,1,1,8,9],[541,1,1,9,10],[581,1,1,10,11],[619,1,1,11,12]]],[19,1,1,12,13,[[650,1,1,12,13]]]],[7228,9368,9767,13021,13078,13087,13359,13421,14734,14851,15605,16288,17073]]],["babbling",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17073]]],["communication",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9767]]],["complaint",[8,8,[[8,1,1,0,1,[[236,1,1,0,1]]],[17,5,5,1,6,[[442,1,1,1,2],[444,1,1,2,3],[445,1,1,3,4],[456,1,1,4,5],[458,1,1,5,6]]],[18,2,2,6,8,[[532,1,1,6,7],[619,1,1,7,8]]]],[7228,13021,13078,13087,13359,13421,14734,16288]]],["meditation",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15605]]],["prayer",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14851]]],["talking",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9368]]]]},{"k":"H7880","v":[["*",[4,4,[[0,2,2,0,2,[[1,1,1,0,1],[20,1,1,1,2]]],[17,2,2,2,4,[[465,2,2,2,4]]]],[35,528,13561,13564]]],["bushes",[2,2,[[17,2,2,0,2,[[465,2,2,0,2]]]],[13561,13564]]],["plant",[1,1,[[0,1,1,0,1,[[1,1,1,0,1]]]],[35]]],["shrubs",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[528]]]]},{"k":"H7881","v":[["*",[3,3,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,2,2,1,3,[[596,2,2,1,3]]]],[13207,15995,15997]]],["meditation",[2,2,[[18,2,2,0,2,[[596,2,2,0,2]]]],[15995,15997]]],["prayer",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13207]]]]},{"k":"H7882","v":[["*",[2,2,[[18,2,2,0,2,[[534,1,1,0,1],[596,1,1,1,2]]]],[14774,15983]]],["pit",[1,1,[[18,1,1,0,1,[[534,1,1,0,1]]]],[14774]]],["pits",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15983]]]]},{"k":"H7883","v":[["*",[4,4,[[5,1,1,0,1,[[199,1,1,0,1]]],[12,1,1,1,2,[[350,1,1,1,2]]],[22,1,1,2,3,[[701,1,1,2,3]]],[23,1,1,3,4,[[746,1,1,3,4]]]],[6157,10765,18080,18983]]],["Shihor",[1,1,[[12,1,1,0,1,[[350,1,1,0,1]]]],[10765]]],["Sihor",[3,3,[[5,1,1,0,1,[[199,1,1,0,1]]],[22,1,1,1,2,[[701,1,1,1,2]]],[23,1,1,2,3,[[746,1,1,2,3]]]],[6157,18080,18983]]]]},{"k":"H7884","v":[["Shihorlibnath",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6347]]]]},{"k":"H7885","v":[["oars",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18300]]]]},{"k":"H7886","v":[["Shiloh",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1483]]]]},{"k":"H7887","v":[["*",[32,30,[[5,8,8,0,8,[[204,4,4,0,4],[205,1,1,4,5],[207,1,1,5,6],[208,2,2,6,8]]],[6,5,4,8,12,[[228,1,1,8,9],[231,4,3,9,12]]],[8,10,9,12,21,[[236,3,3,12,15],[237,1,1,15,16],[238,2,1,16,17],[239,3,3,17,20],[249,1,1,20,21]]],[10,3,3,21,24,[[292,1,1,21,22],[304,2,2,22,24]]],[18,1,1,24,25,[[555,1,1,24,25]]],[23,5,5,25,30,[[751,2,2,25,27],[770,2,2,27,29],[785,1,1,29,30]]]],[6294,6301,6302,6303,6372,6383,6435,6438,7024,7114,7121,7123,7215,7221,7236,7254,7297,7300,7301,7309,7511,8797,9220,9222,15173,19131,19133,19578,19581,19962]]],["+",[3,3,[[5,1,1,0,1,[[208,1,1,0,1]]],[8,1,1,1,2,[[239,1,1,1,2]]],[23,1,1,2,3,[[785,1,1,2,3]]]],[6435,7300,19962]]],["Shiloh",[29,27,[[5,7,7,0,7,[[204,4,4,0,4],[205,1,1,4,5],[207,1,1,5,6],[208,1,1,6,7]]],[6,5,4,7,11,[[228,1,1,7,8],[231,4,3,8,11]]],[8,9,8,11,19,[[236,3,3,11,14],[237,1,1,14,15],[238,2,1,15,16],[239,2,2,16,18],[249,1,1,18,19]]],[10,3,3,19,22,[[292,1,1,19,20],[304,2,2,20,22]]],[18,1,1,22,23,[[555,1,1,22,23]]],[23,4,4,23,27,[[751,2,2,23,25],[770,2,2,25,27]]]],[6294,6301,6302,6303,6372,6383,6438,7024,7114,7121,7123,7215,7221,7236,7254,7297,7301,7309,7511,8797,9220,9222,15173,19131,19133,19578,19581]]]]},{"k":"H7888","v":[["*",[6,6,[[10,3,3,0,3,[[301,1,1,0,1],[302,1,1,1,2],[305,1,1,2,3]]],[12,1,1,3,4,[[346,1,1,3,4]]],[13,2,2,4,6,[[375,1,1,4,5],[376,1,1,5,6]]]],[9137,9166,9278,10620,11393,11410]]],["Shilonite",[5,5,[[10,3,3,0,3,[[301,1,1,0,1],[302,1,1,1,2],[305,1,1,2,3]]],[13,2,2,3,5,[[375,1,1,3,4],[376,1,1,4,5]]]],[9137,9166,9278,11393,11410]]],["Shilonites",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10620]]]]},{"k":"H7889","v":[["Shimon",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10405]]]]},{"k":"H7890","v":[["piss",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]]],[10051,18342]]]]},{"k":"H7891","v":[["*",[85,77,[[1,3,2,0,2,[[64,3,2,0,2]]],[3,1,1,2,3,[[137,1,1,2,3]]],[6,2,2,3,5,[[215,2,2,3,5]]],[8,1,1,5,6,[[253,1,1,5,6]]],[9,2,1,6,7,[[285,2,1,6,7]]],[10,1,1,7,8,[[300,1,1,7,8]]],[12,8,7,8,15,[[343,1,1,8,9],[346,1,1,9,10],[352,4,3,10,13],[353,2,2,13,15]]],[13,9,8,15,23,[[371,2,2,15,17],[375,1,1,17,18],[386,1,1,18,19],[389,1,1,19,20],[395,1,1,20,21],[401,3,2,21,23]]],[14,6,5,23,28,[[404,4,3,23,26],[409,1,1,26,27],[412,1,1,27,28]]],[15,17,16,28,44,[[419,5,4,28,32],[422,2,2,32,34],[423,2,2,34,36],[424,6,6,36,42],[425,2,2,42,44]]],[18,26,25,44,69,[[490,1,1,44,45],[498,1,1,45,46],[504,1,1,46,47],[510,1,1,47,48],[534,1,1,48,49],[536,1,1,49,50],[542,1,1,50,51],[545,3,3,51,54],[564,1,1,54,55],[566,1,1,55,56],[573,3,2,56,58],[575,1,1,58,59],[578,1,1,59,60],[581,1,1,60,61],[582,1,1,61,62],[583,1,1,62,63],[585,1,1,63,64],[614,2,2,64,66],[615,1,1,66,67],[621,1,1,67,68],[626,1,1,68,69]]],[19,1,1,69,70,[[652,1,1,69,70]]],[20,2,1,70,71,[[660,2,1,70,71]]],[22,3,3,71,74,[[683,1,1,71,72],[704,1,1,72,73],[720,1,1,73,74]]],[23,1,1,74,75,[[764,1,1,74,75]]],[25,1,1,75,76,[[841,1,1,75,76]]],[35,1,1,76,77,[[907,1,1,76,77]]]],[1921,1941,4357,6624,6626,7682,8546,9091,10487,10648,10807,10810,10818,10829,10843,11280,11281,11375,11608,11669,11819,11981,11991,12068,12092,12097,12180,12276,12421,12464,12487,12493,12577,12588,12610,12611,12652,12653,12666,12669,12670,12671,12676,12681,14080,14204,14291,14369,14775,14806,14873,14904,14925,14932,15308,15327,15466,15467,15491,15514,15604,15608,15663,15743,16225,16226,16236,16314,16386,17133,17341,17740,18131,18490,19435,21521,22819]]],["+",[2,2,[[3,1,1,0,1,[[137,1,1,0,1]]],[18,1,1,1,2,[[614,1,1,1,2]]]],[4357,16226]]],["Sing",[12,12,[[1,1,1,0,1,[[64,1,1,0,1]]],[12,2,2,1,3,[[353,2,2,1,3]]],[18,7,7,3,10,[[510,1,1,3,4],[545,2,2,4,6],[573,1,1,6,7],[582,1,1,7,8],[614,1,1,8,9],[626,1,1,9,10]]],[22,1,1,10,11,[[720,1,1,10,11]]],[23,1,1,11,12,[[764,1,1,11,12]]]],[1941,10829,10843,14369,14904,14932,15467,15608,16225,16386,18490,19435]]],["men",[3,3,[[9,1,1,0,1,[[285,1,1,0,1]]],[13,1,1,1,2,[[401,1,1,1,2]]],[14,1,1,2,3,[[404,1,1,2,3]]]],[8546,11991,12092]]],["sang",[4,4,[[1,1,1,0,1,[[64,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[13,1,1,2,3,[[395,1,1,2,3]]],[18,1,1,3,4,[[583,1,1,3,4]]]],[1921,6624,11819,15663]]],["sing",[19,18,[[1,1,1,0,1,[[64,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[18,15,14,2,16,[[490,1,1,2,3],[498,1,1,3,4],[504,1,1,4,5],[534,1,1,5,6],[536,1,1,6,7],[542,1,1,7,8],[566,1,1,8,9],[573,2,1,9,10],[575,1,1,10,11],[578,1,1,11,12],[581,1,1,12,13],[585,1,1,13,14],[615,1,1,14,15],[621,1,1,15,16]]],[22,1,1,16,17,[[683,1,1,16,17]]],[35,1,1,17,18,[[907,1,1,17,18]]]],[1921,6626,14080,14204,14291,14775,14806,14873,15327,15466,15491,15514,15604,15743,16236,16314,17740,22819]]],["singer",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10487]]],["singers",[36,34,[[10,1,1,0,1,[[300,1,1,0,1]]],[12,5,4,1,5,[[346,1,1,1,2],[352,4,3,2,5]]],[13,6,6,5,11,[[371,2,2,5,7],[375,1,1,7,8],[386,1,1,8,9],[389,1,1,9,10],[401,1,1,10,11]]],[14,4,4,11,15,[[404,2,2,11,13],[409,1,1,13,14],[412,1,1,14,15]]],[15,15,15,15,30,[[419,3,3,15,18],[422,2,2,18,20],[423,2,2,20,22],[424,6,6,22,28],[425,2,2,28,30]]],[18,2,2,30,32,[[545,1,1,30,31],[564,1,1,31,32]]],[20,2,1,32,33,[[660,2,1,32,33]]],[25,1,1,33,34,[[841,1,1,33,34]]]],[9091,10648,10807,10810,10818,11280,11281,11375,11608,11669,11981,12068,12097,12180,12276,12421,12464,12493,12577,12588,12610,12611,12652,12653,12666,12669,12670,12671,12676,12681,14925,15308,17341,21521]]],["singeth",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17133]]],["singing",[3,2,[[8,1,1,0,1,[[253,1,1,0,1]]],[15,2,1,1,2,[[419,2,1,1,2]]]],[7682,12487]]],["sung",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18131]]],["women",[3,3,[[9,1,1,0,1,[[285,1,1,0,1]]],[13,1,1,1,2,[[401,1,1,1,2]]],[14,1,1,2,3,[[404,1,1,2,3]]]],[8546,11991,12092]]]]},{"k":"H7892","v":[["*",[59,56,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[3,1,1,2,3,[[137,1,1,2,3]]],[4,6,5,3,8,[[183,5,4,3,7],[184,1,1,7,8]]],[6,1,1,8,9,[[215,1,1,8,9]]],[9,1,1,9,10,[[288,1,1,9,10]]],[10,1,1,10,11,[[294,1,1,10,11]]],[12,7,7,11,18,[[343,2,2,11,13],[350,1,1,13,14],[352,1,1,14,15],[353,1,1,15,16],[362,2,2,16,18]]],[13,7,7,18,25,[[371,1,1,18,19],[373,1,1,19,20],[389,2,2,20,22],[395,2,2,22,24],[400,1,1,24,25]]],[15,3,3,25,28,[[424,3,3,25,28]]],[18,12,11,28,39,[[505,1,1,28,29],[510,1,1,29,30],[517,1,1,30,31],[519,1,1,31,32],[546,1,1,32,33],[573,1,1,33,34],[575,1,1,34,35],[614,3,2,35,37],[621,1,1,37,38],[626,1,1,38,39]]],[19,1,1,39,40,[[652,1,1,39,40]]],[20,2,2,40,42,[[665,1,1,40,41],[670,1,1,41,42]]],[21,2,1,42,43,[[671,2,1,42,43]]],[22,7,7,43,50,[[683,1,1,43,44],[701,2,2,44,46],[702,1,1,46,47],[704,1,1,47,48],[708,1,1,48,49],[720,1,1,49,50]]],[25,2,2,50,52,[[827,1,1,50,51],[834,1,1,51,52]]],[29,4,4,52,56,[[883,1,1,52,53],[884,1,1,53,54],[886,2,2,54,56]]]],[900,1921,4357,5747,5749,5750,5758,5802,6635,8603,8876,10485,10486,10768,10807,10862,11052,11053,11281,11330,11669,11674,11818,11819,11945,12651,12660,12670,14306,14369,14528,14563,14965,15466,15491,16225,16226,16314,16386,17133,17434,17527,17538,17740,18092,18093,18104,18131,18246,18490,21113,21312,22446,22455,22484,22491]]],["+",[3,2,[[18,3,2,0,2,[[505,1,1,0,1],[614,2,1,1,2]]]],[14306,16225]]],["musical",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[15,1,1,1,2,[[424,1,1,1,2]]]],[10862,12660]]],["musick",[7,7,[[12,1,1,0,1,[[352,1,1,0,1]]],[13,4,4,1,5,[[371,1,1,1,2],[373,1,1,2,3],[389,1,1,3,4],[400,1,1,4,5]]],[20,1,1,5,6,[[670,1,1,5,6]]],[29,1,1,6,7,[[884,1,1,6,7]]]],[10807,11281,11330,11669,11945,17527,22455]]],["sing",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18092]]],["singers",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11819]]],["singing",[4,4,[[12,2,2,0,2,[[343,1,1,0,1],[350,1,1,1,2]]],[13,1,1,2,3,[[389,1,1,2,3]]],[15,1,1,3,4,[[424,1,1,3,4]]]],[10486,10768,11674,12651]]],["song",[30,29,[[1,1,1,0,1,[[64,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[4,6,5,2,7,[[183,5,4,2,6],[184,1,1,6,7]]],[6,1,1,7,8,[[215,1,1,7,8]]],[9,1,1,8,9,[[288,1,1,8,9]]],[12,2,2,9,11,[[343,1,1,9,10],[362,1,1,10,11]]],[13,1,1,11,12,[[395,1,1,11,12]]],[18,9,9,12,21,[[510,1,1,12,13],[517,1,1,13,14],[519,1,1,14,15],[546,1,1,15,16],[573,1,1,16,17],[575,1,1,17,18],[614,1,1,18,19],[621,1,1,19,20],[626,1,1,20,21]]],[20,1,1,21,22,[[665,1,1,21,22]]],[21,1,1,22,23,[[671,1,1,22,23]]],[22,5,5,23,28,[[683,1,1,23,24],[702,1,1,24,25],[704,1,1,25,26],[708,1,1,26,27],[720,1,1,27,28]]],[25,1,1,28,29,[[834,1,1,28,29]]]],[1921,4357,5747,5749,5750,5758,5802,6635,8603,10485,11052,11818,14369,14528,14563,14965,15466,15491,16226,16314,16386,17434,17538,17740,18104,18131,18246,18490,21312]]],["songs",[11,11,[[0,1,1,0,1,[[30,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]],[12,1,1,2,3,[[362,1,1,2,3]]],[15,1,1,3,4,[[424,1,1,3,4]]],[19,1,1,4,5,[[652,1,1,4,5]]],[21,1,1,5,6,[[671,1,1,5,6]]],[22,1,1,6,7,[[701,1,1,6,7]]],[25,1,1,7,8,[[827,1,1,7,8]]],[29,3,3,8,11,[[883,1,1,8,9],[886,2,2,9,11]]]],[900,8876,11053,12670,17133,17538,18093,21113,22446,22484,22491]]]]},{"k":"H7893","v":[["marble",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11166]]]]},{"k":"H7894","v":[["Shisha",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8847]]]]},{"k":"H7895","v":[["Shishak",[7,6,[[10,2,2,0,2,[[301,1,1,0,1],[304,1,1,1,2]]],[13,5,4,2,6,[[378,5,4,2,6]]]],[9148,9243,11439,11442,11444,11446]]]]},{"k":"H7896","v":[["*",[83,80,[[0,8,7,0,7,[[2,1,1,0,1],[3,1,1,1,2],[29,2,1,2,3],[40,1,1,3,4],[45,1,1,4,5],[47,2,2,5,7]]],[1,8,7,7,14,[[56,1,1,7,8],[59,1,1,8,9],[70,3,2,9,11],[72,2,2,11,13],[82,1,1,13,14]]],[3,2,2,14,16,[[128,1,1,14,15],[140,1,1,15,16]]],[7,2,2,16,18,[[234,1,1,16,17],[235,1,1,17,18]]],[8,2,2,18,20,[[237,1,1,18,19],[239,1,1,19,20]]],[9,3,3,20,23,[[279,1,1,20,21],[285,1,1,21,22],[288,1,1,22,23]]],[10,1,1,23,24,[[301,1,1,23,24]]],[17,8,8,24,32,[[442,1,1,24,25],[444,1,1,25,26],[445,1,1,26,27],[449,1,1,27,28],[457,1,1,28,29],[465,1,1,29,30],[473,2,2,30,32]]],[18,30,30,32,62,[[480,1,1,32,33],[485,1,1,33,34],[486,1,1,34,35],[489,1,1,35,36],[490,1,1,36,37],[494,1,1,37,38],[495,1,1,38,39],[498,4,4,39,43],[522,1,1,43,44],[525,1,1,44,45],[539,1,1,45,46],[550,2,2,46,48],[560,2,2,48,50],[561,2,2,50,52],[565,2,2,52,54],[567,1,1,54,55],[578,1,1,55,56],[581,1,1,56,57],[587,1,1,57,58],[609,1,1,58,59],[616,1,1,59,60],[617,1,1,60,61],[618,1,1,61,62]]],[19,4,4,62,66,[[649,1,1,62,63],[651,1,1,63,64],[653,1,1,64,65],[654,1,1,65,66]]],[22,6,5,66,71,[[683,1,1,66,67],[693,1,1,67,68],[694,1,1,68,69],[700,2,1,69,70],[704,1,1,70,71]]],[23,7,7,71,78,[[746,1,1,71,72],[747,1,1,72,73],[757,1,1,73,74],[766,1,1,74,75],[775,1,1,75,76],[794,1,1,76,77],[795,1,1,77,78]]],[27,2,2,78,80,[[863,1,1,78,79],[867,1,1,79,80]]]],[70,104,870,1228,1390,1465,1468,1708,1778,2099,2107,2145,2175,2477,4070,4447,7187,7206,7248,7317,8337,8539,8614,9142,13025,13084,13106,13194,13413,13558,13804,13829,13963,14018,14041,14071,14076,14114,14129,14194,14197,14200,14203,14613,14647,14837,15038,15048,15252,15254,15262,15265,15314,15316,15386,15516,15591,15787,16162,16244,16268,16279,17032,17111,17165,17192,17745,17969,17972,18059,18131,18980,19021,19282,19460,19712,20169,20251,22108,22178]]],["+",[12,11,[[1,1,1,0,1,[[72,1,1,0,1]]],[8,1,1,1,2,[[239,1,1,1,2]]],[9,2,2,2,4,[[279,1,1,2,3],[285,1,1,3,4]]],[17,1,1,4,5,[[445,1,1,4,5]]],[18,1,1,5,6,[[525,1,1,5,6]]],[19,2,2,6,8,[[651,1,1,6,7],[654,1,1,7,8]]],[22,2,1,8,9,[[700,2,1,8,9]]],[23,2,2,9,11,[[794,1,1,9,10],[795,1,1,10,11]]]],[2175,7317,8337,8539,13106,14647,17111,17192,18059,20169,20251]]],["Make",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15252]]],["Put",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14041]]],["Set",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16279]]],["apply",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17032]]],["appoint",[2,2,[[17,1,1,0,1,[[449,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]]],[13194,18131]]],["appointed",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[104]]],["bring",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17969]]],["laid",[8,7,[[0,2,2,0,2,[[47,2,2,0,2]]],[1,2,1,2,3,[[70,2,1,2,3]]],[7,2,2,3,5,[[234,1,1,3,4],[235,1,1,4,5]]],[18,2,2,5,7,[[565,1,1,5,6],[616,1,1,6,7]]]],[1465,1468,2107,7187,7206,15314,16244]]],["lay",[5,5,[[1,1,1,0,1,[[70,1,1,0,1]]],[3,1,1,1,2,[[128,1,1,1,2]]],[17,1,1,2,3,[[444,1,1,2,3]]],[18,1,1,3,4,[[561,1,1,3,4]]],[22,1,1,4,5,[[683,1,1,4,5]]]],[2099,4070,13084,15262,17745]]],["made",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,3,3,1,4,[[495,1,1,1,2],[498,1,1,2,3],[565,1,1,3,4]]],[23,1,1,4,5,[[746,1,1,4,5]]]],[8614,14129,14197,15316,18980]]],["make",[10,10,[[10,1,1,0,1,[[301,1,1,0,1]]],[18,6,6,1,7,[[498,2,2,1,3],[522,1,1,3,4],[560,1,1,4,5],[561,1,1,5,6],[587,1,1,6,7]]],[22,1,1,7,8,[[694,1,1,7,8]]],[23,2,2,8,10,[[757,1,1,8,9],[766,1,1,9,10]]]],[9142,14200,14203,14613,15254,15265,15787,17972,19282,19460]]],["makest",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15591]]],["put",[10,9,[[0,4,3,0,3,[[2,1,1,0,1],[29,2,1,1,2],[45,1,1,2,3]]],[1,2,2,3,5,[[72,1,1,3,4],[82,1,1,4,5]]],[17,1,1,5,6,[[473,1,1,5,6]]],[18,2,2,6,8,[[485,1,1,6,7],[550,1,1,7,8]]],[23,1,1,8,9,[[747,1,1,8,9]]]],[70,870,1390,2145,2477,13829,14018,15048,19021]]],["set",[18,18,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,1,1,1,2,[[56,1,1,1,2]]],[3,1,1,2,3,[[140,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[17,2,2,4,6,[[442,1,1,4,5],[465,1,1,5,6]]],[18,9,9,6,15,[[480,1,1,6,7],[489,1,1,7,8],[494,1,1,8,9],[539,1,1,9,10],[550,1,1,10,11],[567,1,1,11,12],[578,1,1,12,13],[609,1,1,13,14],[617,1,1,14,15]]],[23,1,1,15,16,[[775,1,1,15,16]]],[27,2,2,16,18,[[863,1,1,16,17],[867,1,1,17,18]]]],[1228,1708,4447,7248,13025,13558,13963,14071,14114,14837,15038,15386,15516,16162,16268,19712,22108,22178]]],["settest",[1,1,[[18,1,1,0,1,[[498,1,1,0,1]]]],[14194]]],["shew",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1778]]],["stayed",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13804]]],["take",[1,1,[[18,1,1,0,1,[[490,1,1,0,1]]]],[14076]]],["up",[2,2,[[17,1,1,0,1,[[457,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]]],[13413,17165]]]]},{"k":"H7897","v":[["*",[2,2,[[18,1,1,0,1,[[550,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]]],[15026,16585]]],["attire",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16585]]],["garment",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15026]]]]},{"k":"H7898","v":[["thorns",[7,7,[[22,7,7,0,7,[[683,1,1,0,1],[685,3,3,1,4],[687,1,1,4,5],[688,1,1,5,6],[705,1,1,6,7]]]],[17745,17805,17806,17807,17847,17867,18155]]]]},{"k":"H7899","v":[["pricks",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4815]]]]},{"k":"H7900","v":[["tabernacle",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20338]]]]},{"k":"H7901","v":[["*",[210,192,[[0,21,18,0,18,[[18,8,5,0,5],[25,1,1,5,6],[27,2,2,6,8],[29,2,2,8,10],[33,2,2,10,12],[34,1,1,12,13],[38,4,4,13,17],[46,1,1,17,18]]],[1,3,3,18,21,[[71,3,3,18,21]]],[2,17,15,21,36,[[103,1,1,21,22],[104,8,6,22,28],[107,1,1,28,29],[108,1,1,29,30],[109,5,5,30,35],[115,1,1,35,36]]],[3,4,4,36,40,[[121,2,2,36,38],[139,1,1,38,39],[140,1,1,39,40]]],[4,17,15,40,55,[[158,1,1,40,41],[163,1,1,41,42],[174,7,5,42,47],[176,2,2,47,49],[179,4,4,49,53],[180,1,1,53,54],[183,1,1,54,55]]],[5,2,2,55,57,[[188,2,2,55,57]]],[6,2,2,57,59,[[215,1,1,57,58],[226,1,1,58,59]]],[7,8,5,59,64,[[234,8,5,59,64]]],[8,13,9,64,73,[[237,1,1,64,65],[238,8,6,65,71],[261,4,2,71,73]]],[9,18,18,73,91,[[270,2,2,73,75],[273,1,1,75,76],[274,1,1,76,77],[277,4,4,77,81],[278,4,4,81,85],[279,6,6,85,91]]],[10,21,20,91,111,[[291,2,2,91,93],[292,1,1,93,94],[293,3,2,94,96],[301,2,2,96,98],[304,2,2,98,100],[305,2,2,100,102],[306,2,2,102,104],[307,1,1,104,105],[309,2,2,105,107],[311,2,2,107,109],[312,2,2,109,111]]],[11,19,19,111,130,[[316,4,4,111,115],[320,1,1,115,116],[321,1,1,116,117],[322,1,1,117,118],[325,2,2,118,120],[326,3,3,120,123],[327,3,3,123,126],[328,1,1,126,127],[332,1,1,127,128],[333,1,1,128,129],[336,1,1,129,130]]],[13,12,12,130,142,[[375,1,1,130,131],[378,1,1,131,132],[380,1,1,132,133],[382,2,2,133,135],[387,1,1,135,136],[392,2,2,136,138],[393,1,1,138,139],[394,1,1,139,140],[398,1,1,140,141],[399,1,1,141,142]]],[17,11,11,142,153,[[438,1,1,142,143],[442,2,2,143,145],[446,1,1,145,146],[449,1,1,146,147],[455,1,1,147,148],[456,1,1,148,149],[462,1,1,149,150],[465,1,1,150,151],[473,1,1,151,152],[475,1,1,152,153]]],[18,6,6,153,159,[[480,1,1,153,154],[481,1,1,154,155],[518,1,1,155,156],[534,1,1,156,157],[545,1,1,157,158],[565,1,1,158,159]]],[19,8,6,159,165,[[630,2,1,159,160],[633,3,3,160,163],[650,2,1,163,164],[651,1,1,164,165]]],[20,2,2,165,167,[[660,1,1,165,166],[662,1,1,166,167]]],[22,6,6,167,173,[[692,2,2,167,169],[721,1,1,169,170],[728,1,1,170,171],[729,1,1,171,172],[734,1,1,172,173]]],[23,2,2,173,175,[[747,2,2,173,175]]],[24,1,1,175,176,[[798,1,1,175,176]]],[25,13,12,176,188,[[805,4,3,176,179],[824,1,1,179,180],[832,1,1,180,181],[833,7,7,181,188]]],[27,1,1,188,189,[[863,1,1,188,189]]],[29,1,1,189,190,[[884,1,1,189,190]]],[31,1,1,190,191,[[889,1,1,190,191]]],[32,1,1,191,192,[[899,1,1,191,192]]]],[461,489,490,491,492,702,784,786,845,846,982,987,1033,1156,1159,1161,1163,1450,2129,2132,2140,3158,3172,3186,3188,3192,3194,3201,3273,3301,3329,3330,3331,3336,3338,3530,3805,3811,4440,4455,5093,5227,5492,5493,5495,5498,5499,5537,5538,5605,5606,5607,5608,5641,5744,5870,5877,6650,6952,7176,7179,7180,7185,7186,7262,7278,7279,7281,7282,7285,7291,7910,7912,8125,8127,8192,8211,8263,8268,8270,8272,8289,8297,8302,8310,8322,8323,8325,8328,8331,8348,8719,8738,8780,8835,8836,9129,9151,9238,9249,9257,9273,9289,9311,9336,9392,9393,9455,9478,9520,9530,9614,9624,9635,9637,9751,9772,9828,9880,9884,9912,9918,9925,9932,9947,9963,9983,10119,10137,10208,11395,11453,11476,11522,11523,11625,11734,11755,11764,11791,11908,11928,12917,13012,13029,13126,13193,13337,13381,13500,13574,13830,13885,13962,13973,14550,14772,14913,15313,16479,16549,16550,16562,17078,17112,17356,17392,17936,17946,18522,18673,18693,18763,19004,19027,20353,20533,20535,20538,21015,21248,21267,21269,21275,21276,21277,21278,21280,22123,22454,22536,22669]]],["+",[8,7,[[0,2,2,0,2,[[33,1,1,0,1],[34,1,1,1,2]]],[2,2,1,2,3,[[104,2,1,2,3]]],[9,1,1,3,4,[[274,1,1,3,4]]],[10,1,1,4,5,[[293,1,1,4,5]]],[17,1,1,5,6,[[465,1,1,5,6]]],[32,1,1,6,7,[[899,1,1,6,7]]]],[987,1033,3192,8211,8835,13574,22669]]],["Lie",[3,3,[[0,2,2,0,2,[[38,2,2,0,2]]],[25,1,1,2,3,[[805,1,1,2,3]]]],[1156,1161,20533]]],["down",[44,39,[[0,4,4,0,4,[[18,3,3,0,3],[27,1,1,3,4]]],[2,1,1,4,5,[[115,1,1,4,5]]],[3,2,2,5,7,[[139,1,1,5,6],[140,1,1,6,7]]],[4,2,2,7,9,[[158,1,1,7,8],[163,1,1,8,9]]],[5,1,1,9,10,[[188,1,1,9,10]]],[6,1,1,10,11,[[215,1,1,10,11]]],[7,5,3,11,14,[[234,5,3,11,14]]],[8,7,5,14,19,[[238,7,5,14,19]]],[9,3,3,19,22,[[279,3,3,19,22]]],[10,2,2,22,24,[[309,1,1,22,23],[311,1,1,23,24]]],[17,5,5,24,29,[[442,1,1,24,25],[449,1,1,25,26],[455,1,1,26,27],[456,1,1,27,28],[462,1,1,28,29]]],[18,2,2,29,31,[[480,1,1,29,30],[481,1,1,30,31]]],[19,3,2,31,33,[[630,2,1,31,32],[650,1,1,32,33]]],[22,4,4,33,37,[[692,1,1,33,34],[721,1,1,34,35],[728,1,1,35,36],[734,1,1,36,37]]],[23,1,1,37,38,[[747,1,1,37,38]]],[27,1,1,38,39,[[863,1,1,38,39]]]],[461,490,492,784,3530,4440,4455,5093,5227,5877,6650,7176,7179,7185,7278,7279,7281,7282,7285,8322,8323,8325,9393,9455,13012,13193,13337,13381,13500,13962,13973,16479,17078,17936,18522,18673,18763,19027,22123]]],["laid",[8,7,[[10,3,2,0,2,[[293,2,1,0,1],[307,1,1,1,2]]],[11,2,2,2,4,[[316,2,2,2,4]]],[13,1,1,4,5,[[382,1,1,4,5]]],[25,2,2,5,7,[[833,2,2,5,7]]]],[8836,9336,9624,9635,11523,21267,21280]]],["lain",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3811]]],["lay",[30,28,[[0,4,4,0,4,[[18,3,3,0,3],[29,1,1,3,4]]],[4,3,3,4,7,[[174,3,3,4,7]]],[6,1,1,7,8,[[226,1,1,7,8]]],[7,2,2,8,10,[[234,2,2,8,10]]],[8,6,4,10,14,[[237,1,1,10,11],[238,1,1,11,12],[261,4,2,12,14]]],[9,7,7,14,21,[[270,2,2,14,16],[277,1,1,16,17],[278,3,3,17,20],[279,1,1,20,21]]],[10,2,2,21,23,[[309,1,1,21,22],[311,1,1,22,23]]],[11,3,3,23,26,[[316,2,2,23,25],[321,1,1,25,26]]],[25,1,1,26,27,[[824,1,1,26,27]]],[31,1,1,27,28,[[889,1,1,27,28]]]],[490,491,492,846,5492,5495,5499,6952,7180,7186,7262,7291,7910,7912,8125,8127,8263,8289,8302,8310,8348,9392,9478,9614,9637,9772,21015,22536]]],["lie",[38,38,[[0,6,6,0,6,[[18,2,2,0,2],[29,1,1,2,3],[38,2,2,3,5],[46,1,1,5,6]]],[1,1,1,6,7,[[71,1,1,6,7]]],[2,6,6,7,13,[[104,1,1,7,8],[107,1,1,8,9],[109,4,4,9,13]]],[3,1,1,13,14,[[121,1,1,13,14]]],[4,3,3,14,17,[[174,3,3,14,17]]],[7,1,1,17,18,[[234,1,1,17,18]]],[9,4,4,18,22,[[277,2,2,18,20],[278,1,1,20,21],[279,1,1,21,22]]],[10,1,1,22,23,[[291,1,1,22,23]]],[18,2,2,23,25,[[534,1,1,23,24],[565,1,1,24,25]]],[22,2,2,25,27,[[692,1,1,25,26],[729,1,1,26,27]]],[24,1,1,27,28,[[798,1,1,27,28]]],[25,9,9,28,37,[[805,3,3,28,31],[832,1,1,31,32],[833,5,5,32,37]]],[29,1,1,37,38,[[884,1,1,37,38]]]],[489,491,845,1159,1163,1450,2129,3186,3273,3330,3331,3336,3338,3805,5493,5495,5498,7176,8270,8272,8297,8328,8719,14772,15313,17946,18693,20353,20533,20535,20538,21248,21269,21275,21276,21277,21278,22454]]],["lien",[3,3,[[0,1,1,0,1,[[25,1,1,0,1]]],[18,1,1,1,2,[[545,1,1,1,2]]],[23,1,1,2,3,[[747,1,1,2,3]]]],[702,14913,19004]]],["liest",[1,1,[[0,1,1,0,1,[[27,1,1,0,1]]]],[786]]],["lieth",[16,16,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,8,8,1,9,[[103,1,1,1,2],[104,5,5,2,7],[108,1,1,7,8],[109,1,1,8,9]]],[4,4,4,9,13,[[179,4,4,9,13]]],[17,1,1,13,14,[[475,1,1,13,14]]],[18,1,1,14,15,[[518,1,1,14,15]]],[19,1,1,15,16,[[650,1,1,15,16]]]],[2132,3158,3172,3188,3192,3194,3201,3301,3329,5605,5606,5607,5608,13885,14550,17078]]],["lodged",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5870]]],["lying",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5492]]],["rest",[2,2,[[17,1,1,0,1,[[446,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[13126,17356]]],["sleep",[10,10,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,3,3,1,4,[[176,2,2,1,3],[183,1,1,3,4]]],[9,1,1,4,5,[[273,1,1,4,5]]],[10,1,1,5,6,[[291,1,1,5,6]]],[17,1,1,6,7,[[442,1,1,6,7]]],[19,3,3,7,10,[[633,2,2,7,9],[651,1,1,9,10]]]],[2140,5537,5538,5744,8192,8738,13029,16549,16550,17112]]],["sleepest",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16562]]],["slept",[37,37,[[9,1,1,0,1,[[277,1,1,0,1]]],[10,11,11,1,12,[[292,1,1,1,2],[301,2,2,2,4],[304,2,2,4,6],[305,2,2,6,8],[306,2,2,8,10],[312,2,2,10,12]]],[11,14,14,12,26,[[320,1,1,12,13],[322,1,1,13,14],[325,2,2,14,16],[326,3,3,16,19],[327,3,3,19,22],[328,1,1,22,23],[332,1,1,23,24],[333,1,1,24,25],[336,1,1,25,26]]],[13,11,11,26,37,[[375,1,1,26,27],[378,1,1,27,28],[380,1,1,28,29],[382,1,1,29,30],[387,1,1,30,31],[392,2,2,31,33],[393,1,1,33,34],[394,1,1,34,35],[398,1,1,35,36],[399,1,1,36,37]]]],[8268,8780,9129,9151,9238,9249,9257,9273,9289,9311,9520,9530,9751,9828,9880,9884,9912,9918,9925,9932,9947,9963,9983,10119,10137,10208,11395,11453,11476,11522,11625,11734,11755,11764,11791,11908,11928]]],["stay",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13830]]],["still",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12917]]],["together",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17392]]],["with",[3,3,[[0,1,1,0,1,[[33,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[9,1,1,2,3,[[279,1,1,2,3]]]],[982,5641,8331]]]]},{"k":"H7902","v":[["*",[9,9,[[1,2,2,0,2,[[65,2,2,0,2]]],[2,6,6,2,8,[[104,4,4,2,6],[108,1,1,6,7],[111,1,1,7,8]]],[3,1,1,8,9,[[121,1,1,8,9]]]],[1960,1961,3184,3185,3186,3200,3301,3373,3805]]],["+",[5,5,[[1,1,1,0,1,[[65,1,1,0,1]]],[2,3,3,1,4,[[104,1,1,1,2],[108,1,1,2,3],[111,1,1,3,4]]],[3,1,1,4,5,[[121,1,1,4,5]]]],[1960,3200,3301,3373,3805]]],["copulation",[3,3,[[2,3,3,0,3,[[104,3,3,0,3]]]],[3184,3185,3186]]],["lay",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1961]]]]},{"k":"H7903","v":[["+",[4,4,[[2,3,3,0,3,[[107,2,2,0,2],[109,1,1,2,3]]],[3,1,1,3,4,[[121,1,1,3,4]]]],[3271,3274,3333,3812]]]]},{"k":"H7904","v":[["morning",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19066]]]]},{"k":"H7905","v":[["irons",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13895]]]]},{"k":"H7906","v":[["Sechu",[1,1,[[8,1,1,0,1,[[254,1,1,0,1]]]],[7728]]]]},{"k":"H7907","v":[["heart",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13829]]]]},{"k":"H7908","v":[["*",[3,3,[[18,1,1,0,1,[[512,1,1,0,1]]],[22,2,2,1,3,[[725,2,2,1,3]]]],[14422,18607,18608]]],["children",[2,2,[[22,2,2,0,2,[[725,2,2,0,2]]]],[18607,18608]]],["spoiling",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14422]]]]},{"k":"H7909","v":[["*",[7,7,[[9,1,1,0,1,[[283,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]],[21,2,2,2,4,[[674,1,1,2,3],[676,1,1,3,4]]],[22,1,1,4,5,[[727,1,1,4,5]]],[23,1,1,5,6,[[762,1,1,5,6]]],[27,1,1,6,7,[[874,1,1,6,7]]]],[8457,16885,17584,17620,18657,19405,22274]]],["barren",[2,2,[[21,2,2,0,2,[[674,1,1,0,1],[676,1,1,1,2]]]],[17584,17620]]],["bereaved",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22274]]],["children",[2,2,[[22,1,1,0,1,[[727,1,1,0,1]]],[23,1,1,1,2,[[762,1,1,1,2]]]],[18657,19405]]],["robbed",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16885]]],["whelps",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8457]]]]},{"k":"H7910","v":[["*",[13,13,[[8,2,2,0,2,[[236,1,1,0,1],[260,1,1,1,2]]],[10,2,2,2,4,[[306,1,1,2,3],[310,1,1,3,4]]],[17,1,1,4,5,[[447,1,1,4,5]]],[18,1,1,5,6,[[584,1,1,5,6]]],[19,1,1,6,7,[[653,1,1,6,7]]],[22,4,4,7,11,[[697,1,1,7,8],[702,1,1,8,9],[706,2,2,9,11]]],[23,1,1,11,12,[[767,1,1,11,12]]],[28,1,1,12,13,[[876,1,1,12,13]]]],[7225,7897,9292,9424,13153,15726,17150,18018,18115,18165,18167,19493,22296]]],["drunk",[2,2,[[10,2,2,0,2,[[306,1,1,0,1],[310,1,1,1,2]]]],[9292,9424]]],["drunkard",[2,2,[[19,1,1,0,1,[[653,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]]],[17150,18115]]],["drunkards",[3,3,[[22,2,2,0,2,[[706,2,2,0,2]]],[28,1,1,2,3,[[876,1,1,2,3]]]],[18165,18167,22296]]],["drunken",[5,5,[[8,2,2,0,2,[[236,1,1,0,1],[260,1,1,1,2]]],[17,1,1,2,3,[[447,1,1,2,3]]],[22,1,1,3,4,[[697,1,1,3,4]]],[23,1,1,4,5,[[767,1,1,4,5]]]],[7225,7897,13153,18018,19493]]],["man",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15726]]]]},{"k":"H7911","v":[["*",[102,95,[[0,3,3,0,3,[[26,1,1,0,1],[39,1,1,1,2],[40,1,1,2,3]]],[4,14,13,3,16,[[156,3,3,3,6],[158,1,1,6,7],[160,4,3,7,10],[161,1,1,10,11],[176,1,1,11,12],[177,1,1,12,13],[178,1,1,13,14],[183,1,1,14,15],[184,1,1,15,16]]],[6,1,1,16,17,[[213,1,1,16,17]]],[8,2,2,17,19,[[236,1,1,17,18],[247,1,1,18,19]]],[11,1,1,19,20,[[329,1,1,19,20]]],[17,7,7,20,27,[[443,1,1,20,21],[444,1,1,21,22],[446,1,1,22,23],[454,1,1,23,24],[459,1,1,24,25],[463,1,1,25,26],[474,1,1,26,27]]],[18,33,32,27,59,[[486,2,2,27,29],[487,2,2,29,31],[490,1,1,31,32],[508,1,1,32,33],[519,1,1,33,34],[521,3,3,34,37],[522,1,1,37,38],[527,1,1,38,39],[536,1,1,39,40],[551,2,2,40,42],[554,1,1,42,43],[555,2,2,43,45],[579,1,1,45,46],[580,1,1,46,47],[583,2,2,47,49],[596,9,9,49,58],[614,2,1,58,59]]],[19,5,5,59,64,[[629,1,1,59,60],[630,1,1,60,61],[631,1,1,61,62],[658,2,2,62,64]]],[20,3,3,64,67,[[660,1,1,64,65],[666,1,1,65,66],[667,1,1,66,67]]],[22,10,8,67,75,[[695,1,1,67,68],[701,2,2,68,70],[727,4,2,70,72],[729,1,1,72,73],[732,1,1,73,74],[743,1,1,74,75]]],[23,13,11,75,86,[[746,2,1,75,76],[747,1,1,76,77],[757,1,1,77,78],[762,1,1,78,79],[764,1,1,79,80],[767,3,2,80,82],[774,1,1,82,83],[788,1,1,83,84],[794,2,2,84,86]]],[24,2,2,86,88,[[798,1,1,86,87],[801,1,1,87,88]]],[25,2,2,88,90,[[823,1,1,88,89],[824,1,1,89,90]]],[27,5,4,90,94,[[863,1,1,90,91],[865,2,1,91,92],[869,1,1,92,93],[874,1,1,93,94]]],[29,1,1,94,95,[[886,1,1,94,95]]]],[772,1195,1225,5013,5027,5035,5098,5148,5151,5156,5164,5544,5566,5579,5749,5776,6575,7223,7469,10021,13042,13078,13124,13311,13456,13508,13849,14033,14039,14052,14053,14075,14343,14564,14588,14591,14595,14607,14690,14801,15067,15071,15102,15120,15124,15525,15551,15664,15672,15914,15959,15981,15991,16007,16037,16039,16051,16074,16227,16450,16456,16495,17289,17291,17349,17468,17480,17993,18092,18093,18650,18651,18686,18727,18913,18997,19023,19291,19399,19433,19511,19524,19681,20019,20171,20172,20338,20462,20988,21042,22118,22139,22208,22272,22488]]],["+",[16,15,[[0,1,1,0,1,[[26,1,1,0,1]]],[4,8,7,1,8,[[156,3,3,1,4],[158,1,1,4,5],[160,4,3,5,8]]],[6,1,1,8,9,[[213,1,1,8,9]]],[8,2,2,9,11,[[236,1,1,9,10],[247,1,1,10,11]]],[23,3,3,11,14,[[747,1,1,11,12],[767,1,1,12,13],[788,1,1,13,14]]],[27,1,1,14,15,[[869,1,1,14,15]]]],[772,5013,5027,5035,5098,5148,5151,5156,6575,7223,7469,19023,19511,20019,22208]]],["Forget",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15071]]],["forgat",[5,5,[[0,1,1,0,1,[[39,1,1,0,1]]],[18,3,3,1,4,[[555,1,1,1,2],[583,2,2,2,4]]],[27,1,1,4,5,[[863,1,1,4,5]]]],[1195,15124,15664,15672,22118]]],["forget",[38,35,[[4,2,2,0,2,[[161,1,1,0,1],[177,1,1,1,2]]],[11,1,1,2,3,[[329,1,1,2,3]]],[17,4,4,3,7,[[443,1,1,3,4],[444,1,1,4,5],[446,1,1,5,6],[459,1,1,6,7]]],[18,18,17,7,24,[[487,1,1,7,8],[490,1,1,8,9],[522,1,1,9,10],[527,1,1,10,11],[536,1,1,11,12],[551,1,1,12,13],[555,1,1,13,14],[579,1,1,14,15],[580,1,1,15,16],[596,7,7,16,23],[614,2,1,23,24]]],[19,4,4,24,28,[[630,1,1,24,25],[631,1,1,25,26],[658,2,2,26,28]]],[22,4,2,28,30,[[727,3,1,28,29],[732,1,1,29,30]]],[23,2,2,30,32,[[746,1,1,30,31],[767,1,1,31,32]]],[24,1,1,32,33,[[801,1,1,32,33]]],[27,1,1,33,34,[[865,1,1,33,34]]],[29,1,1,34,35,[[886,1,1,34,35]]]],[5164,5566,10021,13042,13078,13124,13456,14053,14075,14607,14690,14801,15067,15120,15525,15551,15914,15981,15991,16007,16039,16051,16074,16227,16456,16495,17289,17291,18651,18727,18997,19511,20462,22139,22488]]],["forgettest",[2,2,[[18,1,1,0,1,[[521,1,1,0,1]]],[22,1,1,1,2,[[729,1,1,1,2]]]],[14595,18686]]],["forgetteth",[3,3,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,1,1,1,2,[[486,1,1,1,2]]],[19,1,1,2,3,[[629,1,1,2,3]]]],[13849,14033,16450]]],["forgot",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5544]]],["forgotten",[36,36,[[0,1,1,0,1,[[40,1,1,0,1]]],[4,3,3,1,4,[[178,1,1,1,2],[183,1,1,2,3],[184,1,1,3,4]]],[17,2,2,4,6,[[454,1,1,4,5],[463,1,1,5,6]]],[18,9,9,6,15,[[486,1,1,6,7],[487,1,1,7,8],[508,1,1,8,9],[519,1,1,9,10],[521,2,2,10,12],[554,1,1,12,13],[596,2,2,13,15]]],[20,3,3,15,18,[[660,1,1,15,16],[666,1,1,16,17],[667,1,1,17,18]]],[22,5,5,18,23,[[695,1,1,18,19],[701,2,2,19,21],[727,1,1,21,22],[743,1,1,22,23]]],[23,8,8,23,31,[[746,1,1,23,24],[757,1,1,24,25],[762,1,1,25,26],[764,1,1,26,27],[767,1,1,27,28],[774,1,1,28,29],[794,2,2,29,31]]],[24,1,1,31,32,[[798,1,1,31,32]]],[25,2,2,32,34,[[823,1,1,32,33],[824,1,1,33,34]]],[27,2,2,34,36,[[865,1,1,34,35],[874,1,1,35,36]]]],[1225,5579,5749,5776,13311,13508,14039,14052,14343,14564,14588,14591,15102,15959,16037,17349,17468,17480,17993,18092,18093,18650,18913,18997,19291,19399,19433,19524,19681,20171,20172,20338,20988,21042,22139,22272]]]]},{"k":"H7912","v":[["*",[18,15,[[14,4,4,0,4,[[406,2,2,0,2],[408,1,1,2,3],[409,1,1,3,4]]],[26,14,11,4,15,[[851,2,2,4,6],[854,4,4,6,10],[855,8,5,10,15]]]],[12125,12129,12153,12189,21783,21793,21885,21886,21888,21901,21909,21910,21916,21927,21928]]],["find",[6,4,[[14,2,2,0,2,[[406,1,1,0,1],[409,1,1,1,2]]],[26,4,2,2,4,[[855,4,2,2,4]]]],[12125,12189,21909,21910]]],["found",[12,12,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]],[26,10,10,2,12,[[851,2,2,2,4],[854,4,4,4,8],[855,4,4,8,12]]]],[12129,12153,21783,21793,21885,21886,21888,21901,21909,21916,21927,21928]]]]},{"k":"H7913","v":[["*",[2,2,[[18,1,1,0,1,[[486,1,1,0,1]]],[22,1,1,1,2,[[743,1,1,1,2]]]],[14038,18908]]],["+",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18908]]],["forget",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14038]]]]},{"k":"H7914","v":[["pictures",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17701]]]]},{"k":"H7915","v":[["knife",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17046]]]]},{"k":"H7916","v":[["*",[17,17,[[1,2,2,0,2,[[61,1,1,0,1],[71,1,1,1,2]]],[2,6,6,2,8,[[108,1,1,2,3],[111,1,1,3,4],[114,4,4,4,8]]],[4,2,2,8,10,[[167,1,1,8,9],[176,1,1,9,10]]],[17,3,3,10,13,[[442,2,2,10,12],[449,1,1,12,13]]],[22,2,2,13,15,[[694,1,1,13,14],[699,1,1,14,15]]],[23,1,1,15,16,[[790,1,1,15,16]]],[38,1,1,16,17,[[927,1,1,16,17]]]],[1861,2128,3294,3379,3475,3509,3519,3522,5337,5539,13009,13010,13187,17983,18051,20066,23125]]],["hired",[2,2,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,1,1,1,2,[[108,1,1,1,2]]]],[2128,3294]]],["hireling",[6,6,[[17,3,3,0,3,[[442,2,2,0,2],[449,1,1,2,3]]],[22,2,2,3,5,[[694,1,1,3,4],[699,1,1,4,5]]],[38,1,1,5,6,[[927,1,1,5,6]]]],[13009,13010,13187,17983,18051,23125]]],["men",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20066]]],["servant",[8,8,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,5,5,1,6,[[111,1,1,1,2],[114,4,4,2,6]]],[4,2,2,6,8,[[167,1,1,6,7],[176,1,1,7,8]]]],[1861,3379,3475,3509,3519,3522,5337,5539]]]]},{"k":"H7917","v":[["hired",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17802]]]]},{"k":"H7918","v":[["*",[5,5,[[0,1,1,0,1,[[7,1,1,0,1]]],[3,1,1,1,2,[[133,1,1,1,2]]],[16,2,2,2,4,[[427,1,1,2,3],[432,1,1,3,4]]],[23,1,1,4,5,[[749,1,1,4,5]]]],[184,4249,12725,12817,19084]]],["appeased",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12725]]],["asswaged",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[184]]],["cease",[1,1,[[3,1,1,0,1,[[133,1,1,0,1]]]],[4249]]],["pacified",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12817]]],["setteth",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19084]]]]},{"k":"H7919","v":[["*",[63,63,[[0,2,2,0,2,[[2,1,1,0,1],[47,1,1,1,2]]],[4,2,2,2,4,[[181,1,1,2,3],[184,1,1,3,4]]],[5,2,2,4,6,[[187,2,2,4,6]]],[8,4,4,6,10,[[253,4,4,6,10]]],[10,1,1,10,11,[[292,1,1,10,11]]],[11,1,1,11,12,[[330,1,1,11,12]]],[12,1,1,12,13,[[365,1,1,12,13]]],[13,1,1,13,14,[[396,1,1,13,14]]],[15,2,2,14,16,[[420,1,1,14,15],[421,1,1,15,16]]],[17,3,3,16,19,[[457,1,1,16,17],[469,2,2,17,19]]],[18,12,12,19,31,[[479,1,1,19,20],[491,1,1,20,21],[509,1,1,21,22],[513,1,1,22,23],[518,1,1,23,24],[524,1,1,24,25],[530,1,1,25,26],[541,1,1,26,27],[571,1,1,27,28],[578,1,1,28,29],[583,1,1,29,30],[596,1,1,30,31]]],[19,13,13,31,44,[[628,1,1,31,32],[637,2,2,32,34],[641,1,1,34,35],[642,1,1,35,36],[643,2,2,36,38],[644,2,2,38,40],[646,1,1,40,41],[648,3,3,41,44]]],[22,3,3,44,47,[[719,1,1,44,45],[722,1,1,45,46],[730,1,1,46,47]]],[23,6,6,47,53,[[747,1,1,47,48],[753,1,1,48,49],[754,1,1,49,50],[764,1,1,50,51],[767,1,1,51,52],[794,1,1,52,53]]],[26,9,9,53,62,[[850,2,2,53,55],[858,3,3,55,58],[860,2,2,58,60],[861,2,2,60,62]]],[29,1,1,62,63,[[883,1,1,62,63]]]],[61,1465,5688,5787,5858,5859,7681,7690,7691,7706,8773,10031,11162,11849,12506,12531,13391,13710,13718,13955,14082,14363,14441,14543,14632,14721,14859,15439,15515,15658,15997,16403,16661,16675,16807,16831,16860,16863,16875,16881,16939,16995,16996,17000,18471,18551,18709,19017,19199,19222,19433,19489,20175,21741,21754,22001,22010,22013,22069,22071,22084,22091,22436]]],["+",[7,7,[[0,1,1,0,1,[[47,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[15,1,1,3,4,[[420,1,1,3,4]]],[18,1,1,4,5,[[518,1,1,4,5]]],[19,1,1,5,6,[[643,1,1,5,6]]],[22,1,1,6,7,[[722,1,1,6,7]]]],[1465,5688,7691,12506,14543,16860,18551]]],["consider",[2,2,[[17,1,1,0,1,[[469,1,1,0,1]]],[18,1,1,1,2,[[541,1,1,1,2]]]],[13710,14859]]],["considereth",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16996]]],["expert",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20175]]],["instruct",[2,2,[[15,1,1,0,1,[[421,1,1,0,1]]],[18,1,1,1,2,[[509,1,1,1,2]]]],[12531,14363]]],["instructed",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16995]]],["prosper",[5,5,[[5,1,1,0,1,[[187,1,1,0,1]]],[10,1,1,1,2,[[292,1,1,1,2]]],[23,3,3,2,5,[[754,1,1,2,3],[764,1,1,3,4],[767,1,1,4,5]]]],[5858,8773,19222,19433,19489]]],["prospered",[1,1,[[11,1,1,0,1,[[330,1,1,0,1]]]],[10031]]],["prospereth",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16881]]],["prudent",[2,2,[[19,1,1,0,1,[[646,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[16939,22436]]],["prudently",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18709]]],["skilful",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21741]]],["skill",[2,2,[[26,2,2,0,2,[[850,1,1,0,1],[858,1,1,1,2]]]],[21754,22010]]],["success",[1,1,[[5,1,1,0,1,[[187,1,1,0,1]]]],[5859]]],["taught",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11849]]],["teacheth",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16863]]],["understand",[7,7,[[12,1,1,0,1,[[365,1,1,0,1]]],[18,2,2,1,3,[[491,1,1,1,2],[530,1,1,2,3]]],[22,1,1,3,4,[[719,1,1,3,4]]],[26,3,3,4,7,[[858,2,2,4,6],[860,1,1,6,7]]]],[11162,14082,14721,18471,22001,22013,22069]]],["understandeth",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19199]]],["understanding",[5,5,[[18,2,2,0,2,[[524,1,1,0,1],[596,1,1,1,2]]],[19,1,1,2,3,[[648,1,1,2,3]]],[23,1,1,3,4,[[747,1,1,3,4]]],[26,1,1,4,5,[[860,1,1,4,5]]]],[14632,15997,17000,19017,22071]]],["understood",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]]],[5787,15658]]],["wisdom",[2,2,[[17,1,1,0,1,[[469,1,1,0,1]]],[19,1,1,1,2,[[628,1,1,1,2]]]],[13718,16403]]],["wise",[12,12,[[0,1,1,0,1,[[2,1,1,0,1]]],[17,1,1,1,2,[[457,1,1,1,2]]],[18,3,3,2,5,[[479,1,1,2,3],[513,1,1,3,4],[571,1,1,4,5]]],[19,5,5,5,10,[[637,2,2,5,7],[641,1,1,7,8],[642,1,1,8,9],[644,1,1,9,10]]],[26,2,2,10,12,[[861,2,2,10,12]]]],[61,13391,13955,14441,15439,16661,16675,16807,16831,16875,22084,22091]]],["wisely",[4,4,[[8,3,3,0,3,[[253,3,3,0,3]]],[18,1,1,3,4,[[578,1,1,3,4]]]],[7681,7690,7706,15515]]]]},{"k":"H7920","v":[["+",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21941]]]]},{"k":"H7921","v":[["*",[23,21,[[0,5,4,0,4,[[26,1,1,0,1],[30,1,1,1,2],[41,1,1,2,3],[42,2,1,3,4]]],[1,1,1,4,5,[[72,1,1,4,5]]],[2,1,1,5,6,[[115,1,1,5,6]]],[4,1,1,6,7,[[184,1,1,6,7]]],[8,2,1,7,8,[[250,2,1,7,8]]],[11,2,2,8,10,[[314,2,2,8,10]]],[17,1,1,10,11,[[456,1,1,10,11]]],[23,1,1,11,12,[[759,1,1,11,12]]],[24,1,1,12,13,[[797,1,1,12,13]]],[25,5,5,13,18,[[806,1,1,13,14],[815,1,1,14,15],[837,3,3,15,18]]],[27,2,2,18,20,[[870,2,2,18,20]]],[38,1,1,20,21,[[927,1,1,20,21]]]],[772,911,1288,1304,2170,3546,5783,7593,9570,9572,13365,19322,20330,20563,20746,21371,21372,21373,22220,22222,23131]]],["+",[4,4,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[17,1,1,2,3,[[456,1,1,2,3]]],[25,1,1,3,4,[[837,1,1,3,4]]]],[2170,3546,13365,21372]]],["barren",[2,2,[[11,2,2,0,2,[[314,2,2,0,2]]]],[9570,9572]]],["bereave",[5,5,[[23,1,1,0,1,[[759,1,1,0,1]]],[25,3,3,1,4,[[806,1,1,1,2],[837,2,2,2,4]]],[27,1,1,4,5,[[870,1,1,4,5]]]],[19322,20563,21371,21373,22220]]],["bereaved",[3,2,[[0,3,2,0,2,[[41,1,1,0,1],[42,2,1,1,2]]]],[1288,1304]]],["bereaveth",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20330]]],["childless",[2,1,[[8,2,1,0,1,[[250,2,1,0,1]]]],[7593]]],["deprived",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[772]]],["destroy",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5783]]],["miscarrying",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22222]]],["spoil",[1,1,[[25,1,1,0,1,[[815,1,1,0,1]]]],[20746]]],["time",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23131]]],["young",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[911]]]]},{"k":"H7922","v":[["*",[16,16,[[8,1,1,0,1,[[260,1,1,0,1]]],[12,2,2,1,3,[[359,1,1,1,2],[363,1,1,2,3]]],[13,2,2,3,5,[[368,1,1,3,4],[396,1,1,4,5]]],[14,1,1,5,6,[[410,1,1,5,6]]],[15,1,1,6,7,[[420,1,1,6,7]]],[17,1,1,7,8,[[452,1,1,7,8]]],[18,1,1,8,9,[[588,1,1,8,9]]],[19,6,6,9,15,[[630,1,1,9,10],[639,1,1,10,11],[640,1,1,11,12],[643,1,1,12,13],[646,1,1,13,14],[650,1,1,14,15]]],[26,1,1,15,16,[[857,1,1,15,16]]]],[7864,10976,11091,11223,11849,12219,12501,13264,15803,16459,16727,16762,16862,16936,17053,21986]]],["+",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13264]]],["Understanding",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16862]]],["discretion",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16936]]],["knowledge",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11849]]],["policy",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21986]]],["prudence",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11223]]],["sense",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12501]]],["understanding",[5,5,[[8,1,1,0,1,[[260,1,1,0,1]]],[14,1,1,1,2,[[410,1,1,1,2]]],[18,1,1,2,3,[[588,1,1,2,3]]],[19,2,2,3,5,[[630,1,1,3,4],[640,1,1,4,5]]]],[7864,12219,15803,16459,16762]]],["wisdom",[3,3,[[12,1,1,0,1,[[359,1,1,0,1]]],[19,2,2,1,3,[[639,1,1,1,2],[650,1,1,2,3]]]],[10976,16727,17053]]],["wise",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11091]]]]},{"k":"H7923","v":[["other",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18656]]]]},{"k":"H7924","v":[["understanding",[3,3,[[26,3,3,0,3,[[854,3,3,0,3]]]],[21885,21886,21888]]]]},{"k":"H7925","v":[["*",[65,64,[[0,8,8,0,8,[[18,2,2,0,2],[19,1,1,2,3],[20,1,1,3,4],[21,1,1,4,5],[25,1,1,5,6],[27,1,1,6,7],[30,1,1,7,8]]],[1,5,5,8,13,[[57,1,1,8,9],[58,1,1,9,10],[73,1,1,10,11],[81,1,1,11,12],[83,1,1,12,13]]],[3,1,1,13,14,[[130,1,1,13,14]]],[5,6,6,14,20,[[189,1,1,14,15],[192,2,2,15,17],[193,1,1,17,18],[194,2,2,18,20]]],[6,8,8,20,28,[[216,2,2,20,22],[217,1,1,22,23],[219,1,1,23,24],[229,3,3,24,27],[231,1,1,27,28]]],[8,10,9,28,37,[[236,1,1,28,29],[240,2,2,29,31],[244,1,1,31,32],[250,1,1,32,33],[252,2,2,33,35],[264,3,2,35,37]]],[9,1,1,37,38,[[281,1,1,37,38]]],[11,3,3,38,41,[[315,1,1,38,39],[318,1,1,39,40],[331,1,1,40,41]]],[13,3,3,41,44,[[386,1,1,41,42],[395,1,1,42,43],[402,1,1,43,44]]],[17,1,1,44,45,[[436,1,1,44,45]]],[18,1,1,45,46,[[604,1,1,45,46]]],[19,1,1,46,47,[[654,1,1,46,47]]],[21,1,1,47,48,[[677,1,1,47,48]]],[22,2,2,48,50,[[683,1,1,48,49],[715,1,1,49,50]]],[23,11,11,50,61,[[751,2,2,50,52],[755,1,1,52,53],[769,2,2,53,55],[770,1,1,55,56],[773,1,1,56,57],[776,1,1,57,58],[779,2,2,58,60],[788,1,1,60,61]]],[27,2,2,61,63,[[867,1,1,61,62],[874,1,1,62,63]]],[35,1,1,63,64,[[908,1,1,63,64]]]],[459,484,503,527,550,723,791,928,1730,1755,2181,2444,2500,4148,5894,5961,5964,5992,6012,6016,6682,6692,6695,6787,7029,7032,7033,7106,7231,7322,7323,7417,7572,7634,7638,7977,7978,8391,9598,9689,10096,11607,11811,12008,12874,16123,17183,17639,17750,18388,19132,19144,19233,19537,19538,19577,19654,19764,19837,19838,20014,22171,22269,22827]]],["+",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7231]]],["betimes",[2,2,[[0,1,1,0,1,[[25,1,1,0,1]]],[13,1,1,1,2,[[402,1,1,1,2]]]],[723,12008]]],["early",[60,59,[[0,6,6,0,6,[[18,2,2,0,2],[19,1,1,2,3],[20,1,1,3,4],[21,1,1,4,5],[27,1,1,5,6]]],[1,5,5,6,11,[[57,1,1,6,7],[58,1,1,7,8],[73,1,1,8,9],[81,1,1,9,10],[83,1,1,10,11]]],[3,1,1,11,12,[[130,1,1,11,12]]],[5,6,6,12,18,[[189,1,1,12,13],[192,2,2,13,15],[193,1,1,15,16],[194,2,2,16,18]]],[6,8,8,18,26,[[216,2,2,18,20],[217,1,1,20,21],[219,1,1,21,22],[229,3,3,22,25],[231,1,1,25,26]]],[8,8,7,26,33,[[240,2,2,26,28],[244,1,1,28,29],[250,1,1,29,30],[252,1,1,30,31],[264,3,2,31,33]]],[9,1,1,33,34,[[281,1,1,33,34]]],[11,3,3,34,37,[[315,1,1,34,35],[318,1,1,35,36],[331,1,1,36,37]]],[13,2,2,37,39,[[386,1,1,37,38],[395,1,1,38,39]]],[17,1,1,39,40,[[436,1,1,39,40]]],[18,1,1,40,41,[[604,1,1,40,41]]],[19,1,1,41,42,[[654,1,1,41,42]]],[21,1,1,42,43,[[677,1,1,42,43]]],[22,2,2,43,45,[[683,1,1,43,44],[715,1,1,44,45]]],[23,11,11,45,56,[[751,2,2,45,47],[755,1,1,47,48],[769,2,2,48,50],[770,1,1,50,51],[773,1,1,51,52],[776,1,1,52,53],[779,2,2,53,55],[788,1,1,55,56]]],[27,2,2,56,58,[[867,1,1,56,57],[874,1,1,57,58]]],[35,1,1,58,59,[[908,1,1,58,59]]]],[459,484,503,527,550,791,1730,1755,2181,2444,2500,4148,5894,5961,5964,5992,6012,6016,6682,6692,6695,6787,7029,7032,7033,7106,7322,7323,7417,7572,7638,7977,7978,8391,9598,9689,10096,11607,11811,12874,16123,17183,17639,17750,18388,19132,19144,19233,19537,19538,19577,19654,19764,19837,19838,20014,22171,22269,22827]]],["morning",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7634]]],["up",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[928]]]]},{"k":"H7926","v":[["*",[22,22,[[0,6,6,0,6,[[8,1,1,0,1],[20,1,1,1,2],[23,2,2,2,4],[47,1,1,4,5],[48,1,1,5,6]]],[1,1,1,6,7,[[61,1,1,6,7]]],[5,1,1,7,8,[[190,1,1,7,8]]],[6,1,1,8,9,[[219,1,1,8,9]]],[8,3,3,9,12,[[244,1,1,9,10],[245,2,2,10,12]]],[17,1,1,12,13,[[466,1,1,12,13]]],[18,2,2,13,15,[[498,1,1,13,14],[558,1,1,14,15]]],[22,5,5,15,20,[[687,2,2,15,17],[688,1,1,17,18],[692,1,1,18,19],[700,1,1,19,20]]],[27,1,1,20,21,[[867,1,1,20,21]]],[35,1,1,21,22,[[908,1,1,21,22]]]],[228,527,606,636,1473,1488,1850,5915,6802,7393,7427,7441,13624,14203,15223,17833,17835,17877,17953,18074,22176,22829]]],["+",[2,2,[[8,2,2,0,2,[[244,1,1,0,1],[245,1,1,1,2]]]],[7393,7441]]],["back",[2,2,[[8,1,1,0,1,[[245,1,1,0,1]]],[18,1,1,1,2,[[498,1,1,1,2]]]],[7427,14203]]],["consent",[2,2,[[27,1,1,0,1,[[867,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[22176,22829]]],["portion",[1,1,[[0,1,1,0,1,[[47,1,1,0,1]]]],[1473]]],["shoulder",[12,12,[[0,4,4,0,4,[[20,1,1,0,1],[23,2,2,1,3],[48,1,1,3,4]]],[5,1,1,4,5,[[190,1,1,4,5]]],[6,1,1,5,6,[[219,1,1,5,6]]],[17,1,1,6,7,[[466,1,1,6,7]]],[18,1,1,7,8,[[558,1,1,7,8]]],[22,4,4,8,12,[[687,2,2,8,10],[688,1,1,10,11],[700,1,1,11,12]]]],[527,606,636,1488,5915,6802,13624,15223,17833,17835,17877,18074]]],["shoulders",[3,3,[[0,1,1,0,1,[[8,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]]],[228,1850,17953]]]]},{"k":"H7927","v":[["*",[49,43,[[0,7,7,0,7,[[11,1,1,0,1],[32,1,1,1,2],[33,1,1,2,3],[34,1,1,3,4],[36,3,3,4,7]]],[5,6,6,7,13,[[203,1,1,7,8],[206,1,1,8,9],[207,1,1,9,10],[210,3,3,10,13]]],[6,26,22,13,35,[[218,1,1,13,14],[219,24,20,14,34],[231,1,1,34,35]]],[10,3,2,35,37,[[302,3,2,35,37]]],[12,2,2,37,39,[[343,1,1,37,38],[344,1,1,38,39]]],[13,2,1,39,40,[[376,2,1,39,40]]],[18,2,2,40,42,[[537,1,1,40,41],[585,1,1,41,42]]],[23,1,1,42,43,[[785,1,1,42,43]]]],[304,978,986,1015,1095,1096,1097,6282,6379,6402,6477,6501,6508,6750,6755,6756,6757,6760,6761,6772,6774,6777,6778,6779,6780,6782,6785,6788,6793,6795,6800,6801,6803,6811,7121,9152,9176,10521,10563,11396,14813,15749,19962]]],["+",[2,2,[[6,1,1,0,1,[[219,1,1,0,1]]],[23,1,1,1,2,[[785,1,1,1,2]]]],[6757,19962]]],["Shechem",[46,40,[[0,6,6,0,6,[[32,1,1,0,1],[33,1,1,1,2],[34,1,1,2,3],[36,3,3,3,6]]],[5,6,6,6,12,[[203,1,1,6,7],[206,1,1,7,8],[207,1,1,8,9],[210,3,3,9,12]]],[6,25,21,12,33,[[218,1,1,12,13],[219,23,19,13,32],[231,1,1,32,33]]],[10,3,2,33,35,[[302,3,2,33,35]]],[12,2,2,35,37,[[343,1,1,35,36],[344,1,1,36,37]]],[13,2,1,37,38,[[376,2,1,37,38]]],[18,2,2,38,40,[[537,1,1,38,39],[585,1,1,39,40]]]],[978,986,1015,1095,1096,1097,6282,6379,6402,6477,6501,6508,6750,6755,6756,6760,6761,6772,6774,6777,6778,6779,6780,6782,6785,6788,6793,6795,6800,6801,6803,6811,7121,9152,9176,10521,10563,11396,14813,15749]]],["Sichem",[1,1,[[0,1,1,0,1,[[11,1,1,0,1]]]],[304]]]]},{"k":"H7928","v":[["*",[16,15,[[0,11,10,0,10,[[32,1,1,0,1],[33,10,9,1,10]]],[3,1,1,10,11,[[142,1,1,10,11]]],[5,2,2,11,13,[[203,1,1,11,12],[210,1,1,12,13]]],[6,1,1,13,14,[[219,1,1,13,14]]],[12,1,1,14,15,[[344,1,1,14,15]]]],[979,982,984,988,991,993,998,1000,1004,1006,4520,6277,6508,6782,10554]]],["Shechem",[14,14,[[0,9,9,0,9,[[33,9,9,0,9]]],[3,1,1,9,10,[[142,1,1,9,10]]],[5,2,2,10,12,[[203,1,1,10,11],[210,1,1,11,12]]],[6,1,1,12,13,[[219,1,1,12,13]]],[12,1,1,13,14,[[344,1,1,13,14]]]],[982,984,988,991,993,998,1000,1004,1006,4520,6277,6508,6782,10554]]],["Shechem's",[2,2,[[0,2,2,0,2,[[32,1,1,0,1],[33,1,1,1,2]]]],[979,1006]]]]},{"k":"H7929","v":[["+",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13610]]]]},{"k":"H7930","v":[["Shechemites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4520]]]]},{"k":"H7931","v":[["*",[128,123,[[0,8,8,0,8,[[2,1,1,0,1],[8,1,1,1,2],[13,1,1,2,3],[15,1,1,3,4],[24,1,1,4,5],[25,1,1,5,6],[34,1,1,6,7],[48,1,1,7,8]]],[1,5,5,8,13,[[73,1,1,8,9],[74,1,1,9,10],[78,2,2,10,12],[89,1,1,12,13]]],[2,1,1,13,14,[[105,1,1,13,14]]],[3,10,9,14,23,[[121,1,1,14,15],[125,3,3,15,18],[126,1,1,18,19],[130,1,1,19,20],[139,1,1,20,21],[140,1,1,21,22],[151,2,1,22,23]]],[4,11,10,23,33,[[164,1,1,23,24],[166,1,1,24,25],[168,3,3,25,28],[178,1,1,28,29],[185,5,4,29,33]]],[5,2,2,33,35,[[204,1,1,33,34],[208,1,1,34,35]]],[6,3,2,35,37,[[215,2,1,35,36],[218,1,1,36,37]]],[9,1,1,37,38,[[273,1,1,37,38]]],[10,2,2,38,40,[[296,1,1,38,39],[298,1,1,39,40]]],[12,2,2,40,42,[[354,1,1,40,41],[360,1,1,41,42]]],[13,1,1,42,43,[[372,1,1,42,43]]],[15,1,1,43,44,[[413,1,1,43,44]]],[17,11,11,44,55,[[438,1,1,44,45],[439,1,1,45,46],[446,1,1,46,47],[450,1,1,47,48],[453,1,1,48,49],[461,1,1,49,50],[464,1,1,50,51],[465,1,1,51,52],[472,1,1,52,53],[473,1,1,53,54],[474,1,1,54,55]]],[18,23,23,55,78,[[484,1,1,55,56],[492,1,1,56,57],[493,1,1,57,58],[514,3,3,58,61],[532,1,1,61,62],[542,1,1,62,63],[545,3,3,63,66],[546,1,1,66,67],[551,1,1,67,68],[555,2,2,68,70],[562,1,1,70,71],[571,1,1,71,72],[579,1,1,72,73],[581,1,1,73,74],[597,2,2,74,76],[612,1,1,76,77],[616,1,1,77,78]]],[19,5,5,78,83,[[628,1,1,78,79],[629,1,1,79,80],[634,1,1,80,81],[635,1,1,81,82],[637,1,1,82,83]]],[22,13,12,83,95,[[686,1,1,83,84],[691,2,2,84,86],[696,1,1,86,87],[704,1,1,87,88],[710,1,1,88,89],[711,2,2,89,91],[712,2,2,91,93],[735,2,1,93,94],[743,1,1,94,95]]],[23,13,13,95,108,[[751,3,3,95,98],[761,1,1,98,99],[767,1,1,99,100],[769,1,1,100,101],[777,1,1,101,102],[790,1,1,102,103],[792,1,1,103,104],[793,2,2,104,106],[794,1,1,106,107],[795,1,1,107,108]]],[25,6,5,108,113,[[818,2,1,108,109],[832,1,1,109,110],[833,1,1,110,111],[844,2,2,111,113]]],[28,2,2,113,115,[[878,2,2,113,115]]],[30,1,1,115,116,[[888,1,1,115,116]]],[32,2,2,116,118,[[896,1,1,116,117],[899,1,1,117,118]]],[33,1,1,118,119,[[902,1,1,118,119]]],[37,4,4,119,123,[[912,2,2,119,121],[918,2,2,121,123]]]],[79,232,349,393,676,694,1033,1486,2193,2203,2381,2382,2742,3217,3795,3982,3983,3987,4000,4138,4425,4448,4879,5251,5313,5344,5348,5353,5568,5822,5826,5830,5838,6294,6445,6640,6730,8190,8909,8997,10872,11008,11283,12305,12909,12949,13122,13231,13291,13472,13557,13563,13777,13812,13862,14000,14088,14101,14453,14477,14479,14738,14864,14906,14916,14918,14971,15050,15168,15173,15280,15448,15549,15583,16079,16080,16196,16248,16433,16454,16586,16614,16686,17825,17926,17927,18000,18149,18275,18284,18295,18314,18320,18780,18906,19122,19126,19131,19363,19490,19558,19791,20071,20108,20143,20158,20205,20225,20848,21243,21252,21579,21581,22360,22364,22513,22630,22678,22730,22909,22910,22979,22984]]],["+",[3,3,[[5,2,2,0,2,[[204,1,1,0,1],[208,1,1,1,2]]],[15,1,1,2,3,[[413,1,1,2,3]]]],[6294,6445,12305]]],["abide",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16586]]],["abiding",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4448]]],["abode",[6,5,[[1,2,2,0,2,[[73,1,1,0,1],[89,1,1,1,2]]],[3,2,2,2,4,[[125,2,2,2,4]]],[6,2,1,4,5,[[215,2,1,4,5]]]],[2193,2742,3982,3983,6640]]],["continue",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15549]]],["dwell",[67,64,[[0,4,4,0,4,[[8,1,1,0,1],[15,1,1,1,2],[25,1,1,2,3],[48,1,1,3,4]]],[1,3,3,4,7,[[74,1,1,4,5],[78,2,2,5,7]]],[3,5,4,7,11,[[121,1,1,7,8],[130,1,1,8,9],[139,1,1,9,10],[151,2,1,10,11]]],[4,4,3,11,14,[[164,1,1,11,12],[185,3,2,12,14]]],[9,1,1,14,15,[[273,1,1,14,15]]],[10,2,2,15,17,[[296,1,1,15,16],[298,1,1,16,17]]],[12,2,2,17,19,[[354,1,1,17,18],[360,1,1,18,19]]],[13,1,1,19,20,[[372,1,1,19,20]]],[17,4,4,20,24,[[438,1,1,20,21],[446,1,1,21,22],[453,1,1,22,23],[465,1,1,23,24]]],[18,13,13,24,37,[[492,1,1,24,25],[514,3,3,25,28],[542,1,1,28,29],[545,3,3,29,32],[546,1,1,32,33],[555,1,1,33,34],[562,1,1,34,35],[597,1,1,35,36],[616,1,1,36,37]]],[19,2,2,37,39,[[628,1,1,37,38],[635,1,1,38,39]]],[22,8,8,39,47,[[691,1,1,39,40],[704,1,1,40,41],[710,1,1,41,42],[711,1,1,42,43],[712,2,2,43,45],[735,1,1,45,46],[743,1,1,46,47]]],[23,7,7,47,54,[[751,2,2,47,49],[767,1,1,49,50],[769,1,1,50,51],[777,1,1,51,52],[792,1,1,52,53],[793,1,1,53,54]]],[25,4,3,54,57,[[818,2,1,54,55],[844,2,2,55,57]]],[32,2,2,57,59,[[896,1,1,57,58],[899,1,1,58,59]]],[33,1,1,59,60,[[902,1,1,59,60]]],[37,4,4,60,64,[[912,2,2,60,62],[918,2,2,62,64]]]],[232,393,694,1486,2203,2381,2382,3795,4138,4425,4879,5251,5822,5838,8190,8909,8997,10872,11008,11283,12909,13122,13291,13563,14088,14453,14477,14479,14864,14906,14916,14918,14971,15168,15280,16079,16248,16433,16614,17927,18149,18275,18295,18314,18320,18780,18906,19122,19126,19490,19558,19791,20108,20158,20848,21579,21581,22630,22678,22730,22909,22910,22979,22984]]],["dwellers",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18000]]],["dwellest",[3,3,[[23,2,2,0,2,[[793,1,1,0,1],[795,1,1,1,2]]],[30,1,1,2,3,[[888,1,1,2,3]]]],[20143,20225,22513]]],["dwelleth",[7,7,[[4,1,1,0,1,[[185,1,1,0,1]]],[17,2,2,1,3,[[473,1,1,1,2],[474,1,1,2,3]]],[18,1,1,3,4,[[612,1,1,3,4]]],[22,2,2,4,6,[[686,1,1,4,5],[711,1,1,5,6]]],[28,1,1,6,7,[[878,1,1,6,7]]]],[5830,13812,13862,16196,17825,18284,22364]]],["dwelling",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22360]]],["dwelt",[10,10,[[0,3,3,0,3,[[13,1,1,0,1],[24,1,1,1,2],[34,1,1,2,3]]],[4,1,1,3,4,[[185,1,1,3,4]]],[6,1,1,4,5,[[218,1,1,4,5]]],[17,1,1,5,6,[[464,1,1,5,6]]],[18,3,3,6,9,[[551,1,1,6,7],[571,1,1,7,8],[597,1,1,8,9]]],[22,1,1,9,10,[[691,1,1,9,10]]]],[349,676,1033,5826,6730,13557,15050,15448,16080,17926]]],["habitation",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15583]]],["in",[4,4,[[17,2,2,0,2,[[439,1,1,0,1],[450,1,1,1,2]]],[19,1,1,2,3,[[629,1,1,2,3]]],[23,1,1,3,4,[[794,1,1,3,4]]]],[12949,13231,16454,20205]]],["inhabit",[2,2,[[19,1,1,0,1,[[637,1,1,0,1]]],[23,1,1,1,2,[[761,1,1,1,2]]]],[16686,19363]]],["inhabitants",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13472]]],["inhabited",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20071]]],["inhabiteth",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18780]]],["lay",[1,1,[[18,1,1,0,1,[[484,1,1,0,1]]]],[14000]]],["place",[5,5,[[4,5,5,0,5,[[166,1,1,0,1],[168,3,3,1,4],[178,1,1,4,5]]]],[5313,5344,5348,5353,5568]]],["placed",[2,2,[[0,1,1,0,1,[[2,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[79,15173]]],["remain",[3,3,[[17,1,1,0,1,[[472,1,1,0,1]]],[25,2,2,1,3,[[832,1,1,1,2],[833,1,1,2,3]]]],[13777,21243,21252]]],["remaineth",[1,1,[[2,1,1,0,1,[[105,1,1,0,1]]]],[3217]]],["remaining",[1,1,[[3,1,1,0,1,[[125,1,1,0,1]]]],[3987]]],["rest",[2,2,[[18,2,2,0,2,[[493,1,1,0,1],[532,1,1,1,2]]]],[14101,14738]]],["rested",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[4000]]],["set",[1,1,[[23,1,1,0,1,[[751,1,1,0,1]]]],[19131]]]]},{"k":"H7932","v":[["*",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[12163,21858]]],["dwell",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12163]]],["habitation",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21858]]]]},{"k":"H7933","v":[["habitation",[1,1,[[4,1,1,0,1,[[164,1,1,0,1]]]],[5245]]]]},{"k":"H7934","v":[["*",[20,20,[[1,2,2,0,2,[[52,1,1,0,1],[61,1,1,1,2]]],[4,1,1,2,3,[[153,1,1,2,3]]],[7,1,1,3,4,[[235,1,1,3,4]]],[11,1,1,4,5,[[316,1,1,4,5]]],[18,6,6,5,11,[[508,1,1,5,6],[521,1,1,6,7],[556,2,2,7,9],[557,1,1,9,10],[566,1,1,10,11]]],[19,1,1,11,12,[[654,1,1,11,12]]],[22,1,1,12,13,[[711,1,1,12,13]]],[23,5,5,13,18,[[750,1,1,13,14],[756,1,1,14,15],[793,2,2,15,17],[794,1,1,17,18]]],[25,1,1,18,19,[[817,1,1,18,19]]],[27,1,1,19,20,[[871,1,1,19,20]]]],[1601,1820,4899,7207,9606,14342,14584,15189,15197,15204,15367,17179,18303,19110,19263,20137,20145,20206,20788,22230]]],["+",[1,1,[[1,1,1,0,1,[[52,1,1,0,1]]]],[1601]]],["inhabitant",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18303]]],["inhabitants",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22230]]],["neighbour",[5,5,[[1,1,1,0,1,[[61,1,1,0,1]]],[19,1,1,1,2,[[654,1,1,1,2]]],[23,3,3,2,5,[[750,1,1,2,3],[793,1,1,3,4],[794,1,1,4,5]]]],[1820,17179,19110,20145,20206]]],["neighbours",[11,11,[[7,1,1,0,1,[[235,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]],[18,6,6,2,8,[[508,1,1,2,3],[521,1,1,3,4],[556,2,2,4,6],[557,1,1,6,7],[566,1,1,7,8]]],[23,2,2,8,10,[[756,1,1,8,9],[793,1,1,9,10]]],[25,1,1,10,11,[[817,1,1,10,11]]]],[7207,9606,14342,14584,15189,15197,15204,15367,19263,20137,20788]]],["nigh",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4899]]]]},{"k":"H7935","v":[["*",[10,10,[[12,3,3,0,3,[[340,2,2,0,2],[361,1,1,2,3]]],[13,1,1,3,4,[[397,1,1,3,4]]],[14,3,3,4,7,[[410,2,2,4,6],[412,1,1,6,7]]],[15,3,3,7,10,[[415,1,1,7,8],[418,1,1,8,9],[424,1,1,9,10]]]],[10382,10383,11026,11869,12204,12206,12254,12356,12419,12627]]],["Shecaniah",[2,2,[[12,1,1,0,1,[[361,1,1,0,1]]],[13,1,1,1,2,[[397,1,1,1,2]]]],[11026,11869]]],["Shechaniah",[8,8,[[12,2,2,0,2,[[340,2,2,0,2]]],[14,3,3,2,5,[[410,2,2,2,4],[412,1,1,4,5]]],[15,3,3,5,8,[[415,1,1,5,6],[418,1,1,6,7],[424,1,1,7,8]]]],[10382,10383,12204,12206,12254,12356,12419,12627]]]]},{"k":"H7936","v":[["*",[21,18,[[0,2,1,0,1,[[29,2,1,0,1]]],[4,1,1,1,2,[[175,1,1,1,2]]],[6,2,2,2,4,[[219,1,1,2,3],[228,1,1,3,4]]],[8,1,1,4,5,[[237,1,1,4,5]]],[9,1,1,5,6,[[276,1,1,5,6]]],[11,1,1,6,7,[[319,1,1,6,7]]],[12,2,2,7,9,[[356,2,2,7,9]]],[13,2,2,9,11,[[390,1,1,9,10],[391,1,1,10,11]]],[14,1,1,11,12,[[406,1,1,11,12]]],[15,3,3,12,15,[[418,2,2,12,14],[425,1,1,14,15]]],[19,2,1,15,16,[[653,2,1,15,16]]],[22,1,1,16,17,[[724,1,1,16,17]]],[36,2,1,17,18,[[909,2,1,17,18]]]],[846,5504,6758,6997,7245,8246,9713,10913,10914,11689,11710,12115,12413,12414,12673,17151,18592,22846]]],["+",[5,4,[[0,2,1,0,1,[[29,2,1,0,1]]],[9,1,1,1,2,[[276,1,1,1,2]]],[13,1,1,2,3,[[390,1,1,2,3]]],[15,1,1,3,4,[[425,1,1,3,4]]]],[846,8246,11689,12673]]],["hire",[2,2,[[12,1,1,0,1,[[356,1,1,0,1]]],[22,1,1,1,2,[[724,1,1,1,2]]]],[10913,18592]]],["hired",[9,9,[[4,1,1,0,1,[[175,1,1,0,1]]],[6,2,2,1,3,[[219,1,1,1,2],[228,1,1,2,3]]],[11,1,1,3,4,[[319,1,1,3,4]]],[12,1,1,4,5,[[356,1,1,4,5]]],[13,1,1,5,6,[[391,1,1,5,6]]],[14,1,1,6,7,[[406,1,1,6,7]]],[15,2,2,7,9,[[418,2,2,7,9]]]],[5504,6758,6997,9713,10914,11710,12115,12413,12414]]],["rewardeth",[2,1,[[19,2,1,0,1,[[653,2,1,0,1]]]],[17151]]],["themselves",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7245]]],["wages",[2,1,[[36,2,1,0,1,[[909,2,1,0,1]]]],[22846]]]]},{"k":"H7937","v":[["*",[19,19,[[0,2,2,0,2,[[8,1,1,0,1],[42,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[8,1,1,3,4,[[236,1,1,3,4]]],[9,1,1,4,5,[[277,1,1,4,5]]],[21,1,1,5,6,[[675,1,1,5,6]]],[22,4,4,6,10,[[707,1,1,6,7],[727,1,1,7,8],[729,1,1,8,9],[741,1,1,9,10]]],[23,5,5,10,15,[[769,1,1,10,11],[792,1,1,11,12],[795,3,3,12,15]]],[24,1,1,15,16,[[800,1,1,15,16]]],[33,1,1,16,17,[[902,1,1,16,17]]],[34,1,1,17,18,[[904,1,1,17,18]]],[36,1,1,18,19,[[909,1,1,18,19]]]],[226,1324,5800,7226,8272,17599,18202,18662,18694,18872,19561,20106,20219,20251,20269,20441,22723,22763,22846]]],["+",[1,1,[[36,1,1,0,1,[[909,1,1,0,1]]]],[22846]]],["abundantly",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17599]]],["drunk",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[9,1,1,1,2,[[277,1,1,1,2]]],[22,1,1,2,3,[[741,1,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]]],[5800,8272,18872,20269]]],["drunken",[12,12,[[0,1,1,0,1,[[8,1,1,0,1]]],[8,1,1,1,2,[[236,1,1,1,2]]],[22,3,3,2,5,[[707,1,1,2,3],[727,1,1,3,4],[729,1,1,4,5]]],[23,4,4,5,9,[[769,1,1,5,6],[792,1,1,6,7],[795,2,2,7,9]]],[24,1,1,9,10,[[800,1,1,9,10]]],[33,1,1,10,11,[[902,1,1,10,11]]],[34,1,1,11,12,[[904,1,1,11,12]]]],[226,7226,18202,18662,18694,19561,20106,20219,20251,20441,22723,22763]]],["merry",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1324]]]]},{"k":"H7938","v":[["*",[2,2,[[19,1,1,0,1,[[638,1,1,0,1]]],[22,1,1,1,2,[[697,1,1,1,2]]]],[16706,18014]]],["reward",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16706]]],["sluices",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18014]]]]},{"k":"H7939","v":[["*",[28,25,[[0,7,6,0,6,[[14,1,1,0,1],[29,4,4,1,5],[30,2,1,5,6]]],[1,2,2,6,8,[[51,1,1,6,7],[71,1,1,7,8]]],[3,1,1,8,9,[[134,1,1,8,9]]],[4,2,2,9,11,[[167,1,1,9,10],[176,1,1,10,11]]],[10,1,1,11,12,[[295,1,1,11,12]]],[13,1,1,12,13,[[381,1,1,12,13]]],[18,1,1,13,14,[[604,1,1,13,14]]],[20,2,2,14,16,[[662,1,1,14,15],[667,1,1,15,16]]],[22,2,2,16,18,[[718,1,1,16,17],[740,1,1,17,18]]],[23,1,1,18,19,[[775,1,1,18,19]]],[25,2,2,19,21,[[830,2,2,19,21]]],[31,1,1,21,22,[[889,1,1,21,22]]],[37,4,2,22,24,[[918,2,1,22,23],[921,2,1,23,24]]],[38,1,1,24,25,[[927,1,1,24,25]]]],[361,848,858,862,863,881,1563,2128,4288,5337,5540,8884,11497,16124,17390,17480,18430,18865,19707,21201,21202,22534,22986,23040,23125]]],["fare",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22534]]],["hire",[9,8,[[0,4,4,0,4,[[29,3,3,0,3],[30,1,1,3,4]]],[1,1,1,4,5,[[71,1,1,4,5]]],[4,1,1,5,6,[[176,1,1,5,6]]],[10,1,1,6,7,[[295,1,1,6,7]]],[37,2,1,7,8,[[918,2,1,7,8]]]],[848,862,863,881,2128,5540,8884,22986]]],["price",[2,1,[[37,2,1,0,1,[[921,2,1,0,1]]]],[23040]]],["reward",[7,7,[[0,1,1,0,1,[[14,1,1,0,1]]],[3,1,1,1,2,[[134,1,1,1,2]]],[18,1,1,2,3,[[604,1,1,2,3]]],[20,2,2,3,5,[[662,1,1,3,4],[667,1,1,4,5]]],[22,2,2,5,7,[[718,1,1,5,6],[740,1,1,6,7]]]],[361,4288,16124,17390,17480,18430,18865]]],["rewarded",[2,2,[[13,1,1,0,1,[[381,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[11497,19707]]],["wages",[6,6,[[0,2,2,0,2,[[29,1,1,0,1],[30,1,1,1,2]]],[1,1,1,2,3,[[51,1,1,2,3]]],[25,2,2,3,5,[[830,2,2,3,5]]],[38,1,1,5,6,[[927,1,1,5,6]]]],[858,881,1563,21201,21202,23125]]],["worth",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5337]]]]},{"k":"H7940","v":[["Sacar",[2,2,[[12,2,2,0,2,[[348,1,1,0,1],[363,1,1,1,2]]]],[10708,11081]]]]},{"k":"H7941","v":[["*",[23,20,[[2,1,1,0,1,[[99,1,1,0,1]]],[3,3,2,1,3,[[122,2,1,1,2],[144,1,1,2,3]]],[4,2,2,3,5,[[166,1,1,3,4],[181,1,1,4,5]]],[6,3,3,5,8,[[223,3,3,5,8]]],[8,1,1,8,9,[[236,1,1,8,9]]],[18,1,1,9,10,[[546,1,1,9,10]]],[19,3,3,10,13,[[647,1,1,10,11],[658,2,2,11,13]]],[22,8,6,13,19,[[683,2,2,13,15],[702,1,1,15,16],[706,3,1,16,17],[707,1,1,17,18],[734,1,1,18,19]]],[32,1,1,19,20,[[894,1,1,19,20]]]],[2986,3826,4584,5316,5685,6888,6891,6898,7227,14947,16955,17288,17290,17750,17761,18104,18171,18202,18765,22606]]],["+",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14947]]],["drink",[21,18,[[2,1,1,0,1,[[99,1,1,0,1]]],[3,2,1,1,2,[[122,2,1,1,2]]],[4,2,2,2,4,[[166,1,1,2,3],[181,1,1,3,4]]],[6,3,3,4,7,[[223,3,3,4,7]]],[8,1,1,7,8,[[236,1,1,7,8]]],[19,3,3,8,11,[[647,1,1,8,9],[658,2,2,9,11]]],[22,8,6,11,17,[[683,2,2,11,13],[702,1,1,13,14],[706,3,1,14,15],[707,1,1,15,16],[734,1,1,16,17]]],[32,1,1,17,18,[[894,1,1,17,18]]]],[2986,3826,5316,5685,6888,6891,6898,7227,16955,17288,17290,17750,17761,18104,18171,18202,18765,22606]]],["wine",[1,1,[[3,1,1,0,1,[[144,1,1,0,1]]]],[4584]]]]},{"k":"H7942","v":[["Shicron",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6213]]]]},{"k":"H7943","v":[["*",[3,3,[[23,1,1,0,1,[[757,1,1,0,1]]],[25,2,2,1,3,[[824,1,1,1,2],[840,1,1,2,3]]]],[19279,21040,21467]]],["drunken",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21467]]],["drunkenness",[2,2,[[23,1,1,0,1,[[757,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[19279,21040]]]]},{"k":"H7944","v":[["error",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8164]]]]},{"k":"H7945","v":[["*",[138,113,[[0,1,1,0,1,[[5,1,1,0,1]]],[6,4,4,1,5,[[215,1,1,1,2],[216,1,1,2,3],[217,1,1,3,4],[218,1,1,4,5]]],[11,1,1,5,6,[[318,1,1,5,6]]],[12,2,2,6,8,[[342,1,1,6,7],[364,1,1,7,8]]],[14,1,1,8,9,[[410,1,1,8,9]]],[17,1,1,9,10,[[454,1,1,9,10]]],[18,21,19,10,29,[[599,2,2,10,12],[600,1,1,12,13],[601,3,3,13,16],[606,2,2,16,18],[610,2,2,18,20],[612,3,3,20,23],[613,1,1,23,24],[614,3,2,24,26],[621,2,1,26,27],[623,2,2,27,29]]],[20,68,54,29,83,[[659,11,7,29,36],[660,21,16,36,52],[661,5,5,52,57],[662,2,2,57,59],[663,6,4,59,63],[664,3,2,63,65],[665,3,3,65,68],[666,4,3,68,71],[667,3,2,71,73],[668,5,5,73,78],[669,2,2,78,80],[670,3,3,80,83]]],[21,32,23,83,106,[[671,6,3,83,86],[672,2,2,86,88],[673,10,7,88,95],[674,4,3,95,98],[675,3,3,98,101],[676,4,2,101,103],[678,3,3,103,106]]],[24,4,4,106,110,[[798,2,2,106,108],[800,1,1,108,109],[801,1,1,109,110]]],[31,3,3,110,113,[[889,2,2,110,112],[892,1,1,112,113]]]],[140,6630,6671,6706,6745,9685,10448,11136,12221,13326,16092,16093,16100,16103,16104,16108,16138,16139,16171,16172,16177,16183,16185,16219,16230,16231,16320,16344,16346,17318,17322,17324,17325,17326,17329,17332,17340,17342,17344,17345,17346,17347,17348,17349,17350,17351,17352,17353,17354,17355,17357,17359,17372,17373,17374,17377,17381,17383,17391,17402,17412,17413,17415,17420,17427,17439,17443,17453,17465,17472,17475,17480,17487,17496,17498,17507,17509,17510,17516,17521,17526,17530,17532,17543,17544,17549,17561,17571,17572,17573,17574,17575,17576,17578,17582,17583,17584,17588,17600,17606,17607,17619,17620,17644,17648,17652,20347,20348,20429,20460,22538,22543,22578]]],["+",[131,107,[[0,1,1,0,1,[[5,1,1,0,1]]],[6,4,4,1,5,[[215,1,1,1,2],[216,1,1,2,3],[217,1,1,3,4],[218,1,1,4,5]]],[11,1,1,5,6,[[318,1,1,5,6]]],[12,2,2,6,8,[[342,1,1,6,7],[364,1,1,7,8]]],[17,1,1,8,9,[[454,1,1,8,9]]],[18,21,19,9,28,[[599,2,2,9,11],[600,1,1,11,12],[601,3,3,12,15],[606,2,2,15,17],[610,2,2,17,19],[612,3,3,19,22],[613,1,1,22,23],[614,3,2,23,25],[621,2,1,25,26],[623,2,2,26,28]]],[20,66,52,28,80,[[659,11,7,28,35],[660,21,16,35,51],[661,4,4,51,55],[662,2,2,55,57],[663,6,4,57,61],[664,3,2,61,63],[665,3,3,63,66],[666,3,2,66,68],[667,3,2,68,70],[668,5,5,70,75],[669,2,2,75,77],[670,3,3,77,80]]],[21,30,22,80,102,[[671,5,3,80,83],[672,2,2,83,85],[673,10,7,85,92],[674,4,3,92,95],[675,3,3,95,98],[676,4,2,98,100],[678,2,2,100,102]]],[24,3,3,102,105,[[798,2,2,102,104],[800,1,1,104,105]]],[31,2,2,105,107,[[889,1,1,105,106],[892,1,1,106,107]]]],[140,6630,6671,6706,6745,9685,10448,11136,13326,16092,16093,16100,16103,16104,16108,16138,16139,16171,16172,16177,16183,16185,16219,16230,16231,16320,16344,16346,17318,17322,17324,17325,17326,17329,17332,17340,17342,17344,17345,17346,17347,17348,17349,17350,17351,17352,17353,17354,17355,17357,17359,17372,17373,17374,17381,17383,17391,17402,17412,17413,17415,17420,17427,17439,17443,17453,17465,17472,17480,17487,17496,17498,17507,17509,17510,17516,17521,17526,17530,17532,17543,17544,17549,17561,17571,17572,17573,17574,17575,17576,17578,17582,17583,17584,17588,17600,17606,17607,17619,17620,17644,17648,20347,20348,20429,22538,22578]]],["because",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17475]]],["mine",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17652]]],["own",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17543]]],["sake",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22543]]],["they",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17377]]],["which",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20460]]],["whom",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12221]]]]},{"k":"H7946","v":[["ease",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13378]]]]},{"k":"H7947","v":[["*",[2,2,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]]],[2252,2588]]],["distant",[1,1,[[1,1,1,0,1,[[85,1,1,0,1]]]],[2588]]],["order",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2252]]]]},{"k":"H7948","v":[["ledges",[3,2,[[10,3,2,0,2,[[297,3,2,0,2]]]],[8962,8963]]]]},{"k":"H7949","v":[["snow",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14914]]]]},{"k":"H7950","v":[["*",[20,20,[[1,1,1,0,1,[[53,1,1,0,1]]],[3,1,1,1,2,[[128,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[11,1,1,3,4,[[317,1,1,3,4]]],[12,1,1,4,5,[[348,1,1,4,5]]],[17,5,5,5,10,[[441,1,1,5,6],[444,1,1,6,7],[459,1,1,7,8],[472,1,1,8,9],[473,1,1,9,10]]],[18,3,3,10,13,[[528,1,1,10,11],[624,1,1,11,12],[625,1,1,12,13]]],[19,3,3,13,16,[[652,1,1,13,14],[653,1,1,14,15],[658,1,1,15,16]]],[22,2,2,16,18,[[679,1,1,16,17],[733,1,1,17,18]]],[23,1,1,18,19,[[762,1,1,18,19]]],[24,1,1,19,20,[[800,1,1,19,20]]]],[1607,4069,8673,9674,10695,12994,13081,13455,13775,13815,14698,16367,16379,17126,17142,17305,17672,18750,19398,20427]]],["+",[3,3,[[18,1,1,0,1,[[528,1,1,0,1]]],[19,1,1,1,2,[[658,1,1,1,2]]],[24,1,1,2,3,[[800,1,1,2,3]]]],[14698,17305,20427]]],["snow",[16,16,[[1,1,1,0,1,[[53,1,1,0,1]]],[3,1,1,1,2,[[128,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[11,1,1,3,4,[[317,1,1,3,4]]],[17,5,5,4,9,[[441,1,1,4,5],[444,1,1,5,6],[459,1,1,6,7],[472,1,1,7,8],[473,1,1,8,9]]],[18,2,2,9,11,[[624,1,1,9,10],[625,1,1,10,11]]],[19,2,2,11,13,[[652,1,1,11,12],[653,1,1,12,13]]],[22,2,2,13,15,[[679,1,1,13,14],[733,1,1,14,15]]],[23,1,1,15,16,[[762,1,1,15,16]]]],[1607,4069,8673,9674,12994,13081,13455,13775,13815,16367,16379,17126,17142,17672,18750,19398]]],["snowy",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10695]]]]},{"k":"H7951","v":[["*",[5,5,[[17,2,2,0,2,[[438,1,1,0,1],[447,1,1,1,2]]],[18,1,1,2,3,[[599,1,1,2,3]]],[23,1,1,3,4,[[756,1,1,3,4]]],[24,1,1,4,5,[[797,1,1,4,5]]]],[12930,13134,16095,19250,20315]]],["happy",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19250]]],["prosper",[3,3,[[17,1,1,0,1,[[447,1,1,0,1]]],[18,1,1,1,2,[[599,1,1,1,2]]],[24,1,1,2,3,[[797,1,1,2,3]]]],[13134,16095,20315]]],["safety",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12930]]]]},{"k":"H7952","v":[["*",[2,2,[[11,1,1,0,1,[[316,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]]],[9631,11802]]],["deceive",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9631]]],["negligent",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11802]]]]},{"k":"H7953","v":[["away",[1,1,[[17,1,1,0,1,[[462,1,1,0,1]]]],[13489]]]]},{"k":"H7954","v":[["rest",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21841]]]]},{"k":"H7955","v":[["amiss",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21836]]]]},{"k":"H7956","v":[["Shelah",[8,8,[[0,5,5,0,5,[[37,4,4,0,4],[45,1,1,4,5]]],[3,1,1,5,6,[[142,1,1,5,6]]],[12,2,2,6,8,[[339,1,1,6,7],[341,1,1,7,8]]]],[1124,1130,1133,1145,1398,4509,10309,10406]]]]},{"k":"H7957","v":[["flame",[3,3,[[17,1,1,0,1,[[450,1,1,0,1]]],[21,1,1,1,2,[[678,1,1,1,2]]],[25,1,1,2,3,[[821,1,1,2,3]]]],[13233,17646,20942]]]]},{"k":"H7958","v":[["quails",[4,4,[[1,1,1,0,1,[[65,1,1,0,1]]],[3,2,2,1,3,[[127,2,2,1,3]]],[18,1,1,3,4,[[582,1,1,3,4]]]],[1960,4055,4056,15646]]]]},{"k":"H7959","v":[["prosperity",[1,1,[[18,1,1,0,1,[[507,1,1,0,1]]]],[14325]]]]},{"k":"H7960","v":[["*",[3,3,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]],[26,1,1,2,3,[[855,1,1,2,3]]]],[12132,12160,21909]]],["error",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21909]]],["fail",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12160]]],["not",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12132]]]]},{"k":"H7961","v":[["*",[8,8,[[12,1,1,0,1,[[341,1,1,0,1]]],[17,3,3,1,4,[[451,1,1,1,2],[455,1,1,2,3],[456,1,1,3,4]]],[18,1,1,4,5,[[550,1,1,4,5]]],[23,1,1,5,6,[[793,1,1,5,6]]],[25,1,1,6,7,[[824,1,1,6,7]]],[37,1,1,7,8,[[917,1,1,7,8]]]],[10425,13250,13346,13378,15032,20158,21049,22969]]],["ease",[2,2,[[17,1,1,0,1,[[451,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[13250,21049]]],["peaceable",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10425]]],["prosper",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15032]]],["prosperity",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22969]]],["quiet",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13378]]],["quietness",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13346]]],["wealthy",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20158]]]]},{"k":"H7962","v":[["*",[8,8,[[18,1,1,0,1,[[599,1,1,0,1]]],[19,2,2,1,3,[[628,1,1,1,2],[644,1,1,2,3]]],[23,1,1,3,4,[[766,1,1,3,4]]],[25,1,1,4,5,[[817,1,1,4,5]]],[26,3,3,5,8,[[857,1,1,5,6],[860,2,2,6,8]]]],[16096,16432,16874,19475,20811,21986,22057,22060]]],["abundance",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20811]]],["peace",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21986]]],["peaceably",[2,2,[[26,2,2,0,2,[[860,2,2,0,2]]]],[22057,22060]]],["prosperity",[3,3,[[18,1,1,0,1,[[599,1,1,0,1]]],[19,1,1,1,2,[[628,1,1,1,2]]],[23,1,1,2,3,[[766,1,1,2,3]]]],[16096,16432,19475]]],["quietness",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16874]]]]},{"k":"H7963","v":[["tranquillity",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]]]},{"k":"H7964","v":[["*",[3,3,[[1,1,1,0,1,[[67,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[32,1,1,2,3,[[893,1,1,2,3]]]],[2001,9067,22593]]],["back",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2001]]],["present",[1,1,[[10,1,1,0,1,[[299,1,1,0,1]]]],[9067]]],["presents",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22593]]]]},{"k":"H7965","v":[["*",[236,208,[[0,15,12,0,12,[[14,1,1,0,1],[25,2,2,1,3],[27,1,1,3,4],[28,2,1,4,5],[36,3,2,5,7],[40,1,1,7,8],[42,4,3,8,11],[43,1,1,11,12]]],[1,3,3,12,15,[[53,1,1,12,13],[67,2,2,13,15]]],[2,1,1,15,16,[[115,1,1,15,16]]],[3,2,2,16,18,[[122,1,1,16,17],[141,1,1,17,18]]],[4,5,5,18,23,[[154,1,1,18,19],[172,2,2,19,21],[175,1,1,21,22],[181,1,1,22,23]]],[5,2,2,23,25,[[195,1,1,23,24],[196,1,1,24,25]]],[6,9,9,25,34,[[214,1,1,25,26],[216,1,1,26,27],[218,1,1,27,28],[221,2,2,28,30],[228,2,2,30,32],[229,1,1,32,33],[231,1,1,33,34]]],[8,18,16,34,50,[[236,1,1,34,35],[242,1,1,35,36],[245,1,1,36,37],[251,2,2,37,39],[252,2,2,39,41],[255,4,4,41,45],[260,5,3,45,48],[264,1,1,48,49],[265,1,1,49,50]]],[9,16,14,50,64,[[269,3,3,50,53],[274,1,1,53,54],[277,3,1,54,55],[281,2,2,55,57],[283,1,1,57,58],[284,3,3,58,61],[285,2,2,61,63],[286,1,1,63,64]]],[10,11,10,64,74,[[292,5,4,64,68],[294,1,1,68,69],[295,1,1,69,70],[310,1,1,70,71],[312,3,3,71,74]]],[11,20,14,74,88,[[316,5,2,74,76],[317,3,3,76,79],[321,9,6,79,85],[322,1,1,85,86],[332,1,1,86,87],[334,1,1,87,88]]],[12,6,4,88,92,[[349,4,2,88,90],[355,1,1,90,91],[359,1,1,91,92]]],[13,6,6,92,98,[[381,1,1,92,93],[384,3,3,93,96],[385,1,1,96,97],[400,1,1,97,98]]],[14,1,1,98,99,[[411,1,1,98,99]]],[16,3,3,99,102,[[427,1,1,99,100],[434,1,1,100,101],[435,1,1,101,102]]],[17,4,4,102,106,[[440,1,1,102,103],[450,1,1,103,104],[456,1,1,104,105],[460,1,1,105,106]]],[18,27,27,106,133,[[481,1,1,106,107],[505,1,1,107,108],[506,1,1,108,109],[511,1,1,109,110],[512,2,2,110,112],[514,2,2,112,114],[515,1,1,114,115],[518,1,1,115,116],[532,2,2,116,118],[546,1,1,118,119],[549,2,2,119,121],[550,1,1,121,122],[562,2,2,122,124],[596,1,1,124,125],[597,2,2,125,127],[599,3,3,127,130],[602,1,1,130,131],[605,1,1,131,132],[624,1,1,132,133]]],[19,3,3,133,136,[[630,2,2,133,135],[639,1,1,135,136]]],[20,1,1,136,137,[[661,1,1,136,137]]],[21,1,1,137,138,[[678,1,1,137,138]]],[22,29,25,138,163,[[687,2,2,138,140],[704,3,2,140,142],[705,2,1,142,143],[710,2,2,143,145],[711,1,1,145,146],[716,1,1,146,147],[717,1,1,147,148],[719,1,1,148,149],[723,1,1,149,150],[726,2,2,150,152],[730,1,1,152,153],[731,1,1,153,154],[732,2,2,154,156],[733,1,1,156,157],[735,4,3,157,160],[737,2,1,160,161],[738,1,1,161,162],[744,1,1,162,163]]],[23,31,25,163,188,[[748,1,1,163,164],[750,3,1,164,165],[752,4,2,165,167],[753,1,1,167,168],[756,2,2,168,170],[757,1,1,170,171],[758,2,2,171,173],[759,1,1,173,174],[760,1,1,174,175],[764,1,1,175,176],[767,1,1,176,177],[769,1,1,177,178],[772,1,1,178,179],[773,4,2,179,181],[774,1,1,181,182],[777,2,2,182,184],[778,1,1,184,185],[782,2,2,185,187],[787,1,1,187,188]]],[24,1,1,188,189,[[799,1,1,188,189]]],[25,7,5,189,194,[[808,1,1,189,190],[814,4,2,190,192],[835,1,1,192,193],[838,1,1,193,194]]],[26,1,1,194,195,[[859,1,1,194,195]]],[30,1,1,195,196,[[888,1,1,195,196]]],[32,2,2,196,198,[[895,1,1,196,197],[897,1,1,197,198]]],[33,1,1,198,199,[[900,1,1,198,199]]],[36,1,1,199,200,[[910,1,1,199,200]]],[37,6,6,200,206,[[916,1,1,200,201],[918,4,4,201,205],[919,1,1,205,206]]],[38,2,2,206,208,[[926,2,2,206,208]]]],[375,721,723,794,801,1087,1097,1211,1313,1317,1318,1341,1619,2006,2022,3530,3849,4483,4964,5437,5438,5506,5698,6052,6085,6616,6677,6728,6842,6860,6999,7008,7044,7115,7229,7366,7422,7599,7600,7636,7640,7737,7743,7751,7772,7866,7867,7896,7974,7999,8102,8103,8104,8219,8266,8398,8416,8452,8506,8507,8510,8535,8541,8563,8775,8776,8783,8803,8868,8890,9426,9497,9507,9508,9626,9629,9666,9668,9669,9767,9773,9774,9775,9778,9787,9806,10117,10165,10737,10738,10900,10973,11495,11558,11568,11569,11577,11961,12249,12735,12864,12869,12975,13224,13364,13463,13973,14302,14319,14402,14430,14437,14461,14487,14493,14551,14750,14752,14957,15003,15007,15023,15279,15281,16063,16080,16081,16095,16096,16097,16115,16132,16365,16457,16472,16739,17367,17650,17835,17836,18133,18142,18156,18276,18277,18286,18407,18420,18454,18568,18632,18636,18703,18716,18733,18736,18752,18767,18784,18786,18808,18838,18934,19037,19103,19164,19168,19183,19254,19261,19285,19306,19312,19320,19341,19432,19501,19571,19627,19642,19646,19672,19781,19784,19806,19899,19917,20009,20371,20602,20718,20724,21338,21423,22034,22517,22613,22638,22699,22864,22960,22986,22988,22992,22995,23009,23108,23109]]],["+",[12,11,[[6,1,1,0,1,[[228,1,1,0,1]]],[8,4,4,1,5,[[245,1,1,1,2],[252,1,1,2,3],[260,1,1,3,4],[265,1,1,4,5]]],[9,1,1,5,6,[[274,1,1,5,6]]],[18,1,1,6,7,[[518,1,1,6,7]]],[22,2,1,7,8,[[704,2,1,7,8]]],[23,2,2,8,10,[[764,1,1,8,9],[782,1,1,9,10]]],[24,1,1,10,11,[[799,1,1,10,11]]]],[7008,7422,7640,7866,7999,8219,14551,18133,19432,19917,20371]]],["Peace",[12,12,[[0,1,1,0,1,[[42,1,1,0,1]]],[6,2,2,1,3,[[216,1,1,1,2],[229,1,1,2,3]]],[8,1,1,3,4,[[260,1,1,3,4]]],[18,2,2,4,6,[[599,2,2,4,6]]],[22,2,2,6,8,[[687,1,1,6,7],[735,1,1,7,8]]],[23,2,2,8,10,[[750,1,1,8,9],[752,1,1,9,10]]],[25,1,1,10,11,[[814,1,1,10,11]]],[32,1,1,11,12,[[895,1,1,11,12]]]],[1313,6677,7044,7867,16096,16097,17835,18784,19103,19164,20718,22613]]],["Peaceably",[2,2,[[8,1,1,0,1,[[251,1,1,0,1]]],[10,1,1,1,2,[[292,1,1,1,2]]]],[7600,8783]]],["did",[3,2,[[9,2,1,0,1,[[277,2,1,0,1]]],[16,1,1,1,2,[[427,1,1,1,2]]]],[8266,12735]]],["doest",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19320]]],["fare",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7636]]],["favour",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17650]]],["health",[2,2,[[0,1,1,0,1,[[42,1,1,0,1]]],[9,1,1,1,2,[[286,1,1,1,2]]]],[1318,8563]]],["peace",[161,148,[[0,6,6,0,6,[[14,1,1,0,1],[25,2,2,1,3],[27,1,1,3,4],[40,1,1,4,5],[43,1,1,5,6]]],[1,2,2,6,8,[[53,1,1,6,7],[67,1,1,7,8]]],[2,1,1,8,9,[[115,1,1,8,9]]],[3,2,2,9,11,[[122,1,1,9,10],[141,1,1,10,11]]],[4,5,5,11,16,[[154,1,1,11,12],[172,2,2,12,14],[175,1,1,14,15],[181,1,1,15,16]]],[5,2,2,16,18,[[195,1,1,16,17],[196,1,1,17,18]]],[6,4,4,18,22,[[214,1,1,18,19],[218,1,1,19,20],[221,1,1,20,21],[228,1,1,21,22]]],[8,10,9,22,31,[[236,1,1,22,23],[242,1,1,23,24],[255,4,4,24,28],[260,3,2,28,30],[264,1,1,30,31]]],[9,8,8,31,39,[[269,3,3,31,34],[281,2,2,34,36],[283,1,1,36,37],[285,2,2,37,39]]],[10,9,9,39,48,[[292,3,3,39,42],[294,1,1,42,43],[295,1,1,43,44],[310,1,1,44,45],[312,3,3,45,48]]],[11,11,8,48,56,[[317,1,1,48,49],[321,8,5,49,54],[332,1,1,54,55],[334,1,1,55,56]]],[12,4,2,56,58,[[349,3,1,56,57],[359,1,1,57,58]]],[13,6,6,58,64,[[381,1,1,58,59],[384,3,3,59,62],[385,1,1,62,63],[400,1,1,63,64]]],[14,1,1,64,65,[[411,1,1,64,65]]],[16,2,2,65,67,[[434,1,1,65,66],[435,1,1,66,67]]],[17,2,2,67,69,[[440,1,1,67,68],[460,1,1,68,69]]],[18,20,20,69,89,[[481,1,1,69,70],[505,1,1,70,71],[506,1,1,71,72],[511,1,1,72,73],[512,1,1,73,74],[514,2,2,74,76],[532,2,2,76,78],[549,2,2,78,80],[562,2,2,80,82],[596,1,1,82,83],[597,2,2,83,85],[599,1,1,85,86],[602,1,1,86,87],[605,1,1,87,88],[624,1,1,88,89]]],[19,3,3,89,92,[[630,2,2,89,91],[639,1,1,91,92]]],[20,1,1,92,93,[[661,1,1,92,93]]],[22,23,21,93,114,[[687,1,1,93,94],[704,1,1,94,95],[705,2,1,95,96],[710,1,1,96,97],[711,1,1,97,98],[716,1,1,98,99],[717,1,1,99,100],[723,1,1,100,101],[726,2,2,101,103],[730,1,1,103,104],[731,1,1,104,105],[732,2,2,105,107],[733,1,1,107,108],[735,3,3,108,111],[737,2,1,111,112],[738,1,1,112,113],[744,1,1,113,114]]],[23,21,17,114,131,[[748,1,1,114,115],[750,2,1,115,116],[752,3,2,116,118],[756,2,2,118,120],[758,2,2,120,122],[760,1,1,122,123],[767,1,1,123,124],[772,1,1,124,125],[773,4,2,125,127],[774,1,1,127,128],[777,1,1,128,129],[778,1,1,129,130],[787,1,1,130,131]]],[25,6,5,131,136,[[808,1,1,131,132],[814,3,2,132,134],[835,1,1,134,135],[838,1,1,135,136]]],[26,1,1,136,137,[[859,1,1,136,137]]],[30,1,1,137,138,[[888,1,1,137,138]]],[32,1,1,138,139,[[897,1,1,138,139]]],[33,1,1,139,140,[[900,1,1,139,140]]],[36,1,1,140,141,[[910,1,1,140,141]]],[37,5,5,141,146,[[916,1,1,141,142],[918,3,3,142,145],[919,1,1,145,146]]],[38,2,2,146,148,[[926,2,2,146,148]]]],[375,721,723,794,1211,1341,1619,2022,3530,3849,4483,4964,5437,5438,5506,5698,6052,6085,6616,6728,6860,6999,7229,7366,7737,7743,7751,7772,7867,7896,7974,8102,8103,8104,8398,8416,8452,8535,8541,8775,8776,8803,8868,8890,9426,9497,9507,9508,9666,9773,9774,9775,9778,9787,10117,10165,10738,10973,11495,11558,11568,11569,11577,11961,12249,12864,12869,12975,13463,13973,14302,14319,14402,14430,14461,14487,14750,14752,15003,15007,15279,15281,16063,16080,16081,16095,16115,16132,16365,16457,16472,16739,17367,17836,18142,18156,18276,18286,18407,18420,18568,18632,18636,18703,18716,18733,18736,18752,18767,18784,18786,18808,18838,18934,19037,19103,19164,19168,19254,19261,19306,19312,19341,19501,19627,19642,19646,19672,19781,19806,20009,20602,20718,20724,21338,21423,22034,22517,22638,22699,22864,22960,22986,22992,22995,23009,23108,23109]]],["peaceable",[2,2,[[22,1,1,0,1,[[710,1,1,0,1]]],[23,1,1,1,2,[[769,1,1,1,2]]]],[18277,19571]]],["peaceably",[7,7,[[0,1,1,0,1,[[36,1,1,0,1]]],[6,2,2,1,3,[[221,1,1,1,2],[231,1,1,2,3]]],[8,1,1,3,4,[[251,1,1,3,4]]],[10,1,1,4,5,[[292,1,1,4,5]]],[12,1,1,5,6,[[349,1,1,5,6]]],[23,1,1,6,7,[[753,1,1,6,7]]]],[1087,6842,7115,7599,8783,10737,19183]]],["prospered",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8266]]],["prosperity",[4,4,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,2,2,1,3,[[512,1,1,1,2],[550,1,1,2,3]]],[23,1,1,3,4,[[777,1,1,3,4]]]],[13224,14437,15023,19784]]],["prosperous",[1,1,[[37,1,1,0,1,[[918,1,1,0,1]]]],[22988]]],["rest",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14493]]],["safe",[3,3,[[9,2,2,0,2,[[284,2,2,0,2]]],[17,1,1,2,3,[[456,1,1,2,3]]]],[8507,8510,13364]]],["safely",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18454]]],["salute",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9806]]],["welfare",[5,5,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,1,1,1,2,[[67,1,1,1,2]]],[12,1,1,2,3,[[355,1,1,2,3]]],[18,1,1,3,4,[[546,1,1,3,4]]],[23,1,1,4,5,[[782,1,1,4,5]]]],[1317,2006,10900,14957,19899]]],["well",[14,9,[[0,5,3,0,3,[[28,2,1,0,1],[36,2,1,1,2],[42,1,1,2,3]]],[9,1,1,3,4,[[284,1,1,3,4]]],[11,8,5,4,9,[[316,5,2,4,6],[317,2,2,6,8],[321,1,1,8,9]]]],[801,1097,1317,8506,9626,9629,9668,9669,9767]]],["wholly",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19285]]]]},{"k":"H7966","v":[["*",[3,3,[[22,1,1,0,1,[[712,1,1,0,1]]],[27,1,1,1,2,[[870,1,1,1,2]]],[32,1,1,2,3,[[899,1,1,2,3]]]],[18311,22215,22667]]],["recompence",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22215]]],["recompences",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18311]]],["reward",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22667]]]]},{"k":"H7967","v":[["Shallum",[27,26,[[11,5,5,0,5,[[327,4,4,0,4],[334,1,1,4,5]]],[12,11,10,5,15,[[339,2,2,5,7],[340,1,1,7,8],[341,1,1,8,9],[343,2,2,9,11],[344,1,1,11,12],[346,4,3,12,15]]],[13,2,2,15,17,[[394,1,1,15,16],[400,1,1,16,17]]],[14,4,4,17,21,[[404,1,1,17,18],[409,1,1,18,19],[412,2,2,19,21]]],[15,2,2,21,23,[[415,1,1,21,22],[419,1,1,22,23]]],[23,3,3,23,26,[[766,1,1,23,24],[776,1,1,24,25],[779,1,1,25,26]]]],[9935,9938,9939,9940,10159,10346,10347,10376,10410,10466,10467,10548,10632,10634,10646,11776,11955,12069,12175,12276,12294,12339,12465,19465,19738,19827]]]]},{"k":"H7968","v":[["Shallun",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12342]]]]},{"k":"H7969","v":[["*",[430,381,[[0,29,27,0,27,[[4,2,2,0,2],[5,2,2,2,4],[6,1,1,4,5],[8,2,2,5,7],[10,2,2,7,9],[13,2,2,9,11],[16,1,1,11,12],[17,2,2,12,14],[28,2,2,14,16],[29,1,1,16,17],[37,1,1,17,18],[39,8,6,18,24],[41,1,1,24,25],[44,1,1,25,26],[45,1,1,26,27]]],[1,35,27,27,54,[[51,1,1,27,28],[52,1,1,28,29],[54,1,1,29,30],[55,1,1,30,31],[56,1,1,31,32],[57,1,1,32,33],[59,2,2,33,35],[64,1,1,35,36],[68,1,1,36,37],[70,1,1,37,38],[72,2,2,38,40],[74,4,2,40,42],[76,5,3,42,45],[81,1,1,45,46],[83,2,2,46,48],[86,4,2,48,50],[87,6,4,50,54]]],[2,5,5,54,59,[[101,1,1,54,55],[103,1,1,55,56],[108,1,1,56,57],[114,1,1,57,58],[116,1,1,58,59]]],[3,37,33,59,92,[[117,3,3,59,62],[118,3,3,62,65],[119,3,3,65,68],[120,1,1,68,69],[126,2,1,69,70],[128,2,1,70,71],[131,1,1,71,72],[138,3,3,72,75],[140,1,1,75,76],[142,4,4,76,80],[144,3,3,80,83],[145,5,4,83,87],[147,2,2,87,89],[149,2,2,89,91],[151,2,1,91,92]]],[4,9,8,92,100,[[156,1,1,92,93],[166,1,1,93,94],[168,1,1,94,95],[169,1,1,95,96],[171,5,4,96,100]]],[5,16,16,100,116,[[187,1,1,100,101],[188,2,2,101,103],[189,1,1,103,104],[193,2,2,104,106],[195,1,1,106,107],[201,1,1,107,108],[203,1,1,108,109],[204,1,1,109,110],[205,1,1,110,111],[207,5,5,111,116]]],[6,19,18,116,134,[[211,1,1,116,117],[217,7,6,117,123],[218,1,1,123,124],[219,2,2,124,126],[220,1,1,126,127],[221,1,1,127,128],[224,1,1,128,129],[225,2,2,129,131],[226,2,2,131,133],[229,1,1,133,134]]],[8,25,21,134,155,[[236,1,1,134,135],[237,2,2,135,137],[244,1,1,137,138],[245,3,1,138,139],[246,2,2,139,141],[248,3,3,141,144],[252,3,2,144,146],[255,2,2,146,148],[259,1,1,148,149],[260,1,1,149,150],[261,1,1,150,151],[265,3,2,151,153],[266,2,2,153,155]]],[9,23,20,155,175,[[268,2,2,155,157],[271,1,1,157,158],[272,1,1,158,159],[279,1,1,159,160],[280,1,1,160,161],[284,1,1,161,162],[286,1,1,162,163],[287,2,2,163,165],[289,10,8,165,173],[290,3,2,173,175]]],[10,27,21,175,196,[[292,2,2,175,177],[294,1,1,177,178],[295,2,1,178,179],[296,1,1,179,180],[297,10,6,180,186],[299,1,1,186,187],[300,3,2,187,189],[301,1,1,189,190],[302,1,1,190,191],[305,3,3,191,194],[307,1,1,194,195],[312,1,1,195,196]]],[11,19,18,196,214,[[314,1,1,196,197],[315,2,2,197,199],[321,1,1,199,200],[324,1,1,200,201],[325,4,4,201,205],[329,1,1,205,206],[330,3,3,206,209],[335,2,1,209,210],[336,2,2,210,212],[337,2,2,212,214]]],[12,40,35,214,249,[[339,3,3,214,217],[340,2,2,217,219],[343,2,2,219,221],[344,1,1,221,222],[347,1,1,222,223],[348,12,9,223,232],[349,3,3,232,235],[350,1,1,235,236],[358,4,2,236,238],[360,3,3,238,241],[361,2,2,241,243],[362,3,3,243,246],[363,1,1,246,247],[366,2,2,247,249]]],[13,33,27,249,276,[[368,3,3,249,252],[370,5,2,252,254],[372,1,1,254,255],[373,1,1,255,256],[374,1,1,256,257],[375,3,2,257,259],[376,1,1,259,260],[377,2,1,260,261],[379,1,1,261,262],[380,2,2,262,264],[383,2,2,264,266],[386,1,1,266,267],[391,2,2,267,269],[392,1,1,269,270],[395,1,1,270,271],[397,1,1,271,272],[401,2,2,272,274],[402,3,2,274,276]]],[14,20,19,276,295,[[404,15,14,276,290],[410,3,3,290,293],[412,2,2,293,295]]],[15,14,14,295,309,[[414,1,1,295,296],[419,13,13,296,309]]],[16,10,10,309,319,[[426,1,1,309,310],[428,2,2,310,312],[429,1,1,312,313],[433,2,2,313,315],[434,4,4,315,319]]],[17,10,10,319,329,[[436,4,4,319,323],[437,1,1,323,324],[467,3,3,324,327],[468,1,1,327,328],[477,1,1,328,329]]],[19,4,4,329,333,[[657,4,4,329,333]]],[22,3,3,333,336,[[694,1,1,333,334],[695,1,1,334,335],[698,1,1,335,336]]],[23,8,6,336,342,[[745,1,1,336,337],[769,2,1,337,338],[780,1,1,338,339],[796,4,3,339,342]]],[25,20,16,342,358,[[805,2,2,342,344],[815,3,3,344,347],[841,8,4,347,351],[842,3,3,351,354],[849,4,4,354,358]]],[26,9,9,358,367,[[850,2,2,358,360],[857,2,2,360,362],[859,3,3,362,365],[860,1,1,365,366],[861,1,1,366,367]]],[29,11,11,367,378,[[879,5,5,367,372],[880,3,3,372,375],[882,3,3,375,378]]],[31,3,2,378,380,[[889,2,1,378,379],[891,1,1,379,380]]],[37,1,1,380,381,[[921,1,1,380,381]]]],[127,128,147,152,172,224,233,279,281,340,350,422,426,430,797,829,866,1143,1182,1184,1185,1188,1190,1191,1269,1380,1401,1556,1597,1635,1673,1692,1737,1799,1800,1942,2041,2088,2158,2161,2227,2228,2273,2286,2287,2466,2519,2520,2622,2623,2634,2647,2648,2659,3048,3121,3304,3490,3576,3627,3647,3650,3671,3688,3690,3735,3738,3742,3787,4021,4063,4162,4403,4407,4408,4456,4496,4514,4536,4551,4589,4597,4605,4611,4617,4621,4622,4700,4707,4768,4799,4859,5045,5318,5358,5370,5408,5413,5415,5421,5862,5885,5891,5895,5979,5980,6053,6216,6286,6297,6327,6385,6387,6400,6413,6414,6529,6700,6701,6702,6710,6714,6716,6723,6776,6797,6813,6855,6923,6933,6940,6964,6976,7028,7236,7253,7261,7411,7421,7453,7456,7487,7502,7506,7631,7632,7750,7771,7841,7863,7907,7990,7991,8015,8017,8067,8080,8137,8168,8355,8383,8492,8558,8581,8596,8662,8666,8669,8670,8671,8672,8675,8676,8704,8705,8781,8809,8876,8894,8932,8935,8938,8939,8946,8959,8961,9076,9096,9101,9111,9156,9251,9277,9282,9338,9481,9568,9586,9589,9788,9856,9872,9889,9890,9896,9988,10025,10034,10038,10196,10203,10210,10239,10240,10309,10322,10328,10365,10384,10514,10516,10541,10665,10684,10685,10688,10691,10692,10693,10694,10697,10698,10747,10749,10759,10774,10944,10946,10991,10992,11006,11028,11033,11051,11066,11076,11088,11168,11191,11213,11228,11229,11250,11251,11295,11334,11359,11380,11385,11400,11431,11455,11483,11484,11530,11537,11612,11709,11717,11745,11824,11870,11973,11974,11995,12002,12031,12038,12044,12046,12048,12052,12055,12059,12061,12062,12063,12085,12091,12092,12206,12216,12233,12260,12261,12318,12429,12437,12442,12443,12449,12452,12455,12456,12458,12459,12480,12486,12487,12705,12759,12760,12778,12826,12829,12835,12849,12851,12852,12871,12872,12873,12886,12902,13629,13631,13633,13679,13935,17266,17269,17272,17280,17983,17989,18032,18948,19537,19865,20300,20304,20306,20534,20538,20745,20747,20749,21487,21488,21498,21525,21532,21542,21548,21733,21734,21735,21736,21738,21742,21962,21975,22016,22017,22018,22038,22093,22367,22370,22373,22375,22377,22380,22383,22385,22414,22417,22418,22548,22561,23036]]],["+",[34,34,[[0,3,3,0,3,[[13,1,1,0,1],[16,1,1,1,2],[37,1,1,2,3]]],[1,2,2,3,5,[[83,2,2,3,5]]],[3,4,4,5,9,[[119,2,2,5,7],[145,2,2,7,9]]],[5,5,5,9,14,[[205,1,1,9,10],[207,4,4,10,14]]],[8,1,1,14,15,[[248,1,1,14,15]]],[10,1,1,15,16,[[297,1,1,15,16]]],[11,2,2,16,18,[[325,2,2,16,18]]],[12,5,5,18,23,[[343,2,2,18,20],[361,1,1,20,21],[362,1,1,21,22],[363,1,1,22,23]]],[16,6,6,23,29,[[428,2,2,23,25],[433,1,1,25,26],[434,3,3,26,29]]],[17,1,1,29,30,[[468,1,1,29,30]]],[19,1,1,30,31,[[657,1,1,30,31]]],[23,2,2,31,33,[[745,1,1,31,32],[769,1,1,32,33]]],[25,1,1,33,34,[[841,1,1,33,34]]]],[340,422,1143,2519,2520,3735,3738,4621,4622,6327,6385,6387,6400,6414,7506,8935,9889,9890,10514,10516,11028,11066,11088,12759,12760,12829,12835,12851,12852,13679,17266,18948,19537,21488]]],["Three",[8,8,[[1,4,4,0,4,[[72,2,2,0,2],[74,1,1,2,3],[86,1,1,3,4]]],[4,1,1,4,5,[[168,1,1,4,5]]],[10,1,1,5,6,[[305,1,1,5,6]]],[11,1,1,6,7,[[325,1,1,6,7]]],[37,1,1,7,8,[[921,1,1,7,8]]]],[2158,2161,2228,2623,5358,9251,9896,23036]]],["stories",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21542]]],["third",[9,9,[[1,1,1,0,1,[[68,1,1,0,1]]],[10,2,2,1,3,[[305,2,2,1,3]]],[11,1,1,3,4,[[330,1,1,3,4]]],[13,1,1,4,5,[[383,1,1,4,5]]],[16,1,1,5,6,[[426,1,1,5,6]]],[26,3,3,6,9,[[850,1,1,6,7],[857,1,1,7,8],[859,1,1,8,9]]]],[2041,9277,9282,10025,11530,12705,21738,21962,22016]]],["three",[378,333,[[0,26,24,0,24,[[4,2,2,0,2],[5,2,2,2,4],[6,1,1,4,5],[8,2,2,5,7],[10,2,2,7,9],[13,1,1,9,10],[17,2,2,10,12],[28,2,2,12,14],[29,1,1,14,15],[39,8,6,15,21],[41,1,1,21,22],[44,1,1,22,23],[45,1,1,23,24]]],[1,28,22,24,46,[[51,1,1,24,25],[52,1,1,25,26],[54,1,1,26,27],[55,1,1,27,28],[56,1,1,28,29],[57,1,1,29,30],[59,2,2,30,32],[64,1,1,32,33],[70,1,1,33,34],[74,3,2,34,36],[76,5,3,36,39],[81,1,1,39,40],[86,3,2,40,42],[87,6,4,42,46]]],[2,5,5,46,51,[[101,1,1,46,47],[103,1,1,47,48],[108,1,1,48,49],[114,1,1,49,50],[116,1,1,50,51]]],[3,33,30,51,81,[[117,3,3,51,54],[118,3,3,54,57],[119,1,1,57,58],[120,1,1,58,59],[126,2,1,59,60],[128,2,1,60,61],[131,1,1,61,62],[138,3,3,62,65],[140,1,1,65,66],[142,4,4,66,70],[144,3,3,70,73],[145,3,3,73,76],[147,2,2,76,78],[149,2,2,78,80],[151,2,1,80,81]]],[4,8,7,81,88,[[156,1,1,81,82],[166,1,1,82,83],[169,1,1,83,84],[171,5,4,84,88]]],[5,11,11,88,99,[[187,1,1,88,89],[188,2,2,89,91],[189,1,1,91,92],[193,2,2,92,94],[195,1,1,94,95],[201,1,1,95,96],[203,1,1,96,97],[204,1,1,97,98],[207,1,1,98,99]]],[6,19,18,99,117,[[211,1,1,99,100],[217,7,6,100,106],[218,1,1,106,107],[219,2,2,107,109],[220,1,1,109,110],[221,1,1,110,111],[224,1,1,111,112],[225,2,2,112,114],[226,2,2,114,116],[229,1,1,116,117]]],[8,24,20,117,137,[[236,1,1,117,118],[237,2,2,118,120],[244,1,1,120,121],[245,3,1,121,122],[246,2,2,122,124],[248,2,2,124,126],[252,3,2,126,128],[255,2,2,128,130],[259,1,1,130,131],[260,1,1,131,132],[261,1,1,132,133],[265,3,2,133,135],[266,2,2,135,137]]],[9,23,20,137,157,[[268,2,2,137,139],[271,1,1,139,140],[272,1,1,140,141],[279,1,1,141,142],[280,1,1,142,143],[284,1,1,143,144],[286,1,1,144,145],[287,2,2,145,147],[289,10,8,147,155],[290,3,2,155,157]]],[10,23,17,157,174,[[292,2,2,157,159],[294,1,1,159,160],[295,2,1,160,161],[296,1,1,161,162],[297,9,5,162,167],[299,1,1,167,168],[300,3,2,168,170],[301,1,1,170,171],[302,1,1,171,172],[307,1,1,172,173],[312,1,1,173,174]]],[11,15,14,174,188,[[314,1,1,174,175],[315,2,2,175,177],[321,1,1,177,178],[324,1,1,178,179],[325,1,1,179,180],[329,1,1,180,181],[330,2,2,181,183],[335,2,1,183,184],[336,2,2,184,186],[337,2,2,186,188]]],[12,35,30,188,218,[[339,3,3,188,191],[340,2,2,191,193],[344,1,1,193,194],[347,1,1,194,195],[348,12,9,195,204],[349,3,3,204,207],[350,1,1,207,208],[358,4,2,208,210],[360,3,3,210,213],[361,1,1,213,214],[362,2,2,214,216],[366,2,2,216,218]]],[13,32,26,218,244,[[368,3,3,218,221],[370,5,2,221,223],[372,1,1,223,224],[373,1,1,224,225],[374,1,1,225,226],[375,3,2,226,228],[376,1,1,228,229],[377,2,1,229,230],[379,1,1,230,231],[380,2,2,231,233],[383,1,1,233,234],[386,1,1,234,235],[391,2,2,235,237],[392,1,1,237,238],[395,1,1,238,239],[397,1,1,239,240],[401,2,2,240,242],[402,3,2,242,244]]],[14,20,19,244,263,[[404,15,14,244,258],[410,3,3,258,261],[412,2,2,261,263]]],[15,14,14,263,277,[[414,1,1,263,264],[419,13,13,264,277]]],[16,3,3,277,280,[[429,1,1,277,278],[433,1,1,278,279],[434,1,1,279,280]]],[17,9,9,280,289,[[436,4,4,280,284],[437,1,1,284,285],[467,3,3,285,288],[477,1,1,288,289]]],[19,3,3,289,292,[[657,3,3,289,292]]],[22,3,3,292,295,[[694,1,1,292,293],[695,1,1,293,294],[698,1,1,294,295]]],[23,6,5,295,300,[[769,1,1,295,296],[780,1,1,296,297],[796,4,3,297,300]]],[25,18,14,300,314,[[805,2,2,300,302],[815,3,3,302,305],[841,7,3,305,308],[842,2,2,308,310],[849,4,4,310,314]]],[26,6,6,314,320,[[850,1,1,314,315],[857,1,1,315,316],[859,2,2,316,318],[860,1,1,318,319],[861,1,1,319,320]]],[29,11,11,320,331,[[879,5,5,320,325],[880,3,3,325,328],[882,3,3,328,331]]],[31,3,2,331,333,[[889,2,1,331,332],[891,1,1,332,333]]]],[127,128,147,152,172,224,233,279,281,350,426,430,797,829,866,1182,1184,1185,1188,1190,1191,1269,1380,1401,1556,1597,1635,1673,1692,1737,1799,1800,1942,2088,2227,2228,2273,2286,2287,2466,2622,2623,2634,2647,2648,2659,3048,3121,3304,3490,3576,3627,3647,3650,3671,3688,3690,3742,3787,4021,4063,4162,4403,4407,4408,4456,4496,4514,4536,4551,4589,4597,4605,4611,4617,4622,4700,4707,4768,4799,4859,5045,5318,5370,5408,5413,5415,5421,5862,5885,5891,5895,5979,5980,6053,6216,6286,6297,6413,6529,6700,6701,6702,6710,6714,6716,6723,6776,6797,6813,6855,6923,6933,6940,6964,6976,7028,7236,7253,7261,7411,7421,7453,7456,7487,7502,7631,7632,7750,7771,7841,7863,7907,7990,7991,8015,8017,8067,8080,8137,8168,8355,8383,8492,8558,8581,8596,8662,8666,8669,8670,8671,8672,8675,8676,8704,8705,8781,8809,8876,8894,8932,8938,8939,8946,8959,8961,9076,9096,9101,9111,9156,9338,9481,9568,9586,9589,9788,9856,9872,9988,10034,10038,10196,10203,10210,10239,10240,10309,10322,10328,10365,10384,10541,10665,10684,10685,10688,10691,10692,10693,10694,10697,10698,10747,10749,10759,10774,10944,10946,10991,10992,11006,11033,11051,11076,11168,11191,11213,11228,11229,11250,11251,11295,11334,11359,11380,11385,11400,11431,11455,11483,11484,11537,11612,11709,11717,11745,11824,11870,11973,11974,11995,12002,12031,12038,12044,12046,12048,12052,12055,12059,12061,12062,12063,12085,12091,12092,12206,12216,12233,12260,12261,12318,12429,12437,12442,12443,12449,12452,12455,12456,12458,12459,12480,12486,12487,12778,12826,12849,12871,12872,12873,12886,12902,13629,13631,13633,13935,17269,17272,17280,17983,17989,18032,19537,19865,20300,20304,20306,20534,20538,20745,20747,20749,21487,21498,21525,21532,21548,21733,21734,21735,21736,21742,21975,22017,22018,22038,22093,22367,22370,22373,22375,22377,22380,22383,22385,22414,22417,22418,22548,22561]]]]},{"k":"H7970","v":[["*",[172,162,[[0,18,17,0,17,[[4,3,3,0,3],[5,1,1,3,4],[10,7,7,4,11],[17,2,1,11,12],[24,1,1,12,13],[31,1,1,13,14],[40,1,1,14,15],[45,1,1,15,16],[46,1,1,16,17]]],[1,9,9,17,26,[[55,3,3,17,20],[61,2,2,20,22],[70,1,1,22,23],[75,1,1,23,24],[85,1,1,24,25],[87,1,1,25,26]]],[2,2,2,26,28,[[101,1,1,26,27],[116,1,1,27,28]]],[3,37,37,28,65,[[117,2,2,28,30],[118,2,2,30,32],[120,8,8,32,40],[123,13,13,40,53],[136,1,1,53,54],[142,3,3,54,57],[147,8,8,57,65]]],[4,2,2,65,67,[[154,1,1,65,66],[186,1,1,66,67]]],[5,3,3,67,70,[[193,1,1,67,68],[194,1,1,68,69],[198,1,1,69,70]]],[6,15,9,70,79,[[220,3,1,70,71],[222,4,2,71,73],[224,6,4,73,77],[230,2,2,77,79]]],[8,4,4,79,83,[[239,1,1,79,80],[244,1,1,80,81],[246,1,1,81,82],[248,1,1,82,83]]],[9,7,7,83,90,[[271,2,2,83,85],[272,1,1,85,86],[289,4,4,86,90]]],[10,14,14,90,104,[[292,1,1,90,91],[294,1,1,91,92],[295,1,1,92,93],[296,1,1,93,94],[297,3,3,94,97],[306,2,2,97,99],[310,3,3,99,102],[312,2,2,102,104]]],[11,8,8,104,112,[[320,1,1,104,105],[325,1,1,105,106],[327,3,3,106,109],[330,1,1,109,110],[334,1,1,110,111],[337,1,1,111,112]]],[12,16,13,112,125,[[340,1,1,112,113],[344,2,2,113,115],[348,3,3,115,118],[349,3,2,118,120],[352,1,1,120,121],[356,1,1,121,122],[360,2,1,122,123],[364,2,1,123,124],[366,1,1,124,125]]],[13,11,11,125,136,[[369,1,1,125,126],[370,1,1,126,127],[381,1,1,127,128],[382,2,2,128,130],[386,1,1,130,131],[387,2,2,131,133],[390,1,1,133,134],[400,1,1,134,135],[401,1,1,135,136]]],[14,7,7,136,143,[[403,2,2,136,138],[404,5,5,138,143]]],[15,8,8,143,151,[[417,1,1,143,144],[419,6,6,144,150],[425,1,1,150,151]]],[16,1,1,151,152,[[429,1,1,151,152]]],[23,3,3,152,155,[[782,1,1,152,153],[796,2,2,153,155]]],[25,4,4,155,159,[[802,1,1,155,156],[841,1,1,156,157],[842,1,1,157,158],[847,1,1,158,159]]],[26,1,1,159,160,[[861,1,1,159,160]]],[37,2,2,160,162,[[921,2,2,160,162]]]],[108,110,121,152,278,280,282,283,284,286,288,454,675,943,1241,1401,1429,1671,1673,1675,1856,1857,2109,2243,2581,2657,3048,3574,3639,3641,3679,3681,3746,3766,3773,3778,3782,3783,3786,3790,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935,4340,4496,4526,4540,4699,4700,4702,4703,4704,4707,4708,4709,4952,5847,5981,6005,6154,6815,6878,6883,6920,6921,6922,6928,7085,7093,7307,7413,7453,7490,8136,8137,8158,8666,8676,8677,8692,8781,8866,8891,8898,8936,8940,8957,9306,9312,9409,9423,9424,9511,9522,9744,9881,9933,9938,9942,10038,10146,10249,10365,10539,10542,10688,10698,10715,10724,10754,10798,10914,10986,11115,11191,11244,11248,11509,11510,11521,11618,11629,11644,11692,11934,11973,12025,12026,12062,12069,12092,12093,12094,12396,12458,12465,12487,12488,12489,12490,12677,12773,19905,20305,20307,20465,21494,21532,21677,22093,23040,23041]]],["Thirty",[4,4,[[0,1,1,0,1,[[31,1,1,0,1]]],[11,1,1,1,2,[[320,1,1,1,2]]],[13,1,1,2,3,[[387,1,1,2,3]]],[14,1,1,3,4,[[403,1,1,3,4]]]],[943,9744,11644,12026]]],["thirtieth",[9,9,[[11,3,3,0,3,[[327,2,2,0,2],[337,1,1,2,3]]],[13,2,2,3,5,[[381,1,1,3,4],[382,1,1,4,5]]],[15,2,2,5,7,[[417,1,1,5,6],[425,1,1,6,7]]],[23,1,1,7,8,[[796,1,1,7,8]]],[25,1,1,8,9,[[802,1,1,8,9]]]],[9938,9942,10249,11509,11510,12396,12677,20307,20465]]],["thirty",[159,149,[[0,17,16,0,16,[[4,3,3,0,3],[5,1,1,3,4],[10,7,7,4,11],[17,2,1,11,12],[24,1,1,12,13],[40,1,1,13,14],[45,1,1,14,15],[46,1,1,15,16]]],[1,9,9,16,25,[[55,3,3,16,19],[61,2,2,19,21],[70,1,1,21,22],[75,1,1,22,23],[85,1,1,23,24],[87,1,1,24,25]]],[2,2,2,25,27,[[101,1,1,25,26],[116,1,1,26,27]]],[3,37,37,27,64,[[117,2,2,27,29],[118,2,2,29,31],[120,8,8,31,39],[123,13,13,39,52],[136,1,1,52,53],[142,3,3,53,56],[147,8,8,56,64]]],[4,2,2,64,66,[[154,1,1,64,65],[186,1,1,65,66]]],[5,3,3,66,69,[[193,1,1,66,67],[194,1,1,67,68],[198,1,1,68,69]]],[6,15,9,69,78,[[220,3,1,69,70],[222,4,2,70,72],[224,6,4,72,76],[230,2,2,76,78]]],[8,4,4,78,82,[[239,1,1,78,79],[244,1,1,79,80],[246,1,1,80,81],[248,1,1,81,82]]],[9,7,7,82,89,[[271,2,2,82,84],[272,1,1,84,85],[289,4,4,85,89]]],[10,14,14,89,103,[[292,1,1,89,90],[294,1,1,90,91],[295,1,1,91,92],[296,1,1,92,93],[297,3,3,93,96],[306,2,2,96,98],[310,3,3,98,101],[312,2,2,101,103]]],[11,4,4,103,107,[[325,1,1,103,104],[327,1,1,104,105],[330,1,1,105,106],[334,1,1,106,107]]],[12,16,13,107,120,[[340,1,1,107,108],[344,2,2,108,110],[348,3,3,110,113],[349,3,2,113,115],[352,1,1,115,116],[356,1,1,116,117],[360,2,1,117,118],[364,2,1,118,119],[366,1,1,119,120]]],[13,8,8,120,128,[[369,1,1,120,121],[370,1,1,121,122],[382,1,1,122,123],[386,1,1,123,124],[387,1,1,124,125],[390,1,1,125,126],[400,1,1,126,127],[401,1,1,127,128]]],[14,6,6,128,134,[[403,1,1,128,129],[404,5,5,129,134]]],[15,6,6,134,140,[[419,6,6,134,140]]],[16,1,1,140,141,[[429,1,1,140,141]]],[23,2,2,141,143,[[782,1,1,141,142],[796,1,1,142,143]]],[25,3,3,143,146,[[841,1,1,143,144],[842,1,1,144,145],[847,1,1,145,146]]],[26,1,1,146,147,[[861,1,1,146,147]]],[37,2,2,147,149,[[921,2,2,147,149]]]],[108,110,121,152,278,280,282,283,284,286,288,454,675,1241,1401,1429,1671,1673,1675,1856,1857,2109,2243,2581,2657,3048,3574,3639,3641,3679,3681,3746,3766,3773,3778,3782,3783,3786,3790,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935,4340,4496,4526,4540,4699,4700,4702,4703,4704,4707,4708,4709,4952,5847,5981,6005,6154,6815,6878,6883,6920,6921,6922,6928,7085,7093,7307,7413,7453,7490,8136,8137,8158,8666,8676,8677,8692,8781,8866,8891,8898,8936,8940,8957,9306,9312,9409,9423,9424,9511,9522,9881,9933,10038,10146,10365,10539,10542,10688,10698,10715,10724,10754,10798,10914,10986,11115,11191,11244,11248,11521,11618,11629,11692,11934,11973,12025,12062,12069,12092,12093,12094,12458,12465,12487,12488,12489,12490,12773,19905,20305,21494,21532,21677,22093,23040,23041]]]]},{"k":"H7971","v":[["*",[847,790,[[0,66,64,0,64,[[2,2,2,0,2],[7,5,5,2,7],[11,1,1,7,8],[17,1,1,8,9],[18,3,3,9,12],[19,1,1,12,13],[20,1,1,13,14],[21,2,2,14,16],[23,5,5,16,21],[24,1,1,21,22],[25,3,3,22,25],[26,2,2,25,27],[27,2,2,27,29],[29,1,1,29,30],[30,3,3,30,33],[31,5,4,33,37],[36,4,4,37,41],[37,5,4,41,45],[40,2,2,45,47],[41,2,2,47,49],[42,4,4,49,53],[43,1,1,53,54],[44,6,6,54,60],[45,2,2,60,62],[47,1,1,62,63],[48,1,1,63,64]]],[1,74,65,64,129,[[51,1,1,64,65],[52,7,6,65,71],[53,8,5,71,76],[54,4,3,76,79],[55,2,2,79,81],[56,4,3,81,84],[57,9,8,84,92],[58,12,11,92,103],[59,6,6,103,109],[60,3,2,109,111],[61,1,1,111,112],[62,2,2,112,114],[63,1,1,114,115],[64,1,1,115,116],[67,1,1,116,117],[70,2,2,117,119],[71,3,3,119,122],[72,3,3,122,125],[73,2,2,125,127],[82,2,2,127,129]]],[2,10,10,129,139,[[103,2,2,129,131],[105,4,4,131,135],[107,1,1,135,136],[109,1,1,136,137],[115,2,2,137,139]]],[3,29,26,139,165,[[121,4,3,139,142],[129,6,5,142,147],[130,1,1,147,148],[132,3,3,148,151],[136,2,2,151,153],[137,3,3,153,156],[138,6,5,156,161],[140,1,1,161,162],[147,2,2,162,164],[148,1,1,164,165]]],[4,22,20,165,185,[[153,1,1,165,166],[154,1,1,166,167],[159,1,1,167,168],[161,1,1,168,169],[167,4,3,169,172],[171,1,1,172,173],[173,1,1,173,174],[174,4,3,174,177],[176,3,3,177,180],[177,1,1,180,181],[180,2,2,181,183],[184,1,1,183,184],[186,1,1,184,185]]],[5,23,23,185,208,[[187,1,1,185,186],[188,3,3,186,189],[192,2,2,189,191],[193,2,2,191,193],[194,2,2,193,195],[196,2,2,195,197],[197,1,1,197,198],[200,2,2,198,200],[204,1,1,200,201],[208,3,3,201,204],[210,4,4,204,208]]],[6,38,36,208,244,[[211,2,2,208,210],[212,1,1,210,211],[213,3,3,211,214],[214,1,1,214,215],[215,2,2,215,217],[216,5,4,217,221],[217,2,2,221,223],[219,2,2,223,225],[221,7,6,225,231],[222,1,1,231,232],[223,1,1,232,233],[225,2,2,233,235],[226,1,1,235,236],[228,1,1,236,237],[229,2,2,237,239],[230,3,3,239,242],[231,2,2,242,244]]],[8,67,62,244,306,[[239,1,1,244,245],[240,4,3,245,248],[241,6,5,248,253],[244,3,3,253,256],[245,1,1,256,257],[246,2,2,257,259],[247,2,2,259,261],[248,1,1,261,262],[249,1,1,262,263],[250,3,3,263,266],[251,7,6,266,272],[252,1,1,272,273],[253,1,1,273,274],[254,8,6,274,280],[255,8,8,280,288],[256,1,1,288,289],[257,2,2,289,291],[259,3,3,291,294],[260,6,6,294,300],[261,4,4,300,304],[265,1,1,304,305],[266,1,1,305,306]]],[9,62,56,306,362,[[267,1,1,306,307],[268,1,1,307,308],[269,8,8,308,316],[271,1,1,316,317],[272,1,1,317,318],[274,1,1,318,319],[275,1,1,319,320],[276,8,7,320,327],[277,12,10,327,337],[278,3,3,337,340],[279,4,4,340,344],[280,6,3,344,347],[281,4,4,347,351],[283,1,1,351,352],[284,3,3,352,355],[285,3,3,355,358],[288,2,2,358,360],[290,2,2,360,362]]],[10,48,43,362,405,[[291,2,2,362,364],[292,4,4,364,368],[295,6,5,368,373],[297,1,1,373,374],[298,2,2,374,376],[299,3,3,376,379],[301,3,2,379,381],[302,3,3,381,384],[303,2,1,384,385],[304,1,1,385,386],[305,3,3,386,389],[308,3,3,389,392],[309,1,1,392,393],[310,10,9,393,402],[311,4,3,402,405]]],[11,71,66,405,471,[[313,7,6,405,411],[314,6,5,411,416],[315,1,1,416,417],[316,1,1,417,418],[317,7,7,418,425],[318,8,7,425,432],[319,2,2,432,434],[320,2,2,434,436],[321,2,2,436,438],[322,4,4,438,442],[323,1,1,442,443],[324,1,1,443,444],[326,4,3,444,447],[327,1,1,447,448],[328,4,4,448,452],[329,4,4,452,456],[330,3,3,456,459],[331,5,5,459,464],[332,1,1,464,465],[334,3,3,465,468],[335,2,2,468,470],[336,2,1,470,471]]],[12,17,17,471,488,[[345,1,1,471,472],[347,1,1,472,473],[349,1,1,473,474],[350,3,3,474,477],[351,1,1,477,478],[355,1,1,478,479],[356,7,7,479,486],[358,2,2,486,488]]],[13,37,34,488,522,[[368,7,6,488,494],[372,1,1,494,495],[373,2,2,495,497],[374,1,1,497,498],[376,2,2,498,500],[382,3,3,500,503],[383,1,1,503,504],[390,2,2,504,506],[391,5,4,506,510],[394,1,1,510,511],[396,1,1,511,512],[398,3,3,512,515],[400,4,4,515,519],[401,1,1,519,520],[402,3,2,520,522]]],[14,1,1,522,523,[[410,1,1,522,523]]],[15,14,14,523,537,[[414,3,3,523,526],[416,1,1,526,527],[418,7,7,527,534],[420,2,2,534,536],[425,1,1,536,537]]],[16,15,15,537,552,[[426,1,1,537,538],[427,1,1,538,539],[428,2,2,539,541],[429,1,1,541,542],[430,1,1,542,543],[431,1,1,543,544],[433,2,2,544,546],[434,6,6,546,552]]],[17,20,20,552,572,[[436,4,4,552,556],[437,1,1,556,557],[440,1,1,557,558],[443,1,1,558,559],[447,1,1,559,560],[449,1,1,560,561],[453,1,1,561,562],[455,1,1,562,563],[456,1,1,563,564],[457,1,1,564,565],[463,1,1,565,566],[465,3,3,566,569],[473,1,1,569,570],[474,2,2,570,572]]],[18,32,31,572,603,[[495,2,2,572,574],[497,1,1,574,575],[520,1,1,575,576],[521,1,1,576,577],[527,1,1,577,578],[532,1,1,578,579],[534,2,1,579,580],[551,1,1,580,581],[555,3,3,581,584],[557,1,1,584,585],[558,1,1,585,586],[581,2,2,586,588],[582,4,4,588,592],[583,1,1,592,593],[584,1,1,593,594],[587,1,1,594,595],[588,1,1,595,596],[602,1,1,596,597],[612,1,1,597,598],[615,1,1,598,599],[621,2,2,599,601],[624,2,2,601,603]]],[19,12,12,603,615,[[633,2,2,603,605],[636,1,1,605,606],[637,1,1,606,607],[643,1,1,607,608],[644,1,1,608,609],[649,1,1,609,610],[652,1,1,610,611],[653,1,1,611,612],[656,1,1,612,613],[658,2,2,613,615]]],[20,1,1,615,616,[[669,1,1,615,616]]],[21,1,1,616,617,[[675,1,1,616,617]]],[22,33,31,617,648,[[684,2,1,617,618],[687,1,1,618,619],[688,2,2,619,621],[694,2,2,621,623],[696,1,1,623,624],[697,1,1,624,625],[698,1,1,625,626],[705,2,2,626,628],[710,1,1,628,629],[714,2,2,629,631],[715,5,5,631,636],[717,1,1,636,637],[720,1,1,637,638],[721,1,1,638,639],[723,1,1,639,640],[726,1,1,640,641],[728,2,1,641,642],[733,1,1,642,643],[735,1,1,643,644],[736,2,2,644,646],[739,1,1,646,647],[744,1,1,647,648]]],[23,89,79,648,727,[[745,2,2,648,650],[746,1,1,650,651],[747,2,2,651,653],[751,2,1,653,654],[752,1,1,654,655],[753,2,2,655,657],[758,3,3,657,660],[759,1,1,660,661],[760,2,1,661,662],[761,1,1,662,663],[763,1,1,663,664],[765,1,1,664,665],[767,3,3,665,668],[768,2,2,668,670],[769,7,6,670,676],[770,5,4,676,680],[771,2,2,680,682],[772,3,3,682,685],[773,11,9,685,694],[778,7,5,694,699],[779,2,1,699,700],[780,2,2,700,702],[781,3,3,702,705],[782,3,3,705,708],[783,2,2,708,710],[784,3,3,710,713],[786,5,5,713,718],[787,3,3,718,721],[788,2,1,721,722],[792,1,1,722,723],[793,2,2,723,725],[794,1,1,725,726],[795,1,1,726,727]]],[24,1,1,727,728,[[797,1,1,727,728]]],[25,28,26,728,754,[[803,3,3,728,731],[804,2,2,731,733],[806,3,2,733,735],[808,1,1,735,736],[809,2,2,736,738],[811,1,1,738,739],[814,2,2,739,741],[815,3,3,741,744],[818,3,3,744,747],[824,3,2,747,749],[829,1,1,749,750],[832,2,2,750,752],[840,1,1,752,753],[845,1,1,753,754]]],[26,2,2,754,756,[[859,1,1,754,755],[860,1,1,755,756]]],[27,2,2,756,758,[[866,1,1,756,757],[869,1,1,757,758]]],[28,3,3,758,761,[[877,2,2,758,760],[878,1,1,760,761]]],[29,9,9,761,770,[[879,4,4,761,765],[880,2,2,765,767],[882,1,1,767,768],[885,1,1,768,769],[886,1,1,769,770]]],[30,3,3,770,773,[[888,3,3,770,773]]],[32,1,1,773,774,[[898,1,1,773,774]]],[36,1,1,774,775,[[909,1,1,774,775]]],[37,10,10,775,785,[[911,1,1,775,776],[912,3,3,776,779],[914,1,1,779,780],[916,1,1,780,781],[917,2,2,781,783],[918,1,1,783,784],[919,1,1,784,785]]],[38,5,5,785,790,[[926,3,3,785,788],[927,1,1,788,789],[928,1,1,789,790]]]],[77,78,190,191,192,193,195,318,440,467,470,486,497,527,557,559,598,631,645,647,650,664,719,721,723,769,772,778,779,855,877,900,915,931,933,946,954,1096,1097,1105,1115,1136,1139,1142,1144,1203,1209,1256,1268,1294,1295,1298,1304,1327,1363,1365,1366,1381,1382,1385,1391,1414,1465,1494,1559,1589,1591,1592,1593,1594,1599,1605,1614,1622,1624,1629,1633,1634,1654,1656,1666,1687,1699,1701,1711,1712,1718,1730,1731,1738,1739,1742,1743,1744,1749,1755,1756,1757,1759,1761,1769,1770,1777,1780,1781,1784,1787,1797,1804,1807,1816,1849,1882,1884,1894,1927,2026,2103,2104,2118,2121,2124,2164,2171,2172,2182,2188,2475,2485,3118,3164,3211,3222,3223,3227,3275,3341,3546,3549,3794,3795,3796,4077,4078,4091,4092,4102,4144,4206,4222,4223,4325,4327,4346,4361,4372,4380,4385,4390,4412,4415,4458,4668,4670,4726,4914,4964,5131,5180,5331,5332,5337,5418,5461,5477,5489,5499,5526,5528,5529,5558,5631,5659,5782,5850,5867,5870,5872,5890,5966,5974,5978,5998,6005,6011,6067,6070,6108,6194,6198,6297,6432,6433,6439,6481,6485,6488,6504,6517,6534,6551,6583,6586,6589,6605,6638,6649,6662,6668,6675,6689,6702,6718,6777,6785,6841,6843,6846,6848,6857,6867,6878,6892,6934,6944,6967,6995,7049,7053,7060,7066,7102,7112,7115,7301,7327,7329,7330,7333,7334,7337,7339,7352,7407,7410,7417,7443,7448,7452,7468,7471,7487,7535,7561,7578,7580,7596,7606,7607,7614,7615,7617,7667,7681,7717,7720,7721,7723,7726,7727,7735,7742,7743,7750,7751,7752,7759,7761,7774,7798,7804,7845,7849,7858,7866,7875,7886,7893,7900,7901,7909,7914,7916,7928,8004,8018,8036,8054,8093,8095,8096,8102,8103,8104,8105,8107,8143,8163,8219,8232,8242,8243,8244,8245,8246,8247,8256,8260,8262,8263,8264,8265,8271,8273,8277,8281,8286,8287,8311,8313,8324,8333,8334,8344,8358,8385,8388,8394,8399,8401,8425,8465,8480,8490,8507,8522,8525,8542,8617,8619,8705,8708,8761,8770,8795,8799,8806,8812,8879,8880,8886,8887,8892,8947,9029,9051,9058,9065,9078,9129,9130,9154,9169,9171,9188,9224,9267,9268,9269,9351,9360,9361,9389,9410,9413,9414,9415,9417,9418,9425,9442,9450,9459,9462,9465,9535,9539,9542,9544,9546,9549,9553,9555,9557,9567,9568,9583,9625,9652,9653,9654,9655,9657,9669,9671,9681,9683,9684,9687,9688,9697,9706,9720,9721,9736,9739,9773,9775,9794,9798,9800,9814,9833,9868,9904,9905,9915,9962,9970,9971,9973,9974,9987,9996,10008,10009,10038,10041,10051,10063,10065,10070,10077,10081,10110,10148,10160,10163,10166,10181,10204,10583,10668,10739,10762,10769,10770,10775,10900,10909,10910,10911,10912,10913,10915,10923,10946,10949,11214,11218,11219,11222,11224,11226,11316,11334,11337,11364,11398,11413,11511,11512,11513,11530,11696,11700,11719,11721,11722,11731,11780,11828,11884,11896,11906,11941,11956,11959,11962,11987,12003,12008,12217,12312,12313,12316,12382,12403,12404,12405,12406,12409,12413,12420,12503,12505,12692,12724,12745,12753,12760,12766,12789,12795,12824,12827,12836,12844,12849,12850,12854,12864,12873,12874,12880,12881,12896,12961,13033,13143,13201,13284,13349,13366,13398,13513,13568,13569,13581,13828,13837,13839,14132,14134,14184,14569,14573,14687,14752,14771,15055,15138,15158,15162,15209,15229,15581,15601,15623,15626,15632,15634,15666,15719,15788,15802,16113,16184,16238,16311,16312,16366,16369,16554,16559,16641,16682,16868,16884,17036,17126,17147,17239,17303,17304,17514,17602,17777,17837,17856,17866,17970,17971,17999,18024,18030,18159,18161,18279,18332,18342,18354,18356,18361,18369,18373,18413,18499,18519,18574,18630,18663,18751,18774,18792,18795,18844,18941,18953,18955,18975,19003,19010,19144,19170,19191,19192,19296,19307,19308,19316,19352,19365,19421,19441,19505,19516,19522,19529,19534,19538,19543,19549,19550,19551,19561,19577,19584,19587,19594,19599,19611,19627,19633,19634,19636,19638,19644,19652,19654,19655,19660,19663,19666,19810,19811,19812,19815,19817,19838,19856,19863,19877,19881,19891,19901,19906,19909,19936,19937,19942,19946,19955,19980,19981,19984,19995,19996,19998,19999,20007,20014,20092,20141,20164,20199,20214,20323,20495,20496,20501,20507,20508,20562,20563,20580,20607,20621,20640,20714,20728,20744,20750,20752,20831,20832,20840,21023,21047,21180,21234,21235,21454,21619,22026,22078,22165,22208,22330,22336,22356,22368,22371,22374,22376,22381,22384,22420,22474,22492,22511,22517,22523,22652,22852,22888,22907,22908,22910,22931,22962,22964,22974,22986,23010,23105,23107,23119,23121,23143]]],["+",[117,114,[[0,17,17,0,17,[[7,4,4,0,4],[11,1,1,4,5],[18,2,2,5,7],[21,1,1,7,8],[23,1,1,8,9],[27,2,2,9,11],[36,1,1,11,12],[37,1,1,12,13],[42,2,2,13,15],[44,1,1,15,16],[47,1,1,16,17]]],[1,10,10,17,27,[[51,1,1,17,18],[52,1,1,18,19],[56,1,1,19,20],[57,1,1,20,21],[58,2,2,21,23],[71,1,1,23,24],[72,2,2,24,26],[73,1,1,26,27]]],[2,5,5,27,32,[[103,1,1,27,28],[105,3,3,28,31],[115,1,1,31,32]]],[3,4,3,32,35,[[121,1,1,32,33],[137,1,1,33,34],[138,2,1,34,35]]],[4,3,3,35,38,[[159,1,1,35,36],[167,1,1,36,37],[174,1,1,37,38]]],[5,2,2,38,40,[[210,2,2,38,40]]],[6,5,5,40,45,[[213,2,2,40,42],[216,1,1,42,43],[221,2,2,43,45]]],[8,14,14,45,59,[[240,2,2,45,47],[241,2,2,47,49],[245,1,1,49,50],[247,2,2,50,52],[249,1,1,52,53],[252,1,1,53,54],[254,2,2,54,56],[255,1,1,56,57],[257,1,1,57,58],[261,1,1,58,59]]],[9,11,10,59,69,[[269,1,1,59,60],[274,1,1,60,61],[276,2,2,61,63],[277,3,2,63,65],[278,1,1,65,66],[281,1,1,66,67],[284,1,1,67,68],[285,1,1,68,69]]],[10,10,9,69,78,[[292,1,1,69,70],[295,2,2,70,72],[298,1,1,72,73],[301,2,1,73,74],[302,1,1,74,75],[303,1,1,75,76],[305,1,1,76,77],[310,1,1,77,78]]],[11,7,7,78,85,[[317,1,1,78,79],[322,1,1,79,80],[329,2,2,80,82],[330,1,1,82,83],[331,1,1,83,84],[334,1,1,84,85]]],[12,4,4,85,89,[[345,1,1,85,86],[350,1,1,86,87],[355,1,1,87,88],[356,1,1,88,89]]],[13,4,4,89,93,[[373,1,1,89,90],[376,1,1,90,91],[382,1,1,91,92],[400,1,1,92,93]]],[17,2,2,93,95,[[436,1,1,93,94],[457,1,1,94,95]]],[22,2,2,95,97,[[714,1,1,95,96],[715,1,1,96,97]]],[23,11,11,97,108,[[745,1,1,97,98],[747,1,1,98,99],[753,1,1,99,100],[767,1,1,100,101],[768,1,1,101,102],[780,2,2,102,104],[781,1,1,104,105],[782,1,1,105,106],[784,1,1,106,107],[793,1,1,107,108]]],[25,4,4,108,112,[[806,1,1,108,109],[809,1,1,109,110],[811,1,1,110,111],[814,1,1,111,112]]],[37,1,1,112,113,[[918,1,1,112,113]]],[38,1,1,113,114,[[926,1,1,113,114]]]],[190,191,193,195,318,467,486,557,650,778,779,1115,1139,1294,1304,1382,1465,1559,1599,1687,1731,1756,1757,2118,2171,2172,2182,3164,3211,3223,3227,3546,3796,4346,4412,5131,5337,5477,6481,6488,6586,6589,6675,6857,6867,7329,7330,7334,7339,7443,7468,7471,7535,7667,7721,7723,7751,7804,7916,8102,8219,8243,8247,8260,8265,8287,8394,8507,8542,8799,8879,8887,9051,9130,9169,9188,9269,9414,9653,9800,10008,10009,10041,10063,10148,10583,10769,10900,10915,11334,11413,11513,11941,12881,13398,18332,18354,18955,19003,19191,19505,19534,19856,19863,19877,19901,19955,20164,20562,20621,20640,20728,22986,23105]]],["Cast",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17514]]],["Lay",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[559]]],["Put",[2,2,[[9,1,1,0,1,[[279,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]]],[8334,22356]]],["Send",[14,14,[[0,2,2,0,2,[[41,1,1,0,1],[42,1,1,1,2]]],[1,1,1,2,3,[[58,1,1,2,3]]],[3,1,1,3,4,[[129,1,1,3,4]]],[8,2,2,4,6,[[251,2,2,4,6]]],[11,2,2,6,8,[[314,1,1,6,7],[316,1,1,7,8]]],[13,2,2,8,10,[[368,2,2,8,10]]],[18,2,2,10,12,[[497,1,1,10,11],[621,1,1,11,12]]],[22,1,1,12,13,[[694,1,1,12,13]]],[23,1,1,13,14,[[773,1,1,13,14]]]],[1268,1298,1761,4077,7606,7614,9568,9625,11218,11219,14184,16312,17970,19666]]],["away",[40,38,[[0,11,11,0,11,[[20,1,1,0,1],[23,2,2,1,3],[24,1,1,3,4],[25,3,3,4,7],[29,1,1,7,8],[30,2,2,8,10],[43,1,1,10,11]]],[2,1,1,11,12,[[105,1,1,11,12]]],[4,4,4,12,16,[[167,1,1,12,13],[174,2,2,13,15],[176,1,1,15,16]]],[5,4,4,16,20,[[188,1,1,16,17],[194,1,1,17,18],[208,2,2,18,20]]],[8,3,3,20,23,[[244,1,1,20,21],[255,2,2,21,23]]],[9,5,5,23,28,[[269,3,3,23,26],[276,1,1,26,27],[279,1,1,27,28]]],[10,2,1,28,29,[[310,2,1,28,29]]],[11,1,1,29,30,[[318,1,1,29,30]]],[12,2,2,30,32,[[349,1,1,30,31],[356,1,1,31,32]]],[17,3,3,32,35,[[443,1,1,32,33],[449,1,1,33,34],[465,1,1,34,35]]],[22,2,1,35,36,[[728,2,1,35,36]]],[23,1,1,36,37,[[747,1,1,36,37]]],[38,1,1,37,38,[[926,1,1,37,38]]]],[527,645,647,664,719,721,723,855,900,915,1327,3222,5332,5489,5499,5529,5890,6005,6432,6433,7417,7743,7752,8103,8104,8105,8244,8333,9442,9697,10739,10911,13033,13201,13569,18663,19010,23119]]],["brought",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22517]]],["cast",[7,7,[[10,1,1,0,1,[[299,1,1,0,1]]],[17,2,2,1,3,[[453,1,1,1,2],[455,1,1,2,3]]],[18,2,2,3,5,[[551,1,1,3,4],[555,1,1,4,5]]],[23,2,2,5,7,[[759,1,1,5,6],[772,1,1,6,7]]]],[9058,13284,13349,15055,15162,19316,19634]]],["depart",[4,4,[[1,1,1,0,1,[[67,1,1,0,1]]],[5,1,1,1,2,[[210,1,1,1,2]]],[9,1,1,2,3,[[277,1,1,2,3]]],[10,1,1,3,4,[[301,1,1,3,4]]]],[2026,6504,8271,9129]]],["down",[1,1,[[23,1,1,0,1,[[782,1,1,0,1]]]],[19906]]],["forsaken",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18161]]],["forth",[39,38,[[0,3,3,0,3,[[2,2,2,0,2],[7,1,1,2,3]]],[1,3,2,3,5,[[53,2,1,3,4],[64,1,1,4,5]]],[4,1,1,5,6,[[177,1,1,5,6]]],[5,1,1,6,7,[[194,1,1,6,7]]],[6,1,1,7,8,[[225,1,1,7,8]]],[8,4,4,8,12,[[259,2,2,8,10],[261,2,2,10,12]]],[9,4,4,12,16,[[267,1,1,12,13],[272,1,1,13,14],[284,2,2,14,16]]],[10,1,1,16,17,[[303,1,1,16,17]]],[17,4,4,17,21,[[436,1,1,17,18],[437,1,1,18,19],[456,1,1,19,20],[463,1,1,20,21]]],[18,6,6,21,27,[[532,1,1,21,22],[534,1,1,22,23],[581,1,1,23,24],[602,1,1,24,25],[615,1,1,25,26],[624,1,1,26,27]]],[19,2,2,27,29,[[636,1,1,27,28],[658,1,1,28,29]]],[22,3,3,29,32,[[705,1,1,29,30],[710,1,1,30,31],[736,1,1,31,32]]],[25,4,4,32,36,[[809,1,1,32,33],[818,2,2,33,35],[832,1,1,35,36]]],[26,1,1,36,37,[[860,1,1,36,37]]],[37,1,1,37,38,[[919,1,1,37,38]]]],[77,78,192,1605,1927,5558,6011,6944,7845,7849,7914,7928,8036,8163,8480,8490,9188,12880,12896,13366,13513,14752,14771,15601,16113,16238,16366,16641,17304,18159,18279,18795,20607,20831,20832,21235,22078,23010]]],["givest",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14687]]],["go",[69,63,[[0,2,1,0,1,[[31,2,1,0,1]]],[1,40,37,1,38,[[52,1,1,1,2],[53,3,2,2,4],[54,3,2,4,6],[55,2,2,6,8],[56,2,2,8,10],[57,8,8,10,18],[58,7,7,18,25],[59,6,6,25,31],[60,3,2,31,33],[62,2,2,33,35],[63,1,1,35,36],[70,2,2,36,38]]],[4,3,3,38,41,[[167,1,1,38,39],[173,1,1,39,40],[174,1,1,40,41]]],[6,4,4,41,45,[[211,1,1,41,42],[212,1,1,42,43],[225,1,1,43,44],[229,1,1,44,45]]],[8,6,6,45,51,[[241,1,1,45,46],[244,1,1,46,47],[254,1,1,47,48],[255,2,2,48,50],[259,1,1,50,51]]],[9,1,1,51,52,[[279,1,1,51,52]]],[10,1,1,52,53,[[310,1,1,52,53]]],[11,1,1,53,54,[[317,1,1,53,54]]],[22,2,2,54,56,[[723,1,1,54,55],[736,1,1,55,56]]],[23,9,7,56,63,[[778,6,4,56,60],[784,2,2,60,62],[794,1,1,62,63]]]],[954,1599,1622,1624,1633,1634,1656,1666,1699,1701,1711,1712,1718,1730,1731,1738,1739,1742,1743,1744,1749,1755,1759,1770,1777,1780,1781,1784,1787,1797,1804,1807,1816,1882,1884,1894,2103,2104,5331,5461,5477,6534,6551,6934,7049,7337,7410,7723,7735,7759,7858,8344,9450,9671,18574,18792,19810,19811,19812,19815,19942,19946,20199]]],["in",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17602]]],["laid",[6,6,[[1,1,1,0,1,[[73,1,1,0,1]]],[16,4,4,1,5,[[433,1,1,1,2],[434,3,3,2,5]]],[30,1,1,5,6,[[888,1,1,5,6]]]],[2188,12824,12844,12849,12850,22523]]],["lay",[6,6,[[0,1,1,0,1,[[36,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]],[16,4,4,2,6,[[427,1,1,2,3],[428,1,1,3,4],[431,1,1,4,5],[434,1,1,5,6]]]],[1105,12692,12745,12753,12795,12836]]],["layeth",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17303]]],["left",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17239]]],["long",[1,1,[[25,1,1,0,1,[[845,1,1,0,1]]]],[21619]]],["loose",[3,3,[[0,1,1,0,1,[[48,1,1,0,1]]],[2,1,1,1,2,[[103,1,1,1,2]]],[17,1,1,2,3,[[465,1,1,2,3]]]],[1494,3118,13568]]],["off",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12382]]],["out",[26,26,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,2,2,1,3,[[107,1,1,1,2],[109,1,1,2,3]]],[3,2,2,3,5,[[121,2,2,3,5]]],[4,1,1,5,6,[[167,1,1,5,6]]],[8,2,2,6,8,[[260,1,1,6,7],[261,1,1,7,8]]],[9,2,2,8,10,[[288,1,1,8,9],[290,1,1,9,10]]],[10,1,1,10,11,[[310,1,1,10,11]]],[11,2,2,11,13,[[318,1,1,11,12],[321,1,1,12,13]]],[17,4,4,13,17,[[447,1,1,13,14],[465,1,1,14,15],[474,2,2,15,17]]],[18,6,6,17,23,[[495,1,1,17,18],[520,1,1,18,19],[521,1,1,19,20],[557,1,1,20,21],[621,1,1,21,22],[624,1,1,22,23]]],[22,1,1,23,24,[[694,1,1,23,24]]],[23,1,1,24,25,[[761,1,1,24,25]]],[25,1,1,25,26,[[832,1,1,25,26]]]],[1849,3275,3341,3794,3795,5332,7866,7909,8617,8708,9425,9681,9775,13143,13581,13837,13839,14132,14569,14573,15209,16311,16369,17971,19365,21234]]],["put",[5,5,[[1,2,2,0,2,[[71,2,2,0,2]]],[3,1,1,2,3,[[121,1,1,2,3]]],[6,1,1,3,4,[[215,1,1,3,4]]],[12,1,1,4,5,[[350,1,1,4,5]]]],[2121,2124,3795,6649,10770]]],["send",[109,105,[[0,8,7,0,7,[[23,2,2,0,2],[26,1,1,2,3],[36,1,1,3,4],[37,2,1,4,5],[42,1,1,5,6],[44,1,1,6,7]]],[1,6,5,7,12,[[52,1,1,7,8],[53,2,1,8,9],[72,1,1,9,10],[82,2,2,10,12]]],[2,1,1,12,13,[[115,1,1,12,13]]],[3,2,2,13,15,[[129,1,1,13,14],[147,1,1,14,15]]],[4,6,6,15,21,[[153,1,1,15,16],[171,1,1,16,17],[176,1,1,17,18],[180,2,2,18,20],[184,1,1,20,21]]],[5,1,1,21,22,[[204,1,1,21,22]]],[6,1,1,22,23,[[223,1,1,22,23]]],[8,9,9,23,32,[[241,2,2,23,25],[244,1,1,25,26],[246,1,1,26,27],[251,1,1,27,28],[255,2,2,28,30],[256,1,1,30,31],[260,1,1,31,32]]],[9,3,3,32,35,[[280,1,1,32,33],[281,1,1,33,34],[283,1,1,34,35]]],[10,3,3,35,38,[[298,1,1,35,36],[308,1,1,36,37],[310,1,1,37,38]]],[11,7,7,38,45,[[314,1,1,38,39],[317,2,2,39,41],[318,1,1,41,42],[319,1,1,42,43],[321,1,1,43,44],[327,1,1,44,45]]],[12,1,1,45,46,[[350,1,1,45,46]]],[13,6,6,46,52,[[368,2,2,46,48],[372,1,1,48,49],[373,1,1,49,50],[394,1,1,50,51],[398,1,1,51,52]]],[15,4,4,52,56,[[414,2,2,52,54],[420,2,2,54,56]]],[17,1,1,56,57,[[473,1,1,56,57]]],[18,2,2,57,59,[[534,1,1,57,58],[587,1,1,58,59]]],[19,3,3,59,62,[[637,1,1,59,60],[649,1,1,60,61],[652,1,1,61,62]]],[22,7,6,62,68,[[684,2,1,62,63],[688,2,2,63,65],[697,1,1,65,66],[735,1,1,66,67],[744,1,1,67,68]]],[23,17,16,68,84,[[745,1,1,68,69],[746,1,1,69,70],[752,1,1,70,71],[753,1,1,71,72],[760,2,1,72,73],[769,4,4,73,77],[771,1,1,77,78],[773,1,1,78,79],[786,2,2,79,81],[787,1,1,81,82],[792,1,1,82,83],[795,1,1,83,84]]],[25,10,10,84,94,[[803,2,2,84,86],[806,2,2,86,88],[808,1,1,88,89],[815,3,3,89,92],[829,1,1,92,93],[840,1,1,93,94]]],[27,1,1,94,95,[[869,1,1,94,95]]],[28,1,1,95,96,[[877,1,1,95,96]]],[29,7,7,96,103,[[879,4,4,96,100],[880,2,2,100,102],[886,1,1,102,103]]],[38,2,2,103,105,[[927,1,1,103,104],[928,1,1,104,105]]]],[598,631,772,1096,1136,1295,1363,1589,1614,2164,2475,2485,3549,4077,4668,4914,5418,5526,5631,5659,5782,6297,6892,7333,7334,7407,7448,7596,7742,7761,7774,7886,8388,8425,8465,9029,9360,9417,9567,9652,9654,9687,9720,9773,9962,10762,11214,11226,11316,11337,11780,11884,12312,12313,12503,12505,13828,14771,15788,16682,17036,17126,17777,17856,17866,18024,18774,18941,18953,18975,19170,19192,19352,19543,19549,19550,19561,19599,19652,19980,19981,20007,20092,20214,20495,20496,20562,20563,20580,20744,20750,20752,21180,21454,22208,22330,22368,22371,22374,22376,22381,22384,22492,23121,23143]]],["sendest",[2,2,[[5,1,1,0,1,[[187,1,1,0,1]]],[11,1,1,1,2,[[313,1,1,1,2]]]],[5867,9539]]],["sendeth",[5,5,[[4,1,1,0,1,[[176,1,1,0,1]]],[17,1,1,1,2,[[440,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[19,1,1,3,4,[[653,1,1,3,4]]],[22,1,1,4,5,[[696,1,1,4,5]]]],[5528,12961,15581,17147,17999]]],["sending",[8,8,[[13,1,1,0,1,[[402,1,1,0,1]]],[23,6,6,1,7,[[751,1,1,1,2],[769,1,1,2,3],[770,1,1,3,4],[773,1,1,4,5],[779,1,1,5,6],[788,1,1,6,7]]],[25,1,1,7,8,[[818,1,1,7,8]]]],[12008,19144,19538,19577,19654,19838,20014,20840]]],["sent",[361,350,[[0,19,19,0,19,[[18,1,1,0,1],[19,1,1,1,2],[26,1,1,2,3],[30,1,1,3,4],[31,3,3,4,7],[36,1,1,7,8],[37,2,2,8,10],[40,2,2,10,12],[41,1,1,12,13],[44,4,4,13,17],[45,2,2,17,19]]],[1,9,9,19,28,[[52,4,4,19,23],[53,1,1,23,24],[54,1,1,24,25],[56,1,1,25,26],[58,2,2,26,28]]],[3,17,17,28,45,[[129,3,3,28,31],[130,1,1,31,32],[132,3,3,32,35],[136,2,2,35,37],[137,2,2,37,39],[138,4,4,39,43],[147,1,1,43,44],[148,1,1,44,45]]],[4,3,3,45,48,[[154,1,1,45,46],[161,1,1,46,47],[186,1,1,47,48]]],[5,13,13,48,61,[[188,2,2,48,50],[192,2,2,50,52],[193,2,2,52,54],[196,2,2,54,56],[197,1,1,56,57],[200,2,2,57,59],[208,1,1,59,60],[210,1,1,60,61]]],[6,24,22,61,83,[[213,1,1,61,62],[214,1,1,62,63],[215,1,1,63,64],[216,4,3,64,67],[217,2,2,67,69],[219,2,2,69,71],[221,5,4,71,75],[222,1,1,75,76],[226,1,1,76,77],[228,1,1,77,78],[229,1,1,78,79],[230,2,2,79,81],[231,2,2,81,83]]],[8,26,25,83,108,[[239,1,1,83,84],[240,2,2,84,86],[241,1,1,86,87],[246,1,1,87,88],[248,1,1,88,89],[250,3,3,89,92],[251,4,4,92,96],[253,1,1,96,97],[254,5,4,97,101],[257,1,1,101,102],[260,4,4,102,106],[265,1,1,106,107],[266,1,1,107,108]]],[9,34,32,108,140,[[268,1,1,108,109],[269,4,4,109,113],[271,1,1,113,114],[275,1,1,114,115],[276,5,5,115,120],[277,8,8,120,128],[278,2,2,128,130],[279,1,1,130,131],[280,5,3,131,134],[281,2,2,134,136],[285,2,2,136,138],[288,1,1,138,139],[290,1,1,139,140]]],[10,27,26,140,166,[[291,2,2,140,142],[292,3,3,142,145],[295,3,3,145,148],[297,1,1,148,149],[299,2,2,149,151],[302,2,2,151,153],[304,1,1,153,154],[305,2,2,154,156],[308,2,2,156,158],[309,1,1,158,159],[310,4,4,159,163],[311,4,3,163,166]]],[11,49,46,166,212,[[313,6,6,166,172],[314,4,4,172,176],[315,1,1,176,177],[317,3,3,177,180],[318,5,4,180,184],[319,1,1,184,185],[320,1,1,185,186],[322,3,3,186,189],[323,1,1,189,190],[324,1,1,190,191],[326,4,3,191,194],[328,4,4,194,198],[329,2,2,198,200],[330,2,2,200,202],[331,4,4,202,206],[332,1,1,206,207],[334,2,2,207,209],[335,2,2,209,211],[336,2,1,211,212]]],[12,9,9,212,221,[[347,1,1,212,213],[351,1,1,213,214],[356,5,5,214,219],[358,2,2,219,221]]],[13,24,23,221,244,[[368,3,3,221,224],[374,1,1,224,225],[376,1,1,225,226],[382,2,2,226,228],[383,1,1,228,229],[390,2,2,229,231],[391,5,4,231,235],[396,1,1,235,236],[398,2,2,236,238],[400,3,3,238,241],[401,1,1,241,242],[402,2,2,242,244]]],[14,1,1,244,245,[[410,1,1,244,245]]],[15,8,8,245,253,[[414,1,1,245,246],[418,7,7,246,253]]],[16,7,7,253,260,[[426,1,1,253,254],[428,1,1,254,255],[429,1,1,255,256],[430,1,1,256,257],[433,1,1,257,258],[434,2,2,258,260]]],[17,2,2,260,262,[[436,2,2,260,262]]],[18,11,11,262,273,[[495,1,1,262,263],[555,2,2,263,265],[582,4,4,265,269],[583,1,1,269,270],[584,1,1,270,271],[588,1,1,271,272],[612,1,1,272,273]]],[19,1,1,273,274,[[644,1,1,273,274]]],[22,13,13,274,287,[[687,1,1,274,275],[698,1,1,275,276],[714,1,1,276,277],[715,4,4,277,281],[717,1,1,281,282],[720,1,1,282,283],[721,1,1,283,284],[726,1,1,284,285],[733,1,1,285,286],[739,1,1,286,287]]],[23,39,39,287,326,[[751,1,1,287,288],[758,3,3,288,291],[763,1,1,291,292],[765,1,1,292,293],[767,2,2,293,295],[768,1,1,295,296],[769,2,2,296,298],[770,4,4,298,302],[771,1,1,302,303],[772,2,2,303,305],[773,8,8,305,313],[779,1,1,313,314],[781,2,2,314,316],[782,1,1,316,317],[783,2,2,317,319],[786,3,3,319,322],[787,2,2,322,324],[788,1,1,324,325],[793,1,1,325,326]]],[24,1,1,326,327,[[797,1,1,326,327]]],[25,7,6,327,333,[[803,1,1,327,328],[804,2,2,328,330],[814,1,1,330,331],[824,3,2,331,333]]],[26,1,1,333,334,[[859,1,1,333,334]]],[27,1,1,334,335,[[866,1,1,334,335]]],[28,1,1,335,336,[[877,1,1,335,336]]],[29,2,2,336,338,[[882,1,1,336,337],[885,1,1,337,338]]],[30,1,1,338,339,[[888,1,1,338,339]]],[32,1,1,339,340,[[898,1,1,339,340]]],[36,1,1,340,341,[[909,1,1,340,341]]],[37,8,8,341,349,[[911,1,1,341,342],[912,3,3,342,345],[914,1,1,345,346],[916,1,1,346,347],[917,2,2,347,349]]],[38,1,1,349,350,[[926,1,1,349,350]]]],[470,497,769,877,931,933,946,1097,1142,1144,1203,1209,1256,1365,1366,1381,1385,1391,1414,1591,1592,1593,1594,1629,1654,1701,1749,1769,4078,4091,4092,4144,4206,4222,4223,4325,4327,4361,4372,4380,4385,4390,4415,4670,4726,4964,5180,5850,5870,5872,5966,5974,5978,5998,6067,6070,6108,6194,6198,6439,6485,6583,6605,6638,6662,6668,6689,6702,6718,6777,6785,6841,6843,6846,6848,6878,6967,6995,7053,7060,7066,7112,7115,7301,7327,7330,7352,7452,7487,7561,7578,7580,7607,7614,7615,7617,7681,7717,7720,7726,7727,7798,7875,7893,7900,7901,8004,8018,8054,8093,8095,8096,8107,8143,8232,8242,8243,8245,8246,8256,8262,8263,8264,8265,8273,8277,8281,8286,8311,8313,8324,8358,8385,8388,8399,8401,8522,8525,8619,8705,8761,8770,8795,8806,8812,8880,8886,8892,8947,9065,9078,9154,9171,9224,9267,9268,9351,9361,9389,9410,9413,9415,9418,9459,9462,9465,9535,9539,9542,9544,9546,9549,9553,9555,9557,9568,9583,9655,9657,9669,9683,9684,9688,9706,9721,9736,9794,9798,9814,9833,9868,9904,9905,9915,9970,9971,9973,9974,9987,9996,10038,10051,10065,10070,10077,10081,10110,10160,10163,10166,10181,10204,10668,10775,10909,10910,10912,10913,10923,10946,10949,11214,11222,11224,11364,11398,11511,11512,11530,11696,11700,11719,11721,11722,11731,11828,11896,11906,11956,11959,11962,11987,12003,12008,12217,12316,12403,12404,12405,12406,12409,12413,12420,12724,12760,12766,12789,12827,12854,12864,12873,12874,14134,15138,15158,15623,15626,15632,15634,15666,15719,15802,16184,16884,17837,18030,18342,18356,18361,18369,18373,18413,18499,18519,18630,18751,18844,19144,19296,19307,19308,19421,19441,19516,19522,19529,19538,19551,19577,19584,19587,19594,19611,19627,19633,19636,19638,19644,19654,19655,19660,19663,19666,19838,19881,19891,19909,19936,19937,19984,19995,19996,19998,19999,20014,20141,20323,20501,20507,20508,20714,21023,21047,22026,22165,22336,22420,22474,22511,22652,22852,22888,22907,22908,22910,22931,22962,22964,22974,23107]]],["sentest",[3,3,[[3,2,2,0,2,[[129,1,1,0,1],[140,1,1,1,2]]],[10,1,1,2,3,[[295,1,1,2,3]]]],[4102,4458,8886]]],["set",[4,4,[[6,2,2,0,2,[[211,1,1,0,1],[230,1,1,1,2]]],[11,1,1,2,3,[[320,1,1,2,3]]],[23,1,1,3,4,[[778,1,1,3,4]]]],[6517,7102,9739,19817]]],["shot",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7750]]],["soweth",[3,3,[[19,3,3,0,3,[[633,2,2,0,2],[643,1,1,2,3]]]],[16554,16559,16868]]],["up",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15229]]],["way",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[440]]]]},{"k":"H7972","v":[["*",[14,14,[[14,10,10,0,10,[[406,4,4,0,4],[407,3,3,4,7],[408,2,2,7,9],[409,1,1,9,10]]],[26,4,4,10,14,[[852,2,2,10,12],[854,1,1,12,13],[855,1,1,13,14]]]],[12121,12124,12127,12128,12140,12141,12151,12163,12164,12187,21809,21835,21898,21927]]],["put",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12163]]],["send",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12151]]],["sent",[12,12,[[14,8,8,0,8,[[406,4,4,0,4],[407,2,2,4,6],[408,1,1,6,7],[409,1,1,7,8]]],[26,4,4,8,12,[[852,2,2,8,10],[854,1,1,10,11],[855,1,1,11,12]]]],[12121,12124,12127,12128,12140,12141,12164,12187,21809,21835,21898,21927]]]]},{"k":"H7973","v":[["*",[7,7,[[13,2,2,0,2,[[389,1,1,0,1],[398,1,1,1,2]]],[15,1,1,2,3,[[416,1,1,2,3]]],[17,2,2,3,5,[[468,1,1,3,4],[471,1,1,4,5]]],[21,1,1,5,6,[[674,1,1,5,6]]],[28,1,1,6,7,[[877,1,1,6,7]]]],[11666,11880,12376,13668,13748,17595,22319]]],["darts",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11880]]],["plants",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17595]]],["sword",[3,3,[[17,2,2,0,2,[[468,1,1,0,1],[471,1,1,1,2]]],[28,1,1,2,3,[[877,1,1,2,3]]]],[13668,13748,22319]]],["weapon",[2,2,[[13,1,1,0,1,[[389,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]]],[11666,12376]]]]},{"k":"H7974","v":[["*",[9,7,[[0,6,5,0,5,[[9,2,1,0,1],[10,4,4,1,5]]],[12,3,2,5,7,[[338,3,2,5,7]]]],[258,278,279,280,281,10270,10276]]],["Salah",[6,5,[[0,6,5,0,5,[[9,2,1,0,1],[10,4,4,1,5]]]],[258,278,279,280,281]]],["Shelah",[3,2,[[12,3,2,0,2,[[338,3,2,0,2]]]],[10270,10276]]]]},{"k":"H7975","v":[["*",[2,2,[[15,1,1,0,1,[[415,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]]],[12342,17813]]],["Shiloah",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17813]]],["Siloah",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12342]]]]},{"k":"H7976","v":[["branches",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17977]]]]},{"k":"H7977","v":[["Shilhi",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]]],[9522,11618]]]]},{"k":"H7978","v":[["Shilhim",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6234]]]]},{"k":"H7979","v":[["*",[71,62,[[1,18,16,0,16,[[74,4,4,0,4],[75,3,1,4,5],[79,1,1,5,6],[80,1,1,6,7],[84,1,1,7,8],[86,4,4,8,12],[88,1,1,12,13],[89,3,3,13,16]]],[2,1,1,16,17,[[113,1,1,16,17]]],[3,2,2,17,19,[[119,1,1,17,18],[120,1,1,18,19]]],[6,1,1,19,20,[[211,1,1,19,20]]],[8,2,2,20,22,[[255,2,2,20,22]]],[9,5,5,22,27,[[275,4,4,22,26],[285,1,1,26,27]]],[10,6,6,27,33,[[292,1,1,27,28],[294,1,1,28,29],[297,1,1,29,30],[300,1,1,30,31],[303,1,1,31,32],[308,1,1,32,33]]],[11,1,1,33,34,[[316,1,1,33,34]]],[12,4,1,34,35,[[365,4,1,34,35]]],[13,5,5,35,40,[[370,2,2,35,37],[375,1,1,37,38],[379,1,1,38,39],[395,1,1,39,40]]],[15,1,1,40,41,[[417,1,1,40,41]]],[17,1,1,41,42,[[471,1,1,41,42]]],[18,4,4,42,46,[[500,1,1,42,43],[546,1,1,43,44],[555,1,1,44,45],[605,1,1,45,46]]],[19,1,1,46,47,[[636,1,1,46,47]]],[22,3,3,47,50,[[699,1,1,47,48],[706,1,1,48,49],[743,1,1,49,50]]],[25,13,9,50,59,[[824,1,1,50,51],[840,1,1,51,52],[841,9,5,52,57],[842,1,1,57,58],[845,1,1,58,59]]],[26,1,1,59,60,[[860,1,1,59,60]]],[38,2,2,60,62,[[925,2,2,60,62]]]],[2218,2222,2223,2225,2270,2409,2428,2544,2614,2618,2619,2620,2700,2711,2729,2731,3452,3723,3750,6516,7759,7764,8234,8237,8238,8240,8539,8777,8871,8982,9084,9204,9360,9613,11159,11254,11265,11368,11464,11809,12399,13752,14240,14957,15132,16129,16640,18040,18172,18908,21048,21468,21516,21517,21518,21519,21520,21548,21615,22063,23096,23101]]],["+",[3,2,[[1,1,1,0,1,[[86,1,1,0,1]]],[12,2,1,1,2,[[365,2,1,1,2]]]],[2620,11159]]],["table",[54,52,[[1,17,15,0,15,[[74,4,4,0,4],[75,3,1,4,5],[79,1,1,5,6],[80,1,1,6,7],[84,1,1,7,8],[86,3,3,8,11],[88,1,1,11,12],[89,3,3,12,15]]],[2,1,1,15,16,[[113,1,1,15,16]]],[3,2,2,16,18,[[119,1,1,16,17],[120,1,1,17,18]]],[6,1,1,18,19,[[211,1,1,18,19]]],[8,2,2,19,21,[[255,2,2,19,21]]],[9,5,5,21,26,[[275,4,4,21,25],[285,1,1,25,26]]],[10,6,6,26,32,[[292,1,1,26,27],[294,1,1,27,28],[297,1,1,28,29],[300,1,1,29,30],[303,1,1,30,31],[308,1,1,31,32]]],[11,1,1,32,33,[[316,1,1,32,33]]],[13,3,3,33,36,[[375,1,1,33,34],[379,1,1,34,35],[395,1,1,35,36]]],[15,1,1,36,37,[[417,1,1,36,37]]],[17,1,1,37,38,[[471,1,1,37,38]]],[18,4,4,38,42,[[500,1,1,38,39],[546,1,1,39,40],[555,1,1,40,41],[605,1,1,41,42]]],[19,1,1,42,43,[[636,1,1,42,43]]],[22,2,2,43,45,[[699,1,1,43,44],[743,1,1,44,45]]],[25,4,4,45,49,[[824,1,1,45,46],[840,1,1,46,47],[842,1,1,47,48],[845,1,1,48,49]]],[26,1,1,49,50,[[860,1,1,49,50]]],[38,2,2,50,52,[[925,2,2,50,52]]]],[2218,2222,2223,2225,2270,2409,2428,2544,2614,2618,2619,2700,2711,2729,2731,3452,3723,3750,6516,7759,7764,8234,8237,8238,8240,8539,8777,8871,8982,9084,9204,9360,9613,11368,11464,11809,12399,13752,14240,14957,15132,16129,16640,18040,18908,21048,21468,21548,21615,22063,23096,23101]]],["tables",[14,9,[[12,2,1,0,1,[[365,2,1,0,1]]],[13,2,2,1,3,[[370,2,2,1,3]]],[22,1,1,3,4,[[706,1,1,3,4]]],[25,9,5,4,9,[[841,9,5,4,9]]]],[11159,11254,11265,18172,21516,21517,21518,21519,21520]]]]},{"k":"H7980","v":[["*",[8,7,[[15,1,1,0,1,[[417,1,1,0,1]]],[16,2,1,1,2,[[434,2,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[20,4,4,3,7,[[660,1,1,3,4],[663,1,1,4,5],[664,1,1,5,6],[666,1,1,6,7]]]],[12397,12835,16031,17352,17416,17419,17467]]],["+",[1,1,[[20,1,1,0,1,[[664,1,1,0,1]]]],[17419]]],["dominion",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16031]]],["over",[2,2,[[16,1,1,0,1,[[434,1,1,0,1]]],[20,1,1,1,2,[[666,1,1,1,2]]]],[12835,17467]]],["power",[2,2,[[16,1,1,0,1,[[434,1,1,0,1]]],[20,1,1,1,2,[[663,1,1,1,2]]]],[12835,17416]]],["rule",[2,2,[[15,1,1,0,1,[[417,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[12397,17352]]]]},{"k":"H7981","v":[["*",[7,7,[[26,7,7,0,7,[[851,3,3,0,3],[852,1,1,3,4],[854,2,2,4,6],[855,1,1,6,7]]]],[21796,21797,21806,21834,21881,21890,21929]]],["+",[3,3,[[26,3,3,0,3,[[852,1,1,0,1],[854,2,2,1,3]]]],[21834,21881,21890]]],["mastery",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21929]]],["rule",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21797]]],["ruler",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21796,21806]]]]},{"k":"H7982","v":[["shields",[7,7,[[9,1,1,0,1,[[274,1,1,0,1]]],[11,1,1,1,2,[[323,1,1,1,2]]],[12,1,1,2,3,[[355,1,1,2,3]]],[13,1,1,3,4,[[389,1,1,3,4]]],[21,1,1,4,5,[[674,1,1,4,5]]],[23,1,1,5,6,[[795,1,1,5,6]]],[25,1,1,6,7,[[828,1,1,6,7]]]],[8216,9839,10897,11665,17586,20223,21132]]]]},{"k":"H7983","v":[["power",[2,2,[[20,2,2,0,2,[[666,2,2,0,2]]]],[17462,17466]]]]},{"k":"H7984","v":[["rulers",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21809,21810]]]]},{"k":"H7985","v":[["*",[14,9,[[26,14,9,0,9,[[853,4,3,0,3],[855,2,1,3,4],[856,8,5,4,9]]]],[21840,21859,21871,21931,21939,21945,21947,21959,21960]]],["dominion",[13,9,[[26,13,9,0,9,[[853,4,3,0,3],[855,2,1,3,4],[856,7,5,4,9]]]],[21840,21859,21871,21931,21939,21945,21947,21959,21960]]],["dominions",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21960]]]]},{"k":"H7986","v":[["imperious",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20792]]]]},{"k":"H7987","v":[["quietly",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8108]]]]},{"k":"H7988","v":[["one",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5668]]]]},{"k":"H7989","v":[["*",[4,4,[[0,1,1,0,1,[[41,1,1,0,1]]],[20,3,3,1,4,[[665,1,1,1,2],[666,1,1,2,3],[668,1,1,3,4]]]],[1258,17448,17466,17498]]],["governor",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1258]]],["mighty",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17448]]],["power",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17466]]],["ruler",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17498]]]]},{"k":"H7990","v":[["*",[10,10,[[14,2,2,0,2,[[406,1,1,0,1],[409,1,1,1,2]]],[26,8,8,2,10,[[851,2,2,2,4],[853,4,4,4,8],[854,2,2,8,10]]]],[12130,12197,21768,21773,21854,21862,21863,21869,21895,21903]]],["captain",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21773]]],["lawful",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12197]]],["rule",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21863]]],["ruled",[2,2,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,1,1,1,2,[[854,1,1,1,2]]]],[12130,21895]]],["ruler",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[854,1,1,1,2]]]],[21768,21903]]],["ruleth",[3,3,[[26,3,3,0,3,[[853,3,3,0,3]]]],[21854,21862,21869]]]]},{"k":"H7991","v":[["*",[20,19,[[1,2,2,0,2,[[63,1,1,0,1],[64,1,1,1,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[9,1,1,3,4,[[289,1,1,3,4]]],[10,1,1,4,5,[[299,1,1,4,5]]],[11,7,6,5,11,[[319,3,3,5,8],[321,1,1,8,9],[322,2,1,9,10],[327,1,1,10,11]]],[12,2,2,11,13,[[348,1,1,11,12],[349,1,1,12,13]]],[13,1,1,13,14,[[374,1,1,13,14]]],[18,1,1,14,15,[[557,1,1,14,15]]],[19,1,1,15,16,[[649,1,1,15,16]]],[22,1,1,16,17,[[718,1,1,16,17]]],[25,2,2,17,19,[[824,2,2,17,19]]]],[1896,1924,7682,8661,9073,9709,9724,9726,9781,9818,9950,10684,10738,11355,15203,17035,18432,21022,21030]]],["captain",[2,2,[[11,2,2,0,2,[[321,1,1,0,1],[327,1,1,1,2]]]],[9781,9950]]],["captains",[9,8,[[1,2,2,0,2,[[63,1,1,0,1],[64,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[10,1,1,3,4,[[299,1,1,3,4]]],[11,2,1,4,5,[[322,2,1,4,5]]],[12,2,2,5,7,[[348,1,1,5,6],[349,1,1,6,7]]],[13,1,1,7,8,[[374,1,1,7,8]]]],[1896,1924,8661,9073,9818,10684,10738,11355]]],["lord",[3,3,[[11,3,3,0,3,[[319,3,3,0,3]]]],[9709,9724,9726]]],["lords",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21030]]],["measure",[2,2,[[18,1,1,0,1,[[557,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[15203,18432]]],["musick",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7682]]],["princes",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21022]]],["things",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17035]]]]},{"k":"H7992","v":[["*",[108,94,[[0,9,9,0,9,[[0,1,1,0,1],[1,1,1,1,2],[5,1,1,2,3],[21,1,1,3,4],[30,1,1,4,5],[31,1,1,5,6],[33,1,1,6,7],[39,1,1,7,8],[41,1,1,8,9]]],[1,6,5,9,14,[[68,4,3,9,12],[77,1,1,12,13],[88,1,1,13,14]]],[2,4,4,14,18,[[96,2,2,14,16],[108,2,2,16,18]]],[3,10,9,18,27,[[118,1,1,18,19],[123,1,1,19,20],[131,2,2,20,22],[135,3,2,22,24],[144,1,1,24,25],[145,1,1,25,26],[147,1,1,26,27]]],[4,2,2,27,29,[[175,1,1,27,28],[178,1,1,28,29]]],[5,2,2,29,31,[[195,1,1,29,30],[205,1,1,30,31]]],[6,1,1,31,32,[[230,1,1,31,32]]],[8,6,6,32,38,[[238,1,1,32,33],[252,1,1,33,34],[254,1,1,34,35],[255,2,2,35,37],[265,1,1,37,38]]],[9,6,4,38,42,[[267,1,1,38,39],[269,1,1,39,40],[284,3,1,40,41],[289,1,1,41,42]]],[10,7,6,42,48,[[293,1,1,42,43],[296,2,2,43,45],[302,2,1,45,46],[308,1,1,46,47],[312,1,1,47,48]]],[11,8,6,48,54,[[313,2,1,48,49],[323,3,2,49,51],[331,1,1,51,52],[332,2,2,52,54]]],[12,15,14,54,68,[[339,1,1,54,55],[340,2,2,55,57],[345,2,2,57,59],[349,1,1,59,60],[360,1,1,60,61],[361,2,2,61,63],[362,1,1,63,64],[363,3,3,64,67],[364,2,1,67,68]]],[13,8,6,68,74,[[376,2,1,68,69],[381,1,1,69,70],[389,3,2,70,72],[393,1,1,72,73],[397,1,1,73,74]]],[15,1,1,74,75,[[422,1,1,74,75]]],[16,2,2,75,77,[[430,1,1,75,76],[433,1,1,76,77]]],[17,1,1,77,78,[[477,1,1,77,78]]],[22,3,3,78,81,[[693,1,1,78,79],[697,1,1,79,80],[715,1,1,80,81]]],[23,2,2,81,83,[[782,1,1,81,82],[792,1,1,82,83]]],[25,11,7,83,90,[[806,6,2,83,85],[811,1,1,85,86],[822,1,1,86,87],[832,1,1,87,88],[843,1,1,88,89],[847,1,1,89,90]]],[27,1,1,90,91,[[867,1,1,90,91]]],[37,3,3,91,94,[[916,1,1,91,92],[923,2,2,92,94]]]],[12,44,153,551,895,947,1005,1192,1270,2027,2037,2042,2312,2676,2896,2897,3287,3288,3682,3874,4159,4160,4301,4308,4591,4628,4683,5508,5578,6054,6331,7084,7284,7631,7727,7735,7742,7979,8024,8084,8480,8671,8834,8902,8904,9163,9342,9482,9546,9834,9835,10090,10103,10106,10319,10363,10376,10576,10614,10729,11002,11023,11038,11056,11079,11081,11088,11114,11407,11500,11660,11661,11760,11861,12581,12780,12826,13936,17965,18028,18382,19909,20114,20548,20558,20647,20958,21231,21555,21669,22169,22950,23067,23068]]],["old",[2,2,[[22,1,1,0,1,[[693,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[17965,20114]]],["part",[18,10,[[9,3,1,0,1,[[284,3,1,0,1]]],[11,3,2,1,3,[[323,3,2,1,3]]],[13,3,2,3,5,[[389,3,2,3,5]]],[15,1,1,5,6,[[422,1,1,5,6]]],[25,7,3,6,9,[[806,6,2,6,8],[847,1,1,8,9]]],[37,1,1,9,10,[[923,1,1,9,10]]]],[8480,9834,9835,11660,11661,12581,20548,20558,21669,23068]]],["third",[85,79,[[0,9,9,0,9,[[0,1,1,0,1],[1,1,1,1,2],[5,1,1,2,3],[21,1,1,3,4],[30,1,1,4,5],[31,1,1,5,6],[33,1,1,6,7],[39,1,1,7,8],[41,1,1,8,9]]],[1,6,5,9,14,[[68,4,3,9,12],[77,1,1,12,13],[88,1,1,13,14]]],[2,4,4,14,18,[[96,2,2,14,16],[108,2,2,16,18]]],[3,10,9,18,27,[[118,1,1,18,19],[123,1,1,19,20],[131,2,2,20,22],[135,3,2,22,24],[144,1,1,24,25],[145,1,1,25,26],[147,1,1,26,27]]],[4,2,2,27,29,[[175,1,1,27,28],[178,1,1,28,29]]],[5,2,2,29,31,[[195,1,1,29,30],[205,1,1,30,31]]],[6,1,1,31,32,[[230,1,1,31,32]]],[8,6,6,32,38,[[238,1,1,32,33],[252,1,1,33,34],[254,1,1,34,35],[255,2,2,35,37],[265,1,1,37,38]]],[9,2,2,38,40,[[267,1,1,38,39],[269,1,1,39,40]]],[10,7,6,40,46,[[293,1,1,40,41],[296,2,2,41,43],[302,2,1,43,44],[308,1,1,44,45],[312,1,1,45,46]]],[11,5,4,46,50,[[313,2,1,46,47],[331,1,1,47,48],[332,2,2,48,50]]],[12,15,14,50,64,[[339,1,1,50,51],[340,2,2,51,53],[345,2,2,53,55],[349,1,1,55,56],[360,1,1,56,57],[361,2,2,57,59],[362,1,1,59,60],[363,3,3,60,63],[364,2,1,63,64]]],[13,5,4,64,68,[[376,2,1,64,65],[381,1,1,65,66],[393,1,1,66,67],[397,1,1,67,68]]],[16,2,2,68,70,[[430,1,1,68,69],[433,1,1,69,70]]],[17,1,1,70,71,[[477,1,1,70,71]]],[22,2,2,71,73,[[697,1,1,71,72],[715,1,1,72,73]]],[23,1,1,73,74,[[782,1,1,73,74]]],[25,2,2,74,76,[[811,1,1,74,75],[832,1,1,75,76]]],[27,1,1,76,77,[[867,1,1,76,77]]],[37,2,2,77,79,[[916,1,1,77,78],[923,1,1,78,79]]]],[12,44,153,551,895,947,1005,1192,1270,2027,2037,2042,2312,2676,2896,2897,3287,3288,3682,3874,4159,4160,4301,4308,4591,4628,4683,5508,5578,6054,6331,7084,7284,7631,7727,7735,7742,7979,8024,8084,8834,8902,8904,9163,9342,9482,9546,10090,10103,10106,10319,10363,10376,10576,10614,10729,11002,11023,11038,11056,11079,11081,11088,11114,11407,11500,11760,11861,12780,12826,13936,18028,18382,19909,20647,21231,22169,22950,23067]]],["three",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[25,1,1,1,2,[[843,1,1,1,2]]]],[8671,21555]]],["time",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20958]]]]},{"k":"H7993","v":[["*",[125,121,[[0,4,4,0,4,[[20,1,1,0,1],[36,3,3,1,4]]],[1,10,9,4,13,[[50,1,1,4,5],[53,2,1,5,6],[56,3,3,6,9],[64,1,1,9,10],[71,1,1,10,11],[81,2,2,11,13]]],[2,2,2,13,15,[[90,1,1,13,14],[103,1,1,14,15]]],[3,3,3,15,18,[[135,1,1,15,16],[151,2,2,16,18]]],[4,3,3,18,21,[[161,2,2,18,20],[181,1,1,20,21]]],[5,5,5,21,26,[[194,1,1,21,22],[196,2,2,22,24],[204,2,2,24,26]]],[6,4,4,26,30,[[218,1,1,26,27],[219,2,2,27,29],[225,1,1,29,30]]],[9,5,5,30,35,[[277,1,1,30,31],[284,1,1,31,32],[286,3,3,32,35]]],[10,5,5,35,40,[[303,3,3,35,38],[304,1,1,38,39],[309,1,1,39,40]]],[11,15,15,40,55,[[314,2,2,40,42],[315,1,1,42,43],[316,1,1,43,44],[318,1,1,44,45],[319,1,1,45,46],[321,2,2,46,48],[322,1,1,48,49],[325,2,2,49,51],[329,1,1,51,52],[335,2,2,52,54],[336,1,1,54,55]]],[13,5,5,55,60,[[373,1,1,55,56],[390,1,1,56,57],[391,1,1,57,58],[396,1,1,58,59],[399,1,1,59,60]]],[15,3,3,60,63,[[421,2,2,60,62],[425,1,1,62,63]]],[17,4,4,63,67,[[450,1,1,63,64],[453,1,1,64,65],[462,1,1,65,66],[464,1,1,66,67]]],[18,10,10,67,77,[[479,1,1,67,68],[499,1,1,68,69],[527,1,1,69,70],[528,1,1,70,71],[532,1,1,71,72],[537,1,1,72,73],[548,1,1,73,74],[579,1,1,74,75],[585,1,1,75,76],[624,1,1,76,77]]],[20,2,2,77,79,[[661,2,2,77,79]]],[22,5,5,79,84,[[680,1,1,79,80],[692,1,1,80,81],[697,1,1,81,82],[712,1,1,82,83],[716,1,1,83,84]]],[23,15,14,84,98,[[751,3,2,84,86],[753,1,1,86,87],[758,1,1,87,88],[766,2,2,88,90],[770,1,1,90,91],[780,2,2,91,93],[782,2,2,93,95],[785,1,1,95,96],[795,1,1,96,97],[796,1,1,97,98]]],[24,1,1,98,99,[[798,1,1,98,99]]],[25,10,10,99,109,[[806,1,1,99,100],[808,1,1,100,101],[817,1,1,101,102],[819,1,1,102,103],[820,1,1,103,104],[821,2,2,104,106],[824,1,1,106,107],[829,1,1,107,108],[844,1,1,108,109]]],[26,3,3,109,112,[[857,3,3,109,112]]],[28,1,1,112,113,[[876,1,1,112,113]]],[29,2,2,113,115,[[882,1,1,113,114],[886,1,1,114,115]]],[31,1,1,115,116,[[890,1,1,115,116]]],[32,2,2,116,118,[[894,1,1,116,117],[899,1,1,117,118]]],[33,1,1,118,119,[[902,1,1,118,119]]],[37,4,2,119,121,[[915,2,1,119,120],[921,2,1,120,121]]]],[528,1103,1105,1107,1554,1604,1694,1695,1697,1945,2144,2457,2462,2761,3151,4295,4865,4867,5174,5178,5707,6031,6075,6091,6301,6303,6744,6771,6807,6946,8280,8495,8566,8575,8576,9208,9209,9212,9227,9406,9567,9572,9601,9644,9680,9722,9781,9782,9818,9892,9894,10003,10171,10177,10222,11344,11687,11716,11841,11923,12522,12537,12679,13236,13283,13503,13549,13948,14214,14685,14702,14754,14815,14985,15531,15751,16368,17364,17365,17705,17947,18012,18306,18407,19134,19148,19194,19309,19473,19482,19595,19865,19872,19901,19904,19966,20275,20279,20333,20550,20596,20767,20880,20893,20902,20903,21042,21174,21596,21968,21972,21973,22298,22413,22484,22551,22600,22683,22718,22944,23041]]],["+",[19,19,[[0,1,1,0,1,[[20,1,1,0,1]]],[1,2,2,1,3,[[56,1,1,1,2],[81,1,1,2,3]]],[4,1,1,3,4,[[161,1,1,3,4]]],[6,1,1,4,5,[[219,1,1,4,5]]],[11,4,4,5,9,[[325,1,1,5,6],[335,2,2,6,8],[336,1,1,8,9]]],[15,2,2,9,11,[[421,1,1,9,10],[425,1,1,10,11]]],[18,1,1,11,12,[[548,1,1,11,12]]],[22,1,1,12,13,[[680,1,1,12,13]]],[23,4,4,13,17,[[751,1,1,13,14],[770,1,1,14,15],[785,1,1,15,16],[796,1,1,16,17]]],[25,1,1,17,18,[[821,1,1,17,18]]],[37,1,1,18,19,[[915,1,1,18,19]]]],[528,1695,2457,5178,6771,9892,10171,10177,10222,12537,12679,14985,17705,19134,19595,19966,20279,20903,22944]]],["Cast",[4,4,[[1,1,1,0,1,[[53,1,1,0,1]]],[18,2,2,1,3,[[528,1,1,1,2],[532,1,1,2,3]]],[37,1,1,3,4,[[921,1,1,3,4]]]],[1604,14702,14754,23041]]],["away",[9,9,[[6,1,1,0,1,[[225,1,1,0,1]]],[11,1,1,1,2,[[319,1,1,1,2]]],[18,1,1,2,3,[[479,1,1,2,3]]],[20,2,2,3,5,[[661,2,2,3,5]]],[23,1,1,5,6,[[751,1,1,5,6]]],[25,2,2,6,8,[[819,1,1,6,7],[821,1,1,7,8]]],[28,1,1,8,9,[[876,1,1,8,9]]]],[6946,9722,13948,17364,17365,19148,20880,20902,22298]]],["cast",[63,63,[[0,3,3,0,3,[[36,3,3,0,3]]],[1,6,6,3,9,[[50,1,1,3,4],[53,1,1,4,5],[56,1,1,5,6],[64,1,1,6,7],[71,1,1,7,8],[81,1,1,8,9]]],[2,2,2,9,11,[[90,1,1,9,10],[103,1,1,10,11]]],[3,2,2,11,13,[[135,1,1,11,12],[151,1,1,12,13]]],[4,2,2,13,15,[[161,1,1,13,14],[181,1,1,14,15]]],[5,4,4,15,19,[[194,1,1,15,16],[196,1,1,16,17],[204,2,2,17,19]]],[6,2,2,19,21,[[218,1,1,19,20],[219,1,1,20,21]]],[9,3,3,21,24,[[277,1,1,21,22],[284,1,1,22,23],[286,1,1,23,24]]],[10,5,5,24,29,[[303,3,3,24,27],[304,1,1,27,28],[309,1,1,28,29]]],[11,8,8,29,37,[[314,2,2,29,31],[315,1,1,31,32],[316,1,1,32,33],[318,1,1,33,34],[321,2,2,34,36],[325,1,1,36,37]]],[13,3,3,37,40,[[390,1,1,37,38],[396,1,1,38,39],[399,1,1,39,40]]],[17,1,1,40,41,[[462,1,1,40,41]]],[18,1,1,41,42,[[499,1,1,41,42]]],[22,3,3,42,45,[[692,1,1,42,43],[697,1,1,43,44],[716,1,1,44,45]]],[23,6,6,45,51,[[751,1,1,45,46],[766,1,1,46,47],[780,1,1,47,48],[782,2,2,48,50],[795,1,1,50,51]]],[25,5,5,51,56,[[806,1,1,51,52],[808,1,1,52,53],[824,1,1,53,54],[829,1,1,54,55],[844,1,1,55,56]]],[29,1,1,56,57,[[882,1,1,56,57]]],[31,1,1,57,58,[[890,1,1,57,58]]],[32,2,2,58,60,[[894,1,1,58,59],[899,1,1,59,60]]],[33,1,1,60,61,[[902,1,1,60,61]]],[37,2,2,61,63,[[915,1,1,61,62],[921,1,1,62,63]]]],[1103,1105,1107,1554,1604,1694,1945,2144,2462,2761,3151,4295,4867,5174,5707,6031,6091,6301,6303,6744,6807,8280,8495,8566,9208,9209,9212,9227,9406,9567,9572,9601,9644,9680,9781,9782,9894,11687,11841,11923,13503,14214,17947,18012,18407,19134,19482,19865,19901,19904,20275,20550,20596,21042,21174,21596,22413,22551,22600,22683,22718,22944,23041]]],["castest",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14685]]],["down",[10,10,[[1,1,1,0,1,[[56,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[13,1,1,2,3,[[391,1,1,2,3]]],[17,1,1,3,4,[[453,1,1,3,4]]],[18,1,1,4,5,[[579,1,1,4,5]]],[24,1,1,5,6,[[798,1,1,5,6]]],[25,1,1,6,7,[[820,1,1,6,7]]],[26,3,3,7,10,[[857,3,3,7,10]]]],[1697,6075,11716,13283,15531,20333,20893,21968,21972,21973]]],["forth",[3,3,[[18,1,1,0,1,[[624,1,1,0,1]]],[23,1,1,1,2,[[766,1,1,1,2]]],[29,1,1,2,3,[[886,1,1,2,3]]]],[16368,19473,22484]]],["hurl",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4865]]],["off",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13236]]],["out",[11,11,[[9,1,1,0,1,[[286,1,1,0,1]]],[11,2,2,1,3,[[322,1,1,1,2],[329,1,1,2,3]]],[13,1,1,3,4,[[373,1,1,3,4]]],[18,2,2,4,6,[[537,1,1,4,5],[585,1,1,5,6]]],[22,1,1,6,7,[[712,1,1,6,7]]],[23,3,3,7,10,[[753,1,1,7,8],[758,1,1,8,9],[780,1,1,9,10]]],[25,1,1,10,11,[[817,1,1,10,11]]]],[8576,9818,10003,11344,14815,15751,18306,19194,19309,19872,20767]]],["plucked",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13549]]],["threwest",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12522]]],["thrown",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8575]]]]},{"k":"H7994","v":[["cormorant",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3014,5307]]]]},{"k":"H7995","v":[["cast",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17782]]]]},{"k":"H7996","v":[["Shallecheth",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11093]]]]},{"k":"H7997","v":[["*",[16,12,[[7,2,1,0,1,[[233,2,1,0,1]]],[18,1,1,1,2,[[553,1,1,1,2]]],[22,2,2,2,4,[[688,1,1,2,3],[737,1,1,3,4]]],[23,1,1,4,5,[[794,1,1,4,5]]],[25,7,5,5,10,[[827,1,1,5,6],[830,1,1,6,7],[839,3,2,7,9],[840,2,1,9,10]]],[34,2,1,10,11,[[904,2,1,10,11]]],[37,1,1,11,12,[[912,1,1,11,12]]]],[7165,15086,17856,18815,20176,21112,21202,21437,21438,21458,22756,22907]]],["+",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21458]]],["fall",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7165]]],["prey",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18815]]],["purpose",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7165]]],["spoil",[3,3,[[23,1,1,0,1,[[794,1,1,0,1]]],[25,1,1,1,2,[[827,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[20176,21112,22756]]],["spoiled",[4,4,[[18,1,1,0,1,[[553,1,1,0,1]]],[25,1,1,1,2,[[840,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]],[37,1,1,3,4,[[912,1,1,3,4]]]],[15086,21458,22756,22907]]],["take",[5,4,[[22,1,1,0,1,[[688,1,1,0,1]]],[25,4,3,1,4,[[830,1,1,1,2],[839,3,2,2,4]]]],[17856,21202,21437,21438]]]]},{"k":"H7998","v":[["*",[73,64,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[3,2,2,2,4,[[147,2,2,2,4]]],[4,6,4,4,8,[[154,1,1,4,5],[155,1,1,5,6],[165,2,1,6,7],[172,2,1,7,8]]],[5,5,5,8,13,[[193,1,1,8,9],[194,2,2,9,11],[197,1,1,11,12],[208,1,1,12,13]]],[6,6,3,13,16,[[215,4,1,13,14],[218,2,2,14,16]]],[8,10,9,16,25,[[249,2,2,16,18],[250,2,2,18,20],[265,6,5,20,25]]],[9,3,3,25,28,[[269,1,1,25,26],[274,1,1,26,27],[278,1,1,27,28]]],[11,1,1,28,29,[[315,1,1,28,29]]],[12,2,2,29,31,[[357,1,1,29,30],[363,1,1,30,31]]],[13,8,6,31,37,[[380,1,1,31,32],[381,1,1,32,33],[386,2,1,33,34],[390,1,1,34,35],[394,3,2,35,37]]],[16,2,2,37,39,[[428,1,1,37,38],[433,1,1,38,39]]],[18,2,2,39,41,[[545,1,1,39,40],[596,1,1,40,41]]],[19,3,3,41,44,[[628,1,1,41,42],[643,1,1,42,43],[658,1,1,43,44]]],[22,7,7,44,51,[[686,1,1,44,45],[687,1,1,45,46],[688,2,2,46,48],[711,2,2,48,50],[731,1,1,50,51]]],[23,6,6,51,57,[[765,1,1,51,52],[782,1,1,52,53],[783,1,1,53,54],[789,1,1,54,55],[793,1,1,55,56],[794,1,1,56,57]]],[25,5,4,57,61,[[808,1,1,57,58],[830,1,1,58,59],[839,3,2,59,61]]],[26,1,1,61,62,[[860,1,1,61,62]]],[37,2,2,62,64,[[912,1,1,62,63],[924,1,1,63,64]]]],[1500,1929,4675,4676,4973,4982,5288,5441,5997,6004,6029,6121,6434,6653,6743,6744,7538,7540,7579,7581,7994,7997,7998,8000,8004,8103,8221,8316,9599,10928,11104,11488,11501,11612,11700,11772,11779,12760,12828,14912,16060,16413,16859,17295,17811,17832,17852,17856,18283,18302,18723,19449,19897,19941,20045,20159,20176,20598,21202,21437,21438,22060,22908,23069]]],["+",[8,7,[[8,6,5,0,5,[[249,1,1,0,1],[250,1,1,1,2],[265,4,3,2,5]]],[9,1,1,5,6,[[274,1,1,5,6]]],[12,1,1,6,7,[[357,1,1,6,7]]]],[7538,7581,7997,8000,8004,8221,10928]]],["prey",[10,8,[[6,5,3,0,3,[[215,3,1,0,1],[218,2,2,1,3]]],[22,1,1,3,4,[[688,1,1,3,4]]],[23,4,4,4,8,[[765,1,1,4,5],[782,1,1,5,6],[783,1,1,6,7],[789,1,1,7,8]]]],[6653,6743,6744,17852,19449,19897,19941,20045]]],["spoil",[53,48,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[3,2,2,2,4,[[147,2,2,2,4]]],[4,6,4,4,8,[[154,1,1,4,5],[155,1,1,5,6],[165,2,1,6,7],[172,2,1,7,8]]],[5,4,4,8,12,[[194,2,2,8,10],[197,1,1,10,11],[208,1,1,11,12]]],[6,1,1,12,13,[[215,1,1,12,13]]],[8,4,4,13,17,[[249,1,1,13,14],[250,1,1,14,15],[265,2,2,15,17]]],[9,2,2,17,19,[[269,1,1,17,18],[278,1,1,18,19]]],[11,1,1,19,20,[[315,1,1,19,20]]],[13,8,6,20,26,[[380,1,1,20,21],[381,1,1,21,22],[386,2,1,22,23],[390,1,1,23,24],[394,3,2,24,26]]],[16,2,2,26,28,[[428,1,1,26,27],[433,1,1,27,28]]],[18,2,2,28,30,[[545,1,1,28,29],[596,1,1,29,30]]],[19,3,3,30,33,[[628,1,1,30,31],[643,1,1,31,32],[658,1,1,32,33]]],[22,6,6,33,39,[[686,1,1,33,34],[687,1,1,34,35],[688,1,1,35,36],[711,2,2,36,38],[731,1,1,38,39]]],[23,2,2,39,41,[[793,1,1,39,40],[794,1,1,40,41]]],[25,5,4,41,45,[[808,1,1,41,42],[830,1,1,42,43],[839,3,2,43,45]]],[26,1,1,45,46,[[860,1,1,45,46]]],[37,2,2,46,48,[[912,1,1,46,47],[924,1,1,47,48]]]],[1500,1929,4675,4676,4973,4982,5288,5441,6004,6029,6121,6434,6653,7540,7579,7994,7998,8103,8316,9599,11488,11501,11612,11700,11772,11779,12760,12828,14912,16060,16413,16859,17295,17811,17832,17856,18283,18302,18723,20159,20176,20598,21202,21437,21438,22060,22908,23069]]],["spoils",[2,2,[[5,1,1,0,1,[[193,1,1,0,1]]],[12,1,1,1,2,[[363,1,1,1,2]]]],[5997,11104]]]]},{"k":"H7999","v":[["*",[116,107,[[0,1,1,0,1,[[43,1,1,0,1]]],[1,18,14,1,15,[[70,3,2,1,3],[71,15,12,3,15]]],[2,4,4,15,19,[[94,1,1,15,16],[95,1,1,16,17],[113,2,2,17,19]]],[4,5,4,19,23,[[159,2,1,19,20],[172,1,1,20,21],[175,1,1,21,22],[184,1,1,22,23]]],[5,3,3,23,26,[[196,2,2,23,25],[197,1,1,25,26]]],[6,1,1,26,27,[[211,1,1,26,27]]],[7,1,1,27,28,[[233,1,1,27,28]]],[8,1,1,28,29,[[259,1,1,28,29]]],[9,5,5,29,34,[[269,1,1,29,30],[276,1,1,30,31],[278,1,1,31,32],[281,1,1,32,33],[286,1,1,33,34]]],[10,3,3,34,37,[[297,1,1,34,35],[299,1,1,35,36],[312,1,1,36,37]]],[11,2,2,37,39,[[316,1,1,37,38],[321,1,1,38,39]]],[12,1,1,39,40,[[356,1,1,39,40]]],[13,1,1,40,41,[[371,1,1,40,41]]],[15,1,1,41,42,[[418,1,1,41,42]]],[17,11,11,42,53,[[440,1,1,42,43],[443,1,1,43,44],[444,1,1,44,45],[456,2,2,45,47],[457,2,2,47,49],[458,1,1,49,50],[469,2,2,50,52],[476,1,1,52,53]]],[18,17,17,53,70,[[484,1,1,53,54],[499,1,1,54,55],[508,1,1,55,56],[512,1,1,56,57],[514,1,1,57,58],[515,1,1,58,59],[518,1,1,59,60],[527,1,1,60,61],[533,1,1,61,62],[538,1,1,62,63],[539,1,1,63,64],[542,1,1,64,65],[543,1,1,65,66],[553,1,1,66,67],[593,2,2,67,69],[614,1,1,69,70]]],[19,10,10,70,80,[[633,1,1,70,71],[634,1,1,71,72],[638,1,1,72,73],[640,2,2,73,75],[643,1,1,75,76],[646,1,1,76,77],[647,1,1,77,78],[649,1,1,78,79],[652,1,1,79,80]]],[20,3,2,80,82,[[663,3,2,80,82]]],[22,13,11,82,93,[[697,1,1,82,83],[716,2,2,83,85],[720,1,1,85,86],[722,2,2,86,88],[735,1,1,88,89],[737,2,1,89,90],[738,1,1,90,91],[743,2,1,91,92],[744,1,1,92,93]]],[23,9,8,93,101,[[760,1,1,93,94],[762,1,1,94,95],[769,1,1,95,96],[776,1,1,96,97],[794,1,1,97,98],[795,4,3,98,101]]],[25,1,1,101,102,[[834,1,1,101,102]]],[27,1,1,102,103,[[875,1,1,102,103]]],[28,2,2,103,105,[[877,1,1,103,104],[878,1,1,104,105]]],[31,1,1,105,106,[[890,1,1,105,106]]],[33,1,1,106,107,[[900,1,1,106,107]]]],[1328,2111,2113,2114,2116,2117,2118,2119,2120,2122,2124,2125,2126,2127,2128,2846,2854,3464,3467,5121,5439,5521,5799,6065,6068,6126,6516,7161,7858,8120,8259,8292,8396,8573,8985,9076,9524,9610,9782,10926,11269,12416,12974,13035,13055,13374,13386,13410,13416,13433,13694,13716,13899,13999,14229,14354,14422,14471,14510,14552,14682,14767,14827,14839,14861,14886,15092,15862,15866,16230,16571,16589,16719,16760,16768,16847,16942,16976,17042,17135,17401,17402,18025,18402,18403,18499,18559,18561,18783,18818,18841,18903,18928,19354,19404,19548,19749,20195,20218,20236,20268,21295,22284,22336,22347,22557,22699]]],["+",[18,13,[[1,8,4,0,4,[[70,2,1,0,1],[71,6,3,1,4]]],[4,1,1,4,5,[[172,1,1,4,5]]],[9,1,1,5,6,[[281,1,1,5,6]]],[10,1,1,6,7,[[299,1,1,6,7]]],[11,1,1,7,8,[[316,1,1,7,8]]],[17,1,1,8,9,[[456,1,1,8,9]]],[18,1,1,9,10,[[614,1,1,9,10]]],[20,1,1,10,11,[[663,1,1,10,11]]],[23,2,1,11,12,[[795,2,1,11,12]]],[28,1,1,12,13,[[878,1,1,12,13]]]],[2113,2116,2119,2127,5439,8396,9076,9610,13374,16230,17401,20268,22347]]],["again",[2,2,[[19,1,1,0,1,[[646,1,1,0,1]]],[25,1,1,1,2,[[834,1,1,1,2]]]],[16942,21295]]],["amends",[1,1,[[2,1,1,0,1,[[94,1,1,0,1]]]],[2846]]],["end",[2,2,[[22,2,2,0,2,[[716,2,2,0,2]]]],[18402,18403]]],["ended",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[22,1,1,1,2,[[738,1,1,1,2]]]],[8985,18841]]],["finished",[2,2,[[13,1,1,0,1,[[371,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]]],[11269,12416]]],["good",[5,5,[[1,4,4,0,4,[[70,1,1,0,1],[71,3,3,1,4]]],[2,1,1,4,5,[[113,1,1,4,5]]]],[2111,2124,2126,2128,3464]]],["pay",[14,14,[[1,2,2,0,2,[[71,2,2,0,2]]],[4,1,1,2,3,[[175,1,1,2,3]]],[17,1,1,3,4,[[457,1,1,3,4]]],[18,6,6,4,10,[[499,1,1,4,5],[527,1,1,5,6],[543,1,1,6,7],[553,1,1,7,8],[593,2,2,8,10]]],[19,1,1,10,11,[[649,1,1,10,11]]],[20,2,2,11,13,[[663,2,2,11,13]]],[31,1,1,13,14,[[890,1,1,13,14]]]],[2120,2122,5521,13416,14229,14682,14886,15092,15862,15866,17042,17401,17402,22557]]],["payed",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16589]]],["payeth",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14471]]],["peace",[10,10,[[5,3,3,0,3,[[196,2,2,0,2],[197,1,1,2,3]]],[9,1,1,3,4,[[276,1,1,3,4]]],[10,1,1,4,5,[[312,1,1,4,5]]],[12,1,1,5,6,[[356,1,1,5,6]]],[17,2,2,6,8,[[440,1,1,6,7],[457,1,1,7,8]]],[18,1,1,8,9,[[484,1,1,8,9]]],[19,1,1,9,10,[[643,1,1,9,10]]]],[6065,6068,6126,8259,9524,10926,12974,13410,13999,16847]]],["peaceable",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8573]]],["perfect",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18499]]],["perform",[4,4,[[18,1,1,0,1,[[538,1,1,0,1]]],[22,2,2,1,3,[[697,1,1,1,2],[722,1,1,2,3]]],[33,1,1,3,4,[[900,1,1,3,4]]]],[14827,18025,18561,22699]]],["performed",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14861]]],["performeth",[2,2,[[17,1,1,0,1,[[458,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[13433,18559]]],["prospered",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13055]]],["prosperous",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13035]]],["recompense",[8,7,[[7,1,1,0,1,[[233,1,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[19,1,1,2,3,[[647,1,1,2,3]]],[22,2,1,3,4,[[743,2,1,3,4]]],[23,3,3,4,7,[[760,1,1,4,5],[769,1,1,5,6],[794,1,1,6,7]]]],[7161,13716,16976,18903,19354,19548,20195]]],["recompensed",[2,2,[[19,1,1,0,1,[[638,1,1,0,1]]],[23,1,1,1,2,[[762,1,1,1,2]]]],[16719,19404]]],["recompensest",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19749]]],["render",[6,6,[[17,1,1,0,1,[[469,1,1,0,1]]],[18,2,2,1,3,[[515,1,1,1,2],[533,1,1,2,3]]],[23,2,2,3,5,[[795,2,2,3,5]]],[27,1,1,5,6,[[875,1,1,5,6]]]],[13694,14510,14767,20218,20236,22284]]],["renderest",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14839]]],["rendereth",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18928]]],["repay",[5,4,[[4,1,1,0,1,[[159,1,1,0,1]]],[17,2,2,1,3,[[456,1,1,1,2],[476,1,1,2,3]]],[22,2,1,3,4,[[737,2,1,3,4]]]],[5121,13386,13899,18818]]],["repayed",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16768]]],["repayeth",[1,1,[[4,1,1,0,1,[[159,1,1,0,1]]]],[5121]]],["requite",[2,2,[[11,1,1,0,1,[[321,1,1,0,1]]],[18,1,1,1,2,[[518,1,1,1,2]]]],[9782,14552]]],["requited",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6516]]],["restitution",[2,2,[[1,2,2,0,2,[[71,2,2,0,2]]]],[2118,2125]]],["restore",[8,8,[[1,2,2,0,2,[[71,2,2,0,2]]],[2,2,2,2,4,[[95,1,1,2,3],[113,1,1,3,4]]],[9,1,1,4,5,[[278,1,1,4,5]]],[19,1,1,5,6,[[633,1,1,5,6]]],[22,1,1,6,7,[[735,1,1,6,7]]],[28,1,1,7,8,[[877,1,1,7,8]]]],[2114,2117,2854,3467,8292,16571,18783,22336]]],["reward",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]],[9,1,1,2,3,[[269,1,1,2,3]]],[19,1,1,3,4,[[652,1,1,3,4]]]],[5799,7858,8120,17135]]],["rewarded",[3,3,[[0,1,1,0,1,[[43,1,1,0,1]]],[18,1,1,1,2,[[512,1,1,1,2]]],[19,1,1,2,3,[[640,1,1,2,3]]]],[1328,14422,16760]]],["rewardeth",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14354]]]]},{"k":"H8000","v":[["*",[3,3,[[14,2,2,0,2,[[407,1,1,0,1],[409,1,1,1,2]]],[26,1,1,2,3,[[854,1,1,2,3]]]],[12150,12192,21900]]],["deliver",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12192]]],["finished",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[854,1,1,1,2]]]],[12150,21900]]]]},{"k":"H8001","v":[["*",[4,4,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,2,2,2,4,[[853,1,1,2,3],[855,1,1,3,4]]]],[12127,12141,21838,21930]]],["Peace",[3,3,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,2,2,1,3,[[853,1,1,1,2],[855,1,1,2,3]]]],[12127,21838,21930]]],["peace",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12141]]]]},{"k":"H8002","v":[["*",[87,84,[[1,4,4,0,4,[[69,1,1,0,1],[73,1,1,1,2],[78,1,1,2,3],[81,1,1,3,4]]],[2,30,29,4,33,[[92,4,4,4,8],[93,4,4,8,12],[95,1,1,12,13],[96,13,12,13,25],[98,3,3,25,28],[99,1,1,28,29],[106,1,1,29,30],[108,1,1,30,31],[111,1,1,31,32],[112,1,1,32,33]]],[3,19,19,33,52,[[122,3,3,33,36],[123,13,13,36,49],[126,1,1,49,50],[131,1,1,50,51],[145,1,1,51,52]]],[4,1,1,52,53,[[179,1,1,52,53]]],[5,3,3,53,56,[[194,1,1,53,54],[208,2,2,54,56]]],[6,2,2,56,58,[[230,1,1,56,57],[231,1,1,57,58]]],[8,3,3,58,61,[[245,1,1,58,59],[246,1,1,59,60],[248,1,1,60,61]]],[9,3,3,61,64,[[272,2,2,61,63],[290,1,1,63,64]]],[10,5,4,64,68,[[293,1,1,64,65],[298,3,2,65,67],[299,1,1,67,68]]],[11,1,1,68,69,[[328,1,1,68,69]]],[12,3,3,69,72,[[353,2,2,69,71],[358,1,1,71,72]]],[13,5,5,72,77,[[373,1,1,72,73],[395,1,1,73,74],[396,1,1,74,75],[397,1,1,75,76],[399,1,1,76,77]]],[19,1,1,77,78,[[634,1,1,77,78]]],[25,6,5,78,83,[[844,1,1,78,79],[846,2,2,79,81],[847,3,2,81,83]]],[29,1,1,83,84,[[883,1,1,83,84]]]],[2075,2182,2364,2444,2779,2781,2784,2787,2805,2821,2826,2830,2861,2890,2892,2893,2894,2897,2899,2900,2908,2911,2912,2913,2916,2957,2971,2975,2991,3240,3286,3390,3421,3837,3840,3841,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3938,3998,4161,4647,5592,6033,6449,6453,7080,7106,7426,7460,7494,8174,8175,8717,8831,9048,9049,9076,9976,10821,10822,10960,11331,11826,11849,11856,11924,16589,21599,21645,21647,21657,21667,22445]]],["+",[2,2,[[1,1,1,0,1,[[69,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]]],[2075,16589]]],["offering",[4,4,[[2,4,4,0,4,[[92,4,4,0,4]]]],[2779,2781,2784,2787]]],["offerings",[76,73,[[1,2,2,0,2,[[78,1,1,0,1],[81,1,1,1,2]]],[2,25,24,2,26,[[93,4,4,2,6],[95,1,1,6,7],[96,13,12,7,19],[98,3,3,19,22],[99,1,1,22,23],[108,1,1,23,24],[111,1,1,24,25],[112,1,1,25,26]]],[3,19,19,26,45,[[122,3,3,26,29],[123,13,13,29,42],[126,1,1,42,43],[131,1,1,43,44],[145,1,1,44,45]]],[4,1,1,45,46,[[179,1,1,45,46]]],[5,2,2,46,48,[[194,1,1,46,47],[208,1,1,47,48]]],[6,2,2,48,50,[[230,1,1,48,49],[231,1,1,49,50]]],[8,3,3,50,53,[[245,1,1,50,51],[246,1,1,51,52],[248,1,1,52,53]]],[9,3,3,53,56,[[272,2,2,53,55],[290,1,1,55,56]]],[10,5,4,56,60,[[293,1,1,56,57],[298,3,2,57,59],[299,1,1,59,60]]],[11,1,1,60,61,[[328,1,1,60,61]]],[12,3,3,61,64,[[353,2,2,61,63],[358,1,1,63,64]]],[13,3,3,64,67,[[373,1,1,64,65],[395,1,1,65,66],[397,1,1,66,67]]],[25,6,5,67,72,[[844,1,1,67,68],[846,2,2,68,70],[847,3,2,70,72]]],[29,1,1,72,73,[[883,1,1,72,73]]]],[2364,2444,2805,2821,2826,2830,2861,2890,2892,2893,2894,2897,2899,2900,2908,2911,2912,2913,2916,2957,2971,2975,2991,3286,3390,3421,3837,3840,3841,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3938,3998,4161,4647,5592,6033,6453,7080,7106,7426,7460,7494,8174,8175,8717,8831,9048,9049,9076,9976,10821,10822,10960,11331,11826,11856,21599,21645,21647,21657,21667,22445]]],["peace",[5,5,[[1,1,1,0,1,[[73,1,1,0,1]]],[2,1,1,1,2,[[106,1,1,1,2]]],[5,1,1,2,3,[[208,1,1,2,3]]],[13,2,2,3,5,[[396,1,1,3,4],[399,1,1,4,5]]]],[2182,3240,6449,11849,11924]]]]},{"k":"H8003","v":[["*",[28,27,[[0,3,3,0,3,[[14,1,1,0,1],[32,1,1,1,2],[33,1,1,2,3]]],[4,3,2,3,5,[[177,2,1,3,4],[179,1,1,4,5]]],[5,1,1,5,6,[[194,1,1,5,6]]],[7,1,1,6,7,[[233,1,1,6,7]]],[10,5,5,7,12,[[296,1,1,7,8],[298,1,1,8,9],[301,1,1,9,10],[305,2,2,10,12]]],[11,1,1,12,13,[[332,1,1,12,13]]],[12,4,4,13,17,[[349,1,1,13,14],[365,1,1,14,15],[366,2,2,15,17]]],[13,5,5,17,22,[[374,1,1,17,18],[381,1,1,18,19],[382,1,1,19,20],[385,1,1,20,21],[391,1,1,21,22]]],[19,1,1,22,23,[[638,1,1,22,23]]],[22,1,1,23,24,[[716,1,1,23,24]]],[29,2,2,24,26,[[879,2,2,24,26]]],[33,1,1,26,27,[[900,1,1,26,27]]]],[376,978,1001,5562,5591,6033,7161,8903,9046,9112,9252,9263,10101,10758,11152,11173,11183,11362,11507,11518,11585,11706,16689,18393,22370,22373,22696]]],["Shalem",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[978]]],["full",[2,2,[[0,1,1,0,1,[[14,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]]],[376,7161]]],["just",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16689]]],["peaceable",[1,1,[[0,1,1,0,1,[[33,1,1,0,1]]]],[1001]]],["perfect",[16,15,[[4,2,1,0,1,[[177,2,1,0,1]]],[10,4,4,1,5,[[298,1,1,1,2],[301,1,1,2,3],[305,2,2,3,5]]],[11,1,1,5,6,[[332,1,1,5,6]]],[12,4,4,6,10,[[349,1,1,6,7],[365,1,1,7,8],[366,2,2,8,10]]],[13,4,4,10,14,[[381,1,1,10,11],[382,1,1,11,12],[385,1,1,12,13],[391,1,1,13,14]]],[22,1,1,14,15,[[716,1,1,14,15]]]],[5562,9046,9112,9252,9263,10101,10758,11152,11173,11183,11507,11518,11585,11706,18393]]],["perfected",[1,1,[[13,1,1,0,1,[[374,1,1,0,1]]]],[11362]]],["quiet",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22696]]],["ready",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8903]]],["whole",[4,4,[[4,1,1,0,1,[[179,1,1,0,1]]],[5,1,1,1,2,[[194,1,1,1,2]]],[29,2,2,2,4,[[879,2,2,2,4]]]],[5591,6033,22370,22373]]]]},{"k":"H8004","v":[["Salem",[2,2,[[0,1,1,0,1,[[13,1,1,0,1]]],[18,1,1,1,2,[[553,1,1,1,2]]]],[354,15083]]]]},{"k":"H8005","v":[["recompence",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5793]]]]},{"k":"H8006","v":[["Shillem",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1410,4538]]]]},{"k":"H8007","v":[["Salma",[4,3,[[12,4,3,0,3,[[339,4,3,0,3]]]],[10317,10357,10360]]]]},{"k":"H8008","v":[["*",[16,16,[[1,2,2,0,2,[[71,2,2,0,2]]],[4,2,2,2,4,[[176,1,1,2,3],[181,1,1,3,4]]],[5,3,3,4,7,[[195,2,2,4,6],[208,1,1,6,7]]],[10,3,3,7,10,[[300,1,1,7,8],[301,2,2,8,10]]],[13,1,1,10,11,[[375,1,1,10,11]]],[15,1,1,11,12,[[421,1,1,11,12]]],[17,1,1,12,13,[[444,1,1,12,13]]],[18,1,1,13,14,[[581,1,1,13,14]]],[21,1,1,14,15,[[674,1,1,14,15]]],[32,1,1,15,16,[[894,1,1,15,16]]]],[2122,2139,5538,5684,6042,6050,6434,9104,9137,9138,11388,12532,13082,15573,17593,22603]]],["+",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2139]]],["clothes",[3,3,[[4,1,1,0,1,[[181,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[17,1,1,2,3,[[444,1,1,2,3]]]],[5684,12532,13082]]],["garment",[4,4,[[10,2,2,0,2,[[301,2,2,0,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[32,1,1,3,4,[[894,1,1,3,4]]]],[9137,9138,15573,22603]]],["garments",[4,4,[[5,2,2,0,2,[[195,2,2,0,2]]],[10,1,1,2,3,[[300,1,1,2,3]]],[21,1,1,3,4,[[674,1,1,3,4]]]],[6042,6050,9104,17593]]],["raiment",[4,4,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,1,1,1,2,[[176,1,1,1,2]]],[5,1,1,2,3,[[208,1,1,2,3]]],[13,1,1,3,4,[[375,1,1,3,4]]]],[2122,5538,6434,11388]]]]},{"k":"H8009","v":[["Salmon",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7210]]]]},{"k":"H8010","v":[["*",[291,261,[[9,2,2,0,2,[[271,1,1,0,1],[278,1,1,1,2]]],[10,158,139,2,141,[[291,26,21,2,23],[292,14,13,23,36],[293,7,7,36,43],[294,14,12,43,55],[295,13,11,55,66],[296,5,5,66,71],[297,10,9,71,80],[298,9,8,80,88],[299,19,16,88,104],[300,15,13,104,117],[301,20,18,117,135],[302,4,4,135,139],[304,2,2,139,141]]],[11,4,4,141,145,[[333,1,1,141,142],[335,1,1,142,143],[336,1,1,143,144],[337,1,1,144,145]]],[12,24,24,145,169,[[340,2,2,145,147],[343,2,2,147,149],[351,1,1,149,150],[355,1,1,150,151],[359,5,5,151,156],[360,1,1,156,157],[365,5,5,157,162],[366,7,7,162,169]]],[13,85,74,169,243,[[367,11,11,169,180],[368,5,5,180,185],[369,2,2,185,187],[370,4,4,187,191],[371,4,3,191,194],[372,2,2,194,196],[373,9,7,196,203],[374,15,12,203,215],[375,21,17,215,232],[376,2,2,232,234],[377,3,2,234,236],[378,1,1,236,237],[379,2,2,237,239],[396,1,1,239,240],[399,1,1,240,241],[401,2,2,241,243]]],[14,2,2,243,245,[[404,2,2,243,245]]],[15,5,5,245,250,[[419,2,2,245,247],[423,1,1,247,248],[424,1,1,248,249],[425,1,1,249,250]]],[19,3,3,250,253,[[628,1,1,250,251],[637,1,1,251,252],[652,1,1,252,253]]],[21,7,7,253,260,[[671,2,2,253,255],[673,3,3,255,258],[678,2,2,258,260]]],[23,1,1,260,261,[[796,1,1,260,261]]]],[8146,8310,8727,8728,8729,8730,8734,8736,8738,8743,8747,8750,8751,8754,8755,8756,8760,8763,8764,8767,8768,8769,8770,8771,8782,8783,8787,8789,8792,8793,8795,8797,8799,8811,8815,8816,8817,8819,8820,8821,8822,8826,8831,8845,8851,8855,8859,8865,8866,8869,8870,8871,8873,8874,8878,8879,8880,8885,8886,8888,8889,8890,8891,8893,8894,8896,8897,8898,8907,8910,8917,8935,8942,8947,8948,8974,8979,8981,8982,8985,8986,8987,8990,8997,9007,9039,9048,9050,9052,9053,9061,9062,9063,9066,9067,9068,9070,9072,9073,9074,9076,9077,9078,9079,9080,9081,9082,9083,9089,9092,9093,9095,9100,9102,9103,9105,9107,9109,9110,9112,9113,9114,9115,9117,9119,9122,9133,9134,9135,9136,9139,9148,9149,9150,9151,9153,9157,9172,9174,9239,9244,10126,10178,10215,10238,10366,10371,10464,10486,10778,10898,10969,10970,10971,10973,10981,10984,11148,11149,11152,11154,11163,11165,11183,11186,11187,11188,11189,11192,11195,11196,11197,11199,11200,11201,11202,11205,11207,11208,11210,11212,11213,11214,11222,11228,11230,11232,11257,11262,11264,11265,11269,11270,11274,11283,11295,11325,11329,11331,11332,11334,11335,11336,11347,11348,11349,11352,11354,11355,11356,11357,11358,11362,11363,11364,11365,11366,11367,11373,11374,11376,11377,11378,11379,11384,11386,11387,11389,11392,11393,11394,11395,11397,11401,11417,11431,11446,11459,11460,11853,11915,11969,11970,12082,12085,12477,12480,12591,12669,12697,16401,16657,17114,17538,17542,17578,17580,17582,17651,17652,20296]]],["+",[4,4,[[10,2,2,0,2,[[291,1,1,0,1],[301,1,1,1,2]]],[13,1,1,2,3,[[375,1,1,2,3]]],[21,1,1,3,4,[[673,1,1,3,4]]]],[8760,9122,11366,17578]]],["Solomon",[266,241,[[9,2,2,0,2,[[271,1,1,0,1],[278,1,1,1,2]]],[10,144,128,2,130,[[291,25,20,2,22],[292,14,13,22,35],[293,7,7,35,42],[294,11,10,42,52],[295,11,9,52,61],[296,4,4,61,65],[297,10,9,65,74],[298,9,8,74,82],[299,16,14,82,96],[300,13,12,96,108],[301,18,16,108,124],[302,4,4,124,128],[304,2,2,128,130]]],[11,4,4,130,134,[[333,1,1,130,131],[335,1,1,131,132],[336,1,1,132,133],[337,1,1,133,134]]],[12,23,23,134,157,[[340,1,1,134,135],[343,2,2,135,137],[351,1,1,137,138],[355,1,1,138,139],[359,5,5,139,144],[360,1,1,144,145],[365,5,5,145,150],[366,7,7,150,157]]],[13,82,73,157,230,[[367,11,11,157,168],[368,5,5,168,173],[369,2,2,173,175],[370,4,4,175,179],[371,4,3,179,182],[372,2,2,182,184],[373,8,7,184,191],[374,14,11,191,202],[375,20,17,202,219],[376,2,2,219,221],[377,3,2,221,223],[378,1,1,223,224],[379,2,2,224,226],[396,1,1,226,227],[399,1,1,227,228],[401,2,2,228,230]]],[15,2,2,230,232,[[424,1,1,230,231],[425,1,1,231,232]]],[19,3,3,232,235,[[628,1,1,232,233],[637,1,1,233,234],[652,1,1,234,235]]],[21,5,5,235,240,[[671,1,1,235,236],[673,2,2,236,238],[678,2,2,238,240]]],[23,1,1,240,241,[[796,1,1,240,241]]]],[8146,8310,8727,8728,8729,8730,8734,8736,8738,8743,8747,8750,8751,8754,8755,8756,8763,8764,8767,8768,8769,8770,8771,8782,8783,8787,8789,8792,8793,8795,8797,8799,8811,8815,8816,8817,8819,8820,8821,8822,8826,8831,8845,8851,8855,8859,8865,8869,8870,8871,8873,8878,8879,8880,8885,8886,8888,8889,8890,8891,8893,8898,8907,8910,8917,8935,8942,8947,8948,8974,8979,8981,8982,8985,8986,8987,8990,8997,9007,9039,9048,9050,9052,9053,9061,9062,9063,9066,9068,9070,9072,9073,9076,9077,9078,9079,9080,9081,9082,9089,9092,9093,9095,9100,9102,9103,9105,9107,9109,9110,9112,9113,9114,9115,9117,9119,9133,9135,9136,9139,9148,9149,9150,9151,9153,9157,9172,9174,9239,9244,10126,10178,10215,10238,10366,10464,10486,10778,10898,10969,10970,10971,10973,10981,10984,11148,11149,11152,11154,11163,11165,11183,11186,11187,11188,11189,11192,11195,11196,11197,11199,11200,11201,11202,11205,11207,11208,11210,11212,11213,11214,11222,11228,11230,11232,11257,11262,11264,11265,11269,11270,11274,11283,11295,11325,11329,11331,11332,11334,11335,11336,11347,11348,11349,11352,11354,11355,11357,11358,11362,11363,11364,11365,11366,11367,11373,11374,11376,11377,11378,11379,11384,11386,11387,11389,11392,11393,11394,11395,11397,11401,11417,11431,11446,11459,11460,11853,11915,11969,11970,12669,12697,16401,16657,17114,17542,17580,17582,17651,17652,20296]]],["Solomon's",[21,21,[[10,12,12,0,12,[[294,3,3,0,3],[295,2,2,3,5],[296,1,1,5,6],[299,3,3,6,9],[300,2,2,9,11],[301,1,1,11,12]]],[12,1,1,12,13,[[340,1,1,12,13]]],[13,2,2,13,15,[[373,1,1,13,14],[374,1,1,14,15]]],[14,2,2,15,17,[[404,2,2,15,17]]],[15,3,3,17,20,[[419,2,2,17,19],[423,1,1,19,20]]],[21,1,1,20,21,[[671,1,1,20,21]]]],[8866,8871,8874,8894,8896,8897,9052,9067,9074,9083,9100,9134,10371,11335,11356,12082,12085,12477,12480,12591,17538]]]]},{"k":"H8011","v":[["reward",[1,1,[[18,1,1,0,1,[[568,1,1,0,1]]]],[15403]]]]},{"k":"H8012","v":[["Salmon",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7211]]]]},{"k":"H8013","v":[["*",[6,5,[[12,6,5,0,5,[[360,2,2,0,2],[361,2,1,2,3],[363,2,2,3,5]]]],[10992,11001,11037,11102,11103]]],["Shelomith",[4,4,[[12,4,4,0,4,[[360,2,2,0,2],[363,2,2,2,4]]]],[10992,11001,11102,11103]]],["Shelomoth",[2,1,[[12,2,1,0,1,[[361,2,1,0,1]]]],[11037]]]]},{"k":"H8014","v":[["Shalmai",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12468]]]]},{"k":"H8015","v":[["Shelomi",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4843]]]]},{"k":"H8016","v":[["Shillemites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4538]]]]},{"k":"H8017","v":[["Shelumiel",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3610,3670,3886,3891,4007]]]]},{"k":"H8018","v":[["Shelemiah",[10,10,[[12,1,1,0,1,[[363,1,1,0,1]]],[14,2,2,1,3,[[412,2,2,1,3]]],[15,2,2,3,5,[[415,1,1,3,4],[425,1,1,4,5]]],[23,5,5,5,10,[[780,2,2,5,7],[781,2,2,7,9],[782,1,1,9,10]]]],[11091,12291,12293,12357,12684,19856,19868,19877,19887,19896]]]]},{"k":"H8019","v":[["Shelomith",[5,5,[[2,1,1,0,1,[[113,1,1,0,1]]],[12,2,2,1,3,[[340,1,1,1,2],[363,1,1,2,3]]],[13,1,1,3,4,[[377,1,1,3,4]]],[14,1,1,4,5,[[410,1,1,4,5]]]],[3457,10380,11105,11434,12211]]]]},{"k":"H8020","v":[["Shalman",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22239]]]]},{"k":"H8021","v":[["rewards",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17677]]]]},{"k":"H8022","v":[["Shalmaneser",[2,2,[[11,2,2,0,2,[[329,1,1,0,1],[330,1,1,1,2]]]],[9986,10033]]]]},{"k":"H8023","v":[["Shiloni",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12593]]]]},{"k":"H8024","v":[["Shelanites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4509]]]]},{"k":"H8025","v":[["*",[25,24,[[3,2,2,0,2,[[138,2,2,0,2]]],[5,1,1,2,3,[[191,1,1,2,3]]],[6,10,10,3,13,[[213,1,1,3,4],[218,2,2,4,6],[219,1,1,6,7],[230,6,6,7,13]]],[7,2,2,13,15,[[235,2,2,13,15]]],[8,2,2,15,17,[[252,1,1,15,16],[266,1,1,16,17]]],[9,1,1,17,18,[[290,1,1,17,18]]],[11,1,1,18,19,[[315,1,1,18,19]]],[12,4,3,19,22,[[347,1,1,19,20],[358,3,2,20,22]]],[17,1,1,22,23,[[455,1,1,22,23]]],[18,1,1,23,24,[[606,1,1,23,24]]]],[4398,4406,5947,6590,6729,6739,6808,7056,7069,7071,7079,7089,7100,7197,7198,7669,8013,8701,9602,10663,10939,10950,13351,16138]]],["Draw",[3,3,[[6,1,1,0,1,[[219,1,1,0,1]]],[8,1,1,1,2,[[266,1,1,1,2]]],[12,1,1,2,3,[[347,1,1,2,3]]]],[6808,8013,10663]]],["draw",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6590]]],["drawn",[5,5,[[3,2,2,0,2,[[138,2,2,0,2]]],[5,1,1,2,3,[[191,1,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[17,1,1,4,5,[[455,1,1,4,5]]]],[4398,4406,5947,10950,13351]]],["drew",[13,12,[[6,8,8,0,8,[[218,2,2,0,2],[230,6,6,2,8]]],[8,1,1,8,9,[[252,1,1,8,9]]],[9,1,1,9,10,[[290,1,1,9,10]]],[11,1,1,10,11,[[315,1,1,10,11]]],[12,2,1,11,12,[[358,2,1,11,12]]]],[6729,6739,7056,7069,7071,7079,7089,7100,7669,8701,9602,10939]]],["off",[2,2,[[7,2,2,0,2,[[235,2,2,0,2]]]],[7197,7198]]],["up",[1,1,[[18,1,1,0,1,[[606,1,1,0,1]]]],[16138]]]]},{"k":"H8026","v":[["Sheleph",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[260,10272]]]]},{"k":"H8027","v":[["*",[9,6,[[0,3,1,0,1,[[14,3,1,0,1]]],[4,1,1,1,2,[[171,1,1,1,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[10,2,1,3,4,[[308,2,1,3,4]]],[20,1,1,4,5,[[662,1,1,4,5]]],[25,1,1,5,6,[[843,1,1,5,6]]]],[369,5409,7749,9375,17393,21558]]],["+",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5409]]],["days",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7749]]],["old",[3,1,[[0,3,1,0,1,[[14,3,1,0,1]]]],[369]]],["three",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21558]]],["threefold",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17393]]],["time",[2,1,[[10,2,1,0,1,[[308,2,1,0,1]]]],[9375]]]]},{"k":"H8028","v":[["Shelesh",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10570]]]]},{"k":"H8029","v":[["third",[5,5,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,2,2,1,3,[[69,1,1,1,2],[83,1,1,2,3]]],[3,1,1,3,4,[[130,1,1,3,4]]],[4,1,1,4,5,[[157,1,1,4,5]]]],[1529,2056,2503,4126,5062]]]]},{"k":"H8030","v":[["Shilshah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10572]]]]},{"k":"H8031","v":[["Shalisha",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7395]]]]},{"k":"H8032","v":[["*",[24,24,[[0,2,2,0,2,[[30,2,2,0,2]]],[1,6,6,2,8,[[53,1,1,2,3],[54,3,3,3,6],[70,2,2,6,8]]],[4,3,3,8,11,[[156,1,1,8,9],[171,2,2,9,11]]],[5,3,3,11,14,[[189,1,1,11,12],[190,1,1,12,13],[206,1,1,13,14]]],[7,1,1,14,15,[[233,1,1,14,15]]],[8,5,5,15,20,[[239,1,1,15,16],[245,1,1,16,17],[249,1,1,17,18],[254,1,1,18,19],[256,1,1,19,20]]],[9,2,2,20,22,[[269,1,1,20,21],[271,1,1,21,22]]],[11,1,1,22,23,[[325,1,1,22,23]]],[12,1,1,23,24,[[348,1,1,23,24]]]],[875,878,1611,1639,1640,1646,2106,2113,5046,5410,5412,5897,5928,6377,7160,7304,7429,7529,7713,7777,8098,8134,9876,10675]]],["+",[19,19,[[0,2,2,0,2,[[30,2,2,0,2]]],[1,6,6,2,8,[[53,1,1,2,3],[54,3,3,3,6],[70,2,2,6,8]]],[4,1,1,8,9,[[156,1,1,8,9]]],[5,2,2,9,11,[[189,1,1,9,10],[206,1,1,10,11]]],[7,1,1,11,12,[[233,1,1,11,12]]],[8,3,3,12,15,[[239,1,1,12,13],[245,1,1,13,14],[254,1,1,14,15]]],[9,2,2,15,17,[[269,1,1,15,16],[271,1,1,16,17]]],[11,1,1,17,18,[[325,1,1,17,18]]],[12,1,1,18,19,[[348,1,1,18,19]]]],[875,878,1611,1639,1640,1646,2106,2113,5046,5897,6377,7160,7304,7429,7713,8098,8134,9876,10675]]],["before",[1,1,[[5,1,1,0,1,[[190,1,1,0,1]]]],[5928]]],["three",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7777]]],["time",[3,3,[[4,2,2,0,2,[[171,2,2,0,2]]],[8,1,1,2,3,[[249,1,1,2,3]]]],[5410,5412,7529]]]]},{"k":"H8033","v":[["*",[823,724,[[0,100,85,0,85,[[1,4,4,0,4],[2,1,1,4,5],[9,1,1,5,6],[10,6,5,6,11],[11,4,3,11,14],[12,5,4,14,18],[13,1,1,18,19],[17,8,7,19,26],[18,5,3,26,29],[19,2,2,29,31],[20,3,3,31,34],[21,2,2,34,36],[22,1,1,36,37],[23,4,4,37,41],[24,1,1,41,42],[25,9,6,42,48],[26,2,2,48,50],[27,3,3,50,53],[28,2,2,53,55],[29,1,1,55,56],[30,3,2,56,58],[31,2,2,58,60],[32,2,2,60,62],[34,6,4,62,66],[37,1,1,66,67],[38,4,4,67,71],[39,1,1,71,72],[40,1,1,72,73],[41,3,2,73,75],[42,2,2,75,77],[43,1,1,77,78],[44,1,1,78,79],[45,1,1,79,80],[47,1,1,80,81],[48,4,2,81,83],[49,2,2,83,85]]],[1,31,28,85,113,[[57,1,1,85,86],[58,1,1,86,87],[59,1,1,87,88],[61,1,1,88,89],[64,4,2,89,91],[65,1,1,91,92],[66,2,2,92,94],[67,1,1,94,95],[68,1,1,95,96],[69,1,1,96,97],[70,2,2,97,99],[73,1,1,99,100],[74,1,1,100,101],[75,1,1,101,102],[78,3,2,102,104],[79,3,3,104,107],[83,3,3,107,110],[89,3,3,110,113]]],[2,5,5,113,118,[[91,1,1,113,114],[97,1,1,114,115],[105,1,1,115,116],[107,1,1,116,117],[109,1,1,117,118]]],[3,38,36,118,154,[[125,1,1,118,119],[127,3,3,119,122],[129,5,5,122,127],[130,3,3,127,130],[131,1,1,130,131],[133,1,1,131,132],[135,1,1,132,133],[136,5,4,133,137],[137,4,4,137,141],[138,1,1,141,142],[139,3,2,142,144],[148,1,1,144,145],[149,4,4,145,149],[151,5,5,149,154]]],[4,81,74,154,228,[[153,4,4,154,158],[155,1,1,158,159],[156,7,7,159,166],[157,1,1,166,167],[158,2,2,167,169],[159,1,1,169,170],[162,4,3,170,173],[163,5,4,173,177],[164,11,8,177,185],[165,1,1,185,186],[166,3,3,186,189],[168,3,3,189,192],[169,1,1,192,193],[170,2,2,193,195],[171,3,3,195,198],[173,1,1,198,199],[175,2,2,199,201],[176,1,1,201,202],[178,3,2,202,204],[179,2,2,204,206],[180,7,7,206,213],[182,6,5,213,218],[183,3,3,218,221],[184,3,3,221,224],[185,2,2,224,226],[186,2,2,226,228]]],[5,26,26,228,254,[[188,3,3,228,231],[189,1,1,231,232],[190,2,2,232,234],[192,1,1,234,235],[193,2,2,235,237],[194,1,1,237,238],[196,1,1,238,239],[200,1,1,239,240],[201,2,2,240,242],[203,1,1,242,243],[204,3,3,243,246],[205,2,2,246,248],[206,3,3,248,251],[208,2,2,251,253],[210,1,1,253,254]]],[6,38,37,254,291,[[211,3,3,254,257],[212,1,1,257,258],[215,2,2,258,260],[216,1,1,260,261],[217,1,1,261,262],[218,3,3,262,265],[219,2,2,265,267],[224,1,1,267,268],[226,2,2,268,270],[227,1,1,270,271],[228,6,6,271,277],[229,6,6,277,283],[230,3,3,283,286],[231,6,5,286,291]]],[7,6,6,291,297,[[232,4,4,291,295],[234,1,1,295,296],[235,1,1,296,297]]],[8,49,39,297,336,[[236,3,3,297,300],[237,1,1,300,301],[238,1,1,301,302],[239,2,1,302,303],[240,1,1,303,304],[241,2,1,304,305],[242,4,2,305,307],[244,2,2,307,309],[245,7,5,309,314],[246,4,2,314,316],[249,2,2,316,318],[252,1,1,318,319],[254,2,2,319,321],[255,2,2,321,323],[256,2,2,323,325],[257,4,3,325,328],[258,2,2,328,330],[259,1,1,330,331],[261,2,1,331,332],[262,1,1,332,333],[264,1,1,333,334],[265,1,1,334,335],[266,1,1,335,336]]],[9,37,35,336,371,[[267,1,1,336,337],[268,4,4,337,341],[269,1,1,341,342],[270,1,1,342,343],[271,2,2,343,345],[272,3,2,345,347],[276,1,1,347,348],[277,1,1,348,349],[279,1,1,349,350],[280,3,3,350,353],[281,4,4,353,357],[282,2,2,357,359],[283,3,3,359,362],[284,4,3,362,365],[286,1,1,365,366],[287,2,2,366,368],[289,2,2,368,370],[290,1,1,370,371]]],[10,43,38,371,409,[[291,3,3,371,374],[292,3,2,374,376],[293,1,1,376,377],[294,1,1,377,378],[295,1,1,378,379],[296,1,1,379,380],[297,2,2,380,382],[298,8,7,382,389],[299,3,2,389,391],[300,1,1,391,392],[301,2,2,392,394],[302,1,1,394,395],[303,1,1,395,396],[304,2,2,396,398],[307,6,5,398,403],[308,2,2,403,405],[309,4,3,405,408],[311,1,1,408,409]]],[11,58,47,409,456,[[313,3,3,409,412],[314,6,4,412,416],[316,6,3,416,419],[317,1,1,419,420],[318,8,6,420,426],[319,7,6,426,432],[321,4,3,432,435],[322,1,1,435,436],[323,1,1,436,437],[324,2,2,437,439],[326,1,1,439,440],[327,1,1,440,441],[328,1,1,441,442],[329,7,5,442,447],[331,1,1,447,448],[335,7,7,448,455],[336,1,1,455,456]]],[12,17,16,456,472,[[338,1,1,456,457],[340,1,1,457,458],[341,5,4,458,462],[348,2,2,462,464],[349,1,1,464,465],[350,2,2,465,467],[351,2,2,467,469],[353,1,1,469,470],[358,2,2,470,472]]],[13,23,21,472,493,[[367,2,2,472,474],[371,1,1,474,475],[372,6,5,475,480],[373,3,2,480,482],[374,2,2,482,484],[375,1,1,484,485],[378,1,1,485,486],[386,1,1,486,487],[389,1,1,487,488],[391,1,1,488,489],[392,1,1,489,490],[394,2,2,490,492],[398,1,1,492,493]]],[14,5,4,493,497,[[410,4,3,493,496],[412,1,1,496,497]]],[15,9,8,497,505,[[413,3,2,497,499],[414,1,1,499,500],[416,1,1,500,501],[417,1,1,501,502],[422,1,1,502,503],[425,2,2,503,505]]],[17,10,9,505,514,[[436,1,1,505,506],[438,3,2,506,508],[458,1,1,508,509],[469,1,1,509,510],[470,1,1,510,511],[474,2,2,511,513],[475,1,1,513,514]]],[18,22,22,514,536,[[491,1,1,514,515],[513,1,1,515,516],[525,1,1,516,517],[530,1,1,517,518],[543,1,1,518,519],[545,1,1,519,520],[546,1,1,520,521],[553,1,1,521,522],[564,2,2,522,524],[581,3,3,524,527],[584,1,1,527,528],[599,2,2,528,530],[609,1,1,530,531],[610,1,1,531,532],[614,2,2,532,534],[616,2,2,534,536]]],[19,4,4,536,540,[[635,1,1,536,537],[636,1,1,537,538],[642,1,1,538,539],[649,1,1,539,540]]],[20,7,6,540,546,[[659,2,2,540,542],[661,3,2,542,544],[667,1,1,544,545],[669,1,1,545,546]]],[21,3,2,546,548,[[677,1,1,546,547],[678,2,1,547,548]]],[22,34,25,548,573,[[685,3,3,548,551],[691,5,2,551,553],[698,1,1,553,554],[700,2,1,554,555],[701,1,1,555,556],[705,2,1,556,557],[706,4,2,557,559],[711,1,1,559,560],[712,4,3,560,563],[713,3,2,563,565],[715,1,1,565,566],[726,1,1,566,567],[730,2,2,567,569],[733,1,1,569,570],[735,1,1,570,571],[743,2,2,571,573]]],[23,76,68,573,641,[[746,1,1,573,574],[747,1,1,574,575],[751,1,1,575,576],[752,3,3,576,579],[757,4,3,579,582],[760,2,2,582,584],[762,1,1,584,585],[763,2,2,585,587],[764,2,1,587,588],[766,8,6,588,594],[767,2,2,594,596],[768,1,1,596,597],[771,1,1,597,598],[773,5,4,598,602],[774,1,1,602,603],[776,2,2,603,605],[779,1,1,605,606],[780,1,1,606,607],[781,4,4,607,611],[782,2,2,611,613],[784,2,2,613,615],[785,3,3,615,618],[786,7,5,618,623],[787,3,3,623,626],[788,5,4,626,630],[789,1,1,630,631],[790,2,2,631,633],[791,1,1,633,634],[793,5,5,634,639],[794,2,2,639,641]]],[25,68,55,641,696,[[802,4,3,641,644],[804,5,3,644,647],[805,1,1,647,648],[806,1,1,648,649],[807,2,2,649,651],[809,4,4,651,655],[812,2,2,655,657],[813,2,2,657,659],[814,1,1,659,660],[818,1,1,660,661],[821,10,5,661,666],[824,2,1,666,667],[830,2,2,667,669],[831,1,1,669,670],[833,5,5,670,675],[835,2,2,675,677],[836,1,1,677,678],[837,3,3,678,681],[838,1,1,681,682],[840,3,2,682,684],[841,3,3,684,687],[843,3,2,687,689],[844,1,1,689,690],[847,3,3,690,693],[848,4,2,693,695],[849,1,1,695,696]]],[26,2,2,696,698,[[858,1,1,696,697],[859,1,1,697,698]]],[27,8,7,698,705,[[863,2,1,698,699],[867,2,2,699,701],[870,1,1,701,702],[871,1,1,702,703],[873,1,1,703,704],[874,1,1,704,705]]],[28,4,4,705,709,[[878,4,4,705,709]]],[29,8,5,709,714,[[884,1,1,709,710],[885,2,1,710,711],[887,5,3,711,714]]],[30,1,1,714,715,[[888,1,1,714,715]]],[31,1,1,715,716,[[892,1,1,715,716]]],[32,3,2,716,718,[[894,1,1,716,717],[896,2,1,717,718]]],[33,2,2,718,720,[[901,1,1,718,719],[902,1,1,719,720]]],[34,1,1,720,721,[[905,1,1,720,721]]],[35,1,1,721,722,[[906,1,1,721,722]]],[36,1,1,722,723,[[910,1,1,722,723]]],[37,1,1,723,724,[[915,1,1,723,724]]]],[38,40,41,42,78,248,268,273,274,275,297,305,306,308,321,322,332,336,346,440,446,452,453,454,455,456,477,479,484,496,508,530,544,546,549,556,584,596,597,598,599,668,700,709,711,714,715,717,736,772,775,779,784,797,798,862,886,919,941,957,979,980,1012,1014,1018,1038,1121,1150,1160,1169,1171,1175,1207,1254,1278,1315,1320,1338,1369,1389,1458,1497,1504,1511,1516,1732,1768,1803,1846,1945,1947,1980,1986,1989,2004,2028,2072,2090,2110,2189,2217,2268,2378,2379,2388,2400,2418,2498,2501,2524,2710,2714,2737,2764,2948,3224,3254,3340,3982,4040,4041,4058,4097,4098,4099,4103,4108,4132,4143,4151,4171,4248,4307,4312,4315,4337,4339,4352,4353,4356,4372,4416,4429,4443,4744,4769,4774,4798,4814,4851,4856,4860,4870,4871,4920,4929,4930,4931,4996,5009,5018,5030,5031,5032,5033,5046,5068,5087,5109,5112,5191,5192,5193,5216,5218,5219,5237,5242,5245,5246,5247,5251,5254,5261,5269,5284,5313,5314,5316,5344,5348,5353,5376,5390,5391,5409,5410,5418,5451,5512,5520,5543,5568,5571,5590,5592,5632,5647,5648,5674,5675,5676,5679,5709,5711,5712,5724,5726,5741,5744,5754,5805,5808,5810,5829,5831,5843,5844,5870,5885,5891,5894,5918,5919,5971,5979,5980,6034,6091,6199,6216,6217,6290,6294,6303,6306,6334,6355,6375,6378,6381,6436,6445,6502,6516,6520,6529,6550,6634,6650,6678,6698,6727,6744,6746,6775,6805,6919,6950,6976,6987,6995,6996,7004,7006,7008,7010,7026,7028,7031,7039,7042,7050,7076,7080,7081,7104,7106,7111,7112,7126,7129,7131,7134,7144,7176,7191,7215,7234,7240,7254,7279,7301,7330,7345,7358,7369,7397,7401,7421,7423,7428,7430,7441,7459,7460,7519,7542,7667,7709,7729,7736,7749,7778,7779,7788,7790,7809,7832,7839,7842,7910,7935,7971,8009,8021,8043,8051,8053,8067,8072,8108,8123,8152,8153,8159,8164,8258,8275,8355,8358,8386,8388,8410,8418,8424,8425,8431,8440,8461,8462,8467,8485,8486,8489,8555,8592,8593,8662,8664,8717,8731,8751,8762,8773,8806,8820,8872,8887,8915,8941,8942,8993,8994,9001,9006,9014,9032,9049,9054,9079,9099,9124,9144,9176,9201,9220,9239,9321,9326,9327,9330,9336,9351,9381,9390,9396,9406,9469,9537,9539,9549,9571,9572,9574,9576,9611,9613,9614,9665,9675,9676,9680,9683,9684,9688,9709,9711,9712,9715,9717,9726,9758,9772,9783,9808,9845,9855,9859,9915,9945,9969,9994,10008,10010,10012,10016,10093,10172,10173,10177,10181,10185,10192,10199,10215,10264,10365,10408,10425,10426,10428,10677,10686,10759,10766,10770,10785,10786,10857,10960,10962,11197,11200,11277,11287,11288,11293,11302,11319,11331,11340,11348,11364,11383,11450,11613,11671,11731,11752,11773,11782,11896,12216,12222,12233,12258,12299,12305,12318,12379,12398,12588,12676,12680,12890,12921,12923,13426,13705,13732,13863,13864,13884,14085,14450,14640,14724,14879,14927,14970,15084,15305,15307,15588,15596,15597,15735,16093,16094,16168,16172,16223,16225,16247,16249,16629,16656,16824,17029,17320,17322,17375,17376,17485,17516,17639,17645,17805,17806,17807,17926,17927,18035,18070,18089,18161,18174,18177,18300,18315,18317,18318,18328,18329,18385,18630,18700,18707,18750,18772,18906,18917,18971,19008,19121,19156,19167,19175,19270,19272,19273,19349,19351,19386,19409,19421,19428,19455,19465,19466,19478,19480,19481,19487,19492,19533,19618,19641,19642,19649,19653,19678,19736,19768,19830,19854,19886,19887,19890,19894,19906,19921,19945,19953,19958,19960,19966,19989,19990,19991,19992,19997,19999,20002,20009,20018,20022,20024,20038,20045,20062,20073,20080,20143,20145,20160,20163,20165,20175,20206,20467,20476,20484,20517,20524,20525,20542,20549,20572,20576,20605,20607,20608,20618,20671,20673,20693,20696,20728,20845,20923,20924,20930,20935,20938,21010,21196,21197,21222,21270,21272,21274,21277,21278,21325,21327,21354,21379,21380,21381,21418,21459,21476,21478,21480,21515,21565,21566,21579,21674,21675,21679,21688,21702,21737,21995,22028,22120,22174,22177,22223,22234,22256,22274,22345,22350,22354,22355,22452,22476,22497,22498,22499,22514,22573,22598,22630,22710,22727,22772,22801,22869,22947]]],["+",[270,257,[[0,34,33,0,33,[[1,2,2,0,2],[2,1,1,2,3],[9,1,1,3,4],[10,2,2,4,6],[11,1,1,6,7],[12,2,2,7,9],[17,2,2,9,11],[18,1,1,11,12],[19,2,2,12,14],[20,1,1,14,15],[23,2,2,15,17],[25,3,3,17,20],[26,2,2,20,22],[27,3,3,22,25],[29,1,1,25,26],[30,2,1,26,27],[32,1,1,27,28],[34,1,1,28,29],[39,1,1,29,30],[41,2,2,30,32],[48,1,1,32,33]]],[1,9,9,33,42,[[58,1,1,33,34],[61,1,1,34,35],[67,1,1,35,36],[69,1,1,36,37],[70,1,1,37,38],[78,1,1,38,39],[79,2,2,39,41],[89,1,1,41,42]]],[2,3,3,42,45,[[91,1,1,42,43],[107,1,1,43,44],[109,1,1,44,45]]],[3,15,14,45,59,[[129,2,2,45,47],[130,1,1,47,48],[131,1,1,48,49],[133,1,1,49,50],[137,3,3,50,53],[138,1,1,53,54],[139,3,2,54,56],[149,1,1,56,57],[151,2,2,57,59]]],[4,35,33,59,92,[[155,1,1,59,60],[156,5,5,60,65],[157,1,1,65,66],[158,2,2,66,68],[159,1,1,68,69],[162,1,1,69,70],[163,5,4,70,74],[164,2,2,74,76],[170,1,1,76,77],[171,1,1,77,78],[175,1,1,78,79],[176,1,1,79,80],[180,3,3,80,83],[182,6,5,83,88],[183,2,2,88,90],[184,2,2,90,92]]],[5,9,9,92,101,[[192,1,1,92,93],[196,1,1,93,94],[201,2,2,94,96],[204,1,1,96,97],[205,2,2,97,99],[206,1,1,99,100],[208,1,1,100,101]]],[6,11,10,101,111,[[211,2,2,101,103],[218,2,2,103,105],[228,2,2,105,107],[229,2,2,107,109],[230,1,1,109,110],[231,2,1,110,111]]],[7,2,2,111,113,[[232,1,1,111,112],[234,1,1,112,113]]],[8,18,17,113,130,[[238,1,1,113,114],[239,1,1,114,115],[244,1,1,115,116],[245,4,4,116,120],[249,1,1,120,121],[252,1,1,121,122],[254,1,1,122,123],[255,1,1,123,124],[257,2,2,124,126],[258,1,1,126,127],[261,2,1,127,128],[264,1,1,128,129],[265,1,1,129,130]]],[9,7,7,130,137,[[272,1,1,130,131],[277,1,1,131,132],[280,1,1,132,133],[282,1,1,133,134],[283,1,1,134,135],[287,2,2,135,137]]],[10,16,16,137,153,[[291,1,1,137,138],[292,2,2,138,140],[294,1,1,140,141],[296,1,1,141,142],[297,2,2,142,144],[298,2,2,144,146],[299,1,1,146,147],[302,1,1,147,148],[307,2,2,148,150],[308,1,1,150,151],[309,1,1,151,152],[311,1,1,152,153]]],[11,23,21,153,174,[[313,3,3,153,156],[314,4,3,156,159],[318,2,2,159,161],[319,4,3,161,164],[322,1,1,164,165],[324,2,2,165,167],[329,3,3,167,170],[335,3,3,170,173],[336,1,1,173,174]]],[12,2,2,174,176,[[338,1,1,174,175],[350,1,1,175,176]]],[13,4,4,176,180,[[372,2,2,176,178],[374,1,1,178,179],[392,1,1,179,180]]],[15,1,1,180,181,[[413,1,1,180,181]]],[17,1,1,181,182,[[474,1,1,181,182]]],[18,2,2,182,184,[[581,1,1,182,183],[599,1,1,183,184]]],[20,1,1,184,185,[[667,1,1,184,185]]],[22,3,3,185,188,[[698,1,1,185,186],[730,1,1,186,187],[743,1,1,187,188]]],[23,36,35,188,223,[[751,1,1,188,189],[752,1,1,189,190],[757,2,2,190,192],[760,1,1,192,193],[763,2,2,193,195],[766,5,5,195,200],[767,2,2,200,202],[768,1,1,202,203],[773,4,3,203,206],[774,1,1,206,207],[776,1,1,207,208],[779,1,1,208,209],[781,1,1,209,210],[782,1,1,210,211],[784,1,1,211,212],[785,1,1,212,213],[786,1,1,213,214],[787,2,2,214,216],[788,1,1,216,217],[789,1,1,217,218],[790,1,1,218,219],[793,3,3,219,222],[794,1,1,222,223]]],[25,26,24,223,247,[[802,2,2,223,225],[805,1,1,225,226],[806,1,1,226,227],[807,2,2,227,229],[809,1,1,229,230],[812,1,1,230,231],[813,1,1,231,232],[821,3,2,232,234],[830,1,1,234,235],[831,1,1,235,236],[835,1,1,236,237],[837,3,3,237,240],[838,1,1,240,241],[843,1,1,241,242],[844,1,1,242,243],[847,2,2,243,245],[848,3,2,245,247]]],[26,1,1,247,248,[[858,1,1,247,248]]],[27,1,1,248,249,[[863,1,1,248,249]]],[28,1,1,249,250,[[878,1,1,249,250]]],[29,6,4,250,254,[[884,1,1,250,251],[887,5,3,251,254]]],[30,1,1,254,255,[[888,1,1,254,255]]],[32,1,1,255,256,[[894,1,1,255,256]]],[33,1,1,256,257,[[901,1,1,256,257]]]],[40,41,78,248,274,275,306,321,332,440,446,484,496,508,530,596,598,709,714,715,736,772,775,779,784,862,886,979,1038,1175,1254,1278,1497,1768,1846,2004,2072,2090,2378,2388,2418,2710,2764,3254,3340,4098,4099,4132,4171,4248,4352,4353,4356,4416,4429,4443,4814,4870,4871,4996,5009,5018,5030,5031,5033,5068,5087,5109,5112,5193,5216,5218,5219,5237,5242,5269,5390,5418,5520,5543,5632,5648,5674,5709,5711,5712,5724,5726,5741,5744,5805,5808,5971,6091,6216,6217,6306,6334,6355,6378,6445,6520,6529,6727,6746,7004,7006,7042,7050,7076,7126,7134,7176,7279,7301,7401,7421,7423,7430,7441,7519,7667,7709,7749,7788,7790,7839,7910,7971,8009,8159,8275,8358,8431,8461,8592,8593,8762,8773,8806,8872,8915,8941,8942,9006,9032,9079,9176,9330,9336,9351,9406,9469,9537,9539,9549,9572,9574,9576,9675,9676,9709,9715,9726,9808,9855,9859,10010,10012,10016,10172,10173,10177,10215,10264,10766,11293,11319,11364,11752,12305,13863,15588,16093,17485,18035,18707,18917,19121,19156,19272,19273,19351,19409,19421,19455,19466,19478,19480,19481,19487,19492,19533,19642,19649,19653,19678,19768,19830,19886,19906,19953,19966,19997,20002,20009,20018,20045,20073,20143,20163,20165,20175,20476,20484,20542,20549,20572,20576,20607,20671,20696,20923,20924,21196,21222,21325,21379,21380,21381,21418,21565,21579,21675,21679,21688,21702,21995,22120,22350,22452,22497,22498,22499,22514,22598,22710]]],["There",[17,17,[[0,1,1,0,1,[[48,1,1,0,1]]],[17,3,3,1,4,[[438,1,1,1,2],[458,1,1,2,3],[470,1,1,3,4]]],[18,7,7,4,11,[[491,1,1,4,5],[513,1,1,5,6],[530,1,1,6,7],[545,1,1,7,8],[553,1,1,8,9],[581,1,1,9,10],[609,1,1,10,11]]],[22,1,1,11,12,[[712,1,1,11,12]]],[25,4,4,12,16,[[833,4,4,12,16]]],[33,1,1,16,17,[[902,1,1,16,17]]]],[1504,12921,13426,13732,14085,14450,14724,14927,15084,15597,16168,18318,21272,21274,21277,21278,22727]]],["Where",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8485]]],["here",[2,2,[[22,2,2,0,2,[[706,2,2,0,2]]]],[18174,18177]]],["it",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11293]]],["there",[431,389,[[0,56,49,0,49,[[1,2,2,0,2],[10,4,4,2,6],[11,3,3,6,9],[12,3,2,9,11],[13,1,1,11,12],[17,6,5,12,17],[20,2,2,17,19],[21,2,2,19,21],[22,1,1,21,22],[24,1,1,22,23],[25,6,4,23,27],[28,1,1,27,28],[30,1,1,28,29],[31,2,2,29,31],[32,1,1,31,32],[34,5,3,32,35],[37,1,1,35,36],[38,3,3,36,39],[40,1,1,39,40],[42,2,2,40,42],[43,1,1,42,43],[44,1,1,43,44],[45,1,1,44,45],[47,1,1,45,46],[48,2,1,46,47],[49,2,2,47,49]]],[1,15,14,49,63,[[57,1,1,49,50],[64,3,2,50,52],[66,2,2,52,54],[68,1,1,54,55],[73,1,1,55,56],[74,1,1,56,57],[78,2,2,57,59],[83,3,3,59,62],[89,1,1,62,63]]],[2,2,2,63,65,[[97,1,1,63,64],[105,1,1,64,65]]],[3,18,17,65,82,[[125,1,1,65,66],[127,3,3,66,69],[129,2,2,69,71],[130,2,2,71,73],[135,1,1,73,74],[136,5,4,74,78],[137,1,1,78,79],[148,1,1,79,80],[149,2,2,80,82]]],[4,34,31,82,113,[[153,1,1,82,83],[156,1,1,83,84],[162,3,2,84,86],[164,6,5,86,91],[165,1,1,91,92],[166,3,3,92,95],[168,3,3,95,98],[169,1,1,98,99],[170,1,1,99,100],[173,1,1,100,101],[178,3,2,101,103],[179,2,2,103,105],[180,4,4,105,109],[183,1,1,109,110],[185,2,2,110,112],[186,1,1,112,113]]],[5,13,13,113,126,[[188,3,3,113,116],[189,1,1,116,117],[190,2,2,117,119],[194,1,1,119,120],[200,1,1,120,121],[203,1,1,121,122],[204,2,2,122,124],[208,1,1,124,125],[210,1,1,125,126]]],[6,20,20,126,146,[[211,1,1,126,127],[212,1,1,127,128],[215,2,2,128,130],[216,1,1,130,131],[217,1,1,131,132],[219,1,1,132,133],[224,1,1,133,134],[226,2,2,134,136],[227,1,1,136,137],[228,1,1,137,138],[229,3,3,138,141],[230,2,2,141,143],[231,3,3,143,146]]],[7,4,4,146,150,[[232,3,3,146,149],[235,1,1,149,150]]],[8,23,19,150,169,[[236,3,3,150,153],[239,1,1,153,154],[240,1,1,154,155],[241,1,1,155,156],[242,4,2,156,158],[245,1,1,158,159],[246,4,2,159,161],[249,1,1,161,162],[255,1,1,162,163],[256,2,2,163,165],[257,1,1,165,166],[258,1,1,166,167],[262,1,1,167,168],[266,1,1,168,169]]],[9,26,25,169,194,[[267,1,1,169,170],[268,3,3,170,173],[269,1,1,173,174],[270,1,1,174,175],[271,2,2,175,177],[272,2,1,177,178],[276,1,1,178,179],[279,1,1,179,180],[280,2,2,180,182],[281,4,4,182,186],[282,1,1,186,187],[283,1,1,187,188],[284,3,3,188,191],[286,1,1,191,192],[289,1,1,192,193],[290,1,1,193,194]]],[10,25,23,194,217,[[291,2,2,194,196],[292,1,1,196,197],[293,1,1,197,198],[295,1,1,198,199],[298,5,5,199,204],[299,2,1,204,205],[300,1,1,205,206],[301,2,2,206,208],[303,1,1,208,209],[304,2,2,209,211],[307,4,3,211,214],[308,1,1,214,215],[309,2,2,215,217]]],[11,24,24,217,241,[[314,1,1,217,218],[316,2,2,218,220],[317,1,1,220,221],[318,2,2,221,223],[319,3,3,223,226],[321,3,3,226,229],[323,1,1,229,230],[326,1,1,230,231],[327,1,1,231,232],[328,1,1,232,233],[329,3,3,233,236],[331,1,1,236,237],[335,4,4,237,241]]],[12,14,13,241,254,[[340,1,1,241,242],[341,5,4,242,246],[348,1,1,246,247],[349,1,1,247,248],[350,1,1,248,249],[351,2,2,249,251],[353,1,1,251,252],[358,2,2,252,254]]],[13,17,16,254,270,[[367,1,1,254,255],[371,1,1,255,256],[372,3,3,256,259],[373,3,2,259,261],[374,1,1,261,262],[375,1,1,262,263],[378,1,1,263,264],[386,1,1,264,265],[389,1,1,265,266],[391,1,1,266,267],[394,2,2,267,269],[398,1,1,269,270]]],[14,4,3,270,273,[[410,4,3,270,273]]],[15,3,3,273,276,[[413,2,2,273,275],[414,1,1,275,276]]],[17,3,3,276,279,[[438,2,2,276,278],[474,1,1,278,279]]],[18,12,12,279,291,[[525,1,1,279,280],[543,1,1,280,281],[546,1,1,281,282],[564,2,2,282,284],[584,1,1,284,285],[599,1,1,285,286],[610,1,1,286,287],[614,2,2,287,289],[616,2,2,289,291]]],[19,2,2,291,293,[[635,1,1,291,292],[636,1,1,292,293]]],[20,4,3,293,296,[[661,3,2,293,295],[669,1,1,295,296]]],[21,3,2,296,298,[[677,1,1,296,297],[678,2,1,297,298]]],[22,23,17,298,315,[[691,5,2,298,300],[700,2,1,300,301],[701,1,1,301,302],[705,2,1,302,303],[706,2,2,303,305],[711,1,1,305,306],[712,3,3,306,309],[713,3,2,309,311],[715,1,1,311,312],[726,1,1,312,313],[730,1,1,313,314],[743,1,1,314,315]]],[23,36,32,315,347,[[747,1,1,315,316],[752,2,2,316,318],[757,2,2,318,320],[760,1,1,320,321],[762,1,1,321,322],[764,2,1,322,323],[766,1,1,323,324],[771,1,1,324,325],[773,1,1,325,326],[776,1,1,326,327],[780,1,1,327,328],[781,3,3,328,331],[782,1,1,331,332],[785,2,2,332,334],[786,6,4,334,338],[787,1,1,338,339],[788,4,3,339,342],[790,1,1,342,343],[791,1,1,343,344],[793,2,2,344,346],[794,1,1,346,347]]],[25,31,25,347,372,[[802,1,1,347,348],[804,4,3,348,351],[809,3,3,351,354],[813,1,1,354,355],[814,1,1,355,356],[818,1,1,356,357],[821,7,4,357,361],[824,2,1,361,362],[830,1,1,362,363],[833,1,1,363,364],[835,1,1,364,365],[836,1,1,365,366],[840,3,2,366,368],[843,2,2,368,370],[847,1,1,370,371],[849,1,1,371,372]]],[26,1,1,372,373,[[859,1,1,372,373]]],[27,7,7,373,380,[[863,1,1,373,374],[867,2,2,374,376],[870,1,1,376,377],[871,1,1,377,378],[873,1,1,378,379],[874,1,1,379,380]]],[28,2,2,380,382,[[878,2,2,380,382]]],[29,2,1,382,383,[[885,2,1,382,383]]],[31,1,1,383,384,[[892,1,1,383,384]]],[32,2,1,384,385,[[896,2,1,384,385]]],[34,1,1,385,386,[[905,1,1,385,386]]],[35,1,1,386,387,[[906,1,1,386,387]]],[36,1,1,387,388,[[910,1,1,387,388]]],[37,1,1,388,389,[[915,1,1,388,389]]]],[38,42,268,273,275,297,305,306,308,322,336,346,452,453,454,455,456,544,546,549,556,584,668,700,709,711,717,797,919,941,957,980,1012,1014,1018,1121,1160,1169,1171,1207,1315,1320,1338,1369,1389,1458,1504,1511,1516,1732,1945,1947,1986,1989,2028,2189,2217,2378,2379,2498,2501,2524,2737,2948,3224,3982,4040,4041,4058,4103,4108,4143,4151,4307,4312,4315,4337,4339,4372,4744,4769,4798,4920,5032,5191,5192,5245,5247,5251,5254,5261,5284,5313,5314,5316,5344,5348,5353,5376,5391,5451,5568,5571,5590,5592,5647,5675,5676,5679,5754,5829,5831,5844,5870,5885,5891,5894,5918,5919,6034,6199,6290,6294,6303,6436,6502,6516,6550,6634,6650,6678,6698,6775,6919,6950,6976,6987,6995,7026,7028,7031,7080,7081,7104,7106,7111,7129,7131,7144,7191,7215,7234,7240,7301,7330,7345,7358,7369,7421,7459,7460,7542,7736,7778,7779,7809,7832,7935,8021,8043,8053,8067,8072,8108,8123,8152,8153,8164,8258,8355,8386,8388,8410,8418,8424,8425,8440,8462,8485,8486,8489,8555,8662,8717,8731,8751,8806,8820,8887,8993,8994,9006,9014,9049,9054,9099,9124,9144,9201,9220,9239,9321,9326,9327,9381,9390,9396,9572,9613,9614,9665,9676,9684,9711,9712,9717,9758,9772,9783,9845,9915,9945,9969,9994,10008,10010,10093,10181,10185,10192,10199,10365,10408,10425,10426,10428,10686,10759,10770,10785,10786,10857,10960,10962,11197,11277,11287,11288,11302,11331,11340,11348,11383,11450,11613,11671,11731,11773,11782,11896,12216,12222,12233,12299,12305,12318,12921,12923,13864,14640,14879,14970,15305,15307,15735,16094,16172,16223,16225,16247,16249,16629,16656,17375,17376,17516,17639,17645,17926,17927,18070,18089,18161,18174,18177,18300,18315,18317,18318,18328,18329,18385,18630,18700,18906,19008,19167,19175,19270,19272,19349,19386,19428,19480,19618,19641,19736,19854,19887,19890,19894,19921,19958,19960,19989,19990,19991,19992,19999,20022,20024,20038,20062,20080,20145,20160,20206,20467,20517,20524,20525,20605,20608,20618,20693,20728,20845,20923,20930,20935,20938,21010,21197,21270,21327,21354,21459,21476,21565,21566,21674,21737,22028,22120,22174,22177,22223,22234,22256,22274,22345,22355,22476,22573,22630,22772,22801,22869,22947]]],["therein",[8,8,[[1,4,4,0,4,[[65,1,1,0,1],[70,1,1,1,2],[79,1,1,2,3],[89,1,1,3,4]]],[6,1,1,4,5,[[218,1,1,4,5]]],[10,1,1,5,6,[[298,1,1,5,6]]],[11,1,1,6,7,[[314,1,1,6,7]]],[19,1,1,7,8,[[649,1,1,7,8]]]],[1980,2110,2400,2714,6744,9001,9571,17029]]],["thither",[69,68,[[0,8,7,0,7,[[18,3,2,0,2],[23,2,2,2,4],[28,1,1,4,5],[38,1,1,5,6],[41,1,1,6,7]]],[1,2,2,7,9,[[59,1,1,7,8],[75,1,1,8,9]]],[3,3,3,9,12,[[151,3,3,9,12]]],[4,11,11,12,23,[[153,3,3,12,15],[156,1,1,15,16],[164,3,3,16,19],[171,2,2,19,21],[184,1,1,21,22],[186,1,1,22,23]]],[5,4,4,23,27,[[193,2,2,23,25],[206,2,2,25,27]]],[6,5,5,27,32,[[219,1,1,27,28],[228,2,2,28,30],[229,1,1,30,31],[231,1,1,31,32]]],[8,6,6,32,38,[[237,1,1,32,33],[244,1,1,33,34],[245,2,2,34,36],[254,1,1,36,37],[257,1,1,37,38]]],[9,1,1,38,39,[[268,1,1,38,39]]],[10,1,1,39,40,[[309,1,1,39,40]]],[11,8,8,40,48,[[316,3,3,40,43],[318,3,3,43,46],[321,1,1,46,47],[329,1,1,47,48]]],[13,1,1,48,49,[[367,1,1,48,49]]],[14,1,1,49,50,[[412,1,1,49,50]]],[15,3,3,50,53,[[416,1,1,50,51],[417,1,1,51,52],[425,1,1,52,53]]],[17,1,1,53,54,[[436,1,1,53,54]]],[20,1,1,54,55,[[659,1,1,54,55]]],[22,4,4,55,59,[[685,2,2,55,57],[733,1,1,57,58],[735,1,1,58,59]]],[23,3,3,59,62,[[766,2,2,59,61],[784,1,1,61,62]]],[25,5,5,62,67,[[802,1,1,62,63],[812,1,1,63,64],[841,2,2,64,66],[848,1,1,66,67]]],[28,1,1,67,68,[[878,1,1,67,68]]]],[477,479,597,599,798,1150,1254,1803,2268,4851,4856,4860,4929,4930,4931,5046,5245,5246,5251,5409,5410,5810,5843,5979,5980,6375,6381,6805,6996,7010,7039,7112,7254,7397,7423,7428,7729,7788,8051,9396,9611,9613,9614,9680,9683,9688,9758,10010,11200,12258,12379,12398,12680,12890,17322,17806,17807,18750,18772,19465,19481,19945,20484,20673,21478,21480,21688,22354]]],["thitherward",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7008]]],["unto",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[477]]],["where",[19,19,[[1,1,1,0,1,[[64,1,1,0,1]]],[3,2,2,1,3,[[129,1,1,1,2],[149,1,1,2,3]]],[8,2,2,3,5,[[241,1,1,3,4],[259,1,1,4,5]]],[9,1,1,5,6,[[289,1,1,5,6]]],[11,2,2,6,8,[[316,1,1,6,7],[318,1,1,7,8]]],[12,1,1,8,9,[[348,1,1,8,9]]],[15,2,2,9,11,[[422,1,1,9,10],[425,1,1,10,11]]],[17,2,2,11,13,[[469,1,1,11,12],[475,1,1,12,13]]],[19,1,1,13,14,[[642,1,1,13,14]]],[20,1,1,14,15,[[659,1,1,14,15]]],[22,1,1,15,16,[[685,1,1,15,16]]],[23,1,1,16,17,[[746,1,1,16,17]]],[25,2,2,17,19,[[804,1,1,17,18],[841,1,1,18,19]]]],[1947,4097,4774,7345,7842,8664,9611,9676,10677,12588,12676,13705,13884,16824,17320,17805,18971,20517,21515]]],["wherein",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15596]]],["whither",[2,2,[[4,1,1,0,1,[[175,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]]],[5512,8467]]]]},{"k":"H8034","v":[["*",[865,772,[[0,113,95,0,95,[[1,5,5,0,5],[2,1,1,5,6],[3,8,5,6,11],[4,3,3,11,14],[5,1,1,14,15],[9,2,1,15,16],[10,4,3,16,19],[11,2,2,19,21],[12,1,1,21,22],[15,4,4,22,26],[16,5,3,26,29],[18,3,3,29,32],[20,2,2,32,34],[21,2,2,34,36],[23,1,1,36,37],[24,7,6,37,43],[25,7,6,43,49],[26,1,1,49,50],[27,2,1,50,51],[28,6,5,51,56],[29,8,8,56,64],[30,1,1,64,65],[31,6,5,65,70],[32,1,1,70,71],[34,7,4,71,75],[35,7,5,75,80],[37,8,8,80,88],[40,3,3,88,91],[45,1,1,91,92],[47,3,2,92,94],[49,1,1,94,95]]],[1,43,36,95,131,[[50,3,2,95,97],[51,2,2,97,99],[52,2,2,99,101],[54,1,1,101,102],[55,2,2,102,104],[58,1,1,104,105],[64,2,2,105,107],[65,1,1,107,108],[66,2,2,108,110],[67,2,2,110,112],[69,3,2,112,114],[72,2,2,114,116],[77,9,6,116,122],[80,1,1,122,123],[82,3,3,123,126],[83,2,2,126,128],[84,1,1,128,129],[88,4,2,129,131]]],[2,11,8,131,139,[[107,1,1,131,132],[108,2,1,132,133],[109,1,1,133,134],[110,1,1,134,135],[111,2,2,135,137],[113,4,2,137,139]]],[3,49,46,139,185,[[117,16,16,139,155],[119,6,6,155,161],[120,1,1,161,162],[122,1,1,162,163],[127,4,3,163,166],[129,2,2,166,168],[132,1,1,168,169],[133,2,2,169,171],[137,1,1,171,172],[141,2,2,172,174],[142,5,5,174,179],[143,2,2,179,181],[148,4,2,181,183],[150,2,2,183,185]]],[4,37,34,185,219,[[155,1,1,185,186],[157,2,1,186,187],[158,1,1,187,188],[159,1,1,188,189],[161,2,2,189,191],[162,2,2,191,193],[164,4,4,193,197],[166,2,2,197,199],[168,3,3,199,202],[170,6,5,202,207],[173,1,1,207,208],[174,2,2,208,210],[177,4,3,210,213],[178,2,2,213,215],[180,2,2,215,217],[181,1,1,217,218],[184,1,1,218,219]]],[5,12,11,219,230,[[188,1,1,219,220],[191,1,1,220,221],[193,3,2,221,223],[195,1,1,223,224],[200,1,1,224,225],[201,1,1,225,226],[203,1,1,226,227],[205,1,1,227,228],[207,1,1,228,229],[209,1,1,229,230]]],[6,19,16,230,246,[[211,6,5,230,235],[212,1,1,235,236],[218,1,1,236,237],[223,5,5,237,242],[225,1,1,242,243],[226,1,1,243,244],[227,1,1,244,245],[228,3,1,245,246]]],[7,14,9,246,255,[[232,5,2,246,248],[233,2,2,248,250],[235,7,5,250,255]]],[8,33,25,255,280,[[236,4,3,255,258],[242,1,1,258,259],[243,2,1,259,260],[244,2,2,260,262],[247,1,1,262,263],[249,7,3,263,266],[252,5,5,266,271],[253,1,1,271,272],[255,1,1,272,273],[256,1,1,273,274],[257,1,1,274,275],[259,1,1,275,276],[260,6,4,276,280]]],[9,34,30,280,310,[[269,1,1,280,281],[270,3,2,281,283],[271,2,2,283,285],[272,3,2,285,287],[273,5,4,287,291],[274,1,1,291,292],[275,2,2,292,294],[278,3,3,294,297],[279,2,2,297,299],[280,2,2,299,301],[282,1,1,301,302],[283,1,1,302,303],[284,2,1,303,304],[286,2,2,304,306],[288,1,1,306,307],[289,3,3,307,310]]],[10,46,39,310,349,[[291,2,1,310,311],[293,1,1,311,312],[294,2,2,312,314],[295,3,2,314,316],[297,2,1,316,317],[298,14,13,317,330],[299,2,2,330,332],[300,1,1,332,333],[301,2,2,333,335],[303,1,1,335,336],[304,3,2,336,338],[305,2,2,338,340],[306,2,1,340,341],[308,6,5,341,346],[311,1,1,346,347],[312,2,2,347,349]]],[11,23,23,349,372,[[314,1,1,349,350],[317,1,1,350,351],[320,1,1,351,352],[324,1,1,352,353],[326,3,3,353,356],[327,2,2,356,358],[329,1,1,358,359],[330,1,1,359,360],[333,4,4,360,364],[334,1,1,364,365],[335,4,4,365,369],[336,3,3,369,372]]],[12,55,50,372,422,[[338,6,4,372,376],[339,3,3,376,379],[341,4,4,379,383],[342,1,1,383,384],[343,2,2,384,386],[344,5,3,386,389],[345,2,2,389,391],[346,2,2,391,393],[348,2,2,393,395],[349,2,2,395,397],[350,1,1,397,398],[351,3,3,398,401],[353,6,6,401,407],[354,4,3,407,410],[358,1,1,410,411],[359,6,6,411,417],[360,2,2,417,419],[365,1,1,419,420],[366,2,2,420,422]]],[13,45,42,422,464,[[368,2,2,422,424],[369,2,1,424,425],[372,14,13,425,438],[373,3,3,438,441],[378,2,1,441,442],[379,1,1,442,443],[380,1,1,443,444],[384,1,1,444,445],[386,4,4,445,449],[388,1,1,449,450],[390,1,1,450,451],[391,1,1,451,452],[392,3,3,452,455],[393,1,1,455,456],[394,2,2,456,458],[395,1,1,458,459],[397,1,1,459,460],[399,3,3,460,463],[402,1,1,463,464]]],[14,4,4,464,468,[[404,1,1,464,465],[410,2,2,465,467],[412,1,1,467,468]]],[15,7,7,468,475,[[413,2,2,468,470],[418,1,1,470,471],[419,1,1,471,472],[421,3,3,472,475]]],[16,8,7,475,482,[[427,3,3,475,478],[428,1,1,478,479],[433,3,2,479,481],[434,1,1,481,482]]],[17,7,5,482,487,[[436,2,2,482,484],[453,1,1,484,485],[465,1,1,485,486],[477,3,1,486,487]]],[18,109,104,487,591,[[482,1,1,487,488],[484,1,1,488,489],[485,2,2,489,491],[486,3,3,491,494],[493,1,1,494,495],[495,1,1,495,496],[497,3,3,496,499],[499,1,1,499,500],[500,1,1,500,501],[502,1,1,501,502],[506,1,1,502,503],[508,1,1,503,504],[510,1,1,504,505],[511,1,1,505,506],[518,1,1,506,507],[521,3,3,507,510],[522,1,1,510,511],[525,1,1,511,512],[526,1,1,512,513],[529,1,1,513,514],[531,2,2,514,516],[538,2,2,516,518],[540,1,1,518,519],[543,2,2,519,521],[545,2,1,521,522],[546,2,2,522,524],[549,3,2,524,526],[551,4,4,526,530],[552,1,1,530,531],[553,1,1,531,532],[556,3,2,532,534],[557,1,1,534,535],[560,3,3,535,538],[563,3,3,538,541],[566,3,3,541,544],[568,1,1,544,545],[569,1,1,545,546],[573,2,2,546,548],[576,2,2,548,550],[577,1,1,550,551],[579,2,2,551,553],[580,1,1,553,554],[582,2,2,554,556],[583,2,2,556,558],[586,2,2,558,560],[588,1,1,560,561],[590,3,3,561,564],[592,1,1,564,565],[593,3,3,565,568],[595,4,4,568,572],[596,2,2,572,574],[599,1,1,574,575],[601,1,1,575,576],[606,1,1,576,577],[612,3,3,577,580],[615,2,1,580,581],[617,1,1,581,582],[619,1,1,582,583],[620,1,1,583,584],[622,3,3,584,587],[624,1,1,587,588],[625,3,2,588,590],[626,1,1,590,591]]],[19,7,6,591,597,[[637,1,1,591,592],[645,1,1,592,593],[648,1,1,593,594],[649,1,1,594,595],[657,3,2,595,597]]],[20,3,3,597,600,[[664,2,2,597,599],[665,1,1,599,600]]],[21,1,1,600,601,[[671,1,1,600,601]]],[22,54,49,601,650,[[682,1,1,601,602],[685,1,1,602,603],[686,1,1,603,604],[687,1,1,604,605],[690,2,1,605,606],[692,1,1,606,607],[696,1,1,607,608],[702,1,1,608,609],[703,1,1,609,610],[704,2,2,610,612],[707,1,1,612,613],[708,1,1,613,614],[718,1,1,614,615],[719,1,1,615,616],[720,1,1,616,617],[721,2,2,617,619],[722,2,1,619,620],[723,2,2,620,622],[725,1,1,622,623],[726,5,4,623,627],[727,1,1,627,628],[728,1,1,628,629],[729,1,1,629,630],[730,2,2,630,632],[732,1,1,632,633],[733,1,1,633,634],[734,3,2,634,636],[735,1,1,636,637],[737,1,1,637,638],[738,1,1,638,639],[740,1,1,639,640],[741,4,4,640,644],[742,2,2,644,646],[743,3,2,646,648],[744,2,2,648,650]]],[23,55,53,650,703,[[747,1,1,650,651],[751,5,5,651,656],[754,3,3,656,659],[755,3,3,659,662],[756,1,1,662,663],[757,1,1,663,664],[758,5,5,664,669],[759,1,1,669,670],[760,1,1,670,671],[764,2,2,671,673],[767,4,3,673,676],[769,1,1,676,677],[770,3,3,677,680],[771,1,1,680,681],[773,4,4,681,685],[775,1,1,685,686],[776,3,3,686,689],[777,2,2,689,691],[778,2,2,691,693],[781,1,1,693,694],[788,3,2,694,696],[790,1,1,696,697],[792,2,2,697,699],[794,1,1,699,700],[795,2,2,700,702],[796,1,1,702,703]]],[24,1,1,703,704,[[799,1,1,703,704]]],[25,28,26,704,730,[[817,2,2,704,706],[821,6,6,706,712],[823,1,1,712,713],[824,3,2,713,715],[825,1,1,715,716],[835,1,1,716,717],[837,4,4,717,721],[840,5,4,721,725],[844,2,2,725,727],[849,3,3,727,730]]],[26,6,6,730,736,[[850,1,1,730,731],[858,4,4,731,735],[859,1,1,735,736]]],[27,5,4,736,740,[[862,3,3,736,739],[863,2,1,739,740]]],[28,2,2,740,742,[[877,2,2,740,742]]],[29,7,7,742,749,[[880,1,1,742,743],[882,1,1,743,744],[883,2,2,744,746],[884,1,1,746,747],[887,2,2,747,749]]],[32,4,3,749,752,[[896,2,1,749,750],[897,1,1,750,751],[898,1,1,751,752]]],[33,1,1,752,753,[[900,1,1,752,753]]],[35,5,5,753,758,[[906,1,1,753,754],[908,4,4,754,758]]],[37,7,7,758,765,[[915,1,1,758,759],[916,1,1,759,760],[920,1,1,760,761],[923,3,3,761,764],[924,1,1,764,765]]],[38,10,7,765,772,[[925,6,3,765,768],[926,2,2,768,770],[927,1,1,770,771],[928,1,1,771,772]]]],[41,43,44,49,50,75,96,98,100,104,105,107,108,134,141,259,270,275,295,300,306,322,382,392,394,396,402,412,416,479,494,495,516,546,561,571,620,659,671,674,683,684,688,710,712,713,714,717,725,763,792,811,827,828,829,830,836,838,841,843,848,850,851,854,921,930,955,956,957,958,977,1019,1021,1026,1029,1050,1072,1075,1079,1080,1120,1121,1122,1123,1124,1125,1148,1149,1240,1246,1247,1394,1457,1467,1517,1533,1547,1564,1576,1592,1594,1655,1658,1671,1758,1923,1943,1978,1990,1998,2002,2003,2058,2075,2157,2165,2302,2303,2304,2305,2314,2322,2422,2485,2490,2492,2501,2510,2561,2670,2678,3272,3293,3321,3351,3371,3401,3457,3462,3606,3609,3621,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3694,3695,3709,3710,3732,3735,3775,3850,4027,4050,4058,4079,4091,4196,4246,4247,4343,4485,4486,4522,4535,4542,4544,4548,4555,4558,4756,4760,4833,4835,4989,5064,5099,5135,5171,5185,5194,5206,5243,5245,5251,5261,5313,5314,5344,5348,5353,5389,5391,5403,5404,5406,5452,5484,5489,5553,5554,5557,5568,5585,5621,5669,5699,5761,5870,5943,5985,6002,6046,6202,6217,6278,6368,6390,6467,6519,6520,6526,6532,6535,6550,6750,6886,6890,6901,6902,6908,6948,6953,6981,7022,7129,7131,7150,7168,7195,7200,7201,7204,7207,7213,7214,7232,7364,7371,7392,7393,7482,7512,7557,7558,7622,7630,7631,7641,7663,7706,7772,7779,7807,7860,7864,7866,7870,7886,8088,8122,8124,8146,8152,8159,8175,8189,8193,8203,8206,8222,8229,8239,8310,8311,8314,8318,8320,8363,8383,8431,8474,8496,8555,8575,8652,8661,8671,8675,8764,8818,8852,8875,8881,8883,8955,9001,9002,9003,9004,9005,9014,9018,9020,9026,9027,9028,9029,9033,9054,9058,9080,9134,9144,9186,9239,9249,9251,9259,9307,9365,9366,9367,9372,9373,9459,9496,9522,9575,9658,9753,9851,9898,9903,9923,9927,9958,10017,10026,10120,10123,10126,10138,10146,10192,10196,10199,10201,10210,10219,10220,10271,10295,10298,10302,10332,10335,10340,10388,10394,10423,10426,10452,10471,10519,10550,10551,10558,10604,10613,10650,10659,10693,10697,10750,10751,10766,10778,10785,10791,10822,10828,10830,10849,10855,10861,10871,10884,10887,10953,10969,10971,10972,10973,10974,10983,10996,11007,11146,11177,11180,11212,11215,11246,11287,11288,11289,11290,11291,11292,11302,11306,11308,11314,11315,11316,11320,11338,11340,11344,11450,11455,11486,11557,11595,11596,11613,11618,11646,11678,11705,11735,11740,11747,11756,11773,11779,11792,11873,11912,11915,11926,11997,12088,12214,12221,12268,12305,12307,12414,12483,12516,12518,12521,12729,12738,12746,12759,12825,12827,12860,12870,12890,13293,13565,13936,13984,14012,14013,14021,14023,14026,14031,14096,14167,14183,14187,14189,14226,14238,14262,14310,14334,14387,14391,14547,14576,14579,14591,14614,14644,14659,14719,14726,14731,14824,14827,14843,14875,14877,14904,14965,14971,15017,15019,15055,15058,15066,15069,15072,15082,15191,15194,15216,15245,15257,15259,15293,15295,15296,15338,15342,15350,15409,15412,15467,15473,15502,15505,15512,15536,15542,15550,15607,15609,15659,15698,15768,15776,15802,15814,15815,15816,15831,15852,15861,15865,15879,15880,15881,15895,15953,16030,16093,16110,16140,16176,16178,16188,16233,16276,16293,16304,16321,16322,16341,16355,16376,16384,16388,16663,16911,17008,17016,17255,17260,17421,17427,17430,17540,17734,17796,17810,17835,17904,17950,18004,18110,18119,18138,18143,18216,18244,18446,18476,18488,18506,18512,18538,18564,18565,18603,18615,18616,18623,18633,18637,18672,18688,18701,18702,18728,18753,18758,18759,18780,18819,18830,18856,18878,18880,18882,18885,18887,18892,18898,18912,18927,18944,19019,19129,19130,19131,19133,19149,19207,19217,19226,19242,19245,19247,19265,19277,19300,19302,19307,19308,19314,19331,19357,19425,19431,19490,19509,19511,19563,19581,19588,19592,19611,19644,19656,19658,19660,19726,19749,19751,19765,19777,19784,19816,19817,19887,20026,20036,20063,20095,20097,20200,20231,20269,20277,20409,20776,20777,20904,20909,20917,20924,20934,20939,20981,21011,21017,21058,21342,21379,21380,21381,21382,21455,21461,21464,21473,21579,21580,21703,21733,21737,21744,21994,22003,22006,22007,22016,22098,22100,22103,22122,22337,22343,22386,22423,22431,22450,22460,22501,22507,22625,22637,22657,22698,22791,22829,22832,22839,22840,22940,22959,23028,23061,23062,23068,23077,23095,23100,23103,23105,23108,23136,23140]]],["+",[35,34,[[0,2,2,0,2,[[11,1,1,0,1],[26,1,1,1,2]]],[1,1,1,2,3,[[77,1,1,2,3]]],[3,2,1,3,4,[[148,2,1,3,4]]],[4,4,4,4,8,[[155,1,1,4,5],[161,1,1,5,6],[170,1,1,6,7],[180,1,1,7,8]]],[7,1,1,8,9,[[235,1,1,8,9]]],[9,1,1,9,10,[[284,1,1,9,10]]],[10,2,2,10,12,[[291,1,1,10,11],[298,1,1,11,12]]],[11,1,1,12,13,[[329,1,1,12,13]]],[12,1,1,13,14,[[349,1,1,13,14]]],[13,1,1,14,15,[[372,1,1,14,15]]],[17,1,1,15,16,[[465,1,1,15,16]]],[18,7,7,16,23,[[500,1,1,16,17],[502,1,1,17,18],[508,1,1,18,19],[556,1,1,19,20],[583,1,1,20,21],[586,1,1,21,22],[620,1,1,22,23]]],[20,1,1,23,24,[[664,1,1,23,24]]],[22,2,2,24,26,[[726,1,1,24,25],[744,1,1,25,26]]],[23,2,2,26,28,[[758,2,2,26,28]]],[25,5,5,28,33,[[821,4,4,28,32],[823,1,1,32,33]]],[33,1,1,33,34,[[900,1,1,33,34]]]],[300,763,2303,4756,4989,5185,5404,5669,7201,8496,8764,9026,10017,10750,11314,13565,14238,14262,14334,15194,15659,15776,16304,17427,18623,18927,19300,19314,20904,20909,20917,20939,20981,22698]]],["fame",[4,4,[[10,1,1,0,1,[[294,1,1,0,1]]],[12,2,2,1,3,[[351,1,1,1,2],[359,1,1,2,3]]],[35,1,1,3,4,[[908,1,1,3,4]]]],[8875,10791,10969,22839]]],["famous",[2,2,[[12,1,1,0,1,[[342,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[10452,21017]]],["name",[731,655,[[0,100,85,0,85,[[1,4,4,0,4],[2,1,1,4,5],[3,8,5,5,10],[4,3,3,10,13],[9,2,1,13,14],[10,4,3,14,17],[11,1,1,17,18],[12,1,1,18,19],[15,4,4,19,23],[16,5,3,23,26],[18,3,3,26,29],[20,2,2,29,31],[21,2,2,31,33],[23,1,1,33,34],[24,4,4,34,38],[25,5,5,38,43],[27,2,1,43,44],[28,6,5,44,49],[29,8,8,49,57],[30,1,1,57,58],[31,6,5,58,63],[32,1,1,63,64],[34,7,4,64,68],[35,4,3,68,71],[37,8,8,71,79],[40,3,3,79,82],[47,3,2,82,84],[49,1,1,84,85]]],[1,30,28,85,113,[[50,2,1,85,86],[51,2,2,86,88],[52,2,2,88,90],[54,1,1,90,91],[55,1,1,91,92],[58,1,1,92,93],[64,2,2,93,95],[65,1,1,95,96],[66,2,2,96,98],[67,2,2,98,100],[69,3,2,100,102],[72,2,2,102,104],[77,1,1,104,105],[80,1,1,105,106],[82,3,3,106,109],[83,2,2,109,111],[84,1,1,111,112],[88,1,1,112,113]]],[2,11,8,113,121,[[107,1,1,113,114],[108,2,1,114,115],[109,1,1,115,116],[110,1,1,116,117],[111,2,2,117,119],[113,4,2,119,121]]],[3,15,14,121,135,[[120,1,1,121,122],[122,1,1,122,123],[127,4,3,123,126],[133,2,2,126,128],[137,1,1,128,129],[141,2,2,129,131],[142,2,2,131,133],[143,1,1,133,134],[148,1,1,134,135]]],[4,32,30,135,165,[[157,2,1,135,136],[158,1,1,136,137],[159,1,1,137,138],[161,1,1,138,139],[162,2,2,139,141],[164,3,3,141,144],[166,2,2,144,146],[168,3,3,146,149],[170,5,5,149,154],[173,1,1,154,155],[174,2,2,155,157],[177,4,3,157,160],[178,2,2,160,162],[180,1,1,162,163],[181,1,1,163,164],[184,1,1,164,165]]],[5,10,9,165,174,[[191,1,1,165,166],[193,3,2,166,168],[195,1,1,168,169],[200,1,1,169,170],[201,1,1,170,171],[205,1,1,171,172],[207,1,1,172,173],[209,1,1,173,174]]],[6,19,16,174,190,[[211,6,5,174,179],[212,1,1,179,180],[218,1,1,180,181],[223,5,5,181,186],[225,1,1,186,187],[226,1,1,187,188],[227,1,1,188,189],[228,3,1,189,190]]],[7,13,8,190,198,[[232,5,2,190,192],[233,2,2,192,194],[235,6,4,194,198]]],[8,28,21,198,219,[[236,4,3,198,201],[242,1,1,201,202],[243,2,1,202,203],[244,2,2,203,205],[249,6,3,205,208],[252,3,3,208,211],[253,1,1,211,212],[255,1,1,212,213],[256,1,1,213,214],[259,1,1,214,215],[260,6,4,215,219]]],[9,31,28,219,247,[[269,1,1,219,220],[270,3,2,220,222],[271,1,1,222,223],[272,3,2,223,225],[273,5,4,225,229],[274,1,1,229,230],[275,2,2,230,232],[278,3,3,232,235],[279,2,2,235,237],[280,2,2,237,239],[282,1,1,239,240],[283,1,1,240,241],[284,1,1,241,242],[286,2,2,242,244],[288,1,1,244,245],[289,2,2,245,247]]],[10,42,36,247,283,[[291,1,1,247,248],[293,1,1,248,249],[295,3,2,249,251],[297,2,1,251,252],[298,13,12,252,264],[299,2,2,264,266],[300,1,1,266,267],[301,2,2,267,269],[303,1,1,269,270],[304,3,2,270,272],[305,2,2,272,274],[306,2,1,274,275],[308,6,5,275,280],[311,1,1,280,281],[312,2,2,281,283]]],[11,22,22,283,305,[[314,1,1,283,284],[317,1,1,284,285],[320,1,1,285,286],[324,1,1,286,287],[326,3,3,287,290],[327,2,2,290,292],[330,1,1,292,293],[333,4,4,293,297],[334,1,1,297,298],[335,4,4,298,302],[336,3,3,302,305]]],[12,44,39,305,344,[[338,6,4,305,309],[339,3,3,309,312],[341,3,3,312,315],[344,5,3,315,318],[345,1,1,318,319],[346,1,1,319,320],[348,2,2,320,322],[349,1,1,322,323],[350,1,1,323,324],[351,1,1,324,325],[353,6,6,325,331],[354,4,3,331,334],[358,1,1,334,335],[359,5,5,335,340],[360,1,1,340,341],[365,1,1,341,342],[366,2,2,342,344]]],[13,44,41,344,385,[[368,2,2,344,346],[369,2,1,346,347],[372,13,12,347,359],[373,3,3,359,362],[378,2,1,362,363],[379,1,1,363,364],[380,1,1,364,365],[384,1,1,365,366],[386,4,4,366,370],[388,1,1,370,371],[390,1,1,371,372],[391,1,1,372,373],[392,3,3,373,376],[393,1,1,376,377],[394,2,2,377,379],[395,1,1,379,380],[397,1,1,380,381],[399,3,3,381,384],[402,1,1,384,385]]],[14,2,2,385,387,[[404,1,1,385,386],[410,1,1,386,387]]],[15,6,6,387,393,[[413,2,2,387,389],[419,1,1,389,390],[421,3,3,390,393]]],[16,8,7,393,400,[[427,3,3,393,396],[428,1,1,396,397],[433,3,2,397,399],[434,1,1,399,400]]],[17,6,4,400,404,[[436,2,2,400,402],[453,1,1,402,403],[477,3,1,403,404]]],[18,99,95,404,499,[[482,1,1,404,405],[484,1,1,405,406],[485,2,2,406,408],[486,3,3,408,411],[495,1,1,411,412],[497,3,3,412,415],[499,1,1,415,416],[506,1,1,416,417],[510,1,1,417,418],[511,1,1,418,419],[518,1,1,419,420],[521,3,3,420,423],[522,1,1,423,424],[525,1,1,424,425],[529,1,1,425,426],[531,2,2,426,428],[538,2,2,428,430],[540,1,1,430,431],[543,2,2,431,433],[545,2,1,433,434],[546,2,2,434,436],[549,3,2,436,438],[551,4,4,438,442],[552,1,1,442,443],[553,1,1,443,444],[556,2,2,444,446],[557,1,1,446,447],[560,3,3,447,450],[563,3,3,450,453],[566,3,3,453,456],[568,1,1,456,457],[569,1,1,457,458],[573,2,2,458,460],[576,2,2,460,462],[577,1,1,462,463],[579,2,2,463,465],[580,1,1,465,466],[582,2,2,466,468],[583,1,1,468,469],[586,1,1,469,470],[588,1,1,470,471],[590,3,3,471,474],[592,1,1,474,475],[593,3,3,475,478],[595,4,4,478,482],[596,2,2,482,484],[599,1,1,484,485],[601,1,1,485,486],[606,1,1,486,487],[612,3,3,487,490],[615,2,1,490,491],[617,1,1,491,492],[619,1,1,492,493],[622,3,3,493,496],[625,3,2,496,498],[626,1,1,498,499]]],[19,7,6,499,505,[[637,1,1,499,500],[645,1,1,500,501],[648,1,1,501,502],[649,1,1,502,503],[657,3,2,503,505]]],[20,2,2,505,507,[[664,1,1,505,506],[665,1,1,506,507]]],[21,1,1,507,508,[[671,1,1,507,508]]],[22,51,46,508,554,[[682,1,1,508,509],[685,1,1,509,510],[686,1,1,510,511],[687,1,1,511,512],[690,2,1,512,513],[692,1,1,513,514],[696,1,1,514,515],[702,1,1,515,516],[703,1,1,516,517],[704,2,2,517,519],[707,1,1,519,520],[708,1,1,520,521],[719,1,1,521,522],[720,1,1,522,523],[721,2,2,523,525],[722,2,1,525,526],[723,2,2,526,528],[725,1,1,528,529],[726,4,3,529,532],[727,1,1,532,533],[728,1,1,533,534],[729,1,1,534,535],[730,2,2,535,537],[732,1,1,537,538],[733,1,1,538,539],[734,3,2,539,541],[735,1,1,541,542],[737,1,1,542,543],[738,1,1,543,544],[740,1,1,544,545],[741,4,4,545,549],[742,2,2,549,551],[743,3,2,551,553],[744,1,1,553,554]]],[23,53,51,554,605,[[747,1,1,554,555],[751,5,5,555,560],[754,3,3,560,563],[755,3,3,563,566],[756,1,1,566,567],[757,1,1,567,568],[758,3,3,568,571],[759,1,1,571,572],[760,1,1,572,573],[764,2,2,573,575],[767,4,3,575,578],[769,1,1,578,579],[770,3,3,579,582],[771,1,1,582,583],[773,4,4,583,587],[775,1,1,587,588],[776,3,3,588,591],[777,2,2,591,593],[778,2,2,593,595],[781,1,1,595,596],[788,3,2,596,598],[790,1,1,598,599],[792,2,2,599,601],[794,1,1,601,602],[795,2,2,602,604],[796,1,1,604,605]]],[24,1,1,605,606,[[799,1,1,605,606]]],[25,13,12,606,618,[[821,2,2,606,608],[825,1,1,608,609],[837,3,3,609,612],[840,4,3,612,615],[844,2,2,615,617],[849,1,1,617,618]]],[26,4,4,618,622,[[858,3,3,618,621],[859,1,1,621,622]]],[27,4,4,622,626,[[862,3,3,622,625],[863,1,1,625,626]]],[28,2,2,626,628,[[877,2,2,626,628]]],[29,7,7,628,635,[[880,1,1,628,629],[882,1,1,629,630],[883,2,2,630,632],[884,1,1,632,633],[887,2,2,633,635]]],[32,4,3,635,638,[[896,2,1,635,636],[897,1,1,636,637],[898,1,1,637,638]]],[35,4,4,638,642,[[906,1,1,638,639],[908,3,3,639,642]]],[37,6,6,642,648,[[915,1,1,642,643],[916,1,1,643,644],[920,1,1,644,645],[923,2,2,645,647],[924,1,1,647,648]]],[38,10,7,648,655,[[925,6,3,648,651],[926,2,2,651,653],[927,1,1,653,654],[928,1,1,654,655]]]],[41,43,44,49,75,96,98,100,104,105,107,108,134,259,270,275,295,306,322,382,392,394,396,402,412,416,479,494,495,516,546,561,571,620,659,683,684,688,712,713,714,717,725,792,811,827,828,829,830,836,838,841,843,848,850,851,854,921,930,955,956,957,958,977,1019,1021,1026,1029,1072,1075,1079,1120,1121,1122,1123,1124,1125,1148,1149,1240,1246,1247,1457,1467,1517,1547,1564,1576,1592,1594,1655,1658,1758,1923,1943,1978,1990,1998,2002,2003,2058,2075,2157,2165,2314,2422,2485,2490,2492,2501,2510,2561,2678,3272,3293,3321,3351,3371,3401,3457,3462,3775,3850,4027,4050,4058,4246,4247,4343,4485,4486,4535,4548,4558,4760,5064,5099,5135,5171,5194,5206,5245,5251,5261,5313,5314,5344,5348,5353,5389,5391,5403,5404,5406,5452,5484,5489,5553,5554,5557,5568,5585,5621,5699,5761,5943,5985,6002,6046,6202,6217,6368,6390,6467,6519,6520,6526,6532,6535,6550,6750,6886,6890,6901,6902,6908,6948,6953,6981,7022,7129,7131,7150,7168,7195,7200,7204,7207,7213,7214,7232,7364,7371,7392,7393,7512,7557,7558,7630,7641,7663,7706,7772,7779,7860,7864,7866,7870,7886,8088,8122,8124,8152,8159,8175,8189,8193,8203,8206,8222,8229,8239,8310,8311,8314,8318,8320,8363,8383,8431,8474,8496,8555,8575,8652,8671,8675,8764,8818,8881,8883,8955,9001,9002,9003,9004,9005,9014,9018,9020,9027,9028,9029,9033,9054,9058,9080,9134,9144,9186,9239,9249,9251,9259,9307,9365,9366,9367,9372,9373,9459,9496,9522,9575,9658,9753,9851,9898,9903,9923,9927,9958,10026,10120,10123,10126,10138,10146,10192,10196,10199,10201,10210,10219,10220,10271,10295,10298,10302,10332,10335,10340,10388,10394,10426,10550,10551,10558,10604,10650,10693,10697,10751,10766,10785,10822,10828,10830,10849,10855,10861,10871,10884,10887,10953,10971,10972,10973,10974,10983,10996,11146,11177,11180,11212,11215,11246,11287,11288,11289,11290,11291,11292,11302,11306,11308,11315,11316,11320,11338,11340,11344,11450,11455,11486,11557,11595,11596,11613,11618,11646,11678,11705,11735,11740,11747,11756,11773,11779,11792,11873,11912,11915,11926,11997,12088,12221,12305,12307,12483,12516,12518,12521,12729,12738,12746,12759,12825,12827,12860,12870,12890,13293,13936,13984,14012,14013,14021,14023,14026,14031,14167,14183,14187,14189,14226,14310,14387,14391,14547,14576,14579,14591,14614,14644,14719,14726,14731,14824,14827,14843,14875,14877,14904,14965,14971,15017,15019,15055,15058,15066,15069,15072,15082,15191,15194,15216,15245,15257,15259,15293,15295,15296,15338,15342,15350,15409,15412,15467,15473,15502,15505,15512,15536,15542,15550,15607,15609,15698,15768,15802,15814,15815,15816,15831,15852,15861,15865,15879,15880,15881,15895,15953,16030,16093,16110,16140,16176,16178,16188,16233,16276,16293,16321,16322,16341,16376,16384,16388,16663,16911,17008,17016,17255,17260,17421,17430,17540,17734,17796,17810,17835,17904,17950,18004,18110,18119,18138,18143,18216,18244,18476,18488,18506,18512,18538,18564,18565,18603,18615,18616,18633,18637,18672,18688,18701,18702,18728,18753,18758,18759,18780,18819,18830,18856,18878,18880,18882,18885,18887,18892,18898,18912,18944,19019,19129,19130,19131,19133,19149,19207,19217,19226,19242,19245,19247,19265,19277,19302,19307,19308,19331,19357,19425,19431,19490,19509,19511,19563,19581,19588,19592,19611,19644,19656,19658,19660,19726,19749,19751,19765,19777,19784,19816,19817,19887,20026,20036,20063,20095,20097,20200,20231,20269,20277,20409,20924,20934,21058,21379,21380,21382,21455,21464,21473,21579,21580,21737,21994,22006,22007,22016,22098,22100,22103,22122,22337,22343,22386,22423,22431,22450,22460,22501,22507,22625,22637,22657,22791,22829,22832,22840,22940,22959,23028,23062,23068,23077,23095,23100,23103,23105,23108,23136,23140]]],["name's",[2,2,[[8,1,1,0,1,[[247,1,1,0,1]]],[25,1,1,1,2,[[837,1,1,1,2]]]],[7482,21381]]],["named",[3,3,[[5,1,1,0,1,[[188,1,1,0,1]]],[8,2,2,1,3,[[252,1,1,1,2],[257,1,1,2,3]]]],[5870,7622,7807]]],["names",[80,74,[[0,10,7,0,7,[[1,1,1,0,1],[24,3,2,1,3],[25,2,1,3,4],[35,3,2,4,6],[45,1,1,6,7]]],[1,12,10,7,17,[[50,1,1,7,8],[55,1,1,8,9],[77,7,6,9,15],[88,3,2,15,17]]],[3,31,31,17,48,[[117,16,16,17,33],[119,6,6,33,39],[129,2,2,39,41],[142,3,3,41,44],[143,1,1,44,45],[148,1,1,45,46],[150,2,2,46,48]]],[4,1,1,48,49,[[164,1,1,48,49]]],[5,1,1,49,50,[[203,1,1,49,50]]],[8,2,2,50,52,[[249,1,1,50,51],[252,1,1,51,52]]],[9,2,2,52,54,[[271,1,1,52,53],[289,1,1,53,54]]],[10,1,1,54,55,[[294,1,1,54,55]]],[12,7,7,55,62,[[341,1,1,55,56],[343,2,2,56,58],[345,1,1,58,59],[346,1,1,59,60],[351,1,1,60,61],[360,1,1,61,62]]],[14,2,2,62,64,[[410,1,1,62,63],[412,1,1,63,64]]],[18,3,3,64,67,[[493,1,1,64,65],[526,1,1,65,66],[624,1,1,66,67]]],[22,1,1,67,68,[[718,1,1,67,68]]],[25,4,3,68,71,[[824,2,1,68,69],[849,2,2,69,71]]],[26,1,1,71,72,[[850,1,1,71,72]]],[27,1,1,72,73,[[863,1,1,72,73]]],[37,1,1,73,74,[[923,1,1,73,74]]]],[50,671,674,710,1050,1080,1394,1533,1671,2302,2303,2304,2305,2314,2322,2670,2678,3606,3609,3621,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3694,3695,3709,3710,3732,3735,4079,4091,4522,4542,4544,4555,4756,4833,4835,5243,6278,7557,7631,8146,8661,8852,10423,10471,10519,10613,10659,10778,11007,12214,12268,14096,14659,16355,18446,21011,21703,21733,21744,22122,23061]]],["renown",[7,7,[[0,1,1,0,1,[[5,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[25,4,4,2,6,[[817,2,2,2,4],[835,1,1,4,5],[840,1,1,5,6]]],[26,1,1,6,7,[[858,1,1,6,7]]]],[141,4196,20776,20777,21342,21461,22003]]],["report",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12414]]]]},{"k":"H8035","v":[["*",[17,16,[[0,14,13,0,13,[[4,1,1,0,1],[5,1,1,1,2],[6,1,1,2,3],[8,4,4,3,7],[9,4,4,7,11],[10,3,2,11,13]]],[12,3,3,13,16,[[338,3,3,13,16]]]],[137,147,172,223,228,231,232,235,255,256,265,276,277,10256,10269,10276]]],["+",[2,2,[[0,2,2,0,2,[[4,1,1,0,1],[5,1,1,1,2]]]],[137,147]]],["Shem",[15,14,[[0,12,11,0,11,[[6,1,1,0,1],[8,4,4,1,5],[9,4,4,5,9],[10,3,2,9,11]]],[12,3,3,11,14,[[338,3,3,11,14]]]],[172,223,228,231,232,235,255,256,265,276,277,10256,10269,10276]]]]},{"k":"H8036","v":[["*",[12,10,[[14,6,5,0,5,[[407,5,4,0,4],[408,1,1,4,5]]],[26,6,5,5,10,[[851,2,2,5,7],[853,3,2,7,9],[854,1,1,9,10]]]],[12135,12138,12144,12148,12163,21778,21784,21845,21856,21886]]],["+",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21886]]],["name",[8,7,[[14,3,3,0,3,[[407,2,2,0,2],[408,1,1,2,3]]],[26,5,4,3,7,[[851,2,2,3,5],[853,3,2,5,7]]]],[12135,12148,12163,21778,21784,21845,21856]]],["names",[3,2,[[14,3,2,0,2,[[407,3,2,0,2]]]],[12138,12144]]]]},{"k":"H8037","v":[["Shamma",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10572]]]]},{"k":"H8038","v":[["Shemeber",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[338]]]]},{"k":"H8039","v":[["Shimeah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10607]]]]},{"k":"H8040","v":[["*",[54,53,[[0,6,5,0,5,[[12,1,1,0,1],[13,1,1,1,2],[23,1,1,2,3],[47,3,2,3,5]]],[1,2,2,5,7,[[63,2,2,5,7]]],[3,2,2,7,9,[[136,1,1,7,8],[138,1,1,8,9]]],[4,5,5,9,14,[[154,1,1,9,10],[157,1,1,10,11],[169,2,2,11,13],[180,1,1,13,14]]],[5,3,3,14,17,[[187,1,1,14,15],[205,1,1,15,16],[209,1,1,16,17]]],[6,3,3,17,20,[[213,1,1,17,18],[217,1,1,18,19],[226,1,1,19,20]]],[8,1,1,20,21,[[241,1,1,20,21]]],[9,3,3,21,24,[[268,2,2,21,23],[282,1,1,23,24]]],[10,3,3,24,27,[[297,2,2,24,26],[312,1,1,26,27]]],[11,2,2,27,29,[[334,1,1,27,28],[335,1,1,28,29]]],[12,1,1,29,30,[[343,1,1,29,30]]],[13,6,6,30,36,[[369,1,1,30,31],[370,3,3,31,34],[384,1,1,34,35],[400,1,1,35,36]]],[15,1,1,36,37,[[420,1,1,36,37]]],[17,1,1,37,38,[[458,1,1,37,38]]],[19,2,2,38,40,[[630,1,1,38,39],[631,1,1,39,40]]],[20,1,1,40,41,[[668,1,1,40,41]]],[21,2,2,41,43,[[672,1,1,41,42],[678,1,1,42,43]]],[22,2,2,43,45,[[687,1,1,43,44],[732,1,1,44,45]]],[25,3,3,45,48,[[802,1,1,45,46],[817,1,1,46,47],[840,1,1,47,48]]],[26,1,1,48,49,[[861,1,1,48,49]]],[31,1,1,49,50,[[892,1,1,49,50]]],[37,3,3,50,53,[[914,2,2,50,52],[922,1,1,52,53]]]],[327,351,640,1464,1465,1911,1918,4328,4401,4965,5085,5375,5384,5625,5858,6348,6466,6589,6714,6978,7343,8068,8070,8432,8973,8983,9499,10147,10173,10498,11246,11252,11253,11254,11560,11935,12497,13428,16471,16517,17495,17560,17643,17849,18726,20474,20808,21451,22088,22579,22925,22933,23051]]],["+",[14,14,[[0,2,2,0,2,[[13,1,1,0,1],[47,1,1,1,2]]],[1,2,2,2,4,[[63,2,2,2,4]]],[9,1,1,4,5,[[282,1,1,4,5]]],[10,3,3,5,8,[[297,2,2,5,7],[312,1,1,7,8]]],[13,4,4,8,12,[[369,1,1,8,9],[370,3,3,9,12]]],[15,1,1,12,13,[[420,1,1,12,13]]],[25,1,1,13,14,[[802,1,1,13,14]]]],[351,1464,1911,1918,8432,8973,8983,9499,11246,11252,11253,11254,12497,20474]]],["hand",[14,14,[[0,3,3,0,3,[[12,1,1,0,1],[47,2,2,1,3]]],[5,1,1,3,4,[[205,1,1,3,4]]],[11,1,1,4,5,[[335,1,1,4,5]]],[12,1,1,5,6,[[343,1,1,5,6]]],[17,1,1,6,7,[[458,1,1,6,7]]],[19,1,1,7,8,[[630,1,1,7,8]]],[21,2,2,8,10,[[672,1,1,8,9],[678,1,1,9,10]]],[22,1,1,10,11,[[687,1,1,10,11]]],[25,1,1,11,12,[[817,1,1,11,12]]],[26,1,1,12,13,[[861,1,1,12,13]]],[31,1,1,13,14,[[892,1,1,13,14]]]],[327,1464,1465,6348,10173,10498,13428,16471,17560,17643,17849,20808,22088,22579]]],["left",[26,26,[[0,1,1,0,1,[[23,1,1,0,1]]],[3,2,2,1,3,[[136,1,1,1,2],[138,1,1,2,3]]],[4,5,5,3,8,[[154,1,1,3,4],[157,1,1,4,5],[169,2,2,5,7],[180,1,1,7,8]]],[5,2,2,8,10,[[187,1,1,8,9],[209,1,1,9,10]]],[6,3,3,10,13,[[213,1,1,10,11],[217,1,1,11,12],[226,1,1,12,13]]],[8,1,1,13,14,[[241,1,1,13,14]]],[9,2,2,14,16,[[268,2,2,14,16]]],[11,1,1,16,17,[[334,1,1,16,17]]],[13,2,2,17,19,[[384,1,1,17,18],[400,1,1,18,19]]],[19,1,1,19,20,[[631,1,1,19,20]]],[20,1,1,20,21,[[668,1,1,20,21]]],[22,1,1,21,22,[[732,1,1,21,22]]],[25,1,1,22,23,[[840,1,1,22,23]]],[37,3,3,23,26,[[914,2,2,23,25],[922,1,1,25,26]]]],[640,4328,4401,4965,5085,5375,5384,5625,5858,6466,6589,6714,6978,7343,8068,8070,10147,11560,11935,16517,17495,18726,21451,22925,22933,23051]]]]},{"k":"H8041","v":[["left",[5,5,[[0,1,1,0,1,[[12,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]],[12,1,1,2,3,[[349,1,1,2,3]]],[22,1,1,3,4,[[708,1,1,3,4]]],[25,1,1,4,5,[[822,1,1,4,5]]]],[327,8375,10722,18238,20960]]]]},{"k":"H8042","v":[["*",[9,9,[[2,4,4,0,4,[[103,4,4,0,4]]],[10,1,1,4,5,[[297,1,1,4,5]]],[11,1,1,5,6,[[323,1,1,5,6]]],[13,2,2,6,8,[[369,1,1,6,7],[389,1,1,7,8]]],[25,1,1,8,9,[[805,1,1,8,9]]]],[3126,3127,3137,3138,8955,9840,11246,11666,20533]]],["hand",[2,2,[[2,2,2,0,2,[[103,2,2,0,2]]]],[3126,3137]]],["left",[7,7,[[2,2,2,0,2,[[103,2,2,0,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[11,1,1,3,4,[[323,1,1,3,4]]],[13,2,2,4,6,[[369,1,1,4,5],[389,1,1,5,6]]],[25,1,1,6,7,[[805,1,1,6,7]]]],[3127,3138,8955,9840,11246,11666,20533]]]]},{"k":"H8043","v":[["Shimeam",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10653]]]]},{"k":"H8044","v":[["Shamgar",[2,2,[[6,2,2,0,2,[[213,1,1,0,1],[215,1,1,1,2]]]],[6599,6629]]]]},{"k":"H8045","v":[["*",[90,86,[[0,1,1,0,1,[[33,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,1,1,2,3,[[149,1,1,2,3]]],[4,29,28,3,31,[[153,1,1,3,4],[154,4,4,4,8],[156,3,2,8,10],[158,1,1,10,11],[159,3,3,11,14],[161,6,6,14,20],[164,1,1,20,21],[180,7,7,21,28],[183,2,2,28,30],[185,1,1,30,31]]],[5,6,6,31,37,[[193,1,1,31,32],[195,1,1,32,33],[197,2,2,33,35],[209,1,1,35,36],[210,1,1,36,37]]],[6,1,1,37,38,[[231,1,1,37,38]]],[8,1,1,38,39,[[259,1,1,38,39]]],[9,5,5,39,44,[[280,3,3,39,42],[287,1,1,42,43],[288,1,1,43,44]]],[10,3,3,44,47,[[303,1,1,44,45],[305,1,1,45,46],[306,1,1,46,47]]],[11,3,3,47,50,[[322,2,2,47,49],[333,1,1,49,50]]],[12,1,1,50,51,[[342,1,1,50,51]]],[13,3,3,51,54,[[386,2,2,51,53],[399,1,1,53,54]]],[16,5,5,54,59,[[428,2,2,54,56],[429,1,1,56,57],[432,1,1,57,58],[433,1,1,58,59]]],[18,6,6,59,65,[[514,1,1,59,60],[560,1,1,60,61],[569,1,1,61,62],[583,2,2,62,64],[622,1,1,64,65]]],[19,1,1,65,66,[[641,1,1,65,66]]],[22,6,6,66,72,[[688,1,1,66,67],[691,1,1,67,68],[692,1,1,68,69],[701,1,1,69,70],[704,1,1,70,71],[726,1,1,71,72]]],[23,2,2,72,74,[[792,2,2,72,74]]],[24,1,1,74,75,[[799,1,1,74,75]]],[25,4,4,75,79,[[815,1,1,75,76],[826,1,1,76,77],[833,1,1,77,78],[835,1,1,78,79]]],[26,1,1,79,80,[[860,1,1,79,80]]],[27,1,1,80,81,[[871,1,1,80,81]]],[29,5,2,81,83,[[880,2,1,81,82],[887,3,1,82,83]]],[32,1,1,83,84,[[897,1,1,83,84]]],[36,1,1,84,85,[[910,1,1,84,85]]],[37,1,1,85,86,[[922,1,1,85,86]]]],[1010,3554,4812,4919,4950,4959,4960,4961,5007,5030,5101,5115,5134,5135,5160,5165,5171,5176,5177,5182,5270,5631,5635,5656,5659,5662,5672,5674,5731,5732,5837,5988,6061,6121,6127,6475,6484,7118,7860,8363,8367,8372,8585,8640,9218,9278,9295,9810,9821,10128,10453,11597,11610,11917,12753,12760,12770,12811,12828,14488,15251,15418,15674,15685,16340,16783,17857,17915,17951,18088,18144,18633,20088,20122,20420,20740,21090,21260,21329,22080,22233,22388,22503,22647,22877,23054]]],["+",[17,15,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,5,4,1,5,[[154,1,1,1,2],[156,2,1,2,3],[180,1,1,3,4],[183,1,1,4,5]]],[5,1,1,5,6,[[195,1,1,5,6]]],[8,1,1,6,7,[[259,1,1,6,7]]],[9,2,2,7,9,[[280,2,2,7,9]]],[10,1,1,9,10,[[306,1,1,9,10]]],[11,1,1,10,11,[[322,1,1,10,11]]],[16,1,1,11,12,[[428,1,1,11,12]]],[18,1,1,12,13,[[583,1,1,12,13]]],[29,2,1,13,14,[[887,2,1,13,14]]],[37,1,1,14,15,[[922,1,1,14,15]]]],[3554,4960,5030,5674,5731,6061,7860,8363,8367,9295,9821,12753,15685,22503,23054]]],["Destroy",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5837]]],["destroy",[28,28,[[4,7,7,0,7,[[153,1,1,0,1],[158,1,1,1,2],[159,1,1,2,3],[161,4,4,3,7]]],[5,2,2,7,9,[[193,1,1,7,8],[197,1,1,8,9]]],[9,1,1,9,10,[[280,1,1,9,10]]],[10,1,1,10,11,[[303,1,1,10,11]]],[13,1,1,11,12,[[386,1,1,11,12]]],[16,3,3,12,15,[[428,1,1,12,13],[429,1,1,13,14],[433,1,1,14,15]]],[18,2,2,15,17,[[583,1,1,15,16],[622,1,1,16,17]]],[22,3,3,17,20,[[688,1,1,17,18],[691,1,1,18,19],[701,1,1,19,20]]],[24,1,1,20,21,[[799,1,1,20,21]]],[25,3,3,21,24,[[815,1,1,21,22],[826,1,1,22,23],[835,1,1,23,24]]],[26,1,1,24,25,[[860,1,1,24,25]]],[29,1,1,25,26,[[887,1,1,25,26]]],[32,1,1,26,27,[[897,1,1,26,27]]],[36,1,1,27,28,[[910,1,1,27,28]]]],[4919,5101,5115,5160,5171,5176,5182,5988,6127,8372,9218,11610,12760,12770,12828,15674,16340,17857,17915,18088,20420,20740,21090,21329,22080,22503,22647,22877]]],["destroyed",[40,39,[[0,1,1,0,1,[[33,1,1,0,1]]],[4,16,16,1,17,[[154,3,3,1,4],[156,1,1,4,5],[159,2,2,5,7],[161,2,2,7,9],[164,1,1,9,10],[180,6,6,10,16],[183,1,1,16,17]]],[5,3,3,17,20,[[197,1,1,17,18],[209,1,1,18,19],[210,1,1,19,20]]],[6,1,1,20,21,[[231,1,1,20,21]]],[9,2,2,21,23,[[287,1,1,21,22],[288,1,1,22,23]]],[10,1,1,23,24,[[305,1,1,23,24]]],[11,2,2,24,26,[[322,1,1,24,25],[333,1,1,25,26]]],[12,1,1,26,27,[[342,1,1,26,27]]],[13,2,2,27,29,[[386,1,1,27,28],[399,1,1,28,29]]],[16,1,1,29,30,[[432,1,1,29,30]]],[18,2,2,30,32,[[514,1,1,30,31],[569,1,1,31,32]]],[22,2,2,32,34,[[704,1,1,32,33],[726,1,1,33,34]]],[23,2,2,34,36,[[792,2,2,34,36]]],[25,1,1,36,37,[[833,1,1,36,37]]],[27,1,1,37,38,[[871,1,1,37,38]]],[29,2,1,38,39,[[880,2,1,38,39]]]],[1010,4950,4959,4961,5007,5134,5135,5165,5177,5270,5631,5635,5656,5659,5662,5672,5732,6121,6475,6484,7118,8585,8640,9278,9810,10128,10453,11597,11917,12811,14488,15418,18144,18633,20088,20122,21260,22233,22388]]],["destruction",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17951]]],["down",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4812]]],["overthrown",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16783]]],["perished",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15251]]]]},{"k":"H8046","v":[["consume",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21959]]]]},{"k":"H8047","v":[["*",[39,39,[[4,1,1,0,1,[[180,1,1,0,1]]],[11,1,1,1,2,[[334,1,1,1,2]]],[13,2,2,2,4,[[395,1,1,2,3],[396,1,1,3,4]]],[18,2,2,4,6,[[523,1,1,4,5],[550,1,1,5,6]]],[22,3,3,6,9,[[683,1,1,6,7],[691,1,1,7,8],[702,1,1,8,9]]],[23,24,24,9,33,[[746,1,1,9,10],[748,1,1,10,11],[749,1,1,11,12],[752,1,1,12,13],[762,1,1,13,14],[763,1,1,14,15],[769,4,4,15,19],[773,1,1,19,20],[786,1,1,20,21],[788,2,2,21,23],[790,1,1,23,24],[792,1,1,24,25],[793,2,2,25,27],[794,2,2,27,29],[795,4,4,29,33]]],[25,1,1,33,34,[[824,1,1,33,34]]],[27,1,1,34,35,[[866,1,1,34,35]]],[28,1,1,35,36,[[876,1,1,35,36]]],[32,1,1,36,37,[[898,1,1,36,37]]],[35,1,1,37,38,[[907,1,1,37,38]]],[37,1,1,38,39,[[917,1,1,38,39]]]],[5648,10164,11799,11834,14622,15039,17748,17915,18107,18980,19034,19088,19174,19400,19415,19543,19545,19552,19572,19653,19993,20022,20032,20064,20089,20140,20144,20169,20189,20241,20249,20253,20255,21040,22161,22298,22664,22820,22976]]],["astonishment",[13,13,[[4,1,1,0,1,[[180,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]],[23,10,10,2,12,[[752,1,1,2,3],[769,3,3,3,6],[773,1,1,6,7],[786,1,1,7,8],[788,2,2,8,10],[795,2,2,10,12]]],[25,1,1,12,13,[[824,1,1,12,13]]]],[5648,11799,19174,19543,19545,19552,19653,19993,20022,20032,20249,20253,21040]]],["desolate",[10,10,[[22,2,2,0,2,[[683,1,1,0,1],[691,1,1,1,2]]],[23,6,6,2,8,[[748,1,1,2,3],[762,1,1,3,4],[763,1,1,4,5],[769,1,1,5,6],[792,1,1,6,7],[794,1,1,7,8]]],[27,1,1,8,9,[[866,1,1,8,9]]],[37,1,1,9,10,[[917,1,1,9,10]]]],[17748,17915,19034,19400,19415,19572,20089,20169,22161,22976]]],["desolation",[11,11,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[396,1,1,1,2]]],[18,1,1,2,3,[[550,1,1,2,3]]],[22,1,1,3,4,[[702,1,1,3,4]]],[23,5,5,4,9,[[793,2,2,4,6],[794,1,1,6,7],[795,2,2,7,9]]],[32,1,1,9,10,[[898,1,1,9,10]]],[35,1,1,10,11,[[907,1,1,10,11]]]],[10164,11834,15039,18107,20140,20144,20189,20241,20255,22664,22820]]],["desolations",[1,1,[[18,1,1,0,1,[[523,1,1,0,1]]]],[14622]]],["waste",[3,3,[[23,2,2,0,2,[[746,1,1,0,1],[790,1,1,1,2]]],[28,1,1,2,3,[[876,1,1,2,3]]]],[18980,20064,22298]]],["wonderful",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19088]]]]},{"k":"H8048","v":[["Shammah",[8,8,[[0,2,2,0,2,[[35,2,2,0,2]]],[8,2,2,2,4,[[251,1,1,2,3],[252,1,1,3,4]]],[9,3,3,4,7,[[289,3,3,4,7]]],[12,1,1,7,8,[[338,1,1,7,8]]]],[1053,1057,7604,7631,8664,8678,8686,10289]]]]},{"k":"H8049","v":[["Shamhuth",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11117]]]]},{"k":"H8050","v":[["*",[140,120,[[3,1,1,0,1,[[150,1,1,0,1]]],[8,129,109,1,110,[[236,1,1,1,2],[237,3,3,2,5],[238,21,15,5,20],[239,1,1,20,21],[242,10,9,21,30],[243,10,8,30,38],[244,11,10,38,48],[245,10,9,48,57],[246,3,3,57,60],[247,7,6,60,66],[248,6,5,66,71],[250,22,19,71,90],[251,11,8,90,98],[254,5,4,98,102],[260,1,1,102,103],[263,7,7,103,110]]],[12,7,7,110,117,[[343,2,2,110,112],[344,1,1,112,113],[346,1,1,113,114],[348,1,1,114,115],[363,1,1,115,116],[366,1,1,116,117]]],[13,1,1,117,118,[[401,1,1,117,118]]],[18,1,1,118,119,[[576,1,1,118,119]]],[23,1,1,119,120,[[759,1,1,119,120]]]],[4836,7232,7258,7261,7266,7277,7279,7280,7282,7283,7284,7285,7286,7287,7291,7292,7294,7295,7296,7297,7298,7355,7357,7358,7360,7361,7362,7364,7365,7367,7370,7373,7375,7376,7379,7388,7390,7391,7405,7406,7408,7409,7410,7413,7414,7415,7417,7418,7419,7427,7432,7433,7434,7435,7438,7442,7443,7452,7457,7459,7461,7466,7471,7478,7479,7480,7493,7495,7496,7498,7500,7561,7570,7571,7572,7573,7574,7576,7577,7580,7582,7584,7586,7587,7588,7591,7592,7593,7594,7595,7596,7597,7599,7602,7603,7605,7606,7608,7724,7726,7728,7730,7862,7945,7953,7954,7956,7957,7958,7962,10482,10487,10537,10637,10676,11105,11193,11984,15505,19316]]],["Samuel",[137,117,[[8,129,109,0,109,[[236,1,1,0,1],[237,3,3,1,4],[238,21,15,4,19],[239,1,1,19,20],[242,10,9,20,29],[243,10,8,29,37],[244,11,10,37,47],[245,10,9,47,56],[246,3,3,56,59],[247,7,6,59,65],[248,6,5,65,70],[250,22,19,70,89],[251,11,8,89,97],[254,5,4,97,101],[260,1,1,101,102],[263,7,7,102,109]]],[12,5,5,109,114,[[343,1,1,109,110],[346,1,1,110,111],[348,1,1,111,112],[363,1,1,112,113],[366,1,1,113,114]]],[13,1,1,114,115,[[401,1,1,114,115]]],[18,1,1,115,116,[[576,1,1,115,116]]],[23,1,1,116,117,[[759,1,1,116,117]]]],[7232,7258,7261,7266,7277,7279,7280,7282,7283,7284,7285,7286,7287,7291,7292,7294,7295,7296,7297,7298,7355,7357,7358,7360,7361,7362,7364,7365,7367,7370,7373,7375,7376,7379,7388,7390,7391,7405,7406,7408,7409,7410,7413,7414,7415,7417,7418,7419,7427,7432,7433,7434,7435,7438,7442,7443,7452,7457,7459,7461,7466,7471,7478,7479,7480,7493,7495,7496,7498,7500,7561,7570,7571,7572,7573,7574,7576,7577,7580,7582,7584,7586,7587,7588,7591,7592,7593,7594,7595,7596,7597,7599,7602,7603,7605,7606,7608,7724,7726,7728,7730,7862,7945,7953,7954,7956,7957,7958,7962,10482,10637,10676,11105,11193,11984,15505,19316]]],["Shemuel",[3,3,[[3,1,1,0,1,[[150,1,1,0,1]]],[12,2,2,1,3,[[343,1,1,1,2],[344,1,1,2,3]]]],[4836,10487,10537]]]]},{"k":"H8051","v":[["Shammua",[5,5,[[3,1,1,0,1,[[129,1,1,0,1]]],[9,1,1,1,2,[[271,1,1,1,2]]],[12,1,1,2,3,[[351,1,1,2,3]]],[15,2,2,3,5,[[423,1,1,3,4],[424,1,1,4,5]]]],[4079,8146,10778,12605,12642]]]]},{"k":"H8052","v":[["*",[27,24,[[8,2,2,0,2,[[237,1,1,0,1],[239,1,1,1,2]]],[9,2,2,2,4,[[270,1,1,2,3],[279,1,1,3,4]]],[10,2,2,4,6,[[292,1,1,4,5],[300,1,1,5,6]]],[11,1,1,6,7,[[331,1,1,6,7]]],[13,1,1,7,8,[[375,1,1,7,8]]],[18,1,1,8,9,[[589,1,1,8,9]]],[19,2,2,9,11,[[642,1,1,9,10],[652,1,1,10,11]]],[22,4,4,11,15,[[706,2,2,11,13],[715,1,1,13,14],[731,1,1,14,15]]],[23,6,4,15,19,[[754,1,1,15,16],[793,2,2,16,18],[795,3,1,18,19]]],[25,4,3,19,22,[[808,2,1,19,20],[817,1,1,20,21],[822,1,1,21,22]]],[26,1,1,22,23,[[860,1,1,22,23]]],[30,1,1,23,24,[[888,1,1,23,24]]]],[7264,7316,8124,8347,8798,9086,10068,11370,15810,16837,17138,18173,18183,18359,18712,19223,20141,20150,20258,20603,20818,20951,22080,22511]]],["+",[1,1,[[18,1,1,0,1,[[589,1,1,0,1]]]],[15810]]],["bruit",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19223]]],["doctrine",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18173]]],["fame",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9086,11370]]],["mentioned",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20818]]],["news",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17138]]],["report",[4,4,[[8,1,1,0,1,[[237,1,1,0,1]]],[19,1,1,1,2,[[642,1,1,1,2]]],[22,2,2,2,4,[[706,1,1,2,3],[731,1,1,3,4]]]],[7264,16837,18183,18712]]],["rumour",[9,6,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]],[23,4,2,2,4,[[793,1,1,2,3],[795,3,1,3,4]]],[25,2,1,4,5,[[808,2,1,4,5]]],[30,1,1,5,6,[[888,1,1,5,6]]]],[10068,18359,20141,20258,20603,22511]]],["tidings",[7,7,[[8,1,1,0,1,[[239,1,1,0,1]]],[9,2,2,1,3,[[270,1,1,1,2],[279,1,1,2,3]]],[10,1,1,3,4,[[292,1,1,3,4]]],[23,1,1,4,5,[[793,1,1,4,5]]],[25,1,1,5,6,[[822,1,1,5,6]]],[26,1,1,6,7,[[860,1,1,6,7]]]],[7316,8124,8347,8798,20150,20951,22080]]]]},{"k":"H8053","v":[["Shamir",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11039]]]]},{"k":"H8054","v":[["Shammoth",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10700]]]]},{"k":"H8055","v":[["*",[155,148,[[1,1,1,0,1,[[53,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[4,10,10,2,12,[[164,3,3,2,5],[166,1,1,5,6],[168,2,2,6,8],[176,1,1,8,9],[178,1,1,9,10],[179,1,1,10,11],[185,1,1,11,12]]],[6,4,3,12,15,[[219,3,2,12,14],[229,1,1,14,15]]],[8,5,5,15,20,[[237,1,1,15,16],[241,1,1,16,17],[246,2,2,17,19],[254,1,1,19,20]]],[9,1,1,20,21,[[267,1,1,20,21]]],[10,1,1,21,22,[[295,1,1,21,22]]],[11,1,1,22,23,[[323,1,1,22,23]]],[12,4,3,23,26,[[353,2,2,23,25],[366,2,1,25,26]]],[13,7,7,26,33,[[372,1,1,26,27],[381,1,1,27,28],[386,1,1,28,29],[389,1,1,29,30],[390,1,1,30,31],[395,1,1,31,32],[396,1,1,32,33]]],[14,1,1,33,34,[[408,1,1,33,34]]],[15,3,1,34,35,[[424,3,1,34,35]]],[16,1,1,35,36,[[433,1,1,35,36]]],[17,4,4,36,40,[[456,1,1,36,37],[457,1,1,37,38],[466,2,2,38,40]]],[18,52,52,40,92,[[482,1,1,40,41],[486,1,1,41,42],[491,1,1,42,43],[493,1,1,43,44],[496,1,1,44,45],[498,1,1,45,46],[507,1,1,46,47],[508,1,1,47,48],[509,1,1,48,49],[510,1,1,49,50],[511,1,1,50,51],[512,4,4,51,55],[515,1,1,55,56],[517,1,1,56,57],[522,1,1,57,58],[523,1,1,58,59],[525,1,1,59,60],[530,1,1,60,61],[535,1,1,61,62],[540,1,1,62,63],[541,1,1,63,64],[543,1,1,64,65],[544,1,1,65,66],[545,1,1,66,67],[546,1,1,67,68],[547,1,1,68,69],[562,1,1,69,70],[563,1,1,70,71],[566,1,1,71,72],[567,2,2,72,74],[569,1,1,74,75],[573,1,1,75,76],[574,3,3,76,79],[581,3,3,79,82],[582,2,2,82,84],[583,1,1,84,85],[584,2,2,85,87],[586,1,1,87,88],[595,1,1,88,89],[596,1,1,89,90],[599,1,1,90,91],[626,1,1,91,92]]],[19,16,16,92,108,[[632,1,1,92,93],[637,1,1,93,94],[639,1,1,94,95],[640,1,1,95,96],[642,2,2,96,98],[644,1,1,98,99],[650,3,3,99,102],[651,1,1,102,103],[654,2,2,103,105],[656,3,3,105,108]]],[20,8,8,108,116,[[661,2,2,108,110],[662,1,1,110,111],[663,1,1,111,112],[666,1,1,112,113],[668,1,1,113,114],[669,2,2,114,116]]],[21,1,1,116,117,[[671,1,1,116,117]]],[22,9,9,117,126,[[687,2,2,117,119],[692,2,2,119,121],[703,1,1,121,122],[717,1,1,122,123],[734,1,1,123,124],[743,1,1,124,125],[744,1,1,125,126]]],[23,6,4,126,130,[[764,2,1,126,127],[775,2,1,127,128],[785,1,1,128,129],[794,1,1,129,130]]],[24,2,2,130,132,[[798,1,1,130,131],[800,1,1,131,132]]],[25,3,3,132,135,[[808,1,1,132,133],[826,1,1,133,134],[836,1,1,134,135]]],[27,2,2,135,137,[[868,1,1,135,136],[870,1,1,136,137]]],[28,2,2,137,139,[[877,2,2,137,139]]],[29,1,1,139,140,[[884,1,1,139,140]]],[30,1,1,140,141,[[888,1,1,140,141]]],[31,1,1,141,142,[[892,1,1,141,142]]],[32,1,1,142,143,[[899,1,1,142,143]]],[34,1,1,143,144,[[903,1,1,143,144]]],[35,1,1,144,145,[[908,1,1,144,145]]],[37,4,3,145,148,[[912,1,1,145,146],[914,1,1,146,147],[920,2,1,147,148]]]],[1615,3442,5247,5252,5258,5316,5353,5356,5530,5577,5592,5828,6767,6773,7027,7241,7344,7454,7460,7711,8042,8885,9849,10830,10851,11173,11323,11505,11614,11677,11687,11827,11852,12173,12667,12832,13367,13408,13613,13617,13984,14023,14087,14101,14176,14192,14320,14338,14366,14387,14390,14425,14429,14434,14437,14506,14541,14605,14618,14645,14725,14789,14850,14860,14879,14897,14903,14967,14975,15277,15288,15368,15392,15393,15415,15476,15479,15486,15490,15586,15602,15605,15609,15644,15656,15729,15741,15783,15893,15972,16090,16387,16535,16657,16744,16756,16827,16837,16894,17059,17068,17069,17096,17178,17180,17226,17227,17230,17371,17381,17397,17416,17473,17512,17521,17522,17541,17832,17846,17936,17957,18127,18414,18760,18910,18932,19437,19704,19970,20177,20349,20441,20589,21089,21358,22181,22209,22332,22334,22463,22522,22574,22672,22746,22834,22909,22932,23023]]],["+",[5,4,[[4,1,1,0,1,[[176,1,1,0,1]]],[20,1,1,1,2,[[668,1,1,1,2]]],[23,2,1,2,3,[[764,2,1,2,3]]],[27,1,1,3,4,[[868,1,1,3,4]]]],[5530,17512,19437,22181]]],["Rejoice",[9,9,[[4,1,1,0,1,[[185,1,1,0,1]]],[18,2,2,1,3,[[563,1,1,1,2],[574,1,1,2,3]]],[19,1,1,3,4,[[651,1,1,3,4]]],[20,1,1,4,5,[[669,1,1,4,5]]],[22,2,2,5,7,[[692,1,1,5,6],[744,1,1,6,7]]],[27,1,1,7,8,[[870,1,1,7,8]]],[32,1,1,8,9,[[899,1,1,8,9]]]],[5828,15288,15490,17096,17522,17957,18932,22209,22672]]],["cheereth",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6767]]],["glad",[43,43,[[1,1,1,0,1,[[53,1,1,0,1]]],[8,1,1,1,2,[[246,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[16,1,1,3,4,[[433,1,1,3,4]]],[17,1,1,4,5,[[457,1,1,4,5]]],[18,27,27,5,32,[[486,1,1,5,6],[491,1,1,6,7],[493,1,1,7,8],[509,1,1,8,9],[511,1,1,9,10],[512,1,1,10,11],[517,1,1,11,12],[522,1,1,12,13],[523,1,1,13,14],[530,1,1,14,15],[541,1,1,15,16],[544,1,1,16,17],[545,1,1,17,18],[546,1,1,18,19],[547,1,1,19,20],[567,2,2,20,22],[569,1,1,22,23],[574,2,2,23,25],[581,2,2,25,27],[582,1,1,27,28],[584,1,1,28,29],[595,1,1,29,30],[596,1,1,30,31],[599,1,1,31,32]]],[19,5,5,32,37,[[637,1,1,32,33],[639,1,1,33,34],[642,1,1,34,35],[650,1,1,35,36],[654,1,1,36,37]]],[22,1,1,37,38,[[717,1,1,37,38]]],[23,2,2,38,40,[[785,1,1,38,39],[794,1,1,39,40]]],[24,1,1,40,41,[[800,1,1,40,41]]],[35,1,1,41,42,[[908,1,1,41,42]]],[37,1,1,42,43,[[920,1,1,42,43]]]],[1615,7454,10851,12832,13408,14023,14087,14101,14366,14390,14437,14541,14605,14618,14725,14860,14897,14903,14967,14975,15392,15393,15415,15479,15486,15586,15605,15644,15729,15893,15972,16090,16657,16744,16827,17069,17180,18414,19970,20177,20441,22834,23023]]],["joy",[5,5,[[18,1,1,0,1,[[498,1,1,0,1]]],[19,2,2,1,3,[[644,1,1,1,2],[650,1,1,2,3]]],[22,2,2,3,5,[[687,2,2,3,5]]]],[14192,16894,17068,17832,17846]]],["joyful",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[22,1,1,1,2,[[734,1,1,1,2]]]],[12173,18760]]],["merry",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17473]]],["rejoice",[64,62,[[2,1,1,0,1,[[112,1,1,0,1]]],[4,8,8,1,9,[[164,3,3,1,4],[166,1,1,4,5],[168,2,2,5,7],[178,1,1,7,8],[179,1,1,8,9]]],[6,2,1,9,10,[[219,2,1,9,10]]],[8,2,2,10,12,[[237,1,1,10,11],[254,1,1,11,12]]],[9,1,1,12,13,[[267,1,1,12,13]]],[12,1,1,13,14,[[353,1,1,13,14]]],[13,2,2,14,16,[[372,1,1,14,15],[386,1,1,15,16]]],[15,1,1,16,17,[[424,1,1,16,17]]],[17,1,1,17,18,[[456,1,1,17,18]]],[18,20,20,18,38,[[482,1,1,18,19],[507,1,1,19,20],[508,1,1,20,21],[510,1,1,21,22],[512,2,2,22,24],[515,1,1,24,25],[525,1,1,25,26],[535,1,1,26,27],[540,1,1,27,28],[543,1,1,28,29],[562,1,1,29,30],[566,1,1,30,31],[573,1,1,31,32],[581,1,1,32,33],[582,1,1,33,34],[583,1,1,34,35],[584,1,1,35,36],[586,1,1,36,37],[626,1,1,37,38]]],[19,5,5,38,43,[[632,1,1,38,39],[650,1,1,39,40],[654,1,1,40,41],[656,2,2,41,43]]],[20,5,5,43,48,[[661,2,2,43,45],[662,1,1,45,46],[663,1,1,46,47],[669,1,1,47,48]]],[21,1,1,48,49,[[671,1,1,48,49]]],[22,3,3,49,52,[[692,1,1,49,50],[703,1,1,50,51],[743,1,1,51,52]]],[23,2,1,52,53,[[775,2,1,52,53]]],[24,1,1,53,54,[[798,1,1,53,54]]],[25,1,1,54,55,[[808,1,1,54,55]]],[28,2,2,55,57,[[877,2,2,55,57]]],[29,1,1,57,58,[[884,1,1,57,58]]],[34,1,1,58,59,[[903,1,1,58,59]]],[37,3,3,59,62,[[912,1,1,59,60],[914,1,1,60,61],[920,1,1,61,62]]]],[3442,5247,5252,5258,5316,5353,5356,5577,5592,6773,7241,7711,8042,10830,11323,11614,12667,13367,13984,14320,14338,14387,14429,14434,14506,14645,14789,14850,14879,15277,15368,15476,15602,15609,15656,15741,15783,16387,16535,17059,17178,17226,17230,17371,17381,17397,17416,17521,17541,17936,18127,18910,19704,20349,20589,22332,22334,22463,22746,22909,22932,23023]]],["rejoiced",[19,17,[[6,1,1,0,1,[[229,1,1,0,1]]],[8,2,2,1,3,[[241,1,1,1,2],[246,1,1,2,3]]],[10,1,1,3,4,[[295,1,1,3,4]]],[11,1,1,4,5,[[323,1,1,4,5]]],[12,2,1,5,6,[[366,2,1,5,6]]],[13,5,5,6,11,[[381,1,1,6,7],[389,1,1,7,8],[390,1,1,8,9],[395,1,1,9,10],[396,1,1,10,11]]],[15,2,1,11,12,[[424,2,1,11,12]]],[17,2,2,12,14,[[466,2,2,12,14]]],[18,1,1,14,15,[[512,1,1,14,15]]],[25,1,1,15,16,[[826,1,1,15,16]]],[30,1,1,16,17,[[888,1,1,16,17]]]],[7027,7344,7460,8885,9849,11173,11505,11677,11687,11827,11852,12667,13613,13617,14425,21089,22522]]],["rejoiceth",[4,4,[[19,3,3,0,3,[[640,1,1,0,1],[642,1,1,1,2],[656,1,1,2,3]]],[25,1,1,3,4,[[836,1,1,3,4]]]],[16756,16837,17227,21358]]],["rejoicing",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14176]]],["was",[1,1,[[31,1,1,0,1,[[892,1,1,0,1]]]],[22574]]]]},{"k":"H8056","v":[["*",[20,20,[[4,1,1,0,1,[[168,1,1,0,1]]],[10,4,4,1,5,[[291,2,2,1,3],[294,1,1,3,4],[298,1,1,4,5]]],[11,1,1,5,6,[[323,1,1,5,6]]],[13,2,2,6,8,[[373,1,1,6,7],[389,1,1,7,8]]],[16,2,2,8,10,[[430,2,2,8,10]]],[17,1,1,10,11,[[438,1,1,10,11]]],[18,3,3,11,14,[[512,1,1,11,12],[590,1,1,12,13],[603,1,1,13,14]]],[19,4,4,14,18,[[629,1,1,14,15],[642,1,1,15,16],[644,2,2,16,18]]],[20,1,1,18,19,[[660,1,1,18,19]]],[22,1,1,19,20,[[702,1,1,19,20]]]],[5357,8757,8762,8864,9051,9843,11334,11669,12788,12793,12926,14436,15822,16118,16447,16820,16878,16895,17343,18102]]],["+",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18102]]],["glad",[3,3,[[13,1,1,0,1,[[373,1,1,0,1]]],[18,1,1,1,2,[[603,1,1,1,2]]],[19,1,1,2,3,[[644,1,1,2,3]]]],[11334,16118,16878]]],["joyful",[3,3,[[10,1,1,0,1,[[298,1,1,0,1]]],[16,1,1,1,2,[[430,1,1,1,2]]],[18,1,1,2,3,[[590,1,1,2,3]]]],[9051,12788,15822]]],["merrily",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12793]]],["merry",[3,3,[[10,1,1,0,1,[[294,1,1,0,1]]],[19,2,2,1,3,[[642,1,1,1,2],[644,1,1,2,3]]]],[8864,16820,16895]]],["rejoice",[4,4,[[4,1,1,0,1,[[168,1,1,0,1]]],[17,1,1,1,2,[[438,1,1,1,2]]],[18,1,1,2,3,[[512,1,1,2,3]]],[19,1,1,3,4,[[629,1,1,3,4]]]],[5357,12926,14436,16447]]],["rejoiced",[4,4,[[10,1,1,0,1,[[291,1,1,0,1]]],[11,1,1,1,2,[[323,1,1,1,2]]],[13,1,1,2,3,[[389,1,1,2,3]]],[20,1,1,3,4,[[660,1,1,3,4]]]],[8757,9843,11669,17343]]],["rejoicing",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8762]]]]},{"k":"H8057","v":[["*",[93,89,[[0,1,1,0,1,[[30,1,1,0,1]]],[3,1,1,1,2,[[126,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[6,1,1,3,4,[[226,1,1,3,4]]],[8,1,1,4,5,[[253,1,1,4,5]]],[9,1,1,5,6,[[272,1,1,5,6]]],[10,1,1,6,7,[[291,1,1,6,7]]],[12,6,6,7,13,[[349,1,1,7,8],[352,2,2,8,10],[366,3,3,10,13]]],[13,6,6,13,19,[[386,1,1,13,14],[389,1,1,14,15],[395,1,1,15,16],[396,3,3,16,19]]],[14,3,3,19,22,[[405,2,2,19,21],[408,1,1,21,22]]],[15,6,5,22,27,[[420,2,2,22,24],[424,4,3,24,27]]],[16,7,6,27,33,[[433,2,2,27,29],[434,5,4,29,33]]],[17,1,1,33,34,[[455,1,1,33,34]]],[18,13,13,34,47,[[481,1,1,34,35],[493,1,1,35,36],[498,1,1,36,37],[507,1,1,37,38],[520,1,1,38,39],[522,1,1,39,40],[528,1,1,40,41],[545,1,1,41,42],[574,1,1,42,43],[577,1,1,43,44],[583,1,1,44,45],[614,2,2,45,47]]],[19,8,8,47,55,[[637,1,1,47,48],[639,1,1,48,49],[641,2,2,49,51],[642,2,2,51,53],[648,2,2,53,55]]],[20,8,8,55,63,[[660,4,4,55,59],[663,1,1,59,60],[665,1,1,60,61],[666,1,1,61,62],[667,1,1,62,63]]],[21,1,1,63,64,[[673,1,1,63,64]]],[22,14,12,64,76,[[687,2,1,64,65],[694,1,1,65,66],[700,1,1,66,67],[702,1,1,67,68],[707,1,1,68,69],[708,1,1,69,70],[713,1,1,70,71],[729,3,2,71,73],[733,1,1,73,74],[739,1,1,74,75],[744,1,1,75,76]]],[23,7,7,76,83,[[751,1,1,76,77],[759,1,1,77,78],[760,1,1,78,79],[769,1,1,79,80],[775,1,1,80,81],[777,1,1,81,82],[792,1,1,82,83]]],[25,2,2,83,85,[[836,1,1,83,84],[837,1,1,84,85]]],[28,1,1,85,86,[[876,1,1,85,86]]],[31,1,1,86,87,[[892,1,1,86,87]]],[35,1,1,87,88,[[908,1,1,87,88]]],[37,1,1,88,89,[[918,1,1,88,89]]]],[900,3998,5658,6972,7682,8169,8757,10760,10807,10816,11173,11181,11186,11614,11674,11821,11848,11850,11853,12109,12110,12173,12505,12510,12651,12667,12668,12833,12834,12851,12852,12853,12856,13331,13972,14103,14197,14330,14570,14612,14699,14903,15489,15510,15656,16225,16228,16684,16739,16782,16785,16828,16830,16999,17001,17334,17335,17343,17359,17417,17433,17473,17482,17582,17832,17979,18065,18106,18212,18246,18330,18676,18684,18752,18850,18927,19153,19331,19345,19544,19698,19786,20113,21359,21364,22307,22574,22837,22995]]],["+",[2,2,[[18,1,1,0,1,[[498,1,1,0,1]]],[31,1,1,1,2,[[892,1,1,1,2]]]],[14197,22574]]],["exceeding",[1,1,[[18,1,1,0,1,[[520,1,1,0,1]]]],[14570]]],["exceedingly",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14903]]],["gladness",[32,32,[[3,1,1,0,1,[[126,1,1,0,1]]],[9,1,1,1,2,[[272,1,1,1,2]]],[12,1,1,2,3,[[366,1,1,2,3]]],[13,3,3,3,6,[[395,1,1,3,4],[396,2,2,4,6]]],[15,2,2,6,8,[[420,1,1,6,7],[424,1,1,7,8]]],[16,4,4,8,12,[[433,1,1,8,9],[434,3,3,9,12]]],[18,7,7,12,19,[[481,1,1,12,13],[507,1,1,13,14],[522,1,1,14,15],[528,1,1,15,16],[574,1,1,16,17],[577,1,1,17,18],[583,1,1,18,19]]],[19,1,1,19,20,[[637,1,1,19,20]]],[21,1,1,20,21,[[673,1,1,20,21]]],[22,5,5,21,26,[[694,1,1,21,22],[700,1,1,22,23],[708,1,1,23,24],[713,1,1,24,25],[729,1,1,25,26]]],[23,5,5,26,31,[[751,1,1,26,27],[760,1,1,27,28],[769,1,1,28,29],[775,1,1,29,30],[777,1,1,30,31]]],[37,1,1,31,32,[[918,1,1,31,32]]]],[3998,8169,11186,11821,11848,11850,12510,12651,12833,12851,12852,12853,13972,14330,14612,14699,15489,15510,15656,16684,17582,17979,18065,18246,18330,18676,19153,19345,19544,19698,19786,22995]]],["joy",[42,38,[[8,1,1,0,1,[[253,1,1,0,1]]],[10,1,1,1,2,[[291,1,1,1,2]]],[12,5,5,2,7,[[349,1,1,2,3],[352,2,2,3,5],[366,2,2,5,7]]],[13,2,2,7,9,[[386,1,1,7,8],[396,1,1,8,9]]],[14,3,3,9,12,[[405,2,2,9,11],[408,1,1,11,12]]],[15,2,1,12,13,[[424,2,1,12,13]]],[16,3,2,13,15,[[433,1,1,13,14],[434,2,1,14,15]]],[17,1,1,15,16,[[455,1,1,15,16]]],[18,2,2,16,18,[[493,1,1,16,17],[614,1,1,17,18]]],[19,5,5,18,23,[[639,1,1,18,19],[641,1,1,19,20],[642,2,2,20,22],[648,1,1,22,23]]],[20,4,4,23,27,[[660,2,2,23,25],[663,1,1,25,26],[667,1,1,26,27]]],[22,9,7,27,34,[[687,2,1,27,28],[702,1,1,28,29],[707,1,1,29,30],[729,2,1,30,31],[733,1,1,31,32],[739,1,1,32,33],[744,1,1,33,34]]],[23,1,1,34,35,[[792,1,1,34,35]]],[25,1,1,35,36,[[837,1,1,35,36]]],[28,1,1,36,37,[[876,1,1,36,37]]],[35,1,1,37,38,[[908,1,1,37,38]]]],[7682,8757,10760,10807,10816,11173,11181,11614,11853,12109,12110,12173,12667,12834,12856,13331,14103,16228,16739,16782,16828,16830,16999,17343,17359,17417,17482,17832,18106,18212,18684,18752,18850,18927,20113,21364,22307,22837]]],["joyfulness",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5658]]],["mirth",[8,8,[[0,1,1,0,1,[[30,1,1,0,1]]],[15,1,1,1,2,[[420,1,1,1,2]]],[18,1,1,2,3,[[614,1,1,2,3]]],[19,1,1,3,4,[[641,1,1,3,4]]],[20,4,4,4,8,[[660,2,2,4,6],[665,1,1,6,7],[666,1,1,7,8]]]],[900,12505,16225,16785,17334,17335,17433,17473]]],["pleasure",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17001]]],["rejoice",[2,2,[[6,1,1,0,1,[[226,1,1,0,1]]],[25,1,1,1,2,[[836,1,1,1,2]]]],[6972,21359]]],["rejoiced",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12668]]],["rejoicing",[2,2,[[13,1,1,0,1,[[389,1,1,0,1]]],[23,1,1,1,2,[[759,1,1,1,2]]]],[11674,19331]]]]},{"k":"H8058","v":[["*",[9,8,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,2,2,1,3,[[167,2,2,1,3]]],[9,1,1,3,4,[[272,1,1,3,4]]],[11,2,1,4,5,[[321,2,1,4,5]]],[12,1,1,5,6,[[350,1,1,5,6]]],[18,1,1,6,7,[[618,1,1,6,7]]],[23,1,1,7,8,[[761,1,1,7,8]]]],[2155,5321,5322,8163,9789,10769,16282,19361]]],["discontinue",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19361]]],["down",[2,1,[[11,2,1,0,1,[[321,2,1,0,1]]]],[9789]]],["overthrown",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16282]]],["release",[2,2,[[4,2,2,0,2,[[167,2,2,0,2]]]],[5321,5322]]],["rest",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2155]]],["shook",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8163]]],["stumbled",[1,1,[[12,1,1,0,1,[[350,1,1,0,1]]]],[10769]]]]},{"k":"H8059","v":[["release",[5,4,[[4,5,4,0,4,[[167,4,3,0,3],[183,1,1,3,4]]]],[5320,5321,5328,5738]]]]},{"k":"H8060","v":[["Shammai",[6,5,[[12,6,5,0,5,[[339,5,4,0,4],[341,1,1,4,5]]]],[10334,10338,10350,10351,10402]]]]},{"k":"H8061","v":[["Shemida",[3,3,[[3,1,1,0,1,[[142,1,1,0,1]]],[5,1,1,1,2,[[203,1,1,1,2]]],[12,1,1,2,3,[[344,1,1,2,3]]]],[4521,6277,10554]]]]},{"k":"H8062","v":[["Shemidaites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4521]]]]},{"k":"H8063","v":[["mantle",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6617]]]]},{"k":"H8064","v":[["*",[421,395,[[0,41,39,0,39,[[0,10,10,0,10],[1,5,4,10,14],[5,2,2,14,16],[6,4,4,16,20],[7,2,1,20,21],[8,1,1,21,22],[10,1,1,22,23],[13,2,2,23,25],[14,1,1,25,26],[18,1,1,26,27],[20,1,1,27,28],[21,3,3,28,31],[23,2,2,31,33],[25,1,1,33,34],[26,2,2,34,36],[27,2,2,36,38],[48,1,1,38,39]]],[1,14,14,39,53,[[58,4,4,39,43],[59,2,2,43,45],[65,1,1,45,46],[66,1,1,46,47],[69,3,3,47,50],[73,1,1,50,51],[80,1,1,51,52],[81,1,1,52,53]]],[2,1,1,53,54,[[115,1,1,53,54]]],[4,44,38,54,92,[[153,2,2,54,56],[154,1,1,56,57],[155,1,1,57,58],[156,10,7,58,65],[157,1,1,65,66],[159,1,1,66,67],[161,2,2,67,69],[162,4,2,69,71],[163,3,3,71,74],[169,1,1,74,75],[177,1,1,75,76],[178,1,1,76,77],[180,5,5,77,82],[181,1,1,82,83],[182,4,3,83,86],[183,1,1,86,87],[184,2,2,87,89],[185,3,3,89,92]]],[5,4,4,92,96,[[188,1,1,92,93],[194,1,1,93,94],[196,2,2,94,96]]],[6,4,4,96,100,[[215,2,2,96,98],[223,1,1,98,99],[230,1,1,99,100]]],[8,4,4,100,104,[[237,1,1,100,101],[240,1,1,101,102],[252,2,2,102,104]]],[9,6,5,104,109,[[284,1,1,104,105],[287,2,1,105,106],[288,3,3,106,109]]],[10,20,18,109,127,[[298,15,13,109,122],[304,1,1,122,123],[306,1,1,123,124],[308,1,1,124,125],[311,1,1,125,126],[312,1,1,126,127]]],[11,16,14,127,141,[[313,5,3,127,130],[314,2,2,130,132],[319,2,2,132,134],[326,1,1,134,135],[329,1,1,135,136],[331,1,1,136,137],[333,2,2,137,139],[335,2,2,139,141]]],[12,6,6,141,147,[[353,2,2,141,143],[358,2,2,143,145],[364,1,1,145,146],[366,1,1,146,147]]],[13,29,25,147,172,[[368,4,2,147,149],[372,14,12,149,161],[373,3,3,161,164],[384,1,1,164,165],[386,1,1,165,166],[394,1,1,166,167],[396,1,1,167,168],[398,1,1,168,169],[399,2,2,169,171],[402,1,1,171,172]]],[14,2,2,172,174,[[403,1,1,172,173],[411,1,1,173,174]]],[15,14,11,174,185,[[413,3,3,174,177],[414,2,2,177,179],[421,9,6,179,185]]],[17,23,23,185,208,[[436,1,1,185,186],[437,1,1,186,187],[444,1,1,187,188],[446,1,1,188,189],[447,1,1,189,190],[449,1,1,190,191],[450,1,1,191,192],[451,1,1,192,193],[455,2,2,193,195],[457,2,2,195,197],[461,2,2,197,199],[463,2,2,199,201],[470,2,2,201,203],[472,1,1,203,204],[473,3,3,204,207],[476,1,1,207,208]]],[18,74,70,208,278,[[479,1,1,208,209],[485,3,3,209,212],[488,1,1,212,213],[491,1,1,213,214],[495,2,2,214,216],[496,2,2,216,218],[497,1,1,218,219],[510,2,2,219,221],[513,1,1,221,222],[527,2,2,222,224],[530,1,1,224,225],[534,4,4,225,229],[545,3,2,229,231],[546,1,1,231,232],[550,2,2,232,234],[553,1,1,234,235],[555,3,3,235,238],[556,1,1,238,239],[557,1,1,239,240],[562,1,1,240,241],[566,4,4,241,245],[573,2,2,245,247],[574,1,1,247,248],[579,2,2,248,250],[580,2,2,250,252],[581,2,2,252,254],[582,1,1,254,255],[584,1,1,255,256],[585,2,2,256,258],[590,2,2,258,260],[592,4,3,260,263],[596,1,1,263,264],[598,1,1,264,265],[600,1,1,265,266],[601,1,1,266,267],[611,1,1,267,268],[612,1,1,268,269],[613,2,2,269,271],[616,1,1,271,272],[621,1,1,272,273],[623,1,1,273,274],[624,1,1,274,275],[625,5,3,275,278]]],[19,6,6,278,284,[[630,1,1,278,279],[635,1,1,279,280],[650,1,1,280,281],[652,1,1,281,282],[657,2,2,282,284]]],[20,5,5,284,289,[[659,1,1,284,285],[660,1,1,285,286],[661,1,1,286,287],[663,1,1,287,288],[668,1,1,288,289]]],[22,33,31,289,320,[[679,1,1,289,290],[691,3,3,290,293],[692,2,2,293,295],[712,3,2,295,297],[715,1,1,297,298],[718,2,2,298,300],[720,1,1,300,301],[722,2,2,301,303],[723,3,3,303,306],[725,1,1,306,307],[726,1,1,307,308],[727,1,1,308,309],[728,1,1,309,310],[729,4,3,310,313],[733,2,2,313,315],[741,1,1,315,316],[742,1,1,316,317],[743,1,1,317,318],[744,2,2,318,320]]],[23,33,33,320,353,[[746,1,1,320,321],[748,3,3,321,324],[751,2,2,324,326],[752,2,2,326,328],[753,1,1,328,329],[754,3,3,329,332],[758,1,1,332,333],[759,1,1,333,334],[760,1,1,334,335],[763,2,2,335,337],[767,1,1,337,338],[775,1,1,338,339],[776,1,1,339,340],[777,2,2,340,342],[778,1,1,342,343],[788,4,4,343,347],[793,1,1,347,348],[795,5,5,348,353]]],[24,5,5,353,358,[[798,1,1,353,354],[799,3,3,354,357],[800,1,1,357,358]]],[25,9,9,358,367,[[802,1,1,358,359],[809,1,1,359,360],[830,1,1,360,361],[832,2,2,361,363],[833,3,3,363,366],[839,1,1,366,367]]],[26,5,5,367,372,[[857,2,2,367,369],[858,1,1,369,370],[860,1,1,370,371],[861,1,1,371,372]]],[27,4,4,372,376,[[863,2,2,372,374],[865,1,1,374,375],[868,1,1,375,376]]],[28,3,3,376,379,[[877,2,2,376,378],[878,1,1,378,379]]],[29,2,2,379,381,[[887,2,2,379,381]]],[31,1,1,381,382,[[889,1,1,381,382]]],[33,1,1,382,383,[[902,1,1,382,383]]],[34,1,1,383,384,[[905,1,1,383,384]]],[35,2,2,384,386,[[906,2,2,384,386]]],[36,3,3,386,389,[[909,1,1,386,387],[910,2,2,387,389]]],[37,5,5,389,394,[[912,1,1,389,390],[915,1,1,390,391],[916,1,1,391,392],[918,1,1,392,393],[922,1,1,393,394]]],[38,1,1,394,395,[[927,1,1,394,395]]]],[0,7,8,13,14,16,19,25,27,29,31,34,49,50,144,154,162,170,178,182,185,207,270,355,358,365,481,530,558,562,564,594,598,696,755,766,785,790,1498,1750,1752,1764,1765,1798,1799,1951,1997,2055,2062,2073,2187,2437,2451,3543,4902,4920,4963,4999,5015,5021,5023,5030,5036,5040,5043,5061,5135,5158,5171,5200,5208,5219,5225,5229,5367,5566,5581,5623,5634,5635,5637,5673,5699,5712,5720,5727,5756,5759,5798,5823,5836,5838,5880,6022,6075,6077,6627,6643,6904,7094,7250,7331,7662,7664,8487,8590,8610,8612,8616,9007,9008,9012,9015,9017,9019,9020,9021,9024,9028,9030,9034,9039,9229,9287,9386,9475,9499,9543,9545,9547,9552,9562,9709,9726,9923,9999,10076,10122,10124,10169,10170,10846,10851,10950,10960,11132,11175,11217,11223,11295,11296,11300,11303,11305,11307,11308,11309,11312,11315,11317,11321,11325,11337,11338,11560,11593,11773,11854,11895,11911,11913,12016,12018,12243,12300,12301,12305,12311,12327,12517,12524,12526,12534,12538,12539,12885,12903,13059,13116,13135,13193,13218,13257,13332,13353,13401,13403,13478,13480,13525,13528,13725,13731,13772,13822,13826,13830,13899,13949,14013,14015,14020,14063,14082,14127,14131,14169,14174,14188,14372,14379,14443,14672,14674,14721,14771,14773,14778,14779,14908,14933,14969,15029,15045,15089,15136,15137,15139,15187,15212,15282,15328,15331,15337,15355,15470,15476,15484,15540,15546,15560,15568,15573,15583,15646,15725,15746,15747,15817,15819,15833,15845,15846,15987,16083,16099,16110,16175,16181,16201,16222,16247,16310,16347,16359,16372,16375,16384,16474,16629,17049,17116,17255,17270,17328,17336,17360,17399,17513,17656,17911,17916,17919,17940,17941,18307,18308,18368,18432,18442,18485,18556,18557,18569,18573,18579,18612,18627,18649,18665,18679,18686,18689,18749,18750,18881,18886,18914,18923,18944,18977,19050,19052,19055,19137,19152,19155,19160,19185,19203,19213,19214,19315,19318,19340,19414,19420,19508,19728,19748,19797,19800,19821,20027,20028,20029,20035,20163,20221,20227,20228,20260,20265,20333,20395,20404,20420,20439,20465,20607,21188,21236,21243,21252,21255,21256,21445,21969,21971,22000,22040,22088,22123,22126,22136,22190,22321,22341,22359,22497,22501,22540,22728,22771,22790,22792,22850,22861,22876,22905,22945,22952,22988,23046,23130]]],["+",[21,21,[[4,1,1,0,1,[[156,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[13,2,2,2,4,[[372,1,1,2,3],[373,1,1,3,4]]],[15,4,4,4,8,[[421,4,4,4,8]]],[18,8,8,8,16,[[491,1,1,8,9],[497,1,1,9,10],[510,1,1,10,11],[530,1,1,11,12],[534,1,1,12,13],[557,1,1,13,14],[562,1,1,14,15],[579,1,1,15,16]]],[22,3,3,16,19,[[692,1,1,16,17],[725,1,1,17,18],[741,1,1,18,19]]],[24,2,2,19,21,[[798,1,1,19,20],[799,1,1,20,21]]]],[5036,9030,11317,11325,12524,12526,12538,12539,14082,14188,14379,14721,14771,15212,15282,15540,17940,18612,18881,20333,20404]]],["Heaven",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[7]]],["air",[21,21,[[0,8,8,0,8,[[0,3,3,0,3],[1,2,2,3,5],[5,1,1,5,6],[6,1,1,6,7],[8,1,1,7,8]]],[4,2,2,8,10,[[156,1,1,8,9],[180,1,1,9,10]]],[8,2,2,10,12,[[252,2,2,10,12]]],[9,1,1,12,13,[[287,1,1,12,13]]],[10,3,3,13,16,[[304,1,1,13,14],[306,1,1,14,15],[311,1,1,15,16]]],[17,2,2,16,18,[[447,1,1,16,17],[463,1,1,17,18]]],[18,1,1,18,19,[[485,1,1,18,19]]],[19,1,1,19,20,[[657,1,1,19,20]]],[20,1,1,20,21,[[668,1,1,20,21]]]],[25,27,29,49,50,144,162,207,5021,5637,7662,7664,8590,9229,9287,9475,13135,13525,14020,17270,17513]]],["heaven",[270,258,[[0,29,28,0,28,[[0,6,6,0,6],[5,1,1,6,7],[6,3,3,7,10],[7,2,1,10,11],[10,1,1,11,12],[13,2,2,12,14],[14,1,1,14,15],[18,1,1,15,16],[20,1,1,16,17],[21,3,3,17,20],[23,2,2,20,22],[25,1,1,22,23],[26,2,2,23,25],[27,2,2,25,27],[48,1,1,27,28]]],[1,14,14,28,42,[[58,4,4,28,32],[59,2,2,32,34],[65,1,1,34,35],[66,1,1,35,36],[69,3,3,36,39],[73,1,1,39,40],[80,1,1,40,41],[81,1,1,41,42]]],[2,1,1,42,43,[[115,1,1,42,43]]],[4,38,34,43,77,[[153,2,2,43,45],[154,1,1,45,46],[155,1,1,46,47],[156,8,6,47,53],[157,1,1,53,54],[159,1,1,54,55],[161,2,2,55,57],[162,3,2,57,59],[163,3,3,59,62],[169,1,1,62,63],[177,1,1,63,64],[178,1,1,64,65],[180,4,4,65,69],[181,1,1,69,70],[182,4,3,70,73],[183,1,1,73,74],[184,1,1,74,75],[185,2,2,75,77]]],[5,4,4,77,81,[[188,1,1,77,78],[194,1,1,78,79],[196,2,2,79,81]]],[6,3,3,81,84,[[215,1,1,81,82],[223,1,1,82,83],[230,1,1,83,84]]],[8,2,2,84,86,[[237,1,1,84,85],[240,1,1,85,86]]],[9,4,4,86,90,[[284,1,1,86,87],[287,1,1,87,88],[288,2,2,88,90]]],[10,15,14,90,104,[[298,13,12,90,102],[308,1,1,102,103],[312,1,1,103,104]]],[11,16,14,104,118,[[313,5,3,104,107],[314,2,2,107,109],[319,2,2,109,111],[326,1,1,111,112],[329,1,1,112,113],[331,1,1,113,114],[333,2,2,114,116],[335,2,2,116,118]]],[12,3,3,118,121,[[358,2,2,118,120],[366,1,1,120,121]]],[13,22,20,121,141,[[368,3,2,121,123],[372,9,8,123,131],[373,2,2,131,133],[384,1,1,133,134],[386,1,1,134,135],[394,1,1,135,136],[396,1,1,136,137],[398,1,1,137,138],[399,2,2,138,140],[402,1,1,140,141]]],[14,1,1,141,142,[[403,1,1,141,142]]],[15,9,7,142,149,[[413,3,3,142,145],[414,2,2,145,147],[421,4,2,147,149]]],[17,15,15,149,164,[[436,1,1,149,150],[437,1,1,150,151],[446,1,1,151,152],[451,1,1,152,153],[455,1,1,153,154],[457,2,2,154,156],[461,1,1,156,157],[463,1,1,157,158],[470,1,1,158,159],[472,1,1,159,160],[473,3,3,160,163],[476,1,1,163,164]]],[18,27,27,164,191,[[488,1,1,164,165],[496,1,1,165,166],[546,1,1,166,167],[550,1,1,167,168],[553,1,1,168,169],[555,3,3,169,172],[556,1,1,172,173],[566,1,1,173,174],[580,1,1,174,175],[581,1,1,175,176],[582,1,1,176,177],[584,1,1,177,178],[590,1,1,178,179],[592,2,2,179,181],[596,1,1,181,182],[598,1,1,182,183],[601,1,1,183,184],[611,1,1,184,185],[612,1,1,185,186],[613,1,1,186,187],[616,1,1,187,188],[623,1,1,188,189],[624,1,1,189,190],[625,1,1,190,191]]],[19,3,3,191,194,[[650,1,1,191,192],[652,1,1,192,193],[657,1,1,193,194]]],[20,4,4,194,198,[[659,1,1,194,195],[660,1,1,195,196],[661,1,1,196,197],[663,1,1,197,198]]],[22,9,9,198,207,[[691,2,2,198,200],[692,1,1,200,201],[712,2,2,201,203],[715,1,1,203,204],[718,1,1,204,205],[733,1,1,205,206],[744,1,1,206,207]]],[23,24,24,207,231,[[751,2,2,207,209],[752,2,2,209,211],[754,1,1,211,212],[759,1,1,212,213],[760,1,1,213,214],[763,2,2,214,216],[767,1,1,216,217],[775,1,1,217,218],[776,1,1,218,219],[777,2,2,219,221],[778,1,1,221,222],[788,4,4,222,226],[793,1,1,226,227],[795,4,4,227,231]]],[24,1,1,231,232,[[800,1,1,231,232]]],[25,8,8,232,240,[[809,1,1,232,233],[830,1,1,233,234],[832,2,2,234,236],[833,3,3,236,239],[839,1,1,239,240]]],[26,5,5,240,245,[[857,2,2,240,242],[858,1,1,242,243],[860,1,1,243,244],[861,1,1,244,245]]],[27,3,3,245,248,[[863,1,1,245,246],[865,1,1,246,247],[868,1,1,247,248]]],[29,2,2,248,250,[[887,2,2,248,250]]],[31,1,1,250,251,[[889,1,1,250,251]]],[33,1,1,251,252,[[902,1,1,251,252]]],[35,2,2,252,254,[[906,2,2,252,254]]],[36,1,1,254,255,[[909,1,1,254,255]]],[37,2,2,255,257,[[912,1,1,255,256],[915,1,1,256,257]]],[38,1,1,257,258,[[927,1,1,257,258]]]],[0,8,13,14,16,19,154,170,178,182,185,270,355,358,365,481,530,558,562,564,594,598,696,755,766,785,790,1498,1750,1752,1764,1765,1798,1799,1951,1997,2055,2062,2073,2187,2437,2451,3543,4902,4920,4963,4999,5015,5023,5030,5036,5040,5043,5061,5135,5158,5171,5200,5208,5219,5225,5229,5367,5566,5581,5623,5634,5635,5673,5699,5712,5720,5727,5756,5798,5823,5836,5880,6022,6075,6077,6643,6904,7094,7250,7331,8487,8590,8610,8616,9007,9008,9012,9015,9017,9019,9020,9021,9024,9028,9034,9039,9386,9499,9543,9545,9547,9552,9562,9709,9726,9923,9999,10076,10122,10124,10169,10170,10950,10960,11175,11217,11223,11295,11296,11300,11303,11305,11308,11309,11312,11337,11338,11560,11593,11773,11854,11895,11911,11913,12016,12018,12300,12301,12305,12311,12327,12517,12534,12885,12903,13116,13257,13353,13401,13403,13478,13528,13731,13772,13822,13826,13830,13899,14063,14174,14969,15045,15089,15136,15137,15139,15187,15355,15560,15583,15646,15725,15819,15845,15846,15987,16083,16110,16175,16181,16222,16247,16347,16359,16384,17049,17116,17255,17328,17336,17360,17399,17911,17916,17941,18307,18308,18368,18432,18750,18923,19137,19152,19155,19160,19203,19318,19340,19414,19420,19508,19728,19748,19797,19800,19821,20027,20028,20029,20035,20163,20221,20227,20260,20265,20439,20607,21188,21236,21243,21252,21255,21256,21445,21969,21971,22000,22040,22088,22123,22136,22190,22497,22501,22540,22728,22790,22792,22850,22905,22945,23130]]],["heavens",[108,103,[[0,3,2,0,2,[[1,3,2,0,2]]],[4,3,3,2,5,[[162,1,1,2,3],[184,1,1,3,4],[185,1,1,4,5]]],[6,1,1,5,6,[[215,1,1,5,6]]],[9,1,1,6,7,[[288,1,1,6,7]]],[10,1,1,7,8,[[298,1,1,7,8]]],[12,3,3,8,11,[[353,2,2,8,10],[364,1,1,10,11]]],[13,5,5,11,16,[[368,1,1,11,12],[372,4,4,12,16]]],[14,1,1,16,17,[[411,1,1,16,17]]],[15,1,1,17,18,[[421,1,1,17,18]]],[17,6,6,18,24,[[444,1,1,18,19],[449,1,1,19,20],[450,1,1,20,21],[455,1,1,21,22],[461,1,1,22,23],[470,1,1,23,24]]],[18,38,35,24,59,[[479,1,1,24,25],[485,2,2,25,27],[495,2,2,27,29],[496,1,1,29,30],[510,1,1,30,31],[513,1,1,31,32],[527,2,2,32,34],[534,3,3,34,37],[545,3,2,37,39],[550,1,1,39,40],[566,3,3,40,43],[573,2,2,43,45],[574,1,1,45,46],[579,1,1,46,47],[580,1,1,47,48],[581,1,1,48,49],[585,2,2,49,51],[590,1,1,51,52],[592,2,2,52,54],[600,1,1,54,55],[613,1,1,55,56],[621,1,1,56,57],[625,4,2,57,59]]],[19,2,2,59,61,[[630,1,1,59,60],[635,1,1,60,61]]],[22,21,20,61,81,[[679,1,1,61,62],[691,1,1,62,63],[712,1,1,63,64],[718,1,1,64,65],[720,1,1,65,66],[722,2,2,66,68],[723,3,3,68,71],[726,1,1,71,72],[727,1,1,72,73],[728,1,1,73,74],[729,4,3,74,77],[733,1,1,77,78],[742,1,1,78,79],[743,1,1,79,80],[744,1,1,80,81]]],[23,9,9,81,90,[[746,1,1,81,82],[748,3,3,82,85],[753,1,1,85,86],[754,2,2,86,88],[758,1,1,88,89],[795,1,1,89,90]]],[24,2,2,90,92,[[799,2,2,90,92]]],[25,1,1,92,93,[[802,1,1,92,93]]],[27,1,1,93,94,[[863,1,1,93,94]]],[28,3,3,94,97,[[877,2,2,94,96],[878,1,1,96,97]]],[34,1,1,97,98,[[905,1,1,97,98]]],[36,2,2,98,100,[[910,2,2,98,100]]],[37,3,3,100,103,[[916,1,1,100,101],[918,1,1,101,102],[922,1,1,102,103]]]],[31,34,5200,5759,5838,6627,8612,9012,10846,10851,11132,11217,11300,11307,11315,11321,12243,12517,13059,13193,13218,13332,13480,13725,13949,14013,14015,14127,14131,14169,14372,14443,14672,14674,14773,14778,14779,14908,14933,15029,15328,15331,15337,15470,15476,15484,15546,15568,15573,15746,15747,15817,15833,15846,16099,16201,16310,16372,16375,16474,16629,17656,17919,18307,18442,18485,18556,18557,18569,18573,18579,18627,18649,18665,18679,18686,18689,18749,18886,18914,18944,18977,19050,19052,19055,19185,19213,19214,19315,20228,20395,20420,20465,22126,22321,22341,22359,22771,22861,22876,22952,22988,23046]]]]},{"k":"H8065","v":[["*",[38,35,[[14,8,7,0,7,[[407,2,2,0,2],[408,2,2,2,4],[409,4,3,4,7]]],[23,2,1,7,8,[[754,2,1,7,8]]],[26,28,27,8,35,[[851,6,6,8,14],[853,16,15,14,29],[854,2,2,29,31],[855,1,1,31,32],[856,3,3,32,35]]]],[12145,12146,12160,12161,12185,12194,12196,19212,21776,21777,21786,21795,21796,21802,21848,21849,21850,21852,21857,21858,21859,21860,21862,21863,21868,21870,21871,21872,21874,21895,21897,21932,21935,21946,21960]]],["+",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12146]]],["heaven",[34,32,[[14,7,6,0,6,[[407,1,1,0,1],[408,2,2,1,3],[409,4,3,3,6]]],[26,27,26,6,32,[[851,6,6,6,12],[853,15,14,12,26],[854,2,2,26,28],[855,1,1,28,29],[856,3,3,29,32]]]],[12145,12160,12161,12185,12194,12196,21776,21777,21786,21795,21796,21802,21848,21849,21850,21852,21857,21858,21859,21860,21862,21868,21870,21871,21872,21874,21895,21897,21932,21935,21946,21960]]],["heavens",[3,2,[[23,2,1,0,1,[[754,2,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[19212,21863]]]]},{"k":"H8066","v":[["*",[28,27,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,10,10,1,11,[[98,1,1,1,2],[101,1,1,2,3],[103,2,2,3,5],[104,2,2,5,7],[111,1,1,7,8],[112,2,2,8,10],[114,1,1,10,11]]],[3,3,3,11,14,[[122,1,1,11,12],[123,1,1,12,13],[145,1,1,13,14]]],[10,4,4,14,18,[[296,1,1,14,15],[298,1,1,15,16],[302,2,2,16,18]]],[12,6,5,18,23,[[349,1,1,18,19],[361,1,1,19,20],[362,1,1,20,21],[363,1,1,21,22],[364,2,1,22,23]]],[13,1,1,23,24,[[373,1,1,23,24]]],[15,1,1,24,25,[[420,1,1,24,25]]],[25,1,1,25,26,[[844,1,1,25,26]]],[37,1,1,26,27,[[911,1,1,26,27]]]],[2143,2954,3047,3121,3134,3182,3197,3396,3438,3441,3491,3833,3904,4643,8934,9051,9183,9184,10732,11025,11061,11082,11120,11333,12511,21599,22879]]],["+",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3396]]],["eighth",[27,26,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,9,9,1,10,[[98,1,1,1,2],[101,1,1,2,3],[103,2,2,3,5],[104,2,2,5,7],[112,2,2,7,9],[114,1,1,9,10]]],[3,3,3,10,13,[[122,1,1,10,11],[123,1,1,11,12],[145,1,1,12,13]]],[10,4,4,13,17,[[296,1,1,13,14],[298,1,1,14,15],[302,2,2,15,17]]],[12,6,5,17,22,[[349,1,1,17,18],[361,1,1,18,19],[362,1,1,19,20],[363,1,1,20,21],[364,2,1,21,22]]],[13,1,1,22,23,[[373,1,1,22,23]]],[15,1,1,23,24,[[420,1,1,23,24]]],[25,1,1,24,25,[[844,1,1,24,25]]],[37,1,1,25,26,[[911,1,1,25,26]]]],[2143,2954,3047,3121,3134,3182,3197,3438,3441,3491,3833,3904,4643,8934,9051,9183,9184,10732,11025,11061,11082,11120,11333,12511,21599,22879]]]]},{"k":"H8067","v":[["Sheminith",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10812]]]]},{"k":"H8068","v":[["*",[11,11,[[22,8,8,0,8,[[683,1,1,0,1],[685,3,3,1,4],[687,1,1,4,5],[688,1,1,5,6],[705,1,1,6,7],[710,1,1,7,8]]],[23,1,1,8,9,[[761,1,1,8,9]]],[25,1,1,9,10,[[804,1,1,9,10]]],[37,1,1,10,11,[[917,1,1,10,11]]]],[17745,17805,17806,17807,17847,17867,18155,18272,19358,20511,22974]]],["adamant",[1,1,[[25,1,1,0,1,[[804,1,1,0,1]]]],[20511]]],["briers",[8,8,[[22,8,8,0,8,[[683,1,1,0,1],[685,3,3,1,4],[687,1,1,4,5],[688,1,1,5,6],[705,1,1,6,7],[710,1,1,7,8]]]],[17745,17805,17806,17807,17847,17867,18155,18272]]],["diamond",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19358]]],["stone",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22974]]]]},{"k":"H8069","v":[["Shamir",[3,3,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,2,2,1,3,[[220,2,2,1,3]]]],[6250,6812,6813]]]]},{"k":"H8070","v":[["Shemiramoth",[4,4,[[12,3,3,0,3,[[352,2,2,0,2],[353,1,1,2,3]]],[13,1,1,3,4,[[383,1,1,3,4]]]],[10809,10811,10825,11531]]]]},{"k":"H8071","v":[["*",[29,28,[[0,7,6,0,6,[[8,1,1,0,1],[34,1,1,1,2],[36,1,1,2,3],[40,1,1,3,4],[43,1,1,4,5],[44,2,1,5,6]]],[1,6,6,6,12,[[52,1,1,6,7],[61,2,2,7,9],[68,2,2,9,11],[71,1,1,11,12]]],[4,6,6,12,18,[[160,1,1,12,13],[162,1,1,13,14],[173,1,1,14,15],[174,3,3,15,18]]],[5,1,1,18,19,[[193,1,1,18,19]]],[6,1,1,19,20,[[218,1,1,19,20]]],[7,1,1,20,21,[[234,1,1,20,21]]],[8,1,1,21,22,[[256,1,1,21,22]]],[9,1,1,22,23,[[278,1,1,22,23]]],[19,1,1,23,24,[[657,1,1,23,24]]],[22,4,4,24,28,[[681,2,2,24,26],[682,1,1,26,27],[687,1,1,27,28]]]],[228,1013,1117,1209,1337,1380,1601,1850,1851,2036,2040,2140,5141,5204,5460,5473,5475,5487,5982,6744,7175,7781,8306,17255,17713,17714,17734,17834]]],["apparel",[2,2,[[9,1,1,0,1,[[278,1,1,0,1]]],[22,1,1,1,2,[[682,1,1,1,2]]]],[8306,17734]]],["cloth",[2,2,[[4,1,1,0,1,[[174,1,1,0,1]]],[8,1,1,1,2,[[256,1,1,1,2]]]],[5487,7781]]],["clothes",[6,6,[[0,2,2,0,2,[[36,1,1,0,1],[43,1,1,1,2]]],[1,3,3,2,5,[[61,1,1,2,3],[68,2,2,3,5]]],[5,1,1,5,6,[[193,1,1,5,6]]]],[1117,1337,1850,2036,2040,5982]]],["clothing",[2,2,[[22,2,2,0,2,[[681,2,2,0,2]]]],[17713,17714]]],["garment",[4,4,[[0,1,1,0,1,[[8,1,1,0,1]]],[4,1,1,1,2,[[174,1,1,1,2]]],[6,1,1,2,3,[[218,1,1,2,3]]],[19,1,1,3,4,[[657,1,1,3,4]]]],[228,5475,6744,17255]]],["garments",[2,2,[[0,1,1,0,1,[[34,1,1,0,1]]],[22,1,1,1,2,[[687,1,1,1,2]]]],[1013,17834]]],["raiment",[11,10,[[0,3,2,0,2,[[40,1,1,0,1],[44,2,1,1,2]]],[1,3,3,2,5,[[52,1,1,2,3],[61,1,1,3,4],[71,1,1,4,5]]],[4,4,4,5,9,[[160,1,1,5,6],[162,1,1,6,7],[173,1,1,7,8],[174,1,1,8,9]]],[7,1,1,9,10,[[234,1,1,9,10]]]],[1209,1380,1601,1851,2140,5141,5204,5460,5473,7175]]]]},{"k":"H8072","v":[["Samlah",[4,4,[[0,2,2,0,2,[[35,2,2,0,2]]],[12,2,2,2,4,[[338,2,2,2,4]]]],[1076,1077,10299,10300]]]]},{"k":"H8073","v":[["Shalmai",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12073]]]]},{"k":"H8074","v":[["*",[89,85,[[2,7,6,0,6,[[115,7,6,0,6]]],[3,1,1,6,7,[[137,1,1,6,7]]],[8,1,1,7,8,[[240,1,1,7,8]]],[9,1,1,8,9,[[279,1,1,8,9]]],[10,1,1,9,10,[[299,1,1,9,10]]],[13,2,2,10,12,[[373,1,1,10,11],[402,1,1,11,12]]],[14,2,2,12,14,[[411,2,2,12,14]]],[17,4,4,14,18,[[451,1,1,14,15],[452,1,1,15,16],[453,1,1,16,17],[456,1,1,17,18]]],[18,4,4,18,22,[[517,1,1,18,19],[546,1,1,19,20],[556,1,1,20,21],[620,1,1,21,22]]],[20,1,1,22,23,[[665,1,1,22,23]]],[22,10,9,23,32,[[711,1,1,23,24],[727,2,2,24,26],[730,1,1,26,27],[732,2,2,27,29],[737,1,1,29,30],[739,2,1,30,31],[741,1,1,31,32]]],[23,11,11,32,43,[[746,1,1,32,33],[748,1,1,33,34],[754,1,1,34,35],[756,1,1,35,36],[762,1,1,36,37],[763,1,1,37,38],[777,1,1,38,39],[793,2,2,39,41],[794,2,2,41,43]]],[24,6,6,43,49,[[797,3,3,43,46],[799,1,1,46,47],[800,1,1,47,48],[801,1,1,48,49]]],[25,24,22,49,71,[[804,1,1,49,50],[805,1,1,50,51],[807,1,1,51,52],[821,1,1,52,53],[826,1,1,53,54],[827,1,1,54,55],[828,1,1,55,56],[829,1,1,56,57],[830,1,1,57,58],[831,4,3,58,61],[833,2,2,61,63],[834,1,1,63,64],[836,2,2,64,66],[837,6,5,66,71]]],[26,7,7,71,78,[[857,2,2,71,73],[858,3,3,73,76],[860,1,1,76,77],[861,1,1,77,78]]],[27,1,1,78,79,[[863,1,1,78,79]]],[28,1,1,79,80,[[876,1,1,79,80]]],[29,2,2,80,82,[[885,1,1,80,81],[887,1,1,81,82]]],[32,1,1,82,83,[[898,1,1,82,83]]],[35,1,1,83,84,[[908,1,1,83,84]]],[37,1,1,84,85,[[917,1,1,84,85]]]],[3546,3555,3556,3558,3559,3567,4370,7325,8337,9059,11345,12014,12240,12241,13245,13268,13296,13360,14540,14960,15192,16297,17445,18287,18644,18655,18710,18724,18726,18816,18847,18871,18977,19036,19226,19260,19400,19415,19785,20144,20147,20179,20211,20314,20323,20326,20365,20425,20460,20517,20546,20567,20921,21086,21116,21156,21176,21195,21211,21216,21218,21258,21263,21308,21356,21359,21362,21363,21393,21394,21395,21974,21988,22006,22014,22015,22067,22092,22117,22308,22473,22509,22661,22826,22976]]],["+",[5,5,[[2,2,2,0,2,[[115,2,2,0,2]]],[25,3,3,2,5,[[831,2,2,2,4],[833,1,1,4,5]]]],[3555,3556,21216,21218,21258]]],["astonied",[6,6,[[14,2,2,0,2,[[411,2,2,0,2]]],[17,2,2,2,4,[[452,1,1,2,3],[453,1,1,3,4]]],[22,1,1,4,5,[[730,1,1,4,5]]],[25,1,1,5,6,[[805,1,1,5,6]]]],[12240,12241,13268,13296,18710,20546]]],["astonished",[14,14,[[2,1,1,0,1,[[115,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[17,1,1,2,3,[[456,1,1,2,3]]],[23,6,6,3,9,[[746,1,1,3,4],[748,1,1,4,5],[762,1,1,5,6],[763,1,1,6,7],[793,1,1,7,8],[794,1,1,8,9]]],[25,4,4,9,13,[[804,1,1,9,10],[827,1,1,10,11],[828,1,1,11,12],[829,1,1,12,13]]],[26,1,1,13,14,[[857,1,1,13,14]]]],[3556,9059,13360,18977,19036,19400,19415,20144,20179,20517,21116,21156,21176,21988]]],["astonishment",[1,1,[[13,1,1,0,1,[[373,1,1,0,1]]]],[11345]]],["desolate",[47,45,[[2,4,4,0,4,[[115,4,4,0,4]]],[9,1,1,4,5,[[279,1,1,4,5]]],[13,1,1,5,6,[[402,1,1,5,6]]],[17,1,1,6,7,[[451,1,1,6,7]]],[18,3,3,7,10,[[517,1,1,7,8],[546,1,1,8,9],[620,1,1,9,10]]],[22,3,3,10,13,[[727,1,1,10,11],[732,2,2,11,13]]],[23,5,5,13,18,[[754,1,1,13,14],[756,1,1,14,15],[777,1,1,15,16],[793,1,1,16,17],[794,1,1,17,18]]],[24,6,6,18,24,[[797,3,3,18,21],[799,1,1,21,22],[800,1,1,22,23],[801,1,1,23,24]]],[25,15,13,24,37,[[807,1,1,24,25],[821,1,1,25,26],[826,1,1,26,27],[830,1,1,27,28],[831,2,1,28,29],[834,1,1,29,30],[836,2,2,30,32],[837,6,5,32,37]]],[26,3,3,37,40,[[858,1,1,37,38],[860,1,1,38,39],[861,1,1,39,40]]],[28,1,1,40,41,[[876,1,1,40,41]]],[29,1,1,41,42,[[885,1,1,41,42]]],[32,1,1,42,43,[[898,1,1,42,43]]],[35,1,1,43,44,[[908,1,1,43,44]]],[37,1,1,44,45,[[917,1,1,44,45]]]],[3546,3558,3559,3567,8337,12014,13245,14540,14960,16297,18644,18724,18726,19226,19260,19785,20147,20211,20314,20323,20326,20365,20425,20460,20567,20921,21086,21195,21211,21308,21356,21359,21362,21363,21393,21394,21395,22015,22067,22092,22308,22473,22661,22826,22976]]],["desolation",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21974]]],["desolations",[4,3,[[22,2,1,0,1,[[739,2,1,0,1]]],[26,2,2,1,3,[[858,2,2,1,3]]]],[18847,22006,22014]]],["destitute",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21263]]],["destroy",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22117]]],["destroyed",[1,1,[[8,1,1,0,1,[[240,1,1,0,1]]]],[7325]]],["places",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18655]]],["thyself",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17445]]],["waste",[4,4,[[3,1,1,0,1,[[137,1,1,0,1]]],[18,1,1,1,2,[[556,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]],[29,1,1,3,4,[[887,1,1,3,4]]]],[4370,15192,18287,22509]]],["wondered",[2,2,[[22,2,2,0,2,[[737,1,1,0,1],[741,1,1,1,2]]]],[18816,18871]]]]},{"k":"H8075","v":[["astonied",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21856]]]]},{"k":"H8076","v":[["desolate",[3,3,[[23,1,1,0,1,[[756,1,1,0,1]]],[26,2,2,1,3,[[858,2,2,1,3]]]],[19260,22005,22015]]]]},{"k":"H8077","v":[["*",[57,53,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[5,1,1,2,3,[[194,1,1,2,3]]],[22,6,5,3,8,[[679,2,1,3,4],[684,1,1,4,5],[695,1,1,5,6],[740,1,1,6,7],[742,1,1,7,8]]],[23,15,15,8,23,[[748,1,1,8,9],[750,1,1,9,10],[753,1,1,10,11],[754,1,1,11,12],[756,2,2,12,14],[769,1,1,14,15],[776,1,1,15,16],[778,1,1,16,17],[788,1,1,17,18],[793,2,2,18,20],[794,1,1,20,21],[795,2,2,21,23]]],[25,22,20,23,43,[[807,1,1,23,24],[808,1,1,24,25],[813,1,1,25,26],[815,2,2,26,28],[816,1,1,28,29],[824,1,1,29,30],[830,4,3,30,33],[833,1,1,33,34],[834,2,2,34,36],[836,7,6,36,42],[837,1,1,42,43]]],[28,4,3,43,46,[[877,2,2,43,45],[878,2,1,45,46]]],[32,2,2,46,48,[[893,1,1,46,47],[899,1,1,47,48]]],[35,4,4,48,52,[[906,1,1,48,49],[907,3,3,49,52]]],[38,1,1,52,53,[[925,1,1,52,53]]]],[2173,3557,6030,17661,17780,17992,18858,18895,19054,19097,19186,19223,19259,19260,19546,19774,19823,20016,20129,20160,20179,20238,20274,20577,20604,20700,20746,20747,20762,21040,21192,21193,21195,21263,21308,21309,21347,21348,21351,21353,21358,21359,21393,22314,22331,22362,22586,22677,22800,22809,22814,22818,23092]]],["+",[5,4,[[25,5,4,0,4,[[834,2,2,0,2],[836,3,2,2,4]]]],[21308,21309,21347,21351]]],["Desolate",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18858]]],["desolate",[35,33,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[22,2,1,2,3,[[679,2,1,2,3]]],[23,12,12,3,15,[[748,1,1,3,4],[750,1,1,4,5],[753,1,1,5,6],[754,1,1,6,7],[756,2,2,7,9],[776,1,1,9,10],[788,1,1,10,11],[793,1,1,11,12],[794,1,1,12,13],[795,2,2,13,15]]],[25,14,13,15,28,[[807,1,1,15,16],[813,1,1,16,17],[815,2,2,17,19],[816,1,1,19,20],[830,4,3,20,23],[833,1,1,23,24],[836,3,3,24,27],[837,1,1,27,28]]],[28,3,3,28,31,[[877,2,2,28,30],[878,1,1,30,31]]],[32,2,2,31,33,[[893,1,1,31,32],[899,1,1,32,33]]]],[2173,3557,17661,19054,19097,19186,19223,19259,19260,19774,20016,20129,20179,20238,20274,20577,20700,20746,20747,20762,21192,21193,21195,21263,21348,21358,21359,21393,22314,22331,22362,22586,22677]]],["desolation",[12,12,[[5,1,1,0,1,[[194,1,1,0,1]]],[22,2,2,1,3,[[695,1,1,1,2],[742,1,1,2,3]]],[23,2,2,3,5,[[778,1,1,3,4],[793,1,1,4,5]]],[25,2,2,5,7,[[808,1,1,5,6],[824,1,1,6,7]]],[28,1,1,7,8,[[878,1,1,7,8]]],[35,4,4,8,12,[[906,1,1,8,9],[907,3,3,9,12]]]],[6030,17992,18895,19823,20160,20604,21040,22362,22800,22809,22814,22818]]],["desolations",[2,2,[[23,1,1,0,1,[[769,1,1,0,1]]],[25,1,1,1,2,[[836,1,1,1,2]]]],[19546,21353]]],["utterly",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17780]]],["waste",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23092]]]]},{"k":"H8078","v":[["astonishment",[2,2,[[25,2,2,0,2,[[805,1,1,0,1],[813,1,1,1,2]]]],[20545,20699]]]]},{"k":"H8079","v":[["spider",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17279]]]]},{"k":"H8080","v":[["fat",[4,3,[[4,2,1,0,1,[[184,2,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[23,1,1,2,3,[[749,1,1,2,3]]]],[5773,12536,19086]]]]},{"k":"H8081","v":[["*",[193,176,[[0,2,2,0,2,[[27,1,1,0,1],[34,1,1,1,2]]],[1,24,19,2,21,[[74,2,1,2,3],[76,1,1,3,4],[78,6,5,4,9],[79,4,3,9,12],[80,1,1,12,13],[84,6,4,13,17],[86,1,1,17,18],[88,2,2,18,20],[89,1,1,20,21]]],[2,42,36,21,57,[[91,9,8,21,29],[94,1,1,29,30],[95,2,2,30,32],[96,4,2,32,34],[97,5,5,34,39],[98,1,1,39,40],[99,1,1,40,41],[103,15,12,41,53],[110,2,2,53,55],[112,1,1,55,56],[113,1,1,56,57]]],[3,34,31,57,88,[[120,3,2,57,59],[121,1,1,59,60],[122,2,1,60,61],[123,12,12,61,73],[124,1,1,73,74],[127,1,1,74,75],[131,3,3,75,78],[144,7,6,78,84],[145,3,3,84,87],[151,1,1,87,88]]],[4,4,4,88,92,[[160,1,1,88,89],[180,1,1,89,90],[184,1,1,90,91],[185,1,1,91,92]]],[8,3,3,92,95,[[245,1,1,92,93],[251,2,2,93,95]]],[9,2,2,95,97,[[267,1,1,95,96],[280,1,1,96,97]]],[10,9,9,97,106,[[291,1,1,97,98],[295,1,1,98,99],[296,4,4,99,103],[307,3,3,103,106]]],[11,7,7,106,113,[[316,3,3,106,109],[321,3,3,109,112],[332,1,1,112,113]]],[12,3,3,113,116,[[346,1,1,113,114],[349,1,1,114,115],[364,1,1,115,116]]],[13,3,3,116,119,[[368,2,2,116,118],[377,1,1,118,119]]],[14,1,1,119,120,[[405,1,1,119,120]]],[15,1,1,120,121,[[420,1,1,120,121]]],[16,1,1,121,122,[[427,1,1,121,122]]],[17,1,1,122,123,[[464,1,1,122,123]]],[18,10,10,123,133,[[500,1,1,123,124],[522,1,1,124,125],[532,1,1,125,126],[566,1,1,126,127],[569,1,1,127,128],[581,1,1,128,129],[586,2,2,129,131],[610,1,1,131,132],[618,1,1,132,133]]],[19,5,5,133,138,[[632,1,1,133,134],[648,2,2,134,136],[654,2,2,136,138]]],[20,3,3,138,141,[[665,1,1,138,139],[667,1,1,139,140],[668,1,1,140,141]]],[21,3,2,141,143,[[671,2,1,141,142],[674,1,1,142,143]]],[22,11,10,143,153,[[679,1,1,143,144],[683,1,1,144,145],[688,1,1,145,146],[703,2,1,146,147],[706,2,2,147,149],[717,1,1,149,150],[719,1,1,150,151],[735,1,1,151,152],[739,1,1,152,153]]],[23,2,2,153,155,[[784,1,1,153,154],[785,1,1,154,155]]],[25,16,15,155,170,[[817,4,4,155,159],[824,1,1,159,160],[828,1,1,160,161],[833,1,1,161,162],[846,4,3,162,165],[847,5,5,165,170]]],[27,2,2,170,172,[[863,1,1,170,171],[873,1,1,171,172]]],[29,1,1,172,173,[[884,1,1,172,173]]],[32,2,2,173,175,[[898,2,2,173,175]]],[36,1,1,175,176,[[910,1,1,175,176]]]],[791,1025,2201,2292,2338,2343,2357,2359,2376,2406,2407,2413,2431,2539,2545,2546,2559,2633,2701,2702,2716,2763,2764,2766,2767,2768,2769,2777,2778,2841,2864,2870,2889,2891,2919,2927,2929,2943,2947,2957,2984,3121,3123,3126,3127,3128,3129,3132,3135,3137,3138,3139,3140,3355,3357,3415,3448,3752,3759,3807,3838,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3947,4032,4157,4159,4162,4582,4586,4589,4590,4597,4605,4611,4617,4622,4870,5145,5651,5771,5834,7419,7596,7608,8043,8358,8756,8889,8919,8927,8928,8929,9329,9331,9333,9605,9609,9610,9757,9759,9762,10111,10644,10760,11137,11221,11226,11425,12104,12508,12736,13538,14240,14604,14753,15346,15421,15586,15773,15779,16171,16281,16520,17001,17004,17178,17185,17430,17483,17494,17540,17592,17660,17740,17877,18124,18165,18168,18414,18470,18774,18846,19951,19965,20771,20775,20780,20781,21048,21138,21262,21644,21654,21655,21660,21662,21666,21669,21670,22110,22253,22456,22655,22663,22867]]],["+",[13,13,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,5,5,1,6,[[91,2,2,1,3],[95,1,1,3,4],[97,2,2,4,6]]],[15,1,1,6,7,[[420,1,1,6,7]]],[18,3,3,7,10,[[532,1,1,7,8],[581,1,1,8,9],[586,1,1,9,10]]],[19,1,1,10,11,[[632,1,1,10,11]]],[20,1,1,11,12,[[665,1,1,11,12]]],[22,1,1,12,13,[[683,1,1,12,13]]]],[2357,2764,2778,2864,2929,2947,12508,14753,15586,15779,16520,17430,17740]]],["Oil",[1,1,[[1,1,1,0,1,[[74,1,1,0,1]]]],[2201]]],["Ointment",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17178]]],["anointing",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17877]]],["fat",[2,2,[[22,2,2,0,2,[[706,2,2,0,2]]]],[18165,18168]]],["oil",[155,141,[[0,2,2,0,2,[[27,1,1,0,1],[34,1,1,1,2]]],[1,21,17,2,19,[[74,1,1,2,3],[76,1,1,3,4],[78,4,3,4,7],[79,4,3,7,10],[80,1,1,10,11],[84,6,4,11,15],[86,1,1,15,16],[88,2,2,16,18],[89,1,1,18,19]]],[2,36,30,19,49,[[91,7,6,19,25],[94,1,1,25,26],[95,1,1,26,27],[96,4,2,27,29],[97,2,2,29,31],[98,1,1,31,32],[99,1,1,32,33],[103,15,12,33,45],[110,2,2,45,47],[112,1,1,47,48],[113,1,1,48,49]]],[3,34,31,49,80,[[120,3,2,49,51],[121,1,1,51,52],[122,2,1,52,53],[123,12,12,53,65],[124,1,1,65,66],[127,1,1,66,67],[131,3,3,67,70],[144,7,6,70,76],[145,3,3,76,79],[151,1,1,79,80]]],[4,4,4,80,84,[[160,1,1,80,81],[180,1,1,81,82],[184,1,1,82,83],[185,1,1,83,84]]],[8,3,3,84,87,[[245,1,1,84,85],[251,2,2,85,87]]],[9,2,2,87,89,[[267,1,1,87,88],[280,1,1,88,89]]],[10,5,5,89,94,[[291,1,1,89,90],[295,1,1,90,91],[307,3,3,91,94]]],[11,6,6,94,100,[[316,3,3,94,97],[321,3,3,97,100]]],[12,3,3,100,103,[[346,1,1,100,101],[349,1,1,101,102],[364,1,1,102,103]]],[13,3,3,103,106,[[368,2,2,103,105],[377,1,1,105,106]]],[14,1,1,106,107,[[405,1,1,106,107]]],[16,1,1,107,108,[[427,1,1,107,108]]],[17,1,1,108,109,[[464,1,1,108,109]]],[18,6,6,109,115,[[500,1,1,109,110],[522,1,1,110,111],[566,1,1,111,112],[569,1,1,112,113],[586,1,1,113,114],[618,1,1,114,115]]],[19,2,2,115,117,[[648,2,2,115,117]]],[22,2,2,117,119,[[719,1,1,117,118],[739,1,1,118,119]]],[23,2,2,119,121,[[784,1,1,119,120],[785,1,1,120,121]]],[25,16,15,121,136,[[817,4,4,121,125],[824,1,1,125,126],[828,1,1,126,127],[833,1,1,127,128],[846,4,3,128,131],[847,5,5,131,136]]],[27,2,2,136,138,[[863,1,1,136,137],[873,1,1,137,138]]],[32,2,2,138,140,[[898,2,2,138,140]]],[36,1,1,140,141,[[910,1,1,140,141]]]],[791,1025,2201,2292,2338,2343,2376,2406,2407,2413,2431,2539,2545,2546,2559,2633,2701,2702,2716,2763,2766,2767,2768,2769,2777,2841,2870,2889,2891,2919,2927,2957,2984,3121,3123,3126,3127,3128,3129,3132,3135,3137,3138,3139,3140,3355,3357,3415,3448,3752,3759,3807,3838,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3947,4032,4157,4159,4162,4582,4586,4589,4590,4597,4605,4611,4617,4622,4870,5145,5651,5771,5834,7419,7596,7608,8043,8358,8756,8889,9329,9331,9333,9605,9609,9610,9757,9759,9762,10644,10760,11137,11221,11226,11425,12104,12736,13538,14240,14604,15346,15421,15773,16281,17001,17004,18470,18846,19951,19965,20771,20775,20780,20781,21048,21138,21262,21644,21654,21655,21660,21662,21666,21669,21670,22110,22253,22655,22663,22867]]],["oiled",[2,2,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]]],[2359,2943]]],["ointment",[9,9,[[11,1,1,0,1,[[332,1,1,0,1]]],[18,1,1,1,2,[[610,1,1,1,2]]],[19,1,1,2,3,[[654,1,1,2,3]]],[20,2,2,3,5,[[667,1,1,3,4],[668,1,1,4,5]]],[21,1,1,5,6,[[671,1,1,5,6]]],[22,3,3,6,9,[[679,1,1,6,7],[717,1,1,7,8],[735,1,1,8,9]]]],[10111,16171,17185,17483,17494,17540,17660,18414,18774]]],["ointments",[3,3,[[21,2,2,0,2,[[671,1,1,0,1],[674,1,1,1,2]]],[29,1,1,2,3,[[884,1,1,2,3]]]],[17540,17592,22456]]],["olive",[4,4,[[10,4,4,0,4,[[296,4,4,0,4]]]],[8919,8927,8928,8929]]],["things",[2,1,[[22,2,1,0,1,[[703,2,1,0,1]]]],[18124]]]]},{"k":"H8082","v":[["*",[11,11,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[129,1,1,1,2]]],[6,1,1,2,3,[[213,1,1,2,3]]],[12,1,1,3,4,[[341,1,1,3,4]]],[15,2,2,4,6,[[421,2,2,4,6]]],[22,2,2,6,8,[[684,1,1,6,7],[708,1,1,7,8]]],[25,2,2,8,10,[[835,2,2,8,10]]],[34,1,1,10,11,[[903,1,1,10,11]]]],[1493,4095,6597,10425,12536,12546,17779,18240,21327,21329,22747]]],["fat",[9,9,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[129,1,1,1,2]]],[12,1,1,2,3,[[341,1,1,2,3]]],[15,2,2,3,5,[[421,2,2,3,5]]],[22,1,1,5,6,[[684,1,1,5,6]]],[25,2,2,6,8,[[835,2,2,6,8]]],[34,1,1,8,9,[[903,1,1,8,9]]]],[1493,4095,10425,12536,12546,17779,21327,21329,22747]]],["lusty",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6597]]],["plenteous",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18240]]]]},{"k":"H8083","v":[["*",[109,105,[[0,11,11,0,11,[[4,7,7,0,7],[13,1,1,7,8],[16,1,1,8,9],[20,1,1,9,10],[21,1,1,10,11]]],[1,4,4,11,15,[[75,2,2,11,13],[85,2,2,13,15]]],[3,6,6,15,21,[[118,1,1,15,16],[119,1,1,16,17],[120,1,1,17,18],[123,1,1,18,19],[145,1,1,19,20],[151,1,1,20,21]]],[4,1,1,21,22,[[154,1,1,21,22]]],[5,1,1,22,23,[[207,1,1,22,23]]],[6,6,6,23,29,[[213,2,2,23,25],[220,1,1,25,26],[222,1,1,26,27],[230,2,2,27,29]]],[8,2,2,29,31,[[239,1,1,29,30],[252,1,1,30,31]]],[9,3,3,31,34,[[274,1,1,31,32],[289,1,1,32,33],[290,1,1,33,34]]],[10,4,4,34,38,[[297,2,2,34,36],[305,1,1,36,37],[306,1,1,37,38]]],[11,10,10,38,48,[[315,1,1,38,39],[320,1,1,39,40],[322,1,1,40,41],[327,1,1,41,42],[334,2,2,42,44],[335,1,1,44,45],[336,2,2,45,47],[337,1,1,47,48]]],[12,13,13,48,61,[[349,4,4,48,52],[353,1,1,52,53],[355,1,1,53,54],[360,1,1,54,55],[361,2,2,55,57],[362,2,2,57,59],[363,1,1,59,60],[366,1,1,60,61]]],[13,13,11,61,72,[[377,2,1,61,62],[379,2,2,62,64],[387,2,2,64,66],[395,2,1,66,67],[400,3,3,67,70],[401,1,1,70,71],[402,1,1,71,72]]],[14,7,7,72,79,[[404,4,4,72,76],[410,3,3,76,79]]],[15,15,14,79,93,[[419,11,10,79,89],[423,4,4,89,93]]],[20,1,1,93,94,[[669,1,1,93,94]]],[23,5,4,94,98,[[776,1,1,94,95],[785,1,1,95,96],[796,3,2,96,98]]],[25,6,6,98,104,[[841,5,5,98,103],[849,1,1,103,104]]],[32,1,1,104,105,[[897,1,1,104,105]]]],[109,112,115,118,121,122,124,350,409,517,570,2237,2260,2575,2596,3682,3720,3791,3858,4637,4852,4952,6422,6576,6582,6819,6883,7079,7098,7312,7630,8222,8661,8701,8944,8949,9250,9312,9577,9744,9829,9933,10146,10148,10188,10210,10214,10239,10744,10750,10751,10755,10858,10902,10986,11019,11030,11053,11071,11086,11171,11435,11454,11456,11629,11644,11808,11934,11936,11941,11985,12002,12033,12043,12050,12068,12210,12212,12219,12431,12433,12435,12436,12441,12442,12446,12447,12464,12465,12594,12596,12600,12602,17515,19732,19972,20297,20305,21486,21508,21511,21514,21518,21737,22638]]],["+",[30,30,[[0,1,1,0,1,[[13,1,1,0,1]]],[6,4,4,1,5,[[213,1,1,1,2],[220,1,1,2,3],[230,2,2,3,5]]],[9,1,1,5,6,[[274,1,1,5,6]]],[10,2,2,6,8,[[297,1,1,6,7],[305,1,1,7,8]]],[11,5,5,8,13,[[315,1,1,8,9],[334,1,1,9,10],[335,1,1,10,11],[336,1,1,11,12],[337,1,1,12,13]]],[12,6,6,13,19,[[349,1,1,13,14],[355,1,1,14,15],[361,1,1,15,16],[362,1,1,16,17],[363,1,1,17,18],[366,1,1,18,19]]],[13,4,4,19,23,[[377,1,1,19,20],[379,1,1,20,21],[400,1,1,21,22],[401,1,1,22,23]]],[14,2,2,23,25,[[410,2,2,23,25]]],[15,1,1,25,26,[[419,1,1,25,26]]],[23,3,3,26,29,[[776,1,1,26,27],[796,2,2,27,29]]],[25,1,1,29,30,[[849,1,1,29,30]]]],[350,6582,6819,7079,7098,8222,8949,9250,9577,10148,10188,10210,10239,10751,10902,11030,11071,11086,11171,11435,11454,11941,11985,12210,12219,12431,19732,20297,20305,21737]]],["eight",[74,74,[[0,10,10,0,10,[[4,7,7,0,7],[16,1,1,7,8],[20,1,1,8,9],[21,1,1,9,10]]],[1,4,4,10,14,[[75,2,2,10,12],[85,2,2,12,14]]],[3,6,6,14,20,[[118,1,1,14,15],[119,1,1,15,16],[120,1,1,16,17],[123,1,1,17,18],[145,1,1,18,19],[151,1,1,19,20]]],[4,1,1,20,21,[[154,1,1,20,21]]],[5,1,1,21,22,[[207,1,1,21,22]]],[6,2,2,22,24,[[213,1,1,22,23],[222,1,1,23,24]]],[8,2,2,24,26,[[239,1,1,24,25],[252,1,1,25,26]]],[9,2,2,26,28,[[289,1,1,26,27],[290,1,1,27,28]]],[10,1,1,28,29,[[297,1,1,28,29]]],[11,3,3,29,32,[[320,1,1,29,30],[322,1,1,30,31],[334,1,1,31,32]]],[12,7,7,32,39,[[349,3,3,32,35],[353,1,1,35,36],[360,1,1,36,37],[361,1,1,37,38],[362,1,1,38,39]]],[13,7,7,39,46,[[377,1,1,39,40],[379,1,1,40,41],[387,2,2,41,43],[395,1,1,43,44],[400,1,1,44,45],[402,1,1,45,46]]],[14,5,5,46,51,[[404,4,4,46,50],[410,1,1,50,51]]],[15,14,14,51,65,[[419,10,10,51,61],[423,4,4,61,65]]],[20,1,1,65,66,[[669,1,1,65,66]]],[23,2,2,66,68,[[785,1,1,66,67],[796,1,1,67,68]]],[25,5,5,68,73,[[841,5,5,68,73]]],[32,1,1,73,74,[[897,1,1,73,74]]]],[109,112,115,118,121,122,124,409,517,570,2237,2260,2575,2596,3682,3720,3791,3858,4637,4852,4952,6422,6576,6883,7312,7630,8661,8701,8944,9744,9829,10146,10744,10750,10755,10858,10986,11019,11053,11435,11456,11629,11644,11808,11934,12002,12033,12043,12050,12068,12212,12431,12433,12435,12436,12441,12442,12446,12447,12464,12465,12594,12596,12600,12602,17515,19972,20305,21486,21508,21511,21514,21518,22638]]],["eighth",[5,5,[[10,1,1,0,1,[[306,1,1,0,1]]],[11,2,2,1,3,[[327,1,1,1,2],[336,1,1,2,3]]],[13,2,2,3,5,[[395,1,1,3,4],[400,1,1,4,5]]]],[9312,9933,10214,11808,11936]]]]},{"k":"H8084","v":[["*",[38,37,[[0,5,5,0,5,[[4,3,3,0,3],[15,1,1,3,4],[34,1,1,4,5]]],[1,2,1,5,6,[[56,2,1,5,6]]],[3,2,2,6,8,[[118,1,1,6,7],[120,1,1,7,8]]],[5,1,1,8,9,[[200,1,1,8,9]]],[6,1,1,9,10,[[213,1,1,9,10]]],[8,1,1,10,11,[[257,1,1,10,11]]],[9,2,2,11,13,[[285,2,2,11,13]]],[10,3,3,13,16,[[295,1,1,13,14],[296,1,1,14,15],[302,1,1,15,16]]],[11,3,3,16,19,[[318,1,1,16,17],[322,1,1,17,18],[331,1,1,18,19]]],[12,3,3,19,22,[[344,1,1,19,20],[352,1,1,20,21],[362,1,1,21,22]]],[13,7,7,22,29,[[368,2,2,22,24],[377,1,1,24,25],[380,1,1,25,26],[383,2,2,26,28],[392,1,1,28,29]]],[14,1,1,29,30,[[410,1,1,29,30]]],[15,2,2,30,32,[[419,1,1,30,31],[423,1,1,31,32]]],[16,1,1,32,33,[[426,1,1,32,33]]],[18,1,1,33,34,[[567,1,1,33,34]]],[21,1,1,34,35,[[676,1,1,34,35]]],[22,1,1,35,36,[[715,1,1,35,36]]],[23,1,1,36,37,[[785,1,1,36,37]]]],[130,131,133,397,1039,1692,3667,3791,6197,6598,7805,8543,8546,8893,8897,9172,9699,9817,10096,10540,10800,11053,11213,11229,11415,11483,11538,11541,11749,12209,12446,12606,12706,15388,17622,18388,19962]]],["eightieth",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8897]]],["eighty",[3,3,[[0,3,3,0,3,[[4,3,3,0,3]]]],[130,131,133]]],["fourscore",[34,33,[[0,2,2,0,2,[[15,1,1,0,1],[34,1,1,1,2]]],[1,2,1,2,3,[[56,2,1,2,3]]],[3,2,2,3,5,[[118,1,1,3,4],[120,1,1,4,5]]],[5,1,1,5,6,[[200,1,1,5,6]]],[6,1,1,6,7,[[213,1,1,6,7]]],[8,1,1,7,8,[[257,1,1,7,8]]],[9,2,2,8,10,[[285,2,2,8,10]]],[10,2,2,10,12,[[295,1,1,10,11],[302,1,1,11,12]]],[11,3,3,12,15,[[318,1,1,12,13],[322,1,1,13,14],[331,1,1,14,15]]],[12,3,3,15,18,[[344,1,1,15,16],[352,1,1,16,17],[362,1,1,17,18]]],[13,7,7,18,25,[[368,2,2,18,20],[377,1,1,20,21],[380,1,1,21,22],[383,2,2,22,24],[392,1,1,24,25]]],[14,1,1,25,26,[[410,1,1,25,26]]],[15,2,2,26,28,[[419,1,1,26,27],[423,1,1,27,28]]],[16,1,1,28,29,[[426,1,1,28,29]]],[18,1,1,29,30,[[567,1,1,29,30]]],[21,1,1,30,31,[[676,1,1,30,31]]],[22,1,1,31,32,[[715,1,1,31,32]]],[23,1,1,32,33,[[785,1,1,32,33]]]],[397,1039,1692,3667,3791,6197,6598,7805,8543,8546,8893,9172,9699,9817,10096,10540,10800,11053,11213,11229,11415,11483,11538,11541,11749,12209,12446,12606,12706,15388,17622,18388,19962]]]]},{"k":"H8085","v":[["*",[1158,1072,[[0,61,58,0,58,[[2,3,3,0,3],[3,1,1,3,4],[10,1,1,4,5],[13,1,1,5,6],[15,2,2,6,8],[16,1,1,8,9],[17,1,1,9,10],[20,5,4,10,14],[21,1,1,14,15],[22,6,6,15,21],[23,2,2,21,23],[25,1,1,23,24],[26,6,6,24,30],[27,1,1,30,31],[28,2,2,31,33],[29,3,3,33,36],[30,1,1,36,37],[33,4,4,37,41],[34,1,1,41,42],[36,4,4,42,46],[38,3,3,46,49],[40,2,1,49,50],[41,4,4,50,54],[42,1,1,54,55],[44,2,2,55,57],[48,2,1,57,58]]],[1,49,44,58,102,[[51,2,2,58,60],[52,2,2,60,62],[53,4,4,62,66],[54,1,1,66,67],[55,5,4,67,71],[56,4,4,71,75],[57,2,2,75,77],[58,1,1,77,78],[60,1,1,78,79],[64,3,2,79,81],[65,5,5,81,86],[67,3,3,86,89],[68,3,2,89,91],[69,1,1,91,92],[71,3,2,92,94],[72,4,3,94,97],[73,1,1,97,98],[77,1,1,98,99],[81,2,2,99,101],[82,1,1,101,102]]],[2,7,7,102,109,[[94,1,1,102,103],[99,1,1,103,104],[113,1,1,104,105],[115,4,4,105,109]]],[3,32,31,109,140,[[123,1,1,109,110],[125,1,1,110,111],[127,2,2,111,113],[128,2,2,113,115],[130,5,5,115,120],[132,2,2,120,122],[136,2,2,122,124],[137,2,2,124,126],[138,1,1,126,127],[139,1,1,127,128],[140,2,2,128,130],[143,1,1,130,131],[146,9,8,131,139],[149,1,1,139,140]]],[4,91,82,140,222,[[153,6,5,140,145],[154,1,1,145,146],[155,1,1,146,147],[156,11,9,147,156],[157,9,7,156,163],[158,2,2,163,165],[159,1,1,165,166],[160,1,1,166,167],[161,4,4,167,171],[162,1,1,171,172],[163,4,3,172,175],[164,1,1,175,176],[165,6,6,176,182],[167,2,1,182,183],[169,3,3,183,186],[170,4,4,186,190],[171,1,1,190,191],[172,1,1,191,192],[173,4,3,192,195],[175,1,1,195,196],[178,3,3,196,199],[179,2,2,199,201],[180,8,7,201,208],[181,2,2,208,210],[182,7,7,210,217],[183,2,2,217,219],[184,1,1,219,220],[185,1,1,220,221],[186,1,1,221,222]]],[5,27,26,222,248,[[187,3,2,222,224],[188,2,2,224,226],[189,1,1,226,227],[191,2,2,227,229],[192,3,3,229,232],[193,1,1,232,233],[195,4,4,233,237],[196,2,2,237,239],[197,1,1,239,240],[200,1,1,240,241],[208,4,4,241,245],[210,3,3,245,248]]],[6,24,22,248,270,[[212,4,3,248,251],[213,1,1,251,252],[215,2,2,252,254],[216,1,1,254,255],[217,2,2,255,257],[219,4,3,257,260],[221,3,3,260,263],[223,2,2,263,265],[224,1,1,265,266],[228,1,1,266,267],[229,1,1,267,268],[230,2,2,268,270]]],[7,2,2,270,272,[[232,1,1,270,271],[233,1,1,271,272]]],[8,65,60,272,332,[[236,1,1,272,273],[237,4,4,273,277],[238,3,3,277,280],[239,3,3,280,283],[242,2,1,283,284],[243,5,5,284,289],[244,1,1,289,290],[246,1,1,290,291],[247,3,3,291,294],[248,3,2,294,296],[249,2,2,296,298],[250,8,7,298,305],[251,1,1,305,306],[252,4,4,306,310],[254,1,1,310,311],[257,4,4,311,315],[258,5,4,315,319],[259,1,1,319,320],[260,5,5,320,325],[261,1,1,325,326],[263,5,4,326,330],[265,1,1,330,331],[266,1,1,331,332]]],[9,33,28,332,360,[[269,1,1,332,333],[270,1,1,333,334],[271,3,2,334,336],[273,1,1,336,337],[274,1,1,337,338],[276,1,1,338,339],[277,1,1,339,340],[278,1,1,340,341],[279,3,3,341,344],[280,2,2,344,346],[281,4,4,346,350],[282,1,1,350,351],[283,3,2,351,353],[284,1,1,353,354],[285,2,2,354,356],[286,4,2,356,358],[288,3,2,358,360]]],[10,60,56,360,416,[[291,4,3,360,363],[292,1,1,363,364],[293,3,3,364,367],[294,2,1,367,368],[295,3,3,368,371],[296,1,1,371,372],[298,14,12,372,384],[299,1,1,384,385],[300,5,5,385,390],[301,2,2,390,392],[302,5,5,392,397],[303,2,2,397,399],[304,1,1,399,400],[305,3,3,400,403],[306,1,1,403,404],[307,1,1,404,405],[309,1,1,405,406],[310,5,5,406,411],[311,3,3,411,414],[312,2,2,414,416]]],[11,43,39,416,455,[[315,1,1,416,417],[317,1,1,417,418],[318,1,1,418,419],[319,2,2,419,421],[321,1,1,421,422],[322,1,1,422,423],[323,1,1,423,424],[325,1,1,424,425],[326,1,1,425,426],[328,1,1,426,427],[329,2,2,427,429],[330,6,5,429,434],[331,12,10,434,444],[332,4,4,444,448],[333,2,2,448,450],[334,5,4,450,454],[337,1,1,454,455]]],[12,14,13,455,468,[[347,1,1,455,456],[351,3,2,456,458],[352,3,3,458,461],[353,2,2,461,463],[354,1,1,463,464],[355,1,1,464,465],[356,1,1,465,466],[365,1,1,466,467],[366,1,1,467,468]]],[13,48,45,468,513,[[371,1,1,468,469],[372,12,10,469,479],[373,2,2,479,481],[375,5,5,481,486],[376,3,3,486,489],[377,1,1,489,490],[379,1,1,490,491],[381,2,2,491,493],[382,2,2,493,495],[384,2,2,495,497],[386,3,3,497,500],[389,1,1,500,501],[390,1,1,501,502],[391,2,2,502,504],[394,1,1,504,505],[395,1,1,505,506],[396,2,2,506,508],[399,1,1,508,509],[400,4,3,509,512],[401,1,1,512,513]]],[14,3,3,513,516,[[405,1,1,513,514],[406,1,1,514,515],[411,1,1,515,516]]],[15,28,27,516,543,[[413,2,2,516,518],[414,2,2,518,520],[416,5,5,520,525],[417,1,1,525,526],[418,4,4,526,530],[420,3,3,530,533],[421,7,6,533,539],[424,2,2,539,541],[425,2,2,541,543]]],[16,4,4,543,547,[[426,2,2,543,545],[427,1,1,545,546],[428,1,1,546,547]]],[17,40,37,547,584,[[437,1,1,547,548],[438,1,1,548,549],[439,1,1,549,550],[440,1,1,550,551],[448,4,3,551,554],[450,2,2,554,556],[451,1,1,556,557],[455,1,1,557,558],[456,2,1,558,559],[457,1,1,559,560],[461,1,1,560,561],[462,1,1,561,562],[463,1,1,562,563],[464,2,2,563,565],[466,1,1,565,566],[467,1,1,566,567],[468,4,4,567,571],[469,5,5,571,576],[470,1,1,576,577],[471,2,2,577,579],[472,3,2,579,581],[474,1,1,581,582],[477,2,2,582,584]]],[18,79,78,584,662,[[481,2,2,584,586],[482,1,1,586,587],[483,2,2,587,589],[487,1,1,589,590],[494,2,2,590,592],[495,2,2,592,594],[496,1,1,594,595],[499,1,1,595,596],[503,1,1,596,597],[504,1,1,597,598],[505,2,2,598,600],[507,1,1,600,601],[508,2,2,601,603],[511,4,4,603,607],[515,2,2,607,609],[516,1,1,609,610],[517,1,1,610,611],[521,1,1,611,612],[522,1,1,612,613],[525,1,1,613,614],[526,1,1,614,615],[527,1,1,615,616],[528,1,1,616,617],[531,1,1,617,618],[532,2,2,618,620],[535,1,1,620,621],[536,1,1,621,622],[538,2,2,622,624],[539,1,1,624,625],[541,1,1,625,626],[542,1,1,626,627],[543,4,4,627,631],[546,1,1,631,632],[553,1,1,632,633],[555,3,3,633,636],[558,5,4,636,640],[561,1,1,640,641],[562,1,1,641,642],[569,1,1,642,643],[571,1,1,643,644],[572,1,1,644,645],[574,1,1,645,646],[579,2,2,646,648],[580,1,1,648,649],[583,3,3,649,652],[592,1,1,652,653],[593,1,1,653,654],[596,1,1,654,655],[607,1,1,655,656],[609,1,1,656,657],[615,1,1,657,658],[618,1,1,658,659],[620,2,2,659,661],[622,1,1,661,662]]],[19,30,30,662,692,[[628,3,3,662,665],[631,2,2,665,667],[632,2,2,667,669],[634,1,1,669,670],[635,4,4,670,674],[639,1,1,674,675],[640,2,2,675,677],[642,3,3,677,680],[645,1,1,680,681],[646,2,2,681,683],[647,1,1,683,684],[648,1,1,684,685],[649,1,1,685,686],[650,2,2,686,688],[652,2,2,688,690],[655,1,1,690,691],[656,1,1,691,692]]],[20,8,7,692,699,[[659,1,1,692,693],[663,1,1,693,694],[665,3,2,694,696],[667,2,2,696,698],[670,1,1,698,699]]],[21,3,3,699,702,[[672,2,2,699,701],[678,1,1,701,702]]],[22,106,95,702,797,[[679,4,4,702,706],[684,4,3,706,709],[685,1,1,709,710],[693,1,1,710,711],[694,1,1,711,712],[696,1,1,712,713],[699,2,2,713,715],[702,1,1,715,716],[706,5,4,716,720],[707,1,1,720,721],[708,4,4,721,725],[710,2,2,725,727],[711,3,3,727,730],[712,2,1,730,731],[714,3,3,731,734],[715,12,9,734,743],[716,1,1,743,744],[717,2,2,744,746],[718,2,2,746,748],[719,3,2,748,750],[720,6,6,750,756],[721,3,2,756,758],[722,2,2,758,760],[723,1,1,760,761],[724,2,2,761,763],[725,1,1,763,764],[726,11,10,764,774],[727,1,1,774,775],[728,2,2,775,777],[729,3,3,777,780],[730,3,2,780,782],[733,3,2,782,784],[736,1,1,784,785],[737,2,2,785,787],[738,1,1,787,788],[740,1,1,788,789],[742,1,1,789,790],[743,3,3,790,793],[744,4,4,793,797]]],[23,184,168,797,965,[[746,1,1,797,798],[747,3,3,798,801],[748,6,6,801,807],[749,4,3,807,810],[750,5,5,810,815],[751,8,8,815,823],[752,2,2,823,825],[753,4,4,825,829],[754,1,1,829,830],[755,9,9,830,839],[756,1,1,839,840],[757,4,4,840,844],[758,1,1,844,845],[760,1,1,845,846],[761,6,4,846,850],[762,5,5,850,855],[763,3,2,855,857],[764,3,3,857,860],[765,1,1,860,861],[766,5,4,861,865],[767,5,4,865,869],[769,5,4,869,873],[770,11,9,873,882],[771,4,4,882,886],[772,2,2,886,888],[773,5,4,888,892],[774,1,1,892,893],[775,5,4,893,897],[776,2,2,897,899],[777,2,2,899,901],[778,5,4,901,905],[779,9,8,905,913],[780,7,7,913,920],[781,4,4,920,924],[782,6,6,924,930],[784,3,3,930,933],[785,1,1,933,934],[786,7,6,934,940],[787,2,2,940,942],[788,5,5,942,947],[790,3,2,947,949],[792,3,3,949,952],[793,5,5,952,957],[794,6,5,957,962],[795,3,3,962,965]]],[24,5,4,965,969,[[797,3,2,965,967],[799,2,2,967,969]]],[25,51,46,969,1015,[[802,2,2,969,971],[803,4,4,971,975],[804,10,7,975,982],[807,1,1,982,983],[809,1,1,983,984],[811,1,1,984,985],[813,2,1,985,986],[814,2,2,986,988],[817,1,1,988,989],[819,1,1,989,990],[820,2,2,990,992],[821,3,3,992,995],[826,1,1,995,996],[827,1,1,996,997],[828,1,1,997,998],[834,7,6,998,1004],[835,2,2,1004,1006],[836,2,2,1006,1008],[837,3,3,1008,1011],[838,1,1,1011,1012],[841,1,1,1012,1013],[844,1,1,1013,1014],[845,1,1,1014,1015]]],[26,15,14,1015,1029,[[850,1,1,1015,1016],[857,2,2,1016,1018],[858,7,7,1018,1025],[859,3,2,1025,1027],[861,2,2,1027,1029]]],[27,3,3,1029,1032,[[865,1,1,1029,1030],[866,1,1,1030,1031],[870,1,1,1031,1032]]],[28,1,1,1032,1033,[[876,1,1,1032,1033]]],[29,10,10,1033,1043,[[881,3,3,1033,1036],[882,2,2,1036,1038],[883,2,2,1038,1040],[885,1,1,1040,1041],[886,2,2,1041,1043]]],[30,1,1,1043,1044,[[888,1,1,1043,1044]]],[31,1,1,1044,1045,[[890,1,1,1044,1045]]],[32,9,8,1045,1053,[[893,1,1,1045,1046],[895,2,2,1046,1048],[897,1,1,1048,1049],[898,4,3,1049,1052],[899,1,1,1052,1053]]],[33,3,3,1053,1056,[[900,1,1,1053,1054],[901,1,1,1054,1055],[902,1,1,1055,1056]]],[34,3,3,1056,1059,[[903,1,1,1056,1057],[905,2,2,1057,1059]]],[35,2,2,1059,1061,[[907,1,1,1059,1060],[908,1,1,1060,1061]]],[36,1,1,1061,1062,[[909,1,1,1061,1062]]],[37,10,8,1062,1070,[[911,1,1,1062,1063],[913,1,1,1063,1064],[916,2,1,1064,1065],[917,4,3,1065,1068],[918,2,2,1068,1070]]],[38,2,2,1070,1072,[[926,1,1,1070,1071],[927,1,1,1071,1072]]]],[63,65,72,102,273,350,383,392,417,434,519,525,530,539,565,577,579,582,584,586,587,621,643,697,732,733,735,740,761,770,780,808,828,836,847,852,874,985,987,997,1004,1033,1089,1100,1104,1110,1159,1164,1168,1210,1254,1273,1274,1275,1315,1360,1374,1475,1569,1578,1586,1597,1602,1609,1610,1632,1634,1660,1664,1667,1685,1689,1698,1701,1707,1725,1729,1754,1815,1934,1946,1954,1955,1956,1959,1967,2000,2018,2023,2031,2035,2070,2136,2140,2157,2165,2166,2184,2328,2455,2456,2477,2831,2997,3460,3538,3542,3545,3551,3939,3973,4025,4034,4061,4065,4121,4122,4123,4130,4135,4198,4202,4321,4327,4341,4343,4411,4434,4450,4462,4574,4652,4653,4655,4656,4659,4660,4662,4663,4800,4908,4909,4926,4935,4937,4963,5001,5005,5010,5014,5016,5032,5034,5036,5037,5040,5054,5076,5077,5078,5079,5080,5081,5089,5090,5123,5157,5158,5159,5176,5180,5196,5221,5235,5236,5268,5275,5276,5280,5283,5284,5290,5324,5368,5376,5377,5398,5399,5400,5403,5426,5430,5465,5467,5468,5505,5573,5580,5583,5594,5595,5612,5613,5624,5626,5656,5660,5673,5683,5698,5710,5716,5718,5720,5721,5725,5728,5740,5741,5759,5817,5848,5868,5869,5879,5880,5902,5935,5940,5954,5959,5969,5985,6038,6040,6046,6053,6065,6078,6108,6199,6428,6437,6438,6456,6486,6500,6503,6547,6562,6565,6572,6626,6639,6664,6705,6709,6761,6784,6800,6839,6846,6857,6893,6907,6922,7018,7049,7057,7067,7133,7157,7225,7262,7263,7264,7265,7285,7286,7287,7303,7311,7316,7359,7376,7378,7388,7390,7391,7418,7451,7461,7474,7475,7488,7489,7530,7535,7561,7564,7574,7579,7580,7582,7584,7597,7629,7641,7646,7649,7712,7788,7793,7794,7799,7818,7820,7821,7835,7848,7865,7868,7885,7896,7900,7924,7960,7963,7964,7965,8002,8020,8109,8121,8149,8156,8202,8218,8247,8285,8304,8331,8333,8338,8372,8373,8392,8399,8424,8425,8447,8454,8458,8483,8513,8546,8570,8571,8609,8647,8728,8758,8762,8812,8825,8827,8844,8878,8879,8885,8886,8903,9013,9014,9015,9017,9019,9021,9024,9027,9028,9030,9034,9037,9054,9080,9085,9086,9087,9103,9129,9146,9153,9166,9167,9171,9175,9188,9210,9224,9269,9270,9271,9299,9339,9400,9416,9420,9433,9439,9444,9466,9467,9478,9499,9508,9597,9655,9704,9708,9713,9786,9799,9842,9875,9907,9972,9997,10023,10036,10050,10052,10055,10056,10062,10065,10067,10068,10069,10070,10072,10077,10081,10086,10103,10110,10111,10114,10128,10131,10156,10158,10163,10164,10245,10670,10782,10789,10807,10810,10819,10825,10862,10883,10899,10915,11145,11187,11281,11301,11302,11303,11305,11307,11309,11312,11315,11317,11321,11336,11338,11365,11369,11370,11371,11387,11397,11410,11411,11418,11457,11492,11498,11513,11514,11560,11569,11596,11607,11616,11668,11694,11720,11724,11775,11796,11847,11854,11921,11952,11959,11960,11988,12110,12111,12240,12300,12302,12317,12326,12360,12363,12366,12374,12379,12388,12402,12407,12408,12417,12495,12502,12508,12520,12527,12528,12538,12539,12540,12666,12667,12674,12698,12720,12722,12732,12751,12902,12922,12946,12978,13154,13159,13170,13211,13220,13240,13329,13357,13416,13481,13490,13526,13543,13553,13623,13638,13651,13658,13681,13683,13685,13693,13699,13711,13717,13733,13747,13748,13771,13773,13841,13926,13927,13966,13968,13976,13993,13994,14058,14104,14109,14124,14162,14171,14228,14280,14292,14301,14305,14329,14344,14353,14390,14394,14399,14405,14503,14504,14524,14526,14572,14607,14642,14649,14675,14699,14727,14749,14751,14784,14797,14820,14824,14838,14851,14862,14881,14889,14891,14892,14968,15089,15116,15134,15172,15222,15225,15228,15230,15267,15279,15422,15440,15461,15486,15522,15541,15569,15653,15676,15695,15836,15849,16047,16142,16157,16235,16282,16294,16301,16339,16405,16408,16433,16491,16500,16524,16530,16599,16608,16634,16635,16636,16734,16748,16755,16836,16838,16839,16914,16945,16952,16966,17012,17032,17063,17066,17123,17125,17205,17248,17323,17398,17434,17450,17491,17492,17536,17566,17568,17653,17656,17664,17669,17673,17777,17778,17779,17795,17964,17975,18000,18038,18045,18111,18176,18178,18186,18187,18211,18226,18236,18238,18247,18262,18268,18292,18294,18298,18304,18341,18343,18346,18353,18356,18358,18359,18360,18361,18363,18369,18378,18395,18413,18417,18441,18448,18473,18477,18482,18489,18498,18500,18503,18504,18514,18517,18534,18541,18582,18589,18598,18607,18615,18617,18619,18620,18621,18622,18626,18628,18630,18634,18637,18666,18672,18674,18680,18694,18703,18711,18742,18743,18790,18801,18802,18839,18865,18889,18909,18916,18921,18926,18927,18930,18941,18969,19015,19023,19027,19032,19042,19043,19046,19048,19058,19073,19078,19079,19096,19099,19107,19108,19113,19121,19132,19135,19142,19143,19145,19146,19147,19159,19169,19185,19188,19194,19195,19202,19228,19229,19230,19232,19233,19234,19236,19237,19240,19266,19276,19277,19281,19283,19305,19348,19377,19380,19381,19384,19386,19394,19397,19403,19406,19410,19422,19423,19432,19438,19451,19456,19459,19475,19483,19500,19502,19506,19509,19537,19538,19541,19542,19575,19576,19577,19579,19582,19583,19584,19585,19593,19605,19610,19612,19613,19625,19633,19643,19647,19654,19655,19672,19698,19701,19706,19709,19754,19764,19784,19785,19805,19811,19815,19818,19831,19833,19836,19837,19838,19839,19840,19841,19845,19853,19855,19858,19866,19867,19873,19876,19879,19888,19894,19896,19902,19910,19915,19920,19922,19944,19948,19952,19968,19979,19981,19988,19989,19990,19996,20001,20004,20015,20026,20033,20034,20036,20057,20059,20084,20085,20109,20129,20141,20147,20148,20150,20168,20195,20209,20211,20212,20239,20258,20263,20328,20331,20410,20415,20488,20492,20494,20497,20499,20500,20508,20509,20512,20513,20514,20519,20529,20566,20622,20638,20682,20710,20727,20797,20874,20885,20890,20903,20934,20942,21086,21113,21151,21284,21285,21287,21310,21311,21312,21320,21322,21356,21357,21360,21363,21374,21401,21481,21578,21604,21751,21974,21977,21994,21998,21999,22002,22005,22006,22007,22024,22027,22088,22089,22134,22153,22225,22293,22396,22404,22408,22411,22415,22424,22446,22480,22485,22492,22511,22550,22581,22609,22617,22648,22649,22650,22657,22671,22699,22712,22731,22733,22770,22784,22813,22822,22852,22882,22920,22962,22973,22974,22975,22985,22999,23105,23136]]],["+",[201,180,[[0,13,12,0,12,[[2,2,2,0,2],[15,1,1,2,3],[20,2,1,3,4],[23,2,2,4,6],[26,2,2,6,8],[27,1,1,8,9],[28,1,1,9,10],[30,1,1,10,11],[38,1,1,11,12]]],[1,17,13,12,25,[[51,1,1,12,13],[55,1,1,13,14],[64,2,1,14,15],[65,4,4,15,19],[67,1,1,19,20],[68,2,1,20,21],[71,2,1,21,22],[72,2,1,22,23],[81,1,1,23,24],[82,1,1,24,25]]],[3,5,5,25,30,[[123,1,1,25,26],[127,1,1,26,27],[130,2,2,27,29],[146,1,1,29,30]]],[4,22,18,30,48,[[153,1,1,30,31],[155,1,1,31,32],[156,3,3,32,35],[157,5,4,35,39],[159,1,1,39,40],[163,4,3,40,43],[164,1,1,43,44],[167,2,1,44,45],[178,1,1,45,46],[180,2,1,46,47],[181,1,1,47,48]]],[5,9,9,48,57,[[187,1,1,48,49],[188,1,1,49,50],[189,1,1,50,51],[191,1,1,51,52],[192,2,2,52,54],[195,1,1,54,55],[208,1,1,55,56],[210,1,1,56,57]]],[6,2,2,57,59,[[217,1,1,57,58],[219,1,1,58,59]]],[8,14,13,59,72,[[237,1,1,59,60],[239,3,3,60,63],[243,1,1,63,64],[246,1,1,64,65],[250,1,1,65,66],[252,1,1,66,67],[258,3,2,67,69],[260,1,1,69,70],[261,1,1,70,71],[266,1,1,71,72]]],[9,5,4,72,76,[[271,1,1,72,73],[281,1,1,73,74],[283,2,1,74,75],[288,1,1,75,76]]],[10,14,13,76,89,[[291,1,1,76,77],[294,2,1,77,78],[295,2,2,78,80],[298,1,1,80,81],[299,1,1,81,82],[300,2,2,82,84],[301,1,1,84,85],[303,1,1,85,86],[304,1,1,86,87],[310,1,1,87,88],[311,1,1,88,89]]],[11,7,7,89,96,[[318,1,1,89,90],[323,1,1,90,91],[331,3,3,91,94],[332,1,1,94,95],[334,1,1,95,96]]],[12,3,3,96,99,[[347,1,1,96,97],[351,1,1,97,98],[366,1,1,98,99]]],[13,8,8,99,107,[[373,1,1,99,100],[375,3,3,100,103],[377,1,1,103,104],[389,1,1,104,105],[400,2,2,105,107]]],[14,1,1,107,108,[[411,1,1,107,108]]],[15,6,6,108,114,[[413,2,2,108,110],[416,1,1,110,111],[417,1,1,111,112],[420,1,1,112,113],[425,1,1,113,114]]],[16,1,1,114,115,[[426,1,1,114,115]]],[17,7,4,115,119,[[437,1,1,115,116],[448,2,1,116,117],[456,2,1,117,118],[472,2,1,118,119]]],[18,3,3,119,122,[[546,1,1,119,120],[583,1,1,120,121],[593,1,1,121,122]]],[19,1,1,122,123,[[655,1,1,122,123]]],[20,2,2,123,125,[[659,1,1,123,124],[665,1,1,124,125]]],[21,1,1,125,126,[[672,1,1,125,126]]],[22,14,12,126,138,[[684,3,2,126,128],[699,1,1,128,129],[711,2,2,129,131],[715,2,2,131,133],[716,1,1,133,134],[733,2,1,134,135],[737,2,2,135,137],[744,1,1,137,138]]],[23,27,25,138,163,[[750,1,1,138,139],[755,1,1,139,140],[757,1,1,140,141],[758,1,1,141,142],[761,2,1,142,143],[762,1,1,143,144],[763,1,1,144,145],[766,1,1,145,146],[767,2,2,146,148],[769,1,1,148,149],[770,3,3,149,152],[775,2,1,152,153],[777,1,1,153,154],[779,2,2,154,156],[780,4,4,156,160],[781,1,1,160,161],[782,1,1,161,162],[794,1,1,162,163]]],[25,10,9,163,172,[[802,1,1,163,164],[803,2,2,164,166],[834,5,4,166,170],[835,1,1,170,171],[836,1,1,171,172]]],[26,3,3,172,175,[[858,1,1,172,173],[859,1,1,173,174],[861,1,1,174,175]]],[29,2,2,175,177,[[881,1,1,175,176],[886,1,1,176,177]]],[37,4,3,177,180,[[916,2,1,177,178],[917,2,2,178,180]]]],[63,65,392,530,621,643,733,761,780,808,874,1168,1578,1660,1946,1954,1955,1956,1959,2000,2031,2136,2166,2455,2477,3939,4034,4123,4135,4652,4926,5001,5010,5014,5040,5076,5078,5080,5081,5123,5221,5235,5236,5268,5324,5573,5612,5698,5869,5879,5902,5935,5954,5969,6040,6456,6503,6709,6784,7262,7303,7311,7316,7390,7451,7564,7629,7818,7820,7885,7924,8020,8156,8399,8458,8647,8758,8878,8885,8886,9027,9054,9087,9103,9146,9188,9224,9420,9478,9704,9842,10065,10072,10077,10103,10156,10670,10789,11187,11336,11365,11371,11387,11418,11668,11952,11960,12240,12300,12302,12379,12388,12502,12674,12720,12902,13170,13357,13771,14968,15695,15849,17205,17323,17450,17568,17777,17778,18038,18294,18298,18356,18369,18395,18742,18801,18802,18941,19113,19236,19276,19305,19381,19386,19422,19459,19502,19509,19542,19579,19582,19593,19709,19784,19837,19841,19845,19858,19866,19867,19879,19896,20209,20488,20494,20500,21284,21285,21311,21312,21320,21356,22005,22024,22088,22396,22492,22962,22973,22974]]],["Hear",[95,95,[[0,3,3,0,3,[[3,1,1,0,1],[22,1,1,1,2],[36,1,1,2,3]]],[3,3,3,3,6,[[128,1,1,3,4],[132,1,1,4,5],[136,1,1,5,6]]],[4,7,7,6,13,[[153,1,1,6,7],[157,1,1,7,8],[158,2,2,8,10],[161,1,1,10,11],[172,1,1,11,12],[185,1,1,12,13]]],[6,1,1,13,14,[[215,1,1,13,14]]],[8,2,2,14,16,[[257,2,2,14,16]]],[9,2,2,16,18,[[286,2,2,16,18]]],[10,2,2,18,20,[[298,1,1,18,19],[312,1,1,19,20]]],[11,3,3,20,23,[[319,1,1,20,21],[330,1,1,21,22],[332,1,1,22,23]]],[12,1,1,23,24,[[365,1,1,23,24]]],[13,4,4,24,28,[[379,1,1,24,25],[381,1,1,25,26],[386,1,1,26,27],[395,1,1,27,28]]],[15,1,1,28,29,[[416,1,1,28,29]]],[17,3,3,29,32,[[448,1,1,29,30],[469,1,1,30,31],[477,1,1,31,32]]],[18,14,14,32,46,[[494,1,1,32,33],[504,1,1,33,34],[505,1,1,34,35],[507,1,1,35,36],[516,1,1,36,37],[526,1,1,37,38],[527,1,1,38,39],[531,1,1,39,40],[538,1,1,40,41],[541,1,1,41,42],[558,1,1,42,43],[579,1,1,43,44],[596,1,1,44,45],[620,1,1,45,46]]],[19,7,7,46,53,[[631,2,2,46,48],[632,1,1,48,49],[635,2,2,49,51],[646,1,1,51,52],[650,1,1,52,53]]],[22,9,9,53,62,[[679,2,2,53,55],[685,1,1,55,56],[711,1,1,56,57],[714,1,1,57,58],[717,1,1,58,59],[720,1,1,59,60],[726,1,1,60,61],[744,1,1,61,62]]],[23,16,16,62,78,[[746,1,1,62,63],[749,1,1,63,64],[750,1,1,64,65],[751,1,1,65,66],[754,1,1,66,67],[755,2,2,67,69],[757,1,1,69,70],[761,1,1,70,71],[763,1,1,71,72],[765,1,1,72,73],[766,1,1,73,74],[772,1,1,74,75],[773,1,1,75,76],[775,1,1,76,77],[788,1,1,77,78]]],[25,4,4,78,82,[[814,1,1,78,79],[819,1,1,79,80],[821,1,1,80,81],[826,1,1,81,82]]],[27,2,2,82,84,[[865,1,1,82,83],[866,1,1,83,84]]],[28,1,1,84,85,[[876,1,1,84,85]]],[29,4,4,85,89,[[881,1,1,85,86],[882,1,1,86,87],[883,1,1,87,88],[886,1,1,88,89]]],[32,5,5,89,94,[[893,1,1,89,90],[895,2,2,90,92],[898,2,2,92,94]]],[37,1,1,94,95,[[913,1,1,94,95]]]],[102,577,1089,4065,4202,4321,4908,5054,5089,5090,5158,5430,5817,6626,7794,7799,8570,8571,9028,9499,9708,10052,10114,11145,11457,11492,11607,11796,12363,13159,13685,13926,14104,14292,14301,14329,14524,14649,14675,14727,14820,14851,15225,15522,16047,16294,16491,16500,16524,16608,16635,16945,17063,17656,17664,17795,18292,18343,18417,18498,18615,18927,18969,19079,19108,19121,19202,19228,19232,19281,19377,19410,19451,19456,19633,19655,19701,20034,20710,20874,20942,21086,22134,22153,22293,22408,22411,22424,22485,22581,22609,22617,22649,22650,22920]]],["Hearest",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7157]]],["Hearken",[22,22,[[1,1,1,0,1,[[67,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[8,2,2,2,4,[[243,2,2,2,4]]],[10,2,2,4,6,[[310,1,1,4,5],[312,1,1,5,6]]],[11,1,1,6,7,[[330,1,1,6,7]]],[13,2,2,7,9,[[372,1,1,7,8],[384,1,1,8,9]]],[17,1,1,9,10,[[467,1,1,9,10]]],[18,1,1,10,11,[[522,1,1,10,11]]],[19,2,2,11,13,[[634,1,1,11,12],[650,1,1,12,13]]],[22,6,6,13,19,[[714,1,1,13,14],[724,2,2,14,16],[726,1,1,16,17],[729,2,2,17,19]]],[23,3,3,19,22,[[767,1,1,19,20],[771,2,2,20,22]]]],[2018,6761,7376,7391,9416,9508,10055,11303,11569,13638,14607,16599,17066,18346,18589,18598,18626,18674,18680,19500,19612,19613]]],["Listen",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18637]]],["Obey",[4,4,[[23,4,4,0,4,[[751,1,1,0,1],[755,2,2,1,3],[782,1,1,3,4]]]],[19142,19230,19233,19915]]],["Publish",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22404]]],["consented",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21751]]],["content",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1110]]],["declare",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18473]]],["declared",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18582]]],["declareth",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18477]]],["discern",[2,2,[[9,1,1,0,1,[[280,1,1,0,1]]],[10,1,1,1,2,[[293,1,1,1,2]]]],[8373,8827]]],["ear",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13553]]],["forth",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15653]]],["hear",[217,211,[[0,7,7,0,7,[[20,1,1,0,1],[22,3,3,1,4],[41,2,2,4,6],[48,1,1,6,7]]],[1,7,7,7,14,[[55,1,1,7,8],[56,1,1,8,9],[64,1,1,9,10],[68,1,1,10,11],[69,1,1,11,12],[71,1,1,12,13],[81,1,1,13,14]]],[2,1,1,14,15,[[94,1,1,14,15]]],[3,3,3,15,18,[[125,1,1,15,16],[130,1,1,16,17],[139,1,1,17,18]]],[4,20,19,18,37,[[153,3,2,18,20],[154,1,1,20,21],[156,2,2,21,23],[157,1,1,23,24],[165,2,2,24,26],[169,1,1,26,27],[170,1,1,27,28],[171,1,1,28,29],[173,1,1,29,30],[181,1,1,30,31],[182,3,3,31,34],[183,2,2,34,36],[184,1,1,36,37]]],[5,1,1,37,38,[[193,1,1,37,38]]],[6,3,3,38,41,[[215,1,1,38,39],[217,1,1,39,40],[224,1,1,40,41]]],[8,5,5,41,46,[[237,2,2,41,43],[248,1,1,43,44],[250,1,1,44,45],[251,1,1,45,46]]],[9,10,10,46,56,[[280,1,1,46,47],[281,3,3,47,50],[282,1,1,50,51],[283,1,1,51,52],[285,1,1,52,53],[286,2,2,53,55],[288,1,1,55,56]]],[10,7,7,56,63,[[298,7,7,56,63]]],[11,6,6,63,69,[[319,1,1,63,64],[326,1,1,64,65],[329,1,1,65,66],[330,1,1,66,67],[331,2,2,67,69]]],[13,13,13,69,82,[[372,8,8,69,77],[373,1,1,77,78],[384,1,1,78,79],[386,1,1,79,80],[391,1,1,80,81],[394,1,1,81,82]]],[15,2,2,82,84,[[420,1,1,82,83],[421,1,1,83,84]]],[17,9,9,84,93,[[438,1,1,84,85],[440,1,1,85,86],[450,1,1,86,87],[457,1,1,87,88],[462,1,1,88,89],[466,1,1,89,90],[468,1,1,90,91],[469,1,1,91,92],[470,1,1,92,93]]],[18,23,23,93,116,[[481,2,2,93,95],[482,1,1,95,96],[494,1,1,96,97],[511,1,1,97,98],[528,1,1,98,99],[532,2,2,99,101],[536,1,1,101,102],[543,2,2,102,104],[561,1,1,104,105],[562,1,1,105,106],[569,1,1,106,107],[571,1,1,107,108],[572,1,1,108,109],[579,1,1,109,110],[592,1,1,110,111],[607,1,1,111,112],[615,1,1,112,113],[618,1,1,113,114],[620,1,1,114,115],[622,1,1,115,116]]],[19,4,4,116,120,[[628,2,2,116,118],[646,1,1,118,119],[649,1,1,119,120]]],[20,4,3,120,123,[[663,1,1,120,121],[665,2,1,121,122],[670,1,1,122,123]]],[21,1,1,123,124,[[678,1,1,123,124]]],[22,29,27,124,151,[[679,1,1,124,125],[684,1,1,125,126],[696,1,1,126,127],[706,4,3,127,130],[707,1,1,130,131],[708,3,3,131,134],[710,2,2,134,136],[712,2,1,136,137],[715,2,2,137,139],[720,1,1,139,140],[721,1,1,140,141],[722,1,1,141,142],[725,1,1,142,143],[726,2,2,143,145],[728,1,1,145,146],[729,1,1,146,147],[733,1,1,147,148],[743,2,2,148,150],[744,1,1,150,151]]],[23,26,26,151,177,[[748,1,1,151,152],[749,1,1,152,153],[750,2,2,153,155],[751,1,1,155,156],[753,2,2,156,158],[755,1,1,158,159],[757,2,2,159,161],[761,1,1,161,162],[764,1,1,162,163],[766,2,2,163,165],[767,1,1,165,166],[769,1,1,166,167],[772,1,1,167,168],[773,1,1,168,169],[778,1,1,169,170],[781,1,1,170,171],[782,1,1,171,172],[786,2,2,172,174],[788,1,1,174,175],[793,1,1,175,176],[794,1,1,176,177]]],[24,1,1,177,178,[[797,1,1,177,178]]],[25,21,20,178,198,[[803,2,2,178,180],[804,4,4,180,184],[807,1,1,184,185],[809,1,1,185,186],[813,2,1,186,187],[814,1,1,187,188],[817,1,1,188,189],[834,2,2,189,191],[835,1,1,191,192],[837,3,3,192,195],[838,1,1,195,196],[841,1,1,196,197],[845,1,1,197,198]]],[26,2,2,198,200,[[858,2,2,198,200]]],[29,2,2,200,202,[[883,1,1,200,201],[885,1,1,201,202]]],[32,3,3,202,205,[[898,2,2,202,204],[899,1,1,204,205]]],[33,1,1,205,206,[[902,1,1,205,206]]],[34,1,1,206,207,[[903,1,1,206,207]]],[37,4,3,207,210,[[911,1,1,207,208],[917,2,1,208,209],[918,1,1,209,210]]],[38,1,1,210,211,[[926,1,1,210,211]]]],[519,579,582,584,1273,1274,1475,1667,1701,1934,2035,2070,2140,2456,2831,3973,4121,4434,4909,4935,4963,5032,5037,5080,5283,5284,5377,5400,5426,5468,5683,5720,5721,5725,5740,5741,5759,5985,6639,6705,6922,7263,7264,7488,7574,7597,8372,8392,8424,8425,8447,8454,8546,8570,8571,8609,9015,9017,9019,9021,9024,9030,9034,9713,9907,9997,10036,10068,10077,11303,11305,11307,11309,11312,11315,11317,11321,11338,11560,11596,11724,11775,12495,12540,12922,12978,13220,13416,13490,13623,13651,13699,13733,13966,13968,13976,14109,14390,14699,14749,14751,14797,14889,14891,15267,15279,15422,15440,15461,15541,15836,16142,16235,16282,16301,16339,16405,16408,16952,17032,17398,17434,17536,17653,17669,17779,18000,18176,18178,18187,18211,18226,18236,18238,18262,18268,18304,18359,18369,18503,18514,18534,18607,18628,18630,18666,18694,18743,18909,18921,18926,19048,19079,19099,19107,19135,19185,19195,19240,19277,19283,19380,19438,19475,19483,19506,19538,19625,19654,19805,19894,19920,19989,19990,20036,20147,20211,20328,20497,20499,20512,20513,20519,20529,20566,20622,20682,20727,20797,21287,21310,21322,21360,21363,21374,21401,21481,21604,22006,22007,22446,22480,22649,22657,22671,22731,22733,22882,22975,22985,23105]]],["heard",[278,272,[[0,18,18,0,18,[[13,1,1,0,1],[16,1,1,1,2],[17,1,1,2,3],[20,1,1,3,4],[26,1,1,4,5],[28,1,1,5,6],[29,1,1,6,7],[33,2,2,7,9],[34,1,1,9,10],[36,2,2,10,12],[38,1,1,12,13],[40,1,1,13,14],[41,1,1,14,15],[42,1,1,15,16],[44,2,2,16,18]]],[1,5,5,18,23,[[51,1,1,18,19],[52,1,1,19,20],[53,1,1,20,21],[72,1,1,21,22],[77,1,1,22,23]]],[2,2,2,23,25,[[99,1,1,23,24],[113,1,1,24,25]]],[3,16,15,25,40,[[127,1,1,25,26],[128,1,1,26,27],[130,1,1,27,28],[132,1,1,28,29],[136,1,1,29,30],[138,1,1,30,31],[140,2,2,31,33],[146,7,6,33,39],[149,1,1,39,40]]],[4,7,7,40,47,[[156,3,3,40,43],[157,2,2,43,45],[161,1,1,45,46],[169,1,1,46,47]]],[5,8,8,47,55,[[188,1,1,47,48],[195,3,3,48,51],[196,1,1,51,52],[197,1,1,52,53],[208,2,2,53,55]]],[6,3,3,55,58,[[219,1,1,55,56],[228,1,1,56,57],[230,1,1,57,58]]],[7,1,1,58,59,[[232,1,1,58,59]]],[8,17,16,59,75,[[236,1,1,59,60],[242,2,1,60,61],[248,2,2,61,63],[249,2,2,63,65],[252,3,3,65,68],[257,2,2,68,70],[258,2,2,70,72],[260,3,3,72,75]]],[9,11,10,75,85,[[269,1,1,75,76],[270,1,1,76,77],[271,2,1,77,78],[273,1,1,78,79],[274,1,1,79,80],[276,1,1,80,81],[277,1,1,81,82],[279,1,1,82,83],[284,1,1,83,84],[285,1,1,84,85]]],[10,21,21,85,106,[[291,3,3,85,88],[292,1,1,88,89],[293,1,1,89,90],[295,1,1,90,91],[296,1,1,91,92],[300,3,3,92,95],[301,1,1,95,96],[302,2,2,96,98],[303,1,1,98,99],[305,1,1,99,100],[306,1,1,100,101],[307,1,1,101,102],[309,1,1,102,103],[310,1,1,103,104],[311,2,2,104,106]]],[11,14,14,106,120,[[315,1,1,106,107],[317,1,1,107,108],[321,1,1,108,109],[331,7,7,109,116],[332,1,1,116,117],[334,2,2,117,119],[337,1,1,119,120]]],[12,5,4,120,124,[[351,2,1,120,121],[354,1,1,121,122],[355,1,1,122,123],[356,1,1,123,124]]],[13,11,11,124,135,[[371,1,1,124,125],[375,2,2,125,127],[376,1,1,127,128],[381,1,1,128,129],[382,1,1,129,130],[386,1,1,130,131],[396,1,1,131,132],[399,1,1,132,133],[400,2,2,133,135]]],[14,2,2,135,137,[[405,1,1,135,136],[406,1,1,136,137]]],[15,8,8,137,145,[[414,2,2,137,139],[416,3,3,139,142],[418,2,2,142,144],[424,1,1,144,145]]],[16,1,1,145,146,[[427,1,1,145,146]]],[17,11,11,146,157,[[439,1,1,146,147],[448,1,1,147,148],[450,1,1,148,149],[451,1,1,149,150],[455,1,1,150,151],[461,1,1,151,152],[463,1,1,152,153],[464,1,1,153,154],[468,1,1,154,155],[472,1,1,155,156],[477,1,1,156,157]]],[18,24,24,157,181,[[483,2,2,157,159],[487,1,1,159,160],[495,1,1,160,161],[496,1,1,161,162],[499,1,1,162,163],[505,1,1,163,164],[508,1,1,164,165],[511,1,1,165,166],[515,1,1,166,167],[517,1,1,167,168],[521,1,1,168,169],[525,1,1,169,170],[538,1,1,170,171],[539,1,1,171,172],[543,2,2,172,174],[553,1,1,174,175],[555,3,3,175,178],[558,1,1,178,179],[574,1,1,179,180],[609,1,1,180,181]]],[20,2,2,181,183,[[667,2,2,181,183]]],[21,1,1,183,184,[[672,1,1,183,184]]],[22,25,24,184,208,[[693,1,1,184,185],[694,1,1,185,186],[699,1,1,186,187],[702,1,1,187,188],[706,1,1,188,189],[708,1,1,189,190],[715,8,7,190,197],[717,1,1,197,198],[718,2,2,198,200],[720,1,1,200,201],[726,1,1,201,202],[730,1,1,202,203],[736,1,1,203,204],[738,1,1,204,205],[742,1,1,205,206],[743,1,1,206,207],[744,1,1,207,208]]],[23,39,39,208,247,[[747,1,1,208,209],[748,2,2,209,211],[750,1,1,211,212],[751,1,1,212,213],[752,2,2,213,215],[753,1,1,215,216],[762,2,2,216,218],[764,2,2,218,220],[767,1,1,220,221],[770,3,3,221,224],[774,1,1,224,225],[775,1,1,225,226],[777,1,1,226,227],[778,1,1,227,228],[779,1,1,228,229],[780,2,2,229,231],[782,1,1,231,232],[784,2,2,232,234],[785,1,1,234,235],[786,1,1,235,236],[790,1,1,236,237],[792,3,3,237,240],[793,4,4,240,244],[794,1,1,244,245],[795,2,2,245,247]]],[24,4,3,247,250,[[797,2,1,247,248],[799,2,2,248,250]]],[25,9,9,250,259,[[802,1,1,250,251],[804,1,1,251,252],[811,1,1,252,253],[820,2,2,253,255],[827,1,1,255,256],[828,1,1,256,257],[836,1,1,257,258],[844,1,1,258,259]]],[26,5,5,259,264,[[857,2,2,259,261],[859,2,2,261,263],[861,1,1,263,264]]],[30,1,1,264,265,[[888,1,1,264,265]]],[32,1,1,265,266,[[897,1,1,265,266]]],[33,1,1,266,267,[[901,1,1,266,267]]],[34,2,2,267,269,[[905,2,2,267,269]]],[35,1,1,269,270,[[907,1,1,269,270]]],[37,1,1,270,271,[[918,1,1,270,271]]],[38,1,1,271,272,[[927,1,1,271,272]]]],[350,417,434,539,732,828,836,985,987,1033,1100,1104,1164,1210,1254,1315,1360,1374,1569,1586,1632,2157,2328,2997,3460,4025,4061,4122,4198,4327,4411,4450,4462,4655,4656,4659,4660,4662,4663,4800,5016,5036,5037,5077,5079,5159,5368,5880,6038,6046,6053,6065,6108,6437,6438,6800,7018,7057,7133,7225,7359,7488,7489,7530,7535,7641,7646,7649,7788,7793,7821,7835,7865,7868,7900,8109,8121,8149,8202,8218,8247,8285,8338,8483,8513,8728,8758,8762,8812,8844,8879,8903,9080,9085,9086,9129,9153,9171,9210,9270,9299,9339,9400,9439,9466,9467,9597,9655,9786,10062,10065,10067,10069,10070,10081,10086,10110,10163,10164,10245,10782,10883,10899,10915,11281,11369,11370,11397,11498,11514,11616,11854,11921,11959,11960,12110,12111,12317,12326,12360,12366,12374,12402,12417,12667,12732,12946,13154,13211,13240,13329,13481,13526,13543,13658,13773,13927,13993,13994,14058,14124,14171,14228,14305,14344,14394,14503,14526,14572,14642,14824,14838,14881,14892,15089,15116,15134,15172,15222,15486,16157,17491,17492,17566,17964,17975,18045,18111,18186,18247,18353,18356,18358,18360,18361,18363,18378,18413,18441,18448,18482,18620,18711,18790,18839,18889,18916,18930,19023,19046,19058,19096,19132,19159,19169,19194,19397,19406,19423,19432,19502,19583,19584,19593,19672,19706,19785,19811,19840,19853,19855,19902,19948,19952,19968,19979,20057,20084,20085,20109,20129,20141,20148,20150,20212,20258,20263,20331,20410,20415,20492,20514,20638,20885,20890,21113,21151,21357,21578,21974,21977,22024,22027,22089,22511,22648,22712,22770,22784,22813,22999,23136]]],["heardest",[10,10,[[4,1,1,0,1,[[156,1,1,0,1]]],[5,1,1,1,2,[[200,1,1,1,2]]],[11,1,1,2,3,[[334,1,1,2,3]]],[15,3,3,3,6,[[421,3,3,3,6]]],[18,1,1,6,7,[[508,1,1,6,7]]],[22,2,2,7,9,[[726,2,2,7,9]]],[31,1,1,9,10,[[890,1,1,9,10]]]],[5040,6199,10164,12520,12538,12539,14353,18621,18622,22550]]],["hearest",[4,4,[[8,1,1,0,1,[[259,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[13,1,1,2,3,[[372,1,1,2,3]]],[18,1,1,3,4,[[542,1,1,3,4]]]],[7848,9015,11303,14862]]],["heareth",[22,22,[[3,1,1,0,1,[[146,1,1,0,1]]],[8,3,3,1,4,[[238,3,3,1,4]]],[11,1,1,4,5,[[333,1,1,4,5]]],[17,1,1,5,6,[[469,1,1,5,6]]],[18,2,2,6,8,[[511,1,1,6,7],[515,1,1,7,8]]],[19,10,10,8,18,[[635,1,1,8,9],[640,2,2,9,11],[642,3,3,11,14],[645,1,1,14,15],[648,1,1,15,16],[652,1,1,16,17],[656,1,1,17,18]]],[22,2,2,18,20,[[719,1,1,18,19],[720,1,1,19,20]]],[23,1,1,20,21,[[763,1,1,20,21]]],[25,1,1,21,22,[[804,1,1,21,22]]]],[4653,7285,7286,7287,10131,13711,14405,14504,16636,16748,16755,16836,16838,16839,16914,17012,17123,17248,18477,18500,19410,20529]]],["hearing",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16966]]],["hearken",[88,87,[[0,4,4,0,4,[[20,1,1,0,1],[22,1,1,1,2],[33,1,1,2,3],[48,1,1,3,4]]],[1,8,8,4,12,[[52,1,1,4,5],[53,3,3,5,8],[55,1,1,8,9],[56,2,2,9,11],[60,1,1,11,12]]],[2,4,4,12,16,[[115,4,4,12,16]]],[4,16,16,16,32,[[153,1,1,16,17],[156,1,1,17,18],[165,3,3,18,21],[169,1,1,21,22],[170,2,2,22,24],[173,1,1,24,25],[175,1,1,25,26],[178,1,1,26,27],[179,1,1,27,28],[180,3,3,28,31],[182,1,1,31,32]]],[5,2,2,32,34,[[187,1,1,32,33],[210,1,1,33,34]]],[6,6,6,34,40,[[212,1,1,34,35],[213,1,1,35,36],[219,1,1,36,37],[221,1,1,37,38],[229,1,1,38,39],[230,1,1,39,40]]],[8,4,4,40,44,[[243,1,1,40,41],[250,1,1,41,42],[263,1,1,42,43],[265,1,1,43,44]]],[9,3,3,44,47,[[278,1,1,44,45],[279,2,2,45,47]]],[10,4,4,47,51,[[298,4,4,47,51]]],[11,3,3,51,54,[[322,1,1,51,52],[329,1,1,52,53],[330,1,1,53,54]]],[13,3,3,54,57,[[372,2,2,54,56],[376,1,1,56,57]]],[15,1,1,57,58,[[425,1,1,57,58]]],[17,4,4,58,62,[[468,2,2,58,60],[469,2,2,60,62]]],[18,4,4,62,66,[[511,1,1,62,63],[535,1,1,63,64],[558,2,2,64,66]]],[19,1,1,66,67,[[635,1,1,66,67]]],[23,16,16,67,83,[[751,1,1,67,68],[755,1,1,68,69],[760,1,1,69,70],[761,1,1,70,71],[762,1,1,71,72],[770,3,3,72,75],[771,2,2,75,77],[773,2,2,77,79],[779,1,1,79,80],[781,1,1,80,81],[782,1,1,81,82],[788,1,1,82,83]]],[25,4,3,83,86,[[804,2,1,83,84],[821,2,2,84,86]]],[27,1,1,86,87,[[870,1,1,86,87]]]],[525,586,997,1475,1597,1602,1609,1610,1685,1689,1707,1815,3538,3542,3545,3551,4937,5005,5275,5280,5290,5376,5399,5403,5465,5505,5583,5594,5613,5624,5626,5718,5868,6486,6562,6572,6761,6846,7049,7067,7378,7561,7964,8002,8304,8331,8333,9013,9014,9015,9037,9799,10023,10056,11301,11302,11411,12698,13681,13683,13693,13717,14399,14784,15225,15228,16634,19146,19237,19348,19384,19403,19575,19576,19577,19605,19610,19643,19647,19836,19876,19910,20026,20509,20903,20934,22225]]],["hearkened",[73,73,[[0,7,7,0,7,[[2,1,1,0,1],[15,1,1,1,2],[22,1,1,2,3],[29,2,2,3,5],[33,1,1,5,6],[38,1,1,6,7]]],[1,8,8,7,15,[[55,2,2,7,9],[56,1,1,9,10],[57,2,2,10,12],[58,1,1,12,13],[65,1,1,13,14],[67,1,1,14,15]]],[3,2,2,15,17,[[130,1,1,15,16],[137,1,1,16,17]]],[4,6,6,17,23,[[161,2,2,17,19],[162,1,1,19,20],[170,1,1,20,21],[178,1,1,21,22],[186,1,1,22,23]]],[5,2,2,23,25,[[187,1,1,23,24],[196,1,1,24,25]]],[6,3,3,25,28,[[212,1,1,25,26],[221,1,1,26,27],[223,1,1,27,28]]],[8,6,6,28,34,[[237,1,1,28,29],[247,1,1,29,30],[254,1,1,30,31],[260,1,1,31,32],[263,2,2,32,34]]],[10,5,5,34,39,[[302,3,3,34,37],[305,1,1,37,38],[310,1,1,38,39]]],[11,5,5,39,44,[[325,1,1,39,40],[328,1,1,40,41],[332,1,1,41,42],[333,1,1,42,43],[334,1,1,43,44]]],[13,6,6,44,50,[[376,1,1,44,45],[382,1,1,45,46],[390,1,1,46,47],[391,1,1,47,48],[396,1,1,48,49],[401,1,1,49,50]]],[15,2,2,50,52,[[421,2,2,50,52]]],[16,1,1,52,53,[[428,1,1,52,53]]],[18,2,2,53,55,[[558,1,1,53,54],[583,1,1,54,55]]],[23,16,16,55,71,[[751,2,2,55,57],[769,3,3,57,60],[770,1,1,60,61],[773,1,1,61,62],[776,1,1,62,63],[778,2,2,63,65],[779,3,3,65,68],[780,1,1,68,69],[781,1,1,69,70],[788,1,1,70,71]]],[25,1,1,71,72,[[804,1,1,71,72]]],[26,1,1,72,73,[[858,1,1,72,73]]]],[72,383,587,847,852,1004,1159,1664,1667,1698,1725,1729,1754,1967,2023,4130,4343,5176,5180,5196,5398,5580,5848,5868,6078,6565,6857,6893,7265,7461,7712,7896,7963,7965,9166,9167,9175,9269,9433,9875,9972,10111,10128,10158,11410,11513,11694,11720,11847,11988,12527,12540,12751,15230,15676,19143,19145,19537,19538,19541,19577,19654,19764,19815,19818,19837,19838,19839,19873,19888,20015,20508,21994]]],["hearkenedst",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5656]]],["hearkeneth",[2,2,[[19,2,2,0,2,[[628,1,1,0,1],[639,1,1,1,2]]]],[16433,16734]]],["hearkening",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15569]]],["loud",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12666]]],["noise",[2,2,[[5,1,1,0,1,[[192,1,1,0,1]]],[12,1,1,1,2,[[352,1,1,1,2]]]],[5959,10819]]],["obedient",[8,8,[[1,1,1,0,1,[[73,1,1,0,1]]],[3,1,1,1,2,[[143,1,1,1,2]]],[4,2,2,2,4,[[156,1,1,2,3],[160,1,1,3,4]]],[9,1,1,4,5,[[288,1,1,4,5]]],[19,1,1,5,6,[[652,1,1,5,6]]],[22,2,2,6,8,[[679,1,1,6,7],[720,1,1,7,8]]]],[2184,4574,5034,5157,8647,17125,17673,18504]]],["obey",[30,29,[[0,3,3,0,3,[[26,3,3,0,3]]],[1,2,2,3,5,[[54,1,1,3,4],[72,1,1,4,5]]],[4,8,8,5,13,[[165,1,1,5,6],[173,2,2,6,8],[179,1,1,8,9],[180,1,1,9,10],[182,3,3,10,13]]],[5,1,1,13,14,[[210,1,1,13,14]]],[8,5,5,14,19,[[243,1,1,14,15],[247,2,2,15,17],[250,2,2,17,19]]],[15,1,1,19,20,[[421,1,1,19,20]]],[17,2,2,20,22,[[471,2,2,20,22]]],[18,1,1,22,23,[[495,1,1,22,23]]],[23,6,5,23,28,[[756,1,1,23,24],[762,1,1,24,25],[770,1,1,25,26],[786,3,2,26,28]]],[26,1,1,28,29,[[858,1,1,28,29]]]],[735,740,770,1634,2165,5276,5465,5467,5595,5673,5710,5716,5728,6500,7388,7474,7475,7579,7582,12528,13747,13748,14162,19266,19394,19585,19981,19988,21999]]],["obeyed",[30,30,[[0,2,2,0,2,[[21,1,1,0,1],[25,1,1,1,2]]],[5,2,2,2,4,[[191,1,1,2,3],[208,1,1,3,4]]],[6,2,2,4,6,[[212,1,1,4,5],[216,1,1,5,6]]],[8,3,3,6,9,[[250,2,2,6,8],[263,1,1,8,9]]],[10,1,1,9,10,[[310,1,1,9,10]]],[11,1,1,10,11,[[330,1,1,10,11]]],[19,1,1,11,12,[[632,1,1,11,12]]],[23,14,14,12,26,[[747,2,2,12,14],[753,1,1,14,15],[755,1,1,15,16],[761,1,1,16,17],[776,1,1,17,18],[778,1,1,18,19],[779,2,2,19,21],[784,1,1,21,22],[786,1,1,22,23],[787,2,2,23,25],[788,1,1,25,26]]],[26,2,2,26,28,[[858,2,2,26,28]]],[35,1,1,28,29,[[908,1,1,28,29]]],[36,1,1,29,30,[[909,1,1,29,30]]]],[565,697,5940,6428,6547,6664,7580,7584,7963,9444,10036,16530,19015,19027,19188,19234,19380,19754,19811,19831,19833,19944,19996,20001,20004,20033,21998,22002,22822,22852]]],["obeyedst",[2,2,[[8,1,1,0,1,[[263,1,1,0,1]]],[23,1,1,1,2,[[766,1,1,1,2]]]],[7960,19475]]],["obeyeth",[3,3,[[22,1,1,0,1,[[728,1,1,0,1]]],[23,2,2,1,3,[[751,1,1,1,2],[755,1,1,2,3]]]],[18672,19147,19229]]],["obeying",[2,2,[[6,1,1,0,1,[[212,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]]],[6562,7582]]],["perceived",[1,1,[[23,1,1,0,1,[[782,1,1,0,1]]]],[19922]]],["proclaimed",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18865]]],["proclamation",[1,1,[[10,1,1,0,1,[[305,1,1,0,1]]]],[9271]]],["publish",[11,9,[[15,1,1,0,1,[[420,1,1,0,1]]],[18,1,1,1,2,[[503,1,1,1,2]]],[23,8,6,2,8,[[748,2,2,2,4],[749,1,1,4,5],[775,1,1,5,6],[790,2,1,6,7],[794,2,1,7,8]]],[29,1,1,8,9,[[882,1,1,8,9]]]],[12508,14280,19032,19043,19078,19698,20059,20168,22415]]],["published",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12722]]],["publisheth",[4,3,[[22,2,1,0,1,[[730,2,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]],[33,1,1,2,3,[[900,1,1,2,3]]]],[18703,19042,22699]]],["regardeth",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13841]]],["reported",[2,2,[[15,2,2,0,2,[[418,2,2,0,2]]]],[12407,12408]]],["shew",[2,2,[[8,1,1,0,1,[[244,1,1,0,1]]],[22,1,1,1,2,[[721,1,1,1,2]]]],[7418,18514]]],["shewed",[4,4,[[22,4,4,0,4,[[721,1,1,0,1],[726,3,3,1,4]]]],[18517,18617,18619,18620]]],["sound",[3,3,[[12,3,3,0,3,[[352,1,1,0,1],[353,2,2,1,3]]]],[10810,10825,10862]]],["sounding",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10807]]],["tell",[3,3,[[3,1,1,0,1,[[137,1,1,0,1]]],[22,2,2,1,3,[[720,1,1,1,2],[726,1,1,2,3]]]],[4341,18489,18634]]],["together",[2,2,[[23,2,2,0,2,[[794,1,1,0,1],[795,1,1,1,2]]]],[20195,20239]]],["told",[2,2,[[6,1,1,0,1,[[223,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[6907,18541]]],["understand",[6,6,[[0,2,2,0,2,[[10,1,1,0,1],[40,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[11,1,1,3,4,[[330,1,1,3,4]]],[22,1,1,4,5,[[714,1,1,4,5]]],[25,1,1,5,6,[[804,1,1,5,6]]]],[273,1210,5660,10050,18341,20508]]],["understandest",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19073]]],["understanding",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8825]]],["understood",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1275]]],["witness",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6839]]]]},{"k":"H8086","v":[["*",[9,9,[[26,9,9,0,9,[[852,4,4,0,4],[854,3,3,4,7],[855,1,1,7,8],[856,1,1,8,9]]]],[21812,21814,21817,21822,21888,21890,21897,21919,21960]]],["hear",[4,4,[[26,4,4,0,4,[[852,3,3,0,3],[854,1,1,3,4]]]],[21812,21817,21822,21897]]],["heard",[4,4,[[26,4,4,0,4,[[852,1,1,0,1],[854,2,2,1,3],[855,1,1,3,4]]]],[21814,21888,21890,21919]]],["obey",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21960]]]]},{"k":"H8087","v":[["Shema",[5,5,[[12,4,4,0,4,[[339,2,2,0,2],[342,1,1,2,3],[345,1,1,3,4]]],[15,1,1,4,5,[[420,1,1,4,5]]]],[10349,10350,10436,10588,12497]]]]},{"k":"H8088","v":[["*",[18,17,[[0,1,1,0,1,[[28,1,1,0,1]]],[1,1,1,1,2,[[72,1,1,1,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[4,1,1,3,4,[[154,1,1,3,4]]],[10,1,1,4,5,[[300,1,1,4,5]]],[13,1,1,5,6,[[375,1,1,5,6]]],[17,2,2,6,8,[[463,1,1,6,7],[477,1,1,7,8]]],[18,2,2,8,10,[[495,1,1,8,9],[627,1,1,9,10]]],[22,3,2,10,12,[[701,2,1,10,11],[744,1,1,11,12]]],[23,2,2,12,14,[[781,1,1,12,13],[794,1,1,13,14]]],[27,1,1,14,15,[[868,1,1,14,15]]],[33,1,1,15,16,[[902,1,1,15,16]]],[34,1,1,16,17,[[905,1,1,16,17]]]],[808,2145,4123,4963,9080,11365,13526,13927,14162,16399,18082,18941,19879,20209,22190,22731,22770]]],["+",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14162]]],["bruit",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22731]]],["fame",[5,5,[[3,1,1,0,1,[[130,1,1,0,1]]],[10,1,1,1,2,[[300,1,1,1,2]]],[13,1,1,2,3,[[375,1,1,2,3]]],[17,1,1,3,4,[[463,1,1,3,4]]],[22,1,1,4,5,[[744,1,1,4,5]]]],[4123,9080,11365,13526,18941]]],["heard",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22190]]],["hearing",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13927]]],["loud",[1,1,[[18,1,1,0,1,[[627,1,1,0,1]]]],[16399]]],["report",[5,4,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]],[22,2,1,2,3,[[701,2,1,2,3]]],[23,1,1,3,4,[[794,1,1,3,4]]]],[2145,4963,18082,20209]]],["speech",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22770]]],["tidings",[2,2,[[0,1,1,0,1,[[28,1,1,0,1]]],[23,1,1,1,2,[[781,1,1,1,2]]]],[808,19879]]]]},{"k":"H8089","v":[["fame",[4,4,[[5,2,2,0,2,[[192,1,1,0,1],[195,1,1,1,2]]],[16,1,1,2,3,[[434,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]]],[5976,6046,12838,19113]]]]},{"k":"H8090","v":[["Shema",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6228]]]]},{"k":"H8091","v":[["Shama",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10717]]]]},{"k":"H8092","v":[["*",[6,6,[[9,1,1,0,1,[[287,1,1,0,1]]],[12,5,5,1,6,[[339,1,1,1,2],[340,1,1,2,3],[343,2,2,3,5],[357,1,1,5,6]]]],[8601,10319,10366,10484,10493,10933]]],["Shimea",[5,5,[[9,1,1,0,1,[[287,1,1,0,1]]],[12,4,4,1,5,[[340,1,1,1,2],[343,2,2,2,4],[357,1,1,4,5]]]],[8601,10366,10484,10493,10933]]],["Shimma",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10319]]]]},{"k":"H8093","v":[["Shimeah",[2,2,[[9,2,2,0,2,[[279,2,2,0,2]]]],[8320,8349]]]]},{"k":"H8094","v":[["Shemaah",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10723]]]]},{"k":"H8095","v":[["*",[44,39,[[0,10,10,0,10,[[28,1,1,0,1],[33,2,2,1,3],[34,1,1,3,4],[41,2,2,4,6],[42,1,1,6,7],[45,1,1,7,8],[47,1,1,8,9],[48,1,1,9,10]]],[1,3,2,10,12,[[50,1,1,10,11],[55,2,1,11,12]]],[3,10,9,12,21,[[117,3,3,12,15],[118,2,1,15,16],[123,1,1,16,17],[126,1,1,17,18],[129,1,1,18,19],[142,1,1,19,20],[150,1,1,20,21]]],[4,1,1,21,22,[[179,1,1,21,22]]],[5,6,4,22,26,[[205,5,3,22,25],[207,1,1,25,26]]],[6,3,2,26,28,[[211,3,2,26,28]]],[12,5,5,28,33,[[339,1,1,28,29],[341,2,2,29,31],[343,1,1,31,32],[349,1,1,32,33]]],[13,2,2,33,35,[[381,1,1,33,34],[400,1,1,34,35]]],[14,1,1,35,36,[[412,1,1,35,36]]],[25,3,3,36,39,[[849,3,3,36,39]]]],[828,1005,1010,1034,1276,1288,1313,1396,1456,1478,1534,1670,3610,3626,3627,3670,3886,4007,4080,4501,4836,5597,6322,6329,6330,6390,6512,6526,10307,10409,10427,10519,10745,11499,11939,12283,21726,21727,21735]]],["+",[3,3,[[0,1,1,0,1,[[42,1,1,0,1]]],[5,1,1,1,2,[[207,1,1,1,2]]],[13,1,1,2,3,[[381,1,1,2,3]]]],[1313,6390,11499]]],["Shimeon",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12283]]],["Simeon",[40,35,[[0,9,9,0,9,[[28,1,1,0,1],[33,2,2,1,3],[34,1,1,3,4],[41,2,2,4,6],[45,1,1,6,7],[47,1,1,7,8],[48,1,1,8,9]]],[1,3,2,9,11,[[50,1,1,9,10],[55,2,1,10,11]]],[3,10,9,11,20,[[117,3,3,11,14],[118,2,1,14,15],[123,1,1,15,16],[126,1,1,16,17],[129,1,1,17,18],[142,1,1,18,19],[150,1,1,19,20]]],[4,1,1,20,21,[[179,1,1,20,21]]],[5,5,3,21,24,[[205,5,3,21,24]]],[6,3,2,24,26,[[211,3,2,24,26]]],[12,5,5,26,31,[[339,1,1,26,27],[341,2,2,27,29],[343,1,1,29,30],[349,1,1,30,31]]],[13,1,1,31,32,[[400,1,1,31,32]]],[25,3,3,32,35,[[849,3,3,32,35]]]],[828,1005,1010,1034,1276,1288,1396,1456,1478,1534,1670,3610,3626,3627,3670,3886,4007,4080,4501,4836,5597,6322,6329,6330,6512,6526,10307,10409,10427,10519,10745,11939,21726,21727,21735]]]]},{"k":"H8096","v":[["*",[43,39,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,1,1,1,2,[[119,1,1,1,2]]],[9,7,7,2,9,[[282,3,3,2,5],[285,4,4,5,9]]],[10,13,10,9,19,[[291,1,1,9,10],[292,11,8,10,18],[294,1,1,18,19]]],[12,14,13,19,32,[[340,1,1,19,20],[341,2,2,20,22],[342,1,1,22,23],[343,3,3,23,26],[345,1,1,26,27],[360,4,3,27,30],[362,1,1,30,31],[364,1,1,31,32]]],[13,3,3,32,35,[[395,1,1,32,33],[397,2,2,33,35]]],[14,3,3,35,38,[[412,3,3,35,38]]],[16,1,1,38,39,[[427,1,1,38,39]]]],[1672,3710,8431,8433,8439,8527,8529,8532,8534,8725,8778,8806,8808,8809,8810,8811,8812,8814,8862,10380,10411,10412,10432,10471,10483,10496,10596,10990,10992,10993,11063,11136,11805,11866,11867,12275,12285,12290,12729]]],["Shimei",[41,37,[[3,1,1,0,1,[[119,1,1,0,1]]],[9,7,7,1,8,[[282,3,3,1,4],[285,4,4,4,8]]],[10,13,10,8,18,[[291,1,1,8,9],[292,11,8,9,17],[294,1,1,17,18]]],[12,13,12,18,30,[[340,1,1,18,19],[341,2,2,19,21],[342,1,1,21,22],[343,3,3,22,25],[360,4,3,25,28],[362,1,1,28,29],[364,1,1,29,30]]],[13,3,3,30,33,[[395,1,1,30,31],[397,2,2,31,33]]],[14,3,3,33,36,[[412,3,3,33,36]]],[16,1,1,36,37,[[427,1,1,36,37]]]],[3710,8431,8433,8439,8527,8529,8532,8534,8725,8778,8806,8808,8809,8810,8811,8812,8814,8862,10380,10411,10412,10432,10471,10483,10496,10990,10992,10993,11063,11136,11805,11866,11867,12275,12285,12290,12729]]],["Shimhi",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10596]]],["Shimi",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1672]]]]},{"k":"H8097","v":[["*",[2,2,[[3,1,1,0,1,[[119,1,1,0,1]]],[37,1,1,1,2,[[922,1,1,1,2]]]],[3713,23058]]],["Shimei",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23058]]],["Shimites",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3713]]]]},{"k":"H8098","v":[["Shemaiah",[41,39,[[10,1,1,0,1,[[302,1,1,0,1]]],[12,12,11,1,12,[[340,2,1,1,2],[341,1,1,2,3],[342,1,1,3,4],[346,2,2,4,6],[352,2,2,6,8],[361,1,1,8,9],[363,3,3,9,12]]],[13,8,8,12,20,[[377,1,1,12,13],[378,3,3,13,16],[383,1,1,16,17],[395,1,1,17,18],[397,1,1,18,19],[401,1,1,19,20]]],[14,4,4,20,24,[[410,2,2,20,22],[412,2,2,22,24]]],[15,10,10,24,34,[[415,1,1,24,25],[418,1,1,25,26],[422,1,1,26,27],[423,1,1,27,28],[424,6,6,28,34]]],[23,6,5,34,39,[[770,1,1,34,35],[773,4,3,35,38],[780,1,1,38,39]]]],[9173,10383,10422,10432,10629,10631,10799,10802,11021,11081,11083,11084,11416,11442,11444,11452,11531,11805,11869,11975,12214,12217,12273,12283,12356,12411,12557,12603,12630,12642,12658,12659,12660,12666,19592,19659,19666,19667,19854]]]]},{"k":"H8099","v":[["*",[4,4,[[3,2,2,0,2,[[141,1,1,0,1],[142,1,1,1,2]]],[5,1,1,2,3,[[207,1,1,2,3]]],[12,1,1,3,4,[[364,1,1,3,4]]]],[4485,4503,6385,11125]]],["Simeon",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6385]]],["Simeonites",[3,3,[[3,2,2,0,2,[[141,1,1,0,1],[142,1,1,1,2]]],[12,1,1,2,3,[[364,1,1,2,3]]]],[4485,4503,11125]]]]},{"k":"H8100","v":[["Shimeath",[2,2,[[11,1,1,0,1,[[324,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]]],[9871,11703]]]]},{"k":"H8101","v":[["Shimeathites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10361]]]]},{"k":"H8102","v":[["little",[2,2,[[17,2,2,0,2,[[439,1,1,0,1],[461,1,1,1,2]]]],[12942,13481]]]]},{"k":"H8103","v":[["shame",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2463]]]]},{"k":"H8104","v":[["*",[467,439,[[0,15,15,0,15,[[1,1,1,0,1],[2,1,1,1,2],[3,1,1,2,3],[16,2,2,3,5],[17,1,1,5,6],[23,1,1,6,7],[25,1,1,7,8],[27,2,2,8,10],[29,1,1,10,11],[30,2,2,11,13],[36,1,1,13,14],[40,1,1,14,15]]],[1,25,24,15,39,[[59,1,1,15,16],[61,4,3,16,19],[62,1,1,19,20],[64,1,1,20,21],[65,1,1,21,22],[68,2,2,22,24],[69,1,1,24,25],[70,2,2,25,27],[71,2,2,27,29],[72,4,4,29,33],[80,3,3,33,36],[83,3,3,36,39]]],[2,16,16,39,55,[[97,1,1,39,40],[107,4,4,40,44],[108,4,4,44,48],[109,2,2,48,50],[111,2,2,50,52],[114,1,1,52,53],[115,2,2,53,55]]],[3,19,19,55,74,[[117,1,1,55,56],[119,6,6,56,62],[122,1,1,62,63],[124,1,1,63,64],[125,2,2,64,66],[134,4,4,66,70],[139,1,1,70,71],[144,1,1,71,72],[147,2,2,72,74]]],[4,73,65,74,139,[[154,1,1,74,75],[156,7,6,75,81],[157,5,5,81,86],[158,6,5,86,91],[159,6,4,91,95],[160,5,4,95,99],[162,1,1,99,100],[163,6,5,100,105],[164,6,6,105,111],[165,2,2,111,113],[167,2,2,113,115],[168,2,2,115,117],[169,2,2,117,119],[171,1,1,119,120],[175,2,2,120,122],[176,3,1,122,123],[178,3,3,123,126],[179,1,1,126,127],[180,6,6,127,133],[181,1,1,133,134],[182,2,2,134,136],[183,1,1,136,137],[184,1,1,137,138],[185,1,1,138,139]]],[5,11,10,139,149,[[187,2,2,139,141],[192,1,1,141,142],[196,1,1,142,143],[208,4,3,143,146],[209,2,2,146,148],[210,1,1,148,149]]],[6,7,6,149,155,[[211,1,1,149,150],[212,2,1,150,151],[217,1,1,151,152],[223,3,3,152,155]]],[8,16,16,155,171,[[236,1,1,155,156],[237,1,1,156,157],[242,1,1,157,158],[244,1,1,158,159],[248,2,2,159,161],[252,2,2,161,163],[254,2,2,163,165],[256,1,1,165,166],[260,1,1,166,167],[261,2,2,167,169],[263,1,1,169,170],[265,1,1,170,171]]],[9,10,10,171,181,[[277,1,1,171,172],[281,1,1,172,173],[282,1,1,173,174],[284,1,1,174,175],[286,2,2,175,177],[288,3,3,177,180],[289,1,1,180,181]]],[10,23,21,181,202,[[292,4,3,181,184],[293,2,2,184,186],[296,1,1,186,187],[298,6,5,187,192],[299,2,2,192,194],[301,4,4,194,198],[303,1,1,198,199],[304,2,2,199,201],[310,1,1,201,202]]],[11,18,18,202,220,[[318,2,2,202,204],[321,1,1,204,205],[322,1,1,205,206],[323,3,3,206,209],[324,1,1,209,210],[329,3,3,210,213],[330,1,1,213,214],[333,1,1,214,215],[334,2,2,215,217],[335,2,2,217,219],[337,1,1,219,220]]],[12,10,9,220,229,[[346,2,1,220,221],[347,1,1,221,222],[349,1,1,222,223],[359,2,2,223,225],[360,1,1,225,226],[365,1,1,226,227],[366,2,2,227,229]]],[13,15,14,229,243,[[371,1,1,229,230],[372,4,3,230,233],[373,1,1,233,234],[378,1,1,234,235],[379,1,1,235,236],[385,1,1,236,237],[389,1,1,237,238],[399,1,1,238,239],[400,4,4,239,243]]],[14,1,1,243,244,[[410,1,1,243,244]]],[15,12,11,244,255,[[413,4,3,244,247],[414,1,1,247,248],[415,1,1,248,249],[421,1,1,249,250],[422,1,1,250,251],[423,1,1,251,252],[424,2,2,252,254],[425,1,1,254,255]]],[16,6,6,255,261,[[427,5,5,255,260],[431,1,1,260,261]]],[17,12,12,261,273,[[437,1,1,261,262],[445,2,2,262,264],[448,1,1,264,265],[449,1,1,265,266],[457,1,1,266,267],[458,1,1,267,268],[459,1,1,268,269],[464,1,1,269,270],[468,1,1,270,271],[471,1,1,271,272],[474,1,1,272,273]]],[18,70,66,273,339,[[489,1,1,273,274],[493,1,1,274,275],[494,2,2,275,277],[495,2,2,277,279],[496,1,1,279,280],[502,1,1,280,281],[508,1,1,281,282],[511,1,1,282,283],[514,3,3,283,286],[516,2,1,286,287],[518,1,1,287,288],[533,1,1,288,289],[536,1,1,289,290],[548,1,1,290,291],[555,2,2,291,293],[563,1,1,293,294],[566,2,2,294,296],[568,1,1,296,297],[574,1,1,297,298],[576,1,1,298,299],[580,1,1,299,300],[582,1,1,300,301],[583,1,1,301,302],[584,1,1,302,303],[593,1,1,303,304],[596,21,21,304,325],[598,6,5,325,330],[604,2,1,330,331],[607,3,2,331,333],[609,1,1,333,334],[617,1,1,334,335],[618,1,1,335,336],[622,1,1,336,337],[623,2,2,337,339]]],[19,31,29,339,368,[[629,3,3,339,342],[630,1,1,342,343],[631,3,3,343,346],[632,1,1,346,347],[633,2,2,347,349],[634,3,3,349,352],[635,2,2,352,354],[637,1,1,354,355],[640,2,2,355,357],[641,1,1,357,358],[642,1,1,358,359],[643,1,1,359,360],[646,3,2,360,362],[648,2,1,362,363],[649,2,2,363,365],[654,1,1,365,366],[655,1,1,366,367],[656,1,1,367,368]]],[20,9,9,368,377,[[661,1,1,368,369],[663,3,3,369,372],[666,2,2,372,374],[669,1,1,374,375],[670,2,2,375,377]]],[21,3,2,377,379,[[673,1,1,377,378],[675,2,1,378,379]]],[22,12,10,379,389,[[685,1,1,379,380],[699,3,2,380,382],[704,1,1,382,383],[720,1,1,383,384],[734,5,4,384,388],[740,1,1,388,389]]],[23,13,13,389,402,[[747,1,1,389,390],[748,1,1,390,391],[749,1,1,391,392],[752,1,1,392,393],[753,1,1,393,394],[760,1,1,394,395],[761,1,1,395,396],[764,1,1,396,397],[775,1,1,397,398],[779,2,2,398,400],[795,1,1,400,401],[796,1,1,401,402]]],[25,20,19,402,421,[[812,1,1,402,403],[818,1,1,403,404],[819,3,3,404,407],[821,3,3,407,410],[837,1,1,410,411],[838,1,1,411,412],[841,2,2,412,414],[844,1,1,414,415],[845,6,5,415,420],[849,1,1,420,421]]],[26,2,1,421,422,[[858,2,1,421,422]]],[27,4,4,422,426,[[865,1,1,422,423],[873,3,3,423,426]]],[29,2,2,426,428,[[879,1,1,426,427],[880,1,1,427,428]]],[31,1,1,428,429,[[890,1,1,428,429]]],[32,2,2,429,431,[[898,1,1,429,430],[899,1,1,430,431]]],[37,3,2,431,433,[[913,2,1,431,432],[921,1,1,432,433]]],[38,6,6,433,439,[[926,4,4,433,437],[927,2,2,437,439]]]],[45,79,88,406,407,443,597,697,788,793,861,897,902,1094,1230,1805,1833,1840,1841,1877,1946,1975,2031,2038,2057,2106,2113,2120,2123,2157,2159,2164,2165,2433,2434,2436,2507,2508,2514,2952,3255,3256,3277,3281,3284,3300,3311,3318,3326,3340,3378,3400,3487,3526,3527,3657,3699,3700,3702,3720,3724,3730,3847,3965,3984,3988,4260,4261,4262,4264,4428,4579,4694,4711,4942,5006,5010,5013,5019,5027,5044,5054,5063,5065,5082,5085,5088,5089,5098,5103,5111,5119,5120,5122,5123,5138,5139,5143,5148,5199,5209,5216,5224,5230,5240,5241,5253,5259,5268,5270,5272,5276,5290,5324,5328,5343,5354,5374,5383,5415,5509,5523,5533,5582,5583,5584,5586,5612,5620,5624,5626,5656,5669,5688,5718,5724,5740,5804,5819,5858,5859,5967,6082,6428,6429,6431,6466,6471,6493,6533,6567,6713,6888,6897,6898,7224,7249,7353,7415,7498,7499,7638,7640,7708,7717,7776,7882,7920,7921,7944,8001,8275,8405,8447,8490,8557,8564,8624,8626,8646,8658,8773,8774,8813,8822,8830,8908,9008,9009,9010,9043,9046,9055,9057,9118,9119,9142,9146,9205,9226,9245,9447,9683,9684,9770,9824,9834,9835,9836,9859,9996,10002,10020,10030,10127,10149,10159,10168,10169,10240,10634,10672,10749,10976,10977,11015,11151,11182,11183,11279,11296,11297,11298,11341,11447,11464,11583,11662,11916,11942,11954,11955,11964,12230,12301,12303,12305,12315,12356,12543,12578,12607,12649,12669,12693,12727,12732,12738,12739,12745,12795,12897,13098,13100,13180,13197,13404,13430,13451,13534,13661,13757,13835,14073,14093,14107,14111,14139,14141,14179,14271,14337,14408,14478,14484,14487,14513,14544,14761,14799,14986,15123,15169,15286,15354,15357,15406,15488,15506,15567,15651,15654,15742,15854,15902,15903,15906,15907,15915,15932,15942,15953,15955,15958,15961,15965,15986,15999,16004,16032,16034,16044,16056,16065,16066,16084,16085,16086,16088,16089,16122,16143,16146,16163,16267,16285,16340,16347,16350,16441,16444,16453,16481,16494,16496,16511,16519,16562,16564,16576,16577,16580,16634,16636,16673,16750,16765,16775,16812,16857,16933,16941,17007,17020,17033,17187,17200,17242,17365,17398,17405,17410,17460,17463,17517,17526,17536,17574,17605,17786,18046,18047,18132,18500,18754,18755,18757,18759,18860,19007,19044,19082,19160,19179,19347,19378,19432,19701,19827,19841,20224,20300,20675,20839,20858,20868,20870,20913,20914,20916,21386,21421,21522,21523,21583,21607,21613,21614,21615,21623,21713,21992,22143,22258,22264,22265,22375,22383,22556,22664,22669,22919,23039,23110,23112,23118,23119,23127,23134]]],["+",[101,98,[[0,3,3,0,3,[[2,1,1,0,1],[16,1,1,1,2],[36,1,1,2,3]]],[1,9,8,3,11,[[61,4,3,3,6],[62,1,1,6,7],[68,1,1,7,8],[72,1,1,8,9],[80,2,2,9,11]]],[2,11,11,11,22,[[97,1,1,11,12],[107,3,3,12,15],[108,3,3,15,18],[109,2,2,18,20],[111,1,1,20,21],[115,1,1,21,22]]],[3,9,9,22,31,[[117,1,1,22,23],[119,3,3,23,26],[125,2,2,26,28],[134,3,3,28,31]]],[4,21,19,31,50,[[154,1,1,31,32],[156,2,2,32,34],[157,2,2,34,36],[158,3,2,36,38],[159,2,2,38,40],[160,1,1,40,41],[162,1,1,41,42],[163,3,2,42,44],[165,1,1,44,45],[168,1,1,45,46],[169,1,1,46,47],[171,1,1,47,48],[179,1,1,48,49],[180,1,1,49,50]]],[5,2,2,50,52,[[208,2,2,50,52]]],[6,1,1,52,53,[[212,1,1,52,53]]],[8,6,6,53,59,[[236,1,1,53,54],[242,1,1,54,55],[248,1,1,55,56],[260,1,1,56,57],[261,2,2,57,59]]],[9,1,1,59,60,[[277,1,1,59,60]]],[10,6,6,60,66,[[292,2,2,60,62],[296,1,1,62,63],[298,1,1,63,64],[303,1,1,64,65],[310,1,1,65,66]]],[11,3,3,66,69,[[322,1,1,66,67],[323,2,2,67,69]]],[12,2,2,69,71,[[359,1,1,69,70],[360,1,1,70,71]]],[13,4,4,71,75,[[372,1,1,71,72],[379,1,1,72,73],[400,2,2,73,75]]],[15,1,1,75,76,[[413,1,1,75,76]]],[16,2,2,76,78,[[427,1,1,76,77],[431,1,1,77,78]]],[17,1,1,78,79,[[437,1,1,78,79]]],[18,5,5,79,84,[[596,1,1,79,80],[598,1,1,80,81],[607,1,1,81,82],[622,1,1,82,83],[623,1,1,83,84]]],[19,2,2,84,86,[[629,1,1,84,85],[633,1,1,85,86]]],[22,1,1,86,87,[[734,1,1,86,87]]],[23,2,2,87,89,[[752,1,1,87,88],[779,1,1,88,89]]],[25,6,6,89,95,[[818,1,1,89,90],[819,2,2,90,92],[844,1,1,92,93],[845,2,2,93,95]]],[27,1,1,95,96,[[865,1,1,95,96]]],[37,1,1,96,97,[[913,1,1,96,97]]],[38,1,1,97,98,[[926,1,1,97,98]]]],[79,406,1094,1833,1840,1841,1877,2031,2159,2434,2436,2952,3256,3277,3281,3300,3311,3318,3326,3340,3378,3526,3657,3699,3700,3702,3984,3988,4261,4262,4264,4942,5006,5019,5065,5082,5088,5103,5119,5122,5143,5199,5216,5230,5290,5343,5383,5415,5586,5620,6428,6429,6567,7224,7353,7498,7882,7920,7921,8275,8773,8813,8908,9010,9205,9447,9824,9835,9836,10976,11015,11298,11464,11954,11964,12303,12745,12795,12897,15906,16088,16146,16340,16350,16444,16562,18757,19160,19841,20839,20868,20870,21583,21614,21615,22143,22919,23112]]],["Beware",[5,5,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,1,1,1,2,[[72,1,1,1,2]]],[4,2,2,2,4,[[160,1,1,2,3],[167,1,1,3,4]]],[11,1,1,4,5,[[318,1,1,4,5]]]],[597,2165,5148,5328,9683]]],["Keep",[8,8,[[4,2,2,0,2,[[156,1,1,0,1],[181,1,1,1,2]]],[18,3,3,2,5,[[494,1,1,2,3],[617,1,1,3,4],[618,1,1,4,5]]],[19,1,1,5,6,[[634,1,1,5,6]]],[20,1,1,6,7,[[663,1,1,6,7]]],[22,1,1,7,8,[[734,1,1,7,8]]]],[5010,5688,14111,16267,16285,16577,17398,18754]]],["Mark",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14487]]],["Observe",[2,2,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,1,1,1,2,[[164,1,1,1,2]]]],[2507,5268]]],["Preserve",[2,2,[[18,2,2,0,2,[[493,1,1,0,1],[563,1,1,1,2]]]],[14093,15286]]],["Watchman",[2,1,[[22,2,1,0,1,[[699,2,1,0,1]]]],[18046]]],["beware",[3,3,[[4,1,1,0,1,[[158,1,1,0,1]]],[6,2,2,1,3,[[223,2,2,1,3]]]],[5098,6888,6897]]],["circumspect",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2157]]],["for",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14986]]],["heed",[28,28,[[0,2,2,0,2,[[30,2,2,0,2]]],[1,3,3,2,5,[[59,1,1,2,3],[68,1,1,3,4],[83,1,1,4,5]]],[3,1,1,5,6,[[139,1,1,5,6]]],[4,7,7,6,13,[[156,2,2,6,8],[163,1,1,8,9],[164,3,3,9,12],[176,1,1,12,13]]],[5,2,2,13,15,[[208,1,1,13,14],[209,1,1,14,15]]],[9,1,1,15,16,[[286,1,1,15,16]]],[10,1,1,16,17,[[292,1,1,16,17]]],[12,1,1,17,18,[[359,1,1,17,18]]],[13,2,2,18,20,[[385,1,1,18,19],[399,1,1,19,20]]],[17,1,1,20,21,[[471,1,1,20,21]]],[18,2,2,21,23,[[516,1,1,21,22],[596,1,1,22,23]]],[22,1,1,23,24,[[685,1,1,23,24]]],[23,2,2,24,26,[[753,1,1,24,25],[761,1,1,25,26]]],[38,2,2,26,28,[[926,2,2,26,28]]]],[897,902,1805,2038,2508,4428,5013,5027,5224,5253,5259,5270,5533,6431,6471,8564,8774,10977,11583,11916,13757,14513,15907,17786,19179,19378,23118,23119]]],["himself",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9684]]],["in",[2,2,[[1,2,2,0,2,[[70,2,2,0,2]]]],[2106,2113]]],["keep",[118,117,[[0,7,7,0,7,[[1,1,1,0,1],[16,1,1,1,2],[17,1,1,2,3],[27,2,2,3,5],[29,1,1,5,6],[40,1,1,6,7]]],[1,8,8,7,15,[[64,1,1,7,8],[65,1,1,8,9],[69,1,1,9,10],[71,2,2,10,12],[72,1,1,12,13],[80,1,1,13,14],[83,1,1,14,15]]],[2,5,5,15,20,[[107,1,1,15,16],[108,1,1,16,17],[111,1,1,17,18],[114,1,1,18,19],[115,1,1,19,20]]],[3,5,5,20,25,[[119,1,1,20,21],[122,1,1,21,22],[124,1,1,22,23],[134,1,1,23,24],[147,1,1,24,25]]],[4,17,16,25,41,[[156,2,2,25,27],[157,2,2,27,29],[159,3,2,29,31],[160,1,1,31,32],[163,1,1,32,33],[165,1,1,33,34],[175,1,1,34,35],[178,3,3,35,38],[180,1,1,38,39],[182,2,2,39,41]]],[5,4,4,41,45,[[192,1,1,41,42],[196,1,1,42,43],[208,1,1,43,44],[209,1,1,44,45]]],[6,1,1,45,46,[[212,1,1,45,46]]],[8,1,1,46,47,[[237,1,1,46,47]]],[9,3,3,47,50,[[281,1,1,47,48],[282,1,1,48,49],[286,1,1,49,50]]],[10,8,8,50,58,[[292,1,1,50,51],[293,1,1,51,52],[298,3,3,52,55],[299,2,2,55,57],[301,1,1,57,58]]],[11,2,2,58,60,[[329,1,1,58,59],[335,1,1,59,60]]],[12,3,3,60,63,[[365,1,1,60,61],[366,2,2,61,63]]],[13,2,2,63,65,[[372,1,1,63,64],[389,1,1,64,65]]],[14,1,1,65,66,[[410,1,1,65,66]]],[15,2,2,66,68,[[413,1,1,66,67],[425,1,1,67,68]]],[18,24,24,68,92,[[489,1,1,68,69],[502,1,1,69,70],[514,1,1,70,71],[516,1,1,71,72],[566,2,2,72,74],[568,1,1,74,75],[580,1,1,75,76],[583,1,1,76,77],[596,13,13,77,90],[604,1,1,90,91],[609,1,1,91,92]]],[19,11,11,92,103,[[629,1,1,92,93],[630,1,1,93,94],[631,2,2,94,96],[633,1,1,96,97],[634,2,2,97,99],[635,1,1,99,100],[649,2,2,100,102],[655,1,1,102,103]]],[20,3,3,103,106,[[661,1,1,103,104],[666,1,1,104,105],[670,1,1,105,106]]],[23,2,2,106,108,[[747,1,1,106,107],[775,1,1,107,108]]],[25,4,4,108,112,[[812,1,1,108,109],[821,1,1,109,110],[837,1,1,110,111],[845,1,1,111,112]]],[26,1,1,112,113,[[858,1,1,112,113]]],[27,1,1,113,114,[[873,1,1,113,114]]],[32,1,1,114,115,[[899,1,1,114,115]]],[37,1,1,115,116,[[913,1,1,115,116]]],[38,1,1,116,117,[[926,1,1,116,117]]]],[45,407,443,788,793,861,1230,1946,1975,2057,2120,2123,2164,2433,2514,3255,3284,3400,3487,3527,3724,3847,3965,4260,4694,5013,5044,5054,5063,5120,5123,5139,5209,5276,5523,5582,5583,5584,5656,5718,5724,5967,6082,6431,6466,6567,7249,8405,8447,8557,8773,8830,9010,9043,9046,9055,9057,9146,9996,10168,11151,11182,11183,11298,11662,12230,12305,12693,14073,14271,14484,14513,15354,15357,15406,15567,15654,15902,15903,15915,15942,15955,15958,15961,15986,15999,16004,16032,16034,16044,16122,16163,16453,16481,16494,16511,16564,16576,16580,16634,17020,17033,17200,17365,17460,17536,19007,19701,20675,20914,21386,21623,21992,22258,22669,22919,23110]]],["keeper",[13,13,[[0,1,1,0,1,[[3,1,1,0,1]]],[8,3,3,1,4,[[252,2,2,1,3],[263,1,1,3,4]]],[11,1,1,4,5,[[334,1,1,4,5]]],[13,1,1,5,6,[[400,1,1,5,6]]],[15,2,2,6,8,[[414,1,1,6,7],[415,1,1,7,8]]],[16,3,3,8,11,[[427,3,3,8,11]]],[18,1,1,11,12,[[598,1,1,11,12]]],[23,1,1,12,13,[[779,1,1,12,13]]]],[88,7638,7640,7944,10159,11955,12315,12356,12727,12732,12739,16086,19827]]],["keepers",[14,13,[[11,4,4,0,4,[[323,1,1,0,1],[334,1,1,1,2],[335,1,1,2,3],[337,1,1,3,4]]],[12,2,1,4,5,[[346,2,1,4,5]]],[20,1,1,5,6,[[670,1,1,5,6]]],[21,1,1,6,7,[[675,1,1,6,7]]],[23,2,2,7,9,[[748,1,1,7,8],[796,1,1,8,9]]],[25,4,4,9,13,[[841,2,2,9,11],[845,2,2,11,13]]]],[9834,10149,10169,10240,10634,17526,17605,19044,20300,21522,21523,21607,21613]]],["keepest",[3,3,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]]],[9008,11296,12543]]],["keepeth",[19,16,[[4,1,1,0,1,[[159,1,1,0,1]]],[15,1,1,1,2,[[413,1,1,1,2]]],[18,4,4,2,6,[[511,1,1,2,3],[598,2,2,3,5],[623,1,1,5,6]]],[19,8,6,6,12,[[637,1,1,6,7],[640,1,1,7,8],[646,3,2,8,10],[648,2,1,10,11],[656,1,1,11,12]]],[20,1,1,12,13,[[666,1,1,12,13]]],[22,4,3,13,16,[[704,1,1,13,14],[734,3,2,14,16]]]],[5120,12301,14408,16084,16085,16347,16673,16750,16933,16941,17007,17242,17463,18132,18755,18759]]],["keeping",[6,6,[[3,2,2,0,2,[[119,2,2,0,2]]],[4,1,1,2,3,[[160,1,1,2,3]]],[15,1,1,3,4,[[424,1,1,3,4]]],[18,1,1,4,5,[[496,1,1,4,5]]],[26,1,1,5,6,[[858,1,1,5,6]]]],[3720,3730,5148,12649,14179,21992]]],["kept",[48,48,[[0,1,1,0,1,[[25,1,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]],[8,2,2,2,4,[[244,1,1,2,3],[248,1,1,3,4]]],[9,2,2,4,6,[[288,2,2,4,6]]],[10,7,7,6,13,[[293,1,1,6,7],[298,1,1,7,8],[301,3,3,8,11],[304,2,2,11,13]]],[11,4,4,13,17,[[321,1,1,13,14],[324,1,1,14,15],[329,1,1,15,16],[330,1,1,16,17]]],[12,2,2,17,19,[[347,1,1,17,18],[349,1,1,18,19]]],[13,3,3,19,22,[[372,1,1,19,20],[378,1,1,20,21],[400,1,1,21,22]]],[15,2,2,22,24,[[423,1,1,22,23],[424,1,1,23,24]]],[16,1,1,24,25,[[427,1,1,24,25]]],[17,1,1,25,26,[[458,1,1,25,26]]],[18,10,10,26,36,[[494,1,1,26,27],[495,1,1,27,28],[555,2,2,28,30],[576,1,1,30,31],[596,5,5,31,36]]],[20,1,1,36,37,[[663,1,1,36,37]]],[23,1,1,37,38,[[760,1,1,37,38]]],[25,4,4,38,42,[[819,1,1,38,39],[821,1,1,39,40],[845,1,1,40,41],[849,1,1,41,42]]],[27,1,1,42,43,[[873,1,1,42,43]]],[29,2,2,43,45,[[879,1,1,43,44],[880,1,1,44,45]]],[32,1,1,45,46,[[898,1,1,45,46]]],[38,2,2,46,48,[[927,2,2,46,48]]]],[697,4711,7415,7499,8624,8646,8822,9009,9118,9119,9142,9226,9245,9770,9859,10002,10030,10672,10749,11297,11447,11942,12607,12669,12738,13430,14107,14139,15123,15169,15506,15953,15965,16056,16065,16066,17410,19347,20858,20916,21607,21713,22264,22375,22383,22664,23127,23134]]],["mark",[3,3,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,2,2,1,3,[[533,1,1,1,2],[607,1,1,2,3]]]],[13835,14761,16143]]],["marked",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13404]]],["markest",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13100]]],["marketh",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13661]]],["myself",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8626,14141]]],["narrowly",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13180]]],["none",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8490]]],["observe",[33,32,[[3,1,1,0,1,[[144,1,1,0,1]]],[4,18,17,1,18,[[157,1,1,1,2],[158,2,2,2,4],[160,1,1,4,5],[163,1,1,5,6],[164,2,2,6,8],[167,1,1,8,9],[168,1,1,9,10],[169,1,1,10,11],[176,2,1,11,12],[180,4,4,12,16],[183,1,1,16,17],[184,1,1,17,18]]],[5,2,2,18,20,[[187,2,2,18,20]]],[6,1,1,20,21,[[223,1,1,20,21]]],[11,2,2,21,23,[[329,1,1,21,22],[333,1,1,22,23]]],[13,1,1,23,24,[[373,1,1,23,24]]],[15,2,2,24,26,[[413,1,1,24,25],[422,1,1,25,26]]],[18,3,3,26,29,[[582,1,1,26,27],[584,1,1,27,28],[596,1,1,28,29]]],[25,2,2,29,31,[[821,1,1,29,30],[838,1,1,30,31]]],[31,1,1,31,32,[[890,1,1,31,32]]]],[4579,5085,5089,5111,5138,5240,5241,5272,5324,5354,5374,5533,5612,5624,5626,5669,5740,5804,5858,5859,6898,10020,10127,11341,12301,12578,15651,15742,15932,20913,21421,22556]]],["observed",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5819]]],["observest",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18500]]],["observeth",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17517]]],["preserve",[5,5,[[18,3,3,0,3,[[518,1,1,0,1],[598,2,2,1,3]]],[19,2,2,3,5,[[631,1,1,3,4],[641,1,1,4,5]]]],[14544,16088,16089,16496,16775]]],["preserved",[6,6,[[5,1,1,0,1,[[210,1,1,0,1]]],[8,1,1,1,2,[[265,1,1,1,2]]],[17,2,2,2,4,[[445,1,1,2,3],[464,1,1,3,4]]],[18,1,1,4,5,[[514,1,1,4,5]]],[27,1,1,5,6,[[873,1,1,5,6]]]],[6493,8001,13098,13534,14478,22265]]],["preserveth",[4,4,[[18,2,2,0,2,[[574,1,1,0,1],[593,1,1,1,2]]],[19,2,2,2,4,[[629,1,1,2,3],[643,1,1,3,4]]]],[15488,15854,16441,16857]]],["regard",[2,2,[[18,1,1,0,1,[[508,1,1,0,1]]],[19,1,1,1,2,[[632,1,1,1,2]]]],[14337,16519]]],["regardeth",[3,3,[[19,2,2,0,2,[[640,1,1,0,1],[642,1,1,1,2]]],[20,1,1,2,3,[[663,1,1,2,3]]]],[16765,16812,17405]]],["reserveth",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19082]]],["spies",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6533]]],["sure",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8658]]],["thee",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5509]]],["themselves",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7776]]],["thyself",[1,1,[[8,1,1,0,1,[[254,1,1,0,1]]]],[7708]]],["upon",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23039]]],["wait",[2,2,[[13,1,1,0,1,[[371,1,1,0,1]]],[18,1,1,1,2,[[536,1,1,1,2]]]],[11279,14799]]],["waiteth",[2,2,[[17,1,1,0,1,[[459,1,1,0,1]]],[19,1,1,1,2,[[654,1,1,1,2]]]],[13451,17187]]],["waiting",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16636]]],["watch",[4,4,[[6,1,1,0,1,[[217,1,1,0,1]]],[8,1,1,1,2,[[254,1,1,1,2]]],[17,1,1,2,3,[[449,1,1,2,3]]],[18,1,1,3,4,[[607,1,1,3,4]]]],[6713,7717,13197,16146]]],["watched",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19432]]],["watchman",[2,2,[[18,1,1,0,1,[[604,1,1,0,1]]],[22,1,1,1,2,[[699,1,1,1,2]]]],[16122,18047]]],["watchmen",[4,4,[[21,2,2,0,2,[[673,1,1,0,1],[675,1,1,1,2]]],[22,1,1,2,3,[[740,1,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]]],[17574,17605,18860,20224]]]]},{"k":"H8105","v":[["*",[5,4,[[18,1,1,0,1,[[552,1,1,0,1]]],[22,2,1,1,2,[[703,2,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]],[35,1,1,3,4,[[906,1,1,3,4]]]],[15079,18124,20091,22799]]],["dregs",[1,1,[[18,1,1,0,1,[[552,1,1,0,1]]]],[15079]]],["lees",[4,3,[[22,2,1,0,1,[[703,2,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]],[35,1,1,2,3,[[906,1,1,2,3]]]],[18124,20091,22799]]]]},{"k":"H8106","v":[["*",[5,4,[[10,2,1,0,1,[[306,2,1,0,1]]],[12,3,3,1,4,[[343,1,1,1,2],[344,1,1,2,3],[345,1,1,3,4]]]],[9307,10500,10569,10587]]],["Shamed",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10587]]],["Shamer",[2,2,[[12,2,2,0,2,[[343,1,1,0,1],[344,1,1,1,2]]]],[10500,10569]]],["Shemer",[2,1,[[10,2,1,0,1,[[306,2,1,0,1]]]],[9307]]]]},{"k":"H8107","v":[["observed",[2,1,[[1,2,1,0,1,[[61,2,1,0,1]]]],[1858]]]]},{"k":"H8108","v":[["watch",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16279]]]]},{"k":"H8109","v":[["waking",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15097]]]]},{"k":"H8110","v":[["Shimron",[5,5,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[5,2,2,2,4,[[197,1,1,2,3],[205,1,1,3,4]]],[12,1,1,4,5,[[344,1,1,4,5]]]],[1399,4513,6108,6336,10536]]]]},{"k":"H8111","v":[["*",[109,101,[[10,19,17,0,17,[[303,1,1,0,1],[306,5,4,1,5],[308,1,1,5,6],[310,5,5,6,11],[311,2,2,11,13],[312,5,4,13,17]]],[11,49,44,17,61,[[313,2,2,17,19],[314,1,1,19,20],[315,2,2,20,22],[317,1,1,22,23],[318,5,4,23,27],[319,2,2,27,29],[322,7,5,29,34],[325,5,5,34,39],[326,3,3,39,42],[327,8,7,42,49],[329,7,6,49,55],[330,3,3,55,58],[333,1,1,58,59],[335,2,2,59,61]]],[13,8,8,61,69,[[384,2,2,61,63],[388,1,1,63,64],[391,2,2,64,66],[394,3,3,66,69]]],[15,1,1,69,70,[[416,1,1,69,70]]],[22,8,7,70,77,[[685,2,1,70,71],[686,1,1,71,72],[687,1,1,72,73],[688,3,3,73,76],[714,1,1,76,77]]],[23,3,3,77,80,[[767,1,1,77,78],[775,1,1,78,79],[785,1,1,79,80]]],[25,6,6,80,86,[[817,4,4,80,84],[824,2,2,84,86]]],[27,6,6,86,92,[[868,1,1,86,87],[869,2,2,87,89],[871,2,2,89,91],[874,1,1,91,92]]],[29,5,5,92,97,[[881,2,2,92,94],[882,1,1,94,95],[884,1,1,95,96],[886,1,1,96,97]]],[30,1,1,97,98,[[888,1,1,97,98]]],[32,3,3,98,101,[[893,3,3,98,101]]]],[9216,9307,9311,9312,9315,9343,9409,9418,9425,9442,9451,9452,9469,9490,9517,9518,9531,9535,9536,9576,9577,9582,9650,9693,9694,9698,9699,9708,9725,9794,9805,9810,9828,9829,9872,9877,9880,9881,9884,9910,9912,9919,9933,9938,9939,9942,9948,9950,9952,9984,9988,9989,10007,10009,10011,10033,10034,10058,10132,10183,10184,11544,11551,11653,11717,11728,11772,11773,11779,12361,17791,17811,17838,17859,17860,17861,18349,19497,19696,19962,20808,20813,20815,20817,21011,21040,22179,22199,22200,22230,22232,22282,22404,22407,22411,22451,22495,22529,22580,22584,22585]]],["+",[7,7,[[10,1,1,0,1,[[310,1,1,0,1]]],[11,3,3,1,4,[[315,1,1,1,2],[329,1,1,2,3],[335,1,1,3,4]]],[13,1,1,4,5,[[391,1,1,4,5]]],[22,1,1,5,6,[[688,1,1,5,6]]],[23,1,1,6,7,[[785,1,1,6,7]]]],[9425,9582,10011,10183,11717,17860,19962]]],["Samaria",[102,94,[[10,18,16,0,16,[[303,1,1,0,1],[306,5,4,1,5],[308,1,1,5,6],[310,4,4,6,10],[311,2,2,10,12],[312,5,4,12,16]]],[11,46,41,16,57,[[313,2,2,16,18],[314,1,1,18,19],[315,1,1,19,20],[317,1,1,20,21],[318,5,4,21,25],[319,2,2,25,27],[322,7,5,27,32],[325,5,5,32,37],[326,3,3,37,40],[327,8,7,40,47],[329,6,5,47,52],[330,3,3,52,55],[333,1,1,55,56],[335,1,1,56,57]]],[13,7,7,57,64,[[384,2,2,57,59],[388,1,1,59,60],[391,1,1,60,61],[394,3,3,61,64]]],[15,1,1,64,65,[[416,1,1,64,65]]],[22,7,6,65,71,[[685,2,1,65,66],[686,1,1,66,67],[687,1,1,67,68],[688,2,2,68,70],[714,1,1,70,71]]],[23,2,2,71,73,[[767,1,1,71,72],[775,1,1,72,73]]],[25,6,6,73,79,[[817,4,4,73,77],[824,2,2,77,79]]],[27,6,6,79,85,[[868,1,1,79,80],[869,2,2,80,82],[871,2,2,82,84],[874,1,1,84,85]]],[29,5,5,85,90,[[881,2,2,85,87],[882,1,1,87,88],[884,1,1,88,89],[886,1,1,89,90]]],[30,1,1,90,91,[[888,1,1,90,91]]],[32,3,3,91,94,[[893,3,3,91,94]]]],[9216,9307,9311,9312,9315,9343,9409,9418,9442,9451,9452,9469,9490,9517,9518,9531,9535,9536,9576,9577,9650,9693,9694,9698,9699,9708,9725,9794,9805,9810,9828,9829,9872,9877,9880,9881,9884,9910,9912,9919,9933,9938,9939,9942,9948,9950,9952,9984,9988,9989,10007,10009,10033,10034,10058,10132,10184,11544,11551,11653,11728,11772,11773,11779,12361,17791,17811,17838,17859,17861,18349,19497,19696,20808,20813,20815,20817,21011,21040,22179,22199,22200,22230,22232,22282,22404,22407,22411,22451,22495,22529,22580,22584,22585]]]]},{"k":"H8112","v":[["Shimronmeron",[1,1,[[5,1,1,0,1,[[198,1,1,0,1]]]],[6150]]]]},{"k":"H8113","v":[["*",[4,4,[[12,3,3,0,3,[[341,1,1,0,1],[348,1,1,1,2],[363,1,1,2,3]]],[13,1,1,3,4,[[395,1,1,3,4]]]],[10422,10718,11087,11804]]],["Shimri",[3,3,[[12,2,2,0,2,[[341,1,1,0,1],[348,1,1,1,2]]],[13,1,1,2,3,[[395,1,1,2,3]]]],[10422,10718,11804]]],["Simri",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11087]]]]},{"k":"H8114","v":[["*",[4,4,[[12,1,1,0,1,[[349,1,1,0,1]]],[13,1,1,1,2,[[377,1,1,1,2]]],[14,2,2,2,4,[[412,2,2,2,4]]]],[10725,11433,12284,12293]]],["Shamariah",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11433]]],["Shemariah",[3,3,[[12,1,1,0,1,[[349,1,1,0,1]]],[14,2,2,1,3,[[412,2,2,1,3]]]],[10725,12284,12293]]]]},{"k":"H8115","v":[["Samaria",[2,2,[[14,2,2,0,2,[[406,2,2,0,2]]]],[12120,12127]]]]},{"k":"H8116","v":[["Shimrith",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11703]]]]},{"k":"H8117","v":[["Shimronites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4513]]]]},{"k":"H8118","v":[["Samaritans",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10012]]]]},{"k":"H8119","v":[["Shimrath",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10596]]]]},{"k":"H8120","v":[["ministered",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21943]]]]},{"k":"H8121","v":[["*",[134,127,[[0,6,6,0,6,[[14,2,2,0,2],[18,1,1,2,3],[27,1,1,3,4],[31,1,1,4,5],[36,1,1,5,6]]],[1,4,4,6,10,[[65,1,1,6,7],[66,1,1,7,8],[71,2,2,8,10]]],[2,1,1,10,11,[[111,1,1,10,11]]],[3,2,2,11,13,[[137,1,1,11,12],[141,1,1,12,13]]],[4,10,10,13,23,[[156,3,3,13,16],[163,1,1,16,17],[168,1,1,17,18],[169,1,1,18,19],[175,1,1,19,20],[176,2,2,20,22],[185,1,1,22,23]]],[5,13,12,23,35,[[187,2,2,23,25],[194,1,1,25,26],[196,4,3,26,29],[198,1,1,29,30],[199,1,1,30,31],[205,3,3,31,34],[209,1,1,34,35]]],[6,6,6,35,41,[[215,1,1,35,36],[219,1,1,36,37],[221,1,1,37,38],[229,1,1,38,39],[230,1,1,39,40],[231,1,1,40,41]]],[8,1,1,41,42,[[246,1,1,41,42]]],[9,5,5,42,47,[[268,1,1,42,43],[269,1,1,43,44],[278,2,2,44,46],[289,1,1,46,47]]],[10,1,1,47,48,[[312,1,1,47,48]]],[11,5,4,48,52,[[315,1,1,48,49],[322,1,1,49,50],[335,3,2,50,52]]],[13,1,1,52,53,[[384,1,1,52,53]]],[15,1,1,53,54,[[419,1,1,53,54]]],[17,1,1,54,55,[[443,1,1,54,55]]],[18,14,14,55,69,[[496,1,1,55,56],[527,1,1,56,57],[535,1,1,57,58],[549,2,2,58,60],[551,1,1,60,61],[561,1,1,61,62],[566,1,1,62,63],[581,2,2,63,65],[590,1,1,65,66],[598,1,1,66,67],[613,1,1,67,68],[625,1,1,68,69]]],[20,35,32,69,101,[[659,5,4,69,73],[660,6,6,73,79],[661,1,1,79,80],[662,4,4,80,84],[663,2,2,84,86],[664,3,3,86,89],[665,1,1,89,90],[666,4,3,90,93],[667,6,5,93,98],[668,1,1,98,99],[669,1,1,99,100],[670,1,1,100,101]]],[21,1,1,101,102,[[671,1,1,101,102]]],[22,10,9,102,111,[[691,1,1,102,103],[716,2,1,103,104],[719,1,1,104,105],[723,1,1,105,106],[727,1,1,106,107],[732,1,1,107,108],[737,1,1,108,109],[738,2,2,109,111]]],[23,3,3,111,114,[[752,1,1,111,112],[759,1,1,112,113],[775,1,1,113,114]]],[25,2,2,114,116,[[809,1,1,114,115],[833,1,1,115,116]]],[28,3,3,116,119,[[877,2,2,116,118],[878,1,1,118,119]]],[29,1,1,119,120,[[886,1,1,119,120]]],[31,2,1,120,121,[[892,2,1,120,121]]],[32,1,1,121,122,[[895,1,1,121,122]]],[33,1,1,122,123,[[902,1,1,122,123]]],[34,1,1,123,124,[[905,1,1,123,124]]],[37,1,1,124,125,[[918,1,1,124,125]]],[38,2,2,125,127,[[925,1,1,125,126],[928,1,1,126,127]]]],[372,377,480,784,959,1092,1968,1995,2116,2139,3376,4351,4475,5023,5045,5051,5238,5348,5367,5511,5538,5540,5824,5855,5866,6031,6076,6077,6091,6131,6159,6333,6348,6355,6464,6654,6787,6847,7038,7097,7121,7454,8073,8116,8297,8298,8657,9516,9598,9826,10170,10176,11576,12423,13045,14172,14669,14787,15005,15017,15064,15270,15362,15590,15593,15816,16087,16204,16374,17318,17320,17324,17329,17344,17350,17351,17352,17353,17355,17375,17382,17384,17388,17396,17410,17415,17418,17422,17429,17440,17467,17473,17475,17478,17481,17484,17486,17488,17498,17520,17525,17543,17916,18398,18476,18567,18646,18735,18819,18840,18841,19155,19324,19726,20620,21255,22321,22342,22358,22490,22576,22614,22729,22779,22983,23100,23140]]],["+",[14,14,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,2,2,1,3,[[156,2,2,1,3]]],[5,6,6,3,9,[[187,1,1,3,4],[199,1,1,4,5],[205,3,3,5,8],[209,1,1,8,9]]],[6,3,3,9,12,[[221,1,1,9,10],[230,1,1,10,11],[231,1,1,11,12]]],[11,1,1,12,13,[[322,1,1,12,13]]],[37,1,1,13,14,[[918,1,1,13,14]]]],[4351,5045,5051,5866,6159,6333,6348,6355,6464,6847,7097,7121,9826,22983]]],["Sun",[2,2,[[5,1,1,0,1,[[196,1,1,0,1]]],[38,1,1,1,2,[[928,1,1,1,2]]]],[6076,23140]]],["sun",[117,110,[[0,6,6,0,6,[[14,2,2,0,2],[18,1,1,2,3],[27,1,1,3,4],[31,1,1,4,5],[36,1,1,5,6]]],[1,4,4,6,10,[[65,1,1,6,7],[66,1,1,7,8],[71,2,2,8,10]]],[2,1,1,10,11,[[111,1,1,10,11]]],[3,1,1,11,12,[[141,1,1,11,12]]],[4,8,8,12,20,[[156,1,1,12,13],[163,1,1,13,14],[168,1,1,14,15],[169,1,1,15,16],[175,1,1,16,17],[176,2,2,17,19],[185,1,1,19,20]]],[5,6,5,20,25,[[187,1,1,20,21],[194,1,1,21,22],[196,3,2,22,24],[198,1,1,24,25]]],[6,3,3,25,28,[[215,1,1,25,26],[219,1,1,26,27],[229,1,1,27,28]]],[8,1,1,28,29,[[246,1,1,28,29]]],[9,5,5,29,34,[[268,1,1,29,30],[269,1,1,30,31],[278,2,2,31,33],[289,1,1,33,34]]],[10,1,1,34,35,[[312,1,1,34,35]]],[11,4,3,35,38,[[315,1,1,35,36],[335,3,2,36,38]]],[13,1,1,38,39,[[384,1,1,38,39]]],[15,1,1,39,40,[[419,1,1,39,40]]],[17,1,1,40,41,[[443,1,1,40,41]]],[18,14,14,41,55,[[496,1,1,41,42],[527,1,1,42,43],[535,1,1,43,44],[549,2,2,44,46],[551,1,1,46,47],[561,1,1,47,48],[566,1,1,48,49],[581,2,2,49,51],[590,1,1,51,52],[598,1,1,52,53],[613,1,1,53,54],[625,1,1,54,55]]],[20,35,32,55,87,[[659,5,4,55,59],[660,6,6,59,65],[661,1,1,65,66],[662,4,4,66,70],[663,2,2,70,72],[664,3,3,72,75],[665,1,1,75,76],[666,4,3,76,79],[667,6,5,79,84],[668,1,1,84,85],[669,1,1,85,86],[670,1,1,86,87]]],[21,1,1,87,88,[[671,1,1,87,88]]],[22,9,8,88,96,[[691,1,1,88,89],[716,2,1,89,90],[719,1,1,90,91],[723,1,1,91,92],[727,1,1,92,93],[737,1,1,93,94],[738,2,2,94,96]]],[23,3,3,96,99,[[752,1,1,96,97],[759,1,1,97,98],[775,1,1,98,99]]],[25,2,2,99,101,[[809,1,1,99,100],[833,1,1,100,101]]],[28,3,3,101,104,[[877,2,2,101,103],[878,1,1,103,104]]],[29,1,1,104,105,[[886,1,1,104,105]]],[31,2,1,105,106,[[892,2,1,105,106]]],[32,1,1,106,107,[[895,1,1,106,107]]],[33,1,1,107,108,[[902,1,1,107,108]]],[34,1,1,108,109,[[905,1,1,108,109]]],[38,1,1,109,110,[[925,1,1,109,110]]]],[372,377,480,784,959,1092,1968,1995,2116,2139,3376,4475,5023,5238,5348,5367,5511,5538,5540,5824,5855,6031,6077,6091,6131,6654,6787,7038,7454,8073,8116,8297,8298,8657,9516,9598,10170,10176,11576,12423,13045,14172,14669,14787,15005,15017,15064,15270,15362,15590,15593,15816,16087,16204,16374,17318,17320,17324,17329,17344,17350,17351,17352,17353,17355,17375,17382,17384,17388,17396,17410,17415,17418,17422,17429,17440,17467,17473,17475,17478,17481,17484,17486,17488,17498,17520,17525,17543,17916,18398,18476,18567,18646,18819,18840,18841,19155,19324,19726,20620,21255,22321,22342,22358,22490,22576,22614,22729,22779,23100]]],["windows",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18735]]]]},{"k":"H8122","v":[["sun",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21919]]]]},{"k":"H8123","v":[["*",[38,37,[[6,38,37,0,37,[[223,1,1,0,1],[224,9,9,1,10],[225,9,9,10,19],[226,19,18,19,37]]]],[6908,6910,6912,6914,6916,6919,6921,6924,6925,6929,6930,6932,6933,6935,6936,6939,6940,6941,6945,6950,6951,6952,6955,6956,6958,6959,6961,6962,6963,6969,6972,6974,6975,6976,6977,6978,6979]]],["+",[2,2,[[6,2,2,0,2,[[224,2,2,0,2]]]],[6914,6916]]],["Samson",[33,32,[[6,33,32,0,32,[[223,1,1,0,1],[224,4,4,1,5],[225,9,9,5,14],[226,19,18,14,32]]]],[6908,6910,6912,6919,6921,6930,6932,6933,6935,6936,6939,6940,6941,6945,6950,6951,6952,6955,6956,6958,6959,6961,6962,6963,6969,6972,6974,6975,6976,6977,6978,6979]]],["Samson's",[3,3,[[6,3,3,0,3,[[224,3,3,0,3]]]],[6924,6925,6929]]]]},{"k":"H8124","v":[["Shimshai",[4,4,[[14,4,4,0,4,[[406,4,4,0,4]]]],[12118,12119,12127,12133]]]]},{"k":"H8125","v":[["Shamsherai",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10601]]]]},{"k":"H8126","v":[["Shumathites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10359]]]]},{"k":"H8127","v":[["*",[55,48,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,5,2,1,3,[[70,5,2,1,3]]],[2,2,1,3,4,[[113,2,1,3,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[4,3,2,5,7,[[171,2,1,5,6],[184,1,1,6,7]]],[8,4,3,7,10,[[237,1,1,7,8],[249,3,2,8,10]]],[10,2,2,10,12,[[300,1,1,10,11],[312,1,1,11,12]]],[13,1,1,12,13,[[375,1,1,12,13]]],[17,7,7,13,20,[[439,1,1,13,14],[448,1,1,14,15],[451,1,1,15,16],[454,1,1,16,17],[464,1,1,17,18],[474,1,1,18,19],[476,1,1,19,20]]],[18,8,8,20,28,[[480,1,1,20,21],[512,1,1,21,22],[514,1,1,22,23],[522,1,1,23,24],[534,1,1,24,25],[535,1,1,25,26],[589,1,1,26,27],[601,1,1,27,28]]],[19,3,3,28,31,[[637,1,1,28,29],[652,1,1,29,30],[657,1,1,30,31]]],[21,4,4,31,35,[[674,1,1,31,32],[675,1,1,32,33],[676,1,1,33,34],[677,1,1,34,35]]],[23,2,2,35,37,[[775,2,2,35,37]]],[24,2,2,37,39,[[798,1,1,37,38],[799,1,1,38,39]]],[25,3,3,39,42,[[819,1,1,39,40],[828,2,2,40,42]]],[28,2,1,42,43,[[876,2,1,42,43]]],[29,3,3,43,46,[[881,1,1,43,44],[882,1,1,44,45],[884,1,1,45,46]]],[32,1,1,46,47,[[895,1,1,46,47]]],[37,1,1,47,48,[[919,1,1,47,48]]]],[1485,2101,2104,3466,4057,5427,5782,7253,7512,7513,9097,9519,11381,12940,13167,13247,13317,13549,13862,13902,13964,14426,14462,14605,14772,14785,15813,16108,16682,17132,17265,17584,17612,17620,17631,19720,19721,20348,20370,20851,21127,21136,22297,22410,22416,22454,22613,23006]]],["+",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]]],[2104,13549]]],["crag",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13862]]],["forefront",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7513]]],["ivory",[10,10,[[10,2,2,0,2,[[300,1,1,0,1],[312,1,1,1,2]]],[13,1,1,2,3,[[375,1,1,2,3]]],[18,1,1,3,4,[[522,1,1,3,4]]],[21,2,2,4,6,[[675,1,1,4,5],[677,1,1,5,6]]],[25,2,2,6,8,[[828,2,2,6,8]]],[29,2,2,8,10,[[881,1,1,8,9],[884,1,1,9,10]]]],[9097,9519,11381,14605,17612,17631,21127,21136,22410,22454]]],["sharp",[2,1,[[8,2,1,0,1,[[249,2,1,0,1]]]],[7512]]],["teeth",[30,29,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[17,5,5,4,9,[[439,1,1,4,5],[448,1,1,5,6],[451,1,1,6,7],[454,1,1,7,8],[476,1,1,8,9]]],[18,7,7,9,16,[[480,1,1,9,10],[512,1,1,10,11],[514,1,1,11,12],[534,1,1,12,13],[535,1,1,13,14],[589,1,1,14,15],[601,1,1,15,16]]],[19,2,2,16,18,[[637,1,1,16,17],[657,1,1,17,18]]],[21,2,2,18,20,[[674,1,1,18,19],[676,1,1,19,20]]],[23,2,2,20,22,[[775,2,2,20,22]]],[24,2,2,22,24,[[798,1,1,22,23],[799,1,1,23,24]]],[25,1,1,24,25,[[819,1,1,24,25]]],[28,2,1,25,26,[[876,2,1,25,26]]],[29,1,1,26,27,[[882,1,1,26,27]]],[32,1,1,27,28,[[895,1,1,27,28]]],[37,1,1,28,29,[[919,1,1,28,29]]]],[1485,4057,5782,7253,12940,13167,13247,13317,13902,13964,14426,14462,14772,14785,15813,16108,16682,17265,17584,17620,19720,19721,20348,20370,20851,22297,22416,22613,23006]]],["tooth",[9,5,[[1,4,2,0,2,[[70,4,2,0,2]]],[2,2,1,2,3,[[113,2,1,2,3]]],[4,2,1,3,4,[[171,2,1,3,4]]],[19,1,1,4,5,[[652,1,1,4,5]]]],[2101,2104,3466,5427,17132]]]]},{"k":"H8128","v":[["teeth",[3,3,[[26,3,3,0,3,[[856,3,3,0,3]]]],[21938,21940,21952]]]]},{"k":"H8129","v":[["Shen",[1,1,[[8,1,1,0,1,[[242,1,1,0,1]]]],[7364]]]]},{"k":"H8130","v":[["*",[146,139,[[0,7,7,0,7,[[23,1,1,0,1],[25,1,1,1,2],[28,2,2,2,4],[36,3,3,4,7]]],[1,4,4,7,11,[[50,1,1,7,8],[67,1,1,8,9],[69,1,1,9,10],[72,1,1,10,11]]],[2,2,2,11,13,[[108,1,1,11,12],[115,1,1,12,13]]],[3,1,1,13,14,[[126,1,1,13,14]]],[4,20,18,14,32,[[156,1,1,14,15],[157,1,1,15,16],[159,3,2,16,18],[164,1,1,18,19],[168,1,1,19,20],[171,3,3,20,23],[173,4,3,23,26],[174,2,2,26,28],[176,1,1,28,29],[182,1,1,29,30],[184,1,1,30,31],[185,1,1,31,32]]],[5,1,1,32,33,[[206,1,1,32,33]]],[6,4,3,33,36,[[221,1,1,33,34],[224,1,1,34,35],[225,2,1,35,36]]],[9,8,6,36,42,[[271,1,1,36,37],[279,3,2,37,39],[285,2,1,39,40],[288,2,2,40,42]]],[10,1,1,42,43,[[312,1,1,42,43]]],[13,3,3,43,46,[[367,1,1,43,44],[384,1,1,44,45],[385,1,1,45,46]]],[16,3,3,46,49,[[434,3,3,46,49]]],[17,3,3,49,52,[[443,1,1,49,50],[466,1,1,50,51],[469,1,1,51,52]]],[18,41,40,52,92,[[482,1,1,52,53],[486,1,1,53,54],[488,1,1,54,55],[495,2,2,55,57],[498,1,1,57,58],[502,1,1,58,59],[503,1,1,59,60],[508,1,1,60,61],[511,1,1,61,62],[512,1,1,62,63],[513,1,1,63,64],[515,1,1,64,65],[518,1,1,65,66],[521,2,2,66,68],[522,1,1,68,69],[527,1,1,69,70],[532,1,1,70,71],[545,1,1,71,72],[546,2,2,72,74],[558,1,1,74,75],[560,1,1,75,76],[563,1,1,76,77],[566,1,1,77,78],[574,1,1,78,79],[578,1,1,79,80],[582,1,1,80,81],[583,2,2,81,83],[595,1,1,83,84],[596,4,4,84,88],[597,1,1,88,89],[606,1,1,89,90],[616,3,2,90,92]]],[19,26,25,92,117,[[628,2,2,92,94],[632,1,1,94,95],[633,1,1,95,96],[635,3,2,96,98],[636,1,1,98,99],[638,1,1,99,100],[639,1,1,100,101],[640,2,2,101,103],[641,2,2,103,105],[642,2,2,105,107],[646,1,1,107,108],[652,2,2,108,110],[653,2,2,110,112],[654,1,1,112,113],[655,1,1,113,114],[656,2,2,114,116],[657,1,1,116,117]]],[20,3,3,117,120,[[660,2,2,117,119],[661,1,1,119,120]]],[22,4,4,120,124,[[679,1,1,120,121],[738,1,1,121,122],[739,1,1,122,123],[744,1,1,123,124]]],[23,2,2,124,126,[[756,1,1,124,125],[788,1,1,125,126]]],[25,4,4,126,130,[[817,2,2,126,128],[824,1,1,128,129],[836,1,1,129,130]]],[27,1,1,130,131,[[870,1,1,130,131]]],[29,4,4,131,135,[[883,3,3,131,134],[884,1,1,134,135]]],[32,1,1,135,136,[[895,1,1,135,136]]],[37,1,1,136,137,[[918,1,1,136,137]]],[38,2,2,137,139,[[925,1,1,137,138],[926,1,1,138,139]]]],[651,719,826,828,1087,1088,1091,1542,2020,2056,2149,3298,3541,4023,5046,5062,5121,5126,5271,5364,5410,5412,5417,5462,5463,5464,5483,5486,5528,5715,5799,5821,6377,6836,6925,6931,8140,8332,8339,8517,8620,8643,9488,11205,11549,11578,12835,12839,12850,13051,13617,13700,13978,14034,14064,14135,14158,14199,14270,14278,14337,14409,14429,14440,14509,14549,14578,14581,14604,14685,14744,14901,14939,14949,15232,15243,15301,15349,15488,15516,15631,15661,15692,15876,16002,16011,16026,16061,16080,16137,16260,16261,16422,16429,16529,16556,16615,16638,16646,16703,16720,16752,16771,16789,16792,16817,16834,16932,17130,17134,17165,17169,17175,17212,17234,17248,17274,17350,17351,17367,17668,18836,18851,18927,19257,20014,20789,20799,21035,21350,22223,22433,22438,22444,22458,22610,22993,23092,23119]]],["+",[13,12,[[2,1,1,0,1,[[108,1,1,0,1]]],[4,2,2,1,3,[[171,1,1,1,2],[173,1,1,2,3]]],[6,2,1,3,4,[[225,2,1,3,4]]],[9,3,3,4,7,[[279,1,1,4,5],[285,1,1,5,6],[288,1,1,6,7]]],[18,3,3,7,10,[[486,1,1,7,8],[495,1,1,8,9],[546,1,1,9,10]]],[20,2,2,10,12,[[660,2,2,10,12]]]],[3298,5417,5464,6931,8339,8517,8620,14034,14135,14949,17350,17351]]],["Hate",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22438]]],["enemies",[3,3,[[1,1,1,0,1,[[50,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]],[13,1,1,2,3,[[367,1,1,2,3]]]],[1542,8517,11205]]],["enemy",[2,2,[[19,2,2,0,2,[[652,1,1,0,1],[654,1,1,1,2]]]],[17134,17175]]],["foes",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12850]]],["hate",[63,61,[[0,2,2,0,2,[[23,1,1,0,1],[25,1,1,1,2]]],[1,1,1,2,3,[[69,1,1,2,3]]],[2,1,1,3,4,[[115,1,1,3,4]]],[3,1,1,4,5,[[126,1,1,4,5]]],[4,8,8,5,13,[[157,1,1,5,6],[159,2,2,6,8],[174,1,1,8,9],[176,1,1,9,10],[182,1,1,10,11],[184,1,1,11,12],[185,1,1,12,13]]],[6,2,2,13,15,[[221,1,1,13,14],[224,1,1,14,15]]],[9,1,1,15,16,[[288,1,1,15,16]]],[10,1,1,16,17,[[312,1,1,16,17]]],[13,2,2,17,19,[[384,1,1,17,18],[385,1,1,18,19]]],[17,1,1,19,20,[[443,1,1,19,20]]],[18,25,24,20,44,[[495,1,1,20,21],[498,1,1,21,22],[502,1,1,22,23],[511,1,1,23,24],[512,1,1,24,25],[515,1,1,25,26],[518,1,1,26,27],[521,1,1,27,28],[545,1,1,28,29],[546,1,1,29,30],[560,1,1,30,31],[563,1,1,31,32],[566,1,1,32,33],[574,1,1,33,34],[578,1,1,34,35],[582,1,1,35,36],[595,1,1,36,37],[596,4,4,37,41],[606,1,1,41,42],[616,3,2,42,44]]],[19,9,8,44,52,[[628,1,1,44,45],[633,1,1,45,46],[635,3,2,46,48],[636,1,1,48,49],[646,1,1,49,50],[652,1,1,50,51],[656,1,1,51,52]]],[20,1,1,52,53,[[661,1,1,52,53]]],[22,1,1,53,54,[[739,1,1,53,54]]],[23,1,1,54,55,[[788,1,1,54,55]]],[25,1,1,55,56,[[817,1,1,55,56]]],[29,3,3,56,59,[[883,2,2,56,58],[884,1,1,58,59]]],[32,1,1,59,60,[[895,1,1,59,60]]],[37,1,1,60,61,[[918,1,1,60,61]]]],[651,719,2056,3541,4023,5062,5121,5126,5483,5528,5715,5799,5821,6836,6925,8643,9488,11549,11578,13051,14158,14199,14270,14409,14429,14509,14549,14581,14901,14939,15243,15301,15349,15488,15516,15631,15876,16002,16011,16026,16061,16137,16260,16261,16422,16556,16615,16638,16646,16932,17130,17234,17367,18851,20014,20789,22433,22444,22458,22610,22993]]],["hated",[35,33,[[0,5,5,0,5,[[28,2,2,0,2],[36,3,3,2,5]]],[4,6,5,5,10,[[156,1,1,5,6],[171,2,2,6,8],[173,3,2,8,10]]],[5,1,1,10,11,[[206,1,1,10,11]]],[9,3,2,11,13,[[271,1,1,11,12],[279,2,1,12,13]]],[16,2,2,13,15,[[434,2,2,13,15]]],[17,1,1,15,16,[[466,1,1,15,16]]],[18,6,6,16,22,[[503,1,1,16,17],[508,1,1,17,18],[521,1,1,18,19],[532,1,1,19,20],[583,2,2,20,22]]],[19,4,4,22,26,[[628,1,1,22,23],[632,1,1,23,24],[641,2,2,24,26]]],[22,2,2,26,28,[[738,1,1,26,27],[744,1,1,27,28]]],[23,1,1,28,29,[[756,1,1,28,29]]],[25,2,2,29,31,[[817,1,1,29,30],[836,1,1,30,31]]],[27,1,1,31,32,[[870,1,1,31,32]]],[38,1,1,32,33,[[925,1,1,32,33]]]],[826,828,1087,1088,1091,5046,5410,5412,5462,5463,6377,8140,8332,12835,12839,13617,14278,14337,14578,14744,15661,15692,16429,16529,16789,16792,18836,18927,19257,20799,21350,22223,23092]]],["hateful",[1,1,[[18,1,1,0,1,[[513,1,1,0,1]]]],[14440]]],["haters",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15232]]],["hatest",[4,4,[[18,3,3,0,3,[[482,1,1,0,1],[522,1,1,1,2],[527,1,1,2,3]]],[25,1,1,3,4,[[824,1,1,3,4]]]],[13978,14604,14685,21035]]],["hateth",[20,20,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,4,4,1,5,[[159,1,1,1,2],[164,1,1,2,3],[168,1,1,3,4],[174,1,1,4,5]]],[17,1,1,5,6,[[469,1,1,5,6]]],[18,2,2,6,8,[[488,1,1,6,7],[597,1,1,7,8]]],[19,10,10,8,18,[[638,1,1,8,9],[639,1,1,9,10],[640,2,2,10,12],[642,2,2,12,14],[653,2,2,14,16],[655,1,1,16,17],[656,1,1,17,18]]],[22,1,1,18,19,[[679,1,1,18,19]]],[38,1,1,19,20,[[926,1,1,19,20]]]],[2149,5121,5271,5364,5486,13700,14064,16080,16703,16720,16752,16771,16817,16834,17165,17169,17212,17248,17668,23119]]],["hating",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2020]]],["odious",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17274]]]]},{"k":"H8131","v":[["hate",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21856]]]]},{"k":"H8132","v":[["*",[3,3,[[11,1,1,0,1,[[337,1,1,0,1]]],[20,1,1,1,2,[[666,1,1,1,2]]],[24,1,1,2,3,[[800,1,1,2,3]]]],[10251,17459,20421]]],["+",[1,1,[[11,1,1,0,1,[[337,1,1,0,1]]]],[10251]]],["changed",[2,2,[[20,1,1,0,1,[[666,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[17459,20421]]]]},{"k":"H8133","v":[["*",[21,21,[[14,2,2,0,2,[[408,2,2,0,2]]],[26,19,19,2,21,[[851,2,2,2,4],[852,3,3,4,7],[853,1,1,7,8],[854,3,3,8,11],[855,3,3,11,14],[856,7,7,14,21]]]],[12162,12163,21767,21779,21826,21834,21835,21853,21880,21883,21884,21913,21920,21922,21936,21940,21952,21956,21957,21958,21961]]],["alter",[2,2,[[14,2,2,0,2,[[408,2,2,0,2]]]],[12162,12163]]],["change",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21958]]],["changed",[12,12,[[26,12,12,0,12,[[851,1,1,0,1],[852,3,3,1,4],[853,1,1,4,5],[854,3,3,5,8],[855,3,3,8,11],[856,1,1,11,12]]]],[21767,21826,21834,21835,21853,21880,21883,21884,21913,21920,21922,21961]]],["changeth",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21779]]],["diverse",[5,5,[[26,5,5,0,5,[[856,5,5,0,5]]]],[21936,21940,21952,21956,21957]]]]},{"k":"H8134","v":[["Shinab",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[338]]]]},{"k":"H8135","v":[["*",[17,16,[[3,1,1,0,1,[[151,1,1,0,1]]],[4,2,2,1,3,[[153,1,1,1,2],[161,1,1,2,3]]],[9,2,1,3,4,[[279,2,1,3,4]]],[18,4,4,4,8,[[502,1,1,4,5],[586,2,2,5,7],[616,1,1,7,8]]],[19,4,4,8,12,[[637,2,2,8,10],[642,1,1,10,11],[653,1,1,11,12]]],[20,2,2,12,14,[[667,2,2,12,14]]],[25,2,2,14,16,[[824,1,1,14,15],[836,1,1,15,16]]]],[4865,4919,5185,8332,14270,15758,15760,16261,16668,16674,16824,17167,17476,17481,21036,21355]]],["+",[3,3,[[4,1,1,0,1,[[161,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[25,1,1,2,3,[[836,1,1,2,3]]]],[5185,8332,21355]]],["Hatred",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16668]]],["hated",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4919]]],["hatefully",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21036]]],["hatred",[11,11,[[3,1,1,0,1,[[151,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[18,4,4,2,6,[[502,1,1,2,3],[586,2,2,3,5],[616,1,1,5,6]]],[19,3,3,6,9,[[637,1,1,6,7],[642,1,1,7,8],[653,1,1,8,9]]],[20,2,2,9,11,[[667,2,2,9,11]]]],[4865,8332,14270,15758,15760,16261,16674,16824,17167,17476,17481]]]]},{"k":"H8136","v":[["angels",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14917]]]]},{"k":"H8137","v":[["Shenazar",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10379]]]]},{"k":"H8138","v":[["*",[21,20,[[0,1,1,0,1,[[40,1,1,0,1]]],[8,2,2,1,3,[[256,1,1,1,2],[261,1,1,2,3]]],[9,1,1,3,4,[[286,1,1,3,4]]],[10,3,2,4,6,[[304,1,1,4,5],[308,2,1,5,6]]],[15,1,1,6,7,[[425,1,1,6,7]]],[16,3,3,7,10,[[426,1,1,7,8],[427,1,1,8,9],[428,1,1,9,10]]],[17,2,2,10,12,[[449,1,1,10,11],[464,1,1,11,12]]],[18,1,1,12,13,[[566,1,1,12,13]]],[19,4,4,13,17,[[644,1,1,13,14],[651,1,1,14,15],[653,1,1,15,16],[658,1,1,16,17]]],[23,2,2,17,19,[[746,1,1,17,18],[796,1,1,18,19]]],[38,1,1,19,20,[[927,1,1,19,20]]]],[1227,7785,7913,8564,9220,9375,12692,12709,12733,12755,13201,13554,15360,16882,17100,17152,17289,19001,20309,23126]]],["+",[4,4,[[8,1,1,0,1,[[256,1,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]],[23,2,2,2,4,[[746,1,1,2,3],[796,1,1,3,4]]]],[7785,13554,19001,20309]]],["again",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12692]]],["alter",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15360]]],["change",[2,2,[[19,1,1,0,1,[[651,1,1,0,1]]],[38,1,1,1,2,[[927,1,1,1,2]]]],[17100,23126]]],["changest",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13201]]],["diverse",[2,2,[[16,2,2,0,2,[[426,1,1,0,1],[428,1,1,1,2]]]],[12709,12755]]],["doubled",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1227]]],["pervert",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17289]]],["preferred",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12733]]],["repeateth",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16882]]],["returneth",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17152]]],["struck",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8564]]],["thyself",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9220]]],["time",[3,2,[[8,1,1,0,1,[[261,1,1,0,1]]],[10,2,1,1,2,[[308,2,1,1,2]]]],[7913,9375]]]]},{"k":"H8139","v":[["sleep",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21923]]]]},{"k":"H8140","v":[["*",[7,7,[[14,5,5,0,5,[[406,1,1,0,1],[407,2,2,1,3],[408,2,2,3,5]]],[26,2,2,5,7,[[854,1,1,5,6],[856,1,1,6,7]]]],[12134,12145,12147,12154,12166,21905,21934]]],["year",[5,5,[[14,4,4,0,4,[[406,1,1,0,1],[407,1,1,1,2],[408,2,2,2,4]]],[26,1,1,4,5,[[856,1,1,4,5]]]],[12134,12147,12154,12166,21934]]],["years",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[854,1,1,1,2]]]],[12145,21905]]]]},{"k":"H8141","v":[["*",[812,647,[[0,121,103,0,103,[[0,1,1,0,1],[4,28,28,1,29],[5,1,1,29,30],[6,2,2,30,32],[7,1,1,32,33],[8,2,2,33,35],[10,19,18,35,53],[11,1,1,53,54],[13,3,2,54,56],[14,1,1,56,57],[15,2,2,57,59],[16,6,5,59,64],[20,1,1,64,65],[22,2,1,65,66],[24,7,4,66,70],[25,2,2,70,72],[28,4,4,72,76],[30,4,2,76,78],[34,1,1,78,79],[36,1,1,79,80],[40,16,14,80,94],[44,3,2,94,96],[46,11,5,96,101],[49,2,2,101,103]]],[1,28,23,103,126,[[55,6,3,103,106],[56,2,1,106,107],[61,4,4,107,111],[65,1,1,111,112],[70,1,1,112,113],[72,5,5,113,118],[78,1,1,118,119],[79,3,2,119,121],[83,3,3,121,124],[87,1,1,124,125],[89,1,1,125,126]]],[2,57,41,126,167,[[98,1,1,126,127],[101,1,1,127,128],[103,1,1,128,129],[105,1,1,129,130],[108,3,3,130,133],[112,4,4,133,137],[114,35,22,137,159],[116,11,8,159,167]]],[3,92,82,167,249,[[117,16,16,167,183],[120,14,7,183,190],[122,3,2,190,192],[123,26,26,192,218],[124,2,2,218,220],[125,1,1,220,221],[126,1,1,221,222],[129,1,1,222,223],[130,5,3,223,226],[131,1,1,226,227],[142,2,2,227,229],[144,6,6,229,235],[145,10,10,235,245],[148,2,2,245,247],[149,2,2,247,249]]],[4,29,21,249,270,[[153,1,1,249,250],[154,2,2,250,252],[160,2,2,252,254],[163,2,1,254,255],[166,4,2,255,257],[167,8,5,257,262],[168,1,1,262,263],[176,1,1,263,264],[178,2,1,264,265],[181,1,1,265,266],[183,3,2,266,268],[184,1,1,268,269],[186,1,1,269,270]]],[5,6,5,270,275,[[191,2,2,270,272],[200,3,2,272,274],[210,1,1,274,275]]],[6,24,23,275,298,[[212,1,1,275,276],[213,4,4,276,280],[214,1,1,280,281],[215,1,1,281,282],[216,2,2,282,284],[218,1,1,284,285],[219,1,1,285,286],[220,4,3,286,289],[221,2,2,289,291],[222,4,4,291,295],[223,1,1,295,296],[225,1,1,296,297],[226,1,1,297,298]]],[7,1,1,298,299,[[232,1,1,298,299]]],[8,10,7,299,306,[[236,2,1,299,300],[239,2,2,300,302],[242,3,2,302,304],[248,2,1,304,305],[264,1,1,305,306]]],[9,20,15,306,321,[[268,3,2,306,308],[270,1,1,308,309],[271,4,2,309,311],[277,1,1,311,312],[279,2,2,312,314],[280,1,1,314,315],[281,1,1,315,316],[285,3,3,316,319],[287,3,1,319,320],[290,1,1,320,321]]],[10,53,38,321,359,[[292,4,2,321,323],[294,1,1,323,324],[295,2,1,324,325],[296,5,3,325,328],[297,1,1,328,329],[299,2,2,329,331],[300,4,3,331,334],[301,1,1,334,335],[304,4,3,335,338],[305,9,7,338,345],[306,9,5,345,350],[307,1,1,350,351],[308,1,1,351,352],[310,2,2,352,354],[312,7,5,354,359]]],[11,90,62,359,421,[[313,1,1,359,360],[315,2,1,360,361],[320,9,7,361,368],[321,1,1,368,369],[322,1,1,369,370],[323,3,3,370,373],[324,3,2,373,375],[325,5,3,375,378],[326,7,5,378,383],[327,15,10,383,393],[328,3,2,393,395],[329,6,4,395,399],[330,9,5,399,404],[331,3,1,404,405],[332,1,1,405,406],[333,4,2,406,408],[334,3,2,408,410],[335,4,3,410,413],[336,5,4,413,417],[337,5,4,417,421]]],[12,13,11,421,432,[[339,1,1,421,422],[340,2,1,422,423],[357,1,1,423,424],[358,1,1,424,425],[360,3,3,425,428],[363,1,1,428,429],[364,2,2,429,431],[366,2,1,431,432]]],[13,78,57,432,489,[[369,1,1,432,433],[374,2,2,433,435],[375,5,4,435,439],[377,2,1,439,440],[378,3,2,440,442],[379,2,2,442,444],[380,2,2,444,446],[381,2,2,446,448],[382,3,3,448,451],[383,1,1,451,452],[384,1,1,452,453],[386,2,1,453,454],[387,3,2,454,456],[388,3,2,456,458],[389,1,1,458,459],[390,6,4,459,463],[391,4,3,463,466],[392,3,2,466,468],[393,6,3,468,471],[394,2,1,471,472],[395,3,2,472,474],[397,2,2,474,476],[399,4,2,476,478],[400,5,3,478,481],[401,1,1,481,482],[402,9,7,482,489]]],[14,5,4,489,493,[[403,1,1,489,490],[405,2,1,490,491],[409,2,2,491,493]]],[15,14,10,493,503,[[413,1,1,493,494],[414,1,1,494,495],[417,3,1,495,496],[421,2,2,496,498],[422,6,4,498,502],[425,1,1,502,503]]],[16,7,5,503,508,[[426,1,1,503,504],[427,1,1,504,505],[428,1,1,505,506],[434,4,2,506,508]]],[17,8,8,508,516,[[438,1,1,508,509],[445,1,1,509,510],[450,1,1,510,511],[451,1,1,511,512],[467,1,1,512,513],[471,2,2,513,515],[477,1,1,515,516]]],[18,15,13,516,529,[[508,1,1,516,517],[538,1,1,517,518],[542,1,1,518,519],[554,2,2,519,521],[555,1,1,521,522],[567,6,4,522,526],[572,1,1,526,527],[579,2,2,527,529]]],[19,5,5,529,534,[[630,1,1,529,530],[631,1,1,530,531],[632,1,1,531,532],[636,1,1,532,533],[637,1,1,533,534]]],[20,5,4,534,538,[[664,3,2,534,536],[669,1,1,536,537],[670,1,1,537,538]]],[22,27,20,538,558,[[684,1,1,538,539],[685,1,1,539,540],[692,1,1,540,541],[694,2,1,541,542],[698,2,2,542,544],[699,2,1,544,545],[701,3,2,545,547],[707,2,1,547,548],[710,1,1,548,549],[712,1,1,549,550],[714,1,1,550,551],[715,3,1,551,552],[716,3,3,552,555],[739,1,1,555,556],[741,1,1,556,557],[743,2,1,557,558]]],[23,42,34,558,592,[[745,2,2,558,560],[755,1,1,560,561],[761,1,1,561,562],[767,1,1,562,563],[769,6,4,563,567],[772,6,5,567,572],[773,1,1,572,573],[776,2,1,573,574],[778,2,1,574,575],[780,2,2,575,577],[783,2,2,577,579],[789,1,1,579,580],[790,1,1,580,581],[792,1,1,581,582],[795,3,2,582,584],[796,10,8,584,592]]],[25,28,25,592,617,[[802,2,2,592,594],[805,3,2,594,596],[809,1,1,596,597],[821,1,1,597,598],[823,1,1,598,599],[825,1,1,599,600],[827,1,1,600,601],[830,5,5,601,606],[831,1,1,606,607],[832,1,1,607,608],[833,2,2,608,610],[834,1,1,610,611],[839,2,2,611,613],[840,1,1,613,614],[841,3,1,614,615],[847,2,2,615,617]]],[26,14,12,617,629,[[850,3,3,617,620],[851,1,1,620,621],[857,1,1,621,622],[858,4,2,622,624],[859,1,1,624,625],[860,4,4,625,629]]],[28,2,2,629,631,[[877,2,2,629,631]]],[29,3,3,631,634,[[879,1,1,631,632],[880,1,1,632,633],[883,1,1,633,634]]],[32,1,1,634,635,[[898,1,1,634,635]]],[34,2,1,635,636,[[905,2,1,635,636]]],[36,3,3,636,639,[[909,2,2,636,638],[910,1,1,638,639]]],[37,8,7,639,646,[[911,3,3,639,642],[917,3,3,642,645],[924,2,1,645,646]]],[38,1,1,646,647,[[927,1,1,646,647]]]],[13,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,135,136,137,140,165,170,196,233,234,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,298,302,340,341,373,384,397,398,414,418,421,422,518,572,665,675,678,684,704,726,813,815,822,825,911,914,1039,1085,1196,1221,1222,1224,1225,1229,1230,1231,1241,1242,1243,1245,1248,1249,1364,1369,1428,1429,1437,1438,1448,1528,1532,1671,1673,1675,1692,1818,1821,1856,1857,1982,2079,2154,2158,2160,2161,2173,2374,2392,2396,2518,2519,2520,2659,2724,2956,3050,3121,3235,3304,3305,3306,3414,3420,3421,3443,3472,3473,3474,3477,3479,3480,3482,3484,3485,3489,3490,3491,3496,3497,3498,3499,3509,3519,3520,3521,3522,3523,3573,3575,3576,3577,3587,3588,3593,3594,3605,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3746,3766,3773,3778,3782,3786,3790,3835,3837,3865,3867,3871,3873,3877,3879,3883,3885,3889,3891,3895,3897,3901,3903,3907,3909,3913,3915,3919,3921,3925,3927,3931,3933,3937,3938,3963,3964,3966,3999,4097,4137,4141,4142,4180,4491,4493,4580,4586,4588,4591,4596,4604,4610,4616,4621,4625,4628,4631,4634,4637,4640,4644,4729,4731,4798,4799,4895,4945,4952,5139,5141,5220,5312,5318,5320,5328,5331,5337,5339,5358,5530,5578,5684,5730,5738,5765,5846,5940,5946,6194,6197,6505,6553,6576,6579,6582,6598,6602,6654,6655,6679,6747,6776,6813,6814,6819,6855,6869,6876,6878,6880,6883,6885,6949,6980,7131,7219,7312,7315,7354,7368,7486,7970,8059,8060,8124,8136,8137,8260,8340,8355,8384,8396,8543,8545,8546,8581,8705,8781,8809,8851,8889,8897,8933,8934,8935,9061,9076,9093,9101,9104,9150,9238,9239,9243,9250,9251,9258,9259,9274,9277,9282,9291,9293,9298,9306,9312,9318,9342,9430,9434,9481,9482,9521,9522,9531,9550,9577,9728,9729,9730,9743,9744,9752,9753,9785,9829,9832,9833,9850,9851,9856,9872,9881,9891,9897,9898,9913,9917,9919,9926,9927,9933,9938,9942,9948,9952,9955,9957,9958,9964,9965,9984,9987,9988,9989,10025,10026,10033,10034,10037,10090,10104,10120,10138,10146,10148,10188,10196,10201,10203,10210,10214,10220,10223,10224,10230,10249,10327,10365,10927,10946,10986,11007,11010,11108,11110,11132,11191,11231,11347,11359,11377,11385,11388,11394,11431,11439,11450,11454,11455,11476,11481,11500,11509,11510,11521,11522,11530,11544,11618,11629,11644,11646,11656,11657,11678,11682,11692,11700,11705,11709,11729,11733,11735,11756,11760,11763,11765,11792,11794,11870,11871,11909,11929,11934,11936,11941,11985,11995,11998,12002,12003,12004,12014,12015,12017,12105,12180,12181,12297,12308,12396,12532,12541,12580,12581,12583,12584,12677,12705,12740,12754,12855,12861,12910,13091,13223,13260,13635,13747,13762,13938,14341,14825,14871,15098,15103,15146,15382,15387,15388,15393,15464,15545,15548,16457,16500,16526,16649,16683,17420,17423,17521,17524,17770,17790,17956,17983,18030,18032,18051,18092,18094,18194,18269,18311,18331,18382,18395,18400,18405,18845,18870,18917,18948,18949,19249,19365,19496,19535,19537,19545,19546,19619,19621,19629,19634,19635,19645,19732,19815,19843,19851,19924,19925,20041,20047,20124,20258,20271,20277,20280,20281,20288,20304,20305,20306,20307,20465,20466,20534,20535,20605,20896,20980,21057,21101,21184,21194,21195,21196,21200,21224,21231,21249,21265,21301,21433,21442,21457,21478,21668,21672,21738,21742,21758,21759,21962,21989,21990,22016,22037,22042,22044,22049,22313,22336,22365,22389,22448,22654,22770,22841,22855,22865,22879,22885,22890,22963,22965,22967,23084,23124]]],["+",[31,26,[[0,4,4,0,4,[[24,1,1,0,1],[40,1,1,1,2],[46,2,2,2,4]]],[1,1,1,4,5,[[87,1,1,4,5]]],[2,7,6,5,11,[[114,3,2,5,7],[116,4,4,7,11]]],[3,2,1,11,12,[[130,2,1,11,12]]],[6,1,1,12,13,[[220,1,1,12,13]]],[9,3,3,13,16,[[279,1,1,13,14],[280,1,1,14,15],[285,1,1,15,16]]],[12,2,2,16,18,[[360,1,1,16,17],[364,1,1,17,18]]],[14,1,1,18,19,[[405,1,1,18,19]]],[15,1,1,19,20,[[417,1,1,19,20]]],[16,4,2,20,22,[[434,4,2,20,22]]],[18,1,1,22,23,[[567,1,1,22,23]]],[23,2,2,23,25,[[772,2,2,23,25]]],[25,2,1,25,26,[[805,2,1,25,26]]]],[665,1196,1428,1448,2659,3519,3522,3573,3575,3577,3587,4142,6819,8340,8384,8545,11010,11132,12105,12396,12855,12861,15388,19621,19629,20535]]],["long",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16457]]],["old",[1,1,[[5,1,1,0,1,[[210,1,1,0,1]]]],[6505]]],["year",[328,289,[[0,9,8,0,8,[[6,1,1,0,1],[7,1,1,1,2],[13,2,2,2,4],[16,1,1,4,5],[25,1,1,5,6],[46,3,2,6,8]]],[1,12,11,8,19,[[61,2,2,8,10],[72,4,4,10,14],[78,1,1,14,15],[79,2,1,15,16],[83,2,2,16,18],[89,1,1,18,19]]],[2,29,28,19,47,[[98,1,1,19,20],[101,1,1,20,21],[103,1,1,21,22],[105,1,1,22,23],[108,2,2,23,25],[112,4,4,25,29],[114,16,15,29,44],[116,3,3,44,47]]],[3,50,49,47,96,[[117,1,1,47,48],[122,3,2,48,50],[123,26,26,50,76],[125,1,1,76,77],[126,1,1,77,78],[131,1,1,78,79],[144,6,6,79,85],[145,10,10,85,95],[149,1,1,95,96]]],[4,16,11,96,107,[[153,1,1,96,97],[163,2,1,97,98],[166,3,2,98,100],[167,5,3,100,103],[168,1,1,103,104],[176,1,1,104,105],[178,2,1,105,106],[183,1,1,106,107]]],[5,1,1,107,108,[[191,1,1,107,108]]],[6,2,2,108,110,[[220,1,1,108,109],[221,1,1,109,110]]],[8,5,3,110,113,[[236,2,1,110,111],[242,2,1,111,112],[248,1,1,112,113]]],[9,3,2,113,115,[[277,1,1,113,114],[287,2,1,114,115]]],[10,28,25,115,140,[[294,1,1,115,116],[295,2,1,116,117],[296,4,3,117,120],[299,1,1,120,121],[300,3,2,121,123],[304,1,1,123,124],[305,5,5,124,129],[306,5,5,129,134],[308,1,1,134,135],[310,2,2,135,137],[312,3,3,137,140]]],[11,44,38,140,178,[[313,1,1,140,141],[315,1,1,141,142],[320,3,3,142,145],[321,1,1,145,146],[323,1,1,146,147],[324,2,2,147,149],[325,3,3,149,152],[326,2,2,152,154],[327,8,8,154,162],[328,1,1,162,163],[329,4,3,163,166],[330,6,4,166,170],[331,3,1,170,171],[334,1,1,171,172],[335,1,1,172,173],[336,1,1,173,174],[337,5,4,174,178]]],[12,3,3,178,181,[[357,1,1,178,179],[363,1,1,179,180],[364,1,1,180,181]]],[13,27,23,181,204,[[369,1,1,181,182],[374,1,1,182,183],[375,3,2,183,185],[378,1,1,185,186],[379,1,1,186,187],[381,2,2,187,189],[382,3,3,189,192],[383,1,1,192,193],[388,1,1,193,194],[389,1,1,194,195],[390,3,2,195,197],[393,2,1,197,198],[395,1,1,198,199],[400,3,2,199,201],[401,1,1,201,202],[402,2,2,202,204]]],[14,4,4,204,208,[[403,1,1,204,205],[405,1,1,205,206],[409,2,2,206,208]]],[15,9,7,208,215,[[413,1,1,208,209],[414,1,1,209,210],[417,1,1,210,211],[422,5,3,211,214],[425,1,1,214,215]]],[16,3,3,215,218,[[426,1,1,215,216],[427,1,1,216,217],[428,1,1,217,218]]],[17,1,1,218,219,[[438,1,1,218,219]]],[18,1,1,219,220,[[542,1,1,219,220]]],[22,13,10,220,230,[[684,1,1,220,221],[692,1,1,221,222],[698,1,1,222,223],[699,1,1,223,224],[707,2,1,224,225],[712,1,1,225,226],[714,1,1,226,227],[715,3,1,227,228],[739,1,1,228,229],[741,1,1,229,230]]],[23,33,27,230,257,[[745,2,2,230,232],[755,1,1,232,233],[761,1,1,233,234],[767,1,1,234,235],[769,4,2,235,237],[772,4,3,237,240],[776,2,1,240,241],[780,2,2,241,243],[783,2,2,243,245],[789,1,1,245,246],[790,1,1,246,247],[792,1,1,247,248],[795,3,2,248,250],[796,8,7,250,257]]],[25,18,16,257,273,[[802,2,2,257,259],[809,1,1,259,260],[821,1,1,260,261],[825,1,1,261,262],[827,1,1,262,263],[830,2,2,263,265],[831,1,1,265,266],[832,1,1,266,267],[833,2,2,267,269],[834,1,1,269,270],[841,3,1,270,271],[847,2,2,271,273]]],[26,8,8,273,281,[[850,2,2,273,275],[851,1,1,275,276],[857,1,1,276,277],[858,2,2,277,279],[859,1,1,279,280],[860,1,1,280,281]]],[32,1,1,281,282,[[898,1,1,281,282]]],[36,3,3,282,285,[[909,2,2,282,284],[910,1,1,284,285]]],[37,5,4,285,289,[[911,2,2,285,287],[917,1,1,287,288],[924,2,1,288,289]]]],[170,196,340,341,418,704,1437,1438,1818,1821,2158,2160,2161,2173,2374,2392,2519,2520,2724,2956,3050,3121,3235,3305,3306,3414,3420,3421,3443,3473,3474,3479,3480,3482,3489,3490,3491,3497,3498,3499,3509,3519,3521,3523,3588,3593,3594,3605,3835,3837,3865,3867,3871,3873,3877,3879,3883,3885,3889,3891,3895,3897,3901,3903,3907,3909,3913,3915,3919,3921,3925,3927,3931,3933,3937,3938,3966,3999,4180,4580,4586,4588,4591,4596,4604,4610,4616,4621,4625,4628,4631,4634,4637,4640,4644,4798,4895,5220,5312,5318,5328,5331,5339,5358,5530,5578,5738,5946,6819,6869,7219,7368,7486,8260,8581,8851,8889,8897,8933,8934,9076,9093,9104,9243,9250,9258,9274,9277,9282,9291,9293,9298,9306,9312,9342,9430,9434,9482,9521,9531,9550,9577,9743,9752,9753,9785,9833,9851,9856,9872,9881,9891,9897,9919,9926,9933,9938,9942,9948,9952,9955,9957,9964,9984,9987,9989,10025,10033,10034,10037,10090,10148,10188,10214,10223,10224,10230,10249,10927,11108,11110,11231,11359,11377,11388,11439,11454,11500,11509,11510,11521,11522,11530,11646,11657,11682,11700,11760,11794,11936,11941,11985,12003,12015,12017,12105,12180,12181,12297,12308,12396,12580,12583,12584,12677,12705,12740,12754,12910,14871,17770,17956,18030,18051,18194,18311,18331,18382,18845,18870,18948,18949,19249,19365,19496,19535,19537,19619,19634,19635,19732,19843,19851,19924,19925,20041,20047,20124,20258,20271,20280,20281,20288,20304,20305,20306,20307,20465,20466,20605,20896,21057,21101,21184,21200,21224,21231,21249,21265,21301,21478,21668,21672,21738,21758,21759,21962,21989,21990,22016,22037,22654,22841,22855,22865,22879,22885,22963,23084]]],["year's",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2518]]],["yearly",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12581]]],["years",[447,368,[[0,108,94,0,94,[[0,1,1,0,1],[4,28,28,1,29],[5,1,1,29,30],[6,1,1,30,31],[8,2,2,31,33],[10,19,18,33,51],[11,1,1,51,52],[13,1,1,52,53],[14,1,1,53,54],[15,2,2,54,56],[16,5,4,56,60],[20,1,1,60,61],[22,2,1,61,62],[24,6,4,62,66],[25,1,1,66,67],[28,4,4,67,71],[30,4,2,71,73],[34,1,1,73,74],[36,1,1,74,75],[40,15,13,75,88],[44,3,2,88,90],[46,6,2,90,92],[49,2,2,92,94]]],[1,14,10,94,104,[[55,6,3,94,97],[56,2,1,97,98],[61,2,2,98,100],[65,1,1,100,101],[70,1,1,101,102],[72,1,1,102,103],[79,1,1,103,104]]],[2,21,14,104,118,[[108,1,1,104,105],[114,16,9,105,114],[116,4,4,114,118]]],[3,40,33,118,151,[[117,15,15,118,133],[120,14,7,133,140],[124,2,2,140,142],[129,1,1,142,143],[130,3,3,143,146],[142,2,2,146,148],[148,2,2,148,150],[149,1,1,150,151]]],[4,13,13,151,164,[[154,2,2,151,153],[160,2,2,153,155],[166,1,1,155,156],[167,3,3,156,159],[181,1,1,159,160],[183,2,2,160,162],[184,1,1,162,163],[186,1,1,163,164]]],[5,4,3,164,167,[[191,1,1,164,165],[200,3,2,165,167]]],[6,21,21,167,188,[[212,1,1,167,168],[213,4,4,168,172],[214,1,1,172,173],[215,1,1,173,174],[216,2,2,174,176],[218,1,1,176,177],[219,1,1,177,178],[220,2,2,178,180],[221,1,1,180,181],[222,4,4,181,185],[223,1,1,185,186],[225,1,1,186,187],[226,1,1,187,188]]],[7,1,1,188,189,[[232,1,1,188,189]]],[8,5,5,189,194,[[239,2,2,189,191],[242,1,1,191,192],[248,1,1,192,193],[264,1,1,193,194]]],[9,14,11,194,205,[[268,3,2,194,196],[270,1,1,196,197],[271,4,2,197,199],[279,1,1,199,200],[281,1,1,200,201],[285,2,2,201,203],[287,1,1,203,204],[290,1,1,204,205]]],[10,25,20,205,225,[[292,4,2,205,207],[296,1,1,207,208],[297,1,1,208,209],[299,1,1,209,210],[300,1,1,210,211],[301,1,1,211,212],[304,3,2,212,214],[305,4,4,214,218],[306,4,3,218,221],[307,1,1,221,222],[312,4,3,222,225]]],[11,45,34,225,259,[[315,1,1,225,226],[320,5,4,226,230],[322,1,1,230,231],[323,2,2,231,233],[324,1,1,233,234],[325,2,2,234,236],[326,5,4,236,240],[327,7,5,240,245],[328,2,1,245,246],[329,2,2,246,248],[330,3,2,248,250],[332,1,1,250,251],[333,4,2,251,253],[334,2,1,253,254],[335,3,2,254,256],[336,4,3,256,259]]],[12,7,5,259,264,[[339,1,1,259,260],[340,2,1,260,261],[360,2,2,261,263],[366,2,1,263,264]]],[13,51,35,264,299,[[374,1,1,264,265],[375,2,2,265,267],[377,2,1,267,268],[378,2,1,268,269],[379,1,1,269,270],[380,2,2,270,272],[384,1,1,272,273],[386,2,1,273,274],[387,3,2,274,276],[388,2,2,276,278],[390,3,2,278,280],[391,4,3,280,283],[392,3,2,283,285],[393,4,2,285,287],[394,2,1,287,288],[395,2,1,288,289],[397,2,2,289,291],[399,4,2,291,293],[400,2,1,293,294],[402,7,5,294,299]]],[15,3,3,299,302,[[417,1,1,299,300],[421,2,2,300,302]]],[17,7,7,302,309,[[445,1,1,302,303],[450,1,1,303,304],[451,1,1,304,305],[467,1,1,305,306],[471,2,2,306,308],[477,1,1,308,309]]],[18,13,12,309,321,[[508,1,1,309,310],[538,1,1,310,311],[554,2,2,311,313],[555,1,1,313,314],[567,5,4,314,318],[572,1,1,318,319],[579,2,2,319,321]]],[19,4,4,321,325,[[631,1,1,321,322],[632,1,1,322,323],[636,1,1,323,324],[637,1,1,324,325]]],[20,5,4,325,329,[[664,3,2,325,327],[669,1,1,327,328],[670,1,1,328,329]]],[22,14,11,329,340,[[685,1,1,329,330],[694,2,1,330,331],[698,1,1,331,332],[699,1,1,332,333],[701,3,2,333,335],[710,1,1,335,336],[716,3,3,336,339],[743,2,1,339,340]]],[23,7,5,340,345,[[769,2,2,340,342],[773,1,1,342,343],[778,2,1,343,344],[796,2,1,344,345]]],[25,8,8,345,353,[[805,1,1,345,346],[823,1,1,346,347],[830,3,3,347,350],[839,2,2,350,352],[840,1,1,352,353]]],[26,6,5,353,358,[[850,1,1,353,354],[858,2,1,354,355],[860,3,3,355,358]]],[28,2,2,358,360,[[877,2,2,358,360]]],[29,3,3,360,363,[[879,1,1,360,361],[880,1,1,361,362],[883,1,1,362,363]]],[34,2,1,363,364,[[905,2,1,363,364]]],[37,3,3,364,367,[[911,1,1,364,365],[917,2,2,365,367]]],[38,1,1,367,368,[[927,1,1,367,368]]]],[13,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,135,136,137,140,165,233,234,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,298,302,340,373,384,397,398,414,421,422,518,572,665,675,678,684,726,813,815,822,825,911,914,1039,1085,1221,1222,1224,1225,1229,1230,1231,1241,1242,1243,1245,1248,1249,1364,1369,1429,1448,1528,1532,1671,1673,1675,1692,1856,1857,1982,2079,2154,2396,3304,3472,3477,3484,3485,3490,3496,3519,3520,3521,3573,3575,3576,3588,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3746,3766,3773,3778,3782,3786,3790,3963,3964,4097,4137,4141,4142,4491,4493,4729,4731,4799,4945,4952,5139,5141,5318,5320,5331,5337,5684,5730,5738,5765,5846,5940,6194,6197,6553,6576,6579,6582,6598,6602,6654,6655,6679,6747,6776,6813,6814,6855,6876,6878,6880,6883,6885,6949,6980,7131,7312,7315,7354,7486,7970,8059,8060,8124,8136,8137,8355,8396,8543,8546,8581,8705,8781,8809,8934,8935,9061,9101,9150,9238,9239,9251,9259,9274,9282,9291,9306,9312,9318,9481,9522,9531,9577,9728,9729,9744,9753,9829,9832,9850,9851,9872,9881,9898,9913,9917,9919,9927,9942,9948,9952,9958,9965,9984,9988,10026,10034,10104,10120,10138,10146,10196,10201,10203,10210,10220,10327,10365,10986,11007,11191,11347,11385,11394,11431,11450,11455,11476,11481,11544,11618,11629,11644,11646,11656,11678,11692,11705,11709,11729,11733,11735,11756,11763,11765,11792,11870,11871,11909,11929,11934,11995,11998,12002,12004,12014,12396,12532,12541,13091,13223,13260,13635,13747,13762,13938,14341,14825,15098,15103,15146,15382,15387,15388,15393,15464,15545,15548,16500,16526,16649,16683,17420,17423,17521,17524,17790,17983,18032,18051,18092,18094,18269,18395,18400,18405,18917,19545,19546,19645,19815,20277,20534,20980,21194,21195,21196,21433,21442,21457,21742,21990,22042,22044,22049,22313,22336,22365,22389,22448,22770,22890,22965,22967,23124]]],["years'",[2,2,[[11,1,1,0,1,[[320,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]]],[9730,10946]]]]},{"k":"H8142","v":[["*",[23,23,[[0,2,2,0,2,[[27,1,1,0,1],[30,1,1,1,2]]],[6,2,2,2,4,[[226,2,2,2,4]]],[16,1,1,4,5,[[431,1,1,4,5]]],[17,1,1,5,6,[[449,1,1,5,6]]],[18,3,3,6,9,[[553,1,1,6,7],[567,1,1,7,8],[604,1,1,8,9]]],[19,7,7,9,16,[[630,1,1,9,10],[631,1,1,10,11],[633,3,3,11,14],[647,1,1,14,15],[651,1,1,15,16]]],[20,2,2,16,18,[[663,1,1,16,17],[666,1,1,17,18]]],[23,3,3,18,21,[[775,1,1,18,19],[795,2,2,19,21]]],[26,1,1,21,22,[[851,1,1,21,22]]],[37,1,1,22,23,[[914,1,1,22,23]]]],[789,913,6963,6969,12794,13193,15086,15383,16123,16479,16506,16544,16549,16550,16967,17112,17409,17474,19717,20251,20269,21759,22923]]],["+",[6,6,[[0,1,1,0,1,[[27,1,1,0,1]]],[6,2,2,1,3,[[226,2,2,1,3]]],[17,1,1,3,4,[[449,1,1,3,4]]],[19,1,1,4,5,[[633,1,1,4,5]]],[37,1,1,5,6,[[914,1,1,5,6]]]],[789,6963,6969,13193,16549,22923]]],["sleep",[17,17,[[0,1,1,0,1,[[30,1,1,0,1]]],[16,1,1,1,2,[[431,1,1,1,2]]],[18,3,3,2,5,[[553,1,1,2,3],[567,1,1,3,4],[604,1,1,4,5]]],[19,6,6,5,11,[[630,1,1,5,6],[631,1,1,6,7],[633,2,2,7,9],[647,1,1,9,10],[651,1,1,10,11]]],[20,2,2,11,13,[[663,1,1,11,12],[666,1,1,12,13]]],[23,3,3,13,16,[[775,1,1,13,14],[795,2,2,14,16]]],[26,1,1,16,17,[[851,1,1,16,17]]]],[913,12794,15086,15383,16123,16479,16506,16544,16550,16967,17112,17409,17474,19717,20251,20269,21759]]]]},{"k":"H8143","v":[["ivory",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9101,11385]]]]},{"k":"H8144","v":[["*",[42,42,[[0,2,2,0,2,[[37,2,2,0,2]]],[1,26,26,2,28,[[74,1,1,2,3],[75,3,3,3,6],[76,1,1,6,7],[77,5,5,7,12],[84,4,4,12,16],[85,3,3,16,19],[87,2,2,19,21],[88,7,7,21,28]]],[2,5,5,28,33,[[103,5,5,28,33]]],[3,2,2,33,35,[[120,1,1,33,34],[135,1,1,34,35]]],[5,2,2,35,37,[[188,2,2,35,37]]],[9,1,1,37,38,[[267,1,1,37,38]]],[19,1,1,38,39,[[658,1,1,38,39]]],[21,1,1,39,40,[[674,1,1,39,40]]],[22,1,1,40,41,[[679,1,1,40,41]]],[23,1,1,41,42,[[748,1,1,41,42]]]],[1147,1149,2199,2236,2266,2271,2288,2298,2299,2301,2308,2326,2537,2554,2556,2566,2574,2601,2603,2651,2656,2665,2666,2667,2669,2672,2688,2693,3115,3117,3160,3162,3163,3751,4295,5887,5890,8046,17305,17585,17672,19057]]],["+",[33,33,[[1,26,26,0,26,[[74,1,1,0,1],[75,3,3,1,4],[76,1,1,4,5],[77,5,5,5,10],[84,4,4,10,14],[85,3,3,14,17],[87,2,2,17,19],[88,7,7,19,26]]],[2,5,5,26,31,[[103,5,5,26,31]]],[3,2,2,31,33,[[120,1,1,31,32],[135,1,1,32,33]]]],[2199,2236,2266,2271,2288,2298,2299,2301,2308,2326,2537,2554,2556,2566,2574,2601,2603,2651,2656,2665,2666,2667,2669,2672,2688,2693,3115,3117,3160,3162,3163,3751,4295]]],["crimson",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19057]]],["scarlet",[6,6,[[5,2,2,0,2,[[188,2,2,0,2]]],[9,1,1,2,3,[[267,1,1,2,3]]],[19,1,1,3,4,[[658,1,1,3,4]]],[21,1,1,4,5,[[674,1,1,4,5]]],[22,1,1,5,6,[[679,1,1,5,6]]]],[5887,5890,8046,17305,17585,17672]]],["thread",[2,2,[[0,2,2,0,2,[[37,2,2,0,2]]]],[1147,1149]]]]},{"k":"H8145","v":[["*",[156,151,[[0,13,13,0,13,[[0,1,1,0,1],[1,1,1,1,2],[3,1,1,2,3],[5,1,1,3,4],[6,1,1,4,5],[7,1,1,5,6],[21,1,1,6,7],[29,2,2,7,9],[31,1,1,9,10],[40,2,2,10,12],[46,1,1,12,13]]],[1,26,26,13,39,[[50,1,1,13,14],[51,1,1,14,15],[65,1,1,15,16],[74,2,2,16,18],[75,5,5,18,23],[76,1,1,23,24],[77,2,2,24,26],[78,3,3,26,29],[85,5,5,29,34],[86,2,2,34,36],[87,1,1,36,37],[88,1,1,37,38],[89,1,1,38,39]]],[2,8,8,39,47,[[94,1,1,39,40],[97,1,1,40,41],[102,6,6,41,47]]],[3,15,13,47,60,[[117,3,2,47,49],[118,1,1,49,50],[123,1,1,50,51],[124,1,1,51,52],[125,2,2,52,54],[126,3,2,54,56],[127,1,1,56,57],[144,2,2,57,59],[145,1,1,59,60]]],[5,4,4,60,64,[[191,1,1,60,61],[192,1,1,61,62],[196,1,1,62,63],[205,1,1,63,64]]],[6,5,5,64,69,[[216,3,3,64,67],[230,2,2,67,69]]],[7,1,1,69,70,[[232,1,1,69,70]]],[8,3,3,70,73,[[236,1,1,70,71],[255,2,2,71,73]]],[9,3,3,73,76,[[270,1,1,73,74],[280,1,1,74,75],[282,1,1,75,76]]],[10,14,13,76,89,[[296,7,6,76,82],[297,5,5,82,87],[299,1,1,87,88],[309,1,1,88,89]]],[11,4,4,89,93,[[321,1,1,89,90],[322,1,1,90,91],[331,1,1,91,92],[337,1,1,92,93]]],[12,18,18,93,111,[[339,1,1,93,94],[340,2,2,94,96],[344,1,1,96,97],[345,2,2,97,99],[349,1,1,99,100],[360,3,3,100,103],[361,2,2,103,105],[362,1,1,105,106],[363,3,3,106,109],[364,1,1,109,110],[366,1,1,110,111]]],[13,6,5,111,116,[[369,2,1,111,112],[393,1,1,112,113],[396,3,3,113,116]]],[14,2,1,116,117,[[405,2,1,116,117]]],[15,9,9,117,126,[[415,7,7,117,124],[420,1,1,124,125],[424,1,1,125,126]]],[16,4,4,126,130,[[427,2,2,126,128],[432,1,1,128,129],[434,1,1,129,130]]],[17,1,1,130,131,[[477,1,1,130,131]]],[20,3,3,131,134,[[662,3,3,131,134]]],[22,2,2,134,136,[[689,1,1,134,135],[715,1,1,135,136]]],[23,5,5,136,141,[[745,1,1,136,137],[757,1,1,137,138],[777,1,1,138,139],[785,1,1,139,140],[796,1,1,140,141]]],[25,3,3,141,144,[[805,1,1,141,142],[811,1,1,142,143],[844,1,1,143,144]]],[26,1,1,144,145,[[857,1,1,144,145]]],[31,1,1,145,146,[[891,1,1,145,146]]],[36,1,1,146,147,[[910,1,1,146,147]]],[37,3,3,147,150,[[914,1,1,147,148],[916,1,1,148,149],[921,1,1,149,150]]],[38,1,1,150,151,[[926,1,1,150,151]]]],[7,43,98,153,170,197,562,837,842,947,1200,1247,1438,1547,1567,1948,2207,2227,2239,2240,2245,2255,2262,2287,2303,2311,2355,2375,2377,2577,2578,2583,2591,2598,2607,2622,2648,2675,2724,2840,2939,3057,3058,3059,3085,3106,3110,3605,3622,3674,3868,3947,3966,3976,3994,3999,4050,4581,4585,4625,5936,5963,6096,6322,6679,6680,6682,7078,7079,7131,7214,7757,7764,8122,8385,8445,8897,8920,8921,8922,8923,8930,8949,8950,8951,8952,8954,9053,9394,9775,9799,10090,10239,10319,10362,10376,10550,10576,10614,10729,10994,11002,11003,11022,11038,11055,11079,11081,11088,11113,11186,11231,11760,11829,11840,11842,12105,12338,12346,12347,12348,12351,12354,12357,12506,12662,12738,12743,12809,12863,13936,17389,17391,17396,17895,18382,18959,19269,19776,19961,20298,20535,20647,21594,21964,22559,22875,22934,22949,23042,23116]]],["+",[3,3,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]]],[2227,2622,8949]]],["again",[7,7,[[2,2,2,0,2,[[102,2,2,0,2]]],[9,1,1,2,3,[[282,1,1,2,3]]],[25,1,1,3,4,[[805,1,1,3,4]]],[36,1,1,4,5,[[910,1,1,4,5]]],[37,1,1,5,6,[[914,1,1,5,6]]],[38,1,1,6,7,[[926,1,1,6,7]]]],[3058,3059,8445,20535,22875,22934,23116]]],["another",[7,7,[[3,1,1,0,1,[[124,1,1,0,1]]],[15,5,5,1,6,[[415,5,5,1,6]]],[20,1,1,6,7,[[662,1,1,6,7]]]],[3947,12346,12348,12351,12354,12357,17391]]],["more",[3,3,[[2,3,3,0,3,[[102,3,3,0,3]]]],[3057,3085,3106]]],["other",[35,34,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,12,12,1,13,[[50,1,1,1,2],[74,1,1,2,3],[75,1,1,3,4],[76,1,1,4,5],[77,1,1,5,6],[78,3,3,6,9],[85,2,2,9,11],[86,1,1,11,12],[87,1,1,12,13]]],[2,1,1,13,14,[[97,1,1,13,14]]],[3,3,3,14,17,[[127,1,1,14,15],[144,2,2,15,17]]],[7,1,1,17,18,[[232,1,1,17,18]]],[8,1,1,18,19,[[236,1,1,18,19]]],[9,1,1,19,20,[[270,1,1,19,20]]],[10,10,9,20,29,[[296,6,5,20,25],[297,4,4,25,29]]],[15,3,3,29,32,[[415,2,2,29,31],[424,1,1,31,32]]],[26,1,1,32,33,[[857,1,1,32,33]]],[37,1,1,33,34,[[921,1,1,33,34]]]],[98,1547,2207,2262,2287,2303,2355,2375,2377,2591,2598,2607,2648,2939,4050,4581,4585,7131,7214,8122,8920,8921,8922,8923,8930,8950,8951,8952,8954,12338,12347,12662,21964,23042]]],["second",[87,83,[[0,10,10,0,10,[[0,1,1,0,1],[1,1,1,1,2],[5,1,1,2,3],[6,1,1,3,4],[7,1,1,4,5],[29,2,2,5,7],[31,1,1,7,8],[40,1,1,8,9],[46,1,1,9,10]]],[1,12,12,10,22,[[51,1,1,10,11],[65,1,1,11,12],[75,4,4,12,16],[77,1,1,16,17],[85,3,3,17,20],[88,1,1,20,21],[89,1,1,21,22]]],[2,1,1,22,23,[[94,1,1,22,23]]],[3,10,8,23,31,[[117,3,2,23,25],[118,1,1,25,26],[123,1,1,26,27],[125,2,2,27,29],[126,2,1,29,30],[145,1,1,30,31]]],[5,4,4,31,35,[[191,1,1,31,32],[192,1,1,32,33],[196,1,1,33,34],[205,1,1,34,35]]],[6,5,5,35,40,[[216,3,3,35,38],[230,2,2,38,40]]],[8,2,2,40,42,[[255,2,2,40,42]]],[10,1,1,42,43,[[296,1,1,42,43]]],[11,3,3,43,46,[[321,1,1,43,44],[331,1,1,44,45],[337,1,1,45,46]]],[12,17,17,46,63,[[339,1,1,46,47],[340,2,2,47,49],[344,1,1,49,50],[345,2,2,50,52],[349,1,1,52,53],[360,3,3,53,56],[361,2,2,56,58],[362,1,1,58,59],[363,3,3,59,62],[364,1,1,62,63]]],[13,6,5,63,68,[[369,2,1,63,64],[393,1,1,64,65],[396,3,3,65,68]]],[14,2,1,68,69,[[405,2,1,68,69]]],[15,1,1,69,70,[[420,1,1,69,70]]],[16,3,3,70,73,[[427,1,1,70,71],[432,1,1,71,72],[434,1,1,72,73]]],[17,1,1,73,74,[[477,1,1,73,74]]],[20,2,2,74,76,[[662,2,2,74,76]]],[22,1,1,76,77,[[715,1,1,76,77]]],[23,3,3,77,80,[[777,1,1,77,78],[785,1,1,78,79],[796,1,1,79,80]]],[25,2,2,80,82,[[811,1,1,80,81],[844,1,1,81,82]]],[37,1,1,82,83,[[916,1,1,82,83]]]],[7,43,153,170,197,837,842,947,1247,1438,1567,1948,2239,2240,2245,2255,2311,2577,2578,2583,2675,2724,2840,3605,3622,3674,3868,3966,3976,3999,4625,5936,5963,6096,6322,6679,6680,6682,7078,7079,7757,7764,8897,9775,10090,10239,10319,10362,10376,10550,10576,10614,10729,10994,11002,11003,11022,11038,11055,11079,11081,11088,11113,11231,11760,11829,11840,11842,12105,12506,12738,12809,12863,13936,17389,17396,18382,19776,19961,20298,20647,21594,22949]]],["time",[14,14,[[0,2,2,0,2,[[21,1,1,0,1],[40,1,1,1,2]]],[2,1,1,2,3,[[102,1,1,2,3]]],[3,1,1,3,4,[[126,1,1,3,4]]],[9,1,1,4,5,[[280,1,1,4,5]]],[10,2,2,5,7,[[299,1,1,5,6],[309,1,1,6,7]]],[11,1,1,7,8,[[322,1,1,7,8]]],[12,1,1,8,9,[[366,1,1,8,9]]],[16,1,1,9,10,[[427,1,1,9,10]]],[22,1,1,10,11,[[689,1,1,10,11]]],[23,2,2,11,13,[[745,1,1,11,12],[757,1,1,12,13]]],[31,1,1,13,14,[[891,1,1,13,14]]]],[562,1200,3110,3994,8385,9053,9394,9799,11186,12743,17895,18959,19269,22559]]]]},{"k":"H8146","v":[["hated",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5462]]]]},{"k":"H8147","v":[["*",[766,645,[[0,63,58,0,58,[[0,1,1,0,1],[1,1,1,1,2],[2,1,1,2,3],[3,1,1,3,4],[4,5,5,4,9],[5,2,2,9,11],[6,5,3,11,14],[8,2,2,14,16],[9,1,1,16,17],[10,1,1,17,18],[13,1,1,18,19],[16,1,1,19,20],[18,7,6,20,26],[20,2,2,26,28],[21,3,3,28,31],[23,1,1,31,32],[24,3,2,32,34],[26,2,2,34,36],[28,1,1,36,37],[30,3,3,37,40],[31,4,3,40,43],[32,1,1,43,44],[33,1,1,44,45],[34,1,1,45,46],[39,2,2,46,48],[40,1,1,48,49],[41,3,3,49,52],[43,1,1,52,53],[45,1,1,53,54],[47,3,3,54,57],[48,1,1,57,58]]],[1,112,66,58,124,[[51,1,1,58,59],[53,1,1,59,60],[61,3,3,60,63],[64,1,1,63,64],[65,1,1,64,65],[67,2,2,65,67],[71,5,4,67,71],[73,2,1,71,72],[74,9,5,72,77],[75,12,6,77,83],[76,1,1,83,84],[77,21,11,84,95],[78,5,5,95,100],[79,3,1,100,101],[80,1,1,101,102],[81,2,1,102,103],[83,4,3,103,106],[85,11,6,106,112],[86,11,5,112,117],[88,16,7,117,124]]],[2,41,33,124,157,[[92,3,3,124,127],[93,1,1,127,128],[94,4,2,128,130],[96,1,1,130,131],[97,3,3,131,134],[101,2,1,134,135],[103,5,4,135,139],[104,4,2,139,141],[105,5,5,141,146],[109,4,4,146,150],[112,6,5,150,155],[113,3,2,155,157]]],[3,87,77,157,234,[[117,3,3,157,160],[118,2,2,160,162],[119,2,2,162,164],[122,2,1,164,165],[123,37,31,165,196],[126,1,1,196,197],[127,1,1,197,198],[128,1,1,198,199],[129,1,1,199,200],[131,1,1,200,201],[133,2,2,201,203],[138,1,1,203,204],[141,1,1,204,205],[142,3,3,205,208],[144,9,8,208,216],[145,12,10,216,226],[147,5,5,226,231],[149,1,1,231,232],[150,1,1,232,233],[151,1,1,233,234]]],[4,25,22,234,256,[[153,1,1,234,235],[155,2,2,235,237],[156,2,2,237,239],[157,1,1,239,240],[161,6,4,240,244],[162,3,2,244,246],[166,1,1,246,247],[169,1,1,247,248],[171,2,2,248,250],[173,2,2,250,252],[174,2,2,252,254],[175,1,1,254,255],[184,1,1,255,256]]],[5,26,26,256,282,[[188,4,4,256,260],[189,1,1,260,261],[190,6,6,261,267],[192,1,1,267,268],[194,1,1,268,269],[195,1,1,269,270],[200,2,2,270,272],[201,1,1,272,273],[204,1,1,273,274],[205,2,2,274,276],[207,5,5,276,281],[210,1,1,281,282]]],[6,20,20,282,302,[[213,1,1,282,283],[217,2,2,283,285],[218,1,1,285,286],[219,1,1,286,287],[220,1,1,287,288],[221,3,3,288,291],[222,1,1,291,292],[225,2,2,292,294],[226,3,3,294,297],[229,3,3,297,300],[230,1,1,300,301],[231,1,1,301,302]]],[7,9,8,302,310,[[232,8,7,302,309],[235,1,1,309,310]]],[8,30,29,310,339,[[236,2,2,310,312],[237,3,2,312,314],[238,1,1,314,315],[239,3,3,315,318],[240,1,1,318,319],[241,2,2,319,321],[244,1,1,321,322],[245,2,2,322,324],[246,1,1,324,325],[248,1,1,325,326],[249,2,2,326,328],[253,1,1,328,329],[255,2,2,329,331],[258,1,1,331,332],[260,2,2,332,334],[262,1,1,334,335],[263,1,1,335,336],[265,3,3,336,339]]],[9,21,19,339,358,[[267,1,1,339,340],[268,4,3,340,343],[270,1,1,343,344],[274,2,2,344,346],[275,1,1,346,347],[276,1,1,347,348],[278,1,1,348,349],[279,1,1,349,350],[280,2,1,350,351],[281,2,2,351,353],[283,2,2,353,355],[284,1,1,355,356],[287,1,1,356,357],[289,1,1,357,358]]],[10,57,48,358,406,[[292,3,3,358,361],[293,3,3,361,364],[294,2,2,364,366],[295,2,2,366,368],[296,6,4,368,372],[297,15,9,372,381],[298,2,2,381,383],[299,1,1,383,384],[300,3,3,384,387],[301,2,2,387,389],[302,1,1,389,390],[304,1,1,390,391],[305,1,1,391,392],[306,2,2,392,394],[307,1,1,394,395],[308,3,3,395,398],[309,2,1,398,399],[310,4,4,399,403],[311,2,2,403,405],[312,1,1,405,406]]],[11,42,37,406,443,[[313,2,2,406,408],[314,8,7,408,415],[315,1,1,415,416],[316,2,2,416,418],[317,5,2,418,420],[318,1,1,420,421],[319,1,1,421,422],[320,3,3,422,425],[321,1,1,425,426],[322,3,3,426,429],[323,1,1,429,430],[326,1,1,430,431],[327,3,3,431,434],[329,2,2,434,436],[333,5,4,436,440],[335,1,1,440,441],[337,2,2,441,443]]],[12,45,41,443,484,[[338,1,1,443,444],[341,1,1,444,445],[343,1,1,445,446],[344,2,2,446,448],[346,1,1,448,449],[348,2,2,449,451],[349,1,1,451,452],[352,1,1,452,453],[355,1,1,453,454],[356,1,1,454,455],[361,2,2,455,457],[362,25,23,457,480],[363,4,3,480,483],[364,2,1,483,484]]],[13,30,24,484,508,[[367,1,1,484,485],[369,2,2,485,487],[370,10,5,487,492],[371,1,1,492,493],[373,1,1,493,494],[375,3,3,494,497],[379,1,1,497,498],[387,3,3,498,501],[388,1,1,501,502],[390,1,1,502,503],[392,1,1,503,504],[399,4,3,504,507],[400,1,1,507,508]]],[14,18,17,508,525,[[404,12,12,508,520],[410,5,4,520,524],[412,1,1,524,525]]],[15,23,22,525,547,[[417,2,1,525,526],[418,1,1,526,527],[419,13,13,527,540],[423,3,3,540,543],[424,2,2,543,545],[425,2,2,545,547]]],[16,10,9,547,556,[[427,3,3,547,550],[428,3,2,550,552],[431,1,1,552,553],[433,1,1,553,554],[434,2,2,554,556]]],[17,5,5,556,561,[[444,1,1,556,557],[448,1,1,557,558],[468,1,1,558,559],[475,1,1,559,560],[477,1,1,560,561]]],[18,1,1,561,562,[[539,1,1,561,562]]],[19,8,8,562,570,[[644,1,1,562,563],[647,2,2,563,565],[651,1,1,565,566],[654,1,1,566,567],[656,1,1,567,568],[657,2,2,568,570]]],[20,5,5,570,575,[[662,4,4,570,574],[669,1,1,574,575]]],[21,4,2,575,577,[[674,2,1,575,576],[677,2,1,576,577]]],[22,11,9,577,586,[[679,1,1,577,578],[684,3,1,578,579],[685,3,3,579,582],[686,1,1,582,583],[695,1,1,583,584],[725,1,1,584,585],[729,1,1,585,586]]],[23,11,10,586,596,[[746,1,1,586,587],[747,1,1,587,588],[768,1,1,588,589],[777,1,1,589,590],[778,1,1,590,591],[790,1,1,591,592],[796,5,4,592,596]]],[25,36,24,596,620,[[802,4,2,596,598],[816,1,1,598,599],[822,3,2,599,601],[824,2,2,601,603],[830,1,1,603,604],[833,3,2,604,606],[834,1,1,606,607],[836,2,1,607,608],[838,2,1,608,609],[841,5,3,609,612],[842,8,5,612,617],[844,3,2,617,619],[848,1,1,619,620]]],[26,6,6,620,626,[[851,1,1,620,621],[857,1,1,621,622],[858,2,2,622,624],[860,1,1,624,625],[861,1,1,625,626]]],[27,1,1,626,627,[[871,1,1,626,627]]],[29,3,3,627,630,[[881,2,2,627,629],[882,1,1,629,630]]],[31,1,1,630,631,[[892,1,1,630,631]]],[36,3,3,631,634,[[909,2,2,631,633],[910,1,1,633,634]]],[37,12,11,634,645,[[911,2,2,634,636],[914,5,4,636,640],[915,1,1,640,641],[916,2,2,641,643],[921,1,1,643,644],[923,1,1,644,645]]]],[15,55,62,98,113,123,125,131,133,156,157,161,168,174,227,228,259,286,340,417,458,465,472,473,487,493,540,544,550,553,555,613,674,681,736,772,811,906,910,914,935,938,950,961,1005,1033,1174,1177,1245,1265,1284,1289,1351,1413,1452,1456,1464,1501,1567,1610,1823,1838,1839,1947,1969,2002,2005,2117,2120,2122,2124,2181,2207,2213,2214,2217,2230,2252,2254,2256,2258,2259,2260,2279,2300,2302,2304,2305,2307,2314,2316,2317,2318,2319,2320,2337,2339,2349,2358,2374,2386,2438,2453,2497,2500,2525,2588,2590,2592,2594,2595,2596,2607,2611,2612,2625,2631,2668,2678,2680,2681,2682,2683,2684,2782,2788,2793,2804,2837,2841,2883,2919,2933,2942,3052,3115,3121,3133,3160,3182,3197,3202,3206,3208,3209,3222,3329,3330,3331,3336,3415,3419,3420,3421,3422,3451,3452,3639,3643,3648,3679,3684,3731,3735,3833,3853,3857,3863,3867,3869,3873,3875,3879,3881,3885,3887,3891,3893,3897,3899,3903,3905,3909,3911,3915,3917,3921,3923,3927,3928,3929,3933,3934,3936,3937,3939,3990,4050,4064,4098,4159,4246,4250,4397,4479,4503,4523,4526,4580,4586,4588,4589,4596,4597,4604,4605,4611,4617,4621,4622,4625,4628,4631,4634,4637,4640,4669,4697,4699,4702,4704,4769,4831,4851,4915,4983,4996,5017,5051,5075,5167,5168,5172,5174,5187,5189,5296,5370,5421,5423,5462,5464,5492,5494,5518,5788,5870,5873,5879,5892,5905,5912,5913,5914,5918,5919,5930,5971,6027,6047,6190,6191,6262,6317,6336,6351,6388,6397,6406,6408,6421,6488,6584,6697,6719,6731,6798,6814,6866,6867,6868,6875,6933,6942,6952,6977,6978,7030,7032,7053,7075,7112,7128,7129,7130,7132,7134,7135,7146,7201,7214,7215,7261,7274,7287,7301,7308,7314,7323,7338,7341,7417,7420,7422,7456,7486,7519,7557,7697,7741,7772,7828,7879,7904,7933,7950,7983,7990,7996,8023,8051,8059,8064,8122,8211,8214,8240,8246,8287,8323,8362,8416,8425,8450,8467,8502,8588,8673,8775,8802,8809,8832,8834,8841,8851,8870,8890,8892,8919,8921,8928,8930,8949,8950,8952,8954,8958,8959,8975,8976,8978,8994,9048,9061,9098,9099,9105,9137,9138,9179,9238,9274,9306,9312,9329,9362,9364,9372,9406,9409,9423,9424,9435,9461,9464,9511,9547,9550,9557,9558,9559,9560,9562,9563,9575,9577,9604,9636,9669,9670,9684,9721,9744,9752,9753,9788,9797,9801,9807,9836,9897,9927,9952,9957,9984,9999,10120,10124,10131,10138,10177,10238,10249,10271,10390,10517,10537,10542,10637,10694,10695,10748,10801,10895,10914,11027,11032,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11085,11094,11095,11124,11208,11239,11244,11249,11250,11258,11259,11261,11278,11329,11382,11383,11389,11474,11629,11643,11644,11646,11680,11735,11909,11913,11929,11936,12030,12031,12033,12037,12039,12045,12051,12054,12056,12064,12085,12087,12225,12228,12232,12236,12265,12396,12416,12428,12429,12430,12437,12444,12448,12451,12453,12460,12480,12482,12491,12492,12600,12601,12607,12655,12664,12677,12691,12736,12745,12747,12754,12760,12795,12829,12835,12861,13084,13173,13664,13869,13929,14838,16888,16964,16966,17101,17172,17237,17258,17266,17384,17390,17392,17393,17519,17587,17630,17685,17771,17786,17798,17803,17821,17989,18608,18692,18978,19016,19525,19799,19819,20057,20296,20297,20305,20307,20475,20487,20758,20963,20965,21009,21020,21184,21249,21265,21301,21354,21419,21486,21516,21517,21529,21544,21548,21549,21550,21586,21588,21692,21759,21968,22013,22014,22063,22086,22235,22398,22407,22418,22579,22841,22855,22865,22879,22885,22925,22933,22934,22936,22945,22948,22960,23035,23067]]],["+",[146,130,[[0,9,9,0,9,[[4,1,1,0,1],[13,1,1,1,2],[16,1,1,2,3],[24,1,1,3,4],[34,1,1,4,5],[41,2,2,5,7],[47,1,1,7,8],[48,1,1,8,9]]],[1,11,8,9,17,[[64,1,1,9,10],[73,2,1,10,11],[74,1,1,11,12],[77,2,1,12,13],[81,1,1,13,14],[86,2,2,14,16],[88,2,1,16,17]]],[2,1,1,17,18,[[113,1,1,17,18]]],[3,18,13,18,31,[[117,1,1,18,19],[123,10,5,19,24],[133,2,2,24,26],[145,1,1,26,27],[147,3,3,27,30],[149,1,1,30,31]]],[4,3,3,31,34,[[153,1,1,31,32],[174,2,2,32,34]]],[5,12,12,34,46,[[189,1,1,34,35],[190,6,6,35,41],[194,1,1,41,42],[204,1,1,42,43],[205,1,1,43,44],[207,2,2,44,46]]],[6,3,3,46,49,[[226,1,1,46,47],[229,1,1,47,48],[231,1,1,48,49]]],[7,1,1,49,50,[[232,1,1,49,50]]],[9,4,3,50,53,[[268,2,1,50,51],[276,1,1,51,52],[283,1,1,52,53]]],[10,12,11,53,64,[[294,2,2,53,55],[297,3,3,55,58],[300,2,2,58,60],[301,1,1,60,61],[306,1,1,61,62],[308,1,1,62,63],[309,2,1,63,64]]],[11,5,5,64,69,[[315,1,1,64,65],[320,1,1,65,66],[329,1,1,66,67],[333,1,1,67,68],[337,1,1,68,69]]],[12,30,28,69,97,[[343,1,1,69,70],[346,1,1,70,71],[352,1,1,71,72],[361,1,1,72,73],[362,24,23,73,96],[364,2,1,96,97]]],[13,7,7,97,104,[[367,1,1,97,98],[370,2,2,98,100],[375,2,2,100,102],[399,1,1,102,103],[400,1,1,103,104]]],[14,6,5,104,109,[[404,2,2,104,106],[410,4,3,106,109]]],[15,3,3,109,112,[[417,1,1,109,110],[419,2,2,110,112]]],[16,6,5,112,117,[[427,1,1,112,113],[428,3,2,113,115],[433,1,1,115,116],[434,1,1,116,117]]],[19,1,1,117,118,[[654,1,1,117,118]]],[20,1,1,118,119,[[662,1,1,118,119]]],[22,1,1,119,120,[[685,1,1,119,120]]],[23,3,3,120,123,[[796,3,3,120,123]]],[25,8,6,123,129,[[830,1,1,123,124],[833,3,2,124,126],[834,1,1,126,127],[844,2,1,127,128],[848,1,1,128,129]]],[31,1,1,129,130,[[892,1,1,129,130]]]],[113,340,417,674,1033,1265,1284,1464,1501,1947,2181,2213,2314,2453,2611,2612,2678,3451,3648,3853,3928,3934,3936,3937,4246,4250,4625,4669,4697,4702,4769,4915,5492,5494,5905,5912,5913,5914,5918,5919,5930,6027,6317,6336,6388,6421,6977,7053,7112,7132,8064,8246,8450,8851,8870,8949,8959,8978,9099,9105,9138,9306,9372,9406,9577,9752,9984,10120,10249,10517,10637,10801,11027,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11124,11208,11250,11261,11383,11389,11909,11936,12033,12045,12225,12232,12236,12396,12444,12491,12736,12754,12760,12829,12835,17172,17384,17786,20296,20297,20307,21184,21249,21265,21301,21588,21692,22579]]],["Two",[7,7,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,1,1,1,2,[[75,1,1,1,2]]],[3,1,1,2,3,[[123,1,1,2,3]]],[11,1,1,3,4,[[320,1,1,3,4]]],[13,1,1,4,5,[[370,1,1,4,5]]],[19,1,1,5,6,[[657,1,1,5,6]]],[20,1,1,6,7,[[662,1,1,6,7]]]],[681,2252,3857,9753,11249,17258,17390]]],["both",[68,67,[[0,11,11,0,11,[[1,1,1,0,1],[2,1,1,1,2],[8,1,1,2,3],[18,1,1,3,4],[20,2,2,4,6],[21,2,2,6,8],[26,1,1,8,9],[30,1,1,9,10],[39,1,1,10,11]]],[1,4,3,11,14,[[71,1,1,11,12],[75,1,1,12,13],[85,2,1,13,14]]],[2,5,5,14,19,[[105,1,1,14,15],[109,4,4,15,19]]],[3,14,14,19,33,[[123,12,12,19,31],[128,1,1,31,32],[141,1,1,32,33]]],[4,2,2,33,35,[[171,1,1,33,34],[175,1,1,34,35]]],[6,2,2,35,37,[[229,2,2,35,37]]],[7,1,1,37,38,[[232,1,1,37,38]]],[8,8,8,38,46,[[237,1,1,38,39],[238,1,1,39,40],[240,1,1,40,41],[244,1,1,41,42],[249,1,1,42,43],[255,2,2,43,45],[260,1,1,45,46]]],[9,2,2,46,48,[[275,1,1,46,47],[283,1,1,47,48]]],[10,1,1,48,49,[[296,1,1,48,49]]],[11,2,2,49,51,[[314,1,1,49,50],[333,1,1,50,51]]],[16,1,1,51,52,[[427,1,1,51,52]]],[17,1,1,52,53,[[444,1,1,52,53]]],[19,5,5,53,58,[[644,1,1,53,54],[647,2,2,54,56],[651,1,1,56,57],[656,1,1,57,58]]],[20,1,1,58,59,[[669,1,1,58,59]]],[22,3,3,59,62,[[679,1,1,59,60],[685,1,1,60,61],[686,1,1,61,62]]],[23,1,1,62,63,[[790,1,1,62,63]]],[25,2,2,63,65,[[816,1,1,63,64],[824,1,1,64,65]]],[26,1,1,65,66,[[860,1,1,65,66]]],[37,1,1,66,67,[[916,1,1,66,67]]]],[55,62,228,493,540,544,553,555,772,910,1177,2124,2259,2595,3222,3329,3330,3331,3336,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,4064,4479,5423,5518,7030,7032,7132,7274,7287,7323,7417,7519,7741,7772,7904,8240,8467,8921,9562,10131,12747,13084,16888,16964,16966,17101,17237,17519,17685,17798,17821,20057,20758,21020,22063,22960]]],["couple",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8323]]],["double",[5,5,[[1,3,3,0,3,[[71,3,3,0,3]]],[4,1,1,3,4,[[173,1,1,3,4]]],[11,1,1,4,5,[[314,1,1,4,5]]]],[2117,2120,2122,5464,9560]]],["parties",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2122]]],["second",[10,10,[[10,1,1,0,1,[[305,1,1,0,1]]],[11,3,3,1,4,[[313,1,1,1,2],[326,1,1,2,3],[327,1,1,3,4]]],[26,1,1,4,5,[[851,1,1,4,5]]],[36,3,3,5,8,[[909,2,2,5,7],[910,1,1,7,8]]],[37,2,2,8,10,[[911,2,2,8,10]]]],[9274,9550,9897,9957,21759,22841,22855,22865,22879,22885]]],["twain",[7,5,[[8,1,1,0,1,[[253,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]],[22,3,1,2,3,[[684,3,1,2,3]]],[23,1,1,3,4,[[778,1,1,3,4]]],[25,1,1,4,5,[[822,1,1,4,5]]]],[7697,9636,17771,19819,20963]]],["twenty",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12492]]],["twice",[5,5,[[11,1,1,0,1,[[318,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]],[17,2,2,2,4,[[468,1,1,2,3],[475,1,1,3,4]]],[18,1,1,4,5,[[539,1,1,4,5]]]],[9684,12691,13664,13869,14838]]],["two",[515,429,[[0,42,38,0,38,[[0,1,1,0,1],[3,1,1,1,2],[4,4,4,2,6],[5,2,2,6,8],[6,5,3,8,11],[8,1,1,11,12],[9,1,1,12,13],[10,1,1,13,14],[18,6,5,14,19],[21,1,1,19,20],[23,1,1,20,21],[24,1,1,21,22],[26,1,1,22,23],[28,1,1,23,24],[30,2,2,24,26],[31,4,3,26,29],[32,1,1,29,30],[33,1,1,30,31],[39,1,1,31,32],[40,1,1,32,33],[41,1,1,33,34],[43,1,1,34,35],[45,1,1,35,36],[47,2,2,36,38]]],[1,92,55,38,93,[[51,1,1,38,39],[53,1,1,39,40],[61,3,3,40,43],[65,1,1,43,44],[67,2,2,44,46],[74,8,5,46,51],[75,10,5,51,56],[76,1,1,56,57],[77,19,10,57,67],[78,5,5,67,72],[79,3,1,72,73],[80,1,1,73,74],[81,1,1,74,75],[83,4,3,75,78],[85,9,5,78,83],[86,9,4,83,87],[88,14,6,87,93]]],[2,35,28,93,121,[[92,3,3,93,96],[93,1,1,96,97],[94,4,2,97,99],[96,1,1,99,100],[97,3,3,100,103],[101,2,1,103,104],[103,5,4,104,108],[104,4,2,108,110],[105,4,4,110,114],[112,6,5,114,119],[113,2,2,119,121]]],[3,54,51,121,172,[[117,2,2,121,123],[118,2,2,123,125],[119,2,2,125,127],[122,2,1,127,128],[123,14,14,128,142],[126,1,1,142,143],[127,1,1,143,144],[129,1,1,144,145],[131,1,1,145,146],[138,1,1,146,147],[142,3,3,147,150],[144,9,8,150,158],[145,11,10,158,168],[147,2,2,168,170],[150,1,1,170,171],[151,1,1,171,172]]],[4,19,16,172,188,[[155,2,2,172,174],[156,2,2,174,176],[157,1,1,176,177],[161,6,4,177,181],[162,3,2,181,183],[166,1,1,183,184],[169,1,1,184,185],[171,1,1,185,186],[173,1,1,186,187],[184,1,1,187,188]]],[5,14,14,188,202,[[188,4,4,188,192],[192,1,1,192,193],[195,1,1,193,194],[200,2,2,194,196],[201,1,1,196,197],[205,1,1,197,198],[207,3,3,198,201],[210,1,1,201,202]]],[6,15,15,202,217,[[213,1,1,202,203],[217,2,2,203,205],[218,1,1,205,206],[219,1,1,206,207],[220,1,1,207,208],[221,3,3,208,211],[222,1,1,211,212],[225,2,2,212,214],[226,2,2,214,216],[230,1,1,216,217]]],[7,7,7,217,224,[[232,6,6,217,223],[235,1,1,223,224]]],[8,21,21,224,245,[[236,2,2,224,226],[237,2,2,226,228],[239,3,3,228,231],[241,2,2,231,233],[245,2,2,233,235],[246,1,1,235,236],[248,1,1,236,237],[249,1,1,237,238],[258,1,1,238,239],[260,1,1,239,240],[262,1,1,240,241],[263,1,1,241,242],[265,3,3,242,245]]],[9,14,13,245,258,[[267,1,1,245,246],[268,2,2,246,248],[270,1,1,248,249],[274,2,2,249,251],[278,1,1,251,252],[280,2,1,252,253],[281,2,2,253,255],[284,1,1,255,256],[287,1,1,256,257],[289,1,1,257,258]]],[10,43,36,258,294,[[292,3,3,258,261],[293,3,3,261,264],[295,2,2,264,266],[296,5,3,266,269],[297,12,7,269,276],[298,2,2,276,278],[299,1,1,278,279],[300,1,1,279,280],[301,1,1,280,281],[302,1,1,281,282],[304,1,1,282,283],[306,1,1,283,284],[307,1,1,284,285],[308,2,2,285,287],[310,4,4,287,291],[311,2,2,291,293],[312,1,1,293,294]]],[11,28,23,294,317,[[313,1,1,294,295],[314,6,5,295,300],[316,1,1,300,301],[317,5,2,301,303],[319,1,1,303,304],[320,1,1,304,305],[321,1,1,305,306],[322,3,3,306,309],[323,1,1,309,310],[327,2,2,310,312],[329,1,1,312,313],[333,3,2,313,315],[335,1,1,315,316],[337,1,1,316,317]]],[12,15,14,317,331,[[338,1,1,317,318],[341,1,1,318,319],[344,2,2,319,321],[348,2,2,321,323],[349,1,1,323,324],[355,1,1,324,325],[356,1,1,325,326],[361,1,1,326,327],[362,1,1,327,328],[363,4,3,328,331]]],[13,22,16,331,347,[[369,2,2,331,333],[370,7,2,333,335],[371,1,1,335,336],[373,1,1,336,337],[375,1,1,337,338],[379,1,1,338,339],[387,3,3,339,342],[388,1,1,342,343],[390,1,1,343,344],[392,1,1,344,345],[399,3,2,345,347]]],[14,12,12,347,359,[[404,10,10,347,357],[410,1,1,357,358],[412,1,1,358,359]]],[15,18,18,359,377,[[417,1,1,359,360],[418,1,1,360,361],[419,10,10,361,371],[423,3,3,371,374],[424,2,2,374,376],[425,1,1,376,377]]],[16,3,3,377,380,[[427,1,1,377,378],[431,1,1,378,379],[434,1,1,379,380]]],[17,2,2,380,382,[[448,1,1,380,381],[477,1,1,381,382]]],[19,1,1,382,383,[[657,1,1,382,383]]],[20,2,2,383,385,[[662,2,2,383,385]]],[21,4,2,385,387,[[674,2,1,385,386],[677,2,1,386,387]]],[22,4,4,387,391,[[685,1,1,387,388],[695,1,1,388,389],[725,1,1,389,390],[729,1,1,390,391]]],[23,6,6,391,397,[[746,1,1,391,392],[747,1,1,392,393],[768,1,1,393,394],[777,1,1,394,395],[796,2,2,395,397]]],[25,25,16,397,413,[[802,4,2,397,399],[822,2,2,399,401],[824,1,1,401,402],[836,2,1,402,403],[838,2,1,403,404],[841,5,3,404,407],[842,8,5,407,412],[844,1,1,412,413]]],[26,4,4,413,417,[[857,1,1,413,414],[858,2,2,414,416],[861,1,1,416,417]]],[27,1,1,417,418,[[871,1,1,417,418]]],[29,3,3,418,421,[[881,2,2,418,420],[882,1,1,420,421]]],[37,9,8,421,429,[[914,5,4,421,425],[915,1,1,425,426],[916,1,1,426,427],[921,1,1,427,428],[923,1,1,428,429]]]],[15,98,123,125,131,133,156,157,161,168,174,227,259,286,458,465,472,473,487,550,613,681,736,811,906,914,935,938,950,961,1005,1174,1245,1289,1351,1413,1452,1456,1567,1610,1823,1838,1839,1969,2002,2005,2207,2213,2214,2217,2230,2254,2256,2258,2259,2260,2279,2300,2302,2304,2305,2307,2316,2317,2318,2319,2320,2337,2339,2349,2358,2374,2386,2438,2453,2497,2500,2525,2588,2590,2592,2594,2596,2607,2611,2625,2631,2668,2680,2681,2682,2683,2684,2782,2788,2793,2804,2837,2841,2883,2919,2933,2942,3052,3115,3121,3133,3160,3182,3197,3202,3206,3208,3209,3415,3419,3420,3421,3422,3451,3452,3639,3643,3679,3684,3731,3735,3833,3853,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3939,3990,4050,4098,4159,4397,4503,4523,4526,4580,4586,4588,4589,4596,4597,4604,4605,4611,4617,4621,4622,4625,4628,4631,4634,4637,4640,4699,4704,4831,4851,4983,4996,5017,5051,5075,5167,5168,5172,5174,5187,5189,5296,5370,5421,5462,5788,5870,5873,5879,5892,5971,6047,6190,6191,6262,6351,6397,6406,6408,6488,6584,6697,6719,6731,6798,6814,6866,6867,6868,6875,6933,6942,6952,6978,7075,7128,7129,7130,7134,7135,7146,7201,7214,7215,7261,7274,7301,7308,7314,7338,7341,7420,7422,7456,7486,7557,7828,7879,7933,7950,7983,7990,7996,8023,8051,8059,8122,8211,8214,8287,8362,8416,8425,8502,8588,8673,8775,8802,8809,8832,8834,8841,8890,8892,8919,8928,8930,8949,8950,8952,8954,8958,8975,8976,8994,9048,9061,9098,9137,9179,9238,9312,9329,9362,9364,9409,9423,9424,9435,9461,9464,9511,9547,9557,9558,9559,9563,9575,9604,9669,9670,9721,9744,9788,9797,9801,9807,9836,9927,9952,9999,10124,10138,10177,10238,10271,10390,10537,10542,10694,10695,10748,10895,10914,11032,11075,11085,11094,11095,11239,11244,11258,11259,11278,11329,11382,11474,11629,11643,11644,11646,11680,11735,11913,11929,12030,12031,12037,12039,12051,12054,12056,12064,12085,12087,12228,12265,12396,12416,12428,12429,12430,12437,12448,12451,12453,12460,12480,12482,12600,12601,12607,12655,12664,12677,12745,12795,12861,13173,13929,17266,17392,17393,17587,17630,17803,17989,18608,18692,18978,19016,19525,19799,20296,20305,20475,20487,20963,20965,21009,21354,21419,21486,21516,21517,21529,21544,21548,21549,21550,21586,21968,22013,22014,22086,22235,22398,22407,22418,22925,22933,22934,22936,22945,22948,23035,23067]]]]},{"k":"H8148","v":[["*",[4,4,[[4,1,1,0,1,[[180,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[13,1,1,2,3,[[373,1,1,2,3]]],[23,1,1,3,4,[[768,1,1,3,4]]]],[5648,9058,11344,19533]]],["byword",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[13,1,1,2,3,[[373,1,1,2,3]]]],[5648,9058,11344]]],["taunt",[1,1,[[23,1,1,0,1,[[768,1,1,0,1]]]],[19533]]]]},{"k":"H8149","v":[["*",[4,4,[[4,1,1,0,1,[[155,1,1,0,1]]],[12,1,1,1,2,[[342,1,1,1,2]]],[21,1,1,2,3,[[674,1,1,2,3]]],[25,1,1,3,4,[[828,1,1,3,4]]]],[4984,10451,17590,21126]]],["+",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21126]]],["Senir",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10451]]],["Shenir",[2,2,[[4,1,1,0,1,[[155,1,1,0,1]]],[21,1,1,1,2,[[674,1,1,1,2]]]],[4984,17590]]]]},{"k":"H8150","v":[["*",[9,9,[[4,2,2,0,2,[[158,1,1,0,1],[184,1,1,1,2]]],[18,5,5,2,7,[[522,1,1,2,3],[541,1,1,3,4],[550,1,1,4,5],[597,1,1,5,6],[617,1,1,6,7]]],[19,1,1,7,8,[[652,1,1,7,8]]],[22,1,1,8,9,[[683,1,1,8,9]]]],[5093,5799,14602,14853,15041,16078,16266,17131,17767]]],["Sharp",[1,1,[[18,1,1,0,1,[[597,1,1,0,1]]]],[16078]]],["diligently",[1,1,[[4,1,1,0,1,[[158,1,1,0,1]]]],[5093]]],["pricked",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15041]]],["sharp",[3,3,[[18,1,1,0,1,[[522,1,1,0,1]]],[19,1,1,1,2,[[652,1,1,1,2]]],[22,1,1,2,3,[[683,1,1,2,3]]]],[14602,17131,17767]]],["sharpened",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16266]]],["whet",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,1,1,1,2,[[541,1,1,1,2]]]],[5799,14853]]]]},{"k":"H8151","v":[["up",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9387]]]]},{"k":"H8152","v":[["*",[8,8,[[0,4,4,0,4,[[9,1,1,0,1],[10,1,1,1,2],[13,2,2,2,4]]],[5,1,1,4,5,[[193,1,1,4,5]]],[22,1,1,5,6,[[689,1,1,5,6]]],[26,1,1,6,7,[[850,1,1,6,7]]],[37,1,1,7,8,[[915,1,1,7,8]]]],[244,268,337,345,5997,17895,21739,22947]]],["+",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17895]]],["Babylonish",[1,1,[[5,1,1,0,1,[[193,1,1,0,1]]]],[5997]]],["Shinar",[6,6,[[0,4,4,0,4,[[9,1,1,0,1],[10,1,1,1,2],[13,2,2,2,4]]],[26,1,1,4,5,[[850,1,1,4,5]]],[37,1,1,5,6,[[915,1,1,5,6]]]],[244,268,337,345,21739,22947]]]]},{"k":"H8153","v":[["sleep",[1,1,[[18,1,1,0,1,[[609,1,1,0,1]]]],[16155]]]]},{"k":"H8154","v":[["*",[11,11,[[6,2,2,0,2,[[212,2,2,0,2]]],[8,2,2,2,4,[[249,1,1,2,3],[258,1,1,3,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[18,1,1,5,6,[[521,1,1,5,6]]],[22,3,3,6,9,[[688,1,1,6,7],[695,1,1,7,8],[720,1,1,8,9]]],[23,1,1,9,10,[[794,1,1,9,10]]],[27,1,1,10,11,[[874,1,1,10,11]]]],[6559,6561,7556,7811,10003,14581,17863,17997,18502,20177,22281]]],["+",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7811]]],["destroyers",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20177]]],["robbed",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17863]]],["spoil",[3,3,[[18,1,1,0,1,[[521,1,1,0,1]]],[22,1,1,1,2,[[695,1,1,1,2]]],[27,1,1,2,3,[[874,1,1,2,3]]]],[14581,17997,22281]]],["spoiled",[3,3,[[6,1,1,0,1,[[212,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[22,1,1,2,3,[[720,1,1,2,3]]]],[6561,7556,18502]]],["spoilers",[2,2,[[6,1,1,0,1,[[212,1,1,0,1]]],[11,1,1,1,2,[[329,1,1,1,2]]]],[6559,10003]]]]},{"k":"H8155","v":[["*",[5,5,[[6,1,1,0,1,[[212,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[18,1,1,2,3,[[566,1,1,2,3]]],[22,1,1,3,4,[[691,1,1,3,4]]],[37,1,1,4,5,[[924,1,1,4,5]]]],[6559,7671,15367,17922,23070]]],["+",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7671]]],["rifled",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23070]]],["spoil",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15367]]],["spoiled",[2,2,[[6,1,1,0,1,[[212,1,1,0,1]]],[22,1,1,1,2,[[691,1,1,1,2]]]],[6559,17922]]]]},{"k":"H8156","v":[["*",[9,8,[[2,4,4,0,4,[[90,1,1,0,1],[100,3,3,1,4]]],[4,2,2,4,6,[[166,2,2,4,6]]],[6,2,1,6,7,[[224,2,1,6,7]]],[8,1,1,7,8,[[259,1,1,7,8]]]],[2762,3000,3004,3023,5296,5297,6915,7846]]],["+",[4,4,[[2,3,3,0,3,[[100,3,3,0,3]]],[8,1,1,3,4,[[259,1,1,3,4]]]],[3000,3004,3023,7846]]],["cleave",[1,1,[[2,1,1,0,1,[[90,1,1,0,1]]]],[2762]]],["cleaveth",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5296]]],["cloven",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5297]]],["rent",[2,1,[[6,2,1,0,1,[[224,2,1,0,1]]]],[6915]]]]},{"k":"H8157","v":[["*",[4,4,[[2,3,3,0,3,[[100,3,3,0,3]]],[4,1,1,3,4,[[166,1,1,3,4]]]],[3000,3004,3023,5296]]],["+",[3,3,[[2,3,3,0,3,[[100,3,3,0,3]]]],[3000,3004,3023]]],["cleft",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5296]]]]},{"k":"H8158","v":[["+",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7593]]]]},{"k":"H8159","v":[["*",[15,15,[[0,2,2,0,2,[[3,2,2,0,2]]],[1,1,1,2,3,[[54,1,1,2,3]]],[9,1,1,3,4,[[288,1,1,3,4]]],[17,2,2,4,6,[[442,1,1,4,5],[449,1,1,5,6]]],[18,2,2,6,8,[[516,1,1,6,7],[596,1,1,7,8]]],[22,7,7,8,15,[[695,2,2,8,10],[700,1,1,10,11],[709,1,1,11,12],[710,1,1,12,13],[719,2,2,13,15]]]],[83,84,1641,8644,13027,13187,14525,16015,17990,17991,18056,18251,18262,18461,18474]]],["+",[2,2,[[0,1,1,0,1,[[3,1,1,0,1]]],[18,1,1,1,2,[[516,1,1,1,2]]]],[84,14525]]],["Turn",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13187]]],["away",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18056]]],["depart",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13027]]],["dim",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18262]]],["dismayed",[2,2,[[22,2,2,0,2,[[719,2,2,0,2]]]],[18461,18474]]],["look",[3,3,[[22,3,3,0,3,[[695,2,2,0,2],[709,1,1,2,3]]]],[17990,17991,18251]]],["looked",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8644]]],["regard",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1641]]],["respect",[2,2,[[0,1,1,0,1,[[3,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[83,16015]]]]},{"k":"H8160","v":[["hour",[5,5,[[26,5,5,0,5,[[852,2,2,0,2],[853,2,2,2,4],[854,1,1,4,5]]]],[21813,21822,21856,21870,21879]]]]},{"k":"H8161","v":[["stamping",[1,1,[[23,1,1,0,1,[[791,1,1,0,1]]]],[20076]]]]},{"k":"H8162","v":[["*",[2,2,[[2,1,1,0,1,[[108,1,1,0,1]]],[4,1,1,1,2,[[174,1,1,1,2]]]],[3300,5481]]],["sorts",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5481]]],["woollen",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3300]]]]},{"k":"H8163","v":[["*",[59,57,[[0,3,3,0,3,[[26,2,2,0,2],[36,1,1,2,3]]],[2,21,19,3,22,[[93,2,2,3,5],[98,2,2,5,7],[99,1,1,7,8],[105,14,12,8,20],[106,1,1,20,21],[112,1,1,21,22]]],[3,27,27,22,49,[[123,13,13,22,35],[131,1,1,35,36],[144,3,3,36,39],[145,10,10,39,49]]],[13,2,2,49,51,[[377,1,1,49,50],[395,1,1,50,51]]],[22,2,2,51,53,[[691,1,1,51,52],[712,1,1,52,53]]],[25,3,3,53,56,[[844,2,2,53,55],[846,1,1,55,56]]],[26,1,1,56,57,[[857,1,1,56,57]]]],[738,750,1114,2818,2819,2956,2968,2993,3206,3208,3209,3210,3211,3216,3219,3221,3222,3223,3227,3228,3242,3421,3866,3872,3878,3884,3890,3896,3902,3908,3914,3920,3926,3932,3937,4177,4592,4599,4607,4613,4619,4624,4627,4630,4633,4636,4639,4642,4646,11429,11814,17927,18317,21594,21597,21653,21982]]],["devils",[2,2,[[2,1,1,0,1,[[106,1,1,0,1]]],[13,1,1,1,2,[[377,1,1,1,2]]]],[3242,11429]]],["goat",[21,19,[[2,14,12,0,12,[[93,1,1,0,1],[98,1,1,1,2],[99,1,1,2,3],[105,11,9,3,12]]],[3,6,6,12,18,[[144,1,1,12,13],[145,5,5,13,18]]],[25,1,1,18,19,[[844,1,1,18,19]]]],[2819,2968,2993,3210,3211,3216,3219,3221,3222,3223,3227,3228,4599,4630,4636,4639,4642,4646,21597]]],["goats",[3,3,[[2,2,2,0,2,[[105,2,2,0,2]]],[13,1,1,2,3,[[395,1,1,2,3]]]],[3208,3209,11814]]],["hairy",[2,2,[[0,2,2,0,2,[[26,2,2,0,2]]]],[738,750]]],["kid",[26,26,[[0,1,1,0,1,[[36,1,1,0,1]]],[2,3,3,1,4,[[93,1,1,1,2],[98,1,1,2,3],[112,1,1,3,4]]],[3,20,20,4,24,[[123,12,12,4,16],[131,1,1,16,17],[144,2,2,17,19],[145,5,5,19,24]]],[25,2,2,24,26,[[844,1,1,24,25],[846,1,1,25,26]]]],[1114,2818,2956,3421,3866,3872,3878,3884,3890,3896,3902,3908,3914,3920,3926,3932,4177,4592,4607,4613,4619,4624,4627,4633,21594,21653]]],["kids",[2,2,[[2,1,1,0,1,[[105,1,1,0,1]]],[3,1,1,1,2,[[123,1,1,1,2]]]],[3206,3937]]],["rough",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21982]]],["satyr",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18317]]],["satyrs",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17927]]]]},{"k":"H8164","v":[["rain",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5760]]]]},{"k":"H8165","v":[["*",[39,38,[[0,9,9,0,9,[[13,1,1,0,1],[31,1,1,1,2],[32,2,2,2,4],[35,5,5,4,9]]],[3,1,1,9,10,[[140,1,1,9,10]]],[4,10,10,10,20,[[153,2,2,10,12],[154,7,7,12,19],[185,1,1,19,20]]],[5,4,4,20,24,[[197,1,1,20,21],[198,1,1,21,22],[201,1,1,22,23],[210,1,1,23,24]]],[6,1,1,24,25,[[215,1,1,24,25]]],[12,2,2,25,27,[[338,1,1,25,26],[341,1,1,26,27]]],[13,6,5,27,32,[[386,4,3,27,30],[391,2,2,30,32]]],[22,1,1,32,33,[[699,1,1,32,33]]],[25,5,5,33,38,[[826,1,1,33,34],[836,4,4,34,38]]]],[342,931,974,976,1048,1049,1060,1061,1070,4464,4894,4936,4939,4942,4943,4946,4950,4960,4967,5812,6124,6137,6212,6480,6627,10290,10427,11597,11609,11610,11715,11718,18046,21091,21346,21347,21351,21359]]],["+",[3,3,[[4,1,1,0,1,[[185,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[22,1,1,2,3,[[699,1,1,2,3]]]],[5812,6627,18046]]],["Seir",[36,35,[[0,9,9,0,9,[[13,1,1,0,1],[31,1,1,1,2],[32,2,2,2,4],[35,5,5,4,9]]],[3,1,1,9,10,[[140,1,1,9,10]]],[4,9,9,10,19,[[153,2,2,10,12],[154,7,7,12,19]]],[5,4,4,19,23,[[197,1,1,19,20],[198,1,1,20,21],[201,1,1,21,22],[210,1,1,22,23]]],[12,2,2,23,25,[[338,1,1,23,24],[341,1,1,24,25]]],[13,6,5,25,30,[[386,4,3,25,28],[391,2,2,28,30]]],[25,5,5,30,35,[[826,1,1,30,31],[836,4,4,31,35]]]],[342,931,974,976,1048,1049,1060,1061,1070,4464,4894,4936,4939,4942,4943,4946,4950,4960,4967,6124,6137,6212,6480,10290,10427,11597,11609,11610,11715,11718,21091,21346,21347,21351,21359]]]]},{"k":"H8166","v":[["kid",[2,2,[[2,2,2,0,2,[[93,1,1,0,1],[94,1,1,1,2]]]],[2823,2836]]]]},{"k":"H8167","v":[["Seirath",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6594]]]]},{"k":"H8168","v":[["*",[3,3,[[10,1,1,0,1,[[310,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]],[25,1,1,2,3,[[814,1,1,2,3]]]],[9418,18432,20727]]],["hand",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18432]]],["handfuls",[2,2,[[10,1,1,0,1,[[310,1,1,0,1]]],[25,1,1,1,2,[[814,1,1,1,2]]]],[9418,20727]]]]},{"k":"H8169","v":[["*",[3,3,[[5,1,1,0,1,[[205,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]],[10,1,1,2,3,[[294,1,1,2,3]]]],[6363,6544,8853]]],["Shaalabbin",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6363]]],["Shaalbim",[2,2,[[6,1,1,0,1,[[211,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]]],[6544,8853]]]]},{"k":"H8170","v":[["Shaalbonite",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8685,10706]]]]},{"k":"H8171","v":[["Shalim",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7395]]]]},{"k":"H8172","v":[["*",[22,20,[[0,1,1,0,1,[[17,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[6,1,1,2,3,[[226,1,1,2,3]]],[9,1,1,3,4,[[267,1,1,3,4]]],[11,3,3,4,7,[[317,1,1,4,5],[319,2,2,5,7]]],[13,5,4,7,11,[[379,1,1,7,8],[380,1,1,8,9],[382,3,2,9,11]]],[17,2,2,11,13,[[443,1,1,11,12],[459,1,1,12,13]]],[19,1,1,13,14,[[630,1,1,13,14]]],[22,5,4,14,18,[[688,2,1,14,15],[708,1,1,15,16],[709,1,1,16,17],[728,1,1,17,18]]],[25,1,1,18,19,[[830,1,1,18,19]]],[32,1,1,19,20,[[895,1,1,19,20]]]],[428,4355,6975,8028,9665,9709,9724,11471,11486,11516,11517,13044,13459,16460,17870,18229,18251,18672,21190,22619]]],["lean",[4,4,[[6,1,1,0,1,[[226,1,1,0,1]]],[17,1,1,1,2,[[443,1,1,1,2]]],[19,1,1,2,3,[[630,1,1,2,3]]],[32,1,1,3,4,[[895,1,1,3,4]]]],[6975,13044,16460,22619]]],["leaned",[4,4,[[9,1,1,0,1,[[267,1,1,0,1]]],[11,2,2,1,3,[[319,2,2,1,3]]],[25,1,1,3,4,[[830,1,1,3,4]]]],[8028,9709,9724,21190]]],["leaneth",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9665]]],["lieth",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4355]]],["relied",[3,2,[[13,3,2,0,2,[[379,1,1,0,1],[382,2,1,1,2]]]],[11471,11516]]],["rely",[1,1,[[13,1,1,0,1,[[382,1,1,0,1]]]],[11517]]],["rest",[1,1,[[13,1,1,0,1,[[380,1,1,0,1]]]],[11486]]],["resteth",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13459]]],["stay",[5,4,[[22,5,4,0,4,[[688,2,1,0,1],[708,1,1,1,2],[709,1,1,2,3],[728,1,1,3,4]]]],[17870,18229,18251,18672]]],["yourselves",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[428]]]]},{"k":"H8173","v":[["*",[9,8,[[18,4,4,0,4,[[571,1,1,0,1],[596,3,3,1,4]]],[22,5,4,4,8,[[684,1,1,4,5],[689,1,1,5,6],[707,2,1,6,7],[744,1,1,7,8]]]],[15450,15914,15945,15968,17779,17892,18202,18934]]],["cry",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18202]]],["dandled",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18934]]],["delight",[2,2,[[18,2,2,0,2,[[571,1,1,0,1],[596,1,1,1,2]]]],[15450,15968]]],["myself",[2,2,[[18,2,2,0,2,[[596,2,2,0,2]]]],[15914,15945]]],["out",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18202]]],["play",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17892]]],["shut",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17779]]]]},{"k":"H8174","v":[["Shaaph",[2,2,[[12,2,2,0,2,[[339,2,2,0,2]]]],[10353,10355]]]]},{"k":"H8175","v":[["*",[8,8,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[462,1,1,1,2]]],[18,2,2,2,4,[[527,1,1,2,3],[535,1,1,3,4]]],[23,1,1,4,5,[[746,1,1,4,5]]],[25,2,2,5,7,[[828,1,1,5,6],[833,1,1,6,7]]],[26,1,1,7,8,[[860,1,1,7,8]]]],[5775,13502,14671,14788,18977,21156,21258,22076]]],["+",[3,3,[[25,2,2,0,2,[[828,1,1,0,1],[833,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[21156,21258,22076]]],["afraid",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18977]]],["feared",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5775]]],["hurleth",[1,1,[[17,1,1,0,1,[[462,1,1,0,1]]]],[13502]]],["tempestuous",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14671]]],["whirlwind",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14788]]]]},{"k":"H8176","v":[["thinketh",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17051]]]]},{"k":"H8177","v":[["*",[3,3,[[26,3,3,0,3,[[852,1,1,0,1],[853,1,1,1,2],[856,1,1,2,3]]]],[21834,21870,21942]]],["hair",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[856,1,1,1,2]]]],[21834,21942]]],["hairs",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21870]]]]},{"k":"H8178","v":[["*",[4,4,[[17,1,1,0,1,[[453,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]],[25,2,2,2,4,[[828,1,1,2,3],[833,1,1,3,4]]]],[13296,18166,21156,21258]]],["+",[2,2,[[25,2,2,0,2,[[828,1,1,0,1],[833,1,1,1,2]]]],[21156,21258]]],["affrighted",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13296]]],["storm",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18166]]]]},{"k":"H8179","v":[["*",[374,302,[[0,9,8,0,8,[[18,1,1,0,1],[21,1,1,1,2],[22,2,2,2,4],[23,1,1,4,5],[27,1,1,5,6],[33,3,2,6,8]]],[1,12,11,8,19,[[69,1,1,8,9],[76,1,1,9,10],[81,3,2,10,12],[84,1,1,12,13],[87,3,3,13,16],[88,1,1,16,17],[89,2,2,17,19]]],[3,1,1,19,20,[[120,1,1,19,20]]],[4,34,33,20,53,[[157,1,1,20,21],[158,1,1,21,22],[163,1,1,22,23],[164,5,5,23,28],[166,4,4,28,32],[167,2,2,32,34],[168,4,4,34,38],[169,3,3,38,41],[170,1,1,41,42],[173,1,1,42,43],[174,2,2,43,45],[175,1,1,45,46],[176,1,1,46,47],[177,1,1,47,48],[178,1,1,48,49],[180,4,3,49,52],[183,1,1,52,53]]],[5,5,5,53,58,[[188,2,2,53,55],[193,1,1,55,56],[194,1,1,56,57],[206,1,1,57,58]]],[6,9,9,58,67,[[215,2,2,58,60],[219,3,3,60,63],[226,2,2,63,65],[228,2,2,65,67]]],[7,4,4,67,71,[[234,1,1,67,68],[235,3,3,68,71]]],[8,4,4,71,75,[[239,1,1,71,72],[244,1,1,72,73],[252,1,1,73,74],[256,1,1,74,75]]],[9,12,10,75,85,[[269,1,1,75,76],[276,1,1,76,77],[277,1,1,77,78],[281,1,1,78,79],[284,4,3,79,82],[285,2,1,82,83],[289,2,2,83,85]]],[10,2,2,85,87,[[298,1,1,85,86],[312,1,1,86,87]]],[11,18,13,87,100,[[319,6,5,87,92],[321,1,1,92,93],[322,1,1,93,94],[323,3,2,94,96],[326,2,1,96,97],[327,1,1,97,98],[335,3,1,98,99],[337,1,1,99,100]]],[12,9,8,100,108,[[346,2,2,100,102],[348,2,2,102,104],[353,1,1,104,105],[359,1,1,105,106],[363,3,2,106,108]]],[13,19,15,108,123,[[372,1,1,108,109],[374,2,1,109,110],[384,1,1,110,111],[389,4,4,111,115],[390,1,1,115,116],[391,2,1,116,117],[392,2,1,117,118],[393,1,1,118,119],[397,1,1,119,120],[398,1,1,120,121],[399,1,1,121,122],[401,2,1,122,123]]],[15,41,31,123,154,[[413,1,1,123,124],[414,8,6,124,130],[415,12,11,130,141],[418,1,1,141,142],[419,1,1,142,143],[420,4,3,143,146],[423,1,1,146,147],[424,10,5,147,152],[425,3,2,152,154]]],[16,11,10,154,164,[[427,2,2,154,156],[428,2,2,156,158],[429,3,2,158,160],[430,2,2,160,162],[431,2,2,162,164]]],[17,5,4,164,168,[[440,1,1,164,165],[464,1,1,165,166],[466,1,1,166,167],[473,2,1,167,168]]],[18,13,13,168,181,[[486,2,2,168,170],[501,2,2,170,172],[546,1,1,172,173],[564,1,1,173,174],[577,1,1,174,175],[584,1,1,175,176],[595,2,2,176,178],[599,1,1,178,179],[604,1,1,179,180],[624,1,1,180,181]]],[19,7,7,181,188,[[628,1,1,181,182],[635,1,1,182,183],[641,1,1,183,184],[649,1,1,184,185],[651,1,1,185,186],[658,2,2,186,188]]],[21,1,1,188,189,[[677,1,1,188,189]]],[22,12,12,189,201,[[692,1,1,189,190],[700,1,1,190,191],[702,1,1,191,192],[704,1,1,192,193],[706,1,1,193,194],[707,1,1,194,195],[716,1,1,195,196],[723,1,1,196,197],[732,1,1,197,198],[738,2,2,198,200],[740,1,1,200,201]]],[23,28,25,201,226,[[745,1,1,201,202],[751,2,1,202,203],[758,1,1,203,204],[759,1,1,204,205],[761,8,6,205,211],[763,1,1,211,212],[764,1,1,212,213],[766,3,3,213,216],[770,1,1,216,217],[775,2,2,217,219],[780,1,1,219,220],[781,1,1,220,221],[782,1,1,221,222],[783,2,2,222,224],[795,1,1,224,225],[796,1,1,225,226]]],[24,4,4,226,230,[[797,1,1,226,227],[798,1,1,227,228],[800,1,1,228,229],[801,1,1,229,230]]],[25,99,59,230,289,[[809,3,3,230,233],[810,1,1,233,234],[811,1,1,234,235],[812,2,1,235,236],[822,2,2,236,238],[827,1,1,238,239],[841,43,28,239,267],[843,1,1,267,268],[844,3,2,268,270],[845,7,6,270,276],[846,1,1,276,277],[847,15,7,277,284],[848,2,1,284,285],[849,17,4,285,289]]],[29,3,3,289,292,[[883,3,3,289,292]]],[30,2,2,292,294,[[888,2,2,292,294]]],[32,3,3,294,297,[[893,2,2,294,296],[894,1,1,296,297]]],[33,2,2,297,299,[[901,1,1,297,298],[902,1,1,298,299]]],[35,1,1,299,300,[[906,1,1,299,300]]],[37,4,2,300,302,[[918,1,1,300,301],[924,3,1,301,302]]]],[458,564,581,589,651,790,1000,1004,2061,2288,2464,2465,2548,2648,2651,2664,2704,2715,2740,3769,5067,5095,5228,5252,5255,5257,5258,5261,5311,5317,5318,5319,5326,5341,5347,5353,5356,5360,5366,5369,5372,5390,5466,5485,5494,5516,5539,5554,5578,5663,5666,5668,5740,5874,5876,5981,6031,6376,6631,6634,6789,6794,6798,6951,6952,7009,7010,7183,7191,7200,7201,7315,7409,7670,7785,8108,8248,8282,8391,8482,8502,8511,8519,8668,8669,9022,9490,9708,9710,9724,9725,9727,9787,9801,9835,9848,9909,9960,10173,10226,10633,10638,10690,10691,10862,10967,11090,11093,11310,11360,11551,11661,11671,11675,11676,11685,11727,11741,11758,11856,11881,11922,11981,12299,12310,12315,12320,12321,12322,12324,12328,12330,12333,12340,12341,12342,12353,12355,12356,12358,12359,12402,12423,12494,12496,12509,12607,12649,12654,12655,12661,12663,12690,12693,12743,12745,12749,12750,12764,12768,12788,12792,12803,12805,12955,13539,13609,13810,14034,14035,14248,14250,14947,15303,15512,15717,15888,15889,16091,16126,16364,16421,16605,16791,17037,17086,17307,17315,17631,17959,18059,18107,18132,18170,18214,18400,18562,18735,18832,18839,18864,18961,19121,19295,19322,19376,19377,19378,19381,19382,19384,19409,19424,19456,19458,19473,19582,19729,19731,19852,19887,19902,19926,19927,20270,20283,20314,20341,20432,20456,20607,20609,20618,20624,20652,20656,20959,20966,21110,21480,21483,21484,21485,21486,21487,21488,21490,21491,21492,21493,21495,21496,21497,21498,21499,21500,21501,21504,21505,21509,21512,21515,21516,21517,21518,21521,21525,21567,21573,21576,21600,21601,21602,21603,21610,21616,21649,21656,21657,21658,21663,21664,21667,21674,21681,21733,21734,21735,21736,22433,22435,22438,22521,22523,22588,22591,22608,22705,22725,22797,22992,23078]]],["+",[16,13,[[1,2,2,0,2,[[81,1,1,0,1],[88,1,1,1,2]]],[7,1,1,2,3,[[235,1,1,2,3]]],[12,2,1,3,4,[[363,2,1,3,4]]],[13,5,3,4,7,[[374,2,1,4,5],[391,1,1,5,6],[401,2,1,6,7]]],[18,1,1,7,8,[[486,1,1,7,8]]],[24,1,1,8,9,[[801,1,1,8,9]]],[25,2,2,9,11,[[841,2,2,9,11]]],[35,1,1,11,12,[[906,1,1,11,12]]],[37,1,1,12,13,[[924,1,1,12,13]]]],[2465,2704,7200,11090,11360,11727,11981,14034,20456,21500,21504,22797,23078]]],["cities",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]]],[9022,11310]]],["city",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7183]]],["door",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2548]]],["doors",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13810]]],["gate",[240,193,[[0,9,8,0,8,[[18,1,1,0,1],[21,1,1,1,2],[22,2,2,2,4],[23,1,1,4,5],[27,1,1,5,6],[33,3,2,6,8]]],[1,8,8,8,16,[[76,1,1,8,9],[81,2,2,9,11],[87,3,3,11,14],[89,2,2,14,16]]],[3,1,1,16,17,[[120,1,1,16,17]]],[4,4,4,17,21,[[173,1,1,17,18],[174,2,2,18,20],[177,1,1,20,21]]],[5,5,5,21,26,[[188,2,2,21,23],[193,1,1,23,24],[194,1,1,24,25],[206,1,1,25,26]]],[6,7,7,26,33,[[219,3,3,26,29],[226,2,2,29,31],[228,2,2,31,33]]],[7,2,2,33,35,[[235,2,2,33,35]]],[8,3,3,35,38,[[239,1,1,35,36],[244,1,1,36,37],[256,1,1,37,38]]],[9,11,10,38,48,[[269,1,1,38,39],[276,1,1,39,40],[277,1,1,40,41],[281,1,1,41,42],[284,3,3,42,45],[285,2,1,45,46],[289,2,2,46,48]]],[10,1,1,48,49,[[312,1,1,48,49]]],[11,17,13,49,62,[[319,6,5,49,54],[321,1,1,54,55],[322,1,1,55,56],[323,3,2,56,58],[326,2,1,58,59],[327,1,1,59,60],[335,2,1,60,61],[337,1,1,61,62]]],[12,4,4,62,66,[[346,1,1,62,63],[348,2,2,63,65],[363,1,1,65,66]]],[13,11,10,66,76,[[384,1,1,66,67],[389,3,3,67,70],[390,1,1,70,71],[391,1,1,71,72],[392,2,1,72,73],[393,1,1,73,74],[398,1,1,74,75],[399,1,1,75,76]]],[15,27,20,76,96,[[414,3,3,76,79],[415,12,11,79,90],[420,4,3,90,93],[424,8,3,93,96]]],[16,11,10,96,106,[[427,2,2,96,98],[428,2,2,98,100],[429,3,2,100,102],[430,2,2,102,104],[431,2,2,104,106]]],[17,3,3,106,109,[[440,1,1,106,107],[464,1,1,107,108],[466,1,1,108,109]]],[18,3,3,109,112,[[546,1,1,109,110],[595,1,1,110,111],[604,1,1,111,112]]],[19,2,2,112,114,[[649,1,1,112,113],[651,1,1,113,114]]],[21,1,1,114,115,[[677,1,1,114,115]]],[22,5,5,115,120,[[692,1,1,115,116],[700,1,1,116,117],[702,1,1,117,118],[706,1,1,118,119],[707,1,1,119,120]]],[23,13,13,120,133,[[751,1,1,120,121],[761,1,1,121,122],[763,1,1,122,123],[764,1,1,123,124],[770,1,1,124,125],[775,2,2,125,127],[780,1,1,127,128],[781,1,1,128,129],[782,1,1,129,130],[783,2,2,130,132],[796,1,1,132,133]]],[25,83,52,133,185,[[809,3,3,133,136],[810,1,1,136,137],[811,1,1,137,138],[812,2,1,138,139],[841,38,26,139,165],[843,1,1,165,166],[844,3,2,166,168],[845,4,4,168,172],[846,1,1,172,173],[847,15,7,173,180],[848,2,1,180,181],[849,12,4,181,185]]],[29,3,3,185,188,[[883,3,3,185,188]]],[30,1,1,188,189,[[888,1,1,188,189]]],[32,3,3,189,192,[[893,2,2,189,191],[894,1,1,191,192]]],[37,2,1,192,193,[[924,2,1,192,193]]]],[458,564,581,589,651,790,1000,1004,2288,2464,2465,2648,2651,2664,2715,2740,3769,5466,5485,5494,5554,5874,5876,5981,6031,6376,6789,6794,6798,6951,6952,7009,7010,7191,7201,7315,7409,7785,8108,8248,8282,8391,8482,8502,8511,8519,8668,8669,9490,9708,9710,9724,9725,9727,9787,9801,9835,9848,9909,9960,10173,10226,10633,10690,10691,11093,11551,11661,11671,11676,11685,11727,11741,11758,11881,11922,12320,12321,12322,12328,12330,12333,12340,12341,12342,12353,12355,12356,12358,12359,12494,12496,12509,12655,12661,12663,12743,12745,12749,12750,12764,12768,12788,12792,12803,12805,12955,13539,13609,14947,15889,16126,17037,17086,17631,17959,18059,18107,18170,18214,19121,19376,19409,19424,19582,19729,19731,19852,19887,19902,19926,19927,20283,20607,20609,20618,20624,20652,20656,21480,21483,21484,21485,21486,21487,21488,21490,21491,21492,21493,21496,21497,21498,21499,21500,21501,21504,21505,21509,21512,21516,21517,21518,21521,21525,21567,21573,21576,21600,21601,21602,21603,21649,21656,21657,21658,21663,21664,21667,21674,21681,21733,21734,21735,21736,22433,22435,22438,22523,22588,22591,22608,23078]]],["gates",[111,105,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,30,29,1,30,[[157,1,1,1,2],[158,1,1,2,3],[163,1,1,3,4],[164,5,5,4,9],[166,4,4,9,13],[167,2,2,13,15],[168,4,4,15,19],[169,3,3,19,22],[170,1,1,22,23],[175,1,1,23,24],[176,1,1,24,25],[178,1,1,25,26],[180,4,3,26,29],[183,1,1,29,30]]],[6,2,2,30,32,[[215,2,2,30,32]]],[8,1,1,32,33,[[252,1,1,32,33]]],[9,1,1,33,34,[[284,1,1,33,34]]],[11,1,1,34,35,[[335,1,1,34,35]]],[12,2,2,35,37,[[346,1,1,35,36],[359,1,1,36,37]]],[13,2,2,37,39,[[389,1,1,37,38],[397,1,1,38,39]]],[15,13,12,39,51,[[413,1,1,39,40],[414,4,4,40,44],[418,1,1,44,45],[419,1,1,45,46],[423,1,1,46,47],[424,2,2,47,49],[425,3,2,49,51]]],[17,1,1,51,52,[[473,1,1,51,52]]],[18,9,9,52,61,[[486,1,1,52,53],[501,2,2,53,55],[564,1,1,55,56],[577,1,1,56,57],[584,1,1,57,58],[595,1,1,58,59],[599,1,1,59,60],[624,1,1,60,61]]],[19,5,5,61,66,[[628,1,1,61,62],[635,1,1,62,63],[641,1,1,63,64],[658,2,2,64,66]]],[22,7,7,66,73,[[704,1,1,66,67],[716,1,1,67,68],[723,1,1,68,69],[732,1,1,69,70],[738,2,2,70,72],[740,1,1,72,73]]],[23,15,14,73,87,[[745,1,1,73,74],[751,1,1,74,75],[758,1,1,75,76],[759,1,1,76,77],[761,7,6,77,83],[766,3,3,83,86],[795,1,1,86,87]]],[24,3,3,87,90,[[797,1,1,87,88],[798,1,1,88,89],[800,1,1,89,90]]],[25,14,11,90,101,[[822,2,2,90,92],[827,1,1,92,93],[841,3,2,93,95],[845,3,2,95,97],[849,5,4,97,101]]],[30,1,1,101,102,[[888,1,1,101,102]]],[33,2,2,102,104,[[901,1,1,102,103],[902,1,1,103,104]]],[37,1,1,104,105,[[918,1,1,104,105]]]],[2061,5067,5095,5228,5252,5255,5257,5258,5261,5311,5317,5318,5319,5326,5341,5347,5353,5356,5360,5366,5369,5372,5390,5516,5539,5578,5663,5666,5668,5740,6631,6634,7670,8502,10173,10638,10967,11675,11856,12299,12310,12315,12320,12324,12402,12423,12607,12649,12654,12690,12693,13810,14035,14248,14250,15303,15512,15717,15888,16091,16364,16421,16605,16791,17307,17315,18132,18400,18562,18735,18832,18839,18864,18961,19121,19295,19322,19376,19377,19378,19381,19382,19384,19456,19458,19473,20270,20314,20341,20432,20959,20966,21110,21495,21515,21610,21616,21733,21734,21735,21736,22521,22705,22725,22992]]],["port",[1,1,[[15,1,1,0,1,[[414,1,1,0,1]]]],[12320]]],["porters",[1,1,[[12,1,1,0,1,[[353,1,1,0,1]]]],[10862]]]]},{"k":"H8180","v":[["+",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[704]]]]},{"k":"H8181","v":[["*",[28,27,[[0,1,1,0,1,[[24,1,1,0,1]]],[2,15,14,1,15,[[102,12,12,1,13],[103,3,2,13,15]]],[3,2,2,15,17,[[122,2,2,15,17]]],[6,1,1,17,18,[[226,1,1,17,18]]],[9,1,1,18,19,[[280,1,1,18,19]]],[11,1,1,19,20,[[313,1,1,19,20]]],[14,1,1,20,21,[[411,1,1,20,21]]],[18,1,1,21,22,[[545,1,1,21,22]]],[21,2,2,22,24,[[674,1,1,22,23],[676,1,1,23,24]]],[22,1,1,24,25,[[685,1,1,24,25]]],[25,1,1,25,26,[[817,1,1,25,26]]],[37,1,1,26,27,[[923,1,1,26,27]]]],[683,3055,3056,3062,3072,3073,3077,3078,3082,3083,3084,3088,3089,3119,3120,3828,3841,6971,8382,9541,12240,14921,17583,17619,17802,20769,23063]]],["+",[3,3,[[2,1,1,0,1,[[103,1,1,0,1]]],[11,1,1,1,2,[[313,1,1,1,2]]],[14,1,1,2,3,[[411,1,1,2,3]]]],[3120,9541,12240]]],["hair",[21,21,[[2,13,13,0,13,[[102,11,11,0,11],[103,2,2,11,13]]],[3,2,2,13,15,[[122,2,2,13,15]]],[6,1,1,15,16,[[226,1,1,15,16]]],[9,1,1,16,17,[[280,1,1,16,17]]],[21,2,2,17,19,[[674,1,1,17,18],[676,1,1,18,19]]],[22,1,1,19,20,[[685,1,1,19,20]]],[25,1,1,20,21,[[817,1,1,20,21]]]],[3055,3056,3062,3072,3077,3078,3082,3083,3084,3088,3089,3119,3120,3828,3841,6971,8382,17583,17619,17802,20769]]],["hairs",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3073]]],["hairy",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[18,1,1,1,2,[[545,1,1,1,2]]]],[683,14921]]],["rough",[1,1,[[37,1,1,0,1,[[923,1,1,0,1]]]],[23063]]]]},{"k":"H8182","v":[["vile",[1,1,[[23,1,1,0,1,[[773,1,1,0,1]]]],[19652]]]]},{"k":"H8183","v":[["*",[3,3,[[10,1,1,0,1,[[291,1,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]],[33,1,1,2,3,[[900,1,1,2,3]]]],[8769,13068,22687]]],["+",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8769]]],["storm",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22687]]],["tempest",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13068]]]]},{"k":"H8184","v":[["*",[34,32,[[1,2,1,0,1,[[58,2,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]],[3,1,1,2,3,[[121,1,1,2,3]]],[4,1,1,3,4,[[160,1,1,3,4]]],[6,1,1,4,5,[[217,1,1,4,5]]],[7,6,6,5,11,[[232,1,1,5,6],[233,2,2,6,8],[234,3,3,8,11]]],[9,3,3,11,14,[[280,1,1,11,12],[283,1,1,12,13],[287,1,1,13,14]]],[10,1,1,14,15,[[294,1,1,14,15]]],[11,4,4,15,19,[[316,1,1,15,16],[319,3,3,16,19]]],[12,1,1,19,20,[[348,1,1,19,20]]],[13,3,3,20,23,[[368,2,2,20,22],[393,1,1,22,23]]],[17,1,1,23,24,[[466,1,1,23,24]]],[22,1,1,24,25,[[706,1,1,24,25]]],[23,1,1,25,26,[[785,1,1,25,26]]],[25,4,4,26,30,[[805,2,2,26,28],[814,1,1,28,29],[846,1,1,29,30]]],[27,2,1,30,31,[[864,2,1,30,31]]],[28,1,1,31,32,[[876,1,1,31,32]]]],[1773,3586,3807,5145,6707,7149,7166,7172,7174,7187,7189,8386,8477,8589,8872,9645,9708,9723,9725,10686,11221,11226,11760,13628,18189,19965,20538,20541,20727,21643,22130,22302]]],["Barley",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8872]]],["barley",[33,31,[[1,2,1,0,1,[[58,2,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]],[3,1,1,2,3,[[121,1,1,2,3]]],[4,1,1,3,4,[[160,1,1,3,4]]],[6,1,1,4,5,[[217,1,1,4,5]]],[7,6,6,5,11,[[232,1,1,5,6],[233,2,2,6,8],[234,3,3,8,11]]],[9,3,3,11,14,[[280,1,1,11,12],[283,1,1,12,13],[287,1,1,13,14]]],[11,4,4,14,18,[[316,1,1,14,15],[319,3,3,15,18]]],[12,1,1,18,19,[[348,1,1,18,19]]],[13,3,3,19,22,[[368,2,2,19,21],[393,1,1,21,22]]],[17,1,1,22,23,[[466,1,1,22,23]]],[22,1,1,23,24,[[706,1,1,23,24]]],[23,1,1,24,25,[[785,1,1,24,25]]],[25,4,4,25,29,[[805,2,2,25,27],[814,1,1,27,28],[846,1,1,28,29]]],[27,2,1,29,30,[[864,2,1,29,30]]],[28,1,1,30,31,[[876,1,1,30,31]]]],[1773,3586,3807,5145,6707,7149,7166,7172,7174,7187,7189,8386,8477,8589,9645,9708,9723,9725,10686,11221,11226,11760,13628,18189,19965,20538,20541,20727,21643,22130,22302]]]]},{"k":"H8185","v":[["*",[6,6,[[6,1,1,0,1,[[230,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[9,1,1,2,3,[[280,1,1,2,3]]],[17,1,1,3,4,[[439,1,1,3,4]]],[18,2,2,4,6,[[517,1,1,4,5],[546,1,1,5,6]]]],[7070,7553,8367,12945,14537,14939]]],["+",[4,4,[[8,1,1,0,1,[[249,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]],[18,2,2,2,4,[[517,1,1,2,3],[546,1,1,3,4]]]],[7553,8367,14537,14939]]],["hair",[2,2,[[6,1,1,0,1,[[230,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]]],[7070,12945]]]]},{"k":"H8186","v":[["thing",[4,4,[[23,3,3,0,3,[[749,1,1,0,1],[762,1,1,1,2],[767,1,1,2,3]]],[27,1,1,3,4,[[867,1,1,3,4]]]],[19088,19397,19498,22177]]]]},{"k":"H8187","v":[["Sheariah",[2,2,[[12,2,2,0,2,[[345,1,1,0,1],[346,1,1,1,2]]]],[10613,10659]]]]},{"k":"H8188","v":[["Seorim",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11023]]]]},{"k":"H8189","v":[["*",[3,3,[[5,1,1,0,1,[[201,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[12,1,1,2,3,[[341,1,1,2,3]]]],[6238,7670,10416]]],["Shaaraim",[2,2,[[8,1,1,0,1,[[252,1,1,0,1]]],[12,1,1,1,2,[[341,1,1,1,2]]]],[7670,10416]]],["Sharaim",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6238]]]]},{"k":"H8190","v":[["Shaashgaz",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12738]]]]},{"k":"H8191","v":[["*",[9,9,[[18,5,5,0,5,[[596,5,5,0,5]]],[19,2,2,5,7,[[635,2,2,5,7]]],[22,1,1,7,8,[[683,1,1,7,8]]],[23,1,1,8,9,[[775,1,1,8,9]]]],[15922,15975,15990,16041,16072,16632,16633,17746,19711]]],["delight",[4,4,[[18,3,3,0,3,[[596,3,3,0,3]]],[19,1,1,3,4,[[635,1,1,3,4]]]],[15922,15975,16072,16632]]],["delights",[3,3,[[18,2,2,0,2,[[596,2,2,0,2]]],[19,1,1,2,3,[[635,1,1,2,3]]]],[15990,16041,16633]]],["pleasant",[2,2,[[22,1,1,0,1,[[683,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[17746,19711]]]]},{"k":"H8192","v":[["*",[2,2,[[17,1,1,0,1,[[468,1,1,0,1]]],[22,1,1,1,2,[[691,1,1,1,2]]]],[13671,17908]]],["high",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17908]]],["out",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13671]]]]},{"k":"H8193","v":[["*",[176,164,[[0,8,7,0,7,[[10,5,4,0,4],[21,1,1,4,5],[40,2,2,5,7]]],[1,17,13,7,20,[[51,1,1,7,8],[55,2,2,8,10],[56,1,1,10,11],[63,1,1,11,12],[75,4,2,12,14],[77,2,2,14,16],[85,4,2,16,18],[88,2,2,18,20]]],[2,1,1,20,21,[[94,1,1,20,21]]],[3,3,3,21,24,[[146,3,3,21,24]]],[4,3,3,24,27,[[154,1,1,24,25],[156,1,1,25,26],[175,1,1,26,27]]],[5,4,4,27,31,[[197,1,1,27,28],[198,1,1,28,29],[199,2,2,29,31]]],[6,2,2,31,33,[[217,2,2,31,33]]],[8,2,2,33,35,[[236,1,1,33,34],[248,1,1,34,35]]],[10,7,5,35,40,[[294,1,1,35,36],[297,5,3,36,39],[299,1,1,39,40]]],[11,3,3,40,43,[[314,1,1,40,41],[330,1,1,41,42],[331,1,1,42,43]]],[13,5,3,43,46,[[370,4,2,43,45],[374,1,1,45,46]]],[17,12,12,46,58,[[437,1,1,46,47],[443,1,1,47,48],[446,2,2,48,50],[447,1,1,50,51],[448,1,1,51,52],[450,1,1,52,53],[451,1,1,53,54],[458,1,1,54,55],[462,1,1,55,56],[467,1,1,56,57],[468,1,1,57,58]]],[18,28,28,58,86,[[489,3,3,58,61],[493,1,1,61,62],[494,2,2,62,64],[498,1,1,64,65],[499,1,1,65,66],[508,1,1,66,67],[511,1,1,67,68],[517,1,1,68,69],[522,1,1,69,70],[528,1,1,70,71],[536,2,2,71,73],[540,2,2,73,75],[543,1,1,75,76],[548,1,1,76,77],[558,1,1,77,78],[566,1,1,78,79],[583,1,1,79,80],[596,2,2,80,82],[597,1,1,82,83],[617,2,2,83,85],[618,1,1,85,86]]],[19,46,45,86,131,[[631,1,1,86,87],[632,2,2,87,89],[634,1,1,89,90],[635,2,2,90,92],[637,7,7,92,99],[639,3,3,99,102],[640,1,1,102,103],[641,3,3,103,106],[642,1,1,106,107],[643,6,6,107,113],[644,4,3,113,116],[645,3,3,116,119],[646,1,1,119,120],[647,2,2,120,122],[649,2,2,122,124],[650,1,1,124,125],[651,3,3,125,128],[653,2,2,128,130],[654,1,1,130,131]]],[20,1,1,131,132,[[668,1,1,131,132]]],[21,4,4,132,136,[[674,2,2,132,134],[675,1,1,134,135],[677,1,1,135,136]]],[22,13,12,136,148,[[684,3,2,136,138],[689,1,1,138,139],[697,1,1,139,140],[706,1,1,140,141],[707,1,1,141,142],[708,1,1,142,143],[711,1,1,143,144],[714,1,1,144,145],[715,1,1,145,146],[735,1,1,146,147],[737,1,1,147,148]]],[23,1,1,148,149,[[761,1,1,148,149]]],[24,1,1,149,150,[[799,1,1,149,150]]],[25,7,7,150,157,[[804,2,2,150,152],[837,1,1,152,153],[844,1,1,153,154],[848,3,3,154,157]]],[26,3,2,157,159,[[859,1,1,157,158],[861,2,1,158,159]]],[27,1,1,159,160,[[875,1,1,159,160]]],[34,1,1,160,161,[[905,1,1,160,161]]],[35,1,1,161,162,[[908,1,1,161,162]]],[38,2,2,162,164,[[926,2,2,162,164]]]],[267,272,273,275,564,1198,1212,1557,1667,1685,1700,1919,2239,2245,2319,2325,2577,2583,2683,2687,2834,4654,4656,4660,4974,5052,5523,6111,6132,6163,6170,6706,6716,7225,7490,8873,8957,8958,8960,9077,9564,10044,10089,11248,11251,11363,12901,13050,13110,13113,13148,13159,13209,13243,13431,13485,13648,13653,14068,14069,14070,14096,14104,14107,14193,14211,14349,14401,14534,14599,14706,14797,14802,14842,14844,14887,14999,15222,15360,15684,15911,16069,16076,16266,16272,16279,16514,16519,16520,16596,16608,16609,16664,16666,16669,16674,16675,16677,16688,16732,16738,16741,16750,16775,16779,16795,16814,16850,16853,16861,16863,16867,16870,16877,16880,16901,16907,16908,16921,16926,16969,16973,17026,17033,17060,17081,17105,17107,17164,17165,17171,17505,17585,17593,17611,17636,17774,17776,17888,18022,18175,18206,18244,18298,18335,18381,18784,18803,19373,20416,20507,20508,21362,21585,21685,21686,21691,22031,22086,22284,22784,22829,23109,23110]]],["+",[3,3,[[10,1,1,0,1,[[297,1,1,0,1]]],[13,1,1,1,2,[[370,1,1,1,2]]],[18,1,1,2,3,[[597,1,1,2,3]]]],[8957,11248,16076]]],["band",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2687]]],["bank",[10,9,[[0,1,1,0,1,[[40,1,1,0,1]]],[4,1,1,1,2,[[156,1,1,1,2]]],[5,3,3,2,5,[[198,1,1,2,3],[199,2,2,3,5]]],[11,1,1,5,6,[[314,1,1,5,6]]],[25,2,2,6,8,[[848,2,2,6,8]]],[26,2,1,8,9,[[861,2,1,8,9]]]],[1212,5052,6132,6163,6170,9564,21686,21691,22086]]],["binding",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2325]]],["border",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]]],[2319,2683,6716]]],["brim",[6,4,[[10,3,2,0,2,[[297,3,2,0,2]]],[13,3,2,2,4,[[370,3,2,2,4]]]],[8958,8960,11248,11251]]],["brink",[5,5,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,2,2,1,3,[[51,1,1,1,2],[56,1,1,2,3]]],[4,1,1,3,4,[[154,1,1,3,4]]],[25,1,1,4,5,[[848,1,1,4,5]]]],[1198,1557,1700,4974,21685]]],["edge",[8,5,[[1,7,4,0,4,[[75,4,2,0,2],[85,3,2,2,4]]],[25,1,1,4,5,[[844,1,1,4,5]]]],[2239,2245,2577,2583,21585]]],["language",[7,7,[[0,4,4,0,4,[[10,4,4,0,4]]],[18,1,1,4,5,[[558,1,1,4,5]]],[22,1,1,5,6,[[697,1,1,5,6]]],[35,1,1,6,7,[[908,1,1,6,7]]]],[267,272,273,275,15222,18022,22829]]],["lip",[2,2,[[18,1,1,0,1,[[499,1,1,0,1]]],[19,1,1,1,2,[[639,1,1,1,2]]]],[14211,16738]]],["lips",[109,108,[[1,2,2,0,2,[[55,2,2,0,2]]],[2,1,1,2,3,[[94,1,1,2,3]]],[3,3,3,3,6,[[146,3,3,3,6]]],[4,1,1,6,7,[[175,1,1,6,7]]],[8,1,1,7,8,[[236,1,1,7,8]]],[11,1,1,8,9,[[331,1,1,8,9]]],[17,10,10,9,19,[[437,1,1,9,10],[443,1,1,10,11],[446,1,1,11,12],[448,1,1,12,13],[450,1,1,13,14],[451,1,1,14,15],[458,1,1,15,16],[462,1,1,16,17],[467,1,1,17,18],[468,1,1,18,19]]],[18,25,25,19,44,[[489,3,3,19,22],[493,1,1,22,23],[494,2,2,23,25],[498,1,1,25,26],[508,1,1,26,27],[511,1,1,27,28],[517,1,1,28,29],[522,1,1,29,30],[528,1,1,30,31],[536,2,2,31,33],[540,2,2,33,35],[543,1,1,35,36],[548,1,1,36,37],[566,1,1,37,38],[583,1,1,38,39],[596,2,2,39,41],[617,2,2,41,43],[618,1,1,43,44]]],[19,42,42,44,86,[[631,1,1,44,45],[632,2,2,45,47],[634,1,1,47,48],[635,2,2,48,50],[637,5,5,50,55],[639,2,2,55,57],[640,1,1,57,58],[641,3,3,58,61],[642,1,1,61,62],[643,6,6,62,68],[644,3,3,68,71],[645,3,3,71,74],[646,1,1,74,75],[647,2,2,75,77],[649,2,2,77,79],[650,1,1,79,80],[651,3,3,80,83],[653,2,2,83,85],[654,1,1,85,86]]],[20,1,1,86,87,[[668,1,1,86,87]]],[21,4,4,87,91,[[674,2,2,87,89],[675,1,1,89,90],[677,1,1,90,91]]],[22,10,9,91,100,[[684,3,2,91,93],[689,1,1,93,94],[706,1,1,94,95],[707,1,1,95,96],[708,1,1,96,97],[715,1,1,97,98],[735,1,1,98,99],[737,1,1,99,100]]],[23,1,1,100,101,[[761,1,1,100,101]]],[24,1,1,101,102,[[799,1,1,101,102]]],[25,1,1,102,103,[[837,1,1,102,103]]],[26,1,1,103,104,[[859,1,1,103,104]]],[27,1,1,104,105,[[875,1,1,104,105]]],[34,1,1,105,106,[[905,1,1,105,106]]],[38,2,2,106,108,[[926,2,2,106,108]]]],[1667,1685,2834,4654,4656,4660,5523,7225,10089,12901,13050,13113,13159,13209,13243,13431,13485,13648,13653,14068,14069,14070,14096,14104,14107,14193,14349,14401,14534,14599,14706,14797,14802,14842,14844,14887,14999,15360,15684,15911,16069,16266,16272,16279,16514,16519,16520,16596,16608,16609,16669,16674,16675,16677,16688,16732,16741,16750,16775,16779,16795,16814,16850,16853,16861,16863,16867,16870,16877,16880,16901,16907,16908,16921,16926,16969,16973,17026,17033,17060,17081,17105,17107,17164,17165,17171,17505,17585,17593,17611,17636,17774,17776,17888,18175,18206,18244,18381,18784,18803,19373,20416,21362,22031,22284,22784,23109,23110]]],["other",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8957]]],["prating",[2,2,[[19,2,2,0,2,[[637,2,2,0,2]]]],[16664,16666]]],["shore",[6,6,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[5,1,1,2,3,[[197,1,1,2,3]]],[8,1,1,3,4,[[248,1,1,3,4]]],[10,2,2,4,6,[[294,1,1,4,5],[299,1,1,5,6]]]],[564,1919,6111,7490,8873,9077]]],["side",[3,3,[[1,1,1,0,1,[[85,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]],[13,1,1,2,3,[[374,1,1,2,3]]]],[2577,6706,11363]]],["speech",[6,6,[[0,1,1,0,1,[[10,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[19,1,1,2,3,[[644,1,1,2,3]]],[22,1,1,3,4,[[711,1,1,3,4]]],[25,2,2,4,6,[[804,2,2,4,6]]]],[273,13148,16880,18298,20507,20508]]],["talk",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13110]]],["vain",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]]],[10044,18335]]]]},{"k":"H8194","v":[["cheese",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8478]]]]},{"k":"H8195","v":[["*",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1063,10292]]],["Shephi",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10292]]],["Shepho",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1063]]]]},{"k":"H8196","v":[["judgment",[2,2,[[13,1,1,0,1,[[386,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[11596,21017]]]]},{"k":"H8197","v":[["*",[2,2,[[3,1,1,0,1,[[142,1,1,0,1]]],[12,1,1,1,2,[[345,1,1,1,2]]]],[4528,10580]]],["Shephuphan",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10580]]],["Shupham",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4528]]]]},{"k":"H8198","v":[["*",[63,58,[[0,28,26,0,26,[[11,1,1,0,1],[15,6,6,1,7],[19,1,1,7,8],[23,1,1,8,9],[24,1,1,9,10],[28,4,2,10,12],[29,7,7,12,19],[31,2,2,19,21],[32,3,3,21,24],[34,2,2,24,26]]],[1,1,1,26,27,[[60,1,1,26,27]]],[2,1,1,27,28,[[108,1,1,27,28]]],[4,1,1,28,29,[[180,1,1,28,29]]],[7,2,1,29,30,[[233,2,1,29,30]]],[8,6,6,30,36,[[236,1,1,30,31],[243,1,1,31,32],[260,2,2,32,34],[263,2,2,34,36]]],[9,7,7,36,43,[[280,6,6,36,42],[283,1,1,42,43]]],[11,3,3,43,46,[[316,2,2,43,45],[317,1,1,45,46]]],[13,1,1,46,47,[[394,1,1,46,47]]],[16,1,1,47,48,[[432,1,1,47,48]]],[18,1,1,48,49,[[600,1,1,48,49]]],[19,1,1,49,50,[[657,1,1,49,50]]],[20,1,1,50,51,[[660,1,1,50,51]]],[22,2,2,51,53,[[692,1,1,51,52],[702,1,1,52,53]]],[23,6,4,53,57,[[778,6,4,53,57]]],[28,1,1,57,58,[[877,1,1,57,58]]]],[314,382,383,384,386,387,389,509,626,670,819,824,834,837,839,840,842,848,873,933,950,961,962,966,1036,1037,1811,3301,5679,7162,7230,7385,7888,7902,7963,7964,8362,8363,8368,8371,8373,8375,8466,9605,9619,9673,11774,12811,16100,17274,17340,17930,18097,19810,19811,19812,19817,22340]]],["bondmaid",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3301]]],["bondwomen",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[13,1,1,1,2,[[394,1,1,1,2]]],[16,1,1,2,3,[[432,1,1,2,3]]]],[5679,11774,12811]]],["handmaid",[22,22,[[0,7,7,0,7,[[15,1,1,0,1],[24,1,1,1,2],[28,2,2,2,4],[29,1,1,4,5],[34,2,2,5,7]]],[7,1,1,7,8,[[233,1,1,7,8]]],[8,4,4,8,12,[[236,1,1,8,9],[260,1,1,9,10],[263,2,2,10,12]]],[9,6,6,12,18,[[280,6,6,12,18]]],[11,2,2,18,20,[[316,2,2,18,20]]],[19,1,1,20,21,[[657,1,1,20,21]]],[23,1,1,21,22,[[778,1,1,21,22]]]],[382,670,819,824,834,1036,1037,7162,7230,7888,7963,7964,8362,8363,8368,8371,8373,8375,9605,9619,17274,19817]]],["handmaidens",[2,2,[[0,1,1,0,1,[[32,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]]],[966,7162]]],["handmaids",[7,6,[[0,2,2,0,2,[[32,2,2,0,2]]],[22,1,1,2,3,[[692,1,1,2,3]]],[23,3,2,3,5,[[778,3,2,3,5]]],[28,1,1,5,6,[[877,1,1,5,6]]]],[961,962,17930,19812,19817,22340]]],["maid",[12,12,[[0,11,11,0,11,[[15,5,5,0,5],[28,2,2,5,7],[29,4,4,7,11]]],[22,1,1,11,12,[[702,1,1,11,12]]]],[383,384,386,387,389,819,824,837,839,840,842,18097]]],["maiden",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[18,1,1,1,2,[[600,1,1,1,2]]]],[848,16100]]],["maidens",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17340]]],["maidservant",[3,3,[[1,1,1,0,1,[[60,1,1,0,1]]],[23,2,2,1,3,[[778,2,2,1,3]]]],[1811,19810,19811]]],["maidservants",[5,5,[[0,3,3,0,3,[[11,1,1,0,1],[23,1,1,1,2],[29,1,1,2,3]]],[8,1,1,3,4,[[243,1,1,3,4]]],[11,1,1,4,5,[[317,1,1,4,5]]]],[314,626,873,7385,9673]]],["servant",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7902]]],["wench",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8466]]],["womenservants",[3,3,[[0,3,3,0,3,[[19,1,1,0,1],[31,2,2,1,3]]]],[509,933,950]]]]},{"k":"H8199","v":[["*",[203,182,[[0,5,4,0,4,[[15,1,1,0,1],[17,1,1,1,2],[18,2,1,2,3],[30,1,1,3,4]]],[1,8,6,4,10,[[51,1,1,4,5],[54,1,1,5,6],[67,6,4,6,10]]],[2,1,1,10,11,[[108,1,1,10,11]]],[3,2,2,11,13,[[141,1,1,11,12],[151,1,1,12,13]]],[4,11,9,13,22,[[153,2,1,13,14],[168,2,1,14,15],[169,2,2,15,17],[171,2,2,17,19],[173,1,1,19,20],[177,2,2,20,22]]],[5,3,3,22,25,[[194,1,1,22,23],[209,1,1,23,24],[210,1,1,24,25]]],[6,21,17,25,42,[[212,6,4,25,29],[213,1,1,29,30],[214,1,1,30,31],[220,2,2,31,33],[221,2,1,33,34],[222,7,6,34,40],[225,1,1,40,41],[226,1,1,41,42]]],[7,2,1,42,43,[[232,2,1,42,43]]],[8,15,14,43,57,[[238,1,1,43,44],[239,1,1,44,45],[242,4,4,45,49],[243,5,5,49,54],[247,1,1,54,55],[259,3,2,55,57]]],[9,4,4,57,61,[[273,1,1,57,58],[281,1,1,58,59],[284,2,2,59,61]]],[10,5,4,61,65,[[293,3,2,61,63],[297,1,1,63,64],[298,1,1,64,65]]],[11,3,2,65,67,[[327,1,1,65,66],[335,2,1,66,67]]],[12,5,5,67,72,[[353,1,1,67,68],[354,2,2,68,70],[360,1,1,70,71],[363,1,1,71,72]]],[13,10,9,72,81,[[367,3,3,72,75],[372,1,1,75,76],[385,3,2,76,78],[386,1,1,78,79],[388,1,1,79,80],[392,1,1,80,81]]],[14,1,1,81,82,[[412,1,1,81,82]]],[17,6,6,82,88,[[444,2,2,82,84],[447,1,1,84,85],[456,1,1,85,86],[457,1,1,86,87],[458,1,1,87,88]]],[18,32,30,88,118,[[479,1,1,88,89],[484,2,2,89,91],[486,3,3,91,94],[487,1,1,94,95],[503,1,1,95,96],[512,1,1,96,97],[514,1,1,97,98],[520,1,1,98,99],[527,1,1,99,100],[528,1,1,100,101],[535,2,2,101,103],[544,1,1,103,104],[549,1,1,104,105],[552,2,2,105,107],[559,4,4,107,111],[571,1,1,111,112],[573,2,1,112,113],[575,2,1,113,114],[586,2,2,114,116],[618,1,1,116,117],[625,1,1,117,118]]],[19,4,4,118,122,[[635,1,1,118,119],[656,2,2,119,121],[658,1,1,121,122]]],[20,1,1,122,123,[[661,1,1,122,123]]],[22,15,15,123,138,[[679,3,3,123,126],[680,1,1,126,127],[681,1,1,127,128],[683,1,1,128,129],[689,2,2,129,131],[694,1,1,131,132],[711,1,1,132,133],[718,1,1,133,134],[721,1,1,134,135],[729,1,1,135,136],[737,1,1,136,137],[744,1,1,137,138]]],[23,4,4,138,142,[[746,1,1,138,139],[749,1,1,139,140],[755,1,1,140,141],[769,1,1,141,142]]],[24,1,1,142,143,[[799,1,1,142,143]]],[25,29,25,143,168,[[808,3,3,143,146],[812,2,2,146,148],[817,1,1,148,149],[818,1,1,149,150],[819,1,1,150,151],[821,5,3,151,154],[822,1,1,154,155],[823,2,1,155,156],[824,3,3,156,159],[825,1,1,159,160],[834,1,1,160,161],[835,3,3,161,164],[836,1,1,164,165],[837,1,1,165,166],[839,1,1,166,167],[845,2,1,167,168]]],[26,2,1,168,169,[[858,2,1,168,169]]],[27,2,2,169,171,[[868,1,1,169,170],[874,1,1,170,171]]],[28,2,2,171,173,[[878,2,2,171,173]]],[29,1,1,173,174,[[880,1,1,173,174]]],[30,1,1,174,175,[[888,1,1,174,175]]],[32,4,4,175,179,[[895,1,1,175,176],[896,1,1,176,177],[897,1,1,177,178],[899,1,1,178,179]]],[35,1,1,179,180,[[908,1,1,179,180]]],[37,2,2,180,182,[[917,1,1,180,181],[918,1,1,181,182]]]],[386,449,466,926,1568,1653,2012,2015,2021,2025,3296,4476,4869,4908,5360,5373,5376,5423,5424,5449,5548,5549,6035,6462,6477,6561,6562,6563,6564,6578,6603,6813,6814,6856,6876,6877,6878,6880,6882,6883,6949,6980,7128,7289,7315,7358,7367,7368,7369,7370,7371,7374,7375,7389,7467,7851,7854,8191,8393,8497,8509,8825,8844,8941,9017,9930,10187,10853,10869,10873,10987,11106,11196,11204,11205,11305,11581,11582,11599,11652,11753,12266,13066,13075,13145,13377,13402,13426,13955,14003,14006,14025,14029,14040,14059,14274,14434,14483,14567,14674,14695,14780,14790,14897,15004,15073,15078,15234,15235,15236,15241,15433,15478,15499,15762,15786,16282,16382,16618,17233,17238,17293,17376,17671,17677,17680,17689,17709,17742,17887,17888,17974,18301,18443,18531,18678,18804,18938,19000,19086,19246,19565,20413,20580,20585,20604,20665,20666,20800,20845,20879,20899,20930,20931,20974,20978,21031,21043,21052,21070,21300,21330,21333,21335,21355,21378,21447,21623,22000,22185,22276,22345,22355,22382,22531,22619,22623,22634,22667,22823,22971,22992]]],["+",[39,37,[[0,2,1,0,1,[[18,2,1,0,1]]],[1,3,3,1,4,[[67,3,3,1,4]]],[4,1,1,4,5,[[168,1,1,4,5]]],[6,13,12,5,17,[[213,1,1,5,6],[214,1,1,6,7],[220,2,2,7,9],[222,7,6,9,15],[225,1,1,15,16],[226,1,1,16,17]]],[8,6,6,17,23,[[238,1,1,17,18],[239,1,1,18,19],[242,4,4,19,23]]],[10,2,2,23,25,[[293,1,1,23,24],[298,1,1,24,25]]],[11,2,2,25,27,[[327,1,1,25,26],[335,1,1,26,27]]],[12,1,1,27,28,[[353,1,1,27,28]]],[13,3,3,28,31,[[367,1,1,28,29],[372,1,1,29,30],[392,1,1,30,31]]],[17,1,1,31,32,[[458,1,1,31,32]]],[18,1,1,32,33,[[586,1,1,32,33]]],[20,1,1,33,34,[[661,1,1,33,34]]],[25,2,2,34,36,[[823,1,1,34,35],[824,1,1,35,36]]],[28,1,1,36,37,[[878,1,1,36,37]]]],[466,2012,2021,2025,5360,6578,6603,6813,6814,6876,6877,6878,6880,6882,6883,6949,6980,7289,7315,7358,7367,7368,7369,8825,9017,9930,10187,10853,11205,11305,11753,13426,15786,17376,20978,21043,22355]]],["Defend",[1,1,[[18,1,1,0,1,[[559,1,1,0,1]]]],[15236]]],["Execute",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22971]]],["Judge",[5,5,[[0,1,1,0,1,[[17,1,1,0,1]]],[6,1,1,1,2,[[221,1,1,1,2]]],[18,3,3,2,5,[[503,1,1,2,3],[512,1,1,3,4],[520,1,1,4,5]]]],[449,6856,14274,14434,14567]]],["Judges",[1,1,[[4,1,1,0,1,[[168,1,1,0,1]]]],[5360]]],["avenged",[2,2,[[9,2,2,0,2,[[284,2,2,0,2]]]],[8497,8509]]],["contendeth",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17233]]],["deliver",[1,1,[[8,1,1,0,1,[[259,1,1,0,1]]]],[7854]]],["execute",[1,1,[[37,1,1,0,1,[[918,1,1,0,1]]]],[22992]]],["judge",[83,79,[[0,2,2,0,2,[[15,1,1,0,1],[30,1,1,1,2]]],[1,4,4,2,6,[[51,1,1,2,3],[54,1,1,3,4],[67,2,2,4,6]]],[2,1,1,6,7,[[108,1,1,6,7]]],[3,1,1,7,8,[[151,1,1,7,8]]],[4,5,5,8,13,[[153,1,1,8,9],[169,2,2,9,11],[177,2,2,11,13]]],[6,4,3,13,16,[[212,3,2,13,15],[221,1,1,15,16]]],[8,5,5,16,21,[[243,3,3,16,19],[259,2,2,19,21]]],[9,1,1,21,22,[[281,1,1,21,22]]],[10,2,2,22,24,[[293,1,1,22,23],[297,1,1,23,24]]],[13,3,3,24,27,[[367,1,1,24,25],[385,1,1,25,26],[386,1,1,26,27]]],[17,2,2,27,29,[[444,1,1,27,28],[457,1,1,28,29]]],[18,16,14,29,43,[[484,1,1,29,30],[486,1,1,30,31],[487,1,1,31,32],[527,1,1,32,33],[535,1,1,33,34],[544,1,1,34,35],[549,1,1,35,36],[552,2,2,36,38],[559,2,2,38,40],[571,1,1,40,41],[573,2,1,41,42],[575,2,1,42,43]]],[19,1,1,43,44,[[658,1,1,43,44]]],[22,9,9,44,53,[[679,2,2,44,46],[680,1,1,46,47],[681,1,1,47,48],[683,1,1,48,49],[689,2,2,49,51],[711,1,1,51,52],[729,1,1,52,53]]],[23,1,1,53,54,[[749,1,1,53,54]]],[24,1,1,54,55,[[799,1,1,54,55]]],[25,19,18,55,73,[[808,3,3,55,58],[812,2,2,58,60],[817,1,1,60,61],[819,1,1,61,62],[821,2,1,62,63],[822,1,1,63,64],[823,1,1,64,65],[824,2,2,65,67],[825,1,1,67,68],[834,1,1,68,69],[835,3,3,69,72],[845,1,1,72,73]]],[29,1,1,73,74,[[880,1,1,73,74]]],[30,1,1,74,75,[[888,1,1,74,75]]],[32,4,4,75,79,[[895,1,1,75,76],[896,1,1,76,77],[897,1,1,77,78],[899,1,1,78,79]]]],[386,926,1568,1653,2015,2021,3296,4869,4908,5373,5376,5548,5549,6563,6564,6856,7374,7375,7389,7851,7854,8393,8825,8941,11204,11582,11599,13066,13402,14003,14029,14059,14674,14780,14897,15004,15073,15078,15235,15241,15433,15478,15499,17293,17671,17677,17689,17709,17742,17887,17888,18301,18678,19086,20413,20580,20585,20604,20665,20666,20800,20879,20899,20974,20978,21031,21052,21070,21300,21330,21333,21335,21623,22382,22531,22619,22623,22634,22667]]],["judged",[8,8,[[1,1,1,0,1,[[67,1,1,0,1]]],[10,1,1,1,2,[[293,1,1,1,2]]],[18,3,3,2,5,[[486,1,1,2,3],[514,1,1,3,4],[586,1,1,4,5]]],[25,2,2,5,7,[[836,1,1,5,6],[837,1,1,6,7]]],[26,1,1,7,8,[[858,1,1,7,8]]]],[2025,8844,14040,14483,15762,21355,21378,22000]]],["judges",[36,36,[[3,1,1,0,1,[[141,1,1,0,1]]],[4,4,4,1,5,[[153,1,1,1,2],[171,2,2,2,4],[173,1,1,4,5]]],[5,3,3,5,8,[[194,1,1,5,6],[209,1,1,6,7],[210,1,1,7,8]]],[6,3,3,8,11,[[212,3,3,8,11]]],[7,1,1,11,12,[[232,1,1,11,12]]],[8,2,2,12,14,[[243,2,2,12,14]]],[9,1,1,14,15,[[273,1,1,14,15]]],[11,1,1,15,16,[[335,1,1,15,16]]],[12,4,4,16,20,[[354,2,2,16,18],[360,1,1,18,19],[363,1,1,19,20]]],[13,3,3,20,23,[[367,1,1,20,21],[385,2,2,21,23]]],[14,1,1,23,24,[[412,1,1,23,24]]],[17,2,2,24,26,[[444,1,1,24,25],[447,1,1,25,26]]],[18,3,3,26,29,[[479,1,1,26,27],[618,1,1,27,28],[625,1,1,28,29]]],[19,1,1,29,30,[[635,1,1,29,30]]],[22,2,2,30,32,[[679,1,1,30,31],[718,1,1,31,32]]],[26,1,1,32,33,[[858,1,1,32,33]]],[27,2,2,33,35,[[868,1,1,33,34],[874,1,1,34,35]]],[35,1,1,35,36,[[908,1,1,35,36]]]],[4476,4908,5423,5424,5449,6035,6462,6477,6561,6562,6563,7128,7370,7371,8191,10187,10869,10873,10987,11106,11196,11581,11582,12266,13075,13145,13955,16282,16382,16618,17680,18443,22000,22185,22276,22823]]],["judgest",[2,2,[[18,1,1,0,1,[[528,1,1,0,1]]],[23,1,1,1,2,[[755,1,1,1,2]]]],[14695,19246]]],["judgeth",[5,5,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,3,3,1,4,[[484,1,1,1,2],[535,1,1,2,3],[559,1,1,3,4]]],[19,1,1,4,5,[[656,1,1,4,5]]]],[13377,14006,14790,15234,17238]]],["judging",[2,2,[[18,1,1,0,1,[[486,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]]],[14025,17974]]],["judgment",[2,2,[[13,1,1,0,1,[[388,1,1,0,1]]],[25,1,1,1,2,[[845,1,1,1,2]]]],[11652,21623]]],["plead",[8,8,[[22,2,2,0,2,[[721,1,1,0,1],[744,1,1,1,2]]],[23,1,1,2,3,[[769,1,1,2,3]]],[25,4,4,3,7,[[818,1,1,3,4],[821,2,2,4,6],[839,1,1,6,7]]],[28,1,1,7,8,[[878,1,1,7,8]]]],[18531,18938,19565,20845,20930,20931,21447,22345]]],["pleaded",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20931]]],["pleadeth",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18804]]],["reason",[1,1,[[8,1,1,0,1,[[247,1,1,0,1]]]],[7467]]],["ruled",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7128]]],["with",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[19000]]]]},{"k":"H8200","v":[["magistrates",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12198]]]]},{"k":"H8201","v":[["*",[16,16,[[1,3,3,0,3,[[55,1,1,0,1],[56,1,1,1,2],[61,1,1,2,3]]],[3,1,1,3,4,[[149,1,1,3,4]]],[13,1,1,4,5,[[390,1,1,4,5]]],[19,1,1,5,6,[[646,1,1,5,6]]],[25,10,10,6,16,[[806,2,2,6,8],[812,1,1,8,9],[815,1,1,9,10],[817,1,1,10,11],[826,1,1,11,12],[829,2,2,12,14],[831,2,2,14,16]]]],[1661,1689,1828,4764,11701,16954,20556,20561,20664,20752,20803,21094,21179,21183,21218,21223]]],["Judgments",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16954]]],["judgment",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]]],[1828,11701]]],["judgments",[13,13,[[1,2,2,0,2,[[55,1,1,0,1],[56,1,1,1,2]]],[3,1,1,2,3,[[149,1,1,2,3]]],[25,10,10,3,13,[[806,2,2,3,5],[812,1,1,5,6],[815,1,1,6,7],[817,1,1,7,8],[826,1,1,8,9],[829,2,2,9,11],[831,2,2,11,13]]]],[1661,1689,4764,20556,20561,20664,20752,20803,21094,21179,21183,21218,21223]]]]},{"k":"H8202","v":[["Shaphat",[8,8,[[3,1,1,0,1,[[129,1,1,0,1]]],[10,2,2,1,3,[[309,2,2,1,3]]],[11,2,2,3,5,[[315,1,1,3,4],[318,1,1,4,5]]],[12,3,3,5,8,[[340,1,1,5,6],[342,1,1,6,7],[364,1,1,7,8]]]],[4080,9403,9406,9587,9705,10383,10440,11138]]]]},{"k":"H8203","v":[["*",[13,13,[[9,1,1,0,1,[[269,1,1,0,1]]],[12,4,4,1,5,[[340,1,1,1,2],[346,1,1,2,3],[349,1,1,3,4],[364,1,1,4,5]]],[13,1,1,5,6,[[387,1,1,5,6]]],[14,3,3,6,9,[[404,2,2,6,8],[410,1,1,8,9]]],[15,3,3,9,12,[[419,2,2,9,11],[423,1,1,11,12]]],[23,1,1,12,13,[[782,1,1,12,13]]]],[8085,10364,10623,10725,11125,11626,12031,12084,12209,12429,12479,12592,19896]]],["Shephathiah",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10623]]],["Shephatiah",[12,12,[[9,1,1,0,1,[[269,1,1,0,1]]],[12,3,3,1,4,[[340,1,1,1,2],[349,1,1,2,3],[364,1,1,3,4]]],[13,1,1,4,5,[[387,1,1,4,5]]],[14,3,3,5,8,[[404,2,2,5,7],[410,1,1,7,8]]],[15,3,3,8,11,[[419,2,2,8,10],[423,1,1,10,11]]],[23,1,1,11,12,[[782,1,1,11,12]]]],[8085,10364,10725,11125,11626,12031,12084,12209,12429,12479,12592,19896]]]]},{"k":"H8204","v":[["Shiphtan",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4840]]]]},{"k":"H8205","v":[["*",[9,9,[[3,1,1,0,1,[[139,1,1,0,1]]],[22,2,2,1,3,[[719,1,1,1,2],[727,1,1,2,3]]],[23,6,6,3,9,[[747,2,2,3,5],[748,1,1,5,6],[751,1,1,6,7],[756,1,1,7,8],[758,1,1,8,9]]]],[4419,18469,18645,19004,19023,19038,19148,19261,19299]]],["place",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4419]]],["places",[8,8,[[22,2,2,0,2,[[719,1,1,0,1],[727,1,1,1,2]]],[23,6,6,2,8,[[747,2,2,2,4],[748,1,1,4,5],[751,1,1,5,6],[756,1,1,6,7],[758,1,1,7,8]]]],[18469,18645,19004,19023,19038,19148,19261,19299]]]]},{"k":"H8206","v":[["Shuppim",[3,3,[[12,3,3,0,3,[[344,2,2,0,2],[363,1,1,2,3]]]],[10547,10550,11093]]]]},{"k":"H8207","v":[["adder",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1490]]]]},{"k":"H8208","v":[["Saphir",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22590]]]]},{"k":"H8209","v":[["fair",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21849,21858]]]]},{"k":"H8210","v":[["*",[114,110,[[0,3,2,0,2,[[8,2,1,0,1],[36,1,1,1,2]]],[1,2,2,2,4,[[53,1,1,2,3],[78,1,1,3,4]]],[2,8,8,4,12,[[93,5,5,4,9],[103,1,1,9,10],[106,2,2,10,12]]],[3,2,1,12,13,[[151,2,1,12,13]]],[4,6,6,13,19,[[164,3,3,13,16],[167,1,1,16,17],[171,1,1,17,18],[173,1,1,18,19]]],[6,1,1,19,20,[[216,1,1,19,20]]],[8,3,3,20,23,[[236,1,1,20,21],[242,1,1,21,22],[260,1,1,22,23]]],[9,2,2,23,25,[[286,2,2,23,25]]],[10,4,4,25,29,[[292,1,1,25,26],[303,2,2,26,28],[308,1,1,28,29]]],[11,3,3,29,32,[[331,1,1,29,30],[333,1,1,30,31],[336,1,1,31,32]]],[12,3,2,32,34,[[359,2,1,32,33],[365,1,1,33,34]]],[17,3,3,34,37,[[447,1,1,34,35],[451,1,1,35,36],[465,1,1,36,37]]],[18,11,11,37,48,[[499,1,1,37,38],[519,1,1,38,39],[539,1,1,39,40],[546,1,1,40,41],[550,1,1,41,42],[556,3,3,42,45],[583,1,1,45,46],[584,1,1,46,47],[619,1,1,47,48]]],[19,2,2,48,50,[[628,1,1,48,49],[633,1,1,49,50]]],[22,4,4,50,54,[[715,1,1,50,51],[720,1,1,51,52],[735,1,1,52,53],[737,1,1,53,54]]],[23,7,7,54,61,[[750,2,2,54,56],[751,1,1,56,57],[754,1,1,57,58],[758,1,1,58,59],[766,2,2,59,61]]],[24,7,7,61,68,[[798,4,4,61,65],[800,3,3,65,68]]],[25,33,32,68,100,[[805,1,1,68,69],[808,1,1,69,70],[810,1,1,70,71],[815,1,1,71,72],[817,3,3,72,75],[818,1,1,75,76],[819,1,1,76,77],[821,5,5,77,82],[822,2,2,82,84],[823,8,8,84,92],[824,2,2,92,94],[825,1,1,94,95],[827,1,1,95,96],[831,1,1,96,97],[834,1,1,97,98],[837,2,1,98,99],[840,1,1,99,100]]],[26,1,1,100,101,[[860,1,1,100,101]]],[27,1,1,101,102,[[866,1,1,101,102]]],[28,3,3,102,105,[[877,2,2,102,104],[878,1,1,104,105]]],[29,2,2,105,107,[[883,1,1,105,106],[887,1,1,106,107]]],[35,2,2,107,109,[[906,1,1,107,108],[908,1,1,108,109]]],[37,1,1,109,110,[[922,1,1,109,110]]]],[211,1105,1610,2348,2802,2813,2820,2825,2829,3152,3239,3248,4878,5256,5264,5267,5342,5416,5454,6674,7227,7358,7892,8564,8569,8801,9187,9189,9369,10093,10135,10206,10972,11146,13149,13251,13573,14218,14559,14835,14959,15022,15188,15191,15195,15689,15739,16288,16416,16557,18385,18505,18771,18807,19095,19100,19125,19226,19309,19457,19471,20336,20343,20344,20351,20421,20431,20433,20531,20585,20630,20750,20777,20798,20800,20842,20859,20903,20908,20916,20928,20929,20966,20975,20979,20980,20982,20985,20988,20998,21003,21007,21015,21052,21063,21108,21219,21305,21377,21477,22051,22162,22339,22340,22362,22431,22501,22804,22828,23055]]],["+",[10,10,[[2,2,2,0,2,[[103,1,1,0,1],[106,1,1,1,2]]],[4,1,1,2,3,[[173,1,1,2,3]]],[8,1,1,3,4,[[236,1,1,3,4]]],[23,1,1,4,5,[[758,1,1,4,5]]],[25,3,3,5,8,[[810,1,1,5,6],[817,1,1,6,7],[840,1,1,7,8]]],[28,2,2,8,10,[[877,2,2,8,10]]]],[3152,3248,5454,7227,19309,20630,20777,21477,22339,22340]]],["Shed",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1105]]],["cast",[6,6,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]],[23,1,1,2,3,[[750,1,1,2,3]]],[25,3,3,3,6,[[805,1,1,3,4],[822,1,1,4,5],[827,1,1,5,6]]]],[10093,18385,19095,20531,20966,21108]]],["out",[41,41,[[2,4,4,0,4,[[93,4,4,0,4]]],[4,1,1,4,5,[[164,1,1,4,5]]],[6,1,1,5,6,[[216,1,1,5,6]]],[8,1,1,6,7,[[242,1,1,6,7]]],[9,1,1,7,8,[[286,1,1,7,8]]],[10,3,3,8,11,[[303,2,2,8,10],[308,1,1,10,11]]],[17,2,2,11,13,[[451,1,1,11,12],[465,1,1,12,13]]],[18,6,6,13,19,[[499,1,1,13,14],[519,1,1,14,15],[539,1,1,15,16],[546,1,1,16,17],[556,1,1,17,18],[619,1,1,18,19]]],[23,2,2,19,21,[[750,1,1,19,20],[754,1,1,20,21]]],[24,5,5,21,26,[[798,3,3,21,24],[800,2,2,24,26]]],[25,11,11,26,37,[[808,1,1,26,27],[815,1,1,27,28],[817,1,1,28,29],[821,5,5,29,34],[822,1,1,34,35],[823,2,2,35,37]]],[27,1,1,37,38,[[866,1,1,37,38]]],[29,2,2,38,40,[[883,1,1,38,39],[887,1,1,39,40]]],[35,1,1,40,41,[[906,1,1,40,41]]]],[2813,2820,2825,2829,5267,6674,7358,8564,9187,9189,9369,13251,13573,14218,14559,14835,14959,15191,16288,19100,19226,20336,20344,20351,20421,20431,20585,20750,20798,20903,20908,20916,20928,20929,20975,20998,21007,22162,22431,22501,22804]]],["pour",[9,9,[[1,2,2,0,2,[[53,1,1,0,1],[78,1,1,1,2]]],[2,1,1,2,3,[[93,1,1,2,3]]],[4,3,3,3,6,[[164,2,2,3,5],[167,1,1,5,6]]],[25,1,1,6,7,[[831,1,1,6,7]]],[35,1,1,7,8,[[908,1,1,7,8]]],[37,1,1,8,9,[[922,1,1,8,9]]]],[1610,2348,2802,5256,5264,5342,21219,22828,23055]]],["poured",[6,6,[[22,2,2,0,2,[[720,1,1,0,1],[735,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]],[25,3,3,3,6,[[824,1,1,3,4],[825,1,1,4,5],[837,1,1,5,6]]]],[18505,18771,20343,21015,21063,21377]]],["poureth",[2,2,[[17,1,1,0,1,[[447,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]]],[13149,15739]]],["shed",[32,30,[[0,1,1,0,1,[[8,1,1,0,1]]],[2,1,1,1,2,[[106,1,1,1,2]]],[3,2,1,2,3,[[151,2,1,2,3]]],[4,1,1,3,4,[[171,1,1,3,4]]],[8,1,1,4,5,[[260,1,1,4,5]]],[10,1,1,5,6,[[292,1,1,5,6]]],[11,2,2,6,8,[[333,1,1,6,7],[336,1,1,7,8]]],[12,3,2,8,10,[[359,2,1,8,9],[365,1,1,9,10]]],[18,3,3,10,13,[[556,2,2,10,12],[583,1,1,12,13]]],[19,2,2,13,15,[[628,1,1,13,14],[633,1,1,14,15]]],[22,1,1,15,16,[[737,1,1,15,16]]],[23,3,3,16,19,[[751,1,1,16,17],[766,2,2,17,19]]],[24,1,1,19,20,[[800,1,1,19,20]]],[25,9,9,20,29,[[817,1,1,20,21],[823,5,5,21,26],[824,1,1,26,27],[834,1,1,27,28],[837,1,1,28,29]]],[28,1,1,29,30,[[878,1,1,29,30]]]],[211,3239,4878,5416,7892,8801,10135,10206,10972,11146,15188,15195,15689,16416,16557,18807,19125,19457,19471,20433,20800,20980,20982,20985,20988,21003,21052,21305,21377,22362]]],["shedder",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20859]]],["sheddeth",[2,2,[[0,1,1,0,1,[[8,1,1,0,1]]],[25,1,1,1,2,[[823,1,1,1,2]]]],[211,20979]]],["slipped",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15022]]],["up",[3,3,[[9,1,1,0,1,[[286,1,1,0,1]]],[25,1,1,1,2,[[818,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[8569,20842,22051]]]]},{"k":"H8211","v":[["out",[2,1,[[2,2,1,0,1,[[93,2,1,0,1]]]],[2807]]]]},{"k":"H8212","v":[["member",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5501]]]]},{"k":"H8213","v":[["*",[31,29,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,2,2,1,3,[[288,2,2,1,3]]],[17,2,2,3,5,[[457,1,1,3,4],[475,1,1,4,5]]],[18,4,4,5,9,[[495,1,1,5,6],[552,1,1,6,7],[590,1,1,7,8],[624,1,1,8,9]]],[19,2,2,9,11,[[652,1,1,9,10],[656,1,1,10,11]]],[20,1,1,11,12,[[670,1,1,11,12]]],[22,16,14,12,26,[[680,4,4,12,16],[683,2,1,16,17],[688,1,1,17,18],[691,1,1,18,19],[703,2,2,19,21],[704,2,1,21,22],[707,1,1,22,23],[710,1,1,23,24],[718,1,1,24,25],[735,1,1,25,26]]],[23,1,1,26,27,[[757,1,1,26,27]]],[25,2,2,27,29,[[818,1,1,27,28],[822,1,1,28,29]]]],[7247,8630,8650,13418,13875,14145,15078,15819,16357,17120,17247,17527,17694,17696,17697,17702,17754,17883,17917,18129,18130,18135,18197,18278,18424,18774,19284,20849,20970]]],["+",[2,2,[[18,1,1,0,1,[[624,1,1,0,1]]],[19,1,1,1,2,[[652,1,1,1,2]]]],[16357,17120]]],["abase",[2,2,[[17,1,1,0,1,[[475,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[13875,20970]]],["debase",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18774]]],["down",[8,8,[[9,2,2,0,2,[[288,2,2,0,2]]],[17,1,1,2,3,[[457,1,1,2,3]]],[18,2,2,3,5,[[495,1,1,3,4],[552,1,1,4,5]]],[22,2,2,5,7,[[703,1,1,5,6],[707,1,1,6,7]]],[25,1,1,7,8,[[818,1,1,7,8]]]],[8630,8650,13418,14145,15078,18129,18197,20849]]],["humbled",[4,3,[[22,4,3,0,3,[[680,1,1,0,1],[683,2,1,1,2],[688,1,1,2,3]]]],[17696,17754,17883]]],["humbleth",[2,2,[[18,1,1,0,1,[[590,1,1,0,1]]],[22,1,1,1,2,[[680,1,1,1,2]]]],[15819,17694]]],["low",[11,10,[[8,1,1,0,1,[[237,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]],[20,1,1,2,3,[[670,1,1,2,3]]],[22,8,7,3,10,[[680,2,2,3,5],[691,1,1,5,6],[703,1,1,6,7],[704,2,1,7,8],[710,1,1,8,9],[718,1,1,9,10]]]],[7247,17247,17527,17697,17702,17917,18130,18135,18278,18424]]],["yourselves",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19284]]]]},{"k":"H8214","v":[["*",[4,4,[[26,4,4,0,4,[[853,1,1,0,1],[854,2,2,1,3],[856,1,1,3,4]]]],[21874,21893,21896,21957]]],["+",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21893]]],["abase",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21874]]],["humbled",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21896]]],["subdue",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21957]]]]},{"k":"H8215","v":[["basest",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21854]]]]},{"k":"H8216","v":[["*",[2,2,[[18,1,1,0,1,[[613,1,1,0,1]]],[20,1,1,1,2,[[668,1,1,1,2]]]],[16219,17499]]],["+",[1,1,[[18,1,1,0,1,[[613,1,1,0,1]]]],[16219]]],["place",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17499]]]]},{"k":"H8217","v":[["*",[18,17,[[2,4,4,0,4,[[102,3,3,0,3],[103,1,1,3,4]]],[9,1,1,4,5,[[272,1,1,4,5]]],[17,1,1,5,6,[[440,1,1,5,6]]],[18,1,1,6,7,[[615,1,1,6,7]]],[19,2,2,7,9,[[643,1,1,7,8],[656,1,1,8,9]]],[22,2,1,9,10,[[735,2,1,9,10]]],[25,6,6,10,16,[[818,3,3,10,13],[822,1,1,13,14],[830,2,2,14,16]]],[38,1,1,16,17,[[926,1,1,16,17]]]],[3072,3073,3078,3148,8179,12962,16237,16859,17247,18780,20831,20839,20849,20970,21197,21198,23112]]],["base",[4,4,[[9,1,1,0,1,[[272,1,1,0,1]]],[25,2,2,1,3,[[818,1,1,1,2],[830,1,1,2,3]]],[38,1,1,3,4,[[926,1,1,3,4]]]],[8179,20839,21197,23112]]],["basest",[1,1,[[25,1,1,0,1,[[830,1,1,0,1]]]],[21198]]],["humble",[4,3,[[19,2,2,0,2,[[643,1,1,0,1],[656,1,1,1,2]]],[22,2,1,2,3,[[735,2,1,2,3]]]],[16859,17247,18780]]],["low",[4,4,[[17,1,1,0,1,[[440,1,1,0,1]]],[25,3,3,1,4,[[818,2,2,1,3],[822,1,1,3,4]]]],[12962,20831,20849,20970]]],["lower",[4,4,[[2,4,4,0,4,[[102,3,3,0,3],[103,1,1,3,4]]]],[3072,3073,3078,3148]]],["lowly",[1,1,[[18,1,1,0,1,[[615,1,1,0,1]]]],[16237]]]]},{"k":"H8218","v":[["place",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18278]]]]},{"k":"H8219","v":[["*",[20,19,[[4,1,1,0,1,[[153,1,1,0,1]]],[5,7,6,1,7,[[195,1,1,1,2],[196,1,1,2,3],[197,3,2,3,5],[198,1,1,5,6],[201,1,1,6,7]]],[6,1,1,7,8,[[211,1,1,7,8]]],[10,1,1,8,9,[[300,1,1,8,9]]],[12,1,1,9,10,[[364,1,1,9,10]]],[13,4,4,10,14,[[367,1,1,10,11],[375,1,1,11,12],[392,1,1,12,13],[394,1,1,13,14]]],[23,3,3,14,17,[[761,1,1,14,15],[776,1,1,15,16],[777,1,1,16,17]]],[30,1,1,17,18,[[888,1,1,17,18]]],[37,1,1,18,19,[[917,1,1,18,19]]]],[4899,6038,6104,6109,6123,6138,6235,6518,9106,11137,11209,11391,11742,11782,19383,19775,19788,22529,22969]]],["+",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22529]]],["country",[2,2,[[13,2,2,0,2,[[392,1,1,0,1],[394,1,1,1,2]]]],[11742,11782]]],["plain",[2,2,[[23,1,1,0,1,[[761,1,1,0,1]]],[37,1,1,1,2,[[917,1,1,1,2]]]],[19383,22969]]],["plains",[2,2,[[12,1,1,0,1,[[364,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[11137,11391]]],["vale",[5,5,[[4,1,1,0,1,[[153,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[10,1,1,2,3,[[300,1,1,2,3]]],[13,1,1,3,4,[[367,1,1,3,4]]],[23,1,1,4,5,[[777,1,1,4,5]]]],[4899,6104,9106,11209,19788]]],["valley",[6,5,[[5,4,3,0,3,[[197,3,2,0,2],[201,1,1,2,3]]],[6,1,1,3,4,[[211,1,1,3,4]]],[23,1,1,4,5,[[776,1,1,4,5]]]],[6109,6123,6235,6518,19775]]],["valleys",[2,2,[[5,2,2,0,2,[[195,1,1,0,1],[198,1,1,1,2]]]],[6038,6138]]]]},{"k":"H8220","v":[["idleness",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17511]]]]},{"k":"H8221","v":[["*",[2,2,[[3,2,2,0,2,[[150,2,2,0,2]]]],[4826,4827]]],["+",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4827]]],["Shepham",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4826]]]]},{"k":"H8222","v":[["*",[5,5,[[2,1,1,0,1,[[102,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]],[25,2,2,2,4,[[825,2,2,2,4]]],[32,1,1,4,5,[[895,1,1,4,5]]]],[3097,8535,21073,21078,22615]]],["beard",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8535]]],["lip",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3097]]],["lips",[3,3,[[25,2,2,0,2,[[825,2,2,0,2]]],[32,1,1,2,3,[[895,1,1,2,3]]]],[21073,21078,22615]]]]},{"k":"H8223","v":[["Shapham",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10440]]]]},{"k":"H8224","v":[["Siphmoth",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[8006]]]]},{"k":"H8225","v":[["Shiphmite",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11136]]]]},{"k":"H8226","v":[["treasures",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5829]]]]},{"k":"H8227","v":[["*",[34,28,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[11,10,7,2,9,[[334,9,6,2,8],[337,1,1,8,9]]],[13,8,5,9,14,[[400,8,5,9,14]]],[18,1,1,14,15,[[581,1,1,14,15]]],[19,1,1,15,16,[[657,1,1,15,16]]],[23,11,11,16,27,[[770,1,1,16,17],[773,1,1,17,18],[780,3,3,18,21],[783,1,1,21,22],[784,3,3,22,25],[785,1,1,25,26],[787,1,1,26,27]]],[25,1,1,27,28,[[809,1,1,27,28]]]],[3002,5297,10148,10153,10154,10155,10157,10159,10244,11941,11948,11949,11951,11953,15589,17277,19596,19638,19852,19853,19854,19937,19946,19950,19952,19959,20003,20615]]],["Shaphan",[30,24,[[11,10,7,0,7,[[334,9,6,0,6],[337,1,1,6,7]]],[13,8,5,7,12,[[400,8,5,7,12]]],[23,11,11,12,23,[[770,1,1,12,13],[773,1,1,13,14],[780,3,3,14,17],[783,1,1,17,18],[784,3,3,18,21],[785,1,1,21,22],[787,1,1,22,23]]],[25,1,1,23,24,[[809,1,1,23,24]]]],[10148,10153,10154,10155,10157,10159,10244,11941,11948,11949,11951,11953,19596,19638,19852,19853,19854,19937,19946,19950,19952,19959,20003,20615]]],["coney",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3002,5297]]],["conies",[2,2,[[18,1,1,0,1,[[581,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[15589,17277]]]]},{"k":"H8228","v":[["abundance",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5829]]]]},{"k":"H8229","v":[["*",[6,5,[[11,2,1,0,1,[[321,2,1,0,1]]],[17,2,2,1,3,[[457,1,1,1,2],[473,1,1,2,3]]],[22,1,1,3,4,[[738,1,1,3,4]]],[25,1,1,4,5,[[827,1,1,4,5]]]],[9773,13400,13827,18827,21110]]],["+",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21110]]],["abundance",[2,2,[[17,2,2,0,2,[[457,1,1,0,1],[473,1,1,1,2]]]],[13400,13827]]],["company",[2,1,[[11,2,1,0,1,[[321,2,1,0,1]]]],[9773]]],["multitude",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18827]]]]},{"k":"H8230","v":[["Shiphi",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10422]]]]},{"k":"H8231","v":[["goodly",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14098]]]]},{"k":"H8232","v":[["*",[3,3,[[26,3,3,0,3,[[853,2,2,0,2],[855,1,1,2,3]]]],[21839,21864,21906]]],["+",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[855,1,1,1,2]]]],[21839,21906]]],["acceptable",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]]]},{"k":"H8233","v":[["goodly",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1494]]]]},{"k":"H8234","v":[["Shapher",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4783,4784]]]]},{"k":"H8235","v":[["garnished",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13480]]]]},{"k":"H8236","v":[["Shiphrah",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1547]]]]},{"k":"H8237","v":[["pavilion",[1,1,[[23,1,1,0,1,[[787,1,1,0,1]]]],[20007]]]]},{"k":"H8238","v":[["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21924]]]]},{"k":"H8239","v":[["*",[5,4,[[11,1,1,0,1,[[316,1,1,0,1]]],[18,1,1,1,2,[[499,1,1,1,2]]],[22,1,1,2,3,[[704,1,1,2,3]]],[25,2,1,3,4,[[825,2,1,3,4]]]],[9641,14219,18142,21059]]],["brought",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14219]]],["on",[3,2,[[11,1,1,0,1,[[316,1,1,0,1]]],[25,2,1,1,2,[[825,2,1,1,2]]]],[9641,21059]]],["ordain",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18142]]]]},{"k":"H8240","v":[["*",[2,2,[[18,1,1,0,1,[[545,1,1,0,1]]],[25,1,1,1,2,[[841,1,1,1,2]]]],[14913,21520]]],["hooks",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21520]]],["pots",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14913]]]]},{"k":"H8241","v":[["little",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18731]]]]},{"k":"H8242","v":[["*",[48,46,[[0,5,4,0,4,[[36,1,1,0,1],[41,4,3,1,4]]],[2,1,1,4,5,[[100,1,1,4,5]]],[5,1,1,5,6,[[195,1,1,5,6]]],[9,2,2,6,8,[[269,1,1,6,7],[287,1,1,7,8]]],[10,4,3,8,11,[[310,2,2,8,10],[311,2,1,10,11]]],[11,3,3,11,14,[[318,1,1,11,12],[331,2,2,12,14]]],[12,1,1,14,15,[[358,1,1,14,15]]],[15,1,1,15,16,[[421,1,1,15,16]]],[16,4,4,16,20,[[429,4,4,16,20]]],[17,1,1,20,21,[[451,1,1,20,21]]],[18,3,3,21,24,[[507,1,1,21,22],[512,1,1,22,23],[546,1,1,23,24]]],[22,8,8,24,32,[[681,1,1,24,25],[693,1,1,25,26],[698,1,1,26,27],[700,1,1,27,28],[715,2,2,28,30],[728,1,1,30,31],[736,1,1,31,32]]],[23,4,4,32,36,[[748,1,1,32,33],[750,1,1,33,34],[792,1,1,34,35],[793,1,1,35,36]]],[24,1,1,36,37,[[798,1,1,36,37]]],[25,2,2,37,39,[[808,1,1,37,38],[828,1,1,38,39]]],[26,1,1,39,40,[[858,1,1,39,40]]],[28,2,2,40,42,[[876,2,2,40,42]]],[29,1,1,42,43,[[886,1,1,42,43]]],[31,3,3,43,46,[[891,3,3,43,46]]]],[1117,1277,1279,1287,3029,6041,8112,8590,9439,9440,9478,9704,10062,10063,10950,12512,12763,12764,12765,12766,13253,14330,14423,14946,17731,17963,18031,18064,18353,18354,18665,18791,19035,19115,20117,20130,20342,20595,21152,21991,22299,22304,22491,22563,22564,22566]]],["sack",[4,4,[[0,3,3,0,3,[[41,3,3,0,3]]],[2,1,1,3,4,[[100,1,1,3,4]]]],[1277,1279,1287,3029]]],["sackcloth",[41,40,[[0,1,1,0,1,[[36,1,1,0,1]]],[9,2,2,1,3,[[269,1,1,1,2],[287,1,1,2,3]]],[10,4,3,3,6,[[310,2,2,3,5],[311,2,1,5,6]]],[11,3,3,6,9,[[318,1,1,6,7],[331,2,2,7,9]]],[12,1,1,9,10,[[358,1,1,9,10]]],[16,4,4,10,14,[[429,4,4,10,14]]],[17,1,1,14,15,[[451,1,1,14,15]]],[18,3,3,15,18,[[507,1,1,15,16],[512,1,1,16,17],[546,1,1,17,18]]],[22,8,8,18,26,[[681,1,1,18,19],[693,1,1,19,20],[698,1,1,20,21],[700,1,1,21,22],[715,2,2,22,24],[728,1,1,24,25],[736,1,1,25,26]]],[23,4,4,26,30,[[748,1,1,26,27],[750,1,1,27,28],[792,1,1,28,29],[793,1,1,29,30]]],[24,1,1,30,31,[[798,1,1,30,31]]],[25,2,2,31,33,[[808,1,1,31,32],[828,1,1,32,33]]],[26,1,1,33,34,[[858,1,1,33,34]]],[28,2,2,34,36,[[876,2,2,34,36]]],[29,1,1,36,37,[[886,1,1,36,37]]],[31,3,3,37,40,[[891,3,3,37,40]]]],[1117,8112,8590,9439,9440,9478,9704,10062,10063,10950,12763,12764,12765,12766,13253,14330,14423,14946,17731,17963,18031,18064,18353,18354,18665,18791,19035,19115,20117,20130,20342,20595,21152,21991,22299,22304,22491,22563,22564,22566]]],["sackclothes",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12512]]],["sacks",[2,2,[[0,1,1,0,1,[[41,1,1,0,1]]],[5,1,1,1,2,[[195,1,1,1,2]]]],[1287,6041]]]]},{"k":"H8243","v":[["legs",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21791]]]]},{"k":"H8244","v":[["bound",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20324]]]]},{"k":"H8245","v":[["*",[12,11,[[14,1,1,0,1,[[410,1,1,0,1]]],[17,1,1,1,2,[[456,1,1,1,2]]],[18,2,2,2,4,[[579,1,1,2,3],[604,1,1,3,4]]],[19,1,1,4,5,[[635,1,1,4,5]]],[22,1,1,5,6,[[707,1,1,5,6]]],[23,5,4,6,10,[[745,1,1,6,7],[749,1,1,7,8],[775,2,1,8,9],[788,1,1,9,10]]],[26,1,1,10,11,[[858,1,1,10,11]]]],[12230,13387,15528,16122,16636,18213,18958,19064,19719,20037,22002]]],["+",[1,1,[[23,1,1,0,1,[[745,1,1,0,1]]]],[18958]]],["Watch",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12230]]],["remain",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13387]]],["waketh",[1,1,[[18,1,1,0,1,[[604,1,1,0,1]]]],[16122]]],["watch",[5,5,[[18,1,1,0,1,[[579,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]],[23,3,3,2,5,[[749,1,1,2,3],[775,1,1,3,4],[788,1,1,4,5]]]],[15528,18213,19064,19719,20037]]],["watched",[2,2,[[23,1,1,0,1,[[775,1,1,0,1]]],[26,1,1,1,2,[[858,1,1,1,2]]]],[19719,22002]]],["watching",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16636]]]]},{"k":"H8246","v":[["almonds",[6,4,[[1,6,4,0,4,[[74,3,2,0,2],[86,3,2,2,4]]]],[2228,2229,2623,2624]]]]},{"k":"H8247","v":[["*",[4,4,[[0,1,1,0,1,[[42,1,1,0,1]]],[3,1,1,1,2,[[133,1,1,1,2]]],[20,1,1,2,3,[[670,1,1,2,3]]],[23,1,1,3,4,[[745,1,1,3,4]]]],[1301,4252,17528,18957]]],["almonds",[2,2,[[0,1,1,0,1,[[42,1,1,0,1]]],[3,1,1,1,2,[[133,1,1,1,2]]]],[1301,4252]]],["tree",[2,2,[[20,1,1,0,1,[[670,1,1,0,1]]],[23,1,1,1,2,[[745,1,1,1,2]]]],[17528,18957]]]]},{"k":"H8248","v":[["*",[60,59,[[0,18,18,0,18,[[1,2,2,0,2],[18,4,4,2,6],[20,1,1,6,7],[23,6,6,7,13],[28,5,5,13,18]]],[1,4,4,18,22,[[51,3,3,18,21],[81,1,1,21,22]]],[3,4,4,22,26,[[121,3,3,22,25],[136,1,1,25,26]]],[4,1,1,26,27,[[163,1,1,26,27]]],[6,2,1,27,28,[[214,2,1,27,28]]],[8,1,1,28,29,[[265,1,1,28,29]]],[9,1,1,29,30,[[289,1,1,29,30]]],[12,1,1,30,31,[[348,1,1,30,31]]],[13,1,1,31,32,[[394,1,1,31,32]]],[16,1,1,32,33,[[426,1,1,32,33]]],[17,2,2,33,35,[[456,1,1,33,34],[457,1,1,34,35]]],[18,7,7,35,42,[[513,1,1,35,36],[537,1,1,36,37],[546,1,1,37,38],[555,1,1,38,39],[557,1,1,39,40],[581,2,2,40,42]]],[19,1,1,42,43,[[652,1,1,42,43]]],[20,1,1,43,44,[[660,1,1,43,44]]],[21,1,1,44,45,[[678,1,1,44,45]]],[22,2,2,45,47,[[705,1,1,45,46],[721,1,1,46,47]]],[23,7,7,47,54,[[752,1,1,47,48],[753,1,1,48,49],[760,1,1,49,50],[767,1,1,50,51],[769,2,2,51,53],[779,1,1,53,54]]],[25,2,2,54,56,[[818,1,1,54,55],[833,1,1,55,56]]],[28,1,1,56,57,[[878,1,1,56,57]]],[29,1,1,57,58,[[880,1,1,57,58]]],[34,1,1,58,59,[[904,1,1,58,59]]]],[36,40,489,490,491,492,532,605,609,610,634,636,637,797,798,802,803,805,1570,1571,1573,2458,3816,3818,3819,4319,5218,6618,7989,8668,10690,11779,12709,13379,13396,14446,14810,14956,15128,15203,15582,15584,17134,17339,17642,18154,18525,19167,19190,19343,19499,19549,19551,19825,20832,21254,22361,22391,22763]]],["+",[11,11,[[0,4,4,0,4,[[1,2,2,0,2],[28,2,2,2,4]]],[1,2,2,4,6,[[51,2,2,4,6]]],[3,3,3,6,9,[[121,3,3,6,9]]],[28,1,1,9,10,[[878,1,1,9,10]]],[34,1,1,10,11,[[904,1,1,10,11]]]],[36,40,798,805,1571,1573,3816,3818,3819,22361,22763]]],["drink",[38,37,[[0,11,11,0,11,[[18,4,4,0,4],[20,1,1,4,5],[23,6,6,5,11]]],[1,1,1,11,12,[[81,1,1,11,12]]],[3,1,1,12,13,[[136,1,1,12,13]]],[6,2,1,13,14,[[214,2,1,13,14]]],[8,1,1,14,15,[[265,1,1,14,15]]],[9,1,1,15,16,[[289,1,1,15,16]]],[12,1,1,16,17,[[348,1,1,16,17]]],[13,1,1,17,18,[[394,1,1,17,18]]],[16,1,1,18,19,[[426,1,1,18,19]]],[17,1,1,19,20,[[457,1,1,19,20]]],[18,6,6,20,26,[[513,1,1,20,21],[537,1,1,21,22],[546,1,1,22,23],[555,1,1,23,24],[557,1,1,24,25],[581,1,1,25,26]]],[19,1,1,26,27,[[652,1,1,26,27]]],[21,1,1,27,28,[[678,1,1,27,28]]],[22,1,1,28,29,[[721,1,1,28,29]]],[23,7,7,29,36,[[752,1,1,29,30],[753,1,1,30,31],[760,1,1,31,32],[767,1,1,32,33],[769,2,2,33,35],[779,1,1,35,36]]],[29,1,1,36,37,[[880,1,1,36,37]]]],[489,490,491,492,532,605,609,610,634,636,637,2458,4319,6618,7989,8668,10690,11779,12709,13396,14446,14810,14956,15128,15203,15582,17134,17642,18525,19167,19190,19343,19499,19549,19551,19825,22391]]],["moistened",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13379]]],["water",[7,7,[[0,2,2,0,2,[[28,2,2,0,2]]],[1,1,1,2,3,[[51,1,1,2,3]]],[20,1,1,3,4,[[660,1,1,3,4]]],[22,1,1,4,5,[[705,1,1,4,5]]],[25,2,2,5,7,[[818,1,1,5,6],[833,1,1,6,7]]]],[802,803,1570,17339,18154,20832,21254]]],["watered",[1,1,[[0,1,1,0,1,[[28,1,1,0,1]]]],[797]]],["wateredst",[1,1,[[4,1,1,0,1,[[163,1,1,0,1]]]],[5218]]],["watereth",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15584]]]]},{"k":"H8249","v":[["drink",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15530]]]]},{"k":"H8250","v":[["*",[2,2,[[19,1,1,0,1,[[630,1,1,0,1]]],[27,1,1,1,2,[[863,1,1,1,2]]]],[16463,22110]]],["drink",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22110]]],["marrow",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16463]]]]},{"k":"H8251","v":[["*",[28,26,[[4,1,1,0,1,[[181,1,1,0,1]]],[10,3,2,1,3,[[301,3,2,1,3]]],[11,3,2,3,5,[[335,3,2,3,5]]],[13,1,1,5,6,[[381,1,1,5,6]]],[22,1,1,6,7,[[744,1,1,6,7]]],[23,5,5,7,12,[[748,1,1,7,8],[751,1,1,8,9],[757,1,1,9,10],[760,1,1,10,11],[776,1,1,11,12]]],[25,8,8,12,20,[[806,1,1,12,13],[808,1,1,13,14],[812,2,2,14,16],[821,3,3,16,19],[838,1,1,19,20]]],[26,3,3,20,23,[[858,1,1,20,21],[860,1,1,21,22],[861,1,1,22,23]]],[27,1,1,23,24,[[870,1,1,23,24]]],[33,1,1,24,25,[[902,1,1,24,25]]],[37,1,1,25,26,[[919,1,1,25,26]]]],[5696,9113,9115,10178,10189,11498,18925,19028,19149,19293,19354,19765,20557,20597,20673,20676,20902,20903,20925,21420,22015,22067,22092,22218,22718,23006]]],["abomination",[7,5,[[10,3,2,0,2,[[301,3,2,0,2]]],[11,2,1,2,3,[[335,2,1,2,3]]],[26,2,2,3,5,[[860,1,1,3,4],[861,1,1,4,5]]]],[9113,9115,10178,22067,22092]]],["abominations",[13,13,[[4,1,1,0,1,[[181,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]],[23,4,4,3,7,[[748,1,1,3,4],[751,1,1,4,5],[757,1,1,5,6],[776,1,1,6,7]]],[25,3,3,7,10,[[821,3,3,7,10]]],[26,1,1,10,11,[[858,1,1,10,11]]],[27,1,1,11,12,[[870,1,1,11,12]]],[37,1,1,12,13,[[919,1,1,12,13]]]],[5696,10189,18925,19028,19149,19293,19765,20902,20903,20925,22015,22218,23006]]],["detestable",[1,1,[[23,1,1,0,1,[[760,1,1,0,1]]]],[19354]]],["filth",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22718]]],["idols",[1,1,[[13,1,1,0,1,[[381,1,1,0,1]]]],[11498]]],["things",[5,5,[[25,5,5,0,5,[[806,1,1,0,1],[808,1,1,1,2],[812,2,2,2,4],[838,1,1,4,5]]]],[20557,20597,20673,20676,21420]]]]},{"k":"H8252","v":[["*",[41,41,[[5,2,2,0,2,[[197,1,1,0,1],[200,1,1,1,2]]],[6,6,6,2,8,[[213,2,2,2,4],[215,1,1,4,5],[218,1,1,5,6],[228,2,2,6,8]]],[7,1,1,8,9,[[234,1,1,8,9]]],[11,1,1,9,10,[[323,1,1,9,10]]],[12,1,1,10,11,[[341,1,1,10,11]]],[13,5,5,11,16,[[380,3,3,11,14],[386,1,1,14,15],[389,1,1,15,16]]],[17,4,4,16,20,[[438,2,2,16,18],[469,1,1,18,19],[472,1,1,19,20]]],[18,3,3,20,23,[[553,1,1,20,21],[560,1,1,21,22],[571,1,1,22,23]]],[19,1,1,23,24,[[642,1,1,23,24]]],[22,7,7,24,31,[[685,1,1,24,25],[692,1,1,25,26],[696,1,1,26,27],[708,1,1,27,28],[710,1,1,28,29],[735,1,1,29,30],[740,1,1,30,31]]],[23,6,6,31,37,[[774,1,1,31,32],[790,1,1,32,33],[791,2,2,33,35],[792,1,1,35,36],[793,1,1,36,37]]],[25,3,3,37,40,[[817,2,2,37,39],[839,1,1,39,40]]],[37,1,1,40,41,[[911,1,1,40,41]]]],[6130,6202,6579,6598,6654,6747,7000,7020,7190,9849,10425,11476,11480,11481,11617,11677,12917,12930,13712,13786,15089,15242,15444,16825,17786,17935,18001,18232,18276,18785,18855,19677,20072,20079,20080,20091,20150,20804,20811,21436,22889]]],["appeaseth",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16825]]],["idleness",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20811]]],["quiet",[15,15,[[6,2,2,0,2,[[228,2,2,0,2]]],[11,1,1,2,3,[[323,1,1,2,3]]],[12,1,1,3,4,[[341,1,1,3,4]]],[13,4,4,4,8,[[380,2,2,4,6],[386,1,1,6,7],[389,1,1,7,8]]],[17,1,1,8,9,[[438,1,1,8,9]]],[22,2,2,9,11,[[685,1,1,9,10],[692,1,1,10,11]]],[23,3,3,11,14,[[791,2,2,11,13],[793,1,1,13,14]]],[25,1,1,14,15,[[817,1,1,14,15]]]],[7000,7020,9849,10425,11476,11480,11617,11677,12917,17786,17935,20079,20080,20150,20804]]],["quieteth",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13786]]],["quietness",[4,4,[[6,1,1,0,1,[[218,1,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[22,2,2,2,4,[[708,1,1,2,3],[710,1,1,3,4]]]],[6747,13712,18232,18276]]],["rest",[15,15,[[5,1,1,0,1,[[200,1,1,0,1]]],[6,3,3,1,4,[[213,2,2,1,3],[215,1,1,3,4]]],[7,1,1,4,5,[[234,1,1,4,5]]],[13,1,1,5,6,[[380,1,1,5,6]]],[17,1,1,6,7,[[438,1,1,6,7]]],[18,1,1,7,8,[[571,1,1,7,8]]],[22,3,3,8,11,[[696,1,1,8,9],[735,1,1,9,10],[740,1,1,10,11]]],[23,2,2,11,13,[[774,1,1,11,12],[790,1,1,12,13]]],[25,1,1,13,14,[[839,1,1,13,14]]],[37,1,1,14,15,[[911,1,1,14,15]]]],[6202,6579,6598,6654,7190,11481,12930,15444,18001,18785,18855,19677,20072,21436,22889]]],["rested",[1,1,[[5,1,1,0,1,[[197,1,1,0,1]]]],[6130]]],["settled",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20091]]],["still",[2,2,[[18,2,2,0,2,[[553,1,1,0,1],[560,1,1,1,2]]]],[15089,15242]]]]},{"k":"H8253","v":[["quietness",[1,1,[[12,1,1,0,1,[[359,1,1,0,1]]]],[10973]]]]},{"k":"H8254","v":[["*",[22,21,[[0,1,1,0,1,[[22,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[9,2,2,2,4,[[280,1,1,2,3],[284,1,1,3,4]]],[10,1,1,4,5,[[310,1,1,4,5]]],[14,4,4,5,9,[[410,4,4,5,9]]],[16,2,2,9,11,[[428,1,1,9,10],[429,1,1,10,11]]],[17,4,3,11,14,[[441,2,1,11,12],[463,1,1,12,13],[466,1,1,13,14]]],[22,4,4,14,18,[[711,1,1,14,15],[718,1,1,15,16],[724,1,1,16,17],[733,1,1,17,18]]],[23,2,2,18,20,[[776,2,2,18,20]]],[37,1,1,20,21,[[921,1,1,20,21]]]],[587,2130,8382,8490,9447,12226,12227,12230,12234,12756,12769,12980,13519,13594,18297,18432,18592,18742,19740,19741,23040]]],["+",[4,3,[[9,1,1,0,1,[[280,1,1,0,1]]],[17,2,1,1,2,[[441,2,1,1,2]]],[37,1,1,2,3,[[921,1,1,2,3]]]],[8382,12980,23040]]],["pay",[4,4,[[1,1,1,0,1,[[71,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[16,2,2,2,4,[[428,1,1,2,3],[429,1,1,3,4]]]],[2130,9447,12756,12769]]],["receive",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8490]]],["receiver",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18297]]],["spend",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18742]]],["weigh",[2,2,[[14,1,1,0,1,[[410,1,1,0,1]]],[22,1,1,1,2,[[724,1,1,1,2]]]],[12230,18592]]],["weighed",[9,9,[[0,1,1,0,1,[[22,1,1,0,1]]],[14,3,3,1,4,[[410,3,3,1,4]]],[17,2,2,4,6,[[463,1,1,4,5],[466,1,1,5,6]]],[22,1,1,6,7,[[718,1,1,6,7]]],[23,2,2,7,9,[[776,2,2,7,9]]]],[587,12226,12227,12234,13519,13594,18432,19740,19741]]]]},{"k":"H8255","v":[["*",[88,54,[[0,2,2,0,2,[[22,2,2,0,2]]],[1,14,8,2,10,[[70,1,1,2,3],[79,6,3,3,6],[87,7,4,6,10]]],[2,14,8,10,18,[[94,2,1,10,11],[116,12,7,11,18]]],[3,33,18,18,36,[[119,4,2,18,20],[123,26,14,20,34],[134,2,1,34,35],[147,1,1,35,36]]],[5,2,1,36,37,[[193,2,1,36,37]]],[8,3,3,37,40,[[244,1,1,37,38],[252,2,2,38,40]]],[9,2,2,40,42,[[280,1,1,40,41],[290,1,1,41,42]]],[11,7,4,42,46,[[319,6,3,42,45],[327,1,1,45,46]]],[12,1,1,46,47,[[358,1,1,46,47]]],[13,1,1,47,48,[[369,1,1,47,48]]],[15,2,2,48,50,[[417,1,1,48,49],[422,1,1,49,50]]],[23,1,1,50,51,[[776,1,1,50,51]]],[25,5,2,51,53,[[805,1,1,51,52],[846,4,1,52,53]]],[29,1,1,53,54,[[886,1,1,53,54]]]],[586,587,2109,2395,2397,2406,2657,2658,2659,2662,2845,3573,3574,3575,3576,3577,3586,3595,3739,3742,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935,3936,4273,4716,5997,7399,7623,7625,8382,8716,9708,9723,9725,9945,10959,11238,12397,12581,19740,20539,21642,22486]]],["+",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3739]]],["shekel",[42,33,[[1,10,6,0,6,[[79,6,3,0,3],[87,4,3,3,6]]],[2,4,3,6,9,[[94,1,1,6,7],[116,3,2,7,9]]],[3,18,17,9,26,[[119,3,2,9,11],[123,14,14,11,25],[134,1,1,25,26]]],[8,1,1,26,27,[[244,1,1,26,27]]],[11,6,3,27,30,[[319,6,3,27,30]]],[15,1,1,30,31,[[422,1,1,30,31]]],[25,1,1,31,32,[[846,1,1,31,32]]],[29,1,1,32,33,[[886,1,1,32,33]]]],[2395,2397,2406,2657,2658,2659,2845,3573,3595,3739,3742,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935,3936,4273,7399,9708,9723,9725,12581,21642,22486]]],["shekels",[45,39,[[0,2,2,0,2,[[22,2,2,0,2]]],[1,4,4,2,6,[[70,1,1,2,3],[87,3,3,3,6]]],[2,10,7,6,13,[[94,1,1,6,7],[116,9,6,7,13]]],[3,14,14,13,27,[[123,12,12,13,25],[134,1,1,25,26],[147,1,1,26,27]]],[5,2,1,27,28,[[193,2,1,27,28]]],[8,2,2,28,30,[[252,2,2,28,30]]],[9,2,2,30,32,[[280,1,1,30,31],[290,1,1,31,32]]],[11,1,1,32,33,[[327,1,1,32,33]]],[12,1,1,33,34,[[358,1,1,33,34]]],[13,1,1,34,35,[[369,1,1,34,35]]],[15,1,1,35,36,[[417,1,1,35,36]]],[23,1,1,36,37,[[776,1,1,36,37]]],[25,4,2,37,39,[[805,1,1,37,38],[846,3,1,38,39]]]],[586,587,2109,2657,2658,2662,2845,3573,3574,3575,3576,3577,3586,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,4273,4716,5997,7623,7625,8382,8716,9945,10959,11238,12397,19740,20539,21642]]]]},{"k":"H8256","v":[["*",[7,7,[[10,1,1,0,1,[[300,1,1,0,1]]],[12,1,1,1,2,[[364,1,1,1,2]]],[13,2,2,2,4,[[367,1,1,2,3],[375,1,1,3,4]]],[18,1,1,4,5,[[555,1,1,4,5]]],[22,1,1,5,6,[[687,1,1,5,6]]],[29,1,1,6,7,[[885,1,1,6,7]]]],[9106,11137,11209,11391,15160,17839,22478]]],["fruit",[1,1,[[29,1,1,0,1,[[885,1,1,0,1]]]],[22478]]],["sycomores",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17839]]],["trees",[5,5,[[10,1,1,0,1,[[300,1,1,0,1]]],[12,1,1,1,2,[[364,1,1,1,2]]],[13,2,2,2,4,[[367,1,1,2,3],[375,1,1,3,4]]],[18,1,1,4,5,[[555,1,1,4,5]]]],[9106,11137,11209,11391,15160]]]]},{"k":"H8257","v":[["*",[6,6,[[3,1,1,0,1,[[127,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[23,1,1,2,3,[[795,1,1,2,3]]],[25,1,1,3,4,[[833,1,1,3,4]]],[29,2,2,4,6,[[886,1,1,4,5],[887,1,1,5,6]]]],[4026,13889,20276,21262,22489,22500]]],["+",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21262]]],["down",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13889]]],["drowned",[2,2,[[29,2,2,0,2,[[886,1,1,0,1],[887,1,1,1,2]]]],[22489,22500]]],["quenched",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4026]]],["sink",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20276]]]]},{"k":"H8258","v":[["strakes",[1,1,[[2,1,1,0,1,[[103,1,1,0,1]]]],[3148]]]]},{"k":"H8259","v":[["*",[22,22,[[0,3,3,0,3,[[17,1,1,0,1],[18,1,1,1,2],[25,1,1,2,3]]],[1,1,1,3,4,[[63,1,1,3,4]]],[3,2,2,4,6,[[137,1,1,4,5],[139,1,1,5,6]]],[4,1,1,6,7,[[178,1,1,6,7]]],[6,1,1,7,8,[[215,1,1,7,8]]],[8,1,1,8,9,[[248,1,1,8,9]]],[9,2,2,9,11,[[272,1,1,9,10],[290,1,1,10,11]]],[11,2,2,11,13,[[321,2,2,11,13]]],[12,1,1,13,14,[[352,1,1,13,14]]],[18,4,4,14,18,[[491,1,1,14,15],[530,1,1,15,16],[562,1,1,16,17],[579,1,1,17,18]]],[19,1,1,18,19,[[634,1,1,18,19]]],[21,1,1,19,20,[[676,1,1,19,20]]],[23,1,1,20,21,[[750,1,1,20,21]]],[24,1,1,21,22,[[799,1,1,21,22]]]],[440,485,700,1913,4360,4444,5581,6651,7503,8173,8712,9786,9788,10820,14082,14721,15282,15540,16581,17624,19090,20404]]],["appeareth",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19090]]],["down",[6,6,[[4,1,1,0,1,[[178,1,1,0,1]]],[18,4,4,1,5,[[491,1,1,1,2],[530,1,1,2,3],[562,1,1,3,4],[579,1,1,4,5]]],[24,1,1,5,6,[[799,1,1,5,6]]]],[5581,14082,14721,15282,15540,20404]]],["forth",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17624]]],["looked",[6,6,[[0,2,2,0,2,[[17,1,1,0,1],[18,1,1,1,2]]],[1,1,1,2,3,[[63,1,1,2,3]]],[9,2,2,3,5,[[272,1,1,3,4],[290,1,1,4,5]]],[19,1,1,5,6,[[634,1,1,5,6]]]],[440,485,1913,8173,8712,16581]]],["looketh",[3,3,[[3,2,2,0,2,[[137,1,1,0,1],[139,1,1,1,2]]],[8,1,1,2,3,[[248,1,1,2,3]]]],[4360,4444,7503]]],["out",[5,5,[[0,1,1,0,1,[[25,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[11,2,2,2,4,[[321,2,2,2,4]]],[12,1,1,4,5,[[352,1,1,4,5]]]],[700,6651,9786,9788,10820]]]]},{"k":"H8260","v":[["windows",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8939]]]]},{"k":"H8261","v":[["*",[2,2,[[10,2,2,0,2,[[296,1,1,0,1],[297,1,1,1,2]]]],[8900,8938]]],["lights",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8900]]],["windows",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8938]]]]},{"k":"H8262","v":[["*",[7,6,[[2,4,4,0,4,[[100,3,3,0,3],[109,1,1,3,4]]],[4,2,1,4,5,[[159,2,1,4,5]]],[18,1,1,5,6,[[499,1,1,5,6]]]],[3008,3010,3040,3343,5137,14228]]],["+",[5,4,[[2,3,3,0,3,[[100,2,2,0,2],[109,1,1,2,3]]],[4,2,1,3,4,[[159,2,1,3,4]]]],[3008,3040,3343,5137]]],["abhorred",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14228]]],["abomination",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3010]]]]},{"k":"H8263","v":[["*",[11,11,[[2,9,9,0,9,[[96,1,1,0,1],[100,8,8,1,9]]],[22,1,1,9,10,[[744,1,1,9,10]]],[25,1,1,10,11,[[809,1,1,10,11]]]],[2900,3007,3008,3009,3010,3017,3020,3038,3039,18939,20614]]],["+",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3010]]],["abominable",[2,2,[[2,1,1,0,1,[[96,1,1,0,1]]],[25,1,1,1,2,[[809,1,1,1,2]]]],[2900,20614]]],["abomination",[8,8,[[2,7,7,0,7,[[100,7,7,0,7]]],[22,1,1,7,8,[[744,1,1,7,8]]]],[3007,3008,3009,3017,3020,3038,3039,18939]]]]},{"k":"H8264","v":[["*",[6,6,[[18,1,1,0,1,[[584,1,1,0,1]]],[19,1,1,1,2,[[655,1,1,1,2]]],[22,2,2,2,4,[[707,1,1,2,3],[711,1,1,3,4]]],[28,1,1,4,5,[[877,1,1,4,5]]],[33,1,1,5,6,[[901,1,1,5,6]]]],[15708,17211,18201,18283,22320,22703]]],["another",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22703]]],["appetite",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18201]]],["fro",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22320]]],["longing",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15708]]],["ranging",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17211]]],["run",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18283]]]]},{"k":"H8265","v":[["wanton",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17723]]]]},{"k":"H8266","v":[["*",[6,6,[[0,1,1,0,1,[[20,1,1,0,1]]],[2,1,1,1,2,[[108,1,1,1,2]]],[8,1,1,2,3,[[250,1,1,2,3]]],[18,2,2,3,5,[[521,1,1,3,4],[566,1,1,4,5]]],[22,1,1,5,6,[[741,1,1,5,6]]]],[536,3292,7589,14588,15359,18874]]],["+",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15359]]],["falsely",[2,2,[[0,1,1,0,1,[[20,1,1,0,1]]],[18,1,1,1,2,[[521,1,1,1,2]]]],[536,14588]]],["lie",[3,3,[[2,1,1,0,1,[[108,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]],[22,1,1,2,3,[[741,1,1,2,3]]]],[3292,7589,18874]]]]},{"k":"H8267","v":[["*",[113,109,[[1,3,3,0,3,[[54,1,1,0,1],[69,1,1,1,2],[72,1,1,2,3]]],[2,3,3,3,6,[[95,2,2,3,5],[108,1,1,5,6]]],[4,2,1,6,7,[[171,2,1,6,7]]],[8,1,1,7,8,[[260,1,1,7,8]]],[9,1,1,8,9,[[284,1,1,8,9]]],[10,2,2,9,11,[[312,2,2,9,11]]],[11,1,1,11,12,[[321,1,1,11,12]]],[13,2,2,12,14,[[384,2,2,12,14]]],[17,2,2,14,16,[[448,1,1,14,15],[471,1,1,15,16]]],[18,22,22,16,38,[[484,1,1,16,17],[504,1,1,17,18],[508,1,1,18,19],[510,1,1,19,20],[512,1,1,20,21],[515,1,1,21,22],[529,1,1,22,23],[540,1,1,23,24],[546,1,1,24,25],[578,1,1,25,26],[586,1,1,26,27],[596,8,8,27,35],[597,1,1,35,36],[621,2,2,36,38]]],[19,20,20,38,58,[[633,2,2,38,40],[637,1,1,40,41],[638,1,1,41,42],[639,3,3,42,45],[640,1,1,45,46],[641,1,1,46,47],[644,2,2,47,49],[646,2,2,49,51],[647,1,1,51,52],[648,1,1,52,53],[652,2,2,53,55],[653,1,1,55,56],[656,1,1,56,57],[658,1,1,57,58]]],[22,7,7,58,65,[[687,1,1,58,59],[706,1,1,59,60],[710,1,1,60,61],[722,1,1,61,62],[735,1,1,62,63],[737,2,2,63,65]]],[23,37,34,65,99,[[747,2,2,65,67],[749,2,2,67,69],[750,1,1,69,70],[751,3,3,70,73],[752,3,2,73,75],[753,2,2,75,77],[754,1,1,77,78],[757,1,1,78,79],[758,2,1,79,80],[760,1,1,80,81],[764,1,1,81,82],[767,5,4,82,86],[771,4,4,86,90],[772,1,1,90,91],[773,4,4,91,95],[781,1,1,95,96],[784,1,1,96,97],[787,1,1,97,98],[795,1,1,98,99]]],[25,1,1,99,100,[[814,1,1,99,100]]],[27,1,1,100,101,[[868,1,1,100,101]]],[32,2,2,101,103,[[894,1,1,101,102],[898,1,1,102,103]]],[34,1,1,103,104,[[904,1,1,103,104]]],[37,4,4,104,108,[[915,1,1,104,105],[918,1,1,105,106],[920,1,1,106,107],[923,1,1,107,108]]],[38,1,1,108,109,[[927,1,1,108,109]]]],[1641,2067,2151,2852,2854,3293,5424,7882,8491,9502,9503,9768,11563,11564,13157,13740,14009,14297,14349,14383,14429,14509,14713,14850,14939,15520,15757,15927,15967,15976,15984,16002,16016,16026,16061,16076,16313,16316,16557,16559,16674,16706,16736,16738,16741,16752,16777,16877,16880,16930,16934,16971,16990,17127,17131,17169,17236,17314,17844,18179,18266,18553,18769,18803,18813,19012,19025,19060,19089,19102,19123,19127,19128,19161,19163,19178,19180,19215,19291,19307,19355,19428,19498,19509,19510,19516,19606,19610,19611,19612,19633,19644,19656,19658,19666,19888,19957,19999,20229,20730,22179,22606,22660,22766,22940,22993,23018,23062,23125]]],["+",[4,4,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,1,1,1,2,[[95,1,1,1,2]]],[19,2,2,2,4,[[640,1,1,2,3],[656,1,1,3,4]]]],[2151,2852,16752,17236]]],["Lying",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16741]]],["cause",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15976]]],["deceit",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16971]]],["deceitful",[2,2,[[19,2,2,0,2,[[638,1,1,0,1],[658,1,1,1,2]]]],[16706,17314]]],["false",[19,19,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,1,1,1,2,[[171,1,1,1,2]]],[11,1,1,2,3,[[321,1,1,2,3]]],[17,1,1,3,4,[[471,1,1,3,4]]],[18,3,3,4,7,[[504,1,1,4,5],[596,2,2,5,7]]],[19,7,7,7,14,[[633,1,1,7,8],[639,1,1,8,9],[641,1,1,9,10],[646,2,2,10,12],[652,2,2,12,14]]],[23,3,3,14,17,[[758,1,1,14,15],[767,1,1,15,16],[781,1,1,16,17]]],[37,1,1,17,18,[[918,1,1,17,18]]],[38,1,1,18,19,[[927,1,1,18,19]]]],[2067,5424,9768,13740,14297,16002,16026,16559,16736,16777,16930,16934,17127,17131,19307,19516,19888,22993,23125]]],["falsehood",[13,13,[[9,1,1,0,1,[[284,1,1,0,1]]],[18,4,4,1,5,[[484,1,1,1,2],[596,1,1,2,3],[621,2,2,3,5]]],[22,3,3,5,8,[[706,1,1,5,6],[735,1,1,6,7],[737,1,1,7,8]]],[23,3,3,8,11,[[754,1,1,8,9],[757,1,1,9,10],[795,1,1,10,11]]],[27,1,1,11,12,[[868,1,1,11,12]]],[32,1,1,12,13,[[894,1,1,12,13]]]],[8491,14009,16016,16313,16316,18179,18769,18813,19215,19291,20229,22179,22606]]],["falsely",[12,12,[[2,2,2,0,2,[[95,1,1,0,1],[108,1,1,1,2]]],[4,1,1,2,3,[[171,1,1,2,3]]],[23,8,8,3,11,[[749,2,2,3,5],[750,1,1,5,6],[751,1,1,6,7],[752,1,1,7,8],[773,1,1,8,9],[784,1,1,9,10],[787,1,1,10,11]]],[37,1,1,11,12,[[915,1,1,11,12]]]],[2854,3293,5424,19060,19089,19102,19128,19163,19644,19957,19999,22940]]],["feignedly",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19012]]],["liar",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16877]]],["lie",[10,10,[[18,1,1,0,1,[[596,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]],[23,7,7,2,9,[[771,4,4,2,6],[772,1,1,6,7],[773,2,2,7,9]]],[37,1,1,9,10,[[920,1,1,9,10]]]],[15967,18553,19606,19610,19611,19612,19633,19656,19666,23018]]],["lies",[18,18,[[17,1,1,0,1,[[448,1,1,0,1]]],[18,2,2,1,3,[[540,1,1,1,2],[578,1,1,2,3]]],[22,2,2,3,5,[[687,1,1,3,4],[737,1,1,4,5]]],[23,9,9,5,14,[[753,2,2,5,7],[758,1,1,7,8],[760,1,1,8,9],[764,1,1,9,10],[767,4,4,10,14]]],[25,1,1,14,15,[[814,1,1,14,15]]],[32,1,1,15,16,[[898,1,1,15,16]]],[34,1,1,16,17,[[904,1,1,16,17]]],[37,1,1,17,18,[[923,1,1,17,18]]]],[13157,14850,15520,17844,18803,19178,19180,19307,19355,19428,19498,19509,19510,19516,20730,22660,22766,23062]]],["lying",[20,20,[[10,2,2,0,2,[[312,2,2,0,2]]],[13,2,2,2,4,[[384,2,2,2,4]]],[18,6,6,4,10,[[508,1,1,4,5],[529,1,1,5,6],[586,1,1,6,7],[596,2,2,7,9],[597,1,1,9,10]]],[19,6,6,10,16,[[633,1,1,10,11],[637,1,1,11,12],[639,1,1,12,13],[644,1,1,13,14],[648,1,1,14,15],[653,1,1,15,16]]],[22,1,1,16,17,[[710,1,1,16,17]]],[23,3,3,17,20,[[751,2,2,17,19],[773,1,1,19,20]]]],[9502,9503,11563,11564,14349,14713,15757,15927,16061,16076,16557,16674,16738,16880,16990,17169,18266,19123,19127,19658]]],["thing",[1,1,[[18,1,1,0,1,[[510,1,1,0,1]]]],[14383]]],["vain",[5,4,[[1,1,1,0,1,[[54,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]],[23,3,2,2,4,[[747,1,1,2,3],[752,2,1,3,4]]]],[1641,7882,19025,19161]]],["wrongfully",[4,4,[[18,4,4,0,4,[[512,1,1,0,1],[515,1,1,1,2],[546,1,1,2,3],[596,1,1,3,4]]]],[14429,14509,14939,15984]]]]},{"k":"H8268","v":[["*",[2,2,[[0,2,2,0,2,[[23,1,1,0,1],[29,1,1,1,2]]]],[611,868]]],["trough",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[611]]],["troughs",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[868]]]]},{"k":"H8269","v":[["*",[421,368,[[0,25,22,0,22,[[11,1,1,0,1],[20,2,2,1,3],[25,1,1,3,4],[36,1,1,4,5],[38,4,4,5,9],[39,11,9,9,18],[40,4,3,18,21],[46,1,1,21,22]]],[1,10,4,22,26,[[50,1,1,22,23],[51,1,1,23,24],[67,8,2,24,26]]],[3,17,14,26,40,[[137,1,1,26,27],[138,7,7,27,34],[139,2,2,34,36],[147,7,4,36,40]]],[4,5,2,40,42,[[153,4,1,40,41],[172,1,1,41,42]]],[5,2,2,42,44,[[191,2,2,42,44]]],[6,9,9,44,53,[[214,2,2,44,46],[215,1,1,46,47],[217,1,1,47,48],[218,3,3,48,51],[219,1,1,51,52],[220,1,1,52,53]]],[8,17,13,53,66,[[243,2,1,53,54],[247,1,1,54,55],[249,1,1,55,56],[252,2,2,56,58],[253,2,2,58,60],[257,3,2,60,62],[261,1,1,62,63],[264,5,3,63,66]]],[9,15,13,66,79,[[268,1,1,66,67],[269,1,1,67,68],[270,1,1,68,69],[276,3,3,69,72],[284,3,2,72,74],[285,2,2,74,76],[289,1,1,76,77],[290,3,2,77,79]]],[10,25,23,79,102,[[291,2,2,79,81],[292,3,2,81,83],[294,1,1,83,84],[295,1,1,84,85],[299,3,2,85,87],[301,3,3,87,90],[304,1,1,90,91],[305,1,1,91,92],[306,2,2,92,94],[310,4,4,94,98],[312,4,4,98,102]]],[11,25,22,102,124,[[313,6,5,102,107],[316,1,1,107,108],[317,1,1,108,109],[320,1,1,109,110],[321,3,1,110,111],[322,1,1,111,112],[323,6,6,112,118],[335,1,1,118,119],[336,2,2,119,121],[337,3,3,121,124]]],[12,47,37,124,161,[[348,2,2,124,126],[349,3,3,126,129],[350,1,1,129,130],[352,10,10,130,140],[356,3,3,140,143],[358,1,1,143,144],[359,1,1,144,145],[360,1,1,145,146],[361,3,2,146,148],[362,1,1,148,149],[363,2,1,149,150],[364,7,7,150,157],[365,7,2,157,159],[366,5,2,159,161]]],[13,51,47,161,208,[[367,1,1,161,162],[374,3,2,162,164],[378,3,3,164,167],[382,1,1,167,168],[383,4,3,168,171],[384,4,4,171,175],[387,3,2,175,177],[388,1,1,177,178],[389,5,5,178,183],[390,3,3,183,186],[391,2,1,186,187],[392,1,1,187,188],[394,2,2,188,190],[395,2,2,190,192],[396,4,4,192,196],[397,1,1,196,197],[398,4,4,197,201],[399,2,2,201,203],[400,1,1,203,204],[401,2,2,204,206],[402,2,2,206,208]]],[14,11,10,208,218,[[409,1,1,208,209],[410,5,4,209,213],[411,2,2,213,215],[412,3,3,215,218]]],[15,17,17,218,235,[[414,1,1,218,219],[415,8,8,219,227],[416,1,1,227,228],[419,1,1,228,229],[421,3,3,229,232],[423,1,1,232,233],[424,2,2,233,235]]],[16,15,13,235,248,[[426,8,6,235,241],[427,1,1,241,242],[428,2,2,242,244],[430,1,1,244,245],[431,1,1,245,246],[433,1,1,246,247],[434,1,1,247,248]]],[17,4,4,248,252,[[438,1,1,248,249],[464,1,1,249,250],[469,1,1,250,251],[474,1,1,251,252]]],[18,9,7,252,259,[[522,1,1,252,253],[545,3,1,253,254],[559,1,1,254,255],[582,1,1,255,256],[596,2,2,256,258],[625,1,1,258,259]]],[19,3,3,259,262,[[635,1,1,259,260],[646,1,1,260,261],[655,1,1,261,262]]],[20,3,3,262,265,[[668,3,3,262,265]]],[22,17,16,265,281,[[679,1,1,265,266],[681,3,3,266,269],[687,1,1,269,270],[688,1,1,270,271],[697,3,2,271,273],[699,1,1,273,274],[701,1,1,274,275],[708,1,1,275,276],[709,1,1,276,277],[710,1,1,277,278],[712,1,1,278,279],[721,1,1,279,280],[727,1,1,280,281]]],[23,56,52,281,333,[[745,1,1,281,282],[746,1,1,282,283],[748,1,1,283,284],[752,1,1,284,285],[761,2,1,285,286],[768,2,2,286,288],[769,2,2,288,290],[770,5,5,290,295],[773,1,1,295,296],[776,1,1,296,297],[778,4,3,297,300],[779,1,1,300,301],[780,5,4,301,305],[781,2,2,305,307],[782,6,6,307,313],[783,2,1,313,314],[784,2,2,314,316],[785,3,3,316,319],[786,2,2,319,321],[787,2,2,321,323],[788,2,2,323,325],[792,1,1,325,326],[793,2,2,326,328],[794,1,1,328,329],[795,2,2,329,331],[796,2,2,331,333]]],[24,4,4,333,337,[[797,1,1,333,334],[798,2,2,334,336],[801,1,1,336,337]]],[25,3,3,337,340,[[812,1,1,337,338],[818,1,1,338,339],[823,1,1,339,340]]],[26,18,15,340,355,[[850,6,6,340,346],[857,3,2,346,348],[858,2,2,348,350],[859,5,3,350,353],[860,1,1,353,354],[861,1,1,354,355]]],[27,8,8,355,363,[[864,1,1,355,356],[866,1,1,356,357],[868,3,3,357,360],[869,1,1,360,361],[870,1,1,361,362],[874,1,1,362,363]]],[29,2,2,363,365,[[879,1,1,363,364],[880,1,1,364,365]]],[32,1,1,365,366,[[899,1,1,365,366]]],[35,2,2,366,368,[[906,1,1,366,367],[908,1,1,367,368]]]],[313,535,545,718,1119,1150,1170,1171,1172,1174,1175,1176,1181,1188,1192,1193,1194,1195,1204,1205,1207,1426,1543,1568,2020,2024,4358,4383,4388,4389,4390,4396,4410,4415,4422,4433,4678,4712,4716,4718,4907,5436,5948,5949,6601,6606,6638,6719,6722,6725,6733,6784,6829,7381,7469,7558,7636,7673,7689,7706,7789,7794,7910,7970,7971,7976,8057,8119,8122,8243,8256,8258,8479,8483,8517,8524,8672,8694,8696,8736,8742,8775,8802,8846,8894,9073,9074,9123,9129,9132,9245,9269,9292,9299,9422,9423,9425,9427,9506,9511,9512,9513,9542,9543,9544,9546,9547,9616,9648,9748,9761,9794,9833,9838,9839,9843,9844,9848,10173,10214,10216,10241,10245,10248,10679,10694,10741,10748,10754,10761,10796,10797,10798,10799,10800,10801,10807,10813,10816,10818,10910,10923,10925,10936,10981,10985,11020,11021,11047,11103,11110,11112,11114,11117,11131,11140,11143,11144,11164,11170,11188,11196,11355,11356,11442,11443,11447,11513,11530,11537,11538,11567,11572,11573,11574,11628,11633,11652,11657,11665,11669,11670,11676,11687,11694,11700,11709,11743,11778,11785,11811,11821,11829,11833,11839,11851,11862,11878,11881,11896,11906,11919,11922,11941,11974,11975,12007,12011,12201,12221,12225,12226,12230,12238,12239,12257,12260,12266,12316,12336,12339,12341,12342,12343,12344,12345,12346,12375,12422,12543,12545,12549,12589,12655,12656,12705,12713,12716,12718,12720,12723,12742,12748,12759,12790,12802,12826,12837,12919,13541,13702,13859,14613,14927,15240,15628,15921,16059,16382,16618,16935,17198,17500,17509,17510,17677,17710,17711,17721,17835,17858,18015,18017,18040,18085,18221,18259,18260,18315,18533,18643,18964,18991,19036,19154,19382,19525,19532,19552,19553,19582,19583,19584,19588,19593,19637,19763,19811,19820,19822,19827,19854,19856,19861,19863,19888,19889,19899,19912,19913,19917,19920,19922,19926,19948,19954,19968,19970,19973,19976,19983,20001,20002,20027,20031,20087,20130,20165,20201,20269,20271,20286,20301,20316,20334,20341,20454,20656,20837,21003,21744,21745,21746,21747,21748,21755,21972,21986,21994,21996,22028,22035,22036,22041,22082,22132,22162,22181,22183,22194,22204,22223,22276,22379,22382,22667,22795,22823]]],["+",[8,8,[[1,1,1,0,1,[[50,1,1,0,1]]],[10,1,1,1,2,[[295,1,1,1,2]]],[13,2,2,2,4,[[387,1,1,2,3],[392,1,1,3,4]]],[14,1,1,4,5,[[410,1,1,4,5]]],[16,2,2,5,7,[[426,1,1,5,6],[431,1,1,6,7]]],[26,1,1,7,8,[[850,1,1,7,8]]]],[1543,8894,11628,11743,12225,12713,12802,21745]]],["Prince",[2,2,[[22,1,1,0,1,[[687,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]]],[17835,21986]]],["Princes",[3,3,[[18,2,2,0,2,[[596,2,2,0,2]]],[24,1,1,2,3,[[801,1,1,2,3]]]],[15921,16059,20454]]],["captain",[51,48,[[0,9,9,0,9,[[20,2,2,0,2],[25,1,1,2,3],[36,1,1,3,4],[38,1,1,4,5],[39,2,2,5,7],[40,2,2,7,9]]],[5,2,2,9,11,[[191,2,2,9,11]]],[6,2,2,11,13,[[214,2,2,11,13]]],[8,7,7,13,20,[[247,1,1,13,14],[249,1,1,14,15],[252,2,2,15,17],[253,1,1,17,18],[257,1,1,18,19],[261,1,1,19,20]]],[9,6,6,20,26,[[268,1,1,20,21],[276,2,2,21,23],[285,1,1,23,24],[289,1,1,24,25],[290,1,1,25,26]]],[10,8,7,26,33,[[291,1,1,26,27],[292,2,1,27,28],[301,3,3,28,31],[306,2,2,31,33]]],[11,9,7,33,40,[[313,5,4,33,37],[316,1,1,37,38],[317,1,1,38,39],[321,2,1,39,40]]],[12,6,6,40,46,[[348,2,2,40,42],[356,2,2,42,44],[364,2,2,44,46]]],[13,1,1,46,47,[[383,1,1,46,47]]],[22,1,1,47,48,[[681,1,1,47,48]]]],[535,545,718,1119,1150,1175,1176,1205,1207,5948,5949,6601,6606,7469,7558,7636,7673,7689,7789,7910,8057,8256,8258,8524,8672,8694,8736,8802,9123,9129,9132,9292,9299,9542,9543,9544,9546,9616,9648,9761,10679,10694,10923,10925,11114,11117,11538,17710]]],["captains",[78,64,[[3,7,4,0,4,[[147,7,4,0,4]]],[4,5,2,4,6,[[153,4,1,4,5],[172,1,1,5,6]]],[8,4,2,6,8,[[243,2,1,6,7],[257,2,1,7,8]]],[9,6,4,8,12,[[270,1,1,8,9],[284,3,2,9,11],[290,2,1,11,12]]],[10,5,5,12,17,[[291,1,1,12,13],[292,1,1,13,14],[305,1,1,14,15],[312,2,2,15,17]]],[11,8,8,17,25,[[313,1,1,17,18],[320,1,1,18,19],[321,1,1,19,20],[323,3,3,20,23],[337,2,2,23,25]]],[12,14,11,25,36,[[349,3,3,25,28],[350,1,1,28,29],[352,1,1,29,30],[362,1,1,30,31],[363,2,1,31,32],[364,2,2,32,34],[365,3,1,34,35],[366,1,1,35,36]]],[13,18,17,36,53,[[367,1,1,36,37],[374,1,1,37,38],[382,1,1,38,39],[383,1,1,39,40],[384,3,3,40,43],[387,1,1,43,44],[389,4,4,44,48],[391,2,1,48,49],[398,2,2,49,51],[399,2,2,51,53]]],[15,1,1,53,54,[[414,1,1,53,54]]],[17,1,1,54,55,[[474,1,1,54,55]]],[23,9,9,55,64,[[784,2,2,55,57],[785,3,3,57,60],[786,2,2,60,62],[787,2,2,62,64]]]],[4678,4712,4716,4718,4907,5436,7381,7794,8122,8479,8483,8696,8742,8775,9269,9512,9513,9547,9748,9761,9838,9839,9844,10245,10248,10741,10748,10754,10761,10816,11047,11103,11110,11112,11144,11170,11196,11355,11513,11537,11572,11573,11574,11633,11657,11665,11670,11676,11709,11881,11896,11919,11922,12316,13859,19948,19954,19968,19970,19973,19976,19983,20001,20002]]],["chief",[31,28,[[0,11,9,0,9,[[39,9,7,0,7],[40,2,2,7,9]]],[10,2,2,9,11,[[299,1,1,9,10],[304,1,1,10,11]]],[12,9,9,11,20,[[352,8,8,11,19],[366,1,1,19,20]]],[13,6,6,20,26,[[374,2,2,20,22],[378,1,1,22,23],[383,1,1,23,24],[401,1,1,24,25],[402,1,1,25,26]]],[14,3,2,26,28,[[410,2,1,26,27],[412,1,1,27,28]]]],[1174,1181,1188,1192,1193,1194,1195,1204,1205,9074,9245,10796,10797,10798,10799,10800,10801,10807,10813,11170,11355,11356,11447,11537,11975,12007,12230,12257]]],["general",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11143]]],["governor",[4,4,[[10,1,1,0,1,[[312,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]],[13,2,2,2,4,[[384,1,1,2,3],[400,1,1,3,4]]]],[9506,10173,11567,11941]]],["governors",[2,1,[[12,2,1,0,1,[[361,2,1,0,1]]]],[11020]]],["keeper",[3,3,[[0,3,3,0,3,[[38,3,3,0,3]]]],[1170,1171,1172]]],["lords",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12226]]],["master",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10818]]],["over",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9511]]],["prince",[16,15,[[1,1,1,0,1,[[51,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]],[23,1,1,2,3,[[795,1,1,2,3]]],[26,11,10,3,13,[[850,5,5,3,8],[857,1,1,8,9],[859,4,3,9,12],[861,1,1,12,13]]],[27,1,1,13,14,[[864,1,1,13,14]]],[32,1,1,14,15,[[899,1,1,14,15]]]],[1568,8119,20271,21744,21746,21747,21748,21755,21972,22028,22035,22036,22082,22132,22667]]],["princes",[183,171,[[0,1,1,0,1,[[11,1,1,0,1]]],[3,10,10,1,11,[[137,1,1,1,2],[138,7,7,2,9],[139,2,2,9,11]]],[6,6,6,11,17,[[215,1,1,11,12],[217,1,1,12,13],[218,3,3,13,16],[220,1,1,16,17]]],[8,6,4,17,21,[[253,1,1,17,18],[264,5,3,18,21]]],[9,2,2,21,23,[[276,1,1,21,22],[285,1,1,22,23]]],[10,6,6,23,29,[[294,1,1,23,24],[299,1,1,24,25],[310,4,4,25,29]]],[11,3,3,29,32,[[323,1,1,29,30],[336,2,2,30,32]]],[12,10,9,32,41,[[356,1,1,32,33],[359,1,1,33,34],[360,1,1,34,35],[361,1,1,35,36],[364,1,1,36,37],[365,3,2,37,39],[366,2,2,39,41]]],[13,21,21,41,62,[[378,2,2,41,43],[383,1,1,43,44],[387,1,1,44,45],[388,1,1,45,46],[389,1,1,46,47],[390,3,3,47,50],[394,2,2,50,52],[395,1,1,52,53],[396,4,4,53,57],[397,1,1,57,58],[398,2,2,58,60],[401,1,1,60,61],[402,1,1,61,62]]],[14,5,5,62,67,[[409,1,1,62,63],[410,1,1,63,64],[411,2,2,64,66],[412,1,1,66,67]]],[15,5,5,67,72,[[421,3,3,67,70],[424,2,2,70,72]]],[16,10,8,72,80,[[426,7,5,72,77],[427,1,1,77,78],[428,1,1,78,79],[430,1,1,79,80]]],[17,3,3,80,83,[[438,1,1,80,81],[464,1,1,81,82],[469,1,1,82,83]]],[18,7,5,83,88,[[522,1,1,83,84],[545,3,1,84,85],[559,1,1,85,86],[582,1,1,86,87],[625,1,1,87,88]]],[19,3,3,88,91,[[635,1,1,88,89],[646,1,1,89,90],[655,1,1,90,91]]],[20,3,3,91,94,[[668,3,3,91,94]]],[22,15,14,94,108,[[679,1,1,94,95],[681,2,2,95,97],[688,1,1,97,98],[697,3,2,98,100],[699,1,1,100,101],[701,1,1,101,102],[708,1,1,102,103],[709,1,1,103,104],[710,1,1,104,105],[712,1,1,105,106],[721,1,1,106,107],[727,1,1,107,108]]],[23,45,41,108,149,[[745,1,1,108,109],[746,1,1,109,110],[748,1,1,110,111],[752,1,1,111,112],[761,2,1,112,113],[768,2,2,113,115],[769,2,2,115,117],[770,5,5,117,122],[773,1,1,122,123],[776,1,1,123,124],[778,4,3,124,127],[779,1,1,127,128],[780,5,4,128,132],[781,2,2,132,134],[782,6,6,134,140],[783,2,1,140,141],[788,2,2,141,143],[792,1,1,143,144],[793,2,2,144,146],[794,1,1,146,147],[795,1,1,147,148],[796,1,1,148,149]]],[24,3,3,149,152,[[797,1,1,149,150],[798,2,2,150,152]]],[25,3,3,152,155,[[812,1,1,152,153],[818,1,1,153,154],[823,1,1,154,155]]],[26,5,5,155,160,[[857,1,1,155,156],[858,2,2,156,158],[859,1,1,158,159],[860,1,1,159,160]]],[27,7,7,160,167,[[866,1,1,160,161],[868,3,3,161,164],[869,1,1,164,165],[870,1,1,165,166],[874,1,1,166,167]]],[29,2,2,167,169,[[879,1,1,167,168],[880,1,1,168,169]]],[35,2,2,169,171,[[906,1,1,169,170],[908,1,1,170,171]]]],[313,4358,4383,4388,4389,4390,4396,4410,4415,4422,4433,6638,6719,6722,6725,6733,6829,7706,7970,7971,7976,8243,8517,8846,9073,9422,9423,9425,9427,9843,10214,10216,10910,10981,10985,11021,11131,11144,11164,11170,11188,11442,11443,11530,11633,11652,11669,11687,11694,11700,11778,11785,11821,11829,11833,11839,11851,11862,11878,11906,11974,12011,12201,12221,12238,12239,12260,12543,12545,12549,12655,12656,12705,12716,12718,12720,12723,12742,12748,12790,12919,13541,13702,14613,14927,15240,15628,16382,16618,16935,17198,17500,17509,17510,17677,17711,17721,17858,18015,18017,18040,18085,18221,18259,18260,18315,18533,18643,18964,18991,19036,19154,19382,19525,19532,19552,19553,19582,19583,19584,19588,19593,19637,19763,19811,19820,19822,19827,19854,19856,19861,19863,19888,19889,19899,19912,19913,19917,19920,19922,19926,20027,20031,20087,20130,20165,20201,20269,20286,20316,20334,20341,20656,20837,21003,21986,21994,21996,22028,22041,22162,22181,22183,22194,22204,22223,22276,22379,22382,22795,22823]]],["principal",[2,2,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,1,1,1,2,[[796,1,1,1,2]]]],[10241,20301]]],["ruler",[10,10,[[6,1,1,0,1,[[219,1,1,0,1]]],[15,9,9,1,10,[[415,8,8,1,9],[419,1,1,9,10]]]],[6784,12336,12339,12341,12342,12343,12344,12345,12346,12422]]],["rulers",[23,17,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,8,2,1,3,[[67,8,2,1,3]]],[10,1,1,3,4,[[299,1,1,3,4]]],[11,3,3,4,7,[[322,1,1,4,5],[323,2,2,5,7]]],[12,3,3,7,10,[[358,1,1,7,8],[364,1,1,8,9],[366,1,1,9,10]]],[13,1,1,10,11,[[395,1,1,10,11]]],[14,1,1,11,12,[[412,1,1,11,12]]],[15,2,2,12,14,[[416,1,1,12,13],[423,1,1,13,14]]],[16,3,3,14,17,[[428,1,1,14,15],[433,1,1,15,16],[434,1,1,16,17]]]],[1426,2020,2024,9073,9794,9833,9848,10936,11140,11170,11811,12266,12375,12589,12759,12826,12837]]],["stewards",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11144]]]]},{"k":"H8270","v":[["navel",[2,2,[[19,1,1,0,1,[[630,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[16463,20766]]]]},{"k":"H8271","v":[["*",[6,6,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,5,5,1,6,[[851,1,1,1,2],[852,1,1,2,3],[854,3,3,3,6]]]],[12136,21780,21832,21880,21886,21890]]],["began",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12136]]],["dissolve",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21890]]],["dissolving",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21886]]],["dwelleth",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21780]]],["loose",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21832]]],["loosed",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21880]]]]},{"k":"H8272","v":[["*",[3,3,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]],[37,1,1,2,3,[[917,1,1,2,3]]]],[10098,18390,22964]]],["Sharezer",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10098,18390]]],["Sherezer",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22964]]]]},{"k":"H8273","v":[["*",[2,2,[[22,2,2,0,2,[[713,1,1,0,1],[727,1,1,1,2]]]],[18327,18646]]],["ground",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18327]]],["heat",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18646]]]]},{"k":"H8274","v":[["Sherebiah",[8,8,[[14,2,2,0,2,[[410,2,2,0,2]]],[15,6,6,2,8,[[420,1,1,2,3],[421,2,2,3,5],[422,1,1,5,6],[424,2,2,6,8]]]],[12219,12225,12500,12515,12516,12561,12632,12648]]]]},{"k":"H8275","v":[["sceptre",[4,3,[[16,4,3,0,3,[[429,1,1,0,1],[430,2,1,1,2],[433,1,1,2,3]]]],[12773,12781,12821]]]]},{"k":"H8276","v":[["*",[2,2,[[17,1,1,0,1,[[475,1,1,0,1]]],[24,1,1,1,2,[[797,1,1,1,2]]]],[13881,20324]]],["together",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13881]]],["wreathed",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20324]]]]},{"k":"H8277","v":[["remained",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6084]]]]},{"k":"H8278","v":[["service",[4,4,[[1,4,4,0,4,[[80,1,1,0,1],[84,1,1,1,2],[88,2,2,2,4]]]],[2430,2550,2665,2705]]]]},{"k":"H8279","v":[["line",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18546]]]]},{"k":"H8280","v":[["power",[3,3,[[0,1,1,0,1,[[31,1,1,0,1]]],[27,2,2,1,3,[[873,2,2,1,3]]]],[956,22255,22256]]]]},{"k":"H8281","v":[]},{"k":"H8282","v":[["*",[5,5,[[6,1,1,0,1,[[215,1,1,0,1]]],[10,1,1,1,2,[[301,1,1,1,2]]],[16,1,1,2,3,[[426,1,1,2,3]]],[22,1,1,3,4,[[727,1,1,3,4]]],[24,1,1,4,5,[[797,1,1,4,5]]]],[6652,9111,12720,18659,20311]]],["ladies",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]]],[6652,12720]]],["princess",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20311]]],["princesses",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9111]]],["queens",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18659]]]]},{"k":"H8283","v":[["*",[38,32,[[0,37,31,0,31,[[16,4,4,0,4],[17,10,8,4,12],[19,5,4,12,16],[20,8,7,16,23],[22,5,3,23,26],[23,2,2,26,28],[24,2,2,28,30],[48,1,1,30,31]]],[22,1,1,31,32,[[729,1,1,31,32]]]],[412,414,416,418,430,433,434,435,436,437,438,439,497,509,511,513,514,515,516,519,520,522,525,572,573,590,627,658,668,670,1504,18675]]],["Sarah",[36,30,[[0,35,29,0,29,[[16,4,4,0,4],[17,10,8,4,12],[19,5,4,12,16],[20,8,7,16,23],[22,5,3,23,26],[23,1,1,26,27],[24,1,1,27,28],[48,1,1,28,29]]],[22,1,1,29,30,[[729,1,1,29,30]]]],[412,414,416,418,430,433,434,435,436,437,438,439,497,509,511,513,514,515,516,519,520,522,525,572,573,590,627,668,1504,18675]]],["Sarah's",[2,2,[[0,2,2,0,2,[[23,1,1,0,1],[24,1,1,1,2]]]],[658,670]]]]},{"k":"H8284","v":[["walls",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19068]]]]},{"k":"H8285","v":[["bracelets",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17726]]]]},{"k":"H8286","v":[["Serug",[5,5,[[0,4,4,0,4,[[10,4,4,0,4]]],[12,1,1,4,5,[[338,1,1,4,5]]]],[286,287,288,289,10278]]]]},{"k":"H8287","v":[["Sharuhen",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6327]]]]},{"k":"H8288","v":[["*",[2,2,[[0,1,1,0,1,[[13,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]]],[359,17766]]],["+",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[359]]],["latchet",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17766]]]]},{"k":"H8289","v":[["*",[7,7,[[5,1,1,0,1,[[198,1,1,0,1]]],[12,2,2,1,3,[[342,1,1,1,2],[364,1,1,2,3]]],[21,1,1,3,4,[[672,1,1,3,4]]],[22,3,3,4,7,[[711,1,1,4,5],[713,1,1,5,6],[743,1,1,6,7]]]],[6148,10444,11138,17555,18288,18322,18907]]],["Lasharon",[1,1,[[5,1,1,0,1,[[198,1,1,0,1]]]],[6148]]],["Sharon",[6,6,[[12,2,2,0,2,[[342,1,1,0,1],[364,1,1,1,2]]],[21,1,1,2,3,[[672,1,1,2,3]]],[22,3,3,3,6,[[711,1,1,3,4],[713,1,1,4,5],[743,1,1,5,6]]]],[10444,11138,17555,18288,18322,18907]]]]},{"k":"H8290","v":[["Sharonite",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11138]]]]},{"k":"H8291","v":[["plants",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17977]]]]},{"k":"H8292","v":[["*",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[23,1,1,1,2,[[762,1,1,1,2]]]],[6639,19400]]],["bleatings",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6639]]],["hissing",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19400]]]]},{"k":"H8293","v":[["remnant",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19326]]]]},{"k":"H8294","v":[["*",[3,3,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[12,1,1,2,3,[[344,1,1,2,3]]]],[1403,4535,10565]]],["Sarah",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4535]]],["Serah",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]]],[1403,10565]]]]},{"k":"H8295","v":[["*",[3,2,[[2,1,1,0,1,[[110,1,1,0,1]]],[37,2,1,1,2,[[922,2,1,1,2]]]],[3350,23048]]],["+",[2,1,[[37,2,1,0,1,[[922,2,1,0,1]]]],[23048]]],["make",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3350]]]]},{"k":"H8296","v":[["cuttings",[2,2,[[2,2,2,0,2,[[108,1,1,0,1],[110,1,1,1,2]]]],[3309,3350]]]]},{"k":"H8297","v":[["*",[17,13,[[0,17,13,0,13,[[10,3,3,0,3],[11,3,3,3,6],[15,9,6,6,12],[16,2,1,12,13]]]],[295,296,297,303,309,315,382,383,384,386,387,389,412]]],["Sarai",[16,13,[[0,16,13,0,13,[[10,3,3,0,3],[11,3,3,3,6],[15,8,6,6,12],[16,2,1,12,13]]]],[295,296,297,303,309,315,382,383,384,386,387,389,412]]],["Sarai's",[1,1,[[0,1,1,0,1,[[15,1,1,0,1]]]],[389]]]]},{"k":"H8298","v":[["Sharai",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12292]]]]},{"k":"H8299","v":[["branches",[3,3,[[0,2,2,0,2,[[39,2,2,0,2]]],[28,1,1,2,3,[[876,1,1,2,3]]]],[1182,1184,22298]]]]},{"k":"H8300","v":[["*",[27,27,[[3,2,2,0,2,[[137,1,1,0,1],[140,1,1,1,2]]],[4,2,2,2,4,[[154,1,1,2,3],[155,1,1,3,4]]],[5,8,8,4,12,[[196,7,7,4,11],[197,1,1,11,12]]],[6,1,1,12,13,[[215,1,1,12,13]]],[11,1,1,13,14,[[322,1,1,13,14]]],[17,4,4,14,18,[[453,1,1,14,15],[455,2,2,15,17],[462,1,1,17,18]]],[22,1,1,18,19,[[679,1,1,18,19]]],[23,4,4,19,23,[[775,1,1,19,20],[786,1,1,20,21],[788,1,1,21,22],[791,1,1,22,23]]],[24,1,1,23,24,[[798,1,1,23,24]]],[28,1,1,24,25,[[877,1,1,24,25]]],[30,2,2,25,27,[[888,2,2,25,27]]]],[4375,4465,4972,4978,6084,6092,6094,6097,6101,6103,6104,6115,6636,9804,13295,13347,13352,13496,17663,19693,19992,20024,20077,20354,22343,22524,22528]]],["alive",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4375]]],["left",[3,3,[[17,2,2,0,2,[[455,2,2,0,2]]],[23,1,1,2,3,[[775,1,1,2,3]]]],[13347,13352,19693]]],["remain",[7,7,[[4,1,1,0,1,[[154,1,1,0,1]]],[5,2,2,1,3,[[196,2,2,1,3]]],[17,1,1,3,4,[[462,1,1,3,4]]],[23,2,2,4,6,[[786,1,1,4,5],[788,1,1,5,6]]],[30,1,1,6,7,[[888,1,1,6,7]]]],[4972,6092,6094,13496,19992,20024,22524]]],["remained",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20354]]],["remaineth",[3,3,[[3,1,1,0,1,[[140,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[23,1,1,2,3,[[791,1,1,2,3]]]],[4465,6636,20077]]],["remaining",[9,9,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,5,5,1,6,[[196,4,4,1,5],[197,1,1,5,6]]],[11,1,1,6,7,[[322,1,1,6,7]]],[17,1,1,7,8,[[453,1,1,7,8]]],[30,1,1,8,9,[[888,1,1,8,9]]]],[4978,6097,6101,6103,6104,6115,9804,13295,22528]]],["remnant",[2,2,[[22,1,1,0,1,[[679,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[17663,22343]]],["rest",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6084]]]]},{"k":"H8301","v":[["*",[2,2,[[5,2,2,0,2,[[205,2,2,0,2]]]],[6331,6333]]],["+",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6333]]],["Sarid",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6331]]]]},{"k":"H8302","v":[["*",[9,8,[[8,3,2,0,2,[[252,3,2,0,2]]],[10,1,1,2,3,[[312,1,1,2,3]]],[13,2,2,3,5,[[384,1,1,3,4],[392,1,1,4,5]]],[15,1,1,5,6,[[416,1,1,5,6]]],[17,1,1,6,7,[[476,1,1,6,7]]],[22,1,1,7,8,[[737,1,1,7,8]]]],[7623,7656,9514,11575,11746,12375,13914,18817]]],["breastplate",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18817]]],["coat",[2,1,[[8,2,1,0,1,[[252,2,1,0,1]]]],[7623]]],["habergeon",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13914]]],["habergeons",[2,2,[[13,1,1,0,1,[[392,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]]],[11746,12375]]],["harness",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[9514,11575]]],["mail",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7656]]]]},{"k":"H8303","v":[["Sirion",[2,2,[[4,1,1,0,1,[[155,1,1,0,1]]],[18,1,1,1,2,[[506,1,1,1,2]]]],[4984,14314]]]]},{"k":"H8304","v":[["Seraiah",[20,18,[[9,1,1,0,1,[[274,1,1,0,1]]],[11,2,2,1,3,[[337,2,2,1,3]]],[12,5,4,3,7,[[341,3,3,3,6],[343,2,1,6,7]]],[14,2,2,7,9,[[404,1,1,7,8],[409,1,1,8,9]]],[15,4,4,9,13,[[422,1,1,9,10],[423,1,1,10,11],[424,2,2,11,13]]],[23,6,5,13,18,[[780,1,1,13,14],[784,1,1,14,15],[795,3,2,15,17],[796,1,1,17,18]]]],[8226,10240,10245,10398,10399,10420,10468,12029,12174,12551,12599,12625,12636,19868,19949,20271,20273,20300]]]]},{"k":"H8305","v":[["fine",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18013]]]]},{"k":"H8306","v":[["navel",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13880]]]]},{"k":"H8307","v":[["*",[10,10,[[4,1,1,0,1,[[181,1,1,0,1]]],[18,1,1,1,2,[[558,1,1,1,2]]],[23,8,8,2,10,[[747,1,1,2,3],[751,1,1,3,4],[753,1,1,4,5],[755,1,1,5,6],[757,1,1,6,7],[760,1,1,7,8],[762,1,1,8,9],[767,1,1,9,10]]]],[5698,15229,19019,19143,19189,19234,19276,19348,19396,19501]]],["imagination",[9,9,[[4,1,1,0,1,[[181,1,1,0,1]]],[23,8,8,1,9,[[747,1,1,1,2],[751,1,1,2,3],[753,1,1,3,4],[755,1,1,4,5],[757,1,1,5,6],[760,1,1,6,7],[762,1,1,7,8],[767,1,1,8,9]]]],[5698,19019,19143,19189,19234,19276,19348,19396,19501]]],["lust",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15229]]]]},{"k":"H8308","v":[["traversing",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18988]]]]},{"k":"H8309","v":[["fields",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19731]]]]},{"k":"H8310","v":[["Sarsechim",[1,1,[[23,1,1,0,1,[[783,1,1,0,1]]]],[19926]]]]},{"k":"H8311","v":[["*",[3,3,[[2,2,2,0,2,[[110,1,1,0,1],[111,1,1,1,2]]],[22,1,1,2,3,[[706,1,1,2,3]]]],[3363,3392,18184]]],["+",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18184]]],["superfluous",[2,2,[[2,2,2,0,2,[[110,1,1,0,1],[111,1,1,1,2]]]],[3363,3392]]]]},{"k":"H8312","v":[["thoughts",[2,2,[[18,2,2,0,2,[[571,1,1,0,1],[616,1,1,1,2]]]],[15450,16262]]]]},{"k":"H8313","v":[["*",[117,107,[[0,2,2,0,2,[[10,1,1,0,1],[37,1,1,1,2]]],[1,4,4,2,6,[[61,1,1,2,3],[78,2,2,3,5],[81,1,1,5,6]]],[2,21,18,6,24,[[93,4,2,6,8],[95,1,1,8,9],[96,2,2,9,11],[97,2,2,11,13],[98,1,1,13,14],[99,2,2,14,16],[102,4,3,16,19],[105,2,2,19,21],[108,1,1,21,22],[109,1,1,22,23],[110,1,1,23,24]]],[3,5,4,24,28,[[132,1,1,24,25],[135,3,2,25,27],[147,1,1,27,28]]],[4,6,6,28,34,[[159,2,2,28,30],[161,1,1,30,31],[164,2,2,31,33],[165,1,1,33,34]]],[5,9,8,34,42,[[192,1,1,34,35],[193,2,2,35,37],[194,1,1,37,38],[197,5,4,38,42]]],[6,5,5,42,47,[[219,1,1,42,43],[222,1,1,43,44],[224,1,1,44,45],[225,1,1,45,46],[228,1,1,46,47]]],[8,4,4,47,51,[[265,3,3,47,50],[266,1,1,50,51]]],[9,2,1,51,52,[[289,2,1,51,52]]],[10,4,4,52,56,[[299,1,1,52,53],[303,1,1,53,54],[305,1,1,54,55],[306,1,1,55,56]]],[11,11,9,56,65,[[322,1,1,56,57],[329,1,1,57,58],[335,7,6,58,64],[337,2,1,64,65]]],[12,1,1,65,66,[[351,1,1,65,66]]],[13,5,4,66,70,[[381,1,1,66,67],[382,1,1,67,68],[400,1,1,68,69],[402,2,1,69,70]]],[15,1,1,70,71,[[416,1,1,70,71]]],[18,3,3,71,74,[[523,1,1,71,72],[551,1,1,72,73],[557,1,1,73,74]]],[19,1,1,74,75,[[633,1,1,74,75]]],[22,4,4,75,79,[[679,1,1,75,76],[722,2,2,76,78],[725,1,1,78,79]]],[23,23,22,79,101,[[751,1,1,79,80],[763,1,1,80,81],[765,1,1,81,82],[776,1,1,82,83],[778,3,3,83,86],[780,5,5,86,91],[781,2,2,91,93],[782,3,3,93,96],[783,1,1,96,97],[787,2,2,97,99],[795,1,1,99,100],[796,2,1,100,101]]],[25,4,4,101,105,[[806,1,1,101,102],[817,1,1,102,103],[824,1,1,103,104],[844,1,1,104,105]]],[29,1,1,105,106,[[880,1,1,105,106]]],[32,1,1,106,107,[[893,1,1,106,107]]]],[269,1143,1826,2350,2370,2458,2807,2816,2879,2896,2898,2934,2949,2964,2983,2993,3104,3107,3109,3228,3229,3287,3332,3354,4233,4294,4297,4674,5116,5136,5178,5243,5271,5288,5973,5991,6001,6030,6113,6116,6118,6120,6806,6870,6924,6935,7020,7979,7981,7992,8021,8660,9067,9186,9262,9301,9819,10014,10169,10171,10176,10180,10181,10185,10231,10786,11506,11523,11938,12012,12361,14623,15056,15214,16567,17661,18549,18552,18613,19150,19412,19450,19760,19803,19806,19823,19867,19869,19870,19871,19874,19882,19884,19912,19913,19918,19931,20009,20010,20244,20289,20550,20803,21054,21593,22380,22586]]],["+",[21,20,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,3,3,1,4,[[93,1,1,1,2],[102,2,2,2,4]]],[3,1,1,4,5,[[135,1,1,4,5]]],[5,1,1,5,6,[[194,1,1,5,6]]],[9,2,1,6,7,[[289,2,1,6,7]]],[10,1,1,7,8,[[306,1,1,7,8]]],[11,4,4,8,12,[[329,1,1,8,9],[335,2,2,9,11],[337,1,1,11,12]]],[13,1,1,12,13,[[402,1,1,12,13]]],[23,7,7,13,20,[[751,1,1,13,14],[763,1,1,14,15],[780,3,3,15,18],[781,1,1,18,19],[796,1,1,19,20]]]],[2370,2816,3104,3109,4294,6030,8660,9301,10014,10180,10185,10231,12012,19150,19412,19867,19869,19871,19884,20289]]],["burn",[31,31,[[0,1,1,0,1,[[10,1,1,0,1]]],[1,2,2,1,3,[[61,1,1,1,2],[78,1,1,2,3]]],[2,5,5,3,8,[[93,2,2,3,5],[97,1,1,5,6],[102,1,1,6,7],[105,1,1,7,8]]],[3,1,1,8,9,[[135,1,1,8,9]]],[4,4,4,9,13,[[159,2,2,9,11],[164,1,1,11,12],[165,1,1,12,13]]],[5,2,2,13,15,[[197,2,2,13,15]]],[6,3,3,15,18,[[219,1,1,15,16],[222,1,1,16,17],[224,1,1,17,18]]],[22,1,1,18,19,[[725,1,1,18,19]]],[23,9,9,19,28,[[765,1,1,19,20],[776,1,1,20,21],[778,3,3,21,24],[781,1,1,24,25],[782,1,1,25,26],[787,2,2,26,28]]],[25,3,3,28,31,[[806,1,1,28,29],[817,1,1,29,30],[844,1,1,30,31]]]],[269,1826,2350,2807,2816,2949,3107,3228,4294,5116,5136,5243,5288,6113,6120,6806,6870,6924,18613,19450,19760,19803,19806,19823,19882,19913,20009,20010,20550,20803,21593]]],["burned",[26,26,[[5,2,2,0,2,[[193,1,1,0,1],[197,1,1,1,2]]],[8,3,3,2,5,[[265,3,3,2,5]]],[11,6,6,5,11,[[322,1,1,5,6],[335,5,5,6,11]]],[12,1,1,11,12,[[351,1,1,11,12]]],[15,1,1,12,13,[[416,1,1,12,13]]],[18,1,1,13,14,[[557,1,1,13,14]]],[19,1,1,14,15,[[633,1,1,14,15]]],[22,2,2,15,17,[[679,1,1,15,16],[722,1,1,16,17]]],[23,7,7,17,24,[[780,2,2,17,19],[782,2,2,19,21],[783,1,1,21,22],[795,1,1,22,23],[796,1,1,23,24]]],[29,1,1,24,25,[[880,1,1,24,25]]],[32,1,1,25,26,[[893,1,1,25,26]]]],[6001,6120,7979,7981,7992,9819,10169,10171,10176,10180,10181,10786,12361,15214,16567,17661,18552,19870,19874,19912,19918,19931,20244,20289,22380,22586]]],["burneth",[4,4,[[2,1,1,0,1,[[105,1,1,0,1]]],[3,1,1,1,2,[[135,1,1,1,2]]],[18,1,1,2,3,[[523,1,1,2,3]]],[22,1,1,3,4,[[722,1,1,3,4]]]],[3229,4297,14623,18549]]],["burnt",[31,31,[[0,1,1,0,1,[[37,1,1,0,1]]],[1,1,1,1,2,[[81,1,1,1,2]]],[2,11,11,2,13,[[93,1,1,2,3],[95,1,1,3,4],[96,2,2,4,6],[97,1,1,6,7],[98,1,1,7,8],[99,1,1,8,9],[102,1,1,9,10],[108,1,1,10,11],[109,1,1,11,12],[110,1,1,12,13]]],[3,2,2,13,15,[[132,1,1,13,14],[147,1,1,14,15]]],[4,2,2,15,17,[[161,1,1,15,16],[164,1,1,16,17]]],[5,4,4,17,21,[[192,1,1,17,18],[193,1,1,18,19],[197,2,2,19,21]]],[6,2,2,21,23,[[225,1,1,21,22],[228,1,1,22,23]]],[8,1,1,23,24,[[266,1,1,23,24]]],[10,3,3,24,27,[[299,1,1,24,25],[303,1,1,25,26],[305,1,1,26,27]]],[11,1,1,27,28,[[337,1,1,27,28]]],[13,3,3,28,31,[[381,1,1,28,29],[400,1,1,29,30],[402,1,1,30,31]]]],[1143,2458,2807,2879,2896,2898,2934,2964,2993,3104,3287,3332,3354,4233,4674,5178,5271,5973,5991,6116,6118,6935,7020,8021,9067,9186,9262,10231,11506,11938,12012]]],["kindled",[1,1,[[2,1,1,0,1,[[99,1,1,0,1]]]],[2983]]],["made",[1,1,[[13,1,1,0,1,[[382,1,1,0,1]]]],[11523]]],["up",[2,2,[[18,1,1,0,1,[[551,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[15056,21054]]]]},{"k":"H8314","v":[["*",[7,7,[[3,2,2,0,2,[[137,2,2,0,2]]],[4,1,1,2,3,[[160,1,1,2,3]]],[22,4,4,3,7,[[684,2,2,3,5],[692,1,1,5,6],[708,1,1,6,7]]]],[4346,4348,5152,17771,17775,17957,18223]]],["+",[2,2,[[22,2,2,0,2,[[692,1,1,0,1],[708,1,1,1,2]]]],[17957,18223]]],["fiery",[2,2,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,1,1,1,2,[[160,1,1,1,2]]]],[4346,5152]]],["seraphims",[2,2,[[22,2,2,0,2,[[684,2,2,0,2]]]],[17771,17775]]],["serpent",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4348]]]]},{"k":"H8315","v":[["Saraph",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10407]]]]},{"k":"H8316","v":[["*",[13,12,[[0,1,1,0,1,[[10,1,1,0,1]]],[2,1,1,1,2,[[99,1,1,1,2]]],[3,3,3,2,5,[[132,1,1,2,3],[135,2,2,3,5]]],[4,1,1,5,6,[[181,1,1,5,6]]],[13,3,2,6,8,[[382,1,1,6,7],[387,2,1,7,8]]],[22,2,2,8,10,[[687,1,1,8,9],[742,1,1,9,10]]],[23,1,1,10,11,[[795,1,1,10,11]]],[29,1,1,11,12,[[882,1,1,11,12]]]],[269,2983,4231,4295,4306,5702,11523,11643,17834,18896,20237,22421]]],["+",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22421]]],["burning",[8,7,[[2,1,1,0,1,[[99,1,1,0,1]]],[3,2,2,1,3,[[132,1,1,1,2],[135,1,1,2,3]]],[4,1,1,3,4,[[181,1,1,3,4]]],[13,3,2,4,6,[[382,1,1,4,5],[387,2,1,5,6]]],[22,1,1,6,7,[[687,1,1,6,7]]]],[2983,4231,4295,5702,11523,11643,17834]]],["burnt",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20237]]],["heifer",[1,1,[[3,1,1,0,1,[[135,1,1,0,1]]]],[4306]]],["throughly",[1,1,[[0,1,1,0,1,[[10,1,1,0,1]]]],[269]]],["up",[1,1,[[22,1,1,0,1,[[742,1,1,0,1]]]],[18896]]]]},{"k":"H8317","v":[["*",[14,14,[[0,5,5,0,5,[[0,2,2,0,2],[6,1,1,2,3],[7,1,1,3,4],[8,1,1,4,5]]],[1,2,2,5,7,[[50,1,1,5,6],[57,1,1,6,7]]],[2,5,5,7,12,[[100,5,5,7,12]]],[18,1,1,12,13,[[582,1,1,12,13]]],[25,1,1,13,14,[[848,1,1,13,14]]]],[19,20,180,200,212,1539,1713,3026,3038,3039,3040,3043,15636,21688]]],["+",[2,2,[[1,1,1,0,1,[[57,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[1713,15636]]],["abundantly",[5,5,[[0,4,4,0,4,[[0,2,2,0,2],[7,1,1,2,3],[8,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]]],[19,20,200,212,1539]]],["creep",[2,2,[[2,2,2,0,2,[[100,2,2,0,2]]]],[3026,3039]]],["creepeth",[4,4,[[0,1,1,0,1,[[6,1,1,0,1]]],[2,3,3,1,4,[[100,3,3,1,4]]]],[180,3038,3040,3043]]],["moveth",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21688]]]]},{"k":"H8318","v":[["*",[15,15,[[0,2,2,0,2,[[0,1,1,0,1],[6,1,1,1,2]]],[2,12,12,2,14,[[94,1,1,2,3],[100,10,10,3,13],[111,1,1,13,14]]],[4,1,1,14,15,[[166,1,1,14,15]]]],[19,180,2832,3007,3017,3018,3020,3026,3028,3038,3039,3040,3041,3374,5309]]],["creature",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[19]]],["creep",[2,2,[[2,2,2,0,2,[[100,2,2,0,2]]]],[3017,3028]]],["move",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3007]]],["thing",[7,7,[[0,1,1,0,1,[[6,1,1,0,1]]],[2,5,5,1,6,[[100,4,4,1,5],[111,1,1,5,6]]],[4,1,1,6,7,[[166,1,1,6,7]]]],[180,3018,3038,3040,3041,3374,5309]]],["things",[4,4,[[2,4,4,0,4,[[94,1,1,0,1],[100,3,3,1,4]]]],[2832,3020,3026,3039]]]]},{"k":"H8319","v":[["*",[12,12,[[10,1,1,0,1,[[299,1,1,0,1]]],[17,1,1,1,2,[[462,1,1,1,2]]],[22,2,2,2,4,[[683,1,1,2,3],[685,1,1,3,4]]],[23,3,3,4,7,[[763,1,1,4,5],[793,1,1,5,6],[794,1,1,6,7]]],[24,2,2,7,9,[[798,2,2,7,9]]],[25,1,1,9,10,[[828,1,1,9,10]]],[35,1,1,10,11,[[907,1,1,10,11]]],[37,1,1,11,12,[[920,1,1,11,12]]]],[9059,13504,17765,17800,19415,20144,20179,20347,20348,21157,22820,23024]]],["+",[1,1,[[17,1,1,0,1,[[462,1,1,0,1]]]],[13504]]],["hiss",[11,11,[[10,1,1,0,1,[[299,1,1,0,1]]],[22,2,2,1,3,[[683,1,1,1,2],[685,1,1,2,3]]],[23,3,3,3,6,[[763,1,1,3,4],[793,1,1,4,5],[794,1,1,5,6]]],[24,2,2,6,8,[[798,2,2,6,8]]],[25,1,1,8,9,[[828,1,1,8,9]]],[35,1,1,9,10,[[907,1,1,9,10]]],[37,1,1,10,11,[[920,1,1,10,11]]]],[9059,17765,17800,19415,20144,20179,20347,20348,21157,22820,23024]]]]},{"k":"H8320","v":[["speckled",[1,1,[[37,1,1,0,1,[[911,1,1,0,1]]]],[22886]]]]},{"k":"H8321","v":[["vine",[3,3,[[0,1,1,0,1,[[48,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]],[23,1,1,2,3,[[746,1,1,2,3]]]],[1484,17741,18986]]]]},{"k":"H8322","v":[["hissing",[7,7,[[13,1,1,0,1,[[395,1,1,0,1]]],[23,5,5,1,6,[[763,1,1,1,2],[769,2,2,2,4],[773,1,1,4,5],[795,1,1,5,6]]],[32,1,1,6,7,[[898,1,1,6,7]]]],[11799,19415,19543,19552,19653,20249,22664]]]]},{"k":"H8323","v":[["*",[6,5,[[3,2,1,0,1,[[132,2,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]],[19,1,1,2,3,[[635,1,1,2,3]]],[22,1,1,3,4,[[710,1,1,3,4]]],[27,1,1,4,5,[[869,1,1,4,5]]]],[4207,12724,16618,18260,22198]]],["+",[2,1,[[3,2,1,0,1,[[132,2,1,0,1]]]],[4207]]],["princes",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22198]]],["rule",[3,3,[[16,1,1,0,1,[[426,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]],[22,1,1,2,3,[[710,1,1,2,3]]]],[12724,16618,18260]]]]},{"k":"H8324","v":[["enemies",[5,5,[[18,5,5,0,5,[[482,1,1,0,1],[504,1,1,1,2],[531,1,1,2,3],[533,1,1,3,4],[536,1,1,4,5]]]],[13981,14296,14730,14757,14800]]]]},{"k":"H8325","v":[["Sharar",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8686]]]]},{"k":"H8326","v":[["navel",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17629]]]]},{"k":"H8327","v":[["*",[8,8,[[17,3,3,0,3,[[440,1,1,0,1],[466,2,2,1,3]]],[18,2,2,3,5,[[529,1,1,3,4],[557,1,1,4,5]]],[22,2,2,5,7,[[705,1,1,5,6],[718,1,1,6,7]]],[23,1,1,7,8,[[756,1,1,7,8]]]],[12954,13596,13600,14715,15207,18157,18444,19251]]],["+",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15207]]],["out",[2,2,[[17,2,2,0,2,[[466,2,2,0,2]]]],[13596,13600]]],["root",[5,5,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,1,1,1,2,[[529,1,1,1,2]]],[22,2,2,2,4,[[705,1,1,2,3],[718,1,1,3,4]]],[23,1,1,4,5,[[756,1,1,4,5]]]],[12954,14715,18157,18444,19251]]]]},{"k":"H8328","v":[["*",[33,32,[[4,1,1,0,1,[[181,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[17,9,9,3,12,[[443,1,1,3,4],[448,1,1,4,5],[449,1,1,5,6],[453,1,1,6,7],[454,1,1,7,8],[463,1,1,8,9],[464,1,1,9,10],[465,1,1,10,11],[471,1,1,11,12]]],[18,1,1,12,13,[[557,1,1,12,13]]],[19,2,2,13,15,[[639,2,2,13,15]]],[22,7,7,15,22,[[683,1,1,15,16],[689,2,2,16,18],[692,2,2,18,20],[715,1,1,20,21],[731,1,1,21,22]]],[23,1,1,22,23,[[761,1,1,22,23]]],[25,5,4,23,27,[[818,4,3,23,26],[832,1,1,26,27]]],[26,1,1,27,28,[[860,1,1,27,28]]],[27,2,2,28,30,[[870,1,1,28,29],[875,1,1,29,30]]],[29,1,1,30,31,[[880,1,1,30,31]]],[38,1,1,31,32,[[928,1,1,31,32]]]],[5697,6637,10091,13046,13180,13189,13292,13325,13513,13551,13561,13766,15207,16722,16731,17763,17885,17894,17957,17958,18383,18713,19365,20831,20832,20834,21237,22043,22224,22287,22388,23139]]],["+",[5,5,[[17,1,1,0,1,[[463,1,1,0,1]]],[18,1,1,1,2,[[557,1,1,1,2]]],[22,2,2,2,4,[[689,1,1,2,3],[692,1,1,3,4]]],[25,1,1,4,5,[[818,1,1,4,5]]]],[13513,15207,17885,17957,20834]]],["bottom",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13766]]],["heels",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13180]]],["root",[16,16,[[4,1,1,0,1,[[181,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[17,3,3,3,6,[[449,1,1,3,4],[454,1,1,4,5],[464,1,1,5,6]]],[19,2,2,6,8,[[639,2,2,6,8]]],[22,5,5,8,13,[[683,1,1,8,9],[689,1,1,9,10],[692,1,1,10,11],[715,1,1,11,12],[731,1,1,12,13]]],[25,1,1,13,14,[[832,1,1,13,14]]],[27,1,1,14,15,[[870,1,1,14,15]]],[38,1,1,15,16,[[928,1,1,15,16]]]],[5697,6637,10091,13189,13325,13551,16722,16731,17763,17894,17958,18383,18713,21237,22224,23139]]],["roots",[10,10,[[17,3,3,0,3,[[443,1,1,0,1],[453,1,1,1,2],[465,1,1,2,3]]],[23,1,1,3,4,[[761,1,1,3,4]]],[25,3,3,4,7,[[818,3,3,4,7]]],[26,1,1,7,8,[[860,1,1,7,8]]],[27,1,1,8,9,[[875,1,1,8,9]]],[29,1,1,9,10,[[880,1,1,9,10]]]],[13046,13292,13561,19365,20831,20832,20834,22043,22287,22388]]]]},{"k":"H8329","v":[["Sheresh",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10551]]]]},{"k":"H8330","v":[["roots",[3,3,[[26,3,3,0,3,[[853,3,3,0,3]]]],[21852,21860,21863]]]]},{"k":"H8331","v":[["chains",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2315]]]]},{"k":"H8332","v":[["banishment",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12199]]]]},{"k":"H8333","v":[["*",[7,5,[[1,3,2,0,2,[[77,2,1,0,1],[88,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[13,3,2,3,5,[[369,3,2,3,5]]]],[2307,2679,8951,11234,11245]]],["chain",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8951]]],["chains",[6,4,[[1,3,2,0,2,[[77,2,1,0,1],[88,1,1,1,2]]],[13,3,2,2,4,[[369,3,2,2,4]]]],[2307,2679,11234,11245]]]]},{"k":"H8334","v":[["*",[99,93,[[0,2,2,0,2,[[38,1,1,0,1],[39,1,1,1,2]]],[1,11,10,2,12,[[73,1,1,2,3],[77,2,2,3,5],[78,1,1,5,6],[79,1,1,6,7],[82,1,1,7,8],[84,1,1,8,9],[88,4,3,9,12]]],[3,10,10,12,22,[[117,1,1,12,13],[119,2,2,13,15],[120,3,3,15,18],[124,1,1,18,19],[127,1,1,19,20],[132,1,1,20,21],[134,1,1,21,22]]],[4,5,5,22,27,[[162,1,1,22,23],[169,1,1,23,24],[170,2,2,24,26],[173,1,1,26,27]]],[5,1,1,27,28,[[187,1,1,27,28]]],[8,3,3,28,31,[[237,2,2,28,30],[238,1,1,30,31]]],[9,2,2,31,33,[[279,2,2,31,33]]],[10,5,5,33,38,[[291,2,2,33,35],[298,1,1,35,36],[300,1,1,36,37],[309,1,1,37,38]]],[11,4,4,38,42,[[316,1,1,38,39],[318,1,1,39,40],[327,1,1,40,41],[337,1,1,41,42]]],[12,8,8,42,50,[[343,1,1,42,43],[352,1,1,43,44],[353,2,2,44,46],[360,1,1,46,47],[363,1,1,47,48],[364,1,1,48,49],[365,1,1,49,50]]],[13,10,9,50,59,[[371,1,1,50,51],[374,1,1,51,52],[375,1,1,52,53],[379,1,1,53,54],[383,1,1,54,55],[388,1,1,55,56],[389,1,1,56,57],[395,2,1,57,58],[397,1,1,58,59]]],[14,1,1,59,60,[[410,1,1,59,60]]],[15,2,2,60,62,[[422,2,2,60,62]]],[16,3,3,62,65,[[426,1,1,62,63],[427,1,1,63,64],[431,1,1,64,65]]],[18,3,3,65,68,[[578,1,1,65,66],[580,1,1,66,67],[581,1,1,67,68]]],[19,1,1,68,69,[[656,1,1,68,69]]],[22,4,4,69,73,[[734,1,1,69,70],[738,2,2,70,72],[739,1,1,72,73]]],[23,3,3,73,76,[[777,2,2,73,75],[796,1,1,75,76]]],[25,17,14,76,90,[[821,1,1,76,77],[841,1,1,77,78],[843,1,1,78,79],[844,1,1,79,80],[845,9,7,80,87],[846,3,2,87,89],[847,1,1,89,90]]],[28,4,3,90,93,[[876,3,2,90,92],[877,1,1,92,93]]]],[1153,1176,2190,2328,2336,2366,2402,2484,2550,2665,2690,2705,3654,3698,3723,3752,3755,3757,3965,4052,4203,4259,5194,5376,5389,5391,5452,5852,7251,7258,7277,8334,8335,8721,8732,8996,9084,9408,9646,9689,9927,10236,10486,10793,10824,10857,10996,11089,11110,11144,11282,11360,11368,11463,11542,11652,11662,11802,11856,12218,12585,12588,12712,12726,12796,15519,15570,15575,17236,18759,18828,18831,18849,19796,19797,20294,20927,21523,21566,21591,21610,21611,21614,21615,21616,21618,21626,21634,21635,21679,22300,22304,22328]]],["+",[12,12,[[8,1,1,0,1,[[237,1,1,0,1]]],[10,1,1,1,2,[[291,1,1,1,2]]],[11,1,1,2,3,[[327,1,1,2,3]]],[12,3,3,3,6,[[343,1,1,3,4],[364,1,1,4,5],[365,1,1,5,6]]],[13,2,2,6,8,[[383,1,1,6,7],[395,1,1,7,8]]],[16,1,1,8,9,[[426,1,1,8,9]]],[25,3,3,9,12,[[845,2,2,9,11],[846,1,1,11,12]]]],[7258,8732,9927,10486,11110,11144,11542,11802,12712,21610,21611,21634]]],["Ministers",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18849]]],["as",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2690]]],["minister",[45,45,[[1,6,6,0,6,[[73,1,1,0,1],[77,2,2,1,3],[78,1,1,3,4],[79,1,1,4,5],[88,1,1,5,6]]],[3,9,9,6,15,[[117,1,1,6,7],[119,2,2,7,9],[120,3,3,9,12],[124,1,1,12,13],[132,1,1,13,14],[134,1,1,14,15]]],[4,5,5,15,20,[[162,1,1,15,16],[169,1,1,16,17],[170,2,2,17,19],[173,1,1,19,20]]],[5,1,1,20,21,[[187,1,1,20,21]]],[8,1,1,21,22,[[237,1,1,21,22]]],[10,1,1,22,23,[[298,1,1,22,23]]],[12,5,5,23,28,[[352,1,1,23,24],[353,2,2,24,26],[360,1,1,26,27],[363,1,1,27,28]]],[13,5,5,28,33,[[371,1,1,28,29],[374,1,1,29,30],[379,1,1,30,31],[389,1,1,31,32],[397,1,1,32,33]]],[15,2,2,33,35,[[422,2,2,33,35]]],[22,2,2,35,37,[[738,2,2,35,37]]],[25,8,8,37,45,[[841,1,1,37,38],[843,1,1,38,39],[844,1,1,39,40],[845,5,5,40,45]]]],[2190,2328,2336,2366,2402,2690,3654,3698,3723,3752,3755,3757,3965,4203,4259,5194,5376,5389,5391,5452,5852,7251,8996,10793,10824,10857,10996,11089,11282,11360,11463,11662,11856,12585,12588,18828,18831,21523,21566,21591,21610,21614,21615,21616,21626]]],["ministered",[10,10,[[8,1,1,0,1,[[238,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[10,2,2,2,4,[[291,1,1,2,3],[309,1,1,3,4]]],[11,1,1,4,5,[[337,1,1,4,5]]],[13,1,1,5,6,[[388,1,1,5,6]]],[16,2,2,6,8,[[427,1,1,6,7],[431,1,1,7,8]]],[23,1,1,8,9,[[796,1,1,8,9]]],[25,1,1,9,10,[[845,1,1,9,10]]]],[7277,8334,8721,9408,10236,11652,12726,12796,20294,21618]]],["ministers",[14,13,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]],[14,1,1,2,3,[[410,1,1,2,3]]],[18,2,2,3,5,[[580,1,1,3,4],[581,1,1,4,5]]],[23,1,1,5,6,[[777,1,1,5,6]]],[25,4,4,6,10,[[845,1,1,6,7],[846,2,2,7,9],[847,1,1,9,10]]],[28,4,3,10,13,[[876,3,2,10,12],[877,1,1,12,13]]]],[9084,11368,12218,15570,15575,19796,21610,21634,21635,21679,22300,22304,22328]]],["servant",[4,4,[[1,1,1,0,1,[[82,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[9,1,1,2,3,[[279,1,1,2,3]]],[11,1,1,3,4,[[318,1,1,3,4]]]],[2484,4052,8335,9689]]],["servants",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17236]]],["serve",[4,4,[[13,1,1,0,1,[[395,1,1,0,1]]],[18,1,1,1,2,[[578,1,1,1,2]]],[22,1,1,2,3,[[734,1,1,2,3]]],[25,1,1,3,4,[[821,1,1,3,4]]]],[11802,15519,18759,20927]]],["served",[2,2,[[0,2,2,0,2,[[38,1,1,0,1],[39,1,1,1,2]]]],[1153,1176]]],["service",[3,3,[[1,3,3,0,3,[[84,1,1,0,1],[88,2,2,1,3]]]],[2550,2665,2705]]],["servitor",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9646]]],["unto",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19797]]]]},{"k":"H8335","v":[["*",[2,2,[[3,1,1,0,1,[[120,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]]],[3755,11691]]],["minister",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11691]]],["ministry",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3755]]]]},{"k":"H8336","v":[["*",[41,37,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,33,30,1,31,[[74,1,1,1,2],[75,3,3,2,5],[76,3,3,5,8],[77,6,5,8,13],[84,4,4,13,17],[85,3,3,17,20],[87,4,4,20,24],[88,9,7,24,31]]],[16,2,1,31,32,[[426,2,1,31,32]]],[19,1,1,32,33,[[658,1,1,32,33]]],[21,1,1,33,34,[[675,1,1,33,34]]],[25,3,3,34,37,[[817,2,2,34,36],[828,1,1,36,37]]]],[1237,2199,2236,2266,2271,2281,2288,2290,2298,2299,2301,2308,2332,2537,2554,2556,2566,2574,2601,2603,2642,2649,2651,2656,2666,2667,2669,2672,2691,2692,2693,12708,17306,17613,20772,20775,21128]]],["+",[20,20,[[1,20,20,0,20,[[75,3,3,0,3],[76,3,3,3,6],[77,3,3,6,9],[85,3,3,9,12],[87,3,3,12,15],[88,5,5,15,20]]]],[2236,2266,2271,2281,2288,2290,2299,2301,2308,2574,2601,2603,2642,2649,2651,2666,2669,2672,2692,2693]]],["blue",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12708]]],["linen",[17,15,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,13,11,1,12,[[74,1,1,1,2],[77,3,2,2,4],[84,4,4,4,8],[87,1,1,8,9],[88,4,3,9,12]]],[25,3,3,12,15,[[817,2,2,12,14],[828,1,1,14,15]]]],[1237,2199,2298,2332,2537,2554,2556,2566,2656,2667,2691,2692,20772,20775,21128]]],["marble",[2,2,[[16,1,1,0,1,[[426,1,1,0,1]]],[21,1,1,1,2,[[675,1,1,1,2]]]],[12708,17613]]],["silk",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17306]]]]},{"k":"H8337","v":[["*",[215,202,[[0,8,8,0,8,[[6,2,2,0,2],[7,1,1,2,3],[15,1,1,3,4],[29,1,1,4,5],[30,1,1,5,6],[45,2,2,6,8]]],[1,28,27,8,35,[[61,1,1,8,9],[63,1,1,9,10],[65,1,1,10,11],[69,2,2,11,13],[70,1,1,13,14],[72,2,2,14,16],[73,1,1,16,17],[74,3,3,17,20],[75,3,3,20,23],[77,2,1,23,24],[80,2,2,24,26],[83,1,1,26,27],[84,1,1,27,28],[85,3,3,28,31],[86,3,3,31,34],[87,1,1,34,35]]],[2,5,4,35,39,[[101,1,1,35,36],[112,1,1,36,37],[113,1,1,37,38],[114,2,1,38,39]]],[3,28,28,39,67,[[117,4,4,39,43],[118,6,6,43,49],[119,2,2,49,51],[120,1,1,51,52],[123,1,1,52,53],[127,1,1,53,54],[142,3,3,54,57],[147,7,7,57,64],[151,3,3,64,67]]],[4,4,4,67,71,[[157,1,1,67,68],[167,2,2,68,70],[168,1,1,70,71]]],[5,7,7,71,78,[[192,2,2,71,73],[193,1,1,73,74],[201,3,3,74,77],[205,1,1,77,78]]],[6,7,7,78,85,[[213,1,1,78,79],[222,1,1,79,80],[228,3,3,80,83],[230,2,2,83,85]]],[7,2,2,85,87,[[234,2,2,85,87]]],[8,8,8,87,95,[[248,2,2,87,89],[249,1,1,89,90],[252,2,2,90,92],[258,1,1,92,93],[262,1,1,93,94],[265,1,1,94,95]]],[9,6,5,95,100,[[268,1,1,95,96],[271,1,1,96,97],[272,1,1,97,98],[281,1,1,98,99],[287,2,1,99,100]]],[10,10,9,100,109,[[296,1,1,100,101],[300,6,5,101,106],[301,1,1,106,107],[306,2,2,107,109]]],[11,9,9,109,118,[[317,1,1,109,110],[323,1,1,110,111],[325,2,2,111,113],[326,1,1,113,114],[327,2,2,114,116],[328,1,1,116,117],[330,1,1,117,118]]],[12,24,21,118,139,[[340,3,2,118,120],[341,2,1,120,121],[344,3,3,121,124],[345,1,1,124,125],[346,3,3,125,128],[349,3,3,128,131],[357,2,1,131,132],[358,1,1,132,133],[360,1,1,133,134],[361,2,2,134,136],[362,2,2,136,138],[363,1,1,138,139]]],[13,22,21,139,160,[[367,1,1,139,140],[368,3,3,140,143],[369,1,1,143,144],[375,5,4,144,148],[379,1,1,148,149],[382,1,1,149,150],[388,1,1,150,151],[392,3,3,151,154],[393,2,2,154,156],[394,1,1,156,157],[395,2,2,157,159],[401,1,1,159,160]]],[14,15,14,160,174,[[404,13,12,160,172],[410,2,2,172,174]]],[15,10,10,174,184,[[417,1,1,174,175],[419,9,9,175,184]]],[16,2,1,184,185,[[427,2,1,184,185]]],[17,2,2,185,187,[[440,1,1,185,186],[477,1,1,186,187]]],[19,1,1,187,188,[[633,1,1,187,188]]],[22,2,1,188,189,[[684,2,1,188,189]]],[23,3,3,189,192,[[778,1,1,189,190],[796,2,2,190,192]]],[25,12,10,192,202,[[810,1,1,192,193],[841,3,2,193,195],[842,5,4,195,199],[847,3,3,199,202]]]],[165,170,196,397,850,914,1404,1412,1853,1896,1973,2060,2062,2079,2154,2156,2193,2227,2228,2230,2244,2257,2260,2303,2435,2437,2517,2533,2582,2593,2596,2622,2623,2625,2659,3049,3405,3452,3472,3625,3629,3631,3650,3662,3667,3669,3673,3689,3690,3720,3726,3783,3853,4045,4511,4530,4540,4696,4701,4702,4704,4708,4710,4716,4851,4858,4860,5066,5331,5337,5350,5952,5963,5981,6243,6261,6264,6343,6599,6876,7004,7009,7010,7069,7101,7187,7189,7490,7500,7510,7622,7625,7823,7932,7987,8060,8137,8170,8407,8600,8902,9093,9095,9098,9099,9108,9124,9291,9306,9652,9832,9881,9890,9917,9933,9958,9965,10034,10365,10383,10412,10537,10539,10575,10613,10621,10624,10659,10744,10746,10755,10932,10959,10987,11019,11029,11049,11069,11094,11211,11213,11228,11229,11237,11377,11379,11382,11383,11474,11510,11656,11733,11735,11744,11756,11763,11765,11808,11824,11974,12037,12038,12040,12041,12049,12053,12057,12062,12087,12093,12094,12096,12227,12236,12400,12430,12435,12436,12438,12440,12450,12482,12488,12489,12736,12970,13934,16556,17771,19815,20299,20306,20624,21482,21489,21527,21529,21531,21534,21656,21659,21661]]],["+",[27,26,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,2,2,1,3,[[75,1,1,1,2],[85,1,1,2,3]]],[3,4,4,3,7,[[142,1,1,3,4],[147,3,3,4,7]]],[5,2,2,7,9,[[201,1,1,7,8],[205,1,1,8,9]]],[11,4,4,9,13,[[325,1,1,9,10],[326,1,1,10,11],[327,1,1,11,12],[328,1,1,12,13]]],[12,4,4,13,17,[[341,1,1,13,14],[361,2,2,14,16],[362,1,1,16,17]]],[13,7,7,17,24,[[379,1,1,17,18],[392,2,2,18,20],[393,2,2,20,22],[394,1,1,22,23],[395,1,1,23,24]]],[14,1,1,24,25,[[404,1,1,24,25]]],[22,2,1,25,26,[[684,2,1,25,26]]]],[1404,2260,2596,4511,4704,4710,4716,6243,6343,9881,9917,9958,9965,10412,11019,11029,11069,11474,11733,11735,11756,11763,11765,11808,12096,17771]]],["Six",[11,11,[[1,7,7,0,7,[[65,1,1,0,1],[69,1,1,1,2],[72,1,1,2,3],[77,1,1,3,4],[80,1,1,4,5],[83,1,1,5,6],[84,1,1,6,7]]],[2,2,2,7,9,[[112,1,1,7,8],[114,1,1,8,9]]],[4,2,2,9,11,[[157,1,1,9,10],[168,1,1,10,11]]]],[1973,2060,2156,2303,2435,2517,2533,3405,3472,5066,5350]]],["six",[175,166,[[0,7,7,0,7,[[6,2,2,0,2],[7,1,1,2,3],[15,1,1,3,4],[29,1,1,4,5],[30,1,1,5,6],[45,1,1,6,7]]],[1,19,19,7,26,[[61,1,1,7,8],[63,1,1,8,9],[69,1,1,9,10],[70,1,1,10,11],[72,1,1,11,12],[73,1,1,12,13],[74,3,3,13,16],[75,2,2,16,18],[77,1,1,18,19],[80,1,1,19,20],[85,2,2,20,22],[86,3,3,22,25],[87,1,1,25,26]]],[2,3,3,26,29,[[101,1,1,26,27],[113,1,1,27,28],[114,1,1,28,29]]],[3,24,24,29,53,[[117,4,4,29,33],[118,6,6,33,39],[119,2,2,39,41],[120,1,1,41,42],[123,1,1,42,43],[127,1,1,43,44],[142,2,2,44,46],[147,4,4,46,50],[151,3,3,50,53]]],[4,2,2,53,55,[[167,2,2,53,55]]],[5,5,5,55,60,[[192,2,2,55,57],[193,1,1,57,58],[201,2,2,58,60]]],[6,7,7,60,67,[[213,1,1,60,61],[222,1,1,61,62],[228,3,3,62,65],[230,2,2,65,67]]],[7,2,2,67,69,[[234,2,2,67,69]]],[8,8,8,69,77,[[248,2,2,69,71],[249,1,1,71,72],[252,2,2,72,74],[258,1,1,74,75],[262,1,1,75,76],[265,1,1,76,77]]],[9,6,5,77,82,[[268,1,1,77,78],[271,1,1,78,79],[272,1,1,79,80],[281,1,1,80,81],[287,2,1,81,82]]],[10,9,8,82,90,[[296,1,1,82,83],[300,6,5,83,88],[301,1,1,88,89],[306,1,1,89,90]]],[11,4,4,90,94,[[317,1,1,90,91],[323,1,1,91,92],[325,1,1,92,93],[327,1,1,93,94]]],[12,20,18,94,112,[[340,3,2,94,96],[341,1,1,96,97],[344,3,3,97,100],[345,1,1,100,101],[346,3,3,101,104],[349,3,3,104,107],[357,2,1,107,108],[358,1,1,108,109],[360,1,1,109,110],[362,1,1,110,111],[363,1,1,111,112]]],[13,15,14,112,126,[[367,1,1,112,113],[368,3,3,113,116],[369,1,1,116,117],[375,5,4,117,121],[382,1,1,121,122],[388,1,1,122,123],[392,1,1,123,124],[395,1,1,124,125],[401,1,1,125,126]]],[14,14,13,126,139,[[404,12,11,126,137],[410,2,2,137,139]]],[15,10,10,139,149,[[417,1,1,139,140],[419,9,9,140,149]]],[16,2,1,149,150,[[427,2,1,149,150]]],[17,2,2,150,152,[[440,1,1,150,151],[477,1,1,151,152]]],[19,1,1,152,153,[[633,1,1,152,153]]],[23,3,3,153,156,[[778,1,1,153,154],[796,2,2,154,156]]],[25,12,10,156,166,[[810,1,1,156,157],[841,3,2,157,159],[842,5,4,159,163],[847,3,3,163,166]]]],[165,170,196,397,850,914,1412,1853,1896,2062,2079,2154,2193,2227,2228,2230,2244,2257,2303,2437,2582,2593,2622,2623,2625,2659,3049,3452,3472,3625,3629,3631,3650,3662,3667,3669,3673,3689,3690,3720,3726,3783,3853,4045,4530,4540,4696,4701,4702,4708,4851,4858,4860,5331,5337,5952,5963,5981,6261,6264,6599,6876,7004,7009,7010,7069,7101,7187,7189,7490,7500,7510,7622,7625,7823,7932,7987,8060,8137,8170,8407,8600,8902,9093,9095,9098,9099,9108,9124,9306,9652,9832,9890,9933,10365,10383,10412,10537,10539,10575,10613,10621,10624,10659,10744,10746,10755,10932,10959,10987,11049,11094,11211,11213,11228,11229,11237,11377,11379,11382,11383,11510,11656,11744,11824,11974,12037,12038,12040,12041,12049,12053,12057,12062,12087,12093,12094,12227,12236,12400,12430,12435,12436,12438,12440,12450,12482,12488,12489,12736,12970,13934,16556,19815,20299,20306,20624,21482,21489,21527,21529,21531,21534,21656,21659,21661]]],["sixth",[2,2,[[10,1,1,0,1,[[306,1,1,0,1]]],[11,1,1,1,2,[[330,1,1,1,2]]]],[9291,10034]]]]},{"k":"H8338","v":[["part",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21450]]]]},{"k":"H8339","v":[["Sheshbazzar",[2,2,[[14,2,2,0,2,[[403,2,2,0,2]]]],[12024,12027]]]]},{"k":"H8340","v":[["Sheshbazzar",[2,2,[[14,2,2,0,2,[[407,2,2,0,2]]]],[12148,12150]]]]},{"k":"H8341","v":[["part",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21643]]]]},{"k":"H8342","v":[["*",[23,22,[[16,2,2,0,2,[[433,2,2,0,2]]],[18,5,5,2,7,[[522,1,1,2,3],[528,2,2,3,5],[582,1,1,5,6],[596,1,1,6,7]]],[22,7,6,7,13,[[690,1,1,7,8],[700,1,1,8,9],[713,2,1,9,10],[729,2,2,10,12],[739,1,1,12,13]]],[23,7,7,13,20,[[751,1,1,13,14],[759,1,1,14,15],[760,1,1,15,16],[769,1,1,16,17],[775,1,1,17,18],[777,2,2,18,20]]],[28,1,1,20,21,[[876,1,1,20,21]]],[37,1,1,21,22,[[918,1,1,21,22]]]],[12833,12834,14604,14699,14703,15649,16009,17903,18065,18330,18676,18684,18846,19153,19331,19345,19544,19704,19784,19786,22303,22995]]],["gladness",[3,3,[[16,1,1,0,1,[[433,1,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]],[22,1,1,2,3,[[729,1,1,2,3]]]],[12834,14604,18684]]],["joy",[16,15,[[16,1,1,0,1,[[433,1,1,0,1]]],[18,3,3,1,4,[[528,2,2,1,3],[582,1,1,3,4]]],[22,6,5,4,9,[[690,1,1,4,5],[700,1,1,5,6],[713,2,1,6,7],[729,1,1,7,8],[739,1,1,8,9]]],[23,4,4,9,13,[[759,1,1,9,10],[775,1,1,10,11],[777,2,2,11,13]]],[28,1,1,13,14,[[876,1,1,13,14]]],[37,1,1,14,15,[[918,1,1,14,15]]]],[12833,14699,14703,15649,17903,18065,18330,18676,18846,19331,19704,19784,19786,22303,22995]]],["mirth",[3,3,[[23,3,3,0,3,[[751,1,1,0,1],[760,1,1,1,2],[769,1,1,2,3]]]],[19153,19345,19544]]],["rejoicing",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16009]]]]},{"k":"H8343","v":[["Shashai",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12292]]]]},{"k":"H8344","v":[["Sheshai",[3,3,[[3,1,1,0,1,[[129,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]],[6,1,1,2,3,[[211,1,1,2,3]]]],[4097,6216,6519]]]]},{"k":"H8345","v":[["*",[28,26,[[0,2,2,0,2,[[0,1,1,0,1],[29,1,1,1,2]]],[1,4,4,2,6,[[65,3,3,2,5],[75,1,1,5,6]]],[2,1,1,6,7,[[114,1,1,6,7]]],[3,2,2,7,9,[[123,1,1,7,8],[145,1,1,8,9]]],[5,1,1,9,10,[[205,1,1,9,10]]],[9,1,1,10,11,[[269,1,1,10,11]]],[12,9,8,11,19,[[339,1,1,11,12],[340,1,1,12,13],[349,1,1,13,14],[361,1,1,14,15],[362,1,1,15,16],[363,2,2,16,18],[364,2,1,18,19]]],[15,1,1,19,20,[[415,1,1,19,20]]],[25,5,4,20,24,[[805,1,1,20,21],[809,2,1,21,22],[846,1,1,22,23],[847,1,1,23,24]]],[36,2,2,24,26,[[909,2,2,24,26]]]],[30,849,1952,1969,1976,2244,3490,3892,4637,6353,8086,10321,10364,10731,11024,11059,11080,11082,11118,12357,20540,20605,21643,21669,22841,22855]]],["+",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2244]]],["part",[3,3,[[25,3,3,0,3,[[805,1,1,0,1],[846,1,1,1,2],[847,1,1,2,3]]]],[20540,21643,21669]]],["sixth",[24,22,[[0,2,2,0,2,[[0,1,1,0,1],[29,1,1,1,2]]],[1,3,3,2,5,[[65,3,3,2,5]]],[2,1,1,5,6,[[114,1,1,5,6]]],[3,2,2,6,8,[[123,1,1,6,7],[145,1,1,7,8]]],[5,1,1,8,9,[[205,1,1,8,9]]],[9,1,1,9,10,[[269,1,1,9,10]]],[12,9,8,10,18,[[339,1,1,10,11],[340,1,1,11,12],[349,1,1,12,13],[361,1,1,13,14],[362,1,1,14,15],[363,2,2,15,17],[364,2,1,17,18]]],[15,1,1,18,19,[[415,1,1,18,19]]],[25,2,1,19,20,[[809,2,1,19,20]]],[36,2,2,20,22,[[909,2,2,20,22]]]],[30,849,1952,1969,1976,3490,3892,4637,6353,8086,10321,10364,10731,11024,11059,11080,11082,11118,12357,20605,22841,22855]]]]},{"k":"H8346","v":[["*",[59,56,[[0,8,8,0,8,[[4,6,6,0,6],[24,1,1,6,7],[45,1,1,7,8]]],[2,3,3,8,11,[[101,1,1,8,9],[116,2,2,9,11]]],[3,11,9,11,20,[[117,1,1,11,12],[118,1,1,12,13],[119,1,1,13,14],[123,3,1,14,15],[142,3,3,15,18],[147,2,2,18,20]]],[4,1,1,20,21,[[155,1,1,20,21]]],[5,1,1,21,22,[[199,1,1,21,22]]],[9,1,1,22,23,[[268,1,1,22,23]]],[10,4,4,23,27,[[294,2,2,23,25],[296,1,1,25,26],[300,1,1,26,27]]],[11,1,1,27,28,[[337,1,1,27,28]]],[12,6,6,28,34,[[339,2,2,28,30],[342,1,1,30,31],[346,1,1,31,32],[353,1,1,32,33],[363,1,1,33,34]]],[13,5,4,34,38,[[369,1,1,34,35],[375,1,1,35,36],[377,2,1,36,37],[378,1,1,37,38]]],[14,5,5,38,43,[[404,3,3,38,41],[410,2,2,41,43]]],[15,6,6,43,49,[[419,5,5,43,48],[423,1,1,48,49]]],[21,2,2,49,51,[[673,1,1,49,50],[676,1,1,50,51]]],[22,1,1,51,52,[[685,1,1,51,52]]],[23,1,1,52,53,[[796,1,1,52,53]]],[25,1,1,53,54,[[841,1,1,53,54]]],[26,2,2,54,56,[[858,2,2,54,56]]]],[120,123,125,126,128,132,684,1412,3049,3573,3577,3643,3684,3742,3938,4514,4516,4532,4698,4703,4979,6184,8080,8857,8866,8898,9093,10241,10327,10329,10446,10628,10858,11085,11232,11377,11435,11440,12036,12040,12091,12211,12214,12434,12438,12439,12486,12492,12594,17578,17622,17790,20301,21491,22013,22014]]],["+",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3577]]],["sixty",[11,9,[[0,6,6,0,6,[[4,6,6,0,6]]],[2,1,1,6,7,[[116,1,1,6,7]]],[3,3,1,7,8,[[123,3,1,7,8]]],[14,1,1,8,9,[[404,1,1,8,9]]]],[120,123,125,126,128,132,3573,3938,12040]]],["threescore",[47,46,[[0,2,2,0,2,[[24,1,1,0,1],[45,1,1,1,2]]],[2,1,1,2,3,[[101,1,1,2,3]]],[3,8,8,3,11,[[117,1,1,3,4],[118,1,1,4,5],[119,1,1,5,6],[142,3,3,6,9],[147,2,2,9,11]]],[4,1,1,11,12,[[155,1,1,11,12]]],[5,1,1,12,13,[[199,1,1,12,13]]],[9,1,1,13,14,[[268,1,1,13,14]]],[10,4,4,14,18,[[294,2,2,14,16],[296,1,1,16,17],[300,1,1,17,18]]],[11,1,1,18,19,[[337,1,1,18,19]]],[12,6,6,19,25,[[339,2,2,19,21],[342,1,1,21,22],[346,1,1,22,23],[353,1,1,23,24],[363,1,1,24,25]]],[13,5,4,25,29,[[369,1,1,25,26],[375,1,1,26,27],[377,2,1,27,28],[378,1,1,28,29]]],[14,4,4,29,33,[[404,2,2,29,31],[410,2,2,31,33]]],[15,6,6,33,39,[[419,5,5,33,38],[423,1,1,38,39]]],[21,2,2,39,41,[[673,1,1,39,40],[676,1,1,40,41]]],[22,1,1,41,42,[[685,1,1,41,42]]],[23,1,1,42,43,[[796,1,1,42,43]]],[25,1,1,43,44,[[841,1,1,43,44]]],[26,2,2,44,46,[[858,2,2,44,46]]]],[684,1412,3049,3643,3684,3742,4514,4516,4532,4698,4703,4979,6184,8080,8857,8866,8898,9093,10241,10327,10329,10446,10628,10858,11085,11232,11377,11435,11440,12036,12091,12211,12214,12434,12438,12439,12486,12492,12594,17578,17622,17790,20301,21491,22013,22014]]]]},{"k":"H8347","v":[["Sheshach",[2,2,[[23,2,2,0,2,[[769,1,1,0,1],[795,1,1,1,2]]]],[19560,20253]]]]},{"k":"H8348","v":[["Sheshan",[5,3,[[12,5,3,0,3,[[339,5,3,0,3]]]],[10337,10340,10341]]]]},{"k":"H8349","v":[["Shashak",[2,2,[[12,2,2,0,2,[[345,2,2,0,2]]]],[10589,10600]]]]},{"k":"H8350","v":[["vermilion",[2,2,[[23,1,1,0,1,[[766,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[19468,21021]]]]},{"k":"H8351","v":[]},{"k":"H8352","v":[["*",[9,9,[[0,7,7,0,7,[[3,2,2,0,2],[4,5,5,2,7]]],[3,1,1,7,8,[[140,1,1,7,8]]],[12,1,1,8,9,[[338,1,1,8,9]]]],[104,105,108,109,111,112,113,4463,10253]]],["Seth",[7,7,[[0,7,7,0,7,[[3,2,2,0,2],[4,5,5,2,7]]]],[104,105,108,109,111,112,113]]],["Sheth",[2,2,[[3,1,1,0,1,[[140,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[4463,10253]]]]},{"k":"H8353","v":[["*",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[852,1,1,1,2]]]],[12166,21808]]],["six",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21808]]],["sixth",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12166]]]]},{"k":"H8354","v":[["*",[218,193,[[0,18,14,0,14,[[8,1,1,0,1],[23,10,7,1,8],[24,1,1,8,9],[25,1,1,9,10],[26,1,1,10,11],[29,2,1,11,12],[42,1,1,12,13],[43,1,1,13,14]]],[1,12,11,14,25,[[56,4,3,14,17],[64,2,2,17,19],[66,3,3,19,22],[73,1,1,22,23],[81,1,1,23,24],[83,1,1,24,25]]],[2,2,2,25,27,[[99,1,1,25,26],[100,1,1,26,27]]],[3,10,9,27,36,[[122,3,2,27,29],[136,4,4,29,33],[137,1,1,33,34],[139,1,1,34,35],[149,1,1,35,36]]],[4,9,9,36,45,[[154,2,2,36,38],[161,2,2,38,40],[163,1,1,40,41],[180,1,1,41,42],[181,1,1,42,43],[184,2,2,43,45]]],[6,10,10,45,55,[[217,2,2,45,47],[219,1,1,47,48],[223,3,3,48,51],[225,1,1,51,52],[229,3,3,52,55]]],[7,3,3,55,58,[[233,1,1,55,56],[234,2,2,56,58]]],[8,4,4,58,62,[[236,2,2,58,60],[265,2,2,60,62]]],[9,7,7,62,69,[[277,2,2,62,64],[278,1,1,64,65],[282,1,1,65,66],[285,1,1,66,67],[289,2,2,67,69]]],[10,21,20,69,89,[[291,1,1,69,70],[294,1,1,70,71],[303,9,8,71,79],[306,1,1,79,80],[307,3,3,80,83],[308,2,2,83,85],[309,2,2,85,87],[310,2,2,87,89]]],[11,8,8,89,97,[[315,1,1,89,90],[318,2,2,90,92],[319,1,1,92,93],[321,1,1,93,94],[330,2,2,94,96],[331,1,1,96,97]]],[12,5,4,97,101,[[348,3,2,97,99],[349,1,1,99,100],[366,1,1,100,101]]],[14,1,1,101,102,[[412,1,1,101,102]]],[15,2,2,102,104,[[420,2,2,102,104]]],[16,3,3,104,107,[[428,1,1,104,105],[429,1,1,105,106],[432,1,1,106,107]]],[17,7,7,107,114,[[436,3,3,107,110],[441,1,1,110,111],[450,1,1,111,112],[456,1,1,112,113],[469,1,1,113,114]]],[18,5,5,114,119,[[527,1,1,114,115],[546,1,1,115,116],[552,1,1,116,117],[555,1,1,117,118],[587,1,1,118,119]]],[19,8,8,119,127,[[631,1,1,119,120],[632,1,1,120,121],[636,1,1,121,122],[650,1,1,122,123],[653,1,1,123,124],[658,3,3,124,127]]],[20,5,5,127,132,[[660,1,1,127,128],[661,1,1,128,129],[663,1,1,129,130],[666,1,1,130,131],[667,1,1,131,132]]],[21,2,1,132,133,[[675,2,1,132,133]]],[22,17,14,133,147,[[683,1,1,133,134],[699,1,1,134,135],[700,2,1,135,136],[702,2,1,136,137],[707,1,1,137,138],[714,2,2,138,140],[715,1,1,140,141],[722,1,1,141,142],[729,3,2,142,144],[740,2,2,144,146],[743,1,1,146,147]]],[23,22,13,147,160,[[746,2,1,147,148],[760,1,1,148,149],[766,1,1,149,150],[769,6,4,150,154],[779,6,4,154,158],[793,5,1,158,159],[795,1,1,159,160]]],[24,1,1,160,161,[[801,1,1,160,161]]],[25,16,15,161,176,[[805,3,2,161,163],[813,2,2,163,165],[824,2,2,165,167],[826,1,1,167,168],[832,2,2,168,170],[835,2,2,170,172],[840,3,3,172,175],[845,1,1,175,176]]],[26,1,1,176,177,[[850,1,1,176,177]]],[28,2,2,177,179,[[876,1,1,177,178],[878,1,1,178,179]]],[29,6,6,179,185,[[880,1,1,179,180],[882,2,2,180,182],[883,1,1,182,183],[884,1,1,183,184],[887,1,1,184,185]]],[30,3,1,185,186,[[888,3,1,185,186]]],[31,1,1,186,187,[[891,1,1,186,187]]],[32,1,1,187,188,[[898,1,1,187,188]]],[34,1,1,188,189,[[904,1,1,188,189]]],[35,1,1,189,190,[[906,1,1,189,190]]],[36,1,1,190,191,[[909,1,1,190,191]]],[37,3,2,191,193,[[917,2,1,191,192],[919,1,1,192,193]]]],[226,605,609,610,613,635,637,645,692,722,752,868,1324,1329,1703,1706,1709,1943,1944,1984,1985,1989,2188,2444,2524,2986,3031,3826,3843,4316,4322,4328,4330,4362,4440,4774,4944,4966,5166,5175,5219,5650,5685,5772,5796,6699,6700,6781,6888,6891,6898,6948,7028,7030,7045,7158,7175,7179,7221,7227,7990,7994,8270,8272,8289,8428,8546,8669,8670,8742,8864,9192,9193,9200,9201,9202,9203,9206,9207,9292,9321,9323,9327,9382,9383,9393,9395,9420,9424,9593,9696,9697,9715,9790,10051,10055,10085,10691,10692,10759,11186,12258,12503,12505,12762,12778,12808,12873,12882,12887,12982,13219,13375,13690,14681,14947,15079,15157,15793,16507,16532,16643,17051,17147,17288,17289,17291,17357,17372,17415,17473,17482,17599,17761,18040,18065,18104,18201,18342,18346,18377,18545,18690,18695,18862,18863,18910,18983,19344,19469,19550,19560,19561,19562,19828,19829,19831,19837,20139,20219,20446,20540,20545,20698,20699,21039,21041,21087,21244,21246,21331,21332,21465,21466,21467,21620,21749,22296,22346,22387,22411,22418,22434,22456,22509,22526,22565,22663,22764,22800,22846,22968,23014]]],["+",[13,9,[[11,1,1,0,1,[[330,1,1,0,1]]],[18,1,1,1,2,[[546,1,1,1,2]]],[22,2,2,2,4,[[714,1,1,2,3],[729,1,1,3,4]]],[23,6,2,4,6,[[769,2,1,4,5],[793,4,1,5,6]]],[29,2,2,6,8,[[883,1,1,6,7],[887,1,1,7,8]]],[35,1,1,8,9,[[906,1,1,8,9]]]],[10051,14947,18342,18690,19562,20139,22434,22509,22800]]],["Drink",[6,6,[[0,3,3,0,3,[[23,3,3,0,3]]],[19,1,1,3,4,[[632,1,1,3,4]]],[23,2,2,4,6,[[769,1,1,4,5],[779,1,1,5,6]]]],[605,609,637,16532,19561,19828]]],["banquet",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12808]]],["drank",[9,9,[[0,4,4,0,4,[[8,1,1,0,1],[23,1,1,1,2],[26,1,1,2,3],[42,1,1,3,4]]],[3,1,1,4,5,[[136,1,1,4,5]]],[4,1,1,5,6,[[184,1,1,5,6]]],[9,1,1,6,7,[[278,1,1,6,7]]],[10,2,2,7,9,[[303,1,1,7,8],[307,1,1,8,9]]]],[226,637,752,1324,4322,5796,8289,9203,9323]]],["drink",[150,139,[[0,8,7,0,7,[[23,4,4,0,4],[24,1,1,4,5],[25,1,1,5,6],[29,2,1,6,7]]],[1,12,11,7,18,[[56,4,3,7,10],[64,2,2,10,12],[66,3,3,12,15],[73,1,1,15,16],[81,1,1,16,17],[83,1,1,17,18]]],[2,1,1,18,19,[[99,1,1,18,19]]],[3,9,8,19,27,[[122,3,2,19,21],[136,3,3,21,24],[137,1,1,24,25],[139,1,1,25,26],[149,1,1,26,27]]],[4,6,6,27,33,[[154,2,2,27,29],[161,2,2,29,31],[180,1,1,31,32],[184,1,1,32,33]]],[6,9,9,33,42,[[217,2,2,33,35],[219,1,1,35,36],[223,3,3,36,39],[229,3,3,39,42]]],[7,1,1,42,43,[[233,1,1,42,43]]],[9,6,6,43,49,[[277,2,2,43,45],[282,1,1,45,46],[285,1,1,46,47],[289,2,2,47,49]]],[10,13,13,49,62,[[291,1,1,49,50],[303,6,6,50,56],[307,2,2,56,58],[308,2,2,58,60],[309,2,2,60,62]]],[11,5,5,62,67,[[315,1,1,62,63],[318,1,1,63,64],[319,1,1,64,65],[321,1,1,65,66],[330,1,1,66,67]]],[12,4,3,67,70,[[348,3,2,67,69],[366,1,1,69,70]]],[14,1,1,70,71,[[412,1,1,70,71]]],[15,2,2,71,73,[[420,2,2,71,73]]],[16,2,2,73,75,[[428,1,1,73,74],[429,1,1,74,75]]],[17,2,2,75,77,[[436,1,1,75,76],[456,1,1,76,77]]],[18,4,4,77,81,[[527,1,1,77,78],[552,1,1,78,79],[555,1,1,79,80],[587,1,1,80,81]]],[19,6,6,81,87,[[631,1,1,81,82],[636,1,1,82,83],[650,1,1,83,84],[658,3,3,84,87]]],[20,5,5,87,92,[[660,1,1,87,88],[661,1,1,88,89],[663,1,1,89,90],[666,1,1,90,91],[667,1,1,91,92]]],[21,1,1,92,93,[[675,1,1,92,93]]],[22,10,9,93,102,[[683,1,1,93,94],[699,1,1,94,95],[700,1,1,95,96],[702,2,1,96,97],[714,1,1,97,98],[729,1,1,98,99],[740,2,2,99,101],[743,1,1,101,102]]],[23,13,10,102,112,[[746,2,1,102,103],[760,1,1,103,104],[766,1,1,104,105],[769,3,3,105,108],[779,5,3,108,111],[793,1,1,111,112]]],[25,15,14,112,126,[[805,3,2,112,114],[813,2,2,114,116],[824,2,2,116,118],[826,1,1,118,119],[832,2,2,119,121],[835,1,1,121,122],[840,3,3,122,125],[845,1,1,125,126]]],[26,1,1,126,127,[[850,1,1,126,127]]],[28,1,1,127,128,[[878,1,1,127,128]]],[29,4,4,128,132,[[880,1,1,128,129],[882,2,2,129,131],[884,1,1,131,132]]],[30,2,1,132,133,[[888,2,1,132,133]]],[31,1,1,133,134,[[891,1,1,133,134]]],[32,1,1,134,135,[[898,1,1,134,135]]],[34,1,1,135,136,[[904,1,1,135,136]]],[36,1,1,136,137,[[909,1,1,136,137]]],[37,3,2,137,139,[[917,2,1,137,138],[919,1,1,138,139]]]],[605,635,637,645,692,722,868,1703,1706,1709,1943,1944,1984,1985,1989,2188,2444,2524,2986,3826,3843,4316,4328,4330,4362,4440,4774,4944,4966,5166,5175,5650,5772,6699,6700,6781,6888,6891,6898,7028,7030,7045,7158,8270,8272,8428,8546,8669,8670,8742,9192,9193,9200,9201,9202,9206,9321,9327,9382,9383,9393,9395,9593,9696,9715,9790,10055,10691,10692,11186,12258,12503,12505,12762,12778,12873,13375,14681,15079,15157,15793,16507,16643,17051,17288,17289,17291,17357,17372,17415,17473,17482,17599,17761,18040,18065,18104,18346,18695,18862,18863,18910,18983,19344,19469,19550,19560,19562,19829,19831,19837,20139,20540,20545,20698,20699,21039,21041,21087,21244,21246,21332,21465,21466,21467,21620,21749,22346,22387,22411,22418,22456,22526,22565,22663,22764,22846,22968,23014]]],["drinkers",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22296]]],["drinketh",[6,6,[[0,1,1,0,1,[[43,1,1,0,1]]],[4,1,1,1,2,[[163,1,1,1,2]]],[17,1,1,2,3,[[450,1,1,2,3]]],[19,1,1,3,4,[[653,1,1,3,4]]],[22,2,2,4,6,[[707,1,1,4,5],[722,1,1,5,6]]]],[1329,5219,13219,17147,18201,18545]]],["drinking",[12,12,[[0,2,2,0,2,[[23,2,2,0,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[8,1,1,3,4,[[265,1,1,3,4]]],[10,4,4,4,8,[[294,1,1,4,5],[306,1,1,5,6],[310,2,2,6,8]]],[12,1,1,8,9,[[349,1,1,8,9]]],[17,2,2,9,11,[[436,2,2,9,11]]],[22,1,1,11,12,[[700,1,1,11,12]]]],[610,613,7175,7994,8864,9292,9420,9424,10759,12882,12887,18065]]],["drunk",[16,16,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[6,1,1,2,3,[[225,1,1,2,3]]],[7,1,1,3,4,[[234,1,1,3,4]]],[8,3,3,4,7,[[236,2,2,4,6],[265,1,1,6,7]]],[10,2,2,7,9,[[303,2,2,7,9]]],[11,2,2,9,11,[[318,1,1,9,10],[331,1,1,10,11]]],[21,1,1,11,12,[[675,1,1,11,12]]],[22,2,2,12,14,[[715,1,1,12,13],[729,1,1,13,14]]],[25,1,1,14,15,[[835,1,1,14,15]]],[30,1,1,15,16,[[888,1,1,15,16]]]],[3031,5685,6948,7179,7221,7227,7990,9206,9207,9697,10085,17599,18377,18690,21331,22526]]],["drunken",[2,2,[[23,1,1,0,1,[[795,1,1,0,1]]],[24,1,1,1,2,[[801,1,1,1,2]]]],[20219,20446]]],["up",[2,2,[[17,2,2,0,2,[[441,1,1,0,1],[469,1,1,1,2]]]],[12982,13690]]]]},{"k":"H8355","v":[["*",[5,5,[[26,5,5,0,5,[[854,5,5,0,5]]]],[21875,21876,21877,21878,21897]]],["drank",[3,3,[[26,3,3,0,3,[[854,3,3,0,3]]]],[21875,21877,21878]]],["drink",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21876]]],["drunk",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21897]]]]},{"k":"H8356","v":[["*",[2,2,[[18,1,1,0,1,[[488,1,1,0,1]]],[22,1,1,1,2,[[697,1,1,1,2]]]],[14062,18014]]],["foundations",[1,1,[[18,1,1,0,1,[[488,1,1,0,1]]]],[14062]]],["purposes",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18014]]]]},{"k":"H8357","v":[["buttocks",[2,2,[[9,1,1,0,1,[[276,1,1,0,1]]],[22,1,1,1,2,[[698,1,1,1,2]]]],[8244,18033]]]]},{"k":"H8358","v":[["drunkenness",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17510]]]]},{"k":"H8359","v":[["warp",[9,9,[[2,9,9,0,9,[[102,9,9,0,9]]]],[3100,3101,3103,3104,3105,3108,3109,3110,3111]]]]},{"k":"H8360","v":[["drinking",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12710]]]]},{"k":"H8361","v":[["threescore",[4,3,[[14,2,1,0,1,[[408,2,1,0,1]]],[26,2,2,1,3,[[852,1,1,1,2],[854,1,1,2,3]]]],[12154,21808,21905]]]]},{"k":"H8362","v":[["*",[10,10,[[18,2,2,0,2,[[478,1,1,0,1],[569,1,1,1,2]]],[23,1,1,2,3,[[761,1,1,2,3]]],[25,6,6,3,9,[[818,4,4,3,7],[820,2,2,7,9]]],[27,1,1,9,10,[[870,1,1,9,10]]]],[13942,15424,19365,20833,20835,20847,20848,20891,20894,22221]]],["plant",[2,2,[[25,2,2,0,2,[[818,2,2,0,2]]]],[20847,20848]]],["planted",[8,8,[[18,2,2,0,2,[[478,1,1,0,1],[569,1,1,1,2]]],[23,1,1,2,3,[[761,1,1,2,3]]],[25,4,4,3,7,[[818,2,2,3,5],[820,2,2,5,7]]],[27,1,1,7,8,[[870,1,1,7,8]]]],[13942,15424,19365,20833,20835,20891,20894,22221]]]]},{"k":"H8363","v":[["plants",[1,1,[[18,1,1,0,1,[[605,1,1,0,1]]]],[16129]]]]},{"k":"H8364","v":[["Shuthalhites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4524]]]]},{"k":"H8365","v":[["open",[2,2,[[3,2,2,0,2,[[140,2,2,0,2]]]],[4449,4461]]]]},{"k":"H8366","v":[["pisseth",[6,6,[[8,2,2,0,2,[[260,2,2,0,2]]],[10,3,3,2,5,[[304,1,1,2,3],[306,1,1,3,4],[311,1,1,4,5]]],[11,1,1,5,6,[[321,1,1,5,6]]]],[7883,7895,9228,9294,9472,9764]]]]},{"k":"H8367","v":[["*",[4,4,[[18,1,1,0,1,[[584,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]],[31,2,2,2,4,[[889,2,2,2,4]]]],[15729,17161,22542,22543]]],["calm",[2,2,[[31,2,2,0,2,[[889,2,2,0,2]]]],[22542,22543]]],["ceaseth",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17161]]],["quiet",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15729]]]]},{"k":"H8368","v":[["parts",[1,1,[[8,1,1,0,1,[[240,1,1,0,1]]]],[7328]]]]},{"k":"H8369","v":[["Shethar",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12716]]]]},{"k":"H8370","v":[["Shetharboznai",[4,4,[[14,4,4,0,4,[[407,2,2,0,2],[408,2,2,2,4]]]],[12137,12140,12157,12164]]]]},{"k":"H8371","v":[["*",[2,2,[[18,2,2,0,2,[[526,1,1,0,1],[550,1,1,1,2]]]],[14662,15029]]],["laid",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14662]]],["set",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15029]]]]},{"k":"H8372","v":[["*",[13,11,[[10,1,1,0,1,[[304,1,1,0,1]]],[13,1,1,1,2,[[378,1,1,1,2]]],[25,11,9,2,11,[[841,11,9,2,11]]]],[9246,11448,21484,21487,21489,21490,21493,21498,21506,21510,21513]]],["chamber",[4,4,[[10,1,1,0,1,[[304,1,1,0,1]]],[13,1,1,1,2,[[378,1,1,1,2]]],[25,2,2,2,4,[[841,2,2,2,4]]]],[9246,11448,21484,21490]]],["chambers",[9,8,[[25,9,8,0,8,[[841,9,8,0,8]]]],[21484,21487,21489,21493,21498,21506,21510,21513]]]]},{"k":"H8373","v":[["longed",[2,2,[[18,2,2,0,2,[[596,2,2,0,2]]]],[15938,16072]]]]},{"k":"H8374","v":[["+",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22458]]]]},{"k":"H8375","v":[["*",[2,2,[[8,1,1,0,1,[[239,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[7312,15918]]],["longing",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15918]]],["ninety",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7312]]]]},{"k":"H8376","v":[["out",[2,2,[[3,2,2,0,2,[[150,2,2,0,2]]]],[4823,4824]]]]},{"k":"H8377","v":[["*",[2,2,[[4,1,1,0,1,[[166,1,1,0,1]]],[22,1,1,1,2,[[729,1,1,1,2]]]],[5295,18693]]],["bull",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18693]]],["ox",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5295]]]]},{"k":"H8378","v":[["*",[20,20,[[0,1,1,0,1,[[2,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[17,1,1,2,3,[[468,1,1,2,3]]],[18,8,8,3,11,[[487,2,2,3,5],[498,1,1,5,6],[515,1,1,6,7],[555,2,2,7,9],[583,1,1,9,10],[589,1,1,10,11]]],[19,8,8,11,19,[[637,1,1,11,12],[638,1,1,12,13],[640,2,2,13,15],[645,1,1,15,16],[646,1,1,16,17],[648,2,2,17,19]]],[22,1,1,19,20,[[704,1,1,19,20]]]],[61,4028,13670,14044,14058,14193,14499,15142,15143,15665,15813,16680,16711,16759,16766,16902,16947,17009,17010,18138]]],["+",[3,3,[[3,1,1,0,1,[[127,1,1,0,1]]],[18,2,2,1,3,[[555,1,1,1,2],[583,1,1,2,3]]]],[4028,15143,15665]]],["dainty",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13670]]],["desire",[14,14,[[18,6,6,0,6,[[487,2,2,0,2],[498,1,1,2,3],[515,1,1,3,4],[555,1,1,4,5],[589,1,1,5,6]]],[19,7,7,6,13,[[637,1,1,6,7],[638,1,1,7,8],[640,2,2,8,10],[645,1,1,10,11],[646,1,1,11,12],[648,1,1,12,13]]],[22,1,1,13,14,[[704,1,1,13,14]]]],[14044,14058,14193,14499,15142,15813,16680,16711,16759,16766,16902,16947,17009,18138]]],["greedily",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17010]]],["pleasant",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[61]]]]},{"k":"H8379","v":[["bound",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1499]]]]},{"k":"H8380","v":[["twins",[4,4,[[0,2,2,0,2,[[24,1,1,0,1],[37,1,1,1,2]]],[21,2,2,2,4,[[674,1,1,2,3],[677,1,1,3,4]]]],[682,1146,17587,17630]]]]},{"k":"H8381","v":[["curse",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20419]]]]},{"k":"H8382","v":[["*",[6,4,[[1,4,2,0,2,[[75,2,1,0,1],[85,2,1,1,2]]],[21,2,2,2,4,[[674,1,1,2,3],[676,1,1,3,4]]]],[2259,2595,17584,17620]]],["+",[1,1,[[1,1,1,0,1,[[85,1,1,0,1]]]],[2595]]],["coupled",[1,1,[[1,1,1,0,1,[[85,1,1,0,1]]]],[2595]]],["together",[2,1,[[1,2,1,0,1,[[75,2,1,0,1]]]],[2259]]],["twins",[2,2,[[21,2,2,0,2,[[674,1,1,0,1],[676,1,1,1,2]]]],[17584,17620]]]]},{"k":"H8383","v":[["lies",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21068]]]]},{"k":"H8384","v":[["*",[39,35,[[0,1,1,0,1,[[2,1,1,0,1]]],[3,2,2,1,3,[[129,1,1,1,2],[136,1,1,2,3]]],[4,1,1,3,4,[[160,1,1,3,4]]],[6,2,2,4,6,[[219,2,2,4,6]]],[10,1,1,6,7,[[294,1,1,6,7]]],[11,2,2,7,9,[[330,1,1,7,8],[332,1,1,8,9]]],[15,1,1,9,10,[[425,1,1,9,10]]],[18,1,1,10,11,[[582,1,1,10,11]]],[19,1,1,11,12,[[654,1,1,11,12]]],[21,1,1,12,13,[[672,1,1,12,13]]],[22,3,3,13,16,[[712,1,1,13,14],[714,1,1,14,15],[716,1,1,15,16]]],[23,12,8,16,24,[[749,1,1,16,17],[752,2,1,17,18],[768,8,5,18,23],[773,1,1,23,24]]],[27,2,2,24,26,[[863,1,1,24,25],[870,1,1,25,26]]],[28,3,3,26,29,[[876,2,2,26,28],[877,1,1,28,29]]],[29,1,1,29,30,[[882,1,1,29,30]]],[32,1,1,30,31,[[896,1,1,30,31]]],[33,1,1,31,32,[[902,1,1,31,32]]],[34,1,1,32,33,[[905,1,1,32,33]]],[36,1,1,33,34,[[910,1,1,33,34]]],[37,1,1,34,35,[[913,1,1,34,35]]]],[62,4098,4316,5145,6764,6765,8869,10055,10105,12686,15639,17187,17567,18307,18346,18411,19075,19166,19525,19526,19527,19529,19532,19652,22117,22218,22298,22303,22333,22419,22624,22724,22785,22874,22922]]],["+",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18307]]],["Figs",[1,1,[[23,1,1,0,1,[[768,1,1,0,1]]]],[19527]]],["fig",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[62]]],["figs",[14,12,[[3,2,2,0,2,[[129,1,1,0,1],[136,1,1,1,2]]],[11,1,1,2,3,[[332,1,1,2,3]]],[15,1,1,3,4,[[425,1,1,3,4]]],[22,1,1,4,5,[[716,1,1,4,5]]],[23,9,7,5,12,[[752,1,1,5,6],[768,7,5,6,11],[773,1,1,11,12]]]],[4098,4316,10105,12686,18411,19166,19525,19526,19527,19529,19532,19652]]],["tree",[16,16,[[6,2,2,0,2,[[219,2,2,0,2]]],[10,1,1,2,3,[[294,1,1,2,3]]],[11,1,1,3,4,[[330,1,1,3,4]]],[19,1,1,4,5,[[654,1,1,4,5]]],[21,1,1,5,6,[[672,1,1,5,6]]],[22,1,1,6,7,[[714,1,1,6,7]]],[23,1,1,7,8,[[752,1,1,7,8]]],[27,1,1,8,9,[[870,1,1,8,9]]],[28,3,3,9,12,[[876,2,2,9,11],[877,1,1,11,12]]],[32,1,1,12,13,[[896,1,1,12,13]]],[34,1,1,13,14,[[905,1,1,13,14]]],[36,1,1,14,15,[[910,1,1,14,15]]],[37,1,1,15,16,[[913,1,1,15,16]]]],[6764,6765,8869,10055,17187,17567,18346,19166,22218,22298,22303,22333,22624,22785,22874,22922]]],["trees",[6,6,[[4,1,1,0,1,[[160,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]],[23,1,1,2,3,[[749,1,1,2,3]]],[27,1,1,3,4,[[863,1,1,3,4]]],[29,1,1,4,5,[[882,1,1,4,5]]],[33,1,1,5,6,[[902,1,1,5,6]]]],[5145,15639,19075,22117,22419,22724]]]]},{"k":"H8385","v":[["occasion",[2,2,[[6,1,1,0,1,[[224,1,1,0,1]]],[23,1,1,1,2,[[746,1,1,1,2]]]],[6913,18989]]]]},{"k":"H8386","v":[["*",[2,2,[[22,1,1,0,1,[[707,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]]],[18195,20337]]],["heaviness",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18195]]],["mourning",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20337]]]]},{"k":"H8387","v":[["Taanathshiloh",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6271]]]]},{"k":"H8388","v":[["*",[7,5,[[5,5,4,0,4,[[201,3,2,0,2],[204,2,2,2,4]]],[22,2,1,4,5,[[722,2,1,4,5]]]],[6211,6213,6307,6310,18546]]],["drawn",[5,4,[[5,5,4,0,4,[[201,3,2,0,2],[204,2,2,2,4]]]],[6211,6213,6307,6310]]],["out",[2,1,[[22,2,1,0,1,[[722,2,1,0,1]]]],[18546]]]]},{"k":"H8389","v":[["*",[15,15,[[0,4,4,0,4,[[28,1,1,0,1],[38,1,1,1,2],[40,2,2,2,4]]],[4,1,1,4,5,[[173,1,1,4,5]]],[6,1,1,5,6,[[218,1,1,5,6]]],[8,3,3,6,9,[[251,1,1,6,7],[260,1,1,7,8],[263,1,1,8,9]]],[10,1,1,9,10,[[291,1,1,9,10]]],[16,1,1,10,11,[[427,1,1,10,11]]],[22,2,2,11,13,[[730,1,1,11,12],[731,1,1,12,13]]],[23,1,1,13,14,[[755,1,1,13,14]]],[24,1,1,14,15,[[800,1,1,14,15]]]],[812,1155,1213,1214,5458,6737,7613,7864,7956,8723,12731,18710,18713,19242,20428]]],["+",[5,5,[[0,2,2,0,2,[[28,1,1,0,1],[38,1,1,1,2]]],[4,1,1,2,3,[[173,1,1,2,3]]],[10,1,1,3,4,[[291,1,1,3,4]]],[16,1,1,4,5,[[427,1,1,4,5]]]],[812,1155,5458,8723,12731]]],["comely",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7613]]],["countenance",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7864]]],["favoured",[2,2,[[0,2,2,0,2,[[40,2,2,0,2]]]],[1213,1214]]],["form",[3,3,[[8,1,1,0,1,[[263,1,1,0,1]]],[22,2,2,1,3,[[730,1,1,1,2],[731,1,1,2,3]]]],[7956,18710,18713]]],["goodly",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19242]]],["resembled",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6737]]],["visage",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20428]]]]},{"k":"H8390","v":[["Tarea",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10610]]]]},{"k":"H8391","v":[["*",[2,2,[[22,2,2,0,2,[[719,1,1,0,1],[738,1,1,1,2]]]],[18470,18834]]],["box",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18834]]],["tree",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18470]]]]},{"k":"H8392","v":[["ark",[28,25,[[0,26,23,0,23,[[5,7,5,0,5],[6,8,8,5,13],[7,9,8,13,21],[8,2,2,21,23]]],[1,2,2,23,25,[[51,2,2,23,25]]]],[151,152,153,155,156,160,166,168,172,174,176,177,182,184,187,189,192,193,196,199,202,215,223,1557,1559]]]]},{"k":"H8393","v":[["*",[42,40,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,1,1,1,2,[[72,1,1,1,2]]],[2,11,10,2,12,[[108,1,1,2,3],[112,1,1,3,4],[114,9,8,4,12]]],[3,2,1,12,13,[[134,2,1,12,13]]],[4,6,6,13,19,[[166,2,2,13,15],[168,1,1,15,16],[174,1,1,16,17],[178,1,1,17,18],[185,1,1,18,19]]],[5,1,1,19,20,[[191,1,1,19,20]]],[11,1,1,20,21,[[320,1,1,20,21]]],[13,2,2,21,23,[[397,1,1,21,22],[398,1,1,22,23]]],[15,1,1,23,24,[[421,1,1,23,24]]],[17,1,1,24,25,[[466,1,1,24,25]]],[18,1,1,25,26,[[584,1,1,25,26]]],[19,8,8,26,34,[[630,2,2,26,28],[635,1,1,28,29],[637,1,1,29,30],[641,1,1,30,31],[642,1,1,31,32],[643,1,1,32,33],[645,1,1,33,34]]],[20,1,1,34,35,[[663,1,1,34,35]]],[22,2,2,35,37,[[701,1,1,35,36],[708,1,1,36,37]]],[23,2,2,37,39,[[746,1,1,37,38],[756,1,1,38,39]]],[25,1,1,39,40,[[849,1,1,39,40]]]],[1444,2154,3306,3441,3472,3476,3481,3484,3485,3489,3490,3491,4287,5312,5318,5357,5479,5578,5824,5946,9733,11859,11903,12548,13600,15736,16464,16469,16621,16672,16776,16813,16848,16921,17407,18080,18240,18968,19262,21720]]],["+",[2,2,[[5,1,1,0,1,[[191,1,1,0,1]]],[23,1,1,1,2,[[756,1,1,1,2]]]],[5946,19262]]],["fruit",[6,6,[[2,4,4,0,4,[[112,1,1,0,1],[114,3,3,1,4]]],[4,1,1,4,5,[[174,1,1,4,5]]],[19,1,1,5,6,[[637,1,1,5,6]]]],[3441,3472,3490,3491,5479,16672]]],["fruits",[6,6,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,3,3,1,4,[[114,3,3,1,4]]],[4,1,1,4,5,[[185,1,1,4,5]]],[11,1,1,5,6,[[320,1,1,5,6]]]],[2154,3484,3485,3491,5824,9733]]],["gain",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16469]]],["increase",[23,22,[[0,1,1,0,1,[[46,1,1,0,1]]],[2,4,4,1,5,[[108,1,1,1,2],[114,3,3,2,5]]],[3,2,1,5,6,[[134,2,1,5,6]]],[4,4,4,6,10,[[166,2,2,6,8],[168,1,1,8,9],[178,1,1,9,10]]],[13,2,2,10,12,[[397,1,1,10,11],[398,1,1,11,12]]],[15,1,1,12,13,[[421,1,1,12,13]]],[17,1,1,13,14,[[466,1,1,13,14]]],[18,1,1,14,15,[[584,1,1,14,15]]],[19,3,3,15,18,[[630,1,1,15,16],[641,1,1,16,17],[645,1,1,17,18]]],[20,1,1,18,19,[[663,1,1,18,19]]],[22,1,1,19,20,[[708,1,1,19,20]]],[23,1,1,20,21,[[746,1,1,20,21]]],[25,1,1,21,22,[[849,1,1,21,22]]]],[1444,3306,3476,3481,3489,4287,5312,5318,5357,5578,11859,11903,12548,13600,15736,16464,16776,16921,17407,18240,18968,21720]]],["revenue",[2,2,[[19,1,1,0,1,[[635,1,1,0,1]]],[22,1,1,1,2,[[701,1,1,1,2]]]],[16621,18080]]],["revenues",[2,2,[[19,2,2,0,2,[[642,1,1,0,1],[643,1,1,1,2]]]],[16813,16848]]]]},{"k":"H8394","v":[["*",[42,42,[[1,3,3,0,3,[[80,1,1,0,1],[84,1,1,1,2],[85,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[10,2,2,4,6,[[294,1,1,4,5],[297,1,1,5,6]]],[17,4,4,6,10,[[447,2,2,6,8],[461,1,1,8,9],[467,1,1,9,10]]],[18,4,4,10,14,[[526,1,1,10,11],[555,1,1,11,12],[613,1,1,12,13],[624,1,1,13,14]]],[19,19,19,14,33,[[629,4,4,14,18],[630,2,2,18,20],[632,1,1,20,21],[635,1,1,21,22],[637,1,1,22,23],[638,1,1,23,24],[641,1,1,24,25],[642,1,1,25,26],[644,1,1,26,27],[645,1,1,27,28],[646,1,1,28,29],[647,1,1,29,30],[648,1,1,30,31],[651,1,1,31,32],[655,1,1,32,33]]],[22,3,3,33,36,[[718,2,2,33,35],[722,1,1,35,36]]],[23,2,2,36,38,[[754,1,1,36,37],[795,1,1,37,38]]],[25,1,1,38,39,[[829,1,1,38,39]]],[27,1,1,39,40,[[874,1,1,39,40]]],[30,2,2,40,42,[[888,2,2,40,42]]]],[2423,2562,2567,5786,8873,8948,13140,13141,13479,13639,14651,15185,16201,16356,16435,16436,16439,16444,16468,16474,16518,16603,16679,16700,16801,16828,16900,16903,16933,16959,17014,17082,17212,18434,18448,18552,19213,20227,21161,22268,22517,22518]]],["discretion",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19213]]],["reasons",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13639]]],["skilfulness",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15185]]],["understanding",[38,38,[[1,3,3,0,3,[[80,1,1,0,1],[84,1,1,1,2],[85,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[10,2,2,4,6,[[294,1,1,4,5],[297,1,1,5,6]]],[17,3,3,6,9,[[447,2,2,6,8],[461,1,1,8,9]]],[18,2,2,9,11,[[526,1,1,9,10],[624,1,1,10,11]]],[19,19,19,11,30,[[629,4,4,11,15],[630,2,2,15,17],[632,1,1,17,18],[635,1,1,18,19],[637,1,1,19,20],[638,1,1,20,21],[641,1,1,21,22],[642,1,1,22,23],[644,1,1,23,24],[645,1,1,24,25],[646,1,1,25,26],[647,1,1,26,27],[648,1,1,27,28],[651,1,1,28,29],[655,1,1,29,30]]],[22,3,3,30,33,[[718,2,2,30,32],[722,1,1,32,33]]],[23,1,1,33,34,[[795,1,1,33,34]]],[25,1,1,34,35,[[829,1,1,34,35]]],[27,1,1,35,36,[[874,1,1,35,36]]],[30,2,2,36,38,[[888,2,2,36,38]]]],[2423,2562,2567,5786,8873,8948,13140,13141,13479,14651,16356,16435,16436,16439,16444,16468,16474,16518,16603,16679,16700,16801,16828,16900,16903,16933,16959,17014,17082,17212,18434,18448,18552,20227,21161,22268,22517,22518]]],["wisdom",[1,1,[[18,1,1,0,1,[[613,1,1,0,1]]]],[16201]]]]},{"k":"H8395","v":[["destruction",[1,1,[[13,1,1,0,1,[[388,1,1,0,1]]]],[11651]]]]},{"k":"H8396","v":[["Tabor",[10,10,[[5,1,1,0,1,[[205,1,1,0,1]]],[6,4,4,1,5,[[214,3,3,1,4],[218,1,1,4,5]]],[8,1,1,5,6,[[245,1,1,5,6]]],[12,1,1,6,7,[[343,1,1,6,7]]],[18,1,1,7,8,[[566,1,1,7,8]]],[23,1,1,8,9,[[790,1,1,8,9]]],[27,1,1,9,10,[[866,1,1,9,10]]]],[6343,6605,6611,6613,6737,7421,10531,15338,20063,22153]]]]},{"k":"H8397","v":[["confusion",[2,2,[[2,2,2,0,2,[[107,1,1,0,1],[109,1,1,1,2]]]],[3274,3330]]]]},{"k":"H8398","v":[["*",[36,36,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[17,3,3,3,6,[[453,1,1,3,4],[469,1,1,4,5],[472,1,1,5,6]]],[18,15,15,6,21,[[486,1,1,6,7],[495,1,1,7,8],[496,1,1,8,9],[501,1,1,9,10],[510,1,1,10,11],[527,1,1,11,12],[554,1,1,12,13],[566,1,1,13,14],[567,1,1,14,15],[570,1,1,15,16],[573,2,2,16,18],[574,1,1,18,19],[575,2,2,19,21]]],[19,2,2,21,23,[[635,2,2,21,23]]],[22,9,9,23,32,[[691,1,1,23,24],[692,2,2,24,26],[696,1,1,26,27],[702,1,1,27,28],[704,2,2,28,30],[705,1,1,30,31],[712,1,1,31,32]]],[23,2,2,32,34,[[754,1,1,32,33],[795,1,1,33,34]]],[24,1,1,34,35,[[800,1,1,34,35]]],[33,1,1,35,36,[[900,1,1,35,36]]]],[7248,8618,10850,13294,13696,13781,14029,14133,14172,14242,14374,14680,15111,15337,15380,15427,15475,15478,15482,15497,15499,16628,16633,17917,17945,17949,18000,18099,18139,18148,18157,18304,19213,20227,20432,22689]]],["+",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13294]]],["part",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16633]]],["world",[34,34,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[17,2,2,3,5,[[469,1,1,3,4],[472,1,1,4,5]]],[18,15,15,5,20,[[486,1,1,5,6],[495,1,1,6,7],[496,1,1,7,8],[501,1,1,8,9],[510,1,1,9,10],[527,1,1,10,11],[554,1,1,11,12],[566,1,1,12,13],[567,1,1,13,14],[570,1,1,14,15],[573,2,2,15,17],[574,1,1,17,18],[575,2,2,18,20]]],[19,1,1,20,21,[[635,1,1,20,21]]],[22,9,9,21,30,[[691,1,1,21,22],[692,2,2,22,24],[696,1,1,24,25],[702,1,1,25,26],[704,2,2,26,28],[705,1,1,28,29],[712,1,1,29,30]]],[23,2,2,30,32,[[754,1,1,30,31],[795,1,1,31,32]]],[24,1,1,32,33,[[800,1,1,32,33]]],[33,1,1,33,34,[[900,1,1,33,34]]]],[7248,8618,10850,13696,13781,14029,14133,14172,14242,14374,14680,15111,15337,15380,15427,15475,15478,15482,15497,15499,16628,17917,17945,17949,18000,18099,18139,18148,18157,18304,19213,20227,20432,22689]]]]},{"k":"H8399","v":[["destruction",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17875]]]]},{"k":"H8400","v":[["blemish",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3365]]]]},{"k":"H8401","v":[["*",[17,16,[[0,2,2,0,2,[[23,2,2,0,2]]],[1,8,7,2,9,[[54,8,7,2,9]]],[6,1,1,9,10,[[229,1,1,9,10]]],[10,1,1,10,11,[[294,1,1,10,11]]],[17,2,2,11,13,[[456,1,1,11,12],[476,1,1,12,13]]],[22,2,2,13,15,[[689,1,1,13,14],[743,1,1,14,15]]],[23,1,1,15,16,[[767,1,1,15,16]]]],[616,623,1639,1642,1643,1644,1645,1648,1650,7043,8872,13373,13915,17891,18922,19512]]],["chaff",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19512]]],["straw",[15,14,[[0,2,2,0,2,[[23,2,2,0,2]]],[1,8,7,2,9,[[54,8,7,2,9]]],[6,1,1,9,10,[[229,1,1,9,10]]],[10,1,1,10,11,[[294,1,1,10,11]]],[17,1,1,11,12,[[476,1,1,11,12]]],[22,2,2,12,14,[[689,1,1,12,13],[743,1,1,13,14]]]],[616,623,1639,1642,1643,1644,1645,1648,1650,7043,8872,13915,17891,18922]]],["stubble",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13373]]]]},{"k":"H8402","v":[["Tibni",[3,2,[[10,3,2,0,2,[[306,3,2,0,2]]]],[9304,9305]]]]},{"k":"H8403","v":[["*",[20,17,[[1,3,2,0,2,[[74,3,2,0,2]]],[4,5,3,2,5,[[156,5,3,2,5]]],[5,1,1,5,6,[[208,1,1,5,6]]],[11,1,1,6,7,[[328,1,1,6,7]]],[12,4,4,7,11,[[365,4,4,7,11]]],[18,2,2,11,13,[[583,1,1,11,12],[621,1,1,12,13]]],[22,1,1,13,14,[[722,1,1,13,14]]],[25,3,3,14,17,[[809,2,2,14,16],[811,1,1,16,17]]]],[2204,2235,5020,5021,5022,6454,9973,11154,11155,11161,11162,15671,16317,18546,20607,20614,20641]]],["figure",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18546]]],["form",[3,3,[[25,3,3,0,3,[[809,2,2,0,2],[811,1,1,2,3]]]],[20607,20614,20641]]],["likeness",[5,3,[[4,5,3,0,3,[[156,5,3,0,3]]]],[5020,5021,5022]]],["pattern",[9,8,[[1,3,2,0,2,[[74,3,2,0,2]]],[5,1,1,2,3,[[208,1,1,2,3]]],[11,1,1,3,4,[[328,1,1,3,4]]],[12,4,4,4,8,[[365,4,4,4,8]]]],[2204,2235,6454,9973,11154,11155,11161,11162]]],["similitude",[2,2,[[18,2,2,0,2,[[583,1,1,0,1],[621,1,1,1,2]]]],[15671,16317]]]]},{"k":"H8404","v":[["Taberah",[2,2,[[3,1,1,0,1,[[127,1,1,0,1]]],[4,1,1,1,2,[[161,1,1,1,2]]]],[4027,5179]]]]},{"k":"H8405","v":[["Thebez",[3,2,[[6,2,1,0,1,[[219,2,1,0,1]]],[9,1,1,1,2,[[277,1,1,1,2]]]],[6804,8280]]]]},{"k":"H8406","v":[["broken",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21800]]]]},{"k":"H8407","v":[["*",[6,6,[[11,3,3,0,3,[[327,1,1,0,1],[328,2,2,1,3]]],[12,2,2,3,5,[[342,2,2,3,5]]],[13,1,1,5,6,[[394,1,1,5,6]]]],[9954,9970,9973,10434,10454,11784]]],["Tiglathpileser",[3,3,[[11,3,3,0,3,[[327,1,1,0,1],[328,2,2,1,3]]]],[9954,9970,9973]]],["Tilgathpilneser",[3,3,[[12,2,2,0,2,[[342,2,2,0,2]]],[13,1,1,2,3,[[394,1,1,2,3]]]],[10434,10454,11784]]]]},{"k":"H8408","v":[["benefits",[1,1,[[18,1,1,0,1,[[593,1,1,0,1]]]],[15860]]]]},{"k":"H8409","v":[["+",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14522]]]]},{"k":"H8410","v":[["*",[2,2,[[22,2,2,0,2,[[719,1,1,0,1],[738,1,1,1,2]]]],[18470,18834]]],["pine",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18470]]],["tree",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18834]]]]},{"k":"H8411","v":[["continually",[2,2,[[26,2,2,0,2,[[855,2,2,0,2]]]],[21921,21925]]]]},{"k":"H8412","v":[["Tadmor",[2,2,[[10,1,1,0,1,[[299,1,1,0,1]]],[13,1,1,1,2,[[374,1,1,1,2]]]],[9069,11350]]]]},{"k":"H8413","v":[["Tidal",[2,2,[[0,2,2,0,2,[[13,2,2,0,2]]]],[337,345]]]]},{"k":"H8414","v":[["*",[20,19,[[0,1,1,0,1,[[0,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[8,2,1,2,3,[[247,2,1,2,3]]],[17,3,3,3,6,[[441,1,1,3,4],[447,1,1,4,5],[461,1,1,5,6]]],[18,1,1,6,7,[[584,1,1,6,7]]],[22,11,11,7,18,[[702,1,1,7,8],[707,1,1,8,9],[712,1,1,9,10],[718,2,2,10,12],[719,1,1,12,13],[722,1,1,13,14],[723,2,2,14,16],[727,1,1,16,17],[737,1,1,17,18]]],[23,1,1,18,19,[[748,1,1,18,19]]]],[1,5768,7481,12996,13152,13474,15739,18105,18214,18314,18437,18443,18480,18542,18579,18580,18640,18804,19050]]],["confusion",[3,3,[[22,3,3,0,3,[[702,1,1,0,1],[712,1,1,1,2],[719,1,1,2,3]]]],[18105,18314,18480]]],["form",[2,2,[[0,1,1,0,1,[[0,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]]],[1,19050]]],["nothing",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12996]]],["nought",[2,2,[[22,2,2,0,2,[[707,1,1,0,1],[727,1,1,1,2]]]],[18214,18640]]],["place",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13474]]],["vain",[4,3,[[8,2,1,0,1,[[247,2,1,0,1]]],[22,2,2,1,3,[[723,2,2,1,3]]]],[7481,18579,18580]]],["vanity",[4,4,[[22,4,4,0,4,[[718,2,2,0,2],[722,1,1,2,3],[737,1,1,3,4]]]],[18437,18443,18542,18804]]],["waste",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5768]]],["wilderness",[2,2,[[17,1,1,0,1,[[447,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]]],[13152,15739]]]]},{"k":"H8415","v":[["*",[36,35,[[0,4,4,0,4,[[0,1,1,0,1],[6,1,1,1,2],[7,1,1,2,3],[48,1,1,3,4]]],[1,2,2,4,6,[[64,2,2,4,6]]],[4,2,2,6,8,[[160,1,1,6,7],[185,1,1,7,8]]],[17,4,4,8,12,[[463,1,1,8,9],[473,2,2,9,11],[476,1,1,11,12]]],[18,12,11,12,23,[[510,1,1,12,13],[513,1,1,13,14],[519,2,1,14,15],[548,1,1,15,16],[554,1,1,16,17],[555,1,1,17,18],[581,1,1,18,19],[583,1,1,19,20],[584,1,1,20,21],[612,1,1,21,22],[625,1,1,22,23]]],[19,4,4,23,27,[[630,1,1,23,24],[635,3,3,24,27]]],[22,2,2,27,29,[[729,1,1,27,28],[741,1,1,28,29]]],[25,3,3,29,32,[[827,1,1,29,30],[832,2,2,30,32]]],[29,1,1,32,33,[[885,1,1,32,33]]],[31,1,1,33,34,[[890,1,1,33,34]]],[34,1,1,34,35,[[905,1,1,34,35]]]],[1,170,185,1498,1925,1928,5144,5823,13518,13809,13823,13920,14373,14444,14562,14996,15109,15128,15577,15660,15725,16181,16378,16475,16626,16629,16630,18683,18879,21119,21234,21245,22468,22553,22778]]],["+",[2,2,[[4,1,1,0,1,[[185,1,1,0,1]]],[18,1,1,1,2,[[548,1,1,1,2]]]],[5823,14996]]],["Deep",[1,1,[[18,1,1,0,1,[[519,1,1,0,1]]]],[14562]]],["deep",[17,17,[[0,4,4,0,4,[[0,1,1,0,1],[6,1,1,1,2],[7,1,1,2,3],[48,1,1,3,4]]],[17,2,2,4,6,[[473,1,1,4,5],[476,1,1,5,6]]],[18,3,3,6,9,[[513,1,1,6,7],[519,1,1,7,8],[581,1,1,8,9]]],[19,1,1,9,10,[[635,1,1,9,10]]],[22,2,2,10,12,[[729,1,1,10,11],[741,1,1,11,12]]],[25,3,3,12,15,[[827,1,1,12,13],[832,2,2,13,15]]],[29,1,1,15,16,[[885,1,1,15,16]]],[34,1,1,16,17,[[905,1,1,16,17]]]],[1,170,185,1498,13823,13920,14444,14562,15577,16630,18683,18879,21119,21234,21245,22468,22778]]],["deeps",[1,1,[[18,1,1,0,1,[[625,1,1,0,1]]]],[16378]]],["depth",[5,5,[[17,2,2,0,2,[[463,1,1,0,1],[473,1,1,1,2]]],[18,1,1,2,3,[[510,1,1,2,3]]],[19,1,1,3,4,[[635,1,1,3,4]]],[31,1,1,4,5,[[890,1,1,4,5]]]],[13518,13809,14373,16629,22553]]],["depths",[9,9,[[1,2,2,0,2,[[64,2,2,0,2]]],[4,1,1,2,3,[[160,1,1,2,3]]],[18,4,4,3,7,[[554,1,1,3,4],[555,1,1,4,5],[583,1,1,5,6],[584,1,1,6,7]]],[19,2,2,7,9,[[630,1,1,7,8],[635,1,1,8,9]]]],[1925,1928,5144,15109,15128,15660,15725,16475,16626]]],["places",[1,1,[[18,1,1,0,1,[[612,1,1,0,1]]]],[16181]]]]},{"k":"H8416","v":[["*",[56,56,[[1,1,1,0,1,[[64,1,1,0,1]]],[4,2,2,1,3,[[162,1,1,1,2],[178,1,1,2,3]]],[12,1,1,3,4,[[353,1,1,3,4]]],[13,1,1,4,5,[[386,1,1,4,5]]],[15,2,2,5,7,[[421,1,1,5,6],[424,1,1,6,7]]],[18,29,29,7,36,[[486,1,1,7,8],[499,2,2,8,10],[510,1,1,10,11],[511,1,1,11,12],[512,1,1,12,13],[517,1,1,13,14],[525,1,1,14,15],[528,1,1,15,16],[542,1,1,16,17],[543,2,2,17,19],[548,3,3,19,22],[555,1,1,22,23],[556,1,1,23,24],[577,1,1,24,25],[579,1,1,25,26],[583,3,3,26,29],[586,1,1,29,30],[588,1,1,30,31],[596,1,1,31,32],[622,1,1,32,33],[624,1,1,33,34],[625,1,1,34,35],[626,1,1,35,36]]],[22,11,11,36,47,[[720,3,3,36,39],[721,1,1,39,40],[726,1,1,40,41],[738,2,2,41,43],[739,2,2,43,45],[740,1,1,45,46],[741,1,1,46,47]]],[23,6,6,47,53,[[757,1,1,47,48],[761,1,1,48,49],[777,1,1,49,50],[792,1,1,50,51],[793,1,1,51,52],[795,1,1,52,53]]],[34,1,1,53,54,[[905,1,1,53,54]]],[35,2,2,54,56,[[908,2,2,54,56]]]],[1931,5207,5585,10855,11609,12516,12670,14035,14207,14229,14367,14389,14438,14528,14644,14706,14861,14875,14881,14982,14984,14990,15117,15198,15512,15542,15653,15663,15698,15756,15803,16069,16341,16352,16385,16386,18488,18490,18492,18526,18623,18827,18839,18846,18854,18861,18873,19277,19371,19784,20082,20152,20253,22771,22839,22840]]],["Praise",[2,2,[[18,1,1,0,1,[[542,1,1,0,1]]],[22,1,1,1,2,[[738,1,1,1,2]]]],[14861,18839]]],["praise",[49,49,[[4,2,2,0,2,[[162,1,1,0,1],[178,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[13,1,1,3,4,[[386,1,1,3,4]]],[15,2,2,4,6,[[421,1,1,4,5],[424,1,1,5,6]]],[18,26,26,6,32,[[486,1,1,6,7],[499,1,1,7,8],[510,1,1,8,9],[511,1,1,9,10],[512,1,1,10,11],[517,1,1,11,12],[525,1,1,12,13],[528,1,1,13,14],[543,2,2,14,16],[548,3,3,16,19],[556,1,1,19,20],[577,1,1,20,21],[579,1,1,21,22],[583,3,3,22,25],[586,1,1,25,26],[588,1,1,26,27],[596,1,1,27,28],[622,1,1,28,29],[624,1,1,29,30],[625,1,1,30,31],[626,1,1,31,32]]],[22,8,8,32,40,[[720,3,3,32,35],[721,1,1,35,36],[726,1,1,36,37],[739,2,2,37,39],[740,1,1,39,40]]],[23,6,6,40,46,[[757,1,1,40,41],[761,1,1,41,42],[777,1,1,42,43],[792,1,1,43,44],[793,1,1,44,45],[795,1,1,45,46]]],[34,1,1,46,47,[[905,1,1,46,47]]],[35,2,2,47,49,[[908,2,2,47,49]]]],[5207,5585,10855,11609,12516,12670,14035,14229,14367,14389,14438,14528,14644,14706,14875,14881,14982,14984,14990,15198,15512,15542,15653,15663,15698,15756,15803,16069,16341,16352,16385,16386,18488,18490,18492,18526,18623,18846,18854,18861,19277,19371,19784,20082,20152,20253,22771,22839,22840]]],["praises",[5,5,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,2,2,1,3,[[499,1,1,1,2],[555,1,1,2,3]]],[22,2,2,3,5,[[738,1,1,3,4],[741,1,1,4,5]]]],[1931,14207,15117,18827,18873]]]]},{"k":"H8417","v":[["folly",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12948]]]]},{"k":"H8418","v":[]},{"k":"H8419","v":[["*",[10,10,[[4,1,1,0,1,[[184,1,1,0,1]]],[19,9,9,1,10,[[629,2,2,1,3],[633,1,1,3,4],[635,1,1,4,5],[637,2,2,5,7],[643,2,2,7,9],[650,1,1,9,10]]]],[5778,16445,16447,16554,16615,16687,16688,16868,16870,17077]]],["Frowardness",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16554]]],["froward",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[19,3,3,1,4,[[635,1,1,1,2],[637,1,1,2,3],[643,1,1,3,4]]]],[5778,16615,16687,16868]]],["frowardness",[2,2,[[19,2,2,0,2,[[629,1,1,0,1],[637,1,1,1,2]]]],[16447,16688]]],["things",[3,3,[[19,3,3,0,3,[[629,1,1,0,1],[643,1,1,1,2],[650,1,1,2,3]]]],[16445,16870,17077]]]]},{"k":"H8420","v":[["*",[3,3,[[17,1,1,0,1,[[466,1,1,0,1]]],[25,2,2,1,3,[[810,2,2,1,3]]]],[13623,20626,20628]]],["desire",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13623]]],["mark",[2,2,[[25,2,2,0,2,[[810,2,2,0,2]]]],[20626,20628]]]]},{"k":"H8421","v":[["*",[8,7,[[14,3,3,0,3,[[407,2,2,0,2],[408,1,1,2,3]]],[26,5,4,3,7,[[851,1,1,3,4],[852,1,1,4,5],[853,3,2,5,7]]]],[12139,12145,12156,21772,21823,21871,21873]]],["answer",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[852,1,1,1,2]]]],[12139,21823]]],["answered",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21772]]],["restored",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12156]]],["returned",[4,3,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,3,2,1,3,[[853,3,2,1,3]]]],[12145,21871,21873]]]]},{"k":"H8422","v":[["Tubal",[8,8,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]],[25,5,5,3,8,[[828,1,1,3,4],[833,1,1,4,5],[839,2,2,5,7],[840,1,1,7,8]]]],[236,10257,18941,21134,21274,21427,21428,21449]]]]},{"k":"H8423","v":[["Tubalcain",[2,1,[[0,2,1,0,1,[[3,2,1,0,1]]]],[101]]]]},{"k":"H8424","v":[["*",[4,4,[[18,1,1,0,1,[[596,1,1,0,1]]],[19,3,3,1,4,[[637,1,1,1,2],[641,1,1,2,3],[644,1,1,3,4]]]],[15926,16657,16785,16894]]],["+",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15926]]],["heaviness",[2,2,[[19,2,2,0,2,[[637,1,1,0,1],[641,1,1,1,2]]]],[16657,16785]]],["sorrow",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16894]]]]},{"k":"H8425","v":[["Togarmah",[4,4,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[25,2,2,2,4,[[828,1,1,2,3],[839,1,1,3,4]]]],[237,10258,21135,21431]]]]},{"k":"H8426","v":[["*",[31,29,[[2,5,4,0,4,[[96,4,3,0,3],[111,1,1,3,4]]],[5,1,1,4,5,[[193,1,1,4,5]]],[13,3,2,5,7,[[395,2,1,5,6],[399,1,1,6,7]]],[14,1,1,7,8,[[412,1,1,7,8]]],[15,4,4,8,12,[[424,4,4,8,12]]],[18,11,11,12,23,[[503,1,1,12,13],[519,1,1,13,14],[527,2,2,14,16],[533,1,1,16,17],[546,1,1,17,18],[572,1,1,18,19],[577,1,1,19,20],[584,1,1,20,21],[593,1,1,21,22],[624,1,1,22,23]]],[22,1,1,23,24,[[729,1,1,23,24]]],[23,3,3,24,27,[[761,1,1,24,25],[774,1,1,25,26],[777,1,1,26,27]]],[29,1,1,27,28,[[882,1,1,27,28]]],[31,1,1,28,29,[[890,1,1,28,29]]]],[2891,2892,2894,3398,5995,11822,11924,12263,12651,12655,12662,12664,14280,14559,14682,14691,14767,14965,15456,15512,15721,15865,16358,18676,19383,19686,19786,22415,22557]]],["confession",[2,2,[[5,1,1,0,1,[[193,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]]],[5995,12263]]],["offerings",[3,2,[[13,3,2,0,2,[[395,2,1,0,1],[399,1,1,1,2]]]],[11822,11924]]],["praise",[4,4,[[18,2,2,0,2,[[519,1,1,0,1],[527,1,1,1,2]]],[23,2,2,2,4,[[761,1,1,2,3],[777,1,1,3,4]]]],[14559,14691,19383,19786]]],["praises",[1,1,[[18,1,1,0,1,[[533,1,1,0,1]]]],[14767]]],["thanks",[3,3,[[15,3,3,0,3,[[424,3,3,0,3]]]],[12655,12662,12664]]],["thanksgiving",[17,16,[[2,5,4,0,4,[[96,4,3,0,3],[111,1,1,3,4]]],[18,8,8,4,12,[[503,1,1,4,5],[527,1,1,5,6],[546,1,1,6,7],[572,1,1,7,8],[577,1,1,8,9],[584,1,1,9,10],[593,1,1,10,11],[624,1,1,11,12]]],[22,1,1,12,13,[[729,1,1,12,13]]],[23,1,1,13,14,[[774,1,1,13,14]]],[29,1,1,14,15,[[882,1,1,14,15]]],[31,1,1,15,16,[[890,1,1,15,16]]]],[2891,2892,2894,3398,14280,14682,14965,15456,15512,15721,15865,16358,18676,19686,22415,22557]]],["thanksgivings",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12651]]]]},{"k":"H8427","v":[["*",[2,2,[[8,1,1,0,1,[[256,1,1,0,1]]],[25,1,1,1,2,[[810,1,1,1,2]]]],[7785,20626]]],["scrabbled",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7785]]],["set",[1,1,[[25,1,1,0,1,[[810,1,1,0,1]]]],[20626]]]]},{"k":"H8428","v":[["limited",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15154]]]]},{"k":"H8429","v":[["astonied",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21831]]]]},{"k":"H8430","v":[["Toah",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10488]]]]},{"k":"H8431","v":[["*",[6,6,[[17,1,1,0,1,[[476,1,1,0,1]]],[18,1,1,1,2,[[516,1,1,1,2]]],[19,3,3,2,5,[[637,1,1,2,3],[638,1,1,3,4],[640,1,1,4,5]]],[24,1,1,5,6,[[799,1,1,5,6]]]],[13897,14519,16684,16695,16759,20372]]],["Hope",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16759]]],["hope",[5,5,[[17,1,1,0,1,[[476,1,1,0,1]]],[18,1,1,1,2,[[516,1,1,1,2]]],[19,2,2,2,4,[[637,1,1,2,3],[638,1,1,3,4]]],[24,1,1,4,5,[[799,1,1,4,5]]]],[13897,14519,16684,16695,20372]]]]},{"k":"H8432","v":[["*",[419,390,[[0,17,17,0,17,[[0,1,1,0,1],[1,1,1,1,2],[2,2,2,2,4],[8,1,1,4,5],[14,1,1,5,6],[17,2,2,6,8],[18,1,1,8,9],[22,3,3,9,12],[34,1,1,12,13],[36,1,1,13,14],[39,1,1,14,15],[40,1,1,15,16],[41,1,1,16,17]]],[1,32,28,17,45,[[51,1,1,17,18],[52,2,2,18,20],[56,1,1,20,21],[58,1,1,21,22],[60,1,1,22,23],[61,2,2,23,25],[63,5,5,25,30],[64,1,1,30,31],[73,2,2,31,33],[74,1,1,33,34],[75,1,1,34,35],[77,3,3,35,38],[78,2,2,38,40],[82,1,1,40,41],[85,1,1,41,42],[88,7,3,42,45]]],[2,17,16,45,61,[[100,2,1,45,46],[104,1,1,46,47],[105,2,2,47,49],[106,4,4,49,53],[107,1,1,53,54],[109,1,1,54,55],[111,1,1,55,56],[113,1,1,56,57],[114,1,1,57,58],[115,3,3,58,61]]],[3,46,42,61,103,[[117,2,2,61,63],[118,2,2,63,65],[119,1,1,65,66],[120,2,2,66,68],[121,2,2,68,70],[124,4,4,70,74],[125,1,1,74,75],[129,1,1,75,76],[131,3,3,76,79],[132,5,5,79,84],[133,1,1,84,85],[134,5,4,85,89],[135,3,3,89,92],[141,2,2,92,94],[142,2,1,94,95],[143,4,3,95,98],[148,1,1,98,99],[149,1,1,99,100],[151,4,3,100,103]]],[4,21,20,103,123,[[155,1,1,103,104],[156,4,4,104,108],[157,5,5,108,113],[161,1,1,113,114],[162,1,1,114,115],[163,1,1,115,116],[165,1,1,116,117],[171,1,1,117,118],[173,1,1,118,119],[174,1,1,119,120],[175,2,2,120,122],[184,2,1,122,123]]],[5,29,28,123,151,[[189,1,1,123,124],[190,6,6,124,130],[193,2,2,130,132],[194,3,3,132,135],[198,1,1,135,136],[199,2,2,136,138],[200,1,1,138,139],[201,1,1,139,140],[202,1,1,140,141],[203,4,3,141,144],[205,3,3,144,147],[206,1,1,147,148],[207,1,1,148,149],[208,2,2,149,151]]],[6,8,7,151,158,[[217,1,1,151,152],[219,1,1,152,153],[222,2,1,153,154],[225,1,1,154,155],[226,1,1,155,156],[228,1,1,156,157],[230,1,1,157,158]]],[8,10,9,158,167,[[242,1,1,158,159],[244,2,2,159,161],[245,2,2,161,163],[246,1,1,163,164],[250,2,1,164,165],[253,1,1,165,166],[260,1,1,166,167]]],[9,10,9,167,176,[[267,1,1,167,168],[269,1,1,168,169],[270,1,1,169,170],[272,1,1,170,171],[273,1,1,171,172],[286,1,1,172,173],[289,3,2,173,175],[290,1,1,175,176]]],[10,11,9,176,185,[[293,2,2,176,178],[296,4,3,178,181],[298,2,2,181,183],[301,2,1,183,184],[304,1,1,184,185]]],[11,5,5,185,190,[[316,1,1,185,186],[318,1,1,186,187],[321,1,1,187,188],[323,1,1,188,189],[335,1,1,189,190]]],[12,4,4,190,194,[[348,2,2,190,192],[353,1,1,192,193],[358,1,1,193,194]]],[13,6,6,194,200,[[372,1,1,194,195],[373,1,1,195,196],[386,1,1,196,197],[388,1,1,197,198],[389,1,1,198,199],[398,1,1,199,200]]],[15,5,5,200,205,[[416,2,2,200,202],[418,1,1,202,203],[419,1,1,203,204],[421,1,1,204,205]]],[16,2,2,205,207,[[429,1,1,205,206],[434,1,1,206,207]]],[17,6,6,207,213,[[436,1,1,207,208],[437,2,2,208,210],[450,1,1,210,211],[455,1,1,211,212],[477,1,1,212,213]]],[18,14,14,213,227,[[499,2,2,213,215],[517,2,2,215,217],[534,2,2,217,219],[545,1,1,219,220],[586,1,1,220,221],[593,1,1,221,222],[612,1,1,222,223],[613,2,2,223,225],[614,1,1,225,226],[620,1,1,226,227]]],[19,8,8,227,235,[[628,1,1,227,228],[631,1,1,228,229],[632,2,2,229,231],[635,1,1,231,232],[644,1,1,232,233],[649,1,1,233,234],[654,1,1,234,235]]],[21,1,1,235,236,[[673,1,1,235,236]]],[22,12,12,236,248,[[683,1,1,236,237],[684,1,1,237,238],[685,1,1,238,239],[694,1,1,239,240],[697,1,1,240,241],[702,2,2,241,243],[719,1,1,243,244],[730,1,1,244,245],[736,1,1,245,246],[739,1,1,246,247],[744,1,1,247,248]]],[23,23,22,248,270,[[753,1,1,248,249],[756,2,2,249,251],[765,1,1,251,252],[773,1,1,252,253],[781,2,2,253,255],[783,2,2,255,257],[784,3,3,257,260],[785,3,2,260,262],[788,1,1,262,263],[794,2,2,263,265],[795,4,4,265,269],[796,1,1,269,270]]],[25,116,104,270,374,[[802,5,4,270,274],[803,1,1,274,275],[804,3,3,275,278],[806,6,6,278,284],[807,2,2,284,286],[808,2,2,286,288],[809,1,1,288,289],[810,4,2,289,291],[811,1,1,291,292],[812,6,5,292,297],[813,4,4,297,301],[814,1,1,301,302],[815,6,6,302,308],[816,1,1,308,309],[817,1,1,309,310],[818,1,1,310,311],[819,1,1,311,312],[820,2,2,312,314],[821,2,2,314,316],[822,1,1,316,317],[823,13,11,317,328],[824,1,1,328,329],[825,3,3,329,332],[827,3,3,332,335],[828,3,3,335,338],[829,6,5,338,343],[830,5,4,343,347],[831,2,1,347,348],[832,3,3,348,351],[833,6,5,351,356],[834,1,1,356,357],[835,2,2,357,359],[837,1,1,359,360],[838,3,3,360,363],[840,1,1,363,364],[844,2,2,364,366],[845,1,1,366,367],[847,1,1,367,368],[848,3,1,368,369],[849,5,5,369,374]]],[29,2,2,374,376,[[881,1,1,374,375],[884,1,1,375,376]]],[32,3,3,376,379,[[894,1,1,376,377],[895,1,1,377,378],[899,1,1,378,379]]],[35,1,1,379,380,[[907,1,1,379,380]]],[36,1,1,380,381,[[910,1,1,380,381]]],[37,9,9,381,390,[[912,4,4,381,385],[915,3,3,385,388],[918,2,2,388,390]]]],[5,39,58,63,226,370,448,450,486,577,580,581,1013,1090,1192,1243,1257,1559,1581,1583,1690,1766,1810,1847,1865,1905,1911,1912,1916,1918,1939,2193,2195,2203,2263,2294,2325,2326,2381,2382,2484,2599,2667,2687,2689,3030,3199,3217,3230,3243,3245,3247,3248,3277,3332,3401,3456,3502,3535,3536,3549,3651,3653,3675,3691,3704,3745,3761,3795,3813,3945,3953,3955,3958,3972,4107,4167,4179,4182,4197,4215,4227,4239,4241,4250,4263,4277,4280,4281,4295,4299,4309,4478,4482,4551,4557,4558,4561,4748,4768,4850,4860,4879,4991,5016,5019,5037,5040,5057,5075,5076,5077,5079,5167,5190,5211,5288,5408,5459,5472,5510,5511,5809,5910,5913,5915,5918,5919,5920,5928,5997,5999,6011,6015,6024,6132,6163,6170,6190,6215,6274,6279,6281,6284,6322,6330,6370,6381,6422,6445,6457,6710,6805,6873,6933,6978,6994,7096,7355,7405,7409,7428,7441,7456,7566,7686,7890,8047,8108,8126,8174,8182,8566,8665,8673,8697,8824,8836,8909,8915,8923,9036,9049,9128,9225,9616,9694,9758,9831,10174,10687,10695,10821,10940,11295,11331,11601,11655,11676,11879,12370,12381,12411,12424,12522,12763,12862,12875,12892,12899,13222,13339,13937,14218,14226,14533,14535,14772,14774,14925,15785,15867,16184,16207,16210,16224,16297,16414,16511,16531,16532,16622,16875,17028,17191,17581,17741,17774,17788,17972,18023,18108,18113,18469,18707,18795,18852,18939,19181,19263,19265,19444,19667,19878,19886,19926,19937,19942,19946,19947,19964,19965,20017,20174,20203,20218,20257,20259,20275,20301,20465,20468,20469,20480,20497,20517,20526,20527,20548,20550,20551,20554,20556,20558,20570,20576,20581,20586,20615,20624,20626,20643,20656,20662,20664,20666,20678,20682,20690,20692,20704,20722,20739,20740,20745,20747,20749,20751,20758,20815,20841,20867,20883,20887,20903,20904,20976,20979,20983,20985,20989,20994,20995,20996,20997,20998,21001,21002,21046,21061,21063,21067,21105,21112,21115,21148,21153,21155,21171,21173,21175,21179,21180,21186,21187,21195,21204,21211,21244,21247,21248,21268,21269,21273,21276,21280,21313,21325,21337,21382,21398,21423,21425,21455,21579,21581,21608,21665,21701,21710,21712,21717,21723,21724,22404,22454,22607,22611,22678,22819,22860,22903,22904,22909,22910,22940,22943,22944,22979,22984]]],["+",[78,76,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,7,7,1,8,[[52,2,2,1,3],[56,1,1,3,4],[61,1,1,4,5],[73,1,1,5,6],[77,1,1,6,7],[82,1,1,7,8]]],[2,1,1,8,9,[[100,1,1,8,9]]],[3,15,15,9,24,[[119,1,1,9,10],[120,2,2,10,12],[124,4,4,12,16],[132,3,3,16,19],[134,1,1,19,20],[135,1,1,20,21],[141,1,1,21,22],[143,1,1,22,23],[151,1,1,23,24]]],[4,14,14,24,38,[[156,4,4,24,28],[157,5,5,28,33],[161,1,1,33,34],[162,1,1,34,35],[174,1,1,35,36],[175,2,2,36,38]]],[5,4,4,38,42,[[190,3,3,38,41],[193,1,1,41,42]]],[8,3,2,42,44,[[242,1,1,42,43],[250,2,1,43,44]]],[9,2,2,44,46,[[269,1,1,44,45],[289,1,1,45,46]]],[10,4,4,46,50,[[293,1,1,46,47],[296,1,1,47,48],[298,1,1,48,49],[304,1,1,49,50]]],[11,2,2,50,52,[[321,1,1,50,51],[323,1,1,51,52]]],[13,1,1,52,53,[[388,1,1,52,53]]],[15,1,1,53,54,[[418,1,1,53,54]]],[16,1,1,54,55,[[434,1,1,54,55]]],[18,1,1,55,56,[[613,1,1,55,56]]],[19,1,1,56,57,[[632,1,1,56,57]]],[22,3,3,57,60,[[702,1,1,57,58],[730,1,1,58,59],[736,1,1,59,60]]],[23,5,5,60,65,[[756,1,1,60,61],[788,1,1,61,62],[794,1,1,62,63],[795,2,2,63,65]]],[25,11,10,65,75,[[802,3,2,65,67],[812,2,2,67,69],[815,2,2,69,71],[829,2,2,71,73],[830,1,1,73,74],[833,1,1,74,75]]],[29,1,1,75,76,[[884,1,1,75,76]]]],[486,1581,1583,1690,1847,2193,2294,2484,3030,3704,3745,3761,3945,3953,3955,3958,4215,4227,4239,4263,4309,4478,4558,4879,5016,5019,5037,5040,5057,5075,5076,5077,5079,5167,5190,5472,5510,5511,5913,5918,5928,5999,7355,7566,8108,8673,8836,8915,9036,9225,9758,9831,11655,12411,12862,16207,16532,18113,18707,18795,19263,20017,20174,20218,20257,20468,20469,20662,20664,20739,20740,21173,21175,21187,21269,22454]]],["Among",[1,1,[[3,1,1,0,1,[[134,1,1,0,1]]]],[4281]]],["among",[113,107,[[0,5,5,0,5,[[22,2,2,0,2],[34,1,1,2,3],[39,1,1,3,4],[41,1,1,4,5]]],[1,5,5,5,10,[[51,1,1,5,6],[61,1,1,6,7],[74,1,1,7,8],[78,2,2,8,10]]],[2,14,14,10,24,[[104,1,1,10,11],[105,1,1,11,12],[106,4,4,12,16],[107,1,1,16,17],[109,1,1,17,18],[111,1,1,18,19],[113,1,1,19,20],[114,1,1,20,21],[115,3,3,21,24]]],[3,22,20,24,44,[[117,2,2,24,26],[118,1,1,26,27],[121,1,1,27,28],[125,1,1,28,29],[131,3,3,29,32],[132,1,1,32,33],[133,1,1,33,34],[134,3,2,34,36],[135,1,1,36,37],[141,1,1,37,38],[142,2,1,38,39],[143,2,2,39,41],[148,1,1,41,42],[151,2,2,42,44]]],[4,1,1,44,45,[[184,1,1,44,45]]],[5,12,11,45,56,[[194,1,1,45,46],[200,1,1,46,47],[201,1,1,47,48],[202,1,1,48,49],[203,4,3,49,52],[205,1,1,52,53],[206,1,1,53,54],[208,2,2,54,56]]],[6,3,2,56,58,[[222,2,1,56,57],[228,1,1,57,58]]],[8,2,2,58,60,[[245,2,2,58,60]]],[10,2,2,60,62,[[296,1,1,60,61],[301,1,1,61,62]]],[11,2,2,62,64,[[316,1,1,62,63],[335,1,1,63,64]]],[12,1,1,64,65,[[358,1,1,64,65]]],[15,1,1,65,66,[[416,1,1,65,66]]],[17,5,5,66,71,[[436,1,1,66,67],[437,2,2,67,69],[450,1,1,69,70],[477,1,1,70,71]]],[18,3,3,71,74,[[534,1,1,71,72],[545,1,1,72,73],[586,1,1,73,74]]],[19,3,3,74,77,[[628,1,1,74,75],[644,1,1,75,76],[654,1,1,76,77]]],[22,2,2,77,79,[[702,1,1,77,78],[739,1,1,78,79]]],[23,7,7,79,86,[[773,1,1,79,80],[781,1,1,80,81],[783,1,1,81,82],[784,3,3,82,85],[785,1,1,85,86]]],[25,22,20,86,106,[[802,1,1,86,87],[803,1,1,87,88],[804,2,2,88,90],[807,1,1,90,91],[810,1,1,91,92],[812,1,1,92,93],[813,2,2,93,95],[819,1,1,95,96],[820,2,2,96,98],[821,1,1,98,99],[823,1,1,99,100],[830,1,1,100,101],[834,1,1,101,102],[835,2,2,102,104],[845,1,1,104,105],[848,3,1,105,106]]],[36,1,1,106,107,[[910,1,1,106,107]]]],[577,581,1013,1192,1257,1559,1865,2203,2381,2382,3199,3230,3243,3245,3247,3248,3277,3332,3401,3456,3502,3535,3536,3549,3651,3653,3691,3813,3972,4167,4179,4182,4197,4250,4277,4280,4299,4482,4551,4558,4561,4748,4860,4879,5809,6011,6190,6215,6274,6279,6281,6284,6370,6381,6445,6457,6873,6994,7428,7441,8909,9128,9616,10174,10940,12370,12875,12892,12899,13222,13937,14772,14925,15785,16414,16875,17191,18108,18852,19667,19878,19937,19942,19946,19947,19965,20465,20497,20517,20527,20576,20624,20656,20690,20692,20867,20883,20887,20904,21002,21195,21313,21325,21337,21608,21701,22860]]],["amongst",[2,2,[[0,2,2,0,2,[[2,1,1,0,1],[22,1,1,1,2]]]],[63,580]]],["between",[3,2,[[1,3,2,0,2,[[77,1,1,0,1],[88,2,1,1,2]]]],[2326,2689]]],["half",[1,1,[[4,1,1,0,1,[[155,1,1,0,1]]]],[4991]]],["home",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5459]]],["in",[17,14,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,4,1,1,2,[[88,4,1,1,2]]],[2,1,1,2,3,[[100,1,1,2,3]]],[3,2,2,3,5,[[129,1,1,3,4],[143,1,1,4,5]]],[8,1,1,5,6,[[244,1,1,5,6]]],[10,1,1,6,7,[[301,1,1,6,7]]],[12,1,1,7,8,[[348,1,1,7,8]]],[19,1,1,8,9,[[649,1,1,8,9]]],[25,5,5,9,14,[[815,4,4,9,13],[825,1,1,13,14]]]],[1090,2667,3030,4107,4557,7409,9128,10695,17028,20745,20747,20749,20751,21067]]],["into",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7405]]],["middle",[7,7,[[5,1,1,0,1,[[198,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[8,1,1,2,3,[[260,1,1,2,3]]],[10,1,1,3,4,[[298,1,1,3,4]]],[13,1,1,4,5,[[373,1,1,4,5]]],[23,1,1,5,6,[[783,1,1,5,6]]],[25,1,1,6,7,[[802,1,1,6,7]]]],[6132,6978,7890,9049,11331,19926,20480]]],["midst",[170,163,[[0,4,4,0,4,[[0,1,1,0,1],[1,1,1,1,2],[2,1,1,2,3],[14,1,1,3,4]]],[1,11,11,4,15,[[60,1,1,4,5],[63,5,5,5,10],[64,1,1,10,11],[73,1,1,11,12],[75,1,1,12,13],[77,1,1,13,14],[88,1,1,14,15]]],[2,1,1,15,16,[[105,1,1,15,16]]],[3,6,6,16,22,[[118,1,1,16,17],[121,1,1,17,18],[132,1,1,18,19],[135,1,1,19,20],[149,1,1,20,21],[151,1,1,21,22]]],[4,4,4,22,26,[[163,1,1,22,23],[165,1,1,23,24],[171,1,1,24,25],[184,1,1,25,26]]],[5,9,9,26,35,[[189,1,1,26,27],[190,3,3,27,30],[193,1,1,30,31],[194,2,2,31,33],[199,2,2,33,35]]],[6,2,2,35,37,[[225,1,1,35,36],[230,1,1,36,37]]],[8,2,2,37,39,[[246,1,1,37,38],[253,1,1,38,39]]],[9,7,7,39,46,[[267,1,1,39,40],[270,1,1,40,41],[272,1,1,41,42],[286,1,1,42,43],[289,2,2,43,45],[290,1,1,45,46]]],[10,2,2,46,48,[[293,1,1,46,47],[296,1,1,47,48]]],[11,1,1,48,49,[[318,1,1,48,49]]],[12,2,2,49,51,[[348,1,1,49,50],[353,1,1,50,51]]],[13,3,3,51,54,[[372,1,1,51,52],[386,1,1,52,53],[398,1,1,53,54]]],[15,1,1,54,55,[[421,1,1,54,55]]],[16,1,1,55,56,[[429,1,1,55,56]]],[18,7,7,56,63,[[499,2,2,56,58],[534,1,1,58,59],[593,1,1,59,60],[612,1,1,60,61],[613,1,1,61,62],[614,1,1,62,63]]],[19,3,3,63,66,[[631,1,1,63,64],[632,1,1,64,65],[635,1,1,65,66]]],[21,1,1,66,67,[[673,1,1,66,67]]],[22,7,7,67,74,[[683,1,1,67,68],[684,1,1,68,69],[685,1,1,69,70],[694,1,1,70,71],[697,1,1,71,72],[719,1,1,72,73],[744,1,1,73,74]]],[23,10,9,74,83,[[753,1,1,74,75],[756,1,1,75,76],[765,1,1,76,77],[781,1,1,77,78],[785,2,1,78,79],[794,1,1,79,80],[795,2,2,80,82],[796,1,1,82,83]]],[25,74,68,83,151,[[806,6,6,83,89],[807,1,1,89,90],[808,2,2,90,92],[809,1,1,92,93],[810,3,1,93,94],[811,1,1,94,95],[812,3,3,95,98],[813,1,1,98,99],[814,1,1,99,100],[816,1,1,100,101],[817,1,1,101,102],[818,1,1,102,103],[821,1,1,103,104],[822,1,1,104,105],[823,12,10,105,115],[824,1,1,115,116],[825,1,1,116,117],[827,3,3,117,120],[828,3,3,120,123],[829,4,4,123,127],[830,3,3,127,130],[831,2,1,130,131],[832,3,3,131,134],[833,5,4,134,138],[837,1,1,138,139],[838,3,3,139,142],[840,1,1,142,143],[844,2,2,143,145],[847,1,1,145,146],[849,5,5,146,151]]],[29,1,1,151,152,[[881,1,1,151,152]]],[32,2,2,152,154,[[894,1,1,152,153],[899,1,1,153,154]]],[35,1,1,154,155,[[907,1,1,154,155]]],[37,8,8,155,163,[[912,3,3,155,158],[915,3,3,158,161],[918,2,2,161,163]]]],[5,39,58,370,1810,1905,1911,1912,1916,1918,1939,2195,2263,2325,2687,3217,3675,3795,4241,4295,4768,4850,5211,5288,5408,5809,5910,5915,5919,5920,5997,6015,6024,6163,6170,6933,7096,7456,7686,8047,8126,8174,8566,8665,8673,8697,8824,8923,9694,10687,10821,11295,11601,11879,12522,12763,14218,14226,14774,15867,16184,16210,16224,16511,16531,16622,17581,17741,17774,17788,17972,18023,18469,18939,19181,19265,19444,19886,19964,20203,20259,20275,20301,20548,20550,20551,20554,20556,20558,20570,20581,20586,20615,20626,20643,20662,20666,20678,20682,20722,20758,20815,20841,20903,20976,20979,20983,20985,20989,20994,20995,20996,20997,20998,21001,21046,21063,21105,21112,21115,21148,21153,21155,21171,21173,21179,21180,21186,21195,21204,21211,21244,21247,21248,21268,21273,21276,21280,21382,21398,21423,21425,21455,21579,21581,21665,21710,21712,21717,21723,21724,22404,22607,22678,22819,22904,22909,22910,22940,22943,22944,22979,22984]]],["same",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1243]]],["therein",[3,3,[[15,1,1,0,1,[[419,1,1,0,1]]],[25,1,1,1,2,[[825,1,1,1,2]]],[37,1,1,2,3,[[912,1,1,2,3]]]],[12424,21061,22903]]],["through",[2,2,[[1,1,1,0,1,[[85,1,1,0,1]]],[13,1,1,1,2,[[389,1,1,1,2]]]],[2599,11676]]],["with",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1766]]],["within",[18,18,[[0,3,3,0,3,[[8,1,1,0,1],[17,2,2,1,3]]],[5,3,3,3,6,[[205,2,2,3,5],[207,1,1,5,6]]],[6,2,2,6,8,[[217,1,1,6,7],[219,1,1,7,8]]],[9,1,1,8,9,[[273,1,1,8,9]]],[10,1,1,9,10,[[296,1,1,9,10]]],[15,1,1,10,11,[[416,1,1,10,11]]],[17,1,1,11,12,[[455,1,1,11,12]]],[18,3,3,12,15,[[517,2,2,12,14],[620,1,1,14,15]]],[25,2,2,15,17,[[804,1,1,15,16],[813,1,1,16,17]]],[32,1,1,17,18,[[895,1,1,17,18]]]],[226,448,450,6322,6330,6422,6710,6805,8182,8923,12381,13339,14533,14535,16297,20526,20704,22611]]]]},{"k":"H8433","v":[["*",[28,28,[[11,1,1,0,1,[[331,1,1,0,1]]],[17,2,2,1,3,[[448,1,1,1,2],[458,1,1,2,3]]],[18,4,4,3,7,[[515,1,1,3,4],[516,1,1,4,5],[550,1,1,5,6],[626,1,1,6,7]]],[19,16,16,7,23,[[628,3,3,7,10],[630,1,1,10,11],[632,1,1,11,12],[633,1,1,12,13],[637,1,1,13,14],[639,1,1,14,15],[640,1,1,15,16],[642,4,4,16,20],[654,1,1,20,21],[656,2,2,21,23]]],[22,1,1,23,24,[[715,1,1,23,24]]],[25,2,2,24,26,[[806,1,1,24,25],[826,1,1,25,26]]],[27,1,1,26,27,[[866,1,1,26,27]]],[34,1,1,27,28,[[904,1,1,27,28]]]],[10064,13159,13423,14504,14523,15034,16392,16423,16425,16430,16466,16529,16563,16673,16720,16765,16812,16817,16838,16839,17174,17225,17239,18355,20561,21100,22161,22749]]],["arguments",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13423]]],["chastened",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15034]]],["correction",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16466]]],["punishments",[1,1,[[18,1,1,0,1,[[626,1,1,0,1]]]],[16392]]],["reasoning",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13159]]],["rebuke",[4,4,[[11,1,1,0,1,[[331,1,1,0,1]]],[19,1,1,1,2,[[654,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]],[27,1,1,3,4,[[866,1,1,3,4]]]],[10064,17174,18355,22161]]],["rebukes",[3,3,[[18,1,1,0,1,[[516,1,1,0,1]]],[25,2,2,1,3,[[806,1,1,1,2],[826,1,1,2,3]]]],[14523,20561,21100]]],["reproof",[12,12,[[19,12,12,0,12,[[628,3,3,0,3],[632,1,1,3,4],[637,1,1,4,5],[639,1,1,5,6],[640,1,1,6,7],[642,4,4,7,11],[656,1,1,11,12]]]],[16423,16425,16430,16529,16673,16720,16765,16812,16817,16838,16839,17239]]],["reproofs",[2,2,[[18,1,1,0,1,[[515,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]]],[14504,16563]]],["reproved",[2,2,[[19,1,1,0,1,[[656,1,1,0,1]]],[34,1,1,1,2,[[904,1,1,1,2]]]],[17225,22749]]]]},{"k":"H8434","v":[["Tolad",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10414]]]]},{"k":"H8435","v":[["*",[39,39,[[0,13,13,0,13,[[1,1,1,0,1],[4,1,1,1,2],[5,1,1,2,3],[9,2,2,3,5],[10,2,2,5,7],[24,3,3,7,10],[35,2,2,10,12],[36,1,1,12,13]]],[1,3,3,13,16,[[55,2,2,13,15],[77,1,1,15,16]]],[3,13,13,16,29,[[117,12,12,16,28],[119,1,1,28,29]]],[7,1,1,29,30,[[235,1,1,29,30]]],[12,9,9,30,39,[[338,1,1,30,31],[342,1,1,31,32],[344,3,3,32,35],[345,1,1,35,36],[346,2,2,36,38],[363,1,1,38,39]]]],[34,106,146,235,266,276,293,670,671,677,1041,1049,1085,1671,1674,2303,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3693,7208,10281,10435,10537,10539,10544,10603,10624,10649,11108]]],["birth",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2303]]],["generations",[38,38,[[0,13,13,0,13,[[1,1,1,0,1],[4,1,1,1,2],[5,1,1,2,3],[9,2,2,3,5],[10,2,2,5,7],[24,3,3,7,10],[35,2,2,10,12],[36,1,1,12,13]]],[1,2,2,13,15,[[55,2,2,13,15]]],[3,13,13,15,28,[[117,12,12,15,27],[119,1,1,27,28]]],[7,1,1,28,29,[[235,1,1,28,29]]],[12,9,9,29,38,[[338,1,1,29,30],[342,1,1,30,31],[344,3,3,31,34],[345,1,1,34,35],[346,2,2,35,37],[363,1,1,37,38]]]],[34,106,146,235,266,276,293,670,671,677,1041,1049,1085,1671,1674,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3693,7208,10281,10435,10537,10539,10544,10603,10624,10649,11108]]]]},{"k":"H8436","v":[["Tilon",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10405]]]]},{"k":"H8437","v":[["wasted",[1,1,[[18,1,1,0,1,[[614,1,1,0,1]]]],[16225]]]]},{"k":"H8438","v":[["*",[43,43,[[1,27,27,0,27,[[65,1,1,0,1],[74,1,1,1,2],[75,3,3,2,5],[76,1,1,5,6],[77,5,5,6,11],[84,4,4,11,15],[85,3,3,15,18],[87,2,2,18,20],[88,7,7,20,27]]],[2,5,5,27,32,[[103,5,5,27,32]]],[3,2,2,32,34,[[120,1,1,32,33],[135,1,1,33,34]]],[4,1,1,34,35,[[180,1,1,34,35]]],[17,1,1,35,36,[[460,1,1,35,36]]],[18,1,1,36,37,[[499,1,1,36,37]]],[22,4,4,37,41,[[679,1,1,37,38],[692,1,1,38,39],[719,1,1,39,40],[744,1,1,40,41]]],[24,1,1,41,42,[[800,1,1,41,42]]],[31,1,1,42,43,[[892,1,1,42,43]]]],[1967,2199,2236,2266,2271,2288,2298,2299,2301,2308,2326,2537,2554,2556,2566,2574,2601,2603,2651,2656,2665,2666,2667,2669,2672,2688,2693,3115,3117,3160,3162,3163,3751,4295,5650,13467,14210,17672,17939,18465,18946,20425,22575]]],["+",[33,33,[[1,26,26,0,26,[[74,1,1,0,1],[75,3,3,1,4],[76,1,1,4,5],[77,5,5,5,10],[84,4,4,10,14],[85,3,3,14,17],[87,2,2,17,19],[88,7,7,19,26]]],[2,5,5,26,31,[[103,5,5,26,31]]],[3,2,2,31,33,[[120,1,1,31,32],[135,1,1,32,33]]]],[2199,2236,2266,2271,2288,2298,2299,2301,2308,2326,2537,2554,2556,2566,2574,2601,2603,2651,2656,2665,2666,2667,2669,2672,2688,2693,3115,3117,3160,3162,3163,3751,4295]]],["crimson",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17672]]],["scarlet",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20425]]],["worm",[5,5,[[17,1,1,0,1,[[460,1,1,0,1]]],[18,1,1,1,2,[[499,1,1,1,2]]],[22,2,2,2,4,[[719,1,1,2,3],[744,1,1,3,4]]],[31,1,1,4,5,[[892,1,1,4,5]]]],[13467,14210,18465,18946,22575]]],["worms",[3,3,[[1,1,1,0,1,[[65,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]]],[1967,5650,17939]]]]},{"k":"H8439","v":[["Tola",[6,5,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[6,1,1,2,3,[[220,1,1,2,3]]],[12,3,2,3,5,[[344,3,2,3,5]]]],[1399,4512,6812,10536,10537]]]]},{"k":"H8440","v":[["Tolaites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4512]]]]},{"k":"H8441","v":[["*",[117,112,[[0,2,2,0,2,[[42,1,1,0,1],[45,1,1,1,2]]],[1,2,1,2,3,[[57,2,1,2,3]]],[2,6,6,3,9,[[107,5,5,3,8],[109,1,1,8,9]]],[4,17,16,9,25,[[159,2,2,9,11],[164,1,1,11,12],[165,1,1,12,13],[166,1,1,13,14],[169,2,2,14,16],[170,3,2,16,18],[172,1,1,18,19],[174,1,1,19,20],[175,1,1,20,21],[176,1,1,21,22],[177,1,1,22,23],[179,1,1,23,24],[184,1,1,24,25]]],[10,1,1,25,26,[[304,1,1,25,26]]],[11,4,4,26,30,[[328,1,1,26,27],[333,2,2,27,29],[335,1,1,29,30]]],[13,5,5,30,35,[[394,1,1,30,31],[399,1,1,31,32],[400,1,1,32,33],[402,2,2,33,35]]],[14,3,3,35,38,[[411,3,3,35,38]]],[18,1,1,38,39,[[565,1,1,38,39]]],[19,21,20,39,59,[[630,1,1,39,40],[633,1,1,40,41],[635,1,1,41,42],[638,2,2,42,44],[639,1,1,44,45],[640,1,1,45,46],[642,3,3,46,49],[643,2,2,49,51],[644,1,1,51,52],[647,2,2,52,54],[648,1,1,54,55],[651,1,1,55,56],[653,1,1,56,57],[655,1,1,57,58],[656,2,1,58,59]]],[22,3,3,59,62,[[679,1,1,59,60],[719,1,1,60,61],[722,1,1,61,62]]],[23,8,8,62,70,[[746,1,1,62,63],[750,1,1,63,64],[751,1,1,64,65],[752,1,1,65,66],[760,1,1,66,67],[776,1,1,67,68],[788,2,2,68,70]]],[25,43,41,70,111,[[806,2,2,70,72],[807,2,2,72,74],[808,5,5,74,79],[809,6,5,79,84],[810,1,1,84,85],[812,2,2,85,87],[813,1,1,87,88],[815,1,1,88,89],[817,9,8,89,97],[819,3,3,97,100],[821,1,1,100,101],[823,2,2,101,103],[824,1,1,103,104],[834,2,2,104,106],[837,1,1,106,107],[844,1,1,107,108],[845,3,3,108,111]]],[38,1,1,111,112,[[926,1,1,111,112]]]],[1322,1420,1736,3273,3277,3278,3280,3281,3331,5136,5137,5271,5286,5293,5365,5368,5393,5396,5445,5475,5518,5529,5563,5600,5774,9242,9966,10121,10130,10178,11767,11910,11966,12001,12007,12238,12248,12251,15316,16487,16556,16609,16689,16708,16741,16766,16815,16816,16833,16845,16852,16888,16964,16977,17011,17088,17166,17205,17251,17667,18475,18552,18972,19104,19129,19165,19354,19766,20014,20032,20555,20557,20572,20574,20580,20581,20585,20586,20597,20610,20613,20617,20619,20621,20626,20673,20676,20696,20737,20764,20784,20798,20805,20809,20812,20813,20820,20861,20862,20873,20899,20978,20987,21043,21306,21309,21390,21580,21605,21606,21612,23114]]],["+",[1,1,[[2,1,1,0,1,[[107,1,1,0,1]]]],[3281]]],["abominable",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20014]]],["abomination",[52,50,[[0,2,2,0,2,[[42,1,1,0,1],[45,1,1,1,2]]],[1,2,1,2,3,[[57,2,1,2,3]]],[2,2,2,3,5,[[107,1,1,3,4],[109,1,1,4,5]]],[4,12,12,5,17,[[159,2,2,5,7],[164,1,1,7,8],[165,1,1,8,9],[169,2,2,9,11],[170,1,1,11,12],[174,1,1,12,13],[175,1,1,13,14],[176,1,1,14,15],[177,1,1,15,16],[179,1,1,16,17]]],[11,1,1,17,18,[[335,1,1,17,18]]],[18,1,1,18,19,[[565,1,1,18,19]]],[19,20,19,19,38,[[630,1,1,19,20],[633,1,1,20,21],[635,1,1,21,22],[638,2,2,22,24],[639,1,1,24,25],[640,1,1,25,26],[642,3,3,26,29],[643,2,2,29,31],[644,1,1,31,32],[647,2,2,32,34],[648,1,1,34,35],[651,1,1,35,36],[655,1,1,36,37],[656,2,1,37,38]]],[22,3,3,38,41,[[679,1,1,38,39],[719,1,1,39,40],[722,1,1,40,41]]],[23,4,4,41,45,[[746,1,1,41,42],[750,1,1,42,43],[752,1,1,43,44],[776,1,1,44,45]]],[25,4,4,45,49,[[817,1,1,45,46],[819,1,1,46,47],[823,1,1,47,48],[834,1,1,48,49]]],[38,1,1,49,50,[[926,1,1,49,50]]]],[1322,1420,1736,3273,3331,5136,5137,5271,5286,5365,5368,5396,5475,5518,5529,5563,5600,10178,15316,16487,16556,16609,16689,16708,16741,16766,16815,16816,16833,16845,16852,16888,16964,16977,17011,17088,17205,17251,17667,18475,18552,18972,19104,19165,19766,20812,20861,20987,21306,23114]]],["abominations",[61,59,[[2,3,3,0,3,[[107,3,3,0,3]]],[4,4,4,3,7,[[170,2,2,3,5],[172,1,1,5,6],[184,1,1,6,7]]],[10,1,1,7,8,[[304,1,1,7,8]]],[11,3,3,8,11,[[328,1,1,8,9],[333,2,2,9,11]]],[13,5,5,11,16,[[394,1,1,11,12],[399,1,1,12,13],[400,1,1,13,14],[402,2,2,14,16]]],[14,3,3,16,19,[[411,3,3,16,19]]],[19,1,1,19,20,[[653,1,1,19,20]]],[23,2,2,20,22,[[751,1,1,20,21],[788,1,1,21,22]]],[25,39,37,22,59,[[806,2,2,22,24],[807,2,2,24,26],[808,5,5,26,31],[809,6,5,31,36],[810,1,1,36,37],[812,2,2,37,39],[813,1,1,39,40],[815,1,1,40,41],[817,8,7,41,48],[819,2,2,48,50],[821,1,1,50,51],[823,1,1,51,52],[824,1,1,52,53],[834,1,1,53,54],[837,1,1,54,55],[844,1,1,55,56],[845,3,3,56,59]]]],[3277,3278,3280,5393,5396,5445,5774,9242,9966,10121,10130,11767,11910,11966,12001,12007,12238,12248,12251,17166,19129,20032,20555,20557,20572,20574,20580,20581,20585,20586,20597,20610,20613,20617,20619,20621,20626,20673,20676,20696,20737,20764,20784,20798,20805,20809,20813,20820,20862,20873,20899,20978,21043,21309,21390,21580,21605,21606,21612]]],["thing",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5293]]],["things",[1,1,[[23,1,1,0,1,[[760,1,1,0,1]]]],[19354]]]]},{"k":"H8442","v":[["*",[2,2,[[15,1,1,0,1,[[416,1,1,0,1]]],[22,1,1,1,2,[[710,1,1,1,2]]]],[12367,18265]]],["+",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12367]]],["error",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18265]]]]},{"k":"H8443","v":[["*",[4,4,[[3,2,2,0,2,[[139,1,1,0,1],[140,1,1,1,2]]],[17,1,1,2,3,[[457,1,1,2,3]]],[18,1,1,3,4,[[572,1,1,3,4]]]],[4438,4454,13414,15458]]],["plenty",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13414]]],["strength",[3,3,[[3,2,2,0,2,[[139,1,1,0,1],[140,1,1,1,2]]],[18,1,1,2,3,[[572,1,1,2,3]]]],[4438,4454,15458]]]]},{"k":"H8444","v":[["*",[23,23,[[3,5,5,0,5,[[150,5,5,0,5]]],[5,14,14,5,19,[[201,3,3,5,8],[202,2,2,8,10],[203,2,2,10,12],[204,3,3,12,15],[205,4,4,15,19]]],[12,1,1,19,20,[[342,1,1,19,20]]],[18,1,1,20,21,[[545,1,1,20,21]]],[19,1,1,21,22,[[631,1,1,21,22]]],[25,1,1,22,23,[[849,1,1,22,23]]]],[4820,4821,4824,4825,4828,6206,6209,6213,6268,6273,6284,6293,6305,6307,6312,6335,6343,6350,6354,10444,14920,16513,21732]]],["borders",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10444]]],["forth",[2,2,[[3,2,2,0,2,[[150,2,2,0,2]]]],[4820,4824]]],["issues",[2,2,[[18,1,1,0,1,[[545,1,1,0,1]]],[19,1,1,1,2,[[631,1,1,1,2]]]],[14920,16513]]],["out",[11,11,[[3,3,3,0,3,[[150,3,3,0,3]]],[5,7,7,3,10,[[201,3,3,3,6],[202,2,2,6,8],[204,2,2,8,10]]],[25,1,1,10,11,[[849,1,1,10,11]]]],[4821,4825,4828,6206,6209,6213,6268,6273,6305,6307,21732]]],["outgoings",[7,7,[[5,7,7,0,7,[[203,2,2,0,2],[204,1,1,2,3],[205,4,4,3,7]]]],[6284,6293,6312,6335,6343,6350,6354]]]]},{"k":"H8445","v":[]},{"k":"H8446","v":[["*",[23,22,[[3,14,13,0,13,[[126,1,1,0,1],[129,7,6,1,7],[130,5,5,7,12],[131,1,1,12,13]]],[4,1,1,13,14,[[153,1,1,13,14]]],[6,1,1,14,15,[[211,1,1,14,15]]],[10,1,1,15,16,[[300,1,1,15,16]]],[13,1,1,16,17,[[375,1,1,16,17]]],[19,1,1,17,18,[[639,1,1,17,18]]],[20,3,3,18,21,[[659,1,1,18,19],[660,1,1,19,20],[665,1,1,20,21]]],[25,1,1,21,22,[[821,1,1,21,22]]]],[4021,4077,4091,4092,4096,4100,4107,4114,4115,4142,4144,4146,4192,4925,6532,9094,11378,16745,17328,17336,17454,20901]]],["+",[11,11,[[3,9,9,0,9,[[129,5,5,0,5],[130,4,4,5,9]]],[10,1,1,9,10,[[300,1,1,9,10]]],[13,1,1,10,11,[[375,1,1,10,11]]]],[4077,4091,4092,4096,4100,4114,4142,4144,4146,9094,11378]]],["descry",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6532]]],["espied",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20901]]],["excellent",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16745]]],["out",[3,3,[[3,1,1,0,1,[[126,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[20,1,1,2,3,[[659,1,1,2,3]]]],[4021,4925,17328]]],["search",[3,3,[[3,2,2,0,2,[[129,1,1,0,1],[130,1,1,1,2]]],[20,1,1,2,3,[[665,1,1,2,3]]]],[4107,4115,17454]]],["searched",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4107]]],["seek",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4192]]],["sought",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17336]]]]},{"k":"H8447","v":[["*",[4,4,[[16,2,2,0,2,[[427,2,2,0,2]]],[21,2,2,2,4,[[671,2,2,2,4]]]],[12736,12739,17547,17548]]],["borders",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17548]]],["rows",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17547]]],["turn",[2,2,[[16,2,2,0,2,[[427,2,2,0,2]]]],[12736,12739]]]]},{"k":"H8448","v":[["estate",[1,1,[[12,1,1,0,1,[[354,1,1,0,1]]]],[10880]]]]},{"k":"H8449","v":[["*",[14,14,[[0,1,1,0,1,[[14,1,1,0,1]]],[2,9,9,1,10,[[90,1,1,1,2],[94,2,2,2,4],[101,2,2,4,6],[103,2,2,6,8],[104,2,2,8,10]]],[3,1,1,10,11,[[122,1,1,10,11]]],[18,1,1,11,12,[[551,1,1,11,12]]],[21,1,1,12,13,[[672,1,1,12,13]]],[23,1,1,13,14,[[752,1,1,13,14]]]],[369,2759,2837,2841,3050,3052,3133,3141,3182,3197,3833,15067,17566,19160]]],["turtle",[2,2,[[21,1,1,0,1,[[672,1,1,0,1]]],[23,1,1,1,2,[[752,1,1,1,2]]]],[17566,19160]]],["turtledove",[3,3,[[0,1,1,0,1,[[14,1,1,0,1]]],[2,1,1,1,2,[[101,1,1,1,2]]],[18,1,1,2,3,[[551,1,1,2,3]]]],[369,3050,15067]]],["turtledoves",[6,6,[[2,6,6,0,6,[[90,1,1,0,1],[94,2,2,1,3],[103,2,2,3,5],[104,1,1,5,6]]]],[2759,2837,2841,3133,3141,3182]]],["turtles",[3,3,[[2,2,2,0,2,[[101,1,1,0,1],[104,1,1,1,2]]],[3,1,1,2,3,[[122,1,1,2,3]]]],[3052,3197,3833]]]]},{"k":"H8450","v":[["*",[7,7,[[14,3,3,0,3,[[408,2,2,0,2],[409,1,1,2,3]]],[26,4,4,3,7,[[853,3,3,3,6],[854,1,1,6,7]]]],[12160,12168,12190,21862,21869,21870,21895]]],["bullocks",[3,3,[[14,3,3,0,3,[[408,2,2,0,2],[409,1,1,2,3]]]],[12160,12168,12190]]],["oxen",[4,4,[[26,4,4,0,4,[[853,3,3,0,3],[854,1,1,3,4]]]],[21862,21869,21870,21895]]]]},{"k":"H8451","v":[["*",[219,213,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,7,7,1,8,[[61,1,1,1,2],[62,1,1,2,3],[65,2,2,3,5],[67,2,2,5,7],[73,1,1,7,8]]],[2,16,16,8,24,[[95,3,3,8,11],[96,4,4,11,15],[100,1,1,15,16],[101,1,1,16,17],[102,1,1,17,18],[103,4,4,18,22],[104,1,1,22,23],[115,1,1,23,24]]],[3,10,9,24,33,[[121,2,2,24,26],[122,3,2,26,28],[131,2,2,28,30],[135,2,2,30,32],[147,1,1,32,33]]],[4,22,22,33,55,[[153,1,1,33,34],[156,2,2,34,36],[169,3,3,36,39],[179,3,3,39,42],[180,2,2,42,44],[181,2,2,44,46],[182,1,1,46,47],[183,5,5,47,52],[184,1,1,52,53],[185,2,2,53,55]]],[5,9,8,55,63,[[187,2,2,55,57],[194,4,3,57,60],[208,1,1,60,61],[209,1,1,61,62],[210,1,1,62,63]]],[10,1,1,63,64,[[292,1,1,63,64]]],[11,10,10,64,74,[[322,1,1,64,65],[326,1,1,65,66],[329,3,3,66,69],[333,1,1,69,70],[334,2,2,70,72],[335,2,2,72,74]]],[12,2,2,74,76,[[353,1,1,74,75],[359,1,1,75,76]]],[13,17,17,76,93,[[372,1,1,76,77],[378,1,1,77,78],[380,1,1,78,79],[381,1,1,79,80],[383,1,1,80,81],[385,1,1,81,82],[389,1,1,82,83],[391,1,1,83,84],[396,1,1,84,85],[397,3,3,85,88],[399,1,1,88,89],[400,3,3,89,92],[401,1,1,92,93]]],[14,4,4,93,97,[[405,1,1,93,94],[409,2,2,94,96],[412,1,1,96,97]]],[15,21,21,97,118,[[420,9,9,97,106],[421,6,6,106,112],[422,4,4,112,116],[424,1,1,116,117],[425,1,1,117,118]]],[17,1,1,118,119,[[457,1,1,118,119]]],[18,36,35,119,154,[[478,2,1,119,120],[496,1,1,120,121],[514,1,1,121,122],[517,1,1,122,123],[555,3,3,123,126],[566,1,1,126,127],[571,1,1,127,128],[582,1,1,128,129],[596,25,25,129,154]]],[19,13,12,154,166,[[628,1,1,154,155],[630,1,1,155,156],[631,1,1,156,157],[633,2,2,157,159],[634,1,1,159,160],[640,1,1,160,161],[655,4,3,161,164],[656,1,1,164,165],[658,1,1,165,166]]],[22,12,12,166,178,[[679,1,1,166,167],[680,1,1,167,168],[683,1,1,168,169],[686,2,2,169,171],[702,1,1,171,172],[708,1,1,172,173],[720,3,3,173,176],[729,2,2,176,178]]],[23,11,11,178,189,[[746,1,1,178,179],[750,1,1,179,180],[752,1,1,180,181],[753,1,1,181,182],[760,1,1,182,183],[762,1,1,183,184],[770,1,1,184,185],[775,1,1,185,186],[776,1,1,186,187],[788,2,2,187,189]]],[24,1,1,189,190,[[798,1,1,189,190]]],[25,7,6,190,196,[[808,1,1,190,191],[823,1,1,191,192],[844,3,2,192,194],[845,2,2,194,196]]],[26,4,3,196,199,[[858,4,3,196,199]]],[27,3,3,199,202,[[865,1,1,199,200],[869,2,2,200,202]]],[29,1,1,202,203,[[880,1,1,202,203]]],[32,1,1,203,204,[[896,1,1,203,204]]],[34,1,1,204,205,[[903,1,1,204,205]]],[35,1,1,205,206,[[908,1,1,205,206]]],[36,1,1,206,207,[[910,1,1,206,207]]],[37,1,1,207,208,[[917,1,1,207,208]]],[38,5,5,208,213,[[926,4,4,208,212],[928,1,1,212,213]]]],[697,1865,1876,1951,1975,2015,2019,2189,2858,2863,2874,2880,2886,2890,2916,3043,3051,3111,3113,3143,3165,3168,3200,3570,3821,3822,3836,3844,4169,4182,4291,4303,4685,4897,5012,5048,5375,5382,5383,5588,5593,5611,5669,5672,5700,5708,5718,5737,5739,5740,5752,5754,5804,5814,5820,5858,5859,6033,6034,6036,6431,6466,6502,8773,9824,9902,9996,10017,10020,10127,10153,10156,10189,10190,10860,10976,11298,11438,11479,11493,11532,11586,11674,11708,11843,11857,11858,11875,11916,11947,11948,11952,11992,12099,12179,12183,12255,12494,12495,12496,12500,12501,12502,12506,12507,12511,12514,12524,12525,12537,12540,12545,12577,12578,12583,12585,12668,12674,13411,13941,14175,14481,14533,15114,15118,15123,15356,15443,15651,15899,15916,15927,15932,15942,15949,15951,15953,15959,15968,15970,15975,15983,15990,15995,16007,16011,16024,16034,16040,16048,16051,16061,16063,16072,16408,16456,16492,16560,16563,16577,16761,17200,17203,17205,17242,17310,17664,17688,17763,17823,17827,18100,18226,18484,18501,18504,18677,18680,18973,19108,19161,19188,19347,19402,19576,19724,19754,20020,20033,20341,20603,21002,21583,21584,21604,21623,21998,21999,22001,22139,22195,22206,22383,22622,22735,22824,22866,22974,23109,23110,23111,23112,23142]]],["+",[4,4,[[18,4,4,0,4,[[571,1,1,0,1],[596,3,3,1,4]]]],[15443,15916,15949,16048]]],["law",[202,196,[[1,4,4,0,4,[[61,1,1,0,1],[62,1,1,1,2],[65,1,1,2,3],[73,1,1,3,4]]],[2,15,15,4,19,[[95,3,3,4,7],[96,4,4,7,11],[100,1,1,11,12],[101,1,1,12,13],[102,1,1,13,14],[103,4,4,14,18],[104,1,1,18,19]]],[3,10,9,19,28,[[121,2,2,19,21],[122,3,2,21,23],[131,2,2,23,25],[135,2,2,25,27],[147,1,1,27,28]]],[4,22,22,28,50,[[153,1,1,28,29],[156,2,2,29,31],[169,3,3,31,34],[179,3,3,34,37],[180,2,2,37,39],[181,2,2,39,41],[182,1,1,41,42],[183,5,5,42,47],[184,1,1,47,48],[185,2,2,48,50]]],[5,9,8,50,58,[[187,2,2,50,52],[194,4,3,52,55],[208,1,1,55,56],[209,1,1,56,57],[210,1,1,57,58]]],[10,1,1,58,59,[[292,1,1,58,59]]],[11,10,10,59,69,[[322,1,1,59,60],[326,1,1,60,61],[329,3,3,61,64],[333,1,1,64,65],[334,2,2,65,67],[335,2,2,67,69]]],[12,2,2,69,71,[[353,1,1,69,70],[359,1,1,70,71]]],[13,17,17,71,88,[[372,1,1,71,72],[378,1,1,72,73],[380,1,1,73,74],[381,1,1,74,75],[383,1,1,75,76],[385,1,1,76,77],[389,1,1,77,78],[391,1,1,78,79],[396,1,1,79,80],[397,3,3,80,83],[399,1,1,83,84],[400,3,3,84,87],[401,1,1,87,88]]],[14,4,4,88,92,[[405,1,1,88,89],[409,2,2,89,91],[412,1,1,91,92]]],[15,19,19,92,111,[[420,9,9,92,101],[421,4,4,101,105],[422,4,4,105,109],[424,1,1,109,110],[425,1,1,110,111]]],[17,1,1,111,112,[[457,1,1,111,112]]],[18,31,30,112,142,[[478,2,1,112,113],[496,1,1,113,114],[514,1,1,114,115],[517,1,1,115,116],[555,3,3,116,119],[566,1,1,119,120],[596,22,22,120,142]]],[19,13,12,142,154,[[628,1,1,142,143],[630,1,1,143,144],[631,1,1,144,145],[633,2,2,145,147],[634,1,1,147,148],[640,1,1,148,149],[655,4,3,149,152],[656,1,1,152,153],[658,1,1,153,154]]],[22,11,11,154,165,[[679,1,1,154,155],[680,1,1,155,156],[683,1,1,156,157],[686,2,2,157,159],[708,1,1,159,160],[720,3,3,160,163],[729,2,2,163,165]]],[23,11,11,165,176,[[746,1,1,165,166],[750,1,1,166,167],[752,1,1,167,168],[753,1,1,168,169],[760,1,1,169,170],[762,1,1,170,171],[770,1,1,171,172],[775,1,1,172,173],[776,1,1,173,174],[788,2,2,174,176]]],[24,1,1,176,177,[[798,1,1,176,177]]],[25,4,3,177,180,[[808,1,1,177,178],[823,1,1,178,179],[844,2,1,179,180]]],[26,3,2,180,182,[[858,3,2,180,182]]],[27,3,3,182,185,[[865,1,1,182,183],[869,2,2,183,185]]],[29,1,1,185,186,[[880,1,1,185,186]]],[32,1,1,186,187,[[896,1,1,186,187]]],[34,1,1,187,188,[[903,1,1,187,188]]],[35,1,1,188,189,[[908,1,1,188,189]]],[36,1,1,189,190,[[910,1,1,189,190]]],[37,1,1,190,191,[[917,1,1,190,191]]],[38,5,5,191,196,[[926,4,4,191,195],[928,1,1,195,196]]]],[1865,1876,1951,2189,2858,2863,2874,2880,2886,2890,2916,3043,3051,3111,3113,3143,3165,3168,3200,3821,3822,3836,3844,4169,4182,4291,4303,4685,4897,5012,5048,5375,5382,5383,5588,5593,5611,5669,5672,5700,5708,5718,5737,5739,5740,5752,5754,5804,5814,5820,5858,5859,6033,6034,6036,6431,6466,6502,8773,9824,9902,9996,10017,10020,10127,10153,10156,10189,10190,10860,10976,11298,11438,11479,11493,11532,11586,11674,11708,11843,11857,11858,11875,11916,11947,11948,11952,11992,12099,12179,12183,12255,12494,12495,12496,12500,12501,12502,12506,12507,12511,12514,12537,12540,12545,12577,12578,12583,12585,12668,12674,13411,13941,14175,14481,14533,15114,15118,15123,15356,15899,15927,15932,15942,15951,15953,15959,15968,15970,15975,15983,15990,15995,16007,16011,16024,16034,16040,16051,16061,16063,16072,16408,16456,16492,16560,16563,16577,16761,17200,17203,17205,17242,17310,17664,17688,17763,17823,17827,18226,18484,18501,18504,18677,18680,18973,19108,19161,19188,19347,19402,19576,19724,19754,20020,20033,20341,20603,21002,21584,21999,22001,22139,22195,22206,22383,22622,22735,22824,22866,22974,23109,23110,23111,23112,23142]]],["laws",[13,13,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,3,3,1,4,[[65,1,1,1,2],[67,2,2,2,4]]],[2,1,1,4,5,[[115,1,1,4,5]]],[15,2,2,5,7,[[421,2,2,5,7]]],[18,1,1,7,8,[[582,1,1,7,8]]],[22,1,1,8,9,[[702,1,1,8,9]]],[25,3,3,9,12,[[844,1,1,9,10],[845,2,2,10,12]]],[26,1,1,12,13,[[858,1,1,12,13]]]],[697,1975,2015,2019,3570,12524,12525,15651,18100,21583,21604,21623,21998]]]]},{"k":"H8452","v":[["manner",[1,1,[[9,1,1,0,1,[[273,1,1,0,1]]]],[8199]]]]},{"k":"H8453","v":[["*",[14,13,[[0,1,1,0,1,[[22,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[2,8,7,2,9,[[111,1,1,2,3],[114,7,6,3,9]]],[3,1,1,9,10,[[151,1,1,9,10]]],[10,1,1,10,11,[[307,1,1,10,11]]],[12,1,1,11,12,[[366,1,1,11,12]]],[18,1,1,12,13,[[516,1,1,12,13]]]],[575,1861,3379,3475,3492,3504,3509,3514,3516,4860,9318,11179,14524]]],["+",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9318]]],["foreigner",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1861]]],["sojourner",[7,7,[[0,1,1,0,1,[[22,1,1,0,1]]],[2,4,4,1,5,[[111,1,1,1,2],[114,3,3,2,5]]],[3,1,1,5,6,[[151,1,1,5,6]]],[18,1,1,6,7,[[516,1,1,6,7]]]],[575,3379,3504,3509,3516,4860,14524]]],["sojourners",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[12,1,1,1,2,[[366,1,1,1,2]]]],[3492,11179]]],["stranger",[2,2,[[2,2,2,0,2,[[114,2,2,0,2]]]],[3475,3516]]],["strangers",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3514]]]]},{"k":"H8454","v":[["*",[11,11,[[17,5,5,0,5,[[440,1,1,0,1],[441,1,1,1,2],[446,1,1,2,3],[447,1,1,3,4],[461,1,1,4,5]]],[19,4,4,5,9,[[629,1,1,5,6],[630,1,1,6,7],[635,1,1,7,8],[645,1,1,8,9]]],[22,1,1,9,10,[[706,1,1,9,10]]],[32,1,1,10,11,[[898,1,1,10,11]]]],[12963,12991,13114,13144,13470,16440,16476,16616,16902,18193,22657]]],["enterprise",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12963]]],["is",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13114]]],["thing",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13470]]],["wisdom",[7,7,[[17,2,2,0,2,[[441,1,1,0,1],[447,1,1,1,2]]],[19,4,4,2,6,[[629,1,1,2,3],[630,1,1,3,4],[635,1,1,4,5],[645,1,1,5,6]]],[32,1,1,6,7,[[898,1,1,6,7]]]],[12991,13144,16440,16476,16616,16902,22657]]],["working",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18193]]]]},{"k":"H8455","v":[["Darts",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13917]]]]},{"k":"H8456","v":[["down",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18002]]]]},{"k":"H8457","v":[["*",[20,19,[[25,20,19,0,19,[[817,9,9,0,9],[824,11,10,9,19]]]],[20777,20782,20784,20787,20788,20791,20795,20796,20798,21014,21015,21018,21021,21024,21025,21026,21036,21042,21050]]],["fornication",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20791]]],["fornications",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20777]]],["whoredom",[3,3,[[25,3,3,0,3,[[817,1,1,0,1],[824,2,2,1,3]]]],[20795,21015,21024]]],["whoredoms",[15,15,[[25,15,15,0,15,[[817,6,6,0,6],[824,9,9,6,15]]]],[20782,20784,20787,20788,20796,20798,21014,21015,21018,21021,21025,21026,21036,21042,21050]]]]},{"k":"H8458","v":[["*",[6,6,[[17,1,1,0,1,[[472,1,1,0,1]]],[19,5,5,1,6,[[628,1,1,1,2],[638,1,1,2,3],[639,1,1,3,4],[647,1,1,4,5],[651,1,1,5,6]]]],[13781,16405,16702,16724,16972,17085]]],["advice",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16972]]],["counsel",[2,2,[[19,2,2,0,2,[[638,1,1,0,1],[651,1,1,1,2]]]],[16702,17085]]],["counsels",[3,3,[[17,1,1,0,1,[[472,1,1,0,1]]],[19,2,2,1,3,[[628,1,1,1,2],[639,1,1,2,3]]]],[13781,16405,16724]]]]},{"k":"H8459","v":[["Tohu",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7213]]]]},{"k":"H8460","v":[["under",[4,4,[[23,1,1,0,1,[[754,1,1,0,1]]],[26,3,3,1,4,[[853,2,2,1,3],[856,1,1,3,4]]]],[19212,21849,21858,21960]]]]},{"k":"H8461","v":[["Tachmonite",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8661]]]]},{"k":"H8462","v":[["*",[22,21,[[0,4,4,0,4,[[12,1,1,0,1],[40,1,1,1,2],[42,2,2,2,4]]],[6,3,2,4,6,[[211,1,1,4,5],[230,2,1,5,6]]],[7,1,1,6,7,[[232,1,1,6,7]]],[9,3,3,7,10,[[283,1,1,7,8],[287,2,2,8,10]]],[11,1,1,10,11,[[329,1,1,10,11]]],[14,1,1,11,12,[[406,1,1,11,12]]],[15,1,1,12,13,[[423,1,1,12,13]]],[19,1,1,13,14,[[636,1,1,13,14]]],[20,1,1,14,15,[[668,1,1,14,15]]],[22,1,1,15,16,[[679,1,1,15,16]]],[26,3,3,16,19,[[857,1,1,16,17],[858,2,2,17,19]]],[27,1,1,19,20,[[862,1,1,19,20]]],[29,1,1,20,21,[[885,1,1,20,21]]]],[321,1216,1308,1310,6510,7072,7149,8458,8589,8590,10008,12116,12605,16648,17506,17680,21962,22009,22011,22096,22465]]],["+",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8590]]],["begin",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12605]]],["beginning",[13,13,[[0,2,2,0,2,[[12,1,1,0,1],[40,1,1,1,2]]],[7,1,1,2,3,[[232,1,1,2,3]]],[9,1,1,3,4,[[287,1,1,3,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[14,1,1,5,6,[[406,1,1,5,6]]],[19,1,1,6,7,[[636,1,1,6,7]]],[20,1,1,7,8,[[668,1,1,7,8]]],[22,1,1,8,9,[[679,1,1,8,9]]],[26,2,2,9,11,[[858,2,2,9,11]]],[27,1,1,11,12,[[862,1,1,11,12]]],[29,1,1,12,13,[[885,1,1,12,13]]]],[321,1216,7149,8589,10008,12116,16648,17506,17680,22009,22011,22096,22465]]],["first",[5,4,[[6,3,2,0,2,[[211,1,1,0,1],[230,2,1,1,2]]],[9,1,1,2,3,[[283,1,1,2,3]]],[26,1,1,3,4,[[857,1,1,3,4]]]],[6510,7072,8458,21962]]],["time",[2,2,[[0,2,2,0,2,[[42,2,2,0,2]]]],[1308,1310]]]]},{"k":"H8463","v":[["*",[5,5,[[4,1,1,0,1,[[181,1,1,0,1]]],[13,1,1,1,2,[[387,1,1,1,2]]],[18,1,1,2,3,[[580,1,1,2,3]]],[23,2,2,3,5,[[758,1,1,3,4],[760,1,1,4,5]]]],[5701,11643,15552,19311,19340]]],["diseases",[2,2,[[13,1,1,0,1,[[387,1,1,0,1]]],[18,1,1,1,2,[[580,1,1,1,2]]]],[11643,15552]]],["grievous",[1,1,[[23,1,1,0,1,[[760,1,1,0,1]]]],[19340]]],["sick",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19311]]],["sicknesses",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5701]]]]},{"k":"H8464","v":[["hawk",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3013,5305]]]]},{"k":"H8465","v":[["Tahan",[2,2,[[3,1,1,0,1,[[142,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]]],[4524,10560]]]]},{"k":"H8466","v":[["camp",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9682]]]]},{"k":"H8467","v":[["*",[25,24,[[5,1,1,0,1,[[197,1,1,0,1]]],[10,9,8,1,9,[[298,8,7,1,8],[299,1,1,8,9]]],[13,5,5,9,14,[[372,4,4,9,13],[399,1,1,13,14]]],[14,1,1,14,15,[[411,1,1,14,15]]],[18,3,3,15,18,[[483,1,1,15,16],[532,1,1,16,17],[596,1,1,17,18]]],[23,5,5,18,23,[[780,1,1,18,19],[781,1,1,19,20],[782,1,1,20,21],[786,2,2,21,23]]],[26,1,1,23,24,[[858,1,1,23,24]]]],[6127,9013,9015,9023,9030,9034,9037,9039,9054,11301,11311,11317,11321,11921,12245,13994,14733,16068,19849,19894,19921,19977,19984,22008]]],["+",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14733]]],["favour",[1,1,[[5,1,1,0,1,[[197,1,1,0,1]]]],[6127]]],["grace",[1,1,[[14,1,1,0,1,[[411,1,1,0,1]]]],[12245]]],["supplication",[21,20,[[10,9,8,0,8,[[298,8,7,0,7],[299,1,1,7,8]]],[13,4,4,8,12,[[372,3,3,8,11],[399,1,1,11,12]]],[18,2,2,12,14,[[483,1,1,12,13],[596,1,1,13,14]]],[23,5,5,14,19,[[780,1,1,14,15],[781,1,1,15,16],[782,1,1,16,17],[786,2,2,17,19]]],[26,1,1,19,20,[[858,1,1,19,20]]]],[9013,9015,9023,9030,9034,9037,9039,9054,11301,11311,11317,11921,13994,16068,19849,19894,19921,19977,19984,22008]]],["supplications",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11321]]]]},{"k":"H8468","v":[["Tehinnah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10397]]]]},{"k":"H8469","v":[["*",[18,18,[[13,1,1,0,1,[[372,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[18,8,8,2,10,[[505,2,2,2,4],[508,1,1,4,5],[563,1,1,5,6],[593,1,1,6,7],[607,1,1,7,8],[617,1,1,8,9],[620,1,1,9,10]]],[19,1,1,10,11,[[645,1,1,10,11]]],[23,2,2,11,13,[[747,1,1,11,12],[775,1,1,12,13]]],[26,4,4,13,17,[[858,4,4,13,17]]],[37,1,1,17,18,[[922,1,1,17,18]]]],[11303,13891,14301,14305,14353,15290,15849,16142,16269,16294,16924,19023,19700,21991,22005,22006,22011,23055]]],["intreaties",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16924]]],["supplications",[17,17,[[13,1,1,0,1,[[372,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[18,8,8,2,10,[[505,2,2,2,4],[508,1,1,4,5],[563,1,1,5,6],[593,1,1,6,7],[607,1,1,7,8],[617,1,1,8,9],[620,1,1,9,10]]],[23,2,2,10,12,[[747,1,1,10,11],[775,1,1,11,12]]],[26,4,4,12,16,[[858,4,4,12,16]]],[37,1,1,16,17,[[922,1,1,16,17]]]],[11303,13891,14301,14305,14353,15290,15849,16142,16269,16294,19023,19700,21991,22005,22006,22011,23055]]]]},{"k":"H8470","v":[["Tahanites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4524]]]]},{"k":"H8471","v":[["*",[7,7,[[23,6,6,0,6,[[746,1,1,0,1],[787,3,3,1,4],[788,1,1,4,5],[790,1,1,5,6]]],[25,1,1,6,7,[[831,1,1,6,7]]]],[18981,20004,20005,20006,20011,20059,21222]]],["Tahapanes",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18981]]],["Tahpanhes",[5,5,[[23,5,5,0,5,[[787,3,3,0,3],[788,1,1,3,4],[790,1,1,4,5]]]],[20004,20005,20006,20011,20059]]],["Tehaphnehes",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21222]]]]},{"k":"H8472","v":[["Tahpenes",[3,2,[[10,3,2,0,2,[[301,3,2,0,2]]]],[9127,9128]]]]},{"k":"H8473","v":[["habergeon",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2325,2687]]]]},{"k":"H8474","v":[["*",[2,2,[[23,2,2,0,2,[[756,1,1,0,1],[766,1,1,1,2]]]],[19254,19469]]],["closest",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19469]]],["contend",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19254]]]]},{"k":"H8475","v":[["Tahrea",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10656]]]]},{"k":"H8476","v":[["*",[14,14,[[1,6,6,0,6,[[74,1,1,0,1],[75,1,1,1,2],[84,2,2,2,4],[85,1,1,4,5],[88,1,1,5,6]]],[3,7,7,6,13,[[120,7,7,6,13]]],[25,1,1,13,14,[[817,1,1,13,14]]]],[2200,2249,2538,2554,2585,2698,3749,3751,3753,3754,3755,3757,3768,20772]]],["badgers'",[12,12,[[1,6,6,0,6,[[74,1,1,0,1],[75,1,1,1,2],[84,2,2,2,4],[85,1,1,4,5],[88,1,1,5,6]]],[3,6,6,6,12,[[120,6,6,6,12]]]],[2200,2249,2538,2554,2585,2698,3749,3751,3753,3754,3755,3757]]],["skin",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20772]]],["skins",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3768]]]]},{"k":"H8477","v":[["Thahash",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[571]]]]},{"k":"H8478","v":[["*",[505,450,[[0,31,30,0,30,[[0,2,2,0,2],[1,1,1,2,3],[3,1,1,3,4],[5,1,1,4,5],[6,1,1,5,6],[15,1,1,6,7],[17,2,2,7,9],[20,1,1,9,10],[21,1,1,10,11],[23,2,2,11,13],[29,2,2,13,15],[34,3,2,15,17],[35,7,7,17,24],[40,1,1,24,25],[43,2,2,25,27],[46,1,1,27,28],[48,1,1,28,29],[49,1,1,29,30]]],[1,52,34,30,64,[[55,2,2,30,32],[59,1,1,32,33],[65,1,1,33,34],[66,2,2,34,36],[67,1,1,36,37],[69,2,1,37,38],[70,12,7,38,45],[71,2,1,45,46],[72,1,1,46,47],[73,2,2,47,49],[74,3,1,49,50],[75,8,4,50,54],[76,1,1,54,55],[78,1,1,55,56],[79,1,1,56,57],[81,1,1,57,58],[85,6,3,58,61],[86,4,2,61,63],[87,1,1,63,64]]],[2,12,10,64,74,[[95,1,1,64,65],[102,2,2,65,67],[103,1,1,67,68],[104,1,1,68,69],[105,1,1,69,70],[111,1,1,70,71],[113,4,2,71,73],[116,1,1,73,74]]],[3,15,13,74,87,[[119,5,3,74,77],[121,3,3,77,80],[122,1,1,80,81],[124,2,2,81,83],[132,1,1,83,84],[138,1,1,84,85],[141,1,1,85,86],[148,1,1,86,87]]],[4,27,26,87,113,[[154,5,5,87,92],[155,1,1,92,93],[156,6,6,93,99],[157,2,1,99,100],[159,1,1,100,101],[161,1,1,101,102],[162,1,1,102,103],[164,1,1,103,104],[173,1,1,104,105],[174,1,1,105,106],[177,1,1,106,107],[180,3,3,107,110],[181,1,1,110,111],[185,2,2,111,113]]],[5,14,14,113,127,[[188,2,2,113,115],[190,1,1,115,116],[191,2,2,116,118],[192,2,2,118,120],[193,2,2,120,122],[197,2,2,122,124],[198,1,1,124,125],[199,1,1,125,126],[210,1,1,126,127]]],[6,9,9,127,136,[[211,1,1,127,128],[213,2,2,128,130],[214,1,1,130,131],[216,2,2,131,133],[217,2,2,133,135],[225,1,1,135,136]]],[7,1,1,136,137,[[233,1,1,136,137]]],[8,12,12,137,149,[[237,1,1,137,138],[242,1,1,138,139],[249,2,2,139,141],[256,3,3,141,144],[257,1,1,144,145],[259,1,1,145,146],[260,1,1,146,147],[261,1,1,147,148],[266,1,1,148,149]]],[9,17,16,149,165,[[268,1,1,149,150],[269,1,1,150,151],[273,1,1,151,152],[276,1,1,152,153],[282,2,2,153,155],[283,1,1,155,156],[284,3,2,156,158],[285,2,2,158,160],[288,5,5,160,165]]],[10,42,39,165,204,[[291,2,2,165,167],[292,2,1,167,168],[293,1,1,168,169],[294,3,2,169,171],[295,3,3,171,174],[297,5,5,174,179],[298,3,3,179,182],[301,1,1,182,183],[303,1,1,183,184],[304,4,4,184,188],[305,3,3,188,191],[306,3,3,191,194],[309,3,3,194,197],[310,4,3,197,200],[311,2,2,200,202],[312,2,2,202,204]]],[11,40,40,204,244,[[313,1,1,204,205],[315,1,1,205,206],[320,4,4,206,210],[321,1,1,210,211],[322,2,2,211,213],[324,1,1,213,214],[325,3,3,214,217],[326,4,4,217,221],[327,7,7,221,228],[328,3,3,228,231],[329,3,3,231,234],[331,1,1,234,235],[332,1,1,235,236],[333,3,3,236,239],[334,1,1,239,240],[335,2,2,240,242],[336,2,2,242,244]]],[12,16,16,244,260,[[338,7,7,244,251],[341,1,1,251,252],[342,1,1,252,253],[347,1,1,253,254],[354,2,2,254,256],[356,1,1,256,257],[366,3,3,257,260]]],[13,28,27,260,287,[[367,1,1,260,261],[370,2,2,261,263],[371,1,1,263,264],[372,1,1,264,265],[375,1,1,265,266],[378,2,2,266,268],[380,1,1,268,269],[383,1,1,269,270],[387,5,4,270,274],[388,1,1,274,275],[390,1,1,275,276],[392,2,2,276,278],[393,1,1,278,279],[394,2,2,279,281],[398,1,1,281,282],[399,2,2,282,284],[400,1,1,284,285],[402,2,2,285,287]]],[15,1,1,287,288,[[414,1,1,287,288]]],[16,2,2,288,290,[[427,2,2,288,290]]],[17,22,21,290,311,[[444,1,1,290,291],[451,1,1,291,292],[453,1,1,292,293],[455,1,1,293,294],[461,2,2,294,296],[463,3,3,296,299],[465,2,2,299,301],[466,2,1,301,302],[469,2,2,302,304],[471,2,2,304,306],[472,1,1,306,307],[475,2,2,307,309],[476,2,2,309,311]]],[18,22,19,311,330,[[485,1,1,311,312],[487,1,1,312,313],[495,5,5,313,318],[512,1,1,318,319],[515,2,1,319,320],[522,2,2,320,322],[524,2,1,322,323],[543,1,1,323,324],[568,1,1,324,325],[583,1,1,325,326],[586,3,2,326,328],[617,1,1,328,329],[621,1,1,329,330]]],[19,9,8,330,338,[[628,1,1,330,331],[638,1,1,331,332],[644,1,1,332,333],[648,1,1,333,334],[649,1,1,334,335],[657,4,3,335,338]]],[20,34,31,338,369,[[659,4,4,338,342],[660,7,7,342,349],[661,2,2,349,351],[662,5,4,351,355],[663,2,2,355,357],[664,2,2,357,359],[665,1,1,359,360],[666,4,3,360,363],[667,6,5,363,368],[668,1,1,368,369]]],[21,4,4,369,373,[[672,1,1,369,370],[674,1,1,370,371],[678,2,2,371,373]]],[22,33,20,373,393,[[681,6,2,373,375],[688,3,2,375,377],[692,2,2,377,379],[702,1,1,379,380],[703,1,1,380,381],[715,1,1,381,382],[721,3,2,382,384],[724,1,1,384,385],[729,1,1,385,386],[731,1,1,386,387],[733,2,1,387,388],[735,2,1,388,389],[738,5,2,389,391],[739,4,2,391,393]]],[23,16,15,393,408,[[746,1,1,393,394],[747,2,2,394,396],[749,1,1,396,397],[762,1,1,397,398],[766,1,1,398,399],[772,1,1,399,400],[773,2,2,400,402],[781,1,1,402,403],[782,4,3,403,406],[794,1,1,406,407],[796,1,1,407,408]]],[24,2,2,408,410,[[799,2,2,408,410]]],[25,22,20,410,430,[[802,2,2,410,412],[805,1,1,412,413],[807,2,1,413,414],[811,4,4,414,418],[817,1,1,418,419],[818,2,2,419,421],[821,1,1,421,422],[824,1,1,422,423],[825,1,1,423,424],[832,1,1,424,425],[833,1,1,425,426],[837,1,1,426,427],[843,1,1,427,428],[847,1,1,428,429],[848,2,1,429,430]]],[26,3,3,430,433,[[857,2,2,430,432],[858,1,1,432,433]]],[27,2,2,433,435,[[865,2,2,433,435]]],[28,1,1,435,436,[[876,1,1,435,436]]],[29,2,2,436,438,[[880,2,2,436,438]]],[30,1,1,438,439,[[888,1,1,438,439]]],[31,1,1,439,440,[[892,1,1,439,440]]],[32,3,2,440,442,[[893,1,1,440,441],[896,2,1,441,442]]],[34,2,2,442,444,[[905,2,2,442,444]]],[35,1,1,444,445,[[907,1,1,444,445]]],[37,5,4,445,449,[[913,2,1,445,446],[916,1,1,446,447],[922,1,1,447,448],[924,1,1,448,449]]],[38,1,1,449,450,[[928,1,1,449,450]]]],[6,8,51,104,154,178,390,428,432,528,560,593,600,832,845,1015,1019,1073,1074,1075,1076,1077,1078,1079,1230,1328,1357,1449,1498,1525,1661,1662,1800,1976,1995,1997,2009,2055,2097,2100,2101,2102,2103,2104,2113,2114,2149,2181,2187,2230,2254,2256,2260,2268,2277,2366,2386,2457,2590,2592,2596,2625,2631,2637,2871,3075,3080,3153,3178,3233,3396,3464,3466,3602,3704,3733,3737,3811,3812,3821,3841,3955,3957,4225,4402,4484,4732,4950,4959,4960,4961,4963,4992,5015,5022,5023,5041,5043,5053,5061,5135,5171,5192,5242,5461,5499,5566,5634,5658,5673,5699,5823,5837,5880,5883,5919,5941,5942,5954,5969,5997,5998,6110,6124,6133,6159,6502,6516,6584,6598,6604,6665,6673,6702,6715,6931,7161,7260,7363,7510,7517,7775,7776,7780,7793,7858,7882,7926,8022,8072,8093,8190,8241,8434,8438,8474,8487,8511,8524,8532,8612,8639,8641,8642,8650,8747,8752,8805,8823,8856,8869,8879,8881,8883,8958,8963,8964,8966,8978,8991,9005,9008,9151,9198,9238,9241,9245,9249,9257,9273,9277,9289,9293,9311,9391,9392,9403,9432,9447,9450,9453,9457,9520,9530,9550,9603,9742,9747,9749,9751,9769,9817,9828,9871,9876,9880,9895,9912,9917,9923,9925,9932,9935,9939,9947,9950,9955,9963,9967,9980,9983,9990,9993,10007,10098,10119,10137,10143,10145,10162,10195,10199,10208,10219,10296,10297,10298,10299,10300,10301,10302,10426,10450,10671,10864,10872,10908,11187,11188,11192,11202,11249,11261,11275,11292,11395,11447,11453,11476,11524,11625,11632,11634,11636,11645,11704,11733,11755,11764,11768,11791,11908,11928,11933,11958,11994,12001,12321,12728,12741,13064,13242,13292,13338,13472,13475,13509,13519,13528,13564,13571,13628,13707,13709,13752,13756,13772,13876,13885,13899,13918,14018,14048,14127,14154,14156,14157,14165,14422,14510,14602,14613,14628,14890,15399,15693,15759,15760,16266,16307,16429,16696,16886,17002,17042,17272,17273,17274,17318,17324,17328,17329,17336,17344,17350,17351,17352,17353,17355,17360,17375,17382,17384,17388,17396,17410,17415,17418,17429,17435,17467,17473,17475,17478,17481,17484,17486,17488,17498,17560,17593,17643,17645,17713,17731,17854,17866,17937,17939,18100,18128,18390,18508,18509,18593,18679,18723,18753,18770,18836,18838,18846,18850,18985,19008,19015,19077,19404,19465,19631,19654,19661,19875,19904,19906,19907,20173,20296,20388,20420,20472,20487,20544,20576,20635,20641,20653,20654,20794,20831,20848,20932,21012,21061,21236,21275,21393,21561,21678,21680,21969,21983,22000,22145,22146,22308,22388,22392,22517,22573,22583,22624,22775,22784,22815,22922,22959,23051,23078,23141]]],["+",[86,81,[[0,4,4,0,4,[[0,2,2,0,2],[5,1,1,2,3],[34,1,1,3,4]]],[1,11,10,4,14,[[55,2,2,4,6],[59,1,1,6,7],[66,1,1,7,8],[67,1,1,8,9],[69,2,1,9,10],[70,2,2,10,12],[79,1,1,12,13],[86,1,1,13,14]]],[2,1,1,14,15,[[105,1,1,14,15]]],[3,2,2,15,17,[[141,1,1,15,16],[148,1,1,16,17]]],[4,14,13,17,30,[[156,3,3,17,20],[157,2,1,20,21],[159,1,1,21,22],[161,1,1,22,23],[173,1,1,23,24],[174,1,1,24,25],[177,1,1,25,26],[180,2,2,26,28],[181,1,1,28,29],[185,1,1,29,30]]],[5,1,1,30,31,[[188,1,1,30,31]]],[6,3,3,31,34,[[213,1,1,31,32],[216,1,1,32,33],[217,1,1,33,34]]],[8,3,3,34,37,[[242,1,1,34,35],[256,1,1,35,36],[261,1,1,36,37]]],[10,7,7,37,44,[[294,1,1,37,38],[297,4,4,38,42],[298,2,2,42,44]]],[11,7,7,44,51,[[320,2,2,44,46],[325,1,1,46,47],[326,1,1,47,48],[329,1,1,48,49],[334,1,1,49,50],[335,1,1,50,51]]],[13,7,6,51,57,[[371,1,1,51,52],[387,4,3,52,55],[400,1,1,55,56],[402,1,1,56,57]]],[17,4,4,57,61,[[451,1,1,57,58],[453,1,1,58,59],[461,1,1,59,60],[463,1,1,60,61]]],[19,2,2,61,63,[[628,1,1,61,62],[649,1,1,62,63]]],[22,3,3,63,66,[[692,1,1,63,64],[729,1,1,64,65],[731,1,1,65,66]]],[23,5,5,66,71,[[749,1,1,66,67],[773,1,1,67,68],[782,2,2,68,70],[794,1,1,70,71]]],[24,1,1,71,72,[[799,1,1,71,72]]],[25,6,5,72,77,[[802,1,1,72,73],[837,1,1,73,74],[843,1,1,74,75],[847,1,1,75,76],[848,2,1,76,77]]],[27,1,1,77,78,[[865,1,1,77,78]]],[29,1,1,78,79,[[880,1,1,78,79]]],[37,3,2,79,81,[[913,2,1,79,80],[916,1,1,80,81]]]],[6,8,154,1019,1661,1662,1800,1997,2009,2055,2103,2104,2386,2631,3233,4484,4732,5022,5041,5043,5061,5135,5171,5461,5499,5566,5658,5673,5699,5837,5880,6584,6673,6702,7363,7776,7926,8856,8958,8963,8964,8966,8991,9008,9747,9749,9876,9923,9990,10162,10195,11275,11632,11634,11636,11958,11994,13242,13292,13472,13519,16429,17042,17937,18679,18723,19077,19654,19906,19907,20173,20420,20472,21393,21561,21678,21680,22145,22388,22922,22959]]],["For",[6,6,[[18,1,1,0,1,[[586,1,1,0,1]]],[19,3,3,1,4,[[657,3,3,1,4]]],[22,2,2,4,6,[[738,1,1,4,5],[739,1,1,5,6]]]],[15759,17272,17273,17274,18838,18850]]],["Instead",[2,2,[[18,1,1,0,1,[[522,1,1,0,1]]],[22,1,1,1,2,[[733,1,1,1,2]]]],[14613,18753]]],["Whereas",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18836]]],["as",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13709]]],["because",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14510]]],["behalf",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8093]]],["beneath",[2,2,[[1,1,1,0,1,[[81,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]]],[2457,5823]]],["flat",[2,2,[[5,2,2,0,2,[[192,2,2,0,2]]]],[5954,5969]]],["for",[53,38,[[0,2,2,0,2,[[29,1,1,0,1],[43,1,1,1,2]]],[1,11,5,2,7,[[70,9,4,2,6],[71,2,1,6,7]]],[2,4,2,7,9,[[113,4,2,7,9]]],[3,1,1,9,10,[[124,1,1,9,10]]],[5,1,1,10,11,[[188,1,1,10,11]]],[8,3,3,11,14,[[237,1,1,11,12],[259,1,1,12,13],[260,1,1,13,14]]],[9,3,3,14,17,[[282,1,1,14,15],[284,1,1,15,16],[285,1,1,16,17]]],[10,5,4,17,21,[[310,3,2,17,19],[311,2,2,19,21]]],[11,1,1,21,22,[[322,1,1,21,22]]],[18,4,3,22,25,[[512,1,1,22,23],[515,1,1,23,24],[586,2,1,24,25]]],[19,3,3,25,28,[[644,1,1,25,26],[648,1,1,26,27],[657,1,1,27,28]]],[22,9,4,28,32,[[721,3,2,28,30],[738,3,1,30,31],[739,3,1,31,32]]],[23,2,2,32,34,[[762,1,1,32,33],[772,1,1,33,34]]],[25,1,1,34,35,[[805,1,1,34,35]]],[26,2,2,35,37,[[857,2,2,35,37]]],[35,1,1,37,38,[[907,1,1,37,38]]]],[845,1328,2100,2101,2102,2113,2114,3464,3466,3957,5883,7260,7858,7882,8438,8511,8532,9447,9450,9453,9457,9817,14422,14510,15760,16886,17002,17272,18508,18509,18838,18846,19404,19631,20544,21969,21983,22815]]],["in",[3,3,[[17,1,1,0,1,[[465,1,1,0,1]]],[34,2,2,1,3,[[905,2,2,1,3]]]],[13571,22775,22784]]],["instead",[18,13,[[0,1,1,0,1,[[1,1,1,0,1]]],[6,1,1,1,2,[[225,1,1,1,2]]],[9,1,1,2,3,[[283,1,1,2,3]]],[10,1,1,3,4,[[293,1,1,3,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[16,2,2,5,7,[[427,2,2,5,7]]],[17,2,1,7,8,[[466,2,1,7,8]]],[22,6,2,8,10,[[681,5,1,8,9],[733,1,1,9,10]]],[23,2,2,10,12,[[766,1,1,10,11],[781,1,1,11,12]]],[25,1,1,12,13,[[817,1,1,12,13]]]],[51,6931,8474,8823,10007,12728,12741,13628,17731,18753,19465,19875,20794]]],["of",[17,15,[[0,3,3,0,3,[[3,1,1,0,1],[21,1,1,1,2],[43,1,1,2,3]]],[3,9,7,3,10,[[119,5,3,3,6],[121,3,3,6,9],[124,1,1,9,10]]],[11,1,1,10,11,[[326,1,1,10,11]]],[12,1,1,11,12,[[366,1,1,11,12]]],[13,2,2,12,14,[[378,1,1,12,13],[392,1,1,13,14]]],[23,1,1,14,15,[[773,1,1,14,15]]]],[104,560,1357,3704,3733,3737,3811,3812,3821,3955,9917,11187,11447,11733,19661]]],["place",[16,16,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,1,1,1,2,[[65,1,1,1,2]]],[2,3,3,2,5,[[102,2,2,2,4],[103,1,1,4,5]]],[5,1,1,5,6,[[190,1,1,5,6]]],[6,1,1,6,7,[[217,1,1,6,7]]],[8,1,1,7,8,[[249,1,1,7,8]]],[9,2,2,8,10,[[268,1,1,8,9],[273,1,1,9,10]]],[12,1,1,10,11,[[354,1,1,10,11]]],[17,2,2,11,13,[[471,1,1,11,12],[475,1,1,12,13]]],[22,1,1,13,14,[[724,1,1,13,14]]],[37,2,2,14,16,[[922,1,1,14,15],[924,1,1,15,16]]]],[1525,1976,3075,3080,3153,5919,6715,7517,8072,8190,10872,13756,13876,18593,23051,23078]]],["places",[1,1,[[5,1,1,0,1,[[191,1,1,0,1]]]],[5942]]],["room",[10,9,[[9,1,1,0,1,[[285,1,1,0,1]]],[10,6,5,1,6,[[292,2,1,1,2],[295,2,2,2,4],[298,1,1,4,5],[309,1,1,5,6]]],[11,2,2,6,8,[[327,1,1,6,7],[335,1,1,7,8]]],[13,1,1,8,9,[[372,1,1,8,9]]]],[8524,8805,8879,8883,9005,9403,9950,10199,11292]]],["rooms",[2,2,[[10,1,1,0,1,[[310,1,1,0,1]]],[12,1,1,1,2,[[341,1,1,1,2]]]],[9432,10426]]],["stead",[84,84,[[0,8,8,0,8,[[29,1,1,0,1],[35,7,7,1,8]]],[1,1,1,8,9,[[78,1,1,8,9]]],[2,1,1,9,10,[[95,1,1,9,10]]],[4,5,5,10,15,[[154,4,4,10,14],[162,1,1,14,15]]],[5,1,1,15,16,[[191,1,1,15,16]]],[9,2,2,16,18,[[276,1,1,16,17],[282,1,1,17,18]]],[10,14,14,18,32,[[291,2,2,18,20],[301,1,1,20,21],[304,3,3,21,24],[305,3,3,24,27],[306,3,3,27,30],[312,2,2,30,32]]],[11,24,24,32,56,[[313,1,1,32,33],[315,1,1,33,34],[320,2,2,34,36],[322,1,1,36,37],[324,1,1,37,38],[325,2,2,38,40],[326,2,2,40,42],[327,6,6,42,48],[328,1,1,48,49],[331,1,1,49,50],[332,1,1,50,51],[333,3,3,51,54],[336,2,2,54,56]]],[12,9,9,56,65,[[338,7,7,56,63],[356,1,1,63,64],[366,1,1,64,65]]],[13,15,15,65,80,[[367,1,1,65,66],[375,1,1,66,67],[378,1,1,67,68],[380,1,1,68,69],[383,1,1,69,70],[387,1,1,70,71],[388,1,1,71,72],[390,1,1,72,73],[392,1,1,73,74],[393,1,1,74,75],[394,1,1,75,76],[398,1,1,76,77],[399,2,2,77,79],[402,1,1,79,80]]],[17,1,1,80,81,[[469,1,1,80,81]]],[19,1,1,81,82,[[638,1,1,81,82]]],[20,1,1,82,83,[[662,1,1,82,83]]],[22,1,1,83,84,[[715,1,1,83,84]]]],[832,1073,1074,1075,1076,1077,1078,1079,2366,2871,4950,4959,4960,4961,5192,5941,8241,8434,8747,8752,9151,9238,9245,9249,9257,9273,9277,9289,9293,9311,9520,9530,9550,9603,9742,9751,9828,9871,9880,9895,9912,9925,9932,9935,9939,9947,9955,9963,9983,10098,10119,10137,10143,10145,10208,10219,10296,10297,10298,10299,10300,10301,10302,10908,11192,11202,11395,11453,11476,11524,11625,11645,11704,11755,11764,11791,11908,11928,11933,12001,13707,16696,17396,18390]]],["steads",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10450]]],["under",[193,173,[[0,12,12,0,12,[[6,1,1,0,1],[15,1,1,1,2],[17,2,2,2,4],[20,1,1,4,5],[23,2,2,5,7],[34,2,2,7,9],[40,1,1,9,10],[46,1,1,10,11],[48,1,1,11,12]]],[1,27,16,12,28,[[66,1,1,12,13],[70,1,1,13,14],[72,1,1,14,15],[73,2,2,15,17],[74,3,1,17,18],[75,8,4,18,22],[76,1,1,22,23],[85,6,3,23,26],[86,3,1,26,27],[87,1,1,27,28]]],[2,3,3,28,31,[[104,1,1,28,29],[111,1,1,29,30],[116,1,1,30,31]]],[3,3,3,31,34,[[122,1,1,31,32],[132,1,1,32,33],[138,1,1,33,34]]],[4,7,7,34,41,[[154,1,1,34,35],[155,1,1,35,36],[156,3,3,36,39],[164,1,1,39,40],[180,1,1,40,41]]],[5,7,7,41,48,[[193,2,2,41,43],[197,2,2,43,45],[198,1,1,45,46],[199,1,1,46,47],[210,1,1,47,48]]],[6,4,4,48,52,[[211,1,1,48,49],[213,1,1,49,50],[214,1,1,50,51],[216,1,1,51,52]]],[7,1,1,52,53,[[233,1,1,52,53]]],[8,5,5,53,58,[[249,1,1,53,54],[256,2,2,54,56],[257,1,1,56,57],[266,1,1,57,58]]],[9,7,6,58,64,[[284,2,1,58,59],[288,5,5,59,64]]],[10,8,7,64,71,[[294,2,1,64,65],[295,1,1,65,66],[297,1,1,66,67],[303,1,1,67,68],[304,1,1,68,69],[309,2,2,69,71]]],[11,4,4,71,75,[[321,1,1,71,72],[328,2,2,72,74],[329,1,1,74,75]]],[12,2,2,75,77,[[347,1,1,75,76],[354,1,1,76,77]]],[13,3,3,77,80,[[370,2,2,77,79],[394,1,1,79,80]]],[15,1,1,80,81,[[414,1,1,80,81]]],[17,10,10,81,91,[[444,1,1,81,82],[455,1,1,82,83],[461,1,1,83,84],[463,2,2,84,86],[465,1,1,86,87],[472,1,1,87,88],[475,1,1,88,89],[476,2,2,89,91]]],[18,14,13,91,104,[[485,1,1,91,92],[487,1,1,92,93],[495,5,5,93,98],[522,1,1,98,99],[524,2,1,99,100],[568,1,1,100,101],[583,1,1,101,102],[617,1,1,102,103],[621,1,1,103,104]]],[20,33,31,104,135,[[659,4,4,104,108],[660,7,7,108,115],[661,2,2,115,117],[662,4,4,117,121],[663,2,2,121,123],[664,2,2,123,125],[665,1,1,125,126],[666,4,3,126,129],[667,6,5,129,134],[668,1,1,134,135]]],[21,4,4,135,139,[[672,1,1,135,136],[674,1,1,136,137],[678,2,2,137,139]]],[22,9,7,139,146,[[681,1,1,139,140],[688,3,2,140,142],[692,1,1,142,143],[702,1,1,143,144],[703,1,1,144,145],[735,2,1,145,146]]],[23,5,5,146,151,[[746,1,1,146,147],[747,2,2,147,149],[782,1,1,149,150],[796,1,1,150,151]]],[24,1,1,151,152,[[799,1,1,151,152]]],[25,13,12,152,164,[[802,1,1,152,153],[807,2,1,153,154],[811,4,4,154,158],[818,2,2,158,160],[821,1,1,160,161],[825,1,1,161,162],[832,1,1,162,163],[833,1,1,163,164]]],[26,1,1,164,165,[[858,1,1,164,165]]],[27,1,1,165,166,[[865,1,1,165,166]]],[28,1,1,166,167,[[876,1,1,166,167]]],[29,1,1,167,168,[[880,1,1,167,168]]],[30,1,1,168,169,[[888,1,1,168,169]]],[31,1,1,169,170,[[892,1,1,169,170]]],[32,3,2,170,172,[[893,1,1,170,171],[896,2,1,171,172]]],[38,1,1,172,173,[[928,1,1,172,173]]]],[178,390,428,432,528,593,600,1015,1019,1230,1449,1498,1995,2097,2149,2181,2187,2230,2254,2256,2260,2268,2277,2590,2592,2596,2625,2637,3178,3396,3602,3841,4225,4402,4963,4992,5015,5023,5053,5242,5634,5997,5998,6110,6124,6133,6159,6502,6516,6598,6604,6665,7161,7510,7775,7780,7793,8022,8487,8612,8639,8641,8642,8650,8869,8881,8978,9198,9241,9391,9392,9769,9967,9980,9993,10671,10864,11249,11261,11768,12321,13064,13338,13475,13509,13528,13564,13772,13885,13899,13918,14018,14048,14127,14154,14156,14157,14165,14602,14628,15399,15693,16266,16307,17318,17324,17328,17329,17336,17344,17350,17351,17352,17353,17355,17360,17375,17382,17384,17388,17396,17410,17415,17418,17429,17435,17467,17473,17475,17478,17481,17484,17486,17488,17498,17560,17593,17643,17645,17713,17854,17866,17939,18100,18128,18770,18985,19008,19015,19907,20296,20388,20487,20576,20635,20641,20653,20654,20831,20848,20932,21061,21236,21275,22000,22146,22308,22392,22517,22573,22583,22624,23141]]],["unto",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11188]]],["was",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21012]]],["where",[2,2,[[17,1,1,0,1,[[471,1,1,0,1]]],[23,1,1,1,2,[[782,1,1,1,2]]]],[13752,19904]]],["with",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14890]]]]},{"k":"H8479","v":[["under",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21851]]]]},{"k":"H8480","v":[["*",[6,5,[[3,2,2,0,2,[[149,2,2,0,2]]],[12,4,3,2,5,[[343,2,2,2,4],[344,2,1,4,5]]]],[4786,4787,10478,10491,10555]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4787]]],["Tahath",[5,4,[[3,1,1,0,1,[[149,1,1,0,1]]],[12,4,3,1,4,[[343,2,2,1,3],[344,2,1,3,4]]]],[4786,10478,10491,10555]]]]},{"k":"H8481","v":[["*",[13,13,[[5,2,2,0,2,[[202,1,1,0,1],[204,1,1,1,2]]],[10,2,2,2,4,[[296,1,1,2,3],[299,1,1,3,4]]],[12,1,1,4,5,[[344,1,1,4,5]]],[13,1,1,5,6,[[374,1,1,5,6]]],[22,1,1,6,7,[[700,1,1,6,7]]],[25,6,6,7,13,[[841,2,2,7,9],[842,1,1,9,10],[843,2,2,10,12],[844,1,1,12,13]]]],[6268,6306,8902,9068,10559,11351,18061,21495,21496,21533,21557,21558,21586]]],["+",[2,2,[[25,2,2,0,2,[[843,2,2,0,2]]]],[21557,21558]]],["lower",[4,4,[[22,1,1,0,1,[[700,1,1,0,1]]],[25,3,3,1,4,[[841,2,2,1,3],[844,1,1,3,4]]]],[18061,21495,21496,21586]]],["lowest",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21533]]],["nether",[5,5,[[5,2,2,0,2,[[202,1,1,0,1],[204,1,1,1,2]]],[10,1,1,2,3,[[299,1,1,2,3]]],[12,1,1,3,4,[[344,1,1,3,4]]],[13,1,1,4,5,[[374,1,1,4,5]]]],[6268,6306,9068,10559,11351]]],["nethermost",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8902]]]]},{"k":"H8482","v":[["*",[19,19,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,1,1,1,2,[[68,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[5,1,1,3,4,[[201,1,1,3,4]]],[6,1,1,4,5,[[211,1,1,4,5]]],[15,1,1,5,6,[[416,1,1,5,6]]],[17,1,1,6,7,[[476,1,1,6,7]]],[18,4,4,7,11,[[540,1,1,7,8],[563,1,1,8,9],[565,1,1,9,10],[616,1,1,10,11]]],[22,1,1,11,12,[[722,1,1,11,12]]],[24,1,1,12,13,[[799,1,1,12,13]]],[25,6,6,13,19,[[827,1,1,13,14],[832,3,3,14,17],[833,2,2,17,19]]]],[153,2043,5780,6221,6524,12372,13912,14848,15297,15314,16254,18556,20409,21120,21244,21246,21248,21266,21272]]],["+",[2,2,[[15,1,1,0,1,[[416,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]]],[12372,20409]]],["lower",[1,1,[[0,1,1,0,1,[[5,1,1,0,1]]]],[153]]],["lowest",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,2,2,1,3,[[563,1,1,1,2],[565,1,1,2,3]]]],[5780,15297,15314]]],["nether",[3,3,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]],[17,1,1,2,3,[[476,1,1,2,3]]]],[6221,6524,13912]]],["part",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2043]]],["parts",[9,9,[[18,2,2,0,2,[[540,1,1,0,1],[616,1,1,1,2]]],[22,1,1,2,3,[[722,1,1,2,3]]],[25,6,6,3,9,[[827,1,1,3,4],[832,3,3,4,7],[833,2,2,7,9]]]],[14848,16254,18556,21120,21244,21246,21248,21266,21272]]]]},{"k":"H8483","v":[["Tahtimhodshi",[1,1,[[9,1,1,0,1,[[290,1,1,0,1]]]],[8698]]]]},{"k":"H8484","v":[["*",[11,9,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]],[10,4,2,3,5,[[296,4,2,3,5]]],[11,1,1,5,6,[[332,1,1,5,6]]],[25,3,3,6,9,[[842,1,1,6,7],[843,2,2,7,9]]]],[2263,2599,6713,8902,8904,10102,21533,21557,21558]]],["+",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21557]]],["middle",[8,6,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]],[10,4,2,3,5,[[296,4,2,3,5]]],[11,1,1,5,6,[[332,1,1,5,6]]]],[2263,2599,6713,8902,8904,10102]]],["middlemost",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21558]]],["midst",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21533]]]]},{"k":"H8485","v":[["Tema",[5,5,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[17,1,1,2,3,[[441,1,1,2,3]]],[22,1,1,3,4,[[699,1,1,3,4]]],[23,1,1,4,5,[[769,1,1,4,5]]]],[673,10282,12997,18049,19557]]]]},{"k":"H8486","v":[["*",[23,22,[[1,5,5,0,5,[[75,2,2,0,2],[76,1,1,2,3],[85,1,1,3,4],[87,1,1,4,5]]],[3,3,3,5,8,[[118,1,1,5,6],[119,1,1,6,7],[126,1,1,7,8]]],[4,1,1,8,9,[[155,1,1,8,9]]],[5,3,3,9,12,[[198,1,1,9,10],[199,1,1,10,11],[201,1,1,11,12]]],[17,2,2,12,14,[[444,1,1,12,13],[474,1,1,13,14]]],[18,1,1,14,15,[[555,1,1,14,15]]],[21,1,1,15,16,[[674,1,1,15,16]]],[22,1,1,16,17,[[721,1,1,16,17]]],[25,4,3,17,20,[[821,1,1,17,18],[848,2,1,18,19],[849,1,1,19,20]]],[37,2,2,20,22,[[916,1,1,20,21],[919,1,1,21,22]]]],[2253,2270,2281,2589,2642,3668,3721,3994,5002,6133,6158,6203,13060,13860,15139,17598,18511,20941,21698,21730,22953,23013]]],["+",[2,2,[[5,2,2,0,2,[[198,1,1,0,1],[199,1,1,1,2]]]],[6133,6158]]],["coast",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6203]]],["side",[2,2,[[3,2,2,0,2,[[118,1,1,0,1],[126,1,1,1,2]]]],[3668,3994]]],["south",[9,9,[[1,1,1,0,1,[[75,1,1,0,1]]],[17,2,2,1,3,[[444,1,1,1,2],[474,1,1,2,3]]],[21,1,1,3,4,[[674,1,1,3,4]]],[22,1,1,4,5,[[721,1,1,4,5]]],[25,2,2,5,7,[[821,1,1,5,6],[848,1,1,6,7]]],[37,2,2,7,9,[[916,1,1,7,8],[919,1,1,8,9]]]],[2270,13060,13860,17598,18511,20941,21698,22953,23013]]],["southward",[8,8,[[1,4,4,0,4,[[75,1,1,0,1],[76,1,1,1,2],[85,1,1,2,3],[87,1,1,3,4]]],[3,1,1,4,5,[[119,1,1,4,5]]],[4,1,1,5,6,[[155,1,1,5,6]]],[25,2,2,6,8,[[848,1,1,6,7],[849,1,1,7,8]]]],[2253,2281,2589,2642,3721,5002,21698,21730]]],["wind",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15139]]]]},{"k":"H8487","v":[["*",[11,11,[[0,3,3,0,3,[[35,3,3,0,3]]],[12,2,2,3,5,[[338,2,2,3,5]]],[23,2,2,5,7,[[793,2,2,5,7]]],[25,1,1,7,8,[[826,1,1,7,8]]],[29,1,1,8,9,[[879,1,1,8,9]]],[30,1,1,9,10,[[888,1,1,9,10]]],[34,1,1,10,11,[[905,1,1,10,11]]]],[1051,1055,1082,10288,10305,20134,20147,21096,22376,22519,22771]]],["+",[2,2,[[25,1,1,0,1,[[826,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[21096,22771]]],["Teman",[9,9,[[0,3,3,0,3,[[35,3,3,0,3]]],[12,2,2,3,5,[[338,2,2,3,5]]],[23,2,2,5,7,[[793,2,2,5,7]]],[29,1,1,7,8,[[879,1,1,7,8]]],[30,1,1,8,9,[[888,1,1,8,9]]]],[1051,1055,1082,10288,10305,20134,20147,22376,22519]]]]},{"k":"H8488","v":[["Temeni",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10391]]]]},{"k":"H8489","v":[["*",[8,8,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[17,6,6,2,8,[[437,1,1,2,3],[439,1,1,3,4],[450,1,1,4,5],[457,1,1,5,6],[477,2,2,6,8]]]],[1074,10297,12902,12931,13204,13390,13929,13931]]],["Temani",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1074]]],["Temanite",[6,6,[[17,6,6,0,6,[[437,1,1,0,1],[439,1,1,1,2],[450,1,1,2,3],[457,1,1,3,4],[477,2,2,4,6]]]],[12902,12931,13204,13390,13929,13931]]],["Temanites",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10297]]]]},{"k":"H8490","v":[["pillars",[2,2,[[21,1,1,0,1,[[673,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[17577,22341]]]]},{"k":"H8491","v":[["Tizite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10718]]]]},{"k":"H8492","v":[["wine",[38,38,[[0,2,2,0,2,[[26,2,2,0,2]]],[3,1,1,2,3,[[134,1,1,2,3]]],[4,7,7,3,10,[[159,1,1,3,4],[163,1,1,4,5],[164,1,1,5,6],[166,1,1,6,7],[170,1,1,7,8],[180,1,1,8,9],[185,1,1,9,10]]],[6,1,1,10,11,[[219,1,1,10,11]]],[11,1,1,11,12,[[330,1,1,11,12]]],[13,2,2,12,14,[[397,1,1,12,13],[398,1,1,13,14]]],[15,5,5,14,19,[[417,1,1,14,15],[422,2,2,15,17],[425,2,2,17,19]]],[18,1,1,19,20,[[481,1,1,19,20]]],[19,1,1,20,21,[[630,1,1,20,21]]],[22,4,4,21,25,[[702,1,1,21,22],[714,1,1,22,23],[740,1,1,23,24],[743,1,1,24,25]]],[23,1,1,25,26,[[775,1,1,25,26]]],[27,6,6,26,32,[[863,3,3,26,29],[865,1,1,29,30],[868,1,1,30,31],[870,1,1,31,32]]],[28,3,3,32,35,[[876,1,1,32,33],[877,2,2,33,35]]],[32,1,1,35,36,[[898,1,1,35,36]]],[36,1,1,36,37,[[909,1,1,36,37]]],[37,1,1,37,38,[[919,1,1,37,38]]]],[755,764,4269,5124,5222,5257,5313,5388,5662,5838,6767,10056,11859,11903,12393,12586,12588,12676,12683,13972,16465,18102,18347,18862,18905,19703,22113,22114,22127,22144,22192,22210,22301,22330,22335,22663,22851,23016]]]]},{"k":"H8493","v":[["Tiria",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10401]]]]},{"k":"H8494","v":[["Tiras",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[236,10257]]]]},{"k":"H8495","v":[["*",[4,4,[[0,2,2,0,2,[[29,1,1,0,1],[31,1,1,1,2]]],[13,1,1,2,3,[[383,1,1,2,3]]],[19,1,1,3,4,[[657,1,1,3,4]]]],[865,942,11534,17282]]],["goat",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17282]]],["goats",[3,3,[[0,2,2,0,2,[[29,1,1,0,1],[31,1,1,1,2]]],[13,1,1,2,3,[[383,1,1,2,3]]]],[865,942,11534]]]]},{"k":"H8496","v":[["*",[3,3,[[18,3,3,0,3,[[487,1,1,0,1],[532,1,1,1,2],[549,1,1,2,3]]]],[14048,14743,15014]]],["+",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15014]]],["deceit",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14743]]],["fraud",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14048]]]]},{"k":"H8497","v":[["down",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5813]]]]},{"k":"H8498","v":[["*",[2,2,[[25,1,1,0,1,[[844,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[21583,22708]]],["fashion",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21583]]],["store",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22708]]]]},{"k":"H8499","v":[["seat",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13422]]]]},{"k":"H8500","v":[["peacocks",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9101,11385]]]]},{"k":"H8501","v":[["deceitful",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17237]]]]},{"k":"H8502","v":[["perfection",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15994]]]]},{"k":"H8503","v":[["*",[5,5,[[15,1,1,0,1,[[415,1,1,0,1]]],[17,3,3,1,4,[[446,1,1,1,2],[461,1,1,2,3],[463,1,1,3,4]]],[18,1,1,4,5,[[616,1,1,4,5]]]],[12348,13115,13477,13507,16261]]],["end",[2,2,[[15,1,1,0,1,[[415,1,1,0,1]]],[17,1,1,1,2,[[461,1,1,1,2]]]],[12348,13477]]],["perfect",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16261]]],["perfection",[2,2,[[17,2,2,0,2,[[446,1,1,0,1],[463,1,1,1,2]]]],[13115,13507]]]]},{"k":"H8504","v":[["blue",[49,49,[[1,34,34,0,34,[[74,1,1,0,1],[75,4,4,1,5],[76,1,1,5,6],[77,8,8,6,14],[84,4,4,14,18],[85,4,4,18,22],[87,2,2,22,24],[88,10,10,24,34]]],[3,6,6,34,40,[[120,5,5,34,39],[131,1,1,39,40]]],[13,3,3,40,43,[[368,2,2,40,42],[369,1,1,42,43]]],[16,2,2,43,45,[[426,1,1,43,44],[433,1,1,44,45]]],[23,1,1,45,46,[[754,1,1,45,46]]],[25,3,3,46,49,[[824,1,1,46,47],[828,2,2,47,49]]]],[2199,2236,2239,2266,2271,2288,2298,2299,2301,2308,2321,2324,2326,2330,2537,2554,2556,2566,2574,2577,2601,2603,2651,2656,2665,2666,2667,2669,2672,2685,2686,2688,2693,2695,3749,3750,3752,3754,3755,4191,11218,11225,11243,12708,12832,19210,21013,21128,21145]]]]},{"k":"H8505","v":[["*",[18,13,[[8,1,1,0,1,[[237,1,1,0,1]]],[11,1,1,1,2,[[324,1,1,1,2]]],[17,1,1,2,3,[[463,1,1,2,3]]],[18,1,1,3,4,[[552,1,1,3,4]]],[19,3,3,4,7,[[643,1,1,4,5],[648,1,1,5,6],[651,1,1,6,7]]],[22,2,2,7,9,[[718,2,2,7,9]]],[25,9,4,9,13,[[819,6,2,9,11],[834,3,2,11,13]]]],[7243,9861,13529,15074,16842,16986,17091,18432,18433,20874,20878,21297,21300]]],["+",[8,5,[[22,1,1,0,1,[[718,1,1,0,1]]],[25,7,4,1,5,[[819,4,2,1,3],[834,3,2,3,5]]]],[18433,20874,20878,21297,21300]]],["equal",[2,2,[[25,2,2,0,2,[[819,2,2,0,2]]]],[20874,20878]]],["out",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18432]]],["pondereth",[2,2,[[19,2,2,0,2,[[648,1,1,0,1],[651,1,1,1,2]]]],[16986,17091]]],["told",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9861]]],["up",[1,1,[[18,1,1,0,1,[[552,1,1,0,1]]]],[15074]]],["weighed",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7243]]],["weigheth",[2,2,[[17,1,1,0,1,[[463,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]]],[13529,16842]]]]},{"k":"H8506","v":[["*",[2,2,[[1,1,1,0,1,[[54,1,1,0,1]]],[25,1,1,1,2,[[846,1,1,1,2]]]],[1650,21641]]],["measure",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21641]]],["tale",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1650]]]]},{"k":"H8507","v":[["Tochen",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10417]]]]},{"k":"H8508","v":[["*",[2,2,[[25,2,2,0,2,[[829,1,1,0,1],[844,1,1,1,2]]]],[21169,21582]]],["pattern",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21582]]],["sum",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21169]]]]},{"k":"H8509","v":[["garment",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12832]]]]},{"k":"H8510","v":[["*",[5,5,[[4,1,1,0,1,[[165,1,1,0,1]]],[5,2,2,1,3,[[194,1,1,1,2],[197,1,1,2,3]]],[23,2,2,3,5,[[774,1,1,3,4],[793,1,1,4,5]]]],[5288,6030,6120,19685,20129]]],["heap",[4,4,[[4,1,1,0,1,[[165,1,1,0,1]]],[5,1,1,1,2,[[194,1,1,1,2]]],[23,2,2,2,4,[[774,1,1,2,3],[793,1,1,3,4]]]],[5288,6030,19685,20129]]],["strength",[1,1,[[5,1,1,0,1,[[197,1,1,0,1]]]],[6120]]]]},{"k":"H8511","v":[["*",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]],[27,1,1,2,3,[[872,1,1,2,3]]]],[5677,8592,22247]]],["bent",[1,1,[[27,1,1,0,1,[[872,1,1,0,1]]]],[22247]]],["doubt",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5677]]],["hanged",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8592]]]]},{"k":"H8512","v":[["Telabib",[1,1,[[25,1,1,0,1,[[804,1,1,0,1]]]],[20517]]]]},{"k":"H8513","v":[["*",[5,5,[[1,1,1,0,1,[[67,1,1,0,1]]],[3,1,1,1,2,[[136,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[24,1,1,3,4,[[799,1,1,3,4]]],[38,1,1,4,5,[[925,1,1,4,5]]]],[2007,4325,12543,20359,23102]]],["+",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23102]]],["travail",[3,3,[[1,1,1,0,1,[[67,1,1,0,1]]],[3,1,1,1,2,[[136,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]]],[2007,4325,20359]]],["trouble",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12543]]]]},{"k":"H8514","v":[["drought",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22271]]]]},{"k":"H8515","v":[["*",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10073,18364]]],["Telassar",[1,1,[[22,1,1,0,1,[[715,1,1,0,1]]]],[18364]]],["Thelasar",[1,1,[[11,1,1,0,1,[[331,1,1,0,1]]]],[10073]]]]},{"k":"H8516","v":[["clothing",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18817]]]]},{"k":"H8517","v":[["snow",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21942]]]]},{"k":"H8518","v":[["*",[27,26,[[0,3,3,0,3,[[39,2,2,0,2],[40,1,1,2,3]]],[4,2,2,3,5,[[173,2,2,3,5]]],[5,3,2,5,7,[[194,1,1,5,6],[196,2,1,6,7]]],[9,2,2,7,9,[[270,1,1,7,8],[284,1,1,8,9]]],[16,9,9,9,18,[[427,1,1,9,10],[430,1,1,10,11],[431,1,1,11,12],[432,2,2,12,14],[433,1,1,14,15],[434,3,3,15,18]]],[17,1,1,18,19,[[461,1,1,18,19]]],[18,1,1,19,20,[[614,1,1,19,20]]],[21,1,1,20,21,[[674,1,1,20,21]]],[22,1,1,21,22,[[700,1,1,21,22]]],[24,1,1,22,23,[[801,1,1,22,23]]],[25,3,3,23,26,[[816,1,1,23,24],[828,2,2,24,26]]]],[1191,1194,1208,5469,5470,6031,6090,8132,8488,12747,12793,12797,12816,12817,12824,12847,12848,12859,13474,16224,17586,18076,20454,20757,21131,21132]]],["+",[2,2,[[16,2,2,0,2,[[431,1,1,0,1],[432,1,1,1,2]]]],[12797,12817]]],["Hang",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12816]]],["hang",[5,5,[[0,1,1,0,1,[[39,1,1,0,1]]],[4,1,1,1,2,[[173,1,1,1,2]]],[21,1,1,2,3,[[674,1,1,2,3]]],[22,1,1,3,4,[[700,1,1,3,4]]],[25,1,1,4,5,[[816,1,1,4,5]]]],[1191,5469,17586,18076,20757]]],["hanged",[15,15,[[0,2,2,0,2,[[39,1,1,0,1],[40,1,1,1,2]]],[4,1,1,2,3,[[173,1,1,2,3]]],[5,2,2,3,5,[[194,1,1,3,4],[196,1,1,4,5]]],[9,1,1,5,6,[[284,1,1,5,6]]],[16,6,6,6,12,[[427,1,1,6,7],[430,1,1,7,8],[433,1,1,8,9],[434,3,3,9,12]]],[18,1,1,12,13,[[614,1,1,12,13]]],[25,2,2,13,15,[[828,2,2,13,15]]]],[1194,1208,5470,6031,6090,8488,12747,12793,12824,12847,12848,12859,16224,21131,21132]]],["hangeth",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13474]]],["hanging",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6090]]],["up",[2,2,[[9,1,1,0,1,[[270,1,1,0,1]]],[24,1,1,1,2,[[801,1,1,1,2]]]],[8132,20454]]]]},{"k":"H8519","v":[["murmurings",[8,7,[[1,5,4,0,4,[[65,5,4,0,4]]],[3,3,3,4,7,[[130,1,1,4,5],[133,2,2,5,7]]]],[1954,1955,1956,1959,4135,4249,4254]]]]},{"k":"H8520","v":[["Telah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10560]]]]},{"k":"H8521","v":[["*",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12086,12481]]],["Telharesha",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12481]]],["Telharsa",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12086]]]]},{"k":"H8522","v":[["quiver",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[730]]]]},{"k":"H8523","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[854,1,1,1,2]]]],[21797,21881]]],["+",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21881]]],["third",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21797]]]]},{"k":"H8524","v":[["eminent",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20847]]]]},{"k":"H8525","v":[["*",[5,5,[[17,2,2,0,2,[[466,1,1,0,1],[474,1,1,1,2]]],[18,1,1,2,3,[[542,1,1,2,3]]],[27,2,2,3,5,[[871,1,1,3,4],[873,1,1,4,5]]]],[13626,13844,14870,22229,22263]]],["furrow",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13844]]],["furrows",[3,3,[[17,1,1,0,1,[[466,1,1,0,1]]],[27,2,2,1,3,[[871,1,1,1,2],[873,1,1,2,3]]]],[13626,22229,22263]]],["ridges",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14870]]]]},{"k":"H8526","v":[["Talmai",[6,6,[[3,1,1,0,1,[[129,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]],[6,1,1,2,3,[[211,1,1,2,3]]],[9,2,2,3,5,[[269,1,1,3,4],[279,1,1,4,5]]],[12,1,1,5,6,[[340,1,1,5,6]]]],[4097,6216,6519,8084,8354,10363]]]]},{"k":"H8527","v":[["scholar",[1,1,[[12,1,1,0,1,[[362,1,1,0,1]]]],[11054]]]]},{"k":"H8528","v":[["+",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12086,12481]]]]},{"k":"H8529","v":[["scarlet",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22702]]]]},{"k":"H8530","v":[["armoury",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17586]]]]},{"k":"H8531","v":[["*",[2,2,[[26,2,2,0,2,[[854,2,2,0,2]]]],[21890,21903]]],["+",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21890]]],["third",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21903]]]]},{"k":"H8532","v":[["*",[11,11,[[14,2,2,0,2,[[408,2,2,0,2]]],[26,9,9,2,11,[[852,2,2,2,4],[855,3,3,4,7],[856,4,4,7,11]]]],[12155,12166,21830,21831,21907,21915,21918,21938,21941,21953,21957]]],["third",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12166]]],["three",[10,10,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,9,9,1,10,[[852,2,2,1,3],[855,3,3,3,6],[856,4,4,6,10]]]],[12155,21830,21831,21907,21915,21918,21938,21941,21953,21957]]]]},{"k":"H8533","v":[["thirty",[2,2,[[26,2,2,0,2,[[855,2,2,0,2]]]],[21912,21917]]]]},{"k":"H8534","v":[["bushy",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17609]]]]},{"k":"H8535","v":[["*",[13,13,[[0,1,1,0,1,[[24,1,1,0,1]]],[17,7,7,1,8,[[436,2,2,1,3],[437,1,1,3,4],[443,1,1,4,5],[444,3,3,5,8]]],[18,2,2,8,10,[[514,1,1,8,9],[541,1,1,9,10]]],[19,1,1,10,11,[[656,1,1,10,11]]],[21,2,2,11,13,[[675,1,1,11,12],[676,1,1,12,13]]]],[685,12870,12877,12894,13049,13071,13072,13073,14487,14854,17234,17600,17623]]],["perfect",[9,9,[[17,7,7,0,7,[[436,2,2,0,2],[437,1,1,2,3],[443,1,1,3,4],[444,3,3,4,7]]],[18,2,2,7,9,[[514,1,1,7,8],[541,1,1,8,9]]]],[12870,12877,12894,13049,13071,13072,13073,14487,14854]]],["plain",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[685]]],["undefiled",[2,2,[[21,2,2,0,2,[[675,1,1,0,1],[676,1,1,1,2]]]],[17600,17623]]],["upright",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17234]]]]},{"k":"H8536","v":[["*",[4,4,[[14,4,4,0,4,[[407,1,1,0,1],[408,3,3,1,4]]]],[12151,12152,12157,12163]]],["+",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12152]]],["thence",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12157]]],["there",[2,2,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]]],[12151,12163]]]]},{"k":"H8537","v":[["*",[23,23,[[0,2,2,0,2,[[19,2,2,0,2]]],[9,1,1,2,3,[[281,1,1,2,3]]],[10,2,2,3,5,[[299,1,1,3,4],[312,1,1,4,5]]],[13,1,1,5,6,[[384,1,1,5,6]]],[17,2,2,6,8,[[439,1,1,6,7],[456,1,1,7,8]]],[18,7,7,8,15,[[484,1,1,8,9],[502,1,1,9,10],[503,2,2,10,12],[518,1,1,12,13],[555,1,1,13,14],[578,1,1,14,15]]],[19,7,7,15,22,[[629,1,1,15,16],[637,2,2,16,18],[640,1,1,18,19],[646,1,1,19,20],[647,1,1,20,21],[655,1,1,21,22]]],[22,1,1,22,23,[[725,1,1,22,23]]]],[500,501,8400,9055,9514,11575,12936,13378,14003,14272,14274,14284,14554,15185,15515,16440,16665,16685,16753,16926,16961,17202,18608]]],["full",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13378]]],["integrity",[11,11,[[0,2,2,0,2,[[19,2,2,0,2]]],[10,1,1,2,3,[[299,1,1,2,3]]],[18,6,6,3,9,[[484,1,1,3,4],[502,1,1,4,5],[503,2,2,5,7],[518,1,1,7,8],[555,1,1,8,9]]],[19,2,2,9,11,[[646,1,1,9,10],[647,1,1,10,11]]]],[500,501,9055,14003,14272,14274,14284,14554,15185,16926,16961]]],["perfect",[1,1,[[18,1,1,0,1,[[578,1,1,0,1]]]],[15515]]],["perfection",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18608]]],["simplicity",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8400]]],["upright",[2,2,[[19,2,2,0,2,[[637,1,1,0,1],[640,1,1,1,2]]]],[16685,16753]]],["uprightly",[2,2,[[19,2,2,0,2,[[629,1,1,0,1],[637,1,1,1,2]]]],[16440,16665]]],["uprightness",[2,2,[[17,1,1,0,1,[[439,1,1,0,1]]],[19,1,1,1,2,[[655,1,1,1,2]]]],[12936,17202]]],["venture",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[9514,11575]]]]},{"k":"H8538","v":[["integrity",[5,5,[[17,4,4,0,4,[[437,2,2,0,2],[462,1,1,2,3],[466,1,1,3,4]]],[19,1,1,4,5,[[638,1,1,4,5]]]],[12894,12900,13486,13594,16691]]]]},{"k":"H8539","v":[["*",[9,8,[[0,1,1,0,1,[[42,1,1,0,1]]],[17,1,1,1,2,[[461,1,1,1,2]]],[18,1,1,2,3,[[525,1,1,2,3]]],[20,1,1,3,4,[[663,1,1,3,4]]],[22,2,2,4,6,[[691,1,1,4,5],[707,1,1,5,6]]],[23,1,1,6,7,[[748,1,1,6,7]]],[34,2,1,7,8,[[903,2,1,7,8]]]],[1323,13478,14639,17405,17914,18202,19036,22736]]],["+",[2,1,[[34,2,1,0,1,[[903,2,1,0,1]]]],[22736]]],["amazed",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17914]]],["astonished",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13478]]],["marvel",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17405]]],["marvelled",[2,2,[[0,1,1,0,1,[[42,1,1,0,1]]],[18,1,1,1,2,[[525,1,1,1,2]]]],[1323,14639]]],["wonder",[2,2,[[22,1,1,0,1,[[707,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]]],[18202,19036]]]]},{"k":"H8540","v":[["wonders",[3,3,[[26,3,3,0,3,[[853,2,2,0,2],[855,1,1,2,3]]]],[21839,21840,21932]]]]},{"k":"H8541","v":[["astonishment",[2,2,[[4,1,1,0,1,[[180,1,1,0,1]]],[37,1,1,1,2,[[922,1,1,1,2]]]],[5639,23049]]]]},{"k":"H8542","v":[["Tammuz",[1,1,[[25,1,1,0,1,[[809,1,1,0,1]]]],[20618]]]]},{"k":"H8543","v":[["*",[22,21,[[0,2,2,0,2,[[30,2,2,0,2]]],[1,7,6,2,8,[[53,1,1,2,3],[54,4,3,3,6],[70,2,2,6,8]]],[4,2,2,8,10,[[156,1,1,8,9],[171,1,1,9,10]]],[5,3,3,10,13,[[189,1,1,10,11],[190,1,1,11,12],[206,1,1,12,13]]],[7,1,1,13,14,[[233,1,1,13,14]]],[8,2,2,14,16,[[255,1,1,14,15],[256,1,1,15,16]]],[9,2,2,16,18,[[269,1,1,16,17],[281,1,1,17,18]]],[11,1,1,18,19,[[325,1,1,18,19]]],[12,1,1,19,20,[[348,1,1,19,20]]],[17,1,1,20,21,[[443,1,1,20,21]]]],[875,878,1611,1639,1640,1646,2106,2113,5046,5412,5897,5928,6377,7160,7757,7777,8098,8409,9876,10675,13038]]],["+",[16,16,[[0,2,2,0,2,[[30,2,2,0,2]]],[1,6,6,2,8,[[53,1,1,2,3],[54,3,3,3,6],[70,2,2,6,8]]],[4,2,2,8,10,[[156,1,1,8,9],[171,1,1,9,10]]],[5,2,2,10,12,[[189,1,1,10,11],[206,1,1,11,12]]],[7,1,1,12,13,[[233,1,1,12,13]]],[9,1,1,13,14,[[269,1,1,13,14]]],[11,1,1,14,15,[[325,1,1,14,15]]],[12,1,1,15,16,[[348,1,1,15,16]]]],[875,878,1611,1639,1640,1646,2106,2113,5046,5412,5897,6377,7160,8098,9876,10675]]],["as",[1,1,[[5,1,1,0,1,[[190,1,1,0,1]]]],[5928]]],["days",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7777]]],["yesterday",[4,4,[[1,1,1,0,1,[[54,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[9,1,1,2,3,[[281,1,1,2,3]]],[17,1,1,3,4,[[443,1,1,3,4]]]],[1646,7757,8409,13038]]]]},{"k":"H8544","v":[["*",[10,10,[[1,1,1,0,1,[[69,1,1,0,1]]],[3,1,1,1,2,[[128,1,1,1,2]]],[4,6,6,2,8,[[156,5,5,2,7],[157,1,1,7,8]]],[17,1,1,8,9,[[439,1,1,8,9]]],[18,1,1,9,10,[[494,1,1,9,10]]]],[2055,4067,5016,5019,5020,5027,5029,5061,12946,14118]]],["image",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12946]]],["likeness",[5,5,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,3,3,1,4,[[156,2,2,1,3],[157,1,1,3,4]]],[18,1,1,4,5,[[494,1,1,4,5]]]],[2055,5027,5029,5061,14118]]],["similitude",[4,4,[[3,1,1,0,1,[[128,1,1,0,1]]],[4,3,3,1,4,[[156,3,3,1,4]]]],[4067,5016,5019,5020]]]]},{"k":"H8545","v":[["*",[6,6,[[2,2,2,0,2,[[116,2,2,0,2]]],[7,1,1,2,3,[[235,1,1,2,3]]],[17,3,3,3,6,[[450,1,1,3,4],[455,1,1,4,5],[463,1,1,5,6]]]],[3580,3603,7197,13234,13344,13521]]],["change",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3603]]],["changing",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7197]]],["exchange",[2,2,[[2,1,1,0,1,[[116,1,1,0,1]]],[17,1,1,1,2,[[463,1,1,1,2]]]],[3580,13521]]],["recompence",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13234]]],["restitution",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13344]]]]},{"k":"H8546","v":[["*",[2,2,[[18,2,2,0,2,[[556,1,1,0,1],[579,1,1,1,2]]]],[15196,15541]]],["death",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15541]]],["die",[1,1,[[18,1,1,0,1,[[556,1,1,0,1]]]],[15196]]]]},{"k":"H8547","v":[["*",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12080,12475]]],["Tamah",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12475]]],["Thamah",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12080]]]]},{"k":"H8548","v":[["*",[104,103,[[1,8,8,0,8,[[74,1,1,0,1],[76,1,1,1,2],[77,3,3,2,5],[78,2,2,5,7],[79,1,1,7,8]]],[2,6,6,8,14,[[95,2,2,8,10],[113,4,4,10,14]]],[3,20,20,14,34,[[120,2,2,14,16],[125,1,1,16,17],[144,7,7,17,24],[145,10,10,24,34]]],[4,1,1,34,35,[[163,1,1,34,35]]],[9,3,3,35,38,[[275,3,3,35,38]]],[10,1,1,38,39,[[300,1,1,38,39]]],[11,3,3,39,42,[[316,1,1,39,40],[337,2,2,40,42]]],[12,5,5,42,47,[[353,4,4,42,46],[360,1,1,46,47]]],[13,3,3,47,50,[[368,1,1,47,48],[375,1,1,48,49],[390,1,1,49,50]]],[14,1,1,50,51,[[405,1,1,50,51]]],[15,2,1,51,52,[[422,2,1,51,52]]],[18,23,23,52,75,[[493,1,1,52,53],[502,1,1,53,54],[511,1,1,54,55],[512,1,1,55,56],[515,1,1,56,57],[517,2,2,57,59],[527,1,1,59,60],[528,1,1,60,61],[546,1,1,61,62],[547,1,1,62,63],[548,3,3,63,66],[549,1,1,66,67],[550,1,1,67,68],[551,1,1,68,69],[582,1,1,69,70],[586,2,2,70,72],[596,3,3,72,75]]],[19,4,4,75,79,[[632,1,1,75,76],[633,1,1,76,77],[642,1,1,77,78],[655,1,1,78,79]]],[22,8,8,79,87,[[699,1,1,79,80],[727,1,1,80,81],[729,1,1,81,82],[730,1,1,82,83],[736,1,1,83,84],[738,1,1,84,85],[740,1,1,85,86],[743,1,1,86,87]]],[23,3,3,87,90,[[750,1,1,87,88],[796,2,2,88,90]]],[25,4,4,90,94,[[839,1,1,90,91],[840,1,1,91,92],[847,2,2,92,94]]],[26,5,5,94,99,[[857,3,3,94,97],[860,1,1,97,98],[861,1,1,98,99]]],[27,1,1,99,100,[[873,1,1,99,100]]],[30,1,1,100,101,[[888,1,1,100,101]]],[33,1,1,101,102,[[902,1,1,101,102]]],[34,1,1,102,103,[[903,1,1,102,103]]]],[2225,2292,2322,2323,2331,2374,2378,2390,2862,2869,3448,3449,3450,3454,3750,3759,3981,4580,4583,4587,4592,4600,4601,4608,4614,4619,4624,4627,4630,4633,4636,4639,4642,4646,5220,8234,8237,8240,9087,9612,10251,10252,10826,10831,10857,10860,11014,11215,11371,11691,12102,12582,14100,14266,14389,14437,14507,14536,14541,14676,14694,14958,14975,14979,14982,14990,15015,15043,15071,15610,15770,15774,15942,16007,16015,16536,16561,16822,17210,18043,18652,18686,18701,18797,18832,18860,18900,19096,20309,20310,21433,21462,21669,21670,21972,21973,21974,22067,22092,22258,22526,22731,22748]]],["+",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18860]]],["alway",[4,4,[[1,1,1,0,1,[[74,1,1,0,1]]],[3,1,1,1,2,[[125,1,1,1,2]]],[9,1,1,2,3,[[275,1,1,2,3]]],[19,1,1,3,4,[[655,1,1,3,4]]]],[2225,3981,8237,17210]]],["always",[6,6,[[1,2,2,0,2,[[76,1,1,0,1],[77,1,1,1,2]]],[4,1,1,2,3,[[163,1,1,2,3]]],[18,1,1,3,4,[[493,1,1,3,4]]],[19,1,1,4,5,[[632,1,1,4,5]]],[25,1,1,5,6,[[839,1,1,5,6]]]],[2292,2331,5220,14100,16536,21433]]],["continual",[26,25,[[1,1,1,0,1,[[78,1,1,0,1]]],[3,17,17,1,18,[[120,1,1,1,2],[144,7,7,2,9],[145,9,9,9,18]]],[11,1,1,18,19,[[337,1,1,18,19]]],[13,1,1,19,20,[[368,1,1,19,20]]],[14,1,1,20,21,[[405,1,1,20,21]]],[15,2,1,21,22,[[422,2,1,21,22]]],[19,1,1,22,23,[[642,1,1,22,23]]],[23,1,1,23,24,[[796,1,1,23,24]]],[25,1,1,24,25,[[847,1,1,24,25]]]],[2378,3750,4580,4583,4587,4592,4600,4601,4608,4619,4624,4627,4630,4633,4636,4639,4642,4646,10252,11215,12102,12582,16822,20310,21670]]],["continually",[53,53,[[1,3,3,0,3,[[77,2,2,0,2],[78,1,1,2,3]]],[2,4,4,3,7,[[113,4,4,3,7]]],[9,2,2,7,9,[[275,2,2,7,9]]],[10,1,1,9,10,[[300,1,1,9,10]]],[11,2,2,10,12,[[316,1,1,10,11],[337,1,1,11,12]]],[12,5,5,12,17,[[353,4,4,12,16],[360,1,1,16,17]]],[13,2,2,17,19,[[375,1,1,17,18],[390,1,1,18,19]]],[18,19,19,19,38,[[511,1,1,19,20],[512,1,1,20,21],[515,1,1,21,22],[517,2,2,22,24],[527,1,1,24,25],[546,1,1,25,26],[547,1,1,26,27],[548,3,3,27,30],[549,1,1,30,31],[550,1,1,31,32],[551,1,1,32,33],[586,2,2,33,35],[596,3,3,35,38]]],[19,1,1,38,39,[[633,1,1,38,39]]],[22,7,7,39,46,[[699,1,1,39,40],[727,1,1,40,41],[729,1,1,41,42],[730,1,1,42,43],[736,1,1,43,44],[738,1,1,44,45],[743,1,1,45,46]]],[23,2,2,46,48,[[750,1,1,46,47],[796,1,1,47,48]]],[25,1,1,48,49,[[847,1,1,48,49]]],[27,1,1,49,50,[[873,1,1,49,50]]],[30,1,1,50,51,[[888,1,1,50,51]]],[33,1,1,51,52,[[902,1,1,51,52]]],[34,1,1,52,53,[[903,1,1,52,53]]]],[2322,2323,2374,3448,3449,3450,3454,8234,8240,9087,9612,10251,10826,10831,10857,10860,11014,11371,11691,14389,14437,14507,14536,14541,14676,14958,14975,14979,14982,14990,15015,15043,15071,15770,15774,15942,16007,16015,16561,18043,18652,18686,18701,18797,18832,18900,19096,20309,21669,22258,22526,22731,22748]]],["daily",[7,7,[[3,2,2,0,2,[[120,1,1,0,1],[145,1,1,1,2]]],[26,5,5,2,7,[[857,3,3,2,5],[860,1,1,5,6],[861,1,1,6,7]]]],[3759,4614,21972,21973,21974,22067,22092]]],["employment",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21462]]],["ever",[3,3,[[2,1,1,0,1,[[95,1,1,0,1]]],[18,2,2,1,3,[[502,1,1,1,2],[528,1,1,2,3]]]],[2862,14266,14694]]],["evermore",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15610]]],["perpetual",[2,2,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,1,1,1,2,[[95,1,1,1,2]]]],[2390,2869]]]]},{"k":"H8549","v":[["*",[91,85,[[0,2,2,0,2,[[5,1,1,0,1],[16,1,1,1,2]]],[1,2,2,2,4,[[61,1,1,2,3],[78,1,1,3,4]]],[2,22,21,4,25,[[90,2,2,4,6],[92,3,3,6,9],[93,4,4,9,13],[94,2,2,13,15],[95,1,1,15,16],[98,2,2,16,18],[103,2,1,18,19],[111,2,2,19,21],[112,3,3,21,24],[114,1,1,24,25]]],[3,19,17,25,42,[[122,3,1,25,26],[135,1,1,26,27],[144,5,5,27,32],[145,10,10,32,42]]],[4,2,2,42,44,[[170,1,1,42,43],[184,1,1,43,44]]],[5,2,2,44,46,[[196,1,1,44,45],[210,1,1,45,46]]],[6,2,2,46,48,[[219,2,2,46,48]]],[8,1,1,48,49,[[249,1,1,48,49]]],[9,4,4,49,53,[[288,4,4,49,53]]],[17,3,3,53,56,[[447,1,1,53,54],[471,1,1,54,55],[472,1,1,55,56]]],[18,12,12,56,68,[[492,1,1,56,57],[495,4,4,57,61],[496,1,1,61,62],[514,1,1,62,63],[561,1,1,63,64],[578,2,2,64,66],[596,2,2,66,68]]],[19,6,6,68,74,[[628,1,1,68,69],[629,1,1,69,70],[638,2,2,70,72],[655,2,2,72,74]]],[25,13,10,74,84,[[816,1,1,74,75],[829,1,1,75,76],[844,4,3,76,79],[846,2,2,79,81],[847,5,3,81,84]]],[29,1,1,84,85,[[883,1,1,84,85]]]],[146,398,1821,2337,2748,2755,2779,2784,2787,2798,2818,2823,2827,2845,2848,2855,2955,2956,3121,3388,3390,3414,3417,3420,3499,3837,4291,4580,4586,4588,4596,4608,4610,4616,4621,4625,4628,4631,4634,4637,4640,4644,5397,5762,6077,6490,6770,6773,7549,8626,8628,8633,8635,13132,13740,13785,14089,14141,14143,14148,14150,14175,14468,15270,15515,15519,15899,15978,16412,16454,16693,16708,17206,17214,20759,21172,21594,21595,21597,21648,21653,21659,21661,21668,22433]]],["blemish",[44,38,[[1,2,2,0,2,[[61,1,1,0,1],[78,1,1,1,2]]],[2,18,17,2,19,[[90,2,2,2,4],[92,2,2,4,6],[93,4,4,6,10],[94,2,2,10,12],[95,1,1,12,13],[98,2,2,13,15],[103,2,1,15,16],[111,1,1,16,17],[112,2,2,17,19]]],[3,13,11,19,30,[[122,3,1,19,20],[144,2,2,20,22],[145,8,8,22,30]]],[25,11,8,30,38,[[844,4,3,30,33],[846,2,2,33,35],[847,5,3,35,38]]]],[1821,2337,2748,2755,2779,2784,2798,2818,2823,2827,2845,2848,2855,2955,2956,3121,3388,3414,3420,3837,4596,4608,4610,4616,4621,4628,4631,4637,4640,4644,21594,21595,21597,21648,21653,21659,21661,21668]]],["complete",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3417]]],["full",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3499]]],["perfect",[18,18,[[0,2,2,0,2,[[5,1,1,0,1],[16,1,1,1,2]]],[2,1,1,2,3,[[111,1,1,2,3]]],[4,2,2,3,5,[[170,1,1,3,4],[184,1,1,4,5]]],[8,1,1,5,6,[[249,1,1,5,6]]],[9,2,2,6,8,[[288,2,2,6,8]]],[17,2,2,8,10,[[471,1,1,8,9],[472,1,1,9,10]]],[18,5,5,10,15,[[495,2,2,10,12],[496,1,1,12,13],[578,2,2,13,15]]],[19,2,2,15,17,[[629,1,1,15,16],[638,1,1,16,17]]],[25,1,1,17,18,[[829,1,1,17,18]]]],[146,398,3390,5397,5762,7549,8633,8635,13740,13785,14148,14150,14175,15515,15519,16454,16693,21172]]],["sincerely",[2,2,[[6,2,2,0,2,[[219,2,2,0,2]]]],[6770,6773]]],["sincerity",[1,1,[[5,1,1,0,1,[[210,1,1,0,1]]]],[6490]]],["sound",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15978]]],["spot",[6,6,[[3,6,6,0,6,[[135,1,1,0,1],[144,3,3,1,4],[145,2,2,4,6]]]],[4291,4580,4586,4588,4625,4634]]],["undefiled",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15899]]],["upright",[8,8,[[9,2,2,0,2,[[288,2,2,0,2]]],[17,1,1,2,3,[[447,1,1,2,3]]],[18,3,3,3,6,[[495,2,2,3,5],[514,1,1,5,6]]],[19,2,2,6,8,[[638,1,1,6,7],[655,1,1,7,8]]]],[8626,8628,13132,14141,14143,14468,16708,17206]]],["uprightly",[4,4,[[18,2,2,0,2,[[492,1,1,0,1],[561,1,1,1,2]]],[19,1,1,2,3,[[655,1,1,2,3]]],[29,1,1,3,4,[[883,1,1,3,4]]]],[14089,15270,17214,22433]]],["whole",[4,4,[[2,1,1,0,1,[[92,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[19,1,1,2,3,[[628,1,1,2,3]]],[25,1,1,3,4,[[816,1,1,3,4]]]],[2787,6077,16412,20759]]]]},{"k":"H8550","v":[["Thummim",[5,5,[[1,1,1,0,1,[[77,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[14,1,1,3,4,[[404,1,1,3,4]]],[15,1,1,4,5,[[419,1,1,4,5]]]],[2323,2925,5818,12090,12485]]]]},{"k":"H8551","v":[["*",[21,20,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,1,1,1,2,[[66,1,1,1,2]]],[17,1,1,2,3,[[471,1,1,2,3]]],[18,4,4,3,7,[[493,1,1,3,4],[494,1,1,4,5],[518,1,1,5,6],[540,1,1,6,7]]],[19,9,8,7,15,[[630,1,1,7,8],[631,1,1,8,9],[632,2,2,9,11],[638,2,1,11,12],[655,1,1,12,13],[656,1,1,13,14],[658,1,1,14,15]]],[22,3,3,15,18,[[711,1,1,15,16],[719,1,1,16,17],[720,1,1,17,18]]],[29,2,2,18,20,[[879,2,2,18,20]]]],[1468,1995,13753,14097,14108,14554,14847,16473,16494,16522,16539,16704,17213,17247,17303,18294,18461,18481,22369,22372]]],["+",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18294]]],["hold",[3,3,[[17,1,1,0,1,[[471,1,1,0,1]]],[19,2,2,1,3,[[632,1,1,1,2],[658,1,1,2,3]]]],[13753,16522,17303]]],["holden",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16539]]],["holdeth",[2,2,[[29,2,2,0,2,[[879,2,2,0,2]]]],[22369,22372]]],["maintainest",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14097]]],["retain",[2,2,[[19,2,2,0,2,[[631,1,1,0,1],[638,1,1,1,2]]]],[16494,16704]]],["retaineth",[2,2,[[19,2,2,0,2,[[630,1,1,0,1],[638,1,1,1,2]]]],[16473,16704]]],["stay",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17213]]],["up",[3,3,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,1,1,1,2,[[66,1,1,1,2]]],[18,1,1,2,3,[[494,1,1,2,3]]]],[1468,1995,14108]]],["uphold",[3,3,[[19,1,1,0,1,[[656,1,1,0,1]]],[22,2,2,1,3,[[719,1,1,1,2],[720,1,1,2,3]]]],[17247,18461,18481]]],["upholdest",[1,1,[[18,1,1,0,1,[[518,1,1,0,1]]]],[14554]]],["upholdeth",[1,1,[[18,1,1,0,1,[[540,1,1,0,1]]]],[14847]]]]},{"k":"H8552","v":[["*",[63,61,[[0,3,2,0,2,[[46,3,2,0,2]]],[2,2,2,2,4,[[114,1,1,2,3],[115,1,1,3,4]]],[3,4,4,4,8,[[130,2,2,4,6],[133,1,1,6,7],[148,1,1,7,8]]],[4,6,6,8,14,[[154,3,3,8,11],[183,2,2,11,13],[186,1,1,13,14]]],[5,9,9,14,23,[[189,2,2,14,16],[190,3,3,16,19],[191,2,2,19,21],[194,1,1,21,22],[196,1,1,22,23]]],[8,1,1,23,24,[[251,1,1,23,24]]],[9,3,3,24,27,[[281,1,1,24,25],[286,1,1,25,26],[288,1,1,26,27]]],[10,3,3,27,30,[[296,1,1,27,28],[297,1,1,28,29],[304,1,1,29,30]]],[11,2,2,30,32,[[319,1,1,30,31],[334,1,1,31,32]]],[17,2,2,32,34,[[457,1,1,32,33],[466,1,1,33,34]]],[18,7,7,34,41,[[486,1,1,34,35],[495,1,1,35,36],[496,1,1,36,37],[541,1,1,37,38],[550,1,1,38,39],[579,1,1,39,40],[581,1,1,40,41]]],[22,3,3,41,44,[[694,1,1,41,42],[696,1,1,42,43],[711,1,1,43,44]]],[23,11,10,44,54,[[745,1,1,44,45],[750,1,1,45,46],[758,1,1,46,47],[768,1,1,47,48],[771,1,1,48,49],[780,1,1,49,50],[781,1,1,50,51],[788,4,3,51,54]]],[24,2,2,54,56,[[799,1,1,54,55],[800,1,1,55,56]]],[25,4,4,56,60,[[823,1,1,56,57],[825,2,2,57,59],[848,1,1,59,60]]],[26,1,1,60,61,[[857,1,1,60,61]]]],[1435,1438,3498,3544,4141,4143,4257,4731,4952,4953,4954,5752,5758,5847,5909,5910,5911,5920,5921,5940,5942,6026,6084,7606,8413,8572,8628,8918,8956,9228,9720,10149,13392,13628,14027,14143,14181,14856,15039,15548,15606,17973,18002,18280,18949,19118,19308,19534,19604,19865,19895,20022,20028,20037,20376,20442,20991,21066,21067,21691,21984]]],["+",[4,4,[[11,1,1,0,1,[[334,1,1,0,1]]],[17,1,1,1,2,[[457,1,1,1,2]]],[18,2,2,2,4,[[486,1,1,2,3],[550,1,1,3,4]]]],[10149,13392,14027,15039]]],["accomplish",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14856]]],["accomplished",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20442]]],["all",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7606]]],["cease",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18280]]],["clean",[3,3,[[5,3,3,0,3,[[189,1,1,0,1],[190,2,2,1,3]]]],[5910,5911,5921]]],["consume",[2,2,[[25,2,2,0,2,[[823,1,1,0,1],[825,1,1,1,2]]]],[20991,21066]]],["consumed",[23,22,[[3,3,3,0,3,[[130,1,1,0,1],[133,1,1,1,2],[148,1,1,2,3]]],[4,2,2,3,5,[[154,2,2,3,5]]],[5,3,3,5,8,[[191,1,1,5,6],[194,1,1,6,7],[196,1,1,7,8]]],[11,1,1,8,9,[[319,1,1,8,9]]],[18,1,1,9,10,[[581,1,1,9,10]]],[22,1,1,10,11,[[694,1,1,10,11]]],[23,9,8,11,19,[[750,1,1,11,12],[758,1,1,12,13],[768,1,1,13,14],[771,1,1,14,15],[780,1,1,15,16],[788,4,3,16,19]]],[24,1,1,19,20,[[799,1,1,19,20]]],[25,2,2,20,22,[[825,1,1,20,21],[848,1,1,21,22]]]],[4143,4257,4731,4953,4954,5940,6026,6084,9720,15606,17973,19118,19308,19534,19604,19865,20022,20028,20037,20376,21067,21691]]],["done",[2,2,[[5,1,1,0,1,[[191,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]]],[5942,8413]]],["end",[2,2,[[18,1,1,0,1,[[579,1,1,0,1]]],[23,1,1,1,2,[[745,1,1,1,2]]]],[15548,18949]]],["ended",[5,5,[[0,1,1,0,1,[[46,1,1,0,1]]],[4,2,2,1,3,[[183,1,1,1,2],[186,1,1,2,3]]],[9,1,1,3,4,[[286,1,1,3,4]]],[17,1,1,4,5,[[466,1,1,4,5]]]],[1438,5758,5847,8572,13628]]],["failed",[2,2,[[0,1,1,0,1,[[46,1,1,0,1]]],[5,1,1,1,2,[[189,1,1,1,2]]]],[1435,5909]]],["finished",[4,4,[[4,1,1,0,1,[[183,1,1,0,1]]],[5,1,1,1,2,[[190,1,1,1,2]]],[10,2,2,2,4,[[296,1,1,2,3],[297,1,1,3,4]]]],[5752,5920,8918,8956]]],["full",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21984]]],["gone",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9228]]],["perfect",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18002]]],["spent",[3,3,[[0,1,1,0,1,[[46,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[23,1,1,2,3,[[781,1,1,2,3]]]],[1438,3544,19895]]],["upright",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,2,2,1,3,[[495,1,1,1,2],[496,1,1,2,3]]]],[8628,14143,14181]]],["wasted",[2,2,[[3,1,1,0,1,[[130,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]]],[4141,4952]]],["whole",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3498]]]]},{"k":"H8553","v":[["*",[12,10,[[0,3,3,0,3,[[37,3,3,0,3]]],[5,3,3,3,6,[[201,2,2,3,5],[205,1,1,5,6]]],[6,5,3,6,9,[[224,5,3,6,9]]],[13,1,1,9,10,[[394,1,1,9,10]]]],[1131,1132,1133,6212,6259,6364,6910,6911,6914,11782]]],["Thimnathah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6364]]],["Timnah",[3,3,[[5,2,2,0,2,[[201,2,2,0,2]]],[13,1,1,2,3,[[394,1,1,2,3]]]],[6212,6259,11782]]],["Timnath",[8,6,[[0,3,3,0,3,[[37,3,3,0,3]]],[6,5,3,3,6,[[224,5,3,3,6]]]],[1131,1132,1133,6910,6911,6914]]]]},{"k":"H8554","v":[["Timnite",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6935]]]]},{"k":"H8555","v":[["*",[6,6,[[0,3,3,0,3,[[35,3,3,0,3]]],[12,3,3,3,6,[[338,3,3,3,6]]]],[1052,1062,1080,10288,10291,10303]]],["Timna",[4,4,[[0,2,2,0,2,[[35,2,2,0,2]]],[12,2,2,2,4,[[338,2,2,2,4]]]],[1052,1062,10288,10291]]],["Timnah",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1080,10303]]]]},{"k":"H8556","v":[["*",[3,3,[[5,2,2,0,2,[[205,1,1,0,1],[210,1,1,1,2]]],[6,1,1,2,3,[[212,1,1,2,3]]]],[6371,6506,6554]]],["Timnathheres",[1,1,[[6,1,1,0,1,[[212,1,1,0,1]]]],[6554]]],["Timnathserah",[2,2,[[5,2,2,0,2,[[205,1,1,0,1],[210,1,1,1,2]]]],[6371,6506]]]]},{"k":"H8557","v":[["melteth",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14787]]]]},{"k":"H8558","v":[["*",[11,11,[[1,1,1,0,1,[[64,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[3,1,1,2,3,[[149,1,1,2,3]]],[4,1,1,3,4,[[186,1,1,3,4]]],[6,2,2,4,6,[[211,1,1,4,5],[213,1,1,5,6]]],[15,1,1,6,7,[[420,1,1,6,7]]],[18,1,1,7,8,[[569,1,1,7,8]]],[21,2,2,8,10,[[677,2,2,8,10]]],[28,1,1,10,11,[[876,1,1,10,11]]]],[1947,3442,4769,5842,6525,6581,12508,15423,17634,17635,22303]]],["palm",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12508]]],["tree",[4,4,[[18,1,1,0,1,[[569,1,1,0,1]]],[21,2,2,1,3,[[677,2,2,1,3]]],[28,1,1,3,4,[[876,1,1,3,4]]]],[15423,17634,17635,22303]]],["trees",[6,6,[[1,1,1,0,1,[[64,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[3,1,1,2,3,[[149,1,1,2,3]]],[4,1,1,3,4,[[186,1,1,3,4]]],[6,2,2,4,6,[[211,1,1,4,5],[213,1,1,5,6]]]],[1947,3442,4769,5842,6525,6581]]]]},{"k":"H8559","v":[["*",[24,22,[[0,5,4,0,4,[[37,5,4,0,4]]],[7,1,1,4,5,[[235,1,1,4,5]]],[9,14,13,5,18,[[279,13,12,5,17],[280,1,1,17,18]]],[12,2,2,18,20,[[339,1,1,18,19],[340,1,1,19,20]]],[25,2,2,20,22,[[848,1,1,20,21],[849,1,1,21,22]]]],[1125,1130,1132,1143,7202,8318,8319,8321,8322,8323,8324,8325,8327,8336,8337,8339,8349,8383,10310,10370,21698,21730]]],["+",[2,2,[[25,2,2,0,2,[[848,1,1,0,1],[849,1,1,1,2]]]],[21698,21730]]],["Tamar",[22,20,[[0,5,4,0,4,[[37,5,4,0,4]]],[7,1,1,4,5,[[235,1,1,4,5]]],[9,14,13,5,18,[[279,13,12,5,17],[280,1,1,17,18]]],[12,2,2,18,20,[[339,1,1,18,19],[340,1,1,19,20]]]],[1125,1130,1132,1143,7202,8318,8319,8321,8322,8323,8324,8325,8327,8336,8337,8339,8349,8383,10310,10370]]]]},{"k":"H8560","v":[["tree",[2,2,[[6,1,1,0,1,[[214,1,1,0,1]]],[23,1,1,1,2,[[754,1,1,1,2]]]],[6604,19206]]]]},{"k":"H8561","v":[["*",[19,16,[[10,5,4,0,4,[[296,4,3,0,3],[297,1,1,3,4]]],[13,1,1,4,5,[[369,1,1,4,5]]],[25,13,11,5,16,[[841,6,6,5,11],[842,7,5,11,16]]]],[8925,8928,8931,8970,11234,21493,21499,21503,21508,21511,21514,21544,21545,21546,21551,21552]]],["tree",[3,2,[[25,3,2,0,2,[[842,3,2,0,2]]]],[21544,21545]]],["trees",[16,15,[[10,5,4,0,4,[[296,4,3,0,3],[297,1,1,3,4]]],[13,1,1,4,5,[[369,1,1,4,5]]],[25,10,10,5,15,[[841,6,6,5,11],[842,4,4,11,15]]]],[8925,8928,8931,8970,11234,21493,21499,21503,21508,21511,21514,21544,21546,21551,21552]]]]},{"k":"H8562","v":[["*",[4,4,[[16,3,3,0,3,[[427,3,3,0,3]]],[19,1,1,3,4,[[647,1,1,3,4]]]],[12727,12733,12736,16984]]],["away",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16984]]],["purification",[2,2,[[16,2,2,0,2,[[427,2,2,0,2]]]],[12727,12733]]],["purifying",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12736]]]]},{"k":"H8563","v":[["*",[3,3,[[23,2,2,0,2,[[750,1,1,0,1],[775,1,1,1,2]]],[27,1,1,2,3,[[873,1,1,2,3]]]],[19115,19706,22266]]],["bitter",[2,2,[[23,2,2,0,2,[[750,1,1,0,1],[775,1,1,1,2]]]],[19115,19706]]],["bitterly",[1,1,[[27,1,1,0,1,[[873,1,1,0,1]]]],[22266]]]]},{"k":"H8564","v":[["heaps",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19712]]]]},{"k":"H8565","v":[["*",[4,4,[[22,3,3,0,3,[[712,1,1,0,1],[713,1,1,1,2],[721,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]]],[18316,18327,18525,20423]]],["dragons",[3,3,[[22,3,3,0,3,[[712,1,1,0,1],[713,1,1,1,2],[721,1,1,2,3]]]],[18316,18327,18525]]],["monsters",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20423]]]]},{"k":"H8566","v":[["hired",[2,2,[[27,2,2,0,2,[[869,2,2,0,2]]]],[22203,22204]]]]},{"k":"H8567","v":[["*",[2,2,[[6,2,2,0,2,[[215,1,1,0,1],[221,1,1,1,2]]]],[6634,6869]]],["lament",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6869]]],["rehearse",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6634]]]]},{"k":"H8568","v":[["dragons",[2,2,[[32,1,1,0,1,[[893,1,1,0,1]]],[38,1,1,1,2,[[925,1,1,1,2]]]],[22587,23092]]]]},{"k":"H8569","v":[["*",[2,2,[[3,1,1,0,1,[[130,1,1,0,1]]],[17,1,1,1,2,[[468,1,1,1,2]]]],[4142,13660]]],["occasions",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13660]]],["promise",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4142]]]]},{"k":"H8570","v":[["*",[5,5,[[4,1,1,0,1,[[184,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[22,1,1,2,3,[[705,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]],[25,1,1,4,5,[[837,1,1,4,5]]]],[5771,6765,18157,20429,21389]]],["+",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20429]]],["fruit",[2,2,[[6,1,1,0,1,[[219,1,1,0,1]]],[22,1,1,1,2,[[705,1,1,1,2]]]],[6765,18157]]],["increase",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[25,1,1,1,2,[[837,1,1,1,2]]]],[5771,21389]]]]},{"k":"H8571","v":[["tip",[8,7,[[1,2,1,0,1,[[78,2,1,0,1]]],[2,6,6,1,7,[[97,2,2,1,3],[103,4,4,3,7]]]],[2356,2940,2941,3125,3128,3136,3139]]]]},{"k":"H8572","v":[["*",[5,5,[[17,1,1,0,1,[[468,1,1,0,1]]],[18,1,1,1,2,[[609,1,1,1,2]]],[19,3,3,2,5,[[633,2,2,2,4],[651,1,1,4,5]]]],[13665,16155,16544,16550,17112]]],["slumber",[4,4,[[18,1,1,0,1,[[609,1,1,0,1]]],[19,3,3,1,4,[[633,2,2,1,3],[651,1,1,3,4]]]],[16155,16544,16550,17112]]],["slumberings",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13665]]]]},{"k":"H8573","v":[["*",[30,28,[[1,6,6,0,6,[[78,3,3,0,3],[84,1,1,3,4],[87,2,2,4,6]]],[2,14,13,6,19,[[96,2,2,6,8],[97,2,2,8,10],[98,1,1,10,11],[99,3,2,11,13],[103,3,3,13,16],[112,3,3,16,19]]],[3,8,7,19,26,[[122,2,1,19,20],[124,4,4,20,24],[134,2,2,24,26]]],[22,2,2,26,28,[[697,1,1,26,27],[708,1,1,27,28]]]],[2360,2362,2363,2553,2657,2662,2909,2913,2944,2946,2974,2991,2992,3123,3132,3135,3417,3419,3422,3843,3950,3952,3954,3960,4268,4275,18020,18249]]],["offering",[20,20,[[1,6,6,0,6,[[78,3,3,0,3],[84,1,1,3,4],[87,2,2,4,6]]],[2,9,9,6,15,[[96,1,1,6,7],[97,2,2,7,9],[98,1,1,9,10],[99,1,1,10,11],[103,2,2,11,13],[112,2,2,13,15]]],[3,5,5,15,20,[[122,1,1,15,16],[124,4,4,16,20]]]],[2360,2362,2363,2553,2657,2662,2909,2944,2946,2974,2992,3123,3135,3417,3422,3843,3950,3952,3954,3960]]],["offerings",[1,1,[[3,1,1,0,1,[[134,1,1,0,1]]]],[4268]]],["shaking",[2,2,[[22,2,2,0,2,[[697,1,1,0,1],[708,1,1,1,2]]]],[18020,18249]]],["wave",[6,6,[[2,4,4,0,4,[[96,1,1,0,1],[99,2,2,1,3],[112,1,1,3,4]]],[3,2,2,4,6,[[122,1,1,4,5],[134,1,1,5,6]]]],[2913,2991,2992,3419,3843,4275]]],["waved",[1,1,[[2,1,1,0,1,[[103,1,1,0,1]]]],[3132]]]]},{"k":"H8574","v":[["*",[15,15,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,1,1,1,2,[[57,1,1,1,2]]],[2,4,4,2,6,[[91,1,1,2,3],[96,1,1,3,4],[100,1,1,4,5],[115,1,1,5,6]]],[15,2,2,6,8,[[415,1,1,6,7],[424,1,1,7,8]]],[18,1,1,8,9,[[498,1,1,8,9]]],[22,1,1,9,10,[[709,1,1,9,10]]],[24,1,1,10,11,[[801,1,1,10,11]]],[27,3,3,11,14,[[868,3,3,11,14]]],[38,1,1,14,15,[[928,1,1,14,15]]]],[377,1713,2766,2888,3032,3550,12338,12662,14200,18259,20452,22182,22184,22185,23139]]],["furnace",[2,2,[[0,1,1,0,1,[[14,1,1,0,1]]],[22,1,1,1,2,[[709,1,1,1,2]]]],[377,18259]]],["furnaces",[2,2,[[15,2,2,0,2,[[415,1,1,0,1],[424,1,1,1,2]]]],[12338,12662]]],["oven",[10,10,[[2,4,4,0,4,[[91,1,1,0,1],[96,1,1,1,2],[100,1,1,2,3],[115,1,1,3,4]]],[18,1,1,4,5,[[498,1,1,4,5]]],[24,1,1,5,6,[[801,1,1,5,6]]],[27,3,3,6,9,[[868,3,3,6,9]]],[38,1,1,9,10,[[928,1,1,9,10]]]],[2766,2888,3032,3550,14200,20452,22182,22184,22185,23139]]],["ovens",[1,1,[[1,1,1,0,1,[[57,1,1,0,1]]]],[1713]]]]},{"k":"H8575","v":[["*",[5,5,[[17,2,2,0,2,[[450,1,1,0,1],[456,1,1,1,2]]],[18,1,1,2,3,[[571,1,1,2,3]]],[22,1,1,3,4,[[744,1,1,3,4]]],[23,1,1,4,5,[[760,1,1,4,5]]]],[13214,13357,15450,18933,19343]]],["comforts",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15450]]],["consolation",[1,1,[[23,1,1,0,1,[[760,1,1,0,1]]]],[19343]]],["consolations",[3,3,[[17,2,2,0,2,[[450,1,1,0,1],[456,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]]],[13214,13357,18933]]]]},{"k":"H8576","v":[["Tanhumeth",[2,2,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,1,1,1,2,[[784,1,1,1,2]]]],[10245,19949]]]]},{"k":"H8577","v":[["*",[23,23,[[0,1,1,0,1,[[0,1,1,0,1]]],[1,3,3,1,4,[[56,3,3,1,4]]],[4,1,1,4,5,[[184,1,1,4,5]]],[15,1,1,5,6,[[414,1,1,5,6]]],[17,2,2,6,8,[[442,1,1,6,7],[465,1,1,7,8]]],[18,4,4,8,12,[[521,1,1,8,9],[551,1,1,9,10],[568,1,1,10,11],[625,1,1,11,12]]],[22,3,3,12,15,[[691,1,1,12,13],[705,1,1,13,14],[729,1,1,14,15]]],[23,6,6,15,21,[[753,1,1,15,16],[754,1,1,16,17],[758,1,1,17,18],[793,1,1,18,19],[795,2,2,19,21]]],[25,2,2,21,23,[[830,1,1,21,22],[833,1,1,22,23]]]],[20,1694,1695,1697,5791,12320,13020,13586,14590,15061,15408,16378,17928,18152,18682,19186,19223,19299,20160,20246,20249,21186,21250]]],["dragon",[6,6,[[15,1,1,0,1,[[414,1,1,0,1]]],[18,1,1,1,2,[[568,1,1,1,2]]],[22,2,2,2,4,[[705,1,1,2,3],[729,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]],[25,1,1,5,6,[[830,1,1,5,6]]]],[12320,15408,18152,18682,20246,21186]]],["dragons",[11,11,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[465,1,1,1,2]]],[18,3,3,2,5,[[521,1,1,2,3],[551,1,1,3,4],[625,1,1,4,5]]],[22,1,1,5,6,[[691,1,1,5,6]]],[23,5,5,6,11,[[753,1,1,6,7],[754,1,1,7,8],[758,1,1,8,9],[793,1,1,9,10],[795,1,1,10,11]]]],[5791,13586,14590,15061,16378,17928,19186,19223,19299,20160,20249]]],["serpent",[2,2,[[1,2,2,0,2,[[56,2,2,0,2]]]],[1694,1695]]],["serpents",[1,1,[[1,1,1,0,1,[[56,1,1,0,1]]]],[1697]]],["whale",[2,2,[[17,1,1,0,1,[[442,1,1,0,1]]],[25,1,1,1,2,[[833,1,1,1,2]]]],[13020,21250]]],["whales",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[20]]]]},{"k":"H8578","v":[["second",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21938]]]]},{"k":"H8579","v":[["again",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21765]]]]},{"k":"H8580","v":[["*",[3,3,[[2,2,2,0,2,[[100,2,2,0,2]]],[4,1,1,2,3,[[166,1,1,2,3]]]],[3015,3027,5306]]],["mole",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3027]]],["swan",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3015,5306]]]]},{"k":"H8581","v":[["*",[22,20,[[4,4,2,0,2,[[159,2,1,0,1],[175,2,1,1,2]]],[10,1,1,2,3,[[311,1,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[17,4,4,4,8,[[444,1,1,4,5],[450,1,1,5,6],[454,1,1,6,7],[465,1,1,7,8]]],[18,6,6,8,14,[[482,1,1,8,9],[491,1,1,9,10],[530,1,1,10,11],[583,1,1,11,12],[584,1,1,12,13],[596,1,1,13,14]]],[22,2,2,14,16,[[692,1,1,14,15],[727,1,1,15,16]]],[25,2,2,16,18,[[817,2,2,16,18]]],[29,1,1,18,19,[[883,1,1,18,19]]],[32,1,1,19,20,[[895,1,1,19,20]]]],[5137,5507,9477,10940,13082,13219,13316,13567,13979,14081,14720,15691,15717,16061,17947,18643,20787,20814,22433,22617]]],["+",[3,2,[[4,2,1,0,1,[[159,2,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]]],[5137,15691]]],["abhor",[8,7,[[4,2,1,0,1,[[175,2,1,0,1]]],[17,2,2,1,3,[[444,1,1,1,2],[465,1,1,2,3]]],[18,2,2,3,5,[[482,1,1,3,4],[596,1,1,4,5]]],[29,1,1,5,6,[[883,1,1,5,6]]],[32,1,1,6,7,[[895,1,1,6,7]]]],[5507,13082,13567,13979,16061,22433,22617]]],["abhorred",[2,2,[[17,1,1,0,1,[[454,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[13316,20787]]],["abhorreth",[2,2,[[18,1,1,0,1,[[584,1,1,0,1]]],[22,1,1,1,2,[[727,1,1,1,2]]]],[15717,18643]]],["abominable",[6,6,[[12,1,1,0,1,[[358,1,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]],[18,2,2,2,4,[[491,1,1,2,3],[530,1,1,3,4]]],[22,1,1,4,5,[[692,1,1,4,5]]],[25,1,1,5,6,[[817,1,1,5,6]]]],[10940,13219,14081,14720,17947,20814]]],["abominably",[1,1,[[10,1,1,0,1,[[311,1,1,0,1]]]],[9477]]]]},{"k":"H8582","v":[["*",[50,45,[[0,3,3,0,3,[[19,1,1,0,1],[20,1,1,1,2],[36,1,1,2,3]]],[1,1,1,3,4,[[72,1,1,3,4]]],[11,1,1,4,5,[[333,1,1,4,5]]],[13,1,1,5,6,[[399,1,1,5,6]]],[17,4,4,6,10,[[447,2,2,6,8],[450,1,1,8,9],[473,1,1,9,10]]],[18,6,6,10,16,[[535,1,1,10,11],[572,1,1,11,12],[584,2,2,12,14],[596,2,2,14,16]]],[19,5,5,16,21,[[634,1,1,16,17],[637,1,1,17,18],[639,1,1,18,19],[641,1,1,19,20],[648,1,1,20,21]]],[22,15,13,21,34,[[681,1,1,21,22],[687,1,1,22,23],[694,1,1,23,24],[697,3,2,24,26],[699,1,1,26,27],[706,2,1,27,28],[707,1,1,28,29],[708,1,1,29,30],[713,1,1,30,31],[725,1,1,31,32],[731,1,1,32,33],[741,1,1,33,34]]],[23,4,4,34,38,[[767,2,2,34,36],[786,1,1,36,37],[794,1,1,37,38]]],[25,7,4,38,42,[[815,1,1,38,39],[845,3,2,39,41],[849,3,1,41,42]]],[27,1,1,42,43,[[865,1,1,42,43]]],[29,1,1,43,44,[[880,1,1,43,44]]],[32,1,1,44,45,[[895,1,1,44,45]]]],[508,527,1098,2148,10128,11917,13152,13153,13234,13834,14782,15464,15703,15739,16008,16074,16600,16673,16745,16794,17000,17719,17845,17977,18017,18018,18039,18171,18217,18245,18328,18614,18717,18883,19497,19516,19995,20172,20742,21609,21614,21713,22145,22383,22613]]],["+",[3,3,[[19,1,1,0,1,[[634,1,1,0,1]]],[22,1,1,1,2,[[697,1,1,1,2]]],[25,1,1,2,3,[[849,1,1,2,3]]]],[16600,18017,21713]]],["astray",[11,9,[[1,1,1,0,1,[[72,1,1,0,1]]],[18,2,2,1,3,[[535,1,1,1,2],[596,1,1,2,3]]],[22,1,1,3,4,[[731,1,1,3,4]]],[23,1,1,4,5,[[794,1,1,4,5]]],[25,6,4,5,9,[[815,1,1,5,6],[845,3,2,6,8],[849,2,1,8,9]]]],[2148,14782,16074,18717,20172,20742,21609,21614,21713]]],["deceived",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13234]]],["dissembled",[1,1,[[23,1,1,0,1,[[786,1,1,0,1]]]],[19995]]],["err",[14,14,[[13,1,1,0,1,[[399,1,1,0,1]]],[18,1,1,1,2,[[572,1,1,1,2]]],[19,1,1,2,3,[[641,1,1,2,3]]],[22,6,6,3,9,[[681,1,1,3,4],[687,1,1,4,5],[697,1,1,5,6],[708,1,1,6,7],[713,1,1,7,8],[741,1,1,8,9]]],[23,2,2,9,11,[[767,2,2,9,11]]],[27,1,1,11,12,[[865,1,1,11,12]]],[29,1,1,12,13,[[880,1,1,12,13]]],[32,1,1,13,14,[[895,1,1,13,14]]]],[11917,15464,16794,17719,17845,18018,18245,18328,18883,19497,19516,22145,22383,22613]]],["erred",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]]],[16008,18217]]],["erreth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16673]]],["panted",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18039]]],["seduced",[1,1,[[11,1,1,0,1,[[333,1,1,0,1]]]],[10128]]],["seduceth",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16745]]],["stagger",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13153]]],["staggereth",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18018]]],["wander",[5,5,[[0,1,1,0,1,[[19,1,1,0,1]]],[17,2,2,1,3,[[447,1,1,1,2],[473,1,1,2,3]]],[18,1,1,3,4,[[584,1,1,3,4]]],[22,1,1,4,5,[[725,1,1,4,5]]]],[508,13152,13834,15739,18614]]],["wandered",[3,3,[[0,1,1,0,1,[[20,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]],[22,1,1,2,3,[[694,1,1,2,3]]]],[527,15703,17977]]],["wandereth",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17000]]],["wandering",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1098]]],["way",[2,1,[[22,2,1,0,1,[[706,2,1,0,1]]]],[18171]]]]},{"k":"H8583","v":[["*",[5,4,[[9,3,2,0,2,[[274,3,2,0,2]]],[12,2,2,2,4,[[355,2,2,2,4]]]],[8218,8219,10899,10900]]],["Toi",[3,2,[[9,3,2,0,2,[[274,3,2,0,2]]]],[8218,8219]]],["Tou",[2,2,[[12,2,2,0,2,[[355,2,2,0,2]]]],[10899,10900]]]]},{"k":"H8584","v":[["testimony",[3,3,[[7,1,1,0,1,[[235,1,1,0,1]]],[22,2,2,1,3,[[686,2,2,1,3]]]],[7197,17823,17827]]]]},{"k":"H8585","v":[["*",[11,11,[[10,3,3,0,3,[[308,3,3,0,3]]],[11,2,2,3,5,[[330,1,1,3,4],[332,1,1,4,5]]],[17,1,1,5,6,[[473,1,1,5,6]]],[22,2,2,6,8,[[685,1,1,6,7],[714,1,1,7,8]]],[23,2,2,8,10,[[774,1,1,8,9],[790,1,1,9,10]]],[25,1,1,10,11,[[832,1,1,10,11]]]],[9373,9376,9379,10041,10118,13818,17785,18332,19680,20056,21234]]],["conduit",[4,4,[[11,2,2,0,2,[[330,1,1,0,1],[332,1,1,1,2]]],[22,2,2,2,4,[[685,1,1,2,3],[714,1,1,3,4]]]],[10041,10118,17785,18332]]],["cured",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20056]]],["healing",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19680]]],["rivers",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21234]]],["trench",[3,3,[[10,3,3,0,3,[[308,3,3,0,3]]]],[9373,9376,9379]]],["watercourse",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13818]]]]},{"k":"H8586","v":[["*",[2,2,[[22,2,2,0,2,[[681,1,1,0,1],[744,1,1,1,2]]]],[17711,18926]]],["babes",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17711]]],["delusions",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18926]]]]},{"k":"H8587","v":[["*",[3,3,[[17,2,2,0,2,[[446,1,1,0,1],[463,1,1,1,2]]],[18,1,1,2,3,[[521,1,1,2,3]]]],[13114,13515,14592]]],["hid",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13515]]],["secrets",[2,2,[[17,1,1,0,1,[[446,1,1,0,1]]],[18,1,1,1,2,[[521,1,1,1,2]]]],[13114,14592]]]]},{"k":"H8588","v":[["*",[5,5,[[19,1,1,0,1,[[646,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]],[21,1,1,2,3,[[677,1,1,2,3]]],[32,2,2,3,5,[[893,1,1,3,4],[894,1,1,4,5]]]],[16935,17341,17633,22595,22604]]],["Delight",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16935]]],["delicate",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22595]]],["delights",[2,2,[[20,1,1,0,1,[[660,1,1,0,1]]],[21,1,1,1,2,[[677,1,1,1,2]]]],[17341,17633]]],["pleasant",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22604]]]]},{"k":"H8589","v":[["+",[1,1,[[14,1,1,0,1,[[411,1,1,0,1]]]],[12242]]]]},{"k":"H8590","v":[["*",[7,7,[[5,3,3,0,3,[[198,1,1,0,1],[203,1,1,1,2],[207,1,1,2,3]]],[6,2,2,3,5,[[211,1,1,3,4],[215,1,1,4,5]]],[10,1,1,5,6,[[294,1,1,5,6]]],[12,1,1,6,7,[[344,1,1,6,7]]]],[6151,6286,6406,6536,6642,8856,10564]]],["Taanach",[6,6,[[5,2,2,0,2,[[198,1,1,0,1],[203,1,1,1,2]]],[6,2,2,2,4,[[211,1,1,2,3],[215,1,1,3,4]]],[10,1,1,4,5,[[294,1,1,4,5]]],[12,1,1,5,6,[[344,1,1,5,6]]]],[6151,6286,6536,6642,8856,10564]]],["Tanach",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6406]]]]},{"k":"H8591","v":[["*",[2,2,[[0,1,1,0,1,[[26,1,1,0,1]]],[13,1,1,1,2,[[402,1,1,1,2]]]],[739,12009]]],["deceiver",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[739]]],["misused",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[12009]]]]},{"k":"H8592","v":[["power",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14935]]]]},{"k":"H8593","v":[["*",[13,13,[[3,2,2,0,2,[[122,1,1,0,1],[124,1,1,1,2]]],[8,1,1,2,3,[[252,1,1,2,3]]],[9,1,1,3,4,[[286,1,1,3,4]]],[18,1,1,4,5,[[529,1,1,4,5]]],[22,1,1,5,6,[[685,1,1,5,6]]],[23,2,2,6,8,[[780,1,1,6,7],[791,1,1,7,8]]],[25,5,5,8,13,[[806,1,1,8,9],[822,4,4,9,13]]]],[3828,3946,7669,8562,14712,17802,19865,20079,20547,20947,20948,20949,20974]]],["+",[6,6,[[3,1,1,0,1,[[124,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[23,1,1,2,3,[[780,1,1,2,3]]],[25,3,3,3,6,[[822,3,3,3,6]]]],[3946,7669,19865,20947,20948,20949]]],["razor",[4,4,[[3,1,1,0,1,[[122,1,1,0,1]]],[18,1,1,1,2,[[529,1,1,1,2]]],[22,1,1,2,3,[[685,1,1,2,3]]],[25,1,1,3,4,[[806,1,1,3,4]]]],[3828,14712,17802,20547]]],["scabbard",[1,1,[[23,1,1,0,1,[[791,1,1,0,1]]]],[20079]]],["sheath",[2,2,[[9,1,1,0,1,[[286,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[8562,20974]]]]},{"k":"H8594","v":[["+",[2,2,[[11,1,1,0,1,[[326,1,1,0,1]]],[13,1,1,1,2,[[391,1,1,1,2]]]],[9910,11728]]]]},{"k":"H8595","v":[["errors",[2,2,[[23,2,2,0,2,[[754,1,1,0,1],[795,1,1,1,2]]]],[19216,20230]]]]},{"k":"H8596","v":[["*",[17,16,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,2,1,1,2,[[64,2,1,1,2]]],[6,1,1,2,3,[[221,1,1,2,3]]],[8,2,2,3,5,[[245,1,1,3,4],[253,1,1,4,5]]],[9,1,1,5,6,[[272,1,1,5,6]]],[12,1,1,6,7,[[350,1,1,6,7]]],[17,1,1,7,8,[[456,1,1,7,8]]],[18,3,3,8,11,[[558,1,1,8,9],[626,1,1,9,10],[627,1,1,10,11]]],[22,3,3,11,14,[[683,1,1,11,12],[702,1,1,12,13],[708,1,1,13,14]]],[23,1,1,14,15,[[775,1,1,14,15]]],[25,1,1,15,16,[[829,1,1,15,16]]]],[900,1940,6863,7423,7682,8162,10768,13367,15219,16388,16398,17751,18103,18249,19695,21170]]],["tabret",[3,3,[[0,1,1,0,1,[[30,1,1,0,1]]],[8,1,1,1,2,[[245,1,1,1,2]]],[22,1,1,2,3,[[683,1,1,2,3]]]],[900,7423,17751]]],["tabrets",[5,5,[[8,1,1,0,1,[[253,1,1,0,1]]],[22,2,2,1,3,[[702,1,1,1,2],[708,1,1,2,3]]],[23,1,1,3,4,[[775,1,1,3,4]]],[25,1,1,4,5,[[829,1,1,4,5]]]],[7682,18103,18249,19695,21170]]],["timbrel",[5,5,[[1,1,1,0,1,[[64,1,1,0,1]]],[17,1,1,1,2,[[456,1,1,1,2]]],[18,3,3,2,5,[[558,1,1,2,3],[626,1,1,3,4],[627,1,1,4,5]]]],[1940,13367,15219,16388,16398]]],["timbrels",[4,4,[[1,1,1,0,1,[[64,1,1,0,1]]],[6,1,1,1,2,[[221,1,1,1,2]]],[9,1,1,2,3,[[272,1,1,2,3]]],[12,1,1,3,4,[[350,1,1,3,4]]]],[1940,6863,8162,10768]]]]},{"k":"H8597","v":[["*",[51,50,[[1,2,2,0,2,[[77,2,2,0,2]]],[4,1,1,2,3,[[178,1,1,2,3]]],[6,1,1,3,4,[[214,1,1,3,4]]],[12,3,3,4,7,[[359,1,1,4,5],[366,2,2,5,7]]],[13,1,1,7,8,[[369,1,1,7,8]]],[16,1,1,8,9,[[426,1,1,8,9]]],[18,4,4,9,13,[[548,1,1,9,10],[555,1,1,10,11],[566,1,1,11,12],[573,1,1,12,13]]],[19,6,6,13,19,[[631,1,1,13,14],[643,1,1,14,15],[644,1,1,15,16],[646,1,1,16,17],[647,1,1,17,18],[655,1,1,18,19]]],[22,18,18,19,37,[[681,1,1,19,20],[682,1,1,20,21],[688,1,1,21,22],[691,1,1,22,23],[698,1,1,23,24],[706,3,3,24,27],[722,1,1,27,28],[724,1,1,28,29],[730,1,1,29,30],[738,2,2,30,32],[740,1,1,32,33],[741,3,3,33,36],[742,1,1,36,37]]],[23,5,5,37,42,[[757,3,3,37,40],[777,1,1,40,41],[792,1,1,41,42]]],[24,1,1,42,43,[[798,1,1,42,43]]],[25,6,6,43,49,[[817,3,3,43,46],[824,2,2,46,48],[825,1,1,48,49]]],[37,2,1,49,50,[[922,2,1,49,50]]]],[2295,2333,5585,6608,10969,11175,11177,11235,12706,14984,15174,15343,15471,16499,16871,16879,16936,16983,17208,17725,17735,17862,17925,18034,18165,18168,18169,18546,18599,18697,18828,18840,18857,18878,18880,18881,18896,19277,19284,19286,19784,20097,20333,20774,20779,20801,21033,21049,21081,23052]]],["+",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21081]]],["beautiful",[6,6,[[22,2,2,0,2,[[730,1,1,0,1],[742,1,1,1,2]]],[23,2,2,2,4,[[757,1,1,2,3],[792,1,1,3,4]]],[25,2,2,4,6,[[817,1,1,4,5],[824,1,1,5,6]]]],[18697,18896,19286,20097,20774,21049]]],["beauty",[10,10,[[1,2,2,0,2,[[77,2,2,0,2]]],[13,1,1,2,3,[[369,1,1,2,3]]],[18,1,1,3,4,[[573,1,1,3,4]]],[22,5,5,4,9,[[691,1,1,4,5],[706,3,3,5,8],[722,1,1,8,9]]],[24,1,1,9,10,[[798,1,1,9,10]]]],[2295,2333,11235,15471,17925,18165,18168,18169,18546,20333]]],["bravery",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17725]]],["comely",[1,1,[[22,1,1,0,1,[[682,1,1,0,1]]]],[17735]]],["excellent",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12706]]],["fair",[3,3,[[25,3,3,0,3,[[817,2,2,0,2],[824,1,1,2,3]]]],[20779,20801,21033]]],["glorious",[3,3,[[12,1,1,0,1,[[366,1,1,0,1]]],[22,2,2,1,3,[[741,2,2,1,3]]]],[11177,18878,18880]]],["glory",[21,20,[[12,2,2,0,2,[[359,1,1,0,1],[366,1,1,1,2]]],[18,2,2,2,4,[[555,1,1,2,3],[566,1,1,3,4]]],[19,6,6,4,10,[[631,1,1,4,5],[643,1,1,5,6],[644,1,1,6,7],[646,1,1,7,8],[647,1,1,8,9],[655,1,1,9,10]]],[22,7,7,10,17,[[688,1,1,10,11],[698,1,1,11,12],[724,1,1,12,13],[738,2,2,13,15],[740,1,1,15,16],[741,1,1,16,17]]],[23,2,2,17,19,[[757,2,2,17,19]]],[37,2,1,19,20,[[922,2,1,19,20]]]],[10969,11175,15174,15343,16499,16871,16879,16936,16983,17208,17862,18034,18599,18828,18840,18857,18881,19277,19284,23052]]],["honour",[4,4,[[4,1,1,0,1,[[178,1,1,0,1]]],[6,1,1,1,2,[[214,1,1,1,2]]],[18,1,1,2,3,[[548,1,1,2,3]]],[23,1,1,3,4,[[777,1,1,3,4]]]],[5585,6608,14984,19784]]]]},{"k":"H8598","v":[["*",[6,6,[[19,1,1,0,1,[[652,1,1,0,1]]],[21,4,4,1,5,[[672,2,2,1,3],[677,1,1,3,4],[678,1,1,4,5]]],[28,1,1,5,6,[[876,1,1,5,6]]]],[17124,17557,17559,17635,17645,22303]]],["apples",[3,3,[[19,1,1,0,1,[[652,1,1,0,1]]],[21,2,2,1,3,[[672,1,1,1,2],[677,1,1,2,3]]]],[17124,17559,17635]]],["tree",[3,3,[[21,2,2,0,2,[[672,1,1,0,1],[678,1,1,1,2]]],[28,1,1,2,3,[[876,1,1,2,3]]]],[17557,17645,22303]]]]},{"k":"H8599","v":[["*",[6,5,[[5,5,4,0,4,[[198,1,1,0,1],[201,1,1,1,2],[202,1,1,2,3],[203,2,1,3,4]]],[12,1,1,4,5,[[339,1,1,4,5]]]],[6147,6236,6273,6283,10349]]],["+",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6273]]],["Tappuah",[5,4,[[5,4,3,0,3,[[198,1,1,0,1],[201,1,1,1,2],[203,2,1,2,3]]],[12,1,1,3,4,[[339,1,1,3,4]]]],[6147,6236,6283,10349]]]]},{"k":"H8600","v":[["dispersions",[1,1,[[23,1,1,0,1,[[769,1,1,0,1]]]],[19568]]]]},{"k":"H8601","v":[["baken",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2870]]]]},{"k":"H8602","v":[["*",[7,7,[[17,1,1,0,1,[[441,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]],[25,5,5,2,7,[[814,4,4,2,6],[823,1,1,6,7]]]],[12984,20346,20718,20719,20722,20723,21004]]],["things",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20346]]],["unsavoury",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12984]]],["untempered",[5,5,[[25,5,5,0,5,[[814,4,4,0,4],[823,1,1,4,5]]]],[20718,20719,20722,20723,21004]]]]},{"k":"H8603","v":[["Tophel",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4893]]]]},{"k":"H8604","v":[["*",[3,3,[[17,2,2,0,2,[[436,1,1,0,1],[459,1,1,1,2]]],[23,1,1,2,3,[[767,1,1,2,3]]]],[12891,13448,19497]]],["folly",[2,2,[[17,1,1,0,1,[[459,1,1,0,1]]],[23,1,1,1,2,[[767,1,1,1,2]]]],[13448,19497]]],["foolishly",[1,1,[[17,1,1,0,1,[[436,1,1,0,1]]]],[12891]]]]},{"k":"H8605","v":[["*",[72,67,[[9,1,1,0,1,[[273,1,1,0,1]]],[10,8,7,1,8,[[298,7,6,1,7],[299,1,1,7,8]]],[11,2,2,8,10,[[331,1,1,8,9],[332,1,1,9,10]]],[13,12,11,10,21,[[372,7,6,10,16],[373,2,2,16,18],[396,1,1,18,19],[399,2,2,19,21]]],[15,4,3,21,24,[[413,3,2,21,23],[423,1,1,23,24]]],[17,1,1,24,25,[[451,1,1,24,25]]],[18,27,26,25,51,[[481,1,1,25,26],[483,1,1,26,27],[494,1,1,27,28],[512,1,1,28,29],[516,1,1,29,30],[519,1,1,30,31],[531,1,1,31,32],[532,1,1,32,33],[538,1,1,33,34],[542,1,1,34,35],[543,2,2,35,37],[546,1,1,37,38],[549,1,1,38,39],[557,1,1,39,40],[561,1,1,40,41],[563,1,1,41,42],[565,2,2,42,44],[579,3,2,44,46],[586,2,2,46,48],[618,2,2,48,50],[620,1,1,50,51]]],[19,3,3,51,54,[[642,2,2,51,53],[655,1,1,53,54]]],[22,5,4,54,58,[[679,1,1,54,55],[715,1,1,55,56],[716,1,1,56,57],[734,2,1,57,58]]],[23,2,2,58,60,[[751,1,1,58,59],[755,1,1,59,60]]],[24,2,2,60,62,[[799,2,2,60,62]]],[26,3,3,62,65,[[858,3,3,62,65]]],[31,1,1,65,66,[[890,1,1,65,66]]],[34,1,1,66,67,[[905,1,1,66,67]]]],[8207,9013,9014,9023,9030,9034,9039,9054,10065,10103,11301,11302,11311,11317,11321,11322,11336,11339,11854,11926,11927,12302,12307,12605,13255,13966,13994,14104,14423,14524,14563,14727,14733,14820,14862,14892,14893,14948,15020,15202,15267,15290,15310,15321,15522,15538,15759,15762,16278,16281,16294,16815,16836,17205,17669,18356,18395,18760,19135,19240,20362,20398,21991,22005,22009,22555,22769]]],["prayer",[70,65,[[9,1,1,0,1,[[273,1,1,0,1]]],[10,8,7,1,8,[[298,7,6,1,7],[299,1,1,7,8]]],[11,2,2,8,10,[[331,1,1,8,9],[332,1,1,9,10]]],[13,12,11,10,21,[[372,7,6,10,16],[373,2,2,16,18],[396,1,1,18,19],[399,2,2,19,21]]],[15,4,3,21,24,[[413,3,2,21,23],[423,1,1,23,24]]],[17,1,1,24,25,[[451,1,1,24,25]]],[18,26,25,25,50,[[481,1,1,25,26],[483,1,1,26,27],[494,1,1,27,28],[512,1,1,28,29],[516,1,1,29,30],[519,1,1,30,31],[531,1,1,31,32],[532,1,1,32,33],[538,1,1,33,34],[542,1,1,34,35],[543,2,2,35,37],[546,1,1,37,38],[557,1,1,38,39],[561,1,1,39,40],[563,1,1,40,41],[565,2,2,41,43],[579,3,2,43,45],[586,2,2,45,47],[618,2,2,47,49],[620,1,1,49,50]]],[19,3,3,50,53,[[642,2,2,50,52],[655,1,1,52,53]]],[22,4,3,53,56,[[715,1,1,53,54],[716,1,1,54,55],[734,2,1,55,56]]],[23,2,2,56,58,[[751,1,1,56,57],[755,1,1,57,58]]],[24,2,2,58,60,[[799,2,2,58,60]]],[26,3,3,60,63,[[858,3,3,60,63]]],[31,1,1,63,64,[[890,1,1,63,64]]],[34,1,1,64,65,[[905,1,1,64,65]]]],[8207,9013,9014,9023,9030,9034,9039,9054,10065,10103,11301,11302,11311,11317,11321,11322,11336,11339,11854,11926,11927,12302,12307,12605,13255,13966,13994,14104,14423,14524,14563,14727,14733,14820,14862,14892,14893,14948,15202,15267,15290,15310,15321,15522,15538,15759,15762,16278,16281,16294,16815,16836,17205,18356,18395,18760,19135,19240,20362,20398,21991,22005,22009,22555,22769]]],["prayers",[2,2,[[18,1,1,0,1,[[549,1,1,0,1]]],[22,1,1,1,2,[[679,1,1,1,2]]]],[15020,17669]]]]},{"k":"H8606","v":[["terribleness",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20143]]]]},{"k":"H8607","v":[["*",[2,2,[[10,1,1,0,1,[[294,1,1,0,1]]],[11,1,1,1,2,[[327,1,1,1,2]]]],[8868,9941]]],["+",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8868]]],["Tiphsah",[1,1,[[11,1,1,0,1,[[327,1,1,0,1]]]],[9941]]]]},{"k":"H8608","v":[["*",[2,2,[[18,1,1,0,1,[[545,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[14925,22706]]],["tabering",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22706]]],["timbrels",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14925]]]]},{"k":"H8609","v":[["*",[4,4,[[0,1,1,0,1,[[2,1,1,0,1]]],[17,1,1,1,2,[[451,1,1,1,2]]],[20,1,1,2,3,[[661,1,1,2,3]]],[25,1,1,3,4,[[814,1,1,3,4]]]],[62,13253,17366,20726]]],["sew",[2,2,[[20,1,1,0,1,[[661,1,1,0,1]]],[25,1,1,1,2,[[814,1,1,1,2]]]],[17366,20726]]],["sewed",[2,2,[[0,1,1,0,1,[[2,1,1,0,1]]],[17,1,1,1,2,[[451,1,1,1,2]]]],[62,13253]]]]},{"k":"H8610","v":[["*",[65,60,[[0,2,2,0,2,[[3,1,1,0,1],[38,1,1,1,2]]],[3,2,2,2,4,[[121,1,1,2,3],[147,1,1,3,4]]],[4,4,4,4,8,[[161,1,1,4,5],[172,1,1,5,6],[173,1,1,6,7],[174,1,1,7,8]]],[5,2,2,8,10,[[194,2,2,8,10]]],[8,2,2,10,12,[[250,1,1,10,11],[258,1,1,11,12]]],[10,6,4,12,16,[[301,1,1,12,13],[303,1,1,13,14],[308,2,1,14,15],[310,2,1,15,16]]],[11,8,7,16,23,[[319,1,1,16,17],[322,2,1,17,18],[326,2,2,18,20],[328,1,1,20,21],[330,1,1,21,22],[337,1,1,22,23]]],[13,1,1,23,24,[[391,1,1,23,24]]],[18,2,2,24,26,[[487,1,1,24,25],[548,1,1,25,26]]],[19,2,2,26,28,[[657,2,2,26,28]]],[22,2,2,28,30,[[681,1,1,28,29],[714,1,1,29,30]]],[23,18,16,30,46,[[746,1,1,30,31],[770,1,1,31,32],[778,2,1,32,33],[781,2,2,33,35],[782,1,1,35,36],[784,1,1,36,37],[790,2,1,37,38],[792,1,1,38,39],[793,1,1,39,40],[794,3,3,40,43],[795,2,2,43,45],[796,1,1,45,46]]],[25,12,12,46,58,[[813,1,1,46,47],[815,1,1,47,48],[818,1,1,48,49],[820,2,2,49,51],[822,3,3,51,54],[828,1,1,54,55],[830,1,1,55,56],[831,1,1,56,57],[839,1,1,57,58]]],[29,1,1,58,59,[[880,1,1,58,59]]],[34,1,1,59,60,[[904,1,1,59,60]]]],[100,1161,3805,4691,5174,5446,5466,5498,6010,6025,7568,7836,9138,9188,9381,9426,9719,9807,9903,9909,9972,10037,10228,11727,14043,14987,17260,17279,17713,18331,18973,19580,19804,19887,19888,19918,19951,20054,20121,20143,20182,20190,20212,20244,20253,20285,20693,20736,20845,20885,20889,20955,20967,20968,21150,21190,21225,21429,22394,22767]]],["+",[11,10,[[5,1,1,0,1,[[194,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[11,2,2,3,5,[[326,1,1,3,4],[337,1,1,4,5]]],[23,4,3,5,8,[[778,2,1,5,6],[781,1,1,6,7],[796,1,1,7,8]]],[25,2,2,8,10,[[815,1,1,8,9],[822,1,1,9,10]]]],[6010,7568,9381,9903,10228,19804,19887,20285,20736,20955]]],["Take",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9807]]],["catch",[1,1,[[11,1,1,0,1,[[319,1,1,0,1]]]],[9719]]],["caught",[3,3,[[0,1,1,0,1,[[38,1,1,0,1]]],[10,1,1,1,2,[[301,1,1,1,2]]],[23,1,1,2,3,[[794,1,1,2,3]]]],[1161,9138,20190]]],["handle",[5,4,[[0,1,1,0,1,[[3,1,1,0,1]]],[23,3,2,1,3,[[746,1,1,1,2],[790,2,1,2,3]]],[25,1,1,3,4,[[828,1,1,3,4]]]],[100,18973,20054,21150]]],["handleth",[2,2,[[23,1,1,0,1,[[794,1,1,0,1]]],[29,1,1,1,2,[[880,1,1,1,2]]]],[20182,22394]]],["handling",[1,1,[[25,1,1,0,1,[[839,1,1,0,1]]]],[21429]]],["hold",[7,7,[[4,2,2,0,2,[[173,1,1,0,1],[174,1,1,1,2]]],[10,1,1,2,3,[[303,1,1,2,3]]],[19,1,1,3,4,[[657,1,1,3,4]]],[22,1,1,4,5,[[681,1,1,4,5]]],[25,2,2,5,7,[[830,1,1,5,6],[831,1,1,6,7]]]],[5466,5498,9188,17279,17713,21190,21225]]],["holdest",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20143]]],["over",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22767]]],["stopped",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20244]]],["surprised",[2,2,[[23,2,2,0,2,[[792,1,1,0,1],[795,1,1,1,2]]]],[20121,20253]]],["take",[6,5,[[4,1,1,0,1,[[172,1,1,0,1]]],[8,1,1,1,2,[[258,1,1,1,2]]],[10,2,1,2,3,[[310,2,1,2,3]]],[18,1,1,3,4,[[548,1,1,3,4]]],[19,1,1,4,5,[[657,1,1,4,5]]]],[5446,7836,9426,14987,17260]]],["taken",[10,10,[[3,1,1,0,1,[[121,1,1,0,1]]],[18,1,1,1,2,[[487,1,1,1,2]]],[23,2,2,2,4,[[782,1,1,2,3],[784,1,1,3,4]]],[25,6,6,4,10,[[813,1,1,4,5],[818,1,1,5,6],[820,2,2,6,8],[822,2,2,8,10]]]],[3805,14043,19918,19951,20693,20845,20885,20889,20967,20968]]],["taking",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20212]]],["took",[12,12,[[3,1,1,0,1,[[147,1,1,0,1]]],[4,1,1,1,2,[[161,1,1,1,2]]],[5,1,1,2,3,[[194,1,1,2,3]]],[10,1,1,3,4,[[308,1,1,3,4]]],[11,4,4,4,8,[[322,1,1,4,5],[326,1,1,5,6],[328,1,1,6,7],[330,1,1,7,8]]],[13,1,1,8,9,[[391,1,1,8,9]]],[22,1,1,9,10,[[714,1,1,9,10]]],[23,2,2,10,12,[[770,1,1,10,11],[781,1,1,11,12]]]],[4691,5174,6025,9381,9807,9909,9972,10037,11727,18331,19580,19888]]]]},{"k":"H8611","v":[["tabret",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13266]]]]},{"k":"H8612","v":[["*",[9,8,[[11,1,1,0,1,[[335,1,1,0,1]]],[23,8,7,1,8,[[751,3,2,1,3],[763,5,5,3,8]]]],[10175,19150,19151,19413,19418,19419,19420,19421]]],["+",[1,1,[[23,1,1,0,1,[[763,1,1,0,1]]]],[19421]]],["Tophet",[7,6,[[23,7,6,0,6,[[751,3,2,0,2],[763,4,4,2,6]]]],[19150,19151,19413,19418,19419,19420]]],["Topheth",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10175]]]]},{"k":"H8613","v":[["Tophet",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18250]]]]},{"k":"H8614","v":[["sheriffs",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21809,21810]]]]},{"k":"H8615","v":[["*",[34,33,[[5,2,2,0,2,[[188,2,2,0,2]]],[7,1,1,2,3,[[232,1,1,2,3]]],[17,13,12,3,15,[[439,1,1,3,4],[440,1,1,4,5],[441,1,1,5,6],[442,1,1,6,7],[443,1,1,7,8],[446,2,2,8,10],[449,2,2,10,12],[452,2,1,12,13],[454,1,1,13,14],[462,1,1,14,15]]],[18,3,3,15,18,[[486,1,1,15,16],[539,1,1,16,17],[548,1,1,17,18]]],[19,8,8,18,26,[[637,1,1,18,19],[638,2,2,19,21],[646,1,1,21,22],[650,1,1,22,23],[651,1,1,23,24],[653,1,1,24,25],[656,1,1,25,26]]],[23,2,2,26,28,[[773,1,1,26,27],[775,1,1,27,28]]],[24,1,1,28,29,[[799,1,1,28,29]]],[25,2,2,29,31,[[820,1,1,29,30],[838,1,1,30,31]]],[27,1,1,31,32,[[863,1,1,31,32]]],[37,1,1,32,33,[[919,1,1,32,33]]]],[5887,5890,7139,12936,12967,12986,13014,13042,13126,13128,13188,13200,13275,13307,13489,14039,14832,14981,16684,16695,16711,16943,17062,17093,17153,17244,19646,19708,20383,20886,21408,22120,23011]]],["expectation",[7,7,[[18,2,2,0,2,[[486,1,1,0,1],[539,1,1,1,2]]],[19,5,5,2,7,[[637,1,1,2,3],[638,2,2,3,5],[650,1,1,5,6],[651,1,1,6,7]]]],[14039,14832,16684,16695,16711,17062,17093]]],["expected",[1,1,[[23,1,1,0,1,[[773,1,1,0,1]]]],[19646]]],["for",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12986]]],["hope",[23,22,[[7,1,1,0,1,[[232,1,1,0,1]]],[17,12,11,1,12,[[439,1,1,1,2],[440,1,1,2,3],[442,1,1,3,4],[443,1,1,4,5],[446,2,2,5,7],[449,2,2,7,9],[452,2,1,9,10],[454,1,1,10,11],[462,1,1,11,12]]],[18,1,1,12,13,[[548,1,1,12,13]]],[19,3,3,13,16,[[646,1,1,13,14],[653,1,1,14,15],[656,1,1,15,16]]],[23,1,1,16,17,[[775,1,1,16,17]]],[24,1,1,17,18,[[799,1,1,17,18]]],[25,2,2,18,20,[[820,1,1,18,19],[838,1,1,19,20]]],[27,1,1,20,21,[[863,1,1,20,21]]],[37,1,1,21,22,[[919,1,1,21,22]]]],[7139,12936,12967,13014,13042,13126,13128,13188,13200,13275,13307,13489,14981,16943,17153,17244,19708,20383,20886,21408,22120,23011]]],["line",[2,2,[[5,2,2,0,2,[[188,2,2,0,2]]]],[5887,5890]]]]},{"k":"H8616","v":[["*",[3,3,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]],[14,1,1,2,3,[[412,1,1,2,3]]]],[10159,11955,12267]]],["Tikvah",[2,2,[[11,1,1,0,1,[[334,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]]],[10159,12267]]],["Tikvath",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11955]]]]},{"k":"H8617","v":[["stand",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3561]]]]},{"k":"H8618","v":[["against",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16260]]]]},{"k":"H8619","v":[["trumpet",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20591]]]]},{"k":"H8620","v":[["*",[7,7,[[9,1,1,0,1,[[280,1,1,0,1]]],[12,2,2,1,3,[[339,1,1,1,2],[341,1,1,2,3]]],[13,2,2,3,5,[[377,1,1,3,4],[386,1,1,4,5]]],[23,1,1,5,6,[[750,1,1,5,6]]],[29,1,1,6,7,[[879,1,1,6,7]]]],[8358,10330,10390,11420,11607,19090,22365]]],["+",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22365]]],["Tekoa",[5,5,[[12,2,2,0,2,[[339,1,1,0,1],[341,1,1,1,2]]],[13,2,2,2,4,[[377,1,1,2,3],[386,1,1,3,4]]],[23,1,1,4,5,[[750,1,1,4,5]]]],[10330,10390,11420,11607,19090]]],["Tekoah",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8358]]]]},{"k":"H8621","v":[["*",[7,7,[[9,3,3,0,3,[[280,2,2,0,2],[289,1,1,2,3]]],[12,2,2,3,5,[[348,1,1,3,4],[364,1,1,4,5]]],[15,2,2,5,7,[[415,2,2,5,7]]]],[8360,8365,8679,10701,11118,12332,12354]]],["Tekoah",[2,2,[[9,2,2,0,2,[[280,2,2,0,2]]]],[8360,8365]]],["Tekoite",[3,3,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,2,2,1,3,[[348,1,1,1,2],[364,1,1,2,3]]]],[8679,10701,11118]]],["Tekoites",[2,2,[[15,2,2,0,2,[[415,2,2,0,2]]]],[12332,12354]]]]},{"k":"H8622","v":[["*",[4,4,[[1,1,1,0,1,[[83,1,1,0,1]]],[8,1,1,1,2,[[236,1,1,1,2]]],[13,1,1,2,3,[[390,1,1,2,3]]],[18,1,1,3,4,[[496,1,1,3,4]]]],[2518,7232,11700,14174]]],["circuit",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14174]]],["come",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7232]]],["end",[2,2,[[1,1,1,0,1,[[83,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]]],[2518,11700]]]]},{"k":"H8623","v":[["+",[1,1,[[20,1,1,0,1,[[664,1,1,0,1]]]],[17427]]]]},{"k":"H8624","v":[["*",[5,5,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,4,4,1,5,[[851,2,2,1,3],[853,1,1,3,4],[856,1,1,4,5]]]],[12130,21798,21800,21840,21940]]],["mighty",[2,2,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[12130,21840]]],["strong",[3,3,[[26,3,3,0,3,[[851,2,2,0,2],[856,1,1,2,3]]]],[21798,21800,21940]]]]},{"k":"H8625","v":[["*",[3,2,[[26,3,2,0,2,[[854,3,2,0,2]]]],[21899,21901]]],["TEKEL",[2,2,[[26,2,2,0,2,[[854,2,2,0,2]]]],[21899,21901]]],["weighed",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21901]]]]},{"k":"H8626","v":[["*",[3,3,[[20,3,3,0,3,[[659,1,1,0,1],[665,1,1,1,2],[670,1,1,2,3]]]],[17330,17442,17532]]],["+",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17442]]],["order",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17532]]],["straight",[1,1,[[20,1,1,0,1,[[659,1,1,0,1]]]],[17330]]]]},{"k":"H8627","v":[["established",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21873]]]]},{"k":"H8628","v":[["*",[68,62,[[0,2,1,0,1,[[30,2,1,0,1]]],[1,1,1,1,2,[[59,1,1,1,2]]],[3,8,7,2,9,[[126,8,7,2,9]]],[5,8,6,9,15,[[192,8,6,9,15]]],[6,11,9,15,24,[[213,2,2,15,17],[214,1,1,17,18],[216,1,1,18,19],[217,6,4,19,23],[226,1,1,23,24]]],[8,2,2,24,26,[[248,1,1,24,25],[266,1,1,25,26]]],[9,5,5,26,31,[[268,1,1,26,27],[284,2,2,27,29],[286,2,2,29,31]]],[10,2,2,31,33,[[291,2,2,31,33]]],[11,2,2,33,35,[[321,1,1,33,34],[323,1,1,34,35]]],[12,1,1,35,36,[[347,1,1,35,36]]],[13,1,1,36,37,[[389,1,1,36,37]]],[15,1,1,37,38,[[416,1,1,37,38]]],[17,1,1,38,39,[[452,1,1,38,39]]],[18,2,2,39,41,[[524,1,1,39,40],[558,1,1,40,41]]],[19,4,4,41,45,[[633,1,1,41,42],[638,1,1,42,43],[644,1,1,43,44],[649,1,1,44,45]]],[22,4,4,45,49,[[696,1,1,45,46],[700,2,2,46,48],[705,1,1,48,49]]],[23,4,4,49,53,[[748,1,1,49,50],[750,2,2,50,52],[795,1,1,52,53]]],[25,3,3,53,56,[[808,1,1,53,54],[834,2,2,54,56]]],[27,1,1,56,57,[[866,1,1,56,57]]],[28,2,2,57,59,[[877,2,2,57,59]]],[29,1,1,59,60,[[881,1,1,59,60]]],[33,1,1,60,61,[[902,1,1,60,61]]],[37,1,1,61,62,[[919,1,1,61,62]]]],[898,1796,3991,3992,3993,3994,3995,3996,3998,5953,5957,5958,5962,5965,5969,6589,6595,6620,6688,6712,6713,6714,6716,6963,7488,8019,8077,8492,8494,8555,8576,8751,8756,9769,9843,10669,11669,12377,13263,14626,15220,16541,16703,16891,17041,18000,18075,18077,18164,19032,19090,19092,20239,20591,21283,21286,22160,22312,22326,22401,22731,23013]]],["+",[2,2,[[0,1,1,0,1,[[30,1,1,0,1]]],[6,1,1,1,2,[[214,1,1,1,2]]]],[898,6620]]],["Blow",[4,4,[[23,1,1,0,1,[[748,1,1,0,1]]],[27,1,1,1,2,[[866,1,1,1,2]]],[28,2,2,2,4,[[877,2,2,2,4]]]],[19032,22160,22312,22326]]],["blew",[18,18,[[5,5,5,0,5,[[192,5,5,0,5]]],[6,5,5,5,10,[[213,1,1,5,6],[216,1,1,6,7],[217,3,3,7,10]]],[8,1,1,10,11,[[248,1,1,10,11]]],[9,4,4,11,15,[[268,1,1,11,12],[284,1,1,12,13],[286,2,2,13,15]]],[10,1,1,15,16,[[291,1,1,15,16]]],[11,2,2,16,18,[[321,1,1,16,17],[323,1,1,17,18]]]],[5957,5958,5962,5965,5969,6595,6688,6713,6714,6716,7488,8077,8494,8555,8576,8756,9769,9843]]],["blow",[18,16,[[3,8,7,0,7,[[126,8,7,0,7]]],[5,1,1,7,8,[[192,1,1,7,8]]],[6,3,2,8,10,[[217,3,2,8,10]]],[10,1,1,10,11,[[291,1,1,10,11]]],[23,2,2,11,13,[[750,1,1,11,12],[795,1,1,12,13]]],[25,2,2,13,15,[[834,2,2,13,15]]],[37,1,1,15,16,[[919,1,1,15,16]]]],[3991,3992,3993,3994,3995,3996,3998,5953,6712,6714,8751,19090,20239,21283,21286,23013]]],["bloweth",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18000]]],["blowing",[2,2,[[5,2,2,0,2,[[192,2,2,0,2]]]],[5958,5962]]],["blown",[3,3,[[22,1,1,0,1,[[705,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]],[29,1,1,2,3,[[881,1,1,2,3]]]],[18164,20591,22401]]],["cast",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1796]]],["clap",[2,2,[[18,1,1,0,1,[[524,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[14626,22731]]],["fasten",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18075]]],["fastened",[4,4,[[6,1,1,0,1,[[226,1,1,0,1]]],[8,1,1,1,2,[[266,1,1,1,2]]],[12,1,1,2,3,[[347,1,1,2,3]]],[22,1,1,3,4,[[700,1,1,3,4]]]],[6963,8019,10669,18077]]],["pitch",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19092]]],["pitched",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[898]]],["sounded",[2,2,[[13,1,1,0,1,[[389,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]]],[11669,12377]]],["stricken",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16541]]],["strike",[2,2,[[17,1,1,0,1,[[452,1,1,0,1]]],[19,1,1,1,2,[[649,1,1,1,2]]]],[13263,17041]]],["striketh",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16891]]],["suretiship",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16703]]],["thrust",[2,2,[[6,1,1,0,1,[[213,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]]],[6589,8492]]],["up",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15220]]]]},{"k":"H8629","v":[["sound",[1,1,[[18,1,1,0,1,[[627,1,1,0,1]]]],[16397]]]]},{"k":"H8630","v":[["*",[3,3,[[17,2,2,0,2,[[449,1,1,0,1],[450,1,1,1,2]]],[20,1,1,2,3,[[662,1,1,2,3]]]],[13201,13227,17393]]],["against",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[20,1,1,1,2,[[662,1,1,1,2]]]],[13227,17393]]],["prevailest",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13201]]]]},{"k":"H8631","v":[["*",[5,5,[[26,5,5,0,5,[[853,3,3,0,3],[854,1,1,3,4],[855,1,1,4,5]]]],[21848,21857,21859,21894,21912]]],["firm",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21912]]],["hardened",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21894]]],["strong",[3,3,[[26,3,3,0,3,[[853,3,3,0,3]]]],[21848,21857,21859]]]]},{"k":"H8632","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21795,21867]]],["might",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21867]]],["strength",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21795]]]]},{"k":"H8633","v":[["*",[3,3,[[16,2,2,0,2,[[434,1,1,0,1],[435,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[12863,12868,22053]]],["authority",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12863]]],["power",[1,1,[[16,1,1,0,1,[[435,1,1,0,1]]]],[12868]]],["strength",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22053]]]]},{"k":"H8634","v":[["Taralah",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6320]]]]},{"k":"H8635","v":[["increase",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4732]]]]},{"k":"H8636","v":[["*",[6,6,[[2,1,1,0,1,[[114,1,1,0,1]]],[19,1,1,1,2,[[655,1,1,1,2]]],[25,4,4,2,6,[[819,3,3,2,5],[823,1,1,5,6]]]],[3505,17204,20857,20862,20866,20988]]],["gain",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17204]]],["increase",[5,5,[[2,1,1,0,1,[[114,1,1,0,1]]],[25,4,4,1,5,[[819,3,3,1,4],[823,1,1,4,5]]]],[3505,20857,20862,20866,20988]]]]},{"k":"H8637","v":[["+",[1,1,[[27,1,1,0,1,[[872,1,1,0,1]]]],[22243]]]]},{"k":"H8638","v":[["interpreted",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12117]]]]},{"k":"H8639","v":[["sleep",[7,7,[[0,2,2,0,2,[[1,1,1,0,1],[14,1,1,1,2]]],[8,1,1,2,3,[[261,1,1,2,3]]],[17,2,2,3,5,[[439,1,1,3,4],[468,1,1,4,5]]],[19,1,1,5,6,[[646,1,1,5,6]]],[22,1,1,6,7,[[707,1,1,6,7]]]],[51,372,7917,12943,13665,16940,18203]]]]},{"k":"H8640","v":[["Tirhakah",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10070,18361]]]]},{"k":"H8641","v":[["*",[76,63,[[1,17,12,0,12,[[74,3,2,0,2],[78,4,2,2,4],[79,3,3,4,7],[84,5,3,7,10],[85,2,2,10,12]]],[2,6,6,12,18,[[96,3,3,12,15],[99,2,2,15,17],[111,1,1,17,18]]],[3,18,16,18,34,[[121,1,1,18,19],[122,1,1,19,20],[131,4,3,20,23],[134,9,8,23,31],[147,3,3,31,34]]],[4,3,3,34,37,[[164,3,3,34,37]]],[9,1,1,37,38,[[267,1,1,37,38]]],[13,3,3,38,41,[[397,3,3,38,41]]],[14,1,1,41,42,[[410,1,1,41,42]]],[15,4,4,42,46,[[422,2,2,42,44],[424,1,1,44,45],[425,1,1,45,46]]],[19,1,1,46,47,[[656,1,1,46,47]]],[22,1,1,47,48,[[718,1,1,47,48]]],[25,20,14,48,62,[[821,1,1,48,49],[845,2,1,49,50],[846,6,5,50,55],[849,11,7,55,62]]],[38,1,1,62,63,[[927,1,1,62,63]]]],[2197,2198,2363,2364,2395,2396,2397,2536,2552,2555,2569,2572,2893,2911,2913,2991,2992,3381,3801,3843,4172,4173,4174,4265,4268,4276,4281,4283,4284,4285,4286,4693,4705,4716,5246,5251,5257,8043,11864,11866,11868,12226,12586,12588,12668,12676,17228,18440,20935,21629,21631,21636,21637,21643,21646,21710,21711,21712,21714,21720,21722,21723,23128]]],["+",[1,1,[[25,1,1,0,1,[[849,1,1,0,1]]]],[21714]]],["gifts",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17228]]],["heave",[4,4,[[2,3,3,0,3,[[96,1,1,0,1],[99,2,2,1,3]]],[3,1,1,3,4,[[122,1,1,3,4]]]],[2913,2991,2992,3843]]],["oblation",[17,12,[[22,1,1,0,1,[[718,1,1,0,1]]],[25,16,11,1,12,[[845,1,1,1,2],[846,6,5,2,7],[849,9,5,7,12]]]],[18440,21629,21631,21636,21637,21643,21646,21711,21712,21720,21722,21723]]],["oblations",[2,2,[[13,1,1,0,1,[[397,1,1,0,1]]],[25,1,1,1,2,[[845,1,1,1,2]]]],[11868,21629]]],["offering",[40,33,[[1,17,12,0,12,[[74,3,2,0,2],[78,4,2,2,4],[79,3,3,4,7],[84,5,3,7,10],[85,2,2,10,12]]],[2,3,3,12,15,[[96,2,2,12,14],[111,1,1,14,15]]],[3,15,13,15,28,[[121,1,1,15,16],[131,4,3,16,19],[134,7,6,19,25],[147,3,3,25,28]]],[4,2,2,28,30,[[164,2,2,28,30]]],[14,1,1,30,31,[[410,1,1,30,31]]],[15,1,1,31,32,[[422,1,1,31,32]]],[25,1,1,32,33,[[849,1,1,32,33]]]],[2197,2198,2363,2364,2395,2396,2397,2536,2552,2555,2569,2572,2893,2911,3381,3801,4172,4173,4174,4268,4281,4283,4284,4285,4286,4693,4705,4716,5251,5257,12226,12588,21710]]],["offerings",[11,11,[[3,2,2,0,2,[[134,2,2,0,2]]],[4,1,1,2,3,[[164,1,1,2,3]]],[9,1,1,3,4,[[267,1,1,3,4]]],[13,2,2,4,6,[[397,2,2,4,6]]],[15,3,3,6,9,[[422,1,1,6,7],[424,1,1,7,8],[425,1,1,8,9]]],[25,1,1,9,10,[[821,1,1,9,10]]],[38,1,1,10,11,[[927,1,1,10,11]]]],[4265,4276,5246,8043,11864,11866,12586,12668,12676,20935,23128]]]]},{"k":"H8642","v":[["oblation",[1,1,[[25,1,1,0,1,[[849,1,1,0,1]]]],[21714]]]]},{"k":"H8643","v":[["*",[36,33,[[2,2,2,0,2,[[112,1,1,0,1],[114,1,1,1,2]]],[3,6,5,2,7,[[126,3,2,2,4],[139,1,1,4,5],[145,1,1,5,6],[147,1,1,6,7]]],[5,2,2,7,9,[[192,2,2,7,9]]],[8,3,2,9,11,[[239,3,2,9,11]]],[9,1,1,11,12,[[272,1,1,11,12]]],[12,1,1,12,13,[[352,1,1,12,13]]],[13,2,2,13,15,[[379,1,1,13,14],[381,1,1,14,15]]],[14,4,3,15,18,[[405,4,3,15,18]]],[17,3,3,18,21,[[443,1,1,18,19],[468,1,1,19,20],[474,1,1,20,21]]],[18,5,5,21,26,[[504,1,1,21,22],[510,1,1,22,23],[524,1,1,23,24],[566,1,1,24,25],[627,1,1,25,26]]],[23,3,3,26,29,[[748,1,1,26,27],[764,1,1,27,28],[793,1,1,28,29]]],[25,1,1,29,30,[[822,1,1,29,30]]],[29,2,2,30,32,[[879,1,1,30,31],[880,1,1,31,32]]],[35,1,1,32,33,[[906,1,1,32,33]]]],[3426,3478,3993,3994,4437,4609,4670,5954,5969,7302,7303,8172,10819,11465,11504,12108,12109,12110,13050,13676,13859,14291,14369,14630,15341,16399,19046,19438,20129,20966,22378,22381,22803]]],["+",[1,1,[[14,1,1,0,1,[[405,1,1,0,1]]]],[12109]]],["alarm",[6,5,[[3,3,2,0,2,[[126,3,2,0,2]]],[23,2,2,2,4,[[748,1,1,2,3],[793,1,1,3,4]]],[35,1,1,4,5,[[906,1,1,4,5]]]],[3993,3994,19046,20129,22803]]],["blow",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4670]]],["joy",[2,2,[[17,1,1,0,1,[[468,1,1,0,1]]],[18,1,1,1,2,[[504,1,1,1,2]]]],[13676,14291]]],["jubile",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3478]]],["noise",[1,1,[[18,1,1,0,1,[[510,1,1,0,1]]]],[14369]]],["rejoicing",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13050]]],["shout",[10,8,[[3,1,1,0,1,[[139,1,1,0,1]]],[5,2,2,1,3,[[192,2,2,1,3]]],[8,3,2,3,5,[[239,3,2,3,5]]],[14,3,2,5,7,[[405,3,2,5,7]]],[18,1,1,7,8,[[524,1,1,7,8]]]],[4437,5954,5969,7302,7303,12108,12110,14630]]],["shouting",[8,8,[[9,1,1,0,1,[[272,1,1,0,1]]],[12,1,1,1,2,[[352,1,1,1,2]]],[13,1,1,2,3,[[381,1,1,2,3]]],[17,1,1,3,4,[[474,1,1,3,4]]],[23,1,1,4,5,[[764,1,1,4,5]]],[25,1,1,5,6,[[822,1,1,5,6]]],[29,2,2,6,8,[[879,1,1,6,7],[880,1,1,7,8]]]],[8172,10819,11504,13859,19438,20966,22378,22381]]],["sound",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15341]]],["sounding",[2,2,[[13,1,1,0,1,[[379,1,1,0,1]]],[18,1,1,1,2,[[627,1,1,1,2]]]],[11465,16399]]],["trumpets",[2,2,[[2,1,1,0,1,[[112,1,1,0,1]]],[3,1,1,1,2,[[145,1,1,1,2]]]],[3426,4609]]]]},{"k":"H8644","v":[["medicine",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21691]]]]},{"k":"H8645","v":[["cypress",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18547]]]]},{"k":"H8646","v":[["*",[13,11,[[0,9,7,0,7,[[10,9,7,0,7]]],[3,2,2,7,9,[[149,2,2,7,9]]],[5,1,1,9,10,[[210,1,1,9,10]]],[12,1,1,10,11,[[338,1,1,10,11]]]],[290,291,292,293,294,297,298,4787,4788,6478,10278]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4788]]],["Tarah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4787]]],["Terah",[11,9,[[0,9,7,0,7,[[10,9,7,0,7]]],[5,1,1,7,8,[[210,1,1,7,8]]],[12,1,1,8,9,[[338,1,1,8,9]]]],[290,291,292,293,294,297,298,6478,10278]]]]},{"k":"H8647","v":[["Tirhanah",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10354]]]]},{"k":"H8648","v":[["*",[4,4,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]],[26,2,2,2,4,[[853,1,1,2,3],[854,1,1,3,4]]]],[12134,12168,21866,21905]]],["+",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[12168,21866]]],["second",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12134]]],["two",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21905]]]]},{"k":"H8649","v":[["*",[6,6,[[6,1,1,0,1,[[219,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[23,3,3,2,5,[[752,1,1,2,3],[758,1,1,3,4],[767,1,1,4,5]]],[35,1,1,5,6,[[908,1,1,5,6]]]],[6785,16016,19158,19307,19510,22833]]],["deceit",[4,4,[[18,1,1,0,1,[[596,1,1,0,1]]],[23,3,3,1,4,[[752,1,1,1,2],[758,1,1,2,3],[767,1,1,3,4]]]],[16016,19158,19307,19510]]],["deceitful",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22833]]],["privily",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6785]]]]},{"k":"H8650","v":[["*",[3,3,[[22,2,2,0,2,[[708,1,1,0,1],[711,1,1,1,2]]],[25,1,1,2,3,[[828,1,1,2,3]]]],[18234,18302,21126]]],["beacon",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18234]]],["mast",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18302]]],["masts",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21126]]]]},{"k":"H8651","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21807,21833]]],["gate",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21807]]],["mouth",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21833]]]]},{"k":"H8652","v":[["porters",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12197]]]]},{"k":"H8653","v":[["*",[3,3,[[18,1,1,0,1,[[537,1,1,0,1]]],[22,2,2,1,3,[[729,2,2,1,3]]]],[14810,18690,18695]]],["astonishment",[1,1,[[18,1,1,0,1,[[537,1,1,0,1]]]],[14810]]],["trembling",[2,2,[[22,2,2,0,2,[[729,2,2,0,2]]]],[18690,18695]]]]},{"k":"H8654","v":[["Tirathites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10361]]]]},{"k":"H8655","v":[["*",[15,15,[[0,3,3,0,3,[[30,3,3,0,3]]],[6,5,5,3,8,[[227,1,1,3,4],[228,4,4,4,8]]],[8,3,3,8,11,[[250,1,1,8,9],[254,2,2,9,11]]],[11,1,1,11,12,[[335,1,1,11,12]]],[25,1,1,12,13,[[822,1,1,12,13]]],[27,1,1,13,14,[[864,1,1,13,14]]],[37,1,1,14,15,[[920,1,1,14,15]]]],[892,907,908,6985,7007,7010,7011,7013,7583,7719,7722,10189,20965,22132,23018]]],["idolatry",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7583]]],["idols",[1,1,[[37,1,1,0,1,[[920,1,1,0,1]]]],[23018]]],["image",[2,2,[[8,2,2,0,2,[[254,2,2,0,2]]]],[7719,7722]]],["images",[5,5,[[0,3,3,0,3,[[30,3,3,0,3]]],[11,1,1,3,4,[[335,1,1,3,4]]],[25,1,1,4,5,[[822,1,1,4,5]]]],[892,907,908,10189,20965]]],["teraphim",[6,6,[[6,5,5,0,5,[[227,1,1,0,1],[228,4,4,1,5]]],[27,1,1,5,6,[[864,1,1,5,6]]]],[6985,7007,7010,7011,7013,22132]]]]},{"k":"H8656","v":[["*",[18,17,[[3,3,3,0,3,[[142,1,1,0,1],[143,1,1,1,2],[152,1,1,2,3]]],[5,2,2,3,5,[[198,1,1,3,4],[203,1,1,4,5]]],[10,10,9,5,14,[[304,1,1,5,6],[305,2,2,6,8],[306,7,6,8,14]]],[11,2,2,14,16,[[327,2,2,14,16]]],[21,1,1,16,17,[[676,1,1,16,17]]]],[4522,4555,4890,6154,6278,9235,9270,9282,9289,9291,9292,9298,9300,9306,9939,9941,17618]]],["+",[2,2,[[11,2,2,0,2,[[327,2,2,0,2]]]],[9939,9941]]],["Tirzah",[16,15,[[3,3,3,0,3,[[142,1,1,0,1],[143,1,1,1,2],[152,1,1,2,3]]],[5,2,2,3,5,[[198,1,1,3,4],[203,1,1,4,5]]],[10,10,9,5,14,[[304,1,1,5,6],[305,2,2,6,8],[306,7,6,8,14]]],[21,1,1,14,15,[[676,1,1,14,15]]]],[4522,4555,4890,6154,6278,9235,9270,9282,9289,9291,9292,9298,9300,9306,17618]]]]},{"k":"H8657","v":[["*",[3,3,[[4,1,1,0,1,[[171,1,1,0,1]]],[16,2,2,1,3,[[427,1,1,1,2],[431,1,1,2,3]]]],[5410,12745,12795]]],["+",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5410]]],["Teresh",[2,2,[[16,2,2,0,2,[[427,1,1,0,1],[431,1,1,1,2]]]],[12745,12795]]]]},{"k":"H8658","v":[["beryl",[7,7,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[21,1,1,2,3,[[675,1,1,2,3]]],[25,3,3,3,6,[[802,1,1,3,4],[811,1,1,4,5],[829,1,1,5,6]]],[26,1,1,6,7,[[859,1,1,6,7]]]],[2313,2677,17612,20480,20642,21170,22021]]]]},{"k":"H8659","v":[["*",[28,24,[[0,1,1,0,1,[[9,1,1,0,1]]],[10,3,2,1,3,[[300,2,1,1,2],[312,1,1,2,3]]],[12,2,2,3,5,[[338,1,1,3,4],[344,1,1,4,5]]],[13,4,3,5,8,[[375,2,1,5,6],[386,2,2,6,8]]],[16,1,1,8,9,[[426,1,1,8,9]]],[18,2,2,9,11,[[525,1,1,9,10],[549,1,1,10,11]]],[22,7,7,11,18,[[680,1,1,11,12],[701,4,4,12,16],[738,1,1,16,17],[744,1,1,17,18]]],[23,1,1,18,19,[[754,1,1,18,19]]],[25,3,3,19,22,[[828,2,2,19,21],[839,1,1,21,22]]],[31,4,2,22,24,[[889,3,1,22,23],[892,1,1,23,24]]]],[238,9101,9528,10259,10545,11385,11623,11624,12716,14641,15010,17701,18078,18083,18087,18091,18830,18941,19210,21133,21146,21438,22534,22570]]],["+",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19210]]],["Tarshish",[23,20,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[13,4,3,2,5,[[375,2,1,2,3],[386,2,2,3,5]]],[16,1,1,5,6,[[426,1,1,5,6]]],[18,2,2,6,8,[[525,1,1,6,7],[549,1,1,7,8]]],[22,7,7,8,15,[[680,1,1,8,9],[701,4,4,9,13],[738,1,1,13,14],[744,1,1,14,15]]],[25,3,3,15,18,[[828,2,2,15,17],[839,1,1,17,18]]],[31,4,2,18,20,[[889,3,1,18,19],[892,1,1,19,20]]]],[238,10259,11385,11623,11624,12716,14641,15010,17701,18078,18083,18087,18091,18830,18941,21133,21146,21438,22534,22570]]],["Tharshish",[4,3,[[10,3,2,0,2,[[300,2,1,0,1],[312,1,1,1,2]]],[12,1,1,2,3,[[344,1,1,2,3]]]],[9101,9528,10545]]]]},{"k":"H8660","v":[["Tirshatha",[5,5,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,4,4,1,5,[[419,2,2,1,3],[420,1,1,3,4],[422,1,1,4,5]]]],[12090,12485,12490,12502,12550]]]]},{"k":"H8661","v":[["Tartan",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[698,1,1,1,2]]]],[10041,18030]]]]},{"k":"H8662","v":[["Tartak",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10014]]]]},{"k":"H8663","v":[["*",[4,4,[[17,2,2,0,2,[[471,1,1,0,1],[474,1,1,1,2]]],[22,1,1,2,3,[[700,1,1,2,3]]],[37,1,1,3,4,[[914,1,1,3,4]]]],[13765,13841,18054,22929]]],["crying",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13841]]],["noise",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13765]]],["shoutings",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22929]]],["stirs",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18054]]]]},{"k":"H8664","v":[["Tishbite",[6,6,[[10,3,3,0,3,[[307,1,1,0,1],[311,2,2,1,3]]],[11,3,3,3,6,[[313,2,2,3,5],[321,1,1,5,6]]]],[9318,9468,9479,9536,9541,9792]]]]},{"k":"H8665","v":[["broidered",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2297]]]]},{"k":"H8666","v":[["*",[8,8,[[8,1,1,0,1,[[242,1,1,0,1]]],[9,1,1,1,2,[[277,1,1,1,2]]],[10,2,2,2,4,[[310,2,2,2,4]]],[12,1,1,4,5,[[357,1,1,4,5]]],[13,1,1,5,6,[[402,1,1,5,6]]],[17,2,2,6,8,[[456,1,1,6,7],[469,1,1,7,8]]]],[7369,8260,9430,9434,10927,12003,13389,13719]]],["answers",[2,2,[[17,2,2,0,2,[[456,1,1,0,1],[469,1,1,1,2]]]],[13389,13719]]],["expired",[3,3,[[9,1,1,0,1,[[277,1,1,0,1]]],[12,1,1,1,2,[[357,1,1,1,2]]],[13,1,1,2,3,[[402,1,1,2,3]]]],[8260,10927,12003]]],["return",[3,3,[[8,1,1,0,1,[[242,1,1,0,1]]],[10,2,2,1,3,[[310,2,2,1,3]]]],[7369,9430,9434]]]]},{"k":"H8667","v":[["+",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2851]]]]},{"k":"H8668","v":[["*",[34,32,[[6,1,1,0,1,[[225,1,1,0,1]]],[8,3,3,1,4,[[246,2,2,1,3],[254,1,1,3,4]]],[9,3,3,4,7,[[285,1,1,4,5],[289,2,2,5,7]]],[11,3,2,7,9,[[317,1,1,7,8],[325,2,1,8,9]]],[12,2,2,9,11,[[348,1,1,9,10],[356,1,1,10,11]]],[13,1,1,11,12,[[372,1,1,11,12]]],[18,13,13,12,25,[[510,1,1,12,13],[514,1,1,13,14],[515,1,1,14,15],[517,2,2,15,17],[528,1,1,17,18],[537,1,1,18,19],[548,1,1,19,20],[585,1,1,20,21],[596,2,2,21,23],[621,1,1,23,24],[623,1,1,24,25]]],[19,3,3,25,28,[[638,1,1,25,26],[648,1,1,26,27],[651,1,1,27,28]]],[22,3,2,28,30,[[723,1,1,28,29],[724,2,1,29,30]]],[23,1,1,30,31,[[747,1,1,30,31]]],[24,1,1,31,32,[[799,1,1,31,32]]]],[6947,7454,7458,7711,8513,8663,8665,9648,9888,10687,10919,11323,14383,14489,14512,14535,14541,14705,14818,14991,15754,15939,15979,16315,16344,16702,17015,17085,18578,18599,19025,20380]]],["+",[1,1,[[12,1,1,0,1,[[356,1,1,0,1]]]],[10919]]],["deliverance",[5,4,[[6,1,1,0,1,[[225,1,1,0,1]]],[11,3,2,1,3,[[317,1,1,1,2],[325,2,1,2,3]]],[12,1,1,3,4,[[348,1,1,3,4]]]],[6947,9648,9888,10687]]],["help",[4,4,[[8,1,1,0,1,[[246,1,1,0,1]]],[18,3,3,1,4,[[537,1,1,1,2],[585,1,1,2,3],[623,1,1,3,4]]]],[7454,14818,15754,16344]]],["safety",[4,4,[[18,1,1,0,1,[[510,1,1,0,1]]],[19,3,3,1,4,[[638,1,1,1,2],[648,1,1,2,3],[651,1,1,3,4]]]],[14383,16702,17015,17085]]],["salvation",[17,16,[[8,2,2,0,2,[[246,1,1,0,1],[254,1,1,1,2]]],[13,1,1,2,3,[[372,1,1,2,3]]],[18,9,9,3,12,[[514,1,1,3,4],[515,1,1,4,5],[517,2,2,5,7],[528,1,1,7,8],[548,1,1,8,9],[596,2,2,9,11],[621,1,1,11,12]]],[22,3,2,12,14,[[723,1,1,12,13],[724,2,1,13,14]]],[23,1,1,14,15,[[747,1,1,14,15]]],[24,1,1,15,16,[[799,1,1,15,16]]]],[7458,7711,11323,14489,14512,14535,14541,14705,14991,15939,15979,16315,18578,18599,19025,20380]]],["victory",[3,3,[[9,3,3,0,3,[[285,1,1,0,1],[289,2,2,1,3]]]],[8513,8663,8665]]]]},{"k":"H8669","v":[["desire",[3,3,[[0,2,2,0,2,[[2,1,1,0,1],[3,1,1,1,2]]],[21,1,1,2,3,[[677,1,1,2,3]]]],[71,86,17637]]]]},{"k":"H8670","v":[["present",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7398]]]]},{"k":"H8671","v":[["ninth",[18,17,[[2,1,1,0,1,[[114,1,1,0,1]]],[3,1,1,1,2,[[123,1,1,1,2]]],[11,2,2,2,4,[[329,1,1,2,3],[337,1,1,3,4]]],[12,5,4,4,8,[[349,1,1,4,5],[361,1,1,5,6],[362,1,1,6,7],[364,2,1,7,8]]],[14,1,1,8,9,[[412,1,1,8,9]]],[23,4,4,9,13,[[780,2,2,9,11],[783,1,1,11,12],[796,1,1,12,13]]],[25,1,1,13,14,[[825,1,1,13,14]]],[36,2,2,14,16,[[910,2,2,14,16]]],[37,1,1,16,17,[[917,1,1,16,17]]]],[3491,3910,9989,10223,10732,11026,11062,11121,12261,19851,19864,19924,20280,21057,22865,22873,22963]]]]},{"k":"H8672","v":[["*",[58,57,[[0,13,12,0,12,[[4,7,6,0,6],[8,1,1,6,7],[10,3,3,7,10],[16,2,2,10,12]]],[1,1,1,12,13,[[87,1,1,12,13]]],[2,2,2,13,15,[[112,1,1,13,14],[114,1,1,14,15]]],[3,4,4,15,19,[[117,1,1,15,16],[118,1,1,16,17],[145,1,1,17,18],[150,1,1,18,19]]],[4,1,1,19,20,[[155,1,1,19,20]]],[5,7,7,20,27,[[199,1,1,20,21],[200,1,1,21,22],[201,3,3,22,25],[205,1,1,25,26],[207,1,1,26,27]]],[6,2,2,27,29,[[214,2,2,27,29]]],[9,2,2,29,31,[[268,1,1,29,30],[290,1,1,30,31]]],[11,8,8,31,39,[[326,1,1,31,32],[327,2,2,32,34],[329,1,1,34,35],[330,2,2,35,37],[337,2,2,37,39]]],[12,4,4,39,43,[[340,1,1,39,40],[346,1,1,40,41],[361,1,1,41,42],[362,1,1,42,43]]],[13,3,3,43,46,[[382,1,1,43,44],[391,1,1,44,45],[395,1,1,45,46]]],[14,4,4,46,50,[[403,1,1,46,47],[404,3,3,47,50]]],[15,4,4,50,54,[[419,2,2,50,52],[423,2,2,52,54]]],[23,3,3,54,57,[[783,1,1,54,55],[796,2,2,55,57]]]],[110,113,116,119,125,132,234,285,290,291,398,421,2657,3434,3477,3627,3671,4634,4829,4986,6161,6189,6234,6246,6256,6359,6397,6602,6612,8079,8700,9898,9938,9942,9984,10026,10034,10225,10230,10369,10624,11031,11072,11521,11705,11792,12025,12035,12063,12069,12458,12459,12589,12596,19925,20282,20288]]],["+",[7,7,[[0,1,1,0,1,[[10,1,1,0,1]]],[5,1,1,1,2,[[205,1,1,1,2]]],[9,1,1,2,3,[[268,1,1,2,3]]],[11,1,1,3,4,[[337,1,1,3,4]]],[12,2,2,4,6,[[361,1,1,4,5],[362,1,1,5,6]]],[23,1,1,6,7,[[796,1,1,6,7]]]],[291,6359,8079,10230,11031,11072,20288]]],["nine",[45,44,[[0,12,11,0,11,[[4,7,6,0,6],[8,1,1,6,7],[10,2,2,7,9],[16,2,2,9,11]]],[1,1,1,11,12,[[87,1,1,11,12]]],[2,1,1,12,13,[[114,1,1,12,13]]],[3,4,4,13,17,[[117,1,1,13,14],[118,1,1,14,15],[145,1,1,15,16],[150,1,1,16,17]]],[4,1,1,17,18,[[155,1,1,17,18]]],[5,6,6,18,24,[[199,1,1,18,19],[200,1,1,19,20],[201,3,3,20,23],[207,1,1,23,24]]],[6,2,2,24,26,[[214,2,2,24,26]]],[9,1,1,26,27,[[290,1,1,26,27]]],[11,5,5,27,32,[[326,1,1,27,28],[327,2,2,28,30],[329,1,1,30,31],[330,1,1,31,32]]],[12,2,2,32,34,[[340,1,1,32,33],[346,1,1,33,34]]],[13,2,2,34,36,[[391,1,1,34,35],[395,1,1,35,36]]],[14,4,4,36,40,[[403,1,1,36,37],[404,3,3,37,40]]],[15,4,4,40,44,[[419,2,2,40,42],[423,2,2,42,44]]]],[110,113,116,119,125,132,234,285,290,398,421,2657,3477,3627,3671,4634,4829,4986,6161,6189,6234,6246,6256,6397,6602,6612,8700,9898,9938,9942,9984,10026,10369,10624,11705,11792,12025,12035,12063,12069,12458,12459,12589,12596]]],["ninth",[6,6,[[2,1,1,0,1,[[112,1,1,0,1]]],[11,2,2,1,3,[[330,1,1,1,2],[337,1,1,2,3]]],[13,1,1,3,4,[[382,1,1,3,4]]],[23,2,2,4,6,[[783,1,1,4,5],[796,1,1,5,6]]]],[3434,10034,10225,11521,19925,20282]]]]},{"k":"H8673","v":[["ninety",[19,19,[[0,6,6,0,6,[[4,3,3,0,3],[16,3,3,3,6]]],[12,1,1,6,7,[[346,1,1,6,7]]],[14,4,4,7,11,[[404,3,3,7,10],[410,1,1,10,11]]],[15,3,3,11,14,[[419,3,3,11,14]]],[23,1,1,14,15,[[796,1,1,14,15]]],[25,3,3,15,18,[[805,2,2,15,17],[842,1,1,17,18]]],[26,1,1,18,19,[[861,1,1,18,19]]]],[114,122,135,398,414,421,10621,12043,12047,12085,12236,12441,12445,12480,20299,20534,20538,21538,22092]]]]},{"k":"H8674","v":[["Tatnai",[4,4,[[14,4,4,0,4,[[407,2,2,0,2],[408,2,2,2,4]]]],[12137,12140,12157,12164]]]]},{"k":"G1","v":[["Alpha",[4,4,[[65,4,4,0,4,[[1167,2,2,0,2],[1187,1,1,2,3],[1188,1,1,3,4]]]],[30705,30708,31059,31093]]]]},{"k":"G2","v":[["*",[5,5,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[57,3,3,2,5,[[1137,1,1,2,3],[1139,1,1,3,4],[1141,1,1,4,5]]]],[24898,27156,30034,30075,30109]]],["Aaron",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[57,2,2,2,4,[[1137,1,1,2,3],[1139,1,1,3,4]]]],[24898,27156,30034,30075]]],["Aaron's",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30109]]]]},{"k":"G3","v":[["Abaddon",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30851]]]]},{"k":"G4","v":[["burdensome",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28998]]]]},{"k":"G5","v":[["Abba",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]],[47,1,1,2,3,[[1094,1,1,2,3]]]],[24790,28131,29137]]]]},{"k":"G6","v":[["Abel",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[57,2,2,2,4,[[1143,1,1,2,3],[1144,1,1,3,4]]]],[23953,25456,30176,30236]]]]},{"k":"G7","v":[["Abia",[3,2,[[39,2,1,0,1,[[929,2,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]]],[23151,24898]]]]},{"k":"G8","v":[["Abiathar",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24286]]]]},{"k":"G9","v":[["Abilene",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25026]]]]},{"k":"G10","v":[["Abiud",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23157]]]]},{"k":"G11","v":[["*",[73,69,[[39,7,6,0,6,[[929,3,3,0,3],[931,2,1,3,4],[936,1,1,4,5],[950,1,1,5,6]]],[40,1,1,6,7,[[968,1,1,6,7]]],[41,15,14,7,21,[[973,2,2,7,9],[975,3,2,9,11],[985,2,2,11,13],[988,6,6,13,19],[991,1,1,19,20],[992,1,1,20,21]]],[42,11,9,21,30,[[1004,11,9,21,30]]],[43,7,7,30,37,[[1020,2,2,30,32],[1024,4,4,32,36],[1030,1,1,36,37]]],[44,9,9,37,46,[[1049,7,7,37,44],[1054,1,1,44,45],[1056,1,1,45,46]]],[46,1,1,46,47,[[1088,1,1,46,47]]],[47,9,9,47,56,[[1093,8,8,47,55],[1094,1,1,55,56]]],[57,10,10,56,66,[[1134,1,1,56,57],[1138,1,1,57,58],[1139,6,6,58,64],[1143,2,2,64,66]]],[58,2,2,66,68,[[1147,2,2,66,68]]],[59,1,1,68,69,[[1153,1,1,68,69]]]],[23145,23146,23161,23201,23356,23904,24699,24948,24966,25033,25059,25534,25546,25642,25643,25644,25645,25649,25650,25740,25816,26414,26418,26420,26421,26433,26434,26437,26438,26439,27009,27021,27118,27132,27133,27148,27388,28023,28024,28025,28031,28034,28035,28038,28162,28210,29011,29108,29109,29110,29111,29116,29118,29120,29131,29153,29993,30057,30065,30066,30068,30069,30070,30073,30180,30189,30314,30316,30430]]],["Abraham",[68,65,[[39,7,6,0,6,[[929,3,3,0,3],[931,2,1,3,4],[936,1,1,4,5],[950,1,1,5,6]]],[40,1,1,6,7,[[968,1,1,6,7]]],[41,14,13,7,20,[[973,2,2,7,9],[975,3,2,9,11],[985,2,2,11,13],[988,5,5,13,18],[991,1,1,18,19],[992,1,1,19,20]]],[42,8,7,20,27,[[1004,8,7,20,27]]],[43,7,7,27,34,[[1020,2,2,27,29],[1024,4,4,29,33],[1030,1,1,33,34]]],[44,9,9,34,43,[[1049,7,7,34,41],[1054,1,1,41,42],[1056,1,1,42,43]]],[46,1,1,43,44,[[1088,1,1,43,44]]],[47,8,8,44,52,[[1093,7,7,44,51],[1094,1,1,51,52]]],[57,10,10,52,62,[[1134,1,1,52,53],[1138,1,1,53,54],[1139,6,6,54,60],[1143,2,2,60,62]]],[58,2,2,62,64,[[1147,2,2,62,64]]],[59,1,1,64,65,[[1153,1,1,64,65]]]],[23145,23146,23161,23201,23356,23904,24699,24948,24966,25033,25059,25534,25546,25643,25644,25645,25649,25650,25740,25816,26420,26421,26433,26434,26437,26438,26439,27009,27021,27118,27132,27133,27148,27388,28023,28024,28025,28031,28034,28035,28038,28162,28210,29011,29108,29109,29110,29111,29116,29118,29120,29153,29993,30057,30065,30066,30068,30069,30070,30073,30180,30189,30314,30316,30430]]],["Abraham's",[5,5,[[41,1,1,0,1,[[988,1,1,0,1]]],[42,3,3,1,4,[[1004,3,3,1,4]]],[47,1,1,4,5,[[1093,1,1,4,5]]]],[25642,26414,26418,26420,29131]]]]},{"k":"G12","v":[["*",[9,9,[[41,1,1,0,1,[[980,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]],[65,7,7,2,9,[[1175,3,3,2,5],[1177,1,1,5,6],[1183,1,1,6,7],[1186,2,2,7,9]]]],[25276,28195,30841,30842,30851,30879,30983,31039,31041]]],["bottomless",[2,2,[[65,2,2,0,2,[[1175,2,2,0,2]]]],[30841,30842]]],["deep",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]]],[25276,28195]]],["pit",[5,5,[[65,5,5,0,5,[[1175,1,1,0,1],[1177,1,1,1,2],[1183,1,1,2,3],[1186,2,2,3,5]]]],[30851,30879,30983,31039,31041]]]]},{"k":"G13","v":[["Agabus",[2,2,[[43,2,2,0,2,[[1028,1,1,0,1],[1038,1,1,1,2]]]],[27335,27674]]]]},{"k":"G14","v":[["good",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29806]]]]},{"k":"G15","v":[["*",[11,10,[[40,1,1,0,1,[[959,1,1,0,1]]],[41,4,3,1,4,[[978,4,3,1,4]]],[43,1,1,4,5,[[1031,1,1,4,5]]],[59,4,4,5,9,[[1152,2,2,5,7],[1153,2,2,7,9]]],[63,1,1,9,10,[[1165,1,1,9,10]]]],[24292,25155,25179,25181,27431,30414,30419,30430,30441,30669]]],["doing",[2,2,[[59,2,2,0,2,[[1152,1,1,0,1],[1153,1,1,1,2]]]],[30414,30441]]],["good",[7,6,[[40,1,1,0,1,[[959,1,1,0,1]]],[41,4,3,1,4,[[978,4,3,1,4]]],[43,1,1,4,5,[[1031,1,1,4,5]]],[63,1,1,5,6,[[1165,1,1,5,6]]]],[24292,25155,25179,25181,27431,30669]]],["well",[2,2,[[59,2,2,0,2,[[1152,1,1,0,1],[1153,1,1,1,2]]]],[30419,30430]]]]},{"k":"G16","v":[["doing",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30465]]]]},{"k":"G17","v":[["well",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30413]]]]},{"k":"G18","v":[["*",[102,90,[[39,17,12,0,12,[[933,1,1,0,1],[935,4,3,1,4],[940,4,2,4,6],[947,4,2,6,8],[948,1,1,8,9],[950,1,1,9,10],[953,2,2,10,12]]],[40,3,2,12,14,[[966,3,2,12,14]]],[41,16,13,14,27,[[973,1,1,14,15],[978,3,1,15,16],[980,2,2,16,18],[982,1,1,18,19],[983,1,1,19,20],[984,2,2,20,22],[988,1,1,22,23],[990,3,2,23,25],[991,1,1,25,26],[995,1,1,26,27]]],[42,3,3,27,30,[[997,1,1,27,28],[1001,1,1,28,29],[1003,1,1,29,30]]],[43,3,3,30,33,[[1026,1,1,30,31],[1028,1,1,31,32],[1040,1,1,32,33]]],[44,21,19,33,52,[[1047,2,2,33,35],[1048,1,1,35,36],[1050,1,1,36,37],[1052,5,4,37,41],[1053,1,1,41,42],[1054,1,1,42,43],[1055,1,1,43,44],[1057,3,3,44,47],[1058,3,2,47,49],[1059,1,1,49,50],[1060,1,1,50,51],[1061,1,1,51,52]]],[46,2,2,52,54,[[1082,1,1,52,53],[1086,1,1,53,54]]],[47,2,2,54,56,[[1096,2,2,54,56]]],[48,4,4,56,60,[[1098,1,1,56,57],[1100,2,2,57,59],[1102,1,1,59,60]]],[49,1,1,60,61,[[1103,1,1,60,61]]],[50,1,1,61,62,[[1107,1,1,61,62]]],[51,2,2,62,64,[[1113,1,1,62,63],[1115,1,1,63,64]]],[52,2,2,64,66,[[1117,2,2,64,66]]],[53,4,4,66,70,[[1119,2,2,66,68],[1120,1,1,68,69],[1123,1,1,69,70]]],[54,2,2,70,72,[[1126,1,1,70,71],[1127,1,1,71,72]]],[55,4,4,72,76,[[1129,1,1,72,73],[1130,2,2,73,75],[1131,1,1,75,76]]],[56,2,2,76,78,[[1132,2,2,76,78]]],[57,3,3,78,81,[[1141,1,1,78,79],[1142,1,1,79,80],[1145,1,1,80,81]]],[58,2,2,81,83,[[1146,1,1,81,82],[1148,1,1,82,83]]],[59,7,6,83,89,[[1152,1,1,83,84],[1153,6,5,84,89]]],[63,1,1,89,90,[[1165,1,1,89,90]]]],[23279,23327,23333,23334,23523,23524,23778,23779,23807,23882,24029,24031,24605,24606,24946,25191,25253,25260,25405,25418,25477,25478,25645,25706,25707,25748,25985,26090,26239,26340,27252,27331,27735,27969,27972,27999,28054,28103,28104,28109,28110,28144,28166,28203,28247,28254,28266,28269,28270,28296,28305,28355,28887,28964,29194,29198,29239,29300,29301,29345,29367,29475,29596,29636,29677,29678,29701,29715,29726,29773,29848,29870,29908,29913,29918,29924,29944,29952,30116,30134,30262,30283,30336,30417,30434,30435,30437,30440,30445,30669]]],["+",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26340]]],["Good",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]]],[23778,24605,25706]]],["benefit",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29952]]],["good",[79,70,[[39,12,10,0,10,[[933,1,1,0,1],[935,3,3,1,4],[940,2,1,4,5],[947,2,1,5,6],[948,1,1,6,7],[950,1,1,7,8],[953,2,2,8,10]]],[40,2,1,10,11,[[966,2,1,10,11]]],[41,11,8,11,19,[[978,3,1,11,12],[980,2,2,12,14],[982,1,1,14,15],[983,1,1,15,16],[990,2,1,16,17],[991,1,1,17,18],[995,1,1,18,19]]],[42,1,1,19,20,[[1001,1,1,19,20]]],[43,3,3,20,23,[[1026,1,1,20,21],[1028,1,1,21,22],[1040,1,1,22,23]]],[44,17,15,23,38,[[1047,1,1,23,24],[1048,1,1,24,25],[1052,4,3,25,28],[1053,1,1,28,29],[1054,1,1,29,30],[1057,3,3,30,33],[1058,3,2,33,35],[1059,1,1,35,36],[1060,1,1,36,37],[1061,1,1,37,38]]],[46,2,2,38,40,[[1082,1,1,38,39],[1086,1,1,39,40]]],[47,1,1,40,41,[[1096,1,1,40,41]]],[48,3,3,41,44,[[1098,1,1,41,42],[1100,2,2,42,44]]],[49,1,1,44,45,[[1103,1,1,44,45]]],[50,1,1,45,46,[[1107,1,1,45,46]]],[51,2,2,46,48,[[1113,1,1,46,47],[1115,1,1,47,48]]],[52,2,2,48,50,[[1117,2,2,48,50]]],[53,4,4,50,54,[[1119,2,2,50,52],[1120,1,1,52,53],[1123,1,1,53,54]]],[54,2,2,54,56,[[1126,1,1,54,55],[1127,1,1,55,56]]],[55,4,4,56,60,[[1129,1,1,56,57],[1130,2,2,57,59],[1131,1,1,59,60]]],[57,1,1,60,61,[[1145,1,1,60,61]]],[58,2,2,61,63,[[1146,1,1,61,62],[1148,1,1,62,63]]],[59,7,6,63,69,[[1152,1,1,63,64],[1153,6,5,64,69]]],[63,1,1,69,70,[[1165,1,1,69,70]]]],[23279,23327,23333,23334,23524,23779,23807,23882,24029,24031,24606,25191,25253,25260,25405,25418,25707,25748,25985,26239,27252,27331,27735,27972,27999,28103,28104,28110,28144,28166,28247,28254,28266,28269,28270,28296,28305,28355,28887,28964,29198,29239,29300,29301,29367,29475,29596,29636,29677,29678,29701,29715,29726,29773,29848,29870,29908,29913,29918,29924,30262,30283,30336,30417,30434,30435,30437,30440,30445,30669]]],["goods",[2,2,[[41,2,2,0,2,[[984,2,2,0,2]]]],[25477,25478]]],["man",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28054]]],["thing",[5,5,[[39,1,1,0,1,[[947,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]],[44,1,1,2,3,[[1052,1,1,2,3]]],[48,1,1,3,4,[[1102,1,1,3,4]]],[56,1,1,4,5,[[1132,1,1,4,5]]]],[23778,26090,28109,29345,29944]]],["things",[9,9,[[39,3,3,0,3,[[935,1,1,0,1],[940,2,2,1,3]]],[41,2,2,3,5,[[973,1,1,3,4],[988,1,1,4,5]]],[44,1,1,5,6,[[1055,1,1,5,6]]],[47,1,1,6,7,[[1096,1,1,6,7]]],[57,2,2,7,9,[[1141,1,1,7,8],[1142,1,1,8,9]]]],[23327,23523,23524,24946,25645,28203,29194,30116,30134]]],["well",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27969]]]]},{"k":"G19","v":[["goodness",[4,4,[[44,1,1,0,1,[[1060,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]],[52,1,1,3,4,[[1116,1,1,3,4]]]],[28317,29184,29313,29660]]]]},{"k":"G20","v":[["*",[5,5,[[41,2,2,0,2,[[973,2,2,0,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]],[57,1,1,3,4,[[1133,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[24907,24937,26995,29972,30696]]],["gladness",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]],[57,1,1,2,3,[[1133,1,1,2,3]]]],[24907,26995,29972]]],["joy",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[24937,30696]]]]},{"k":"G21","v":[["*",[11,11,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,2,2,1,3,[[973,1,1,1,2],[982,1,1,2,3]]],[42,2,2,3,5,[[1001,1,1,3,4],[1004,1,1,4,5]]],[43,2,2,5,7,[[1019,1,1,5,6],[1033,1,1,6,7]]],[59,3,3,7,10,[[1151,2,2,7,9],[1154,1,1,9,10]]],[65,1,1,10,11,[[1185,1,1,10,11]]]],[23246,24940,25384,26245,26437,26975,27517,30380,30382,30459,31024]]],["glad",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[23246,26975]]],["joy",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30459]]],["rejoice",[4,4,[[42,1,1,0,1,[[1001,1,1,0,1]]],[59,2,2,1,3,[[1151,2,2,1,3]]],[65,1,1,3,4,[[1185,1,1,3,4]]]],[26245,30380,30382,31024]]],["rejoiced",[4,4,[[41,2,2,0,2,[[973,1,1,0,1],[982,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]],[43,1,1,3,4,[[1033,1,1,3,4]]]],[24940,25384,26437,27517]]]]},{"k":"G22","v":[["*",[4,4,[[45,4,4,0,4,[[1068,4,4,0,4]]]],[28495,28498,28519,28521]]],["unmarried",[3,3,[[45,3,3,0,3,[[1068,3,3,0,3]]]],[28495,28498,28519]]],["woman",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28521]]]]},{"k":"G23","v":[["*",[7,7,[[39,3,3,0,3,[[948,1,1,0,1],[949,1,1,1,2],[954,1,1,2,3]]],[40,3,3,3,6,[[966,2,2,3,5],[970,1,1,5,6]]],[41,1,1,6,7,[[985,1,1,6,7]]]],[23816,23841,24062,24602,24629,24758,25532]]],["displeased",[3,3,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,2,2,1,3,[[966,2,2,1,3]]]],[23841,24602,24629]]],["indignation",[4,4,[[39,2,2,0,2,[[948,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,1,1,3,4,[[985,1,1,3,4]]]],[23816,24062,24758,25532]]]]},{"k":"G24","v":[["indignation",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28927]]]]},{"k":"G25","v":[["*",[142,109,[[39,8,7,0,7,[[933,4,3,0,3],[934,1,1,3,4],[947,1,1,4,5],[950,2,2,5,7]]],[40,5,4,7,11,[[966,1,1,7,8],[968,4,3,8,11]]],[41,13,9,11,20,[[978,6,3,11,14],[979,4,3,14,17],[982,1,1,17,18],[983,1,1,18,19],[988,1,1,19,20]]],[42,37,27,20,47,[[999,3,3,20,23],[1004,1,1,23,24],[1006,1,1,24,25],[1007,1,1,25,26],[1008,1,1,26,27],[1009,6,3,27,30],[1010,10,6,30,36],[1011,5,3,36,39],[1013,4,3,39,42],[1015,1,1,42,43],[1017,4,4,43,47]]],[44,8,6,47,53,[[1053,2,2,47,49],[1054,3,2,49,51],[1058,3,2,51,53]]],[45,2,2,53,55,[[1063,1,1,53,54],[1069,1,1,54,55]]],[46,4,3,55,58,[[1086,1,1,55,56],[1088,1,1,56,57],[1089,2,1,57,58]]],[47,2,2,58,60,[[1092,1,1,58,59],[1095,1,1,59,60]]],[48,10,7,60,67,[[1097,1,1,60,61],[1098,1,1,61,62],[1101,7,4,62,66],[1102,1,1,66,67]]],[50,2,2,67,69,[[1109,2,2,67,69]]],[51,2,2,69,71,[[1111,1,1,69,70],[1114,1,1,70,71]]],[52,2,2,71,73,[[1117,2,2,71,73]]],[54,2,2,73,75,[[1128,2,2,73,75]]],[57,2,2,75,77,[[1133,1,1,75,76],[1144,1,1,76,77]]],[58,3,3,77,80,[[1146,1,1,77,78],[1147,2,2,78,80]]],[59,4,4,80,84,[[1151,2,2,80,82],[1152,1,1,82,83],[1153,1,1,83,84]]],[60,1,1,84,85,[[1157,1,1,84,85]]],[61,28,17,85,102,[[1160,3,2,85,87],[1161,6,5,87,92],[1162,15,8,92,100],[1163,4,2,100,102]]],[62,2,2,102,104,[[1164,2,2,102,104]]],[63,1,1,104,105,[[1165,1,1,104,105]]],[65,4,4,105,109,[[1167,1,1,105,106],[1169,1,1,106,107],[1178,1,1,107,108],[1186,1,1,108,109]]]],[23277,23278,23280,23306,23781,23909,23911,24609,24703,24704,24706,25173,25178,25181,25200,25237,25242,25390,25448,25633,26136,26139,26155,26423,26498,26528,26623,26631,26653,26664,26683,26689,26691,26692,26696,26699,26708,26711,26716,26782,26783,26785,26851,26905,26913,26914,26918,28144,28153,28168,28180,28274,28275,28403,28530,28963,29000,29037,29101,29176,29212,29233,29306,29329,29332,29337,29361,29529,29536,29564,29612,29674,29677,29878,29880,29972,30218,30278,30298,30301,30382,30396,30416,30434,30515,30560,30565,30589,30590,30593,30597,30602,30610,30611,30613,30614,30615,30622,30623,30624,30625,30626,30646,30650,30659,30702,30755,30902,31047]]],["+",[4,4,[[42,2,2,0,2,[[1004,1,1,0,1],[1011,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]],[54,1,1,3,4,[[1128,1,1,3,4]]]],[26423,26708,28180,29878]]],["Love",[4,4,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]],[61,1,1,3,4,[[1160,1,1,3,4]]]],[23278,25173,30416,30565]]],["beloved",[6,6,[[44,1,1,0,1,[[1054,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]],[51,1,1,3,4,[[1111,1,1,3,4]]],[52,1,1,4,5,[[1117,1,1,4,5]]],[65,1,1,5,6,[[1186,1,1,5,6]]]],[28180,29212,29529,29564,29674,31047]]],["love",[67,58,[[39,7,6,0,6,[[933,3,2,0,2],[934,1,1,2,3],[947,1,1,3,4],[950,2,2,4,6]]],[40,4,3,6,9,[[968,4,3,6,9]]],[41,9,6,9,15,[[978,5,2,9,11],[979,1,1,11,12],[982,1,1,12,13],[983,1,1,13,14],[988,1,1,14,15]]],[42,10,8,15,23,[[1006,1,1,15,16],[1009,2,1,16,17],[1010,5,4,17,21],[1011,2,2,21,23]]],[44,3,3,23,26,[[1053,1,1,23,24],[1058,2,2,24,26]]],[45,2,2,26,28,[[1063,1,1,26,27],[1069,1,1,27,28]]],[46,2,2,28,30,[[1088,1,1,28,29],[1089,1,1,29,30]]],[47,1,1,30,31,[[1095,1,1,30,31]]],[48,4,4,31,35,[[1101,3,3,31,34],[1102,1,1,34,35]]],[50,1,1,35,36,[[1109,1,1,35,36]]],[51,1,1,36,37,[[1114,1,1,36,37]]],[58,3,3,37,40,[[1146,1,1,37,38],[1147,2,2,38,40]]],[59,3,3,40,43,[[1151,2,2,40,42],[1153,1,1,42,43]]],[61,14,12,43,55,[[1160,1,1,43,44],[1161,4,4,44,48],[1162,7,6,48,54],[1163,2,1,54,55]]],[62,2,2,55,57,[[1164,2,2,55,57]]],[63,1,1,57,58,[[1165,1,1,57,58]]]],[23277,23280,23306,23781,23909,23911,24703,24704,24706,25178,25181,25237,25390,25448,25633,26498,26664,26683,26689,26691,26699,26711,26716,28144,28274,28275,28403,28530,29000,29037,29176,29329,29332,29337,29361,29536,29612,30278,30298,30301,30382,30396,30434,30565,30590,30593,30597,30602,30610,30614,30615,30622,30623,30624,30626,30646,30650,30659]]],["loved",[38,35,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[42,18,16,2,18,[[999,2,2,2,4],[1007,1,1,4,5],[1008,1,1,5,6],[1009,4,3,6,9],[1010,2,2,9,11],[1011,2,2,11,13],[1013,3,2,13,15],[1015,1,1,15,16],[1017,2,2,16,18]]],[44,2,2,18,20,[[1053,1,1,18,19],[1054,1,1,19,20]]],[46,1,1,20,21,[[1089,1,1,20,21]]],[47,1,1,21,22,[[1092,1,1,21,22]]],[48,3,3,22,25,[[1098,1,1,22,23],[1101,2,2,23,25]]],[52,1,1,25,26,[[1117,1,1,25,26]]],[54,1,1,26,27,[[1128,1,1,26,27]]],[57,1,1,27,28,[[1133,1,1,27,28]]],[60,1,1,28,29,[[1157,1,1,28,29]]],[61,4,3,29,32,[[1162,4,3,29,32]]],[65,3,3,32,35,[[1167,1,1,32,33],[1169,1,1,33,34],[1178,1,1,34,35]]]],[24609,25242,26136,26139,26528,26623,26631,26653,26664,26689,26696,26708,26711,26782,26785,26851,26905,26918,28153,28168,29037,29101,29233,29306,29329,29677,29880,29972,30515,30613,30614,30622,30702,30755,30902]]],["lovedst",[1,1,[[42,1,1,0,1,[[1013,1,1,0,1]]]],[26783]]],["lovest",[2,2,[[42,2,2,0,2,[[1017,2,2,0,2]]]],[26913,26914]]],["loveth",[20,17,[[41,2,2,0,2,[[979,2,2,0,2]]],[42,4,3,2,5,[[999,1,1,2,3],[1010,3,2,3,5]]],[44,1,1,5,6,[[1058,1,1,5,6]]],[46,1,1,6,7,[[1086,1,1,6,7]]],[48,2,1,7,8,[[1101,2,1,7,8]]],[57,1,1,8,9,[[1144,1,1,8,9]]],[61,9,8,9,17,[[1160,1,1,9,10],[1161,2,2,10,12],[1162,4,4,12,16],[1163,2,1,16,17]]]],[25200,25242,26155,26689,26692,28274,28963,29332,30218,30560,30589,30593,30610,30611,30623,30624,30625]]]]},{"k":"G26","v":[["*",[116,106,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,7,6,2,8,[[1001,1,1,2,3],[1009,1,1,3,4],[1011,4,3,4,7],[1013,1,1,7,8]]],[44,9,8,8,16,[[1050,2,2,8,10],[1053,2,2,10,12],[1057,1,1,12,13],[1058,2,1,13,14],[1059,1,1,14,15],[1060,1,1,15,16]]],[45,14,11,16,27,[[1065,1,1,16,17],[1069,1,1,17,18],[1074,9,6,18,24],[1075,1,1,24,25],[1077,2,2,25,27]]],[46,9,9,27,36,[[1079,2,2,27,29],[1082,1,1,29,30],[1083,1,1,30,31],[1085,3,3,31,34],[1090,2,2,34,36]]],[47,3,3,36,39,[[1095,3,3,36,39]]],[48,10,10,39,49,[[1097,2,2,39,41],[1098,1,1,41,42],[1099,2,2,42,44],[1100,3,3,44,47],[1101,1,1,47,48],[1102,1,1,48,49]]],[49,4,4,49,53,[[1103,2,2,49,51],[1104,2,2,51,53]]],[50,5,5,53,58,[[1107,3,3,53,56],[1108,1,1,56,57],[1109,1,1,57,58]]],[51,5,5,58,63,[[1111,1,1,58,59],[1113,2,2,59,61],[1115,2,2,61,63]]],[52,3,3,63,66,[[1116,1,1,63,64],[1117,1,1,64,65],[1118,1,1,65,66]]],[53,5,5,66,71,[[1119,2,2,66,68],[1120,1,1,68,69],[1122,1,1,69,70],[1124,1,1,70,71]]],[54,4,4,71,75,[[1125,2,2,71,73],[1126,1,1,73,74],[1127,1,1,74,75]]],[55,1,1,75,76,[[1130,1,1,75,76]]],[56,3,3,76,79,[[1132,3,3,76,79]]],[57,2,2,79,81,[[1138,1,1,79,80],[1142,1,1,80,81]]],[59,3,2,81,83,[[1154,2,1,81,82],[1155,1,1,82,83]]],[60,1,1,83,84,[[1156,1,1,83,84]]],[61,18,14,84,98,[[1160,2,2,84,86],[1161,3,3,86,89],[1162,12,8,89,97],[1163,1,1,97,98]]],[62,2,2,98,100,[[1164,2,2,98,100]]],[63,1,1,100,101,[[1165,1,1,100,101]]],[64,3,3,101,104,[[1166,3,3,101,104]]],[65,2,2,104,106,[[1168,2,2,104,106]]]],[23969,25447,26252,26665,26708,26709,26712,26785,28052,28055,28151,28155,28254,28276,28295,28333,28454,28528,28666,28667,28668,28669,28673,28678,28679,28790,28800,28828,28832,28891,28904,28939,28940,28956,29054,29057,29168,29175,29184,29210,29221,29233,29268,29270,29274,29287,29288,29306,29360,29370,29378,29392,29393,29469,29473,29478,29496,29531,29563,29596,29602,29629,29634,29652,29671,29683,29701,29710,29731,29759,29799,29816,29822,29849,29863,29910,29943,29945,29947,30054,30157,30454,30479,30486,30555,30565,30580,30595,30596,30610,30611,30612,30613,30615,30619,30620,30621,30627,30648,30651,30664,30674,30684,30693,30721,30736]]],["+",[2,2,[[44,1,1,0,1,[[1059,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[28295,29947]]],["Charity",[2,2,[[45,2,2,0,2,[[1074,2,2,0,2]]]],[28669,28673]]],["Love",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28276]]],["charity",[26,23,[[45,10,8,0,8,[[1069,1,1,0,1],[1074,7,5,1,6],[1075,1,1,6,7],[1077,1,1,7,8]]],[50,1,1,8,9,[[1109,1,1,8,9]]],[51,1,1,9,10,[[1113,1,1,9,10]]],[52,1,1,10,11,[[1116,1,1,10,11]]],[53,3,3,11,14,[[1119,1,1,11,12],[1120,1,1,12,13],[1122,1,1,13,14]]],[54,2,2,14,16,[[1126,1,1,14,15],[1127,1,1,15,16]]],[55,1,1,16,17,[[1130,1,1,16,17]]],[59,3,2,17,19,[[1154,2,1,17,18],[1155,1,1,18,19]]],[60,1,1,19,20,[[1156,1,1,19,20]]],[63,1,1,20,21,[[1165,1,1,20,21]]],[64,1,1,21,22,[[1166,1,1,21,22]]],[65,1,1,22,23,[[1168,1,1,22,23]]]],[28528,28666,28667,28668,28669,28678,28679,28790,29531,29596,29652,29701,29731,29759,29849,29863,29910,30454,30479,30486,30664,30684,30736]]],["dear",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29478]]],["love",[84,79,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,7,6,2,8,[[1001,1,1,2,3],[1009,1,1,3,4],[1011,4,3,4,7],[1013,1,1,7,8]]],[44,7,7,8,15,[[1050,2,2,8,10],[1053,2,2,10,12],[1057,1,1,12,13],[1058,1,1,13,14],[1060,1,1,14,15]]],[45,2,2,15,17,[[1065,1,1,15,16],[1077,1,1,16,17]]],[46,9,9,17,26,[[1079,2,2,17,19],[1082,1,1,19,20],[1083,1,1,20,21],[1085,3,3,21,24],[1090,2,2,24,26]]],[47,3,3,26,29,[[1095,3,3,26,29]]],[48,10,10,29,39,[[1097,2,2,29,31],[1098,1,1,31,32],[1099,2,2,32,34],[1100,3,3,34,37],[1101,1,1,37,38],[1102,1,1,38,39]]],[49,4,4,39,43,[[1103,2,2,39,41],[1104,2,2,41,43]]],[50,3,3,43,46,[[1107,2,2,43,45],[1108,1,1,45,46]]],[51,4,4,46,50,[[1111,1,1,46,47],[1113,1,1,47,48],[1115,2,2,48,50]]],[52,2,2,50,52,[[1117,1,1,50,51],[1118,1,1,51,52]]],[53,2,2,52,54,[[1119,1,1,52,53],[1124,1,1,53,54]]],[54,2,2,54,56,[[1125,2,2,54,56]]],[56,2,2,56,58,[[1132,2,2,56,58]]],[57,2,2,58,60,[[1138,1,1,58,59],[1142,1,1,59,60]]],[61,18,14,60,74,[[1160,2,2,60,62],[1161,3,3,62,65],[1162,12,8,65,73],[1163,1,1,73,74]]],[62,2,2,74,76,[[1164,2,2,74,76]]],[64,2,2,76,78,[[1166,2,2,76,78]]],[65,1,1,78,79,[[1168,1,1,78,79]]]],[23969,25447,26252,26665,26708,26709,26712,26785,28052,28055,28151,28155,28254,28276,28333,28454,28800,28828,28832,28891,28904,28939,28940,28956,29054,29057,29168,29175,29184,29210,29221,29233,29268,29270,29274,29287,29288,29306,29360,29370,29378,29392,29393,29469,29473,29496,29563,29602,29629,29634,29671,29683,29710,29799,29816,29822,29943,29945,30054,30157,30555,30565,30580,30595,30596,30610,30611,30612,30613,30615,30619,30620,30621,30627,30648,30651,30674,30693,30721]]]]},{"k":"G27","v":[["*",[62,61,[[39,3,3,0,3,[[931,1,1,0,1],[940,1,1,1,2],[945,1,1,2,3]]],[40,3,3,3,6,[[957,1,1,3,4],[965,1,1,4,5],[968,1,1,5,6]]],[41,3,3,6,9,[[975,1,1,6,7],[981,1,1,7,8],[992,1,1,8,9]]],[43,1,1,9,10,[[1032,1,1,9,10]]],[44,7,7,10,17,[[1046,1,1,10,11],[1056,1,1,11,12],[1057,1,1,12,13],[1061,4,4,13,17]]],[45,4,4,17,21,[[1065,2,2,17,19],[1071,1,1,19,20],[1076,1,1,20,21]]],[46,2,2,21,23,[[1084,1,1,21,22],[1089,1,1,22,23]]],[48,2,2,23,25,[[1101,1,1,23,24],[1102,1,1,24,25]]],[49,3,2,25,27,[[1104,1,1,25,26],[1106,2,1,26,27]]],[50,4,4,27,31,[[1107,1,1,27,28],[1110,3,3,28,31]]],[51,1,1,31,32,[[1112,1,1,31,32]]],[53,1,1,32,33,[[1124,1,1,32,33]]],[54,1,1,33,34,[[1125,1,1,33,34]]],[56,3,3,34,37,[[1132,3,3,34,37]]],[57,1,1,37,38,[[1138,1,1,37,38]]],[58,3,3,38,41,[[1146,2,2,38,40],[1147,1,1,40,41]]],[59,2,2,41,43,[[1152,1,1,41,42],[1154,1,1,42,43]]],[60,6,6,43,49,[[1156,1,1,43,44],[1158,5,5,44,49]]],[61,5,5,49,54,[[1161,2,2,49,51],[1162,3,3,51,54]]],[63,4,4,54,58,[[1165,4,4,54,58]]],[64,3,3,58,61,[[1166,3,3,58,61]]]],[23209,23507,23705,24226,24545,24679,25047,25336,25792,27467,27937,28237,28264,28341,28344,28345,28348,28447,28450,28581,28776,28917,29041,29305,29358,29403,29443,29472,29549,29551,29556,29578,29790,29811,29939,29940,29954,30053,30282,30285,30298,30410,30458,30496,30523,30530,30536,30537,30539,30581,30600,30604,30610,30614,30659,30660,30663,30669,30675,30689,30692]]],["Beloved",[10,10,[[59,1,1,0,1,[[1154,1,1,0,1]]],[61,5,5,1,6,[[1161,2,2,1,3],[1162,3,3,3,6]]],[63,3,3,6,9,[[1165,3,3,6,9]]],[64,1,1,9,10,[[1166,1,1,9,10]]]],[30458,30581,30600,30604,30610,30614,30660,30663,30669,30675]]],["beloved",[46,45,[[39,3,3,0,3,[[931,1,1,0,1],[940,1,1,1,2],[945,1,1,2,3]]],[40,2,2,3,5,[[957,1,1,3,4],[965,1,1,4,5]]],[41,3,3,5,8,[[975,1,1,5,6],[981,1,1,6,7],[992,1,1,7,8]]],[43,1,1,8,9,[[1032,1,1,8,9]]],[44,6,6,9,15,[[1046,1,1,9,10],[1056,1,1,10,11],[1057,1,1,11,12],[1061,3,3,12,15]]],[45,4,4,15,19,[[1065,2,2,15,17],[1071,1,1,17,18],[1076,1,1,18,19]]],[46,2,2,19,21,[[1084,1,1,19,20],[1089,1,1,20,21]]],[48,1,1,21,22,[[1102,1,1,21,22]]],[49,3,2,22,24,[[1104,1,1,22,23],[1106,2,1,23,24]]],[50,3,3,24,27,[[1110,3,3,24,27]]],[53,1,1,27,28,[[1124,1,1,27,28]]],[54,1,1,28,29,[[1125,1,1,28,29]]],[56,3,3,29,32,[[1132,3,3,29,32]]],[57,1,1,32,33,[[1138,1,1,32,33]]],[58,3,3,33,36,[[1146,2,2,33,35],[1147,1,1,35,36]]],[59,1,1,36,37,[[1152,1,1,36,37]]],[60,6,6,37,43,[[1156,1,1,37,38],[1158,5,5,38,43]]],[64,2,2,43,45,[[1166,2,2,43,45]]]],[23209,23507,23705,24226,24545,25047,25336,25792,27467,27937,28237,28264,28344,28345,28348,28447,28450,28581,28776,28917,29041,29358,29403,29443,29549,29551,29556,29790,29811,29939,29940,29954,30053,30282,30285,30298,30410,30496,30523,30530,30536,30537,30539,30689,30692]]],["dear",[3,3,[[48,1,1,0,1,[[1101,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]]],[29305,29472,29578]]],["wellbeloved",[3,3,[[40,1,1,0,1,[[968,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]],[63,1,1,2,3,[[1165,1,1,2,3]]]],[24679,28341,30659]]]]},{"k":"G28","v":[["Agar",[2,2,[[47,2,2,0,2,[[1094,2,2,0,2]]]],[29155,29156]]]]},{"k":"G29","v":[["*",[3,3,[[39,2,2,0,2,[[933,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]]],[23275,24161,24847]]],["+",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23275]]],["compel",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24847]]],["compelled",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24161]]]]},{"k":"G30","v":[["vessels",[2,2,[[39,2,2,0,2,[[941,1,1,0,1],[953,1,1,1,2]]]],[23587,24012]]]]},{"k":"G31","v":[["message",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30590]]]]},{"k":"G32","v":[["*",[186,181,[[39,20,20,0,20,[[929,2,2,0,2],[930,2,2,2,4],[932,2,2,4,6],[939,1,1,6,7],[941,3,3,7,10],[944,1,1,10,11],[946,1,1,11,12],[950,1,1,12,13],[952,2,2,13,15],[953,2,2,15,17],[954,1,1,17,18],[956,2,2,18,20]]],[40,6,6,20,26,[[957,2,2,20,22],[964,1,1,22,23],[968,1,1,23,24],[969,2,2,24,26]]],[41,26,26,26,52,[[973,10,10,26,36],[974,5,5,36,41],[976,1,1,41,42],[979,2,2,42,44],[981,2,2,44,46],[984,2,2,46,48],[987,1,1,48,49],[988,1,1,49,50],[994,1,1,50,51],[996,1,1,51,52]]],[42,4,4,52,56,[[997,1,1,52,53],[1001,1,1,53,54],[1008,1,1,54,55],[1016,1,1,55,56]]],[43,21,21,56,77,[[1022,1,1,56,57],[1023,1,1,57,58],[1024,4,4,58,62],[1025,1,1,62,63],[1027,3,3,63,66],[1028,1,1,66,67],[1029,7,7,67,74],[1040,2,2,74,76],[1044,1,1,76,77]]],[44,1,1,77,78,[[1053,1,1,77,78]]],[45,4,4,78,82,[[1065,1,1,78,79],[1067,1,1,79,80],[1072,1,1,80,81],[1074,1,1,81,82]]],[46,2,2,82,84,[[1088,1,1,82,83],[1089,1,1,83,84]]],[47,3,3,84,87,[[1091,1,1,84,85],[1093,1,1,85,86],[1094,1,1,86,87]]],[50,1,1,87,88,[[1108,1,1,87,88]]],[52,1,1,88,89,[[1116,1,1,88,89]]],[53,2,2,89,91,[[1121,1,1,89,90],[1123,1,1,90,91]]],[57,13,12,91,103,[[1133,6,5,91,96],[1134,5,5,96,101],[1144,1,1,101,102],[1145,1,1,102,103]]],[58,1,1,103,104,[[1147,1,1,103,104]]],[59,2,2,104,106,[[1151,1,1,104,105],[1153,1,1,105,106]]],[60,2,2,106,108,[[1157,2,2,106,108]]],[64,1,1,108,109,[[1166,1,1,108,109]]],[65,76,72,109,181,[[1167,2,2,109,111],[1168,4,4,111,115],[1169,4,4,115,119],[1171,2,2,119,121],[1173,4,3,121,124],[1174,11,10,124,134],[1175,6,5,134,139],[1176,6,6,139,145],[1177,2,2,145,147],[1178,3,2,147,149],[1180,8,8,149,157],[1181,4,4,157,161],[1182,8,8,161,169],[1183,2,2,169,171],[1184,2,2,171,173],[1185,1,1,173,174],[1186,1,1,174,175],[1187,3,3,175,178],[1188,3,3,178,181]]]],[23164,23168,23182,23188,23215,23220,23469,23578,23580,23588,23699,23737,23902,23988,23993,24039,24049,24107,24197,24200,24217,24228,24538,24698,24744,24749,24904,24906,24911,24912,24919,24921,24923,24927,24928,24931,24982,24983,24986,24988,24994,25073,25219,25222,25327,25353,25467,25468,25598,25642,25907,26014,26095,26214,26609,26879,27078,27116,27146,27151,27154,27169,27202,27262,27266,27281,27320,27344,27345,27346,27347,27348,27352,27360,27742,27743,27878,28154,28442,28470,28610,28666,29003,29029,29065,29121,29145,29512,29656,29747,29784,29967,29968,29969,29970,29976,29979,29982,29984,29986,29993,30234,30243,30318,30386,30446,30504,30511,30678,30698,30717,30718,30725,30729,30735,30747,30751,30753,30760,30781,30790,30811,30812,30821,30829,30830,30831,30832,30833,30834,30835,30837,30839,30840,30841,30851,30853,30854,30855,30862,30866,30868,30869,30870,30871,30873,30887,30898,30900,30932,30934,30935,30936,30941,30943,30944,30945,30947,30952,30953,30954,30955,30957,30958,30959,30962,30964,30966,30971,30976,30982,30994,31014,31034,31039,31062,31065,31070,31086,31088,31096]]],["+",[3,3,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]],[57,1,1,2,3,[[1133,1,1,2,3]]]],[23215,25073,29970]]],["angel",[97,97,[[39,6,6,0,6,[[929,2,2,0,2],[930,2,2,2,4],[956,2,2,4,6]]],[41,15,15,6,21,[[973,10,10,6,16],[974,4,4,16,20],[994,1,1,20,21]]],[42,2,2,21,23,[[1001,1,1,21,22],[1008,1,1,22,23]]],[43,20,20,23,43,[[1022,1,1,23,24],[1023,1,1,24,25],[1024,3,3,25,28],[1025,1,1,28,29],[1027,3,3,29,32],[1028,1,1,32,33],[1029,7,7,33,40],[1040,2,2,40,42],[1044,1,1,42,43]]],[46,1,1,43,44,[[1088,1,1,43,44]]],[47,2,2,44,46,[[1091,1,1,44,45],[1094,1,1,45,46]]],[65,51,51,46,97,[[1167,1,1,46,47],[1168,4,4,47,51],[1169,3,3,51,54],[1171,1,1,54,55],[1173,1,1,55,56],[1174,7,7,56,63],[1175,4,4,63,67],[1176,5,5,67,72],[1177,2,2,72,74],[1180,7,7,74,81],[1182,7,7,81,88],[1183,1,1,88,89],[1184,2,2,89,91],[1185,1,1,91,92],[1186,1,1,92,93],[1187,1,1,93,94],[1188,3,3,94,97]]]],[23164,23168,23182,23188,24197,24200,24904,24906,24911,24912,24919,24921,24923,24927,24928,24931,24982,24983,24986,24994,25907,26214,26609,27078,27116,27146,27151,27154,27202,27262,27266,27281,27320,27344,27345,27346,27347,27348,27352,27360,27742,27743,27878,29003,29065,29145,30698,30718,30725,30729,30735,30747,30753,30760,30781,30812,30830,30832,30834,30835,30837,30839,30840,30841,30851,30853,30854,30862,30866,30868,30869,30870,30873,30887,30932,30934,30935,30941,30943,30944,30945,30957,30958,30959,30962,30964,30966,30971,30982,30994,31014,31034,31039,31070,31086,31088,31096]]],["angel's",[2,2,[[65,2,2,0,2,[[1174,1,1,0,1],[1176,1,1,1,2]]]],[30831,30871]]],["angels",[77,76,[[39,12,12,0,12,[[932,1,1,0,1],[941,3,3,1,4],[944,1,1,4,5],[946,1,1,5,6],[950,1,1,6,7],[952,2,2,7,9],[953,2,2,9,11],[954,1,1,11,12]]],[40,5,5,12,17,[[957,1,1,12,13],[964,1,1,13,14],[968,1,1,14,15],[969,2,2,15,17]]],[41,7,7,17,24,[[974,1,1,17,18],[981,1,1,18,19],[984,2,2,19,21],[987,1,1,21,22],[988,1,1,22,23],[996,1,1,23,24]]],[42,2,2,24,26,[[997,1,1,24,25],[1016,1,1,25,26]]],[43,1,1,26,27,[[1024,1,1,26,27]]],[44,1,1,27,28,[[1053,1,1,27,28]]],[45,4,4,28,32,[[1065,1,1,28,29],[1067,1,1,29,30],[1072,1,1,30,31],[1074,1,1,31,32]]],[47,1,1,32,33,[[1093,1,1,32,33]]],[50,1,1,33,34,[[1108,1,1,33,34]]],[52,1,1,34,35,[[1116,1,1,34,35]]],[53,2,2,35,37,[[1121,1,1,35,36],[1123,1,1,36,37]]],[57,12,12,37,49,[[1133,5,5,37,42],[1134,5,5,42,47],[1144,1,1,47,48],[1145,1,1,48,49]]],[59,2,2,49,51,[[1151,1,1,49,50],[1153,1,1,50,51]]],[60,2,2,51,53,[[1157,2,2,51,53]]],[64,1,1,53,54,[[1166,1,1,53,54]]],[65,23,22,54,76,[[1167,1,1,54,55],[1169,1,1,55,56],[1171,1,1,56,57],[1173,3,3,57,60],[1174,3,3,60,63],[1175,2,2,63,65],[1178,3,2,65,67],[1180,1,1,67,68],[1181,4,4,68,72],[1182,1,1,72,73],[1183,1,1,73,74],[1187,2,2,74,76]]]],[23220,23578,23580,23588,23699,23737,23902,23988,23993,24039,24049,24107,24228,24538,24698,24744,24749,24988,25327,25467,25468,25598,25642,26014,26095,26879,27169,28154,28442,28470,28610,28666,29121,29512,29656,29747,29784,29967,29968,29969,29970,29976,29979,29982,29984,29986,29993,30234,30243,30386,30446,30504,30511,30678,30717,30751,30790,30811,30812,30821,30829,30833,30840,30854,30855,30898,30900,30936,30947,30952,30953,30954,30955,30976,31062,31065]]],["messenger",[4,4,[[39,1,1,0,1,[[939,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[979,1,1,2,3]]],[46,1,1,3,4,[[1089,1,1,3,4]]]],[23469,24217,25222,29029]]],["messengers",[3,3,[[41,2,2,0,2,[[979,1,1,0,1],[981,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[25219,25353,30318]]]]},{"k":"G33","v":[["to",[2,2,[[58,2,2,0,2,[[1149,1,1,0,1],[1150,1,1,1,2]]]],[30350,30355]]]]},{"k":"G34","v":[["herd",[8,7,[[39,4,3,0,3,[[936,4,3,0,3]]],[40,2,2,3,5,[[961,2,2,3,5]]],[41,2,2,5,7,[[980,2,2,5,7]]]],[23375,23376,23377,24375,24377,25277,25278]]]]},{"k":"G35","v":[["descent",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30067]]]]},{"k":"G36","v":[["things",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28391]]]]},{"k":"G37","v":[["*",[29,26,[[39,3,3,0,3,[[934,1,1,0,1],[951,2,2,1,3]]],[41,1,1,3,4,[[983,1,1,3,4]]],[42,4,3,4,7,[[1006,1,1,4,5],[1013,3,2,5,7]]],[43,2,2,7,9,[[1037,1,1,7,8],[1043,1,1,8,9]]],[44,1,1,9,10,[[1060,1,1,9,10]]],[45,4,3,10,13,[[1062,1,1,10,11],[1067,1,1,11,12],[1068,2,1,12,13]]],[48,1,1,13,14,[[1101,1,1,13,14]]],[51,1,1,14,15,[[1115,1,1,14,15]]],[53,1,1,15,16,[[1122,1,1,15,16]]],[54,1,1,16,17,[[1126,1,1,16,17]]],[57,7,6,17,23,[[1134,2,1,17,18],[1141,1,1,18,19],[1142,3,3,19,22],[1145,1,1,22,23]]],[59,1,1,23,24,[[1153,1,1,23,24]]],[64,1,1,24,25,[[1166,1,1,24,25]]],[65,1,1,25,26,[[1188,1,1,25,26]]]],[23291,23935,23937,25407,26517,26776,26778,27658,27841,28319,28365,28478,28501,29330,29644,29752,29848,29988,30118,30143,30147,30162,30253,30439,30673,31091]]],["Hallowed",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23291,25407]]],["Sanctify",[1,1,[[42,1,1,0,1,[[1013,1,1,0,1]]]],[26776]]],["holy",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31091]]],["sanctified",[16,15,[[42,2,2,0,2,[[1006,1,1,0,1],[1013,1,1,1,2]]],[43,2,2,2,4,[[1037,1,1,2,3],[1043,1,1,3,4]]],[44,1,1,4,5,[[1060,1,1,4,5]]],[45,4,3,5,8,[[1062,1,1,5,6],[1067,1,1,6,7],[1068,2,1,7,8]]],[53,1,1,8,9,[[1122,1,1,8,9]]],[54,1,1,9,10,[[1126,1,1,9,10]]],[57,4,4,10,14,[[1134,1,1,10,11],[1142,3,3,11,14]]],[64,1,1,14,15,[[1166,1,1,14,15]]]],[26517,26778,27658,27841,28319,28365,28478,28501,29752,29848,29988,30143,30147,30162,30673]]],["sanctifieth",[4,4,[[39,2,2,0,2,[[951,2,2,0,2]]],[57,2,2,2,4,[[1134,1,1,2,3],[1141,1,1,3,4]]]],[23935,23937,29988,30118]]],["sanctify",[5,5,[[42,1,1,0,1,[[1013,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]],[51,1,1,2,3,[[1115,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]],[59,1,1,4,5,[[1153,1,1,4,5]]]],[26778,29330,29644,30253,30439]]]]},{"k":"G38","v":[["*",[10,10,[[44,2,2,0,2,[[1051,2,2,0,2]]],[45,1,1,2,3,[[1062,1,1,2,3]]],[51,3,3,3,6,[[1114,3,3,3,6]]],[52,1,1,6,7,[[1117,1,1,6,7]]],[53,1,1,7,8,[[1120,1,1,7,8]]],[57,1,1,8,9,[[1144,1,1,8,9]]],[59,1,1,9,10,[[1151,1,1,9,10]]]],[28087,28090,28393,29606,29607,29610,29674,29731,30226,30376]]],["holiness",[5,5,[[44,2,2,0,2,[[1051,2,2,0,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]],[53,1,1,3,4,[[1120,1,1,3,4]]],[57,1,1,4,5,[[1144,1,1,4,5]]]],[28087,28090,29610,29731,30226]]],["sanctification",[5,5,[[45,1,1,0,1,[[1062,1,1,0,1]]],[51,2,2,1,3,[[1114,2,2,1,3]]],[52,1,1,3,4,[[1117,1,1,3,4]]],[59,1,1,4,5,[[1151,1,1,4,5]]]],[28393,29606,29607,29674,30376]]]]},{"k":"G39","v":[["*",[11,10,[[57,11,10,0,10,[[1140,1,1,0,1],[1141,8,7,1,8],[1142,1,1,8,9],[1145,1,1,9,10]]]],[30094,30106,30107,30108,30113,30117,30129,30130,30152,30252]]],["+",[2,1,[[57,2,1,0,1,[[1141,2,1,0,1]]]],[30108]]],["all",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30113]]],["holiest",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30152]]],["place",[2,2,[[57,2,2,0,2,[[1141,2,2,0,2]]]],[30117,30130]]],["places",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30129]]],["sanctuary",[4,4,[[57,4,4,0,4,[[1140,1,1,0,1],[1141,2,2,1,3],[1145,1,1,3,4]]]],[30094,30106,30107,30252]]]]},{"k":"G40","v":[["*",[229,219,[[39,11,11,0,11,[[929,2,2,0,2],[931,1,1,2,3],[932,1,1,3,4],[935,1,1,4,5],[940,1,1,5,6],[952,1,1,6,7],[953,1,1,7,8],[955,2,2,8,10],[956,1,1,10,11]]],[40,7,7,11,18,[[957,2,2,11,13],[959,1,1,13,14],[962,1,1,14,15],[964,1,1,15,16],[968,1,1,16,17],[969,1,1,17,18]]],[41,19,18,18,36,[[973,8,7,18,25],[974,3,3,25,28],[975,2,2,28,30],[976,2,2,30,32],[981,1,1,32,33],[983,1,1,33,34],[984,2,2,34,36]]],[42,5,5,36,41,[[997,1,1,36,37],[1003,1,1,37,38],[1010,1,1,38,39],[1013,1,1,39,40],[1016,1,1,40,41]]],[43,54,53,41,94,[[1018,4,4,41,45],[1019,3,3,45,48],[1020,2,2,48,50],[1021,4,4,50,54],[1022,2,2,54,56],[1023,3,3,56,59],[1024,3,3,59,62],[1025,4,4,62,66],[1026,5,5,66,71],[1027,5,5,71,76],[1028,3,3,76,79],[1030,4,4,79,83],[1032,2,2,83,85],[1033,1,1,85,86],[1036,3,2,86,88],[1037,2,2,88,90],[1038,2,2,90,92],[1043,1,1,92,93],[1045,1,1,93,94]]],[44,20,18,94,112,[[1046,2,2,94,96],[1050,1,1,96,97],[1052,2,1,97,98],[1053,1,1,98,99],[1054,1,1,99,100],[1056,2,1,100,101],[1057,2,2,101,103],[1059,1,1,103,104],[1060,5,5,104,109],[1061,3,3,109,112]]],[45,13,13,112,125,[[1062,1,1,112,113],[1063,1,1,113,114],[1064,1,1,114,115],[1067,3,3,115,118],[1068,2,2,118,120],[1073,1,1,120,121],[1075,1,1,121,122],[1077,3,3,122,125]]],[46,8,8,125,133,[[1078,1,1,125,126],[1083,1,1,126,127],[1085,1,1,127,128],[1086,2,2,128,130],[1090,3,3,130,133]]],[48,15,15,133,148,[[1097,5,5,133,138],[1098,2,2,138,140],[1099,3,3,140,143],[1100,2,2,143,145],[1101,2,2,145,147],[1102,1,1,147,148]]],[49,3,3,148,151,[[1103,1,1,148,149],[1106,2,2,149,151]]],[50,6,6,151,157,[[1107,5,5,151,156],[1109,1,1,156,157]]],[51,6,6,157,163,[[1111,2,2,157,159],[1113,1,1,159,160],[1114,1,1,160,161],[1115,2,2,161,163]]],[52,1,1,163,164,[[1116,1,1,163,164]]],[53,1,1,164,165,[[1123,1,1,164,165]]],[54,2,2,165,167,[[1125,2,2,165,167]]],[55,1,1,167,168,[[1131,1,1,167,168]]],[56,2,2,168,170,[[1132,2,2,168,170]]],[57,8,8,170,178,[[1134,1,1,170,171],[1135,2,2,171,173],[1138,2,2,173,175],[1141,1,1,175,176],[1142,1,1,176,177],[1145,1,1,177,178]]],[59,8,6,178,184,[[1151,5,3,178,181],[1152,2,2,181,183],[1153,1,1,183,184]]],[60,6,5,184,189,[[1156,3,2,184,186],[1157,1,1,186,187],[1158,2,2,187,189]]],[61,2,2,189,191,[[1160,1,1,189,190],[1163,1,1,190,191]]],[64,4,3,191,194,[[1166,4,3,191,194]]],[65,27,25,194,219,[[1169,1,1,194,195],[1170,3,1,195,196],[1171,1,1,196,197],[1172,1,1,197,198],[1174,2,2,198,200],[1177,2,2,200,202],[1179,2,2,202,204],[1180,2,2,204,206],[1181,1,1,206,207],[1182,1,1,207,208],[1183,1,1,208,209],[1184,2,2,209,211],[1185,1,1,211,212],[1186,2,2,212,214],[1187,2,2,214,216],[1188,3,3,216,219]]]],[23162,23164,23203,23214,23322,23521,23972,24039,24181,24182,24214,24223,24239,24317,24427,24538,24709,24728,24908,24928,24934,24942,24960,24963,24965,24996,24998,24999,25041,25047,25064,25097,25327,25418,25469,25471,26077,26367,26694,26770,26889,26925,26928,26931,26939,26953,26982,26987,27010,27017,27030,27049,27052,27053,27062,27091,27104,27106,27114,27149,27167,27171,27191,27193,27194,27195,27229,27233,27247,27248,27257,27281,27297,27303,27304,27306,27322,27323,27331,27364,27366,27371,27414,27450,27470,27489,27587,27591,27649,27654,27675,27692,27833,27924,27932,27937,28052,28103,28143,28156,28225,28246,28258,28297,28316,28319,28328,28329,28334,28338,28351,28352,28365,28407,28427,28468,28469,28486,28501,28521,28637,28711,28777,28791,28796,28801,28904,28936,28957,28968,29055,29056,29057,29207,29210,29219,29221,29224,29248,29250,29256,29259,29269,29284,29302,29307,29331,29355,29362,29463,29464,29467,29469,29477,29487,29491,29529,29565,29566,29603,29611,29647,29648,29659,29773,29818,29823,29928,29943,29945,29981,29996,30002,30048,30054,30113,30148,30265,30386,30389,30390,30404,30408,30429,30497,30500,30521,30524,30533,30570,30631,30675,30686,30692,30753,30776,30787,30803,30830,30831,30874,30890,30915,30918,30936,30938,30949,30960,30981,31013,31017,31025,31044,31047,31055,31063,31086,31091,31099]]],["+",[1,1,[[65,1,1,0,1,[[1186,1,1,0,1]]]],[31047]]],["Holy",[92,91,[[39,5,5,0,5,[[929,2,2,0,2],[931,1,1,2,3],[940,1,1,3,4],[956,1,1,4,5]]],[40,4,4,5,9,[[957,1,1,5,6],[959,1,1,6,7],[968,1,1,7,8],[969,1,1,8,9]]],[41,12,12,9,21,[[973,4,4,9,13],[974,2,2,13,15],[975,2,2,15,17],[976,1,1,17,18],[983,1,1,18,19],[984,2,2,19,21]]],[42,5,5,21,26,[[997,1,1,21,22],[1003,1,1,22,23],[1010,1,1,23,24],[1013,1,1,24,25],[1016,1,1,25,26]]],[43,42,41,26,67,[[1018,4,4,26,30],[1019,3,3,30,33],[1021,2,2,33,35],[1022,2,2,35,37],[1023,2,2,37,39],[1024,2,2,39,41],[1025,4,4,41,45],[1026,2,2,45,47],[1027,4,4,47,51],[1028,3,3,51,54],[1030,4,4,54,58],[1032,2,2,58,60],[1033,1,1,60,61],[1036,3,2,61,63],[1037,2,2,63,65],[1038,1,1,65,66],[1045,1,1,66,67]]],[44,5,5,67,72,[[1050,1,1,67,68],[1054,1,1,68,69],[1059,1,1,69,70],[1060,2,2,70,72]]],[45,3,3,72,75,[[1063,1,1,72,73],[1067,1,1,73,74],[1073,1,1,74,75]]],[46,2,2,75,77,[[1083,1,1,75,76],[1090,1,1,76,77]]],[51,2,2,77,79,[[1111,2,2,77,79]]],[54,1,1,79,80,[[1125,1,1,79,80]]],[55,1,1,80,81,[[1131,1,1,80,81]]],[57,5,5,81,86,[[1134,1,1,81,82],[1135,1,1,82,83],[1138,1,1,83,84],[1141,1,1,84,85],[1142,1,1,85,86]]],[59,1,1,86,87,[[1151,1,1,86,87]]],[60,1,1,87,88,[[1156,1,1,87,88]]],[61,1,1,88,89,[[1163,1,1,88,89]]],[64,1,1,89,90,[[1166,1,1,89,90]]],[65,1,1,90,91,[[1170,1,1,90,91]]]],[23162,23164,23203,23521,24214,24223,24317,24709,24728,24908,24928,24934,24960,24998,24999,25041,25047,25064,25418,25469,25471,26077,26367,26694,26770,26889,26925,26928,26931,26939,26953,26982,26987,27030,27053,27062,27091,27104,27106,27167,27171,27191,27193,27194,27195,27233,27247,27297,27303,27304,27306,27322,27323,27331,27364,27366,27371,27414,27450,27470,27489,27587,27591,27649,27654,27675,27924,28052,28156,28297,28316,28319,28407,28486,28637,28904,29057,29565,29566,29823,29928,29981,30002,30048,30113,30148,30386,30500,30631,30692,30776]]],["One",[4,4,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]],[43,1,1,2,3,[[1020,1,1,2,3]]],[61,1,1,3,4,[[1160,1,1,3,4]]]],[24239,25097,27010,30570]]],["holy",[70,65,[[39,5,5,0,5,[[932,1,1,0,1],[935,1,1,1,2],[952,1,1,2,3],[953,1,1,3,4],[955,1,1,4,5]]],[40,2,2,5,7,[[962,1,1,5,6],[964,1,1,6,7]]],[41,5,5,7,12,[[973,3,3,7,10],[974,1,1,10,11],[981,1,1,11,12]]],[43,7,7,12,19,[[1020,1,1,12,13],[1021,2,2,13,15],[1023,1,1,15,16],[1024,1,1,16,17],[1027,1,1,17,18],[1038,1,1,18,19]]],[44,7,5,19,24,[[1046,1,1,19,20],[1052,2,1,20,21],[1056,2,1,21,22],[1057,1,1,22,23],[1061,1,1,23,24]]],[45,4,4,24,28,[[1064,1,1,24,25],[1068,2,2,25,27],[1077,1,1,27,28]]],[46,1,1,28,29,[[1090,1,1,28,29]]],[48,6,6,29,35,[[1097,2,2,29,31],[1098,1,1,31,32],[1099,1,1,32,33],[1100,1,1,33,34],[1101,1,1,34,35]]],[50,2,2,35,37,[[1107,1,1,35,36],[1109,1,1,36,37]]],[51,3,3,37,40,[[1114,1,1,37,38],[1115,2,2,38,40]]],[54,1,1,40,41,[[1125,1,1,40,41]]],[57,1,1,41,42,[[1135,1,1,41,42]]],[59,7,5,42,47,[[1151,4,2,42,44],[1152,2,2,44,46],[1153,1,1,46,47]]],[60,5,5,47,52,[[1156,2,2,47,49],[1157,1,1,49,50],[1158,2,2,50,52]]],[64,1,1,52,53,[[1166,1,1,52,53]]],[65,13,12,53,65,[[1169,1,1,53,54],[1170,2,1,54,55],[1172,1,1,55,56],[1177,1,1,56,57],[1180,1,1,57,58],[1184,1,1,58,59],[1186,1,1,59,60],[1187,2,2,60,62],[1188,3,3,62,65]]]],[23214,23322,23972,24039,24182,24427,24538,24942,24963,24965,24996,25327,27017,27049,27052,27114,27149,27281,27692,27932,28103,28225,28246,28352,28427,28501,28521,28796,29055,29210,29219,29250,29256,29302,29331,29487,29529,29611,29647,29648,29818,29996,30389,30390,30404,30408,30429,30497,30500,30521,30524,30533,30692,30753,30776,30803,30874,30936,31013,31044,31055,31063,31086,31091,31099]]],["saint",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29463]]],["saints",[59,59,[[39,1,1,0,1,[[955,1,1,0,1]]],[43,4,4,1,5,[[1026,3,3,1,4],[1043,1,1,4,5]]],[44,8,8,5,13,[[1046,1,1,5,6],[1053,1,1,6,7],[1057,1,1,7,8],[1060,3,3,8,11],[1061,2,2,11,13]]],[45,6,6,13,19,[[1062,1,1,13,14],[1067,2,2,14,16],[1075,1,1,16,17],[1077,2,2,17,19]]],[46,5,5,19,24,[[1078,1,1,19,20],[1085,1,1,20,21],[1086,2,2,21,23],[1090,1,1,23,24]]],[48,9,9,24,33,[[1097,3,3,24,27],[1098,1,1,27,28],[1099,2,2,28,30],[1100,1,1,30,31],[1101,1,1,31,32],[1102,1,1,32,33]]],[49,2,2,33,35,[[1103,1,1,33,34],[1106,1,1,34,35]]],[50,4,4,35,39,[[1107,4,4,35,39]]],[51,1,1,39,40,[[1113,1,1,39,40]]],[52,1,1,40,41,[[1116,1,1,40,41]]],[56,2,2,41,43,[[1132,2,2,41,43]]],[57,2,2,43,45,[[1138,1,1,43,44],[1145,1,1,44,45]]],[64,2,2,45,47,[[1166,2,2,45,47]]],[65,12,12,47,59,[[1171,1,1,47,48],[1174,2,2,48,50],[1177,1,1,50,51],[1179,2,2,51,53],[1180,1,1,53,54],[1181,1,1,54,55],[1182,1,1,55,56],[1183,1,1,56,57],[1184,1,1,57,58],[1185,1,1,58,59]]]],[24181,27229,27248,27257,27833,27937,28143,28258,28328,28329,28334,28338,28351,28365,28468,28469,28711,28777,28791,28801,28936,28957,28968,29056,29207,29221,29224,29248,29259,29269,29284,29307,29355,29362,29464,29467,29469,29477,29491,29603,29659,29943,29945,30054,30265,30675,30686,30787,30830,30831,30890,30915,30918,30938,30949,30960,30981,31017,31025]]],["saints'",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29773]]],["thing",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24928]]]]},{"k":"G41","v":[["holiness",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30222]]]]},{"k":"G42","v":[["holiness",[3,3,[[44,1,1,0,1,[[1046,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]],[51,1,1,2,3,[[1113,1,1,2,3]]]],[27934,28917,29603]]]]},{"k":"G43","v":[["arms",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25001]]]]},{"k":"G44","v":[["hook",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23727]]]]},{"k":"G45","v":[["*",[4,4,[[43,3,3,0,3,[[1044,3,3,0,3]]],[57,1,1,3,4,[[1138,1,1,3,4]]]],[27884,27885,27895,30063]]],["anchor",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30063]]],["anchors",[3,3,[[43,3,3,0,3,[[1044,3,3,0,3]]]],[27884,27885,27895]]]]},{"k":"G46","v":[["new",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]]],[23395,24281]]]]},{"k":"G47","v":[["purity",[2,2,[[53,2,2,0,2,[[1122,1,1,0,1],[1123,1,1,1,2]]]],[29759,29765]]]]},{"k":"G48","v":[["*",[7,7,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,3,3,1,4,[[1038,2,2,1,3],[1041,1,1,3,4]]],[58,1,1,4,5,[[1149,1,1,4,5]]],[59,1,1,5,6,[[1151,1,1,5,6]]],[61,1,1,6,7,[[1161,1,1,6,7]]]],[26578,27688,27690,27787,30345,30396,30582]]],["purified",[2,2,[[43,1,1,0,1,[[1041,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[27787,30396]]],["purifieth",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30582]]],["purify",[3,3,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]],[58,1,1,2,3,[[1149,1,1,2,3]]]],[26578,27688,30345]]],["purifying",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27690]]]]},{"k":"G49","v":[["purification",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27690]]]]},{"k":"G50","v":[["*",[22,21,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[43,2,2,2,4,[[1030,1,1,2,3],[1034,1,1,3,4]]],[44,6,6,4,10,[[1046,1,1,4,5],[1047,1,1,5,6],[1051,1,1,6,7],[1052,1,1,7,8],[1055,1,1,8,9],[1056,1,1,9,10]]],[45,4,3,10,13,[[1071,1,1,10,11],[1073,1,1,11,12],[1075,2,1,12,13]]],[46,3,3,13,16,[[1078,1,1,13,14],[1079,1,1,14,15],[1083,1,1,15,16]]],[47,1,1,16,17,[[1091,1,1,16,17]]],[51,1,1,17,18,[[1114,1,1,17,18]]],[53,1,1,18,19,[[1119,1,1,18,19]]],[57,1,1,19,20,[[1137,1,1,19,20]]],[60,1,1,20,21,[[1157,1,1,20,21]]]],[24570,25346,27389,27546,27943,27966,28071,28092,28191,28234,28568,28635,28716,28808,28835,28907,29079,29616,29709,30032,30512]]],["+",[4,4,[[43,1,1,0,1,[[1030,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[46,2,2,2,4,[[1078,1,1,2,3],[1079,1,1,3,4]]]],[27389,27943,28808,28835]]],["ignorant",[8,7,[[44,2,2,0,2,[[1055,1,1,0,1],[1056,1,1,1,2]]],[45,4,3,2,5,[[1071,1,1,2,3],[1073,1,1,3,4],[1075,2,1,4,5]]],[51,1,1,5,6,[[1114,1,1,5,6]]],[57,1,1,6,7,[[1137,1,1,6,7]]]],[28191,28234,28568,28635,28716,29616,30032]]],["ignorantly",[2,2,[[43,1,1,0,1,[[1034,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]]],[27546,29709]]],["knowing",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27966]]],["not",[4,4,[[41,1,1,0,1,[[981,1,1,0,1]]],[44,2,2,1,3,[[1051,1,1,1,2],[1052,1,1,2,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]]],[25346,28071,28092,30512]]],["understood",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24570]]],["unknown",[2,2,[[46,1,1,0,1,[[1083,1,1,0,1]]],[47,1,1,1,2,[[1091,1,1,1,2]]]],[28907,29079]]]]},{"k":"G51","v":[["errors",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30112]]]]},{"k":"G52","v":[["ignorance",[4,4,[[43,2,2,0,2,[[1020,1,1,0,1],[1034,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[27013,27553,29290,30388]]]]},{"k":"G53","v":[["*",[8,8,[[46,2,2,0,2,[[1084,1,1,0,1],[1088,1,1,1,2]]],[49,1,1,2,3,[[1106,1,1,2,3]]],[53,1,1,3,4,[[1123,1,1,3,4]]],[55,1,1,4,5,[[1130,1,1,4,5]]],[58,1,1,5,6,[[1148,1,1,5,6]]],[59,1,1,6,7,[[1153,1,1,6,7]]],[61,1,1,7,8,[[1161,1,1,7,8]]]],[28927,28991,29450,29785,29913,30336,30426,30582]]],["chaste",[3,3,[[46,1,1,0,1,[[1088,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[28991,29913,30426]]],["clear",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28927]]],["pure",[4,4,[[49,1,1,0,1,[[1106,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]],[58,1,1,2,3,[[1148,1,1,2,3]]],[61,1,1,3,4,[[1161,1,1,3,4]]]],[29450,29785,30336,30582]]]]},{"k":"G54","v":[["pureness",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28904]]]]},{"k":"G55","v":[["sincerely",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29377]]]]},{"k":"G56","v":[["*",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[28752,30414]]],["+",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28752]]],["ignorance",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30414]]]]},{"k":"G57","v":[["UNKNOWN",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27546]]]]},{"k":"G58","v":[["*",[11,11,[[39,3,3,0,3,[[939,1,1,0,1],[948,1,1,1,2],[951,1,1,2,3]]],[40,3,3,3,6,[[962,1,1,3,4],[963,1,1,4,5],[968,1,1,5,6]]],[41,3,3,6,9,[[979,1,1,6,7],[983,1,1,7,8],[992,1,1,8,9]]],[43,2,2,9,11,[[1033,1,1,9,10],[1034,1,1,10,11]]]],[23475,23795,23925,24463,24467,24711,25227,25448,25825,27502,27540]]],["market",[2,2,[[40,1,1,0,1,[[963,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]]],[24467,27540]]],["marketplace",[3,3,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[43,1,1,2,3,[[1033,1,1,2,3]]]],[23795,25227,27502]]],["marketplaces",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24711]]],["markets",[4,4,[[39,2,2,0,2,[[939,1,1,0,1],[951,1,1,1,2]]],[41,2,2,2,4,[[983,1,1,2,3],[992,1,1,3,4]]]],[23475,23925,25448,25825]]],["streets",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24463]]]]},{"k":"G59","v":[["*",[31,31,[[39,7,7,0,7,[[941,2,2,0,2],[942,1,1,2,3],[949,1,1,3,4],[953,2,2,4,6],[955,1,1,6,7]]],[40,5,5,7,12,[[962,2,2,7,9],[967,1,1,9,10],[971,1,1,10,11],[972,1,1,11,12]]],[41,6,6,12,18,[[981,1,1,12,13],[986,2,2,13,15],[989,1,1,15,16],[991,1,1,16,17],[994,1,1,17,18]]],[42,3,3,18,21,[[1000,1,1,18,19],[1002,1,1,19,20],[1009,1,1,20,21]]],[45,3,3,21,24,[[1067,1,1,21,22],[1068,2,2,22,24]]],[60,1,1,24,25,[[1157,1,1,24,25]]],[65,6,6,25,31,[[1169,1,1,25,26],[1171,1,1,26,27],[1179,1,1,27,28],[1180,2,2,28,30],[1184,1,1,30,31]]]],[23583,23585,23612,23838,24017,24018,24136,24443,24444,24655,24872,24874,25314,25571,25572,25679,25776,25900,26164,26262,26659,28487,28510,28517,30501,30764,30788,30925,30929,30930,31004]]],["Buy",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26659]]],["bought",[13,13,[[39,3,3,0,3,[[941,1,1,0,1],[949,1,1,1,2],[955,1,1,2,3]]],[40,3,3,3,6,[[967,1,1,3,4],[971,1,1,4,5],[972,1,1,5,6]]],[41,4,4,6,10,[[986,2,2,6,8],[989,1,1,8,9],[991,1,1,9,10]]],[45,2,2,10,12,[[1067,1,1,10,11],[1068,1,1,11,12]]],[60,1,1,12,13,[[1157,1,1,12,13]]]],[23585,23838,24136,24655,24872,24874,25571,25572,25679,25776,28487,28510,30501]]],["buy",[12,12,[[39,3,3,0,3,[[942,1,1,0,1],[953,2,2,1,3]]],[40,2,2,3,5,[[962,2,2,3,5]]],[41,2,2,5,7,[[981,1,1,5,6],[994,1,1,6,7]]],[42,2,2,7,9,[[1000,1,1,7,8],[1002,1,1,8,9]]],[45,1,1,9,10,[[1068,1,1,9,10]]],[65,2,2,10,12,[[1169,1,1,10,11],[1179,1,1,11,12]]]],[23612,24017,24018,24443,24444,25314,25900,26164,26262,28517,30764,30925]]],["buyeth",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[23583,31004]]],["redeemed",[3,3,[[65,3,3,0,3,[[1171,1,1,0,1],[1180,2,2,1,3]]]],[30788,30929,30930]]]]},{"k":"G60","v":[["*",[2,2,[[43,2,2,0,2,[[1034,1,1,0,1],[1036,1,1,1,2]]]],[27528,27623]]],["+",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27623]]],["sort",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27528]]]]},{"k":"G61","v":[["draught",[2,2,[[41,2,2,0,2,[[977,2,2,0,2]]]],[25111,25116]]]]},{"k":"G62","v":[["unlearned",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27035]]]]},{"k":"G63","v":[["in",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24981]]]]},{"k":"G64","v":[["catch",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24686]]]]},{"k":"G65","v":[["*",[2,2,[[44,2,2,0,2,[[1056,2,2,0,2]]]],[28226,28233]]],["tree",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28226]]],["wild",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28233]]]]},{"k":"G66","v":[["*",[3,3,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[23196,24221,30685]]],["Raging",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30685]]],["wild",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23196,24221]]]]},{"k":"G67","v":[["Agrippa",[12,12,[[43,12,12,0,12,[[1042,5,5,0,5],[1043,7,7,5,12]]]],[27809,27818,27819,27820,27822,27824,27825,27830,27842,27850,27851,27855]]]]},{"k":"G68","v":[["*",[36,34,[[39,17,15,0,15,[[934,2,2,0,2],[941,7,6,2,8],[947,1,1,8,9],[950,1,1,9,10],[952,2,2,10,12],[955,4,3,12,15]]],[40,8,8,15,23,[[961,1,1,15,16],[962,2,2,16,18],[966,2,2,18,20],[969,1,1,20,21],[971,1,1,21,22],[972,1,1,22,23]]],[41,10,10,23,33,[[980,1,1,23,24],[981,1,1,24,25],[984,1,1,25,26],[986,1,1,26,27],[987,2,2,27,29],[989,3,3,29,32],[995,1,1,32,33]]],[43,1,1,33,34,[[1021,1,1,33,34]]]],[23310,23312,23563,23566,23570,23575,23577,23583,23791,23877,23975,23997,24136,24137,24139,24378,24443,24463,24617,24618,24733,24847,24885,25279,25313,25487,25571,25603,25613,25658,25682,25687,25961,27059]]],["+",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23877]]],["country",[8,8,[[40,5,5,0,5,[[961,1,1,0,1],[962,2,2,1,3],[971,1,1,3,4],[972,1,1,4,5]]],[41,3,3,5,8,[[980,1,1,5,6],[981,1,1,6,7],[995,1,1,7,8]]]],[24378,24443,24463,24847,24885,25279,25313,25961]]],["field",[21,19,[[39,15,13,0,13,[[934,2,2,0,2],[941,7,6,2,8],[952,2,2,8,10],[955,4,3,10,13]]],[40,1,1,13,14,[[969,1,1,13,14]]],[41,5,5,14,19,[[984,1,1,14,15],[987,1,1,15,16],[989,3,3,16,19]]]],[23310,23312,23563,23566,23570,23575,23577,23583,23975,23997,24136,24137,24139,24733,25487,25613,25658,25682,25687]]],["fields",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25603]]],["ground",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25571]]],["land",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27059]]],["lands",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,2,2,1,3,[[966,2,2,1,3]]]],[23791,24617,24618]]]]},{"k":"G69","v":[["*",[4,4,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]]],[24750,25862,29355,30258]]],["Watch",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25862]]],["watch",[2,2,[[40,1,1,0,1,[[969,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[24750,30258]]],["watching",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29355]]]]},{"k":"G70","v":[["watchings",[2,2,[[46,2,2,0,2,[[1083,1,1,0,1],[1088,1,1,1,2]]]],[28903,29016]]]]},{"k":"G71","v":[["*",[71,70,[[39,5,5,0,5,[[938,1,1,0,1],[942,1,1,1,2],[949,2,2,2,4],[954,1,1,4,5]]],[40,5,5,5,10,[[957,1,1,5,6],[967,2,2,6,8],[969,1,1,8,9],[970,1,1,9,10]]],[41,14,14,10,24,[[976,4,4,10,14],[982,1,1,14,15],[990,1,1,15,16],[991,3,3,16,19],[993,1,1,19,20],[994,1,1,20,21],[995,2,2,21,23],[996,1,1,23,24]]],[42,12,12,24,36,[[997,1,1,24,25],[1003,1,1,25,26],[1004,1,1,26,27],[1005,1,1,27,28],[1006,1,1,28,29],[1007,3,3,29,32],[1010,1,1,32,33],[1014,1,1,33,34],[1015,2,2,34,36]]],[43,27,26,36,62,[[1022,3,3,36,39],[1023,1,1,39,40],[1025,1,1,40,41],[1026,3,3,41,44],[1028,1,1,44,45],[1034,3,3,45,48],[1035,1,1,48,49],[1036,2,2,49,51],[1037,1,1,51,52],[1038,2,2,52,54],[1039,2,2,54,56],[1040,4,3,56,59],[1042,3,3,59,62]]],[44,2,2,62,64,[[1047,1,1,62,63],[1053,1,1,63,64]]],[45,1,1,64,65,[[1073,1,1,64,65]]],[47,1,1,65,66,[[1095,1,1,65,66]]],[51,1,1,66,67,[[1114,1,1,66,67]]],[54,2,2,67,69,[[1127,1,1,67,68],[1128,1,1,68,69]]],[57,1,1,69,70,[[1134,1,1,69,70]]]],[23435,23603,23828,23833,24100,24253,24642,24647,24728,24796,25064,25072,25092,25103,25397,25728,25758,25761,25766,25838,25918,25936,25967,26012,26086,26373,26384,26453,26497,26530,26538,26539,26699,26813,26829,26838,27080,27085,27086,27113,27208,27218,27237,27243,27333,27528,27538,27542,27569,27622,27623,27638,27680,27698,27709,27728,27744,27752,27765,27802,27813,27819,27966,28130,28636,29180,29617,29859,29881,29987]]],["+",[3,3,[[43,2,2,0,2,[[1036,1,1,0,1],[1039,1,1,1,2]]],[45,1,1,2,3,[[1073,1,1,2,3]]]],[27623,27709,28636]]],["away",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29859]]],["bring",[12,12,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,2,2,2,4,[[991,2,2,2,4]]],[42,2,2,4,6,[[1006,1,1,4,5],[1015,1,1,5,6]]],[43,4,4,6,10,[[1026,2,2,6,8],[1040,2,2,8,10]]],[51,1,1,10,11,[[1114,1,1,10,11]]],[54,1,1,11,12,[[1128,1,1,11,12]]]],[23828,24642,25758,25761,26497,26829,27218,27237,27744,27752,29617,29881]]],["bringing",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29987]]],["brought",[30,30,[[39,2,2,0,2,[[938,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[967,1,1,2,3]]],[41,6,6,3,9,[[976,2,2,3,5],[982,1,1,5,6],[990,1,1,6,7],[991,1,1,7,8],[993,1,1,8,9]]],[42,5,5,9,14,[[997,1,1,9,10],[1003,1,1,10,11],[1004,1,1,11,12],[1005,1,1,12,13],[1015,1,1,13,14]]],[43,16,16,14,30,[[1022,3,3,14,17],[1023,1,1,17,18],[1026,1,1,18,19],[1028,1,1,19,20],[1034,2,2,20,22],[1035,1,1,22,23],[1036,1,1,23,24],[1037,1,1,24,25],[1038,1,1,25,26],[1039,1,1,26,27],[1040,2,2,27,29],[1042,1,1,29,30]]]],[23435,23833,24647,25072,25103,25397,25728,25766,25838,26086,26373,26384,26453,26838,27080,27085,27086,27113,27243,27333,27538,27542,27569,27622,27638,27680,27728,27752,27765,27802]]],["carried",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27698]]],["forth",[2,2,[[43,2,2,0,2,[[1042,2,2,0,2]]]],[27813,27819]]],["go",[6,6,[[40,2,2,0,2,[[957,1,1,0,1],[970,1,1,1,2]]],[42,4,4,2,6,[[1007,3,3,2,5],[1010,1,1,5,6]]]],[24253,24796,26530,26538,26539,26699]]],["going",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24100]]],["is",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26012]]],["kept",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23603]]],["lead",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24728]]],["leadeth",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27966]]],["led",[9,9,[[41,5,5,0,5,[[976,2,2,0,2],[994,1,1,2,3],[995,2,2,3,5]]],[42,1,1,5,6,[[1014,1,1,5,6]]],[43,1,1,6,7,[[1025,1,1,6,7]]],[44,1,1,7,8,[[1053,1,1,7,8]]],[47,1,1,8,9,[[1095,1,1,8,9]]]],[25064,25092,25918,25936,25967,26813,27208,28130,29180]]],["out",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27528]]]]},{"k":"G72","v":[["life",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29863]]]]},{"k":"G73","v":[["*",[6,6,[[49,1,1,0,1,[[1103,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]],[53,1,1,3,4,[[1124,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]],[57,1,1,5,6,[[1144,1,1,5,6]]]],[29391,29495,29572,29800,29877,30213]]],["conflict",[2,2,[[49,1,1,0,1,[[1103,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[29391,29495]]],["contention",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29572]]],["fight",[2,2,[[53,1,1,0,1,[[1124,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]]],[29800,29877]]],["race",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30213]]]]},{"k":"G74","v":[["agony",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25908]]]]},{"k":"G75","v":[["*",[7,7,[[41,1,1,0,1,[[985,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[45,1,1,2,3,[[1070,1,1,2,3]]],[50,2,2,3,5,[[1107,1,1,3,4],[1110,1,1,4,5]]],[53,1,1,5,6,[[1124,1,1,5,6]]],[54,1,1,6,7,[[1128,1,1,6,7]]]],[25542,26821,28565,29494,29554,29800,29877]]],["+",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26821]]],["Fight",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29800]]],["Strive",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25542]]],["fervently",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29554]]],["fought",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29877]]],["mastery",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28565]]],["striving",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29494]]]]},{"k":"G76","v":[["*",[9,7,[[41,1,1,0,1,[[975,1,1,0,1]]],[44,2,1,1,2,[[1050,2,1,1,2]]],[45,3,2,2,4,[[1076,3,2,2,4]]],[53,2,2,4,6,[[1120,2,2,4,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[25063,28061,28740,28763,29729,29730,30686]]],["Adam",[8,7,[[41,1,1,0,1,[[975,1,1,0,1]]],[44,1,1,1,2,[[1050,1,1,1,2]]],[45,3,2,2,4,[[1076,3,2,2,4]]],[53,2,2,4,6,[[1120,2,2,4,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[25063,28061,28740,28763,29729,29730,30686]]],["Adam's",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28061]]]]},{"k":"G77","v":[["charge",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28558]]]]},{"k":"G78","v":[["Addi",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25053]]]]},{"k":"G79","v":[["*",[24,24,[[39,3,3,0,3,[[940,1,1,0,1],[941,1,1,1,2],[947,1,1,2,3]]],[40,4,4,3,7,[[959,1,1,3,4],[962,1,1,4,5],[966,2,2,5,7]]],[41,3,3,7,10,[[982,2,2,7,9],[986,1,1,9,10]]],[42,6,6,10,16,[[1007,5,5,10,15],[1015,1,1,15,16]]],[43,1,1,16,17,[[1040,1,1,16,17]]],[44,2,2,17,19,[[1061,2,2,17,19]]],[45,2,2,19,21,[[1068,1,1,19,20],[1070,1,1,20,21]]],[53,1,1,21,22,[[1123,1,1,21,22]]],[58,1,1,22,23,[[1147,1,1,22,23]]],[62,1,1,23,24,[[1164,1,1,23,24]]]],[23539,23595,23791,24323,24410,24617,24618,25402,25403,25579,26524,26526,26528,26551,26562,26850,27750,28337,28351,28502,28545,29765,30308,30658]]],["sister",[15,15,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[41,2,2,2,4,[[982,2,2,2,4]]],[42,5,5,4,9,[[1007,4,4,4,8],[1015,1,1,8,9]]],[44,2,2,9,11,[[1061,2,2,9,11]]],[45,2,2,11,13,[[1068,1,1,11,12],[1070,1,1,12,13]]],[58,1,1,13,14,[[1147,1,1,13,14]]],[62,1,1,14,15,[[1164,1,1,14,15]]]],[23539,24323,25402,25403,26524,26528,26551,26562,26850,28337,28351,28502,28545,30308,30658]]],["sister's",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27750]]],["sisters",[8,8,[[39,2,2,0,2,[[941,1,1,0,1],[947,1,1,1,2]]],[40,3,3,2,5,[[962,1,1,2,3],[966,2,2,3,5]]],[41,1,1,5,6,[[986,1,1,5,6]]],[42,1,1,6,7,[[1007,1,1,6,7]]],[53,1,1,7,8,[[1123,1,1,7,8]]]],[23595,23791,24410,24617,24618,25579,26526,29765]]]]},{"k":"G80","v":[["*",[346,319,[[39,39,31,0,31,[[929,2,2,0,2],[932,4,2,2,4],[933,5,4,4,8],[935,3,3,8,11],[938,4,2,11,13],[940,5,5,13,18],[941,1,1,18,19],[942,1,1,19,20],[945,1,1,20,21],[946,4,3,21,24],[947,1,1,24,25],[948,1,1,25,26],[950,4,2,26,28],[951,1,1,28,29],[953,1,1,29,30],[956,1,1,30,31]]],[40,20,17,31,48,[[957,2,2,31,33],[959,6,6,33,39],[961,1,1,39,40],[962,3,3,40,43],[966,2,2,43,45],[968,4,2,45,47],[969,2,1,47,48]]],[41,24,20,48,68,[[975,2,2,48,50],[978,5,3,50,53],[980,3,3,53,56],[984,1,1,56,57],[986,2,2,57,59],[987,2,2,59,61],[988,1,1,61,62],[989,1,1,62,63],[990,1,1,63,64],[992,4,2,64,66],[993,1,1,66,67],[994,1,1,67,68]]],[42,14,14,68,82,[[997,2,2,68,70],[998,1,1,70,71],[1002,1,1,71,72],[1003,3,3,72,75],[1007,5,5,75,80],[1016,1,1,80,81],[1017,1,1,81,82]]],[43,57,56,82,138,[[1018,2,2,82,84],[1019,2,2,84,86],[1020,2,2,86,88],[1023,1,1,88,89],[1024,6,6,89,95],[1026,2,2,95,97],[1027,1,1,97,98],[1028,3,3,98,101],[1029,2,2,101,103],[1030,3,3,103,106],[1031,1,1,106,107],[1032,11,10,107,117],[1033,2,2,117,119],[1034,3,3,119,122],[1035,2,2,122,124],[1037,1,1,124,125],[1038,3,3,125,128],[1039,3,3,128,131],[1040,3,3,131,134],[1045,4,4,134,138]]],[44,20,19,138,157,[[1046,1,1,138,139],[1052,2,2,139,141],[1053,2,2,141,143],[1054,1,1,143,144],[1055,1,1,144,145],[1056,1,1,145,146],[1057,1,1,146,147],[1059,5,4,147,151],[1060,3,3,151,154],[1061,3,3,154,157]]],[45,38,35,157,192,[[1062,4,4,157,161],[1063,1,1,161,162],[1064,1,1,162,163],[1065,1,1,163,164],[1066,1,1,164,165],[1067,4,3,165,168],[1068,4,4,168,172],[1069,4,3,172,175],[1070,1,1,175,176],[1071,1,1,176,177],[1072,2,2,177,179],[1073,1,1,179,180],[1075,4,4,180,184],[1076,4,4,184,188],[1077,5,4,188,192]]],[46,12,12,192,204,[[1078,2,2,192,194],[1079,1,1,194,195],[1085,4,4,195,199],[1086,2,2,199,201],[1088,1,1,201,202],[1089,1,1,202,203],[1090,1,1,203,204]]],[47,11,11,204,215,[[1091,3,3,204,207],[1093,1,1,207,208],[1094,3,3,208,211],[1095,2,2,211,213],[1096,2,2,213,215]]],[48,3,3,215,218,[[1102,3,3,215,218]]],[49,9,9,218,227,[[1103,2,2,218,220],[1104,1,1,220,221],[1105,3,3,221,224],[1106,3,3,224,227]]],[50,5,5,227,232,[[1107,2,2,227,229],[1110,3,3,229,232]]],[51,19,18,232,250,[[1111,1,1,232,233],[1112,4,4,233,237],[1113,2,2,237,239],[1114,5,4,239,243],[1115,7,7,243,250]]],[52,9,8,250,258,[[1116,1,1,250,251],[1117,3,3,251,254],[1118,5,4,254,258]]],[53,3,3,258,261,[[1122,1,1,258,259],[1123,1,1,259,260],[1124,1,1,260,261]]],[54,1,1,261,262,[[1128,1,1,261,262]]],[56,4,4,262,266,[[1132,4,4,262,266]]],[57,10,10,266,276,[[1134,3,3,266,269],[1135,2,2,269,271],[1139,1,1,271,272],[1140,1,1,272,273],[1142,1,1,273,274],[1145,2,2,274,276]]],[58,19,17,276,293,[[1146,4,4,276,280],[1147,4,4,280,284],[1148,3,3,284,287],[1149,3,1,287,288],[1150,5,5,288,293]]],[59,1,1,293,294,[[1155,1,1,293,294]]],[60,2,2,294,296,[[1156,1,1,294,295],[1158,1,1,295,296]]],[61,17,14,296,310,[[1160,4,4,296,300],[1161,9,7,300,307],[1162,3,2,307,309],[1163,1,1,309,310]]],[63,3,3,310,313,[[1165,3,3,310,313]]],[64,1,1,313,314,[[1166,1,1,313,314]]],[65,5,5,314,319,[[1167,1,1,314,315],[1172,1,1,315,316],[1178,1,1,316,317],[1185,1,1,317,318],[1188,1,1,318,319]]]],[23146,23155,23227,23230,23256,23257,23258,23281,23319,23320,23321,23419,23438,23535,23536,23537,23538,23539,23594,23600,23701,23742,23748,23762,23791,23816,23896,23897,23926,24048,24205,24231,24234,24305,24319,24320,24321,24322,24323,24401,24410,24424,24425,24617,24618,24692,24693,24729,25026,25044,25160,25187,25188,25264,25265,25266,25472,25565,25579,25615,25620,25648,25654,25717,25807,25808,25842,25896,26084,26085,26107,26265,26331,26333,26338,26525,26542,26544,26546,26555,26884,26921,26937,26939,26978,26986,27013,27018,27104,27118,27129,27139,27141,27142,27153,27233,27246,27282,27308,27319,27336,27339,27354,27377,27388,27400,27416,27443,27445,27449,27455,27464,27465,27474,27475,27478,27482,27485,27523,27529,27533,27537,27575,27584,27658,27671,27681,27684,27705,27709,27717,27735,27739,27740,27913,27914,27916,27920,27943,28092,28095,28128,28145,28158,28189,28234,28246,28290,28293,28295,28301,28317,28318,28333,28350,28353,28359,28364,28373,28374,28389,28395,28411,28439,28465,28472,28473,28475,28499,28502,28511,28516,28538,28539,28540,28545,28568,28602,28633,28635,28684,28698,28704,28717,28719,28724,28768,28776,28787,28788,28791,28796,28801,28808,28837,28933,28950,28954,28955,28959,28961,28998,29040,29054,29059,29068,29076,29117,29143,29159,29162,29173,29175,29189,29206,29347,29358,29360,29373,29375,29416,29422,29434,29438,29443,29450,29463,29466,29467,29549,29551,29557,29564,29571,29579,29584,29587,29592,29597,29604,29609,29613,29616,29622,29625,29633,29635,29646,29647,29648,29652,29662,29674,29676,29679,29684,29691,29693,29753,29764,29790,29891,29939,29945,29954,29958,29988,29989,29994,29996,30007,30069,30103,30152,30263,30264,30268,30275,30282,30285,30294,30298,30307,30308,30320,30329,30331,30348,30361,30363,30364,30366,30373,30477,30489,30537,30557,30559,30560,30561,30589,30591,30592,30593,30594,30595,30596,30623,30624,30640,30661,30663,30668,30673,30706,30804,30901,31027,31089]]],["+",[4,3,[[43,1,1,0,1,[[1028,1,1,0,1]]],[45,2,1,1,2,[[1069,2,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]]],[27319,28540,29753]]],["Brethren",[12,12,[[44,1,1,0,1,[[1055,1,1,0,1]]],[45,2,2,1,3,[[1068,1,1,1,2],[1075,1,1,2,3]]],[47,4,4,3,7,[[1093,1,1,3,4],[1094,1,1,4,5],[1096,2,2,5,7]]],[49,2,2,7,9,[[1105,2,2,7,9]]],[51,1,1,9,10,[[1115,1,1,9,10]]],[58,1,1,10,11,[[1150,1,1,10,11]]],[61,1,1,11,12,[[1160,1,1,11,12]]]],[28189,28511,28698,29117,29143,29189,29206,29434,29438,29646,30373,30557]]],["Brother",[3,3,[[41,1,1,0,1,[[978,1,1,0,1]]],[43,2,2,1,3,[[1026,1,1,1,2],[1039,1,1,2,3]]]],[25188,27233,27717]]],["brethren",[212,210,[[39,16,16,0,16,[[929,2,2,0,2],[932,2,2,2,4],[933,1,1,4,5],[940,4,4,5,9],[941,1,1,9,10],[947,1,1,10,11],[948,1,1,11,12],[950,1,1,12,13],[951,1,1,13,14],[953,1,1,14,15],[956,1,1,15,16]]],[40,7,7,16,23,[[959,4,4,16,20],[966,2,2,20,22],[968,1,1,22,23]]],[41,10,10,23,33,[[980,3,3,23,26],[986,2,2,26,28],[988,1,1,28,29],[990,1,1,29,30],[992,1,1,30,31],[993,1,1,31,32],[994,1,1,32,33]]],[42,6,6,33,39,[[998,1,1,33,34],[1003,3,3,34,37],[1016,1,1,37,38],[1017,1,1,38,39]]],[43,52,51,39,90,[[1018,2,2,39,41],[1019,2,2,41,43],[1020,2,2,43,45],[1023,1,1,45,46],[1024,6,6,46,52],[1026,1,1,52,53],[1027,1,1,53,54],[1028,2,2,54,56],[1029,1,1,56,57],[1030,3,3,57,60],[1031,1,1,60,61],[1032,11,10,61,71],[1033,2,2,71,73],[1034,3,3,73,76],[1035,2,2,76,78],[1037,1,1,78,79],[1038,2,2,79,81],[1039,2,2,81,83],[1040,3,3,83,86],[1045,4,4,86,90]]],[44,13,13,90,103,[[1046,1,1,90,91],[1052,2,2,91,93],[1053,2,2,93,95],[1054,1,1,95,96],[1056,1,1,96,97],[1057,1,1,97,98],[1060,3,3,98,101],[1061,2,2,101,103]]],[45,26,26,103,129,[[1062,3,3,103,106],[1063,1,1,106,107],[1064,1,1,107,108],[1065,1,1,108,109],[1067,2,2,109,111],[1068,1,1,111,112],[1069,1,1,112,113],[1070,1,1,113,114],[1071,1,1,114,115],[1072,2,2,115,117],[1073,1,1,117,118],[1075,3,3,118,121],[1076,4,4,121,125],[1077,4,4,125,129]]],[46,7,7,129,136,[[1078,1,1,129,130],[1085,2,2,130,132],[1086,2,2,132,134],[1088,1,1,134,135],[1090,1,1,135,136]]],[47,6,6,136,142,[[1091,2,2,136,138],[1094,2,2,138,140],[1095,2,2,140,142]]],[48,2,2,142,144,[[1102,2,2,142,144]]],[49,6,6,144,150,[[1103,2,2,144,146],[1105,1,1,146,147],[1106,3,3,147,150]]],[50,2,2,150,152,[[1107,1,1,150,151],[1110,1,1,151,152]]],[51,16,15,152,167,[[1111,1,1,152,153],[1112,4,4,153,157],[1113,1,1,157,158],[1114,4,3,158,161],[1115,6,6,161,167]]],[52,7,7,167,174,[[1116,1,1,167,168],[1117,3,3,168,171],[1118,3,3,171,174]]],[53,2,2,174,176,[[1123,1,1,174,175],[1124,1,1,175,176]]],[54,1,1,176,177,[[1128,1,1,176,177]]],[57,8,8,177,185,[[1134,3,3,177,180],[1135,2,2,180,182],[1139,1,1,182,183],[1142,1,1,183,184],[1145,1,1,184,185]]],[58,14,14,185,199,[[1146,3,3,185,188],[1147,3,3,188,191],[1148,3,3,191,194],[1149,1,1,194,195],[1150,4,4,195,199]]],[60,1,1,199,200,[[1156,1,1,199,200]]],[61,3,3,200,203,[[1161,3,3,200,203]]],[63,3,3,203,206,[[1165,3,3,203,206]]],[65,4,4,206,210,[[1172,1,1,206,207],[1178,1,1,207,208],[1185,1,1,208,209],[1188,1,1,209,210]]]],[23146,23155,23227,23230,23281,23535,23536,23537,23538,23594,23791,23816,23897,23926,24048,24205,24319,24320,24321,24322,24617,24618,24693,25264,25265,25266,25565,25579,25648,25717,25808,25842,25896,26107,26331,26333,26338,26884,26921,26937,26939,26978,26986,27013,27018,27104,27118,27129,27139,27141,27142,27153,27246,27282,27308,27336,27354,27377,27388,27400,27416,27443,27445,27449,27455,27464,27465,27474,27475,27478,27482,27485,27523,27529,27533,27537,27575,27584,27658,27671,27681,27705,27709,27735,27739,27740,27913,27914,27916,27920,27943,28092,28095,28128,28145,28158,28234,28246,28317,28318,28333,28350,28353,28373,28374,28389,28395,28411,28439,28472,28475,28516,28539,28545,28568,28602,28633,28635,28684,28704,28717,28719,28724,28768,28776,28787,28788,28791,28796,28808,28933,28955,28959,28961,28998,29054,29059,29068,29159,29162,29173,29175,29347,29360,29373,29375,29422,29443,29450,29463,29467,29557,29564,29571,29579,29584,29587,29597,29604,29613,29616,29622,29625,29633,29635,29647,29648,29652,29662,29674,29676,29679,29684,29691,29764,29790,29891,29988,29989,29994,29996,30007,30069,30152,30263,30268,30282,30285,30294,30298,30307,30320,30329,30331,30348,30361,30363,30364,30366,30489,30592,30593,30595,30661,30663,30668,30804,30901,31027,31089]]],["brother",[108,94,[[39,21,16,0,16,[[932,2,2,0,2],[933,4,3,2,5],[935,1,1,5,6],[938,4,2,6,8],[940,1,1,8,9],[942,1,1,9,10],[945,1,1,10,11],[946,4,3,11,14],[950,3,2,14,16]]],[40,12,9,16,25,[[957,2,2,16,18],[959,2,2,18,20],[961,1,1,20,21],[962,2,2,21,23],[968,3,1,23,24],[969,2,1,24,25]]],[41,11,9,25,34,[[975,2,2,25,27],[978,2,2,27,29],[984,1,1,29,30],[987,2,2,30,32],[989,1,1,32,33],[992,3,1,33,34]]],[42,8,8,34,42,[[997,2,2,34,36],[1002,1,1,36,37],[1007,5,5,37,42]]],[43,2,2,42,44,[[1029,1,1,42,43],[1038,1,1,43,44]]],[44,5,4,44,48,[[1059,4,3,44,47],[1061,1,1,47,48]]],[45,8,7,48,55,[[1062,1,1,48,49],[1066,1,1,49,50],[1067,2,1,50,51],[1068,2,2,51,53],[1069,1,1,53,54],[1077,1,1,54,55]]],[46,5,5,55,60,[[1078,1,1,55,56],[1079,1,1,56,57],[1085,2,2,57,59],[1089,1,1,59,60]]],[47,1,1,60,61,[[1091,1,1,60,61]]],[48,1,1,61,62,[[1102,1,1,61,62]]],[49,1,1,62,63,[[1104,1,1,62,63]]],[50,3,3,63,66,[[1107,1,1,63,64],[1110,2,2,64,66]]],[51,2,2,66,68,[[1113,1,1,66,67],[1114,1,1,67,68]]],[52,2,2,68,70,[[1118,2,2,68,70]]],[56,4,4,70,74,[[1132,4,4,70,74]]],[57,2,2,74,76,[[1140,1,1,74,75],[1145,1,1,75,76]]],[58,4,3,76,79,[[1146,1,1,76,77],[1147,1,1,77,78],[1149,2,1,78,79]]],[59,1,1,79,80,[[1155,1,1,79,80]]],[60,1,1,80,81,[[1158,1,1,80,81]]],[61,12,11,81,92,[[1160,3,3,81,84],[1161,5,5,84,89],[1162,3,2,89,91],[1163,1,1,91,92]]],[64,1,1,92,93,[[1166,1,1,92,93]]],[65,1,1,93,94,[[1167,1,1,93,94]]]],[23227,23230,23256,23257,23258,23320,23419,23438,23539,23600,23701,23742,23748,23762,23896,23897,24231,24234,24305,24323,24401,24410,24424,24692,24729,25026,25044,25160,25188,25472,25615,25620,25654,25807,26084,26085,26265,26525,26542,26544,26546,26555,27339,27684,28290,28295,28301,28359,28364,28465,28473,28499,28502,28538,28788,28801,28837,28950,28954,29040,29076,29358,29416,29466,29549,29551,29592,29609,29684,29693,29939,29945,29954,29958,30103,30264,30275,30308,30348,30477,30537,30559,30560,30561,30589,30591,30593,30594,30596,30623,30624,30640,30673,30706]]],["brother's",[7,7,[[39,2,2,0,2,[[935,2,2,0,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[41,2,2,3,5,[[978,2,2,3,5]]],[44,1,1,5,6,[[1059,1,1,5,6]]],[61,1,1,6,7,[[1161,1,1,6,7]]]],[23319,23321,24425,25187,25188,28293,30591]]]]},{"k":"G81","v":[["*",[2,2,[[59,2,2,0,2,[[1152,1,1,0,1],[1155,1,1,1,2]]]],[30416,30474]]],["brethren",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30474]]],["brotherhood",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30416]]]]},{"k":"G82","v":[["*",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[25449,28686]]],["not",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25449]]],["uncertain",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28686]]]]},{"k":"G83","v":[["uncertain",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29805]]]]},{"k":"G84","v":[["uncertainly",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28566]]]]},{"k":"G85","v":[["*",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[24091,24787,29417]]],["heaviness",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29417]]],["heavy",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24091,24787]]]]},{"k":"G86","v":[["*",[11,11,[[39,2,2,0,2,[[939,1,1,0,1],[944,1,1,1,2]]],[41,2,2,2,4,[[982,1,1,2,3],[988,1,1,3,4]]],[43,2,2,4,6,[[1019,2,2,4,6]]],[45,1,1,6,7,[[1076,1,1,6,7]]],[65,4,4,7,11,[[1167,1,1,7,8],[1172,1,1,8,9],[1186,2,2,9,11]]]],[23482,23690,25378,25643,26976,26980,28773,30715,30801,31051,31052]]],["Hell",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30801]]],["grave",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28773]]],["hell",[9,9,[[39,2,2,0,2,[[939,1,1,0,1],[944,1,1,1,2]]],[41,2,2,2,4,[[982,1,1,2,3],[988,1,1,3,4]]],[43,2,2,4,6,[[1019,2,2,4,6]]],[65,3,3,6,9,[[1167,1,1,6,7],[1186,2,2,7,9]]]],[23482,23690,25378,25643,26976,26980,30715,31051,31052]]]]},{"k":"G87","v":[["partiality",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30336]]]]},{"k":"G88","v":[["*",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]]],[28157,29812]]],["ceasing",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29812]]],["continual",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28157]]]]},{"k":"G89","v":[["ceasing",[4,4,[[44,1,1,0,1,[[1046,1,1,0,1]]],[51,3,3,1,4,[[1111,1,1,1,2],[1112,1,1,2,3],[1115,1,1,3,4]]]],[27939,29563,29583,29638]]]]},{"k":"G90","v":[["uncorruptness",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29915]]]]},{"k":"G91","v":[["*",[27,23,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[43,5,5,2,7,[[1024,3,3,2,5],[1042,2,2,5,7]]],[45,2,2,7,9,[[1067,2,2,7,9]]],[46,3,2,9,11,[[1084,3,2,9,11]]],[47,1,1,11,12,[[1094,1,1,11,12]]],[50,2,1,12,13,[[1109,2,1,12,13]]],[56,1,1,13,14,[[1132,1,1,13,14]]],[65,11,9,14,23,[[1168,1,1,14,15],[1172,1,1,15,16],[1173,2,2,16,18],[1175,3,3,18,21],[1177,2,1,21,22],[1188,2,1,22,23]]]],[23805,25382,27140,27142,27143,27806,27807,28474,28475,28918,28928,29143,29542,29956,30728,30799,30812,30813,30844,30850,30859,30877,31091]]],["+",[5,5,[[39,1,1,0,1,[[948,1,1,0,1]]],[43,2,2,1,3,[[1024,1,1,1,2],[1042,1,1,2,3]]],[47,1,1,3,4,[[1094,1,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]]],[23805,27143,27806,29143,29542]]],["Hurt",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30813]]],["hurt",[9,8,[[41,1,1,0,1,[[982,1,1,0,1]]],[65,8,7,1,8,[[1168,1,1,1,2],[1172,1,1,2,3],[1173,1,1,3,4],[1175,3,3,4,7],[1177,2,1,7,8]]]],[25382,30728,30799,30812,30844,30850,30859,30877]]],["offender",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27807]]],["unjust",[2,1,[[65,2,1,0,1,[[1188,2,1,0,1]]]],[31091]]],["wrong",[7,6,[[43,2,2,0,2,[[1024,2,2,0,2]]],[45,2,2,2,4,[[1067,2,2,2,4]]],[46,2,1,4,5,[[1084,2,1,4,5]]],[50,1,1,5,6,[[1109,1,1,5,6]]]],[27140,27142,28474,28475,28928,29542]]],["wronged",[2,2,[[46,1,1,0,1,[[1084,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[28918,29956]]]]},{"k":"G92","v":[["*",[3,3,[[43,2,2,0,2,[[1035,1,1,0,1],[1041,1,1,1,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[27571,27789,30998]]],["doing",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27789]]],["iniquities",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30998]]],["wrong",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27571]]]]},{"k":"G93","v":[["*",[25,24,[[41,4,4,0,4,[[985,1,1,0,1],[988,2,2,1,3],[990,1,1,3,4]]],[42,1,1,4,5,[[1003,1,1,4,5]]],[43,2,2,5,7,[[1018,1,1,5,6],[1025,1,1,6,7]]],[44,7,6,7,13,[[1046,3,2,7,9],[1047,1,1,9,10],[1048,1,1,10,11],[1051,1,1,11,12],[1054,1,1,12,13]]],[45,1,1,13,14,[[1074,1,1,13,14]]],[46,1,1,14,15,[[1089,1,1,14,15]]],[52,2,2,15,17,[[1117,2,2,15,17]]],[54,1,1,17,18,[[1126,1,1,17,18]]],[57,1,1,18,19,[[1140,1,1,18,19]]],[58,1,1,19,20,[[1148,1,1,19,20]]],[60,2,2,20,22,[[1157,2,2,20,22]]],[61,2,2,22,24,[[1159,1,1,22,23],[1163,1,1,23,24]]]],[25545,25628,25629,25694,26346,26941,27199,27948,27959,27970,27996,28081,28169,28671,29035,29671,29673,29846,30104,30325,30513,30515,30549,30641]]],["iniquity",[6,6,[[41,1,1,0,1,[[985,1,1,0,1]]],[43,2,2,1,3,[[1018,1,1,1,2],[1025,1,1,2,3]]],[45,1,1,3,4,[[1074,1,1,3,4]]],[54,1,1,4,5,[[1126,1,1,4,5]]],[58,1,1,5,6,[[1148,1,1,5,6]]]],[25545,26941,27199,28671,29846,30325]]],["unjust",[2,2,[[41,2,2,0,2,[[988,1,1,0,1],[990,1,1,1,2]]]],[25628,25694]]],["unrighteousness",[16,15,[[41,1,1,0,1,[[988,1,1,0,1]]],[42,1,1,1,2,[[1003,1,1,1,2]]],[44,7,6,2,8,[[1046,3,2,2,4],[1047,1,1,4,5],[1048,1,1,5,6],[1051,1,1,6,7],[1054,1,1,7,8]]],[52,2,2,8,10,[[1117,2,2,8,10]]],[57,1,1,10,11,[[1140,1,1,10,11]]],[60,2,2,11,13,[[1157,2,2,11,13]]],[61,2,2,13,15,[[1159,1,1,13,14],[1163,1,1,14,15]]]],[25629,26346,27948,27959,27970,27996,28081,28169,29671,29673,30104,30513,30515,30549,30641]]],["wrong",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29035]]]]},{"k":"G94","v":[["*",[12,11,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,4,3,1,4,[[988,3,2,1,3],[990,1,1,3,4]]],[43,1,1,4,5,[[1041,1,1,4,5]]],[44,1,1,5,6,[[1048,1,1,5,6]]],[45,2,2,6,8,[[1067,2,2,6,8]]],[57,1,1,8,9,[[1138,1,1,8,9]]],[59,1,1,9,10,[[1153,1,1,9,10]]],[60,1,1,10,11,[[1157,1,1,10,11]]]],[23279,25630,25631,25699,27784,27996,28468,28476,30054,30442,30509]]],["unjust",[8,7,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,3,2,1,3,[[988,2,1,1,2],[990,1,1,2,3]]],[43,1,1,3,4,[[1041,1,1,3,4]]],[45,1,1,4,5,[[1067,1,1,4,5]]],[59,1,1,5,6,[[1153,1,1,5,6]]],[60,1,1,6,7,[[1157,1,1,6,7]]]],[23279,25630,25699,27784,28468,30442,30509]]],["unrighteous",[4,4,[[41,1,1,0,1,[[988,1,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]],[45,1,1,2,3,[[1067,1,1,2,3]]],[57,1,1,3,4,[[1138,1,1,3,4]]]],[25631,27996,28476,30054]]]]},{"k":"G95","v":[["wrongfully",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30418]]]]},{"k":"G96","v":[["*",[8,8,[[44,1,1,0,1,[[1046,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[46,3,3,2,5,[[1090,3,3,2,5]]],[54,1,1,5,6,[[1127,1,1,5,6]]],[55,1,1,6,7,[[1129,1,1,6,7]]],[57,1,1,7,8,[[1138,1,1,7,8]]]],[27958,28567,29048,29049,29050,29861,29908,30052]]],["castaway",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28567]]],["rejected",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30052]]],["reprobate",[3,3,[[44,1,1,0,1,[[1046,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]],[55,1,1,2,3,[[1129,1,1,2,3]]]],[27958,29861,29908]]],["reprobates",[3,3,[[46,3,3,0,3,[[1090,3,3,0,3]]]],[29048,29049,29050]]]]},{"k":"G97","v":[["sincere",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30401]]]]},{"k":"G98","v":[["Adramyttium",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27857]]]]},{"k":"G99","v":[["Adria",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27882]]]]},{"k":"G100","v":[["abundance",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28952]]]]},{"k":"G101","v":[["impossible",[2,2,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]]],[23720,24930]]]]},{"k":"G102","v":[["*",[10,10,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[43,1,1,3,4,[[1031,1,1,3,4]]],[44,2,2,4,6,[[1053,1,1,4,5],[1060,1,1,5,6]]],[57,4,4,6,10,[[1138,2,2,6,8],[1142,1,1,8,9],[1143,1,1,9,10]]]],[23788,24615,25715,27422,28119,28304,30048,30062,30137,30178]]],["do",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28119]]],["impossible",[6,6,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[57,3,3,3,6,[[1138,2,2,3,5],[1143,1,1,5,6]]]],[23788,24615,25715,30048,30062,30178]]],["impotent",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27422]]],["possible",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30137]]],["weak",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28304]]]]},{"k":"G103","v":[["*",[5,5,[[48,1,1,0,1,[[1101,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]],[65,3,3,2,5,[[1171,1,1,2,3],[1180,1,1,3,4],[1181,1,1,4,5]]]],[29323,29533,30788,30929,30949]]],["sing",[1,1,[[65,1,1,0,1,[[1181,1,1,0,1]]]],[30949]]],["singing",[2,2,[[48,1,1,0,1,[[1101,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29323,29533]]],["sung",[2,2,[[65,2,2,0,2,[[1171,1,1,0,1],[1180,1,1,1,2]]]],[30788,30929]]]]},{"k":"G104","v":[["*",[8,8,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[46,2,2,2,4,[[1081,1,1,2,3],[1083,1,1,3,4]]],[55,1,1,4,5,[[1129,1,1,4,5]]],[57,1,1,5,6,[[1135,1,1,5,6]]],[59,1,1,6,7,[[1153,1,1,6,7]]],[60,1,1,7,8,[[1156,1,1,7,8]]]],[24834,27167,28870,28908,29904,30005,30439,30491]]],["+",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30491]]],["alway",[4,4,[[46,2,2,0,2,[[1081,1,1,0,1],[1083,1,1,1,2]]],[55,1,1,2,3,[[1129,1,1,2,3]]],[57,1,1,3,4,[[1135,1,1,3,4]]]],[28870,28908,29904,30005]]],["always",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[27167,30439]]],["ever",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24834]]]]},{"k":"G105","v":[["*",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]],[65,2,2,2,4,[[1170,1,1,2,3],[1178,1,1,3,4]]]],[23985,25688,30775,30905]]],["eagle",[2,2,[[65,2,2,0,2,[[1170,1,1,0,1],[1178,1,1,1,2]]]],[30775,30905]]],["eagles",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]]],[23985,25688]]]]},{"k":"G106","v":[["*",[9,9,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[970,2,2,1,3]]],[41,2,2,3,5,[[994,2,2,3,5]]],[43,2,2,5,7,[[1029,1,1,5,6],[1037,1,1,6,7]]],[45,2,2,7,9,[[1066,2,2,7,9]]]],[24071,24755,24766,25865,25871,27340,27632,28461,28462]]],["bread",[7,7,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[970,2,2,1,3]]],[41,2,2,3,5,[[994,2,2,3,5]]],[43,2,2,5,7,[[1029,1,1,5,6],[1037,1,1,6,7]]]],[24071,24755,24766,25865,25871,27340,27632]]],["unleavened",[2,2,[[45,2,2,0,2,[[1066,2,2,0,2]]]],[28461,28462]]]]},{"k":"G107","v":[["Azor",[2,2,[[39,2,2,0,2,[[929,2,2,0,2]]]],[23157,23158]]]]},{"k":"G108","v":[["Azotus",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27216]]]]},{"k":"G109","v":[["air",[7,7,[[43,1,1,0,1,[[1039,1,1,0,1]]],[45,2,2,1,3,[[1070,1,1,1,2],[1075,1,1,2,3]]],[48,1,1,3,4,[[1098,1,1,3,4]]],[51,1,1,4,5,[[1114,1,1,4,5]]],[65,2,2,5,7,[[1175,1,1,5,6],[1182,1,1,6,7]]]],[27727,28566,28687,29231,29620,30842,30971]]]]},{"k":"G110","v":[["immortality",[3,3,[[45,2,2,0,2,[[1076,2,2,0,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]]],[28771,28772,29804]]]]},{"k":"G111","v":[["*",[2,2,[[43,1,1,0,1,[[1027,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[27287,30449]]],["abominable",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30449]]],["thing",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27287]]]]},{"k":"G112","v":[["God",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29241]]]]},{"k":"G113","v":[["wicked",[2,2,[[60,2,2,0,2,[[1157,1,1,0,1],[1158,1,1,1,2]]]],[30507,30539]]]]},{"k":"G114","v":[["*",[16,12,[[40,2,2,0,2,[[962,1,1,0,1],[963,1,1,1,2]]],[41,5,2,2,4,[[979,1,1,2,3],[982,4,1,3,4]]],[42,1,1,4,5,[[1008,1,1,4,5]]],[45,1,1,5,6,[[1062,1,1,5,6]]],[47,2,2,6,8,[[1092,1,1,6,7],[1093,1,1,7,8]]],[51,2,1,8,9,[[1114,2,1,8,9]]],[53,1,1,9,10,[[1123,1,1,9,10]]],[57,1,1,10,11,[[1142,1,1,10,11]]],[64,1,1,11,12,[[1166,1,1,11,12]]]],[24433,24472,25225,25379,26628,28382,29102,29117,29611,29775,30161,30680]]],["+",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29611]]],["despise",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30680]]],["despised",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30161]]],["despiseth",[5,2,[[41,4,1,0,1,[[982,4,1,0,1]]],[51,1,1,1,2,[[1114,1,1,1,2]]]],[25379,29611]]],["disannulleth",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29117]]],["frustrate",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29102]]],["nothing",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28382]]],["off",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29775]]],["reject",[2,2,[[40,2,2,0,2,[[962,1,1,0,1],[963,1,1,1,2]]]],[24433,24472]]],["rejected",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25225]]],["rejecteth",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26628]]]]},{"k":"G115","v":[["*",[2,2,[[57,2,2,0,2,[[1139,1,1,0,1],[1141,1,1,1,2]]]],[30082,30131]]],["+",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30131]]],["disannulling",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30082]]]]},{"k":"G116","v":[["Athens",[4,4,[[43,3,3,0,3,[[1034,2,2,0,2],[1035,1,1,2,3]]],[51,1,1,3,4,[[1113,1,1,3,4]]]],[27538,27539,27558,29591]]]]},{"k":"G117","v":[["*",[2,2,[[43,2,2,0,2,[[1034,2,2,0,2]]]],[27544,27545]]],["Athenians",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27544]]],["Athens",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27545]]]]},{"k":"G118","v":[["*",[2,1,[[54,2,1,0,1,[[1126,2,1,0,1]]]],[29832]]],["masteries",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29832]]],["strive",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29832]]]]},{"k":"G119","v":[["fight",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30165]]]]},{"k":"G120","v":[["discouraged",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29538]]]]},{"k":"G121","v":[["innocent",[2,2,[[39,2,2,0,2,[[955,2,2,0,2]]]],[24133,24153]]]]},{"k":"G122","v":[["+",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30209]]]]},{"k":"G123","v":[["shore",[6,6,[[39,2,2,0,2,[[941,2,2,0,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]],[43,3,3,3,6,[[1038,1,1,3,4],[1044,2,2,4,6]]]],[23541,23587,26902,27669,27894,27895]]]]},{"k":"G124","v":[["*",[5,5,[[43,4,4,0,4,[[1024,3,3,0,3],[1038,1,1,3,4]]],[57,1,1,4,5,[[1143,1,1,4,5]]]],[27138,27140,27144,27702,30201]]],["Egyptian",[3,3,[[43,3,3,0,3,[[1024,2,2,0,2],[1038,1,1,2,3]]]],[27140,27144,27702]]],["Egyptians",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[27138,30201]]]]},{"k":"G125","v":[["Egypt",[24,22,[[39,4,4,0,4,[[930,4,4,0,4]]],[43,14,12,4,16,[[1019,1,1,4,5],[1024,12,10,5,15],[1030,1,1,15,16]]],[57,4,4,16,20,[[1135,1,1,16,17],[1140,1,1,17,18],[1143,2,2,18,20]]],[64,1,1,20,21,[[1166,1,1,20,21]]],[65,1,1,21,22,[[1177,1,1,21,22]]]],[23182,23183,23184,23188,26959,27125,27126,27127,27128,27131,27133,27150,27152,27155,27156,27379,30011,30101,30198,30199,30677,30880]]]]},{"k":"G126","v":[["*",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[27950,30678]]],["eternal",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27950]]],["everlasting",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30678]]]]},{"k":"G127","v":[["*",[2,2,[[53,1,1,0,1,[[1120,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[29725,30240]]],["reverence",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30240]]],["shamefacedness",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29725]]]]},{"k":"G128","v":[["*",[2,1,[[43,2,1,0,1,[[1025,2,1,0,1]]]],[27203]]],["Ethiopia",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27203]]],["Ethiopians",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27203]]]]},{"k":"G129","v":[["blood",[99,92,[[39,11,9,0,9,[[944,1,1,0,1],[951,4,2,1,3],[954,1,1,3,4],[955,5,5,4,9]]],[40,3,3,9,12,[[961,2,2,9,11],[970,1,1,11,12]]],[41,8,7,12,19,[[980,2,2,12,14],[983,3,2,14,16],[985,1,1,16,17],[994,2,2,17,19]]],[42,6,6,19,25,[[997,1,1,19,20],[1002,4,4,20,24],[1015,1,1,24,25]]],[43,12,12,25,37,[[1018,1,1,25,26],[1019,2,2,26,28],[1022,1,1,28,29],[1032,2,2,29,31],[1034,1,1,31,32],[1035,1,1,32,33],[1037,2,2,33,35],[1038,1,1,35,36],[1039,1,1,36,37]]],[44,3,3,37,40,[[1048,2,2,37,39],[1050,1,1,39,40]]],[45,4,4,40,44,[[1071,1,1,40,41],[1072,2,2,41,43],[1076,1,1,43,44]]],[47,1,1,44,45,[[1091,1,1,44,45]]],[48,3,3,45,48,[[1097,1,1,45,46],[1098,1,1,46,47],[1102,1,1,47,48]]],[50,2,2,48,50,[[1107,2,2,48,50]]],[57,21,20,50,70,[[1134,1,1,50,51],[1141,11,10,51,61],[1142,3,3,61,64],[1143,1,1,64,65],[1144,2,2,65,67],[1145,3,3,67,70]]],[59,2,2,70,72,[[1151,2,2,70,72]]],[61,4,3,72,75,[[1159,1,1,72,73],[1163,3,2,73,75]]],[65,19,17,75,92,[[1167,1,1,75,76],[1171,1,1,76,77],[1172,2,2,77,79],[1173,1,1,79,80],[1174,2,2,80,82],[1177,1,1,82,83],[1178,1,1,83,84],[1180,1,1,84,85],[1182,4,3,85,88],[1183,2,1,88,89],[1184,1,1,89,90],[1185,2,2,90,92]]]],[23689,23948,23953,24082,24133,24135,24137,24153,24154,24389,24393,24778,25288,25289,25455,25456,25519,25884,25908,26057,26310,26311,26312,26313,26859,26942,26968,26969,27087,27462,27471,27549,27563,27652,27654,27689,27724,28006,28016,28056,28583,28625,28627,28768,29073,29213,29242,29349,29479,29485,29991,30112,30117,30118,30119,30123,30124,30125,30126,30127,30130,30137,30152,30162,30200,30216,30236,30252,30253,30261,30376,30393,30547,30630,30632,30702,30788,30803,30805,30824,30834,30835,30878,30902,30946,30957,30958,30960,30981,31017,31019,31030]]]]},{"k":"G130","v":[["blood",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30127]]]]},{"k":"G131","v":[["blood",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23399]]]]},{"k":"G132","v":[["Aeneas",[2,2,[[43,2,2,0,2,[[1026,2,2,0,2]]]],[27249,27250]]]]},{"k":"G133","v":[["praise",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30256]]]]},{"k":"G134","v":[["*",[9,9,[[41,4,4,0,4,[[974,2,2,0,2],[991,1,1,2,3],[996,1,1,3,4]]],[43,3,3,4,7,[[1019,1,1,4,5],[1020,2,2,5,7]]],[44,1,1,7,8,[[1060,1,1,7,8]]],[65,1,1,8,9,[[1185,1,1,8,9]]]],[24986,24993,25768,26044,26996,27004,27005,28314,31022]]],["Praise",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[65,1,1,1,2,[[1185,1,1,1,2]]]],[28314,31022]]],["Praising",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26996]]],["praise",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25768]]],["praising",[5,5,[[41,3,3,0,3,[[974,2,2,0,2],[996,1,1,2,3]]],[43,2,2,3,5,[[1020,2,2,3,5]]]],[24986,24993,26044,27004,27005]]]]},{"k":"G135","v":[["+",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28677]]]]},{"k":"G136","v":[["praise",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]]],[23842,25731]]]]},{"k":"G137","v":[["Aenon",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26143]]]]},{"k":"G138","v":[["*",[3,3,[[49,1,1,0,1,[[1103,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[29383,29674,30197]]],["Choosing",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30197]]],["choose",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29383]]],["chosen",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29674]]]]},{"k":"G139","v":[["*",[9,9,[[43,6,6,0,6,[[1022,1,1,0,1],[1032,1,1,1,2],[1041,2,2,2,4],[1043,1,1,4,5],[1045,1,1,5,6]]],[45,1,1,6,7,[[1072,1,1,6,7]]],[47,1,1,7,8,[[1095,1,1,7,8]]],[60,1,1,8,9,[[1157,1,1,8,9]]]],[27076,27447,27774,27783,27828,27921,28619,29182,30501]]],["heresies",[3,3,[[45,1,1,0,1,[[1072,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[28619,29182,30501]]],["heresy",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27783]]],["sect",[5,5,[[43,5,5,0,5,[[1022,1,1,0,1],[1032,1,1,1,2],[1041,1,1,2,3],[1043,1,1,3,4],[1045,1,1,4,5]]]],[27076,27447,27774,27828,27921]]]]},{"k":"G140","v":[["chosen",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23507]]]]},{"k":"G141","v":[["heretick",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29933]]]]},{"k":"G142","v":[["*",[102,98,[[39,20,20,0,20,[[932,1,1,0,1],[937,2,2,1,3],[939,1,1,3,4],[941,1,1,4,5],[942,2,2,5,7],[943,1,1,7,8],[944,1,1,8,9],[945,1,1,9,10],[948,1,1,10,11],[949,2,2,11,13],[950,1,1,13,14],[952,3,3,14,17],[953,2,2,17,19],[955,1,1,19,20]]],[40,21,21,20,41,[[958,5,5,20,25],[960,2,2,25,27],[962,3,3,27,30],[964,4,4,30,34],[966,1,1,34,35],[967,1,1,35,36],[969,2,2,36,38],[971,2,2,38,40],[972,1,1,40,41]]],[41,20,20,41,61,[[976,1,1,41,42],[977,2,2,42,44],[978,2,2,44,46],[980,2,2,46,48],[981,3,3,48,51],[983,2,2,51,53],[989,2,2,53,55],[991,4,4,55,59],[994,1,1,59,60],[995,1,1,60,61]]],[42,26,23,61,84,[[997,1,1,61,62],[998,1,1,62,63],[1001,5,5,63,68],[1004,1,1,68,69],[1006,2,2,69,71],[1007,4,3,71,74],[1011,1,1,74,75],[1012,1,1,75,76],[1013,1,1,76,77],[1015,5,3,77,80],[1016,4,4,80,84]]],[43,9,8,84,92,[[1021,1,1,84,85],[1025,2,1,85,86],[1037,1,1,86,87],[1038,2,2,87,89],[1039,1,1,89,90],[1044,2,2,90,92]]],[45,1,1,92,93,[[1067,1,1,92,93]]],[48,1,1,93,94,[[1100,1,1,93,94]]],[50,1,1,94,95,[[1108,1,1,94,95]]],[61,1,1,95,96,[[1161,1,1,95,96]]],[65,2,2,96,98,[[1176,1,1,96,97],[1184,1,1,97,98]]]],[23215,23385,23395,23488,23551,23609,23617,23670,23696,23727,23806,23847,23869,23885,23974,23975,23996,24036,24037,24161,24263,24269,24271,24272,24281,24338,24348,24415,24436,24450,24508,24519,24520,24534,24609,24663,24732,24733,24847,24850,24891,25074,25131,25132,25175,25176,25257,25263,25304,25318,25324,25427,25457,25664,25682,25752,25753,25755,25757,25900,25953,26073,26111,26218,26219,26220,26221,26222,26440,26499,26505,26562,26564,26571,26701,26748,26774,26840,26856,26863,26868,26869,26880,26882,27046,27209,27635,27675,27700,27726,27868,27872,28482,29303,29508,30584,30866,31014]]],["+",[9,9,[[39,3,3,0,3,[[932,1,1,0,1],[950,1,1,1,2],[952,1,1,2,3]]],[41,2,2,3,5,[[976,1,1,3,4],[989,1,1,4,5]]],[42,3,3,5,8,[[1006,1,1,5,6],[1011,1,1,6,7],[1016,1,1,7,8]]],[43,1,1,8,9,[[1044,1,1,8,9]]]],[23215,23885,23996,25074,25682,26505,26701,26882,27868]]],["Away",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,2,2,1,3,[[1038,1,1,1,2],[1039,1,1,2,3]]]],[25953,27700,27726]]],["Take",[6,6,[[39,3,3,0,3,[[939,1,1,0,1],[948,1,1,1,2],[953,1,1,2,3]]],[41,2,2,3,5,[[981,1,1,3,4],[991,1,1,4,5]]],[42,1,1,5,6,[[998,1,1,5,6]]]],[23488,23806,24036,25304,25755,26111]]],["away",[21,21,[[39,2,2,0,2,[[941,1,1,0,1],[953,1,1,1,2]]],[40,2,2,2,4,[[958,1,1,2,3],[960,1,1,3,4]]],[41,5,5,4,9,[[978,2,2,4,6],[980,1,1,6,7],[983,1,1,7,8],[991,1,1,8,9]]],[42,9,9,9,18,[[997,1,1,9,10],[1007,3,3,10,13],[1015,2,2,13,15],[1016,3,3,15,18]]],[43,1,1,18,19,[[1025,1,1,18,19]]],[48,1,1,19,20,[[1100,1,1,19,20]]],[61,1,1,20,21,[[1161,1,1,20,21]]]],[23551,24037,24281,24338,25175,25176,25257,25457,25757,26073,26562,26564,26571,26856,26863,26868,26869,26880,27209,29303,30584]]],["bear",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24161,24847]]],["borne",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24263]]],["carry",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26220]]],["lifted",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26564]]],["removed",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]]],[23847,24663]]],["take",[8,8,[[39,2,2,0,2,[[952,2,2,0,2]]],[40,3,3,2,5,[[962,1,1,2,3],[969,1,1,3,4],[971,1,1,4,5]]],[41,1,1,5,6,[[994,1,1,5,6]]],[42,1,1,6,7,[[1013,1,1,6,7]]],[45,1,1,7,8,[[1067,1,1,7,8]]]],[23974,23975,24415,24732,24850,25900,26774,28482]]],["taken",[4,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[43,1,1,3,4,[[1025,1,1,3,4]]]],[23869,24348,25263,27209]]],["taketh",[4,4,[[39,1,1,0,1,[[937,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,2,2,2,4,[[1006,1,1,2,3],[1012,1,1,3,4]]]],[23395,25427,26499,26748]]],["took",[3,3,[[42,1,1,0,1,[[1015,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]]],[26863,27675,29508]]],["up",[35,35,[[39,6,6,0,6,[[937,1,1,0,1],[942,2,2,1,3],[943,1,1,3,4],[944,1,1,4,5],[945,1,1,5,6]]],[40,12,12,6,18,[[958,3,3,6,9],[962,2,2,9,11],[964,4,4,11,15],[966,1,1,15,16],[969,1,1,16,17],[972,1,1,17,18]]],[41,7,7,18,25,[[977,2,2,18,20],[981,2,2,20,22],[989,1,1,22,23],[991,2,2,23,25]]],[42,5,5,25,30,[[1001,4,4,25,29],[1004,1,1,29,30]]],[43,3,3,30,33,[[1021,1,1,30,31],[1037,1,1,31,32],[1044,1,1,32,33]]],[65,2,2,33,35,[[1176,1,1,33,34],[1184,1,1,34,35]]]],[23385,23609,23617,23670,23696,23727,24269,24271,24272,24436,24450,24508,24519,24520,24534,24609,24733,24891,25131,25132,25318,25324,25664,25752,25753,26218,26219,26221,26222,26440,27046,27635,27872,30866,31014]]],["with",[2,1,[[42,2,1,0,1,[[1015,2,1,0,1]]]],[26840]]]]},{"k":"G143","v":[["perceived",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25346]]]]},{"k":"G144","v":[["judgment",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29370]]]]},{"k":"G145","v":[["senses",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30044]]]]},{"k":"G146","v":[["lucre",[3,3,[[53,2,2,0,2,[[1121,2,2,0,2]]],[55,1,1,2,3,[[1129,1,1,2,3]]]],[29734,29739,29899]]]]},{"k":"G147","v":[["lucre",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30467]]]]},{"k":"G148","v":[["communication",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29525]]]]},{"k":"G149","v":[["shame",[3,3,[[45,2,2,0,2,[[1072,1,1,0,1],[1075,1,1,1,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]]],[28606,28713,29316]]]]},{"k":"G150","v":[["+",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29903]]]]},{"k":"G151","v":[["filthiness",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29308]]]]},{"k":"G152","v":[["*",[6,6,[[41,1,1,0,1,[[986,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]],[65,1,1,5,6,[[1169,1,1,5,6]]]],[25562,28861,29440,30214,30685,30764]]],["dishonesty",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28861]]],["shame",[5,5,[[41,1,1,0,1,[[986,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]],[65,1,1,4,5,[[1169,1,1,4,5]]]],[25562,29440,30214,30685,30764]]]]},{"k":"G153","v":[["ashamed",[5,5,[[41,1,1,0,1,[[988,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]],[61,1,1,4,5,[[1160,1,1,4,5]]]],[25623,28979,29381,30462,30578]]]]},{"k":"G154","v":[["*",[71,68,[[39,14,14,0,14,[[933,1,1,0,1],[934,1,1,1,2],[935,5,5,2,7],[942,1,1,7,8],[946,1,1,8,9],[948,2,2,9,11],[949,1,1,11,12],[955,2,2,12,14]]],[40,10,10,14,24,[[962,4,4,14,18],[966,2,2,18,20],[967,1,1,20,21],[971,3,3,21,24]]],[41,11,11,24,35,[[973,1,1,24,25],[978,1,1,25,26],[983,5,5,26,31],[984,1,1,31,32],[995,3,3,32,35]]],[42,11,10,35,45,[[1000,2,2,35,37],[1007,1,1,37,38],[1010,2,2,38,40],[1011,2,2,40,42],[1012,4,3,42,45]]],[43,10,10,45,55,[[1020,2,2,45,47],[1024,1,1,47,48],[1026,1,1,48,49],[1029,1,1,49,50],[1030,2,2,50,52],[1033,1,1,52,53],[1042,2,2,53,55]]],[45,1,1,55,56,[[1062,1,1,55,56]]],[48,2,2,56,58,[[1099,2,2,56,58]]],[50,1,1,58,59,[[1107,1,1,58,59]]],[58,5,4,59,63,[[1146,2,2,59,61],[1149,3,2,61,63]]],[59,1,1,63,64,[[1153,1,1,63,64]]],[61,5,4,64,68,[[1161,1,1,64,65],[1163,4,3,65,68]]]],[23276,23290,23323,23324,23325,23326,23327,23604,23746,23812,23814,23848,24149,24187,24429,24430,24431,24432,24623,24626,24664,24832,24834,24869,24956,25176,25414,25415,25416,25417,25418,25507,25958,25960,25987,26165,26166,26545,26681,26682,26706,26715,26749,26750,26752,26998,27010,27162,27218,27357,27383,27390,27512,27799,27811,28385,29264,29271,29474,30271,30272,30339,30340,30439,30601,30638,30639,30640]]],["+",[2,2,[[42,2,2,0,2,[[1000,1,1,0,1],[1007,1,1,1,2]]]],[26166,26545]]],["Ask",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]]],[23323,24429,25414]]],["ask",[34,33,[[39,9,9,0,9,[[934,1,1,0,1],[935,3,3,1,4],[942,1,1,4,5],[946,1,1,5,6],[948,1,1,6,7],[949,1,1,7,8],[955,1,1,8,9]]],[40,3,3,9,12,[[962,2,2,9,11],[966,1,1,11,12]]],[41,4,4,12,16,[[983,3,3,12,15],[984,1,1,15,16]]],[42,7,7,16,23,[[1010,2,2,16,18],[1011,2,2,18,20],[1012,3,3,20,23]]],[43,1,1,23,24,[[1020,1,1,23,24]]],[48,1,1,24,25,[[1099,1,1,24,25]]],[58,5,4,25,29,[[1146,2,2,25,27],[1149,3,2,27,29]]],[61,4,4,29,33,[[1161,1,1,29,30],[1163,3,3,30,33]]]],[23290,23325,23326,23327,23604,23746,23814,23848,24149,24430,24431,24626,25416,25417,25418,25507,26681,26682,26706,26715,26749,26750,26752,26998,29271,30271,30272,30339,30340,30601,30638,30639,30640]]],["asked",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[42,1,1,2,3,[[1012,1,1,2,3]]]],[24432,24956,26750]]],["askest",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26165]]],["asketh",[5,5,[[39,2,2,0,2,[[933,1,1,0,1],[935,1,1,1,2]]],[41,2,2,2,4,[[978,1,1,2,3],[983,1,1,3,4]]],[59,1,1,4,5,[[1153,1,1,4,5]]]],[23276,23324,25176,25415,30439]]],["begged",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24187,25987]]],["called",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27512]]],["craved",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24869]]],["desire",[5,5,[[40,3,3,0,3,[[966,1,1,0,1],[967,1,1,1,2],[971,1,1,2,3]]],[48,1,1,3,4,[[1099,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]]],[24623,24664,24834,29264,29474]]],["desired",[10,10,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]],[43,7,7,2,9,[[1020,1,1,2,3],[1024,1,1,3,4],[1026,1,1,4,5],[1029,1,1,5,6],[1030,2,2,6,8],[1042,1,1,8,9]]],[61,1,1,9,10,[[1163,1,1,9,10]]]],[24832,25960,27010,27162,27218,27357,27383,27390,27799,30639]]],["desiring",[2,2,[[39,1,1,0,1,[[948,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]]],[23812,27811]]],["require",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28385]]],["requiring",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25958]]]]},{"k":"G155","v":[["*",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]],[61,1,1,2,3,[[1163,1,1,2,3]]]],[25959,29448,30639]]],["+",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25959]]],["petitions",[1,1,[[61,1,1,0,1,[[1163,1,1,0,1]]]],[30639]]],["requests",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29448]]]]},{"k":"G156","v":[["*",[20,20,[[39,3,3,0,3,[[947,2,2,0,2],[955,1,1,2,3]]],[40,1,1,3,4,[[971,1,1,3,4]]],[41,1,1,4,5,[[980,1,1,4,5]]],[42,3,3,5,8,[[1014,1,1,5,6],[1015,2,2,6,8]]],[43,8,8,8,16,[[1027,1,1,8,9],[1030,1,1,9,10],[1039,1,1,10,11],[1040,1,1,11,12],[1042,2,2,12,14],[1045,2,2,14,16]]],[54,2,2,16,18,[[1125,2,2,16,18]]],[55,1,1,18,19,[[1129,1,1,18,19]]],[57,1,1,19,20,[[1134,1,1,19,20]]]],[23765,23772,24166,24852,25292,26823,26829,26831,27280,27390,27728,27762,27814,27823,27917,27919,29815,29821,29905,29988]]],["+",[3,3,[[43,1,1,0,1,[[1039,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]],[55,1,1,2,3,[[1129,1,1,2,3]]]],[27728,29815,29905]]],["accusation",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[43,1,1,2,3,[[1042,1,1,2,3]]]],[24166,24852,27814]]],["case",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23772]]],["cause",[9,9,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[43,5,5,2,7,[[1027,1,1,2,3],[1030,1,1,3,4],[1040,1,1,4,5],[1045,2,2,5,7]]],[54,1,1,7,8,[[1125,1,1,7,8]]],[57,1,1,8,9,[[1134,1,1,8,9]]]],[23765,25292,27280,27390,27762,27917,27919,29821,29988]]],["crimes",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27823]]],["fault",[3,3,[[42,3,3,0,3,[[1014,1,1,0,1],[1015,2,2,1,3]]]],[26823,26829,26831]]]]},{"k":"G157","v":[["complaints",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27803]]]]},{"k":"G158","v":[["*",[4,4,[[41,3,3,0,3,[[995,3,3,0,3]]],[43,1,1,3,4,[[1036,1,1,3,4]]]],[25939,25949,25957,27625]]],["cause",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[25957,27625]]],["fault",[2,2,[[41,2,2,0,2,[[995,2,2,0,2]]]],[25939,25949]]]]},{"k":"G159","v":[["author",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30039]]]]},{"k":"G160","v":[["*",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]]],[25860,29624]]],["sudden",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29624]]],["unawares",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25860]]]]},{"k":"G161","v":[["*",[3,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[65,2,1,1,2,[[1179,2,1,1,2]]]],[29280,30918]]],["+",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29280]]],["captivity",[2,1,[[65,2,1,0,1,[[1179,2,1,0,1]]]],[30918]]]]},{"k":"G162","v":[["*",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[29280,29859]]],["+",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29280]]],["captive",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29859]]]]},{"k":"G163","v":[["*",[3,3,[[41,1,1,0,1,[[993,1,1,0,1]]],[44,1,1,1,2,[[1052,1,1,1,2]]],[46,1,1,2,3,[[1087,1,1,2,3]]]],[25850,28114,28976]]],["+",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28114]]],["captive",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25850]]],["captivity",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28976]]]]},{"k":"G164","v":[["captives",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25081]]]]},{"k":"G165","v":[["*",[128,102,[[39,9,9,0,9,[[934,1,1,0,1],[940,1,1,1,2],[941,4,4,2,6],[949,1,1,6,7],[952,1,1,7,8],[956,1,1,8,9]]],[40,4,4,9,13,[[959,1,1,9,10],[960,1,1,10,11],[966,1,1,11,12],[967,1,1,12,13]]],[41,7,7,13,20,[[973,3,3,13,16],[988,1,1,16,17],[990,1,1,17,18],[992,2,2,18,20]]],[42,13,12,20,32,[[1000,1,1,20,21],[1002,2,2,21,23],[1004,4,3,23,26],[1005,1,1,26,27],[1006,1,1,27,28],[1007,1,1,28,29],[1008,1,1,29,30],[1009,1,1,30,31],[1010,1,1,31,32]]],[43,2,2,32,34,[[1020,1,1,32,33],[1032,1,1,33,34]]],[44,5,5,34,39,[[1046,1,1,34,35],[1054,1,1,35,36],[1056,1,1,36,37],[1057,1,1,37,38],[1061,1,1,38,39]]],[45,8,7,39,46,[[1062,1,1,39,40],[1063,4,3,40,43],[1064,1,1,43,44],[1069,1,1,44,45],[1071,1,1,45,46]]],[46,3,3,46,49,[[1081,1,1,46,47],[1086,1,1,47,48],[1088,1,1,48,49]]],[47,3,2,49,51,[[1091,3,2,49,51]]],[48,8,7,51,58,[[1097,1,1,51,52],[1098,2,2,52,54],[1099,4,3,54,57],[1102,1,1,57,58]]],[49,2,1,58,59,[[1106,2,1,58,59]]],[50,1,1,59,60,[[1107,1,1,59,60]]],[53,4,2,60,62,[[1119,3,1,60,61],[1124,1,1,61,62]]],[54,3,2,62,64,[[1128,3,2,62,64]]],[55,1,1,64,65,[[1130,1,1,64,65]]],[57,15,13,65,78,[[1133,3,2,65,67],[1137,1,1,67,68],[1138,2,2,68,70],[1139,4,4,70,74],[1141,1,1,74,75],[1143,1,1,75,76],[1145,3,2,76,78]]],[59,6,4,78,82,[[1151,2,2,78,80],[1154,2,1,80,81],[1155,2,1,81,82]]],[60,2,2,82,84,[[1157,1,1,82,83],[1158,1,1,83,84]]],[61,1,1,84,85,[[1160,1,1,84,85]]],[62,1,1,85,86,[[1164,1,1,85,86]]],[64,2,2,86,88,[[1166,2,2,86,88]]],[65,28,14,88,102,[[1167,4,2,88,90],[1170,4,2,90,92],[1171,4,2,92,94],[1173,2,1,94,95],[1176,2,1,95,96],[1177,2,1,96,97],[1180,2,1,97,98],[1181,2,1,98,99],[1185,2,1,99,100],[1186,2,1,100,101],[1188,2,1,101,102]]]],[23295,23521,23561,23578,23579,23588,23845,23960,24215,24317,24342,24618,24654,24926,24948,24963,25628,25718,25813,25814,26170,26308,26315,26416,26432,26433,26472,26509,26549,26614,26638,26684,27017,27460,27955,28160,28245,28247,28363,28383,28400,28401,28402,28428,28540,28578,28863,28965,29020,29061,29062,29227,29231,29236,29260,29262,29272,29349,29462,29491,29713,29805,29880,29888,29920,29965,29971,30036,30049,30064,30081,30085,30088,30092,30131,30175,30249,30262,30397,30399,30457,30476,30517,30540,30567,30647,30685,30697,30703,30715,30777,30778,30792,30793,30822,30867,30887,30937,30953,31020,31048,31085]]],["+",[90,66,[[39,2,2,0,2,[[934,1,1,0,1],[949,1,1,1,2]]],[40,2,2,2,4,[[959,1,1,2,3],[967,1,1,3,4]]],[41,3,3,4,7,[[973,3,3,4,7]]],[42,13,12,7,19,[[1000,1,1,7,8],[1002,2,2,8,10],[1004,4,3,10,13],[1005,1,1,13,14],[1006,1,1,14,15],[1007,1,1,15,16],[1008,1,1,16,17],[1009,1,1,17,18],[1010,1,1,18,19]]],[43,1,1,19,20,[[1020,1,1,19,20]]],[44,4,4,20,24,[[1046,1,1,20,21],[1054,1,1,21,22],[1056,1,1,22,23],[1061,1,1,23,24]]],[45,1,1,24,25,[[1069,1,1,24,25]]],[46,2,2,25,27,[[1086,1,1,25,26],[1088,1,1,26,27]]],[47,2,1,27,28,[[1091,2,1,27,28]]],[48,2,1,28,29,[[1099,2,1,28,29]]],[49,2,1,29,30,[[1106,2,1,29,30]]],[53,3,2,30,32,[[1119,2,1,30,31],[1124,1,1,31,32]]],[54,2,1,32,33,[[1128,2,1,32,33]]],[57,11,9,33,42,[[1133,2,1,33,34],[1137,1,1,34,35],[1138,1,1,35,36],[1139,4,4,36,40],[1145,3,2,40,42]]],[59,6,4,42,46,[[1151,2,2,42,44],[1154,2,1,44,45],[1155,2,1,45,46]]],[60,2,2,46,48,[[1157,1,1,46,47],[1158,1,1,47,48]]],[61,1,1,48,49,[[1160,1,1,48,49]]],[62,1,1,49,50,[[1164,1,1,49,50]]],[64,2,2,50,52,[[1166,2,2,50,52]]],[65,28,14,52,66,[[1167,4,2,52,54],[1170,4,2,54,56],[1171,4,2,56,58],[1173,2,1,58,59],[1176,2,1,59,60],[1177,2,1,60,61],[1180,2,1,61,62],[1181,2,1,62,63],[1185,2,1,63,64],[1186,2,1,64,65],[1188,2,1,65,66]]]],[23295,23845,24317,24654,24926,24948,24963,26170,26308,26315,26416,26432,26433,26472,26509,26549,26614,26638,26684,27017,27955,28160,28245,28363,28540,28965,29020,29062,29272,29462,29713,29805,29888,29971,30036,30064,30081,30085,30088,30092,30249,30262,30397,30399,30457,30476,30517,30540,30567,30647,30685,30697,30703,30715,30777,30778,30792,30793,30822,30867,30887,30937,30953,31020,31048,31085]]],["ages",[2,2,[[48,1,1,0,1,[[1098,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[29236,29491]]],["course",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29231]]],["eternal",[2,2,[[48,1,1,0,1,[[1099,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]]],[29262,29713]]],["world",[31,30,[[39,7,7,0,7,[[940,1,1,0,1],[941,4,4,1,5],[952,1,1,5,6],[956,1,1,6,7]]],[40,2,2,7,9,[[960,1,1,7,8],[966,1,1,8,9]]],[41,4,4,9,13,[[988,1,1,9,10],[990,1,1,10,11],[992,2,2,11,13]]],[43,1,1,13,14,[[1032,1,1,13,14]]],[44,1,1,14,15,[[1057,1,1,14,15]]],[45,7,6,15,21,[[1062,1,1,15,16],[1063,4,3,16,19],[1064,1,1,19,20],[1071,1,1,20,21]]],[46,1,1,21,22,[[1081,1,1,21,22]]],[47,1,1,22,23,[[1091,1,1,22,23]]],[48,3,3,23,26,[[1097,1,1,23,24],[1099,1,1,24,25],[1102,1,1,25,26]]],[54,1,1,26,27,[[1128,1,1,26,27]]],[55,1,1,27,28,[[1130,1,1,27,28]]],[57,2,2,28,30,[[1138,1,1,28,29],[1141,1,1,29,30]]]],[23521,23561,23578,23579,23588,23960,24215,24342,24618,25628,25718,25813,25814,27460,28247,28383,28400,28401,28402,28428,28578,28863,29061,29227,29260,29349,29880,29920,30049,30131]]],["worlds",[2,2,[[57,2,2,0,2,[[1133,1,1,0,1],[1143,1,1,1,2]]]],[29965,30175]]]]},{"k":"G166","v":[["*",[71,69,[[39,6,5,0,5,[[946,1,1,0,1],[947,2,2,1,3],[953,3,2,3,5]]],[40,3,3,5,8,[[959,1,1,5,6],[966,2,2,6,8]]],[41,4,4,8,12,[[982,1,1,8,9],[988,1,1,9,10],[990,2,2,10,12]]],[42,17,17,12,29,[[999,3,3,12,15],[1000,2,2,15,17],[1001,2,2,17,19],[1002,5,5,19,24],[1006,1,1,24,25],[1008,2,2,25,27],[1013,2,2,27,29]]],[43,2,2,29,31,[[1030,2,2,29,31]]],[44,6,6,31,37,[[1047,1,1,31,32],[1050,1,1,32,33],[1051,2,2,33,35],[1061,2,2,35,37]]],[46,3,3,37,40,[[1081,2,2,37,39],[1082,1,1,39,40]]],[47,1,1,40,41,[[1096,1,1,40,41]]],[52,2,2,41,43,[[1116,1,1,41,42],[1117,1,1,42,43]]],[53,4,4,43,47,[[1119,1,1,43,44],[1124,3,3,44,47]]],[54,2,2,47,49,[[1125,1,1,47,48],[1126,1,1,48,49]]],[55,3,2,49,51,[[1129,2,1,49,50],[1131,1,1,50,51]]],[56,1,1,51,52,[[1132,1,1,51,52]]],[57,6,6,52,58,[[1137,1,1,52,53],[1138,1,1,53,54],[1141,3,3,54,57],[1145,1,1,57,58]]],[59,1,1,58,59,[[1155,1,1,58,59]]],[60,1,1,59,60,[[1156,1,1,59,60]]],[61,6,6,60,66,[[1159,1,1,60,61],[1160,1,1,61,62],[1161,1,1,62,63],[1163,3,3,63,66]]],[64,2,2,66,68,[[1166,2,2,66,68]]],[65,1,1,68,69,[[1180,1,1,68,69]]]],[23735,23778,23791,24049,24054,24317,24605,24618,25388,25629,25706,25718,26135,26136,26156,26170,26192,26234,26249,26284,26297,26304,26311,26325,26509,26605,26630,26761,26762,27408,27410,27969,28068,28090,28091,28361,28362,28876,28877,28878,29196,29658,29677,29712,29800,29804,29807,29818,29837,29894,29930,29953,30039,30046,30117,30119,30120,30261,30475,30490,30542,30575,30594,30635,30637,30644,30679,30693,30932]]],["+",[3,3,[[44,1,1,0,1,[[1061,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]],[55,1,1,2,3,[[1129,1,1,2,3]]]],[28361,29818,29894]]],["eternal",[42,42,[[39,2,2,0,2,[[947,1,1,0,1],[953,1,1,1,2]]],[40,3,3,2,5,[[959,1,1,2,3],[966,2,2,3,5]]],[41,2,2,5,7,[[982,1,1,5,6],[990,1,1,6,7]]],[42,9,9,7,16,[[999,1,1,7,8],[1000,1,1,8,9],[1001,1,1,9,10],[1002,2,2,10,12],[1006,1,1,12,13],[1008,1,1,13,14],[1013,2,2,14,16]]],[43,1,1,16,17,[[1030,1,1,16,17]]],[44,3,3,17,20,[[1047,1,1,17,18],[1050,1,1,18,19],[1051,1,1,19,20]]],[46,3,3,20,23,[[1081,2,2,20,22],[1082,1,1,22,23]]],[53,2,2,23,25,[[1124,2,2,23,25]]],[54,1,1,25,26,[[1126,1,1,25,26]]],[55,2,2,26,28,[[1129,1,1,26,27],[1131,1,1,27,28]]],[57,5,5,28,33,[[1137,1,1,28,29],[1138,1,1,29,30],[1141,3,3,30,33]]],[59,1,1,33,34,[[1155,1,1,33,34]]],[61,6,6,34,40,[[1159,1,1,34,35],[1160,1,1,35,36],[1161,1,1,36,37],[1163,3,3,37,40]]],[64,2,2,40,42,[[1166,2,2,40,42]]]],[23778,24054,24317,24605,24618,25388,25706,26135,26192,26249,26311,26325,26509,26605,26761,26762,27410,27969,28068,28091,28876,28877,28878,29800,29807,29837,29894,29930,30039,30046,30117,30119,30120,30475,30542,30575,30594,30635,30637,30644,30679,30693]]],["ever",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29953]]],["everlasting",[25,25,[[39,4,4,0,4,[[946,1,1,0,1],[947,1,1,1,2],[953,2,2,2,4]]],[41,2,2,4,6,[[988,1,1,4,5],[990,1,1,5,6]]],[42,8,8,6,14,[[999,2,2,6,8],[1000,1,1,8,9],[1001,1,1,9,10],[1002,3,3,10,13],[1008,1,1,13,14]]],[43,1,1,14,15,[[1030,1,1,14,15]]],[44,2,2,15,17,[[1051,1,1,15,16],[1061,1,1,16,17]]],[47,1,1,17,18,[[1096,1,1,17,18]]],[52,2,2,18,20,[[1116,1,1,18,19],[1117,1,1,19,20]]],[53,2,2,20,22,[[1119,1,1,20,21],[1124,1,1,21,22]]],[57,1,1,22,23,[[1145,1,1,22,23]]],[60,1,1,23,24,[[1156,1,1,23,24]]],[65,1,1,24,25,[[1180,1,1,24,25]]]],[23735,23791,24049,24054,25629,25718,26136,26156,26170,26234,26284,26297,26304,26630,27408,28090,28362,29196,29658,29677,29712,29804,30261,30490,30932]]]]},{"k":"G167","v":[["uncleanness",[10,10,[[39,1,1,0,1,[[951,1,1,0,1]]],[44,2,2,1,3,[[1046,1,1,1,2],[1051,1,1,2,3]]],[46,1,1,3,4,[[1089,1,1,3,4]]],[47,1,1,4,5,[[1095,1,1,4,5]]],[48,2,2,5,7,[[1100,1,1,5,6],[1101,1,1,6,7]]],[50,1,1,7,8,[[1109,1,1,7,8]]],[51,2,2,8,10,[[1112,1,1,8,9],[1114,1,1,9,10]]]],[23945,27954,28087,29043,29181,29291,29307,29522,29573,29610]]]]},{"k":"G168","v":[["filthiness",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30979]]]]},{"k":"G169","v":[["*",[30,29,[[39,2,2,0,2,[[938,1,1,0,1],[940,1,1,1,2]]],[40,11,11,2,13,[[957,3,3,2,5],[959,2,2,5,7],[961,3,3,7,10],[962,1,1,10,11],[963,1,1,11,12],[965,1,1,12,13]]],[41,6,6,13,19,[[976,2,2,13,15],[978,1,1,15,16],[980,1,1,16,17],[981,1,1,17,18],[983,1,1,18,19]]],[43,5,5,19,24,[[1022,1,1,19,20],[1025,1,1,20,21],[1027,2,2,21,23],[1028,1,1,23,24]]],[45,1,1,24,25,[[1068,1,1,24,25]]],[46,1,1,25,26,[[1083,1,1,25,26]]],[48,1,1,26,27,[[1101,1,1,26,27]]],[65,3,2,27,29,[[1182,1,1,27,28],[1184,2,1,28,29]]]],[23418,23532,24238,24241,24242,24299,24318,24366,24372,24377,24414,24488,24563,25096,25099,25164,25274,25343,25429,27075,27183,27273,27287,27315,28501,28915,29309,30967,30995]]],["foul",[2,2,[[40,1,1,0,1,[[965,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[24563,30995]]],["person",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29309]]],["unclean",[27,27,[[39,2,2,0,2,[[938,1,1,0,1],[940,1,1,1,2]]],[40,10,10,2,12,[[957,3,3,2,5],[959,2,2,5,7],[961,3,3,7,10],[962,1,1,10,11],[963,1,1,11,12]]],[41,6,6,12,18,[[976,2,2,12,14],[978,1,1,14,15],[980,1,1,15,16],[981,1,1,16,17],[983,1,1,17,18]]],[43,5,5,18,23,[[1022,1,1,18,19],[1025,1,1,19,20],[1027,2,2,20,22],[1028,1,1,22,23]]],[45,1,1,23,24,[[1068,1,1,23,24]]],[46,1,1,24,25,[[1083,1,1,24,25]]],[65,2,2,25,27,[[1182,1,1,25,26],[1184,1,1,26,27]]]],[23418,23532,24238,24241,24242,24299,24318,24366,24372,24377,24414,24488,25096,25099,25164,25274,25343,25429,27075,27183,27273,27287,27315,28501,28915,30967,30995]]]]},{"k":"G170","v":[["opportunity",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29452]]]]},{"k":"G171","v":[["season",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29872]]]]},{"k":"G172","v":[["*",[2,2,[[44,1,1,0,1,[[1061,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[28354,30090]]],["harmless",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30090]]],["simple",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28354]]]]},{"k":"G173","v":[["*",[14,11,[[39,5,4,0,4,[[935,1,1,0,1],[941,3,2,1,3],[955,1,1,3,4]]],[40,3,2,4,6,[[960,3,2,4,6]]],[41,4,3,6,9,[[978,1,1,6,7],[980,3,2,7,9]]],[42,1,1,9,10,[[1015,1,1,9,10]]],[57,1,1,10,11,[[1138,1,1,10,11]]]],[23332,23546,23561,24158,24330,24341,25190,25252,25259,26827,30052]]],["+",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23561]]],["thorns",[13,10,[[39,4,3,0,3,[[935,1,1,0,1],[941,2,1,1,2],[955,1,1,2,3]]],[40,3,2,3,5,[[960,3,2,3,5]]],[41,4,3,5,8,[[978,1,1,5,6],[980,3,2,6,8]]],[42,1,1,8,9,[[1015,1,1,8,9]]],[57,1,1,9,10,[[1138,1,1,9,10]]]],[23332,23546,24158,24330,24341,25190,25252,25259,26827,30052]]]]},{"k":"G174","v":[["thorns",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]]],[24843,26830]]]]},{"k":"G175","v":[["*",[7,7,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]],[55,1,1,4,5,[[1131,1,1,4,5]]],[60,1,1,5,6,[[1156,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[23561,24342,28692,29315,29937,30487,30684]]],["fruit",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30684]]],["unfruitful",[6,6,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]],[55,1,1,4,5,[[1131,1,1,4,5]]],[60,1,1,5,6,[[1156,1,1,5,6]]]],[23561,24342,28692,29315,29937,30487]]]]},{"k":"G176","v":[["condemned",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29916]]]]},{"k":"G177","v":[["uncovered",[2,2,[[45,2,2,0,2,[[1072,2,2,0,2]]]],[28605,28613]]]]},{"k":"G178","v":[["uncondemned",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1039,1,1,1,2]]]],[27520,27729]]]]},{"k":"G179","v":[["endless",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30080]]]]},{"k":"G180","v":[["cease",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30514]]]]},{"k":"G181","v":[["*",[5,5,[[41,1,1,0,1,[[993,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[46,2,2,2,4,[[1083,1,1,2,3],[1089,1,1,3,4]]],[58,1,1,4,5,[[1148,1,1,4,5]]]],[25835,28711,28903,29042,30335]]],["commotions",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25835]]],["confusion",[2,2,[[45,1,1,0,1,[[1075,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[28711,30335]]],["tumults",[2,2,[[46,2,2,0,2,[[1083,1,1,0,1],[1089,1,1,1,2]]]],[28903,29042]]]]},{"k":"G182","v":[["unstable",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30274]]]]},{"k":"G183","v":[["unruly",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30327]]]]},{"k":"G184","v":[["Aceldama",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26942]]]]},{"k":"G185","v":[["*",[3,3,[[39,1,1,0,1,[[938,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[23433,28355,29406]]],["harmless",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[23433,29406]]],["simple",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28355]]]]},{"k":"G186","v":[["wavering",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30156]]]]},{"k":"G187","v":[["ripe",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30944]]]]},{"k":"G188","v":[["yet",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23649]]]]},{"k":"G189","v":[["*",[24,22,[[39,4,4,0,4,[[932,1,1,0,1],[941,1,1,1,2],[942,1,1,2,3],[952,1,1,3,4]]],[40,3,3,4,7,[[957,1,1,4,5],[963,1,1,5,6],[969,1,1,6,7]]],[41,1,1,7,8,[[979,1,1,7,8]]],[42,1,1,8,9,[[1008,1,1,8,9]]],[43,2,2,9,11,[[1034,1,1,9,10],[1045,1,1,10,11]]],[44,3,2,11,13,[[1055,3,2,11,13]]],[45,2,1,13,14,[[1073,2,1,13,14]]],[47,2,2,14,16,[[1093,2,2,14,16]]],[51,1,1,16,17,[[1112,1,1,16,17]]],[54,2,2,17,19,[[1128,2,2,17,19]]],[57,2,2,19,21,[[1136,1,1,19,20],[1137,1,1,20,21]]],[60,1,1,21,22,[[1157,1,1,21,22]]]],[23233,23553,23598,23963,24243,24498,24724,25196,26618,27543,27925,28204,28205,28651,29104,29107,29583,29873,29874,30016,30041,30508]]],["Hearing",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27925]]],["audience",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25196]]],["ears",[4,4,[[40,1,1,0,1,[[963,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[54,2,2,2,4,[[1128,2,2,2,4]]]],[24498,27543,29873,29874]]],["fame",[3,3,[[39,2,2,0,2,[[932,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]]],[23233,23598,24243]]],["heard",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29583]]],["hearing",[9,7,[[39,1,1,0,1,[[941,1,1,0,1]]],[44,2,1,1,2,[[1055,2,1,1,2]]],[45,2,1,2,3,[[1073,2,1,2,3]]],[47,2,2,3,5,[[1093,2,2,3,5]]],[57,1,1,5,6,[[1137,1,1,5,6]]],[60,1,1,6,7,[[1157,1,1,6,7]]]],[23553,28205,28651,29104,29107,30041,30508]]],["preached",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30016]]],["report",[2,2,[[42,1,1,0,1,[[1008,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]]],[26618,28204]]],["rumours",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23963,24724]]]]},{"k":"G190","v":[["*",[92,88,[[39,25,24,0,24,[[932,3,3,0,3],[936,5,5,3,8],[937,4,3,8,11],[938,1,1,11,12],[940,1,1,12,13],[942,1,1,13,14],[944,1,1,14,15],[947,4,4,15,19],[948,2,2,19,21],[949,1,1,21,22],[954,1,1,22,23],[955,1,1,23,24]]],[40,19,17,24,41,[[957,1,1,24,25],[958,3,2,25,27],[959,1,1,27,28],[961,1,1,28,29],[962,1,1,29,30],[964,1,1,30,31],[965,2,1,31,32],[966,4,4,32,36],[967,1,1,36,37],[970,3,3,37,40],[971,1,1,40,41]]],[41,17,17,41,58,[[977,3,3,41,44],[979,1,1,44,45],[981,6,6,45,51],[990,3,3,51,54],[994,3,3,54,57],[995,1,1,57,58]]],[42,19,18,58,76,[[997,4,4,58,62],[1002,1,1,62,63],[1004,1,1,63,64],[1006,3,3,64,67],[1007,1,1,67,68],[1008,1,1,68,69],[1009,3,2,69,71],[1014,1,1,71,72],[1016,1,1,72,73],[1017,3,3,73,76]]],[43,4,4,76,80,[[1029,2,2,76,78],[1030,1,1,78,79],[1038,1,1,79,80]]],[45,1,1,80,81,[[1071,1,1,80,81]]],[65,7,7,81,88,[[1172,1,1,81,82],[1180,4,4,82,86],[1184,1,1,86,87],[1185,1,1,87,88]]]],[23229,23231,23234,23346,23355,23364,23367,23368,23388,23398,23406,23455,23504,23610,23696,23764,23783,23789,23790,23821,23826,23835,24112,24184,24233,24274,24275,24295,24388,24408,24534,24576,24609,24616,24620,24640,24649,24767,24805,24808,24867,25118,25134,25135,25204,25312,25324,25350,25358,25360,25362,25710,25716,25731,25874,25903,25918,25962,26081,26082,26084,26087,26259,26393,26485,26486,26508,26554,26606,26666,26667,26800,26873,26917,26918,26920,27345,27346,27405,27700,28571,30801,30930,30934,30935,30939,30998,31031]]],["+",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30939]]],["Follow",[7,7,[[39,2,2,0,2,[[936,1,1,0,1],[937,1,1,1,2]]],[40,1,1,2,3,[[958,1,1,2,3]]],[41,2,2,3,5,[[977,1,1,3,4],[981,1,1,4,5]]],[42,2,2,5,7,[[997,1,1,5,6],[1017,1,1,6,7]]]],[23367,23388,24274,25134,25360,26087,26917]]],["after",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27700]]],["follow",[22,21,[[39,3,3,0,3,[[936,1,1,0,1],[944,1,1,1,2],[947,1,1,2,3]]],[40,4,4,3,7,[[962,1,1,3,4],[964,1,1,4,5],[966,1,1,5,6],[970,1,1,6,7]]],[41,5,5,7,12,[[981,3,3,7,10],[990,1,1,10,11],[994,1,1,11,12]]],[42,8,7,12,19,[[1006,3,3,12,15],[1008,1,1,15,16],[1009,3,2,16,18],[1017,1,1,18,19]]],[43,1,1,19,20,[[1029,1,1,19,20]]],[65,1,1,20,21,[[1180,1,1,20,21]]]],[23364,23696,23783,24408,24534,24609,24767,25324,25358,25362,25710,25874,26485,26486,26508,26606,26666,26667,26920,27345,30930]]],["followed",[52,52,[[39,19,19,0,19,[[932,3,3,0,3],[936,3,3,3,6],[937,3,3,6,9],[940,1,1,9,10],[942,1,1,10,11],[947,3,3,11,14],[948,2,2,14,16],[949,1,1,16,17],[954,1,1,17,18],[955,1,1,18,19]]],[40,12,12,19,31,[[957,1,1,19,20],[958,2,2,20,22],[959,1,1,22,23],[961,1,1,23,24],[966,3,3,24,27],[967,1,1,27,28],[970,2,2,28,30],[971,1,1,30,31]]],[41,9,9,31,40,[[977,2,2,31,33],[979,1,1,33,34],[981,1,1,34,35],[990,2,2,35,37],[994,2,2,37,39],[995,1,1,39,40]]],[42,5,5,40,45,[[997,2,2,40,42],[1002,1,1,42,43],[1007,1,1,43,44],[1014,1,1,44,45]]],[43,2,2,45,47,[[1029,1,1,45,46],[1030,1,1,46,47]]],[45,1,1,47,48,[[1071,1,1,47,48]]],[65,4,4,48,52,[[1172,1,1,48,49],[1180,2,2,49,51],[1185,1,1,51,52]]]],[23229,23231,23234,23346,23355,23368,23388,23398,23406,23504,23610,23764,23789,23790,23821,23826,23835,24112,24184,24233,24274,24275,24295,24388,24616,24620,24640,24649,24805,24808,24867,25118,25135,25204,25312,25716,25731,25903,25918,25962,26081,26084,26259,26554,26800,27346,27405,28571,30801,30934,30935,31031]]],["followeth",[5,4,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,2,1,1,2,[[965,2,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[42,1,1,3,4,[[1004,1,1,3,4]]]],[23455,24576,25350,26393]]],["following",[3,3,[[42,3,3,0,3,[[997,1,1,0,1],[1016,1,1,1,2],[1017,1,1,2,3]]]],[26082,26873,26918]]],["reached",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30998]]]]},{"k":"G191","v":[["*",[437,402,[[39,67,59,0,59,[[930,4,4,0,4],[932,1,1,4,5],[933,5,5,5,10],[935,2,2,10,12],[936,1,1,12,13],[937,1,1,13,14],[938,2,2,14,16],[939,5,4,16,20],[940,3,3,20,23],[941,18,12,23,35],[942,3,2,35,37],[943,2,2,37,39],[945,2,2,39,41],[946,2,2,41,43],[947,2,2,43,45],[948,2,2,45,47],[949,3,3,47,50],[950,4,4,50,54],[952,1,1,54,55],[954,1,1,55,56],[955,2,2,56,58],[956,1,1,58,59]]],[40,48,42,59,101,[[958,2,2,59,61],[959,2,2,61,63],[960,14,10,63,73],[961,2,2,73,75],[962,8,7,75,82],[963,5,4,82,86],[964,1,1,86,87],[965,1,1,87,88],[966,2,2,88,90],[967,2,2,90,92],[968,3,3,92,95],[969,1,1,95,96],[970,3,3,96,99],[971,1,1,99,100],[972,1,1,100,101]]],[41,65,59,101,160,[[973,3,3,101,104],[974,4,4,104,108],[976,2,2,108,110],[977,2,2,110,112],[978,4,4,112,116],[979,5,4,116,120],[980,10,9,120,129],[981,3,3,129,132],[982,6,3,132,135],[983,2,2,135,137],[984,1,1,137,138],[986,3,2,138,140],[987,2,2,140,142],[988,4,4,142,146],[990,5,5,146,151],[991,2,2,151,153],[992,2,2,153,155],[993,2,2,155,157],[994,1,1,157,158],[995,2,2,158,160]]],[42,58,53,160,213,[[997,2,2,160,162],[999,3,3,162,165],[1000,3,3,165,168],[1001,6,5,168,173],[1002,3,2,173,175],[1003,3,3,175,178],[1004,6,5,178,183],[1005,7,5,183,188],[1006,5,5,188,193],[1007,6,6,193,199],[1008,5,5,199,204],[1010,2,2,204,206],[1011,1,1,206,207],[1012,1,1,207,208],[1014,2,2,208,210],[1015,2,2,210,212],[1017,1,1,212,213]]],[43,91,87,213,300,[[1018,1,1,213,214],[1019,6,6,214,220],[1020,2,2,220,222],[1021,4,4,222,226],[1022,6,5,226,231],[1023,2,2,231,233],[1024,5,5,233,238],[1025,3,3,238,241],[1026,5,5,241,246],[1027,4,4,246,250],[1028,4,4,250,254],[1030,4,4,254,258],[1031,2,2,258,260],[1032,4,4,260,264],[1033,2,2,264,266],[1034,4,3,266,269],[1035,2,2,269,271],[1036,5,5,271,276],[1038,3,3,276,279],[1039,8,8,279,287],[1040,1,1,287,288],[1041,3,3,288,291],[1042,2,1,291,292],[1043,3,3,292,295],[1045,6,5,295,300]]],[44,5,4,300,304,[[1055,3,2,300,302],[1056,1,1,302,303],[1060,1,1,303,304]]],[45,4,4,304,308,[[1063,1,1,304,305],[1066,1,1,305,306],[1072,1,1,306,307],[1075,1,1,307,308]]],[46,2,2,308,310,[[1089,2,2,308,310]]],[47,3,3,310,313,[[1091,2,2,310,312],[1094,1,1,312,313]]],[48,5,5,313,318,[[1097,2,2,313,315],[1099,1,1,315,316],[1100,2,2,316,318]]],[49,4,4,318,322,[[1103,2,2,318,320],[1104,1,1,320,321],[1106,1,1,321,322]]],[50,4,4,322,326,[[1107,4,4,322,326]]],[52,1,1,326,327,[[1118,1,1,326,327]]],[53,1,1,327,328,[[1122,1,1,327,328]]],[54,4,4,328,332,[[1125,1,1,328,329],[1126,2,2,329,331],[1128,1,1,331,332]]],[56,1,1,332,333,[[1132,1,1,332,333]]],[57,8,8,333,341,[[1134,2,2,333,335],[1135,3,3,335,338],[1136,2,2,338,340],[1144,1,1,340,341]]],[58,3,3,341,344,[[1146,1,1,341,342],[1147,1,1,342,343],[1150,1,1,343,344]]],[60,1,1,344,345,[[1156,1,1,344,345]]],[61,14,12,345,357,[[1159,3,3,345,348],[1160,4,3,348,351],[1161,1,1,351,352],[1162,4,3,352,355],[1163,2,2,355,357]]],[62,1,1,357,358,[[1164,1,1,357,358]]],[63,1,1,358,359,[[1165,1,1,358,359]]],[65,46,43,359,402,[[1167,2,2,359,361],[1168,4,4,361,365],[1169,5,5,365,370],[1170,1,1,370,371],[1171,2,2,371,373],[1172,5,5,373,378],[1173,1,1,378,379],[1174,1,1,379,380],[1175,3,3,380,383],[1176,2,2,383,385],[1177,1,1,385,386],[1178,1,1,386,387],[1179,1,1,387,388],[1180,3,2,388,390],[1182,3,3,390,393],[1184,4,3,393,396],[1185,2,2,396,398],[1187,1,1,398,399],[1188,4,3,399,402]]]],[23172,23178,23187,23191,23221,23255,23261,23267,23272,23277,23340,23342,23355,23391,23431,23444,23461,23463,23464,23474,23508,23513,23531,23548,23552,23553,23554,23555,23556,23557,23558,23559,23561,23562,23582,23598,23610,23643,23645,23705,23706,23742,23743,23784,23787,23816,23822,23842,23859,23871,23879,23894,23905,23906,23963,24119,24142,24176,24209,24261,24277,24296,24309,24326,24332,24335,24338,24339,24341,24343,24346,24347,24356,24391,24400,24409,24418,24421,24423,24427,24436,24462,24477,24479,24488,24500,24518,24545,24629,24635,24654,24658,24701,24702,24710,24724,24765,24812,24818,24861,24884,24934,24951,24959,24991,24993,25019,25020,25086,25091,25108,25122,25163,25173,25193,25195,25198,25204,25217,25224,25253,25255,25257,25258,25259,25260,25263,25266,25295,25308,25310,25336,25379,25387,25402,25433,25436,25462,25568,25588,25589,25613,25622,25634,25649,25651,25694,25710,25711,25714,25724,25742,25779,25795,25824,25835,25864,25935,25941,25943,26081,26084,26128,26149,26152,26157,26198,26203,26234,26235,26238,26240,26247,26302,26317,26360,26368,26379,26390,26407,26421,26424,26428,26467,26471,26472,26475,26480,26484,26489,26497,26501,26508,26527,26529,26543,26552,26564,26565,26592,26598,26609,26614,26627,26692,26696,26714,26739,26806,26822,26833,26838,26905,26927,26955,26957,26960,26971,26982,26986,27018,27019,27026,27041,27042,27046,27064,27070,27080,27083,27092,27112,27115,27118,27128,27150,27153,27170,27182,27190,27206,27220,27223,27229,27237,27254,27281,27292,27303,27305,27308,27314,27325,27329,27369,27378,27406,27410,27423,27428,27449,27454,27455,27466,27497,27521,27531,27544,27555,27565,27583,27587,27590,27595,27611,27613,27676,27684,27686,27705,27706,27711,27713,27718,27719,27726,27730,27750,27773,27791,27793,27818,27826,27837,27852,27914,27921,27925,27926,27927,28202,28206,28217,28324,28403,28455,28618,28680,29026,29028,29070,29080,29152,29219,29221,29253,29293,29301,29388,29391,29417,29451,29469,29471,29474,29488,29689,29763,29822,29829,29841,29887,29943,29978,29980,30002,30010,30011,30016,30021,30231,30285,30298,30365,30497,30541,30543,30545,30557,30568,30574,30590,30606,30608,30609,30638,30639,30651,30662,30700,30707,30724,30728,30734,30746,30749,30752,30759,30766,30768,30769,30790,30792,30794,30796,30798,30799,30800,30814,30840,30853,30856,30860,30865,30869,30884,30901,30917,30928,30939,30955,30959,30961,30997,31015,31016,31018,31023,31056,31088,31097,31098]]],["+",[7,7,[[39,2,2,0,2,[[941,1,1,0,1],[956,1,1,1,2]]],[43,4,4,2,6,[[1020,1,1,2,3],[1028,1,1,3,4],[1039,1,1,4,5],[1045,1,1,5,6]]],[46,1,1,6,7,[[1089,1,1,6,7]]]],[23554,24209,27019,27329,27726,27926,29028]]],["Hear",[5,5,[[39,3,3,0,3,[[941,1,1,0,1],[943,1,1,1,2],[949,1,1,2,3]]],[40,1,1,3,4,[[968,1,1,3,4]]],[41,1,1,4,5,[[990,1,1,4,5]]]],[23557,23643,23859,24702,25694]]],["Hearest",[2,2,[[39,2,2,0,2,[[949,1,1,0,1],[955,1,1,1,2]]]],[23842,24142]]],["Hearing",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29943]]],["Hearken",[3,3,[[40,2,2,0,2,[[960,1,1,0,1],[963,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[24326,24477,30298]]],["audience",[3,3,[[41,1,1,0,1,[[992,1,1,0,1]]],[43,2,2,1,3,[[1030,1,1,1,2],[1032,1,1,2,3]]]],[25824,27378,27454]]],["hear",[135,121,[[39,22,18,0,18,[[938,2,2,0,2],[939,4,3,2,5],[940,2,2,5,7],[941,10,7,7,14],[945,1,1,14,15],[946,2,2,15,17],[952,1,1,17,18]]],[40,17,13,18,31,[[960,10,7,18,25],[962,1,1,25,26],[963,3,2,26,28],[964,1,1,28,29],[965,1,1,29,30],[969,1,1,30,31]]],[41,26,23,31,54,[[977,2,2,31,33],[978,2,2,33,35],[979,1,1,35,36],[980,6,5,36,41],[981,2,2,41,43],[982,2,1,43,44],[983,2,2,44,46],[986,2,1,46,47],[987,1,1,47,48],[988,3,3,48,51],[991,1,1,51,52],[993,2,2,52,54]]],[42,18,16,54,70,[[1001,4,3,54,57],[1002,1,1,57,58],[1003,1,1,58,59],[1004,2,2,59,61],[1005,2,1,61,62],[1006,5,5,62,67],[1008,1,1,67,68],[1010,1,1,68,69],[1012,1,1,69,70]]],[43,26,25,70,95,[[1019,4,4,70,74],[1020,1,1,74,75],[1024,1,1,75,76],[1027,2,2,76,78],[1030,2,2,78,80],[1032,1,1,80,81],[1034,2,2,81,83],[1036,1,1,83,84],[1038,1,1,84,85],[1039,2,2,85,87],[1041,1,1,87,88],[1042,2,1,88,89],[1043,2,2,89,91],[1045,4,4,91,95]]],[44,2,2,95,97,[[1055,1,1,95,96],[1056,1,1,96,97]]],[45,1,1,97,98,[[1072,1,1,97,98]]],[47,1,1,98,99,[[1094,1,1,98,99]]],[49,2,2,99,101,[[1103,2,2,99,101]]],[52,1,1,101,102,[[1118,1,1,101,102]]],[53,1,1,102,103,[[1122,1,1,102,103]]],[54,1,1,103,104,[[1128,1,1,103,104]]],[57,3,3,104,107,[[1135,2,2,104,106],[1136,1,1,106,107]]],[58,1,1,107,108,[[1146,1,1,107,108]]],[61,1,1,108,109,[[1163,1,1,108,109]]],[63,1,1,109,110,[[1165,1,1,109,110]]],[65,11,11,110,121,[[1167,1,1,110,111],[1168,4,4,111,115],[1169,4,4,115,119],[1175,1,1,119,120],[1179,1,1,120,121]]]],[23431,23444,23463,23464,23474,23508,23531,23548,23552,23553,23554,23555,23556,23582,23705,23742,23743,23963,24332,24335,24341,24343,24346,24347,24356,24418,24479,24500,24518,24545,24724,25108,25122,25163,25173,25217,25253,25257,25258,25263,25266,25310,25336,25387,25433,25436,25588,25589,25622,25649,25651,25779,25835,25864,26235,26238,26240,26317,26379,26424,26428,26467,26484,26489,26497,26501,26508,26627,26692,26739,26957,26960,26971,26982,27018,27153,27281,27292,27369,27406,27449,27544,27555,27611,27686,27705,27718,27773,27818,27826,27852,27921,27925,27926,27927,28202,28217,28618,29152,29388,29391,29689,29763,29887,30002,30010,30021,30285,30639,30662,30700,30724,30728,30734,30746,30752,30759,30766,30768,30860,30917]]],["heard",[239,233,[[39,31,30,0,30,[[930,4,4,0,4],[932,1,1,4,5],[933,5,5,5,10],[936,1,1,10,11],[937,1,1,11,12],[939,1,1,12,13],[940,1,1,13,14],[941,1,1,14,15],[942,3,2,15,17],[943,1,1,17,18],[945,1,1,18,19],[947,2,2,19,21],[948,2,2,21,23],[949,1,1,23,24],[950,4,4,24,28],[954,1,1,28,29],[955,1,1,29,30]]],[40,25,24,30,54,[[958,1,1,30,31],[959,2,2,31,33],[960,2,2,33,35],[961,2,2,35,37],[962,6,5,37,42],[963,1,1,42,43],[966,2,2,43,45],[967,2,2,45,47],[968,2,2,47,49],[970,3,3,49,52],[971,1,1,52,53],[972,1,1,53,54]]],[41,30,30,54,84,[[973,3,3,54,57],[974,3,3,57,60],[976,2,2,60,62],[979,4,4,62,66],[980,3,3,66,69],[981,1,1,69,70],[982,2,2,70,72],[984,1,1,72,73],[986,1,1,73,74],[987,1,1,74,75],[988,1,1,75,76],[990,3,3,76,79],[991,1,1,79,80],[992,1,1,80,81],[994,1,1,81,82],[995,2,2,82,84]]],[42,32,32,84,116,[[997,2,2,84,86],[999,1,1,86,87],[1000,3,3,87,90],[1001,1,1,90,91],[1002,2,2,91,93],[1003,2,2,93,95],[1004,3,3,95,98],[1005,3,3,98,101],[1007,5,5,101,106],[1008,4,4,106,110],[1010,1,1,110,111],[1011,1,1,111,112],[1014,1,1,112,113],[1015,2,2,113,115],[1017,1,1,115,116]]],[43,52,52,116,168,[[1018,1,1,116,117],[1019,2,2,117,119],[1021,3,3,119,122],[1022,5,5,122,127],[1023,2,2,127,129],[1024,3,3,129,132],[1025,2,2,132,134],[1026,4,4,134,138],[1027,2,2,138,140],[1028,3,3,140,143],[1030,1,1,143,144],[1031,2,2,144,146],[1032,1,1,146,147],[1033,2,2,147,149],[1034,2,2,149,151],[1035,1,1,151,152],[1036,4,4,152,156],[1038,2,2,156,158],[1039,5,5,158,163],[1040,1,1,163,164],[1041,2,2,164,166],[1043,1,1,166,167],[1045,1,1,167,168]]],[44,3,3,168,171,[[1055,2,2,168,170],[1060,1,1,170,171]]],[45,1,1,171,172,[[1063,1,1,171,172]]],[46,1,1,172,173,[[1089,1,1,172,173]]],[47,2,2,173,175,[[1091,2,2,173,175]]],[48,4,4,175,179,[[1097,2,2,175,177],[1099,1,1,177,178],[1100,1,1,178,179]]],[49,2,2,179,181,[[1104,1,1,179,180],[1106,1,1,180,181]]],[50,4,4,181,185,[[1107,4,4,181,185]]],[54,2,2,185,187,[[1125,1,1,185,186],[1126,1,1,186,187]]],[57,5,5,187,192,[[1134,2,2,187,189],[1135,1,1,189,190],[1136,1,1,190,191],[1144,1,1,191,192]]],[58,1,1,192,193,[[1150,1,1,192,193]]],[60,1,1,193,194,[[1156,1,1,193,194]]],[61,9,8,194,202,[[1159,3,3,194,197],[1160,4,3,197,200],[1161,1,1,200,201],[1162,1,1,201,202]]],[62,1,1,202,203,[[1164,1,1,202,203]]],[65,33,30,203,233,[[1167,1,1,203,204],[1169,1,1,204,205],[1170,1,1,205,206],[1171,2,2,206,208],[1172,5,5,208,213],[1173,1,1,213,214],[1174,1,1,214,215],[1175,2,2,215,217],[1176,2,2,217,219],[1177,1,1,219,220],[1178,1,1,220,221],[1180,3,2,221,223],[1182,3,3,223,226],[1184,4,3,226,229],[1185,2,2,229,231],[1187,1,1,231,232],[1188,2,1,232,233]]]],[23172,23178,23187,23191,23221,23255,23261,23267,23272,23277,23355,23391,23461,23513,23556,23598,23610,23645,23706,23784,23787,23816,23822,23871,23879,23894,23905,23906,24119,24176,24277,24296,24309,24338,24339,24391,24400,24421,24423,24427,24436,24462,24488,24629,24635,24654,24658,24701,24710,24765,24812,24818,24861,24884,24934,24951,24959,24991,24993,25020,25086,25091,25198,25204,25217,25224,25259,25260,25295,25308,25387,25402,25462,25568,25613,25634,25710,25711,25714,25742,25795,25935,25941,25943,26081,26084,26152,26157,26198,26203,26247,26302,26317,26360,26368,26390,26407,26421,26472,26475,26480,26527,26529,26543,26552,26564,26592,26598,26609,26614,26696,26714,26806,26833,26838,26905,26927,26955,26986,27026,27042,27046,27064,27070,27080,27083,27092,27112,27115,27128,27150,27170,27190,27206,27220,27229,27237,27254,27303,27305,27308,27314,27325,27410,27423,27428,27466,27497,27521,27531,27555,27583,27587,27590,27595,27613,27676,27684,27706,27711,27713,27719,27730,27750,27791,27793,27837,27914,28202,28206,28324,28403,29026,29070,29080,29219,29221,29253,29293,29417,29451,29469,29471,29474,29488,29822,29829,29978,29980,30011,30016,30231,30365,30497,30541,30543,30545,30557,30568,30574,30590,30606,30651,30707,30749,30769,30790,30792,30794,30796,30798,30799,30800,30814,30840,30853,30856,30865,30869,30884,30901,30928,30939,30955,30959,30961,30997,31015,31016,31018,31023,31056,31088]]],["hearers",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[29301,29841]]],["hearest",[2,2,[[42,2,2,0,2,[[999,1,1,0,1],[1007,1,1,1,2]]]],[26128,26565]]],["heareth",[22,19,[[39,6,6,0,6,[[935,2,2,0,2],[941,4,4,2,6]]],[41,4,3,6,9,[[978,2,2,6,8],[982,2,1,8,9]]],[42,6,5,9,14,[[999,1,1,9,10],[1001,1,1,10,11],[1004,1,1,11,12],[1005,2,1,12,13],[1014,1,1,13,14]]],[61,4,3,14,17,[[1162,3,2,14,16],[1163,1,1,16,17]]],[65,2,2,17,19,[[1188,2,2,17,19]]]],[23340,23342,23558,23559,23561,23562,25193,25195,25379,26149,26234,26428,26471,26822,30608,30609,30638,31097,31098]]],["hearing",[10,10,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,2,2,1,3,[[960,1,1,1,2],[962,1,1,2,3]]],[41,3,3,3,6,[[974,1,1,3,4],[980,1,1,4,5],[990,1,1,5,6]]],[43,4,4,6,10,[[1022,1,1,6,7],[1025,1,1,7,8],[1026,1,1,8,9],[1035,1,1,9,10]]]],[23552,24335,24409,25019,25255,25724,27064,27182,27223,27565]]],["hearken",[3,3,[[43,3,3,0,3,[[1021,1,1,0,1],[1024,1,1,1,2],[1032,1,1,2,3]]]],[27041,27118,27455]]],["noised",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24261]]],["reported",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28455]]],["understandeth",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28680]]]]},{"k":"G192","v":[["*",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[23943,28492]]],["excess",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23943]]],["incontinency",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28492]]]]},{"k":"G193","v":[["incontinent",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29856]]]]},{"k":"G194","v":[["mixture",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30936]]]]},{"k":"G195","v":[["manner",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27707]]]]},{"k":"G196","v":[["straitest",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27828]]]]},{"k":"G197","v":[["*",[4,4,[[43,4,4,0,4,[[1035,1,1,0,1],[1040,2,2,1,3],[1041,1,1,3,4]]]],[27583,27749,27754,27791]]],["+",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27791]]],["perfectly",[3,3,[[43,3,3,0,3,[[1035,1,1,0,1],[1040,2,2,1,3]]]],[27583,27749,27754]]]]},{"k":"G198","v":[["*",[2,2,[[39,2,2,0,2,[[930,2,2,0,2]]]],[23176,23185]]],["+",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23176]]],["enquired",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23185]]]]},{"k":"G199","v":[["*",[5,5,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[43,1,1,2,3,[[1035,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]],[51,1,1,4,5,[[1115,1,1,4,5]]]],[23177,24896,27582,29319,29623]]],["circumspectly",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29319]]],["diligently",[2,2,[[39,1,1,0,1,[[930,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]]],[23177,27582]]],["perfect",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24896]]],["perfectly",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29623]]]]},{"k":"G200","v":[["locusts",[4,4,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[65,2,2,2,4,[[1175,2,2,2,4]]]],[23196,24221,30843,30847]]]]},{"k":"G201","v":[["hearing",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27819]]]]},{"k":"G202","v":[["*",[4,4,[[44,1,1,0,1,[[1047,1,1,0,1]]],[58,3,3,1,4,[[1146,3,3,1,4]]]],[27975,30288,30289,30291]]],["hearer",[2,2,[[58,2,2,0,2,[[1146,2,2,0,2]]]],[30289,30291]]],["hearers",[2,2,[[44,1,1,0,1,[[1047,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[27975,30288]]]]},{"k":"G203","v":[["*",[20,17,[[43,1,1,0,1,[[1028,1,1,0,1]]],[44,11,8,1,9,[[1047,4,3,1,4],[1048,1,1,4,5],[1049,6,4,5,9]]],[45,2,2,9,11,[[1068,2,2,9,11]]],[47,3,3,11,14,[[1092,1,1,11,12],[1095,1,1,12,13],[1096,1,1,13,14]]],[48,1,1,14,15,[[1098,1,1,14,15]]],[50,2,2,15,17,[[1108,1,1,15,16],[1109,1,1,16,17]]]],[27310,27987,27988,27989,28021,28031,28032,28033,28034,28505,28506,29088,29168,29203,29240,29507,29528]]],["+",[3,2,[[44,3,2,0,2,[[1049,3,2,0,2]]]],[28033,28034]]],["Uncircumcision",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29240]]],["uncircumcised",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27310]]],["uncircumcision",[15,13,[[44,8,6,0,6,[[1047,4,3,0,3],[1048,1,1,3,4],[1049,3,2,4,6]]],[45,2,2,6,8,[[1068,2,2,6,8]]],[47,3,3,8,11,[[1092,1,1,8,9],[1095,1,1,9,10],[1096,1,1,10,11]]],[50,2,2,11,13,[[1108,1,1,11,12],[1109,1,1,12,13]]]],[27987,27988,27989,28021,28031,28032,28505,28506,29088,29168,29203,29507,29528]]]]},{"k":"G204","v":[["*",[2,2,[[48,1,1,0,1,[[1098,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[29249,30405]]],["+",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30405]]],["corner",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29249]]]]},{"k":"G205","v":[["spoils",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30068]]]]},{"k":"G206","v":[["*",[6,4,[[39,2,1,0,1,[[952,2,1,0,1]]],[40,2,1,1,2,[[969,2,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[23988,24744,25644,30193]]],["end",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23988]]],["other",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23988]]],["part",[2,1,[[40,2,1,0,1,[[969,2,1,0,1]]]],[24744]]],["tip",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25644]]],["top",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30193]]]]},{"k":"G207","v":[["Aquila",[6,6,[[43,3,3,0,3,[[1035,3,3,0,3]]],[44,1,1,3,4,[[1061,1,1,3,4]]],[45,1,1,4,5,[[1077,1,1,4,5]]],[54,1,1,5,6,[[1128,1,1,5,6]]]],[27559,27575,27583,28339,28795,29889]]]]},{"k":"G208","v":[["+",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[47,1,1,2,3,[[1093,1,1,2,3]]]],[23639,24476,29119]]]]},{"k":"G209","v":[["him",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27930]]]]},{"k":"G210","v":[["will",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28557]]]]},{"k":"G211","v":[["box",[4,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,1,1,2,[[970,2,1,1,2]]],[41,1,1,2,3,[[979,1,1,2,3]]]],[24061,24757,25232]]]]},{"k":"G212","v":[["*",[2,2,[[58,1,1,0,1,[[1149,1,1,0,1]]],[61,1,1,1,2,[[1160,1,1,1,2]]]],[30353,30566]]],["boastings",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30353]]],["pride",[1,1,[[61,1,1,0,1,[[1160,1,1,0,1]]]],[30566]]]]},{"k":"G213","v":[["boasters",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[27960,29855]]]]},{"k":"G214","v":[["*",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[45,1,1,1,2,[[1074,1,1,1,2]]]],[24402,28666]]],["tinkling",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28666]]],["wailed",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24402]]]]},{"k":"G215","v":[["uttered",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28142]]]]},{"k":"G216","v":[["dumb",[3,3,[[40,3,3,0,3,[[963,1,1,0,1],[965,2,2,1,3]]]],[24500,24555,24563]]]]},{"k":"G217","v":[["*",[8,4,[[39,2,1,0,1,[[933,2,1,0,1]]],[40,3,1,1,2,[[965,3,1,1,2]]],[41,2,1,2,3,[[986,2,1,2,3]]],[50,1,1,3,4,[[1110,1,1,3,4]]]],[23247,24588,25587,29548]]],["Salt",[2,2,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]]],[24588,25587]]],["salt",[6,4,[[39,2,1,0,1,[[933,2,1,0,1]]],[40,2,1,1,2,[[965,2,1,1,2]]],[41,1,1,2,3,[[986,1,1,2,3]]],[50,1,1,3,4,[[1110,1,1,3,4]]]],[23247,24588,25587,29548]]]]},{"k":"G218","v":[["*",[9,8,[[39,1,1,0,1,[[934,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[972,1,1,2,3]]],[41,3,2,3,5,[[979,3,2,3,5]]],[42,2,2,5,7,[[1007,1,1,5,6],[1008,1,1,6,7]]],[58,1,1,7,8,[[1150,1,1,7,8]]]],[23299,24420,24874,25233,25241,26525,26583,30368]]],["anoint",[3,3,[[39,1,1,0,1,[[934,1,1,0,1]]],[40,1,1,1,2,[[972,1,1,1,2]]],[41,1,1,2,3,[[979,1,1,2,3]]]],[23299,24874,25241]]],["anointed",[5,5,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,2,2,1,3,[[979,2,2,1,3]]],[42,2,2,3,5,[[1007,1,1,3,4],[1008,1,1,4,5]]]],[24420,25233,25241,26525,26583]]],["anointing",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30368]]]]},{"k":"G219","v":[["cockcrowing",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24752]]]]},{"k":"G220","v":[["cock",[12,11,[[39,3,3,0,3,[[954,3,3,0,3]]],[40,4,3,3,6,[[970,4,3,3,6]]],[41,3,3,6,9,[[994,3,3,6,9]]],[42,2,2,9,11,[[1009,1,1,9,10],[1014,1,1,10,11]]]],[24088,24128,24129,24784,24822,24826,25898,25924,25925,26668,26812]]]]},{"k":"G221","v":[["*",[2,2,[[43,2,2,0,2,[[1023,1,1,0,1],[1035,1,1,1,2]]]],[27110,27581]]],["Alexandria",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27581]]],["Alexandrians",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27110]]]]},{"k":"G222","v":[["Alexandria",[2,2,[[43,2,2,0,2,[[1044,1,1,0,1],[1045,1,1,1,2]]]],[27861,27910]]]]},{"k":"G223","v":[["Alexander",[6,5,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,3,2,1,3,[[1021,1,1,1,2],[1036,2,1,2,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]]],[24847,27028,27618,29716,29884]]]]},{"k":"G224","v":[["meal",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23572,25539]]]]},{"k":"G225","v":[["*",[110,99,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,3,3,1,4,[[961,1,1,1,2],[968,2,2,2,4]]],[41,3,3,4,7,[[976,1,1,4,5],[992,1,1,5,6],[994,1,1,6,7]]],[42,25,20,7,27,[[997,2,2,7,9],[999,1,1,9,10],[1000,2,2,10,12],[1001,1,1,12,13],[1004,7,5,13,18],[1010,2,2,18,20],[1011,1,1,20,21],[1012,3,2,21,23],[1013,3,2,23,25],[1014,3,2,25,27]]],[43,3,3,27,30,[[1021,1,1,27,28],[1027,1,1,28,29],[1043,1,1,29,30]]],[44,8,8,30,38,[[1046,2,2,30,32],[1047,3,3,32,35],[1048,1,1,35,36],[1054,1,1,36,37],[1060,1,1,37,38]]],[45,2,2,38,40,[[1066,1,1,38,39],[1074,1,1,39,40]]],[46,8,6,40,46,[[1081,1,1,40,41],[1083,1,1,41,42],[1084,2,1,42,43],[1088,1,1,43,44],[1089,1,1,44,45],[1090,2,1,45,46]]],[47,4,4,46,50,[[1092,2,2,46,48],[1093,1,1,48,49],[1095,1,1,49,50]]],[48,6,6,50,56,[[1097,1,1,50,51],[1100,3,3,51,54],[1101,1,1,54,55],[1102,1,1,55,56]]],[49,1,1,56,57,[[1103,1,1,56,57]]],[50,2,2,57,59,[[1107,2,2,57,59]]],[52,3,3,59,62,[[1117,3,3,59,62]]],[53,6,5,62,67,[[1120,3,2,62,64],[1121,1,1,64,65],[1122,1,1,65,66],[1124,1,1,66,67]]],[54,6,6,67,73,[[1126,3,3,67,70],[1127,2,2,70,72],[1128,1,1,72,73]]],[55,2,2,73,75,[[1129,2,2,73,75]]],[57,1,1,75,76,[[1142,1,1,75,76]]],[58,3,3,76,79,[[1146,1,1,76,77],[1148,1,1,77,78],[1150,1,1,78,79]]],[59,1,1,79,80,[[1151,1,1,79,80]]],[60,2,2,80,82,[[1156,1,1,80,81],[1157,1,1,81,82]]],[61,9,8,82,90,[[1159,2,2,82,84],[1160,3,2,84,86],[1161,2,2,86,88],[1162,1,1,88,89],[1163,1,1,89,90]]],[62,5,4,90,94,[[1164,5,4,90,94]]],[63,6,5,94,99,[[1165,6,5,94,99]]]],[23888,24397,24687,24705,25088,25800,25923,26058,26061,26141,26179,26180,26243,26413,26421,26425,26426,26427,26674,26685,26725,26733,26739,26776,26778,26822,26823,27049,27293,27848,27948,27955,27964,27970,27982,27998,28156,28311,28462,28671,28861,28905,28930,28999,29028,29051,29086,29095,29103,29169,29219,29293,29296,29297,29313,29351,29379,29470,29471,29671,29673,29674,29720,29723,29746,29750,29793,29842,29845,29852,29860,29861,29874,29893,29906,30159,30284,30333,30373,30396,30491,30502,30546,30548,30554,30571,30597,30598,30609,30630,30646,30647,30648,30649,30659,30661,30662,30666,30670]]],["+",[3,3,[[41,2,2,0,2,[[992,1,1,0,1],[994,1,1,1,2]]],[62,1,1,2,3,[[1164,1,1,2,3]]]],[25800,25923,30647]]],["true",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29296]]],["truth",[105,95,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,3,3,1,4,[[961,1,1,1,2],[968,2,2,2,4]]],[41,1,1,4,5,[[976,1,1,4,5]]],[42,25,20,5,25,[[997,2,2,5,7],[999,1,1,7,8],[1000,2,2,8,10],[1001,1,1,10,11],[1004,7,5,11,16],[1010,2,2,16,18],[1011,1,1,18,19],[1012,3,2,19,21],[1013,3,2,21,23],[1014,3,2,23,25]]],[43,3,3,25,28,[[1021,1,1,25,26],[1027,1,1,26,27],[1043,1,1,27,28]]],[44,8,8,28,36,[[1046,2,2,28,30],[1047,3,3,30,33],[1048,1,1,33,34],[1054,1,1,34,35],[1060,1,1,35,36]]],[45,2,2,36,38,[[1066,1,1,36,37],[1074,1,1,37,38]]],[46,8,6,38,44,[[1081,1,1,38,39],[1083,1,1,39,40],[1084,2,1,40,41],[1088,1,1,41,42],[1089,1,1,42,43],[1090,2,1,43,44]]],[47,4,4,44,48,[[1092,2,2,44,46],[1093,1,1,46,47],[1095,1,1,47,48]]],[48,5,5,48,53,[[1097,1,1,48,49],[1100,2,2,49,51],[1101,1,1,51,52],[1102,1,1,52,53]]],[49,1,1,53,54,[[1103,1,1,53,54]]],[50,2,2,54,56,[[1107,2,2,54,56]]],[52,3,3,56,59,[[1117,3,3,56,59]]],[53,5,5,59,64,[[1120,2,2,59,61],[1121,1,1,61,62],[1122,1,1,62,63],[1124,1,1,63,64]]],[54,6,6,64,70,[[1126,3,3,64,67],[1127,2,2,67,69],[1128,1,1,69,70]]],[55,2,2,70,72,[[1129,2,2,70,72]]],[57,1,1,72,73,[[1142,1,1,72,73]]],[58,3,3,73,76,[[1146,1,1,73,74],[1148,1,1,74,75],[1150,1,1,75,76]]],[59,1,1,76,77,[[1151,1,1,76,77]]],[60,2,2,77,79,[[1156,1,1,77,78],[1157,1,1,78,79]]],[61,9,8,79,87,[[1159,2,2,79,81],[1160,3,2,81,83],[1161,2,2,83,85],[1162,1,1,85,86],[1163,1,1,86,87]]],[62,4,3,87,90,[[1164,4,3,87,90]]],[63,6,5,90,95,[[1165,6,5,90,95]]]],[23888,24397,24687,24705,25088,26058,26061,26141,26179,26180,26243,26413,26421,26425,26426,26427,26674,26685,26725,26733,26739,26776,26778,26822,26823,27049,27293,27848,27948,27955,27964,27970,27982,27998,28156,28311,28462,28671,28861,28905,28930,28999,29028,29051,29086,29095,29103,29169,29219,29293,29297,29313,29351,29379,29470,29471,29671,29673,29674,29720,29723,29746,29750,29793,29842,29845,29852,29860,29861,29874,29893,29906,30159,30284,30333,30373,30396,30491,30502,30546,30548,30554,30571,30597,30598,30609,30630,30646,30648,30649,30659,30661,30662,30666,30670]]],["verity",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29723]]]]},{"k":"G226","v":[["*",[2,2,[[47,1,1,0,1,[[1094,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[29147,29287]]],["+",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29147]]],["truth",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29287]]]]},{"k":"G227","v":[["*",[25,25,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[42,13,13,2,15,[[999,1,1,2,3],[1000,1,1,3,4],[1001,2,2,4,6],[1003,1,1,6,7],[1004,5,5,7,12],[1006,1,1,12,13],[1015,1,1,13,14],[1017,1,1,14,15]]],[43,1,1,15,16,[[1029,1,1,15,16]]],[44,1,1,16,17,[[1048,1,1,16,17]]],[46,1,1,17,18,[[1083,1,1,17,18]]],[49,1,1,18,19,[[1106,1,1,18,19]]],[55,1,1,19,20,[[1129,1,1,19,20]]],[59,1,1,20,21,[[1155,1,1,20,21]]],[60,1,1,21,22,[[1157,1,1,21,22]]],[61,2,2,22,24,[[1160,2,2,22,24]]],[63,1,1,24,25,[[1165,1,1,24,25]]]],[23888,24687,26153,26174,26241,26242,26346,26394,26395,26397,26398,26407,26522,26860,26922,27346,27995,28906,29450,29905,30477,30522,30558,30577,30670]]],["true",[23,23,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[42,12,12,2,14,[[999,1,1,2,3],[1001,2,2,3,5],[1003,1,1,5,6],[1004,5,5,6,11],[1006,1,1,11,12],[1015,1,1,12,13],[1017,1,1,13,14]]],[43,1,1,14,15,[[1029,1,1,14,15]]],[44,1,1,15,16,[[1048,1,1,15,16]]],[46,1,1,16,17,[[1083,1,1,16,17]]],[49,1,1,17,18,[[1106,1,1,17,18]]],[55,1,1,18,19,[[1129,1,1,18,19]]],[59,1,1,19,20,[[1155,1,1,19,20]]],[60,1,1,20,21,[[1157,1,1,20,21]]],[61,1,1,21,22,[[1160,1,1,21,22]]],[63,1,1,22,23,[[1165,1,1,22,23]]]],[23888,24687,26153,26241,26242,26346,26394,26395,26397,26398,26407,26522,26860,26922,27346,27995,28906,29450,29905,30477,30522,30558,30670]]],["truly",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26174]]],["truth",[1,1,[[61,1,1,0,1,[[1160,1,1,0,1]]]],[30577]]]]},{"k":"G228","v":[["*",[27,25,[[41,1,1,0,1,[[988,1,1,0,1]]],[42,8,8,1,9,[[997,1,1,1,2],[1000,2,2,2,4],[1002,1,1,4,5],[1003,1,1,5,6],[1011,1,1,6,7],[1013,1,1,7,8],[1015,1,1,8,9]]],[51,1,1,9,10,[[1111,1,1,9,10]]],[57,3,3,10,13,[[1140,1,1,10,11],[1141,1,1,11,12],[1142,1,1,12,13]]],[61,4,2,13,15,[[1160,1,1,13,14],[1163,3,1,14,15]]],[65,10,10,15,25,[[1169,2,2,15,17],[1172,1,1,17,18],[1181,1,1,18,19],[1182,1,1,19,20],[1185,3,3,20,23],[1187,1,1,23,24],[1188,1,1,24,25]]]],[25631,26053,26179,26193,26289,26356,26700,26762,26860,29569,30094,30129,30155,30558,30644,30753,30760,30803,30949,30961,31019,31026,31028,31058,31086]]],["True",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31028]]],["true",[26,24,[[41,1,1,0,1,[[988,1,1,0,1]]],[42,8,8,1,9,[[997,1,1,1,2],[1000,2,2,2,4],[1002,1,1,4,5],[1003,1,1,5,6],[1011,1,1,6,7],[1013,1,1,7,8],[1015,1,1,8,9]]],[51,1,1,9,10,[[1111,1,1,9,10]]],[57,3,3,10,13,[[1140,1,1,10,11],[1141,1,1,11,12],[1142,1,1,12,13]]],[61,4,2,13,15,[[1160,1,1,13,14],[1163,3,1,14,15]]],[65,9,9,15,24,[[1169,2,2,15,17],[1172,1,1,17,18],[1181,1,1,18,19],[1182,1,1,19,20],[1185,2,2,20,22],[1187,1,1,22,23],[1188,1,1,23,24]]]],[25631,26053,26179,26193,26289,26356,26700,26762,26860,29569,30094,30129,30155,30558,30644,30753,30760,30803,30949,30961,31019,31026,31058,31086]]]]},{"k":"G229","v":[["grinding",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]]],[23998,25686]]]]},{"k":"G230","v":[["*",[21,19,[[39,3,3,0,3,[[942,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[970,1,1,3,4],[971,1,1,4,5]]],[41,3,3,5,8,[[981,1,1,5,6],[984,1,1,6,7],[993,1,1,7,8]]],[42,10,8,8,16,[[997,1,1,8,9],[1000,1,1,9,10],[1002,3,2,10,12],[1003,3,2,12,14],[1004,1,1,14,15],[1013,1,1,15,16]]],[43,1,1,16,17,[[1029,1,1,16,17]]],[51,1,1,17,18,[[1112,1,1,17,18]]],[61,1,1,18,19,[[1160,1,1,18,19]]]],[23630,24127,24183,24824,24865,25328,25503,25829,26091,26198,26271,26312,26354,26368,26412,26767,27348,29583,30555]]],["Surely",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24127,24824]]],["Truly",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24183,24865]]],["indeed",[6,5,[[42,6,5,0,5,[[997,1,1,0,1],[1000,1,1,1,2],[1002,2,1,2,3],[1003,1,1,3,4],[1004,1,1,4,5]]]],[26091,26198,26312,26354,26412]]],["surely",[1,1,[[42,1,1,0,1,[[1013,1,1,0,1]]]],[26767]]],["surety",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27348]]],["truth",[7,7,[[39,1,1,0,1,[[942,1,1,0,1]]],[41,3,3,1,4,[[981,1,1,1,2],[984,1,1,2,3],[993,1,1,3,4]]],[42,2,2,4,6,[[1002,1,1,4,5],[1003,1,1,5,6]]],[51,1,1,6,7,[[1112,1,1,6,7]]]],[23630,25328,25503,25829,26271,26368,29583]]],["verily",[1,1,[[61,1,1,0,1,[[1160,1,1,0,1]]]],[30555]]],["very",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26354]]]]},{"k":"G231","v":[["*",[5,5,[[39,2,2,0,2,[[932,2,2,0,2]]],[40,2,2,2,4,[[957,2,2,2,4]]],[41,1,1,4,5,[[977,1,1,4,5]]]],[23227,23228,24231,24232,25109]]],["fishermen",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25109]]],["fishers",[4,4,[[39,2,2,0,2,[[932,2,2,0,2]]],[40,2,2,2,4,[[957,2,2,2,4]]]],[23227,23228,24231,24232]]]]},{"k":"G232","v":[["fishing",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26901]]]]},{"k":"G233","v":[["salted",[3,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[40,2,1,1,2,[[965,2,1,1,2]]]],[23247,24587]]]]},{"k":"G234","v":[["pollutions",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27462]]]]},{"k":"G235","v":[["*",[633,599,[[39,36,36,0,36,[[932,1,1,0,1],[933,3,3,1,4],[934,2,2,4,6],[935,1,1,6,7],[936,2,2,7,9],[937,5,5,9,14],[938,2,2,14,16],[939,2,2,16,18],[941,1,1,18,19],[943,1,1,19,20],[944,3,3,20,23],[945,1,1,23,24],[946,1,1,24,25],[947,2,2,25,27],[948,3,3,27,30],[949,1,1,30,31],[950,2,2,31,33],[952,1,1,33,34],[954,1,1,34,35],[955,1,1,35,36]]],[40,41,39,36,75,[[957,2,2,36,38],[958,3,2,38,40],[959,2,2,40,42],[960,2,2,42,44],[961,3,3,44,47],[962,1,1,47,48],[963,3,3,48,51],[964,1,1,51,52],[965,4,4,52,56],[966,5,5,56,61],[967,2,2,61,63],[968,3,3,63,66],[969,4,4,66,70],[970,5,4,70,74],[972,1,1,74,75]]],[41,38,38,75,113,[[973,1,1,75,76],[976,1,1,76,77],[977,4,4,77,81],[978,1,1,81,82],[979,3,3,82,85],[980,3,3,85,88],[981,1,1,88,89],[983,3,3,89,92],[984,2,2,92,94],[985,2,2,94,96],[986,2,2,96,98],[988,2,2,98,100],[989,1,1,100,101],[990,1,1,101,102],[992,2,2,102,104],[993,1,1,104,105],[994,4,4,105,109],[995,1,1,109,110],[996,3,3,110,113]]],[42,103,101,113,214,[[997,4,4,113,117],[999,6,6,117,123],[1000,3,3,123,126],[1001,6,6,126,132],[1002,9,9,132,141],[1003,9,9,141,150],[1004,8,8,150,158],[1005,2,2,158,160],[1006,6,6,160,166],[1007,9,9,166,175],[1008,9,9,175,184],[1009,4,3,184,187],[1010,2,2,187,189],[1011,4,4,189,193],[1012,10,9,193,202],[1013,3,3,202,205],[1014,2,2,205,207],[1015,3,3,207,210],[1016,2,2,210,212],[1017,2,2,212,214]]],[43,29,29,214,243,[[1018,2,2,214,216],[1019,1,1,216,217],[1021,2,2,217,219],[1022,2,2,219,221],[1024,2,2,221,223],[1027,3,3,223,226],[1030,1,1,226,227],[1032,2,2,227,229],[1033,1,1,229,230],[1035,2,2,230,232],[1036,3,3,232,235],[1037,1,1,235,236],[1038,2,2,236,238],[1043,4,4,238,242],[1044,1,1,242,243]]],[44,69,68,243,311,[[1046,2,2,243,245],[1047,3,2,245,247],[1048,2,2,247,249],[1049,8,8,249,257],[1050,4,4,257,261],[1051,4,4,261,265],[1052,6,6,265,271],[1053,9,9,271,280],[1054,7,7,280,287],[1055,5,5,287,292],[1056,4,4,292,296],[1057,5,5,296,301],[1058,3,3,301,304],[1059,3,3,304,307],[1060,2,2,307,309],[1061,2,2,309,311]]],[45,72,63,311,374,[[1062,2,2,311,313],[1063,6,6,313,319],[1064,4,4,319,323],[1065,6,6,323,329],[1066,1,1,329,330],[1067,8,5,330,335],[1068,7,6,335,341],[1069,2,2,341,343],[1070,5,4,343,347],[1071,8,7,347,354],[1072,3,3,354,357],[1073,4,4,357,361],[1075,8,7,361,368],[1076,8,6,368,374]]],[46,68,53,374,427,[[1078,6,5,374,379],[1079,5,4,379,383],[1080,6,5,383,388],[1081,10,6,388,394],[1082,4,4,394,398],[1083,1,1,398,399],[1084,12,7,399,406],[1085,7,7,406,413],[1086,1,1,413,414],[1087,4,4,414,418],[1088,4,3,418,421],[1089,3,2,421,423],[1090,5,4,423,427]]],[47,23,23,427,450,[[1091,4,4,427,431],[1092,3,3,431,434],[1093,3,3,434,437],[1094,9,9,437,446],[1095,2,2,446,448],[1096,2,2,448,450]]],[48,13,13,450,463,[[1097,1,1,450,451],[1098,1,1,451,452],[1100,1,1,452,453],[1101,7,7,453,460],[1102,3,3,460,463]]],[49,15,14,463,477,[[1103,3,3,463,466],[1104,7,6,466,472],[1105,3,3,472,475],[1106,2,2,475,477]]],[50,3,3,477,480,[[1108,1,1,477,478],[1109,2,2,478,480]]],[51,13,12,480,492,[[1111,2,2,480,482],[1112,6,5,482,487],[1114,2,2,487,489],[1115,3,3,489,492]]],[52,5,5,492,497,[[1117,1,1,492,493],[1118,4,4,493,497]]],[53,12,12,497,509,[[1119,2,2,497,499],[1120,2,2,499,501],[1121,1,1,501,502],[1122,1,1,502,503],[1123,3,3,503,506],[1124,3,3,506,509]]],[54,12,12,509,521,[[1125,5,5,509,514],[1126,3,3,514,517],[1127,1,1,517,518],[1128,3,3,518,521]]],[55,4,4,521,525,[[1129,2,2,521,523],[1130,1,1,523,524],[1131,1,1,524,525]]],[56,2,2,525,527,[[1132,2,2,525,527]]],[57,16,16,527,543,[[1134,1,1,527,528],[1135,2,2,528,530],[1136,1,1,530,531],[1137,2,2,531,533],[1139,1,1,533,534],[1141,1,1,534,535],[1142,3,3,535,538],[1143,1,1,538,539],[1144,3,3,539,542],[1145,1,1,542,543]]],[58,5,5,543,548,[[1146,2,2,543,545],[1147,1,1,545,546],[1148,1,1,546,547],[1149,1,1,547,548]]],[59,15,14,548,562,[[1151,3,3,548,551],[1152,4,4,551,555],[1153,3,3,555,558],[1154,2,2,558,560],[1155,3,2,560,562]]],[60,6,5,562,567,[[1156,2,2,562,564],[1157,2,2,564,566],[1158,2,1,566,567]]],[61,13,12,567,579,[[1160,7,6,567,573],[1161,1,1,573,574],[1162,3,3,574,577],[1163,2,2,577,579]]],[62,4,4,579,583,[[1164,4,4,579,583]]],[63,3,3,583,586,[[1165,3,3,583,586]]],[64,2,2,586,588,[[1166,2,2,586,588]]],[65,11,11,588,599,[[1168,5,5,588,593],[1169,1,1,593,594],[1175,1,1,594,595],[1176,2,2,595,597],[1183,1,1,597,598],[1186,1,1,598,599]]]],[23213,23249,23251,23273,23295,23300,23337,23349,23353,23391,23392,23396,23397,23403,23437,23451,23467,23468,23560,23644,23684,23689,23695,23712,23757,23768,23773,23815,23818,23820,23847,23902,23904,23963,24093,24153,24259,24260,24277,24282,24314,24317,24340,24345,24383,24390,24403,24416,24468,24478,24482,24533,24546,24551,24560,24575,24596,24615,24628,24631,24633,24663,24672,24687,24698,24700,24724,24728,24737,24741,24782,24783,24790,24803,24880,24953,25067,25121,25138,25139,25145,25173,25202,25220,25221,25261,25272,25297,25357,25409,25438,25447,25466,25510,25521,25523,25563,25566,25641,25650,25659,25701,25800,25817,25835,25890,25900,25906,25917,25950,25997,26012,26013,26052,26057,26075,26077,26128,26135,26136,26137,26148,26156,26158,26170,26179,26228,26232,26234,26240,26244,26252,26266,26279,26283,26284,26289,26293,26295,26296,26321,26338,26340,26344,26350,26352,26355,26356,26372,26377,26393,26397,26407,26409,26418,26423,26430,26436,26443,26471,26482,26486,26489,26499,26507,26514,26527,26534,26538,26545,26553,26565,26574,26575,26577,26586,26589,26596,26607,26610,26622,26624,26627,26629,26639,26640,26648,26692,26699,26715,26718,26720,26724,26728,26730,26732,26733,26738,26739,26746,26751,26759,26768,26774,26779,26813,26825,26846,26849,26859,26874,26894,26906,26921,26927,26931,26965,27039,27054,27063,27072,27155,27164,27279,27294,27300,27387,27453,27462,27520,27566,27578,27587,27611,27612,27650,27677,27688,27839,27843,27848,27852,27865,27951,27962,27975,27991,28018,28022,28024,28026,28032,28034,28035,28038,28042,28046,28050,28058,28061,28062,28073,28081,28082,28083,28098,28104,28106,28108,28110,28111,28117,28120,28125,28131,28136,28139,28142,28148,28153,28162,28163,28165,28166,28171,28179,28187,28190,28196,28204,28206,28207,28213,28220,28227,28229,28247,28248,28261,28264,28266,28269,28271,28280,28293,28297,28300,28306,28324,28340,28354,28380,28390,28398,28399,28401,28403,28406,28407,28411,28415,28416,28417,28436,28437,28447,28448,28452,28453,28462,28473,28475,28478,28479,28480,28491,28494,28497,28506,28508,28522,28533,28534,28542,28552,28561,28567,28572,28580,28587,28590,28591,28596,28600,28608,28609,28617,28648,28656,28658,28659,28680,28695,28697,28698,28700,28711,28712,28728,28753,28755,28757,28758,28764,28809,28812,28813,28819,28824,28828,28829,28837,28841,28844,28846,28847,28855,28856,28861,28864,28867,28868,28875,28877,28881,28889,28892,28893,28902,28921,28922,28923,28925,28927,28928,28930,28937,28939,28940,28942,28946,28951,28953,28968,28975,28983,28984,28989,28990,28995,29006,29036,29038,29046,29047,29050,29051,29058,29065,29069,29074,29084,29088,29095,29114,29118,29124,29133,29138,29139,29145,29148,29154,29160,29161,29162,29168,29175,29201,29203,29227,29248,29301,29308,29319,29321,29322,29328,29331,29333,29341,29343,29349,29379,29381,29390,29394,29395,29398,29403,29408,29418,29428,29429,29430,29448,29459,29499,29528,29539,29565,29568,29572,29574,29577,29578,29583,29610,29611,29627,29630,29636,29673,29686,29687,29689,29693,29709,29712,29726,29728,29734,29759,29764,29776,29786,29790,29792,29805,29816,29817,29818,29821,29826,29836,29847,29851,29862,29873,29878,29886,29900,29907,29918,29928,29952,29954,29993,30008,30011,30016,30034,30035,30080,30129,30136,30158,30172,30185,30223,30234,30238,30255,30291,30292,30311,30334,30348,30389,30393,30397,30415,30417,30419,30424,30428,30438,30445,30448,30459,30467,30468,30495,30500,30504,30505,30531,30552,30557,30566,30569,30571,30577,30597,30604,30613,30621,30630,30642,30646,30650,30653,30657,30667,30669,30671,30678,30681,30721,30723,30726,30731,30737,30755,30845,30868,30870,30987,31044]]],["+",[9,9,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,2,2,1,3,[[988,1,1,1,2],[996,1,1,2,3]]],[43,1,1,3,4,[[1036,1,1,3,4]]],[44,2,2,4,6,[[1046,1,1,4,5],[1051,1,1,5,6]]],[45,1,1,6,7,[[1064,1,1,6,7]]],[46,2,2,7,9,[[1078,1,1,7,8],[1084,1,1,8,9]]]],[24803,25641,26012,27587,27962,28073,28415,28813,28923]]],["And",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25659]]],["But",[96,96,[[39,2,2,0,2,[[939,2,2,0,2]]],[40,6,6,2,8,[[962,1,1,2,3],[965,1,1,3,4],[967,1,1,4,5],[969,1,1,5,6],[970,1,1,6,7],[972,1,1,7,8]]],[41,9,9,8,17,[[977,1,1,8,9],[978,1,1,9,10],[979,2,2,10,12],[983,1,1,12,13],[984,1,1,13,14],[986,2,2,14,16],[994,1,1,16,17]]],[42,13,13,17,30,[[1000,1,1,17,18],[1001,1,1,18,19],[1002,2,2,19,21],[1003,1,1,21,22],[1006,1,1,22,23],[1007,1,1,23,24],[1010,1,1,24,25],[1011,2,2,25,27],[1012,2,2,27,29],[1015,1,1,29,30]]],[43,11,11,30,41,[[1018,1,1,30,31],[1019,1,1,31,32],[1021,1,1,32,33],[1027,1,1,33,34],[1030,1,1,34,35],[1032,2,2,35,37],[1035,1,1,37,38],[1037,1,1,38,39],[1043,2,2,39,41]]],[44,11,11,41,52,[[1047,1,1,41,42],[1049,1,1,42,43],[1050,1,1,43,44],[1052,1,1,44,45],[1055,4,4,45,49],[1056,1,1,49,50],[1058,1,1,50,51],[1060,1,1,51,52]]],[45,10,10,52,62,[[1062,1,1,52,53],[1063,2,2,53,55],[1067,1,1,55,56],[1068,1,1,56,57],[1069,1,1,57,58],[1070,1,1,58,59],[1071,2,2,59,61],[1076,1,1,61,62]]],[46,6,6,62,68,[[1078,1,1,62,63],[1080,2,2,63,65],[1081,1,1,65,66],[1083,1,1,66,67],[1085,1,1,67,68]]],[47,8,8,68,76,[[1091,1,1,68,69],[1092,3,3,69,72],[1093,1,1,72,73],[1094,3,3,73,76]]],[49,2,2,76,78,[[1104,1,1,76,77],[1105,1,1,77,78]]],[51,3,3,78,81,[[1112,3,3,78,81]]],[53,1,1,81,82,[[1120,1,1,81,82]]],[54,2,2,82,84,[[1125,1,1,82,83],[1127,1,1,83,84]]],[55,1,1,84,85,[[1129,1,1,84,85]]],[57,3,3,85,88,[[1135,1,1,85,86],[1142,1,1,86,87],[1144,1,1,87,88]]],[59,5,5,88,93,[[1151,2,2,88,90],[1153,2,2,90,92],[1154,1,1,92,93]]],[65,3,3,93,96,[[1168,2,2,93,95],[1176,1,1,95,96]]]],[23467,23468,24416,24551,24672,24741,24782,24880,25145,25173,25220,25221,25447,25466,25563,25566,25900,26179,26252,26293,26321,26377,26507,26545,26699,26720,26724,26730,26732,26859,26931,26965,27039,27294,27387,27453,27462,27578,27650,27839,27843,27991,28046,28062,28104,28196,28204,28206,28207,28213,28280,28324,28390,28401,28403,28473,28494,28533,28567,28572,28587,28753,28809,28855,28856,28861,28902,28946,29065,29084,29088,29095,29124,29133,29154,29160,29398,29428,29572,29574,29577,29726,29826,29862,29900,30008,30136,30234,30389,30393,30428,30438,30459,30723,30731,30868]]],["Howbeit",[6,6,[[42,1,1,0,1,[[1003,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[45,2,2,2,4,[[1069,1,1,2,3],[1076,1,1,3,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]],[53,1,1,5,6,[[1119,1,1,5,6]]]],[26355,27164,28534,28764,29139,29712]]],["Nay",[4,4,[[44,2,2,0,2,[[1052,1,1,0,1],[1053,1,1,1,2]]],[45,2,2,2,4,[[1067,1,1,2,3],[1073,1,1,3,4]]]],[28098,28153,28475,28656]]],["Nevertheless",[6,6,[[42,1,1,0,1,[[1012,1,1,0,1]]],[44,1,1,1,2,[[1050,1,1,1,2]]],[45,1,1,2,3,[[1070,1,1,2,3]]],[46,1,1,3,4,[[1084,1,1,3,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]],[65,1,1,5,6,[[1168,1,1,5,6]]]],[26733,28061,28552,28922,29161,30721]]],["No",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25950]]],["Notwithstanding",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30737]]],["Therefore",[2,2,[[46,1,1,0,1,[[1085,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]]],[28939,29328]]],["Yea",[3,3,[[49,2,2,0,2,[[1104,1,1,0,1],[1105,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[29408,29429,30311]]],["Yet",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28697]]],["and",[3,3,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]]],[24340,26013,28990]]],["but",[470,452,[[39,33,33,0,33,[[932,1,1,0,1],[933,3,3,1,4],[934,2,2,4,6],[935,1,1,6,7],[936,2,2,7,9],[937,5,5,9,14],[938,2,2,14,16],[941,1,1,16,17],[943,1,1,17,18],[944,3,3,18,21],[945,1,1,21,22],[946,1,1,22,23],[947,1,1,23,24],[948,3,3,24,27],[949,1,1,27,28],[950,2,2,28,30],[952,1,1,30,31],[954,1,1,31,32],[955,1,1,32,33]]],[40,30,29,33,62,[[957,2,2,33,35],[958,3,2,35,37],[959,2,2,37,39],[960,1,1,39,40],[961,3,3,40,43],[963,3,3,43,46],[964,1,1,46,47],[965,2,2,47,49],[966,5,5,49,54],[967,1,1,54,55],[968,3,3,55,58],[969,3,3,58,61],[970,1,1,61,62]]],[41,24,24,62,86,[[973,1,1,62,63],[976,1,1,63,64],[977,3,3,64,67],[979,1,1,67,68],[980,3,3,68,71],[981,1,1,71,72],[983,2,2,72,74],[984,1,1,74,75],[985,2,2,75,77],[988,1,1,77,78],[990,1,1,78,79],[992,2,2,79,81],[993,1,1,81,82],[994,3,3,82,85],[996,1,1,85,86]]],[42,86,84,86,170,[[997,4,4,86,90],[999,6,6,90,96],[1000,2,2,96,98],[1001,5,5,98,103],[1002,7,7,103,110],[1003,7,7,110,117],[1004,8,8,117,125],[1005,2,2,125,127],[1006,5,5,127,132],[1007,7,7,132,139],[1008,9,9,139,148],[1009,4,3,148,151],[1010,1,1,151,152],[1011,2,2,152,154],[1012,6,5,154,159],[1013,3,3,159,162],[1014,2,2,162,164],[1015,2,2,164,166],[1016,2,2,166,168],[1017,2,2,168,170]]],[43,15,15,170,185,[[1018,1,1,170,171],[1021,1,1,171,172],[1022,2,2,172,174],[1024,1,1,174,175],[1027,1,1,175,176],[1033,1,1,176,177],[1035,1,1,177,178],[1036,2,2,178,180],[1038,2,2,180,182],[1043,2,2,182,184],[1044,1,1,184,185]]],[44,52,52,185,237,[[1046,1,1,185,186],[1047,2,2,186,188],[1048,1,1,188,189],[1049,7,7,189,196],[1050,2,2,196,198],[1051,3,3,198,201],[1052,4,4,201,205],[1053,8,8,205,213],[1054,7,7,213,220],[1055,1,1,220,221],[1056,3,3,221,224],[1057,5,5,224,229],[1058,2,2,229,231],[1059,3,3,231,234],[1060,1,1,234,235],[1061,2,2,235,237]]],[45,50,43,237,280,[[1062,1,1,237,238],[1063,4,4,238,242],[1064,3,3,242,245],[1065,3,3,245,248],[1066,1,1,248,249],[1067,6,3,249,252],[1068,6,5,252,257],[1070,2,2,257,259],[1071,6,5,259,264],[1072,3,3,264,267],[1073,3,3,267,270],[1075,6,5,270,275],[1076,6,5,275,280]]],[46,45,41,280,321,[[1078,4,4,280,284],[1079,5,4,284,288],[1080,4,3,288,291],[1081,7,6,291,297],[1082,3,3,297,300],[1084,4,4,300,304],[1085,5,5,304,309],[1086,1,1,309,310],[1087,4,4,310,314],[1088,2,2,314,316],[1089,2,1,316,317],[1090,4,4,317,321]]],[47,12,12,321,333,[[1091,3,3,321,324],[1093,2,2,324,326],[1094,3,3,326,329],[1095,2,2,329,331],[1096,2,2,331,333]]],[48,12,12,333,345,[[1097,1,1,333,334],[1098,1,1,334,335],[1100,1,1,335,336],[1101,6,6,336,342],[1102,3,3,342,345]]],[49,10,9,345,354,[[1103,2,2,345,347],[1104,5,4,347,351],[1105,1,1,351,352],[1106,2,2,352,354]]],[50,2,2,354,356,[[1109,2,2,354,356]]],[51,10,10,356,366,[[1111,2,2,356,358],[1112,3,3,358,361],[1114,2,2,361,363],[1115,3,3,363,366]]],[52,5,5,366,371,[[1117,1,1,366,367],[1118,4,4,367,371]]],[53,10,10,371,381,[[1119,1,1,371,372],[1120,1,1,372,373],[1121,1,1,373,374],[1122,1,1,374,375],[1123,3,3,375,378],[1124,3,3,378,381]]],[54,9,9,381,390,[[1125,3,3,381,384],[1126,3,3,384,387],[1128,3,3,387,390]]],[55,3,3,390,393,[[1129,1,1,390,391],[1130,1,1,391,392],[1131,1,1,392,393]]],[56,2,2,393,395,[[1132,2,2,393,395]]],[57,12,12,395,407,[[1134,1,1,395,396],[1136,1,1,396,397],[1137,2,2,397,399],[1139,1,1,399,400],[1141,1,1,400,401],[1142,2,2,401,403],[1143,1,1,403,404],[1144,2,2,404,406],[1145,1,1,406,407]]],[58,4,4,407,411,[[1146,2,2,407,409],[1148,1,1,409,410],[1149,1,1,410,411]]],[59,10,9,411,420,[[1151,1,1,411,412],[1152,4,4,412,416],[1153,1,1,416,417],[1154,1,1,417,418],[1155,3,2,418,420]]],[60,6,5,420,425,[[1156,2,2,420,422],[1157,2,2,422,424],[1158,2,1,424,425]]],[61,13,12,425,437,[[1160,7,6,425,431],[1161,1,1,431,432],[1162,3,3,432,435],[1163,2,2,435,437]]],[62,4,4,437,441,[[1164,4,4,437,441]]],[63,3,3,441,444,[[1165,3,3,441,444]]],[64,2,2,444,446,[[1166,2,2,444,446]]],[65,6,6,446,452,[[1168,1,1,446,447],[1169,1,1,447,448],[1175,1,1,448,449],[1176,1,1,449,450],[1183,1,1,450,451],[1186,1,1,451,452]]]],[23213,23249,23251,23273,23295,23300,23337,23349,23353,23391,23392,23396,23397,23403,23437,23451,23560,23644,23684,23689,23695,23712,23757,23768,23815,23818,23820,23847,23902,23904,23963,24093,24153,24259,24260,24277,24282,24314,24317,24345,24383,24390,24403,24468,24478,24482,24533,24560,24575,24596,24615,24628,24631,24633,24663,24687,24698,24700,24724,24728,24737,24790,24953,25067,25121,25138,25139,25202,25261,25272,25297,25357,25409,25438,25510,25521,25523,25650,25701,25800,25817,25835,25890,25906,25917,25997,26052,26057,26075,26077,26128,26135,26136,26137,26148,26156,26158,26170,26228,26232,26234,26240,26244,26266,26279,26283,26284,26289,26295,26296,26338,26340,26344,26350,26352,26356,26372,26393,26397,26407,26409,26418,26423,26430,26436,26443,26471,26482,26486,26489,26499,26514,26527,26534,26553,26565,26574,26575,26577,26586,26589,26596,26607,26610,26622,26624,26627,26629,26639,26640,26648,26692,26715,26718,26738,26739,26746,26751,26759,26768,26774,26779,26813,26825,26846,26849,26874,26894,26906,26921,26927,27054,27063,27072,27155,27300,27520,27566,27611,27612,27677,27688,27848,27852,27865,27951,27975,27991,28018,28024,28026,28032,28034,28035,28038,28042,28050,28058,28081,28082,28083,28106,28108,28110,28111,28117,28120,28125,28131,28136,28139,28142,28148,28162,28163,28165,28166,28171,28179,28187,28190,28220,28227,28229,28247,28248,28261,28264,28266,28269,28271,28293,28297,28300,28306,28340,28354,28380,28398,28399,28406,28407,28411,28416,28417,28447,28452,28453,28462,28478,28479,28480,28491,28497,28506,28508,28522,28552,28561,28580,28590,28591,28596,28600,28608,28609,28617,28648,28658,28659,28680,28695,28700,28711,28712,28728,28755,28757,28758,28764,28809,28812,28819,28824,28828,28829,28837,28841,28844,28846,28847,28861,28864,28867,28868,28875,28877,28881,28889,28892,28921,28925,28928,28930,28937,28940,28942,28951,28953,28968,28975,28983,28984,28989,28995,29006,29036,29046,29047,29050,29051,29058,29069,29074,29114,29118,29138,29145,29162,29168,29175,29201,29203,29227,29248,29301,29308,29319,29321,29322,29331,29333,29341,29343,29349,29381,29390,29394,29395,29403,29418,29430,29448,29459,29528,29539,29565,29568,29574,29578,29583,29610,29611,29627,29630,29636,29673,29686,29687,29689,29693,29709,29728,29734,29759,29764,29776,29786,29790,29792,29805,29816,29817,29818,29836,29847,29851,29873,29878,29886,29907,29918,29928,29952,29954,29993,30016,30034,30035,30080,30129,30158,30172,30185,30223,30238,30255,30291,30292,30334,30348,30397,30415,30417,30419,30424,30445,30448,30467,30468,30495,30500,30504,30505,30531,30552,30557,30566,30569,30571,30577,30597,30604,30613,30621,30630,30642,30646,30650,30653,30657,30667,30669,30671,30678,30681,30726,30755,30845,30870,30987,31044]]],["howbeit",[2,2,[[45,1,1,0,1,[[1075,1,1,0,1]]],[57,1,1,1,2,[[1135,1,1,1,2]]]],[28698,30011]]],["nevertheless",[4,4,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]],[46,1,1,2,3,[[1089,1,1,2,3]]],[54,1,1,3,4,[[1125,1,1,3,4]]]],[24790,26538,29038,29821]]],["save",[2,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]]],[23773,24546]]],["therefore",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27279]]],["yea",[11,6,[[42,1,1,0,1,[[1012,1,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[46,6,1,3,4,[[1084,6,1,3,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]],[49,1,1,5,6,[[1103,1,1,5,6]]]],[26728,28022,28436,28927,29148,29379]]],["yet",[10,10,[[40,1,1,0,1,[[970,1,1,0,1]]],[45,3,3,1,4,[[1065,2,2,1,3],[1070,1,1,3,4]]],[46,5,5,4,9,[[1081,2,2,4,6],[1082,1,1,6,7],[1088,1,1,7,8],[1090,1,1,8,9]]],[50,1,1,9,10,[[1108,1,1,9,10]]]],[24783,28437,28448,28542,28867,28875,28893,28995,29047,29499]]]]},{"k":"G236","v":[["*",[6,6,[[43,1,1,0,1,[[1023,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[45,2,2,2,4,[[1076,2,2,2,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]],[57,1,1,5,6,[[1133,1,1,5,6]]]],[27115,27953,28769,28770,29151,29975]]],["change",[2,2,[[43,1,1,0,1,[[1023,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]]],[27115,29151]]],["changed",[4,4,[[44,1,1,0,1,[[1046,1,1,0,1]]],[45,2,2,1,3,[[1076,2,2,1,3]]],[57,1,1,3,4,[[1133,1,1,3,4]]]],[27953,28769,28770,29975]]]]},{"k":"G237","v":[["way",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26482]]]]},{"k":"G238","v":[["allegory",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29155]]]]},{"k":"G239","v":[["Alleluia",[4,4,[[65,4,4,0,4,[[1185,4,4,0,4]]]],[31018,31020,31021,31023]]]]},{"k":"G240","v":[["*",[100,94,[[39,3,2,0,2,[[952,2,1,0,1],[953,1,1,1,2]]],[40,5,5,2,7,[[960,1,1,2,3],[964,1,1,3,4],[965,2,2,4,6],[971,1,1,6,7]]],[41,10,10,7,17,[[974,1,1,7,8],[976,1,1,8,9],[978,1,1,9,10],[979,1,1,10,11],[980,1,1,11,12],[984,1,1,12,13],[995,1,1,13,14],[996,3,3,14,17]]],[42,15,14,17,31,[[1000,1,1,17,18],[1001,1,1,18,19],[1002,2,2,19,21],[1007,1,1,21,22],[1009,5,4,22,26],[1011,2,2,26,28],[1012,2,2,28,30],[1015,1,1,30,31]]],[43,9,9,31,40,[[1019,1,1,31,32],[1021,1,1,32,33],[1024,1,1,33,34],[1032,1,1,34,35],[1036,1,1,35,36],[1038,1,1,36,37],[1043,1,1,37,38],[1045,2,2,38,40]]],[44,14,13,40,53,[[1046,2,2,40,42],[1047,1,1,42,43],[1057,4,3,43,46],[1058,1,1,46,47],[1059,2,2,47,49],[1060,3,3,49,52],[1061,1,1,52,53]]],[45,4,4,53,57,[[1068,1,1,53,54],[1072,1,1,54,55],[1073,1,1,55,56],[1077,1,1,56,57]]],[46,1,1,57,58,[[1090,1,1,57,58]]],[47,7,5,58,63,[[1095,6,4,58,62],[1096,1,1,62,63]]],[48,4,4,63,67,[[1100,3,3,63,66],[1101,1,1,66,67]]],[49,1,1,67,68,[[1104,1,1,67,68]]],[50,2,2,68,70,[[1109,2,2,68,70]]],[51,5,5,70,75,[[1113,1,1,70,71],[1114,2,2,71,73],[1115,2,2,73,75]]],[52,1,1,75,76,[[1116,1,1,75,76]]],[55,1,1,76,77,[[1131,1,1,76,77]]],[57,1,1,77,78,[[1142,1,1,77,78]]],[58,4,3,78,81,[[1149,1,1,78,79],[1150,3,2,79,81]]],[59,4,4,81,85,[[1151,1,1,81,82],[1154,1,1,82,83],[1155,2,2,83,85]]],[61,6,6,85,91,[[1159,1,1,85,86],[1161,2,2,86,88],[1162,3,3,88,91]]],[62,1,1,91,92,[[1164,1,1,91,92]]],[65,2,2,92,94,[[1172,1,1,92,93],[1177,1,1,93,94]]]],[23967,24040,24364,24516,24572,24588,24857,24988,25099,25157,25227,25270,25460,25947,26005,26008,26023,26189,26254,26300,26309,26579,26644,26652,26664,26665,26711,26716,26743,26745,26849,26956,27037,27142,27481,27623,27670,27854,27903,27924,27942,27957,27977,28250,28255,28261,28274,28293,28299,28308,28310,28317,28352,28492,28633,28659,28796,29055,29175,29177,29179,29188,29190,29274,29297,29304,29325,29394,29526,29530,29602,29612,29621,29632,29636,29652,29926,30157,30348,30363,30370,30396,30455,30470,30479,30547,30590,30602,30610,30614,30615,30650,30797,30882]]],["+",[32,32,[[39,1,1,0,1,[[953,1,1,0,1]]],[40,3,3,1,4,[[960,1,1,1,2],[964,1,1,2,3],[965,1,1,3,4]]],[41,7,7,4,11,[[974,1,1,4,5],[978,1,1,5,6],[980,1,1,6,7],[995,1,1,7,8],[996,3,3,8,11]]],[42,4,4,11,15,[[1000,1,1,11,12],[1001,1,1,12,13],[1009,2,2,13,15]]],[43,3,3,15,18,[[1019,1,1,15,16],[1032,1,1,16,17],[1043,1,1,17,18]]],[44,5,5,18,23,[[1046,2,2,18,20],[1057,2,2,20,22],[1060,1,1,22,23]]],[45,1,1,23,24,[[1073,1,1,23,24]]],[48,1,1,24,25,[[1100,1,1,24,25]]],[49,1,1,25,26,[[1104,1,1,25,26]]],[50,1,1,26,27,[[1109,1,1,26,27]]],[51,1,1,27,28,[[1113,1,1,27,28]]],[58,2,2,28,30,[[1150,2,2,28,30]]],[59,1,1,30,31,[[1154,1,1,30,31]]],[61,1,1,31,32,[[1159,1,1,31,32]]]],[24040,24364,24516,24588,24988,25157,25270,25947,26005,26008,26023,26189,26254,26652,26665,26956,27481,27854,27942,27957,28255,28261,28308,28659,29304,29394,29526,29602,30363,30370,30455,30547]]],["another",[49,45,[[39,2,1,0,1,[[952,2,1,0,1]]],[41,2,2,1,3,[[979,1,1,1,2],[984,1,1,2,3]]],[42,4,3,3,6,[[1009,2,1,3,4],[1011,2,2,4,6]]],[43,3,3,6,9,[[1024,1,1,6,7],[1036,1,1,7,8],[1038,1,1,8,9]]],[44,9,9,9,18,[[1047,1,1,9,10],[1057,2,2,10,12],[1058,1,1,12,13],[1059,2,2,13,15],[1060,2,2,15,17],[1061,1,1,17,18]]],[45,2,2,18,20,[[1072,1,1,18,19],[1077,1,1,19,20]]],[46,1,1,20,21,[[1090,1,1,20,21]]],[47,5,3,21,24,[[1095,5,3,21,24]]],[48,3,3,24,27,[[1100,2,2,24,26],[1101,1,1,26,27]]],[50,1,1,27,28,[[1109,1,1,27,28]]],[51,2,2,28,30,[[1114,2,2,28,30]]],[55,1,1,30,31,[[1131,1,1,30,31]]],[57,1,1,31,32,[[1142,1,1,31,32]]],[58,2,2,32,34,[[1149,1,1,32,33],[1150,1,1,33,34]]],[59,3,3,34,37,[[1151,1,1,34,35],[1155,2,2,35,37]]],[61,5,5,37,42,[[1161,2,2,37,39],[1162,3,3,39,42]]],[62,1,1,42,43,[[1164,1,1,42,43]]],[65,2,2,43,45,[[1172,1,1,43,44],[1177,1,1,44,45]]]],[23967,25227,25460,26664,26711,26716,27142,27623,27670,27977,28250,28255,28274,28293,28299,28310,28317,28352,28633,28796,29055,29175,29177,29188,29274,29297,29325,29530,29612,29621,29926,30157,30348,30370,30396,30470,30479,30590,30602,30610,30614,30615,30650,30797,30882]]],["another's",[2,2,[[42,1,1,0,1,[[1009,1,1,0,1]]],[47,1,1,1,2,[[1096,1,1,1,2]]]],[26644,29190]]],["other",[3,3,[[45,1,1,0,1,[[1068,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]]],[28492,29179,29652]]],["themselves",[10,10,[[40,2,2,0,2,[[965,1,1,0,1],[971,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]],[42,4,4,3,7,[[1002,1,1,3,4],[1007,1,1,4,5],[1012,1,1,5,6],[1015,1,1,6,7]]],[43,3,3,7,10,[[1021,1,1,7,8],[1045,2,2,8,10]]]],[24572,24857,25099,26309,26579,26743,26849,27037,27903,27924]]],["together",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29632]]],["yourselves",[3,3,[[42,2,2,0,2,[[1002,1,1,0,1],[1012,1,1,1,2]]],[51,1,1,2,3,[[1115,1,1,2,3]]]],[26300,26745,29636]]]]},{"k":"G241","v":[["stranger",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25669]]]]},{"k":"G242","v":[["*",[3,3,[[42,1,1,0,1,[[1000,1,1,0,1]]],[43,2,2,1,3,[[1020,1,1,1,2],[1031,1,1,2,3]]]],[26170,27004,27424]]],["leaped",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27424]]],["leaping",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27004]]],["up",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26170]]]]},{"k":"G243","v":[["*",[160,141,[[39,30,29,0,29,[[930,1,1,0,1],[932,1,1,1,2],[933,1,1,2,3],[936,1,1,3,4],[938,1,1,4,5],[940,1,1,5,6],[941,6,6,6,12],[944,1,1,12,13],[947,1,1,13,14],[948,2,2,14,16],[949,4,4,16,20],[950,1,1,20,21],[953,5,4,21,25],[954,1,1,25,26],[955,2,2,26,28],[956,1,1,28,29]]],[40,24,21,29,50,[[959,1,1,29,30],[960,4,4,30,34],[962,2,1,34,35],[963,2,2,35,37],[964,2,1,37,38],[966,2,2,38,40],[967,1,1,40,41],[968,6,5,41,46],[970,2,2,46,48],[971,2,2,48,50]]],[41,12,11,50,61,[[977,1,1,50,51],[978,2,2,51,53],[979,3,3,53,56],[981,3,2,56,58],[992,1,1,58,59],[994,1,1,59,60],[995,1,1,60,61]]],[42,34,31,61,92,[[1000,3,2,61,63],[1001,3,3,63,66],[1002,2,2,66,68],[1003,3,2,68,70],[1005,3,2,70,72],[1006,2,2,72,74],[1008,1,1,74,75],[1010,1,1,75,76],[1011,1,1,76,77],[1014,3,3,77,80],[1015,2,2,80,82],[1016,6,6,82,88],[1017,4,4,88,92]]],[43,8,5,92,97,[[1019,2,1,92,93],[1021,1,1,93,94],[1032,1,1,94,95],[1036,2,1,95,96],[1038,2,1,96,97]]],[45,23,15,97,112,[[1062,1,1,97,98],[1064,2,2,98,100],[1070,3,3,100,103],[1071,1,1,103,104],[1073,6,3,104,107],[1075,3,3,107,110],[1076,7,2,110,112]]],[46,4,4,112,116,[[1078,1,1,112,113],[1085,1,1,113,114],[1088,2,2,114,116]]],[47,2,2,116,118,[[1091,1,1,116,117],[1095,1,1,117,118]]],[49,1,1,118,119,[[1105,1,1,118,119]]],[51,1,1,119,120,[[1112,1,1,119,120]]],[57,2,2,120,122,[[1136,1,1,120,121],[1143,1,1,121,122]]],[58,1,1,122,123,[[1150,1,1,122,123]]],[65,18,18,123,141,[[1168,1,1,123,124],[1172,1,1,124,125],[1173,1,1,125,126],[1174,1,1,126,127],[1176,1,1,127,128],[1178,1,1,128,129],[1179,1,1,129,130],[1180,5,5,130,135],[1181,1,1,135,136],[1182,1,1,136,137],[1183,1,1,137,138],[1184,2,2,138,140],[1186,1,1,140,141]]]],[23181,23230,23273,23354,23440,23502,23544,23546,23547,23563,23570,23572,23686,23771,23795,23798,23834,23859,23862,23867,23876,24024,24025,24028,24030,24125,24171,24190,24196,24293,24328,24330,24331,24359,24422,24467,24471,24528,24599,24600,24648,24677,24678,24682,24704,24705,24773,24812,24857,24867,25136,25156,25175,25203,25214,25215,25309,25320,25795,25923,25970,26193,26194,26217,26242,26253,26279,26280,26340,26369,26449,26456,26497,26502,26609,26684,26723,26800,26801,26819,26843,26857,26869,26870,26871,26875,26892,26897,26900,26906,26916,26923,26961,27034,27444,27617,27698,28379,28420,28421,28542,28552,28567,28596,28642,28643,28644,28697,28707,28708,28757,28759,28813,28945,28993,28997,29064,29172,29425,29576,30022,30207,30366,30741,30797,30812,30830,30862,30894,30919,30932,30934,30941,30943,30944,30947,30961,30985,30994,30997,31050]]],["+",[7,5,[[39,1,1,0,1,[[930,1,1,0,1]]],[43,5,3,1,4,[[1019,2,1,1,2],[1036,1,1,2,3],[1038,2,1,3,4]]],[47,1,1,4,5,[[1095,1,1,4,5]]]],[23181,26961,27617,27698,29172]]],["Another",[3,3,[[39,3,3,0,3,[[941,3,3,0,3]]]],[23563,23570,23572]]],["One",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26193]]],["Others",[4,4,[[40,1,1,0,1,[[962,1,1,0,1]]],[42,3,3,1,4,[[1003,1,1,1,2],[1005,1,1,2,3],[1006,1,1,3,4]]]],[24422,26369,26456,26502]]],["Some",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[42,1,1,1,2,[[1005,1,1,1,2]]]],[23544,26449]]],["another",[55,49,[[39,5,5,0,5,[[936,1,1,0,1],[938,1,1,1,2],[947,1,1,2,3],[949,1,1,3,4],[954,1,1,4,5]]],[40,6,6,5,11,[[966,2,2,5,7],[968,2,2,7,9],[970,2,2,9,11]]],[41,4,4,11,15,[[979,3,3,11,14],[994,1,1,14,15]]],[42,7,7,15,22,[[1000,1,1,15,16],[1001,3,3,16,19],[1010,1,1,19,20],[1014,1,1,20,21],[1017,1,1,21,22]]],[45,14,8,22,30,[[1064,1,1,22,23],[1071,1,1,23,24],[1073,6,3,24,27],[1075,1,1,27,28],[1076,5,2,28,30]]],[46,1,1,30,31,[[1088,1,1,30,31]]],[47,1,1,31,32,[[1091,1,1,31,32]]],[57,1,1,32,33,[[1136,1,1,32,33]]],[65,16,16,33,49,[[1172,1,1,33,34],[1173,1,1,34,35],[1174,1,1,35,36],[1176,1,1,36,37],[1178,1,1,37,38],[1179,1,1,38,39],[1180,5,5,39,44],[1181,1,1,44,45],[1182,1,1,45,46],[1184,2,2,46,48],[1186,1,1,48,49]]]],[23354,23440,23771,23859,24125,24599,24600,24677,24678,24773,24812,25203,25214,25215,25923,26193,26217,26242,26253,26684,26800,26916,28420,28596,28642,28643,28644,28708,28757,28759,28993,29064,30022,30797,30812,30830,30862,30894,30919,30932,30934,30941,30943,30944,30947,30961,30994,30997,31050]]],["any",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30366]]],["man",[2,2,[[42,1,1,0,1,[[1011,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[26723,29425]]],["men",[2,2,[[42,1,1,0,1,[[1000,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]]],[26194,28945]]],["more",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24028]]],["one",[2,2,[[45,2,2,0,2,[[1076,2,2,0,2]]]],[28757,28759]]],["other",[43,43,[[39,13,13,0,13,[[932,1,1,0,1],[933,1,1,1,2],[940,1,1,2,3],[941,1,1,3,4],[949,2,2,4,6],[950,1,1,6,7],[953,4,4,7,11],[955,1,1,11,12],[956,1,1,12,13]]],[40,6,6,13,19,[[959,1,1,13,14],[960,2,2,14,16],[963,1,1,16,17],[968,2,2,17,19]]],[41,2,2,19,21,[[978,2,2,19,21]]],[42,14,14,21,35,[[1002,2,2,21,23],[1006,1,1,23,24],[1014,1,1,24,25],[1015,2,2,25,27],[1016,6,6,27,33],[1017,2,2,33,35]]],[43,2,2,35,37,[[1021,1,1,35,36],[1032,1,1,36,37]]],[45,3,3,37,40,[[1062,1,1,37,38],[1064,1,1,38,39],[1075,1,1,39,40]]],[46,1,1,40,41,[[1088,1,1,40,41]]],[65,2,2,41,43,[[1168,1,1,41,42],[1183,1,1,42,43]]]],[23230,23273,23502,23547,23862,23867,23876,24024,24025,24028,24030,24190,24196,24293,24331,24359,24471,24704,24705,25156,25175,26279,26280,26497,26801,26843,26857,26869,26870,26871,26875,26892,26897,26900,26906,27034,27444,28379,28421,28707,28997,30741,30985]]],["others",[25,25,[[39,4,4,0,4,[[948,2,2,0,2],[949,1,1,2,3],[955,1,1,3,4]]],[40,6,6,4,10,[[962,1,1,4,5],[964,1,1,5,6],[967,1,1,6,7],[968,2,2,7,9],[971,1,1,9,10]]],[41,5,5,10,15,[[977,1,1,10,11],[981,2,2,11,13],[992,1,1,13,14],[995,1,1,14,15]]],[42,4,4,15,19,[[1003,1,1,15,16],[1005,1,1,16,17],[1008,1,1,17,18],[1014,1,1,18,19]]],[45,4,4,19,23,[[1070,3,3,19,22],[1075,1,1,22,23]]],[51,1,1,23,24,[[1112,1,1,23,24]]],[57,1,1,24,25,[[1143,1,1,24,25]]]],[23795,23798,23834,24171,24422,24528,24648,24678,24682,24857,25136,25309,25320,25795,25970,26340,26449,26609,26819,28542,28552,28567,28697,29576,30207]]],["some",[8,8,[[39,2,2,0,2,[[941,1,1,0,1],[944,1,1,1,2]]],[40,3,3,2,5,[[960,2,2,2,4],[964,1,1,4,5]]],[41,1,1,5,6,[[981,1,1,5,6]]],[42,1,1,6,7,[[1003,1,1,6,7]]],[43,1,1,7,8,[[1036,1,1,7,8]]]],[23546,23686,24328,24330,24528,25320,26369,27617]]],["things",[3,3,[[40,1,1,0,1,[[963,1,1,0,1]]],[42,1,1,1,2,[[1017,1,1,1,2]]],[46,1,1,2,3,[[1078,1,1,2,3]]]],[24467,26923,28813]]],["women",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24867]]]]},{"k":"G244","v":[["matters",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30461]]]]},{"k":"G245","v":[["*",[14,13,[[39,2,2,0,2,[[945,2,2,0,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[42,2,1,3,4,[[1006,2,1,3,4]]],[43,1,1,4,5,[[1024,1,1,4,5]]],[44,2,2,5,7,[[1059,1,1,5,6],[1060,1,1,6,7]]],[46,2,2,7,9,[[1087,2,2,7,9]]],[53,1,1,9,10,[[1123,1,1,9,10]]],[57,3,3,10,13,[[1141,1,1,10,11],[1143,2,2,11,13]]]],[23725,23726,25632,26486,27122,28284,28323,28986,28987,29785,30130,30181,30206]]],["aliens",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30206]]],["country",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30181]]],["man's",[4,4,[[41,1,1,0,1,[[988,1,1,0,1]]],[44,2,2,1,3,[[1059,1,1,1,2],[1060,1,1,2,3]]],[46,1,1,3,4,[[1087,1,1,3,4]]]],[25632,28284,28323,28987]]],["men's",[2,2,[[46,1,1,0,1,[[1087,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[28986,29785]]],["others",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30130]]],["strange",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27122]]],["stranger",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26486]]],["strangers",[3,3,[[39,2,2,0,2,[[945,2,2,0,2]]],[42,1,1,2,3,[[1006,1,1,2,3]]]],[23725,23726,26486]]]]},{"k":"G246","v":[["nation",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27287]]]]},{"k":"G247","v":[["otherwise",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29788]]]]},{"k":"G248","v":[["*",[3,3,[[45,2,2,0,2,[[1070,2,2,0,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]]],[28549,28550,29781]]],["corn",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28549]]],["out",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29781]]],["thresheth",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28550]]]]},{"k":"G249","v":[["*",[3,3,[[43,1,1,0,1,[[1042,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[27823,30512,30682]]],["brute",[2,2,[[60,1,1,0,1,[[1157,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[30512,30682]]],["unreasonable",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27823]]]]},{"k":"G250","v":[["aloes",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26864]]]]},{"k":"G251","v":[["salt",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24587]]]]},{"k":"G252","v":[["salt",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30331]]]]},{"k":"G253","v":[["sorrowful",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29419]]]]},{"k":"G254","v":[["*",[11,10,[[40,3,2,0,2,[[961,3,2,0,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[43,4,4,3,7,[[1029,2,2,3,5],[1038,1,1,5,6],[1045,1,1,6,7]]],[48,1,1,7,8,[[1102,1,1,7,8]]],[54,1,1,8,9,[[1125,1,1,8,9]]],[65,1,1,9,10,[[1186,1,1,9,10]]]],[24367,24368,25274,27343,27344,27697,27919,29357,29825,31039]]],["bonds",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29357]]],["chain",[3,3,[[43,1,1,0,1,[[1045,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]],[65,1,1,2,3,[[1186,1,1,2,3]]]],[27919,29825,31039]]],["chains",[7,6,[[40,3,2,0,2,[[961,3,2,0,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[43,3,3,3,6,[[1029,2,2,3,5],[1038,1,1,5,6]]]],[24367,24368,25274,27343,27344,27697]]]]},{"k":"G255","v":[["unprofitable",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30258]]]]},{"k":"G256","v":[["Alphaeus",[5,5,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[959,1,1,2,3]]],[41,1,1,3,4,[[978,1,1,3,4]]],[43,1,1,4,5,[[1018,1,1,4,5]]]],[23420,24274,24306,25161,26936]]]]},{"k":"G257","v":[["floor",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23204,25042]]]]},{"k":"G258","v":[["*",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[985,1,1,2,3]]]],[23365,25359,25550]]],["Foxes",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25359]]],["fox",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25550]]],["foxes",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23365]]]]},{"k":"G259","v":[["+",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30512]]]]},{"k":"G260","v":[["*",[9,9,[[39,2,2,0,2,[[941,1,1,0,1],[948,1,1,1,2]]],[43,1,1,2,3,[[1044,1,1,2,3]]],[44,1,1,3,4,[[1048,1,1,3,4]]],[50,1,1,4,5,[[1110,1,1,4,5]]],[51,2,2,5,7,[[1114,1,1,5,6],[1115,1,1,6,7]]],[53,1,1,7,8,[[1123,1,1,7,8]]],[56,1,1,8,9,[[1132,1,1,8,9]]]],[23568,23793,27895,28003,29545,29620,29631,29776,29960]]],["+",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23793]]],["Withal",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29545]]],["and",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27895]]],["together",[3,3,[[44,1,1,0,1,[[1048,1,1,0,1]]],[51,2,2,1,3,[[1114,1,1,1,2],[1115,1,1,2,3]]]],[28003,29620,29631]]],["with",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23568]]],["withal",[2,2,[[53,1,1,0,1,[[1123,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[29776,29960]]]]},{"k":"G261","v":[["unlearned",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30538]]]]},{"k":"G262","v":[["away",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30469]]]]},{"k":"G263","v":[["away",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30378]]]]},{"k":"G264","v":[["*",[43,37,[[39,3,3,0,3,[[946,2,2,0,2],[955,1,1,2,3]]],[41,4,4,3,7,[[987,2,2,3,5],[989,2,2,5,7]]],[42,4,4,7,11,[[1001,1,1,7,8],[1004,1,1,8,9],[1005,2,2,9,11]]],[43,1,1,11,12,[[1042,1,1,11,12]]],[44,7,6,12,18,[[1047,2,1,12,13],[1048,1,1,13,14],[1050,3,3,14,17],[1051,1,1,17,18]]],[45,7,5,18,23,[[1067,1,1,18,19],[1068,3,2,19,21],[1069,2,1,21,22],[1076,1,1,22,23]]],[48,1,1,23,24,[[1100,1,1,23,24]]],[53,1,1,24,25,[[1123,1,1,24,25]]],[55,1,1,25,26,[[1131,1,1,25,26]]],[57,2,2,26,28,[[1135,1,1,26,27],[1142,1,1,27,28]]],[59,1,1,28,29,[[1152,1,1,28,29]]],[60,1,1,29,30,[[1157,1,1,29,30]]],[61,10,7,30,37,[[1159,1,1,30,31],[1160,2,1,31,32],[1161,4,3,32,35],[1163,3,2,35,37]]]],[23742,23748,24133,25606,25609,25654,25655,26224,26392,26442,26443,27804,27974,28014,28059,28061,28063,28083,28485,28515,28523,28539,28752,29298,29783,29934,30012,30159,30419,30504,30550,30551,30585,30587,30588,30640,30642]]],["+",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28061]]],["faults",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30419]]],["offended",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27804]]],["sin",[16,13,[[39,1,1,0,1,[[946,1,1,0,1]]],[42,3,3,1,4,[[1001,1,1,1,2],[1004,1,1,2,3],[1005,1,1,3,4]]],[44,1,1,4,5,[[1051,1,1,4,5]]],[45,3,2,5,7,[[1069,2,1,5,6],[1076,1,1,6,7]]],[48,1,1,7,8,[[1100,1,1,7,8]]],[53,1,1,8,9,[[1123,1,1,8,9]]],[57,1,1,9,10,[[1142,1,1,9,10]]],[61,5,3,10,13,[[1160,2,1,10,11],[1161,1,1,11,12],[1163,2,1,12,13]]]],[23748,26224,26392,26442,28083,28539,28752,29298,29783,30159,30551,30588,30640]]],["sinned",[14,12,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,2,2,1,3,[[987,2,2,1,3]]],[42,1,1,3,4,[[1005,1,1,3,4]]],[44,5,4,4,8,[[1047,2,1,4,5],[1048,1,1,5,6],[1050,2,2,6,8]]],[45,2,1,8,9,[[1068,2,1,8,9]]],[57,1,1,9,10,[[1135,1,1,9,10]]],[60,1,1,10,11,[[1157,1,1,10,11]]],[61,1,1,11,12,[[1159,1,1,11,12]]]],[24133,25606,25609,26443,27974,28014,28059,28063,28515,30012,30504,30550]]],["sinneth",[7,6,[[45,2,2,0,2,[[1067,1,1,0,1],[1068,1,1,1,2]]],[55,1,1,2,3,[[1131,1,1,2,3]]],[61,4,3,3,6,[[1161,3,2,3,5],[1163,1,1,5,6]]]],[28485,28523,29934,30585,30587,30642]]],["trespass",[3,3,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,2,2,1,3,[[989,2,2,1,3]]]],[23742,25654,25655]]]]},{"k":"G265","v":[["*",[4,4,[[40,2,2,0,2,[[959,1,1,0,1],[960,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[45,1,1,3,4,[[1067,1,1,3,4]]]],[24316,24335,28016,28485]]],["sin",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28485]]],["sins",[3,3,[[40,2,2,0,2,[[959,1,1,0,1],[960,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]]],[24316,24335,28016]]]]},{"k":"G266","v":[["*",[174,151,[[39,7,7,0,7,[[929,1,1,0,1],[931,1,1,1,2],[937,3,3,2,5],[940,1,1,5,6],[954,1,1,6,7]]],[40,6,6,7,13,[[957,2,2,7,9],[958,4,4,9,13]]],[41,11,11,13,24,[[973,1,1,13,14],[975,1,1,14,15],[977,4,4,15,19],[979,3,3,19,22],[983,1,1,22,23],[996,1,1,23,24]]],[42,17,13,24,37,[[997,1,1,24,25],[1004,6,4,25,29],[1005,3,2,29,31],[1011,3,2,31,33],[1012,2,2,33,35],[1015,1,1,35,36],[1016,1,1,36,37]]],[43,8,8,37,45,[[1019,1,1,37,38],[1020,1,1,38,39],[1022,1,1,39,40],[1024,1,1,40,41],[1027,1,1,41,42],[1030,1,1,42,43],[1039,1,1,43,44],[1043,1,1,44,45]]],[44,48,39,45,84,[[1048,2,2,45,47],[1049,2,2,47,49],[1050,6,4,49,53],[1051,16,15,53,68],[1052,15,11,68,79],[1053,5,3,79,82],[1056,1,1,82,83],[1059,1,1,83,84]]],[45,4,3,84,87,[[1076,4,3,84,87]]],[46,3,2,87,89,[[1082,2,1,87,88],[1088,1,1,88,89]]],[47,3,3,89,92,[[1091,1,1,89,90],[1092,1,1,90,91],[1093,1,1,91,92]]],[48,1,1,92,93,[[1098,1,1,92,93]]],[50,2,2,93,95,[[1107,1,1,93,94],[1108,1,1,94,95]]],[51,1,1,95,96,[[1112,1,1,95,96]]],[52,1,1,96,97,[[1117,1,1,96,97]]],[53,2,2,97,99,[[1123,2,2,97,99]]],[54,1,1,99,100,[[1127,1,1,99,100]]],[57,25,24,100,124,[[1133,1,1,100,101],[1134,1,1,101,102],[1135,1,1,102,103],[1136,1,1,103,104],[1137,2,2,104,106],[1139,1,1,106,107],[1140,1,1,107,108],[1141,3,2,108,110],[1142,10,10,110,120],[1143,1,1,120,121],[1144,2,2,121,123],[1145,1,1,123,124]]],[58,6,5,124,129,[[1146,2,1,124,125],[1147,1,1,125,126],[1149,1,1,126,127],[1150,2,2,127,129]]],[59,6,5,129,134,[[1152,3,2,129,131],[1153,1,1,131,132],[1154,2,2,132,134]]],[60,2,2,134,136,[[1156,1,1,134,135],[1157,1,1,135,136]]],[61,17,12,136,148,[[1159,4,3,136,139],[1160,2,2,139,141],[1161,6,4,141,145],[1162,1,1,145,146],[1163,4,2,146,148]]],[65,3,3,148,151,[[1167,1,1,148,149],[1184,2,2,149,151]]]],[23165,23198,23381,23384,23385,23520,24082,24219,24220,24265,24267,24269,24270,24970,25028,25127,25128,25130,25131,25242,25243,25244,25409,26038,26073,26402,26405,26415,26427,26474,26481,26721,26723,26734,26735,26836,26890,26987,27015,27090,27176,27302,27400,27720,27841,28000,28011,28029,28030,28059,28060,28067,28068,28069,28070,28074,28075,28078,28079,28080,28081,28082,28084,28085,28086,28088,28090,28091,28096,28098,28099,28100,28102,28104,28105,28108,28111,28114,28116,28118,28119,28126,28236,28303,28721,28735,28774,28898,28996,29061,29098,29124,29230,29479,29505,29586,29664,29785,29787,29859,29966,29994,30008,30029,30031,30033,30091,30104,30131,30133,30135,30136,30137,30139,30141,30144,30145,30150,30151,30159,30197,30213,30216,30252,30281,30302,30354,30369,30374,30421,30423,30442,30447,30454,30488,30514,30547,30548,30549,30552,30562,30583,30584,30587,30588,30613,30640,30641,30702,30997,30998]]],["+",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26735]]],["offence",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28996]]],["sin",[93,76,[[39,1,1,0,1,[[940,1,1,0,1]]],[42,11,8,1,9,[[997,1,1,1,2],[1004,3,2,2,4],[1005,2,1,4,5],[1011,3,2,5,7],[1012,1,1,7,8],[1015,1,1,8,9]]],[43,1,1,9,10,[[1024,1,1,9,10]]],[44,44,36,10,46,[[1048,2,2,10,12],[1049,1,1,12,13],[1050,6,4,13,17],[1051,16,15,17,32],[1052,14,10,32,42],[1053,4,3,42,45],[1059,1,1,45,46]]],[45,2,1,46,47,[[1076,2,1,46,47]]],[46,2,1,47,48,[[1082,2,1,47,48]]],[47,2,2,48,50,[[1092,1,1,48,49],[1093,1,1,49,50]]],[52,1,1,50,51,[[1117,1,1,50,51]]],[57,11,11,51,62,[[1135,1,1,51,52],[1136,1,1,52,53],[1141,2,2,53,55],[1142,3,3,55,58],[1143,1,1,58,59],[1144,2,2,59,61],[1145,1,1,61,62]]],[58,4,3,62,65,[[1146,2,1,62,63],[1147,1,1,63,64],[1149,1,1,64,65]]],[59,2,2,65,67,[[1152,1,1,65,66],[1154,1,1,66,67]]],[60,1,1,67,68,[[1157,1,1,67,68]]],[61,11,8,68,76,[[1159,2,2,68,70],[1161,5,4,70,74],[1163,4,2,74,76]]]],[23520,26073,26415,26427,26481,26721,26723,26734,26836,27176,28000,28011,28030,28059,28060,28067,28068,28069,28070,28074,28075,28078,28079,28080,28081,28082,28084,28085,28086,28088,28090,28091,28098,28099,28100,28102,28104,28105,28108,28111,28114,28116,28118,28119,28126,28303,28774,28898,29098,29124,29664,30008,30029,30131,30133,30139,30141,30151,30197,30213,30216,30252,30281,30302,30354,30421,30447,30514,30547,30548,30583,30584,30587,30588,30640,30641]]],["sinful",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28119]]],["sins",[78,75,[[39,6,6,0,6,[[929,1,1,0,1],[931,1,1,1,2],[937,3,3,2,5],[954,1,1,5,6]]],[40,6,6,6,12,[[957,2,2,6,8],[958,4,4,8,12]]],[41,11,11,12,23,[[973,1,1,12,13],[975,1,1,13,14],[977,4,4,14,18],[979,3,3,18,21],[983,1,1,21,22],[996,1,1,22,23]]],[42,5,4,23,27,[[1004,3,2,23,25],[1005,1,1,25,26],[1016,1,1,26,27]]],[43,7,7,27,34,[[1019,1,1,27,28],[1020,1,1,28,29],[1022,1,1,29,30],[1027,1,1,30,31],[1030,1,1,31,32],[1039,1,1,32,33],[1043,1,1,33,34]]],[44,3,3,34,37,[[1049,1,1,34,35],[1052,1,1,35,36],[1056,1,1,36,37]]],[45,2,2,37,39,[[1076,2,2,37,39]]],[47,1,1,39,40,[[1091,1,1,39,40]]],[48,1,1,40,41,[[1098,1,1,40,41]]],[50,2,2,41,43,[[1107,1,1,41,42],[1108,1,1,42,43]]],[51,1,1,43,44,[[1112,1,1,43,44]]],[53,2,2,44,46,[[1123,2,2,44,46]]],[54,1,1,46,47,[[1127,1,1,46,47]]],[57,14,14,47,61,[[1133,1,1,47,48],[1134,1,1,48,49],[1137,2,2,49,51],[1139,1,1,51,52],[1140,1,1,52,53],[1141,1,1,53,54],[1142,7,7,54,61]]],[58,2,2,61,63,[[1150,2,2,61,63]]],[59,4,3,63,66,[[1152,2,1,63,64],[1153,1,1,64,65],[1154,1,1,65,66]]],[60,1,1,66,67,[[1156,1,1,66,67]]],[61,6,5,67,72,[[1159,2,1,67,68],[1160,2,2,68,70],[1161,1,1,70,71],[1162,1,1,71,72]]],[65,3,3,72,75,[[1167,1,1,72,73],[1184,2,2,73,75]]]],[23165,23198,23381,23384,23385,24082,24219,24220,24265,24267,24269,24270,24970,25028,25127,25128,25130,25131,25242,25243,25244,25409,26038,26402,26405,26474,26890,26987,27015,27090,27302,27400,27720,27841,28029,28096,28236,28721,28735,29061,29230,29479,29505,29586,29785,29787,29859,29966,29994,30031,30033,30091,30104,30133,30135,30136,30137,30144,30145,30150,30159,30369,30374,30423,30442,30454,30488,30549,30552,30562,30584,30613,30702,30997,30998]]]]},{"k":"G267","v":[["witness",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27431]]]]},{"k":"G268","v":[["*",[47,45,[[39,5,5,0,5,[[937,3,3,0,3],[939,1,1,3,4],[954,1,1,4,5]]],[40,6,5,5,10,[[958,4,3,5,8],[964,1,1,8,9],[970,1,1,9,10]]],[41,18,17,10,27,[[977,3,3,10,13],[978,4,3,13,16],[979,3,3,16,19],[985,1,1,19,20],[987,4,4,20,24],[990,1,1,24,25],[991,1,1,25,26],[996,1,1,26,27]]],[42,4,4,27,31,[[1005,4,4,27,31]]],[44,4,4,31,35,[[1048,1,1,31,32],[1050,2,2,32,34],[1052,1,1,34,35]]],[47,2,2,35,37,[[1092,2,2,35,37]]],[53,2,2,37,39,[[1119,2,2,37,39]]],[57,2,2,39,41,[[1139,1,1,39,40],[1144,1,1,40,41]]],[58,2,2,41,43,[[1149,1,1,41,42],[1150,1,1,42,43]]],[59,1,1,43,44,[[1154,1,1,43,44]]],[64,1,1,44,45,[[1166,1,1,44,45]]]],[23389,23390,23392,23478,24099,24275,24276,24277,24538,24795,25115,25137,25139,25178,25179,25180,25229,25232,25234,25520,25589,25590,25595,25598,25701,25738,25998,26456,26464,26465,26471,27998,28055,28066,28104,29096,29098,29705,29711,30090,30215,30345,30374,30464,30687]]],["sinful",[4,4,[[40,1,1,0,1,[[964,1,1,0,1]]],[41,2,2,1,3,[[977,1,1,1,2],[996,1,1,2,3]]],[44,1,1,3,4,[[1052,1,1,3,4]]]],[24538,25115,25998,28104]]],["sinner",[12,12,[[41,6,6,0,6,[[979,2,2,0,2],[987,2,2,2,4],[990,1,1,4,5],[991,1,1,5,6]]],[42,3,3,6,9,[[1005,3,3,6,9]]],[44,1,1,9,10,[[1048,1,1,9,10]]],[58,1,1,10,11,[[1150,1,1,10,11]]],[59,1,1,11,12,[[1154,1,1,11,12]]]],[25232,25234,25595,25598,25701,25738,26456,26464,26465,27998,30374,30464]]],["sinners",[31,29,[[39,5,5,0,5,[[937,3,3,0,3],[939,1,1,3,4],[954,1,1,4,5]]],[40,5,4,5,9,[[958,4,3,5,8],[970,1,1,8,9]]],[41,10,9,9,18,[[977,2,2,9,11],[978,4,3,11,14],[979,1,1,14,15],[985,1,1,15,16],[987,2,2,16,18]]],[42,1,1,18,19,[[1005,1,1,18,19]]],[44,2,2,19,21,[[1050,2,2,19,21]]],[47,2,2,21,23,[[1092,2,2,21,23]]],[53,2,2,23,25,[[1119,2,2,23,25]]],[57,2,2,25,27,[[1139,1,1,25,26],[1144,1,1,26,27]]],[58,1,1,27,28,[[1149,1,1,27,28]]],[64,1,1,28,29,[[1166,1,1,28,29]]]],[23389,23390,23392,23478,24099,24275,24276,24277,24795,25137,25139,25178,25179,25180,25229,25520,25589,25590,26471,28055,28066,29096,29098,29705,29711,30090,30215,30345,30687]]]]},{"k":"G269","v":[["*",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[29734,29925]]],["brawler",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29734]]],["brawlers",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29925]]]]},{"k":"G270","v":[["down",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30358]]]]},{"k":"G271","v":[["amethyst",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31073]]]]},{"k":"G272","v":[["*",[5,5,[[39,1,1,0,1,[[950,1,1,0,1]]],[53,1,1,1,2,[[1122,1,1,1,2]]],[57,2,2,2,4,[[1134,1,1,2,3],[1140,1,1,3,4]]],[60,1,1,4,5,[[1156,1,1,4,5]]]],[23877,29761,29980,30101,30491]]],["+",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30101]]],["Neglect",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29761]]],["neglect",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29980]]],["negligent",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30491]]],["of",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23877]]]]},{"k":"G273","v":[["*",[5,5,[[41,1,1,0,1,[[973,1,1,0,1]]],[49,2,2,1,3,[[1104,1,1,1,2],[1105,1,1,2,3]]],[51,1,1,3,4,[[1113,1,1,3,4]]],[57,1,1,4,5,[[1140,1,1,4,5]]]],[24899,29406,29427,29603,30099]]],["blameless",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[49,2,2,1,3,[[1104,1,1,1,2],[1105,1,1,2,3]]]],[24899,29406,29427]]],["faultless",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30099]]],["unblameable",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29603]]]]},{"k":"G274","v":[["*",[2,2,[[51,2,2,0,2,[[1112,1,1,0,1],[1115,1,1,1,2]]]],[29580,29644]]],["blameless",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29644]]],["unblameably",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29580]]]]},{"k":"G275","v":[["*",[2,2,[[39,1,1,0,1,[[956,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[24209,28519]]],["+",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24209]]],["carefulness",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28519]]]]},{"k":"G276","v":[["*",[2,2,[[57,2,2,0,2,[[1138,2,2,0,2]]]],[30061,30062]]],["immutability",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30061]]],["immutable",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30062]]]]},{"k":"G277","v":[["unmoveable",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28776]]]]},{"k":"G278","v":[["*",[2,2,[[44,1,1,0,1,[[1056,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]]],[28238,28926]]],["of",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28926]]],["repentance",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28238]]]]},{"k":"G279","v":[["impenitent",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27967]]]]},{"k":"G280","v":[["measure",[2,2,[[46,2,2,0,2,[[1087,2,2,0,2]]]],[28984,28986]]]]},{"k":"G281","v":[["*",[152,126,[[39,32,32,0,32,[[933,2,2,0,2],[934,4,4,2,6],[936,1,1,6,7],[938,3,3,7,10],[939,1,1,10,11],[941,1,1,11,12],[944,1,1,12,13],[945,1,1,13,14],[946,3,3,14,17],[947,2,2,17,19],[949,2,2,19,21],[951,1,1,21,22],[952,3,3,22,25],[953,3,3,25,28],[954,3,3,28,31],[956,1,1,31,32]]],[40,15,15,32,47,[[959,1,1,32,33],[962,1,1,33,34],[964,1,1,34,35],[965,2,2,35,37],[966,2,2,37,39],[967,1,1,39,40],[968,1,1,40,41],[969,1,1,41,42],[970,4,4,42,46],[972,1,1,46,47]]],[41,8,8,47,55,[[976,1,1,47,48],[984,1,1,48,49],[985,1,1,49,50],[990,2,2,50,52],[993,1,1,52,53],[995,1,1,53,54],[996,1,1,54,55]]],[42,51,26,55,81,[[997,2,1,55,56],[999,6,3,56,59],[1001,6,3,59,62],[1002,8,4,62,66],[1004,6,3,66,69],[1006,4,2,69,71],[1008,2,1,71,72],[1009,8,4,72,76],[1010,2,1,76,77],[1012,4,2,77,79],[1017,3,2,79,81]]],[44,7,7,81,88,[[1046,1,1,81,82],[1054,1,1,82,83],[1056,1,1,83,84],[1060,1,1,84,85],[1061,3,3,85,88]]],[45,2,2,88,90,[[1075,1,1,88,89],[1077,1,1,89,90]]],[46,2,2,90,92,[[1078,1,1,90,91],[1090,1,1,91,92]]],[47,2,2,92,94,[[1091,1,1,92,93],[1096,1,1,93,94]]],[48,2,2,94,96,[[1099,1,1,94,95],[1102,1,1,95,96]]],[49,2,2,96,98,[[1106,2,2,96,98]]],[50,1,1,98,99,[[1110,1,1,98,99]]],[51,1,1,99,100,[[1115,1,1,99,100]]],[52,1,1,100,101,[[1118,1,1,100,101]]],[53,3,3,101,104,[[1119,1,1,101,102],[1124,2,2,102,104]]],[54,2,2,104,106,[[1128,2,2,104,106]]],[55,1,1,106,107,[[1131,1,1,106,107]]],[56,1,1,107,108,[[1132,1,1,107,108]]],[57,2,2,108,110,[[1145,2,2,108,110]]],[59,3,3,110,113,[[1154,1,1,110,111],[1155,2,2,111,113]]],[60,1,1,113,114,[[1158,1,1,113,114]]],[61,1,1,114,115,[[1163,1,1,114,115]]],[62,1,1,115,116,[[1164,1,1,115,116]]],[64,1,1,116,117,[[1166,1,1,116,117]]],[65,10,9,117,126,[[1167,3,3,117,120],[1169,1,1,120,121],[1171,1,1,121,122],[1173,2,1,122,123],[1185,1,1,123,124],[1188,2,2,124,126]]]],[23252,23260,23284,23287,23295,23298,23355,23432,23440,23459,23470,23556,23700,23720,23730,23740,23745,23785,23790,23847,23857,23954,23959,23991,24004,24020,24048,24053,24067,24075,24088,24215,24316,24418,24512,24539,24579,24603,24617,24663,24716,24747,24763,24772,24779,24784,24893,25087,25496,25553,25705,25717,25858,25978,26044,26095,26123,26125,26131,26229,26234,26235,26283,26289,26304,26310,26415,26432,26439,26482,26488,26604,26646,26650,26651,26668,26680,26746,26749,26916,26923,27955,28160,28245,28336,28356,28360,28363,28694,28800,28820,29057,29062,29206,29272,29361,29462,29465,29560,29649,29696,29713,29804,29809,29888,29892,29938,29963,30262,30266,30457,30476,30479,30540,30645,30658,30697,30703,30704,30715,30760,30793,30822,31021,31100,31101]]],["Amen",[51,50,[[39,2,2,0,2,[[934,1,1,0,1],[956,1,1,1,2]]],[40,1,1,2,3,[[972,1,1,2,3]]],[41,1,1,3,4,[[996,1,1,3,4]]],[42,1,1,4,5,[[1017,1,1,4,5]]],[44,7,7,5,12,[[1046,1,1,5,6],[1054,1,1,6,7],[1056,1,1,7,8],[1060,1,1,8,9],[1061,3,3,9,12]]],[45,2,2,12,14,[[1075,1,1,12,13],[1077,1,1,13,14]]],[46,2,2,14,16,[[1078,1,1,14,15],[1090,1,1,15,16]]],[47,2,2,16,18,[[1091,1,1,16,17],[1096,1,1,17,18]]],[48,2,2,18,20,[[1099,1,1,18,19],[1102,1,1,19,20]]],[49,2,2,20,22,[[1106,2,2,20,22]]],[50,1,1,22,23,[[1110,1,1,22,23]]],[51,1,1,23,24,[[1115,1,1,23,24]]],[52,1,1,24,25,[[1118,1,1,24,25]]],[53,3,3,25,28,[[1119,1,1,25,26],[1124,2,2,26,28]]],[54,2,2,28,30,[[1128,2,2,28,30]]],[55,1,1,30,31,[[1131,1,1,30,31]]],[56,1,1,31,32,[[1132,1,1,31,32]]],[57,2,2,32,34,[[1145,2,2,32,34]]],[59,3,3,34,37,[[1154,1,1,34,35],[1155,2,2,35,37]]],[60,1,1,37,38,[[1158,1,1,37,38]]],[61,1,1,38,39,[[1163,1,1,38,39]]],[62,1,1,39,40,[[1164,1,1,39,40]]],[64,1,1,40,41,[[1166,1,1,40,41]]],[65,10,9,41,50,[[1167,3,3,41,44],[1169,1,1,44,45],[1171,1,1,45,46],[1173,2,1,46,47],[1185,1,1,47,48],[1188,2,2,48,50]]]],[23295,24215,24893,26044,26923,27955,28160,28245,28336,28356,28360,28363,28694,28800,28820,29057,29062,29206,29272,29361,29462,29465,29560,29649,29696,29713,29804,29809,29888,29892,29938,29963,30262,30266,30457,30476,30479,30540,30645,30658,30697,30703,30704,30715,30760,30793,30822,31021,31100,31101]]],["Verily",[64,64,[[39,23,23,0,23,[[933,1,1,0,1],[934,3,3,1,4],[936,1,1,4,5],[938,1,1,5,6],[939,1,1,6,7],[944,1,1,7,8],[946,2,2,8,10],[947,2,2,10,12],[949,2,2,12,14],[951,1,1,14,15],[952,2,2,15,17],[953,3,3,17,20],[954,3,3,20,23]]],[40,11,11,23,34,[[959,1,1,23,24],[962,1,1,24,25],[965,1,1,25,26],[966,2,2,26,28],[968,1,1,28,29],[969,1,1,29,30],[970,4,4,30,34]]],[41,5,5,34,39,[[976,1,1,34,35],[990,2,2,35,37],[993,1,1,37,38],[995,1,1,38,39]]],[42,25,25,39,64,[[997,1,1,39,40],[999,3,3,40,43],[1001,3,3,43,46],[1002,4,4,46,50],[1004,3,3,50,53],[1006,2,2,53,55],[1008,1,1,55,56],[1009,4,4,56,60],[1010,1,1,60,61],[1012,2,2,61,63],[1017,1,1,63,64]]]],[23260,23284,23287,23298,23355,23432,23470,23700,23730,23745,23785,23790,23847,23857,23954,23991,24004,24020,24048,24053,24067,24075,24088,24316,24418,24539,24603,24617,24716,24747,24763,24772,24779,24784,25087,25705,25717,25858,25978,26095,26123,26125,26131,26229,26234,26235,26283,26289,26304,26310,26415,26432,26439,26482,26488,26604,26646,26650,26651,26668,26680,26746,26749,26916]]],["verily",[37,37,[[39,7,7,0,7,[[933,1,1,0,1],[938,2,2,1,3],[941,1,1,3,4],[945,1,1,4,5],[946,1,1,5,6],[952,1,1,6,7]]],[40,3,3,7,10,[[964,1,1,7,8],[965,1,1,8,9],[967,1,1,9,10]]],[41,2,2,10,12,[[984,1,1,10,11],[985,1,1,11,12]]],[42,25,25,12,37,[[997,1,1,12,13],[999,3,3,13,16],[1001,3,3,16,19],[1002,4,4,19,23],[1004,3,3,23,26],[1006,2,2,26,28],[1008,1,1,28,29],[1009,4,4,29,33],[1010,1,1,33,34],[1012,2,2,34,36],[1017,1,1,36,37]]]],[23252,23440,23459,23556,23720,23740,23959,24512,24579,24663,25496,25553,26095,26123,26125,26131,26229,26234,26235,26283,26289,26304,26310,26415,26432,26439,26482,26488,26604,26646,26650,26651,26668,26680,26746,26749,26916]]]]},{"k":"G282","v":[["mother",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30067]]]]},{"k":"G283","v":[["undefiled",[4,4,[[57,2,2,0,2,[[1139,1,1,0,1],[1145,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[30090,30245,30293,30378]]]]},{"k":"G284","v":[["Aminadab",[3,2,[[39,2,1,0,1,[[929,2,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23148,25058]]]]},{"k":"G285","v":[["sand",[5,5,[[39,1,1,0,1,[[935,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]],[65,2,2,3,5,[[1179,1,1,3,4],[1186,1,1,4,5]]]],[23342,28182,30184,30909,31046]]]]},{"k":"G286","v":[["*",[4,4,[[42,2,2,0,2,[[997,2,2,0,2]]],[43,1,1,2,3,[[1025,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[26073,26080,27208,30393]]],["Lamb",[2,2,[[42,2,2,0,2,[[997,2,2,0,2]]]],[26073,26080]]],["lamb",[2,2,[[43,1,1,0,1,[[1025,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[27208,30393]]]]},{"k":"G287","v":[["+",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29767]]]]},{"k":"G288","v":[["vine",[9,9,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,3,3,3,6,[[1011,3,3,3,6]]],[58,1,1,6,7,[[1148,1,1,6,7]]],[65,2,2,7,9,[[1180,2,2,7,9]]]],[24083,24779,25882,26700,26703,26704,30331,30944,30945]]]]},{"k":"G289","v":[["vineyard",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25525]]]]},{"k":"G290","v":[["vineyard",[23,21,[[39,10,10,0,10,[[948,5,5,0,5],[949,5,5,5,10]]],[40,5,4,10,14,[[968,5,4,10,14]]],[41,7,6,14,20,[[985,1,1,14,15],[992,6,5,15,20]]],[45,1,1,20,21,[[1070,1,1,20,21]]]],[23793,23794,23796,23799,23800,23854,23859,23865,23866,23867,24674,24675,24681,24682,25524,25788,25789,25792,25794,25795,28547]]]]},{"k":"G291","v":[["Amplias",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28344]]]]},{"k":"G292","v":[["defended",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27140]]]]},{"k":"G293","v":[["net",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23227,24231]]]]},{"k":"G294","v":[["*",[4,4,[[39,2,2,0,2,[[934,1,1,0,1],[939,1,1,1,2]]],[41,2,2,2,4,[[979,1,1,2,3],[984,1,1,3,4]]]],[23312,23467,25220,25487]]],["clothe",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23312,25487]]],["clothed",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]]],[23467,25220]]]]},{"k":"G295","v":[["Amphipolis",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27524]]]]},{"k":"G296","v":[["met",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24644]]]]},{"k":"G297","v":[["both",[14,14,[[39,3,3,0,3,[[937,1,1,0,1],[941,1,1,1,2],[943,1,1,2,3]]],[41,6,6,3,9,[[973,2,2,3,5],[977,2,2,5,7],[978,1,1,7,8],[979,1,1,8,9]]],[43,2,2,9,11,[[1025,1,1,9,10],[1040,1,1,10,11]]],[48,3,3,11,14,[[1098,3,3,11,14]]]],[23396,23569,23647,24899,24900,25114,25145,25185,25237,27214,27742,29243,29245,29247]]]]},{"k":"G298","v":[["*",[2,2,[[49,1,1,0,1,[[1104,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[29406,30536]]],["blameless",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30536]]],["rebuke",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29406]]]]},{"k":"G299","v":[["*",[7,7,[[48,2,2,0,2,[[1097,1,1,0,1],[1101,1,1,1,2]]],[50,1,1,2,3,[[1107,1,1,2,3]]],[57,1,1,3,4,[[1141,1,1,3,4]]],[59,1,1,4,5,[[1151,1,1,4,5]]],[64,1,1,5,6,[[1166,1,1,5,6]]],[65,1,1,6,7,[[1180,1,1,6,7]]]],[29210,29331,29487,30119,30393,30696,30931]]],["blame",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29210]]],["blemish",[2,2,[[48,1,1,0,1,[[1101,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[29331,30393]]],["fault",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30931]]],["faultless",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30696]]],["spot",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30119]]],["unblameable",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29487]]]]},{"k":"G300","v":[["Amon",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23154]]]]},{"k":"G301","v":[["Amos",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25050]]]]},{"k":"G302","v":[["*",[182,165,[[39,39,33,0,33,[[930,1,1,0,1],[933,7,6,1,7],[934,1,1,7,8],[935,1,1,8,9],[938,4,3,9,12],[940,3,2,12,14],[943,1,1,14,15],[944,3,2,15,17],[945,1,1,17,18],[946,1,1,18,19],[947,1,1,19,20],[949,2,2,20,22],[950,1,1,22,23],[951,6,5,23,28],[952,4,3,28,31],[953,1,1,31,32],[954,1,1,32,33]]],[40,22,20,33,53,[[959,3,3,33,36],[960,1,1,36,37],[962,4,3,37,40],[964,3,2,40,42],[965,4,4,42,46],[966,1,1,46,47],[967,2,2,47,49],[968,1,1,49,50],[969,1,1,50,51],[970,2,2,51,53]]],[41,29,25,53,78,[[973,1,1,53,54],[974,1,1,54,55],[978,1,1,55,56],[979,1,1,56,57],[980,2,1,57,58],[981,7,6,58,64],[982,5,5,64,69],[984,3,2,69,71],[985,2,2,71,73],[989,2,1,73,74],[991,1,1,74,75],[992,2,2,75,77],[993,1,1,77,78]]],[42,27,25,78,103,[[997,1,1,78,79],[998,1,1,79,80],[1000,3,2,80,82],[1001,2,2,82,84],[1004,3,3,84,87],[1005,1,1,87,88],[1007,3,3,88,91],[1009,1,1,91,92],[1010,4,4,92,96],[1011,2,2,96,98],[1012,2,2,98,100],[1014,2,2,100,102],[1016,2,1,102,103]]],[43,20,20,103,123,[[1019,5,5,103,108],[1020,3,3,108,111],[1021,1,1,111,112],[1022,1,1,112,113],[1024,1,1,113,114],[1025,2,2,114,116],[1027,1,1,116,117],[1032,1,1,117,118],[1034,2,2,118,120],[1035,1,1,120,121],[1038,1,1,121,122],[1043,1,1,122,123]]],[44,7,5,123,128,[[1048,1,1,123,124],[1054,4,2,124,126],[1055,1,1,126,127],[1061,1,1,127,128]]],[45,10,9,128,137,[[1063,1,1,128,129],[1065,1,1,129,130],[1068,1,1,130,131],[1072,5,4,131,135],[1073,1,1,135,136],[1077,1,1,136,137]]],[46,3,3,137,140,[[1080,1,1,137,138],[1087,1,1,138,139],[1088,1,1,139,140]]],[47,5,5,140,145,[[1091,1,1,140,141],[1093,1,1,141,142],[1094,1,1,142,143],[1095,2,2,143,145]]],[49,1,1,145,146,[[1104,1,1,145,146]]],[50,1,1,146,147,[[1109,1,1,146,147]]],[51,1,1,147,148,[[1112,1,1,147,148]]],[57,6,6,148,154,[[1133,1,1,148,149],[1136,1,1,149,150],[1140,2,2,150,152],[1142,1,1,152,153],[1143,1,1,153,154]]],[58,3,3,154,157,[[1148,1,1,154,155],[1149,1,1,155,156],[1150,1,1,156,157]]],[61,5,5,157,162,[[1160,2,2,157,159],[1161,1,1,159,160],[1162,1,1,160,161],[1163,1,1,161,162]]],[65,3,3,162,165,[[1168,1,1,162,163],[1179,1,1,163,164],[1180,1,1,164,165]]]],[23182,23253,23255,23256,23260,23265,23266,23287,23328,23428,23440,23450,23509,23521,23638,23697,23700,23709,23733,23771,23848,23870,23881,23921,23934,23936,23948,23957,23979,23991,24000,24035,24102,24316,24317,24323,24348,24417,24418,24463,24535,24538,24539,24556,24579,24580,24632,24663,24664,24709,24737,24763,24798,24955,25008,25157,25234,25263,25305,25306,25325,25327,25328,25358,25368,25371,25373,25376,25398,25467,25498,25543,25553,25657,25754,25797,25822,25858,26077,26100,26166,26170,26229,26256,26400,26420,26423,26481,26544,26545,26555,26654,26670,26675,26681,26696,26715,26718,26739,26749,26815,26821,26890,26961,26970,26984,26988,26994,27015,27018,27019,27057,27083,27119,27195,27207,27276,27459,27541,27543,27571,27697,27852,27995,28170,28184,28201,28338,28402,28438,28492,28625,28626,28627,28634,28636,28778,28857,28980,29010,29067,29123,29146,29172,29179,29414,29534,29577,29976,30022,30096,30099,30135,30187,30323,30341,30361,30555,30569,30596,30618,30639,30742,30923,30930]]],["+",[179,162,[[39,39,33,0,33,[[930,1,1,0,1],[933,7,6,1,7],[934,1,1,7,8],[935,1,1,8,9],[938,4,3,9,12],[940,3,2,12,14],[943,1,1,14,15],[944,3,2,15,17],[945,1,1,17,18],[946,1,1,18,19],[947,1,1,19,20],[949,2,2,20,22],[950,1,1,22,23],[951,6,5,23,28],[952,4,3,28,31],[953,1,1,31,32],[954,1,1,32,33]]],[40,22,20,33,53,[[959,3,3,33,36],[960,1,1,36,37],[962,4,3,37,40],[964,3,2,40,42],[965,4,4,42,46],[966,1,1,46,47],[967,2,2,47,49],[968,1,1,49,50],[969,1,1,50,51],[970,2,2,51,53]]],[41,28,24,53,77,[[973,1,1,53,54],[974,1,1,54,55],[978,1,1,55,56],[979,1,1,56,57],[980,2,1,57,58],[981,7,6,58,64],[982,4,4,64,68],[984,3,2,68,70],[985,2,2,70,72],[989,2,1,72,73],[991,1,1,73,74],[992,2,2,74,76],[993,1,1,76,77]]],[42,26,24,77,101,[[997,1,1,77,78],[998,1,1,78,79],[1000,3,2,79,81],[1001,2,2,81,83],[1004,3,3,83,86],[1005,1,1,86,87],[1007,3,3,87,90],[1009,1,1,90,91],[1010,4,4,91,95],[1011,2,2,95,97],[1012,2,2,97,99],[1014,1,1,99,100],[1016,2,1,100,101]]],[43,20,20,101,121,[[1019,5,5,101,106],[1020,3,3,106,109],[1021,1,1,109,110],[1022,1,1,110,111],[1024,1,1,111,112],[1025,2,2,112,114],[1027,1,1,114,115],[1032,1,1,115,116],[1034,2,2,116,118],[1035,1,1,118,119],[1038,1,1,119,120],[1043,1,1,120,121]]],[44,7,5,121,126,[[1048,1,1,121,122],[1054,4,2,122,124],[1055,1,1,124,125],[1061,1,1,125,126]]],[45,9,8,126,134,[[1065,1,1,126,127],[1068,1,1,127,128],[1072,5,4,128,132],[1073,1,1,132,133],[1077,1,1,133,134]]],[46,3,3,134,137,[[1080,1,1,134,135],[1087,1,1,135,136],[1088,1,1,136,137]]],[47,5,5,137,142,[[1091,1,1,137,138],[1093,1,1,138,139],[1094,1,1,139,140],[1095,2,2,140,142]]],[49,1,1,142,143,[[1104,1,1,142,143]]],[50,1,1,143,144,[[1109,1,1,143,144]]],[51,1,1,144,145,[[1112,1,1,144,145]]],[57,6,6,145,151,[[1133,1,1,145,146],[1136,1,1,146,147],[1140,2,2,147,149],[1142,1,1,149,150],[1143,1,1,150,151]]],[58,3,3,151,154,[[1148,1,1,151,152],[1149,1,1,152,153],[1150,1,1,153,154]]],[61,5,5,154,159,[[1160,2,2,154,156],[1161,1,1,156,157],[1162,1,1,157,158],[1163,1,1,158,159]]],[65,3,3,159,162,[[1168,1,1,159,160],[1179,1,1,160,161],[1180,1,1,161,162]]]],[23182,23253,23255,23256,23260,23265,23266,23287,23328,23428,23440,23450,23509,23521,23638,23697,23700,23709,23733,23771,23848,23870,23881,23921,23934,23936,23948,23957,23979,23991,24000,24035,24102,24316,24317,24323,24348,24417,24418,24463,24535,24538,24539,24556,24579,24580,24632,24663,24664,24709,24737,24763,24798,24955,25008,25157,25234,25263,25305,25306,25325,25327,25328,25358,25368,25371,25373,25398,25467,25498,25543,25553,25657,25754,25797,25822,25858,26077,26100,26166,26170,26229,26256,26400,26420,26423,26481,26544,26545,26555,26654,26670,26675,26681,26696,26715,26718,26739,26749,26821,26890,26961,26970,26984,26988,26994,27015,27018,27019,27057,27083,27119,27195,27207,27276,27459,27541,27543,27571,27697,27852,27995,28170,28184,28201,28338,28438,28492,28625,28626,28627,28634,28636,28778,28857,28980,29010,29067,29123,29146,29172,29179,29414,29534,29577,29976,30022,30096,30099,30135,30187,30323,30341,30361,30555,30569,30596,30618,30639,30742,30923,30930]]],["had",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25376]]],["have",[2,2,[[42,1,1,0,1,[[1014,1,1,0,1]]],[45,1,1,1,2,[[1063,1,1,1,2]]]],[26815,28402]]]]},{"k":"G303","v":[["*",[15,14,[[39,3,3,0,3,[[941,1,1,0,1],[948,2,2,1,3]]],[40,3,2,3,5,[[962,2,1,3,4],[963,1,1,4,5]]],[41,3,3,5,8,[[981,2,2,5,7],[982,1,1,7,8]]],[42,1,1,8,9,[[998,1,1,8,9]]],[45,2,2,9,11,[[1067,1,1,9,10],[1075,1,1,10,11]]],[65,3,3,11,14,[[1170,1,1,11,12],[1173,1,1,12,13],[1187,1,1,13,14]]]],[23564,23801,23802,24447,24494,25304,25315,25364,26101,28472,28705,30776,30827,31074]]],["+",[7,6,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,2,1,1,2,[[962,2,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[45,1,1,3,4,[[1067,1,1,3,4]]],[65,2,2,4,6,[[1170,1,1,4,5],[1187,1,1,5,6]]]],[23564,24447,25364,28472,30776,31074]]],["apiece",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[42,1,1,1,2,[[998,1,1,1,2]]]],[25304,26101]]],["by",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[25315,28705]]],["in",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30827]]],["man",[2,2,[[39,2,2,0,2,[[948,2,2,0,2]]]],[23801,23802]]],["through",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24494]]]]},{"k":"G304","v":[["stairs",[2,2,[[43,2,2,0,2,[[1038,2,2,0,2]]]],[27699,27704]]]]},{"k":"G305","v":[["*",[81,77,[[39,8,8,0,8,[[931,1,1,0,1],[933,1,1,1,2],[941,1,1,2,3],[942,1,1,3,4],[943,1,1,4,5],[945,1,1,5,6],[948,2,2,6,8]]],[40,8,8,8,16,[[957,1,1,8,9],[959,1,1,9,10],[960,3,3,10,13],[962,1,1,13,14],[966,2,2,14,16]]],[41,9,9,16,25,[[974,2,2,16,18],[977,1,1,18,19],[981,1,1,19,20],[990,2,2,20,22],[991,2,2,22,24],[996,1,1,24,25]]],[42,17,14,25,39,[[997,1,1,25,26],[998,1,1,26,27],[999,1,1,27,28],[1001,1,1,28,29],[1002,1,1,29,30],[1003,5,3,30,33],[1006,1,1,33,34],[1007,1,1,34,35],[1008,1,1,35,36],[1016,2,1,36,37],[1017,2,2,37,39]]],[43,19,19,39,58,[[1018,1,1,39,40],[1019,1,1,40,41],[1020,1,1,41,42],[1024,1,1,42,43],[1025,2,2,43,45],[1027,2,2,45,47],[1028,1,1,47,48],[1032,1,1,48,49],[1035,1,1,49,50],[1037,1,1,50,51],[1038,4,4,51,55],[1041,1,1,55,56],[1042,2,2,56,58]]],[44,1,1,58,59,[[1055,1,1,58,59]]],[45,1,1,59,60,[[1063,1,1,59,60]]],[47,2,2,60,62,[[1092,2,2,60,62]]],[48,3,3,62,65,[[1100,3,3,62,65]]],[65,13,12,65,77,[[1170,1,1,65,66],[1173,1,1,66,67],[1174,1,1,67,68],[1175,1,1,68,69],[1177,3,2,69,71],[1179,2,2,71,73],[1180,1,1,73,74],[1183,1,1,74,75],[1185,1,1,75,76],[1186,1,1,76,77]]]],[23208,23235,23546,23620,23662,23727,23809,23810,24225,24301,24330,24331,24355,24458,24620,24621,24977,25015,25126,25329,25698,25719,25735,25759,26029,26095,26108,26133,26211,26319,26336,26338,26342,26482,26578,26600,26884,26901,26909,26936,26983,26997,27139,27207,27215,27263,27268,27309,27444,27579,27637,27668,27676,27679,27695,27780,27797,27805,28194,28403,29082,29083,29280,29281,29282,30769,30812,30831,30842,30879,30884,30909,30919,30937,30983,31020,31047]]],["+",[4,3,[[42,4,3,0,3,[[1003,3,2,0,2],[1007,1,1,2,3]]]],[26336,26338,26578]]],["again",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27637]]],["arise",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26029]]],["arose",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30842]]],["ascend",[3,3,[[42,1,1,0,1,[[1016,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]],[65,1,1,2,3,[[1183,1,1,2,3]]]],[26884,28194,30983]]],["ascended",[4,4,[[42,1,1,0,1,[[1016,1,1,0,1]]],[43,2,2,1,3,[[1019,1,1,1,2],[1042,1,1,2,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]]],[26884,26983,27797,29281]]],["ascendeth",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30879]]],["ascending",[2,2,[[42,1,1,0,1,[[997,1,1,0,1]]],[65,1,1,1,2,[[1173,1,1,1,2]]]],[26095,30812]]],["came",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1038,1,1,1,2]]]],[27139,27695]]],["entered",[2,2,[[42,1,1,0,1,[[1017,1,1,0,1]]],[45,1,1,1,2,[[1063,1,1,1,2]]]],[26901,28403]]],["up",[59,58,[[39,8,8,0,8,[[931,1,1,0,1],[933,1,1,1,2],[941,1,1,2,3],[942,1,1,3,4],[943,1,1,4,5],[945,1,1,5,6],[948,2,2,6,8]]],[40,8,8,8,16,[[957,1,1,8,9],[959,1,1,9,10],[960,3,3,10,13],[962,1,1,13,14],[966,2,2,14,16]]],[41,7,7,16,23,[[974,2,2,16,18],[981,1,1,18,19],[990,2,2,19,21],[991,2,2,21,23]]],[42,9,9,23,32,[[998,1,1,23,24],[999,1,1,24,25],[1001,1,1,25,26],[1002,1,1,26,27],[1003,2,2,27,29],[1006,1,1,29,30],[1008,1,1,30,31],[1017,1,1,31,32]]],[43,14,14,32,46,[[1018,1,1,32,33],[1020,1,1,33,34],[1025,2,2,34,36],[1027,2,2,36,38],[1028,1,1,38,39],[1032,1,1,39,40],[1035,1,1,40,41],[1038,3,3,41,44],[1041,1,1,44,45],[1042,1,1,45,46]]],[47,2,2,46,48,[[1092,2,2,46,48]]],[48,2,2,48,50,[[1100,2,2,48,50]]],[65,9,8,50,58,[[1170,1,1,50,51],[1174,1,1,51,52],[1177,2,1,52,53],[1179,2,2,53,55],[1180,1,1,55,56],[1185,1,1,56,57],[1186,1,1,57,58]]]],[23208,23235,23546,23620,23662,23727,23809,23810,24225,24301,24330,24331,24355,24458,24620,24621,24977,25015,25329,25698,25719,25735,25759,26108,26133,26211,26319,26338,26342,26482,26600,26909,26936,26997,27207,27215,27263,27268,27309,27444,27579,27668,27676,27679,27780,27805,29082,29083,29280,29282,30769,30831,30884,30909,30919,30937,31020,31047]]],["went",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25126]]]]},{"k":"G306","v":[["deferred",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27791]]]]},{"k":"G307","v":[["drew",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23587]]]]},{"k":"G308","v":[["*",[26,24,[[39,3,3,0,3,[[939,1,1,0,1],[942,1,1,1,2],[948,1,1,2,3]]],[40,7,7,3,10,[[962,1,1,3,4],[963,1,1,4,5],[964,2,2,5,7],[966,2,2,7,9],[972,1,1,9,10]]],[41,7,7,10,17,[[979,1,1,10,11],[981,1,1,11,12],[990,3,3,12,15],[991,1,1,15,16],[993,1,1,16,17]]],[42,4,3,17,20,[[1005,4,3,17,20]]],[43,5,4,20,24,[[1026,3,3,20,23],[1039,2,1,23,24]]]],[23464,23616,23826,24448,24497,24524,24525,24639,24640,24877,25217,25317,25729,25730,25731,25736,25827,26451,26455,26458,27228,27233,27234,27717]]],["+",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26455]]],["looked",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24877]]],["see",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25217]]],["sight",[14,13,[[39,2,2,0,2,[[939,1,1,0,1],[948,1,1,1,2]]],[40,2,2,2,4,[[966,2,2,2,4]]],[41,3,3,4,7,[[990,3,3,4,7]]],[42,3,2,7,9,[[1005,3,2,7,9]]],[43,4,4,9,13,[[1026,3,3,9,12],[1039,1,1,12,13]]]],[23464,23826,24639,24640,25729,25730,25731,26451,26458,27228,27233,27234,27717]]],["up",[9,9,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,4,4,1,5,[[962,1,1,1,2],[963,1,1,2,3],[964,2,2,3,5]]],[41,3,3,5,8,[[981,1,1,5,6],[991,1,1,6,7],[993,1,1,7,8]]],[43,1,1,8,9,[[1039,1,1,8,9]]]],[23616,24448,24497,24524,24525,25317,25736,25827,27717]]]]},{"k":"G309","v":[["sight",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25081]]]]},{"k":"G310","v":[["*",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]]],[24175,24834,25339]]],["aloud",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24834]]],["cried",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24175]]],["out",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25339]]]]},{"k":"G311","v":[["delay",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27813]]]]},{"k":"G312","v":[["*",[18,18,[[40,2,2,0,2,[[961,2,2,0,2]]],[42,6,6,2,8,[[1000,1,1,2,3],[1001,1,1,3,4],[1012,4,4,4,8]]],[43,6,6,8,14,[[1031,1,1,8,9],[1032,1,1,9,10],[1033,1,1,10,11],[1036,1,1,11,12],[1037,2,2,12,14]]],[44,1,1,14,15,[[1060,1,1,14,15]]],[46,1,1,15,16,[[1084,1,1,15,16]]],[59,1,1,16,17,[[1151,1,1,16,17]]],[61,1,1,17,18,[[1159,1,1,17,18]]]],[24378,24383,26181,26225,26739,26740,26741,26751,27441,27446,27521,27603,27646,27653,28324,28923,30386,30545]]],["declare",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[61,1,1,1,2,[[1159,1,1,1,2]]]],[27653,30545]]],["declared",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27446]]],["rehearsed",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27441]]],["reported",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30386]]],["shew",[4,4,[[42,4,4,0,4,[[1012,4,4,0,4]]]],[26739,26740,26741,26751]]],["shewed",[2,2,[[43,2,2,0,2,[[1036,1,1,0,1],[1037,1,1,1,2]]]],[27603,27646]]],["spoken",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28324]]],["tell",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]]],[24383,26181]]],["told",[4,4,[[40,1,1,0,1,[[961,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[43,1,1,2,3,[[1033,1,1,2,3]]],[46,1,1,3,4,[[1084,1,1,3,4]]]],[24378,26225,27521,28923]]]]},{"k":"G313","v":[["*",[2,2,[[59,2,2,0,2,[[1151,2,2,0,2]]]],[30377,30397]]],["+",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30377]]],["again",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30397]]]]},{"k":"G314","v":[["*",[33,30,[[39,7,7,0,7,[[940,2,2,0,2],[947,1,1,2,3],[949,2,2,3,5],[950,1,1,5,6],[952,1,1,6,7]]],[40,4,4,7,11,[[958,1,1,7,8],[968,2,2,8,10],[969,1,1,10,11]]],[41,3,3,11,14,[[976,1,1,11,12],[978,1,1,12,13],[982,1,1,13,14]]],[42,1,1,14,15,[[1015,1,1,14,15]]],[43,8,7,15,22,[[1025,4,3,15,18],[1030,1,1,18,19],[1032,2,2,19,21],[1040,1,1,21,22]]],[46,3,3,22,25,[[1078,1,1,22,23],[1080,2,2,23,25]]],[48,1,1,25,26,[[1099,1,1,25,26]]],[50,3,1,26,27,[[1110,3,1,26,27]]],[51,1,1,27,28,[[1115,1,1,27,28]]],[65,2,2,28,30,[[1167,1,1,28,29],[1171,1,1,29,30]]]],[23492,23494,23766,23842,23868,23903,23972,24285,24683,24699,24731,25079,25149,25389,26845,27204,27206,27208,27389,27463,27473,27768,28813,28843,28856,29255,29558,29648,30700,30783]]],["+",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25149]]],["read",[27,25,[[39,6,6,0,6,[[940,2,2,0,2],[947,1,1,2,3],[949,2,2,3,5],[950,1,1,5,6]]],[40,3,3,6,9,[[958,1,1,6,7],[968,2,2,7,9]]],[41,1,1,9,10,[[976,1,1,9,10]]],[42,1,1,10,11,[[1015,1,1,10,11]]],[43,7,7,11,18,[[1025,3,3,11,14],[1030,1,1,14,15],[1032,2,2,15,17],[1040,1,1,17,18]]],[46,3,3,18,21,[[1078,1,1,18,19],[1080,2,2,19,21]]],[48,1,1,21,22,[[1099,1,1,21,22]]],[50,3,1,22,23,[[1110,3,1,22,23]]],[51,1,1,23,24,[[1115,1,1,23,24]]],[65,1,1,24,25,[[1171,1,1,24,25]]]],[23492,23494,23766,23842,23868,23903,24285,24683,24699,25079,26845,27204,27206,27208,27389,27463,27473,27768,28813,28843,28856,29255,29558,29648,30783]]],["readest",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]]],[25389,27206]]],["readeth",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[65,1,1,2,3,[[1167,1,1,2,3]]]],[23972,24731,30700]]]]},{"k":"G315","v":[["*",[9,9,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,1,1,2,3,[[986,1,1,2,3]]],[43,2,2,3,5,[[1043,1,1,3,4],[1045,1,1,4,5]]],[46,1,1,5,6,[[1089,1,1,5,6]]],[47,3,3,6,9,[[1092,2,2,6,8],[1096,1,1,8,9]]]],[23619,24452,25576,27834,27918,29033,29084,29095,29200]]],["compel",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25576]]],["compelled",[3,3,[[43,1,1,0,1,[[1043,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]]],[27834,29033,29084]]],["compellest",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29095]]],["constrain",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29200]]],["constrained",[3,3,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]]],[23619,24452,27918]]]]},{"k":"G316","v":[["*",[8,8,[[43,2,2,0,2,[[1027,1,1,0,1],[1030,1,1,1,2]]],[45,1,1,2,3,[[1073,1,1,2,3]]],[46,1,1,3,4,[[1086,1,1,3,4]]],[49,2,2,4,6,[[1103,1,1,4,5],[1104,1,1,5,6]]],[55,1,1,6,7,[[1131,1,1,6,7]]],[57,1,1,7,8,[[1140,1,1,7,8]]]],[27283,27408,28656,28961,29385,29416,29937,30095]]],["near",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27283]]],["necessary",[5,5,[[43,1,1,0,1,[[1030,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]],[46,1,1,2,3,[[1086,1,1,2,3]]],[49,1,1,3,4,[[1104,1,1,3,4]]],[55,1,1,4,5,[[1131,1,1,4,5]]]],[27408,28656,28961,29416,29937]]],["necessity",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30095]]],["needful",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29385]]]]},{"k":"G317","v":[["constraint",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30467]]]]},{"k":"G318","v":[["*",[18,18,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,3,3,1,4,[[986,1,1,1,2],[993,1,1,2,3],[995,1,1,3,4]]],[44,1,1,4,5,[[1058,1,1,4,5]]],[45,3,3,5,8,[[1068,2,2,5,7],[1070,1,1,7,8]]],[46,3,3,8,11,[[1083,1,1,8,9],[1086,1,1,9,10],[1089,1,1,10,11]]],[51,1,1,11,12,[[1113,1,1,11,12]]],[56,1,1,12,13,[[1132,1,1,12,13]]],[57,4,4,13,17,[[1139,2,2,13,15],[1141,2,2,15,17]]],[64,1,1,17,18,[[1166,1,1,17,18]]]],[23734,25571,25849,25952,28271,28513,28524,28556,28902,28963,29032,29597,29952,30076,30091,30121,30128,30675]]],["+",[3,3,[[39,1,1,0,1,[[946,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[23734,30091,30675]]],["distress",[3,3,[[41,1,1,0,1,[[993,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]],[51,1,1,2,3,[[1113,1,1,2,3]]]],[25849,28513,29597]]],["necessary",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30128]]],["necessities",[2,2,[[46,2,2,0,2,[[1083,1,1,0,1],[1089,1,1,1,2]]]],[28902,29032]]],["necessity",[7,7,[[41,1,1,0,1,[[995,1,1,0,1]]],[45,2,2,1,3,[[1068,1,1,1,2],[1070,1,1,2,3]]],[46,1,1,3,4,[[1086,1,1,3,4]]],[56,1,1,4,5,[[1132,1,1,4,5]]],[57,2,2,5,7,[[1139,1,1,5,6],[1141,1,1,6,7]]]],[25952,28524,28556,28963,29952,30076,30121]]],["needs",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]]],[25571,28271]]]]},{"k":"G319","v":[["known",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27129]]]]},{"k":"G320","v":[["reading",[3,3,[[43,1,1,0,1,[[1030,1,1,0,1]]],[46,1,1,1,2,[[1080,1,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]]],[27377,28855,29760]]]]},{"k":"G321","v":[["*",[24,24,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,4,4,1,5,[[974,1,1,1,2],[976,1,1,2,3],[980,1,1,3,4],[994,1,1,4,5]]],[43,17,17,5,22,[[1024,1,1,5,6],[1026,1,1,6,7],[1029,1,1,7,8],[1030,1,1,8,9],[1033,2,2,9,11],[1035,1,1,11,12],[1037,2,2,12,14],[1038,2,2,14,16],[1044,4,4,16,20],[1045,2,2,20,22]]],[44,1,1,22,23,[[1055,1,1,22,23]]],[57,1,1,23,24,[[1145,1,1,23,24]]]],[23210,24995,25068,25267,25930,27157,27255,27341,27375,27494,27517,27578,27629,27639,27665,27666,27857,27859,27867,27876,27909,27910,28195,30261]]],["+",[4,4,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,2,2,1,3,[[1029,1,1,1,2],[1044,1,1,2,3]]],[44,1,1,3,4,[[1055,1,1,3,4]]]],[25068,27341,27859,28195]]],["again",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30261]]],["brought",[3,3,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,2,2,1,3,[[1026,1,1,1,2],[1033,1,1,2,3]]]],[24995,27255,27517]]],["depart",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27867]]],["departed",[2,2,[[43,2,2,0,2,[[1045,2,2,0,2]]]],[27909,27910]]],["forth",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[25267,27666]]],["launched",[2,2,[[43,2,2,0,2,[[1038,1,1,0,1],[1044,1,1,1,2]]]],[27665,27857]]],["led",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25930]]],["loosed",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1044,1,1,1,2]]]],[27375,27876]]],["loosing",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27494]]],["offered",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27157]]],["sail",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27629]]],["sailed",[2,2,[[43,2,2,0,2,[[1035,1,1,0,1],[1037,1,1,1,2]]]],[27578,27639]]],["up",[1,1,[[39,1,1,0,1,[[932,1,1,0,1]]]],[23210]]]]},{"k":"G322","v":[["*",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]]],[25364,26947]]],["appointed",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25364]]],["shew",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26947]]]]},{"k":"G323","v":[["shewing",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24973]]]]},{"k":"G324","v":[["received",[2,2,[[43,1,1,0,1,[[1045,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[27906,30189]]]]},{"k":"G325","v":[["delivered",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27767]]]]},{"k":"G326","v":[["*",[5,5,[[41,2,2,0,2,[[987,2,2,0,2]]],[44,2,2,2,4,[[1052,1,1,2,3],[1059,1,1,3,4]]],[65,1,1,4,5,[[1186,1,1,4,5]]]],[25612,25620,28100,28289,31043]]],["+",[1,1,[[65,1,1,0,1,[[1186,1,1,0,1]]]],[31043]]],["again",[2,2,[[41,2,2,0,2,[[987,2,2,0,2]]]],[25612,25620]]],["revived",[2,2,[[44,2,2,0,2,[[1052,1,1,0,1],[1059,1,1,1,2]]]],[28100,28289]]]]},{"k":"G327","v":[["*",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1028,1,1,1,2]]]],[25017,27332]]],["seek",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27332]]],["sought",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25017]]]]},{"k":"G328","v":[["up",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30387]]]]},{"k":"G329","v":[["up",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29815]]]]},{"k":"G330","v":[["again",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29452]]]]},{"k":"G331","v":[["*",[6,6,[[43,1,1,0,1,[[1040,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]],[45,2,2,2,4,[[1073,1,1,2,3],[1077,1,1,3,4]]],[47,2,2,4,6,[[1091,2,2,4,6]]]],[27748,28158,28637,28798,29065,29066]]],["+",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27748]]],["Anathema",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28798]]],["accursed",[4,4,[[44,1,1,0,1,[[1054,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]],[47,2,2,2,4,[[1091,2,2,2,4]]]],[28158,28637,29065,29066]]]]},{"k":"G332","v":[["*",[4,4,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,3,3,1,4,[[1040,3,3,1,4]]]],[24825,27746,27748,27755]]],["+",[3,3,[[43,3,3,0,3,[[1040,3,3,0,3]]]],[27746,27748,27755]]],["curse",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24825]]]]},{"k":"G333","v":[["*",[2,2,[[43,1,1,0,1,[[1034,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[27546,30248]]],["beheld",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27546]]],["considering",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30248]]]]},{"k":"G334","v":[["gifts",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25831]]]]},{"k":"G335","v":[["importunity",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25413]]]]},{"k":"G336","v":[["death",[2,2,[[43,2,2,0,2,[[1025,1,1,0,1],[1039,1,1,1,2]]]],[27177,27724]]]]},{"k":"G337","v":[["*",[23,22,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,2,2,1,3,[[994,1,1,1,2],[995,1,1,2,3]]],[43,19,18,3,21,[[1019,1,1,3,4],[1022,2,2,4,6],[1024,3,2,6,8],[1026,3,3,8,11],[1027,1,1,11,12],[1029,1,1,12,13],[1030,1,1,13,14],[1033,1,1,14,15],[1039,1,1,15,16],[1040,3,3,16,19],[1042,1,1,19,20],[1043,1,1,20,21]]],[57,1,1,21,22,[[1142,1,1,21,22]]]],[23185,25866,25967,26972,27092,27095,27137,27144,27239,27240,27245,27298,27339,27390,27510,27724,27749,27755,27761,27799,27833,30142]]],["+",[2,2,[[43,2,2,0,2,[[1024,2,2,0,2]]]],[27137,27144]]],["away",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30142]]],["death",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]]],[25967,27833]]],["kill",[6,6,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,5,5,1,6,[[1024,1,1,1,2],[1026,2,2,2,4],[1040,1,1,4,5],[1042,1,1,5,6]]]],[25866,27144,27239,27240,27749,27799]]],["killed",[4,4,[[43,4,4,0,4,[[1029,1,1,0,1],[1033,1,1,1,2],[1040,2,2,2,4]]]],[27339,27510,27755,27761]]],["slain",[3,3,[[43,3,3,0,3,[[1019,1,1,0,1],[1022,1,1,1,2],[1030,1,1,2,3]]]],[26972,27095,27390]]],["slay",[2,2,[[43,2,2,0,2,[[1022,1,1,0,1],[1026,1,1,1,2]]]],[27092,27245]]],["slew",[3,3,[[39,1,1,0,1,[[930,1,1,0,1]]],[43,2,2,1,3,[[1027,1,1,1,2],[1039,1,1,2,3]]]],[23185,27298,27724]]]]},{"k":"G338","v":[["*",[2,2,[[39,2,2,0,2,[[940,2,2,0,2]]]],[23494,23496]]],["blameless",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23494]]],["guiltless",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23496]]]]},{"k":"G339","v":[["up",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[25210,27256]]]]},{"k":"G340","v":[["renew",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30050]]]]},{"k":"G341","v":[["renewed",[2,2,[[46,1,1,0,1,[[1081,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[28875,29527]]]]},{"k":"G342","v":[["renewing",[2,2,[[44,1,1,0,1,[[1057,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[28247,29928]]]]},{"k":"G343","v":[["*",[2,2,[[46,2,2,0,2,[[1080,2,2,0,2]]]],[28855,28859]]],["+",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28855]]],["open",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28859]]]]},{"k":"G344","v":[["*",[4,4,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[43,1,1,2,3,[[1035,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[23181,25369,27578,30187]]],["+",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25369]]],["return",[2,2,[[39,1,1,0,1,[[930,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]]],[23181,27578]]],["returned",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30187]]]]},{"k":"G345","v":[["*",[14,13,[[39,5,5,0,5,[[937,1,1,0,1],[950,2,2,1,3],[954,2,2,3,5]]],[40,3,3,5,8,[[961,1,1,5,6],[970,1,1,6,7],[972,1,1,7,8]]],[41,3,2,8,10,[[979,1,1,8,9],[994,2,1,9,10]]],[42,3,3,10,13,[[1002,1,1,10,11],[1009,2,2,11,13]]]],[23389,23882,23883,24061,24074,24404,24772,24887,25232,25891,26268,26653,26658]]],["down",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]]],[24074,26268]]],["guests",[2,2,[[39,2,2,0,2,[[950,2,2,0,2]]]],[23882,23883]]],["leaning",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26653]]],["lying",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24404]]],["meat",[5,4,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[972,1,1,1,2]]],[41,3,2,2,4,[[979,1,1,2,3],[994,2,1,3,4]]]],[23389,24887,25232,25891]]],["sat",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24061,24772]]],["table",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26658]]]]},{"k":"G346","v":[["*",[2,2,[[44,1,1,0,1,[[1058,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]]],[28275,29216]]],["comprehended",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28275]]],["one",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29216]]]]},{"k":"G347","v":[["*",[8,8,[[39,2,2,0,2,[[936,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[41,5,5,3,8,[[974,1,1,3,4],[979,1,1,4,5],[981,1,1,5,6],[984,1,1,6,7],[985,1,1,7,8]]]],[23356,23616,24446,24980,25231,25316,25496,25547]]],["+",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24446]]],["down",[4,4,[[39,2,2,0,2,[[936,1,1,0,1],[942,1,1,1,2]]],[41,2,2,2,4,[[981,1,1,2,3],[985,1,1,3,4]]]],[23356,23616,25316,25547]]],["laid",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24980]]],["meat",[2,2,[[41,2,2,0,2,[[979,1,1,0,1],[984,1,1,1,2]]]],[25231,25496]]]]},{"k":"G348","v":[["hinder",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29169]]]]},{"k":"G349","v":[["out",[5,5,[[40,2,2,0,2,[[957,1,1,0,1],[962,1,1,1,2]]],[41,3,3,2,5,[[976,1,1,2,3],[980,1,1,3,4],[995,1,1,4,5]]]],[24238,24456,25096,25273,25953]]]]},{"k":"G350","v":[["*",[16,14,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,5,5,1,6,[[1021,1,1,1,2],[1029,1,1,2,3],[1034,1,1,3,4],[1041,1,1,4,5],[1045,1,1,5,6]]],[45,10,8,6,14,[[1063,3,2,6,8],[1065,3,2,8,10],[1070,1,1,10,11],[1071,2,2,11,13],[1075,1,1,13,14]]]],[25949,27031,27356,27534,27777,27917,28408,28409,28436,28437,28543,28592,28594,28702]]],["+",[2,2,[[45,2,2,0,2,[[1071,2,2,0,2]]]],[28592,28594]]],["discerned",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28408]]],["examine",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28543]]],["examined",[4,4,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,3,3,1,4,[[1021,1,1,1,2],[1029,1,1,2,3],[1045,1,1,3,4]]]],[25949,27031,27356,27917]]],["examining",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27777]]],["judge",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28436]]],["judged",[3,3,[[45,3,3,0,3,[[1063,1,1,0,1],[1065,1,1,1,2],[1075,1,1,2,3]]]],[28409,28436,28702]]],["judgeth",[2,2,[[45,2,2,0,2,[[1063,1,1,0,1],[1065,1,1,1,2]]]],[28409,28437]]],["searched",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27534]]]]},{"k":"G351","v":[["examination",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27822]]]]},{"k":"G352","v":[["up",[4,4,[[41,2,2,0,2,[[985,1,1,0,1],[993,1,1,1,2]]],[42,2,2,2,4,[[1004,2,2,2,4]]]],[25529,25854,26388,26391]]]]},{"k":"G353","v":[["*",[13,13,[[40,1,1,0,1,[[972,1,1,0,1]]],[43,8,8,1,9,[[1018,3,3,1,4],[1024,1,1,4,5],[1027,1,1,5,6],[1037,2,2,6,8],[1040,1,1,8,9]]],[48,2,2,9,11,[[1102,2,2,9,11]]],[53,1,1,11,12,[[1121,1,1,11,12]]],[54,1,1,12,13,[[1128,1,1,12,13]]]],[24892,26925,26934,26945,27159,27275,27639,27640,27765,29350,29353,29747,29881]]],["+",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27640]]],["Take",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29881]]],["in",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27639]]],["taking",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29353]]],["took",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27765]]],["unto",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29350]]],["up",[7,7,[[40,1,1,0,1,[[972,1,1,0,1]]],[43,5,5,1,6,[[1018,3,3,1,4],[1024,1,1,4,5],[1027,1,1,5,6]]],[53,1,1,6,7,[[1121,1,1,6,7]]]],[24892,26925,26934,26945,27159,27275,29747]]]]},{"k":"G354","v":[["up",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25352]]]]},{"k":"G355","v":[["*",[3,3,[[41,1,1,0,1,[[981,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]]],[25355,29177,29669]]],["consume",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]]],[25355,29669]]],["consumed",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29177]]]]},{"k":"G356","v":[["proportion",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28251]]]]},{"k":"G357","v":[["consider",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30215]]]]},{"k":"G358","v":[["+",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24588]]]]},{"k":"G359","v":[["departure",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29876]]]]},{"k":"G360","v":[["*",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[25495,29384]]],["depart",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29384]]],["return",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25495]]]]},{"k":"G361","v":[["sin",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26388]]]]},{"k":"G362","v":[["for",[1,1,[[51,1,1,0,1,[[1111,1,1,0,1]]]],[29570]]]]},{"k":"G363","v":[["*",[6,6,[[40,2,2,0,2,[[967,1,1,0,1],[970,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[46,1,1,3,4,[[1084,1,1,3,4]]],[54,1,1,4,5,[[1125,1,1,4,5]]],[57,1,1,5,6,[[1142,1,1,5,6]]]],[24661,24826,28450,28931,29815,30165]]],["+",[2,2,[[45,1,1,0,1,[[1065,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]]],[28450,29815]]],["mind",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24826]]],["remembereth",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28931]]],["remembrance",[2,2,[[40,1,1,0,1,[[967,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[24661,30165]]]]},{"k":"G364","v":[["*",[4,4,[[41,1,1,0,1,[[994,1,1,0,1]]],[45,2,2,1,3,[[1072,2,2,1,3]]],[57,1,1,3,4,[[1142,1,1,3,4]]]],[25883,28624,28625,30136]]],["again",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30136]]],["remembrance",[3,3,[[41,1,1,0,1,[[994,1,1,0,1]]],[45,2,2,1,3,[[1072,2,2,1,3]]]],[25883,28624,28625]]]]},{"k":"G365","v":[["renewed",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29295]]]]},{"k":"G366","v":[["themselves",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29853]]]]},{"k":"G367","v":[["Ananias",[11,10,[[43,11,10,0,10,[[1022,3,3,0,3],[1026,5,4,3,7],[1039,1,1,7,8],[1040,1,1,8,9],[1041,1,1,9,10]]]],[27060,27062,27064,27226,27228,27229,27233,27716,27736,27770]]]]},{"k":"G368","v":[["+",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27621]]]]},{"k":"G369","v":[["gainsaying",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27288]]]]},{"k":"G370","v":[["unworthy",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28469]]]]},{"k":"G371","v":[["unworthily",[2,2,[[45,2,2,0,2,[[1072,2,2,0,2]]]],[28627,28629]]]]},{"k":"G372","v":[["*",[5,5,[[39,2,2,0,2,[[939,1,1,0,1],[940,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[65,2,2,3,5,[[1170,1,1,3,4],[1180,1,1,4,5]]]],[23488,23532,25429,30776,30937]]],["+",[1,1,[[65,1,1,0,1,[[1170,1,1,0,1]]]],[30776]]],["rest",[4,4,[[39,2,2,0,2,[[939,1,1,0,1],[940,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[65,1,1,3,4,[[1180,1,1,3,4]]]],[23488,23532,25429,30937]]]]},{"k":"G373","v":[["*",[12,12,[[39,2,2,0,2,[[939,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[962,1,1,2,3],[970,1,1,3,4]]],[41,1,1,4,5,[[984,1,1,4,5]]],[45,1,1,5,6,[[1077,1,1,5,6]]],[46,1,1,6,7,[[1084,1,1,6,7]]],[56,2,2,7,9,[[1132,2,2,7,9]]],[59,1,1,9,10,[[1154,1,1,9,10]]],[65,2,2,10,12,[[1172,1,1,10,11],[1180,1,1,11,12]]]],[23487,24099,24438,24795,25478,28794,28929,29945,29958,30460,30804,30939]]],["+",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23487]]],["ease",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25478]]],["refresh",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29958]]],["refreshed",[3,3,[[45,1,1,0,1,[[1077,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]]],[28794,28929,29945]]],["rest",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[970,1,1,2,3]]],[65,2,2,3,5,[[1172,1,1,3,4],[1180,1,1,4,5]]]],[24099,24438,24795,30804,30939]]],["resteth",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30460]]]]},{"k":"G374","v":[["persuadeth",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27570]]]]},{"k":"G375","v":[["*",[4,4,[[41,3,3,0,3,[[995,3,3,0,3]]],[56,1,1,3,4,[[1132,1,1,3,4]]]],[25942,25946,25950,29950]]],["+",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25946]]],["again",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29950]]],["sent",[2,2,[[41,2,2,0,2,[[995,2,2,0,2]]]],[25942,25950]]]]},{"k":"G376","v":[["maimed",[2,2,[[41,2,2,0,2,[[986,2,2,0,2]]]],[25566,25574]]]]},{"k":"G377","v":[["*",[11,10,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[964,1,1,2,3]]],[41,4,4,3,7,[[983,1,1,3,4],[986,1,1,4,5],[989,1,1,5,6],[994,1,1,6,7]]],[42,4,3,7,10,[[1002,2,1,7,8],[1009,1,1,8,9],[1017,1,1,9,10]]]],[23668,24447,24506,25442,25563,25658,25878,26267,26642,26918]]],["down",[8,7,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[964,1,1,2,3]]],[41,2,2,3,5,[[986,1,1,3,4],[994,1,1,4,5]]],[42,3,2,5,7,[[1002,2,1,5,6],[1009,1,1,6,7]]]],[23668,24447,24506,25563,25878,26267,26642]]],["leaned",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26918]]],["meat",[2,2,[[41,2,2,0,2,[[983,1,1,0,1],[989,1,1,1,2]]]],[25442,25658]]]]},{"k":"G378","v":[["*",[6,6,[[39,1,1,0,1,[[941,1,1,0,1]]],[45,2,2,1,3,[[1075,1,1,1,2],[1077,1,1,2,3]]],[47,1,1,3,4,[[1096,1,1,3,4]]],[49,1,1,4,5,[[1104,1,1,4,5]]],[51,1,1,5,6,[[1112,1,1,5,6]]]],[23553,28694,28793,29190,29421,29586]]],["fulfil",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29190]]],["fulfilled",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23553]]],["occupieth",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28694]]],["supplied",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28793]]],["supply",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29421]]],["up",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29586]]]]},{"k":"G379","v":[["*",[2,2,[[44,2,2,0,2,[[1046,1,1,0,1],[1047,1,1,1,2]]]],[27950,27963]]],["excuse",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27950]]],["inexcusable",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27963]]]]},{"k":"G380","v":[["opened",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25080]]]]},{"k":"G381","v":[["*",[3,3,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]],[58,1,1,2,3,[[1148,1,1,2,3]]]],[25508,27901,30324]]],["kindled",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]]],[25508,27901]]],["kindleth",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30324]]]]},{"k":"G382","v":[["innumerable",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30184]]]]},{"k":"G383","v":[["*",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24837,25940]]],["moved",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24837]]],["up",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25940]]]]},{"k":"G384","v":[["subverting",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27466]]]]},{"k":"G385","v":[["*",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[43,1,1,1,2,[[1028,1,1,1,2]]]],[25558,27317]]],["+",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25558]]],["up",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27317]]]]},{"k":"G386","v":[["*",[42,40,[[39,4,4,0,4,[[950,4,4,0,4]]],[40,2,2,4,6,[[968,2,2,4,6]]],[41,6,6,6,12,[[974,1,1,6,7],[986,1,1,7,8],[992,4,4,8,12]]],[42,4,3,12,15,[[1001,2,1,12,13],[1007,2,2,13,15]]],[43,11,11,15,26,[[1018,1,1,15,16],[1019,1,1,16,17],[1021,2,2,17,19],[1034,2,2,19,21],[1040,2,2,21,23],[1041,2,2,23,25],[1043,1,1,25,26]]],[44,2,2,26,28,[[1046,1,1,26,27],[1051,1,1,27,28]]],[45,4,4,28,32,[[1076,4,4,28,32]]],[49,1,1,32,33,[[1105,1,1,32,33]]],[54,1,1,33,34,[[1126,1,1,33,34]]],[57,3,2,34,36,[[1138,1,1,34,35],[1143,2,1,35,36]]],[59,2,2,36,38,[[1151,1,1,36,37],[1153,1,1,37,38]]],[65,2,2,38,40,[[1186,2,2,38,40]]]],[23895,23900,23902,23903,24691,24696,25007,25567,25806,25812,25814,25815,26239,26547,26548,26945,26980,27024,27055,27541,27555,27740,27742,27784,27790,27846,27934,28073,28730,28731,28739,28760,29431,29845,30046,30207,30377,30445,31043,31044]]],["+",[2,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[27846,30207]]],["again",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25007]]],["resurrection",[39,38,[[39,4,4,0,4,[[950,4,4,0,4]]],[40,2,2,4,6,[[968,2,2,4,6]]],[41,5,5,6,11,[[986,1,1,6,7],[992,4,4,7,11]]],[42,4,3,11,14,[[1001,2,1,11,12],[1007,2,2,12,14]]],[43,10,10,14,24,[[1018,1,1,14,15],[1019,1,1,15,16],[1021,2,2,16,18],[1034,2,2,18,20],[1040,2,2,20,22],[1041,2,2,22,24]]],[44,2,2,24,26,[[1046,1,1,24,25],[1051,1,1,25,26]]],[45,4,4,26,30,[[1076,4,4,26,30]]],[49,1,1,30,31,[[1105,1,1,30,31]]],[54,1,1,31,32,[[1126,1,1,31,32]]],[57,2,2,32,34,[[1138,1,1,32,33],[1143,1,1,33,34]]],[59,2,2,34,36,[[1151,1,1,34,35],[1153,1,1,35,36]]],[65,2,2,36,38,[[1186,2,2,36,38]]]],[23895,23900,23902,23903,24691,24696,25567,25806,25812,25814,25815,26239,26547,26548,26945,26980,27024,27055,27541,27555,27740,27742,27784,27790,27934,28073,28730,28731,28739,28760,29431,29845,30046,30207,30377,30445,31043,31044]]]]},{"k":"G387","v":[["*",[3,3,[[43,2,2,0,2,[[1034,1,1,0,1],[1038,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]]],[27529,27702,29174]]],["+",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27529]]],["trouble",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29174]]],["uproar",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27702]]]]},{"k":"G388","v":[["+",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30050]]]]},{"k":"G389","v":[["deeply",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24512]]]]},{"k":"G390","v":[["*",[11,11,[[39,1,1,0,1,[[945,1,1,0,1]]],[42,1,1,1,2,[[998,1,1,1,2]]],[43,2,2,2,4,[[1022,1,1,2,3],[1032,1,1,3,4]]],[46,1,1,4,5,[[1078,1,1,4,5]]],[48,1,1,5,6,[[1098,1,1,5,6]]],[53,1,1,6,7,[[1121,1,1,6,7]]],[57,2,2,7,9,[[1142,1,1,7,8],[1145,1,1,8,9]]],[59,1,1,9,10,[[1151,1,1,9,10]]],[60,1,1,10,11,[[1157,1,1,10,11]]]],[23722,26110,27081,27458,28812,29232,29746,30166,30259,30391,30518]]],["+",[2,2,[[57,2,2,0,2,[[1142,1,1,0,1],[1145,1,1,1,2]]]],[30166,30259]]],["abode",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23722]]],["conversation",[2,2,[[46,1,1,0,1,[[1078,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]]],[28812,29232]]],["live",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30518]]],["overthrew",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26110]]],["pass",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30391]]],["return",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27458]]],["returned",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27081]]],["thyself",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29746]]]]},{"k":"G391","v":[["*",[13,13,[[47,1,1,0,1,[[1091,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]],[58,1,1,4,5,[[1148,1,1,4,5]]],[59,6,6,5,11,[[1151,2,2,5,7],[1152,1,1,7,8],[1153,3,3,8,11]]],[60,2,2,11,13,[[1157,1,1,11,12],[1158,1,1,12,13]]]],[29070,29294,29759,30248,30332,30389,30392,30411,30425,30426,30440,30507,30533]]],["+",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30507]]],["conversation",[12,12,[[47,1,1,0,1,[[1091,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]],[58,1,1,4,5,[[1148,1,1,4,5]]],[59,6,6,5,11,[[1151,2,2,5,7],[1152,1,1,7,8],[1153,3,3,8,11]]],[60,1,1,11,12,[[1158,1,1,11,12]]]],[29070,29294,29759,30248,30332,30389,30392,30411,30425,30426,30440,30533]]]]},{"k":"G392","v":[["order",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24894]]]]},{"k":"G393","v":[["*",[9,9,[[39,3,3,0,3,[[932,1,1,0,1],[933,1,1,1,2],[941,1,1,2,3]]],[40,2,2,3,5,[[960,1,1,3,4],[972,1,1,4,5]]],[41,1,1,5,6,[[984,1,1,5,6]]],[57,1,1,6,7,[[1139,1,1,6,7]]],[58,1,1,7,8,[[1146,1,1,7,8]]],[60,1,1,8,9,[[1156,1,1,8,9]]]],[23225,23279,23545,24329,24875,25513,30078,30277,30498]]],["arise",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30498]]],["rise",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23279,25513]]],["risen",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30277]]],["rising",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24875]]],["sprang",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30078]]],["up",[3,3,[[39,2,2,0,2,[[932,1,1,0,1],[941,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]]],[23225,23545,24329]]]]},{"k":"G394","v":[["*",[2,2,[[43,1,1,0,1,[[1042,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]]],[27810,29083]]],["communicated",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29083]]],["declared",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27810]]]]},{"k":"G395","v":[["*",[10,10,[[39,5,5,0,5,[[930,3,3,0,3],[936,1,1,3,4],[952,1,1,4,5]]],[41,2,2,5,7,[[973,1,1,5,6],[985,1,1,6,7]]],[65,3,3,7,10,[[1173,1,1,7,8],[1182,1,1,8,9],[1187,1,1,9,10]]]],[23170,23171,23178,23356,23984,24971,25547,30812,30966,31066]]],["+",[2,2,[[65,2,2,0,2,[[1173,1,1,0,1],[1182,1,1,1,2]]]],[30812,30966]]],["dayspring",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24971]]],["east",[7,7,[[39,5,5,0,5,[[930,3,3,0,3],[936,1,1,3,4],[952,1,1,4,5]]],[41,1,1,5,6,[[985,1,1,5,6]]],[65,1,1,6,7,[[1187,1,1,6,7]]]],[23170,23171,23178,23356,23984,25547,31066]]]]},{"k":"G396","v":[["*",[2,2,[[54,1,1,0,1,[[1126,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[29845,29903]]],["overthrow",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29845]]],["subvert",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29903]]]]},{"k":"G397","v":[["*",[3,3,[[43,3,3,0,3,[[1024,2,2,0,2],[1039,1,1,2,3]]]],[27136,27137,27707]]],["nourished",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27137]]],["up",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1039,1,1,1,2]]]],[27136,27707]]]]},{"k":"G398","v":[["*",[2,2,[[41,1,1,0,1,[[991,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[25742,27667]]],["appear",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25742]]],["discovered",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27667]]]]},{"k":"G399","v":[["*",[10,9,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,1,1,2,3,[[996,1,1,2,3]]],[57,4,3,3,6,[[1139,2,1,3,4],[1141,1,1,4,5],[1145,1,1,5,6]]],[58,1,1,6,7,[[1147,1,1,6,7]]],[59,2,2,7,9,[[1152,2,2,7,9]]]],[23701,24540,26042,30091,30133,30256,30314,30404,30423]]],["+",[2,2,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]]],[23701,24540]]],["bare",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30423]]],["bear",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30133]]],["offer",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30256]]],["offered",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30314]]],["up",[4,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[57,2,1,1,2,[[1139,2,1,1,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]]],[26042,30091,30404]]]]},{"k":"G400","v":[["out",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24935]]]]},{"k":"G401","v":[["excess",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30450]]]]},{"k":"G402","v":[["*",[14,14,[[39,10,10,0,10,[[930,4,4,0,4],[932,1,1,4,5],[937,1,1,5,6],[940,1,1,6,7],[942,1,1,7,8],[943,1,1,8,9],[955,1,1,9,10]]],[40,1,1,10,11,[[959,1,1,10,11]]],[42,1,1,11,12,[[1002,1,1,11,12]]],[43,2,2,12,14,[[1040,1,1,12,13],[1043,1,1,13,14]]]],[23181,23182,23183,23191,23221,23403,23504,23610,23654,24134,24295,26272,27753,27854]]],["aside",[3,3,[[39,1,1,0,1,[[930,1,1,0,1]]],[43,2,2,1,3,[[1040,1,1,1,2],[1043,1,1,2,3]]]],[23191,27753,27854]]],["departed",[8,8,[[39,7,7,0,7,[[930,3,3,0,3],[932,1,1,3,4],[942,1,1,4,5],[943,1,1,5,6],[955,1,1,6,7]]],[42,1,1,7,8,[[1002,1,1,7,8]]]],[23181,23182,23183,23221,23610,23654,24134,26272]]],["place",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23403]]],["withdrew",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]]],[23504,24295]]]]},{"k":"G403","v":[["refreshing",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27015]]]]},{"k":"G404","v":[["refreshed",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29825]]]]},{"k":"G405","v":[["menstealers",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29706]]]]},{"k":"G406","v":[["Andrew",[13,12,[[39,2,2,0,2,[[932,1,1,0,1],[938,1,1,1,2]]],[40,4,4,2,6,[[957,2,2,2,4],[959,1,1,4,5],[969,1,1,5,6]]],[41,1,1,6,7,[[978,1,1,6,7]]],[42,5,4,7,11,[[997,2,2,7,9],[1002,1,1,9,10],[1008,2,1,10,11]]],[43,1,1,11,12,[[1018,1,1,11,12]]]],[23227,23419,24231,24244,24306,24720,25160,26084,26088,26265,26602,26936]]]]},{"k":"G407","v":[["men",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28789]]]]},{"k":"G408","v":[["Andronicus",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28343]]]]},{"k":"G409","v":[["manslayers",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29705]]]]},{"k":"G410","v":[["*",[5,5,[[45,1,1,0,1,[[1062,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]],[53,1,1,2,3,[[1121,1,1,2,3]]],[55,2,2,3,5,[[1129,2,2,3,5]]]],[28371,29487,29741,29898,29899]]],["blameless",[4,4,[[45,1,1,0,1,[[1062,1,1,0,1]]],[53,1,1,1,2,[[1121,1,1,1,2]]],[55,2,2,2,4,[[1129,2,2,2,4]]]],[28371,29741,29898,29899]]],["unreproveable",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29487]]]]},{"k":"G411","v":[["unspeakable",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28971]]]]},{"k":"G412","v":[["unspeakable",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30382]]]]},{"k":"G413","v":[["not",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25492]]]]},{"k":"G414","v":[["tolerable",[6,6,[[39,3,3,0,3,[[938,1,1,0,1],[939,2,2,1,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[41,2,2,4,6,[[982,2,2,4,6]]]],[23432,23481,23483,24418,25375,25377]]]]},{"k":"G415","v":[["unmerciful",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27961]]]]},{"k":"G416","v":[["wind",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30272]]]]},{"k":"G417","v":[["*",[31,29,[[39,9,9,0,9,[[935,2,2,0,2],[936,2,2,2,4],[939,1,1,4,5],[942,3,3,5,8],[952,1,1,8,9]]],[40,7,6,9,15,[[960,4,3,9,12],[962,2,2,12,14],[969,1,1,14,15]]],[41,4,4,15,19,[[979,1,1,15,16],[980,3,3,16,19]]],[42,1,1,19,20,[[1002,1,1,19,20]]],[43,4,4,20,24,[[1044,4,4,20,24]]],[48,1,1,24,25,[[1100,1,1,24,25]]],[58,1,1,25,26,[[1148,1,1,25,26]]],[64,1,1,26,27,[[1166,1,1,26,27]]],[65,3,2,27,29,[[1172,1,1,27,28],[1173,2,1,28,29]]]],[23341,23343,23371,23372,23466,23621,23627,23629,23988,24360,24362,24364,24455,24458,24744,25219,25268,25269,25270,26275,27859,27862,27869,27870,29286,30323,30684,30806,30811]]],["wind",[20,19,[[39,4,4,0,4,[[939,1,1,0,1],[942,3,3,1,4]]],[40,6,5,4,9,[[960,4,3,4,7],[962,2,2,7,9]]],[41,3,3,9,12,[[979,1,1,9,10],[980,2,2,10,12]]],[42,1,1,12,13,[[1002,1,1,12,13]]],[43,3,3,13,16,[[1044,3,3,13,16]]],[48,1,1,16,17,[[1100,1,1,16,17]]],[65,2,2,17,19,[[1172,1,1,17,18],[1173,1,1,18,19]]]],[23466,23621,23627,23629,24360,24362,24364,24455,24458,25219,25268,25269,26275,27862,27869,27870,29286,30806,30811]]],["winds",[11,11,[[39,5,5,0,5,[[935,2,2,0,2],[936,2,2,2,4],[952,1,1,4,5]]],[40,1,1,5,6,[[969,1,1,5,6]]],[41,1,1,6,7,[[980,1,1,6,7]]],[43,1,1,7,8,[[1044,1,1,7,8]]],[58,1,1,8,9,[[1148,1,1,8,9]]],[64,1,1,9,10,[[1166,1,1,9,10]]],[65,1,1,10,11,[[1173,1,1,10,11]]]],[23341,23343,23371,23372,23988,24744,25270,27859,30323,30684,30811]]]]},{"k":"G418","v":[["impossible",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25652]]]]},{"k":"G419","v":[["unsearchable",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28242]]]]},{"k":"G420","v":[["patient",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29851]]]]},{"k":"G421","v":[["*",[2,2,[[44,1,1,0,1,[[1056,1,1,0,1]]],[48,1,1,1,2,[[1099,1,1,1,2]]]],[28242,29259]]],["out",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28242]]],["unsearchable",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29259]]]]},{"k":"G422","v":[["ashamed",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29842]]]]},{"k":"G423","v":[["*",[3,3,[[53,3,3,0,3,[[1121,1,1,0,1],[1123,1,1,1,2],[1124,1,1,2,3]]]],[29733,29770,29802]]],["blameless",[2,2,[[53,2,2,0,2,[[1121,1,1,0,1],[1123,1,1,1,2]]]],[29733,29770]]],["unrebukeable",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29802]]]]},{"k":"G424","v":[["up",[3,3,[[42,1,1,0,1,[[1002,1,1,0,1]]],[47,2,2,1,3,[[1091,2,2,1,3]]]],[26260,29074,29075]]]]},{"k":"G425","v":[["*",[5,5,[[43,1,1,0,1,[[1041,1,1,0,1]]],[46,3,3,1,4,[[1079,1,1,1,2],[1084,1,1,2,3],[1085,1,1,3,4]]],[52,1,1,4,5,[[1116,1,1,4,5]]]],[27792,28837,28921,28945,29656]]],["eased",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28945]]],["liberty",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27792]]],["rest",[3,3,[[46,2,2,0,2,[[1079,1,1,0,1],[1084,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]]],[28837,28921,29656]]]]},{"k":"G426","v":[["examined",[2,2,[[43,2,2,0,2,[[1039,2,2,0,2]]]],[27728,27733]]]]},{"k":"G427","v":[["without",[3,3,[[39,1,1,0,1,[[938,1,1,0,1]]],[59,2,2,1,3,[[1153,1,1,1,2],[1154,1,1,2,3]]]],[23446,30425,30455]]]]},{"k":"G428","v":[["commodious",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27867]]]]},{"k":"G429","v":[["*",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[24989,27668]]],["+",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24989]]],["finding",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27668]]]]},{"k":"G430","v":[["*",[15,14,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[43,1,1,3,4,[[1035,1,1,3,4]]],[45,1,1,4,5,[[1065,1,1,4,5]]],[46,5,4,5,9,[[1088,5,4,5,9]]],[48,1,1,9,10,[[1100,1,1,9,10]]],[50,1,1,10,11,[[1109,1,1,10,11]]],[52,1,1,11,12,[[1116,1,1,11,12]]],[54,1,1,12,13,[[1128,1,1,12,13]]],[57,1,1,13,14,[[1145,1,1,13,14]]]],[23717,24557,25342,27571,28445,28990,28993,29008,29009,29274,29530,29653,29873,30263]]],["+",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27571]]],["Forbearing",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29530]]],["endure",[2,2,[[52,1,1,0,1,[[1116,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]]],[29653,29873]]],["forbearing",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29274]]],["suffer",[7,7,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[45,1,1,3,4,[[1065,1,1,3,4]]],[46,2,2,4,6,[[1088,2,2,4,6]]],[57,1,1,6,7,[[1145,1,1,6,7]]]],[23717,24557,25342,28445,29008,29009,30263]]],["with",[3,2,[[46,3,2,0,2,[[1088,3,2,0,2]]]],[28990,28993]]]]},{"k":"G431","v":[["son",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29552]]]]},{"k":"G432","v":[["anise",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23941]]]]},{"k":"G433","v":[["*",[3,3,[[48,1,1,0,1,[[1101,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]]],[29308,29535,29946]]],["+",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29308]]],["convenient",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29946]]],["fit",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29535]]]]},{"k":"G434","v":[["fierce",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29856]]]]},{"k":"G435","v":[["*",[214,192,[[39,8,8,0,8,[[929,2,2,0,2],[935,2,2,2,4],[940,1,1,4,5],[942,2,2,5,7],[943,1,1,7,8]]],[40,4,4,8,12,[[962,2,2,8,10],[966,2,2,10,12]]],[41,25,24,12,36,[[973,2,2,12,14],[974,1,1,14,15],[977,3,3,15,18],[979,1,1,18,19],[980,3,3,19,22],[981,2,2,22,24],[983,2,2,24,26],[986,1,1,26,27],[988,1,1,27,28],[989,1,1,28,29],[991,2,2,29,31],[994,1,1,31,32],[995,2,1,32,33],[996,3,3,33,36]]],[42,8,6,36,42,[[997,2,2,36,38],[1000,5,3,38,41],[1002,1,1,41,42]]],[43,100,98,42,140,[[1018,4,4,42,46],[1019,6,5,46,51],[1020,3,3,51,54],[1021,1,1,54,55],[1022,7,7,55,62],[1023,3,3,62,65],[1024,2,2,65,67],[1025,5,5,67,72],[1026,5,5,72,77],[1027,8,8,77,85],[1028,6,6,85,91],[1030,7,7,91,98],[1031,2,2,98,100],[1032,5,4,100,104],[1033,1,1,104,105],[1034,5,5,105,110],[1035,1,1,110,111],[1036,4,4,111,115],[1037,1,1,115,116],[1038,5,5,116,121],[1039,4,4,121,125],[1040,5,5,125,130],[1041,1,1,130,131],[1042,5,5,131,136],[1044,3,3,136,139],[1045,1,1,139,140]]],[44,9,4,140,144,[[1049,1,1,140,141],[1052,7,2,141,143],[1056,1,1,143,144]]],[45,32,20,144,164,[[1068,16,10,144,154],[1072,14,8,154,162],[1074,1,1,162,163],[1075,1,1,163,164]]],[46,1,1,164,165,[[1088,1,1,164,165]]],[47,1,1,165,166,[[1094,1,1,165,166]]],[48,7,7,166,173,[[1100,1,1,166,167],[1101,6,6,167,173]]],[50,2,2,173,175,[[1109,2,2,173,175]]],[53,5,5,175,180,[[1120,2,2,175,177],[1121,2,2,177,179],[1123,1,1,179,180]]],[55,2,2,180,182,[[1129,1,1,180,181],[1130,1,1,181,182]]],[58,6,6,182,188,[[1146,4,4,182,186],[1147,1,1,186,187],[1148,1,1,187,188]]],[59,3,3,188,191,[[1153,3,3,188,191]]],[65,1,1,191,192,[[1187,1,1,191,192]]]],[23160,23163,23340,23342,23530,23618,23632,23671,24427,24451,24590,24600,24920,24927,25009,25115,25119,25125,25215,25272,25283,25286,25315,25339,25436,25437,25577,25638,25663,25733,25738,25927,25985,25995,25998,26010,26057,26074,26172,26173,26174,26267,26933,26934,26939,26944,26954,26963,26971,26978,26986,26998,27008,27010,27026,27060,27068,27069,27073,27084,27094,27095,27104,27106,27112,27118,27142,27178,27179,27185,27188,27203,27218,27223,27228,27229,27254,27260,27264,27276,27278,27280,27281,27287,27289,27310,27318,27319,27320,27327,27331,27369,27377,27378,27383,27384,27388,27400,27422,27429,27449,27455,27464,27467,27492,27528,27535,27545,27554,27557,27581,27592,27610,27620,27622,27656,27675,27687,27690,27692,27702,27705,27707,27708,27716,27735,27740,27755,27761,27764,27774,27801,27810,27813,27819,27820,27865,27876,27880,27916,28030,28093,28094,28213,28489,28490,28491,28497,28498,28500,28501,28503,28521,28526,28603,28604,28607,28608,28609,28611,28612,28614,28676,28713,28991,29158,29285,29326,29327,29328,29329,29332,29337,29535,29536,29724,29728,29733,29743,29772,29898,29913,30274,30278,30286,30289,30295,30321,30425,30429,30431,31055]]],["+",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26933]]],["Husbands",[2,2,[[48,1,1,0,1,[[1101,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29329,29536]]],["Men",[13,13,[[43,13,13,0,13,[[1018,1,1,0,1],[1019,2,2,1,3],[1024,1,1,3,4],[1030,2,2,4,6],[1032,2,2,6,8],[1038,1,1,8,9],[1039,1,1,9,10],[1040,2,2,10,12],[1045,1,1,12,13]]]],[26939,26978,26986,27118,27378,27388,27449,27455,27692,27705,27735,27740,27916]]],["Sirs",[5,5,[[43,5,5,0,5,[[1024,1,1,0,1],[1031,1,1,1,2],[1036,1,1,2,3],[1044,2,2,3,5]]]],[27142,27429,27610,27865,27876]]],["a",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1020,1,1,1,2]]]],[26010,27010]]],["fellows",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27528]]],["husband",[38,29,[[39,2,2,0,2,[[929,2,2,0,2]]],[40,1,1,2,3,[[966,1,1,2,3]]],[41,2,2,3,5,[[974,1,1,3,4],[988,1,1,4,5]]],[42,4,3,5,8,[[1000,4,3,5,8]]],[43,2,2,8,10,[[1022,2,2,8,10]]],[44,5,2,10,12,[[1052,5,2,10,12]]],[45,15,10,12,22,[[1068,15,10,12,22]]],[46,1,1,22,23,[[1088,1,1,22,23]]],[47,1,1,23,24,[[1094,1,1,23,24]]],[48,2,2,24,26,[[1101,2,2,24,26]]],[53,1,1,26,27,[[1121,1,1,26,27]]],[55,1,1,27,28,[[1129,1,1,27,28]]],[65,1,1,28,29,[[1187,1,1,28,29]]]],[23160,23163,24600,25009,25638,26172,26173,26174,27068,27069,28093,28094,28489,28490,28491,28497,28498,28500,28501,28503,28521,28526,28991,29158,29327,29337,29733,29898,31055]]],["husbands",[10,10,[[42,1,1,0,1,[[1000,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[48,2,2,2,4,[[1101,2,2,2,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]],[53,1,1,5,6,[[1121,1,1,5,6]]],[55,1,1,6,7,[[1130,1,1,6,7]]],[59,3,3,7,10,[[1153,3,3,7,10]]]],[26174,28713,29326,29328,29535,29743,29913,30425,30429,30431]]],["man",[75,67,[[39,2,2,0,2,[[935,2,2,0,2]]],[40,2,2,2,4,[[962,1,1,2,3],[966,1,1,3,4]]],[41,12,11,4,15,[[973,2,2,4,6],[977,2,2,6,8],[980,3,3,8,11],[981,1,1,11,12],[991,2,2,12,14],[995,2,1,14,15]]],[42,2,2,15,17,[[997,2,2,15,17]]],[43,29,29,17,46,[[1019,1,1,17,18],[1020,1,1,18,19],[1022,1,1,19,20],[1023,1,1,20,21],[1025,2,2,21,23],[1026,2,2,23,25],[1027,4,4,25,29],[1028,1,1,29,30],[1030,3,3,30,33],[1031,1,1,33,34],[1033,1,1,34,35],[1034,1,1,35,36],[1035,1,1,36,37],[1038,1,1,37,38],[1039,2,2,38,40],[1040,2,2,40,42],[1041,1,1,42,43],[1042,3,3,43,46]]],[44,3,2,46,48,[[1049,1,1,46,47],[1052,2,1,47,48]]],[45,16,10,48,58,[[1068,1,1,48,49],[1072,14,8,49,57],[1074,1,1,57,58]]],[48,1,1,58,59,[[1100,1,1,58,59]]],[53,2,2,59,61,[[1120,1,1,59,60],[1123,1,1,60,61]]],[58,6,6,61,67,[[1146,4,4,61,65],[1147,1,1,65,66],[1148,1,1,66,67]]]],[23340,23342,24427,24590,24920,24927,25115,25119,25272,25283,25286,25339,25733,25738,25985,26057,26074,26971,26998,27060,27106,27185,27203,27228,27229,27260,27281,27287,27289,27331,27369,27383,27384,27422,27492,27554,27581,27675,27707,27716,27761,27764,27774,27801,27810,27813,28030,28094,28503,28603,28604,28607,28608,28609,28611,28612,28614,28676,29285,29728,29772,30274,30278,30286,30289,30295,30321]]],["man's",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27319]]],["men",[65,64,[[39,4,4,0,4,[[940,1,1,0,1],[942,2,2,1,3],[943,1,1,3,4]]],[40,1,1,4,5,[[962,1,1,4,5]]],[41,10,10,5,15,[[977,1,1,5,6],[979,1,1,6,7],[981,1,1,7,8],[983,2,2,8,10],[986,1,1,10,11],[989,1,1,11,12],[994,1,1,12,13],[996,2,2,13,15]]],[42,1,1,15,16,[[1002,1,1,15,16]]],[43,46,45,16,61,[[1018,2,2,16,18],[1019,3,3,18,21],[1020,1,1,21,22],[1021,1,1,22,23],[1022,4,4,23,27],[1023,2,2,27,29],[1025,3,3,29,32],[1026,3,3,32,35],[1027,4,4,35,39],[1028,4,4,39,43],[1030,2,2,43,45],[1032,3,2,45,47],[1034,3,3,47,50],[1036,3,3,50,53],[1037,1,1,53,54],[1038,3,3,54,57],[1039,1,1,57,58],[1040,1,1,58,59],[1042,2,2,59,61]]],[44,1,1,61,62,[[1056,1,1,61,62]]],[48,1,1,62,63,[[1101,1,1,62,63]]],[53,1,1,63,64,[[1120,1,1,63,64]]]],[23530,23618,23632,23671,24451,25125,25215,25315,25436,25437,25577,25663,25927,25995,25998,26267,26934,26944,26954,26963,26971,27008,27026,27073,27084,27094,27095,27104,27112,27178,27179,27188,27218,27223,27254,27264,27276,27278,27280,27310,27318,27320,27327,27377,27400,27464,27467,27535,27545,27557,27592,27620,27622,27656,27687,27690,27702,27708,27755,27819,27820,28213,29332,29724]]],["sirs",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27880]]]]},{"k":"G436","v":[["*",[14,12,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]],[43,2,2,2,4,[[1023,1,1,2,3],[1030,1,1,3,4]]],[44,3,2,4,6,[[1054,1,1,4,5],[1058,2,1,5,6]]],[47,1,1,6,7,[[1092,1,1,6,7]]],[48,1,1,7,8,[[1102,1,1,7,8]]],[54,3,2,8,10,[[1127,2,1,8,9],[1128,1,1,9,10]]],[58,1,1,10,11,[[1149,1,1,10,11]]],[59,1,1,11,12,[[1155,1,1,11,12]]]],[23273,25841,27111,27370,28174,28268,29092,29350,29861,29885,30344,30474]]],["Resist",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30344]]],["resist",[6,6,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]],[43,1,1,2,3,[[1023,1,1,2,3]]],[44,1,1,3,4,[[1058,1,1,3,4]]],[54,1,1,4,5,[[1127,1,1,4,5]]],[59,1,1,5,6,[[1155,1,1,5,6]]]],[23273,25841,27111,28268,29861,30474]]],["resisted",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28174]]],["resisteth",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28268]]],["withstand",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29350]]],["withstood",[4,4,[[43,1,1,0,1,[[1030,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]],[54,2,2,2,4,[[1127,1,1,2,3],[1128,1,1,3,4]]]],[27370,29092,29861,29885]]]]},{"k":"G437","v":[["thanks",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25011]]]]},{"k":"G438","v":[["flower",[4,3,[[58,2,2,0,2,[[1146,2,2,0,2]]],[59,2,1,2,3,[[1151,2,1,2,3]]]],[30276,30277,30398]]]]},{"k":"G439","v":[["coals",[2,2,[[42,2,2,0,2,[[1014,1,1,0,1],[1017,1,1,1,2]]]],[26803,26907]]]]},{"k":"G440","v":[["coals",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28265]]]]},{"k":"G441","v":[["menpleasers",[2,2,[[48,1,1,0,1,[[1102,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29343,29539]]]]},{"k":"G442","v":[["*",[7,7,[[44,1,1,0,1,[[1051,1,1,0,1]]],[45,4,4,1,5,[[1063,2,2,1,3],[1065,1,1,3,4],[1071,1,1,4,5]]],[58,1,1,5,6,[[1148,1,1,5,6]]],[59,1,1,6,7,[[1152,1,1,6,7]]]],[28087,28398,28407,28436,28580,30326,30412]]],["+",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30326]]],["man",[2,2,[[45,1,1,0,1,[[1071,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[28580,30412]]],["man's",[3,3,[[45,3,3,0,3,[[1063,2,2,0,2],[1065,1,1,2,3]]]],[28398,28407,28436]]],["men",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28087]]]]},{"k":"G443","v":[["murderer",[3,2,[[42,1,1,0,1,[[1004,1,1,0,1]]],[61,2,1,1,2,[[1161,2,1,1,2]]]],[26425,30594]]]]},{"k":"G444","v":[["*",[560,505,[[39,117,105,0,105,[[932,2,2,0,2],[933,3,3,2,5],[934,7,7,5,12],[935,2,2,12,14],[936,3,3,14,17],[937,4,4,17,21],[938,6,6,21,27],[939,3,2,27,29],[940,14,12,29,41],[941,9,9,41,50],[943,6,4,50,54],[944,7,5,54,59],[945,5,4,59,63],[946,4,4,63,67],[947,7,7,67,74],[948,3,3,74,77],[949,3,3,77,80],[950,3,3,80,83],[951,5,5,83,88],[952,6,5,88,93],[953,4,4,93,97],[954,9,6,97,103],[955,2,2,103,105]]],[40,55,48,105,153,[[957,2,2,105,107],[958,4,3,107,110],[959,4,4,110,114],[960,1,1,114,115],[961,2,2,115,117],[963,10,8,117,125],[964,7,7,125,132],[965,4,3,132,135],[966,5,5,135,140],[967,3,3,140,143],[968,2,2,143,145],[969,2,2,145,147],[970,8,5,147,152],[971,1,1,152,153]]],[41,103,92,153,245,[[973,1,1,153,154],[974,5,4,154,158],[976,2,2,158,160],[977,4,4,160,164],[978,12,10,164,174],[979,5,4,174,178],[980,3,3,178,181],[981,10,8,181,189],[982,1,1,189,190],[983,6,5,190,195],[984,8,7,195,202],[985,2,2,202,204],[986,3,3,204,207],[987,2,2,207,209],[988,4,3,209,212],[989,4,4,212,216],[990,7,7,216,223],[991,5,5,223,228],[992,3,3,228,231],[993,3,3,231,234],[994,7,6,234,240],[995,5,4,240,244],[996,1,1,244,245]]],[42,59,53,245,298,[[997,4,4,245,249],[998,3,2,249,251],[999,6,6,251,257],[1000,3,3,257,260],[1001,8,8,260,268],[1002,5,5,268,273],[1003,6,4,273,277],[1004,3,3,277,280],[1005,7,5,280,285],[1006,1,1,285,286],[1007,2,2,286,288],[1008,4,3,288,291],[1009,1,1,291,292],[1012,1,1,292,293],[1013,1,1,293,294],[1014,3,3,294,297],[1015,1,1,297,298]]],[43,46,45,298,343,[[1021,7,7,298,305],[1022,6,5,305,310],[1023,1,1,310,311],[1024,1,1,311,312],[1026,1,1,312,313],[1027,2,2,313,315],[1029,1,1,315,316],[1031,2,2,316,318],[1032,2,2,318,320],[1033,4,4,320,324],[1034,4,4,324,328],[1035,1,1,328,329],[1036,2,2,329,331],[1038,2,2,331,333],[1039,3,3,333,336],[1040,1,1,336,337],[1041,1,1,337,338],[1042,2,2,338,340],[1043,2,2,340,342],[1045,1,1,342,343]]],[44,27,25,343,368,[[1046,2,2,343,345],[1047,5,5,345,350],[1048,3,3,350,353],[1049,1,1,353,354],[1050,6,4,354,358],[1051,1,1,358,359],[1052,3,3,359,362],[1054,1,1,362,363],[1055,1,1,363,364],[1057,2,2,364,366],[1059,2,2,366,368]]],[45,30,25,368,393,[[1062,2,1,368,369],[1063,6,4,369,373],[1064,2,2,373,375],[1065,2,2,375,377],[1067,1,1,377,378],[1068,4,4,378,382],[1070,1,1,382,383],[1072,1,1,383,384],[1074,1,1,384,385],[1075,2,2,385,387],[1076,8,6,387,393]]],[46,8,8,393,401,[[1080,1,1,393,394],[1081,2,2,394,396],[1082,1,1,396,397],[1085,1,1,397,398],[1089,3,3,398,401]]],[47,15,11,401,412,[[1091,7,4,401,405],[1092,2,2,405,407],[1093,3,2,407,409],[1095,1,1,409,410],[1096,2,2,410,412]]],[48,9,9,412,421,[[1098,1,1,412,413],[1099,2,2,413,415],[1100,4,4,415,419],[1101,1,1,419,420],[1102,1,1,420,421]]],[49,3,3,421,424,[[1104,2,2,421,423],[1106,1,1,423,424]]],[50,7,5,424,429,[[1107,3,1,424,425],[1108,2,2,425,427],[1109,2,2,427,429]]],[51,5,5,429,434,[[1112,4,4,429,433],[1114,1,1,433,434]]],[52,2,2,434,436,[[1117,1,1,434,435],[1118,1,1,435,436]]],[53,10,9,436,445,[[1120,4,3,436,439],[1122,1,1,439,440],[1123,1,1,440,441],[1124,4,4,441,445]]],[54,5,5,445,450,[[1126,1,1,445,446],[1127,4,4,446,450]]],[55,5,5,450,455,[[1129,1,1,450,451],[1130,1,1,451,452],[1131,3,3,452,455]]],[57,10,8,455,463,[[1134,2,1,455,456],[1137,2,1,456,457],[1138,1,1,457,458],[1139,2,2,458,460],[1140,1,1,460,461],[1141,1,1,461,462],[1145,1,1,462,463]]],[58,7,7,463,470,[[1146,2,2,463,465],[1147,2,2,465,467],[1148,2,2,467,469],[1150,1,1,469,470]]],[59,6,6,470,476,[[1151,1,1,470,471],[1152,2,2,471,473],[1153,1,1,473,474],[1154,2,2,474,476]]],[60,4,3,476,479,[[1156,2,1,476,477],[1157,1,1,477,478],[1158,1,1,478,479]]],[61,1,1,479,480,[[1163,1,1,479,480]]],[64,1,1,480,481,[[1166,1,1,480,481]]],[65,25,24,481,505,[[1167,1,1,481,482],[1170,1,1,482,483],[1174,1,1,483,484],[1175,8,8,484,492],[1177,1,1,492,493],[1179,2,2,493,495],[1180,2,2,495,497],[1182,6,5,497,502],[1184,1,1,502,503],[1187,2,2,503,505]]]],[23213,23228,23247,23250,23253,23283,23284,23287,23296,23297,23298,23300,23325,23328,23354,23365,23372,23385,23387,23388,23411,23434,23440,23449,23450,23452,23453,23467,23478,23497,23499,23500,23501,23502,23520,23521,23524,23525,23529,23532,23534,23563,23564,23567,23570,23576,23580,23583,23584,23591,23642,23644,23651,23653,23685,23695,23698,23699,23700,23709,23712,23714,23722,23734,23738,23739,23750,23765,23767,23768,23772,23774,23788,23790,23793,23810,23820,23851,23852,23854,23874,23883,23888,23922,23923,23925,23931,23946,23984,23987,23994,23996,24001,24021,24022,24032,24039,24056,24078,24099,24118,24126,24128,24161,24186,24232,24238,24270,24287,24288,24289,24291,24293,24316,24349,24366,24372,24470,24471,24474,24478,24481,24483,24484,24486,24524,24527,24531,24533,24536,24537,24538,24547,24550,24569,24595,24597,24615,24621,24633,24642,24670,24672,24674,24687,24743,24751,24767,24775,24795,24816,24825,24865,24918,24987,24988,24998,25025,25067,25096,25117,25125,25127,25131,25151,25152,25154,25156,25168,25172,25177,25191,25194,25195,25203,25220,25226,25229,25274,25278,25280,25323,25326,25327,25331,25333,25345,25357,25359,25393,25429,25431,25435,25449,25451,25467,25468,25469,25473,25475,25495,25499,25522,25537,25555,25569,25583,25592,25599,25621,25635,25639,25673,25675,25677,25681,25690,25692,25696,25698,25699,25715,25719,25741,25743,25752,25753,25761,25783,25785,25788,25852,25853,25862,25874,25886,25912,25922,25924,25933,25939,25941,25949,25982,25998,26048,26050,26053,26095,26105,26120,26121,26124,26133,26134,26139,26147,26184,26185,26206,26215,26217,26219,26222,26225,26237,26244,26251,26267,26271,26284,26310,26319,26350,26351,26374,26379,26398,26409,26421,26441,26451,26456,26464,26470,26514,26570,26573,26603,26614,26623,26661,26747,26765,26799,26802,26814,26830,27031,27034,27035,27036,27038,27039,27044,27063,27087,27088,27094,27097,27114,27172,27249,27285,27287,27359,27425,27429,27459,27468,27500,27503,27518,27520,27548,27549,27552,27553,27570,27601,27620,27692,27703,27719,27729,27730,27743,27785,27812,27818,27854,27855,27903,27948,27953,27963,27965,27971,27978,27991,27995,27996,28019,28028,28059,28062,28065,28066,28074,28092,28113,28115,28175,28193,28262,28263,28298,28300,28388,28399,28403,28405,28408,28413,28431,28434,28442,28485,28488,28494,28510,28513,28548,28628,28666,28680,28681,28737,28739,28750,28757,28763,28765,28843,28861,28875,28888,28953,29024,29025,29026,29058,29067,29068,29069,29087,29097,29114,29117,29165,29189,29195,29244,29256,29267,29280,29286,29294,29296,29335,29344,29398,29399,29447,29493,29502,29516,29526,29540,29574,29576,29583,29585,29611,29664,29680,29717,29720,29721,29757,29787,29793,29797,29799,29804,29829,29855,29861,29866,29870,29906,29919,29925,29931,29933,29983,30031,30060,30072,30092,30094,30132,30247,30273,30285,30313,30317,30327,30328,30371,30398,30403,30414,30428,30448,30452,30500,30516,30529,30633,30676,30710,30775,30838,30844,30845,30846,30847,30850,30855,30858,30860,30885,30921,30926,30930,30940,30956,30962,30963,30972,30975,31006,31056,31070]]],["+",[14,14,[[39,5,5,0,5,[[938,2,2,0,2],[940,1,1,2,3],[946,1,1,3,4],[950,1,1,4,5]]],[41,5,5,5,10,[[974,1,1,5,6],[978,2,2,6,8],[984,1,1,8,9],[991,1,1,9,10]]],[42,1,1,10,11,[[1001,1,1,10,11]]],[43,1,1,11,12,[[1033,1,1,11,12]]],[44,1,1,12,13,[[1052,1,1,12,13]]],[45,1,1,13,14,[[1076,1,1,13,14]]]],[23449,23452,23501,23750,23874,24988,25152,25168,25467,25743,26217,27518,28092,28757]]],["An",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23567]]],["Man",[5,5,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,4,4,1,5,[[977,1,1,1,2],[984,1,1,2,3],[994,2,2,3,5]]]],[23213,25127,25473,25922,25924]]],["Men",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27468]]],["Men's",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25852]]],["and",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27520]]],["man",[336,303,[[39,75,66,0,66,[[935,1,1,0,1],[936,2,2,1,3],[937,3,3,3,6],[938,1,1,6,7],[939,3,2,7,9],[940,10,9,9,18],[941,7,7,18,25],[943,5,3,25,28],[944,5,4,28,32],[945,4,4,32,36],[946,3,3,36,39],[947,5,5,39,44],[948,3,3,44,47],[949,1,1,47,48],[950,1,1,48,49],[952,6,5,49,54],[953,4,4,54,58],[954,9,6,58,64],[955,2,2,64,66]]],[40,42,36,66,102,[[957,1,1,66,67],[958,4,3,67,70],[959,3,3,70,73],[960,1,1,73,74],[961,2,2,74,76],[963,7,5,76,81],[964,4,4,81,85],[965,3,3,85,88],[966,4,4,88,92],[967,1,1,92,93],[968,1,1,93,94],[969,2,2,94,96],[970,8,5,96,101],[971,1,1,101,102]]],[41,69,64,102,166,[[974,3,2,102,104],[976,2,2,104,106],[977,2,2,106,108],[978,7,6,108,114],[979,4,3,114,117],[980,3,3,117,120],[981,6,6,120,126],[982,1,1,126,127],[983,3,3,127,130],[984,4,4,130,134],[985,1,1,134,135],[986,3,3,135,138],[987,2,2,138,140],[988,2,2,140,142],[989,4,4,142,146],[990,4,4,146,150],[991,4,4,150,154],[992,1,1,154,155],[993,2,2,155,157],[994,5,4,157,161],[995,5,4,161,165],[996,1,1,165,166]]],[42,48,42,166,208,[[997,3,3,166,169],[998,3,2,169,171],[999,5,5,171,176],[1000,2,2,176,178],[1001,6,6,178,184],[1002,3,3,184,187],[1003,6,4,187,191],[1004,2,2,191,193],[1005,7,5,193,198],[1006,1,1,198,199],[1007,2,2,199,201],[1008,3,2,201,203],[1009,1,1,203,204],[1012,1,1,204,205],[1014,2,2,205,207],[1015,1,1,207,208]]],[43,22,22,208,230,[[1021,4,4,208,212],[1023,1,1,212,213],[1024,1,1,213,214],[1026,1,1,214,215],[1027,2,2,215,217],[1029,1,1,217,218],[1036,2,2,218,220],[1038,2,2,220,222],[1039,2,2,222,224],[1040,1,1,224,225],[1042,2,2,225,227],[1043,2,2,227,229],[1045,1,1,229,230]]],[44,16,16,230,246,[[1046,1,1,230,231],[1047,3,3,231,234],[1048,3,3,234,237],[1049,1,1,237,238],[1050,2,2,238,240],[1051,1,1,240,241],[1052,2,2,241,243],[1054,1,1,243,244],[1055,1,1,244,245],[1059,1,1,245,246]]],[45,16,12,246,258,[[1063,5,3,246,249],[1065,1,1,249,250],[1067,1,1,250,251],[1068,2,2,251,253],[1070,1,1,253,254],[1072,1,1,254,255],[1076,5,3,255,258]]],[46,4,4,258,262,[[1081,1,1,258,259],[1089,3,3,259,262]]],[47,8,8,262,270,[[1091,3,3,262,265],[1092,1,1,265,266],[1093,1,1,266,267],[1095,1,1,267,268],[1096,2,2,268,270]]],[48,5,5,270,275,[[1098,1,1,270,271],[1099,1,1,271,272],[1100,2,2,272,274],[1101,1,1,274,275]]],[49,1,1,275,276,[[1104,1,1,275,276]]],[50,4,2,276,278,[[1107,3,1,276,277],[1109,1,1,277,278]]],[51,1,1,278,279,[[1114,1,1,278,279]]],[52,1,1,279,280,[[1117,1,1,279,280]]],[53,3,3,280,283,[[1120,1,1,280,281],[1124,2,2,281,283]]],[54,1,1,283,284,[[1127,1,1,283,284]]],[55,1,1,284,285,[[1131,1,1,284,285]]],[57,4,3,285,288,[[1134,2,1,285,286],[1140,1,1,286,287],[1145,1,1,287,288]]],[58,6,6,288,294,[[1146,2,2,288,290],[1147,2,2,290,292],[1148,1,1,292,293],[1150,1,1,293,294]]],[59,2,2,294,296,[[1151,1,1,294,295],[1153,1,1,295,296]]],[60,1,1,296,297,[[1156,1,1,296,297]]],[65,6,6,297,303,[[1167,1,1,297,298],[1170,1,1,298,299],[1175,1,1,299,300],[1179,1,1,300,301],[1180,1,1,301,302],[1187,1,1,302,303]]]],[23325,23354,23365,23385,23388,23411,23440,23467,23478,23497,23499,23500,23502,23521,23524,23529,23532,23534,23563,23570,23576,23580,23583,23584,23591,23644,23651,23653,23685,23698,23699,23700,23709,23712,23714,23722,23734,23738,23739,23765,23767,23768,23772,23790,23793,23810,23820,23854,23883,23984,23987,23994,23996,24001,24021,24022,24032,24039,24056,24078,24099,24118,24126,24128,24161,24186,24238,24270,24287,24288,24289,24291,24293,24349,24366,24372,24474,24478,24481,24483,24486,24531,24536,24537,24538,24547,24550,24569,24595,24597,24621,24633,24642,24674,24743,24751,24767,24775,24795,24816,24825,24865,24998,25025,25067,25096,25125,25131,25151,25154,25156,25191,25194,25195,25203,25220,25229,25274,25278,25280,25323,25326,25327,25345,25357,25359,25393,25429,25431,25435,25467,25469,25475,25499,25537,25555,25569,25583,25592,25599,25621,25639,25673,25675,25677,25681,25690,25692,25696,25719,25741,25752,25753,25761,25788,25853,25862,25874,25886,25912,25933,25939,25941,25949,25982,25998,26050,26053,26095,26105,26120,26121,26124,26133,26134,26147,26185,26206,26215,26219,26222,26225,26237,26244,26284,26310,26319,26350,26351,26374,26379,26409,26421,26441,26451,26456,26464,26470,26514,26570,26573,26603,26614,26661,26747,26799,26814,26830,27031,27036,27039,27044,27114,27172,27249,27285,27287,27359,27601,27620,27692,27703,27729,27730,27743,27812,27818,27854,27855,27903,27953,27963,27965,27971,27995,27996,28019,28028,28059,28062,28074,28113,28115,28175,28193,28300,28403,28405,28408,28434,28485,28488,28513,28548,28628,28739,28763,28765,28875,29024,29025,29026,29058,29068,29069,29097,29114,29165,29189,29195,29244,29267,29294,29296,29335,29399,29493,29526,29611,29664,29721,29799,29804,29870,29933,29983,30094,30247,30273,30285,30313,30317,30327,30371,30398,30428,30500,30710,30775,30845,30926,30940,31070]]],["man's",[9,9,[[39,1,1,0,1,[[938,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[43,2,2,2,4,[[1022,1,1,2,3],[1034,1,1,3,4]]],[44,1,1,4,5,[[1050,1,1,4,5]]],[46,1,1,5,6,[[1081,1,1,5,6]]],[47,2,2,6,8,[[1092,1,1,6,7],[1093,1,1,7,8]]],[60,1,1,8,9,[[1157,1,1,8,9]]]],[23453,26802,27087,27552,28066,28861,29087,29117,30516]]],["men",[187,178,[[39,33,32,0,32,[[932,1,1,0,1],[933,3,3,1,4],[934,7,7,4,11],[935,1,1,11,12],[936,1,1,12,13],[937,1,1,13,14],[938,2,2,14,16],[940,3,2,16,18],[941,1,1,18,19],[943,1,1,19,20],[944,2,2,20,22],[945,1,1,22,23],[947,2,2,23,25],[949,2,2,25,27],[950,1,1,27,28],[951,4,4,28,32]]],[40,13,13,32,45,[[957,1,1,32,33],[959,1,1,33,34],[963,3,3,34,37],[964,3,3,37,40],[965,1,1,40,41],[966,1,1,41,42],[967,2,2,42,44],[968,1,1,44,45]]],[41,22,21,45,66,[[973,1,1,45,46],[974,1,1,46,47],[977,1,1,47,48],[978,3,3,48,51],[979,1,1,51,52],[981,3,3,52,55],[983,2,2,55,57],[984,2,2,57,59],[985,1,1,59,60],[988,2,1,60,61],[990,3,3,61,64],[992,2,2,64,66]]],[42,9,9,66,75,[[997,1,1,66,67],[999,1,1,67,68],[1000,1,1,68,69],[1001,1,1,69,70],[1002,2,2,70,72],[1004,1,1,72,73],[1008,1,1,73,74],[1013,1,1,74,75]]],[43,18,17,75,92,[[1021,3,3,75,78],[1022,5,4,78,82],[1031,2,2,82,84],[1032,1,1,84,85],[1033,2,2,85,87],[1034,2,2,87,89],[1035,1,1,89,90],[1039,1,1,90,91],[1041,1,1,91,92]]],[44,9,8,92,100,[[1046,1,1,92,93],[1047,2,2,93,95],[1050,3,2,95,97],[1057,2,2,97,99],[1059,1,1,99,100]]],[45,13,12,100,112,[[1062,2,1,100,101],[1063,1,1,101,102],[1064,2,2,102,104],[1065,1,1,104,105],[1068,2,2,105,107],[1074,1,1,107,108],[1075,2,2,108,110],[1076,2,2,110,112]]],[46,3,3,112,115,[[1080,1,1,112,113],[1082,1,1,113,114],[1085,1,1,114,115]]],[47,5,3,115,118,[[1091,4,2,115,117],[1093,1,1,117,118]]],[48,4,4,118,122,[[1099,1,1,118,119],[1100,2,2,119,121],[1102,1,1,121,122]]],[49,2,2,122,124,[[1104,1,1,122,123],[1106,1,1,123,124]]],[50,3,3,124,127,[[1108,2,2,124,126],[1109,1,1,126,127]]],[51,4,4,127,131,[[1112,4,4,127,131]]],[52,1,1,131,132,[[1118,1,1,131,132]]],[53,6,6,132,138,[[1120,3,3,132,135],[1122,1,1,135,136],[1124,2,2,136,138]]],[54,4,4,138,142,[[1126,1,1,138,139],[1127,3,3,139,142]]],[55,4,4,142,146,[[1129,1,1,142,143],[1130,1,1,143,144],[1131,2,2,144,146]]],[57,6,5,146,151,[[1137,2,1,146,147],[1138,1,1,147,148],[1139,2,2,148,150],[1141,1,1,150,151]]],[58,1,1,151,152,[[1148,1,1,151,152]]],[59,4,4,152,156,[[1152,2,2,152,154],[1154,2,2,154,156]]],[60,2,2,156,158,[[1156,1,1,156,157],[1158,1,1,157,158]]],[61,1,1,158,159,[[1163,1,1,158,159]]],[64,1,1,159,160,[[1166,1,1,159,160]]],[65,19,18,160,178,[[1174,1,1,160,161],[1175,7,7,161,168],[1177,1,1,168,169],[1179,1,1,169,170],[1180,1,1,170,171],[1182,6,5,171,176],[1184,1,1,176,177],[1187,1,1,177,178]]]],[23228,23247,23250,23253,23283,23284,23287,23296,23297,23298,23300,23328,23372,23387,23434,23450,23520,23525,23564,23642,23685,23695,23722,23774,23788,23851,23852,23888,23923,23925,23931,23946,24232,24316,24470,24471,24484,24524,24527,24533,24569,24615,24670,24672,24687,24918,24987,25117,25168,25172,25177,25226,25331,25333,25345,25449,25451,25468,25495,25522,25635,25698,25699,25715,25783,25785,26048,26139,26184,26251,26267,26271,26398,26623,26765,27034,27035,27038,27063,27088,27094,27097,27425,27429,27459,27500,27503,27549,27553,27570,27719,27785,27948,27978,27991,28059,28065,28262,28263,28298,28388,28399,28413,28431,28442,28494,28510,28666,28680,28681,28737,28750,28843,28888,28953,29058,29067,29117,29256,29280,29286,29344,29398,29447,29502,29516,29540,29574,29576,29583,29585,29680,29717,29720,29721,29757,29793,29797,29829,29855,29861,29866,29906,29919,29925,29931,30031,30060,30072,30092,30132,30328,30403,30414,30448,30452,30500,30529,30633,30676,30838,30844,30846,30847,30850,30855,30858,30860,30885,30921,30930,30956,30962,30963,30972,30975,31006,31056]]],["men's",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[43,1,1,2,3,[[1034,1,1,2,3]]],[53,1,1,3,4,[[1123,1,1,3,4]]]],[23922,25357,27548,29787]]],["the",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25435]]]]},{"k":"G445","v":[["deputy",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27569]]]]},{"k":"G446","v":[["*",[4,4,[[43,4,4,0,4,[[1030,3,3,0,3],[1036,1,1,3,4]]]],[27369,27370,27374,27623]]],["country",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27369]]],["deputies",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27623]]],["deputy",[2,2,[[43,2,2,0,2,[[1030,2,2,0,2]]]],[27370,27374]]]]},{"k":"G447","v":[["*",[4,4,[[43,2,2,0,2,[[1033,1,1,0,1],[1044,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]]],[27509,27895,29346,30246]]],["forbearing",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29346]]],["leave",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30246]]],["loosed",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1044,1,1,1,2]]]],[27509,27895]]]]},{"k":"G448","v":[["mercy",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30306]]]]},{"k":"G449","v":[["unwashen",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[963,2,2,1,3]]]],[23653,24465,24468]]]]},{"k":"G450","v":[["*",[112,111,[[39,6,6,0,6,[[937,1,1,0,1],[940,1,1,1,2],[945,1,1,2,3],[948,1,1,3,4],[950,1,1,4,5],[954,1,1,5,6]]],[40,18,18,6,24,[[957,1,1,6,7],[958,1,1,7,8],[959,1,1,8,9],[961,1,1,9,10],[963,1,1,10,11],[964,1,1,11,12],[965,4,4,12,16],[966,3,3,16,19],[968,2,2,19,21],[970,2,2,21,23],[972,1,1,23,24]]],[41,27,27,24,51,[[973,1,1,24,25],[976,4,4,25,29],[977,2,2,29,31],[978,1,1,31,32],[980,1,1,32,33],[981,2,2,33,35],[982,1,1,35,36],[983,3,3,36,39],[987,2,2,39,41],[988,1,1,41,42],[989,1,1,42,43],[990,1,1,43,44],[994,2,2,44,46],[995,1,1,46,47],[996,4,4,47,51]]],[42,8,8,51,59,[[1002,4,4,51,55],[1007,3,3,55,58],[1016,1,1,58,59]]],[43,45,44,59,103,[[1018,1,1,59,60],[1019,3,3,60,63],[1020,2,2,63,65],[1022,5,5,65,70],[1023,1,1,70,71],[1024,2,2,71,73],[1025,2,2,73,75],[1026,8,7,75,82],[1027,4,4,82,86],[1028,2,2,86,88],[1029,1,1,88,89],[1030,3,3,89,92],[1031,2,2,92,94],[1032,1,1,94,95],[1034,2,2,95,97],[1037,1,1,97,98],[1039,2,2,98,100],[1040,1,1,100,101],[1043,2,2,101,103]]],[44,2,2,103,105,[[1059,1,1,103,104],[1060,1,1,104,105]]],[45,1,1,105,106,[[1071,1,1,105,106]]],[48,1,1,106,107,[[1101,1,1,106,107]]],[51,2,2,107,109,[[1114,2,2,107,109]]],[57,2,2,109,111,[[1139,2,2,109,111]]]],[23388,23530,23709,23811,23896,24116,24250,24274,24314,24406,24487,24531,24547,24548,24565,24569,24589,24622,24638,24696,24698,24811,24814,24882,24932,25079,25092,25101,25102,25132,25135,25154,25300,25309,25320,25388,25412,25413,25437,25606,25608,25651,25670,25721,25909,25910,25936,25998,26003,26024,26037,26296,26297,26301,26311,26546,26547,26554,26876,26938,26973,26979,26981,27018,27022,27065,27076,27093,27095,27096,27110,27134,27153,27202,27203,27222,27227,27234,27250,27255,27256,27257,27272,27279,27285,27300,27314,27335,27344,27378,27395,27396,27424,27434,27449,27526,27554,27656,27714,27720,27743,27839,27853,28289,28315,28574,29318,29617,29619,30075,30079]]],["+",[8,8,[[40,1,1,0,1,[[966,1,1,0,1]]],[42,4,4,1,5,[[1002,4,4,1,5]]],[43,3,3,5,8,[[1026,1,1,5,6],[1030,2,2,6,8]]]],[24589,26296,26297,26301,26311,27257,27395,27396]]],["Arise",[7,7,[[41,1,1,0,1,[[989,1,1,0,1]]],[43,6,6,1,7,[[1025,1,1,1,2],[1026,2,2,2,4],[1027,1,1,4,5],[1028,1,1,5,6],[1039,1,1,6,7]]]],[25670,27202,27222,27227,27279,27314,27714]]],["Rise",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27272]]],["Stand",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27424]]],["again",[13,13,[[39,2,2,0,2,[[945,1,1,0,1],[948,1,1,1,2]]],[40,2,2,2,4,[[964,1,1,2,3],[966,1,1,3,4]]],[41,4,4,4,8,[[981,2,2,4,6],[990,1,1,6,7],[996,1,1,7,8]]],[42,3,3,8,11,[[1007,2,2,8,10],[1016,1,1,10,11]]],[43,1,1,11,12,[[1034,1,1,11,12]]],[51,1,1,12,13,[[1114,1,1,12,13]]]],[23709,23811,24531,24622,25309,25320,25721,25998,26546,26547,26876,27526,29617]]],["arise",[6,6,[[41,1,1,0,1,[[987,1,1,0,1]]],[43,4,4,1,5,[[1026,2,2,1,3],[1037,1,1,3,4],[1039,1,1,4,5]]],[48,1,1,5,6,[[1101,1,1,5,6]]]],[25606,27250,27256,27656,27720,29318]]],["ariseth",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30079]]],["arose",[23,23,[[39,2,2,0,2,[[937,1,1,0,1],[954,1,1,1,2]]],[40,5,5,2,7,[[958,1,1,2,3],[961,1,1,3,4],[963,1,1,4,5],[965,1,1,5,6],[970,1,1,6,7]]],[41,8,8,7,15,[[973,1,1,7,8],[976,2,2,8,10],[978,1,1,10,11],[980,1,1,11,12],[987,1,1,12,13],[995,1,1,13,14],[996,1,1,14,15]]],[43,8,8,15,23,[[1022,1,1,15,16],[1023,1,1,16,17],[1024,1,1,17,18],[1025,1,1,18,19],[1026,3,3,19,22],[1040,1,1,22,23]]]],[23388,24116,24274,24406,24487,24565,24811,24932,25101,25102,25154,25300,25608,25936,26003,27065,27110,27134,27203,27234,27250,27255,27743]]],["raised",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27554]]],["rise",[12,12,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,3,3,1,4,[[965,1,1,1,2],[968,2,2,2,4]]],[41,4,4,4,8,[[983,2,2,4,6],[994,1,1,6,7],[996,1,1,7,8]]],[43,1,1,8,9,[[1043,1,1,8,9]]],[44,1,1,9,10,[[1060,1,1,9,10]]],[51,1,1,10,11,[[1114,1,1,10,11]]],[57,1,1,11,12,[[1139,1,1,11,12]]]],[23530,24569,24696,24698,25412,25413,25910,26037,27839,28315,29619,30075]]],["risen",[2,2,[[40,2,2,0,2,[[965,1,1,0,1],[972,1,1,1,2]]]],[24547,24882]]],["rising",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24548]]],["rose",[4,4,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]],[44,1,1,3,4,[[1059,1,1,3,4]]]],[24638,25651,27300,28289]]],["up",[32,32,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,3,3,1,4,[[957,1,1,1,2],[959,1,1,2,3],[970,1,1,3,4]]],[41,8,8,4,12,[[976,2,2,4,6],[977,2,2,6,8],[982,1,1,8,9],[983,1,1,9,10],[994,1,1,10,11],[996,1,1,11,12]]],[42,1,1,12,13,[[1007,1,1,12,13]]],[43,18,18,13,31,[[1018,1,1,13,14],[1019,3,3,14,17],[1020,2,2,17,19],[1022,4,4,19,23],[1024,1,1,23,24],[1027,1,1,24,25],[1028,1,1,25,26],[1029,1,1,26,27],[1030,1,1,27,28],[1031,1,1,28,29],[1032,1,1,29,30],[1043,1,1,30,31]]],[45,1,1,31,32,[[1071,1,1,31,32]]]],[23896,24250,24314,24814,25079,25092,25132,25135,25388,25437,25909,26024,26554,26938,26973,26979,26981,27018,27022,27076,27093,27095,27096,27153,27285,27335,27344,27378,27434,27449,27853,28574]]]]},{"k":"G451","v":[["Anna",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25009]]]]},{"k":"G452","v":[["Annas",[4,4,[[41,1,1,0,1,[[975,1,1,0,1]]],[42,2,2,1,3,[[1014,2,2,1,3]]],[43,1,1,3,4,[[1021,1,1,3,4]]]],[25027,26798,26809,27028]]]]},{"k":"G453","v":[["*",[6,6,[[41,1,1,0,1,[[996,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[47,2,2,2,4,[[1093,2,2,2,4]]],[53,1,1,4,5,[[1124,1,1,4,5]]],[55,1,1,5,6,[[1131,1,1,5,6]]]],[26016,27944,29103,29105,29797,29926]]],["foolish",[4,4,[[47,2,2,0,2,[[1093,2,2,0,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]],[55,1,1,3,4,[[1131,1,1,3,4]]]],[29103,29105,29797,29926]]],["fools",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26016]]],["unwise",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27944]]]]},{"k":"G454","v":[["*",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[25157,29862]]],["folly",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29862]]],["madness",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25157]]]]},{"k":"G455","v":[["*",[77,75,[[39,11,11,0,11,[[930,1,1,0,1],[931,1,1,1,2],[933,1,1,2,3],[935,2,2,3,5],[937,1,1,5,6],[941,1,1,6,7],[945,1,1,7,8],[948,1,1,8,9],[953,1,1,9,10],[955,1,1,10,11]]],[41,6,6,11,17,[[973,1,1,11,12],[975,1,1,12,13],[983,2,2,13,15],[984,1,1,15,16],[985,1,1,16,17]]],[42,11,11,17,28,[[997,1,1,17,18],[1005,7,7,18,25],[1006,2,2,25,27],[1007,1,1,27,28]]],[43,17,17,28,45,[[1022,2,2,28,30],[1024,1,1,30,31],[1025,2,2,31,33],[1026,2,2,33,35],[1027,2,2,35,37],[1029,3,3,37,40],[1031,1,1,40,41],[1033,2,2,41,43],[1035,1,1,43,44],[1043,1,1,44,45]]],[44,1,1,45,46,[[1048,1,1,45,46]]],[45,1,1,46,47,[[1077,1,1,46,47]]],[46,2,2,47,49,[[1079,1,1,47,48],[1083,1,1,48,49]]],[50,1,1,49,50,[[1110,1,1,49,50]]],[65,27,25,50,75,[[1169,4,3,50,53],[1170,1,1,53,54],[1171,5,5,54,59],[1172,6,6,59,65],[1174,1,1,65,66],[1175,1,1,66,67],[1176,2,2,67,69],[1177,1,1,69,70],[1178,1,1,70,71],[1179,1,1,71,72],[1181,1,1,72,73],[1185,1,1,73,74],[1186,2,1,74,75]]]],[23180,23208,23236,23323,23324,23409,23574,23727,23825,24019,24181,24957,25046,25414,25415,25495,25543,26095,26450,26454,26457,26461,26466,26470,26472,26484,26502,26560,27078,27082,27172,27208,27211,27224,27256,27270,27293,27347,27351,27353,27441,27509,27510,27571,27841,28004,28785,28836,28909,29545,30753,30754,30766,30769,30781,30782,30783,30784,30788,30794,30796,30798,30800,30802,30805,30828,30842,30863,30869,30891,30907,30914,30951,31028,31050]]],["open",[21,21,[[39,2,2,0,2,[[941,1,1,0,1],[953,1,1,1,2]]],[41,2,2,2,4,[[984,1,1,2,3],[985,1,1,3,4]]],[42,2,2,4,6,[[997,1,1,4,5],[1006,1,1,5,6]]],[43,3,3,6,9,[[1033,1,1,6,7],[1035,1,1,7,8],[1043,1,1,8,9]]],[44,1,1,9,10,[[1048,1,1,9,10]]],[46,1,1,10,11,[[1083,1,1,10,11]]],[50,1,1,11,12,[[1110,1,1,11,12]]],[65,9,9,12,21,[[1169,2,2,12,14],[1171,5,5,14,19],[1176,2,2,19,21]]]],[23574,24019,25495,25543,26095,26502,27510,27571,27841,28004,28909,29545,30754,30766,30781,30782,30783,30784,30788,30863,30869]]],["opened",[53,52,[[39,9,9,0,9,[[930,1,1,0,1],[931,1,1,1,2],[933,1,1,2,3],[935,2,2,3,5],[937,1,1,5,6],[945,1,1,6,7],[948,1,1,7,8],[955,1,1,8,9]]],[41,4,4,9,13,[[973,1,1,9,10],[975,1,1,10,11],[983,2,2,11,13]]],[42,8,8,13,21,[[1005,7,7,13,20],[1007,1,1,20,21]]],[43,14,14,21,35,[[1022,2,2,21,23],[1024,1,1,23,24],[1025,2,2,24,26],[1026,2,2,26,28],[1027,2,2,28,30],[1029,3,3,30,33],[1031,1,1,33,34],[1033,1,1,34,35]]],[45,1,1,35,36,[[1077,1,1,35,36]]],[46,1,1,36,37,[[1079,1,1,36,37]]],[65,16,15,37,52,[[1170,1,1,37,38],[1172,6,6,38,44],[1174,1,1,44,45],[1175,1,1,45,46],[1177,1,1,46,47],[1178,1,1,47,48],[1179,1,1,48,49],[1181,1,1,49,50],[1185,1,1,50,51],[1186,2,1,51,52]]]],[23180,23208,23236,23323,23324,23409,23727,23825,24181,24957,25046,25414,25415,26450,26454,26457,26461,26466,26470,26472,26560,27078,27082,27172,27208,27211,27224,27256,27270,27293,27347,27351,27353,27441,27509,28785,28836,30769,30794,30796,30798,30800,30802,30805,30828,30842,30891,30907,30914,30951,31028,31050]]],["openeth",[3,2,[[42,1,1,0,1,[[1006,1,1,0,1]]],[65,2,1,1,2,[[1169,2,1,1,2]]]],[26484,30753]]]]},{"k":"G456","v":[["again",[2,1,[[43,2,1,0,1,[[1032,2,1,0,1]]]],[27458]]]]},{"k":"G457","v":[["open",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29356]]]]},{"k":"G458","v":[["*",[15,13,[[39,4,4,0,4,[[935,1,1,0,1],[941,1,1,1,2],[951,1,1,2,3],[952,1,1,3,4]]],[44,3,2,4,6,[[1049,1,1,4,5],[1051,2,1,5,6]]],[46,1,1,6,7,[[1083,1,1,6,7]]],[52,1,1,7,8,[[1117,1,1,7,8]]],[55,1,1,8,9,[[1130,1,1,8,9]]],[57,3,3,9,12,[[1133,1,1,9,10],[1140,1,1,10,11],[1142,1,1,11,12]]],[61,2,1,12,13,[[1161,2,1,12,13]]]],[23339,23580,23946,23969,28029,28087,28912,29668,29922,29972,30104,30150,30583]]],["+",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30583]]],["iniquities",[3,3,[[44,1,1,0,1,[[1049,1,1,0,1]]],[57,2,2,1,3,[[1140,1,1,1,2],[1142,1,1,2,3]]]],[28029,30104,30150]]],["iniquity",[9,8,[[39,4,4,0,4,[[935,1,1,0,1],[941,1,1,1,2],[951,1,1,2,3],[952,1,1,3,4]]],[44,2,1,4,5,[[1051,2,1,4,5]]],[52,1,1,5,6,[[1117,1,1,5,6]]],[55,1,1,6,7,[[1130,1,1,6,7]]],[57,1,1,7,8,[[1133,1,1,7,8]]]],[23339,23580,23946,23969,28087,29668,29922,29972]]],["law",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30583]]],["unrighteousness",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28912]]]]},{"k":"G459","v":[["*",[10,7,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]],[45,4,1,3,4,[[1070,4,1,3,4]]],[52,1,1,4,5,[[1117,1,1,4,5]]],[53,1,1,5,6,[[1119,1,1,5,6]]],[60,1,1,6,7,[[1157,1,1,6,7]]]],[24854,25901,26972,28561,29669,29705,30508]]],["Wicked",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29669]]],["law",[4,1,[[45,4,1,0,1,[[1070,4,1,0,1]]]],[28561]]],["lawless",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29705]]],["transgressors",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24854,25901]]],["unlawful",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30508]]],["wicked",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26972]]]]},{"k":"G460","v":[["law",[2,1,[[44,2,1,0,1,[[1047,2,1,0,1]]]],[27974]]]]},{"k":"G461","v":[["*",[3,3,[[41,1,1,0,1,[[985,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[25531,27458,30224]]],["+",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27458]]],["straight",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25531]]],["up",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30224]]]]},{"k":"G462","v":[["unholy",[2,2,[[53,1,1,0,1,[[1119,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[29705,29855]]]]},{"k":"G463","v":[["forbearance",[2,2,[[44,2,2,0,2,[[1047,1,1,0,1],[1048,1,1,1,2]]]],[27966,28016]]]]},{"k":"G464","v":[["striving",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30216]]]]},{"k":"G465","v":[["exchange",[2,2,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]]],[23698,24537]]]]},{"k":"G466","v":[["up",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29489]]]]},{"k":"G467","v":[["*",[7,6,[[41,2,1,0,1,[[986,2,1,0,1]]],[44,2,2,1,3,[[1056,1,1,1,2],[1057,1,1,2,3]]],[51,1,1,3,4,[[1113,1,1,3,4]]],[52,1,1,4,5,[[1116,1,1,4,5]]],[57,1,1,5,6,[[1142,1,1,5,6]]]],[25567,28244,28264,29599,29655,30163]]],["+",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29599]]],["recompense",[3,3,[[41,1,1,0,1,[[986,1,1,0,1]]],[52,1,1,1,2,[[1116,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[25567,29655,30163]]],["recompensed",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]]],[25567,28244]]],["repay",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28264]]]]},{"k":"G468","v":[["recompence",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]]],[25565,28218]]]]},{"k":"G469","v":[["reward",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29541]]]]},{"k":"G470","v":[["*",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]]],[25559,28175]]],["+",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25559]]],["against",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28175]]]]},{"k":"G471","v":[["*",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]]],[25841,27036]]],["+",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27036]]],["gainsay",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25841]]]]},{"k":"G472","v":[["*",[4,4,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[51,1,1,2,3,[[1115,1,1,2,3]]],[55,1,1,3,4,[[1129,1,1,3,4]]]],[23306,25633,29635,29901]]],["fast",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29901]]],["hold",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23306]]],["support",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29635]]],["to",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25633]]]]},{"k":"G473","v":[["*",[22,20,[[39,5,4,0,4,[[930,1,1,0,1],[933,2,1,1,2],[945,1,1,2,3],[948,1,1,3,4]]],[40,1,1,4,5,[[966,1,1,4,5]]],[41,4,4,5,9,[[973,1,1,5,6],[983,1,1,6,7],[984,1,1,7,8],[991,1,1,8,9]]],[42,1,1,9,10,[[997,1,1,9,10]]],[43,1,1,10,11,[[1029,1,1,10,11]]],[44,1,1,11,12,[[1057,1,1,11,12]]],[45,1,1,12,13,[[1072,1,1,12,13]]],[48,1,1,13,14,[[1101,1,1,13,14]]],[51,1,1,14,15,[[1115,1,1,14,15]]],[52,1,1,15,16,[[1117,1,1,15,16]]],[57,2,2,16,18,[[1144,2,2,16,18]]],[58,1,1,18,19,[[1149,1,1,18,19]]],[59,2,1,19,20,[[1153,2,1,19,20]]]],[23191,23272,23727,23820,24633,24913,25416,25462,25775,26060,27360,28262,28615,29335,29636,29671,30214,30228,30352,30433]]],["+",[5,5,[[41,2,2,0,2,[[984,1,1,0,1],[991,1,1,1,2]]],[43,1,1,2,3,[[1029,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]],[52,1,1,4,5,[[1117,1,1,4,5]]]],[25462,25775,27360,29335,29671]]],["For",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30352]]],["because",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24913]]],["for",[14,12,[[39,4,3,0,3,[[933,2,1,0,1],[945,1,1,1,2],[948,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,1,1,4,5,[[983,1,1,4,5]]],[42,1,1,5,6,[[997,1,1,5,6]]],[44,1,1,6,7,[[1057,1,1,6,7]]],[45,1,1,7,8,[[1072,1,1,7,8]]],[51,1,1,8,9,[[1115,1,1,8,9]]],[57,2,2,9,11,[[1144,2,2,9,11]]],[59,2,1,11,12,[[1153,2,1,11,12]]]],[23272,23727,23820,24633,25416,26060,28262,28615,29636,30214,30228,30433]]],["room",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23191]]]]},{"k":"G474","v":[["have",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26008]]]]},{"k":"G475","v":[["themselves",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29852]]]]},{"k":"G476","v":[["adversary",[5,4,[[39,2,1,0,1,[[933,2,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[990,1,1,2,3]]],[59,1,1,3,4,[[1155,1,1,3,4]]]],[23259,25517,25691,30473]]]]},{"k":"G477","v":[["oppositions",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29808]]]]},{"k":"G478","v":[["resisted",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30216]]]]},{"k":"G479","v":[["+",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25565]]]]},{"k":"G480","v":[["*",[8,8,[[41,2,2,0,2,[[985,1,1,0,1],[993,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]],[49,1,1,4,5,[[1103,1,1,4,5]]],[52,1,1,5,6,[[1117,1,1,5,6]]],[53,2,2,6,8,[[1119,1,1,6,7],[1123,1,1,7,8]]]],[25535,25841,28785,29179,29389,29665,29706,29777]]],["adversaries",[4,4,[[41,2,2,0,2,[[985,1,1,0,1],[993,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[49,1,1,3,4,[[1103,1,1,3,4]]]],[25535,25841,28785,29389]]],["adversary",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29777]]],["contrary",[2,2,[[47,1,1,0,1,[[1095,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]]],[29179,29706]]],["opposeth",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29665]]]]},{"k":"G481","v":[["against",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27641]]]]},{"k":"G482","v":[["*",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1037,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]]],[24947,27661,29790]]],["holpen",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24947]]],["partakers",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29790]]],["support",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27661]]]]},{"k":"G483","v":[["*",[10,9,[[41,2,2,0,2,[[974,1,1,0,1],[992,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]],[43,4,3,3,6,[[1030,2,1,3,4],[1045,2,2,4,6]]],[44,1,1,6,7,[[1055,1,1,6,7]]],[55,2,2,7,9,[[1129,1,1,7,8],[1130,1,1,8,9]]]],[25007,25806,26837,27407,27918,27921,28209,29901,29917]]],["again",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29917]]],["against",[5,5,[[41,1,1,0,1,[[974,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]],[43,3,3,2,5,[[1030,1,1,2,3],[1045,2,2,3,5]]]],[25007,26837,27407,27918,27921]]],["contradicting",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27407]]],["deny",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25806]]],["gainsayers",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29901]]],["gainsaying",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28209]]]]},{"k":"G484","v":[["helps",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28662]]]]},{"k":"G485","v":[["*",[4,4,[[57,3,3,0,3,[[1138,1,1,0,1],[1139,1,1,1,2],[1144,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[30060,30071,30215,30683]]],["contradiction",[2,2,[[57,2,2,0,2,[[1139,1,1,0,1],[1144,1,1,1,2]]]],[30071,30215]]],["gainsaying",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30683]]],["strife",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30060]]]]},{"k":"G486","v":[["+",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30422]]]]},{"k":"G487","v":[["ransom",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29722]]]]},{"k":"G488","v":[["+",[2,2,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]]],[23318,25184]]]]},{"k":"G489","v":[["recompence",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]]],[27957,28911]]]]},{"k":"G490","v":[["Antioch",[18,17,[[43,16,15,0,15,[[1028,6,5,0,5],[1030,2,2,5,7],[1031,3,3,7,10],[1032,4,4,10,14],[1035,1,1,14,15]]],[47,1,1,15,16,[[1092,1,1,15,16]]],[54,1,1,16,17,[[1127,1,1,16,17]]]],[27326,27327,27329,27333,27334,27363,27376,27433,27435,27440,27464,27465,27472,27477,27579,29092,29864]]]]},{"k":"G491","v":[["Antioch",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27106]]]]},{"k":"G492","v":[["side",[2,2,[[41,2,2,0,2,[[982,2,2,0,2]]]],[25394,25395]]]]},{"k":"G493","v":[["Antipas",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30730]]]]},{"k":"G494","v":[["Antipatris",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27765]]]]},{"k":"G495","v":[["against",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25271]]]]},{"k":"G496","v":[["resist",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27167]]]]},{"k":"G497","v":[["against",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28114]]]]},{"k":"G498","v":[["*",[5,5,[[43,1,1,0,1,[[1035,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]],[58,2,2,2,4,[[1149,1,1,2,3],[1150,1,1,3,4]]],[59,1,1,4,5,[[1155,1,1,4,5]]]],[27563,28268,30343,30360,30470]]],["+",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28268]]],["resist",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30360]]],["resisteth",[2,2,[[58,1,1,0,1,[[1149,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[30343,30470]]],["themselves",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27563]]]]},{"k":"G499","v":[["*",[2,2,[[57,1,1,0,1,[[1141,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[30129,30445]]],["figure",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30445]]],["figures",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30129]]]]},{"k":"G500","v":[["*",[5,4,[[61,4,3,0,3,[[1160,3,2,0,2],[1162,1,1,2,3]]],[62,1,1,3,4,[[1164,1,1,3,4]]]],[30568,30572,30606,30652]]],["antichrist",[4,4,[[61,3,3,0,3,[[1160,2,2,0,2],[1162,1,1,2,3]]],[62,1,1,3,4,[[1164,1,1,3,4]]]],[30568,30572,30606,30652]]],["antichrists",[1,1,[[61,1,1,0,1,[[1160,1,1,0,1]]]],[30568]]]]},{"k":"G501","v":[["*",[4,4,[[42,4,4,0,4,[[998,2,2,0,2],[1000,2,2,2,4]]]],[26103,26104,26163,26171]]],["draw",[2,2,[[42,2,2,0,2,[[1000,2,2,0,2]]]],[26163,26171]]],["drew",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26104]]],["out",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26103]]]]},{"k":"G502","v":[["draw",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26167]]]]},{"k":"G503","v":[["up",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27870]]]]},{"k":"G504","v":[["*",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[23532,25429,30517,30684]]],["dry",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23532,25429]]],["water",[2,2,[[60,1,1,0,1,[[1157,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[30517,30684]]]]},{"k":"G505","v":[["*",[6,6,[[44,1,1,0,1,[[1057,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]],[53,1,1,2,3,[[1119,1,1,2,3]]],[54,1,1,3,4,[[1125,1,1,3,4]]],[58,1,1,4,5,[[1148,1,1,4,5]]],[59,1,1,5,6,[[1151,1,1,5,6]]]],[28254,28904,29701,29814,30336,30396]]],["dissimulation",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28254]]],["hypocrisy",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30336]]],["unfeigned",[4,4,[[46,1,1,0,1,[[1083,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]],[54,1,1,2,3,[[1125,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[28904,29701,29814,30396]]]]},{"k":"G506","v":[["*",[4,4,[[53,1,1,0,1,[[1119,1,1,0,1]]],[55,2,2,1,3,[[1129,2,2,1,3]]],[57,1,1,3,4,[[1134,1,1,3,4]]]],[29705,29898,29902,29985]]],["+",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29902]]],["disobedient",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29705]]],["under",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29985]]],["unruly",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29898]]]]},{"k":"G507","v":[["*",[9,9,[[42,3,3,0,3,[[998,1,1,0,1],[1004,1,1,1,2],[1007,1,1,2,3]]],[43,1,1,3,4,[[1019,1,1,3,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]],[49,1,1,5,6,[[1105,1,1,5,6]]],[50,2,2,6,8,[[1109,2,2,6,8]]],[57,1,1,8,9,[[1144,1,1,8,9]]]],[26102,26404,26564,26968,29157,29435,29518,29519,30227]]],["above",[5,5,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]],[47,1,1,2,3,[[1094,1,1,2,3]]],[50,2,2,3,5,[[1109,2,2,3,5]]]],[26404,26968,29157,29518,29519]]],["brim",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26102]]],["high",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29435]]],["up",[2,2,[[42,1,1,0,1,[[1007,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[26564,30227]]]]},{"k":"G508","v":[["room",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24769,25876]]]]},{"k":"G509","v":[["*",[13,13,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[973,1,1,2,3]]],[42,5,5,3,8,[[999,3,3,3,6],[1015,2,2,6,8]]],[43,1,1,8,9,[[1043,1,1,8,9]]],[47,1,1,9,10,[[1094,1,1,9,10]]],[58,3,3,10,13,[[1146,1,1,10,11],[1148,2,2,11,13]]]],[24180,24864,24896,26123,26127,26151,26836,26848,27828,29140,30283,30334,30336]]],["above",[5,5,[[42,2,2,0,2,[[999,1,1,0,1],[1015,1,1,1,2]]],[58,3,3,2,5,[[1146,1,1,2,3],[1148,2,2,3,5]]]],[26151,26836,30283,30334,30336]]],["again",[3,3,[[42,2,2,0,2,[[999,2,2,0,2]]],[47,1,1,2,3,[[1094,1,1,2,3]]]],[26123,26127,29140]]],["beginning",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27828]]],["first",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24896]]],["top",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]]],[24180,24864,26848]]]]},{"k":"G510","v":[["upper",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27586]]]]},{"k":"G511","v":[["*",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[25563,30141]]],["Above",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30141]]],["higher",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25563]]]]},{"k":"G512","v":[["*",[2,2,[[55,1,1,0,1,[[1131,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[29932,30082]]],["unprofitable",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29932]]],["unprofitableness",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30082]]]]},{"k":"G513","v":[["axe",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23202,25034]]]]},{"k":"G514","v":[["*",[41,39,[[39,9,7,0,7,[[931,1,1,0,1],[938,7,5,1,6],[950,1,1,6,7]]],[41,8,8,7,15,[[975,1,1,7,8],[979,1,1,8,9],[982,1,1,9,10],[984,1,1,10,11],[987,2,2,11,13],[995,2,2,13,15]]],[42,1,1,15,16,[[997,1,1,15,16]]],[43,7,7,16,23,[[1030,2,2,16,18],[1040,1,1,18,19],[1042,2,2,19,21],[1043,2,2,21,23]]],[44,2,2,23,25,[[1046,1,1,23,24],[1053,1,1,24,25]]],[45,1,1,25,26,[[1077,1,1,25,26]]],[52,1,1,26,27,[[1116,1,1,26,27]]],[53,4,4,27,31,[[1119,1,1,27,28],[1122,1,1,28,29],[1123,1,1,29,30],[1124,1,1,30,31]]],[57,1,1,31,32,[[1143,1,1,31,32]]],[65,7,7,32,39,[[1169,1,1,32,33],[1170,1,1,33,34],[1171,4,4,34,38],[1182,1,1,38,39]]]],[23200,23427,23428,23430,23454,23455,23880,25033,25199,25370,25507,25607,25609,25950,25976,26071,27387,27408,27763,27807,27821,27843,27854,27962,28134,28780,29652,29711,29756,29781,29789,30210,30750,30779,30781,30783,30788,30791,30960]]],["+",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27408]]],["Worthy",[1,1,[[65,1,1,0,1,[[1171,1,1,0,1]]]],[30791]]],["meet",[4,4,[[39,1,1,0,1,[[931,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[52,1,1,3,4,[[1116,1,1,3,4]]]],[23200,27843,28780,29652]]],["reward",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25976]]],["they",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30210]]],["worthy",[33,31,[[39,8,6,0,6,[[938,7,5,0,5],[950,1,1,5,6]]],[41,7,7,6,13,[[975,1,1,6,7],[979,1,1,7,8],[982,1,1,8,9],[984,1,1,9,10],[987,2,2,10,12],[995,1,1,12,13]]],[42,1,1,13,14,[[997,1,1,13,14]]],[43,5,5,14,19,[[1030,1,1,14,15],[1040,1,1,15,16],[1042,2,2,16,18],[1043,1,1,18,19]]],[44,2,2,19,21,[[1046,1,1,19,20],[1053,1,1,20,21]]],[53,4,4,21,25,[[1119,1,1,21,22],[1122,1,1,22,23],[1123,1,1,23,24],[1124,1,1,24,25]]],[65,6,6,25,31,[[1169,1,1,25,26],[1170,1,1,26,27],[1171,3,3,27,30],[1182,1,1,30,31]]]],[23427,23428,23430,23454,23455,23880,25033,25199,25370,25507,25607,25609,25950,26071,27387,27763,27807,27821,27854,27962,28134,29711,29756,29781,29789,30750,30779,30781,30783,30788,30960]]]]},{"k":"G515","v":[["*",[7,7,[[41,1,1,0,1,[[979,1,1,0,1]]],[43,2,2,1,3,[[1032,1,1,1,2],[1045,1,1,2,3]]],[52,1,1,3,4,[[1116,1,1,3,4]]],[53,1,1,4,5,[[1123,1,1,4,5]]],[57,2,2,5,7,[[1135,1,1,5,6],[1142,1,1,6,7]]]],[25202,27480,27921,29660,29780,29998,30162]]],["+",[3,3,[[41,1,1,0,1,[[979,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]]],[25202,27480,29660]]],["desire",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27921]]],["worthy",[3,3,[[53,1,1,0,1,[[1123,1,1,0,1]]],[57,2,2,1,3,[[1135,1,1,1,2],[1142,1,1,2,3]]]],[29780,29998,30162]]]]},{"k":"G516","v":[["*",[6,6,[[44,1,1,0,1,[[1061,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[50,1,1,3,4,[[1107,1,1,3,4]]],[51,1,1,4,5,[[1112,1,1,4,5]]],[63,1,1,5,6,[[1165,1,1,5,6]]]],[28338,29273,29388,29475,29582,30664]]],["+",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30664]]],["becometh",[2,2,[[44,1,1,0,1,[[1061,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[28338,29388]]],["worthy",[3,3,[[48,1,1,0,1,[[1100,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]]],[29273,29475,29582]]]]},{"k":"G517","v":[["*",[5,5,[[44,1,1,0,1,[[1046,1,1,0,1]]],[50,2,2,1,3,[[1107,2,2,1,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]],[57,1,1,4,5,[[1143,1,1,4,5]]]],[27950,29480,29481,29713,30199]]],["invisible",[4,4,[[50,2,2,0,2,[[1107,2,2,0,2]]],[53,1,1,2,3,[[1119,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[29480,29481,29713,30199]]],["things",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27950]]]]},{"k":"G518","v":[["*",[44,44,[[39,9,9,0,9,[[930,1,1,0,1],[936,1,1,1,2],[939,1,1,2,3],[940,1,1,3,4],[942,1,1,4,5],[956,4,4,5,9]]],[40,3,3,9,12,[[962,1,1,9,10],[972,2,2,10,12]]],[41,11,11,12,23,[[979,2,2,12,14],[980,4,4,14,18],[981,1,1,18,19],[985,1,1,19,20],[986,1,1,20,21],[990,1,1,21,22],[996,1,1,22,23]]],[42,2,2,23,25,[[1000,1,1,23,24],[1016,1,1,24,25]]],[43,14,14,25,39,[[1021,1,1,25,26],[1022,2,2,26,28],[1028,1,1,28,29],[1029,2,2,29,31],[1032,1,1,31,32],[1033,1,1,32,33],[1039,1,1,33,34],[1040,3,3,34,37],[1043,1,1,37,38],[1045,1,1,38,39]]],[45,1,1,39,40,[[1075,1,1,39,40]]],[51,1,1,40,41,[[1111,1,1,40,41]]],[57,1,1,41,42,[[1134,1,1,41,42]]],[61,2,2,42,44,[[1159,2,2,42,44]]]],[23177,23378,23463,23507,23609,24203,24204,24205,24206,24437,24883,24886,25213,25217,25265,25279,25281,25292,25337,25519,25574,25725,26000,26207,26885,27045,27081,27084,27320,27351,27354,27469,27519,27730,27750,27751,27753,27843,27920,28703,29569,29989,30542,30543]]],["+",[3,3,[[39,3,3,0,3,[[930,1,1,0,1],[939,1,1,1,2],[956,1,1,2,3]]]],[23177,23463,24203]]],["declare",[2,2,[[57,1,1,0,1,[[1134,1,1,0,1]]],[61,1,1,1,2,[[1159,1,1,1,2]]]],[29989,30543]]],["declared",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25292]]],["report",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28703]]],["reported",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27045]]],["shew",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]],[51,1,1,2,3,[[1111,1,1,2,3]]],[61,1,1,3,4,[[1159,1,1,3,4]]]],[23507,27354,29569,30542]]],["shewed",[6,6,[[39,1,1,0,1,[[956,1,1,0,1]]],[41,2,2,1,3,[[979,1,1,1,2],[986,1,1,2,3]]],[43,3,3,3,6,[[1028,1,1,3,4],[1043,1,1,4,5],[1045,1,1,5,6]]]],[24206,25213,25574,27320,27843,27920]]],["tell",[6,6,[[39,2,2,0,2,[[956,2,2,0,2]]],[41,1,1,2,3,[[979,1,1,2,3]]],[43,3,3,3,6,[[1032,1,1,3,4],[1040,2,2,4,6]]]],[24204,24205,25217,27469,27751,27753]]],["told",[20,20,[[39,2,2,0,2,[[936,1,1,0,1],[942,1,1,1,2]]],[40,3,3,2,5,[[962,1,1,2,3],[972,2,2,3,5]]],[41,7,7,5,12,[[980,3,3,5,8],[981,1,1,8,9],[985,1,1,9,10],[990,1,1,10,11],[996,1,1,11,12]]],[42,2,2,12,14,[[1000,1,1,12,13],[1016,1,1,13,14]]],[43,6,6,14,20,[[1022,2,2,14,16],[1029,1,1,16,17],[1033,1,1,17,18],[1039,1,1,18,19],[1040,1,1,19,20]]]],[23378,23609,24437,24883,24886,25265,25279,25281,25337,25519,25725,26000,26207,26885,27081,27084,27351,27519,27730,27750]]]]},{"k":"G519","v":[["hanged",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24134]]]]},{"k":"G520","v":[["*",[16,16,[[39,5,5,0,5,[[935,2,2,0,2],[954,1,1,2,3],[955,2,2,3,5]]],[40,3,3,5,8,[[970,2,2,5,7],[971,1,1,7,8]]],[41,2,2,8,10,[[985,1,1,8,9],[995,1,1,9,10]]],[42,2,2,10,12,[[1014,1,1,10,11],[1015,1,1,11,12]]],[43,3,3,12,15,[[1029,1,1,12,13],[1040,1,1,13,14],[1041,1,1,14,15]]],[45,1,1,15,16,[[1073,1,1,15,16]]]],[23329,23330,24111,24131,24160,24798,24807,24842,25533,25961,26798,26841,27356,27751,27776,28636]]],["+",[6,6,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,3,3,1,4,[[970,2,2,1,3],[971,1,1,3,4]]],[41,1,1,4,5,[[995,1,1,4,5]]],[42,1,1,5,6,[[1014,1,1,5,6]]]],[24160,24798,24807,24842,25961,26798]]],["Bring",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27751]]],["away",[6,6,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[41,1,1,2,3,[[985,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[43,1,1,4,5,[[1041,1,1,4,5]]],[45,1,1,5,6,[[1073,1,1,5,6]]]],[24111,24131,25533,26841,27776,28636]]],["death",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27356]]],["leadeth",[2,2,[[39,2,2,0,2,[[935,2,2,0,2]]]],[23329,23330]]]]},{"k":"G521","v":[["unlearned",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29850]]]]},{"k":"G522","v":[["*",[3,3,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,1,1,2,3,[[977,1,1,2,3]]]],[23394,24280,25142]]],["away",[2,2,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]]],[24280,25142]]],["taken",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23394]]]]},{"k":"G523","v":[["*",[2,2,[[41,2,2,0,2,[[978,1,1,0,1],[984,1,1,1,2]]]],[25176,25479]]],["+",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25176]]],["required",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25479]]]]},{"k":"G524","v":[["feeling",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29291]]]]},{"k":"G525","v":[["*",[3,3,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]],[57,1,1,2,3,[[1134,1,1,2,3]]]],[25517,27597,29992]]],["deliver",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29992]]],["delivered",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25517]]],["departed",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27597]]]]},{"k":"G526","v":[["*",[3,3,[[48,2,2,0,2,[[1098,1,1,0,1],[1100,1,1,1,2]]],[50,1,1,2,3,[[1107,1,1,2,3]]]],[29241,29290,29486]]],["alienated",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[29290,29486]]],["aliens",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29241]]]]},{"k":"G527","v":[["tender",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23989,24745]]]]},{"k":"G528","v":[["*",[7,7,[[39,1,1,0,1,[[956,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[970,1,1,2,3]]],[41,2,2,3,5,[[986,1,1,3,4],[989,1,1,4,5]]],[42,1,1,5,6,[[1000,1,1,5,6]]],[43,1,1,6,7,[[1033,1,1,6,7]]]],[24204,24366,24767,25584,25663,26207,27499]]],["meet",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]]],[24767,25584]]],["met",[5,5,[[39,1,1,0,1,[[956,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[989,1,1,2,3]]],[42,1,1,3,4,[[1000,1,1,3,4]]],[43,1,1,4,5,[[1033,1,1,4,5]]]],[24204,24366,25663,26207,27499]]]]},{"k":"G529","v":[["*",[4,4,[[39,2,2,0,2,[[953,2,2,0,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]],[51,1,1,3,4,[[1114,1,1,3,4]]]],[24009,24014,27914,29620]]],["+",[3,3,[[39,2,2,0,2,[[953,2,2,0,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]]],[24009,24014,29620]]],["meet",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27914]]]]},{"k":"G530","v":[["*",[15,15,[[46,1,1,0,1,[[1088,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]],[57,8,8,3,11,[[1138,1,1,3,4],[1141,4,4,4,8],[1142,1,1,8,9],[1144,2,2,9,11]]],[59,2,2,11,13,[[1153,2,2,11,13]]],[64,2,2,13,15,[[1166,2,2,13,15]]]],[29014,29458,29588,30048,30112,30131,30132,30133,30135,30238,30239,30442,30444,30675,30677]]],["+",[3,3,[[49,1,1,0,1,[[1106,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]]],[29458,29588,30048]]],["more",[2,2,[[57,2,2,0,2,[[1144,2,2,0,2]]]],[30238,30239]]],["once",[10,10,[[46,1,1,0,1,[[1088,1,1,0,1]]],[57,5,5,1,6,[[1141,4,4,1,5],[1142,1,1,5,6]]],[59,2,2,6,8,[[1153,2,2,6,8]]],[64,2,2,8,10,[[1166,2,2,8,10]]]],[29014,30112,30131,30132,30133,30135,30442,30444,30675,30677]]]]},{"k":"G531","v":[["unchangeable",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30088]]]]},{"k":"G532","v":[["unprepared",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28960]]]]},{"k":"G533","v":[["*",[13,13,[[39,4,4,0,4,[[944,1,1,0,1],[954,3,3,1,4]]],[40,4,4,4,8,[[964,1,1,4,5],[970,3,3,5,8]]],[41,4,4,8,12,[[981,1,1,8,9],[984,1,1,9,10],[994,2,2,10,12]]],[42,1,1,12,13,[[1009,1,1,12,13]]]],[23696,24088,24089,24129,24534,24784,24785,24826,25324,25468,25898,25925,26668]]],["+",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24785]]],["denied",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[42,1,1,1,2,[[1009,1,1,1,2]]]],[25468,26668]]],["deny",[10,10,[[39,4,4,0,4,[[944,1,1,0,1],[954,3,3,1,4]]],[40,3,3,4,7,[[964,1,1,4,5],[970,2,2,5,7]]],[41,3,3,7,10,[[981,1,1,7,8],[994,2,2,8,10]]]],[23696,24088,24089,24129,24534,24784,24826,25324,25898,25925]]]]},{"k":"G534","v":[["henceforth",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30939]]]]},{"k":"G535","v":[["+",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25581]]]]},{"k":"G536","v":[["*",[8,8,[[44,3,3,0,3,[[1053,1,1,0,1],[1056,1,1,1,2],[1061,1,1,2,3]]],[45,3,3,3,6,[[1076,2,2,3,5],[1077,1,1,5,6]]],[58,1,1,6,7,[[1146,1,1,6,7]]],[65,1,1,7,8,[[1180,1,1,7,8]]]],[28139,28225,28341,28738,28741,28791,30284,30930]]],["firstfruit",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28225]]],["firstfruits",[7,7,[[44,2,2,0,2,[[1053,1,1,0,1],[1061,1,1,1,2]]],[45,3,3,2,5,[[1076,2,2,2,4],[1077,1,1,4,5]]],[58,1,1,5,6,[[1146,1,1,5,6]]],[65,1,1,6,7,[[1180,1,1,6,7]]]],[28139,28341,28738,28741,28791,30284,30930]]]]},{"k":"G537","v":[["*",[44,43,[[39,3,3,0,3,[[934,1,1,0,1],[952,1,1,1,2],[956,1,1,2,3]]],[40,4,4,3,7,[[961,1,1,3,4],[964,1,1,4,5],[967,1,1,5,6],[972,1,1,6,7]]],[41,20,19,7,26,[[974,1,1,7,8],[975,2,2,8,10],[976,1,1,10,11],[977,3,3,11,14],[979,1,1,14,15],[980,1,1,15,16],[981,1,1,16,17],[987,1,1,17,18],[989,2,2,18,20],[991,3,3,20,23],[993,3,2,23,25],[995,1,1,25,26]]],[43,15,15,26,41,[[1019,4,4,26,30],[1021,2,2,30,32],[1022,2,2,32,34],[1023,1,1,34,35],[1027,1,1,35,36],[1028,1,1,36,37],[1030,1,1,37,38],[1033,2,2,38,40],[1044,1,1,40,41]]],[48,1,1,41,42,[[1102,1,1,41,42]]],[58,1,1,42,43,[[1148,1,1,42,43]]]],[23314,23996,24206,24404,24525,24672,24888,25012,25041,25046,25069,25118,25133,25135,25211,25282,25316,25601,25678,25680,25738,25768,25779,25830,25838,25936,26950,26953,26963,26993,27053,27054,27071,27075,27116,27267,27317,27391,27486,27511,27888,29350,30321]]],["+",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,2,2,2,4,[[977,1,1,2,3],[987,1,1,3,4]]]],[23996,24404,25133,25601]]],["All",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25069]]],["all",[31,30,[[39,2,2,0,2,[[934,1,1,0,1],[956,1,1,1,2]]],[40,2,2,2,4,[[967,1,1,2,3],[972,1,1,3,4]]],[41,13,12,4,16,[[975,2,2,4,6],[977,2,2,6,8],[979,1,1,8,9],[981,1,1,9,10],[989,2,2,10,12],[991,2,2,12,14],[993,3,2,14,16]]],[43,12,12,16,28,[[1019,3,3,16,19],[1021,1,1,19,20],[1022,1,1,20,21],[1023,1,1,21,22],[1027,1,1,22,23],[1028,1,1,23,24],[1030,1,1,24,25],[1033,2,2,25,27],[1044,1,1,27,28]]],[48,1,1,28,29,[[1102,1,1,28,29]]],[58,1,1,29,30,[[1148,1,1,29,30]]]],[23314,24206,24672,24888,25041,25046,25118,25135,25211,25316,25678,25680,25738,25779,25830,25838,26950,26953,26963,27053,27071,27116,27267,27317,27391,27486,27511,27888,29350,30321]]],["man",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24525]]],["one",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27075]]],["things",[3,3,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,2,2,1,3,[[1019,1,1,1,2],[1021,1,1,2,3]]]],[25012,26993,27054]]],["whole",[3,3,[[41,3,3,0,3,[[980,1,1,0,1],[991,1,1,1,2],[995,1,1,2,3]]]],[25282,25768,25936]]]]},{"k":"G538","v":[["*",[4,3,[[48,1,1,0,1,[[1101,1,1,0,1]]],[53,2,1,1,2,[[1120,2,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[29310,29730,30292]]],["deceive",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29310]]],["deceived",[2,1,[[53,2,1,0,1,[[1120,2,1,0,1]]]],[29730]]],["deceiveth",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30292]]]]},{"k":"G539","v":[["*",[7,7,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]],[50,1,1,3,4,[[1108,1,1,3,4]]],[52,1,1,4,5,[[1117,1,1,4,5]]],[57,1,1,5,6,[[1135,1,1,5,6]]],[60,1,1,6,7,[[1157,1,1,6,7]]]],[23561,24342,29294,29502,29671,30008,30513]]],["deceit",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29502]]],["deceitful",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29294]]],["deceitfulness",[3,3,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[57,1,1,2,3,[[1135,1,1,2,3]]]],[23561,24342,30008]]],["deceivableness",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29671]]],["deceivings",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30513]]]]},{"k":"G540","v":[["father",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30067]]]]},{"k":"G541","v":[["brightness",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29966]]]]},{"k":"G542","v":[["+",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29414]]]]},{"k":"G543","v":[["*",[7,7,[[44,2,2,0,2,[[1056,2,2,0,2]]],[48,2,2,2,4,[[1098,1,1,2,3],[1101,1,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]],[57,2,2,5,7,[[1136,2,2,5,7]]]],[28239,28241,29231,29310,29523,30020,30025]]],["disobedience",[3,3,[[48,2,2,0,2,[[1098,1,1,0,1],[1101,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]]],[29231,29310,29523]]],["unbelief",[4,4,[[44,2,2,0,2,[[1056,2,2,0,2]]],[57,2,2,2,4,[[1136,2,2,2,4]]]],[28239,28241,30020,30025]]]]},{"k":"G544","v":[["*",[16,16,[[42,1,1,0,1,[[999,1,1,0,1]]],[43,3,3,1,4,[[1031,1,1,1,2],[1034,1,1,2,3],[1036,1,1,3,4]]],[44,5,5,4,9,[[1047,1,1,4,5],[1055,1,1,5,6],[1056,2,2,6,8],[1060,1,1,8,9]]],[57,2,2,9,11,[[1135,1,1,9,10],[1143,1,1,10,11]]],[59,5,5,11,16,[[1152,2,2,11,13],[1153,2,2,13,15],[1154,1,1,15,16]]]],[26156,27416,27528,27594,27970,28209,28239,28240,28334,30013,30203,30406,30407,30425,30444,30463]]],["+",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27970]]],["believe",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28334]]],["believed",[2,2,[[44,2,2,0,2,[[1056,2,2,0,2]]]],[28239,28240]]],["believeth",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26156]]],["disobedient",[4,4,[[44,1,1,0,1,[[1055,1,1,0,1]]],[59,3,3,1,4,[[1152,2,2,1,3],[1153,1,1,3,4]]]],[28209,30406,30407,30444]]],["not",[6,6,[[43,2,2,0,2,[[1034,1,1,0,1],[1036,1,1,1,2]]],[57,2,2,2,4,[[1135,1,1,2,3],[1143,1,1,3,4]]],[59,2,2,4,6,[[1153,1,1,4,5],[1154,1,1,5,6]]]],[27528,27594,30013,30203,30425,30463]]],["unbelieving",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27416]]]]},{"k":"G545","v":[["disobedient",[6,6,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[54,1,1,3,4,[[1127,1,1,3,4]]],[55,2,2,4,6,[[1129,1,1,4,5],[1131,1,1,5,6]]]],[24910,27842,27960,29855,29908,29926]]]]},{"k":"G546","v":[["*",[2,2,[[43,1,1,0,1,[[1021,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[27039,30422]]],["+",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27039]]],["threatened",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30422]]]]},{"k":"G547","v":[["*",[4,4,[[43,3,3,0,3,[[1021,2,2,0,2],[1026,1,1,2,3]]],[48,1,1,3,4,[[1102,1,1,3,4]]]],[27039,27051,27217,29346]]],["+",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27039]]],["threatening",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29346]]],["threatenings",[2,2,[[43,2,2,0,2,[[1021,1,1,0,1],[1026,1,1,1,2]]]],[27051,27217]]]]},{"k":"G548","v":[["absent",[7,7,[[45,1,1,0,1,[[1066,1,1,0,1]]],[46,4,4,1,5,[[1087,2,2,1,3],[1090,2,2,3,5]]],[49,1,1,5,6,[[1103,1,1,5,6]]],[50,1,1,6,7,[[1108,1,1,6,7]]]],[28457,28972,28982,29045,29053,29388,29499]]]]},{"k":"G549","v":[["went",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27533]]]]},{"k":"G550","v":[["renounced",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28861]]]]},{"k":"G551","v":[["+",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30279]]]]},{"k":"G552","v":[["unskilful",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30043]]]]},{"k":"G553","v":[["for",[7,7,[[44,3,3,0,3,[[1053,3,3,0,3]]],[45,1,1,3,4,[[1062,1,1,3,4]]],[47,1,1,4,5,[[1095,1,1,4,5]]],[49,1,1,5,6,[[1105,1,1,5,6]]],[57,1,1,6,7,[[1141,1,1,6,7]]]],[28135,28139,28141,28370,29167,29441,30133]]]]},{"k":"G554","v":[["*",[2,2,[[50,2,2,0,2,[[1108,1,1,0,1],[1109,1,1,1,2]]]],[29509,29526]]],["off",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29526]]],["spoiled",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29509]]]]},{"k":"G555","v":[["off",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29505]]]]},{"k":"G556","v":[["drave",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27573]]]]},{"k":"G557","v":[["+",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27612]]]]},{"k":"G558","v":[["freeman",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28509]]]]},{"k":"G559","v":[["Apelles",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28346]]]]},{"k":"G560","v":[["+",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25181]]]]},{"k":"G561","v":[["*",[6,6,[[39,3,3,0,3,[[949,1,1,0,1],[955,2,2,1,3]]],[43,2,2,3,5,[[1020,1,1,3,4],[1034,1,1,4,5]]],[44,1,1,5,6,[[1048,1,1,5,6]]]],[23828,24153,24190,27012,27530,28009]]],["against",[2,2,[[39,2,2,0,2,[[949,1,1,0,1],[955,1,1,1,2]]]],[23828,24190]]],["before",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]]],[24153,28009]]],["contrary",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27530]]],["presence",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27012]]]]},{"k":"G562","v":[["endless",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29700]]]]},{"k":"G563","v":[["distraction",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28522]]]]},{"k":"G564","v":[["uncircumcised",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27167]]]]},{"k":"G565","v":[["*",[120,118,[[39,35,35,0,35,[[930,1,1,0,1],[932,1,1,1,2],[936,6,6,2,8],[937,1,1,8,9],[938,1,1,9,10],[941,3,3,10,13],[942,3,3,13,16],[944,2,2,16,18],[946,1,1,18,19],[947,1,1,19,20],[948,1,1,20,21],[949,2,2,21,23],[950,2,2,23,25],[953,4,4,25,29],[954,3,3,29,32],[955,2,2,32,34],[956,1,1,34,35]]],[40,23,23,35,58,[[957,3,3,35,38],[959,1,1,38,39],[961,3,3,39,42],[962,5,5,42,47],[963,2,2,47,49],[964,1,1,49,50],[965,1,1,50,51],[966,1,1,51,52],[967,1,1,52,53],[968,1,1,53,54],[970,3,3,54,57],[972,1,1,57,58]]],[41,23,23,58,81,[[973,2,2,58,60],[974,1,1,60,61],[977,3,3,61,64],[979,1,1,64,65],[980,4,4,65,69],[981,4,4,69,73],[982,1,1,73,74],[989,1,1,74,75],[991,1,1,75,76],[994,2,2,76,78],[995,1,1,78,79],[996,2,2,79,81]]],[42,22,21,81,102,[[1000,5,5,81,86],[1001,1,1,86,87],[1002,4,4,87,91],[1005,2,2,91,93],[1006,1,1,93,94],[1007,3,3,94,97],[1008,2,2,97,99],[1012,2,1,99,100],[1014,1,1,100,101],[1016,1,1,101,102]]],[43,5,5,102,107,[[1021,1,1,102,103],[1022,1,1,103,104],[1026,1,1,104,105],[1027,1,1,105,106],[1045,1,1,106,107]]],[44,1,1,107,108,[[1060,1,1,107,108]]],[47,1,1,108,109,[[1091,1,1,108,109]]],[58,1,1,109,110,[[1146,1,1,109,110]]],[64,1,1,110,111,[[1166,1,1,110,111]]],[65,8,7,111,118,[[1175,1,1,111,112],[1176,1,1,112,113],[1177,1,1,113,114],[1178,1,1,114,115],[1182,1,1,115,116],[1184,2,1,116,117],[1187,1,1,117,118]]]],[23191,23233,23363,23364,23366,23376,23377,23378,23386,23422,23564,23567,23585,23612,23613,23622,23676,23693,23757,23784,23796,23855,23856,23877,23894,24018,24026,24033,24054,24090,24096,24098,24134,24189,24205,24235,24250,24257,24301,24381,24384,24388,24434,24439,24443,24444,24453,24487,24493,24513,24581,24610,24644,24685,24764,24766,24793,24886,24916,24931,24988,25120,25121,25132,25219,25276,25279,25282,25284,25313,25358,25360,25361,25393,25674,25763,25868,25877,25968,26003,26015,26159,26164,26184,26199,26203,26225,26258,26279,26323,26325,26447,26451,26521,26551,26569,26577,26599,26616,26733,26791,26877,27037,27085,27233,27266,27928,28331,29074,30290,30679,30852,30870,30886,30908,30956,31007,31057]]],["+",[2,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[42,1,1,1,2,[[1012,1,1,1,2]]]],[25674,26733]]],["Go",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23422]]],["aside",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27037]]],["away",[14,14,[[39,5,5,0,5,[[936,1,1,0,1],[947,1,1,1,2],[953,1,1,2,3],[954,2,2,3,5]]],[40,2,2,5,7,[[966,1,1,5,6],[970,1,1,6,7]]],[41,1,1,7,8,[[974,1,1,7,8]]],[42,5,5,8,13,[[1000,1,1,8,9],[1002,1,1,9,10],[1006,1,1,10,11],[1012,1,1,11,12],[1016,1,1,12,13]]],[65,1,1,13,14,[[1187,1,1,13,14]]]],[23376,23784,24054,24096,24098,24610,24793,24988,26164,26279,26521,26733,26877,31057]]],["came",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24301]]],["come",[3,3,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]],[44,1,1,2,3,[[1060,1,1,2,3]]]],[24493,25968,28331]]],["depart",[4,4,[[39,2,2,0,2,[[936,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[961,1,1,2,3]]],[41,1,1,3,4,[[980,1,1,3,4]]]],[23363,23613,24381,25282]]],["departed",[23,22,[[39,3,3,0,3,[[937,1,1,0,1],[944,1,1,1,2],[955,1,1,2,3]]],[40,6,6,3,9,[[957,2,2,3,5],[961,1,1,5,6],[962,2,2,6,8],[964,1,1,8,9]]],[41,7,7,9,16,[[973,2,2,9,11],[977,2,2,11,13],[979,1,1,13,14],[982,1,1,14,15],[996,1,1,15,16]]],[42,3,3,16,19,[[1000,1,1,16,17],[1001,1,1,17,18],[1008,1,1,18,19]]],[43,2,2,19,21,[[1027,1,1,19,20],[1045,1,1,20,21]]],[65,2,1,21,22,[[1184,2,1,21,22]]]],[23386,23676,24189,24250,24257,24384,24439,24453,24513,24916,24931,25120,25132,25219,25393,26003,26159,26225,26616,27266,27928,31007]]],["go",[16,16,[[39,7,7,0,7,[[930,1,1,0,1],[936,1,1,1,2],[941,1,1,2,3],[942,1,1,3,4],[944,1,1,4,5],[954,1,1,5,6],[956,1,1,6,7]]],[40,4,4,7,11,[[962,2,2,7,9],[965,1,1,9,10],[970,1,1,10,11]]],[41,4,4,11,15,[[977,1,1,11,12],[981,3,3,12,15]]],[42,1,1,15,16,[[1002,1,1,15,16]]]],[23191,23366,23567,23612,23693,24090,24205,24443,24444,24581,24766,25121,25313,25360,25361,26325]]],["goest",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[23364,25358]]],["going",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30679]]],["gone",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26599]]],["out",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25276]]],["past",[2,2,[[65,2,2,0,2,[[1175,1,1,0,1],[1177,1,1,1,2]]]],[30852,30886]]],["way",[13,13,[[39,3,3,0,3,[[941,1,1,0,1],[948,1,1,1,2],[950,1,1,2,3]]],[40,2,2,3,5,[[967,1,1,3,4],[968,1,1,4,5]]],[41,3,3,5,8,[[980,1,1,5,6],[991,1,1,6,7],[994,1,1,7,8]]],[42,3,3,8,11,[[1000,1,1,8,9],[1005,1,1,9,10],[1007,1,1,10,11]]],[43,1,1,11,12,[[1026,1,1,11,12]]],[58,1,1,12,13,[[1146,1,1,12,13]]]],[23564,23796,23894,24644,24685,25284,25763,25868,26184,26447,26551,27233,30290]]],["ways",[3,3,[[39,2,2,0,2,[[936,1,1,0,1],[950,1,1,1,2]]],[42,1,1,2,3,[[1007,1,1,2,3]]]],[23378,23877,26569]]],["went",[32,32,[[39,11,11,0,11,[[932,1,1,0,1],[936,1,1,1,2],[941,1,1,2,3],[942,1,1,3,4],[946,1,1,4,5],[949,2,2,5,7],[953,3,3,7,10],[955,1,1,10,11]]],[40,6,6,11,17,[[957,1,1,11,12],[961,1,1,12,13],[962,1,1,13,14],[963,1,1,14,15],[970,1,1,15,16],[972,1,1,16,17]]],[41,3,3,17,20,[[980,1,1,17,18],[994,1,1,18,19],[996,1,1,19,20]]],[42,7,7,20,27,[[1000,2,2,20,22],[1002,2,2,22,24],[1005,1,1,24,25],[1007,1,1,25,26],[1014,1,1,26,27]]],[43,1,1,27,28,[[1022,1,1,27,28]]],[47,1,1,28,29,[[1091,1,1,28,29]]],[65,3,3,29,32,[[1176,1,1,29,30],[1178,1,1,30,31],[1182,1,1,31,32]]]],[23233,23377,23585,23622,23757,23855,23856,24018,24026,24033,24134,24235,24388,24434,24487,24764,24886,25279,25877,26015,26199,26203,26258,26323,26451,26577,26791,27085,29074,30870,30908,30956]]]]},{"k":"G566","v":[["enough",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24795]]]]},{"k":"G567","v":[["*",[6,6,[[43,2,2,0,2,[[1032,2,2,0,2]]],[51,2,2,2,4,[[1114,1,1,2,3],[1115,1,1,3,4]]],[53,1,1,4,5,[[1122,1,1,4,5]]],[59,1,1,5,6,[[1152,1,1,5,6]]]],[27462,27471,29606,29643,29750,30410]]],["Abstain",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29643]]],["abstain",[5,5,[[43,2,2,0,2,[[1032,2,2,0,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]],[53,1,1,3,4,[[1122,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[27462,27471,29606,29750,30410]]]]},{"k":"G568","v":[["*",[11,11,[[39,4,4,0,4,[[934,3,3,0,3],[943,1,1,3,4]]],[40,1,1,4,5,[[963,1,1,4,5]]],[41,4,4,5,9,[[978,1,1,5,6],[979,1,1,6,7],[987,1,1,7,8],[996,1,1,8,9]]],[49,1,1,9,10,[[1106,1,1,9,10]]],[56,1,1,10,11,[[1132,1,1,10,11]]]],[23284,23287,23298,23641,24469,25170,25201,25608,26004,29460,29953]]],["+",[2,2,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]]],[24469,25608]]],["have",[4,4,[[39,3,3,0,3,[[934,3,3,0,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]]],[23284,23287,23298,29460]]],["is",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23641]]],["receive",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29953]]],["received",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25170]]],["was",[2,2,[[41,2,2,0,2,[[979,1,1,0,1],[996,1,1,1,2]]]],[25201,26004]]]]},{"k":"G569","v":[["*",[7,7,[[40,2,2,0,2,[[972,2,2,0,2]]],[41,2,2,2,4,[[996,2,2,2,4]]],[43,1,1,4,5,[[1045,1,1,4,5]]],[44,1,1,5,6,[[1048,1,1,5,6]]],[54,1,1,6,7,[[1126,1,1,6,7]]]],[24884,24889,26002,26032,27923,27994,29840]]],["+",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26002]]],["believe",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[27994]]],["not",[5,5,[[40,2,2,0,2,[[972,2,2,0,2]]],[41,1,1,2,3,[[996,1,1,2,3]]],[43,1,1,3,4,[[1045,1,1,3,4]]],[54,1,1,4,5,[[1126,1,1,4,5]]]],[24884,24889,26032,27923,29840]]]]},{"k":"G570","v":[["*",[12,12,[[39,2,2,0,2,[[941,1,1,0,1],[945,1,1,1,2]]],[40,3,3,2,5,[[962,1,1,2,3],[965,1,1,3,4],[972,1,1,4,5]]],[44,4,4,5,9,[[1048,1,1,5,6],[1049,1,1,6,7],[1056,2,2,7,9]]],[53,1,1,9,10,[[1119,1,1,9,10]]],[57,2,2,10,12,[[1135,2,2,10,12]]]],[23597,23720,24413,24562,24887,27994,28042,28229,28232,29709,30007,30014]]],["+",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[27994]]],["unbelief",[11,11,[[39,2,2,0,2,[[941,1,1,0,1],[945,1,1,1,2]]],[40,3,3,2,5,[[962,1,1,2,3],[965,1,1,3,4],[972,1,1,4,5]]],[44,3,3,5,8,[[1049,1,1,5,6],[1056,2,2,6,8]]],[53,1,1,8,9,[[1119,1,1,8,9]]],[57,2,2,9,11,[[1135,2,2,9,11]]]],[23597,23720,24413,24562,24887,28042,28229,28232,29709,30007,30014]]]]},{"k":"G571","v":[["*",[23,21,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,2,2,2,4,[[981,1,1,2,3],[984,1,1,3,4]]],[42,1,1,4,5,[[1016,1,1,4,5]]],[43,1,1,5,6,[[1043,1,1,5,6]]],[45,11,9,6,15,[[1067,1,1,6,7],[1068,5,4,7,11],[1071,1,1,11,12],[1075,4,3,12,15]]],[46,3,3,15,18,[[1081,1,1,15,16],[1083,2,2,16,18]]],[53,1,1,18,19,[[1123,1,1,18,19]]],[55,1,1,19,20,[[1129,1,1,19,20]]],[65,1,1,20,21,[[1187,1,1,20,21]]]],[23717,24557,25342,25505,26894,27831,28473,28499,28500,28501,28502,28594,28700,28701,28702,28863,28912,28913,29771,29907,31061]]],["faithless",[4,4,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[42,1,1,3,4,[[1016,1,1,3,4]]]],[23717,24557,25342,26894]]],["incredible",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27831]]],["infidel",[2,2,[[46,1,1,0,1,[[1083,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[28913,29771]]],["not",[7,6,[[45,6,5,0,5,[[1068,2,2,0,2],[1071,1,1,2,3],[1075,3,2,3,5]]],[46,1,1,5,6,[[1081,1,1,5,6]]]],[28499,28500,28594,28700,28702,28863]]],["unbelievers",[4,4,[[41,1,1,0,1,[[984,1,1,0,1]]],[45,2,2,1,3,[[1067,1,1,1,2],[1075,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]]],[25505,28473,28701,28912]]],["unbelieving",[5,4,[[45,3,2,0,2,[[1068,3,2,0,2]]],[55,1,1,2,3,[[1129,1,1,2,3]]],[65,1,1,3,4,[[1187,1,1,3,4]]]],[28501,28502,29907,31061]]]]},{"k":"G572","v":[["*",[8,8,[[44,1,1,0,1,[[1057,1,1,0,1]]],[46,5,5,1,6,[[1078,1,1,1,2],[1085,1,1,2,3],[1086,2,2,3,5],[1088,1,1,5,6]]],[48,1,1,6,7,[[1102,1,1,6,7]]],[50,1,1,7,8,[[1109,1,1,7,8]]]],[28253,28812,28934,28967,28969,28992,29342,29539]]],["bountifulness",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28967]]],["liberal",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28969]]],["liberality",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28934]]],["simplicity",[3,3,[[44,1,1,0,1,[[1057,1,1,0,1]]],[46,2,2,1,3,[[1078,1,1,1,2],[1088,1,1,2,3]]]],[28253,28812,28992]]],["singleness",[2,2,[[48,1,1,0,1,[[1102,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29342,29539]]]]},{"k":"G573","v":[["single",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23304,25439]]]]},{"k":"G574","v":[["liberally",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30271]]]]},{"k":"G575","v":[["*",[649,595,[[39,118,105,0,105,[[929,5,3,0,3],[930,2,2,3,5],[931,4,4,5,9],[932,2,2,9,11],[933,4,4,11,15],[934,1,1,15,16],[935,7,5,16,21],[936,4,4,21,25],[937,3,3,25,28],[938,2,2,28,30],[939,4,4,30,34],[940,2,2,34,36],[941,4,4,36,40],[942,4,4,40,44],[943,6,5,44,49],[944,6,4,49,53],[945,7,4,53,57],[946,3,3,57,60],[947,3,3,60,63],[948,2,2,63,65],[949,3,3,65,68],[950,1,1,68,69],[951,4,4,69,73],[952,6,6,73,79],[953,7,5,79,84],[954,7,7,84,91],[955,11,10,91,101],[956,4,4,101,105]]],[40,50,48,105,153,[[957,3,3,105,108],[958,1,1,108,109],[959,5,3,109,112],[960,1,1,112,113],[961,5,5,113,118],[962,2,2,118,120],[963,7,7,120,127],[964,3,3,127,130],[965,1,1,130,131],[966,2,2,131,133],[967,1,1,133,134],[968,3,3,134,137],[969,3,3,137,140],[970,4,4,140,144],[971,7,7,144,151],[972,2,2,151,153]]],[41,120,110,153,263,[[973,5,5,153,158],[974,4,4,158,162],[975,1,1,162,163],[976,5,5,163,168],[977,7,7,168,175],[978,4,3,175,178],[979,4,4,178,182],[980,11,10,182,192],[981,9,8,192,200],[982,3,3,200,203],[983,6,4,203,207],[984,8,8,207,215],[985,6,5,215,220],[986,1,1,220,221],[987,1,1,221,222],[988,7,6,222,228],[989,3,2,228,230],[990,2,2,230,232],[991,6,5,232,237],[992,2,2,237,239],[993,3,3,239,242],[994,8,7,242,249],[995,4,4,249,253],[996,10,10,253,263]]],[42,41,39,263,302,[[997,3,3,263,266],[999,1,1,266,267],[1001,2,2,267,269],[1003,4,4,269,273],[1004,4,4,273,277],[1006,3,2,277,279],[1007,4,4,279,283],[1008,2,2,283,285],[1009,2,2,285,287],[1010,2,2,287,289],[1011,2,2,289,291],[1012,3,3,291,294],[1014,2,2,294,296],[1015,2,2,296,298],[1017,5,4,298,302]]],[43,111,103,302,405,[[1018,6,5,302,307],[1019,5,5,307,312],[1020,4,4,312,316],[1022,4,4,316,320],[1023,1,1,320,321],[1024,1,1,321,322],[1025,5,5,322,327],[1026,4,4,327,331],[1027,6,6,331,337],[1028,3,3,337,340],[1029,5,5,340,345],[1030,9,8,345,353],[1031,2,2,353,355],[1032,10,9,355,364],[1033,3,3,364,367],[1034,3,3,367,370],[1035,5,5,370,375],[1036,5,3,375,378],[1037,7,5,378,383],[1038,5,5,383,388],[1039,4,4,388,392],[1040,3,3,392,395],[1041,2,2,395,397],[1042,2,2,397,399],[1043,2,2,399,401],[1044,2,2,401,403],[1045,3,2,403,405]]],[44,25,25,405,430,[[1046,3,3,405,408],[1050,2,2,408,410],[1051,3,3,410,413],[1052,3,3,413,416],[1053,4,4,416,420],[1054,1,1,420,421],[1056,2,2,421,423],[1058,1,1,423,424],[1060,5,5,424,429],[1061,1,1,429,430]]],[45,9,9,430,439,[[1062,2,2,430,432],[1065,1,1,432,433],[1067,1,1,433,434],[1068,2,2,434,436],[1071,1,1,436,437],[1072,1,1,437,438],[1075,1,1,438,439]]],[46,18,17,439,456,[[1078,3,3,439,442],[1079,2,2,442,444],[1080,3,2,444,446],[1082,2,2,446,448],[1084,2,2,448,450],[1085,1,1,450,451],[1086,1,1,451,452],[1087,1,1,452,453],[1088,2,2,453,455],[1089,1,1,455,456]]],[47,7,7,456,463,[[1091,3,3,456,459],[1092,2,2,459,461],[1093,1,1,461,462],[1094,1,1,462,463]]],[48,4,4,463,467,[[1097,1,1,463,464],[1099,1,1,464,465],[1100,1,1,465,466],[1102,1,1,466,467]]],[49,4,4,467,471,[[1103,3,3,467,470],[1106,1,1,470,471]]],[50,9,8,471,479,[[1107,7,6,471,477],[1108,1,1,477,478],[1109,1,1,478,479]]],[51,11,10,479,489,[[1111,4,4,479,483],[1112,3,2,483,485],[1113,1,1,485,486],[1114,2,2,486,488],[1115,1,1,488,489]]],[52,9,8,489,497,[[1116,4,3,489,492],[1117,2,2,492,494],[1118,3,3,494,497]]],[53,4,4,497,501,[[1119,1,1,497,498],[1121,1,1,498,499],[1124,2,2,499,501]]],[54,7,7,501,508,[[1125,2,2,501,503],[1126,2,2,503,505],[1127,1,1,505,506],[1128,2,2,506,508]]],[55,2,2,508,510,[[1129,1,1,508,509],[1130,1,1,509,510]]],[56,1,1,510,511,[[1132,1,1,510,511]]],[57,23,22,511,533,[[1135,1,1,511,512],[1136,4,3,512,515],[1137,2,2,515,517],[1138,2,2,517,519],[1139,4,4,519,523],[1140,1,1,523,524],[1141,2,2,524,526],[1142,1,1,526,527],[1143,3,3,527,530],[1144,2,2,530,532],[1145,1,1,532,533]]],[58,6,6,533,539,[[1146,3,3,533,536],[1149,1,1,536,537],[1150,2,2,537,539]]],[59,4,3,539,542,[[1151,1,1,539,540],[1153,1,1,540,541],[1154,2,1,541,542]]],[60,2,1,542,543,[[1158,2,1,542,543]]],[61,18,16,543,559,[[1159,4,4,543,547],[1160,9,7,547,554],[1161,3,3,554,557],[1162,1,1,557,558],[1163,1,1,558,559]]],[62,2,2,559,561,[[1164,2,2,559,561]]],[63,1,1,561,562,[[1165,1,1,561,562]]],[64,2,2,562,564,[[1166,2,2,562,564]]],[65,41,31,564,595,[[1167,4,2,564,566],[1168,1,1,566,567],[1169,1,1,567,568],[1172,4,3,568,571],[1173,2,2,571,573],[1175,1,1,573,574],[1178,2,2,574,576],[1179,1,1,576,577],[1180,3,3,577,580],[1182,4,3,580,583],[1183,1,1,583,584],[1184,6,4,584,588],[1186,2,2,588,590],[1187,7,4,590,594],[1188,2,1,594,595]]]],[23161,23165,23168,23170,23185,23196,23199,23205,23208,23226,23234,23252,23263,23264,23276,23295,23320,23331,23332,23336,23339,23346,23356,23375,23379,23394,23395,23401,23434,23445,23471,23478,23484,23488,23527,23532,23540,23551,23574,23583,23599,23610,23623,23626,23634,23641,23655,23660,23661,23678,23683,23684,23693,23709,23718,23725,23726,23735,23736,23762,23763,23766,23770,23800,23821,23834,23837,23869,23918,23951,23952,23953,23957,23958,23978,23984,23986,23988,23989,24036,24037,24040,24042,24049,24070,24083,24093,24096,24101,24112,24118,24138,24150,24153,24169,24171,24174,24180,24184,24186,24193,24197,24199,24202,24203,24224,24225,24257,24280,24295,24296,24310,24348,24370,24381,24393,24398,24399,24440,24450,24464,24467,24469,24478,24480,24491,24496,24511,24515,24531,24547,24594,24634,24652,24675,24707,24711,24736,24744,24745,24789,24790,24806,24808,24847,24856,24858,24864,24866,24869,24871,24881,24882,24895,24931,24941,24945,24963,24977,24988,25009,25010,25032,25064,25076,25098,25104,25105,25110,25115,25117,25120,25122,25142,25143,25159,25163,25176,25201,25216,25230,25240,25247,25248,25257,25263,25274,25278,25280,25282,25283,25291,25306,25323,25334,25338,25339,25340,25346,25355,25384,25393,25405,25409,25429,25455,25456,25460,25463,25474,25479,25511,25513,25516,25517,25533,25534,25543,25545,25547,25571,25604,25623,25636,25638,25641,25643,25650,25676,25680,25691,25722,25734,25755,25757,25770,25773,25789,25825,25837,25852,25856,25882,25905,25906,25907,25909,25933,25935,25940,25961,25984,25986,25993,26000,26004,26012,26018,26022,26032,26033,26038,26042,26088,26089,26095,26122,26229,26240,26345,26346,26356,26370,26390,26409,26423,26425,26486,26499,26524,26541,26574,26576,26601,26616,26633,26649,26675,26678,26703,26726,26739,26748,26756,26813,26819,26852,26863,26900,26904,26906,26908,26927,26932,26934,26935,26945,26954,26966,26967,26971,26989,27015,27017,27020,27022,27061,27062,27097,27100,27110,27161,27186,27198,27202,27209,27211,27219,27224,27229,27234,27276,27280,27282,27289,27296,27297,27318,27326,27334,27338,27347,27351,27356,27357,27370,27375,27376,27385,27391,27393,27401,27412,27429,27433,27443,27447,27449,27460,27461,27462,27475,27480,27481,27494,27501,27516,27525,27536,27550,27559,27562,27563,27573,27578,27594,27597,27598,27632,27635,27643,27644,27652,27665,27671,27674,27680,27691,27715,27726,27733,27734,27755,27757,27768,27780,27787,27797,27803,27827,27841,27876,27899,27920,27922,27937,27948,27950,28056,28061,28075,28086,28090,28093,28094,28097,28118,28137,28151,28155,28158,28234,28235,28267,28318,28322,28326,28327,28334,28353,28366,28393,28438,28486,28497,28514,28581,28623,28714,28802,28814,28816,28827,28829,28846,28859,28883,28893,28917,28929,28942,28958,28978,28992,28998,29030,29058,29060,29063,29087,29093,29104,29155,29208,29260,29303,29360,29363,29366,29389,29457,29467,29471,29472,29474,29488,29491,29514,29541,29561,29568,29569,29570,29576,29587,29596,29606,29619,29643,29651,29656,29658,29663,29674,29680,29681,29684,29698,29738,29793,29798,29811,29812,29846,29848,29868,29874,29888,29896,29922,29941,30007,30017,30018,30024,30037,30038,30045,30051,30065,30066,30077,30090,30103,30119,30131,30155,30184,30187,30206,30227,30237,30265,30279,30283,30293,30344,30358,30373,30386,30434,30463,30526,30541,30545,30547,30549,30557,30563,30564,30570,30574,30577,30578,30587,30590,30596,30624,30645,30650,30651,30665,30686,30695,30701,30702,30734,30758,30797,30803,30809,30812,30827,30846,30897,30905,30916,30929,30930,30946,30966,30971,30972,30983,31003,31007,31008,31010,31047,31049,31055,31057,31063,31066,31099]]],["+",[40,40,[[39,9,9,0,9,[[938,1,1,0,1],[951,2,2,1,3],[953,2,2,3,5],[954,3,3,5,8],[955,1,1,8,9]]],[40,3,3,9,12,[[961,1,1,9,10],[970,1,1,10,11],[971,1,1,11,12]]],[41,7,7,12,19,[[973,2,2,12,14],[985,1,1,14,15],[988,1,1,15,16],[994,1,1,16,17],[996,2,2,17,19]]],[42,2,2,19,21,[[997,1,1,19,20],[1009,1,1,20,21]]],[43,5,5,21,26,[[1020,1,1,21,22],[1032,2,2,22,24],[1037,1,1,24,25],[1041,1,1,25,26]]],[44,3,3,26,29,[[1060,2,2,26,28],[1061,1,1,28,29]]],[46,4,4,29,33,[[1079,1,1,29,30],[1082,1,1,30,31],[1085,1,1,31,32],[1086,1,1,32,33]]],[54,1,1,33,34,[[1128,1,1,33,34]]],[57,1,1,34,35,[[1137,1,1,34,35]]],[60,1,1,35,36,[[1158,1,1,35,36]]],[65,4,4,36,40,[[1182,1,1,36,37],[1184,3,3,37,40]]]],[23445,23951,23957,24037,24040,24083,24112,24118,24184,24370,24808,24866,24895,24963,25543,25643,25933,26012,26022,26095,26649,27017,27449,27481,27644,27780,28318,28327,28353,28829,28893,28942,28958,29874,30037,30526,30972,31003,31008,31010]]],["From",[3,3,[[39,2,2,0,2,[[932,1,1,0,1],[944,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]]],[23226,23693,25456]]],["Of",[2,2,[[39,1,1,0,1,[[945,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]]],[23726,27385]]],["On",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31066]]],["ago",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27289]]],["at",[9,8,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,2,2,1,3,[[996,2,2,1,3]]],[42,1,1,3,4,[[1004,1,1,3,4]]],[43,3,3,4,7,[[1025,1,1,4,5],[1040,1,1,5,6],[1043,1,1,6,7]]],[59,2,1,7,8,[[1154,2,1,7,8]]]],[23766,26018,26038,26390,27211,27757,27827,30463]]],["before",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[61,1,1,1,2,[[1160,1,1,1,2]]]],[27161,30578]]],["by",[9,9,[[39,2,2,0,2,[[935,2,2,0,2]]],[43,2,2,2,4,[[1026,1,1,2,3],[1029,1,1,3,4]]],[46,2,2,4,6,[[1080,1,1,4,5],[1084,1,1,5,6]]],[57,1,1,6,7,[[1137,1,1,6,7]]],[64,1,1,7,8,[[1166,1,1,7,8]]],[65,1,1,8,9,[[1184,1,1,8,9]]]],[23332,23336,27229,27357,28859,28929,30038,30695,31008]]],["for",[10,10,[[39,3,3,0,3,[[941,1,1,0,1],[942,1,1,1,2],[956,1,1,2,3]]],[41,4,4,3,7,[[991,1,1,3,4],[993,1,1,4,5],[994,1,1,5,6],[996,1,1,6,7]]],[42,1,1,7,8,[[1017,1,1,7,8]]],[43,2,2,8,10,[[1029,1,1,8,9],[1039,1,1,9,10]]]],[23583,23623,24199,25734,25852,25909,26032,26904,27351,27715]]],["from",[377,358,[[39,65,63,0,63,[[929,5,3,0,3],[930,2,2,3,5],[931,2,2,5,7],[932,1,1,7,8],[933,3,3,8,11],[934,1,1,11,12],[935,1,1,12,13],[936,3,3,13,16],[937,3,3,16,19],[939,2,2,19,21],[940,1,1,21,22],[941,2,2,22,24],[942,1,1,24,25],[943,3,3,25,28],[945,2,2,28,30],[946,3,3,30,33],[947,2,2,33,35],[948,2,2,35,37],[949,2,2,37,39],[950,1,1,39,40],[951,2,2,40,42],[952,3,3,42,45],[953,5,5,45,50],[954,4,4,50,54],[955,6,6,54,60],[956,3,3,60,63]]],[40,29,27,63,90,[[957,2,2,63,65],[958,1,1,65,66],[959,5,3,66,69],[960,1,1,69,70],[961,1,1,70,71],[963,5,5,71,76],[964,1,1,76,77],[965,1,1,77,78],[966,1,1,78,79],[967,1,1,79,80],[968,1,1,80,81],[969,2,2,81,83],[970,3,3,83,86],[971,3,3,86,89],[972,1,1,89,90]]],[41,59,57,90,147,[[973,3,3,90,93],[974,4,4,93,97],[975,1,1,97,98],[976,3,3,98,101],[977,5,5,101,106],[979,1,1,106,107],[980,2,2,107,109],[981,6,6,109,115],[982,3,3,115,118],[983,2,2,118,120],[984,2,2,120,122],[985,5,4,122,126],[988,4,4,126,130],[989,1,1,130,131],[990,1,1,131,132],[991,5,4,132,136],[993,1,1,136,137],[994,4,4,137,141],[995,2,2,141,143],[996,4,4,143,147]]],[42,14,14,147,161,[[999,1,1,147,148],[1004,1,1,148,149],[1006,2,2,149,151],[1007,1,1,151,152],[1008,1,1,152,153],[1009,1,1,153,154],[1010,1,1,154,155],[1011,1,1,155,156],[1012,2,2,156,158],[1014,1,1,158,159],[1015,1,1,159,160],[1017,1,1,160,161]]],[43,69,65,161,226,[[1018,5,4,161,165],[1019,1,1,165,166],[1020,3,3,166,169],[1022,2,2,169,171],[1025,3,3,171,174],[1026,3,3,174,177],[1027,4,4,177,181],[1028,2,2,181,183],[1029,2,2,183,185],[1030,7,6,185,191],[1031,2,2,191,193],[1032,7,6,193,199],[1033,1,1,199,200],[1034,1,1,200,201],[1035,5,5,201,206],[1036,3,2,206,208],[1037,5,5,208,213],[1038,3,3,213,216],[1039,3,3,216,219],[1040,1,1,219,220],[1041,1,1,220,221],[1042,2,2,221,223],[1043,1,1,223,224],[1044,1,1,224,225],[1045,1,1,225,226]]],[44,19,19,226,245,[[1046,3,3,226,229],[1050,2,2,229,231],[1051,3,3,231,234],[1052,3,3,234,237],[1053,4,4,237,241],[1054,1,1,241,242],[1056,1,1,242,243],[1060,2,2,243,245]]],[45,5,5,245,250,[[1062,1,1,245,246],[1068,2,2,246,248],[1071,1,1,248,249],[1075,1,1,249,250]]],[46,8,8,250,258,[[1078,1,1,250,251],[1079,1,1,251,252],[1080,1,1,252,253],[1082,1,1,253,254],[1084,1,1,254,255],[1088,2,2,255,257],[1089,1,1,257,258]]],[47,4,4,258,262,[[1091,2,2,258,260],[1092,1,1,260,261],[1094,1,1,261,262]]],[48,4,4,262,266,[[1097,1,1,262,263],[1099,1,1,263,264],[1100,1,1,264,265],[1102,1,1,265,266]]],[49,3,3,266,269,[[1103,2,2,266,268],[1106,1,1,268,269]]],[50,5,4,269,273,[[1107,4,3,269,272],[1108,1,1,272,273]]],[51,9,9,273,282,[[1111,4,4,273,277],[1112,1,1,277,278],[1113,1,1,278,279],[1114,2,2,279,281],[1115,1,1,281,282]]],[52,8,7,282,289,[[1116,4,3,282,285],[1117,1,1,285,286],[1118,3,3,286,289]]],[53,3,3,289,292,[[1119,1,1,289,290],[1124,2,2,290,292]]],[54,6,6,292,298,[[1125,2,2,292,294],[1126,2,2,294,296],[1127,1,1,296,297],[1128,1,1,297,298]]],[55,2,2,298,300,[[1129,1,1,298,299],[1130,1,1,299,300]]],[56,1,1,300,301,[[1132,1,1,300,301]]],[57,14,13,301,314,[[1135,1,1,301,302],[1136,4,3,302,305],[1138,2,2,305,307],[1139,2,2,307,309],[1140,1,1,309,310],[1141,1,1,310,311],[1142,1,1,311,312],[1143,1,1,312,313],[1144,1,1,313,314]]],[58,4,4,314,318,[[1146,2,2,314,316],[1149,1,1,316,317],[1150,1,1,317,318]]],[59,2,2,318,320,[[1151,1,1,318,319],[1153,1,1,319,320]]],[60,1,1,320,321,[[1158,1,1,320,321]]],[61,15,13,321,334,[[1159,3,3,321,324],[1160,7,5,324,329],[1161,3,3,329,332],[1162,1,1,332,333],[1163,1,1,333,334]]],[62,2,2,334,336,[[1164,2,2,334,336]]],[64,1,1,336,337,[[1166,1,1,336,337]]],[65,25,21,337,358,[[1167,4,2,337,339],[1169,1,1,339,340],[1172,3,2,340,342],[1173,2,2,342,344],[1175,1,1,344,345],[1178,1,1,345,346],[1179,1,1,346,347],[1180,2,2,347,349],[1182,1,1,349,350],[1183,1,1,350,351],[1184,2,1,351,352],[1186,2,2,352,354],[1187,3,3,354,357],[1188,1,1,357,358]]]],[23161,23165,23168,23170,23185,23199,23205,23234,23252,23263,23264,23295,23339,23346,23356,23375,23394,23395,23401,23471,23484,23527,23551,23574,23599,23641,23660,23661,23709,23718,23735,23736,23762,23763,23770,23800,23821,23834,23869,23918,23952,23953,23958,23986,23988,24036,24037,24040,24042,24049,24070,24093,24096,24101,24169,24171,24174,24180,24184,24193,24197,24202,24203,24224,24257,24280,24295,24296,24310,24348,24399,24464,24467,24469,24480,24496,24511,24547,24594,24652,24707,24736,24744,24789,24790,24806,24856,24858,24864,24881,24931,24941,24945,24977,24988,25009,25010,25032,25064,25076,25105,25110,25115,25117,25120,25142,25201,25263,25282,25306,25334,25338,25340,25346,25355,25384,25393,25405,25409,25455,25511,25517,25533,25534,25545,25547,25623,25638,25641,25650,25680,25722,25755,25757,25770,25773,25837,25905,25906,25907,25909,25940,25984,25993,26000,26004,26042,26122,26425,26486,26499,26576,26616,26633,26675,26726,26748,26756,26813,26852,26906,26927,26934,26935,26945,26989,27015,27020,27022,27097,27100,27186,27202,27209,27219,27224,27234,27276,27280,27282,27296,27318,27334,27347,27356,27370,27375,27376,27391,27393,27401,27429,27433,27443,27460,27461,27462,27475,27480,27494,27550,27559,27562,27563,27573,27578,27594,27597,27632,27635,27643,27644,27652,27665,27671,27674,27726,27733,27734,27755,27787,27797,27803,27841,27876,27922,27937,27948,27950,28056,28061,28075,28086,28090,28093,28094,28097,28118,28137,28151,28155,28158,28235,28322,28334,28366,28497,28514,28581,28714,28802,28827,28859,28883,28917,28992,28998,29030,29060,29063,29093,29155,29208,29260,29303,29360,29363,29366,29457,29467,29488,29491,29514,29561,29568,29569,29570,29587,29596,29606,29619,29643,29651,29656,29658,29674,29680,29681,29684,29698,29793,29798,29811,29812,29846,29848,29868,29888,29896,29922,29941,30007,30017,30018,30024,30045,30051,30065,30090,30103,30119,30155,30187,30237,30283,30293,30344,30373,30386,30434,30526,30541,30547,30549,30557,30563,30564,30570,30574,30587,30590,30596,30624,30645,30650,30651,30686,30701,30702,30758,30797,30809,30812,30827,30846,30905,30916,30929,30930,30971,30983,31007,31047,31049,31055,31057,31063,31099]]],["in",[3,3,[[44,1,1,0,1,[[1056,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]]],[28234,28814,29663]]],["of",[173,166,[[39,34,30,0,30,[[931,2,2,0,2],[933,1,1,2,3],[935,4,3,3,6],[936,1,1,6,7],[938,1,1,7,8],[939,2,2,8,10],[940,1,1,10,11],[941,1,1,11,12],[942,2,2,12,14],[943,3,3,14,17],[944,5,4,17,21],[945,4,2,21,23],[949,1,1,23,24],[952,2,2,24,26],[955,4,4,26,30]]],[40,18,18,30,48,[[957,1,1,30,31],[961,3,3,31,34],[962,2,2,34,36],[963,2,2,36,38],[964,2,2,38,40],[966,1,1,40,41],[968,2,2,41,43],[969,1,1,43,44],[971,3,3,44,47],[972,1,1,47,48]]],[41,42,40,48,88,[[976,2,2,48,50],[977,2,2,50,52],[978,4,3,52,55],[979,2,2,55,57],[980,9,8,57,65],[981,3,3,65,68],[983,3,3,68,71],[984,6,6,71,77],[989,2,2,77,79],[990,1,1,79,80],[992,2,2,80,82],[993,1,1,82,83],[994,2,2,83,85],[995,2,2,85,87],[996,1,1,87,88]]],[42,21,21,88,109,[[997,2,2,88,90],[1001,2,2,90,92],[1003,4,4,92,96],[1004,2,2,96,98],[1006,1,1,98,99],[1007,2,2,99,101],[1008,1,1,101,102],[1010,1,1,102,103],[1011,1,1,103,104],[1012,1,1,104,105],[1014,1,1,105,106],[1015,1,1,106,107],[1017,2,2,107,109]]],[43,24,24,109,133,[[1018,1,1,109,110],[1019,4,4,110,114],[1022,2,2,114,116],[1023,1,1,116,117],[1025,1,1,117,118],[1027,1,1,118,119],[1029,1,1,119,120],[1030,1,1,120,121],[1032,1,1,121,122],[1033,1,1,122,123],[1034,2,2,123,125],[1036,2,2,125,127],[1038,2,2,127,129],[1040,1,1,129,130],[1044,1,1,130,131],[1045,2,2,131,133]]],[44,1,1,133,134,[[1058,1,1,133,134]]],[45,4,4,134,138,[[1062,1,1,134,135],[1065,1,1,135,136],[1067,1,1,136,137],[1072,1,1,137,138]]],[46,3,3,138,141,[[1078,1,1,138,139],[1080,1,1,139,140],[1087,1,1,140,141]]],[47,3,3,141,144,[[1091,1,1,141,142],[1092,1,1,142,143],[1093,1,1,143,144]]],[49,1,1,144,145,[[1103,1,1,144,145]]],[50,2,2,145,147,[[1107,1,1,145,146],[1109,1,1,146,147]]],[51,2,1,147,148,[[1112,2,1,147,148]]],[53,1,1,148,149,[[1121,1,1,148,149]]],[57,6,6,149,155,[[1139,2,2,149,151],[1143,2,2,151,153],[1144,1,1,153,154],[1145,1,1,154,155]]],[58,2,2,155,157,[[1146,1,1,155,156],[1150,1,1,156,157]]],[61,2,2,157,159,[[1159,1,1,157,158],[1160,1,1,158,159]]],[63,1,1,159,160,[[1165,1,1,159,160]]],[65,6,6,160,166,[[1168,1,1,160,161],[1178,1,1,161,162],[1180,1,1,162,163],[1182,2,2,163,165],[1188,1,1,165,166]]]],[23196,23208,23276,23320,23331,23332,23379,23434,23478,23488,23532,23540,23610,23626,23634,23655,23660,23678,23683,23684,23693,23718,23725,23837,23984,23989,24138,24150,24153,24186,24225,24381,24393,24398,24440,24450,24478,24491,24515,24531,24634,24675,24711,24745,24847,24869,24871,24882,25098,25104,25122,25143,25159,25163,25176,25216,25230,25247,25248,25257,25274,25278,25280,25283,25291,25306,25323,25339,25429,25455,25456,25460,25463,25474,25479,25513,25516,25676,25680,25691,25789,25825,25856,25882,25935,25961,25986,26033,26088,26089,26229,26240,26345,26346,26356,26370,26409,26423,26499,26524,26574,26601,26678,26703,26739,26819,26863,26900,26908,26932,26954,26966,26967,26971,27061,27062,27110,27198,27297,27338,27412,27447,27501,27525,27536,27597,27598,27680,27691,27768,27899,27920,27922,28267,28393,28438,28486,28623,28816,28846,28978,29058,29087,29104,29389,29472,29541,29576,29738,30066,30077,30184,30206,30227,30265,30279,30358,30545,30577,30665,30734,30897,30946,30966,30971,31099]]],["off",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26541]]],["on",[4,2,[[65,4,2,0,2,[[1172,1,1,0,1],[1187,3,1,1,2]]]],[30803,31066]]],["since",[6,6,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,2,2,1,3,[[979,1,1,1,2],[988,1,1,2,3]]],[50,2,2,3,5,[[1107,2,2,3,5]]],[57,1,1,5,6,[[1141,1,1,5,6]]]],[23978,25240,25636,29471,29474,30131]]],["their",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27516]]],["these",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28326]]],["two",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26906]]],["upon",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27326]]],["with",[4,4,[[41,3,3,0,3,[[986,1,1,0,1],[987,1,1,1,2],[988,1,1,2,3]]],[43,1,1,3,4,[[1037,1,1,3,4]]]],[25571,25604,25641,27635]]]]},{"k":"G576","v":[["*",[5,4,[[41,3,2,0,2,[[977,2,1,0,1],[993,1,1,1,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]],[49,1,1,3,4,[[1103,1,1,3,4]]]],[25109,25839,26907,29380]]],["come",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26907]]],["gone",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25109]]],["of",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25109]]],["turn",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[25839,29380]]]]},{"k":"G577","v":[["*",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[24638,30168]]],["+",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30168]]],["away",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24638]]]]},{"k":"G578","v":[["respect",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30198]]]]},{"k":"G579","v":[["refused",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29751]]]]},{"k":"G580","v":[["*",[2,2,[[43,1,1,0,1,[[1044,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]]],[27877,28224]]],["away",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28224]]],["loss",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27877]]]]},{"k":"G581","v":[["dead",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30423]]]]},{"k":"G582","v":[["taxing",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[24975,27096]]]]},{"k":"G583","v":[["*",[4,4,[[41,3,3,0,3,[[974,3,3,0,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]]],[24974,24976,24978,30235]]],["taxed",[3,3,[[41,3,3,0,3,[[974,3,3,0,3]]]],[24974,24976,24978]]],["written",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30235]]]]},{"k":"G584","v":[["*",[4,4,[[43,2,2,0,2,[[1019,1,1,0,1],[1042,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[52,1,1,3,4,[[1117,1,1,3,4]]]],[26971,27803,28442,29665]]],["approved",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26971]]],["forth",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28442]]],["prove",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27803]]],["shewing",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29665]]]]},{"k":"G585","v":[["demonstration",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28398]]]]},{"k":"G586","v":[["*",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[990,1,1,2,3]]],[57,1,1,3,4,[[1139,1,1,3,4]]]],[23941,25447,25700,30069]]],["tithe",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23941,25447]]],["tithes",[2,2,[[41,1,1,0,1,[[990,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[25700,30069]]]]},{"k":"G587","v":[["acceptable",[2,2,[[53,2,2,0,2,[[1120,1,1,0,1],[1123,1,1,1,2]]]],[29719,29767]]]]},{"k":"G588","v":[["*",[6,6,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,5,5,1,6,[[1019,1,1,1,2],[1032,1,1,2,3],[1035,1,1,3,4],[1041,1,1,4,5],[1045,1,1,5,6]]]],[25285,26990,27446,27584,27772,27929]]],["+",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26990]]],["accept",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27772]]],["receive",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27584]]],["received",[3,3,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,2,2,1,3,[[1032,1,1,1,2],[1045,1,1,2,3]]]],[25285,27446,27929]]]]},{"k":"G589","v":[["*",[6,6,[[39,3,3,0,3,[[949,1,1,0,1],[953,2,2,1,3]]],[40,1,1,3,4,[[968,1,1,3,4]]],[41,2,2,4,6,[[987,1,1,4,5],[992,1,1,5,6]]]],[23859,24022,24023,24674,25601,25788]]],["country",[4,4,[[39,2,2,0,2,[[949,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]]],[23859,24022,24674,25788]]],["journey",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]]],[24023,25601]]]]},{"k":"G590","v":[["journey",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24751]]]]},{"k":"G591","v":[["*",[48,46,[[39,18,17,0,17,[[933,2,2,0,2],[934,3,3,2,5],[940,1,1,5,6],[944,1,1,6,7],[946,7,6,7,13],[948,1,1,13,14],[949,1,1,14,15],[950,1,1,15,16],[955,1,1,16,17]]],[40,1,1,17,18,[[968,1,1,17,18]]],[41,8,8,18,26,[[976,1,1,18,19],[979,1,1,19,20],[981,1,1,20,21],[982,1,1,21,22],[984,1,1,22,23],[988,1,1,23,24],[991,1,1,24,25],[992,1,1,25,26]]],[43,4,4,26,30,[[1021,1,1,26,27],[1022,1,1,27,28],[1024,1,1,28,29],[1036,1,1,29,30]]],[44,3,3,30,33,[[1047,1,1,30,31],[1057,1,1,31,32],[1058,1,1,32,33]]],[45,1,1,33,34,[[1068,1,1,33,34]]],[51,1,1,34,35,[[1115,1,1,34,35]]],[53,1,1,35,36,[[1123,1,1,35,36]]],[54,2,2,36,38,[[1128,2,2,36,38]]],[57,3,3,38,41,[[1144,2,2,38,40],[1145,1,1,40,41]]],[59,2,2,41,43,[[1153,1,1,41,42],[1154,1,1,42,43]]],[65,4,3,43,46,[[1184,2,1,43,44],[1188,2,2,44,46]]]],[23260,23267,23286,23288,23300,23525,23699,23752,23753,23755,23756,23757,23761,23800,23867,23893,24187,24690,25083,25237,25343,25398,25518,25622,25739,25804,27055,27067,27125,27625,27968,28262,28273,28490,29636,29767,29878,29884,30223,30228,30258,30433,30451,30999,31082,31092]]],["+",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[25343,29767]]],["Pay",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23755]]],["Recompense",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28262]]],["Render",[4,4,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[44,1,1,3,4,[[1058,1,1,3,4]]]],[23893,24690,25804,28273]]],["Reward",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30999]]],["again",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25083]]],["delivered",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24187]]],["gave",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27055]]],["give",[8,8,[[39,2,2,0,2,[[940,1,1,0,1],[948,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[43,1,1,3,4,[[1036,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]],[57,1,1,5,6,[[1145,1,1,5,6]]],[59,1,1,6,7,[[1154,1,1,6,7]]],[65,1,1,7,8,[[1188,1,1,7,8]]]],[23525,23800,25622,27625,29878,30258,30451,31092]]],["made",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23752]]],["paid",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23260,25518]]],["pay",[6,6,[[39,5,5,0,5,[[946,5,5,0,5]]],[41,1,1,5,6,[[979,1,1,5,6]]]],[23752,23753,23756,23757,23761,25237]]],["perform",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23267]]],["render",[4,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]],[45,1,1,2,3,[[1068,1,1,2,3]]],[51,1,1,3,4,[[1115,1,1,3,4]]]],[23867,27968,28490,29636]]],["rendering",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30433]]],["repay",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25398]]],["restore",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25739]]],["reward",[5,5,[[39,4,4,0,4,[[934,3,3,0,3],[944,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]]],[23286,23288,23300,23699,29884]]],["rewarded",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30999]]],["sold",[3,3,[[43,2,2,0,2,[[1022,1,1,0,1],[1024,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[27067,27125,30228]]],["yielded",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31082]]],["yieldeth",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30223]]]]},{"k":"G592","v":[["separate",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30691]]]]},{"k":"G593","v":[["*",[9,9,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,2,2,1,3,[[964,1,1,1,2],[968,1,1,2,3]]],[41,3,3,3,6,[[981,1,1,3,4],[989,1,1,4,5],[992,1,1,5,6]]],[57,1,1,6,7,[[1144,1,1,6,7]]],[59,2,2,7,9,[[1152,2,2,7,9]]]],[23868,24531,24683,25323,25676,25796,30229,30403,30406]]],["disallowed",[2,2,[[59,2,2,0,2,[[1152,2,2,0,2]]]],[30403,30406]]],["rejected",[7,7,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,2,2,1,3,[[964,1,1,1,2],[968,1,1,2,3]]],[41,3,3,3,6,[[981,1,1,3,4],[989,1,1,4,5],[992,1,1,5,6]]],[57,1,1,6,7,[[1144,1,1,6,7]]]],[23868,24531,24683,25323,25676,25796,30229]]]]},{"k":"G594","v":[["acceptation",[2,2,[[53,2,2,0,2,[[1119,1,1,0,1],[1122,1,1,1,2]]]],[29711,29756]]]]},{"k":"G595","v":[["*",[2,2,[[59,1,1,0,1,[[1153,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[30445,30493]]],["away",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30445]]],["off",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30493]]]]},{"k":"G596","v":[["*",[6,6,[[39,3,3,0,3,[[931,1,1,0,1],[934,1,1,1,2],[941,1,1,2,3]]],[41,3,3,3,6,[[975,1,1,3,4],[984,2,2,4,6]]]],[23204,23308,23569,25042,25477,25483]]],["barn",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23569,25483]]],["barns",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23308,25477]]],["garner",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23204,25042]]]]},{"k":"G597","v":[["store",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29807]]]]},{"k":"G598","v":[["press",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25290]]]]},{"k":"G599","v":[["*",[111,99,[[39,5,5,0,5,[[936,1,1,0,1],[937,1,1,1,2],[950,2,2,2,4],[954,1,1,4,5]]],[40,8,8,5,13,[[961,2,2,5,7],[965,1,1,7,8],[968,4,4,8,12],[971,1,1,12,13]]],[41,12,10,13,23,[[980,3,3,13,16],[988,2,1,16,17],[992,7,6,17,23]]],[42,26,22,23,45,[[1000,2,2,23,25],[1002,3,3,25,28],[1004,6,4,28,32],[1007,8,8,32,40],[1008,3,2,40,42],[1014,1,1,42,43],[1015,1,1,43,44],[1017,2,1,44,45]]],[43,4,4,45,49,[[1024,1,1,45,46],[1026,1,1,46,47],[1038,1,1,47,48],[1042,1,1,48,49]]],[44,23,19,49,68,[[1050,5,4,49,53],[1051,6,5,53,58],[1052,4,4,58,62],[1053,2,2,62,64],[1059,6,4,64,68]]],[45,7,7,68,75,[[1069,1,1,68,69],[1070,1,1,69,70],[1076,5,5,70,75]]],[46,5,3,75,78,[[1082,4,2,75,77],[1083,1,1,77,78]]],[47,2,2,78,80,[[1092,2,2,78,80]]],[49,1,1,80,81,[[1103,1,1,80,81]]],[50,2,2,81,83,[[1108,1,1,81,82],[1109,1,1,82,83]]],[51,2,2,83,85,[[1114,1,1,83,84],[1115,1,1,84,85]]],[57,7,7,85,92,[[1139,1,1,85,86],[1141,1,1,86,87],[1142,1,1,87,88],[1143,4,4,88,92]]],[64,1,1,92,93,[[1166,1,1,92,93]]],[65,6,6,93,99,[[1169,1,1,93,94],[1174,2,2,94,96],[1175,1,1,96,97],[1180,1,1,97,98],[1182,1,1,98,99]]]],[23377,23403,23896,23899,24089,24399,24403,24564,24692,24693,24694,24695,24870,25287,25297,25298,25642,25807,25808,25809,25810,25811,25815,26203,26205,26306,26307,26315,26402,26405,26433,26434,26537,26539,26548,26549,26555,26560,26573,26574,26604,26613,26817,26832,26921,27120,27253,27677,27807,28053,28054,28055,28062,28070,28075,28076,28077,28078,28093,28094,28097,28100,28129,28150,28287,28288,28289,28295,28538,28555,28721,28740,28749,28750,28754,28891,28892,28907,29100,29102,29382,29514,29520,29617,29631,30072,30132,30161,30176,30185,30193,30209,30684,30748,30836,30838,30846,30939,30957]]],["+",[7,7,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[971,1,1,2,3]]],[41,1,1,3,4,[[980,1,1,3,4]]],[42,2,2,4,6,[[1000,1,1,4,5],[1007,1,1,5,6]]],[46,1,1,6,7,[[1082,1,1,6,7]]]],[23403,24403,24870,25297,26203,26555,28891]]],["dead",[24,23,[[40,2,2,0,2,[[961,1,1,0,1],[965,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[42,7,6,3,9,[[1002,2,2,3,5],[1004,3,2,5,7],[1007,2,2,7,9]]],[43,1,1,9,10,[[1024,1,1,9,10]]],[44,7,7,10,17,[[1050,1,1,10,11],[1051,3,3,11,14],[1052,3,3,14,17]]],[47,2,2,17,19,[[1092,2,2,17,19]]],[50,2,2,19,21,[[1108,1,1,19,20],[1109,1,1,20,21]]],[57,1,1,21,22,[[1143,1,1,21,22]]],[64,1,1,22,23,[[1166,1,1,22,23]]]],[24399,24564,25298,26306,26315,26433,26434,26537,26548,27120,28062,28070,28075,28076,28093,28094,28097,29100,29102,29514,29520,30176,30684]]],["die",[41,34,[[39,2,2,0,2,[[950,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,3,2,3,5,[[992,3,2,3,5]]],[42,16,13,5,18,[[1000,1,1,5,6],[1002,1,1,6,7],[1004,3,2,7,9],[1007,4,4,9,13],[1008,3,2,13,15],[1014,1,1,15,16],[1015,1,1,16,17],[1017,2,1,17,18]]],[43,2,2,18,20,[[1038,1,1,18,19],[1042,1,1,19,20]]],[44,6,3,20,23,[[1050,2,1,20,21],[1053,1,1,21,22],[1059,3,1,22,23]]],[45,5,5,23,28,[[1070,1,1,23,24],[1076,4,4,24,28]]],[49,1,1,28,29,[[1103,1,1,28,29]]],[57,2,2,29,31,[[1139,1,1,29,30],[1141,1,1,30,31]]],[65,3,3,31,34,[[1169,1,1,31,32],[1175,1,1,32,33],[1180,1,1,33,34]]]],[23896,24089,24692,25807,25815,26205,26307,26402,26405,26539,26549,26573,26574,26604,26613,26817,26832,26921,27677,27807,28054,28129,28288,28555,28740,28749,28750,28754,29382,30072,30132,30748,30846,30939]]],["died",[31,28,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,2,2,1,3,[[968,2,2,1,3]]],[41,6,5,3,8,[[988,2,1,3,4],[992,4,4,4,8]]],[42,1,1,8,9,[[1007,1,1,8,9]]],[43,1,1,9,10,[[1026,1,1,9,10]]],[44,8,7,10,17,[[1050,2,2,10,12],[1051,2,1,12,13],[1052,1,1,13,14],[1053,1,1,14,15],[1059,2,2,15,17]]],[45,2,2,17,19,[[1069,1,1,17,18],[1076,1,1,18,19]]],[46,3,2,19,21,[[1082,3,2,19,21]]],[51,2,2,21,23,[[1114,1,1,21,22],[1115,1,1,22,23]]],[57,2,2,23,25,[[1142,1,1,23,24],[1143,1,1,24,25]]],[65,3,3,25,28,[[1174,2,2,25,27],[1182,1,1,27,28]]]],[23899,24694,24695,25642,25808,25809,25810,25811,26560,27253,28053,28055,28078,28100,28150,28289,28295,28538,28721,28891,28892,29617,29631,30161,30185,30836,30838,30957]]],["dieth",[2,2,[[44,2,2,0,2,[[1051,1,1,0,1],[1059,1,1,1,2]]]],[28077,28287]]],["dying",[4,4,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[46,1,1,2,3,[[1083,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[24693,25287,28907,30193]]],["perished",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23377]]],["slain",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30209]]]]},{"k":"G600","v":[["*",[8,8,[[39,2,2,0,2,[[940,1,1,0,1],[945,1,1,1,2]]],[40,3,3,2,5,[[959,1,1,2,3],[964,1,1,3,4],[965,1,1,4,5]]],[41,1,1,5,6,[[978,1,1,5,6]]],[43,1,1,6,7,[[1018,1,1,6,7]]],[57,1,1,7,8,[[1145,1,1,7,8]]]],[23502,23711,24293,24525,24550,25156,26929,30260]]],["again",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26929]]],["restore",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23711]]],["restored",[5,5,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,2,2,1,3,[[959,1,1,1,2],[964,1,1,2,3]]],[41,1,1,3,4,[[978,1,1,3,4]]],[57,1,1,4,5,[[1145,1,1,4,5]]]],[23502,24293,24525,25156,30260]]],["restoreth",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24550]]]]},{"k":"G601","v":[["*",[26,26,[[39,4,4,0,4,[[938,1,1,0,1],[939,2,2,1,3],[944,1,1,3,4]]],[41,5,5,4,9,[[974,1,1,4,5],[982,2,2,5,7],[984,1,1,7,8],[989,1,1,8,9]]],[42,1,1,9,10,[[1008,1,1,9,10]]],[44,3,3,10,13,[[1046,2,2,10,12],[1053,1,1,12,13]]],[45,3,3,13,16,[[1063,1,1,13,14],[1064,1,1,14,15],[1075,1,1,15,16]]],[47,2,2,16,18,[[1091,1,1,16,17],[1093,1,1,17,18]]],[48,1,1,18,19,[[1099,1,1,18,19]]],[49,1,1,19,20,[[1105,1,1,19,20]]],[52,3,3,20,23,[[1117,3,3,20,23]]],[59,3,3,23,26,[[1151,2,2,23,25],[1155,1,1,25,26]]]],[23443,23484,23486,23689,25008,25384,25385,25461,25681,26618,27947,27948,28134,28404,28423,28708,29073,29125,29256,29436,29664,29667,29669,30379,30386,30466]]],["+",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25008]]],["reveal",[4,4,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[47,1,1,2,3,[[1091,1,1,2,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]]],[23486,25385,29073,29436]]],["revealed",[21,21,[[39,3,3,0,3,[[938,1,1,0,1],[939,1,1,1,2],[944,1,1,2,3]]],[41,3,3,3,6,[[982,1,1,3,4],[984,1,1,4,5],[989,1,1,5,6]]],[42,1,1,6,7,[[1008,1,1,6,7]]],[44,3,3,7,10,[[1046,2,2,7,9],[1053,1,1,9,10]]],[45,3,3,10,13,[[1063,1,1,10,11],[1064,1,1,11,12],[1075,1,1,12,13]]],[47,1,1,13,14,[[1093,1,1,13,14]]],[48,1,1,14,15,[[1099,1,1,14,15]]],[52,3,3,15,18,[[1117,3,3,15,18]]],[59,3,3,18,21,[[1151,2,2,18,20],[1155,1,1,20,21]]]],[23443,23484,23689,25384,25461,25681,26618,27947,27948,28134,28404,28423,28708,29125,29256,29664,29667,29669,30379,30386,30466]]]]},{"k":"G602","v":[["*",[18,18,[[41,1,1,0,1,[[974,1,1,0,1]]],[44,3,3,1,4,[[1047,1,1,1,2],[1053,1,1,2,3],[1061,1,1,3,4]]],[45,3,3,4,7,[[1062,1,1,4,5],[1075,2,2,5,7]]],[46,2,2,7,9,[[1089,2,2,7,9]]],[47,2,2,9,11,[[1091,1,1,9,10],[1092,1,1,10,11]]],[48,2,2,11,13,[[1097,1,1,11,12],[1099,1,1,12,13]]],[52,1,1,13,14,[[1116,1,1,13,14]]],[59,3,3,14,17,[[1151,2,2,14,16],[1154,1,1,16,17]]],[65,1,1,17,18,[[1167,1,1,17,18]]]],[25005,27967,28135,28361,28370,28684,28704,29023,29029,29069,29083,29223,29254,29656,30381,30387,30459,30698]]],["Revelation",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30698]]],["appearing",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30381]]],["coming",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28370]]],["lighten",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25005]]],["manifestation",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28135]]],["revealed",[2,2,[[52,1,1,0,1,[[1116,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[29656,30459]]],["revelation",[9,9,[[44,2,2,0,2,[[1047,1,1,0,1],[1061,1,1,1,2]]],[45,2,2,2,4,[[1075,2,2,2,4]]],[47,2,2,4,6,[[1091,1,1,4,5],[1092,1,1,5,6]]],[48,2,2,6,8,[[1097,1,1,6,7],[1099,1,1,7,8]]],[59,1,1,8,9,[[1151,1,1,8,9]]]],[27967,28361,28684,28704,29069,29083,29223,29254,30387]]],["revelations",[2,2,[[46,2,2,0,2,[[1089,2,2,0,2]]]],[29023,29029]]]]},{"k":"G603","v":[["expectation",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[28135,29381]]]]},{"k":"G604","v":[["*",[3,3,[[48,1,1,0,1,[[1098,1,1,0,1]]],[50,2,2,1,3,[[1107,2,2,1,3]]]],[29245,29485,29486]]],["reconcile",[2,2,[[48,1,1,0,1,[[1098,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[29245,29485]]],["reconciled",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29486]]]]},{"k":"G605","v":[["restitution",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27017]]]]},{"k":"G606","v":[["*",[4,4,[[41,1,1,0,1,[[991,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]],[57,1,1,3,4,[[1141,1,1,3,4]]]],[25751,29470,29878,30132]]],["appointed",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30132]]],["up",[3,3,[[41,1,1,0,1,[[991,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[25751,29470,29878]]]]},{"k":"G607","v":[["beheaded",[4,4,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,2,2,1,3,[[962,2,2,1,3]]],[41,1,1,3,4,[[981,1,1,3,4]]]],[23607,24423,24434,25310]]]]},{"k":"G608","v":[["to",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25543]]]]},{"k":"G609","v":[["*",[6,6,[[40,2,2,0,2,[[965,2,2,0,2]]],[42,2,2,2,4,[[1014,2,2,2,4]]],[43,1,1,4,5,[[1044,1,1,4,5]]],[47,1,1,5,6,[[1095,1,1,5,6]]]],[24581,24583,26795,26811,27887,29174]]],["+",[2,2,[[40,2,2,0,2,[[965,2,2,0,2]]]],[24581,24583]]],["off",[4,4,[[42,2,2,0,2,[[1014,2,2,0,2]]],[43,1,1,2,3,[[1044,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]]],[26795,26811,27887,29174]]]]},{"k":"G610","v":[["sentence",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28809]]]]},{"k":"G611","v":[["*",[250,248,[[39,55,55,0,55,[[931,1,1,0,1],[932,1,1,1,2],[936,1,1,2,3],[939,2,2,3,5],[940,3,3,5,8],[941,2,2,8,10],[942,1,1,10,11],[943,7,7,11,18],[944,3,3,18,21],[945,3,3,21,24],[947,2,2,24,26],[948,2,2,26,28],[949,5,5,28,33],[950,3,3,33,36],[952,1,1,36,37],[953,7,7,37,44],[954,6,6,44,50],[955,4,4,50,54],[956,1,1,54,55]]],[40,45,43,55,98,[[959,1,1,55,56],[961,1,1,56,57],[962,1,1,57,58],[963,2,2,58,60],[964,3,3,60,63],[965,5,5,63,68],[966,6,6,68,74],[967,7,5,74,79],[968,6,6,79,85],[969,2,2,85,87],[970,5,5,87,92],[971,6,6,92,98]]],[41,49,49,98,147,[[973,3,3,98,101],[975,2,2,101,103],[976,3,3,103,106],[977,3,3,106,109],[978,1,1,109,110],[979,3,3,110,113],[980,2,2,113,115],[981,4,4,115,119],[982,3,3,119,122],[983,2,2,122,124],[985,5,5,124,129],[986,2,2,129,131],[987,1,1,131,132],[989,3,3,132,135],[991,1,1,135,136],[992,5,5,136,141],[994,2,2,141,143],[995,3,3,143,146],[996,1,1,146,147]]],[42,78,78,147,225,[[997,5,5,147,152],[998,2,2,152,154],[999,5,5,154,159],[1000,3,3,159,162],[1001,4,4,162,166],[1002,6,6,166,172],[1003,6,6,172,178],[1004,8,8,178,186],[1005,8,8,186,194],[1006,4,4,194,198],[1007,1,1,198,199],[1008,3,3,199,202],[1009,5,5,202,207],[1010,1,1,207,208],[1012,1,1,208,209],[1014,10,10,209,219],[1015,4,4,219,223],[1016,1,1,223,224],[1017,1,1,224,225]]],[43,21,21,225,246,[[1020,1,1,225,226],[1021,1,1,226,227],[1022,2,2,227,229],[1025,3,3,229,232],[1026,1,1,232,233],[1027,1,1,233,234],[1028,1,1,234,235],[1032,1,1,235,236],[1036,1,1,236,237],[1038,1,1,237,238],[1039,2,2,238,240],[1041,2,2,240,242],[1042,4,4,242,246]]],[50,1,1,246,247,[[1110,1,1,246,247]]],[65,1,1,247,248,[[1173,1,1,247,248]]]],[23207,23213,23353,23463,23484,23527,23528,23537,23550,23576,23625,23636,23646,23648,23656,23657,23659,23661,23674,23688,23689,23704,23711,23717,23766,23789,23805,23814,23847,23850,23853,23855,23856,23873,23901,23918,23961,24017,24020,24034,24045,24048,24052,24053,24077,24079,24087,24116,24117,24120,24141,24143,24150,24154,24200,24321,24373,24444,24469,24491,24504,24528,24529,24543,24550,24555,24557,24576,24591,24593,24608,24612,24617,24639,24654,24662,24669,24670,24673,24690,24697,24701,24702,24707,24708,24719,24722,24774,24794,24802,24814,24815,24828,24829,24830,24831,24835,24838,24912,24928,24953,25036,25041,25067,25071,25075,25112,25129,25138,25149,25217,25235,25238,25266,25295,25320,25321,25342,25350,25390,25391,25404,25412,25450,25520,25526,25532,25533,25543,25556,25558,25617,25668,25671,25688,25771,25782,25786,25803,25813,25818,25915,25932,25938,25944,25975,26009,26065,26070,26092,26093,26094,26113,26114,26123,26125,26129,26130,26147,26166,26169,26173,26217,26221,26227,26229,26264,26283,26286,26300,26325,26327,26344,26348,26349,26374,26375,26380,26395,26400,26414,26415,26420,26429,26430,26435,26443,26451,26460,26465,26467,26470,26474,26476,26506,26513,26514,26515,26532,26603,26610,26614,26637,26638,26656,26666,26668,26691,26757,26790,26793,26805,26807,26808,26815,26819,26820,26821,26822,26832,26836,26840,26847,26895,26903,27008,27041,27067,27088,27200,27210,27213,27229,27305,27316,27455,27600,27677,27712,27732,27779,27794,27800,27805,27808,27812,29548,30823]]],["+",[5,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,2,2,1,3,[[976,1,1,1,2],[978,1,1,2,3]]],[42,2,2,3,5,[[1005,1,1,3,4],[1014,1,1,4,5]]]],[24143,25067,25149,26465,26820]]],["Answerest",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[970,1,1,1,2],[971,1,1,2,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]]],[24116,24814,24830,26807]]],["answer",[12,12,[[39,5,5,0,5,[[950,1,1,0,1],[953,4,4,1,5]]],[40,3,3,5,8,[[967,2,2,5,7],[970,1,1,7,8]]],[41,3,3,8,11,[[983,1,1,8,9],[985,1,1,9,10],[994,1,1,10,11]]],[50,1,1,11,12,[[1110,1,1,11,12]]]],[23918,24045,24048,24052,24053,24669,24670,24794,25412,25543,25932,29548]]],["answered",[197,197,[[39,47,47,0,47,[[932,1,1,0,1],[936,1,1,1,2],[939,2,2,2,4],[940,3,3,4,7],[941,2,2,7,9],[942,1,1,9,10],[943,7,7,10,17],[944,3,3,17,20],[945,3,3,20,23],[947,2,2,23,25],[948,2,2,25,27],[949,5,5,27,32],[950,2,2,32,34],[952,1,1,34,35],[953,3,3,35,38],[954,5,5,38,43],[955,3,3,43,46],[956,1,1,46,47]]],[40,30,30,47,77,[[959,1,1,47,48],[961,1,1,48,49],[962,1,1,49,50],[963,2,2,50,52],[964,2,2,52,54],[965,4,4,54,58],[966,5,5,58,63],[967,3,3,63,66],[968,4,4,66,70],[970,3,3,70,73],[971,4,4,73,77]]],[41,23,23,77,100,[[973,2,2,77,79],[975,1,1,79,80],[976,1,1,80,81],[979,1,1,81,82],[980,2,2,82,84],[981,1,1,84,85],[982,2,2,85,87],[983,1,1,87,88],[985,2,2,88,90],[986,1,1,90,91],[989,2,2,91,93],[991,1,1,93,94],[992,3,3,94,97],[994,1,1,97,98],[995,2,2,98,100]]],[42,75,75,100,175,[[997,5,5,100,105],[998,2,2,105,107],[999,5,5,107,112],[1000,3,3,112,115],[1001,4,4,115,119],[1002,6,6,119,125],[1003,6,6,125,131],[1004,8,8,131,139],[1005,7,7,139,146],[1006,4,4,146,150],[1007,1,1,150,151],[1008,3,3,151,154],[1009,5,5,154,159],[1010,1,1,159,160],[1012,1,1,160,161],[1014,8,8,161,169],[1015,4,4,169,173],[1016,1,1,173,174],[1017,1,1,174,175]]],[43,21,21,175,196,[[1020,1,1,175,176],[1021,1,1,176,177],[1022,2,2,177,179],[1025,3,3,179,182],[1026,1,1,182,183],[1027,1,1,183,184],[1028,1,1,184,185],[1032,1,1,185,186],[1036,1,1,186,187],[1038,1,1,187,188],[1039,2,2,188,190],[1041,2,2,190,192],[1042,4,4,192,196]]],[65,1,1,196,197,[[1173,1,1,196,197]]]],[23213,23353,23463,23484,23527,23528,23537,23550,23576,23625,23636,23646,23648,23656,23657,23659,23661,23674,23688,23689,23704,23711,23717,23766,23789,23805,23814,23847,23850,23853,23855,23856,23873,23901,23961,24017,24020,24034,24077,24079,24087,24117,24120,24141,24150,24154,24200,24321,24373,24444,24469,24491,24504,24528,24543,24550,24555,24576,24591,24593,24608,24617,24639,24654,24669,24673,24701,24702,24707,24708,24774,24802,24815,24829,24831,24835,24838,24928,24953,25041,25071,25238,25266,25295,25350,25391,25404,25450,25532,25533,25558,25671,25688,25771,25782,25786,25803,25915,25938,25944,26065,26070,26092,26093,26094,26113,26114,26123,26125,26129,26130,26147,26166,26169,26173,26217,26221,26227,26229,26264,26283,26286,26300,26325,26327,26344,26348,26349,26374,26375,26380,26395,26400,26414,26415,26420,26429,26430,26435,26443,26451,26460,26467,26470,26474,26476,26506,26513,26514,26515,26532,26603,26610,26614,26637,26638,26656,26666,26668,26691,26757,26790,26793,26805,26808,26815,26819,26821,26822,26832,26836,26840,26847,26895,26903,27008,27041,27067,27088,27200,27210,27213,27229,27305,27316,27455,27600,27677,27712,27732,27779,27794,27800,27805,27808,27812,30823]]],["answereth",[4,4,[[40,3,3,0,3,[[964,1,1,0,1],[965,1,1,1,2],[966,1,1,2,3]]],[41,1,1,3,4,[[975,1,1,3,4]]]],[24529,24557,24612,25036]]],["answering",[28,28,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,7,7,1,8,[[967,2,2,1,3],[968,2,2,3,5],[969,2,2,5,7],[971,1,1,7,8]]],[41,20,20,8,28,[[973,1,1,8,9],[976,1,1,9,10],[977,3,3,10,13],[979,2,2,13,15],[981,3,3,15,18],[982,1,1,18,19],[985,2,2,19,21],[986,1,1,21,22],[987,1,1,22,23],[989,1,1,23,24],[992,2,2,24,26],[995,1,1,26,27],[996,1,1,27,28]]]],[23207,24662,24673,24690,24697,24719,24722,24828,24912,25075,25112,25129,25138,25217,25235,25320,25321,25342,25390,25520,25526,25556,25617,25668,25813,25818,25975,26009]]]]},{"k":"G612","v":[["*",[4,4,[[41,2,2,0,2,[[974,1,1,0,1],[992,1,1,1,2]]],[42,2,2,2,4,[[997,1,1,2,3],[1015,1,1,3,4]]]],[25020,25805,26066,26834]]],["answer",[3,3,[[41,1,1,0,1,[[992,1,1,0,1]]],[42,2,2,1,3,[[997,1,1,1,2],[1015,1,1,2,3]]]],[25805,26066,26834]]],["answers",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25020]]]]},{"k":"G613","v":[["*",[6,6,[[39,2,2,0,2,[[939,1,1,0,1],[953,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[45,1,1,3,4,[[1063,1,1,3,4]]],[48,1,1,4,5,[[1099,1,1,4,5]]],[50,1,1,5,6,[[1107,1,1,5,6]]]],[23484,24026,25384,28401,29260,29491]]],["hid",[5,5,[[39,2,2,0,2,[[939,1,1,0,1],[953,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[48,1,1,3,4,[[1099,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]]],[23484,24026,25384,29260,29491]]],["hidden",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28401]]]]},{"k":"G614","v":[["*",[3,3,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]]],[24345,25262,29497]]],["hid",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[25262,29497]]],["secret",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24345]]]]},{"k":"G615","v":[["*",[75,71,[[39,13,12,0,12,[[938,2,1,0,1],[942,1,1,1,2],[944,1,1,2,3],[945,1,1,3,4],[949,3,3,4,7],[950,1,1,7,8],[951,2,2,8,10],[952,1,1,10,11],[954,1,1,11,12]]],[40,11,9,12,21,[[959,1,1,12,13],[962,1,1,13,14],[964,1,1,14,15],[965,2,1,15,16],[966,1,1,16,17],[968,4,3,17,20],[970,1,1,20,21]]],[41,12,12,21,33,[[981,1,1,21,22],[983,3,3,22,25],[984,2,2,25,27],[985,3,3,27,30],[990,1,1,30,31],[992,2,2,31,33]]],[42,13,13,33,46,[[1001,2,2,33,35],[1003,4,4,35,39],[1004,3,3,39,42],[1007,1,1,42,43],[1008,1,1,43,44],[1012,1,1,44,45],[1014,1,1,45,46]]],[43,6,6,46,52,[[1020,1,1,46,47],[1024,1,1,47,48],[1038,1,1,48,49],[1040,2,2,49,51],[1044,1,1,51,52]]],[44,2,2,52,54,[[1052,1,1,52,53],[1056,1,1,53,54]]],[46,1,1,54,55,[[1080,1,1,54,55]]],[48,1,1,55,56,[[1098,1,1,55,56]]],[51,1,1,56,57,[[1112,1,1,56,57]]],[65,15,14,57,71,[[1168,2,2,57,59],[1172,2,2,59,61],[1175,4,4,61,65],[1177,3,3,65,68],[1179,3,2,68,70],[1185,1,1,70,71]]]],[23445,23602,23693,23723,23861,23864,23865,23878,23952,23955,23966,24058,24292,24426,24531,24569,24622,24678,24680,24681,24755,25323,25452,25453,25454,25463,25464,25522,25549,25552,25721,25793,25794,26226,26228,26329,26347,26348,26353,26403,26418,26421,26576,26590,26728,26816,27011,27168,27695,27746,27748,27897,28102,28212,28847,29245,29585,30730,30740,30801,30804,30845,30855,30858,30860,30877,30879,30885,30918,30923,31038]]],["+",[6,6,[[39,1,1,0,1,[[942,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]],[42,3,3,2,5,[[1007,1,1,2,3],[1008,1,1,3,4],[1014,1,1,4,5]]],[51,1,1,5,6,[[1112,1,1,5,6]]]],[23602,25721,26576,26590,26816,29585]]],["death",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24755]]],["kill",[28,27,[[39,7,6,0,6,[[938,2,1,0,1],[945,1,1,1,2],[949,1,1,2,3],[951,1,1,3,4],[952,1,1,4,5],[954,1,1,5,6]]],[40,4,4,6,10,[[959,1,1,6,7],[965,1,1,7,8],[966,1,1,8,9],[968,1,1,9,10]]],[41,3,3,10,13,[[984,1,1,10,11],[985,1,1,11,12],[992,1,1,12,13]]],[42,8,8,13,21,[[1001,1,1,13,14],[1003,4,4,14,18],[1004,3,3,18,21]]],[43,2,2,21,23,[[1038,1,1,21,22],[1044,1,1,22,23]]],[65,4,4,23,27,[[1168,1,1,23,24],[1172,1,1,24,25],[1175,1,1,25,26],[1177,1,1,26,27]]]],[23445,23723,23864,23952,23966,24058,24292,24569,24622,24680,25463,25549,25793,26228,26329,26347,26348,26353,26403,26418,26421,27695,27897,30740,30801,30845,30879]]],["killed",[20,20,[[39,2,2,0,2,[[944,1,1,0,1],[949,1,1,1,2]]],[40,5,5,2,7,[[962,1,1,2,3],[964,1,1,3,4],[965,1,1,4,5],[968,2,2,5,7]]],[41,4,4,7,11,[[983,2,2,7,9],[984,1,1,9,10],[992,1,1,10,11]]],[43,2,2,11,13,[[1020,1,1,11,12],[1040,1,1,12,13]]],[44,1,1,13,14,[[1056,1,1,13,14]]],[65,6,6,14,20,[[1172,1,1,14,15],[1175,2,2,15,17],[1177,1,1,17,18],[1179,2,2,18,20]]]],[23693,23861,24426,24531,24569,24678,24681,25452,25453,25464,25794,27011,27746,28212,30804,30858,30860,30877,30918,30923]]],["killest",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23955,25552]]],["killeth",[3,3,[[42,1,1,0,1,[[1012,1,1,0,1]]],[46,1,1,1,2,[[1080,1,1,1,2]]],[65,1,1,2,3,[[1179,1,1,2,3]]]],[26728,28847,30918]]],["killing",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24678]]],["slain",[7,7,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,2,2,1,3,[[1024,1,1,1,2],[1040,1,1,2,3]]],[48,1,1,3,4,[[1098,1,1,3,4]]],[65,3,3,4,7,[[1168,1,1,4,5],[1177,1,1,5,6],[1185,1,1,6,7]]]],[25323,27168,27748,29245,30730,30885,31038]]],["slay",[3,3,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[65,1,1,2,3,[[1175,1,1,2,3]]]],[25454,26226,30855]]],["slew",[4,4,[[39,2,2,0,2,[[949,1,1,0,1],[950,1,1,1,2]]],[41,1,1,2,3,[[985,1,1,2,3]]],[44,1,1,3,4,[[1052,1,1,3,4]]]],[23865,23878,25522,28102]]]]},{"k":"G616","v":[["*",[2,2,[[58,2,2,0,2,[[1146,2,2,0,2]]]],[30281,30284]]],["begat",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30284]]],["forth",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30281]]]]},{"k":"G617","v":[["*",[4,4,[[39,1,1,0,1,[[956,1,1,0,1]]],[40,2,2,1,3,[[972,2,2,1,3]]],[41,1,1,3,4,[[996,1,1,3,4]]]],[24197,24876,24877,25993]]],["+",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24876]]],["away",[2,2,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]]],[24877,25993]]],["back",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24197]]]]},{"k":"G618","v":[["*",[12,11,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,6,5,1,6,[[978,2,1,1,2],[987,1,1,2,3],[988,1,1,3,4],[990,1,1,4,5],[995,1,1,5,6]]],[44,1,1,6,7,[[1046,1,1,6,7]]],[47,1,1,7,8,[[1094,1,1,7,8]]],[50,1,1,8,9,[[1109,1,1,8,9]]],[62,1,1,9,10,[[1164,1,1,9,10]]],[63,1,1,10,11,[[1165,1,1,10,11]]]],[24496,25180,25615,25645,25718,25976,27957,29136,29541,30653,30666]]],["receive",[8,7,[[41,4,3,0,3,[[978,2,1,0,1],[990,1,1,1,2],[995,1,1,2,3]]],[47,1,1,3,4,[[1094,1,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]],[62,1,1,5,6,[[1164,1,1,5,6]]],[63,1,1,6,7,[[1165,1,1,6,7]]]],[25180,25718,25976,29136,29541,30653,30666]]],["received",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25615]]],["receivedst",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25645]]],["receiving",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27957]]],["took",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24496]]]]},{"k":"G619","v":[["*",[2,2,[[53,1,1,0,1,[[1124,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[29805,30197]]],["+",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30197]]],["enjoy",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29805]]]]},{"k":"G620","v":[["*",[6,6,[[54,2,2,0,2,[[1128,2,2,0,2]]],[57,3,3,2,5,[[1136,2,2,2,4],[1142,1,1,4,5]]],[64,1,1,5,6,[[1166,1,1,5,6]]]],[29883,29890,30020,30023,30159,30678]]],["left",[3,3,[[54,2,2,0,2,[[1128,2,2,0,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[29883,29890,30678]]],["remaineth",[3,3,[[57,3,3,0,3,[[1136,2,2,0,2],[1142,1,1,2,3]]]],[30020,30023,30159]]]]},{"k":"G621","v":[["licked",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25641]]]]},{"k":"G622","v":[["*",[92,86,[[39,20,18,0,18,[[930,1,1,0,1],[933,2,2,1,3],[936,1,1,3,4],[937,1,1,4,5],[938,5,4,5,9],[940,1,1,9,10],[943,1,1,10,11],[944,2,1,11,12],[946,2,2,12,14],[949,1,1,14,15],[950,1,1,15,16],[954,1,1,16,17],[955,1,1,17,18]]],[40,10,9,18,27,[[957,1,1,18,19],[958,1,1,19,20],[959,1,1,20,21],[960,1,1,21,22],[964,2,1,22,23],[965,2,2,23,25],[967,1,1,25,26],[968,1,1,26,27]]],[41,28,25,27,52,[[976,1,1,27,28],[977,1,1,28,29],[978,1,1,29,30],[980,1,1,30,31],[981,4,3,31,34],[983,1,1,34,35],[985,3,3,35,38],[987,8,7,38,45],[989,4,3,45,48],[991,2,2,48,50],[992,1,1,50,51],[993,1,1,51,52]]],[42,12,12,52,64,[[999,2,2,52,54],[1002,3,3,54,57],[1006,2,2,57,59],[1007,1,1,59,60],[1008,1,1,60,61],[1013,1,1,61,62],[1014,2,2,62,64]]],[43,1,1,64,65,[[1022,1,1,64,65]]],[44,2,2,65,67,[[1047,1,1,65,66],[1059,1,1,66,67]]],[45,6,6,67,73,[[1062,2,2,67,69],[1069,1,1,69,70],[1071,2,2,70,72],[1076,1,1,72,73]]],[46,3,3,73,76,[[1079,1,1,73,74],[1081,2,2,74,76]]],[52,1,1,76,77,[[1117,1,1,76,77]]],[57,1,1,77,78,[[1133,1,1,77,78]]],[58,2,2,78,80,[[1146,1,1,78,79],[1149,1,1,79,80]]],[59,1,1,80,81,[[1151,1,1,80,81]]],[60,2,2,81,83,[[1158,2,2,81,83]]],[62,1,1,83,84,[[1164,1,1,83,84]]],[64,2,2,84,86,[[1166,2,2,84,86]]]],[23182,23263,23264,23370,23396,23423,23445,23456,23459,23503,23657,23697,23738,23741,23867,23879,24106,24149,24239,24282,24294,24361,24535,24560,24579,24658,24682,25097,25144,25155,25269,25325,25326,25357,25456,25521,25523,25551,25592,25594,25596,25597,25605,25612,25620,25678,25680,25684,25741,25778,25795,25844,26135,26136,26269,26284,26296,26491,26509,26573,26605,26771,26794,26799,27096,27974,28295,28381,28382,28538,28576,28577,28736,28839,28862,28868,29671,29974,30277,30349,30381,30528,30531,30653,30677,30683]]],["+",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28381]]],["Destroy",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28295]]],["destroy",[18,18,[[39,5,5,0,5,[[930,1,1,0,1],[938,1,1,1,2],[940,1,1,2,3],[949,1,1,3,4],[955,1,1,4,5]]],[40,5,5,5,10,[[957,1,1,5,6],[959,1,1,6,7],[965,1,1,7,8],[967,1,1,8,9],[968,1,1,9,10]]],[41,5,5,10,15,[[976,1,1,10,11],[978,1,1,11,12],[981,1,1,12,13],[991,1,1,13,14],[992,1,1,14,15]]],[42,1,1,15,16,[[1006,1,1,15,16]]],[45,1,1,16,17,[[1062,1,1,16,17]]],[58,1,1,17,18,[[1149,1,1,17,18]]]],[23182,23445,23503,23867,24149,24239,24294,24560,24658,24682,25097,25155,25357,25778,25795,26491,28382,30349]]],["destroyed",[7,7,[[39,1,1,0,1,[[950,1,1,0,1]]],[41,2,2,1,3,[[989,2,2,1,3]]],[45,2,2,3,5,[[1071,2,2,3,5]]],[46,1,1,5,6,[[1081,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[23879,25678,25680,28576,28577,28868,30677]]],["die",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26799]]],["lose",[17,13,[[39,4,3,0,3,[[938,2,2,0,2],[944,2,1,2,3]]],[40,3,2,3,5,[[964,2,1,3,4],[965,1,1,4,5]]],[41,7,5,5,10,[[981,3,2,5,7],[987,2,2,7,9],[989,2,1,9,10]]],[42,2,2,10,12,[[1002,1,1,10,11],[1008,1,1,11,12]]],[62,1,1,12,13,[[1164,1,1,12,13]]]],[23456,23459,23697,24535,24579,25325,25326,25592,25596,25684,26296,26605,30653]]],["loseth",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23456]]],["lost",[13,13,[[39,3,3,0,3,[[938,1,1,0,1],[943,1,1,1,2],[946,1,1,2,3]]],[41,6,6,3,9,[[987,5,5,3,8],[991,1,1,8,9]]],[42,3,3,9,12,[[1002,1,1,9,10],[1013,1,1,10,11],[1014,1,1,11,12]]],[46,1,1,12,13,[[1081,1,1,12,13]]]],[23423,23657,23738,25592,25594,25597,25612,25620,25741,26269,26771,26794,28862]]],["marred",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24282]]],["perish",[24,24,[[39,6,6,0,6,[[933,2,2,0,2],[936,1,1,2,3],[937,1,1,3,4],[946,1,1,4,5],[954,1,1,5,6]]],[40,1,1,6,7,[[960,1,1,6,7]]],[41,7,7,7,14,[[977,1,1,7,8],[980,1,1,8,9],[985,3,3,9,12],[987,1,1,12,13],[993,1,1,13,14]]],[42,4,4,14,18,[[999,2,2,14,16],[1006,1,1,16,17],[1007,1,1,17,18]]],[44,1,1,18,19,[[1047,1,1,18,19]]],[45,1,1,19,20,[[1069,1,1,19,20]]],[46,1,1,20,21,[[1079,1,1,20,21]]],[52,1,1,21,22,[[1117,1,1,21,22]]],[57,1,1,22,23,[[1133,1,1,22,23]]],[60,1,1,23,24,[[1158,1,1,23,24]]]],[23263,23264,23370,23396,23741,24106,24361,25144,25269,25521,25523,25551,25605,25844,26135,26136,26509,26573,27974,28538,28839,29671,29974,30531]]],["perished",[5,5,[[41,1,1,0,1,[[983,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]],[60,1,1,3,4,[[1158,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[25456,27096,28736,30528,30683]]],["perisheth",[3,3,[[42,1,1,0,1,[[1002,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]],[59,1,1,2,3,[[1151,1,1,2,3]]]],[26284,30277,30381]]]]},{"k":"G623","v":[["Apollyon",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30851]]]]},{"k":"G624","v":[["Apollonia",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27524]]]]},{"k":"G625","v":[["*",[10,10,[[43,2,2,0,2,[[1035,1,1,0,1],[1036,1,1,1,2]]],[45,7,7,2,9,[[1062,1,1,2,3],[1064,4,4,3,7],[1065,1,1,7,8],[1077,1,1,8,9]]],[55,1,1,9,10,[[1131,1,1,9,10]]]],[27581,27586,28375,28414,28415,28416,28432,28439,28788,29936]]],["+",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29936]]],["Apollos",[9,9,[[43,2,2,0,2,[[1035,1,1,0,1],[1036,1,1,1,2]]],[45,7,7,2,9,[[1062,1,1,2,3],[1064,4,4,3,7],[1065,1,1,7,8],[1077,1,1,8,9]]]],[27581,27586,28375,28414,28415,28416,28432,28439,28788]]]]},{"k":"G626","v":[["*",[10,10,[[41,2,2,0,2,[[984,1,1,0,1],[993,1,1,1,2]]],[43,6,6,2,8,[[1036,1,1,2,3],[1041,1,1,3,4],[1042,1,1,4,5],[1043,3,3,5,8]]],[44,1,1,8,9,[[1047,1,1,8,9]]],[46,1,1,9,10,[[1089,1,1,9,10]]]],[25470,25840,27618,27779,27804,27824,27825,27847,27977,29041]]],["answer",[3,3,[[41,2,2,0,2,[[984,1,1,0,1],[993,1,1,1,2]]],[43,1,1,2,3,[[1041,1,1,2,3]]]],[25470,25840,27779]]],["defence",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27618]]],["excusing",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27977]]],["himself",[3,3,[[43,3,3,0,3,[[1042,1,1,0,1],[1043,2,2,1,3]]]],[27804,27824,27847]]],["myself",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27825]]],["ourselves",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29041]]]]},{"k":"G627","v":[["*",[8,8,[[43,2,2,0,2,[[1039,1,1,0,1],[1042,1,1,1,2]]],[45,1,1,2,3,[[1070,1,1,2,3]]],[46,1,1,3,4,[[1084,1,1,3,4]]],[49,2,2,4,6,[[1103,2,2,4,6]]],[54,1,1,6,7,[[1128,1,1,6,7]]],[59,1,1,7,8,[[1153,1,1,7,8]]]],[27705,27812,28543,28927,29368,29378,29886,30439]]],["+",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30439]]],["answer",[2,2,[[45,1,1,0,1,[[1070,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]]],[28543,29886]]],["defence",[3,3,[[43,1,1,0,1,[[1039,1,1,0,1]]],[49,2,2,1,3,[[1103,2,2,1,3]]]],[27705,29368,29378]]],["himself",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27812]]],["yourselves",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28927]]]]},{"k":"G628","v":[["*",[2,2,[[43,1,1,0,1,[[1039,1,1,0,1]]],[45,1,1,1,2,[[1067,1,1,1,2]]]],[27720,28478]]],["away",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27720]]],["washed",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28478]]]]},{"k":"G629","v":[["*",[10,10,[[41,1,1,0,1,[[993,1,1,0,1]]],[44,2,2,1,3,[[1048,1,1,1,2],[1053,1,1,2,3]]],[45,1,1,3,4,[[1062,1,1,3,4]]],[48,3,3,4,7,[[1097,2,2,4,6],[1100,1,1,6,7]]],[50,1,1,7,8,[[1107,1,1,7,8]]],[57,2,2,8,10,[[1141,1,1,8,9],[1143,1,1,9,10]]]],[25854,28015,28139,28393,29213,29220,29302,29479,30120,30207]]],["deliverance",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30207]]],["redemption",[9,9,[[41,1,1,0,1,[[993,1,1,0,1]]],[44,2,2,1,3,[[1048,1,1,1,2],[1053,1,1,2,3]]],[45,1,1,3,4,[[1062,1,1,3,4]]],[48,3,3,4,7,[[1097,2,2,4,6],[1100,1,1,6,7]]],[50,1,1,7,8,[[1107,1,1,7,8]]],[57,1,1,8,9,[[1141,1,1,8,9]]]],[25854,28015,28139,28393,29213,29220,29302,29479,30120]]]]},{"k":"G630","v":[["*",[69,63,[[39,20,18,0,18,[[929,1,1,0,1],[933,3,2,1,3],[942,3,3,3,6],[943,3,3,6,9],[946,1,1,9,10],[947,5,4,10,14],[955,4,4,14,18]]],[40,12,12,18,30,[[962,2,2,18,20],[964,2,2,20,22],[966,4,4,22,26],[971,4,4,26,30]]],[41,16,14,30,44,[[974,1,1,30,31],[978,2,1,31,32],[980,1,1,32,33],[981,1,1,33,34],[985,1,1,34,35],[986,1,1,35,36],[988,2,1,36,37],[994,1,1,37,38],[995,6,6,38,44]]],[42,5,3,44,47,[[1014,2,1,44,45],[1015,3,2,45,47]]],[43,15,15,47,62,[[1020,1,1,47,48],[1021,2,2,48,50],[1022,1,1,50,51],[1030,1,1,51,52],[1032,2,2,52,54],[1033,2,2,54,56],[1034,1,1,56,57],[1036,1,1,57,58],[1040,1,1,58,59],[1043,1,1,59,60],[1045,2,2,60,62]]],[57,1,1,62,63,[[1145,1,1,62,63]]]],[23163,23265,23266,23612,23619,23620,23656,23665,23672,23754,23765,23769,23770,23771,24144,24146,24150,24155,24443,24452,24503,24509,24590,24592,24599,24600,24832,24835,24837,24841,25002,25183,25283,25313,25530,25557,25638,25932,25951,25952,25953,25955,25957,25960,26824,26835,26837,27009,27043,27045,27099,27365,27472,27475,27518,27519,27532,27626,27756,27855,27917,27924,30264]]],["+",[18,18,[[39,7,7,0,7,[[929,1,1,0,1],[942,3,3,1,4],[943,2,2,4,6],[947,1,1,6,7]]],[40,3,3,7,10,[[962,1,1,7,8],[964,2,2,8,10]]],[41,2,2,10,12,[[980,1,1,10,11],[981,1,1,11,12]]],[42,1,1,12,13,[[1015,1,1,12,13]]],[43,5,5,13,18,[[1021,1,1,13,14],[1022,1,1,14,15],[1033,1,1,15,16],[1034,1,1,16,17],[1040,1,1,17,18]]]],[23163,23612,23619,23620,23656,23665,23769,24443,24503,24509,25283,25313,26837,27043,27099,27518,27532,27756]]],["away",[15,13,[[39,7,6,0,6,[[933,2,2,0,2],[943,1,1,2,3],[947,4,3,3,6]]],[40,5,5,6,11,[[962,1,1,6,7],[966,4,4,7,11]]],[41,2,1,11,12,[[988,2,1,11,12]]],[43,1,1,12,13,[[1030,1,1,12,13]]]],[23265,23266,23672,23765,23770,23771,24452,24590,24592,24599,24600,25638,27365]]],["depart",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25002]]],["departed",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27924]]],["dismissed",[2,2,[[43,2,2,0,2,[[1032,1,1,0,1],[1036,1,1,1,2]]]],[27472,27626]]],["divorced",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23266]]],["forgive",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25183]]],["forgiven",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25183]]],["go",[8,8,[[41,3,3,0,3,[[986,1,1,0,1],[994,1,1,1,2],[995,1,1,2,3]]],[43,5,5,3,8,[[1020,1,1,3,4],[1021,1,1,4,5],[1032,1,1,5,6],[1033,1,1,6,7],[1045,1,1,7,8]]]],[25557,25932,25957,27009,27045,27475,27519,27917]]],["liberty",[2,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[27855,30264]]],["loosed",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23754,25530]]],["release",[13,12,[[39,3,3,0,3,[[955,3,3,0,3]]],[40,2,2,3,5,[[971,2,2,3,5]]],[41,4,4,5,9,[[995,4,4,5,9]]],[42,4,3,9,12,[[1014,2,1,9,10],[1015,2,2,10,12]]]],[24144,24146,24150,24835,24837,25951,25952,25953,25955,26824,26835,26837]]],["released",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,2,2,1,3,[[971,2,2,1,3]]],[41,1,1,3,4,[[995,1,1,3,4]]]],[24155,24832,24841,25960]]]]},{"k":"G631","v":[["off",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25374]]]]},{"k":"G632","v":[["giving",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30431]]]]},{"k":"G633","v":[["washed",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24153]]]]},{"k":"G634","v":[["fell",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27234]]]]},{"k":"G635","v":[["*",[2,2,[[40,1,1,0,1,[[969,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[24739,29798]]],["erred",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29798]]],["seduce",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24739]]]]},{"k":"G636","v":[["*",[4,4,[[43,4,4,0,4,[[1030,1,1,0,1],[1031,1,1,1,2],[1037,1,1,2,3],[1044,1,1,3,4]]]],[27366,27440,27641,27856]]],["+",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27641]]],["sail",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27856]]],["sailed",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1031,1,1,1,2]]]],[27366,27440]]]]},{"k":"G637","v":[["washing",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25109]]]]},{"k":"G638","v":[["choked",[3,3,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,2,2,1,3,[[980,2,2,1,3]]]],[23546,25252,25278]]]]},{"k":"G639","v":[["*",[4,4,[[42,1,1,0,1,[[1009,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]],[46,1,1,2,3,[[1081,1,1,2,3]]],[47,1,1,3,4,[[1094,1,1,3,4]]]],[26652,27816,28867,29151]]],["doubt",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29151]]],["doubted",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27816]]],["doubting",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26652]]],["perplexed",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28867]]]]},{"k":"G640","v":[["perplexity",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25851]]]]},{"k":"G641","v":[["cast",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27898]]]]},{"k":"G642","v":[["taken",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29587]]]]},{"k":"G643","v":[["carriages",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27679]]]]},{"k":"G644","v":[["shadow",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30283]]]]},{"k":"G645","v":[["*",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[43,2,2,2,4,[[1037,1,1,2,3],[1038,1,1,3,4]]]],[24105,25905,27656,27665]]],["away",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27656]]],["drew",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24105]]],["gotten",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27665]]],["withdrawn",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25905]]]]},{"k":"G646","v":[["*",[2,2,[[43,1,1,0,1,[[1038,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]]],[27685,29664]]],["away",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29664]]],["forsake",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27685]]]]},{"k":"G647","v":[["divorcement",[3,3,[[39,2,2,0,2,[[933,1,1,0,1],[947,1,1,1,2]]],[40,1,1,2,3,[[966,1,1,2,3]]]],[23265,23769,24592]]]]},{"k":"G648","v":[["uncovered",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24264]]]]},{"k":"G649","v":[["*",[133,130,[[39,21,21,0,21,[[930,1,1,0,1],[938,3,3,1,4],[939,1,1,4,5],[941,1,1,5,6],[942,1,1,6,7],[943,1,1,7,8],[948,1,1,8,9],[949,5,5,9,14],[950,3,3,14,17],[951,2,2,17,19],[952,1,1,19,20],[955,1,1,20,21]]],[40,21,20,21,41,[[957,1,1,21,22],[959,2,2,22,24],[960,1,1,24,25],[961,1,1,25,26],[962,3,3,26,29],[964,1,1,29,30],[965,1,1,30,31],[967,2,2,31,33],[968,7,6,33,39],[969,1,1,39,40],[970,1,1,40,41]]],[41,26,25,41,66,[[973,2,2,41,43],[976,3,2,43,45],[979,3,3,45,48],[981,3,3,48,51],[982,3,3,51,54],[983,1,1,54,55],[985,1,1,55,56],[986,2,2,56,58],[991,3,3,58,61],[992,2,2,61,63],[994,2,2,63,65],[996,1,1,65,66]]],[42,28,27,66,93,[[997,3,3,66,69],[999,3,3,69,72],[1000,1,1,72,73],[1001,3,3,73,76],[1002,2,2,76,78],[1003,2,2,78,80],[1004,1,1,80,81],[1005,1,1,81,82],[1006,1,1,82,83],[1007,2,2,83,85],[1013,7,6,85,91],[1014,1,1,91,92],[1016,1,1,92,93]]],[43,25,25,93,118,[[1020,2,2,93,95],[1022,1,1,95,96],[1024,3,3,96,99],[1025,1,1,99,100],[1026,2,2,100,102],[1027,5,5,102,107],[1028,3,3,107,110],[1030,2,2,110,112],[1032,1,1,112,113],[1033,2,2,113,115],[1036,1,1,115,116],[1043,1,1,116,117],[1045,1,1,117,118]]],[44,1,1,118,119,[[1055,1,1,118,119]]],[45,1,1,119,120,[[1062,1,1,119,120]]],[46,1,1,120,121,[[1089,1,1,120,121]]],[54,1,1,121,122,[[1128,1,1,121,122]]],[57,1,1,122,123,[[1133,1,1,122,123]]],[59,1,1,123,124,[[1151,1,1,123,124]]],[61,3,3,124,127,[[1162,3,3,124,127]]],[65,3,3,127,130,[[1167,1,1,127,128],[1171,1,1,128,129],[1188,1,1,129,130]]]],[23185,23422,23433,23457,23469,23580,23632,23657,23794,23827,23829,23860,23862,23863,23875,23876,23888,23952,23955,23988,24148,24217,24302,24319,24352,24374,24414,24424,24434,24526,24575,24641,24643,24675,24676,24677,24678,24679,24686,24744,24767,24912,24919,25081,25106,25198,25215,25222,25303,25349,25353,25364,25366,25379,25454,25552,25570,25585,25745,25760,25763,25789,25799,25872,25899,26040,26050,26063,26068,26137,26148,26154,26194,26243,26246,26248,26286,26314,26357,26360,26423,26447,26517,26526,26565,26762,26767,26777,26780,26782,26784,26809,26888,27016,27022,27080,27130,27150,27151,27190,27233,27254,27267,27276,27279,27280,27295,27318,27320,27337,27377,27388,27469,27518,27519,27607,27840,27927,28203,28380,29039,29882,29977,30386,30612,30613,30617,30698,30785,31086]]],["+",[7,7,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,4,4,1,5,[[959,1,1,1,2],[961,1,1,2,3],[962,1,1,3,4],[964,1,1,4,5]]],[41,2,2,5,7,[[982,1,1,5,6],[983,1,1,6,7]]]],[23433,24302,24374,24414,24526,25366,25454]]],["Send",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27320]]],["Sent",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26447]]],["away",[2,2,[[40,2,2,0,2,[[968,2,2,0,2]]]],[24676,24677]]],["down",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30386]]],["forth",[11,11,[[39,5,5,0,5,[[930,1,1,0,1],[938,1,1,1,2],[941,1,1,2,3],[950,2,2,3,5]]],[40,3,3,5,8,[[962,1,1,5,6],[967,1,1,6,7],[970,1,1,7,8]]],[41,1,1,8,9,[[992,1,1,8,9]]],[57,1,1,9,10,[[1133,1,1,9,10]]],[65,1,1,10,11,[[1171,1,1,10,11]]]],[23185,23422,23580,23875,23876,24424,24641,24767,25799,29977,30785]]],["in",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24352]]],["out",[2,2,[[39,2,2,0,2,[[942,1,1,0,1],[950,1,1,1,2]]]],[23632,23888]]],["send",[15,15,[[39,4,4,0,4,[[939,1,1,0,1],[949,1,1,1,2],[951,1,1,2,3],[952,1,1,3,4]]],[40,4,4,4,8,[[957,1,1,4,5],[967,1,1,5,6],[968,1,1,6,7],[969,1,1,7,8]]],[41,2,2,8,10,[[979,1,1,8,9],[996,1,1,9,10]]],[42,1,1,10,11,[[1013,1,1,10,11]]],[43,4,4,11,15,[[1020,1,1,11,12],[1024,2,2,12,14],[1043,1,1,14,15]]]],[23469,23829,23952,23988,24217,24643,24686,24744,25222,26040,26767,27016,27150,27151,27840]]],["sendeth",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25585]]],["sent",[90,89,[[39,9,9,0,9,[[938,1,1,0,1],[943,1,1,1,2],[948,1,1,2,3],[949,4,4,3,7],[951,1,1,7,8],[955,1,1,8,9]]],[40,7,7,9,16,[[959,1,1,9,10],[962,1,1,10,11],[965,1,1,11,12],[968,4,4,12,16]]],[41,19,19,16,35,[[973,2,2,16,18],[976,2,2,18,20],[979,2,2,20,22],[981,3,3,22,25],[982,2,2,25,27],[985,1,1,27,28],[986,1,1,28,29],[991,3,3,29,32],[992,1,1,32,33],[994,2,2,33,35]]],[42,26,25,35,60,[[997,3,3,35,38],[999,3,3,38,41],[1000,1,1,41,42],[1001,3,3,42,45],[1002,2,2,45,47],[1003,2,2,47,49],[1004,1,1,49,50],[1006,1,1,50,51],[1007,2,2,51,53],[1013,6,5,53,58],[1014,1,1,58,59],[1016,1,1,59,60]]],[43,20,20,60,80,[[1020,1,1,60,61],[1022,1,1,61,62],[1024,1,1,62,63],[1025,1,1,63,64],[1026,2,2,64,66],[1027,5,5,66,71],[1028,2,2,71,73],[1030,2,2,73,75],[1032,1,1,75,76],[1033,2,2,76,78],[1036,1,1,78,79],[1045,1,1,79,80]]],[44,1,1,80,81,[[1055,1,1,80,81]]],[45,1,1,81,82,[[1062,1,1,81,82]]],[46,1,1,82,83,[[1089,1,1,82,83]]],[54,1,1,83,84,[[1128,1,1,83,84]]],[61,3,3,84,87,[[1162,3,3,84,87]]],[65,2,2,87,89,[[1167,1,1,87,88],[1188,1,1,88,89]]]],[23457,23657,23794,23827,23860,23862,23863,23955,24148,24319,24434,24575,24675,24677,24678,24679,24912,24919,25081,25106,25198,25215,25303,25349,25353,25364,25379,25552,25570,25745,25760,25763,25789,25872,25899,26050,26063,26068,26137,26148,26154,26194,26243,26246,26248,26286,26314,26357,26360,26423,26517,26526,26565,26762,26777,26780,26782,26784,26809,26888,27022,27080,27130,27190,27233,27254,27267,27276,27279,27280,27295,27318,27337,27377,27388,27469,27518,27519,27607,27927,28203,28380,29039,29882,30612,30613,30617,30698,31086]]],["set",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25081]]]]},{"k":"G650","v":[["*",[6,6,[[40,1,1,0,1,[[966,1,1,0,1]]],[45,3,3,1,4,[[1067,2,2,1,3],[1068,1,1,3,4]]],[53,1,1,4,5,[[1124,1,1,4,5]]],[58,1,1,5,6,[[1150,1,1,5,6]]]],[24607,28474,28475,28492,29793,30358]]],["Defraud",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[24607,28492]]],["defraud",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28475]]],["defrauded",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28474]]],["destitute",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29793]]],["fraud",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30358]]]]},{"k":"G651","v":[["apostleship",[4,4,[[43,1,1,0,1,[[1018,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[45,1,1,2,3,[[1070,1,1,2,3]]],[47,1,1,3,4,[[1092,1,1,3,4]]]],[26948,27935,28542,29089]]]]},{"k":"G652","v":[["*",[81,80,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,6,6,2,8,[[978,1,1,2,3],[981,1,1,3,4],[983,1,1,4,5],[989,1,1,5,6],[994,1,1,6,7],[996,1,1,7,8]]],[42,1,1,8,9,[[1009,1,1,8,9]]],[43,30,30,9,39,[[1018,2,2,9,11],[1019,3,3,11,14],[1021,4,4,14,18],[1022,6,6,18,24],[1023,1,1,24,25],[1025,3,3,25,28],[1026,1,1,28,29],[1028,1,1,29,30],[1031,2,2,30,32],[1032,6,6,32,38],[1033,1,1,38,39]]],[44,3,3,39,42,[[1046,1,1,39,40],[1056,1,1,40,41],[1061,1,1,41,42]]],[45,10,9,42,51,[[1062,1,1,42,43],[1065,1,1,43,44],[1070,3,3,44,47],[1073,2,2,47,49],[1076,3,2,49,51]]],[46,6,6,51,57,[[1078,1,1,51,52],[1085,1,1,52,53],[1088,2,2,53,55],[1089,2,2,55,57]]],[47,3,3,57,60,[[1091,3,3,57,60]]],[48,4,4,60,64,[[1097,1,1,60,61],[1098,1,1,61,62],[1099,1,1,62,63],[1100,1,1,63,64]]],[49,1,1,64,65,[[1104,1,1,64,65]]],[50,1,1,65,66,[[1107,1,1,65,66]]],[51,1,1,66,67,[[1112,1,1,66,67]]],[53,2,2,67,69,[[1119,1,1,67,68],[1120,1,1,68,69]]],[54,2,2,69,71,[[1125,2,2,69,71]]],[55,1,1,71,72,[[1129,1,1,71,72]]],[57,1,1,72,73,[[1135,1,1,72,73]]],[59,1,1,73,74,[[1151,1,1,73,74]]],[60,2,2,74,76,[[1156,1,1,74,75],[1158,1,1,75,76]]],[64,1,1,76,77,[[1166,1,1,76,77]]],[65,3,3,77,80,[[1168,1,1,77,78],[1184,1,1,78,79],[1187,1,1,79,80]]]],[23419,24437,25159,25311,25454,25656,25878,26001,26646,26925,26949,26986,26991,26992,27055,27057,27058,27059,27061,27071,27077,27088,27093,27099,27107,27177,27190,27194,27243,27308,27418,27428,27444,27446,27448,27464,27465,27475,27487,27931,28222,28343,28364,28442,28541,28542,28545,28662,28663,28725,28727,28801,28955,28994,29002,29033,29034,29058,29074,29076,29207,29249,29256,29283,29416,29466,29576,29697,29723,29810,29820,29893,29996,30375,30480,30524,30689,30719,31013,31067]]],["Apostle",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[29996]]],["apostle",[18,18,[[44,2,2,0,2,[[1046,1,1,0,1],[1056,1,1,1,2]]],[45,4,4,2,6,[[1062,1,1,2,3],[1070,2,2,3,5],[1076,1,1,5,6]]],[46,2,2,6,8,[[1078,1,1,6,7],[1089,1,1,7,8]]],[47,1,1,8,9,[[1091,1,1,8,9]]],[48,1,1,9,10,[[1097,1,1,9,10]]],[50,1,1,10,11,[[1107,1,1,10,11]]],[53,2,2,11,13,[[1119,1,1,11,12],[1120,1,1,12,13]]],[54,2,2,13,15,[[1125,2,2,13,15]]],[55,1,1,15,16,[[1129,1,1,15,16]]],[59,1,1,16,17,[[1151,1,1,16,17]]],[60,1,1,17,18,[[1156,1,1,17,18]]]],[27931,28222,28364,28541,28542,28727,28801,29034,29058,29207,29466,29697,29723,29810,29820,29893,30375,30480]]],["apostles",[54,54,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,6,6,2,8,[[978,1,1,2,3],[981,1,1,3,4],[983,1,1,4,5],[989,1,1,5,6],[994,1,1,6,7],[996,1,1,7,8]]],[43,25,25,8,33,[[1018,2,2,8,10],[1019,2,2,10,12],[1021,2,2,12,14],[1022,5,5,14,19],[1023,1,1,19,20],[1025,2,2,20,22],[1026,1,1,22,23],[1028,1,1,23,24],[1031,2,2,24,26],[1032,6,6,26,32],[1033,1,1,32,33]]],[44,1,1,33,34,[[1061,1,1,33,34]]],[45,6,6,34,40,[[1065,1,1,34,35],[1070,1,1,35,36],[1073,2,2,36,38],[1076,2,2,38,40]]],[46,3,3,40,43,[[1088,2,2,40,42],[1089,1,1,42,43]]],[47,2,2,43,45,[[1091,2,2,43,45]]],[48,3,3,45,48,[[1098,1,1,45,46],[1099,1,1,46,47],[1100,1,1,47,48]]],[51,1,1,48,49,[[1112,1,1,48,49]]],[60,1,1,49,50,[[1158,1,1,49,50]]],[64,1,1,50,51,[[1166,1,1,50,51]]],[65,3,3,51,54,[[1168,1,1,51,52],[1184,1,1,52,53],[1187,1,1,53,54]]]],[23419,24437,25159,25311,25454,25656,25878,26001,26925,26949,26986,26992,27055,27058,27071,27077,27088,27093,27099,27107,27177,27190,27243,27308,27418,27428,27444,27446,27448,27464,27465,27475,27487,28343,28442,28545,28662,28663,28725,28727,28994,29002,29033,29074,29076,29249,29256,29283,29576,30524,30689,30719,31013,31067]]],["apostles'",[5,5,[[43,5,5,0,5,[[1019,1,1,0,1],[1021,2,2,1,3],[1022,1,1,3,4],[1025,1,1,4,5]]]],[26991,27057,27059,27061,27194]]],["messenger",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29416]]],["messengers",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28955]]],["sent",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26646]]]]},{"k":"G653","v":[["+",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25458]]]]},{"k":"G654","v":[["*",[10,10,[[39,3,3,0,3,[[933,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[41,1,1,3,4,[[995,1,1,3,4]]],[43,1,1,4,5,[[1020,1,1,4,5]]],[44,1,1,5,6,[[1056,1,1,5,6]]],[54,2,2,6,8,[[1125,1,1,6,7],[1128,1,1,7,8]]],[55,1,1,8,9,[[1129,1,1,8,9]]],[57,1,1,9,10,[[1144,1,1,9,10]]]],[23276,24106,24132,25949,27022,28235,29824,29874,29906,30237]]],["+",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23276]]],["again",[2,2,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]]],[24106,24132]]],["away",[3,3,[[43,1,1,0,1,[[1020,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[27022,28235,29874]]],["from",[3,3,[[54,1,1,0,1,[[1125,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[29824,29906,30237]]],["perverteth",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25949]]]]},{"k":"G655","v":[["Abhor",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28254]]]]},{"k":"G656","v":[["*",[3,3,[[42,3,3,0,3,[[1005,1,1,0,1],[1008,1,1,1,2],[1012,1,1,2,3]]]],[26462,26622,26728]]],["synagogue",[2,2,[[42,2,2,0,2,[[1005,1,1,0,1],[1008,1,1,1,2]]]],[26462,26622]]],["synagogues",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26728]]]]},{"k":"G657","v":[["*",[6,6,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[986,1,1,2,3]]],[43,2,2,3,5,[[1035,2,2,3,5]]],[46,1,1,5,6,[[1079,1,1,5,6]]]],[24453,25362,25586,27575,27578,28837]]],["+",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]]],[24453,27578]]],["farewell",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25362]]],["forsaketh",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25586]]],["leave",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[46,1,1,1,2,[[1079,1,1,1,2]]]],[27575,28837]]]]},{"k":"G658","v":[["finished",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30281]]]]},{"k":"G659","v":[["*",[8,8,[[43,1,1,0,1,[[1024,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]],[48,2,2,2,4,[[1100,2,2,2,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]],[57,1,1,5,6,[[1144,1,1,5,6]]],[58,1,1,6,7,[[1146,1,1,6,7]]],[59,1,1,7,8,[[1152,1,1,7,8]]]],[27174,28278,29294,29297,29525,30213,30287,30400]]],["apart",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30287]]],["aside",[2,2,[[57,1,1,0,1,[[1144,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[30213,30400]]],["away",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29297]]],["down",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27174]]],["off",[3,3,[[44,1,1,0,1,[[1058,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]]],[28278,29294,29525]]]]},{"k":"G660","v":[["off",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]]],[25306,27904]]]]},{"k":"G661","v":[["repay",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29957]]]]},{"k":"G662","v":[["bold",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28208]]]]},{"k":"G663","v":[["severity",[2,1,[[44,2,1,0,1,[[1056,2,1,0,1]]]],[28231]]]]},{"k":"G664","v":[["*",[2,2,[[46,1,1,0,1,[[1090,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[29053,29905]]],["sharply",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29905]]],["sharpness",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29053]]]]},{"k":"G665","v":[["+",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29858]]]]},{"k":"G666","v":[["absence",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29403]]]]},{"k":"G667","v":[["*",[5,5,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[65,2,2,3,5,[[1183,1,1,3,4],[1187,1,1,4,5]]]],[24827,25642,28779,30978,31063]]],["+",[2,2,[[65,2,2,0,2,[[1183,1,1,0,1],[1187,1,1,1,2]]]],[30978,31063]]],["away",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24827]]],["bring",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28779]]],["carried",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25642]]]]},{"k":"G668","v":[["*",[3,3,[[60,3,3,0,3,[[1156,1,1,0,1],[1157,2,2,1,3]]]],[30483,30518,30520]]],["+",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30518]]],["escaped",[2,2,[[60,2,2,0,2,[[1156,1,1,0,1],[1157,1,1,1,2]]]],[30483,30520]]]]},{"k":"G669","v":[["*",[3,3,[[43,3,3,0,3,[[1019,2,2,0,2],[1043,1,1,2,3]]]],[26953,26963,27848]]],["forth",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27848]]],["said",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26963]]],["utterance",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26953]]]]},{"k":"G670","v":[["unlade",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27667]]]]},{"k":"G671","v":[["using",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29516]]]]},{"k":"G672","v":[["*",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[43,1,1,2,3,[[1030,1,1,2,3]]]],[23339,25340,27375]]],["depart",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23339]]],["departeth",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25340]]],["departing",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27375]]]]},{"k":"G673","v":[["*",[2,2,[[43,1,1,0,1,[[1032,1,1,0,1]]],[65,1,1,1,2,[[1172,1,1,1,2]]]],[27481,30807]]],["asunder",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27481]]],["departed",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30807]]]]},{"k":"G674","v":[["them",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25852]]]]},{"k":"G675","v":[["Appii",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27914]]]]},{"k":"G676","v":[["unto",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29804]]]]},{"k":"G677","v":[["*",[3,3,[[43,1,1,0,1,[[1041,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]]],[27785,28599,29371]]],["+",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28599]]],["offence",[2,2,[[43,1,1,0,1,[[1041,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[27785,29371]]]]},{"k":"G678","v":[["+",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30391]]]]},{"k":"G679","v":[["falling",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30696]]]]},{"k":"G680","v":[["*",[36,33,[[39,9,8,0,8,[[936,2,2,0,2],[937,3,3,2,5],[942,2,1,5,6],[945,1,1,6,7],[948,1,1,7,8]]],[40,11,10,8,18,[[957,1,1,8,9],[959,1,1,9,10],[961,4,4,10,14],[962,2,1,14,15],[963,1,1,15,16],[964,1,1,16,17],[966,1,1,17,18]]],[41,11,10,18,28,[[977,1,1,18,19],[978,1,1,19,20],[979,2,2,20,22],[980,5,4,22,26],[990,1,1,26,27],[994,1,1,27,28]]],[42,1,1,28,29,[[1016,1,1,28,29]]],[45,1,1,29,30,[[1068,1,1,29,30]]],[46,1,1,30,31,[[1083,1,1,30,31]]],[50,1,1,31,32,[[1108,1,1,31,32]]],[61,1,1,32,33,[[1163,1,1,32,33]]]],[23348,23360,23399,23400,23408,23633,23707,23826,24256,24298,24391,24392,24394,24395,24463,24496,24522,24601,25120,25165,25209,25234,25289,25290,25291,25292,25703,25915,26884,28488,28915,29515,30642]]],["Touch",[2,2,[[42,1,1,0,1,[[1016,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[26884,29515]]],["touch",[11,11,[[39,2,2,0,2,[[937,1,1,0,1],[942,1,1,1,2]]],[40,5,5,2,7,[[959,1,1,2,3],[961,1,1,3,4],[962,1,1,4,5],[964,1,1,5,6],[966,1,1,6,7]]],[41,2,2,7,9,[[978,1,1,7,8],[990,1,1,8,9]]],[45,1,1,9,10,[[1068,1,1,9,10]]],[46,1,1,10,11,[[1083,1,1,10,11]]]],[23400,23633,24298,24392,24463,24522,24601,25165,25703,28488,28915]]],["touched",[21,20,[[39,7,7,0,7,[[936,2,2,0,2],[937,2,2,2,4],[942,1,1,4,5],[945,1,1,5,6],[948,1,1,6,7]]],[40,6,6,7,13,[[957,1,1,7,8],[961,3,3,8,11],[962,1,1,11,12],[963,1,1,12,13]]],[41,8,7,13,20,[[977,1,1,13,14],[979,1,1,14,15],[980,5,4,15,19],[994,1,1,19,20]]]],[23348,23360,23399,23408,23633,23707,23826,24256,24391,24394,24395,24463,24496,25120,25209,25289,25290,25291,25292,25915]]],["toucheth",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[61,1,1,1,2,[[1163,1,1,1,2]]]],[25234,30642]]]]},{"k":"G681","v":[["*",[4,4,[[41,4,4,0,4,[[980,1,1,0,1],[983,1,1,1,2],[987,1,1,2,3],[994,1,1,3,4]]]],[25261,25438,25596,25919]]],["kindled",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25919]]],["light",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25596]]],["lighted",[2,2,[[41,2,2,0,2,[[980,1,1,0,1],[983,1,1,1,2]]]],[25261,25438]]]]},{"k":"G682","v":[["Apphia",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29940]]]]},{"k":"G683","v":[["*",[6,6,[[43,3,3,0,3,[[1024,2,2,0,2],[1030,1,1,2,3]]],[44,2,2,3,5,[[1056,2,2,3,5]]],[53,1,1,5,6,[[1119,1,1,5,6]]]],[27143,27155,27408,28210,28211,29715]]],["+",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1030,1,1,1,2]]]],[27143,27408]]],["away",[3,3,[[44,2,2,0,2,[[1056,2,2,0,2]]],[53,1,1,2,3,[[1119,1,1,2,3]]]],[28210,28211,29715]]],["from",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27155]]]]},{"k":"G684","v":[["*",[20,19,[[39,2,2,0,2,[[935,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[42,1,1,3,4,[[1013,1,1,3,4]]],[43,2,2,4,6,[[1025,1,1,4,5],[1042,1,1,5,6]]],[44,1,1,6,7,[[1054,1,1,6,7]]],[49,2,2,7,9,[[1103,1,1,7,8],[1105,1,1,8,9]]],[52,1,1,9,10,[[1117,1,1,9,10]]],[53,1,1,10,11,[[1124,1,1,10,11]]],[57,1,1,11,12,[[1142,1,1,11,12]]],[60,6,5,12,17,[[1157,4,3,12,15],[1158,2,2,15,17]]],[65,2,2,17,19,[[1183,2,2,17,19]]]],[23329,24062,24758,26771,27196,27812,28177,29389,29440,29664,29797,30172,30501,30502,30503,30529,30538,30983,30986]]],["+",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27196]]],["damnable",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30501]]],["damnation",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30503]]],["destruction",[5,5,[[39,1,1,0,1,[[935,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]],[60,2,2,3,5,[[1157,1,1,3,4],[1158,1,1,4,5]]]],[23329,28177,29440,30501,30538]]],["die",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27812]]],["perdition",[8,8,[[42,1,1,0,1,[[1013,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]],[53,1,1,3,4,[[1124,1,1,3,4]]],[57,1,1,4,5,[[1142,1,1,4,5]]],[60,1,1,5,6,[[1158,1,1,5,6]]],[65,2,2,6,8,[[1183,2,2,6,8]]]],[26771,29389,29664,29797,30172,30529,30983,30986]]],["waste",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24062,24758]]],["ways",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30502]]]]},{"k":"G685","v":[["cursing",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28005]]]]},{"k":"G686","v":[["*",[51,51,[[39,7,7,0,7,[[935,1,1,0,1],[940,1,1,1,2],[945,1,1,2,3],[946,1,1,3,4],[947,2,2,4,6],[952,1,1,6,7]]],[40,2,2,7,9,[[960,1,1,7,8],[967,1,1,8,9]]],[41,6,6,9,15,[[973,1,1,9,10],[980,1,1,10,11],[983,2,2,11,13],[984,1,1,13,14],[994,1,1,14,15]]],[43,6,6,15,21,[[1024,1,1,15,16],[1025,1,1,16,17],[1028,1,1,17,18],[1029,1,1,18,19],[1034,1,1,19,20],[1038,1,1,20,21]]],[44,11,11,21,32,[[1050,1,1,21,22],[1052,3,3,22,25],[1053,2,2,25,27],[1054,2,2,27,29],[1055,1,1,29,30],[1059,2,2,30,32]]],[45,5,5,32,37,[[1066,1,1,32,33],[1068,1,1,33,34],[1076,3,3,34,37]]],[46,3,3,37,40,[[1078,1,1,37,38],[1082,1,1,38,39],[1084,1,1,39,40]]],[47,6,6,40,46,[[1092,1,1,40,41],[1093,2,2,41,43],[1094,1,1,43,44],[1095,1,1,44,45],[1096,1,1,45,46]]],[48,1,1,46,47,[[1098,1,1,46,47]]],[51,1,1,47,48,[[1115,1,1,47,48]]],[52,1,1,48,49,[[1117,1,1,48,49]]],[57,2,2,49,51,[[1136,1,1,49,50],[1144,1,1,50,51]]]],[23336,23517,23726,23728,23787,23789,24002,24364,24653,24959,25270,25425,25453,25501,25887,27117,27198,27325,27355,27550,27702,28065,28094,28112,28116,28117,28128,28171,28173,28205,28292,28299,28464,28501,28732,28733,28736,28817,28891,28928,29102,29109,29131,29162,29173,29198,29248,29627,29676,30023,30220]]],["+",[15,15,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,2,2,2,4,[[980,1,1,2,3],[994,1,1,3,4]]],[43,2,2,4,6,[[1024,1,1,4,5],[1034,1,1,5,6]]],[44,3,3,6,9,[[1050,1,1,6,7],[1053,1,1,7,8],[1054,1,1,8,9]]],[45,2,2,9,11,[[1068,1,1,9,10],[1076,1,1,10,11]]],[46,1,1,11,12,[[1078,1,1,11,12]]],[47,1,1,12,13,[[1096,1,1,12,13]]],[51,1,1,13,14,[[1115,1,1,13,14]]],[52,1,1,14,15,[[1117,1,1,14,15]]]],[23728,24364,25270,25887,27117,27550,28065,28128,28173,28501,28733,28817,29198,29627,29676]]],["-",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28299]]],["Now",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29248]]],["So",[4,4,[[44,4,4,0,4,[[1052,2,2,0,2],[1054,1,1,2,3],[1059,1,1,3,4]]]],[28094,28116,28171,28292]]],["Then",[3,3,[[39,1,1,0,1,[[945,1,1,0,1]]],[43,1,1,1,2,[[1028,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]]],[23726,27325,28736]]],["Truly",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25453]]],["Wherefore",[2,2,[[39,1,1,0,1,[[935,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]]],[23336,28928]]],["doubt",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25425]]],["haply",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24653]]],["of",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24959]]],["perhaps",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27198]]],["that",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27702]]],["then",[14,14,[[39,3,3,0,3,[[940,1,1,0,1],[947,1,1,1,2],[952,1,1,2,3]]],[41,1,1,3,4,[[984,1,1,3,4]]],[44,2,2,4,6,[[1052,1,1,4,5],[1055,1,1,5,6]]],[45,2,2,6,8,[[1066,1,1,6,7],[1076,1,1,7,8]]],[46,1,1,8,9,[[1082,1,1,8,9]]],[47,4,4,9,13,[[1092,1,1,9,10],[1093,1,1,10,11],[1094,1,1,11,12],[1095,1,1,12,13]]],[57,1,1,13,14,[[1144,1,1,13,14]]]],[23517,23787,24002,25501,28112,28205,28464,28732,28891,29102,29131,29162,29173,30220]]],["therefore",[4,4,[[39,1,1,0,1,[[947,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]],[47,1,1,2,3,[[1093,1,1,2,3]]],[57,1,1,3,4,[[1136,1,1,3,4]]]],[23789,28117,29109,30023]]],["was",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27355]]]]},{"k":"G687","v":[["*",[3,3,[[41,1,1,0,1,[[990,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]]],[25696,27206,29098]]],["+",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27206]]],["shall",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25696]]],["therefore",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29098]]]]},{"k":"G688","v":[["Arabia",[2,2,[[47,2,2,0,2,[[1091,1,1,0,1],[1094,1,1,1,2]]]],[29074,29156]]]]},{"k":"G689","v":[["Aram",[3,3,[[39,2,2,0,2,[[929,2,2,0,2]]],[41,1,1,2,3,[[975,1,1,2,3]]]],[23147,23148,25058]]]]},{"k":"G690","v":[["Arabians",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26960]]]]},{"k":"G691","v":[["lingereth",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30503]]]]},{"k":"G692","v":[["*",[8,6,[[39,4,3,0,3,[[940,1,1,0,1],[948,3,2,1,3]]],[53,2,1,3,4,[[1123,2,1,3,4]]],[55,1,1,4,5,[[1129,1,1,4,5]]],[60,1,1,5,6,[[1156,1,1,5,6]]]],[23525,23795,23798,29776,29904,30487]]],["barren",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30487]]],["idle",[6,4,[[39,4,3,0,3,[[940,1,1,0,1],[948,3,2,1,3]]],[53,2,1,3,4,[[1123,2,1,3,4]]]],[23525,23795,23798,29776]]],["slow",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29904]]]]},{"k":"G693","v":[["silver",[3,3,[[43,1,1,0,1,[[1036,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]],[65,1,1,2,3,[[1175,1,1,2,3]]]],[27609,29847,30860]]]]},{"k":"G694","v":[["*",[20,20,[[39,9,9,0,9,[[953,2,2,0,2],[954,1,1,2,3],[955,4,4,3,7],[956,2,2,7,9]]],[40,1,1,9,10,[[970,1,1,9,10]]],[41,4,4,10,14,[[981,1,1,10,11],[991,2,2,11,13],[994,1,1,13,14]]],[43,5,5,14,19,[[1020,1,1,14,15],[1024,1,1,15,16],[1025,1,1,16,17],[1036,1,1,17,18],[1037,1,1,18,19]]],[59,1,1,19,20,[[1151,1,1,19,20]]]],[24026,24035,24069,24132,24134,24135,24138,24207,24210,24765,25304,25746,25754,25869,27002,27132,27196,27604,27659,30392]]],["Silver",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27002]]],["money",[11,11,[[39,4,4,0,4,[[953,2,2,0,2],[956,2,2,2,4]]],[40,1,1,4,5,[[970,1,1,4,5]]],[41,4,4,5,9,[[981,1,1,5,6],[991,2,2,6,8],[994,1,1,8,9]]],[43,2,2,9,11,[[1024,1,1,9,10],[1025,1,1,10,11]]]],[24026,24035,24207,24210,24765,25304,25746,25754,25869,27132,27196]]],["pieces",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24135]]],["silver",[7,7,[[39,4,4,0,4,[[954,1,1,0,1],[955,3,3,1,4]]],[43,2,2,4,6,[[1036,1,1,4,5],[1037,1,1,5,6]]],[59,1,1,6,7,[[1151,1,1,6,7]]]],[24069,24132,24134,24138,27604,27659,30392]]]]},{"k":"G695","v":[["silversmith",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27609]]]]},{"k":"G696","v":[["silver",[5,5,[[39,1,1,0,1,[[938,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[45,1,1,2,3,[[1064,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]],[65,1,1,4,5,[[1184,1,1,4,5]]]],[23426,27552,28422,30357,31005]]]]},{"k":"G697","v":[["*",[2,2,[[43,2,2,0,2,[[1034,2,2,0,2]]]],[27542,27545]]],["Areopagus",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27542]]],["hill",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27545]]]]},{"k":"G698","v":[["Areopagite",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27557]]]]},{"k":"G699","v":[["pleasing",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29475]]]]},{"k":"G700","v":[["*",[17,16,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[43,1,1,2,3,[[1023,1,1,2,3]]],[44,4,4,3,7,[[1053,1,1,3,4],[1060,3,3,4,7]]],[45,4,4,7,11,[[1068,3,3,7,10],[1071,1,1,10,11]]],[47,2,1,11,12,[[1091,2,1,11,12]]],[51,3,3,12,15,[[1112,2,2,12,14],[1114,1,1,14,15]]],[54,1,1,15,16,[[1126,1,1,15,16]]]],[23603,24429,27106,28124,28304,28305,28306,28519,28520,28521,28600,29067,29574,29585,29604,29831]]],["please",[11,11,[[44,3,3,0,3,[[1053,1,1,0,1],[1060,2,2,1,3]]],[45,4,4,3,7,[[1068,3,3,3,6],[1071,1,1,6,7]]],[47,1,1,7,8,[[1091,1,1,7,8]]],[51,2,2,8,10,[[1112,1,1,8,9],[1114,1,1,9,10]]],[54,1,1,10,11,[[1126,1,1,10,11]]]],[28124,28304,28305,28519,28520,28521,28600,29067,29585,29604,29831]]],["pleased",[5,5,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[43,1,1,2,3,[[1023,1,1,2,3]]],[44,1,1,3,4,[[1060,1,1,3,4]]],[47,1,1,4,5,[[1091,1,1,4,5]]]],[23603,24429,27106,28306,29067]]],["pleasing",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29574]]]]},{"k":"G701","v":[["*",[4,4,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,2,2,1,3,[[1023,1,1,1,2],[1029,1,1,2,3]]],[61,1,1,3,4,[[1161,1,1,3,4]]]],[26410,27103,27340,30601]]],["+",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27340]]],["please",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26410]]],["pleasing",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30601]]],["reason",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27103]]]]},{"k":"G702","v":[["Aretas",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29021]]]]},{"k":"G703","v":[["*",[5,4,[[49,1,1,0,1,[[1106,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]],[60,3,2,2,4,[[1156,3,2,2,4]]]],[29450,30408,30482,30484]]],["praises",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30408]]],["virtue",[4,3,[[49,1,1,0,1,[[1106,1,1,0,1]]],[60,3,2,1,3,[[1156,3,2,1,3]]]],[29450,30482,30484]]]]},{"k":"G704","v":[["lambs",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25366]]]]},{"k":"G705","v":[["*",[3,3,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[65,1,1,2,3,[[1173,1,1,2,3]]]],[23447,25466,30819]]],["+",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30819]]],["numbered",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23447,25466]]]]},{"k":"G706","v":[["number",[18,15,[[41,1,1,0,1,[[994,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[43,5,5,2,7,[[1021,1,1,2,3],[1022,1,1,3,4],[1023,1,1,4,5],[1028,1,1,5,6],[1033,1,1,6,7]]],[44,1,1,7,8,[[1054,1,1,7,8]]],[65,10,7,8,15,[[1171,1,1,8,9],[1173,1,1,9,10],[1175,2,1,10,11],[1179,4,2,11,13],[1181,1,1,13,14],[1186,1,1,14,15]]]],[25867,26267,27026,27095,27108,27328,27488,28182,30790,30814,30856,30925,30926,30948,31046]]]]},{"k":"G707","v":[["Arimathaea",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]]],[24186,24869,25986,26863]]]]},{"k":"G708","v":[["Aristarchus",[5,5,[[43,3,3,0,3,[[1036,1,1,0,1],[1037,1,1,1,2],[1044,1,1,2,3]]],[50,1,1,3,4,[[1110,1,1,3,4]]],[56,1,1,4,5,[[1132,1,1,4,5]]]],[27614,27630,27857,29552,29962]]]]},{"k":"G709","v":[["*",[3,3,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,2,2,1,3,[[1017,2,2,1,3]]]],[25442,26910,26913]]],["dine",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,1,1,1,2,[[1017,1,1,1,2]]]],[25442,26910]]],["dined",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26913]]]]},{"k":"G710","v":[["*",[3,3,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]],[46,1,1,2,3,[[1083,1,1,2,3]]]],[23285,25968,28905]]],["hand",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23285]]],["left",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]]],[25968,28905]]]]},{"k":"G711","v":[["Aristobulus'",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28346]]]]},{"k":"G712","v":[["dinner",[3,3,[[39,1,1,0,1,[[950,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[986,1,1,2,3]]]],[23876,25443,25565]]]]},{"k":"G713","v":[["*",[3,3,[[39,2,2,0,2,[[934,1,1,0,1],[938,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[23316,23442,30449]]],["Sufficient",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23316]]],["enough",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23442]]],["suffice",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30449]]]]},{"k":"G714","v":[["*",[8,8,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[42,2,2,2,4,[[1002,1,1,2,3],[1010,1,1,3,4]]],[46,1,1,4,5,[[1089,1,1,4,5]]],[53,1,1,5,6,[[1124,1,1,5,6]]],[57,1,1,6,7,[[1145,1,1,6,7]]],[63,1,1,7,8,[[1165,1,1,7,8]]]],[24017,25039,26264,26676,29031,29796,30246,30668]]],["+",[3,3,[[39,1,1,0,1,[[953,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]]],[24017,26264,29796]]],["content",[3,3,[[41,1,1,0,1,[[975,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]],[63,1,1,2,3,[[1165,1,1,2,3]]]],[25039,30246,30668]]],["sufficeth",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26676]]],["sufficient",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29031]]]]},{"k":"G715","v":[["bear",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30910]]]]},{"k":"G716","v":[["*",[4,4,[[43,3,3,0,3,[[1025,3,3,0,3]]],[65,1,1,3,4,[[1175,1,1,3,4]]]],[27204,27205,27214,30849]]],["+",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27204]]],["chariot",[2,2,[[43,2,2,0,2,[[1025,2,2,0,2]]]],[27205,27214]]],["chariots",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30849]]]]},{"k":"G717","v":[["Armageddon",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30970]]]]},{"k":"G718","v":[["espoused",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28991]]]]},{"k":"G719","v":[["joints",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30026]]]]},{"k":"G720","v":[["*",[31,28,[[39,4,3,0,3,[[938,2,1,0,1],[954,2,2,1,3]]],[40,2,2,3,5,[[970,2,2,3,5]]],[41,3,3,5,8,[[980,1,1,5,6],[984,1,1,6,7],[994,1,1,7,8]]],[42,3,3,8,11,[[997,1,1,8,9],[1014,2,2,9,11]]],[43,4,4,11,15,[[1020,2,2,11,13],[1021,1,1,13,14],[1024,1,1,14,15]]],[53,1,1,15,16,[[1123,1,1,15,16]]],[54,4,3,16,19,[[1126,3,2,16,18],[1127,1,1,18,19]]],[55,2,2,19,21,[[1129,1,1,19,20],[1130,1,1,20,21]]],[57,1,1,21,22,[[1143,1,1,21,22]]],[60,1,1,22,23,[[1157,1,1,22,23]]],[61,3,2,23,25,[[1160,3,2,23,25]]],[64,1,1,25,26,[[1166,1,1,25,26]]],[65,2,2,26,28,[[1168,1,1,26,27],[1169,1,1,27,28]]]],[23450,24124,24126,24822,24824,25290,25468,25921,26064,26810,26812,27009,27010,27038,27151,29771,29839,29840,29858,29908,29920,30196,30501,30572,30573,30676,30730,30754]]],["denied",[14,14,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,2,2,2,4,[[970,2,2,2,4]]],[41,2,2,4,6,[[980,1,1,4,5],[994,1,1,5,6]]],[42,3,3,6,9,[[997,1,1,6,7],[1014,2,2,7,9]]],[43,2,2,9,11,[[1020,2,2,9,11]]],[53,1,1,11,12,[[1123,1,1,11,12]]],[65,2,2,12,14,[[1168,1,1,12,13],[1169,1,1,13,14]]]],[24124,24126,24822,24824,25290,25921,26064,26810,26812,27009,27010,29771,30730,30754]]],["denieth",[4,3,[[41,1,1,0,1,[[984,1,1,0,1]]],[61,3,2,1,3,[[1160,3,2,1,3]]]],[25468,30572,30573]]],["deny",[7,5,[[39,2,1,0,1,[[938,2,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]],[54,3,2,2,4,[[1126,3,2,2,4]]],[55,1,1,4,5,[[1129,1,1,4,5]]]],[23450,27038,29839,29840,29908]]],["denying",[4,4,[[54,1,1,0,1,[[1127,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[29858,29920,30501,30676]]],["refused",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[27151,30196]]]]},{"k":"G721","v":[["*",[30,28,[[42,1,1,0,1,[[1017,1,1,0,1]]],[65,29,27,1,28,[[1171,4,4,1,5],[1172,2,2,5,7],[1173,4,4,7,11],[1178,1,1,11,12],[1179,2,2,12,14],[1180,4,3,14,17],[1181,1,1,17,18],[1183,2,1,18,19],[1185,2,2,19,21],[1187,5,5,21,26],[1188,2,2,26,28]]]],[26913,30785,30787,30791,30792,30794,30809,30819,30820,30824,30827,30902,30916,30919,30927,30930,30936,30949,30989,31024,31026,31062,31067,31075,31076,31080,31081,31083]]],["Lamb",[26,24,[[65,26,24,0,24,[[1171,4,4,0,4],[1172,2,2,4,6],[1173,4,4,6,10],[1178,1,1,10,11],[1179,1,1,11,12],[1180,4,3,12,15],[1181,1,1,15,16],[1183,2,1,16,17],[1185,2,2,17,19],[1187,3,3,19,22],[1188,2,2,22,24]]]],[30785,30787,30791,30792,30794,30809,30819,30820,30824,30827,30902,30916,30927,30930,30936,30949,30989,31024,31026,31067,31075,31076,31081,31083]]],["Lamb's",[2,2,[[65,2,2,0,2,[[1187,2,2,0,2]]]],[31062,31080]]],["lamb",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30919]]],["lambs",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26913]]]]},{"k":"G722","v":[["*",[3,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[45,2,1,1,2,[[1070,2,1,1,2]]]],[25658,28550]]],["plow",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28550]]],["ploweth",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28550]]],["plowing",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25658]]]]},{"k":"G723","v":[["plough",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25363]]]]},{"k":"G724","v":[["*",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[23943,25444,30167]]],["extortion",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23943]]],["ravening",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25444]]],["spoiling",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30167]]]]},{"k":"G725","v":[["robbery",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29397]]]]},{"k":"G726","v":[["*",[13,13,[[39,2,2,0,2,[[939,1,1,0,1],[941,1,1,1,2]]],[42,4,4,2,6,[[1002,1,1,2,3],[1006,3,3,3,6]]],[43,2,2,6,8,[[1025,1,1,6,7],[1040,1,1,7,8]]],[46,2,2,8,10,[[1089,2,2,8,10]]],[51,1,1,10,11,[[1114,1,1,10,11]]],[64,1,1,11,12,[[1166,1,1,11,12]]],[65,1,1,12,13,[[1178,1,1,12,13]]]],[23471,23558,26272,26493,26509,26510,27215,27744,29024,29026,29620,30695,30896]]],["+",[3,3,[[39,1,1,0,1,[[939,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[43,1,1,2,3,[[1040,1,1,2,3]]]],[23471,26272,27744]]],["away",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]]],[23558,27215]]],["catcheth",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26493]]],["pluck",[2,2,[[42,2,2,0,2,[[1006,2,2,0,2]]]],[26509,26510]]],["pulling",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30695]]],["up",[4,4,[[46,2,2,0,2,[[1089,2,2,0,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]],[65,1,1,3,4,[[1178,1,1,3,4]]]],[29024,29026,29620,30896]]]]},{"k":"G727","v":[["*",[5,5,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]],[45,3,3,2,5,[[1066,2,2,2,4],[1067,1,1,4,5]]]],[23331,25699,28464,28465,28477]]],["extortioner",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28465]]],["extortioners",[3,3,[[41,1,1,0,1,[[990,1,1,0,1]]],[45,2,2,1,3,[[1066,1,1,1,2],[1067,1,1,2,3]]]],[25699,28464,28477]]],["ravening",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23331]]]]},{"k":"G728","v":[["earnest",[3,3,[[46,2,2,0,2,[[1078,1,1,0,1],[1082,1,1,1,2]]],[48,1,1,2,3,[[1097,1,1,2,3]]]],[28822,28882,29220]]]]},{"k":"G729","v":[["seam",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26848]]]]},{"k":"G730","v":[["*",[9,7,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[974,1,1,2,3]]],[44,3,1,3,4,[[1046,3,1,3,4]]],[47,1,1,4,5,[[1093,1,1,4,5]]],[65,2,2,5,7,[[1178,2,2,5,7]]]],[23766,24594,24996,27957,29130,30896,30904]]],["male",[4,4,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[974,1,1,2,3]]],[47,1,1,3,4,[[1093,1,1,3,4]]]],[23766,24594,24996,29130]]],["man",[2,2,[[65,2,2,0,2,[[1178,2,2,0,2]]]],[30896,30904]]],["men",[3,1,[[44,3,1,0,1,[[1046,3,1,0,1]]]],[27957]]]]},{"k":"G731","v":[["unspeakable",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29026]]]]},{"k":"G732","v":[["*",[5,5,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,3,3,1,4,[[962,2,2,1,3],[972,1,1,3,4]]],[45,1,1,4,5,[[1072,1,1,4,5]]]],[23611,24412,24420,24891,28630]]],["folk",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24412]]],["sick",[3,3,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[972,1,1,2,3]]]],[23611,24420,24891]]],["sickly",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28630]]]]},{"k":"G733","v":[["mankind",[2,2,[[45,1,1,0,1,[[1067,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]]],[28476,29706]]]]},{"k":"G734","v":[["Artemas",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29935]]]]},{"k":"G735","v":[["Diana",[5,5,[[43,5,5,0,5,[[1036,5,5,0,5]]]],[27609,27612,27613,27619,27620]]]]},{"k":"G736","v":[["mainsail",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27895]]]]},{"k":"G737","v":[["*",[36,35,[[39,7,7,0,7,[[931,1,1,0,1],[937,1,1,1,2],[939,1,1,2,3],[951,1,1,3,4],[954,3,3,4,7]]],[42,13,13,7,20,[[997,1,1,7,8],[998,1,1,8,9],[1001,1,1,9,10],[1005,2,2,10,12],[1009,4,4,12,16],[1010,1,1,16,17],[1012,3,3,17,20]]],[45,7,6,20,26,[[1065,2,2,20,22],[1069,1,1,22,23],[1074,2,1,23,24],[1076,1,1,24,25],[1077,1,1,25,26]]],[47,3,3,26,29,[[1091,2,2,26,28],[1094,1,1,28,29]]],[51,1,1,29,30,[[1113,1,1,29,30]]],[52,1,1,30,31,[[1117,1,1,30,31]]],[59,2,2,31,33,[[1151,2,2,31,33]]],[61,1,1,33,34,[[1160,1,1,33,34]]],[65,1,1,34,35,[[1178,1,1,34,35]]]],[23207,23397,23471,23957,24083,24107,24118,26095,26105,26227,26459,26465,26637,26649,26663,26667,26675,26738,26750,26757,28444,28446,28534,28677,28724,28783,29066,29067,29151,29596,29668,30380,30382,30559,30901]]],["+",[9,9,[[39,4,4,0,4,[[937,1,1,0,1],[951,1,1,1,2],[954,2,2,2,4]]],[42,4,4,4,8,[[997,1,1,4,5],[1001,1,1,5,6],[1009,1,1,6,7],[1012,1,1,7,8]]],[52,1,1,8,9,[[1117,1,1,8,9]]]],[23397,23957,24083,24118,26095,26227,26649,26750,29668]]],["Now",[1,1,[[65,1,1,0,1,[[1178,1,1,0,1]]]],[30901]]],["day",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28446]]],["henceforth",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26675]]],["hour",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28534]]],["now",[21,20,[[39,3,3,0,3,[[931,1,1,0,1],[939,1,1,1,2],[954,1,1,2,3]]],[42,8,8,3,11,[[998,1,1,3,4],[1005,2,2,4,6],[1009,3,3,6,9],[1012,2,2,9,11]]],[45,3,2,11,13,[[1074,2,1,11,12],[1077,1,1,12,13]]],[47,3,3,13,16,[[1091,2,2,13,15],[1094,1,1,15,16]]],[51,1,1,16,17,[[1113,1,1,16,17]]],[59,2,2,17,19,[[1151,2,2,17,19]]],[61,1,1,19,20,[[1160,1,1,19,20]]]],[23207,23471,24107,26105,26459,26465,26637,26663,26667,26738,26757,28677,28783,29066,29067,29151,29596,30380,30382,30559]]],["present",[2,2,[[45,2,2,0,2,[[1065,1,1,0,1],[1076,1,1,1,2]]]],[28444,28724]]]]},{"k":"G738","v":[["newborn",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30401]]]]},{"k":"G739","v":[["perfect",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29870]]]]},{"k":"G740","v":[["*",[99,91,[[39,21,20,0,20,[[932,2,2,0,2],[934,1,1,2,3],[935,1,1,3,4],[940,1,1,4,5],[942,3,2,5,7],[943,5,5,7,12],[944,7,7,12,19],[954,1,1,19,20]]],[40,22,20,20,40,[[958,1,1,20,21],[959,1,1,21,22],[962,8,7,22,29],[963,3,3,29,32],[964,8,7,32,39],[970,1,1,39,40]]],[41,16,16,40,56,[[976,2,2,40,42],[978,1,1,42,43],[979,1,1,43,44],[981,3,3,44,47],[983,3,3,47,50],[986,2,2,50,52],[987,1,1,52,53],[994,1,1,53,54],[996,2,2,54,56]]],[42,24,20,56,76,[[1002,21,17,56,73],[1009,1,1,73,74],[1017,2,2,74,76]]],[43,5,5,76,81,[[1019,2,2,76,78],[1037,2,2,78,80],[1044,1,1,80,81]]],[45,7,6,81,87,[[1071,3,2,81,83],[1072,4,4,83,87]]],[46,1,1,87,88,[[1086,1,1,87,88]]],[52,2,2,88,90,[[1118,2,2,88,90]]],[57,1,1,90,91,[[1141,1,1,90,91]]]],[23212,23213,23293,23325,23493,23614,23616,23635,23659,23666,23667,23669,23677,23679,23680,23681,23682,23683,23684,24080,24286,24308,24415,24443,24444,24445,24448,24451,24459,24465,24468,24490,24504,24505,24506,24514,24516,24517,24519,24776,25066,25067,25150,25228,25304,25314,25317,25408,25410,25416,25554,25568,25605,25883,26021,26026,26262,26264,26266,26268,26270,26280,26283,26288,26289,26290,26291,26292,26298,26305,26307,26308,26315,26648,26907,26911,26991,26995,27633,27637,27890,28583,28584,28623,28626,28627,28628,28966,29686,29690,30107]]],["+",[5,5,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,2,2,2,4,[[978,1,1,2,3],[987,1,1,3,4]]],[57,1,1,4,5,[[1141,1,1,4,5]]]],[23493,24286,25150,25605,30107]]],["bread",[71,66,[[39,13,13,0,13,[[932,2,2,0,2],[934,1,1,2,3],[935,1,1,3,4],[943,3,3,4,7],[944,5,5,7,12],[954,1,1,12,13]]],[40,12,12,13,25,[[959,1,1,13,14],[962,3,3,14,17],[963,3,3,17,20],[964,4,4,20,24],[970,1,1,24,25]]],[41,11,11,25,36,[[976,2,2,25,27],[979,1,1,27,28],[981,1,1,28,29],[983,2,2,29,31],[986,2,2,31,33],[994,1,1,33,34],[996,2,2,34,36]]],[42,20,16,36,52,[[1002,17,13,36,49],[1009,1,1,49,50],[1017,2,2,50,52]]],[43,5,5,52,57,[[1019,2,2,52,54],[1037,2,2,54,56],[1044,1,1,56,57]]],[45,7,6,57,63,[[1071,3,2,57,59],[1072,4,4,59,63]]],[46,1,1,63,64,[[1086,1,1,63,64]]],[52,2,2,64,66,[[1118,2,2,64,66]]]],[23212,23213,23293,23325,23635,23659,23666,23677,23679,23680,23683,23684,24080,24308,24415,24443,24444,24465,24468,24490,24504,24514,24516,24517,24776,25066,25067,25228,25304,25408,25416,25554,25568,25883,26021,26026,26262,26264,26280,26288,26289,26290,26291,26292,26298,26305,26307,26308,26315,26648,26907,26911,26991,26995,27633,27637,27890,28583,28584,28623,28626,28627,28628,28966,29686,29690]]],["loaf",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24514]]],["loaves",[22,20,[[39,7,6,0,6,[[942,3,2,0,2],[943,2,2,2,4],[944,2,2,4,6]]],[40,8,7,6,13,[[962,5,4,6,10],[964,3,3,10,13]]],[41,3,3,13,16,[[981,2,2,13,15],[983,1,1,15,16]]],[42,4,4,16,20,[[1002,4,4,16,20]]]],[23614,23616,23667,23669,23681,23682,24445,24448,24451,24459,24505,24506,24519,25314,25317,25410,26266,26268,26270,26283]]]]},{"k":"G741","v":[["*",[3,3,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]],[50,1,1,2,3,[[1110,1,1,2,3]]]],[24588,25587,29548]]],["season",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24588]]],["seasoned",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[50,1,1,1,2,[[1110,1,1,1,2]]]],[25587,29548]]]]},{"k":"G742","v":[["Arphaxad",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25061]]]]},{"k":"G743","v":[["archangel",[2,2,[[51,1,1,0,1,[[1114,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[29619,30681]]]]},{"k":"G744","v":[["*",[12,12,[[39,3,3,0,3,[[933,3,3,0,3]]],[41,2,2,3,5,[[981,2,2,3,5]]],[43,3,3,5,8,[[1032,2,2,5,7],[1038,1,1,7,8]]],[46,1,1,8,9,[[1082,1,1,8,9]]],[60,1,1,9,10,[[1157,1,1,9,10]]],[65,2,2,10,12,[[1178,1,1,10,11],[1186,1,1,11,12]]]],[23255,23261,23267,25309,25320,27449,27463,27680,28894,30505,30900,31040]]],["+",[2,2,[[43,2,2,0,2,[[1032,2,2,0,2]]]],[27449,27463]]],["old",[6,6,[[41,2,2,0,2,[[981,2,2,0,2]]],[43,1,1,2,3,[[1038,1,1,2,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]],[65,2,2,4,6,[[1178,1,1,4,5],[1186,1,1,5,6]]]],[25309,25320,27680,30505,30900,31040]]],["things",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28894]]],["time",[3,3,[[39,3,3,0,3,[[933,3,3,0,3]]]],[23255,23261,23267]]]]},{"k":"G745","v":[["Archelaus",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23191]]]]},{"k":"G746","v":[["*",[58,56,[[39,4,4,0,4,[[947,2,2,0,2],[952,2,2,2,4]]],[40,4,4,4,8,[[957,1,1,4,5],[966,1,1,5,6],[969,2,2,6,8]]],[41,3,3,8,11,[[973,1,1,8,9],[984,1,1,9,10],[992,1,1,10,11]]],[42,8,8,11,19,[[997,2,2,11,13],[998,1,1,13,14],[1002,1,1,14,15],[1004,2,2,15,17],[1011,1,1,17,18],[1012,1,1,18,19]]],[43,4,4,19,23,[[1027,1,1,19,20],[1028,2,2,20,22],[1043,1,1,22,23]]],[44,1,1,23,24,[[1053,1,1,23,24]]],[45,1,1,24,25,[[1076,1,1,24,25]]],[48,3,3,25,28,[[1097,1,1,25,26],[1099,1,1,26,27],[1102,1,1,27,28]]],[49,1,1,28,29,[[1106,1,1,28,29]]],[50,4,4,29,33,[[1107,2,2,29,31],[1108,2,2,31,33]]],[52,1,1,33,34,[[1117,1,1,33,34]]],[55,1,1,34,35,[[1131,1,1,34,35]]],[57,6,6,35,41,[[1133,1,1,35,36],[1134,1,1,36,37],[1135,1,1,37,38],[1137,1,1,38,39],[1138,1,1,39,40],[1139,1,1,40,41]]],[60,1,1,41,42,[[1158,1,1,41,42]]],[61,9,7,42,49,[[1159,1,1,42,43],[1160,6,4,43,47],[1161,2,2,47,49]]],[62,2,2,49,51,[[1164,2,2,49,51]]],[64,1,1,51,52,[[1166,1,1,51,52]]],[65,4,4,52,56,[[1167,1,1,52,53],[1169,1,1,53,54],[1187,1,1,54,55],[1188,1,1,55,56]]]],[23766,23770,23965,23978,24216,24594,24725,24736,24895,25470,25799,26045,26046,26106,26321,26406,26425,26726,26730,27270,27312,27322,27827,28154,28742,29227,29261,29349,29457,29481,29483,29504,29509,29674,29924,29973,29980,30009,30042,30045,30067,30526,30541,30557,30563,30564,30574,30587,30590,30650,30651,30678,30705,30760,31059,31093]]],["+",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]]],[24895,29980]]],["beginning",[38,36,[[39,4,4,0,4,[[947,2,2,0,2],[952,2,2,2,4]]],[40,3,3,4,7,[[957,1,1,4,5],[966,1,1,5,6],[969,1,1,6,7]]],[42,8,8,7,15,[[997,2,2,7,9],[998,1,1,9,10],[1002,1,1,10,11],[1004,2,2,11,13],[1011,1,1,13,14],[1012,1,1,14,15]]],[43,1,1,15,16,[[1028,1,1,15,16]]],[49,1,1,16,17,[[1106,1,1,16,17]]],[50,1,1,17,18,[[1107,1,1,17,18]]],[52,1,1,18,19,[[1117,1,1,18,19]]],[57,3,3,19,22,[[1133,1,1,19,20],[1135,1,1,20,21],[1139,1,1,21,22]]],[60,1,1,22,23,[[1158,1,1,22,23]]],[61,9,7,23,30,[[1159,1,1,23,24],[1160,6,4,24,28],[1161,2,2,28,30]]],[62,2,2,30,32,[[1164,2,2,30,32]]],[65,4,4,32,36,[[1167,1,1,32,33],[1169,1,1,33,34],[1187,1,1,34,35],[1188,1,1,35,36]]]],[23766,23770,23965,23978,24216,24594,24736,26045,26046,26106,26321,26406,26425,26726,26730,27322,29457,29483,29674,29973,30009,30067,30526,30541,30557,30563,30564,30574,30587,30590,30650,30651,30705,30760,31059,31093]]],["beginnings",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24725]]],["corners",[2,2,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]]],[27270,27312]]],["estate",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30678]]],["first",[2,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[57,1,1,1,2,[[1137,1,1,1,2]]]],[27827,30042]]],["magistrates",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25470]]],["power",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25799]]],["principalities",[6,6,[[44,1,1,0,1,[[1053,1,1,0,1]]],[48,2,2,1,3,[[1099,1,1,1,2],[1102,1,1,2,3]]],[50,2,2,3,5,[[1107,1,1,3,4],[1108,1,1,4,5]]],[55,1,1,5,6,[[1131,1,1,5,6]]]],[28154,29261,29349,29481,29509,29924]]],["principality",[2,2,[[48,1,1,0,1,[[1097,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[29227,29504]]],["principles",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30045]]],["rule",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28742]]]]},{"k":"G747","v":[["*",[4,4,[[43,2,2,0,2,[[1020,1,1,0,1],[1022,1,1,1,2]]],[57,2,2,2,4,[[1134,1,1,2,3],[1144,1,1,3,4]]]],[27011,27090,29987,30214]]],["+",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29987]]],["Prince",[2,2,[[43,2,2,0,2,[[1020,1,1,0,1],[1022,1,1,1,2]]]],[27011,27090]]],["author",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30214]]]]},{"k":"G748","v":[["priest",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27028]]]]},{"k":"G749","v":[["*",[123,120,[[39,25,24,0,24,[[930,1,1,0,1],[944,1,1,1,2],[948,1,1,2,3],[949,3,3,3,6],[954,11,10,6,16],[955,7,7,16,23],[956,1,1,23,24]]],[40,22,21,24,45,[[958,1,1,24,25],[964,1,1,25,26],[966,1,1,26,27],[967,2,2,27,29],[970,12,11,29,40],[971,5,5,40,45]]],[41,16,16,45,61,[[975,1,1,45,46],[981,1,1,46,47],[991,1,1,47,48],[992,2,2,48,50],[994,6,6,50,56],[995,4,4,56,60],[996,1,1,60,61]]],[42,21,20,61,81,[[1003,2,2,61,63],[1007,4,4,63,67],[1008,1,1,67,68],[1014,11,10,68,78],[1015,3,3,78,81]]],[43,22,22,81,103,[[1021,2,2,81,83],[1022,4,4,83,87],[1024,1,1,87,88],[1026,3,3,88,91],[1036,1,1,91,92],[1039,2,2,92,94],[1040,4,4,94,98],[1041,1,1,98,99],[1042,2,2,99,101],[1043,2,2,101,103]]],[57,17,17,103,120,[[1134,1,1,103,104],[1135,1,1,104,105],[1136,2,2,105,107],[1137,3,3,107,110],[1138,1,1,110,111],[1139,3,3,111,114],[1140,2,2,114,116],[1141,3,3,116,119],[1145,1,1,119,120]]]],[23173,23693,23810,23841,23849,23871,24057,24068,24101,24105,24111,24112,24113,24116,24117,24119,24130,24132,24135,24141,24149,24170,24191,24206,24286,24531,24621,24658,24667,24755,24764,24797,24801,24807,24808,24809,24814,24815,24817,24820,24827,24829,24836,24837,24857,25027,25323,25778,25780,25798,25866,25868,25914,25916,25918,25930,25939,25945,25948,25958,26011,26360,26373,26570,26572,26574,26580,26590,26788,26795,26798,26800,26801,26804,26807,26809,26811,26820,26831,26840,26846,27028,27045,27076,27080,27083,27086,27117,27217,27230,27237,27599,27709,27734,27736,27738,27739,27748,27770,27798,27811,27833,27835,29994,29996,30028,30029,30031,30035,30040,30064,30090,30091,30092,30093,30095,30112,30116,30130,30252]]],["+",[2,2,[[41,1,1,0,1,[[975,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[25027,27117]]],["Priest",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[29996]]],["priest",[49,48,[[39,5,5,0,5,[[954,5,5,0,5]]],[40,8,8,5,13,[[958,1,1,5,6],[970,7,7,6,13]]],[41,1,1,13,14,[[994,1,1,13,14]]],[42,10,9,14,23,[[1007,2,2,14,16],[1014,8,7,16,23]]],[43,11,11,23,34,[[1021,1,1,23,24],[1022,3,3,24,27],[1026,1,1,27,28],[1039,1,1,28,29],[1040,3,3,29,32],[1041,1,1,32,33],[1042,1,1,33,34]]],[57,14,14,34,48,[[1134,1,1,34,35],[1136,2,2,35,37],[1137,3,3,37,40],[1138,1,1,40,41],[1139,1,1,41,42],[1140,2,2,42,44],[1141,3,3,44,47],[1145,1,1,47,48]]]],[24057,24111,24116,24117,24119,24286,24801,24807,24808,24814,24815,24817,24820,25914,26572,26574,26798,26800,26801,26804,26807,26809,26811,27028,27076,27080,27086,27217,27709,27736,27738,27739,27770,27798,29994,30028,30029,30031,30035,30040,30064,30090,30093,30095,30112,30116,30130,30252]]],["priest's",[4,4,[[39,2,2,0,2,[[954,2,2,0,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]]],[24105,24112,25918,26795]]],["priests",[67,67,[[39,18,18,0,18,[[930,1,1,0,1],[944,1,1,1,2],[948,1,1,2,3],[949,3,3,3,6],[954,4,4,6,10],[955,7,7,10,17],[956,1,1,17,18]]],[40,14,14,18,32,[[964,1,1,18,19],[966,1,1,19,20],[967,2,2,20,22],[970,5,5,22,27],[971,5,5,27,32]]],[41,13,13,32,45,[[981,1,1,32,33],[991,1,1,33,34],[992,2,2,34,36],[994,4,4,36,40],[995,4,4,40,44],[996,1,1,44,45]]],[42,10,10,45,55,[[1003,2,2,45,47],[1007,2,2,47,49],[1008,1,1,49,50],[1014,2,2,50,52],[1015,3,3,52,55]]],[43,10,10,55,65,[[1021,1,1,55,56],[1022,1,1,56,57],[1026,2,2,57,59],[1036,1,1,59,60],[1039,1,1,60,61],[1040,1,1,61,62],[1042,1,1,62,63],[1043,2,2,63,65]]],[57,2,2,65,67,[[1139,2,2,65,67]]]],[23173,23693,23810,23841,23849,23871,24057,24068,24101,24113,24130,24132,24135,24141,24149,24170,24191,24206,24531,24621,24658,24667,24755,24764,24797,24807,24809,24827,24829,24836,24837,24857,25323,25778,25780,25798,25866,25868,25916,25930,25939,25945,25948,25958,26011,26360,26373,26570,26580,26590,26788,26820,26831,26840,26846,27045,27083,27230,27237,27599,27734,27748,27811,27833,27835,30091,30092]]]]},{"k":"G750","v":[["Shepherd",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30469]]]]},{"k":"G751","v":[["Archippus",[2,2,[[50,1,1,0,1,[[1110,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[29559,29940]]]]},{"k":"G752","v":[["*",[9,9,[[40,4,4,0,4,[[961,4,4,0,4]]],[41,2,2,4,6,[[980,1,1,4,5],[985,1,1,5,6]]],[43,3,3,6,9,[[1030,1,1,6,7],[1035,2,2,7,9]]]],[24386,24399,24400,24402,25294,25532,27377,27565,27574]]],["synagogue",[7,7,[[40,3,3,0,3,[[961,3,3,0,3]]],[41,1,1,3,4,[[985,1,1,3,4]]],[43,3,3,4,7,[[1030,1,1,4,5],[1035,2,2,5,7]]]],[24386,24400,24402,25532,27377,27565,27574]]],["synagogue's",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24399,25294]]]]},{"k":"G753","v":[["masterbuilder",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28420]]]]},{"k":"G754","v":[["publicans",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25733]]]]},{"k":"G755","v":[["feast",[3,2,[[42,3,2,0,2,[[998,3,2,0,2]]]],[26103,26104]]]]},{"k":"G756","v":[["*",[84,84,[[39,13,13,0,13,[[932,1,1,0,1],[939,2,2,1,3],[940,1,1,3,4],[942,1,1,4,5],[944,2,2,5,7],[946,1,1,7,8],[948,1,1,8,9],[952,1,1,9,10],[954,3,3,10,13]]],[40,26,26,13,39,[[957,1,1,13,14],[958,1,1,14,15],[960,1,1,15,16],[961,2,2,16,18],[962,4,4,18,22],[964,3,3,22,25],[966,4,4,25,29],[967,1,1,29,30],[968,1,1,30,31],[969,1,1,31,32],[970,5,5,32,37],[971,2,2,37,39]]],[41,31,31,39,70,[[975,2,2,39,41],[976,1,1,41,42],[977,1,1,42,43],[979,4,4,43,47],[981,1,1,47,48],[983,2,2,48,50],[984,2,2,50,52],[985,2,2,52,54],[986,4,4,54,58],[987,2,2,58,60],[991,2,2,60,62],[992,1,1,62,63],[993,1,1,63,64],[994,1,1,64,65],[995,3,3,65,68],[996,2,2,68,70]]],[42,2,2,70,72,[[1004,1,1,70,71],[1009,1,1,71,72]]],[43,10,10,72,82,[[1018,2,2,72,74],[1019,1,1,74,75],[1025,1,1,75,76],[1027,1,1,76,77],[1028,2,2,77,79],[1035,1,1,79,80],[1041,1,1,80,81],[1044,1,1,81,82]]],[46,1,1,82,83,[[1080,1,1,82,83]]],[59,1,1,83,84,[[1154,1,1,83,84]]]],[23226,23466,23479,23490,23627,23693,23694,23751,23800,24006,24076,24091,24128,24260,24283,24324,24381,24384,24409,24414,24441,24462,24511,24531,24532,24616,24620,24629,24635,24655,24674,24722,24773,24787,24819,24823,24825,24834,24844,25033,25048,25084,25128,25210,25219,25233,25244,25313,25434,25458,25460,25504,25543,25544,25562,25571,25582,25583,25602,25612,25768,25776,25788,25854,25887,25937,25940,25965,26018,26038,26390,26635,26924,26945,26953,27211,27296,27311,27322,27583,27771,27890,28842,30463]]],["Beginning",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26945]]],["began",[64,64,[[39,9,9,0,9,[[932,1,1,0,1],[939,2,2,1,3],[940,1,1,3,4],[944,2,2,4,6],[954,3,3,6,9]]],[40,26,26,9,35,[[957,1,1,9,10],[958,1,1,10,11],[960,1,1,11,12],[961,2,2,12,14],[962,4,4,14,18],[964,3,3,18,21],[966,4,4,21,25],[967,1,1,25,26],[968,1,1,26,27],[969,1,1,27,28],[970,5,5,28,33],[971,2,2,33,35]]],[41,20,20,35,55,[[975,1,1,35,36],[976,1,1,36,37],[977,1,1,37,38],[979,4,4,38,42],[981,1,1,42,43],[983,2,2,43,45],[984,1,1,45,46],[986,2,2,46,48],[987,2,2,48,50],[991,2,2,50,52],[992,1,1,52,53],[994,1,1,53,54],[995,1,1,54,55]]],[42,1,1,55,56,[[1009,1,1,55,56]]],[43,8,8,56,64,[[1018,1,1,56,57],[1019,1,1,57,58],[1025,1,1,58,59],[1027,1,1,59,60],[1028,1,1,60,61],[1035,1,1,61,62],[1041,1,1,62,63],[1044,1,1,63,64]]]],[23226,23466,23479,23490,23693,23694,24076,24091,24128,24260,24283,24324,24381,24384,24409,24414,24441,24462,24511,24531,24532,24616,24620,24629,24635,24655,24674,24722,24773,24787,24819,24823,24825,24834,24844,25048,25084,25128,25210,25219,25233,25244,25313,25434,25458,25460,25571,25583,25602,25612,25768,25776,25788,25887,25937,26635,26924,26953,27211,27296,27322,27583,27771,27890]]],["begin",[11,11,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,8,8,1,9,[[975,1,1,1,2],[984,1,1,2,3],[985,2,2,3,5],[986,2,2,5,7],[993,1,1,7,8],[995,1,1,8,9]]],[46,1,1,9,10,[[1080,1,1,9,10]]],[59,1,1,10,11,[[1154,1,1,10,11]]]],[24006,25033,25504,25543,25544,25562,25582,25854,25965,28842,30463]]],["beginning",[7,7,[[39,2,2,0,2,[[942,1,1,0,1],[948,1,1,1,2]]],[41,3,3,2,5,[[995,1,1,2,3],[996,2,2,3,5]]],[42,1,1,5,6,[[1004,1,1,5,6]]],[43,1,1,6,7,[[1028,1,1,6,7]]]],[23627,23800,25940,26018,26038,26390,27311]]],["begun",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23751]]]]},{"k":"G757","v":[["over",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]]],[24630,28315]]]]},{"k":"G758","v":[["*",[37,36,[[39,5,5,0,5,[[937,3,3,0,3],[940,1,1,3,4],[948,1,1,4,5]]],[40,1,1,5,6,[[959,1,1,5,6]]],[41,8,8,6,14,[[980,1,1,6,7],[983,1,1,7,8],[984,1,1,8,9],[986,1,1,9,10],[990,1,1,10,11],[995,2,2,11,13],[996,1,1,13,14]]],[42,7,7,14,21,[[999,1,1,14,15],[1003,2,2,15,17],[1008,2,2,17,19],[1010,1,1,19,20],[1012,1,1,20,21]]],[43,11,10,21,31,[[1020,1,1,21,22],[1021,3,3,22,25],[1024,3,2,25,27],[1030,1,1,27,28],[1031,1,1,28,29],[1033,1,1,29,30],[1040,1,1,30,31]]],[44,1,1,31,32,[[1058,1,1,31,32]]],[45,2,2,32,34,[[1063,2,2,32,34]]],[48,1,1,34,35,[[1098,1,1,34,35]]],[65,1,1,35,36,[[1167,1,1,35,36]]]],[23397,23402,23413,23513,23817,24310,25286,25420,25517,25554,25706,25948,25970,26011,26121,26354,26376,26611,26622,26698,26737,27013,27027,27030,27048,27143,27151,27389,27419,27502,27739,28269,28400,28402,29231,30702]]],["chief",[2,2,[[41,2,2,0,2,[[983,1,1,0,1],[986,1,1,1,2]]]],[25420,25554]]],["magistrate",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25517]]],["prince",[8,8,[[39,2,2,0,2,[[937,1,1,0,1],[940,1,1,1,2]]],[40,1,1,2,3,[[959,1,1,2,3]]],[42,3,3,3,6,[[1008,1,1,3,4],[1010,1,1,4,5],[1012,1,1,5,6]]],[48,1,1,6,7,[[1098,1,1,6,7]]],[65,1,1,7,8,[[1167,1,1,7,8]]]],[23413,23513,24310,26611,26698,26737,29231,30702]]],["princes",[3,3,[[39,1,1,0,1,[[948,1,1,0,1]]],[45,2,2,1,3,[[1063,2,2,1,3]]]],[23817,28400,28402]]],["ruler",[8,7,[[39,1,1,0,1,[[937,1,1,0,1]]],[41,2,2,1,3,[[980,1,1,1,2],[990,1,1,2,3]]],[42,1,1,3,4,[[999,1,1,3,4]]],[43,4,3,4,7,[[1024,3,2,4,6],[1040,1,1,6,7]]]],[23397,25286,25706,26121,27143,27151,27739]]],["ruler's",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23402]]],["rulers",[14,14,[[41,3,3,0,3,[[995,2,2,0,2],[996,1,1,2,3]]],[42,3,3,3,6,[[1003,2,2,3,5],[1008,1,1,5,6]]],[43,7,7,6,13,[[1020,1,1,6,7],[1021,3,3,7,10],[1030,1,1,10,11],[1031,1,1,11,12],[1033,1,1,12,13]]],[44,1,1,13,14,[[1058,1,1,13,14]]]],[25948,25970,26011,26354,26376,26622,27013,27027,27030,27048,27389,27419,27502,28269]]]]},{"k":"G759","v":[["spices",[4,4,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,2,2,1,3,[[995,1,1,1,2],[996,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]]],[24874,25991,25992,26865]]]]},{"k":"G760","v":[["Asa",[2,2,[[39,2,2,0,2,[[929,2,2,0,2]]]],[23151,23152]]]]},{"k":"G761","v":[["*",[2,2,[[43,1,1,0,1,[[1044,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[27896,30240]]],["moved",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30240]]],["unmoveable",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27896]]]]},{"k":"G762","v":[["*",[4,4,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,2,2,1,3,[[965,2,2,1,3]]],[41,1,1,3,4,[[975,1,1,3,4]]]],[23204,24581,24583,25042]]],["quenched",[2,2,[[40,2,2,0,2,[[965,2,2,0,2]]]],[24581,24583]]],["unquenchable",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23204,25042]]]]},{"k":"G763","v":[["*",[6,6,[[44,2,2,0,2,[[1046,1,1,0,1],[1056,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[55,1,1,3,4,[[1130,1,1,3,4]]],[64,2,2,4,6,[[1166,2,2,4,6]]]],[27948,28235,29843,29920,30687,30690]]],["ungodliness",[4,4,[[44,2,2,0,2,[[1046,1,1,0,1],[1056,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[55,1,1,3,4,[[1130,1,1,3,4]]]],[27948,28235,29843,29920]]],["ungodly",[2,2,[[64,2,2,0,2,[[1166,2,2,0,2]]]],[30687,30690]]]]},{"k":"G764","v":[["*",[2,2,[[60,1,1,0,1,[[1157,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[30506,30687]]],["committed",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30687]]],["ungodly",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30506]]]]},{"k":"G765","v":[["*",[9,8,[[44,2,2,0,2,[[1049,1,1,0,1],[1050,1,1,1,2]]],[53,1,1,2,3,[[1119,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]],[60,2,2,4,6,[[1157,1,1,4,5],[1158,1,1,5,6]]],[64,3,2,6,8,[[1166,3,2,6,8]]]],[28027,28053,29705,30464,30505,30529,30676,30687]]],["men",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30676]]],["ungodly",[8,7,[[44,2,2,0,2,[[1049,1,1,0,1],[1050,1,1,1,2]]],[53,1,1,2,3,[[1119,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]],[60,2,2,4,6,[[1157,1,1,4,5],[1158,1,1,5,6]]],[64,2,1,6,7,[[1166,2,1,6,7]]]],[28027,28053,29705,30464,30505,30529,30687]]]]},{"k":"G766","v":[["*",[9,9,[[40,1,1,0,1,[[963,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]],[46,1,1,2,3,[[1089,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]],[59,1,1,5,6,[[1154,1,1,5,6]]],[60,2,2,6,8,[[1157,2,2,6,8]]],[64,1,1,8,9,[[1166,1,1,8,9]]]],[24485,28279,29043,29181,29291,30449,30507,30518,30676]]],["+",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30507]]],["lasciviousness",[6,6,[[40,1,1,0,1,[[963,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]],[59,1,1,4,5,[[1154,1,1,4,5]]],[64,1,1,5,6,[[1166,1,1,5,6]]]],[24485,29043,29181,29291,30449,30676]]],["wantonness",[2,2,[[44,1,1,0,1,[[1058,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[28279,30518]]]]},{"k":"G767","v":[["mean",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27703]]]]},{"k":"G768","v":[["Aser",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[65,1,1,1,2,[[1173,1,1,1,2]]]],[25009,30816]]]]},{"k":"G769","v":[["*",[24,23,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,4,4,1,5,[[977,1,1,1,2],[980,1,1,2,3],[985,2,2,3,5]]],[42,2,2,5,7,[[1001,1,1,5,6],[1007,1,1,6,7]]],[43,1,1,7,8,[[1045,1,1,7,8]]],[44,2,2,8,10,[[1051,1,1,8,9],[1053,1,1,9,10]]],[45,2,2,10,12,[[1063,1,1,10,11],[1076,1,1,11,12]]],[46,6,5,12,17,[[1088,1,1,12,13],[1089,4,3,13,16],[1090,1,1,16,17]]],[47,1,1,17,18,[[1094,1,1,17,18]]],[53,1,1,18,19,[[1123,1,1,18,19]]],[57,4,4,19,23,[[1136,1,1,19,20],[1137,1,1,20,21],[1139,1,1,21,22],[1143,1,1,22,23]]]],[23362,25122,25247,25529,25530,26215,26527,27908,28087,28142,28397,28761,29019,29027,29031,29032,29047,29144,29786,30029,30032,30092,30206]]],["diseases",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27908]]],["infirmities",[10,10,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,2,2,1,3,[[977,1,1,1,2],[980,1,1,2,3]]],[44,1,1,3,4,[[1053,1,1,3,4]]],[46,4,4,4,8,[[1088,1,1,4,5],[1089,3,3,5,8]]],[53,1,1,8,9,[[1123,1,1,8,9]]],[57,1,1,9,10,[[1136,1,1,9,10]]]],[23362,25122,25247,28142,29019,29027,29031,29032,29786,30029]]],["infirmity",[7,7,[[41,2,2,0,2,[[985,2,2,0,2]]],[42,1,1,2,3,[[1001,1,1,2,3]]],[44,1,1,3,4,[[1051,1,1,3,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]],[57,2,2,5,7,[[1137,1,1,5,6],[1139,1,1,6,7]]]],[25529,25530,26215,28087,29144,30032,30092]]],["sickness",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26527]]],["weakness",[5,5,[[45,2,2,0,2,[[1063,1,1,0,1],[1076,1,1,1,2]]],[46,2,2,2,4,[[1089,1,1,2,3],[1090,1,1,3,4]]],[57,1,1,4,5,[[1143,1,1,4,5]]]],[28397,28761,29031,29047,30206]]]]},{"k":"G770","v":[["*",[36,35,[[39,2,2,0,2,[[938,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[41,3,3,3,6,[[976,1,1,3,4],[979,1,1,4,5],[981,1,1,5,6]]],[42,8,8,6,14,[[1000,1,1,6,7],[1001,2,2,7,9],[1002,1,1,9,10],[1007,4,4,10,14]]],[43,3,3,14,17,[[1026,1,1,14,15],[1036,1,1,15,16],[1037,1,1,16,17]]],[44,5,5,17,22,[[1049,1,1,17,18],[1053,1,1,18,19],[1059,3,3,19,22]]],[45,3,3,22,25,[[1069,3,3,22,25]]],[46,7,6,25,31,[[1088,3,2,25,27],[1089,1,1,27,28],[1090,3,3,28,31]]],[49,2,2,31,33,[[1104,2,2,31,33]]],[54,1,1,33,34,[[1128,1,1,33,34]]],[58,1,1,34,35,[[1150,1,1,34,35]]]],[23425,24044,24463,25103,25205,25303,26202,26213,26217,26259,26524,26525,26526,26529,27253,27597,27661,28041,28119,28281,28282,28301,28536,28538,28539,29010,29018,29032,29046,29047,29052,29417,29418,29890,30368]]],["+",[4,4,[[44,1,1,0,1,[[1049,1,1,0,1]]],[46,2,2,1,3,[[1088,1,1,1,2],[1090,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]]],[28041,29018,29046,30368]]],["diseased",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26259]]],["folk",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26213]]],["man",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26217]]],["sick",[16,16,[[39,2,2,0,2,[[938,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[41,3,3,3,6,[[976,1,1,3,4],[979,1,1,4,5],[981,1,1,5,6]]],[42,5,5,6,11,[[1000,1,1,6,7],[1007,4,4,7,11]]],[43,2,2,11,13,[[1026,1,1,11,12],[1036,1,1,12,13]]],[49,2,2,13,15,[[1104,2,2,13,15]]],[54,1,1,15,16,[[1128,1,1,15,16]]]],[23425,24044,24463,25103,25205,25303,26202,26524,26525,26526,26529,27253,27597,29417,29418,29890]]],["weak",[13,13,[[43,1,1,0,1,[[1037,1,1,0,1]]],[44,4,4,1,5,[[1053,1,1,1,2],[1059,3,3,2,5]]],[45,3,3,5,8,[[1069,3,3,5,8]]],[46,5,5,8,13,[[1088,2,2,8,10],[1089,1,1,10,11],[1090,2,2,11,13]]]],[27661,28119,28281,28282,28301,28536,28538,28539,29010,29018,29032,29047,29052]]]]},{"k":"G771","v":[["infirmities",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28304]]]]},{"k":"G772","v":[["*",[25,23,[[39,4,4,0,4,[[953,3,3,0,3],[954,1,1,3,4]]],[40,1,1,4,5,[[970,1,1,4,5]]],[41,1,1,5,6,[[982,1,1,5,6]]],[43,3,3,6,9,[[1021,1,1,6,7],[1022,2,2,7,9]]],[44,1,1,9,10,[[1050,1,1,9,10]]],[45,10,8,10,18,[[1062,2,2,10,12],[1065,1,1,12,13],[1069,2,2,13,15],[1070,3,1,15,16],[1072,1,1,16,17],[1073,1,1,17,18]]],[46,1,1,18,19,[[1087,1,1,18,19]]],[47,1,1,19,20,[[1094,1,1,19,20]]],[51,1,1,20,21,[[1115,1,1,20,21]]],[57,1,1,21,22,[[1139,1,1,21,22]]],[59,1,1,22,23,[[1153,1,1,22,23]]]],[24047,24051,24052,24095,24792,25372,27031,27074,27075,28053,28388,28390,28443,28534,28537,28562,28630,28656,28981,29140,29635,30082,30431]]],["feeble",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28656]]],["folks",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27075]]],["impotent",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27031]]],["sick",[5,5,[[39,3,3,0,3,[[953,3,3,0,3]]],[41,1,1,3,4,[[982,1,1,3,4]]],[43,1,1,4,5,[[1022,1,1,4,5]]]],[24047,24051,24052,25372,27074]]],["strength",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28053]]],["things",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28390]]],["weak",[12,10,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[45,7,5,2,7,[[1065,1,1,2,3],[1069,2,2,3,5],[1070,3,1,5,6],[1072,1,1,6,7]]],[46,1,1,7,8,[[1087,1,1,7,8]]],[47,1,1,8,9,[[1094,1,1,8,9]]],[51,1,1,9,10,[[1115,1,1,9,10]]]],[24095,24792,28443,28534,28537,28562,28630,28981,29140,29635]]],["weaker",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30431]]],["weakness",[2,2,[[45,1,1,0,1,[[1062,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[28388,30082]]]]},{"k":"G773","v":[["Asia",[19,19,[[43,13,13,0,13,[[1019,1,1,0,1],[1023,1,1,1,2],[1033,1,1,2,3],[1036,4,4,3,7],[1037,3,3,7,10],[1038,1,1,10,11],[1041,1,1,11,12],[1044,1,1,12,13]]],[45,1,1,13,14,[[1077,1,1,13,14]]],[46,1,1,14,15,[[1078,1,1,14,15]]],[54,1,1,15,16,[[1125,1,1,15,16]]],[59,1,1,16,17,[[1151,1,1,16,17]]],[65,2,2,17,19,[[1167,2,2,17,19]]]],[26958,27110,27489,27595,27607,27611,27612,27630,27642,27644,27691,27787,27857,28795,28808,29824,30375,30701,30708]]]]},{"k":"G774","v":[["Asia",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27630]]]]},{"k":"G775","v":[["Asia",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27616]]]]},{"k":"G776","v":[["abstinence",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27876]]]]},{"k":"G777","v":[["fasting",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27888]]]]},{"k":"G778","v":[["exercise",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27785]]]]},{"k":"G779","v":[["bottles",[12,4,[[39,4,1,0,1,[[937,4,1,0,1]]],[40,4,1,1,2,[[958,4,1,1,2]]],[41,4,2,2,4,[[977,4,2,2,4]]]],[23396,24282,25144,25145]]]]},{"k":"G780","v":[["*",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1038,1,1,1,2]]]],[26990,27681]]],["+",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26990]]],["gladly",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27681]]]]},{"k":"G781","v":[["fools",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29319]]]]},{"k":"G782","v":[["*",[60,49,[[39,2,2,0,2,[[933,1,1,0,1],[938,1,1,1,2]]],[40,2,2,2,4,[[965,1,1,2,3],[971,1,1,3,4]]],[41,2,2,4,6,[[973,1,1,4,5],[982,1,1,5,6]]],[43,6,6,6,12,[[1035,1,1,6,7],[1037,1,1,7,8],[1038,3,3,8,11],[1042,1,1,11,12]]],[44,21,16,12,28,[[1061,21,16,12,28]]],[45,4,2,28,30,[[1077,4,2,28,30]]],[46,2,2,30,32,[[1090,2,2,30,32]]],[49,3,2,32,34,[[1106,3,2,32,34]]],[50,4,4,34,38,[[1110,4,4,34,38]]],[51,1,1,38,39,[[1115,1,1,38,39]]],[54,2,2,39,41,[[1128,2,2,39,41]]],[55,2,1,41,42,[[1131,2,1,41,42]]],[56,1,1,42,43,[[1132,1,1,42,43]]],[57,3,2,43,45,[[1143,1,1,43,44],[1145,2,1,44,45]]],[59,2,2,45,47,[[1155,2,2,45,47]]],[62,1,1,47,48,[[1164,1,1,47,48]]],[63,2,1,48,49,[[1165,2,1,48,49]]]],[23281,23429,24553,24844,24933,25367,27579,27627,27670,27671,27683,27809,28339,28341,28342,28343,28344,28345,28346,28347,28348,28349,28350,28351,28352,28357,28358,28359,28795,28796,29055,29056,29463,29464,29552,29554,29556,29557,29647,29889,29891,29938,29961,30185,30265,30478,30479,30658,30672]]],["Greet",[10,10,[[44,4,4,0,4,[[1061,4,4,0,4]]],[45,1,1,4,5,[[1077,1,1,4,5]]],[46,1,1,5,6,[[1090,1,1,5,6]]],[51,1,1,6,7,[[1115,1,1,6,7]]],[55,1,1,7,8,[[1131,1,1,7,8]]],[59,1,1,8,9,[[1155,1,1,8,9]]],[63,1,1,9,10,[[1165,1,1,9,10]]]],[28339,28342,28344,28347,28796,29055,29647,29938,30479,30672]]],["Salute",[16,14,[[44,12,10,0,10,[[1061,12,10,0,10]]],[49,1,1,10,11,[[1106,1,1,10,11]]],[50,1,1,11,12,[[1110,1,1,11,12]]],[54,1,1,12,13,[[1128,1,1,12,13]]],[57,1,1,13,14,[[1145,1,1,13,14]]]],[28341,28343,28345,28346,28347,28348,28349,28350,28351,28352,29463,29557,29889,30265]]],["embraced",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[27627,30185]]],["greet",[4,4,[[45,1,1,0,1,[[1077,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]],[50,1,1,2,3,[[1110,1,1,2,3]]],[62,1,1,3,4,[[1164,1,1,3,4]]]],[28796,29463,29556,30658]]],["greeteth",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29891]]],["leave",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27670]]],["salute",[16,15,[[39,2,2,0,2,[[933,1,1,0,1],[938,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[41,1,1,3,4,[[982,1,1,3,4]]],[43,1,1,4,5,[[1042,1,1,4,5]]],[44,3,3,5,8,[[1061,3,3,5,8]]],[45,2,1,8,9,[[1077,2,1,8,9]]],[46,1,1,9,10,[[1090,1,1,9,10]]],[49,1,1,10,11,[[1106,1,1,10,11]]],[55,1,1,11,12,[[1131,1,1,11,12]]],[56,1,1,12,13,[[1132,1,1,12,13]]],[57,1,1,13,14,[[1145,1,1,13,14]]],[63,1,1,14,15,[[1165,1,1,14,15]]]],[23281,23429,24844,25367,27809,28352,28357,28358,28795,29056,29464,29938,29961,30265,30672]]],["saluted",[5,5,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[43,3,3,2,5,[[1035,1,1,2,3],[1038,2,2,3,5]]]],[24553,24933,27579,27671,27683]]],["saluteth",[5,4,[[44,2,1,0,1,[[1061,2,1,0,1]]],[50,2,2,1,3,[[1110,2,2,1,3]]],[59,1,1,3,4,[[1155,1,1,3,4]]]],[28359,29552,29554,30478]]]]},{"k":"G783","v":[["*",[10,10,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,5,5,2,7,[[973,3,3,2,5],[983,1,1,5,6],[992,1,1,6,7]]],[45,1,1,7,8,[[1077,1,1,7,8]]],[50,1,1,8,9,[[1110,1,1,8,9]]],[52,1,1,9,10,[[1118,1,1,9,10]]]],[23925,24711,24922,24934,24937,25448,25825,28797,29560,29695]]],["greetings",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[992,1,1,2,3]]]],[23925,25448,25825]]],["salutation",[6,6,[[41,3,3,0,3,[[973,3,3,0,3]]],[45,1,1,3,4,[[1077,1,1,3,4]]],[50,1,1,4,5,[[1110,1,1,4,5]]],[52,1,1,5,6,[[1118,1,1,5,6]]]],[24922,24934,24937,28797,29560,29695]]],["salutations",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24711]]]]},{"k":"G784","v":[["*",[4,4,[[53,1,1,0,1,[[1124,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]],[59,1,1,2,3,[[1151,1,1,2,3]]],[60,1,1,3,4,[[1158,1,1,3,4]]]],[29802,30293,30393,30536]]],["spot",[3,3,[[53,1,1,0,1,[[1124,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]],[60,1,1,2,3,[[1158,1,1,2,3]]]],[29802,30393,30536]]],["unspotted",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30293]]]]},{"k":"G785","v":[["asps",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28004]]]]},{"k":"G786","v":[["*",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[27961,29856]]],["implacable",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27961]]],["trucebreakers",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29856]]]]},{"k":"G787","v":[["*",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23446,25465]]],["farthing",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23446]]],["farthings",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25465]]]]},{"k":"G788","v":[["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27868]]]]},{"k":"G789","v":[["Assos",[2,2,[[43,2,2,0,2,[[1037,2,2,0,2]]]],[27639,27640]]]]},{"k":"G790","v":[["dwellingplace",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28444]]]]},{"k":"G791","v":[["*",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[27136,30195]]],["fair",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27136]]],["proper",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30195]]]]},{"k":"G792","v":[["*",[24,21,[[39,5,5,0,5,[[930,4,4,0,4],[952,1,1,4,5]]],[40,1,1,5,6,[[969,1,1,5,6]]],[45,3,1,6,7,[[1076,3,1,6,7]]],[64,1,1,7,8,[[1166,1,1,7,8]]],[65,14,13,8,21,[[1167,3,2,8,10],[1168,2,2,10,12],[1169,1,1,12,13],[1172,1,1,13,14],[1174,3,3,14,17],[1175,1,1,17,18],[1178,2,2,18,20],[1188,1,1,20,21]]]],[23171,23176,23178,23179,23986,24742,28759,30685,30713,30717,30718,30745,30747,30806,30837,30838,30839,30841,30892,30895,31096]]],["star",[11,10,[[39,4,4,0,4,[[930,4,4,0,4]]],[45,2,1,4,5,[[1076,2,1,4,5]]],[65,5,5,5,10,[[1168,1,1,5,6],[1174,2,2,6,8],[1175,1,1,8,9],[1188,1,1,9,10]]]],[23171,23176,23178,23179,28759,30745,30837,30838,30841,31096]]],["stars",[13,12,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]],[65,9,8,4,12,[[1167,3,2,4,6],[1168,1,1,6,7],[1169,1,1,7,8],[1172,1,1,8,9],[1174,1,1,9,10],[1178,2,2,10,12]]]],[23986,24742,28759,30685,30713,30717,30718,30747,30806,30839,30892,30895]]]]},{"k":"G793","v":[["unstable",[2,2,[[60,2,2,0,2,[[1157,1,1,0,1],[1158,1,1,1,2]]]],[30514,30538]]]]},{"k":"G794","v":[["affection",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[27961,29856]]]]},{"k":"G795","v":[["*",[3,3,[[53,2,2,0,2,[[1119,1,1,0,1],[1124,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]]],[29702,29809,29845]]],["erred",[2,2,[[53,1,1,0,1,[[1124,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[29809,29845]]],["swerved",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29702]]]]},{"k":"G796","v":[["*",[9,9,[[39,2,2,0,2,[[952,1,1,0,1],[956,1,1,1,2]]],[41,3,3,2,5,[[982,1,1,2,3],[983,1,1,3,4],[989,1,1,4,5]]],[65,4,4,5,9,[[1170,1,1,5,6],[1174,1,1,6,7],[1177,1,1,7,8],[1182,1,1,8,9]]]],[23984,24198,25381,25441,25675,30773,30832,30891,30972]]],["lightning",[4,4,[[39,2,2,0,2,[[952,1,1,0,1],[956,1,1,1,2]]],[41,2,2,2,4,[[982,1,1,2,3],[989,1,1,3,4]]]],[23984,24198,25381,25675]]],["lightnings",[4,4,[[65,4,4,0,4,[[1170,1,1,0,1],[1174,1,1,1,2],[1177,1,1,2,3],[1182,1,1,3,4]]]],[30773,30832,30891,30972]]],["shining",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25441]]]]},{"k":"G797","v":[["*",[2,2,[[41,2,2,0,2,[[989,1,1,0,1],[996,1,1,1,2]]]],[25675,25995]]],["lighteneth",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25675]]],["shining",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[25995]]]]},{"k":"G798","v":[["*",[4,4,[[41,1,1,0,1,[[993,1,1,0,1]]],[43,2,2,1,3,[[1024,1,1,1,2],[1044,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[25851,27159,27875,30184]]],["star",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27159]]],["stars",[3,3,[[41,1,1,0,1,[[993,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[25851,27875,30184]]]]},{"k":"G799","v":[["Asyncritus",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28350]]]]},{"k":"G800","v":[["+",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27924]]]]},{"k":"G801","v":[["*",[5,5,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[44,3,3,2,5,[[1046,2,2,2,4],[1055,1,1,4,5]]]],[23649,24481,27951,27961,28207]]],["foolish",[2,2,[[44,2,2,0,2,[[1046,1,1,0,1],[1055,1,1,1,2]]]],[27951,28207]]],["understanding",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]]],[23649,24481,27961]]]]},{"k":"G802","v":[["covenantbreakers",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27961]]]]},{"k":"G803","v":[["*",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]],[51,1,1,2,3,[[1115,1,1,2,3]]]],[24897,27082,29624]]],["certainty",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24897]]],["safety",[2,2,[[43,1,1,0,1,[[1022,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]]],[27082,29624]]]]},{"k":"G804","v":[["*",[5,5,[[43,3,3,0,3,[[1038,1,1,0,1],[1039,1,1,1,2],[1042,1,1,2,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]],[57,1,1,4,5,[[1138,1,1,4,5]]]],[27698,27734,27822,29422,30063]]],["+",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27822]]],["certainty",[2,2,[[43,2,2,0,2,[[1038,1,1,0,1],[1039,1,1,1,2]]]],[27698,27734]]],["safe",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29422]]],["sure",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30063]]]]},{"k":"G805","v":[["*",[4,4,[[39,3,3,0,3,[[955,3,3,0,3]]],[43,1,1,3,4,[[1033,1,1,3,4]]]],[24193,24194,24195,27507]]],["+",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[43,1,1,1,2,[[1033,1,1,1,2]]]],[24195,27507]]],["sure",[2,2,[[39,2,2,0,2,[[955,2,2,0,2]]]],[24193,24194]]]]},{"k":"G806","v":[["*",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,2,2,1,3,[[1019,1,1,1,2],[1033,1,1,2,3]]]],[24798,26985,27506]]],["+",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24798]]],["assuredly",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26985]]],["safely",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27506]]]]},{"k":"G807","v":[["*",[2,2,[[45,2,2,0,2,[[1068,1,1,0,1],[1074,1,1,1,2]]]],[28523,28670]]],["uncomely",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28523]]],["unseemly",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28670]]]]},{"k":"G808","v":[["*",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[65,1,1,1,2,[[1182,1,1,1,2]]]],[27957,30969]]],["shame",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30969]]],["unseemly",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27957]]]]},{"k":"G809","v":[["uncomely",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28657]]]]},{"k":"G810","v":[["*",[3,3,[[48,1,1,0,1,[[1101,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[29322,29898,30450]]],["excess",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29322]]],["riot",[2,2,[[55,1,1,0,1,[[1129,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[29898,30450]]]]},{"k":"G811","v":[["riotous",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25601]]]]},{"k":"G812","v":[["+",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29685]]]]},{"k":"G813","v":[["unruly",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29635]]]]},{"k":"G814","v":[["disorderly",[2,2,[[52,2,2,0,2,[[1118,2,2,0,2]]]],[29684,29689]]]]},{"k":"G815","v":[["*",[3,3,[[41,3,3,0,3,[[992,3,3,0,3]]]],[25807,25808,25809]]],["childless",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25809]]],["children",[2,2,[[41,2,2,0,2,[[992,2,2,0,2]]]],[25807,25808]]]]},{"k":"G816","v":[["*",[14,14,[[41,2,2,0,2,[[976,1,1,0,1],[994,1,1,1,2]]],[43,10,10,2,12,[[1018,1,1,2,3],[1020,2,2,3,5],[1023,1,1,5,6],[1024,1,1,6,7],[1027,1,1,7,8],[1028,1,1,8,9],[1030,1,1,9,10],[1031,1,1,10,11],[1040,1,1,11,12]]],[46,2,2,12,14,[[1080,2,2,12,14]]]],[25083,25920,26933,27000,27008,27116,27171,27263,27313,27371,27423,27735,28848,28854]]],["+",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26933]]],["beholding",[2,2,[[43,2,2,0,2,[[1031,1,1,0,1],[1040,1,1,1,2]]]],[27423,27735]]],["earnestly",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27008]]],["eyes",[3,3,[[43,3,3,0,3,[[1020,1,1,0,1],[1028,1,1,1,2],[1030,1,1,2,3]]]],[27000,27313,27371]]],["look",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28854]]],["looked",[2,2,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]]],[25920,27263]]],["on",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25083]]],["stedfastly",[3,3,[[43,2,2,0,2,[[1023,1,1,0,1],[1024,1,1,1,2]]],[46,1,1,2,3,[[1080,1,1,2,3]]]],[27116,27171,28848]]]]},{"k":"G817","v":[["*",[2,2,[[41,2,2,0,2,[[994,2,2,0,2]]]],[25870,25899]]],["of",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25870]]],["without",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25899]]]]},{"k":"G818","v":[["*",[6,6,[[41,1,1,0,1,[[992,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]],[44,2,2,3,5,[[1046,1,1,3,4],[1047,1,1,4,5]]],[58,1,1,5,6,[[1147,1,1,5,6]]]],[25790,26430,27100,27954,27985,30299]]],["despised",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30299]]],["dishonour",[2,2,[[42,1,1,0,1,[[1004,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[26430,27954]]],["dishonourest",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27985]]],["shame",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27100]]],["shamefully",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25790]]]]},{"k":"G819","v":[["*",[7,7,[[44,2,2,0,2,[[1046,1,1,0,1],[1054,1,1,1,2]]],[45,2,2,2,4,[[1072,1,1,2,3],[1076,1,1,3,4]]],[46,2,2,4,6,[[1083,1,1,4,5],[1088,1,1,5,6]]],[54,1,1,6,7,[[1126,1,1,6,7]]]],[27956,28176,28614,28761,28906,29010,29847]]],["dishonour",[4,4,[[44,1,1,0,1,[[1054,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[46,1,1,2,3,[[1083,1,1,2,3]]],[54,1,1,3,4,[[1126,1,1,3,4]]]],[28176,28761,28906,29847]]],["reproach",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29010]]],["shame",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28614]]],["vile",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27956]]]]},{"k":"G820","v":[["*",[4,4,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[45,2,2,2,4,[[1065,1,1,2,3],[1073,1,1,3,4]]]],[23596,24411,28443,28657]]],["despised",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28443]]],["honour",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]]],[23596,24411]]],["honourable",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28657]]]]},{"k":"G821","v":[["handled",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24677]]]]},{"k":"G822","v":[["vapour",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[58,1,1,1,2,[[1149,1,1,1,2]]]],[26968,30351]]]]},{"k":"G823","v":[["moment",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28770]]]]},{"k":"G824","v":[["*",[4,4,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,2,2,1,3,[[1042,1,1,1,2],[1045,1,1,2,3]]],[52,1,1,3,4,[[1118,1,1,3,4]]]],[25976,27801,27905,29680]]],["+",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27905]]],["amiss",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25976]]],["unreasonable",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29680]]],["wickedness",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27801]]]]},{"k":"G825","v":[["Attalia",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27439]]]]},{"k":"G826","v":[["shine",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28863]]]]},{"k":"G827","v":[["day",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27637]]]]},{"k":"G828","v":[["Augustus",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24974]]]]},{"k":"G829","v":[["selfwilled",[2,2,[[55,1,1,0,1,[[1129,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[29899,30510]]]]},{"k":"G830","v":[["*",[2,2,[[46,2,2,0,2,[[1085,2,2,0,2]]]],[28935,28949]]],["accord",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28949]]],["themselves",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28935]]]]},{"k":"G831","v":[["over",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29728]]]]},{"k":"G832","v":[["piped",[3,3,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]]],[23476,25227,28685]]]]},{"k":"G833","v":[["*",[12,12,[[39,3,3,0,3,[[954,3,3,0,3]]],[40,3,3,3,6,[[970,2,2,3,5],[971,1,1,5,6]]],[41,2,2,6,8,[[983,1,1,6,7],[994,1,1,7,8]]],[42,3,3,8,11,[[1006,2,2,8,10],[1014,1,1,10,11]]],[65,1,1,11,12,[[1177,1,1,11,12]]]],[24057,24112,24123,24808,24820,24842,25426,25919,26482,26497,26800,30874]]],["+",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26482]]],["court",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30874]]],["fold",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26497]]],["hall",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24842,25919]]],["palace",[7,7,[[39,3,3,0,3,[[954,3,3,0,3]]],[40,2,2,3,5,[[970,2,2,3,5]]],[41,1,1,5,6,[[983,1,1,5,6]]],[42,1,1,6,7,[[1014,1,1,6,7]]]],[24057,24112,24123,24808,24820,25426,26800]]]]},{"k":"G834","v":[["*",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[23402,31015]]],["minstrels",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23402]]],["pipers",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31015]]]]},{"k":"G835","v":[["*",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]]],[23843,25863]]],["abode",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25863]]],["lodged",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23843]]]]},{"k":"G836","v":[["pipe",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28685]]]]},{"k":"G837","v":[["*",[22,22,[[39,2,2,0,2,[[934,1,1,0,1],[941,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,4,4,3,7,[[973,1,1,3,4],[974,1,1,4,5],[984,1,1,5,6],[985,1,1,6,7]]],[42,1,1,7,8,[[999,1,1,7,8]]],[43,4,4,8,12,[[1023,1,1,8,9],[1024,1,1,9,10],[1029,1,1,10,11],[1036,1,1,11,12]]],[45,2,2,12,14,[[1064,2,2,12,14]]],[46,2,2,14,16,[[1086,1,1,14,15],[1087,1,1,15,16]]],[48,2,2,16,18,[[1098,1,1,16,17],[1100,1,1,17,18]]],[50,2,2,18,20,[[1107,1,1,18,19],[1108,1,1,19,20]]],[59,1,1,20,21,[[1152,1,1,20,21]]],[60,1,1,21,22,[[1158,1,1,21,22]]]],[23310,23571,24331,24973,25013,25486,25537,26150,27108,27133,27361,27605,28416,28417,28966,28986,29250,29287,29475,29513,30401,30540]]],["grew",[6,6,[[41,3,3,0,3,[[973,1,1,0,1],[974,1,1,1,2],[985,1,1,2,3]]],[43,3,3,3,6,[[1024,1,1,3,4],[1029,1,1,4,5],[1036,1,1,5,6]]]],[24973,25013,25537,27133,27361,27605]]],["grow",[4,4,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]],[60,1,1,3,4,[[1158,1,1,3,4]]]],[23310,25486,30401,30540]]],["groweth",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29250]]],["grown",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23571]]],["increase",[4,4,[[42,1,1,0,1,[[999,1,1,0,1]]],[45,2,2,1,3,[[1064,2,2,1,3]]],[46,1,1,3,4,[[1086,1,1,3,4]]]],[26150,28416,28417,28966]]],["increased",[3,3,[[40,1,1,0,1,[[960,1,1,0,1]]],[43,1,1,1,2,[[1023,1,1,1,2]]],[46,1,1,2,3,[[1087,1,1,2,3]]]],[24331,27108,28986]]],["increaseth",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29513]]],["increasing",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29475]]],["up",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29287]]]]},{"k":"G838","v":[["increase",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[29288,29513]]]]},{"k":"G839","v":[["*",[15,14,[[39,3,2,0,2,[[934,3,2,0,2]]],[41,4,4,2,6,[[982,1,1,2,3],[984,1,1,3,4],[985,2,2,4,6]]],[43,5,5,6,11,[[1021,2,2,6,8],[1040,2,2,8,10],[1042,1,1,10,11]]],[45,1,1,11,12,[[1076,1,1,11,12]]],[58,2,2,12,14,[[1149,2,2,12,14]]]],[23312,23316,25398,25487,25550,25551,27025,27027,27749,27754,27818,28750,30350,30351]]],["day",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27025]]],["morrow",[14,13,[[39,3,2,0,2,[[934,3,2,0,2]]],[41,4,4,2,6,[[982,1,1,2,3],[984,1,1,3,4],[985,2,2,4,6]]],[43,4,4,6,10,[[1021,1,1,6,7],[1040,2,2,7,9],[1042,1,1,9,10]]],[45,1,1,10,11,[[1076,1,1,10,11]]],[58,2,2,11,13,[[1149,2,2,11,13]]]],[23312,23316,25398,25487,25550,25551,27027,27749,27754,27818,28750,30350,30351]]]]},{"k":"G840","v":[["austere",[2,2,[[41,2,2,0,2,[[991,2,2,0,2]]]],[25752,25753]]]]},{"k":"G841","v":[["*",[2,2,[[46,1,1,0,1,[[1086,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[28964,29794]]],["contentment",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29794]]],["sufficiency",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28964]]]]},{"k":"G842","v":[["content",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29453]]]]},{"k":"G843","v":[["himself",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29934]]]]},{"k":"G844","v":[["*",[2,2,[[40,1,1,0,1,[[960,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]]],[24351,27347]]],["accord",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27347]]],["herself",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24351]]]]},{"k":"G845","v":[["eyewitnesses",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24895]]]]},{"k":"G846","v":[["*",[4813,3317,[[39,829,569,0,569,[[929,17,9,0,9],[930,20,14,9,23],[931,15,11,23,34],[932,25,16,34,50],[933,25,22,50,72],[934,9,7,72,79],[935,19,15,79,94],[936,39,26,94,120],[937,38,24,120,144],[938,21,16,144,160],[939,8,8,160,168],[940,44,28,168,196],[941,51,37,196,233],[942,35,23,233,256],[943,22,14,256,270],[944,17,13,270,283],[945,40,22,283,305],[946,42,24,305,329],[947,27,19,329,348],[948,28,20,348,368],[949,51,30,368,398],[950,33,26,398,424],[951,14,11,424,435],[952,14,10,435,445],[953,27,21,445,466],[954,61,46,466,512],[955,65,42,512,554],[956,22,15,554,569]]],[40,705,432,569,1001,[[957,51,31,569,600],[958,30,19,600,619],[959,39,22,619,641],[960,32,25,641,666],[961,50,31,666,697],[962,73,40,697,737],[963,34,21,737,758],[964,43,24,758,782],[965,64,38,782,820],[966,60,32,820,852],[967,30,19,852,871],[968,48,29,871,900],[969,10,7,900,907],[970,78,52,907,959],[971,48,31,959,990],[972,15,11,990,1001]]],[41,1013,659,1001,1660,[[973,59,46,1001,1047],[974,55,33,1047,1080],[975,16,14,1080,1094],[976,58,31,1094,1125],[977,45,29,1125,1154],[978,40,29,1154,1183],[979,41,25,1183,1208],[980,71,40,1208,1248],[981,72,44,1248,1292],[982,34,22,1292,1314],[983,55,32,1314,1346],[984,23,19,1346,1365],[985,26,17,1365,1382],[986,25,18,1382,1400],[987,29,18,1400,1418],[988,21,17,1418,1435],[989,28,18,1435,1453],[990,31,22,1453,1475],[991,42,31,1475,1506],[992,36,27,1506,1533],[993,9,8,1533,1541],[994,70,46,1541,1587],[995,59,34,1587,1621],[996,68,39,1621,1660]]],[42,746,514,1660,2174,[[997,50,36,1660,1696],[998,25,17,1696,1713],[999,25,22,1713,1735],[1000,60,39,1735,1774],[1001,27,21,1774,1795],[1002,55,38,1795,1833],[1003,46,32,1833,1865],[1004,48,33,1865,1898],[1005,48,31,1898,1929],[1006,35,23,1929,1952],[1007,52,39,1952,1991],[1008,42,29,1991,2020],[1009,28,22,2020,2042],[1010,19,11,2042,2053],[1011,9,8,2053,2061],[1012,10,8,2061,2069],[1013,27,17,2069,2086],[1014,43,28,2086,2114],[1015,36,24,2114,2138],[1016,33,20,2138,2158],[1017,28,16,2158,2174]]],[43,638,463,2174,2637,[[1018,20,14,2174,2188],[1019,23,17,2188,2205],[1020,19,14,2205,2219],[1021,27,22,2219,2241],[1022,33,26,2241,2267],[1023,7,6,2267,2273],[1024,50,31,2273,2304],[1025,23,19,2304,2323],[1026,41,28,2323,2351],[1027,36,25,2351,2376],[1028,15,12,2376,2388],[1029,22,14,2388,2402],[1030,32,25,2402,2427],[1031,15,12,2427,2439],[1032,22,16,2439,2455],[1033,25,18,2455,2473],[1034,22,17,2473,2490],[1035,17,12,2490,2502],[1036,22,14,2502,2516],[1037,23,17,2516,2533],[1038,26,22,2533,2555],[1039,20,13,2555,2568],[1040,27,18,2568,2586],[1041,17,12,2586,2598],[1042,22,16,2598,2614],[1043,9,6,2614,2620],[1044,6,6,2620,2626],[1045,17,11,2626,2637]]],[44,85,71,2637,2708,[[1046,9,7,2637,2644],[1047,3,3,2644,2647],[1048,3,2,2647,2649],[1049,8,6,2649,2655],[1050,1,1,2655,2656],[1051,5,5,2656,2661],[1052,4,4,2661,2665],[1053,4,3,2665,2668],[1054,6,6,2668,2674],[1055,7,5,2674,2679],[1056,16,12,2679,2691],[1057,4,3,2691,2694],[1058,2,2,2694,2696],[1059,2,2,2696,2698],[1060,6,6,2698,2704],[1061,5,4,2704,2708]]],[45,62,49,2708,2757,[[1062,7,5,2708,2713],[1063,5,5,2713,2718],[1068,8,4,2718,2722],[1069,4,3,2722,2725],[1070,1,1,2725,2726],[1071,8,8,2726,2734],[1072,6,4,2734,2738],[1073,9,8,2738,2746],[1075,3,3,2746,2749],[1076,7,6,2749,2755],[1077,4,2,2755,2757]]],[46,58,47,2757,2804,[[1078,4,3,2757,2760],[1079,4,4,2760,2764],[1080,5,4,2764,2768],[1081,2,2,2768,2770],[1082,6,5,2770,2775],[1083,5,3,2775,2778],[1084,6,5,2778,2783],[1085,8,6,2783,2789],[1086,4,4,2789,2793],[1087,3,3,2793,2796],[1088,4,3,2796,2799],[1089,4,3,2799,2802],[1090,3,2,2802,2804]]],[47,21,19,2804,2823,[[1091,5,5,2804,2809],[1092,7,6,2809,2815],[1093,5,4,2815,2819],[1094,2,2,2819,2821],[1096,2,2,2821,2823]]],[48,51,39,2823,2862,[[1097,15,10,2823,2833],[1098,6,5,2833,2838],[1099,5,5,2838,2843],[1100,7,5,2843,2848],[1101,10,8,2848,2856],[1102,8,6,2856,2862]]],[49,30,19,2862,2881,[[1103,4,3,2862,2865],[1104,12,8,2865,2873],[1105,12,6,2873,2879],[1106,2,2,2879,2881]]],[50,42,33,2881,2914,[[1107,17,11,2881,2892],[1108,12,9,2892,2901],[1109,6,6,2901,2907],[1110,7,7,2907,2914]]],[51,20,19,2914,2933,[[1111,2,2,2914,2916],[1112,4,4,2916,2920],[1113,3,3,2920,2923],[1114,5,5,2923,2928],[1115,6,5,2928,2933]]],[52,13,12,2933,2945,[[1116,3,3,2933,2936],[1117,7,6,2936,2942],[1118,3,3,2942,2945]]],[53,6,6,2945,2951,[[1119,3,3,2945,2948],[1121,1,1,2948,2949],[1122,1,1,2949,2950],[1123,1,1,2950,2951]]],[54,12,11,2951,2962,[[1125,2,2,2951,2953],[1126,4,4,2953,2957],[1127,2,2,2957,2959],[1128,4,3,2959,2962]]],[55,6,5,2962,2967,[[1129,4,3,2962,2965],[1131,2,2,2965,2967]]],[56,3,3,2967,2970,[[1132,3,3,2967,2970]]],[57,115,80,2970,3050,[[1133,8,6,2970,2976],[1134,16,8,2976,2984],[1135,7,6,2984,2990],[1136,9,7,2990,2997],[1137,4,4,2997,3001],[1138,4,4,3001,3005],[1139,9,8,3005,3013],[1140,16,5,3013,3018],[1141,5,5,3018,3023],[1142,13,8,3023,3031],[1143,12,9,3031,3040],[1144,5,5,3040,3045],[1145,7,5,3045,3050]]],[58,29,23,3050,3073,[[1146,6,5,3050,3055],[1147,8,7,3055,3062],[1148,6,4,3062,3066],[1149,1,1,3066,3067],[1150,8,6,3067,3073]]],[59,29,25,3073,3098,[[1151,7,5,3073,3078],[1152,7,7,3078,3085],[1153,6,5,3085,3090],[1154,5,5,3090,3095],[1155,4,3,3095,3098]]],[60,24,22,3098,3120,[[1156,4,4,3098,3102],[1157,11,9,3102,3111],[1158,9,9,3111,3120]]],[61,60,44,3120,3164,[[1159,6,4,3120,3124],[1160,16,13,3124,3137],[1161,19,12,3137,3149],[1162,13,9,3149,3158],[1163,6,6,3158,3164]]],[62,4,3,3164,3167,[[1164,4,3,3164,3167]]],[63,3,3,3167,3170,[[1165,3,3,3167,3170]]],[64,4,3,3170,3173,[[1166,4,3,3170,3173]]],[65,205,144,3173,3317,[[1167,7,5,3173,3178],[1168,11,9,3178,3187],[1169,8,5,3187,3192],[1171,4,4,3192,3196],[1172,11,5,3196,3201],[1173,8,6,3201,3207],[1174,4,4,3207,3211],[1175,12,9,3211,3220],[1176,7,3,3220,3223],[1177,14,8,3223,3231],[1178,7,6,3231,3237],[1179,14,10,3237,3247],[1180,6,6,3247,3253],[1181,1,1,3253,3254],[1182,6,6,3254,3260],[1183,9,7,3260,3267],[1184,18,11,3267,3278],[1185,12,9,3278,3287],[1186,17,10,3287,3297],[1187,20,13,3297,3310],[1188,9,7,3310,3317]]]],[23146,23155,23162,23163,23164,23165,23167,23168,23169,23171,23172,23173,23174,23176,23177,23178,23180,23182,23183,23185,23189,23190,23191,23195,23196,23197,23198,23199,23203,23204,23205,23206,23207,23208,23212,23214,23215,23216,23217,23218,23219,23220,23227,23228,23229,23230,23231,23232,23233,23234,23235,23236,23237,23238,23239,23240,23241,23242,23243,23244,23249,23259,23262,23263,23264,23265,23266,23269,23273,23274,23275,23280,23283,23290,23296,23297,23308,23315,23316,23322,23325,23326,23327,23328,23329,23330,23332,23336,23339,23340,23342,23343,23344,23345,23346,23347,23348,23349,23350,23352,23358,23359,23360,23361,23362,23363,23364,23365,23366,23367,23368,23369,23370,23371,23372,23373,23375,23376,23377,23379,23381,23383,23388,23389,23390,23391,23393,23394,23395,23397,23398,23399,23400,23401,23403,23404,23406,23407,23408,23409,23410,23411,23414,23415,23418,23419,23421,23422,23428,23429,23430,23435,23438,23442,23443,23446,23449,23450,23453,23456,23460,23462,23463,23470,23471,23473,23479,23484,23490,23491,23492,23493,23498,23499,23500,23503,23504,23505,23507,23508,23510,23511,23514,23515,23516,23518,23521,23522,23525,23528,23530,23531,23535,23536,23537,23539,23541,23542,23543,23546,23549,23550,23551,23552,23553,23554,23558,23559,23563,23564,23566,23567,23568,23569,23570,23571,23572,23573,23575,23576,23578,23580,23581,23583,23585,23589,23590,23591,23593,23594,23595,23596,23597,23599,23600,23601,23602,23604,23608,23609,23610,23611,23612,23613,23614,23615,23619,23622,23623,23624,23625,23628,23629,23630,23632,23633,23636,23641,23643,23645,23647,23648,23655,23656,23658,23661,23663,23665,23666,23667,23673,23674,23676,23677,23678,23680,23687,23689,23690,23692,23693,23694,23697,23701,23702,23703,23705,23707,23709,23710,23711,23712,23713,23714,23716,23717,23718,23719,23720,23722,23723,23724,23725,23726,23727,23729,23733,23735,23736,23737,23739,23740,23742,23744,23746,23747,23748,23749,23751,23752,23753,23754,23755,23756,23757,23758,23759,23761,23762,23764,23765,23766,23769,23770,23772,23773,23775,23776,23777,23778,23779,23780,23782,23783,23787,23788,23789,23790,23794,23798,23799,23800,23802,23804,23805,23809,23810,23811,23812,23813,23814,23815,23817,23821,23823,23824,23825,23826,23828,23829,23832,23833,23836,23839,23840,23842,23843,23845,23847,23849,23850,23851,23853,23857,23858,23859,23860,23861,23862,23863,23864,23865,23867,23868,23869,23870,23871,23872,23873,23878,23879,23884,23885,23887,23888,23890,23891,23892,23893,23894,23895,23896,23900,23901,23905,23906,23907,23909,23911,23913,23914,23915,23917,23918,23921,23922,23933,23936,23938,23939,23940,23944,23948,23952,23955,23958,23959,23960,23961,23988,23989,24002,24003,24004,24008,24010,24014,24018,24022,24024,24025,24027,24028,24029,24030,24031,24034,24036,24037,24039,24040,24045,24048,24049,24052,24053,24061,24062,24064,24067,24069,24070,24071,24072,24073,24075,24076,24078,24079,24080,24081,24083,24085,24087,24088,24089,24090,24092,24094,24096,24097,24098,24099,24101,24102,24103,24104,24105,24106,24110,24112,24113,24115,24116,24117,24118,24119,24121,24123,24125,24127,24129,24130,24131,24132,24135,24136,24139,24140,24141,24142,24143,24146,24147,24148,24150,24151,24154,24155,24156,24157,24158,24159,24160,24161,24163,24164,24165,24166,24167,24168,24171,24172,24173,24177,24178,24182,24183,24184,24186,24188,24189,24193,24194,24197,24198,24199,24202,24203,24204,24205,24206,24208,24209,24211,24212,24213,24214,24215,24218,24220,24223,24225,24227,24228,24231,24232,24233,24234,24235,24237,24238,24240,24241,24242,24243,24245,24246,24247,24249,24251,24252,24253,24254,24255,24256,24257,24258,24259,24260,24262,24263,24264,24265,24268,24273,24274,24275,24276,24277,24278,24279,24280,24281,24283,24284,24285,24286,24287,24290,24292,24293,24294,24295,24296,24297,24298,24299,24300,24301,24302,24305,24307,24308,24309,24311,24315,24319,24320,24321,24322,24324,24325,24327,24330,24332,24333,24334,24335,24336,24338,24339,24344,24347,24348,24350,24353,24355,24356,24357,24358,24359,24360,24361,24363,24364,24366,24367,24368,24370,24372,24373,24374,24376,24377,24380,24381,24382,24383,24384,24385,24386,24387,24388,24391,24392,24393,24394,24395,24397,24398,24399,24401,24403,24404,24405,24407,24408,24409,24410,24411,24413,24414,24415,24417,24418,24421,24423,24424,24426,24427,24429,24430,24433,24434,24435,24436,24437,24438,24440,24441,24442,24443,24444,24445,24446,24448,24452,24453,24454,24455,24456,24457,24458,24459,24461,24463,24464,24465,24468,24469,24472,24475,24477,24478,24480,24481,24482,24488,24489,24490,24491,24492,24495,24496,24497,24498,24499,24501,24503,24504,24505,24507,24509,24511,24513,24515,24517,24519,24521,24522,24523,24525,24526,24527,24529,24530,24531,24532,24534,24535,24538,24539,24540,24541,24542,24545,24547,24549,24550,24551,24552,24553,24554,24556,24557,24558,24559,24560,24561,24563,24564,24565,24566,24567,24569,24570,24571,24573,24574,24576,24577,24580,24581,24582,24583,24584,24585,24586,24588,24589,24590,24591,24593,24594,24598,24599,24601,24602,24603,24604,24605,24606,24608,24609,24612,24615,24616,24620,24621,24622,24623,24624,24625,24626,24627,24630,24634,24636,24637,24639,24640,24642,24643,24644,24645,24646,24647,24652,24653,24654,24657,24658,24661,24662,24663,24667,24668,24669,24671,24673,24674,24676,24677,24679,24680,24681,24685,24686,24687,24688,24689,24690,24691,24692,24694,24695,24696,24697,24699,24701,24702,24705,24706,24707,24709,24710,24711,24716,24717,24718,24719,24720,24722,24726,24729,24745,24755,24757,24759,24760,24761,24763,24764,24765,24766,24767,24769,24770,24772,24773,24774,24775,24776,24777,24778,24779,24781,24783,24784,24788,24789,24791,24793,24794,24795,24797,24798,24799,24800,24801,24802,24804,24805,24806,24807,24808,24809,24810,24811,24812,24813,24815,24818,24819,24821,24823,24824,24826,24828,24829,24830,24832,24834,24835,24836,24837,24838,24839,24840,24841,24842,24843,24844,24845,24846,24847,24848,24849,24850,24851,24852,24853,24855,24858,24862,24865,24867,24870,24872,24874,24879,24880,24881,24883,24884,24885,24887,24888,24891,24892,24898,24900,24901,24904,24905,24906,24907,24909,24910,24912,24914,24915,24916,24917,24921,24922,24923,24924,24925,24926,24928,24929,24931,24934,24938,24942,24943,24944,24948,24949,24950,24951,24952,24953,24954,24955,24956,24957,24958,24959,24960,24967,24968,24969,24970,24973,24977,24978,24979,24980,24981,24982,24983,24988,24990,24991,24993,24994,24995,24998,24999,25000,25001,25006,25007,25008,25011,25013,25014,25015,25016,25017,25018,25019,25020,25021,25022,25023,25024,25026,25029,25032,25035,25036,25037,25038,25039,25040,25041,25042,25044,25047,25048,25065,25066,25067,25068,25069,25071,25072,25075,25076,25077,25078,25079,25080,25083,25084,25085,25086,25089,25090,25092,25093,25094,25095,25098,25100,25101,25102,25103,25104,25105,25106,25108,25109,25110,25112,25113,25114,25116,25118,25119,25120,25121,25122,25123,25124,25125,25126,25127,25129,25132,25134,25135,25136,25137,25138,25140,25141,25142,25143,25144,25147,25148,25149,25150,25151,25152,25153,25154,25155,25156,25157,25159,25160,25163,25165,25166,25169,25172,25177,25178,25179,25181,25184,25185,25186,25188,25191,25193,25194,25197,25198,25199,25200,25201,25204,25206,25207,25208,25210,25212,25213,25215,25216,25217,25223,25225,25231,25233,25234,25235,25237,25238,25242,25243,25246,25248,25249,25250,25252,25254,25257,25261,25263,25264,25265,25266,25267,25268,25269,25270,25272,25273,25274,25275,25276,25277,25281,25282,25283,25284,25285,25286,25287,25289,25290,25292,25293,25294,25295,25297,25298,25299,25300,25301,25302,25303,25304,25306,25308,25310,25311,25312,25313,25314,25315,25317,25318,25319,25321,25322,25325,25330,25331,25332,25333,25334,25335,25336,25337,25338,25340,25341,25343,25346,25347,25348,25349,25350,25351,25352,25353,25354,25355,25356,25358,25359,25361,25363,25364,25365,25369,25370,25372,25373,25381,25384,25388,25389,25391,25393,25394,25396,25397,25398,25400,25401,25402,25403,25404,25405,25406,25407,25409,25410,25411,25413,25416,25417,25418,25419,25420,25421,25422,25423,25424,25426,25427,25432,25433,25434,25436,25437,25442,25444,25450,25451,25452,25453,25454,25457,25458,25459,25465,25467,25469,25471,25472,25473,25474,25475,25479,25483,25495,25496,25500,25502,25503,25505,25506,25507,25517,25519,25520,25522,25524,25525,25526,25527,25530,25531,25533,25535,25536,25537,25541,25549,25550,25552,25554,25555,25557,25558,25559,25560,25561,25562,25565,25568,25569,25571,25572,25578,25582,25584,25585,25588,25589,25590,25591,25592,25594,25600,25602,25603,25604,25606,25608,25609,25610,25613,25615,25616,25618,25619,25621,25622,25626,25627,25634,25635,25636,25640,25641,25642,25643,25644,25647,25648,25649,25650,25651,25653,25654,25655,25659,25660,25662,25663,25664,25665,25666,25667,25670,25671,25676,25682,25684,25686,25688,25689,25691,25693,25695,25696,25703,25704,25705,25706,25707,25710,25712,25717,25719,25721,25722,25723,25725,25727,25728,25730,25731,25733,25735,25736,25737,25740,25742,25744,25745,25746,25748,25753,25754,25755,25756,25757,25758,25761,25762,25763,25764,25765,25766,25767,25768,25770,25771,25772,25776,25777,25778,25779,25780,25781,25782,25784,25787,25788,25789,25793,25794,25796,25797,25798,25799,25800,25802,25804,25805,25806,25807,25810,25812,25813,25817,25819,25820,25821,25823,25830,25833,25834,25836,25846,25847,25855,25864,25866,25868,25869,25870,25873,25874,25877,25878,25879,25880,25883,25887,25888,25889,25897,25899,25900,25902,25903,25904,25905,25907,25908,25909,25910,25911,25912,25913,25914,25915,25916,25918,25919,25920,25921,25922,25923,25924,25925,25927,25928,25929,25930,25931,25934,25935,25936,25937,25938,25942,25943,25944,25945,25946,25947,25949,25950,25951,25952,25956,25957,25958,25959,25960,25961,25962,25963,25967,25968,25969,25970,25971,25973,25974,25975,25978,25984,25986,25988,25990,25992,25995,25996,25999,26001,26002,26004,26005,26006,26007,26008,26009,26010,26011,26012,26014,26015,26016,26018,26019,26020,26021,26022,26024,26026,26027,26029,26030,26031,26032,26033,26034,26035,26036,26037,26038,26041,26042,26043,26047,26048,26049,26050,26051,26054,26055,26056,26058,26059,26060,26063,26065,26066,26069,26070,26071,26073,26075,26076,26077,26079,26081,26082,26083,26084,26085,26086,26087,26089,26090,26091,26092,26093,26094,26095,26097,26098,26099,26100,26102,26103,26105,26106,26107,26112,26113,26114,26115,26117,26118,26119,26120,26122,26123,26124,26128,26129,26130,26135,26136,26137,26138,26139,26140,26141,26142,26146,26147,26148,26149,26152,26153,26155,26156,26158,26160,26163,26164,26165,26166,26167,26168,26169,26170,26171,26172,26173,26175,26177,26179,26180,26181,26182,26183,26186,26187,26188,26189,26190,26194,26195,26196,26197,26198,26200,26201,26203,26204,26205,26206,26207,26208,26209,26216,26217,26218,26219,26221,26222,26224,26225,26226,26227,26228,26229,26230,26233,26237,26238,26245,26246,26247,26248,26249,26259,26262,26263,26264,26265,26272,26273,26274,26277,26278,26279,26281,26282,26283,26285,26286,26287,26288,26289,26291,26292,26296,26297,26298,26300,26301,26307,26310,26311,26313,26317,26318,26321,26322,26323,26325,26327,26328,26329,26331,26332,26333,26334,26335,26337,26338,26339,26340,26341,26344,26345,26346,26349,26354,26357,26358,26359,26360,26361,26363,26366,26367,26371,26372,26373,26375,26376,26378,26379,26380,26383,26384,26385,26387,26388,26391,26392,26393,26394,26395,26400,26401,26402,26404,26406,26407,26408,26409,26410,26411,26412,26414,26415,26420,26422,26423,26425,26429,26433,26436,26438,26439,26440,26442,26443,26447,26448,26449,26450,26452,26453,26454,26455,26456,26457,26458,26459,26460,26461,26462,26463,26464,26466,26467,26468,26470,26471,26474,26475,26476,26477,26478,26480,26481,26484,26485,26486,26487,26488,26489,26492,26493,26498,26499,26501,26505,26506,26508,26509,26512,26513,26514,26515,26519,26520,26522,26523,26524,26525,26526,26527,26528,26531,26533,26534,26535,26536,26537,26538,26539,26540,26542,26543,26546,26547,26548,26550,26552,26553,26554,26555,26556,26557,26559,26560,26561,26562,26563,26567,26568,26569,26571,26572,26576,26577,26580,26582,26583,26584,26586,26587,26591,26593,26594,26596,26597,26598,26599,26601,26603,26604,26605,26606,26609,26614,26615,26616,26617,26620,26621,26622,26627,26628,26629,26630,26631,26632,26633,26636,26637,26638,26639,26640,26641,26642,26646,26647,26653,26655,26657,26658,26659,26661,26662,26666,26667,26668,26673,26674,26675,26676,26677,26678,26679,26685,26689,26690,26691,26701,26704,26705,26709,26714,26721,26723,26724,26730,26733,26743,26745,26747,26753,26755,26757,26761,26765,26767,26768,26769,26770,26771,26773,26774,26776,26777,26778,26779,26780,26781,26782,26785,26786,26787,26789,26790,26791,26792,26794,26795,26796,26797,26798,26803,26804,26805,26806,26807,26808,26809,26810,26811,26813,26814,26815,26816,26818,26819,26822,26823,26827,26828,26829,26830,26831,26832,26834,26835,26837,26840,26841,26843,26848,26849,26850,26852,26854,26856,26857,26858,26859,26860,26861,26865,26869,26873,26874,26876,26880,26882,26883,26884,26885,26886,26887,26888,26889,26890,26891,26892,26893,26895,26896,26898,26900,26901,26903,26904,26908,26910,26911,26913,26914,26915,26917,26918,26920,26921,26922,26923,26926,26927,26929,26930,26932,26933,26934,26937,26938,26941,26942,26943,26945,26949,26950,26952,26953,26955,26960,26963,26971,26973,26974,26978,26979,26980,26983,26987,26990,26993,26994,26997,27000,27001,27003,27004,27005,27006,27007,27008,27009,27012,27014,27018,27022,27023,27024,27025,27027,27029,27030,27035,27036,27037,27038,27039,27040,27041,27043,27045,27046,27048,27051,27053,27054,27055,27056,27061,27065,27066,27067,27068,27069,27072,27074,27076,27077,27078,27080,27081,27083,27084,27085,27086,27091,27092,27094,27095,27096,27097,27098,27099,27100,27102,27107,27112,27113,27115,27116,27118,27119,27120,27121,27122,27124,27125,27126,27131,27135,27137,27139,27141,27142,27143,27146,27147,27149,27150,27151,27152,27153,27154,27156,27158,27159,27160,27163,27170,27173,27176,27177,27178,27181,27187,27189,27190,27191,27192,27193,27194,27196,27206,27207,27208,27209,27211,27214,27215,27216,27218,27219,27222,27223,27224,27226,27227,27228,27231,27232,27233,27234,27237,27239,27240,27241,27242,27243,27244,27245,27246,27250,27251,27253,27254,27255,27257,27259,27262,27263,27266,27267,27269,27270,27272,27274,27278,27279,27280,27282,27283,27284,27285,27286,27287,27294,27297,27299,27300,27301,27302,27305,27307,27309,27310,27311,27319,27320,27322,27324,27327,27328,27329,27333,27335,27341,27342,27343,27344,27345,27346,27347,27352,27353,27354,27356,27357,27358,27360,27364,27365,27370,27371,27373,27375,27376,27377,27379,27380,27381,27383,27384,27386,27389,27390,27391,27392,27393,27395,27396,27405,27408,27412,27413,27415,27417,27419,27423,27426,27427,27429,27432,27433,27434,27437,27441,27444,27446,27447,27449,27450,27451,27454,27455,27458,27459,27462,27463,27464,27469,27480,27481,27486,27487,27490,27492,27493,27501,27503,27505,27506,27507,27508,27513,27515,27516,27517,27520,27522,27523,27525,27527,27528,27529,27532,27535,27538,27539,27541,27542,27547,27548,27550,27551,27554,27556,27557,27559,27560,27563,27568,27569,27572,27573,27575,27577,27578,27583,27584,27587,27588,27589,27591,27594,27597,27601,27602,27604,27607,27615,27616,27618,27623,27628,27629,27630,27632,27633,27636,27639,27640,27642,27644,27648,27656,27658,27660,27662,27663,27664,27665,27667,27671,27672,27676,27678,27683,27684,27685,27688,27689,27690,27691,27693,27694,27695,27696,27697,27698,27699,27700,27704,27706,27717,27719,27722,27723,27724,27726,27727,27728,27729,27731,27733,27734,27736,27737,27741,27743,27744,27745,27749,27751,27752,27754,27755,27761,27762,27764,27765,27766,27767,27769,27771,27777,27779,27784,27785,27789,27790,27791,27792,27793,27794,27795,27798,27799,27801,27802,27803,27804,27807,27811,27813,27815,27817,27818,27820,27821,27822,27823,27833,27834,27841,27847,27849,27853,27861,27863,27865,27869,27887,27898,27905,27907,27913,27915,27916,27920,27922,27926,27927,27928,27929,27947,27949,27950,27954,27956,27958,27962,27963,27965,27968,28011,28017,28025,28033,28035,28040,28044,28045,28056,28070,28072,28076,28077,28080,28094,28102,28108,28111,28132,28145,28148,28167,28172,28174,28176,28181,28188,28190,28193,28197,28199,28200,28213,28217,28218,28220,28223,28224,28226,28232,28236,28240,28244,28245,28249,28261,28265,28269,28272,28283,28284,28308,28314,28315,28324,28330,28331,28338,28350,28351,28353,28368,28373,28387,28392,28393,28403,28405,28408,28409,28410,28495,28499,28500,28522,28530,28533,28537,28563,28570,28571,28572,28574,28575,28576,28577,28589,28613,28614,28615,28620,28638,28639,28640,28642,28643,28645,28652,28659,28688,28701,28712,28728,28743,28745,28746,28756,28757,28787,28788,28806,28819,28820,28827,28832,28835,28837,28848,28855,28856,28859,28863,28872,28882,28886,28892,28896,28898,28911,28914,28915,28923,28927,28929,28930,28931,28934,28948,28950,28951,28954,28956,28965,28969,28970,28971,28972,28978,28983,29003,29004,29022,29035,29039,29040,29047,29054,29058,29069,29070,29073,29075,29083,29090,29091,29092,29094,29098,29108,29112,29114,29118,29148,29161,29201,29204,29210,29213,29216,29218,29220,29224,29225,29226,29228,29229,29239,29243,29245,29247,29249,29256,29257,29258,29263,29272,29282,29283,29287,29290,29293,29311,29316,29327,29329,29330,29331,29333,29334,29341,29346,29347,29355,29357,29359,29389,29390,29391,29393,29400,29409,29413,29415,29418,29419,29420,29422,29430,29431,29437,29440,29442,29444,29445,29474,29476,29479,29481,29482,29483,29484,29485,29489,29491,29494,29496,29500,29501,29503,29504,29506,29507,29508,29509,29521,29524,29526,29527,29534,29536,29544,29546,29550,29552,29555,29557,29559,29569,29570,29571,29584,29586,29589,29593,29601,29603,29612,29613,29617,29619,29620,29623,29624,29631,29634,29644,29653,29658,29661,29662,29665,29667,29671,29672,29677,29685,29692,29694,29704,29712,29714,29738,29763,29779,29817,29827,29837,29844,29852,29853,29858,29862,29878,29884,29886,29904,29905,29907,29924,29936,29950,29953,29955,29966,29967,29968,29969,29974,29975,29983,29984,29985,29987,29988,29990,29991,29995,29997,29998,30000,30002,30005,30010,30015,30020,30021,30022,30024,30025,30027,30032,30035,30037,30039,30051,30054,30055,30060,30065,30070,30074,30075,30082,30085,30088,30089,30100,30101,30102,30103,30104,30110,30128,30129,30131,30133,30134,30136,30144,30145,30146,30149,30150,30171,30176,30177,30178,30181,30183,30185,30188,30191,30200,30217,30222,30223,30229,30231,30246,30249,30254,30256,30258,30271,30277,30278,30289,30293,30296,30298,30300,30307,30309,30315,30316,30322,30328,30329,30330,30354,30357,30361,30368,30369,30373,30374,30385,30386,30389,30395,30398,30401,30404,30405,30408,30413,30420,30421,30430,30435,30436,30438,30446,30447,30450,30456,30459,30460,30472,30474,30476,30482,30484,30496,30497,30501,30502,30503,30508,30511,30519,30520,30521,30522,30526,30527,30529,30532,30535,30536,30537,30538,30540,30545,30546,30547,30550,30552,30553,30554,30555,30556,30558,30560,30565,30571,30575,30577,30578,30579,30580,30581,30582,30584,30585,30588,30591,30594,30596,30598,30601,30603,30607,30608,30612,30613,30616,30618,30619,30622,30624,30625,30634,30638,30639,30640,30642,30651,30655,30656,30665,30668,30670,30679,30683,30687,30698,30700,30703,30704,30714,30719,30724,30733,30734,30738,30739,30743,30744,30745,30754,30755,30758,30766,30767,30782,30783,30790,30792,30795,30797,30798,30801,30804,30812,30819,30824,30825,30826,30827,30829,30830,30832,30839,30841,30843,30844,30845,30846,30851,30856,30857,30859,30867,30870,30871,30873,30874,30877,30878,30879,30882,30883,30884,30895,30897,30900,30901,30902,30903,30910,30912,30913,30915,30916,30918,30920,30922,30923,30924,30927,30933,30935,30936,30939,30943,30947,30960,30962,30963,30968,30970,30973,30981,30982,30984,30985,30986,30989,30991,30996,30997,30999,31000,31001,31002,31004,31007,31008,31013,31017,31022,31024,31025,31027,31028,31031,31032,31035,31037,31040,31041,31042,31044,31045,31046,31047,31048,31049,31051,31056,31060,31067,31068,31069,31070,31071,31075,31076,31077,31078,31079,31080,31082,31083,31084,31085,31094,31098,31099]]],["+",[315,299,[[39,52,50,0,50,[[929,2,1,0,1],[930,1,1,1,2],[932,2,2,2,4],[933,2,2,4,6],[935,1,1,6,7],[937,3,3,7,10],[938,4,4,10,14],[939,1,1,14,15],[940,1,1,15,16],[941,2,2,16,18],[942,1,1,18,19],[943,4,4,19,23],[945,2,2,23,25],[946,3,3,25,28],[947,2,2,28,30],[949,5,4,30,34],[950,2,2,34,36],[951,3,3,36,39],[952,2,2,39,41],[953,1,1,41,42],[954,2,2,42,44],[955,5,5,44,49],[956,1,1,49,50]]],[40,40,39,50,89,[[957,2,2,50,52],[958,1,1,52,53],[959,2,2,53,55],[960,1,1,55,56],[961,3,3,56,59],[962,3,3,59,62],[964,4,4,62,66],[965,9,9,66,75],[966,3,3,75,78],[967,2,2,78,80],[968,1,1,80,81],[969,1,1,81,82],[970,2,2,82,84],[971,6,5,84,89]]],[41,51,47,89,136,[[973,1,1,89,90],[974,5,4,90,94],[975,1,1,94,95],[976,3,3,95,98],[977,3,2,98,100],[980,2,2,100,102],[981,3,2,102,104],[982,4,4,104,108],[983,2,2,108,110],[984,3,3,110,113],[985,4,4,113,117],[986,2,2,117,119],[987,1,1,119,120],[989,3,3,120,123],[990,2,2,123,125],[991,1,1,125,126],[992,2,2,126,128],[993,1,1,128,129],[994,1,1,129,130],[995,5,4,130,134],[996,2,2,134,136]]],[42,28,26,136,162,[[997,1,1,136,137],[998,2,2,137,139],[1000,1,1,139,140],[1002,7,6,140,146],[1003,1,1,146,147],[1006,3,2,147,149],[1007,4,4,149,153],[1008,2,2,153,155],[1010,1,1,155,156],[1011,1,1,156,157],[1013,1,1,157,158],[1014,2,2,158,160],[1015,1,1,160,161],[1016,1,1,161,162]]],[43,60,57,162,219,[[1018,2,2,162,164],[1019,1,1,164,165],[1020,1,1,165,166],[1021,3,3,166,169],[1022,4,4,169,173],[1024,6,6,173,179],[1025,1,1,179,180],[1026,5,4,180,184],[1027,5,4,184,188],[1028,1,1,188,189],[1029,3,3,189,192],[1030,6,5,192,197],[1031,2,2,197,199],[1032,3,3,199,202],[1033,1,1,202,203],[1034,2,2,203,205],[1035,2,2,205,207],[1036,1,1,207,208],[1037,4,4,208,212],[1039,1,1,212,213],[1040,3,3,213,216],[1041,1,1,216,217],[1042,1,1,217,218],[1044,1,1,218,219]]],[44,16,16,219,235,[[1046,4,4,219,223],[1048,1,1,223,224],[1049,1,1,224,225],[1051,1,1,225,226],[1053,1,1,226,227],[1054,1,1,227,228],[1055,1,1,228,229],[1056,2,2,229,231],[1057,1,1,231,232],[1058,1,1,232,233],[1059,1,1,233,234],[1060,1,1,234,235]]],[45,7,7,235,242,[[1062,1,1,235,236],[1068,2,2,236,238],[1070,1,1,238,239],[1072,1,1,239,240],[1073,1,1,240,241],[1077,1,1,241,242]]],[46,4,4,242,246,[[1078,1,1,242,243],[1082,1,1,243,244],[1089,1,1,244,245],[1090,1,1,245,246]]],[47,1,1,246,247,[[1092,1,1,246,247]]],[48,5,5,247,252,[[1098,1,1,247,248],[1102,4,4,248,252]]],[49,3,3,252,255,[[1103,1,1,252,253],[1104,1,1,253,254],[1106,1,1,254,255]]],[50,5,5,255,260,[[1107,1,1,255,256],[1108,1,1,256,257],[1110,3,3,257,260]]],[51,1,1,260,261,[[1115,1,1,260,261]]],[54,1,1,261,262,[[1128,1,1,261,262]]],[55,1,1,262,263,[[1131,1,1,262,263]]],[57,12,11,263,274,[[1133,1,1,263,264],[1134,1,1,264,265],[1136,3,3,265,268],[1140,3,2,268,270],[1142,1,1,270,271],[1144,3,3,271,274]]],[58,3,2,274,276,[[1148,2,1,274,275],[1150,1,1,275,276]]],[59,3,3,276,279,[[1151,1,1,276,277],[1152,1,1,277,278],[1154,1,1,278,279]]],[60,2,2,279,281,[[1156,1,1,279,280],[1158,1,1,280,281]]],[61,1,1,281,282,[[1161,1,1,281,282]]],[63,1,1,282,283,[[1165,1,1,282,283]]],[65,18,16,283,299,[[1167,1,1,283,284],[1172,1,1,284,285],[1173,1,1,285,286],[1176,5,3,286,289],[1177,1,1,289,290],[1179,4,4,290,294],[1182,1,1,294,295],[1186,2,2,295,297],[1187,1,1,297,298],[1188,1,1,298,299]]]],[23163,23176,23214,23217,23263,23264,23329,23395,23403,23410,23418,23438,23442,23453,23471,23525,23543,23567,23602,23647,23656,23663,23665,23701,23719,23735,23736,23742,23765,23769,23833,23845,23859,23870,23885,23906,23938,23939,23940,24004,24008,24037,24102,24113,24130,24160,24173,24177,24193,24203,24246,24258,24281,24302,24309,24327,24374,24377,24404,24414,24443,24453,24503,24507,24509,24526,24540,24556,24560,24565,24566,24574,24581,24583,24585,24590,24603,24604,24646,24653,24674,24729,24760,24809,24842,24843,24846,24862,24872,24900,24980,25001,25011,25019,25040,25068,25085,25092,25125,25126,25283,25298,25341,25343,25370,25372,25388,25396,25427,25458,25474,25503,25505,25524,25525,25526,25527,25558,25559,25616,25667,25682,25686,25705,25721,25776,25788,25797,25847,25880,25946,25959,25961,25988,26002,26022,26071,26114,26115,26168,26272,26296,26297,26301,26307,26311,26338,26484,26499,26527,26534,26571,26576,26587,26594,26679,26701,26778,26798,26815,26828,26882,26938,26943,26993,26997,27043,27048,27054,27065,27078,27097,27099,27122,27137,27142,27143,27152,27158,27192,27224,27246,27254,27257,27266,27282,27285,27299,27329,27341,27343,27344,27370,27380,27381,27396,27408,27415,27429,27450,27458,27459,27507,27532,27547,27578,27583,27618,27640,27648,27656,27662,27726,27744,27749,27762,27790,27822,27861,27947,27954,27956,27958,28011,28045,28070,28148,28172,28190,28220,28232,28265,28272,28284,28308,28392,28499,28522,28563,28613,28659,28787,28820,28882,29039,29054,29091,29245,29341,29355,29357,29359,29390,29393,29444,29489,29501,29546,29550,29555,29634,29886,29924,29975,29987,30020,30022,30027,30101,30103,30146,30223,30229,30231,30328,30369,30395,30401,30460,30484,30532,30601,30665,30700,30797,30819,30867,30870,30871,30873,30920,30922,30923,30924,30970,31041,31046,31075,31085]]],["He",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26071]]],["Her",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25242]]],["Him",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30758]]],["Himself",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23362]]],["His",[12,12,[[39,7,7,0,7,[[947,1,1,0,1],[953,3,3,1,4],[955,1,1,4,5],[956,2,2,5,7]]],[41,1,1,7,8,[[973,1,1,7,8]]],[42,4,4,8,12,[[998,1,1,8,9],[1003,1,1,9,10],[1005,1,1,10,11],[1012,1,1,11,12]]]],[23772,24029,24031,24034,24154,24198,24208,24956,26100,26331,26460,26755]]],["I",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28911]]],["Jesus",[3,3,[[40,2,2,0,2,[[957,1,1,0,1],[958,1,1,1,2]]],[42,1,1,2,3,[[1003,1,1,2,3]]]],[24260,24275,26378]]],["They",[3,3,[[42,1,1,0,1,[[1007,1,1,0,1]]],[57,1,1,1,2,[[1133,1,1,1,2]]],[61,1,1,2,3,[[1162,1,1,2,3]]]],[26557,29974,30608]]],["Ye",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30404]]],["a",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]]],[25008,27269]]],["also",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24173]]],["be",[3,3,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]],[65,1,1,2,3,[[1179,1,1,2,3]]]],[25144,27817,30918]]],["cause",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29409]]],["charge",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27176]]],["company",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27464]]],["for",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24078]]],["he",[252,243,[[39,30,30,0,30,[[929,2,2,0,2],[931,1,1,2,3],[933,1,1,3,4],[936,4,4,4,8],[937,1,1,8,9],[939,1,1,9,10],[940,2,2,10,12],[941,2,2,12,14],[942,1,1,14,15],[944,2,2,15,17],[945,2,2,17,19],[946,2,2,19,21],[949,3,3,21,24],[952,1,1,24,25],[953,1,1,25,26],[954,2,2,26,28],[955,2,2,28,30]]],[40,32,31,30,61,[[957,2,2,30,32],[958,3,2,32,34],[959,1,1,34,35],[960,3,3,35,38],[961,4,4,38,42],[962,4,4,42,46],[963,1,1,46,47],[964,1,1,47,48],[965,1,1,48,49],[966,2,2,49,51],[967,3,3,51,54],[968,2,2,54,56],[969,2,2,56,58],[970,3,3,58,61]]],[41,81,77,61,138,[[973,4,4,61,65],[974,2,2,65,67],[975,1,1,67,68],[976,3,3,68,71],[977,6,6,71,77],[978,5,5,77,82],[979,3,3,82,85],[980,10,9,85,94],[981,6,5,94,99],[982,1,1,99,100],[983,6,6,100,106],[985,1,1,106,107],[986,2,2,107,109],[987,3,2,109,111],[988,1,1,111,112],[989,5,4,112,116],[990,4,4,116,120],[991,5,5,120,125],[992,1,1,125,126],[994,3,3,126,129],[995,2,2,129,131],[996,7,7,131,138]]],[42,22,21,138,159,[[998,3,3,138,141],[1000,2,2,141,143],[1002,1,1,143,144],[1003,1,1,144,145],[1004,1,1,145,146],[1005,3,2,146,148],[1008,4,4,148,152],[1010,1,1,152,153],[1014,2,2,153,155],[1015,1,1,155,156],[1016,1,1,156,157],[1017,2,2,157,159]]],[43,41,40,159,199,[[1018,1,1,159,160],[1019,2,2,160,162],[1024,6,6,162,168],[1025,1,1,168,169],[1026,3,3,169,172],[1027,2,2,172,174],[1030,1,1,174,175],[1031,2,2,175,177],[1033,1,1,177,178],[1034,1,1,178,179],[1035,1,1,179,180],[1036,1,1,180,181],[1037,1,1,181,182],[1038,3,3,182,185],[1039,2,2,185,187],[1040,2,2,187,189],[1041,2,2,189,191],[1042,4,4,191,195],[1043,2,2,195,197],[1045,3,2,197,199]]],[44,5,5,199,204,[[1048,1,1,199,200],[1049,3,3,200,203],[1053,1,1,203,204]]],[45,4,4,204,208,[[1063,1,1,204,205],[1068,1,1,205,206],[1071,1,1,206,207],[1076,1,1,207,208]]],[46,1,1,208,209,[[1087,1,1,208,209]]],[48,3,3,209,212,[[1098,1,1,209,210],[1100,1,1,210,211],[1101,1,1,211,212]]],[49,1,1,212,213,[[1105,1,1,212,213]]],[50,3,2,213,215,[[1107,3,2,213,215]]],[52,2,2,215,217,[[1117,2,2,215,217]]],[53,1,1,217,218,[[1121,1,1,217,218]]],[57,8,8,218,226,[[1133,1,1,218,219],[1134,2,2,219,221],[1136,1,1,221,222],[1137,1,1,222,223],[1139,1,1,223,224],[1141,1,1,224,225],[1145,1,1,225,226]]],[59,1,1,226,227,[[1155,1,1,226,227]]],[61,8,8,227,235,[[1159,1,1,227,228],[1160,2,2,228,230],[1161,1,1,230,231],[1162,4,4,231,235]]],[65,9,8,235,243,[[1169,1,1,235,236],[1177,1,1,236,237],[1180,1,1,237,238],[1183,2,2,238,240],[1185,2,1,240,241],[1186,1,1,241,242],[1187,1,1,242,243]]]],[23164,23165,23203,23235,23346,23368,23369,23373,23397,23470,23492,23535,23541,23543,23599,23692,23693,23705,23718,23751,23752,23836,23849,23853,23960,24025,24101,24125,24141,24148,24223,24257,24283,24285,24301,24324,24350,24361,24366,24368,24382,24399,24423,24427,24452,24454,24499,24529,24566,24605,24634,24653,24663,24667,24694,24705,24718,24720,24757,24769,24797,24901,24910,24914,24915,24977,24994,25041,25078,25093,25104,25108,25116,25119,25121,25123,25124,25147,25152,25154,25166,25181,25200,25201,25223,25246,25250,25267,25272,25282,25286,25287,25294,25299,25319,25330,25335,25343,25352,25401,25406,25422,25427,25432,25433,25458,25535,25554,25582,25602,25608,25644,25662,25663,25667,25676,25712,25723,25727,25728,25740,25742,25746,25767,25768,25780,25905,25911,25924,25944,25958,26012,26014,26016,26019,26021,26022,26042,26107,26119,26120,26160,26207,26263,26332,26411,26461,26462,26586,26598,26617,26629,26678,26786,26807,26858,26876,26920,26921,26933,26973,26983,27118,27121,27131,27137,27139,27147,27216,27219,27232,27259,27300,27301,27390,27426,27433,27516,27548,27584,27607,27642,27678,27699,27704,27726,27728,27741,27749,27771,27794,27803,27804,27820,27821,27847,27853,27905,27928,28017,28033,28035,28040,28145,28409,28500,28589,28743,28978,29243,29283,29327,29442,29482,29483,29665,29667,29738,29968,29991,29995,30024,30032,30088,30131,30246,30472,30547,30552,30575,30603,30613,30616,30618,30622,30766,30877,30943,30985,30986,31032,31041,31060]]],["her",[154,129,[[39,22,19,0,19,[[929,3,3,0,3],[933,4,3,3,6],[936,2,1,6,7],[937,3,3,7,10],[942,3,3,10,13],[943,3,2,13,15],[948,1,1,15,16],[949,1,1,16,17],[950,1,1,17,18],[954,1,1,18,19]]],[40,23,22,19,41,[[957,3,2,19,21],[961,6,6,21,27],[962,3,3,27,30],[963,2,2,30,32],[966,1,1,32,33],[968,3,3,33,36],[969,1,1,36,37],[970,3,3,37,40],[972,1,1,40,41]]],[41,37,31,41,72,[[973,12,11,41,52],[974,1,1,52,53],[976,3,2,53,55],[979,5,3,55,58],[980,7,6,58,64],[982,3,3,64,67],[985,3,2,67,69],[990,1,1,69,70],[992,2,2,70,72]]],[42,30,27,72,99,[[998,1,1,72,73],[1000,8,8,73,81],[1004,4,4,81,85],[1007,10,7,85,92],[1012,1,1,92,93],[1015,1,1,93,94],[1016,5,5,94,99]]],[43,9,7,99,106,[[1022,4,3,99,102],[1026,2,1,102,103],[1029,1,1,103,104],[1033,1,1,104,105],[1044,1,1,105,106]]],[44,3,2,106,108,[[1054,1,1,106,107],[1061,2,1,107,108]]],[45,3,2,108,110,[[1068,1,1,108,109],[1072,2,1,109,110]]],[47,1,1,110,111,[[1094,1,1,110,111]]],[65,26,18,111,129,[[1168,3,2,111,113],[1178,1,1,113,114],[1182,1,1,114,115],[1183,4,3,115,118],[1184,16,10,118,128],[1185,1,1,128,129]]]],[23163,23164,23169,23262,23265,23266,23360,23397,23401,23404,23601,23604,23608,23656,23661,23813,23828,23900,24067,24245,24246,24387,24393,24397,24398,24405,24407,24424,24430,24433,24490,24492,24599,24694,24695,24696,24745,24759,24760,24763,24884,24898,24921,24923,24928,24929,24931,24934,24938,24949,24951,24954,24995,25101,25102,25207,25208,25243,25289,25293,25297,25299,25300,25301,25403,25404,25405,25530,25531,25693,25810,25812,26099,26163,26166,26169,26172,26173,26177,26182,26183,26384,26388,26391,26392,26524,26528,26546,26548,26554,26556,26563,26747,26852,26880,26882,26883,26884,26885,27067,27068,27069,27257,27352,27501,27887,28167,28338,28500,28615,29161,30738,30739,30897,30973,30981,30982,30991,30996,30997,30999,31000,31001,31002,31004,31008,31013,31017,31025]]],["herself",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30183]]],["him",[1834,1484,[[39,298,249,0,249,[[929,2,2,0,2],[930,7,6,2,8],[931,8,6,8,14],[932,14,12,14,26],[933,5,5,26,31],[934,1,1,31,32],[935,4,4,32,36],[936,20,18,36,54],[937,11,9,54,63],[938,3,3,63,66],[939,1,1,66,67],[940,18,13,67,80],[941,9,8,80,88],[942,16,14,88,102],[943,7,7,102,109],[944,4,3,109,112],[945,15,11,112,123],[946,19,14,123,137],[947,12,11,137,148],[948,10,9,148,157],[949,14,10,157,167],[950,16,14,167,181],[951,1,1,181,182],[952,2,2,182,184],[953,10,10,184,194],[954,28,25,194,219],[955,33,24,219,243],[956,8,6,243,249]]],[40,320,231,249,480,[[957,29,20,249,269],[958,11,10,269,279],[959,23,15,279,294],[960,10,6,294,300],[961,27,21,300,321],[962,21,16,321,337],[963,16,12,337,349],[964,17,10,349,359],[965,30,20,359,379],[966,28,19,379,398],[967,12,9,398,407],[968,22,17,407,424],[969,3,3,424,427],[970,37,28,427,455],[971,29,20,455,475],[972,5,5,475,480]]],[41,382,309,480,789,[[973,12,12,480,492],[974,16,13,492,505],[975,6,6,505,511],[976,27,17,511,528],[977,17,15,528,543],[978,7,5,543,548],[979,21,16,548,564],[980,32,25,564,589],[981,26,22,589,611],[982,13,9,611,620],[983,19,14,620,634],[984,11,10,634,644],[985,6,6,644,650],[986,12,12,650,662],[987,14,11,662,673],[988,9,8,673,681],[989,9,8,681,689],[990,13,11,689,700],[991,20,17,700,717],[992,14,12,717,729],[993,3,2,729,731],[994,33,25,731,756],[995,32,24,756,780],[996,10,9,780,789]]],[42,349,282,789,1071,[[997,37,29,789,818],[998,4,4,818,822],[999,15,13,822,835],[1000,28,22,835,857],[1001,13,11,857,868],[1002,21,20,868,888],[1003,25,20,888,908],[1004,26,22,908,930],[1005,28,22,930,952],[1006,11,10,952,962],[1007,19,18,962,980],[1008,20,17,980,997],[1009,21,17,997,1014],[1010,16,9,1014,1023],[1011,1,1,1023,1024],[1012,3,3,1024,1027],[1013,2,1,1027,1028],[1014,18,14,1028,1042],[1015,16,12,1042,1054],[1016,10,8,1054,1062],[1017,15,9,1062,1071]]],[43,218,188,1071,1259,[[1018,3,3,1071,1074],[1019,3,3,1074,1077],[1020,9,8,1077,1085],[1022,6,6,1085,1091],[1023,4,4,1091,1095],[1024,22,17,1095,1112],[1025,8,8,1112,1120],[1026,21,20,1120,1140],[1027,18,15,1140,1155],[1028,4,3,1155,1158],[1029,11,10,1158,1168],[1030,6,6,1168,1174],[1031,2,2,1174,1176],[1032,1,1,1176,1177],[1033,4,3,1177,1180],[1034,9,8,1180,1188],[1035,4,4,1188,1192],[1036,6,6,1192,1198],[1037,8,7,1198,1205],[1038,11,10,1205,1215],[1039,11,8,1215,1223],[1040,17,15,1223,1238],[1041,8,5,1238,1243],[1042,13,9,1243,1252],[1043,1,1,1252,1253],[1045,8,6,1253,1259]]],[44,23,20,1259,1279,[[1046,1,1,1259,1260],[1049,3,3,1260,1263],[1050,1,1,1263,1264],[1051,3,3,1264,1267],[1053,1,1,1267,1268],[1054,1,1,1268,1269],[1055,3,3,1269,1272],[1056,6,3,1272,1275],[1057,1,1,1275,1276],[1059,1,1,1276,1277],[1060,2,2,1277,1279]]],[45,19,16,1279,1295,[[1062,2,2,1279,1281],[1063,4,4,1281,1285],[1068,2,2,1285,1287],[1069,4,3,1287,1290],[1072,1,1,1290,1291],[1076,3,2,1291,1293],[1077,3,2,1293,1295]]],[46,10,9,1295,1304,[[1078,2,2,1295,1297],[1079,1,1,1297,1298],[1082,2,2,1298,1300],[1084,2,2,1300,1302],[1085,1,1,1302,1303],[1090,2,1,1303,1304]]],[47,6,6,1304,1310,[[1091,3,3,1304,1307],[1092,2,2,1307,1309],[1093,1,1,1309,1310]]],[48,12,10,1310,1320,[[1097,5,4,1310,1314],[1098,1,1,1314,1315],[1099,2,2,1315,1317],[1100,3,2,1317,1319],[1102,1,1,1319,1320]]],[49,11,8,1320,1328,[[1103,1,1,1320,1321],[1104,8,5,1321,1326],[1105,2,2,1326,1328]]],[50,18,14,1328,1342,[[1107,7,4,1328,1332],[1108,7,6,1332,1338],[1109,3,3,1338,1341],[1110,1,1,1341,1342]]],[51,2,2,1342,1344,[[1114,1,1,1342,1343],[1115,1,1,1343,1344]]],[52,3,3,1344,1347,[[1116,1,1,1344,1345],[1117,1,1,1345,1346],[1118,1,1,1346,1347]]],[53,1,1,1347,1348,[[1119,1,1,1347,1348]]],[54,3,3,1348,1351,[[1125,1,1,1348,1349],[1126,1,1,1349,1350],[1128,1,1,1350,1351]]],[56,3,3,1351,1354,[[1132,3,3,1351,1354]]],[57,29,24,1354,1378,[[1133,2,2,1354,1356],[1134,10,5,1356,1361],[1135,1,1,1361,1362],[1136,1,1,1362,1363],[1137,3,3,1363,1366],[1139,4,4,1366,1370],[1141,1,1,1370,1371],[1142,1,1,1371,1372],[1143,3,3,1372,1375],[1144,1,1,1375,1376],[1145,2,2,1376,1378]]],[58,11,10,1378,1388,[[1146,2,2,1378,1380],[1147,4,4,1380,1384],[1149,1,1,1384,1385],[1150,4,3,1385,1388]]],[59,8,7,1388,1395,[[1151,2,1,1388,1389],[1152,2,2,1389,1391],[1153,2,2,1391,1393],[1155,2,2,1393,1395]]],[60,5,5,1395,1400,[[1156,2,2,1395,1397],[1158,3,3,1397,1400]]],[61,45,37,1400,1437,[[1159,4,3,1400,1403],[1160,12,10,1403,1413],[1161,17,12,1413,1425],[1162,6,6,1425,1431],[1163,6,6,1431,1437]]],[62,3,2,1437,1439,[[1164,3,2,1437,1439]]],[64,1,1,1439,1440,[[1166,1,1,1439,1440]]],[65,54,44,1440,1484,[[1167,6,4,1440,1444],[1168,5,4,1444,1448],[1169,4,3,1448,1451],[1172,7,4,1451,1455],[1173,2,2,1455,1457],[1174,1,1,1457,1458],[1175,1,1,1458,1459],[1176,1,1,1459,1460],[1178,2,2,1460,1462],[1179,8,6,1462,1468],[1180,2,2,1468,1470],[1182,2,2,1470,1472],[1183,1,1,1472,1473],[1185,6,6,1473,1479],[1186,4,3,1479,1482],[1188,2,2,1482,1484]]]],[23164,23168,23171,23172,23174,23177,23180,23182,23197,23198,23205,23206,23207,23208,23212,23214,23215,23216,23217,23218,23219,23220,23229,23231,23233,23234,23235,23259,23273,23274,23275,23290,23325,23326,23327,23340,23346,23347,23348,23349,23350,23352,23361,23363,23364,23365,23366,23367,23368,23370,23372,23373,23376,23379,23381,23388,23389,23393,23397,23398,23406,23407,23411,23421,23449,23450,23462,23491,23492,23493,23499,23503,23504,23505,23507,23511,23521,23535,23536,23537,23541,23549,23551,23566,23567,23575,23590,23596,23599,23600,23601,23602,23610,23612,23614,23619,23623,23625,23628,23630,23632,23633,23645,23648,23655,23656,23658,23663,23666,23673,23689,23694,23703,23705,23710,23712,23714,23716,23717,23718,23723,23725,23726,23729,23733,23742,23748,23749,23751,23752,23753,23754,23755,23756,23757,23759,23761,23764,23765,23769,23772,23775,23778,23779,23780,23782,23783,23789,23799,23810,23811,23812,23813,23814,23821,23825,23826,23840,23842,23849,23851,23857,23858,23864,23865,23867,23872,23884,23885,23887,23888,23891,23893,23894,23895,23907,23909,23914,23915,23917,23918,23933,23958,23960,24014,24018,24029,24031,24034,24036,24039,24040,24045,24052,24061,24069,24070,24071,24072,24076,24078,24079,24087,24088,24089,24101,24102,24103,24104,24106,24110,24112,24116,24117,24118,24121,24123,24125,24129,24131,24132,24140,24142,24143,24147,24148,24151,24156,24157,24158,24159,24160,24163,24164,24165,24167,24168,24171,24172,24173,24178,24183,24184,24199,24202,24204,24208,24209,24212,24220,24225,24227,24228,24233,24235,24240,24241,24242,24245,24247,24249,24251,24252,24255,24256,24257,24258,24259,24260,24263,24264,24273,24274,24275,24276,24278,24284,24285,24286,24290,24294,24295,24296,24297,24298,24299,24300,24301,24302,24307,24309,24319,24320,24322,24324,24333,24348,24359,24361,24364,24366,24367,24368,24370,24372,24373,24374,24376,24381,24382,24383,24384,24385,24386,24387,24388,24394,24395,24397,24401,24404,24408,24409,24410,24421,24424,24426,24427,24434,24437,24440,24442,24444,24456,24457,24461,24463,24464,24468,24475,24478,24480,24481,24488,24489,24491,24495,24496,24497,24504,24511,24519,24522,24523,24525,24529,24530,24532,24538,24545,24549,24551,24553,24556,24557,24558,24559,24560,24561,24563,24564,24565,24566,24569,24570,24574,24576,24577,24580,24589,24590,24598,24601,24605,24606,24608,24609,24616,24620,24621,24622,24623,24625,24627,24636,24637,24639,24640,24642,24643,24644,24647,24658,24661,24667,24668,24671,24676,24679,24680,24681,24685,24686,24687,24689,24690,24691,24699,24701,24702,24705,24706,24707,24710,24718,24719,24720,24755,24764,24765,24766,24767,24773,24775,24783,24784,24789,24794,24797,24798,24799,24800,24804,24805,24807,24808,24810,24811,24812,24815,24818,24819,24821,24823,24826,24828,24829,24830,24836,24839,24840,24844,24845,24846,24848,24849,24850,24851,24853,24855,24858,24865,24867,24870,24872,24874,24879,24880,24883,24887,24904,24905,24906,24910,24912,24925,24943,24952,24955,24959,24967,24968,24980,24995,24998,24999,25000,25006,25011,25013,25017,25018,25019,25020,25021,25032,25035,25037,25039,25044,25047,25066,25067,25068,25069,25071,25072,25075,25076,25077,25080,25083,25092,25098,25100,25101,25103,25105,25108,25110,25112,25116,25118,25119,25120,25121,25122,25125,25127,25134,25135,25136,25140,25149,25150,25153,25163,25165,25197,25198,25199,25201,25204,25206,25210,25212,25213,25215,25225,25231,25234,25235,25237,25238,25246,25248,25249,25254,25263,25264,25265,25269,25270,25272,25273,25274,25275,25276,25277,25282,25283,25284,25285,25286,25287,25290,25292,25294,25295,25308,25310,25311,25312,25313,25319,25331,25333,25334,25336,25338,25340,25346,25348,25350,25351,25353,25354,25358,25359,25361,25363,25389,25391,25393,25394,25396,25397,25398,25400,25401,25406,25410,25411,25413,25416,25417,25418,25421,25427,25432,25442,25444,25450,25459,25467,25469,25472,25473,25479,25495,25500,25505,25507,25517,25519,25526,25533,25535,25541,25549,25554,25555,25557,25561,25562,25565,25568,25569,25571,25578,25582,25584,25589,25603,25604,25606,25608,25609,25610,25615,25616,25618,25619,25621,25622,25626,25627,25634,25647,25649,25651,25653,25654,25655,25659,25660,25663,25670,25688,25691,25695,25703,25706,25707,25710,25725,25727,25728,25730,25731,25735,25736,25737,25740,25745,25748,25753,25755,25756,25757,25761,25762,25765,25766,25770,25778,25779,25781,25784,25789,25793,25794,25798,25799,25800,25806,25817,25819,25823,25833,25864,25866,25868,25869,25870,25873,25874,25878,25897,25903,25907,25911,25912,25913,25915,25916,25918,25920,25921,25922,25923,25925,25927,25928,25929,25930,25936,25937,25938,25942,25943,25944,25945,25946,25949,25950,25951,25956,25957,25961,25962,25967,25968,25971,25973,25974,25975,25978,25984,25990,26007,26009,26010,26011,26015,26020,26022,26033,26043,26047,26048,26051,26054,26055,26056,26059,26063,26065,26066,26069,26073,26075,26076,26077,26081,26082,26083,26084,26085,26086,26087,26089,26090,26091,26092,26093,26094,26095,26098,26105,26106,26113,26122,26123,26124,26129,26130,26135,26136,26137,26138,26146,26147,26149,26156,26165,26166,26167,26170,26171,26175,26179,26180,26181,26186,26187,26189,26195,26196,26201,26203,26204,26205,26206,26207,26208,26209,26216,26217,26218,26222,26224,26225,26226,26228,26230,26233,26237,26259,26262,26263,26264,26265,26272,26278,26282,26285,26287,26291,26297,26298,26301,26313,26321,26322,26323,26325,26328,26329,26331,26333,26339,26340,26341,26346,26354,26357,26358,26359,26360,26363,26367,26371,26372,26373,26376,26379,26380,26383,26384,26385,26387,26388,26394,26400,26401,26406,26407,26410,26411,26412,26414,26420,26422,26425,26429,26433,26436,26438,26440,26442,26443,26447,26448,26449,26450,26452,26453,26455,26457,26458,26461,26463,26464,26466,26468,26474,26475,26476,26477,26478,26480,26485,26486,26501,26505,26512,26514,26519,26520,26522,26523,26526,26531,26533,26538,26539,26543,26547,26550,26552,26553,26555,26557,26559,26562,26567,26568,26571,26580,26582,26584,26591,26593,26596,26597,26598,26599,26601,26606,26609,26614,26617,26621,26622,26627,26628,26632,26636,26637,26638,26639,26640,26641,26646,26655,26657,26658,26659,26661,26662,26666,26667,26668,26673,26674,26675,26676,26677,26685,26689,26690,26691,26704,26733,26745,26755,26761,26787,26790,26797,26805,26808,26809,26810,26811,26815,26816,26818,26819,26822,26823,26827,26829,26831,26832,26834,26835,26837,26840,26841,26843,26857,26861,26869,26873,26880,26882,26883,26892,26895,26896,26901,26903,26910,26913,26914,26915,26917,26920,26921,26929,26932,26934,26971,26974,26979,27000,27003,27005,27006,27009,27012,27018,27022,27076,27080,27091,27095,27096,27099,27112,27113,27115,27116,27119,27120,27121,27124,27125,27126,27137,27146,27147,27149,27151,27153,27154,27156,27163,27170,27173,27178,27187,27196,27206,27207,27211,27214,27215,27218,27219,27222,27223,27226,27227,27228,27231,27232,27233,27239,27240,27241,27242,27243,27245,27250,27251,27254,27255,27262,27263,27270,27272,27274,27278,27280,27282,27284,27286,27294,27297,27300,27302,27307,27309,27320,27333,27341,27342,27345,27346,27347,27353,27354,27356,27357,27360,27371,27373,27384,27391,27392,27393,27423,27434,27463,27486,27492,27515,27538,27539,27541,27542,27550,27551,27554,27557,27569,27575,27583,27584,27587,27589,27607,27615,27616,27623,27629,27630,27636,27642,27644,27663,27664,27672,27676,27684,27691,27693,27694,27695,27697,27698,27700,27717,27722,27724,27728,27729,27731,27733,27734,27736,27737,27743,27745,27749,27751,27752,27754,27755,27761,27762,27764,27766,27767,27769,27777,27779,27792,27793,27795,27798,27799,27801,27811,27815,27817,27818,27821,27823,27849,27905,27907,27915,27920,27922,27929,27950,28025,28044,28045,28056,28072,28076,28077,28148,28188,28197,28199,28200,28213,28244,28245,28265,28283,28314,28315,28368,28393,28403,28405,28408,28410,28499,28500,28530,28533,28537,28614,28745,28746,28787,28788,28819,28820,28832,28886,28898,28930,28931,28950,29047,29058,29073,29075,29092,29094,29108,29210,29216,29226,29228,29247,29263,29272,29287,29293,29346,29390,29400,29413,29418,29419,29420,29430,29431,29481,29482,29484,29485,29500,29501,29503,29504,29506,29507,29521,29527,29534,29552,29617,29631,29661,29662,29692,29712,29827,29853,29884,29950,29953,29955,29968,29969,29983,29984,29985,29987,29990,29997,30027,30035,30037,30039,30065,30074,30085,30089,30133,30171,30177,30178,30191,30217,30254,30256,30271,30278,30296,30298,30307,30316,30354,30368,30369,30373,30395,30405,30413,30430,30446,30472,30476,30496,30497,30536,30537,30540,30545,30546,30550,30553,30554,30555,30556,30558,30560,30565,30577,30578,30579,30580,30581,30582,30584,30585,30588,30591,30594,30596,30598,30601,30603,30612,30616,30618,30619,30622,30624,30625,30634,30638,30639,30640,30642,30655,30656,30687,30698,30703,30704,30714,30724,30734,30743,30745,30758,30766,30767,30795,30797,30798,30801,30824,30825,30830,30841,30870,30900,30902,30910,30912,30913,30915,30916,30920,30927,30933,30962,30963,30989,31022,31024,31027,31028,31031,31037,31040,31041,31044,31083,31098]]],["himself",[28,28,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,3,3,1,4,[[962,1,1,1,2],[968,2,2,2,4]]],[41,8,8,4,12,[[975,1,1,4,5],[978,1,1,5,6],[982,1,1,6,7],[992,1,1,7,8],[995,2,2,8,10],[996,2,2,10,12]]],[42,8,8,12,20,[[1000,4,4,12,16],[1001,2,2,16,18],[1002,1,1,18,19],[1012,1,1,19,20]]],[43,2,2,20,22,[[1025,1,1,20,21],[1037,1,1,21,22]]],[46,1,1,22,23,[[1088,1,1,22,23]]],[48,1,1,23,24,[[1098,1,1,23,24]]],[51,2,2,24,26,[[1113,1,1,24,25],[1114,1,1,25,26]]],[52,2,2,26,28,[[1117,1,1,26,27],[1118,1,1,27,28]]]],[24186,24424,24709,24710,25048,25149,25364,25821,25942,25986,26006,26027,26158,26168,26200,26209,26230,26247,26272,26753,27189,27639,29003,29249,29601,29619,29677,29694]]],["his",[518,468,[[39,114,104,0,104,[[929,6,6,0,6],[930,7,7,6,13],[931,4,4,13,17],[932,3,3,17,20],[933,2,2,20,22],[934,1,1,22,23],[935,2,2,23,25],[936,6,6,25,31],[937,5,5,31,36],[938,4,2,36,38],[939,1,1,38,39],[940,9,7,39,46],[941,8,7,46,53],[942,5,5,53,58],[943,3,3,58,61],[944,1,1,61,62],[945,5,4,62,66],[946,9,7,66,73],[947,1,1,73,74],[949,3,3,74,77],[950,4,4,77,81],[952,6,6,81,87],[953,1,1,87,88],[954,6,6,88,94],[955,9,7,94,101],[956,3,3,101,104]]],[40,66,59,104,163,[[957,5,5,104,109],[958,4,3,109,112],[959,4,3,112,115],[961,4,4,115,119],[962,10,9,119,128],[963,8,6,128,134],[964,7,6,134,140],[965,4,4,140,144],[966,3,3,144,147],[967,2,2,147,149],[968,3,2,149,151],[969,1,1,151,152],[970,5,5,152,157],[971,5,5,157,162],[972,1,1,162,163]]],[41,102,94,163,257,[[973,21,20,163,183],[974,9,9,183,192],[975,4,4,192,196],[976,4,3,196,199],[977,1,1,199,200],[978,7,7,200,207],[979,6,4,207,211],[980,4,4,211,215],[981,7,6,215,221],[982,2,2,221,223],[983,7,6,223,229],[984,2,2,229,231],[985,1,1,231,232],[987,4,3,232,235],[988,4,4,235,239],[989,3,3,239,242],[991,1,1,242,243],[992,5,4,243,247],[994,4,4,247,251],[995,3,3,251,254],[996,3,3,254,257]]],[42,102,92,257,349,[[997,4,4,257,261],[998,8,6,261,267],[999,6,6,267,273],[1000,9,8,273,281],[1001,6,5,281,286],[1002,10,9,286,295],[1003,5,5,295,300],[1004,2,2,300,302],[1005,9,8,302,310],[1006,3,3,310,313],[1007,6,6,313,319],[1008,5,5,319,324],[1009,3,3,324,327],[1011,2,2,327,329],[1012,1,1,329,330],[1014,7,5,330,335],[1015,8,7,335,342],[1016,5,4,342,346],[1017,3,3,346,349]]],[43,49,42,349,391,[[1018,6,5,349,354],[1019,6,4,354,358],[1020,4,3,358,361],[1021,1,1,361,362],[1022,5,5,362,367],[1023,1,1,367,368],[1024,6,6,368,374],[1025,6,3,374,377],[1026,1,1,377,378],[1027,1,1,378,379],[1028,1,1,379,380],[1029,2,2,380,382],[1030,2,2,382,384],[1033,1,1,384,385],[1036,2,2,385,387],[1037,2,2,387,389],[1039,1,1,389,390],[1041,1,1,390,391]]],[44,3,3,391,394,[[1047,1,1,391,392],[1048,1,1,392,393],[1054,1,1,393,394]]],[46,9,9,394,403,[[1079,1,1,394,395],[1080,1,1,395,396],[1084,3,3,396,399],[1086,2,2,399,401],[1088,2,2,401,403]]],[47,1,1,403,404,[[1093,1,1,403,404]]],[48,18,13,404,417,[[1097,10,7,404,411],[1098,1,1,411,412],[1099,3,3,412,415],[1101,3,1,415,416],[1102,1,1,416,417]]],[49,4,2,417,419,[[1105,4,2,417,419]]],[50,8,8,419,427,[[1107,6,6,419,425],[1109,1,1,425,426],[1110,1,1,426,427]]],[51,3,3,427,430,[[1111,1,1,427,428],[1112,1,1,428,429],[1113,1,1,429,430]]],[52,1,1,430,431,[[1116,1,1,430,431]]],[54,3,3,431,434,[[1125,1,1,431,432],[1128,2,2,432,434]]],[57,16,16,434,450,[[1133,1,1,434,435],[1134,1,1,435,436],[1135,4,4,436,440],[1136,3,3,440,443],[1138,1,1,443,444],[1142,1,1,444,445],[1143,2,2,445,447],[1144,1,1,447,448],[1145,2,2,448,450]]],[58,3,3,450,453,[[1146,1,1,450,451],[1147,1,1,451,452],[1150,1,1,452,453]]],[59,5,5,453,458,[[1152,3,3,453,456],[1153,1,1,456,457],[1154,1,1,457,458]]],[60,3,3,458,461,[[1156,1,1,458,459],[1158,2,2,459,461]]],[61,1,1,461,462,[[1159,1,1,461,462]]],[63,1,1,462,463,[[1165,1,1,462,463]]],[65,6,5,463,468,[[1172,1,1,463,464],[1186,2,2,464,466],[1188,3,2,466,468]]]],[23146,23155,23162,23165,23167,23169,23171,23180,23182,23183,23189,23190,23191,23195,23196,23199,23204,23227,23230,23233,23235,23269,23315,23325,23344,23348,23358,23359,23366,23368,23370,23389,23390,23398,23399,23400,23419,23442,23479,23490,23508,23510,23515,23518,23522,23535,23558,23564,23570,23575,23580,23594,23595,23600,23608,23609,23612,23633,23645,23656,23666,23677,23701,23702,23710,23727,23733,23752,23755,23756,23758,23759,23761,23787,23861,23864,23871,23878,23896,23905,23917,23958,23988,23989,24002,24003,24008,24049,24061,24062,24105,24106,24119,24121,24148,24158,24161,24164,24166,24182,24193,24198,24202,24204,24218,24231,24234,24237,24243,24275,24276,24283,24293,24315,24319,24386,24391,24392,24395,24408,24409,24410,24421,24434,24435,24436,24442,24463,24465,24480,24482,24488,24496,24498,24504,24523,24525,24526,24527,24534,24541,24559,24566,24580,24598,24612,24634,24654,24658,24692,24710,24718,24757,24766,24770,24801,24819,24843,24847,24850,24852,24853,24880,24898,24906,24907,24916,24917,24922,24924,24925,24926,24942,24943,24948,24952,24953,24955,24957,24960,24969,24970,24973,24978,24994,25006,25007,25014,25016,25020,25021,25024,25026,25029,25042,25044,25079,25085,25095,25137,25147,25156,25160,25163,25166,25186,25191,25198,25206,25210,25233,25254,25264,25267,25289,25330,25332,25333,25343,25354,25355,25397,25402,25406,25413,25423,25426,25427,25459,25502,25506,25535,25608,25610,25613,25621,25640,25641,25643,25653,25667,25682,25745,25799,25805,25807,25823,25903,25908,25914,25915,25969,25984,25990,25999,26014,26038,26056,26058,26060,26079,26097,26106,26107,26112,26117,26118,26140,26141,26142,26152,26153,26155,26158,26164,26168,26183,26190,26203,26207,26209,26219,26238,26245,26247,26248,26259,26265,26273,26279,26281,26310,26317,26318,26323,26333,26338,26345,26358,26366,26401,26436,26442,26443,26454,26461,26462,26463,26467,26471,26484,26485,26492,26525,26535,26536,26555,26567,26577,26583,26584,26596,26621,26630,26631,26633,26653,26709,26714,26743,26786,26787,26795,26804,26810,26827,26848,26850,26854,26858,26859,26860,26874,26892,26893,26898,26900,26918,26922,26926,26937,26941,26943,26945,26978,26979,26980,26990,27003,27012,27014,27048,27061,27066,27069,27091,27100,27116,27120,27121,27122,27126,27139,27141,27177,27208,27209,27234,27302,27320,27344,27352,27386,27393,27516,27597,27616,27636,27658,27719,27792,27968,28017,28174,28835,28848,28923,28929,28931,28965,28971,29004,29022,29118,29213,29218,29220,29224,29225,29228,29229,29239,29256,29257,29258,29334,29347,29431,29442,29474,29476,29479,29485,29491,29494,29526,29557,29570,29589,29603,29658,29817,29878,29884,29966,29985,29997,30000,30002,30010,30015,30021,30024,30054,30146,30176,30177,30222,30254,30256,30289,30315,30374,30408,30420,30421,30436,30459,30482,30526,30535,30547,30668,30801,31042,31045,31084,31099]]],["house",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[29998]]],["it",[152,138,[[39,36,33,0,33,[[933,1,1,0,1],[935,2,2,1,3],[938,5,4,3,7],[940,4,4,7,11],[941,2,2,11,13],[942,1,1,13,14],[944,4,3,14,17],[946,1,1,17,18],[949,5,4,18,22],[950,1,1,22,23],[951,3,3,23,26],[954,4,4,26,30],[955,2,2,30,32],[956,1,1,32,33]]],[40,17,15,33,48,[[960,5,5,33,38],[962,3,2,38,40],[964,2,1,40,41],[965,1,1,41,42],[967,3,3,42,45],[970,3,3,45,48]]],[41,27,24,48,72,[[976,1,1,48,49],[978,1,1,49,50],[980,4,4,50,54],[981,3,2,54,56],[982,1,1,56,57],[983,4,4,57,61],[985,3,3,61,64],[986,2,2,64,66],[987,1,1,66,67],[988,1,1,67,68],[989,2,1,68,69],[991,2,2,69,71],[995,2,1,71,72]]],[42,18,15,72,87,[[997,1,1,72,73],[1002,1,1,73,74],[1003,1,1,74,75],[1004,1,1,75,76],[1006,3,2,76,78],[1007,1,1,78,79],[1008,3,2,79,81],[1011,1,1,81,82],[1014,2,2,82,84],[1015,3,2,84,86],[1017,1,1,86,87]]],[43,8,8,87,95,[[1019,1,1,87,88],[1022,1,1,88,89],[1024,2,2,89,91],[1030,1,1,91,92],[1038,1,1,92,93],[1044,2,2,93,95]]],[44,4,4,95,99,[[1051,1,1,95,96],[1052,3,3,96,99]]],[45,1,1,99,100,[[1076,1,1,99,100]]],[47,2,2,100,102,[[1091,2,2,100,102]]],[48,4,4,102,106,[[1101,4,4,102,106]]],[49,1,1,106,107,[[1105,1,1,106,107]]],[50,3,2,107,109,[[1108,2,1,107,108],[1110,1,1,108,109]]],[51,1,1,109,110,[[1114,1,1,109,110]]],[53,1,1,110,111,[[1119,1,1,110,111]]],[57,4,4,111,115,[[1138,1,1,111,112],[1139,1,1,112,113],[1141,1,1,113,114],[1143,1,1,114,115]]],[58,2,2,115,117,[[1146,1,1,115,116],[1150,1,1,116,117]]],[59,1,1,117,118,[[1153,1,1,117,118]]],[61,1,1,118,119,[[1160,1,1,118,119]]],[62,1,1,119,120,[[1164,1,1,119,120]]],[65,20,18,120,138,[[1169,1,1,120,121],[1174,1,1,121,122],[1175,1,1,122,123],[1176,1,1,123,124],[1177,1,1,124,125],[1185,1,1,125,126],[1186,2,2,126,128],[1187,10,8,128,136],[1188,2,2,136,138]]]],[23249,23330,23343,23428,23429,23430,23456,23500,23528,23530,23531,23559,23585,23609,23676,23690,23697,23740,23839,23845,23859,23860,23911,23936,23938,23939,24081,24083,24096,24115,24188,24189,24197,24330,24339,24353,24355,24360,24435,24436,24535,24588,24642,24654,24657,24775,24777,24779,25069,25194,25250,25252,25261,25266,25325,25346,25369,25419,25433,25434,25437,25526,25536,25537,25571,25588,25592,25636,25684,25772,25777,25988,26049,26317,26335,26425,26498,26499,26561,26604,26605,26701,26795,26796,26849,26865,26904,26973,27098,27121,27160,27379,27667,27863,27869,28080,28102,28108,28111,28756,29069,29070,29329,29330,29331,29333,29442,29508,29559,29613,29704,30051,30075,30110,30176,30277,30361,30435,30571,30651,30754,30832,30846,30871,30874,31032,31049,31051,31069,31071,31075,31076,31077,31078,31079,31080,31082,31083]]],["itself",[5,5,[[42,1,1,0,1,[[1017,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[57,1,1,3,4,[[1141,1,1,3,4]]],[63,1,1,4,5,[[1165,1,1,4,5]]]],[26923,28132,28614,30129,30670]]],["man",[2,2,[[43,1,1,0,1,[[1020,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[27008,30145]]],["myself",[5,5,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]],[46,2,2,2,4,[[1087,1,1,2,3],[1089,1,1,3,4]]],[49,1,1,4,5,[[1104,1,1,4,5]]]],[26030,27785,28972,29035,29415]]],["no",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27121]]],["other",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25585]]],["ourselves",[3,3,[[41,1,1,0,1,[[994,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]]],[25935,26198,29653]]],["own",[5,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,3,3,1,4,[[974,1,1,1,2],[991,1,1,2,3],[994,1,1,3,4]]],[42,1,1,4,5,[[1000,1,1,4,5]]]],[24160,25008,25754,25935,26197]]],["place",[3,3,[[43,1,1,0,1,[[1019,1,1,0,1]]],[45,2,2,1,3,[[1072,1,1,1,2],[1075,1,1,2,3]]]],[26950,28620,28701]]],["said",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24429]]],["same",[73,70,[[39,5,5,0,5,[[931,1,1,0,1],[933,1,1,1,2],[940,1,1,2,3],[953,1,1,3,4],[954,1,1,4,5]]],[40,3,3,5,8,[[966,1,1,5,6],[970,2,2,6,8]]],[41,13,13,8,21,[[974,1,1,8,9],[978,2,2,9,11],[979,1,1,11,12],[982,2,2,12,14],[984,1,1,14,15],[985,1,1,15,16],[992,1,1,16,17],[995,2,2,17,19],[996,2,2,19,21]]],[42,1,1,21,22,[[1001,1,1,21,22]]],[43,3,3,22,25,[[1033,1,1,22,23],[1039,1,1,23,24],[1041,1,1,24,25]]],[44,7,7,25,32,[[1046,1,1,25,26],[1047,1,1,26,27],[1054,1,1,27,28],[1055,1,1,28,29],[1057,2,2,29,31],[1058,1,1,31,32]]],[45,11,9,32,41,[[1062,2,1,32,33],[1071,2,2,33,35],[1073,6,5,35,40],[1076,1,1,40,41]]],[46,9,8,41,49,[[1078,1,1,41,42],[1079,1,1,42,43],[1080,2,2,43,45],[1081,1,1,45,46],[1085,2,2,46,48],[1089,2,1,48,49]]],[48,1,1,49,50,[[1100,1,1,49,50]]],[49,3,3,50,53,[[1103,1,1,50,51],[1104,1,1,51,52],[1105,1,1,52,53]]],[50,1,1,53,54,[[1110,1,1,53,54]]],[57,7,7,54,61,[[1133,1,1,54,55],[1134,1,1,55,56],[1136,1,1,56,57],[1138,1,1,57,58],[1142,1,1,58,59],[1143,1,1,59,60],[1145,1,1,60,61]]],[58,2,2,61,63,[[1148,2,2,61,63]]],[59,4,4,63,67,[[1154,3,3,63,66],[1155,1,1,66,67]]],[60,1,1,67,68,[[1158,1,1,67,68]]],[61,1,1,68,69,[[1160,1,1,68,69]]],[65,1,1,69,70,[[1180,1,1,69,70]]]],[23196,23280,23539,24024,24102,24598,24793,24798,24981,25179,25184,25216,25370,25373,25471,25549,25798,25947,25975,26004,26024,26246,27501,27717,27789,27962,27965,28176,28200,28249,28261,28269,28373,28570,28571,28638,28639,28640,28642,28643,28757,28806,28827,28855,28859,28872,28948,28951,29040,29282,29391,29393,29437,29544,29975,29991,30025,30055,30144,30181,30249,30329,30330,30447,30450,30456,30474,30529,30577,30936]]],["selfsame",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28645]]],["she",[7,7,[[41,3,3,0,3,[[973,2,2,0,2],[974,1,1,2,3]]],[43,1,1,3,4,[[1026,1,1,3,4]]],[44,1,1,4,5,[[1052,1,1,4,5]]],[45,1,1,5,6,[[1068,1,1,5,6]]],[65,1,1,6,7,[[1184,1,1,6,7]]]],[24929,24950,24979,27253,28094,28499,30999]]],["that",[4,4,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,2,2,1,3,[[982,1,1,1,2],[985,1,1,2,3]]],[42,1,1,3,4,[[1007,1,1,3,4]]]],[23740,25384,25519,26540]]],["the",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26246]]],["thee",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23955,25552]]],["their",[134,126,[[39,29,28,0,28,[[929,1,1,0,1],[932,2,2,1,3],[934,2,2,3,5],[935,2,2,5,7],[936,1,1,7,8],[937,5,5,8,13],[939,1,1,13,14],[940,2,2,14,16],[941,2,2,16,18],[942,1,1,18,19],[943,1,1,19,20],[946,2,2,20,22],[948,2,1,22,23],[949,1,1,23,24],[950,2,2,24,26],[951,1,1,26,27],[954,1,1,27,28]]],[40,19,19,28,47,[[957,2,2,28,30],[958,1,1,30,31],[959,1,1,31,32],[960,1,1,32,33],[961,1,1,33,34],[962,2,2,34,36],[963,1,1,36,37],[965,3,3,37,40],[966,1,1,40,41],[968,2,2,41,43],[970,3,3,43,46],[972,1,1,46,47]]],[41,24,24,47,71,[[973,3,3,47,50],[976,2,2,50,52],[977,4,4,52,56],[978,3,3,56,59],[980,2,2,59,61],[981,1,1,61,62],[983,2,2,62,64],[985,1,1,64,65],[993,1,1,65,66],[995,1,1,66,67],[996,4,4,67,71]]],[42,10,9,71,80,[[999,1,1,71,72],[1000,1,1,72,73],[1006,1,1,73,74],[1007,1,1,74,75],[1008,2,1,75,76],[1009,1,1,76,77],[1011,1,1,77,78],[1013,1,1,78,79],[1015,1,1,79,80]]],[43,19,19,80,99,[[1018,3,3,80,83],[1021,2,2,83,85],[1022,1,1,85,86],[1023,1,1,86,87],[1024,2,2,87,89],[1026,1,1,89,90],[1029,1,1,90,91],[1030,2,2,91,93],[1031,3,3,93,96],[1032,1,1,96,97],[1033,1,1,97,98],[1043,1,1,98,99]]],[46,9,7,99,106,[[1080,2,2,99,101],[1082,1,1,101,102],[1083,1,1,102,103],[1085,3,1,103,104],[1086,1,1,104,105],[1088,1,1,105,106]]],[47,1,1,106,107,[[1092,1,1,106,107]]],[48,1,1,107,108,[[1100,1,1,107,108]]],[49,1,1,108,109,[[1105,1,1,108,109]]],[50,1,1,109,110,[[1108,1,1,109,110]]],[54,2,2,110,112,[[1126,1,1,110,111],[1127,1,1,111,112]]],[55,2,2,112,114,[[1129,2,2,112,114]]],[57,10,6,114,120,[[1140,6,3,114,117],[1142,3,2,117,119],[1143,1,1,119,120]]],[58,2,2,120,122,[[1146,1,1,120,121],[1148,1,1,121,122]]],[59,2,2,122,124,[[1153,2,2,122,124]]],[60,2,2,124,126,[[1157,2,2,124,126]]]],[23165,23230,23232,23296,23297,23332,23336,23379,23381,23383,23408,23409,23414,23460,23498,23514,23593,23597,23611,23641,23737,23762,23826,23867,23879,23890,23921,24097,24238,24254,24265,24293,24338,24381,24413,24459,24469,24582,24584,24586,24630,24688,24717,24794,24810,24813,24887,24909,24944,24970,25078,25092,25113,25127,25129,25137,25154,25169,25172,25248,25257,25348,25422,25453,25519,25830,25960,26002,26007,26022,26036,26139,26194,26520,26542,26620,26642,26724,26779,26856,26932,26942,26949,27027,27051,27077,27102,27135,27150,27240,27357,27389,27395,27417,27419,27427,27451,27505,27841,28855,28856,28896,28914,28934,28970,29004,29094,29290,29440,29496,29844,29862,29904,29907,30101,30102,30104,30149,30150,30188,30293,30322,30436,30438,30502,30503]]],["theirs",[2,2,[[39,2,2,0,2,[[933,2,2,0,2]]]],[23237,23244]]],["them",[1079,969,[[39,195,184,0,184,[[930,3,3,0,3],[931,1,1,3,4],[932,4,4,4,8],[933,1,1,8,9],[934,3,3,9,12],[935,8,8,12,20],[936,5,5,20,25],[937,9,7,25,32],[938,5,5,32,37],[939,2,2,37,39],[940,6,6,39,45],[941,23,22,45,67],[942,6,5,67,72],[943,4,4,72,76],[944,6,6,76,82],[945,12,11,82,93],[946,5,5,93,98],[947,11,9,98,107],[948,13,11,107,118],[949,17,16,118,134],[950,7,7,134,141],[951,5,4,141,145],[952,3,3,145,148],[953,8,8,148,156],[954,13,13,156,169],[955,9,9,169,178],[956,6,6,178,184]]],[40,169,148,184,332,[[957,6,6,184,190],[958,9,8,190,198],[959,7,6,198,204],[960,12,11,204,215],[961,5,5,215,220],[962,23,15,220,235],[963,6,5,235,240],[964,12,12,240,252],[965,15,13,252,265],[966,21,15,265,280],[967,7,7,280,287],[968,13,12,287,299],[969,2,2,299,301],[970,18,18,301,319],[971,8,8,319,327],[972,5,5,327,332]]],[41,227,204,332,536,[[973,3,2,332,334],[974,14,12,334,346],[975,3,3,346,349],[976,14,12,349,361],[977,12,11,361,372],[978,11,11,372,383],[979,3,3,383,386],[980,9,8,386,394],[981,22,19,394,413],[982,5,5,413,418],[983,10,9,418,427],[984,6,5,427,432],[985,4,4,432,436],[986,4,4,436,440],[987,6,5,440,445],[988,4,4,445,449],[989,4,4,449,453],[990,10,8,453,461],[991,7,6,461,467],[992,10,10,467,477],[993,3,3,477,480],[994,25,22,480,502],[995,10,10,502,512],[996,28,24,512,536]]],[42,153,137,536,673,[[997,5,4,536,540],[998,6,5,540,545],[999,1,1,545,546],[1000,4,4,546,550],[1001,4,4,550,554],[1002,13,12,554,566],[1003,10,9,566,575],[1004,14,14,575,589],[1005,7,7,589,596],[1006,13,11,596,607],[1007,9,7,607,614],[1008,5,5,614,619],[1009,3,3,619,622],[1010,1,1,622,623],[1011,3,3,623,626],[1012,3,3,626,629],[1013,19,12,629,641],[1014,11,10,641,651],[1015,5,5,651,656],[1016,11,11,656,667],[1017,6,6,667,673]]],[43,186,163,673,836,[[1018,4,4,673,677],[1019,8,7,677,684],[1020,4,3,684,687],[1021,17,16,687,703],[1022,12,10,703,713],[1023,1,1,713,714],[1024,4,4,714,718],[1025,6,6,718,724],[1026,6,5,724,729],[1027,9,7,729,736],[1028,8,8,736,744],[1029,4,3,744,747],[1030,12,11,747,758],[1031,5,4,758,762],[1032,11,9,762,771],[1033,15,14,771,785],[1034,9,8,785,793],[1035,6,6,793,799],[1036,12,8,799,807],[1037,6,6,807,813],[1038,8,6,813,819],[1039,2,2,819,821],[1040,5,4,821,825],[1041,1,1,825,826],[1042,2,2,826,828],[1043,3,2,828,830],[1044,2,2,830,832],[1045,4,4,832,836]]],[44,16,15,836,851,[[1046,2,1,836,837],[1049,1,1,837,838],[1054,1,1,838,839],[1055,1,1,839,840],[1056,6,6,840,846],[1060,2,2,846,848],[1061,3,3,848,851]]],[45,10,10,851,861,[[1062,1,1,851,852],[1068,1,1,852,853],[1071,5,5,853,858],[1073,1,1,858,859],[1075,2,2,859,861]]],[46,9,9,861,870,[[1079,1,1,861,862],[1081,1,1,862,863],[1082,2,2,863,865],[1083,2,2,865,867],[1085,2,2,867,869],[1086,1,1,869,870]]],[47,6,5,870,875,[[1092,1,1,870,871],[1093,3,2,871,873],[1094,1,1,873,874],[1096,1,1,874,875]]],[48,5,5,875,880,[[1098,1,1,875,876],[1100,1,1,876,877],[1101,2,2,877,879],[1102,1,1,879,880]]],[49,1,1,880,881,[[1103,1,1,880,881]]],[50,3,3,881,884,[[1108,1,1,881,882],[1109,2,2,882,884]]],[51,4,4,884,888,[[1112,1,1,884,885],[1114,1,1,885,886],[1115,2,2,886,888]]],[52,1,1,888,889,[[1117,1,1,888,889]]],[53,3,3,889,892,[[1119,1,1,889,890],[1122,1,1,890,891],[1123,1,1,891,892]]],[54,1,1,892,893,[[1126,1,1,892,893]]],[55,2,2,893,895,[[1129,1,1,893,894],[1131,1,1,894,895]]],[57,14,11,895,906,[[1134,1,1,895,896],[1138,1,1,896,897],[1139,2,2,897,899],[1140,5,3,899,902],[1142,2,1,902,903],[1143,3,3,903,906]]],[58,3,2,906,908,[[1147,2,1,906,907],[1150,1,1,907,908]]],[59,1,1,908,909,[[1151,1,1,908,909]]],[60,9,8,909,917,[[1157,8,7,909,916],[1158,1,1,916,917]]],[61,2,2,917,919,[[1162,2,2,917,919]]],[64,3,3,919,922,[[1166,3,3,919,922]]],[65,56,47,922,969,[[1168,3,3,922,925],[1169,1,1,925,926],[1171,2,2,926,928],[1172,2,2,928,930],[1173,4,3,930,933],[1174,2,2,933,935],[1175,9,8,935,943],[1177,11,6,943,949],[1178,3,3,949,952],[1179,1,1,952,953],[1180,2,2,953,955],[1181,1,1,955,956],[1182,2,2,956,958],[1183,1,1,958,959],[1184,1,1,959,960],[1185,2,2,960,962],[1186,6,5,962,967],[1187,3,2,967,969]]]],[23173,23177,23178,23199,23217,23228,23230,23233,23236,23283,23290,23308,23322,23328,23332,23336,23339,23340,23342,23345,23349,23360,23371,23375,23377,23391,23394,23397,23403,23407,23409,23415,23418,23422,23435,23443,23446,23463,23484,23492,23500,23504,23505,23514,23528,23542,23546,23549,23550,23552,23553,23554,23563,23567,23568,23569,23570,23572,23573,23576,23578,23581,23589,23590,23591,23593,23596,23611,23613,23615,23622,23624,23636,23643,23663,23667,23673,23674,23676,23678,23680,23687,23702,23703,23705,23707,23709,23711,23712,23713,23720,23722,23727,23729,23739,23744,23746,23747,23764,23766,23770,23773,23775,23776,23777,23788,23790,23794,23798,23799,23800,23804,23805,23809,23815,23817,23823,23824,23828,23829,23832,23833,23839,23840,23842,23843,23847,23850,23853,23857,23862,23863,23868,23871,23873,23892,23893,23901,23907,23913,23915,23922,23944,23948,23952,23959,23961,24002,24010,24022,24027,24028,24030,24040,24048,24053,24064,24073,24076,24081,24085,24090,24092,24094,24097,24098,24099,24102,24127,24135,24136,24139,24146,24150,24151,24155,24177,24194,24204,24205,24211,24213,24214,24215,24232,24235,24237,24246,24253,24259,24262,24268,24273,24277,24279,24280,24285,24287,24292,24293,24300,24305,24311,24321,24325,24332,24334,24335,24336,24344,24347,24356,24357,24358,24363,24376,24380,24383,24403,24407,24411,24414,24415,24417,24418,24438,24440,24441,24444,24445,24446,24448,24455,24457,24458,24469,24472,24477,24481,24499,24501,24503,24505,24513,24515,24517,24521,24527,24529,24530,24531,24534,24539,24540,24542,24545,24547,24550,24552,24554,24567,24569,24571,24573,24574,24589,24591,24593,24594,24599,24601,24602,24604,24612,24615,24620,24624,24626,24627,24630,24642,24645,24646,24657,24662,24669,24673,24674,24677,24679,24685,24688,24689,24690,24696,24697,24701,24711,24716,24722,24726,24761,24764,24767,24770,24774,24776,24777,24778,24781,24788,24791,24794,24795,24798,24802,24806,24823,24824,24832,24834,24835,24837,24838,24840,24841,24850,24879,24885,24888,24891,24892,24915,24958,24980,24982,24983,24988,24990,24991,24993,25007,25019,25022,25023,25024,25036,25038,25039,25069,25084,25086,25089,25090,25093,25094,25102,25103,25104,25105,25106,25109,25114,25121,25124,25129,25132,25136,25138,25141,25142,25143,25148,25149,25151,25155,25156,25159,25163,25177,25178,25185,25193,25201,25217,25237,25266,25267,25270,25276,25277,25281,25282,25301,25302,25303,25304,25306,25311,25312,25314,25315,25317,25318,25319,25321,25322,25335,25346,25347,25349,25355,25356,25364,25365,25372,25381,25384,25407,25410,25420,25422,25436,25452,25453,25454,25458,25465,25474,25475,25483,25496,25520,25522,25541,25550,25558,25560,25572,25578,25590,25591,25592,25594,25600,25635,25648,25649,25650,25665,25666,25671,25688,25689,25695,25696,25703,25704,25717,25719,25722,25744,25758,25763,25764,25771,25777,25782,25787,25794,25796,25798,25802,25804,25812,25813,25820,25834,25836,25855,25868,25870,25874,25877,25879,25883,25887,25888,25889,25899,25900,25902,25904,25905,25909,25910,25911,25914,25919,25922,25931,25934,25936,25949,25952,25957,25958,25960,25963,25969,25970,25986,25992,25995,25996,26001,26002,26004,26006,26008,26010,26016,26018,26020,26021,26024,26026,26027,26029,26031,26032,26034,26035,26037,26041,26042,26056,26070,26082,26083,26102,26103,26114,26117,26119,26142,26188,26190,26196,26208,26221,26227,26229,26249,26264,26274,26277,26283,26286,26288,26289,26292,26300,26310,26318,26327,26334,26337,26344,26349,26361,26372,26373,26375,26378,26383,26388,26393,26395,26402,26404,26406,26408,26409,26415,26420,26423,26439,26440,26455,26456,26459,26460,26467,26470,26481,26485,26487,26488,26489,26493,26501,26506,26508,26509,26513,26515,26534,26537,26542,26560,26567,26569,26572,26603,26615,26616,26617,26620,26631,26642,26647,26689,26705,26721,26723,26730,26745,26757,26765,26767,26768,26769,26771,26773,26774,26776,26777,26781,26782,26785,26789,26790,26791,26792,26794,26803,26806,26814,26816,26823,26829,26830,26831,26840,26841,26869,26880,26884,26886,26887,26888,26889,26890,26891,26892,26893,26901,26903,26904,26908,26910,26911,26926,26927,26930,26933,26952,26953,26955,26960,26963,26987,26994,27001,27004,27007,27023,27025,27029,27030,27035,27036,27037,27038,27039,27040,27041,27043,27045,27046,27055,27056,27072,27074,27080,27081,27083,27084,27085,27086,27092,27094,27107,27141,27142,27150,27159,27181,27187,27190,27191,27193,27194,27237,27243,27244,27254,27255,27267,27279,27282,27283,27287,27305,27307,27310,27311,27319,27322,27324,27327,27328,27335,27347,27354,27358,27364,27365,27370,27375,27377,27379,27383,27384,27405,27412,27413,27419,27432,27437,27441,27444,27446,27447,27449,27450,27451,27454,27462,27480,27487,27490,27493,27503,27505,27506,27507,27508,27513,27516,27517,27520,27522,27523,27525,27527,27529,27535,27539,27541,27556,27557,27559,27560,27563,27568,27573,27577,27587,27588,27591,27594,27597,27601,27602,27604,27628,27632,27633,27644,27656,27662,27665,27671,27683,27688,27690,27696,27706,27734,27744,27755,27761,27765,27791,27802,27807,27834,27853,27865,27898,27913,27916,27922,27926,27949,28033,28181,28193,28217,28218,28223,28224,28226,28236,28330,28331,28350,28351,28353,28387,28495,28572,28574,28575,28576,28577,28652,28688,28712,28837,28863,28892,28896,28914,28915,28954,28956,28969,29083,29112,29114,29148,29204,29239,29290,29311,29316,29346,29389,29509,29524,29536,29586,29620,29624,29634,29672,29714,29763,29779,29852,29905,29936,29988,30060,30070,30089,30100,30101,30102,30149,30185,30188,30200,30309,30357,30385,30501,30508,30511,30519,30520,30521,30522,30538,30607,30608,30679,30683,30687,30719,30733,30744,30755,30790,30792,30801,30804,30825,30826,30827,30829,30839,30843,30844,30845,30846,30851,30856,30857,30859,30877,30878,30879,30882,30883,30884,30895,30901,30903,30915,30935,30939,30947,30960,30968,30989,31007,31032,31035,31042,31047,31048,31049,31051,31056,31067]]],["themselves",[4,4,[[43,2,2,0,2,[[1038,1,1,0,1],[1041,1,1,1,2]]],[55,1,1,2,3,[[1129,1,1,2,3]]],[57,1,1,3,4,[[1141,1,1,3,4]]]],[27689,27784,29904,30128]]],["there",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26009]]],["thereof",[18,17,[[39,5,5,0,5,[[930,1,1,0,1],[934,1,1,1,2],[941,2,2,2,4],[949,1,1,4,5]]],[41,2,2,5,7,[[991,1,1,5,6],[993,1,1,6,7]]],[42,2,2,7,9,[[999,1,1,7,8],[1003,1,1,8,9]]],[43,1,1,9,10,[[1032,1,1,9,10]]],[54,1,1,10,11,[[1127,1,1,10,11]]],[57,1,1,11,12,[[1139,1,1,11,12]]],[58,1,1,12,13,[[1146,1,1,12,13]]],[59,1,1,13,14,[[1151,1,1,13,14]]],[65,4,3,14,17,[[1187,4,3,14,17]]]],[23185,23316,23571,23583,23869,25764,25846,26128,26335,27458,29858,30082,30277,30398,31068,31070,31076]]],["thereon",[2,2,[[65,2,2,0,2,[[1171,2,2,0,2]]]],[30782,30783]]],["they",[122,121,[[39,25,25,0,25,[[929,1,1,0,1],[930,1,1,1,2],[933,6,6,2,8],[934,1,1,8,9],[937,1,1,9,10],[940,1,1,10,11],[941,1,1,11,12],[942,1,1,12,13],[945,4,4,13,17],[948,2,2,17,19],[953,2,2,19,21],[954,2,2,21,23],[955,1,1,23,24],[956,1,1,24,25]]],[40,8,8,25,33,[[959,1,1,25,26],[962,1,1,26,27],[965,1,1,27,28],[967,1,1,28,29],[970,2,2,29,31],[972,2,2,31,33]]],[41,35,34,33,67,[[974,4,4,33,37],[976,1,1,37,38],[977,1,1,38,39],[978,1,1,39,40],[979,1,1,40,41],[980,1,1,41,42],[981,4,4,42,46],[982,1,1,46,47],[983,2,2,47,49],[986,2,2,49,51],[988,1,1,51,52],[989,2,2,52,54],[990,1,1,54,55],[991,3,2,55,57],[994,2,2,57,59],[996,8,8,59,67]]],[42,6,6,67,73,[[1000,1,1,67,68],[1002,1,1,68,69],[1013,3,3,69,72],[1014,1,1,72,73]]],[43,23,23,73,96,[[1018,1,1,73,74],[1021,4,4,74,78],[1026,1,1,78,79],[1028,1,1,79,80],[1030,2,2,80,82],[1031,1,1,82,83],[1032,2,2,83,85],[1035,2,2,85,87],[1038,2,2,87,89],[1039,2,2,89,91],[1042,1,1,91,92],[1043,2,2,92,94],[1045,2,2,94,96]]],[44,3,3,96,99,[[1046,1,1,96,97],[1056,1,1,97,98],[1060,1,1,98,99]]],[45,1,1,99,100,[[1076,1,1,99,100]]],[46,2,2,100,102,[[1083,1,1,100,101],[1087,1,1,101,102]]],[47,2,2,102,104,[[1092,1,1,102,103],[1096,1,1,103,104]]],[51,2,2,104,106,[[1111,1,1,104,105],[1112,1,1,105,106]]],[52,2,2,106,108,[[1117,2,2,106,108]]],[54,1,1,108,109,[[1126,1,1,108,109]]],[57,5,5,109,114,[[1133,1,1,109,110],[1135,1,1,110,111],[1140,2,2,111,113],[1145,1,1,113,114]]],[58,2,2,114,116,[[1147,1,1,114,115],[1148,1,1,115,116]]],[60,2,2,116,118,[[1157,1,1,116,117],[1158,1,1,117,118]]],[65,3,3,118,121,[[1178,1,1,118,119],[1187,1,1,119,120],[1188,1,1,120,121]]]],[23162,23182,23238,23239,23240,23241,23242,23243,23308,23411,23516,23593,23629,23709,23714,23722,23724,23802,23821,24018,24052,24075,24080,24146,24206,24308,24461,24547,24652,24772,24776,24881,24887,24979,25015,25016,25023,25065,25114,25157,25237,25268,25334,25337,25338,25358,25401,25424,25453,25554,25565,25648,25664,25665,25722,25742,25764,25887,25919,25995,25996,26005,26006,26026,26027,26032,26043,26201,26281,26767,26778,26780,26813,26932,27023,27024,27053,27054,27253,27333,27364,27376,27415,27455,27481,27563,27577,27685,27689,27723,27727,27813,27833,27841,27905,27927,27950,28240,28324,28728,28914,28983,29090,29201,29569,29584,29671,29672,29837,29967,30005,30101,30102,30258,30300,30322,30519,30527,30902,31056,31094]]],["thing",[3,3,[[45,1,1,0,1,[[1062,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]]],[28373,28927,29437]]],["things",[6,6,[[43,1,1,0,1,[[1032,1,1,0,1]]],[44,2,2,1,3,[[1047,1,1,1,2],[1055,1,1,2,3]]],[48,1,1,3,4,[[1102,1,1,3,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]],[59,1,1,5,6,[[1151,1,1,5,6]]]],[27469,27963,28193,29346,29422,30386]]],["this",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]]],[23473,26587]]],["those",[5,5,[[39,1,1,0,1,[[949,1,1,0,1]]],[42,2,2,1,3,[[1006,1,1,1,2],[1013,1,1,2,3]]],[57,2,2,3,5,[[1142,2,2,3,5]]]],[23867,26513,26770,30134,30136]]],["thyself",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]]],[25188,27777]]],["to",[2,2,[[43,1,1,0,1,[[1034,1,1,0,1]]],[65,1,1,1,2,[[1173,1,1,1,2]]]],[27528,30812]]],["very",[2,2,[[51,1,1,0,1,[[1115,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[29644,30134]]],["was",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25642]]],["we",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]]],[25409,29098]]],["which",[2,2,[[41,1,1,0,1,[[991,1,1,0,1]]],[65,1,1,1,2,[[1183,1,1,1,2]]]],[25733,30984]]],["who",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]]],[24234,27469]]],["whom",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]]],[27583,28245]]],["whose",[3,3,[[41,1,1,0,1,[[978,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]],[65,1,1,2,3,[[1175,1,1,2,3]]]],[25152,26050,30851]]],["women",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29445]]],["ye",[4,4,[[43,3,3,0,3,[[1019,1,1,0,1],[1035,1,1,1,2],[1037,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[26971,27572,27660,30389]]],["yourselves",[9,9,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,2,2,1,3,[[983,2,2,1,3]]],[42,1,1,3,4,[[999,1,1,3,4]]],[51,4,4,4,8,[[1112,1,1,4,5],[1113,1,1,5,6],[1114,1,1,6,7],[1115,1,1,7,8]]],[52,1,1,8,9,[[1118,1,1,8,9]]]],[24438,25451,25457,26148,29571,29593,29612,29623,29685]]]]},{"k":"G847","v":[["*",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[43,3,3,1,4,[[1032,1,1,1,2],[1035,1,1,2,3],[1038,1,1,3,4]]]],[24090,27476,27576,27668]]],["here",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24090]]],["there",[3,3,[[43,3,3,0,3,[[1032,1,1,0,1],[1035,1,1,1,2],[1038,1,1,2,3]]]],[27476,27576,27668]]]]},{"k":"G848","v":[["*",[924,767,[[39,143,122,0,122,[[929,3,3,0,3],[930,3,3,3,6],[931,5,3,6,9],[932,3,3,9,12],[933,7,6,12,18],[934,8,7,18,25],[935,3,3,25,28],[937,3,3,28,31],[938,11,8,31,39],[939,4,4,39,43],[940,2,1,43,44],[941,8,7,44,51],[942,3,3,51,54],[943,7,6,54,60],[944,13,8,60,68],[945,3,3,68,71],[946,3,3,71,74],[947,5,5,74,79],[948,5,5,79,84],[949,3,3,84,87],[950,10,8,87,95],[951,5,3,95,98],[952,8,8,98,106],[953,10,8,106,114],[954,6,6,114,120],[955,2,2,120,122]]],[40,72,63,122,185,[[957,6,6,122,128],[958,2,2,128,130],[959,2,2,130,132],[960,2,2,132,134],[962,10,8,134,142],[963,5,4,142,146],[964,12,11,146,157],[965,3,3,157,160],[966,7,6,160,166],[967,4,4,166,170],[968,6,5,170,175],[969,8,5,175,180],[970,4,4,180,184],[971,1,1,184,185]]],[41,106,99,185,284,[[973,16,15,185,200],[974,7,7,200,207],[975,3,2,207,209],[976,2,2,209,211],[977,3,3,211,214],[978,6,5,214,219],[979,7,7,219,226],[980,2,2,226,228],[981,10,9,228,237],[982,4,4,237,241],[983,1,1,241,242],[984,10,9,242,251],[985,2,2,251,253],[986,4,3,253,256],[987,4,4,256,260],[988,5,5,260,265],[989,3,2,265,267],[990,3,3,267,270],[991,3,3,270,273],[992,3,3,273,276],[993,4,4,276,280],[994,1,1,280,281],[995,1,1,281,282],[996,2,2,282,284]]],[42,33,31,284,315,[[998,2,2,284,286],[999,3,3,286,289],[1000,2,2,289,291],[1002,3,3,291,294],[1003,1,1,294,295],[1005,1,1,295,296],[1007,2,2,296,298],[1008,3,2,298,300],[1009,3,3,300,303],[1011,4,3,303,306],[1013,2,2,306,308],[1014,1,1,308,309],[1015,3,3,309,312],[1016,2,2,312,314],[1017,1,1,314,315]]],[43,90,86,315,401,[[1019,1,1,315,316],[1020,4,4,316,320],[1022,4,4,320,324],[1024,12,11,324,335],[1025,5,5,335,340],[1026,3,3,340,343],[1027,4,4,343,347],[1029,1,1,347,348],[1030,4,4,348,352],[1031,5,5,352,357],[1032,5,5,357,362],[1033,8,7,362,369],[1034,2,2,369,371],[1035,3,3,371,374],[1036,2,2,374,376],[1037,2,2,376,378],[1038,3,3,378,381],[1039,6,4,381,385],[1040,5,5,385,390],[1041,2,2,390,392],[1042,2,2,392,394],[1044,3,3,394,397],[1045,4,4,397,401]]],[44,71,55,401,456,[[1046,12,9,401,410],[1047,4,3,410,413],[1048,11,8,413,421],[1049,2,2,421,423],[1050,3,2,423,425],[1051,3,3,425,428],[1052,1,1,428,429],[1053,7,6,429,435],[1054,3,3,435,438],[1055,2,1,438,439],[1056,13,9,439,448],[1057,1,1,448,449],[1060,5,3,449,452],[1061,4,4,452,456]]],[45,28,27,456,483,[[1062,2,2,456,458],[1063,1,1,458,459],[1064,2,2,459,461],[1066,1,1,461,462],[1067,2,2,462,464],[1068,4,3,464,467],[1069,2,2,467,469],[1070,3,3,469,472],[1071,2,2,472,474],[1072,2,2,474,476],[1075,1,1,476,477],[1076,5,5,477,482],[1077,1,1,482,483]]],[46,4,4,483,487,[[1078,2,2,483,485],[1079,1,1,485,486],[1088,1,1,486,487]]],[47,5,5,487,492,[[1091,2,2,487,489],[1094,3,3,489,492]]],[48,18,13,492,505,[[1097,9,6,492,498],[1098,3,3,498,501],[1099,2,1,501,502],[1100,2,2,502,504],[1101,2,1,504,505]]],[49,2,2,505,507,[[1103,1,1,505,506],[1106,1,1,506,507]]],[50,6,5,507,512,[[1107,4,3,507,510],[1108,2,2,510,512]]],[51,3,3,512,515,[[1112,1,1,512,513],[1114,2,2,513,515]]],[52,4,3,515,518,[[1116,2,2,515,517],[1117,2,1,517,518]]],[53,1,1,518,519,[[1123,1,1,518,519]]],[54,4,3,519,522,[[1126,1,1,519,520],[1128,3,2,520,522]]],[55,2,2,522,524,[[1129,1,1,522,523],[1131,1,1,523,524]]],[57,28,25,524,549,[[1133,3,2,524,526],[1134,1,1,526,527],[1135,2,2,527,529],[1136,2,2,529,531],[1137,1,1,531,532],[1138,1,1,532,533],[1139,1,1,533,534],[1140,2,1,534,535],[1141,1,1,535,536],[1142,2,2,536,538],[1143,5,5,538,543],[1144,4,4,543,547],[1145,3,2,547,549]]],[58,13,12,549,561,[[1146,9,8,549,557],[1147,1,1,557,558],[1148,1,1,558,559],[1149,1,1,559,560],[1150,1,1,560,561]]],[59,6,4,561,565,[[1151,1,1,561,562],[1152,2,1,562,563],[1153,2,1,563,564],[1155,1,1,564,565]]],[60,5,5,565,570,[[1156,1,1,565,566],[1157,2,2,566,568],[1158,2,2,568,570]]],[61,42,35,570,605,[[1159,2,2,570,572],[1160,11,10,572,582],[1161,13,9,582,591],[1162,7,6,591,597],[1163,9,8,597,605]]],[62,3,3,605,608,[[1164,3,3,605,608]]],[63,2,2,608,610,[[1165,2,2,608,610]]],[64,5,4,610,614,[[1166,5,4,610,614]]],[65,228,153,614,767,[[1167,16,8,614,622],[1168,7,6,622,628],[1169,5,3,628,631],[1170,2,2,631,633],[1171,3,3,633,636],[1172,7,5,636,641],[1173,7,6,641,647],[1174,1,1,647,648],[1175,19,11,648,659],[1176,5,3,659,662],[1177,14,10,662,672],[1178,19,13,672,685],[1179,16,8,685,693],[1180,20,13,693,706],[1181,4,2,706,708],[1182,18,11,708,719],[1183,8,5,719,724],[1184,16,13,724,737],[1185,19,12,737,749],[1186,5,4,749,753],[1187,10,8,753,761],[1188,7,6,761,767]]]],[23165,23168,23169,23180,23181,23187,23196,23198,23204,23215,23230,23231,23236,23256,23262,23265,23266,23279,23284,23286,23287,23289,23298,23309,23311,23322,23340,23342,23386,23416,23417,23418,23427,23434,23441,23452,23455,23456,23459,23460,23461,23475,23478,23538,23554,23563,23580,23582,23591,23593,23596,23599,23605,23619,23635,23639,23641,23660,23665,23669,23685,23692,23693,23696,23697,23698,23699,23700,23706,23708,23725,23750,23758,23762,23765,23767,23771,23785,23790,23793,23794,23800,23812,23820,23833,23860,23863,23874,23875,23877,23879,23880,23888,23896,23897,23919,23922,23923,23974,23975,23986,23988,24000,24002,24004,24005,24009,24012,24015,24022,24026,24039,24041,24042,24055,24093,24098,24099,24105,24119,24168,24189,24220,24221,24222,24233,24235,24242,24266,24268,24295,24297,24325,24357,24408,24411,24424,24428,24431,24435,24448,24452,24475,24489,24493,24496,24501,24503,24506,24510,24512,24533,24534,24535,24536,24537,24538,24556,24569,24579,24595,24599,24600,24611,24633,24638,24641,24647,24648,24663,24679,24692,24711,24716,24717,24732,24733,24741,24744,24751,24767,24786,24800,24817,24855,24901,24908,24913,24916,24929,24941,24944,24947,24949,24951,24959,24961,24962,24963,24965,24980,24981,24992,25001,25009,25012,25024,25040,25042,25073,25087,25122,25132,25136,25159,25163,25166,25186,25191,25196,25207,25211,25214,25230,25233,25239,25250,25286,25302,25315,25324,25325,25327,25344,25352,25353,25363,25364,25365,25370,25401,25406,25460,25481,25484,25486,25498,25501,25503,25504,25512,25524,25533,25570,25574,25580,25601,25603,25604,25610,25621,25624,25638,25643,25644,25675,25684,25695,25701,25702,25746,25760,25767,25802,25807,25824,25827,25830,25838,25847,25900,25946,26017,26041,26106,26116,26124,26136,26137,26161,26184,26260,26269,26279,26381,26461,26525,26551,26583,26605,26642,26646,26648,26712,26719,26721,26760,26772,26789,26837,26842,26851,26887,26897,26912,26963,26998,27009,27017,27022,27060,27077,27090,27096,27126,27129,27130,27136,27139,27141,27155,27157,27170,27173,27174,27203,27204,27208,27211,27215,27220,27224,27256,27261,27266,27281,27283,27348,27398,27404,27412,27413,27417,27422,27425,27428,27430,27456,27460,27465,27468,27474,27486,27498,27499,27502,27515,27517,27520,27539,27549,27559,27565,27576,27603,27612,27661,27664,27675,27683,27688,27718,27724,27726,27734,27736,27744,27753,27762,27763,27777,27793,27818,27821,27876,27882,27891,27902,27903,27916,27926,27932,27933,27935,27939,27950,27951,27954,27956,27957,27966,27977,27988,27994,27998,28004,28006,28007,28009,28015,28016,28027,28035,28056,28057,28071,28073,28080,28116,28125,28127,28137,28139,28142,28145,28158,28177,28178,28206,28210,28211,28218,28219,28220,28221,28236,28242,28243,28265,28313,28317,28330,28338,28341,28349,28351,28365,28372,28404,28425,28429,28467,28472,28481,28523,28524,28526,28534,28539,28547,28550,28567,28593,28595,28604,28605,28703,28728,28741,28743,28745,28746,28795,28804,28809,28838,28992,29072,29073,29135,29137,29156,29211,29212,29215,29217,29223,29226,29233,29236,29244,29267,29289,29297,29335,29367,29461,29478,29485,29487,29509,29512,29586,29609,29611,29656,29659,29669,29781,29846,29871,29888,29895,29928,29966,29970,29981,30001,30013,30018,30024,30037,30061,30069,30103,30131,30153,30163,30179,30193,30194,30195,30207,30214,30215,30222,30228,30244,30262,30274,30275,30276,30277,30279,30284,30291,30292,30314,30332,30348,30372,30377,30423,30434,30475,30488,30512,30513,30525,30538,30543,30550,30553,30554,30555,30556,30559,30560,30561,30562,30567,30578,30588,30589,30591,30594,30595,30596,30601,30602,30603,30612,30613,30615,30616,30623,30624,30626,30627,30633,30634,30635,30638,30640,30644,30646,30651,30656,30667,30668,30686,30687,30688,30696,30698,30701,30702,30703,30711,30712,30713,30714,30718,30722,30735,30738,30739,30740,30750,30751,30767,30772,30778,30781,30784,30788,30798,30804,30806,30807,30810,30813,30819,30821,30824,30825,30827,30839,30844,30845,30847,30848,30849,30850,30857,30858,30859,30860,30861,30862,30863,30866,30877,30878,30879,30880,30881,30883,30884,30887,30888,30891,30892,30894,30895,30896,30898,30899,30900,30901,30902,30905,30906,30907,30908,30909,30910,30911,30914,30920,30924,30925,30926,30927,30928,30931,30933,30934,30935,30936,30937,30939,30940,30942,30944,30945,30948,30954,30956,30957,30958,30962,30964,30965,30966,30969,30971,30973,30975,30977,30979,30980,30991,30992,30994,30996,30997,30998,30999,31000,31001,31002,31003,31004,31008,31011,31012,31019,31020,31022,31024,31027,31029,31030,31032,31033,31036,31037,31038,31039,31042,31050,31051,31055,31056,31057,31060,31061,31064,31069,31077,31082,31083,31084,31086,31092,31094]]],["+",[18,18,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,4,4,1,5,[[973,1,1,1,2],[976,1,1,2,3],[981,1,1,3,4],[984,1,1,4,5]]],[43,1,1,5,6,[[1042,1,1,5,6]]],[44,2,2,6,8,[[1052,1,1,6,7],[1054,1,1,7,8]]],[45,2,2,8,10,[[1066,1,1,8,9],[1072,1,1,9,10]]],[49,1,1,10,11,[[1103,1,1,10,11]]],[50,1,1,11,12,[[1107,1,1,11,12]]],[57,1,1,12,13,[[1145,1,1,12,13]]],[61,1,1,13,14,[[1160,1,1,13,14]]],[65,4,4,14,18,[[1172,1,1,14,15],[1173,1,1,15,16],[1179,1,1,16,17],[1187,1,1,17,18]]]],[23215,24951,25073,25302,25503,27818,28116,28177,28467,28605,29367,29487,30262,30562,30804,30824,30920,31069]]],["His",[2,2,[[65,2,2,0,2,[[1167,1,1,0,1],[1185,1,1,1,2]]]],[30711,31029]]],["I",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27724]]],["Their",[2,2,[[44,2,2,0,2,[[1048,2,2,0,2]]]],[28004,28006]]],["he",[7,7,[[43,2,2,0,2,[[1035,1,1,0,1],[1037,1,1,1,2]]],[45,1,1,2,3,[[1064,1,1,2,3]]],[58,3,3,3,6,[[1146,3,3,3,6]]],[63,1,1,6,7,[[1165,1,1,6,7]]]],[27576,27661,28425,30275,30276,30279,30668]]],["her",[80,71,[[39,8,7,0,7,[[929,1,1,0,1],[930,1,1,1,2],[938,2,1,2,3],[939,1,1,3,4],[942,1,1,4,5],[948,1,1,5,6],[952,1,1,6,7]]],[40,8,7,7,14,[[962,2,2,7,9],[963,2,2,9,11],[966,1,1,11,12],[968,2,1,12,13],[969,1,1,13,14]]],[41,13,12,14,26,[[973,2,2,14,16],[974,4,4,16,20],[979,3,3,20,23],[982,1,1,23,24],[984,2,1,24,25],[993,1,1,25,26]]],[42,4,4,26,30,[[1000,1,1,26,27],[1007,2,2,27,29],[1008,1,1,29,30]]],[43,6,6,30,36,[[1025,1,1,30,31],[1026,1,1,31,32],[1033,3,3,32,35],[1036,1,1,35,36]]],[45,2,1,36,37,[[1068,2,1,36,37]]],[47,1,1,37,38,[[1094,1,1,37,38]]],[58,1,1,38,39,[[1150,1,1,38,39]]],[62,1,1,39,40,[[1164,1,1,39,40]]],[65,36,31,40,71,[[1168,2,2,40,42],[1172,1,1,42,43],[1178,7,6,43,49],[1180,2,2,49,51],[1183,5,4,51,55],[1184,13,11,55,66],[1185,3,2,66,68],[1187,2,2,68,70],[1188,1,1,70,71]]]],[23169,23187,23452,23478,23605,23812,23986,24431,24435,24489,24493,24600,24717,24741,24929,24951,24980,24992,25009,25024,25230,25233,25239,25401,25512,25830,26184,26525,26551,26583,27203,27256,27498,27499,27502,27612,28526,29156,30372,30646,30738,30740,30806,30892,30895,30896,30905,30907,30908,30934,30944,30977,30979,30980,30991,30996,30997,30998,30999,31000,31001,31002,31003,31008,31011,31012,31019,31020,31055,31064,31082]]],["him",[8,8,[[41,1,1,0,1,[[991,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[43,4,4,2,6,[[1022,1,1,2,3],[1026,1,1,3,4],[1040,2,2,4,6]]],[48,1,1,6,7,[[1097,1,1,6,7]]],[57,1,1,7,8,[[1144,1,1,7,8]]]],[25746,26789,27096,27220,27736,27753,29223,30214]]],["himself",[13,13,[[39,1,1,0,1,[[934,1,1,0,1]]],[42,2,2,1,3,[[1005,1,1,1,2],[1015,1,1,2,3]]],[43,1,1,3,4,[[1042,1,1,3,4]]],[45,1,1,4,5,[[1076,1,1,4,5]]],[48,2,2,5,7,[[1097,2,2,5,7]]],[50,1,1,7,8,[[1107,1,1,7,8]]],[57,2,2,8,10,[[1141,1,1,8,9],[1144,1,1,9,10]]],[61,1,1,10,11,[[1160,1,1,10,11]]],[65,2,2,11,13,[[1185,1,1,11,12],[1187,1,1,12,13]]]],[23286,26461,26837,27821,28746,29211,29215,29485,30131,30215,30556,31029,31056]]],["his",[533,455,[[39,94,81,0,81,[[929,2,2,0,2],[931,4,2,2,4],[933,7,6,4,10],[934,2,2,10,12],[935,2,2,12,14],[937,3,3,14,17],[938,8,7,17,24],[939,2,2,24,26],[940,2,1,26,27],[941,3,3,27,30],[942,2,2,30,32],[943,4,3,32,35],[944,12,8,35,43],[946,2,2,43,45],[947,5,5,45,50],[948,4,4,50,54],[949,2,2,54,56],[950,9,7,56,63],[951,1,1,63,64],[952,7,7,64,71],[953,6,5,71,76],[954,5,5,76,81]]],[40,49,42,81,123,[[957,1,1,81,82],[958,1,1,82,83],[959,2,2,83,85],[960,2,2,85,87],[962,5,4,87,91],[963,3,2,91,93],[964,10,9,93,102],[965,3,3,102,105],[966,6,5,105,110],[967,2,2,110,112],[968,4,4,112,116],[969,7,4,116,120],[970,3,3,120,123]]],[41,68,63,123,186,[[973,9,9,123,132],[974,1,1,132,133],[975,2,1,133,134],[978,5,4,134,138],[979,4,4,138,142],[980,2,2,142,144],[981,8,7,144,151],[982,3,3,151,154],[983,1,1,154,155],[984,7,7,155,162],[985,2,2,162,164],[986,4,3,164,167],[987,4,4,167,171],[988,4,4,171,175],[989,3,2,175,177],[990,2,2,177,179],[991,1,1,179,180],[992,2,2,180,182],[994,1,1,182,183],[995,1,1,183,184],[996,2,2,184,186]]],[42,23,21,186,207,[[998,2,2,186,188],[999,3,3,188,191],[1000,1,1,191,192],[1002,3,3,192,195],[1008,2,1,195,196],[1009,3,3,196,199],[1011,3,2,199,201],[1013,1,1,201,202],[1015,2,2,202,204],[1016,2,2,204,206],[1017,1,1,206,207]]],[43,44,42,207,249,[[1019,1,1,207,208],[1020,4,4,208,212],[1022,2,2,212,214],[1024,7,6,214,220],[1025,4,4,220,224],[1026,1,1,224,225],[1027,4,4,225,229],[1029,1,1,229,230],[1030,1,1,230,231],[1031,2,2,231,233],[1032,2,2,233,235],[1033,3,3,235,238],[1034,1,1,238,239],[1035,2,2,239,241],[1037,1,1,241,242],[1038,1,1,242,243],[1039,3,2,243,245],[1041,2,2,245,247],[1045,2,2,247,249]]],[44,31,28,249,277,[[1046,5,5,249,254],[1047,2,2,254,256],[1048,4,3,256,259],[1049,2,2,259,261],[1050,3,2,261,263],[1051,2,2,263,265],[1053,3,3,265,268],[1054,1,1,268,269],[1056,5,4,269,273],[1057,1,1,273,274],[1060,1,1,274,275],[1061,2,2,275,277]]],[45,12,12,277,289,[[1062,1,1,277,278],[1063,1,1,278,279],[1067,1,1,279,280],[1068,2,2,280,282],[1070,1,1,282,283],[1072,1,1,283,284],[1075,1,1,284,285],[1076,4,4,285,289]]],[46,2,2,289,291,[[1079,1,1,289,290],[1088,1,1,290,291]]],[47,4,4,291,295,[[1091,2,2,291,293],[1094,2,2,293,295]]],[48,12,9,295,304,[[1097,4,3,295,298],[1098,3,3,298,301],[1099,2,1,301,302],[1100,1,1,302,303],[1101,2,1,303,304]]],[49,1,1,304,305,[[1106,1,1,304,305]]],[50,3,3,305,308,[[1107,2,2,305,307],[1108,1,1,307,308]]],[51,2,2,308,310,[[1114,2,2,308,310]]],[52,4,3,310,313,[[1116,2,2,310,312],[1117,2,1,312,313]]],[53,1,1,313,314,[[1123,1,1,313,314]]],[54,4,3,314,317,[[1126,1,1,314,315],[1128,3,2,315,317]]],[55,2,2,317,319,[[1129,1,1,317,318],[1131,1,1,318,319]]],[57,17,15,319,334,[[1133,3,2,319,321],[1135,1,1,321,322],[1136,1,1,322,323],[1137,1,1,323,324],[1138,1,1,324,325],[1140,2,1,325,326],[1142,2,2,326,328],[1143,4,4,328,332],[1144,1,1,332,333],[1145,1,1,333,334]]],[58,8,8,334,342,[[1146,5,5,334,339],[1147,1,1,339,340],[1148,1,1,340,341],[1149,1,1,341,342]]],[59,4,3,342,345,[[1151,1,1,342,343],[1153,2,1,343,344],[1155,1,1,344,345]]],[60,1,1,345,346,[[1156,1,1,345,346]]],[61,38,32,346,378,[[1159,2,2,346,348],[1160,8,7,348,355],[1161,12,9,355,364],[1162,7,6,364,370],[1163,9,8,370,378]]],[62,2,2,378,380,[[1164,2,2,378,380]]],[64,2,2,380,382,[[1166,2,2,380,382]]],[65,105,73,382,455,[[1167,14,7,382,389],[1168,4,3,389,392],[1169,4,2,392,394],[1172,2,2,394,396],[1173,1,1,396,397],[1176,5,3,397,400],[1177,3,2,400,402],[1178,9,8,402,410],[1179,13,6,410,416],[1180,12,8,416,424],[1181,4,2,424,426],[1182,12,9,426,435],[1183,1,1,435,436],[1184,1,1,436,437],[1185,12,11,437,448],[1186,1,1,448,449],[1187,2,2,449,451],[1188,5,4,451,455]]]],[23165,23168,23196,23204,23236,23256,23262,23265,23266,23279,23309,23311,23340,23342,23386,23416,23417,23418,23427,23441,23452,23455,23456,23459,23460,23461,23538,23563,23580,23591,23599,23619,23639,23665,23669,23685,23692,23693,23696,23697,23698,23699,23700,23750,23762,23765,23767,23771,23785,23790,23793,23794,23800,23820,23860,23863,23874,23875,23877,23879,23880,23896,23897,23919,23974,23975,23988,24000,24002,24004,24005,24022,24026,24039,24041,24042,24055,24093,24099,24105,24119,24221,24268,24295,24297,24325,24357,24424,24428,24448,24452,24475,24496,24501,24506,24510,24512,24533,24534,24535,24537,24538,24556,24569,24579,24595,24599,24611,24633,24638,24641,24663,24679,24692,24711,24716,24732,24733,24744,24751,24767,24786,24817,24901,24908,24941,24944,24947,24961,24962,24963,24965,25001,25042,25159,25166,25186,25191,25196,25207,25211,25214,25250,25286,25315,25324,25325,25344,25352,25353,25363,25364,25365,25370,25406,25460,25481,25484,25486,25498,25501,25504,25524,25533,25570,25574,25580,25601,25603,25604,25610,25621,25638,25643,25644,25675,25684,25701,25702,25760,25807,25824,25900,25946,26017,26041,26106,26116,26124,26136,26137,26161,26260,26269,26279,26605,26642,26646,26648,26712,26719,26760,26842,26851,26887,26897,26912,26963,26998,27009,27017,27022,27060,27090,27126,27129,27130,27136,27139,27141,27204,27208,27211,27215,27224,27261,27266,27281,27283,27348,27398,27417,27422,27456,27460,27486,27515,27517,27539,27559,27565,27664,27683,27718,27724,27777,27793,27902,27903,27932,27933,27935,27939,27950,27966,27988,27998,28015,28016,28027,28035,28056,28057,28071,28073,28125,28127,28145,28178,28210,28211,28242,28243,28265,28313,28349,28351,28372,28404,28472,28523,28524,28550,28604,28703,28728,28741,28743,28745,28838,28992,29072,29073,29135,29137,29211,29212,29215,29233,29236,29244,29267,29297,29335,29461,29478,29487,29512,29609,29611,29656,29659,29669,29781,29846,29871,29888,29895,29928,29966,29970,30013,30018,30037,30061,30103,30153,30163,30179,30193,30194,30195,30228,30262,30274,30277,30284,30291,30292,30314,30332,30348,30377,30434,30475,30488,30543,30550,30553,30554,30555,30559,30560,30561,30578,30588,30589,30591,30594,30595,30596,30601,30602,30603,30612,30613,30615,30616,30623,30624,30626,30627,30633,30634,30635,30638,30640,30644,30651,30656,30686,30696,30698,30701,30703,30711,30712,30713,30714,30718,30722,30735,30751,30767,30798,30810,30825,30862,30863,30866,30887,30891,30894,30895,30896,30898,30900,30901,30906,30907,30909,30910,30911,30914,30925,30926,30927,30933,30935,30936,30937,30940,30942,30945,30948,30954,30956,30957,30958,30962,30964,30966,30969,30971,30973,30992,30994,31019,31022,31024,31027,31029,31030,31032,31033,31036,31037,31038,31039,31056,31060,31083,31086,31092,31094]]],["it",[3,3,[[41,1,1,0,1,[[993,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]],[65,1,1,2,3,[[1174,1,1,2,3]]]],[25847,29509,30839]]],["itself",[2,2,[[44,2,2,0,2,[[1053,2,2,0,2]]]],[28137,28142]]],["myself",[4,4,[[44,3,3,0,3,[[1054,1,1,0,1],[1060,1,1,1,2],[1061,1,1,2,3]]],[45,1,1,3,4,[[1070,1,1,3,4]]]],[28158,28317,28338,28567]]],["ourselves",[2,1,[[44,2,1,0,1,[[1053,2,1,0,1]]]],[28139]]],["own",[41,38,[[39,7,6,0,6,[[930,1,1,0,1],[941,3,2,1,3],[944,1,1,3,4],[945,1,1,4,5],[955,1,1,5,6]]],[40,5,4,6,10,[[962,3,2,6,8],[964,2,2,8,10]]],[41,8,8,10,18,[[973,2,2,10,12],[974,1,1,12,13],[976,1,1,13,14],[977,2,2,14,16],[981,1,1,16,17],[990,1,1,17,18]]],[42,1,1,18,19,[[1003,1,1,18,19]]],[43,3,3,19,22,[[1024,1,1,19,20],[1031,1,1,20,21],[1038,1,1,21,22]]],[44,2,1,22,23,[[1046,2,1,22,23]]],[45,2,2,23,25,[[1064,1,1,23,24],[1067,1,1,24,25]]],[48,2,2,25,27,[[1097,2,2,25,27]]],[57,4,4,27,31,[[1134,1,1,27,28],[1135,1,1,28,29],[1136,1,1,29,30],[1144,1,1,30,31]]],[58,1,1,31,32,[[1146,1,1,31,32]]],[59,1,1,32,33,[[1152,1,1,32,33]]],[60,2,2,33,35,[[1157,2,2,33,35]]],[61,1,1,35,36,[[1161,1,1,35,36]]],[64,1,1,36,37,[[1166,1,1,36,37]]],[65,1,1,37,38,[[1167,1,1,37,38]]]],[23181,23593,23596,23698,23725,24189,24408,24411,24503,24536,24916,24949,25012,25087,25132,25136,25327,25695,26381,27157,27430,27675,27954,28429,28481,29217,29226,29981,30001,30024,30222,30292,30423,30512,30513,30591,30688,30702]]],["same",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24098]]],["self",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30423]]],["their",[173,143,[[39,31,27,0,27,[[930,1,1,0,1],[931,1,1,1,2],[932,2,2,2,4],[934,5,4,4,8],[935,1,1,8,9],[938,1,1,9,10],[939,1,1,10,11],[941,2,2,11,13],[943,3,3,13,16],[945,2,2,16,18],[946,1,1,18,19],[949,1,1,19,20],[950,1,1,20,21],[951,4,2,21,23],[953,4,3,23,26],[955,1,1,26,27]]],[40,8,8,27,35,[[957,3,3,27,30],[958,1,1,30,31],[967,2,2,31,33],[970,1,1,33,34],[971,1,1,34,35]]],[41,11,11,35,46,[[973,2,2,35,37],[974,1,1,37,38],[975,1,1,38,39],[977,1,1,39,40],[978,1,1,40,41],[988,1,1,41,42],[991,1,1,42,43],[992,1,1,43,44],[993,2,2,44,46]]],[42,1,1,46,47,[[1011,1,1,46,47]]],[43,16,16,47,63,[[1024,3,3,47,50],[1030,2,2,50,52],[1031,2,2,52,54],[1032,1,1,54,55],[1033,1,1,55,56],[1034,1,1,56,57],[1036,1,1,57,58],[1039,2,2,58,60],[1040,2,2,60,62],[1045,1,1,62,63]]],[44,23,16,63,79,[[1046,5,3,63,66],[1047,2,1,66,67],[1048,5,4,67,71],[1055,2,1,71,72],[1056,6,5,72,77],[1060,2,1,77,78],[1061,1,1,78,79]]],[45,3,3,79,82,[[1069,2,2,79,81],[1077,1,1,81,82]]],[48,1,1,82,83,[[1100,1,1,82,83]]],[51,1,1,83,84,[[1112,1,1,83,84]]],[57,2,2,84,86,[[1139,1,1,84,85],[1143,1,1,85,86]]],[60,2,2,86,88,[[1158,2,2,86,88]]],[64,2,2,88,90,[[1166,2,2,88,90]]],[65,72,53,90,143,[[1168,1,1,90,91],[1169,1,1,91,92],[1170,2,2,92,94],[1172,3,2,94,96],[1173,5,5,96,101],[1175,19,11,101,112],[1177,11,8,112,120],[1178,3,2,120,122],[1179,2,1,122,123],[1180,6,5,123,128],[1182,4,2,128,130],[1183,2,1,130,131],[1184,2,2,131,133],[1185,2,2,133,135],[1186,4,3,135,138],[1187,4,4,138,142],[1188,1,1,142,143]]]],[23180,23198,23230,23231,23284,23287,23289,23298,23322,23434,23475,23554,23582,23635,23641,23660,23706,23708,23758,23833,23888,23922,23923,24009,24012,24015,24168,24220,24233,24235,24266,24647,24648,24800,24855,24913,24959,24981,25040,25122,25163,25624,25767,25802,25827,25838,26721,27155,27173,27174,27412,27413,27425,27428,27468,27502,27549,27603,27726,27734,27762,27763,27926,27951,27956,27957,27977,27994,28004,28007,28009,28206,28218,28219,28220,28221,28236,28330,28341,28534,28539,28795,29289,29586,30069,30207,30525,30538,30687,30688,30739,30750,30772,30778,30804,30807,30813,30819,30821,30824,30827,30844,30845,30847,30848,30849,30850,30857,30858,30859,30860,30861,30877,30878,30879,30880,30881,30883,30884,30888,30899,30902,30924,30927,30928,30931,30937,30939,30964,30965,30992,31004,31012,31036,31038,31042,31050,31051,31056,31057,31061,31077,31084]]],["theirs",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28365]]],["them",[8,7,[[43,5,5,0,5,[[1022,1,1,0,1],[1030,1,1,1,2],[1032,1,1,2,3],[1040,1,1,3,4],[1044,1,1,4,5]]],[44,2,1,5,6,[[1056,2,1,5,6]]],[63,1,1,6,7,[[1165,1,1,6,7]]]],[27077,27404,27465,27744,27876,28221,30667]]],["themselves",[4,4,[[40,1,1,0,1,[[957,1,1,0,1]]],[42,1,1,1,2,[[1013,1,1,1,2]]],[43,2,2,2,4,[[1032,1,1,2,3],[1033,1,1,3,4]]]],[24242,26772,27474,27520]]],["thereof",[10,10,[[44,1,1,0,1,[[1051,1,1,0,1]]],[45,3,3,1,4,[[1070,1,1,1,2],[1071,2,2,2,4]]],[61,1,1,4,5,[[1160,1,1,4,5]]],[65,5,5,5,10,[[1171,3,3,5,8],[1182,2,2,8,10]]]],[28080,28547,28593,28595,30567,30781,30784,30788,30966,30975]]],["they",[3,3,[[43,3,3,0,3,[[1044,2,2,0,2],[1045,1,1,2,3]]]],[27882,27891,27916]]],["thou",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27688]]],["to",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27170]]],["we",[2,2,[[46,2,2,0,2,[[1078,2,2,0,2]]]],[28804,28809]]],["whose",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24222]]],["ye",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28317]]],["yourselves",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30244]]]]},{"k":"G849","v":[["hands",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27874]]]]},{"k":"G850","v":[["dark",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30498]]]]},{"k":"G851","v":[["*",[10,9,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,4,4,2,6,[[973,1,1,2,3],[982,1,1,3,4],[988,1,1,4,5],[994,1,1,5,6]]],[44,1,1,6,7,[[1056,1,1,6,7]]],[57,1,1,7,8,[[1142,1,1,7,8]]],[65,2,1,8,9,[[1188,2,1,8,9]]]],[24105,24801,24918,25405,25623,25914,28236,30137,31099]]],["away",[7,6,[[41,3,3,0,3,[[973,1,1,0,1],[982,1,1,1,2],[988,1,1,2,3]]],[44,1,1,3,4,[[1056,1,1,3,4]]],[57,1,1,4,5,[[1142,1,1,4,5]]],[65,2,1,5,6,[[1188,2,1,5,6]]]],[24918,25405,25623,28236,30137,31099]]],["off",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]]],[24105,24801,25914]]]]},{"k":"G852","v":[["manifest",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30027]]]]},{"k":"G853","v":[["*",[5,5,[[39,3,3,0,3,[[934,3,3,0,3]]],[43,1,1,3,4,[[1030,1,1,3,4]]],[58,1,1,4,5,[[1149,1,1,4,5]]]],[23298,23301,23302,27403,30351]]],["away",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30351]]],["corrupt",[2,2,[[39,2,2,0,2,[[934,2,2,0,2]]]],[23301,23302]]],["disfigure",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23298]]],["perish",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27403]]]]},{"k":"G854","v":[["+",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30105]]]]},{"k":"G855","v":[["+",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26022]]]]},{"k":"G856","v":[["draught",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[23650,24482]]]]},{"k":"G857","v":[["neglecting",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29517]]]]},{"k":"G858","v":[["singleness",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26995]]]]},{"k":"G859","v":[["*",[17,16,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[957,1,1,1,2],[959,1,1,2,3]]],[41,5,4,3,7,[[973,1,1,3,4],[975,1,1,4,5],[976,2,1,5,6],[996,1,1,6,7]]],[43,5,5,7,12,[[1019,1,1,7,8],[1022,1,1,8,9],[1027,1,1,9,10],[1030,1,1,10,11],[1043,1,1,11,12]]],[48,1,1,12,13,[[1097,1,1,12,13]]],[50,1,1,13,14,[[1107,1,1,13,14]]],[57,2,2,14,16,[[1141,1,1,14,15],[1142,1,1,15,16]]]],[24082,24219,24317,24970,25028,25081,26038,26987,27090,27302,27400,27841,29213,29479,30127,30151]]],["+",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24317]]],["deliverance",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25081]]],["forgiveness",[5,5,[[43,3,3,0,3,[[1022,1,1,0,1],[1030,1,1,1,2],[1043,1,1,2,3]]],[48,1,1,3,4,[[1097,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]]],[27090,27400,27841,29213,29479]]],["liberty",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25081]]],["remission",[9,9,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,3,3,2,5,[[973,1,1,2,3],[975,1,1,3,4],[996,1,1,4,5]]],[43,2,2,5,7,[[1019,1,1,5,6],[1027,1,1,6,7]]],[57,2,2,7,9,[[1141,1,1,7,8],[1142,1,1,8,9]]]],[24082,24219,24970,25028,26038,26987,27302,30127,30151]]]]},{"k":"G860","v":[["*",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[29288,29513]]],["joint",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29288]]],["joints",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29513]]]]},{"k":"G861","v":[["*",[8,8,[[44,1,1,0,1,[[1047,1,1,0,1]]],[45,4,4,1,5,[[1076,4,4,1,5]]],[48,1,1,5,6,[[1102,1,1,5,6]]],[54,1,1,6,7,[[1125,1,1,6,7]]],[55,1,1,7,8,[[1130,1,1,7,8]]]],[27969,28760,28768,28771,28772,29361,29819,29915]]],["+",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29819]]],["immortality",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27969]]],["incorruption",[4,4,[[45,4,4,0,4,[[1076,4,4,0,4]]]],[28760,28768,28771,28772]]],["sincerity",[2,2,[[48,1,1,0,1,[[1102,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]]],[29361,29915]]]]},{"k":"G862","v":[["*",[7,7,[[44,1,1,0,1,[[1046,1,1,0,1]]],[45,2,2,1,3,[[1070,1,1,1,2],[1076,1,1,2,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]],[59,3,3,4,7,[[1151,2,2,4,6],[1153,1,1,6,7]]]],[27953,28565,28770,29713,30378,30397,30428]]],["corruptible",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30428]]],["immortal",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29713]]],["incorruptible",[4,4,[[45,2,2,0,2,[[1070,1,1,0,1],[1076,1,1,1,2]]],[59,2,2,2,4,[[1151,2,2,2,4]]]],[28565,28770,30378,30397]]],["uncorruptible",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27953]]]]},{"k":"G863","v":[["*",[147,133,[[39,48,40,0,40,[[931,2,1,0,1],[932,3,3,1,4],[933,2,2,4,6],[934,6,3,6,9],[935,1,1,9,10],[936,2,2,10,12],[937,3,3,12,15],[940,4,2,15,17],[941,2,2,17,19],[943,1,1,19,20],[946,5,5,20,25],[947,3,3,25,28],[950,2,2,28,30],[951,5,3,30,33],[952,3,3,33,36],[954,2,2,36,38],[955,2,2,38,40]]],[40,37,35,40,75,[[957,4,4,40,44],[958,4,4,44,48],[959,1,1,48,49],[960,2,2,49,51],[961,2,2,51,53],[963,3,3,53,56],[964,1,1,56,57],[966,3,3,57,60],[967,6,4,60,64],[968,5,5,64,69],[969,2,2,69,71],[970,2,2,71,73],[971,2,2,73,75]]],[41,33,30,75,105,[[976,1,1,75,76],[977,5,5,76,81],[978,1,1,81,82],[979,4,3,82,85],[980,1,1,85,86],[981,1,1,86,87],[982,1,1,87,88],[983,3,2,88,90],[984,3,2,90,92],[985,2,2,92,94],[989,5,5,94,99],[990,3,3,99,102],[991,1,1,102,103],[993,1,1,103,104],[995,1,1,104,105]]],[42,15,14,105,119,[[1000,3,3,105,108],[1004,1,1,108,109],[1006,1,1,109,110],[1007,2,2,110,112],[1008,1,1,112,113],[1010,2,2,113,115],[1012,2,2,115,117],[1014,1,1,117,118],[1016,2,1,118,119]]],[43,2,2,119,121,[[1025,1,1,119,120],[1031,1,1,120,121]]],[44,2,2,121,123,[[1046,1,1,121,122],[1049,1,1,122,123]]],[45,3,3,123,126,[[1068,3,3,123,126]]],[57,2,2,126,128,[[1134,1,1,126,127],[1138,1,1,127,128]]],[58,1,1,128,129,[[1150,1,1,128,129]]],[61,2,2,129,131,[[1159,1,1,129,130],[1160,1,1,130,131]]],[65,2,2,131,133,[[1168,1,1,131,132],[1177,1,1,132,133]]]],[23207,23220,23229,23231,23258,23274,23294,23296,23297,23320,23360,23367,23381,23384,23385,23520,23521,23569,23575,23647,23739,23748,23754,23759,23762,23776,23789,23791,23894,23897,23931,23941,23956,23959,23997,23998,24098,24110,24178,24179,24233,24235,24246,24249,24265,24267,24269,24270,24316,24335,24359,24383,24401,24471,24475,24490,24513,24602,24616,24617,24646,24656,24665,24666,24685,24692,24693,24694,24695,24719,24751,24760,24804,24862,24863,25102,25118,25127,25128,25130,25131,25188,25242,25243,25244,25296,25361,25393,25409,25447,25469,25498,25526,25553,25654,25655,25685,25686,25687,25704,25716,25717,25775,25832,25969,26159,26184,26208,26410,26493,26567,26571,26587,26686,26695,26754,26758,26793,26890,27198,27431,27957,28029,28498,28499,28500,29985,30045,30369,30549,30562,30721,30881]]],["+",[11,11,[[39,3,3,0,3,[[932,1,1,0,1],[941,1,1,1,2],[943,1,1,2,3]]],[40,2,2,3,5,[[967,1,1,3,4],[970,1,1,4,5]]],[41,3,3,5,8,[[983,1,1,5,6],[984,1,1,6,7],[985,1,1,7,8]]],[42,2,2,8,10,[[1007,1,1,8,9],[1008,1,1,9,10]]],[45,1,1,10,11,[[1068,1,1,10,11]]]],[23231,23575,23647,24646,24760,25447,25498,25526,26571,26587,28499]]],["Leave",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23258]]],["Let",[4,4,[[39,2,2,0,2,[[935,1,1,0,1],[941,1,1,1,2]]],[40,1,1,2,3,[[963,1,1,2,3]]],[41,1,1,3,4,[[981,1,1,3,4]]]],[23320,23569,24490,25361]]],["Suffer",[4,4,[[39,2,2,0,2,[[931,1,1,0,1],[947,1,1,1,2]]],[40,1,1,2,3,[[966,1,1,2,3]]],[41,1,1,3,4,[[990,1,1,3,4]]]],[23207,23776,24602,25704]]],["alone",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24862]]],["aside",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24471]]],["away",[2,2,[[40,1,1,0,1,[[960,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[24359,28498]]],["be",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24178]]],["cried",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24863]]],["forgave",[2,2,[[39,2,2,0,2,[[946,2,2,0,2]]]],[23754,23759]]],["forgive",[23,17,[[39,9,6,0,6,[[934,6,3,0,3],[937,1,1,3,4],[946,2,2,4,6]]],[40,6,4,6,10,[[958,2,2,6,8],[967,4,2,8,10]]],[41,7,6,10,16,[[977,2,2,10,12],[983,2,1,12,13],[989,2,2,13,15],[995,1,1,15,16]]],[61,1,1,16,17,[[1159,1,1,16,17]]]],[23294,23296,23297,23385,23748,23762,24267,24270,24665,24666,25128,25131,25409,25654,25655,25969,30549]]],["forgiven",[21,17,[[39,6,4,0,4,[[937,2,2,0,2],[940,4,2,2,4]]],[40,4,4,4,8,[[958,2,2,4,6],[959,1,1,6,7],[960,1,1,7,8]]],[41,7,5,8,13,[[977,2,2,8,10],[979,3,2,10,12],[984,2,1,12,13]]],[43,1,1,13,14,[[1025,1,1,13,14]]],[44,1,1,14,15,[[1049,1,1,14,15]]],[58,1,1,15,16,[[1150,1,1,15,16]]],[61,1,1,16,17,[[1160,1,1,16,17]]]],[23381,23384,23520,23521,24265,24269,24316,24335,25127,25130,25242,25243,25469,27198,28029,30369,30562]]],["forgiveth",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25244]]],["forsaken",[2,2,[[39,2,2,0,2,[[947,2,2,0,2]]]],[23789,23791]]],["forsook",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[957,1,1,1,2],[970,1,1,2,3]]],[41,1,1,3,4,[[977,1,1,3,4]]]],[24110,24233,24804,25118]]],["have",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23274]]],["leave",[9,9,[[39,2,2,0,2,[[946,1,1,0,1],[951,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[991,1,1,3,4]]],[42,4,4,4,8,[[1010,2,2,4,6],[1012,2,2,6,8]]],[45,1,1,8,9,[[1068,1,1,8,9]]]],[23739,23941,24692,25775,26686,26695,26754,26758,28500]]],["leaveth",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[42,1,1,1,2,[[1006,1,1,1,2]]]],[23220,26493]]],["leaving",[3,3,[[41,1,1,0,1,[[982,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]]],[25393,27957,30045]]],["left",[35,35,[[39,9,9,0,9,[[932,1,1,0,1],[936,1,1,1,2],[950,2,2,2,4],[951,1,1,4,5],[952,3,3,5,8],[954,1,1,8,9]]],[40,11,11,9,20,[[957,2,2,9,11],[964,1,1,11,12],[966,2,2,12,14],[968,4,4,14,18],[969,2,2,18,20]]],[41,8,8,20,28,[[976,1,1,20,21],[985,1,1,21,22],[989,3,3,22,25],[990,2,2,25,27],[993,1,1,27,28]]],[42,4,4,28,32,[[1000,3,3,28,31],[1004,1,1,31,32]]],[43,1,1,32,33,[[1031,1,1,32,33]]],[57,1,1,33,34,[[1134,1,1,33,34]]],[65,1,1,34,35,[[1168,1,1,34,35]]]],[23229,23360,23894,23897,23956,23959,23997,23998,24098,24235,24246,24513,24616,24617,24685,24693,24694,24695,24719,24751,25102,25553,25685,25686,25687,25716,25717,25832,26159,26184,26208,26410,27431,29985,30721]]],["let",[4,4,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[42,2,2,2,4,[[1007,1,1,2,3],[1014,1,1,3,4]]]],[23367,25188,26567,26793]]],["omitted",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23941]]],["remit",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26890]]],["remitted",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26890]]],["suffer",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,2,2,1,3,[[963,1,1,1,2],[967,1,1,2,3]]],[65,1,1,3,4,[[1177,1,1,3,4]]]],[23931,24475,24656,30881]]],["suffered",[5,5,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,3,3,1,4,[[957,1,1,1,2],[961,2,2,2,4]]],[41,1,1,4,5,[[980,1,1,4,5]]]],[23207,24249,24383,24401,25296]]],["undone",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23941]]],["up",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24179]]]]},{"k":"G864","v":[["abroad",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28355]]]]},{"k":"G865","v":[["good",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29856]]]]},{"k":"G866","v":[["*",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[29734,30246]]],["covetous",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29734]]],["covetousness",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30246]]]]},{"k":"G867","v":[["departing",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27655]]]]},{"k":"G868","v":[["*",[15,15,[[41,4,4,0,4,[[974,1,1,0,1],[976,1,1,1,2],[980,1,1,2,3],[985,1,1,3,4]]],[43,6,6,4,10,[[1022,2,2,4,6],[1029,1,1,6,7],[1032,1,1,7,8],[1036,1,1,8,9],[1039,1,1,9,10]]],[46,1,1,10,11,[[1089,1,1,10,11]]],[53,2,2,11,13,[[1122,1,1,11,12],[1124,1,1,12,13]]],[54,1,1,13,14,[[1126,1,1,13,14]]],[57,1,1,14,15,[[1135,1,1,14,15]]]],[25010,25076,25258,25545,27096,27097,27347,27480,27594,27733,29030,29748,29793,29846,30007]]],["Refrain",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27097]]],["away",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[25258,27096]]],["depart",[4,4,[[41,1,1,0,1,[[985,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]],[54,1,1,3,4,[[1126,1,1,3,4]]]],[25545,29030,29748,29846]]],["departed",[6,6,[[41,2,2,0,2,[[974,1,1,0,1],[976,1,1,1,2]]],[43,4,4,2,6,[[1029,1,1,2,3],[1032,1,1,3,4],[1036,1,1,4,5],[1039,1,1,5,6]]]],[25010,25076,27347,27480,27594,27733]]],["departing",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30007]]],["thyself",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29793]]]]},{"k":"G869","v":[["suddenly",[3,3,[[43,3,3,0,3,[[1019,1,1,0,1],[1033,1,1,1,2],[1045,1,1,2,3]]]],[26951,27509,27905]]]]},{"k":"G870","v":[["fear",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[45,1,1,1,2,[[1077,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[24967,28786,29375,30684]]]]},{"k":"G871","v":[["unto",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30067]]]]},{"k":"G872","v":[["Looking",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30214]]]]},{"k":"G873","v":[["*",[10,9,[[39,3,2,0,2,[[941,1,1,0,1],[953,2,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[43,2,2,3,5,[[1030,1,1,3,4],[1036,1,1,4,5]]],[44,1,1,5,6,[[1046,1,1,5,6]]],[46,1,1,6,7,[[1083,1,1,6,7]]],[47,2,2,7,9,[[1091,1,1,7,8],[1092,1,1,8,9]]]],[23588,24040,25168,27364,27594,27931,28915,29072,29093]]],["+",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27364]]],["divideth",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24040]]],["separate",[3,3,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[46,1,1,2,3,[[1083,1,1,2,3]]]],[24040,25168,28915]]],["separated",[4,4,[[43,1,1,0,1,[[1036,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[47,2,2,2,4,[[1091,1,1,2,3],[1092,1,1,3,4]]]],[27594,27931,29072,29093]]],["sever",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23588]]]]},{"k":"G874","v":[["occasion",[7,6,[[44,2,2,0,2,[[1052,2,2,0,2]]],[46,3,2,2,4,[[1082,1,1,2,3],[1088,2,1,3,4]]],[47,1,1,4,5,[[1095,1,1,4,5]]],[53,1,1,5,6,[[1123,1,1,5,6]]]],[28099,28102,28889,29001,29175,29777]]]]},{"k":"G875","v":[["*",[2,2,[[40,2,2,0,2,[[965,2,2,0,2]]]],[24556,24558]]],["foameth",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24556]]],["foaming",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24558]]]]},{"k":"G876","v":[["+",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25340]]]]},{"k":"G877","v":[["*",[4,4,[[40,1,1,0,1,[[963,1,1,0,1]]],[46,3,3,1,4,[[1088,3,3,1,4]]]],[24485,28990,29006,29010]]],["+",[2,2,[[46,2,2,0,2,[[1088,2,2,0,2]]]],[29006,29010]]],["folly",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28990]]],["foolishness",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24485]]]]},{"k":"G878","v":[["*",[11,10,[[41,2,2,0,2,[[983,1,1,0,1],[984,1,1,1,2]]],[44,1,1,2,3,[[1047,1,1,2,3]]],[45,1,1,3,4,[[1076,1,1,3,4]]],[46,5,4,4,8,[[1088,3,2,4,6],[1089,2,2,6,8]]],[48,1,1,8,9,[[1101,1,1,8,9]]],[59,1,1,9,10,[[1152,1,1,9,10]]]],[25445,25479,27982,28754,29005,29008,29028,29033,29321,30414]]],["fool",[6,5,[[41,1,1,0,1,[[984,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[46,4,3,2,5,[[1088,2,1,2,3],[1089,2,2,3,5]]]],[25479,28754,29005,29028,29033]]],["foolish",[2,2,[[44,1,1,0,1,[[1047,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[27982,30414]]],["fools",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[25445,29008]]],["unwise",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29321]]]]},{"k":"G879","v":[["asleep",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25268]]]]},{"k":"G880","v":[["*",[4,4,[[43,1,1,0,1,[[1025,1,1,0,1]]],[45,2,2,1,3,[[1073,1,1,1,2],[1075,1,1,2,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]]],[27208,28636,28688,30516]]],["dumb",[3,3,[[43,1,1,0,1,[[1025,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[27208,28636,30516]]],["signification",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28688]]]]},{"k":"G881","v":[["Achaz",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23153]]]]},{"k":"G882","v":[["Achaia",[11,11,[[43,3,3,0,3,[[1035,2,2,0,2],[1036,1,1,2,3]]],[44,2,2,3,5,[[1060,1,1,3,4],[1061,1,1,4,5]]],[45,1,1,5,6,[[1077,1,1,5,6]]],[46,3,3,6,9,[[1078,1,1,6,7],[1086,1,1,7,8],[1088,1,1,8,9]]],[51,2,2,9,11,[[1111,2,2,9,11]]]],[27569,27584,27606,28329,28341,28791,28801,28958,28999,29567,29568]]]]},{"k":"G883","v":[["Achaicus",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28793]]]]},{"k":"G884","v":[["unthankful",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[25181,29855]]]]},{"k":"G885","v":[["Achim",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23158]]]]},{"k":"G886","v":[["hands",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[46,1,1,1,2,[[1082,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]]],[24812,28878,29505]]]]},{"k":"G887","v":[["mist",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27373]]]]},{"k":"G888","v":[["unprofitable",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]]],[24038,25661]]]]},{"k":"G889","v":[["unprofitable",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28003]]]]},{"k":"G890","v":[["unprofitable",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29949]]]]},{"k":"G891","v":[["*",[49,49,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,4,4,1,5,[[973,1,1,1,2],[976,1,1,2,3],[989,1,1,3,4],[993,1,1,4,5]]],[43,16,16,5,21,[[1018,1,1,5,6],[1019,1,1,6,7],[1020,1,1,7,8],[1024,1,1,8,9],[1028,1,1,9,10],[1030,2,2,10,12],[1037,3,3,12,15],[1039,2,2,15,17],[1040,1,1,17,18],[1043,1,1,18,19],[1044,1,1,19,20],[1045,1,1,20,21]]],[44,4,4,21,25,[[1046,1,1,21,22],[1050,1,1,22,23],[1053,1,1,23,24],[1056,1,1,24,25]]],[45,3,3,25,28,[[1065,1,1,25,26],[1072,1,1,26,27],[1076,1,1,27,28]]],[46,3,3,28,31,[[1080,1,1,28,29],[1087,2,2,29,31]]],[47,3,3,31,34,[[1093,1,1,31,32],[1094,2,2,32,34]]],[49,2,2,34,36,[[1103,2,2,34,36]]],[57,3,3,36,39,[[1135,1,1,36,37],[1136,1,1,37,38],[1138,1,1,38,39]]],[65,10,10,39,49,[[1168,3,3,39,42],[1173,1,1,42,43],[1178,1,1,43,44],[1180,1,1,44,45],[1181,1,1,45,46],[1183,1,1,46,47],[1184,1,1,47,48],[1186,1,1,48,49]]]],[23995,24913,25076,25678,25850,26925,26978,27017,27134,27312,27368,27373,27630,27632,27637,27708,27726,27735,27845,27888,27914,27943,28060,28138,28234,28444,28626,28743,28855,28984,28985,29121,29133,29150,29366,29367,30008,30026,30055,30727,30742,30743,30813,30902,30946,30954,30992,30998,31041]]],["+",[12,12,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,2,2,1,3,[[1024,1,1,1,2],[1044,1,1,2,3]]],[44,2,2,3,5,[[1046,1,1,3,4],[1056,1,1,4,5]]],[45,2,2,5,7,[[1072,1,1,5,6],[1076,1,1,6,7]]],[47,2,2,7,9,[[1093,1,1,7,8],[1094,1,1,8,9]]],[57,1,1,9,10,[[1135,1,1,9,10]]],[65,2,2,10,12,[[1168,1,1,10,11],[1173,1,1,11,12]]]],[25076,27134,27888,27943,28234,28626,28743,29121,29150,30008,30742,30813]]],["Until",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26925]]],["as",[2,2,[[43,1,1,0,1,[[1045,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]]],[27914,28985]]],["for",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27373]]],["in",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27632]]],["into",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27630]]],["till",[3,3,[[43,1,1,0,1,[[1037,1,1,0,1]]],[65,2,2,1,3,[[1181,1,1,1,2],[1186,1,1,2,3]]]],[27637,30954,31041]]],["to",[2,2,[[43,1,1,0,1,[[1028,1,1,0,1]]],[57,1,1,1,2,[[1136,1,1,1,2]]]],[27312,30026]]],["until",[13,13,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,3,3,1,4,[[973,1,1,1,2],[989,1,1,2,3],[993,1,1,3,4]]],[43,2,2,4,6,[[1020,1,1,4,5],[1040,1,1,5,6]]],[44,2,2,6,8,[[1050,1,1,6,7],[1053,1,1,7,8]]],[46,1,1,8,9,[[1080,1,1,8,9]]],[47,1,1,9,10,[[1094,1,1,9,10]]],[49,2,2,10,12,[[1103,2,2,10,12]]],[65,1,1,12,13,[[1183,1,1,12,13]]]],[23995,24913,25678,25850,27017,27735,28060,28138,28855,29133,29366,29367,30992]]],["unto",[13,13,[[43,5,5,0,5,[[1019,1,1,0,1],[1030,1,1,1,2],[1039,2,2,2,4],[1043,1,1,4,5]]],[45,1,1,5,6,[[1065,1,1,5,6]]],[46,1,1,6,7,[[1087,1,1,6,7]]],[57,1,1,7,8,[[1138,1,1,7,8]]],[65,5,5,8,13,[[1168,2,2,8,10],[1178,1,1,10,11],[1180,1,1,11,12],[1184,1,1,12,13]]]],[26978,27368,27708,27726,27845,28444,28984,30055,30727,30743,30902,30946,30998]]]]},{"k":"G892","v":[["chaff",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23204,25042]]]]},{"k":"G893","v":[["lie",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29894]]]]},{"k":"G894","v":[["*",[2,1,[[65,2,1,0,1,[[1174,2,1,0,1]]]],[30838]]],["+",[1,1,[[65,1,1,0,1,[[1174,1,1,0,1]]]],[30838]]],["Wormwood",[1,1,[[65,1,1,0,1,[[1174,1,1,0,1]]]],[30838]]]]},{"k":"G895","v":[["life",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28685]]]]},{"k":"G896","v":[["Baal",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28213]]]]},{"k":"G897","v":[["*",[12,11,[[39,4,3,0,3,[[929,4,3,0,3]]],[43,1,1,3,4,[[1024,1,1,3,4]]],[59,1,1,4,5,[[1155,1,1,4,5]]],[65,6,6,5,11,[[1180,1,1,5,6],[1182,1,1,6,7],[1183,1,1,7,8],[1184,3,3,8,11]]]],[23155,23156,23161,27159,30478,30934,30973,30980,30995,31003,31014]]],["BABYLON",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30980]]],["Babylon",[11,10,[[39,4,3,0,3,[[929,4,3,0,3]]],[43,1,1,3,4,[[1024,1,1,3,4]]],[59,1,1,4,5,[[1155,1,1,4,5]]],[65,5,5,5,10,[[1180,1,1,5,6],[1182,1,1,6,7],[1184,3,3,7,10]]]],[23155,23156,23161,27159,30478,30934,30973,30995,31003,31014]]]]},{"k":"G898","v":[["degree",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29744]]]]},{"k":"G899","v":[["*",[9,9,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[977,1,1,2,3]]],[44,2,2,3,5,[[1053,1,1,3,4],[1056,1,1,4,5]]],[45,1,1,5,6,[[1063,1,1,5,6]]],[46,1,1,6,7,[[1085,1,1,6,7]]],[48,1,1,7,8,[[1099,1,1,7,8]]],[65,1,1,8,9,[[1168,1,1,8,9]]]],[23544,24328,25111,28155,28242,28404,28934,29269,30741]]],["deep",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]]],[25111,28934]]],["deepness",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23544]]],["depth",[4,4,[[40,1,1,0,1,[[960,1,1,0,1]]],[44,2,2,1,3,[[1053,1,1,1,2],[1056,1,1,2,3]]],[48,1,1,3,4,[[1099,1,1,3,4]]]],[24328,28155,28242,29269]]],["depths",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30741]]],["things",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28404]]]]},{"k":"G900","v":[["deep",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25194]]]]},{"k":"G901","v":[["*",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]],[43,1,1,2,3,[[1037,1,1,2,3]]]],[25992,26167,27635]]],["+",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[25992]]],["deep",[2,2,[[42,1,1,0,1,[[1000,1,1,0,1]]],[43,1,1,1,2,[[1037,1,1,1,2]]]],[26167,27635]]]]},{"k":"G902","v":[["branches",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26593]]]]},{"k":"G903","v":[["Balaam",[3,3,[[60,1,1,0,1,[[1157,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[30515,30683,30731]]]]},{"k":"G904","v":[["Balac",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30731]]]]},{"k":"G905","v":[["*",[4,4,[[41,4,4,0,4,[[982,1,1,0,1],[984,1,1,1,2],[994,2,2,2,4]]]],[25367,25492,25899,25900]]],["bags",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25492]]],["purse",[3,3,[[41,3,3,0,3,[[982,1,1,0,1],[994,2,2,1,3]]]],[25367,25899,25900]]]]},{"k":"G906","v":[["*",[125,107,[[39,36,29,0,29,[[931,1,1,0,1],[932,2,2,1,3],[933,6,4,3,7],[934,1,1,7,8],[935,2,2,8,10],[936,2,2,10,12],[937,3,2,12,14],[938,2,1,14,15],[941,4,4,15,19],[943,1,1,19,20],[945,1,1,20,21],[946,5,3,21,24],[949,1,1,24,25],[953,1,1,25,26],[954,1,1,26,27],[955,3,2,27,29]]],[40,20,17,29,46,[[957,1,1,29,30],[958,1,1,30,31],[960,1,1,31,32],[963,3,3,32,35],[965,4,4,35,39],[967,1,1,39,40],[968,7,4,40,44],[970,1,1,44,45],[971,1,1,45,46]]],[41,18,17,46,63,[[975,1,1,46,47],[976,1,1,47,48],[977,1,1,48,49],[984,3,3,49,52],[985,2,2,52,54],[986,1,1,54,55],[988,1,1,55,56],[993,5,4,56,60],[995,3,3,60,63]]],[42,17,14,63,77,[[999,1,1,63,64],[1001,1,1,64,65],[1004,2,2,65,67],[1008,1,1,67,68],[1009,2,2,68,70],[1011,2,1,70,71],[1014,1,1,71,72],[1015,1,1,72,73],[1016,3,2,73,75],[1017,3,2,75,77]]],[43,5,5,77,82,[[1033,3,3,77,80],[1039,1,1,80,81],[1044,1,1,81,82]]],[58,1,1,82,83,[[1148,1,1,82,83]]],[61,1,1,83,84,[[1162,1,1,83,84]]],[65,27,23,84,107,[[1168,4,4,84,88],[1170,1,1,88,89],[1172,1,1,89,90],[1174,3,3,90,93],[1178,7,5,93,98],[1180,3,2,98,100],[1184,3,2,100,102],[1185,1,1,102,103],[1186,4,4,103,107]]]],[23202,23215,23227,23247,23259,23263,23264,23312,23322,23335,23351,23359,23381,23396,23451,23581,23586,23587,23589,23659,23727,23735,23736,23757,23847,24035,24066,24135,24164,24231,24282,24349,24490,24493,24496,24560,24580,24583,24585,24663,24714,24715,24716,24717,24819,24850,25034,25072,25144,25487,25508,25517,25526,25537,25588,25640,25827,25828,25829,25830,25954,25960,25969,26144,26217,26388,26440,26586,26632,26635,26705,26796,26849,26892,26894,26904,26905,27506,27507,27520,27727,27869,30322,30621,30727,30731,30739,30741,30778,30806,30832,30834,30835,30895,30900,30904,30906,30907,30942,30945,31012,31014,31037,31041,31048,31052,31053]]],["+",[2,2,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[24716,25526]]],["Cast",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26904]]],["arose",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27869]]],["cast",[71,66,[[39,24,20,0,20,[[931,1,1,0,1],[932,1,1,1,2],[933,6,4,2,6],[934,1,1,6,7],[935,2,2,7,9],[941,4,4,9,13],[943,1,1,13,14],[945,1,1,14,15],[946,5,3,15,18],[949,1,1,18,19],[955,1,1,19,20]]],[40,9,9,20,29,[[960,1,1,20,21],[963,1,1,21,22],[965,4,4,22,26],[967,1,1,26,27],[968,2,2,27,29]]],[41,9,9,29,38,[[975,1,1,29,30],[976,1,1,30,31],[984,2,2,31,33],[985,1,1,33,34],[986,1,1,34,35],[995,3,3,35,38]]],[42,8,7,38,45,[[999,1,1,38,39],[1004,2,2,39,41],[1011,2,1,41,42],[1015,1,1,42,43],[1017,2,2,43,45]]],[43,2,2,45,47,[[1033,2,2,45,47]]],[65,19,19,47,66,[[1168,3,3,47,50],[1170,1,1,50,51],[1174,3,3,51,54],[1178,4,4,54,58],[1180,1,1,58,59],[1184,2,2,59,61],[1185,1,1,61,62],[1186,4,4,62,66]]]],[23202,23215,23247,23259,23263,23264,23312,23322,23335,23581,23586,23587,23589,23659,23727,23735,23736,23757,23847,24164,24349,24490,24560,24580,24583,24585,24663,24714,24716,25034,25072,25487,25517,25537,25588,25954,25960,25969,26144,26388,26440,26705,26849,26904,26905,27506,27520,30727,30731,30739,30778,30832,30834,30835,30895,30904,30906,30907,30945,31012,31014,31037,31041,31048,31052,31053]]],["casteth",[2,2,[[61,1,1,0,1,[[1162,1,1,0,1]]],[65,1,1,1,2,[[1172,1,1,1,2]]]],[30621,30806]]],["casting",[5,5,[[39,2,2,0,2,[[932,1,1,0,1],[955,1,1,1,2]]],[40,2,2,2,4,[[957,1,1,2,3],[971,1,1,3,4]]],[41,1,1,4,5,[[993,1,1,4,5]]]],[23227,24164,24231,24850,25827]]],["down",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31014]]],["in",[10,8,[[40,4,3,0,3,[[968,4,3,0,3]]],[41,4,3,3,6,[[993,4,3,3,6]]],[65,2,2,6,8,[[1180,2,2,6,8]]]],[24714,24715,24717,25828,25829,25830,30942,30945]]],["laid",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]]],[23359,24493,25640]]],["lieth",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23351]]],["lying",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23381]]],["out",[3,1,[[65,3,1,0,1,[[1178,3,1,0,1]]]],[30900]]],["poured",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24066]]],["poureth",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26635]]],["put",[11,10,[[39,4,3,0,3,[[937,2,1,0,1],[953,1,1,1,2],[955,1,1,2,3]]],[40,1,1,3,4,[[963,1,1,3,4]]],[42,4,4,4,8,[[1001,1,1,4,5],[1008,1,1,5,6],[1009,1,1,6,7],[1016,1,1,7,8]]],[58,1,1,8,9,[[1148,1,1,8,9]]],[65,1,1,9,10,[[1168,1,1,9,10]]]],[23396,24035,24135,24496,26217,26586,26632,26892,30322,30741]]],["putteth",[2,2,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]]],[24282,25144]]],["send",[3,2,[[39,2,1,0,1,[[938,2,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23451,25508]]],["strike",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24819]]],["threw",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27727]]],["thrust",[3,3,[[42,2,2,0,2,[[1016,2,2,0,2]]],[43,1,1,2,3,[[1033,1,1,2,3]]]],[26892,26894,27507]]],["up",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26796]]]]},{"k":"G907","v":[["*",[80,65,[[39,11,8,0,8,[[931,6,5,0,5],[948,4,2,5,7],[956,1,1,7,8]]],[40,12,9,8,17,[[957,5,4,8,12],[962,1,1,12,13],[963,1,1,13,14],[966,4,2,14,16],[972,1,1,16,17]]],[41,10,8,17,25,[[975,6,4,17,21],[979,2,2,21,23],[983,1,1,23,24],[984,1,1,24,25]]],[42,13,11,25,36,[[997,6,5,25,30],[999,4,3,30,33],[1000,2,2,33,35],[1006,1,1,35,36]]],[43,21,19,36,55,[[1018,2,1,36,37],[1019,2,2,37,39],[1025,5,5,39,44],[1026,1,1,44,45],[1027,2,2,45,47],[1028,2,1,47,48],[1033,2,2,48,50],[1035,1,1,50,51],[1036,3,3,51,54],[1039,1,1,54,55]]],[44,2,1,55,56,[[1051,2,1,55,56]]],[45,10,8,56,64,[[1062,6,5,56,61],[1071,1,1,61,62],[1073,1,1,62,63],[1076,2,1,63,64]]],[47,1,1,64,65,[[1093,1,1,64,65]]]],[23198,23203,23205,23206,23208,23814,23815,24214,24219,24220,24223,24224,24421,24467,24626,24627,24889,25032,25037,25041,25046,25224,25225,25443,25509,26069,26070,26072,26075,26077,26142,26143,26146,26157,26158,26521,26928,26987,26990,27188,27189,27192,27212,27214,27234,27306,27307,27323,27498,27516,27565,27588,27589,27590,27720,28071,28376,28377,28378,28379,28380,28569,28647,28747,29129]]],["+",[2,2,[[42,1,1,0,1,[[1006,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]]],[26521,28379]]],["Baptist",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24421]]],["baptize",[9,7,[[39,2,1,0,1,[[931,2,1,0,1]]],[40,2,2,1,3,[[957,2,2,1,3]]],[41,2,1,3,4,[[975,2,1,3,4]]],[42,2,2,4,6,[[997,2,2,4,6]]],[45,1,1,6,7,[[1062,1,1,6,7]]]],[23203,24219,24223,25041,26070,26077,28380]]],["baptized",[59,50,[[39,8,6,0,6,[[931,4,4,0,4],[948,4,2,4,6]]],[40,8,6,6,12,[[957,3,3,6,9],[966,4,2,9,11],[972,1,1,11,12]]],[41,7,6,12,18,[[975,4,3,12,15],[979,2,2,15,17],[984,1,1,17,18]]],[42,4,4,18,22,[[999,2,2,18,20],[1000,2,2,20,22]]],[43,21,19,22,41,[[1018,2,1,22,23],[1019,2,2,23,25],[1025,5,5,25,30],[1026,1,1,30,31],[1027,2,2,31,33],[1028,2,1,33,34],[1033,2,2,34,36],[1035,1,1,36,37],[1036,3,3,37,40],[1039,1,1,40,41]]],[44,2,1,41,42,[[1051,2,1,41,42]]],[45,8,7,42,49,[[1062,4,4,42,46],[1071,1,1,46,47],[1073,1,1,47,48],[1076,2,1,48,49]]],[47,1,1,49,50,[[1093,1,1,49,50]]]],[23198,23205,23206,23208,23814,23815,24220,24223,24224,24626,24627,24889,25032,25037,25046,25224,25225,25509,26142,26143,26157,26158,26928,26987,26990,27188,27189,27192,27212,27214,27234,27306,27307,27323,27498,27516,27565,27588,27589,27590,27720,28071,28376,28377,28378,28379,28569,28647,28747,29129]]],["baptizest",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26069]]],["baptizeth",[2,2,[[42,2,2,0,2,[[997,1,1,0,1],[999,1,1,1,2]]]],[26077,26146]]],["baptizing",[4,4,[[39,1,1,0,1,[[956,1,1,0,1]]],[42,3,3,1,4,[[997,2,2,1,3],[999,1,1,3,4]]]],[24214,26072,26075,26143]]],["wash",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24467]]],["washed",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25443]]]]},{"k":"G908","v":[["baptism",[22,22,[[39,4,4,0,4,[[931,1,1,0,1],[948,2,2,1,3],[949,1,1,3,4]]],[40,4,4,4,8,[[957,1,1,4,5],[966,2,2,5,7],[967,1,1,7,8]]],[41,4,4,8,12,[[975,1,1,8,9],[979,1,1,9,10],[984,1,1,10,11],[992,1,1,11,12]]],[43,6,6,12,18,[[1018,1,1,12,13],[1027,1,1,13,14],[1030,1,1,14,15],[1035,1,1,15,16],[1036,2,2,16,18]]],[44,1,1,18,19,[[1051,1,1,18,19]]],[48,1,1,19,20,[[1100,1,1,19,20]]],[50,1,1,20,21,[[1108,1,1,20,21]]],[59,1,1,21,22,[[1153,1,1,21,22]]]],[23199,23814,23815,23851,24219,24626,24627,24670,25028,25224,25509,25783,26945,27296,27386,27582,27588,27589,28072,29277,29506,30445]]]]},{"k":"G909","v":[["*",[4,4,[[40,2,2,0,2,[[963,2,2,0,2]]],[57,2,2,2,4,[[1138,1,1,2,3],[1141,1,1,3,4]]]],[24467,24471,30046,30115]]],["baptisms",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30046]]],["washing",[2,2,[[40,2,2,0,2,[[963,2,2,0,2]]]],[24467,24471]]],["washings",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30115]]]]},{"k":"G910","v":[["*",[14,14,[[39,7,7,0,7,[[931,1,1,0,1],[939,2,2,1,3],[942,2,2,3,5],[944,1,1,5,6],[945,1,1,6,7]]],[40,3,3,7,10,[[962,2,2,7,9],[964,1,1,9,10]]],[41,4,4,10,14,[[979,3,3,10,13],[981,1,1,13,14]]]],[23193,23470,23471,23599,23605,23686,23713,24431,24432,24528,25215,25223,25228,25320]]],["+",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23686]]],["Baptist",[12,12,[[39,5,5,0,5,[[931,1,1,0,1],[939,2,2,1,3],[942,1,1,3,4],[945,1,1,4,5]]],[40,3,3,5,8,[[962,2,2,5,7],[964,1,1,7,8]]],[41,4,4,8,12,[[979,3,3,8,11],[981,1,1,11,12]]]],[23193,23470,23471,23599,23713,24431,24432,24528,25215,25223,25228,25320]]],["Baptist's",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23605]]]]},{"k":"G911","v":[["*",[3,3,[[41,1,1,0,1,[[988,1,1,0,1]]],[42,1,1,1,2,[[1009,1,1,1,2]]],[65,1,1,2,3,[[1185,1,1,2,3]]]],[25644,26656,31030]]],["dip",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25644]]],["dipped",[2,2,[[42,1,1,0,1,[[1009,1,1,0,1]]],[65,1,1,1,2,[[1185,1,1,1,2]]]],[26656,31030]]]]},{"k":"G912","v":[["Barabbas",[11,10,[[39,5,5,0,5,[[955,5,5,0,5]]],[40,3,3,5,8,[[971,3,3,5,8]]],[41,1,1,8,9,[[995,1,1,8,9]]],[42,2,1,9,10,[[1014,2,1,9,10]]]],[24145,24146,24149,24150,24155,24833,24837,24841,25953,26825]]]]},{"k":"G913","v":[["Barak",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30204]]]]},{"k":"G914","v":[["Barachias",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23953]]]]},{"k":"G915","v":[["*",[6,5,[[43,2,2,0,2,[[1045,2,2,0,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[45,2,1,3,4,[[1075,2,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]]],[27901,27903,27944,28689,29528]]],["Barbarian",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29528]]],["Barbarians",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27944]]],["barbarian",[2,1,[[45,2,1,0,1,[[1075,2,1,0,1]]]],[28689]]],["barbarians",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27903]]],["people",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27901]]]]},{"k":"G916","v":[["*",[6,6,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[46,2,2,3,5,[[1078,1,1,3,4],[1082,1,1,4,5]]],[53,1,1,5,6,[[1123,1,1,5,6]]]],[24097,24794,25333,28808,28881,29779]]],["burdened",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28881]]],["charged",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29779]]],["heavy",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]]],[24097,24794,25333]]],["pressed",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28808]]]]},{"k":"G917","v":[["+",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]]],[23554,27926]]]]},{"k":"G918","v":[["Bartholomew",[4,4,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[43,1,1,3,4,[[1018,1,1,3,4]]]],[23420,24306,25160,26936]]]]},{"k":"G919","v":[["Barjesus",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27368]]]]},{"k":"G920","v":[["Barjona",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23689]]]]},{"k":"G921","v":[["*",[29,28,[[43,24,23,0,23,[[1021,1,1,0,1],[1026,1,1,1,2],[1028,3,3,2,5],[1029,1,1,5,6],[1030,6,6,6,12],[1031,3,3,12,15],[1032,9,8,15,23]]],[45,1,1,23,24,[[1070,1,1,23,24]]],[47,3,3,24,27,[[1092,3,3,24,27]]],[50,1,1,27,28,[[1110,1,1,27,28]]]],[27058,27243,27329,27332,27337,27362,27363,27364,27369,27405,27408,27412,27426,27428,27434,27444,27454,27464,27467,27477,27478,27479,27481,28546,29082,29090,29094,29552]]],["+",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27426]]],["Barnabas",[28,27,[[43,23,22,0,22,[[1021,1,1,0,1],[1026,1,1,1,2],[1028,3,3,2,5],[1029,1,1,5,6],[1030,6,6,6,12],[1031,2,2,12,14],[1032,9,8,14,22]]],[45,1,1,22,23,[[1070,1,1,22,23]]],[47,3,3,23,26,[[1092,3,3,23,26]]],[50,1,1,26,27,[[1110,1,1,26,27]]]],[27058,27243,27329,27332,27337,27362,27363,27364,27369,27405,27408,27412,27428,27434,27444,27454,27464,27467,27477,27478,27479,27481,28546,29082,29090,29094,29552]]]]},{"k":"G922","v":[["*",[6,6,[[39,1,1,0,1,[[948,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]],[46,1,1,2,3,[[1081,1,1,2,3]]],[47,1,1,3,4,[[1096,1,1,3,4]]],[51,1,1,4,5,[[1112,1,1,4,5]]],[65,1,1,5,6,[[1168,1,1,5,6]]]],[23804,27470,28876,29190,29576,30741]]],["+",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29576]]],["burden",[3,3,[[39,1,1,0,1,[[948,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[23804,27470,30741]]],["burdens",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29190]]],["weight",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28876]]]]},{"k":"G923","v":[["Barsabas",[2,2,[[43,2,2,0,2,[[1018,1,1,0,1],[1032,1,1,1,2]]]],[26946,27464]]]]},{"k":"G924","v":[["Bartimaeus",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24634]]]]},{"k":"G925","v":[["overcharged",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25860]]]]},{"k":"G926","v":[["*",[6,6,[[39,2,2,0,2,[[951,2,2,0,2]]],[43,2,2,2,4,[[1037,1,1,2,3],[1042,1,1,3,4]]],[46,1,1,4,5,[[1087,1,1,4,5]]],[61,1,1,5,6,[[1163,1,1,5,6]]]],[23922,23941,27655,27803,28981,30627]]],["grievous",[3,3,[[43,2,2,0,2,[[1037,1,1,0,1],[1042,1,1,1,2]]],[61,1,1,2,3,[[1163,1,1,2,3]]]],[27655,27803,30627]]],["heavy",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23922]]],["weightier",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23941]]],["weighty",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28981]]]]},{"k":"G927","v":[["precious",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24061]]]]},{"k":"G928","v":[["*",[12,12,[[39,3,3,0,3,[[936,2,2,0,2],[942,1,1,2,3]]],[40,2,2,3,5,[[961,1,1,3,4],[962,1,1,4,5]]],[41,1,1,5,6,[[980,1,1,5,6]]],[60,1,1,6,7,[[1157,1,1,6,7]]],[65,5,5,7,12,[[1175,1,1,7,8],[1177,1,1,8,9],[1178,1,1,9,10],[1180,1,1,10,11],[1186,1,1,11,12]]]],[23351,23374,23621,24371,24455,25273,30508,30845,30882,30893,30936,31048]]],["pained",[1,1,[[65,1,1,0,1,[[1178,1,1,0,1]]]],[30893]]],["toiling",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24455]]],["torment",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23374,24371,25273]]],["tormented",[5,5,[[39,1,1,0,1,[[936,1,1,0,1]]],[65,4,4,1,5,[[1175,1,1,1,2],[1177,1,1,2,3],[1180,1,1,3,4],[1186,1,1,4,5]]]],[23351,30845,30882,30936,31048]]],["tossed",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23621]]],["vexed",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30508]]]]},{"k":"G929","v":[["torment",[6,5,[[65,6,5,0,5,[[1175,2,1,0,1],[1180,1,1,1,2],[1184,3,3,2,5]]]],[30845,30937,31000,31003,31008]]]]},{"k":"G930","v":[["tormentors",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23761]]]]},{"k":"G931","v":[["*",[3,3,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,2,2,1,3,[[988,2,2,1,3]]]],[23233,25643,25648]]],["torment",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25648]]],["torments",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]]],[23233,25643]]]]},{"k":"G932","v":[["*",[162,154,[[39,56,54,0,54,[[931,1,1,0,1],[932,3,3,1,4],[933,5,4,4,8],[934,3,3,8,11],[935,1,1,11,12],[936,2,2,12,14],[937,1,1,14,15],[938,1,1,15,16],[939,2,2,16,18],[940,3,3,18,21],[941,12,12,21,33],[944,2,2,33,35],[946,4,4,35,39],[947,4,4,39,43],[948,2,2,43,45],[949,2,2,45,47],[950,1,1,47,48],[951,1,1,48,49],[952,3,2,49,51],[953,2,2,51,53],[954,1,1,53,54]]],[40,21,19,54,73,[[957,2,2,54,56],[959,2,1,56,57],[960,3,3,57,60],[962,1,1,60,61],[965,2,2,61,63],[966,5,5,63,68],[967,1,1,68,69],[968,1,1,69,70],[969,2,1,70,71],[970,1,1,71,72],[971,1,1,72,73]]],[41,46,44,73,117,[[973,1,1,73,74],[976,2,2,74,76],[978,1,1,76,77],[979,1,1,77,78],[980,2,2,78,80],[981,5,5,80,85],[982,2,2,85,87],[983,4,4,87,91],[984,2,2,91,93],[985,4,4,93,97],[986,1,1,97,98],[988,1,1,98,99],[989,3,2,99,101],[990,5,5,101,106],[991,3,3,106,109],[993,3,2,109,111],[994,4,4,111,115],[995,2,2,115,117]]],[42,5,3,117,120,[[999,2,2,117,119],[1014,3,1,119,120]]],[43,8,8,120,128,[[1018,2,2,120,122],[1025,1,1,122,123],[1031,1,1,123,124],[1036,1,1,124,125],[1037,1,1,125,126],[1045,2,2,126,128]]],[44,1,1,128,129,[[1059,1,1,128,129]]],[45,5,5,129,134,[[1065,1,1,129,130],[1067,2,2,130,132],[1076,2,2,132,134]]],[47,1,1,134,135,[[1095,1,1,134,135]]],[48,1,1,135,136,[[1101,1,1,135,136]]],[50,2,2,136,138,[[1107,1,1,136,137],[1110,1,1,137,138]]],[51,1,1,138,139,[[1112,1,1,138,139]]],[52,1,1,139,140,[[1116,1,1,139,140]]],[54,2,2,140,142,[[1128,2,2,140,142]]],[57,3,3,142,145,[[1133,1,1,142,143],[1143,1,1,143,144],[1144,1,1,144,145]]],[58,1,1,145,146,[[1147,1,1,145,146]]],[60,1,1,146,147,[[1156,1,1,146,147]]],[65,7,7,147,154,[[1167,1,1,147,148],[1177,1,1,148,149],[1178,1,1,149,150],[1182,1,1,150,151],[1183,3,3,151,154]]]],[23194,23217,23226,23232,23237,23244,23253,23254,23292,23295,23315,23337,23356,23357,23414,23424,23470,23471,23514,23515,23517,23550,23558,23563,23570,23572,23577,23580,23582,23583,23584,23586,23591,23691,23700,23728,23730,23731,23750,23774,23776,23785,23786,23793,23813,23857,23869,23874,23931,23964,23971,24009,24042,24083,24229,24230,24312,24334,24349,24353,24430,24539,24585,24602,24603,24611,24612,24613,24650,24707,24725,24779,24869,24926,25068,25106,25166,25223,25246,25255,25303,25312,25328,25361,25363,25372,25374,25407,25422,25423,25425,25490,25491,25536,25538,25546,25547,25568,25636,25671,25672,25704,25705,25712,25713,25717,25742,25743,25746,25836,25857,25880,25882,25893,25894,25977,25986,26123,26125,26821,26926,26929,27188,27436,27593,27651,27922,27930,28297,28453,28476,28477,28742,28768,29183,29309,29478,29553,29582,29654,29871,29888,29971,30205,30240,30298,30490,30706,30887,30901,30964,30987,30992,30993]]],["+",[5,5,[[39,2,2,0,2,[[947,1,1,0,1],[949,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[65,2,2,3,5,[[1183,2,2,3,5]]]],[23774,23857,25717,30987,30993]]],["kingdom",[153,145,[[39,53,51,0,51,[[931,1,1,0,1],[932,2,2,1,3],[933,5,4,3,7],[934,3,3,7,10],[935,1,1,10,11],[936,2,2,11,13],[937,1,1,13,14],[938,1,1,14,15],[939,2,2,15,17],[940,3,3,17,20],[941,12,12,20,32],[944,2,2,32,34],[946,4,4,34,38],[947,3,3,38,41],[948,2,2,41,43],[949,1,1,43,44],[950,1,1,44,45],[951,1,1,45,46],[952,3,2,46,48],[953,2,2,48,50],[954,1,1,50,51]]],[40,21,19,51,70,[[957,2,2,51,53],[959,2,1,53,54],[960,3,3,54,57],[962,1,1,57,58],[965,2,2,58,60],[966,5,5,60,65],[967,1,1,65,66],[968,1,1,66,67],[969,2,1,67,68],[970,1,1,68,69],[971,1,1,69,70]]],[41,44,42,70,112,[[973,1,1,70,71],[976,1,1,71,72],[978,1,1,72,73],[979,1,1,73,74],[980,2,2,74,76],[981,5,5,76,81],[982,2,2,81,83],[983,4,4,83,87],[984,2,2,87,89],[985,4,4,89,93],[986,1,1,93,94],[988,1,1,94,95],[989,3,2,95,97],[990,4,4,97,101],[991,3,3,101,104],[993,3,2,104,106],[994,4,4,106,110],[995,2,2,110,112]]],[42,5,3,112,115,[[999,2,2,112,114],[1014,3,1,114,115]]],[43,8,8,115,123,[[1018,2,2,115,117],[1025,1,1,117,118],[1031,1,1,118,119],[1036,1,1,119,120],[1037,1,1,120,121],[1045,2,2,121,123]]],[44,1,1,123,124,[[1059,1,1,123,124]]],[45,5,5,124,129,[[1065,1,1,124,125],[1067,2,2,125,127],[1076,2,2,127,129]]],[47,1,1,129,130,[[1095,1,1,129,130]]],[48,1,1,130,131,[[1101,1,1,130,131]]],[50,2,2,131,133,[[1107,1,1,131,132],[1110,1,1,132,133]]],[51,1,1,133,134,[[1112,1,1,133,134]]],[52,1,1,134,135,[[1116,1,1,134,135]]],[54,2,2,135,137,[[1128,2,2,135,137]]],[57,2,2,137,139,[[1133,1,1,137,138],[1144,1,1,138,139]]],[58,1,1,139,140,[[1147,1,1,139,140]]],[60,1,1,140,141,[[1156,1,1,140,141]]],[65,4,4,141,145,[[1167,1,1,141,142],[1178,1,1,142,143],[1182,1,1,143,144],[1183,1,1,144,145]]]],[23194,23226,23232,23237,23244,23253,23254,23292,23295,23315,23337,23356,23357,23414,23424,23470,23471,23514,23515,23517,23550,23558,23563,23570,23572,23577,23580,23582,23583,23584,23586,23591,23691,23700,23728,23730,23731,23750,23776,23785,23786,23793,23813,23869,23874,23931,23964,23971,24009,24042,24083,24229,24230,24312,24334,24349,24353,24430,24539,24585,24602,24603,24611,24612,24613,24650,24707,24725,24779,24869,24926,25106,25166,25223,25246,25255,25303,25312,25328,25361,25363,25372,25374,25407,25422,25423,25425,25490,25491,25536,25538,25546,25547,25568,25636,25671,25672,25704,25705,25712,25713,25742,25743,25746,25836,25857,25880,25882,25893,25894,25977,25986,26123,26125,26821,26926,26929,27188,27436,27593,27651,27922,27930,28297,28453,28476,28477,28742,28768,29183,29309,29478,29553,29582,29654,29871,29888,29971,30240,30298,30490,30706,30901,30964,30992]]],["kingdoms",[4,4,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]],[65,1,1,3,4,[[1177,1,1,3,4]]]],[23217,25068,30205,30887]]]]},{"k":"G933","v":[["courts",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25220]]]]},{"k":"G934","v":[["royal",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30408]]]]},{"k":"G935","v":[["*",[118,107,[[39,23,22,0,22,[[929,2,1,0,1],[930,4,4,1,5],[933,1,1,5,6],[938,1,1,6,7],[939,1,1,7,8],[942,1,1,8,9],[945,1,1,9,10],[946,1,1,10,11],[949,1,1,11,12],[950,4,4,12,16],[953,2,2,16,18],[955,4,4,18,22]]],[40,12,12,22,34,[[962,5,5,22,27],[969,1,1,27,28],[971,6,6,28,34]]],[41,11,10,34,44,[[973,1,1,34,35],[982,1,1,35,36],[986,2,1,36,37],[991,1,1,37,38],[993,1,1,38,39],[994,1,1,39,40],[995,4,4,40,44]]],[42,16,13,44,57,[[997,1,1,44,45],[1002,1,1,45,46],[1008,2,2,46,48],[1014,4,3,48,51],[1015,8,6,51,57]]],[43,20,20,57,77,[[1021,1,1,57,58],[1024,2,2,58,60],[1026,1,1,60,61],[1029,2,2,61,63],[1030,2,2,63,65],[1034,1,1,65,66],[1042,4,4,66,70],[1043,7,7,70,77]]],[46,1,1,77,78,[[1088,1,1,77,78]]],[53,3,3,78,81,[[1119,1,1,78,79],[1120,1,1,79,80],[1124,1,1,80,81]]],[57,7,4,81,85,[[1139,5,2,81,83],[1143,2,2,83,85]]],[59,2,2,85,87,[[1152,2,2,85,87]]],[65,23,20,87,107,[[1167,2,2,87,89],[1171,1,1,89,90],[1172,1,1,90,91],[1175,1,1,91,92],[1176,1,1,92,93],[1181,1,1,93,94],[1182,2,2,94,96],[1183,7,5,96,101],[1184,2,2,101,103],[1185,4,3,103,106],[1187,1,1,106,107]]]],[23150,23170,23171,23172,23178,23269,23435,23467,23606,23725,23750,23831,23874,23879,23883,23885,24042,24048,24140,24158,24166,24171,24421,24429,24432,24433,24434,24726,24828,24835,24838,24844,24852,24858,24898,25387,25584,25769,25838,25889,25937,25938,25972,25973,26093,26272,26593,26595,26818,26822,26824,26828,26837,26839,26840,26844,26846,27048,27126,27134,27231,27338,27357,27383,27384,27530,27809,27810,27820,27822,27825,27830,27836,27842,27849,27850,27853,29021,29713,29718,29803,30065,30066,30195,30199,30412,30416,30702,30703,30789,30808,30851,30872,30949,30966,30968,30977,30985,30987,30989,30993,30996,31002,31033,31035,31036,31077]]],["+",[4,4,[[39,2,2,0,2,[[946,1,1,0,1],[950,1,1,1,2]]],[43,2,2,2,4,[[1029,1,1,2,3],[1030,1,1,3,4]]]],[23750,23874,27357,27384]]],["KING",[5,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[65,1,1,4,5,[[1185,1,1,4,5]]]],[24166,24852,25973,26844,31033]]],["KINGS",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31033]]],["King",[35,32,[[39,8,8,0,8,[[930,1,1,0,1],[933,1,1,1,2],[949,1,1,2,3],[953,2,2,3,5],[955,3,3,5,8]]],[40,5,5,8,13,[[971,5,5,8,13]]],[41,3,3,13,16,[[991,1,1,13,14],[995,2,2,14,16]]],[42,10,9,16,25,[[997,1,1,16,17],[1008,2,2,17,19],[1014,2,2,19,21],[1015,5,4,21,25]]],[43,2,2,25,27,[[1042,1,1,25,26],[1043,1,1,26,27]]],[53,2,2,27,29,[[1119,1,1,27,28],[1124,1,1,28,29]]],[57,3,1,29,30,[[1139,3,1,29,30]]],[65,2,2,30,32,[[1181,1,1,30,31],[1183,1,1,31,32]]]],[23171,23269,23831,24042,24048,24140,24158,24171,24828,24835,24838,24844,24858,25769,25937,25938,26093,26593,26595,26818,26824,26828,26839,26840,26846,27820,27850,29713,29803,30066,30949,30989]]],["king",[43,40,[[39,9,8,0,8,[[929,2,1,0,1],[930,3,3,1,4],[942,1,1,4,5],[950,3,3,5,8]]],[40,5,5,8,13,[[962,5,5,8,13]]],[41,4,3,13,16,[[973,1,1,13,14],[986,2,1,14,15],[995,1,1,15,16]]],[42,5,4,16,20,[[1002,1,1,16,17],[1014,2,1,17,18],[1015,2,2,18,20]]],[43,14,14,20,34,[[1024,2,2,20,22],[1029,1,1,22,23],[1030,1,1,23,24],[1034,1,1,24,25],[1042,3,3,25,28],[1043,6,6,28,34]]],[46,1,1,34,35,[[1088,1,1,34,35]]],[57,2,2,35,37,[[1139,1,1,35,36],[1143,1,1,36,37]]],[59,2,2,37,39,[[1152,2,2,37,39]]],[65,1,1,39,40,[[1175,1,1,39,40]]]],[23150,23170,23172,23178,23606,23879,23883,23885,24421,24429,24432,24433,24434,24898,25584,25972,26272,26822,26837,26840,27126,27134,27338,27383,27530,27809,27810,27822,27825,27830,27836,27842,27849,27853,29021,30065,30199,30412,30416,30851]]],["king's",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30195]]],["kings",[28,27,[[39,2,2,0,2,[[938,1,1,0,1],[945,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,3,3,3,6,[[982,1,1,3,4],[993,1,1,4,5],[994,1,1,5,6]]],[43,2,2,6,8,[[1021,1,1,6,7],[1026,1,1,7,8]]],[53,1,1,8,9,[[1120,1,1,8,9]]],[57,1,1,9,10,[[1139,1,1,9,10]]],[65,18,17,10,27,[[1167,2,2,10,12],[1171,1,1,12,13],[1172,1,1,13,14],[1176,1,1,14,15],[1182,2,2,15,17],[1183,6,5,17,22],[1184,2,2,22,24],[1185,2,2,24,26],[1187,1,1,26,27]]]],[23435,23725,24726,25387,25838,25889,27048,27231,29718,30065,30702,30703,30789,30808,30872,30966,30968,30977,30985,30987,30989,30993,30996,31002,31035,31036,31077]]],["kings'",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23467]]]]},{"k":"G936","v":[["*",[21,18,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,3,3,1,4,[[973,1,1,1,2],[991,2,2,2,4]]],[44,6,4,4,8,[[1050,5,3,4,7],[1051,1,1,7,8]]],[45,3,2,8,10,[[1065,2,1,8,9],[1076,1,1,9,10]]],[53,1,1,10,11,[[1124,1,1,10,11]]],[65,7,7,11,18,[[1171,1,1,11,12],[1177,2,2,12,14],[1185,1,1,14,15],[1186,2,2,15,17],[1188,1,1,17,18]]]],[23191,24926,25745,25758,28061,28064,28068,28080,28441,28743,29803,30789,30887,30889,31023,31042,31044,31085]]],["kings",[2,2,[[45,1,1,0,1,[[1065,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[28441,29803]]],["reign",[13,13,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,3,3,1,4,[[973,1,1,1,2],[991,2,2,2,4]]],[44,3,3,4,7,[[1050,2,2,4,6],[1051,1,1,6,7]]],[45,2,2,7,9,[[1065,1,1,7,8],[1076,1,1,8,9]]],[65,4,4,9,13,[[1171,1,1,9,10],[1177,1,1,10,11],[1186,1,1,11,12],[1188,1,1,12,13]]]],[23191,24926,25745,25758,28064,28068,28080,28441,28743,30789,30887,31044,31085]]],["reigned",[5,5,[[44,3,3,0,3,[[1050,3,3,0,3]]],[65,2,2,3,5,[[1177,1,1,3,4],[1186,1,1,4,5]]]],[28061,28064,28068,30889,31042]]],["reigneth",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31023]]]]},{"k":"G937","v":[["*",[5,5,[[42,2,2,0,2,[[1000,2,2,0,2]]],[43,2,2,2,4,[[1029,2,2,2,4]]],[58,1,1,4,5,[[1147,1,1,4,5]]]],[26202,26205,27357,27358,30301]]],["king's",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27357]]],["nobleman",[2,2,[[42,2,2,0,2,[[1000,2,2,0,2]]]],[26202,26205]]],["royal",[2,2,[[43,1,1,0,1,[[1029,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[27358,30301]]]]},{"k":"G938","v":[["queen",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[43,1,1,2,3,[[1025,1,1,2,3]]],[65,1,1,3,4,[[1184,1,1,3,4]]]],[23531,25436,27203,31000]]]]},{"k":"G939","v":[["feet",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27003]]]]},{"k":"G940","v":[["bewitched",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29103]]]]},{"k":"G941","v":[["*",[27,27,[[39,3,3,0,3,[[931,1,1,0,1],[936,1,1,1,2],[948,1,1,2,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[41,5,5,4,9,[[979,1,1,4,5],[982,1,1,5,6],[983,1,1,6,7],[986,1,1,7,8],[994,1,1,8,9]]],[42,5,5,9,14,[[1006,1,1,9,10],[1008,1,1,10,11],[1012,1,1,11,12],[1015,1,1,12,13],[1016,1,1,13,14]]],[43,4,4,14,18,[[1020,1,1,14,15],[1026,1,1,15,16],[1032,1,1,16,17],[1038,1,1,17,18]]],[44,2,2,18,20,[[1056,1,1,18,19],[1060,1,1,19,20]]],[47,4,4,20,24,[[1095,1,1,20,21],[1096,3,3,21,24]]],[65,3,3,24,27,[[1168,2,2,24,26],[1183,1,1,26,27]]]],[23203,23362,23804,24767,25209,25367,25432,25580,25874,26512,26586,26738,26842,26882,26998,27231,27452,27699,28227,28304,29172,29190,29193,29205,30719,30720,30982]]],["Bear",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29190]]],["Carry",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25367]]],["bare",[4,4,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,2,2,1,3,[[979,1,1,1,2],[983,1,1,2,3]]],[42,1,1,3,4,[[1008,1,1,3,4]]]],[23362,25209,25432,26586]]],["bear",[10,10,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]],[42,1,1,2,3,[[1012,1,1,2,3]]],[43,2,2,3,5,[[1026,1,1,3,4],[1032,1,1,4,5]]],[44,1,1,5,6,[[1060,1,1,5,6]]],[47,3,3,6,9,[[1095,1,1,6,7],[1096,2,2,7,9]]],[65,1,1,9,10,[[1168,1,1,9,10]]]],[23203,25580,26738,27231,27452,28304,29172,29193,29205,30719]]],["bearest",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28227]]],["bearing",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]]],[24767,25874,26842]]],["borne",[4,4,[[39,1,1,0,1,[[948,1,1,0,1]]],[42,1,1,1,2,[[1016,1,1,1,2]]],[43,1,1,2,3,[[1038,1,1,2,3]]],[65,1,1,3,4,[[1168,1,1,3,4]]]],[23804,26882,27699,30720]]],["carried",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[26998]]],["carrieth",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30982]]],["up",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26512]]]]},{"k":"G942","v":[["bush",[5,5,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,2,2,1,3,[[978,1,1,1,2],[992,1,1,2,3]]],[43,2,2,3,5,[[1024,2,2,3,5]]]],[24699,25190,25816,27146,27151]]]]},{"k":"G943","v":[["measures",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25626]]]]},{"k":"G944","v":[["frogs",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30967]]]]},{"k":"G945","v":[["+",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23289]]]]},{"k":"G946","v":[["*",[6,6,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[65,3,3,3,6,[[1183,2,2,3,5],[1187,1,1,5,6]]]],[23972,24731,25635,30979,30980,31080]]],["ABOMINATIONS",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30980]]],["abomination",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[65,1,1,3,4,[[1187,1,1,3,4]]]],[23972,24731,25635,31080]]],["abominations",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30979]]]]},{"k":"G947","v":[["abominable",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29908]]]]},{"k":"G948","v":[["*",[2,2,[[44,1,1,0,1,[[1047,1,1,0,1]]],[65,1,1,1,2,[[1187,1,1,1,2]]]],[27984,31061]]],["abhorrest",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27984]]],["abominable",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31061]]]]},{"k":"G949","v":[["*",[9,9,[[44,1,1,0,1,[[1049,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]],[57,5,5,2,7,[[1134,1,1,2,3],[1135,2,2,3,5],[1138,1,1,5,6],[1141,1,1,6,7]]],[60,2,2,7,9,[[1156,2,2,7,9]]]],[28038,28807,29979,30001,30009,30063,30122,30489,30498]]],["firm",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30001]]],["force",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30122]]],["stedfast",[4,4,[[46,1,1,0,1,[[1078,1,1,0,1]]],[57,3,3,1,4,[[1134,1,1,1,2],[1135,1,1,2,3],[1138,1,1,3,4]]]],[28807,29979,30009,30063]]],["sure",[3,3,[[44,1,1,0,1,[[1049,1,1,0,1]]],[60,2,2,1,3,[[1156,2,2,1,3]]]],[28038,30489,30498]]]]},{"k":"G950","v":[["*",[8,8,[[40,1,1,0,1,[[972,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[45,2,2,2,4,[[1062,2,2,2,4]]],[46,1,1,4,5,[[1078,1,1,4,5]]],[50,1,1,5,6,[[1108,1,1,5,6]]],[57,2,2,6,8,[[1134,1,1,6,7],[1145,1,1,7,8]]]],[24893,28311,28369,28371,28821,29501,29980,30250]]],["confirm",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]]],[28311,28371]]],["confirmed",[2,2,[[45,1,1,0,1,[[1062,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]]],[28369,29980]]],["confirming",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24893]]],["established",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30250]]],["stablished",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29501]]],["stablisheth",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28821]]]]},{"k":"G951","v":[["confirmation",[2,2,[[49,1,1,0,1,[[1103,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[29368,30060]]]]},{"k":"G952","v":[["*",[5,5,[[53,3,3,0,3,[[1119,1,1,0,1],[1122,1,1,1,2],[1124,1,1,2,3]]],[54,1,1,3,4,[[1126,1,1,3,4]]],[57,1,1,4,5,[[1144,1,1,4,5]]]],[29705,29754,29808,29843,30228]]],["person",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30228]]],["profane",[4,4,[[53,3,3,0,3,[[1119,1,1,0,1],[1122,1,1,1,2],[1124,1,1,2,3]]],[54,1,1,3,4,[[1126,1,1,3,4]]]],[29705,29754,29808,29843]]]]},{"k":"G953","v":[["profane",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]]],[23494,27775]]]]},{"k":"G954","v":[["Beelzebub",[7,7,[[39,3,3,0,3,[[938,1,1,0,1],[940,2,2,1,3]]],[40,1,1,3,4,[[959,1,1,3,4]]],[41,3,3,4,7,[[983,3,3,4,7]]]],[23442,23513,23516,24310,25420,25423,25424]]]]},{"k":"G955","v":[["Belial",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28913]]]]},{"k":"G956","v":[["darts",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29353]]]]},{"k":"G957","v":[["well",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29827]]]]},{"k":"G958","v":[["Benjamin",[4,4,[[43,1,1,0,1,[[1030,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]],[65,1,1,3,4,[[1173,1,1,3,4]]]],[27383,28210,29426,30818]]]]},{"k":"G959","v":[["Bernice",[3,3,[[43,3,3,0,3,[[1042,2,2,0,2],[1043,1,1,2,3]]]],[27809,27819,27853]]]]},{"k":"G960","v":[["Berea",[2,2,[[43,2,2,0,2,[[1034,2,2,0,2]]]],[27533,27536]]]]},{"k":"G961","v":[["Berea",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27630]]]]},{"k":"G962","v":[["Bethabara",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26072]]]]},{"k":"G963","v":[["Bethany",[11,11,[[39,2,2,0,2,[[949,1,1,0,1],[954,1,1,1,2]]],[40,4,4,2,6,[[967,3,3,2,5],[970,1,1,5,6]]],[41,2,2,6,8,[[991,1,1,6,7],[996,1,1,7,8]]],[42,3,3,8,11,[[1007,2,2,8,10],[1008,1,1,10,11]]]],[23843,24060,24641,24651,24652,24757,25760,26041,26524,26541,26581]]]]},{"k":"G964","v":[["Bethesda",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26212]]]]},{"k":"G965","v":[["Bethlehem",[8,8,[[39,5,5,0,5,[[930,5,5,0,5]]],[41,2,2,5,7,[[974,2,2,5,7]]],[42,1,1,7,8,[[1003,1,1,7,8]]]],[23170,23174,23175,23177,23185,24977,24988,26370]]]]},{"k":"G966","v":[["Bethsaida",[7,7,[[39,1,1,0,1,[[939,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[964,1,1,2,3]]],[41,2,2,3,5,[[981,1,1,3,4],[982,1,1,4,5]]],[42,2,2,5,7,[[997,1,1,5,6],[1008,1,1,6,7]]]],[23480,24452,24522,25311,25376,26088,26601]]]]},{"k":"G967","v":[["Bethphage",[3,3,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,1,1,2,3,[[991,1,1,2,3]]]],[23827,24641,25760]]]]},{"k":"G968","v":[["*",[12,12,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]],[43,8,8,2,10,[[1024,1,1,2,3],[1029,1,1,3,4],[1035,3,3,4,7],[1042,3,3,7,10]]],[44,1,1,10,11,[[1059,1,1,10,11]]],[46,1,1,11,12,[[1082,1,1,11,12]]]],[24148,26838,27121,27358,27569,27573,27574,27802,27806,27813,28290,28887]]],["+",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27121]]],["seat",[10,10,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]],[43,6,6,2,8,[[1035,3,3,2,5],[1042,3,3,5,8]]],[44,1,1,8,9,[[1059,1,1,8,9]]],[46,1,1,9,10,[[1082,1,1,9,10]]]],[24148,26838,27569,27573,27574,27802,27806,27813,28290,28887]]],["throne",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27358]]]]},{"k":"G969","v":[["beryl",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31073]]]]},{"k":"G970","v":[["violence",[4,4,[[43,4,4,0,4,[[1022,1,1,0,1],[1038,1,1,1,2],[1041,1,1,2,3],[1044,1,1,3,4]]]],[27085,27699,27776,27896]]]]},{"k":"G971","v":[["*",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]]],[23471,25636]]],["presseth",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25636]]],["violence",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23471]]]]},{"k":"G972","v":[["mighty",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26951]]]]},{"k":"G973","v":[["violent",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23471]]]]},{"k":"G974","v":[["book",[4,4,[[65,4,4,0,4,[[1176,4,4,0,4]]]],[30863,30869,30870,30871]]]]},{"k":"G975","v":[["*",[32,28,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,3,2,2,4,[[976,3,2,2,4]]],[42,2,2,4,6,[[1016,1,1,4,5],[1017,1,1,5,6]]],[47,1,1,6,7,[[1093,1,1,6,7]]],[54,1,1,7,8,[[1128,1,1,7,8]]],[57,2,2,8,10,[[1141,1,1,8,9],[1142,1,1,9,10]]],[65,21,18,10,28,[[1167,1,1,10,11],[1171,8,8,11,19],[1172,1,1,19,20],[1183,1,1,20,21],[1186,3,1,21,22],[1187,1,1,22,23],[1188,6,5,23,28]]]],[23769,24592,25080,25083,26897,26923,29112,29883,30124,30140,30708,30780,30781,30782,30783,30784,30786,30787,30788,30807,30983,31050,31080,31087,31089,31090,31098,31099]]],["bill",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24592]]],["book",[25,23,[[41,3,2,0,2,[[976,3,2,0,2]]],[42,1,1,2,3,[[1016,1,1,2,3]]],[47,1,1,3,4,[[1093,1,1,3,4]]],[57,2,2,4,6,[[1141,1,1,4,5],[1142,1,1,5,6]]],[65,18,17,6,23,[[1167,1,1,6,7],[1171,8,8,7,15],[1183,1,1,15,16],[1186,1,1,16,17],[1187,1,1,17,18],[1188,6,5,18,23]]]],[25080,25083,26897,29112,30124,30140,30708,30780,30781,30782,30783,30784,30786,30787,30788,30983,31050,31080,31087,31089,31090,31098,31099]]],["books",[4,3,[[42,1,1,0,1,[[1017,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]],[65,2,1,2,3,[[1186,2,1,2,3]]]],[26923,29883,31050]]],["scroll",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30807]]],["writing",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23769]]]]},{"k":"G976","v":[["*",[13,12,[[39,1,1,0,1,[[929,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,2,2,4,[[975,1,1,2,3],[992,1,1,3,4]]],[43,3,3,4,7,[[1018,1,1,4,5],[1024,1,1,5,6],[1036,1,1,6,7]]],[49,1,1,7,8,[[1106,1,1,7,8]]],[65,5,4,8,12,[[1169,1,1,8,9],[1179,1,1,9,10],[1186,1,1,10,11],[1188,2,1,11,12]]]],[23145,24699,25029,25821,26943,27158,27604,29445,30751,30916,31053,31099]]],["+",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27604]]],["book",[12,11,[[39,1,1,0,1,[[929,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,2,2,4,[[975,1,1,2,3],[992,1,1,3,4]]],[43,2,2,4,6,[[1018,1,1,4,5],[1024,1,1,5,6]]],[49,1,1,6,7,[[1106,1,1,6,7]]],[65,5,4,7,11,[[1169,1,1,7,8],[1179,1,1,8,9],[1186,1,1,9,10],[1188,2,1,10,11]]]],[23145,24699,25029,25821,26943,27158,29445,30751,30916,31053,31099]]]]},{"k":"G977","v":[["eaten",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26270]]]]},{"k":"G978","v":[["Bithynia",[2,2,[[43,1,1,0,1,[[1033,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[27490,30375]]]]},{"k":"G979","v":[["*",[11,11,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,5,5,1,6,[[980,2,2,1,3],[987,2,2,3,5],[993,1,1,5,6]]],[53,1,1,6,7,[[1120,1,1,6,7]]],[54,1,1,7,8,[[1126,1,1,7,8]]],[59,1,1,8,9,[[1154,1,1,8,9]]],[61,2,2,9,11,[[1160,1,1,9,10],[1161,1,1,10,11]]]],[24717,25259,25288,25600,25618,25830,29718,29831,30449,30566,30596]]],["good",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30596]]],["life",[5,5,[[41,1,1,0,1,[[980,1,1,0,1]]],[53,1,1,1,2,[[1120,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]],[61,1,1,4,5,[[1160,1,1,4,5]]]],[25259,29718,29831,30449,30566]]],["living",[5,5,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,4,4,1,5,[[980,1,1,1,2],[987,2,2,2,4],[993,1,1,4,5]]]],[24717,25288,25600,25618,25830]]]]},{"k":"G980","v":[["live",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30448]]]]},{"k":"G981","v":[["+",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27827]]]]},{"k":"G982","v":[["life",[3,3,[[41,1,1,0,1,[[993,1,1,0,1]]],[45,2,2,1,3,[[1067,2,2,1,3]]]],[25860,28470,28471]]]]},{"k":"G983","v":[["hurtful",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29797]]]]},{"k":"G984","v":[["hurt",[2,2,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]]],[24891,25098]]]]},{"k":"G985","v":[["*",[4,4,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]]],[23565,24350,30109,30372]]],["budded",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30109]]],["forth",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30372]]],["spring",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24350]]],["up",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23565]]]]},{"k":"G986","v":[["+",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27357]]]]},{"k":"G987","v":[["*",[35,35,[[39,3,3,0,3,[[937,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[40,3,3,3,6,[[959,2,2,3,5],[971,1,1,5,6]]],[41,3,3,6,9,[[984,1,1,6,7],[994,1,1,7,8],[995,1,1,8,9]]],[42,1,1,9,10,[[1006,1,1,9,10]]],[43,4,4,10,14,[[1030,1,1,10,11],[1035,1,1,11,12],[1036,1,1,12,13],[1043,1,1,13,14]]],[44,3,3,14,17,[[1047,1,1,14,15],[1048,1,1,15,16],[1059,1,1,16,17]]],[45,2,2,17,19,[[1065,1,1,17,18],[1071,1,1,18,19]]],[53,2,2,19,21,[[1119,1,1,19,20],[1124,1,1,20,21]]],[55,2,2,21,23,[[1130,1,1,21,22],[1131,1,1,22,23]]],[58,1,1,23,24,[[1147,1,1,23,24]]],[59,2,2,24,26,[[1154,2,2,24,26]]],[60,3,3,26,29,[[1157,3,3,26,29]]],[64,2,2,29,31,[[1166,2,2,29,31]]],[65,4,4,31,35,[[1179,1,1,31,32],[1182,3,3,32,35]]]],[23382,24119,24168,24316,24317,24855,25469,25929,25974,26517,27407,27563,27622,27834,27986,27999,28296,28446,28597,29716,29789,29913,29925,30300,30450,30460,30502,30510,30512,30680,30682,30914,30963,30965,30975]]],["blaspheme",[6,6,[[40,2,2,0,2,[[959,2,2,0,2]]],[43,1,1,2,3,[[1043,1,1,2,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]],[58,1,1,4,5,[[1147,1,1,4,5]]],[65,1,1,5,6,[[1179,1,1,5,6]]]],[24316,24317,27834,29716,30300,30914]]],["blasphemed",[7,7,[[43,1,1,0,1,[[1035,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]],[55,1,1,3,4,[[1130,1,1,3,4]]],[65,3,3,4,7,[[1182,3,3,4,7]]]],[27563,27986,29789,29913,30963,30965,30975]]],["blasphemers",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27622]]],["blasphemest",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26517]]],["blasphemeth",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23382,25469]]],["blaspheming",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27407]]],["blasphemously",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25929]]],["blasphemy",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24119]]],["defamed",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28446]]],["evil",[3,3,[[55,1,1,0,1,[[1131,1,1,0,1]]],[60,2,2,1,3,[[1157,2,2,1,3]]]],[29925,30510,30512]]],["of",[7,7,[[44,1,1,0,1,[[1059,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]],[59,2,2,2,4,[[1154,2,2,2,4]]],[60,1,1,4,5,[[1157,1,1,4,5]]],[64,2,2,5,7,[[1166,2,2,5,7]]]],[28296,28597,30450,30460,30502,30680,30682]]],["on",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24855,25974]]],["reported",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[27999]]],["reviled",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24168]]]]},{"k":"G988","v":[["*",[19,18,[[39,4,3,0,3,[[940,2,1,0,1],[943,1,1,1,2],[954,1,1,2,3]]],[40,4,4,3,7,[[958,1,1,3,4],[959,1,1,4,5],[963,1,1,5,6],[970,1,1,6,7]]],[41,1,1,7,8,[[977,1,1,7,8]]],[42,1,1,8,9,[[1006,1,1,8,9]]],[48,1,1,9,10,[[1100,1,1,9,10]]],[50,1,1,10,11,[[1109,1,1,10,11]]],[53,1,1,11,12,[[1124,1,1,11,12]]],[64,1,1,12,13,[[1166,1,1,12,13]]],[65,5,5,13,18,[[1168,1,1,13,14],[1179,3,3,14,17],[1183,1,1,17,18]]]],[23520,23652,24119,24267,24316,24485,24818,25128,26514,29303,29525,29792,30681,30726,30909,30913,30914,30978]]],["blasphemies",[5,5,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[959,1,1,2,3]]],[41,1,1,3,4,[[977,1,1,3,4]]],[65,1,1,4,5,[[1179,1,1,4,5]]]],[23652,24267,24316,25128,30913]]],["blasphemy",[11,10,[[39,3,2,0,2,[[940,2,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[963,1,1,2,3],[970,1,1,3,4]]],[42,1,1,4,5,[[1006,1,1,4,5]]],[50,1,1,5,6,[[1109,1,1,5,6]]],[65,4,4,6,10,[[1168,1,1,6,7],[1179,2,2,7,9],[1183,1,1,9,10]]]],[23520,24119,24485,24818,26514,29525,30726,30909,30914,30978]]],["railing",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30681]]],["railings",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29792]]],["speaking",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29303]]]]},{"k":"G989","v":[["*",[5,5,[[43,2,2,0,2,[[1023,2,2,0,2]]],[53,1,1,2,3,[[1119,1,1,2,3]]],[54,1,1,3,4,[[1127,1,1,3,4]]],[60,1,1,4,5,[[1157,1,1,4,5]]]],[27112,27114,29709,29855,30511]]],["blasphemer",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29709]]],["blasphemers",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29855]]],["blasphemous",[2,2,[[43,2,2,0,2,[[1023,2,2,0,2]]]],[27112,27114]]],["railing",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30511]]]]},{"k":"G990","v":[["seeing",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30508]]]]},{"k":"G991","v":[["*",[135,119,[[39,20,17,0,17,[[933,1,1,0,1],[934,3,3,1,4],[935,1,1,4,5],[939,1,1,5,6],[940,1,1,6,7],[941,6,4,7,11],[942,1,1,11,12],[943,2,1,12,13],[946,1,1,13,14],[950,1,1,14,15],[952,2,2,15,17]]],[40,15,14,17,31,[[960,3,2,17,19],[961,1,1,19,20],[964,4,4,20,24],[968,2,2,24,26],[969,5,5,26,31]]],[41,16,14,31,45,[[978,2,2,31,33],[979,2,2,33,35],[980,4,3,35,38],[981,1,1,38,39],[982,3,2,39,41],[983,1,1,41,42],[993,2,2,42,44],[996,1,1,44,45]]],[42,17,15,45,60,[[997,1,1,45,46],[1001,1,1,46,47],[1005,9,7,47,54],[1007,1,1,54,55],[1009,1,1,55,56],[1016,2,2,56,58],[1017,2,2,58,60]]],[43,13,12,60,72,[[1018,1,1,60,61],[1019,1,1,61,62],[1020,1,1,62,63],[1021,1,1,63,64],[1025,1,1,64,65],[1026,2,2,65,67],[1029,1,1,67,68],[1030,2,2,68,70],[1044,1,1,70,71],[1045,2,1,71,72]]],[44,6,5,72,77,[[1052,1,1,72,73],[1053,3,2,73,75],[1056,2,2,75,77]]],[45,7,7,77,84,[[1062,1,1,77,78],[1064,1,1,78,79],[1069,1,1,79,80],[1071,2,2,80,82],[1074,1,1,82,83],[1077,1,1,83,84]]],[46,7,4,84,88,[[1081,4,1,84,85],[1084,1,1,85,86],[1087,1,1,86,87],[1089,1,1,87,88]]],[47,1,1,88,89,[[1095,1,1,88,89]]],[48,1,1,89,90,[[1101,1,1,89,90]]],[49,3,1,90,91,[[1105,3,1,90,91]]],[50,3,3,91,94,[[1108,2,2,91,93],[1110,1,1,93,94]]],[57,8,8,94,102,[[1134,1,1,94,95],[1135,2,2,95,97],[1142,1,1,97,98],[1143,3,3,98,101],[1144,1,1,101,102]]],[58,1,1,102,103,[[1147,1,1,102,103]]],[62,1,1,103,104,[[1164,1,1,103,104]]],[65,16,15,104,119,[[1167,2,2,104,106],[1169,1,1,106,107],[1171,2,2,107,109],[1172,4,4,109,113],[1175,1,1,113,114],[1177,1,1,114,115],[1182,1,1,115,116],[1183,1,1,116,117],[1184,1,1,117,118],[1188,2,1,118,119]]]],[23262,23286,23288,23300,23319,23463,23511,23552,23553,23555,23556,23627,23664,23737,23888,23959,23961,24335,24347,24395,24515,24518,24523,24524,24687,24711,24719,24722,24726,24740,24750,25187,25188,25216,25239,25255,25261,25263,25363,25386,25387,25438,25834,25856,26003,26073,26229,26447,26455,26459,26461,26465,26479,26481,26532,26652,26868,26872,26907,26918,26932,26982,27000,27036,27182,27224,27225,27346,27373,27402,27867,27925,28114,28140,28141,28217,28219,28389,28420,28536,28579,28585,28677,28786,28877,28924,28978,29028,29177,29319,29423,29499,29502,29559,29986,30007,30014,30158,30173,30175,30179,30237,30315,30653,30708,30709,30764,30782,30783,30794,30796,30798,30800,30860,30881,30969,30983,31002,31088]]],["+",[5,4,[[40,2,2,0,2,[[964,1,1,0,1],[969,1,1,1,2]]],[46,2,1,2,3,[[1081,2,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[24523,24740,28877,30179]]],["Behold",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28585]]],["Beware",[4,4,[[40,1,1,0,1,[[968,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]],[50,1,1,3,4,[[1108,1,1,3,4]]]],[24711,27402,29423,29502]]],["Look",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27000]]],["See",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[23959,29319,30237]]],["Seest",[3,3,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[24719,25239,30315]]],["beheld",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]]],[26003,26932]]],["behold",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[65,1,1,1,2,[[1183,1,1,1,2]]]],[23737,30983]]],["beholdest",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,2,2,1,3,[[978,2,2,1,3]]]],[23319,25187,25188]]],["beholding",[2,2,[[43,1,1,0,1,[[1021,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[27036,29499]]],["beware",[3,2,[[40,1,1,0,1,[[964,1,1,0,1]]],[49,2,1,1,2,[[1105,2,1,1,2]]]],[24515,29423]]],["heed",[13,13,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,4,4,1,5,[[960,1,1,1,2],[969,3,3,2,5]]],[41,2,2,5,7,[[980,1,1,5,6],[993,1,1,6,7]]],[45,3,3,7,10,[[1064,1,1,7,8],[1069,1,1,8,9],[1071,1,1,9,10]]],[47,1,1,10,11,[[1095,1,1,10,11]]],[50,1,1,11,12,[[1110,1,1,11,12]]],[57,1,1,12,13,[[1135,1,1,12,13]]]],[23961,24347,24722,24726,24750,25263,25834,28420,28536,28579,29177,29559,30007]]],["lieth",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27867]]],["look",[2,2,[[65,2,2,0,2,[[1171,2,2,0,2]]]],[30782,30783]]],["looked",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26652]]],["looketh",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23262]]],["looking",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25363]]],["on",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28978]]],["perceive",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28924]]],["regardest",[2,2,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]]],[23888,24687]]],["saw",[8,8,[[39,3,3,0,3,[[940,1,1,0,1],[942,1,1,1,2],[943,1,1,2,3]]],[42,2,2,3,5,[[1016,1,1,3,4],[1017,1,1,4,5]]],[43,2,2,5,7,[[1026,1,1,5,6],[1029,1,1,6,7]]],[65,1,1,7,8,[[1188,1,1,7,8]]]],[23511,23627,23664,26872,26907,27224,27346,31088]]],["see",[45,42,[[39,6,6,0,6,[[939,1,1,0,1],[941,4,4,1,5],[943,1,1,5,6]]],[40,3,3,6,9,[[960,1,1,6,7],[964,2,2,7,9]]],[41,7,6,9,15,[[980,2,2,9,11],[982,3,2,11,13],[983,1,1,13,14],[993,1,1,14,15]]],[42,7,5,15,20,[[1005,7,5,15,20]]],[43,2,2,20,22,[[1019,1,1,20,21],[1045,1,1,21,22]]],[44,4,4,22,26,[[1052,1,1,22,23],[1053,1,1,23,24],[1056,2,2,24,26]]],[45,3,3,26,29,[[1062,1,1,26,27],[1074,1,1,27,28],[1077,1,1,28,29]]],[57,3,3,29,32,[[1134,1,1,29,30],[1135,1,1,30,31],[1142,1,1,31,32]]],[65,10,10,32,42,[[1167,1,1,32,33],[1169,1,1,33,34],[1172,4,4,34,38],[1175,1,1,38,39],[1177,1,1,39,40],[1182,1,1,40,41],[1184,1,1,41,42]]]],[23463,23552,23553,23555,23556,23664,24335,24518,24524,25255,25261,25386,25387,25438,25856,26455,26459,26465,26479,26481,26982,27925,28114,28141,28217,28219,28389,28677,28786,29986,30014,30158,30709,30764,30794,30796,30798,30800,30860,30881,30969,31002]]],["seeing",[8,8,[[39,2,2,0,2,[[941,2,2,0,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,1,1,3,4,[[980,1,1,3,4]]],[42,1,1,4,5,[[1005,1,1,4,5]]],[43,3,3,5,8,[[1025,1,1,5,6],[1030,1,1,6,7],[1045,1,1,7,8]]]],[23552,23553,24335,25255,26447,27182,27373,27925]]],["seen",[6,5,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,2,1,1,2,[[1081,2,1,1,2]]],[57,2,2,2,4,[[1143,2,2,2,4]]],[65,1,1,4,5,[[1188,1,1,4,5]]]],[28140,28877,30173,30175,31088]]],["seest",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[65,1,1,1,2,[[1167,1,1,1,2]]]],[24395,30708]]],["seeth",[11,11,[[39,3,3,0,3,[[934,3,3,0,3]]],[42,6,6,3,9,[[997,1,1,3,4],[1001,1,1,4,5],[1005,1,1,5,6],[1007,1,1,6,7],[1016,1,1,7,8],[1017,1,1,8,9]]],[44,1,1,9,10,[[1053,1,1,9,10]]],[46,1,1,10,11,[[1089,1,1,10,11]]]],[23286,23288,23300,26073,26229,26461,26532,26868,26918,28140,29028]]],["sight",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[25216,27225]]],["to",[1,1,[[62,1,1,0,1,[[1164,1,1,0,1]]]],[30653]]]]},{"k":"G992","v":[["put",[2,2,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]]],[24282,25145]]]]},{"k":"G993","v":[["Boanerges",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24305]]]]},{"k":"G994","v":[["*",[11,11,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,2,2,1,3,[[957,1,1,1,2],[971,1,1,2,3]]],[41,3,3,3,6,[[975,1,1,3,4],[990,2,2,4,6]]],[42,1,1,6,7,[[997,1,1,6,7]]],[43,3,3,7,10,[[1025,1,1,7,8],[1034,1,1,8,9],[1038,1,1,9,10]]],[47,1,1,10,11,[[1094,1,1,10,11]]]],[23195,24218,24860,25029,25695,25726,26067,27183,27529,27698,29158]]],["+",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27698]]],["cried",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]]],[24860,25726]]],["cry",[2,2,[[41,1,1,0,1,[[990,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]]],[25695,29158]]],["crying",[6,6,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[975,1,1,2,3]]],[42,1,1,3,4,[[997,1,1,3,4]]],[43,2,2,4,6,[[1025,1,1,4,5],[1034,1,1,5,6]]]],[23195,24218,25029,26067,27183,27529]]]]},{"k":"G995","v":[["cries",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30358]]]]},{"k":"G996","v":[["*",[2,2,[[43,1,1,0,1,[[1044,1,1,0,1]]],[57,1,1,1,2,[[1136,1,1,1,2]]]],[27872,30030]]],["+",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30030]]],["helps",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27872]]]]},{"k":"G997","v":[["*",[8,8,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[965,2,2,1,3]]],[43,2,2,3,5,[[1033,1,1,3,4],[1038,1,1,4,5]]],[46,1,1,5,6,[[1083,1,1,5,6]]],[57,1,1,6,7,[[1134,1,1,6,7]]],[65,1,1,7,8,[[1178,1,1,7,8]]]],[23658,24560,24562,27492,27692,28900,29995,30907]]],["help",[5,5,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[965,2,2,1,3]]],[43,2,2,3,5,[[1033,1,1,3,4],[1038,1,1,4,5]]]],[23658,24560,24562,27492,27692]]],["helped",[1,1,[[65,1,1,0,1,[[1178,1,1,0,1]]]],[30907]]],["succour",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29995]]],["succoured",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28900]]]]},{"k":"G998","v":[["helper",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30247]]]]},{"k":"G999","v":[["*",[3,3,[[39,2,2,0,2,[[940,1,1,0,1],[943,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]]],[23500,23647,25185]]],["ditch",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]]],[23647,25185]]],["pit",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23500]]]]},{"k":"G1000","v":[["cast",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25905]]]]},{"k":"G1001","v":[["sounded",[2,1,[[43,2,1,0,1,[[1044,2,1,0,1]]]],[27883]]]]},{"k":"G1002","v":[["dart",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30232]]]]},{"k":"G1003","v":[["Booz",[3,2,[[39,2,1,0,1,[[929,2,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23149,25057]]]]},{"k":"G1004","v":[["mire",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30522]]]]},{"k":"G1005","v":[["north",[2,2,[[41,1,1,0,1,[[985,1,1,0,1]]],[65,1,1,1,2,[[1187,1,1,1,2]]]],[25547,31066]]]]},{"k":"G1006","v":[["*",[9,9,[[39,2,2,0,2,[[936,2,2,0,2]]],[40,2,2,2,4,[[961,2,2,2,4]]],[41,3,3,4,7,[[980,2,2,4,6],[987,1,1,6,7]]],[42,2,2,7,9,[[1017,2,2,7,9]]]],[23375,23378,24375,24378,25277,25279,25603,26913,26915]]],["Feed",[2,2,[[42,2,2,0,2,[[1017,2,2,0,2]]]],[26913,26915]]],["fed",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24378,25279]]],["feed",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25603]]],["feeding",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23375,24375,25277]]],["kept",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23378]]]]},{"k":"G1007","v":[["Bosor",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30515]]]]},{"k":"G1008","v":[["herbs",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30051]]]]},{"k":"G1009","v":[["clusters",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30944]]]]},{"k":"G1010","v":[["counsellor",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24869,25985]]]]},{"k":"G1011","v":[["*",[8,6,[[41,1,1,0,1,[[986,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]],[43,3,3,2,5,[[1022,1,1,2,3],[1032,1,1,3,4],[1044,1,1,4,5]]],[46,3,1,5,6,[[1078,3,1,5,6]]]],[25584,26590,27092,27479,27894,28817]]],["+",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28817]]],["consulted",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26590]]],["consulteth",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25584]]],["counsel",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27092]]],["determined",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27479]]],["minded",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27894]]],["purpose",[2,1,[[46,2,1,0,1,[[1078,2,1,0,1]]]],[28817]]]]},{"k":"G1012","v":[["*",[12,12,[[41,2,2,0,2,[[979,1,1,0,1],[995,1,1,1,2]]],[43,7,7,2,9,[[1019,1,1,2,3],[1021,1,1,3,4],[1022,1,1,4,5],[1030,1,1,5,6],[1037,1,1,6,7],[1044,2,2,7,9]]],[45,1,1,9,10,[[1065,1,1,9,10]]],[48,1,1,10,11,[[1097,1,1,10,11]]],[57,1,1,11,12,[[1138,1,1,11,12]]]],[25225,25986,26972,27050,27097,27398,27653,27867,27897,28438,29217,30061]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27867]]],["counsel",[9,9,[[41,2,2,0,2,[[979,1,1,0,1],[995,1,1,1,2]]],[43,5,5,2,7,[[1019,1,1,2,3],[1021,1,1,3,4],[1022,1,1,4,5],[1037,1,1,5,6],[1044,1,1,6,7]]],[48,1,1,7,8,[[1097,1,1,7,8]]],[57,1,1,8,9,[[1138,1,1,8,9]]]],[25225,25986,26972,27050,27097,27653,27897,29217,30061]]],["counsels",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28438]]],["will",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27398]]]]},{"k":"G1013","v":[["*",[2,2,[[43,1,1,0,1,[[1044,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]]],[27898,28174]]],["purpose",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27898]]],["will",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28174]]]]},{"k":"G1014","v":[["*",[34,34,[[39,2,2,0,2,[[929,1,1,0,1],[939,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[41,2,2,3,5,[[982,1,1,3,4],[994,1,1,4,5]]],[42,1,1,5,6,[[1014,1,1,5,6]]],[43,12,12,6,18,[[1022,1,1,6,7],[1029,1,1,7,8],[1034,1,1,8,9],[1035,2,2,9,11],[1036,1,1,11,12],[1039,1,1,12,13],[1040,1,1,13,14],[1042,2,2,14,16],[1044,1,1,16,17],[1045,1,1,17,18]]],[45,1,1,18,19,[[1073,1,1,18,19]]],[46,1,1,19,20,[[1078,1,1,19,20]]],[49,1,1,20,21,[[1103,1,1,20,21]]],[53,3,3,21,24,[[1120,1,1,21,22],[1123,1,1,22,23],[1124,1,1,23,24]]],[55,1,1,24,25,[[1131,1,1,24,25]]],[56,1,1,25,26,[[1132,1,1,25,26]]],[57,1,1,26,27,[[1138,1,1,26,27]]],[58,3,3,27,30,[[1146,1,1,27,28],[1148,1,1,28,29],[1149,1,1,29,30]]],[60,1,1,30,31,[[1158,1,1,30,31]]],[62,1,1,31,32,[[1164,1,1,31,32]]],[63,1,1,32,33,[[1165,1,1,32,33]]],[64,1,1,33,34,[[1166,1,1,33,34]]]],[23163,23486,24841,25385,25906,26824,27087,27341,27543,27572,27584,27615,27734,27762,27816,27818,27898,27917,28645,28815,29373,29724,29777,29797,29931,29951,30061,30284,30323,30341,30531,30657,30668,30677]]],["disposed",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27584]]],["intend",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27087]]],["intending",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27341]]],["listeth",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30323]]],["minded",[2,2,[[39,1,1,0,1,[[929,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]]],[23163,28815]]],["will",[12,12,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[42,1,1,2,3,[[1014,1,1,2,3]]],[43,1,1,3,4,[[1035,1,1,3,4]]],[45,1,1,4,5,[[1073,1,1,4,5]]],[53,3,3,5,8,[[1120,1,1,5,6],[1123,1,1,6,7],[1124,1,1,7,8]]],[55,1,1,8,9,[[1131,1,1,8,9]]],[58,2,2,9,11,[[1146,1,1,9,10],[1149,1,1,10,11]]],[64,1,1,11,12,[[1166,1,1,11,12]]]],[23486,25385,26824,27572,28645,29724,29777,29797,29931,30284,30341,30677]]],["willing",[5,5,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[43,1,1,2,3,[[1044,1,1,2,3]]],[57,1,1,3,4,[[1138,1,1,3,4]]],[60,1,1,4,5,[[1158,1,1,4,5]]]],[24841,25906,27898,30061,30531]]],["would",[11,11,[[43,7,7,0,7,[[1034,1,1,0,1],[1036,1,1,1,2],[1039,1,1,2,3],[1040,1,1,3,4],[1042,2,2,4,6],[1045,1,1,6,7]]],[49,1,1,7,8,[[1103,1,1,7,8]]],[56,1,1,8,9,[[1132,1,1,8,9]]],[62,1,1,9,10,[[1164,1,1,9,10]]],[63,1,1,10,11,[[1165,1,1,10,11]]]],[27543,27615,27734,27762,27816,27818,27917,29373,29951,30657,30668]]]]},{"k":"G1015","v":[["*",[2,2,[[41,2,2,0,2,[[975,1,1,0,1],[995,1,1,1,2]]]],[25030,25965]]],["hill",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25030]]],["hills",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25965]]]]},{"k":"G1016","v":[["*",[8,7,[[41,3,3,0,3,[[985,1,1,0,1],[986,2,2,1,3]]],[42,2,2,3,5,[[998,2,2,3,5]]],[45,2,1,5,6,[[1070,2,1,5,6]]],[53,1,1,6,7,[[1123,1,1,6,7]]]],[25533,25558,25572,26109,26110,28549,29781]]],["ox",[4,4,[[41,2,2,0,2,[[985,1,1,0,1],[986,1,1,1,2]]],[45,1,1,2,3,[[1070,1,1,2,3]]],[53,1,1,3,4,[[1123,1,1,3,4]]]],[25533,25558,28549,29781]]],["oxen",[4,4,[[41,1,1,0,1,[[986,1,1,0,1]]],[42,2,2,1,3,[[998,2,2,1,3]]],[45,1,1,3,4,[[1070,1,1,3,4]]]],[25572,26109,26110,28549]]]]},{"k":"G1017","v":[["prize",[2,2,[[45,1,1,0,1,[[1070,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[28564,29435]]]]},{"k":"G1018","v":[["rule",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29532]]]]},{"k":"G1019","v":[["*",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[29746,30531]]],["+",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30531]]],["long",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29746]]]]},{"k":"G1020","v":[["slowly",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27862]]]]},{"k":"G1021","v":[["slow",[3,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[58,2,1,1,2,[[1146,2,1,1,2]]]],[26016,30285]]]]},{"k":"G1022","v":[["slackness",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30531]]]]},{"k":"G1023","v":[["arm",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]],[43,1,1,2,3,[[1030,1,1,2,3]]]],[24944,26618,27379]]]]},{"k":"G1024","v":[["*",[7,7,[[41,1,1,0,1,[[994,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[43,2,2,2,4,[[1022,1,1,2,3],[1044,1,1,3,4]]],[57,3,3,4,7,[[1134,2,2,4,6],[1145,1,1,6,7]]]],[25922,26264,27093,27883,29984,29986,30263]]],["+",[5,5,[[42,1,1,0,1,[[1002,1,1,0,1]]],[43,2,2,1,3,[[1022,1,1,1,2],[1044,1,1,2,3]]],[57,2,2,3,5,[[1134,2,2,3,5]]]],[26264,27093,27883,29984,29986]]],["while",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25922]]],["words",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30263]]]]},{"k":"G1025","v":[["*",[8,8,[[41,5,5,0,5,[[973,2,2,0,2],[974,2,2,2,4],[990,1,1,4,5]]],[43,1,1,5,6,[[1024,1,1,5,6]]],[54,1,1,6,7,[[1127,1,1,6,7]]],[59,1,1,7,8,[[1152,1,1,7,8]]]],[24934,24937,24985,24989,25703,27135,29868,30401]]],["babe",[4,4,[[41,4,4,0,4,[[973,2,2,0,2],[974,2,2,2,4]]]],[24934,24937,24985,24989]]],["babes",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30401]]],["child",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29868]]],["children",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27135]]],["infants",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25703]]]]},{"k":"G1026","v":[["*",[7,6,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,3,3,1,4,[[979,2,2,1,3],[989,1,1,3,4]]],[58,2,1,4,5,[[1150,2,1,4,5]]],[65,1,1,5,6,[[1177,1,1,5,6]]]],[23279,25233,25239,25680,30371,30878]]],["+",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30878]]],["rain",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[23279,30371]]],["rained",[2,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[25680,30371]]],["wash",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25233]]],["washed",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25239]]]]},{"k":"G1027","v":[["*",[12,11,[[40,1,1,0,1,[[959,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]],[65,10,9,2,11,[[1170,1,1,2,3],[1172,1,1,3,4],[1174,1,1,4,5],[1176,3,2,5,7],[1177,1,1,7,8],[1180,1,1,8,9],[1182,1,1,9,10],[1185,1,1,10,11]]]],[24305,26609,30773,30794,30832,30864,30865,30891,30928,30972,31023]]],["+",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26609]]],["thunder",[3,3,[[40,1,1,0,1,[[959,1,1,0,1]]],[65,2,2,1,3,[[1172,1,1,1,2],[1180,1,1,2,3]]]],[24305,30794,30928]]],["thunderings",[4,4,[[65,4,4,0,4,[[1170,1,1,0,1],[1174,1,1,1,2],[1177,1,1,2,3],[1185,1,1,3,4]]]],[30773,30832,30891,31023]]],["thunders",[4,3,[[65,4,3,0,3,[[1176,3,2,0,2],[1182,1,1,2,3]]]],[30864,30865,30972]]]]},{"k":"G1028","v":[["rain",[2,2,[[39,2,2,0,2,[[935,2,2,0,2]]]],[23341,23343]]]]},{"k":"G1029","v":[["snare",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28522]]]]},{"k":"G1030","v":[["gnashing",[7,7,[[39,6,6,0,6,[[936,1,1,0,1],[941,2,2,1,3],[950,1,1,3,4],[952,1,1,4,5],[953,1,1,5,6]]],[41,1,1,6,7,[[985,1,1,6,7]]]],[23357,23581,23589,23885,24008,24038,25546]]]]},{"k":"G1031","v":[["gnashed",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27170]]]]},{"k":"G1032","v":[["forth",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30330]]]]},{"k":"G1033","v":[["*",[17,15,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,2,2,2,4,[[975,1,1,2,3],[981,1,1,3,4]]],[42,1,1,4,5,[[1000,1,1,4,5]]],[44,3,2,5,7,[[1059,3,2,5,7]]],[45,6,5,7,12,[[1064,1,1,7,8],[1067,2,1,8,9],[1069,2,2,9,11],[1071,1,1,11,12]]],[53,1,1,12,13,[[1122,1,1,12,13]]],[57,2,2,13,15,[[1141,1,1,13,14],[1145,1,1,14,15]]]],[23612,24482,25036,25314,26190,28295,28300,28412,28480,28535,28540,28570,29750,30115,30250]]],["Meats",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28480]]],["meat",[10,9,[[41,2,2,0,2,[[975,1,1,0,1],[981,1,1,1,2]]],[42,1,1,2,3,[[1000,1,1,2,3]]],[44,3,2,3,5,[[1059,3,2,3,5]]],[45,4,4,5,9,[[1064,1,1,5,6],[1069,2,2,6,8],[1071,1,1,8,9]]]],[25036,25314,26190,28295,28300,28412,28535,28540,28570]]],["meats",[5,5,[[40,1,1,0,1,[[963,1,1,0,1]]],[45,1,1,1,2,[[1067,1,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]],[57,2,2,3,5,[[1141,1,1,3,4],[1145,1,1,4,5]]]],[24482,28480,29750,30115,30250]]],["victuals",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23612]]]]},{"k":"G1034","v":[["meat",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26032]]]]},{"k":"G1035","v":[["*",[11,10,[[39,2,2,0,2,[[934,2,2,0,2]]],[42,4,3,2,5,[[1000,1,1,2,3],[1002,3,2,3,5]]],[44,1,1,5,6,[[1059,1,1,5,6]]],[45,1,1,6,7,[[1069,1,1,6,7]]],[46,1,1,7,8,[[1086,1,1,7,8]]],[50,1,1,8,9,[[1108,1,1,8,9]]],[57,1,1,9,10,[[1144,1,1,9,10]]]],[23301,23302,26188,26284,26312,28297,28531,28966,29510,30228]]],["eating",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28531]]],["food",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28966]]],["meat",[7,6,[[42,4,3,0,3,[[1000,1,1,0,1],[1002,3,2,1,3]]],[44,1,1,3,4,[[1059,1,1,3,4]]],[50,1,1,4,5,[[1108,1,1,4,5]]],[57,1,1,5,6,[[1144,1,1,5,6]]]],[26188,26284,26312,28297,29510,30228]]],["rust",[2,2,[[39,2,2,0,2,[[934,2,2,0,2]]]],[23301,23302]]]]},{"k":"G1036","v":[["*",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[25114,29797]]],["drown",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29797]]],["sink",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25114]]]]},{"k":"G1037","v":[["deep",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29014]]]]},{"k":"G1038","v":[["tanner",[3,3,[[43,3,3,0,3,[[1026,1,1,0,1],[1027,2,2,1,3]]]],[27259,27265,27291]]]]},{"k":"G1039","v":[["linen",[4,3,[[65,4,3,0,3,[[1184,1,1,0,1],[1185,3,2,1,3]]]],[31009,31025,31031]]]]},{"k":"G1040","v":[["linen",[2,2,[[41,1,1,0,1,[[988,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[25639,31005]]]]},{"k":"G1041","v":[["altar",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27546]]]]},{"k":"G1042","v":[["Gabbatha",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26838]]]]},{"k":"G1043","v":[["Gabriel",[2,2,[[41,2,2,0,2,[[973,2,2,0,2]]]],[24912,24919]]]]},{"k":"G1044","v":[["canker",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29844]]]]},{"k":"G1045","v":[["Gad",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30815]]]]},{"k":"G1046","v":[["*",[3,3,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,2,2,1,3,[[980,2,2,1,3]]]],[24365,25271,25282]]],["+",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25282]]],["Gadarenes",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24365,25271]]]]},{"k":"G1047","v":[["treasure",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27203]]]]},{"k":"G1048","v":[["Gaza",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27202]]]]},{"k":"G1049","v":[["treasury",[5,4,[[40,3,2,0,2,[[968,3,2,0,2]]],[41,1,1,2,3,[[993,1,1,2,3]]],[42,1,1,3,4,[[1004,1,1,3,4]]]],[24714,24716,25827,26401]]]]},{"k":"G1050","v":[["Gaius",[5,5,[[43,2,2,0,2,[[1036,1,1,0,1],[1037,1,1,1,2]]],[44,1,1,2,3,[[1061,1,1,2,3]]],[45,1,1,3,4,[[1062,1,1,3,4]]],[63,1,1,4,5,[[1165,1,1,4,5]]]],[27614,27630,28359,28377,30659]]]]},{"k":"G1051","v":[["milk",[5,5,[[45,2,2,0,2,[[1064,1,1,0,1],[1070,1,1,1,2]]],[57,2,2,2,4,[[1137,2,2,2,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[28412,28547,30042,30043,30401]]]]},{"k":"G1052","v":[["Galatians",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29103]]]]},{"k":"G1053","v":[["Galatia",[4,4,[[45,1,1,0,1,[[1077,1,1,0,1]]],[47,1,1,1,2,[[1091,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[28777,29059,29880,30375]]]]},{"k":"G1054","v":[["Galatia",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1035,1,1,1,2]]]],[27489,27580]]]]},{"k":"G1055","v":[["calm",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23371,24362,25269]]]]},{"k":"G1056","v":[["Galilee",[63,62,[[39,16,16,0,16,[[930,1,1,0,1],[931,1,1,1,2],[932,5,5,2,7],[943,1,1,7,8],[945,1,1,8,9],[947,1,1,9,10],[949,1,1,10,11],[954,1,1,11,12],[955,1,1,12,13],[956,3,3,13,16]]],[40,12,12,16,28,[[957,5,5,16,21],[959,1,1,21,22],[962,1,1,22,23],[963,1,1,23,24],[965,1,1,24,25],[970,1,1,25,26],[971,1,1,26,27],[972,1,1,27,28]]],[41,15,15,28,43,[[973,1,1,28,29],[974,2,2,29,31],[975,1,1,31,32],[976,3,3,32,35],[977,1,1,35,36],[980,1,1,36,37],[989,1,1,37,38],[995,4,4,38,42],[996,1,1,42,43]]],[42,17,16,43,59,[[997,1,1,43,44],[998,2,2,44,46],[1000,6,6,46,52],[1002,1,1,52,53],[1003,5,4,53,57],[1008,1,1,57,58],[1017,1,1,58,59]]],[43,3,3,59,62,[[1026,1,1,59,60],[1027,1,1,60,61],[1030,1,1,61,62]]]],[23191,23205,23221,23224,23227,23232,23234,23662,23722,23763,23837,24086,24184,24202,24205,24211,24224,24229,24231,24243,24254,24295,24428,24494,24568,24782,24867,24880,24919,24977,25012,25026,25077,25094,25107,25124,25271,25662,25940,25941,25984,25990,25997,26087,26096,26106,26159,26199,26201,26202,26203,26210,26258,26329,26337,26369,26380,26601,26900,27247,27296,27393]]]]},{"k":"G1057","v":[["*",[11,10,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,5,4,2,6,[[985,3,2,2,4],[994,1,1,4,5],[995,1,1,5,6]]],[42,1,1,6,7,[[1000,1,1,6,7]]],[43,3,3,7,10,[[1018,1,1,7,8],[1019,1,1,8,9],[1022,1,1,9,10]]]],[24123,24824,25519,25520,25923,25941,26201,26934,26956,27096]]],["Galilaean",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,2,2,1,3,[[994,1,1,1,2],[995,1,1,2,3]]]],[24824,25923,25941]]],["Galilaeans",[5,4,[[41,3,2,0,2,[[985,3,2,0,2]]],[42,1,1,2,3,[[1000,1,1,2,3]]],[43,1,1,3,4,[[1019,1,1,3,4]]]],[25519,25520,26201,26956]]],["Galilee",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[43,2,2,1,3,[[1018,1,1,1,2],[1022,1,1,2,3]]]],[24123,26934,27096]]]]},{"k":"G1058","v":[["Gallio",[3,3,[[43,3,3,0,3,[[1035,3,3,0,3]]]],[27569,27571,27574]]]]},{"k":"G1059","v":[["Gamaliel",[2,2,[[43,2,2,0,2,[[1022,1,1,0,1],[1039,1,1,1,2]]]],[27093,27707]]]]},{"k":"G1060","v":[["*",[29,25,[[39,7,6,0,6,[[933,1,1,0,1],[947,3,2,1,3],[950,2,2,3,5],[952,1,1,5,6]]],[40,4,4,6,10,[[962,1,1,6,7],[966,2,2,7,9],[968,1,1,9,10]]],[41,6,5,10,15,[[986,1,1,10,11],[988,2,1,11,12],[989,1,1,12,13],[992,2,2,13,15]]],[45,9,7,15,22,[[1068,9,7,15,22]]],[53,3,3,22,25,[[1122,1,1,22,23],[1123,2,2,23,25]]]],[23266,23771,23772,23897,23902,23995,24424,24599,24600,24698,25573,25638,25678,25813,25814,28496,28497,28515,28520,28521,28523,28526,29750,29774,29777]]],["married",[7,7,[[40,2,2,0,2,[[962,1,1,0,1],[966,1,1,1,2]]],[41,1,1,2,3,[[986,1,1,2,3]]],[45,4,4,3,7,[[1068,4,4,3,7]]]],[24424,24600,25573,28497,28520,28521,28526]]],["marrieth",[3,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,2,1,1,2,[[988,2,1,1,2]]]],[23771,25638]]],["marry",[16,14,[[39,4,4,0,4,[[933,1,1,0,1],[947,2,2,1,3],[950,1,1,3,4]]],[40,2,2,4,6,[[966,1,1,4,5],[968,1,1,5,6]]],[41,2,2,6,8,[[992,2,2,6,8]]],[45,5,3,8,11,[[1068,5,3,8,11]]],[53,3,3,11,14,[[1122,1,1,11,12],[1123,2,2,12,14]]]],[23266,23771,23772,23902,24599,24698,25813,25814,28496,28515,28523,29750,29774,29777]]],["marrying",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23995]]],["wife",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23897]]],["wives",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25678]]]]},{"k":"G1061","v":[["marriage",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24698]]]]},{"k":"G1062","v":[["*",[16,16,[[39,9,9,0,9,[[950,8,8,0,8],[953,1,1,8,9]]],[41,2,2,9,11,[[984,1,1,9,10],[986,1,1,10,11]]],[42,2,2,11,13,[[998,2,2,11,13]]],[57,1,1,13,14,[[1145,1,1,13,14]]],[65,2,2,14,16,[[1185,2,2,14,16]]]],[23874,23875,23876,23880,23881,23882,23883,23884,24018,25495,25561,26096,26097,30245,31024,31026]]],["+",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23880]]],["Marriage",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30245]]],["marriage",[8,8,[[39,4,4,0,4,[[950,3,3,0,3],[953,1,1,3,4]]],[42,2,2,4,6,[[998,2,2,4,6]]],[65,2,2,6,8,[[1185,2,2,6,8]]]],[23874,23876,23881,24018,26096,26097,31024,31026]]],["wedding",[6,6,[[39,4,4,0,4,[[950,4,4,0,4]]],[41,2,2,4,6,[[984,1,1,4,5],[986,1,1,5,6]]]],[23875,23882,23883,23884,25495,25561]]]]},{"k":"G1063","v":[["*",[1068,1017,[[39,129,128,0,128,[[929,3,3,0,3],[930,5,5,3,8],[931,4,4,8,12],[932,4,4,12,16],[933,6,6,16,22],[934,9,8,22,30],[935,5,5,30,35],[936,1,1,35,36],[937,5,5,36,41],[938,7,7,41,48],[939,4,4,48,52],[940,6,6,52,58],[941,3,3,58,61],[942,3,3,61,64],[943,4,4,64,68],[944,5,5,68,73],[945,2,2,73,75],[946,4,4,75,79],[947,3,3,79,82],[948,2,2,82,84],[949,2,2,84,86],[950,4,4,86,90],[951,10,10,90,100],[952,8,8,100,108],[953,4,4,108,112],[954,9,9,112,121],[955,4,4,121,125],[956,3,3,125,128]]],[40,74,72,128,200,[[957,3,3,128,131],[958,1,1,131,132],[959,3,3,132,135],[960,3,3,135,138],[961,3,3,138,141],[962,10,9,141,150],[963,7,7,150,157],[964,4,4,157,161],[965,8,7,161,168],[966,4,4,168,172],[967,4,4,172,176],[968,6,6,176,182],[969,9,9,182,191],[970,5,5,191,196],[971,2,2,196,198],[972,2,2,198,200]]],[41,96,91,200,291,[[973,6,6,200,206],[974,1,1,206,207],[975,1,1,207,208],[976,2,2,208,210],[977,2,2,210,212],[978,12,10,212,222],[979,5,5,222,227],[980,6,5,227,232],[981,8,8,232,240],[982,2,2,240,242],[983,3,3,242,245],[984,4,4,245,249],[986,3,3,249,252],[988,3,3,252,255],[989,2,2,255,257],[990,4,4,257,261],[991,5,5,261,266],[992,6,5,266,271],[993,7,7,271,278],[994,8,7,278,285],[995,6,6,285,291]]],[42,66,63,291,354,[[998,1,1,291,292],[999,8,7,292,299],[1000,9,9,299,308],[1001,10,9,308,317],[1002,6,6,317,323],[1003,6,6,323,329],[1004,3,2,329,331],[1005,2,2,331,333],[1006,1,1,333,334],[1007,1,1,334,335],[1008,3,3,335,338],[1009,4,4,338,342],[1010,1,1,342,343],[1012,3,3,343,346],[1014,1,1,346,347],[1015,3,3,347,350],[1016,2,2,350,352],[1017,2,2,352,354]]],[43,85,78,354,432,[[1018,1,1,354,355],[1019,5,4,355,359],[1020,1,1,359,360],[1021,8,7,360,367],[1022,2,2,367,369],[1023,1,1,369,370],[1024,2,2,370,372],[1025,6,6,372,378],[1026,2,2,378,380],[1027,1,1,380,381],[1030,4,4,381,385],[1032,2,2,385,387],[1033,3,3,387,390],[1034,4,3,390,393],[1035,4,4,393,397],[1036,5,5,397,402],[1037,6,5,402,407],[1038,5,5,407,412],[1039,2,2,412,414],[1040,5,5,414,419],[1041,1,1,419,420],[1042,2,2,420,422],[1043,4,2,422,424],[1044,5,4,424,428],[1045,4,4,428,432]]],[44,145,131,432,563,[[1046,9,8,432,440],[1047,9,8,440,448],[1048,7,7,448,455],[1049,7,6,455,461],[1050,9,8,461,469],[1051,9,8,469,477],[1052,13,11,477,488],[1053,17,15,488,503],[1054,9,9,503,512],[1055,10,9,512,521],[1056,11,11,521,532],[1057,4,4,532,536],[1058,10,7,536,543],[1059,10,10,543,553],[1060,8,7,553,560],[1061,3,3,560,563]]],[45,106,101,563,664,[[1062,6,6,563,569],[1063,6,6,569,575],[1064,11,9,575,584],[1065,6,5,584,589],[1066,3,3,589,592],[1067,2,2,592,594],[1068,6,6,594,600],[1069,3,3,600,603],[1070,8,7,603,610],[1071,6,6,610,616],[1072,14,14,616,630],[1073,4,4,630,634],[1074,2,2,634,636],[1075,11,10,636,646],[1076,12,12,646,658],[1077,6,6,658,664]]],[46,78,72,664,736,[[1078,6,6,664,670],[1079,6,6,670,676],[1080,5,5,676,681],[1081,5,5,681,686],[1082,9,9,686,695],[1083,3,3,695,698],[1084,6,6,698,704],[1085,4,4,704,708],[1086,3,3,708,711],[1087,7,6,711,717],[1088,9,8,717,725],[1089,11,8,725,733],[1090,4,3,733,736]]],[47,36,34,736,770,[[1091,4,3,736,739],[1092,6,6,739,745],[1093,8,7,745,752],[1094,6,6,752,758],[1095,5,5,758,763],[1096,7,7,763,770]]],[48,11,11,770,781,[[1098,3,3,770,773],[1101,7,7,773,780],[1102,1,1,780,781]]],[49,14,14,781,795,[[1103,5,5,781,786],[1104,5,5,786,791],[1105,3,3,791,794],[1106,1,1,794,795]]],[50,6,6,795,801,[[1108,2,2,795,797],[1109,3,3,797,800],[1110,1,1,800,801]]],[51,24,23,801,824,[[1111,2,2,801,803],[1112,8,7,803,810],[1113,3,3,810,813],[1114,7,7,813,820],[1115,4,4,820,824]]],[52,5,5,824,829,[[1117,1,1,824,825],[1118,4,4,825,829]]],[53,14,14,829,843,[[1120,3,3,829,832],[1121,1,1,832,833],[1122,4,4,833,837],[1123,4,4,837,841],[1124,2,2,841,843]]],[54,13,13,843,856,[[1125,2,2,843,845],[1126,3,3,845,848],[1127,3,3,848,851],[1128,5,5,851,856]]],[55,6,6,856,862,[[1129,2,2,856,858],[1130,1,1,858,859],[1131,3,3,859,862]]],[56,3,3,862,865,[[1132,3,3,862,865]]],[57,91,88,865,953,[[1133,1,1,865,866],[1134,7,7,866,873],[1135,4,4,873,877],[1136,7,7,877,884],[1137,4,3,884,887],[1138,5,5,887,892],[1139,13,13,892,905],[1140,5,5,905,910],[1141,6,6,910,916],[1142,10,10,916,926],[1143,9,9,926,935],[1144,10,9,935,944],[1145,10,9,944,953]]],[58,16,15,953,968,[[1146,6,6,953,959],[1147,5,5,959,964],[1148,3,3,964,967],[1149,2,1,967,968]]],[59,10,10,968,978,[[1152,4,4,968,972],[1153,3,3,972,975],[1154,3,3,975,978]]],[60,15,15,978,993,[[1156,7,7,978,985],[1157,6,6,985,991],[1158,2,2,991,993]]],[61,3,3,993,996,[[1160,1,1,993,994],[1162,1,1,994,995],[1163,1,1,995,996]]],[62,1,1,996,997,[[1164,1,1,996,997]]],[63,2,2,997,999,[[1165,2,2,997,999]]],[64,1,1,999,1000,[[1166,1,1,999,1000]]],[65,18,17,1000,1017,[[1167,1,1,1000,1001],[1169,1,1,1001,1002],[1175,2,1,1002,1003],[1179,1,1,1003,1004],[1180,2,2,1004,1006],[1182,2,2,1006,1008],[1183,1,1,1008,1009],[1185,2,2,1009,1011],[1187,4,4,1011,1015],[1188,2,2,1015,1017]]]],[23162,23164,23165,23171,23174,23175,23182,23189,23194,23195,23201,23207,23215,23219,23226,23227,23246,23252,23254,23263,23264,23280,23289,23290,23296,23298,23303,23306,23314,23316,23318,23324,23328,23341,23345,23354,23384,23392,23395,23400,23403,23427,23434,23436,23437,23440,23443,23452,23469,23472,23477,23489,23497,23522,23523,23526,23529,23539,23551,23554,23556,23600,23601,23621,23635,23637,23652,23660,23674,23675,23697,23698,23699,23715,23720,23734,23737,23738,23747,23774,23776,23784,23793,23808,23852,23858,23886,23888,23900,23902,23921,23922,23926,23927,23928,23931,23935,23937,23941,23957,23962,23963,23964,23978,23981,23984,23985,23995,24022,24037,24043,24050,24063,24064,24065,24066,24082,24085,24097,24106,24127,24147,24148,24152,24172,24197,24200,24201,24231,24237,24253,24275,24298,24309,24323,24345,24348,24351,24372,24392,24406,24421,24424,24425,24427,24438,24443,24455,24457,24459,24466,24471,24473,24484,24488,24490,24491,24503,24535,24536,24538,24544,24569,24572,24577,24578,24579,24587,24602,24610,24615,24633,24653,24658,24663,24672,24685,24687,24696,24698,24709,24717,24723,24724,24725,24726,24728,24736,24739,24750,24752,24759,24761,24794,24810,24824,24836,24840,24877,24881,24908,24911,24923,24937,24941,24969,24983,25033,25071,25073,25116,25146,25169,25172,25178,25179,25180,25184,25189,25190,25191,25194,25200,25201,25203,25223,25228,25262,25263,25274,25285,25291,25315,25325,25326,25327,25345,25349,25351,25357,25370,25387,25409,25415,25435,25471,25489,25493,25511,25567,25577,25581,25622,25633,25648,25672,25675,25704,25711,25713,25720,25736,25741,25752,25757,25779,25785,25798,25812,25815,25817,25830,25834,25835,25841,25849,25852,25861,25866,25880,25882,25891,25901,25923,25935,25943,25947,25950,25957,25969,25976,26120,26122,26136,26137,26139,26140,26144,26154,26164,26165,26174,26179,26193,26198,26200,26201,26203,26214,26223,26229,26230,26231,26232,26236,26246,26256,26263,26284,26290,26312,26321,26328,26329,26332,26333,26340,26367,26369,26405,26423,26462,26470,26507,26562,26588,26623,26627,26641,26643,26645,26659,26698,26733,26739,26753,26798,26831,26856,26861,26876,26884,26905,26906,26943,26964,26974,26983,26988,27018,27025,27034,27038,27042,27044,27049,27056,27085,27095,27115,27149,27156,27183,27192,27197,27199,27207,27215,27227,27232,27305,27370,27389,27398,27409,27463,27470,27486,27511,27520,27543,27546,27551,27560,27572,27575,27585,27609,27617,27620,27622,27625,27636,27639,27642,27653,27655,27667,27677,27686,27693,27700,27726,27730,27739,27742,27745,27751,27755,27774,27807,27823,27839,27849,27877,27878,27880,27889,27901,27919,27921,27926,27939,27941,27946,27947,27948,27949,27950,27956,27963,27973,27974,27975,27976,27986,27987,27990,27993,27994,27998,28000,28011,28013,28014,28024,28025,28031,28035,28036,28037,28053,28054,28057,28060,28062,28063,28064,28066,28073,28075,28078,28082,28087,28088,28089,28091,28092,28093,28096,28098,28099,28102,28105,28106,28109,28110,28113,28118,28119,28121,28122,28123,28129,28130,28131,28134,28135,28136,28138,28140,28142,28154,28158,28161,28164,28166,28170,28172,28174,28183,28187,28190,28191,28192,28193,28198,28199,28200,28201,28204,28210,28222,28224,28230,28232,28233,28234,28238,28239,28241,28243,28248,28249,28264,28265,28267,28269,28270,28272,28274,28275,28277,28283,28284,28286,28287,28288,28289,28290,28291,28297,28298,28305,28306,28307,28321,28327,28329,28330,28338,28354,28355,28374,28380,28381,28382,28384,28389,28396,28402,28404,28405,28408,28410,28412,28413,28414,28419,28421,28423,28427,28429,28431,28437,28440,28442,28448,28453,28457,28461,28466,28483,28487,28494,28496,28501,28503,28509,28518,28532,28535,28537,28542,28549,28550,28555,28556,28557,28559,28571,28572,28584,28593,28595,28596,28605,28606,28607,28608,28609,28612,28618,28619,28621,28622,28623,28626,28629,28631,28642,28646,28647,28648,28674,28677,28680,28683,28686,28687,28692,28695,28709,28711,28712,28713,28721,28727,28734,28739,28740,28743,28745,28750,28752,28759,28770,28771,28781,28783,28785,28786,28787,28794,28808,28812,28813,28819,28820,28824,28826,28828,28833,28834,28835,28841,28847,28850,28851,28852,28855,28864,28870,28874,28876,28877,28878,28879,28881,28884,28887,28889,28890,28891,28898,28900,28912,28914,28919,28921,28924,28925,28926,28927,28941,28942,28944,28945,28957,28958,28963,28974,28975,28979,28983,28985,28989,28991,28993,28994,28998,29002,29003,29008,29009,29023,29028,29031,29032,29033,29035,29036,29042,29047,29051,29052,29067,29069,29070,29087,29089,29093,29099,29100,29102,29112,29115,29120,29123,29128,29129,29130,29146,29153,29155,29156,29158,29161,29167,29168,29175,29176,29179,29191,29193,29195,29197,29201,29203,29205,29237,29239,29243,29309,29310,29312,29313,29316,29317,29333,29338,29369,29379,29380,29382,29384,29396,29404,29411,29412,29418,29424,29439,29441,29453,29495,29499,29520,29537,29541,29555,29568,29569,29571,29573,29575,29579,29584,29589,29590,29593,29594,29599,29605,29606,29610,29612,29613,29617,29618,29623,29624,29628,29639,29668,29680,29685,29688,29689,29719,29721,29729,29744,29752,29755,29757,29763,29767,29774,29778,29781,29795,29798,29816,29821,29834,29838,29843,29855,29859,29862,29873,29876,29880,29881,29885,29899,29902,29919,29926,29932,29935,29945,29953,29960,29968,29979,29982,29985,29987,29988,29993,29995,29998,29999,30009,30011,30016,30017,30018,30022,30024,30026,30029,30031,30042,30043,30048,30051,30054,30057,30060,30065,30074,30075,30076,30077,30078,30081,30082,30083,30085,30090,30091,30092,30095,30096,30097,30099,30100,30107,30118,30121,30122,30124,30129,30134,30137,30147,30148,30156,30159,30163,30167,30169,30170,30174,30177,30178,30182,30186,30188,30198,30199,30204,30215,30218,30219,30222,30229,30230,30232,30237,30241,30243,30246,30250,30252,30255,30257,30258,30259,30263,30272,30273,30277,30279,30286,30290,30295,30303,30304,30306,30319,30321,30326,30335,30351,30418,30419,30420,30424,30429,30434,30441,30449,30452,30461,30487,30488,30489,30490,30495,30496,30500,30504,30508,30518,30519,30520,30521,30526,30527,30569,30623,30627,30656,30661,30665,30676,30700,30748,30859,30926,30930,30931,30960,30968,30992,31025,31027,31054,31075,31076,31078,31089,31098]]],["+",[11,11,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[42,3,3,2,5,[[1001,1,1,2,3],[1003,1,1,3,4],[1004,1,1,4,5]]],[43,2,2,5,7,[[1025,1,1,5,6],[1036,1,1,6,7]]],[45,2,2,7,9,[[1072,1,1,7,8],[1075,1,1,8,9]]],[46,1,1,9,10,[[1082,1,1,9,10]]],[57,1,1,10,11,[[1144,1,1,10,11]]]],[24491,25901,26232,26369,26423,27207,27620,28622,28686,28881,30241]]],["-",[4,4,[[41,1,1,0,1,[[992,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[49,1,1,3,4,[[1104,1,1,3,4]]]],[25815,27056,28609,29396]]],["And",[2,2,[[42,1,1,0,1,[[1000,1,1,0,1]]],[51,1,1,1,2,[[1114,1,1,1,2]]]],[26193,29613]]],["Because",[2,2,[[44,1,1,0,1,[[1049,1,1,0,1]]],[63,1,1,1,2,[[1165,1,1,1,2]]]],[28037,30665]]],["But",[2,2,[[59,1,1,0,1,[[1154,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[30461,30488]]],["For",[633,628,[[39,58,58,0,58,[[931,1,1,0,1],[933,3,3,1,4],[934,3,3,4,7],[935,3,3,7,10],[936,1,1,10,11],[937,2,2,11,13],[938,2,2,13,15],[939,4,4,15,19],[940,4,4,19,23],[941,3,3,23,26],[942,2,2,26,28],[943,2,2,28,30],[944,3,3,30,33],[946,2,2,33,35],[947,1,1,35,36],[948,1,1,36,37],[949,1,1,37,38],[950,2,2,38,40],[951,2,2,40,42],[952,7,7,42,49],[953,4,4,49,53],[954,4,4,53,57],[955,1,1,57,58]]],[40,37,37,58,95,[[959,2,2,58,60],[960,3,3,60,63],[961,2,2,63,65],[962,5,5,65,70],[963,5,5,70,75],[964,2,2,75,77],[965,5,5,77,82],[966,1,1,82,83],[967,1,1,83,84],[968,3,3,84,87],[969,4,4,87,91],[970,3,3,91,94],[971,1,1,94,95]]],[41,43,41,95,136,[[973,2,2,95,97],[976,1,1,97,98],[977,1,1,98,99],[978,4,3,99,102],[979,4,4,102,106],[980,3,2,106,108],[981,5,5,108,113],[982,1,1,113,114],[983,2,2,114,116],[984,4,4,116,120],[986,2,2,120,122],[988,1,1,122,123],[989,1,1,123,124],[990,2,2,124,126],[991,3,3,126,129],[993,3,3,129,132],[994,4,4,132,136]]],[42,26,26,136,162,[[999,5,5,136,141],[1000,3,3,141,144],[1001,5,5,144,149],[1002,3,3,149,152],[1003,2,2,152,154],[1008,2,2,154,156],[1009,3,3,156,159],[1012,1,1,159,160],[1015,1,1,160,161],[1016,1,1,161,162]]],[43,41,40,162,202,[[1018,1,1,162,163],[1019,4,4,163,167],[1020,1,1,167,168],[1021,3,3,168,171],[1022,1,1,171,172],[1023,1,1,172,173],[1025,3,3,173,176],[1026,1,1,176,177],[1027,1,1,177,178],[1030,3,3,178,181],[1032,2,2,181,183],[1034,4,3,183,186],[1035,1,1,186,187],[1036,3,3,187,190],[1037,3,3,190,193],[1038,2,2,193,195],[1040,1,1,195,196],[1041,1,1,196,197],[1042,2,2,197,199],[1043,1,1,199,200],[1044,1,1,200,201],[1045,1,1,201,202]]],[44,103,103,202,305,[[1046,6,6,202,208],[1047,7,7,208,215],[1048,3,3,215,218],[1049,4,4,218,222],[1050,7,7,222,229],[1051,6,6,229,235],[1052,9,9,235,244],[1053,13,13,244,257],[1054,9,9,257,266],[1055,9,9,266,275],[1056,10,10,275,285],[1057,2,2,285,287],[1058,5,5,287,292],[1059,6,6,292,298],[1060,5,5,298,303],[1061,2,2,303,305]]],[45,69,68,305,373,[[1062,6,6,305,311],[1063,3,3,311,314],[1064,7,6,314,320],[1065,5,5,320,325],[1066,3,3,325,328],[1067,1,1,328,329],[1068,4,4,329,333],[1069,2,2,333,335],[1070,4,4,335,339],[1071,1,1,339,340],[1072,11,11,340,351],[1073,4,4,351,355],[1074,2,2,355,357],[1075,5,5,357,362],[1076,8,8,362,370],[1077,3,3,370,373]]],[46,52,51,373,424,[[1078,5,5,373,378],[1079,4,4,378,382],[1080,3,3,382,385],[1081,4,4,385,389],[1082,8,8,389,397],[1083,1,1,397,398],[1084,3,3,398,401],[1085,3,3,401,404],[1086,2,2,404,406],[1087,6,6,406,412],[1088,6,6,412,418],[1089,3,3,418,421],[1090,4,3,421,424]]],[47,23,23,424,447,[[1091,3,3,424,427],[1092,4,4,427,431],[1093,4,4,431,435],[1094,3,3,435,438],[1095,5,5,438,443],[1096,4,4,443,447]]],[48,8,8,447,455,[[1098,3,3,447,450],[1101,5,5,450,455]]],[49,11,11,455,466,[[1103,4,4,455,459],[1104,4,4,459,463],[1105,3,3,463,466]]],[50,4,4,466,470,[[1108,2,2,466,468],[1109,1,1,468,469],[1110,1,1,469,470]]],[51,19,19,470,489,[[1111,2,2,470,472],[1112,7,7,472,479],[1113,2,2,479,481],[1114,5,5,481,486],[1115,3,3,486,489]]],[52,4,4,489,493,[[1117,1,1,489,490],[1118,3,3,490,493]]],[53,11,11,493,504,[[1120,3,3,493,496],[1121,1,1,496,497],[1122,3,3,497,500],[1123,2,2,500,502],[1124,2,2,502,504]]],[54,7,7,504,511,[[1125,1,1,504,505],[1126,1,1,505,506],[1127,2,2,506,508],[1128,3,3,508,511]]],[55,4,4,511,515,[[1129,2,2,511,513],[1130,1,1,513,514],[1131,1,1,514,515]]],[56,2,2,515,517,[[1132,2,2,515,517]]],[57,69,69,517,586,[[1133,1,1,517,518],[1134,7,7,518,525],[1135,4,4,525,529],[1136,7,7,529,536],[1137,3,3,536,539],[1138,5,5,539,544],[1139,11,11,544,555],[1140,4,4,555,559],[1141,6,6,559,565],[1142,8,8,565,573],[1143,3,3,573,576],[1144,7,7,576,583],[1145,3,3,583,586]]],[58,14,14,586,600,[[1146,5,5,586,591],[1147,5,5,591,596],[1148,3,3,596,599],[1149,1,1,599,600]]],[59,9,9,600,609,[[1152,4,4,600,604],[1153,3,3,604,607],[1154,2,2,607,609]]],[60,11,11,609,620,[[1156,5,5,609,614],[1157,5,5,614,619],[1158,1,1,619,620]]],[61,1,1,620,621,[[1163,1,1,620,621]]],[62,1,1,621,622,[[1164,1,1,621,622]]],[63,1,1,622,623,[[1165,1,1,622,623]]],[64,1,1,623,624,[[1166,1,1,623,624]]],[65,4,4,624,628,[[1175,1,1,624,625],[1182,1,1,625,626],[1183,1,1,626,627],[1188,1,1,627,628]]]],[23195,23252,23254,23280,23296,23303,23314,23318,23324,23345,23354,23384,23400,23437,23452,23469,23472,23477,23489,23497,23526,23529,23539,23551,23554,23556,23600,23601,23637,23652,23697,23698,23699,23738,23747,23774,23793,23858,23886,23902,23922,23957,23962,23964,23978,23981,23984,23985,23995,24022,24037,24043,24050,24063,24065,24066,24082,24147,24298,24323,24345,24348,24351,24372,24392,24424,24425,24427,24457,24459,24466,24471,24473,24484,24488,24535,24536,24544,24569,24578,24579,24587,24633,24663,24698,24709,24717,24723,24725,24736,24739,24759,24761,24810,24836,24908,24937,25073,25116,25184,25189,25190,25200,25203,25223,25228,25262,25274,25315,25325,25326,25327,25357,25387,25415,25435,25471,25489,25493,25511,25577,25581,25648,25675,25713,25720,25741,25752,25757,25830,25841,25861,25880,25882,25891,25901,26136,26137,26140,26144,26154,26164,26174,26200,26214,26230,26231,26236,26256,26290,26312,26321,26332,26333,26588,26623,26641,26645,26659,26753,26861,26876,26943,26964,26974,26983,26988,27018,27042,27044,27049,27095,27115,27183,27192,27199,27232,27305,27389,27398,27409,27463,27470,27543,27546,27551,27585,27609,27622,27625,27642,27653,27655,27693,27700,27742,27774,27807,27823,27849,27878,27926,27939,27941,27946,27947,27948,27950,27973,27974,27975,27976,27986,27987,27990,27994,27998,28014,28024,28025,28035,28036,28053,28054,28057,28060,28062,28064,28066,28073,28075,28078,28082,28088,28091,28093,28096,28099,28102,28105,28106,28109,28110,28113,28118,28119,28121,28122,28129,28130,28131,28134,28135,28136,28138,28140,28154,28158,28161,28164,28166,28170,28172,28174,28183,28187,28190,28191,28192,28193,28198,28199,28200,28201,28204,28210,28222,28224,28230,28233,28234,28238,28239,28241,28243,28248,28249,28267,28269,28270,28272,28275,28287,28288,28289,28291,28297,28298,28306,28307,28321,28329,28330,28354,28355,28374,28380,28381,28382,28384,28389,28396,28405,28410,28413,28414,28419,28421,28429,28431,28437,28440,28442,28448,28453,28457,28461,28466,28487,28494,28501,28503,28509,28532,28537,28549,28556,28557,28559,28593,28606,28607,28608,28612,28618,28619,28621,28623,28626,28629,28631,28642,28646,28647,28648,28674,28677,28680,28692,28695,28709,28711,28721,28727,28734,28739,28740,28743,28745,28771,28783,28785,28794,28808,28812,28813,28819,28820,28826,28828,28833,28841,28850,28851,28852,28864,28870,28874,28876,28878,28879,28884,28887,28889,28890,28891,28898,28900,28921,28926,28927,28941,28944,28945,28957,28958,28974,28975,28979,28983,28985,28989,28991,28993,28994,29002,29008,29009,29028,29035,29042,29047,29051,29052,29067,29069,29070,29089,29093,29099,29100,29112,29120,29128,29129,29153,29156,29158,29167,29168,29175,29176,29179,29191,29193,29201,29203,29237,29239,29243,29309,29312,29313,29316,29333,29369,29380,29382,29384,29404,29411,29412,29418,29424,29439,29441,29495,29499,29520,29555,29568,29569,29571,29573,29575,29579,29584,29589,29590,29594,29599,29605,29606,29610,29617,29618,29623,29624,29628,29668,29685,29688,29689,29719,29721,29729,29744,29752,29755,29757,29778,29781,29795,29798,29816,29838,29855,29859,29873,29876,29880,29899,29902,29919,29926,29945,29953,29968,29979,29982,29985,29987,29988,29993,29995,29998,29999,30009,30011,30016,30017,30018,30022,30024,30026,30029,30031,30042,30043,30048,30051,30054,30057,30060,30065,30074,30076,30077,30078,30081,30082,30083,30085,30090,30092,30095,30096,30099,30100,30107,30118,30121,30122,30124,30129,30134,30137,30147,30159,30163,30167,30169,30170,30174,30182,30186,30215,30218,30222,30229,30230,30232,30237,30250,30252,30255,30272,30273,30277,30286,30290,30295,30303,30304,30306,30319,30321,30326,30335,30351,30418,30419,30420,30424,30429,30434,30441,30449,30452,30487,30490,30495,30496,30500,30504,30508,30518,30520,30521,30527,30627,30656,30661,30676,30859,30968,30992,31098]]],["Let",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28305]]],["Why",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,1,1,3,4,[[1005,1,1,3,4]]]],[24152,24840,25957,26470]]],["and",[2,2,[[43,1,1,0,1,[[1025,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[27215,29834]]],["as",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23162]]],["because",[3,3,[[42,2,2,0,2,[[999,1,1,0,1],[1006,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]]],[26139,26507,27993]]],["doubt",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28550]]],["even",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30351]]],["for",[392,384,[[39,68,68,0,68,[[929,2,2,0,2],[930,5,5,2,7],[931,3,3,7,10],[932,4,4,10,14],[933,3,3,14,17],[934,6,6,17,23],[935,2,2,23,25],[937,3,3,25,28],[938,5,5,28,33],[940,2,2,33,35],[942,1,1,35,36],[943,1,1,36,37],[944,2,2,37,39],[945,2,2,39,41],[946,2,2,41,43],[947,2,2,43,45],[948,1,1,45,46],[949,1,1,46,47],[950,2,2,47,49],[951,8,8,49,57],[952,1,1,57,58],[954,5,5,58,63],[955,2,2,63,65],[956,3,3,65,68]]],[40,34,34,68,102,[[957,3,3,68,71],[958,1,1,71,72],[959,1,1,72,73],[961,1,1,73,74],[962,5,5,74,79],[963,1,1,79,80],[964,1,1,80,81],[965,3,3,81,84],[966,3,3,84,87],[967,3,3,87,90],[968,3,3,90,93],[969,5,5,93,98],[970,2,2,98,100],[972,2,2,100,102]]],[41,50,49,102,151,[[973,4,4,102,106],[974,1,1,106,107],[975,1,1,107,108],[976,1,1,108,109],[977,1,1,109,110],[978,8,7,110,117],[979,1,1,117,118],[980,3,3,118,121],[981,3,3,121,124],[982,1,1,124,125],[983,1,1,125,126],[986,1,1,126,127],[988,2,2,127,129],[989,1,1,129,130],[990,2,2,130,132],[991,2,2,132,134],[992,5,5,134,139],[993,4,4,139,143],[994,3,3,143,146],[995,5,5,146,151]]],[42,33,33,151,184,[[998,1,1,151,152],[999,2,2,152,154],[1000,5,5,154,159],[1001,4,4,159,163],[1002,3,3,163,166],[1003,3,3,166,169],[1004,2,2,169,171],[1005,1,1,171,172],[1007,1,1,172,173],[1008,1,1,173,174],[1009,1,1,174,175],[1010,1,1,175,176],[1012,2,2,176,178],[1014,1,1,178,179],[1015,2,2,179,181],[1016,1,1,181,182],[1017,2,2,182,184]]],[43,38,36,184,220,[[1021,4,4,184,188],[1022,1,1,188,189],[1024,2,2,189,191],[1025,1,1,191,192],[1026,1,1,192,193],[1030,1,1,193,194],[1033,2,2,194,196],[1035,3,3,196,199],[1036,1,1,199,200],[1037,3,3,200,203],[1038,3,3,203,206],[1039,2,2,206,208],[1040,4,4,208,212],[1043,3,2,212,214],[1044,4,3,214,217],[1045,3,3,217,220]]],[44,36,34,220,254,[[1046,3,3,220,223],[1047,2,1,223,224],[1048,3,3,224,227],[1049,2,2,227,229],[1050,1,1,229,230],[1051,3,3,230,233],[1052,4,4,233,237],[1053,3,3,237,240],[1055,1,1,240,241],[1056,1,1,241,242],[1057,2,2,242,244],[1058,5,4,244,248],[1059,4,4,248,252],[1060,1,1,252,253],[1061,1,1,253,254]]],[45,33,33,254,287,[[1063,3,3,254,257],[1064,4,4,257,261],[1065,1,1,261,262],[1067,1,1,262,263],[1068,2,2,263,265],[1069,1,1,265,266],[1070,3,3,266,269],[1071,5,5,269,274],[1072,1,1,274,275],[1075,5,5,275,280],[1076,4,4,280,284],[1077,3,3,284,287]]],[46,24,22,287,309,[[1078,1,1,287,288],[1079,2,2,288,290],[1080,2,2,290,292],[1081,1,1,292,293],[1083,2,2,293,295],[1084,3,3,295,298],[1085,1,1,298,299],[1086,1,1,299,300],[1087,1,1,300,301],[1088,3,3,301,304],[1089,7,5,304,309]]],[47,13,13,309,322,[[1091,1,1,309,310],[1092,2,2,310,312],[1093,4,4,312,316],[1094,3,3,316,319],[1096,3,3,319,322]]],[48,3,3,322,325,[[1101,2,2,322,324],[1102,1,1,324,325]]],[49,1,1,325,326,[[1106,1,1,325,326]]],[50,2,2,326,328,[[1109,2,2,326,328]]],[51,4,4,328,332,[[1112,1,1,328,329],[1113,1,1,329,330],[1114,1,1,330,331],[1115,1,1,331,332]]],[52,1,1,332,333,[[1118,1,1,332,333]]],[53,3,3,333,336,[[1122,1,1,333,334],[1123,2,2,334,336]]],[54,5,5,336,341,[[1125,1,1,336,337],[1126,1,1,337,338],[1127,1,1,338,339],[1128,2,2,339,341]]],[55,2,2,341,343,[[1131,2,2,341,343]]],[56,1,1,343,344,[[1132,1,1,343,344]]],[57,21,20,344,364,[[1137,1,1,344,345],[1139,2,2,345,347],[1140,1,1,347,348],[1142,2,2,348,350],[1143,6,6,350,356],[1144,2,2,356,358],[1145,7,6,358,364]]],[58,1,1,364,365,[[1146,1,1,364,365]]],[60,3,3,365,368,[[1156,1,1,365,366],[1157,1,1,366,367],[1158,1,1,367,368]]],[61,2,2,368,370,[[1160,1,1,368,369],[1162,1,1,369,370]]],[65,14,14,370,384,[[1167,1,1,370,371],[1169,1,1,371,372],[1175,1,1,372,373],[1179,1,1,373,374],[1180,2,2,374,376],[1182,1,1,376,377],[1185,2,2,377,379],[1187,4,4,379,383],[1188,1,1,383,384]]]],[23164,23165,23171,23174,23175,23182,23189,23194,23201,23207,23215,23219,23226,23227,23246,23263,23264,23289,23290,23298,23306,23314,23316,23328,23341,23392,23395,23403,23427,23434,23436,23440,23443,23522,23523,23621,23635,23674,23675,23715,23720,23734,23737,23776,23784,23808,23852,23888,23900,23921,23926,23927,23928,23931,23935,23937,23941,23963,24064,24085,24097,24106,24127,24148,24172,24197,24200,24201,24231,24237,24253,24275,24309,24406,24421,24438,24443,24455,24459,24490,24503,24544,24572,24577,24602,24610,24615,24653,24658,24672,24685,24687,24696,24724,24726,24728,24750,24752,24794,24824,24877,24881,24911,24923,24941,24969,24983,25033,25071,25146,25169,25172,25178,25179,25180,25191,25194,25201,25263,25285,25291,25345,25349,25351,25370,25409,25567,25622,25633,25672,25704,25711,25736,25779,25785,25798,25812,25815,25817,25834,25835,25849,25852,25866,25923,25935,25943,25947,25950,25969,25976,26120,26122,26154,26165,26179,26198,26201,26203,26223,26229,26246,26256,26263,26284,26328,26329,26340,26367,26405,26423,26462,26562,26627,26643,26698,26733,26739,26798,26831,26856,26884,26905,26906,27025,27034,27038,27056,27085,27149,27156,27197,27227,27370,27486,27511,27560,27572,27575,27617,27636,27639,27642,27667,27677,27686,27726,27730,27739,27745,27751,27755,27839,27849,27877,27880,27889,27901,27919,27921,27946,27949,27956,27963,28000,28011,28013,28031,28037,28063,28082,28087,28089,28092,28098,28106,28109,28123,28140,28142,28200,28232,28264,28265,28270,28272,28274,28277,28283,28284,28286,28290,28327,28338,28402,28404,28408,28412,28413,28423,28427,28448,28483,28496,28518,28535,28542,28555,28556,28571,28572,28584,28595,28596,28605,28680,28683,28687,28712,28713,28750,28752,28759,28770,28781,28786,28787,28824,28834,28835,28847,28855,28877,28912,28914,28919,28924,28925,28942,28963,28985,28991,28998,29003,29028,29031,29032,29033,29036,29067,29087,29102,29112,29115,29123,29130,29146,29155,29161,29195,29197,29205,29310,29317,29338,29453,29537,29541,29579,29593,29612,29639,29680,29763,29767,29774,29821,29843,29862,29881,29885,29932,29935,29960,30043,30075,30091,30097,30148,30156,30177,30178,30188,30198,30199,30204,30219,30229,30243,30246,30257,30258,30259,30263,30279,30489,30519,30526,30569,30623,30700,30748,30859,30926,30930,30931,30960,31025,31027,31054,31075,31076,31078,31089]]],["indeed",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28123]]],["seeing",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26964]]],["then",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29379]]],["therefore",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24538]]],["verily",[2,2,[[43,1,1,0,1,[[1033,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]]],[27520,28330]]],["will",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29023]]],["yet",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[44,1,1,1,2,[[1050,1,1,1,2]]]],[23660,28054]]]]},{"k":"G1064","v":[["*",[9,9,[[39,3,3,0,3,[[929,2,2,0,2],[952,1,1,2,3]]],[40,1,1,3,4,[[969,1,1,3,4]]],[41,2,2,4,6,[[973,1,1,4,5],[993,1,1,5,6]]],[51,1,1,6,7,[[1115,1,1,6,7]]],[55,1,1,7,8,[[1129,1,1,7,8]]],[65,1,1,8,9,[[1178,1,1,8,9]]]],[23162,23167,23976,24734,24924,25849,29624,29904,30893]]],["+",[7,7,[[39,3,3,0,3,[[929,2,2,0,2],[952,1,1,2,3]]],[40,1,1,3,4,[[969,1,1,3,4]]],[41,1,1,4,5,[[993,1,1,4,5]]],[51,1,1,5,6,[[1115,1,1,5,6]]],[65,1,1,6,7,[[1178,1,1,6,7]]]],[23162,23167,23976,24734,25849,29624,30893]]],["bellies",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29904]]],["womb",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24924]]]]},{"k":"G1065","v":[["*",[11,11,[[41,4,4,0,4,[[983,1,1,0,1],[990,1,1,1,2],[991,1,1,2,3],[996,1,1,3,4]]],[43,4,4,4,8,[[1019,1,1,4,5],[1025,1,1,5,6],[1028,1,1,6,7],[1034,1,1,7,8]]],[44,1,1,8,9,[[1053,1,1,8,9]]],[45,2,2,9,11,[[1065,1,1,9,10],[1070,1,1,10,11]]]],[25413,25693,25773,26012,26967,27206,27325,27550,28148,28441,28542]]],["+",[7,7,[[41,2,2,0,2,[[991,1,1,0,1],[996,1,1,1,2]]],[43,3,3,2,5,[[1019,1,1,2,3],[1025,1,1,3,4],[1034,1,1,4,5]]],[44,1,1,5,6,[[1053,1,1,5,6]]],[45,1,1,6,7,[[1065,1,1,6,7]]]],[25773,26012,26967,27206,27550,28148,28441]]],["Yet",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25693]]],["doubtless",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28542]]],["hath",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27325]]],["yet",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25413]]]]},{"k":"G1066","v":[["Gedeon",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30204]]]]},{"k":"G1067","v":[["hell",[12,12,[[39,7,7,0,7,[[933,3,3,0,3],[938,1,1,3,4],[946,1,1,4,5],[951,2,2,5,7]]],[40,3,3,7,10,[[965,3,3,7,10]]],[41,1,1,10,11,[[984,1,1,10,11]]],[58,1,1,11,12,[[1148,1,1,11,12]]]],[23256,23263,23264,23445,23736,23933,23951,24581,24583,24585,25464,30325]]]]},{"k":"G1068","v":[["Gethsemane",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24090,24786]]]]},{"k":"G1069","v":[["*",[4,4,[[41,3,3,0,3,[[986,1,1,0,1],[987,2,2,1,3]]],[42,1,1,3,4,[[1005,1,1,3,4]]]],[25565,25594,25597,26448]]],["+",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25597]]],["neighbours",[3,3,[[41,2,2,0,2,[[986,1,1,0,1],[987,1,1,1,2]]],[42,1,1,2,3,[[1005,1,1,2,3]]]],[25565,25594,26448]]]]},{"k":"G1070","v":[["laugh",[2,2,[[41,2,2,0,2,[[978,2,2,0,2]]]],[25167,25171]]]]},{"k":"G1071","v":[["laughter",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30346]]]]},{"k":"G1072","v":[["*",[9,8,[[40,2,2,0,2,[[960,1,1,0,1],[971,1,1,1,2]]],[41,2,2,2,4,[[986,1,1,2,3],[987,1,1,3,4]]],[42,3,2,4,6,[[998,2,1,4,5],[1002,1,1,5,6]]],[65,2,2,6,8,[[1174,1,1,6,7],[1181,1,1,7,8]]]],[24360,24862,25576,25604,26102,26270,30832,30954]]],["+",[2,2,[[40,2,2,0,2,[[960,1,1,0,1],[971,1,1,1,2]]]],[24360,24862]]],["Fill",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26102]]],["filled",[6,6,[[41,2,2,0,2,[[986,1,1,0,1],[987,1,1,1,2]]],[42,2,2,2,4,[[998,1,1,2,3],[1002,1,1,3,4]]],[65,2,2,4,6,[[1174,1,1,4,5],[1181,1,1,5,6]]]],[25576,25604,26102,26270,30832,30954]]]]},{"k":"G1073","v":[["*",[11,11,[[39,2,2,0,2,[[951,2,2,0,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[44,1,1,3,4,[[1048,1,1,3,4]]],[65,7,7,4,11,[[1170,2,2,4,6],[1171,1,1,6,7],[1181,1,1,7,8],[1183,2,2,8,10],[1187,1,1,10,11]]]],[23943,23945,25444,28005,30774,30776,30787,30953,30978,30979,31062]]],["+",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23945]]],["full",[10,10,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[65,7,7,3,10,[[1170,2,2,3,5],[1171,1,1,5,6],[1181,1,1,6,7],[1183,2,2,7,9],[1187,1,1,9,10]]]],[23943,25444,28005,30774,30776,30787,30953,30978,30979,31062]]]]},{"k":"G1074","v":[["*",[42,37,[[39,13,10,0,10,[[929,4,1,0,1],[939,1,1,1,2],[940,4,4,2,6],[944,1,1,6,7],[945,1,1,7,8],[951,1,1,8,9],[952,1,1,9,10]]],[40,5,4,10,14,[[964,3,2,10,12],[965,1,1,12,13],[969,1,1,13,14]]],[41,14,13,14,27,[[973,3,2,14,16],[979,1,1,16,17],[981,1,1,17,18],[983,6,6,18,24],[988,1,1,24,25],[989,1,1,25,26],[993,1,1,26,27]]],[43,5,5,27,32,[[1019,1,1,27,28],[1025,1,1,28,29],[1030,1,1,29,30],[1031,1,1,30,31],[1032,1,1,31,32]]],[48,2,2,32,34,[[1099,2,2,32,34]]],[49,1,1,34,35,[[1104,1,1,34,35]]],[50,1,1,35,36,[[1107,1,1,35,36]]],[57,1,1,36,37,[[1135,1,1,36,37]]]],[23161,23475,23528,23530,23531,23534,23676,23717,23954,23991,24512,24538,24557,24747,24941,24943,25226,25342,25434,25435,25436,25437,25455,25456,25628,25676,25858,26989,27209,27398,27430,27463,29256,29272,29406,29491,30005]]],["+",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27463]]],["ages",[2,2,[[48,2,2,0,2,[[1099,2,2,0,2]]]],[29256,29272]]],["generation",[31,29,[[39,9,9,0,9,[[939,1,1,0,1],[940,4,4,1,5],[944,1,1,5,6],[945,1,1,6,7],[951,1,1,7,8],[952,1,1,8,9]]],[40,5,4,9,13,[[964,3,2,9,11],[965,1,1,11,12],[969,1,1,12,13]]],[41,13,12,13,25,[[973,2,1,13,14],[979,1,1,14,15],[981,1,1,15,16],[983,6,6,16,22],[988,1,1,22,23],[989,1,1,23,24],[993,1,1,24,25]]],[43,3,3,25,28,[[1019,1,1,25,26],[1025,1,1,26,27],[1030,1,1,27,28]]],[57,1,1,28,29,[[1135,1,1,28,29]]]],[23475,23528,23530,23531,23534,23676,23717,23954,23991,24512,24538,24557,24747,24943,25226,25342,25434,25435,25436,25437,25455,25456,25628,25676,25858,26989,27209,27398,30005]]],["generations",[6,3,[[39,4,1,0,1,[[929,4,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[50,1,1,2,3,[[1107,1,1,2,3]]]],[23161,24941,29491]]],["nation",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29406]]],["times",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27430]]]]},{"k":"G1075","v":[["+",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30070]]]]},{"k":"G1076","v":[["genealogies",[2,2,[[53,1,1,0,1,[[1119,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[29700,29932]]]]},{"k":"G1077","v":[["birthday",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]]],[23603,24428]]]]},{"k":"G1078","v":[["*",[3,3,[[39,1,1,0,1,[[929,1,1,0,1]]],[58,2,2,1,3,[[1146,1,1,1,2],[1148,1,1,2,3]]]],[23145,30289,30325]]],["generation",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23145]]],["natural",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30289]]],["nature",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30325]]]]},{"k":"G1079","v":[["birth",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26441]]]]},{"k":"G1080","v":[["*",[97,65,[[39,45,20,0,20,[[929,41,16,0,16],[930,2,2,16,18],[947,1,1,18,19],[954,1,1,19,20]]],[40,1,1,20,21,[[970,1,1,20,21]]],[41,4,4,21,25,[[973,3,3,21,24],[995,1,1,24,25]]],[42,18,15,25,40,[[997,1,1,25,26],[999,8,6,26,32],[1004,1,1,32,33],[1005,5,5,33,38],[1012,2,1,38,39],[1014,1,1,39,40]]],[43,7,7,40,47,[[1019,1,1,40,41],[1024,3,3,41,44],[1030,1,1,44,45],[1039,2,2,45,47]]],[44,1,1,47,48,[[1054,1,1,47,48]]],[45,1,1,48,49,[[1065,1,1,48,49]]],[47,3,3,49,52,[[1094,3,3,49,52]]],[54,1,1,52,53,[[1126,1,1,52,53]]],[56,1,1,53,54,[[1132,1,1,53,54]]],[57,4,4,54,58,[[1133,1,1,54,55],[1137,1,1,55,56],[1143,2,2,56,58]]],[60,1,1,58,59,[[1157,1,1,58,59]]],[61,10,6,59,65,[[1160,1,1,59,60],[1161,2,1,60,61],[1162,1,1,61,62],[1163,6,3,62,65]]]],[23146,23147,23148,23149,23150,23151,23152,23153,23154,23155,23156,23157,23158,23159,23160,23164,23170,23173,23774,24078,24775,24906,24928,24950,25964,26057,26123,26124,26125,26126,26127,26128,26422,26442,26459,26460,26472,26474,26747,26822,26957,27124,27136,27145,27395,27707,27732,28166,28448,29154,29155,29160,29850,29948,29968,30035,30184,30195,30512,30579,30588,30610,30625,30628,30642]]],["+",[1,1,[[61,1,1,0,1,[[1163,1,1,0,1]]]],[30625]]],["bare",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25964]]],["bear",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24906]]],["begat",[42,18,[[39,39,15,0,15,[[929,39,15,0,15]]],[43,2,2,15,17,[[1024,2,2,15,17]]],[61,1,1,17,18,[[1163,1,1,17,18]]]],[23146,23147,23148,23149,23150,23151,23152,23153,23154,23155,23156,23157,23158,23159,23160,27124,27145,30625]]],["begotten",[6,6,[[43,1,1,0,1,[[1030,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]],[57,2,2,3,5,[[1133,1,1,3,4],[1137,1,1,4,5]]],[61,1,1,5,6,[[1163,1,1,5,6]]]],[27395,28448,29948,29968,30035,30642]]],["born",[39,36,[[39,5,5,0,5,[[929,1,1,0,1],[930,2,2,1,3],[947,1,1,3,4],[954,1,1,4,5]]],[40,1,1,5,6,[[970,1,1,5,6]]],[41,1,1,6,7,[[973,1,1,6,7]]],[42,17,15,7,22,[[997,1,1,7,8],[999,8,6,8,14],[1004,1,1,14,15],[1005,5,5,15,20],[1012,1,1,20,21],[1014,1,1,21,22]]],[43,4,4,22,26,[[1019,1,1,22,23],[1024,1,1,23,24],[1039,2,2,24,26]]],[44,1,1,26,27,[[1054,1,1,26,27]]],[47,2,2,27,29,[[1094,2,2,27,29]]],[57,1,1,29,30,[[1143,1,1,29,30]]],[61,7,6,30,36,[[1160,1,1,30,31],[1161,2,1,31,32],[1162,1,1,32,33],[1163,3,3,33,36]]]],[23160,23170,23173,23774,24078,24775,24928,26057,26123,26124,26125,26126,26127,26128,26422,26442,26459,26460,26472,26474,26747,26822,26957,27136,27707,27732,28166,29154,29160,30195,30579,30588,30610,30625,30628,30642]]],["conceived",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23164]]],["delivered",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26747]]],["forth",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24950]]],["gender",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29850]]],["gendereth",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29155]]],["made",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30512]]],["sprang",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30184]]]]},{"k":"G1081","v":[["*",[9,9,[[39,4,4,0,4,[[931,1,1,0,1],[940,1,1,1,2],[951,1,1,2,3],[954,1,1,3,4]]],[40,1,1,4,5,[[970,1,1,4,5]]],[41,3,3,5,8,[[975,1,1,5,6],[984,1,1,6,7],[994,1,1,7,8]]],[46,1,1,8,9,[[1086,1,1,8,9]]]],[23199,23523,23951,24083,24779,25032,25477,25882,28966]]],["fruit",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]]],[24083,24779,25882]]],["fruits",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[46,1,1,1,2,[[1086,1,1,1,2]]]],[25477,28966]]],["generation",[4,4,[[39,3,3,0,3,[[931,1,1,0,1],[940,1,1,1,2],[951,1,1,2,3]]],[41,1,1,3,4,[[975,1,1,3,4]]]],[23199,23523,23951,25032]]]]},{"k":"G1082","v":[["Gennesaret",[3,3,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,1,1,2,3,[[977,1,1,2,3]]]],[23631,24460,25108]]]]},{"k":"G1083","v":[["birth",[2,2,[[39,1,1,0,1,[[929,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]]],[23162,24907]]]]},{"k":"G1084","v":[["born",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]]],[23470,25223]]]]},{"k":"G1085","v":[["*",[21,21,[[39,2,2,0,2,[[941,1,1,0,1],[945,1,1,1,2]]],[40,2,2,2,4,[[963,1,1,2,3],[965,1,1,3,4]]],[43,9,9,4,13,[[1021,2,2,4,6],[1024,2,2,6,8],[1030,1,1,8,9],[1034,2,2,9,11],[1035,2,2,11,13]]],[45,3,3,13,16,[[1073,2,2,13,15],[1075,1,1,15,16]]],[46,1,1,16,17,[[1088,1,1,16,17]]],[47,1,1,17,18,[[1091,1,1,17,18]]],[49,1,1,18,19,[[1105,1,1,18,19]]],[59,1,1,19,20,[[1152,1,1,19,20]]],[65,1,1,20,21,[[1188,1,1,20,21]]]],[23586,23721,24489,24567,27028,27058,27129,27135,27388,27551,27552,27559,27581,28644,28662,28688,29015,29071,29426,30408,31096]]],["+",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27058]]],["born",[2,2,[[43,2,2,0,2,[[1035,2,2,0,2]]]],[27559,27581]]],["countrymen",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29015]]],["diversities",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28662]]],["generation",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30408]]],["kind",[3,3,[[39,2,2,0,2,[[941,1,1,0,1],[945,1,1,1,2]]],[40,1,1,2,3,[[965,1,1,2,3]]]],[23586,23721,24567]]],["kindred",[3,3,[[43,3,3,0,3,[[1021,1,1,0,1],[1024,2,2,1,3]]]],[27028,27129,27135]]],["kinds",[2,2,[[45,2,2,0,2,[[1073,1,1,0,1],[1075,1,1,1,2]]]],[28644,28688]]],["nation",[2,2,[[40,1,1,0,1,[[963,1,1,0,1]]],[47,1,1,1,2,[[1091,1,1,1,2]]]],[24489,29071]]],["offspring",[3,3,[[43,2,2,0,2,[[1034,2,2,0,2]]],[65,1,1,2,3,[[1188,1,1,2,3]]]],[27551,27552,31096]]],["stock",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[27388,29426]]]]},{"k":"G1086","v":[["Gergesenes",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23373]]]]},{"k":"G1087","v":[["senate",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27080]]]]},{"k":"G1088","v":[["old",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26124]]]]},{"k":"G1089","v":[["*",[15,15,[[39,2,2,0,2,[[944,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[965,1,1,2,3]]],[41,2,2,3,5,[[981,1,1,3,4],[986,1,1,4,5]]],[42,2,2,5,7,[[998,1,1,5,6],[1004,1,1,6,7]]],[43,3,3,7,10,[[1027,1,1,7,8],[1037,1,1,8,9],[1040,1,1,9,10]]],[50,1,1,10,11,[[1108,1,1,10,11]]],[57,3,3,11,14,[[1134,1,1,11,12],[1138,2,2,12,14]]],[59,1,1,14,15,[[1152,1,1,14,15]]]],[23700,24163,24539,25328,25577,26104,26433,27269,27637,27748,29515,29986,30048,30049,30402]]],["eat",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27748]]],["eaten",[2,2,[[43,2,2,0,2,[[1027,1,1,0,1],[1037,1,1,1,2]]]],[27269,27637]]],["taste",[7,7,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,2,2,2,4,[[981,1,1,2,3],[986,1,1,3,4]]],[42,1,1,4,5,[[1004,1,1,4,5]]],[50,1,1,5,6,[[1108,1,1,5,6]]],[57,1,1,6,7,[[1134,1,1,6,7]]]],[23700,24539,25328,25577,26433,29515,29986]]],["tasted",[5,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,1,1,1,2,[[998,1,1,1,2]]],[57,2,2,2,4,[[1138,2,2,2,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[24163,26104,30048,30049,30402]]]]},{"k":"G1090","v":[["dressed",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30051]]]]},{"k":"G1091","v":[["husbandry",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28419]]]]},{"k":"G1092","v":[["*",[19,17,[[39,6,6,0,6,[[949,6,6,0,6]]],[40,5,4,6,10,[[968,5,4,6,10]]],[41,5,4,10,14,[[992,5,4,10,14]]],[42,1,1,14,15,[[1011,1,1,14,15]]],[54,1,1,15,16,[[1126,1,1,15,16]]],[58,1,1,16,17,[[1150,1,1,16,17]]]],[23859,23860,23861,23864,23866,23867,24674,24675,24680,24682,25788,25789,25793,25795,26700,29833,30361]]],["husbandman",[3,3,[[42,1,1,0,1,[[1011,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]],[58,1,1,2,3,[[1150,1,1,2,3]]]],[26700,29833,30361]]],["husbandmen",[16,14,[[39,6,6,0,6,[[949,6,6,0,6]]],[40,5,4,6,10,[[968,5,4,6,10]]],[41,5,4,10,14,[[992,5,4,10,14]]]],[23859,23860,23861,23864,23866,23867,24674,24675,24680,24682,25788,25789,25793,25795]]]]},{"k":"G1093","v":[["*",[252,226,[[39,42,38,0,38,[[930,3,3,0,3],[932,2,1,3,4],[933,4,4,4,8],[934,2,2,8,10],[937,3,3,10,13],[938,3,3,13,16],[939,2,2,16,18],[940,2,2,18,20],[941,4,3,20,23],[942,1,1,23,24],[943,1,1,24,25],[944,2,1,25,26],[945,1,1,26,27],[946,3,2,27,29],[951,2,2,29,31],[952,2,2,31,33],[953,2,2,33,35],[955,2,2,35,37],[956,1,1,37,38]]],[40,19,17,38,55,[[958,1,1,38,39],[960,9,7,39,46],[962,2,2,46,48],[964,1,1,48,49],[965,2,2,49,51],[969,2,2,51,53],[970,1,1,53,54],[971,1,1,54,55]]],[41,26,26,55,81,[[974,1,1,55,56],[976,1,1,56,57],[977,3,3,57,60],[978,1,1,60,61],[980,3,3,61,64],[982,1,1,64,65],[983,2,2,65,67],[984,3,3,67,70],[985,1,1,70,71],[986,1,1,71,72],[988,1,1,72,73],[990,1,1,73,74],[993,4,4,74,78],[994,1,1,78,79],[995,1,1,79,80],[996,1,1,80,81]]],[42,13,11,81,92,[[999,4,2,81,83],[1002,1,1,83,84],[1004,2,2,84,86],[1008,2,2,86,88],[1013,1,1,88,89],[1017,3,3,89,92]]],[43,34,31,92,123,[[1018,1,1,92,93],[1019,1,1,93,94],[1020,1,1,94,95],[1021,2,2,95,97],[1024,11,9,97,106],[1025,1,1,106,107],[1026,2,2,107,109],[1027,2,2,109,111],[1028,1,1,111,112],[1030,4,3,112,115],[1031,1,1,115,116],[1034,2,2,116,118],[1039,1,1,118,119],[1043,1,1,119,120],[1044,3,3,120,123]]],[44,3,3,123,126,[[1054,2,2,123,125],[1055,1,1,125,126]]],[45,4,4,126,130,[[1069,1,1,126,127],[1071,2,2,127,129],[1076,1,1,129,130]]],[48,4,4,130,134,[[1097,1,1,130,131],[1099,1,1,131,132],[1100,1,1,132,133],[1102,1,1,133,134]]],[50,4,4,134,138,[[1107,2,2,134,136],[1109,2,2,136,138]]],[57,10,9,138,147,[[1133,1,1,138,139],[1138,1,1,139,140],[1140,2,2,140,142],[1143,3,3,142,145],[1144,3,2,145,147]]],[58,5,5,147,152,[[1150,5,5,147,152]]],[60,4,4,152,156,[[1158,4,4,152,156]]],[61,1,1,156,157,[[1163,1,1,156,157]]],[64,1,1,157,158,[[1166,1,1,157,158]]],[65,82,68,158,226,[[1167,2,2,158,160],[1169,1,1,160,161],[1171,6,4,161,165],[1172,6,5,165,170],[1173,5,3,170,173],[1174,3,3,173,176],[1175,4,3,176,179],[1176,4,4,179,183],[1177,5,4,183,187],[1178,6,5,187,192],[1179,7,6,192,198],[1180,9,7,198,205],[1182,4,4,205,209],[1183,5,4,209,213],[1184,7,6,213,219],[1185,2,2,219,221],[1186,3,3,221,224],[1187,3,2,224,226]]]],[23175,23189,23190,23224,23239,23247,23252,23269,23292,23301,23385,23405,23410,23432,23446,23451,23483,23484,23529,23531,23544,23547,23562,23631,23668,23691,23725,23745,23746,23927,23953,23987,23992,24026,24033,24174,24180,24213,24270,24324,24328,24331,24343,24349,24351,24354,24454,24460,24506,24541,24558,24744,24748,24789,24859,24987,25088,25110,25118,25131,25195,25253,25260,25272,25384,25407,25436,25508,25510,25515,25525,25588,25637,25696,25849,25851,25859,25861,25908,25979,25996,26142,26151,26278,26387,26389,26604,26612,26763,26906,26907,26909,26931,26968,27021,27046,27048,27119,27120,27122,27127,27145,27149,27152,27156,27165,27209,27220,27224,27270,27271,27313,27379,27381,27409,27429,27547,27549,27726,27837,27894,27898,27899,28172,28183,28206,28532,28593,28595,28765,29216,29266,29281,29340,29481,29485,29519,29522,29973,30051,30096,30101,30181,30185,30210,30237,30238,30359,30361,30366,30371,30372,30527,30529,30532,30535,30632,30677,30702,30704,30756,30782,30785,30789,30792,30797,30801,30803,30806,30808,30811,30812,30813,30832,30834,30840,30841,30843,30844,30863,30866,30867,30869,30876,30878,30882,30890,30895,30900,30903,30904,30907,30911,30916,30919,30920,30921,30922,30929,30932,30933,30941,30942,30944,30945,30955,30956,30968,30972,30977,30980,30983,30993,30994,30996,31002,31004,31016,31017,31019,31036,31046,31047,31049,31054,31077]]],["+",[2,2,[[42,1,1,0,1,[[999,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]]],[26151,27381]]],["EARTH",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30980]]],["country",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[23410,27119]]],["earth",[187,166,[[39,27,24,0,24,[[933,4,4,0,4],[934,2,2,4,6],[937,1,1,6,7],[938,1,1,7,8],[939,1,1,8,9],[940,2,2,9,11],[941,2,1,11,12],[944,2,1,12,13],[945,1,1,13,14],[946,3,2,14,16],[951,2,2,16,18],[952,2,2,18,20],[953,2,2,20,22],[955,1,1,22,23],[956,1,1,23,24]]],[40,9,7,24,31,[[958,1,1,24,25],[960,5,3,25,28],[965,1,1,28,29],[969,2,2,29,31]]],[41,16,16,31,47,[[974,1,1,31,32],[977,1,1,32,33],[978,1,1,33,34],[982,1,1,34,35],[983,2,2,35,37],[984,3,3,37,40],[988,1,1,40,41],[990,1,1,41,42],[993,3,3,42,45],[995,1,1,45,46],[996,1,1,46,47]]],[42,4,3,47,50,[[999,2,1,47,48],[1008,1,1,48,49],[1013,1,1,49,50]]],[43,18,18,50,68,[[1018,1,1,50,51],[1019,1,1,51,52],[1020,1,1,52,53],[1021,2,2,53,55],[1024,1,1,55,56],[1025,1,1,56,57],[1026,2,2,57,59],[1027,2,2,59,61],[1028,1,1,61,62],[1030,1,1,62,63],[1031,1,1,63,64],[1034,2,2,64,66],[1039,1,1,66,67],[1043,1,1,67,68]]],[44,3,3,68,71,[[1054,2,2,68,70],[1055,1,1,70,71]]],[45,4,4,71,75,[[1069,1,1,71,72],[1071,2,2,72,74],[1076,1,1,74,75]]],[48,4,4,75,79,[[1097,1,1,75,76],[1099,1,1,76,77],[1100,1,1,77,78],[1102,1,1,78,79]]],[50,4,4,79,83,[[1107,2,2,79,81],[1109,2,2,81,83]]],[57,8,7,83,90,[[1133,1,1,83,84],[1138,1,1,84,85],[1140,1,1,85,86],[1143,2,2,86,88],[1144,3,2,88,90]]],[58,5,5,90,95,[[1150,5,5,90,95]]],[60,4,4,95,99,[[1158,4,4,95,99]]],[61,1,1,99,100,[[1163,1,1,99,100]]],[65,80,66,100,166,[[1167,2,2,100,102],[1169,1,1,102,103],[1171,6,4,103,107],[1172,6,5,107,112],[1173,5,3,112,115],[1174,3,3,115,118],[1175,4,3,118,121],[1176,4,4,121,125],[1177,5,4,125,129],[1178,6,5,129,134],[1179,6,5,134,139],[1180,9,7,139,146],[1182,4,4,146,150],[1183,4,3,150,153],[1184,7,6,153,159],[1185,2,2,159,161],[1186,3,3,161,164],[1187,3,2,164,166]]]],[23239,23247,23252,23269,23292,23301,23385,23451,23484,23529,23531,23544,23691,23725,23745,23746,23927,23953,23987,23992,24026,24033,24180,24213,24270,24328,24351,24354,24541,24744,24748,24987,25131,25195,25384,25407,25436,25508,25510,25515,25637,25696,25851,25859,25861,25979,25996,26151,26612,26763,26931,26968,27021,27046,27048,27165,27209,27220,27224,27270,27271,27313,27409,27429,27547,27549,27726,27837,28172,28183,28206,28532,28593,28595,28765,29216,29266,29281,29340,29481,29485,29519,29522,29973,30051,30096,30185,30210,30237,30238,30359,30361,30366,30371,30372,30527,30529,30532,30535,30632,30702,30704,30756,30782,30785,30789,30792,30797,30801,30803,30806,30808,30811,30812,30813,30832,30834,30840,30841,30843,30844,30863,30866,30867,30869,30876,30878,30882,30890,30895,30900,30903,30904,30907,30916,30919,30920,30921,30922,30929,30932,30933,30941,30942,30944,30945,30955,30956,30968,30972,30977,30983,30993,30994,30996,31002,31004,31016,31017,31019,31036,31046,31047,31049,31054,31077]]],["ground",[18,18,[[39,4,4,0,4,[[938,1,1,0,1],[941,2,2,1,3],[943,1,1,3,4]]],[40,6,6,4,10,[[960,3,3,4,7],[964,1,1,7,8],[965,1,1,8,9],[970,1,1,9,10]]],[41,4,4,10,14,[[980,2,2,10,12],[985,1,1,12,13],[994,1,1,13,14]]],[42,3,3,14,17,[[1004,2,2,14,16],[1008,1,1,16,17]]],[43,1,1,17,18,[[1024,1,1,17,18]]]],[23446,23547,23562,23668,24331,24343,24349,24506,24558,24789,25253,25260,25525,25908,26387,26389,26604,27149]]],["land",[41,39,[[39,10,9,0,9,[[930,3,3,0,3],[932,2,1,3,4],[937,1,1,4,5],[938,1,1,5,6],[939,1,1,6,7],[942,1,1,7,8],[955,1,1,8,9]]],[40,4,4,9,13,[[960,1,1,9,10],[962,2,2,10,12],[971,1,1,12,13]]],[41,6,6,13,19,[[976,1,1,13,14],[977,2,2,14,16],[980,1,1,16,17],[986,1,1,17,18],[993,1,1,18,19]]],[42,5,5,19,24,[[999,1,1,19,20],[1002,1,1,20,21],[1017,3,3,21,24]]],[43,13,12,24,36,[[1024,8,7,24,31],[1030,2,2,31,33],[1044,3,3,33,36]]],[57,2,2,36,38,[[1140,1,1,36,37],[1143,1,1,37,38]]],[64,1,1,38,39,[[1166,1,1,38,39]]]],[23175,23189,23190,23224,23405,23432,23483,23631,24174,24324,24454,24460,24859,25088,25110,25118,25272,25588,25849,26142,26278,26906,26907,26909,27119,27120,27122,27127,27145,27152,27156,27379,27381,27894,27898,27899,30101,30181,30677]]],["world",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30911]]]]},{"k":"G1094","v":[["age",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24929]]]]},{"k":"G1095","v":[["old",[2,2,[[42,1,1,0,1,[[1017,1,1,0,1]]],[57,1,1,1,2,[[1140,1,1,1,2]]]],[26916,30105]]]]},{"k":"G1096","v":[["*",[672,632,[[39,74,69,0,69,[[929,1,1,0,1],[932,1,1,1,2],[933,2,2,2,4],[934,2,2,4,6],[935,1,1,6,7],[936,4,4,7,11],[937,3,3,11,14],[938,2,2,14,16],[939,7,5,16,21],[940,1,1,21,22],[941,4,4,22,26],[942,2,2,26,28],[943,1,1,28,29],[944,1,1,29,30],[945,1,1,30,31],[946,6,5,31,36],[947,2,2,36,38],[948,2,2,38,40],[949,5,4,40,44],[951,2,2,44,46],[952,7,6,46,52],[953,1,1,52,53],[954,8,8,53,61],[955,5,5,61,66],[956,3,3,66,69]]],[40,53,50,69,119,[[957,5,5,69,74],[958,4,4,74,78],[960,10,10,78,88],[961,3,3,88,91],[962,6,5,91,96],[965,6,6,96,102],[966,2,2,102,104],[967,2,2,104,106],[968,2,2,106,108],[969,7,6,108,114],[970,2,2,114,116],[971,3,2,116,118],[972,1,1,118,119]]],[41,135,132,119,251,[[973,10,10,119,129],[974,8,7,129,136],[975,3,3,136,139],[976,5,5,139,144],[977,3,3,144,147],[978,8,8,147,155],[979,1,1,155,156],[980,8,8,156,164],[981,11,11,164,175],[982,6,5,175,180],[983,6,6,180,186],[984,3,3,186,189],[985,4,4,189,193],[986,3,3,193,196],[987,2,2,196,198],[988,3,3,198,201],[989,4,4,201,205],[990,3,3,205,208],[991,5,5,208,213],[992,5,5,213,218],[993,6,6,218,224],[994,8,7,224,231],[995,8,8,231,239],[996,12,12,239,251]]],[42,53,48,251,299,[[997,12,10,251,261],[998,2,2,261,263],[999,2,2,263,265],[1000,1,1,265,266],[1001,5,4,266,270],[1002,5,5,270,275],[1003,1,1,275,276],[1004,2,2,276,278],[1005,3,3,278,281],[1006,4,4,281,285],[1008,4,4,285,289],[1009,3,2,289,291],[1010,3,2,291,293],[1011,2,2,293,295],[1012,1,1,295,296],[1015,1,1,296,297],[1016,1,1,297,298],[1017,1,1,298,299]]],[43,125,119,299,418,[[1018,5,5,299,304],[1019,4,3,304,307],[1021,8,8,307,315],[1022,7,6,315,321],[1023,1,1,321,322],[1024,8,8,322,330],[1025,3,3,330,333],[1026,5,5,333,338],[1027,7,7,338,345],[1028,4,4,345,349],[1029,6,5,349,354],[1030,3,3,354,357],[1031,3,3,357,360],[1032,4,4,360,364],[1033,5,5,364,369],[1036,8,8,369,377],[1037,6,4,377,381],[1038,7,7,381,388],[1039,4,3,388,391],[1040,4,4,391,395],[1041,2,2,395,397],[1042,2,2,397,399],[1043,6,6,399,405],[1044,9,9,405,414],[1045,4,4,414,418]]],[44,35,31,418,449,[[1046,1,1,418,419],[1047,1,1,419,420],[1048,5,4,420,424],[1049,1,1,424,425],[1051,3,3,425,428],[1052,7,4,428,432],[1054,2,2,432,434],[1055,1,1,434,435],[1056,8,8,435,443],[1057,1,1,443,444],[1060,3,3,444,447],[1061,2,2,447,449]]],[45,42,39,449,488,[[1062,1,1,449,450],[1063,1,1,450,451],[1064,3,2,451,453],[1065,4,4,453,457],[1067,1,1,457,458],[1068,3,3,458,461],[1069,1,1,461,462],[1070,6,5,462,467],[1071,4,4,467,471],[1072,2,2,471,473],[1074,2,2,473,475],[1075,5,4,475,479],[1076,6,6,479,485],[1077,3,3,485,488]]],[46,12,10,488,498,[[1078,4,3,488,491],[1080,1,1,491,492],[1082,2,2,492,494],[1083,1,1,494,495],[1084,1,1,495,496],[1085,2,1,496,497],[1089,1,1,497,498]]],[47,12,11,498,509,[[1092,1,1,498,499],[1093,5,5,499,504],[1094,4,3,504,507],[1095,1,1,507,508],[1096,1,1,508,509]]],[48,8,8,509,517,[[1098,1,1,509,510],[1099,1,1,510,511],[1100,1,1,511,512],[1101,4,4,512,516],[1102,1,1,516,517]]],[49,6,6,517,523,[[1103,1,1,517,518],[1104,3,3,518,521],[1105,2,2,521,523]]],[50,5,5,523,528,[[1107,3,3,523,526],[1109,1,1,526,527],[1110,1,1,527,528]]],[51,12,11,528,539,[[1111,4,3,528,531],[1112,6,6,531,537],[1113,2,2,537,539]]],[52,1,1,539,540,[[1117,1,1,539,540]]],[53,4,4,540,544,[[1120,1,1,540,541],[1122,1,1,541,542],[1123,1,1,542,543],[1124,1,1,543,544]]],[54,4,4,544,548,[[1125,1,1,544,545],[1126,1,1,545,546],[1127,2,2,546,548]]],[55,1,1,548,549,[[1131,1,1,548,549]]],[56,1,1,549,550,[[1132,1,1,549,550]]],[57,27,27,550,577,[[1133,1,1,550,551],[1134,2,2,551,553],[1135,1,1,553,554],[1136,1,1,554,555],[1137,4,4,555,559],[1138,3,3,559,562],[1139,6,6,562,568],[1141,2,2,568,570],[1142,1,1,570,571],[1143,5,5,571,576],[1144,1,1,576,577]]],[58,10,10,577,587,[[1146,3,3,577,580],[1147,3,3,580,583],[1148,3,3,583,586],[1150,1,1,586,587]]],[59,7,7,587,594,[[1151,2,2,587,589],[1152,1,1,589,590],[1153,2,2,590,592],[1154,1,1,592,593],[1155,1,1,593,594]]],[60,5,5,594,599,[[1156,3,3,594,597],[1157,2,2,597,599]]],[61,1,1,599,600,[[1160,1,1,599,600]]],[63,1,1,600,601,[[1165,1,1,600,601]]],[65,38,31,601,632,[[1167,5,5,601,606],[1168,2,2,606,608],[1169,1,1,608,609],[1170,2,2,609,611],[1172,3,1,611,612],[1174,5,5,612,617],[1177,5,3,617,620],[1178,2,2,620,622],[1182,10,7,622,629],[1184,1,1,629,630],[1187,1,1,630,631],[1188,1,1,631,632]]]],[23166,23212,23252,23279,23292,23298,23344,23358,23361,23369,23371,23389,23395,23408,23433,23442,23460,23479,23480,23482,23485,23534,23560,23561,23571,23592,23612,23620,23661,23674,23702,23730,23739,23740,23746,23758,23763,23770,23800,23818,23830,23845,23847,23868,23933,23944,23963,23977,23978,23989,23991,24001,24014,24055,24056,24059,24060,24074,24096,24108,24110,24130,24153,24174,24183,24186,24197,24199,24206,24219,24224,24226,24232,24247,24275,24281,24283,24287,24327,24333,24334,24340,24342,24345,24355,24358,24360,24362,24378,24380,24397,24409,24421,24433,24442,24454,24541,24545,24559,24564,24571,24588,24631,24632,24659,24663,24683,24684,24724,24735,24736,24745,24746,24747,24758,24771,24859,24868,24883,24895,24898,24901,24913,24916,24931,24934,24937,24952,24958,24974,24975,24979,24986,24988,25015,25019,25027,25046,25047,25066,25086,25088,25099,25105,25108,25119,25124,25147,25152,25158,25159,25162,25182,25194,25195,25206,25246,25262,25267,25269,25279,25280,25285,25301,25308,25319,25329,25330,25334,25335,25336,25337,25338,25352,25358,25376,25384,25395,25399,25401,25406,25407,25419,25431,25432,25435,25499,25513,25514,25520,25522,25535,25537,25554,25565,25575,25598,25602,25631,25632,25642,25662,25665,25677,25679,25711,25712,25723,25740,25746,25748,25750,25760,25780,25793,25795,25796,25812,25833,25835,25854,25857,25858,25862,25878,25888,25890,25904,25906,25908,25930,25943,25947,25954,25959,25966,25979,25982,25983,25995,25996,26003,26006,26009,26010,26012,26013,26021,26022,26028,26042,26047,26050,26054,26056,26058,26059,26061,26071,26072,26074,26096,26104,26129,26145,26170,26214,26216,26219,26224,26273,26274,26276,26278,26282,26371,26414,26439,26462,26467,26479,26497,26500,26503,26516,26609,26610,26616,26622,26632,26649,26690,26697,26706,26707,26746,26861,26894,26902,26939,26941,26942,26943,26945,26951,26955,26992,27026,27027,27033,27038,27043,27044,27050,27052,27064,27066,27070,27071,27083,27095,27102,27129,27145,27147,27148,27154,27155,27156,27168,27177,27184,27189,27235,27248,27253,27258,27259,27263,27269,27272,27275,27284,27296,27299,27317,27326,27333,27335,27342,27346,27348,27355,27360,27367,27374,27394,27415,27417,27419,27444,27449,27467,27481,27499,27509,27510,27512,27518,27586,27595,27602,27606,27608,27611,27613,27619,27629,27642,27644,27663,27665,27669,27678,27681,27694,27699,27704,27710,27713,27721,27741,27743,27744,27746,27771,27794,27811,27822,27827,27829,27842,27845,27851,27852,27862,27871,27882,27884,27888,27891,27894,27897,27899,27905,27907,27908,27916,27933,27987,27995,27997,28010,28022,28040,28070,28073,28083,28094,28095,28098,28104,28169,28184,28208,28210,28214,28215,28218,28220,28226,28234,28243,28261,28311,28319,28334,28338,28343,28393,28397,28423,28428,28438,28442,28446,28449,28482,28508,28510,28523,28536,28555,28560,28562,28563,28567,28573,28574,28587,28599,28601,28619,28666,28676,28698,28703,28704,28718,28728,28738,28755,28763,28772,28776,28778,28786,28790,28808,28818,28819,28848,28894,28898,28912,28930,28946,29033,29098,29115,29116,29119,29123,29126,29135,29143,29147,29188,29202,29242,29258,29304,29305,29311,29316,29321,29340,29374,29398,29399,29406,29438,29442,29483,29488,29490,29532,29553,29565,29566,29567,29571,29575,29577,29578,29580,29584,29594,29595,29668,29730,29759,29772,29792,29826,29845,29862,29864,29930,29944,29967,29979,29994,30009,30017,30035,30039,30041,30042,30048,30056,30064,30076,30080,30082,30085,30086,30090,30120,30127,30166,30175,30178,30179,30196,30206,30220,30278,30288,30291,30297,30303,30304,30320,30328,30329,30356,30389,30390,30406,30430,30437,30458,30468,30483,30495,30499,30501,30520,30568,30666,30698,30706,30707,30715,30716,30725,30727,30748,30769,30770,30805,30828,30832,30834,30835,30838,30885,30887,30891,30898,30901,30956,30957,30958,30964,30971,30972,30973,30995,31059,31086]]],["+",[44,43,[[40,4,4,0,4,[[957,1,1,0,1],[962,2,2,1,3],[965,1,1,3,4]]],[41,5,5,4,9,[[973,1,1,4,5],[976,1,1,5,6],[992,1,1,6,7],[996,2,2,7,9]]],[42,1,1,9,10,[[1008,1,1,9,10]]],[43,15,14,10,24,[[1019,1,1,10,11],[1022,1,1,11,12],[1024,2,2,12,14],[1027,1,1,14,15],[1032,1,1,15,16],[1033,1,1,16,17],[1036,1,1,17,18],[1037,3,2,18,20],[1038,1,1,20,21],[1041,1,1,21,22],[1044,2,2,22,24]]],[44,11,11,24,35,[[1048,3,3,24,27],[1051,2,2,27,29],[1052,2,2,29,31],[1054,2,2,31,33],[1056,2,2,33,35]]],[45,2,2,35,37,[[1067,1,1,35,36],[1071,1,1,36,37]]],[47,3,3,37,40,[[1092,1,1,37,38],[1093,1,1,38,39],[1096,1,1,39,40]]],[51,1,1,40,41,[[1112,1,1,40,41]]],[57,2,2,41,43,[[1141,1,1,41,42],[1143,1,1,42,43]]]],[24247,24421,24442,24588,24895,25099,25795,26022,26028,26609,26955,27083,27148,27155,27299,27481,27510,27619,27629,27663,27694,27794,27871,27884,27995,27997,28022,28070,28083,28098,28104,28169,28184,28210,28220,28482,28599,29098,29123,29202,29575,30120,30196]]],["Be",[10,10,[[41,3,3,0,3,[[978,1,1,0,1],[984,1,1,1,2],[991,1,1,2,3]]],[44,1,1,3,4,[[1057,1,1,3,4]]],[45,1,1,4,5,[[1072,1,1,4,5]]],[46,1,1,5,6,[[1083,1,1,5,6]]],[48,2,2,6,8,[[1101,2,2,6,8]]],[59,1,1,8,9,[[1151,1,1,8,9]]],[65,1,1,9,10,[[1169,1,1,9,10]]]],[25182,25499,25750,28261,28601,28912,29305,29311,30390,30748]]],["are",[6,6,[[49,1,1,0,1,[[1103,1,1,0,1]]],[57,2,2,1,3,[[1137,1,1,1,2],[1144,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]],[59,1,1,4,5,[[1153,1,1,4,5]]],[61,1,1,5,6,[[1160,1,1,5,6]]]],[29374,30041,30220,30356,30430,30568]]],["ariseth",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]]],[23560,24340]]],["arose",[11,11,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,2,2,2,4,[[978,1,1,2,3],[987,1,1,3,4]]],[42,1,1,4,5,[[999,1,1,4,5]]],[43,6,6,5,11,[[1023,1,1,5,6],[1028,1,1,6,7],[1036,1,1,7,8],[1040,3,3,8,11]]]],[23369,24360,25194,25602,26145,27102,27326,27608,27741,27743,27744]]],["as",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25330]]],["assembled",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27467]]],["be",[73,71,[[39,13,13,0,13,[[933,1,1,0,1],[934,1,1,1,2],[938,2,2,2,4],[943,1,1,4,5],[946,1,1,5,6],[948,1,1,6,7],[951,1,1,7,8],[952,3,3,8,11],[954,2,2,11,13]]],[40,5,5,13,18,[[966,2,2,13,15],[969,3,3,15,18]]],[41,4,4,18,22,[[973,1,1,18,19],[992,1,1,19,20],[994,1,1,20,21],[995,1,1,21,22]]],[42,9,9,22,31,[[999,1,1,22,23],[1000,1,1,23,24],[1005,2,2,24,26],[1006,1,1,26,27],[1008,2,2,27,29],[1011,1,1,29,30],[1016,1,1,30,31]]],[43,3,3,31,34,[[1018,1,1,31,32],[1037,1,1,32,33],[1043,1,1,33,34]]],[44,3,3,34,37,[[1048,1,1,34,35],[1060,2,2,35,37]]],[45,12,11,37,48,[[1064,1,1,37,38],[1065,1,1,38,39],[1068,1,1,39,40],[1070,2,2,40,42],[1071,1,1,42,43],[1075,2,1,43,44],[1076,2,2,44,46],[1077,2,2,46,48]]],[46,2,1,48,49,[[1085,2,1,48,49]]],[47,2,2,49,51,[[1094,1,1,49,50],[1095,1,1,50,51]]],[48,3,3,51,54,[[1100,1,1,51,52],[1101,1,1,52,53],[1102,1,1,53,54]]],[49,2,2,54,56,[[1104,1,1,54,55],[1105,1,1,55,56]]],[50,1,1,56,57,[[1109,1,1,56,57]]],[51,1,1,57,58,[[1113,1,1,57,58]]],[53,1,1,58,59,[[1122,1,1,58,59]]],[57,2,2,59,61,[[1134,1,1,59,60],[1138,1,1,60,61]]],[58,3,3,61,64,[[1146,1,1,61,62],[1148,2,2,62,64]]],[59,2,2,64,66,[[1151,1,1,64,65],[1153,1,1,65,66]]],[60,1,1,66,67,[[1156,1,1,66,67]]],[63,1,1,67,68,[[1165,1,1,67,68]]],[65,3,3,68,71,[[1167,1,1,68,69],[1168,1,1,69,70],[1170,1,1,70,71]]]],[23279,23298,23433,23442,23661,23740,23818,23944,23977,23978,24001,24059,24108,24631,24632,24724,24735,24736,24931,25793,25890,25959,26129,26170,26462,26467,26497,26616,26622,26707,26894,26943,27642,27851,27995,28319,28334,28428,28449,28510,28563,28567,28574,28698,28755,28776,28778,28786,28946,29143,29188,29304,29321,29340,29406,29438,29532,29595,29759,29994,30056,30288,30320,30329,30389,30437,30483,30666,30716,30727,30769]]],["became",[18,17,[[39,1,1,0,1,[[956,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]],[45,3,3,3,6,[[1070,2,2,3,5],[1074,1,1,5,6]]],[49,1,1,6,7,[[1104,1,1,6,7]]],[51,2,2,7,9,[[1111,1,1,7,8],[1112,1,1,8,9]]],[57,3,3,9,12,[[1137,1,1,9,10],[1142,1,1,10,11],[1143,1,1,11,12]]],[65,6,5,12,17,[[1172,2,1,12,13],[1174,2,2,13,15],[1182,2,2,15,17]]]],[24199,24541,27269,28560,28562,28676,29399,29566,29584,30039,30166,30179,30805,30835,30838,30957,30958]]],["become",[25,25,[[39,2,2,0,2,[[946,1,1,0,1],[949,1,1,1,2]]],[40,2,2,2,4,[[957,1,1,2,3],[968,1,1,3,4]]],[41,1,1,4,5,[[992,1,1,4,5]]],[42,1,1,5,6,[[997,1,1,5,6]]],[43,3,3,6,9,[[1021,1,1,6,7],[1024,1,1,7,8],[1029,1,1,8,9]]],[44,3,3,9,12,[[1048,1,1,9,10],[1049,1,1,10,11],[1052,1,1,11,12]]],[45,4,4,12,16,[[1064,1,1,12,13],[1069,1,1,13,14],[1074,1,1,14,15],[1076,1,1,15,16]]],[46,2,2,16,18,[[1082,1,1,16,17],[1089,1,1,17,18]]],[47,1,1,18,19,[[1094,1,1,18,19]]],[56,1,1,19,20,[[1132,1,1,19,20]]],[57,1,1,20,21,[[1137,1,1,20,21]]],[58,2,2,21,23,[[1147,2,2,21,23]]],[65,2,2,23,25,[[1177,1,1,23,24],[1184,1,1,24,25]]]],[23730,23868,24232,24683,25796,26056,27033,27156,27355,28010,28040,28104,28428,28536,28666,28738,28894,29033,29147,29944,30042,30297,30304,30887,30995]]],["becometh",[4,4,[[39,2,2,0,2,[[941,2,2,0,2]]],[40,2,2,2,4,[[960,2,2,2,4]]]],[23561,23571,24342,24355]]],["been",[13,13,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,3,3,1,4,[[988,2,2,1,3],[991,1,1,3,4]]],[43,4,4,4,8,[[1024,1,1,4,5],[1032,1,1,5,6],[1036,1,1,6,7],[1037,1,1,7,8]]],[44,3,3,8,11,[[1051,1,1,8,9],[1056,1,1,9,10],[1061,1,1,10,11]]],[50,1,1,11,12,[[1110,1,1,11,12]]],[53,1,1,12,13,[[1123,1,1,12,13]]]],[24883,25631,25632,25748,27168,27449,27606,27644,28073,28243,28338,29553,29772]]],["befell",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24380]]],["being",[4,4,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]],[59,1,1,3,4,[[1155,1,1,3,4]]]],[24571,25908,30291,30468]]],["brought",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27095]]],["came",[21,21,[[40,2,2,0,2,[[957,1,1,0,1],[965,1,1,1,2]]],[41,5,5,2,7,[[973,1,1,2,3],[975,2,2,3,5],[981,2,2,5,7]]],[42,3,3,7,10,[[997,1,1,7,8],[1006,1,1,8,9],[1008,1,1,9,10]]],[43,8,8,10,18,[[1019,2,2,10,12],[1022,2,2,12,14],[1024,1,1,14,15],[1027,1,1,15,16],[1033,1,1,16,17],[1038,1,1,17,18]]],[46,1,1,18,19,[[1078,1,1,18,19]]],[51,1,1,19,20,[[1111,1,1,19,20]]],[54,1,1,20,21,[[1127,1,1,20,21]]]],[24226,24559,24958,25027,25047,25335,25336,26061,26516,26610,26951,26992,27064,27070,27147,27272,27512,27699,28808,29565,29864]]],["camest",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26282]]],["come",[26,26,[[39,6,6,0,6,[[936,1,1,0,1],[942,1,1,1,2],[948,1,1,2,3],[954,1,1,3,4],[955,2,2,4,6]]],[40,6,6,6,12,[[960,1,1,6,7],[962,2,2,7,9],[967,1,1,9,10],[971,2,2,10,12]]],[41,2,2,12,14,[[991,1,1,12,13],[994,1,1,13,14]]],[42,4,4,14,18,[[1001,1,1,14,15],[1002,1,1,15,16],[1009,1,1,16,17],[1017,1,1,17,18]]],[43,6,6,18,24,[[1029,1,1,18,19],[1038,1,1,19,20],[1043,1,1,20,21],[1044,2,2,21,23],[1045,1,1,23,24]]],[47,1,1,24,25,[[1093,1,1,24,25]]],[65,1,1,25,26,[[1178,1,1,25,26]]]],[23361,23620,23800,24074,24130,24186,24358,24409,24454,24659,24859,24868,25740,25878,26224,26273,26649,26902,27348,27681,27845,27862,27882,27905,29116,30901]]],["cometh",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29792]]],["continued",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27595]]],["did",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24219]]],["divided",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30973]]],["done",[62,58,[[39,17,14,0,14,[[929,1,1,0,1],[934,1,1,1,2],[936,1,1,2,3],[939,5,3,3,6],[946,3,2,6,8],[949,2,2,8,10],[954,2,2,10,12],[955,1,1,12,13],[956,1,1,13,14]]],[40,4,4,14,18,[[960,1,1,14,15],[961,2,2,15,17],[969,1,1,17,18]]],[41,16,15,18,33,[[976,1,1,18,19],[980,3,3,19,22],[981,1,1,22,23],[982,2,1,23,24],[983,1,1,24,25],[985,1,1,25,26],[986,1,1,26,27],[994,1,1,27,28],[995,4,4,28,32],[996,1,1,32,33]]],[42,3,3,33,36,[[997,1,1,33,34],[1011,1,1,34,35],[1015,1,1,35,36]]],[43,14,14,36,50,[[1019,1,1,36,37],[1021,4,4,37,41],[1022,1,1,41,42],[1025,1,1,42,43],[1028,1,1,43,44],[1029,1,1,44,45],[1030,1,1,45,46],[1031,1,1,46,47],[1038,1,1,47,48],[1041,1,1,48,49],[1045,1,1,49,50]]],[45,4,4,50,54,[[1070,1,1,50,51],[1075,2,2,51,53],[1077,1,1,53,54]]],[48,1,1,54,55,[[1101,1,1,54,55]]],[65,3,3,55,58,[[1182,1,1,55,56],[1187,1,1,56,57],[1188,1,1,57,58]]]],[23166,23292,23358,23479,23480,23482,23746,23758,23830,23847,24096,24110,24183,24206,24334,24378,24397,24747,25086,25279,25280,25301,25308,25376,25407,25535,25575,25906,25943,25966,25982,25983,26012,26072,26706,26861,26992,27038,27043,27050,27052,27066,27189,27317,27346,27374,27417,27678,27771,27908,28555,28704,28718,28790,29316,30971,31059,31086]]],["drawing",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26276]]],["ended",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26632]]],["falling",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26941]]],["fashioned",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29442]]],["fell",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30956]]],["finished",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30017]]],["followed",[1,1,[[65,1,1,0,1,[[1174,1,1,0,1]]]],[30834]]],["found",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28930]]],["fulfilled",[3,3,[[39,2,2,0,2,[[933,1,1,0,1],[952,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]]],[23252,23991,25858]]],["grow",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23845]]],["had",[3,3,[[43,3,3,0,3,[[1032,1,1,0,1],[1038,1,1,1,2],[1042,1,1,2,3]]]],[27444,27669,27822]]],["happened",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28234]]],["have",[4,4,[[39,1,1,0,1,[[946,1,1,0,1]]],[45,2,2,1,3,[[1065,1,1,1,2],[1071,1,1,2,3]]],[50,1,1,3,4,[[1107,1,1,3,4]]]],[23739,28438,28587,29483]]],["he",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24771]]],["is",[21,21,[[39,6,6,0,6,[[937,1,1,0,1],[940,1,1,1,2],[944,1,1,2,3],[949,1,1,3,4],[952,1,1,4,5],[954,1,1,5,6]]],[40,1,1,6,7,[[969,1,1,6,7]]],[41,3,3,7,10,[[983,1,1,7,8],[984,1,1,8,9],[987,1,1,9,10]]],[42,1,1,10,11,[[1010,1,1,10,11]]],[44,2,2,11,13,[[1056,2,2,11,13]]],[57,3,3,13,16,[[1139,1,1,13,14],[1141,1,1,14,15],[1143,1,1,15,16]]],[58,2,2,16,18,[[1146,1,1,16,17],[1147,1,1,17,18]]],[59,1,1,18,19,[[1154,1,1,18,19]]],[60,2,2,19,21,[[1156,1,1,19,20],[1157,1,1,20,21]]]],[23395,23534,23674,23868,23989,24056,24745,25431,25513,25598,26690,28214,28215,30082,30127,30178,30278,30303,30458,30499,30520]]],["it",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23408]]],["made",[68,65,[[39,4,4,0,4,[[932,1,1,0,1],[951,1,1,1,2],[953,1,1,2,3],[955,1,1,3,4]]],[40,3,3,4,7,[[958,2,2,4,6],[970,1,1,6,7]]],[41,6,6,7,13,[[974,1,1,7,8],[976,1,1,8,9],[980,1,1,9,10],[986,1,1,10,11],[995,2,2,11,13]]],[42,12,10,13,23,[[997,5,3,13,16],[998,1,1,16,17],[1001,4,4,17,21],[1004,1,1,21,22],[1005,1,1,22,23]]],[43,6,6,23,29,[[1024,1,1,23,24],[1029,1,1,24,25],[1030,1,1,25,26],[1036,1,1,26,27],[1038,1,1,27,28],[1043,1,1,28,29]]],[44,5,5,29,34,[[1046,1,1,29,30],[1047,1,1,30,31],[1052,1,1,31,32],[1055,1,1,32,33],[1056,1,1,33,34]]],[45,9,9,34,43,[[1062,1,1,34,35],[1064,1,1,35,36],[1065,2,2,36,38],[1068,1,1,38,39],[1070,1,1,39,40],[1072,1,1,40,41],[1075,1,1,41,42],[1076,1,1,42,43]]],[46,1,1,43,44,[[1082,1,1,43,44]]],[47,3,2,44,46,[[1093,1,1,44,45],[1094,2,1,45,46]]],[48,2,2,46,48,[[1098,1,1,46,47],[1099,1,1,47,48]]],[49,1,1,48,49,[[1104,1,1,48,49]]],[50,2,2,49,51,[[1107,2,2,49,51]]],[55,1,1,51,52,[[1131,1,1,51,52]]],[57,11,11,52,63,[[1133,1,1,52,53],[1135,1,1,53,54],[1137,1,1,54,55],[1138,2,2,55,57],[1139,5,5,57,62],[1143,1,1,62,63]]],[58,1,1,63,64,[[1148,1,1,63,64]]],[59,1,1,64,65,[[1152,1,1,64,65]]]],[23212,23933,24014,24153,24281,24287,24758,24975,25066,25262,25565,25947,25954,26047,26054,26058,26104,26214,26216,26219,26224,26414,26479,27129,27342,27394,27611,27704,27829,27933,27987,28104,28208,28218,28393,28423,28442,28446,28508,28562,28619,28703,28763,28898,29115,29135,29242,29258,29398,29488,29490,29930,29967,30009,30035,30048,30064,30076,30080,30085,30086,30090,30175,30328,30406]]],["married",[3,2,[[44,3,2,0,2,[[1052,3,2,0,2]]]],[28094,28095]]],["on",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27888]]],["ordained",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26945]]],["ourselves",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29580]]],["pass",[83,81,[[39,7,7,0,7,[[935,1,1,0,1],[937,1,1,1,2],[939,1,1,2,3],[941,1,1,3,4],[947,1,1,4,5],[952,1,1,5,6],[954,1,1,6,7]]],[40,6,6,7,13,[[957,1,1,7,8],[958,2,2,8,10],[960,1,1,10,11],[967,1,1,11,12],[969,1,1,12,13]]],[41,49,48,13,61,[[973,4,4,13,17],[974,4,3,17,20],[975,1,1,20,21],[977,3,3,21,24],[978,3,3,24,27],[979,1,1,27,28],[980,3,3,28,31],[981,6,6,31,37],[982,1,1,37,38],[983,3,3,38,41],[984,1,1,41,42],[986,1,1,42,43],[988,1,1,43,44],[989,2,2,44,46],[990,1,1,46,47],[991,2,2,47,49],[992,1,1,49,50],[993,5,5,50,55],[996,6,6,55,61]]],[42,3,2,61,63,[[1009,1,1,61,62],[1010,2,1,62,63]]],[43,15,15,63,78,[[1021,1,1,63,64],[1026,3,3,64,67],[1028,2,2,67,69],[1031,1,1,69,70],[1033,1,1,70,71],[1036,1,1,71,72],[1038,1,1,72,73],[1039,2,2,73,75],[1044,1,1,75,76],[1045,2,2,76,78]]],[45,1,1,78,79,[[1076,1,1,78,79]]],[51,1,1,79,80,[[1113,1,1,79,80]]],[65,1,1,80,81,[[1167,1,1,80,81]]]],[23344,23389,23460,23592,23763,23963,24055,24224,24275,24283,24327,24663,24746,24901,24916,24934,24952,24974,24988,25019,25046,25108,25119,25124,25147,25152,25158,25206,25246,25267,25285,25319,25329,25334,25338,25352,25358,25401,25406,25419,25432,25514,25554,25642,25662,25665,25723,25746,25760,25780,25833,25835,25854,25857,25862,25995,26003,26006,26009,26021,26042,26649,26697,27027,27248,27253,27259,27333,27335,27415,27499,27586,27665,27710,27721,27899,27907,27916,28772,29594,30698]]],["past",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[25337,29845]]],["performed",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24913]]],["preferred",[3,3,[[42,3,3,0,3,[[997,3,3,0,3]]]],[26059,26071,26074]]],["published",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27296]]],["require",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28523]]],["seemed",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[23485,25384]]],["she",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25812]]],["shewed",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27044]]],["sounded",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24937]]],["taken",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29668]]],["them",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28226]]],["turned",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26746]]],["was",[100,98,[[39,8,8,0,8,[[936,1,1,0,1],[942,1,1,1,2],[945,1,1,2,3],[947,1,1,3,4],[952,1,1,4,5],[954,1,1,5,6],[955,1,1,6,7],[956,1,1,7,8]]],[40,9,9,8,17,[[960,3,3,8,11],[962,1,1,11,12],[965,2,2,12,14],[968,1,1,14,15],[969,1,1,15,16],[971,1,1,16,17]]],[41,23,23,17,40,[[973,1,1,17,18],[974,3,3,18,21],[976,2,2,21,23],[978,3,3,23,26],[980,1,1,26,27],[982,2,2,27,29],[983,1,1,29,30],[989,2,2,30,32],[990,2,2,32,34],[994,4,4,34,38],[995,1,1,38,39],[996,1,1,39,40]]],[42,8,8,40,48,[[997,1,1,40,41],[998,1,1,41,42],[1002,2,2,42,44],[1003,1,1,44,45],[1004,1,1,45,46],[1006,2,2,46,48]]],[43,26,26,48,74,[[1018,2,2,48,50],[1021,1,1,50,51],[1022,1,1,51,52],[1024,2,2,52,54],[1025,2,2,54,56],[1026,2,2,56,58],[1027,3,3,58,61],[1029,2,2,61,63],[1031,1,1,63,64],[1033,2,2,64,66],[1036,1,1,66,67],[1039,1,1,67,68],[1040,1,1,68,69],[1042,1,1,69,70],[1043,2,2,70,72],[1044,2,2,72,74]]],[44,1,1,74,75,[[1060,1,1,74,75]]],[45,2,2,75,77,[[1063,1,1,75,76],[1076,1,1,76,77]]],[46,4,3,77,80,[[1078,3,2,77,79],[1080,1,1,79,80]]],[47,2,2,80,82,[[1093,2,2,80,82]]],[51,1,1,82,83,[[1112,1,1,82,83]]],[53,1,1,83,84,[[1120,1,1,83,84]]],[54,2,2,84,86,[[1125,1,1,84,85],[1127,1,1,85,86]]],[57,1,1,86,87,[[1134,1,1,86,87]]],[65,12,11,87,98,[[1167,3,3,87,90],[1168,1,1,90,91],[1170,1,1,91,92],[1172,1,1,92,93],[1174,1,1,93,94],[1177,1,1,94,95],[1178,1,1,95,96],[1182,3,2,96,98]]]],[23371,23612,23702,23770,23978,24060,24174,24197,24333,24345,24362,24433,24545,24564,24684,24736,24859,24898,24979,24986,25015,25088,25105,25159,25162,25195,25269,25395,25399,25435,25677,25679,25711,25712,25888,25904,25908,25930,25979,26010,26050,26096,26274,26278,26371,26439,26500,26503,26939,26942,27026,27066,27145,27154,27177,27184,27235,27258,27263,27275,27284,27355,27360,27419,27509,27518,27602,27721,27746,27811,27827,27842,27894,27897,28311,28397,28728,28818,28819,28848,29119,29126,29571,29730,29826,29862,29979,30706,30707,30715,30725,30770,30805,30828,30885,30898,30964,30972]]],["waxed",[2,2,[[41,1,1,0,1,[[985,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[25537,30206]]],["were",[23,22,[[41,4,4,0,4,[[985,2,2,0,2],[996,2,2,2,4]]],[43,5,5,4,9,[[1030,1,1,4,5],[1036,1,1,5,6],[1039,1,1,6,7],[1043,1,1,7,8],[1044,1,1,8,9]]],[44,1,1,9,10,[[1061,1,1,9,10]]],[45,1,1,10,11,[[1071,1,1,10,11]]],[51,4,4,11,15,[[1111,2,2,11,13],[1112,2,2,13,15]]],[60,2,2,15,17,[[1156,1,1,15,16],[1157,1,1,16,17]]],[65,6,5,17,22,[[1174,1,1,17,18],[1177,3,3,18,21],[1182,2,1,21,22]]]],[25520,25522,25996,26013,27367,27613,27713,27852,27891,28343,28573,29565,29567,29577,29578,30495,30501,30832,30885,30887,30891,30972]]],["would",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27642]]],["wrought",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[24409,27071]]]]},{"k":"G1097","v":[["*",[223,208,[[39,20,20,0,20,[[929,1,1,0,1],[934,1,1,1,2],[935,1,1,2,3],[937,1,1,3,4],[938,1,1,4,5],[940,3,3,5,8],[941,1,1,8,9],[944,2,2,9,11],[949,1,1,11,12],[950,1,1,12,13],[952,5,5,13,18],[953,1,1,18,19],[954,1,1,19,20]]],[40,13,13,20,33,[[960,2,2,20,22],[961,2,2,22,24],[962,1,1,24,25],[963,1,1,25,26],[964,1,1,26,27],[965,1,1,27,28],[968,1,1,28,29],[969,2,2,29,31],[971,2,2,31,33]]],[41,28,28,33,61,[[973,2,2,33,35],[974,1,1,35,36],[978,1,1,36,37],[979,1,1,37,38],[980,3,3,38,41],[981,1,1,41,42],[982,2,2,42,44],[984,5,5,44,49],[988,2,2,49,51],[990,1,1,51,52],[991,3,3,52,55],[992,1,1,55,56],[993,3,3,56,59],[996,2,2,59,61]]],[42,56,49,61,110,[[997,2,2,61,63],[998,2,2,63,65],[999,1,1,65,66],[1000,2,2,66,68],[1001,2,2,68,70],[1002,2,2,70,72],[1003,5,5,72,77],[1004,6,6,77,83],[1006,7,5,83,88],[1007,1,1,88,89],[1008,2,2,89,91],[1009,4,4,91,95],[1010,8,5,95,100],[1011,1,1,100,101],[1012,2,2,101,103],[1013,7,5,103,108],[1015,1,1,108,109],[1017,1,1,109,110]]],[43,18,18,110,128,[[1018,1,1,110,111],[1019,1,1,111,112],[1025,1,1,112,113],[1026,1,1,113,114],[1034,3,3,114,117],[1036,2,2,117,119],[1037,1,1,119,120],[1038,3,3,120,123],[1039,2,2,123,125],[1040,2,2,125,127],[1041,1,1,127,128]]],[44,9,9,128,137,[[1046,1,1,128,129],[1047,1,1,129,130],[1048,1,1,130,131],[1051,1,1,131,132],[1052,3,3,132,135],[1055,1,1,135,136],[1056,1,1,136,137]]],[45,14,12,137,149,[[1062,1,1,137,138],[1063,4,3,138,141],[1064,1,1,141,142],[1065,1,1,142,143],[1069,3,2,143,145],[1074,2,2,145,147],[1075,2,2,147,149]]],[46,8,7,149,156,[[1079,2,2,149,151],[1080,1,1,151,152],[1082,3,2,152,154],[1085,1,1,154,155],[1090,1,1,155,156]]],[47,4,3,156,159,[[1092,1,1,156,157],[1093,1,1,157,158],[1094,2,1,158,159]]],[48,3,3,159,162,[[1099,1,1,159,160],[1101,1,1,160,161],[1102,1,1,161,162]]],[49,5,5,162,167,[[1103,1,1,162,163],[1104,2,2,163,165],[1105,1,1,165,166],[1106,1,1,166,167]]],[50,1,1,167,168,[[1110,1,1,167,168]]],[51,1,1,168,169,[[1113,1,1,168,169]]],[54,3,3,169,172,[[1125,1,1,169,170],[1126,1,1,170,171],[1127,1,1,171,172]]],[57,4,4,172,176,[[1135,1,1,172,173],[1140,1,1,173,174],[1142,1,1,174,175],[1145,1,1,175,176]]],[58,3,3,176,179,[[1146,1,1,176,177],[1147,1,1,177,178],[1150,1,1,178,179]]],[60,2,2,179,181,[[1156,1,1,179,180],[1158,1,1,180,181]]],[61,25,21,181,202,[[1160,9,7,181,188],[1161,7,6,188,194],[1162,7,6,194,200],[1163,2,2,200,202]]],[62,1,1,202,203,[[1164,1,1,202,203]]],[65,5,5,203,208,[[1168,3,3,203,206],[1169,2,2,206,208]]]],[23169,23285,23339,23409,23443,23496,23504,23522,23550,23675,23680,23871,23890,23989,23990,23996,24000,24007,24032,24064,24334,24336,24393,24407,24445,24487,24517,24568,24685,24745,24746,24836,24871,24911,24927,25016,25190,25234,25255,25262,25291,25312,25374,25385,25461,25498,25505,25506,25507,25624,25635,25722,25746,25773,25775,25798,25846,25856,25857,26009,26026,26054,26092,26119,26120,26130,26157,26209,26216,26252,26272,26326,26345,26354,26355,26377,26379,26408,26409,26413,26424,26433,26436,26487,26495,26496,26508,26519,26580,26589,26596,26637,26642,26658,26665,26675,26677,26685,26688,26699,26717,26729,26745,26762,26766,26767,26782,26784,26829,26915,26930,26985,27206,27240,27536,27542,27543,27600,27620,27660,27688,27698,27701,27718,27734,27740,27762,27780,27951,27980,28008,28074,28092,28098,28106,28207,28243,28384,28402,28408,28410,28430,28452,28529,28530,28674,28677,28685,28687,28828,28833,28843,28893,28898,28941,29049,29090,29109,29140,29270,29309,29359,29373,29410,29413,29431,29447,29550,29595,29827,29846,29854,30005,30103,30167,30264,30269,30313,30374,30499,30525,30553,30554,30555,30563,30564,30568,30579,30580,30585,30595,30598,30599,30603,30605,30609,30610,30611,30616,30619,30626,30644,30646,30734,30740,30741,30749,30755]]],["+",[6,6,[[41,2,2,0,2,[[979,1,1,0,1],[984,1,1,1,2]]],[42,2,2,2,4,[[1006,1,1,2,3],[1010,1,1,3,4]]],[43,1,1,4,5,[[1038,1,1,4,5]]],[48,1,1,5,6,[[1101,1,1,5,6]]]],[25234,25505,26496,26675,27701,29309]]],["Know",[4,4,[[42,1,1,0,1,[[1009,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]],[57,2,2,2,4,[[1140,1,1,2,3],[1145,1,1,3,4]]]],[26642,29109,30103,30264]]],["Knowing",[4,4,[[44,1,1,0,1,[[1051,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]],[60,2,2,2,4,[[1156,1,1,2,3],[1158,1,1,3,4]]]],[28074,30269,30499,30525]]],["Understandest",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27206]]],["allow",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28106]]],["aware",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[24007]]],["can",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23675]]],["felt",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24393]]],["knew",[30,30,[[39,5,5,0,5,[[929,1,1,0,1],[935,1,1,1,2],[940,1,1,2,3],[952,1,1,3,4],[953,1,1,4,5]]],[40,5,5,5,10,[[962,1,1,5,6],[964,1,1,6,7],[968,1,1,7,8],[971,2,2,8,10]]],[41,5,5,10,15,[[974,1,1,10,11],[981,1,1,11,12],[984,2,2,12,14],[990,1,1,14,15]]],[42,10,10,15,25,[[997,1,1,15,16],[998,2,2,16,18],[1000,2,2,18,20],[1001,1,1,20,21],[1007,1,1,21,22],[1008,1,1,22,23],[1009,1,1,23,24],[1012,1,1,24,25]]],[44,1,1,25,26,[[1046,1,1,25,26]]],[45,2,2,26,28,[[1062,1,1,26,27],[1063,1,1,27,28]]],[46,1,1,28,29,[[1082,1,1,28,29]]],[61,1,1,29,30,[[1161,1,1,29,30]]]],[23169,23339,23504,23996,24032,24445,24517,24685,24836,24871,25016,25312,25506,25507,25722,26054,26119,26120,26157,26209,26216,26580,26589,26658,26745,27951,28384,28402,28898,30580]]],["knewest",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25775]]],["know",[88,87,[[39,6,6,0,6,[[934,1,1,0,1],[937,1,1,1,2],[941,1,1,2,3],[952,3,3,3,6]]],[40,7,7,6,13,[[960,2,2,6,8],[961,1,1,8,9],[963,1,1,9,10],[965,1,1,10,11],[969,2,2,11,13]]],[41,8,8,13,21,[[973,2,2,13,15],[980,1,1,15,16],[984,1,1,16,17],[991,1,1,17,18],[993,3,3,18,21]]],[42,20,20,21,41,[[1001,1,1,21,22],[1003,3,3,22,25],[1004,3,3,25,28],[1006,3,3,28,31],[1009,2,2,31,33],[1010,4,4,33,37],[1011,1,1,37,38],[1013,2,2,38,40],[1015,1,1,40,41]]],[43,9,9,41,50,[[1018,1,1,41,42],[1019,1,1,42,43],[1034,2,2,43,45],[1036,1,1,45,46],[1037,1,1,46,47],[1038,2,2,47,49],[1039,1,1,49,50]]],[44,2,2,50,52,[[1052,1,1,50,51],[1055,1,1,51,52]]],[45,5,5,52,57,[[1063,1,1,52,53],[1065,1,1,53,54],[1069,1,1,54,55],[1074,2,2,55,57]]],[46,5,5,57,62,[[1079,2,2,57,59],[1082,1,1,59,60],[1085,1,1,60,61],[1090,1,1,61,62]]],[48,2,2,62,64,[[1099,1,1,62,63],[1102,1,1,63,64]]],[49,3,3,64,67,[[1104,2,2,64,66],[1105,1,1,66,67]]],[50,1,1,67,68,[[1110,1,1,67,68]]],[51,1,1,68,69,[[1113,1,1,68,69]]],[54,1,1,69,70,[[1127,1,1,69,70]]],[58,2,2,70,72,[[1147,1,1,70,71],[1150,1,1,71,72]]],[61,13,12,72,84,[[1160,6,5,72,77],[1161,2,2,77,79],[1162,3,3,79,82],[1163,2,2,82,84]]],[65,3,3,84,87,[[1168,1,1,84,85],[1169,2,2,85,87]]]],[23285,23409,23550,23989,23990,24000,24334,24336,24407,24487,24568,24745,24746,24911,24927,25255,25498,25746,25846,25856,25857,26252,26345,26354,26379,26409,26413,26433,26495,26508,26519,26637,26665,26675,26685,26688,26699,26717,26762,26782,26829,26930,26985,27542,27543,27600,27660,27688,27698,27718,28092,28207,28408,28452,28529,28674,28677,28828,28833,28893,28941,29049,29270,29359,29410,29413,29431,29550,29595,29854,30313,30374,30553,30554,30555,30568,30579,30598,30603,30605,30609,30616,30626,30644,30740,30749,30755]]],["knowest",[5,5,[[42,3,3,0,3,[[997,1,1,0,1],[999,1,1,1,2],[1017,1,1,2,3]]],[44,1,1,3,4,[[1047,1,1,3,4]]],[54,1,1,4,5,[[1125,1,1,4,5]]]],[26092,26130,26915,27980,29827]]],["knoweth",[16,16,[[41,2,2,0,2,[[982,1,1,0,1],[988,1,1,1,2]]],[42,4,4,2,6,[[1003,2,2,2,4],[1006,1,1,4,5],[1010,1,1,5,6]]],[43,1,1,6,7,[[1036,1,1,6,7]]],[45,2,2,7,9,[[1064,1,1,7,8],[1069,1,1,8,9]]],[54,1,1,9,10,[[1126,1,1,9,10]]],[61,5,5,10,15,[[1161,2,2,10,12],[1162,3,3,12,15]]],[65,1,1,15,16,[[1168,1,1,15,16]]]],[25385,25635,26355,26377,26496,26685,27620,28430,28529,29846,30580,30599,30609,30610,30611,30734]]],["knowing",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30167]]],["knowledge",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27536]]],["known",[43,39,[[39,3,3,0,3,[[938,1,1,0,1],[940,2,2,1,3]]],[41,6,6,3,9,[[978,1,1,3,4],[980,1,1,4,5],[984,1,1,5,6],[991,1,1,6,7],[996,2,2,7,9]]],[42,10,8,9,17,[[1004,1,1,9,10],[1006,1,1,10,11],[1010,2,2,11,13],[1012,1,1,13,14],[1013,5,3,14,17]]],[43,3,3,17,20,[[1026,1,1,17,18],[1039,1,1,18,19],[1040,1,1,19,20]]],[44,3,3,20,23,[[1048,1,1,20,21],[1052,1,1,21,22],[1056,1,1,22,23]]],[45,5,5,23,28,[[1063,2,2,23,25],[1069,1,1,25,26],[1075,2,2,26,28]]],[46,2,2,28,30,[[1080,1,1,28,29],[1082,1,1,29,30]]],[47,2,1,30,31,[[1094,2,1,30,31]]],[49,1,1,31,32,[[1106,1,1,31,32]]],[57,1,1,32,33,[[1135,1,1,32,33]]],[61,5,4,33,37,[[1160,3,2,33,35],[1161,1,1,35,36],[1162,1,1,36,37]]],[62,1,1,37,38,[[1164,1,1,37,38]]],[65,1,1,38,39,[[1168,1,1,38,39]]]],[23443,23496,23522,25190,25262,25461,25773,26009,26026,26436,26495,26675,26677,26729,26766,26767,26784,27240,27734,27762,28008,28098,28243,28402,28410,28530,28685,28687,28843,28893,29140,29447,30005,30563,30564,30585,30619,30646,30741]]],["perceive",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[61,1,1,1,2,[[1161,1,1,1,2]]]],[25291,30595]]],["perceived",[7,7,[[39,3,3,0,3,[[944,1,1,0,1],[949,1,1,1,2],[950,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]],[42,1,1,4,5,[[1002,1,1,4,5]]],[43,1,1,5,6,[[1040,1,1,5,6]]],[47,1,1,6,7,[[1092,1,1,6,7]]]],[23680,23871,23890,25798,26272,27740,29090]]],["resolved",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25624]]],["sure",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]]],[25374,26326]]],["understand",[3,3,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]]],[26424,27780,29373]]],["understood",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,3,3,1,4,[[1004,1,1,1,2],[1006,1,1,2,3],[1008,1,1,3,4]]]],[24064,26408,26487,26596]]]]},{"k":"G1098","v":[["wine",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26962]]]]},{"k":"G1099","v":[["*",[4,4,[[58,2,2,0,2,[[1148,2,2,0,2]]],[65,2,2,2,4,[[1176,2,2,2,4]]]],[30330,30331,30870,30871]]],["fresh",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30331]]],["sweet",[3,3,[[58,1,1,0,1,[[1148,1,1,0,1]]],[65,2,2,1,3,[[1176,2,2,1,3]]]],[30330,30870,30871]]]]},{"k":"G1100","v":[["*",[50,47,[[40,3,3,0,3,[[963,2,2,0,2],[972,1,1,2,3]]],[41,2,2,3,5,[[973,1,1,3,4],[988,1,1,4,5]]],[43,6,6,5,11,[[1019,4,4,5,9],[1027,1,1,9,10],[1036,1,1,10,11]]],[44,2,2,11,13,[[1048,1,1,11,12],[1059,1,1,12,13]]],[45,21,19,13,32,[[1073,4,3,13,16],[1074,2,2,16,18],[1075,15,14,18,32]]],[49,1,1,32,33,[[1104,1,1,32,33]]],[58,5,4,33,37,[[1146,1,1,33,34],[1148,4,3,34,37]]],[59,1,1,37,38,[[1153,1,1,37,38]]],[61,1,1,38,39,[[1161,1,1,38,39]]],[65,8,8,39,47,[[1171,1,1,39,40],[1173,1,1,40,41],[1176,1,1,41,42],[1177,1,1,42,43],[1179,1,1,43,44],[1180,1,1,44,45],[1182,1,1,45,46],[1183,1,1,46,47]]]],[24496,24498,24890,24957,25644,26952,26953,26960,26975,27305,27591,28004,28291,28644,28662,28664,28666,28673,28680,28682,28683,28684,28687,28691,28692,28696,28697,28700,28701,28704,28705,28717,29402,30292,30324,30325,30327,30434,30597,30788,30819,30872,30881,30915,30932,30964,30990]]],["tongue",[24,23,[[40,2,2,0,2,[[963,2,2,0,2]]],[41,2,2,2,4,[[973,1,1,2,3],[988,1,1,3,4]]],[43,1,1,4,5,[[1019,1,1,4,5]]],[44,1,1,5,6,[[1059,1,1,5,6]]],[45,8,8,6,14,[[1075,8,8,6,14]]],[49,1,1,14,15,[[1104,1,1,14,15]]],[58,5,4,15,19,[[1146,1,1,15,16],[1148,4,3,16,19]]],[59,1,1,19,20,[[1153,1,1,19,20]]],[61,1,1,20,21,[[1161,1,1,20,21]]],[65,2,2,21,23,[[1171,1,1,21,22],[1180,1,1,22,23]]]],[24496,24498,24957,25644,26975,28291,28680,28682,28687,28691,28692,28697,28704,28705,29402,30292,30324,30325,30327,30434,30597,30788,30932]]],["tongues",[26,24,[[40,1,1,0,1,[[972,1,1,0,1]]],[43,5,5,1,6,[[1019,3,3,1,4],[1027,1,1,4,5],[1036,1,1,5,6]]],[44,1,1,6,7,[[1048,1,1,6,7]]],[45,13,11,7,18,[[1073,4,3,7,10],[1074,2,2,10,12],[1075,7,6,12,18]]],[65,6,6,18,24,[[1173,1,1,18,19],[1176,1,1,19,20],[1177,1,1,20,21],[1179,1,1,21,22],[1182,1,1,22,23],[1183,1,1,23,24]]]],[24890,26952,26953,26960,27305,27591,28004,28644,28662,28664,28666,28673,28683,28684,28696,28700,28701,28717,30819,30872,30881,30915,30964,30990]]]]},{"k":"G1101","v":[["bag",[2,2,[[42,2,2,0,2,[[1008,1,1,0,1],[1009,1,1,1,2]]]],[26586,26659]]]]},{"k":"G1102","v":[["fuller",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24541]]]]},{"k":"G1103","v":[["*",[4,4,[[46,1,1,0,1,[[1085,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]],[53,1,1,2,3,[[1119,1,1,2,3]]],[55,1,1,3,4,[[1129,1,1,3,4]]]],[28940,29445,29698,29896]]],["own",[2,2,[[53,1,1,0,1,[[1119,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[29698,29896]]],["sincerity",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28940]]],["true",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29445]]]]},{"k":"G1104","v":[["naturally",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29411]]]]},{"k":"G1105","v":[["blackness",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30230]]]]},{"k":"G1106","v":[["*",[9,8,[[43,1,1,0,1,[[1037,1,1,0,1]]],[45,3,3,1,4,[[1062,1,1,1,2],[1068,2,2,2,4]]],[46,1,1,4,5,[[1085,1,1,4,5]]],[56,1,1,5,6,[[1132,1,1,5,6]]],[65,3,2,6,8,[[1183,3,2,6,8]]]],[27629,28373,28512,28527,28942,29952,30988,30992]]],["+",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[65,1,1,1,2,[[1183,1,1,1,2]]]],[27629,30992]]],["advice",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28942]]],["judgment",[3,3,[[45,3,3,0,3,[[1062,1,1,0,1],[1068,2,2,1,3]]]],[28373,28512,28527]]],["mind",[2,2,[[56,1,1,0,1,[[1132,1,1,0,1]]],[65,1,1,1,2,[[1183,1,1,1,2]]]],[29952,30988]]],["will",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30992]]]]},{"k":"G1107","v":[["*",[24,23,[[41,1,1,0,1,[[974,1,1,0,1]]],[42,3,2,1,3,[[1011,1,1,1,2],[1013,2,1,2,3]]],[43,1,1,3,4,[[1019,1,1,3,4]]],[44,3,3,4,7,[[1054,2,2,4,6],[1061,1,1,6,7]]],[45,2,2,7,9,[[1073,1,1,7,8],[1076,1,1,8,9]]],[46,1,1,9,10,[[1085,1,1,9,10]]],[47,1,1,10,11,[[1091,1,1,10,11]]],[48,6,6,11,17,[[1097,1,1,11,12],[1099,3,3,12,15],[1102,2,2,15,17]]],[49,2,2,17,19,[[1103,1,1,17,18],[1106,1,1,18,19]]],[50,3,3,19,22,[[1107,1,1,19,20],[1110,2,2,20,22]]],[60,1,1,22,23,[[1156,1,1,22,23]]]],[24988,26714,26785,26977,28177,28178,28362,28637,28719,28933,29068,29215,29254,29256,29261,29356,29358,29383,29448,29492,29549,29551,30495]]],["+",[3,3,[[44,1,1,0,1,[[1054,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]]],[28177,28637,28933]]],["certify",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29068]]],["declare",[3,3,[[42,1,1,0,1,[[1013,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[50,1,1,2,3,[[1110,1,1,2,3]]]],[26785,28719,29549]]],["declared",[1,1,[[42,1,1,0,1,[[1013,1,1,0,1]]]],[26785]]],["known",[15,15,[[41,1,1,0,1,[[974,1,1,0,1]]],[42,1,1,1,2,[[1011,1,1,1,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]],[44,2,2,3,5,[[1054,1,1,3,4],[1061,1,1,4,5]]],[48,6,6,5,11,[[1097,1,1,5,6],[1099,3,3,6,9],[1102,2,2,9,11]]],[49,1,1,11,12,[[1106,1,1,11,12]]],[50,2,2,12,14,[[1107,1,1,12,13],[1110,1,1,13,14]]],[60,1,1,14,15,[[1156,1,1,14,15]]]],[24988,26714,26977,28178,28362,29215,29254,29256,29261,29356,29358,29448,29492,29551,30495]]],["wot",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29383]]]]},{"k":"G1108","v":[["*",[29,28,[[41,2,2,0,2,[[973,1,1,0,1],[983,1,1,1,2]]],[44,3,3,2,5,[[1047,1,1,2,3],[1056,1,1,3,4],[1060,1,1,4,5]]],[45,10,9,5,14,[[1062,1,1,5,6],[1069,5,4,6,10],[1073,1,1,10,11],[1074,2,2,11,13],[1075,1,1,13,14]]],[46,6,6,14,20,[[1079,1,1,14,15],[1081,1,1,15,16],[1083,1,1,16,17],[1085,1,1,17,18],[1087,1,1,18,19],[1088,1,1,19,20]]],[48,1,1,20,21,[[1099,1,1,20,21]]],[49,1,1,21,22,[[1105,1,1,21,22]]],[50,1,1,22,23,[[1108,1,1,22,23]]],[53,1,1,23,24,[[1124,1,1,23,24]]],[59,1,1,24,25,[[1153,1,1,24,25]]],[60,3,3,25,28,[[1156,2,2,25,27],[1158,1,1,27,28]]]],[24970,25457,27982,28242,28317,28368,28528,28534,28537,28538,28642,28667,28673,28684,28838,28865,28904,28939,28976,28995,29270,29429,29497,29808,30431,30484,30485,30540]]],["Knowledge",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28528]]],["knowledge",[27,27,[[41,2,2,0,2,[[973,1,1,0,1],[983,1,1,1,2]]],[44,3,3,2,5,[[1047,1,1,2,3],[1056,1,1,3,4],[1060,1,1,4,5]]],[45,9,9,5,14,[[1062,1,1,5,6],[1069,4,4,6,10],[1073,1,1,10,11],[1074,2,2,11,13],[1075,1,1,13,14]]],[46,6,6,14,20,[[1079,1,1,14,15],[1081,1,1,15,16],[1083,1,1,16,17],[1085,1,1,17,18],[1087,1,1,18,19],[1088,1,1,19,20]]],[48,1,1,20,21,[[1099,1,1,20,21]]],[49,1,1,21,22,[[1105,1,1,21,22]]],[50,1,1,22,23,[[1108,1,1,22,23]]],[59,1,1,23,24,[[1153,1,1,23,24]]],[60,3,3,24,27,[[1156,2,2,24,26],[1158,1,1,26,27]]]],[24970,25457,27982,28242,28317,28368,28528,28534,28537,28538,28642,28667,28673,28684,28838,28865,28904,28939,28976,28995,29270,29429,29497,30431,30484,30485,30540]]],["science",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29808]]]]},{"k":"G1109","v":[["expert",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27826]]]]},{"k":"G1110","v":[["*",[15,15,[[41,2,2,0,2,[[974,1,1,0,1],[995,1,1,1,2]]],[42,2,2,2,4,[[1014,2,2,2,4]]],[43,10,10,4,14,[[1018,1,1,4,5],[1019,1,1,5,6],[1021,2,2,6,8],[1026,1,1,8,9],[1030,1,1,9,10],[1032,1,1,10,11],[1036,1,1,11,12],[1045,2,2,12,14]]],[44,1,1,14,15,[[1046,1,1,14,15]]]],[25017,25984,26800,26801,26942,26963,27032,27038,27258,27400,27460,27602,27921,27927,27949]]],["+",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27921]]],["Known",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27460]]],["acquaintance",[2,2,[[41,2,2,0,2,[[974,1,1,0,1],[995,1,1,1,2]]]],[25017,25984]]],["known",[10,10,[[42,2,2,0,2,[[1014,2,2,0,2]]],[43,7,7,2,9,[[1018,1,1,2,3],[1019,1,1,3,4],[1021,1,1,4,5],[1026,1,1,5,6],[1030,1,1,6,7],[1036,1,1,7,8],[1045,1,1,8,9]]],[44,1,1,9,10,[[1046,1,1,9,10]]]],[26800,26801,26942,26963,27032,27258,27400,27602,27927,27949]]],["notable",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27038]]]]},{"k":"G1111","v":[["*",[8,7,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]],[42,4,4,2,6,[[1002,3,3,2,5],[1003,1,1,5,6]]],[45,2,1,6,7,[[1071,2,1,6,7]]]],[23803,25137,26298,26300,26318,26360,28577]]],["Murmur",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26300]]],["murmur",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28577]]],["murmured",[6,6,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]],[42,3,3,2,5,[[1002,2,2,2,4],[1003,1,1,4,5]]],[45,1,1,5,6,[[1071,1,1,5,6]]]],[23803,25137,26298,26318,26360,28577]]]]},{"k":"G1112","v":[["*",[4,4,[[42,1,1,0,1,[[1003,1,1,0,1]]],[43,1,1,1,2,[[1023,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]]],[26340,27102,29405,30455]]],["grudging",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30455]]],["murmuring",[2,2,[[42,1,1,0,1,[[1003,1,1,0,1]]],[43,1,1,1,2,[[1023,1,1,1,2]]]],[26340,27102]]],["murmurings",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29405]]]]},{"k":"G1113","v":[["murmurers",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30688]]]]},{"k":"G1114","v":[["seducers",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29866]]]]},{"k":"G1115","v":[["Golgotha",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]]],[24162,24848,26842]]]]},{"k":"G1116","v":[["*",[5,5,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[23432,24418,28184,30506,30679]]],["+",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30506]]],["Gomorrha",[4,4,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[23432,24418,28184,30679]]]]},{"k":"G1117","v":[["*",[3,3,[[43,1,1,0,1,[[1038,1,1,0,1]]],[65,2,2,1,3,[[1184,2,2,1,3]]]],[27667,31004,31005]]],["burden",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27667]]],["merchandise",[2,2,[[65,2,2,0,2,[[1184,2,2,0,2]]]],[31004,31005]]]]},{"k":"G1118","v":[["parents",[19,18,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,5,5,2,7,[[974,2,2,2,4],[980,1,1,4,5],[990,1,1,5,6],[993,1,1,6,7]]],[42,6,6,7,13,[[1005,6,6,7,13]]],[44,1,1,13,14,[[1046,1,1,13,14]]],[46,2,1,14,15,[[1089,2,1,14,15]]],[48,1,1,15,16,[[1102,1,1,15,16]]],[50,1,1,16,17,[[1109,1,1,16,17]]],[54,1,1,17,18,[[1127,1,1,17,18]]]],[23438,24729,25000,25014,25301,25717,25842,26442,26443,26458,26460,26462,26463,27960,29036,29338,29537,29855]]]]},{"k":"G1119","v":[["*",[12,12,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,2,2,1,3,[[977,1,1,1,2],[994,1,1,2,3]]],[43,4,4,3,7,[[1024,1,1,3,4],[1026,1,1,4,5],[1037,1,1,5,6],[1038,1,1,6,7]]],[44,2,2,7,9,[[1056,1,1,7,8],[1059,1,1,8,9]]],[48,1,1,9,10,[[1099,1,1,9,10]]],[49,1,1,10,11,[[1104,1,1,10,11]]],[57,1,1,11,12,[[1144,1,1,11,12]]]],[24845,25115,25905,27176,27256,27662,27669,28213,28291,29265,29401,30224]]],["+",[5,5,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,4,4,1,5,[[1024,1,1,1,2],[1026,1,1,2,3],[1037,1,1,3,4],[1038,1,1,4,5]]]],[25905,27176,27256,27662,27669]]],["knee",[3,3,[[44,2,2,0,2,[[1056,1,1,0,1],[1059,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[28213,28291,29401]]],["knees",[4,4,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]],[48,1,1,2,3,[[1099,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]]],[24845,25115,29265,30224]]]]},{"k":"G1120","v":[["*",[4,4,[[39,2,2,0,2,[[945,1,1,0,1],[955,1,1,1,2]]],[40,2,2,2,4,[[957,1,1,2,3],[966,1,1,3,4]]]],[23714,24158,24255,24605]]],["down",[2,2,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23714,24255]]],["knee",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24158]]],["kneeled",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24605]]]]},{"k":"G1121","v":[["*",[15,14,[[41,3,3,0,3,[[988,2,2,0,2],[995,1,1,2,3]]],[42,2,2,3,5,[[1001,1,1,3,4],[1003,1,1,4,5]]],[43,2,2,5,7,[[1043,1,1,5,6],[1045,1,1,6,7]]],[44,3,3,7,10,[[1047,2,2,7,9],[1052,1,1,9,10]]],[46,3,2,10,12,[[1080,3,2,10,12]]],[47,1,1,12,13,[[1096,1,1,12,13]]],[54,1,1,13,14,[[1127,1,1,13,14]]]],[25626,25627,25973,26257,26343,27847,27920,27989,27991,28097,28847,28848,29199,29868]]],["+",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28848]]],["bill",[2,2,[[41,2,2,0,2,[[988,2,2,0,2]]]],[25626,25627]]],["learning",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27847]]],["letter",[6,5,[[44,3,3,0,3,[[1047,2,2,0,2],[1052,1,1,2,3]]],[46,2,1,3,4,[[1080,2,1,3,4]]],[47,1,1,4,5,[[1096,1,1,4,5]]]],[27989,27991,28097,28847,29199]]],["letters",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[42,1,1,1,2,[[1003,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]]],[25973,26343,27920]]],["scriptures",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29868]]],["writings",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26257]]]]},{"k":"G1122","v":[["*",[67,67,[[39,24,24,0,24,[[930,1,1,0,1],[933,1,1,1,2],[935,1,1,2,3],[936,1,1,3,4],[937,1,1,4,5],[940,1,1,5,6],[941,1,1,6,7],[943,1,1,7,8],[944,1,1,8,9],[945,1,1,9,10],[948,1,1,10,11],[949,1,1,11,12],[951,9,9,12,21],[954,2,2,21,23],[955,1,1,23,24]]],[40,22,22,24,46,[[957,1,1,24,25],[958,2,2,25,27],[959,1,1,27,28],[963,2,2,28,30],[964,1,1,30,31],[965,3,3,31,34],[966,1,1,34,35],[967,2,2,35,37],[968,4,4,37,41],[970,3,3,41,44],[971,2,2,44,46]]],[41,15,15,46,61,[[977,2,2,46,48],[978,1,1,48,49],[981,1,1,49,50],[983,2,2,50,52],[987,1,1,52,53],[991,1,1,53,54],[992,4,4,54,58],[994,2,2,58,60],[995,1,1,60,61]]],[42,1,1,61,62,[[1004,1,1,61,62]]],[43,4,4,62,66,[[1021,1,1,62,63],[1023,1,1,63,64],[1036,1,1,64,65],[1040,1,1,65,66]]],[45,1,1,66,67,[[1062,1,1,66,67]]]],[23173,23254,23345,23364,23382,23527,23591,23634,23693,23710,23810,23841,23920,23931,23932,23933,23941,23943,23945,23947,23952,24057,24111,24170,24237,24266,24276,24310,24464,24468,24531,24549,24552,24554,24621,24658,24667,24701,24705,24708,24711,24755,24797,24807,24827,24857,25128,25137,25153,25323,25449,25458,25590,25778,25780,25798,25818,25825,25866,25930,25945,26384,27027,27113,27620,27743,28383]]],["scribe",[4,4,[[39,2,2,0,2,[[936,1,1,0,1],[941,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[45,1,1,3,4,[[1062,1,1,3,4]]]],[23364,23591,24705,28383]]],["scribes",[62,62,[[39,22,22,0,22,[[930,1,1,0,1],[933,1,1,1,2],[935,1,1,2,3],[937,1,1,3,4],[940,1,1,4,5],[943,1,1,5,6],[944,1,1,6,7],[945,1,1,7,8],[948,1,1,8,9],[949,1,1,9,10],[951,9,9,10,19],[954,2,2,19,21],[955,1,1,21,22]]],[40,21,21,22,43,[[957,1,1,22,23],[958,2,2,23,25],[959,1,1,25,26],[963,2,2,26,28],[964,1,1,28,29],[965,3,3,29,32],[966,1,1,32,33],[967,2,2,33,35],[968,3,3,35,38],[970,3,3,38,41],[971,2,2,41,43]]],[41,15,15,43,58,[[977,2,2,43,45],[978,1,1,45,46],[981,1,1,46,47],[983,2,2,47,49],[987,1,1,49,50],[991,1,1,50,51],[992,4,4,51,55],[994,2,2,55,57],[995,1,1,57,58]]],[42,1,1,58,59,[[1004,1,1,58,59]]],[43,3,3,59,62,[[1021,1,1,59,60],[1023,1,1,60,61],[1040,1,1,61,62]]]],[23173,23254,23345,23382,23527,23634,23693,23710,23810,23841,23920,23931,23932,23933,23941,23943,23945,23947,23952,24057,24111,24170,24237,24266,24276,24310,24464,24468,24531,24549,24552,24554,24621,24658,24667,24701,24708,24711,24755,24797,24807,24827,24857,25128,25137,25153,25323,25449,25458,25590,25778,25780,25798,25818,25825,25866,25930,25945,26384,27027,27113,27743]]],["townclerk",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27620]]]]},{"k":"G1123","v":[["written",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27977]]]]},{"k":"G1124","v":[["*",[51,51,[[39,4,4,0,4,[[949,1,1,0,1],[950,1,1,1,2],[954,2,2,2,4]]],[40,4,4,4,8,[[968,2,2,4,6],[970,1,1,6,7],[971,1,1,7,8]]],[41,4,4,8,12,[[976,1,1,8,9],[996,3,3,9,12]]],[42,12,12,12,24,[[998,1,1,12,13],[1001,1,1,13,14],[1003,2,2,14,16],[1006,1,1,16,17],[1009,1,1,17,18],[1013,1,1,18,19],[1015,4,4,19,23],[1016,1,1,23,24]]],[43,7,7,24,31,[[1018,1,1,24,25],[1025,2,2,25,27],[1034,2,2,27,29],[1035,2,2,29,31]]],[44,7,7,31,38,[[1046,1,1,31,32],[1049,1,1,32,33],[1054,1,1,33,34],[1055,1,1,34,35],[1056,1,1,35,36],[1060,1,1,36,37],[1061,1,1,37,38]]],[45,2,2,38,40,[[1076,2,2,38,40]]],[47,3,3,40,43,[[1093,2,2,40,42],[1094,1,1,42,43]]],[53,1,1,43,44,[[1123,1,1,43,44]]],[54,1,1,44,45,[[1127,1,1,44,45]]],[58,3,3,45,48,[[1147,2,2,45,47],[1149,1,1,47,48]]],[59,1,1,48,49,[[1152,1,1,48,49]]],[60,2,2,49,51,[[1156,1,1,49,50],[1158,1,1,50,51]]]],[23868,23901,24108,24110,24683,24697,24803,24854,25084,26018,26023,26036,26117,26249,26366,26370,26516,26648,26771,26849,26853,26861,26862,26876,26939,27208,27211,27525,27534,27581,27585,27932,28025,28172,28199,28211,28307,28362,28721,28722,29110,29124,29161,29781,29869,30301,30316,30342,30405,30499,30538]]],["+",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28025]]],["scripture",[30,30,[[40,2,2,0,2,[[968,1,1,0,1],[971,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]],[42,11,11,3,14,[[998,1,1,3,4],[1003,2,2,4,6],[1006,1,1,6,7],[1009,1,1,7,8],[1013,1,1,8,9],[1015,4,4,9,13],[1016,1,1,13,14]]],[43,3,3,14,17,[[1018,1,1,14,15],[1025,2,2,15,17]]],[44,3,3,17,20,[[1054,1,1,17,18],[1055,1,1,18,19],[1056,1,1,19,20]]],[47,3,3,20,23,[[1093,2,2,20,22],[1094,1,1,22,23]]],[53,1,1,23,24,[[1123,1,1,23,24]]],[54,1,1,24,25,[[1127,1,1,24,25]]],[58,3,3,25,28,[[1147,2,2,25,27],[1149,1,1,27,28]]],[59,1,1,28,29,[[1152,1,1,28,29]]],[60,1,1,29,30,[[1156,1,1,29,30]]]],[24683,24854,25084,26117,26366,26370,26516,26648,26771,26849,26853,26861,26862,26876,26939,27208,27211,28172,28199,28211,29110,29124,29161,29781,29869,30301,30316,30342,30405,30499]]],["scriptures",[20,20,[[39,4,4,0,4,[[949,1,1,0,1],[950,1,1,1,2],[954,2,2,2,4]]],[40,2,2,4,6,[[968,1,1,4,5],[970,1,1,5,6]]],[41,3,3,6,9,[[996,3,3,6,9]]],[42,1,1,9,10,[[1001,1,1,9,10]]],[43,4,4,10,14,[[1034,2,2,10,12],[1035,2,2,12,14]]],[44,3,3,14,17,[[1046,1,1,14,15],[1060,1,1,15,16],[1061,1,1,16,17]]],[45,2,2,17,19,[[1076,2,2,17,19]]],[60,1,1,19,20,[[1158,1,1,19,20]]]],[23868,23901,24108,24110,24697,24803,26018,26023,26036,26249,27525,27534,27581,27585,27932,28307,28362,28721,28722,30538]]]]},{"k":"G1125","v":[["*",[194,183,[[39,10,10,0,10,[[930,1,1,0,1],[932,4,4,1,5],[939,1,1,5,6],[949,1,1,6,7],[954,2,2,7,9],[955,1,1,9,10]]],[40,10,10,10,20,[[957,1,1,10,11],[963,1,1,11,12],[965,2,2,12,14],[966,2,2,14,16],[967,1,1,16,17],[968,1,1,17,18],[970,2,2,18,20]]],[41,22,22,20,42,[[973,2,2,20,22],[974,1,1,22,23],[975,1,1,23,24],[976,4,4,24,28],[979,1,1,28,29],[982,2,2,29,31],[988,2,2,31,33],[990,1,1,33,34],[991,1,1,34,35],[992,2,2,35,37],[993,1,1,37,38],[994,1,1,38,39],[995,1,1,39,40],[996,2,2,40,42]]],[42,23,20,42,62,[[997,1,1,42,43],[998,1,1,43,44],[1001,1,1,44,45],[1002,2,2,45,47],[1004,3,3,47,50],[1006,1,1,50,51],[1008,2,2,51,53],[1011,1,1,53,54],[1015,6,4,54,58],[1016,2,2,58,60],[1017,3,2,60,62]]],[43,12,11,62,73,[[1018,1,1,62,63],[1024,1,1,63,64],[1030,2,2,64,66],[1032,2,2,66,68],[1035,1,1,68,69],[1040,2,2,69,71],[1041,1,1,71,72],[1042,2,1,72,73]]],[44,20,20,73,93,[[1046,1,1,73,74],[1047,1,1,74,75],[1048,2,2,75,77],[1049,2,2,77,79],[1053,1,1,79,80],[1054,2,2,80,82],[1055,2,2,82,84],[1056,2,2,84,86],[1057,1,1,86,87],[1059,1,1,87,88],[1060,4,4,88,92],[1061,1,1,92,93]]],[45,18,18,93,111,[[1062,2,2,93,95],[1063,1,1,95,96],[1064,1,1,96,97],[1065,2,2,97,99],[1066,2,2,99,101],[1068,1,1,101,102],[1070,3,3,102,105],[1071,2,2,105,107],[1075,2,2,107,109],[1076,2,2,109,111]]],[46,11,11,111,122,[[1078,1,1,111,112],[1079,3,3,112,115],[1081,1,1,115,116],[1084,1,1,116,117],[1085,1,1,117,118],[1086,2,2,118,120],[1090,2,2,120,122]]],[47,7,6,122,128,[[1091,1,1,122,123],[1093,3,2,123,125],[1094,2,2,125,127],[1096,1,1,127,128]]],[49,1,1,128,129,[[1105,1,1,128,129]]],[51,2,2,129,131,[[1114,1,1,129,130],[1115,1,1,130,131]]],[52,1,1,131,132,[[1118,1,1,131,132]]],[53,1,1,132,133,[[1121,1,1,132,133]]],[56,2,2,133,135,[[1132,2,2,133,135]]],[57,1,1,135,136,[[1142,1,1,135,136]]],[59,2,2,136,138,[[1151,1,1,136,137],[1155,1,1,137,138]]],[60,2,2,138,140,[[1158,2,2,138,140]]],[61,13,10,140,150,[[1159,1,1,140,141],[1160,11,8,141,149],[1163,1,1,149,150]]],[62,2,2,150,152,[[1164,2,2,150,152]]],[63,3,2,152,154,[[1165,3,2,152,154]]],[64,2,1,154,155,[[1166,2,1,154,155]]],[65,29,28,155,183,[[1167,3,3,155,158],[1168,5,5,158,163],[1169,4,4,163,167],[1171,1,1,167,168],[1176,2,1,168,169],[1179,1,1,169,170],[1180,2,2,170,172],[1183,2,2,172,174],[1185,3,3,174,177],[1186,2,2,177,179],[1187,2,2,179,181],[1188,2,2,181,183]]]],[23174,23213,23215,23216,23219,23469,23839,24078,24085,24166,24217,24469,24550,24551,24592,24593,24657,24692,24775,24781,24896,24956,24996,25029,25067,25071,25073,25080,25222,25383,25389,25626,25627,25719,25777,25796,25807,25848,25901,25973,26035,26037,26089,26112,26256,26288,26302,26387,26389,26398,26515,26594,26596,26724,26844,26845,26846,26847,26897,26898,26922,26923,26943,27158,27391,27395,27457,27465,27584,27739,27759,27783,27822,27947,27986,27995,28001,28039,28045,28152,28168,28188,28193,28203,28217,28235,28264,28291,28306,28312,28318,28324,28358,28382,28394,28403,28429,28439,28447,28463,28465,28488,28549,28550,28555,28574,28578,28699,28715,28763,28772,28813,28827,28828,28833,28872,28928,28947,28957,28965,29045,29053,29077,29112,29115,29153,29158,29199,29422,29612,29622,29695,29745,29957,29959,30140,30390,30477,30523,30537,30544,30551,30557,30558,30562,30563,30564,30571,30576,30637,30650,30657,30667,30671,30675,30700,30708,30716,30718,30725,30729,30734,30735,30747,30753,30758,30760,30780,30865,30916,30927,30939,30980,30983,31026,31029,31033,31050,31053,31058,31080,31098,31099]]],["+",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[45,1,1,1,2,[[1063,1,1,1,2]]]],[27947,28403]]],["Write",[5,5,[[42,1,1,0,1,[[1015,1,1,0,1]]],[65,4,4,1,5,[[1167,1,1,1,2],[1180,1,1,2,3],[1185,1,1,3,4],[1187,1,1,4,5]]]],[26846,30716,30939,31026,31058]]],["describeth",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28193]]],["write",[45,39,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,3,3,1,4,[[973,1,1,1,2],[988,2,2,2,4]]],[42,1,1,4,5,[[997,1,1,4,5]]],[43,2,1,5,6,[[1042,2,1,5,6]]],[45,2,2,6,8,[[1065,1,1,6,7],[1075,1,1,7,8]]],[46,5,5,8,13,[[1078,1,1,8,9],[1079,1,1,9,10],[1086,1,1,10,11],[1090,2,2,11,13]]],[47,1,1,13,14,[[1091,1,1,13,14]]],[49,1,1,14,15,[[1105,1,1,14,15]]],[51,2,2,15,17,[[1114,1,1,15,16],[1115,1,1,16,17]]],[52,1,1,17,18,[[1118,1,1,17,18]]],[53,1,1,18,19,[[1121,1,1,18,19]]],[60,1,1,19,20,[[1158,1,1,19,20]]],[61,8,6,20,26,[[1159,1,1,20,21],[1160,7,5,21,26]]],[62,1,1,26,27,[[1164,1,1,26,27]]],[63,2,1,27,28,[[1165,2,1,27,28]]],[64,2,1,28,29,[[1166,2,1,28,29]]],[65,11,10,29,39,[[1167,1,1,29,30],[1168,4,4,30,34],[1169,4,4,34,38],[1176,2,1,38,39]]]],[24592,24896,25626,25627,26089,27822,28447,28715,28813,28833,28957,29045,29053,29077,29422,29612,29622,29695,29745,30523,30544,30551,30557,30558,30562,30563,30657,30671,30675,30708,30718,30725,30729,30735,30747,30753,30758,30760,30865]]],["writing",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26844]]],["written",[119,115,[[39,10,10,0,10,[[930,1,1,0,1],[932,4,4,1,5],[939,1,1,5,6],[949,1,1,6,7],[954,2,2,7,9],[955,1,1,9,10]]],[40,7,7,10,17,[[957,1,1,10,11],[963,1,1,11,12],[965,2,2,12,14],[967,1,1,14,15],[970,2,2,15,17]]],[41,17,17,17,34,[[974,1,1,17,18],[975,1,1,18,19],[976,4,4,19,23],[979,1,1,23,24],[982,2,2,24,26],[990,1,1,26,27],[991,1,1,27,28],[992,1,1,28,29],[993,1,1,29,30],[994,1,1,30,31],[995,1,1,31,32],[996,2,2,32,34]]],[42,15,13,34,47,[[998,1,1,34,35],[1002,2,2,35,37],[1004,1,1,37,38],[1006,1,1,38,39],[1008,2,2,39,41],[1011,1,1,41,42],[1015,3,2,42,44],[1016,2,2,44,46],[1017,2,1,46,47]]],[43,7,7,47,54,[[1018,1,1,47,48],[1024,1,1,48,49],[1030,2,2,49,51],[1032,1,1,51,52],[1040,1,1,52,53],[1041,1,1,53,54]]],[44,17,17,54,71,[[1047,1,1,54,55],[1048,2,2,55,57],[1049,2,2,57,59],[1053,1,1,59,60],[1054,2,2,60,62],[1055,1,1,62,63],[1056,2,2,63,65],[1057,1,1,65,66],[1059,1,1,66,67],[1060,4,4,67,71]]],[45,13,13,71,84,[[1062,2,2,71,73],[1064,1,1,73,74],[1065,1,1,74,75],[1066,1,1,75,76],[1070,3,3,76,79],[1071,2,2,79,81],[1075,1,1,81,82],[1076,2,2,82,84]]],[46,3,3,84,87,[[1081,1,1,84,85],[1085,1,1,85,86],[1086,1,1,86,87]]],[47,6,5,87,92,[[1093,3,2,87,89],[1094,2,2,89,91],[1096,1,1,91,92]]],[56,1,1,92,93,[[1132,1,1,92,93]]],[57,1,1,93,94,[[1142,1,1,93,94]]],[59,2,2,94,96,[[1151,1,1,94,95],[1155,1,1,95,96]]],[60,1,1,96,97,[[1158,1,1,96,97]]],[61,5,4,97,101,[[1160,4,3,97,100],[1163,1,1,100,101]]],[65,14,14,101,115,[[1167,1,1,101,102],[1168,1,1,102,103],[1171,1,1,103,104],[1179,1,1,104,105],[1180,1,1,105,106],[1183,2,2,106,108],[1185,2,2,108,110],[1186,2,2,110,112],[1187,1,1,112,113],[1188,2,2,113,115]]]],[23174,23213,23215,23216,23219,23469,23839,24078,24085,24166,24217,24469,24550,24551,24657,24775,24781,24996,25029,25067,25071,25073,25080,25222,25383,25389,25719,25777,25796,25848,25901,25973,26035,26037,26112,26288,26302,26398,26515,26594,26596,26724,26845,26847,26897,26898,26923,26943,27158,27391,27395,27457,27739,27783,27986,27995,28001,28039,28045,28152,28168,28188,28203,28217,28235,28264,28291,28306,28312,28318,28324,28382,28394,28429,28439,28465,28549,28550,28555,28574,28578,28699,28763,28772,28872,28947,28965,29112,29115,29153,29158,29199,29957,30140,30390,30477,30537,30564,30571,30576,30637,30700,30734,30780,30916,30927,30980,30983,31029,31033,31050,31053,31080,31098,31099]]],["wrote",[21,21,[[40,2,2,0,2,[[966,1,1,0,1],[968,1,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[992,1,1,3,4]]],[42,5,5,4,9,[[1001,1,1,4,5],[1004,2,2,5,7],[1015,1,1,7,8],[1017,1,1,8,9]]],[43,3,3,9,12,[[1032,1,1,9,10],[1035,1,1,10,11],[1040,1,1,11,12]]],[44,1,1,12,13,[[1061,1,1,12,13]]],[45,2,2,13,15,[[1066,1,1,13,14],[1068,1,1,14,15]]],[46,3,3,15,18,[[1079,2,2,15,17],[1084,1,1,17,18]]],[56,1,1,18,19,[[1132,1,1,18,19]]],[62,1,1,19,20,[[1164,1,1,19,20]]],[63,1,1,20,21,[[1165,1,1,20,21]]]],[24593,24692,24956,25807,26256,26387,26389,26844,26922,27465,27584,27759,28358,28463,28488,28827,28828,28928,29959,30650,30667]]]]},{"k":"G1126","v":[["wives'",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29754]]]]},{"k":"G1127","v":[["*",[23,23,[[39,6,6,0,6,[[952,2,2,0,2],[953,1,1,2,3],[954,3,3,3,6]]],[40,6,6,6,12,[[969,3,3,6,9],[970,3,3,9,12]]],[41,2,2,12,14,[[984,2,2,12,14]]],[43,1,1,14,15,[[1037,1,1,14,15]]],[45,1,1,15,16,[[1077,1,1,15,16]]],[50,1,1,16,17,[[1110,1,1,16,17]]],[51,2,2,17,19,[[1115,2,2,17,19]]],[59,1,1,19,20,[[1155,1,1,19,20]]],[65,3,3,20,23,[[1169,2,2,20,22],[1182,1,1,22,23]]]],[23999,24000,24021,24092,24094,24095,24751,24752,24754,24788,24791,24792,25496,25498,27657,28789,29544,29627,29631,30473,30748,30749,30969]]],["+",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[24000,25498]]],["Watch",[7,7,[[39,3,3,0,3,[[952,1,1,0,1],[953,1,1,1,2],[954,1,1,2,3]]],[40,3,3,3,6,[[969,2,2,3,5],[970,1,1,5,6]]],[45,1,1,6,7,[[1077,1,1,6,7]]]],[23999,24021,24095,24752,24754,24792,28789]]],["vigilant",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30473]]],["wake",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29631]]],["watch",[9,9,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,3,3,2,5,[[969,1,1,2,3],[970,2,2,3,5]]],[43,1,1,5,6,[[1037,1,1,5,6]]],[50,1,1,6,7,[[1110,1,1,6,7]]],[51,1,1,7,8,[[1115,1,1,7,8]]],[65,1,1,8,9,[[1169,1,1,8,9]]]],[24092,24094,24751,24788,24791,27657,29544,29627,30749]]],["watcheth",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30969]]],["watchful",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30748]]],["watching",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25496]]]]},{"k":"G1128","v":[["*",[4,4,[[53,1,1,0,1,[[1122,1,1,0,1]]],[57,2,2,1,3,[[1137,1,1,1,2],[1144,1,1,2,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]]],[29754,30044,30223,30514]]],["exercise",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29754]]],["exercised",[3,3,[[57,2,2,0,2,[[1137,1,1,0,1],[1144,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[30044,30223,30514]]]]},{"k":"G1129","v":[["exercise",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29755]]]]},{"k":"G1130","v":[["naked",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28444]]]]},{"k":"G1131","v":[["*",[15,15,[[39,4,4,0,4,[[953,4,4,0,4]]],[40,2,2,4,6,[[970,2,2,4,6]]],[42,1,1,6,7,[[1017,1,1,6,7]]],[43,1,1,7,8,[[1036,1,1,7,8]]],[45,1,1,8,9,[[1076,1,1,8,9]]],[46,1,1,9,10,[[1082,1,1,9,10]]],[57,1,1,10,11,[[1136,1,1,10,11]]],[58,1,1,11,12,[[1147,1,1,11,12]]],[65,3,3,12,15,[[1169,1,1,12,13],[1182,1,1,13,14],[1183,1,1,14,15]]]],[24044,24046,24051,24052,24805,24806,26905,27601,28755,28880,30027,30308,30763,30969,30991]]],["Naked",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24044]]],["bare",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28755]]],["naked",[13,13,[[39,3,3,0,3,[[953,3,3,0,3]]],[40,2,2,3,5,[[970,2,2,3,5]]],[42,1,1,5,6,[[1017,1,1,5,6]]],[43,1,1,6,7,[[1036,1,1,6,7]]],[46,1,1,7,8,[[1082,1,1,7,8]]],[57,1,1,8,9,[[1136,1,1,8,9]]],[58,1,1,9,10,[[1147,1,1,9,10]]],[65,3,3,10,13,[[1169,1,1,10,11],[1182,1,1,11,12],[1183,1,1,12,13]]]],[24046,24051,24052,24805,24806,26905,27601,28880,30027,30308,30763,30969,30991]]]]},{"k":"G1132","v":[["nakedness",[3,3,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[65,1,1,2,3,[[1169,1,1,2,3]]]],[28151,29016,30764]]]]},{"k":"G1133","v":[["women",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29859]]]]},{"k":"G1134","v":[["wife",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30431]]]]},{"k":"G1135","v":[["*",[221,200,[[39,30,30,0,30,[[929,2,2,0,2],[933,3,3,2,5],[937,2,2,5,7],[939,1,1,7,8],[941,1,1,8,9],[942,2,2,9,11],[943,3,3,11,14],[946,1,1,14,15],[947,6,6,15,21],[950,4,4,21,25],[954,2,2,25,27],[955,2,2,27,29],[956,1,1,29,30]]],[40,19,17,30,47,[[961,2,2,30,32],[962,2,2,32,34],[963,2,2,34,36],[966,5,5,36,41],[968,6,4,41,45],[970,1,1,45,46],[971,1,1,46,47]]],[41,43,40,47,87,[[973,6,6,47,53],[974,1,1,53,54],[975,1,1,54,55],[976,1,1,55,56],[979,6,5,56,61],[980,4,4,61,65],[982,1,1,65,66],[983,1,1,66,67],[985,3,3,67,70],[986,2,2,70,72],[987,1,1,72,73],[988,1,1,73,74],[989,1,1,74,75],[990,1,1,75,76],[992,7,5,76,81],[994,1,1,81,82],[995,3,3,82,85],[996,2,2,85,87]]],[42,23,21,87,108,[[998,1,1,87,88],[1000,13,12,88,100],[1004,5,4,100,104],[1012,1,1,104,105],[1015,1,1,105,106],[1016,2,2,106,108]]],[43,19,19,108,127,[[1018,1,1,108,109],[1022,4,4,109,113],[1025,2,2,113,115],[1026,1,1,115,116],[1030,1,1,116,117],[1033,3,3,117,120],[1034,3,3,120,123],[1035,1,1,123,124],[1038,1,1,124,125],[1039,1,1,125,126],[1041,1,1,126,127]]],[44,1,1,127,128,[[1052,1,1,127,128]]],[45,41,30,128,158,[[1066,1,1,128,129],[1068,21,15,129,144],[1070,1,1,144,145],[1072,16,11,145,156],[1075,2,2,156,158]]],[47,1,1,158,159,[[1094,1,1,158,159]]],[48,9,7,159,166,[[1101,9,7,159,166]]],[50,2,2,166,168,[[1109,2,2,166,168]]],[53,9,9,168,177,[[1120,5,5,168,173],[1121,3,3,173,176],[1123,1,1,176,177]]],[55,1,1,177,178,[[1129,1,1,177,178]]],[57,1,1,178,179,[[1143,1,1,178,179]]],[59,3,2,179,181,[[1153,3,2,179,181]]],[65,19,19,181,200,[[1168,1,1,181,182],[1175,1,1,182,183],[1178,8,8,183,191],[1180,1,1,191,192],[1183,6,6,192,198],[1185,1,1,198,199],[1187,1,1,199,200]]]],[23164,23168,23262,23265,23266,23399,23401,23470,23572,23600,23618,23655,23661,23671,23752,23765,23767,23770,23771,23772,23791,23896,23897,23899,23900,24061,24064,24148,24184,24200,24389,24397,24424,24425,24488,24489,24590,24595,24599,24600,24617,24692,24693,24695,24696,24757,24866,24898,24906,24911,24917,24921,24935,24978,25044,25089,25223,25232,25234,25239,25245,25247,25248,25288,25292,25401,25432,25529,25530,25539,25573,25579,25596,25638,25683,25717,25807,25808,25809,25811,25812,25921,25962,25984,25990,26013,26015,26099,26163,26165,26167,26171,26173,26175,26177,26181,26183,26184,26195,26198,26384,26385,26390,26391,26747,26851,26880,26882,26937,27060,27061,27066,27073,27179,27188,27218,27412,27484,27496,27497,27527,27535,27557,27559,27669,27708,27793,28093,28455,28488,28489,28490,28491,28497,28498,28499,28500,28501,28503,28514,28516,28520,28521,28526,28545,28603,28605,28606,28607,28608,28609,28610,28611,28612,28613,28615,28712,28713,29135,29326,29327,29328,29329,29332,29335,29337,29535,29536,29725,29726,29727,29728,29730,29733,29742,29743,29772,29898,30207,30425,30429,30737,30848,30892,30895,30897,30904,30905,30906,30907,30908,30930,30978,30979,30981,30982,30984,30993,31024,31062]]],["Wives",[2,2,[[48,1,1,0,1,[[1101,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29326,29535]]],["Woman",[8,8,[[41,2,2,0,2,[[985,1,1,0,1],[994,1,1,1,2]]],[42,6,6,2,8,[[998,1,1,2,3],[1000,1,1,3,4],[1004,1,1,4,5],[1015,1,1,5,6],[1016,2,2,6,8]]]],[25530,25921,26099,26177,26391,26851,26880,26882]]],["Women",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30207]]],["wife",[80,69,[[39,15,15,0,15,[[929,2,2,0,2],[933,2,2,2,4],[942,1,1,4,5],[946,1,1,5,6],[947,5,5,6,11],[950,3,3,11,14],[955,1,1,14,15]]],[40,11,9,15,24,[[962,2,2,15,17],[966,4,4,17,21],[968,5,3,21,24]]],[41,18,16,24,40,[[973,4,4,24,28],[974,1,1,28,29],[975,1,1,29,30],[980,1,1,30,31],[986,2,2,31,33],[988,1,1,33,34],[989,1,1,34,35],[990,1,1,35,36],[992,6,4,36,40]]],[43,5,5,40,45,[[1022,3,3,40,43],[1035,1,1,43,44],[1041,1,1,44,45]]],[45,20,14,45,59,[[1066,1,1,45,46],[1068,18,12,46,58],[1070,1,1,58,59]]],[48,5,4,59,63,[[1101,5,4,59,63]]],[53,3,3,63,66,[[1121,2,2,63,65],[1123,1,1,65,66]]],[55,1,1,66,67,[[1129,1,1,66,67]]],[65,2,2,67,69,[[1185,1,1,67,68],[1187,1,1,68,69]]]],[23164,23168,23265,23266,23600,23752,23765,23767,23771,23772,23791,23896,23897,23900,24148,24424,24425,24590,24595,24599,24617,24692,24693,24696,24898,24906,24911,24917,24978,25044,25248,25573,25579,25638,25683,25717,25807,25808,25809,25812,27060,27061,27066,27559,27793,28455,28489,28490,28491,28497,28498,28499,28501,28503,28514,28520,28521,28526,28545,29327,29332,29335,29337,29733,29743,29772,29898,31024,31062]]],["wives",[10,9,[[39,1,1,0,1,[[947,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]],[45,1,1,2,3,[[1068,1,1,2,3]]],[48,3,3,3,6,[[1101,3,3,3,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[53,1,1,7,8,[[1121,1,1,7,8]]],[59,2,1,8,9,[[1153,2,1,8,9]]]],[23770,27669,28516,29328,29329,29332,29536,29742,30425]]],["woman",[88,81,[[39,9,9,0,9,[[933,1,1,0,1],[937,2,2,1,3],[941,1,1,3,4],[943,2,2,4,6],[950,1,1,6,7],[954,2,2,7,9]]],[40,7,7,9,16,[[961,2,2,9,11],[963,2,2,11,13],[966,1,1,13,14],[968,1,1,14,15],[970,1,1,15,16]]],[41,14,13,16,29,[[976,1,1,16,17],[979,5,4,17,21],[980,2,2,21,23],[982,1,1,23,24],[983,1,1,24,25],[985,2,2,25,27],[987,1,1,27,28],[992,1,1,28,29]]],[42,17,16,29,45,[[1000,12,11,29,40],[1004,4,4,40,44],[1012,1,1,44,45]]],[43,3,3,45,48,[[1033,2,2,45,47],[1034,1,1,47,48]]],[44,1,1,48,49,[[1052,1,1,48,49]]],[45,18,13,49,62,[[1068,2,2,49,51],[1072,16,11,51,62]]],[47,1,1,62,63,[[1094,1,1,62,63]]],[53,3,3,63,66,[[1120,3,3,63,66]]],[65,15,15,66,81,[[1168,1,1,66,67],[1178,8,8,67,75],[1183,6,6,75,81]]]],[23262,23399,23401,23572,23655,23661,23899,24061,24064,24389,24397,24488,24489,24600,24695,24757,25089,25232,25234,25239,25245,25288,25292,25401,25432,25529,25539,25596,25811,26163,26165,26167,26171,26173,26175,26181,26183,26184,26195,26198,26384,26385,26390,26391,26747,27484,27497,27557,28093,28488,28500,28603,28605,28606,28607,28608,28609,28610,28611,28612,28613,28615,29135,29727,29728,29730,30737,30892,30895,30897,30904,30905,30906,30907,30908,30978,30979,30981,30982,30984,30993]]],["women",[32,32,[[39,5,5,0,5,[[939,1,1,0,1],[942,1,1,1,2],[943,1,1,2,3],[955,1,1,3,4],[956,1,1,4,5]]],[40,1,1,5,6,[[971,1,1,5,6]]],[41,9,9,6,15,[[973,2,2,6,8],[979,1,1,8,9],[980,1,1,9,10],[995,3,3,10,13],[996,2,2,13,15]]],[43,10,10,15,25,[[1018,1,1,15,16],[1022,1,1,16,17],[1025,2,2,17,19],[1026,1,1,19,20],[1030,1,1,20,21],[1033,1,1,21,22],[1034,2,2,22,24],[1039,1,1,24,25]]],[45,2,2,25,27,[[1075,2,2,25,27]]],[53,2,2,27,29,[[1120,2,2,27,29]]],[59,1,1,29,30,[[1153,1,1,29,30]]],[65,2,2,30,32,[[1175,1,1,30,31],[1180,1,1,31,32]]]],[23470,23618,23671,24184,24200,24866,24921,24935,25223,25247,25962,25984,25990,26013,26015,26937,27073,27179,27188,27218,27412,27496,27527,27535,27708,28712,28713,29725,29726,30429,30848,30930]]]]},{"k":"G1136","v":[["Gog",[1,1,[[65,1,1,0,1,[[1186,1,1,0,1]]]],[31046]]]]},{"k":"G1137","v":[["*",[9,9,[[39,2,2,0,2,[[934,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]],[43,2,2,4,6,[[1021,1,1,4,5],[1043,1,1,5,6]]],[59,1,1,6,7,[[1152,1,1,6,7]]],[65,2,2,7,9,[[1173,1,1,7,8],[1186,1,1,8,9]]]],[23287,23868,24683,25796,27033,27849,30406,30811,31046]]],["corner",[6,6,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[43,2,2,3,5,[[1021,1,1,3,4],[1043,1,1,4,5]]],[59,1,1,5,6,[[1152,1,1,5,6]]]],[23868,24683,25796,27033,27849,30406]]],["corners",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[65,1,1,1,2,[[1173,1,1,1,2]]]],[23287,30811]]],["quarters",[1,1,[[65,1,1,0,1,[[1186,1,1,0,1]]]],[31046]]]]},{"k":"G1138","v":[["*",[59,54,[[39,17,15,0,15,[[929,6,4,0,4],[937,1,1,4,5],[940,2,2,5,7],[943,1,1,7,8],[948,2,2,8,10],[949,2,2,10,12],[950,3,3,12,15]]],[40,7,7,15,22,[[958,1,1,15,16],[966,2,2,16,18],[967,1,1,18,19],[968,3,3,19,22]]],[41,13,12,22,34,[[973,3,3,22,25],[974,3,2,25,27],[975,1,1,27,28],[978,1,1,28,29],[990,2,2,29,31],[992,3,3,31,34]]],[42,2,1,34,35,[[1003,2,1,34,35]]],[43,11,10,35,45,[[1018,1,1,35,36],[1019,3,3,36,39],[1021,1,1,39,40],[1024,1,1,40,41],[1030,4,3,41,44],[1032,1,1,44,45]]],[44,3,3,45,48,[[1046,1,1,45,46],[1049,1,1,46,47],[1056,1,1,47,48]]],[54,1,1,48,49,[[1126,1,1,48,49]]],[57,2,2,49,51,[[1136,1,1,49,50],[1143,1,1,50,51]]],[65,3,3,51,54,[[1169,1,1,51,52],[1171,1,1,52,53],[1188,1,1,53,54]]]],[23145,23150,23161,23164,23406,23492,23512,23655,23822,23823,23835,23841,23914,23915,23917,24285,24635,24636,24650,24708,24709,24710,24920,24925,24962,24977,24984,25056,25149,25726,25727,25820,25821,25823,26370,26939,26974,26978,26983,27047,27161,27384,27396,27398,27458,27933,28028,28218,29835,30021,30204,30753,30784,31096]]],["David",[58,53,[[39,17,15,0,15,[[929,6,4,0,4],[937,1,1,4,5],[940,2,2,5,7],[943,1,1,7,8],[948,2,2,8,10],[949,2,2,10,12],[950,3,3,12,15]]],[40,7,7,15,22,[[958,1,1,15,16],[966,2,2,16,18],[967,1,1,18,19],[968,3,3,19,22]]],[41,12,11,22,33,[[973,3,3,22,25],[974,3,2,25,27],[975,1,1,27,28],[978,1,1,28,29],[990,2,2,29,31],[992,2,2,31,33]]],[42,2,1,33,34,[[1003,2,1,33,34]]],[43,11,10,34,44,[[1018,1,1,34,35],[1019,3,3,35,38],[1021,1,1,38,39],[1024,1,1,39,40],[1030,4,3,40,43],[1032,1,1,43,44]]],[44,3,3,44,47,[[1046,1,1,44,45],[1049,1,1,45,46],[1056,1,1,46,47]]],[54,1,1,47,48,[[1126,1,1,47,48]]],[57,2,2,48,50,[[1136,1,1,48,49],[1143,1,1,49,50]]],[65,3,3,50,53,[[1169,1,1,50,51],[1171,1,1,51,52],[1188,1,1,52,53]]]],[23145,23150,23161,23164,23406,23492,23512,23655,23822,23823,23835,23841,23914,23915,23917,24285,24635,24636,24650,24708,24709,24710,24920,24925,24962,24977,24984,25056,25149,25726,25727,25821,25823,26370,26939,26974,26978,26983,27047,27161,27384,27396,27398,27458,27933,28028,28218,29835,30021,30204,30753,30784,31096]]],["David's",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25820]]]]},{"k":"G1139","v":[["*",[13,13,[[39,7,7,0,7,[[932,1,1,0,1],[936,3,3,1,4],[937,1,1,4,5],[940,1,1,5,6],[943,1,1,6,7]]],[40,4,4,7,11,[[957,1,1,7,8],[961,3,3,8,11]]],[41,1,1,11,12,[[980,1,1,11,12]]],[42,1,1,12,13,[[1006,1,1,12,13]]]],[23233,23361,23373,23378,23411,23511,23655,24247,24379,24380,24382,25281,26502]]],["devil",[7,7,[[39,3,3,0,3,[[937,1,1,0,1],[940,1,1,1,2],[943,1,1,2,3]]],[40,3,3,3,6,[[961,3,3,3,6]]],[42,1,1,6,7,[[1006,1,1,6,7]]]],[23411,23511,23655,24379,24380,24382,26502]]],["devils",[6,6,[[39,4,4,0,4,[[932,1,1,0,1],[936,3,3,1,4]]],[40,1,1,4,5,[[957,1,1,4,5]]],[41,1,1,5,6,[[980,1,1,5,6]]]],[23233,23361,23373,23378,24247,25281]]]]},{"k":"G1140","v":[["*",[60,52,[[39,11,9,0,9,[[935,1,1,0,1],[937,3,2,1,3],[938,1,1,3,4],[939,1,1,4,5],[940,4,3,5,8],[945,1,1,8,9]]],[40,13,11,9,20,[[957,3,2,9,11],[959,3,2,11,13],[962,1,1,13,14],[963,3,3,14,17],[965,1,1,17,18],[972,2,2,18,20]]],[41,22,20,20,40,[[976,3,3,20,23],[979,1,1,23,24],[980,6,6,24,30],[981,3,3,30,33],[982,1,1,33,34],[983,7,5,34,39],[985,1,1,39,40]]],[42,6,6,40,46,[[1003,1,1,40,41],[1004,3,3,41,44],[1006,2,2,44,46]]],[43,1,1,46,47,[[1034,1,1,46,47]]],[45,4,2,47,49,[[1071,4,2,47,49]]],[53,1,1,49,50,[[1122,1,1,49,50]]],[58,1,1,50,51,[[1147,1,1,50,51]]],[65,1,1,51,52,[[1175,1,1,51,52]]]],[23338,23412,23413,23425,23477,23513,23516,23517,23718,24249,24254,24303,24310,24420,24489,24492,24493,24576,24882,24890,25096,25098,25104,25228,25247,25272,25275,25278,25280,25283,25302,25343,25350,25380,25419,25420,25423,25424,25425,25550,26348,26429,26430,26433,26501,26502,27541,28587,28588,29748,30312,30860]]],["+",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25272]]],["devil",[18,17,[[39,3,3,0,3,[[937,1,1,0,1],[939,1,1,1,2],[945,1,1,2,3]]],[40,3,3,3,6,[[963,3,3,3,6]]],[41,6,5,6,11,[[976,2,2,6,8],[979,1,1,8,9],[981,1,1,9,10],[983,2,1,10,11]]],[42,6,6,11,17,[[1003,1,1,11,12],[1004,3,3,12,15],[1006,2,2,15,17]]]],[23412,23477,23718,24489,24492,24493,25096,25098,25228,25343,25419,26348,26429,26430,26433,26501,26502]]],["devils",[40,33,[[39,8,6,0,6,[[935,1,1,0,1],[937,2,1,1,2],[938,1,1,2,3],[940,4,3,3,6]]],[40,10,8,6,14,[[957,3,2,6,8],[959,3,2,8,10],[962,1,1,10,11],[965,1,1,11,12],[972,2,2,12,14]]],[41,15,14,14,28,[[976,1,1,14,15],[980,5,5,15,20],[981,2,2,20,22],[982,1,1,22,23],[983,5,4,23,27],[985,1,1,27,28]]],[45,4,2,28,30,[[1071,4,2,28,30]]],[53,1,1,30,31,[[1122,1,1,30,31]]],[58,1,1,31,32,[[1147,1,1,31,32]]],[65,1,1,32,33,[[1175,1,1,32,33]]]],[23338,23413,23425,23513,23516,23517,24249,24254,24303,24310,24420,24576,24882,24890,25104,25247,25275,25278,25280,25283,25302,25350,25380,25420,25423,25424,25425,25550,28587,28588,29748,30312,30860]]],["gods",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27541]]]]},{"k":"G1141","v":[["devilish",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30334]]]]},{"k":"G1142","v":[["*",[5,5,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[65,2,2,3,5,[[1182,1,1,3,4],[1184,1,1,4,5]]]],[23376,24376,25274,30968,30995]]],["devil",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25274]]],["devils",[4,4,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[65,2,2,2,4,[[1182,1,1,2,3],[1184,1,1,3,4]]]],[23376,24376,30968,30995]]]]},{"k":"G1143","v":[["bite",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29177]]]]},{"k":"G1144","v":[["tears",[11,11,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,2,2,1,3,[[979,2,2,1,3]]],[43,2,2,3,5,[[1037,2,2,3,5]]],[46,1,1,5,6,[[1079,1,1,5,6]]],[54,1,1,6,7,[[1125,1,1,6,7]]],[57,2,2,7,9,[[1137,1,1,7,8],[1144,1,1,8,9]]],[65,2,2,9,11,[[1173,1,1,9,10],[1187,1,1,10,11]]]],[24562,25233,25239,27645,27657,28828,29813,30037,30229,30827,31057]]]]},{"k":"G1145","v":[["wept",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26558]]]]},{"k":"G1146","v":[["ring",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25610]]]]},{"k":"G1147","v":[["*",[8,8,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,3,3,2,5,[[983,2,2,2,4],[988,1,1,4,5]]],[42,3,3,5,8,[[1004,1,1,5,6],[1016,2,2,6,8]]]],[23922,24496,25425,25451,25644,26387,26892,26894]]],["finger",[5,5,[[41,2,2,0,2,[[983,1,1,0,1],[988,1,1,1,2]]],[42,3,3,2,5,[[1004,1,1,2,3],[1016,2,2,3,5]]]],[25425,25644,26387,26892,26894]]],["fingers",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]]],[23922,24496,25451]]]]},{"k":"G1148","v":[["Dalmanutha",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24510]]]]},{"k":"G1149","v":[["Dalmatia",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29880]]]]},{"k":"G1150","v":[["*",[4,3,[[40,1,1,0,1,[[961,1,1,0,1]]],[58,3,2,1,3,[[1148,3,2,1,3]]]],[24368,30326,30327]]],["tame",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[24368,30327]]],["tamed",[2,1,[[58,2,1,0,1,[[1148,2,1,0,1]]]],[30326]]]]},{"k":"G1151","v":[["heifer",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30118]]]]},{"k":"G1152","v":[["Damaris",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27557]]]]},{"k":"G1153","v":[["+",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29021]]]]},{"k":"G1154","v":[["Damascus",[15,15,[[43,13,13,0,13,[[1026,7,7,0,7],[1039,4,4,7,11],[1043,2,2,11,13]]],[46,1,1,13,14,[[1088,1,1,13,14]]],[47,1,1,14,15,[[1091,1,1,14,15]]]],[27218,27219,27224,27226,27235,27238,27243,27709,27710,27714,27715,27835,27843,29021,29074]]]]},{"k":"G1155","v":[["*",[4,3,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,3,2,1,3,[[978,3,2,1,3]]]],[23276,25180,25181]]],["borrow",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23276]]],["lend",[3,2,[[41,3,2,0,2,[[978,3,2,0,2]]]],[25180,25181]]]]},{"k":"G1156","v":[["debt",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23754]]]]},{"k":"G1157","v":[["creditor",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25236]]]]},{"k":"G1158","v":[["Daniel",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23972,24731]]]]},{"k":"G1159","v":[["*",[5,5,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]],[43,1,1,2,3,[[1038,1,1,2,3]]],[46,1,1,3,4,[[1089,1,1,3,4]]],[58,1,1,4,5,[[1149,1,1,4,5]]]],[24390,25602,27688,29037,30340]]],["charges",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27688]]],["consume",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30340]]],["spend",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29037]]],["spent",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]]],[24390,25602]]]]},{"k":"G1160","v":[["cost",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25581]]]]},{"k":"G1161","v":[["*",[2841,2534,[[39,480,424,0,424,[[929,44,21,0,21],[930,12,11,21,32],[931,8,7,32,39],[932,5,5,39,44],[933,17,14,44,58],[934,12,12,58,70],[935,4,3,70,73],[936,16,16,73,89],[937,15,15,89,104],[938,16,15,104,119],[939,5,5,119,124],[940,17,17,124,141],[941,31,24,141,165],[942,18,18,165,183],[943,19,19,183,202],[944,14,12,202,214],[945,11,11,214,225],[946,12,11,225,236],[947,16,14,236,250],[948,17,16,250,266],[949,24,21,266,287],[950,18,17,287,304],[951,16,14,304,318],[952,15,15,318,333],[953,24,22,333,355],[954,31,31,355,386],[955,34,30,386,416],[956,9,8,416,424]]],[40,193,181,424,605,[[957,9,9,424,433],[958,5,5,433,438],[959,3,3,438,441],[960,10,9,441,450],[961,9,9,450,459],[962,11,10,459,469],[963,9,8,469,477],[964,11,8,477,485],[965,12,12,485,497],[966,28,26,497,523],[967,7,6,523,529],[968,10,9,529,538],[969,15,15,538,553],[970,24,23,553,576],[971,24,23,576,599],[972,6,6,599,605]]],[41,538,481,605,1086,[[973,15,15,605,620],[974,9,9,620,629],[975,12,11,629,640],[976,13,11,640,651],[977,17,16,651,667],[978,17,15,667,682],[979,29,27,682,709],[980,40,34,709,743],[981,51,37,743,780],[982,28,24,780,804],[983,24,22,804,826],[984,31,28,826,854],[985,13,12,854,866],[986,8,8,866,874],[987,16,15,874,889],[988,18,14,889,903],[989,13,11,903,914],[990,27,25,914,939],[991,17,17,939,956],[992,25,25,956,981],[993,16,15,981,996],[994,40,36,996,1032],[995,39,34,1032,1066],[996,20,20,1066,1086]]],[42,231,219,1086,1305,[[997,7,6,1086,1092],[998,8,7,1092,1099],[999,8,8,1099,1107],[1000,8,8,1107,1115],[1001,11,11,1115,1126],[1002,16,15,1126,1141],[1003,14,14,1141,1155],[1004,21,19,1155,1174],[1005,13,13,1174,1187],[1006,9,9,1187,1196],[1007,19,18,1196,1214],[1008,13,13,1214,1227],[1009,8,8,1227,1235],[1010,5,5,1235,1240],[1011,6,6,1240,1246],[1012,10,9,1246,1255],[1013,4,4,1255,1259],[1014,16,14,1259,1273],[1015,18,15,1273,1288],[1016,7,7,1288,1295],[1017,10,10,1295,1305]]],[43,563,503,1305,1808,[[1018,2,2,1305,1307],[1019,14,14,1307,1321],[1020,13,12,1321,1333],[1021,13,13,1333,1346],[1022,30,26,1346,1372],[1023,5,5,1372,1377],[1024,26,24,1377,1401],[1025,28,26,1401,1427],[1026,38,30,1427,1457],[1027,18,16,1457,1473],[1028,19,17,1473,1490],[1029,27,22,1490,1512],[1030,28,26,1512,1538],[1031,14,13,1538,1551],[1032,15,15,1551,1566],[1033,24,21,1566,1587],[1034,18,15,1587,1602],[1035,18,17,1602,1619],[1036,28,25,1619,1644],[1037,20,18,1644,1662],[1038,30,26,1662,1688],[1039,22,18,1688,1706],[1040,23,21,1706,1727],[1041,16,15,1727,1742],[1042,17,15,1742,1757],[1043,9,8,1757,1765],[1044,29,27,1765,1792],[1045,19,16,1792,1808]]],[44,144,124,1808,1932,[[1046,3,3,1808,1811],[1047,7,6,1811,1817],[1048,6,6,1817,1823],[1049,6,5,1823,1828],[1050,10,8,1828,1836],[1051,10,7,1836,1843],[1052,14,12,1843,1855],[1053,20,16,1855,1871],[1054,9,9,1871,1880],[1055,8,7,1880,1887],[1056,14,11,1887,1898],[1057,3,3,1898,1901],[1058,5,5,1901,1906],[1059,8,7,1906,1913],[1060,14,13,1913,1926],[1061,7,6,1926,1932]]],[45,219,171,1932,2103,[[1062,12,7,1932,1939],[1063,8,6,1939,1945],[1064,11,7,1945,1952],[1065,11,8,1952,1960],[1066,3,3,1960,1963],[1067,5,4,1963,1967],[1068,31,25,1967,1992],[1069,8,7,1992,1999],[1070,8,6,1999,2005],[1071,11,10,2005,2015],[1072,16,13,2015,2028],[1073,23,16,2028,2044],[1074,10,8,2044,2052],[1075,22,17,2052,2069],[1076,27,22,2069,2091],[1077,13,12,2091,2103]]],[46,76,69,2103,2172,[[1078,6,6,2103,2109],[1079,5,5,2109,2114],[1080,7,6,2114,2120],[1081,6,6,2120,2126],[1082,6,5,2126,2131],[1083,8,7,2131,2138],[1084,3,3,2138,2141],[1085,9,8,2141,2149],[1086,5,5,2149,2154],[1087,7,6,2154,2160],[1088,4,4,2160,2164],[1089,5,5,2164,2169],[1090,5,3,2169,2172]]],[47,59,52,2172,2224,[[1091,6,6,2172,2178],[1092,11,8,2178,2186],[1093,11,10,2186,2196],[1094,14,12,2196,2208],[1095,11,10,2208,2218],[1096,6,6,2218,2224]]],[48,20,18,2224,2242,[[1098,2,2,2224,2226],[1099,1,1,2226,2227],[1100,10,8,2227,2235],[1101,6,6,2235,2241],[1102,1,1,2241,2242]]],[49,27,24,2242,2266,[[1103,6,6,2242,2248],[1104,8,7,2248,2255],[1105,5,4,2255,2259],[1106,8,7,2259,2266]]],[50,7,7,2266,2273,[[1107,2,2,2266,2268],[1108,2,2,2268,2270],[1109,3,3,2270,2273]]],[51,14,14,2273,2287,[[1112,2,2,2273,2275],[1113,3,3,2275,2278],[1114,3,3,2278,2281],[1115,6,6,2281,2287]]],[52,11,11,2287,2298,[[1117,3,3,2287,2290],[1118,8,8,2290,2298]]],[53,30,27,2298,2325,[[1119,5,5,2298,2303],[1120,3,3,2303,2306],[1121,4,4,2306,2310],[1122,4,3,2310,2313],[1123,8,7,2313,2320],[1124,6,5,2320,2325]]],[54,24,21,2325,2346,[[1125,3,2,2325,2327],[1126,8,6,2327,2333],[1127,7,7,2333,2340],[1128,6,6,2340,2346]]],[55,8,8,2346,2354,[[1129,4,4,2346,2350],[1130,1,1,2350,2351],[1131,3,3,2351,2354]]],[56,7,7,2354,2361,[[1132,7,7,2354,2361]]],[57,71,69,2361,2430,[[1133,5,5,2361,2366],[1134,3,3,2366,2369],[1135,5,5,2369,2374],[1136,2,2,2374,2376],[1137,1,1,2376,2377],[1138,4,4,2377,2381],[1139,10,10,2381,2391],[1140,3,3,2391,2394],[1141,10,10,2394,2404],[1142,9,9,2404,2413],[1143,6,5,2413,2418],[1144,8,7,2418,2425],[1145,5,5,2425,2430]]],[58,34,30,2430,2460,[[1146,10,10,2430,2440],[1147,12,10,2440,2450],[1148,4,4,2450,2454],[1149,6,5,2454,2459],[1150,2,1,2459,2460]]],[59,29,24,2460,2484,[[1151,6,5,2460,2465],[1152,7,6,2465,2471],[1153,6,5,2471,2476],[1154,7,6,2476,2482],[1155,3,2,2482,2484]]],[60,22,17,2484,2501,[[1156,9,5,2484,2489],[1157,7,7,2489,2496],[1158,6,5,2496,2501]]],[61,11,11,2501,2512,[[1159,2,2,2501,2503],[1160,4,4,2503,2507],[1161,3,3,2507,2510],[1162,1,1,2510,2511],[1163,1,1,2511,2512]]],[63,3,3,2512,2515,[[1165,3,3,2512,2515]]],[64,11,10,2515,2525,[[1166,11,10,2515,2525]]],[65,9,9,2525,2534,[[1167,1,1,2525,2526],[1168,2,2,2526,2528],[1176,1,1,2528,2529],[1180,1,1,2529,2530],[1185,1,1,2530,2531],[1186,1,1,2531,2532],[1187,1,1,2532,2533],[1188,1,1,2533,2534]]]],[23146,23147,23148,23149,23150,23151,23152,23153,23154,23155,23156,23157,23158,23159,23160,23162,23163,23164,23165,23166,23168,23170,23172,23174,23177,23178,23179,23182,23183,23188,23190,23191,23196,23199,23202,23203,23204,23206,23207,23213,23221,23227,23229,23231,23235,23247,23253,23255,23256,23262,23263,23265,23266,23267,23268,23271,23273,23278,23285,23288,23289,23297,23298,23299,23302,23305,23309,23311,23312,23315,23319,23331,23333,23346,23350,23355,23356,23357,23361,23363,23365,23366,23367,23369,23372,23375,23376,23377,23378,23385,23387,23391,23392,23393,23394,23395,23401,23404,23407,23410,23411,23413,23415,23416,23419,23423,23424,23428,23429,23430,23434,23435,23436,23438,23439,23440,23445,23447,23450,23461,23466,23470,23471,23475,23491,23492,23495,23496,23500,23503,23504,23513,23514,23517,23520,23521,23525,23528,23535,23536,23537,23544,23545,23546,23547,23550,23551,23555,23559,23560,23561,23562,23564,23565,23566,23567,23568,23569,23571,23576,23577,23578,23587,23591,23596,23603,23605,23606,23612,23613,23614,23615,23616,23618,23620,23621,23622,23624,23625,23626,23627,23628,23630,23636,23638,23641,23642,23646,23647,23648,23649,23651,23653,23656,23657,23658,23659,23660,23665,23667,23669,23671,23674,23675,23678,23679,23680,23685,23686,23687,23688,23690,23695,23697,23702,23704,23708,23711,23712,23717,23720,23721,23722,23724,23727,23733,23735,23742,23743,23744,23751,23752,23754,23755,23757,23758,23766,23770,23771,23773,23775,23776,23779,23784,23785,23786,23787,23788,23790,23792,23794,23796,23798,23800,23802,23803,23805,23806,23808,23813,23814,23815,23817,23818,23823,23826,23830,23832,23834,23835,23837,23839,23841,23844,23847,23850,23851,23852,23854,23855,23856,23858,23860,23861,23863,23864,23870,23877,23878,23879,23880,23883,23884,23886,23890,23891,23897,23899,23901,23903,23906,23909,23911,23913,23921,23922,23923,23926,23929,23930,23931,23932,23934,23936,23942,23943,23945,23946,23959,23960,23963,23965,23970,23976,23977,23979,23989,23992,23993,23994,24000,24005,24006,24010,24012,24013,24014,24016,24017,24018,24019,24020,24023,24024,24026,24027,24029,24030,24032,24034,24037,24041,24046,24047,24054,24059,24060,24062,24064,24065,24069,24071,24072,24074,24077,24078,24079,24080,24083,24086,24087,24095,24102,24104,24110,24111,24112,24113,24114,24117,24120,24121,24123,24124,24125,24127,24130,24133,24135,24136,24140,24144,24145,24148,24149,24150,24152,24153,24155,24161,24164,24168,24170,24173,24174,24175,24176,24178,24179,24183,24184,24186,24190,24191,24194,24195,24198,24199,24200,24204,24206,24210,24211,24212,24221,24223,24229,24231,24243,24245,24247,24256,24260,24265,24266,24270,24278,24280,24292,24317,24320,24328,24329,24333,24334,24338,24352,24357,24359,24360,24370,24375,24377,24378,24383,24397,24398,24400,24404,24410,24411,24422,24423,24426,24431,24434,24444,24445,24456,24469,24470,24474,24483,24489,24490,24491,24499,24505,24508,24509,24520,24528,24529,24533,24535,24547,24550,24557,24559,24561,24563,24565,24570,24572,24576,24577,24588,24591,24592,24594,24601,24602,24606,24608,24609,24610,24612,24614,24615,24617,24619,24620,24624,24625,24626,24627,24628,24630,24631,24636,24638,24639,24640,24644,24646,24648,24657,24666,24669,24676,24678,24680,24687,24688,24689,24699,24702,24717,24722,24724,24726,24728,24729,24730,24731,24732,24734,24735,24740,24745,24748,24749,24754,24756,24758,24760,24761,24765,24773,24774,24775,24783,24785,24792,24798,24800,24801,24806,24809,24815,24816,24817,24818,24822,24824,24825,24828,24829,24830,24831,24832,24833,24835,24837,24838,24839,24840,24841,24842,24849,24851,24857,24859,24862,24863,24865,24866,24870,24873,24879,24881,24882,24889,24890,24893,24899,24901,24904,24906,24915,24917,24919,24922,24927,24931,24932,24949,24950,24957,24973,24974,24977,24979,24990,24992,25008,25013,25017,25020,25026,25034,25036,25037,25038,25039,25040,25041,25042,25044,25046,25064,25084,25087,25088,25093,25101,25102,25103,25104,25105,25106,25108,25109,25110,25111,25112,25113,25115,25117,25122,25123,25129,25131,25140,25141,25142,25143,25147,25148,25152,25153,25154,25156,25157,25158,25176,25185,25186,25187,25192,25194,25195,25196,25197,25198,25199,25201,25204,25207,25209,25211,25215,25216,25219,25223,25225,25226,25231,25234,25235,25236,25237,25238,25239,25240,25241,25242,25243,25245,25249,25254,25255,25256,25257,25258,25259,25260,25264,25266,25268,25269,25270,25272,25273,25275,25277,25278,25279,25280,25281,25282,25283,25285,25287,25290,25291,25292,25293,25295,25296,25297,25299,25301,25302,25307,25308,25309,25310,25312,25313,25314,25315,25317,25320,25321,25322,25324,25325,25326,25328,25329,25333,25335,25338,25342,25343,25344,25346,25347,25348,25350,25352,25355,25356,25358,25359,25360,25361,25362,25363,25365,25368,25370,25371,25373,25375,25379,25380,25381,25383,25389,25390,25391,25392,25393,25394,25395,25396,25397,25400,25401,25403,25404,25405,25407,25416,25419,25420,25421,25422,25423,25424,25425,25427,25432,25433,25434,25439,25442,25443,25444,25450,25451,25452,25453,25458,25461,25463,25464,25467,25468,25469,25470,25472,25473,25474,25475,25479,25481,25484,25486,25487,25489,25498,25500,25501,25504,25506,25507,25509,25513,25515,25516,25517,25519,25524,25525,25526,25528,25530,25532,25534,25536,25541,25546,25553,25557,25560,25565,25568,25569,25578,25579,25587,25589,25591,25599,25602,25605,25608,25609,25610,25613,25615,25616,25617,25618,25619,25620,25621,25623,25626,25627,25634,25635,25637,25639,25640,25642,25645,25647,25650,25651,25652,25654,25657,25658,25666,25668,25671,25673,25676,25680,25688,25689,25691,25692,25694,25695,25697,25702,25703,25704,25707,25709,25710,25711,25712,25714,25715,25716,25717,25719,25723,25724,25725,25727,25728,25729,25739,25740,25742,25744,25745,25747,25750,25753,25757,25763,25764,25765,25767,25768,25773,25777,25778,25782,25784,25785,25788,25789,25790,25791,25792,25793,25795,25796,25797,25802,25803,25804,25806,25810,25811,25814,25816,25817,25818,25819,25820,25824,25827,25828,25830,25833,25834,25835,25838,25839,25842,25846,25849,25854,25859,25860,25863,25865,25867,25871,25873,25874,25877,25888,25889,25890,25891,25892,25895,25896,25897,25898,25899,25902,25903,25904,25907,25908,25911,25912,25913,25915,25916,25918,25919,25920,25921,25922,25924,25931,25932,25934,25935,25937,25938,25939,25940,25941,25943,25944,25945,25946,25947,25948,25952,25953,25956,25957,25958,25959,25960,25962,25963,25967,25968,25969,25970,25971,25973,25974,25975,25976,25979,25982,25984,25990,25991,25992,25993,25996,26001,26003,26007,26008,26009,26010,26012,26015,26022,26027,26028,26032,26033,26035,26039,26040,26041,26056,26070,26082,26083,26086,26088,26097,26101,26104,26112,26116,26118,26119,26121,26138,26139,26141,26143,26149,26150,26156,26160,26162,26170,26187,26188,26195,26199,26207,26212,26215,26217,26219,26223,26227,26239,26244,26245,26246,26257,26260,26261,26263,26267,26268,26269,26273,26277,26280,26292,26296,26297,26308,26318,26328,26330,26334,26335,26337,26338,26340,26342,26346,26355,26357,26359,26367,26369,26372,26382,26383,26384,26386,26387,26388,26390,26391,26392,26395,26397,26398,26416,26421,26426,26427,26431,26436,26440,26449,26451,26454,26455,26457,26461,26466,26468,26469,26471,26477,26478,26481,26483,26486,26487,26493,26494,26501,26503,26519,26522,26524,26525,26527,26528,26533,26536,26541,26543,26553,26560,26561,26564,26565,26569,26572,26574,26578,26580,26582,26583,26586,26588,26590,26594,26596,26600,26603,26604,26613,26617,26624,26631,26637,26650,26653,26655,26658,26660,26666,26678,26685,26687,26689,26694,26714,26718,26721,26723,26725,26726,26730,26731,26733,26736,26737,26739,26746,26747,26748,26762,26772,26779,26784,26787,26790,26792,26795,26799,26800,26801,26803,26807,26808,26813,26821,26824,26825,26834,26837,26838,26839,26840,26841,26843,26844,26848,26850,26854,26858,26863,26864,26866,26868,26871,26878,26884,26891,26892,26898,26899,26902,26904,26906,26910,26916,26917,26918,26919,26923,26928,26930,26954,26955,26956,26961,26962,26963,26975,26983,26986,26987,26991,26992,26993,26996,26997,27000,27001,27002,27003,27007,27008,27010,27011,27014,27019,27020,27023,27026,27027,27035,27036,27037,27041,27043,27045,27046,27054,27057,27058,27060,27062,27064,27065,27066,27067,27068,27069,27071,27072,27073,27075,27076,27078,27080,27081,27082,27083,27084,27086,27088,27091,27092,27093,27098,27099,27102,27103,27105,27109,27110,27117,27118,27122,27127,27128,27130,27131,27133,27137,27138,27139,27141,27143,27145,27147,27148,27149,27158,27163,27165,27170,27171,27173,27176,27177,27178,27179,27181,27183,27185,27187,27188,27189,27190,27192,27194,27196,27200,27202,27205,27206,27207,27208,27209,27210,27211,27212,27213,27215,27216,27217,27219,27221,27223,27224,27226,27227,27229,27231,27233,27235,27237,27238,27239,27240,27241,27242,27243,27245,27246,27248,27249,27252,27253,27254,27255,27256,27257,27258,27259,27260,27263,27266,27268,27269,27273,27275,27276,27278,27280,27281,27282,27283,27284,27285,27293,27308,27311,27314,27315,27316,27317,27319,27322,27323,27325,27327,27329,27332,27333,27334,27335,27336,27338,27339,27340,27342,27343,27344,27345,27346,27347,27350,27351,27352,27353,27354,27355,27356,27357,27358,27359,27360,27361,27362,27363,27364,27367,27368,27370,27371,27373,27375,27376,27377,27378,27387,27391,27392,27396,27399,27404,27405,27406,27407,27408,27410,27411,27412,27413,27414,27415,27416,27418,27419,27425,27426,27427,27428,27433,27434,27437,27441,27442,27446,27447,27448,27449,27454,27455,27473,27475,27476,27477,27478,27479,27480,27482,27483,27484,27487,27489,27491,27493,27495,27498,27499,27501,27502,27508,27509,27510,27511,27512,27514,27518,27519,27520,27521,27523,27524,27525,27528,27529,27531,27533,27536,27537,27538,27539,27541,27544,27545,27555,27557,27558,27561,27562,27563,27565,27566,27569,27571,27572,27574,27575,27576,27577,27578,27581,27583,27584,27586,27587,27588,27589,27590,27592,27593,27594,27595,27598,27599,27600,27602,27604,27606,27607,27608,27612,27613,27615,27616,27618,27619,27620,27624,27627,27628,27630,27632,27633,27634,27635,27636,27637,27638,27639,27640,27641,27643,27644,27660,27663,27664,27665,27667,27669,27670,27671,27672,27673,27674,27676,27677,27678,27679,27680,27681,27682,27684,27685,27689,27691,27695,27696,27698,27699,27701,27703,27704,27706,27707,27710,27712,27713,27714,27715,27716,27718,27721,27726,27727,27729,27730,27731,27732,27733,27734,27735,27736,27738,27740,27741,27742,27743,27744,27745,27746,27747,27749,27750,27751,27753,27754,27762,27763,27764,27766,27768,27770,27771,27773,27776,27778,27779,27783,27785,27786,27787,27791,27793,27794,27795,27796,27798,27800,27802,27803,27805,27806,27807,27808,27809,27810,27815,27816,27817,27818,27821,27824,27837,27838,27847,27848,27851,27852,27855,27856,27857,27862,27864,27866,27867,27868,27869,27870,27871,27873,27875,27876,27881,27882,27883,27885,27888,27890,27891,27892,27893,27894,27896,27897,27898,27899,27901,27902,27903,27905,27906,27907,27910,27915,27916,27918,27920,27921,27922,27923,27924,27929,27942,27943,27947,27964,27965,27967,27970,27972,27987,27995,27996,28010,28012,28013,28020,28025,28026,28027,28042,28045,28050,28051,28052,28055,28058,28060,28063,28067,28076,28078,28079,28085,28086,28090,28091,28093,28094,28097,28099,28100,28105,28107,28108,28109,28111,28114,28116,28121,28122,28124,28125,28126,28127,28129,28133,28139,28140,28141,28142,28143,28144,28146,28150,28161,28165,28168,28173,28176,28177,28182,28185,28186,28194,28198,28202,28203,28205,28208,28209,28215,28216,28221,28225,28226,28227,28229,28231,28232,28237,28239,28249,28250,28251,28267,28268,28269,28270,28278,28281,28282,28284,28285,28290,28295,28303,28304,28308,28311,28312,28316,28317,28318,28323,28326,28328,28332,28333,28336,28337,28353,28355,28356,28361,28362,28373,28375,28379,28381,28386,28387,28393,28400,28404,28406,28408,28409,28410,28414,28415,28418,28420,28422,28425,28433,28435,28436,28437,28439,28440,28443,28451,28452,28457,28465,28467,28480,28481,28484,28485,28488,28489,28490,28491,28493,28494,28495,28496,28497,28498,28499,28501,28502,28512,28515,28516,28519,28520,28521,28522,28523,28524,28525,28526,28527,28528,28529,28530,28534,28535,28536,28539,28555,28556,28557,28563,28564,28565,28568,28571,28573,28578,28580,28587,28594,28595,28596,28597,28602,28603,28605,28606,28607,28612,28615,28616,28617,28621,28628,28632,28634,28635,28638,28640,28641,28642,28643,28644,28645,28646,28652,28653,28654,28655,28658,28661,28665,28666,28667,28671,28673,28675,28676,28677,28678,28679,28680,28681,28682,28683,28684,28692,28693,28698,28700,28701,28702,28706,28707,28708,28713,28716,28719,28724,28726,28728,28730,28731,28732,28733,28735,28738,28741,28745,28746,28753,28756,28757,28758,28768,28769,28772,28774,28775,28777,28779,28780,28781,28782,28783,28784,28786,28787,28788,28791,28793,28806,28812,28813,28818,28821,28823,28825,28829,28834,28838,28840,28845,28847,28848,28857,28858,28859,28862,28864,28866,28871,28872,28877,28882,28885,28888,28893,28895,28899,28908,28910,28911,28912,28913,28914,28923,28926,28929,28933,28943,28945,28948,28949,28950,28951,28954,28959,28962,28964,28966,28971,28972,28973,28981,28984,28986,28988,28992,28995,29001,29010,29027,29028,29037,29038,29041,29049,29050,29052,29068,29072,29076,29077,29079,29080,29083,29085,29087,29090,29092,29093,29098,29101,29110,29113,29114,29118,29119,29120,29122,29125,29127,29131,29132,29135,29137,29138,29140,29144,29149,29151,29154,29156,29157,29159,29165,29172,29173,29177,29178,29179,29180,29181,29184,29186,29192,29194,29196,29197,29198,29202,29233,29242,29271,29279,29281,29283,29287,29292,29295,29300,29304,29307,29312,29315,29317,29336,29337,29358,29373,29376,29378,29383,29385,29389,29399,29409,29410,29413,29415,29416,29418,29422,29433,29434,29439,29452,29454,29457,29460,29461,29462,29464,29486,29491,29498,29511,29525,29531,29542,29586,29587,29596,29601,29602,29612,29613,29616,29622,29625,29629,29633,29635,29644,29662,29674,29677,29681,29682,29683,29684,29690,29691,29692,29694,29701,29704,29705,29710,29713,29728,29730,29731,29736,29738,29741,29746,29748,29754,29755,29767,29768,29769,29771,29774,29776,29787,29790,29794,29796,29797,29799,29814,29819,29832,29843,29847,29849,29850,29851,29854,29858,29861,29863,29865,29866,29867,29874,29875,29878,29882,29887,29890,29893,29895,29907,29908,29909,29927,29932,29937,29947,29949,29950,29952,29954,29956,29960,29969,29971,29974,29975,29976,29983,29985,29986,29999,30001,30005,30012,30013,30027,30029,30044,30052,30053,30055,30056,30066,30067,30068,30070,30071,30072,30083,30085,30088,30092,30093,30098,30105,30108,30110,30111,30112,30116,30117,30126,30128,30131,30132,30138,30145,30148,30151,30160,30165,30166,30171,30172,30173,30178,30188,30207,30208,30218,30220,30222,30223,30225,30238,30239,30245,30257,30260,30261,30263,30270,30271,30272,30275,30276,30279,30280,30281,30288,30291,30295,30299,30302,30303,30304,30307,30308,30309,30313,30316,30327,30333,30336,30337,30339,30343,30348,30351,30353,30366,30381,30382,30386,30394,30399,30403,30406,30408,30409,30413,30422,30433,30436,30438,30439,30442,30452,30453,30454,30460,30462,30463,30470,30475,30484,30485,30486,30492,30494,30501,30509,30510,30512,30516,30520,30522,30529,30530,30532,30535,30540,30543,30547,30552,30555,30561,30567,30581,30591,30596,30621,30644,30669,30670,30672,30673,30677,30680,30681,30682,30686,30689,30692,30695,30696,30711,30726,30741,30863,30939,31029,31043,31061,31095]]],["+",[46,43,[[39,11,9,0,9,[[941,5,3,0,3],[944,1,1,3,4],[949,1,1,4,5],[950,1,1,5,6],[954,2,2,6,8],[955,1,1,8,9]]],[40,2,2,9,11,[[966,1,1,9,10],[970,1,1,10,11]]],[41,5,5,11,16,[[981,1,1,11,12],[982,2,2,12,14],[988,1,1,14,15],[989,1,1,15,16]]],[42,7,7,16,23,[[1003,1,1,16,17],[1005,2,2,17,19],[1007,1,1,19,20],[1013,1,1,20,21],[1014,2,2,21,23]]],[43,9,9,23,32,[[1019,1,1,23,24],[1025,1,1,24,25],[1034,2,2,25,27],[1035,1,1,27,28],[1038,1,1,28,29],[1039,1,1,29,30],[1041,1,1,30,31],[1042,1,1,31,32]]],[44,6,6,32,38,[[1046,1,1,32,33],[1049,1,1,33,34],[1058,2,2,34,36],[1059,2,2,36,38]]],[45,3,2,38,40,[[1070,1,1,38,39],[1076,2,1,39,40]]],[49,1,1,40,41,[[1106,1,1,40,41]]],[58,1,1,41,42,[[1147,1,1,41,42]]],[61,1,1,42,43,[[1162,1,1,42,43]]]],[23547,23561,23562,23686,23834,23877,24114,24120,24150,24639,24785,25321,25371,25373,25642,25654,26340,26455,26457,26572,26779,26795,26800,26975,27192,27537,27541,27583,27701,27731,27787,27818,27947,28025,28267,28278,28282,28285,28555,28757,29464,30316,30621]]],["-",[110,110,[[39,31,31,0,31,[[934,1,1,0,1],[937,1,1,1,2],[941,6,6,2,8],[942,1,1,8,9],[944,1,1,9,10],[949,2,2,10,12],[950,2,2,12,14],[951,1,1,14,15],[952,1,1,15,16],[953,6,6,16,22],[954,1,1,22,23],[955,7,7,23,30],[956,1,1,30,31]]],[40,9,9,31,40,[[961,1,1,31,32],[962,2,2,32,34],[963,2,2,34,36],[965,2,2,36,38],[966,1,1,38,39],[971,1,1,39,40]]],[41,16,16,40,56,[[978,1,1,40,41],[979,1,1,41,42],[980,3,3,42,45],[981,3,3,45,48],[982,1,1,48,49],[983,1,1,49,50],[984,2,2,50,52],[992,1,1,52,53],[994,2,2,53,55],[996,1,1,55,56]]],[42,16,16,56,72,[[998,1,1,56,57],[1000,1,1,57,58],[1002,2,2,58,60],[1004,3,3,60,63],[1006,1,1,63,64],[1008,4,4,64,68],[1012,2,2,68,70],[1016,1,1,70,71],[1017,1,1,71,72]]],[43,10,10,72,82,[[1019,1,1,72,73],[1022,1,1,73,74],[1025,1,1,74,75],[1027,1,1,75,76],[1035,1,1,76,77],[1036,2,2,77,79],[1038,1,1,79,80],[1042,1,1,80,81],[1045,1,1,81,82]]],[44,5,5,82,87,[[1046,1,1,82,83],[1053,1,1,83,84],[1054,1,1,84,85],[1059,1,1,85,86],[1061,1,1,86,87]]],[45,9,9,87,96,[[1065,1,1,87,88],[1071,2,2,88,90],[1075,2,2,90,92],[1076,1,1,92,93],[1077,3,3,93,96]]],[46,5,5,96,101,[[1079,1,1,96,97],[1081,1,1,97,98],[1082,1,1,98,99],[1085,1,1,99,100],[1086,1,1,100,101]]],[47,1,1,101,102,[[1096,1,1,101,102]]],[49,2,2,102,104,[[1104,1,1,102,103],[1106,1,1,103,104]]],[56,1,1,104,105,[[1132,1,1,104,105]]],[58,3,3,105,108,[[1146,2,2,105,107],[1147,1,1,107,108]]],[65,2,2,108,110,[[1167,1,1,108,109],[1185,1,1,109,110]]]],[23309,23395,23544,23550,23567,23576,23577,23578,23615,23674,23830,23847,23901,23909,23932,23965,24019,24027,24029,24030,24034,24046,24087,24150,24170,24173,24176,24178,24179,24194,24198,24400,24444,24445,24469,24489,24557,24561,24625,24857,25176,25238,25257,25258,25281,25320,25321,25361,25389,25423,25487,25517,25811,25892,25931,26001,26104,26187,26269,26328,26382,26387,26392,26494,26586,26596,26613,26624,26736,26737,26868,26917,26962,27075,27208,27275,27558,27604,27606,27689,27808,27906,27942,28142,28161,28281,28337,28435,28594,28596,28684,28708,28774,28788,28791,28793,28834,28872,28885,28943,28971,29194,29409,29454,29956,30271,30275,30308,30711,31029]]],["Also",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25467]]],["And",[943,918,[[39,130,128,0,128,[[929,15,15,0,15],[930,3,3,15,18],[931,3,3,18,21],[932,3,3,21,24],[933,2,2,24,26],[934,1,1,26,27],[935,1,1,27,28],[936,6,6,28,34],[937,1,1,34,35],[938,4,4,35,39],[939,2,2,39,41],[940,2,2,41,43],[941,2,2,43,45],[942,8,8,45,53],[943,5,5,53,58],[944,4,4,58,62],[945,5,5,62,67],[946,3,3,67,70],[947,5,5,70,75],[948,6,6,75,81],[949,9,9,81,90],[950,6,6,90,96],[951,1,1,96,97],[952,4,4,97,101],[953,4,4,101,105],[954,8,8,105,113],[955,13,12,113,125],[956,4,3,125,128]]],[40,86,82,128,210,[[957,4,4,128,132],[960,4,4,132,136],[961,2,2,136,138],[962,3,2,138,140],[963,2,2,140,142],[964,6,5,142,147],[965,4,4,147,151],[966,15,14,151,165],[967,4,4,165,169],[968,6,5,169,174],[969,5,5,174,179],[970,13,13,179,192],[971,15,15,192,207],[972,3,3,207,210]]],[41,279,272,210,482,[[973,12,12,210,222],[974,6,6,222,228],[975,4,4,228,232],[976,8,7,232,239],[977,7,7,239,246],[978,11,11,246,257],[979,14,14,257,271],[980,19,17,271,288],[981,22,21,288,309],[982,11,11,309,320],[983,11,11,320,331],[984,12,12,331,343],[985,6,6,343,349],[986,4,4,349,353],[987,9,9,353,362],[988,10,9,362,371],[989,6,6,371,377],[990,18,18,377,395],[991,11,11,395,406],[992,7,7,406,413],[993,10,10,413,423],[994,24,23,423,446],[995,25,24,446,470],[996,12,12,470,482]]],[42,64,63,482,545,[[997,1,1,482,483],[998,3,3,483,486],[999,2,2,486,488],[1000,3,3,488,491],[1001,2,2,491,493],[1002,9,9,493,502],[1003,2,2,502,504],[1004,8,8,504,512],[1005,3,3,512,515],[1006,3,3,515,518],[1007,5,5,518,523],[1008,3,3,523,526],[1011,1,1,526,527],[1012,1,1,527,528],[1013,2,2,528,530],[1014,6,6,530,536],[1015,6,5,536,541],[1017,4,4,541,545]]],[43,283,273,545,818,[[1018,1,1,545,546],[1019,7,7,546,553],[1020,6,6,553,559],[1021,7,7,559,566],[1022,11,10,566,576],[1023,2,2,576,578],[1024,5,5,578,583],[1025,13,11,583,594],[1026,20,18,594,612],[1027,8,7,612,619],[1028,9,9,619,628],[1029,12,12,628,640],[1030,11,11,640,651],[1031,7,7,651,658],[1032,9,9,658,667],[1033,15,15,667,682],[1034,7,7,682,689],[1035,10,10,689,699],[1036,16,15,699,714],[1037,15,15,714,729],[1038,19,18,729,747],[1039,14,13,747,760],[1040,14,14,760,774],[1041,7,7,774,781],[1042,5,5,781,786],[1043,5,4,786,790],[1044,17,17,790,807],[1045,11,11,807,818]]],[44,20,20,818,838,[[1047,1,1,818,819],[1050,4,4,819,823],[1053,5,5,823,828],[1054,1,1,828,829],[1055,1,1,829,830],[1056,3,3,830,833],[1059,1,1,833,834],[1060,3,3,834,837],[1061,1,1,837,838]]],[45,22,21,838,859,[[1062,1,1,838,839],[1064,1,1,839,840],[1065,1,1,840,841],[1067,1,1,841,842],[1068,2,2,842,844],[1069,1,1,844,845],[1070,2,2,845,847],[1072,2,1,847,848],[1073,2,2,848,850],[1074,1,1,850,851],[1075,1,1,851,852],[1076,4,4,852,856],[1077,3,3,856,859]]],[46,11,11,859,870,[[1078,1,1,859,860],[1080,1,1,860,861],[1082,1,1,861,862],[1083,2,2,862,864],[1084,1,1,864,865],[1085,3,3,865,868],[1086,1,1,868,869],[1089,1,1,869,870]]],[47,11,11,870,881,[[1091,1,1,870,871],[1092,2,2,871,873],[1093,4,4,873,877],[1094,1,1,877,878],[1095,2,2,878,880],[1096,1,1,880,881]]],[48,2,2,881,883,[[1100,2,2,881,883]]],[50,2,2,883,885,[[1108,1,1,883,884],[1109,1,1,884,885]]],[51,3,3,885,888,[[1113,1,1,885,886],[1115,2,2,886,888]]],[52,3,3,888,891,[[1118,3,3,888,891]]],[53,4,4,891,895,[[1119,1,1,891,892],[1123,1,1,892,893],[1124,2,2,893,895]]],[54,3,3,895,898,[[1126,2,2,895,897],[1128,1,1,897,898]]],[55,1,1,898,899,[[1131,1,1,898,899]]],[57,9,9,899,908,[[1133,1,1,899,900],[1135,1,1,900,901],[1138,1,1,901,902],[1139,1,1,902,903],[1141,2,2,903,905],[1143,1,1,905,906],[1144,1,1,906,907],[1145,1,1,907,908]]],[58,2,2,908,910,[[1147,1,1,908,909],[1148,1,1,909,910]]],[59,2,2,910,912,[[1151,1,1,910,911],[1154,1,1,911,912]]],[60,3,3,912,915,[[1156,3,3,912,915]]],[61,1,1,915,916,[[1163,1,1,915,916]]],[64,2,2,916,918,[[1166,2,2,916,918]]]],[23147,23148,23149,23150,23151,23152,23153,23154,23155,23156,23157,23158,23159,23160,23165,23174,23182,23190,23196,23202,23207,23227,23229,23231,23235,23263,23311,23319,23350,23356,23366,23375,23377,23378,23407,23424,23428,23429,23438,23466,23471,23500,23514,23545,23546,23605,23612,23614,23618,23622,23625,23626,23628,23647,23649,23660,23667,23671,23679,23686,23688,23690,23708,23711,23720,23722,23724,23744,23751,23757,23766,23771,23779,23786,23790,23794,23796,23798,23803,23813,23823,23832,23834,23835,23837,23841,23850,23851,23856,23860,23878,23883,23884,23891,23899,23911,23930,23959,23960,23963,23976,24010,24014,24016,24018,24069,24072,24077,24080,24104,24111,24125,24127,24133,24135,24136,24140,24145,24152,24161,24164,24168,24175,24184,24190,24199,24200,24204,24221,24243,24247,24256,24328,24333,24338,24359,24378,24398,24422,24431,24483,24491,24505,24509,24520,24528,24529,24547,24550,24559,24576,24591,24592,24606,24608,24610,24612,24614,24615,24617,24620,24624,24627,24638,24640,24644,24646,24648,24669,24676,24687,24689,24699,24702,24722,24724,24732,24735,24754,24758,24760,24765,24773,24774,24798,24800,24801,24806,24809,24816,24818,24824,24828,24830,24833,24838,24839,24840,24841,24842,24851,24859,24862,24863,24865,24870,24873,24879,24890,24893,24899,24901,24904,24915,24917,24919,24922,24931,24932,24949,24957,24973,24974,24977,24979,24990,25013,25020,25034,25038,25039,25040,25064,25084,25087,25101,25104,25105,25106,25108,25110,25117,25123,25140,25141,25143,25147,25148,25152,25153,25154,25156,25157,25158,25185,25187,25192,25197,25198,25199,25201,25211,25216,25219,25226,25231,25235,25237,25238,25243,25245,25249,25254,25255,25259,25266,25269,25270,25272,25275,25277,25285,25291,25292,25293,25296,25297,25299,25307,25309,25312,25313,25314,25315,25322,25324,25329,25338,25342,25343,25344,25348,25350,25352,25355,25358,25360,25362,25363,25368,25370,25380,25381,25390,25391,25393,25394,25395,25400,25404,25407,25419,25421,25424,25432,25434,25442,25443,25444,25451,25458,25463,25470,25472,25473,25474,25475,25481,25484,25498,25501,25506,25513,25526,25528,25530,25532,25534,25541,25557,25560,25568,25578,25591,25599,25602,25605,25609,25615,25616,25617,25619,25621,25626,25627,25634,25637,25640,25642,25650,25651,25657,25666,25668,25671,25673,25688,25689,25691,25694,25695,25697,25703,25707,25709,25711,25712,25714,25715,25717,25723,25724,25725,25728,25729,25739,25740,25742,25744,25750,25753,25763,25764,25765,25767,25768,25782,25784,25795,25796,25804,25819,25820,25827,25828,25833,25834,25839,25842,25846,25854,25860,25863,25873,25874,25877,25888,25889,25895,25897,25898,25899,25902,25904,25907,25911,25915,25918,25919,25921,25922,25924,25931,25932,25934,25935,25937,25938,25940,25943,25945,25946,25947,25948,25953,25957,25958,25959,25960,25962,25967,25969,25970,25971,25973,25974,25979,25984,25990,25991,25993,25996,26008,26009,26010,26022,26027,26032,26033,26035,26039,26041,26086,26097,26101,26112,26139,26143,26160,26195,26207,26215,26223,26260,26261,26263,26267,26268,26273,26292,26296,26297,26359,26372,26383,26384,26390,26392,26416,26426,26427,26431,26454,26477,26478,26486,26501,26503,26560,26564,26565,26574,26578,26594,26600,26603,26726,26730,26762,26772,26787,26790,26792,26800,26803,26807,26839,26841,26844,26863,26864,26904,26906,26910,26923,26930,26954,26956,26961,26991,26992,26993,26996,27000,27001,27007,27008,27011,27019,27023,27027,27036,27045,27046,27054,27058,27064,27065,27066,27067,27071,27072,27073,27080,27086,27099,27102,27109,27118,27122,27137,27139,27176,27177,27178,27187,27194,27202,27206,27207,27210,27212,27213,27215,27217,27219,27221,27223,27224,27226,27227,27233,27239,27242,27248,27249,27253,27254,27256,27257,27258,27259,27263,27266,27269,27281,27282,27283,27284,27308,27314,27317,27319,27322,27327,27333,27334,27335,27339,27343,27345,27350,27352,27354,27356,27357,27358,27359,27360,27362,27368,27373,27377,27387,27391,27396,27404,27406,27410,27411,27414,27415,27419,27425,27433,27437,27441,27442,27446,27448,27449,27455,27475,27478,27479,27482,27483,27487,27491,27493,27498,27499,27501,27502,27508,27509,27510,27514,27518,27519,27521,27523,27525,27529,27531,27533,27537,27538,27555,27561,27562,27563,27565,27569,27571,27575,27576,27581,27584,27586,27587,27588,27592,27593,27595,27599,27600,27602,27608,27613,27615,27616,27618,27620,27627,27628,27630,27632,27633,27634,27635,27636,27638,27639,27640,27643,27644,27663,27664,27665,27669,27671,27672,27673,27674,27676,27678,27679,27681,27682,27684,27685,27691,27695,27698,27699,27704,27706,27710,27712,27713,27714,27715,27716,27718,27721,27726,27727,27729,27732,27735,27736,27738,27741,27743,27744,27745,27746,27747,27750,27754,27762,27764,27768,27770,27771,27778,27785,27791,27793,27794,27802,27803,27809,27810,27816,27837,27838,27847,27852,27856,27857,27862,27867,27868,27870,27871,27873,27875,27885,27888,27890,27892,27893,27894,27896,27897,27901,27902,27903,27907,27910,27915,27916,27920,27922,27924,27929,27965,28050,28051,28052,28058,28126,28133,28139,28143,28144,28165,28203,28215,28226,28232,28303,28312,28317,28332,28356,28379,28433,28439,28481,28497,28522,28529,28563,28565,28634,28653,28655,28678,28713,28726,28732,28735,28746,28779,28780,28782,28806,28845,28895,28913,28914,28923,28950,28951,28954,28964,29037,29079,29083,29085,29110,29114,29119,29131,29137,29173,29186,29197,29295,29304,29498,29531,29602,29633,29644,29682,29683,29692,29710,29776,29790,29796,29832,29851,29882,29937,29969,30013,30055,30071,30108,30110,30208,30239,30263,30309,30337,30399,30454,30484,30485,30486,30644,30686,30695]]],["As",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]]],[23411,27364]]],["But",[588,588,[[39,121,121,0,121,[[929,1,1,0,1],[930,2,2,1,3],[931,2,2,3,5],[932,1,1,5,6],[933,7,7,6,13],[934,8,8,13,21],[936,3,3,21,24],[937,9,9,24,33],[938,6,6,33,39],[939,1,1,39,40],[940,10,10,40,50],[941,8,8,50,58],[942,5,5,58,63],[943,8,8,63,71],[944,2,2,71,73],[945,1,1,73,74],[946,4,4,74,78],[947,5,5,78,83],[948,5,5,83,88],[949,4,4,88,92],[950,5,5,92,97],[951,4,4,97,101],[952,6,6,101,107],[953,4,4,107,111],[954,8,8,111,119],[955,2,2,119,121]]],[40,50,50,121,171,[[957,2,2,121,123],[958,3,3,123,126],[959,2,2,126,128],[960,3,3,128,131],[961,3,3,131,134],[962,3,3,134,137],[963,2,2,137,139],[964,2,2,139,141],[965,4,4,141,145],[966,8,8,145,153],[967,1,1,153,154],[968,2,2,154,156],[969,6,6,156,162],[970,6,6,162,168],[971,3,3,168,171]]],[41,69,69,171,240,[[973,1,1,171,172],[974,2,2,172,174],[975,1,1,174,175],[976,2,2,175,177],[977,4,4,177,181],[978,2,2,181,183],[979,1,1,183,184],[980,4,4,184,188],[981,8,8,188,196],[982,6,6,196,202],[983,5,5,202,207],[984,6,6,207,213],[987,3,3,213,216],[988,1,1,216,217],[989,3,3,217,220],[990,1,1,220,221],[991,2,2,221,223],[992,4,4,223,227],[993,3,3,227,230],[994,4,4,230,234],[995,3,3,234,237],[996,3,3,237,240]]],[42,38,38,240,278,[[997,1,1,240,241],[998,2,2,241,243],[999,1,1,243,244],[1000,2,2,244,246],[1001,4,4,246,250],[1002,1,1,250,251],[1003,4,4,251,255],[1004,2,2,255,257],[1005,1,1,257,258],[1006,3,3,258,261],[1007,2,2,261,263],[1008,2,2,263,265],[1010,1,1,265,266],[1011,1,1,266,267],[1012,1,1,267,268],[1014,2,2,268,270],[1015,3,3,270,273],[1016,4,4,273,277],[1017,1,1,277,278]]],[43,73,73,278,351,[[1019,1,1,278,279],[1020,2,2,279,281],[1021,2,2,281,283],[1022,6,6,283,289],[1023,1,1,289,290],[1024,5,5,290,295],[1025,4,4,295,299],[1026,6,6,299,305],[1027,2,2,305,307],[1028,3,3,307,310],[1029,4,4,310,314],[1030,7,7,314,321],[1031,2,2,321,323],[1032,2,2,323,325],[1033,3,3,325,328],[1034,2,2,328,330],[1035,1,1,330,331],[1036,3,3,331,334],[1038,1,1,334,335],[1039,1,1,335,336],[1040,1,1,336,337],[1041,3,3,337,340],[1042,4,4,340,344],[1043,1,1,344,345],[1044,4,4,345,349],[1045,2,2,349,351]]],[44,29,29,351,380,[[1047,4,4,351,355],[1048,2,2,355,357],[1049,1,1,357,358],[1050,2,2,358,360],[1051,2,2,360,362],[1052,3,3,362,365],[1053,3,3,365,368],[1054,1,1,368,369],[1055,3,3,369,372],[1056,2,2,372,374],[1058,1,1,374,375],[1059,2,2,375,377],[1060,2,2,377,379],[1061,1,1,379,380]]],[45,54,54,380,434,[[1062,3,3,380,383],[1063,4,4,383,387],[1064,1,1,387,388],[1065,2,2,388,390],[1066,2,2,390,392],[1067,1,1,392,393],[1068,11,11,393,404],[1069,4,4,404,408],[1070,1,1,408,409],[1071,1,1,409,410],[1072,6,6,410,416],[1073,5,5,416,421],[1074,1,1,421,422],[1075,4,4,422,426],[1076,7,7,426,433],[1077,1,1,433,434]]],[46,17,17,434,451,[[1078,1,1,434,435],[1079,2,2,435,437],[1080,2,2,437,439],[1081,2,2,439,441],[1085,1,1,441,442],[1086,1,1,442,443],[1087,3,3,443,446],[1088,3,3,446,449],[1089,1,1,449,450],[1090,1,1,450,451]]],[47,19,19,451,470,[[1091,4,4,451,455],[1092,3,3,455,458],[1093,3,3,458,461],[1094,4,4,461,465],[1095,3,3,465,468],[1096,2,2,468,470]]],[48,8,8,470,478,[[1098,2,2,470,472],[1100,3,3,472,475],[1101,2,2,475,477],[1102,1,1,477,478]]],[49,9,9,478,487,[[1103,3,3,478,481],[1104,3,3,481,484],[1106,3,3,484,487]]],[50,2,2,487,489,[[1109,2,2,487,489]]],[51,7,7,489,496,[[1112,1,1,489,490],[1113,1,1,490,491],[1114,2,2,491,493],[1115,3,3,493,496]]],[52,3,3,496,499,[[1117,1,1,496,497],[1118,2,2,497,499]]],[53,11,11,499,510,[[1119,1,1,499,500],[1120,1,1,500,501],[1121,1,1,501,502],[1122,1,1,502,503],[1123,4,4,503,507],[1124,3,3,507,510]]],[54,8,8,510,518,[[1125,1,1,510,511],[1126,3,3,511,514],[1127,3,3,514,517],[1128,1,1,517,518]]],[55,4,4,518,522,[[1129,1,1,518,519],[1130,1,1,519,520],[1131,2,2,520,522]]],[56,2,2,522,524,[[1132,2,2,522,524]]],[57,24,24,524,548,[[1133,2,2,524,526],[1134,3,3,526,529],[1135,2,2,529,531],[1137,1,1,531,532],[1138,2,2,532,534],[1139,2,2,534,536],[1140,1,1,536,537],[1141,2,2,537,539],[1142,4,4,539,543],[1143,2,2,543,545],[1144,1,1,545,546],[1145,2,2,546,548]]],[58,15,15,548,563,[[1146,6,6,548,554],[1147,3,3,554,557],[1148,3,3,557,560],[1149,2,2,560,562],[1150,1,1,562,563]]],[59,5,5,563,568,[[1151,1,1,563,564],[1152,1,1,564,565],[1153,1,1,565,566],[1154,1,1,566,567],[1155,1,1,567,568]]],[60,9,9,568,577,[[1157,5,5,568,573],[1158,4,4,573,577]]],[61,4,4,577,581,[[1159,1,1,577,578],[1160,2,2,578,580],[1161,1,1,580,581]]],[63,1,1,581,582,[[1165,1,1,581,582]]],[64,3,3,582,585,[[1166,3,3,582,585]]],[65,3,3,585,588,[[1168,1,1,585,586],[1186,1,1,586,587],[1187,1,1,587,588]]]],[23164,23188,23191,23199,23206,23213,23256,23262,23266,23268,23271,23273,23278,23285,23288,23289,23297,23299,23302,23305,23315,23357,23367,23372,23385,23387,23391,23392,23401,23404,23410,23413,23415,23423,23434,23436,23440,23447,23450,23475,23491,23492,23495,23496,23504,23513,23517,23525,23528,23537,23547,23555,23559,23562,23564,23565,23568,23596,23603,23613,23621,23624,23627,23636,23638,23642,23646,23651,23656,23657,23659,23687,23695,23712,23733,23743,23752,23755,23773,23776,23784,23788,23792,23802,23805,23814,23817,23818,23852,23854,23863,23864,23877,23879,23890,23903,23906,23923,23926,23929,23931,23970,23977,23993,23994,24000,24005,24012,24017,24020,24026,24059,24062,24083,24086,24110,24112,24117,24124,24149,24152,24245,24260,24266,24270,24280,24292,24317,24329,24352,24357,24370,24397,24404,24411,24423,24456,24474,24490,24529,24533,24565,24570,24572,24577,24594,24602,24612,24619,24626,24628,24630,24631,24666,24680,24688,24726,24728,24731,24734,24740,24749,24756,24783,24785,24815,24822,24825,24831,24835,24837,24906,24992,25017,25044,25088,25093,25122,25129,25131,25142,25154,25195,25225,25260,25268,25287,25295,25314,25321,25328,25333,25344,25346,25356,25360,25373,25375,25392,25396,25403,25405,25420,25422,25425,25427,25433,25464,25468,25479,25504,25507,25509,25608,25610,25618,25645,25658,25676,25680,25704,25745,25778,25785,25793,25802,25814,25835,25838,25849,25890,25896,25912,25920,25956,25963,25975,26007,26012,26028,26056,26116,26119,26141,26170,26188,26227,26244,26246,26257,26277,26338,26357,26367,26369,26387,26421,26461,26483,26493,26519,26533,26569,26590,26617,26694,26725,26731,26801,26824,26834,26840,26858,26878,26891,26892,26898,26902,26963,27010,27014,27037,27041,27060,27062,27078,27080,27081,27098,27105,27128,27133,27143,27163,27171,27185,27188,27196,27216,27231,27237,27238,27240,27243,27256,27273,27285,27311,27315,27316,27352,27353,27354,27361,27370,27376,27392,27399,27407,27412,27413,27416,27418,27447,27480,27501,27511,27520,27528,27536,27572,27594,27619,27624,27703,27732,27740,27776,27783,27796,27805,27815,27817,27821,27848,27869,27876,27882,27898,27918,27921,27964,27967,27970,27972,27996,28012,28027,28055,28067,28085,28090,28097,28099,28114,28125,28127,28141,28186,28194,28208,28209,28215,28227,28270,28290,28295,28326,28328,28362,28386,28387,28393,28404,28408,28409,28410,28420,28436,28452,28465,28467,28484,28493,28496,28498,28499,28502,28515,28516,28519,28520,28523,28527,28530,28535,28536,28539,28555,28595,28603,28605,28615,28616,28628,28632,28641,28645,28652,28654,28665,28675,28681,28702,28706,28716,28728,28731,28738,28741,28745,28756,28775,28784,28818,28825,28829,28848,28859,28862,28866,28948,28962,28973,28984,28988,28992,28995,29001,29038,29049,29068,29072,29076,29080,29087,29092,29098,29113,29125,29127,29135,29140,29149,29157,29177,29180,29184,29192,29202,29233,29242,29279,29287,29292,29307,29317,29358,29373,29378,29383,29410,29413,29415,29452,29460,29461,29525,29542,29587,29596,29612,29616,29622,29625,29629,29674,29681,29691,29704,29728,29746,29754,29767,29769,29771,29774,29794,29797,29799,29819,29843,29847,29850,29863,29866,29867,29875,29895,29909,29927,29932,29952,29960,29971,29976,29983,29985,29986,30001,30012,30044,30052,30053,30070,30088,30098,30112,30116,30145,30160,30165,30172,30178,30188,30220,30257,30260,30270,30272,30276,30280,30288,30291,30299,30302,30313,30327,30333,30336,30343,30353,30366,30399,30408,30439,30453,30475,30501,30510,30512,30516,30522,30529,30530,30532,30540,30547,30555,30561,30596,30672,30682,30689,30692,30741,31043,31061]]],["Even",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28013]]],["For",[13,13,[[41,4,4,0,4,[[984,2,2,0,2],[992,1,1,2,3],[995,1,1,3,4]]],[43,2,2,4,6,[[1024,1,1,4,5],[1034,1,1,5,6]]],[44,2,2,6,8,[[1052,1,1,6,7],[1056,1,1,7,8]]],[45,2,2,8,10,[[1071,1,1,8,9],[1073,1,1,9,10]]],[47,1,1,10,11,[[1095,1,1,10,11]]],[53,1,1,11,12,[[1121,1,1,11,12]]],[65,1,1,12,13,[[1188,1,1,12,13]]]],[25461,25507,25817,25952,27141,27544,28100,28225,28597,28658,29165,29736,31095]]],["He",[3,3,[[41,1,1,0,1,[[975,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]],[44,1,1,2,3,[[1049,1,1,2,3]]]],[25036,27795,28042]]],["Howbeit",[13,13,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[963,1,1,2,3]]],[42,3,3,3,6,[[1002,1,1,3,4],[1007,1,1,4,5],[1012,1,1,5,6]]],[43,5,5,6,11,[[1021,1,1,6,7],[1031,1,1,7,8],[1034,1,1,8,9],[1044,1,1,9,10],[1045,1,1,10,11]]],[45,1,1,11,12,[[1063,1,1,11,12]]],[46,1,1,12,13,[[1088,1,1,12,13]]]],[23721,24383,24470,26280,26536,26739,27026,27434,27557,27881,27905,28400,29010]]],["I",[4,4,[[39,1,1,0,1,[[948,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[47,1,1,2,3,[[1094,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[23806,28683,29151,30677]]],["If",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25416]]],["It",[4,4,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]],[42,2,2,2,4,[[1007,2,2,2,4]]]],[23265,25620,26525,26561]]],["Let",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28707]]],["Moreover",[11,11,[[39,2,2,0,2,[[934,1,1,0,1],[946,1,1,1,2]]],[43,1,1,2,3,[[1028,1,1,2,3]]],[44,2,2,3,5,[[1050,1,1,3,4],[1053,1,1,4,5]]],[45,2,2,5,7,[[1071,1,1,5,6],[1076,1,1,6,7]]],[46,2,2,7,9,[[1078,1,1,7,8],[1085,1,1,8,9]]],[53,1,1,9,10,[[1121,1,1,9,10]]],[60,1,1,10,11,[[1156,1,1,10,11]]]],[23298,23742,27319,28067,28146,28568,28719,28823,28933,29738,30494]]],["Nevertheless",[8,8,[[43,1,1,0,1,[[1044,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[45,3,3,2,5,[[1068,3,3,2,5]]],[46,1,1,5,6,[[1080,1,1,5,6]]],[49,1,1,6,7,[[1103,1,1,6,7]]],[60,1,1,7,8,[[1158,1,1,7,8]]]],[27866,28318,28489,28515,28524,28857,29385,30535]]],["Notwithstanding",[5,5,[[39,1,1,0,1,[[945,1,1,0,1]]],[43,2,2,1,3,[[1032,1,1,1,2],[1041,1,1,2,3]]],[53,1,1,3,4,[[1120,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]]],[23727,27476,27773,29731,29887]]],["Now",[166,166,[[39,21,21,0,21,[[929,2,2,0,2],[930,1,1,2,3],[932,1,1,3,4],[936,1,1,4,5],[938,1,1,5,6],[939,1,1,6,7],[949,1,1,7,8],[950,1,1,8,9],[952,1,1,9,10],[954,6,6,10,16],[955,4,4,16,20],[956,1,1,20,21]]],[40,7,7,21,28,[[957,2,2,21,23],[961,1,1,23,24],[969,2,2,24,26],[971,1,1,26,27],[972,1,1,27,28]]],[41,18,18,28,46,[[973,1,1,28,29],[975,2,2,29,31],[976,1,1,31,32],[977,1,1,32,33],[979,3,3,33,36],[980,2,2,36,38],[981,1,1,38,39],[982,1,1,39,40],[987,1,1,40,41],[990,1,1,41,42],[992,1,1,42,43],[994,1,1,43,44],[995,1,1,44,45],[996,1,1,45,46]]],[42,22,22,46,68,[[997,1,1,46,47],[998,1,1,47,48],[1000,2,2,48,50],[1001,1,1,50,51],[1002,1,1,51,52],[1003,2,2,52,54],[1004,1,1,54,55],[1005,1,1,55,56],[1007,5,5,56,61],[1009,3,3,61,64],[1014,2,2,64,66],[1015,2,2,66,68]]],[43,20,20,68,88,[[1019,2,2,68,70],[1020,1,1,70,71],[1021,1,1,71,72],[1022,1,1,72,73],[1024,1,1,73,74],[1025,1,1,74,75],[1026,1,1,75,76],[1027,1,1,76,77],[1029,2,2,77,79],[1030,3,3,79,82],[1033,1,1,82,83],[1034,2,2,83,85],[1038,1,1,85,86],[1041,1,1,86,87],[1044,1,1,87,88]]],[44,15,15,88,103,[[1046,1,1,88,89],[1048,1,1,89,90],[1049,2,2,90,92],[1051,1,1,92,93],[1052,1,1,93,94],[1053,1,1,94,95],[1056,1,1,95,96],[1060,5,5,96,101],[1061,2,2,101,103]]],[45,22,22,103,125,[[1062,2,2,103,105],[1063,1,1,105,106],[1064,2,2,106,108],[1065,1,1,108,109],[1067,1,1,109,110],[1068,2,2,110,112],[1069,1,1,112,113],[1071,2,2,113,115],[1072,2,2,115,117],[1073,3,3,117,120],[1076,2,2,120,122],[1077,3,3,122,125]]],[46,8,8,125,133,[[1078,1,1,125,126],[1079,1,1,126,127],[1080,1,1,127,128],[1082,1,1,128,129],[1083,1,1,129,130],[1086,1,1,130,131],[1087,1,1,131,132],[1090,1,1,132,133]]],[47,6,6,133,139,[[1091,1,1,133,134],[1093,2,2,134,136],[1094,2,2,136,138],[1095,1,1,138,139]]],[48,2,2,139,141,[[1099,1,1,139,140],[1100,1,1,140,141]]],[49,2,2,141,143,[[1106,2,2,141,143]]],[51,2,2,143,145,[[1113,1,1,143,144],[1115,1,1,144,145]]],[52,5,5,145,150,[[1117,2,2,145,147],[1118,3,3,147,150]]],[53,4,4,150,154,[[1119,2,2,150,152],[1122,1,1,152,153],[1123,1,1,153,154]]],[54,1,1,154,155,[[1127,1,1,154,155]]],[57,9,9,155,164,[[1139,1,1,155,156],[1140,2,2,156,158],[1141,1,1,158,159],[1142,2,2,159,161],[1143,1,1,161,162],[1144,1,1,162,163],[1145,1,1,163,164]]],[58,1,1,164,165,[[1147,1,1,164,165]]],[64,1,1,165,166,[[1166,1,1,165,166]]]],[23162,23166,23170,23221,23363,23419,23461,23844,23897,23989,24060,24071,24074,24102,24113,24123,24144,24174,24183,24191,24206,24229,24231,24375,24729,24745,24832,24882,24950,25026,25046,25103,25111,25196,25207,25234,25256,25283,25308,25401,25613,25710,25816,25865,25982,25992,26088,26118,26162,26199,26212,26267,26330,26342,26386,26471,26524,26528,26541,26553,26580,26631,26653,26658,26799,26825,26850,26866,26955,26986,26997,27035,27083,27127,27190,27252,27276,27338,27355,27363,27375,27405,27489,27524,27539,27667,27786,27864,27943,28010,28026,28045,28076,28111,28125,28221,28308,28311,28316,28333,28336,28353,28361,28373,28375,28406,28418,28422,28451,28480,28488,28512,28528,28573,28578,28602,28617,28635,28638,28661,28730,28768,28777,28781,28786,28821,28838,28858,28882,28911,28966,28972,29050,29077,29118,29122,29132,29159,29181,29271,29281,29457,29462,29601,29635,29662,29677,29684,29690,29694,29701,29713,29748,29768,29861,30068,30093,30105,30111,30151,30171,30173,30223,30261,30304,30696]]],["On",[3,3,[[43,3,3,0,3,[[1027,1,1,0,1],[1039,1,1,1,2],[1040,1,1,2,3]]]],[27268,27734,27766]]],["Or",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24047]]],["So",[15,15,[[39,7,7,0,7,[[936,1,1,0,1],[941,1,1,1,2],[946,1,1,2,3],[948,2,2,3,5],[955,1,1,5,6],[956,1,1,6,7]]],[40,1,1,7,8,[[964,1,1,7,8]]],[42,2,2,8,10,[[1004,1,1,8,9],[1016,1,1,9,10]]],[43,3,3,10,13,[[1021,1,1,10,11],[1024,1,1,11,12],[1036,1,1,12,13]]],[44,1,1,13,14,[[1053,1,1,13,14]]],[45,1,1,14,15,[[1076,1,1,14,15]]]],[23376,23566,23758,23800,23826,24195,24210,24508,26388,26871,27043,27131,27607,28124,28772]]],["Then",[121,121,[[39,18,18,0,18,[[929,2,2,0,2],[940,2,2,2,4],[941,1,1,4,5],[942,1,1,5,6],[943,3,3,6,9],[944,1,1,9,10],[945,2,2,10,12],[946,1,1,12,13],[947,1,1,13,14],[953,2,2,14,16],[954,1,1,16,17],[956,1,1,17,18]]],[40,3,3,18,21,[[966,1,1,18,19],[970,1,1,19,20],[971,1,1,20,21]]],[41,38,38,21,59,[[973,1,1,21,22],[975,1,1,22,23],[979,1,1,23,24],[980,4,4,24,28],[981,3,3,28,31],[983,1,1,31,32],[984,1,1,32,33],[985,3,3,33,36],[986,2,2,36,38],[987,1,1,38,39],[988,2,2,39,41],[989,1,1,41,42],[990,2,2,42,44],[991,1,1,44,45],[992,5,5,45,50],[994,5,5,50,55],[995,3,3,55,58],[996,1,1,58,59]]],[42,3,3,59,62,[[997,1,1,59,60],[1005,1,1,60,61],[1017,1,1,61,62]]],[43,59,59,62,121,[[1019,1,1,62,63],[1020,1,1,63,64],[1022,6,6,64,70],[1023,2,2,70,72],[1024,7,7,72,79],[1025,5,5,79,84],[1026,4,4,84,88],[1027,2,2,88,90],[1028,4,4,90,94],[1029,2,2,94,96],[1030,3,3,96,99],[1031,1,1,99,100],[1032,1,1,100,101],[1033,2,2,101,103],[1034,2,2,103,105],[1035,2,2,105,107],[1036,2,2,107,109],[1038,1,1,109,110],[1039,1,1,110,111],[1040,2,2,111,113],[1041,1,1,113,114],[1042,3,3,114,117],[1043,3,3,117,120],[1044,1,1,120,121]]]],[23163,23168,23503,23536,23591,23630,23648,23658,23665,23678,23704,23717,23754,23785,24024,24032,24079,24211,24609,24817,24840,24927,25037,25201,25264,25269,25278,25280,25302,25317,25347,25450,25500,25525,25536,25541,25565,25569,25589,25623,25647,25652,25716,25719,25747,25788,25792,25806,25818,25824,25867,25871,25916,25918,25934,25939,25944,25969,26003,26082,26466,26918,26987,27002,27068,27069,27076,27084,27088,27093,27103,27110,27117,27130,27145,27148,27149,27158,27173,27181,27189,27200,27205,27211,27229,27235,27241,27255,27280,27293,27323,27329,27332,27336,27340,27352,27371,27378,27408,27427,27454,27484,27512,27541,27545,27566,27574,27589,27598,27677,27731,27751,27753,27779,27798,27806,27818,27824,27851,27855,27891]]],["There",[6,6,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,2,2,1,3,[[985,1,1,1,2],[988,1,1,2,3]]],[42,1,1,3,4,[[999,1,1,3,4]]],[43,2,2,4,6,[[1027,1,1,4,5],[1038,1,1,5,6]]]],[24866,25519,25639,26121,27260,27680]]],["Therefore",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24426]]],["They",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25803]]],["To",[2,2,[[45,2,2,0,2,[[1073,2,2,0,2]]]],[28643,28644]]],["What",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28177]]],["When",[37,37,[[39,14,14,0,14,[[930,4,4,0,4],[936,3,3,4,7],[944,1,1,7,8],[947,1,1,8,9],[954,1,1,9,10],[955,4,4,10,14]]],[40,2,2,14,16,[[958,1,1,14,15],[965,1,1,15,16]]],[41,8,8,16,24,[[977,1,1,16,17],[979,2,2,17,19],[980,3,3,19,22],[994,1,1,22,23],[995,1,1,23,24]]],[42,4,4,24,28,[[1002,1,1,24,25],[1003,1,1,25,26],[1004,1,1,26,27],[1007,1,1,27,28]]],[43,9,9,28,37,[[1022,1,1,28,29],[1024,2,2,29,31],[1028,1,1,31,32],[1029,1,1,32,33],[1035,1,1,33,34],[1036,1,1,34,35],[1037,1,1,35,36],[1039,1,1,36,37]]]],[23172,23178,23179,23183,23346,23355,23361,23685,23787,24064,24130,24148,24153,24186,24265,24563,25115,25204,25215,25273,25279,25290,25913,25941,26318,26337,26391,26527,27092,27147,27170,27325,27347,27577,27590,27637,27730]]],["Wherefore",[2,2,[[39,2,2,0,2,[[934,1,1,0,1],[946,1,1,1,2]]]],[23312,23735]]],["Whereof",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30148]]],["While",[5,5,[[39,3,3,0,3,[[940,1,1,0,1],[950,1,1,1,2],[953,1,1,2,3]]],[41,1,1,3,4,[[981,1,1,3,4]]],[43,1,1,4,5,[[1027,1,1,4,5]]]],[23535,23913,24013,25335,27278]]],["Ye",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29144]]],["Yea",[9,9,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,2,2,1,3,[[1020,1,1,1,2],[1037,1,1,2,3]]],[44,2,2,3,5,[[1059,1,1,3,4],[1060,1,1,4,5]]],[45,1,1,5,6,[[1076,1,1,5,6]]],[54,1,1,6,7,[[1127,1,1,6,7]]],[59,1,1,7,8,[[1155,1,1,7,8]]],[60,1,1,8,9,[[1156,1,1,8,9]]]],[25008,27020,27660,28284,28323,28733,29865,30470,30492]]],["Yet",[5,5,[[39,1,1,0,1,[[941,1,1,0,1]]],[46,1,1,1,2,[[1086,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[23560,28959,29416,30462,30681]]],["also",[9,9,[[41,1,1,0,1,[[985,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]],[43,3,3,2,5,[[1022,1,1,2,3],[1032,1,1,3,4],[1039,1,1,4,5]]],[44,1,1,5,6,[[1054,1,1,5,6]]],[53,1,1,6,7,[[1121,1,1,6,7]]],[54,2,2,7,9,[[1126,1,1,7,8],[1127,1,1,8,9]]]],[25524,26398,27091,27477,27733,28182,29741,29849,29854]]],["and",[266,241,[[39,45,33,0,33,[[929,24,13,0,13],[930,1,1,13,14],[931,1,1,14,15],[933,2,2,15,17],[942,2,2,17,19],[943,1,1,19,20],[944,2,2,20,22],[945,1,1,22,23],[947,1,1,23,24],[949,3,2,24,26],[951,2,2,26,28],[952,1,1,28,29],[953,1,1,29,30],[954,1,1,30,31],[955,2,2,31,33]]],[40,8,8,33,41,[[959,1,1,33,34],[960,2,2,34,36],[962,1,1,36,37],[964,1,1,37,38],[966,1,1,38,39],[967,1,1,39,40],[968,1,1,40,41]]],[41,41,41,41,82,[[975,1,1,41,42],[976,2,2,42,44],[977,1,1,44,45],[978,1,1,45,46],[979,2,2,46,48],[980,1,1,48,49],[981,5,5,49,54],[982,5,5,54,59],[983,3,3,59,62],[984,4,4,62,66],[985,2,2,66,68],[986,1,1,68,69],[987,1,1,69,70],[988,1,1,70,71],[990,2,2,71,73],[991,1,1,73,74],[992,3,3,74,77],[993,1,1,77,78],[994,2,2,78,80],[995,2,2,80,82]]],[42,18,18,82,100,[[999,1,1,82,83],[1001,3,3,83,86],[1002,1,1,86,87],[1005,1,1,87,88],[1008,1,1,88,89],[1009,2,2,89,91],[1010,1,1,91,92],[1012,1,1,92,93],[1014,2,2,93,95],[1015,3,3,95,98],[1017,2,2,98,100]]],[43,36,35,100,135,[[1020,1,1,100,101],[1021,1,1,101,102],[1022,1,1,102,103],[1024,3,3,103,106],[1025,2,2,106,108],[1026,2,2,108,110],[1029,2,2,110,112],[1030,2,2,112,114],[1031,2,2,114,116],[1033,2,2,116,118],[1034,1,1,118,119],[1036,1,1,119,120],[1037,3,2,120,122],[1038,5,5,122,127],[1040,2,2,127,129],[1042,2,2,129,131],[1044,2,2,131,133],[1045,2,2,133,135]]],[44,20,18,135,153,[[1050,1,1,135,136],[1051,2,1,136,137],[1052,1,1,137,138],[1053,2,2,138,140],[1054,2,2,140,142],[1055,4,3,142,145],[1056,3,3,145,148],[1057,2,2,148,150],[1058,1,1,150,151],[1060,1,1,151,152],[1061,1,1,152,153]]],[45,34,30,153,183,[[1062,4,2,153,155],[1064,5,5,155,160],[1065,1,1,160,161],[1068,4,4,161,165],[1071,3,3,165,168],[1072,3,2,168,170],[1073,1,1,170,171],[1074,2,2,171,173],[1075,6,5,173,178],[1076,5,5,178,183]]],[46,11,10,183,193,[[1078,2,2,183,185],[1079,1,1,185,186],[1080,1,1,186,187],[1081,1,1,187,188],[1082,1,1,188,189],[1083,1,1,189,190],[1084,1,1,190,191],[1085,1,1,191,192],[1090,2,1,192,193]]],[47,7,5,193,198,[[1092,2,2,193,195],[1094,3,2,195,197],[1095,2,1,197,198]]],[48,4,2,198,200,[[1100,3,1,198,199],[1101,1,1,199,200]]],[49,4,4,200,204,[[1103,1,1,200,201],[1104,1,1,201,202],[1105,2,2,202,204]]],[53,4,4,204,208,[[1122,1,1,204,205],[1123,2,2,205,207],[1124,1,1,207,208]]],[54,5,5,208,213,[[1125,2,2,208,210],[1126,1,1,210,211],[1128,2,2,211,213]]],[55,1,1,213,214,[[1129,1,1,213,214]]],[56,1,1,214,215,[[1132,1,1,214,215]]],[57,5,5,215,220,[[1135,1,1,215,216],[1139,1,1,216,217],[1142,1,1,217,218],[1143,1,1,218,219],[1144,1,1,219,220]]],[58,5,5,220,225,[[1146,1,1,220,221],[1147,3,3,221,224],[1149,1,1,224,225]]],[59,5,5,225,230,[[1152,1,1,225,226],[1153,2,2,226,228],[1154,1,1,228,229],[1155,1,1,229,230]]],[60,6,5,230,235,[[1156,4,3,230,233],[1157,1,1,233,234],[1158,1,1,234,235]]],[61,2,2,235,237,[[1160,1,1,235,236],[1161,1,1,236,237]]],[64,2,2,237,239,[[1166,2,2,237,239]]],[65,2,2,239,241,[[1176,1,1,239,240],[1180,1,1,240,241]]]],[23146,23147,23148,23149,23150,23151,23152,23153,23154,23156,23157,23158,23159,23177,23196,23255,23256,23616,23620,23669,23686,23697,23702,23775,23858,23861,23926,23942,24006,24023,24121,24149,24155,24320,24357,24360,24434,24528,24601,24648,24678,25026,25102,25103,25113,25194,25209,25236,25282,25309,25320,25326,25333,25335,25379,25397,25401,25403,25405,25442,25452,25453,25486,25489,25507,25516,25546,25553,25579,25605,25645,25702,25728,25757,25790,25791,25810,25863,25903,25908,25953,25968,26156,26219,26239,26245,26308,26451,26583,26650,26660,26689,26746,26803,26813,26839,26843,26854,26899,26919,27003,27057,27069,27138,27147,27165,27183,27209,27224,27257,27344,27353,27367,27375,27418,27426,27495,27508,27555,27612,27630,27641,27665,27670,27696,27698,27703,27740,27749,27800,27821,27883,27899,27916,27923,28051,28090,28100,28133,28146,28173,28176,28198,28202,28205,28216,28226,28229,28249,28250,28268,28326,28355,28375,28386,28414,28415,28418,28420,28433,28440,28490,28491,28494,28527,28571,28578,28587,28603,28621,28646,28666,28667,28679,28693,28701,28702,28706,28732,28753,28757,28758,28774,28812,28813,28840,28858,28864,28888,28912,28929,28945,29052,29090,29101,29138,29156,29179,29283,29337,29376,29418,29434,29439,29754,29776,29787,29799,29814,29819,29847,29874,29878,29893,29947,30005,30066,30166,30207,30218,30281,30295,30303,30307,30351,30413,30438,30439,30463,30470,30484,30485,30486,30509,30532,30552,30591,30673,30680,30863,30939]]],["are",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30520]]],["be",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23435]]],["both",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30126]]],["but",[350,345,[[39,59,58,0,58,[[931,2,2,0,2],[933,4,4,2,6],[935,3,3,6,9],[936,2,2,9,11],[937,3,3,11,14],[938,4,3,14,17],[940,2,2,17,19],[941,6,6,19,25],[943,2,2,25,27],[944,1,1,27,28],[946,1,1,28,29],[947,3,3,29,32],[948,3,3,32,35],[949,4,4,35,39],[950,2,2,39,41],[951,7,7,41,48],[952,2,2,48,50],[953,4,4,50,54],[954,3,3,54,57],[956,1,1,57,58]]],[40,18,18,58,76,[[957,1,1,58,59],[958,1,1,59,60],[960,1,1,60,61],[963,2,2,61,63],[964,1,1,63,64],[965,1,1,64,65],[966,1,1,65,66],[967,1,1,66,67],[968,1,1,67,68],[969,2,2,68,70],[970,3,3,70,73],[971,2,2,73,75],[972,1,1,75,76]]],[41,47,47,76,123,[[975,2,2,76,78],[977,2,2,78,80],[978,2,2,80,82],[979,5,5,82,87],[980,4,4,87,91],[981,6,6,91,97],[982,2,2,97,99],[983,2,2,99,101],[984,2,2,101,103],[986,1,1,103,104],[988,2,2,104,106],[989,2,2,106,108],[990,3,3,108,111],[991,2,2,111,113],[992,2,2,113,115],[993,2,2,115,117],[994,1,1,117,118],[995,3,3,118,121],[996,2,2,121,123]]],[42,43,43,123,166,[[997,1,1,123,124],[998,1,1,124,125],[999,3,3,125,128],[1001,1,1,128,129],[1003,4,4,129,133],[1004,3,3,133,136],[1005,2,2,136,138],[1006,2,2,138,140],[1007,2,2,140,142],[1008,3,3,142,145],[1009,2,2,145,147],[1010,3,3,147,150],[1011,4,4,150,154],[1012,4,4,154,158],[1013,1,1,158,159],[1014,2,2,159,161],[1015,3,3,161,164],[1016,1,1,164,165],[1017,1,1,165,166]]],[43,28,28,166,194,[[1018,1,1,166,167],[1019,1,1,167,168],[1020,1,1,168,169],[1022,1,1,169,170],[1024,1,1,170,171],[1026,3,3,171,174],[1027,1,1,174,175],[1028,1,1,175,176],[1029,4,4,176,180],[1030,1,1,180,181],[1033,1,1,181,182],[1035,2,2,182,184],[1036,1,1,184,185],[1039,1,1,185,186],[1040,3,3,186,189],[1042,1,1,189,190],[1044,2,2,190,192],[1045,2,2,192,194]]],[44,26,26,194,220,[[1047,2,2,194,196],[1048,1,1,196,197],[1049,1,1,197,198],[1050,2,2,198,200],[1051,4,4,200,204],[1052,6,6,204,210],[1053,5,5,210,215],[1054,1,1,215,216],[1056,3,3,216,219],[1061,1,1,219,220]]],[45,44,41,220,261,[[1062,2,2,220,222],[1064,1,1,222,223],[1065,4,2,223,225],[1066,1,1,225,226],[1067,2,2,226,228],[1068,7,7,228,235],[1069,1,1,235,236],[1070,3,3,236,239],[1071,1,1,239,240],[1072,3,3,240,243],[1073,2,2,243,245],[1074,6,5,245,250],[1075,6,6,250,256],[1076,2,2,256,258],[1077,3,3,258,261]]],[46,13,13,261,274,[[1080,1,1,261,262],[1081,2,2,262,264],[1082,1,1,264,265],[1083,1,1,265,266],[1084,1,1,266,267],[1085,2,2,267,269],[1087,3,3,269,272],[1089,2,2,272,274]]],[47,8,8,274,282,[[1092,3,3,274,277],[1093,2,2,277,279],[1094,1,1,279,280],[1095,1,1,280,281],[1096,1,1,281,282]]],[48,4,4,282,286,[[1100,1,1,282,283],[1101,3,3,283,286]]],[49,6,6,286,292,[[1103,1,1,286,287],[1104,1,1,287,288],[1105,3,3,288,291],[1106,1,1,291,292]]],[50,2,2,292,294,[[1107,1,1,292,293],[1108,1,1,293,294]]],[51,1,1,294,295,[[1114,1,1,294,295]]],[53,3,3,295,298,[[1119,1,1,295,296],[1120,1,1,296,297],[1122,1,1,297,298]]],[54,3,3,298,301,[[1126,1,1,298,299],[1127,1,1,299,300],[1128,1,1,300,301]]],[55,2,2,301,303,[[1129,2,2,301,303]]],[56,2,2,303,305,[[1132,2,2,303,305]]],[57,20,20,305,325,[[1133,2,2,305,307],[1135,1,1,307,308],[1136,2,2,308,310],[1138,1,1,310,311],[1139,5,5,311,316],[1141,4,4,316,320],[1142,1,1,320,321],[1144,3,3,321,324],[1145,1,1,324,325]]],[58,3,3,325,328,[[1149,2,2,325,327],[1150,1,1,327,328]]],[59,13,12,328,340,[[1151,2,2,328,330],[1152,5,4,330,334],[1153,3,3,334,337],[1154,3,3,337,340]]],[61,2,2,340,342,[[1160,1,1,340,341],[1161,1,1,341,342]]],[63,1,1,342,343,[[1165,1,1,342,343]]],[64,1,1,343,344,[[1166,1,1,343,344]]],[65,1,1,344,345,[[1168,1,1,344,345]]]],[23203,23204,23247,23253,23256,23267,23319,23331,23333,23365,23369,23393,23394,23416,23430,23439,23445,23520,23521,23550,23551,23569,23571,23577,23587,23641,23653,23675,23744,23770,23779,23788,23808,23815,23823,23839,23855,23858,23870,23880,23886,23921,23922,23934,23936,23943,23945,23946,23979,23992,24017,24037,24041,24054,24065,24078,24095,24212,24223,24278,24334,24469,24499,24535,24588,24636,24657,24717,24730,24748,24761,24775,24792,24829,24849,24889,25041,25042,25109,25140,25186,25187,25223,25239,25240,25241,25242,25255,25283,25297,25301,25310,25320,25325,25359,25361,25362,25365,25383,25439,25444,25469,25515,25587,25635,25645,25652,25668,25692,25703,25727,25773,25777,25789,25797,25830,25859,25891,25944,25960,25976,26015,26040,26070,26104,26138,26149,26150,26217,26334,26335,26346,26355,26395,26436,26440,26468,26481,26487,26522,26536,26543,26582,26588,26604,26637,26666,26678,26685,26687,26714,26718,26721,26723,26733,26746,26747,26748,26784,26808,26821,26837,26838,26863,26884,26916,26928,26983,27002,27082,27141,27223,27224,27245,27269,27323,27342,27346,27351,27357,27408,27484,27576,27578,27600,27713,27742,27743,27763,27807,27894,27896,27905,27915,27970,27987,27995,28027,28060,28063,28078,28079,28085,28091,28093,28094,28100,28105,28109,28116,28121,28122,28126,28129,28140,28168,28216,28231,28237,28355,28373,28381,28425,28437,28443,28457,28480,28485,28501,28502,28515,28521,28524,28525,28526,28528,28557,28564,28565,28580,28606,28607,28612,28638,28640,28671,28673,28676,28677,28678,28679,28682,28683,28692,28698,28700,28724,28769,28783,28787,28788,28847,28871,28877,28888,28910,28926,28949,28954,28972,28981,28986,29028,29041,29083,29093,29101,29120,29122,29154,29172,29196,29300,29312,29315,29336,29389,29416,29422,29433,29434,29452,29491,29511,29613,29705,29730,29755,29849,29858,29890,29907,29908,29949,29954,29974,29975,29999,30027,30029,30056,30067,30072,30083,30085,30092,30117,30128,30131,30132,30138,30222,30225,30238,30245,30343,30348,30366,30386,30394,30403,30406,30409,30422,30433,30436,30442,30452,30460,30462,30567,30581,30669,30682,30726]]],["even",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[28185,29399]]],["for",[9,9,[[39,2,2,0,2,[[933,1,1,0,1],[941,1,1,1,2]]],[40,1,1,2,3,[[972,1,1,2,3]]],[42,2,2,3,5,[[997,1,1,3,4],[1005,1,1,4,5]]],[43,1,1,5,6,[[1025,1,1,5,6]]],[44,1,1,6,7,[[1059,1,1,6,7]]],[45,1,1,7,8,[[1069,1,1,7,8]]],[51,1,1,8,9,[[1112,1,1,8,9]]]],[23271,23560,24881,26083,26469,27179,28303,28534,29586]]],["he",[2,2,[[42,1,1,0,1,[[1005,1,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]]],[26449,28020]]],["howbeit",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28680]]],["men",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29198]]],["neither",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30279]]],["nevertheless",[4,4,[[39,1,1,0,1,[[942,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]]],[23606,25112,29101,30223]]],["notwithstanding",[3,3,[[39,2,2,0,2,[[930,1,1,0,1],[939,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[23191,23470,30309]]],["now",[2,2,[[42,1,1,0,1,[[1015,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]]],[26848,28440]]],["or",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29140]]],["that",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27612]]],["the",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24410]]],["then",[11,11,[[41,2,2,0,2,[[981,1,1,0,1],[984,1,1,1,2]]],[42,1,1,2,3,[[1009,1,1,2,3]]],[44,6,6,3,9,[[1051,1,1,3,4],[1052,2,2,4,6],[1057,1,1,6,7],[1058,1,1,7,8],[1060,1,1,8,9]]],[46,1,1,9,10,[[1083,1,1,9,10]]],[47,1,1,10,11,[[1095,1,1,10,11]]]],[25313,25479,26655,28086,28107,28108,28251,28269,28304,28899,29178]]],["therefore",[2,2,[[45,1,1,0,1,[[1068,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[28495,29950]]],["they",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]]],[23923,24377,27081]]],["though",[2,2,[[46,1,1,0,1,[[1090,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[29050,30381]]],["to",[7,4,[[39,1,1,0,1,[[953,1,1,0,1]]],[45,6,3,1,4,[[1073,6,3,1,4]]]],[24023,28642,28643,28644]]],["truly",[1,1,[[61,1,1,0,1,[[1159,1,1,0,1]]]],[30543]]],["when",[6,6,[[39,1,1,0,1,[[944,1,1,0,1]]],[43,5,5,1,6,[[1026,2,2,1,3],[1031,1,1,3,4],[1032,1,1,4,5],[1041,1,1,5,6]]]],[23680,27246,27253,27428,27473,27794]]],["ye",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26082]]],["yea",[5,5,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[46,1,1,2,3,[[1082,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]],[63,1,1,4,5,[[1165,1,1,4,5]]]],[28150,28556,28893,30208,30670]]],["yet",[16,15,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,1,1,1,2,[[1039,1,1,1,2]]],[44,1,1,2,3,[[1056,1,1,2,3]]],[45,6,6,3,9,[[1063,2,2,3,5],[1064,1,1,5,6],[1068,1,1,6,7],[1073,1,1,7,8],[1076,1,1,8,9]]],[46,3,2,9,11,[[1083,2,1,9,10],[1089,1,1,10,11]]],[50,1,1,11,12,[[1107,1,1,11,12]]],[58,2,2,12,14,[[1147,1,1,12,13],[1149,1,1,13,14]]],[59,1,1,14,15,[[1151,1,1,14,15]]]],[26397,27707,28239,28400,28409,28425,28512,28654,28728,28908,29027,29486,30304,30339,30382]]]]},{"k":"G1162","v":[["*",[19,17,[[41,3,3,0,3,[[973,1,1,0,1],[974,1,1,1,2],[977,1,1,2,3]]],[43,1,1,3,4,[[1018,1,1,3,4]]],[44,1,1,4,5,[[1055,1,1,4,5]]],[46,2,2,5,7,[[1078,1,1,5,6],[1086,1,1,6,7]]],[48,2,1,7,8,[[1102,2,1,7,8]]],[49,4,3,8,11,[[1103,3,2,8,10],[1106,1,1,10,11]]],[53,2,2,11,13,[[1120,1,1,11,12],[1123,1,1,12,13]]],[54,1,1,13,14,[[1125,1,1,13,14]]],[57,1,1,14,15,[[1137,1,1,14,15]]],[58,1,1,15,16,[[1150,1,1,15,16]]],[59,1,1,16,17,[[1153,1,1,16,17]]]],[24906,25010,25140,26937,28189,28811,28970,29355,29365,29380,29448,29717,29768,29812,30037,30370,30436]]],["prayer",[7,7,[[41,1,1,0,1,[[973,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]],[46,2,2,2,4,[[1078,1,1,2,3],[1086,1,1,3,4]]],[49,2,2,4,6,[[1103,2,2,4,6]]],[58,1,1,6,7,[[1150,1,1,6,7]]]],[24906,28189,28811,28970,29365,29380,30370]]],["prayers",[5,5,[[41,2,2,0,2,[[974,1,1,0,1],[977,1,1,1,2]]],[54,1,1,2,3,[[1125,1,1,2,3]]],[57,1,1,3,4,[[1137,1,1,3,4]]],[59,1,1,4,5,[[1153,1,1,4,5]]]],[25010,25140,29812,30037,30436]]],["request",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29365]]],["supplication",[4,3,[[43,1,1,0,1,[[1018,1,1,0,1]]],[48,2,1,1,2,[[1102,2,1,1,2]]],[49,1,1,2,3,[[1106,1,1,2,3]]]],[26937,29355,29448]]],["supplications",[2,2,[[53,2,2,0,2,[[1120,1,1,0,1],[1123,1,1,1,2]]]],[29717,29768]]]]},{"k":"G1163","v":[["*",[105,104,[[39,8,8,0,8,[[944,1,1,0,1],[945,1,1,1,2],[946,1,1,2,3],[951,1,1,3,4],[952,1,1,4,5],[953,1,1,5,6],[954,2,2,6,8]]],[40,6,6,8,14,[[964,1,1,8,9],[965,1,1,9,10],[969,3,3,10,13],[970,1,1,13,14]]],[41,19,19,14,33,[[974,1,1,14,15],[976,1,1,15,16],[981,1,1,16,17],[983,1,1,17,18],[984,1,1,18,19],[985,3,3,19,22],[987,1,1,22,23],[989,1,1,23,24],[990,1,1,24,25],[991,1,1,25,26],[993,1,1,26,27],[994,2,2,27,29],[996,4,4,29,33]]],[42,10,10,33,43,[[999,3,3,33,36],[1000,3,3,36,39],[1005,1,1,39,40],[1006,1,1,40,41],[1008,1,1,41,42],[1016,1,1,42,43]]],[43,25,25,43,68,[[1018,2,2,43,45],[1020,1,1,45,46],[1021,1,1,46,47],[1022,1,1,47,48],[1026,2,2,48,50],[1027,1,1,50,51],[1031,1,1,51,52],[1032,1,1,52,53],[1033,1,1,53,54],[1034,1,1,54,55],[1035,1,1,55,56],[1036,2,2,56,58],[1037,1,1,58,59],[1038,1,1,59,60],[1040,1,1,60,61],[1041,1,1,61,62],[1042,2,2,62,64],[1043,1,1,64,65],[1044,3,3,65,68]]],[44,3,3,68,71,[[1046,1,1,68,69],[1053,1,1,69,70],[1057,1,1,70,71]]],[45,4,4,71,75,[[1069,1,1,71,72],[1072,1,1,72,73],[1076,2,2,73,75]]],[46,3,3,75,78,[[1079,1,1,75,76],[1082,1,1,76,77],[1088,1,1,77,78]]],[48,1,1,78,79,[[1102,1,1,78,79]]],[50,2,2,79,81,[[1110,2,2,79,81]]],[51,1,1,81,82,[[1114,1,1,81,82]]],[52,1,1,82,83,[[1118,1,1,82,83]]],[53,4,4,83,87,[[1121,3,3,83,86],[1123,1,1,86,87]]],[54,2,2,87,89,[[1126,2,2,87,89]]],[55,3,2,89,91,[[1129,3,2,89,91]]],[57,3,3,91,94,[[1134,1,1,91,92],[1141,1,1,92,93],[1143,1,1,93,94]]],[59,1,1,94,95,[[1151,1,1,94,95]]],[60,1,1,95,96,[[1158,1,1,95,96]]],[65,8,8,96,104,[[1167,1,1,96,97],[1170,1,1,97,98],[1176,1,1,98,99],[1177,1,1,99,100],[1179,1,1,100,101],[1183,1,1,101,102],[1186,1,1,102,103],[1188,1,1,103,104]]]],[23693,23710,23760,23941,23963,24035,24089,24108,24531,24549,24724,24727,24731,24785,25022,25106,25323,25447,25471,25532,25534,25551,25620,25676,25689,25736,25835,25871,25901,25998,26017,26035,26037,26127,26134,26150,26160,26176,26180,26444,26497,26614,26876,26939,26944,27017,27034,27088,27222,27232,27265,27436,27447,27513,27526,27578,27606,27621,27661,27686,27745,27788,27806,27820,27832,27876,27879,27881,27957,28142,28248,28529,28619,28743,28771,28827,28887,29019,29357,29546,29548,29604,29685,29733,29738,29746,29776,29833,29851,29899,29903,29978,30131,30178,30380,30533,30698,30769,30872,30877,30918,30985,31041,31086]]],["+",[4,4,[[43,1,1,0,1,[[1020,1,1,0,1]]],[53,1,1,1,2,[[1121,1,1,1,2]]],[55,1,1,2,3,[[1129,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[27017,29738,29903,30380]]],["Ought",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26017]]],["Shouldest",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23760]]],["behoved",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26037]]],["meet",[2,2,[[41,1,1,0,1,[[987,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[25620,27957]]],["must",[55,55,[[39,4,4,0,4,[[944,1,1,0,1],[945,1,1,1,2],[952,1,1,2,3],[954,1,1,3,4]]],[40,3,3,4,7,[[964,1,1,4,5],[965,1,1,5,6],[969,1,1,6,7]]],[41,11,11,7,18,[[974,1,1,7,8],[976,1,1,8,9],[981,1,1,9,10],[985,1,1,10,11],[989,1,1,11,12],[991,1,1,12,13],[993,1,1,13,14],[994,2,2,14,16],[996,2,2,16,18]]],[42,8,8,18,26,[[999,3,3,18,21],[1000,1,1,21,22],[1005,1,1,22,23],[1006,1,1,23,24],[1008,1,1,24,25],[1016,1,1,25,26]]],[43,11,11,26,37,[[1021,1,1,26,27],[1026,2,2,27,29],[1031,1,1,29,30],[1033,1,1,30,31],[1035,1,1,31,32],[1036,1,1,32,33],[1038,1,1,33,34],[1040,1,1,34,35],[1044,2,2,35,37]]],[45,3,3,37,40,[[1072,1,1,37,38],[1076,2,2,38,40]]],[46,1,1,40,41,[[1082,1,1,40,41]]],[53,1,1,41,42,[[1121,1,1,41,42]]],[54,2,2,42,44,[[1126,2,2,42,44]]],[55,1,1,44,45,[[1129,1,1,44,45]]],[57,2,2,45,47,[[1141,1,1,45,46],[1143,1,1,46,47]]],[65,8,8,47,55,[[1167,1,1,47,48],[1170,1,1,48,49],[1176,1,1,49,50],[1177,1,1,50,51],[1179,1,1,51,52],[1183,1,1,52,53],[1186,1,1,53,54],[1188,1,1,54,55]]]],[23693,23710,23963,24108,24531,24549,24727,25022,25106,25323,25551,25676,25736,25835,25871,25901,25998,26035,26127,26134,26150,26180,26444,26497,26614,26876,27034,27222,27232,27436,27513,27578,27606,27686,27745,27879,27881,28619,28743,28771,28887,29733,29833,29851,29899,30131,30178,30698,30769,30872,30877,30918,30985,31041,31086]]],["needful",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27447]]],["needs",[5,5,[[40,1,1,0,1,[[969,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]],[43,2,2,2,4,[[1018,1,1,2,3],[1034,1,1,3,4]]],[46,1,1,4,5,[[1088,1,1,4,5]]]],[24724,26160,26939,27526,29019]]],["of",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26944]]],["ought",[28,28,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,5,5,2,7,[[983,1,1,2,3],[984,1,1,3,4],[985,2,2,4,6],[990,1,1,6,7]]],[42,1,1,7,8,[[1000,1,1,7,8]]],[43,7,7,8,15,[[1022,1,1,8,9],[1036,1,1,9,10],[1037,1,1,10,11],[1041,1,1,11,12],[1042,2,2,12,14],[1043,1,1,14,15]]],[44,2,2,15,17,[[1053,1,1,15,16],[1057,1,1,16,17]]],[45,1,1,17,18,[[1069,1,1,17,18]]],[46,1,1,18,19,[[1079,1,1,18,19]]],[48,1,1,19,20,[[1102,1,1,19,20]]],[50,2,2,20,22,[[1110,2,2,20,22]]],[51,1,1,22,23,[[1114,1,1,22,23]]],[52,1,1,23,24,[[1118,1,1,23,24]]],[53,1,1,24,25,[[1123,1,1,24,25]]],[55,1,1,25,26,[[1129,1,1,25,26]]],[57,1,1,26,27,[[1134,1,1,26,27]]],[60,1,1,27,28,[[1158,1,1,27,28]]]],[23941,24731,25447,25471,25532,25534,25689,26176,27088,27621,27661,27788,27806,27820,27832,28142,28248,28529,28827,29357,29546,29548,29604,29685,29776,29903,29978,30533]]],["oughtest",[3,3,[[39,1,1,0,1,[[953,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]],[53,1,1,2,3,[[1121,1,1,2,3]]]],[24035,27265,29746]]],["should",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[43,1,1,2,3,[[1044,1,1,2,3]]]],[24089,24785,27876]]]]},{"k":"G1164","v":[["example",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30679]]]]},{"k":"G1165","v":[["shew",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29509]]]]},{"k":"G1166","v":[["*",[31,29,[[39,3,3,0,3,[[932,1,1,0,1],[936,1,1,1,2],[944,1,1,2,3]]],[40,2,2,3,5,[[957,1,1,3,4],[970,1,1,4,5]]],[41,3,3,5,8,[[976,1,1,5,6],[977,1,1,6,7],[994,1,1,7,8]]],[42,7,6,8,14,[[998,1,1,8,9],[1001,2,1,9,10],[1006,1,1,10,11],[1010,2,2,11,13],[1016,1,1,13,14]]],[43,2,2,14,16,[[1024,1,1,14,15],[1027,1,1,15,16]]],[45,1,1,16,17,[[1073,1,1,16,17]]],[53,1,1,17,18,[[1124,1,1,17,18]]],[57,1,1,18,19,[[1140,1,1,18,19]]],[58,3,2,19,21,[[1147,2,1,19,20],[1148,1,1,20,21]]],[65,8,8,21,29,[[1167,1,1,21,22],[1170,1,1,22,23],[1183,1,1,23,24],[1187,2,2,24,26],[1188,3,3,26,29]]]],[23217,23349,23693,24259,24769,25068,25121,25876,26113,26230,26513,26676,26677,26887,27119,27287,28665,29803,30097,30311,30332,30698,30769,30976,31062,31063,31081,31086,31088]]],["Shew",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26677]]],["shew",[19,18,[[39,2,2,0,2,[[936,1,1,0,1],[944,1,1,1,2]]],[40,2,2,2,4,[[957,1,1,2,3],[970,1,1,3,4]]],[41,2,2,4,6,[[977,1,1,4,5],[994,1,1,5,6]]],[42,2,2,6,8,[[1001,1,1,6,7],[1010,1,1,7,8]]],[43,1,1,8,9,[[1024,1,1,8,9]]],[45,1,1,9,10,[[1073,1,1,9,10]]],[53,1,1,10,11,[[1124,1,1,10,11]]],[58,3,2,11,13,[[1147,2,1,11,12],[1148,1,1,12,13]]],[65,5,5,13,18,[[1167,1,1,13,14],[1170,1,1,14,15],[1183,1,1,15,16],[1187,1,1,16,17],[1188,1,1,17,18]]]],[23349,23693,24259,24769,25121,25876,26230,26676,27119,28665,29803,30311,30332,30698,30769,30976,31062,31086]]],["shewed",[8,8,[[41,1,1,0,1,[[976,1,1,0,1]]],[42,2,2,1,3,[[1006,1,1,1,2],[1016,1,1,2,3]]],[43,1,1,3,4,[[1027,1,1,3,4]]],[57,1,1,4,5,[[1140,1,1,4,5]]],[65,3,3,5,8,[[1187,1,1,5,6],[1188,2,2,6,8]]]],[25068,26513,26887,27287,30097,31063,31081,31088]]],["shewest",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26113]]],["sheweth",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]]],[23217,26230]]]]},{"k":"G1167","v":[["fear",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29816]]]]},{"k":"G1168","v":[["afraid",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26695]]]]},{"k":"G1169","v":[["fearful",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[65,1,1,2,3,[[1187,1,1,2,3]]]],[23371,24363,31061]]]]},{"k":"G1170","v":[["man",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24072]]]]},{"k":"G1171","v":[["*",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23351,25458]]],["grievously",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23351]]],["vehemently",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25458]]]]},{"k":"G1172","v":[["*",[4,4,[[41,2,2,0,2,[[989,1,1,0,1],[994,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[65,1,1,3,4,[[1169,1,1,3,4]]]],[25659,25884,28625,30766]]],["sup",[2,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[65,1,1,1,2,[[1169,1,1,1,2]]]],[25659,30766]]],["supped",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28625]]],["supper",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25884]]]]},{"k":"G1173","v":[["*",[16,16,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[968,1,1,2,3]]],[41,5,5,3,8,[[986,4,4,3,7],[992,1,1,7,8]]],[42,4,4,8,12,[[1008,1,1,8,9],[1009,2,2,9,11],[1017,1,1,11,12]]],[45,2,2,12,14,[[1072,2,2,12,14]]],[65,2,2,14,16,[[1185,2,2,14,16]]]],[23924,24428,24712,25565,25569,25570,25577,25825,26582,26632,26634,26918,28620,28621,31026,31034]]],["feasts",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]]],[23924,24712,25825]]],["supper",[13,13,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,4,4,1,5,[[986,4,4,1,5]]],[42,4,4,5,9,[[1008,1,1,5,6],[1009,2,2,6,8],[1017,1,1,8,9]]],[45,2,2,9,11,[[1072,2,2,9,11]]],[65,2,2,11,13,[[1185,2,2,11,13]]]],[24428,25565,25569,25570,25577,26582,26632,26634,26918,28620,28621,31026,31034]]]]},{"k":"G1174","v":[["superstitious",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27545]]]]},{"k":"G1175","v":[["superstition",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27815]]]]},{"k":"G1176","v":[["*",[27,24,[[39,3,3,0,3,[[948,1,1,0,1],[953,2,2,1,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,13,12,4,16,[[985,3,3,4,7],[986,1,1,7,8],[987,1,1,8,9],[989,2,2,9,11],[991,6,5,11,16]]],[43,1,1,16,17,[[1042,1,1,16,17]]],[65,9,7,17,24,[[1168,1,1,17,18],[1178,1,1,18,19],[1179,2,1,19,20],[1183,5,4,20,24]]]],[23816,24009,24036,24629,25522,25529,25534,25584,25596,25663,25668,25744,25747,25748,25755,25756,27802,30727,30894,30909,30978,30982,30987,30991]]],["+",[3,3,[[41,3,3,0,3,[[985,3,3,0,3]]]],[25522,25529,25534]]],["ten",[24,21,[[39,3,3,0,3,[[948,1,1,0,1],[953,2,2,1,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,10,9,4,13,[[986,1,1,4,5],[987,1,1,5,6],[989,2,2,6,8],[991,6,5,8,13]]],[43,1,1,13,14,[[1042,1,1,13,14]]],[65,9,7,14,21,[[1168,1,1,14,15],[1178,1,1,15,16],[1179,2,1,16,17],[1183,5,4,17,21]]]],[23816,24009,24036,24629,25584,25596,25663,25668,25744,25747,25748,25755,25756,27802,30727,30894,30909,30978,30982,30987,30991]]]]},{"k":"G1177","v":[["twelve",[2,2,[[43,2,2,0,2,[[1036,1,1,0,1],[1041,1,1,1,2]]]],[27592,27780]]]]},{"k":"G1178","v":[["fifteen",[3,3,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]],[47,1,1,2,3,[[1091,1,1,2,3]]]],[26541,27883,29075]]]]},{"k":"G1179","v":[["Decapolis",[3,3,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[963,1,1,2,3]]]],[23234,24384,24494]]]]},{"k":"G1180","v":[["fourteen",[5,3,[[39,3,1,0,1,[[929,3,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]]],[23161,29024,29082]]]]},{"k":"G1181","v":[["*",[4,4,[[57,4,4,0,4,[[1139,4,4,0,4]]]],[30066,30068,30072,30073]]],["part",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30066]]],["tenth",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30068]]],["tithes",[2,2,[[57,2,2,0,2,[[1139,2,2,0,2]]]],[30072,30073]]]]},{"k":"G1182","v":[["*",[3,3,[[42,1,1,0,1,[[997,1,1,0,1]]],[65,2,2,1,3,[[1177,1,1,1,2],[1187,1,1,2,3]]]],[26083,30885,31073]]],["part",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30885]]],["tenth",[2,2,[[42,1,1,0,1,[[997,1,1,0,1]]],[65,1,1,1,2,[[1187,1,1,1,2]]]],[26083,31073]]]]},{"k":"G1183","v":[["tithes",[2,2,[[57,2,2,0,2,[[1139,2,2,0,2]]]],[30070,30073]]]]},{"k":"G1184","v":[["*",[5,5,[[41,2,2,0,2,[[976,2,2,0,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]],[49,1,1,4,5,[[1106,1,1,4,5]]]],[25082,25087,27294,28900,29460]]],["acceptable",[2,2,[[41,1,1,0,1,[[976,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]]],[25082,29460]]],["accepted",[3,3,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]],[46,1,1,2,3,[[1083,1,1,2,3]]]],[25087,27294,28900]]]]},{"k":"G1185","v":[["*",[3,3,[[58,1,1,0,1,[[1146,1,1,0,1]]],[60,2,2,1,3,[[1157,2,2,1,3]]]],[30280,30514,30518]]],["allure",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30518]]],["beguiling",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30514]]],["enticed",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30280]]]]},{"k":"G1186","v":[["*",[26,19,[[39,12,7,0,7,[[931,2,1,0,1],[935,5,3,1,4],[940,3,1,4,5],[941,1,1,5,6],[949,1,1,6,7]]],[40,2,2,7,9,[[964,1,1,7,8],[967,1,1,8,9]]],[41,7,5,9,14,[[975,2,1,9,10],[978,3,2,10,12],[985,1,1,12,13],[993,1,1,13,14]]],[64,1,1,14,15,[[1166,1,1,14,15]]],[65,4,4,15,19,[[1173,2,2,15,17],[1174,1,1,17,18],[1175,1,1,18,19]]]],[23202,23333,23334,23335,23522,23571,23834,24524,24648,25034,25189,25190,25537,25855,30684,30811,30813,30834,30844]]],["tree",[17,12,[[39,10,6,0,6,[[931,1,1,0,1],[935,5,3,1,4],[940,3,1,4,5],[941,1,1,5,6]]],[41,5,4,6,10,[[975,1,1,6,7],[978,3,2,7,9],[985,1,1,9,10]]],[65,2,2,10,12,[[1173,1,1,10,11],[1175,1,1,11,12]]]],[23202,23333,23334,23335,23522,23571,25034,25189,25190,25537,30811,30844]]],["trees",[9,9,[[39,2,2,0,2,[[931,1,1,0,1],[949,1,1,1,2]]],[40,2,2,2,4,[[964,1,1,2,3],[967,1,1,3,4]]],[41,2,2,4,6,[[975,1,1,4,5],[993,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]],[65,2,2,7,9,[[1173,1,1,7,8],[1174,1,1,8,9]]]],[23202,23834,24524,24648,25034,25855,30684,30813,30834]]]]},{"k":"G1187","v":[["spearmen",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27757]]]]},{"k":"G1188","v":[["*",[53,53,[[39,12,12,0,12,[[933,3,3,0,3],[934,1,1,3,4],[948,2,2,4,6],[950,1,1,6,7],[953,2,2,7,9],[954,1,1,9,10],[955,2,2,10,12]]],[40,7,7,12,19,[[966,2,2,12,14],[968,1,1,14,15],[970,1,1,15,16],[971,1,1,16,17],[972,2,2,17,19]]],[41,6,6,19,25,[[973,1,1,19,20],[978,1,1,20,21],[992,1,1,21,22],[994,2,2,22,24],[995,1,1,24,25]]],[42,2,2,25,27,[[1014,1,1,25,26],[1017,1,1,26,27]]],[43,7,7,27,34,[[1019,3,3,27,30],[1020,1,1,30,31],[1022,1,1,31,32],[1024,2,2,32,34]]],[44,1,1,34,35,[[1053,1,1,34,35]]],[46,1,1,35,36,[[1083,1,1,35,36]]],[47,1,1,36,37,[[1092,1,1,36,37]]],[48,1,1,37,38,[[1097,1,1,37,38]]],[50,1,1,38,39,[[1109,1,1,38,39]]],[57,5,5,39,44,[[1133,2,2,39,41],[1140,1,1,41,42],[1142,1,1,42,43],[1144,1,1,43,44]]],[59,1,1,44,45,[[1153,1,1,44,45]]],[65,8,8,45,53,[[1167,3,3,45,48],[1168,1,1,48,49],[1171,2,2,49,51],[1176,1,1,51,52],[1179,1,1,52,53]]]],[23263,23264,23273,23285,23813,23815,23916,24041,24042,24118,24158,24167,24625,24628,24709,24816,24853,24878,24892,24904,25152,25821,25914,25933,25968,26795,26904,26974,26982,26983,27003,27090,27171,27172,28150,28905,29090,29226,29518,29966,29976,30093,30145,30214,30446,30713,30714,30717,30718,30780,30786,30863,30924]]],["hand",[38,38,[[39,9,9,0,9,[[934,1,1,0,1],[948,2,2,1,3],[950,1,1,3,4],[953,2,2,4,6],[954,1,1,6,7],[955,2,2,7,9]]],[40,6,6,9,15,[[966,2,2,9,11],[968,1,1,11,12],[970,1,1,12,13],[971,1,1,13,14],[972,1,1,14,15]]],[41,3,3,15,18,[[992,1,1,15,16],[994,1,1,16,17],[995,1,1,17,18]]],[43,6,6,18,24,[[1019,3,3,18,21],[1022,1,1,21,22],[1024,2,2,22,24]]],[44,1,1,24,25,[[1053,1,1,24,25]]],[46,1,1,25,26,[[1083,1,1,25,26]]],[48,1,1,26,27,[[1097,1,1,26,27]]],[50,1,1,27,28,[[1109,1,1,27,28]]],[57,5,5,28,33,[[1133,2,2,28,30],[1140,1,1,30,31],[1142,1,1,31,32],[1144,1,1,32,33]]],[59,1,1,33,34,[[1153,1,1,33,34]]],[65,4,4,34,38,[[1167,1,1,34,35],[1168,1,1,35,36],[1171,2,2,36,38]]]],[23285,23813,23815,23916,24041,24042,24118,24158,24167,24625,24628,24709,24816,24853,24892,25821,25933,25968,26974,26982,26983,27090,27171,27172,28150,28905,29226,29518,29966,29976,30093,30145,30214,30446,30717,30718,30780,30786]]],["hands",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29090]]],["right",[12,12,[[39,3,3,0,3,[[933,3,3,0,3]]],[41,2,2,3,5,[[978,1,1,3,4],[994,1,1,4,5]]],[42,2,2,5,7,[[1014,1,1,5,6],[1017,1,1,6,7]]],[43,1,1,7,8,[[1020,1,1,7,8]]],[65,4,4,8,12,[[1167,2,2,8,10],[1176,1,1,10,11],[1179,1,1,11,12]]]],[23263,23264,23273,25152,25914,26795,26904,27003,30713,30714,30863,30924]]],["side",[2,2,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]]],[24878,24904]]]]},{"k":"G1189","v":[["*",[22,22,[[39,1,1,0,1,[[937,1,1,0,1]]],[41,8,8,1,9,[[977,1,1,1,2],[980,2,2,2,4],[981,2,2,4,6],[982,1,1,6,7],[993,1,1,7,8],[994,1,1,8,9]]],[43,7,7,9,16,[[1021,1,1,9,10],[1025,3,3,10,13],[1027,1,1,13,14],[1038,1,1,14,15],[1043,1,1,15,16]]],[44,1,1,16,17,[[1046,1,1,16,17]]],[46,3,3,17,20,[[1082,1,1,17,18],[1085,1,1,18,19],[1087,1,1,19,20]]],[47,1,1,20,21,[[1094,1,1,20,21]]],[51,1,1,21,22,[[1113,1,1,21,22]]]],[23417,25119,25273,25283,25339,25341,25365,25862,25896,27053,27198,27200,27210,27261,27703,27826,27940,28897,28936,28973,29143,29600]]],["Pray",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]]],[23417,27200]]],["Praying",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28936]]],["beseech",[6,6,[[41,2,2,0,2,[[980,1,1,0,1],[981,1,1,1,2]]],[43,2,2,2,4,[[1038,1,1,2,3],[1043,1,1,3,4]]],[46,1,1,4,5,[[1087,1,1,4,5]]],[47,1,1,5,6,[[1094,1,1,5,6]]]],[25273,25339,27703,27826,28973,29143]]],["besought",[3,3,[[41,3,3,0,3,[[977,1,1,0,1],[980,1,1,1,2],[981,1,1,2,3]]]],[25119,25283,25341]]],["pray",[5,5,[[41,2,2,0,2,[[982,1,1,0,1],[993,1,1,1,2]]],[43,2,2,2,4,[[1025,2,2,2,4]]],[46,1,1,4,5,[[1082,1,1,4,5]]]],[25365,25862,27198,27210,28897]]],["prayed",[3,3,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,2,2,1,3,[[1021,1,1,1,2],[1027,1,1,2,3]]]],[25896,27053,27261]]],["praying",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29600]]],["request",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27940]]]]},{"k":"G1190","v":[["Derbe",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27630]]]]},{"k":"G1191","v":[["Derbe",[3,3,[[43,3,3,0,3,[[1031,2,2,0,2],[1033,1,1,2,3]]]],[27420,27434,27484]]]]},{"k":"G1192","v":[["+",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30209]]]]},{"k":"G1193","v":[["*",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23196,24221]]],["leathern",[1,1,[[39,1,1,0,1,[[931,1,1,0,1]]]],[23196]]],["skin",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24221]]]]},{"k":"G1194","v":[["*",[15,15,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,3,3,1,4,[[968,2,2,1,3],[969,1,1,3,4]]],[41,5,5,4,9,[[984,2,2,4,6],[992,2,2,6,8],[994,1,1,8,9]]],[42,1,1,9,10,[[1014,1,1,9,10]]],[43,3,3,10,13,[[1022,1,1,10,11],[1033,1,1,11,12],[1039,1,1,12,13]]],[45,1,1,13,14,[[1070,1,1,13,14]]],[46,1,1,14,15,[[1088,1,1,14,15]]]],[23861,24676,24678,24726,25506,25507,25789,25790,25927,26808,27099,27520,27723,28566,29009]]],["beat",[5,5,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,2,2,4,[[992,2,2,2,4]]],[43,1,1,4,5,[[1039,1,1,4,5]]]],[23861,24676,25789,25790,27723]]],["beaten",[5,5,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,2,2,1,3,[[984,2,2,1,3]]],[43,2,2,3,5,[[1022,1,1,3,4],[1033,1,1,4,5]]]],[24726,25506,25507,27099,27520]]],["beateth",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28566]]],["beating",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24678]]],["smite",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29009]]],["smitest",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26808]]],["smote",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25927]]]]},{"k":"G1195","v":[["*",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[43,1,1,1,2,[[1039,1,1,1,2]]]],[23922,27708]]],["bind",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23922]]],["binding",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27708]]]]},{"k":"G1196","v":[["bound",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25274]]]]},{"k":"G1197","v":[["bundles",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23569]]]]},{"k":"G1198","v":[["*",[16,16,[[39,2,2,0,2,[[955,2,2,0,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[43,7,7,3,10,[[1033,2,2,3,5],[1040,1,1,5,6],[1042,2,2,6,8],[1045,2,2,8,10]]],[48,2,2,10,12,[[1099,1,1,10,11],[1100,1,1,11,12]]],[54,1,1,12,13,[[1125,1,1,12,13]]],[56,2,2,13,15,[[1132,2,2,13,15]]],[57,1,1,15,16,[[1145,1,1,15,16]]]],[24144,24145,24832,27508,27510,27752,27810,27823,27915,27916,29252,29273,29817,29939,29947,30244]]],["+",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27810]]],["bonds",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30244]]],["prisoner",[11,11,[[39,2,2,0,2,[[955,2,2,0,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[43,3,3,3,6,[[1040,1,1,3,4],[1042,1,1,4,5],[1045,1,1,5,6]]],[48,2,2,6,8,[[1099,1,1,6,7],[1100,1,1,7,8]]],[54,1,1,8,9,[[1125,1,1,8,9]]],[56,2,2,9,11,[[1132,2,2,9,11]]]],[24144,24145,24832,27752,27823,27916,29252,29273,29817,29939,29947]]],["prisoners",[3,3,[[43,3,3,0,3,[[1033,2,2,0,2],[1045,1,1,2,3]]]],[27508,27510,27915]]]]},{"k":"G1199","v":[["*",[20,20,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,2,2,1,3,[[980,1,1,1,2],[985,1,1,2,3]]],[43,6,6,3,9,[[1033,1,1,3,4],[1037,1,1,4,5],[1039,1,1,5,6],[1040,1,1,6,7],[1043,2,2,7,9]]],[49,4,4,9,13,[[1103,4,4,9,13]]],[50,1,1,13,14,[[1110,1,1,13,14]]],[54,1,1,14,15,[[1126,1,1,14,15]]],[56,2,2,15,17,[[1132,2,2,15,17]]],[57,2,2,17,19,[[1142,1,1,17,18],[1143,1,1,18,19]]],[64,1,1,19,20,[[1166,1,1,19,20]]]],[24498,25274,25534,27509,27649,27734,27763,27852,27854,29368,29374,29375,29377,29560,29836,29948,29951,30167,30208,30678]]],["bands",[3,3,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,2,2,1,3,[[1033,1,1,1,2],[1039,1,1,2,3]]]],[25274,27509,27734]]],["bond",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25534]]],["bonds",[14,14,[[43,4,4,0,4,[[1037,1,1,0,1],[1040,1,1,1,2],[1043,2,2,2,4]]],[49,4,4,4,8,[[1103,4,4,4,8]]],[50,1,1,8,9,[[1110,1,1,8,9]]],[54,1,1,9,10,[[1126,1,1,9,10]]],[56,2,2,10,12,[[1132,2,2,10,12]]],[57,2,2,12,14,[[1142,1,1,12,13],[1143,1,1,13,14]]]],[27649,27763,27852,27854,29368,29374,29375,29377,29560,29836,29948,29951,30167,30208]]],["chains",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30678]]],["string",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24498]]]]},{"k":"G1200","v":[["*",[3,3,[[43,3,3,0,3,[[1033,3,3,0,3]]]],[27506,27510,27519]]],["jailor",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27506]]],["prison",[2,2,[[43,2,2,0,2,[[1033,2,2,0,2]]]],[27510,27519]]]]},{"k":"G1201","v":[["prison",[4,4,[[39,1,1,0,1,[[939,1,1,0,1]]],[43,3,3,1,4,[[1022,2,2,1,3],[1033,1,1,3,4]]]],[23461,27080,27082,27509]]]]},{"k":"G1202","v":[["prisoners",[2,2,[[43,2,2,0,2,[[1044,2,2,0,2]]]],[27856,27897]]]]},{"k":"G1203","v":[["*",[10,10,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]],[53,2,2,2,4,[[1124,2,2,2,4]]],[54,1,1,4,5,[[1126,1,1,4,5]]],[55,1,1,5,6,[[1130,1,1,5,6]]],[59,1,1,6,7,[[1152,1,1,6,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]],[64,1,1,8,9,[[1166,1,1,8,9]]],[65,1,1,9,10,[[1172,1,1,9,10]]]],[25002,27046,29789,29790,29848,29917,30417,30501,30676,30803]]],["+",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29848]]],["Lord",[5,5,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]],[65,1,1,4,5,[[1172,1,1,4,5]]]],[25002,27046,30501,30676,30803]]],["masters",[4,4,[[53,2,2,0,2,[[1124,2,2,0,2]]],[55,1,1,2,3,[[1130,1,1,2,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[29789,29790,29917,30417]]]]},{"k":"G1204","v":[["*",[9,9,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[42,1,1,3,4,[[1007,1,1,3,4]]],[43,2,2,4,6,[[1024,2,2,4,6]]],[44,1,1,6,7,[[1046,1,1,6,7]]],[65,2,2,7,9,[[1183,1,1,7,8],[1187,1,1,8,9]]]],[23783,24609,25710,26566,27119,27150,27943,30976,31062]]],["+",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27943]]],["come",[6,6,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[42,1,1,3,4,[[1007,1,1,3,4]]],[43,2,2,4,6,[[1024,2,2,4,6]]]],[23783,24609,25710,26566,27119,27150]]],["hither",[2,2,[[65,2,2,0,2,[[1183,1,1,0,1],[1187,1,1,1,2]]]],[30976,31062]]]]},{"k":"G1205","v":[["*",[13,13,[[39,6,6,0,6,[[932,1,1,0,1],[939,1,1,1,2],[949,1,1,2,3],[950,1,1,3,4],[953,1,1,4,5],[956,1,1,5,6]]],[40,3,3,6,9,[[957,1,1,6,7],[962,1,1,7,8],[968,1,1,8,9]]],[41,1,1,9,10,[[992,1,1,9,10]]],[42,2,2,10,12,[[1000,1,1,10,11],[1017,1,1,11,12]]],[65,1,1,12,13,[[1185,1,1,12,13]]]],[23228,23487,23864,23876,24042,24201,24232,24438,24680,25793,26185,26910,31034]]],["+",[1,1,[[39,1,1,0,1,[[932,1,1,0,1]]]],[23228]]],["Come",[8,8,[[39,3,3,0,3,[[939,1,1,0,1],[953,1,1,1,2],[956,1,1,2,3]]],[40,2,2,3,5,[[957,1,1,3,4],[962,1,1,4,5]]],[42,2,2,5,7,[[1000,1,1,5,6],[1017,1,1,6,7]]],[65,1,1,7,8,[[1185,1,1,7,8]]]],[23487,24042,24201,24232,24438,26185,26910,31034]]],["come",[4,4,[[39,2,2,0,2,[[949,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]]],[23864,23876,24680,25793]]]]},{"k":"G1206","v":[["day",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27912]]]]},{"k":"G1207","v":[["+",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25147]]]]},{"k":"G1208","v":[["*",[43,42,[[39,4,4,0,4,[[949,1,1,0,1],[950,2,2,1,3],[954,1,1,3,4]]],[40,3,3,4,7,[[968,2,2,4,6],[970,1,1,6,7]]],[41,3,3,7,10,[[984,1,1,7,8],[991,1,1,8,9],[992,1,1,9,10]]],[42,4,4,10,14,[[999,1,1,10,11],[1000,1,1,11,12],[1005,1,1,12,13],[1017,1,1,13,14]]],[43,5,5,14,19,[[1024,1,1,14,15],[1027,1,1,15,16],[1028,1,1,16,17],[1029,1,1,17,18],[1030,1,1,18,19]]],[45,2,2,19,21,[[1073,1,1,19,20],[1076,1,1,20,21]]],[46,2,2,21,23,[[1078,1,1,21,22],[1090,1,1,22,23]]],[55,1,1,23,24,[[1131,1,1,23,24]]],[57,5,5,24,29,[[1140,1,1,24,25],[1141,3,3,25,28],[1142,1,1,28,29]]],[60,1,1,29,30,[[1158,1,1,29,30]]],[64,1,1,30,31,[[1166,1,1,30,31]]],[65,12,11,31,42,[[1168,1,1,31,32],[1170,1,1,32,33],[1172,2,1,33,34],[1174,1,1,34,35],[1177,1,1,35,36],[1182,1,1,36,37],[1185,1,1,37,38],[1186,2,2,38,40],[1187,2,2,40,42]]]],[23856,23898,23911,24096,24694,24704,24826,25497,25749,25809,26124,26210,26464,26914,27129,27274,27316,27347,27395,28662,28765,28815,29045,29933,30099,30108,30112,30133,30142,30523,30677,30728,30775,30796,30835,30886,30957,31020,31044,31052,31061,31072]]],["+",[2,2,[[42,1,1,0,1,[[1005,1,1,0,1]]],[43,1,1,1,2,[[1028,1,1,1,2]]]],[26464,27316]]],["afterward",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30677]]],["again",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31020]]],["second",[31,30,[[39,3,3,0,3,[[949,1,1,0,1],[950,2,2,1,3]]],[40,2,2,3,5,[[968,2,2,3,5]]],[41,3,3,5,8,[[984,1,1,5,6],[991,1,1,6,7],[992,1,1,7,8]]],[42,1,1,8,9,[[1000,1,1,8,9]]],[43,3,3,9,12,[[1024,1,1,9,10],[1029,1,1,10,11],[1030,1,1,11,12]]],[45,1,1,12,13,[[1076,1,1,12,13]]],[46,1,1,13,14,[[1078,1,1,13,14]]],[55,1,1,14,15,[[1131,1,1,14,15]]],[57,4,4,15,19,[[1140,1,1,15,16],[1141,2,2,16,18],[1142,1,1,18,19]]],[60,1,1,19,20,[[1158,1,1,19,20]]],[65,11,10,20,30,[[1168,1,1,20,21],[1170,1,1,21,22],[1172,2,1,22,23],[1174,1,1,23,24],[1177,1,1,24,25],[1182,1,1,25,26],[1186,2,2,26,28],[1187,2,2,28,30]]]],[23856,23898,23911,24694,24704,25497,25749,25809,26210,27129,27347,27395,28765,28815,29933,30099,30108,30112,30142,30523,30728,30775,30796,30835,30886,30957,31044,31052,31061,31072]]],["secondarily",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28662]]],["time",[7,7,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,2,2,2,4,[[999,1,1,2,3],[1017,1,1,3,4]]],[43,1,1,4,5,[[1027,1,1,4,5]]],[46,1,1,5,6,[[1090,1,1,5,6]]],[57,1,1,6,7,[[1141,1,1,6,7]]]],[24096,24826,26124,26914,27274,29045,30133]]]]},{"k":"G1209","v":[["*",[59,48,[[39,10,5,0,5,[[938,7,3,0,3],[939,1,1,3,4],[946,2,1,4,5]]],[40,6,3,5,8,[[962,1,1,5,6],[965,4,1,6,7],[966,1,1,7,8]]],[41,17,14,8,22,[[974,1,1,8,9],[980,1,1,9,10],[981,7,4,10,14],[982,2,2,14,16],[988,4,4,16,20],[990,1,1,20,21],[994,1,1,21,22]]],[42,1,1,22,23,[[1000,1,1,22,23]]],[43,9,9,23,32,[[1020,1,1,23,24],[1024,2,2,24,26],[1025,1,1,26,27],[1028,1,1,27,28],[1034,1,1,28,29],[1038,1,1,29,30],[1039,1,1,30,31],[1045,1,1,31,32]]],[45,1,1,32,33,[[1063,1,1,32,33]]],[46,6,6,33,39,[[1083,1,1,33,34],[1084,1,1,34,35],[1085,2,2,35,37],[1088,2,2,37,39]]],[47,1,1,39,40,[[1094,1,1,39,40]]],[48,1,1,40,41,[[1102,1,1,40,41]]],[49,1,1,41,42,[[1106,1,1,41,42]]],[50,1,1,42,43,[[1110,1,1,42,43]]],[51,2,2,43,45,[[1111,1,1,43,44],[1112,1,1,44,45]]],[52,1,1,45,46,[[1117,1,1,45,46]]],[57,1,1,46,47,[[1143,1,1,46,47]]],[58,1,1,47,48,[[1146,1,1,47,48]]]],[23431,23457,23458,23473,23732,24418,24575,24603,25001,25258,25306,25312,25349,25354,25371,25373,25624,25626,25627,25629,25705,25881,26201,27017,27154,27175,27190,27308,27534,27681,27709,27920,28408,28899,28931,28936,28949,28993,29005,29145,29354,29460,29552,29566,29583,29671,30203,30287]]],["+",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25001]]],["Take",[2,2,[[41,2,2,0,2,[[988,2,2,0,2]]]],[25626,25627]]],["accepted",[2,2,[[46,2,2,0,2,[[1085,1,1,0,1],[1088,1,1,1,2]]]],[28949,28993]]],["receive",[24,22,[[39,3,3,0,3,[[938,1,1,0,1],[939,1,1,1,2],[946,1,1,2,3]]],[40,4,3,3,6,[[962,1,1,3,4],[965,2,1,4,5],[966,1,1,5,6]]],[41,10,9,6,15,[[980,1,1,6,7],[981,4,3,7,10],[982,2,2,10,12],[988,2,2,12,14],[990,1,1,14,15]]],[43,2,2,15,17,[[1020,1,1,15,16],[1024,1,1,16,17]]],[46,3,3,17,20,[[1083,1,1,17,18],[1085,1,1,18,19],[1088,1,1,19,20]]],[50,1,1,20,21,[[1110,1,1,20,21]]],[58,1,1,21,22,[[1146,1,1,21,22]]]],[23431,23473,23732,24418,24575,24603,25258,25306,25349,25354,25371,25373,25624,25629,25705,27017,27175,28899,28936,29005,29552,30287]]],["received",[16,16,[[41,1,1,0,1,[[981,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]],[43,7,7,2,9,[[1024,1,1,2,3],[1025,1,1,3,4],[1028,1,1,4,5],[1034,1,1,5,6],[1038,1,1,6,7],[1039,1,1,7,8],[1045,1,1,8,9]]],[46,1,1,9,10,[[1084,1,1,9,10]]],[47,1,1,10,11,[[1094,1,1,10,11]]],[49,1,1,11,12,[[1106,1,1,11,12]]],[51,2,2,12,14,[[1111,1,1,12,13],[1112,1,1,13,14]]],[52,1,1,14,15,[[1117,1,1,14,15]]],[57,1,1,15,16,[[1143,1,1,15,16]]]],[25312,26201,27154,27190,27308,27534,27681,27709,27920,28931,29145,29460,29566,29583,29671,30203]]],["receiveth",[12,6,[[39,7,3,0,3,[[938,6,2,0,2],[946,1,1,2,3]]],[40,2,1,3,4,[[965,2,1,3,4]]],[41,2,1,4,5,[[981,2,1,4,5]]],[45,1,1,5,6,[[1063,1,1,5,6]]]],[23457,23458,23732,24575,25349,28408]]],["take",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29354]]],["took",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25881]]]]},{"k":"G1210","v":[["*",[44,41,[[39,10,8,0,8,[[940,1,1,0,1],[941,1,1,1,2],[942,1,1,2,3],[944,2,1,3,4],[946,2,1,4,5],[949,1,1,5,6],[950,1,1,6,7],[955,1,1,7,8]]],[40,8,8,8,16,[[959,1,1,8,9],[961,2,2,9,11],[962,1,1,11,12],[967,2,2,12,14],[971,2,2,14,16]]],[41,2,2,16,18,[[985,1,1,16,17],[991,1,1,17,18]]],[42,4,4,18,22,[[1007,1,1,18,19],[1014,2,2,19,21],[1015,1,1,21,22]]],[43,13,12,22,34,[[1026,3,3,22,25],[1027,1,1,25,26],[1029,1,1,26,27],[1037,1,1,27,28],[1038,4,3,28,31],[1039,2,2,31,33],[1041,1,1,33,34]]],[44,1,1,34,35,[[1052,1,1,34,35]]],[45,2,2,35,37,[[1068,2,2,35,37]]],[50,1,1,37,38,[[1110,1,1,37,38]]],[54,1,1,38,39,[[1126,1,1,38,39]]],[65,2,2,39,41,[[1175,1,1,39,40],[1186,1,1,40,41]]]],[23518,23569,23600,23691,23745,23828,23885,24131,24315,24367,24368,24424,24642,24644,24827,24833,25534,25761,26567,26797,26809,26865,27218,27230,27237,27270,27343,27648,27675,27677,27697,27709,27733,27796,28093,28514,28526,29545,29836,30854,31040]]],["+",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29545]]],["Bind",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23885]]],["bind",[8,8,[[39,4,4,0,4,[[940,1,1,0,1],[941,1,1,1,2],[944,1,1,2,3],[946,1,1,3,4]]],[40,2,2,4,6,[[959,1,1,4,5],[961,1,1,5,6]]],[43,2,2,6,8,[[1026,1,1,6,7],[1038,1,1,7,8]]]],[23518,23569,23691,23745,24315,24367,27230,27675]]],["bound",[28,28,[[39,4,4,0,4,[[942,1,1,0,1],[944,1,1,1,2],[946,1,1,2,3],[955,1,1,3,4]]],[40,4,4,4,8,[[961,1,1,4,5],[962,1,1,5,6],[971,2,2,6,8]]],[41,1,1,8,9,[[985,1,1,8,9]]],[42,3,3,9,12,[[1007,1,1,9,10],[1014,2,2,10,12]]],[43,10,10,12,22,[[1026,2,2,12,14],[1029,1,1,14,15],[1037,1,1,15,16],[1038,3,3,16,19],[1039,2,2,19,21],[1041,1,1,21,22]]],[44,1,1,22,23,[[1052,1,1,22,23]]],[45,2,2,23,25,[[1068,2,2,23,25]]],[54,1,1,25,26,[[1126,1,1,25,26]]],[65,2,2,26,28,[[1175,1,1,26,27],[1186,1,1,27,28]]]],[23600,23691,23745,24131,24368,24424,24827,24833,25534,26567,26797,26809,27218,27237,27343,27648,27675,27677,27697,27709,27733,27796,28093,28514,28526,29836,30854,31040]]],["knit",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27270]]],["tied",[4,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,2,2,1,3,[[967,2,2,1,3]]],[41,1,1,3,4,[[991,1,1,3,4]]]],[23828,24642,24644,25761]]],["wound",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26865]]]]},{"k":"G1211","v":[["*",[6,6,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[43,2,2,2,4,[[1030,1,1,2,3],[1032,1,1,3,4]]],[45,1,1,4,5,[[1067,1,1,4,5]]],[46,1,1,5,6,[[1089,1,1,5,6]]]],[23562,24988,27364,27478,28487,29023]]],["+",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1032,1,1,1,2]]]],[27364,27478]]],["also",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23562]]],["doubtless",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29023]]],["even",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24988]]],["therefore",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28487]]]]},{"k":"G1212","v":[["*",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[47,1,1,2,3,[[1093,1,1,2,3]]],[53,1,1,3,4,[[1124,1,1,3,4]]]],[24127,28745,29113,29795]]],["+",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[24127,29795]]],["evident",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29113]]],["manifest",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28745]]]]},{"k":"G1213","v":[["*",[7,7,[[45,2,2,0,2,[[1062,1,1,0,1],[1064,1,1,1,2]]],[50,1,1,2,3,[[1107,1,1,2,3]]],[57,2,2,3,5,[[1141,1,1,3,4],[1144,1,1,4,5]]],[59,1,1,5,6,[[1151,1,1,5,6]]],[60,1,1,6,7,[[1156,1,1,6,7]]]],[28374,28423,29473,30113,30239,30385,30493]]],["declare",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28423]]],["declared",[2,2,[[45,1,1,0,1,[[1062,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[28374,29473]]],["shewed",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30493]]],["signifieth",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30239]]],["signify",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30385]]],["signifying",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30113]]]]},{"k":"G1214","v":[["Demas",[3,3,[[50,1,1,0,1,[[1110,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]]],[29556,29880,29962]]]]},{"k":"G1215","v":[["oration",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27358]]]]},{"k":"G1216","v":[["Demetrius",[3,3,[[43,2,2,0,2,[[1036,2,2,0,2]]],[63,1,1,2,3,[[1165,1,1,2,3]]]],[27609,27623,30670]]]]},{"k":"G1217","v":[["maker",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30182]]]]},{"k":"G1218","v":[["people",[4,4,[[43,4,4,0,4,[[1029,1,1,0,1],[1034,1,1,1,2],[1036,2,2,2,4]]]],[27359,27528,27615,27618]]]]},{"k":"G1219","v":[["*",[4,4,[[43,4,4,0,4,[[1022,1,1,0,1],[1033,1,1,1,2],[1035,1,1,2,3],[1037,1,1,3,4]]]],[27077,27520,27585,27646]]],["common",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27077]]],["openly",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27520]]],["publickly",[2,2,[[43,2,2,0,2,[[1035,1,1,0,1],[1037,1,1,1,2]]]],[27585,27646]]]]},{"k":"G1220","v":[["*",[16,15,[[39,6,6,0,6,[[946,1,1,0,1],[948,4,4,1,5],[950,1,1,5,6]]],[40,3,3,6,9,[[962,1,1,6,7],[968,1,1,7,8],[970,1,1,8,9]]],[41,3,3,9,12,[[979,1,1,9,10],[982,1,1,10,11],[992,1,1,11,12]]],[42,2,2,12,14,[[1002,1,1,12,13],[1008,1,1,13,14]]],[65,2,1,14,15,[[1172,2,1,14,15]]]],[23755,23794,23801,23802,23805,23891,24444,24688,24759,25236,25398,25803,26264,26585,30799]]],["pence",[5,5,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,2,2,2,4,[[979,1,1,2,3],[982,1,1,3,4]]],[42,1,1,4,5,[[1008,1,1,4,5]]]],[23755,24759,25236,25398,26585]]],["penny",[9,8,[[39,5,5,0,5,[[948,4,4,0,4],[950,1,1,4,5]]],[40,1,1,5,6,[[968,1,1,5,6]]],[41,1,1,6,7,[[992,1,1,6,7]]],[65,2,1,7,8,[[1172,2,1,7,8]]]],[23794,23801,23802,23805,23891,24688,25803,30799]]],["pennyworth",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]]],[24444,26264]]]]},{"k":"G1221","v":[["+",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26214]]]]},{"k":"G1222","v":[["verily",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29993]]]]},{"k":"G1223","v":[["*",[610,546,[[39,46,45,0,45,[[929,1,1,0,1],[930,3,3,1,4],[932,2,2,4,6],[934,1,1,6,7],[935,2,1,7,8],[936,2,2,8,10],[938,1,1,10,11],[940,5,5,11,16],[941,5,5,16,21],[942,3,3,21,24],[943,2,2,24,26],[945,1,1,26,27],[946,3,3,27,30],[947,2,2,30,32],[949,2,2,32,34],[951,2,2,34,36],[952,4,4,36,40],[954,2,2,40,42],[955,3,3,42,45]]],[40,25,24,45,69,[[958,5,4,45,49],[959,1,1,49,50],[960,1,1,50,51],[962,5,5,51,56],[963,1,1,56,57],[965,1,1,57,58],[966,2,2,58,60],[967,2,2,60,62],[968,1,1,62,63],[969,2,2,63,65],[970,2,2,65,67],[971,1,1,67,68],[972,1,1,68,69]]],[41,27,25,69,94,[[973,2,2,69,71],[974,1,1,71,72],[976,1,1,72,73],[977,4,2,73,75],[978,1,1,75,76],[980,3,3,76,79],[983,4,4,79,83],[984,1,1,83,84],[985,1,1,84,85],[986,1,1,85,86],[989,2,2,86,88],[990,2,2,88,90],[993,1,1,90,91],[994,1,1,91,92],[995,2,2,92,94]]],[42,54,51,94,145,[[997,6,5,94,99],[999,2,2,99,101],[1000,4,4,101,105],[1001,2,2,105,107],[1002,3,2,107,109],[1003,3,3,109,112],[1004,2,2,112,114],[1005,1,1,114,115],[1006,6,6,115,121],[1007,3,3,121,124],[1008,8,7,124,131],[1009,1,1,131,132],[1010,2,2,132,134],[1011,3,3,134,137],[1012,2,2,137,139],[1013,1,1,139,140],[1015,4,4,140,144],[1016,1,1,144,145]]],[43,63,61,145,206,[[1018,2,2,145,147],[1019,6,6,147,153],[1020,3,3,153,156],[1021,4,4,156,160],[1022,2,2,160,162],[1024,1,1,162,163],[1025,2,2,163,165],[1026,2,2,165,167],[1027,3,3,167,170],[1028,2,2,170,172],[1029,1,1,172,173],[1030,2,2,173,175],[1031,2,2,175,177],[1032,6,6,177,183],[1033,2,2,183,185],[1034,1,1,185,186],[1035,4,4,186,190],[1036,2,2,190,192],[1037,2,2,192,194],[1038,4,4,194,198],[1039,1,1,198,199],[1040,2,2,199,201],[1041,3,2,201,203],[1045,4,3,203,206]]],[44,88,70,206,276,[[1046,5,5,206,211],[1047,5,5,211,216],[1048,9,7,216,223],[1049,8,6,223,229],[1050,19,12,229,241],[1051,3,2,241,243],[1052,9,7,243,250],[1053,7,6,250,256],[1055,1,1,256,257],[1056,3,2,257,259],[1057,2,2,259,261],[1058,3,2,261,263],[1059,3,3,263,266],[1060,8,7,266,273],[1061,3,3,273,276]]],[45,41,35,276,311,[[1062,5,4,276,280],[1063,1,1,280,281],[1064,2,2,281,283],[1065,4,4,283,287],[1067,1,1,287,288],[1068,3,3,288,291],[1069,3,2,291,293],[1070,3,2,293,295],[1071,4,4,295,299],[1072,6,4,299,303],[1073,1,1,303,304],[1074,1,1,304,305],[1075,2,2,305,307],[1076,4,3,307,310],[1077,1,1,310,311]]],[46,44,39,311,350,[[1078,8,7,311,318],[1079,3,3,318,321],[1080,3,3,321,324],[1081,6,5,324,329],[1082,5,4,329,333],[1083,3,2,333,335],[1084,1,1,335,336],[1085,4,4,336,340],[1086,4,4,340,344],[1087,3,3,344,347],[1088,2,1,347,348],[1089,1,1,348,349],[1090,1,1,349,350]]],[47,19,18,350,368,[[1091,4,3,350,353],[1092,5,5,353,358],[1093,4,4,358,362],[1094,3,3,362,365],[1095,2,2,365,367],[1096,1,1,367,368]]],[48,22,21,368,389,[[1097,4,4,368,372],[1098,4,4,372,376],[1099,6,6,376,382],[1100,4,3,382,385],[1101,2,2,385,387],[1102,2,2,387,389]]],[49,13,10,389,399,[[1103,8,6,389,395],[1104,1,1,395,396],[1105,4,3,396,399]]],[50,15,13,399,412,[[1107,9,7,399,406],[1108,3,3,406,409],[1109,2,2,409,411],[1110,1,1,411,412]]],[51,10,9,412,421,[[1111,1,1,412,413],[1112,1,1,413,414],[1113,4,3,414,417],[1114,2,2,417,419],[1115,2,2,419,421]]],[52,11,7,421,428,[[1117,8,4,421,425],[1118,3,3,425,428]]],[53,6,6,428,434,[[1119,1,1,428,429],[1120,2,2,429,431],[1122,2,2,431,433],[1123,1,1,433,434]]],[54,12,9,434,443,[[1125,7,5,434,439],[1126,3,2,439,441],[1127,1,1,441,442],[1128,1,1,442,443]]],[55,3,3,443,446,[[1129,1,1,443,444],[1131,2,2,444,446]]],[56,4,4,446,450,[[1132,4,4,446,450]]],[57,53,49,450,499,[[1133,4,4,450,454],[1134,10,8,454,462],[1135,2,2,462,464],[1136,1,1,464,465],[1137,3,3,465,468],[1138,3,3,468,471],[1139,6,6,471,477],[1141,6,5,477,482],[1142,2,2,482,484],[1143,6,5,484,489],[1144,4,4,489,493],[1145,6,6,493,499]]],[58,1,1,499,500,[[1147,1,1,499,500]]],[59,19,18,500,518,[[1151,8,8,500,508],[1152,4,4,508,512],[1153,4,4,512,516],[1154,1,1,516,517],[1155,2,1,517,518]]],[60,8,6,518,524,[[1156,4,2,518,520],[1157,1,1,520,521],[1158,3,3,521,524]]],[61,5,5,524,529,[[1160,1,1,524,525],[1161,1,1,525,526],[1162,2,2,526,528],[1163,1,1,528,529]]],[62,2,2,529,531,[[1164,2,2,529,531]]],[63,2,2,531,533,[[1165,2,2,531,533]]],[65,17,13,533,546,[[1167,3,2,533,535],[1168,1,1,535,536],[1170,1,1,536,537],[1172,2,1,537,538],[1173,1,1,538,539],[1178,3,2,539,541],[1179,1,1,541,542],[1184,3,3,542,545],[1186,2,1,545,546]]]],[23166,23174,23184,23192,23213,23223,23307,23329,23362,23373,23439,23490,23506,23516,23520,23532,23552,23560,23574,23591,23597,23599,23600,23606,23636,23639,23720,23734,23737,23750,23774,23786,23830,23869,23932,23952,23966,23972,23979,24001,24078,24115,24138,24147,24148,24261,24264,24283,24287,24297,24340,24409,24413,24421,24424,24433,24492,24568,24589,24613,24656,24664,24697,24730,24737,24775,24812,24836,24893,24963,24971,24977,25093,25112,25126,25147,25249,25264,25292,25413,25424,25429,25454,25481,25542,25573,25652,25662,25713,25719,25843,25886,25954,25960,26047,26051,26054,26061,26075,26137,26149,26160,26195,26197,26198,26226,26228,26314,26322,26341,26350,26371,26428,26440,26463,26482,26483,26490,26498,26500,26513,26527,26538,26565,26589,26591,26598,26607,26610,26619,26622,26641,26674,26679,26702,26718,26720,26741,26747,26779,26836,26848,26863,26867,26886,26925,26939,26965,26971,26972,26974,26975,26992,27012,27014,27017,27038,27043,27047,27052,27071,27078,27141,27194,27196,27241,27248,27280,27295,27302,27335,27337,27346,27400,27411,27417,27436,27449,27453,27454,27465,27469,27474,27486,27492,27533,27559,27566,27584,27585,27596,27611,27629,27654,27668,27683,27698,27699,27728,27762,27765,27771,27786,27901,27919,27924,27932,27935,27938,27942,27956,27974,27978,27985,27986,27989,28011,28013,28015,28016,28018,28021,28022,28033,28035,28038,28045,28046,28047,28048,28049,28052,28056,28057,28058,28059,28063,28064,28065,28066,28068,28072,28087,28095,28096,28098,28099,28102,28104,28116,28119,28126,28127,28136,28141,28153,28205,28237,28245,28246,28248,28271,28272,28294,28295,28300,28307,28312,28318,28321,28331,28333,28335,28354,28362,28363,28364,28372,28373,28384,28404,28415,28425,28439,28443,28448,28450,28481,28489,28492,28513,28533,28538,28550,28563,28568,28592,28594,28595,28609,28610,28612,28630,28642,28677,28687,28697,28720,28739,28775,28779,28801,28804,28805,28811,28816,28819,28820,28828,28834,28838,28845,28848,28852,28860,28864,28870,28873,28874,28884,28887,28895,28897,28905,28906,28929,28937,28940,28941,28950,28967,28968,28969,28970,28972,28980,28982,29022,29039,29053,29058,29069,29072,29082,29085,29097,29100,29102,29116,29120,29121,29128,29138,29144,29154,29168,29175,29202,29207,29211,29213,29221,29233,29237,29245,29247,29257,29260,29261,29263,29267,29268,29278,29288,29290,29310,29321,29350,29355,29372,29376,29380,29381,29385,29387,29421,29428,29429,29430,29466,29470,29474,29479,29481,29485,29487,29502,29506,29513,29523,29534,29545,29565,29583,29595,29597,29599,29605,29617,29630,29634,29663,29672,29675,29676,29690,29692,29694,29712,29726,29731,29752,29761,29786,29810,29815,29819,29821,29823,29829,29837,29868,29887,29905,29928,29929,29945,29947,29953,29960,29965,29966,29972,29977,29978,29979,29980,29986,29987,29988,29991,29992,30011,30014,30020,30033,30042,30044,30051,30056,30062,30073,30075,30082,30083,30085,30089,30116,30117,30119,30120,30131,30143,30153,30176,30179,30201,30205,30211,30213,30223,30227,30240,30243,30252,30253,30256,30262,30263,30305,30377,30379,30381,30386,30394,30395,30396,30397,30404,30412,30413,30418,30425,30438,30444,30445,30457,30477,30482,30483,30502,30527,30528,30534,30562,30580,30608,30612,30630,30647,30657,30668,30671,30698,30706,30720,30779,30802,30825,30902,30903,30922,31001,31003,31008,31042]]],["+",[138,135,[[39,19,19,0,19,[[934,1,1,0,1],[935,1,1,1,2],[938,1,1,2,3],[940,2,2,3,5],[941,2,2,5,7],[942,3,3,7,10],[946,2,2,10,12],[947,1,1,12,13],[949,1,1,13,14],[951,2,2,14,16],[952,3,3,16,19]]],[40,8,8,19,27,[[960,1,1,19,20],[962,3,3,20,23],[967,1,1,23,24],[968,1,1,24,25],[969,2,2,25,27]]],[41,6,6,27,33,[[977,1,1,27,28],[983,2,2,28,30],[984,1,1,30,31],[986,1,1,31,32],[993,1,1,32,33]]],[42,22,22,33,55,[[997,1,1,33,34],[1001,2,2,34,36],[1002,1,1,36,37],[1003,1,1,37,38],[1004,1,1,38,39],[1005,1,1,39,40],[1006,1,1,40,41],[1007,2,2,41,43],[1008,5,5,43,48],[1009,1,1,48,49],[1010,1,1,49,50],[1011,2,2,50,52],[1012,1,1,52,53],[1015,2,2,53,55]]],[43,6,6,55,61,[[1019,2,2,55,57],[1027,1,1,57,58],[1032,1,1,58,59],[1039,1,1,59,60],[1040,1,1,60,61]]],[44,11,10,61,71,[[1046,1,1,61,62],[1049,3,3,62,65],[1050,1,1,65,66],[1056,2,1,66,67],[1058,2,2,67,69],[1060,2,2,69,71]]],[45,11,10,71,81,[[1065,3,3,71,74],[1070,3,2,74,76],[1071,3,3,76,79],[1072,2,2,79,81]]],[46,10,10,81,91,[[1079,1,1,81,82],[1080,1,1,82,83],[1081,4,4,83,87],[1084,1,1,87,88],[1085,1,1,88,89],[1089,1,1,89,90],[1090,1,1,90,91]]],[48,4,4,91,95,[[1097,1,1,91,92],[1101,1,1,92,93],[1102,2,2,93,95]]],[50,1,1,95,96,[[1109,1,1,95,96]]],[51,6,6,96,102,[[1111,1,1,96,97],[1112,1,1,97,98],[1113,3,3,98,101],[1115,1,1,101,102]]],[52,3,3,102,105,[[1117,2,2,102,104],[1118,1,1,104,105]]],[53,2,2,105,107,[[1119,1,1,105,106],[1123,1,1,106,107]]],[54,3,2,107,109,[[1125,1,1,107,108],[1126,2,1,108,109]]],[55,1,1,109,110,[[1129,1,1,109,110]]],[56,2,2,110,112,[[1132,2,2,110,112]]],[57,8,8,112,120,[[1133,1,1,112,113],[1134,1,1,113,114],[1137,1,1,114,115],[1141,1,1,115,116],[1144,3,3,116,119],[1145,1,1,119,120]]],[59,3,3,120,123,[[1152,1,1,120,121],[1153,1,1,121,122],[1155,1,1,122,123]]],[60,3,3,123,126,[[1156,1,1,123,124],[1158,2,2,124,126]]],[61,3,3,126,129,[[1160,1,1,126,127],[1161,1,1,127,128],[1162,1,1,128,129]]],[62,1,1,129,130,[[1164,1,1,129,130]]],[63,1,1,130,131,[[1165,1,1,130,131]]],[65,4,4,131,135,[[1168,1,1,131,132],[1173,1,1,132,133],[1178,1,1,133,134],[1184,1,1,134,135]]]],[23307,23329,23439,23516,23520,23552,23591,23599,23600,23606,23737,23750,23774,23869,23932,23952,23966,23979,24001,24340,24421,24424,24433,24664,24697,24730,24737,25112,25424,25454,25481,25573,25843,26075,26226,26228,26322,26350,26428,26463,26498,26527,26538,26589,26598,26607,26610,26619,26641,26679,26718,26720,26741,26836,26848,26974,26975,27280,27469,27728,27762,27956,28033,28038,28045,28059,28237,28271,28272,28312,28333,28439,28443,28450,28550,28563,28592,28594,28595,28610,28630,28834,28852,28860,28864,28870,28874,28929,28941,29039,29053,29221,29321,29350,29355,29523,29565,29583,29595,29597,29599,29634,29672,29676,29694,29712,29786,29815,29837,29905,29947,29953,29972,29978,30033,30120,30223,30227,30240,30243,30412,30438,30477,30483,30528,30534,30562,30580,30608,30647,30668,30720,30825,30903,31001]]],["Because",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23720]]],["By",[7,7,[[44,3,3,0,3,[[1046,1,1,0,1],[1048,1,1,1,2],[1050,1,1,2,3]]],[45,1,1,3,4,[[1076,1,1,3,4]]],[46,1,1,4,5,[[1083,1,1,4,5]]],[57,1,1,5,6,[[1145,1,1,5,6]]],[59,1,1,6,7,[[1155,1,1,6,7]]]],[27935,28018,28049,28720,28906,30256,30477]]],["For",[5,5,[[40,1,1,0,1,[[963,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]],[50,2,2,2,4,[[1107,2,2,2,4]]],[54,1,1,4,5,[[1125,1,1,4,5]]]],[24492,27919,29470,29474,29821]]],["Through",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24971]]],["after",[3,3,[[40,1,1,0,1,[[958,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]]],[24261,27786,29082]]],["among",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29829]]],["at",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25542]]],["avoid",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28489]]],["because",[27,25,[[39,3,3,0,3,[[941,2,2,0,2],[955,1,1,2,3]]],[40,2,2,3,5,[[959,1,1,3,4],[962,1,1,4,5]]],[41,2,2,5,7,[[974,1,1,5,6],[983,1,1,6,7]]],[42,7,7,7,14,[[999,1,1,7,8],[1000,2,2,8,10],[1003,1,1,10,11],[1007,1,1,11,12],[1008,2,2,12,14]]],[43,3,2,14,16,[[1021,1,1,14,15],[1045,2,1,15,16]]],[44,4,3,16,19,[[1051,1,1,16,17],[1053,2,1,17,18],[1060,1,1,18,19]]],[45,1,1,19,20,[[1072,1,1,19,20]]],[47,1,1,20,21,[[1092,1,1,20,21]]],[48,2,2,21,23,[[1100,1,1,21,22],[1101,1,1,22,23]]],[57,2,2,23,25,[[1135,1,1,23,24],[1136,1,1,24,25]]]],[23560,23597,24148,24297,24413,24977,25413,26149,26197,26198,26371,26565,26610,26622,27043,27901,28087,28126,28318,28610,29085,29290,29310,30014,30020]]],["by",[233,210,[[39,16,16,0,16,[[929,1,1,0,1],[930,3,3,1,4],[932,1,1,4,5],[936,2,2,5,7],[940,1,1,7,8],[941,1,1,8,9],[943,2,2,9,11],[946,1,1,11,12],[949,1,1,12,13],[952,1,1,13,14],[954,1,1,14,15],[955,1,1,15,16]]],[40,3,3,16,19,[[962,1,1,16,17],[966,1,1,17,18],[970,1,1,18,19]]],[41,5,5,19,24,[[973,1,1,19,20],[977,1,1,20,21],[980,1,1,21,22],[990,1,1,22,23],[994,1,1,23,24]]],[42,10,8,24,32,[[997,4,3,24,27],[1002,2,1,27,28],[1006,3,3,28,31],[1010,1,1,31,32]]],[43,32,31,32,63,[[1018,1,1,32,33],[1019,4,4,33,37],[1020,3,3,37,40],[1021,3,3,40,43],[1022,2,2,43,45],[1024,1,1,45,46],[1026,1,1,46,47],[1027,1,1,47,48],[1028,2,2,48,50],[1029,1,1,50,51],[1031,1,1,51,52],[1032,3,3,52,55],[1034,1,1,55,56],[1035,2,2,56,58],[1036,1,1,58,59],[1038,1,1,59,60],[1040,1,1,60,61],[1041,2,1,61,62],[1045,1,1,62,63]]],[44,39,32,63,95,[[1046,2,2,63,65],[1047,3,3,65,68],[1048,3,3,68,71],[1050,13,9,71,80],[1051,2,1,80,81],[1052,8,6,81,87],[1053,1,1,87,88],[1055,1,1,88,89],[1057,1,1,89,90],[1060,3,3,90,93],[1061,2,2,93,95]]],[45,16,13,95,108,[[1062,4,3,95,98],[1063,1,1,98,99],[1064,2,2,99,101],[1067,1,1,101,102],[1069,2,1,102,103],[1072,1,1,103,104],[1073,1,1,104,105],[1075,1,1,105,106],[1076,2,1,106,107],[1077,1,1,107,108]]],[46,23,21,108,129,[[1078,8,7,108,115],[1079,1,1,115,116],[1081,1,1,116,117],[1082,4,3,117,120],[1083,2,2,120,122],[1085,1,1,122,123],[1086,2,2,123,125],[1087,3,3,125,128],[1088,1,1,128,129]]],[47,13,12,129,141,[[1091,4,3,129,132],[1092,2,2,132,134],[1093,3,3,134,137],[1094,1,1,137,138],[1095,2,2,138,140],[1096,1,1,140,141]]],[48,10,10,141,151,[[1097,2,2,141,143],[1098,1,1,143,144],[1099,6,6,144,150],[1100,1,1,150,151]]],[49,4,3,151,154,[[1103,4,3,151,154]]],[50,6,5,154,159,[[1107,4,3,154,157],[1108,1,1,157,158],[1109,1,1,158,159]]],[51,3,3,159,162,[[1113,1,1,159,160],[1114,1,1,160,161],[1115,1,1,161,162]]],[52,7,5,162,167,[[1117,5,3,162,165],[1118,2,2,165,167]]],[53,2,2,167,169,[[1122,2,2,167,169]]],[54,5,5,169,174,[[1125,4,4,169,173],[1128,1,1,173,174]]],[55,1,1,174,175,[[1131,1,1,174,175]]],[56,1,1,175,176,[[1132,1,1,175,176]]],[57,21,19,176,195,[[1133,2,2,176,178],[1134,3,3,178,181],[1135,1,1,181,182],[1138,2,2,182,184],[1139,4,4,184,188],[1141,4,3,188,191],[1143,4,3,191,194],[1145,1,1,194,195]]],[58,1,1,195,196,[[1147,1,1,195,196]]],[59,9,9,196,205,[[1151,4,4,196,200],[1152,2,2,200,202],[1153,3,3,202,205]]],[60,1,1,205,206,[[1156,1,1,205,206]]],[61,1,1,206,207,[[1163,1,1,206,207]]],[65,4,3,207,210,[[1167,1,1,207,208],[1178,2,1,208,209],[1179,1,1,209,210]]]],[23166,23174,23184,23192,23223,23362,23373,23506,23574,23636,23639,23734,23830,23972,24078,24138,24409,24589,24775,24963,25126,25249,25719,25886,26047,26054,26061,26314,26482,26483,26490,26674,26939,26965,26971,26972,26992,27012,27014,27017,27038,27047,27052,27071,27078,27141,27241,27295,27335,27337,27346,27417,27449,27454,27465,27533,27566,27585,27596,27683,27765,27771,27924,27932,27942,27974,27978,27989,28011,28013,28018,28052,28057,28058,28059,28063,28064,28065,28066,28068,28072,28095,28096,28098,28099,28102,28104,28127,28205,28246,28321,28331,28335,28354,28362,28372,28373,28384,28404,28415,28425,28481,28533,28612,28642,28687,28739,28779,28801,28804,28805,28811,28816,28819,28820,28838,28873,28884,28895,28897,28905,28906,28937,28968,28969,28972,28980,28982,29022,29058,29069,29072,29097,29102,29120,29121,29128,29154,29168,29175,29202,29207,29211,29245,29257,29260,29261,29263,29267,29268,29288,29372,29381,29387,29466,29481,29485,29513,29534,29597,29605,29630,29663,29675,29676,29690,29692,29752,29761,29810,29815,29819,29823,29887,29928,29945,29965,29966,29979,29980,29987,30011,30051,30062,30075,30083,30085,30089,30116,30117,30131,30176,30179,30201,30252,30305,30377,30386,30395,30397,30404,30413,30425,30444,30445,30483,30630,30698,30902,30922]]],["for",[55,48,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,4,3,1,4,[[958,3,2,1,3],[971,1,1,3,4]]],[41,4,4,4,8,[[980,2,2,4,6],[995,2,2,6,8]]],[42,7,7,8,15,[[1000,1,1,8,9],[1003,1,1,9,10],[1006,2,2,10,12],[1012,1,1,12,13],[1015,1,1,13,14],[1016,1,1,14,15]]],[43,2,2,15,17,[[1038,2,2,15,17]]],[44,6,5,17,22,[[1048,1,1,17,18],[1049,3,2,18,20],[1058,1,1,20,21],[1060,1,1,21,22]]],[45,5,4,22,26,[[1068,2,2,22,24],[1069,1,1,24,25],[1072,2,1,25,26]]],[46,2,2,26,28,[[1080,1,1,26,27],[1086,1,1,27,28]]],[48,1,1,28,29,[[1098,1,1,28,29]]],[49,5,4,29,33,[[1103,1,1,29,30],[1104,1,1,30,31],[1105,3,2,31,33]]],[50,1,1,33,34,[[1110,1,1,33,34]]],[57,6,6,34,40,[[1133,1,1,34,35],[1134,3,3,35,38],[1137,1,1,38,39],[1139,1,1,39,40]]],[59,2,2,40,42,[[1151,1,1,40,41],[1152,1,1,41,42]]],[65,9,6,42,48,[[1167,2,1,42,43],[1170,1,1,43,44],[1172,2,1,44,45],[1184,2,2,45,47],[1186,2,1,47,48]]]],[24147,24264,24287,24836,25264,25292,25954,25960,26195,26341,26500,26513,26747,26863,26886,27698,27699,28016,28046,28047,28271,28333,28492,28513,28538,28609,28848,28970,29233,29385,29421,29428,29429,29545,29977,29986,29987,29988,30042,30082,30394,30418,30706,30779,30802,31003,31008,31042]]],["from",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29663]]],["in",[9,9,[[39,2,2,0,2,[[935,1,1,0,1],[954,1,1,1,2]]],[43,1,1,2,3,[[1033,1,1,2,3]]],[46,1,1,3,4,[[1082,1,1,3,4]]],[51,1,1,4,5,[[1114,1,1,4,5]]],[53,1,1,5,6,[[1120,1,1,5,6]]],[57,2,2,6,8,[[1139,1,1,6,7],[1145,1,1,7,8]]],[60,1,1,8,9,[[1158,1,1,8,9]]]],[23329,24115,27492,28887,29617,29731,30073,30263,30527]]],["of",[12,11,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]],[42,2,2,2,4,[[1008,1,1,2,3],[1015,1,1,3,4]]],[43,1,1,4,5,[[1033,1,1,4,5]]],[44,2,2,5,7,[[1053,1,1,5,6],[1059,1,1,6,7]]],[46,1,1,7,8,[[1085,1,1,7,8]]],[49,2,1,8,9,[[1103,2,1,8,9]]],[57,1,1,9,10,[[1137,1,1,9,10]]],[60,1,1,10,11,[[1157,1,1,10,11]]]],[23213,25126,26591,26867,27486,28136,28294,28940,29376,30044,30502]]],["that",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27559]]],["their",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29992]]],["through",[92,91,[[39,3,3,0,3,[[940,2,2,0,2],[947,1,1,2,3]]],[40,4,4,3,7,[[958,1,1,3,4],[965,1,1,4,5],[966,1,1,5,6],[967,1,1,6,7]]],[41,7,7,7,14,[[976,1,1,7,8],[977,1,1,8,9],[978,1,1,9,10],[983,1,1,10,11],[989,2,2,11,13],[990,1,1,13,14]]],[42,6,6,14,20,[[997,1,1,14,15],[999,1,1,15,16],[1000,1,1,16,17],[1004,1,1,17,18],[1011,1,1,18,19],[1013,1,1,19,20]]],[43,9,9,20,29,[[1018,1,1,20,21],[1025,1,1,21,22],[1027,1,1,22,23],[1030,1,1,23,24],[1031,1,1,24,25],[1032,1,1,25,26],[1035,1,1,26,27],[1037,1,1,27,28],[1038,1,1,28,29]]],[44,20,19,29,48,[[1046,1,1,29,30],[1047,2,2,30,32],[1048,4,4,32,36],[1049,2,1,36,37],[1050,4,4,37,41],[1052,1,1,41,42],[1053,2,2,42,44],[1056,1,1,44,45],[1057,1,1,45,46],[1060,1,1,46,47],[1061,1,1,47,48]]],[45,5,5,48,53,[[1062,1,1,48,49],[1065,1,1,49,50],[1071,1,1,50,51],[1074,1,1,51,52],[1076,1,1,52,53]]],[46,4,4,53,57,[[1080,1,1,53,54],[1081,1,1,54,55],[1086,1,1,55,56],[1088,1,1,56,57]]],[47,4,4,57,61,[[1092,1,1,57,58],[1093,1,1,58,59],[1094,2,2,59,61]]],[48,5,5,61,66,[[1097,1,1,61,62],[1098,2,2,62,64],[1100,2,2,64,66]]],[49,2,2,66,68,[[1103,1,1,66,67],[1105,1,1,67,68]]],[50,5,5,68,73,[[1107,3,3,68,71],[1108,2,2,71,73]]],[54,2,2,73,75,[[1125,1,1,73,74],[1127,1,1,74,75]]],[55,1,1,75,76,[[1131,1,1,75,76]]],[56,1,1,76,77,[[1132,1,1,76,77]]],[57,9,9,77,86,[[1134,2,2,77,79],[1138,1,1,79,80],[1141,1,1,80,81],[1142,2,2,81,83],[1143,2,2,83,85],[1145,1,1,85,86]]],[59,3,3,86,89,[[1151,2,2,86,88],[1154,1,1,88,89]]],[60,1,1,89,90,[[1156,1,1,89,90]]],[61,1,1,90,91,[[1162,1,1,90,91]]]],[23490,23532,23786,24283,24568,24613,24656,25093,25126,25147,25429,25652,25662,25713,26051,26137,26160,26440,26702,26779,26925,27194,27302,27400,27436,27453,27584,27629,27668,27938,27985,27986,28015,28016,28021,28022,28035,28048,28056,28058,28068,28116,28119,28153,28245,28248,28307,28363,28364,28448,28568,28677,28775,28845,28874,28967,29022,29100,29116,29138,29144,29213,29237,29247,29278,29290,29380,29430,29479,29485,29487,29502,29506,29819,29868,29929,29960,29987,29991,30056,30119,30143,30153,30205,30211,30262,30379,30396,30457,30482,30612]]],["throughout",[3,3,[[43,2,2,0,2,[[1026,1,1,0,1],[1030,1,1,1,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]]],[27248,27411,28950]]],["to",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30482]]],["with",[16,16,[[40,1,1,0,1,[[972,1,1,0,1]]],[43,4,4,1,5,[[1025,1,1,1,2],[1032,1,1,2,3],[1036,1,1,3,4],[1037,1,1,4,5]]],[44,3,3,5,8,[[1053,1,1,5,6],[1059,2,2,6,8]]],[45,1,1,8,9,[[1075,1,1,8,9]]],[46,1,1,9,10,[[1079,1,1,9,10]]],[53,1,1,10,11,[[1120,1,1,10,11]]],[57,2,2,11,13,[[1144,1,1,11,12],[1145,1,1,12,13]]],[59,1,1,13,14,[[1151,1,1,13,14]]],[62,1,1,14,15,[[1164,1,1,14,15]]],[63,1,1,15,16,[[1165,1,1,15,16]]]],[24893,27196,27474,27611,27654,28141,28295,28300,28697,28828,29726,30213,30253,30381,30657,30671]]],["within",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24812]]]]},{"k":"G1224","v":[["*",[3,3,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,1,1,1,2,[[1033,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[25646,27492,30201]]],["over",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27492]]],["pass",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25646]]],["through",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30201]]]]},{"k":"G1225","v":[["accused",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25621]]]]},{"k":"G1226","v":[["*",[2,2,[[53,1,1,0,1,[[1119,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[29703,29931]]],["affirm",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29703]]],["constantly",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29931]]]]},{"k":"G1227","v":[["clearly",[2,2,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]]],[23321,25188]]]]},{"k":"G1228","v":[["*",[38,36,[[39,6,6,0,6,[[932,4,4,0,4],[941,1,1,4,5],[953,1,1,5,6]]],[41,6,6,6,12,[[976,5,5,6,11],[980,1,1,11,12]]],[42,3,3,12,15,[[1002,1,1,12,13],[1004,1,1,13,14],[1009,1,1,14,15]]],[43,2,2,15,17,[[1027,1,1,15,16],[1030,1,1,16,17]]],[48,2,2,17,19,[[1100,1,1,17,18],[1102,1,1,18,19]]],[53,3,3,19,22,[[1121,3,3,19,22]]],[54,2,2,22,24,[[1126,1,1,22,23],[1127,1,1,23,24]]],[55,1,1,24,25,[[1130,1,1,24,25]]],[57,1,1,25,26,[[1134,1,1,25,26]]],[58,1,1,26,27,[[1149,1,1,26,27]]],[59,1,1,27,28,[[1155,1,1,27,28]]],[61,4,2,28,30,[[1161,4,2,28,30]]],[64,1,1,30,31,[[1166,1,1,30,31]]],[65,5,5,31,36,[[1168,1,1,31,32],[1178,2,2,32,34],[1186,2,2,34,36]]]],[23210,23214,23217,23220,23578,24049,25065,25066,25068,25069,25076,25257,26327,26425,26632,27297,27372,29299,29348,29737,29738,29742,29853,29856,29911,29991,30344,30473,30587,30589,30681,30727,30900,30903,31040,31048]]],["Devil",[2,2,[[65,2,2,0,2,[[1178,1,1,0,1],[1186,1,1,1,2]]]],[30900,31040]]],["accusers",[2,2,[[54,1,1,0,1,[[1127,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]]],[29856,29911]]],["devil",[33,31,[[39,6,6,0,6,[[932,4,4,0,4],[941,1,1,4,5],[953,1,1,5,6]]],[41,6,6,6,12,[[976,5,5,6,11],[980,1,1,11,12]]],[42,3,3,12,15,[[1002,1,1,12,13],[1004,1,1,13,14],[1009,1,1,14,15]]],[43,2,2,15,17,[[1027,1,1,15,16],[1030,1,1,16,17]]],[48,2,2,17,19,[[1100,1,1,17,18],[1102,1,1,18,19]]],[53,2,2,19,21,[[1121,2,2,19,21]]],[54,1,1,21,22,[[1126,1,1,21,22]]],[57,1,1,22,23,[[1134,1,1,22,23]]],[58,1,1,23,24,[[1149,1,1,23,24]]],[59,1,1,24,25,[[1155,1,1,24,25]]],[61,4,2,25,27,[[1161,4,2,25,27]]],[64,1,1,27,28,[[1166,1,1,27,28]]],[65,3,3,28,31,[[1168,1,1,28,29],[1178,1,1,29,30],[1186,1,1,30,31]]]],[23210,23214,23217,23220,23578,24049,25065,25066,25068,25069,25076,25257,26327,26425,26632,27297,27372,29299,29348,29737,29738,29853,29991,30344,30473,30587,30589,30681,30727,30903,31048]]],["slanderers",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29742]]]]},{"k":"G1229","v":[["*",[3,3,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]]],[25361,27690,28172]]],["declared",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28172]]],["preach",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25361]]],["signify",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27690]]]]},{"k":"G1230","v":[["*",[3,3,[[40,1,1,0,1,[[972,1,1,0,1]]],[43,2,2,1,3,[[1042,1,1,1,2],[1044,1,1,2,3]]]],[24874,27809,27864]]],["after",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27809]]],["past",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24874]]],["spent",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27864]]]]},{"k":"G1231","v":[["*",[2,2,[[43,2,2,0,2,[[1040,1,1,0,1],[1041,1,1,1,2]]]],[27749,27791]]],["enquire",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27749]]],["uttermost",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27791]]]]},{"k":"G1232","v":[["known",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24990]]]]},{"k":"G1233","v":[["hearing",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27817]]]]},{"k":"G1234","v":[["murmured",[2,2,[[41,2,2,0,2,[[987,1,1,0,1],[991,1,1,1,2]]]],[25590,25738]]]]},{"k":"G1235","v":[["awake",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25333]]]]},{"k":"G1236","v":[["*",[2,2,[[53,1,1,0,1,[[1120,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[29718,29926]]],["lead",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29718]]],["living",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29926]]]]},{"k":"G1237","v":[["after",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27161]]]]},{"k":"G1238","v":[["crowns",[3,3,[[65,3,3,0,3,[[1178,1,1,0,1],[1179,1,1,1,2],[1185,1,1,2,3]]]],[30894,30909,31029]]]]},{"k":"G1239","v":[["*",[5,5,[[41,2,2,0,2,[[983,1,1,0,1],[990,1,1,1,2]]],[42,1,1,2,3,[[1002,1,1,2,3]]],[43,1,1,3,4,[[1021,1,1,3,4]]],[65,1,1,4,5,[[1183,1,1,4,5]]]],[25427,25710,26268,27057,30988]]],["distribute",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25710]]],["distributed",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26268]]],["divideth",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25427]]],["give",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30988]]],["made",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27057]]]]},{"k":"G1240","v":[["+",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27796]]]]},{"k":"G1241","v":[["*",[3,3,[[42,3,3,0,3,[[1009,2,2,0,2],[1017,1,1,2,3]]]],[26634,26635,26905]]],["girded",[2,2,[[42,2,2,0,2,[[1009,2,2,0,2]]]],[26634,26635]]],["girt",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26905]]]]},{"k":"G1242","v":[["*",[33,30,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[994,1,1,3,4]]],[43,2,2,4,6,[[1020,1,1,4,5],[1024,1,1,5,6]]],[44,2,2,6,8,[[1054,1,1,6,7],[1056,1,1,7,8]]],[45,1,1,8,9,[[1072,1,1,8,9]]],[46,2,2,9,11,[[1080,2,2,9,11]]],[47,3,3,11,14,[[1093,2,2,11,13],[1094,1,1,13,14]]],[48,1,1,14,15,[[1098,1,1,14,15]]],[57,17,14,15,29,[[1139,1,1,15,16],[1140,5,4,16,20],[1141,7,5,20,25],[1142,2,2,25,27],[1144,1,1,27,28],[1145,1,1,28,29]]],[65,1,1,29,30,[[1177,1,1,29,30]]]],[24082,24778,24965,25884,27021,27124,28159,28236,28625,28847,28855,29117,29119,29155,29241,30086,30098,30100,30101,30102,30109,30120,30121,30122,30125,30149,30162,30236,30261,30891]]],["covenant",[17,15,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,2,2,1,3,[[1020,1,1,1,2],[1024,1,1,2,3]]],[44,1,1,3,4,[[1056,1,1,3,4]]],[47,2,2,4,6,[[1093,2,2,4,6]]],[57,11,9,6,15,[[1140,5,4,6,10],[1141,2,1,10,11],[1142,2,2,11,13],[1144,1,1,13,14],[1145,1,1,14,15]]]],[24965,27021,27124,28236,29117,29119,30098,30100,30101,30102,30109,30149,30162,30236,30261]]],["covenants",[3,3,[[44,1,1,0,1,[[1054,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]],[48,1,1,2,3,[[1098,1,1,2,3]]]],[28159,29155,29241]]],["testament",[13,12,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[45,1,1,3,4,[[1072,1,1,3,4]]],[46,2,2,4,6,[[1080,2,2,4,6]]],[57,6,5,6,11,[[1139,1,1,6,7],[1141,5,4,7,11]]],[65,1,1,11,12,[[1177,1,1,11,12]]]],[24082,24778,25884,28625,28847,28855,30086,30120,30121,30122,30125,30891]]]]},{"k":"G1243","v":[["*",[3,3,[[45,3,3,0,3,[[1073,3,3,0,3]]]],[28638,28639,28640]]],["differences",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28639]]],["diversities",[2,2,[[45,2,2,0,2,[[1073,2,2,0,2]]]],[28638,28640]]]]},{"k":"G1244","v":[["*",[2,2,[[41,1,1,0,1,[[987,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]]],[25600,28645]]],["divided",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25600]]],["dividing",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28645]]]]},{"k":"G1245","v":[["purge",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23204,25042]]]]},{"k":"G1246","v":[["convinced",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27585]]]]},{"k":"G1247","v":[["*",[37,32,[[39,6,5,0,5,[[932,1,1,0,1],[936,1,1,1,2],[948,2,1,2,3],[953,1,1,3,4],[955,1,1,4,5]]],[40,5,4,5,9,[[957,2,2,5,7],[966,2,1,7,8],[971,1,1,8,9]]],[41,8,7,9,16,[[976,1,1,9,10],[980,1,1,10,11],[982,1,1,11,12],[984,1,1,12,13],[989,1,1,13,14],[994,3,2,14,16]]],[42,3,2,16,18,[[1008,3,2,16,18]]],[43,2,2,18,20,[[1023,1,1,18,19],[1036,1,1,19,20]]],[44,1,1,20,21,[[1060,1,1,20,21]]],[46,3,3,21,24,[[1080,1,1,21,22],[1085,2,2,22,24]]],[53,2,2,24,26,[[1121,2,2,24,26]]],[54,1,1,26,27,[[1125,1,1,26,27]]],[56,1,1,27,28,[[1132,1,1,27,28]]],[57,2,1,28,29,[[1138,2,1,28,29]]],[59,3,3,29,32,[[1151,1,1,29,30],[1154,2,2,30,32]]]],[23220,23360,23820,24052,24184,24228,24246,24633,24867,25102,25248,25403,25496,25659,25890,25891,26582,26606,27103,27607,28328,28844,28951,28952,29741,29744,29827,29951,30054,30386,30456,30457]]],["administered",[2,2,[[46,2,2,0,2,[[1085,2,2,0,2]]]],[28951,28952]]],["deacon",[2,2,[[53,2,2,0,2,[[1121,2,2,0,2]]]],[29741,29744]]],["minister",[7,7,[[39,2,2,0,2,[[948,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[966,1,1,2,3]]],[57,1,1,3,4,[[1138,1,1,3,4]]],[59,3,3,4,7,[[1151,1,1,4,5],[1154,2,2,5,7]]]],[23820,24052,24633,30054,30386,30456,30457]]],["ministered",[10,10,[[39,2,2,0,2,[[932,1,1,0,1],[936,1,1,1,2]]],[40,3,3,2,5,[[957,2,2,2,4],[971,1,1,4,5]]],[41,2,2,5,7,[[976,1,1,5,6],[980,1,1,6,7]]],[43,1,1,7,8,[[1036,1,1,7,8]]],[46,1,1,8,9,[[1080,1,1,8,9]]],[57,1,1,9,10,[[1138,1,1,9,10]]]],[23220,23360,24228,24246,24867,25102,25248,27607,28844,30054]]],["ministering",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24184]]],["serve",[7,6,[[41,4,4,0,4,[[982,1,1,0,1],[984,1,1,1,2],[989,1,1,2,3],[994,1,1,3,4]]],[42,2,1,4,5,[[1008,2,1,4,5]]],[43,1,1,5,6,[[1023,1,1,5,6]]]],[25403,25496,25659,25890,26606,27103]]],["served",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26582]]],["serveth",[2,1,[[41,2,1,0,1,[[994,2,1,0,1]]]],[25891]]],["unto",[5,5,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[44,1,1,2,3,[[1060,1,1,2,3]]],[54,1,1,3,4,[[1125,1,1,3,4]]],[56,1,1,4,5,[[1132,1,1,4,5]]]],[23820,24633,28328,29827,29951]]]]},{"k":"G1248","v":[["*",[34,32,[[41,1,1,0,1,[[982,1,1,0,1]]],[43,8,8,1,9,[[1018,2,2,1,3],[1023,2,2,3,5],[1028,1,1,5,6],[1029,1,1,6,7],[1037,1,1,7,8],[1038,1,1,8,9]]],[44,4,3,9,12,[[1056,1,1,9,10],[1057,2,1,10,11],[1060,1,1,11,12]]],[45,2,2,12,14,[[1073,1,1,12,13],[1077,1,1,13,14]]],[46,12,11,14,25,[[1080,4,3,14,17],[1081,1,1,17,18],[1082,1,1,18,19],[1083,1,1,19,20],[1085,1,1,20,21],[1086,3,3,21,24],[1088,1,1,24,25]]],[48,1,1,25,26,[[1100,1,1,25,26]]],[50,1,1,26,27,[[1110,1,1,26,27]]],[53,1,1,27,28,[[1119,1,1,27,28]]],[54,2,2,28,30,[[1128,2,2,28,30]]],[57,1,1,30,31,[[1133,1,1,30,31]]],[65,1,1,31,32,[[1168,1,1,31,32]]]],[25403,26940,26948,27102,27105,27336,27362,27650,27683,28222,28252,28334,28639,28791,28848,28849,28850,28860,28895,28901,28936,28957,28968,28969,28997,29284,29559,29708,29875,29881,29977,30736]]],["+",[2,2,[[43,1,1,0,1,[[1028,1,1,0,1]]],[57,1,1,1,2,[[1133,1,1,1,2]]]],[27336,29977]]],["administration",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28968]]],["administrations",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28639]]],["ministering",[3,3,[[44,1,1,0,1,[[1057,1,1,0,1]]],[46,2,2,1,3,[[1085,1,1,1,2],[1086,1,1,2,3]]]],[28252,28936,28957]]],["ministration",[6,5,[[43,1,1,0,1,[[1023,1,1,0,1]]],[46,5,4,1,5,[[1080,4,3,1,4],[1086,1,1,4,5]]]],[27102,28848,28849,28850,28969]]],["ministry",[16,16,[[43,6,6,0,6,[[1018,2,2,0,2],[1023,1,1,2,3],[1029,1,1,3,4],[1037,1,1,4,5],[1038,1,1,5,6]]],[44,1,1,6,7,[[1057,1,1,6,7]]],[45,1,1,7,8,[[1077,1,1,7,8]]],[46,3,3,8,11,[[1081,1,1,8,9],[1082,1,1,9,10],[1083,1,1,10,11]]],[48,1,1,11,12,[[1100,1,1,11,12]]],[50,1,1,12,13,[[1110,1,1,12,13]]],[53,1,1,13,14,[[1119,1,1,13,14]]],[54,2,2,14,16,[[1128,2,2,14,16]]]],[26940,26948,27105,27362,27650,27683,28252,28791,28860,28895,28901,29284,29559,29708,29875,29881]]],["office",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28222]]],["service",[3,3,[[44,1,1,0,1,[[1060,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[28334,28997,30736]]],["serving",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25403]]]]},{"k":"G1249","v":[["*",[30,28,[[39,3,3,0,3,[[948,1,1,0,1],[950,1,1,1,2],[951,1,1,2,3]]],[40,2,2,3,5,[[965,1,1,3,4],[966,1,1,4,5]]],[42,3,3,5,8,[[998,2,2,5,7],[1008,1,1,7,8]]],[44,4,3,8,11,[[1058,2,1,8,9],[1060,1,1,9,10],[1061,1,1,10,11]]],[45,1,1,11,12,[[1064,1,1,11,12]]],[46,5,4,12,16,[[1080,1,1,12,13],[1083,1,1,13,14],[1088,3,2,14,16]]],[47,1,1,16,17,[[1092,1,1,16,17]]],[48,2,2,17,19,[[1099,1,1,17,18],[1102,1,1,18,19]]],[49,1,1,19,20,[[1103,1,1,19,20]]],[50,4,4,20,24,[[1107,3,3,20,23],[1110,1,1,23,24]]],[51,1,1,24,25,[[1113,1,1,24,25]]],[53,3,3,25,28,[[1121,2,2,25,27],[1122,1,1,27,28]]]],[23818,23885,23929,24573,24631,26100,26104,26606,28270,28311,28337,28415,28847,28902,29004,29012,29098,29258,29358,29362,29472,29488,29490,29549,29592,29739,29743,29753]]],["deacons",[3,3,[[49,1,1,0,1,[[1103,1,1,0,1]]],[53,2,2,1,3,[[1121,2,2,1,3]]]],[29362,29739,29743]]],["minister",[14,13,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[44,3,2,2,4,[[1058,2,1,2,3],[1060,1,1,3,4]]],[47,1,1,4,5,[[1092,1,1,4,5]]],[48,2,2,5,7,[[1099,1,1,5,6],[1102,1,1,6,7]]],[50,4,4,7,11,[[1107,3,3,7,10],[1110,1,1,10,11]]],[51,1,1,11,12,[[1113,1,1,11,12]]],[53,1,1,12,13,[[1122,1,1,12,13]]]],[23818,24631,28270,28311,29098,29258,29358,29472,29488,29490,29549,29592,29753]]],["ministers",[6,5,[[45,1,1,0,1,[[1064,1,1,0,1]]],[46,5,4,1,5,[[1080,1,1,1,2],[1083,1,1,2,3],[1088,3,2,3,5]]]],[28415,28847,28902,29004,29012]]],["servant",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[42,1,1,2,3,[[1008,1,1,2,3]]],[44,1,1,3,4,[[1061,1,1,3,4]]]],[23929,24573,26606,28337]]],["servants",[3,3,[[39,1,1,0,1,[[950,1,1,0,1]]],[42,2,2,1,3,[[998,2,2,1,3]]]],[23885,26100,26104]]]]},{"k":"G1250","v":[["*",[8,7,[[40,1,1,0,1,[[962,1,1,0,1]]],[42,2,2,1,3,[[1002,1,1,1,2],[1017,1,1,2,3]]],[43,3,2,3,5,[[1040,2,1,3,4],[1044,1,1,4,5]]],[65,2,2,5,7,[[1177,1,1,5,6],[1178,1,1,6,7]]]],[24444,26264,26906,27757,27892,30875,30897]]],["+",[3,3,[[43,1,1,0,1,[[1044,1,1,0,1]]],[65,2,2,1,3,[[1177,1,1,1,2],[1178,1,1,2,3]]]],[27892,30875,30897]]],["hundred",[5,4,[[40,1,1,0,1,[[962,1,1,0,1]]],[42,2,2,1,3,[[1002,1,1,1,2],[1017,1,1,2,3]]],[43,2,1,3,4,[[1040,2,1,3,4]]]],[24444,26264,26906,27757]]]]},{"k":"G1251","v":[["hear",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27769]]]]},{"k":"G1252","v":[["*",[19,18,[[39,2,2,0,2,[[944,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[967,1,1,2,3]]],[43,4,4,3,7,[[1027,1,1,3,4],[1028,2,2,4,6],[1032,1,1,6,7]]],[44,2,2,7,9,[[1049,1,1,7,8],[1059,1,1,8,9]]],[45,5,5,9,14,[[1065,1,1,9,10],[1067,1,1,10,11],[1072,2,2,11,13],[1075,1,1,13,14]]],[58,3,2,14,16,[[1146,2,1,14,15],[1147,1,1,15,16]]],[64,2,2,16,18,[[1166,2,2,16,18]]]],[23675,23847,24663,27279,27309,27319,27451,28042,28303,28440,28472,28629,28631,28707,30272,30297,30681,30694]]],["+",[3,3,[[43,1,1,0,1,[[1032,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[27451,28440,30297]]],["contended",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27309]]],["contending",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30681]]],["difference",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30694]]],["discern",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23675]]],["discerning",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28629]]],["doubt",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]]],[23847,24663]]],["doubteth",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28303]]],["doubting",[2,2,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]]],[27279,27319]]],["judge",[3,3,[[45,3,3,0,3,[[1067,1,1,0,1],[1072,1,1,1,2],[1075,1,1,2,3]]]],[28472,28631,28707]]],["staggered",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28042]]],["wavereth",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30272]]],["wavering",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30272]]]]},{"k":"G1253","v":[["*",[3,3,[[44,1,1,0,1,[[1059,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]],[57,1,1,2,3,[[1137,1,1,2,3]]]],[28281,28644,30044]]],["discern",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30044]]],["discerning",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28644]]],["disputations",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28281]]]]},{"k":"G1254","v":[["forbad",[1,1,[[39,1,1,0,1,[[931,1,1,0,1]]]],[23206]]]]},{"k":"G1255","v":[["*",[2,2,[[41,2,2,0,2,[[973,1,1,0,1],[978,1,1,1,2]]]],[24958,25157]]],["abroad",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24958]]],["communed",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25157]]]]},{"k":"G1256","v":[["*",[13,13,[[40,1,1,0,1,[[965,1,1,0,1]]],[43,10,10,1,11,[[1034,2,2,1,3],[1035,2,2,3,5],[1036,2,2,5,7],[1037,2,2,7,9],[1041,2,2,9,11]]],[57,1,1,11,12,[[1144,1,1,11,12]]],[64,1,1,12,13,[[1166,1,1,12,13]]]],[24572,27525,27540,27561,27576,27593,27594,27633,27635,27781,27794,30217,30681]]],["disputed",[3,3,[[40,1,1,0,1,[[965,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[24572,27540,30681]]],["disputing",[3,3,[[43,3,3,0,3,[[1036,2,2,0,2],[1041,1,1,2,3]]]],[27593,27594,27781]]],["preached",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27633]]],["preaching",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27635]]],["reasoned",[4,4,[[43,4,4,0,4,[[1034,1,1,0,1],[1035,2,2,1,3],[1041,1,1,3,4]]]],[27525,27561,27576,27794]]],["speaketh",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30217]]]]},{"k":"G1257","v":[["ceased",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25240]]]]},{"k":"G1258","v":[["*",[6,6,[[43,6,6,0,6,[[1018,1,1,0,1],[1019,2,2,1,3],[1038,1,1,3,4],[1039,1,1,4,5],[1043,1,1,5,6]]]],[26942,26955,26957,27704,27706,27837]]],["language",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26955]]],["tongue",[5,5,[[43,5,5,0,5,[[1018,1,1,0,1],[1019,1,1,1,2],[1038,1,1,2,3],[1039,1,1,3,4],[1043,1,1,4,5]]]],[26942,26957,27704,27706,27837]]]]},{"k":"G1259","v":[["reconciled",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23258]]]]},{"k":"G1260","v":[["*",[16,15,[[39,3,3,0,3,[[944,2,2,0,2],[949,1,1,2,3]]],[40,6,5,3,8,[[958,3,2,3,5],[964,2,2,5,7],[965,1,1,7,8]]],[41,6,6,8,14,[[973,1,1,8,9],[975,1,1,9,10],[977,2,2,10,12],[984,1,1,12,13],[992,1,1,13,14]]],[42,1,1,14,15,[[1007,1,1,14,15]]]],[23679,23680,23851,24266,24268,24516,24517,24571,24922,25040,25128,25129,25476,25793,26573]]],["consider",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26573]]],["disputed",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24571]]],["mind",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24922]]],["mused",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25040]]],["reason",[5,5,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[964,1,1,2,3]]],[41,2,2,3,5,[[977,2,2,3,5]]]],[23680,24268,24517,25128,25129]]],["reasoned",[5,5,[[39,2,2,0,2,[[944,1,1,0,1],[949,1,1,1,2]]],[40,2,2,2,4,[[958,1,1,2,3],[964,1,1,3,4]]],[41,1,1,4,5,[[992,1,1,4,5]]]],[23679,23851,24268,24516,25793]]],["reasoning",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24266]]],["thought",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25476]]]]},{"k":"G1261","v":[["*",[14,14,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,6,6,2,8,[[974,1,1,2,3],[977,1,1,3,4],[978,1,1,4,5],[981,2,2,5,7],[996,1,1,7,8]]],[44,2,2,8,10,[[1046,1,1,8,9],[1059,1,1,9,10]]],[45,1,1,10,11,[[1064,1,1,10,11]]],[49,1,1,11,12,[[1104,1,1,11,12]]],[53,1,1,12,13,[[1120,1,1,12,13]]],[58,1,1,13,14,[[1147,1,1,13,14]]]],[23652,24484,25008,25129,25154,25347,25348,26029,27951,28281,28430,29405,29724,30297]]],["disputings",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29405]]],["doubtful",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28281]]],["doubting",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29724]]],["imaginations",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27951]]],["reasoning",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25347]]],["thought",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25348]]],["thoughts",[8,8,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,4,4,2,6,[[974,1,1,2,3],[977,1,1,3,4],[978,1,1,4,5],[996,1,1,5,6]]],[45,1,1,6,7,[[1064,1,1,6,7]]],[58,1,1,7,8,[[1147,1,1,7,8]]]],[23652,24484,25008,25129,25154,26029,28430,30297]]]]},{"k":"G1262","v":[["scattered",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27095]]]]},{"k":"G1263","v":[["*",[15,15,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,9,9,1,10,[[1019,1,1,1,2],[1025,1,1,2,3],[1027,1,1,3,4],[1035,1,1,4,5],[1037,3,3,5,8],[1040,1,1,8,9],[1045,1,1,9,10]]],[51,1,1,10,11,[[1114,1,1,10,11]]],[53,1,1,11,12,[[1123,1,1,11,12]]],[54,2,2,12,14,[[1126,1,1,12,13],[1128,1,1,13,14]]],[57,1,1,14,15,[[1134,1,1,14,15]]]],[25648,26989,27201,27301,27562,27647,27649,27650,27745,27922,29609,29784,29841,29871,29983]]],["Testifying",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27647]]],["charge",[2,2,[[53,1,1,0,1,[[1123,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]]],[29784,29871]]],["charging",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29841]]],["testified",[6,6,[[43,4,4,0,4,[[1025,1,1,0,1],[1035,1,1,1,2],[1040,1,1,2,3],[1045,1,1,3,4]]],[51,1,1,4,5,[[1114,1,1,4,5]]],[57,1,1,5,6,[[1134,1,1,5,6]]]],[27201,27562,27745,27922,29609,29983]]],["testify",[4,4,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,3,3,1,4,[[1019,1,1,1,2],[1027,1,1,2,3],[1037,1,1,3,4]]]],[25648,26989,27301,27650]]],["witnesseth",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27649]]]]},{"k":"G1264","v":[["strove",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27743]]]]},{"k":"G1265","v":[["*",[5,5,[[41,2,2,0,2,[[973,1,1,0,1],[994,1,1,1,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]],[57,1,1,3,4,[[1133,1,1,3,4]]],[60,1,1,4,5,[[1158,1,1,4,5]]]],[24915,25892,29086,29974,30526]]],["continue",[2,2,[[47,1,1,0,1,[[1092,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[29086,30526]]],["continued",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25892]]],["remained",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24915]]],["remainest",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29974]]]]},{"k":"G1266","v":[["*",[12,11,[[39,2,1,0,1,[[955,2,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,6,6,2,8,[[983,2,2,2,4],[984,2,2,4,6],[994,1,1,6,7],[995,1,1,7,8]]],[42,1,1,8,9,[[1015,1,1,8,9]]],[43,2,2,9,11,[[1019,2,2,9,11]]]],[24164,24850,25422,25423,25511,25512,25881,25969,26849,26952,26994]]],["cloven",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26952]]],["divide",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25881]]],["divided",[4,4,[[41,4,4,0,4,[[983,2,2,0,2],[984,2,2,2,4]]]],[25422,25423,25511,25512]]],["parted",[6,5,[[39,2,1,0,1,[[955,2,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[43,1,1,4,5,[[1019,1,1,4,5]]]],[24164,24850,25969,26849,26994]]]]},{"k":"G1267","v":[["division",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25510]]]]},{"k":"G1268","v":[["spread",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27039]]]]},{"k":"G1269","v":[["+",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24915]]]]},{"k":"G1270","v":[["thoughts",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25422]]]]},{"k":"G1271","v":[["*",[13,13,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[982,1,1,3,4]]],[48,3,3,4,7,[[1097,1,1,4,5],[1098,1,1,5,6],[1100,1,1,6,7]]],[50,1,1,7,8,[[1107,1,1,7,8]]],[57,2,2,8,10,[[1140,1,1,8,9],[1142,1,1,9,10]]],[59,1,1,10,11,[[1151,1,1,10,11]]],[60,1,1,11,12,[[1158,1,1,11,12]]],[61,1,1,12,13,[[1163,1,1,12,13]]]],[23909,24703,24944,25390,29224,29232,29290,29486,30102,30149,30387,30523,30644]]],["imagination",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24944]]],["mind",[7,7,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[48,1,1,3,4,[[1098,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]],[57,1,1,5,6,[[1140,1,1,5,6]]],[59,1,1,6,7,[[1151,1,1,6,7]]]],[23909,24703,25390,29232,29486,30102,30387]]],["minds",[2,2,[[57,1,1,0,1,[[1142,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[30149,30523]]],["understanding",[3,3,[[48,2,2,0,2,[[1097,1,1,0,1],[1100,1,1,1,2]]],[61,1,1,2,3,[[1163,1,1,2,3]]]],[29224,29290,30644]]]]},{"k":"G1272","v":[["*",[8,8,[[40,2,2,0,2,[[963,2,2,0,2]]],[41,4,4,2,6,[[974,1,1,2,3],[996,3,3,3,6]]],[43,2,2,6,8,[[1033,1,1,6,7],[1034,1,1,7,8]]]],[24497,24498,24996,26022,26023,26036,27497,27526]]],["Opening",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27526]]],["opened",[6,6,[[40,2,2,0,2,[[963,2,2,0,2]]],[41,3,3,2,5,[[996,3,3,2,5]]],[43,1,1,5,6,[[1033,1,1,5,6]]]],[24497,24498,26022,26023,26036,27497]]],["openeth",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24996]]]]},{"k":"G1273","v":[["+",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25158]]]]},{"k":"G1274","v":[["finished",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27671]]]]},{"k":"G1275","v":[["*",[7,7,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[43,2,2,2,4,[[1027,1,1,2,3],[1041,1,1,3,4]]],[44,1,1,4,5,[[1056,1,1,4,5]]],[57,2,2,5,7,[[1141,1,1,5,6],[1145,1,1,6,7]]]],[24369,26044,27261,27785,28219,30111,30256]]],["alway",[2,2,[[43,1,1,0,1,[[1027,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]]],[27261,28219]]],["always",[3,3,[[40,1,1,0,1,[[961,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[24369,27785,30111]]],["continually",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[26044,30256]]]]},{"k":"G1276","v":[["*",[6,6,[[39,2,2,0,2,[[937,1,1,0,1],[942,1,1,1,2]]],[40,2,2,2,4,[[961,1,1,2,3],[962,1,1,3,4]]],[41,1,1,4,5,[[988,1,1,4,5]]],[43,1,1,5,6,[[1038,1,1,5,6]]]],[23380,23631,24385,24460,25646,27666]]],["over",[5,5,[[39,2,2,0,2,[[937,1,1,0,1],[942,1,1,1,2]]],[40,2,2,2,4,[[961,1,1,2,3],[962,1,1,3,4]]],[43,1,1,4,5,[[1038,1,1,4,5]]]],[23380,23631,24385,24460,27666]]],["pass",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25646]]]]},{"k":"G1277","v":[["over",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27860]]]]},{"k":"G1278","v":[["grieved",[2,2,[[43,2,2,0,2,[[1021,1,1,0,1],[1033,1,1,1,2]]]],[27024,27501]]]]},{"k":"G1279","v":[["*",[5,5,[[41,3,3,0,3,[[978,1,1,0,1],[985,1,1,1,2],[990,1,1,2,3]]],[43,1,1,3,4,[[1033,1,1,3,4]]],[44,1,1,4,5,[[1060,1,1,4,5]]]],[25147,25540,25724,27487,28327]]],["by",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25724]]],["journey",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28327]]],["through",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27487]]],["went",[2,2,[[41,2,2,0,2,[[978,1,1,0,1],[985,1,1,1,2]]]],[25147,25540]]]]},{"k":"G1280","v":[["*",[5,5,[[41,2,2,0,2,[[981,1,1,0,1],[996,1,1,1,2]]],[43,3,3,2,5,[[1019,1,1,2,3],[1022,1,1,3,4],[1027,1,1,4,5]]]],[25308,25995,26961,27083,27276]]],["doubt",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26961]]],["doubted",[2,2,[[43,2,2,0,2,[[1022,1,1,0,1],[1027,1,1,1,2]]]],[27083,27276]]],["perplexed",[2,2,[[41,2,2,0,2,[[981,1,1,0,1],[996,1,1,1,2]]]],[25308,25995]]]]},{"k":"G1281","v":[["trading",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25746]]]]},{"k":"G1282","v":[["cut",[2,2,[[43,2,2,0,2,[[1022,1,1,0,1],[1024,1,1,1,2]]]],[27092,27170]]]]},{"k":"G1283","v":[["spoil",[4,2,[[39,2,1,0,1,[[940,2,1,0,1]]],[40,2,1,1,2,[[959,2,1,1,2]]]],[23518,24315]]]]},{"k":"G1284","v":[["*",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,2,2,2,4,[[977,1,1,2,3],[980,1,1,3,4]]],[43,1,1,4,5,[[1031,1,1,4,5]]]],[24119,24817,25113,25274,27428]]],["brake",[2,2,[[41,2,2,0,2,[[977,1,1,0,1],[980,1,1,1,2]]]],[25113,25274]]],["rent",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[43,1,1,2,3,[[1031,1,1,2,3]]]],[24119,24817,27428]]]]},{"k":"G1285","v":[["told",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23758]]]]},{"k":"G1286","v":[["violence",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25039]]]]},{"k":"G1287","v":[["*",[9,9,[[39,3,3,0,3,[[953,2,2,0,2],[954,1,1,2,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[41,3,3,4,7,[[973,1,1,4,5],[987,1,1,5,6],[988,1,1,6,7]]],[42,1,1,7,8,[[1007,1,1,7,8]]],[43,1,1,8,9,[[1022,1,1,8,9]]]],[24032,24034,24085,24781,24944,25601,25621,26575,27096]]],["abroad",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]]],[24085,26575]]],["dispersed",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27096]]],["scattered",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]]],[24781,24944]]],["strawed",[2,2,[[39,2,2,0,2,[[953,2,2,0,2]]]],[24032,24034]]],["wasted",[2,2,[[41,2,2,0,2,[[987,1,1,0,1],[988,1,1,1,2]]]],[25601,25621]]]]},{"k":"G1288","v":[["*",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[24368,27744]]],["asunder",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24368]]],["pieces",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27744]]]]},{"k":"G1289","v":[["*",[3,3,[[43,3,3,0,3,[[1025,2,2,0,2],[1028,1,1,2,3]]]],[27177,27180,27326]]],["+",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27326]]],["abroad",[2,2,[[43,2,2,0,2,[[1025,2,2,0,2]]]],[27177,27180]]]]},{"k":"G1290","v":[["*",[3,3,[[42,1,1,0,1,[[1003,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]],[59,1,1,2,3,[[1151,1,1,2,3]]]],[26363,30267,30375]]],["+",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30267]]],["dispersed",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26363]]],["throughout",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30375]]]]},{"k":"G1291","v":[["*",[8,7,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,5,4,1,5,[[961,1,1,1,2],[963,2,1,2,3],[964,1,1,3,4],[965,1,1,4,5]]],[43,1,1,5,6,[[1032,1,1,5,6]]],[57,1,1,6,7,[[1144,1,1,6,7]]]],[23692,24407,24499,24515,24547,27466,30232]]],["+",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27466]]],["charged",[6,5,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,5,4,1,5,[[961,1,1,1,2],[963,2,1,2,3],[964,1,1,3,4],[965,1,1,4,5]]]],[23692,24407,24499,24515,24547]]],["commanded",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30232]]]]},{"k":"G1292","v":[["space",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27066]]]]},{"k":"G1293","v":[["*",[3,3,[[44,2,2,0,2,[[1048,1,1,0,1],[1055,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]]],[28013,28200,28685]]],["difference",[2,2,[[44,2,2,0,2,[[1048,1,1,0,1],[1055,1,1,1,2]]]],[28013,28200]]],["distinction",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28685]]]]},{"k":"G1294","v":[["*",[7,7,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[995,1,1,2,3]]],[43,3,3,3,6,[[1030,2,2,3,5],[1037,1,1,5,6]]],[49,1,1,6,7,[[1104,1,1,6,7]]]],[23717,25342,25937,27370,27372,27656,29406]]],["away",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27370]]],["perverse",[3,3,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[23717,25342,29406]]],["pervert",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27372]]],["perverting",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25937]]],["things",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27656]]]]},{"k":"G1295","v":[["*",[8,8,[[39,1,1,0,1,[[942,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[43,5,5,2,7,[[1040,1,1,2,3],[1044,2,2,3,5],[1045,2,2,5,7]]],[59,1,1,7,8,[[1153,1,1,7,8]]]],[23633,25198,27758,27898,27899,27900,27903,30444]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27899]]],["escaped",[2,2,[[43,2,2,0,2,[[1045,2,2,0,2]]]],[27900,27903]]],["heal",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25198]]],["safe",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27758]]],["save",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27898]]],["saved",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30444]]],["whole",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23633]]]]},{"k":"G1296","v":[["*",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]]],[27169,28268]]],["disposition",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27169]]],["ordinance",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28268]]]]},{"k":"G1297","v":[["commandment",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30195]]]]},{"k":"G1298","v":[["troubled",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24922]]]]},{"k":"G1299","v":[["*",[16,16,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,4,4,1,5,[[975,1,1,1,2],[980,1,1,2,3],[989,2,2,3,5]]],[43,5,5,5,10,[[1024,1,1,5,6],[1035,1,1,6,7],[1037,1,1,7,8],[1040,1,1,8,9],[1041,1,1,9,10]]],[45,4,4,10,14,[[1068,1,1,10,11],[1070,1,1,11,12],[1072,1,1,12,13],[1077,1,1,13,14]]],[47,1,1,14,15,[[1093,1,1,14,15]]],[55,1,1,15,16,[[1129,1,1,15,16]]]],[23460,25038,25300,25660,25661,27160,27559,27639,27765,27792,28504,28554,28634,28777,29121,29897]]],["appointed",[4,4,[[41,1,1,0,1,[[975,1,1,0,1]]],[43,2,2,1,3,[[1024,1,1,1,2],[1037,1,1,2,3]]],[55,1,1,3,4,[[1129,1,1,3,4]]]],[25038,27160,27639,29897]]],["commanded",[6,6,[[41,3,3,0,3,[[980,1,1,0,1],[989,2,2,1,3]]],[43,3,3,3,6,[[1035,1,1,3,4],[1040,1,1,4,5],[1041,1,1,5,6]]]],[25300,25660,25661,27559,27765,27792]]],["commanding",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23460]]],["ordain",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28504]]],["ordained",[2,2,[[45,1,1,0,1,[[1070,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]]],[28554,29121]]],["order",[2,2,[[45,2,2,0,2,[[1072,1,1,0,1],[1077,1,1,1,2]]]],[28634,28777]]]]},{"k":"G1300","v":[["continued",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27888]]]]},{"k":"G1301","v":[["*",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]]],[25024,27471]]],["keep",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27471]]],["kept",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25024]]]]},{"k":"G1302","v":[["*",[27,26,[[39,7,7,0,7,[[937,2,2,0,2],[941,1,1,2,3],[943,2,2,3,5],[945,1,1,5,6],[949,1,1,6,7]]],[40,3,3,7,10,[[958,1,1,7,8],[963,1,1,8,9],[967,1,1,9,10]]],[41,6,6,10,16,[[977,2,2,10,12],[991,2,2,12,14],[992,1,1,14,15],[996,1,1,15,16]]],[42,5,5,16,21,[[1003,1,1,16,17],[1004,2,2,17,19],[1008,1,1,19,20],[1009,1,1,20,21]]],[43,1,1,21,22,[[1022,1,1,21,22]]],[44,1,1,22,23,[[1054,1,1,22,23]]],[45,2,1,23,24,[[1067,2,1,23,24]]],[46,1,1,24,25,[[1088,1,1,24,25]]],[65,1,1,25,26,[[1183,1,1,25,26]]]],[23390,23393,23549,23635,23636,23719,23851,24278,24468,24671,25137,25140,25754,25762,25784,26029,26373,26424,26427,26585,26667,27062,28187,28474,29000,30982]]],["Wherefore",[4,4,[[41,1,1,0,1,[[991,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]],[65,1,1,3,4,[[1183,1,1,3,4]]]],[25754,28187,29000,30982]]],["Why",[18,18,[[39,7,7,0,7,[[937,2,2,0,2],[941,1,1,2,3],[943,2,2,3,5],[945,1,1,5,6],[949,1,1,6,7]]],[40,3,3,7,10,[[958,1,1,7,8],[963,1,1,8,9],[967,1,1,9,10]]],[41,4,4,10,14,[[977,2,2,10,12],[991,1,1,12,13],[992,1,1,13,14]]],[42,3,3,14,17,[[1003,1,1,14,15],[1004,1,1,15,16],[1008,1,1,16,17]]],[45,1,1,17,18,[[1067,1,1,17,18]]]],[23390,23393,23549,23635,23636,23719,23851,24278,24468,24671,25137,25140,25762,25784,26373,26424,26585,28474]]],["why",[5,5,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,2,2,1,3,[[1004,1,1,1,2],[1009,1,1,2,3]]],[43,1,1,3,4,[[1022,1,1,3,4]]],[45,1,1,4,5,[[1067,1,1,4,5]]]],[26029,26427,26667,27062,28474]]]]},{"k":"G1303","v":[["*",[7,6,[[41,2,1,0,1,[[994,2,1,0,1]]],[43,1,1,1,2,[[1020,1,1,1,2]]],[57,4,4,2,6,[[1140,1,1,2,3],[1141,2,2,3,5],[1142,1,1,5,6]]]],[25893,27021,30102,30121,30122,30149]]],["appoint",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25893]]],["appointed",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25893]]],["made",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27021]]],["make",[2,2,[[57,2,2,0,2,[[1140,1,1,0,1],[1142,1,1,1,2]]]],[30102,30149]]],["testator",[2,2,[[57,2,2,0,2,[[1141,2,2,0,2]]]],[30121,30122]]]]},{"k":"G1304","v":[["*",[10,10,[[42,2,2,0,2,[[999,1,1,0,1],[1007,1,1,1,2]]],[43,8,8,2,10,[[1029,1,1,2,3],[1031,2,2,3,5],[1032,1,1,5,6],[1033,1,1,6,7],[1037,1,1,7,8],[1042,2,2,8,10]]]],[26142,26577,27356,27417,27442,27477,27495,27632,27802,27810]]],["abiding",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27495]]],["abode",[4,4,[[43,4,4,0,4,[[1029,1,1,0,1],[1031,2,2,1,3],[1037,1,1,3,4]]]],[27356,27417,27442,27632]]],["been",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27810]]],["continued",[2,2,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]]],[26577,27477]]],["tarried",[2,2,[[42,1,1,0,1,[[999,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]]],[26142,27802]]]]},{"k":"G1305","v":[["food",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29796]]]]},{"k":"G1306","v":[["dawn",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30498]]]]},{"k":"G1307","v":[["transparent",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31074]]]]},{"k":"G1308","v":[["*",[13,13,[[39,3,3,0,3,[[934,1,1,0,1],[938,1,1,1,2],[940,1,1,2,3]]],[40,1,1,3,4,[[967,1,1,3,4]]],[41,2,2,4,6,[[984,2,2,4,6]]],[43,2,2,6,8,[[1030,1,1,6,7],[1044,1,1,7,8]]],[44,1,1,8,9,[[1047,1,1,8,9]]],[45,1,1,9,10,[[1076,1,1,9,10]]],[47,2,2,10,12,[[1092,1,1,10,11],[1094,1,1,11,12]]],[49,1,1,12,13,[[1103,1,1,12,13]]]],[23308,23448,23501,24656,25466,25483,27411,27882,27980,28759,29087,29132,29371]]],["+",[4,4,[[39,2,2,0,2,[[934,1,1,0,1],[940,1,1,1,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[47,1,1,3,4,[[1092,1,1,3,4]]]],[23308,23501,25483,29087]]],["carry",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24656]]],["differeth",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29132]]],["down",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27882]]],["excellent",[2,2,[[44,1,1,0,1,[[1047,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[27980,29371]]],["from",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28759]]],["published",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27411]]],["value",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23448,25466]]]]},{"k":"G1309","v":[["escape",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27897]]]]},{"k":"G1310","v":[["*",[3,3,[[39,2,2,0,2,[[937,1,1,0,1],[956,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]]],[23410,24210,24260]]],["+",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23410]]],["abroad",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24260]]],["reported",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24210]]]]},{"k":"G1311","v":[["*",[6,5,[[41,1,1,0,1,[[984,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]],[65,3,2,3,5,[[1174,1,1,3,4],[1177,2,1,4,5]]]],[25492,28875,29793,30836,30890]]],["corrupt",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29793]]],["corrupteth",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25492]]],["destroy",[2,1,[[65,2,1,0,1,[[1177,2,1,0,1]]]],[30890]]],["destroyed",[1,1,[[65,1,1,0,1,[[1174,1,1,0,1]]]],[30836]]],["perish",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28875]]]]},{"k":"G1312","v":[["corruption",[6,6,[[43,6,6,0,6,[[1019,2,2,0,2],[1030,4,4,2,6]]]],[26976,26980,27396,27397,27398,27399]]]]},{"k":"G1313","v":[["*",[4,4,[[44,1,1,0,1,[[1057,1,1,0,1]]],[57,3,3,1,4,[[1133,1,1,1,2],[1140,1,1,2,3],[1141,1,1,3,4]]]],[28251,29967,30098,30115]]],["differing",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28251]]],["divers",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30115]]],["excellent",[2,2,[[57,2,2,0,2,[[1133,1,1,0,1],[1140,1,1,1,2]]]],[29967,30098]]]]},{"k":"G1314","v":[["keep",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25073]]]]},{"k":"G1315","v":[["*",[2,2,[[43,2,2,0,2,[[1022,1,1,0,1],[1043,1,1,1,2]]]],[27089,27844]]],["kill",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27844]]],["slew",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27089]]]]},{"k":"G1316","v":[["departed",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25334]]]]},{"k":"G1317","v":[["teach",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[29733,29851]]]]},{"k":"G1318","v":[["*",[3,2,[[42,1,1,0,1,[[1002,1,1,0,1]]],[45,2,1,1,2,[[1063,2,1,1,2]]]],[26302,28407]]],["taught",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26302]]],["teacheth",[2,1,[[45,2,1,0,1,[[1063,2,1,0,1]]]],[28407]]]]},{"k":"G1319","v":[["*",[21,21,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[44,2,2,2,4,[[1057,1,1,2,3],[1060,1,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]],[50,1,1,5,6,[[1108,1,1,5,6]]],[53,8,8,6,14,[[1119,1,1,6,7],[1122,4,4,7,11],[1123,1,1,11,12],[1124,2,2,12,14]]],[54,3,3,14,17,[[1127,2,2,14,16],[1128,1,1,16,17]]],[55,4,4,17,21,[[1129,1,1,17,18],[1130,3,3,18,21]]]],[23642,24470,28252,28307,29286,29516,29706,29748,29753,29760,29763,29780,29789,29791,29863,29869,29873,29901,29909,29915,29918]]],["doctrine",[15,15,[[48,1,1,0,1,[[1100,1,1,0,1]]],[53,7,7,1,8,[[1119,1,1,1,2],[1122,3,3,2,5],[1123,1,1,5,6],[1124,2,2,6,8]]],[54,3,3,8,11,[[1127,2,2,8,10],[1128,1,1,10,11]]],[55,4,4,11,15,[[1129,1,1,11,12],[1130,3,3,12,15]]]],[29286,29706,29753,29760,29763,29780,29789,29791,29863,29869,29873,29901,29909,29915,29918]]],["doctrines",[4,4,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]],[53,1,1,3,4,[[1122,1,1,3,4]]]],[23642,24470,29516,29748]]],["learning",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28307]]],["teaching",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28252]]]]},{"k":"G1320","v":[["*",[58,57,[[39,11,11,0,11,[[936,1,1,0,1],[937,1,1,1,2],[938,2,2,2,4],[940,1,1,4,5],[945,1,1,5,6],[947,1,1,6,7],[950,3,3,7,10],[954,1,1,10,11]]],[40,12,12,11,23,[[960,1,1,11,12],[961,1,1,12,13],[965,2,2,13,15],[966,3,3,15,18],[968,3,3,18,21],[969,1,1,21,22],[970,1,1,22,23]]],[41,17,16,23,39,[[974,1,1,23,24],[975,1,1,24,25],[978,2,1,25,26],[979,1,1,26,27],[980,1,1,27,28],[981,1,1,28,29],[982,1,1,29,30],[983,1,1,30,31],[984,1,1,31,32],[990,1,1,32,33],[991,1,1,33,34],[992,3,3,34,37],[993,1,1,37,38],[994,1,1,38,39]]],[42,8,8,39,47,[[997,1,1,39,40],[999,2,2,40,42],[1004,1,1,42,43],[1007,1,1,43,44],[1009,2,2,44,46],[1016,1,1,46,47]]],[43,1,1,47,48,[[1030,1,1,47,48]]],[44,1,1,48,49,[[1047,1,1,48,49]]],[45,2,2,49,51,[[1073,2,2,49,51]]],[48,1,1,51,52,[[1100,1,1,51,52]]],[53,1,1,52,53,[[1120,1,1,52,53]]],[54,2,2,53,55,[[1125,1,1,53,54],[1128,1,1,54,55]]],[57,1,1,55,56,[[1137,1,1,55,56]]],[58,1,1,56,57,[[1148,1,1,56,57]]]],[23364,23390,23441,23442,23527,23724,23778,23888,23896,23908,24072,24361,24399,24555,24576,24605,24608,24623,24687,24692,24705,24718,24768,25019,25037,25186,25235,25294,25339,25388,25450,25472,25706,25770,25800,25807,25818,25833,25875,26082,26122,26130,26385,26551,26643,26644,26883,27363,27982,28662,28663,29283,29723,29820,29873,30042,30320]]],["Master",[40,40,[[39,8,8,0,8,[[936,1,1,0,1],[937,1,1,1,2],[940,1,1,2,3],[947,1,1,3,4],[950,3,3,4,7],[954,1,1,7,8]]],[40,12,12,8,20,[[960,1,1,8,9],[961,1,1,9,10],[965,2,2,10,12],[966,3,3,12,15],[968,3,3,15,18],[969,1,1,18,19],[970,1,1,19,20]]],[41,14,14,20,34,[[975,1,1,20,21],[979,1,1,21,22],[980,1,1,22,23],[981,1,1,23,24],[982,1,1,24,25],[983,1,1,25,26],[984,1,1,26,27],[990,1,1,27,28],[991,1,1,28,29],[992,3,3,29,32],[993,1,1,32,33],[994,1,1,33,34]]],[42,6,6,34,40,[[997,1,1,34,35],[1004,1,1,35,36],[1007,1,1,36,37],[1009,2,2,37,39],[1016,1,1,39,40]]]],[23364,23390,23527,23778,23888,23896,23908,24072,24361,24399,24555,24576,24605,24608,24623,24687,24692,24705,24718,24768,25037,25235,25294,25339,25388,25450,25472,25706,25770,25800,25807,25818,25833,25875,26082,26385,26551,26643,26644,26883]]],["doctors",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25019]]],["master",[6,5,[[39,3,3,0,3,[[938,2,2,0,2],[945,1,1,2,3]]],[41,2,1,3,4,[[978,2,1,3,4]]],[42,1,1,4,5,[[999,1,1,4,5]]]],[23441,23442,23724,25186,26130]]],["masters",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30320]]],["teacher",[4,4,[[42,1,1,0,1,[[999,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]],[53,1,1,2,3,[[1120,1,1,2,3]]],[54,1,1,3,4,[[1125,1,1,3,4]]]],[26122,27982,29723,29820]]],["teachers",[6,6,[[43,1,1,0,1,[[1030,1,1,0,1]]],[45,2,2,1,3,[[1073,2,2,1,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]],[57,1,1,5,6,[[1137,1,1,5,6]]]],[27363,28662,28663,29283,29873,30042]]]]},{"k":"G1321","v":[["*",[97,91,[[39,14,13,0,13,[[932,1,1,0,1],[933,3,2,1,3],[935,1,1,3,4],[937,1,1,4,5],[939,1,1,5,6],[941,1,1,6,7],[943,1,1,7,8],[949,1,1,8,9],[950,1,1,9,10],[954,1,1,10,11],[956,2,2,11,13]]],[40,17,17,13,30,[[957,2,2,13,15],[958,1,1,15,16],[960,2,2,16,18],[962,4,4,18,22],[963,1,1,22,23],[964,1,1,23,24],[965,1,1,24,25],[966,1,1,25,26],[967,1,1,26,27],[968,2,2,27,29],[970,1,1,29,30]]],[41,17,15,30,45,[[976,2,2,30,32],[977,2,2,32,34],[978,1,1,34,35],[983,2,1,35,36],[984,1,1,36,37],[985,3,3,37,40],[991,1,1,40,41],[992,3,2,41,43],[993,1,1,43,44],[995,1,1,44,45]]],[42,10,10,45,55,[[1002,1,1,45,46],[1003,3,3,46,49],[1004,3,3,49,52],[1005,1,1,52,53],[1010,1,1,53,54],[1014,1,1,54,55]]],[43,16,16,55,71,[[1018,1,1,55,56],[1021,2,2,56,58],[1022,4,4,58,62],[1028,1,1,62,63],[1032,2,2,63,65],[1035,2,2,65,67],[1037,1,1,67,68],[1038,2,2,68,70],[1045,1,1,70,71]]],[44,3,2,71,73,[[1047,2,1,71,72],[1057,1,1,72,73]]],[45,2,2,73,75,[[1065,1,1,73,74],[1072,1,1,74,75]]],[47,1,1,75,76,[[1091,1,1,75,76]]],[48,1,1,76,77,[[1100,1,1,76,77]]],[50,3,3,77,80,[[1107,1,1,77,78],[1108,1,1,78,79],[1109,1,1,79,80]]],[52,1,1,80,81,[[1117,1,1,80,81]]],[53,3,3,81,84,[[1120,1,1,81,82],[1122,1,1,82,83],[1124,1,1,83,84]]],[54,1,1,84,85,[[1126,1,1,84,85]]],[55,1,1,85,86,[[1129,1,1,85,86]]],[57,2,2,86,88,[[1137,1,1,86,87],[1140,1,1,87,88]]],[61,3,1,88,89,[[1160,3,1,88,89]]],[65,2,2,89,91,[[1168,2,2,89,91]]]],[23232,23236,23253,23345,23414,23460,23593,23642,23849,23888,24109,24210,24215,24236,24237,24273,24324,24325,24409,24413,24437,24441,24470,24531,24569,24589,24657,24687,24708,24803,25078,25094,25110,25124,25152,25406,25471,25528,25540,25544,25778,25780,25800,25863,25940,26316,26342,26356,26363,26383,26401,26409,26474,26694,26805,26924,27024,27040,27080,27084,27087,27101,27333,27443,27477,27568,27582,27646,27685,27692,27930,27983,28252,28450,28614,29069,29293,29493,29501,29533,29676,29728,29758,29790,29829,29903,30042,30103,30577,30731,30737]]],["+",[6,6,[[39,1,1,0,1,[[935,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,2,2,2,4,[[976,1,1,2,3],[991,1,1,3,4]]],[42,1,1,4,5,[[1003,1,1,4,5]]],[44,1,1,5,6,[[1047,1,1,5,6]]]],[23345,24237,25094,25778,26356,27983]]],["Teaching",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24215]]],["taught",[35,35,[[39,3,3,0,3,[[933,1,1,0,1],[941,1,1,1,2],[956,1,1,2,3]]],[40,8,8,3,11,[[957,1,1,3,4],[958,1,1,4,5],[960,1,1,5,6],[962,1,1,6,7],[965,1,1,7,8],[966,1,1,8,9],[967,1,1,9,10],[968,1,1,10,11]]],[41,6,6,11,17,[[976,1,1,11,12],[977,1,1,12,13],[978,1,1,13,14],[983,1,1,14,15],[985,1,1,15,16],[992,1,1,16,17]]],[42,6,6,17,23,[[1002,1,1,17,18],[1003,1,1,18,19],[1004,3,3,19,22],[1014,1,1,22,23]]],[43,6,6,23,29,[[1021,1,1,23,24],[1022,1,1,24,25],[1028,1,1,25,26],[1032,1,1,26,27],[1035,1,1,27,28],[1037,1,1,28,29]]],[47,1,1,29,30,[[1091,1,1,29,30]]],[48,1,1,30,31,[[1100,1,1,30,31]]],[50,1,1,31,32,[[1108,1,1,31,32]]],[52,1,1,32,33,[[1117,1,1,32,33]]],[61,1,1,33,34,[[1160,1,1,33,34]]],[65,1,1,34,35,[[1168,1,1,34,35]]]],[23236,23593,24210,24236,24273,24325,24437,24569,24589,24657,24708,25078,25110,25152,25406,25544,25780,26316,26342,26383,26401,26409,26805,27024,27080,27333,27443,27582,27646,29069,29293,29501,29676,30577,30731]]],["teach",[26,25,[[39,3,2,0,2,[[933,2,1,0,1],[939,1,1,1,2]]],[40,4,4,2,6,[[960,1,1,2,3],[962,2,2,3,5],[964,1,1,5,6]]],[41,2,2,6,8,[[983,1,1,6,7],[984,1,1,7,8]]],[42,3,3,8,11,[[1003,1,1,8,9],[1005,1,1,9,10],[1010,1,1,10,11]]],[43,4,4,11,15,[[1018,1,1,11,12],[1021,1,1,12,13],[1022,2,2,13,15]]],[45,2,2,15,17,[[1065,1,1,15,16],[1072,1,1,16,17]]],[53,3,3,17,20,[[1120,1,1,17,18],[1122,1,1,18,19],[1124,1,1,19,20]]],[54,1,1,20,21,[[1126,1,1,20,21]]],[57,2,2,21,23,[[1137,1,1,21,22],[1140,1,1,22,23]]],[61,1,1,23,24,[[1160,1,1,23,24]]],[65,1,1,24,25,[[1168,1,1,24,25]]]],[23253,23460,24324,24409,24441,24531,25406,25471,26363,26474,26694,26924,27040,27087,27101,28450,28614,29728,29758,29790,29829,30042,30103,30577,30737]]],["teachest",[6,5,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,1,2,3,[[992,2,1,2,3]]],[43,1,1,3,4,[[1038,1,1,3,4]]],[44,1,1,4,5,[[1047,1,1,4,5]]]],[23888,24687,25800,27685,27983]]],["teacheth",[3,3,[[43,1,1,0,1,[[1038,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]],[61,1,1,2,3,[[1160,1,1,2,3]]]],[27692,28252,30577]]],["teaching",[20,20,[[39,5,5,0,5,[[932,1,1,0,1],[937,1,1,1,2],[943,1,1,2,3],[949,1,1,3,4],[954,1,1,4,5]]],[40,3,3,5,8,[[962,1,1,5,6],[963,1,1,6,7],[970,1,1,7,8]]],[41,5,5,8,13,[[977,1,1,8,9],[985,2,2,9,11],[993,1,1,11,12],[995,1,1,12,13]]],[43,4,4,13,17,[[1022,1,1,13,14],[1032,1,1,14,15],[1035,1,1,15,16],[1045,1,1,16,17]]],[50,2,2,17,19,[[1107,1,1,17,18],[1109,1,1,18,19]]],[55,1,1,19,20,[[1129,1,1,19,20]]]],[23232,23414,23642,23849,24109,24413,24470,24803,25124,25528,25540,25863,25940,27084,27477,27568,27930,29493,29533,29903]]]]},{"k":"G1322","v":[["*",[30,29,[[39,3,3,0,3,[[935,1,1,0,1],[944,1,1,1,2],[950,1,1,2,3]]],[40,5,5,3,8,[[957,2,2,3,5],[960,1,1,5,6],[967,1,1,6,7],[968,1,1,7,8]]],[41,1,1,8,9,[[976,1,1,8,9]]],[42,3,3,9,12,[[1003,2,2,9,11],[1014,1,1,11,12]]],[43,4,4,12,16,[[1019,1,1,12,13],[1022,1,1,13,14],[1030,1,1,14,15],[1034,1,1,15,16]]],[44,2,2,16,18,[[1051,1,1,16,17],[1061,1,1,17,18]]],[45,2,2,18,20,[[1075,2,2,18,20]]],[54,1,1,20,21,[[1128,1,1,20,21]]],[55,1,1,21,22,[[1129,1,1,21,22]]],[57,2,2,22,24,[[1138,1,1,22,23],[1145,1,1,23,24]]],[62,3,2,24,26,[[1164,3,2,24,26]]],[65,3,3,26,29,[[1168,3,3,26,29]]]],[23344,23684,23905,24237,24242,24325,24658,24711,25095,26344,26345,26804,26991,27087,27374,27542,28085,28353,28684,28704,29872,29901,30046,30250,30654,30655,30731,30732,30741]]],["+",[2,2,[[44,1,1,0,1,[[1051,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[28085,29901]]],["doctrine",[27,26,[[39,3,3,0,3,[[935,1,1,0,1],[944,1,1,1,2],[950,1,1,2,3]]],[40,5,5,3,8,[[957,2,2,3,5],[960,1,1,5,6],[967,1,1,6,7],[968,1,1,7,8]]],[41,1,1,8,9,[[976,1,1,8,9]]],[42,3,3,9,12,[[1003,2,2,9,11],[1014,1,1,11,12]]],[43,4,4,12,16,[[1019,1,1,12,13],[1022,1,1,13,14],[1030,1,1,14,15],[1034,1,1,15,16]]],[44,1,1,16,17,[[1061,1,1,16,17]]],[45,2,2,17,19,[[1075,2,2,17,19]]],[54,1,1,19,20,[[1128,1,1,19,20]]],[57,1,1,20,21,[[1138,1,1,20,21]]],[62,3,2,21,23,[[1164,3,2,21,23]]],[65,3,3,23,26,[[1168,3,3,23,26]]]],[23344,23684,23905,24237,24242,24325,24658,24711,25095,26344,26345,26804,26991,27087,27374,27542,28353,28684,28704,29872,30046,30654,30655,30731,30732,30741]]],["doctrines",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30250]]]]},{"k":"G1323","v":[["tribute",[2,1,[[39,2,1,0,1,[[945,2,1,0,1]]]],[23724]]]]},{"k":"G1324","v":[["Didymus",[3,3,[[42,3,3,0,3,[[1007,1,1,0,1],[1016,1,1,1,2],[1017,1,1,2,3]]]],[26539,26891,26900]]]]},{"k":"G1325","v":[["*",[413,377,[[39,56,54,0,54,[[932,1,1,0,1],[933,2,2,1,3],[934,1,1,3,4],[935,4,3,4,7],[937,1,1,7,8],[938,3,3,8,11],[940,1,1,11,12],[941,4,3,12,15],[942,6,6,15,21],[943,1,1,21,22],[944,3,3,22,25],[945,1,1,25,26],[947,3,3,26,29],[948,4,4,29,33],[949,2,2,33,35],[950,1,1,35,36],[952,3,3,36,39],[953,6,6,39,45],[954,5,5,45,50],[955,2,2,50,52],[956,2,2,52,54]]],[40,38,35,54,89,[[958,1,1,54,55],[960,4,4,55,59],[961,1,1,59,60],[962,10,8,60,68],[964,3,3,68,71],[966,4,4,71,75],[967,1,1,75,76],[968,4,3,76,79],[969,4,4,79,83],[970,5,5,83,88],[971,1,1,88,89]]],[41,60,54,89,143,[[973,3,3,89,92],[974,1,1,92,93],[976,2,1,93,94],[978,5,3,94,97],[979,3,3,97,100],[980,3,3,100,103],[981,3,3,103,106],[982,2,2,106,108],[983,9,7,108,115],[984,6,6,115,121],[986,1,1,121,122],[987,4,4,122,126],[988,1,1,126,127],[989,1,1,127,128],[990,1,1,128,129],[991,6,6,129,135],[992,4,4,135,139],[993,1,1,139,140],[994,3,2,140,142],[995,1,1,142,143]]],[42,75,63,143,206,[[997,3,3,143,146],[999,4,4,146,150],[1000,8,6,150,156],[1001,4,4,156,160],[1002,12,10,160,170],[1003,2,2,170,172],[1005,1,1,172,173],[1006,2,2,173,175],[1007,2,2,175,177],[1008,2,2,177,179],[1009,5,5,179,184],[1010,4,2,184,186],[1011,1,1,186,187],[1012,1,1,187,188],[1013,17,11,188,199],[1014,3,3,199,202],[1015,3,3,202,205],[1017,1,1,205,206]]],[43,35,34,206,240,[[1018,1,1,206,207],[1019,3,3,207,210],[1020,2,2,210,212],[1021,2,2,212,214],[1022,2,2,214,216],[1024,6,5,216,221],[1025,2,2,221,223],[1026,1,1,223,224],[1027,1,1,224,225],[1028,2,2,225,227],[1029,1,1,227,228],[1030,4,4,228,232],[1031,2,2,232,234],[1032,1,1,234,235],[1034,1,1,235,236],[1036,1,1,236,237],[1037,2,2,237,239],[1041,1,1,239,240]]],[44,9,9,240,249,[[1049,1,1,240,241],[1050,1,1,241,242],[1056,1,1,242,243],[1057,3,3,243,246],[1059,1,1,246,247],[1060,2,2,247,249]]],[45,15,14,249,263,[[1062,1,1,249,250],[1064,2,2,250,252],[1068,1,1,252,253],[1070,1,1,253,254],[1072,1,1,254,255],[1073,3,3,255,258],[1075,4,3,258,261],[1076,2,2,261,263]]],[46,13,13,263,276,[[1078,1,1,263,264],[1082,3,3,264,267],[1083,1,1,267,268],[1085,4,4,268,272],[1086,1,1,272,273],[1087,1,1,273,274],[1089,1,1,274,275],[1090,1,1,275,276]]],[47,6,5,276,281,[[1091,1,1,276,277],[1092,2,1,277,278],[1093,2,2,278,280],[1094,1,1,280,281]]],[48,12,12,281,293,[[1097,2,2,281,283],[1099,4,4,283,287],[1100,5,5,287,292],[1102,1,1,292,293]]],[50,1,1,293,294,[[1107,1,1,293,294]]],[51,2,2,294,296,[[1114,2,2,294,296]]],[52,4,4,296,300,[[1116,1,1,296,297],[1117,1,1,297,298],[1118,2,2,298,300]]],[53,3,3,300,303,[[1120,1,1,300,301],[1122,1,1,301,302],[1123,1,1,302,303]]],[54,6,6,303,309,[[1125,4,4,303,307],[1126,2,2,307,309]]],[55,1,1,309,310,[[1130,1,1,309,310]]],[57,4,4,310,314,[[1134,1,1,310,311],[1139,1,1,311,312],[1140,1,1,312,313],[1142,1,1,313,314]]],[58,6,4,314,318,[[1146,2,1,314,315],[1147,1,1,315,316],[1149,2,1,316,317],[1150,1,1,317,318]]],[59,2,2,318,320,[[1151,1,1,318,319],[1155,1,1,319,320]]],[60,1,1,320,321,[[1158,1,1,320,321]]],[61,7,7,321,328,[[1161,3,3,321,324],[1162,1,1,324,325],[1163,3,3,325,328]]],[65,57,49,328,377,[[1167,1,1,328,329],[1168,8,7,329,336],[1169,3,3,336,339],[1170,1,1,339,340],[1172,5,4,340,344],[1173,1,1,344,345],[1174,3,2,345,347],[1175,3,3,347,350],[1176,1,1,350,351],[1177,5,5,351,356],[1178,1,1,356,357],[1179,10,7,357,364],[1180,1,1,364,365],[1181,1,1,365,366],[1182,4,4,366,370],[1183,2,1,370,371],[1184,1,1,371,372],[1185,2,2,372,374],[1186,3,2,374,376],[1187,1,1,376,377]]]],[23218,23265,23276,23293,23322,23323,23327,23387,23418,23425,23436,23528,23547,23550,23551,23604,23605,23606,23608,23613,23616,23669,23676,23691,23698,23727,23769,23773,23783,23796,23806,23815,23820,23849,23869,23889,23981,23986,24002,24016,24023,24036,24037,24043,24050,24063,24069,24080,24081,24102,24139,24163,24207,24213,24286,24330,24331,24334,24348,24407,24409,24414,24429,24430,24432,24435,24444,24448,24506,24512,24537,24609,24625,24628,24633,24668,24682,24687,24688,24728,24739,24741,24751,24759,24765,24776,24777,24798,24849,24925,24967,24970,24997,25069,25150,25176,25184,25210,25239,25240,25255,25263,25300,25302,25314,25317,25382,25398,25408,25412,25413,25414,25418,25434,25446,25491,25492,25501,25507,25510,25517,25562,25600,25604,25610,25617,25632,25669,25731,25739,25744,25746,25754,25755,25757,25781,25789,25795,25801,25841,25869,25883,25937,26056,26061,26066,26136,26147,26154,26155,26161,26163,26166,26168,26170,26171,26232,26236,26237,26246,26284,26288,26289,26290,26291,26294,26296,26308,26309,26322,26347,26350,26464,26509,26510,26545,26580,26585,26629,26633,26645,26656,26659,26664,26684,26695,26715,26749,26761,26763,26765,26766,26767,26768,26770,26771,26773,26781,26783,26794,26796,26807,26828,26834,26836,26911,26949,26953,26968,26976,27002,27012,27034,27051,27090,27091,27121,27124,27126,27141,27154,27194,27195,27257,27299,27324,27325,27360,27382,27383,27396,27397,27417,27431,27450,27548,27616,27658,27661,27795,28042,28052,28217,28248,28251,28264,28292,28308,28318,28367,28415,28420,28512,28552,28615,28641,28642,28658,28685,28686,28687,28756,28775,28822,28882,28889,28895,28901,28933,28937,28942,28948,28965,28979,29029,29053,29061,29090,29123,29124,29146,29223,29228,29253,29258,29259,29267,29279,29280,29283,29299,29301,29356,29490,29605,29611,29657,29677,29687,29694,29722,29761,29777,29816,29818,29825,29827,29834,29852,29922,29990,30068,30102,30149,30271,30309,30343,30372,30395,30470,30537,30580,30602,30603,30616,30635,30640,30644,30698,30724,30727,30734,30738,30740,30743,30745,30754,30755,30767,30777,30795,30797,30801,30804,30812,30829,30830,30841,30843,30845,30870,30873,30874,30875,30885,30890,30905,30910,30912,30913,30915,30922,30923,30924,30933,30953,30960,30962,30963,30973,30992,31000,31024,31025,31042,31051,31059]]],["+",[11,11,[[42,3,3,0,3,[[1000,1,1,0,1],[1014,1,1,1,2],[1015,1,1,2,3]]],[43,2,2,3,5,[[1024,1,1,3,4],[1027,1,1,4,5]]],[45,1,1,5,6,[[1070,1,1,5,6]]],[46,1,1,6,7,[[1082,1,1,6,7]]],[51,1,1,7,8,[[1114,1,1,7,8]]],[65,3,3,8,11,[[1179,3,3,8,11]]]],[26166,26807,26828,27141,27299,28552,28882,29611,30922,30923,30924]]],["Give",[16,16,[[39,5,5,0,5,[[933,1,1,0,1],[934,1,1,1,2],[935,1,1,2,3],[942,1,1,3,4],[953,1,1,4,5]]],[40,1,1,5,6,[[962,1,1,5,6]]],[41,5,5,6,11,[[978,2,2,6,8],[981,1,1,8,9],[983,1,1,9,10],[986,1,1,10,11]]],[42,3,3,11,14,[[1000,2,2,11,13],[1005,1,1,13,14]]],[43,1,1,14,15,[[1025,1,1,14,15]]],[65,1,1,15,16,[[1176,1,1,15,16]]]],[23276,23293,23322,23605,24016,24444,25176,25184,25314,25408,25562,26163,26166,26464,27195,30870]]],["Giving",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28901]]],["Grant",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24625]]],["adventure",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27616]]],["bestowed",[2,2,[[46,1,1,0,1,[[1085,1,1,0,1]]],[61,1,1,1,2,[[1161,1,1,1,2]]]],[28933,30580]]],["committed",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26232]]],["delivered",[2,2,[[41,2,2,0,2,[[979,1,1,0,1],[991,1,1,1,2]]]],[25210,25744]]],["forth",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]]],[23547,26949]]],["gave",[73,72,[[39,13,13,0,13,[[938,1,1,0,1],[942,1,1,1,2],[943,1,1,2,3],[949,1,1,3,4],[953,3,3,4,7],[954,3,3,7,10],[955,2,2,10,12],[956,1,1,12,13]]],[40,11,10,13,23,[[958,1,1,13,14],[962,4,3,14,17],[964,1,1,17,18],[967,1,1,18,19],[969,1,1,19,20],[970,2,2,20,22],[971,1,1,22,23]]],[41,8,8,23,31,[[978,1,1,23,24],[981,2,2,24,26],[982,1,1,26,27],[987,1,1,27,28],[990,1,1,28,29],[992,1,1,29,30],[994,1,1,30,31]]],[42,11,11,31,42,[[997,1,1,31,32],[999,1,1,32,33],[1000,2,2,33,35],[1002,2,2,35,37],[1003,1,1,37,38],[1006,1,1,38,39],[1008,1,1,39,40],[1009,1,1,40,41],[1015,1,1,41,42]]],[43,10,10,42,52,[[1019,1,1,42,43],[1024,3,3,43,46],[1026,1,1,46,47],[1028,1,1,47,48],[1029,1,1,48,49],[1030,2,2,49,51],[1031,1,1,51,52]]],[45,1,1,52,53,[[1064,1,1,52,53]]],[46,1,1,53,54,[[1085,1,1,53,54]]],[47,2,2,54,56,[[1091,1,1,54,55],[1092,1,1,55,56]]],[48,3,3,56,59,[[1097,1,1,56,57],[1100,2,2,57,59]]],[51,1,1,59,60,[[1114,1,1,59,60]]],[53,1,1,60,61,[[1120,1,1,60,61]]],[55,1,1,61,62,[[1130,1,1,61,62]]],[57,1,1,62,63,[[1139,1,1,62,63]]],[58,1,1,63,64,[[1150,1,1,63,64]]],[59,1,1,64,65,[[1151,1,1,64,65]]],[61,1,1,65,66,[[1161,1,1,65,66]]],[65,6,6,66,72,[[1167,1,1,66,67],[1168,1,1,67,68],[1177,1,1,68,69],[1179,2,2,69,71],[1181,1,1,71,72]]]],[23418,23616,23669,23849,24023,24043,24050,24080,24081,24102,24139,24163,24207,24286,24414,24435,24448,24506,24668,24751,24776,24777,24849,25150,25302,25317,25398,25604,25731,25781,25883,26056,26136,26161,26168,26288,26289,26350,26510,26629,26656,26834,26953,27121,27124,27126,27257,27324,27360,27382,27383,27431,28415,28937,29061,29090,29228,29280,29283,29605,29722,29922,30068,30372,30395,30602,30698,30738,30885,30910,30912,30953]]],["gavest",[11,10,[[41,4,4,0,4,[[979,2,2,0,2],[987,1,1,2,3],[991,1,1,3,4]]],[42,7,6,4,10,[[1013,6,5,4,9],[1014,1,1,9,10]]]],[25239,25240,25617,25754,26763,26765,26767,26771,26781,26794]]],["give",[125,116,[[39,21,20,0,20,[[932,1,1,0,1],[933,1,1,1,2],[935,2,1,2,3],[938,1,1,3,4],[942,2,2,4,6],[944,2,2,6,8],[945,1,1,8,9],[947,2,2,9,11],[948,4,4,11,15],[950,1,1,15,16],[952,2,2,16,18],[953,1,1,18,19],[954,1,1,19,20]]],[40,14,13,20,33,[[962,4,4,20,24],[964,1,1,24,25],[966,3,3,25,28],[968,4,3,28,31],[969,1,1,31,32],[970,1,1,32,33]]],[41,29,26,33,59,[[973,2,2,33,35],[976,2,1,35,36],[978,1,1,36,37],[980,1,1,37,38],[982,1,1,38,39],[983,6,4,39,43],[984,5,5,43,48],[987,1,1,48,49],[988,1,1,49,50],[989,1,1,50,51],[991,2,2,51,53],[992,3,3,53,56],[993,1,1,56,57],[994,1,1,57,58],[995,1,1,58,59]]],[42,20,17,59,76,[[997,1,1,59,60],[1000,3,2,60,62],[1002,5,4,62,66],[1003,1,1,66,67],[1006,1,1,67,68],[1007,1,1,68,69],[1009,2,2,69,71],[1010,3,2,71,73],[1011,1,1,73,74],[1012,1,1,74,75],[1013,1,1,75,76]]],[43,7,7,76,83,[[1020,1,1,76,77],[1022,1,1,77,78],[1024,2,2,78,80],[1030,1,1,80,81],[1037,2,2,81,83]]],[44,2,2,83,85,[[1057,1,1,83,84],[1059,1,1,84,85]]],[45,3,3,85,88,[[1068,1,1,85,86],[1075,2,2,86,88]]],[46,2,2,88,90,[[1082,1,1,88,89],[1085,1,1,89,90]]],[48,2,2,90,92,[[1097,1,1,90,91],[1100,1,1,91,92]]],[52,1,1,92,93,[[1118,1,1,92,93]]],[53,1,1,93,94,[[1123,1,1,93,94]]],[54,3,3,94,97,[[1125,1,1,94,95],[1126,2,2,95,97]]],[58,1,1,97,98,[[1147,1,1,97,98]]],[61,1,1,98,99,[[1163,1,1,98,99]]],[65,18,17,99,116,[[1168,7,6,99,105],[1170,1,1,105,106],[1177,2,2,106,108],[1179,1,1,108,109],[1180,1,1,109,110],[1182,2,2,110,112],[1183,1,1,112,113],[1184,1,1,113,114],[1185,1,1,114,115],[1187,1,1,115,116]]]],[23218,23265,23327,23425,23604,23613,23691,23698,23727,23769,23783,23796,23806,23815,23820,23889,23986,24002,24036,24069,24429,24430,24432,24444,24537,24609,24628,24633,24682,24687,24688,24741,24765,24925,24970,25069,25184,25300,25382,25412,25413,25418,25446,25491,25492,25501,25510,25517,25600,25632,25669,25739,25755,25789,25795,25801,25841,25869,25937,26066,26170,26171,26284,26291,26308,26309,26347,26509,26545,26659,26664,26684,26695,26715,26749,26761,27002,27090,27121,27154,27396,27658,27661,28264,28292,28512,28685,28686,28889,28942,29223,29299,29694,29777,29825,29834,29852,30309,30640,30724,30727,30734,30740,30743,30745,30777,30875,30890,30923,30933,30963,30973,30992,31000,31024,31059]]],["given",[120,114,[[39,15,14,0,14,[[935,1,1,0,1],[937,1,1,1,2],[938,1,1,2,3],[940,1,1,3,4],[941,3,2,4,6],[942,2,2,6,8],[944,1,1,8,9],[947,1,1,9,10],[949,1,1,10,11],[953,1,1,11,12],[954,1,1,12,13],[956,1,1,13,14]]],[40,8,8,14,22,[[960,2,2,14,16],[961,1,1,16,17],[962,1,1,17,18],[964,1,1,18,19],[969,1,1,19,20],[970,2,2,20,22]]],[41,9,9,22,31,[[978,1,1,22,23],[980,2,2,23,25],[983,2,2,25,27],[984,1,1,27,28],[991,2,2,28,30],[994,1,1,30,31]]],[42,24,22,31,53,[[997,1,1,31,32],[999,2,2,32,34],[1001,3,3,34,37],[1002,2,2,37,39],[1007,1,1,39,40],[1008,1,1,40,41],[1009,2,2,41,43],[1013,10,8,43,51],[1014,1,1,51,52],[1015,1,1,52,53]]],[43,5,5,53,58,[[1020,1,1,53,54],[1021,1,1,54,55],[1022,1,1,55,56],[1025,1,1,56,57],[1041,1,1,57,58]]],[44,5,5,58,63,[[1050,1,1,58,59],[1056,1,1,59,60],[1057,2,2,60,62],[1060,1,1,62,63]]],[45,6,6,63,69,[[1062,1,1,63,64],[1064,1,1,64,65],[1072,1,1,65,66],[1073,3,3,66,69]]],[46,6,6,69,75,[[1078,1,1,69,70],[1082,1,1,70,71],[1086,1,1,71,72],[1087,1,1,72,73],[1089,1,1,73,74],[1090,1,1,74,75]]],[47,4,4,75,79,[[1092,1,1,75,76],[1093,2,2,76,78],[1094,1,1,78,79]]],[48,5,5,79,84,[[1099,3,3,79,82],[1100,1,1,82,83],[1102,1,1,83,84]]],[50,1,1,84,85,[[1107,1,1,84,85]]],[52,1,1,85,86,[[1117,1,1,85,86]]],[53,1,1,86,87,[[1122,1,1,86,87]]],[54,2,2,87,89,[[1125,2,2,87,89]]],[57,1,1,89,90,[[1134,1,1,89,90]]],[58,1,1,90,91,[[1146,1,1,90,91]]],[60,1,1,91,92,[[1158,1,1,91,92]]],[61,4,4,92,96,[[1161,1,1,92,93],[1162,1,1,93,94],[1163,2,2,94,96]]],[65,21,18,96,114,[[1172,5,4,96,100],[1173,1,1,100,101],[1174,2,2,101,103],[1175,3,3,103,106],[1177,2,2,106,108],[1178,1,1,108,109],[1179,4,2,109,111],[1182,2,2,111,113],[1186,1,1,113,114]]]],[23323,23387,23436,23528,23550,23551,23606,23608,23676,23773,23869,24037,24063,24213,24334,24348,24407,24409,24512,24728,24759,24798,25184,25255,25263,25414,25434,25507,25746,25757,25883,26061,26147,26155,26236,26237,26246,26296,26322,26580,26585,26633,26645,26761,26766,26767,26768,26770,26773,26781,26783,26796,26836,27012,27034,27091,27194,27795,28052,28217,28248,28251,28318,28367,28420,28615,28641,28642,28658,28822,28895,28965,28979,29029,29053,29090,29123,29124,29146,29253,29258,29259,29279,29356,29490,29677,29761,29816,29818,29990,30271,30537,30603,30616,30635,30644,30795,30797,30801,30804,30812,30829,30830,30841,30843,30845,30873,30874,30905,30913,30915,30960,30962,31042]]],["giveth",[13,12,[[42,6,6,0,6,[[999,1,1,0,1],[1002,3,3,1,4],[1010,1,1,4,5],[1017,1,1,5,6]]],[43,1,1,6,7,[[1034,1,1,6,7]]],[45,2,2,7,9,[[1076,2,2,7,9]]],[58,3,2,9,11,[[1146,1,1,9,10],[1149,2,1,10,11]]],[59,1,1,11,12,[[1155,1,1,11,12]]]],[26154,26289,26290,26294,26695,26911,27548,28756,28775,30271,30343,30470]]],["giving",[3,3,[[43,1,1,0,1,[[1032,1,1,0,1]]],[44,1,1,1,2,[[1049,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]]],[27450,28042,28685]]],["grant",[6,6,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]],[44,1,1,2,3,[[1060,1,1,2,3]]],[48,1,1,3,4,[[1099,1,1,3,4]]],[54,1,1,4,5,[[1125,1,1,4,5]]],[65,1,1,5,6,[[1169,1,1,5,6]]]],[24967,27051,28308,29267,29827,30767]]],["granted",[3,3,[[43,2,2,0,2,[[1028,1,1,0,1],[1031,1,1,1,2]]],[65,1,1,2,3,[[1185,1,1,2,3]]]],[27325,27417,31025]]],["make",[2,2,[[52,1,1,0,1,[[1118,1,1,0,1]]],[65,1,1,1,2,[[1169,1,1,1,2]]]],[29687,30755]]],["minister",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29301]]],["offer",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[65,1,1,1,2,[[1174,1,1,1,2]]]],[24997,30830]]],["put",[5,5,[[41,1,1,0,1,[[987,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]],[57,2,2,2,4,[[1140,1,1,2,3],[1142,1,1,3,4]]],[65,1,1,4,5,[[1183,1,1,4,5]]]],[25610,28948,30102,30149,30992]]],["set",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30754]]],["shew",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]]],[23981,24739,26968]]],["suffer",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1030,1,1,1,2]]]],[26976,27397]]],["taking",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29657]]],["up",[2,1,[[65,2,1,0,1,[[1186,2,1,0,1]]]],[31051]]],["utter",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28687]]],["yield",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24331]]],["yielded",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24330]]]]},{"k":"G1326","v":[["*",[7,7,[[39,1,1,0,1,[[929,1,1,0,1]]],[40,2,2,1,3,[[960,2,2,1,3]]],[41,1,1,3,4,[[980,1,1,3,4]]],[42,1,1,4,5,[[1002,1,1,4,5]]],[60,2,2,5,7,[[1156,1,1,5,6],[1158,1,1,6,7]]]],[23168,24361,24362,25269,26275,30492,30523]]],["+",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30492]]],["arose",[2,2,[[40,1,1,0,1,[[960,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]]],[24362,26275]]],["awake",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24361]]],["awoke",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25269]]],["raised",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23168]]],["up",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30523]]]]},{"k":"G1327","v":[["+",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23881]]]]},{"k":"G1328","v":[["interpreter",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28706]]]]},{"k":"G1329","v":[["*",[6,6,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]],[45,4,4,2,6,[[1073,1,1,2,3],[1075,3,3,3,6]]]],[26018,27252,28664,28683,28691,28705]]],["expounded",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26018]]],["interpret",[4,4,[[45,4,4,0,4,[[1073,1,1,0,1],[1075,3,3,1,4]]]],[28664,28683,28691,28705]]],["interpretation",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27252]]]]},{"k":"G1330","v":[["*",[42,41,[[39,2,2,0,2,[[940,1,1,0,1],[947,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,10,10,3,13,[[974,2,2,3,5],[976,1,1,5,6],[977,1,1,6,7],[980,1,1,7,8],[981,1,1,8,9],[983,1,1,9,10],[989,1,1,10,11],[991,2,2,11,13]]],[42,2,2,13,15,[[1000,1,1,13,14],[1004,1,1,14,15]]],[43,21,21,15,36,[[1025,2,2,15,17],[1026,2,2,17,19],[1027,1,1,19,20],[1028,2,2,20,22],[1029,1,1,22,23],[1030,2,2,23,25],[1031,1,1,25,26],[1032,2,2,26,28],[1033,1,1,28,29],[1034,1,1,29,30],[1035,2,2,30,32],[1036,2,2,32,34],[1037,2,2,34,36]]],[44,1,1,36,37,[[1050,1,1,36,37]]],[45,3,2,37,39,[[1071,1,1,37,38],[1077,2,1,38,39]]],[46,1,1,39,40,[[1078,1,1,39,40]]],[57,1,1,40,41,[[1136,1,1,40,41]]]],[23532,23786,24358,24988,25008,25093,25122,25267,25307,25429,25662,25732,25735,26160,26440,27180,27216,27248,27254,27297,27326,27329,27347,27368,27376,27438,27445,27483,27489,27546,27580,27584,27586,27606,27628,27651,28059,28568,28781,28816,30028]]],["+",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25122]]],["about",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27297]]],["by",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27546]]],["come",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27254]]],["departed",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27376]]],["go",[4,4,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[42,1,1,2,3,[[1000,1,1,2,3]]],[43,1,1,3,4,[[1028,1,1,3,4]]]],[23786,24988,26160,27329]]],["going",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26440]]],["gone",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27651]]],["into",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30028]]],["over",[4,4,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[43,2,2,2,4,[[1035,1,1,2,3],[1037,1,1,3,4]]]],[24358,25267,27580,27628]]],["pass",[3,3,[[41,1,1,0,1,[[991,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]],[46,1,1,2,3,[[1078,1,1,2,3]]]],[25735,27584,28816]]],["passed",[4,4,[[41,1,1,0,1,[[989,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]],[44,1,1,2,3,[[1050,1,1,2,3]]],[45,1,1,3,4,[[1071,1,1,3,4]]]],[25662,27248,28059,28568]]],["passing",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25093]]],["past",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27347]]],["through",[10,9,[[41,2,2,0,2,[[974,1,1,0,1],[991,1,1,1,2]]],[43,6,6,2,8,[[1025,1,1,2,3],[1030,1,1,3,4],[1032,2,2,4,6],[1036,2,2,6,8]]],[45,2,1,8,9,[[1077,2,1,8,9]]]],[25008,25732,27216,27368,27445,27483,27586,27606,28781]]],["throughout",[2,2,[[43,2,2,0,2,[[1031,1,1,0,1],[1033,1,1,1,2]]]],[27438,27489]]],["travelled",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27326]]],["walketh",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23532,25429]]],["went",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25307]]],["where",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27180]]]]},{"k":"G1331","v":[["enquiry",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27276]]]]},{"k":"G1332","v":[["old",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23185]]]]},{"k":"G1333","v":[["+",[2,2,[[43,2,2,0,2,[[1041,1,1,0,1],[1045,1,1,1,2]]]],[27796,27929]]]]},{"k":"G1334","v":[["*",[8,8,[[40,2,2,0,2,[[961,1,1,0,1],[965,1,1,1,2]]],[41,2,2,2,4,[[980,1,1,2,3],[981,1,1,3,4]]],[43,3,3,4,7,[[1025,1,1,4,5],[1026,1,1,5,6],[1029,1,1,6,7]]],[57,1,1,7,8,[[1143,1,1,7,8]]]],[24380,24547,25284,25311,27209,27243,27354,30204]]],["declare",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27209]]],["declared",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1029,1,1,1,2]]]],[27243,27354]]],["shew",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25284]]],["tell",[2,2,[[40,1,1,0,1,[[965,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[24547,30204]]],["told",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[24380,25311]]]]},{"k":"G1335","v":[["declaration",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24894]]]]},{"k":"G1336","v":[["+",[4,4,[[57,4,4,0,4,[[1139,1,1,0,1],[1142,3,3,1,4]]]],[30067,30134,30145,30147]]]]},{"k":"G1337","v":[["met",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27896]]]]},{"k":"G1338","v":[["piercing",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30026]]]]},{"k":"G1339","v":[["*",[3,3,[[41,2,2,0,2,[[994,1,1,0,1],[996,1,1,1,2]]],[43,1,1,2,3,[[1044,1,1,2,3]]]],[25923,26042,27883]]],["+",[2,2,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[25923,27883]]],["parted",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26042]]]]},{"k":"G1340","v":[["affirmed",[2,2,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]]],[25923,27352]]]]},{"k":"G1341","v":[["judgment",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27967]]]]},{"k":"G1342","v":[["*",[81,76,[[39,19,16,0,16,[[929,1,1,0,1],[933,1,1,1,2],[937,1,1,2,3],[938,3,1,3,4],[941,3,3,4,7],[948,2,2,7,9],[951,4,3,9,12],[953,2,2,12,14],[955,2,2,14,16]]],[40,2,2,16,18,[[958,1,1,16,17],[962,1,1,17,18]]],[41,11,11,18,29,[[973,2,2,18,20],[974,1,1,20,21],[977,1,1,21,22],[984,1,1,22,23],[986,1,1,23,24],[987,1,1,24,25],[990,1,1,25,26],[992,1,1,26,27],[995,2,2,27,29]]],[42,3,3,29,32,[[1001,1,1,29,30],[1003,1,1,30,31],[1013,1,1,31,32]]],[43,6,6,32,38,[[1020,1,1,32,33],[1021,1,1,33,34],[1024,1,1,34,35],[1027,1,1,35,36],[1039,1,1,36,37],[1041,1,1,37,38]]],[44,7,7,38,45,[[1046,1,1,38,39],[1047,1,1,39,40],[1048,2,2,40,42],[1050,2,2,42,44],[1052,1,1,44,45]]],[47,1,1,45,46,[[1093,1,1,45,46]]],[48,1,1,46,47,[[1102,1,1,46,47]]],[49,2,2,47,49,[[1103,1,1,47,48],[1106,1,1,48,49]]],[50,1,1,49,50,[[1110,1,1,49,50]]],[52,2,2,50,52,[[1116,2,2,50,52]]],[53,1,1,52,53,[[1119,1,1,52,53]]],[54,1,1,53,54,[[1128,1,1,53,54]]],[55,1,1,54,55,[[1129,1,1,54,55]]],[57,3,3,55,58,[[1142,1,1,55,56],[1143,1,1,56,57],[1144,1,1,57,58]]],[58,2,2,58,60,[[1150,2,2,58,60]]],[59,3,3,60,63,[[1153,2,2,60,62],[1154,1,1,62,63]]],[60,4,3,63,66,[[1156,1,1,63,64],[1157,3,2,64,66]]],[61,6,5,66,71,[[1159,1,1,66,67],[1160,2,2,67,69],[1161,3,2,69,71]]],[65,5,5,71,76,[[1181,1,1,71,72],[1182,2,2,72,74],[1185,1,1,74,75],[1188,1,1,75,76]]]],[23163,23279,23392,23458,23556,23582,23588,23796,23799,23946,23947,23953,24045,24054,24148,24153,24277,24427,24899,24910,24998,25139,25516,25567,25595,25697,25799,25982,25985,26240,26352,26784,27010,27041,27168,27281,27718,27784,27947,27975,28001,28017,28054,28066,28103,29113,29338,29368,29450,29543,29654,29655,29705,29878,29900,30171,30176,30235,30360,30370,30436,30442,30464,30492,30507,30508,30549,30551,30579,30586,30591,30949,30959,30961,31019,31091]]],["Just",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27010]]],["One",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1039,1,1,1,2]]]],[27168,27718]]],["just",[25,25,[[39,3,3,0,3,[[929,1,1,0,1],[933,1,1,1,2],[941,1,1,2,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[41,4,4,4,8,[[973,1,1,4,5],[974,1,1,5,6],[986,1,1,6,7],[995,1,1,7,8]]],[42,1,1,8,9,[[1001,1,1,8,9]]],[43,2,2,9,11,[[1027,1,1,9,10],[1041,1,1,10,11]]],[44,4,4,11,15,[[1046,1,1,11,12],[1047,1,1,12,13],[1048,1,1,13,14],[1052,1,1,14,15]]],[47,1,1,15,16,[[1093,1,1,15,16]]],[49,1,1,16,17,[[1106,1,1,16,17]]],[50,1,1,17,18,[[1110,1,1,17,18]]],[55,1,1,18,19,[[1129,1,1,18,19]]],[57,1,1,19,20,[[1142,1,1,19,20]]],[58,1,1,20,21,[[1150,1,1,20,21]]],[59,1,1,21,22,[[1153,1,1,21,22]]],[60,1,1,22,23,[[1157,1,1,22,23]]],[61,1,1,23,24,[[1159,1,1,23,24]]],[65,1,1,24,25,[[1181,1,1,24,25]]]],[23163,23279,23588,24427,24910,24998,25567,25985,26240,27281,27784,27947,27975,28017,28103,29113,29450,29543,29900,30171,30360,30442,30507,30549,30949]]],["man",[7,6,[[39,3,2,0,2,[[938,2,1,0,1],[955,1,1,1,2]]],[44,1,1,2,3,[[1050,1,1,2,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]],[58,1,1,4,5,[[1150,1,1,4,5]]],[60,1,1,5,6,[[1157,1,1,5,6]]]],[23458,24148,28054,29705,30370,30508]]],["man's",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23458]]],["meet",[2,2,[[49,1,1,0,1,[[1103,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[29368,30492]]],["men",[2,2,[[41,1,1,0,1,[[992,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[25799,30235]]],["person",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24153]]],["persons",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25595]]],["right",[5,5,[[39,2,2,0,2,[[948,2,2,0,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[43,1,1,3,4,[[1021,1,1,3,4]]],[48,1,1,4,5,[[1102,1,1,4,5]]]],[23796,23799,25516,27041,29338]]],["righteous",[33,31,[[39,9,8,0,8,[[937,1,1,0,1],[941,2,2,1,3],[951,4,3,3,6],[953,2,2,6,8]]],[40,1,1,8,9,[[958,1,1,8,9]]],[41,4,4,9,13,[[973,1,1,9,10],[977,1,1,10,11],[990,1,1,11,12],[995,1,1,12,13]]],[42,2,2,13,15,[[1003,1,1,13,14],[1013,1,1,14,15]]],[44,2,2,15,17,[[1048,1,1,15,16],[1050,1,1,16,17]]],[52,1,1,17,18,[[1116,1,1,17,18]]],[54,1,1,18,19,[[1128,1,1,18,19]]],[57,1,1,19,20,[[1143,1,1,19,20]]],[59,2,2,20,22,[[1153,1,1,20,21],[1154,1,1,21,22]]],[60,1,1,22,23,[[1157,1,1,22,23]]],[61,5,4,23,27,[[1160,2,2,23,25],[1161,3,2,25,27]]],[65,4,4,27,31,[[1182,2,2,27,29],[1185,1,1,29,30],[1188,1,1,30,31]]]],[23392,23556,23582,23946,23947,23953,24045,24054,24277,24899,25139,25697,25982,26352,26784,28001,28066,29654,29878,30176,30436,30464,30508,30551,30579,30586,30591,30959,30961,31019,31091]]],["thing",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29655]]]]},{"k":"G1343","v":[["*",[92,85,[[39,6,6,0,6,[[931,1,1,0,1],[933,3,3,1,4],[934,1,1,4,5],[949,1,1,5,6]]],[41,1,1,6,7,[[973,1,1,6,7]]],[42,2,2,7,9,[[1012,2,2,7,9]]],[43,4,4,9,13,[[1027,1,1,9,10],[1030,1,1,10,11],[1034,1,1,11,12],[1041,1,1,12,13]]],[44,36,30,13,43,[[1046,1,1,13,14],[1048,5,5,14,19],[1049,8,7,19,26],[1050,2,2,26,28],[1051,5,5,28,33],[1053,1,1,33,34],[1054,6,3,34,37],[1055,7,5,37,42],[1059,1,1,42,43]]],[45,1,1,43,44,[[1062,1,1,43,44]]],[46,7,7,44,51,[[1080,1,1,44,45],[1082,1,1,45,46],[1083,2,2,46,48],[1086,2,2,48,50],[1088,1,1,50,51]]],[47,4,4,51,55,[[1092,1,1,51,52],[1093,2,2,52,54],[1095,1,1,54,55]]],[48,3,3,55,58,[[1100,1,1,55,56],[1101,1,1,56,57],[1102,1,1,57,58]]],[49,4,3,58,61,[[1103,1,1,58,59],[1105,3,2,59,61]]],[53,1,1,61,62,[[1124,1,1,61,62]]],[54,3,3,62,65,[[1126,1,1,62,63],[1127,1,1,63,64],[1128,1,1,64,65]]],[55,1,1,65,66,[[1131,1,1,65,66]]],[57,6,6,66,72,[[1133,1,1,66,67],[1137,1,1,67,68],[1139,1,1,68,69],[1143,2,2,69,71],[1144,1,1,71,72]]],[58,3,3,72,75,[[1146,1,1,72,73],[1147,1,1,73,74],[1148,1,1,74,75]]],[59,2,2,75,77,[[1152,1,1,75,76],[1153,1,1,76,77]]],[60,4,4,77,81,[[1156,1,1,77,78],[1157,2,2,78,80],[1158,1,1,80,81]]],[61,3,3,81,84,[[1160,1,1,81,82],[1161,2,2,82,84]]],[65,1,1,84,85,[[1185,1,1,84,85]]]],[23207,23240,23244,23254,23315,23858,24968,26734,26736,27294,27372,27554,27794,27947,27996,28012,28013,28016,28017,28025,28027,28028,28031,28033,28035,28044,28064,28068,28081,28084,28086,28087,28088,28126,28183,28185,28186,28191,28192,28193,28194,28198,28297,28393,28850,28898,28905,28912,28965,28966,29004,29102,29108,29123,29167,29296,29313,29351,29372,29427,29430,29799,29849,29869,29878,29928,29972,30043,30066,30179,30205,30223,30286,30316,30337,30423,30438,30480,30505,30521,30535,30579,30586,30589,31028]]],["+",[3,3,[[39,1,1,0,1,[[933,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[23244,27794,30438]]],["righteousness",[89,82,[[39,5,5,0,5,[[931,1,1,0,1],[933,2,2,1,3],[934,1,1,3,4],[949,1,1,4,5]]],[41,1,1,5,6,[[973,1,1,5,6]]],[42,2,2,6,8,[[1012,2,2,6,8]]],[43,3,3,8,11,[[1027,1,1,8,9],[1030,1,1,9,10],[1034,1,1,10,11]]],[44,36,30,11,41,[[1046,1,1,11,12],[1048,5,5,12,17],[1049,8,7,17,24],[1050,2,2,24,26],[1051,5,5,26,31],[1053,1,1,31,32],[1054,6,3,32,35],[1055,7,5,35,40],[1059,1,1,40,41]]],[45,1,1,41,42,[[1062,1,1,41,42]]],[46,7,7,42,49,[[1080,1,1,42,43],[1082,1,1,43,44],[1083,2,2,44,46],[1086,2,2,46,48],[1088,1,1,48,49]]],[47,4,4,49,53,[[1092,1,1,49,50],[1093,2,2,50,52],[1095,1,1,52,53]]],[48,3,3,53,56,[[1100,1,1,53,54],[1101,1,1,54,55],[1102,1,1,55,56]]],[49,4,3,56,59,[[1103,1,1,56,57],[1105,3,2,57,59]]],[53,1,1,59,60,[[1124,1,1,59,60]]],[54,3,3,60,63,[[1126,1,1,60,61],[1127,1,1,61,62],[1128,1,1,62,63]]],[55,1,1,63,64,[[1131,1,1,63,64]]],[57,6,6,64,70,[[1133,1,1,64,65],[1137,1,1,65,66],[1139,1,1,66,67],[1143,2,2,67,69],[1144,1,1,69,70]]],[58,3,3,70,73,[[1146,1,1,70,71],[1147,1,1,71,72],[1148,1,1,72,73]]],[59,1,1,73,74,[[1152,1,1,73,74]]],[60,4,4,74,78,[[1156,1,1,74,75],[1157,2,2,75,77],[1158,1,1,77,78]]],[61,3,3,78,81,[[1160,1,1,78,79],[1161,2,2,79,81]]],[65,1,1,81,82,[[1185,1,1,81,82]]]],[23207,23240,23254,23315,23858,24968,26734,26736,27294,27372,27554,27947,27996,28012,28013,28016,28017,28025,28027,28028,28031,28033,28035,28044,28064,28068,28081,28084,28086,28087,28088,28126,28183,28185,28186,28191,28192,28193,28194,28198,28297,28393,28850,28898,28905,28912,28965,28966,29004,29102,29108,29123,29167,29296,29313,29351,29372,29427,29430,29799,29849,29869,29878,29928,29972,30043,30066,30179,30205,30223,30286,30316,30337,30423,30480,30505,30521,30535,30579,30586,30589,31028]]]]},{"k":"G1344","v":[["*",[40,36,[[39,2,2,0,2,[[939,1,1,0,1],[940,1,1,1,2]]],[41,5,5,2,7,[[979,2,2,2,4],[982,1,1,4,5],[988,1,1,5,6],[990,1,1,6,7]]],[43,2,1,7,8,[[1030,2,1,7,8]]],[44,15,14,8,22,[[1047,1,1,8,9],[1048,6,6,9,15],[1049,2,2,15,17],[1050,2,2,17,19],[1051,1,1,19,20],[1053,3,2,20,22]]],[45,2,2,22,24,[[1065,1,1,22,23],[1067,1,1,23,24]]],[47,8,6,24,30,[[1092,4,2,24,26],[1093,3,3,26,29],[1095,1,1,29,30]]],[53,1,1,30,31,[[1121,1,1,30,31]]],[55,1,1,31,32,[[1131,1,1,31,32]]],[58,3,3,32,35,[[1147,3,3,32,35]]],[65,1,1,35,36,[[1188,1,1,35,36]]]],[23478,23526,25224,25230,25392,25635,25702,27401,27975,27995,28011,28015,28017,28019,28021,28024,28027,28048,28056,28075,28146,28149,28437,28478,29097,29098,29110,29113,29126,29166,29747,29930,30314,30317,30318,31091]]],["+",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[27995]]],["freed",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28075]]],["justified",[30,26,[[39,2,2,0,2,[[939,1,1,0,1],[940,1,1,1,2]]],[41,3,3,2,5,[[979,2,2,2,4],[990,1,1,4,5]]],[43,2,1,5,6,[[1030,2,1,5,6]]],[44,9,8,6,14,[[1047,1,1,6,7],[1048,3,3,7,10],[1049,1,1,10,11],[1050,2,2,11,13],[1053,2,1,13,14]]],[45,2,2,14,16,[[1065,1,1,14,15],[1067,1,1,15,16]]],[47,7,5,16,21,[[1092,4,2,16,18],[1093,2,2,18,20],[1095,1,1,20,21]]],[53,1,1,21,22,[[1121,1,1,21,22]]],[55,1,1,22,23,[[1131,1,1,22,23]]],[58,3,3,23,26,[[1147,3,3,23,26]]]],[23478,23526,25224,25230,25702,27401,27975,28011,28015,28019,28024,28048,28056,28146,28437,28478,29097,29098,29113,29126,29166,29747,29930,30314,30317,30318]]],["justifier",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28017]]],["justifieth",[2,2,[[44,2,2,0,2,[[1049,1,1,0,1],[1053,1,1,1,2]]]],[28027,28149]]],["justify",[4,4,[[41,2,2,0,2,[[982,1,1,0,1],[988,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[47,1,1,3,4,[[1093,1,1,3,4]]]],[25392,25635,28021,29110]]],["righteous",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31091]]]]},{"k":"G1345","v":[["*",[10,10,[[41,1,1,0,1,[[973,1,1,0,1]]],[44,5,5,1,6,[[1046,1,1,1,2],[1047,1,1,2,3],[1050,2,2,3,5],[1053,1,1,5,6]]],[57,2,2,6,8,[[1141,2,2,6,8]]],[65,2,2,8,10,[[1181,1,1,8,9],[1185,1,1,9,10]]]],[24899,27962,27988,28063,28065,28120,30106,30115,30950,31025]]],["judgment",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27962]]],["judgments",[1,1,[[65,1,1,0,1,[[1181,1,1,0,1]]]],[30950]]],["justification",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28063]]],["ordinances",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[57,2,2,1,3,[[1141,2,2,1,3]]]],[24899,30106,30115]]],["righteousness",[4,4,[[44,3,3,0,3,[[1047,1,1,0,1],[1050,1,1,1,2],[1053,1,1,2,3]]],[65,1,1,3,4,[[1185,1,1,3,4]]]],[27988,28065,28120,31025]]]]},{"k":"G1346","v":[["*",[5,5,[[41,1,1,0,1,[[995,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]],[55,1,1,3,4,[[1130,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[25976,28752,29580,29920,30422]]],["+",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29920]]],["justly",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]]],[25976,29580]]],["righteously",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30422]]],["righteousness",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28752]]]]},{"k":"G1347","v":[["justification",[2,2,[[44,2,2,0,2,[[1049,1,1,0,1],[1050,1,1,1,2]]]],[28047,28065]]]]},{"k":"G1348","v":[["judge",[3,3,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,2,2,1,3,[[1024,2,2,1,3]]]],[25473,27143,27151]]]]},{"k":"G1349","v":[["*",[4,4,[[43,2,2,0,2,[[1042,1,1,0,1],[1045,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[27811,27903,29658,30679]]],["+",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29658]]],["judgment",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27811]]],["vengeance",[2,2,[[43,1,1,0,1,[[1045,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[27903,30679]]]]},{"k":"G1350","v":[["*",[12,11,[[39,2,2,0,2,[[932,2,2,0,2]]],[40,2,2,2,4,[[957,2,2,2,4]]],[41,4,4,4,8,[[977,4,4,4,8]]],[42,4,3,8,11,[[1017,4,3,8,11]]]],[23229,23230,24233,24234,25109,25111,25112,25113,26904,26906,26909]]],["net",[6,5,[[41,2,2,0,2,[[977,2,2,0,2]]],[42,4,3,2,5,[[1017,4,3,2,5]]]],[25112,25113,26904,26906,26909]]],["nets",[6,6,[[39,2,2,0,2,[[932,2,2,0,2]]],[40,2,2,2,4,[[957,2,2,2,4]]],[41,2,2,4,6,[[977,2,2,4,6]]]],[23229,23230,24233,24234,25109,25111]]]]},{"k":"G1351","v":[["doubletongued",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29739]]]]},{"k":"G1352","v":[["*",[53,52,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,2,2,1,3,[[973,1,1,1,2],[979,1,1,2,3]]],[43,10,10,3,13,[[1027,1,1,3,4],[1030,1,1,4,5],[1032,1,1,5,6],[1037,2,2,6,8],[1041,1,1,8,9],[1042,1,1,9,10],[1043,1,1,10,11],[1044,2,2,11,13]]],[44,6,6,13,19,[[1046,1,1,13,14],[1047,1,1,14,15],[1049,1,1,15,16],[1058,1,1,16,17],[1060,2,2,17,19]]],[45,1,1,19,20,[[1073,1,1,19,20]]],[46,7,6,20,26,[[1079,1,1,20,21],[1081,3,2,21,23],[1082,1,1,23,24],[1083,1,1,24,25],[1089,1,1,25,26]]],[48,5,5,26,31,[[1098,1,1,26,27],[1099,1,1,27,28],[1100,2,2,28,30],[1101,1,1,30,31]]],[49,1,1,31,32,[[1104,1,1,31,32]]],[51,3,3,32,35,[[1112,1,1,32,33],[1113,1,1,33,34],[1115,1,1,34,35]]],[56,1,1,35,36,[[1132,1,1,35,36]]],[57,9,9,36,45,[[1135,2,2,36,38],[1138,1,1,38,39],[1142,1,1,39,40],[1143,2,2,40,42],[1144,2,2,42,44],[1145,1,1,44,45]]],[58,2,2,45,47,[[1146,1,1,45,46],[1149,1,1,46,47]]],[59,2,2,47,49,[[1151,1,1,47,48],[1152,1,1,48,49]]],[60,3,3,49,52,[[1156,2,2,49,51],[1158,1,1,51,52]]]],[24137,24928,25202,27288,27397,27461,27652,27657,27795,27822,27826,27880,27889,27954,27963,28044,28271,28310,28325,28637,28832,28872,28875,28886,28915,29032,29240,29264,29280,29297,29318,29400,29588,29591,29632,29946,30002,30005,30045,30138,30184,30188,30224,30240,30253,30287,30343,30387,30405,30489,30491,30536]]],["+",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27288]]],["Therefore",[5,5,[[43,1,1,0,1,[[1037,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]],[46,1,1,2,3,[[1089,1,1,2,3]]],[57,2,2,3,5,[[1138,1,1,3,4],[1143,1,1,4,5]]]],[27657,27963,29032,30045,30184]]],["Wherefore",[38,38,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[43,6,6,2,8,[[1030,1,1,2,3],[1032,1,1,3,4],[1037,1,1,4,5],[1042,1,1,5,6],[1044,2,2,6,8]]],[44,3,3,8,11,[[1046,1,1,8,9],[1058,1,1,9,10],[1060,1,1,10,11]]],[45,1,1,11,12,[[1073,1,1,11,12]]],[46,3,3,12,15,[[1079,1,1,12,13],[1082,1,1,13,14],[1083,1,1,14,15]]],[48,5,5,15,20,[[1098,1,1,15,16],[1099,1,1,16,17],[1100,2,2,17,19],[1101,1,1,19,20]]],[49,1,1,20,21,[[1104,1,1,20,21]]],[51,3,3,21,24,[[1112,1,1,21,22],[1113,1,1,22,23],[1115,1,1,23,24]]],[56,1,1,24,25,[[1132,1,1,24,25]]],[57,6,6,25,31,[[1135,2,2,25,27],[1142,1,1,27,28],[1144,2,2,28,30],[1145,1,1,30,31]]],[58,2,2,31,33,[[1146,1,1,31,32],[1149,1,1,32,33]]],[59,2,2,33,35,[[1151,1,1,33,34],[1152,1,1,34,35]]],[60,3,3,35,38,[[1156,2,2,35,37],[1158,1,1,37,38]]]],[24137,25202,27397,27461,27652,27822,27880,27889,27954,28271,28310,28637,28832,28886,28915,29240,29264,29280,29297,29318,29400,29588,29591,29632,29946,30002,30005,30138,30224,30240,30253,30287,30343,30387,30405,30489,30491,30536]]],["cause",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]]],[28325,28875]]],["therefore",[4,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[44,1,1,1,2,[[1049,1,1,1,2]]],[46,2,1,2,3,[[1081,2,1,2,3]]]],[24928,28044,28872]]],["wherefore",[3,3,[[43,2,2,0,2,[[1041,1,1,0,1],[1043,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[27795,27826,30188]]]]},{"k":"G1353","v":[["*",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]]],[25246,27524]]],["through",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27524]]],["throughout",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25246]]]]},{"k":"G1354","v":[["Dionysius",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27557]]]]},{"k":"G1355","v":[["Wherefore",[3,3,[[45,3,3,0,3,[[1069,1,1,0,1],[1071,1,1,1,2],[1075,1,1,2,3]]]],[28540,28581,28691]]]]},{"k":"G1356","v":[["Jupiter",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27620]]]]},{"k":"G1357","v":[["reformation",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30115]]]]},{"k":"G1358","v":[["*",[4,4,[[39,3,3,0,3,[[934,2,2,0,2],[952,1,1,2,3]]],[41,1,1,3,4,[[984,1,1,3,4]]]],[23301,23302,24000,25498]]],["through",[3,3,[[39,2,2,0,2,[[934,2,2,0,2]]],[41,1,1,2,3,[[984,1,1,2,3]]]],[23301,23302,25498]]],["up",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[24000]]]]},{"k":"G1359","v":[["Pollux",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27910]]]]},{"k":"G1360","v":[["*",[22,21,[[41,3,3,0,3,[[973,1,1,0,1],[974,1,1,1,2],[993,1,1,2,3]]],[43,5,4,3,7,[[1027,1,1,3,4],[1034,1,1,4,5],[1035,2,1,5,6],[1039,1,1,6,7]]],[44,4,4,7,11,[[1046,2,2,7,9],[1048,1,1,9,10],[1053,1,1,10,11]]],[45,1,1,11,12,[[1076,1,1,11,12]]],[47,1,1,12,13,[[1092,1,1,12,13]]],[49,1,1,13,14,[[1104,1,1,13,14]]],[51,2,2,14,16,[[1112,1,1,14,15],[1114,1,1,15,16]]],[57,2,2,16,18,[[1143,2,2,16,18]]],[58,1,1,18,19,[[1149,1,1,18,19]]],[59,2,2,19,21,[[1151,2,2,19,21]]]],[24906,24980,25854,27279,27554,27567,27722,27949,27951,28011,28123,28727,29097,29417,29578,29609,30177,30195,30340,30390,30398]]],["Because",[4,4,[[43,1,1,0,1,[[1034,1,1,0,1]]],[44,2,2,1,3,[[1046,1,1,1,2],[1053,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[27554,27949,28123,30390]]],["For",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[27567,30398]]],["Therefore",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28011]]],["because",[7,7,[[41,1,1,0,1,[[974,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]],[57,2,2,4,6,[[1143,2,2,4,6]]],[58,1,1,6,7,[[1149,1,1,6,7]]]],[24980,28727,29417,29578,30177,30195,30340]]],["for",[6,6,[[41,2,2,0,2,[[973,1,1,0,1],[993,1,1,1,2]]],[43,3,3,2,5,[[1027,1,1,2,3],[1035,1,1,3,4],[1039,1,1,4,5]]],[47,1,1,5,6,[[1092,1,1,5,6]]]],[24906,25854,27279,27567,27722,29097]]],["that",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[51,1,1,1,2,[[1114,1,1,1,2]]]],[27951,29609]]]]},{"k":"G1361","v":[["Diotrephes",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30667]]]]},{"k":"G1362","v":[["*",[4,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]],[65,2,1,2,3,[[1184,2,1,2,3]]]],[23933,29780,30999]]],["double",[3,2,[[53,1,1,0,1,[[1123,1,1,0,1]]],[65,2,1,1,2,[[1184,2,1,1,2]]]],[29780,30999]]],["more",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23933]]]]},{"k":"G1363","v":[["double",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30999]]]]},{"k":"G1364","v":[["*",[6,6,[[40,2,2,0,2,[[970,2,2,0,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]],[51,1,1,4,5,[[1112,1,1,4,5]]],[64,1,1,5,6,[[1166,1,1,5,6]]]],[24784,24826,25700,29458,29588,30684]]],["+",[2,2,[[49,1,1,0,1,[[1106,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]]],[29458,29588]]],["twice",[4,4,[[40,2,2,0,2,[[970,2,2,0,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[24784,24826,25700,30684]]]]},{"k":"G1365","v":[["*",[2,2,[[39,2,2,0,2,[[942,1,1,0,1],[956,1,1,1,2]]]],[23628,24212]]],["doubt",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23628]]],["doubted",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24212]]]]},{"k":"G1366","v":[["*",[3,3,[[57,1,1,0,1,[[1136,1,1,0,1]]],[65,2,2,1,3,[[1167,1,1,1,2],[1168,1,1,2,3]]]],[30026,30713,30729]]],["edges",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30729]]],["twoedged",[2,2,[[57,1,1,0,1,[[1136,1,1,0,1]]],[65,1,1,1,2,[[1167,1,1,1,2]]]],[30026,30713]]]]},{"k":"G1367","v":[["thousand",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24377]]]]},{"k":"G1368","v":[["strain",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23942]]]]},{"k":"G1369","v":[["+",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23452]]]]},{"k":"G1370","v":[["*",[3,3,[[44,1,1,0,1,[[1061,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]]],[28353,28413,29182]]],["divisions",[2,2,[[44,1,1,0,1,[[1061,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]]],[28353,28413]]],["seditions",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29182]]]]},{"k":"G1371","v":[["+",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[24008,25505]]]]},{"k":"G1372","v":[["*",[16,16,[[39,5,5,0,5,[[933,1,1,0,1],[953,4,4,1,5]]],[42,6,6,5,11,[[1000,3,3,5,8],[1002,1,1,8,9],[1003,1,1,9,10],[1015,1,1,10,11]]],[44,1,1,11,12,[[1057,1,1,11,12]]],[45,1,1,12,13,[[1065,1,1,12,13]]],[65,3,3,13,16,[[1173,1,1,13,14],[1187,1,1,14,15],[1188,1,1,15,16]]]],[23240,24043,24045,24050,24052,26169,26170,26171,26292,26365,26853,28265,28444,30826,31059,31097]]],["athirst",[3,3,[[39,1,1,0,1,[[953,1,1,0,1]]],[65,2,2,1,3,[[1187,1,1,1,2],[1188,1,1,2,3]]]],[24052,31059,31097]]],["thirst",[10,10,[[39,1,1,0,1,[[933,1,1,0,1]]],[42,6,6,1,7,[[1000,3,3,1,4],[1002,1,1,4,5],[1003,1,1,5,6],[1015,1,1,6,7]]],[44,1,1,7,8,[[1057,1,1,7,8]]],[45,1,1,8,9,[[1065,1,1,8,9]]],[65,1,1,9,10,[[1173,1,1,9,10]]]],[23240,26169,26170,26171,26292,26365,26853,28265,28444,30826]]],["thirsty",[3,3,[[39,3,3,0,3,[[953,3,3,0,3]]]],[24043,24045,24050]]]]},{"k":"G1373","v":[["thirst",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29016]]]]},{"k":"G1374","v":[["minded",[2,2,[[58,2,2,0,2,[[1146,1,1,0,1],[1149,1,1,1,2]]]],[30274,30345]]]]},{"k":"G1375","v":[["*",[10,9,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,2,2,1,3,[[960,1,1,1,2],[966,1,1,2,3]]],[43,2,2,3,5,[[1025,1,1,3,4],[1030,1,1,4,5]]],[44,1,1,5,6,[[1053,1,1,5,6]]],[46,1,1,6,7,[[1089,1,1,6,7]]],[52,1,1,7,8,[[1116,1,1,7,8]]],[54,2,1,8,9,[[1127,2,1,8,9]]]],[23560,24340,24618,27177,27412,28151,29032,29653,29864]]],["Persecutions",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29864]]],["persecution",[5,5,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[43,2,2,2,4,[[1025,1,1,2,3],[1030,1,1,3,4]]],[44,1,1,4,5,[[1053,1,1,4,5]]]],[23560,24340,27177,27412,28151]]],["persecutions",[4,4,[[40,1,1,0,1,[[966,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]],[54,1,1,3,4,[[1127,1,1,3,4]]]],[24618,29032,29653,29864]]]]},{"k":"G1376","v":[["persecutor",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29709]]]]},{"k":"G1377","v":[["*",[44,43,[[39,6,6,0,6,[[933,4,4,0,4],[938,1,1,4,5],[951,1,1,5,6]]],[41,2,2,6,8,[[989,1,1,6,7],[993,1,1,7,8]]],[42,3,2,8,10,[[1001,1,1,8,9],[1011,2,1,9,10]]],[43,9,9,10,19,[[1024,1,1,10,11],[1026,2,2,11,13],[1039,3,3,13,16],[1043,3,3,16,19]]],[44,5,5,19,24,[[1054,2,2,19,21],[1057,2,2,21,23],[1059,1,1,23,24]]],[45,3,3,24,27,[[1065,1,1,24,25],[1075,1,1,25,26],[1076,1,1,26,27]]],[46,1,1,27,28,[[1081,1,1,27,28]]],[47,5,5,28,33,[[1091,2,2,28,30],[1094,1,1,30,31],[1095,1,1,31,32],[1096,1,1,32,33]]],[49,3,3,33,36,[[1105,3,3,33,36]]],[51,1,1,36,37,[[1115,1,1,36,37]]],[53,1,1,37,38,[[1124,1,1,37,38]]],[54,2,2,38,40,[[1126,1,1,38,39],[1127,1,1,39,40]]],[57,1,1,40,41,[[1144,1,1,40,41]]],[59,1,1,41,42,[[1153,1,1,41,42]]],[65,1,1,42,43,[[1178,1,1,42,43]]]],[23244,23245,23246,23278,23440,23952,25674,25838,26226,26719,27168,27220,27221,27708,27711,27712,27834,27837,27838,28185,28186,28258,28259,28299,28445,28679,28727,28868,29070,29080,29160,29173,29200,29427,29433,29435,29636,29799,29849,29865,30226,30435,30904]]],["+",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28299]]],["Follow",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30226]]],["Persecuted",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28868]]],["after",[3,3,[[45,1,1,0,1,[[1075,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]]],[28679,29433,29799]]],["ensue",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30435]]],["follow",[3,3,[[41,1,1,0,1,[[989,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]]],[25674,29636,29849]]],["followed",[2,2,[[44,2,2,0,2,[[1054,2,2,0,2]]]],[28185,28186]]],["persecute",[8,8,[[39,4,4,0,4,[[933,2,2,0,2],[938,1,1,2,3],[951,1,1,3,4]]],[41,1,1,4,5,[[993,1,1,4,5]]],[42,2,2,5,7,[[1001,1,1,5,6],[1011,1,1,6,7]]],[44,1,1,7,8,[[1057,1,1,7,8]]]],[23245,23278,23440,23952,25838,26226,26719,28259]]],["persecuted",[12,12,[[39,2,2,0,2,[[933,2,2,0,2]]],[42,1,1,2,3,[[1011,1,1,2,3]]],[43,3,3,3,6,[[1024,1,1,3,4],[1039,1,1,4,5],[1043,1,1,5,6]]],[45,2,2,6,8,[[1065,1,1,6,7],[1076,1,1,7,8]]],[47,3,3,8,11,[[1091,2,2,8,10],[1094,1,1,10,11]]],[65,1,1,11,12,[[1178,1,1,11,12]]]],[23244,23246,26719,27168,27708,27834,28445,28727,29070,29080,29160,30904]]],["persecutest",[6,6,[[43,6,6,0,6,[[1026,2,2,0,2],[1039,2,2,2,4],[1043,2,2,4,6]]]],[27220,27221,27711,27712,27837,27838]]],["persecuting",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29427]]],["persecution",[3,3,[[47,2,2,0,2,[[1095,1,1,0,1],[1096,1,1,1,2]]],[54,1,1,2,3,[[1127,1,1,2,3]]]],[29173,29200,29865]]],["press",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29435]]],["to",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28258]]]]},{"k":"G1378","v":[["*",[5,5,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,2,2,1,3,[[1033,1,1,1,2],[1034,1,1,2,3]]],[48,1,1,3,4,[[1098,1,1,3,4]]],[50,1,1,4,5,[[1108,1,1,4,5]]]],[24974,27487,27530,29244,29508]]],["decree",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24974]]],["decrees",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1034,1,1,1,2]]]],[27487,27530]]],["ordinances",[2,2,[[48,1,1,0,1,[[1098,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[29244,29508]]]]},{"k":"G1379","v":[["ordinances",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29514]]]]},{"k":"G1380","v":[["*",[63,62,[[39,10,10,0,10,[[931,1,1,0,1],[934,1,1,1,2],[945,1,1,2,3],[946,1,1,3,4],[949,1,1,4,5],[950,2,2,5,7],[952,1,1,7,8],[954,2,2,8,10]]],[40,2,2,10,12,[[962,1,1,10,11],[966,1,1,11,12]]],[41,11,11,12,23,[[973,1,1,12,13],[980,1,1,13,14],[982,1,1,14,15],[984,2,2,15,17],[985,2,2,17,19],[989,1,1,19,20],[991,1,1,20,21],[994,1,1,21,22],[996,1,1,22,23]]],[42,7,7,23,30,[[1001,2,2,23,25],[1007,2,2,25,27],[1009,1,1,27,28],[1012,1,1,28,29],[1016,1,1,29,30]]],[43,9,9,30,39,[[1029,1,1,30,31],[1032,4,4,31,35],[1034,1,1,35,36],[1042,1,1,36,37],[1043,1,1,37,38],[1044,1,1,38,39]]],[45,9,9,39,48,[[1064,1,1,39,40],[1065,1,1,40,41],[1068,1,1,41,42],[1069,1,1,42,43],[1071,1,1,43,44],[1072,1,1,44,45],[1073,2,2,45,47],[1075,1,1,47,48]]],[46,3,3,48,51,[[1087,1,1,48,49],[1088,1,1,49,50],[1089,1,1,50,51]]],[47,5,4,51,55,[[1092,4,3,51,54],[1096,1,1,54,55]]],[49,1,1,55,56,[[1105,1,1,55,56]]],[57,4,4,56,60,[[1136,1,1,56,57],[1142,1,1,57,58],[1144,2,2,58,60]]],[58,2,2,60,62,[[1146,1,1,60,61],[1149,1,1,61,62]]]],[23201,23289,23725,23739,23854,23889,23914,24001,24107,24120,24456,24630,24896,25263,25399,25499,25510,25520,25522,25660,25742,25888,26028,26249,26255,26536,26579,26659,26728,26882,27346,27464,27467,27470,27476,27541,27823,27832,27868,28428,28442,28527,28529,28579,28616,28656,28657,28715,28980,29005,29041,29083,29087,29090,29191,29425,30015,30162,30222,30223,30292,30342]]],["Suppose",[2,2,[[41,2,2,0,2,[[984,1,1,0,1],[985,1,1,1,2]]]],[25510,25520]]],["Thinkest",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24107]]],["accounted",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24630,25888]]],["good",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,2,2,1,3,[[1032,2,2,1,3]]]],[24896,27467,27470]]],["himself",[2,2,[[45,1,1,0,1,[[1075,1,1,0,1]]],[47,1,1,1,2,[[1096,1,1,1,2]]]],[28715,29191]]],["pleased",[2,2,[[43,2,2,0,2,[[1032,2,2,0,2]]]],[27464,27476]]],["pleasure",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30222]]],["reputation",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29083]]],["seem",[5,5,[[45,2,2,0,2,[[1072,1,1,0,1],[1073,1,1,1,2]]],[46,1,1,2,3,[[1087,1,1,2,3]]],[57,1,1,3,4,[[1136,1,1,3,4]]],[58,1,1,4,5,[[1146,1,1,4,5]]]],[28616,28656,28980,30015,30292]]],["seemed",[3,2,[[47,3,2,0,2,[[1092,3,2,0,2]]]],[29087,29090]]],["seemeth",[5,5,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,2,2,1,3,[[1034,1,1,1,2],[1042,1,1,2,3]]],[45,1,1,3,4,[[1064,1,1,3,4]]],[57,1,1,4,5,[[1144,1,1,4,5]]]],[25263,27541,27823,28428,30223]]],["suppose",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30162]]],["supposed",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]]],[24456,26028]]],["supposing",[2,2,[[42,1,1,0,1,[[1016,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[26882,27868]]],["think",[20,20,[[39,7,7,0,7,[[931,1,1,0,1],[934,1,1,1,2],[946,1,1,2,3],[949,1,1,3,4],[950,1,1,4,5],[952,1,1,5,6],[954,1,1,6,7]]],[41,2,2,7,9,[[984,1,1,7,8],[985,1,1,8,9]]],[42,4,4,9,13,[[1001,2,2,9,11],[1007,1,1,11,12],[1012,1,1,12,13]]],[45,4,4,13,17,[[1065,1,1,13,14],[1068,1,1,14,15],[1069,1,1,15,16],[1073,1,1,16,17]]],[46,2,2,17,19,[[1088,1,1,17,18],[1089,1,1,18,19]]],[58,1,1,19,20,[[1149,1,1,19,20]]]],[23201,23289,23739,23854,23914,24001,24120,25499,25522,26249,26255,26579,26728,28442,28527,28529,28657,29005,29041,30342]]],["thinkest",[3,3,[[39,2,2,0,2,[[945,1,1,0,1],[950,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]]],[23725,23889,25399]]],["thinketh",[2,2,[[45,1,1,0,1,[[1071,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[28579,29425]]],["thought",[5,5,[[41,1,1,0,1,[[991,1,1,0,1]]],[42,2,2,1,3,[[1007,1,1,1,2],[1009,1,1,2,3]]],[43,2,2,3,5,[[1029,1,1,3,4],[1043,1,1,4,5]]]],[25742,26536,26659,27346,27832]]],["trow",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25660]]]]},{"k":"G1381","v":[["*",[23,21,[[41,3,2,0,2,[[984,2,1,0,1],[986,1,1,1,2]]],[44,4,4,2,6,[[1046,1,1,2,3],[1047,1,1,3,4],[1057,1,1,4,5],[1059,1,1,5,6]]],[45,3,3,6,9,[[1064,1,1,6,7],[1072,1,1,7,8],[1077,1,1,8,9]]],[46,3,3,9,12,[[1085,2,2,9,11],[1090,1,1,11,12]]],[47,1,1,12,13,[[1096,1,1,12,13]]],[48,1,1,13,14,[[1101,1,1,13,14]]],[49,1,1,14,15,[[1103,1,1,14,15]]],[51,3,2,15,17,[[1112,2,1,15,16],[1115,1,1,16,17]]],[53,1,1,17,18,[[1121,1,1,17,18]]],[57,1,1,18,19,[[1135,1,1,18,19]]],[59,1,1,19,20,[[1151,1,1,19,20]]],[61,1,1,20,21,[[1162,1,1,20,21]]]],[25515,25572,27958,27980,28247,28302,28423,28628,28779,28940,28954,29048,29192,29314,29371,29574,29642,29741,30004,30381,30604]]],["+",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28954]]],["Prove",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29642]]],["Proving",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29314]]],["allowed",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29574]]],["alloweth",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28302]]],["approve",[2,2,[[45,1,1,0,1,[[1077,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[28779,29371]]],["approvest",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27980]]],["discern",[2,1,[[41,2,1,0,1,[[984,2,1,0,1]]]],[25515]]],["examine",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28628]]],["like",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27958]]],["prove",[5,5,[[41,1,1,0,1,[[986,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]],[46,2,2,2,4,[[1085,1,1,2,3],[1090,1,1,3,4]]],[47,1,1,4,5,[[1096,1,1,4,5]]]],[25572,28247,28940,29048,29192]]],["proved",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[57,1,1,1,2,[[1135,1,1,1,2]]]],[29741,30004]]],["tried",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30381]]],["trieth",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29574]]],["try",[2,2,[[45,1,1,0,1,[[1064,1,1,0,1]]],[61,1,1,1,2,[[1162,1,1,1,2]]]],[28423,30604]]]]},{"k":"G1382","v":[["*",[7,6,[[44,2,1,0,1,[[1050,2,1,0,1]]],[46,4,4,1,5,[[1079,1,1,1,2],[1085,1,1,2,3],[1086,1,1,3,4],[1090,1,1,4,5]]],[49,1,1,5,6,[[1104,1,1,5,6]]]],[28051,28833,28934,28969,29046,29413]]],["experience",[2,1,[[44,2,1,0,1,[[1050,2,1,0,1]]]],[28051]]],["experiment",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28969]]],["proof",[3,3,[[46,2,2,0,2,[[1079,1,1,0,1],[1090,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[28833,29046,29413]]],["trial",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28934]]]]},{"k":"G1383","v":[["*",[2,2,[[58,1,1,0,1,[[1146,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[30269,30381]]],["trial",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30381]]],["trying",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30269]]]]},{"k":"G1384","v":[["*",[7,7,[[44,2,2,0,2,[[1059,1,1,0,1],[1061,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[46,2,2,3,5,[[1087,1,1,3,4],[1090,1,1,4,5]]],[54,1,1,5,6,[[1126,1,1,5,6]]],[58,1,1,6,7,[[1146,1,1,6,7]]]],[28298,28346,28619,28989,29050,29842,30278]]],["approved",[6,6,[[44,2,2,0,2,[[1059,1,1,0,1],[1061,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[46,2,2,3,5,[[1087,1,1,3,4],[1090,1,1,4,5]]],[54,1,1,5,6,[[1126,1,1,5,6]]]],[28298,28346,28619,28989,29050,29842]]],["tried",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30278]]]]},{"k":"G1385","v":[["beam",[6,5,[[39,3,3,0,3,[[935,3,3,0,3]]],[41,3,2,3,5,[[978,3,2,3,5]]]],[23319,23320,23321,25187,25188]]]]},{"k":"G1386","v":[["deceitful",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29002]]]]},{"k":"G1387","v":[["deceit",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28004]]]]},{"k":"G1388","v":[["*",[12,12,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[963,1,1,1,2],[970,1,1,2,3]]],[42,1,1,3,4,[[997,1,1,3,4]]],[43,1,1,4,5,[[1030,1,1,4,5]]],[44,1,1,5,6,[[1046,1,1,5,6]]],[46,1,1,6,7,[[1089,1,1,6,7]]],[51,1,1,7,8,[[1112,1,1,7,8]]],[59,3,3,8,11,[[1152,2,2,8,10],[1153,1,1,10,11]]],[65,1,1,11,12,[[1180,1,1,11,12]]]],[24058,24485,24755,26091,27372,27959,29038,29573,30400,30421,30434,30931]]],["craft",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24755]]],["deceit",[2,2,[[40,1,1,0,1,[[963,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[24485,27959]]],["guile",[7,7,[[42,1,1,0,1,[[997,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]],[59,3,3,3,6,[[1152,2,2,3,5],[1153,1,1,5,6]]],[65,1,1,6,7,[[1180,1,1,6,7]]]],[26091,29038,29573,30400,30421,30434,30931]]],["subtilty",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]]],[24058,27372]]]]},{"k":"G1389","v":[["+",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28861]]]]},{"k":"G1390","v":[["*",[4,4,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]]],[23327,25418,29280,29459]]],["gift",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29459]]],["gifts",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]]],[23327,25418,29280]]]]},{"k":"G1391","v":[["*",[168,151,[[39,8,7,0,7,[[932,1,1,0,1],[934,2,2,1,3],[944,1,1,3,4],[947,1,1,4,5],[952,1,1,5,6],[953,2,1,6,7]]],[40,3,3,7,10,[[964,1,1,7,8],[966,1,1,8,9],[969,1,1,9,10]]],[41,13,13,10,23,[[974,3,3,10,13],[976,1,1,13,14],[981,3,3,14,17],[984,1,1,17,18],[986,1,1,18,19],[989,1,1,19,20],[991,1,1,20,21],[993,1,1,21,22],[996,1,1,22,23]]],[42,19,15,23,38,[[997,2,1,23,24],[998,1,1,24,25],[1001,3,2,25,27],[1003,2,1,27,28],[1004,2,2,28,30],[1005,1,1,30,31],[1007,2,2,31,33],[1008,3,2,33,35],[1013,3,3,35,38]]],[43,4,4,38,42,[[1024,2,2,38,40],[1029,1,1,40,41],[1039,1,1,41,42]]],[44,16,15,42,57,[[1046,1,1,42,43],[1047,2,2,43,45],[1048,2,2,45,47],[1049,1,1,47,48],[1050,1,1,48,49],[1051,1,1,49,50],[1053,2,2,50,52],[1054,3,2,52,54],[1056,1,1,54,55],[1060,1,1,55,56],[1061,1,1,56,57]]],[45,12,8,57,65,[[1063,2,2,57,59],[1071,1,1,59,60],[1072,3,2,60,62],[1076,6,3,62,65]]],[46,19,14,65,79,[[1078,1,1,65,66],[1080,11,6,66,72],[1081,4,4,72,76],[1083,1,1,76,77],[1085,2,2,77,79]]],[47,1,1,79,80,[[1091,1,1,79,80]]],[48,8,8,80,88,[[1097,5,5,80,85],[1099,3,3,85,88]]],[49,6,6,88,94,[[1103,1,1,88,89],[1104,1,1,89,90],[1105,2,2,90,92],[1106,2,2,92,94]]],[50,4,3,94,97,[[1107,3,2,94,96],[1109,1,1,96,97]]],[51,3,3,97,100,[[1112,3,3,97,100]]],[52,2,2,100,102,[[1116,1,1,100,101],[1117,1,1,101,102]]],[53,3,3,102,105,[[1119,2,2,102,104],[1121,1,1,104,105]]],[54,2,2,105,107,[[1126,1,1,105,106],[1128,1,1,106,107]]],[55,1,1,107,108,[[1130,1,1,107,108]]],[57,7,7,108,115,[[1133,1,1,108,109],[1134,3,3,109,112],[1135,1,1,112,113],[1141,1,1,113,114],[1145,1,1,114,115]]],[58,1,1,115,116,[[1147,1,1,115,116]]],[59,11,11,116,127,[[1151,4,4,116,120],[1154,3,3,120,123],[1155,4,4,123,127]]],[60,5,4,127,131,[[1156,3,2,127,129],[1157,1,1,129,130],[1158,1,1,130,131]]],[64,3,3,131,134,[[1166,3,3,131,134]]],[65,17,17,134,151,[[1167,1,1,134,135],[1170,2,2,135,137],[1171,2,2,137,139],[1173,1,1,139,140],[1177,1,1,140,141],[1180,1,1,141,142],[1181,1,1,142,143],[1182,1,1,143,144],[1184,1,1,144,145],[1185,2,2,145,147],[1187,4,4,147,151]]]],[23217,23295,23311,23699,23790,23987,24039,24538,24625,24743,24982,24987,25005,25069,25327,25332,25333,25486,25563,25669,25769,25853,26017,26058,26106,26251,26254,26346,26431,26435,26464,26527,26563,26621,26623,26764,26781,26783,27118,27171,27360,27715,27953,27969,27972,27998,28014,28042,28049,28072,28134,28137,28159,28178,28245,28310,28363,28401,28402,28598,28607,28615,28758,28759,28761,28820,28848,28849,28850,28851,28852,28859,28863,28865,28874,28876,28906,28951,28955,29062,29212,29218,29220,29223,29224,29264,29267,29272,29372,29402,29440,29442,29461,29462,29476,29492,29521,29576,29582,29590,29658,29675,29707,29713,29747,29837,29888,29921,29966,29984,29986,29987,29998,30110,30262,30294,30381,30385,30395,30398,30457,30459,30460,30466,30469,30475,30476,30482,30496,30510,30540,30680,30696,30697,30703,30777,30779,30791,30792,30822,30885,30933,30954,30963,30994,31018,31024,31064,31076,31077,31079]]],["+",[4,3,[[46,4,3,0,3,[[1080,4,3,0,3]]]],[28848,28849,28852]]],["Glory",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24987]]],["dignities",[2,2,[[60,1,1,0,1,[[1157,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[30510,30680]]],["glorious",[6,6,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]],[50,1,1,3,4,[[1107,1,1,3,4]]],[53,1,1,4,5,[[1119,1,1,4,5]]],[55,1,1,5,6,[[1130,1,1,5,6]]]],[28137,28863,29442,29476,29707,29921]]],["glory",[144,131,[[39,8,7,0,7,[[932,1,1,0,1],[934,2,2,1,3],[944,1,1,3,4],[947,1,1,4,5],[952,1,1,5,6],[953,2,1,6,7]]],[40,3,3,7,10,[[964,1,1,7,8],[966,1,1,8,9],[969,1,1,9,10]]],[41,11,11,10,21,[[974,2,2,10,12],[976,1,1,12,13],[981,3,3,13,16],[984,1,1,16,17],[989,1,1,17,18],[991,1,1,18,19],[993,1,1,19,20],[996,1,1,20,21]]],[42,12,10,21,31,[[997,2,1,21,22],[998,1,1,22,23],[1003,2,1,23,24],[1004,1,1,24,25],[1007,2,2,25,27],[1008,1,1,27,28],[1013,3,3,28,31]]],[43,4,4,31,35,[[1024,2,2,31,33],[1029,1,1,33,34],[1039,1,1,34,35]]],[44,15,14,35,49,[[1046,1,1,35,36],[1047,2,2,36,38],[1048,2,2,38,40],[1049,1,1,40,41],[1050,1,1,41,42],[1051,1,1,42,43],[1053,1,1,43,44],[1054,3,2,44,46],[1056,1,1,46,47],[1060,1,1,47,48],[1061,1,1,48,49]]],[45,12,8,49,57,[[1063,2,2,49,51],[1071,1,1,51,52],[1072,3,2,52,54],[1076,6,3,54,57]]],[46,13,10,57,67,[[1078,1,1,57,58],[1080,7,4,58,62],[1081,3,3,62,65],[1085,2,2,65,67]]],[47,1,1,67,68,[[1091,1,1,67,68]]],[48,8,8,68,76,[[1097,5,5,68,73],[1099,3,3,73,76]]],[49,5,5,76,81,[[1103,1,1,76,77],[1104,1,1,77,78],[1105,1,1,78,79],[1106,2,2,79,81]]],[50,3,2,81,83,[[1107,2,1,81,82],[1109,1,1,82,83]]],[51,3,3,83,86,[[1112,3,3,83,86]]],[52,2,2,86,88,[[1116,1,1,86,87],[1117,1,1,87,88]]],[53,2,2,88,90,[[1119,1,1,88,89],[1121,1,1,89,90]]],[54,2,2,90,92,[[1126,1,1,90,91],[1128,1,1,91,92]]],[57,7,7,92,99,[[1133,1,1,92,93],[1134,3,3,93,96],[1135,1,1,96,97],[1141,1,1,97,98],[1145,1,1,98,99]]],[58,1,1,99,100,[[1147,1,1,99,100]]],[59,10,10,100,110,[[1151,4,4,100,104],[1154,2,2,104,106],[1155,4,4,106,110]]],[60,4,3,110,113,[[1156,3,2,110,112],[1158,1,1,112,113]]],[64,2,2,113,115,[[1166,2,2,113,115]]],[65,16,16,115,131,[[1167,1,1,115,116],[1170,2,2,116,118],[1171,2,2,118,120],[1173,1,1,120,121],[1177,1,1,121,122],[1180,1,1,122,123],[1181,1,1,123,124],[1182,1,1,124,125],[1184,1,1,125,126],[1185,1,1,126,127],[1187,4,4,127,131]]]],[23217,23295,23311,23699,23790,23987,24039,24538,24625,24743,24982,25005,25069,25327,25332,25333,25486,25669,25769,25853,26017,26058,26106,26346,26431,26527,26563,26621,26764,26781,26783,27118,27171,27360,27715,27953,27969,27972,27998,28014,28042,28049,28072,28134,28159,28178,28245,28310,28363,28401,28402,28598,28607,28615,28758,28759,28761,28820,28848,28850,28851,28859,28865,28874,28876,28951,28955,29062,29212,29218,29220,29223,29224,29264,29267,29272,29372,29402,29440,29461,29462,29492,29521,29576,29582,29590,29658,29675,29713,29747,29837,29888,29966,29984,29986,29987,29998,30110,30262,30294,30381,30385,30395,30398,30459,30460,30466,30469,30475,30476,30482,30496,30540,30696,30697,30703,30777,30779,30791,30792,30822,30885,30933,30954,30963,30994,31018,31064,31076,31077,31079]]],["honour",[6,5,[[42,4,3,0,3,[[1001,3,2,0,2],[1004,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]],[65,1,1,4,5,[[1185,1,1,4,5]]]],[26251,26254,26435,28906,31024]]],["praise",[4,3,[[42,3,2,0,2,[[1005,1,1,0,1],[1008,2,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[26464,26623,30457]]],["worship",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25563]]]]},{"k":"G1392","v":[["*",[62,54,[[39,4,4,0,4,[[933,1,1,0,1],[934,1,1,1,2],[937,1,1,2,3],[943,1,1,3,4]]],[40,1,1,4,5,[[958,1,1,4,5]]],[41,9,9,5,14,[[974,1,1,5,6],[976,1,1,6,7],[977,2,2,7,9],[979,1,1,9,10],[985,1,1,10,11],[989,1,1,11,12],[990,1,1,12,13],[995,1,1,13,14]]],[42,23,16,14,30,[[1003,1,1,14,15],[1004,2,1,15,16],[1007,1,1,16,17],[1008,5,3,17,20],[1009,5,2,20,22],[1010,1,1,22,23],[1011,1,1,23,24],[1012,1,1,24,25],[1013,5,4,25,29],[1017,1,1,29,30]]],[43,5,5,30,35,[[1020,1,1,30,31],[1021,1,1,31,32],[1028,1,1,32,33],[1030,1,1,33,34],[1038,1,1,34,35]]],[44,5,5,35,40,[[1046,1,1,35,36],[1053,1,1,36,37],[1056,1,1,37,38],[1060,2,2,38,40]]],[45,2,2,40,42,[[1067,1,1,40,41],[1073,1,1,41,42]]],[46,3,2,42,44,[[1080,2,1,42,43],[1086,1,1,43,44]]],[47,1,1,44,45,[[1091,1,1,44,45]]],[52,1,1,45,46,[[1118,1,1,45,46]]],[57,1,1,46,47,[[1137,1,1,46,47]]],[59,5,5,47,52,[[1151,1,1,47,48],[1152,1,1,48,49],[1154,3,3,49,52]]],[65,2,2,52,54,[[1181,1,1,52,53],[1184,1,1,53,54]]]],[23250,23284,23387,23664,24272,24993,25078,25132,25133,25211,25531,25666,25731,25982,26367,26435,26527,26596,26603,26608,26661,26662,26681,26707,26740,26760,26763,26764,26769,26917,27009,27043,27325,27410,27684,27951,28146,28222,28309,28312,28487,28660,28851,28969,29081,29679,30035,30382,30411,30457,30460,30462,30950,31000]]],["+",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28851]]],["glorified",[34,33,[[39,2,2,0,2,[[937,1,1,0,1],[943,1,1,1,2]]],[40,1,1,2,3,[[958,1,1,2,3]]],[41,6,6,3,9,[[976,1,1,3,4],[977,1,1,4,5],[979,1,1,5,6],[985,1,1,6,7],[989,1,1,7,8],[995,1,1,8,9]]],[42,12,11,9,20,[[1003,1,1,9,10],[1007,1,1,10,11],[1008,3,3,11,14],[1009,3,2,14,16],[1010,1,1,16,17],[1011,1,1,17,18],[1013,2,2,18,20]]],[43,5,5,20,25,[[1020,1,1,20,21],[1021,1,1,21,22],[1028,1,1,22,23],[1030,1,1,23,24],[1038,1,1,24,25]]],[44,2,2,25,27,[[1046,1,1,25,26],[1053,1,1,26,27]]],[47,1,1,27,28,[[1091,1,1,27,28]]],[52,1,1,28,29,[[1118,1,1,28,29]]],[57,1,1,29,30,[[1137,1,1,29,30]]],[59,2,2,30,32,[[1154,2,2,30,32]]],[65,1,1,32,33,[[1184,1,1,32,33]]]],[23387,23664,24272,25078,25133,25211,25531,25666,25982,26367,26527,26596,26603,26608,26661,26662,26681,26707,26763,26769,27009,27043,27325,27410,27684,27951,28146,29081,29679,30035,30457,30460,31000]]],["glorify",[17,14,[[39,1,1,0,1,[[933,1,1,0,1]]],[42,9,6,1,7,[[1008,2,1,1,2],[1009,2,1,2,3],[1012,1,1,3,4],[1013,3,2,4,6],[1017,1,1,6,7]]],[44,2,2,7,9,[[1060,2,2,7,9]]],[45,1,1,9,10,[[1067,1,1,9,10]]],[46,1,1,10,11,[[1086,1,1,10,11]]],[59,2,2,11,13,[[1152,1,1,11,12],[1154,1,1,12,13]]],[65,1,1,13,14,[[1181,1,1,13,14]]]],[23250,26608,26662,26740,26760,26764,26917,28309,28312,28487,28969,30411,30462,30950]]],["glorifying",[3,3,[[41,3,3,0,3,[[974,1,1,0,1],[977,1,1,1,2],[990,1,1,2,3]]]],[24993,25132,25731]]],["glorious",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28851]]],["glory",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[23284,30382]]],["honour",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26435]]],["honoured",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28660]]],["honoureth",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26435]]],["magnify",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28222]]]]},{"k":"G1393","v":[["Dorcas",[2,2,[[43,2,2,0,2,[[1026,2,2,0,2]]]],[27252,27255]]]]},{"k":"G1394","v":[["*",[2,2,[[49,1,1,0,1,[[1106,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[29457,30283]]],["gift",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30283]]],["giving",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29457]]]]},{"k":"G1395","v":[["giver",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28963]]]]},{"k":"G1396","v":[["subjection",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28567]]]]},{"k":"G1397","v":[["bondage",[5,5,[[44,2,2,0,2,[[1053,2,2,0,2]]],[47,2,2,2,4,[[1094,1,1,2,3],[1095,1,1,3,4]]],[57,1,1,4,5,[[1134,1,1,4,5]]]],[28131,28137,29155,29163,29992]]]]},{"k":"G1398","v":[["*",[25,23,[[39,2,1,0,1,[[934,2,1,0,1]]],[41,3,2,1,3,[[987,1,1,1,2],[988,2,1,2,3]]],[42,1,1,3,4,[[1004,1,1,3,4]]],[43,2,2,4,6,[[1024,1,1,4,5],[1037,1,1,5,6]]],[44,7,7,6,13,[[1051,1,1,6,7],[1052,2,2,7,9],[1054,1,1,9,10],[1057,1,1,10,11],[1059,1,1,11,12],[1061,1,1,12,13]]],[47,4,4,13,17,[[1094,3,3,13,16],[1095,1,1,16,17]]],[48,1,1,17,18,[[1102,1,1,17,18]]],[49,1,1,18,19,[[1104,1,1,18,19]]],[50,1,1,19,20,[[1109,1,1,19,20]]],[51,1,1,20,21,[[1111,1,1,20,21]]],[53,1,1,21,22,[[1124,1,1,21,22]]],[55,1,1,22,23,[[1131,1,1,22,23]]]],[23306,25617,25633,26414,27123,27645,28074,28097,28116,28167,28256,28298,28354,29139,29140,29156,29175,29344,29413,29541,29569,29790,29926]]],["+",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26414]]],["Serving",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27645]]],["bondage",[3,3,[[43,1,1,0,1,[[1024,1,1,0,1]]],[47,2,2,1,3,[[1094,2,2,1,3]]]],[27123,29140,29156]]],["serve",[13,11,[[39,2,1,0,1,[[934,2,1,0,1]]],[41,3,2,1,3,[[987,1,1,1,2],[988,2,1,2,3]]],[44,5,5,3,8,[[1051,1,1,3,4],[1052,2,2,4,6],[1054,1,1,6,7],[1061,1,1,7,8]]],[47,1,1,8,9,[[1095,1,1,8,9]]],[50,1,1,9,10,[[1109,1,1,9,10]]],[51,1,1,10,11,[[1111,1,1,10,11]]]],[23306,25617,25633,28074,28097,28116,28167,28354,29175,29541,29569]]],["served",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29413]]],["serveth",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28298]]],["service",[3,3,[[47,1,1,0,1,[[1094,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]]],[29139,29344,29790]]],["serving",[2,2,[[44,1,1,0,1,[[1057,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[28256,29926]]]]},{"k":"G1399","v":[["*",[3,3,[[41,2,2,0,2,[[973,2,2,0,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]]],[24931,24941,26967]]],["handmaid",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24931]]],["handmaiden",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24941]]],["handmaidens",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26967]]]]},{"k":"G1400","v":[["servants",[2,1,[[44,2,1,0,1,[[1051,2,1,0,1]]]],[28087]]]]},{"k":"G1401","v":[["*",[125,118,[[39,30,30,0,30,[[936,1,1,0,1],[938,2,2,1,3],[941,2,2,3,5],[946,5,5,5,10],[948,1,1,10,11],[949,3,3,11,14],[950,5,5,14,19],[952,4,4,19,23],[953,6,6,23,29],[954,1,1,29,30]]],[40,5,5,30,35,[[966,1,1,30,31],[968,2,2,31,33],[969,1,1,33,34],[970,1,1,34,35]]],[41,27,26,35,61,[[974,1,1,35,36],[979,4,4,36,40],[984,6,6,40,46],[986,5,4,46,50],[987,1,1,50,51],[989,3,3,51,54],[991,4,4,54,58],[992,2,2,58,60],[994,1,1,60,61]]],[42,11,9,61,70,[[1000,1,1,61,62],[1004,2,2,62,64],[1009,1,1,64,65],[1011,3,2,65,67],[1014,4,3,67,70]]],[43,3,3,70,73,[[1019,1,1,70,71],[1021,1,1,71,72],[1033,1,1,72,73]]],[44,5,4,73,77,[[1046,1,1,73,74],[1051,4,3,74,77]]],[45,5,4,77,81,[[1068,4,3,77,80],[1073,1,1,80,81]]],[46,1,1,81,82,[[1081,1,1,81,82]]],[47,4,4,82,86,[[1091,1,1,82,83],[1093,1,1,83,84],[1094,2,2,84,86]]],[48,3,3,86,89,[[1102,3,3,86,89]]],[49,2,2,89,91,[[1103,1,1,89,90],[1104,1,1,90,91]]],[50,4,4,91,95,[[1109,2,2,91,93],[1110,2,2,93,95]]],[53,1,1,95,96,[[1124,1,1,95,96]]],[54,1,1,96,97,[[1126,1,1,96,97]]],[55,2,2,97,99,[[1129,1,1,97,98],[1130,1,1,98,99]]],[56,2,1,99,100,[[1132,2,1,99,100]]],[58,1,1,100,101,[[1146,1,1,100,101]]],[59,1,1,101,102,[[1152,1,1,101,102]]],[60,2,2,102,104,[[1156,1,1,102,103],[1157,1,1,103,104]]],[64,1,1,104,105,[[1166,1,1,104,105]]],[65,14,13,105,118,[[1167,2,1,105,106],[1168,1,1,106,107],[1172,1,1,107,108],[1173,1,1,108,109],[1176,1,1,109,110],[1177,1,1,110,111],[1179,1,1,111,112],[1181,1,1,112,113],[1185,3,3,113,116],[1188,2,2,116,118]]]],[23354,23441,23442,23566,23567,23750,23753,23754,23755,23759,23819,23860,23861,23862,23875,23876,23878,23880,23882,24002,24003,24005,24007,24022,24027,24029,24031,24034,24038,24105,24632,24675,24677,24751,24801,25002,25197,25198,25203,25205,25496,25497,25502,25504,25505,25506,25570,25574,25575,25576,25610,25658,25660,25661,25744,25746,25748,25753,25789,25790,25914,26207,26415,26416,26646,26714,26719,26795,26803,26811,26967,27051,27500,27931,28084,28085,28088,28508,28509,28510,28647,28864,29067,29130,29132,29138,29342,29343,29345,29362,29398,29528,29539,29543,29554,29789,29851,29893,29917,29954,30267,30415,30480,30519,30673,30698,30737,30808,30813,30868,30890,30924,30949,31019,31022,31035,31083,31086]]],["Servants",[2,2,[[48,1,1,0,1,[[1102,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29342,29539]]],["bond",[6,6,[[45,1,1,0,1,[[1073,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]],[50,1,1,3,4,[[1109,1,1,3,4]]],[65,2,2,4,6,[[1179,1,1,4,5],[1185,1,1,5,6]]]],[28647,29130,29345,29528,30924,31035]]],["bondman",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30808]]],["servant",[66,63,[[39,17,17,0,17,[[936,1,1,0,1],[938,2,2,1,3],[946,4,4,3,7],[948,1,1,7,8],[952,4,4,8,12],[953,4,4,12,16],[954,1,1,16,17]]],[40,4,4,17,21,[[966,1,1,17,18],[968,2,2,18,20],[970,1,1,20,21]]],[41,21,20,21,41,[[974,1,1,21,22],[979,4,4,22,26],[984,4,4,26,30],[986,5,4,30,34],[989,2,2,34,36],[991,2,2,36,38],[992,2,2,38,40],[994,1,1,40,41]]],[42,6,6,41,47,[[1004,2,2,41,43],[1009,1,1,43,44],[1011,2,2,44,46],[1014,1,1,46,47]]],[44,1,1,47,48,[[1046,1,1,47,48]]],[45,3,2,48,50,[[1068,3,2,48,50]]],[47,3,3,50,53,[[1091,1,1,50,51],[1094,2,2,51,53]]],[49,1,1,53,54,[[1104,1,1,53,54]]],[50,1,1,54,55,[[1110,1,1,54,55]]],[54,1,1,55,56,[[1126,1,1,55,56]]],[55,1,1,56,57,[[1129,1,1,56,57]]],[56,2,1,57,58,[[1132,2,1,57,58]]],[58,1,1,58,59,[[1146,1,1,58,59]]],[60,1,1,59,60,[[1156,1,1,59,60]]],[64,1,1,60,61,[[1166,1,1,60,61]]],[65,2,2,61,63,[[1167,1,1,61,62],[1181,1,1,62,63]]]],[23354,23441,23442,23753,23754,23755,23759,23819,24002,24003,24005,24007,24029,24031,24034,24038,24105,24632,24675,24677,24801,25002,25197,25198,25203,25205,25502,25504,25505,25506,25570,25574,25575,25576,25658,25660,25748,25753,25789,25790,25914,26415,26416,26646,26714,26719,26795,27931,28508,28509,29067,29132,29138,29398,29554,29851,29893,29954,30267,30480,30673,30698,30949]]],["servant's",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26795]]],["servants",[49,48,[[39,13,13,0,13,[[941,2,2,0,2],[946,1,1,2,3],[949,3,3,3,6],[950,5,5,6,11],[953,2,2,11,13]]],[40,1,1,13,14,[[969,1,1,13,14]]],[41,6,6,14,20,[[984,2,2,14,16],[987,1,1,16,17],[989,1,1,17,18],[991,2,2,18,20]]],[42,4,4,20,24,[[1000,1,1,20,21],[1011,1,1,21,22],[1014,2,2,22,24]]],[43,3,3,24,27,[[1019,1,1,24,25],[1021,1,1,25,26],[1033,1,1,26,27]]],[44,4,3,27,30,[[1051,4,3,27,30]]],[45,1,1,30,31,[[1068,1,1,30,31]]],[46,1,1,31,32,[[1081,1,1,31,32]]],[48,1,1,32,33,[[1102,1,1,32,33]]],[49,1,1,33,34,[[1103,1,1,33,34]]],[50,1,1,34,35,[[1110,1,1,34,35]]],[53,1,1,35,36,[[1124,1,1,35,36]]],[55,1,1,36,37,[[1130,1,1,36,37]]],[59,1,1,37,38,[[1152,1,1,37,38]]],[60,1,1,38,39,[[1157,1,1,38,39]]],[65,9,9,39,48,[[1167,1,1,39,40],[1168,1,1,40,41],[1173,1,1,41,42],[1176,1,1,42,43],[1177,1,1,43,44],[1185,2,2,44,46],[1188,2,2,46,48]]]],[23566,23567,23750,23860,23861,23862,23875,23876,23878,23880,23882,24022,24027,24751,25496,25497,25610,25661,25744,25746,26207,26714,26803,26811,26967,27051,27500,28084,28085,28088,28510,28864,29343,29362,29543,29789,29917,30415,30519,30698,30737,30813,30868,30890,31019,31022,31083,31086]]]]},{"k":"G1402","v":[["*",[8,8,[[43,1,1,0,1,[[1024,1,1,0,1]]],[44,2,2,1,3,[[1051,2,2,1,3]]],[45,2,2,3,5,[[1068,1,1,3,4],[1070,1,1,4,5]]],[47,1,1,5,6,[[1094,1,1,5,6]]],[55,1,1,6,7,[[1130,1,1,6,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]]],[27122,28086,28090,28502,28559,29134,29911,30519]]],["+",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]]],[27122,28559]]],["bondage",[3,3,[[45,1,1,0,1,[[1068,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[28502,29134,30519]]],["given",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29911]]],["servants",[2,2,[[44,2,2,0,2,[[1051,2,2,0,2]]]],[28086,28090]]]]},{"k":"G1403","v":[["feast",[2,2,[[41,2,2,0,2,[[977,1,1,0,1],[986,1,1,1,2]]]],[25136,25566]]]]},{"k":"G1404","v":[["dragon",[13,12,[[65,13,12,0,12,[[1178,8,7,0,7],[1179,3,3,7,10],[1182,1,1,10,11],[1186,1,1,11,12]]]],[30894,30895,30898,30900,30904,30907,30908,30910,30912,30919,30967,31040]]]]},{"k":"G1405","v":[["taketh",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28429]]]]},{"k":"G1406","v":[["*",[3,2,[[41,3,2,0,2,[[987,3,2,0,2]]]],[25596,25597]]],["piece",[2,2,[[41,2,2,0,2,[[987,2,2,0,2]]]],[25596,25597]]],["silver",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25596]]]]},{"k":"G1407","v":[["sickle",[8,7,[[40,1,1,0,1,[[960,1,1,0,1]]],[65,7,6,1,7,[[1180,7,6,1,7]]]],[24352,30940,30941,30942,30943,30944,30945]]]]},{"k":"G1408","v":[["course",[3,3,[[43,2,2,0,2,[[1030,1,1,0,1],[1037,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[27387,27650,29877]]]]},{"k":"G1409","v":[["Drusilla",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27793]]]]},{"k":"G1410","v":[["*",[210,201,[[39,27,24,0,24,[[931,1,1,0,1],[933,2,2,1,3],[934,3,2,3,5],[935,1,1,5,6],[936,1,1,6,7],[937,2,2,7,9],[938,2,1,9,10],[940,2,2,10,12],[944,1,1,12,13],[945,2,2,13,15],[947,2,2,15,17],[948,2,1,17,18],[950,1,1,18,19],[954,4,4,19,23],[955,1,1,23,24]]],[40,33,32,24,56,[[957,2,2,24,26],[958,4,3,26,29],[959,6,6,29,35],[960,2,2,35,37],[961,1,1,37,38],[962,2,2,38,40],[963,3,3,40,43],[964,1,1,43,44],[965,6,6,44,50],[966,3,3,50,53],[970,2,2,53,55],[971,1,1,55,56]]],[41,26,25,56,81,[[973,2,2,56,58],[975,1,1,58,59],[977,3,3,59,62],[978,2,2,62,64],[980,1,1,64,65],[981,1,1,65,66],[983,1,1,66,67],[984,2,2,67,69],[985,1,1,69,70],[986,4,4,70,74],[988,4,3,74,77],[990,1,1,77,78],[991,1,1,78,79],[992,1,1,79,80],[993,1,1,80,81]]],[42,37,36,81,117,[[997,1,1,81,82],[999,7,6,82,88],[1001,3,3,88,91],[1002,4,4,91,95],[1003,3,3,95,98],[1004,3,3,98,101],[1005,3,3,101,104],[1006,3,3,104,107],[1007,1,1,107,108],[1008,1,1,108,109],[1009,3,3,109,112],[1010,2,2,112,114],[1011,2,2,114,116],[1012,1,1,116,117]]],[43,21,21,117,138,[[1021,2,2,117,119],[1022,1,1,119,120],[1025,1,1,120,121],[1027,1,1,121,122],[1030,1,1,122,123],[1032,1,1,123,124],[1034,1,1,124,125],[1036,1,1,125,126],[1037,1,1,126,127],[1038,1,1,127,128],[1041,3,3,128,131],[1042,1,1,131,132],[1043,1,1,132,133],[1044,5,5,133,138]]],[44,5,5,138,143,[[1053,3,3,138,141],[1060,1,1,141,142],[1061,1,1,142,143]]],[45,15,12,143,155,[[1063,1,1,143,144],[1064,4,3,144,147],[1067,1,1,147,148],[1068,1,1,148,149],[1071,4,2,149,151],[1073,2,2,151,153],[1075,1,1,153,154],[1076,1,1,154,155]]],[46,3,3,155,158,[[1078,1,1,155,156],[1080,1,1,156,157],[1090,1,1,157,158]]],[47,1,1,158,159,[[1093,1,1,158,159]]],[48,5,5,159,164,[[1099,2,2,159,161],[1102,3,3,161,164]]],[49,1,1,164,165,[[1105,1,1,164,165]]],[51,2,2,165,167,[[1112,1,1,165,166],[1113,1,1,166,167]]],[53,3,3,167,170,[[1123,1,1,167,168],[1124,2,2,168,170]]],[54,3,3,170,173,[[1126,1,1,170,171],[1127,2,2,171,173]]],[57,9,9,173,182,[[1134,1,1,173,174],[1135,1,1,174,175],[1136,1,1,175,176],[1137,2,2,176,178],[1139,1,1,178,179],[1141,1,1,179,180],[1142,2,2,180,182]]],[58,6,6,182,188,[[1146,1,1,182,183],[1147,1,1,183,184],[1148,2,2,184,186],[1149,2,2,186,188]]],[61,2,2,188,190,[[1161,1,1,188,189],[1162,1,1,189,190]]],[64,1,1,190,191,[[1166,1,1,190,191]]],[65,10,10,191,201,[[1168,1,1,191,192],[1169,1,1,192,193],[1171,1,1,193,194],[1172,1,1,194,195],[1173,1,1,195,196],[1175,1,1,196,197],[1179,2,2,197,199],[1180,1,1,199,200],[1181,1,1,200,201]]]],[23201,23248,23270,23306,23309,23334,23347,23394,23407,23445,23518,23523,23675,23716,23719,23774,23787,23814,23918,24063,24096,24107,24115,24171,24255,24260,24264,24267,24279,24308,24311,24312,24313,24314,24315,24355,24356,24367,24412,24426,24478,24481,24487,24504,24541,24560,24561,24566,24567,24577,24614,24626,24627,24759,24761,24857,24913,24915,25033,25119,25128,25141,25185,25188,25264,25341,25412,25484,25485,25529,25573,25579,25580,25586,25622,25633,25646,25714,25734,25815,25841,26090,26122,26123,26124,26125,26129,26147,26229,26240,26254,26301,26309,26317,26322,26335,26362,26364,26402,26403,26424,26444,26456,26473,26502,26510,26516,26560,26619,26663,26666,26667,26673,26685,26703,26704,26738,27038,27042,27098,27207,27306,27401,27443,27542,27625,27658,27698,27777,27780,27782,27807,27855,27867,27870,27886,27894,27898,28123,28124,28155,28317,28361,28408,28411,28412,28421,28472,28508,28580,28588,28637,28655,28709,28768,28804,28848,29051,29123,29255,29271,29348,29350,29353,29442,29576,29599,29788,29795,29804,29840,29860,29868,29995,30014,30029,30032,30037,30089,30114,30134,30144,30287,30307,30327,30331,30339,30349,30588,30623,30696,30719,30754,30782,30810,30819,30860,30912,30925,30929,30954]]],["+",[58,56,[[39,6,6,0,6,[[933,1,1,0,1],[934,1,1,1,2],[935,1,1,2,3],[937,1,1,3,4],[954,1,1,4,5],[955,1,1,5,6]]],[40,8,7,6,13,[[958,2,1,6,7],[959,3,3,7,10],[963,1,1,10,11],[965,1,1,11,12],[971,1,1,12,13]]],[41,9,9,13,22,[[978,1,1,13,14],[983,1,1,14,15],[984,1,1,15,16],[986,4,4,16,20],[988,2,2,20,22]]],[42,18,18,22,40,[[999,3,3,22,25],[1001,2,2,25,27],[1003,3,3,27,30],[1004,3,3,30,33],[1006,1,1,33,34],[1009,2,2,34,36],[1010,1,1,36,37],[1011,2,2,37,39],[1012,1,1,39,40]]],[43,6,6,40,46,[[1021,2,2,40,42],[1022,1,1,42,43],[1025,1,1,43,44],[1032,1,1,44,45],[1044,1,1,45,46]]],[44,1,1,46,47,[[1053,1,1,46,47]]],[45,5,4,47,51,[[1064,1,1,47,48],[1071,2,1,48,49],[1073,1,1,49,50],[1076,1,1,50,51]]],[53,1,1,51,52,[[1123,1,1,51,52]]],[54,1,1,52,53,[[1126,1,1,52,53]]],[57,1,1,53,54,[[1136,1,1,53,54]]],[58,1,1,54,55,[[1149,1,1,54,55]]],[61,1,1,55,56,[[1161,1,1,55,56]]]],[23248,23306,23334,23394,24107,24171,24279,24312,24313,24314,24481,24560,24857,25185,25412,25485,25573,25579,25580,25586,25633,25646,26123,26125,26147,26229,26240,26335,26362,26364,26402,26403,26424,26516,26663,26667,26685,26703,26704,26738,27038,27042,27098,27207,27443,27886,28124,28412,28588,28655,28768,29788,29840,30029,30339,30588]]],["Can",[5,5,[[41,1,1,0,1,[[977,1,1,0,1]]],[42,2,2,1,3,[[997,1,1,1,2],[1006,1,1,2,3]]],[43,1,1,3,4,[[1027,1,1,3,4]]],[58,1,1,4,5,[[1148,1,1,4,5]]]],[25141,26090,26502,27306,30331]]],["Could",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26560]]],["May",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27542]]],["able",[39,36,[[39,9,7,0,7,[[931,1,1,0,1],[937,1,1,1,2],[938,2,1,2,3],[947,1,1,3,4],[948,2,1,4,5],[950,1,1,5,6],[954,1,1,6,7]]],[40,1,1,7,8,[[960,1,1,7,8]]],[41,3,3,8,11,[[973,1,1,8,9],[975,1,1,9,10],[993,1,1,10,11]]],[42,1,1,11,12,[[1006,1,1,11,12]]],[43,1,1,12,13,[[1037,1,1,12,13]]],[44,2,2,13,15,[[1053,1,1,13,14],[1060,1,1,14,15]]],[45,4,3,15,18,[[1064,1,1,15,16],[1067,1,1,16,17],[1071,2,1,17,18]]],[46,1,1,18,19,[[1078,1,1,18,19]]],[48,4,4,19,23,[[1099,1,1,19,20],[1102,3,3,20,23]]],[49,1,1,23,24,[[1105,1,1,23,24]]],[54,2,2,24,26,[[1127,2,2,24,26]]],[57,3,3,26,29,[[1134,1,1,26,27],[1137,1,1,27,28],[1139,1,1,28,29]]],[58,2,2,29,31,[[1146,1,1,29,30],[1149,1,1,30,31]]],[64,1,1,31,32,[[1166,1,1,31,32]]],[65,4,4,32,36,[[1171,1,1,32,33],[1172,1,1,33,34],[1179,1,1,34,35],[1181,1,1,35,36]]]],[23201,23407,23445,23774,23814,23918,24115,24356,24913,25033,25841,26510,27658,28155,28317,28412,28472,28580,28804,29271,29348,29350,29353,29442,29860,29868,29995,30037,30089,30287,30349,30696,30782,30810,30912,30954]]],["been",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24759]]],["can",[50,49,[[39,6,6,0,6,[[934,2,2,0,2],[940,2,2,2,4],[944,1,1,4,5],[947,1,1,5,6]]],[40,11,11,6,17,[[958,1,1,6,7],[959,2,2,7,9],[963,1,1,9,10],[964,1,1,10,11],[965,3,3,11,14],[966,3,3,14,17]]],[41,5,5,17,22,[[977,1,1,17,18],[984,1,1,18,19],[988,1,1,19,20],[990,1,1,20,21],[992,1,1,21,22]]],[42,12,11,22,33,[[999,4,3,22,25],[1001,1,1,25,26],[1002,4,4,26,30],[1005,2,2,30,32],[1010,1,1,32,33]]],[43,1,1,33,34,[[1041,1,1,33,34]]],[44,1,1,34,35,[[1053,1,1,34,35]]],[45,3,3,35,38,[[1063,1,1,35,36],[1064,1,1,36,37],[1073,1,1,37,38]]],[51,1,1,38,39,[[1113,1,1,38,39]]],[53,2,2,39,41,[[1124,2,2,39,41]]],[57,3,3,41,44,[[1137,1,1,41,42],[1142,2,2,42,44]]],[58,2,2,44,46,[[1147,1,1,44,45],[1148,1,1,45,46]]],[61,1,1,46,47,[[1162,1,1,46,47]]],[65,2,2,47,49,[[1169,1,1,47,48],[1175,1,1,48,49]]]],[23306,23309,23518,23523,23675,23787,24267,24311,24315,24478,24504,24541,24567,24577,24614,24626,24627,25128,25484,25633,25714,25815,26122,26124,26129,26254,26301,26309,26317,26322,26444,26456,26673,27782,28123,28408,28421,28637,29599,29795,29804,30032,30134,30144,30307,30327,30623,30754,30860]]],["canst",[8,8,[[39,2,2,0,2,[[933,1,1,0,1],[936,1,1,1,2]]],[40,2,2,2,4,[[957,1,1,2,3],[965,1,1,3,4]]],[41,2,2,4,6,[[977,1,1,4,5],[978,1,1,5,6]]],[42,1,1,6,7,[[1009,1,1,6,7]]],[65,1,1,7,8,[[1168,1,1,7,8]]]],[23270,23347,24255,24561,25119,25188,26666,30719]]],["could",[28,28,[[39,2,2,0,2,[[945,2,2,0,2]]],[40,8,8,2,10,[[957,1,1,2,3],[958,1,1,3,4],[959,1,1,4,5],[961,1,1,5,6],[962,2,2,6,8],[963,1,1,8,9],[965,1,1,9,10]]],[41,5,5,10,15,[[973,1,1,10,11],[980,1,1,11,12],[981,1,1,12,13],[985,1,1,13,14],[991,1,1,14,15]]],[42,2,2,15,17,[[1005,1,1,15,16],[1008,1,1,16,17]]],[43,4,4,17,21,[[1030,1,1,17,18],[1038,1,1,18,19],[1044,2,2,19,21]]],[45,1,1,21,22,[[1064,1,1,21,22]]],[46,1,1,22,23,[[1080,1,1,22,23]]],[47,1,1,23,24,[[1093,1,1,23,24]]],[57,2,2,24,26,[[1135,1,1,24,25],[1141,1,1,25,26]]],[65,2,2,26,28,[[1173,1,1,26,27],[1180,1,1,27,28]]]],[23716,23719,24260,24264,24308,24367,24412,24426,24487,24566,24915,25264,25341,25529,25734,26473,26619,27401,27698,27870,27898,28411,28848,29123,30014,30114,30819,30929]]],["do",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29051]]],["may",[7,7,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[960,1,1,1,2],[970,1,1,2,3]]],[43,2,2,3,5,[[1036,1,1,3,4],[1042,1,1,4,5]]],[45,1,1,5,6,[[1075,1,1,5,6]]],[48,1,1,6,7,[[1099,1,1,6,7]]]],[24096,24355,24761,27625,27807,28709,29255]]],["mayest",[4,4,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,2,2,1,3,[[1041,2,2,1,3]]],[45,1,1,3,4,[[1068,1,1,3,4]]]],[25622,27777,27780,28508]]],["might",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[43,2,2,1,3,[[1043,1,1,1,2],[1044,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]],[65,1,1,4,5,[[1179,1,1,4,5]]]],[24063,27855,27867,29576,30925]]],["possible",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27894]]],["power",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28361]]]]},{"k":"G1411","v":[["*",[120,116,[[39,13,13,0,13,[[934,1,1,0,1],[935,1,1,1,2],[939,3,3,2,5],[941,2,2,5,7],[942,1,1,7,8],[950,1,1,8,9],[952,2,2,9,11],[953,1,1,11,12],[954,1,1,12,13]]],[40,10,10,13,23,[[961,1,1,13,14],[962,3,3,14,17],[965,2,2,17,19],[968,1,1,19,20],[969,2,2,20,22],[970,1,1,22,23]]],[41,15,15,23,38,[[973,2,2,23,25],[976,2,2,25,27],[977,1,1,27,28],[978,1,1,28,29],[980,1,1,29,30],[981,1,1,30,31],[982,2,2,31,33],[991,1,1,33,34],[993,2,2,34,36],[994,1,1,36,37],[996,1,1,37,38]]],[43,10,10,38,48,[[1018,1,1,38,39],[1019,1,1,39,40],[1020,1,1,40,41],[1021,2,2,41,43],[1023,1,1,43,44],[1025,2,2,44,46],[1027,1,1,46,47],[1036,1,1,47,48]]],[44,8,7,48,55,[[1046,3,3,48,51],[1053,1,1,51,52],[1054,1,1,52,53],[1060,3,2,53,55]]],[45,15,15,55,70,[[1062,2,2,55,57],[1063,2,2,57,59],[1065,2,2,59,61],[1066,1,1,61,62],[1067,1,1,62,63],[1073,3,3,63,66],[1075,1,1,66,67],[1076,3,3,67,70]]],[46,10,7,70,77,[[1078,1,1,70,71],[1081,1,1,71,72],[1083,1,1,72,73],[1085,2,1,73,74],[1089,3,2,74,76],[1090,2,1,76,77]]],[47,1,1,77,78,[[1093,1,1,77,78]]],[48,5,5,78,83,[[1097,2,2,78,80],[1099,3,3,80,83]]],[49,1,1,83,84,[[1105,1,1,83,84]]],[50,2,2,84,86,[[1107,2,2,84,86]]],[51,1,1,86,87,[[1111,1,1,86,87]]],[52,3,3,87,90,[[1116,2,2,87,89],[1117,1,1,89,90]]],[54,3,3,90,93,[[1125,2,2,90,92],[1127,1,1,92,93]]],[57,6,6,93,99,[[1133,1,1,93,94],[1134,1,1,94,95],[1138,1,1,95,96],[1139,1,1,96,97],[1143,2,2,97,99]]],[59,2,2,99,101,[[1151,1,1,99,100],[1153,1,1,100,101]]],[60,3,3,101,104,[[1156,2,2,101,103],[1157,1,1,103,104]]],[65,12,12,104,116,[[1167,1,1,104,105],[1169,1,1,105,106],[1170,1,1,106,107],[1171,1,1,107,108],[1173,1,1,108,109],[1177,1,1,109,110],[1178,1,1,110,111],[1179,1,1,111,112],[1181,1,1,112,113],[1183,1,1,113,114],[1184,1,1,114,115],[1185,1,1,115,116]]]],[23295,23338,23479,23480,23482,23593,23597,23599,23901,23986,23987,24023,24118,24394,24409,24412,24421,24539,24577,24697,24742,24743,24816,24910,24928,25077,25099,25124,25165,25291,25302,25376,25382,25768,25852,25853,25933,26040,26931,26971,27008,27029,27055,27109,27186,27189,27297,27596,27934,27946,27950,28154,28172,28316,28322,28381,28387,28398,28399,28452,28453,28458,28481,28644,28662,28663,28689,28742,28761,28774,28808,28866,28905,28935,29031,29034,29047,29107,29225,29227,29258,29267,29271,29431,29476,29494,29565,29656,29660,29670,29816,29817,29858,29966,29981,30049,30080,30183,30206,30379,30446,30482,30495,30511,30713,30754,30779,30791,30822,30889,30901,30910,30954,30988,30996,31018]]],["+",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[25165,29494]]],["ability",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24023]]],["abundance",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30996]]],["deeds",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29034]]],["meaning",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28689]]],["might",[4,4,[[48,2,2,0,2,[[1097,1,1,0,1],[1099,1,1,1,2]]],[50,1,1,2,3,[[1107,1,1,2,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]]],[29227,29267,29476,30511]]],["mighty",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[52,1,1,1,2,[[1116,1,1,1,2]]]],[28322,29656]]],["miracle",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24577]]],["miracles",[8,8,[[43,3,3,0,3,[[1019,1,1,0,1],[1025,1,1,1,2],[1036,1,1,2,3]]],[45,3,3,3,6,[[1073,3,3,3,6]]],[47,1,1,6,7,[[1093,1,1,6,7]]],[57,1,1,7,8,[[1134,1,1,7,8]]]],[26971,27189,27596,28644,28662,28663,29107,29981]]],["power",[71,69,[[39,4,4,0,4,[[934,1,1,0,1],[950,1,1,1,2],[952,1,1,2,3],[954,1,1,3,4]]],[40,4,4,4,8,[[965,1,1,4,5],[968,1,1,5,6],[969,1,1,6,7],[970,1,1,7,8]]],[41,10,10,8,18,[[973,2,2,8,10],[976,2,2,10,12],[977,1,1,12,13],[981,1,1,13,14],[982,1,1,14,15],[993,1,1,15,16],[994,1,1,16,17],[996,1,1,17,18]]],[43,7,7,18,25,[[1018,1,1,18,19],[1020,1,1,19,20],[1021,2,2,20,22],[1023,1,1,22,23],[1025,1,1,23,24],[1027,1,1,24,25]]],[44,6,6,25,31,[[1046,3,3,25,28],[1054,1,1,28,29],[1060,2,2,29,31]]],[45,10,10,31,41,[[1062,2,2,31,33],[1063,2,2,33,35],[1065,2,2,35,37],[1066,1,1,37,38],[1067,1,1,38,39],[1076,2,2,39,41]]],[46,7,5,41,46,[[1081,1,1,41,42],[1083,1,1,42,43],[1085,2,1,43,44],[1089,1,1,44,45],[1090,2,1,45,46]]],[48,3,3,46,49,[[1097,1,1,46,47],[1099,2,2,47,49]]],[49,1,1,49,50,[[1105,1,1,49,50]]],[51,1,1,50,51,[[1111,1,1,50,51]]],[52,2,2,51,53,[[1116,1,1,51,52],[1117,1,1,52,53]]],[54,3,3,53,56,[[1125,2,2,53,55],[1127,1,1,55,56]]],[57,2,2,56,58,[[1133,1,1,56,57],[1139,1,1,57,58]]],[59,1,1,58,59,[[1151,1,1,58,59]]],[60,2,2,59,61,[[1156,2,2,59,61]]],[65,8,8,61,69,[[1170,1,1,61,62],[1171,1,1,62,63],[1173,1,1,63,64],[1177,1,1,64,65],[1179,1,1,65,66],[1181,1,1,66,67],[1183,1,1,67,68],[1185,1,1,68,69]]]],[23295,23901,23987,24118,24539,24697,24743,24816,24910,24928,25077,25099,25124,25302,25382,25853,25933,26040,26931,27008,27029,27055,27109,27186,27297,27934,27946,27950,28172,28316,28322,28381,28387,28398,28399,28452,28453,28458,28481,28742,28761,28866,28905,28935,29031,29047,29225,29258,29271,29431,29565,29660,29670,29816,29817,29858,29966,30080,30379,30482,30495,30779,30791,30822,30889,30910,30954,30988,31018]]],["powers",[6,6,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]],[44,1,1,3,4,[[1053,1,1,3,4]]],[57,1,1,4,5,[[1138,1,1,4,5]]],[59,1,1,5,6,[[1153,1,1,5,6]]]],[23986,24742,25852,28154,30049,30446]]],["strength",[7,7,[[45,1,1,0,1,[[1076,1,1,0,1]]],[46,2,2,1,3,[[1078,1,1,1,2],[1089,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]],[65,3,3,4,7,[[1167,1,1,4,5],[1169,1,1,5,6],[1178,1,1,6,7]]]],[28774,28808,29031,30183,30713,30754,30901]]],["violence",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30206]]],["virtue",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24394,25291]]],["work",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24412]]],["works",[11,11,[[39,7,7,0,7,[[935,1,1,0,1],[939,3,3,1,4],[941,2,2,4,6],[942,1,1,6,7]]],[40,2,2,7,9,[[962,2,2,7,9]]],[41,2,2,9,11,[[982,1,1,9,10],[991,1,1,10,11]]]],[23338,23479,23480,23482,23593,23597,23599,24409,24421,25376,25768]]]]},{"k":"G1412","v":[["Strengthened",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29476]]]]},{"k":"G1413","v":[["*",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]]],[24945,27203,29803]]],["Potentate",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29803]]],["authority",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27203]]],["mighty",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24945]]]]},{"k":"G1414","v":[["mighty",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29046]]]]},{"k":"G1415","v":[["*",[35,35,[[39,3,3,0,3,[[947,1,1,0,1],[952,1,1,1,2],[954,1,1,2,3]]],[40,5,5,3,8,[[965,1,1,3,4],[966,1,1,4,5],[969,1,1,5,6],[970,2,2,6,8]]],[41,4,4,8,12,[[973,1,1,8,9],[986,1,1,9,10],[990,1,1,10,11],[996,1,1,11,12]]],[43,6,6,12,18,[[1019,1,1,12,13],[1024,1,1,13,14],[1028,1,1,14,15],[1035,1,1,15,16],[1037,1,1,16,17],[1042,1,1,17,18]]],[44,6,6,18,24,[[1049,1,1,18,19],[1054,1,1,19,20],[1056,1,1,20,21],[1057,1,1,21,22],[1059,1,1,22,23],[1060,1,1,23,24]]],[45,1,1,24,25,[[1062,1,1,24,25]]],[46,4,4,25,29,[[1086,1,1,25,26],[1087,1,1,26,27],[1089,1,1,27,28],[1090,1,1,28,29]]],[47,1,1,29,30,[[1094,1,1,29,30]]],[54,1,1,30,31,[[1125,1,1,30,31]]],[55,1,1,31,32,[[1129,1,1,31,32]]],[57,1,1,32,33,[[1143,1,1,32,33]]],[58,1,1,33,34,[[1148,1,1,33,34]]],[65,1,1,34,35,[[1172,1,1,34,35]]]],[23788,23981,24093,24561,24615,24739,24789,24790,24942,25584,25715,26010,26973,27138,27324,27581,27642,27801,28043,28177,28232,28263,28284,28304,28389,28964,28975,29032,29052,29146,29821,29901,30191,30321,30808]]],["+",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28177]]],["able",[10,10,[[41,1,1,0,1,[[986,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]],[44,3,3,2,5,[[1049,1,1,2,3],[1056,1,1,3,4],[1059,1,1,4,5]]],[46,1,1,5,6,[[1086,1,1,5,6]]],[54,1,1,6,7,[[1125,1,1,6,7]]],[55,1,1,7,8,[[1129,1,1,7,8]]],[57,1,1,8,9,[[1143,1,1,8,9]]],[58,1,1,9,10,[[1148,1,1,9,10]]]],[25584,27801,28043,28232,28284,28964,29821,29901,30191,30321]]],["could",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27324]]],["men",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30808]]],["mighty",[6,6,[[41,2,2,0,2,[[973,1,1,0,1],[996,1,1,1,2]]],[43,2,2,2,4,[[1024,1,1,2,3],[1035,1,1,3,4]]],[45,1,1,4,5,[[1062,1,1,4,5]]],[46,1,1,5,6,[[1087,1,1,5,6]]]],[24942,26010,27138,27581,28389,28975]]],["possible",[13,13,[[39,3,3,0,3,[[947,1,1,0,1],[952,1,1,1,2],[954,1,1,2,3]]],[40,5,5,3,8,[[965,1,1,3,4],[966,1,1,4,5],[969,1,1,5,6],[970,2,2,6,8]]],[41,1,1,8,9,[[990,1,1,8,9]]],[43,2,2,9,11,[[1019,1,1,9,10],[1037,1,1,10,11]]],[44,1,1,11,12,[[1057,1,1,11,12]]],[47,1,1,12,13,[[1094,1,1,12,13]]]],[23788,23981,24093,24561,24615,24739,24789,24790,25715,26973,27642,28263,29146]]],["strong",[3,3,[[44,1,1,0,1,[[1060,1,1,0,1]]],[46,2,2,1,3,[[1089,1,1,1,2],[1090,1,1,2,3]]]],[28304,29032,29052]]]]},{"k":"G1416","v":[["*",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]]],[24247,25103]]],["set",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24247]]],["setting",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25103]]]]},{"k":"G1417","v":[["*",[135,124,[[39,41,36,0,36,[[932,2,2,0,2],[933,1,1,2,3],[934,1,1,3,4],[936,1,1,4,5],[937,1,1,5,6],[938,2,2,6,8],[939,1,1,8,9],[942,2,2,9,11],[946,7,5,11,16],[947,2,2,16,18],[948,3,3,18,21],[949,3,3,21,24],[950,1,1,24,25],[952,2,2,25,27],[953,6,3,27,30],[954,3,3,30,33],[955,3,3,33,36]]],[40,18,15,36,51,[[962,6,4,36,40],[965,3,3,40,43],[966,2,1,43,44],[967,1,1,44,45],[968,1,1,45,46],[970,2,2,46,48],[971,2,2,48,50],[972,1,1,50,51]]],[41,27,26,51,77,[[974,1,1,51,52],[975,1,1,52,53],[977,1,1,53,54],[979,2,2,54,56],[981,5,5,56,61],[982,2,2,61,63],[984,3,2,63,65],[987,1,1,65,66],[988,1,1,66,67],[989,3,3,67,70],[990,1,1,70,71],[991,1,1,71,72],[993,1,1,72,73],[994,1,1,73,74],[995,1,1,74,75],[996,2,2,75,77]]],[42,13,13,77,90,[[997,3,3,77,80],[998,1,1,80,81],[1000,2,2,81,83],[1002,1,1,83,84],[1004,1,1,84,85],[1007,1,1,85,86],[1015,1,1,86,87],[1016,2,2,87,89],[1017,1,1,89,90]]],[43,13,12,90,102,[[1018,3,3,90,93],[1024,1,1,93,94],[1026,1,1,94,95],[1027,1,1,95,96],[1029,2,1,96,97],[1036,3,3,97,100],[1038,1,1,100,101],[1040,1,1,101,102]]],[45,3,3,102,105,[[1067,1,1,102,103],[1075,2,2,103,105]]],[46,1,1,105,106,[[1090,1,1,105,106]]],[47,2,2,106,108,[[1094,2,2,106,108]]],[48,2,2,108,110,[[1098,1,1,108,109],[1101,1,1,109,110]]],[49,1,1,110,111,[[1103,1,1,110,111]]],[53,1,1,111,112,[[1123,1,1,111,112]]],[57,2,2,112,114,[[1138,1,1,112,113],[1142,1,1,113,114]]],[65,11,10,114,124,[[1175,2,2,114,116],[1177,5,4,116,120],[1178,1,1,120,121],[1179,2,2,121,123],[1185,1,1,123,124]]]],[23227,23230,23275,23306,23373,23406,23427,23446,23461,23614,23616,23735,23736,23743,23746,23747,23767,23768,23813,23816,23822,23827,23854,23857,23912,23997,23998,24023,24025,24030,24056,24091,24114,24150,24167,24180,24414,24416,24445,24448,24581,24583,24585,24596,24641,24715,24755,24767,24853,24864,24885,24997,25036,25109,25214,25236,25304,25314,25317,25331,25333,25364,25398,25465,25511,25599,25633,25685,25686,25687,25698,25760,25828,25902,25967,25995,26004,26079,26081,26084,26101,26196,26199,26266,26398,26529,26843,26871,26879,26900,26933,26946,26947,27145,27254,27266,27343,27595,27607,27619,27697,27757,28483,28705,28707,29044,29153,29155,29244,29335,29384,29782,30062,30161,30852,30856,30874,30875,30876,30882,30905,30913,30919,31037]]],["+",[7,6,[[40,2,1,0,1,[[962,2,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[48,1,1,2,3,[[1098,1,1,2,3]]],[65,3,3,3,6,[[1175,1,1,3,4],[1177,1,1,4,5],[1179,1,1,5,6]]]],[24414,25364,29244,30856,30874,30913]]],["Two",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,3,3,1,4,[[989,2,2,1,3],[990,1,1,3,4]]]],[23998,25686,25687,25698]]],["both",[2,2,[[42,1,1,0,1,[[1016,1,1,0,1]]],[65,1,1,1,2,[[1185,1,1,1,2]]]],[26871,31037]]],["twain",[9,8,[[39,6,6,0,6,[[933,1,1,0,1],[947,2,2,1,3],[949,1,1,3,4],[955,2,2,4,6]]],[40,3,2,6,8,[[966,2,1,6,7],[971,1,1,7,8]]]],[23275,23767,23768,23857,24150,24180,24596,24864]]],["two",[113,104,[[39,34,29,0,29,[[932,2,2,0,2],[934,1,1,2,3],[936,1,1,3,4],[937,1,1,4,5],[938,2,2,5,7],[939,1,1,7,8],[942,2,2,8,10],[946,7,5,10,15],[948,3,3,15,18],[949,2,2,18,20],[950,1,1,20,21],[952,1,1,21,22],[953,6,3,22,25],[954,3,3,25,28],[955,1,1,28,29]]],[40,13,12,29,41,[[962,4,3,29,32],[965,3,3,32,35],[967,1,1,35,36],[968,1,1,36,37],[970,2,2,37,39],[971,1,1,39,40],[972,1,1,40,41]]],[41,23,22,41,63,[[974,1,1,41,42],[975,1,1,42,43],[977,1,1,43,44],[979,2,2,44,46],[981,5,5,46,51],[982,1,1,51,52],[984,3,2,52,54],[987,1,1,54,55],[988,1,1,55,56],[989,1,1,56,57],[991,1,1,57,58],[993,1,1,58,59],[994,1,1,59,60],[995,1,1,60,61],[996,2,2,61,63]]],[42,12,12,63,75,[[997,3,3,63,66],[998,1,1,66,67],[1000,2,2,67,69],[1002,1,1,69,70],[1004,1,1,70,71],[1007,1,1,71,72],[1015,1,1,72,73],[1016,1,1,73,74],[1017,1,1,74,75]]],[43,13,12,75,87,[[1018,3,3,75,78],[1024,1,1,78,79],[1026,1,1,79,80],[1027,1,1,80,81],[1029,2,1,81,82],[1036,3,3,82,85],[1038,1,1,85,86],[1040,1,1,86,87]]],[45,3,3,87,90,[[1067,1,1,87,88],[1075,2,2,88,90]]],[46,1,1,90,91,[[1090,1,1,90,91]]],[47,2,2,91,93,[[1094,2,2,91,93]]],[48,1,1,93,94,[[1101,1,1,93,94]]],[49,1,1,94,95,[[1103,1,1,94,95]]],[53,1,1,95,96,[[1123,1,1,95,96]]],[57,2,2,96,98,[[1138,1,1,96,97],[1142,1,1,97,98]]],[65,7,6,98,104,[[1175,1,1,98,99],[1177,4,3,99,102],[1178,1,1,102,103],[1179,1,1,103,104]]]],[23227,23230,23306,23373,23406,23427,23446,23461,23614,23616,23735,23736,23743,23746,23747,23813,23816,23822,23827,23854,23912,23997,24023,24025,24030,24056,24091,24114,24167,24416,24445,24448,24581,24583,24585,24641,24715,24755,24767,24853,24885,24997,25036,25109,25214,25236,25304,25314,25317,25331,25333,25398,25465,25511,25599,25633,25685,25760,25828,25902,25967,25995,26004,26079,26081,26084,26101,26196,26199,26266,26398,26529,26843,26879,26900,26933,26946,26947,27145,27254,27266,27343,27595,27607,27619,27697,27757,28483,28705,28707,29044,29153,29155,29335,29384,29782,30062,30161,30852,30875,30876,30882,30905,30919]]]]},{"k":"G1418","v":[]},{"k":"G1419","v":[["borne",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23922,25451]]]]},{"k":"G1420","v":[["flux",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27907]]]]},{"k":"G1421","v":[["hard",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30041]]]]},{"k":"G1422","v":[["hard",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24612]]]]},{"k":"G1423","v":[["hardly",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]]],[23785,24611,25712]]]]},{"k":"G1424","v":[["west",[5,5,[[39,2,2,0,2,[[936,1,1,0,1],[952,1,1,1,2]]],[41,2,2,2,4,[[984,1,1,2,3],[985,1,1,3,4]]],[65,1,1,4,5,[[1187,1,1,4,5]]]],[23356,23984,25513,25547,31066]]]]},{"k":"G1425","v":[["understood",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30538]]]]},{"k":"G1426","v":[["report",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28906]]]]},{"k":"G1427","v":[["*",[72,59,[[39,13,12,0,12,[[937,1,1,0,1],[938,3,3,1,4],[939,1,1,4,5],[942,1,1,5,6],[947,2,1,6,7],[948,1,1,7,8],[954,4,4,8,12]]],[40,14,14,12,26,[[959,1,1,12,13],[960,1,1,13,14],[961,2,2,14,16],[962,2,2,16,18],[964,1,1,18,19],[965,1,1,19,20],[966,1,1,20,21],[967,1,1,21,22],[970,4,4,22,26]]],[41,13,13,26,39,[[974,1,1,26,27],[978,1,1,27,28],[980,3,3,28,31],[981,3,3,31,34],[990,1,1,34,35],[994,4,4,35,39]]],[42,6,6,39,45,[[1002,4,4,39,43],[1007,1,1,43,44],[1016,1,1,44,45]]],[43,2,2,45,47,[[1023,1,1,45,46],[1024,1,1,46,47]]],[45,1,1,47,48,[[1076,1,1,47,48]]],[58,1,1,48,49,[[1146,1,1,48,49]]],[65,22,10,49,59,[[1173,12,4,49,53],[1178,1,1,53,54],[1187,8,4,54,58],[1188,1,1,58,59]]]],[23399,23418,23419,23422,23460,23617,23790,23809,24068,24074,24101,24107,24302,24333,24389,24406,24414,24450,24519,24573,24620,24651,24764,24771,24774,24797,25015,25159,25246,25287,25288,25302,25313,25318,25719,25867,25878,25894,25911,26270,26324,26327,26328,26532,26891,27103,27124,28723,30267,30815,30816,30817,30818,30892,31065,31067,31069,31074,31082]]],["+",[2,2,[[41,2,2,0,2,[[974,1,1,0,1],[981,1,1,1,2]]]],[25015,25302]]],["Twelve",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24519]]],["twelve",[69,56,[[39,13,12,0,12,[[937,1,1,0,1],[938,3,3,1,4],[939,1,1,4,5],[942,1,1,5,6],[947,2,1,6,7],[948,1,1,7,8],[954,4,4,8,12]]],[40,13,13,12,25,[[959,1,1,12,13],[960,1,1,13,14],[961,2,2,14,16],[962,2,2,16,18],[965,1,1,18,19],[966,1,1,19,20],[967,1,1,20,21],[970,4,4,21,25]]],[41,11,11,25,36,[[978,1,1,25,26],[980,3,3,26,29],[981,2,2,29,31],[990,1,1,31,32],[994,4,4,32,36]]],[42,6,6,36,42,[[1002,4,4,36,40],[1007,1,1,40,41],[1016,1,1,41,42]]],[43,2,2,42,44,[[1023,1,1,42,43],[1024,1,1,43,44]]],[45,1,1,44,45,[[1076,1,1,44,45]]],[58,1,1,45,46,[[1146,1,1,45,46]]],[65,22,10,46,56,[[1173,12,4,46,50],[1178,1,1,50,51],[1187,8,4,51,55],[1188,1,1,55,56]]]],[23399,23418,23419,23422,23460,23617,23790,23809,24068,24074,24101,24107,24302,24333,24389,24406,24414,24450,24573,24620,24651,24764,24771,24774,24797,25159,25246,25287,25288,25313,25318,25719,25867,25878,25894,25911,26270,26324,26327,26328,26532,26891,27103,27124,28723,30267,30815,30816,30817,30818,30892,31065,31067,31069,31074,31082]]]]},{"k":"G1428","v":[["twelfth",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31073]]]]},{"k":"G1429","v":[["tribes",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27830]]]]},{"k":"G1430","v":[["*",[7,7,[[39,2,2,0,2,[[938,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,3,3,3,6,[[977,1,1,3,4],[984,1,1,4,5],[989,1,1,5,6]]],[43,1,1,6,7,[[1027,1,1,6,7]]]],[23444,23974,24732,25126,25462,25682,27268]]],["housetop",[5,5,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,2,2,2,4,[[977,1,1,2,3],[989,1,1,3,4]]],[43,1,1,4,5,[[1027,1,1,4,5]]]],[23974,24732,25126,25682,27268]]],["housetops",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23444,25462]]]]},{"k":"G1431","v":[["gift",[11,11,[[42,1,1,0,1,[[1000,1,1,0,1]]],[43,4,4,1,5,[[1019,1,1,1,2],[1025,1,1,2,3],[1027,1,1,3,4],[1028,1,1,4,5]]],[44,2,2,5,7,[[1050,2,2,5,7]]],[46,1,1,7,8,[[1086,1,1,7,8]]],[48,2,2,8,10,[[1099,1,1,8,9],[1100,1,1,9,10]]],[57,1,1,10,11,[[1138,1,1,10,11]]]],[26166,26987,27196,27304,27324,28062,28064,28971,29258,29279,30048]]]]},{"k":"G1432","v":[["*",[9,8,[[39,2,1,0,1,[[938,2,1,0,1]]],[42,1,1,1,2,[[1011,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[46,1,1,3,4,[[1088,1,1,3,4]]],[47,1,1,4,5,[[1092,1,1,4,5]]],[52,1,1,5,6,[[1118,1,1,5,6]]],[65,2,2,6,8,[[1187,1,1,6,7],[1188,1,1,7,8]]]],[23425,26724,28015,28996,29102,29686,31059,31097]]],["cause",[1,1,[[42,1,1,0,1,[[1011,1,1,0,1]]]],[26724]]],["freely",[6,5,[[39,2,1,0,1,[[938,2,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]],[65,2,2,3,5,[[1187,1,1,3,4],[1188,1,1,4,5]]]],[23425,28015,28996,31059,31097]]],["nought",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29686]]],["vain",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29102]]]]},{"k":"G1433","v":[["*",[3,3,[[40,1,1,0,1,[[971,1,1,0,1]]],[60,2,2,1,3,[[1156,2,2,1,3]]]],[24871,30482,30483]]],["gave",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24871]]],["given",[2,2,[[60,2,2,0,2,[[1156,2,2,0,2]]]],[30482,30483]]]]},{"k":"G1434","v":[["gift",[2,2,[[44,1,1,0,1,[[1050,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[28063,30283]]]]},{"k":"G1435","v":[["*",[19,17,[[39,9,7,0,7,[[930,1,1,0,1],[933,3,2,1,3],[936,1,1,3,4],[943,1,1,4,5],[951,3,2,5,7]]],[40,1,1,7,8,[[963,1,1,7,8]]],[41,2,2,8,10,[[993,2,2,8,10]]],[48,1,1,10,11,[[1098,1,1,10,11]]],[57,5,5,11,16,[[1137,1,1,11,12],[1140,2,2,12,14],[1141,1,1,14,15],[1143,1,1,15,16]]],[65,1,1,16,17,[[1177,1,1,16,17]]]],[23180,23257,23258,23349,23638,23936,23937,24474,25827,25830,29237,30031,30095,30096,30114,30176,30882]]],["gift",[10,8,[[39,8,6,0,6,[[933,3,2,0,2],[936,1,1,2,3],[943,1,1,3,4],[951,3,2,4,6]]],[40,1,1,6,7,[[963,1,1,6,7]]],[48,1,1,7,8,[[1098,1,1,7,8]]]],[23257,23258,23349,23638,23936,23937,24474,29237]]],["gifts",[8,8,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]],[57,5,5,2,7,[[1137,1,1,2,3],[1140,2,2,3,5],[1141,1,1,5,6],[1143,1,1,6,7]]],[65,1,1,7,8,[[1177,1,1,7,8]]]],[23180,25827,30031,30095,30096,30114,30176,30882]]],["offerings",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25830]]]]},{"k":"G1436","v":[["alone",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]]],[24239,25097]]]]},{"k":"G1437","v":[["*",[297,272,[[39,59,54,0,54,[[932,1,1,0,1],[933,6,6,1,7],[934,4,4,7,11],[935,2,2,11,13],[936,2,2,13,15],[937,1,1,15,16],[938,3,3,16,19],[939,2,2,19,21],[940,2,2,21,23],[942,1,1,23,24],[943,2,2,24,26],[944,3,2,26,28],[945,1,1,28,29],[946,12,8,29,37],[948,4,4,37,41],[949,5,5,41,46],[950,1,1,46,47],[951,1,1,47,48],[952,4,4,48,52],[954,1,1,52,53],[956,1,1,53,54]]],[40,32,30,54,84,[[957,1,1,54,55],[959,2,2,55,57],[960,1,1,57,58],[962,3,3,58,61],[963,2,1,61,62],[964,2,2,62,64],[965,6,5,64,69],[966,6,6,69,75],[967,4,4,75,79],[968,1,1,79,80],[969,2,2,80,82],[970,2,2,82,84]]],[41,32,29,84,113,[[976,2,2,84,86],[977,1,1,86,87],[978,2,2,87,89],[979,1,1,89,90],[981,2,1,90,91],[982,2,2,91,93],[983,1,1,93,94],[984,2,2,94,96],[985,2,2,96,98],[986,1,1,98,99],[987,1,1,99,100],[988,2,2,100,102],[989,5,3,102,105],[990,1,1,105,106],[991,2,2,106,108],[992,3,3,108,111],[994,2,2,111,113]]],[42,45,42,113,155,[[999,1,1,113,114],[1001,2,2,114,116],[1002,2,2,116,118],[1003,2,2,118,120],[1004,8,8,120,128],[1005,2,2,128,130],[1006,1,1,130,131],[1007,5,5,131,136],[1008,5,4,136,140],[1009,3,3,140,143],[1010,4,4,143,147],[1011,4,3,147,150],[1012,2,1,150,151],[1015,1,1,151,152],[1017,3,3,152,155]]],[43,6,6,155,161,[[1022,1,1,155,156],[1024,1,1,156,157],[1026,1,1,157,158],[1030,1,1,158,159],[1042,1,1,159,160],[1043,1,1,160,161]]],[44,19,12,161,173,[[1047,3,2,161,163],[1052,3,2,163,165],[1054,1,1,165,166],[1055,1,1,166,167],[1056,1,1,167,168],[1057,2,1,168,169],[1058,1,1,169,170],[1059,5,2,170,172],[1060,2,1,172,173]]],[45,42,37,173,210,[[1065,2,2,173,175],[1066,1,1,175,176],[1067,2,2,176,178],[1068,7,6,178,184],[1069,3,2,184,186],[1070,2,1,186,187],[1071,1,1,187,188],[1072,2,2,188,190],[1073,2,2,190,192],[1074,5,3,192,195],[1075,10,10,195,205],[1077,5,5,205,210]]],[46,6,6,210,216,[[1082,1,1,210,211],[1085,1,1,211,212],[1086,1,1,212,213],[1087,1,1,213,214],[1089,1,1,214,215],[1090,1,1,215,216]]],[47,4,4,216,220,[[1091,1,1,216,217],[1095,1,1,217,218],[1096,2,2,218,220]]],[48,1,1,220,221,[[1102,1,1,220,221]]],[50,3,3,221,224,[[1109,2,2,221,223],[1110,1,1,223,224]]],[51,1,1,224,225,[[1113,1,1,224,225]]],[53,3,3,225,228,[[1119,1,1,225,226],[1120,1,1,226,227],[1121,1,1,227,228]]],[54,2,2,228,230,[[1126,2,2,228,230]]],[57,8,8,230,238,[[1135,4,4,230,234],[1136,1,1,234,235],[1138,1,1,235,236],[1142,1,1,236,237],[1145,1,1,237,238]]],[58,6,6,238,244,[[1147,4,4,238,242],[1149,1,1,242,243],[1150,1,1,243,244]]],[59,1,1,244,245,[[1153,1,1,244,245]]],[61,19,19,245,264,[[1159,5,5,245,250],[1160,5,5,250,255],[1161,4,4,255,259],[1162,2,2,259,261],[1163,3,3,261,264]]],[63,2,2,264,266,[[1165,2,2,264,266]]],[65,6,6,266,272,[[1169,3,3,266,269],[1177,1,1,269,270],[1188,2,2,270,272]]]],[23218,23247,23253,23257,23266,23280,23281,23296,23297,23304,23305,23325,23326,23347,23364,23400,23430,23431,23459,23465,23486,23500,23525,23604,23638,23647,23691,23698,23720,23732,23739,23740,23742,23743,23744,23745,23746,23796,23799,23818,23819,23829,23847,23850,23851,23852,23896,23936,23980,23983,23985,24005,24067,24209,24255,24312,24313,24349,24417,24429,24430,24474,24503,24536,24575,24581,24583,24585,24588,24599,24600,24603,24618,24623,24631,24643,24663,24671,24672,24692,24728,24738,24768,24785,25069,25070,25119,25179,25180,25218,25349,25369,25385,25417,25497,25504,25521,25523,25587,25596,25650,25651,25654,25655,25684,25705,25762,25771,25784,25785,25807,25931,25932,26132,26241,26253,26308,26319,26345,26365,26397,26405,26412,26417,26432,26433,26435,26436,26462,26471,26490,26532,26533,26563,26571,26580,26604,26606,26612,26627,26647,26650,26665,26671,26682,26683,26691,26706,26709,26713,26733,26837,26920,26921,26923,27097,27123,27218,27403,27807,27828,27987,27988,28093,28094,28182,28197,28231,28265,28270,28288,28303,28327,28448,28452,28465,28471,28485,28495,28498,28515,28523,28526,28527,28535,28537,28556,28595,28614,28615,28649,28650,28666,28667,28668,28684,28685,28686,28689,28692,28694,28701,28702,28706,28708,28779,28780,28782,28783,28786,28878,28944,28960,28979,29028,29045,29065,29164,29189,29195,29345,29530,29540,29552,29598,29704,29731,29746,29832,29848,30001,30002,30009,30010,30021,30047,30171,30264,30295,30307,30308,30310,30352,30373,30437,30546,30547,30548,30549,30550,30551,30553,30565,30574,30579,30581,30599,30600,30601,30615,30623,30638,30639,30640,30663,30668,30749,30765,30766,30878,31098,31099]]],["+",[70,65,[[39,24,22,0,22,[[933,2,2,0,2],[936,1,1,2,3],[938,3,3,3,6],[939,2,2,6,8],[940,1,1,8,9],[942,1,1,9,10],[943,1,1,10,11],[944,2,1,11,12],[946,4,3,12,15],[948,4,4,15,19],[951,1,1,19,20],[952,1,1,20,21],[954,1,1,21,22]]],[40,14,13,22,35,[[962,3,3,22,25],[963,1,1,25,26],[965,2,1,26,27],[966,5,5,27,32],[967,1,1,32,33],[969,1,1,33,34],[970,1,1,34,35]]],[41,12,10,35,45,[[976,1,1,35,36],[979,1,1,36,37],[981,2,1,37,38],[982,2,2,38,40],[985,2,2,40,42],[988,1,1,42,43],[989,2,1,43,44],[990,1,1,44,45]]],[42,2,2,45,47,[[1009,1,1,45,46],[1011,1,1,46,47]]],[44,2,2,47,49,[[1059,1,1,47,48],[1060,1,1,48,49]]],[45,3,3,49,52,[[1067,1,1,49,50],[1077,2,2,50,52]]],[46,2,2,52,54,[[1085,1,1,52,53],[1087,1,1,53,54]]],[47,2,2,54,56,[[1091,1,1,54,55],[1096,1,1,55,56]]],[48,1,1,56,57,[[1102,1,1,56,57]]],[50,1,1,57,58,[[1109,1,1,57,58]]],[57,3,3,58,61,[[1135,2,2,58,60],[1138,1,1,60,61]]],[61,1,1,61,62,[[1161,1,1,61,62]]],[63,1,1,62,63,[[1165,1,1,62,63]]],[65,2,2,63,65,[[1169,1,1,63,64],[1177,1,1,64,65]]]],[23253,23266,23364,23430,23431,23459,23465,23486,23525,23604,23638,23691,23732,23745,23746,23796,23799,23818,23819,23936,23985,24067,24417,24429,24430,24474,24575,24599,24603,24618,24623,24631,24663,24728,24768,25069,25218,25349,25369,25385,25521,25523,25651,25684,25705,26650,26706,28288,28327,28485,28779,28782,28944,28979,29065,29195,29345,29540,30001,30009,30047,30601,30663,30765,30878]]],["I",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26733]]],["If",[53,53,[[39,5,5,0,5,[[937,1,1,0,1],[945,1,1,1,2],[949,2,2,2,4],[950,1,1,4,5]]],[40,5,5,5,10,[[957,1,1,5,6],[963,1,1,6,7],[967,1,1,7,8],[968,1,1,8,9],[970,1,1,9,10]]],[41,5,5,10,15,[[976,1,1,10,11],[989,1,1,11,12],[992,2,2,12,14],[994,1,1,14,15]]],[42,19,19,15,34,[[1001,1,1,15,16],[1003,2,2,16,18],[1004,5,5,18,23],[1007,2,2,23,25],[1008,1,1,25,26],[1010,3,3,26,29],[1011,2,2,29,31],[1015,1,1,31,32],[1017,2,2,32,34]]],[45,4,4,34,38,[[1067,1,1,34,35],[1073,1,1,35,36],[1075,2,2,36,38]]],[54,1,1,38,39,[[1126,1,1,38,39]]],[58,2,2,39,41,[[1147,1,1,39,40],[1149,1,1,40,41]]],[61,10,10,41,51,[[1159,4,4,41,45],[1160,3,3,45,48],[1162,2,2,48,50],[1163,1,1,50,51]]],[65,2,2,51,53,[[1169,1,1,51,52],[1188,1,1,52,53]]]],[23400,23720,23847,23851,23896,24255,24474,24671,24692,24785,25070,25654,25784,25807,25931,26241,26345,26365,26412,26417,26432,26433,26435,26532,26571,26606,26682,26683,26691,26706,26709,26837,26920,26921,28471,28649,28701,28708,29848,30308,30352,30546,30548,30549,30550,30565,30574,30579,30615,30623,30640,30749,31098]]],["Though",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[45,1,1,1,2,[[1074,1,1,1,2]]]],[28182,28666]]],["except",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28685]]],["if",[155,148,[[39,30,28,0,28,[[932,1,1,0,1],[933,4,4,1,5],[934,4,4,5,9],[935,2,2,9,11],[936,1,1,11,12],[940,1,1,12,13],[943,1,1,13,14],[944,1,1,14,15],[946,8,6,15,21],[949,3,3,21,24],[952,3,3,24,27],[956,1,1,27,28]]],[40,13,13,28,41,[[959,2,2,28,30],[960,1,1,30,31],[964,2,2,31,33],[965,4,4,33,37],[966,1,1,37,38],[967,2,2,38,40],[969,1,1,40,41]]],[41,15,15,41,56,[[977,1,1,41,42],[978,2,2,42,44],[983,1,1,44,45],[984,2,2,45,47],[986,1,1,47,48],[987,1,1,48,49],[988,1,1,49,50],[989,2,2,50,52],[991,2,2,52,54],[992,1,1,54,55],[994,1,1,55,56]]],[42,23,23,56,79,[[999,1,1,56,57],[1001,1,1,57,58],[1002,2,2,58,60],[1004,3,3,60,63],[1005,2,2,63,65],[1006,1,1,65,66],[1007,3,3,66,69],[1008,4,4,69,73],[1009,2,2,73,75],[1010,1,1,75,76],[1011,1,1,76,77],[1012,1,1,77,78],[1017,1,1,78,79]]],[43,4,4,79,83,[[1022,1,1,79,80],[1026,1,1,80,81],[1042,1,1,81,82],[1043,1,1,82,83]]],[44,13,10,83,93,[[1047,3,2,83,85],[1052,3,2,85,87],[1055,1,1,87,88],[1056,1,1,88,89],[1057,2,1,89,90],[1058,1,1,90,91],[1059,1,1,91,92],[1060,1,1,92,93]]],[45,26,24,93,117,[[1065,1,1,93,94],[1066,1,1,94,95],[1068,7,6,95,101],[1069,3,2,101,103],[1070,1,1,103,104],[1071,1,1,104,105],[1072,2,2,105,107],[1073,1,1,107,108],[1075,6,6,108,114],[1077,3,3,114,117]]],[46,3,3,117,120,[[1082,1,1,117,118],[1086,1,1,118,119],[1090,1,1,119,120]]],[47,2,2,120,122,[[1095,1,1,120,121],[1096,1,1,121,122]]],[50,2,2,122,124,[[1109,1,1,122,123],[1110,1,1,123,124]]],[51,1,1,124,125,[[1113,1,1,124,125]]],[53,3,3,125,128,[[1119,1,1,125,126],[1120,1,1,126,127],[1121,1,1,127,128]]],[54,1,1,128,129,[[1126,1,1,128,129]]],[57,5,5,129,134,[[1135,2,2,129,131],[1136,1,1,131,132],[1142,1,1,132,133],[1145,1,1,133,134]]],[58,3,3,134,137,[[1147,2,2,134,136],[1150,1,1,136,137]]],[59,1,1,137,138,[[1153,1,1,137,138]]],[61,7,7,138,145,[[1159,1,1,138,139],[1160,2,2,139,141],[1161,2,2,141,143],[1163,2,2,143,145]]],[63,1,1,145,146,[[1165,1,1,145,146]]],[65,2,2,146,148,[[1169,1,1,146,147],[1188,1,1,147,148]]]],[23218,23247,23257,23280,23281,23296,23297,23304,23305,23325,23326,23347,23500,23647,23698,23739,23740,23742,23743,23744,23746,23829,23850,23852,23980,23983,24005,24209,24312,24313,24349,24503,24536,24581,24583,24585,24588,24600,24643,24672,24738,25119,25179,25180,25417,25497,25504,25587,25596,25650,25654,25655,25762,25771,25785,25932,26132,26253,26308,26319,26397,26405,26436,26462,26471,26490,26533,26563,26580,26604,26606,26612,26627,26647,26665,26671,26713,26733,26923,27097,27218,27807,27828,27987,27988,28093,28094,28197,28231,28265,28270,28303,28327,28452,28465,28495,28498,28515,28523,28526,28527,28535,28537,28556,28595,28614,28615,28650,28684,28686,28689,28692,28702,28706,28780,28783,28786,28878,28960,29045,29164,29189,29530,29552,29598,29704,29731,29746,29832,30002,30010,30021,30171,30264,30295,30310,30373,30437,30547,30551,30553,30599,30600,30638,30639,30668,30766,31099]]],["shall",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27123]]],["though",[9,7,[[43,1,1,0,1,[[1030,1,1,0,1]]],[45,6,4,1,5,[[1065,1,1,1,2],[1070,1,1,2,3],[1074,4,2,3,5]]],[46,1,1,5,6,[[1089,1,1,5,6]]],[58,1,1,6,7,[[1147,1,1,6,7]]]],[27403,28448,28556,28667,28668,29028,30307]]],["when",[2,2,[[45,1,1,0,1,[[1075,1,1,0,1]]],[61,1,1,1,2,[[1161,1,1,1,2]]]],[28694,30581]]],["whether",[3,1,[[44,3,1,0,1,[[1059,3,1,0,1]]]],[28288]]]]},{"k":"G1438","v":[["*",[340,312,[[39,31,27,0,27,[[931,1,1,0,1],[934,1,1,1,2],[936,1,1,2,3],[937,2,2,3,5],[940,5,3,5,8],[941,1,1,8,9],[942,1,1,9,10],[943,1,1,10,11],[944,3,3,11,14],[946,1,1,14,15],[947,1,1,15,16],[949,3,3,16,19],[951,4,3,19,22],[953,3,2,22,24],[954,1,1,24,25],[955,2,2,25,27]]],[40,27,27,27,54,[[958,2,2,27,29],[959,3,3,29,32],[960,1,1,32,33],[961,3,3,33,36],[962,2,2,36,38],[964,2,2,38,40],[965,4,4,40,44],[966,1,1,44,45],[967,1,1,45,46],[968,2,2,46,48],[969,1,1,48,49],[970,3,3,49,52],[971,1,1,52,53],[972,1,1,53,54]]],[41,61,58,54,112,[[973,1,1,54,55],[975,1,1,55,56],[979,3,3,56,59],[981,4,4,59,63],[982,1,1,63,64],[983,4,4,64,68],[984,7,7,68,75],[985,2,2,75,77],[986,5,3,77,80],[987,3,3,80,83],[988,5,5,83,88],[989,2,2,88,90],[990,5,4,90,94],[991,3,3,94,97],[992,3,3,97,100],[993,2,2,100,102],[994,3,3,102,105],[995,5,5,105,110],[996,2,2,110,112]]],[42,27,26,112,138,[[998,1,1,112,113],[1001,5,4,113,117],[1002,2,2,117,119],[1003,2,2,119,121],[1004,1,1,121,122],[1007,4,4,122,126],[1008,2,2,126,128],[1009,2,2,128,130],[1011,1,1,130,131],[1012,1,1,131,132],[1014,1,1,132,133],[1015,2,2,133,135],[1016,1,1,135,136],[1017,2,2,136,138]]],[43,21,21,138,159,[[1018,1,1,138,139],[1022,2,2,139,141],[1024,1,1,141,142],[1025,2,2,142,144],[1027,1,1,144,145],[1029,1,1,145,146],[1030,1,1,146,147],[1031,1,1,147,148],[1032,1,1,148,149],[1033,1,1,149,150],[1036,1,1,150,151],[1037,1,1,151,152],[1038,1,1,152,153],[1040,3,3,153,156],[1042,1,1,156,157],[1045,2,2,157,159]]],[44,24,23,159,182,[[1046,2,2,159,161],[1047,1,1,161,162],[1049,1,1,162,163],[1050,1,1,163,164],[1051,3,3,164,167],[1053,2,2,167,169],[1056,1,1,169,170],[1057,2,2,170,172],[1058,2,2,172,174],[1059,5,4,174,178],[1060,2,2,178,180],[1061,2,2,180,182]]],[45,16,16,182,198,[[1064,1,1,182,183],[1067,2,2,183,185],[1068,2,2,185,187],[1071,2,2,187,189],[1072,4,4,189,193],[1074,1,1,193,194],[1075,2,2,194,196],[1077,2,2,196,198]]],[46,31,19,198,217,[[1078,2,1,198,199],[1080,4,3,199,202],[1081,3,2,202,204],[1082,4,4,204,208],[1083,1,1,208,209],[1084,2,2,209,211],[1085,1,1,211,212],[1087,11,4,212,216],[1090,3,1,216,217]]],[47,8,7,217,224,[[1091,1,1,217,218],[1092,2,2,218,220],[1095,1,1,220,221],[1096,4,3,221,224]]],[48,16,11,224,235,[[1098,1,1,224,225],[1100,3,3,225,228],[1101,12,7,228,235]]],[49,7,7,235,242,[[1104,6,6,235,241],[1105,1,1,241,242]]],[50,2,2,242,244,[[1109,2,2,242,244]]],[51,6,6,244,250,[[1112,4,4,244,248],[1114,1,1,248,249],[1115,1,1,249,250]]],[52,4,4,250,254,[[1117,2,2,250,252],[1118,2,2,252,254]]],[53,5,5,254,259,[[1120,2,2,254,256],[1121,1,1,256,257],[1124,2,2,257,259]]],[54,3,3,259,262,[[1126,2,2,259,261],[1128,1,1,261,262]]],[55,2,1,262,263,[[1130,2,1,262,263]]],[57,13,13,263,276,[[1133,1,1,263,264],[1135,1,1,264,265],[1137,3,3,265,268],[1138,2,2,268,270],[1139,1,1,270,271],[1141,3,3,271,274],[1142,2,2,274,276]]],[58,5,5,276,281,[[1146,3,3,276,279],[1147,2,2,279,281]]],[59,5,5,281,286,[[1151,1,1,281,282],[1153,1,1,282,283],[1154,3,3,283,286]]],[60,1,1,286,287,[[1157,1,1,286,287]]],[61,5,5,287,292,[[1159,1,1,287,288],[1161,1,1,288,289],[1163,3,3,289,292]]],[62,1,1,292,293,[[1164,1,1,292,293]]],[64,7,7,293,300,[[1166,7,7,293,300]]],[65,12,12,300,312,[[1168,2,2,300,302],[1169,1,1,302,303],[1170,1,1,303,304],[1172,1,1,304,305],[1174,1,1,305,306],[1176,3,3,306,309],[1183,1,1,309,310],[1184,1,1,310,311],[1185,1,1,311,312]]]],[23201,23316,23367,23382,23400,23514,23515,23534,23560,23612,23663,23679,23680,23696,23731,23774,23834,23851,23864,23930,23949,23955,24011,24017,24065,24164,24171,24268,24279,24312,24313,24314,24340,24369,24390,24394,24443,24458,24514,24534,24546,24548,24571,24588,24614,24671,24680,24706,24726,24758,24761,24787,24857,24876,24917,25033,25225,25234,25244,25324,25326,25348,25361,25392,25422,25423,25426,25431,25460,25476,25480,25492,25495,25506,25516,25537,25552,25564,25579,25586,25593,25605,25608,25623,25625,25628,25629,25635,25654,25665,25692,25697,25699,25702,25743,25744,25766,25784,25793,25799,25856,25860,25881,25887,25930,25937,25947,25963,25970,25983,26003,26018,26119,26228,26229,26236,26252,26310,26318,26346,26363,26403,26556,26561,26574,26578,26588,26599,26634,26662,26703,26739,26819,26832,26849,26877,26899,26905,26926,27094,27095,27137,27185,27210,27276,27348,27408,27431,27471,27510,27616,27654,27687,27746,27748,27755,27800,27915,27928,27954,27957,27976,28041,28055,28079,28081,28084,28119,28139,28234,28261,28264,28268,28275,28287,28292,28294,28302,28304,28306,28340,28354,28428,28474,28486,28489,28524,28591,28596,28605,28628,28629,28631,28670,28682,28706,28778,28791,28809,28842,28846,28854,28861,28864,28889,28892,28895,28896,28902,28917,28927,28937,28978,28983,28985,28989,29048,29061,29093,29101,29176,29191,29192,29196,29244,29288,29291,29304,29306,29323,29329,29331,29332,29333,29337,29394,29395,29398,29399,29403,29412,29442,29530,29533,29577,29578,29581,29582,29607,29634,29665,29667,29687,29690,29722,29725,29744,29798,29807,29840,29848,29873,29922,29966,30008,30033,30034,30035,30050,30057,30091,30112,30119,30130,30158,30167,30288,30290,30293,30297,30310,30386,30429,30454,30456,30465,30501,30548,30582,30634,30642,30645,30653,30678,30684,30685,30690,30691,30692,30693,30726,30737,30755,30776,30808,30833,30864,30865,30868,30988,31000,31024]]],["+",[22,21,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,2,2,2,4,[[986,1,1,2,3],[989,1,1,3,4]]],[42,1,1,4,5,[[1007,1,1,4,5]]],[43,3,3,5,8,[[1040,3,3,5,8]]],[45,1,1,8,9,[[1067,1,1,8,9]]],[46,4,3,9,12,[[1087,2,2,9,11],[1090,2,1,11,12]]],[48,1,1,12,13,[[1100,1,1,12,13]]],[49,1,1,13,14,[[1104,1,1,13,14]]],[53,1,1,14,15,[[1124,1,1,14,15]]],[57,2,2,15,17,[[1138,1,1,15,16],[1142,1,1,16,17]]],[58,1,1,17,18,[[1147,1,1,17,18]]],[59,1,1,18,19,[[1154,1,1,18,19]]],[65,2,2,19,21,[[1170,1,1,19,20],[1185,1,1,20,21]]]],[23774,24390,25586,25654,26556,27746,27748,27755,28474,28983,28985,29048,29291,29398,29798,30050,30158,30310,30456,30776,31024]]],["another",[4,4,[[48,1,1,0,1,[[1100,1,1,0,1]]],[50,2,2,1,3,[[1109,2,2,1,3]]],[57,1,1,3,4,[[1135,1,1,3,4]]]],[29304,29530,29533,30008]]],["conceits",[2,2,[[44,2,2,0,2,[[1056,1,1,0,1],[1057,1,1,1,2]]]],[28234,28261]]],["her",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]]],[23955,25552,28605,29577]]],["herself",[4,4,[[39,1,1,0,1,[[937,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[65,2,2,2,4,[[1168,1,1,2,3],[1184,1,1,3,4]]]],[23400,24917,30737,31000]]],["him",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]]],[24787,25348,28778]]],["himself",[111,103,[[39,9,7,0,7,[[940,3,2,0,2],[941,1,1,2,3],[944,1,1,3,4],[946,1,1,4,5],[951,2,1,5,6],[955,1,1,6,7]]],[40,6,6,7,13,[[959,1,1,7,8],[961,2,2,8,10],[964,1,1,10,11],[968,1,1,11,12],[971,1,1,12,13]]],[41,21,19,13,32,[[979,1,1,13,14],[981,2,2,14,16],[982,1,1,16,17],[983,2,2,17,19],[984,2,2,19,21],[986,2,1,21,22],[987,1,1,22,23],[988,1,1,23,24],[990,4,3,24,27],[991,1,1,27,28],[995,2,2,28,30],[996,2,2,30,32]]],[42,16,15,32,47,[[998,1,1,32,33],[1001,4,3,33,36],[1002,1,1,36,37],[1003,1,1,37,38],[1004,1,1,38,39],[1007,2,2,39,41],[1009,2,2,41,43],[1012,1,1,43,44],[1015,1,1,44,45],[1017,2,2,45,47]]],[43,11,11,47,58,[[1018,1,1,47,48],[1022,1,1,48,49],[1025,2,2,49,51],[1027,1,1,51,52],[1029,1,1,52,53],[1031,1,1,53,54],[1033,1,1,54,55],[1036,1,1,55,56],[1042,1,1,56,57],[1045,1,1,57,58]]],[44,5,4,58,62,[[1059,4,3,58,61],[1060,1,1,61,62]]],[45,5,5,62,67,[[1064,1,1,62,63],[1072,2,2,63,65],[1075,2,2,65,67]]],[46,5,4,67,71,[[1082,2,2,67,69],[1087,3,2,69,71]]],[47,5,5,71,76,[[1091,1,1,71,72],[1092,2,2,72,74],[1096,2,2,74,76]]],[48,6,6,76,82,[[1098,1,1,76,77],[1101,5,5,77,82]]],[49,2,2,82,84,[[1104,1,1,82,83],[1105,1,1,83,84]]],[52,1,1,84,85,[[1117,1,1,84,85]]],[53,1,1,85,86,[[1120,1,1,85,86]]],[54,2,2,86,88,[[1126,2,2,86,88]]],[55,2,1,88,89,[[1130,2,1,88,89]]],[57,9,9,89,98,[[1133,1,1,89,90],[1137,3,3,90,93],[1138,1,1,93,94],[1139,1,1,94,95],[1141,3,3,95,98]]],[58,2,2,98,100,[[1146,2,2,98,100]]],[61,3,3,100,103,[[1161,1,1,100,101],[1163,2,2,101,103]]]],[23515,23534,23560,23696,23731,23930,24171,24314,24369,24394,24534,24706,24857,25234,25324,25326,25392,25423,25431,25476,25480,25564,25605,25623,25692,25699,25702,25743,25937,25970,26003,26018,26119,26228,26229,26236,26318,26346,26403,26561,26574,26634,26662,26739,26832,26899,26905,26926,27095,27185,27210,27276,27348,27431,27510,27616,27800,27915,28287,28292,28302,28306,28428,28628,28629,28682,28706,28895,28896,28978,28989,29061,29093,29101,29191,29192,29244,29306,29329,29331,29332,29337,29399,29442,29665,29722,29840,29848,29922,29966,30033,30034,30035,30057,30091,30112,30119,30130,30290,30293,30582,30634,30642]]],["his",[19,19,[[41,8,8,0,8,[[983,1,1,0,1],[984,1,1,1,2],[985,1,1,2,3],[986,1,1,3,4],[987,2,2,4,6],[988,1,1,6,7],[991,1,1,7,8]]],[44,1,1,8,9,[[1050,1,1,8,9]]],[45,1,1,9,10,[[1068,1,1,9,10]]],[46,1,1,10,11,[[1080,1,1,10,11]]],[47,1,1,11,12,[[1096,1,1,11,12]]],[48,2,2,12,14,[[1101,2,2,12,14]]],[51,3,3,14,17,[[1112,2,2,14,16],[1114,1,1,16,17]]],[52,1,1,17,18,[[1117,1,1,17,18]]],[65,1,1,18,19,[[1176,1,1,18,19]]]],[25426,25506,25537,25579,25593,25608,25625,25744,28055,28524,28854,29196,29332,29337,29581,29582,29607,29667,30868]]],["home",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26877]]],["itself",[9,8,[[39,3,2,0,2,[[934,1,1,0,1],[940,2,1,1,2]]],[40,2,2,2,4,[[959,2,2,2,4]]],[41,1,1,4,5,[[983,1,1,4,5]]],[42,1,1,5,6,[[1011,1,1,5,6]]],[44,1,1,6,7,[[1059,1,1,6,7]]],[48,1,1,7,8,[[1100,1,1,7,8]]]],[23316,23514,24312,24313,25422,26703,28294,29288]]],["ourselves",[17,14,[[44,2,2,0,2,[[1053,1,1,0,1],[1060,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[46,12,9,3,12,[[1078,2,1,3,4],[1080,3,2,4,6],[1081,3,2,6,8],[1082,1,1,8,9],[1083,1,1,9,10],[1084,1,1,10,11],[1087,1,1,11,12]]],[52,1,1,12,13,[[1118,1,1,12,13]]],[61,1,1,13,14,[[1159,1,1,13,14]]]],[28139,28304,28631,28809,28842,28846,28861,28864,28889,28902,28917,28983,29687,30548]]],["own",[20,20,[[41,1,1,0,1,[[986,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[44,4,4,2,6,[[1049,1,1,2,3],[1053,1,1,3,4],[1061,2,2,4,6]]],[45,5,5,6,11,[[1067,1,1,6,7],[1068,1,1,7,8],[1071,2,2,8,10],[1074,1,1,10,11]]],[47,1,1,11,12,[[1096,1,1,11,12]]],[48,2,2,12,14,[[1101,2,2,12,14]]],[49,2,2,14,16,[[1104,2,2,14,16]]],[51,1,1,16,17,[[1112,1,1,16,17]]],[52,1,1,17,18,[[1118,1,1,17,18]]],[64,2,2,18,20,[[1166,2,2,18,20]]]],[25579,27137,28041,28119,28340,28354,28486,28489,28591,28596,28670,29192,29332,29333,29403,29412,29578,29690,30685,30690]]],["selves",[3,3,[[41,1,1,0,1,[[993,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[25856,28937,30288]]],["their",[15,15,[[39,3,3,0,3,[[936,1,1,0,1],[949,1,1,1,2],[953,1,1,2,3]]],[41,6,6,3,9,[[981,1,1,3,4],[984,1,1,4,5],[988,1,1,5,6],[991,1,1,6,7],[994,1,1,7,8],[995,1,1,8,9]]],[48,1,1,9,10,[[1101,1,1,9,10]]],[59,1,1,10,11,[[1154,1,1,10,11]]],[64,1,1,11,12,[[1166,1,1,11,12]]],[65,3,3,12,15,[[1176,2,2,12,14],[1183,1,1,14,15]]]],[23367,23834,24011,25361,25495,25628,25766,25930,25983,29332,30465,30678,30864,30865,30988]]],["them",[7,7,[[39,3,3,0,3,[[943,1,1,0,1],[953,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[958,1,1,3,4],[964,1,1,4,5]]],[42,1,1,5,6,[[1015,1,1,5,6]]],[43,1,1,6,7,[[1038,1,1,6,7]]]],[23663,24011,24164,24279,24514,26849,27687]]],["themselves",[51,47,[[39,5,5,0,5,[[937,1,1,0,1],[942,1,1,1,2],[944,1,1,2,3],[949,2,2,3,5]]],[40,11,11,5,16,[[958,1,1,5,6],[960,1,1,6,7],[962,2,2,7,9],[965,2,2,9,11],[966,1,1,11,12],[967,1,1,12,13],[968,1,1,13,14],[970,1,1,14,15],[972,1,1,15,16]]],[41,8,8,16,24,[[979,2,2,16,18],[990,1,1,18,19],[992,3,3,19,22],[994,1,1,22,23],[995,1,1,23,24]]],[42,3,3,24,27,[[1003,1,1,24,25],[1007,1,1,25,26],[1008,1,1,26,27]]],[43,1,1,27,28,[[1045,1,1,27,28]]],[44,4,4,28,32,[[1046,2,2,28,30],[1047,1,1,30,31],[1058,1,1,31,32]]],[45,1,1,32,33,[[1077,1,1,32,33]]],[46,6,2,33,35,[[1082,1,1,33,34],[1087,5,1,34,35]]],[49,1,1,35,36,[[1104,1,1,35,36]]],[53,3,3,36,39,[[1120,1,1,36,37],[1121,1,1,37,38],[1124,1,1,38,39]]],[54,1,1,39,40,[[1128,1,1,39,40]]],[59,2,2,40,42,[[1151,1,1,40,41],[1153,1,1,41,42]]],[60,1,1,42,43,[[1157,1,1,42,43]]],[64,2,2,43,45,[[1166,2,2,43,45]]],[65,2,2,45,47,[[1172,1,1,45,46],[1174,1,1,46,47]]]],[23382,23612,23679,23851,23864,24268,24340,24443,24458,24546,24548,24614,24671,24680,24758,24876,25225,25244,25697,25784,25793,25799,25887,25947,26363,26578,26599,27928,27954,27957,27976,28268,28791,28892,28983,29394,29725,29744,29807,29873,30386,30429,30501,30684,30691,30808,30833]]],["they",[2,2,[[65,2,2,0,2,[[1168,1,1,0,1],[1169,1,1,1,2]]]],[30726,30755]]],["things",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29395]]],["thyself",[3,3,[[42,1,1,0,1,[[1014,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]]],[26819,28275,29176]]],["ye",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25460]]],["you",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,3,3,2,5,[[1001,1,1,2,3],[1002,1,1,3,4],[1008,1,1,4,5]]]],[24065,24761,26252,26310,26588]]],["your",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29329]]],["yourselves",[35,35,[[39,4,4,0,4,[[931,1,1,0,1],[944,1,1,1,2],[951,1,1,2,3],[953,1,1,3,4]]],[40,3,3,4,7,[[965,2,2,4,6],[969,1,1,6,7]]],[41,9,9,7,16,[[975,1,1,7,8],[984,2,2,8,10],[988,2,2,10,12],[989,1,1,12,13],[993,1,1,13,14],[994,1,1,14,15],[995,1,1,15,16]]],[43,4,4,16,20,[[1022,1,1,16,17],[1030,1,1,17,18],[1032,1,1,18,19],[1037,1,1,19,20]]],[44,4,4,20,24,[[1051,3,3,20,23],[1057,1,1,23,24]]],[46,2,2,24,26,[[1084,1,1,24,25],[1090,1,1,25,26]]],[48,1,1,26,27,[[1101,1,1,26,27]]],[51,1,1,27,28,[[1115,1,1,27,28]]],[57,1,1,28,29,[[1142,1,1,28,29]]],[58,1,1,29,30,[[1147,1,1,29,30]]],[59,1,1,30,31,[[1154,1,1,30,31]]],[61,1,1,31,32,[[1163,1,1,31,32]]],[62,1,1,32,33,[[1164,1,1,32,33]]],[64,2,2,33,35,[[1166,2,2,33,35]]]],[23201,23680,23949,24017,24571,24588,24726,25033,25492,25516,25629,25635,25665,25860,25881,25963,27094,27408,27471,27654,28079,28081,28084,28264,28927,29048,29323,29634,30167,30297,30454,30645,30653,30692,30693]]]]},{"k":"G1439","v":[["*",[13,13,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,2,2,1,3,[[976,1,1,1,2],[994,1,1,2,3]]],[43,8,8,3,11,[[1022,1,1,3,4],[1031,1,1,4,5],[1033,1,1,5,6],[1036,1,1,6,7],[1040,1,1,7,8],[1044,2,2,8,10],[1045,1,1,10,11]]],[45,1,1,11,12,[[1071,1,1,11,12]]],[65,1,1,12,13,[[1168,1,1,12,13]]]],[24000,25104,25915,27097,27430,27490,27615,27766,27887,27895,27903,28580,30737]]],["+",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[24000,27097]]],["Suffer",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25915]]],["committed",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27895]]],["left",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27766]]],["let",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27887]]],["suffer",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28580]]],["suffered",[4,4,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,3,3,1,4,[[1031,1,1,1,2],[1033,1,1,2,3],[1036,1,1,3,4]]]],[25104,27430,27490,27615]]],["sufferest",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30737]]],["suffereth",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27903]]]]},{"k":"G1440","v":[["*",[5,5,[[41,2,2,0,2,[[982,2,2,0,2]]],[43,3,3,2,5,[[1024,1,1,2,3],[1040,1,1,3,4],[1044,1,1,4,5]]]],[25364,25380,27130,27757,27892]]],["+",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1044,1,1,1,2]]]],[27130,27892]]],["seventy",[2,2,[[41,2,2,0,2,[[982,2,2,0,2]]]],[25364,25380]]],["ten",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27757]]]]},{"k":"G1441","v":[["times",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23749]]]]},{"k":"G1442","v":[["seventh",[9,8,[[42,1,1,0,1,[[1000,1,1,0,1]]],[57,2,1,1,2,[[1136,2,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]],[65,5,5,3,8,[[1174,1,1,3,4],[1176,1,1,4,5],[1177,1,1,5,6],[1182,1,1,6,7],[1187,1,1,7,8]]]],[26208,30018,30686,30828,30868,30887,30971,31073]]]]},{"k":"G1443","v":[["Heber",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25060]]]]},{"k":"G1444","v":[["Hebrew",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25973]]]]},{"k":"G1445","v":[["*",[4,3,[[43,1,1,0,1,[[1023,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[49,2,1,2,3,[[1105,2,1,2,3]]]],[27102,29011,29426]]],["Hebrew",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29426]]],["Hebrews",[3,3,[[43,1,1,0,1,[[1023,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]]],[27102,29011,29426]]]]},{"k":"G1446","v":[["Hebrew",[3,3,[[43,3,3,0,3,[[1038,1,1,0,1],[1039,1,1,1,2],[1043,1,1,2,3]]]],[27704,27706,27837]]]]},{"k":"G1447","v":[["*",[6,6,[[42,4,4,0,4,[[1001,1,1,0,1],[1015,3,3,1,4]]],[65,2,2,4,6,[[1175,1,1,4,5],[1182,1,1,5,6]]]],[26212,26838,26842,26845,30851,30970]]],["Hebrew",[3,3,[[42,3,3,0,3,[[1015,3,3,0,3]]]],[26838,26842,26845]]],["tongue",[3,3,[[42,1,1,0,1,[[1001,1,1,0,1]]],[65,2,2,1,3,[[1175,1,1,1,2],[1182,1,1,2,3]]]],[26212,30851,30970]]]]},{"k":"G1448","v":[["*",[43,42,[[39,8,8,0,8,[[931,1,1,0,1],[932,1,1,1,2],[938,1,1,2,3],[943,1,1,3,4],[949,2,2,4,6],[954,2,2,6,8]]],[40,3,3,8,11,[[957,1,1,8,9],[967,1,1,9,10],[970,1,1,10,11]]],[41,18,18,11,29,[[979,1,1,11,12],[982,2,2,12,14],[984,1,1,14,15],[987,2,2,15,17],[990,2,2,17,19],[991,3,3,19,22],[993,3,3,22,25],[994,2,2,25,27],[996,2,2,27,29]]],[43,6,6,29,35,[[1024,1,1,29,30],[1026,1,1,30,31],[1027,1,1,31,32],[1038,1,1,32,33],[1039,1,1,33,34],[1040,1,1,34,35]]],[44,1,1,35,36,[[1058,1,1,35,36]]],[49,1,1,36,37,[[1104,1,1,36,37]]],[57,2,2,37,39,[[1139,1,1,37,38],[1142,1,1,38,39]]],[58,3,2,39,41,[[1149,2,1,39,40],[1150,1,1,40,41]]],[59,1,1,41,42,[[1154,1,1,41,42]]]],[23194,23226,23424,23641,23827,23860,24099,24100,24230,24641,24796,25207,25372,25374,25492,25589,25613,25723,25728,25760,25768,25772,25834,25846,25854,25865,25911,26006,26019,27133,27219,27268,27697,27710,27749,28278,29421,30083,30158,30345,30362,30453]]],["+",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25589]]],["approacheth",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25492]]],["approaching",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30158]]],["hand",[9,9,[[39,5,5,0,5,[[931,1,1,0,1],[932,1,1,1,2],[938,1,1,2,3],[954,2,2,3,5]]],[40,2,2,5,7,[[957,1,1,5,6],[970,1,1,6,7]]],[44,1,1,7,8,[[1058,1,1,7,8]]],[59,1,1,8,9,[[1154,1,1,8,9]]]],[23194,23226,23424,24099,24100,24230,24796,28278,30453]]],["near",[9,9,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,5,5,1,6,[[990,1,1,1,2],[991,1,1,2,3],[993,1,1,3,4],[994,1,1,4,5],[996,1,1,5,6]]],[43,3,3,6,9,[[1026,1,1,6,7],[1038,1,1,7,8],[1040,1,1,8,9]]]],[23860,25728,25772,25834,25911,26006,27219,27697,27749]]],["nigh",[22,21,[[39,2,2,0,2,[[943,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[967,1,1,2,3]]],[41,11,11,3,14,[[979,1,1,3,4],[982,2,2,4,6],[987,1,1,6,7],[990,1,1,7,8],[991,2,2,8,10],[993,2,2,10,12],[994,1,1,12,13],[996,1,1,13,14]]],[43,3,3,14,17,[[1024,1,1,14,15],[1027,1,1,15,16],[1039,1,1,16,17]]],[49,1,1,17,18,[[1104,1,1,17,18]]],[57,1,1,18,19,[[1139,1,1,18,19]]],[58,3,2,19,21,[[1149,2,1,19,20],[1150,1,1,20,21]]]],[23641,23827,24641,25207,25372,25374,25613,25723,25760,25768,25846,25854,25865,26019,27133,27268,27710,29421,30083,30345,30362]]]]},{"k":"G1449","v":[["written",[2,2,[[46,2,2,0,2,[[1080,2,2,0,2]]]],[28843,28844]]]]},{"k":"G1450","v":[["surety",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30086]]]]},{"k":"G1451","v":[["*",[30,30,[[39,3,3,0,3,[[952,2,2,0,2],[954,1,1,2,3]]],[40,2,2,3,5,[[969,2,2,3,5]]],[41,3,3,5,8,[[991,1,1,5,6],[993,2,2,6,8]]],[42,11,11,8,19,[[998,1,1,8,9],[999,1,1,9,10],[1002,3,3,10,13],[1003,1,1,13,14],[1007,3,3,14,17],[1015,2,2,17,19]]],[43,3,3,19,22,[[1018,1,1,19,20],[1026,1,1,20,21],[1044,1,1,21,22]]],[44,1,1,22,23,[[1055,1,1,22,23]]],[48,2,2,23,25,[[1098,2,2,23,25]]],[49,1,1,25,26,[[1106,1,1,25,26]]],[57,2,2,26,28,[[1138,1,1,26,27],[1140,1,1,27,28]]],[65,2,2,28,30,[[1167,1,1,28,29],[1188,1,1,29,30]]]],[23989,23990,24072,24745,24746,25742,25856,25857,26108,26143,26261,26276,26280,26330,26541,26577,26578,26845,26867,26935,27254,27863,28196,29242,29246,29447,30052,30105,30700,31090]]],["+",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30105]]],["from",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26935]]],["hand",[10,10,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,2,2,1,3,[[993,2,2,1,3]]],[42,4,4,3,7,[[998,1,1,3,4],[1003,1,1,4,5],[1007,1,1,5,6],[1015,1,1,6,7]]],[49,1,1,7,8,[[1106,1,1,7,8]]],[65,2,2,8,10,[[1167,1,1,8,9],[1188,1,1,9,10]]]],[24072,25856,25857,26108,26330,26578,26867,29447,30700,31090]]],["near",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23990,24745]]],["nigh",[8,8,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[42,2,2,2,4,[[1002,2,2,2,4]]],[43,1,1,4,5,[[1044,1,1,4,5]]],[44,1,1,5,6,[[1055,1,1,5,6]]],[48,2,2,6,8,[[1098,2,2,6,8]]]],[23989,24746,26261,26276,27863,28196,29242,29246]]],["to",[5,5,[[41,1,1,0,1,[[991,1,1,0,1]]],[42,3,3,1,4,[[999,1,1,1,2],[1007,1,1,2,3],[1015,1,1,3,4]]],[43,1,1,4,5,[[1026,1,1,4,5]]]],[25742,26143,26577,26845,27254]]],["unto",[3,3,[[42,2,2,0,2,[[1002,1,1,0,1],[1007,1,1,1,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]]],[26280,26541,30052]]]]},{"k":"G1452","v":[["nearer",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28277]]]]},{"k":"G1453","v":[["*",[141,135,[[39,33,33,0,33,[[930,4,4,0,4],[931,1,1,4,5],[936,3,3,5,8],[937,5,5,8,13],[938,1,1,13,14],[939,2,2,14,16],[940,2,2,16,18],[942,1,1,18,19],[944,1,1,19,20],[945,2,2,20,22],[952,3,3,22,25],[953,1,1,25,26],[954,2,2,26,28],[955,3,3,28,31],[956,2,2,31,33]]],[40,18,18,33,51,[[957,1,1,33,34],[958,3,3,34,37],[959,1,1,37,38],[960,1,1,38,39],[961,1,1,39,40],[962,2,2,40,42],[965,1,1,42,43],[966,1,1,43,44],[968,1,1,44,45],[969,2,2,45,47],[970,2,2,47,49],[972,2,2,49,51]]],[41,19,19,51,70,[[973,1,1,51,52],[975,1,1,52,53],[977,2,2,53,55],[978,1,1,55,56],[979,3,3,56,59],[980,2,2,59,61],[981,2,2,61,63],[983,2,2,63,65],[985,1,1,65,66],[992,1,1,66,67],[993,1,1,67,68],[996,2,2,68,70]]],[42,13,13,70,83,[[998,3,3,70,73],[1001,2,2,73,75],[1003,1,1,75,76],[1007,1,1,76,77],[1008,3,3,77,80],[1009,1,1,80,81],[1010,1,1,81,82],[1017,1,1,82,83]]],[43,14,14,83,97,[[1020,3,3,83,86],[1021,1,1,86,87],[1022,1,1,87,88],[1026,1,1,88,89],[1027,2,2,89,91],[1029,1,1,91,92],[1030,4,4,92,96],[1043,1,1,96,97]]],[44,10,9,97,106,[[1049,2,2,97,99],[1051,2,2,99,101],[1052,1,1,101,102],[1053,3,2,102,104],[1055,1,1,104,105],[1058,1,1,105,106]]],[45,20,16,106,122,[[1067,1,1,106,107],[1076,19,15,107,122]]],[46,4,3,122,125,[[1078,1,1,122,123],[1081,2,1,123,124],[1082,1,1,124,125]]],[47,1,1,125,126,[[1091,1,1,125,126]]],[48,2,2,126,128,[[1097,1,1,126,127],[1101,1,1,127,128]]],[50,1,1,128,129,[[1108,1,1,128,129]]],[51,1,1,129,130,[[1111,1,1,129,130]]],[54,1,1,130,131,[[1126,1,1,130,131]]],[57,1,1,131,132,[[1143,1,1,131,132]]],[58,1,1,132,133,[[1150,1,1,132,133]]],[59,1,1,133,134,[[1151,1,1,133,134]]],[65,1,1,134,135,[[1177,1,1,134,135]]]],[23182,23183,23189,23190,23201,23360,23370,23371,23384,23385,23386,23398,23404,23425,23464,23470,23500,23531,23599,23693,23707,23723,23964,23968,23981,24015,24086,24100,24181,24192,24193,24201,24202,24246,24269,24271,24272,24291,24350,24405,24421,24423,24565,24637,24699,24725,24739,24782,24796,24879,24887,24962,25033,25130,25131,25154,25209,25211,25217,25269,25299,25308,25323,25413,25436,25543,25816,25836,25997,26025,26114,26115,26117,26218,26231,26380,26552,26581,26589,26597,26634,26699,26912,27002,27003,27011,27032,27089,27224,27285,27299,27344,27384,27385,27392,27399,27831,28046,28047,28072,28077,28095,28127,28150,28197,28277,28481,28722,28730,28731,28732,28733,28734,28735,28738,28747,28750,28753,28760,28761,28762,28770,28809,28873,28892,29058,29226,29318,29506,29570,29835,30191,30369,30395,30873]]],["+",[9,9,[[40,2,2,0,2,[[957,1,1,0,1],[965,1,1,1,2]]],[42,2,2,2,4,[[998,2,2,2,4]]],[43,2,2,4,6,[[1027,1,1,4,5],[1029,1,1,5,6]]],[45,1,1,6,7,[[1076,1,1,6,7]]],[58,1,1,7,8,[[1150,1,1,7,8]]],[59,1,1,8,9,[[1151,1,1,8,9]]]],[24246,24565,26114,26115,27285,27344,28733,30369,30395]]],["Arise",[10,10,[[39,5,5,0,5,[[930,2,2,0,2],[937,2,2,2,4],[945,1,1,4,5]]],[40,2,2,5,7,[[958,2,2,5,7]]],[41,2,2,7,9,[[977,1,1,7,8],[979,1,1,8,9]]],[42,1,1,9,10,[[1010,1,1,9,10]]]],[23182,23189,23384,23385,23707,24269,24271,25131,25209,26699]]],["Awake",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29318]]],["Rise",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[65,1,1,2,3,[[1177,1,1,2,3]]]],[24100,26218,30873]]],["Stand",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24291]]],["again",[9,9,[[39,4,4,0,4,[[944,1,1,0,1],[945,1,1,1,2],[954,1,1,2,3],[955,1,1,3,4]]],[43,1,1,4,5,[[1030,1,1,4,5]]],[44,2,2,5,7,[[1049,1,1,5,6],[1053,1,1,6,7]]],[45,1,1,7,8,[[1076,1,1,7,8]]],[46,1,1,8,9,[[1082,1,1,8,9]]]],[23693,23723,24086,24192,27399,28047,28150,28722,28892]]],["arise",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23981,24405,25299]]],["ariseth",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26380]]],["arose",[13,13,[[39,9,9,0,9,[[930,2,2,0,2],[936,2,2,2,4],[937,3,3,4,7],[953,1,1,7,8],[955,1,1,8,9]]],[40,1,1,9,10,[[958,1,1,9,10]]],[41,1,1,10,11,[[980,1,1,10,11]]],[42,1,1,11,12,[[1007,1,1,11,12]]],[43,1,1,12,13,[[1026,1,1,12,13]]]],[23183,23190,23360,23371,23386,23398,23404,24015,24181,24272,25269,26552,27224]]],["awake",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28277]]],["awoke",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23370]]],["out",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23500]]],["raise",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]]],[23425,27831]]],["raised",[25,24,[[41,3,3,0,3,[[979,1,1,0,1],[981,1,1,1,2],[992,1,1,2,3]]],[42,3,3,3,6,[[1008,3,3,3,6]]],[43,4,4,6,10,[[1020,1,1,6,7],[1021,1,1,7,8],[1030,2,2,8,10]]],[44,3,3,10,13,[[1051,1,1,10,11],[1052,1,1,11,12],[1055,1,1,12,13]]],[45,7,6,13,19,[[1076,7,6,13,19]]],[47,1,1,19,20,[[1091,1,1,19,20]]],[48,1,1,20,21,[[1097,1,1,20,21]]],[50,1,1,21,22,[[1108,1,1,21,22]]],[51,1,1,22,23,[[1111,1,1,22,23]]],[54,1,1,23,24,[[1126,1,1,23,24]]]],[25217,25323,25816,26581,26589,26597,27011,27032,27385,27392,28077,28095,28197,28734,28735,28760,28761,28762,28770,29058,29226,29506,29570,29835]]],["raiseth",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28809]]],["rise",[13,13,[[39,2,2,0,2,[[952,2,2,0,2]]],[40,5,5,2,7,[[960,1,1,2,3],[966,1,1,3,4],[968,1,1,4,5],[969,2,2,5,7]]],[41,2,2,7,9,[[983,1,1,7,8],[993,1,1,8,9]]],[45,4,4,9,13,[[1076,4,4,9,13]]]],[23964,23968,24350,24637,24699,24725,24739,25413,25836,28733,28734,28747,28750]]],["risen",[18,18,[[39,5,5,0,5,[[939,1,1,0,1],[942,1,1,1,2],[955,1,1,2,3],[956,2,2,3,5]]],[40,5,5,5,10,[[962,2,2,5,7],[970,1,1,7,8],[972,2,2,8,10]]],[41,3,3,10,13,[[981,1,1,10,11],[996,2,2,11,13]]],[42,2,2,13,15,[[998,1,1,13,14],[1017,1,1,14,15]]],[45,3,3,15,18,[[1076,3,3,15,18]]]],[23470,23599,24193,24201,24202,24421,24423,24782,24879,24887,25308,25997,26025,26117,26912,28731,28732,28738]]],["riseth",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26634]]],["rose",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28730]]],["up",[27,25,[[39,3,3,0,3,[[931,1,1,0,1],[939,1,1,1,2],[940,1,1,2,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[41,7,7,4,11,[[973,1,1,4,5],[975,1,1,5,6],[977,1,1,6,7],[978,1,1,7,8],[979,1,1,8,9],[983,1,1,9,10],[985,1,1,10,11]]],[42,1,1,11,12,[[1001,1,1,11,12]]],[43,5,5,12,17,[[1020,2,2,12,14],[1022,1,1,14,15],[1027,1,1,15,16],[1030,1,1,16,17]]],[44,4,3,17,20,[[1049,1,1,17,18],[1051,1,1,18,19],[1053,2,1,19,20]]],[45,3,3,20,23,[[1067,1,1,20,21],[1076,2,2,21,23]]],[46,2,1,23,24,[[1081,2,1,23,24]]],[57,1,1,24,25,[[1143,1,1,24,25]]]],[23201,23464,23531,24796,24962,25033,25130,25154,25211,25436,25543,26231,27002,27003,27089,27299,27384,28046,28072,28127,28481,28733,28753,28873,30191]]]]},{"k":"G1454","v":[["resurrection",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24182]]]]},{"k":"G1455","v":[["spies",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25799]]]]},{"k":"G1456","v":[["dedication",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26503]]]]},{"k":"G1457","v":[["*",[2,2,[[57,2,2,0,2,[[1141,1,1,0,1],[1142,1,1,1,2]]]],[30123,30153]]],["consecrated",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30153]]],["dedicated",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30123]]]]},{"k":"G1458","v":[["*",[7,7,[[43,6,6,0,6,[[1036,2,2,0,2],[1040,2,2,2,4],[1043,2,2,4,6]]],[44,1,1,6,7,[[1053,1,1,6,7]]]],[27623,27625,27762,27763,27825,27830,28149]]],["+",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28149]]],["accused",[4,4,[[43,4,4,0,4,[[1040,2,2,0,2],[1043,2,2,2,4]]]],[27762,27763,27825,27830]]],["implead",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27623]]],["question",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27625]]]]},{"k":"G1459","v":[["*",[9,9,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]],[44,1,1,3,4,[[1054,1,1,3,4]]],[46,1,1,4,5,[[1081,1,1,4,5]]],[54,2,2,5,7,[[1128,2,2,5,7]]],[57,2,2,7,9,[[1142,1,1,7,8],[1145,1,1,8,9]]]],[24175,24860,26976,28184,28868,29880,29886,30158,30246]]],["forsake",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30246]]],["forsaken",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[46,1,1,2,3,[[1081,1,1,2,3]]],[54,1,1,3,4,[[1128,1,1,3,4]]]],[24175,24860,28868,29880]]],["forsaking",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30158]]],["forsook",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29886]]],["leave",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26976]]],["left",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28184]]]]},{"k":"G1460","v":[["dwelling",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30508]]]]},{"k":"G1461","v":[["*",[6,4,[[44,6,4,0,4,[[1056,6,4,0,4]]]],[28226,28228,28232,28233]]],["+",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28232]]],["graffed",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28233]]],["in",[3,3,[[44,3,3,0,3,[[1056,3,3,0,3]]]],[28226,28228,28232]]],["into",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28233]]]]},{"k":"G1462","v":[["*",[2,2,[[43,2,2,0,2,[[1040,1,1,0,1],[1042,1,1,1,2]]]],[27763,27812]]],["charge",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27763]]],["him",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27812]]]]},{"k":"G1463","v":[["with",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30470]]]]},{"k":"G1464","v":[["+",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28552]]]]},{"k":"G1465","v":[["*",[3,3,[[43,1,1,0,1,[[1041,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]]],[27773,28325,29588]]],["+",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27773]]],["hindered",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]]],[28325,29588]]]]},{"k":"G1466","v":[["temperance",[4,3,[[43,1,1,0,1,[[1041,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[60,2,1,2,3,[[1156,2,1,2,3]]]],[27794,29185,30485]]]]},{"k":"G1467","v":[["*",[2,2,[[45,2,2,0,2,[[1068,1,1,0,1],[1070,1,1,1,2]]]],[28496,28565]]],["+",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28496]]],["temperate",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28565]]]]},{"k":"G1468","v":[["temperate",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29900]]]]},{"k":"G1469","v":[["+",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28983]]]]},{"k":"G1470","v":[["hid",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23572,25539]]]]},{"k":"G1471","v":[["child",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24978]]]]},{"k":"G1472","v":[["anoint",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30764]]]]},{"k":"G1473","v":[["*",[368,332,[[39,31,30,0,30,[[931,2,2,0,2],[933,6,6,2,8],[936,2,2,8,10],[938,1,1,10,11],[939,1,1,11,12],[940,2,2,12,14],[942,1,1,14,15],[946,1,1,15,16],[948,4,3,16,19],[949,2,2,19,21],[950,1,1,21,22],[951,1,1,22,23],[952,1,1,23,24],[953,1,1,24,25],[954,4,4,25,29],[956,1,1,29,30]]],[40,18,15,30,45,[[957,2,2,30,32],[962,2,2,32,34],[965,1,1,34,35],[966,4,2,35,37],[967,1,1,37,38],[968,1,1,38,39],[969,1,1,39,40],[970,6,5,40,45]]],[41,23,22,45,67,[[973,2,2,45,47],[975,1,1,47,48],[979,2,2,48,50],[980,1,1,50,51],[981,2,1,51,52],[982,2,2,52,54],[983,1,1,54,55],[987,1,1,55,56],[991,2,2,56,58],[992,1,1,58,59],[993,2,2,59,61],[994,3,3,61,64],[995,1,1,64,65],[996,2,2,65,67]]],[42,141,129,67,196,[[997,6,6,67,73],[999,1,1,73,74],[1000,4,4,74,78],[1001,8,7,78,85],[1002,12,10,85,95],[1003,6,6,95,101],[1004,22,19,101,120],[1005,2,2,120,122],[1006,10,10,122,132],[1007,3,3,132,135],[1008,5,5,135,140],[1009,7,7,140,147],[1010,15,13,147,160],[1011,8,8,160,168],[1012,8,7,168,175],[1013,12,11,175,186],[1014,11,9,186,195],[1015,1,1,195,196]]],[43,42,38,196,234,[[1024,2,2,196,198],[1026,3,3,198,201],[1027,2,2,201,203],[1028,1,1,203,204],[1030,3,3,204,207],[1032,1,1,207,208],[1034,2,2,208,210],[1035,3,3,210,213],[1037,4,4,213,217],[1038,2,2,217,219],[1039,7,5,219,224],[1040,3,2,224,226],[1041,1,1,226,227],[1042,3,3,227,230],[1043,4,3,230,233],[1045,1,1,233,234]]],[44,18,16,234,250,[[1052,8,6,234,240],[1054,1,1,240,241],[1055,1,1,241,242],[1056,3,3,242,245],[1057,1,1,245,246],[1059,1,1,246,247],[1060,1,1,247,248],[1061,2,2,248,250]]],[45,25,20,250,270,[[1062,4,1,250,251],[1063,1,1,251,252],[1064,4,3,252,255],[1065,1,1,255,256],[1066,1,1,256,257],[1067,1,1,257,258],[1068,3,3,258,261],[1070,3,3,261,264],[1071,2,1,264,265],[1072,1,1,265,266],[1076,3,3,266,269],[1077,1,1,269,270]]],[46,11,10,270,280,[[1078,1,1,270,271],[1079,3,2,271,273],[1087,1,1,273,274],[1088,2,2,274,276],[1089,4,4,276,280]]],[47,8,8,280,288,[[1091,1,1,280,281],[1092,2,2,281,283],[1094,1,1,283,284],[1095,3,3,284,287],[1096,1,1,287,288]]],[48,3,3,288,291,[[1099,1,1,288,289],[1100,1,1,289,290],[1101,1,1,290,291]]],[49,4,3,291,294,[[1105,3,2,291,293],[1106,1,1,293,294]]],[50,2,2,294,296,[[1107,2,2,294,296]]],[51,1,1,296,297,[[1112,1,1,296,297]]],[53,3,3,297,300,[[1119,2,2,297,299],[1120,1,1,299,300]]],[54,3,3,300,303,[[1125,1,1,300,301],[1128,2,2,301,303]]],[55,2,2,303,305,[[1129,2,2,303,305]]],[56,4,3,305,308,[[1132,4,3,305,308]]],[57,7,5,308,313,[[1133,2,1,308,309],[1134,2,1,309,310],[1137,1,1,310,311],[1142,1,1,311,312],[1144,1,1,312,313]]],[59,1,1,313,314,[[1151,1,1,313,314]]],[60,1,1,314,315,[[1156,1,1,314,315]]],[62,2,1,315,316,[[1164,2,1,315,316]]],[63,1,1,316,317,[[1165,1,1,316,317]]],[65,17,15,317,332,[[1167,4,4,317,321],[1168,2,2,321,323],[1169,2,2,323,325],[1171,1,1,325,326],[1183,1,1,326,327],[1187,3,2,327,329],[1188,4,3,329,332]]]],[23203,23206,23256,23262,23266,23268,23273,23278,23352,23354,23433,23469,23516,23517,23624,23760,23807,23814,23815,23853,23856,23904,23952,23962,24035,24076,24079,24087,24093,24215,24217,24223,24423,24457,24563,24626,24627,24673,24699,24723,24773,24783,24790,24812,24816,24911,24912,25041,25203,25222,25291,25310,25366,25398,25424,25605,25753,25754,25787,25834,25841,25891,25896,25934,25949,26030,26040,26064,26067,26070,26071,26074,26075,26148,26170,26182,26188,26194,26217,26240,26241,26244,26246,26253,26255,26277,26292,26297,26298,26301,26305,26308,26311,26320,26327,26335,26336,26345,26357,26362,26364,26392,26393,26395,26396,26397,26399,26402,26403,26404,26405,26409,26410,26419,26423,26426,26430,26431,26435,26439,26449,26479,26488,26490,26491,26492,26495,26498,26499,26506,26511,26515,26548,26550,26565,26606,26626,26627,26629,26630,26637,26644,26645,26648,26649,26656,26663,26671,26672,26674,26678,26679,26680,26682,26684,26687,26688,26689,26695,26696,26700,26704,26709,26713,26715,26718,26719,26725,26730,26733,26742,26743,26752,26753,26759,26763,26768,26770,26771,26773,26775,26778,26781,26782,26783,26784,26790,26791,26793,26805,26806,26811,26820,26822,26823,26831,27123,27148,27221,27226,27232,27279,27280,27312,27387,27395,27403,27461,27526,27546,27563,27567,27572,27648,27651,27652,27655,27677,27703,27707,27712,27723,27725,27732,27735,27740,27790,27814,27816,27821,27832,27833,27838,27916,28100,28105,28108,28111,28115,28116,28158,28207,28210,28222,28228,28264,28291,28317,28340,28358,28375,28397,28411,28414,28416,28448,28457,28479,28497,28499,28515,28546,28555,28566,28597,28623,28727,28728,28729,28786,28823,28826,28834,28972,29012,29018,29033,29035,29037,29038,29069,29100,29101,29143,29164,29172,29173,29205,29252,29273,29336,29425,29434,29453,29488,29490,29588,29707,29711,29723,29820,29871,29876,29895,29897,29951,29957,29958,29968,29990,30035,30163,30238,30390,30496,30646,30659,30705,30706,30708,30714,30739,30740,30755,30765,30783,30982,31055,31059,31088,31093,31096]]],["+",[3,3,[[45,2,2,0,2,[[1062,1,1,0,1],[1064,1,1,1,2]]],[46,1,1,2,3,[[1079,1,1,2,3]]]],[28375,28414,28834]]],["I",[360,327,[[39,31,30,0,30,[[931,2,2,0,2],[933,6,6,2,8],[936,2,2,8,10],[938,1,1,10,11],[939,1,1,11,12],[940,2,2,12,14],[942,1,1,14,15],[946,1,1,15,16],[948,4,3,16,19],[949,2,2,19,21],[950,1,1,21,22],[951,1,1,22,23],[952,1,1,23,24],[953,1,1,24,25],[954,4,4,25,29],[956,1,1,29,30]]],[40,18,15,30,45,[[957,2,2,30,32],[962,2,2,32,34],[965,1,1,34,35],[966,4,2,35,37],[967,1,1,37,38],[968,1,1,38,39],[969,1,1,39,40],[970,6,5,40,45]]],[41,22,21,45,66,[[973,2,2,45,47],[975,1,1,47,48],[979,2,2,48,50],[980,1,1,50,51],[981,2,1,51,52],[982,2,2,52,54],[983,1,1,54,55],[987,1,1,55,56],[991,1,1,56,57],[992,1,1,57,58],[993,2,2,58,60],[994,3,3,60,63],[995,1,1,63,64],[996,2,2,64,66]]],[42,141,129,66,195,[[997,6,6,66,72],[999,1,1,72,73],[1000,4,4,73,77],[1001,8,7,77,84],[1002,12,10,84,94],[1003,6,6,94,100],[1004,22,19,100,119],[1005,2,2,119,121],[1006,10,10,121,131],[1007,3,3,131,134],[1008,5,5,134,139],[1009,7,7,139,146],[1010,15,13,146,159],[1011,8,8,159,167],[1012,8,7,167,174],[1013,12,11,174,185],[1014,11,9,185,194],[1015,1,1,194,195]]],[43,41,37,195,232,[[1024,2,2,195,197],[1026,3,3,197,200],[1027,2,2,200,202],[1028,1,1,202,203],[1030,3,3,203,206],[1034,2,2,206,208],[1035,3,3,208,211],[1037,4,4,211,215],[1038,2,2,215,217],[1039,7,5,217,222],[1040,3,2,222,224],[1041,1,1,224,225],[1042,3,3,225,228],[1043,4,3,228,231],[1045,1,1,231,232]]],[44,18,16,232,248,[[1052,8,6,232,238],[1054,1,1,238,239],[1055,1,1,239,240],[1056,3,3,240,243],[1057,1,1,243,244],[1059,1,1,244,245],[1060,1,1,245,246],[1061,2,2,246,248]]],[45,23,20,248,268,[[1062,3,1,248,249],[1063,1,1,249,250],[1064,3,3,250,253],[1065,1,1,253,254],[1066,1,1,254,255],[1067,1,1,255,256],[1068,3,3,256,259],[1070,3,3,259,262],[1071,2,1,262,263],[1072,1,1,263,264],[1076,3,3,264,267],[1077,1,1,267,268]]],[46,10,10,268,278,[[1078,1,1,268,269],[1079,2,2,269,271],[1087,1,1,271,272],[1088,2,2,272,274],[1089,4,4,274,278]]],[47,8,8,278,286,[[1091,1,1,278,279],[1092,2,2,279,281],[1094,1,1,281,282],[1095,3,3,282,285],[1096,1,1,285,286]]],[48,3,3,286,289,[[1099,1,1,286,287],[1100,1,1,287,288],[1101,1,1,288,289]]],[49,4,3,289,292,[[1105,3,2,289,291],[1106,1,1,291,292]]],[50,2,2,292,294,[[1107,2,2,292,294]]],[51,1,1,294,295,[[1112,1,1,294,295]]],[53,2,2,295,297,[[1119,1,1,295,296],[1120,1,1,296,297]]],[54,3,3,297,300,[[1125,1,1,297,298],[1128,2,2,298,300]]],[55,1,1,300,301,[[1129,1,1,300,301]]],[56,3,2,301,303,[[1132,3,2,301,303]]],[57,7,5,303,308,[[1133,2,1,303,304],[1134,2,1,304,305],[1137,1,1,305,306],[1142,1,1,306,307],[1144,1,1,307,308]]],[59,1,1,308,309,[[1151,1,1,308,309]]],[60,1,1,309,310,[[1156,1,1,309,310]]],[62,2,1,310,311,[[1164,2,1,310,311]]],[63,1,1,311,312,[[1165,1,1,311,312]]],[65,17,15,312,327,[[1167,4,4,312,316],[1168,2,2,316,318],[1169,2,2,318,320],[1171,1,1,320,321],[1183,1,1,321,322],[1187,3,2,322,324],[1188,4,3,324,327]]]],[23203,23206,23256,23262,23266,23268,23273,23278,23352,23354,23433,23469,23516,23517,23624,23760,23807,23814,23815,23853,23856,23904,23952,23962,24035,24076,24079,24087,24093,24215,24217,24223,24423,24457,24563,24626,24627,24673,24699,24723,24773,24783,24790,24812,24816,24911,24912,25041,25203,25222,25291,25310,25366,25398,25424,25605,25753,25787,25834,25841,25891,25896,25934,25949,26030,26040,26064,26067,26070,26071,26074,26075,26148,26170,26182,26188,26194,26217,26240,26241,26244,26246,26253,26255,26277,26292,26297,26298,26301,26305,26308,26311,26320,26327,26335,26336,26345,26357,26362,26364,26392,26393,26395,26396,26397,26399,26402,26403,26404,26405,26409,26410,26419,26423,26426,26430,26431,26435,26439,26449,26479,26488,26490,26491,26492,26495,26498,26499,26506,26511,26515,26548,26550,26565,26606,26626,26627,26629,26630,26637,26644,26645,26648,26649,26656,26663,26671,26672,26674,26678,26679,26680,26682,26684,26687,26688,26689,26695,26696,26700,26704,26709,26713,26715,26718,26719,26725,26730,26733,26742,26743,26752,26753,26759,26763,26768,26770,26771,26773,26775,26778,26781,26782,26783,26784,26790,26791,26793,26805,26806,26811,26820,26822,26823,26831,27123,27148,27221,27226,27232,27279,27280,27312,27387,27395,27403,27526,27546,27563,27567,27572,27648,27651,27652,27655,27677,27703,27707,27712,27723,27725,27732,27735,27740,27790,27814,27816,27821,27832,27833,27838,27916,28100,28105,28108,28111,28115,28116,28158,28207,28210,28222,28228,28264,28291,28317,28340,28358,28375,28397,28411,28414,28416,28448,28457,28479,28497,28499,28515,28546,28555,28566,28597,28623,28727,28728,28729,28786,28823,28826,28834,28972,29012,29018,29033,29035,29037,29038,29069,29100,29101,29143,29164,29172,29173,29205,29252,29273,29336,29425,29434,29453,29488,29490,29588,29711,29723,29820,29871,29876,29897,29951,29957,29968,29990,30035,30163,30238,30390,30496,30646,30659,30705,30706,30708,30714,30739,30740,30755,30765,30783,30982,31055,31059,31088,31093,31096]]],["me",[2,2,[[55,1,1,0,1,[[1129,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[29895,29958]]],["my",[2,2,[[41,1,1,0,1,[[991,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]]],[25754,27461]]],["trust",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29707]]]]},{"k":"G1474","v":[["+",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25775]]]]},{"k":"G1475","v":[["ground",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27711]]]]},{"k":"G1476","v":[["*",[3,3,[[45,2,2,0,2,[[1068,1,1,0,1],[1076,1,1,1,2]]],[50,1,1,2,3,[[1107,1,1,2,3]]]],[28524,28776,29488]]],["settled",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29488]]],["stedfast",[2,2,[[45,2,2,0,2,[[1068,1,1,0,1],[1076,1,1,1,2]]]],[28524,28776]]]]},{"k":"G1477","v":[["ground",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29746]]]]},{"k":"G1478","v":[["Ezekias",[2,2,[[39,2,2,0,2,[[929,2,2,0,2]]]],[23153,23154]]]]},{"k":"G1479","v":[["worship",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29517]]]]},{"k":"G1480","v":[["custom",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25000]]]]},{"k":"G1481","v":[["governor",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29021]]]]},{"k":"G1482","v":[["*",[2,2,[[39,2,2,0,2,[[934,1,1,0,1],[946,1,1,1,2]]]],[23289,23744]]],["heathen",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23289]]],["man",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23744]]]]},{"k":"G1483","v":[["Gentiles",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29095]]]]},{"k":"G1484","v":[["*",[164,152,[[39,15,14,0,14,[[932,1,1,0,1],[934,1,1,1,2],[938,2,2,2,4],[940,2,2,4,6],[948,2,2,6,8],[949,1,1,8,9],[952,4,3,9,12],[953,1,1,12,13],[956,1,1,13,14]]],[40,6,5,14,19,[[966,2,2,14,16],[967,1,1,16,17],[969,3,2,17,19]]],[41,13,10,19,29,[[974,1,1,19,20],[979,1,1,20,21],[984,1,1,21,22],[990,1,1,22,23],[993,6,3,23,26],[994,1,1,26,27],[995,1,1,27,28],[996,1,1,28,29]]],[42,5,5,29,34,[[1007,4,4,29,33],[1014,1,1,33,34]]],[43,44,44,34,78,[[1019,1,1,34,35],[1021,2,2,35,37],[1024,2,2,37,39],[1025,1,1,39,40],[1026,1,1,40,41],[1027,3,3,41,44],[1028,2,2,44,46],[1030,5,5,46,51],[1031,4,4,51,55],[1032,7,7,55,62],[1034,1,1,62,63],[1035,1,1,63,64],[1038,4,4,64,68],[1039,1,1,68,69],[1041,3,3,69,72],[1043,4,4,72,76],[1045,2,2,76,78]]],[44,29,23,78,101,[[1046,2,2,78,80],[1047,2,2,80,82],[1048,2,1,82,83],[1049,2,2,83,85],[1054,2,2,85,87],[1055,2,1,87,88],[1056,5,4,88,92],[1060,10,7,92,99],[1061,2,2,99,101]]],[45,3,3,101,104,[[1066,1,1,101,102],[1071,1,1,102,103],[1073,1,1,103,104]]],[46,1,1,104,105,[[1088,1,1,104,105]]],[47,10,9,105,114,[[1091,1,1,105,106],[1092,6,6,106,112],[1093,3,2,112,114]]],[48,5,5,114,119,[[1098,1,1,114,115],[1099,3,3,115,118],[1100,1,1,118,119]]],[50,1,1,119,120,[[1107,1,1,119,120]]],[51,2,2,120,122,[[1112,1,1,120,121],[1114,1,1,121,122]]],[53,2,2,122,124,[[1120,1,1,122,123],[1121,1,1,123,124]]],[54,2,2,124,126,[[1125,1,1,124,125],[1128,1,1,125,126]]],[59,3,3,126,129,[[1152,2,2,126,128],[1154,1,1,128,129]]],[63,1,1,129,130,[[1165,1,1,129,130]]],[65,22,22,130,152,[[1168,1,1,130,131],[1171,1,1,131,132],[1173,1,1,132,133],[1176,1,1,133,134],[1177,3,3,134,137],[1178,1,1,137,138],[1179,1,1,138,139],[1180,2,2,139,141],[1181,1,1,141,142],[1182,1,1,142,143],[1183,1,1,143,144],[1184,2,2,144,146],[1185,1,1,146,147],[1186,2,2,147,149],[1187,2,2,149,151],[1188,1,1,151,152]]]],[23224,23314,23422,23435,23507,23510,23811,23817,23869,23964,23966,23971,24040,24214,24621,24630,24657,24725,24727,25005,25200,25489,25720,25836,25850,25851,25889,25937,26038,26571,26573,26574,26575,26820,26954,27047,27049,27123,27161,27185,27231,27281,27294,27304,27308,27325,27381,27404,27408,27409,27410,27416,27419,27430,27441,27445,27449,27454,27456,27459,27461,27465,27549,27563,27675,27683,27685,27689,27725,27771,27779,27786,27827,27840,27843,27846,27918,27927,27935,27943,27976,27986,28020,28039,28040,28179,28185,28207,28220,28221,28222,28234,28312,28313,28314,28315,28319,28321,28330,28340,28362,28455,28587,28636,29015,29073,29083,29089,29090,29093,29095,29096,29110,29116,29240,29252,29257,29259,29289,29492,29586,29608,29723,29747,29820,29887,30408,30411,30449,30665,30743,30788,30819,30872,30874,30881,30890,30896,30915,30932,30934,30950,30973,30990,30996,31016,31032,31041,31046,31077,31079,31082]]],["+",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[65,1,1,1,2,[[1180,1,1,1,2]]]],[28321,30934]]],["Gentiles",[92,86,[[39,8,8,0,8,[[932,1,1,0,1],[934,1,1,1,2],[938,2,2,2,4],[940,2,2,4,6],[948,2,2,6,8]]],[40,2,2,8,10,[[966,2,2,8,10]]],[41,5,4,10,14,[[974,1,1,10,11],[990,1,1,11,12],[993,2,1,12,13],[994,1,1,13,14]]],[43,30,30,14,44,[[1021,1,1,14,15],[1024,1,1,15,16],[1026,1,1,16,17],[1027,1,1,17,18],[1028,2,2,18,20],[1030,4,4,20,24],[1031,3,3,24,27],[1032,7,7,27,34],[1035,1,1,34,35],[1038,4,4,35,39],[1039,1,1,39,40],[1043,3,3,40,43],[1045,1,1,43,44]]],[44,22,17,44,61,[[1046,1,1,44,45],[1047,2,2,45,47],[1048,2,1,47,48],[1054,2,2,48,50],[1056,5,4,50,54],[1060,9,6,54,60],[1061,1,1,60,61]]],[45,3,3,61,64,[[1066,1,1,61,62],[1071,1,1,62,63],[1073,1,1,63,64]]],[47,6,6,64,70,[[1092,5,5,64,69],[1093,1,1,69,70]]],[48,5,5,70,75,[[1098,1,1,70,71],[1099,3,3,71,74],[1100,1,1,74,75]]],[50,1,1,75,76,[[1107,1,1,75,76]]],[51,2,2,76,78,[[1112,1,1,76,77],[1114,1,1,77,78]]],[53,2,2,78,80,[[1120,1,1,78,79],[1121,1,1,79,80]]],[54,2,2,80,82,[[1125,1,1,80,81],[1128,1,1,81,82]]],[59,2,2,82,84,[[1152,1,1,82,83],[1154,1,1,83,84]]],[63,1,1,84,85,[[1165,1,1,84,85]]],[65,1,1,85,86,[[1177,1,1,85,86]]]],[23224,23314,23422,23435,23507,23510,23811,23817,24621,24630,25005,25720,25850,25889,27049,27161,27231,27304,27308,27325,27404,27408,27409,27410,27416,27419,27441,27445,27449,27454,27456,27459,27461,27465,27563,27675,27683,27685,27689,27725,27840,27843,27846,27927,27943,27976,27986,28020,28179,28185,28220,28221,28222,28234,28312,28313,28314,28315,28319,28330,28340,28455,28587,28636,29083,29089,29093,29095,29096,29116,29240,29252,29257,29259,29289,29492,29586,29608,29723,29747,29820,29887,30411,30449,30665,30874]]],["Nation",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25836]]],["heathen",[5,5,[[43,1,1,0,1,[[1021,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[47,3,3,2,5,[[1091,1,1,2,3],[1092,1,1,3,4],[1093,1,1,4,5]]]],[27047,29015,29073,29090,29110]]],["nation",[26,24,[[39,3,2,0,2,[[949,1,1,0,1],[952,2,1,1,2]]],[40,2,1,2,3,[[969,2,1,2,3]]],[41,3,3,3,6,[[979,1,1,3,4],[993,1,1,4,5],[995,1,1,5,6]]],[42,5,5,6,11,[[1007,4,4,6,10],[1014,1,1,10,11]]],[43,9,9,11,20,[[1019,1,1,11,12],[1024,1,1,12,13],[1027,2,2,13,15],[1041,3,3,15,18],[1043,1,1,18,19],[1045,1,1,19,20]]],[44,1,1,20,21,[[1055,1,1,20,21]]],[59,1,1,21,22,[[1152,1,1,21,22]]],[65,2,2,22,24,[[1171,1,1,22,23],[1180,1,1,23,24]]]],[23869,23964,24725,25200,25836,25937,26571,26573,26574,26575,26820,26954,27123,27281,27294,27771,27779,27786,27827,27918,28207,30408,30788,30932]]],["nations",[36,36,[[39,4,4,0,4,[[952,2,2,0,2],[953,1,1,2,3],[956,1,1,3,4]]],[40,2,2,4,6,[[967,1,1,4,5],[969,1,1,5,6]]],[41,4,4,6,10,[[984,1,1,6,7],[993,2,2,7,9],[996,1,1,9,10]]],[43,3,3,10,13,[[1030,1,1,10,11],[1031,1,1,11,12],[1034,1,1,12,13]]],[44,4,4,13,17,[[1046,1,1,13,14],[1049,2,2,14,16],[1061,1,1,16,17]]],[47,1,1,17,18,[[1093,1,1,17,18]]],[65,18,18,18,36,[[1168,1,1,18,19],[1173,1,1,19,20],[1176,1,1,20,21],[1177,2,2,21,23],[1178,1,1,23,24],[1179,1,1,24,25],[1181,1,1,25,26],[1182,1,1,26,27],[1183,1,1,27,28],[1184,2,2,28,30],[1185,1,1,30,31],[1186,2,2,31,33],[1187,2,2,33,35],[1188,1,1,35,36]]]],[23966,23971,24040,24214,24657,24727,25489,25850,25851,26038,27381,27430,27549,27935,28039,28040,28362,29110,30743,30819,30872,30881,30890,30896,30915,30950,30973,30990,30996,31016,31032,31041,31046,31077,31079,31082]]],["people",[2,2,[[43,1,1,0,1,[[1025,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]]],[27185,28207]]]]},{"k":"G1485","v":[["*",[12,12,[[41,3,3,0,3,[[973,1,1,0,1],[974,1,1,1,2],[994,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[43,7,7,4,11,[[1023,1,1,4,5],[1032,1,1,5,6],[1033,1,1,6,7],[1038,1,1,7,8],[1042,1,1,8,9],[1043,1,1,9,10],[1045,1,1,10,11]]],[57,1,1,11,12,[[1142,1,1,11,12]]]],[24902,25015,25903,26865,27115,27443,27504,27685,27812,27826,27916,30158]]],["+",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25903]]],["custom",[2,2,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]]],[24902,25015]]],["customs",[5,5,[[43,5,5,0,5,[[1023,1,1,0,1],[1033,1,1,1,2],[1038,1,1,2,3],[1043,1,1,3,4],[1045,1,1,4,5]]]],[27115,27504,27685,27826,27916]]],["manner",[4,4,[[42,1,1,0,1,[[1015,1,1,0,1]]],[43,2,2,1,3,[[1032,1,1,1,2],[1042,1,1,2,3]]],[57,1,1,3,4,[[1142,1,1,3,4]]]],[26865,27443,27812,30158]]]]},{"k":"G1486","v":[["*",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]],[43,1,1,3,4,[[1034,1,1,3,4]]]],[24144,24589,25079,27525]]],["+",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27525]]],["custom",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25079]]],["wont",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]]],[24144,24589]]]]},{"k":"G1487","v":[["*",[323,302,[[39,38,38,0,38,[[932,2,2,0,2],[933,2,2,2,4],[934,2,2,4,6],[935,1,1,6,7],[936,1,1,7,8],[938,1,1,8,9],[939,3,3,9,12],[940,5,5,12,17],[942,1,1,17,18],[945,1,1,18,19],[946,2,2,19,21],[947,4,4,21,25],[948,1,1,25,26],[950,1,1,26,27],[951,1,1,27,28],[952,2,2,28,30],[954,4,4,30,34],[955,4,4,34,38]]],[40,16,15,38,53,[[959,2,2,38,40],[964,1,1,40,41],[965,2,2,41,43],[966,1,1,43,44],[967,3,3,44,47],[969,1,1,47,48],[970,3,3,48,51],[971,3,2,51,53]]],[41,34,34,53,87,[[976,2,2,53,55],[978,2,2,55,57],[979,1,1,57,58],[981,1,1,58,59],[982,1,1,59,60],[983,6,6,60,66],[984,4,4,66,70],[985,1,1,70,71],[986,3,3,71,74],[988,2,2,74,76],[989,2,2,76,78],[991,2,2,78,80],[994,2,2,80,82],[995,5,5,82,87]]],[42,38,36,87,123,[[997,1,1,87,88],[999,1,1,88,89],[1000,1,1,89,90],[1001,2,2,90,92],[1003,2,2,92,94],[1004,4,4,94,98],[1005,2,2,98,100],[1006,4,4,100,104],[1007,3,3,104,107],[1009,3,3,107,110],[1010,2,2,110,112],[1011,6,5,112,117],[1014,5,4,117,121],[1015,1,1,121,122],[1016,1,1,122,123]]],[43,32,30,123,153,[[1018,1,1,123,124],[1021,2,2,124,126],[1022,2,2,126,128],[1024,1,1,128,129],[1025,2,2,129,131],[1027,1,1,131,132],[1028,1,1,132,133],[1030,1,1,133,134],[1033,1,1,134,135],[1034,2,2,135,137],[1035,2,2,137,139],[1036,4,3,139,142],[1037,1,1,142,143],[1038,1,1,143,144],[1039,2,2,144,146],[1040,1,1,146,147],[1042,2,2,147,149],[1043,4,3,149,152],[1044,1,1,152,153]]],[44,34,31,153,184,[[1048,3,3,153,156],[1049,2,2,156,158],[1050,3,3,158,161],[1051,2,2,161,163],[1052,2,2,163,165],[1053,7,6,165,171],[1054,1,1,171,172],[1056,11,9,172,181],[1057,1,1,181,182],[1059,1,1,182,183],[1060,1,1,183,184]]],[45,43,36,184,220,[[1063,1,1,184,185],[1065,2,1,185,186],[1067,1,1,186,187],[1068,6,5,187,192],[1069,3,3,192,195],[1070,6,4,195,199],[1071,2,2,199,201],[1072,5,4,201,205],[1073,3,2,205,207],[1075,3,3,207,210],[1076,11,10,210,220]]],[46,14,14,220,234,[[1079,3,3,220,223],[1080,3,3,223,226],[1081,1,1,226,227],[1082,1,1,227,228],[1085,1,1,228,229],[1088,3,3,229,232],[1090,2,2,232,234]]],[47,15,15,234,249,[[1091,1,1,234,235],[1092,4,4,235,239],[1093,3,3,239,242],[1094,2,2,242,244],[1095,4,4,244,248],[1096,1,1,248,249]]],[49,2,2,249,251,[[1103,1,1,249,250],[1105,1,1,250,251]]],[50,3,3,251,254,[[1108,2,2,251,253],[1109,1,1,253,254]]],[51,1,1,254,255,[[1114,1,1,254,255]]],[52,1,1,255,256,[[1118,1,1,255,256]]],[53,8,4,256,260,[[1121,1,1,256,257],[1123,7,3,257,260]]],[54,4,3,260,263,[[1126,4,3,260,263]]],[56,2,2,263,265,[[1132,2,2,263,265]]],[57,14,14,265,279,[[1134,1,1,265,266],[1135,1,1,266,267],[1136,3,3,267,270],[1139,2,2,270,272],[1140,2,2,272,274],[1141,1,1,274,275],[1143,1,1,275,276],[1144,3,3,276,279]]],[58,6,6,279,285,[[1146,1,1,279,280],[1147,3,3,280,283],[1148,1,1,283,284],[1149,1,1,284,285]]],[59,11,10,285,295,[[1151,2,2,285,287],[1152,3,2,287,289],[1153,2,2,289,291],[1154,4,4,291,295]]],[60,2,2,295,297,[[1157,2,2,295,297]]],[61,5,5,297,302,[[1160,1,1,297,298],[1161,1,1,298,299],[1162,2,2,299,301],[1163,1,1,301,302]]]],[23212,23215,23263,23264,23305,23312,23327,23376,23442,23473,23480,23482,23496,23499,23515,23516,23517,23625,23704,23735,23736,23765,23772,23779,23783,23807,23917,23948,23981,24000,24078,24093,24096,24117,24169,24171,24172,24178,24290,24314,24512,24561,24580,24590,24653,24665,24666,24739,24775,24783,24789,24862,24870,25066,25072,25153,25178,25234,25324,25376,25416,25418,25423,25424,25425,25441,25485,25487,25498,25508,25541,25556,25581,25584,25631,25632,25653,25657,25739,25773,25906,25913,25941,25966,25970,25972,25974,26069,26132,26166,26256,26257,26332,26351,26400,26420,26423,26427,26465,26481,26505,26516,26518,26519,26535,26544,26555,26644,26647,26662,26675,26696,26717,26718,26719,26721,26723,26793,26808,26815,26821,26836,26882,26929,27031,27041,27067,27098,27117,27198,27213,27277,27324,27377,27498,27534,27550,27571,27572,27587,27623,27624,27642,27701,27729,27731,27743,27807,27816,27831,27846,27855,27894,27994,27996,27998,28024,28036,28057,28062,28064,28073,28076,28107,28111,28126,28127,28129,28133,28141,28147,28177,28215,28221,28223,28224,28225,28226,28227,28230,28233,28263,28295,28330,28402,28440,28469,28496,28502,28503,28508,28523,28529,28530,28540,28542,28551,28552,28557,28594,28597,28606,28616,28631,28634,28651,28653,28688,28713,28716,28720,28730,28731,28732,28734,28735,28737,28747,28750,28755,28826,28829,28833,28848,28850,28852,28862,28891,28944,28993,28995,29019,29047,29048,29067,29095,29098,29099,29102,29120,29123,29131,29138,29146,29173,29177,29180,29187,29191,29383,29432,29499,29514,29518,29617,29692,29736,29767,29771,29773,29838,29839,29840,29955,29956,29979,30006,30017,30019,30022,30075,30079,30096,30099,30118,30187,30219,30220,30237,30271,30301,30302,30304,30333,30348,30380,30391,30418,30419,30438,30441,30460,30462,30463,30464,30504,30520,30569,30592,30604,30614,30633]]],["+",[19,19,[[39,3,3,0,3,[[940,1,1,0,1],[947,1,1,1,2],[948,1,1,2,3]]],[40,2,2,3,5,[[966,1,1,3,4],[970,1,1,4,5]]],[41,1,1,5,6,[[986,1,1,5,6]]],[42,1,1,6,7,[[1015,1,1,6,7]]],[43,5,5,7,12,[[1024,1,1,7,8],[1036,1,1,8,9],[1038,1,1,9,10],[1039,2,2,10,12]]],[45,2,2,12,14,[[1075,1,1,12,13],[1076,1,1,13,14]]],[46,3,3,14,17,[[1081,1,1,14,15],[1088,1,1,15,16],[1090,1,1,16,17]]],[50,1,1,17,18,[[1108,1,1,17,18]]],[57,1,1,18,19,[[1139,1,1,18,19]]]],[23499,23765,23807,24590,24783,25556,26836,27117,27623,27701,27729,27731,28688,28755,28862,28995,29047,29499,30075]]],["Forasmuch",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27324]]],["Have",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27587]]],["If",[79,78,[[39,12,12,0,12,[[932,2,2,0,2],[934,1,1,2,3],[935,1,1,3,4],[936,1,1,4,5],[938,1,1,5,6],[947,2,2,6,8],[950,1,1,8,9],[951,1,1,9,10],[955,2,2,10,12]]],[40,1,1,12,13,[[965,1,1,12,13]]],[41,13,13,13,26,[[976,2,2,13,15],[981,1,1,15,16],[983,3,3,16,19],[984,2,2,19,21],[988,1,1,21,22],[989,1,1,22,23],[991,1,1,23,24],[995,2,2,24,26]]],[42,22,22,26,48,[[999,1,1,26,27],[1000,1,1,27,28],[1003,2,2,28,30],[1004,2,2,30,32],[1005,1,1,32,33],[1006,3,3,33,36],[1009,3,3,36,39],[1010,2,2,39,41],[1011,5,5,41,46],[1014,2,2,46,48]]],[43,4,4,48,52,[[1021,1,1,48,49],[1025,1,1,49,50],[1033,1,1,50,51],[1035,1,1,51,52]]],[44,4,4,52,56,[[1052,1,1,52,53],[1053,1,1,53,54],[1056,1,1,54,55],[1057,1,1,55,56]]],[45,8,7,56,63,[[1070,3,3,56,59],[1071,1,1,59,60],[1073,2,1,60,61],[1076,2,2,61,63]]],[46,1,1,63,64,[[1088,1,1,63,64]]],[47,2,2,64,66,[[1092,1,1,64,65],[1095,1,1,65,66]]],[49,1,1,66,67,[[1105,1,1,66,67]]],[50,1,1,67,68,[[1109,1,1,67,68]]],[54,2,2,68,70,[[1126,2,2,68,70]]],[56,2,2,70,72,[[1132,2,2,70,72]]],[57,2,2,72,74,[[1136,1,1,72,73],[1144,1,1,73,74]]],[58,2,2,74,76,[[1146,1,1,74,75],[1147,1,1,75,76]]],[59,1,1,76,77,[[1154,1,1,76,77]]],[61,1,1,77,78,[[1163,1,1,77,78]]]],[23212,23215,23305,23327,23376,23442,23772,23783,23917,23948,24169,24171,24561,25066,25072,25324,25418,25423,25441,25485,25487,25631,25657,25773,25972,25974,26132,26166,26332,26351,26420,26423,26481,26505,26516,26518,26644,26647,26662,26675,26696,26717,26718,26719,26721,26723,26808,26815,27031,27213,27498,27571,28107,28147,28223,28263,28542,28551,28552,28594,28651,28737,28750,29019,29095,29187,29432,29518,29839,29840,29955,29956,30019,30219,30271,30301,30460,30633]]],["That",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27846]]],["There",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24512]]],["They",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30006]]],["Whether",[2,2,[[42,1,1,0,1,[[1005,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]]],[26465,27041]]],["are",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25541]]],["if",[189,178,[[39,21,21,0,21,[[933,2,2,0,2],[934,1,1,2,3],[939,3,3,3,6],[940,4,4,6,10],[942,1,1,10,11],[945,1,1,11,12],[946,2,2,12,14],[947,1,1,14,15],[952,2,2,15,17],[954,3,3,17,20],[955,1,1,20,21]]],[40,8,8,21,29,[[959,1,1,21,22],[967,3,3,22,25],[969,1,1,25,26],[970,2,2,26,28],[971,1,1,28,29]]],[41,13,13,29,42,[[978,1,1,29,30],[979,1,1,30,31],[982,1,1,31,32],[983,3,3,32,35],[984,2,2,35,37],[988,1,1,37,38],[991,1,1,38,39],[994,1,1,39,40],[995,2,2,40,42]]],[42,13,13,42,55,[[997,1,1,42,43],[1001,1,1,43,44],[1004,2,2,44,46],[1006,1,1,46,47],[1007,3,3,47,50],[1011,1,1,50,51],[1014,3,3,51,54],[1016,1,1,54,55]]],[43,11,11,55,66,[[1022,1,1,55,56],[1025,1,1,56,57],[1030,1,1,57,58],[1034,1,1,58,59],[1035,1,1,59,60],[1036,1,1,60,61],[1037,1,1,61,62],[1040,1,1,62,63],[1042,1,1,63,64],[1043,1,1,64,65],[1044,1,1,65,66]]],[44,30,27,66,93,[[1048,3,3,66,69],[1049,2,2,69,71],[1050,3,3,71,74],[1051,2,2,74,76],[1052,1,1,76,77],[1053,6,5,77,82],[1054,1,1,82,83],[1056,10,8,83,91],[1059,1,1,91,92],[1060,1,1,92,93]]],[45,30,27,93,120,[[1065,2,1,93,94],[1067,1,1,94,95],[1068,4,4,95,99],[1069,3,3,99,102],[1070,3,2,102,104],[1071,1,1,104,105],[1072,5,4,105,109],[1073,1,1,109,110],[1075,2,2,110,112],[1076,8,8,112,120]]],[46,8,8,120,128,[[1079,2,2,120,122],[1080,3,3,122,125],[1082,1,1,125,126],[1085,1,1,126,127],[1088,1,1,127,128]]],[47,13,13,128,141,[[1091,1,1,128,129],[1092,3,3,129,132],[1093,3,3,132,135],[1094,2,2,135,137],[1095,3,3,137,140],[1096,1,1,140,141]]],[49,1,1,141,142,[[1103,1,1,141,142]]],[50,1,1,142,143,[[1108,1,1,142,143]]],[51,1,1,143,144,[[1114,1,1,143,144]]],[52,1,1,144,145,[[1118,1,1,144,145]]],[53,8,4,145,149,[[1121,1,1,145,146],[1123,7,3,146,149]]],[54,2,2,149,151,[[1126,2,2,149,151]]],[57,9,9,151,160,[[1134,1,1,151,152],[1136,2,2,152,154],[1140,2,2,154,156],[1141,1,1,156,157],[1143,1,1,157,158],[1144,2,2,158,160]]],[58,4,4,160,164,[[1147,2,2,160,162],[1148,1,1,162,163],[1149,1,1,163,164]]],[59,10,9,164,173,[[1151,2,2,164,166],[1152,3,2,166,168],[1153,2,2,168,170],[1154,3,3,170,173]]],[60,2,2,173,175,[[1157,2,2,173,175]]],[61,3,3,175,178,[[1160,1,1,175,176],[1161,1,1,176,177],[1162,1,1,177,178]]]],[23263,23264,23312,23473,23480,23482,23496,23515,23516,23517,23625,23704,23735,23736,23779,23981,24000,24078,24093,24096,24172,24314,24653,24665,24666,24739,24775,24789,24870,25178,25234,25376,25416,25424,25425,25498,25508,25632,25739,25906,25966,25970,26069,26257,26400,26427,26519,26535,26544,26555,26719,26793,26808,26821,26882,27098,27198,27377,27550,27572,27624,27642,27743,27807,27855,27894,27994,27996,27998,28024,28036,28057,28062,28064,28073,28076,28111,28126,28127,28129,28133,28141,28177,28215,28221,28224,28225,28226,28227,28230,28233,28295,28330,28440,28469,28496,28502,28508,28523,28529,28530,28540,28551,28557,28597,28606,28616,28631,28634,28653,28713,28716,28720,28730,28731,28732,28734,28735,28747,28750,28826,28829,28848,28850,28852,28891,28944,28993,29067,29098,29099,29102,29120,29123,29131,29138,29146,29173,29177,29180,29191,29383,29514,29617,29692,29736,29767,29771,29773,29838,29839,29979,30017,30022,30096,30099,30118,30187,30220,30237,30302,30304,30333,30348,30380,30391,30418,30419,30438,30441,30462,30463,30464,30504,30520,30569,30592,30614]]],["that",[5,5,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]],[43,2,2,2,4,[[1043,2,2,2,4]]],[57,1,1,4,5,[[1139,1,1,4,5]]]],[24580,25653,27831,27846,30079]]],["they",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28402]]],["thou",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26929]]],["we",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25913]]],["whether",[19,18,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,3,3,2,5,[[959,1,1,2,3],[971,2,2,3,5]]],[41,4,4,5,9,[[978,1,1,5,6],[986,2,2,6,8],[995,1,1,8,9]]],[43,5,5,9,14,[[1022,1,1,9,10],[1027,1,1,10,11],[1034,1,1,11,12],[1036,1,1,12,13],[1042,1,1,13,14]]],[45,2,1,14,15,[[1068,2,1,14,15]]],[46,2,2,15,17,[[1079,1,1,15,16],[1090,1,1,16,17]]],[61,1,1,17,18,[[1162,1,1,17,18]]]],[24117,24178,24290,24862,24870,25153,25581,25584,25941,27067,27277,27534,27587,27816,28503,28833,29048,30604]]],["ye",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26256]]]]},{"k":"G1488","v":[["*",[92,89,[[39,17,17,0,17,[[930,1,1,0,1],[932,2,2,1,3],[933,1,1,3,4],[939,1,1,4,5],[942,2,2,5,7],[944,4,4,7,11],[950,1,1,11,12],[953,1,1,12,13],[954,2,2,13,15],[955,2,2,15,17]]],[40,10,9,17,26,[[957,2,2,17,19],[959,1,1,19,20],[964,1,1,20,21],[968,2,2,21,23],[970,3,2,23,25],[971,1,1,25,26]]],[41,16,16,26,42,[[975,1,1,26,27],[976,4,4,27,31],[979,2,2,31,33],[987,1,1,33,34],[991,1,1,34,35],[994,3,3,35,38],[995,4,4,38,42]]],[42,26,24,42,66,[[997,8,6,42,48],[999,1,1,48,49],[1000,2,2,49,51],[1002,1,1,51,52],[1003,1,1,52,53],[1004,3,3,53,56],[1005,1,1,56,57],[1006,1,1,57,58],[1007,1,1,58,59],[1014,4,4,59,63],[1015,2,2,63,65],[1017,1,1,65,66]]],[43,6,6,66,72,[[1026,1,1,66,67],[1030,1,1,67,68],[1038,1,1,68,69],[1039,2,2,69,71],[1043,1,1,71,72]]],[44,3,3,72,75,[[1047,1,1,72,73],[1054,1,1,73,74],[1059,1,1,74,75]]],[47,1,1,75,76,[[1094,1,1,75,76]]],[57,3,3,76,79,[[1133,2,2,76,78],[1137,1,1,78,79]]],[58,2,2,79,81,[[1149,2,2,79,81]]],[65,8,8,81,89,[[1168,1,1,81,82],[1169,4,4,82,86],[1170,1,1,86,87],[1171,1,1,87,88],[1182,1,1,88,89]]]],[23175,23212,23215,23259,23462,23625,23630,23688,23689,23690,23695,23888,24032,24117,24127,24140,24169,24226,24239,24299,24529,24687,24707,24815,24824,24828,25047,25066,25072,25097,25104,25214,25215,25619,25752,25922,25931,25934,25938,25972,25974,25975,26063,26065,26066,26069,26086,26093,26130,26168,26175,26326,26380,26406,26429,26434,26468,26505,26550,26802,26810,26818,26822,26834,26837,26910,27221,27395,27702,27712,27731,27838,27963,28175,28284,29138,29968,29975,30035,30348,30349,30726,30747,30761,30762,30763,30779,30788,30959]]],["+",[2,2,[[42,2,2,0,2,[[1003,1,1,0,1],[1004,1,1,1,2]]]],[26380,26434]]],["Art",[18,17,[[39,2,2,0,2,[[939,1,1,0,1],[955,1,1,1,2]]],[40,2,2,2,4,[[970,1,1,2,3],[971,1,1,3,4]]],[41,5,5,4,9,[[979,2,2,4,6],[994,2,2,6,8],[995,1,1,8,9]]],[42,8,7,9,16,[[997,2,1,9,10],[999,1,1,10,11],[1000,1,1,11,12],[1014,4,4,12,16]]],[43,1,1,16,17,[[1038,1,1,16,17]]]],[23462,24140,24815,24828,25214,25215,25931,25934,25938,26065,26130,26168,26802,26810,26818,26822,27702]]],["art",[61,59,[[39,10,10,0,10,[[930,1,1,0,1],[933,1,1,1,2],[942,1,1,2,3],[944,4,4,3,7],[950,1,1,7,8],[953,1,1,8,9],[954,1,1,9,10]]],[40,8,7,10,17,[[957,2,2,10,12],[959,1,1,12,13],[964,1,1,13,14],[968,2,2,14,16],[970,2,1,16,17]]],[41,7,7,17,24,[[975,1,1,17,18],[976,2,2,18,20],[987,1,1,20,21],[991,1,1,21,22],[994,1,1,22,23],[995,1,1,23,24]]],[42,14,13,24,37,[[997,5,4,24,28],[1000,1,1,28,29],[1002,1,1,29,30],[1004,2,2,30,32],[1005,1,1,32,33],[1007,1,1,33,34],[1015,2,2,34,36],[1017,1,1,36,37]]],[43,5,5,37,42,[[1026,1,1,37,38],[1030,1,1,38,39],[1039,2,2,39,41],[1043,1,1,41,42]]],[44,3,3,42,45,[[1047,1,1,42,43],[1054,1,1,43,44],[1059,1,1,44,45]]],[47,1,1,45,46,[[1094,1,1,45,46]]],[57,3,3,46,49,[[1133,2,2,46,48],[1137,1,1,48,49]]],[58,2,2,49,51,[[1149,2,2,49,51]]],[65,8,8,51,59,[[1168,1,1,51,52],[1169,4,4,52,56],[1170,1,1,56,57],[1171,1,1,57,58],[1182,1,1,58,59]]]],[23175,23259,23630,23688,23689,23690,23695,23888,24032,24127,24226,24239,24299,24529,24687,24707,24824,25047,25097,25104,25619,25752,25922,25975,26063,26066,26086,26093,26175,26326,26406,26429,26468,26550,26834,26837,26910,27221,27395,27712,27731,27838,27963,28175,28284,29138,29968,29975,30035,30348,30349,30726,30747,30761,30762,30763,30779,30788,30959]]],["be",[11,11,[[39,5,5,0,5,[[932,2,2,0,2],[942,1,1,2,3],[954,1,1,3,4],[955,1,1,4,5]]],[41,4,4,5,9,[[976,2,2,5,7],[995,2,2,7,9]]],[42,2,2,9,11,[[997,1,1,9,10],[1006,1,1,10,11]]]],[23212,23215,23625,24117,24169,25066,25072,25972,25974,26069,26505]]]]},{"k":"G1489","v":[["*",[5,5,[[46,1,1,0,1,[[1082,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]],[48,2,2,2,4,[[1099,1,1,2,3],[1100,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]]],[28880,29106,29253,29293,29488]]],["If",[2,2,[[48,1,1,0,1,[[1099,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[29253,29488]]],["be",[2,2,[[46,1,1,0,1,[[1082,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[28880,29293]]],["if",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29106]]]]},{"k":"G1490","v":[["*",[15,14,[[39,2,2,0,2,[[934,1,1,0,1],[937,1,1,1,2]]],[40,2,2,2,4,[[958,2,2,2,4]]],[41,5,5,4,9,[[977,2,2,4,6],[982,1,1,6,7],[985,1,1,7,8],[986,1,1,8,9]]],[42,2,2,9,11,[[1010,2,2,9,11]]],[46,2,1,11,12,[[1088,2,1,11,12]]],[65,2,2,12,14,[[1168,2,2,12,14]]]],[23283,23396,24281,24282,25143,25144,25369,25527,25585,26670,26679,29005,30722,30733]]],["+",[2,1,[[46,2,1,0,1,[[1088,2,1,0,1]]]],[29005]]],["else",[8,8,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,2,2,1,3,[[958,2,2,1,3]]],[41,2,2,3,5,[[977,1,1,3,4],[986,1,1,4,5]]],[42,1,1,5,6,[[1010,1,1,5,6]]],[65,2,2,6,8,[[1168,2,2,6,8]]]],[23396,24281,24282,25144,25585,26679,30722,30733]]],["not",[3,3,[[41,2,2,0,2,[[982,1,1,0,1],[985,1,1,1,2]]],[42,1,1,2,3,[[1010,1,1,2,3]]]],[25369,25527,26670]]],["otherwise",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]]],[23283,25143]]]]},{"k":"G1491","v":[["*",[6,6,[[41,2,2,0,2,[[975,1,1,0,1],[981,1,1,1,2]]],[42,2,2,2,4,[[1001,1,1,2,3],[1016,1,1,3,4]]],[46,1,1,4,5,[[1082,1,1,4,5]]],[51,1,1,5,6,[[1115,1,1,5,6]]]],[25047,25330,26247,26875,28884,29643]]],["appearance",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29643]]],["fashion",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25330]]],["saw",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26875]]],["shape",[2,2,[[41,1,1,0,1,[[975,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]]],[25047,26247]]],["sight",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28884]]]]},{"k":"G1492","v":[["*",[664,625,[[39,83,82,0,82,[[930,5,5,0,5],[931,2,2,5,7],[932,3,3,7,10],[933,2,2,10,12],[934,2,2,12,14],[935,1,1,14,15],[936,3,3,15,18],[937,9,9,18,27],[939,2,2,27,29],[940,3,3,29,32],[941,4,3,32,35],[942,2,2,35,37],[943,1,1,37,38],[944,1,1,38,39],[945,1,1,39,40],[946,1,1,40,41],[948,3,3,41,44],[949,6,6,44,50],[950,3,3,50,53],[951,1,1,53,54],[952,5,5,54,59],[953,7,7,59,66],[954,7,7,66,73],[955,6,6,73,79],[956,3,3,79,82]]],[40,64,63,82,145,[[957,5,5,82,87],[958,5,5,87,92],[960,3,3,92,95],[961,6,6,95,101],[962,7,7,101,108],[963,1,1,108,109],[964,1,1,109,110],[965,9,9,110,119],[966,4,4,119,123],[967,3,3,123,126],[968,6,5,126,131],[969,5,5,131,136],[970,5,5,136,141],[971,3,3,141,144],[972,1,1,144,145]]],[41,95,90,145,235,[[973,2,2,145,147],[974,8,7,147,154],[976,2,2,154,156],[977,6,6,156,162],[978,1,1,162,163],[979,5,5,163,168],[980,7,7,168,175],[981,8,8,175,183],[982,5,4,183,187],[983,4,4,187,191],[984,4,4,191,195],[985,4,4,195,199],[986,1,1,199,200],[987,1,1,200,201],[989,3,3,201,204],[990,4,4,204,208],[991,7,7,208,215],[992,4,4,215,219],[993,5,5,219,224],[994,6,6,224,230],[995,5,3,230,233],[996,3,2,233,235]]],[42,122,104,235,339,[[997,10,8,235,243],[998,2,1,243,244],[999,4,4,244,248],[1000,8,7,248,255],[1001,3,3,255,258],[1002,9,9,258,267],[1003,7,5,267,272],[1004,11,5,272,277],[1005,12,9,277,286],[1006,2,2,286,288],[1007,8,8,288,296],[1008,6,6,296,302],[1009,6,6,302,308],[1010,4,2,308,310],[1011,2,2,310,312],[1012,3,2,312,314],[1014,4,4,314,318],[1015,6,6,318,324],[1016,8,8,324,332],[1017,7,7,332,339]]],[43,68,67,339,406,[[1019,4,4,339,343],[1020,5,5,343,348],[1021,1,1,348,349],[1022,1,1,349,350],[1023,1,1,350,351],[1024,7,6,351,357],[1025,1,1,357,358],[1026,4,4,358,362],[1027,3,3,362,365],[1028,4,4,365,369],[1029,4,4,369,373],[1030,6,6,373,379],[1031,2,2,379,381],[1032,1,1,381,382],[1033,5,5,382,387],[1036,2,2,387,389],[1037,3,3,389,392],[1038,1,1,392,393],[1039,2,2,393,395],[1040,1,1,395,396],[1041,1,1,396,397],[1043,4,4,397,401],[1045,5,5,401,406]]],[44,18,18,406,424,[[1046,1,1,406,407],[1047,1,1,407,408],[1048,1,1,408,409],[1050,1,1,409,410],[1051,2,2,410,412],[1052,3,3,412,415],[1053,4,4,415,419],[1056,2,2,419,421],[1058,1,1,421,422],[1059,1,1,422,423],[1060,1,1,423,424]]],[45,30,28,424,452,[[1062,1,1,424,425],[1063,5,4,425,429],[1064,1,1,429,430],[1066,1,1,430,431],[1067,6,6,431,437],[1068,2,1,437,438],[1069,4,4,438,442],[1070,2,2,442,444],[1072,1,1,444,445],[1073,1,1,445,446],[1074,1,1,446,447],[1075,2,2,447,449],[1076,1,1,449,450],[1077,2,2,450,452]]],[46,16,11,452,463,[[1078,1,1,452,453],[1081,1,1,453,454],[1082,4,4,454,458],[1086,1,1,458,459],[1088,2,2,459,461],[1089,7,2,461,463]]],[47,7,7,463,470,[[1091,1,1,463,464],[1092,3,3,464,467],[1094,2,2,467,469],[1096,1,1,469,470]]],[48,4,4,470,474,[[1097,1,1,470,471],[1102,3,3,471,474]]],[49,10,9,474,483,[[1103,5,5,474,479],[1104,1,1,479,480],[1106,4,3,480,483]]],[50,4,4,483,487,[[1108,1,1,483,484],[1109,1,1,484,485],[1110,2,2,485,487]]],[51,16,16,487,503,[[1111,2,2,487,489],[1112,5,5,489,494],[1113,4,4,494,498],[1114,3,3,498,501],[1115,2,2,501,503]]],[52,3,3,503,506,[[1116,1,1,503,504],[1117,1,1,504,505],[1118,1,1,505,506]]],[53,6,5,506,511,[[1119,2,2,506,508],[1121,2,2,508,510],[1124,2,1,510,511]]],[54,6,6,511,517,[[1125,3,3,511,514],[1126,1,1,514,515],[1127,2,2,515,517]]],[55,2,2,517,519,[[1129,1,1,517,518],[1131,1,1,518,519]]],[56,1,1,519,520,[[1132,1,1,519,520]]],[57,6,6,520,526,[[1135,1,1,520,521],[1140,1,1,521,522],[1142,1,1,522,523],[1143,3,3,523,526]]],[58,4,4,526,530,[[1148,1,1,526,527],[1149,2,2,527,529],[1150,1,1,529,530]]],[59,5,5,530,535,[[1151,2,2,530,532],[1153,2,2,532,534],[1155,1,1,534,535]]],[60,3,3,535,538,[[1156,2,2,535,537],[1157,1,1,537,538]]],[61,17,15,538,553,[[1160,5,4,538,542],[1161,5,5,542,547],[1163,7,6,547,553]]],[63,2,2,553,555,[[1165,2,2,553,555]]],[64,2,2,555,557,[[1166,2,2,555,557]]],[65,70,68,557,625,[[1167,6,5,557,562],[1168,4,4,562,566],[1169,4,4,566,570],[1170,2,2,570,572],[1171,4,4,572,576],[1172,6,6,576,582],[1173,4,4,582,586],[1174,2,2,586,588],[1175,2,2,588,590],[1176,2,2,590,592],[1178,2,2,592,594],[1179,4,4,594,598],[1180,3,3,598,601],[1181,3,3,601,604],[1182,1,1,604,605],[1183,8,7,605,612],[1184,2,2,612,614],[1185,4,4,614,618],[1186,4,4,618,622],[1187,3,3,622,625]]]],[23171,23178,23179,23180,23185,23199,23208,23225,23227,23230,23235,23250,23290,23314,23327,23359,23363,23379,23381,23383,23385,23387,23388,23390,23401,23402,23415,23467,23468,23491,23514,23527,23553,23554,23556,23611,23623,23645,23700,23708,23758,23795,23814,23817,23841,23845,23846,23853,23858,23864,23883,23888,23901,23957,23972,23990,23993,23999,24000,24020,24021,24034,24045,24046,24047,24052,24056,24062,24112,24124,24125,24126,24128,24132,24147,24153,24178,24183,24194,24200,24201,24212,24225,24231,24234,24239,24249,24265,24270,24272,24274,24276,24335,24336,24350,24370,24378,24380,24386,24396,24397,24427,24440,24441,24445,24455,24456,24457,24465,24533,24539,24544,24546,24547,24552,24553,24558,24563,24576,24602,24607,24626,24630,24653,24660,24673,24687,24688,24697,24701,24707,24731,24746,24749,24750,24752,24794,24821,24822,24823,24825,24858,24862,24865,24878,24905,24922,24988,24990,24993,24999,25003,25021,25022,25097,25104,25109,25115,25119,25127,25131,25133,25154,25208,25217,25220,25221,25234,25265,25273,25279,25280,25281,25292,25298,25310,25328,25333,25334,25348,25350,25355,25356,25387,25394,25395,25396,25418,25422,25443,25449,25489,25498,25513,25515,25530,25543,25545,25553,25571,25608,25665,25666,25673,25703,25708,25712,25731,25734,25735,25736,25738,25753,25768,25772,25786,25792,25793,25800,25827,25828,25846,25855,25857,25898,25913,25920,25921,25922,25924,25943,25969,25982,26015,26030,26070,26075,26077,26083,26090,26091,26092,26094,26104,26122,26123,26128,26131,26166,26178,26181,26185,26188,26198,26204,26216,26223,26242,26263,26271,26279,26281,26283,26287,26299,26318,26321,26343,26355,26356,26357,26380,26395,26400,26418,26436,26437,26441,26452,26460,26461,26464,26465,26469,26470,26471,26485,26486,26545,26547,26554,26555,26556,26557,26565,26572,26589,26601,26615,26620,26621,26630,26631,26633,26637,26641,26647,26648,26672,26673,26714,26720,26744,26756,26787,26789,26806,26811,26831,26835,26851,26853,26858,26860,26869,26876,26880,26881,26887,26892,26894,26896,26902,26910,26913,26914,26915,26919,26922,26971,26976,26979,26980,26999,27005,27008,27012,27013,27042,27066,27116,27134,27140,27147,27150,27156,27171,27215,27228,27243,27251,27256,27262,27276,27296,27312,27313,27320,27330,27340,27346,27348,27353,27374,27397,27398,27399,27403,27407,27423,27425,27448,27486,27493,27502,27510,27523,27606,27617,27648,27651,27655,27696,27718,27722,27739,27791,27826,27836,27839,27850,27903,27914,27919,27925,27926,27941,27964,28010,28050,28077,28084,28098,28105,28109,28138,28142,28143,28144,28211,28231,28277,28294,28332,28379,28396,28403,28405,28406,28426,28460,28469,28470,28476,28482,28483,28486,28503,28528,28529,28531,28537,28553,28564,28603,28636,28667,28689,28694,28776,28783,28791,28807,28873,28878,28883,28888,28893,28958,29000,29020,29024,29025,29076,29088,29095,29097,29139,29144,29199,29224,29345,29346,29358,29378,29380,29386,29388,29391,29419,29451,29454,29457,29495,29541,29543,29548,29564,29565,29571,29572,29575,29581,29587,29593,29594,29596,29600,29605,29607,29608,29623,29633,29657,29667,29685,29704,29705,29736,29746,29804,29813,29821,29824,29850,29867,29868,29908,29934,29959,30004,30103,30163,30177,30185,30195,30320,30341,30354,30365,30382,30392,30433,30434,30474,30491,30493,30509,30561,30570,30571,30579,30580,30581,30584,30593,30594,30637,30639,30640,30642,30643,30644,30670,30672,30677,30682,30699,30709,30714,30716,30717,30719,30726,30730,30736,30747,30754,30761,30763,30769,30772,30780,30781,30785,30790,30794,30795,30798,30801,30802,30805,30811,30812,30819,30824,30829,30840,30841,30857,30862,30866,30903,30904,30909,30910,30911,30919,30927,30932,30940,30947,30948,30951,30967,30978,30981,30983,30987,30990,30991,30993,30994,31000,31028,31029,31034,31036,31039,31042,31049,31050,31054,31055,31075]]],["+",[16,15,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,2,2,2,4,[[980,1,1,2,3],[983,1,1,3,4]]],[42,8,8,4,12,[[999,1,1,4,5],[1003,1,1,5,6],[1004,2,2,6,8],[1007,1,1,8,9],[1012,1,1,9,10],[1016,2,2,10,12]]],[43,1,1,12,13,[[1041,1,1,12,13]]],[46,3,2,13,15,[[1089,3,2,13,15]]]],[23853,24673,25281,25449,26128,26356,26395,26400,26572,26744,26876,26896,27791,29024,29025]]],["Behold",[5,5,[[41,2,2,0,2,[[993,1,1,0,1],[996,1,1,1,2]]],[43,1,1,2,3,[[1030,1,1,2,3]]],[44,1,1,3,4,[[1056,1,1,3,4]]],[61,1,1,4,5,[[1161,1,1,4,5]]]],[25855,26030,27403,28231,30580]]],["I",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27836]]],["Know",[8,8,[[40,1,1,0,1,[[960,1,1,0,1]]],[44,1,1,1,2,[[1051,1,1,1,2]]],[45,6,6,2,8,[[1064,1,1,2,3],[1066,1,1,3,4],[1067,3,3,4,7],[1070,1,1,7,8]]]],[24336,28084,28426,28460,28470,28476,28482,28564]]],["Knowest",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23645]]],["Knowing",[10,10,[[44,1,1,0,1,[[1051,1,1,0,1]]],[46,2,2,1,3,[[1081,1,1,1,2],[1082,1,1,2,3]]],[47,1,1,3,4,[[1092,1,1,3,4]]],[48,1,1,4,5,[[1102,1,1,4,5]]],[50,1,1,5,6,[[1109,1,1,5,6]]],[51,1,1,6,7,[[1111,1,1,6,7]]],[53,1,1,7,8,[[1119,1,1,7,8]]],[55,1,1,8,9,[[1131,1,1,8,9]]],[60,1,1,9,10,[[1156,1,1,9,10]]]],[28077,28873,28888,29097,29345,29541,29564,29705,29934,30493]]],["Wot",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28211]]],["beheld",[10,10,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,2,2,1,3,[[991,1,1,1,2],[994,1,1,2,3]]],[65,7,7,3,10,[[1171,2,2,3,5],[1172,2,2,5,7],[1173,1,1,7,8],[1174,1,1,8,9],[1179,1,1,9,10]]]],[24553,25772,25920,30785,30790,30798,30805,30819,30840,30919]]],["behold",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26894]]],["can",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[24194,25515]]],["consider",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27448]]],["knew",[27,26,[[39,2,2,0,2,[[940,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,2,2,3,5,[[976,1,1,3,4],[978,1,1,4,5]]],[42,13,12,5,17,[[997,2,2,5,7],[998,2,1,7,8],[1002,3,3,8,11],[1007,1,1,11,12],[1009,2,2,12,14],[1014,1,1,14,15],[1016,1,1,15,16],[1017,1,1,16,17]]],[43,3,3,17,20,[[1024,1,1,17,18],[1033,1,1,18,19],[1036,1,1,19,20]]],[46,2,2,20,22,[[1089,2,2,20,22]]],[47,1,1,22,23,[[1094,1,1,22,23]]],[50,1,1,23,24,[[1108,1,1,23,24]]],[64,1,1,24,25,[[1166,1,1,24,25]]],[65,1,1,25,26,[[1185,1,1,25,26]]]],[23514,24147,24249,25104,25154,26075,26077,26104,26263,26318,26321,26565,26631,26641,26787,26881,26902,27134,27486,27617,29024,29025,29139,29495,30677,31029]]],["knewest",[3,3,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,1,1,1,2,[[991,1,1,1,2]]],[42,1,1,2,3,[[1000,1,1,2,3]]]],[24034,25753,26166]]],["know",[169,157,[[39,13,13,0,13,[[935,1,1,0,1],[937,1,1,1,2],[948,2,2,2,4],[950,1,1,4,5],[952,1,1,5,6],[953,2,2,6,8],[954,4,4,8,12],[956,1,1,12,13]]],[40,10,10,13,23,[[957,1,1,13,14],[958,1,1,14,15],[966,2,2,15,17],[968,2,2,17,19],[969,2,2,19,21],[970,2,2,21,23]]],[41,10,10,23,33,[[976,1,1,23,24],[977,1,1,24,25],[981,1,1,25,26],[983,1,1,26,27],[985,2,2,27,29],[992,1,1,29,30],[994,2,2,30,32],[995,1,1,32,33]]],[42,47,38,33,71,[[997,1,1,33,34],[999,2,2,34,36],[1000,5,4,36,40],[1001,1,1,40,41],[1002,1,1,41,42],[1003,4,3,42,45],[1004,6,4,45,49],[1005,11,8,49,57],[1006,2,2,57,59],[1007,2,2,59,61],[1008,1,1,61,62],[1009,2,2,62,64],[1010,4,2,64,66],[1011,1,1,66,67],[1014,1,1,67,68],[1016,2,2,68,70],[1017,1,1,70,71]]],[43,8,8,71,79,[[1019,1,1,71,72],[1020,1,1,72,73],[1027,1,1,73,74],[1029,1,1,74,75],[1037,2,2,75,77],[1043,2,2,77,79]]],[44,7,7,79,86,[[1048,1,1,79,80],[1052,2,2,80,82],[1053,3,3,82,85],[1059,1,1,85,86]]],[45,14,14,86,100,[[1062,1,1,86,87],[1063,2,2,87,89],[1067,3,3,89,92],[1069,2,2,92,94],[1070,1,1,94,95],[1072,1,1,95,96],[1073,1,1,96,97],[1075,1,1,97,98],[1076,1,1,98,99],[1077,1,1,99,100]]],[46,3,3,100,103,[[1082,2,2,100,102],[1086,1,1,102,103]]],[47,1,1,103,104,[[1094,1,1,103,104]]],[48,2,2,104,106,[[1097,1,1,104,105],[1102,1,1,105,106]]],[49,5,4,106,110,[[1103,2,2,106,108],[1106,3,2,108,110]]],[50,1,1,110,111,[[1110,1,1,110,111]]],[51,12,12,111,123,[[1111,1,1,111,112],[1112,4,4,112,116],[1113,2,2,116,118],[1114,3,3,118,121],[1115,2,2,121,123]]],[52,3,3,123,126,[[1116,1,1,123,124],[1117,1,1,124,125],[1118,1,1,125,126]]],[53,3,3,126,129,[[1119,1,1,126,127],[1121,2,2,127,129]]],[54,1,1,129,130,[[1125,1,1,129,130]]],[55,1,1,130,131,[[1129,1,1,130,131]]],[57,2,2,131,133,[[1140,1,1,131,132],[1142,1,1,132,133]]],[58,1,1,133,134,[[1149,1,1,133,134]]],[59,1,1,134,135,[[1151,1,1,134,135]]],[60,1,1,135,136,[[1156,1,1,135,136]]],[61,14,12,136,148,[[1160,4,3,136,139],[1161,4,4,139,143],[1163,6,5,143,148]]],[63,1,1,148,149,[[1165,1,1,148,149]]],[64,1,1,149,150,[[1166,1,1,149,150]]],[65,7,7,150,157,[[1168,4,4,150,154],[1169,3,3,154,157]]]],[23327,23385,23814,23817,23888,23999,24020,24021,24056,24124,24126,24128,24200,24239,24270,24626,24630,24687,24697,24750,24752,24822,24825,25097,25131,25356,25418,25543,25545,25800,25921,25924,25969,26070,26122,26131,26178,26181,26188,26198,26242,26299,26355,26356,26357,26395,26400,26418,26436,26452,26460,26461,26464,26465,26469,26470,26471,26485,26486,26545,26547,26630,26647,26648,26672,26673,26720,26806,26869,26880,26922,26971,27012,27296,27348,27651,27655,27826,27850,28010,28105,28109,28138,28142,28144,28294,28379,28396,28406,28469,28483,28486,28528,28531,28553,28603,28636,28689,28776,28791,28878,28893,28958,29144,29224,29358,29380,29386,29454,29457,29548,29565,29571,29572,29575,29581,29593,29594,29605,29607,29608,29623,29633,29657,29667,29685,29704,29736,29746,29821,29908,30103,30163,30341,30392,30491,30570,30571,30579,30581,30584,30593,30594,30637,30639,30642,30643,30644,30670,30682,30719,30726,30730,30736,30747,30754,30761]]],["knowest",[14,13,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,2,2,1,3,[[990,1,1,1,2],[994,1,1,2,3]]],[42,6,6,3,9,[[1009,1,1,3,4],[1012,1,1,4,5],[1015,1,1,5,6],[1017,3,3,6,9]]],[45,2,1,9,10,[[1068,2,1,9,10]]],[54,1,1,10,11,[[1125,1,1,10,11]]],[65,2,2,11,13,[[1169,1,1,11,12],[1173,1,1,12,13]]]],[24607,25708,25898,26637,26756,26835,26913,26914,26915,28503,29824,30763,30824]]],["knoweth",[22,21,[[39,3,3,0,3,[[934,2,2,0,2],[952,1,1,2,3]]],[40,2,2,3,5,[[960,1,1,3,4],[969,1,1,4,5]]],[41,1,1,5,6,[[984,1,1,5,6]]],[42,4,4,6,10,[[1003,1,1,6,7],[1008,1,1,7,8],[1011,1,1,8,9],[1015,1,1,9,10]]],[44,1,1,10,11,[[1053,1,1,10,11]]],[45,3,2,11,13,[[1063,2,1,11,12],[1069,1,1,12,13]]],[46,4,4,13,17,[[1088,2,2,13,15],[1089,2,2,15,17]]],[58,1,1,17,18,[[1149,1,1,17,18]]],[60,1,1,18,19,[[1157,1,1,18,19]]],[61,1,1,19,20,[[1160,1,1,19,20]]],[65,1,1,20,21,[[1178,1,1,20,21]]]],[23290,23314,23993,24350,24749,25489,26343,26615,26714,26860,28143,28405,28529,29000,29020,29024,29025,30354,30509,30561,30903]]],["knowing",[28,28,[[39,2,2,0,2,[[937,1,1,0,1],[950,1,1,1,2]]],[40,3,3,2,5,[[961,1,1,2,3],[962,1,1,3,4],[968,1,1,4,5]]],[41,3,3,5,8,[[980,1,1,5,6],[981,1,1,6,7],[983,1,1,7,8]]],[42,4,4,8,12,[[1009,1,1,8,9],[1014,1,1,9,10],[1015,1,1,10,11],[1017,1,1,11,12]]],[43,3,3,12,15,[[1019,1,1,12,13],[1022,1,1,13,14],[1037,1,1,14,15]]],[44,2,2,15,17,[[1050,1,1,15,16],[1058,1,1,16,17]]],[46,2,2,17,19,[[1078,1,1,17,18],[1082,1,1,18,19]]],[48,1,1,19,20,[[1102,1,1,19,20]]],[49,1,1,20,21,[[1103,1,1,20,21]]],[50,1,1,21,22,[[1110,1,1,21,22]]],[54,2,2,22,24,[[1126,1,1,22,23],[1127,1,1,23,24]]],[56,1,1,24,25,[[1132,1,1,24,25]]],[58,1,1,25,26,[[1148,1,1,25,26]]],[59,2,2,26,28,[[1153,1,1,26,27],[1155,1,1,27,28]]]],[23383,23901,24397,24427,24688,25298,25334,25422,26633,26789,26853,26910,26979,27066,27648,28050,28277,28807,28883,29346,29378,29543,29850,29867,29959,30320,30433,30474]]],["known",[5,5,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]],[44,1,1,3,4,[[1052,1,1,3,4]]],[54,1,1,4,5,[[1127,1,1,4,5]]]],[24000,25498,26400,28098,29868]]],["look",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26380]]],["looked",[6,6,[[41,1,1,0,1,[[982,1,1,0,1]]],[65,5,5,1,6,[[1170,1,1,1,2],[1172,1,1,2,3],[1180,2,2,3,5],[1181,1,1,5,6]]]],[25395,30769,30801,30927,30940,30951]]],["on",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24533]]],["perceive",[3,3,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]]],[23553,24335,27925]]],["perceiving",[3,3,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[43,1,1,2,3,[[1031,1,1,2,3]]]],[24701,25348,27423]]],["saw",[186,185,[[39,39,39,0,39,[[930,4,4,0,4],[931,2,2,4,6],[932,3,3,6,9],[936,3,3,9,12],[937,6,6,12,18],[940,1,1,18,19],[942,2,2,19,21],[945,1,1,21,22],[946,1,1,22,23],[948,1,1,23,24],[949,4,4,24,28],[950,1,1,28,29],[953,4,4,29,33],[954,2,2,33,35],[955,3,3,35,38],[956,1,1,38,39]]],[40,28,28,39,67,[[957,3,3,39,42],[958,4,4,42,46],[961,3,3,46,49],[962,5,5,49,54],[963,1,1,54,55],[965,5,5,55,60],[966,1,1,60,61],[967,1,1,61,62],[968,1,1,62,63],[970,2,2,63,65],[971,1,1,65,66],[972,1,1,66,67]]],[41,34,34,67,101,[[973,2,2,67,69],[974,1,1,69,70],[977,3,3,70,73],[979,2,2,73,75],[980,3,3,75,78],[981,3,3,78,81],[982,2,2,81,83],[983,1,1,83,84],[985,1,1,84,85],[987,1,1,85,86],[989,2,2,86,88],[990,3,3,88,91],[991,2,2,91,93],[992,1,1,93,94],[993,2,2,94,96],[994,2,2,96,98],[995,2,2,98,100],[996,1,1,100,101]]],[42,18,18,101,119,[[997,4,4,101,105],[1001,1,1,105,106],[1002,3,3,106,109],[1004,1,1,109,110],[1005,1,1,110,111],[1007,3,3,111,114],[1008,1,1,114,115],[1015,3,3,115,118],[1016,1,1,118,119]]],[43,23,23,119,142,[[1020,2,2,119,121],[1023,1,1,121,122],[1024,2,2,122,124],[1025,1,1,124,125],[1026,2,2,125,127],[1027,1,1,127,128],[1028,2,2,128,130],[1029,2,2,130,132],[1030,4,4,132,136],[1031,1,1,136,137],[1033,1,1,137,138],[1038,1,1,138,139],[1039,1,1,139,140],[1045,2,2,140,142]]],[47,3,3,142,145,[[1091,1,1,142,143],[1092,2,2,143,145]]],[49,1,1,145,146,[[1103,1,1,145,146]]],[57,2,2,146,148,[[1135,1,1,146,147],[1143,1,1,147,148]]],[65,38,37,148,185,[[1167,3,3,148,151],[1170,1,1,151,152],[1171,2,2,152,154],[1172,3,3,154,157],[1173,2,2,157,159],[1174,1,1,159,160],[1175,2,2,160,162],[1176,2,2,162,164],[1178,1,1,164,165],[1179,3,3,165,168],[1180,1,1,168,169],[1181,2,2,169,171],[1182,1,1,171,172],[1183,3,2,172,174],[1184,1,1,174,175],[1185,3,3,175,178],[1186,4,4,178,182],[1187,3,3,182,185]]]],[23178,23179,23180,23185,23199,23208,23225,23227,23230,23359,23363,23379,23387,23388,23390,23401,23402,23415,23491,23611,23623,23708,23758,23795,23841,23845,23846,23864,23883,24045,24046,24047,24052,24062,24125,24132,24153,24183,24212,24225,24231,24234,24265,24272,24274,24276,24370,24380,24386,24440,24441,24455,24456,24457,24465,24546,24552,24558,24563,24576,24602,24660,24707,24821,24823,24865,24878,24905,24922,25021,25109,25115,25127,25208,25234,25273,25279,25292,25333,25350,25355,25394,25396,25443,25530,25608,25665,25666,25703,25712,25731,25736,25738,25793,25827,25828,25913,25922,25943,25982,26015,26083,26091,26092,26094,26216,26279,26281,26283,26437,26441,26554,26555,26556,26621,26831,26851,26858,26887,27005,27008,27116,27147,27171,27215,27251,27256,27262,27312,27313,27340,27353,27374,27398,27399,27407,27425,27502,27696,27722,27903,27914,29076,29088,29095,29391,30004,30195,30699,30709,30714,30772,30780,30781,30794,30795,30802,30811,30812,30829,30841,30857,30862,30866,30904,30909,30910,30911,30932,30947,30948,30967,30978,30981,30994,31028,31034,31036,31039,31042,31049,31050,31054,31055,31075]]],["sawest",[7,6,[[65,7,6,0,6,[[1167,2,1,0,1],[1183,5,5,1,6]]]],[30717,30983,30987,30990,30991,30993]]],["see",[78,78,[[39,13,13,0,13,[[933,1,1,0,1],[939,2,2,1,3],[940,1,1,3,4],[941,2,2,4,6],[944,1,1,6,7],[951,1,1,7,8],[952,2,2,8,10],[954,1,1,10,11],[955,1,1,11,12],[956,1,1,12,13]]],[40,8,8,13,21,[[961,2,2,13,15],[962,1,1,15,16],[968,1,1,16,17],[969,2,2,17,19],[971,2,2,19,21]]],[41,20,20,21,41,[[974,2,2,21,23],[979,2,2,23,25],[980,2,2,25,27],[981,2,2,27,29],[982,1,1,29,30],[984,1,1,30,31],[985,1,1,31,32],[986,1,1,32,33],[989,1,1,33,34],[991,2,2,34,36],[992,1,1,36,37],[993,2,2,37,39],[995,1,1,39,40],[996,1,1,40,41]]],[42,14,14,41,55,[[997,3,3,41,44],[999,1,1,44,45],[1000,2,2,45,47],[1002,1,1,47,48],[1004,1,1,48,49],[1007,1,1,49,50],[1008,3,3,50,53],[1014,1,1,53,54],[1016,1,1,54,55]]],[43,7,7,55,62,[[1019,2,2,55,57],[1030,1,1,57,58],[1036,1,1,58,59],[1039,1,1,59,60],[1045,2,2,60,62]]],[44,1,1,62,63,[[1046,1,1,62,63]]],[45,2,2,63,65,[[1069,1,1,63,64],[1077,1,1,64,65]]],[47,1,1,65,66,[[1096,1,1,65,66]]],[49,2,2,66,68,[[1103,1,1,66,67],[1104,1,1,67,68]]],[51,3,3,68,71,[[1112,1,1,68,69],[1113,2,2,69,71]]],[53,1,1,71,72,[[1124,1,1,71,72]]],[54,1,1,72,73,[[1125,1,1,72,73]]],[57,1,1,73,74,[[1143,1,1,73,74]]],[59,1,1,74,75,[[1153,1,1,74,75]]],[61,1,1,75,76,[[1163,1,1,75,76]]],[63,1,1,76,77,[[1165,1,1,76,77]]],[65,1,1,77,78,[[1184,1,1,77,78]]]],[23250,23467,23468,23527,23554,23556,23700,23957,23972,23990,24112,24178,24201,24378,24396,24445,24688,24731,24746,24858,24862,24988,24999,25220,25221,25265,25280,25310,25328,25387,25513,25553,25571,25673,25734,25735,25792,25846,25857,25943,26030,26077,26083,26090,26123,26185,26204,26287,26437,26557,26589,26601,26620,26811,26892,26976,26980,27397,27606,27718,27919,27926,27941,28537,28783,29199,29388,29419,29587,29596,29600,29804,29813,30177,30434,30640,30672,31000]]],["seeing",[8,8,[[39,2,2,0,2,[[933,1,1,0,1],[937,1,1,1,2]]],[40,1,1,2,3,[[967,1,1,2,3]]],[41,1,1,3,4,[[977,1,1,3,4]]],[42,1,1,4,5,[[1017,1,1,4,5]]],[43,3,3,5,8,[[1020,1,1,5,6],[1024,1,1,6,7],[1033,1,1,7,8]]]],[23235,23381,24653,25119,26919,26999,27140,27510]]],["seen",[33,32,[[39,3,3,0,3,[[930,1,1,0,1],[941,1,1,1,2],[949,1,1,2,3]]],[40,2,2,3,5,[[965,2,2,3,5]]],[41,9,9,5,14,[[974,4,4,5,9],[977,1,1,9,10],[979,1,1,10,11],[982,1,1,11,12],[991,1,1,12,13],[995,1,1,13,14]]],[42,1,1,14,15,[[1002,1,1,14,15]]],[43,11,10,15,25,[[1021,1,1,15,16],[1024,2,1,16,17],[1026,2,2,17,19],[1027,1,1,19,20],[1028,2,2,20,22],[1033,2,2,22,24],[1043,1,1,24,25]]],[45,1,1,25,26,[[1063,1,1,25,26]]],[49,1,1,26,27,[[1106,1,1,26,27]]],[53,1,1,27,28,[[1124,1,1,27,28]]],[57,1,1,28,29,[[1143,1,1,28,29]]],[58,1,1,29,30,[[1150,1,1,29,30]]],[59,1,1,30,31,[[1151,1,1,30,31]]],[65,1,1,31,32,[[1167,1,1,31,32]]]],[23171,23556,23858,24539,24547,24990,24993,24999,25003,25133,25217,25387,25768,25943,26271,27042,27150,27228,27243,27276,27320,27330,27493,27523,27839,28403,29451,29804,30185,30365,30382,30716]]],["sure",[3,3,[[42,1,1,0,1,[[1012,1,1,0,1]]],[44,2,2,1,3,[[1047,1,1,1,2],[1060,1,1,2,3]]]],[26756,27964,28332]]],["tell",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25786]]],["understand",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28667]]],["understandeth",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28694]]],["wist",[6,6,[[40,2,2,0,2,[[965,1,1,0,1],[970,1,1,1,2]]],[41,1,1,2,3,[[974,1,1,2,3]]],[42,1,1,3,4,[[1001,1,1,3,4]]],[43,2,2,4,6,[[1029,1,1,4,5],[1040,1,1,5,6]]]],[24544,24794,25022,26223,27346,27739]]],["wot",[2,2,[[43,2,2,0,2,[[1020,1,1,0,1],[1024,1,1,1,2]]]],[27013,27156]]]]},{"k":"G1493","v":[["temple",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28537]]]]},{"k":"G1494","v":[["*",[10,10,[[43,2,2,0,2,[[1032,1,1,0,1],[1038,1,1,1,2]]],[45,6,6,2,8,[[1069,4,4,2,6],[1071,2,2,6,8]]],[65,2,2,8,10,[[1168,2,2,8,10]]]],[27471,27689,28528,28531,28534,28537,28586,28595,30731,30737]]],["idol",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28534]]],["idols",[9,9,[[43,2,2,0,2,[[1032,1,1,0,1],[1038,1,1,1,2]]],[45,5,5,2,7,[[1069,3,3,2,5],[1071,2,2,5,7]]],[65,2,2,7,9,[[1168,2,2,7,9]]]],[27471,27689,28528,28531,28537,28586,28595,30731,30737]]]]},{"k":"G1495","v":[["*",[4,4,[[45,1,1,0,1,[[1071,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]]],[28581,29182,29522,30449]]],["Idolatry",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29182]]],["idolatries",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30449]]],["idolatry",[2,2,[[45,1,1,0,1,[[1071,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[28581,29522]]]]},{"k":"G1496","v":[["*",[7,7,[[45,4,4,0,4,[[1066,2,2,0,2],[1067,1,1,2,3],[1071,1,1,3,4]]],[48,1,1,4,5,[[1101,1,1,4,5]]],[65,2,2,5,7,[[1187,1,1,5,6],[1188,1,1,6,7]]]],[28464,28465,28476,28574,29309,31061,31095]]],["idolater",[2,2,[[45,1,1,0,1,[[1066,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]]],[28465,29309]]],["idolaters",[5,5,[[45,3,3,0,3,[[1066,1,1,0,1],[1067,1,1,1,2],[1071,1,1,2,3]]],[65,2,2,3,5,[[1187,1,1,3,4],[1188,1,1,4,5]]]],[28464,28476,28574,31061,31095]]]]},{"k":"G1497","v":[["*",[11,11,[[43,2,2,0,2,[[1024,1,1,0,1],[1032,1,1,1,2]]],[44,1,1,2,3,[[1047,1,1,2,3]]],[45,4,4,3,7,[[1069,2,2,3,5],[1071,1,1,5,6],[1073,1,1,6,7]]],[46,1,1,7,8,[[1083,1,1,7,8]]],[51,1,1,8,9,[[1111,1,1,8,9]]],[61,1,1,9,10,[[1163,1,1,9,10]]],[65,1,1,10,11,[[1175,1,1,10,11]]]],[27157,27462,27984,28531,28534,28586,28636,28914,29569,30645,30860]]],["idol",[4,4,[[43,1,1,0,1,[[1024,1,1,0,1]]],[45,3,3,1,4,[[1069,2,2,1,3],[1071,1,1,3,4]]]],[27157,28531,28534,28586]]],["idols",[7,7,[[43,1,1,0,1,[[1032,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]],[45,1,1,2,3,[[1073,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]],[51,1,1,4,5,[[1111,1,1,4,5]]],[61,1,1,5,6,[[1163,1,1,5,6]]],[65,1,1,6,7,[[1175,1,1,6,7]]]],[27462,27984,28636,28914,29569,30645,30860]]]]},{"k":"G1498","v":[["*",[12,12,[[41,7,7,0,7,[[973,1,1,0,1],[975,1,1,1,2],[980,1,1,2,3],[981,1,1,3,4],[987,1,1,4,5],[990,1,1,5,6],[994,1,1,6,7]]],[42,1,1,7,8,[[1009,1,1,7,8]]],[43,3,3,8,11,[[1025,1,1,8,9],[1027,1,1,9,10],[1038,1,1,10,11]]],[65,1,1,11,12,[[1169,1,1,11,12]]]],[24922,25040,25254,25347,25614,25724,25887,26654,27196,27276,27697,30761]]],["+",[5,5,[[41,1,1,0,1,[[975,1,1,0,1]]],[42,1,1,1,2,[[1009,1,1,1,2]]],[43,3,3,2,5,[[1025,1,1,2,3],[1027,1,1,3,4],[1038,1,1,4,5]]]],[25040,26654,27196,27276,27697]]],["be",[3,3,[[41,3,3,0,3,[[973,1,1,0,1],[980,1,1,1,2],[981,1,1,2,3]]]],[24922,25254,25347]]],["meant",[2,2,[[41,2,2,0,2,[[987,1,1,0,1],[990,1,1,1,2]]]],[25614,25724]]],["was",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25887]]],["wert",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30761]]]]},{"k":"G1499","v":[["*",[15,13,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[990,1,1,2,3]]],[46,9,7,3,10,[[1081,1,1,3,4],[1082,1,1,4,5],[1084,4,2,5,7],[1088,1,1,7,8],[1089,2,2,8,10]]],[49,2,2,10,12,[[1104,1,1,10,11],[1105,1,1,11,12]]],[57,1,1,12,13,[[1138,1,1,12,13]]]],[24087,25413,25692,28875,28893,28924,28928,29004,29033,29037,29408,29433,30053]]],["Though",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[990,1,1,2,3]]]],[24087,25413,25692]]],["if",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[29004,29408]]],["that",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29433]]],["though",[9,7,[[46,8,6,0,6,[[1081,1,1,0,1],[1082,1,1,1,2],[1084,4,2,2,4],[1089,2,2,4,6]]],[57,1,1,6,7,[[1138,1,1,6,7]]]],[28875,28893,28924,28928,29033,29037,30053]]]]},{"k":"G1500","v":[["*",[7,6,[[39,1,1,0,1,[[933,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]],[47,3,2,3,5,[[1093,2,1,3,4],[1094,1,1,4,5]]],[50,1,1,5,6,[[1108,1,1,5,6]]]],[23256,28270,28720,29106,29142,29512]]],["cause",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23256]]],["vain",[5,4,[[44,1,1,0,1,[[1058,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[47,3,2,2,4,[[1093,2,1,2,3],[1094,1,1,3,4]]]],[28270,28720,29106,29142]]],["vainly",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29512]]]]},{"k":"G1501","v":[["*",[12,11,[[41,1,1,0,1,[[986,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[43,2,2,2,4,[[1018,1,1,2,3],[1044,1,1,3,4]]],[45,1,1,4,5,[[1071,1,1,4,5]]],[65,7,6,5,11,[[1170,3,2,5,7],[1171,2,2,7,9],[1177,1,1,9,10],[1185,1,1,10,11]]]],[25584,26276,26938,27883,28575,30772,30778,30787,30793,30888,31021]]],["+",[10,9,[[42,1,1,0,1,[[1002,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]],[45,1,1,2,3,[[1071,1,1,2,3]]],[65,7,6,3,9,[[1170,3,2,3,5],[1171,2,2,5,7],[1177,1,1,7,8],[1185,1,1,8,9]]]],[26276,26938,28575,30772,30778,30787,30793,30888,31021]]],["twenty",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[25584,27883]]]]},{"k":"G1502","v":[["place",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29086]]]]},{"k":"G1503","v":[["*",[2,2,[[58,2,2,0,2,[[1146,2,2,0,2]]]],[30272,30289]]],["like",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30272]]],["unto",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30289]]]]},{"k":"G1504","v":[["image",[23,20,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[44,2,2,3,5,[[1046,1,1,3,4],[1053,1,1,4,5]]],[45,3,2,5,7,[[1072,1,1,5,6],[1076,2,1,6,7]]],[46,2,2,7,9,[[1080,1,1,7,8],[1081,1,1,8,9]]],[50,2,2,9,11,[[1107,1,1,9,10],[1109,1,1,10,11]]],[57,1,1,11,12,[[1142,1,1,11,12]]],[65,10,8,12,20,[[1179,4,2,12,14],[1180,2,2,14,16],[1181,1,1,16,17],[1182,1,1,17,18],[1185,1,1,18,19],[1186,1,1,19,20]]]],[23892,24689,25803,27953,28145,28607,28767,28859,28863,29480,29527,30134,30922,30923,30935,30937,30948,30956,31037,31042]]]]},{"k":"G1505","v":[["sincerity",[3,3,[[45,1,1,0,1,[[1066,1,1,0,1]]],[46,2,2,1,3,[[1078,1,1,1,2],[1079,1,1,2,3]]]],[28462,28812,28841]]]]},{"k":"G1506","v":[["*",[2,2,[[49,1,1,0,1,[[1103,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[29371,30523]]],["pure",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30523]]],["sincere",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29371]]]]},{"k":"G1507","v":[["together",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30807]]]]},{"k":"G1508","v":[["*",[85,81,[[39,17,16,0,16,[[933,1,1,0,1],[939,2,1,1,2],[940,3,3,2,5],[941,1,1,5,6],[942,1,1,6,7],[943,1,1,7,8],[944,1,1,8,9],[945,2,2,9,11],[947,2,2,11,13],[949,1,1,13,14],[952,2,2,14,16]]],[40,13,13,16,29,[[958,2,2,16,18],[961,1,1,18,19],[962,3,3,19,22],[964,1,1,22,23],[965,2,2,23,25],[966,1,1,25,26],[967,1,1,26,27],[969,2,2,27,29]]],[41,10,9,29,38,[[976,2,2,29,31],[977,1,1,31,32],[978,1,1,32,33],[980,1,1,33,34],[982,2,1,34,35],[983,1,1,35,36],[989,1,1,36,37],[990,1,1,37,38]]],[42,8,8,38,46,[[999,1,1,38,39],[1002,2,2,39,41],[1005,1,1,41,42],[1006,1,1,42,43],[1010,1,1,43,44],[1013,1,1,44,45],[1015,1,1,45,46]]],[43,2,2,46,48,[[1028,1,1,46,47],[1038,1,1,47,48]]],[44,7,6,48,54,[[1052,2,1,48,49],[1054,1,1,49,50],[1056,1,1,50,51],[1058,2,2,51,53],[1059,1,1,53,54]]],[45,10,9,54,63,[[1062,1,1,54,55],[1063,3,2,55,57],[1068,1,1,57,58],[1069,1,1,58,59],[1071,1,1,59,60],[1073,1,1,60,61],[1075,1,1,61,62],[1076,1,1,62,63]]],[46,4,4,63,67,[[1079,1,1,63,64],[1080,1,1,64,65],[1089,2,2,65,67]]],[47,3,3,67,70,[[1091,2,2,67,69],[1096,1,1,69,70]]],[48,1,1,70,71,[[1100,1,1,70,71]]],[49,1,1,71,72,[[1106,1,1,71,72]]],[53,1,1,72,73,[[1123,1,1,72,73]]],[57,1,1,73,74,[[1135,1,1,73,74]]],[61,2,2,74,76,[[1160,1,1,74,75],[1163,1,1,75,76]]],[65,5,5,76,81,[[1168,1,1,76,77],[1175,1,1,77,78],[1179,1,1,78,79],[1180,1,1,79,80],[1185,1,1,80,81]]]],[23247,23486,23493,23513,23528,23596,23614,23657,23676,23708,23721,23771,23779,23845,23979,23993,24267,24286,24401,24411,24412,24415,24514,24547,24567,24606,24653,24737,24749,25089,25090,25128,25150,25296,25385,25434,25669,25707,26133,26279,26303,26473,26491,26674,26771,26840,27326,27689,28098,28184,28224,28267,28274,28294,28377,28396,28405,28504,28531,28580,28637,28683,28720,28826,28842,29027,29035,29064,29076,29202,29281,29457,29782,30013,30572,30629,30734,30844,30925,30929,31029]]],["+",[4,4,[[40,1,1,0,1,[[965,1,1,0,1]]],[45,2,2,1,3,[[1075,1,1,1,2],[1076,1,1,2,3]]],[53,1,1,3,4,[[1123,1,1,3,4]]]],[24547,28683,28720,29782]]],["But",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28504]]],["Except",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28184]]],["If",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26473]]],["but",[51,50,[[39,12,12,0,12,[[933,1,1,0,1],[939,1,1,1,2],[940,3,3,2,5],[942,1,1,5,6],[943,1,1,6,7],[944,1,1,7,8],[945,1,1,8,9],[947,1,1,9,10],[949,1,1,10,11],[952,1,1,11,12]]],[40,7,7,12,19,[[958,2,2,12,14],[962,1,1,14,15],[965,1,1,15,16],[966,1,1,16,17],[967,1,1,17,18],[969,1,1,18,19]]],[41,5,4,19,23,[[977,1,1,19,20],[978,1,1,20,21],[982,2,1,21,22],[983,1,1,22,23]]],[42,5,5,23,28,[[999,1,1,23,24],[1006,1,1,24,25],[1010,1,1,25,26],[1013,1,1,26,27],[1015,1,1,27,28]]],[43,1,1,28,29,[[1028,1,1,28,29]]],[44,5,5,29,34,[[1052,1,1,29,30],[1056,1,1,30,31],[1058,2,2,31,33],[1059,1,1,33,34]]],[45,5,5,34,39,[[1062,1,1,34,35],[1063,1,1,35,36],[1069,1,1,36,37],[1071,1,1,37,38],[1073,1,1,38,39]]],[46,2,2,39,41,[[1079,1,1,39,40],[1089,1,1,40,41]]],[47,1,1,41,42,[[1091,1,1,41,42]]],[48,1,1,42,43,[[1100,1,1,42,43]]],[49,1,1,43,44,[[1106,1,1,43,44]]],[57,1,1,44,45,[[1135,1,1,44,45]]],[61,2,2,45,47,[[1160,1,1,45,46],[1163,1,1,46,47]]],[65,3,3,47,50,[[1175,1,1,47,48],[1180,1,1,48,49],[1185,1,1,49,50]]]],[23247,23486,23493,23513,23528,23614,23657,23676,23721,23779,23845,23993,24267,24286,24411,24567,24606,24653,24749,25128,25150,25385,25434,26133,26491,26674,26771,26840,27326,28098,28224,28267,28274,28294,28377,28405,28531,28580,28637,28826,29027,29064,29281,29457,30013,30572,30629,30844,30929,31029]]],["except",[5,5,[[39,2,2,0,2,[[947,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[44,1,1,3,4,[[1052,1,1,3,4]]],[46,1,1,4,5,[[1089,1,1,4,5]]]],[23771,23979,24737,28098,29035]]],["or",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28842]]],["save",[17,17,[[39,3,3,0,3,[[939,1,1,0,1],[941,1,1,1,2],[945,1,1,2,3]]],[40,2,2,3,5,[[961,1,1,3,4],[962,1,1,4,5]]],[41,4,4,5,9,[[976,1,1,5,6],[980,1,1,6,7],[989,1,1,7,8],[990,1,1,8,9]]],[42,2,2,9,11,[[1002,2,2,9,11]]],[43,1,1,11,12,[[1038,1,1,11,12]]],[45,2,2,12,14,[[1063,2,2,12,14]]],[47,2,2,14,16,[[1091,1,1,14,15],[1096,1,1,15,16]]],[65,1,1,16,17,[[1179,1,1,16,17]]]],[23486,23596,23708,24401,24415,25089,25296,25669,25707,26279,26303,27689,28396,28405,29076,29202,30925]]],["saving",[2,2,[[41,1,1,0,1,[[976,1,1,0,1]]],[65,1,1,1,2,[[1168,1,1,1,2]]]],[25090,30734]]],["than",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24514]]],["that",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24412]]]]},{"k":"G1509","v":[["*",[3,3,[[41,1,1,0,1,[[981,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]],[46,1,1,2,3,[[1090,1,1,2,3]]]],[25314,28492,29048]]],["+",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28492]]],["except",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[46,1,1,1,2,[[1090,1,1,1,2]]]],[25314,29048]]]]},{"k":"G1510","v":[["*",[146,137,[[39,14,14,0,14,[[931,1,1,0,1],[936,2,2,1,3],[939,1,1,3,4],[942,1,1,4,5],[946,1,1,5,6],[948,1,1,6,7],[950,1,1,7,8],[952,1,1,8,9],[954,2,2,9,11],[955,2,2,11,13],[956,1,1,13,14]]],[40,4,4,14,18,[[957,1,1,14,15],[962,1,1,15,16],[969,1,1,16,17],[970,1,1,17,18]]],[41,16,16,18,34,[[973,2,2,18,20],[975,1,1,20,21],[977,1,1,21,22],[979,2,2,22,24],[987,2,2,24,26],[990,1,1,26,27],[991,1,1,27,28],[993,1,1,28,29],[994,4,4,29,33],[996,1,1,33,34]]],[42,54,52,34,86,[[997,3,3,34,37],[999,2,1,37,38],[1000,1,1,38,39],[1002,5,5,39,44],[1003,5,5,44,49],[1004,8,7,49,56],[1005,2,2,56,58],[1006,5,5,58,63],[1007,1,1,63,64],[1008,1,1,64,65],[1009,3,3,65,68],[1010,3,3,68,71],[1011,2,2,71,73],[1012,1,1,73,74],[1013,4,4,74,78],[1014,7,7,78,85],[1015,1,1,85,86]]],[43,19,18,86,104,[[1026,1,1,86,87],[1027,2,2,87,89],[1028,1,1,89,90],[1030,2,1,90,91],[1035,1,1,91,92],[1038,1,1,92,93],[1039,2,2,93,95],[1040,2,2,95,97],[1041,2,2,97,99],[1042,1,1,99,100],[1043,2,2,100,102],[1044,2,2,102,104]]],[44,4,4,104,108,[[1046,1,1,104,105],[1052,1,1,105,106],[1056,2,2,106,108]]],[45,15,9,108,117,[[1062,1,1,108,109],[1064,1,1,109,110],[1070,4,2,110,112],[1073,4,2,112,114],[1074,1,1,114,115],[1076,4,2,115,117]]],[46,2,2,117,119,[[1089,2,2,117,119]]],[49,1,1,119,120,[[1106,1,1,119,120]]],[50,1,1,120,121,[[1108,1,1,120,121]]],[53,1,1,121,122,[[1119,1,1,121,122]]],[57,1,1,122,123,[[1144,1,1,122,123]]],[59,1,1,123,124,[[1151,1,1,123,124]]],[60,1,1,124,125,[[1156,1,1,124,125]]],[65,12,12,125,137,[[1167,4,4,125,129],[1168,1,1,129,130],[1169,1,1,130,131],[1184,1,1,131,132],[1185,1,1,132,133],[1187,1,1,133,134],[1188,3,3,134,137]]]],[23203,23353,23354,23488,23624,23747,23807,23904,23962,24076,24079,24153,24172,24215,24222,24457,24723,24816,24911,24912,25041,25115,25201,25203,25607,25609,25699,25753,25834,25891,25897,25922,25934,26030,26064,26065,26071,26148,26182,26277,26292,26298,26305,26308,26356,26357,26361,26362,26364,26393,26397,26399,26404,26405,26409,26439,26445,26449,26488,26490,26492,26495,26517,26548,26606,26643,26649,26663,26671,26674,26677,26700,26704,26758,26770,26773,26775,26783,26790,26791,26793,26802,26810,26820,26822,26846,27221,27280,27285,27335,27387,27567,27703,27707,27712,27740,27764,27784,27794,27806,27838,27852,27865,27878,27944,28105,28210,28222,28375,28414,28541,28542,28649,28650,28667,28727,28728,29032,29033,29453,29499,29711,30233,30390,30492,30705,30708,30714,30715,30740,30763,31000,31027,31059,31089,31093,31096]]],["+",[6,6,[[43,2,2,0,2,[[1040,1,1,0,1],[1042,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]],[65,3,3,3,6,[[1167,2,2,3,5],[1187,1,1,5,6]]]],[27764,27806,30233,30705,30708,31059]]],["Am",[2,2,[[42,1,1,0,1,[[1014,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]]],[26820,28541]]],["a",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23354]]],["am",[123,116,[[39,10,10,0,10,[[931,1,1,0,1],[936,1,1,1,2],[939,1,1,2,3],[946,1,1,3,4],[948,1,1,4,5],[950,1,1,5,6],[952,1,1,6,7],[955,2,2,7,9],[956,1,1,9,10]]],[40,3,3,10,13,[[957,1,1,10,11],[969,1,1,11,12],[970,1,1,12,13]]],[41,14,14,13,27,[[973,2,2,13,15],[975,1,1,15,16],[977,1,1,16,17],[979,2,2,17,19],[987,2,2,19,21],[990,1,1,21,22],[993,1,1,22,23],[994,4,4,23,27]]],[42,51,49,27,76,[[997,3,3,27,30],[999,2,1,30,31],[1000,1,1,31,32],[1002,4,4,32,36],[1003,5,5,36,41],[1004,8,7,41,48],[1005,2,2,48,50],[1006,5,5,50,55],[1007,1,1,55,56],[1008,1,1,56,57],[1009,3,3,57,60],[1010,2,2,60,62],[1011,2,2,62,64],[1012,1,1,64,65],[1013,4,4,65,69],[1014,6,6,69,75],[1015,1,1,75,76]]],[43,13,12,76,88,[[1026,1,1,76,77],[1027,2,2,77,79],[1030,2,1,79,80],[1035,1,1,80,81],[1038,1,1,81,82],[1039,2,2,82,84],[1040,1,1,84,85],[1043,2,2,85,87],[1044,1,1,87,88]]],[44,4,4,88,92,[[1046,1,1,88,89],[1052,1,1,89,90],[1056,2,2,90,92]]],[45,13,9,92,101,[[1062,1,1,92,93],[1064,1,1,93,94],[1070,2,2,94,96],[1073,4,2,96,98],[1074,1,1,98,99],[1076,4,2,99,101]]],[46,1,1,101,102,[[1089,1,1,101,102]]],[49,1,1,102,103,[[1106,1,1,102,103]]],[50,1,1,103,104,[[1108,1,1,103,104]]],[53,1,1,104,105,[[1119,1,1,104,105]]],[59,1,1,105,106,[[1151,1,1,105,106]]],[60,1,1,106,107,[[1156,1,1,106,107]]],[65,9,9,107,116,[[1167,2,2,107,109],[1168,1,1,109,110],[1169,1,1,110,111],[1184,1,1,111,112],[1185,1,1,112,113],[1188,3,3,113,116]]]],[23203,23353,23488,23747,23807,23904,23962,24153,24172,24215,24222,24723,24816,24911,24912,25041,25115,25201,25203,25607,25609,25699,25834,25891,25897,25922,25934,26064,26065,26071,26148,26182,26292,26298,26305,26308,26356,26357,26361,26362,26364,26393,26397,26399,26404,26405,26409,26439,26445,26449,26488,26490,26492,26495,26517,26548,26606,26643,26649,26663,26671,26674,26700,26704,26758,26770,26773,26775,26783,26790,26791,26793,26802,26810,26822,26846,27221,27280,27285,27387,27567,27703,27707,27712,27740,27838,27852,27878,27944,28105,28210,28222,28375,28414,28541,28542,28649,28650,28667,28727,28728,29032,29453,29499,29711,30390,30492,30714,30715,30740,30763,31000,31027,31089,31093,31096]]],["be",[5,5,[[43,3,3,0,3,[[1028,1,1,0,1],[1041,1,1,1,2],[1044,1,1,2,3]]],[45,1,1,3,4,[[1070,1,1,3,4]]],[46,1,1,4,5,[[1089,1,1,4,5]]]],[27335,27784,27865,28542,29033]]],["been",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26677]]],["come",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27794]]],["is",[6,6,[[39,3,3,0,3,[[942,1,1,0,1],[954,2,2,1,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[41,1,1,4,5,[[996,1,1,4,5]]],[42,1,1,5,6,[[1002,1,1,5,6]]]],[23624,24076,24079,24457,26030,26277]]],["was",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25753]]]]},{"k":"G1511","v":[["*",[125,123,[[39,6,6,0,6,[[944,2,2,0,2],[945,1,1,2,3],[947,1,1,3,4],[948,1,1,4,5],[950,1,1,5,6]]],[40,7,7,6,13,[[962,1,1,6,7],[964,2,2,7,9],[965,2,2,9,11],[968,1,1,11,12],[970,1,1,12,13]]],[41,22,21,13,34,[[974,4,4,13,17],[976,1,1,17,18],[977,1,1,18,19],[980,1,1,19,20],[981,4,3,20,23],[983,2,2,23,25],[986,3,3,25,28],[991,1,1,28,29],[992,3,3,29,32],[994,1,1,32,33],[995,1,1,33,34]]],[42,3,3,34,37,[[997,1,1,34,35],[1003,1,1,35,36],[1013,1,1,36,37]]],[43,20,20,37,57,[[1019,1,1,37,38],[1021,1,1,38,39],[1022,1,1,39,40],[1025,2,2,40,42],[1030,2,2,42,44],[1033,2,2,44,46],[1034,4,4,46,50],[1035,3,3,50,53],[1036,1,1,53,54],[1040,1,1,54,55],[1044,1,1,55,56],[1045,1,1,56,57]]],[44,15,15,57,72,[[1046,2,2,57,59],[1047,1,1,59,60],[1048,2,2,60,62],[1049,3,3,62,65],[1051,1,1,65,66],[1052,1,1,66,67],[1053,1,1,67,68],[1054,1,1,68,69],[1059,1,1,69,70],[1060,1,1,70,71],[1061,1,1,71,72]]],[45,10,10,72,82,[[1064,1,1,72,73],[1068,4,4,73,77],[1071,1,1,77,78],[1072,2,2,78,80],[1073,1,1,80,81],[1075,1,1,81,82]]],[46,5,5,82,87,[[1082,1,1,82,83],[1084,1,1,83,84],[1086,1,1,84,85],[1087,1,1,85,86],[1088,1,1,86,87]]],[47,4,4,87,91,[[1092,2,2,87,89],[1094,1,1,89,90],[1096,1,1,90,91]]],[48,3,3,91,94,[[1097,2,2,91,93],[1099,1,1,93,94]]],[49,5,4,94,98,[[1103,1,1,94,95],[1104,1,1,95,96],[1105,2,1,96,97],[1106,1,1,97,98]]],[51,1,1,98,99,[[1112,1,1,98,99]]],[53,5,5,99,104,[[1119,1,1,99,100],[1120,1,1,100,101],[1121,1,1,101,102],[1124,2,2,102,104]]],[54,1,1,104,105,[[1126,1,1,104,105]]],[55,6,6,105,111,[[1129,1,1,105,106],[1130,3,3,106,109],[1131,2,2,109,111]]],[57,3,3,111,114,[[1137,1,1,111,112],[1143,1,1,112,113],[1144,1,1,113,114]]],[58,3,3,114,117,[[1146,2,2,114,116],[1149,1,1,116,117]]],[59,2,2,117,119,[[1151,1,1,117,118],[1155,1,1,118,119]]],[61,1,1,119,120,[[1160,1,1,119,120]]],[65,3,3,120,123,[[1168,2,2,120,122],[1169,1,1,122,123]]]],[23685,23687,23704,23783,23819,23895,24456,24527,24529,24543,24573,24691,24818,24977,24979,25017,25022,25104,25119,25283,25319,25321,25334,25406,25413,25579,25580,25586,25742,25785,25806,25820,25888,25937,26090,26332,26764,26961,27054,27095,27185,27213,27387,27409,27496,27498,27530,27541,27543,27552,27560,27572,27585,27586,27742,27859,27905,27950,27952,27981,28000,28017,28033,28035,28038,28079,28094,28145,28158,28294,28319,28355,28428,28494,28512,28513,28519,28573,28616,28619,28657,28715,28886,28927,28961,28978,29005,29087,29090,29152,29191,29210,29218,29257,29384,29397,29429,29453,29576,29703,29728,29733,29793,29806,29851,29899,29910,29912,29917,29924,29925,30042,30176,30223,30284,30292,30341,30395,30477,30559,30719,30726,30755]]],["+",[6,6,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,2,2,1,3,[[1019,1,1,1,2],[1034,1,1,2,3]]],[44,1,1,3,4,[[1061,1,1,3,4]]],[45,1,1,4,5,[[1071,1,1,4,5]]],[53,1,1,5,6,[[1124,1,1,5,6]]]],[25321,26961,27543,28355,28573,29806]]],["a",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29005]]],["am",[6,6,[[39,2,2,0,2,[[944,2,2,0,2]]],[40,2,2,2,4,[[964,2,2,2,4]]],[41,1,1,4,5,[[981,1,1,4,5]]],[43,1,1,5,6,[[1030,1,1,5,6]]]],[23685,23687,24527,24529,25319,27387]]],["and",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29917]]],["are",[5,5,[[44,2,2,0,2,[[1046,1,1,0,1],[1048,1,1,1,2]]],[65,3,3,2,5,[[1168,2,2,2,4],[1169,1,1,4,5]]]],[27950,28000,30719,30726,30755]]],["art",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27981]]],["be",[61,61,[[39,3,3,0,3,[[945,1,1,0,1],[947,1,1,1,2],[948,1,1,2,3]]],[40,3,3,3,6,[[965,2,2,3,5],[970,1,1,5,6]]],[41,6,6,6,12,[[974,1,1,6,7],[980,1,1,7,8],[981,1,1,8,9],[986,3,3,9,12]]],[42,1,1,12,13,[[1003,1,1,12,13]]],[43,5,5,13,18,[[1022,1,1,13,14],[1030,1,1,14,15],[1033,1,1,15,16],[1034,1,1,16,17],[1035,1,1,17,18]]],[44,9,9,18,27,[[1046,1,1,18,19],[1048,1,1,19,20],[1049,3,3,20,23],[1051,1,1,23,24],[1053,1,1,24,25],[1059,1,1,25,26],[1060,1,1,26,27]]],[45,7,7,27,34,[[1064,1,1,27,28],[1068,2,2,28,30],[1072,2,2,30,32],[1073,1,1,32,33],[1075,1,1,33,34]]],[46,3,3,34,37,[[1082,1,1,34,35],[1084,1,1,35,36],[1086,1,1,36,37]]],[47,4,4,37,41,[[1092,2,2,37,39],[1094,1,1,39,40],[1096,1,1,40,41]]],[48,3,3,41,44,[[1097,2,2,41,43],[1099,1,1,43,44]]],[49,3,3,44,47,[[1103,1,1,44,45],[1104,1,1,45,46],[1106,1,1,46,47]]],[53,3,3,47,50,[[1119,1,1,47,48],[1120,1,1,48,49],[1121,1,1,49,50]]],[54,1,1,50,51,[[1126,1,1,50,51]]],[55,4,4,51,55,[[1129,1,1,51,52],[1130,1,1,52,53],[1131,2,2,53,55]]],[57,2,2,55,57,[[1137,1,1,55,56],[1144,1,1,56,57]]],[58,3,3,57,60,[[1146,2,2,57,59],[1149,1,1,59,60]]],[59,1,1,60,61,[[1151,1,1,60,61]]]],[23704,23783,23819,24543,24573,24818,25022,25283,25334,25579,25580,25586,26332,27095,27409,27498,27541,27572,27952,28017,28033,28035,28038,28079,28145,28294,28319,28428,28512,28513,28616,28619,28657,28715,28886,28927,28961,29087,29090,29152,29191,29210,29218,29257,29384,29397,29453,29703,29728,29733,29851,29899,29910,29924,29925,30042,30223,30284,30292,30341,30395]]],["been",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]]],[24456,25017,29576]]],["but",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29429]]],["come",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26090]]],["have",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28519]]],["is",[15,15,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,4,4,2,6,[[983,1,1,2,3],[992,2,2,3,5],[995,1,1,5,6]]],[43,4,4,6,10,[[1025,1,1,6,7],[1034,2,2,7,9],[1040,1,1,9,10]]],[44,1,1,10,11,[[1052,1,1,10,11]]],[46,1,1,11,12,[[1087,1,1,11,12]]],[53,1,1,12,13,[[1124,1,1,12,13]]],[59,1,1,13,14,[[1155,1,1,13,14]]],[61,1,1,14,15,[[1160,1,1,14,15]]]],[23895,24691,25413,25806,25820,25937,27213,27530,27552,27742,28094,28978,29793,30477,30559]]],["made",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27496]]],["the",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25888]]],["them",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29429]]],["to",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29912]]],["was",[15,15,[[41,7,7,0,7,[[974,1,1,0,1],[976,1,1,1,2],[977,1,1,2,3],[981,1,1,3,4],[983,1,1,4,5],[991,1,1,5,6],[992,1,1,6,7]]],[42,1,1,7,8,[[1013,1,1,7,8]]],[43,6,6,8,14,[[1021,1,1,8,9],[1025,1,1,9,10],[1035,2,2,10,12],[1036,1,1,12,13],[1045,1,1,13,14]]],[57,1,1,14,15,[[1143,1,1,14,15]]]],[24977,25104,25119,25319,25406,25742,25785,26764,27054,27185,27560,27585,27586,27905,30176]]],["were",[4,4,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]],[45,1,1,3,4,[[1068,1,1,3,4]]]],[24979,27859,28158,28494]]]]},{"k":"G1512","v":[["*",[6,6,[[44,2,2,0,2,[[1053,2,2,0,2]]],[45,2,2,2,4,[[1069,1,1,2,3],[1076,1,1,3,4]]],[52,1,1,4,5,[[1116,1,1,4,5]]],[59,1,1,5,6,[[1152,1,1,5,6]]]],[28125,28133,28532,28733,29655,30402]]],["+",[2,2,[[45,2,2,0,2,[[1069,1,1,0,1],[1076,1,1,1,2]]]],[28532,28733]]],["Seeing",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29655]]],["be",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30402]]],["that",[2,2,[[44,2,2,0,2,[[1053,2,2,0,2]]]],[28125,28133]]]]},{"k":"G1513","v":[["means",[2,2,[[43,1,1,0,1,[[1044,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[27867,27940]]]]},{"k":"G1514","v":[["*",[4,4,[[40,1,1,0,1,[[965,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]],[46,1,1,2,3,[[1090,1,1,2,3]]],[51,1,1,3,4,[[1115,1,1,3,4]]]],[24588,28263,29054,29634]]],["peace",[3,3,[[40,1,1,0,1,[[965,1,1,0,1]]],[46,1,1,1,2,[[1090,1,1,1,2]]],[51,1,1,2,3,[[1115,1,1,2,3]]]],[24588,29054,29634]]],["peaceably",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28263]]]]},{"k":"G1515","v":[["*",[92,86,[[39,4,2,0,2,[[938,4,2,0,2]]],[40,1,1,2,3,[[961,1,1,2,3]]],[41,14,13,3,16,[[973,1,1,3,4],[974,2,2,4,6],[979,1,1,6,7],[980,1,1,7,8],[982,3,2,8,10],[983,1,1,10,11],[984,1,1,11,12],[986,1,1,12,13],[991,2,2,13,15],[996,1,1,15,16]]],[42,6,5,16,21,[[1010,2,1,16,17],[1012,1,1,17,18],[1016,3,3,18,21]]],[43,7,7,21,28,[[1024,1,1,21,22],[1026,1,1,22,23],[1027,1,1,23,24],[1029,1,1,24,25],[1032,1,1,25,26],[1033,1,1,26,27],[1041,1,1,27,28]]],[44,11,11,28,39,[[1046,1,1,28,29],[1047,1,1,29,30],[1048,1,1,30,31],[1050,1,1,31,32],[1053,1,1,32,33],[1055,1,1,33,34],[1059,2,2,34,36],[1060,2,2,36,38],[1061,1,1,38,39]]],[45,4,4,39,43,[[1062,1,1,39,40],[1068,1,1,40,41],[1075,1,1,41,42],[1077,1,1,42,43]]],[46,2,2,43,45,[[1078,1,1,43,44],[1090,1,1,44,45]]],[47,3,3,45,48,[[1091,1,1,45,46],[1095,1,1,46,47],[1096,1,1,47,48]]],[48,7,7,48,55,[[1097,1,1,48,49],[1098,3,3,49,52],[1100,1,1,52,53],[1102,2,2,53,55]]],[49,3,3,55,58,[[1103,1,1,55,56],[1106,2,2,56,58]]],[50,2,2,58,60,[[1107,1,1,58,59],[1109,1,1,59,60]]],[51,3,3,60,63,[[1111,1,1,60,61],[1115,2,2,61,63]]],[52,3,2,63,65,[[1116,1,1,63,64],[1118,2,1,64,65]]],[53,1,1,65,66,[[1119,1,1,65,66]]],[54,2,2,66,68,[[1125,1,1,66,67],[1126,1,1,67,68]]],[55,1,1,68,69,[[1129,1,1,68,69]]],[56,1,1,69,70,[[1132,1,1,69,70]]],[57,4,4,70,74,[[1139,1,1,70,71],[1143,1,1,71,72],[1144,1,1,72,73],[1145,1,1,73,74]]],[58,3,2,74,76,[[1147,1,1,74,75],[1148,2,1,75,76]]],[59,3,3,76,79,[[1151,1,1,76,77],[1153,1,1,77,78],[1155,1,1,78,79]]],[60,2,2,79,81,[[1156,1,1,79,80],[1158,1,1,80,81]]],[62,1,1,81,82,[[1164,1,1,81,82]]],[63,1,1,82,83,[[1165,1,1,82,83]]],[64,1,1,83,84,[[1166,1,1,83,84]]],[65,2,2,84,86,[[1167,1,1,84,85],[1172,1,1,85,86]]]],[23430,23451,24398,24972,24987,25002,25245,25293,25368,25369,25426,25510,25585,25769,25773,26027,26695,26759,26886,26888,26893,27142,27247,27295,27357,27475,27519,27771,27937,27972,28008,28048,28122,28203,28297,28299,28316,28336,28356,28366,28502,28711,28787,28802,29054,29060,29184,29204,29208,29243,29244,29246,29275,29352,29360,29363,29449,29451,29467,29532,29561,29624,29644,29651,29694,29698,29811,29849,29896,29941,30066,30203,30226,30261,30309,30337,30376,30435,30479,30481,30536,30648,30672,30674,30701,30797]]],["+",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27142]]],["Peace",[10,10,[[41,2,2,0,2,[[982,1,1,0,1],[996,1,1,1,2]]],[42,4,4,2,6,[[1010,1,1,2,3],[1016,3,3,3,6]]],[48,1,1,6,7,[[1102,1,1,6,7]]],[51,1,1,7,8,[[1115,1,1,7,8]]],[59,1,1,8,9,[[1155,1,1,8,9]]],[63,1,1,9,10,[[1165,1,1,9,10]]]],[25368,26027,26695,26886,26888,26893,29360,29624,30479,30672]]],["peace",[79,74,[[39,4,2,0,2,[[938,4,2,0,2]]],[40,1,1,2,3,[[961,1,1,2,3]]],[41,12,11,3,14,[[973,1,1,3,4],[974,2,2,4,6],[979,1,1,6,7],[980,1,1,7,8],[982,2,1,8,9],[983,1,1,9,10],[984,1,1,10,11],[986,1,1,11,12],[991,2,2,12,14]]],[42,2,2,14,16,[[1010,1,1,14,15],[1012,1,1,15,16]]],[43,4,4,16,20,[[1027,1,1,16,17],[1029,1,1,17,18],[1032,1,1,18,19],[1033,1,1,19,20]]],[44,11,11,20,31,[[1046,1,1,20,21],[1047,1,1,21,22],[1048,1,1,22,23],[1050,1,1,23,24],[1053,1,1,24,25],[1055,1,1,25,26],[1059,2,2,26,28],[1060,2,2,28,30],[1061,1,1,30,31]]],[45,4,4,31,35,[[1062,1,1,31,32],[1068,1,1,32,33],[1075,1,1,33,34],[1077,1,1,34,35]]],[46,2,2,35,37,[[1078,1,1,35,36],[1090,1,1,36,37]]],[47,3,3,37,40,[[1091,1,1,37,38],[1095,1,1,38,39],[1096,1,1,39,40]]],[48,6,6,40,46,[[1097,1,1,40,41],[1098,3,3,41,44],[1100,1,1,44,45],[1102,1,1,45,46]]],[49,3,3,46,49,[[1103,1,1,46,47],[1106,2,2,47,49]]],[50,2,2,49,51,[[1107,1,1,49,50],[1109,1,1,50,51]]],[51,2,2,51,53,[[1111,1,1,51,52],[1115,1,1,52,53]]],[52,3,2,53,55,[[1116,1,1,53,54],[1118,2,1,54,55]]],[53,1,1,55,56,[[1119,1,1,55,56]]],[54,2,2,56,58,[[1125,1,1,56,57],[1126,1,1,57,58]]],[55,1,1,58,59,[[1129,1,1,58,59]]],[56,1,1,59,60,[[1132,1,1,59,60]]],[57,4,4,60,64,[[1139,1,1,60,61],[1143,1,1,61,62],[1144,1,1,62,63],[1145,1,1,63,64]]],[58,3,2,64,66,[[1147,1,1,64,65],[1148,2,1,65,66]]],[59,2,2,66,68,[[1151,1,1,66,67],[1153,1,1,67,68]]],[60,2,2,68,70,[[1156,1,1,68,69],[1158,1,1,69,70]]],[62,1,1,70,71,[[1164,1,1,70,71]]],[64,1,1,71,72,[[1166,1,1,71,72]]],[65,2,2,72,74,[[1167,1,1,72,73],[1172,1,1,73,74]]]],[23430,23451,24398,24972,24987,25002,25245,25293,25369,25426,25510,25585,25769,25773,26695,26759,27295,27357,27475,27519,27937,27972,28008,28048,28122,28203,28297,28299,28316,28336,28356,28366,28502,28711,28787,28802,29054,29060,29184,29204,29208,29243,29244,29246,29275,29352,29363,29449,29451,29467,29532,29561,29644,29651,29694,29698,29811,29849,29896,29941,30066,30203,30226,30261,30309,30337,30376,30435,30481,30536,30648,30674,30701,30797]]],["quietness",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27771]]],["rest",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27247]]]]},{"k":"G1516","v":[["peaceable",[2,2,[[57,1,1,0,1,[[1144,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[30223,30336]]]]},{"k":"G1517","v":[["peace",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29485]]]]},{"k":"G1518","v":[["peacemakers",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23243]]]]},{"k":"G1519","v":[["*",[1693,1452,[[39,216,194,0,194,[[930,10,10,0,10],[931,3,3,10,13],[932,7,7,13,20],[933,8,8,20,28],[934,7,5,28,33],[935,4,4,33,37],[936,13,11,37,48],[937,11,9,48,57],[938,15,13,57,70],[939,1,1,70,71],[940,9,8,71,79],[941,12,11,79,90],[942,10,9,90,99],[943,10,7,99,106],[944,3,3,106,109],[945,7,6,109,115],[946,11,9,115,124],[947,5,5,124,129],[948,6,6,129,135],[949,12,11,135,146],[950,8,7,146,153],[951,1,1,153,154],[952,4,4,154,158],[953,9,8,158,166],[954,14,14,166,180],[955,9,8,180,188],[956,7,6,188,194]]],[40,163,129,194,323,[[957,14,12,194,206],[958,7,5,206,211],[959,7,6,211,217],[960,7,7,217,224],[961,14,10,224,234],[962,14,12,234,246],[963,11,8,246,254],[964,12,9,254,263],[965,17,10,263,273],[966,9,9,273,282],[967,14,8,282,290],[968,4,4,290,294],[969,11,8,294,302],[970,15,14,302,316],[971,2,2,316,318],[972,5,5,318,323]]],[41,225,202,323,525,[[973,13,12,323,335],[974,16,13,335,348],[975,5,4,348,352],[976,13,12,352,364],[977,10,9,364,373],[978,7,7,373,380],[979,9,8,380,388],[980,20,17,388,405],[981,18,16,405,421],[982,12,10,421,431],[983,6,6,431,437],[984,8,7,437,444],[985,5,5,444,449],[986,10,8,449,457],[987,7,6,457,463],[988,7,7,463,470],[989,8,8,470,478],[990,10,9,478,487],[991,5,5,487,492],[992,1,1,492,493],[993,9,8,493,501],[994,12,10,501,511],[995,3,3,511,514],[996,11,11,514,525]]],[42,190,166,525,691,[[997,6,6,525,531],[998,5,5,531,536],[999,12,11,536,547],[1000,15,13,547,560],[1001,7,5,560,565],[1002,20,16,565,581],[1003,12,11,581,592],[1004,10,9,592,601],[1005,6,5,601,606],[1006,5,5,606,611],[1007,16,14,611,625],[1008,18,14,625,639],[1009,8,8,639,647],[1010,4,3,647,650],[1011,1,1,650,651],[1012,6,6,651,657],[1013,5,4,657,661],[1014,10,7,661,668],[1015,5,5,668,673],[1016,13,12,673,685],[1017,6,6,685,691]]],[43,291,250,691,941,[[1018,7,5,691,696],[1019,9,8,696,704],[1020,6,5,704,709],[1021,6,5,709,714],[1022,4,3,714,717],[1023,3,3,717,720],[1024,13,12,720,732],[1025,11,10,732,742],[1026,11,9,742,751],[1027,8,8,751,759],[1028,13,13,759,772],[1029,4,4,772,776],[1030,17,13,776,789],[1031,12,10,789,799],[1032,6,6,799,805],[1033,16,14,805,819],[1034,6,5,819,824],[1035,11,9,824,833],[1036,15,11,833,844],[1037,17,14,844,858],[1038,23,18,858,876],[1039,12,11,876,887],[1040,9,9,887,896],[1041,3,3,896,899],[1042,14,11,899,910],[1043,9,8,910,918],[1044,16,14,918,932],[1045,10,9,932,941]]],[44,102,80,941,1021,[[1046,10,9,941,950],[1047,2,2,950,952],[1048,3,3,952,955],[1049,5,5,955,960],[1050,12,7,960,967],[1051,10,6,967,973],[1052,2,1,973,974],[1053,5,5,974,979],[1054,8,7,979,986],[1055,10,8,986,994],[1056,8,4,994,998],[1057,2,2,998,1000],[1058,4,3,1000,1003],[1059,3,3,1003,1006],[1060,10,10,1006,1016],[1061,8,5,1016,1021]]],[45,32,29,1021,1050,[[1062,3,3,1021,1024],[1063,1,1,1024,1025],[1065,2,2,1025,1027],[1066,1,1,1027,1028],[1067,1,1,1028,1029],[1069,4,3,1029,1032],[1071,3,3,1032,1035],[1072,5,4,1035,1039],[1073,2,1,1039,1040],[1075,4,4,1040,1044],[1076,3,3,1044,1047],[1077,3,3,1047,1050]]],[46,73,59,1050,1109,[[1078,7,6,1050,1056],[1079,9,6,1056,1062],[1080,3,3,1062,1065],[1081,3,3,1065,1068],[1082,1,1,1068,1069],[1083,3,2,1069,1071],[1084,4,4,1071,1075],[1085,9,7,1075,1082],[1086,10,7,1082,1089],[1087,10,7,1089,1096],[1088,7,7,1096,1103],[1089,3,3,1103,1106],[1090,4,3,1106,1109]]],[47,30,24,1109,1133,[[1091,7,5,1109,1114],[1092,8,6,1114,1120],[1093,6,6,1120,1126],[1094,3,3,1126,1129],[1095,2,2,1129,1131],[1096,4,2,1131,1133]]],[48,33,28,1133,1161,[[1097,10,8,1133,1141],[1098,3,3,1141,1144],[1099,4,4,1144,1148],[1100,12,9,1148,1157],[1101,2,2,1157,1159],[1102,2,2,1159,1161]]],[49,20,17,1161,1178,[[1103,8,8,1161,1169],[1104,6,3,1169,1172],[1105,2,2,1172,1174],[1106,4,4,1174,1178]]],[50,20,18,1178,1196,[[1107,11,10,1178,1188],[1108,4,3,1188,1191],[1109,3,3,1191,1194],[1110,2,2,1194,1196]]],[51,20,15,1196,1211,[[1111,1,1,1196,1197],[1112,3,3,1197,1200],[1113,5,3,1200,1203],[1114,6,5,1203,1208],[1115,5,3,1208,1211]]],[52,8,6,1211,1217,[[1116,2,2,1211,1213],[1117,4,3,1213,1216],[1118,2,1,1216,1217]]],[53,19,18,1217,1235,[[1119,6,6,1217,1223],[1120,2,2,1223,1225],[1121,2,2,1225,1227],[1122,2,2,1227,1229],[1123,1,1,1229,1230],[1124,6,5,1230,1235]]],[54,19,14,1235,1249,[[1125,2,2,1235,1237],[1126,7,5,1237,1242],[1127,3,3,1242,1245],[1128,7,4,1245,1249]]],[55,2,2,1249,1251,[[1131,2,2,1249,1251]]],[56,2,2,1251,1253,[[1132,2,2,1251,1253]]],[57,65,58,1253,1311,[[1133,5,4,1253,1257],[1134,2,2,1257,1259],[1135,3,3,1259,1262],[1136,8,7,1262,1269],[1137,1,1,1269,1270],[1138,6,6,1270,1276],[1139,7,7,1276,1283],[1140,3,1,1283,1284],[1141,10,9,1284,1293],[1142,9,8,1293,1301],[1143,6,5,1301,1306],[1144,2,2,1306,1308],[1145,3,3,1308,1311]]],[58,12,11,1311,1322,[[1146,2,2,1311,1313],[1147,3,3,1313,1316],[1148,1,1,1316,1317],[1149,3,2,1317,1319],[1150,3,3,1319,1322]]],[59,37,33,1322,1355,[[1151,16,13,1322,1335],[1152,6,5,1335,1340],[1153,5,5,1340,1345],[1154,7,7,1345,1352],[1155,3,3,1352,1355]]],[60,12,11,1355,1366,[[1156,3,3,1355,1358],[1157,5,5,1358,1363],[1158,4,3,1363,1366]]],[61,9,8,1366,1374,[[1160,1,1,1366,1367],[1161,2,2,1367,1369],[1162,2,2,1369,1371],[1163,4,3,1371,1374]]],[62,3,3,1374,1377,[[1164,3,3,1374,1377]]],[63,2,1,1377,1378,[[1165,2,1,1377,1378]]],[64,6,5,1378,1383,[[1166,6,5,1378,1383]]],[65,82,69,1383,1452,[[1167,10,3,1383,1386],[1168,3,2,1386,1388],[1170,2,2,1388,1390],[1171,3,3,1390,1393],[1172,3,2,1393,1395],[1173,1,1,1395,1396],[1174,4,4,1396,1400],[1175,5,5,1400,1405],[1176,2,2,1405,1407],[1177,4,4,1407,1411],[1178,6,5,1411,1416],[1179,4,4,1416,1420],[1180,3,2,1420,1422],[1181,2,2,1422,1424],[1182,9,8,1424,1432],[1183,4,4,1432,1436],[1184,1,1,1436,1437],[1185,4,4,1437,1441],[1186,6,5,1441,1446],[1187,3,3,1446,1449],[1188,3,3,1449,1452]]]],[23170,23177,23180,23181,23182,23183,23189,23190,23191,23192,23202,23203,23204,23210,23214,23217,23221,23222,23227,23233,23235,23247,23254,23256,23259,23263,23264,23269,23288,23295,23308,23312,23316,23329,23330,23335,23337,23349,23350,23357,23359,23363,23368,23373,23376,23377,23378,23379,23380,23385,23386,23392,23396,23402,23405,23407,23417,23422,23426,23427,23428,23429,23434,23435,23438,23439,23440,23444,23458,23459,23466,23493,23498,23500,23507,23509,23518,23530,23533,23541,23561,23569,23572,23575,23581,23586,23587,23589,23591,23593,23610,23612,23616,23619,23620,23628,23629,23631,23632,23644,23647,23650,23654,23657,23662,23672,23677,23685,23693,23701,23715,23722,23724,23725,23727,23730,23733,23735,23736,23742,23747,23748,23756,23757,23763,23767,23779,23785,23786,23793,23794,23796,23799,23809,23810,23827,23828,23836,23838,23843,23844,23845,23847,23849,23857,23868,23875,23876,23877,23881,23882,23885,23888,23952,23966,23970,23971,23995,24009,24014,24018,24029,24031,24038,24049,24054,24057,24062,24064,24067,24072,24082,24084,24086,24090,24095,24099,24106,24121,24125,24135,24136,24139,24156,24159,24162,24180,24182,24196,24202,24205,24206,24211,24214,24219,24224,24227,24229,24236,24243,24244,24250,24253,24254,24259,24260,24261,24271,24277,24282,24286,24289,24291,24301,24307,24315,24317,24324,24330,24331,24341,24345,24358,24360,24365,24376,24377,24378,24382,24383,24385,24390,24398,24402,24408,24415,24417,24418,24438,24439,24443,24448,24452,24453,24458,24463,24478,24480,24481,24482,24487,24493,24496,24497,24503,24510,24513,24519,24520,24522,24523,24526,24527,24540,24560,24563,24566,24569,24571,24580,24581,24583,24585,24589,24603,24605,24611,24612,24613,24620,24621,24634,24641,24642,24648,24651,24654,24655,24663,24667,24683,24687,24714,24716,24720,24726,24727,24729,24730,24731,24732,24733,24760,24762,24763,24767,24770,24774,24780,24782,24786,24792,24795,24808,24814,24822,24864,24867,24878,24880,24885,24888,24892,24902,24913,24916,24919,24926,24932,24933,24937,24943,24948,24949,24972,24976,24977,24988,24995,25000,25001,25005,25007,25012,25014,25015,25018,25024,25028,25030,25034,25042,25064,25068,25072,25077,25079,25089,25094,25098,25100,25101,25105,25106,25110,25111,25121,25126,25131,25132,25139,25144,25145,25150,25152,25154,25158,25166,25184,25185,25196,25205,25206,25219,25225,25231,25239,25245,25259,25262,25267,25268,25271,25274,25275,25276,25277,25278,25279,25282,25284,25286,25288,25293,25296,25304,25305,25306,25311,25313,25314,25317,25329,25335,25345,25352,25353,25354,25357,25362,25363,25364,25365,25368,25370,25371,25373,25393,25397,25399,25401,25409,25412,25429,25437,25438,25454,25464,25469,25478,25480,25487,25508,25517,25527,25529,25537,25539,25540,25554,25558,25561,25563,25574,25576,25584,25588,25601,25603,25605,25606,25609,25610,25624,25628,25629,25636,25642,25647,25648,25653,25654,25655,25662,25663,25675,25678,25682,25693,25698,25701,25702,25705,25712,25713,25719,25723,25743,25759,25760,25761,25776,25796,25827,25830,25838,25839,25840,25847,25850,25863,25867,25874,25883,25897,25903,25904,25910,25918,25929,25930,25954,25960,25981,25996,25998,26004,26011,26017,26019,26024,26038,26041,26042,26043,26051,26053,26055,26056,26062,26087,26097,26106,26107,26108,26118,26124,26125,26133,26135,26136,26137,26138,26139,26142,26144,26156,26159,26161,26164,26170,26184,26192,26194,26195,26199,26201,26202,26203,26210,26211,26217,26234,26239,26255,26260,26266,26271,26272,26274,26278,26279,26281,26284,26286,26292,26297,26304,26308,26315,26323,26331,26333,26336,26338,26342,26359,26363,26366,26367,26376,26381,26382,26383,26387,26389,26407,26411,26416,26432,26433,26447,26451,26475,26476,26479,26482,26509,26517,26521,26523,26530,26548,26549,26550,26553,26554,26555,26561,26568,26571,26575,26577,26578,26579,26581,26587,26591,26592,26593,26604,26605,26607,26614,26616,26617,26622,26624,26626,26631,26632,26633,26635,26638,26652,26657,26659,26669,26680,26684,26705,26735,26739,26746,26747,26754,26758,26760,26777,26779,26782,26786,26791,26796,26800,26813,26818,26822,26834,26838,26842,26852,26862,26868,26870,26871,26873,26874,26875,26878,26881,26886,26892,26893,26894,26901,26902,26904,26905,26907,26921,26933,26934,26935,26936,26948,26969,26971,26974,26976,26980,26983,26987,26988,26997,26998,26999,27000,27004,27025,27028,27033,27039,27052,27075,27080,27095,27112,27113,27116,27119,27120,27121,27125,27131,27132,27137,27142,27150,27155,27169,27171,27179,27181,27192,27196,27199,27201,27202,27203,27214,27216,27217,27218,27222,27224,27233,27237,27242,27246,27255,27263,27264,27267,27275,27281,27283,27291,27302,27309,27313,27315,27317,27319,27320,27325,27327,27329,27332,27333,27334,27336,27341,27347,27354,27356,27364,27366,27371,27375,27376,27384,27391,27393,27396,27408,27409,27410,27413,27415,27420,27428,27434,27435,27436,27437,27438,27439,27440,27444,27446,27464,27472,27480,27481,27484,27491,27492,27493,27494,27495,27498,27499,27502,27506,27507,27517,27520,27523,27524,27528,27533,27543,27544,27558,27563,27564,27575,27576,27578,27579,27581,27584,27586,27588,27589,27590,27593,27606,27607,27612,27614,27615,27616,27627,27628,27629,27632,27639,27640,27641,27642,27643,27644,27647,27648,27655,27664,27665,27666,27667,27668,27670,27671,27672,27675,27676,27677,27679,27681,27690,27692,27693,27698,27701,27702,27708,27709,27711,27714,27715,27717,27721,27725,27727,27728,27734,27744,27745,27750,27754,27762,27764,27765,27766,27767,27784,27786,27793,27797,27799,27802,27804,27805,27809,27811,27812,27816,27817,27819,27830,27834,27835,27837,27839,27840,27841,27843,27856,27858,27860,27861,27863,27867,27872,27881,27884,27885,27893,27894,27895,27896,27904,27905,27911,27912,27913,27914,27915,27916,27922,27931,27935,27946,27947,27954,27955,27956,27957,27958,27966,27988,27998,28013,28016,28025,28027,28031,28042,28044,28049,28055,28059,28062,28063,28065,28068,28071,28072,28084,28085,28087,28090,28101,28123,28131,28134,28137,28144,28160,28163,28172,28176,28177,28178,28186,28189,28192,28194,28195,28198,28200,28202,28206,28218,28233,28241,28245,28255,28261,28270,28272,28280,28281,28289,28299,28305,28307,28310,28319,28321,28327,28328,28329,28331,28334,28341,28342,28355,28362,28363,28372,28376,28378,28401,28436,28439,28459,28485,28533,28539,28540,28569,28578,28598,28617,28624,28625,28634,28647,28686,28687,28700,28714,28728,28763,28772,28777,28779,28791,28805,28810,28811,28816,28821,28823,28828,28832,28833,28836,28837,28840,28848,28854,28859,28870,28874,28876,28882,28899,28916,28921,28925,28926,28931,28934,28936,28938,28946,28954,28955,28956,28957,28961,28964,28965,28966,28967,28969,28972,28976,28979,28984,28985,28986,28987,28992,28995,28999,29002,29003,29009,29020,29023,29026,29028,29046,29047,29053,29062,29063,29074,29075,29078,29082,29083,29089,29090,29092,29097,29108,29116,29119,29125,29126,29129,29137,29142,29155,29172,29175,29192,29196,29211,29212,29214,29216,29218,29220,29221,29225,29244,29250,29251,29253,29267,29270,29272,29280,29281,29284,29285,29287,29288,29291,29302,29304,29306,29336,29355,29359,29366,29371,29372,29373,29378,29380,29386,29390,29402,29407,29413,29432,29437,29457,29458,29459,29462,29469,29471,29475,29476,29477,29478,29481,29485,29490,29494,29496,29499,29516,29526,29527,29532,29550,29553,29565,29579,29582,29586,29593,29595,29602,29611,29612,29613,29618,29620,29630,29636,29639,29652,29660,29665,29674,29675,29683,29699,29702,29708,29711,29712,29713,29720,29723,29737,29738,29750,29757,29787,29795,29797,29800,29805,29807,29820,29821,29841,29847,29848,29852,29853,29859,29860,29868,29880,29881,29882,29888,29935,29937,29943,29944,29968,29969,29971,29977,29980,29987,30000,30006,30013,30015,30017,30019,30020,30024,30025,30030,30036,30050,30052,30054,30060,30063,30064,30067,30078,30081,30085,30088,30089,30092,30102,30111,30112,30114,30117,30120,30129,30130,30131,30133,30134,30138,30145,30147,30152,30157,30164,30172,30179,30180,30181,30183,30198,30214,30215,30249,30252,30262,30285,30291,30295,30299,30316,30322,30346,30350,30357,30358,30366,30376,30377,30378,30379,30381,30382,30384,30385,30386,30395,30396,30397,30399,30406,30407,30408,30413,30420,30433,30436,30444,30445,30446,30450,30452,30453,30454,30455,30456,30457,30475,30476,30477,30487,30490,30496,30504,30509,30512,30517,30522,30529,30531,30540,30567,30587,30593,30604,30612,30632,30634,30637,30647,30652,30655,30663,30676,30678,30685,30693,30697,30703,30708,30715,30727,30739,30777,30778,30785,30792,30793,30806,30808,30822,30832,30834,30835,30838,30841,30843,30847,30849,30855,30866,30867,30878,30881,30884,30887,30895,30897,30900,30904,30905,30911,30914,30918,30921,30937,30945,30953,30954,30955,30956,30957,30958,30968,30970,30971,30973,30978,30983,30986,30992,31014,31020,31026,31034,31037,31041,31046,31048,31052,31053,31077,31079,31080,31082,31085,31094]]],["+",[174,171,[[39,12,12,0,12,[[934,2,2,0,2],[936,1,1,2,3],[942,1,1,3,4],[943,1,1,4,5],[947,1,1,5,6],[949,2,2,6,8],[952,1,1,8,9],[953,2,2,9,11],[955,1,1,11,12]]],[40,10,10,12,22,[[957,1,1,12,13],[959,2,2,13,15],[960,1,1,15,16],[961,2,2,16,18],[962,1,1,18,19],[966,1,1,19,20],[967,1,1,20,21],[969,1,1,21,22]]],[41,16,16,22,38,[[973,2,2,22,24],[975,1,1,24,25],[976,1,1,25,26],[980,1,1,26,27],[981,1,1,27,28],[982,2,2,28,30],[983,1,1,30,31],[985,2,2,31,33],[986,1,1,33,34],[989,1,1,34,35],[990,2,2,35,37],[993,1,1,37,38]]],[42,19,18,38,56,[[1000,1,1,38,39],[1002,6,6,39,45],[1004,4,3,45,48],[1006,1,1,48,49],[1007,1,1,49,50],[1008,1,1,50,51],[1009,2,2,51,53],[1010,1,1,53,54],[1014,1,1,54,55],[1016,1,1,55,56]]],[43,12,10,56,66,[[1019,1,1,56,57],[1024,2,2,57,59],[1025,1,1,59,60],[1028,1,1,60,61],[1030,2,2,61,63],[1036,2,1,63,64],[1038,2,1,64,65],[1044,1,1,65,66]]],[44,11,11,66,77,[[1046,2,2,66,68],[1048,1,1,68,69],[1051,1,1,69,70],[1054,1,1,70,71],[1055,1,1,71,72],[1056,1,1,72,73],[1057,2,2,73,75],[1059,1,1,75,76],[1061,1,1,76,77]]],[45,1,1,77,78,[[1069,1,1,77,78]]],[46,8,8,78,86,[[1081,1,1,78,79],[1083,1,1,79,80],[1085,1,1,80,81],[1086,1,1,81,82],[1087,2,2,82,84],[1088,2,2,84,86]]],[47,2,2,86,88,[[1091,1,1,86,87],[1094,1,1,87,88]]],[48,3,3,88,91,[[1098,1,1,88,89],[1100,1,1,89,90],[1102,1,1,90,91]]],[49,4,4,91,95,[[1104,1,1,91,92],[1105,1,1,92,93],[1106,2,2,93,95]]],[50,4,4,95,99,[[1107,2,2,95,97],[1108,1,1,97,98],[1109,1,1,98,99]]],[51,4,4,99,103,[[1113,2,2,99,101],[1114,1,1,101,102],[1115,1,1,102,103]]],[52,2,2,103,105,[[1116,1,1,103,104],[1117,1,1,104,105]]],[53,5,5,105,110,[[1119,1,1,105,106],[1120,1,1,106,107],[1122,2,2,107,109],[1124,1,1,109,110]]],[54,3,3,110,113,[[1125,1,1,110,111],[1126,1,1,111,112],[1128,1,1,112,113]]],[57,23,23,113,136,[[1133,2,2,113,115],[1136,2,2,115,117],[1137,1,1,117,118],[1138,2,2,118,120],[1139,5,5,120,125],[1141,2,2,125,127],[1142,6,6,127,133],[1143,1,1,133,134],[1145,2,2,134,136]]],[59,12,12,136,148,[[1151,2,2,136,138],[1152,3,3,138,141],[1153,2,2,141,143],[1154,3,3,143,146],[1155,2,2,146,148]]],[60,3,3,148,151,[[1157,2,2,148,150],[1158,1,1,150,151]]],[61,1,1,151,152,[[1160,1,1,151,152]]],[62,1,1,152,153,[[1164,1,1,152,153]]],[64,2,2,153,155,[[1166,2,2,153,155]]],[65,16,16,155,171,[[1167,2,2,155,157],[1170,2,2,157,159],[1171,2,2,159,161],[1173,1,1,161,162],[1174,1,1,162,163],[1176,1,1,163,164],[1177,1,1,164,165],[1180,1,1,165,166],[1181,1,1,166,167],[1182,1,1,167,168],[1185,1,1,168,169],[1186,1,1,169,170],[1188,1,1,170,171]]]],[23295,23308,23379,23628,23672,23767,23845,23857,23966,24009,24014,24136,24253,24291,24317,24345,24383,24390,24452,24603,24654,24733,24926,24948,25030,25106,25262,25363,25371,25373,25454,25527,25529,25584,25682,25693,25705,25847,26170,26278,26279,26281,26308,26315,26323,26416,26432,26433,26509,26549,26614,26638,26652,26684,26791,26881,26988,27120,27142,27196,27336,27384,27409,27612,27670,27861,27955,27957,28016,28085,28160,28189,28245,28255,28261,28299,28363,28540,28876,28916,28956,28965,28986,28987,28999,29020,29062,29142,29244,29304,29355,29407,29437,29457,29462,29477,29494,29516,29526,29593,29602,29620,29630,29660,29675,29713,29723,29750,29757,29800,29820,29841,29888,29971,29977,30020,30030,30036,30052,30064,30067,30081,30085,30088,30092,30111,30131,30134,30145,30147,30152,30157,30172,30179,30249,30262,30397,30399,30407,30408,30420,30433,30444,30455,30456,30457,30476,30477,30512,30517,30540,30567,30647,30685,30697,30703,30715,30777,30778,30792,30793,30822,30838,30867,30887,30937,30953,30958,31020,31048,31085]]],["For",[2,2,[[42,1,1,0,1,[[1005,1,1,0,1]]],[61,1,1,1,2,[[1161,1,1,1,2]]]],[26479,30587]]],["To",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[48,1,1,2,3,[[1097,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[24062,26822,29212,30378]]],["Unto",[3,2,[[43,3,2,0,2,[[1036,2,1,0,1],[1043,1,1,1,2]]]],[27588,27830]]],["Upon",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27313]]],["a",[12,7,[[44,4,1,0,1,[[1056,4,1,0,1]]],[45,2,2,1,3,[[1065,1,1,1,2],[1076,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]],[57,4,2,4,6,[[1133,2,1,4,5],[1140,2,1,5,6]]],[58,1,1,6,7,[[1150,1,1,6,7]]]],[28218,28436,28763,28916,29968,30102,30357]]],["against",[26,22,[[39,2,2,0,2,[[946,2,2,0,2]]],[40,1,1,2,3,[[959,1,1,2,3]]],[41,8,7,3,10,[[979,1,1,3,4],[984,2,1,4,5],[987,2,2,5,7],[989,2,2,7,9],[994,1,1,9,10]]],[42,2,2,10,12,[[1008,1,1,10,11],[1009,1,1,11,12]]],[43,5,3,12,15,[[1023,1,1,12,13],[1026,1,1,13,14],[1042,3,1,14,15]]],[44,1,1,15,16,[[1053,1,1,15,16]]],[45,3,2,16,18,[[1067,1,1,16,17],[1069,2,1,17,18]]],[53,1,1,18,19,[[1124,1,1,18,19]]],[54,1,1,19,20,[[1125,1,1,19,20]]],[57,1,1,20,21,[[1144,1,1,20,21]]],[60,1,1,21,22,[[1158,1,1,21,22]]]],[23742,23748,24317,25225,25469,25606,25609,25654,25655,25929,26587,26659,27112,27217,27804,28123,28485,28539,29807,29821,30215,30529]]],["among",[18,18,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,5,5,1,6,[[960,2,2,1,3],[964,2,2,3,5],[969,1,1,5,6]]],[41,3,3,6,9,[[980,1,1,6,7],[982,1,1,7,8],[996,1,1,8,9]]],[42,2,2,9,11,[[1002,1,1,9,10],[1017,1,1,10,11]]],[43,4,4,11,15,[[1019,1,1,11,12],[1021,1,1,12,13],[1031,1,1,13,14],[1037,1,1,14,15]]],[46,1,1,15,16,[[1088,1,1,15,16]]],[51,1,1,16,17,[[1115,1,1,16,17]]],[59,1,1,17,18,[[1154,1,1,17,18]]]],[23561,24330,24341,24519,24520,24727,25259,25399,26038,26266,26921,26971,27039,27428,27655,28995,29636,30454]]],["at",[20,20,[[39,2,2,0,2,[[940,1,1,0,1],[946,1,1,1,2]]],[41,3,3,2,5,[[980,1,1,2,3],[981,1,1,3,4],[983,1,1,4,5]]],[42,1,1,5,6,[[1007,1,1,5,6]]],[43,12,12,6,18,[[1021,1,1,6,7],[1025,1,1,7,8],[1035,1,1,8,9],[1037,3,3,9,12],[1038,2,2,12,14],[1040,1,1,14,15],[1042,1,1,15,16],[1044,1,1,16,17],[1045,1,1,17,18]]],[44,1,1,18,19,[[1049,1,1,18,19]]],[54,1,1,19,20,[[1126,1,1,19,20]]]],[23530,23756,25271,25362,25437,26555,27028,27216,27579,27640,27641,27642,27667,27677,27745,27811,27858,27911,28042,29853]]],["before",[2,2,[[43,1,1,0,1,[[1039,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[27734,30299]]],["behold",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28848]]],["by",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[23269,27169]]],["concerning",[5,5,[[43,1,1,0,1,[[1019,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]],[51,1,1,4,5,[[1115,1,1,4,5]]]],[26974,28355,28955,29336,29639]]],["for",[92,86,[[39,9,9,0,9,[[933,1,1,0,1],[934,1,1,1,2],[936,1,1,2,3],[938,2,2,3,5],[952,1,1,5,6],[954,2,2,6,8],[955,1,1,8,9]]],[40,6,6,9,15,[[957,2,2,9,11],[962,2,2,11,13],[969,1,1,13,14],[970,1,1,14,15]]],[41,13,11,15,26,[[974,2,1,15,16],[975,1,1,16,17],[977,2,2,17,19],[981,4,4,19,23],[984,1,1,23,24],[986,2,1,24,25],[993,1,1,25,26]]],[42,2,2,26,28,[[997,1,1,26,27],[1014,1,1,27,28]]],[43,10,10,28,38,[[1019,1,1,28,29],[1024,2,2,29,31],[1026,1,1,31,32],[1027,1,1,32,33],[1030,2,2,33,35],[1031,1,1,35,36],[1040,1,1,36,37],[1043,1,1,37,38]]],[44,16,16,38,54,[[1046,1,1,38,39],[1047,1,1,39,40],[1049,4,4,40,44],[1053,1,1,44,45],[1054,2,2,45,47],[1055,1,1,47,48],[1058,1,1,48,49],[1060,4,4,49,53],[1061,1,1,53,54]]],[45,5,4,54,58,[[1066,1,1,54,55],[1072,2,1,55,56],[1075,1,1,56,57],[1077,1,1,57,58]]],[46,6,4,58,62,[[1082,1,1,58,59],[1085,2,1,59,60],[1086,1,1,60,61],[1087,2,1,61,62]]],[47,2,2,62,64,[[1093,1,1,62,63],[1095,1,1,63,64]]],[48,5,4,64,68,[[1098,1,1,64,65],[1100,2,1,65,66],[1101,1,1,66,67],[1102,1,1,67,68]]],[49,2,2,68,70,[[1103,2,2,68,70]]],[50,3,3,70,73,[[1107,2,2,70,72],[1110,1,1,72,73]]],[54,1,1,73,74,[[1128,1,1,73,74]]],[55,1,1,74,75,[[1131,1,1,74,75]]],[57,5,5,75,80,[[1135,1,1,75,76],[1138,1,1,76,77],[1141,2,2,77,79],[1143,1,1,79,80]]],[58,1,1,80,81,[[1147,1,1,80,81]]],[59,3,3,81,84,[[1151,1,1,81,82],[1152,1,1,82,83],[1154,1,1,83,84]]],[65,2,2,84,86,[[1175,1,1,84,85],[1188,1,1,85,86]]]],[23247,23316,23349,23427,23435,23971,24067,24082,24139,24219,24259,24415,24418,24726,24763,25007,25028,25111,25121,25304,25306,25314,25363,25478,25588,25839,26051,26822,26987,27121,27137,27237,27263,27364,27409,27440,27764,27839,27935,27988,28025,28027,28031,28044,28144,28163,28172,28192,28270,28305,28307,28329,28334,28362,28459,28617,28700,28777,28882,28946,28966,28979,29108,29175,29251,29284,29306,29359,29378,29386,29481,29490,29550,29881,29937,30000,30060,30114,30120,30180,30316,30378,30413,30452,30855,31082]]],["from",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24943]]],["in",[137,127,[[39,16,15,0,15,[[930,1,1,0,1],[932,1,1,1,2],[938,5,4,2,6],[940,1,1,6,7],[941,2,2,7,9],[943,1,1,9,10],[946,2,2,10,12],[954,1,1,12,13],[955,1,1,13,14],[956,1,1,14,15]]],[40,14,12,15,27,[[957,1,1,15,16],[958,1,1,16,17],[961,3,2,17,19],[962,1,1,19,20],[965,1,1,20,21],[967,2,1,21,22],[969,2,2,22,24],[970,2,2,24,26],[971,1,1,26,27]]],[41,19,18,27,45,[[973,2,2,27,29],[974,1,1,29,30],[976,1,1,30,31],[978,1,1,31,32],[979,2,2,32,34],[980,3,2,34,36],[983,2,2,36,38],[985,1,1,38,39],[986,2,2,39,41],[988,1,1,41,42],[993,2,2,42,44],[994,1,1,44,45]]],[42,19,18,45,63,[[997,1,1,45,46],[998,1,1,46,47],[999,3,3,47,50],[1001,1,1,50,51],[1003,1,1,51,52],[1005,1,1,52,53],[1007,3,3,53,56],[1008,1,1,56,57],[1010,2,1,57,58],[1013,1,1,58,59],[1015,1,1,59,60],[1016,3,3,60,63]]],[43,15,15,63,78,[[1019,2,2,63,65],[1021,1,1,65,66],[1025,2,2,66,68],[1027,1,1,68,69],[1029,1,1,69,70],[1030,1,1,70,71],[1033,1,1,71,72],[1034,1,1,72,73],[1035,1,1,73,74],[1036,2,2,74,76],[1041,1,1,76,77],[1043,1,1,77,78]]],[44,3,3,78,81,[[1053,1,1,78,79],[1055,1,1,79,80],[1056,1,1,80,81]]],[45,6,6,81,87,[[1062,2,2,81,83],[1069,1,1,83,84],[1072,2,2,84,86],[1076,1,1,86,87]]],[46,9,9,87,96,[[1078,3,3,87,90],[1079,1,1,90,91],[1083,1,1,91,92],[1085,2,2,92,94],[1087,1,1,94,95],[1088,1,1,95,96]]],[47,6,5,96,101,[[1092,2,2,96,98],[1093,1,1,98,99],[1095,1,1,99,100],[1096,2,1,100,101]]],[48,3,3,101,104,[[1097,1,1,101,102],[1099,1,1,102,103],[1100,1,1,103,104]]],[49,5,3,104,107,[[1103,1,1,104,105],[1104,4,2,105,107]]],[50,3,3,107,110,[[1107,1,1,107,108],[1108,1,1,108,109],[1109,1,1,109,110]]],[51,2,2,110,112,[[1113,1,1,110,111],[1114,1,1,111,112]]],[52,1,1,112,113,[[1117,1,1,112,113]]],[53,1,1,113,114,[[1124,1,1,113,114]]],[56,1,1,114,115,[[1132,1,1,114,115]]],[57,1,1,115,116,[[1143,1,1,115,116]]],[58,1,1,116,117,[[1148,1,1,116,117]]],[59,3,2,117,119,[[1151,3,2,117,119]]],[60,2,2,119,121,[[1156,2,2,119,121]]],[61,1,1,121,122,[[1163,1,1,121,122]]],[65,6,5,122,127,[[1167,1,1,122,123],[1172,2,1,123,124],[1177,1,1,124,125],[1179,1,1,125,126],[1183,1,1,126,127]]]],[23192,23222,23426,23444,23458,23459,23507,23569,23572,23650,23733,23747,24121,24180,24214,24224,24261,24378,24398,24415,24580,24648,24726,24733,24774,24814,24864,24913,24937,25001,25098,25154,25196,25245,25279,25293,25412,25438,25539,25561,25563,25628,25840,25863,25883,26062,26118,26135,26136,26138,26255,26333,26447,26548,26549,26575,26616,26669,26782,26838,26874,26886,26893,26976,26980,27025,27192,27199,27302,27341,27391,27507,27544,27578,27590,27607,27793,27841,28134,28202,28241,28376,28378,28533,28624,28625,28772,28805,28810,28821,28833,28899,28938,28954,28987,28992,29083,29097,29119,29172,29192,29216,29267,29285,29366,29407,29413,29475,29499,29527,29595,29620,29665,29797,29944,30181,30322,30382,30395,30487,30496,30632,30708,30808,30881,30914,30992]]],["into",[571,527,[[39,126,116,0,116,[[930,7,7,0,7],[931,2,2,7,9],[932,5,5,9,14],[933,5,5,14,19],[934,4,4,19,23],[935,2,2,23,25],[936,9,8,25,33],[937,8,6,33,39],[938,5,4,39,43],[939,1,1,43,44],[940,5,5,44,49],[941,8,8,49,57],[942,7,7,57,64],[943,7,6,64,70],[944,1,1,70,71],[945,5,4,71,75],[946,6,4,75,79],[947,4,4,79,83],[948,4,4,83,87],[949,7,7,87,94],[950,2,2,94,96],[952,1,1,96,97],[953,6,5,97,102],[954,7,7,102,109],[955,3,3,109,112],[956,5,4,112,116]]],[40,90,74,116,190,[[957,8,7,116,123],[958,5,4,123,127],[959,4,4,127,131],[960,2,2,131,133],[961,6,4,133,137],[962,9,9,137,146],[963,9,6,146,152],[964,5,4,152,156],[965,15,9,156,165],[966,5,5,165,170],[967,6,4,170,174],[968,2,2,174,176],[969,1,1,176,177],[970,8,8,177,185],[972,5,5,185,190]]],[41,101,96,190,286,[[973,5,4,190,194],[974,5,5,194,199],[975,3,3,199,202],[976,7,7,202,209],[977,6,6,209,215],[978,5,5,215,220],[979,5,5,220,225],[980,10,9,225,234],[981,8,7,234,241],[982,6,5,241,246],[983,1,1,246,247],[984,3,3,247,250],[985,1,1,250,251],[986,4,4,251,255],[987,2,2,255,257],[988,5,5,257,262],[989,3,3,262,265],[990,3,3,265,268],[991,3,3,268,271],[993,2,2,271,273],[994,8,7,273,280],[995,3,3,280,283],[996,3,3,283,286]]],[42,64,62,286,348,[[997,2,2,286,288],[999,6,6,288,294],[1000,9,9,294,303],[1001,2,2,303,305],[1002,6,6,305,311],[1003,2,2,311,313],[1004,1,1,313,314],[1005,1,1,314,315],[1006,3,3,315,318],[1007,4,4,318,322],[1008,2,2,322,324],[1009,4,4,324,328],[1011,1,1,328,329],[1012,4,4,329,333],[1013,2,1,333,334],[1014,6,6,334,340],[1015,2,2,340,342],[1016,5,4,342,346],[1017,2,2,346,348]]],[43,88,85,348,433,[[1018,4,2,348,350],[1019,3,2,350,352],[1020,4,4,352,356],[1022,1,1,356,357],[1024,8,8,357,365],[1025,1,1,365,366],[1026,4,4,366,370],[1027,3,3,370,373],[1028,3,3,373,376],[1029,1,1,376,377],[1030,1,1,377,378],[1031,4,4,378,382],[1033,9,9,382,391],[1034,1,1,391,392],[1035,4,4,392,396],[1036,4,4,396,400],[1037,4,4,400,404],[1038,9,9,404,413],[1039,5,5,413,418],[1040,4,4,418,422],[1042,1,1,422,423],[1044,7,7,423,430],[1045,3,3,430,433]]],[44,13,12,433,445,[[1046,1,1,433,434],[1050,2,2,434,436],[1051,3,2,436,438],[1053,1,1,438,439],[1055,3,3,439,442],[1056,1,1,442,443],[1060,2,2,443,445]]],[45,3,2,445,447,[[1073,2,1,445,446],[1075,1,1,446,447]]],[46,6,6,447,453,[[1078,1,1,447,448],[1079,1,1,448,449],[1084,1,1,449,450],[1088,2,2,450,452],[1089,1,1,452,453]]],[47,4,4,453,457,[[1091,2,2,453,455],[1093,1,1,455,456],[1094,1,1,456,457]]],[48,2,2,457,459,[[1100,2,2,457,459]]],[50,1,1,459,460,[[1107,1,1,459,460]]],[52,2,1,460,461,[[1118,2,1,460,461]]],[53,7,7,461,468,[[1119,3,3,461,464],[1121,2,2,464,466],[1124,2,2,466,468]]],[54,1,1,468,469,[[1127,1,1,468,469]]],[57,20,18,469,487,[[1133,1,1,469,470],[1135,2,2,470,472],[1136,6,5,472,477],[1138,1,1,477,478],[1140,1,1,478,479],[1141,5,4,479,483],[1142,2,2,483,485],[1143,1,1,485,486],[1145,1,1,486,487]]],[58,4,4,487,491,[[1146,1,1,487,488],[1149,1,1,488,489],[1150,2,2,489,491]]],[59,3,3,491,494,[[1151,1,1,491,492],[1152,1,1,492,493],[1153,1,1,493,494]]],[60,1,1,494,495,[[1156,1,1,494,495]]],[61,2,2,495,497,[[1162,2,2,495,497]]],[62,2,2,497,499,[[1164,2,2,497,499]]],[64,1,1,499,500,[[1166,1,1,499,500]]],[65,30,27,500,527,[[1168,3,2,500,502],[1171,1,1,502,503],[1174,2,2,503,505],[1178,4,3,505,508],[1179,1,1,508,509],[1180,2,1,509,510],[1181,1,1,510,511],[1182,3,3,511,514],[1183,3,3,514,517],[1184,1,1,517,518],[1185,1,1,518,519],[1186,4,4,519,523],[1187,3,3,523,526],[1188,1,1,526,527]]]],[23180,23181,23182,23183,23189,23190,23191,23202,23204,23210,23214,23217,23221,23227,23235,23254,23259,23263,23264,23288,23295,23308,23312,23335,23337,23350,23357,23359,23368,23373,23376,23377,23378,23380,23396,23402,23405,23407,23417,23422,23428,23429,23440,23466,23493,23498,23500,23518,23533,23541,23569,23575,23581,23586,23587,23589,23593,23610,23612,23619,23620,23629,23631,23632,23644,23647,23650,23654,23662,23672,23685,23701,23715,23722,23725,23730,23735,23736,23757,23763,23779,23785,23786,23793,23794,23796,23799,23828,23836,23838,23843,23844,23847,23849,23882,23885,23995,24029,24031,24038,24049,24054,24072,24084,24086,24095,24099,24106,24125,24135,24156,24182,24202,24205,24206,24211,24227,24229,24236,24244,24250,24253,24260,24261,24271,24282,24286,24289,24301,24307,24315,24324,24360,24365,24376,24377,24382,24408,24417,24438,24439,24443,24452,24453,24458,24463,24478,24480,24481,24482,24487,24496,24510,24513,24526,24527,24540,24560,24563,24566,24569,24580,24581,24583,24585,24589,24605,24611,24612,24613,24642,24651,24655,24663,24714,24716,24732,24767,24770,24780,24782,24792,24795,24808,24822,24878,24880,24885,24888,24892,24902,24932,24933,24972,24976,24977,24988,25000,25012,25028,25034,25042,25064,25068,25077,25079,25100,25101,25105,25110,25111,25126,25131,25144,25145,25150,25152,25158,25184,25185,25196,25206,25219,25231,25239,25267,25274,25275,25276,25277,25278,25282,25286,25296,25305,25311,25313,25329,25335,25345,25353,25364,25365,25368,25373,25401,25409,25464,25487,25517,25537,25554,25558,25574,25576,25601,25603,25624,25629,25636,25642,25648,25653,25663,25678,25698,25712,25713,25743,25761,25776,25827,25850,25867,25874,25897,25904,25910,25918,25930,25954,25960,25981,25998,26017,26042,26053,26087,26124,26125,26137,26139,26142,26144,26159,26170,26184,26194,26199,26201,26202,26203,26210,26217,26234,26260,26271,26272,26274,26278,26279,26331,26342,26383,26479,26482,26517,26521,26530,26550,26553,26577,26604,26626,26632,26633,26635,26657,26705,26739,26746,26747,26754,26777,26786,26796,26800,26813,26818,26822,26834,26842,26873,26878,26892,26894,26901,26905,26934,26936,26969,26983,26997,26998,26999,27004,27080,27119,27120,27125,27131,27132,27150,27155,27171,27214,27222,27224,27233,27255,27275,27281,27283,27315,27317,27319,27354,27376,27415,27434,27436,27439,27492,27493,27498,27502,27506,27507,27517,27520,27523,27533,27564,27575,27576,27584,27593,27607,27614,27616,27627,27628,27629,27644,27667,27672,27675,27690,27692,27693,27698,27701,27702,27708,27714,27715,27727,27728,27744,27750,27754,27762,27819,27856,27861,27872,27885,27893,27894,27896,27904,27916,27922,27956,28049,28059,28071,28072,28137,28194,28195,28206,28233,28327,28331,28647,28687,28816,28837,28921,29002,29003,29026,29074,29078,29129,29137,29281,29287,29478,29683,29699,29708,29711,29737,29738,29795,29797,29859,29969,30006,30013,30015,30017,30019,30024,30025,30063,30102,30112,30117,30129,30130,30138,30164,30180,30252,30291,30350,30358,30366,30386,30408,30446,30490,30604,30612,30652,30655,30676,30727,30739,30785,30832,30835,30897,30900,30905,30918,30945,30954,30970,30971,30973,30978,30983,30986,31014,31037,31041,31048,31052,31053,31077,31079,31080,31094]]],["my",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23507]]],["of",[7,7,[[39,1,1,0,1,[[933,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]],[46,3,3,2,5,[[1087,2,2,2,4],[1089,1,1,4,5]]],[57,1,1,5,6,[[1139,1,1,5,6]]],[59,1,1,6,7,[[1151,1,1,6,7]]]],[23256,27816,28984,28986,29028,30078,30385]]],["on",[58,53,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,3,3,1,4,[[960,1,1,1,2],[964,1,1,2,3],[970,1,1,3,4]]],[41,5,4,4,8,[[978,1,1,4,5],[980,1,1,5,6],[984,1,1,6,7],[987,2,1,7,8]]],[42,34,32,8,40,[[997,1,1,8,9],[998,1,1,9,10],[999,2,2,10,12],[1000,1,1,12,13],[1002,4,4,13,17],[1003,4,4,17,21],[1004,3,3,21,24],[1005,2,2,24,26],[1006,1,1,26,27],[1007,2,2,27,29],[1008,7,5,29,34],[1010,1,1,34,35],[1012,1,1,35,36],[1013,1,1,36,37],[1015,1,1,37,38],[1017,2,2,38,40]]],[43,6,5,40,45,[[1020,1,1,40,41],[1023,1,1,41,42],[1030,1,1,42,43],[1031,1,1,43,44],[1036,2,1,44,45]]],[44,1,1,45,46,[[1061,1,1,45,46]]],[46,1,1,46,47,[[1088,1,1,46,47]]],[47,1,1,47,48,[[1093,1,1,47,48]]],[48,1,1,48,49,[[1100,1,1,48,49]]],[49,1,1,49,50,[[1103,1,1,49,50]]],[61,3,2,50,52,[[1163,3,2,50,52]]],[65,1,1,52,53,[[1179,1,1,52,53]]]],[24159,24331,24523,24760,25166,25268,25508,25610,26056,26106,26138,26156,26195,26286,26292,26297,26304,26359,26366,26367,26376,26387,26389,26411,26475,26476,26523,26568,26571,26591,26617,26622,26624,26626,26680,26735,26779,26862,26902,26904,27000,27116,27371,27437,27589,28342,29009,29116,29280,29390,30634,30637,30921]]],["the",[9,9,[[39,2,2,0,2,[[949,1,1,0,1],[950,1,1,1,2]]],[40,2,2,2,4,[[968,2,2,2,4]]],[41,1,1,4,5,[[992,1,1,4,5]]],[43,1,1,5,6,[[1021,1,1,5,6]]],[44,1,1,6,7,[[1058,1,1,6,7]]],[45,1,1,7,8,[[1071,1,1,7,8]]],[59,1,1,8,9,[[1152,1,1,8,9]]]],[23868,23888,24683,24687,25796,27033,28280,28598,30406]]],["throughout",[6,6,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,3,3,1,4,[[957,2,2,1,3],[970,1,1,3,4]]],[43,1,1,4,5,[[1043,1,1,4,5]]],[48,1,1,5,6,[[1099,1,1,5,6]]]],[23233,24243,24254,24763,27843,29272]]],["till",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29371]]],["to",[285,272,[[39,22,21,0,21,[[930,2,2,0,2],[935,1,1,2,3],[936,1,1,3,4],[937,2,2,4,6],[938,3,3,6,9],[942,1,1,9,10],[944,1,1,10,11],[945,2,2,11,13],[948,2,2,13,15],[949,1,1,15,16],[950,4,3,16,19],[951,1,1,19,20],[953,1,1,20,21]]],[40,21,21,21,42,[[958,1,1,21,22],[961,1,1,22,23],[962,1,1,23,24],[963,2,2,24,26],[964,4,4,26,30],[965,1,1,30,31],[966,3,3,31,34],[967,3,3,34,37],[969,3,3,37,40],[970,2,2,40,42]]],[41,41,41,42,83,[[973,2,2,42,44],[974,7,7,44,51],[976,3,3,51,54],[977,2,2,54,56],[979,1,1,56,57],[980,1,1,57,58],[981,4,4,58,62],[982,3,3,62,65],[986,1,1,65,66],[987,1,1,66,67],[988,1,1,67,68],[989,1,1,68,69],[990,2,2,69,71],[991,2,2,71,73],[993,2,2,73,75],[994,2,2,75,77],[996,6,6,77,83]]],[42,22,21,83,104,[[998,3,3,83,86],[999,1,1,86,87],[1000,1,1,87,88],[1001,1,1,88,89],[1002,1,1,89,90],[1004,1,1,90,91],[1005,1,1,91,92],[1007,3,3,92,95],[1008,4,3,95,98],[1012,1,1,98,99],[1013,1,1,99,100],[1016,3,3,100,103],[1017,1,1,103,104]]],[43,84,80,104,184,[[1018,1,1,104,105],[1021,1,1,105,106],[1022,2,2,106,108],[1023,1,1,108,109],[1025,5,5,109,114],[1026,4,3,114,117],[1027,3,3,117,120],[1028,4,4,120,124],[1029,1,1,124,125],[1030,8,7,125,132],[1031,4,4,132,136],[1032,5,5,136,141],[1033,6,5,141,146],[1034,3,3,146,149],[1035,4,4,149,153],[1036,2,2,153,155],[1037,4,4,155,159],[1038,5,5,159,164],[1039,2,2,164,166],[1040,3,3,166,169],[1041,1,1,169,170],[1042,5,5,170,175],[1043,3,3,175,178],[1044,2,2,178,180],[1045,5,4,180,184]]],[44,19,19,184,203,[[1046,3,3,184,187],[1047,1,1,187,188],[1050,2,2,188,190],[1051,1,1,190,191],[1052,1,1,191,192],[1053,1,1,192,193],[1054,2,2,193,195],[1056,1,1,195,196],[1058,1,1,196,197],[1059,2,2,197,199],[1060,3,3,199,202],[1061,1,1,202,203]]],[45,3,3,203,206,[[1065,1,1,203,204],[1075,1,1,204,205],[1077,1,1,205,206]]],[46,18,16,206,222,[[1079,3,2,206,208],[1080,2,2,208,210],[1081,1,1,210,211],[1084,2,2,211,213],[1085,2,2,213,215],[1086,3,3,215,218],[1087,1,1,218,219],[1089,1,1,219,220],[1090,3,2,220,222]]],[47,8,7,222,229,[[1091,2,2,222,224],[1092,3,3,224,227],[1094,1,1,227,228],[1096,2,1,228,229]]],[48,5,5,229,234,[[1097,3,3,229,232],[1099,1,1,232,233],[1100,1,1,233,234]]],[49,3,3,234,237,[[1103,1,1,234,235],[1104,1,1,235,236],[1106,1,1,236,237]]],[50,3,3,237,240,[[1107,1,1,237,238],[1108,1,1,238,239],[1109,1,1,239,240]]],[51,4,4,240,244,[[1112,1,1,240,241],[1114,1,1,241,242],[1115,2,2,242,244]]],[52,2,2,244,246,[[1117,2,2,244,246]]],[53,3,3,246,249,[[1119,1,1,246,247],[1123,1,1,247,248],[1124,1,1,248,249]]],[54,6,5,249,254,[[1126,3,2,249,251],[1127,1,1,251,252],[1128,2,2,252,254]]],[55,1,1,254,255,[[1131,1,1,254,255]]],[57,2,2,255,257,[[1139,1,1,255,256],[1143,1,1,256,257]]],[58,3,2,257,259,[[1146,1,1,257,258],[1149,2,1,258,259]]],[59,1,1,259,260,[[1154,1,1,259,260]]],[60,3,2,260,262,[[1157,1,1,260,261],[1158,2,1,261,262]]],[63,2,1,262,263,[[1165,2,1,262,263]]],[64,1,1,263,264,[[1166,1,1,263,264]]],[65,8,8,264,272,[[1175,1,1,264,265],[1176,1,1,265,266],[1177,2,2,266,268],[1178,1,1,268,269],[1179,1,1,269,270],[1182,1,1,270,271],[1186,1,1,271,272]]]],[23170,23177,23329,23373,23386,23392,23434,23438,23439,23616,23677,23724,23727,23809,23810,23827,23875,23877,23881,23952,24018,24277,24402,24448,24493,24497,24503,24513,24522,24526,24571,24620,24621,24634,24641,24655,24667,24726,24729,24731,24762,24786,24916,24949,24995,25005,25012,25014,25015,25018,25024,25072,25079,25094,25132,25139,25205,25284,25317,25352,25354,25357,25370,25393,25397,25561,25605,25647,25662,25702,25719,25759,25760,25838,25847,25897,25903,25996,26004,26011,26024,26041,26043,26097,26107,26108,26133,26161,26211,26281,26407,26451,26561,26578,26579,26581,26592,26593,26758,26760,26870,26871,26875,26907,26948,27052,27080,27095,27113,27179,27181,27201,27203,27216,27218,27242,27246,27264,27267,27291,27309,27320,27327,27332,27356,27366,27375,27376,27393,27396,27408,27410,27434,27435,27438,27440,27444,27446,27464,27472,27480,27484,27491,27494,27495,27499,27524,27528,27543,27558,27576,27579,27581,27586,27606,27632,27640,27641,27643,27668,27671,27676,27679,27681,27709,27721,27765,27766,27767,27786,27797,27799,27805,27812,27816,27835,27837,27841,27860,27867,27905,27912,27914,27915,27947,27954,27958,27966,28063,28065,28084,28101,28131,28177,28186,28245,28270,28281,28289,28310,28319,28321,28362,28439,28686,28791,28833,28836,28854,28859,28874,28925,28926,28936,28956,28957,28964,28967,28976,29023,29046,29053,29074,29075,29082,29089,29092,29155,29196,29211,29218,29225,29253,29291,29380,29402,29459,29469,29496,29532,29586,29612,29630,29636,29674,29675,29712,29787,29805,29847,29852,29860,29880,29882,29935,30089,30183,30285,30346,30450,30522,30531,30663,30676,30849,30866,30878,30884,30895,30911,30968,31046]]],["toward",[26,24,[[39,1,1,0,1,[[956,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[985,1,1,2,3]]],[42,1,1,3,4,[[1002,1,1,3,4]]],[43,6,5,4,9,[[1018,1,1,4,5],[1037,2,1,5,6],[1041,1,1,6,7],[1044,1,1,7,8],[1045,1,1,8,9]]],[44,1,1,9,10,[[1050,1,1,9,10]]],[46,6,6,10,16,[[1078,1,1,10,11],[1079,1,1,11,12],[1084,1,1,12,13],[1086,1,1,13,14],[1087,1,1,14,15],[1090,1,1,15,16]]],[47,1,1,16,17,[[1092,1,1,16,17]]],[48,1,1,17,18,[[1097,1,1,17,18]]],[51,3,2,18,20,[[1113,2,1,18,19],[1114,1,1,19,20]]],[52,1,1,20,21,[[1116,1,1,20,21]]],[56,1,1,21,22,[[1132,1,1,21,22]]],[57,1,1,22,23,[[1138,1,1,22,23]]],[59,1,1,23,24,[[1153,1,1,23,24]]]],[24196,25480,25540,26274,26933,27647,27784,27895,27913,28055,28816,28832,28931,28964,28972,29047,29089,29214,29602,29613,29652,29943,30054,30445]]],["until",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29220]]],["unto",[205,183,[[39,15,15,0,15,[[931,1,1,0,1],[935,1,1,1,2],[936,1,1,2,3],[937,1,1,3,4],[940,1,1,4,5],[941,1,1,5,6],[942,1,1,6,7],[943,1,1,7,8],[944,1,1,8,9],[949,1,1,9,10],[950,1,1,10,11],[952,1,1,11,12],[954,2,2,12,14],[955,1,1,14,15]]],[40,7,7,15,22,[[960,1,1,15,16],[961,2,2,16,18],[967,2,2,18,20],[969,1,1,20,21],[971,1,1,21,22]]],[41,10,10,22,32,[[973,1,1,22,23],[974,1,1,23,24],[976,1,1,24,25],[980,1,1,25,26],[983,1,1,26,27],[989,1,1,27,28],[990,2,2,28,30],[993,1,1,30,31],[996,1,1,31,32]]],[42,22,20,32,52,[[997,1,1,32,33],[1000,3,3,33,36],[1001,3,2,36,38],[1002,1,1,38,39],[1003,5,4,39,43],[1004,1,1,43,44],[1007,2,2,44,46],[1008,2,2,46,48],[1009,1,1,48,49],[1014,1,1,49,50],[1015,1,1,50,51],[1016,1,1,51,52]]],[43,35,33,52,85,[[1018,1,1,52,53],[1021,1,1,53,54],[1022,1,1,54,55],[1025,1,1,55,56],[1026,1,1,56,57],[1028,4,4,57,61],[1029,1,1,61,62],[1030,2,2,62,64],[1031,1,1,64,65],[1032,1,1,65,66],[1034,1,1,66,67],[1035,1,1,67,68],[1036,1,1,68,69],[1037,3,3,69,72],[1038,5,3,72,75],[1039,3,3,75,78],[1042,3,3,78,81],[1043,2,2,81,83],[1044,2,2,83,85]]],[44,26,21,85,106,[[1046,3,3,85,88],[1048,2,2,88,90],[1050,4,4,90,94],[1051,5,3,94,97],[1052,1,1,97,98],[1054,3,2,98,100],[1055,4,3,100,103],[1060,1,1,103,104],[1061,3,2,104,106]]],[45,6,6,106,112,[[1062,1,1,106,107],[1063,1,1,107,108],[1071,1,1,108,109],[1072,1,1,109,110],[1075,1,1,110,111],[1077,1,1,111,112]]],[46,11,8,112,120,[[1078,1,1,112,113],[1079,3,2,113,115],[1081,1,1,115,116],[1085,1,1,116,117],[1086,4,2,117,119],[1087,1,1,119,120]]],[47,6,5,120,125,[[1091,2,2,120,122],[1092,2,1,122,123],[1093,2,2,123,125]]],[48,8,7,125,132,[[1097,3,3,125,128],[1098,1,1,128,129],[1100,4,3,129,132]]],[49,4,4,132,136,[[1103,2,2,132,134],[1105,1,1,134,135],[1106,1,1,135,136]]],[50,6,6,136,142,[[1107,4,4,136,140],[1108,1,1,140,141],[1110,1,1,141,142]]],[51,5,5,142,147,[[1111,1,1,142,143],[1112,2,2,143,145],[1114,2,2,145,147]]],[53,2,2,147,149,[[1119,1,1,147,148],[1120,1,1,148,149]]],[54,6,4,149,153,[[1126,2,1,149,150],[1127,1,1,150,151],[1128,3,2,151,153]]],[57,7,7,153,160,[[1134,2,2,153,155],[1138,1,1,155,156],[1141,1,1,156,157],[1142,1,1,157,158],[1143,1,1,158,159],[1144,1,1,159,160]]],[58,1,1,160,161,[[1147,1,1,160,161]]],[59,10,10,161,171,[[1151,7,7,161,168],[1153,1,1,168,169],[1154,1,1,169,170],[1155,1,1,170,171]]],[60,2,2,171,173,[[1157,2,2,171,173]]],[61,1,1,173,174,[[1161,1,1,173,174]]],[64,2,2,174,176,[[1166,2,2,174,176]]],[65,13,7,176,183,[[1167,7,1,176,177],[1172,1,1,177,178],[1175,2,2,178,180],[1178,1,1,180,181],[1185,2,2,181,183]]]],[23203,23330,23363,23385,23509,23591,23619,23657,23693,23827,23876,23970,24057,24090,24162,24358,24365,24385,24641,24651,24730,24867,24919,24977,25089,25267,25429,25675,25701,25723,25830,26019,26055,26164,26192,26201,26234,26239,26284,26336,26338,26363,26381,26382,26554,26577,26605,26607,26631,26813,26852,26868,26935,27025,27075,27202,27218,27325,27329,27333,27334,27347,27366,27413,27420,27481,27533,27563,27615,27639,27648,27664,27665,27666,27672,27709,27711,27725,27802,27809,27817,27834,27840,27863,27895,27931,27946,27956,27998,28013,28062,28063,28065,28068,28084,28087,28090,28101,28176,28178,28198,28200,28206,28328,28341,28355,28372,28401,28569,28634,28714,28779,28823,28828,28840,28870,28934,28961,28969,28985,29063,29074,29090,29125,29126,29211,29220,29221,29250,29285,29288,29302,29372,29373,29432,29458,29471,29475,29476,29485,29496,29553,29565,29579,29582,29611,29618,29702,29720,29848,29868,29880,29888,29980,29987,30050,30133,30172,30198,30214,30295,30376,30377,30379,30381,30384,30396,30399,30436,30453,30475,30504,30509,30593,30678,30693,30708,30806,30841,30847,30904,31026,31034]]],["upon",[22,21,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,2,2,3,5,[[980,1,1,3,4],[990,1,1,4,5]]],[43,4,4,5,9,[[1020,1,1,5,6],[1039,1,1,6,7],[1044,2,2,7,9]]],[44,4,3,9,12,[[1050,3,2,9,11],[1058,1,1,11,12]]],[45,2,2,12,14,[[1071,1,1,12,13],[1076,1,1,13,14]]],[46,1,1,14,15,[[1078,1,1,14,15]]],[65,6,6,15,21,[[1174,1,1,15,16],[1175,1,1,16,17],[1182,4,4,17,21]]]],[24064,24159,24720,25288,25701,27000,27717,27881,27884,28059,28065,28272,28578,28728,28811,30834,30843,30955,30956,30957,30958]]],["with",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29270]]]]},{"k":"G1520","v":[["*",[272,235,[[39,50,46,0,46,[[933,4,4,0,4],[934,4,3,4,7],[936,1,1,7,8],[937,1,1,8,9],[938,2,2,9,11],[940,1,1,11,12],[941,1,1,12,13],[944,1,1,13,14],[946,8,8,14,22],[947,2,2,22,24],[948,3,2,24,26],[949,1,1,26,27],[950,1,1,27,28],[951,4,4,28,32],[952,2,1,32,33],[953,5,5,33,38],[954,4,4,38,42],[955,5,4,42,46]]],[40,35,29,46,75,[[958,1,1,46,47],[960,6,2,47,49],[961,1,1,49,50],[962,1,1,50,51],[964,2,2,51,53],[965,3,3,53,56],[966,5,4,56,60],[967,1,1,60,61],[968,4,4,61,65],[969,1,1,65,66],[970,6,6,66,72],[971,4,3,72,75]]],[41,32,31,75,106,[[976,1,1,75,76],[977,1,1,76,77],[979,1,1,77,78],[981,1,1,78,79],[982,1,1,79,80],[983,1,1,80,81],[984,4,4,81,85],[987,6,6,85,91],[988,3,2,91,93],[989,4,4,93,97],[990,3,3,97,100],[992,1,1,100,101],[994,2,2,101,103],[995,2,2,103,105],[996,1,1,105,106]]],[42,36,33,106,139,[[997,2,2,106,108],[1002,5,5,108,113],[1003,2,2,113,115],[1004,1,1,115,116],[1005,1,1,116,117],[1006,2,2,117,119],[1007,3,3,119,122],[1008,2,2,122,124],[1009,2,2,124,126],[1013,6,4,126,130],[1014,4,4,130,134],[1015,1,1,134,135],[1016,4,3,135,138],[1017,1,1,138,139]]],[43,14,14,139,153,[[1018,2,2,139,141],[1019,2,2,141,143],[1021,1,1,143,144],[1028,1,1,144,145],[1034,2,2,145,147],[1037,1,1,147,148],[1038,2,2,148,150],[1040,2,2,150,152],[1045,1,1,152,153]]],[44,20,13,153,166,[[1048,3,3,153,156],[1050,12,6,156,162],[1054,1,1,162,163],[1057,3,2,163,165],[1060,1,1,165,166]]],[45,29,20,166,186,[[1064,1,1,166,167],[1065,2,1,167,168],[1067,3,3,168,171],[1069,3,2,171,173],[1070,1,1,173,174],[1071,3,1,174,175],[1072,1,1,175,176],[1073,13,8,176,184],[1075,2,2,184,186]]],[46,2,2,186,188,[[1082,1,1,186,187],[1088,1,1,187,188]]],[47,7,5,188,193,[[1093,4,3,188,191],[1094,2,1,191,192],[1095,1,1,192,193]]],[48,12,10,193,203,[[1098,4,4,193,197],[1100,7,5,197,202],[1101,1,1,202,203]]],[49,3,3,203,206,[[1103,1,1,203,204],[1104,1,1,204,205],[1105,1,1,205,206]]],[50,2,2,206,208,[[1109,1,1,206,207],[1110,1,1,207,208]]],[51,3,2,208,210,[[1112,1,1,208,209],[1115,2,1,209,210]]],[52,1,1,210,211,[[1116,1,1,210,211]]],[53,3,2,211,213,[[1120,2,1,211,212],[1123,1,1,212,213]]],[57,2,2,213,215,[[1134,1,1,213,214],[1143,1,1,214,215]]],[58,4,4,215,219,[[1147,2,2,215,217],[1149,2,2,217,219]]],[60,1,1,219,220,[[1158,1,1,219,220]]],[61,2,2,220,222,[[1163,2,2,220,222]]],[65,14,13,222,235,[[1170,1,1,222,223],[1171,1,1,223,224],[1172,1,1,224,225],[1173,1,1,225,226],[1174,1,1,226,227],[1181,1,1,227,228],[1183,2,2,228,230],[1184,1,1,230,231],[1185,1,1,231,232],[1187,3,2,232,234],[1188,1,1,234,235]]]],[23252,23263,23264,23275,23306,23309,23311,23364,23397,23446,23459,23500,23585,23686,23732,23733,23737,23739,23741,23743,23751,23755,23778,23779,23805,23813,23850,23907,23926,23927,23928,23933,23997,24023,24026,24032,24048,24053,24068,24075,24101,24105,24143,24144,24167,24177,24267,24331,24343,24386,24422,24514,24528,24555,24575,24580,24605,24606,24609,24625,24669,24679,24701,24702,24705,24718,24764,24772,24774,24797,24801,24805,24832,24853,24862,25103,25110,25236,25309,25405,25451,25465,25484,25486,25511,25592,25595,25598,25603,25607,25614,25625,25633,25653,25666,25685,25687,25698,25707,25710,25782,25911,25914,25952,25974,26009,26047,26084,26265,26266,26279,26327,26328,26349,26378,26422,26465,26497,26511,26572,26573,26575,26582,26584,26651,26653,26770,26780,26781,26782,26799,26807,26811,26824,26859,26874,26879,26891,26923,26945,26947,26952,26955,27054,27335,27549,27550,27657,27683,27690,27740,27751,27924,28001,28003,28021,28059,28062,28063,28064,28065,28066,28165,28249,28250,28309,28418,28439,28472,28483,28484,28531,28533,28564,28584,28605,28645,28646,28647,28648,28652,28653,28654,28660,28705,28709,28891,28991,29118,29122,29130,29153,29176,29243,29244,29245,29247,29276,29277,29278,29279,29288,29337,29388,29393,29434,29532,29548,29581,29632,29652,29721,29772,29988,30184,30303,30312,30349,30350,30530,30631,30632,30776,30784,30794,30823,30840,30953,30976,30985,31014,31034,31062,31074,31082]]],["+",[16,15,[[42,1,1,0,1,[[1017,1,1,0,1]]],[43,5,5,1,6,[[1018,1,1,1,2],[1019,2,2,2,4],[1038,1,1,4,5],[1040,1,1,5,6]]],[45,2,2,6,8,[[1072,1,1,6,7],[1075,1,1,7,8]]],[48,2,2,8,10,[[1100,1,1,8,9],[1101,1,1,9,10]]],[50,1,1,10,11,[[1110,1,1,10,11]]],[51,2,1,11,12,[[1115,2,1,11,12]]],[65,3,3,12,15,[[1170,1,1,12,13],[1187,1,1,13,14],[1188,1,1,14,15]]]],[26923,26947,26952,26955,27683,27751,28605,28709,29288,29337,29548,29632,30776,31074,31082]]],["One",[7,7,[[40,2,2,0,2,[[964,1,1,0,1],[970,1,1,1,2]]],[42,3,3,2,5,[[997,1,1,2,3],[1002,1,1,3,4],[1014,1,1,4,5]]],[48,2,2,5,7,[[1100,2,2,5,7]]]],[24528,24772,26084,26265,26811,29277,29278]]],["a",[9,9,[[39,3,3,0,3,[[933,1,1,0,1],[955,2,2,1,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[41,1,1,4,5,[[987,1,1,4,5]]],[42,2,2,5,7,[[1002,1,1,5,6],[1016,1,1,6,7]]],[58,1,1,7,8,[[1149,1,1,7,8]]],[65,1,1,8,9,[[1184,1,1,8,9]]]],[23275,24143,24144,24805,25603,26266,26874,30350,31014]]],["an",[2,2,[[65,2,2,0,2,[[1174,1,1,0,1],[1185,1,1,1,2]]]],[30840,31034]]],["another",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24167]]],["any",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27054]]],["certain",[2,2,[[39,2,2,0,2,[[936,1,1,0,1],[937,1,1,1,2]]]],[23364,23397]]],["man's",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28064]]],["one",[213,191,[[39,42,41,0,41,[[933,3,3,0,3],[934,4,3,3,6],[938,2,2,6,8],[940,1,1,8,9],[941,1,1,9,10],[944,1,1,10,11],[946,8,8,11,19],[947,2,2,19,21],[948,2,2,21,23],[949,1,1,23,24],[950,1,1,24,25],[951,4,4,25,29],[952,1,1,29,30],[953,5,5,30,35],[954,4,4,35,39],[955,2,2,39,41]]],[40,22,22,41,63,[[961,1,1,41,42],[962,1,1,42,43],[964,1,1,43,44],[965,3,3,44,47],[966,3,3,47,50],[967,1,1,50,51],[968,4,4,51,55],[969,1,1,55,56],[970,4,4,56,60],[971,3,3,60,63]]],[41,29,28,63,91,[[976,1,1,63,64],[977,1,1,64,65],[979,1,1,65,66],[981,1,1,66,67],[983,1,1,67,68],[984,4,4,68,72],[987,5,5,72,77],[988,3,2,77,79],[989,4,4,79,83],[990,2,2,83,85],[992,1,1,85,86],[994,2,2,86,88],[995,2,2,88,90],[996,1,1,90,91]]],[42,27,25,91,116,[[1002,3,3,91,94],[1003,2,2,94,96],[1004,1,1,96,97],[1006,2,2,97,99],[1007,3,3,99,102],[1008,2,2,102,104],[1009,2,2,104,106],[1013,6,4,106,110],[1014,3,3,110,113],[1015,1,1,113,114],[1016,2,2,114,116]]],[43,8,8,116,124,[[1018,1,1,116,117],[1028,1,1,117,118],[1034,2,2,118,120],[1037,1,1,120,121],[1038,1,1,121,122],[1040,1,1,122,123],[1045,1,1,123,124]]],[44,19,13,124,137,[[1048,3,3,124,127],[1050,11,6,127,133],[1054,1,1,133,134],[1057,3,2,134,136],[1060,1,1,136,137]]],[45,27,18,137,155,[[1064,1,1,137,138],[1065,2,1,138,139],[1067,3,3,139,142],[1069,3,2,142,144],[1070,1,1,144,145],[1071,3,1,145,146],[1073,13,8,146,154],[1075,1,1,154,155]]],[46,2,2,155,157,[[1082,1,1,155,156],[1088,1,1,156,157]]],[47,6,5,157,162,[[1093,4,3,157,160],[1094,1,1,160,161],[1095,1,1,161,162]]],[48,8,7,162,169,[[1098,4,4,162,166],[1100,4,3,166,169]]],[49,2,2,169,171,[[1103,1,1,169,170],[1104,1,1,170,171]]],[50,1,1,171,172,[[1109,1,1,171,172]]],[51,1,1,172,173,[[1112,1,1,172,173]]],[52,1,1,173,174,[[1116,1,1,173,174]]],[53,3,2,174,176,[[1120,2,1,174,175],[1123,1,1,175,176]]],[57,2,2,176,178,[[1134,1,1,176,177],[1143,1,1,177,178]]],[58,3,3,178,181,[[1147,2,2,178,180],[1149,1,1,180,181]]],[61,2,2,181,183,[[1163,2,2,181,183]]],[65,8,8,183,191,[[1171,1,1,183,184],[1172,1,1,184,185],[1173,1,1,185,186],[1181,1,1,186,187],[1183,2,2,187,189],[1187,2,2,189,191]]]],[23252,23263,23264,23306,23309,23311,23446,23459,23500,23585,23686,23732,23733,23737,23739,23741,23743,23751,23755,23778,23779,23805,23813,23850,23907,23926,23927,23928,23933,23997,24023,24026,24032,24048,24053,24068,24075,24101,24105,24167,24177,24386,24422,24514,24555,24575,24580,24605,24606,24625,24669,24679,24701,24702,24705,24718,24764,24774,24797,24801,24832,24853,24862,25103,25110,25236,25309,25451,25465,25484,25486,25511,25592,25595,25598,25607,25614,25625,25633,25653,25666,25685,25687,25698,25707,25782,25911,25914,25952,25974,26009,26279,26327,26328,26349,26378,26422,26497,26511,26572,26573,26575,26582,26584,26651,26653,26770,26780,26781,26782,26799,26807,26824,26859,26879,26891,26945,27335,27549,27550,27657,27690,27740,27924,28001,28003,28021,28059,28062,28063,28064,28065,28066,28165,28249,28250,28309,28418,28439,28472,28483,28484,28531,28533,28564,28584,28645,28646,28647,28648,28652,28653,28654,28660,28705,28891,28991,29118,29122,29130,29153,29176,29243,29244,29245,29247,29276,29277,29279,29388,29393,29532,29581,29652,29721,29772,29988,30184,30303,30312,30349,30631,30632,30784,30794,30823,30953,30976,30985,31062,31074]]],["only",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24267]]],["other",[6,6,[[39,2,2,0,2,[[948,1,1,0,1],[952,1,1,1,2]]],[40,2,2,2,4,[[966,1,1,2,3],[971,1,1,3,4]]],[42,1,1,4,5,[[1016,1,1,4,5]]],[47,1,1,5,6,[[1094,1,1,5,6]]]],[23813,23997,24625,24853,26879,29153]]],["some",[6,2,[[40,6,2,0,2,[[960,6,2,0,2]]]],[24331,24343]]],["thing",[7,7,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,2,2,1,3,[[982,1,1,1,2],[990,1,1,2,3]]],[42,2,2,3,5,[[997,1,1,3,4],[1005,1,1,4,5]]],[49,1,1,5,6,[[1105,1,1,5,6]]],[60,1,1,6,7,[[1158,1,1,6,7]]]],[24609,25405,25710,26047,26465,29434,30530]]]]},{"k":"G1521","v":[["*",[10,10,[[41,3,3,0,3,[[974,1,1,0,1],[986,1,1,1,2],[994,1,1,2,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]],[43,5,5,4,9,[[1024,1,1,4,5],[1026,1,1,5,6],[1038,3,3,6,9]]],[57,1,1,9,10,[[1133,1,1,9,10]]]],[25000,25574,25918,26801,27161,27224,27692,27693,27701,29969]]],["brought",[4,4,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,3,3,1,4,[[1026,1,1,1,2],[1038,2,2,2,4]]]],[25918,27224,27692,27693]]],["in",[5,5,[[41,2,2,0,2,[[974,1,1,0,1],[986,1,1,1,2]]],[42,1,1,2,3,[[1014,1,1,2,3]]],[43,1,1,3,4,[[1024,1,1,3,4]]],[57,1,1,4,5,[[1133,1,1,4,5]]]],[25000,25574,26801,27161,29969]]],["led",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27701]]]]},{"k":"G1522","v":[["*",[5,5,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]],[45,1,1,3,4,[[1075,1,1,3,4]]],[57,1,1,4,5,[[1137,1,1,4,5]]]],[23289,24906,27290,28699,30037]]],["hear",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28699]]],["heard",[4,4,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]],[57,1,1,3,4,[[1137,1,1,3,4]]]],[23289,24906,27290,30037]]]]},{"k":"G1523","v":[["receive",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28915]]]]},{"k":"G1524","v":[["*",[4,4,[[43,3,3,0,3,[[1020,1,1,0,1],[1038,2,2,1,3]]],[57,1,1,3,4,[[1141,1,1,3,4]]]],[26999,27682,27690,30111]]],["entered",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27690]]],["go",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[26999]]],["in",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27682]]],["went",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30111]]]]},{"k":"G1525","v":[["*",[198,186,[[39,36,33,0,33,[[933,1,1,0,1],[934,1,1,1,2],[935,3,2,2,4],[936,2,2,4,6],[937,1,1,6,7],[938,3,3,7,10],[940,3,3,10,13],[943,1,1,13,14],[945,1,1,14,15],[946,3,3,15,18],[947,3,3,18,21],[949,2,2,21,23],[950,2,2,23,25],[951,3,1,25,26],[952,1,1,26,27],[953,3,3,27,30],[954,2,2,30,32],[955,1,1,32,33]]],[40,32,31,33,64,[[957,2,2,33,35],[958,2,2,35,37],[959,2,2,37,39],[961,3,3,39,42],[962,3,3,42,45],[963,2,2,45,47],[964,1,1,47,48],[965,5,5,48,53],[966,5,4,53,57],[967,2,2,57,59],[969,1,1,59,60],[970,2,2,60,62],[971,1,1,62,63],[972,1,1,63,64]]],[41,52,48,64,112,[[973,3,3,64,67],[976,2,2,67,69],[978,2,2,69,71],[979,5,5,71,76],[980,6,5,76,81],[981,4,4,81,85],[982,4,4,85,89],[983,4,3,89,92],[985,2,1,92,93],[986,1,1,93,94],[987,1,1,94,95],[989,3,3,95,98],[990,4,3,98,101],[991,3,3,101,104],[993,1,1,104,105],[994,4,4,105,109],[996,3,3,109,112]]],[42,15,14,112,126,[[999,2,2,112,114],[1000,1,1,114,115],[1006,4,3,115,118],[1009,1,1,118,119],[1014,3,3,119,122],[1015,1,1,122,123],[1016,3,3,123,126]]],[43,33,33,126,159,[[1018,2,2,126,128],[1020,1,1,128,129],[1022,3,3,129,132],[1026,3,3,132,135],[1027,4,4,135,139],[1028,4,4,139,143],[1030,1,1,143,144],[1031,3,3,144,147],[1033,2,2,147,149],[1034,1,1,149,150],[1035,1,1,150,151],[1036,2,2,151,153],[1037,1,1,153,154],[1038,1,1,154,155],[1040,2,2,155,157],[1042,1,1,157,158],[1045,1,1,158,159]]],[44,2,2,159,161,[[1050,1,1,159,160],[1056,1,1,160,161]]],[45,2,2,161,163,[[1075,2,2,161,163]]],[57,17,15,163,178,[[1135,3,3,163,166],[1136,8,6,166,172],[1138,2,2,172,174],[1141,3,3,174,177],[1142,1,1,177,178]]],[58,3,2,178,180,[[1147,2,1,178,179],[1150,1,1,179,180]]],[62,1,1,180,181,[[1164,1,1,180,181]]],[65,5,5,181,186,[[1169,1,1,181,182],[1177,1,1,182,183],[1181,1,1,183,184],[1187,1,1,184,185],[1188,1,1,185,186]]]],[23254,23288,23329,23337,23350,23353,23404,23422,23428,23429,23493,23518,23534,23644,23725,23730,23735,23736,23779,23785,23786,23836,23838,23883,23884,23931,23995,24018,24029,24031,24095,24112,24182,24236,24260,24261,24286,24289,24315,24376,24377,24403,24417,24429,24432,24480,24487,24526,24563,24566,24581,24583,24585,24603,24611,24612,24613,24651,24655,24732,24768,24792,24869,24878,24902,24921,24933,25079,25101,25150,25152,25196,25201,25231,25239,25240,25275,25277,25278,25286,25296,25305,25335,25347,25353,25368,25371,25373,25401,25431,25442,25457,25542,25576,25616,25658,25663,25678,25705,25712,25713,25732,25738,25776,25847,25867,25874,25904,25910,25994,26017,26020,26124,26125,26194,26482,26483,26490,26657,26786,26813,26818,26834,26872,26873,26875,26936,26944,27004,27066,27069,27080,27222,27228,27233,27262,27283,27284,27286,27310,27315,27319,27327,27376,27415,27434,27436,27498,27523,27525,27576,27593,27615,27655,27672,27750,27767,27819,27907,28059,28234,28701,28702,30006,30013,30014,30015,30017,30019,30020,30024,30025,30063,30064,30117,30129,30130,30138,30295,30358,30652,30766,30883,30954,31080,31094]]],["+",[3,3,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,1,1,1,2,[[1016,1,1,1,2]]],[57,1,1,2,3,[[1136,1,1,2,3]]]],[25457,26872,30020]]],["Enter",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23329]]],["arose",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25347]]],["came",[3,3,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,2,2,1,3,[[1031,1,1,1,2],[1040,1,1,2,3]]]],[25296,27434,27767]]],["camest",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23884]]],["come",[10,10,[[39,4,4,0,4,[[936,1,1,0,1],[938,1,1,1,2],[945,1,1,2,3],[949,1,1,3,4]]],[40,1,1,4,5,[[965,1,1,4,5]]],[41,2,2,5,7,[[980,1,1,5,6],[989,1,1,6,7]]],[43,2,2,7,9,[[1028,1,1,7,8],[1033,1,1,8,9]]],[58,1,1,9,10,[[1147,1,1,9,10]]]],[23353,23429,23725,23836,24566,25286,25658,27327,27498,30295]]],["cometh",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30138]]],["enter",[54,53,[[39,15,15,0,15,[[933,1,1,0,1],[934,1,1,1,2],[935,1,1,2,3],[938,2,2,3,5],[940,1,1,5,6],[946,3,3,6,9],[947,3,3,9,12],[953,2,2,12,14],[954,1,1,14,15]]],[40,14,14,15,29,[[957,1,1,15,16],[959,1,1,16,17],[961,1,1,17,18],[962,1,1,18,19],[965,4,4,19,23],[966,4,4,23,27],[969,1,1,27,28],[970,1,1,28,29]]],[41,13,13,29,42,[[979,1,1,29,30],[980,1,1,30,31],[981,1,1,31,32],[982,3,3,32,35],[990,3,3,35,38],[993,1,1,38,39],[994,2,2,39,41],[996,1,1,41,42]]],[42,2,2,42,44,[[999,2,2,42,44]]],[43,1,1,44,45,[[1031,1,1,44,45]]],[57,7,6,45,51,[[1135,2,2,45,47],[1136,5,4,47,51]]],[65,2,2,51,53,[[1181,1,1,51,52],[1187,1,1,52,53]]]],[23254,23288,23337,23422,23428,23518,23730,23735,23736,23779,23785,23786,24029,24031,24095,24260,24315,24376,24417,24563,24581,24583,24585,24603,24611,24612,24613,24732,24792,25201,25277,25305,25368,25371,25373,25705,25712,25713,25847,25904,25910,26017,26124,26125,27436,30006,30013,30017,30019,30020,30025,30954,31080]]],["entered",[47,47,[[39,3,3,0,3,[[936,1,1,0,1],[940,1,1,1,2],[952,1,1,2,3]]],[40,7,7,3,10,[[957,1,1,3,4],[958,1,1,4,5],[959,1,1,5,6],[961,1,1,6,7],[963,2,2,7,9],[967,1,1,9,10]]],[41,15,15,10,25,[[973,1,1,10,11],[976,1,1,11,12],[978,1,1,12,13],[979,2,2,13,15],[980,2,2,15,17],[981,2,2,17,19],[982,1,1,19,20],[989,2,2,20,22],[991,1,1,22,23],[994,2,2,23,25]]],[42,4,4,25,29,[[1000,1,1,25,26],[1009,1,1,26,27],[1014,2,2,27,29]]],[43,11,11,29,40,[[1020,1,1,29,30],[1022,1,1,30,31],[1026,1,1,31,32],[1027,1,1,32,33],[1028,2,2,33,35],[1033,1,1,35,36],[1035,1,1,36,37],[1038,1,1,37,38],[1040,1,1,38,39],[1042,1,1,39,40]]],[44,1,1,40,41,[[1050,1,1,40,41]]],[57,3,3,41,44,[[1136,1,1,41,42],[1138,1,1,42,43],[1141,1,1,43,44]]],[58,1,1,44,45,[[1150,1,1,44,45]]],[62,1,1,45,46,[[1164,1,1,45,46]]],[65,1,1,46,47,[[1177,1,1,46,47]]]],[23350,23493,23995,24236,24261,24289,24377,24480,24487,24651,24933,25101,25152,25196,25239,25275,25278,25335,25353,25401,25663,25678,25732,25867,25874,26194,26657,26786,26818,27004,27080,27233,27283,27315,27319,27523,27576,27672,27750,27819,28059,30024,30064,30129,30358,30652,30883]]],["entereth",[3,3,[[42,1,1,0,1,[[1006,1,1,0,1]]],[57,2,2,1,3,[[1138,1,1,1,2],[1141,1,1,2,3]]]],[26482,30063,30130]]],["entering",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[972,1,1,1,2]]],[57,1,1,2,3,[[1136,1,1,2,3]]]],[23931,24878,30015]]],["go",[4,4,[[40,2,2,0,2,[[964,1,1,0,1],[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[43,1,1,3,4,[[1026,1,1,3,4]]]],[24526,24613,25713,27222]]],["goeth",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23644]]],["gone",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25738]]],["in",[48,45,[[39,7,6,0,6,[[935,1,1,0,1],[937,1,1,1,2],[940,1,1,2,3],[950,1,1,3,4],[951,2,1,4,5],[953,1,1,5,6]]],[40,5,5,6,11,[[961,1,1,6,7],[962,2,2,7,9],[970,1,1,9,10],[971,1,1,10,11]]],[41,11,10,11,21,[[973,1,1,11,12],[979,1,1,12,13],[980,1,1,13,14],[983,2,2,14,16],[985,2,1,16,17],[986,1,1,17,18],[987,1,1,18,19],[996,2,2,19,21]]],[42,4,3,21,24,[[1006,3,2,21,23],[1016,1,1,23,24]]],[43,13,13,24,37,[[1018,2,2,24,26],[1022,2,2,26,28],[1026,1,1,28,29],[1027,3,3,29,32],[1028,1,1,32,33],[1034,1,1,33,34],[1036,1,1,34,35],[1037,1,1,35,36],[1045,1,1,36,37]]],[44,1,1,37,38,[[1056,1,1,37,38]]],[45,2,2,38,40,[[1075,2,2,38,40]]],[57,2,2,40,42,[[1135,1,1,40,41],[1141,1,1,41,42]]],[58,1,1,42,43,[[1147,1,1,42,43]]],[65,2,2,43,45,[[1169,1,1,43,44],[1188,1,1,44,45]]]],[23329,23404,23534,23883,23931,24018,24403,24429,24432,24768,24869,24921,25240,25296,25431,25457,25542,25576,25616,25994,26020,26483,26490,26875,26936,26944,27066,27069,27228,27262,27284,27286,27310,27525,27615,27655,27907,28234,28701,28702,30014,30117,30295,30766,31094]]],["went",[17,17,[[39,3,3,0,3,[[949,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[958,1,1,3,4],[967,1,1,4,5]]],[41,6,6,5,11,[[973,1,1,5,6],[976,1,1,6,7],[978,1,1,7,8],[979,1,1,8,9],[983,1,1,9,10],[991,1,1,10,11]]],[42,3,3,11,14,[[1014,1,1,11,12],[1015,1,1,12,13],[1016,1,1,13,14]]],[43,3,3,14,17,[[1030,1,1,14,15],[1031,1,1,15,16],[1036,1,1,16,17]]]],[23838,24112,24182,24286,24655,24902,25079,25150,25231,25442,25776,26813,26834,26873,27376,27415,27593]]]]},{"k":"G1526","v":[["*",[162,146,[[39,23,20,0,20,[[930,1,1,0,1],[935,3,3,1,4],[938,1,1,4,5],[939,1,1,5,6],[940,2,2,6,8],[941,4,3,8,11],[943,1,1,11,12],[944,1,1,12,13],[945,1,1,13,14],[946,1,1,14,15],[947,4,2,15,17],[948,1,1,17,18],[950,2,2,18,20]]],[40,9,9,20,29,[[960,5,5,20,25],[962,1,1,25,26],[965,1,1,26,27],[966,1,1,27,28],[968,1,1,28,29]]],[41,19,17,29,46,[[979,3,3,29,32],[980,4,4,32,36],[981,2,2,36,38],[983,1,1,38,39],[984,1,1,39,40],[985,3,2,40,42],[988,1,1,42,43],[990,1,1,43,44],[992,2,1,44,45],[993,1,1,45,46]]],[42,14,13,46,59,[[1000,1,1,46,47],[1001,1,1,47,48],[1002,2,1,48,49],[1003,1,1,49,50],[1004,1,1,50,51],[1006,2,2,51,53],[1007,1,1,53,54],[1010,1,1,54,55],[1013,4,4,55,59]]],[43,13,13,59,72,[[1019,2,2,59,61],[1021,1,1,61,62],[1022,1,1,62,63],[1030,1,1,63,64],[1033,2,2,64,66],[1036,2,2,66,68],[1038,2,2,68,70],[1040,1,1,70,71],[1041,1,1,71,72]]],[44,10,10,72,82,[[1046,1,1,72,73],[1047,1,1,73,74],[1053,1,1,74,75],[1054,2,2,75,77],[1058,3,3,77,80],[1060,1,1,80,81],[1061,1,1,81,82]]],[45,11,10,82,92,[[1062,1,1,82,83],[1064,2,2,83,85],[1069,2,1,85,86],[1071,1,1,86,87],[1073,3,3,87,90],[1075,2,2,90,92]]],[46,4,2,92,94,[[1088,4,2,92,94]]],[47,5,4,94,98,[[1091,1,1,94,95],[1093,3,2,95,97],[1094,1,1,97,98]]],[48,1,1,98,99,[[1101,1,1,98,99]]],[50,1,1,99,100,[[1108,1,1,99,100]]],[53,4,3,100,103,[[1123,1,1,100,101],[1124,3,2,101,103]]],[54,1,1,103,104,[[1127,1,1,103,104]]],[55,2,2,104,106,[[1129,1,1,104,105],[1131,1,1,105,106]]],[57,5,5,106,111,[[1133,2,2,106,108],[1139,2,2,108,110],[1143,1,1,110,111]]],[60,2,2,111,113,[[1157,1,1,111,112],[1158,1,1,112,113]]],[61,7,5,113,118,[[1160,1,1,113,114],[1162,1,1,114,115],[1163,5,3,115,118]]],[64,3,3,118,121,[[1166,3,3,118,121]]],[65,28,25,121,146,[[1167,3,2,121,123],[1168,2,2,123,125],[1169,2,2,125,127],[1170,2,2,127,129],[1171,2,2,129,131],[1173,3,3,131,134],[1175,1,1,134,135],[1177,1,1,135,136],[1180,4,2,136,138],[1182,2,2,138,140],[1183,4,4,140,144],[1185,1,1,144,145],[1187,1,1,145,146]]]],[23187,23329,23330,23331,23447,23467,23494,23537,23577,23578,23595,23647,23700,23726,23747,23768,23774,23808,23886,23902,24338,24339,24340,24341,24343,24410,24539,24596,24698,25220,25226,25227,25257,25259,25260,25266,25314,25328,25412,25497,25532,25548,25628,25697,25815,25848,26191,26249,26321,26377,26391,26489,26493,26532,26670,26768,26770,26773,26775,26956,26962,27035,27084,27393,27500,27521,27611,27623,27684,27687,27755,27780,27962,27976,28130,28159,28162,28267,28269,28272,28330,28343,28374,28418,28430,28532,28585,28638,28639,28640,28700,28715,29011,29012,29064,29109,29112,29155,29320,29497,29787,29789,29790,29859,29902,29932,29973,29977,30085,30087,30185,30517,30529,30569,30608,30627,30631,30632,30684,30688,30691,30716,30717,30719,30726,30750,30755,30773,30779,30785,30787,30823,30824,30825,30859,30876,30930,30931,30960,30968,30984,30985,30987,30990,31026,31058]]],["+",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]]],[23577,27780]]],["Are",[6,4,[[42,1,1,0,1,[[1007,1,1,0,1]]],[46,4,2,1,3,[[1088,4,2,1,3]]],[57,1,1,3,4,[[1133,1,1,3,4]]]],[26532,29011,29012,29977]]],["agree",[1,1,[[61,1,1,0,1,[[1163,1,1,0,1]]]],[30632]]],["are",[127,118,[[39,16,15,0,15,[[930,1,1,0,1],[935,1,1,1,2],[938,1,1,2,3],[939,1,1,3,4],[940,2,2,4,6],[941,3,3,6,9],[945,1,1,9,10],[946,1,1,10,11],[947,3,2,11,13],[950,2,2,13,15]]],[40,7,7,15,22,[[960,4,4,15,19],[962,1,1,19,20],[966,1,1,20,21],[968,1,1,21,22]]],[41,15,13,22,35,[[979,3,3,22,25],[980,4,4,25,29],[983,1,1,29,30],[984,1,1,30,31],[985,3,2,31,33],[988,1,1,33,34],[992,2,1,34,35]]],[42,12,12,35,47,[[1000,1,1,35,36],[1001,1,1,36,37],[1002,1,1,37,38],[1003,1,1,38,39],[1004,1,1,39,40],[1006,2,2,40,42],[1010,1,1,42,43],[1013,4,4,43,47]]],[43,8,8,47,55,[[1019,2,2,47,49],[1022,1,1,49,50],[1030,1,1,50,51],[1033,1,1,51,52],[1036,1,1,52,53],[1038,1,1,53,54],[1040,1,1,54,55]]],[44,10,10,55,65,[[1046,1,1,55,56],[1047,1,1,56,57],[1053,1,1,57,58],[1054,2,2,58,60],[1058,3,3,60,63],[1060,1,1,63,64],[1061,1,1,64,65]]],[45,9,9,65,74,[[1062,1,1,65,66],[1064,2,2,66,68],[1071,1,1,68,69],[1073,3,3,69,72],[1075,2,2,72,74]]],[47,4,3,74,77,[[1093,3,2,74,76],[1094,1,1,76,77]]],[48,1,1,77,78,[[1101,1,1,77,78]]],[50,1,1,78,79,[[1108,1,1,78,79]]],[53,4,3,79,82,[[1123,1,1,79,80],[1124,3,2,80,82]]],[54,1,1,82,83,[[1127,1,1,82,83]]],[55,2,2,83,85,[[1129,1,1,83,84],[1131,1,1,84,85]]],[57,1,1,85,86,[[1133,1,1,85,86]]],[60,2,2,86,88,[[1157,1,1,86,87],[1158,1,1,87,88]]],[61,5,4,88,92,[[1162,1,1,88,89],[1163,4,3,89,92]]],[64,2,2,92,94,[[1166,2,2,92,94]]],[65,27,24,94,118,[[1167,3,2,94,96],[1168,2,2,96,98],[1169,2,2,98,100],[1170,2,2,100,102],[1171,2,2,102,104],[1173,3,3,104,107],[1177,1,1,107,108],[1180,4,2,108,110],[1182,2,2,110,112],[1183,4,4,112,116],[1185,1,1,116,117],[1187,1,1,117,118]]]],[23187,23331,23447,23467,23494,23537,23577,23578,23595,23726,23747,23768,23774,23886,23902,24338,24339,24341,24343,24410,24596,24698,25220,25226,25227,25257,25259,25260,25266,25412,25497,25532,25548,25628,25815,26191,26249,26321,26377,26391,26489,26493,26670,26768,26770,26773,26775,26956,26962,27084,27393,27500,27623,27684,27755,27962,27976,28130,28159,28162,28267,28269,28272,28330,28343,28374,28418,28430,28585,28638,28639,28640,28700,28715,29109,29112,29155,29320,29497,29787,29789,29790,29859,29902,29932,29973,30517,30529,30608,30627,30631,30632,30684,30688,30716,30717,30719,30726,30750,30755,30773,30779,30785,30787,30823,30824,30825,30876,30930,30931,30960,30968,30984,30985,30987,30990,31026,31058]]],["be",[14,13,[[39,6,6,0,6,[[935,2,2,0,2],[943,1,1,2,3],[944,1,1,3,4],[947,1,1,4,5],[948,1,1,5,6]]],[40,1,1,6,7,[[965,1,1,6,7]]],[41,2,2,7,9,[[981,1,1,7,8],[993,1,1,8,9]]],[43,1,1,9,10,[[1036,1,1,9,10]]],[45,2,1,10,11,[[1069,2,1,10,11]]],[47,1,1,11,12,[[1091,1,1,11,12]]],[64,1,1,12,13,[[1166,1,1,12,13]]]],[23329,23330,23647,23700,23774,23808,24539,25328,25848,27611,28532,29064,30691]]],["have",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[25314,27687]]],["is",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30859]]],["so",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24340]]],["were",[8,8,[[41,1,1,0,1,[[990,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[43,2,2,2,4,[[1021,1,1,2,3],[1033,1,1,3,4]]],[57,3,3,4,7,[[1139,2,2,4,6],[1143,1,1,6,7]]],[61,1,1,7,8,[[1160,1,1,7,8]]]],[25697,26321,27035,27521,30085,30087,30185,30569]]]]},{"k":"G1527","v":[["one",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]]],[24773,26390]]]]},{"k":"G1528","v":[["+",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27282]]]]},{"k":"G1529","v":[["*",[5,5,[[43,1,1,0,1,[[1030,1,1,0,1]]],[51,2,2,1,3,[[1111,1,1,1,2],[1112,1,1,2,3]]],[57,1,1,3,4,[[1142,1,1,3,4]]],[60,1,1,4,5,[[1156,1,1,4,5]]]],[27386,29569,29571,30152,30490]]],["+",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[27386,30152]]],["entrance",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30490]]],["in",[2,2,[[51,2,2,0,2,[[1111,1,1,0,1],[1112,1,1,1,2]]]],[29569,29571]]]]},{"k":"G1530","v":[["in",[2,2,[[43,2,2,0,2,[[1031,1,1,0,1],[1033,1,1,1,2]]]],[27428,27512]]]]},{"k":"G1531","v":[["*",[17,17,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,8,8,1,9,[[957,1,1,1,2],[960,1,1,2,3],[961,1,1,3,4],[962,1,1,4,5],[963,3,3,5,8],[967,1,1,8,9]]],[41,4,4,9,13,[[980,1,1,9,10],[983,1,1,10,11],[991,1,1,11,12],[994,1,1,12,13]]],[43,4,4,13,17,[[1020,1,1,13,14],[1025,1,1,14,15],[1026,1,1,15,16],[1045,1,1,16,17]]]],[23650,24236,24342,24404,24463,24478,24481,24482,24642,25261,25438,25761,25874,26998,27179,27244,27929]]],["entered",[3,3,[[40,2,2,0,2,[[962,1,1,0,1],[967,1,1,1,2]]],[43,1,1,2,3,[[1020,1,1,2,3]]]],[24463,24642,26998]]],["entereth",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[963,2,2,1,3]]]],[23650,24481,24482]]],["entering",[2,2,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,1,1,1,2,[[991,1,1,1,2]]]],[24478,25761]]],["in",[7,7,[[40,2,2,0,2,[[960,1,1,0,1],[961,1,1,1,2]]],[41,3,3,2,5,[[980,1,1,2,3],[983,1,1,3,4],[994,1,1,4,5]]],[43,2,2,5,7,[[1026,1,1,5,6],[1045,1,1,6,7]]]],[24342,24404,25261,25438,25874,27244,27929]]],["into",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27179]]],["went",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24236]]]]},{"k":"G1532","v":[["in",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27351]]]]},{"k":"G1533","v":[["*",[7,7,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,3,3,1,4,[[977,2,2,1,3],[983,1,1,3,4]]],[43,1,1,4,5,[[1034,1,1,4,5]]],[53,1,1,5,6,[[1124,1,1,5,6]]],[57,1,1,6,7,[[1145,1,1,6,7]]]],[23295,25125,25126,25409,27543,29795,30252]]],["+",[2,2,[[41,2,2,0,2,[[977,2,2,0,2]]]],[25125,25126]]],["bringest",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27543]]],["brought",[2,2,[[53,1,1,0,1,[[1124,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[29795,30252]]],["lead",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23295,25409]]]]},{"k":"G1534","v":[["*",[16,15,[[40,4,3,0,3,[[960,3,2,0,2],[964,1,1,2,3]]],[41,1,1,3,4,[[980,1,1,3,4]]],[42,3,3,4,7,[[1009,1,1,4,5],[1015,1,1,5,6],[1016,1,1,6,7]]],[45,4,4,7,11,[[1073,1,1,7,8],[1076,3,3,8,11]]],[53,2,2,11,13,[[1120,1,1,11,12],[1121,1,1,12,13]]],[57,1,1,13,14,[[1144,1,1,13,14]]],[58,1,1,14,15,[[1146,1,1,14,15]]]],[24340,24351,24525,25257,26635,26852,26894,28662,28723,28725,28742,29729,29741,30221,30281]]],["Furthermore",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30221]]],["Then",[4,4,[[42,2,2,0,2,[[1015,1,1,0,1],[1016,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]],[58,1,1,3,4,[[1146,1,1,3,4]]]],[26852,26894,28742,30281]]],["after",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24351]]],["afterward",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24340]]],["that",[2,2,[[40,1,1,0,1,[[964,1,1,0,1]]],[42,1,1,1,2,[[1009,1,1,1,2]]]],[24525,26635]]],["then",[7,7,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[45,3,3,2,5,[[1073,1,1,2,3],[1076,2,2,3,5]]],[53,2,2,5,7,[[1120,1,1,5,6],[1121,1,1,6,7]]]],[24351,25257,28662,28723,28725,29729,29741]]]]},{"k":"G1535","v":[["*",[64,29,[[44,4,3,0,3,[[1057,4,3,0,3]]],[45,26,9,3,12,[[1064,8,1,3,4],[1069,2,1,4,5],[1071,3,1,5,6],[1073,6,2,6,8],[1074,3,1,8,9],[1075,3,2,9,11],[1076,1,1,11,12]]],[46,14,7,12,19,[[1078,2,1,12,13],[1082,6,3,13,16],[1085,2,1,16,17],[1089,4,2,17,19]]],[48,2,1,19,20,[[1102,2,1,19,20]]],[49,6,3,20,23,[[1103,6,3,20,23]]],[50,6,2,23,25,[[1107,6,2,23,25]]],[51,2,1,25,26,[[1115,2,1,25,26]]],[52,2,1,26,27,[[1117,2,1,26,27]]],[59,2,2,27,29,[[1152,2,2,27,29]]]],[28251,28252,28253,28432,28532,28598,28647,28660,28673,28685,28705,28729,28806,28886,28887,28890,28955,29024,29025,29345,29379,29381,29388,29481,29485,29631,29676,30412,30413]]],["+",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29676]]],["If",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28705]]],["Or",[3,3,[[44,2,2,0,2,[[1057,2,2,0,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]]],[28252,28253,30413]]],["Whether",[3,3,[[45,2,2,0,2,[[1064,1,1,0,1],[1071,1,1,1,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]]],[28432,28598,28955]]],["else",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29388]]],["or",[27,17,[[44,1,1,0,1,[[1057,1,1,0,1]]],[45,14,6,1,7,[[1064,7,1,1,2],[1069,1,1,2,3],[1071,2,1,3,4],[1073,3,2,4,6],[1075,1,1,6,7]]],[46,4,4,7,11,[[1082,2,2,7,9],[1085,1,1,9,10],[1089,1,1,10,11]]],[48,1,1,11,12,[[1102,1,1,11,12]]],[49,2,2,12,14,[[1103,2,2,12,14]]],[50,4,2,14,16,[[1107,4,2,14,16]]],[51,1,1,16,17,[[1115,1,1,16,17]]]],[28252,28432,28532,28598,28647,28660,28685,28886,28887,28955,29025,29345,29379,29381,29481,29485,29631]]],["whether",[28,22,[[44,1,1,0,1,[[1057,1,1,0,1]]],[45,9,6,1,7,[[1069,1,1,1,2],[1073,3,2,2,4],[1074,3,1,4,5],[1075,1,1,5,6],[1076,1,1,6,7]]],[46,9,6,7,13,[[1078,2,1,7,8],[1082,4,3,8,11],[1089,3,2,11,13]]],[48,1,1,13,14,[[1102,1,1,13,14]]],[49,3,3,14,17,[[1103,3,3,14,17]]],[50,2,2,17,19,[[1107,2,2,17,19]]],[51,1,1,19,20,[[1115,1,1,19,20]]],[52,1,1,20,21,[[1117,1,1,20,21]]],[59,1,1,21,22,[[1152,1,1,21,22]]]],[28251,28532,28647,28660,28673,28685,28729,28806,28886,28887,28890,29024,29025,29345,29379,29381,29388,29481,29485,29631,29676,30412]]]]},{"k":"G1536","v":[["*",[61,50,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,5,5,1,6,[[960,1,1,1,2],[963,1,1,2,3],[964,1,1,3,4],[965,2,2,4,6]]],[41,1,1,6,7,[[986,1,1,6,7]]],[43,3,3,7,10,[[1041,2,2,7,9],[1042,1,1,9,10]]],[44,2,2,10,12,[[1053,1,1,10,11],[1058,1,1,11,12]]],[45,9,9,12,21,[[1062,1,1,12,13],[1064,5,5,13,18],[1068,1,1,18,19],[1075,1,1,19,20],[1077,1,1,20,21]]],[46,9,5,21,26,[[1079,1,1,21,22],[1082,1,1,22,23],[1084,1,1,23,24],[1087,1,1,24,25],[1088,5,1,25,26]]],[47,1,1,26,27,[[1091,1,1,26,27]]],[48,1,1,27,28,[[1100,1,1,27,28]]],[49,8,4,28,32,[[1104,4,1,28,29],[1105,2,2,29,31],[1106,2,1,31,32]]],[52,1,1,32,33,[[1118,1,1,32,33]]],[53,4,4,33,37,[[1119,1,1,33,34],[1121,1,1,34,35],[1123,1,1,35,36],[1124,1,1,36,37]]],[55,1,1,37,38,[[1129,1,1,37,38]]],[58,3,3,38,41,[[1146,2,2,38,40],[1148,1,1,40,41]]],[59,3,2,41,43,[[1153,1,1,41,42],[1154,2,1,42,43]]],[62,1,1,43,44,[[1164,1,1,43,44]]],[65,8,6,44,50,[[1177,2,1,44,45],[1179,3,2,45,47],[1180,2,2,47,49],[1186,1,1,49,50]]]],[23696,24346,24479,24523,24560,24573,25579,27788,27789,27801,28125,28275,28379,28422,28424,28425,28427,28428,28499,28715,28798,28834,28894,28930,28978,29009,29066,29301,29392,29425,29436,29450,29688,29706,29732,29779,29791,29898,30289,30292,30321,30425,30457,30655,30877,30917,30918,30935,30937,31053]]],["+",[10,10,[[40,2,2,0,2,[[964,1,1,0,1],[965,1,1,1,2]]],[43,3,3,2,5,[[1041,2,2,2,4],[1042,1,1,4,5]]],[45,1,1,5,6,[[1062,1,1,5,6]]],[46,2,2,6,8,[[1079,1,1,6,7],[1084,1,1,7,8]]],[49,1,1,8,9,[[1104,1,1,8,9]]],[62,1,1,9,10,[[1164,1,1,9,10]]]],[24523,24560,27788,27789,27801,28379,28834,28930,29392,30655]]],["any",[17,14,[[39,1,1,0,1,[[944,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]],[44,1,1,2,3,[[1058,1,1,2,3]]],[45,1,1,3,4,[[1068,1,1,3,4]]],[47,1,1,4,5,[[1091,1,1,4,5]]],[49,6,3,5,8,[[1104,3,1,5,6],[1105,1,1,6,7],[1106,2,1,7,8]]],[52,1,1,8,9,[[1118,1,1,8,9]]],[53,2,2,9,11,[[1119,1,1,9,10],[1123,1,1,10,11]]],[55,1,1,11,12,[[1129,1,1,11,12]]],[58,1,1,12,13,[[1146,1,1,12,13]]],[59,1,1,13,14,[[1153,1,1,13,14]]]],[23696,25579,28275,28499,29066,29392,29425,29450,29688,29706,29779,29898,30289,30425]]],["man",[26,20,[[40,3,3,0,3,[[960,1,1,0,1],[963,1,1,1,2],[965,1,1,2,3]]],[44,1,1,3,4,[[1053,1,1,3,4]]],[45,5,5,4,9,[[1064,3,3,4,7],[1075,1,1,7,8],[1077,1,1,8,9]]],[46,7,3,9,12,[[1082,1,1,9,10],[1087,1,1,10,11],[1088,5,1,11,12]]],[53,2,2,12,14,[[1121,1,1,12,13],[1124,1,1,13,14]]],[58,2,2,14,16,[[1146,1,1,14,15],[1148,1,1,15,16]]],[59,2,1,16,17,[[1154,2,1,16,17]]],[65,4,3,17,20,[[1177,2,1,17,18],[1179,1,1,18,19],[1180,1,1,19,20]]]],[24346,24479,24573,28125,28422,28427,28428,28715,28798,28894,28978,29009,29732,29791,30292,30321,30457,30877,30917,30935]]],["man's",[2,2,[[45,2,2,0,2,[[1064,2,2,0,2]]]],[28424,28425]]],["that",[3,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[65,2,1,1,2,[[1179,2,1,1,2]]]],[29301,30918]]],["thing",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29436]]],["whosoever",[2,2,[[65,2,2,0,2,[[1180,1,1,0,1],[1186,1,1,1,2]]]],[30937,31053]]]]},{"k":"G1537","v":[["*",[917,759,[[39,80,68,0,68,[[929,7,6,0,6],[930,2,2,6,8],[931,2,2,8,10],[933,1,1,10,11],[934,1,1,11,12],[935,3,2,12,14],[936,1,1,14,15],[938,1,1,15,16],[940,8,6,16,22],[941,4,4,22,26],[943,5,4,26,30],[944,1,1,30,31],[945,2,2,31,33],[946,1,1,33,34],[947,2,2,34,36],[948,5,3,36,39],[949,7,5,39,44],[950,2,2,44,46],[951,3,2,46,48],[952,2,2,48,50],[953,6,5,50,55],[954,7,7,55,62],[955,6,5,62,67],[956,1,1,67,68]]],[40,66,54,68,122,[[957,4,4,68,72],[961,4,3,72,75],[962,4,4,75,79],[963,6,6,79,85],[965,5,5,85,90],[966,5,3,90,93],[967,7,6,93,99],[968,12,5,99,104],[969,3,3,104,107],[970,9,9,107,116],[971,4,3,116,119],[972,3,3,119,122]]],[41,90,74,122,196,[[973,10,8,122,130],[974,4,3,130,133],[975,2,2,133,135],[976,3,3,135,138],[977,2,2,138,140],[978,7,3,140,143],[980,2,1,143,144],[981,2,2,144,146],[982,7,4,146,150],[983,9,9,150,159],[984,5,5,159,164],[986,2,2,164,166],[987,2,1,166,167],[988,2,2,167,169],[989,4,3,169,172],[990,1,1,172,173],[991,1,1,173,174],[992,6,5,174,179],[993,4,3,179,182],[994,6,6,182,188],[995,5,4,188,192],[996,4,4,192,196]]],[42,161,133,196,329,[[997,11,8,196,204],[998,3,2,204,206],[999,13,9,206,215],[1000,10,10,215,225],[1001,1,1,225,226],[1002,25,21,226,247],[1003,16,13,247,260],[1004,12,7,260,267],[1005,6,6,267,273],[1006,7,7,273,280],[1007,6,6,280,286],[1008,14,12,286,298],[1009,4,4,298,302],[1011,3,1,302,303],[1012,5,5,303,308],[1013,8,5,308,313],[1014,8,7,313,320],[1015,3,3,320,323],[1016,4,4,323,327],[1017,2,2,327,329]]],[43,90,87,329,416,[[1018,3,3,329,332],[1019,4,4,332,336],[1020,4,4,336,340],[1021,3,3,340,343],[1022,2,2,343,345],[1023,2,2,345,347],[1024,8,7,347,354],[1025,2,2,354,356],[1026,1,1,356,357],[1027,4,4,357,361],[1028,6,5,361,366],[1029,4,4,366,370],[1030,5,5,370,375],[1031,1,1,375,376],[1032,7,7,376,383],[1033,1,1,383,384],[1034,6,6,384,390],[1035,2,2,390,392],[1036,4,4,392,396],[1037,1,1,396,397],[1038,1,1,397,398],[1039,3,3,398,401],[1040,3,3,401,404],[1041,2,2,404,406],[1043,3,3,406,409],[1044,5,4,409,413],[1045,3,3,413,416]]],[44,61,50,416,466,[[1046,4,3,416,419],[1047,5,4,419,423],[1048,3,3,423,426],[1049,7,5,426,431],[1050,3,2,431,433],[1051,4,4,433,437],[1052,2,2,437,439],[1053,2,1,439,440],[1054,11,8,440,448],[1055,5,5,448,453],[1056,8,7,453,460],[1057,1,1,460,461],[1058,2,2,461,463],[1059,2,1,463,464],[1061,2,2,464,466]]],[45,35,27,466,493,[[1062,1,1,466,467],[1063,1,1,467,468],[1066,3,3,468,471],[1068,2,2,471,473],[1069,1,1,473,474],[1070,5,4,474,478],[1071,2,2,478,480],[1072,6,3,480,483],[1073,5,3,483,486],[1074,4,3,486,489],[1076,5,4,489,493]]],[46,29,23,493,516,[[1078,2,2,493,495],[1079,4,3,495,498],[1080,3,2,498,500],[1081,2,2,500,502],[1082,4,4,502,506],[1083,1,1,506,507],[1084,1,1,507,508],[1085,3,3,508,511],[1086,3,2,511,513],[1088,2,1,513,514],[1089,1,1,514,515],[1090,3,1,515,516]]],[47,35,26,516,542,[[1091,4,4,516,520],[1092,6,3,520,523],[1093,16,13,523,536],[1094,5,3,536,539],[1095,2,2,539,541],[1096,2,1,541,542]]],[48,11,10,542,552,[[1097,1,1,542,543],[1098,2,2,543,545],[1099,2,2,545,547],[1100,2,2,547,549],[1101,3,2,549,551],[1102,1,1,551,552]]],[49,9,7,552,559,[[1103,3,3,552,555],[1105,5,3,555,558],[1106,1,1,558,559]]],[50,11,11,559,570,[[1107,2,2,559,561],[1108,3,3,561,564],[1109,2,2,564,566],[1110,4,4,566,570]]],[51,7,5,570,575,[[1111,2,1,570,571],[1112,3,2,571,573],[1113,1,1,573,574],[1115,1,1,574,575]]],[52,1,1,575,576,[[1117,1,1,575,576]]],[53,2,2,576,578,[[1119,1,1,576,577],[1124,1,1,577,578]]],[54,7,6,578,584,[[1126,4,3,578,581],[1127,2,2,581,583],[1128,1,1,583,584]]],[55,4,4,584,588,[[1129,2,2,584,586],[1130,1,1,586,587],[1131,1,1,587,588]]],[57,21,20,588,608,[[1133,1,1,588,589],[1134,1,1,589,590],[1135,2,2,590,592],[1136,1,1,592,593],[1137,2,2,593,595],[1139,6,5,595,600],[1140,1,1,600,601],[1141,1,1,601,602],[1142,1,1,602,603],[1143,3,3,603,606],[1145,2,2,606,608]]],[58,13,11,608,619,[[1147,7,6,608,614],[1148,3,3,614,617],[1149,1,1,617,618],[1150,2,1,618,619]]],[59,8,8,619,627,[[1151,5,5,619,624],[1152,2,2,624,626],[1154,1,1,626,627]]],[60,5,5,627,632,[[1156,1,1,627,628],[1157,3,3,628,631],[1158,1,1,631,632]]],[61,34,23,632,655,[[1160,8,4,632,636],[1161,8,7,636,643],[1162,12,8,643,651],[1163,6,4,651,655]]],[62,1,1,655,656,[[1164,1,1,655,656]]],[63,2,2,656,658,[[1165,2,2,656,658]]],[64,2,2,658,660,[[1166,2,2,658,660]]],[65,132,99,660,759,[[1167,2,2,660,662],[1168,6,6,662,668],[1169,6,6,668,674],[1170,1,1,674,675],[1171,4,3,675,678],[1172,3,2,678,680],[1173,16,8,680,688],[1174,5,5,688,693],[1175,15,8,693,701],[1176,4,4,701,705],[1177,5,5,705,710],[1178,2,2,710,712],[1179,3,3,712,715],[1180,9,8,715,723],[1181,8,4,723,727],[1182,11,6,727,733],[1183,6,5,733,738],[1184,10,6,738,744],[1185,5,4,744,748],[1186,4,4,748,752],[1187,5,5,752,757],[1188,2,2,757,759]]]],[23147,23149,23150,23160,23162,23164,23175,23184,23201,23209,23271,23309,23321,23325,23373,23446,23500,23522,23523,23524,23526,23531,23580,23586,23588,23591,23638,23644,23651,23652,23673,23705,23709,23739,23774,23782,23794,23813,23815,23842,23845,23851,23852,23857,23907,23916,23943,23952,23974,23988,24010,24016,24041,24042,24049,24075,24081,24083,24096,24098,24118,24127,24136,24158,24167,24177,24182,24197,24226,24240,24241,24244,24366,24372,24394,24421,24423,24458,24461,24474,24483,24484,24489,24492,24494,24545,24547,24548,24555,24563,24608,24625,24628,24648,24654,24660,24670,24671,24672,24698,24703,24706,24709,24717,24718,24732,24744,24772,24774,24777,24779,24785,24816,24823,24824,24826,24853,24865,24872,24876,24885,24892,24898,24904,24908,24920,24928,24964,24967,24971,24977,25008,25009,25033,25047,25085,25098,25101,25110,25124,25188,25190,25191,25272,25308,25336,25370,25374,25381,25390,25410,25411,25418,25420,25421,25432,25436,25454,25459,25465,25472,25474,25484,25495,25581,25586,25592,25629,25651,25658,25666,25675,25709,25753,25783,25784,25785,25814,25821,25830,25842,25844,25867,25880,25887,25914,25922,25933,25942,25943,25968,25990,26004,26013,26037,26040,26057,26060,26063,26068,26076,26079,26084,26090,26110,26117,26121,26125,26126,26128,26133,26145,26147,26151,26154,26162,26163,26168,26169,26170,26178,26186,26195,26203,26210,26234,26265,26268,26270,26280,26283,26288,26289,26290,26295,26296,26298,26299,26307,26308,26315,26317,26321,26322,26323,26327,26328,26345,26347,26350,26353,26359,26366,26368,26369,26370,26372,26376,26378,26380,26404,26422,26423,26425,26427,26428,26440,26441,26446,26456,26464,26472,26480,26497,26501,26507,26509,26510,26513,26520,26542,26560,26568,26569,26572,26578,26581,26583,26584,26589,26597,26600,26607,26608,26612,26614,26622,26629,26631,26634,26651,26653,26718,26730,26731,26740,26741,26743,26765,26771,26773,26774,26775,26788,26794,26802,26810,26811,26821,26822,26827,26837,26848,26868,26869,26876,26891,26900,26912,26941,26947,26948,26951,26974,26979,26983,26998,27011,27018,27019,27024,27028,27032,27097,27098,27104,27110,27119,27120,27126,27153,27156,27171,27172,27213,27215,27249,27260,27274,27300,27304,27309,27312,27316,27327,27335,27344,27348,27354,27362,27379,27383,27392,27396,27404,27422,27444,27456,27463,27464,27465,27466,27471,27523,27526,27527,27535,27549,27554,27556,27558,27559,27601,27610,27618,27619,27656,27672,27710,27718,27722,27744,27755,27768,27776,27779,27827,27840,27846,27877,27884,27885,27889,27902,27903,27916,27933,27934,27947,27970,27980,27989,27991,28011,28017,28021,28024,28034,28036,28038,28046,28048,28063,28072,28077,28081,28085,28095,28115,28127,28160,28161,28165,28166,28176,28179,28185,28187,28193,28194,28195,28197,28205,28210,28215,28223,28224,28233,28235,28245,28263,28269,28277,28303,28346,28347,28393,28406,28456,28464,28467,28492,28494,28533,28547,28553,28554,28559,28571,28584,28608,28612,28628,28649,28650,28661,28674,28675,28677,28724,28730,28738,28765,28810,28811,28826,28828,28841,28842,28846,28865,28866,28878,28879,28885,28895,28915,28925,28939,28943,28946,28958,28963,29015,29028,29047,29058,29061,29065,29072,29093,29096,29097,29104,29107,29109,29110,29111,29112,29113,29114,29115,29120,29123,29124,29126,29135,29153,29154,29167,29170,29196,29226,29237,29238,29266,29271,29288,29301,29318,29334,29343,29377,29378,29384,29426,29430,29441,29464,29478,29483,29506,29508,29513,29525,29540,29551,29553,29554,29558,29570,29573,29576,29600,29634,29668,29701,29792,29835,29849,29853,29859,29864,29887,29902,29904,29916,29928,29976,29988,30008,30011,30015,30031,30037,30068,30069,30070,30076,30078,30101,30133,30171,30175,30191,30207,30251,30261,30309,30311,30314,30315,30317,30318,30329,30330,30332,30338,30374,30377,30392,30395,30396,30397,30408,30411,30457,30497,30508,30509,30521,30527,30566,30569,30571,30579,30587,30588,30589,30591,30593,30598,30603,30604,30605,30606,30607,30608,30609,30610,30616,30625,30628,30642,30643,30649,30668,30669,30677,30695,30702,30713,30722,30724,30727,30728,30738,30739,30751,30755,30756,30758,30762,30764,30773,30784,30786,30788,30794,30807,30814,30815,30816,30817,30818,30819,30823,30824,30831,30832,30837,30838,30840,30841,30842,30843,30853,30857,30858,30860,30861,30862,30865,30869,30871,30877,30879,30881,30883,30884,30906,30907,30909,30919,30921,30928,30934,30936,30939,30941,30943,30944,30946,30948,30952,30953,30954,30955,30961,30964,30965,30967,30975,30976,30977,30981,30983,30986,30994,30996,30997,31005,31012,31013,31019,31022,31032,31038,31039,31045,31047,31050,31055,31056,31059,31063,31074,31081,31099]]],["+",[33,33,[[40,2,2,0,2,[[970,1,1,0,1],[971,1,1,1,2]]],[41,4,4,2,6,[[980,1,1,2,3],[983,1,1,3,4],[994,1,1,4,5],[995,1,1,5,6]]],[42,7,7,6,13,[[999,1,1,6,7],[1000,1,1,7,8],[1002,2,2,8,10],[1005,2,2,10,12],[1007,1,1,12,13]]],[43,6,6,13,19,[[1026,1,1,13,14],[1027,1,1,14,15],[1028,1,1,15,16],[1032,1,1,16,17],[1036,1,1,17,18],[1043,1,1,18,19]]],[44,3,3,19,22,[[1047,1,1,19,20],[1048,1,1,20,21],[1057,1,1,21,22]]],[46,2,2,22,24,[[1086,2,2,22,24]]],[48,1,1,24,25,[[1099,1,1,24,25]]],[50,1,1,25,26,[[1109,1,1,25,26]]],[51,2,2,26,28,[[1113,1,1,26,27],[1115,1,1,27,28]]],[53,1,1,28,29,[[1124,1,1,28,29]]],[57,2,2,29,31,[[1143,1,1,29,30],[1145,1,1,30,31]]],[61,1,1,31,32,[[1162,1,1,31,32]]],[65,1,1,32,33,[[1182,1,1,32,33]]]],[24785,24865,25272,25418,25880,25942,26151,26168,26296,26307,26464,26472,26578,27249,27304,27316,27463,27619,27846,27970,28017,28263,28958,28963,29271,29540,29600,29634,29792,30207,30251,30609,30965]]],["From",[5,5,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[42,1,1,3,4,[[1002,1,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]]],[23851,24671,25784,26323,29288]]],["Of",[17,9,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]],[48,1,1,4,5,[[1099,1,1,4,5]]],[65,12,4,5,9,[[1173,12,4,5,9]]]],[23852,24672,25785,26794,29266,30815,30816,30817,30818]]],["Out",[3,3,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[991,1,1,1,2]]],[58,1,1,2,3,[[1148,1,1,2,3]]]],[23184,25753,30329]]],["among",[6,6,[[39,1,1,0,1,[[940,1,1,0,1]]],[42,2,2,1,3,[[1008,2,2,1,3]]],[43,2,2,3,5,[[1023,1,1,3,4],[1044,1,1,4,5]]],[57,1,1,5,6,[[1137,1,1,5,6]]]],[23500,26600,26622,27104,27877,30031]]],["at",[3,3,[[42,1,1,0,1,[[1012,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]],[65,1,1,2,3,[[1185,1,1,2,3]]]],[26730,30330,31019]]],["betwixt",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29384]]],["beyond",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24458]]],["by",[55,42,[[39,4,3,0,3,[[940,3,2,0,2],[943,1,1,2,3]]],[40,1,1,3,4,[[963,1,1,3,4]]],[41,1,1,4,5,[[978,1,1,4,5]]],[42,1,1,5,6,[[999,1,1,5,6]]],[43,1,1,6,7,[[1036,1,1,6,7]]],[44,12,11,7,18,[[1046,2,2,7,9],[1047,1,1,9,10],[1048,2,2,10,12],[1049,1,1,12,13],[1050,2,2,13,15],[1054,3,2,15,17],[1055,1,1,17,18]]],[46,7,5,18,23,[[1079,1,1,18,19],[1084,1,1,19,20],[1085,1,1,20,21],[1088,2,1,21,22],[1090,2,1,22,23]]],[47,15,9,23,32,[[1092,4,1,23,24],[1093,8,6,24,30],[1094,2,1,30,31],[1095,1,1,31,32]]],[55,1,1,32,33,[[1131,1,1,32,33]]],[57,1,1,33,34,[[1142,1,1,33,34]]],[58,6,5,34,39,[[1147,6,5,34,39]]],[59,1,1,39,40,[[1152,1,1,39,40]]],[61,1,1,40,41,[[1161,1,1,40,41]]],[65,3,1,41,42,[[1175,3,1,41,42]]]],[23522,23526,23638,24474,25190,26154,27610,27934,27947,27989,28011,28021,28024,28048,28063,28165,28187,28205,28826,28925,28946,29015,29047,29097,29104,29107,29113,29123,29124,29126,29153,29167,29928,30171,30311,30314,30315,30317,30318,30411,30603,30858]]],["for",[2,2,[[39,1,1,0,1,[[948,1,1,0,1]]],[65,1,1,1,2,[[1182,1,1,1,2]]]],[23794,30964]]],["from",[182,174,[[39,11,11,0,11,[[931,1,1,0,1],[940,1,1,1,2],[941,1,1,2,3],[943,1,1,3,4],[944,1,1,4,5],[945,1,1,5,6],[947,2,2,6,8],[949,1,1,8,9],[952,1,1,9,10],[956,1,1,10,11]]],[40,12,12,11,23,[[957,1,1,11,12],[962,2,2,12,14],[963,1,1,14,15],[965,2,2,15,17],[966,1,1,17,18],[967,2,2,18,20],[968,1,1,20,21],[969,1,1,21,22],[972,1,1,22,23]]],[41,19,18,23,41,[[973,4,3,23,26],[975,1,1,26,27],[981,1,1,27,28],[982,2,2,28,30],[983,2,2,30,32],[984,1,1,32,33],[988,1,1,33,34],[989,1,1,34,35],[990,1,1,35,36],[992,2,2,36,38],[995,1,1,38,39],[996,2,2,39,41]]],[42,38,36,41,77,[[997,2,2,41,43],[998,1,1,43,44],[999,3,3,44,47],[1001,1,1,47,48],[1002,12,11,48,59],[1004,3,2,59,61],[1005,1,1,61,62],[1006,1,1,62,63],[1008,6,6,63,69],[1009,1,1,69,70],[1013,1,1,70,71],[1014,1,1,71,72],[1015,2,2,72,74],[1016,2,2,74,76],[1017,1,1,76,77]]],[43,29,29,77,106,[[1018,1,1,77,78],[1019,1,1,78,79],[1020,3,3,79,82],[1021,2,2,82,84],[1024,1,1,84,85],[1027,1,1,85,86],[1028,2,2,86,88],[1029,2,2,88,90],[1030,2,2,90,92],[1031,1,1,92,93],[1032,2,2,93,95],[1034,3,3,95,98],[1035,2,2,98,100],[1039,1,1,100,101],[1040,1,1,101,102],[1043,2,2,102,104],[1044,1,1,104,105],[1045,1,1,105,106]]],[44,13,12,106,118,[[1046,1,1,106,107],[1049,1,1,107,108],[1051,4,4,108,112],[1052,2,2,112,114],[1053,2,1,114,115],[1055,2,2,115,117],[1056,1,1,117,118]]],[45,6,6,118,124,[[1066,2,2,118,120],[1070,1,1,120,121],[1076,3,3,121,124]]],[46,5,5,124,129,[[1078,1,1,124,125],[1080,1,1,125,126],[1082,2,2,126,128],[1083,1,1,128,129]]],[47,5,5,129,134,[[1091,4,4,129,133],[1093,1,1,133,134]]],[48,3,3,134,137,[[1097,1,1,134,135],[1101,1,1,135,136],[1102,1,1,136,137]]],[49,1,1,137,138,[[1105,1,1,137,138]]],[50,5,5,138,143,[[1107,2,2,138,140],[1108,2,2,140,142],[1110,1,1,142,143]]],[51,2,1,143,144,[[1111,2,1,143,144]]],[54,1,1,144,145,[[1126,1,1,144,145]]],[57,4,4,145,149,[[1137,1,1,145,146],[1139,1,1,146,147],[1143,1,1,147,148],[1145,1,1,148,149]]],[58,2,1,149,150,[[1150,2,1,149,150]]],[59,3,3,150,153,[[1151,3,3,150,153]]],[60,2,2,153,155,[[1156,1,1,153,154],[1157,1,1,154,155]]],[61,2,2,155,157,[[1160,1,1,155,156],[1161,1,1,156,157]]],[65,19,17,157,174,[[1169,1,1,157,158],[1174,1,1,158,159],[1175,2,2,159,161],[1176,3,3,161,164],[1177,2,2,164,166],[1179,1,1,166,167],[1180,4,3,167,170],[1181,2,1,170,171],[1184,2,2,171,173],[1186,1,1,173,174]]]],[23209,23531,23588,23651,23673,23709,23774,23782,23851,23988,24197,24226,24421,24423,24494,24547,24548,24608,24660,24670,24698,24744,24876,24908,24964,24971,25047,25308,25370,25381,25421,25436,25495,25651,25658,25709,25783,25814,25990,26037,26040,26063,26076,26117,26133,26147,26151,26234,26280,26288,26289,26290,26295,26298,26299,26307,26308,26315,26321,26404,26423,26441,26513,26581,26589,26597,26607,26608,26612,26634,26774,26788,26837,26848,26868,26876,26912,26948,26951,26998,27011,27019,27024,27032,27119,27300,27312,27316,27344,27362,27392,27396,27422,27466,27471,27526,27554,27556,27558,27559,27710,27744,27827,27840,27889,27916,27947,28046,28072,28077,28081,28085,28095,28115,28127,28195,28197,28224,28456,28467,28559,28730,28738,28765,28810,28842,28879,28885,28915,29058,29061,29065,29072,29115,29226,29318,29343,29441,29478,29483,29506,29513,29558,29570,29835,30037,30070,30191,30261,30374,30377,30392,30395,30497,30521,30569,30593,30756,30837,30841,30853,30862,30865,30869,30883,30884,30921,30928,30939,30944,30954,30994,30997,31039]]],["in",[8,7,[[41,1,1,0,1,[[983,1,1,0,1]]],[45,5,4,1,5,[[1073,1,1,1,2],[1074,4,3,2,5]]],[46,1,1,5,6,[[1085,1,1,5,6]]],[65,1,1,6,7,[[1169,1,1,6,7]]]],[25411,28661,28674,28675,28677,28939,30764]]],["of",[511,441,[[39,35,33,0,33,[[929,7,6,0,6],[931,1,1,6,7],[933,1,1,7,8],[934,1,1,8,9],[935,2,2,9,11],[938,1,1,11,12],[940,1,1,12,13],[941,2,2,13,15],[943,1,1,15,16],[946,1,1,16,17],[949,3,3,17,20],[950,1,1,20,21],[951,3,2,21,23],[952,1,1,23,24],[953,2,2,24,26],[954,4,4,26,30],[955,3,3,30,33]]],[40,29,27,33,60,[[957,3,3,33,36],[961,4,3,36,39],[962,1,1,39,40],[963,4,4,40,44],[965,3,3,44,47],[967,2,2,47,49],[968,2,1,49,50],[969,2,2,50,52],[970,6,6,52,58],[971,1,1,58,59],[972,1,1,59,60]]],[41,50,45,60,105,[[973,5,4,60,64],[974,4,3,64,67],[975,1,1,67,68],[976,3,3,68,71],[977,2,2,71,73],[978,4,3,73,76],[980,1,1,76,77],[981,1,1,77,78],[982,1,1,78,79],[983,5,5,79,84],[984,4,4,84,88],[986,2,2,88,90],[987,2,1,90,91],[988,1,1,91,92],[989,2,2,92,94],[992,1,1,94,95],[993,4,3,95,98],[994,4,4,98,102],[995,1,1,102,103],[996,2,2,103,105]]],[42,107,90,105,195,[[997,9,6,105,111],[998,2,1,111,112],[999,8,6,112,118],[1000,8,8,118,126],[1002,10,10,126,136],[1003,16,13,136,149],[1004,9,6,149,155],[1005,3,3,155,158],[1006,6,6,158,164],[1007,5,5,164,169],[1008,5,5,169,174],[1009,3,3,174,177],[1011,3,1,177,178],[1012,4,4,178,182],[1013,7,5,182,187],[1014,6,5,187,192],[1015,1,1,192,193],[1016,1,1,193,194],[1017,1,1,194,195]]],[43,43,42,195,237,[[1018,1,1,195,196],[1019,1,1,196,197],[1020,1,1,197,198],[1021,1,1,198,199],[1022,2,2,199,201],[1023,1,1,201,202],[1024,5,5,202,207],[1025,1,1,207,208],[1027,1,1,208,209],[1028,3,3,209,212],[1029,2,2,212,214],[1030,3,3,214,217],[1032,4,4,217,221],[1033,1,1,221,222],[1034,3,3,222,225],[1036,2,2,225,227],[1037,1,1,227,228],[1038,1,1,228,229],[1039,2,2,229,231],[1040,2,2,231,233],[1041,2,2,233,235],[1044,2,1,235,236],[1045,1,1,236,237]]],[44,32,25,237,262,[[1046,1,1,237,238],[1047,3,2,238,240],[1049,5,3,240,243],[1050,1,1,243,244],[1054,8,6,244,250],[1055,2,2,250,252],[1056,6,5,252,257],[1058,2,2,257,259],[1059,2,1,259,260],[1061,2,2,260,262]]],[45,23,17,262,279,[[1062,1,1,262,263],[1063,1,1,263,264],[1066,1,1,264,265],[1068,1,1,265,266],[1069,1,1,266,267],[1070,4,3,267,270],[1071,2,2,270,272],[1072,6,3,272,275],[1073,4,2,275,277],[1076,2,2,277,279]]],[46,13,11,279,290,[[1078,1,1,279,280],[1079,3,2,280,282],[1080,2,1,282,283],[1081,2,2,283,285],[1082,2,2,285,287],[1085,1,1,287,288],[1086,1,1,288,289],[1089,1,1,289,290]]],[47,14,11,290,301,[[1092,2,2,290,292],[1093,6,5,292,297],[1094,3,2,297,299],[1095,1,1,299,300],[1096,2,1,300,301]]],[48,5,4,301,305,[[1098,2,2,301,303],[1100,1,1,303,304],[1101,2,1,304,305]]],[49,7,5,305,310,[[1103,2,2,305,307],[1105,4,2,307,309],[1106,1,1,309,310]]],[50,5,5,310,315,[[1108,1,1,310,311],[1109,1,1,311,312],[1110,3,3,312,315]]],[51,3,2,315,317,[[1112,3,2,315,317]]],[52,1,1,317,318,[[1117,1,1,317,318]]],[53,1,1,318,319,[[1119,1,1,318,319]]],[54,6,6,319,325,[[1126,3,3,319,322],[1127,2,2,322,324],[1128,1,1,324,325]]],[55,3,3,325,328,[[1129,2,2,325,327],[1130,1,1,327,328]]],[57,11,10,328,338,[[1134,1,1,328,329],[1135,2,2,329,331],[1136,1,1,331,332],[1139,5,4,332,336],[1140,1,1,336,337],[1143,1,1,337,338]]],[58,3,3,338,341,[[1147,1,1,338,339],[1148,1,1,339,340],[1149,1,1,340,341]]],[59,3,3,341,344,[[1151,1,1,341,342],[1152,1,1,342,343],[1154,1,1,343,344]]],[60,2,2,344,346,[[1157,1,1,344,345],[1158,1,1,345,346]]],[61,30,21,346,367,[[1160,7,4,346,350],[1161,6,5,350,355],[1162,11,8,355,363],[1163,6,4,363,367]]],[62,1,1,367,368,[[1164,1,1,367,368]]],[63,2,2,368,370,[[1165,2,2,368,370]]],[64,2,2,370,372,[[1166,2,2,370,372]]],[65,80,69,372,441,[[1167,2,2,372,374],[1168,6,6,374,380],[1169,3,3,380,383],[1171,4,3,383,386],[1172,3,2,386,388],[1173,4,4,388,392],[1174,3,3,392,395],[1175,10,6,395,401],[1176,1,1,401,402],[1177,3,3,402,405],[1178,2,2,405,407],[1179,2,2,407,409],[1180,5,5,409,414],[1181,2,2,414,416],[1182,9,5,416,421],[1183,3,3,421,424],[1184,5,4,424,428],[1185,3,3,428,431],[1186,3,3,431,434],[1187,5,5,434,439],[1188,2,2,439,441]]]],[23147,23149,23150,23160,23162,23164,23201,23271,23309,23321,23325,23446,23524,23580,23586,23651,23739,23842,23851,23857,23907,23943,23952,23974,24010,24016,24075,24081,24083,24127,24158,24177,24182,24240,24241,24244,24366,24372,24394,24461,24483,24484,24489,24492,24545,24555,24563,24654,24670,24717,24718,24732,24772,24774,24777,24779,24823,24824,24872,24885,24898,24920,24928,24967,24977,25008,25009,25033,25085,25098,25101,25110,25124,25188,25190,25191,25272,25336,25374,25410,25420,25432,25454,25459,25465,25472,25474,25484,25581,25586,25592,25629,25658,25666,25783,25830,25842,25844,25867,25887,25914,25922,25943,26004,26013,26057,26060,26068,26079,26084,26090,26110,26121,26125,26126,26128,26145,26151,26163,26169,26170,26178,26186,26195,26203,26210,26265,26268,26270,26283,26308,26317,26321,26322,26327,26328,26345,26347,26350,26353,26359,26366,26368,26369,26370,26372,26376,26378,26380,26404,26422,26425,26427,26428,26440,26446,26456,26480,26497,26501,26507,26509,26510,26520,26542,26560,26568,26569,26572,26584,26589,26597,26614,26629,26631,26651,26653,26718,26731,26740,26741,26743,26765,26771,26773,26774,26775,26802,26810,26811,26821,26822,26827,26891,26900,26947,26979,27018,27028,27097,27098,27110,27119,27120,27126,27153,27156,27215,27260,27309,27327,27335,27348,27354,27379,27383,27404,27444,27456,27464,27465,27523,27527,27535,27549,27601,27618,27656,27672,27718,27722,27755,27768,27776,27779,27885,27902,27933,27980,27991,28034,28036,28038,28063,28160,28161,28166,28176,28179,28185,28193,28194,28210,28215,28223,28235,28245,28269,28277,28303,28346,28347,28393,28406,28464,28494,28533,28547,28553,28554,28571,28584,28608,28612,28628,28649,28650,28724,28765,28811,28828,28841,28846,28865,28866,28878,28895,28943,28963,29028,29093,29096,29109,29111,29112,29114,29120,29135,29154,29170,29196,29237,29238,29301,29334,29377,29378,29426,29430,29464,29508,29525,29551,29553,29554,29573,29576,29668,29701,29835,29849,29853,29859,29864,29887,29902,29904,29916,29988,30008,30011,30015,30068,30069,30076,30078,30101,30175,30309,30332,30338,30397,30408,30457,30509,30527,30566,30569,30571,30579,30587,30588,30589,30591,30598,30604,30605,30606,30607,30608,30609,30610,30616,30625,30628,30642,30643,30649,30668,30669,30677,30695,30702,30713,30722,30724,30727,30728,30738,30739,30755,30758,30762,30784,30786,30788,30794,30807,30814,30819,30823,30824,30831,30838,30840,30842,30843,30857,30858,30860,30861,30871,30877,30879,30881,30906,30907,30909,30919,30934,30936,30941,30943,30946,30952,30953,30955,30961,30965,30967,30975,30976,30983,30986,30996,30997,31005,31012,31022,31032,31038,31045,31047,31050,31055,31056,31059,31063,31074,31081,31099]]],["off",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24648]]],["on",[34,26,[[39,13,9,0,9,[[948,4,2,0,2],[949,1,1,2,3],[950,1,1,3,4],[953,4,3,4,7],[954,1,1,7,8],[955,2,1,8,9]]],[40,9,6,9,15,[[966,4,2,9,11],[968,1,1,11,12],[970,1,1,12,13],[971,2,1,13,14],[972,1,1,14,15]]],[41,5,4,15,19,[[973,1,1,15,16],[992,1,1,16,17],[994,1,1,17,18],[995,2,1,18,19]]],[43,5,5,19,24,[[1019,2,2,19,21],[1024,2,2,21,23],[1045,1,1,23,24]]],[57,1,1,24,25,[[1133,1,1,24,25]]],[65,1,1,25,26,[[1184,1,1,25,26]]]],[23813,23815,23845,23916,24041,24042,24049,24118,24167,24625,24628,24709,24816,24853,24892,24904,25821,25933,25968,26974,26983,27171,27172,27903,29976,31013]]],["out",[17,16,[[39,9,9,0,9,[[930,1,1,0,1],[935,1,1,1,2],[936,1,1,2,3],[940,2,2,3,5],[941,1,1,5,6],[943,2,2,6,8],[945,1,1,8,9]]],[41,3,2,9,11,[[978,2,1,9,10],[989,1,1,10,11]]],[42,1,1,11,12,[[1016,1,1,11,12]]],[43,1,1,12,13,[[1044,1,1,12,13]]],[44,1,1,13,14,[[1056,1,1,13,14]]],[65,2,2,14,16,[[1169,1,1,14,15],[1170,1,1,15,16]]]],[23175,23321,23373,23523,23524,23591,23644,23652,23705,25191,25675,26869,27884,28233,30751,30773]]],["over",[4,1,[[65,4,1,0,1,[[1181,4,1,0,1]]]],[30948]]],["the",[5,5,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[43,1,1,3,4,[[1027,1,1,3,4]]],[57,1,1,4,5,[[1141,1,1,4,5]]]],[24096,24098,24826,27274,30133]]],["through",[3,3,[[46,1,1,0,1,[[1090,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[29047,29110,30996]]],["to",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30508]]],["with",[25,15,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,8,2,1,3,[[968,8,2,1,3]]],[41,4,1,3,4,[[982,4,1,3,4]]],[42,2,2,4,6,[[1000,1,1,4,5],[1008,1,1,5,6]]],[43,2,2,6,8,[[1018,1,1,6,7],[1025,1,1,7,8]]],[45,1,1,8,9,[[1068,1,1,8,9]]],[59,1,1,9,10,[[1151,1,1,9,10]]],[65,6,5,10,15,[[1174,1,1,10,11],[1183,3,2,11,13],[1184,1,1,13,14],[1185,1,1,14,15]]]],[24136,24703,24706,25390,26162,26583,26941,27213,28492,30396,30832,30977,30981,30994,31038]]]]},{"k":"G1538","v":[["*",[83,78,[[39,4,4,0,4,[[944,1,1,0,1],[946,1,1,1,2],[953,1,1,2,3],[954,1,1,3,4]]],[40,1,1,4,5,[[969,1,1,4,5]]],[41,5,5,5,10,[[974,1,1,5,6],[976,1,1,6,7],[978,1,1,7,8],[985,1,1,8,9],[988,1,1,9,10]]],[42,4,4,10,14,[[1002,1,1,10,11],[1003,1,1,11,12],[1012,1,1,12,13],[1015,1,1,13,14]]],[43,11,11,14,25,[[1019,4,4,14,18],[1020,1,1,18,19],[1021,1,1,19,20],[1028,1,1,20,21],[1034,1,1,21,22],[1037,1,1,22,23],[1038,2,2,23,25]]],[44,5,5,25,30,[[1047,1,1,25,26],[1057,1,1,26,27],[1059,2,2,27,29],[1060,1,1,29,30]]],[45,23,20,30,50,[[1062,1,1,30,31],[1064,5,4,31,35],[1065,1,1,35,36],[1068,7,5,36,41],[1071,1,1,41,42],[1072,1,1,42,43],[1073,3,3,43,46],[1075,1,1,46,47],[1076,2,2,47,49],[1077,1,1,49,50]]],[46,2,2,50,52,[[1082,1,1,50,51],[1086,1,1,51,52]]],[47,2,2,52,54,[[1096,2,2,52,54]]],[48,5,5,54,59,[[1100,3,3,54,57],[1101,1,1,57,58],[1102,1,1,58,59]]],[49,2,1,59,60,[[1104,2,1,59,60]]],[50,1,1,60,61,[[1110,1,1,60,61]]],[51,2,2,61,63,[[1112,1,1,61,62],[1114,1,1,62,63]]],[52,1,1,63,64,[[1116,1,1,63,64]]],[57,5,4,64,68,[[1135,1,1,64,65],[1138,1,1,65,66],[1140,2,1,66,67],[1143,1,1,67,68]]],[58,1,1,68,69,[[1146,1,1,68,69]]],[59,2,2,69,71,[[1151,1,1,69,70],[1154,1,1,70,71]]],[65,7,7,71,78,[[1168,1,1,71,72],[1171,1,1,72,73],[1172,1,1,73,74],[1186,1,1,74,75],[1187,1,1,75,76],[1188,2,2,76,78]]]],[23699,23762,24023,24076,24751,24976,25103,25190,25533,25625,26264,26381,26758,26848,26952,26955,26957,26987,27022,27057,27336,27550,27657,27683,27690,27968,28248,28285,28292,28305,28375,28415,28418,28420,28423,28438,28489,28494,28504,28507,28511,28591,28621,28641,28645,28652,28704,28741,28756,28778,28887,28963,29192,29193,29279,29288,29297,29337,29345,29395,29548,29581,29607,29652,30008,30055,30103,30193,30280,30391,30456,30740,30787,30804,31051,31074,31082,31092]]],["+",[9,9,[[43,3,3,0,3,[[1019,2,2,0,2],[1038,1,1,2,3]]],[45,1,1,3,4,[[1068,1,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]],[50,1,1,5,6,[[1110,1,1,5,6]]],[57,1,1,6,7,[[1135,1,1,6,7]]],[65,2,2,7,9,[[1187,1,1,7,8],[1188,1,1,8,9]]]],[26952,26955,27683,28507,29288,29548,30008,31074,31082]]],["both",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30193]]],["every",[12,12,[[41,3,3,0,3,[[976,1,1,0,1],[978,1,1,1,2],[988,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[43,3,3,4,7,[[1034,1,1,4,5],[1037,1,1,5,6],[1038,1,1,6,7]]],[45,2,2,7,9,[[1073,1,1,7,8],[1076,1,1,8,9]]],[48,1,1,9,10,[[1100,1,1,9,10]]],[51,1,1,10,11,[[1112,1,1,10,11]]],[52,1,1,11,12,[[1116,1,1,11,12]]]],[25103,25190,25625,26848,27550,27657,27690,28652,28756,29279,29581,29652]]],["man",[36,34,[[39,2,2,0,2,[[944,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[42,2,2,3,5,[[1003,1,1,3,4],[1012,1,1,4,5]]],[43,3,3,5,8,[[1019,1,1,5,6],[1021,1,1,6,7],[1028,1,1,7,8]]],[44,3,3,8,11,[[1047,1,1,8,9],[1057,1,1,9,10],[1059,1,1,10,11]]],[45,12,12,11,23,[[1064,3,3,11,14],[1065,1,1,14,15],[1068,4,4,15,19],[1071,1,1,19,20],[1073,2,2,20,22],[1076,1,1,22,23]]],[46,1,1,23,24,[[1086,1,1,23,24]]],[47,2,2,24,26,[[1096,2,2,24,26]]],[48,2,2,26,28,[[1100,1,1,26,27],[1102,1,1,27,28]]],[49,2,1,28,29,[[1104,2,1,28,29]]],[57,2,1,29,30,[[1140,2,1,29,30]]],[58,1,1,30,31,[[1146,1,1,30,31]]],[59,1,1,31,32,[[1154,1,1,31,32]]],[65,2,2,32,34,[[1186,1,1,32,33],[1188,1,1,33,34]]]],[23699,24023,24751,26381,26758,26957,27057,27336,27968,28248,28285,28415,28418,28420,28438,28489,28494,28504,28511,28591,28641,28645,28741,28963,29192,29193,29297,29345,29395,30103,30280,30456,31051,31092]]],["man's",[3,2,[[45,2,1,0,1,[[1064,2,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[28423,30391]]],["one",[19,19,[[39,2,2,0,2,[[946,1,1,0,1],[954,1,1,1,2]]],[41,2,2,2,4,[[974,1,1,2,3],[985,1,1,3,4]]],[42,1,1,4,5,[[1002,1,1,4,5]]],[43,2,2,5,7,[[1019,1,1,5,6],[1020,1,1,6,7]]],[44,2,2,7,9,[[1059,1,1,7,8],[1060,1,1,8,9]]],[45,5,5,9,14,[[1062,1,1,9,10],[1068,1,1,10,11],[1072,1,1,11,12],[1075,1,1,12,13],[1077,1,1,13,14]]],[46,1,1,14,15,[[1082,1,1,14,15]]],[48,1,1,15,16,[[1101,1,1,15,16]]],[51,1,1,16,17,[[1114,1,1,16,17]]],[57,1,1,17,18,[[1138,1,1,17,18]]],[65,1,1,18,19,[[1168,1,1,18,19]]]],[23762,24076,24976,25533,26264,26987,27022,28292,28305,28375,28504,28621,28704,28778,28887,29337,29607,30055,30740]]],["them",[2,2,[[65,2,2,0,2,[[1171,1,1,0,1],[1172,1,1,1,2]]]],[30787,30804]]],["woman",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28489]]]]},{"k":"G1539","v":[["always",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30494]]]]},{"k":"G1540","v":[["*",[17,17,[[39,4,4,0,4,[[941,2,2,0,2],[946,2,2,2,4]]],[40,3,3,4,7,[[960,2,2,4,6],[962,1,1,6,7]]],[41,3,3,7,10,[[987,1,1,7,8],[988,2,2,8,10]]],[42,2,2,10,12,[[1015,1,1,10,11],[1017,1,1,11,12]]],[43,1,1,12,13,[[1018,1,1,12,13]]],[65,4,4,13,17,[[1173,1,1,13,14],[1180,2,2,14,16],[1187,1,1,16,17]]]],[23547,23562,23739,23755,24331,24343,24447,25592,25626,25627,26864,26909,26938,30814,30927,30929,31070]]],["+",[9,9,[[39,2,2,0,2,[[941,2,2,0,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[42,1,1,3,4,[[1017,1,1,3,4]]],[43,1,1,4,5,[[1018,1,1,4,5]]],[65,4,4,5,9,[[1173,1,1,5,6],[1180,2,2,6,8],[1187,1,1,8,9]]]],[23547,23562,24447,26909,26938,30814,30927,30929,31070]]],["hundred",[8,8,[[39,2,2,0,2,[[946,2,2,0,2]]],[40,2,2,2,4,[[960,2,2,2,4]]],[41,3,3,4,7,[[987,1,1,4,5],[988,2,2,5,7]]],[42,1,1,7,8,[[1015,1,1,7,8]]]],[23739,23755,24331,24343,25592,25626,25627,26864]]]]},{"k":"G1541","v":[["old",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28041]]]]},{"k":"G1542","v":[["hundredfold",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23791,24618,25253]]]]},{"k":"G1543","v":[["*",[21,21,[[39,4,4,0,4,[[936,3,3,0,3],[955,1,1,3,4]]],[41,3,3,4,7,[[979,2,2,4,6],[995,1,1,6,7]]],[43,14,14,7,21,[[1027,2,2,7,9],[1038,1,1,9,10],[1039,2,2,10,12],[1040,2,2,12,14],[1041,1,1,14,15],[1044,5,5,15,20],[1045,1,1,20,21]]]],[23350,23353,23358,24183,25197,25201,25982,27260,27281,27696,27729,27730,27751,27757,27792,27856,27861,27866,27886,27898,27915]]],["+",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27751]]],["centurion",[17,17,[[39,4,4,0,4,[[936,3,3,0,3],[955,1,1,3,4]]],[41,2,2,4,6,[[979,1,1,4,5],[995,1,1,5,6]]],[43,11,11,6,17,[[1027,2,2,6,8],[1039,2,2,8,10],[1041,1,1,10,11],[1044,5,5,11,16],[1045,1,1,16,17]]]],[23350,23353,23358,24183,25201,25982,27260,27281,27729,27730,27792,27856,27861,27866,27886,27898,27915]]],["centurion's",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25197]]],["centurions",[2,2,[[43,2,2,0,2,[[1038,1,1,0,1],[1040,1,1,1,2]]]],[27696,27757]]]]},{"k":"G1544","v":[["*",[82,76,[[39,28,25,0,25,[[935,4,3,0,3],[936,3,3,3,6],[937,4,4,6,10],[938,2,2,10,12],[940,8,6,12,18],[941,1,1,18,19],[943,1,1,19,20],[945,1,1,20,21],[949,2,2,21,23],[950,1,1,23,24],[953,1,1,24,25]]],[40,18,18,25,43,[[957,4,4,25,29],[959,3,3,29,32],[961,1,1,32,33],[962,1,1,33,34],[963,1,1,34,35],[965,4,4,35,39],[967,1,1,39,40],[968,1,1,40,41],[972,2,2,41,43]]],[41,21,18,43,61,[[976,1,1,43,44],[978,4,2,44,46],[980,1,1,46,47],[981,2,2,47,49],[982,2,2,49,51],[983,6,5,51,56],[985,2,2,56,58],[991,1,1,58,59],[992,2,2,59,61]]],[42,6,6,61,67,[[998,1,1,61,62],[1002,1,1,62,63],[1005,2,2,63,65],[1006,1,1,65,66],[1008,1,1,66,67]]],[43,5,5,67,72,[[1024,1,1,67,68],[1026,1,1,68,69],[1030,1,1,69,70],[1033,1,1,70,71],[1044,1,1,71,72]]],[47,1,1,72,73,[[1094,1,1,72,73]]],[58,1,1,73,74,[[1147,1,1,73,74]]],[63,1,1,74,75,[[1165,1,1,74,75]]],[65,1,1,75,76,[[1177,1,1,75,76]]]],[23320,23321,23338,23357,23361,23376,23404,23412,23413,23417,23418,23425,23509,23513,23515,23516,23517,23524,23591,23650,23719,23838,23865,23885,24038,24227,24249,24254,24258,24303,24310,24311,24404,24420,24489,24556,24566,24576,24585,24655,24681,24882,24890,25092,25168,25188,25299,25341,25350,25365,25398,25419,25420,25423,25424,25425,25546,25550,25776,25791,25794,26110,26294,26474,26475,26485,26611,27174,27256,27412,27520,27893,29161,30318,30668,30874]]],["+",[10,10,[[39,3,3,0,3,[[936,1,1,0,1],[938,1,1,1,2],[945,1,1,2,3]]],[40,5,5,3,8,[[957,1,1,3,4],[961,1,1,4,5],[965,3,3,5,8]]],[41,1,1,8,9,[[981,1,1,8,9]]],[43,1,1,9,10,[[1033,1,1,9,10]]]],[23376,23418,23719,24258,24404,24556,24566,24585,25341,27520]]],["cast",[11,11,[[39,3,3,0,3,[[949,1,1,0,1],[950,1,1,1,2],[953,1,1,2,3]]],[40,2,2,3,5,[[968,1,1,3,4],[972,1,1,4,5]]],[41,1,1,5,6,[[992,1,1,5,6]]],[42,4,4,6,10,[[1002,1,1,6,7],[1005,2,2,7,9],[1008,1,1,9,10]]],[43,1,1,10,11,[[1024,1,1,10,11]]]],[23865,23885,24038,24681,24882,25794,26294,26474,26475,26611,27174]]],["casteth",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30668]]],["driveth",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24227]]],["drove",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26110]]],["expelled",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27412]]],["forth",[9,8,[[39,6,5,0,5,[[937,2,2,0,2],[940,3,2,2,4],[941,1,1,4,5]]],[40,1,1,5,6,[[963,1,1,5,6]]],[41,1,1,6,7,[[982,1,1,6,7]]],[42,1,1,7,8,[[1006,1,1,7,8]]]],[23404,23417,23509,23524,23591,24489,25365,26485]]],["leave",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30874]]],["out",[43,38,[[39,16,14,0,14,[[935,4,3,0,3],[936,2,2,3,5],[937,2,2,5,7],[938,1,1,7,8],[940,5,4,8,12],[943,1,1,12,13],[949,1,1,13,14]]],[40,9,9,14,23,[[957,2,2,14,16],[959,3,3,16,19],[962,1,1,19,20],[965,1,1,20,21],[967,1,1,21,22],[972,1,1,22,23]]],[41,15,12,23,35,[[978,4,2,23,25],[981,1,1,25,26],[982,1,1,26,27],[983,6,5,27,32],[985,1,1,32,33],[991,1,1,33,34],[992,1,1,34,35]]],[43,1,1,35,36,[[1044,1,1,35,36]]],[47,1,1,36,37,[[1094,1,1,36,37]]],[58,1,1,37,38,[[1147,1,1,37,38]]]],[23320,23321,23338,23357,23361,23412,23413,23425,23513,23515,23516,23517,23650,23838,24249,24254,24303,24310,24311,24420,24576,24655,24890,25168,25188,25350,25398,25419,25420,25423,25424,25425,25550,25776,25791,27893,29161,30318]]],["put",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[25299,27256]]],["thrust",[2,2,[[41,2,2,0,2,[[976,1,1,0,1],[985,1,1,1,2]]]],[25092,25546]]]]},{"k":"G1545","v":[["*",[2,2,[[45,1,1,0,1,[[1071,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[28580,30248]]],["end",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30248]]],["escape",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28580]]]]},{"k":"G1546","v":[["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27873]]]]},{"k":"G1547","v":[["*",[5,4,[[39,2,2,0,2,[[950,1,1,0,1],[952,1,1,1,2]]],[41,1,1,2,3,[[989,1,1,2,3]]],[45,2,1,3,4,[[1068,2,1,3,4]]]],[23902,23995,25678,28525]]],["+",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28525]]],["marriage",[4,4,[[39,2,2,0,2,[[950,1,1,0,1],[952,1,1,1,2]]],[41,1,1,2,3,[[989,1,1,2,3]]],[45,1,1,3,4,[[1068,1,1,3,4]]]],[23902,23995,25678,28525]]]]},{"k":"G1548","v":[["marriage",[2,2,[[41,2,2,0,2,[[992,2,2,0,2]]]],[25813,25814]]]]},{"k":"G1549","v":[["nephews",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29767]]]]},{"k":"G1550","v":[["spent",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29037]]]]},{"k":"G1551","v":[["*",[8,8,[[42,1,1,0,1,[[1001,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[45,2,2,2,4,[[1072,1,1,2,3],[1077,1,1,3,4]]],[57,2,2,4,6,[[1142,1,1,4,5],[1143,1,1,5,6]]],[58,1,1,6,7,[[1150,1,1,6,7]]],[59,1,1,7,8,[[1153,1,1,7,8]]]],[26213,27539,28633,28787,30146,30182,30361,30444]]],["expecting",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30146]]],["for",[5,5,[[42,1,1,0,1,[[1001,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]],[58,1,1,4,5,[[1150,1,1,4,5]]]],[26213,27539,28787,30182,30361]]],["tarry",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28633]]],["waited",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30444]]]]},{"k":"G1552","v":[["manifest",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29862]]]]},{"k":"G1553","v":[["absent",[3,3,[[46,3,3,0,3,[[1082,3,3,0,3]]]],[28883,28885,28886]]]]},{"k":"G1554","v":[["*",[4,4,[[39,2,2,0,2,[[949,2,2,0,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]]],[23859,23867,24674,25788]]],["+",[3,3,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]]],[23859,24674,25788]]],["out",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23867]]]]},{"k":"G1555","v":[["*",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1032,1,1,1,2]]]],[27403,27445]]],["declare",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27403]]],["declaring",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27445]]]]},{"k":"G1556","v":[["*",[6,6,[[41,2,2,0,2,[[990,2,2,0,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[46,1,1,3,4,[[1087,1,1,3,4]]],[65,2,2,4,6,[[1172,1,1,4,5],[1185,1,1,5,6]]]],[25691,25693,28264,28977,30803,31019]]],["Avenge",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25691]]],["avenge",[3,3,[[41,1,1,0,1,[[990,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]],[65,1,1,2,3,[[1172,1,1,2,3]]]],[25693,28264,30803]]],["avenged",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31019]]],["revenge",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28977]]]]},{"k":"G1557","v":[["*",[9,9,[[41,3,3,0,3,[[990,2,2,0,2],[993,1,1,2,3]]],[43,1,1,3,4,[[1024,1,1,3,4]]],[44,1,1,4,5,[[1057,1,1,4,5]]],[46,1,1,5,6,[[1084,1,1,5,6]]],[52,1,1,6,7,[[1116,1,1,6,7]]],[57,1,1,7,8,[[1142,1,1,7,8]]],[59,1,1,8,9,[[1152,1,1,8,9]]]],[25695,25696,25848,27140,28264,28927,29657,30163,30413]]],["+",[3,3,[[41,2,2,0,2,[[990,2,2,0,2]]],[43,1,1,2,3,[[1024,1,1,2,3]]]],[25695,25696,27140]]],["Vengeance",[2,2,[[44,1,1,0,1,[[1057,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[28264,30163]]],["punishment",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30413]]],["revenge",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28927]]],["vengeance",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[52,1,1,1,2,[[1116,1,1,1,2]]]],[25848,29657]]]]},{"k":"G1558","v":[["*",[2,2,[[44,1,1,0,1,[[1058,1,1,0,1]]],[51,1,1,1,2,[[1114,1,1,1,2]]]],[28270,29609]]],["avenger",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29609]]],["revenger",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28270]]]]},{"k":"G1559","v":[["*",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]]],[25454,29585]]],["persecute",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25454]]],["persecuted",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29585]]]]},{"k":"G1560","v":[["delivered",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26972]]]]},{"k":"G1561","v":[["for",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30160]]]]},{"k":"G1562","v":[["*",[6,5,[[39,3,2,0,2,[[955,3,2,0,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[41,1,1,3,4,[[982,1,1,3,4]]],[46,1,1,4,5,[[1082,1,1,4,5]]]],[24157,24160,24846,25393,28881]]],["from",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24160]]],["off",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24846]]],["stripped",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[24157,25393]]],["took",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24160]]],["unclothed",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28881]]]]},{"k":"G1563","v":[["*",[98,98,[[39,28,28,0,28,[[930,3,3,0,3],[933,1,1,3,4],[934,1,1,4,5],[936,1,1,5,6],[940,1,1,6,7],[941,3,3,7,10],[942,1,1,10,11],[943,1,1,11,12],[945,1,1,12,13],[946,1,1,13,14],[947,1,1,14,15],[949,1,1,15,16],[950,2,2,16,18],[952,2,2,18,20],[953,1,1,20,21],[954,2,2,21,23],[955,4,4,23,27],[956,1,1,27,28]]],[40,12,12,28,40,[[957,1,1,28,29],[958,1,1,29,30],[959,1,1,30,31],[961,1,1,31,32],[962,4,4,32,36],[967,1,1,36,37],[969,1,1,37,38],[970,1,1,38,39],[972,1,1,39,40]]],[41,16,16,40,56,[[974,1,1,40,41],[978,1,1,41,42],[980,1,1,42,43],[981,1,1,43,44],[982,1,1,44,45],[983,1,1,45,46],[984,2,2,46,48],[985,1,1,48,49],[987,1,1,49,50],[989,3,3,50,53],[993,1,1,53,54],[994,1,1,54,55],[995,1,1,55,56]]],[42,22,22,56,78,[[998,3,3,56,59],[999,2,2,59,61],[1000,2,2,61,63],[1001,1,1,63,64],[1002,3,3,64,67],[1006,2,2,67,69],[1007,3,3,69,72],[1008,3,3,72,75],[1014,2,2,75,77],[1015,1,1,77,78]]],[43,7,7,78,85,[[1026,1,1,78,79],[1031,1,1,79,80],[1033,1,1,80,81],[1034,1,1,81,82],[1036,1,1,82,83],[1042,2,2,83,85]]],[44,2,2,85,87,[[1054,1,1,85,86],[1060,1,1,86,87]]],[46,1,1,87,88,[[1080,1,1,87,88]]],[55,1,1,88,89,[[1131,1,1,88,89]]],[57,1,1,89,90,[[1139,1,1,89,90]]],[58,3,3,90,93,[[1147,1,1,90,91],[1148,1,1,91,92],[1149,1,1,92,93]]],[65,5,5,93,98,[[1168,1,1,93,94],[1178,2,2,94,96],[1187,1,1,96,97],[1188,1,1,97,98]]]],[23182,23184,23191,23258,23303,23357,23534,23581,23589,23597,23620,23662,23720,23747,23764,23843,23883,23885,23985,24008,24038,24090,24125,24165,24176,24184,24190,24202,24228,24266,24289,24375,24412,24417,24440,24462,24645,24738,24769,24880,24979,25152,25277,25305,25369,25431,25477,25493,25546,25601,25672,25674,25688,25828,25876,25968,26096,26101,26107,26142,26143,26162,26196,26215,26260,26279,26281,26521,26523,26531,26538,26554,26582,26589,26606,26787,26788,26867,27249,27442,27484,27537,27606,27805,27810,28181,28327,28858,29935,30072,30296,30335,30350,30731,30897,30905,31078,31085]]],["+",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24462]]],["There",[3,3,[[41,1,1,0,1,[[985,1,1,0,1]]],[42,2,2,1,3,[[1008,1,1,1,2],[1015,1,1,2,3]]]],[25546,26582,26867]]],["for",[1,1,[[65,1,1,0,1,[[1178,1,1,0,1]]]],[30905]]],["place",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23720]]],["there",[83,83,[[39,25,25,0,25,[[930,2,2,0,2],[933,1,1,2,3],[934,1,1,3,4],[936,1,1,4,5],[940,1,1,5,6],[941,3,3,6,9],[942,1,1,9,10],[943,1,1,10,11],[946,1,1,11,12],[947,1,1,12,13],[949,1,1,13,14],[950,2,2,14,16],[952,2,2,16,18],[953,1,1,18,19],[954,1,1,19,20],[955,4,4,20,24],[956,1,1,24,25]]],[40,10,10,25,35,[[957,1,1,25,26],[958,1,1,26,27],[959,1,1,27,28],[961,1,1,28,29],[962,2,2,29,31],[967,1,1,31,32],[969,1,1,32,33],[970,1,1,33,34],[972,1,1,34,35]]],[41,13,13,35,48,[[974,1,1,35,36],[978,1,1,36,37],[980,1,1,37,38],[981,1,1,38,39],[982,1,1,39,40],[983,1,1,40,41],[984,2,2,41,43],[987,1,1,43,44],[989,2,2,44,46],[994,1,1,46,47],[995,1,1,47,48]]],[42,17,17,48,65,[[998,3,3,48,51],[999,2,2,51,53],[1000,2,2,53,55],[1001,1,1,55,56],[1002,3,3,56,59],[1006,2,2,59,61],[1007,2,2,61,63],[1008,2,2,63,65]]],[43,7,7,65,72,[[1026,1,1,65,66],[1031,1,1,66,67],[1033,1,1,67,68],[1034,1,1,68,69],[1036,1,1,69,70],[1042,2,2,70,72]]],[44,1,1,72,73,[[1054,1,1,72,73]]],[46,1,1,73,74,[[1080,1,1,73,74]]],[55,1,1,74,75,[[1131,1,1,74,75]]],[57,1,1,75,76,[[1139,1,1,75,76]]],[58,3,3,76,79,[[1147,1,1,76,77],[1148,1,1,77,78],[1149,1,1,78,79]]],[65,4,4,79,83,[[1168,1,1,79,80],[1178,1,1,80,81],[1187,1,1,81,82],[1188,1,1,82,83]]]],[23182,23184,23258,23303,23357,23534,23581,23589,23597,23620,23662,23747,23764,23843,23883,23885,23985,24008,24038,24125,24165,24176,24184,24190,24202,24228,24266,24289,24375,24412,24417,24645,24738,24769,24880,24979,25152,25277,25305,25369,25431,25477,25493,25601,25672,25674,25876,25968,26096,26101,26107,26142,26143,26162,26196,26215,26260,26279,26281,26521,26523,26538,26554,26589,26606,27249,27442,27484,27537,27606,27805,27810,28181,28858,29935,30072,30296,30335,30350,30731,30897,31078,31085]]],["thither",[7,7,[[39,1,1,0,1,[[930,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,2,2,2,4,[[989,1,1,2,3],[993,1,1,3,4]]],[42,3,3,4,7,[[1007,1,1,4,5],[1014,2,2,5,7]]]],[23191,24440,25688,25828,26531,26787,26788]]],["thitherward",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28327]]],["yonder",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24090]]]]},{"k":"G1564","v":[["*",[27,27,[[39,12,12,0,12,[[932,1,1,0,1],[933,1,1,1,2],[937,2,2,2,4],[939,1,1,4,5],[940,2,2,5,7],[941,1,1,7,8],[942,1,1,8,9],[943,2,2,9,11],[947,1,1,11,12]]],[40,6,6,12,18,[[957,1,1,12,13],[962,3,3,13,16],[963,1,1,16,17],[965,1,1,17,18]]],[41,3,3,18,21,[[981,1,1,18,19],[984,1,1,19,20],[988,1,1,20,21]]],[42,2,2,21,23,[[1000,1,1,21,22],[1007,1,1,22,23]]],[43,4,4,23,27,[[1030,1,1,23,24],[1033,1,1,24,25],[1035,1,1,25,26],[1037,1,1,26,27]]]],[23230,23260,23388,23406,23460,23498,23504,23592,23610,23654,23662,23777,24234,24408,24417,24418,24487,24568,25305,25518,25646,26199,26577,27366,27495,27564,27639]]],["place",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24417]]],["thence",[25,25,[[39,12,12,0,12,[[932,1,1,0,1],[933,1,1,1,2],[937,2,2,2,4],[939,1,1,4,5],[940,2,2,5,7],[941,1,1,7,8],[942,1,1,8,9],[943,2,2,9,11],[947,1,1,11,12]]],[40,5,5,12,17,[[957,1,1,12,13],[962,2,2,13,15],[963,1,1,15,16],[965,1,1,16,17]]],[41,3,3,17,20,[[981,1,1,17,18],[984,1,1,18,19],[988,1,1,19,20]]],[42,2,2,20,22,[[1000,1,1,20,21],[1007,1,1,21,22]]],[43,3,3,22,25,[[1030,1,1,22,23],[1033,1,1,23,24],[1035,1,1,24,25]]]],[23230,23260,23388,23406,23460,23498,23504,23592,23610,23654,23662,23777,24234,24408,24418,24487,24568,25305,25518,25646,26199,26577,27366,27495,27564]]],["there",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27639]]]]},{"k":"G1565","v":[["*",[251,244,[[39,53,50,0,50,[[931,1,1,0,1],[935,3,3,1,4],[936,2,2,4,6],[937,3,3,6,9],[938,3,3,9,12],[939,1,1,12,13],[940,2,2,13,15],[941,3,3,15,18],[942,3,2,18,20],[943,2,2,20,22],[945,2,2,22,24],[946,5,5,24,29],[949,1,1,29,30],[950,4,4,30,34],[952,9,8,34,42],[953,2,2,42,44],[954,4,3,44,47],[955,3,3,47,50]]],[40,24,22,50,72,[[957,1,1,50,51],[958,1,1,51,52],[959,2,2,52,54],[960,2,2,54,56],[962,2,2,56,58],[963,2,2,58,60],[964,1,1,60,61],[968,1,1,61,62],[969,6,5,62,67],[970,3,2,67,69],[972,3,3,69,72]]],[41,37,36,72,108,[[974,1,1,72,73],[976,1,1,73,74],[977,1,1,74,75],[978,3,3,75,78],[980,1,1,78,79],[981,3,3,79,82],[982,3,2,82,84],[983,1,1,84,85],[984,6,6,85,91],[985,1,1,91,92],[986,2,2,92,94],[987,2,2,94,96],[989,2,2,96,98],[990,2,2,98,100],[991,2,2,100,102],[992,3,3,102,105],[993,2,2,105,107],[994,1,1,107,108]]],[42,70,70,108,178,[[997,4,4,108,112],[998,1,1,112,113],[999,2,2,113,115],[1000,3,3,115,118],[1001,9,9,118,127],[1002,2,2,127,129],[1003,2,2,129,131],[1004,3,3,131,134],[1005,7,7,134,141],[1006,3,3,141,144],[1007,5,5,144,149],[1008,1,1,149,150],[1009,5,5,150,155],[1010,3,3,155,158],[1011,1,1,158,159],[1012,5,5,159,164],[1014,4,4,164,168],[1015,3,3,168,171],[1016,4,4,171,175],[1017,3,3,175,178]]],[43,23,23,178,201,[[1018,1,1,178,179],[1019,2,2,179,181],[1020,2,2,181,183],[1024,1,1,183,184],[1025,2,2,184,186],[1026,1,1,186,187],[1027,2,2,187,189],[1029,2,2,189,191],[1031,1,1,191,192],[1033,3,3,192,195],[1036,2,2,195,197],[1037,1,1,197,198],[1038,1,1,198,199],[1039,1,1,199,200],[1045,1,1,200,201]]],[44,4,4,201,205,[[1051,1,1,201,202],[1056,1,1,202,203],[1059,2,2,203,205]]],[45,4,4,205,209,[[1070,1,1,205,206],[1071,2,2,206,208],[1076,1,1,208,209]]],[46,5,4,209,213,[[1084,1,1,209,210],[1085,3,2,210,212],[1087,1,1,212,213]]],[48,1,1,213,214,[[1098,1,1,213,214]]],[52,1,1,214,215,[[1116,1,1,214,215]]],[54,6,6,215,221,[[1125,2,2,215,217],[1126,2,2,217,219],[1127,1,1,219,220],[1128,1,1,220,221]]],[55,1,1,221,222,[[1131,1,1,221,222]]],[57,9,9,222,231,[[1135,1,1,222,223],[1136,2,2,223,225],[1138,1,1,225,226],[1140,2,2,226,228],[1142,1,1,228,229],[1143,1,1,229,230],[1144,1,1,230,231]]],[58,2,2,231,233,[[1146,1,1,231,232],[1149,1,1,232,233]]],[60,1,1,233,234,[[1156,1,1,233,234]]],[61,7,7,234,241,[[1160,1,1,234,235],[1161,4,4,235,239],[1162,1,1,239,240],[1163,1,1,240,241]]],[65,3,3,241,244,[[1175,1,1,241,242],[1177,1,1,242,243],[1182,1,1,243,244]]]],[23193,23338,23341,23343,23358,23373,23401,23405,23410,23431,23432,23436,23484,23490,23534,23540,23550,23583,23598,23632,23655,23661,23718,23727,23728,23734,23754,23755,23759,23866,23879,23882,23895,23918,23976,23979,23986,23993,24000,24003,24005,24007,24015,24027,24078,24083,24109,24137,24148,24192,24224,24280,24312,24313,24334,24358,24418,24462,24478,24483,24501,24680,24728,24734,24736,24741,24749,24775,24779,24883,24886,24893,24974,25065,25142,25169,25194,25195,25277,25306,25335,25337,25375,25394,25431,25496,25497,25502,25504,25505,25506,25522,25574,25577,25602,25603,25660,25682,25691,25702,25735,25758,25780,25797,25814,25849,25860,25886,26052,26062,26077,26083,26116,26148,26150,26181,26195,26209,26219,26221,26229,26245,26248,26249,26253,26256,26257,26279,26286,26339,26373,26391,26423,26425,26449,26451,26452,26465,26468,26476,26477,26482,26487,26516,26536,26552,26572,26574,26576,26628,26636,26655,26656,26657,26660,26688,26689,26694,26725,26734,26739,26740,26749,26752,26798,26800,26802,26810,26846,26852,26856,26880,26882,26883,26886,26901,26905,26921,26942,26967,26990,27009,27019,27157,27177,27184,27253,27268,27269,27338,27343,27435,27486,27516,27518,27601,27608,27628,27670,27715,27906,28089,28232,28294,28295,28565,28578,28595,28729,28924,28941,28946,28989,29241,29659,29821,29827,29840,29853,29862,29878,29930,30005,30016,30025,30051,30099,30102,30149,30187,30237,30273,30352,30495,30556,30582,30584,30586,30595,30620,30640,30846,30885,30968]]],["+",[4,4,[[43,3,3,0,3,[[1033,1,1,0,1],[1036,1,1,1,2],[1045,1,1,2,3]]],[45,1,1,3,4,[[1071,1,1,3,4]]]],[27518,27608,27906,28595]]],["He",[13,13,[[42,13,13,0,13,[[997,1,1,0,1],[999,1,1,1,2],[1001,1,1,2,3],[1004,1,1,3,4],[1005,3,3,4,7],[1009,3,3,7,10],[1012,1,1,10,11],[1014,2,2,11,13]]]],[26052,26150,26245,26425,26451,26465,26476,26655,26656,26660,26740,26802,26810]]],["Peter",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26636]]],["She",[2,2,[[42,2,2,0,2,[[1016,2,2,0,2]]]],[26882,26883]]],["he",[27,27,[[42,18,18,0,18,[[997,1,1,0,1],[998,1,1,1,2],[1000,1,1,2,3],[1001,3,3,3,6],[1002,1,1,6,7],[1003,1,1,7,8],[1004,1,1,8,9],[1005,3,3,9,12],[1010,2,2,12,14],[1011,1,1,14,15],[1012,2,2,15,17],[1015,1,1,17,18]]],[43,1,1,18,19,[[1020,1,1,18,19]]],[46,1,1,19,20,[[1087,1,1,19,20]]],[54,1,1,20,21,[[1126,1,1,20,21]]],[61,6,6,21,27,[[1160,1,1,21,22],[1161,4,4,22,26],[1162,1,1,26,27]]]],[26062,26116,26181,26229,26248,26256,26286,26339,26423,26449,26452,26477,26689,26694,26725,26734,26739,26846,27009,28989,29840,30556,30582,30584,30586,30595,30620]]],["him",[5,5,[[42,3,3,0,3,[[999,1,1,0,1],[1001,1,1,1,2],[1009,1,1,2,3]]],[44,2,2,3,5,[[1059,2,2,3,5]]]],[26148,26253,26657,28294,28295]]],["his",[6,6,[[42,2,2,0,2,[[1001,1,1,0,1],[1005,1,1,1,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]],[54,1,1,3,4,[[1126,1,1,3,4]]],[55,1,1,4,5,[[1131,1,1,4,5]]],[60,1,1,5,6,[[1156,1,1,5,6]]]],[26257,26468,28941,29853,29930,30495]]],["it",[1,1,[[61,1,1,0,1,[[1163,1,1,0,1]]]],[30640]]],["other",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25702]]],["same",[22,22,[[39,7,7,0,7,[[938,1,1,0,1],[941,1,1,1,2],[943,1,1,2,3],[946,2,2,3,5],[950,1,1,5,6],[954,1,1,6,7]]],[40,1,1,7,8,[[960,1,1,7,8]]],[42,9,9,8,17,[[997,1,1,8,9],[1000,1,1,9,10],[1001,2,2,10,12],[1006,1,1,12,13],[1007,1,1,13,14],[1008,1,1,14,15],[1014,1,1,15,16],[1016,1,1,16,17]]],[43,3,3,17,20,[[1019,1,1,17,18],[1029,1,1,18,19],[1033,1,1,19,20]]],[46,1,1,20,21,[[1084,1,1,20,21]]],[65,1,1,21,22,[[1177,1,1,21,22]]]],[23436,23540,23655,23728,23755,23895,24109,24358,26077,26209,26219,26221,26482,26572,26628,26798,26886,26990,27343,27516,28924,30885]]],["selfsame",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23358]]],["she",[2,2,[[40,1,1,0,1,[[972,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]]],[24883,26552]]],["that",[99,95,[[39,31,29,0,29,[[935,3,3,0,3],[936,1,1,3,4],[937,3,3,4,7],[938,2,2,7,9],[939,1,1,9,10],[940,2,2,10,12],[941,1,1,12,13],[942,3,2,13,15],[945,1,1,15,16],[946,3,3,16,19],[950,1,1,19,20],[952,4,4,20,24],[954,3,2,24,26],[955,3,3,26,29]]],[40,11,10,29,39,[[959,2,2,29,31],[962,2,2,31,33],[963,1,1,33,34],[969,3,3,34,37],[970,3,2,37,39]]],[41,23,22,39,61,[[978,3,3,39,42],[981,1,1,42,43],[982,3,2,43,45],[983,1,1,45,46],[984,4,4,46,50],[986,1,1,50,51],[987,2,2,51,53],[989,2,2,53,55],[990,1,1,55,56],[991,1,1,56,57],[992,2,2,57,59],[993,1,1,59,60],[994,1,1,60,61]]],[42,14,14,61,75,[[997,1,1,61,62],[1000,1,1,62,63],[1002,1,1,63,64],[1007,2,2,64,66],[1010,1,1,66,67],[1012,2,2,67,69],[1014,1,1,69,70],[1015,2,2,70,72],[1017,3,3,72,75]]],[43,8,8,75,83,[[1018,1,1,75,76],[1020,1,1,76,77],[1025,2,2,77,79],[1029,1,1,79,80],[1031,1,1,80,81],[1036,1,1,81,82],[1039,1,1,82,83]]],[48,1,1,83,84,[[1098,1,1,83,84]]],[52,1,1,84,85,[[1116,1,1,84,85]]],[54,3,3,85,88,[[1125,2,2,85,87],[1128,1,1,87,88]]],[57,4,4,88,92,[[1135,1,1,88,89],[1136,1,1,89,90],[1140,1,1,90,91],[1143,1,1,91,92]]],[58,2,2,92,94,[[1146,1,1,92,93],[1149,1,1,93,94]]],[65,1,1,94,95,[[1182,1,1,94,95]]]],[23338,23341,23343,23373,23401,23405,23410,23431,23432,23484,23490,23534,23583,23598,23632,23727,23734,23754,23759,23918,23993,24003,24005,24007,24078,24083,24137,24148,24192,24312,24313,24418,24462,24483,24728,24741,24749,24775,24779,25169,25194,25195,25306,25375,25394,25431,25502,25504,25505,25506,25574,25602,25603,25660,25682,25691,25735,25797,25814,25860,25886,26083,26195,26279,26574,26576,26688,26749,26752,26800,26852,26856,26901,26905,26921,26942,27019,27177,27184,27338,27435,27601,27715,29241,29659,29821,29827,29878,30005,30025,30099,30187,30273,30352,30968]]],["their",[2,1,[[46,2,1,0,1,[[1085,2,1,0,1]]]],[28946]]],["theirs",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29862]]],["them",[8,8,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,2,2,1,3,[[960,1,1,1,2],[972,1,1,2,3]]],[41,1,1,3,4,[[980,1,1,3,4]]],[42,1,1,4,5,[[1006,1,1,4,5]]],[45,1,1,5,6,[[1071,1,1,5,6]]],[57,2,2,6,8,[[1136,1,1,6,7],[1138,1,1,7,8]]]],[23550,24334,24886,25277,26516,28578,30016,30051]]],["they",[14,14,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[42,5,5,2,7,[[1001,1,1,2,3],[1003,1,1,3,4],[1006,1,1,4,5],[1007,1,1,5,6],[1016,1,1,6,7]]],[43,3,3,7,10,[[1027,2,2,7,9],[1038,1,1,9,10]]],[44,1,1,10,11,[[1056,1,1,10,11]]],[45,2,2,11,13,[[1070,1,1,11,12],[1076,1,1,12,13]]],[57,1,1,13,14,[[1144,1,1,13,14]]]],[24893,25335,26249,26373,26487,26536,26880,27268,27269,27670,28232,28565,28729,30237]]],["things",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28089]]],["this",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[24000]]],["those",[38,37,[[39,10,9,0,9,[[931,1,1,0,1],[949,1,1,1,2],[950,2,2,2,4],[952,4,3,4,7],[953,2,2,7,9]]],[40,8,8,9,17,[[957,1,1,9,10],[958,1,1,10,11],[963,1,1,11,12],[964,1,1,12,13],[968,1,1,13,14],[969,3,3,14,17]]],[41,11,11,17,28,[[974,1,1,17,18],[976,1,1,18,19],[977,1,1,19,20],[981,1,1,20,21],[984,2,2,21,23],[985,1,1,23,24],[986,1,1,24,25],[991,1,1,25,26],[992,1,1,26,27],[993,1,1,27,28]]],[42,1,1,28,29,[[1004,1,1,28,29]]],[43,5,5,29,34,[[1019,1,1,29,30],[1024,1,1,30,31],[1026,1,1,31,32],[1033,1,1,32,33],[1037,1,1,33,34]]],[57,2,2,34,36,[[1140,1,1,34,35],[1142,1,1,35,36]]],[65,1,1,36,37,[[1175,1,1,36,37]]]],[23193,23866,23879,23882,23976,23979,23986,24015,24027,24224,24280,24478,24501,24680,24734,24736,24741,24974,25065,25142,25337,25496,25497,25522,25577,25758,25780,25849,26391,26967,27157,27253,27486,27628,30102,30149,30846]]],["very",[2,2,[[39,2,2,0,2,[[943,1,1,0,1],[945,1,1,1,2]]]],[23661,23718]]]]},{"k":"G1566","v":[["there",[2,2,[[43,2,2,0,2,[[1038,1,1,0,1],[1039,1,1,1,2]]]],[27667,27709]]]]},{"k":"G1567","v":[["*",[7,7,[[41,2,2,0,2,[[983,2,2,0,2]]],[43,1,1,2,3,[[1032,1,1,2,3]]],[44,1,1,3,4,[[1048,1,1,3,4]]],[57,2,2,4,6,[[1143,1,1,4,5],[1144,1,1,5,6]]],[59,1,1,6,7,[[1151,1,1,6,7]]]],[25455,25456,27459,28002,30178,30229,30384]]],["+",[2,2,[[43,1,1,0,1,[[1032,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[27459,30229]]],["after",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28002]]],["enquired",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30384]]],["required",[2,2,[[41,2,2,0,2,[[983,2,2,0,2]]]],[25455,25456]]],["seek",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30178]]]]},{"k":"G1568","v":[["*",[4,4,[[40,4,4,0,4,[[965,1,1,0,1],[970,1,1,1,2],[972,2,2,2,4]]]],[24553,24787,24878,24879]]],["affrighted",[2,2,[[40,2,2,0,2,[[972,2,2,0,2]]]],[24878,24879]]],["amazed",[2,2,[[40,2,2,0,2,[[965,1,1,0,1],[970,1,1,1,2]]]],[24553,24787]]]]},{"k":"G1569","v":[["wondering",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27007]]]]},{"k":"G1570","v":[["+",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27135]]]]},{"k":"G1571","v":[["*",[2,2,[[45,1,1,0,1,[[1066,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[28461,29848]]],["out",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28461]]],["purge",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29848]]]]},{"k":"G1572","v":[["burned",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27957]]]]},{"k":"G1573","v":[["*",[6,6,[[41,1,1,0,1,[[990,1,1,0,1]]],[46,2,2,1,3,[[1081,2,2,1,3]]],[47,1,1,3,4,[[1096,1,1,3,4]]],[48,1,1,4,5,[[1099,1,1,4,5]]],[52,1,1,5,6,[[1118,1,1,5,6]]]],[25689,28860,28875,29197,29264,29691]]],["+",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29691]]],["faint",[4,4,[[41,1,1,0,1,[[990,1,1,0,1]]],[46,2,2,1,3,[[1081,2,2,1,3]]],[48,1,1,3,4,[[1099,1,1,3,4]]]],[25689,28860,28875,29264]]],["weary",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29197]]]]},{"k":"G1574","v":[["pierced",[2,2,[[42,1,1,0,1,[[1015,1,1,0,1]]],[65,1,1,1,2,[[1167,1,1,1,2]]]],[26862,30704]]]]},{"k":"G1575","v":[["off",[3,3,[[44,3,3,0,3,[[1056,3,3,0,3]]]],[28226,28228,28229]]]]},{"k":"G1576","v":[["*",[2,2,[[44,1,1,0,1,[[1048,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]]],[28018,29148]]],["exclude",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29148]]],["excluded",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28018]]]]},{"k":"G1577","v":[["*",[115,112,[[39,3,2,0,2,[[944,1,1,0,1],[946,2,1,1,2]]],[43,24,24,2,26,[[1019,1,1,2,3],[1022,1,1,3,4],[1024,1,1,4,5],[1025,2,2,5,7],[1026,1,1,7,8],[1028,2,2,8,10],[1029,2,2,10,12],[1030,1,1,12,13],[1031,2,2,13,15],[1032,4,4,15,19],[1033,1,1,19,20],[1035,1,1,20,21],[1036,3,3,21,24],[1037,2,2,24,26]]],[44,5,5,26,31,[[1061,5,5,26,31]]],[45,22,21,31,52,[[1062,1,1,31,32],[1065,1,1,32,33],[1067,1,1,33,34],[1068,1,1,34,35],[1071,1,1,35,36],[1072,3,3,36,39],[1073,1,1,39,40],[1075,9,9,40,49],[1076,1,1,49,50],[1077,3,2,50,52]]],[46,9,9,52,61,[[1078,1,1,52,53],[1085,5,5,53,58],[1088,2,2,58,60],[1089,1,1,60,61]]],[47,3,3,61,64,[[1091,3,3,61,64]]],[48,9,9,64,73,[[1097,1,1,64,65],[1099,2,2,65,67],[1101,6,6,67,73]]],[49,2,2,73,75,[[1105,1,1,73,74],[1106,1,1,74,75]]],[50,4,4,75,79,[[1107,2,2,75,77],[1110,2,2,77,79]]],[51,2,2,79,81,[[1111,1,1,79,80],[1112,1,1,80,81]]],[52,2,2,81,83,[[1116,2,2,81,83]]],[53,3,3,83,86,[[1121,2,2,83,85],[1123,1,1,85,86]]],[56,1,1,86,87,[[1132,1,1,86,87]]],[57,2,2,87,89,[[1134,1,1,87,88],[1144,1,1,88,89]]],[58,1,1,89,90,[[1150,1,1,89,90]]],[63,3,3,90,93,[[1165,3,3,90,93]]],[65,20,19,93,112,[[1167,4,3,93,96],[1168,9,9,96,105],[1169,6,6,105,111],[1188,1,1,111,112]]]],[23690,23744,26996,27070,27154,27177,27179,27247,27329,27333,27338,27342,27363,27437,27441,27445,27446,27464,27483,27488,27579,27617,27624,27626,27643,27654,28337,28340,28341,28352,28359,28365,28450,28471,28504,28599,28616,28618,28622,28662,28682,28683,28690,28697,28701,28706,28711,28712,28713,28727,28777,28795,28801,28933,28950,28951,28955,28956,28997,29017,29035,29059,29070,29079,29228,29261,29272,29327,29328,29329,29331,29333,29336,29427,29457,29483,29489,29557,29558,29561,29584,29650,29653,29736,29746,29779,29940,29989,30235,30368,30664,30667,30668,30701,30708,30717,30718,30724,30725,30728,30729,30734,30735,30740,30746,30747,30752,30753,30759,30760,30768,31096]]],["+",[2,2,[[43,2,2,0,2,[[1031,2,2,0,2]]]],[27437,27441]]],["assembly",[3,3,[[43,3,3,0,3,[[1036,3,3,0,3]]]],[27617,27624,27626]]],["church",[74,73,[[39,3,2,0,2,[[944,1,1,0,1],[946,2,1,1,2]]],[43,16,16,2,18,[[1019,1,1,2,3],[1022,1,1,3,4],[1024,1,1,4,5],[1025,2,2,5,7],[1028,2,2,7,9],[1029,2,2,9,11],[1030,1,1,11,12],[1032,3,3,12,15],[1035,1,1,15,16],[1037,2,2,16,18]]],[44,3,3,18,21,[[1061,3,3,18,21]]],[45,16,16,21,37,[[1062,1,1,21,22],[1065,1,1,22,23],[1067,1,1,23,24],[1071,1,1,24,25],[1072,2,2,25,27],[1073,1,1,27,28],[1075,7,7,28,35],[1076,1,1,35,36],[1077,1,1,36,37]]],[46,1,1,37,38,[[1078,1,1,37,38]]],[47,1,1,38,39,[[1091,1,1,38,39]]],[48,9,9,39,48,[[1097,1,1,39,40],[1099,2,2,40,42],[1101,6,6,42,48]]],[49,2,2,48,50,[[1105,1,1,48,49],[1106,1,1,49,50]]],[50,4,4,50,54,[[1107,2,2,50,52],[1110,2,2,52,54]]],[51,1,1,54,55,[[1111,1,1,54,55]]],[52,1,1,55,56,[[1116,1,1,55,56]]],[53,3,3,56,59,[[1121,2,2,56,58],[1123,1,1,58,59]]],[56,1,1,59,60,[[1132,1,1,59,60]]],[57,2,2,60,62,[[1134,1,1,60,61],[1144,1,1,61,62]]],[58,1,1,62,63,[[1150,1,1,62,63]]],[63,3,3,63,66,[[1165,3,3,63,66]]],[65,7,7,66,73,[[1168,4,4,66,70],[1169,3,3,70,73]]]],[23690,23744,26996,27070,27154,27177,27179,27329,27333,27338,27342,27363,27445,27446,27464,27579,27643,27654,28337,28341,28359,28365,28450,28471,28599,28618,28622,28662,28682,28683,28690,28697,28701,28706,28713,28727,28795,28801,29070,29228,29261,29272,29327,29328,29329,29331,29333,29336,29427,29457,29483,29489,29557,29558,29561,29650,29736,29746,29779,29940,29989,30235,30368,30664,30667,30668,30718,30725,30729,30735,30747,30753,30760]]],["churches",[36,35,[[43,3,3,0,3,[[1026,1,1,0,1],[1032,1,1,1,2],[1033,1,1,2,3]]],[44,2,2,3,5,[[1061,2,2,3,5]]],[45,6,6,5,11,[[1068,1,1,5,6],[1072,1,1,6,7],[1075,2,2,7,9],[1077,2,2,9,11]]],[46,8,8,11,19,[[1085,5,5,11,16],[1088,2,2,16,18],[1089,1,1,18,19]]],[47,2,2,19,21,[[1091,2,2,19,21]]],[51,1,1,21,22,[[1112,1,1,21,22]]],[52,1,1,22,23,[[1116,1,1,22,23]]],[65,13,12,23,35,[[1167,4,3,23,26],[1168,5,5,26,31],[1169,3,3,31,34],[1188,1,1,34,35]]]],[27247,27483,27488,28340,28352,28504,28616,28711,28712,28777,28795,28933,28950,28951,28955,28956,28997,29017,29035,29059,29079,29584,29653,30701,30708,30717,30724,30728,30734,30740,30746,30752,30759,30768,31096]]]]},{"k":"G1578","v":[["*",[3,3,[[44,2,2,0,2,[[1048,1,1,0,1],[1061,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[28003,28353,30435]]],["+",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28353]]],["eschew",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30435]]],["way",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28003]]]]},{"k":"G1579","v":[["out",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27897]]]]},{"k":"G1580","v":[["out",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25207]]]]},{"k":"G1581","v":[["*",[11,11,[[39,4,4,0,4,[[931,1,1,0,1],[933,1,1,1,2],[935,1,1,2,3],[946,1,1,3,4]]],[41,3,3,4,7,[[975,1,1,4,5],[985,2,2,5,7]]],[44,2,2,7,9,[[1056,2,2,7,9]]],[46,1,1,9,10,[[1088,1,1,9,10]]],[59,1,1,10,11,[[1153,1,1,10,11]]]],[23202,23264,23335,23735,25034,25525,25527,28231,28233,29001,30431]]],["+",[4,4,[[39,2,2,0,2,[[933,1,1,0,1],[946,1,1,1,2]]],[41,2,2,2,4,[[985,2,2,2,4]]]],[23264,23735,25525,25527]]],["cut",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28233]]],["down",[3,3,[[39,2,2,0,2,[[931,1,1,0,1],[935,1,1,1,2]]],[41,1,1,2,3,[[975,1,1,2,3]]]],[23202,23335,25034]]],["hindered",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30431]]],["off",[2,2,[[44,1,1,0,1,[[1056,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[28231,29001]]]]},{"k":"G1582","v":[["attentive",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25779]]]]},{"k":"G1583","v":[["tell",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27756]]]]},{"k":"G1584","v":[["forth",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23582]]]]},{"k":"G1585","v":[["forgotten",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30217]]]]},{"k":"G1586","v":[["*",[21,19,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,3,3,1,4,[[978,1,1,1,2],[982,1,1,2,3],[986,1,1,3,4]]],[42,5,4,4,8,[[1002,1,1,4,5],[1009,1,1,5,6],[1011,3,2,6,8]]],[43,7,7,8,15,[[1018,2,2,8,10],[1023,1,1,10,11],[1030,1,1,11,12],[1032,3,3,12,15]]],[45,3,2,15,17,[[1062,3,2,15,17]]],[48,1,1,17,18,[[1097,1,1,17,18]]],[58,1,1,18,19,[[1147,1,1,18,19]]]],[24737,25159,25405,25560,26327,26648,26715,26718,26925,26947,27106,27379,27449,27464,27467,28390,28391,29210,30298]]],["choice",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27449]]],["chose",[3,3,[[41,1,1,0,1,[[978,1,1,0,1]]],[43,2,2,1,3,[[1023,1,1,1,2],[1030,1,1,2,3]]]],[25159,27106,27379]]],["chosen",[16,14,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[42,5,4,2,6,[[1002,1,1,2,3],[1009,1,1,3,4],[1011,3,2,4,6]]],[43,4,4,6,10,[[1018,2,2,6,8],[1032,2,2,8,10]]],[45,3,2,10,12,[[1062,3,2,10,12]]],[48,1,1,12,13,[[1097,1,1,12,13]]],[58,1,1,13,14,[[1147,1,1,13,14]]]],[24737,25405,26327,26648,26715,26718,26925,26947,27464,27467,28390,28391,29210,30298]]],["out",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25560]]]]},{"k":"G1587","v":[["fail",[3,3,[[41,2,2,0,2,[[988,1,1,0,1],[994,1,1,1,2]]],[57,1,1,2,3,[[1133,1,1,2,3]]]],[25629,25896,29975]]]]},{"k":"G1588","v":[["*",[23,23,[[39,5,5,0,5,[[948,1,1,0,1],[950,1,1,1,2],[952,3,3,2,5]]],[40,3,3,5,8,[[969,3,3,5,8]]],[41,2,2,8,10,[[990,1,1,8,9],[995,1,1,9,10]]],[44,2,2,10,12,[[1053,1,1,10,11],[1061,1,1,11,12]]],[50,1,1,12,13,[[1109,1,1,12,13]]],[53,1,1,13,14,[[1123,1,1,13,14]]],[54,1,1,14,15,[[1126,1,1,14,15]]],[55,1,1,15,16,[[1129,1,1,15,16]]],[59,4,4,16,20,[[1151,1,1,16,17],[1152,3,3,17,20]]],[62,2,2,20,22,[[1164,2,2,20,22]]],[65,1,1,22,23,[[1183,1,1,22,23]]]],[23808,23886,23979,23981,23988,24737,24739,24744,25695,25970,28149,28349,29529,29784,29837,29893,30376,30403,30405,30408,30646,30658,30989]]],["+",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]]],[23979,24737,29837]]],["Elect",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30376]]],["chosen",[7,7,[[39,2,2,0,2,[[948,1,1,0,1],[950,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[44,1,1,3,4,[[1061,1,1,3,4]]],[59,2,2,4,6,[[1152,2,2,4,6]]],[65,1,1,6,7,[[1183,1,1,6,7]]]],[23808,23886,25970,28349,30403,30408,30989]]],["elect",[12,12,[[39,2,2,0,2,[[952,2,2,0,2]]],[40,2,2,2,4,[[969,2,2,2,4]]],[41,1,1,4,5,[[990,1,1,4,5]]],[44,1,1,5,6,[[1053,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[53,1,1,7,8,[[1123,1,1,7,8]]],[55,1,1,8,9,[[1129,1,1,8,9]]],[59,1,1,9,10,[[1152,1,1,9,10]]],[62,2,2,10,12,[[1164,2,2,10,12]]]],[23981,23988,24739,24744,25695,28149,29529,29784,29893,30405,30646,30658]]]]},{"k":"G1589","v":[["*",[7,7,[[43,1,1,0,1,[[1026,1,1,0,1]]],[44,4,4,1,5,[[1054,1,1,1,2],[1056,3,3,2,5]]],[51,1,1,5,6,[[1111,1,1,5,6]]],[60,1,1,6,7,[[1156,1,1,6,7]]]],[27231,28166,28214,28216,28237,29564,30489]]],["chosen",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27231]]],["election",[6,6,[[44,4,4,0,4,[[1054,1,1,0,1],[1056,3,3,1,4]]],[51,1,1,4,5,[[1111,1,1,4,5]]],[60,1,1,5,6,[[1156,1,1,5,6]]]],[28166,28214,28216,28237,29564,30489]]]]},{"k":"G1590","v":[["*",[6,6,[[39,2,2,0,2,[[937,1,1,0,1],[943,1,1,1,2]]],[40,1,1,2,3,[[964,1,1,2,3]]],[47,1,1,3,4,[[1096,1,1,3,4]]],[57,2,2,4,6,[[1144,2,2,4,6]]]],[23415,23665,24503,29197,30215,30217]]],["+",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23415]]],["faint",[5,5,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[47,1,1,2,3,[[1096,1,1,2,3]]],[57,2,2,3,5,[[1144,2,2,3,5]]]],[23665,24503,29197,30215,30217]]]]},{"k":"G1591","v":[["*",[5,5,[[41,2,2,0,2,[[979,2,2,0,2]]],[42,3,3,2,5,[[1007,1,1,2,3],[1008,1,1,3,4],[1009,1,1,4,5]]]],[25233,25239,26525,26583,26635]]],["wipe",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[42,1,1,1,2,[[1009,1,1,1,2]]]],[25233,26635]]],["wiped",[3,3,[[41,1,1,0,1,[[979,1,1,0,1]]],[42,2,2,1,3,[[1007,1,1,1,2],[1008,1,1,2,3]]]],[25239,26525,26583]]]]},{"k":"G1592","v":[["derided",[2,2,[[41,2,2,0,2,[[988,1,1,0,1],[995,1,1,1,2]]]],[25634,25970]]]]},{"k":"G1593","v":[["away",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26223]]]]},{"k":"G1594","v":[["Awake",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28752]]]]},{"k":"G1595","v":[["+",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29952]]]]},{"k":"G1596","v":[["*",[2,2,[[57,1,1,0,1,[[1142,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[30159,30467]]],["wilfully",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30159]]],["willingly",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30467]]]]},{"k":"G1597","v":[["*",[2,2,[[60,2,2,0,2,[[1157,1,1,0,1],[1158,1,1,1,2]]]],[30503,30527]]],["old",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30527]]],["time",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30503]]]]},{"k":"G1598","v":[["*",[4,4,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,2,2,1,3,[[976,1,1,1,2],[982,1,1,2,3]]],[45,1,1,3,4,[[1071,1,1,3,4]]]],[23216,25075,25388,28576]]],["tempt",[3,3,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]],[45,1,1,2,3,[[1071,1,1,2,3]]]],[23216,25075,28576]]],["tempted",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25388]]]]},{"k":"G1599","v":[["*",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1034,1,1,1,2]]]],[27366,27533]]],["+",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27533]]],["forth",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27366]]]]},{"k":"G1600","v":[["forth",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28209]]]]},{"k":"G1601","v":[["*",[13,13,[[40,1,1,0,1,[[969,1,1,0,1]]],[43,5,5,1,6,[[1029,1,1,1,2],[1044,4,4,2,6]]],[44,1,1,6,7,[[1054,1,1,6,7]]],[45,1,1,7,8,[[1074,1,1,7,8]]],[47,1,1,8,9,[[1095,1,1,8,9]]],[58,1,1,9,10,[[1146,1,1,9,10]]],[59,1,1,10,11,[[1151,1,1,10,11]]],[60,1,1,11,12,[[1158,1,1,11,12]]],[65,1,1,12,13,[[1168,1,1,12,13]]]],[24742,27344,27872,27881,27884,27887,28161,28673,29166,30277,30398,30539,30722]]],["away",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30398]]],["cast",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27881]]],["effect",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28161]]],["faileth",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28673]]],["fall",[2,2,[[40,1,1,0,1,[[969,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[24742,27872]]],["fallen",[3,3,[[43,1,1,0,1,[[1044,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[27884,29166,30722]]],["falleth",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30277]]],["from",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30539]]],["off",[2,2,[[43,2,2,0,2,[[1029,1,1,0,1],[1044,1,1,1,2]]]],[27344,27887]]]]},{"k":"G1602","v":[["*",[3,3,[[43,3,3,0,3,[[1032,1,1,0,1],[1035,1,1,1,2],[1037,1,1,2,3]]]],[27481,27575,27632]]],["away",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27632]]],["sailed",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27481]]],["thence",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27575]]]]},{"k":"G1603","v":[["fulfilled",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27395]]]]},{"k":"G1604","v":[["accomplishment",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27690]]]]},{"k":"G1605","v":[["*",[13,13,[[39,4,4,0,4,[[935,1,1,0,1],[941,1,1,1,2],[947,1,1,2,3],[950,1,1,3,4]]],[40,5,5,4,9,[[957,1,1,4,5],[962,1,1,5,6],[963,1,1,6,7],[966,1,1,7,8],[967,1,1,8,9]]],[41,3,3,9,12,[[974,1,1,9,10],[976,1,1,10,11],[981,1,1,11,12]]],[43,1,1,12,13,[[1030,1,1,12,13]]]],[23344,23593,23787,23905,24237,24409,24500,24614,24658,25021,25095,25344,27374]]],["amazed",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[981,1,1,2,3]]]],[23787,25021,25344]]],["astonished",[10,10,[[39,3,3,0,3,[[935,1,1,0,1],[941,1,1,1,2],[950,1,1,2,3]]],[40,5,5,3,8,[[957,1,1,3,4],[962,1,1,4,5],[963,1,1,5,6],[966,1,1,6,7],[967,1,1,7,8]]],[41,1,1,8,9,[[976,1,1,8,9]]],[43,1,1,9,10,[[1030,1,1,9,10]]]],[23344,23593,23905,24237,24409,24500,24614,24658,25095,27374]]]]},{"k":"G1606","v":[["ghost",[3,3,[[40,2,2,0,2,[[971,2,2,0,2]]],[41,1,1,2,3,[[995,1,1,2,3]]]],[24863,24865,25981]]]]},{"k":"G1607","v":[["*",[34,34,[[39,6,6,0,6,[[931,1,1,0,1],[932,1,1,1,2],[943,2,2,2,4],[945,1,1,4,5],[948,1,1,5,6]]],[40,11,11,6,17,[[957,1,1,6,7],[962,1,1,7,8],[963,5,5,8,13],[966,2,2,13,15],[967,1,1,15,16],[969,1,1,16,17]]],[41,3,3,17,20,[[975,1,1,17,18],[976,2,2,18,20]]],[42,2,2,20,22,[[1001,1,1,20,21],[1011,1,1,21,22]]],[43,2,2,22,24,[[1026,1,1,22,23],[1042,1,1,23,24]]],[48,1,1,24,25,[[1100,1,1,24,25]]],[65,9,9,25,34,[[1167,1,1,25,26],[1170,1,1,26,27],[1175,2,2,27,29],[1177,1,1,29,30],[1182,1,1,30,31],[1185,2,2,31,33],[1188,1,1,33,34]]]],[23197,23213,23644,23651,23721,23821,24220,24418,24478,24482,24483,24484,24486,24605,24634,24659,24718,25032,25085,25100,26239,26725,27244,27800,29301,30713,30773,30857,30858,30877,30968,31032,31038,31081]]],["+",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23721]]],["come",[2,2,[[40,2,2,0,2,[[963,2,2,0,2]]]],[24478,24486]]],["cometh",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[23644,24483]]],["depart",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]]],[24418,27800]]],["departed",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23821]]],["forth",[4,4,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[42,1,1,2,3,[[1001,1,1,2,3]]],[65,1,1,3,4,[[1182,1,1,3,4]]]],[24605,25032,26239,30968]]],["goeth",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31032]]],["issued",[2,2,[[65,2,2,0,2,[[1175,2,2,0,2]]]],[30857,30858]]],["out",[5,5,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,2,2,1,3,[[957,1,1,1,2],[963,1,1,2,3]]],[41,1,1,3,4,[[976,1,1,3,4]]],[43,1,1,4,5,[[1026,1,1,4,5]]]],[23197,24220,24482,25100,27244]]],["proceed",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]]],[23651,24484,29301]]],["proceeded",[3,3,[[41,1,1,0,1,[[976,1,1,0,1]]],[65,2,2,1,3,[[1170,1,1,1,2],[1185,1,1,2,3]]]],[25085,30773,31038]]],["proceedeth",[3,3,[[39,1,1,0,1,[[932,1,1,0,1]]],[42,1,1,1,2,[[1011,1,1,1,2]]],[65,1,1,2,3,[[1177,1,1,2,3]]]],[23213,26725,30877]]],["proceeding",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31081]]],["went",[4,4,[[40,3,3,0,3,[[966,1,1,0,1],[967,1,1,1,2],[969,1,1,2,3]]],[65,1,1,3,4,[[1167,1,1,3,4]]]],[24634,24659,24718,30713]]]]},{"k":"G1608","v":[["fornication",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30679]]]]},{"k":"G1609","v":[["rejected",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29145]]]]},{"k":"G1610","v":[["*",[4,4,[[39,2,2,0,2,[[941,1,1,0,1],[943,1,1,1,2]]],[41,1,1,2,3,[[989,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[23568,23646,25657,30684]]],["root",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25657]]],["roots",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30684]]],["up",[2,2,[[39,2,2,0,2,[[941,1,1,0,1],[943,1,1,1,2]]]],[23568,23646]]]]},{"k":"G1611","v":[["*",[7,7,[[40,2,2,0,2,[[961,1,1,0,1],[972,1,1,1,2]]],[41,1,1,2,3,[[977,1,1,2,3]]],[43,4,4,3,7,[[1020,1,1,3,4],[1027,1,1,4,5],[1028,1,1,5,6],[1039,1,1,6,7]]]],[24406,24881,25133,27006,27269,27312,27721]]],["+",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25133]]],["amazed",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24881]]],["amazement",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27006]]],["astonishment",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24406]]],["trance",[3,3,[[43,3,3,0,3,[[1027,1,1,0,1],[1028,1,1,1,2],[1039,1,1,2,3]]]],[27269,27312,27721]]]]},{"k":"G1612","v":[["subverted",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29934]]]]},{"k":"G1613","v":[["trouble",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27503]]]]},{"k":"G1614","v":[["*",[16,14,[[39,6,5,0,5,[[936,1,1,0,1],[940,3,2,1,3],[942,1,1,3,4],[954,1,1,4,5]]],[40,3,2,5,7,[[957,1,1,5,6],[959,2,1,6,7]]],[41,3,3,7,10,[[977,1,1,7,8],[978,1,1,8,9],[994,1,1,9,10]]],[42,1,1,10,11,[[1017,1,1,10,11]]],[43,3,3,11,14,[[1021,1,1,11,12],[1043,1,1,12,13],[1044,1,1,13,14]]]],[23348,23502,23538,23628,24105,24256,24293,25120,25156,25917,26916,27052,27824,27885]]],["cast",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27885]]],["forth",[13,12,[[39,5,4,0,4,[[936,1,1,0,1],[940,3,2,1,3],[942,1,1,3,4]]],[40,2,2,4,6,[[957,1,1,4,5],[959,1,1,5,6]]],[41,3,3,6,9,[[977,1,1,6,7],[978,1,1,7,8],[994,1,1,8,9]]],[42,1,1,9,10,[[1017,1,1,9,10]]],[43,2,2,10,12,[[1021,1,1,10,11],[1043,1,1,11,12]]]],[23348,23502,23538,23628,24256,24293,25120,25156,25917,26916,27052,27824]]],["out",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]]],[24105,24293]]]]},{"k":"G1615","v":[["finish",[2,2,[[41,2,2,0,2,[[986,2,2,0,2]]]],[25582,25583]]]]},{"k":"G1616","v":[["+",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27830]]]]},{"k":"G1617","v":[["earnestly",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25908]]]]},{"k":"G1618","v":[["*",[2,2,[[43,1,1,0,1,[[1029,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[27342,30454]]],["ceasing",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27342]]],["fervent",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30454]]]]},{"k":"G1619","v":[["fervently",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30396]]]]},{"k":"G1620","v":[["*",[4,4,[[43,4,4,0,4,[[1024,1,1,0,1],[1028,1,1,1,2],[1035,1,1,2,3],[1045,1,1,3,4]]]],[27137,27311,27583,27922]]],["expounded",[3,3,[[43,3,3,0,3,[[1028,1,1,0,1],[1035,1,1,1,2],[1045,1,1,2,3]]]],[27311,27583,27922]]],["out",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27137]]]]},{"k":"G1621","v":[["*",[4,4,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[43,2,2,2,4,[[1030,1,1,2,3],[1035,1,1,3,4]]]],[23431,24418,27413,27563]]],["off",[3,3,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[43,1,1,2,3,[[1030,1,1,2,3]]]],[23431,24418,27413]]],["shook",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27563]]]]},{"k":"G1622","v":[["*",[9,9,[[39,1,1,0,1,[[951,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[45,4,4,2,6,[[1067,1,1,2,3],[1075,1,1,3,4],[1076,2,2,4,6]]],[46,2,2,6,8,[[1089,2,2,6,8]]],[53,1,1,8,9,[[1123,1,1,8,9]]]],[23944,27845,28485,28683,28720,28745,29024,29025,29782]]],["+",[3,3,[[45,2,2,0,2,[[1075,1,1,0,1],[1076,1,1,1,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]]],[28683,28720,29782]]],["excepted",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28745]]],["out",[2,2,[[46,2,2,0,2,[[1089,2,2,0,2]]]],[29024,29025]]],["outside",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23944]]],["things",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27845]]],["without",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28485]]]]},{"k":"G1623","v":[["sixth",[14,14,[[39,2,2,0,2,[[948,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[41,3,3,3,6,[[973,2,2,3,5],[995,1,1,5,6]]],[42,2,2,6,8,[[1000,1,1,6,7],[1015,1,1,7,8]]],[43,1,1,8,9,[[1027,1,1,8,9]]],[65,5,5,9,14,[[1172,1,1,9,10],[1175,2,2,10,12],[1182,1,1,12,13],[1187,1,1,13,14]]]],[23797,24174,24859,24919,24929,25979,26162,26839,27268,30805,30853,30854,30966,31073]]]]},{"k":"G1624","v":[["*",[5,5,[[53,3,3,0,3,[[1119,1,1,0,1],[1123,1,1,1,2],[1124,1,1,2,3]]],[54,1,1,3,4,[[1128,1,1,3,4]]],[57,1,1,4,5,[[1144,1,1,4,5]]]],[29702,29778,29808,29874,30225]]],["aside",[2,2,[[53,2,2,0,2,[[1119,1,1,0,1],[1123,1,1,1,2]]]],[29702,29778]]],["avoiding",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29808]]],["turned",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29874]]],["way",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30225]]]]},{"k":"G1625","v":[["*",[2,2,[[48,2,2,0,2,[[1101,1,1,0,1],[1102,1,1,1,2]]]],[29333,29341]]],["+",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29341]]],["nourisheth",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29333]]]]},{"k":"G1626","v":[["time",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28726]]]]},{"k":"G1627","v":[["*",[7,7,[[41,1,1,0,1,[[987,1,1,0,1]]],[43,4,4,1,5,[[1022,4,4,1,5]]],[53,1,1,5,6,[[1124,1,1,5,6]]],[57,1,1,6,7,[[1138,1,1,6,7]]]],[25610,27065,27068,27069,27074,29795,30052]]],["+",[2,2,[[43,1,1,0,1,[[1022,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[27068,29795]]],["beareth",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30052]]],["forth",[3,3,[[41,1,1,0,1,[[987,1,1,0,1]]],[43,2,2,1,3,[[1022,2,2,1,3]]]],[25610,27069,27074]]],["out",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27065]]]]},{"k":"G1628","v":[["*",[7,7,[[41,1,1,0,1,[[993,1,1,0,1]]],[43,2,2,1,3,[[1033,1,1,1,2],[1036,1,1,2,3]]],[44,1,1,3,4,[[1047,1,1,3,4]]],[46,1,1,4,5,[[1088,1,1,4,5]]],[51,1,1,5,6,[[1115,1,1,5,6]]],[57,1,1,6,7,[[1134,1,1,6,7]]]],[25862,27510,27601,27965,29022,29624,29980]]],["escape",[4,4,[[41,1,1,0,1,[[993,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]],[51,1,1,2,3,[[1115,1,1,2,3]]],[57,1,1,3,4,[[1134,1,1,3,4]]]],[25862,27965,29624,29980]]],["escaped",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29022]]],["fled",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1036,1,1,1,2]]]],[27510,27601]]]]},{"k":"G1629","v":[["terrify",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28980]]]]},{"k":"G1630","v":[["*",[2,2,[[40,1,1,0,1,[[965,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[24544,30233]]],["+",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30233]]],["afraid",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24544]]]]},{"k":"G1631","v":[["forth",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23989,24745]]]]},{"k":"G1632","v":[["*",[28,28,[[39,3,3,0,3,[[937,1,1,0,1],[951,1,1,1,2],[954,1,1,2,3]]],[40,2,2,3,5,[[958,1,1,3,4],[970,1,1,4,5]]],[41,3,3,5,8,[[977,1,1,5,6],[983,1,1,6,7],[994,1,1,7,8]]],[42,1,1,8,9,[[998,1,1,8,9]]],[43,6,6,9,15,[[1018,1,1,9,10],[1019,3,3,10,13],[1027,1,1,13,14],[1039,1,1,14,15]]],[44,2,2,15,17,[[1048,1,1,15,16],[1050,1,1,16,17]]],[55,1,1,17,18,[[1131,1,1,17,18]]],[64,1,1,18,19,[[1166,1,1,18,19]]],[65,9,9,19,28,[[1182,9,9,19,28]]]],[23396,23953,24082,24282,24778,25144,25455,25884,26110,26941,26966,26967,26982,27304,27724,28006,28052,29929,30683,30955,30956,30957,30958,30960,30962,30964,30966,30971]]],["abroad",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28052]]],["after",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30683]]],["forth",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26982]]],["out",[14,14,[[39,1,1,0,1,[[937,1,1,0,1]]],[42,1,1,1,2,[[998,1,1,1,2]]],[43,4,4,2,6,[[1018,1,1,2,3],[1019,2,2,3,5],[1027,1,1,5,6]]],[65,8,8,6,14,[[1182,8,8,6,14]]]],[23396,26110,26941,26966,26967,27304,30955,30956,30957,30958,30962,30964,30966,30971]]],["shed",[9,9,[[39,2,2,0,2,[[951,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,2,2,3,5,[[983,1,1,3,4],[994,1,1,4,5]]],[43,1,1,5,6,[[1039,1,1,5,6]]],[44,1,1,6,7,[[1048,1,1,6,7]]],[55,1,1,7,8,[[1131,1,1,7,8]]],[65,1,1,8,9,[[1182,1,1,8,9]]]],[23953,24082,24778,25455,25884,27724,28006,29929,30960]]],["spilled",[2,2,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]]],[24282,25144]]]]},{"k":"G1633","v":[["out",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25847]]]]},{"k":"G1634","v":[["ghost",[3,3,[[43,3,3,0,3,[[1022,2,2,0,2],[1029,1,1,2,3]]]],[27064,27069,27360]]]]},{"k":"G1635","v":[["willingly",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]]],[28136,28557]]]]},{"k":"G1636","v":[["*",[15,15,[[39,3,3,0,3,[[949,1,1,0,1],[952,1,1,1,2],[954,1,1,2,3]]],[40,3,3,3,6,[[967,1,1,3,4],[969,1,1,4,5],[970,1,1,5,6]]],[41,4,4,6,10,[[991,2,2,6,8],[993,1,1,8,9],[994,1,1,9,10]]],[42,1,1,10,11,[[1004,1,1,10,11]]],[44,2,2,11,13,[[1056,2,2,11,13]]],[58,1,1,13,14,[[1148,1,1,13,14]]],[65,1,1,14,15,[[1177,1,1,14,15]]]],[23827,23960,24084,24641,24720,24780,25760,25768,25863,25903,26382,28226,28233,30331,30876]]],["Olives",[11,11,[[39,3,3,0,3,[[949,1,1,0,1],[952,1,1,1,2],[954,1,1,2,3]]],[40,3,3,3,6,[[967,1,1,3,4],[969,1,1,4,5],[970,1,1,5,6]]],[41,4,4,6,10,[[991,2,2,6,8],[993,1,1,8,9],[994,1,1,9,10]]],[42,1,1,10,11,[[1004,1,1,10,11]]]],[23827,23960,24084,24641,24720,24780,25760,25768,25863,25903,26382]]],["berries",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30331]]],["tree",[2,2,[[44,2,2,0,2,[[1056,2,2,0,2]]]],[28226,28233]]],["trees",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30876]]]]},{"k":"G1637","v":[["oil",[11,11,[[39,3,3,0,3,[[953,3,3,0,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[41,3,3,4,7,[[979,1,1,4,5],[982,1,1,5,6],[988,1,1,6,7]]],[57,1,1,7,8,[[1133,1,1,7,8]]],[58,1,1,8,9,[[1150,1,1,8,9]]],[65,2,2,9,11,[[1172,1,1,9,10],[1184,1,1,10,11]]]],[24011,24012,24016,24420,25241,25397,25626,29972,30368,30799,31006]]]]},{"k":"G1638","v":[["Olivet",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26935]]]]},{"k":"G1639","v":[["Elamites",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26958]]]]},{"k":"G1640","v":[["*",[4,4,[[42,1,1,0,1,[[998,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]],[57,1,1,3,4,[[1139,1,1,3,4]]]],[26105,28167,29772,30071]]],["less",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30071]]],["under",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29772]]],["worse",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26105]]],["younger",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28167]]]]},{"k":"G1641","v":[["+",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28947]]]]},{"k":"G1642","v":[["*",[3,3,[[42,1,1,0,1,[[999,1,1,0,1]]],[57,2,2,1,3,[[1134,2,2,1,3]]]],[26150,29984,29986]]],["+",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29986]]],["decrease",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26150]]],["madest",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29984]]]]},{"k":"G1643","v":[["*",[5,5,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[42,1,1,2,3,[[1002,1,1,2,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]],[60,1,1,4,5,[[1157,1,1,4,5]]]],[24455,25274,26276,30323,30517]]],["carried",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30517]]],["driven",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[25274,30323]]],["rowed",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26276]]],["rowing",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24455]]]]},{"k":"G1644","v":[["lightness",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28817]]]]},{"k":"G1645","v":[["light",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]]],[23489,28876]]]]},{"k":"G1646","v":[["*",[13,11,[[39,5,4,0,4,[[930,1,1,0,1],[933,2,1,1,2],[953,2,2,2,4]]],[41,4,3,4,7,[[984,1,1,4,5],[988,2,1,5,6],[991,1,1,6,7]]],[45,3,3,7,10,[[1065,1,1,7,8],[1067,1,1,8,9],[1076,1,1,9,10]]],[58,1,1,10,11,[[1148,1,1,10,11]]]],[23175,23253,24048,24053,25485,25630,25748,28436,28469,28727,30323]]],["+",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28469]]],["least",[9,7,[[39,5,4,0,4,[[930,1,1,0,1],[933,2,1,1,2],[953,2,2,2,4]]],[41,3,2,4,6,[[984,1,1,4,5],[988,2,1,5,6]]],[45,1,1,6,7,[[1076,1,1,6,7]]]],[23175,23253,24048,24053,25485,25630,28727]]],["little",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25748]]],["small",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30323]]],["thing",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28436]]]]},{"k":"G1647","v":[["least",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29259]]]]},{"k":"G1648","v":[["Eleazar",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23159]]]]},{"k":"G1649","v":[["+",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30516]]]]},{"k":"G1650","v":[["*",[2,2,[[54,1,1,0,1,[[1127,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[29869,30173]]],["evidence",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30173]]],["reproof",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29869]]]]},{"k":"G1651","v":[["*",[17,17,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[42,4,4,2,6,[[999,1,1,2,3],[1004,2,2,3,5],[1012,1,1,5,6]]],[45,1,1,6,7,[[1075,1,1,6,7]]],[48,2,2,7,9,[[1101,2,2,7,9]]],[53,1,1,9,10,[[1123,1,1,9,10]]],[54,1,1,10,11,[[1128,1,1,10,11]]],[55,3,3,11,14,[[1129,2,2,11,13],[1130,1,1,13,14]]],[57,1,1,14,15,[[1144,1,1,14,15]]],[58,1,1,15,16,[[1147,1,1,15,16]]],[65,1,1,16,17,[[1169,1,1,16,17]]]],[23742,25044,26140,26390,26427,26734,28702,29315,29317,29783,29872,29901,29905,29923,30217,30302,30765]]],["+",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23742]]],["convicted",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26390]]],["convince",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29901]]],["convinced",[2,2,[[45,1,1,0,1,[[1075,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[28702,30302]]],["convinceth",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26427]]],["rebuke",[4,4,[[53,1,1,0,1,[[1123,1,1,0,1]]],[55,2,2,1,3,[[1129,1,1,1,2],[1130,1,1,2,3]]],[65,1,1,3,4,[[1169,1,1,3,4]]]],[29783,29905,29923,30765]]],["rebuked",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30217]]],["reprove",[3,3,[[42,1,1,0,1,[[1012,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[26734,29315,29872]]],["reproved",[3,3,[[41,1,1,0,1,[[975,1,1,0,1]]],[42,1,1,1,2,[[999,1,1,1,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]]],[25044,26140,29317]]]]},{"k":"G1652","v":[["miserable",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[65,1,1,1,2,[[1169,1,1,1,2]]]],[28737,30763]]]]},{"k":"G1653","v":[["*",[31,28,[[39,8,7,0,7,[[933,1,1,0,1],[937,1,1,1,2],[943,1,1,2,3],[945,1,1,3,4],[946,2,1,4,5],[948,2,2,5,7]]],[40,3,3,7,10,[[961,1,1,7,8],[966,2,2,8,10]]],[41,4,4,10,14,[[988,1,1,10,11],[989,1,1,11,12],[990,2,2,12,14]]],[44,8,7,14,21,[[1054,4,3,14,17],[1056,3,3,17,20],[1057,1,1,20,21]]],[45,1,1,21,22,[[1068,1,1,21,22]]],[46,1,1,22,23,[[1081,1,1,22,23]]],[49,1,1,23,24,[[1104,1,1,23,24]]],[53,2,2,24,26,[[1119,2,2,24,26]]],[59,2,1,26,27,[[1152,2,1,26,27]]],[64,1,1,27,28,[[1166,1,1,27,28]]]],[23241,23406,23655,23715,23760,23822,23823,24383,24635,24636,25644,25664,25726,25727,28170,28171,28173,28239,28240,28241,28253,28512,28860,29418,29709,29712,30409,30694]]],["+",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30409]]],["compassion",[3,3,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[23760,24383,30694]]],["mercy",[26,25,[[39,6,6,0,6,[[933,1,1,0,1],[937,1,1,1,2],[943,1,1,2,3],[945,1,1,3,4],[948,2,2,4,6]]],[40,2,2,6,8,[[966,2,2,6,8]]],[41,4,4,8,12,[[988,1,1,8,9],[989,1,1,9,10],[990,2,2,10,12]]],[44,8,7,12,19,[[1054,4,3,12,15],[1056,3,3,15,18],[1057,1,1,18,19]]],[45,1,1,19,20,[[1068,1,1,19,20]]],[46,1,1,20,21,[[1081,1,1,20,21]]],[49,1,1,21,22,[[1104,1,1,21,22]]],[53,2,2,22,24,[[1119,2,2,22,24]]],[59,1,1,24,25,[[1152,1,1,24,25]]]],[23241,23406,23655,23715,23822,23823,24635,24636,25644,25664,25726,25727,28170,28171,28173,28239,28240,28241,28253,28512,28860,29418,29709,29712,30409]]],["pity",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23760]]]]},{"k":"G1654","v":[["*",[14,14,[[39,4,4,0,4,[[934,4,4,0,4]]],[41,2,2,4,6,[[983,1,1,4,5],[984,1,1,5,6]]],[43,8,8,6,14,[[1020,3,3,6,9],[1026,1,1,9,10],[1027,3,3,10,13],[1041,1,1,13,14]]]],[23283,23284,23285,23286,25446,25492,26998,26999,27006,27252,27261,27263,27290,27786]]],["alms",[13,13,[[39,4,4,0,4,[[934,4,4,0,4]]],[41,2,2,4,6,[[983,1,1,4,5],[984,1,1,5,6]]],[43,7,7,6,13,[[1020,3,3,6,9],[1027,3,3,9,12],[1041,1,1,12,13]]]],[23283,23284,23285,23286,25446,25492,26998,26999,27006,27261,27263,27290,27786]]],["almsdeeds",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27252]]]]},{"k":"G1655","v":[["merciful",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]]],[23241,29994]]]]},{"k":"G1656","v":[["*",[28,27,[[39,3,3,0,3,[[937,1,1,0,1],[940,1,1,1,2],[951,1,1,2,3]]],[41,6,6,3,9,[[973,5,5,3,8],[982,1,1,8,9]]],[44,3,3,9,12,[[1054,1,1,9,10],[1056,1,1,10,11],[1060,1,1,11,12]]],[47,1,1,12,13,[[1096,1,1,12,13]]],[48,1,1,13,14,[[1098,1,1,13,14]]],[53,1,1,14,15,[[1119,1,1,14,15]]],[54,3,3,15,18,[[1125,3,3,15,18]]],[55,2,2,18,20,[[1129,1,1,18,19],[1131,1,1,19,20]]],[57,1,1,20,21,[[1136,1,1,20,21]]],[58,3,2,21,23,[[1147,2,1,21,22],[1148,1,1,22,23]]],[59,1,1,23,24,[[1151,1,1,23,24]]],[62,1,1,24,25,[[1164,1,1,24,25]]],[64,2,2,25,27,[[1166,2,2,25,27]]]],[23392,23496,23941,24943,24947,24951,24965,24971,25400,28178,28240,28312,29204,29233,29698,29811,29825,29827,29896,29928,30030,30306,30336,30377,30648,30674,30693]]],["+",[2,2,[[41,2,2,0,2,[[973,2,2,0,2]]]],[24951,24971]]],["Mercy",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30674]]],["mercy",[25,24,[[39,3,3,0,3,[[937,1,1,0,1],[940,1,1,1,2],[951,1,1,2,3]]],[41,4,4,3,7,[[973,3,3,3,6],[982,1,1,6,7]]],[44,3,3,7,10,[[1054,1,1,7,8],[1056,1,1,8,9],[1060,1,1,9,10]]],[47,1,1,10,11,[[1096,1,1,10,11]]],[48,1,1,11,12,[[1098,1,1,11,12]]],[53,1,1,12,13,[[1119,1,1,12,13]]],[54,3,3,13,16,[[1125,3,3,13,16]]],[55,2,2,16,18,[[1129,1,1,16,17],[1131,1,1,17,18]]],[57,1,1,18,19,[[1136,1,1,18,19]]],[58,3,2,19,21,[[1147,2,1,19,20],[1148,1,1,20,21]]],[59,1,1,21,22,[[1151,1,1,21,22]]],[62,1,1,22,23,[[1164,1,1,22,23]]],[64,1,1,23,24,[[1166,1,1,23,24]]]],[23392,23496,23941,24943,24947,24965,25400,28178,28240,28312,29204,29233,29698,29811,29825,29827,29896,29928,30030,30306,30336,30377,30648,30693]]]]},{"k":"G1657","v":[["liberty",[11,10,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]],[46,1,1,2,3,[[1080,1,1,2,3]]],[47,4,3,3,6,[[1092,1,1,3,4],[1095,3,2,4,6]]],[58,2,2,6,8,[[1146,1,1,6,7],[1147,1,1,7,8]]],[59,1,1,8,9,[[1152,1,1,8,9]]],[60,1,1,9,10,[[1157,1,1,9,10]]]],[28137,28596,28858,29085,29163,29175,30291,30305,30415,30519]]]]},{"k":"G1658","v":[["*",[23,23,[[39,1,1,0,1,[[945,1,1,0,1]]],[42,2,2,1,3,[[1004,2,2,1,3]]],[44,2,2,3,5,[[1051,1,1,3,4],[1052,1,1,4,5]]],[45,6,6,5,11,[[1068,3,3,5,8],[1070,2,2,8,10],[1073,1,1,10,11]]],[47,6,6,11,17,[[1093,1,1,11,12],[1094,5,5,12,17]]],[48,1,1,17,18,[[1102,1,1,17,18]]],[50,1,1,18,19,[[1109,1,1,18,19]]],[59,1,1,19,20,[[1152,1,1,19,20]]],[65,3,3,20,23,[[1172,1,1,20,21],[1179,1,1,21,22],[1185,1,1,22,23]]]],[23726,26414,26417,28088,28094,28508,28509,28526,28541,28559,28647,29130,29153,29154,29157,29161,29162,29345,29528,30415,30808,30924,31035]]],["free",[18,18,[[39,1,1,0,1,[[945,1,1,0,1]]],[42,2,2,1,3,[[1004,2,2,1,3]]],[44,2,2,3,5,[[1051,1,1,3,4],[1052,1,1,4,5]]],[45,5,5,5,10,[[1068,2,2,5,7],[1070,2,2,7,9],[1073,1,1,9,10]]],[47,3,3,10,13,[[1093,1,1,10,11],[1094,2,2,11,13]]],[48,1,1,13,14,[[1102,1,1,13,14]]],[50,1,1,14,15,[[1109,1,1,14,15]]],[59,1,1,15,16,[[1152,1,1,15,16]]],[65,2,2,16,18,[[1179,1,1,16,17],[1185,1,1,17,18]]]],[23726,26414,26417,28088,28094,28508,28509,28541,28559,28647,29130,29157,29162,29345,29528,30415,30924,31035]]],["freewoman",[3,3,[[47,3,3,0,3,[[1094,3,3,0,3]]]],[29153,29154,29161]]],["liberty",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28526]]],["man",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30808]]]]},{"k":"G1659","v":[["*",[7,7,[[42,2,2,0,2,[[1004,2,2,0,2]]],[44,4,4,2,6,[[1051,2,2,2,4],[1053,2,2,4,6]]],[47,1,1,6,7,[[1095,1,1,6,7]]]],[26413,26417,28086,28090,28118,28137,29163]]],["+",[4,4,[[42,2,2,0,2,[[1004,2,2,0,2]]],[44,1,1,2,3,[[1053,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]]],[26413,26417,28118,29163]]],["delivered",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28137]]],["free",[2,2,[[44,2,2,0,2,[[1051,2,2,0,2]]]],[28086,28090]]]]},{"k":"G1660","v":[["coming",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27168]]]]},{"k":"G1661","v":[["ivory",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31005]]]]},{"k":"G1662","v":[["Eliakim",[3,2,[[39,2,1,0,1,[[929,2,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23157,25055]]]]},{"k":"G1663","v":[["Eliezer",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25054]]]]},{"k":"G1664","v":[["Eliud",[2,2,[[39,2,2,0,2,[[929,2,2,0,2]]]],[23158,23159]]]]},{"k":"G1665","v":[["*",[9,8,[[41,9,8,0,8,[[973,9,8,0,8]]]],[24898,24900,24906,24917,24929,24933,24934,24950]]],["Elisabeth",[8,7,[[41,8,7,0,7,[[973,8,7,0,7]]]],[24898,24900,24906,24917,24929,24933,24934]]],["Elisabeth's",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24950]]]]},{"k":"G1666","v":[["Eliseus",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25090]]]]},{"k":"G1667","v":[["+",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29975]]]]},{"k":"G1668","v":[["*",[3,3,[[41,1,1,0,1,[[988,1,1,0,1]]],[65,2,2,1,3,[[1182,2,2,1,3]]]],[25641,30956,30965]]],["sore",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30956]]],["sores",[2,2,[[41,1,1,0,1,[[988,1,1,0,1]]],[65,1,1,1,2,[[1182,1,1,1,2]]]],[25641,30965]]]]},{"k":"G1669","v":[["sores",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25640]]]]},{"k":"G1670","v":[["*",[8,8,[[42,5,5,0,5,[[1002,1,1,0,1],[1008,1,1,1,2],[1014,1,1,2,3],[1017,2,2,3,5]]],[43,2,2,5,7,[[1033,1,1,5,6],[1038,1,1,6,7]]],[58,1,1,7,8,[[1147,1,1,7,8]]]],[26301,26612,26795,26904,26909,27502,27694,30299]]],["draw",[4,4,[[42,3,3,0,3,[[1002,1,1,0,1],[1008,1,1,1,2],[1017,1,1,2,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[26301,26612,26904,30299]]],["drew",[4,4,[[42,2,2,0,2,[[1014,1,1,0,1],[1017,1,1,1,2]]],[43,2,2,2,4,[[1033,1,1,2,3],[1038,1,1,3,4]]]],[26795,26909,27502,27694]]]]},{"k":"G1671","v":[["Greece",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27628]]]]},{"k":"G1672","v":[["*",[27,26,[[42,3,2,0,2,[[1003,2,1,0,1],[1008,1,1,1,2]]],[43,10,10,2,12,[[1031,1,1,2,3],[1033,2,2,3,5],[1034,1,1,5,6],[1035,2,2,6,8],[1036,2,2,8,10],[1037,1,1,10,11],[1038,1,1,11,12]]],[44,6,6,12,18,[[1046,2,2,12,14],[1047,2,2,14,16],[1048,1,1,16,17],[1055,1,1,17,18]]],[45,5,5,18,23,[[1062,3,3,18,21],[1071,1,1,21,22],[1073,1,1,22,23]]],[47,2,2,23,25,[[1092,1,1,23,24],[1093,1,1,24,25]]],[50,1,1,25,26,[[1109,1,1,25,26]]]],[26363,26600,27415,27484,27486,27527,27561,27574,27595,27602,27647,27692,27944,27946,27971,27972,28000,28200,28385,28386,28387,28599,28647,29084,29130,29528]]],["Gentile",[2,2,[[44,2,2,0,2,[[1047,2,2,0,2]]]],[27971,27972]]],["Gentiles",[5,4,[[42,2,1,0,1,[[1003,2,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]],[45,2,2,2,4,[[1071,1,1,2,3],[1073,1,1,3,4]]]],[26363,28000,28599,28647]]],["Greek",[7,7,[[43,2,2,0,2,[[1033,2,2,0,2]]],[44,2,2,2,4,[[1046,1,1,2,3],[1055,1,1,3,4]]],[47,2,2,4,6,[[1092,1,1,4,5],[1093,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]]],[27484,27486,27946,28200,29084,29130,29528]]],["Greeks",[13,13,[[42,1,1,0,1,[[1008,1,1,0,1]]],[43,8,8,1,9,[[1031,1,1,1,2],[1034,1,1,2,3],[1035,2,2,3,5],[1036,2,2,5,7],[1037,1,1,7,8],[1038,1,1,8,9]]],[44,1,1,9,10,[[1046,1,1,9,10]]],[45,3,3,10,13,[[1062,3,3,10,13]]]],[26600,27415,27527,27561,27574,27595,27602,27647,27692,27944,28385,28386,28387]]]]},{"k":"G1673","v":[["*",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[65,1,1,1,2,[[1175,1,1,1,2]]]],[25973,30851]]],["Greek",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25973]]],["tongue",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30851]]]]},{"k":"G1674","v":[["*",[2,2,[[40,1,1,0,1,[[963,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]]],[24489,27535]]],["Greek",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24489]]],["Greeks",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27535]]]]},{"k":"G1675","v":[["Grecians",[3,3,[[43,3,3,0,3,[[1023,1,1,0,1],[1026,1,1,1,2],[1028,1,1,2,3]]]],[27102,27245,27327]]]]},{"k":"G1676","v":[["*",[2,2,[[42,1,1,0,1,[[1015,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[26845,27701]]],["+",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27701]]],["Greek",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26845]]]]},{"k":"G1677","v":[["*",[2,2,[[44,1,1,0,1,[[1050,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[28060,29956]]],["+",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29956]]],["imputed",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28060]]]]},{"k":"G1678","v":[["Elmodam",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25053]]]]},{"k":"G1679","v":[["*",[31,31,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,3,3,1,4,[[978,1,1,1,2],[995,1,1,2,3],[996,1,1,3,4]]],[42,1,1,4,5,[[1001,1,1,4,5]]],[43,2,2,5,7,[[1041,1,1,5,6],[1043,1,1,6,7]]],[44,4,4,7,11,[[1053,2,2,7,9],[1060,2,2,9,11]]],[45,3,3,11,14,[[1074,1,1,11,12],[1076,1,1,12,13],[1077,1,1,13,14]]],[46,5,5,14,19,[[1078,2,2,14,16],[1082,1,1,16,17],[1085,1,1,17,18],[1090,1,1,18,19]]],[49,2,2,19,21,[[1104,2,2,19,21]]],[53,4,4,21,25,[[1121,1,1,21,22],[1122,1,1,22,23],[1123,1,1,23,24],[1124,1,1,24,25]]],[56,1,1,25,26,[[1132,1,1,25,26]]],[57,1,1,26,27,[[1143,1,1,26,27]]],[59,2,2,27,29,[[1151,1,1,27,28],[1153,1,1,28,29]]],[62,1,1,29,30,[[1164,1,1,29,30]]],[63,1,1,30,31,[[1165,1,1,30,31]]]],[23510,25180,25943,26012,26255,27795,27830,28140,28141,28315,28327,28672,28737,28783,28810,28813,28888,28937,29049,29410,29414,29745,29757,29768,29805,29960,30173,30387,30429,30657,30672]]],["for",[3,3,[[44,2,2,0,2,[[1053,2,2,0,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[28140,28141,30173]]],["hope",[5,5,[[41,1,1,0,1,[[978,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]],[49,1,1,3,4,[[1104,1,1,3,4]]],[59,1,1,4,5,[[1151,1,1,4,5]]]],[25180,27830,28737,29414,30387]]],["hoped",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]]],[25943,27795,28937]]],["hopeth",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28672]]],["hoping",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29745]]],["trust",[15,15,[[39,1,1,0,1,[[940,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[44,2,2,2,4,[[1060,2,2,2,4]]],[45,1,1,4,5,[[1077,1,1,4,5]]],[46,4,4,5,9,[[1078,2,2,5,7],[1082,1,1,7,8],[1090,1,1,8,9]]],[49,1,1,9,10,[[1104,1,1,9,10]]],[53,2,2,10,12,[[1122,1,1,10,11],[1124,1,1,11,12]]],[56,1,1,12,13,[[1132,1,1,12,13]]],[62,1,1,13,14,[[1164,1,1,13,14]]],[63,1,1,14,15,[[1165,1,1,14,15]]]],[23510,26255,28315,28327,28783,28810,28813,28888,29049,29410,29757,29805,29960,30657,30672]]],["trusted",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[26012,30429]]],["trusteth",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29768]]]]},{"k":"G1680","v":[["*",[54,48,[[43,8,8,0,8,[[1019,1,1,0,1],[1033,1,1,1,2],[1040,1,1,2,3],[1041,1,1,3,4],[1043,2,2,4,6],[1044,1,1,6,7],[1045,1,1,7,8]]],[44,13,9,8,17,[[1049,2,1,8,9],[1050,3,3,9,12],[1053,4,2,12,14],[1057,1,1,14,15],[1060,3,2,15,17]]],[45,4,2,17,19,[[1070,3,1,17,18],[1074,1,1,18,19]]],[46,3,3,19,22,[[1078,1,1,19,20],[1080,1,1,20,21],[1087,1,1,21,22]]],[47,1,1,22,23,[[1095,1,1,22,23]]],[48,3,3,23,26,[[1097,1,1,23,24],[1098,1,1,24,25],[1100,1,1,25,26]]],[49,1,1,26,27,[[1103,1,1,26,27]]],[50,3,3,27,30,[[1107,3,3,27,30]]],[51,4,4,30,34,[[1111,1,1,30,31],[1112,1,1,31,32],[1114,1,1,32,33],[1115,1,1,33,34]]],[52,1,1,34,35,[[1117,1,1,34,35]]],[53,1,1,35,36,[[1119,1,1,35,36]]],[55,3,3,36,39,[[1129,1,1,36,37],[1130,1,1,37,38],[1131,1,1,38,39]]],[57,5,5,39,44,[[1135,1,1,39,40],[1138,2,2,40,42],[1139,1,1,42,43],[1142,1,1,43,44]]],[59,3,3,44,47,[[1151,2,2,44,46],[1153,1,1,46,47]]],[61,1,1,47,48,[[1161,1,1,47,48]]]],[26975,27502,27740,27784,27829,27830,27875,27919,28040,28049,28051,28052,28136,28140,28257,28307,28316,28550,28678,28807,28853,28986,29167,29224,29241,29276,29381,29470,29488,29492,29563,29589,29616,29629,29677,29697,29894,29921,29930,30001,30055,30062,30083,30156,30377,30395,30439,30582]]],["faith",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30156]]],["hope",[52,46,[[43,7,7,0,7,[[1019,1,1,0,1],[1033,1,1,1,2],[1040,1,1,2,3],[1041,1,1,3,4],[1043,1,1,4,5],[1044,1,1,5,6],[1045,1,1,6,7]]],[44,13,9,7,16,[[1049,2,1,7,8],[1050,3,3,8,11],[1053,4,2,11,13],[1057,1,1,13,14],[1060,3,2,14,16]]],[45,4,2,16,18,[[1070,3,1,16,17],[1074,1,1,17,18]]],[46,3,3,18,21,[[1078,1,1,18,19],[1080,1,1,19,20],[1087,1,1,20,21]]],[47,1,1,21,22,[[1095,1,1,21,22]]],[48,3,3,22,25,[[1097,1,1,22,23],[1098,1,1,23,24],[1100,1,1,24,25]]],[49,1,1,25,26,[[1103,1,1,25,26]]],[50,3,3,26,29,[[1107,3,3,26,29]]],[51,4,4,29,33,[[1111,1,1,29,30],[1112,1,1,30,31],[1114,1,1,31,32],[1115,1,1,32,33]]],[52,1,1,33,34,[[1117,1,1,33,34]]],[53,1,1,34,35,[[1119,1,1,34,35]]],[55,3,3,35,38,[[1129,1,1,35,36],[1130,1,1,36,37],[1131,1,1,37,38]]],[57,4,4,38,42,[[1135,1,1,38,39],[1138,2,2,39,41],[1139,1,1,41,42]]],[59,3,3,42,45,[[1151,2,2,42,44],[1153,1,1,44,45]]],[61,1,1,45,46,[[1161,1,1,45,46]]]],[26975,27502,27740,27784,27829,27875,27919,28040,28049,28051,28052,28136,28140,28257,28307,28316,28550,28678,28807,28853,28986,29167,29224,29241,29276,29381,29470,29488,29492,29563,29589,29616,29629,29677,29697,29894,29921,29930,30001,30055,30062,30083,30377,30395,30439,30582]]],["hope's",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27830]]]]},{"k":"G1681","v":[["Elymas",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27370]]]]},{"k":"G1682","v":[["Eloi",[2,1,[[40,2,1,0,1,[[971,2,1,0,1]]]],[24860]]]]},{"k":"G1683","v":[["*",[37,37,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,2,2,1,3,[[979,2,2,1,3]]],[42,16,16,3,19,[[1001,2,2,3,5],[1003,2,2,5,7],[1004,5,5,7,12],[1006,1,1,12,13],[1008,2,2,13,15],[1010,3,3,15,18],[1013,1,1,18,19]]],[43,4,4,19,23,[[1037,1,1,19,20],[1041,1,1,20,21],[1043,2,2,21,23]]],[44,1,1,23,24,[[1056,1,1,23,24]]],[45,6,6,24,30,[[1065,3,3,24,27],[1068,1,1,27,28],[1070,1,1,28,29],[1071,1,1,29,30]]],[46,4,4,30,34,[[1079,1,1,30,31],[1088,2,2,31,33],[1089,1,1,33,34]]],[47,1,1,34,35,[[1092,1,1,34,35]]],[49,1,1,35,36,[[1105,1,1,35,36]]],[56,1,1,36,37,[[1132,1,1,36,37]]]],[23354,25202,25203,26240,26241,26345,26356,26395,26399,26409,26423,26435,26499,26612,26629,26671,26678,26689,26778,27650,27779,27825,27832,28213,28436,28437,28439,28494,28559,28600,28825,28996,28998,29027,29099,29434,29951]]],["+",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]]],[25202,28559]]],["me",[4,4,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[42,1,1,2,3,[[1008,1,1,2,3]]],[56,1,1,3,4,[[1132,1,1,3,4]]]],[23354,25203,26612,29951]]],["myself",[28,28,[[42,14,14,0,14,[[1001,1,1,0,1],[1003,2,2,1,3],[1004,5,5,3,8],[1006,1,1,8,9],[1008,1,1,9,10],[1010,3,3,10,13],[1013,1,1,13,14]]],[43,4,4,14,18,[[1037,1,1,14,15],[1041,1,1,15,16],[1043,2,2,16,18]]],[44,1,1,18,19,[[1056,1,1,18,19]]],[45,3,3,19,22,[[1065,2,2,19,21],[1068,1,1,21,22]]],[46,4,4,22,26,[[1079,1,1,22,23],[1088,2,2,23,25],[1089,1,1,25,26]]],[47,1,1,26,27,[[1092,1,1,26,27]]],[49,1,1,27,28,[[1105,1,1,27,28]]]],[26241,26345,26356,26395,26399,26409,26423,26435,26499,26629,26671,26678,26689,26778,27650,27779,27825,27832,28213,28437,28439,28494,28825,28996,28998,29027,29099,29434]]],["own",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28600]]],["self",[2,2,[[42,1,1,0,1,[[1001,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]]],[26240,28436]]]]},{"k":"G1684","v":[["*",[18,18,[[39,6,6,0,6,[[936,1,1,0,1],[937,1,1,1,2],[941,1,1,2,3],[942,2,2,3,5],[943,1,1,5,6]]],[40,5,5,6,11,[[960,1,1,6,7],[961,1,1,7,8],[962,1,1,8,9],[964,2,2,9,11]]],[41,3,3,11,14,[[977,1,1,11,12],[980,2,2,12,14]]],[42,4,4,14,18,[[1001,1,1,14,15],[1002,3,3,15,18]]]],[23368,23380,23541,23619,23629,23672,24324,24382,24452,24510,24513,25110,25267,25282,26214,26274,26279,26281]]],["+",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23672]]],["come",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]]],[23629,24382]]],["entered",[7,7,[[39,2,2,0,2,[[936,1,1,0,1],[937,1,1,1,2]]],[40,2,2,2,4,[[960,1,1,2,3],[964,1,1,3,4]]],[41,1,1,4,5,[[977,1,1,4,5]]],[42,2,2,5,7,[[1002,2,2,5,7]]]],[23368,23380,24324,24510,25110,26274,26279]]],["entering",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24513]]],["get",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]]],[23619,24452]]],["in",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26214]]],["took",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26281]]],["up",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25282]]],["went",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[23541,25267]]]]},{"k":"G1685","v":[["cast",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25464]]]]},{"k":"G1686","v":[["*",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,1,1,2,3,[[1009,1,1,2,3]]]],[24077,24774,26656]]],["dipped",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26656]]],["dippeth",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24077,24774]]]]},{"k":"G1687","v":[["into",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29512]]]]},{"k":"G1688","v":[["put",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27861]]]]},{"k":"G1689","v":[["*",[12,12,[[39,2,2,0,2,[[934,1,1,0,1],[947,1,1,1,2]]],[40,4,4,2,6,[[964,1,1,2,3],[966,2,2,3,5],[970,1,1,5,6]]],[41,2,2,6,8,[[992,1,1,6,7],[994,1,1,7,8]]],[42,2,2,8,10,[[997,2,2,8,10]]],[43,2,2,10,12,[[1018,1,1,10,11],[1039,1,1,11,12]]]],[23308,23788,24525,24609,24615,24821,25796,25925,26080,26086,26934,27715]]],["+",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23308]]],["beheld",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,1,1,1,2,[[992,1,1,1,2]]],[42,1,1,2,3,[[997,1,1,2,3]]]],[23788,25796,26086]]],["beholding",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24609]]],["saw",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24525]]],["see",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27715]]],["up",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26934]]],["upon",[4,4,[[40,2,2,0,2,[[966,1,1,0,1],[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,1,1,3,4,[[997,1,1,3,4]]]],[24615,24821,25925,26080]]]]},{"k":"G1690","v":[["*",[5,5,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,2,2,1,3,[[957,1,1,1,2],[970,1,1,2,3]]],[42,2,2,3,5,[[1007,2,2,3,5]]]],[23409,24258,24759,26556,26561]]],["against",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24759]]],["charged",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23409,24258]]],["groaned",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26556]]],["groaning",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26561]]]]},{"k":"G1691","v":[["*",[88,77,[[39,9,7,0,7,[[938,4,2,0,2],[946,3,3,2,5],[954,2,2,5,7]]],[40,6,4,7,11,[[965,4,2,7,9],[970,2,2,9,11]]],[41,8,6,11,17,[[976,1,1,11,12],[981,2,1,12,13],[982,2,1,13,14],[994,1,1,14,15],[995,1,1,15,16],[996,1,1,16,17]]],[42,40,37,17,54,[[999,1,1,17,18],[1002,4,4,18,22],[1003,2,2,22,24],[1004,3,2,24,26],[1005,1,1,26,27],[1007,2,2,27,29],[1008,7,6,29,35],[1009,3,2,35,37],[1010,3,3,37,40],[1011,4,4,40,44],[1012,6,6,44,50],[1013,3,3,50,53],[1014,1,1,53,54]]],[43,6,6,54,60,[[1020,1,1,54,55],[1024,1,1,55,56],[1025,1,1,56,57],[1030,1,1,57,58],[1039,1,1,58,59],[1043,1,1,59,60]]],[44,4,3,60,63,[[1046,1,1,60,61],[1055,2,1,61,62],[1060,1,1,62,63]]],[45,2,2,63,65,[[1070,1,1,63,64],[1076,1,1,64,65]]],[46,4,4,65,69,[[1079,1,1,65,66],[1088,1,1,66,67],[1089,2,2,67,69]]],[48,1,1,69,70,[[1102,1,1,69,70]]],[49,3,3,70,73,[[1103,1,1,70,71],[1104,2,2,71,73]]],[50,1,1,73,74,[[1110,1,1,73,74]]],[54,1,1,74,75,[[1125,1,1,74,75]]],[56,2,1,75,76,[[1132,2,1,75,76]]],[65,1,1,76,77,[[1167,1,1,76,77]]]],[23454,23457,23732,23733,23748,24064,24065,24575,24580,24760,24761,25081,25349,25379,25917,25963,26030,26150,26292,26294,26304,26314,26335,26366,26400,26423,26444,26548,26549,26588,26610,26624,26625,26626,26628,26648,26650,26669,26677,26680,26717,26719,26722,26723,26729,26735,26740,26749,26753,26758,26777,26779,26782,26793,27018,27153,27200,27387,27710,27841,27945,28208,28306,28543,28728,28829,28999,29028,29031,29358,29373,29414,29418,29549,29817,29955,30714]]],["+",[3,3,[[44,1,1,0,1,[[1046,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]],[50,1,1,2,3,[[1110,1,1,2,3]]]],[27945,29358,29549]]],["I",[2,2,[[42,2,2,0,2,[[999,1,1,0,1],[1005,1,1,1,2]]]],[26150,26444]]],["me",[82,72,[[39,9,7,0,7,[[938,4,2,0,2],[946,3,3,2,5],[954,2,2,5,7]]],[40,6,4,7,11,[[965,4,2,7,9],[970,2,2,9,11]]],[41,8,6,11,17,[[976,1,1,11,12],[981,2,1,12,13],[982,2,1,13,14],[994,1,1,14,15],[995,1,1,15,16],[996,1,1,16,17]]],[42,38,35,17,52,[[1002,4,4,17,21],[1003,2,2,21,23],[1004,3,2,23,25],[1007,2,2,25,27],[1008,7,6,27,33],[1009,3,2,33,35],[1010,3,3,35,38],[1011,4,4,38,42],[1012,6,6,42,48],[1013,3,3,48,51],[1014,1,1,51,52]]],[43,6,6,52,58,[[1020,1,1,52,53],[1024,1,1,53,54],[1025,1,1,54,55],[1030,1,1,55,56],[1039,1,1,56,57],[1043,1,1,57,58]]],[44,3,2,58,60,[[1055,2,1,58,59],[1060,1,1,59,60]]],[45,2,2,60,62,[[1070,1,1,60,61],[1076,1,1,61,62]]],[46,4,4,62,66,[[1079,1,1,62,63],[1088,1,1,63,64],[1089,2,2,64,66]]],[49,3,3,66,69,[[1103,1,1,66,67],[1104,2,2,67,69]]],[54,1,1,69,70,[[1125,1,1,69,70]]],[56,1,1,70,71,[[1132,1,1,70,71]]],[65,1,1,71,72,[[1167,1,1,71,72]]]],[23454,23457,23732,23733,23748,24064,24065,24575,24580,24760,24761,25081,25349,25379,25917,25963,26030,26292,26294,26304,26314,26335,26366,26400,26423,26548,26549,26588,26610,26624,26625,26626,26628,26648,26650,26669,26677,26680,26717,26719,26722,26723,26729,26735,26740,26749,26753,26758,26777,26779,26782,26793,27018,27153,27200,27387,27710,27841,28208,28306,28543,28728,28829,28999,29028,29031,29373,29414,29418,29817,29955,30714]]],["myself",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29955]]]]},{"k":"G1692","v":[["spue",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30762]]]]},{"k":"G1693","v":[["+",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27834]]]]},{"k":"G1694","v":[["Emmanuel",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23167]]]]},{"k":"G1695","v":[["Emmaus",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26004]]]]},{"k":"G1696","v":[["*",[3,3,[[43,1,1,0,1,[[1031,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]],[57,1,1,2,3,[[1140,1,1,2,3]]]],[27436,29112,30101]]],["continue",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27436]]],["continued",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30101]]],["continueth",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29112]]]]},{"k":"G1697","v":[["Emmor",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27132]]]]},{"k":"G1698","v":[["*",[97,89,[[39,7,7,0,7,[[938,1,1,0,1],[939,1,1,1,2],[946,2,2,2,4],[953,2,2,4,6],[954,1,1,6,7]]],[40,2,2,7,9,[[961,1,1,7,8],[970,1,1,8,9]]],[41,6,6,9,15,[[976,1,1,9,10],[979,1,1,10,11],[980,1,1,11,12],[984,1,1,12,13],[987,1,1,13,14],[994,1,1,14,15]]],[42,29,24,15,39,[[998,1,1,15,16],[1001,1,1,16,17],[1002,1,1,17,18],[1003,1,1,18,19],[1004,1,1,19,20],[1006,2,1,20,21],[1008,3,1,21,22],[1009,1,1,22,23],[1010,5,4,23,27],[1011,7,6,27,33],[1012,1,1,33,34],[1013,3,3,34,37],[1014,1,1,37,38],[1015,1,1,38,39]]],[43,6,6,39,45,[[1027,1,1,39,40],[1028,1,1,40,41],[1039,1,1,41,42],[1041,1,1,42,43],[1043,1,1,43,44],[1045,1,1,44,45]]],[44,9,8,45,53,[[1052,7,6,45,51],[1057,1,1,51,52],[1059,1,1,52,53]]],[45,5,5,53,58,[[1065,1,1,53,54],[1070,1,1,54,55],[1075,1,1,55,56],[1076,1,1,56,57],[1077,1,1,57,58]]],[46,4,4,58,62,[[1078,1,1,58,59],[1086,1,1,59,60],[1088,1,1,60,61],[1090,1,1,61,62]]],[47,10,9,62,71,[[1091,3,3,62,65],[1092,5,5,65,70],[1096,2,1,70,71]]],[48,1,1,71,72,[[1099,1,1,71,72]]],[49,10,9,72,81,[[1103,5,4,72,76],[1104,2,2,76,78],[1105,1,1,78,79],[1106,2,2,79,81]]],[50,1,1,81,82,[[1107,1,1,81,82]]],[53,1,1,82,83,[[1119,1,1,82,83]]],[54,1,1,83,84,[[1128,1,1,83,84]]],[56,3,3,84,87,[[1132,3,3,84,87]]],[57,2,2,87,89,[[1142,1,1,87,88],[1145,1,1,88,89]]]],[23449,23465,23753,23756,24048,24053,24085,24371,24781,25069,25218,25273,25467,25617,25901,26099,26256,26313,26351,26393,26519,26606,26665,26678,26679,26688,26698,26701,26703,26704,26705,26706,26707,26759,26765,26780,26782,26820,26835,27287,27319,27713,27789,27836,27917,28099,28104,28108,28109,28111,28112,28264,28291,28436,28555,28689,28728,28780,28817,28960,28999,29046,29059,29073,29081,29084,29087,29089,29090,29101,29202,29259,29368,29382,29387,29391,29407,29413,29422,29451,29463,29494,29712,29878,29949,29954,29956,30163,30247]]],["+",[6,6,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[970,1,1,2,3]]],[41,1,1,3,4,[[980,1,1,3,4]]],[42,1,1,4,5,[[998,1,1,4,5]]],[56,1,1,5,6,[[1132,1,1,5,6]]]],[24085,24371,24781,25273,26099,29956]]],["I",[3,3,[[44,1,1,0,1,[[1052,1,1,0,1]]],[47,1,1,1,2,[[1096,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[28112,29202,29407]]],["me",[84,78,[[39,6,6,0,6,[[938,1,1,0,1],[939,1,1,1,2],[946,2,2,2,4],[953,2,2,4,6]]],[41,5,5,6,11,[[976,1,1,6,7],[979,1,1,7,8],[984,1,1,8,9],[987,1,1,9,10],[994,1,1,10,11]]],[42,26,21,11,32,[[1001,1,1,11,12],[1002,1,1,12,13],[1003,1,1,13,14],[1004,1,1,14,15],[1006,2,1,15,16],[1008,3,1,16,17],[1010,5,4,17,21],[1011,6,5,21,26],[1012,1,1,26,27],[1013,3,3,27,30],[1014,1,1,30,31],[1015,1,1,31,32]]],[43,6,6,32,38,[[1027,1,1,32,33],[1028,1,1,33,34],[1039,1,1,34,35],[1041,1,1,35,36],[1043,1,1,36,37],[1045,1,1,37,38]]],[44,7,7,38,45,[[1052,6,6,38,44],[1059,1,1,44,45]]],[45,5,5,45,50,[[1065,1,1,45,46],[1070,1,1,46,47],[1075,1,1,47,48],[1076,1,1,48,49],[1077,1,1,49,50]]],[46,4,4,50,54,[[1078,1,1,50,51],[1086,1,1,51,52],[1088,1,1,52,53],[1090,1,1,53,54]]],[47,9,9,54,63,[[1091,3,3,54,57],[1092,5,5,57,62],[1096,1,1,62,63]]],[48,1,1,63,64,[[1099,1,1,63,64]]],[49,9,8,64,72,[[1103,5,4,64,68],[1104,1,1,68,69],[1105,1,1,69,70],[1106,2,2,70,72]]],[50,1,1,72,73,[[1107,1,1,72,73]]],[53,1,1,73,74,[[1119,1,1,73,74]]],[54,1,1,74,75,[[1128,1,1,74,75]]],[56,2,2,75,77,[[1132,2,2,75,77]]],[57,1,1,77,78,[[1142,1,1,77,78]]]],[23449,23465,23753,23756,24048,24053,25069,25218,25467,25617,25901,26256,26313,26351,26393,26519,26606,26678,26679,26688,26698,26701,26703,26704,26705,26706,26759,26765,26780,26782,26820,26835,27287,27319,27713,27789,27836,27917,28099,28104,28108,28109,28111,28112,28291,28436,28555,28689,28728,28780,28817,28960,28999,29046,29059,29073,29081,29084,29087,29089,29090,29101,29202,29259,29368,29382,29387,29391,29413,29422,29451,29463,29494,29712,29878,29949,29954,30163]]],["mine",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28264]]],["my",[3,3,[[42,2,2,0,2,[[1009,1,1,0,1],[1011,1,1,1,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]]],[26665,26707,30247]]]]},{"k":"G1699","v":[["*",[76,66,[[39,4,4,0,4,[[946,1,1,0,1],[948,2,2,1,3],[953,1,1,3,4]]],[40,2,2,4,6,[[964,1,1,4,5],[966,1,1,5,6]]],[41,3,3,6,9,[[981,1,1,6,7],[987,1,1,7,8],[994,1,1,8,9]]],[42,39,30,9,39,[[999,1,1,9,10],[1000,1,1,10,11],[1001,3,2,11,13],[1002,1,1,13,14],[1003,4,3,14,17],[1004,7,6,17,23],[1006,4,3,23,26],[1008,1,1,26,27],[1010,3,3,27,30],[1011,3,3,30,33],[1012,3,2,33,35],[1013,4,3,35,38],[1014,4,1,38,39]]],[44,2,2,39,41,[[1048,1,1,39,40],[1055,1,1,40,41]]],[45,10,9,41,50,[[1062,1,1,41,42],[1066,1,1,42,43],[1068,1,1,43,44],[1070,2,2,44,46],[1072,3,2,46,48],[1077,2,2,48,50]]],[46,3,3,50,53,[[1078,1,1,50,51],[1079,1,1,51,52],[1085,1,1,52,53]]],[47,2,2,53,55,[[1091,1,1,53,54],[1096,1,1,54,55]]],[49,2,2,55,57,[[1103,1,1,55,56],[1105,1,1,56,57]]],[50,1,1,57,58,[[1110,1,1,57,58]]],[52,1,1,58,59,[[1118,1,1,58,59]]],[54,1,1,59,60,[[1128,1,1,59,60]]],[56,3,3,60,63,[[1132,3,3,60,63]]],[60,1,1,63,64,[[1156,1,1,63,64]]],[63,1,1,64,65,[[1165,1,1,64,65]]],[65,1,1,65,66,[[1168,1,1,65,66]]]],[23747,23807,23815,24035,24538,24628,25327,25619,25883,26149,26190,26240,26257,26295,26334,26336,26344,26397,26412,26418,26424,26432,26437,26495,26507,26508,26606,26683,26692,26695,26708,26710,26711,26740,26741,26769,26772,26783,26821,27998,28189,28378,28458,28527,28542,28543,28624,28625,28794,28797,28823,28827,28955,29070,29199,29387,29430,29560,29695,29876,29948,29950,29957,30494,30662,30737]]],["+",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23807]]],["Mine",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28543]]],["My",[5,5,[[42,5,5,0,5,[[1000,1,1,0,1],[1003,2,2,1,3],[1006,1,1,3,4],[1014,1,1,4,5]]]],[26190,26334,26344,26508,26821]]],["have",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25619]]],["me",[4,4,[[41,1,1,0,1,[[994,1,1,0,1]]],[45,2,2,1,3,[[1072,2,2,1,3]]],[50,1,1,3,4,[[1110,1,1,3,4]]]],[25883,28624,28625,29560]]],["mine",[11,9,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[42,8,6,2,8,[[1003,1,1,2,3],[1006,1,1,3,4],[1010,1,1,4,5],[1012,3,2,5,7],[1013,2,1,7,8]]],[45,1,1,8,9,[[1070,1,1,8,9]]]],[23815,24628,26344,26495,26692,26740,26741,26769,28542]]],["my",[43,40,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[42,24,21,3,24,[[999,1,1,3,4],[1001,2,2,4,6],[1003,1,1,6,7],[1004,7,6,7,13],[1006,2,2,13,15],[1008,1,1,15,16],[1010,2,2,16,18],[1011,3,3,18,21],[1013,2,2,21,23],[1014,3,1,23,24]]],[44,2,2,24,26,[[1048,1,1,24,25],[1055,1,1,25,26]]],[45,4,4,26,30,[[1066,1,1,26,27],[1068,1,1,27,28],[1072,1,1,28,29],[1077,1,1,29,30]]],[46,3,3,30,33,[[1078,1,1,30,31],[1079,1,1,31,32],[1085,1,1,32,33]]],[47,1,1,33,34,[[1091,1,1,33,34]]],[49,1,1,34,35,[[1103,1,1,34,35]]],[54,1,1,35,36,[[1128,1,1,35,36]]],[56,1,1,36,37,[[1132,1,1,36,37]]],[60,1,1,37,38,[[1156,1,1,37,38]]],[63,1,1,38,39,[[1165,1,1,38,39]]],[65,1,1,39,40,[[1168,1,1,39,40]]]],[23747,24538,25327,26149,26240,26257,26336,26397,26412,26418,26424,26432,26437,26495,26507,26606,26683,26695,26708,26710,26711,26772,26783,26821,27998,28189,28458,28527,28625,28794,28823,28827,28955,29070,29387,29876,29948,30494,30662,30737]]],["own",[10,10,[[39,1,1,0,1,[[953,1,1,0,1]]],[42,2,2,1,3,[[1001,1,1,1,2],[1002,1,1,2,3]]],[45,2,2,3,5,[[1062,1,1,3,4],[1077,1,1,4,5]]],[47,1,1,5,6,[[1096,1,1,5,6]]],[49,1,1,6,7,[[1105,1,1,6,7]]],[52,1,1,7,8,[[1118,1,1,7,8]]],[56,2,2,8,10,[[1132,2,2,8,10]]]],[24035,26240,26295,28378,28797,29199,29430,29695,29950,29957]]]]},{"k":"G1700","v":[["*",[109,104,[[39,18,16,0,16,[[933,1,1,0,1],[935,1,1,1,2],[938,2,2,2,4],[939,1,1,4,5],[940,3,1,5,6],[943,2,2,6,8],[944,1,1,8,9],[945,1,1,9,10],[953,1,1,10,11],[954,5,5,11,16]]],[40,8,8,16,24,[[963,2,2,16,18],[964,1,1,18,19],[966,1,1,19,20],[969,1,1,20,21],[970,3,3,21,24]]],[41,18,16,24,40,[[977,1,1,24,25],[980,1,1,25,26],[981,1,1,26,27],[982,1,1,27,28],[983,4,2,28,30],[984,1,1,30,31],[985,1,1,31,32],[987,1,1,32,33],[988,1,1,33,34],[994,4,4,34,38],[995,1,1,38,39],[996,1,1,39,40]]],[42,25,24,40,64,[[1000,1,1,40,41],[1001,7,6,41,47],[1004,2,2,47,49],[1006,4,4,49,53],[1009,3,3,53,56],[1010,1,1,56,57],[1011,3,3,57,60],[1012,1,1,60,61],[1013,1,1,61,62],[1014,1,1,62,63],[1015,1,1,63,64]]],[43,6,6,64,70,[[1025,1,1,64,65],[1028,1,1,65,66],[1037,1,1,66,67],[1039,1,1,67,68],[1040,1,1,68,69],[1042,1,1,69,70]]],[44,7,7,70,77,[[1046,1,1,70,71],[1056,1,1,71,72],[1060,2,2,72,74],[1061,3,3,74,77]]],[46,5,5,77,82,[[1078,1,1,77,78],[1079,1,1,78,79],[1084,1,1,79,80],[1089,2,2,80,82]]],[47,3,3,82,85,[[1091,2,2,82,84],[1092,1,1,84,85]]],[48,1,1,85,86,[[1102,1,1,85,86]]],[49,1,1,86,87,[[1106,1,1,86,87]]],[54,4,4,87,91,[[1125,1,1,87,88],[1126,1,1,88,89],[1128,2,2,89,91]]],[55,1,1,91,92,[[1131,1,1,91,92]]],[57,1,1,92,93,[[1142,1,1,92,93]]],[65,11,11,93,104,[[1167,1,1,93,94],[1169,4,4,94,98],[1170,1,1,98,99],[1176,1,1,99,100],[1183,1,1,100,101],[1187,2,2,101,103],[1188,1,1,103,104]]]],[23245,23339,23435,23456,23488,23519,23638,23641,23697,23727,24049,24077,24092,24093,24094,24096,24469,24474,24535,24617,24726,24772,24774,24790,25115,25291,25325,25379,25412,25428,25472,25545,25619,25623,25885,25892,25901,25906,25978,26035,26165,26217,26242,26246,26247,26249,26256,26399,26410,26489,26490,26499,26506,26638,26648,26668,26674,26704,26725,26726,26758,26783,26819,26836,27200,27312,27660,27722,27745,27805,27942,28236,28321,28333,28338,28343,28349,28819,28826,28923,29028,29030,29068,29074,29101,29356,29452,29822,29829,29881,29887,29938,30140,30709,30750,30764,30766,30767,30769,30869,30976,31062,31068,31092]]],["+",[9,9,[[39,4,4,0,4,[[933,1,1,0,1],[938,2,2,1,3],[944,1,1,3,4]]],[40,3,3,4,7,[[964,1,1,4,5],[966,1,1,5,6],[969,1,1,6,7]]],[41,1,1,7,8,[[981,1,1,7,8]]],[42,1,1,8,9,[[1009,1,1,8,9]]]],[23245,23435,23456,23697,24535,24617,24726,25325,26668]]],["me",[96,91,[[39,14,12,0,12,[[935,1,1,0,1],[939,1,1,1,2],[940,3,1,2,3],[943,2,2,3,5],[945,1,1,5,6],[953,1,1,6,7],[954,5,5,7,12]]],[40,5,5,12,17,[[963,2,2,12,14],[970,3,3,14,17]]],[41,17,15,17,32,[[977,1,1,17,18],[980,1,1,18,19],[982,1,1,19,20],[983,4,2,20,22],[984,1,1,22,23],[985,1,1,23,24],[987,1,1,24,25],[988,1,1,25,26],[994,4,4,26,30],[995,1,1,30,31],[996,1,1,31,32]]],[42,24,23,32,55,[[1000,1,1,32,33],[1001,7,6,33,39],[1004,2,2,39,41],[1006,4,4,41,45],[1009,2,2,45,47],[1010,1,1,47,48],[1011,3,3,48,51],[1012,1,1,51,52],[1013,1,1,52,53],[1014,1,1,53,54],[1015,1,1,54,55]]],[43,6,6,55,61,[[1025,1,1,55,56],[1028,1,1,56,57],[1037,1,1,57,58],[1039,1,1,58,59],[1040,1,1,59,60],[1042,1,1,60,61]]],[44,4,4,61,65,[[1046,1,1,61,62],[1060,2,2,62,64],[1061,1,1,64,65]]],[46,5,5,65,70,[[1078,1,1,65,66],[1079,1,1,66,67],[1084,1,1,67,68],[1089,2,2,68,70]]],[47,3,3,70,73,[[1091,2,2,70,72],[1092,1,1,72,73]]],[48,1,1,73,74,[[1102,1,1,73,74]]],[49,1,1,74,75,[[1106,1,1,74,75]]],[54,4,4,75,79,[[1125,1,1,75,76],[1126,1,1,76,77],[1128,2,2,77,79]]],[55,1,1,79,80,[[1131,1,1,79,80]]],[65,11,11,80,91,[[1167,1,1,80,81],[1169,4,4,81,85],[1170,1,1,85,86],[1176,1,1,86,87],[1183,1,1,87,88],[1187,2,2,88,90],[1188,1,1,90,91]]]],[23339,23488,23519,23638,23641,23727,24049,24077,24092,24093,24094,24096,24469,24474,24772,24774,24790,25115,25291,25379,25412,25428,25472,25545,25619,25623,25885,25892,25901,25906,25978,26035,26165,26217,26242,26246,26247,26249,26256,26399,26410,26489,26490,26499,26506,26638,26648,26674,26704,26725,26726,26758,26783,26819,26836,27200,27312,27660,27722,27745,27805,27942,28321,28333,28343,28819,28826,28923,29028,29030,29068,29074,29101,29356,29452,29822,29829,29881,29887,29938,30709,30750,30764,30766,30767,30769,30869,30976,31062,31068,31092]]],["mine",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28349]]],["my",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28236]]],["of",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28338]]],["to",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30140]]]]},{"k":"G1701","v":[["mockings",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30208]]]]},{"k":"G1702","v":[["*",[13,13,[[39,5,5,0,5,[[930,1,1,0,1],[948,1,1,1,2],[955,3,3,2,5]]],[40,3,3,5,8,[[966,1,1,5,6],[971,2,2,6,8]]],[41,5,5,8,13,[[986,1,1,8,9],[990,1,1,9,10],[994,1,1,10,11],[995,2,2,11,13]]]],[23185,23811,24158,24160,24170,24622,24846,24857,25582,25720,25927,25946,25971]]],["mock",[3,3,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[986,1,1,2,3]]]],[23811,24622,25582]]],["mocked",[8,8,[[39,3,3,0,3,[[930,1,1,0,1],[955,2,2,1,3]]],[40,1,1,3,4,[[971,1,1,3,4]]],[41,4,4,4,8,[[990,1,1,4,5],[994,1,1,5,6],[995,2,2,6,8]]]],[23185,24158,24160,24846,25720,25927,25946,25971]]],["mocking",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24170,24857]]]]},{"k":"G1703","v":[["*",[2,2,[[60,1,1,0,1,[[1158,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[30525,30690]]],["mockers",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30690]]],["scoffers",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30525]]]]},{"k":"G1704","v":[["in",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28914]]]]},{"k":"G1705","v":[["*",[5,5,[[41,2,2,0,2,[[973,1,1,0,1],[978,1,1,1,2]]],[42,1,1,2,3,[[1002,1,1,2,3]]],[43,1,1,3,4,[[1031,1,1,3,4]]],[44,1,1,4,5,[[1060,1,1,4,5]]]],[24946,25171,26269,27431,28327]]],["filled",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[44,1,1,2,3,[[1060,1,1,2,3]]]],[24946,26269,28327]]],["filling",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27431]]],["full",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25171]]]]},{"k":"G1706","v":[["*",[7,7,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,2,2,1,3,[[982,1,1,1,2],[986,1,1,2,3]]],[53,3,3,3,6,[[1121,2,2,3,5],[1124,1,1,5,6]]],[57,1,1,6,7,[[1142,1,1,6,7]]]],[23500,25399,25558,29737,29738,29797,30164]]],["fall",[5,5,[[39,1,1,0,1,[[940,1,1,0,1]]],[53,3,3,1,4,[[1121,2,2,1,3],[1124,1,1,3,4]]],[57,1,1,4,5,[[1142,1,1,4,5]]]],[23500,29737,29738,29797,30164]]],["fallen",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25558]]],["fell",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25399]]]]},{"k":"G1707","v":[["*",[2,2,[[54,1,1,0,1,[[1126,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[29831,30520]]],["entangled",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30520]]],["with",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29831]]]]},{"k":"G1708","v":[["plaiting",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30427]]]]},{"k":"G1709","v":[["out",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27217]]]]},{"k":"G1710","v":[["*",[2,2,[[58,1,1,0,1,[[1149,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[30350,30503]]],["merchandise",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30503]]],["sell",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30350]]]]},{"k":"G1711","v":[["merchandise",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23877]]]]},{"k":"G1712","v":[["merchandise",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26111]]]]},{"k":"G1713","v":[["*",[5,5,[[39,1,1,0,1,[[941,1,1,0,1]]],[65,4,4,1,5,[[1184,4,4,1,5]]]],[23584,30996,31004,31008,31016]]],["merchant",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23584]]],["merchants",[4,4,[[65,4,4,0,4,[[1184,4,4,0,4]]]],[30996,31004,31008,31016]]]]},{"k":"G1714","v":[["up",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23879]]]]},{"k":"G1715","v":[["*",[48,45,[[39,18,16,0,16,[[933,2,2,0,2],[934,2,2,2,4],[935,1,1,4,5],[938,4,2,5,7],[939,2,2,7,9],[945,1,1,9,10],[946,1,1,10,11],[951,1,1,11,12],[953,1,1,12,13],[954,1,1,13,14],[955,2,2,14,16]]],[40,2,2,16,18,[[957,1,1,16,17],[965,1,1,17,18]]],[41,10,9,18,27,[[977,1,1,18,19],[979,1,1,19,20],[982,1,1,20,21],[984,2,1,21,22],[986,1,1,22,23],[991,3,3,23,26],[993,1,1,26,27]]],[42,6,6,27,33,[[997,3,3,27,30],[999,1,1,30,31],[1006,1,1,31,32],[1008,1,1,32,33]]],[43,1,1,33,34,[[1035,1,1,33,34]]],[46,1,1,34,35,[[1082,1,1,34,35]]],[47,1,1,35,36,[[1092,1,1,35,36]]],[49,1,1,36,37,[[1105,1,1,36,37]]],[51,4,4,37,41,[[1111,1,1,37,38],[1112,1,1,38,39],[1113,2,2,39,41]]],[61,1,1,41,42,[[1161,1,1,41,42]]],[65,3,3,42,45,[[1170,1,1,42,43],[1185,1,1,43,44],[1188,1,1,44,45]]]],[23250,23258,23283,23284,23322,23449,23450,23469,23485,23702,23741,23931,24040,24124,24140,24158,24217,24540,25126,25222,25384,25467,25555,25735,25758,25759,25862,26059,26071,26074,26148,26485,26617,27574,28887,29095,29434,29563,29589,29599,29603,30598,30774,31027,31088]]],["+",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[23485,25384]]],["against",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23931]]],["at",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31027]]],["before",[41,38,[[39,15,13,0,13,[[933,2,2,0,2],[934,2,2,2,4],[935,1,1,4,5],[938,4,2,5,7],[939,1,1,7,8],[945,1,1,8,9],[953,1,1,9,10],[954,1,1,10,11],[955,2,2,11,13]]],[40,2,2,13,15,[[957,1,1,13,14],[965,1,1,14,15]]],[41,9,8,15,23,[[977,1,1,15,16],[979,1,1,16,17],[984,2,1,17,18],[986,1,1,18,19],[991,3,3,19,22],[993,1,1,22,23]]],[42,6,6,23,29,[[997,3,3,23,26],[999,1,1,26,27],[1006,1,1,27,28],[1008,1,1,28,29]]],[43,1,1,29,30,[[1035,1,1,29,30]]],[46,1,1,30,31,[[1082,1,1,30,31]]],[47,1,1,31,32,[[1092,1,1,31,32]]],[49,1,1,32,33,[[1105,1,1,32,33]]],[51,2,2,33,35,[[1113,2,2,33,35]]],[61,1,1,35,36,[[1161,1,1,35,36]]],[65,2,2,36,38,[[1170,1,1,36,37],[1188,1,1,37,38]]]],[23250,23258,23283,23284,23322,23449,23450,23469,23702,24040,24124,24140,24158,24217,24540,25126,25222,25467,25555,25735,25758,25759,25862,26059,26071,26074,26148,26485,26617,27574,28887,29095,29434,29599,29603,30598,30774,31088]]],["of",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23741]]],["presence",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29589]]],["sight",[1,1,[[51,1,1,0,1,[[1111,1,1,0,1]]]],[29563]]]]},{"k":"G1716","v":[["*",[6,6,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,3,3,2,5,[[966,1,1,2,3],[970,1,1,3,4],[971,1,1,4,5]]],[41,1,1,5,6,[[990,1,1,5,6]]]],[24121,24159,24622,24819,24845,25720]]],["on",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]]],[24819,25720]]],["spit",[2,2,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]]],[24121,24159]]],["upon",[2,2,[[40,2,2,0,2,[[966,1,1,0,1],[971,1,1,1,2]]]],[24622,24845]]]]},{"k":"G1717","v":[["*",[2,2,[[43,1,1,0,1,[[1027,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]]],[27299,28208]]],["+",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27299]]],["manifest",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28208]]]]},{"k":"G1718","v":[["*",[10,10,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,2,2,1,3,[[1010,2,2,1,3]]],[43,5,5,3,8,[[1040,2,2,3,5],[1041,1,1,5,6],[1042,2,2,6,8]]],[57,2,2,8,10,[[1141,1,1,8,9],[1143,1,1,9,10]]]],[24182,26689,26690,27749,27756,27770,27798,27811,30129,30186]]],["appear",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30129]]],["appeared",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24182]]],["informed",[3,3,[[43,3,3,0,3,[[1041,1,1,0,1],[1042,2,2,1,3]]]],[27770,27798,27811]]],["manifest",[2,2,[[42,2,2,0,2,[[1010,2,2,0,2]]]],[26689,26690]]],["plainly",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30186]]],["shewed",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27756]]],["signify",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27749]]]]},{"k":"G1719","v":[["*",[6,6,[[41,2,2,0,2,[[996,2,2,0,2]]],[43,3,3,2,5,[[1027,1,1,2,3],[1039,1,1,3,4],[1041,1,1,4,5]]],[65,1,1,5,6,[[1177,1,1,5,6]]]],[25996,26028,27263,27713,27794,30885]]],["+",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]]],[26028,27794]]],["affrighted",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30885]]],["afraid",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,2,2,1,3,[[1027,1,1,1,2],[1039,1,1,2,3]]]],[25996,27263,27713]]]]},{"k":"G1720","v":[["on",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26889]]]]},{"k":"G1721","v":[["engrafted",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30287]]]]},{"k":"G1722","v":[["*",[2720,2073,[[39,296,235,0,235,[[929,3,3,0,3],[930,10,8,3,11],[931,9,7,11,18],[932,6,4,18,22],[933,13,12,22,34],[934,20,12,34,46],[935,10,8,46,54],[936,6,6,54,60],[937,9,8,60,68],[938,14,11,68,79],[939,17,12,79,91],[940,18,14,91,105],[941,20,18,105,123],[942,7,7,123,130],[943,2,2,130,132],[944,7,6,132,138],[945,4,4,138,142],[946,12,9,142,151],[947,2,2,151,153],[948,7,6,153,159],[949,19,16,159,175],[950,12,9,175,184],[951,21,11,184,195],[952,17,14,195,209],[953,10,10,209,219],[954,15,11,219,230],[955,5,4,230,234],[956,1,1,234,235]]],[40,140,117,235,352,[[957,16,14,235,249],[958,9,7,249,256],[959,2,2,256,258],[960,11,10,258,268],[961,11,9,268,277],[962,13,11,277,288],[964,7,6,288,294],[965,12,8,294,302],[966,9,7,302,309],[967,12,11,309,320],[968,12,9,320,329],[969,8,7,329,336],[970,10,8,336,344],[971,5,5,344,349],[972,3,3,349,352]]],[41,329,264,352,616,[[973,31,29,352,381],[974,27,22,381,403],[975,9,8,403,411],[976,21,19,411,430],[977,8,8,430,438],[978,13,8,438,446],[979,16,11,446,457],[980,12,9,457,466],[981,9,8,466,474],[982,14,11,474,485],[983,14,11,485,496],[984,19,15,496,511],[985,16,12,511,523],[986,5,5,523,528],[987,3,3,528,531],[988,13,8,531,539],[989,9,6,539,545],[990,7,6,545,551],[991,13,10,551,561],[992,11,7,561,568],[993,15,10,568,578],[994,14,13,578,591],[995,15,13,591,604],[996,15,12,604,616]]],[42,222,168,616,784,[[997,14,13,616,629],[998,9,7,629,636],[999,5,5,636,641],[1000,16,12,641,653],[1001,19,16,653,669],[1002,11,9,669,678],[1003,15,12,678,690],[1004,16,12,690,702],[1005,5,5,702,707],[1006,8,6,707,713],[1007,13,11,713,724],[1008,6,6,724,730],[1009,7,5,730,735],[1010,16,9,735,744],[1011,18,12,744,756],[1012,10,6,756,762],[1013,17,9,762,771],[1014,6,4,771,775],[1015,6,4,775,779],[1016,4,4,779,783],[1017,1,1,783,784]]],[43,269,217,784,1001,[[1018,12,9,784,793],[1019,9,8,793,801],[1020,1,1,801,802],[1021,13,8,802,810],[1022,14,11,810,821],[1023,5,4,821,825],[1024,35,23,825,848],[1025,7,6,848,854],[1026,21,17,854,871],[1027,11,9,871,880],[1028,12,10,880,890],[1029,5,4,890,894],[1030,16,13,894,907],[1031,5,5,907,912],[1032,6,6,912,918],[1033,8,8,918,926],[1034,15,10,926,936],[1035,7,7,936,943],[1036,5,5,943,948],[1037,11,11,948,959],[1038,5,5,959,964],[1039,5,3,964,967],[1040,4,4,967,971],[1041,8,6,971,977],[1042,6,4,977,981],[1043,12,10,981,991],[1044,4,4,991,995],[1045,7,6,995,1001]]],[44,170,133,1001,1134,[[1046,26,20,1001,1021],[1047,15,12,1021,1033],[1048,8,7,1033,1040],[1049,6,3,1040,1043],[1050,10,10,1043,1053],[1051,6,5,1053,1058],[1052,11,7,1058,1065],[1053,19,14,1065,1079],[1054,10,8,1079,1087],[1055,6,4,1087,1091],[1056,3,3,1091,1094],[1057,10,6,1094,1100],[1058,3,2,1100,1102],[1059,6,6,1102,1108],[1060,15,13,1108,1121],[1061,16,13,1121,1134]]],[45,171,121,1134,1255,[[1062,18,12,1134,1146],[1063,13,8,1146,1154],[1064,8,7,1154,1161],[1065,13,8,1161,1169],[1066,8,5,1169,1174],[1067,9,7,1174,1181],[1068,14,9,1181,1190],[1069,4,4,1190,1194],[1070,6,6,1194,1200],[1071,6,4,1200,1204],[1072,11,9,1204,1213],[1073,9,7,1213,1220],[1074,1,1,1220,1221],[1075,17,10,1221,1231],[1076,26,16,1231,1247],[1077,8,8,1247,1255]]],[46,166,105,1255,1360,[[1078,16,10,1255,1265],[1079,8,6,1265,1271],[1080,11,8,1271,1279],[1081,12,9,1279,1288],[1082,10,9,1288,1297],[1083,24,8,1297,1305],[1084,13,10,1305,1315],[1085,11,9,1315,1324],[1086,4,4,1324,1328],[1087,9,8,1328,1336],[1088,27,13,1336,1349],[1089,15,7,1349,1356],[1090,6,4,1356,1360]]],[47,43,36,1360,1396,[[1091,8,6,1360,1366],[1092,6,4,1366,1370],[1093,11,10,1370,1380],[1094,5,5,1380,1385],[1095,5,4,1385,1389],[1096,8,7,1389,1396]]],[48,126,87,1396,1483,[[1097,28,17,1396,1413],[1098,28,14,1413,1427],[1099,18,14,1427,1441],[1100,19,15,1441,1456],[1101,12,11,1456,1467],[1102,21,16,1467,1483]]],[49,66,50,1483,1533,[[1103,23,16,1483,1499],[1104,15,11,1499,1510],[1105,10,8,1510,1518],[1106,18,15,1518,1533]]],[50,88,58,1533,1591,[[1107,31,22,1533,1555],[1108,27,16,1555,1571],[1109,17,10,1571,1581],[1110,13,10,1581,1591]]],[51,52,37,1591,1628,[[1111,10,5,1591,1596],[1112,12,9,1596,1605],[1113,6,5,1605,1610],[1114,13,10,1610,1620],[1115,11,8,1620,1628]]],[52,27,21,1628,1649,[[1116,12,7,1628,1635],[1117,8,7,1635,1642],[1118,7,7,1642,1649]]],[53,46,30,1649,1679,[[1119,7,7,1649,1656],[1120,11,7,1656,1663],[1121,11,6,1663,1669],[1122,11,5,1669,1674],[1123,3,3,1674,1677],[1124,3,2,1677,1679]]],[54,37,28,1679,1707,[[1125,15,10,1679,1689],[1126,7,6,1689,1695],[1127,8,6,1695,1701],[1128,7,6,1701,1707]]],[55,13,13,1707,1720,[[1129,5,5,1707,1712],[1130,5,5,1712,1717],[1131,3,3,1717,1720]]],[56,10,7,1720,1727,[[1132,10,7,1720,1727]]],[57,61,54,1727,1781,[[1133,4,3,1727,1730],[1134,2,2,1730,1732],[1135,8,7,1732,1739],[1136,4,4,1739,1743],[1137,2,2,1743,1745],[1138,2,2,1745,1747],[1139,1,1,1747,1748],[1140,5,3,1748,1751],[1141,5,5,1751,1756],[1142,11,10,1756,1766],[1143,9,8,1766,1774],[1144,2,2,1774,1776],[1145,6,5,1776,1781]]],[58,37,32,1781,1813,[[1146,11,11,1781,1792],[1147,7,6,1792,1798],[1148,8,6,1798,1804],[1149,5,4,1804,1808],[1150,6,5,1808,1813]]],[59,51,42,1813,1855,[[1151,14,12,1813,1825],[1152,9,6,1825,1831],[1153,10,7,1831,1838],[1154,10,10,1838,1848],[1155,8,7,1848,1855]]],[60,43,27,1855,1882,[[1156,17,10,1855,1865],[1157,14,10,1865,1875],[1158,12,7,1875,1882]]],[61,80,48,1882,1930,[[1159,6,5,1882,1887],[1160,26,14,1887,1901],[1161,13,10,1901,1911],[1162,25,11,1911,1922],[1163,10,8,1922,1930]]],[62,8,7,1930,1937,[[1164,8,7,1930,1937]]],[63,3,3,1937,1940,[[1165,3,3,1937,1940]]],[64,9,9,1940,1949,[[1166,9,9,1940,1949]]],[65,157,124,1949,2073,[[1167,14,10,1949,1959],[1168,11,9,1959,1968],[1169,8,6,1968,1974],[1170,5,4,1974,1978],[1171,7,4,1978,1982],[1172,5,3,1982,1985],[1173,3,3,1985,1988],[1174,3,3,1988,1991],[1175,8,6,1991,1997],[1176,9,6,1997,2003],[1177,7,6,2003,2009],[1178,8,8,2009,2017],[1179,5,4,2017,2021],[1180,11,10,2021,2031],[1181,3,2,2031,2033],[1182,2,2,2033,2035],[1183,3,3,2035,2038],[1184,16,10,2038,2048],[1185,11,8,2048,2056],[1186,6,5,2056,2061],[1187,7,7,2061,2068],[1188,5,5,2068,2073]]]],[23162,23164,23167,23170,23171,23174,23175,23178,23185,23187,23188,23193,23195,23198,23201,23203,23204,23209,23222,23225,23230,23232,23246,23247,23249,23250,23253,23259,23262,23268,23269,23270,23279,23282,23283,23284,23286,23287,23288,23289,23291,23292,23300,23302,23305,23311,23318,23319,23320,23322,23327,23331,23337,23338,23351,23355,23356,23358,23369,23377,23382,23383,23389,23400,23410,23412,23413,23414,23428,23432,23433,23434,23436,23437,23440,23444,23445,23449,23450,23460,23461,23465,23467,23470,23475,23479,23480,23481,23482,23483,23484,23490,23491,23494,23508,23510,23513,23516,23517,23521,23525,23529,23530,23531,23539,23542,23549,23552,23558,23560,23563,23566,23569,23570,23571,23573,23574,23579,23582,23583,23588,23593,23596,23598,23599,23600,23603,23607,23610,23630,23665,23666,23679,23680,23689,23691,23699,23700,23705,23712,23721,23722,23728,23729,23731,23733,23737,23741,23745,23746,23747,23783,23790,23795,23807,23809,23813,23818,23819,23834,23835,23838,23840,23841,23845,23848,23849,23850,23853,23854,23858,23859,23864,23867,23868,23873,23887,23888,23900,23902,23908,23909,23912,23915,23924,23925,23927,23934,23936,23938,23939,23940,23948,23952,23957,23971,23972,23973,23975,23976,23977,23983,23987,23995,23997,23998,24002,24005,24007,24012,24021,24024,24026,24033,24039,24044,24047,24051,24052,24059,24060,24067,24077,24083,24085,24087,24088,24106,24109,24123,24134,24169,24185,24189,24213,24217,24218,24219,24220,24223,24224,24226,24228,24231,24234,24235,24238,24254,24260,24266,24268,24275,24279,24280,24283,24284,24310,24311,24324,24325,24334,24338,24340,24347,24351,24353,24358,24359,24366,24367,24369,24377,24384,24385,24389,24391,24394,24409,24410,24411,24418,24421,24424,24434,24436,24454,24458,24463,24501,24503,24514,24526,24527,24538,24539,24567,24571,24572,24574,24576,24579,24588,24598,24609,24618,24620,24625,24631,24640,24649,24650,24653,24655,24663,24665,24666,24667,24668,24669,24673,24674,24684,24696,24698,24699,24708,24709,24711,24712,24728,24731,24734,24741,24742,24743,24749,24755,24756,24757,24779,24781,24784,24803,24820,24833,24855,24866,24867,24872,24878,24885,24890,24894,24898,24899,24900,24901,24910,24911,24914,24915,24918,24919,24921,24924,24929,24932,24934,24935,24937,24944,24952,24954,24958,24959,24962,24968,24970,24971,24972,24973,24974,24980,24981,24984,24985,24987,24989,24992,24994,24996,24997,24998,25000,25002,25007,25009,25011,25016,25017,25019,25022,25024,25026,25029,25033,25040,25041,25042,25045,25047,25064,25065,25068,25077,25078,25079,25081,25083,25084,25086,25087,25088,25090,25091,25094,25095,25096,25099,25107,25114,25119,25123,25124,25129,25136,25141,25142,25147,25148,25152,25153,25158,25169,25187,25188,25204,25211,25212,25216,25218,25220,25223,25227,25232,25234,25244,25246,25252,25255,25258,25260,25267,25272,25277,25288,25313,25327,25332,25337,25338,25347,25349,25358,25366,25370,25372,25375,25376,25377,25380,25383,25384,25389,25394,25406,25407,25420,25423,25424,25425,25426,25436,25437,25440,25448,25460,25462,25467,25471,25476,25486,25487,25492,25497,25501,25504,25505,25510,25511,25517,25519,25522,25524,25525,25528,25532,25537,25544,25546,25547,25549,25553,25558,25567,25568,25584,25587,25592,25595,25613,25623,25630,25631,25632,25635,25643,25644,25645,25657,25675,25677,25679,25682,25687,25690,25691,25692,25696,25710,25718,25736,25748,25751,25761,25767,25769,25773,25775,25776,25778,25780,25781,25787,25789,25812,25821,25825,25832,25845,25847,25849,25851,25853,25860,25862,25863,25864,25871,25880,25884,25888,25890,25891,25892,25894,25901,25908,25913,25917,25919,25939,25942,25944,25947,25949,25954,25957,25964,25966,25975,25977,25978,25988,25995,25997,26009,26010,26018,26023,26026,26027,26029,26035,26040,26044,26045,26046,26048,26049,26054,26058,26067,26070,26072,26075,26077,26089,26091,26096,26106,26109,26114,26115,26118,26120,26133,26134,26141,26143,26155,26170,26176,26177,26179,26180,26187,26193,26200,26201,26202,26208,26209,26212,26213,26214,26215,26217,26219,26223,26224,26226,26236,26238,26245,26248,26249,26252,26253,26267,26288,26296,26302,26306,26310,26313,26316,26318,26329,26332,26337,26338,26339,26340,26346,26350,26351,26356,26365,26371,26384,26386,26390,26393,26398,26401,26402,26405,26412,26416,26418,26425,26443,26445,26456,26470,26474,26500,26503,26504,26506,26515,26519,26529,26532,26533,26540,26543,26547,26553,26554,26561,26577,26579,26593,26600,26605,26615,26626,26628,26631,26653,26661,26662,26665,26670,26678,26679,26681,26682,26685,26688,26694,26698,26701,26703,26704,26705,26706,26707,26708,26709,26710,26715,26723,26724,26749,26750,26751,26752,26756,26759,26769,26770,26771,26772,26776,26778,26780,26782,26785,26805,26811,26823,26824,26829,26831,26856,26866,26879,26892,26897,26898,26918,26926,26928,26929,26930,26931,26933,26938,26943,26944,26954,26957,26966,26967,26968,26971,26978,26995,27002,27024,27029,27031,27032,27034,27046,27053,27056,27063,27071,27077,27079,27081,27082,27084,27086,27093,27096,27101,27102,27108,27109,27116,27118,27120,27121,27122,27123,27128,27129,27132,27133,27136,27138,27145,27146,27149,27150,27151,27152,27154,27157,27158,27160,27161,27164,27177,27184,27185,27190,27197,27209,27226,27227,27228,27229,27233,27235,27236,27237,27238,27241,27243,27244,27245,27252,27253,27254,27259,27260,27262,27271,27276,27289,27291,27294,27298,27307,27312,27318,27320,27321,27322,27323,27329,27333,27334,27336,27342,27344,27348,27355,27363,27367,27377,27379,27380,27381,27388,27389,27395,27397,27401,27402,27403,27415,27422,27429,27430,27439,27449,27454,27463,27464,27477,27478,27485,27486,27487,27489,27495,27501,27515,27519,27534,27536,27539,27540,27545,27546,27547,27551,27554,27557,27561,27566,27567,27568,27575,27581,27583,27586,27594,27601,27606,27624,27631,27633,27634,27636,27641,27642,27645,27648,27651,27654,27658,27675,27683,27691,27693,27698,27707,27721,27722,27740,27743,27745,27769,27780,27781,27785,27787,27789,27790,27800,27801,27802,27820,27827,27830,27833,27835,27841,27843,27844,27849,27851,27852,27876,27882,27886,27892,27906,27908,27910,27917,27928,27929,27932,27934,27935,27936,27937,27938,27939,27940,27942,27943,27945,27947,27948,27949,27951,27953,27954,27955,27957,27958,27963,27967,27974,27977,27978,27979,27981,27982,27985,27986,27990,27991,27995,27998,28007,28010,28015,28016,28017,28032,28033,28034,28049,28050,28052,28056,28057,28058,28060,28062,28064,28068,28070,28072,28079,28080,28091,28096,28097,28099,28108,28109,28111,28114,28117,28118,28119,28120,28124,28125,28126,28127,28131,28139,28145,28150,28153,28155,28156,28162,28172,28177,28180,28181,28183,28188,28193,28194,28196,28197,28211,28214,28226,28248,28249,28250,28252,28253,28266,28275,28279,28285,28294,28297,28298,28301,28302,28308,28309,28312,28316,28319,28320,28322,28326,28329,28332,28333,28334,28335,28337,28338,28339,28343,28344,28345,28346,28347,28348,28349,28352,28356,28358,28365,28367,28368,28369,28370,28371,28373,28374,28380,28384,28393,28394,28396,28397,28398,28399,28400,28401,28405,28407,28411,28413,28423,28426,28428,28429,28431,28435,28437,28439,28443,28448,28450,28453,28454,28455,28458,28459,28462,28463,28469,28471,28472,28474,28478,28486,28487,28501,28502,28504,28505,28507,28509,28511,28524,28526,28531,28532,28534,28537,28541,28542,28549,28555,28558,28564,28569,28572,28575,28592,28611,28613,28618,28619,28621,28622,28625,28630,28634,28637,28640,28643,28647,28652,28659,28662,28677,28684,28688,28689,28697,28699,28703,28706,28711,28712,28713,28719,28721,28730,28735,28736,28737,28740,28741,28746,28749,28750,28759,28760,28761,28770,28776,28783,28784,28787,28789,28790,28795,28796,28800,28801,28804,28806,28808,28809,28812,28814,28819,28820,28822,28825,28834,28836,28838,28839,28841,28843,28844,28848,28849,28850,28851,28852,28855,28861,28862,28863,28865,28866,28867,28869,28870,28871,28878,28879,28881,28883,28888,28889,28894,28896,28898,28900,28901,28902,28903,28904,28905,28910,28914,28917,28919,28921,28922,28923,28924,28925,28927,28930,28932,28933,28934,28939,28942,28946,28948,28950,28952,28954,28959,28960,28964,28967,28972,28974,28977,28983,28985,28986,28987,28988,28992,28995,28998,28999,29001,29006,29010,29012,29014,29015,29016,29021,29022,29024,29025,29027,29031,29032,29034,29041,29046,29047,29048,29055,29063,29070,29071,29073,29079,29081,29083,29085,29098,29101,29103,29107,29110,29112,29113,29114,29116,29121,29128,29130,29145,29149,29150,29151,29156,29166,29168,29172,29176,29189,29194,29200,29201,29202,29203,29205,29207,29209,29210,29212,29213,29214,29215,29216,29217,29218,29219,29221,29223,29224,29226,29227,29229,29231,29232,29233,29235,29236,29239,29240,29241,29242,29244,29245,29247,29250,29251,29254,29255,29256,29257,29259,29260,29261,29262,29263,29264,29266,29268,29271,29272,29273,29274,29275,29276,29278,29286,29287,29288,29289,29290,29291,29293,29296,29302,29304,29306,29307,29309,29312,29313,29322,29323,29324,29325,29328,29330,29338,29339,29341,29342,29346,29347,29349,29350,29351,29352,29353,29355,29356,29357,29358,29361,29362,29365,29367,29368,29369,29370,29374,29375,29379,29381,29383,29385,29387,29388,29389,29391,29392,29396,29397,29398,29401,29403,29404,29406,29410,29415,29420,29422,29424,29425,29427,29430,29435,29440,29441,29443,29444,29445,29446,29448,29449,29451,29452,29453,29454,29455,29457,29458,29461,29463,29467,29469,29470,29471,29473,29474,29475,29476,29477,29479,29481,29482,29483,29484,29485,29486,29487,29488,29489,29492,29493,29494,29495,29496,29497,29498,29500,29501,29503,29504,29505,29506,29507,29509,29510,29512,29514,29517,29518,29520,29521,29524,29528,29532,29533,29534,29535,29539,29543,29544,29547,29548,29549,29554,29555,29557,29558,29559,29561,29565,29566,29567,29568,29572,29573,29575,29576,29577,29583,29584,29587,29589,29591,29592,29593,29598,29603,29604,29607,29608,29609,29610,29613,29618,29619,29620,29621,29623,29624,29625,29633,29634,29639,29644,29647,29650,29653,29656,29657,29659,29660,29661,29667,29670,29671,29673,29674,29677,29678,29682,29684,29685,29686,29689,29694,29695,29698,29699,29700,29709,29710,29712,29714,29718,29723,29725,29727,29728,29730,29731,29735,29740,29742,29744,29746,29747,29748,29749,29759,29761,29762,29765,29773,29780,29805,29806,29810,29812,29814,29815,29818,29822,29823,29824,29826,29827,29828,29834,29836,29837,29847,29852,29854,29864,29865,29867,29868,29869,29872,29875,29878,29883,29886,29890,29895,29897,29898,29901,29905,29911,29915,29917,29918,29920,29926,29928,29938,29944,29946,29948,29951,29954,29958,29961,29964,29965,29966,29989,29995,29997,30000,30003,30006,30007,30010,30012,30017,30019,30021,30025,30036,30037,30061,30062,30074,30093,30097,30101,30107,30109,30127,30128,30130,30136,30140,30143,30145,30152,30155,30162,30165,30167,30171,30174,30181,30190,30191,30198,30206,30209,30210,30214,30235,30244,30245,30259,30261,30262,30267,30272,30274,30275,30276,30277,30287,30289,30291,30292,30293,30294,30295,30297,30298,30303,30309,30321,30325,30328,30332,30333,30337,30338,30340,30342,30353,30357,30359,30367,30368,30373,30376,30378,30379,30380,30381,30385,30386,30387,30388,30389,30391,30396,30401,30405,30411,30417,30421,30423,30426,30428,30439,30440,30443,30444,30446,30447,30448,30449,30450,30457,30458,30459,30460,30462,30465,30466,30467,30471,30474,30475,30478,30479,30480,30481,30483,30484,30485,30486,30491,30492,30497,30498,30501,30503,30507,30508,30510,30512,30513,30516,30518,30520,30523,30532,30533,30535,30536,30538,30540,30545,30546,30547,30548,30550,30553,30554,30555,30556,30558,30559,30560,30561,30564,30565,30566,30574,30577,30578,30584,30585,30588,30589,30593,30594,30595,30596,30598,30603,30605,30606,30607,30612,30613,30615,30616,30618,30619,30620,30621,30626,30630,30631,30632,30634,30635,30643,30644,30646,30647,30648,30649,30651,30652,30654,30659,30661,30662,30673,30682,30684,30686,30690,30692,30693,30695,30696,30698,30700,30701,30702,30706,30707,30708,30710,30712,30713,30718,30724,30729,30730,30733,30735,30740,30741,30744,30747,30750,30751,30753,30758,30767,30769,30770,30772,30774,30782,30785,30788,30792,30798,30799,30801,30819,30824,30825,30828,30836,30840,30846,30850,30851,30857,30859,30860,30863,30867,30868,30869,30870,30871,30873,30878,30884,30885,30887,30891,30892,30893,30894,30896,30898,30899,30901,30903,30914,30916,30918,30920,30928,30931,30932,30933,30935,30936,30939,30940,30941,30943,30947,30951,30957,30962,30978,30979,30991,30995,30999,31000,31001,31003,31009,31012,31015,31016,31017,31018,31019,31028,31031,31032,31034,31037,31038,31044,31046,31050,31051,31053,31061,31063,31067,31075,31076,31077,31080,31082,31083,31086,31098,31099]]],["+",[174,164,[[39,15,14,0,14,[[929,2,2,0,2],[933,1,1,2,3],[934,3,3,3,6],[938,2,1,6,7],[939,1,1,7,8],[942,1,1,8,9],[949,1,1,9,10],[952,1,1,10,11],[953,1,1,11,12],[954,2,2,12,14]]],[40,6,5,14,19,[[958,1,1,14,15],[965,2,1,15,16],[967,1,1,16,17],[969,1,1,17,18],[970,1,1,18,19]]],[41,21,21,19,40,[[973,1,1,19,20],[974,2,2,20,22],[977,1,1,22,23],[979,1,1,23,24],[980,2,2,24,26],[982,3,3,26,29],[984,2,2,29,31],[985,1,1,31,32],[986,1,1,32,33],[990,1,1,33,34],[991,1,1,34,35],[993,2,2,35,37],[994,3,3,37,40]]],[42,8,8,40,48,[[1000,2,2,40,42],[1001,1,1,42,43],[1003,1,1,43,44],[1005,1,1,44,45],[1009,1,1,45,46],[1011,1,1,46,47],[1015,1,1,47,48]]],[43,26,25,48,73,[[1018,2,2,48,50],[1019,1,1,50,51],[1021,2,2,51,53],[1024,1,1,53,54],[1026,1,1,54,55],[1027,1,1,55,56],[1028,2,2,56,58],[1029,1,1,58,59],[1030,1,1,59,60],[1031,1,1,60,61],[1032,1,1,61,62],[1034,2,2,62,64],[1037,1,1,64,65],[1039,1,1,65,66],[1041,2,2,66,68],[1042,1,1,68,69],[1043,5,4,69,73]]],[44,17,16,73,89,[[1046,3,3,73,76],[1047,4,3,76,79],[1049,2,2,79,81],[1050,1,1,81,82],[1051,1,1,82,83],[1052,1,1,83,84],[1053,1,1,84,85],[1058,1,1,85,86],[1059,1,1,86,87],[1060,1,1,87,88],[1061,1,1,88,89]]],[45,9,8,89,97,[[1065,1,1,89,90],[1068,3,2,90,92],[1074,1,1,92,93],[1075,1,1,93,94],[1076,2,2,94,96],[1077,1,1,96,97]]],[46,10,8,97,105,[[1080,4,3,97,100],[1085,1,1,100,101],[1088,5,4,101,105]]],[48,9,9,105,114,[[1097,1,1,105,106],[1098,2,2,106,108],[1100,2,2,108,110],[1101,1,1,110,111],[1102,3,3,111,114]]],[49,2,2,114,116,[[1103,1,1,114,115],[1106,1,1,115,116]]],[50,5,5,116,121,[[1107,1,1,116,117],[1108,4,4,117,121]]],[51,4,4,121,125,[[1112,3,3,121,124],[1115,1,1,124,125]]],[54,1,1,125,126,[[1126,1,1,125,126]]],[55,1,1,126,127,[[1129,1,1,126,127]]],[57,4,4,127,131,[[1138,1,1,127,128],[1141,2,2,128,130],[1142,1,1,130,131]]],[58,4,3,131,134,[[1146,1,1,131,132],[1148,2,1,132,133],[1150,1,1,133,134]]],[59,6,6,134,140,[[1151,1,1,134,135],[1152,2,2,135,137],[1153,1,1,137,138],[1154,2,2,138,140]]],[60,4,4,140,144,[[1156,1,1,140,141],[1157,1,1,141,142],[1158,2,2,142,144]]],[61,9,9,144,153,[[1160,2,2,144,146],[1161,3,3,146,149],[1162,4,4,149,153]]],[65,13,11,153,164,[[1167,2,2,153,155],[1168,1,1,155,156],[1176,3,1,156,157],[1177,1,1,157,158],[1178,1,1,158,159],[1179,1,1,159,160],[1184,2,2,160,162],[1187,1,1,162,163],[1188,1,1,163,164]]]],[23162,23167,23247,23286,23288,23300,23449,23479,23603,23845,23976,24021,24085,24088,24279,24588,24653,24734,24781,24971,25009,25017,25141,25220,25246,25252,25366,25372,25394,25460,25467,25524,25587,25696,25776,25849,25862,25871,25891,25919,26193,26208,26217,26332,26470,26665,26707,26866,26943,26944,26957,27034,27053,27149,27254,27271,27318,27321,27344,27377,27429,27478,27546,27547,27648,27722,27785,27787,27800,27830,27835,27851,27852,27938,27942,27947,27963,27990,27991,28033,28034,28049,28070,28097,28131,28275,28301,28308,28356,28437,28507,28511,28677,28699,28719,28721,28783,28848,28849,28852,28942,28995,29001,29006,29010,29212,29231,29245,29302,29304,29322,29353,29356,29357,29379,29454,29494,29501,29506,29509,29512,29575,29576,29577,29624,29836,29898,30061,30107,30109,30162,30267,30328,30367,30380,30401,30411,30440,30450,30458,30492,30507,30532,30535,30553,30555,30595,30598,30603,30605,30613,30616,30620,30698,30700,30730,30867,30873,30893,30920,30995,31012,31075,31086]]],["Among",[5,5,[[39,2,2,0,2,[[939,1,1,0,1],[955,1,1,1,2]]],[41,1,1,2,3,[[979,1,1,2,3]]],[44,1,1,3,4,[[1046,1,1,3,4]]],[48,1,1,4,5,[[1098,1,1,4,5]]]],[23470,24185,25223,27936,29232]]],["At",[7,7,[[39,4,4,0,4,[[939,1,1,0,1],[940,1,1,1,2],[942,1,1,2,3],[946,1,1,3,4]]],[42,2,2,4,6,[[1010,1,1,4,5],[1012,1,1,5,6]]],[54,1,1,6,7,[[1128,1,1,6,7]]]],[23484,23490,23598,23728,26688,26752,29886]]],["By",[9,9,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[42,1,1,2,3,[[1009,1,1,2,3]]],[43,1,1,3,4,[[1021,1,1,3,4]]],[46,2,2,4,6,[[1083,2,2,4,6]]],[57,1,1,6,7,[[1142,1,1,6,7]]],[59,1,1,7,8,[[1153,1,1,7,8]]],[61,1,1,8,9,[[1163,1,1,8,9]]]],[23849,24668,26665,27029,28904,28905,30143,30443,30626]]],["I",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29356]]],["In",[50,50,[[39,4,4,0,4,[[930,2,2,0,2],[931,1,1,2,3],[954,1,1,3,4]]],[40,3,3,4,7,[[964,1,1,4,5],[968,1,1,5,6],[972,1,1,6,7]]],[41,4,4,7,11,[[973,1,1,7,8],[982,1,1,8,9],[989,1,1,9,10],[993,1,1,10,11]]],[42,7,7,11,18,[[997,2,2,11,13],[1000,1,1,13,14],[1001,1,1,14,15],[1003,1,1,15,16],[1010,1,1,16,17],[1012,1,1,17,18]]],[43,4,4,18,22,[[1020,1,1,18,19],[1024,1,1,19,20],[1025,1,1,20,21],[1045,1,1,21,22]]],[44,2,2,22,24,[[1047,1,1,22,23],[1054,1,1,23,24]]],[45,3,3,24,27,[[1066,1,1,24,25],[1075,1,1,25,26],[1076,1,1,26,27]]],[46,5,5,27,32,[[1081,1,1,27,28],[1083,1,1,28,29],[1084,1,1,29,30],[1088,2,2,30,32]]],[47,1,1,32,33,[[1093,1,1,32,33]]],[48,6,6,33,39,[[1097,3,3,33,36],[1098,2,2,36,38],[1099,1,1,38,39]]],[50,5,5,39,44,[[1107,2,2,39,41],[1108,2,2,41,43],[1109,1,1,43,44]]],[51,1,1,44,45,[[1115,1,1,44,45]]],[52,1,1,45,46,[[1116,1,1,45,46]]],[54,1,1,46,47,[[1126,1,1,46,47]]],[61,2,2,47,49,[[1161,1,1,47,48],[1162,1,1,48,49]]],[65,1,1,49,50,[[1188,1,1,49,50]]]],[23174,23187,23193,24109,24501,24696,24890,24968,25384,25682,25845,26045,26048,26187,26213,26365,26670,26759,27002,27136,27209,27906,27978,28162,28458,28699,28770,28863,28903,28927,29016,29021,29110,29213,29217,29219,29250,29251,29263,29479,29487,29497,29505,29524,29639,29657,29852,30589,30612,31082]]],["On",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23912]]],["The",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25549]]],["Through",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28322]]],["With",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28699]]],["about",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25022]]],["after",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30025]]],["against",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27967]]],["among",[106,100,[[39,10,9,0,9,[[930,1,1,0,1],[932,1,1,1,2],[937,1,1,2,3],[944,2,2,3,5],[948,3,2,5,7],[949,1,1,7,8],[954,1,1,8,9]]],[40,5,4,9,13,[[961,1,1,9,10],[962,1,1,10,11],[966,2,1,11,12],[971,1,1,12,13]]],[41,11,11,13,24,[[973,4,4,13,17],[974,1,1,17,18],[979,1,1,18,19],[981,2,2,19,21],[988,1,1,21,22],[994,2,2,22,24]]],[42,7,7,24,31,[[997,1,1,24,25],[1003,2,2,25,27],[1005,1,1,27,28],[1006,1,1,28,29],[1007,1,1,29,30],[1011,1,1,30,31]]],[43,21,21,31,52,[[1021,2,2,31,33],[1022,1,1,33,34],[1023,1,1,34,35],[1029,1,1,35,36],[1030,1,1,36,37],[1032,3,3,37,40],[1034,1,1,40,41],[1035,1,1,41,42],[1037,2,2,42,44],[1038,2,2,44,46],[1041,1,1,46,47],[1042,2,2,47,49],[1043,2,2,49,51],[1045,1,1,51,52]]],[44,9,8,52,60,[[1046,3,2,52,54],[1047,1,1,54,55],[1053,1,1,55,56],[1056,1,1,56,57],[1057,1,1,57,58],[1060,1,1,58,59],[1061,1,1,59,60]]],[45,15,13,60,73,[[1062,2,2,60,62],[1063,2,2,62,64],[1064,2,2,64,66],[1066,2,1,66,67],[1067,2,2,67,69],[1072,4,3,69,72],[1076,1,1,72,73]]],[46,4,4,73,77,[[1078,1,1,73,74],[1087,1,1,74,75],[1088,1,1,75,76],[1089,1,1,76,77]]],[47,4,4,77,81,[[1091,1,1,77,78],[1092,1,1,78,79],[1093,2,2,79,81]]],[48,2,2,81,83,[[1099,1,1,81,82],[1101,1,1,82,83]]],[49,1,1,83,84,[[1104,1,1,83,84]]],[50,1,1,84,85,[[1107,1,1,84,85]]],[51,3,3,85,88,[[1111,1,1,85,86],[1115,2,2,86,88]]],[52,2,2,88,90,[[1118,2,2,88,90]]],[58,5,5,90,95,[[1146,1,1,90,91],[1148,2,2,91,93],[1149,1,1,93,94],[1150,1,1,94,95]]],[59,3,3,95,98,[[1152,1,1,95,96],[1155,2,2,96,98]]],[60,3,2,98,100,[[1157,3,2,98,100]]]],[23175,23232,23414,23679,23680,23818,23819,23864,24059,24367,24411,24631,24866,24894,24918,24921,24935,25017,25211,25347,25349,25635,25888,25890,26058,26340,26371,26456,26500,26577,26723,27034,27056,27071,27109,27355,27388,27449,27454,27464,27557,27568,27651,27658,27683,27698,27790,27801,27802,27827,27841,27928,27935,27943,27986,28145,28226,28248,28312,28343,28373,28374,28396,28400,28413,28428,28455,28472,28474,28618,28619,28630,28730,28819,28972,29015,29034,29073,29083,29103,29107,29259,29307,29406,29492,29565,29633,29634,29685,29689,30292,30325,30332,30338,30368,30411,30466,30467,30501,30508]]],["an",[3,3,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[42,1,1,2,3,[[1001,1,1,2,3]]]],[24389,25288,26215]]],["and",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[28309,29286]]],["as",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24275]]],["at",[104,98,[[39,5,5,0,5,[[936,1,1,0,1],[939,1,1,1,2],[941,1,1,2,3],[951,1,1,3,4],[952,1,1,4,5]]],[40,2,2,5,7,[[962,1,1,5,6],[968,1,1,6,7]]],[41,12,11,7,18,[[976,1,1,7,8],[981,1,1,8,9],[982,1,1,9,10],[984,1,1,10,11],[985,1,1,11,12],[986,1,1,12,13],[991,1,1,13,14],[992,2,2,14,16],[995,3,2,16,18]]],[42,14,13,18,31,[[998,1,1,18,19],[1000,5,4,19,23],[1001,1,1,23,24],[1002,1,1,24,25],[1003,1,1,25,26],[1006,1,1,26,27],[1007,1,1,27,28],[1008,1,1,28,29],[1014,1,1,29,30],[1017,1,1,30,31]]],[43,30,29,31,60,[[1018,1,1,31,32],[1019,1,1,32,33],[1024,2,2,33,35],[1025,3,2,35,37],[1026,7,7,37,44],[1028,1,1,44,45],[1030,3,3,45,48],[1031,1,1,48,49],[1033,2,2,49,51],[1034,2,2,51,53],[1036,1,1,53,54],[1037,2,2,54,56],[1038,1,1,56,57],[1042,2,2,57,59],[1043,1,1,59,60]]],[44,6,6,60,66,[[1046,1,1,60,61],[1048,1,1,61,62],[1053,1,1,62,63],[1056,1,1,63,64],[1060,1,1,64,65],[1061,1,1,65,66]]],[45,7,7,66,73,[[1062,1,1,66,67],[1072,1,1,67,68],[1075,1,1,68,69],[1076,3,3,69,72],[1077,1,1,72,73]]],[46,2,2,73,75,[[1078,1,1,73,74],[1085,1,1,74,75]]],[48,4,4,75,79,[[1097,2,2,75,77],[1098,1,1,77,78],[1099,1,1,78,79]]],[49,2,2,79,81,[[1103,1,1,79,80],[1104,1,1,80,81]]],[50,2,2,81,83,[[1107,1,1,81,82],[1108,1,1,82,83]]],[51,4,4,83,87,[[1112,2,2,83,85],[1113,2,2,85,87]]],[53,1,1,87,88,[[1119,1,1,87,88]]],[54,8,5,88,93,[[1125,1,1,88,89],[1127,3,1,89,90],[1128,4,3,90,93]]],[57,1,1,93,94,[[1144,1,1,93,94]]],[59,3,3,94,97,[[1151,2,2,94,96],[1155,1,1,96,97]]],[61,1,1,97,98,[[1160,1,1,97,98]]]],[23351,23481,23588,23924,23998,24410,24712,25081,25332,25377,25505,25519,25567,25736,25789,25825,25942,25947,26118,26177,26201,26202,26209,26212,26296,26339,26503,26547,26600,26824,26918,26929,26954,27129,27145,27177,27190,27226,27229,27235,27238,27243,27244,27252,27322,27363,27367,27389,27422,27485,27487,27536,27539,27586,27631,27641,27675,27800,27820,27827,27945,28017,28150,28214,28329,28337,28365,28634,28713,28741,28750,28770,28784,28801,28946,29207,29226,29241,29264,29362,29401,29467,29495,29572,29589,29591,29603,29699,29827,29864,29878,29883,29890,30214,30381,30387,30478,30578]]],["because",[2,2,[[39,2,2,0,2,[[954,2,2,0,2]]]],[24085,24087]]],["before",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27086]]],["between",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27954]]],["by",[130,105,[[39,25,16,0,16,[[933,3,3,0,3],[940,4,3,3,6],[942,1,1,6,7],[945,1,1,7,8],[949,2,2,8,10],[950,1,1,10,11],[951,13,5,11,16]]],[40,14,13,16,29,[[959,1,1,16,17],[960,1,1,17,18],[961,1,1,18,19],[964,2,2,19,21],[965,4,3,21,24],[967,2,2,24,26],[968,2,2,26,28],[970,1,1,28,29]]],[41,8,7,29,36,[[973,1,1,29,30],[974,1,1,30,31],[976,1,1,31,32],[983,2,1,32,33],[992,2,2,33,35],[996,1,1,35,36]]],[42,1,1,36,37,[[1012,1,1,36,37]]],[43,10,8,37,45,[[1018,1,1,37,38],[1021,4,3,38,41],[1024,1,1,41,42],[1030,2,1,42,43],[1034,1,1,43,44],[1037,1,1,44,45]]],[44,8,8,45,53,[[1046,1,1,45,46],[1050,3,3,46,49],[1055,1,1,49,50],[1059,1,1,50,51],[1060,2,2,51,53]]],[45,16,10,53,63,[[1062,2,2,53,55],[1064,1,1,55,56],[1067,2,2,56,58],[1068,2,1,58,59],[1073,5,3,59,62],[1075,4,1,62,63]]],[46,12,7,63,70,[[1078,1,1,63,64],[1083,6,2,64,66],[1084,3,2,66,68],[1087,2,2,68,70]]],[47,4,4,70,74,[[1092,2,2,70,72],[1093,1,1,72,73],[1095,1,1,73,74]]],[48,7,7,74,81,[[1098,2,2,74,76],[1099,2,2,76,78],[1100,2,2,78,80],[1101,1,1,80,81]]],[49,1,1,81,82,[[1106,1,1,81,82]]],[50,4,4,82,86,[[1107,3,3,82,85],[1108,1,1,85,86]]],[51,3,3,86,89,[[1113,1,1,86,87],[1114,2,2,87,89]]],[52,1,1,89,90,[[1118,1,1,89,90]]],[53,1,1,90,91,[[1119,1,1,90,91]]],[55,1,1,91,92,[[1129,1,1,91,92]]],[56,1,1,92,93,[[1132,1,1,92,93]]],[57,4,4,93,97,[[1133,2,2,93,95],[1142,1,1,95,96],[1143,1,1,96,97]]],[59,2,2,97,99,[[1151,1,1,97,98],[1155,1,1,98,99]]],[61,2,1,99,100,[[1163,2,1,99,100]]],[64,1,1,100,101,[[1166,1,1,100,101]]],[65,4,4,101,105,[[1171,1,1,101,102],[1175,1,1,102,103],[1176,1,1,103,104],[1184,1,1,104,105]]]],[23268,23269,23270,23513,23516,23517,23610,23721,23850,23853,23873,23934,23936,23938,23939,23940,24310,24325,24385,24503,24527,24567,24571,24572,24669,24673,24674,24709,24755,24970,25000,25064,25424,25781,25787,26023,26756,26926,27029,27031,27032,27151,27401,27554,27645,27940,28056,28057,28062,28193,28294,28319,28322,28367,28368,28423,28469,28478,28501,28637,28643,28647,28684,28812,28904,28905,28922,28923,28983,28986,29098,29101,29113,29166,29242,29247,29256,29272,29286,29293,29330,29461,29481,29482,29486,29505,29593,29604,29618,29694,29714,29901,29944,29964,29965,30152,30174,30379,30475,30630,30673,30788,30860,30867,31016]]],["for",[6,6,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[53,1,1,3,4,[[1123,1,1,3,4]]],[58,1,1,4,5,[[1150,1,1,4,5]]],[59,1,1,5,6,[[1154,1,1,5,6]]]],[23289,24937,29387,29773,30357,30460]]],["in",[1813,1467,[[39,206,174,0,174,[[929,1,1,0,1],[930,7,5,1,6],[931,5,5,6,11],[932,5,4,11,15],[933,9,8,15,23],[934,16,11,23,34],[935,6,5,34,39],[936,5,5,39,44],[937,5,5,44,49],[938,12,11,49,60],[939,13,9,60,69],[940,12,9,69,78],[941,19,17,78,95],[942,4,4,95,99],[943,2,2,99,101],[944,5,4,101,105],[945,2,2,105,107],[946,11,9,107,116],[947,2,2,116,118],[948,3,3,118,121],[949,14,11,121,132],[950,7,6,132,138],[951,7,6,138,144],[952,14,12,144,156],[953,8,8,156,164],[954,7,6,164,170],[955,4,3,170,173],[956,1,1,173,174]]],[40,92,83,174,257,[[957,12,12,174,186],[958,4,4,186,190],[959,1,1,190,191],[960,7,7,191,198],[961,7,5,198,203],[962,11,10,203,213],[964,4,3,213,216],[965,5,5,216,221],[966,7,6,221,227],[967,8,7,227,234],[968,8,6,234,240],[969,7,7,240,247],[970,6,5,247,252],[971,4,4,252,256],[972,1,1,256,257]]],[41,221,181,257,438,[[973,18,18,257,275],[974,21,19,275,294],[975,7,6,294,300],[976,15,13,300,313],[977,5,5,313,318],[978,9,4,318,322],[979,9,7,322,329],[980,5,4,329,333],[981,5,5,333,338],[982,8,5,338,343],[983,9,7,343,350],[984,14,11,350,361],[985,11,9,361,370],[986,1,1,370,371],[987,3,3,371,374],[988,11,6,374,380],[989,8,6,380,386],[990,5,4,386,390],[991,10,8,390,398],[992,6,4,398,402],[993,9,7,402,409],[994,8,8,409,417],[995,11,10,417,427],[996,13,11,427,438]]],[42,164,124,438,562,[[997,7,7,438,445],[998,8,7,445,452],[999,4,4,452,456],[1000,8,7,456,463],[1001,12,9,463,472],[1002,10,8,472,480],[1003,7,6,480,486],[1004,16,12,486,498],[1005,3,3,498,501],[1006,6,4,501,505],[1007,11,10,505,515],[1008,5,5,515,520],[1009,4,3,520,523],[1010,14,8,523,531],[1011,16,10,531,541],[1012,7,5,541,546],[1013,14,7,546,553],[1014,5,3,553,556],[1015,4,3,556,559],[1016,3,3,559,562]]],[43,162,137,562,699,[[1018,7,5,562,567],[1019,5,5,567,572],[1021,3,3,572,575],[1022,11,9,575,584],[1023,4,3,584,587],[1024,29,20,587,607],[1025,3,3,607,610],[1026,13,11,610,621],[1027,10,8,621,629],[1028,7,6,629,635],[1029,2,2,635,637],[1030,8,8,637,645],[1031,3,3,645,648],[1032,2,2,648,650],[1033,6,6,650,656],[1034,9,7,656,663],[1035,6,6,663,669],[1036,4,4,669,673],[1037,3,3,673,676],[1038,2,2,676,678],[1039,4,2,678,680],[1040,4,4,680,684],[1041,4,3,684,687],[1042,1,1,687,688],[1043,3,3,688,691],[1044,4,4,691,695],[1045,5,4,695,699]]],[44,92,75,699,774,[[1046,9,8,699,707],[1047,6,6,707,713],[1048,4,4,713,717],[1049,4,1,717,718],[1050,5,5,718,723],[1051,3,2,723,725],[1052,10,7,725,732],[1053,15,10,732,742],[1054,7,6,742,748],[1055,4,3,748,751],[1057,2,2,751,753],[1058,2,2,753,755],[1059,4,4,755,759],[1060,5,5,759,764],[1061,12,10,764,774]]],[45,107,86,774,860,[[1062,12,9,774,783],[1063,9,6,783,789],[1064,5,5,789,794],[1065,11,7,794,801],[1066,2,2,801,803],[1067,5,4,803,807],[1068,8,7,807,814],[1069,4,4,814,818],[1070,5,5,818,823],[1071,5,4,823,827],[1072,6,6,827,833],[1073,4,4,833,837],[1075,8,7,837,844],[1076,19,12,844,856],[1077,4,4,856,860]]],[46,118,81,860,941,[[1078,12,10,860,870],[1079,7,5,870,875],[1080,7,6,875,881],[1081,9,6,881,887],[1082,9,9,887,896],[1083,15,6,896,902],[1084,7,6,902,908],[1085,6,5,908,913],[1086,4,4,913,917],[1087,5,5,917,922],[1088,18,9,922,931],[1089,14,7,931,938],[1090,5,3,938,941]]],[47,30,25,941,966,[[1091,6,5,941,946],[1092,3,2,946,948],[1093,6,5,948,953],[1094,4,4,953,957],[1095,3,2,957,959],[1096,8,7,959,966]]],[48,83,67,966,1033,[[1097,21,15,966,981],[1098,18,12,981,993],[1099,12,11,993,1004],[1100,12,10,1004,1014],[1101,8,8,1014,1022],[1102,12,11,1022,1033]]],[49,56,46,1033,1079,[[1103,19,15,1033,1048],[1104,13,10,1048,1058],[1105,10,8,1058,1066],[1106,14,13,1066,1079]]],[50,62,47,1079,1126,[[1107,21,16,1079,1095],[1108,17,13,1095,1108],[1109,13,9,1108,1117],[1110,11,9,1117,1126]]],[51,28,23,1126,1149,[[1111,9,5,1126,1131],[1112,5,4,1131,1135],[1113,3,3,1135,1138],[1114,6,6,1138,1144],[1115,5,5,1144,1149]]],[52,16,11,1149,1160,[[1116,9,4,1149,1153],[1117,4,4,1153,1157],[1118,3,3,1157,1160]]],[53,36,25,1160,1185,[[1119,5,5,1160,1165],[1120,9,7,1165,1172],[1121,9,6,1172,1178],[1122,9,4,1178,1182],[1123,1,1,1182,1183],[1124,3,2,1183,1185]]],[54,24,20,1185,1205,[[1125,13,10,1185,1195],[1126,5,4,1195,1199],[1127,5,5,1199,1204],[1128,1,1,1204,1205]]],[55,9,9,1205,1214,[[1129,2,2,1205,1207],[1130,5,5,1207,1212],[1131,2,2,1212,1214]]],[56,9,7,1214,1221,[[1132,9,7,1214,1221]]],[57,42,38,1221,1259,[[1134,2,2,1221,1223],[1135,8,7,1223,1230],[1136,3,3,1230,1233],[1137,2,2,1233,1235],[1138,1,1,1235,1236],[1139,1,1,1236,1237],[1140,4,3,1237,1240],[1141,1,1,1240,1241],[1142,7,6,1241,1247],[1143,7,7,1247,1254],[1144,1,1,1254,1255],[1145,5,4,1255,1259]]],[58,22,21,1259,1280,[[1146,8,8,1259,1267],[1147,6,5,1267,1272],[1148,3,3,1272,1275],[1149,3,3,1275,1278],[1150,2,2,1278,1280]]],[59,26,24,1280,1304,[[1151,7,7,1280,1287],[1152,5,4,1287,1291],[1153,6,5,1291,1296],[1154,5,5,1296,1301],[1155,3,3,1301,1304]]],[60,19,15,1304,1319,[[1156,6,5,1304,1309],[1157,4,4,1309,1313],[1158,9,6,1313,1319]]],[61,63,40,1319,1359,[[1159,6,5,1319,1324],[1160,23,13,1324,1337],[1161,9,7,1337,1344],[1162,18,9,1344,1353],[1163,7,6,1353,1359]]],[62,8,7,1359,1366,[[1164,8,7,1359,1366]]],[63,3,3,1366,1369,[[1165,3,3,1366,1369]]],[64,5,5,1369,1374,[[1166,5,5,1369,1374]]],[65,110,93,1374,1467,[[1167,11,8,1374,1382],[1168,7,6,1382,1388],[1169,8,6,1388,1394],[1170,5,4,1394,1398],[1171,5,3,1398,1401],[1172,2,2,1401,1403],[1173,3,3,1403,1406],[1174,2,2,1406,1408],[1175,6,5,1408,1413],[1176,5,5,1413,1418],[1177,6,5,1418,1423],[1178,6,6,1423,1429],[1179,2,2,1429,1431],[1180,5,5,1431,1436],[1181,3,2,1436,1438],[1182,1,1,1438,1439],[1183,2,2,1439,1441],[1184,11,8,1441,1449],[1185,5,4,1449,1453],[1186,6,5,1453,1458],[1187,6,6,1458,1464],[1188,3,3,1464,1467]]]],[23164,23170,23171,23178,23185,23188,23193,23195,23198,23204,23209,23222,23225,23230,23232,23246,23249,23250,23253,23259,23262,23279,23282,23283,23284,23286,23287,23288,23291,23292,23300,23302,23305,23311,23319,23327,23331,23337,23338,23355,23356,23358,23369,23377,23383,23389,23410,23412,23414,23428,23432,23433,23434,23436,23437,23440,23444,23445,23449,23450,23460,23461,23465,23467,23470,23475,23480,23482,23483,23494,23508,23510,23521,23525,23529,23530,23531,23539,23542,23549,23552,23558,23560,23563,23566,23569,23570,23571,23573,23574,23579,23582,23583,23593,23596,23599,23600,23607,23630,23665,23666,23689,23691,23699,23700,23705,23722,23728,23729,23731,23733,23737,23741,23745,23746,23747,23783,23790,23795,23809,23813,23834,23835,23838,23840,23841,23848,23854,23858,23859,23867,23868,23887,23888,23900,23902,23908,23915,23924,23925,23927,23948,23952,23957,23971,23972,23973,23975,23976,23983,23987,23995,23997,24002,24005,24007,24012,24026,24033,24039,24044,24047,24051,24052,24060,24067,24077,24083,24109,24123,24134,24169,24189,24213,24217,24218,24219,24220,24224,24226,24228,24234,24235,24238,24254,24260,24266,24268,24275,24280,24311,24324,24325,24334,24338,24340,24351,24359,24369,24377,24384,24391,24394,24409,24411,24418,24421,24424,24434,24436,24454,24458,24463,24514,24526,24538,24571,24574,24576,24579,24588,24598,24609,24618,24620,24625,24640,24649,24650,24655,24663,24665,24666,24667,24684,24698,24699,24708,24711,24712,24728,24731,24734,24741,24742,24743,24749,24757,24779,24784,24803,24820,24833,24855,24867,24872,24885,24898,24899,24900,24901,24911,24914,24915,24918,24919,24924,24929,24932,24934,24937,24959,24962,24972,24973,24974,24980,24981,24984,24985,24987,24989,24992,24994,24996,24997,24998,25002,25007,25011,25016,25017,25019,25024,25026,25029,25040,25042,25045,25047,25065,25068,25077,25078,25083,25084,25086,25087,25088,25090,25091,25096,25107,25114,25119,25129,25136,25142,25158,25169,25187,25188,25204,25216,25218,25220,25223,25227,25232,25255,25258,25260,25272,25313,25327,25332,25337,25358,25370,25375,25376,25383,25389,25406,25407,25426,25436,25437,25440,25448,25462,25471,25486,25487,25492,25497,25501,25504,25505,25511,25517,25522,25524,25528,25532,25537,25544,25546,25547,25553,25568,25592,25595,25613,25630,25631,25632,25643,25644,25645,25657,25675,25677,25679,25682,25687,25690,25691,25710,25718,25748,25751,25761,25767,25769,25773,25775,25778,25780,25812,25821,25825,25832,25847,25849,25851,25853,25863,25864,25880,25884,25892,25894,25901,25908,25917,25919,25939,25944,25949,25954,25957,25964,25966,25975,25978,25988,25995,25997,26009,26010,26018,26026,26027,26029,26035,26040,26044,26046,26049,26054,26067,26072,26089,26091,26096,26106,26109,26114,26115,26118,26120,26133,26134,26141,26143,26170,26176,26177,26179,26180,26200,26209,26223,26224,26236,26238,26245,26248,26249,26252,26253,26267,26288,26302,26306,26310,26313,26316,26318,26329,26332,26337,26338,26346,26356,26384,26386,26390,26393,26398,26401,26402,26405,26412,26416,26418,26425,26443,26445,26474,26504,26506,26515,26519,26529,26532,26533,26540,26543,26547,26553,26554,26561,26579,26593,26605,26615,26626,26628,26631,26661,26662,26678,26679,26681,26682,26685,26688,26694,26698,26701,26703,26704,26705,26706,26708,26709,26710,26715,26724,26749,26750,26751,26752,26759,26769,26770,26771,26772,26780,26782,26785,26805,26811,26823,26829,26831,26866,26879,26892,26897,26930,26931,26933,26938,26943,26966,26967,26968,26971,26995,27029,27034,27046,27063,27071,27077,27079,27081,27084,27093,27096,27101,27102,27108,27116,27118,27120,27121,27122,27123,27128,27132,27133,27136,27138,27145,27146,27150,27151,27152,27154,27157,27158,27160,27164,27184,27185,27197,27226,27227,27228,27233,27236,27237,27241,27243,27245,27253,27259,27260,27262,27276,27289,27291,27294,27298,27307,27312,27320,27329,27333,27334,27336,27342,27344,27367,27379,27380,27381,27395,27397,27402,27403,27415,27430,27439,27463,27477,27486,27489,27495,27501,27515,27519,27534,27539,27540,27545,27547,27551,27554,27561,27566,27567,27575,27581,27583,27594,27601,27606,27624,27634,27636,27642,27691,27693,27707,27721,27740,27743,27745,27769,27781,27787,27789,27801,27833,27844,27849,27876,27882,27886,27892,27908,27910,27917,27929,27932,27937,27939,27948,27949,27951,27957,27958,27974,27977,27981,27982,27990,27991,27995,28007,28015,28016,28032,28050,28052,28058,28060,28064,28072,28080,28096,28097,28099,28108,28109,28111,28114,28117,28118,28119,28120,28124,28125,28126,28127,28153,28155,28156,28172,28180,28181,28183,28188,28194,28196,28197,28249,28250,28275,28279,28285,28297,28298,28302,28316,28326,28332,28333,28334,28338,28339,28343,28344,28345,28346,28347,28348,28349,28358,28365,28368,28369,28370,28371,28373,28384,28393,28394,28397,28398,28399,28401,28405,28407,28411,28426,28428,28429,28431,28435,28439,28443,28448,28450,28453,28454,28459,28463,28471,28478,28486,28487,28502,28504,28505,28507,28509,28524,28526,28531,28532,28534,28537,28541,28542,28549,28558,28564,28569,28572,28575,28592,28611,28613,28618,28621,28622,28625,28640,28652,28659,28662,28688,28697,28703,28706,28711,28712,28713,28735,28736,28737,28740,28741,28746,28749,28759,28760,28761,28770,28776,28787,28789,28795,28800,28801,28804,28806,28808,28809,28812,28814,28819,28820,28822,28825,28834,28838,28839,28841,28843,28844,28848,28850,28851,28855,28861,28865,28866,28869,28870,28871,28878,28879,28881,28883,28888,28889,28894,28896,28898,28900,28901,28902,28903,28910,28914,28917,28919,28925,28927,28930,28932,28934,28939,28950,28952,28954,28959,28960,28964,28967,28974,28977,28985,28987,28988,28995,28998,28999,29006,29012,29014,29015,29016,29022,29024,29025,29027,29031,29032,29034,29041,29046,29047,29048,29070,29071,29073,29079,29081,29085,29101,29112,29114,29121,29128,29130,29145,29149,29150,29156,29168,29176,29189,29194,29200,29201,29202,29203,29205,29207,29209,29210,29212,29214,29215,29216,29218,29219,29221,29223,29224,29226,29227,29229,29231,29232,29233,29235,29236,29239,29240,29241,29242,29244,29245,29250,29254,29255,29256,29257,29260,29261,29262,29266,29268,29271,29272,29274,29275,29276,29278,29287,29288,29289,29290,29293,29296,29306,29309,29312,29313,29323,29324,29325,29328,29338,29341,29342,29346,29347,29349,29350,29355,29357,29358,29361,29362,29365,29367,29368,29369,29370,29374,29375,29381,29383,29385,29387,29388,29389,29391,29392,29396,29397,29398,29403,29404,29406,29410,29415,29420,29422,29424,29425,29427,29430,29435,29440,29441,29443,29444,29445,29446,29448,29451,29452,29453,29454,29457,29458,29461,29463,29467,29469,29470,29471,29473,29474,29475,29477,29481,29483,29484,29485,29489,29492,29493,29494,29495,29496,29500,29501,29503,29504,29505,29506,29507,29509,29510,29514,29517,29520,29521,29524,29528,29532,29533,29534,29535,29539,29543,29544,29547,29549,29554,29555,29557,29558,29559,29561,29565,29566,29567,29568,29572,29573,29583,29584,29592,29598,29603,29607,29608,29609,29613,29619,29620,29623,29625,29633,29634,29639,29650,29653,29659,29661,29667,29671,29673,29678,29682,29684,29695,29698,29700,29709,29710,29712,29718,29723,29725,29727,29728,29730,29731,29735,29740,29742,29744,29746,29747,29748,29749,29759,29761,29780,29805,29806,29810,29812,29814,29815,29818,29822,29823,29824,29826,29827,29828,29834,29837,29847,29854,29865,29867,29868,29869,29875,29897,29905,29911,29915,29917,29918,29920,29926,29938,29944,29946,29948,29951,29954,29958,29961,29989,29995,29997,30000,30003,30006,30007,30010,30012,30017,30019,30021,30036,30037,30062,30074,30093,30097,30101,30128,30136,30140,30155,30165,30167,30171,30181,30190,30191,30198,30206,30209,30210,30235,30244,30245,30259,30262,30272,30274,30275,30276,30277,30289,30291,30293,30295,30297,30298,30303,30309,30321,30333,30337,30338,30342,30353,30359,30368,30378,30379,30385,30388,30389,30391,30396,30405,30411,30421,30423,30428,30439,30440,30443,30444,30447,30448,30449,30457,30465,30471,30474,30479,30483,30491,30492,30497,30498,30510,30512,30513,30518,30523,30532,30533,30536,30538,30540,30545,30546,30547,30548,30550,30554,30555,30556,30558,30559,30560,30561,30564,30565,30566,30574,30577,30578,30584,30585,30588,30593,30594,30596,30603,30605,30606,30607,30615,30616,30618,30619,30620,30621,30631,30632,30634,30635,30643,30644,30646,30647,30648,30649,30651,30652,30654,30659,30661,30662,30682,30684,30690,30692,30693,30701,30702,30706,30707,30708,30710,30712,30713,30718,30724,30729,30730,30735,30741,30747,30750,30751,30753,30758,30767,30769,30770,30772,30774,30782,30785,30792,30798,30799,30819,30824,30825,30828,30836,30846,30850,30851,30857,30859,30863,30868,30869,30870,30871,30878,30884,30885,30887,30891,30892,30894,30898,30899,30901,30903,30914,30916,30931,30932,30939,30940,30943,30947,30951,30957,30978,30979,30999,31000,31001,31003,31012,31015,31016,31017,31018,31028,31031,31034,31044,31046,31050,31051,31053,31061,31063,31067,31076,31077,31080,31083,31098,31099]]],["into",[12,12,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,2,2,1,3,[[977,1,1,1,2],[995,1,1,2,3]]],[42,2,2,3,5,[[999,1,1,3,4],[1001,1,1,4,5]]],[43,1,1,5,6,[[1024,1,1,5,6]]],[44,2,2,6,8,[[1046,2,2,6,8]]],[46,1,1,8,9,[[1085,1,1,8,9]]],[47,1,1,9,10,[[1091,1,1,9,10]]],[53,1,1,10,11,[[1121,1,1,10,11]]],[65,1,1,11,12,[[1180,1,1,11,12]]]],[24231,25123,25977,26155,26214,27161,27953,27955,28948,29063,29747,30936]]],["is",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23320]]],["of",[14,14,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[43,1,1,2,3,[[1043,1,1,2,3]]],[44,3,3,3,6,[[1047,2,2,3,5],[1056,1,1,5,6]]],[46,2,2,6,8,[[1079,1,1,6,7],[1087,1,1,7,8]]],[47,1,1,8,9,[[1094,1,1,8,9]]],[48,1,1,9,10,[[1100,1,1,9,10]]],[55,1,1,10,11,[[1131,1,1,10,11]]],[58,1,1,11,12,[[1150,1,1,11,12]]],[60,2,2,12,14,[[1157,1,1,12,13],[1158,1,1,13,14]]]],[24781,24954,27843,27979,27985,28211,28836,28986,29151,29273,29928,30373,30512,30523]]],["on",[45,42,[[39,2,2,0,2,[[952,1,1,0,1],[954,1,1,1,2]]],[40,4,4,2,6,[[958,2,2,2,4],[970,1,1,4,5],[972,1,1,5,6]]],[41,17,17,6,23,[[973,1,1,6,7],[976,2,2,7,9],[977,1,1,9,10],[978,4,4,10,14],[980,3,3,14,17],[981,1,1,17,18],[984,1,1,18,19],[985,2,2,19,21],[986,1,1,21,22],[992,1,1,22,23]]],[42,7,6,23,29,[[1001,2,2,23,25],[1003,3,2,25,27],[1009,1,1,27,28],[1015,1,1,28,29]]],[44,3,2,29,31,[[1057,3,2,29,31]]],[46,3,3,31,34,[[1081,1,1,31,32],[1084,1,1,32,33],[1085,1,1,33,34]]],[50,1,1,34,35,[[1109,1,1,34,35]]],[57,4,3,35,38,[[1133,2,1,35,36],[1140,1,1,36,37],[1142,1,1,37,38]]],[59,2,2,38,40,[[1153,1,1,38,39],[1154,1,1,39,40]]],[65,2,2,40,42,[[1167,1,1,40,41],[1171,1,1,41,42]]]],[23977,24059,24283,24284,24756,24878,24952,25079,25094,25124,25147,25148,25152,25153,25260,25267,25277,25338,25510,25525,25528,25558,25780,26219,26226,26350,26351,26653,26856,28252,28253,28867,28921,28933,29518,29966,30093,30145,30446,30462,30707,30792]]],["over",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27654]]],["the",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24358]]],["through",[36,36,[[39,1,1,0,1,[[937,1,1,0,1]]],[41,3,3,1,4,[[982,1,1,1,2],[983,2,2,2,4]]],[42,4,4,4,8,[[1013,3,3,4,7],[1016,1,1,7,8]]],[43,1,1,8,9,[[1021,1,1,8,9]]],[44,7,7,9,16,[[1046,1,1,9,10],[1048,2,2,10,12],[1051,2,2,12,14],[1060,2,2,14,16]]],[46,1,1,16,17,[[1088,1,1,16,17]]],[47,2,2,17,19,[[1093,1,1,17,18],[1095,1,1,18,19]]],[48,2,2,19,21,[[1098,2,2,19,21]]],[49,2,2,21,23,[[1106,2,2,21,23]]],[52,2,2,23,25,[[1117,2,2,23,25]]],[55,1,1,25,26,[[1129,1,1,25,26]]],[57,1,1,26,27,[[1145,1,1,26,27]]],[59,2,2,27,29,[[1151,2,2,27,29]]],[60,6,6,29,35,[[1156,3,3,29,32],[1157,3,3,32,35]]],[65,1,1,35,36,[[1174,1,1,35,36]]]],[23413,25380,25420,25423,26770,26776,26778,26898,27024,27954,27998,28016,28079,28091,28316,28320,28992,29116,29172,29236,29251,29449,29455,29674,29677,29895,30261,30376,30380,30480,30481,30483,30503,30518,30520,30840]]],["throughout",[4,3,[[41,3,2,0,2,[[973,1,1,0,1],[979,2,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]]],[24958,25212,28172]]],["to",[17,12,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,2,2,1,3,[[1029,1,1,1,2],[1041,1,1,2,3]]],[45,1,1,3,4,[[1068,1,1,3,4]]],[46,2,2,4,6,[[1081,1,1,4,5],[1085,1,1,5,6]]],[50,1,1,6,7,[[1107,1,1,6,7]]],[53,2,1,7,8,[[1122,2,1,7,8]]],[60,7,3,8,11,[[1156,7,3,8,11]]],[61,1,1,11,12,[[1162,1,1,11,12]]]],[24910,27348,27780,28502,28862,28939,29488,29762,30484,30485,30486,30619]]],["toward",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[61,1,1,1,2,[[1162,1,1,1,2]]]],[24987,30612]]],["under",[2,2,[[39,1,1,0,1,[[935,1,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]]],[23322,28010]]],["unto",[8,8,[[39,1,1,0,1,[[945,1,1,0,1]]],[44,1,1,1,2,[[1050,1,1,1,2]]],[45,2,2,2,4,[[1070,1,1,2,3],[1075,1,1,3,4]]],[46,1,1,4,5,[[1082,1,1,4,5]]],[51,2,2,5,7,[[1114,1,1,5,6],[1115,1,1,6,7]]],[53,1,1,7,8,[[1121,1,1,7,8]]]],[23712,28068,28555,28689,28896,29610,29644,29747]]],["upon",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]],[43,1,1,2,3,[[1037,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]]],[23491,25849,27633,30340]]],["when",[3,3,[[43,1,1,0,1,[[1030,1,1,0,1]]],[52,1,1,1,2,[[1116,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[27379,29656,30459]]],["which",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28407]]],["with",[134,116,[[39,10,6,0,6,[[931,2,1,0,1],[935,2,1,1,2],[948,1,1,2,3],[950,3,1,3,4],[953,1,1,4,5],[954,1,1,5,6]]],[40,7,6,6,12,[[957,3,2,6,8],[960,2,2,8,10],[961,1,1,10,11],[965,1,1,11,12]]],[41,10,10,12,22,[[973,1,1,12,13],[975,1,1,13,14],[976,2,2,14,16],[980,1,1,16,17],[983,1,1,17,18],[986,1,1,18,19],[993,2,2,19,21],[994,1,1,21,22]]],[42,4,3,22,25,[[997,4,3,22,25]]],[43,6,6,25,31,[[1018,1,1,25,26],[1019,2,2,26,28],[1022,1,1,28,29],[1028,2,2,29,31]]],[44,12,10,31,41,[[1046,4,4,31,35],[1054,1,1,35,36],[1055,1,1,36,37],[1057,4,2,37,39],[1060,1,1,39,40],[1061,1,1,40,41]]],[45,9,7,41,48,[[1062,1,1,41,42],[1063,1,1,42,43],[1065,1,1,43,44],[1066,3,1,44,45],[1071,1,1,45,46],[1077,2,2,46,48]]],[46,3,3,48,51,[[1078,1,1,48,49],[1084,1,1,49,50],[1090,1,1,50,51]]],[48,9,8,51,59,[[1097,1,1,51,52],[1099,1,1,52,53],[1100,1,1,53,54],[1101,1,1,54,55],[1102,5,4,55,59]]],[49,1,1,59,60,[[1103,1,1,59,60]]],[50,7,7,60,67,[[1107,1,1,60,61],[1108,2,2,61,63],[1109,2,2,63,65],[1110,2,2,65,67]]],[51,7,5,67,72,[[1112,2,2,67,69],[1114,4,2,69,71],[1115,1,1,71,72]]],[52,4,4,72,76,[[1116,1,1,72,73],[1117,2,2,73,75],[1118,1,1,75,76]]],[53,3,3,76,79,[[1120,2,2,76,78],[1123,1,1,78,79]]],[54,2,2,79,81,[[1125,1,1,79,80],[1128,1,1,80,81]]],[57,3,3,81,84,[[1141,2,2,81,83],[1143,1,1,83,84]]],[58,3,3,84,87,[[1146,1,1,84,85],[1147,1,1,85,86],[1148,1,1,86,87]]],[59,4,4,87,91,[[1151,1,1,87,88],[1152,1,1,88,89],[1153,1,1,89,90],[1155,1,1,90,91]]],[60,2,2,91,93,[[1157,2,2,91,93]]],[64,3,3,93,96,[[1166,3,3,93,96]]],[65,25,20,96,116,[[1168,3,3,96,99],[1172,3,1,99,100],[1175,1,1,100,101],[1178,1,1,101,102],[1179,2,1,102,103],[1180,5,5,103,108],[1182,1,1,108,109],[1183,1,1,109,110],[1184,2,2,110,112],[1185,6,4,112,116]]]],[23203,23318,23807,23909,24024,24106,24223,24238,24347,24353,24366,24539,24944,25041,25095,25099,25260,25425,25584,25851,25860,25913,26070,26075,26077,26928,26978,26995,27082,27323,27333,27934,27939,27942,27957,28177,28197,28253,28266,28335,28352,28380,28398,28454,28462,28572,28790,28796,28812,28924,29055,29209,29263,29291,29322,29339,29351,29352,29355,29381,29476,29498,29501,29533,29539,29544,29548,29572,29587,29619,29621,29647,29660,29670,29671,29686,29725,29727,29765,29812,29872,30127,30130,30209,30287,30294,30332,30386,30417,30426,30479,30513,30516,30686,30695,30696,30733,30740,30744,30801,30859,30896,30918,30928,30933,30935,30936,30941,30962,30991,31001,31009,31019,31032,31037,31038]]],["within",[13,13,[[39,3,3,0,3,[[931,1,1,0,1],[937,2,2,1,3]]],[40,1,1,3,4,[[958,1,1,3,4]]],[41,8,8,4,12,[[975,1,1,4,5],[979,2,2,5,7],[984,1,1,7,8],[988,1,1,8,9],[990,1,1,9,10],[991,1,1,10,11],[996,1,1,11,12]]],[44,1,1,12,13,[[1053,1,1,12,13]]]],[23201,23382,23400,24268,25033,25234,25244,25476,25623,25692,25775,26023,28139]]]]},{"k":"G1723","v":[["+",[2,2,[[40,2,2,0,2,[[965,1,1,0,1],[966,1,1,1,2]]]],[24574,24604]]]]},{"k":"G1724","v":[["sea",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30326]]]]},{"k":"G1725","v":[["before",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24901]]]]},{"k":"G1726","v":[["*",[5,5,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,2,2,1,3,[[992,1,1,1,2],[996,1,1,2,3]]],[43,2,2,3,5,[[1024,1,1,3,4],[1025,1,1,4,5]]]],[24272,25805,26010,27126,27208]]],["before",[4,4,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,2,2,1,3,[[992,1,1,1,2],[996,1,1,2,3]]],[43,1,1,3,4,[[1025,1,1,3,4]]]],[24272,25805,26010,27208]]],["sight",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27126]]]]},{"k":"G1727","v":[["*",[8,8,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[971,1,1,2,3]]],[43,3,3,3,6,[[1043,1,1,3,4],[1044,1,1,4,5],[1045,1,1,5,6]]],[51,1,1,6,7,[[1112,1,1,6,7]]],[55,1,1,7,8,[[1130,1,1,7,8]]]],[23621,24455,24865,27832,27859,27916,29585,29916]]],["+",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24865]]],["against",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27916]]],["contrary",[5,5,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[43,2,2,2,4,[[1043,1,1,2,3],[1044,1,1,3,4]]],[51,1,1,4,5,[[1112,1,1,4,5]]]],[23621,24455,27832,27859,29585]]],["part",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29916]]]]},{"k":"G1728","v":[["begun",[2,2,[[47,1,1,0,1,[[1093,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[29105,29367]]]]},{"k":"G1729","v":[["lacked",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27056]]]]},{"k":"G1730","v":[["token",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29654]]]]},{"k":"G1731","v":[["*",[11,11,[[44,3,3,0,3,[[1047,1,1,0,1],[1054,2,2,1,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]],[48,1,1,4,5,[[1098,1,1,4,5]]],[53,1,1,5,6,[[1119,1,1,5,6]]],[54,1,1,6,7,[[1128,1,1,6,7]]],[55,2,2,7,9,[[1130,1,1,7,8],[1131,1,1,8,9]]],[57,2,2,9,11,[[1138,2,2,9,11]]]],[27977,28172,28177,28956,29236,29712,29884,29918,29925,30054,30055]]],["did",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29884]]],["forth",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29712]]],["shew",[6,6,[[44,3,3,0,3,[[1047,1,1,0,1],[1054,2,2,1,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]],[48,1,1,4,5,[[1098,1,1,4,5]]],[57,1,1,5,6,[[1138,1,1,5,6]]]],[27977,28172,28177,28956,29236,30055]]],["shewed",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30054]]],["shewing",[2,2,[[55,2,2,0,2,[[1130,1,1,0,1],[1131,1,1,1,2]]]],[29918,29925]]]]},{"k":"G1732","v":[["*",[4,4,[[44,2,2,0,2,[[1048,2,2,0,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]],[49,1,1,3,4,[[1103,1,1,3,4]]]],[28016,28017,28956,29389]]],["+",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28016]]],["declare",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28017]]],["proof",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28956]]],["token",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29389]]]]},{"k":"G1733","v":[["eleven",[6,6,[[39,1,1,0,1,[[956,1,1,0,1]]],[40,1,1,1,2,[[972,1,1,1,2]]],[41,2,2,2,4,[[996,2,2,2,4]]],[43,2,2,4,6,[[1018,1,1,4,5],[1019,1,1,5,6]]]],[24211,24887,26000,26024,26949,26963]]]]},{"k":"G1734","v":[["eleventh",[3,3,[[39,2,2,0,2,[[948,2,2,0,2]]],[65,1,1,2,3,[[1187,1,1,2,3]]]],[23798,23801,31073]]]]},{"k":"G1735","v":[["+",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25551]]]]},{"k":"G1736","v":[["*",[3,3,[[46,3,3,0,3,[[1082,3,3,0,3]]]],[28883,28885,28886]]],["home",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28883]]],["present",[2,2,[[46,2,2,0,2,[[1082,2,2,0,2]]]],[28885,28886]]]]},{"k":"G1737","v":[["*",[2,2,[[41,2,2,0,2,[[980,1,1,0,1],[988,1,1,1,2]]]],[25272,25639]]],["clothed",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25639]]],["ware",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25272]]]]},{"k":"G1738","v":[["just",[2,2,[[44,1,1,0,1,[[1048,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]]],[27999,29979]]]]},{"k":"G1739","v":[["building",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31071]]]]},{"k":"G1740","v":[["glorified",[2,2,[[52,2,2,0,2,[[1116,2,2,0,2]]]],[29659,29661]]]]},{"k":"G1741","v":[["*",[4,4,[[41,2,2,0,2,[[979,1,1,0,1],[985,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]]],[25220,25535,28443,29331]]],["+",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25220]]],["glorious",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29331]]],["honourable",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28443]]],["things",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25535]]]]},{"k":"G1742","v":[["*",[8,8,[[39,7,7,0,7,[[931,1,1,0,1],[934,2,2,1,3],[935,1,1,3,4],[950,2,2,4,6],[956,1,1,6,7]]],[41,1,1,7,8,[[984,1,1,7,8]]]],[23196,23307,23310,23331,23883,23884,24198,25482]]],["clothing",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23331]]],["garment",[2,2,[[39,2,2,0,2,[[950,2,2,0,2]]]],[23883,23884]]],["raiment",[5,5,[[39,4,4,0,4,[[931,1,1,0,1],[934,2,2,1,3],[956,1,1,3,4]]],[41,1,1,4,5,[[984,1,1,4,5]]]],[23196,23307,23310,24198,25482]]]]},{"k":"G1743","v":[["*",[8,8,[[43,1,1,0,1,[[1026,1,1,0,1]]],[44,1,1,1,2,[[1049,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]],[53,1,1,4,5,[[1119,1,1,4,5]]],[54,2,2,5,7,[[1126,1,1,5,6],[1128,1,1,6,7]]],[57,1,1,7,8,[[1143,1,1,7,8]]]],[27238,28042,29347,29455,29708,29828,29887,30206]]],["+",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27238]]],["enabled",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29708]]],["strengthened",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29887]]],["strengtheneth",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29455]]],["strong",[4,4,[[44,1,1,0,1,[[1049,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[28042,29347,29828,30206]]]]},{"k":"G1744","v":[["creep",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29859]]]]},{"k":"G1745","v":[["on",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30427]]]]},{"k":"G1746","v":[["*",[28,26,[[39,3,3,0,3,[[934,1,1,0,1],[950,1,1,1,2],[955,1,1,2,3]]],[40,4,4,3,7,[[957,1,1,3,4],[962,1,1,4,5],[971,2,2,5,7]]],[41,3,3,7,10,[[984,1,1,7,8],[987,1,1,8,9],[996,1,1,9,10]]],[43,1,1,10,11,[[1029,1,1,10,11]]],[44,2,2,11,13,[[1058,2,2,11,13]]],[45,4,2,13,15,[[1076,4,2,13,15]]],[46,1,1,15,16,[[1082,1,1,15,16]]],[47,1,1,16,17,[[1093,1,1,16,17]]],[48,3,3,17,20,[[1100,1,1,17,18],[1102,2,2,18,20]]],[50,2,2,20,22,[[1109,2,2,20,22]]],[51,1,1,22,23,[[1115,1,1,22,23]]],[65,3,3,23,26,[[1167,1,1,23,24],[1181,1,1,24,25],[1185,1,1,25,26]]]],[23307,23883,24160,24221,24416,24843,24846,25481,25610,26040,27358,28278,28280,28771,28772,28880,29129,29296,29348,29351,29527,29529,29629,30710,30952,31031]]],["+",[3,3,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,2,2,1,3,[[971,2,2,1,3]]]],[23883,24843,24846]]],["arrayed",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27358]]],["clothed",[2,2,[[46,1,1,0,1,[[1082,1,1,0,1]]],[65,1,1,1,2,[[1181,1,1,1,2]]]],[28880,30952]]],["endued",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26040]]],["in",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31031]]],["on",[17,15,[[39,1,1,0,1,[[934,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,2,2,2,4,[[984,1,1,2,3],[987,1,1,3,4]]],[44,2,2,4,6,[[1058,2,2,4,6]]],[45,4,2,6,8,[[1076,4,2,6,8]]],[47,1,1,8,9,[[1093,1,1,8,9]]],[48,3,3,9,12,[[1100,1,1,9,10],[1102,2,2,10,12]]],[50,2,2,12,14,[[1109,2,2,12,14]]],[51,1,1,14,15,[[1115,1,1,14,15]]]],[23307,24416,25481,25610,28278,28280,28771,28772,29129,29296,29348,29351,29527,29529,29629]]],["put",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24160]]],["with",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[65,1,1,1,2,[[1167,1,1,1,2]]]],[24221,30710]]]]},{"k":"G1747","v":[["+",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27799]]]]},{"k":"G1748","v":[["wait",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[25459,27755]]]]},{"k":"G1749","v":[["wait",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27750]]]]},{"k":"G1750","v":[["in",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24872]]]]},{"k":"G1751","v":[["have",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25446]]]]},{"k":"G1752","v":[["*",[24,23,[[39,7,7,0,7,[[933,2,2,0,2],[938,2,2,2,4],[944,1,1,4,5],[947,2,2,5,7]]],[40,4,4,7,11,[[964,1,1,7,8],[966,2,2,8,10],[969,1,1,10,11]]],[41,5,5,11,16,[[976,1,1,11,12],[978,1,1,12,13],[981,1,1,13,14],[990,1,1,14,15],[993,1,1,15,16]]],[43,3,3,16,19,[[1036,1,1,16,17],[1043,1,1,17,18],[1045,1,1,18,19]]],[44,2,2,19,21,[[1053,1,1,19,20],[1059,1,1,20,21]]],[46,3,2,21,23,[[1080,1,1,21,22],[1084,2,1,22,23]]]],[23244,23245,23435,23456,23697,23767,23791,24535,24595,24617,24726,25081,25168,25325,25717,25838,27617,27844,27919,28152,28300,28851,28928]]],["+",[19,19,[[39,7,7,0,7,[[933,2,2,0,2],[938,2,2,2,4],[944,1,1,4,5],[947,2,2,5,7]]],[40,4,4,7,11,[[964,1,1,7,8],[966,2,2,8,10],[969,1,1,10,11]]],[41,5,5,11,16,[[976,1,1,11,12],[978,1,1,12,13],[981,1,1,13,14],[990,1,1,14,15],[993,1,1,15,16]]],[43,2,2,16,18,[[1036,1,1,16,17],[1043,1,1,17,18]]],[44,1,1,18,19,[[1053,1,1,18,19]]]],[23244,23245,23435,23456,23697,23767,23791,24535,24595,24617,24726,25081,25168,25325,25717,25838,27617,27844,28152]]],["For",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28300]]],["because",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27919]]],["cause",[2,1,[[46,2,1,0,1,[[1084,2,1,0,1]]]],[28928]]],["of",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28851]]]]},{"k":"G1753","v":[["*",[8,8,[[48,3,3,0,3,[[1097,1,1,0,1],[1099,1,1,1,2],[1100,1,1,2,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]],[50,2,2,4,6,[[1107,1,1,4,5],[1108,1,1,5,6]]],[52,2,2,6,8,[[1117,2,2,6,8]]]],[29225,29258,29288,29442,29494,29506,29670,29672]]],["+",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29672]]],["operation",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29506]]],["working",[6,6,[[48,3,3,0,3,[[1097,1,1,0,1],[1099,1,1,1,2],[1100,1,1,2,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]],[52,1,1,5,6,[[1117,1,1,5,6]]]],[29225,29258,29288,29442,29494,29670]]]]},{"k":"G1754","v":[["*",[21,19,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[44,1,1,2,3,[[1052,1,1,2,3]]],[45,2,2,3,5,[[1073,2,2,3,5]]],[46,2,2,5,7,[[1078,1,1,5,6],[1081,1,1,6,7]]],[47,4,3,7,10,[[1092,2,1,7,8],[1093,1,1,8,9],[1095,1,1,9,10]]],[48,4,4,10,14,[[1097,2,2,10,12],[1098,1,1,12,13],[1099,1,1,13,14]]],[49,2,1,14,15,[[1104,2,1,14,15]]],[50,1,1,15,16,[[1107,1,1,15,16]]],[51,1,1,16,17,[[1112,1,1,16,17]]],[52,1,1,17,18,[[1117,1,1,17,18]]],[58,1,1,18,19,[[1150,1,1,18,19]]]],[23599,24421,28096,28640,28645,28806,28871,29089,29107,29168,29217,29226,29231,29271,29404,29494,29583,29668,30370]]],["+",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29231]]],["do",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29404]]],["effectual",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28806]]],["effectually",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29089]]],["fervent",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30370]]],["forth",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]]],[23599,24421]]],["mighty",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29089]]],["work",[2,2,[[44,1,1,0,1,[[1052,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]]],[28096,29668]]],["worketh",[10,10,[[45,2,2,0,2,[[1073,2,2,0,2]]],[46,1,1,2,3,[[1081,1,1,2,3]]],[47,2,2,3,5,[[1093,1,1,3,4],[1095,1,1,4,5]]],[48,2,2,5,7,[[1097,1,1,5,6],[1099,1,1,6,7]]],[49,1,1,7,8,[[1104,1,1,7,8]]],[50,1,1,8,9,[[1107,1,1,8,9]]],[51,1,1,9,10,[[1112,1,1,9,10]]]],[28640,28645,28871,29107,29168,29217,29271,29404,29494,29583]]],["wrought",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29226]]]]},{"k":"G1755","v":[["*",[2,2,[[45,2,2,0,2,[[1073,2,2,0,2]]]],[28640,28644]]],["operations",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28640]]],["working",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28644]]]]},{"k":"G1756","v":[["*",[3,3,[[45,1,1,0,1,[[1077,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]],[57,1,1,2,3,[[1136,1,1,2,3]]]],[28785,29944,30026]]],["effectual",[2,2,[[45,1,1,0,1,[[1077,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[28785,29944]]],["powerful",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30026]]]]},{"k":"G1757","v":[["blessed",[2,2,[[43,1,1,0,1,[[1020,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]]],[27021,29110]]]]},{"k":"G1758","v":[["*",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]]],[24426,25458,29163]]],["+",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29163]]],["against",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24426]]],["urge",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25458]]]]},{"k":"G1759","v":[["*",[8,8,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,2,2,1,3,[[1000,2,2,1,3]]],[43,5,5,3,8,[[1027,1,1,3,4],[1033,1,1,4,5],[1034,1,1,5,6],[1042,2,2,6,8]]]],[26032,26171,26172,27277,27511,27529,27813,27820]]],["here",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,2,2,1,3,[[1033,1,1,1,2],[1042,1,1,2,3]]]],[26032,27511,27820]]],["hither",[4,4,[[42,2,2,0,2,[[1000,2,2,0,2]]],[43,2,2,2,4,[[1034,1,1,2,3],[1042,1,1,3,4]]]],[26171,26172,27529,27813]]],["there",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27277]]]]},{"k":"G1760","v":[["*",[3,3,[[39,2,2,0,2,[[929,1,1,0,1],[937,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]]],[23164,23383,27278]]],["think",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23383]]],["thought",[2,2,[[39,1,1,0,1,[[929,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]]],[23164,27278]]]]},{"k":"G1761","v":[["*",[4,4,[[39,2,2,0,2,[[937,1,1,0,1],[940,1,1,1,2]]],[43,1,1,2,3,[[1034,1,1,2,3]]],[57,1,1,3,4,[[1136,1,1,3,4]]]],[23383,23514,27552,30026]]],["device",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27552]]],["thoughts",[3,3,[[39,2,2,0,2,[[937,1,1,0,1],[940,1,1,1,2]]],[57,1,1,2,3,[[1136,1,1,2,3]]]],[23383,23514,30026]]]]},{"k":"G1762","v":[["is",[5,3,[[47,3,1,0,1,[[1093,3,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[29130,29528,30283]]]]},{"k":"G1763","v":[["*",[14,14,[[41,1,1,0,1,[[976,1,1,0,1]]],[42,3,3,1,4,[[1007,2,2,1,3],[1014,1,1,3,4]]],[43,2,2,4,6,[[1028,1,1,4,5],[1035,1,1,5,6]]],[47,1,1,6,7,[[1094,1,1,6,7]]],[57,4,4,7,11,[[1141,2,2,7,9],[1142,2,2,9,11]]],[58,2,2,11,13,[[1149,1,1,11,12],[1150,1,1,12,13]]],[65,1,1,13,14,[[1175,1,1,13,14]]]],[25082,26572,26574,26798,27333,27568,29141,30112,30130,30134,30136,30350,30371,30855]]],["+",[3,3,[[57,3,3,0,3,[[1141,1,1,0,1],[1142,2,2,1,3]]]],[30130,30134,30136]]],["year",[9,9,[[41,1,1,0,1,[[976,1,1,0,1]]],[42,3,3,1,4,[[1007,2,2,1,3],[1014,1,1,3,4]]],[43,2,2,4,6,[[1028,1,1,4,5],[1035,1,1,5,6]]],[57,1,1,6,7,[[1141,1,1,6,7]]],[58,1,1,7,8,[[1149,1,1,7,8]]],[65,1,1,8,9,[[1175,1,1,8,9]]]],[25082,26572,26574,26798,27333,27568,30112,30350,30855]]],["years",[2,2,[[47,1,1,0,1,[[1094,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[29141,30371]]]]},{"k":"G1764","v":[["*",[7,7,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,2,2,1,3,[[1064,1,1,1,2],[1068,1,1,2,3]]],[47,1,1,3,4,[[1091,1,1,3,4]]],[52,1,1,4,5,[[1117,1,1,4,5]]],[54,1,1,5,6,[[1127,1,1,5,6]]],[57,1,1,6,7,[[1141,1,1,6,7]]]],[28154,28432,28513,29061,29663,29854,30114]]],["come",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29854]]],["hand",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29663]]],["present",[5,5,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,2,2,1,3,[[1064,1,1,1,2],[1068,1,1,2,3]]],[47,1,1,3,4,[[1091,1,1,3,4]]],[57,1,1,4,5,[[1141,1,1,4,5]]]],[28154,28432,28513,29061,30114]]]]},{"k":"G1765","v":[["*",[2,2,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[25907,27235]]],["strengthened",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27235]]],["strengthening",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25907]]]]},{"k":"G1766","v":[["ninth",[10,10,[[39,3,3,0,3,[[948,1,1,0,1],[955,2,2,1,3]]],[40,2,2,3,5,[[971,2,2,3,5]]],[41,1,1,5,6,[[995,1,1,5,6]]],[43,3,3,6,9,[[1020,1,1,6,7],[1027,2,2,7,9]]],[65,1,1,9,10,[[1187,1,1,9,10]]]],[23797,24174,24175,24859,24860,25979,26997,27262,27289,31073]]]]},{"k":"G1767","v":[["nine",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25668]]]]},{"k":"G1768","v":[["nine",[4,4,[[39,2,2,0,2,[[946,2,2,0,2]]],[41,2,2,2,4,[[987,2,2,2,4]]]],[23739,23740,25592,25595]]]]},{"k":"G1769","v":[["speechless",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27223]]]]},{"k":"G1770","v":[["signs",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24955]]]]},{"k":"G1771","v":[["*",[2,2,[[57,1,1,0,1,[[1136,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[30026,30447]]],["intents",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30026]]],["mind",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30447]]]]},{"k":"G1772","v":[["*",[2,2,[[43,1,1,0,1,[[1036,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]]],[27624,28561]]],["law",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28561]]],["lawful",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27624]]]]},{"k":"G1773","v":[["morning",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24250]]]]},{"k":"G1774","v":[["*",[5,5,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]],[54,2,2,3,5,[[1125,2,2,3,5]]]],[28127,28914,29533,29814,29823]]],["dwell",[2,2,[[46,1,1,0,1,[[1083,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[28914,29533]]],["dwelleth",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]]],[28127,29823]]],["dwelt",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29814]]]]},{"k":"G1775","v":[["unity",[2,2,[[48,2,2,0,2,[[1100,2,2,0,2]]]],[29275,29285]]]]},{"k":"G1776","v":[["trouble",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30227]]]]},{"k":"G1777","v":[["*",[10,8,[[39,5,3,0,3,[[933,4,2,0,2],[954,1,1,2,3]]],[40,2,2,3,5,[[959,1,1,3,4],[970,1,1,4,5]]],[45,1,1,5,6,[[1072,1,1,5,6]]],[57,1,1,6,7,[[1134,1,1,6,7]]],[58,1,1,7,8,[[1147,1,1,7,8]]]],[23255,23256,24120,24317,24818,28627,29992,30303]]],["danger",[5,3,[[39,4,2,0,2,[[933,4,2,0,2]]],[40,1,1,2,3,[[959,1,1,2,3]]]],[23255,23256,24317]]],["guilty",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[24120,24818,28627,30303]]],["to",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29992]]]]},{"k":"G1778","v":[["commandments",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]]],[23642,24470,29516]]]]},{"k":"G1779","v":[["*",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]]],[24066,26865]]],["burial",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24066]]],["bury",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26865]]]]},{"k":"G1780","v":[["burying",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]]],[24762,26587]]]]},{"k":"G1781","v":[["*",[17,17,[[39,5,5,0,5,[[932,1,1,0,1],[943,1,1,1,2],[945,1,1,2,3],[947,1,1,3,4],[956,1,1,4,5]]],[40,3,3,5,8,[[966,1,1,5,6],[967,1,1,6,7],[969,1,1,7,8]]],[41,1,1,8,9,[[976,1,1,8,9]]],[42,4,4,9,13,[[1004,1,1,9,10],[1010,1,1,10,11],[1011,2,2,11,13]]],[43,2,2,13,15,[[1018,1,1,13,14],[1030,1,1,14,15]]],[57,2,2,15,17,[[1141,1,1,15,16],[1143,1,1,16,17]]]],[23215,23637,23709,23769,24215,24591,24646,24751,25073,26386,26699,26713,26716,26925,27409,30125,30194]]],["+",[3,3,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]],[42,1,1,2,3,[[1010,1,1,2,3]]]],[23215,25073,26699]]],["charged",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23709]]],["command",[4,4,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[42,2,2,2,4,[[1011,2,2,2,4]]]],[23769,24591,26713,26716]]],["commanded",[6,6,[[39,2,2,0,2,[[943,1,1,0,1],[956,1,1,1,2]]],[40,2,2,2,4,[[967,1,1,2,3],[969,1,1,3,4]]],[42,1,1,4,5,[[1004,1,1,4,5]]],[43,1,1,5,6,[[1030,1,1,5,6]]]],[23637,24215,24646,24751,26386,27409]]],["commandment",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30194]]],["commandments",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26925]]],["enjoined",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30125]]]]},{"k":"G1782","v":[["*",[13,11,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,3,3,1,4,[[976,1,1,1,2],[985,1,1,2,3],[988,1,1,3,4]]],[42,6,5,4,9,[[998,1,1,4,5],[1003,1,1,5,6],[1010,1,1,6,7],[1014,1,1,7,8],[1015,2,1,8,9]]],[58,1,1,9,10,[[1149,1,1,9,10]]],[65,2,1,10,11,[[1188,2,1,10,11]]]],[23720,25072,25549,25646,26111,26331,26699,26821,26843,30338,31082]]],["+",[4,2,[[42,2,1,0,1,[[1015,2,1,0,1]]],[65,2,1,1,2,[[1188,2,1,1,2]]]],[26843,31082]]],["hence",[9,9,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,3,3,1,4,[[976,1,1,1,2],[985,1,1,2,3],[988,1,1,3,4]]],[42,4,4,4,8,[[998,1,1,4,5],[1003,1,1,5,6],[1010,1,1,6,7],[1014,1,1,7,8]]],[58,1,1,8,9,[[1149,1,1,8,9]]]],[23720,25072,25549,25646,26111,26331,26699,26821,30338]]]]},{"k":"G1783","v":[["*",[2,2,[[53,2,2,0,2,[[1120,1,1,0,1],[1122,1,1,1,2]]]],[29717,29752]]],["intercessions",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29717]]],["prayer",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29752]]]]},{"k":"G1784","v":[["*",[5,5,[[41,2,2,0,2,[[979,1,1,0,1],[986,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[59,2,2,3,5,[[1152,2,2,3,5]]]],[25197,25561,29420,30403,30405]]],["dear",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25197]]],["man",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25561]]],["precious",[2,2,[[59,2,2,0,2,[[1152,2,2,0,2]]]],[30403,30405]]],["reputation",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29420]]]]},{"k":"G1785","v":[["*",[71,65,[[39,7,7,0,7,[[933,1,1,0,1],[943,2,2,1,3],[947,1,1,3,4],[950,3,3,4,7]]],[40,8,8,7,15,[[963,2,2,7,9],[966,2,2,9,11],[968,4,4,11,15]]],[41,4,4,15,19,[[973,1,1,15,16],[987,1,1,16,17],[990,1,1,17,18],[995,1,1,18,19]]],[42,10,9,19,28,[[1006,1,1,19,20],[1007,1,1,20,21],[1008,2,2,21,23],[1009,1,1,23,24],[1010,2,2,24,26],[1011,3,2,26,28]]],[43,1,1,28,29,[[1034,1,1,28,29]]],[44,7,7,29,36,[[1052,6,6,29,35],[1058,1,1,35,36]]],[45,2,2,36,38,[[1068,1,1,36,37],[1075,1,1,37,38]]],[48,2,2,38,40,[[1098,1,1,38,39],[1102,1,1,39,40]]],[50,1,1,40,41,[[1110,1,1,40,41]]],[53,1,1,41,42,[[1124,1,1,41,42]]],[55,1,1,42,43,[[1129,1,1,42,43]]],[57,4,4,43,47,[[1139,3,3,43,46],[1141,1,1,46,47]]],[60,2,2,47,49,[[1157,1,1,47,48],[1158,1,1,48,49]]],[61,14,10,49,59,[[1160,6,4,49,53],[1161,4,3,53,56],[1162,1,1,56,57],[1163,3,2,57,59]]],[62,4,3,59,62,[[1164,4,3,59,62]]],[65,3,3,62,65,[[1178,1,1,62,63],[1180,1,1,63,64],[1188,1,1,64,65]]]],[23253,23636,23639,23779,23908,23910,23912,24471,24472,24593,24607,24701,24702,24703,24704,24899,25617,25708,25991,26499,26580,26629,26630,26664,26683,26689,26709,26711,27538,28099,28100,28101,28102,28103,28104,28275,28506,28715,29244,29339,29552,29802,29906,30069,30080,30082,30124,30521,30524,30553,30554,30557,30558,30601,30602,30603,30624,30626,30627,30649,30650,30651,30908,30938,31094]]],["+",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23639]]],["commandment",[41,38,[[39,3,3,0,3,[[943,1,1,0,1],[950,2,2,1,3]]],[40,5,5,3,8,[[963,2,2,3,5],[968,3,3,5,8]]],[41,2,2,8,10,[[987,1,1,8,9],[995,1,1,9,10]]],[42,6,6,10,16,[[1006,1,1,10,11],[1007,1,1,11,12],[1008,2,2,12,14],[1009,1,1,14,15],[1011,1,1,15,16]]],[43,1,1,16,17,[[1034,1,1,16,17]]],[44,7,7,17,24,[[1052,6,6,17,23],[1058,1,1,23,24]]],[48,1,1,24,25,[[1102,1,1,24,25]]],[53,1,1,25,26,[[1124,1,1,25,26]]],[57,3,3,26,29,[[1139,3,3,26,29]]],[60,2,2,29,31,[[1157,1,1,29,30],[1158,1,1,30,31]]],[61,7,4,31,35,[[1160,4,2,31,33],[1161,2,1,33,34],[1162,1,1,34,35]]],[62,3,3,35,38,[[1164,3,3,35,38]]]],[23636,23908,23910,24471,24472,24701,24703,24704,25617,25991,26499,26580,26629,26630,26664,26711,27538,28099,28100,28101,28102,28103,28104,28275,29339,29802,30069,30080,30082,30521,30524,30557,30558,30602,30624,30649,30650,30651]]],["commandments",[27,25,[[39,3,3,0,3,[[933,1,1,0,1],[947,1,1,1,2],[950,1,1,2,3]]],[40,2,2,3,5,[[966,1,1,3,4],[968,1,1,4,5]]],[41,2,2,5,7,[[973,1,1,5,6],[990,1,1,6,7]]],[42,4,3,7,10,[[1010,2,2,7,9],[1011,2,1,9,10]]],[45,2,2,10,12,[[1068,1,1,10,11],[1075,1,1,11,12]]],[48,1,1,12,13,[[1098,1,1,12,13]]],[50,1,1,13,14,[[1110,1,1,13,14]]],[55,1,1,14,15,[[1129,1,1,14,15]]],[61,7,6,15,21,[[1160,2,2,15,17],[1161,2,2,17,19],[1163,3,2,19,21]]],[62,1,1,21,22,[[1164,1,1,21,22]]],[65,3,3,22,25,[[1178,1,1,22,23],[1180,1,1,23,24],[1188,1,1,24,25]]]],[23253,23779,23912,24607,24702,24899,25708,26683,26689,26709,28506,28715,29244,29552,29906,30553,30554,30601,30603,30626,30627,30651,30908,30938,31094]]],["precept",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[24593,30124]]]]},{"k":"G1786","v":[["place",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27676]]]]},{"k":"G1787","v":[["within",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]]],[23944,25672]]]]},{"k":"G1788","v":[["*",[9,9,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,3,3,2,5,[[990,2,2,2,4],[992,1,1,4,5]]],[45,1,1,5,6,[[1065,1,1,5,6]]],[52,1,1,6,7,[[1118,1,1,6,7]]],[55,1,1,7,8,[[1130,1,1,7,8]]],[57,1,1,8,9,[[1144,1,1,8,9]]]],[23863,24679,25690,25692,25792,28447,29692,29916,30221]]],["ashamed",[2,2,[[52,1,1,0,1,[[1118,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]]],[29692,29916]]],["regard",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25692]]],["regarded",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25690]]],["reverence",[4,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]]],[23863,24679,25792,30221]]],["shame",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28447]]]]},{"k":"G1789","v":[["up",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29753]]]]},{"k":"G1790","v":[["*",[3,3,[[43,2,2,0,2,[[1024,1,1,0,1],[1033,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[27148,27512,30233]]],["+",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27148]]],["quake",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30233]]],["trembling",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27512]]]]},{"k":"G1791","v":[["shame",[2,2,[[45,2,2,0,2,[[1067,1,1,0,1],[1076,1,1,1,2]]]],[28472,28752]]]]},{"k":"G1792","v":[["themselves",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30513]]]]},{"k":"G1793","v":[["*",[5,5,[[43,1,1,0,1,[[1042,1,1,0,1]]],[44,3,3,1,4,[[1053,2,2,1,3],[1056,1,1,3,4]]],[57,1,1,4,5,[[1139,1,1,4,5]]]],[27820,28143,28150,28211,30089]]],["dealt",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27820]]],["intercession",[4,4,[[44,3,3,0,3,[[1053,2,2,0,2],[1056,1,1,2,3]]],[57,1,1,3,4,[[1139,1,1,3,4]]]],[28143,28150,28211,30089]]]]},{"k":"G1794","v":[["*",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]],[42,1,1,2,3,[[1016,1,1,2,3]]]],[24188,25988,26874]]],["together",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26874]]],["wrapped",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24188,25988]]]]},{"k":"G1795","v":[["engraven",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28848]]]]},{"k":"G1796","v":[["despite",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30162]]]]},{"k":"G1797","v":[["*",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[26966,30680]]],["dream",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26966]]],["dreamers",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30680]]]]},{"k":"G1798","v":[["dreams",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26966]]]]},{"k":"G1799","v":[["*",[96,88,[[41,21,19,0,19,[[973,5,5,0,5],[977,2,2,5,7],[980,1,1,7,8],[984,3,2,8,10],[985,1,1,10,11],[986,1,1,11,12],[987,3,3,12,15],[988,2,1,15,16],[995,1,1,16,17],[996,2,2,17,19]]],[42,1,1,19,20,[[1016,1,1,19,20]]],[43,15,15,20,35,[[1019,1,1,20,21],[1021,2,2,21,23],[1023,2,2,23,25],[1024,1,1,25,26],[1025,1,1,26,27],[1026,1,1,27,28],[1027,4,4,28,32],[1036,2,2,32,34],[1044,1,1,34,35]]],[44,3,3,35,38,[[1048,1,1,35,36],[1057,1,1,36,37],[1059,1,1,37,38]]],[45,1,1,38,39,[[1062,1,1,38,39]]],[46,4,3,39,42,[[1081,1,1,39,40],[1084,1,1,40,41],[1085,2,1,41,42]]],[47,1,1,42,43,[[1091,1,1,42,43]]],[53,6,6,43,49,[[1120,1,1,43,44],[1123,3,3,44,47],[1124,2,2,47,49]]],[54,2,2,49,51,[[1126,1,1,49,50],[1128,1,1,50,51]]],[57,2,2,51,53,[[1136,1,1,51,52],[1145,1,1,52,53]]],[58,1,1,53,54,[[1149,1,1,53,54]]],[59,1,1,54,55,[[1153,1,1,54,55]]],[61,1,1,55,56,[[1161,1,1,55,56]]],[63,1,1,56,57,[[1165,1,1,56,57]]],[65,36,31,57,88,[[1167,1,1,57,58],[1168,1,1,58,59],[1169,5,4,59,63],[1170,4,3,63,66],[1171,1,1,66,67],[1173,4,3,67,70],[1174,3,3,70,73],[1175,1,1,73,74],[1177,2,2,74,76],[1178,2,2,76,78],[1179,3,3,78,81],[1180,5,3,81,84],[1181,1,1,84,85],[1182,1,1,85,86],[1185,1,1,86,87],[1186,1,1,87,88]]]],[24899,24908,24910,24912,24968,25125,25132,25292,25465,25468,25544,25563,25598,25606,25609,25635,25949,26002,26034,26897,26974,27032,27041,27106,27107,27162,27197,27231,27263,27289,27290,27292,27594,27604,27890,28011,28262,28302,28392,28861,28928,28953,29077,29719,29767,29783,29784,29800,29801,29841,29871,30027,30262,30347,30428,30601,30664,30701,30731,30748,30751,30754,30755,30773,30774,30778,30787,30819,30821,30825,30829,30830,30831,30853,30876,30888,30895,30901,30920,30921,30922,30929,30931,30936,30950,30973,31037,31050]]],["+",[7,7,[[41,2,2,0,2,[[985,1,1,0,1],[987,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[45,1,1,3,4,[[1062,1,1,3,4]]],[57,2,2,4,6,[[1136,1,1,4,5],[1145,1,1,5,6]]],[61,1,1,6,7,[[1161,1,1,6,7]]]],[25544,25609,28011,28392,30027,30262,30601]]],["before",[64,59,[[41,13,12,0,12,[[973,3,3,0,3],[977,2,2,3,5],[980,1,1,5,6],[984,3,2,6,8],[987,1,1,8,9],[988,1,1,9,10],[995,1,1,10,11],[996,1,1,11,12]]],[43,10,10,12,22,[[1019,1,1,12,13],[1021,1,1,13,14],[1023,1,1,14,15],[1024,1,1,15,16],[1026,1,1,16,17],[1027,3,3,17,20],[1036,2,2,20,22]]],[44,1,1,22,23,[[1059,1,1,22,23]]],[47,1,1,23,24,[[1091,1,1,23,24]]],[53,4,4,24,28,[[1123,3,3,24,27],[1124,1,1,27,28]]],[54,2,2,28,30,[[1126,1,1,28,29],[1128,1,1,29,30]]],[63,1,1,30,31,[[1165,1,1,30,31]]],[65,32,28,31,59,[[1167,1,1,31,32],[1168,1,1,32,33],[1169,5,4,33,37],[1170,4,3,37,40],[1171,1,1,40,41],[1173,4,3,41,44],[1174,3,3,44,47],[1175,1,1,47,48],[1177,2,2,48,50],[1178,2,2,50,52],[1179,1,1,52,53],[1180,3,2,53,55],[1181,1,1,55,56],[1182,1,1,56,57],[1185,1,1,57,58],[1186,1,1,58,59]]]],[24899,24910,24968,25125,25132,25292,25465,25468,25606,25635,25949,26034,26974,27032,27107,27162,27231,27263,27289,27292,27594,27604,28302,29077,29767,29783,29784,29800,29841,29871,30664,30701,30731,30748,30751,30754,30755,30773,30774,30778,30787,30819,30821,30825,30829,30830,30831,30853,30876,30888,30895,30901,30920,30929,30931,30950,30973,31037,31050]]],["presence",[7,6,[[41,3,3,0,3,[[973,1,1,0,1],[986,1,1,1,2],[987,1,1,2,3]]],[42,1,1,3,4,[[1016,1,1,3,4]]],[43,1,1,4,5,[[1044,1,1,4,5]]],[65,2,1,5,6,[[1180,2,1,5,6]]]],[24912,25563,25598,26897,27890,30936]]],["sight",[16,15,[[41,2,2,0,2,[[973,1,1,0,1],[988,1,1,1,2]]],[43,3,3,2,5,[[1021,1,1,2,3],[1025,1,1,3,4],[1027,1,1,4,5]]],[44,1,1,5,6,[[1057,1,1,5,6]]],[46,4,3,6,9,[[1081,1,1,6,7],[1084,1,1,7,8],[1085,2,1,8,9]]],[53,2,2,9,11,[[1120,1,1,9,10],[1124,1,1,10,11]]],[58,1,1,11,12,[[1149,1,1,11,12]]],[59,1,1,12,13,[[1153,1,1,12,13]]],[65,2,2,13,15,[[1179,2,2,13,15]]]],[24908,25635,27041,27197,27290,28262,28861,28928,28953,29719,29801,30347,30428,30921,30922]]],["the",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27106]]],["to",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26002]]]]},{"k":"G1800","v":[["Enos",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25063]]]]},{"k":"G1801","v":[["hearken",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26963]]]]},{"k":"G1802","v":[["Enoch",[3,3,[[41,1,1,0,1,[[975,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[25062,30177,30686]]]]},{"k":"G1803","v":[["*",[12,12,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,2,2,2,4,[[976,1,1,2,3],[985,1,1,3,4]]],[42,3,3,4,7,[[998,2,2,4,6],[1008,1,1,6,7]]],[43,3,3,7,10,[[1028,1,1,7,8],[1035,1,1,8,9],[1044,1,1,9,10]]],[58,1,1,10,11,[[1150,1,1,10,11]]],[65,1,1,11,12,[[1170,1,1,11,12]]]],[23701,24540,25088,25532,26101,26115,26581,27319,27568,27892,30371,30776]]],["+",[2,2,[[42,1,1,0,1,[[998,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[26115,27892]]],["six",[10,10,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,2,2,2,4,[[976,1,1,2,3],[985,1,1,3,4]]],[42,2,2,4,6,[[998,1,1,4,5],[1008,1,1,5,6]]],[43,2,2,6,8,[[1028,1,1,6,7],[1035,1,1,7,8]]],[58,1,1,8,9,[[1150,1,1,8,9]]],[65,1,1,9,10,[[1170,1,1,9,10]]]],[23701,24540,25088,25532,26101,26581,27319,27568,30371,30776]]]]},{"k":"G1804","v":[["forth",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30408]]]]},{"k":"G1805","v":[["*",[4,4,[[47,2,2,0,2,[[1093,1,1,0,1],[1094,1,1,1,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]],[50,1,1,3,4,[[1110,1,1,3,4]]]],[29115,29136,29320,29547]]],["Redeeming",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29320]]],["redeem",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29136]]],["redeemed",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29115]]],["redeeming",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29547]]]]},{"k":"G1806","v":[["*",[13,13,[[40,2,2,0,2,[[964,1,1,0,1],[971,1,1,1,2]]],[41,1,1,2,3,[[996,1,1,2,3]]],[42,1,1,3,4,[[1006,1,1,3,4]]],[43,8,8,4,12,[[1022,1,1,4,5],[1024,2,2,5,7],[1029,1,1,7,8],[1030,1,1,8,9],[1033,2,2,9,11],[1038,1,1,11,12]]],[57,1,1,12,13,[[1140,1,1,12,13]]]],[24523,24846,26041,26484,27078,27152,27156,27354,27379,27520,27522,27702,30101]]],["+",[5,5,[[40,1,1,0,1,[[971,1,1,0,1]]],[42,1,1,1,2,[[1006,1,1,1,2]]],[43,3,3,2,5,[[1022,1,1,2,3],[1024,1,1,3,4],[1033,1,1,4,5]]]],[24846,26484,27078,27152,27520]]],["brought",[3,3,[[43,3,3,0,3,[[1024,1,1,0,1],[1029,1,1,1,2],[1030,1,1,2,3]]]],[27156,27354,27379]]],["lead",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30101]]],["led",[2,2,[[40,1,1,0,1,[[964,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]]],[24523,26041]]],["out",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1038,1,1,1,2]]]],[27522,27702]]]]},{"k":"G1807","v":[["*",[8,8,[[39,2,2,0,2,[[933,1,1,0,1],[946,1,1,1,2]]],[43,5,5,2,7,[[1024,2,2,2,4],[1029,1,1,4,5],[1040,1,1,5,6],[1043,1,1,6,7]]],[47,1,1,7,8,[[1091,1,1,7,8]]]],[23263,23736,27126,27150,27348,27761,27840,29061]]],["+",[2,2,[[39,2,2,0,2,[[933,1,1,0,1],[946,1,1,1,2]]]],[23263,23736]]],["Delivering",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27840]]],["deliver",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[47,1,1,1,2,[[1091,1,1,1,2]]]],[27150,29061]]],["delivered",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1029,1,1,1,2]]]],[27126,27348]]],["rescued",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27761]]]]},{"k":"G1808","v":[["away",[2,2,[[45,2,2,0,2,[[1066,2,2,0,2]]]],[28456,28467]]]]},{"k":"G1809","v":[["desired",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25895]]]]},{"k":"G1810","v":[["suddenly",[5,5,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[981,1,1,2,3]]],[43,2,2,3,5,[[1026,1,1,3,4],[1039,1,1,4,5]]]],[24753,24986,25340,27219,27710]]]]},{"k":"G1811","v":[["*",[3,3,[[60,3,3,0,3,[[1156,1,1,0,1],[1157,2,2,1,3]]]],[30495,30502,30515]]],["follow",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30502]]],["followed",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30495]]],["following",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30515]]]]},{"k":"G1812","v":[["+",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30946]]]]},{"k":"G1813","v":[["*",[5,5,[[43,1,1,0,1,[[1020,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]],[65,3,3,2,5,[[1169,1,1,2,3],[1173,1,1,3,4],[1187,1,1,4,5]]]],[27015,29508,30751,30827,31057]]],["away",[2,2,[[65,2,2,0,2,[[1173,1,1,0,1],[1187,1,1,1,2]]]],[30827,31057]]],["out",[3,3,[[43,1,1,0,1,[[1020,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]],[65,1,1,2,3,[[1169,1,1,2,3]]]],[27015,29508,30751]]]]},{"k":"G1814","v":[["up",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27004]]]]},{"k":"G1815","v":[["resurrection",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29432]]]]},{"k":"G1816","v":[["up",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]]],[23544,24328]]]]},{"k":"G1817","v":[["up",[3,3,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[992,1,1,1,2]]],[43,1,1,2,3,[[1032,1,1,2,3]]]],[24692,25807,27447]]]]},{"k":"G1818","v":[["*",[5,5,[[44,2,2,0,2,[[1052,1,1,0,1],[1061,1,1,1,2]]],[45,1,1,2,3,[[1064,1,1,2,3]]],[46,1,1,3,4,[[1088,1,1,3,4]]],[52,1,1,4,5,[[1117,1,1,4,5]]]],[28102,28354,28428,28992,29664]]],["beguiled",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28992]]],["deceive",[3,3,[[44,1,1,0,1,[[1061,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]]],[28354,28428,29664]]],["deceived",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28102]]]]},{"k":"G1819","v":[["suddenly",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24546]]]]},{"k":"G1820","v":[["*",[2,2,[[46,2,2,0,2,[[1078,1,1,0,1],[1081,1,1,1,2]]]],[28808,28867]]],["despair",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28867]]],["despaired",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28808]]]]},{"k":"G1821","v":[["*",[11,11,[[41,3,3,0,3,[[973,1,1,0,1],[992,2,2,1,3]]],[43,6,6,3,9,[[1024,1,1,3,4],[1026,1,1,4,5],[1028,1,1,5,6],[1029,1,1,6,7],[1034,1,1,7,8],[1039,1,1,8,9]]],[47,2,2,9,11,[[1094,2,2,9,11]]]],[24946,25789,25790,27128,27246,27329,27348,27537,27725,29135,29137]]],["+",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[24946,27246]]],["away",[3,3,[[41,2,2,0,2,[[992,2,2,0,2]]],[43,1,1,2,3,[[1034,1,1,2,3]]]],[25789,25790,27537]]],["forth",[3,3,[[43,1,1,0,1,[[1028,1,1,0,1]]],[47,2,2,1,3,[[1094,2,2,1,3]]]],[27329,29135,29137]]],["out",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27128]]],["send",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27725]]],["sent",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27348]]]]},{"k":"G1822","v":[["*",[2,2,[[43,1,1,0,1,[[1038,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[27669,29870]]],["accomplished",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27669]]],["furnished",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29870]]]]},{"k":"G1823","v":[["glistering",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25330]]]]},{"k":"G1824","v":[["*",[6,6,[[40,1,1,0,1,[[962,1,1,0,1]]],[43,4,4,1,5,[[1027,1,1,1,2],[1028,1,1,2,3],[1038,1,1,3,4],[1040,1,1,4,5]]],[49,1,1,5,6,[[1104,1,1,5,6]]]],[24432,27292,27318,27696,27764,29414]]],["Immediately",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27292]]],["by",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24432]]],["immediately",[2,2,[[43,2,2,0,2,[[1028,1,1,0,1],[1038,1,1,1,2]]]],[27318,27696]]],["presently",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29414]]],["straightway",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27764]]]]},{"k":"G1825","v":[["*",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[45,1,1,1,2,[[1067,1,1,1,2]]]],[28172,28481]]],["+",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28172]]],["up",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28481]]]]},{"k":"G1826","v":[["*",[4,4,[[43,4,4,0,4,[[1030,1,1,0,1],[1034,1,1,1,2],[1037,1,1,2,3],[1044,1,1,3,4]]]],[27404,27538,27633,27898]]],["depart",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27633]]],["departed",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27538]]],["get",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27898]]],["gone",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27404]]]]},{"k":"G1827","v":[["convince",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30687]]]]},{"k":"G1828","v":[["away",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30280]]]]},{"k":"G1829","v":[["+",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30522]]]]},{"k":"G1830","v":[["diligently",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30384]]]]},{"k":"G1831","v":[["*",[222,216,[[39,44,44,0,44,[[930,1,1,0,1],[933,1,1,1,2],[936,3,3,2,5],[937,3,3,5,8],[938,2,2,8,10],[939,3,3,10,13],[940,3,3,13,16],[941,3,3,16,19],[942,1,1,19,20],[943,4,4,20,24],[945,1,1,24,25],[946,1,1,25,26],[948,4,4,26,30],[949,1,1,30,31],[950,1,1,31,32],[952,3,3,32,35],[953,2,2,35,37],[954,4,4,37,41],[955,2,2,41,43],[956,1,1,43,44]]],[40,40,40,44,84,[[957,7,7,44,51],[958,2,2,51,53],[959,2,2,53,55],[960,1,1,55,56],[961,5,5,56,61],[962,6,6,61,67],[963,3,3,67,70],[964,2,2,70,72],[965,4,4,72,76],[967,2,2,76,78],[970,4,4,78,82],[972,2,2,82,84]]],[41,44,41,84,125,[[973,1,1,84,85],[974,1,1,85,86],[976,6,5,86,91],[977,2,2,91,93],[978,2,2,93,95],[979,4,4,95,99],[980,9,8,99,107],[981,3,3,107,110],[982,2,2,110,112],[983,3,2,112,114],[984,1,1,114,115],[985,1,1,115,116],[986,3,3,116,119],[987,1,1,119,120],[989,1,1,120,121],[993,1,1,121,122],[994,3,3,122,125]]],[42,30,30,125,155,[[997,1,1,125,126],[1000,2,2,126,128],[1004,3,3,128,131],[1006,2,2,131,133],[1007,2,2,133,135],[1008,1,1,135,136],[1009,3,3,136,139],[1012,3,3,139,142],[1013,1,1,142,143],[1014,5,5,143,148],[1015,4,4,148,152],[1016,1,1,152,153],[1017,2,2,153,155]]],[43,33,31,155,186,[[1018,1,1,155,156],[1024,3,3,156,159],[1025,1,1,159,160],[1027,1,1,160,161],[1028,1,1,161,162],[1029,3,3,162,165],[1031,1,1,165,166],[1032,2,2,166,168],[1033,10,8,168,176],[1034,1,1,176,177],[1035,1,1,177,178],[1036,1,1,178,179],[1037,2,2,179,181],[1038,2,2,181,183],[1039,1,1,183,184],[1045,2,2,184,186]]],[44,1,1,186,187,[[1055,1,1,186,187]]],[45,2,2,187,189,[[1066,1,1,187,188],[1075,1,1,188,189]]],[46,3,3,189,192,[[1079,1,1,189,190],[1083,1,1,190,191],[1085,1,1,191,192]]],[49,1,1,192,193,[[1106,1,1,192,193]]],[51,1,1,193,194,[[1111,1,1,193,194]]],[57,6,5,194,199,[[1135,1,1,194,195],[1139,1,1,195,196],[1143,3,2,196,198],[1145,1,1,198,199]]],[58,1,1,199,200,[[1148,1,1,199,200]]],[61,2,2,200,202,[[1160,1,1,200,201],[1162,1,1,201,202]]],[63,1,1,202,203,[[1165,1,1,202,203]]],[65,13,13,203,216,[[1169,1,1,203,204],[1172,2,2,204,206],[1175,1,1,206,207],[1180,4,4,207,211],[1181,1,1,211,212],[1182,1,1,212,213],[1184,1,1,213,214],[1185,1,1,214,215],[1186,1,1,215,216]]]],[23175,23260,23373,23377,23379,23405,23410,23411,23428,23431,23466,23467,23468,23503,23532,23533,23540,23542,23588,23611,23651,23652,23654,23655,23718,23755,23793,23795,23797,23798,23843,23882,23958,23983,23984,24009,24014,24084,24109,24125,24129,24161,24182,24203,24240,24241,24243,24244,24250,24253,24260,24272,24273,24294,24309,24326,24366,24372,24377,24378,24394,24408,24417,24419,24431,24441,24461,24492,24493,24494,24511,24527,24563,24564,24567,24568,24651,24652,24770,24780,24802,24822,24881,24893,24915,24974,25077,25098,25099,25104,25105,25115,25134,25158,25165,25212,25219,25220,25221,25247,25250,25272,25274,25278,25280,25283,25291,25305,25306,25307,25373,25398,25419,25429,25518,25549,25571,25574,25576,25616,25680,25863,25903,25916,25926,26087,26186,26199,26390,26423,26440,26490,26520,26554,26567,26593,26633,26660,26661,26753,26754,26756,26767,26786,26789,26801,26814,26823,26829,26830,26842,26859,26870,26901,26921,26944,27119,27120,27123,27183,27282,27332,27346,27347,27354,27434,27466,27482,27486,27493,27496,27501,27502,27519,27522,27523,27556,27580,27597,27627,27637,27669,27672,27722,27902,27914,28206,28464,28714,28837,28915,28949,29457,29568,30011,30069,30180,30187,30254,30329,30569,30604,30665,30758,30795,30797,30843,30941,30943,30944,30946,30952,30971,30997,31022,31046]]],["+",[5,5,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,2,2,1,3,[[978,1,1,1,2],[987,1,1,2,3]]],[42,2,2,3,5,[[1009,1,1,3,4],[1017,1,1,4,5]]]],[23983,25165,25616,26660,26921]]],["Come",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[24372,30997]]],["Depart",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25115]]],["Get",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27119]]],["abroad",[3,3,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[51,1,1,2,3,[[1111,1,1,2,3]]]],[23405,24243,29568]]],["away",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27282]]],["came",[19,19,[[39,2,2,0,2,[[943,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,2,2,3,5,[[976,2,2,3,5]]],[42,1,1,5,6,[[1015,1,1,5,6]]],[43,3,3,6,9,[[1024,1,1,6,7],[1045,2,2,7,9]]],[45,1,1,9,10,[[1075,1,1,9,10]]],[57,1,1,10,11,[[1135,1,1,10,11]]],[65,8,8,11,19,[[1175,1,1,11,12],[1180,4,4,12,16],[1181,1,1,16,17],[1182,1,1,17,18],[1185,1,1,18,19]]]],[23655,24182,24241,25098,25104,26830,27120,27902,27914,28714,30011,30843,30941,30943,30944,30946,30952,30971,31022]]],["come",[12,12,[[39,1,1,0,1,[[930,1,1,0,1]]],[40,6,6,1,7,[[957,2,2,1,3],[961,1,1,3,4],[962,1,1,4,5],[965,1,1,5,6],[967,1,1,6,7]]],[41,2,2,7,9,[[976,1,1,7,8],[980,1,1,8,9]]],[42,1,1,9,10,[[1009,1,1,9,10]]],[43,1,1,10,11,[[1033,1,1,10,11]]],[57,1,1,11,12,[[1139,1,1,11,12]]]],[23175,24240,24244,24366,24461,24563,24652,25098,25274,26633,27501,30069]]],["cometh",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23984]]],["coming",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23373]]],["depart",[5,5,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,2,2,2,4,[[981,1,1,2,3],[984,1,1,3,4]]],[43,1,1,4,5,[[1033,1,1,4,5]]]],[23431,24417,25305,25518,27519]]],["departed",[22,22,[[39,3,3,0,3,[[937,1,1,0,1],[945,1,1,1,2],[956,1,1,2,3]]],[40,1,1,3,4,[[965,1,1,3,4]]],[41,5,5,4,9,[[976,1,1,4,5],[980,2,2,5,7],[981,1,1,7,8],[982,1,1,8,9]]],[42,1,1,9,10,[[1000,1,1,9,10]]],[43,11,11,10,21,[[1028,1,1,10,11],[1029,1,1,11,12],[1031,1,1,12,13],[1032,1,1,13,14],[1033,1,1,14,15],[1034,1,1,15,16],[1035,1,1,16,17],[1037,2,2,17,19],[1038,2,2,19,21]]],[49,1,1,21,22,[[1106,1,1,21,22]]]],[23410,23718,24203,24568,25105,25280,25283,25307,25398,26199,27332,27354,27434,27482,27523,27556,27580,27627,27637,27669,27672,29457]]],["departing",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24494]]],["escaped",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26520]]],["forth",[33,33,[[39,5,5,0,5,[[941,2,2,0,2],[942,1,1,2,3],[943,1,1,3,4],[953,1,1,4,5]]],[40,9,9,5,14,[[957,1,1,5,6],[958,2,2,6,8],[959,1,1,8,9],[962,1,1,9,10],[964,1,1,10,11],[965,1,1,11,12],[970,1,1,12,13],[972,1,1,13,14]]],[41,3,3,14,17,[[977,1,1,14,15],[979,1,1,15,16],[980,1,1,16,17]]],[42,11,11,17,28,[[997,1,1,17,18],[1004,1,1,18,19],[1007,1,1,19,20],[1008,1,1,20,21],[1012,2,2,21,23],[1014,2,2,23,25],[1015,1,1,25,26],[1016,1,1,26,27],[1017,1,1,27,28]]],[43,2,2,28,30,[[1024,1,1,28,29],[1033,1,1,29,30]]],[57,1,1,30,31,[[1145,1,1,30,31]]],[63,1,1,31,32,[[1165,1,1,31,32]]],[65,1,1,32,33,[[1172,1,1,32,33]]]],[23542,23588,23611,23651,24009,24253,24272,24273,24294,24431,24511,24567,24770,24893,25134,25212,25272,26087,26423,26567,26593,26754,26756,26786,26789,26842,26870,26901,27123,27486,30254,30665,30795]]],["get",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27722]]],["go",[6,6,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[986,1,1,2,3]]],[43,1,1,3,4,[[1033,1,1,3,4]]],[45,1,1,4,5,[[1066,1,1,4,5]]],[65,1,1,5,6,[[1169,1,1,5,6]]]],[23428,25306,25571,27493,28464,30758]]],["gone",[6,6,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[963,1,1,2,3]]],[41,2,2,3,5,[[980,1,1,3,4],[983,1,1,4,5]]],[43,1,1,5,6,[[1033,1,1,5,6]]]],[23532,24394,24492,25291,25429,27502]]],["out",[82,81,[[39,21,21,0,21,[[933,1,1,0,1],[936,2,2,1,3],[937,1,1,3,4],[939,3,3,4,7],[940,2,2,7,9],[946,1,1,9,10],[948,4,4,10,14],[950,1,1,14,15],[952,1,1,15,16],[953,1,1,16,17],[954,3,3,17,20],[955,1,1,20,21]]],[40,16,16,21,37,[[957,2,2,21,23],[959,1,1,23,24],[960,1,1,24,25],[961,2,2,25,27],[962,3,3,27,30],[963,1,1,30,31],[964,1,1,31,32],[965,1,1,32,33],[967,1,1,33,34],[970,2,2,34,36],[972,1,1,36,37]]],[41,20,20,37,57,[[973,1,1,37,38],[974,1,1,38,39],[976,2,2,39,41],[978,1,1,41,42],[979,3,3,42,45],[980,2,2,45,47],[982,1,1,47,48],[983,2,2,48,50],[985,1,1,50,51],[986,2,2,51,53],[989,1,1,53,54],[993,1,1,54,55],[994,2,2,55,57]]],[42,10,10,57,67,[[1004,1,1,57,58],[1006,1,1,58,59],[1007,1,1,59,60],[1009,1,1,60,61],[1012,1,1,61,62],[1013,1,1,62,63],[1014,3,3,63,66],[1015,1,1,66,67]]],[43,7,7,67,74,[[1018,1,1,67,68],[1025,1,1,68,69],[1029,2,2,69,71],[1032,1,1,71,72],[1033,2,2,72,74]]],[46,1,1,74,75,[[1083,1,1,74,75]]],[57,3,2,75,77,[[1143,3,2,75,77]]],[61,2,2,77,79,[[1160,1,1,77,78],[1162,1,1,78,79]]],[65,2,2,79,81,[[1172,1,1,79,80],[1186,1,1,80,81]]]],[23260,23377,23379,23411,23466,23467,23468,23503,23533,23755,23793,23795,23797,23798,23882,23958,24014,24084,24109,24125,24161,24250,24260,24309,24326,24377,24378,24408,24419,24441,24493,24527,24564,24651,24780,24802,24881,24915,24974,25077,25099,25158,25219,25220,25221,25250,25280,25373,25419,25429,25549,25574,25576,25680,25863,25903,25916,26390,26490,26554,26661,26753,26767,26801,26814,26823,26859,26944,27183,27346,27347,27466,27501,27522,28915,30180,30187,30569,30604,30797,31046]]],["proceed",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23652]]],["proceedeth",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30329]]],["thence",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28837]]],["went",[16,16,[[39,4,4,0,4,[[941,1,1,0,1],[943,1,1,1,2],[949,1,1,2,3],[954,1,1,3,4]]],[40,1,1,4,5,[[970,1,1,4,5]]],[41,3,3,5,8,[[980,2,2,5,7],[994,1,1,7,8]]],[42,3,3,8,11,[[1000,1,1,8,9],[1004,1,1,9,10],[1015,1,1,10,11]]],[43,3,3,11,14,[[1033,2,2,11,13],[1036,1,1,13,14]]],[44,1,1,14,15,[[1055,1,1,14,15]]],[46,1,1,15,16,[[1085,1,1,15,16]]]],[23540,23654,23843,24129,24822,25247,25278,25926,26186,26440,26829,27496,27523,27597,28206,28949]]]]},{"k":"G1832","v":[["*",[32,30,[[39,9,9,0,9,[[940,4,4,0,4],[942,1,1,4,5],[947,1,1,5,6],[948,1,1,6,7],[950,1,1,7,8],[955,1,1,8,9]]],[40,6,6,9,15,[[958,2,2,9,11],[959,1,1,11,12],[962,1,1,12,13],[966,1,1,13,14],[968,1,1,14,15]]],[41,5,5,15,20,[[978,3,3,15,18],[986,1,1,18,19],[992,1,1,19,20]]],[42,2,2,20,22,[[1001,1,1,20,21],[1014,1,1,21,22]]],[43,5,5,22,27,[[1019,1,1,22,23],[1025,1,1,23,24],[1033,1,1,24,25],[1038,1,1,25,26],[1039,1,1,26,27]]],[45,4,2,27,29,[[1067,2,1,27,28],[1071,2,1,28,29]]],[46,1,1,29,30,[[1089,1,1,29,30]]]],[23491,23493,23499,23501,23601,23765,23807,23889,24135,24284,24286,24292,24425,24590,24687,25148,25150,25155,25556,25801,26220,26816,26978,27213,27504,27701,27729,28479,28590,29026]]],["+",[13,13,[[39,4,4,0,4,[[940,1,1,0,1],[942,1,1,1,2],[948,1,1,2,3],[955,1,1,3,4]]],[40,3,3,4,7,[[958,2,2,4,6],[962,1,1,6,7]]],[41,2,2,7,9,[[978,2,2,7,9]]],[42,2,2,9,11,[[1001,1,1,9,10],[1014,1,1,10,11]]],[43,1,1,11,12,[[1033,1,1,11,12]]],[46,1,1,12,13,[[1089,1,1,12,13]]]],[23491,23601,23807,24135,24284,24286,24425,25148,25150,26220,26816,27504,29026]]],["May",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27701]]],["lawful",[16,14,[[39,5,5,0,5,[[940,3,3,0,3],[947,1,1,3,4],[950,1,1,4,5]]],[40,3,3,5,8,[[959,1,1,5,6],[966,1,1,6,7],[968,1,1,7,8]]],[41,3,3,8,11,[[978,1,1,8,9],[986,1,1,9,10],[992,1,1,10,11]]],[43,1,1,11,12,[[1039,1,1,11,12]]],[45,4,2,12,14,[[1067,2,1,12,13],[1071,2,1,13,14]]]],[23493,23499,23501,23765,23889,24292,24590,24687,25155,25556,25801,27729,28479,28590]]],["let",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26978]]],["mayest",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27213]]]]},{"k":"G1833","v":[["*",[3,3,[[39,2,2,0,2,[[930,1,1,0,1],[938,1,1,1,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]]],[23177,23428,26910]]],["ask",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26910]]],["enquire",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23428]]],["search",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23177]]]]},{"k":"G1834","v":[["*",[6,6,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]],[43,4,4,2,6,[[1027,1,1,2,3],[1032,2,2,3,5],[1038,1,1,5,6]]]],[26026,26062,27267,27454,27456,27683]]],["declared",[4,4,[[42,1,1,0,1,[[997,1,1,0,1]]],[43,3,3,1,4,[[1027,1,1,1,2],[1032,1,1,2,3],[1038,1,1,3,4]]]],[26062,27267,27456,27683]]],["declaring",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27454]]],["told",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26026]]]]},{"k":"G1835","v":[["*",[8,8,[[39,2,2,0,2,[[941,2,2,0,2]]],[40,2,2,2,4,[[960,2,2,2,4]]],[41,1,1,4,5,[[996,1,1,4,5]]],[53,1,1,5,6,[[1123,1,1,5,6]]],[65,2,2,6,8,[[1177,1,1,6,7],[1178,1,1,7,8]]]],[23547,23562,24331,24343,26004,29772,30875,30897]]],["+",[4,4,[[39,2,2,0,2,[[941,2,2,0,2]]],[65,2,2,2,4,[[1177,1,1,2,3],[1178,1,1,3,4]]]],[23547,23562,30875,30897]]],["sixty",[2,2,[[40,2,2,0,2,[[960,2,2,0,2]]]],[24331,24343]]],["threescore",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[26004,29772]]]]},{"k":"G1836","v":[["*",[5,5,[[41,2,2,0,2,[[979,1,1,0,1],[981,1,1,1,2]]],[43,3,3,2,5,[[1038,1,1,2,3],[1042,1,1,3,4],[1044,1,1,4,5]]]],[25206,25338,27665,27813,27873]]],["after",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25206]]],["following",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27665]]],["morrow",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27813]]],["next",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[25338,27873]]]]},{"k":"G1837","v":[["out",[1,1,[[51,1,1,0,1,[[1111,1,1,0,1]]]],[29568]]]]},{"k":"G1838","v":[["use",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30044]]]]},{"k":"G1839","v":[["*",[17,17,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,4,4,1,5,[[958,1,1,1,2],[959,1,1,2,3],[961,1,1,3,4],[962,1,1,4,5]]],[41,3,3,5,8,[[974,1,1,5,6],[980,1,1,6,7],[996,1,1,7,8]]],[43,8,8,8,16,[[1019,2,2,8,10],[1025,3,3,10,13],[1026,1,1,13,14],[1027,1,1,14,15],[1029,1,1,15,16]]],[46,1,1,16,17,[[1082,1,1,16,17]]]],[23512,24272,24309,24406,24458,25020,25301,26013,26956,26961,27185,27187,27189,27237,27304,27353,28890]]],["+",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26013]]],["amazed",[6,6,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[962,1,1,2,3]]],[43,3,3,3,6,[[1019,2,2,3,5],[1026,1,1,5,6]]]],[23512,24272,24458,26956,26961,27237]]],["astonished",[5,5,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[980,1,1,2,3]]],[43,2,2,3,5,[[1027,1,1,3,4],[1029,1,1,4,5]]]],[24406,25020,25301,27304,27353]]],["bewitched",[2,2,[[43,2,2,0,2,[[1025,2,2,0,2]]]],[27185,27187]]],["himself",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24309]]],["ourselves",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28890]]],["wondered",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27189]]]]},{"k":"G1840","v":[["able",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29269]]]]},{"k":"G1841","v":[["*",[3,3,[[41,1,1,0,1,[[981,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]],[60,1,1,2,3,[[1156,1,1,2,3]]]],[25332,30194,30494]]],["decease",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[25332,30494]]],["departing",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30194]]]]},{"k":"G1842","v":[["destroyed",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27019]]]]},{"k":"G1843","v":[["*",[11,11,[[39,2,2,0,2,[[931,1,1,0,1],[939,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,2,2,3,5,[[982,1,1,3,4],[994,1,1,4,5]]],[43,1,1,5,6,[[1036,1,1,5,6]]],[44,2,2,6,8,[[1059,1,1,6,7],[1060,1,1,7,8]]],[49,1,1,8,9,[[1104,1,1,8,9]]],[58,1,1,9,10,[[1150,1,1,9,10]]],[65,1,1,10,11,[[1169,1,1,10,11]]]],[23198,23484,24220,25384,25870,27603,28291,28312,29402,30370,30751]]],["Confess",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30370]]],["confess",[4,4,[[44,2,2,0,2,[[1059,1,1,0,1],[1060,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[65,1,1,3,4,[[1169,1,1,3,4]]]],[28291,28312,29402,30751]]],["confessed",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27603]]],["confessing",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23198,24220]]],["promised",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25870]]],["thank",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[23484,25384]]]]},{"k":"G1844","v":[["adjure",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24117]]]]},{"k":"G1845","v":[["exorcists",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27598]]]]},{"k":"G1846","v":[["*",[2,2,[[40,1,1,0,1,[[958,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]]],[24264,29146]]],["+",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29146]]],["up",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24264]]]]},{"k":"G1847","v":[["nought",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24550]]]]},{"k":"G1848","v":[["*",[11,11,[[41,2,2,0,2,[[990,1,1,0,1],[995,1,1,1,2]]],[43,1,1,2,3,[[1021,1,1,2,3]]],[44,2,2,3,5,[[1059,2,2,3,5]]],[45,3,3,5,8,[[1062,1,1,5,6],[1067,1,1,6,7],[1077,1,1,7,8]]],[46,1,1,8,9,[[1087,1,1,8,9]]],[47,1,1,9,10,[[1094,1,1,9,10]]],[51,1,1,10,11,[[1115,1,1,10,11]]]],[25697,25946,27033,28283,28290,28391,28471,28787,28981,29145,29641]]],["+",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25946]]],["Despise",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29641]]],["contemptible",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28981]]],["despise",[2,2,[[44,1,1,0,1,[[1059,1,1,0,1]]],[45,1,1,1,2,[[1077,1,1,1,2]]]],[28283,28787]]],["despised",[3,3,[[41,1,1,0,1,[[990,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]],[47,1,1,2,3,[[1094,1,1,2,3]]]],[25697,28391,29145]]],["esteemed",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28471]]],["nought",[2,2,[[43,1,1,0,1,[[1021,1,1,0,1]]],[44,1,1,1,2,[[1059,1,1,1,2]]]],[27033,28290]]]]},{"k":"G1849","v":[["*",[103,93,[[39,10,9,0,9,[[935,1,1,0,1],[936,1,1,1,2],[937,2,2,2,4],[938,1,1,4,5],[949,4,3,5,8],[956,1,1,8,9]]],[40,10,9,9,18,[[957,2,2,9,11],[958,1,1,11,12],[959,1,1,12,13],[962,1,1,13,14],[967,4,3,14,17],[969,1,1,17,18]]],[41,16,15,18,33,[[976,3,3,18,21],[977,1,1,21,22],[979,1,1,22,23],[981,1,1,23,24],[982,1,1,24,25],[984,2,2,25,27],[991,1,1,27,28],[992,4,3,28,31],[994,1,1,31,32],[995,1,1,32,33]]],[42,8,6,33,39,[[997,1,1,33,34],[1001,1,1,34,35],[1006,2,1,35,36],[1013,1,1,36,37],[1015,3,2,37,39]]],[43,7,7,39,46,[[1018,1,1,39,40],[1022,1,1,40,41],[1025,1,1,41,42],[1026,1,1,42,43],[1043,3,3,43,46]]],[44,6,4,46,50,[[1054,1,1,46,47],[1058,5,3,47,50]]],[45,10,9,50,59,[[1068,1,1,50,51],[1069,1,1,51,52],[1070,6,5,52,57],[1072,1,1,57,58],[1076,1,1,58,59]]],[46,2,2,59,61,[[1087,1,1,59,60],[1090,1,1,60,61]]],[48,4,4,61,65,[[1097,1,1,61,62],[1098,1,1,62,63],[1099,1,1,63,64],[1102,1,1,64,65]]],[50,4,4,65,69,[[1107,2,2,65,67],[1108,2,2,67,69]]],[52,1,1,69,70,[[1118,1,1,69,70]]],[55,1,1,70,71,[[1131,1,1,70,71]]],[57,1,1,71,72,[[1145,1,1,71,72]]],[59,1,1,72,73,[[1153,1,1,72,73]]],[64,1,1,73,74,[[1166,1,1,73,74]]],[65,21,19,74,93,[[1168,1,1,74,75],[1172,1,1,75,76],[1175,4,3,76,79],[1177,2,1,79,80],[1178,1,1,80,81],[1179,5,5,81,86],[1180,1,1,86,87],[1182,1,1,87,88],[1183,2,2,88,90],[1184,1,1,90,91],[1186,1,1,91,92],[1188,1,1,92,93]]]],[23345,23354,23385,23387,23418,23849,23850,23853,24213,24237,24242,24270,24303,24414,24668,24669,24673,24751,25069,25095,25099,25131,25203,25302,25382,25464,25470,25748,25781,25787,25799,25917,25942,26056,26237,26499,26761,26835,26836,26930,27063,27195,27230,27833,27835,27841,28176,28267,28268,28269,28524,28536,28544,28545,28546,28552,28558,28610,28742,28979,29053,29227,29231,29261,29349,29478,29481,29504,29509,29687,29924,30251,30446,30697,30743,30801,30843,30850,30859,30878,30901,30910,30912,30913,30915,30920,30944,30963,30987,30988,30994,31044,31094]]],["+",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27063]]],["authorities",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30446]]],["authority",[28,25,[[39,6,5,0,5,[[935,1,1,0,1],[936,1,1,1,2],[949,4,3,2,5]]],[40,7,6,5,11,[[957,2,2,5,7],[967,4,3,7,10],[969,1,1,10,11]]],[41,8,7,11,18,[[976,1,1,11,12],[979,1,1,12,13],[981,1,1,13,14],[991,1,1,14,15],[992,4,3,15,18]]],[42,1,1,18,19,[[1001,1,1,18,19]]],[43,3,3,19,22,[[1026,1,1,19,20],[1043,2,2,20,22]]],[45,1,1,22,23,[[1076,1,1,22,23]]],[46,1,1,23,24,[[1087,1,1,23,24]]],[65,1,1,24,25,[[1179,1,1,24,25]]]],[23345,23354,23849,23850,23853,24237,24242,24668,24669,24673,24751,25099,25203,25302,25748,25781,25787,25799,26237,27230,27833,27835,28742,28979,30910]]],["jurisdiction",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25942]]],["liberty",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28536]]],["power",[60,55,[[39,4,4,0,4,[[937,2,2,0,2],[938,1,1,2,3],[956,1,1,3,4]]],[40,3,3,4,7,[[958,1,1,4,5],[959,1,1,5,6],[962,1,1,6,7]]],[41,6,6,7,13,[[976,2,2,7,9],[977,1,1,9,10],[982,1,1,10,11],[984,1,1,11,12],[994,1,1,12,13]]],[42,7,5,13,18,[[997,1,1,13,14],[1006,2,1,14,15],[1013,1,1,15,16],[1015,3,2,16,18]]],[43,3,3,18,21,[[1018,1,1,18,19],[1025,1,1,19,20],[1043,1,1,20,21]]],[44,4,4,21,25,[[1054,1,1,21,22],[1058,3,3,22,25]]],[45,8,7,25,32,[[1068,1,1,25,26],[1070,6,5,26,31],[1072,1,1,31,32]]],[46,1,1,32,33,[[1090,1,1,32,33]]],[48,2,2,33,35,[[1097,1,1,33,34],[1098,1,1,34,35]]],[50,2,2,35,37,[[1107,1,1,35,36],[1108,1,1,36,37]]],[52,1,1,37,38,[[1118,1,1,37,38]]],[64,1,1,38,39,[[1166,1,1,38,39]]],[65,18,16,39,55,[[1168,1,1,39,40],[1172,1,1,40,41],[1175,4,3,41,44],[1177,2,1,44,45],[1178,1,1,45,46],[1179,4,4,46,50],[1180,1,1,50,51],[1182,1,1,51,52],[1183,1,1,52,53],[1184,1,1,53,54],[1186,1,1,54,55]]]],[23385,23387,23418,24213,24270,24303,24414,25069,25095,25131,25382,25464,25917,26056,26499,26761,26835,26836,26930,27195,27841,28176,28267,28268,28269,28524,28544,28545,28546,28552,28558,28610,29053,29227,29231,29478,29504,29687,30697,30743,30801,30843,30850,30859,30878,30901,30912,30913,30915,30920,30944,30963,30987,30994,31044]]],["powers",[8,7,[[41,1,1,0,1,[[984,1,1,0,1]]],[44,2,1,1,2,[[1058,2,1,1,2]]],[48,2,2,2,4,[[1099,1,1,2,3],[1102,1,1,3,4]]],[50,2,2,4,6,[[1107,1,1,4,5],[1108,1,1,5,6]]],[55,1,1,6,7,[[1131,1,1,6,7]]]],[25470,28267,29261,29349,29481,29509,29924]]],["right",[2,2,[[57,1,1,0,1,[[1145,1,1,0,1]]],[65,1,1,1,2,[[1188,1,1,1,2]]]],[30251,31094]]],["strength",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30988]]]]},{"k":"G1850","v":[["*",[4,3,[[41,1,1,0,1,[[994,1,1,0,1]]],[45,3,2,1,3,[[1067,1,1,1,2],[1068,2,1,2,3]]]],[25889,28479,28491]]],["+",[2,1,[[45,2,1,0,1,[[1068,2,1,0,1]]]],[28491]]],["power",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28479]]],["upon",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25889]]]]},{"k":"G1851","v":[["+",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27819]]]]},{"k":"G1852","v":[["+",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26534]]]]},{"k":"G1853","v":[["+",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27510]]]]},{"k":"G1854","v":[["*",[65,64,[[39,8,8,0,8,[[933,1,1,0,1],[940,2,2,1,3],[941,1,1,3,4],[949,2,2,4,6],[954,2,2,6,8]]],[40,10,10,8,18,[[957,1,1,8,9],[959,2,2,9,11],[960,1,1,11,12],[961,1,1,12,13],[964,1,1,13,14],[967,2,2,14,16],[968,1,1,16,17],[970,1,1,17,18]]],[41,11,11,18,29,[[973,1,1,18,19],[976,1,1,19,20],[980,2,2,20,22],[985,3,3,22,25],[986,1,1,25,26],[992,1,1,26,27],[994,1,1,27,28],[996,1,1,28,29]]],[42,12,11,29,40,[[1002,1,1,29,30],[1005,2,2,30,32],[1007,1,1,32,33],[1008,1,1,33,34],[1011,1,1,34,35],[1014,1,1,35,36],[1015,4,3,36,39],[1016,1,1,39,40]]],[43,11,11,40,51,[[1021,1,1,40,41],[1022,2,2,41,43],[1024,1,1,43,44],[1026,1,1,44,45],[1031,1,1,45,46],[1033,2,2,46,48],[1038,2,2,48,50],[1043,1,1,50,51]]],[45,2,2,51,53,[[1066,2,2,51,53]]],[46,1,1,53,54,[[1081,1,1,53,54]]],[50,1,1,54,55,[[1110,1,1,54,55]]],[51,1,1,55,56,[[1114,1,1,55,56]]],[57,3,3,56,59,[[1145,3,3,56,59]]],[61,1,1,59,60,[[1162,1,1,59,60]]],[65,4,4,60,64,[[1169,1,1,60,61],[1177,1,1,61,62],[1180,1,1,62,63],[1188,1,1,63,64]]]],[23247,23535,23536,23587,23843,23865,24123,24129,24260,24319,24320,24334,24374,24523,24644,24659,24681,24822,24903,25092,25265,25299,25543,25546,25551,25588,25794,25926,26041,26294,26474,26475,26566,26611,26705,26801,26829,26830,26838,26878,27037,27082,27093,27174,27256,27433,27496,27513,27669,27694,27834,28466,28467,28875,29547,29615,30252,30253,30254,30621,30758,30874,30946,31095]]],["+",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28466]]],["away",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23587]]],["forth",[8,7,[[42,6,5,0,5,[[1007,1,1,0,1],[1011,1,1,1,2],[1015,4,3,2,5]]],[43,2,2,5,7,[[1022,1,1,5,6],[1026,1,1,6,7]]]],[26566,26705,26829,26830,26838,27093,27256]]],["out",[31,31,[[39,4,4,0,4,[[933,1,1,0,1],[949,2,2,1,3],[954,1,1,3,4]]],[40,5,5,4,9,[[961,1,1,4,5],[964,1,1,5,6],[967,1,1,6,7],[968,1,1,7,8],[970,1,1,8,9]]],[41,8,8,9,17,[[976,1,1,9,10],[980,1,1,10,11],[985,2,2,11,13],[986,1,1,13,14],[992,1,1,14,15],[994,1,1,15,16],[996,1,1,16,17]]],[42,4,4,17,21,[[1002,1,1,17,18],[1005,2,2,18,20],[1008,1,1,20,21]]],[43,7,7,21,28,[[1021,1,1,21,22],[1024,1,1,22,23],[1031,1,1,23,24],[1033,2,2,24,26],[1038,2,2,26,28]]],[61,1,1,28,29,[[1162,1,1,28,29]]],[65,2,2,29,31,[[1169,1,1,29,30],[1177,1,1,30,31]]]],[23247,23843,23865,24129,24374,24523,24659,24681,24822,25092,25299,25546,25551,25588,25794,25926,26041,26294,26474,26475,26611,27037,27174,27433,27496,27513,27669,27694,30621,30758,30874]]],["outward",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28875]]],["strange",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27834]]],["without",[22,22,[[39,3,3,0,3,[[940,2,2,0,2],[954,1,1,2,3]]],[40,5,5,3,8,[[957,1,1,3,4],[959,2,2,4,6],[960,1,1,6,7],[967,1,1,7,8]]],[41,3,3,8,11,[[973,1,1,8,9],[980,1,1,9,10],[985,1,1,10,11]]],[42,2,2,11,13,[[1014,1,1,11,12],[1016,1,1,12,13]]],[43,1,1,13,14,[[1022,1,1,13,14]]],[45,1,1,14,15,[[1066,1,1,14,15]]],[50,1,1,15,16,[[1110,1,1,15,16]]],[51,1,1,16,17,[[1114,1,1,16,17]]],[57,3,3,17,20,[[1145,3,3,17,20]]],[65,2,2,20,22,[[1180,1,1,20,21],[1188,1,1,21,22]]]],[23535,23536,24123,24260,24319,24320,24334,24644,24903,25265,25543,26801,26878,27082,28467,29547,29615,30252,30253,30254,30946,31095]]]]},{"k":"G1855","v":[["*",[11,11,[[39,3,3,0,3,[[951,3,3,0,3]]],[40,2,2,3,5,[[963,2,2,3,5]]],[41,2,2,5,7,[[983,2,2,5,7]]],[46,1,1,7,8,[[1084,1,1,7,8]]],[53,1,1,8,9,[[1121,1,1,8,9]]],[59,1,1,9,10,[[1153,1,1,9,10]]],[65,1,1,10,11,[[1177,1,1,10,11]]]],[23943,23945,23946,24478,24481,25444,25445,28921,29738,30427,30874]]],["+",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23946]]],["outside",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23943,25444]]],["outward",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[23945,30427]]],["without",[6,6,[[40,2,2,0,2,[[963,2,2,0,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[46,1,1,3,4,[[1084,1,1,3,4]]],[53,1,1,4,5,[[1121,1,1,4,5]]],[65,1,1,5,6,[[1177,1,1,5,6]]]],[24478,24481,25445,28921,29738,30874]]]]},{"k":"G1856","v":[["*",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1044,1,1,1,2]]]],[27161,27894]]],["in",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27894]]],["out",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27161]]]]},{"k":"G1857","v":[["outer",[3,3,[[39,3,3,0,3,[[936,1,1,0,1],[950,1,1,1,2],[953,1,1,2,3]]]],[23357,23885,24038]]]]},{"k":"G1858","v":[["feast",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28462]]]]},{"k":"G1859","v":[["*",[27,25,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,2,2,2,4,[[970,1,1,2,3],[971,1,1,3,4]]],[41,4,4,4,8,[[974,2,2,4,6],[994,1,1,6,7],[995,1,1,7,8]]],[42,17,15,8,23,[[998,1,1,8,9],[1000,2,1,9,10],[1001,1,1,10,11],[1002,1,1,11,12],[1003,7,6,12,18],[1007,1,1,18,19],[1008,2,2,19,21],[1009,2,2,21,23]]],[43,1,1,23,24,[[1035,1,1,23,24]]],[50,1,1,24,25,[[1108,1,1,24,25]]]],[24059,24144,24756,24832,25014,25015,25865,25952,26118,26201,26211,26261,26330,26336,26338,26339,26342,26365,26579,26592,26600,26631,26659,27578,29510]]],["feast",[26,24,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,2,2,2,4,[[970,1,1,2,3],[971,1,1,3,4]]],[41,4,4,4,8,[[974,2,2,4,6],[994,1,1,6,7],[995,1,1,7,8]]],[42,17,15,8,23,[[998,1,1,8,9],[1000,2,1,9,10],[1001,1,1,10,11],[1002,1,1,11,12],[1003,7,6,12,18],[1007,1,1,18,19],[1008,2,2,19,21],[1009,2,2,21,23]]],[43,1,1,23,24,[[1035,1,1,23,24]]]],[24059,24144,24756,24832,25014,25015,25865,25952,26118,26201,26211,26261,26330,26336,26338,26339,26342,26365,26579,26592,26600,26631,26659,27578]]],["holyday",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29510]]]]},{"k":"G1860","v":[["*",[53,51,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,8,8,1,9,[[1018,1,1,1,2],[1019,2,2,2,4],[1024,1,1,4,5],[1030,2,2,5,7],[1040,1,1,7,8],[1043,1,1,8,9]]],[44,8,8,9,17,[[1049,4,4,9,13],[1054,3,3,13,16],[1060,1,1,16,17]]],[46,2,2,17,19,[[1078,1,1,17,18],[1084,1,1,18,19]]],[47,10,9,19,28,[[1093,8,7,19,26],[1094,2,2,26,28]]],[48,4,4,28,32,[[1097,1,1,28,29],[1098,1,1,29,30],[1099,1,1,30,31],[1102,1,1,31,32]]],[53,1,1,32,33,[[1122,1,1,32,33]]],[54,1,1,33,34,[[1125,1,1,33,34]]],[57,14,13,34,47,[[1136,1,1,34,35],[1138,3,3,35,38],[1139,1,1,38,39],[1140,1,1,39,40],[1141,1,1,40,41],[1142,1,1,41,42],[1143,6,5,42,47]]],[60,2,2,47,49,[[1158,2,2,47,49]]],[61,2,2,49,51,[[1159,1,1,49,50],[1160,1,1,50,51]]]],[26040,26927,26982,26988,27133,27385,27394,27755,27829,28035,28036,28038,28042,28159,28163,28164,28311,28820,28917,29116,29118,29119,29120,29123,29124,29131,29154,29159,29219,29241,29257,29339,29755,29810,30015,30056,30059,30061,30070,30098,30120,30169,30181,30185,30189,30205,30211,30526,30531,30545,30575]]],["+",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29119]]],["message",[1,1,[[61,1,1,0,1,[[1159,1,1,0,1]]]],[30545]]],["promise",[39,37,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,8,8,1,9,[[1018,1,1,1,2],[1019,2,2,2,4],[1024,1,1,4,5],[1030,2,2,5,7],[1040,1,1,7,8],[1043,1,1,8,9]]],[44,6,6,9,15,[[1049,4,4,9,13],[1054,2,2,13,15]]],[47,7,6,15,21,[[1093,5,4,15,19],[1094,2,2,19,21]]],[48,4,4,21,25,[[1097,1,1,21,22],[1098,1,1,22,23],[1099,1,1,23,24],[1102,1,1,24,25]]],[53,1,1,25,26,[[1122,1,1,25,26]]],[54,1,1,26,27,[[1125,1,1,26,27]]],[57,8,7,27,34,[[1136,1,1,27,28],[1138,2,2,28,30],[1141,1,1,30,31],[1142,1,1,31,32],[1143,3,2,32,34]]],[60,2,2,34,36,[[1158,2,2,34,36]]],[61,1,1,36,37,[[1160,1,1,36,37]]]],[26040,26927,26982,26988,27133,27385,27394,27755,27829,28035,28036,28038,28042,28163,28164,29116,29120,29124,29131,29154,29159,29219,29241,29257,29339,29755,29810,30015,30059,30061,30120,30169,30181,30211,30526,30531,30575]]],["promises",[12,12,[[44,2,2,0,2,[[1054,1,1,0,1],[1060,1,1,1,2]]],[46,2,2,2,4,[[1078,1,1,2,3],[1084,1,1,3,4]]],[47,2,2,4,6,[[1093,2,2,4,6]]],[57,6,6,6,12,[[1138,1,1,6,7],[1139,1,1,7,8],[1140,1,1,8,9],[1143,3,3,9,12]]]],[28159,28311,28820,28917,29118,29123,30056,30070,30098,30185,30189,30205]]]]},{"k":"G1861","v":[["*",[15,15,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[44,1,1,2,3,[[1049,1,1,2,3]]],[47,1,1,3,4,[[1093,1,1,3,4]]],[53,2,2,4,6,[[1120,1,1,4,5],[1124,1,1,5,6]]],[55,1,1,6,7,[[1129,1,1,6,7]]],[57,4,4,7,11,[[1138,1,1,7,8],[1142,1,1,8,9],[1143,1,1,9,10],[1144,1,1,10,11]]],[58,2,2,11,13,[[1146,1,1,11,12],[1147,1,1,12,13]]],[60,1,1,13,14,[[1157,1,1,13,14]]],[61,1,1,14,15,[[1160,1,1,14,15]]]],[24765,27121,28043,29121,29726,29809,29894,30057,30156,30183,30238,30278,30298,30519,30575]]],["made",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29121]]],["professing",[2,2,[[53,2,2,0,2,[[1120,1,1,0,1],[1124,1,1,1,2]]]],[29726,29809]]],["promise",[2,2,[[57,1,1,0,1,[[1138,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[30057,30519]]],["promised",[10,10,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[44,1,1,2,3,[[1049,1,1,2,3]]],[55,1,1,3,4,[[1129,1,1,3,4]]],[57,3,3,4,7,[[1142,1,1,4,5],[1143,1,1,5,6],[1144,1,1,6,7]]],[58,2,2,7,9,[[1146,1,1,7,8],[1147,1,1,8,9]]],[61,1,1,9,10,[[1160,1,1,9,10]]]],[24765,27121,28043,29894,30156,30183,30238,30278,30298,30575]]]]},{"k":"G1862","v":[["*",[2,2,[[60,2,2,0,2,[[1156,1,1,0,1],[1158,1,1,1,2]]]],[30483,30535]]],["promise",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30535]]],["promises",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30483]]]]},{"k":"G1863","v":[["*",[3,3,[[43,1,1,0,1,[[1022,1,1,0,1]]],[60,2,2,1,3,[[1157,2,2,1,3]]]],[27087,30501,30505]]],["bring",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27087]]],["in",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30505]]],["upon",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30501]]]]},{"k":"G1864","v":[["for",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30675]]]]},{"k":"G1865","v":[["together",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25434]]]]},{"k":"G1866","v":[["Epaenetus",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28341]]]]},{"k":"G1867","v":[["*",[6,5,[[41,1,1,0,1,[[988,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[45,4,3,2,5,[[1072,4,3,2,5]]]],[25628,28314,28602,28617,28622]]],["commended",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25628]]],["laud",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28314]]],["praise",[4,3,[[45,4,3,0,3,[[1072,4,3,0,3]]]],[28602,28617,28622]]]]},{"k":"G1868","v":[["praise",[11,11,[[44,2,2,0,2,[[1047,1,1,0,1],[1058,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]],[48,3,3,4,7,[[1097,3,3,4,7]]],[49,2,2,7,9,[[1103,1,1,7,8],[1106,1,1,8,9]]],[59,2,2,9,11,[[1151,1,1,9,10],[1152,1,1,10,11]]]],[27991,28269,28438,28950,29212,29218,29220,29372,29450,30381,30413]]]]},{"k":"G1869","v":[["*",[19,19,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,6,6,1,7,[[978,1,1,1,2],[983,1,1,2,3],[988,1,1,3,4],[990,1,1,4,5],[993,1,1,5,6],[996,1,1,6,7]]],[42,4,4,7,11,[[1000,1,1,7,8],[1002,1,1,8,9],[1009,1,1,9,10],[1013,1,1,10,11]]],[43,5,5,11,16,[[1018,1,1,11,12],[1019,1,1,12,13],[1031,1,1,13,14],[1039,1,1,14,15],[1044,1,1,15,16]]],[46,2,2,16,18,[[1087,1,1,16,17],[1088,1,1,17,18]]],[53,1,1,18,19,[[1120,1,1,18,19]]]],[23708,25166,25432,25643,25701,25854,26041,26191,26262,26648,26760,26932,26963,27425,27726,27895,28976,29009,29724]]],["himself",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29009]]],["itself",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28976]]],["up",[17,17,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,6,6,1,7,[[978,1,1,1,2],[983,1,1,2,3],[988,1,1,3,4],[990,1,1,4,5],[993,1,1,5,6],[996,1,1,6,7]]],[42,4,4,7,11,[[1000,1,1,7,8],[1002,1,1,8,9],[1009,1,1,9,10],[1013,1,1,10,11]]],[43,5,5,11,16,[[1018,1,1,11,12],[1019,1,1,12,13],[1031,1,1,13,14],[1039,1,1,14,15],[1044,1,1,15,16]]],[53,1,1,16,17,[[1120,1,1,16,17]]]],[23708,25166,25432,25643,25701,25854,26041,26191,26262,26648,26760,26932,26963,27425,27726,27895,29724]]]]},{"k":"G1870","v":[["*",[11,9,[[40,2,1,0,1,[[964,2,1,0,1]]],[41,2,1,1,2,[[981,2,1,1,2]]],[44,2,2,2,4,[[1046,1,1,2,3],[1051,1,1,3,4]]],[54,3,3,4,7,[[1125,3,3,4,7]]],[57,2,2,7,9,[[1134,1,1,7,8],[1143,1,1,8,9]]]],[24538,25327,27946,28089,29817,29821,29825,29988,30188]]],["+",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28089]]],["ashamed",[10,8,[[40,2,1,0,1,[[964,2,1,0,1]]],[41,2,1,1,2,[[981,2,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[54,3,3,3,6,[[1125,3,3,3,6]]],[57,2,2,6,8,[[1134,1,1,6,7],[1143,1,1,7,8]]]],[24538,25327,27946,29817,29821,29825,29988,30188]]]]},{"k":"G1871","v":[["beg",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25623]]]]},{"k":"G1872","v":[["*",[4,4,[[40,1,1,0,1,[[972,1,1,0,1]]],[53,2,2,1,3,[[1123,2,2,1,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[24893,29773,29787,30420]]],["after",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29787]]],["follow",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30420]]],["followed",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29773]]],["following",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24893]]]]},{"k":"G1873","v":[["heard",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28900]]]]},{"k":"G1874","v":[["heard",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27508]]]]},{"k":"G1875","v":[["when",[3,3,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,2,2,1,3,[[983,2,2,1,3]]]],[23177,25427,25439]]]]},{"k":"G1876","v":[["things",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27470]]]]},{"k":"G1877","v":[["*",[3,3,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,2,2,1,3,[[977,2,2,1,3]]]],[23844,25110,25111]]],["out",[2,2,[[41,2,2,0,2,[[977,2,2,0,2]]]],[25110,25111]]],["returned",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23844]]]]},{"k":"G1878","v":[["+",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28318]]]]},{"k":"G1879","v":[["*",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]]],[25369,27979]]],["in",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27979]]],["rest",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25369]]]]},{"k":"G1880","v":[["*",[2,2,[[41,2,2,0,2,[[982,1,1,0,1],[991,1,1,1,2]]]],[25398,25746]]],["again",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25398]]],["returned",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25746]]]]},{"k":"G1881","v":[["up",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23438,24729]]]]},{"k":"G1882","v":[["correction",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29869]]]]},{"k":"G1883","v":[["*",[20,18,[[39,9,8,0,8,[[930,1,1,0,1],[933,1,1,1,2],[949,2,1,2,3],[951,3,3,3,6],[955,1,1,6,7],[956,1,1,7,8]]],[40,1,1,8,9,[[970,1,1,8,9]]],[41,5,5,9,14,[[976,1,1,9,10],[982,1,1,10,11],[983,1,1,11,12],[991,2,2,12,14]]],[42,2,1,14,15,[[999,2,1,14,15]]],[45,1,1,15,16,[[1076,1,1,15,16]]],[65,2,2,16,18,[[1172,1,1,16,17],[1186,1,1,17,18]]]],[23178,23248,23833,23936,23938,23940,24166,24197,24759,25102,25382,25449,25748,25750,26151,28724,30801,31041]]],["+",[3,3,[[39,3,3,0,3,[[949,1,1,0,1],[951,2,2,1,3]]]],[23833,23938,23940]]],["above",[3,2,[[42,2,1,0,1,[[999,2,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]]],[26151,28724]]],["on",[4,4,[[39,2,2,0,2,[[933,1,1,0,1],[949,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[65,1,1,3,4,[[1172,1,1,3,4]]]],[23248,23833,25382,30801]]],["over",[6,6,[[39,2,2,0,2,[[930,1,1,0,1],[955,1,1,1,2]]],[41,4,4,2,6,[[976,1,1,2,3],[983,1,1,3,4],[991,2,2,4,6]]]],[23178,24166,25102,25449,25748,25750]]],["than",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24759]]],["upon",[3,3,[[39,2,2,0,2,[[951,1,1,0,1],[956,1,1,1,2]]],[65,1,1,2,3,[[1186,1,1,2,3]]]],[23936,24197,31041]]]]},{"k":"G1884","v":[["*",[3,2,[[53,3,2,0,2,[[1123,3,2,0,2]]]],[29773,29779]]],["relieve",[2,1,[[53,2,1,0,1,[[1123,2,1,0,1]]]],[29779]]],["relieved",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29773]]]]},{"k":"G1885","v":[["province",[2,2,[[43,2,2,0,2,[[1040,1,1,0,1],[1042,1,1,1,2]]]],[27768,27797]]]]},{"k":"G1886","v":[["habitation",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26943]]]]},{"k":"G1887","v":[["*",[17,17,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[42,5,5,2,7,[[997,3,3,2,5],[1002,1,1,5,6],[1008,1,1,6,7]]],[43,10,10,7,17,[[1027,3,3,7,10],[1031,1,1,10,11],[1037,1,1,11,12],[1038,1,1,12,13],[1039,1,1,13,14],[1040,1,1,14,15],[1042,2,2,15,17]]]],[24191,24652,26073,26079,26087,26279,26592,27268,27282,27283,27434,27633,27672,27734,27766,27802,27819]]],["after",[2,2,[[42,1,1,0,1,[[997,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]]],[26079,27283]]],["day",[5,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,2,2,1,3,[[997,1,1,1,2],[1008,1,1,2,3]]],[43,2,2,3,5,[[1031,1,1,3,4],[1042,1,1,4,5]]]],[24191,26073,26592,27434,27802]]],["following",[2,2,[[42,2,2,0,2,[[997,1,1,0,1],[1002,1,1,1,2]]]],[26087,26279]]],["morrow",[7,7,[[40,1,1,0,1,[[967,1,1,0,1]]],[43,6,6,1,7,[[1027,2,2,1,3],[1037,1,1,3,4],[1039,1,1,4,5],[1040,1,1,5,6],[1042,1,1,6,7]]]],[24652,27268,27282,27633,27734,27766,27819]]],["next",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27672]]]]},{"k":"G1888","v":[["act",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26385]]]]},{"k":"G1889","v":[["Epaphras",[3,3,[[50,2,2,0,2,[[1107,1,1,0,1],[1110,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]]],[29472,29554,29961]]]]},{"k":"G1890","v":[["out",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30685]]]]},{"k":"G1891","v":[["Epaphroditus",[2,2,[[49,2,2,0,2,[[1104,1,1,0,1],[1106,1,1,1,2]]]],[29416,29460]]]]},{"k":"G1892","v":[["*",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1031,1,1,1,2]]]],[27412,27416]]],["raised",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27412]]],["up",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27416]]]]},{"k":"G1893","v":[["*",[27,26,[[39,2,2,0,2,[[946,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[41,2,2,3,5,[[973,1,1,3,4],[979,1,1,4,5]]],[42,2,2,5,7,[[1009,1,1,5,6],[1015,1,1,6,7]]],[44,4,3,7,10,[[1048,1,1,7,8],[1056,3,2,8,10]]],[45,5,5,10,15,[[1066,1,1,10,11],[1068,1,1,11,12],[1075,2,2,12,14],[1076,1,1,14,15]]],[46,2,2,15,17,[[1088,1,1,15,16],[1090,1,1,16,17]]],[57,9,9,17,26,[[1134,1,1,17,18],[1136,1,1,18,19],[1137,2,2,19,21],[1138,1,1,21,22],[1141,2,2,22,24],[1142,1,1,24,25],[1143,1,1,25,26]]]],[23759,24135,24868,24927,25196,26659,26856,27997,28215,28231,28464,28501,28690,28694,28747,29007,29046,29991,30020,30032,30041,30057,30122,30131,30135,30183]]],["+",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28501]]],["Else",[2,2,[[45,2,2,0,2,[[1075,1,1,0,1],[1076,1,1,1,2]]]],[28694,28747]]],["Forasmuch",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29991]]],["Seeing",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30020]]],["Since",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29046]]],["as",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28690]]],["because",[7,7,[[39,2,2,0,2,[[946,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[42,2,2,3,5,[[1009,1,1,3,4],[1015,1,1,4,5]]],[57,2,2,5,7,[[1138,1,1,5,6],[1143,1,1,6,7]]]],[23759,24135,24868,26659,26856,30057,30183]]],["for",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28464]]],["otherwise",[4,3,[[44,3,2,0,2,[[1056,3,2,0,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[28215,28231,30122]]],["seeing",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[57,1,1,1,2,[[1137,1,1,1,2]]]],[24927,30041]]],["that",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[57,1,1,1,2,[[1137,1,1,1,2]]]],[29007,30032]]],["then",[3,3,[[44,1,1,0,1,[[1048,1,1,0,1]]],[57,2,2,1,3,[[1141,1,1,1,2],[1142,1,1,2,3]]]],[27997,30131,30135]]],["when",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25196]]]]},{"k":"G1894","v":[["*",[10,10,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[43,3,3,2,5,[[1030,1,1,2,3],[1031,1,1,3,4],[1032,1,1,4,5]]],[45,4,4,5,9,[[1062,2,2,5,7],[1075,1,1,7,8],[1076,1,1,8,9]]],[49,1,1,9,10,[[1104,1,1,9,10]]]],[23872,25411,27408,27426,27466,28384,28385,28694,28739,29417]]],["For",[3,3,[[41,1,1,0,1,[[983,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[25411,28385,29417]]],["as",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27466]]],["because",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[43,1,1,1,2,[[1031,1,1,1,2]]]],[23872,27426]]],["seeing",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[27408,28694]]],["since",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28739]]],["that",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28384]]]]},{"k":"G1895","v":[["Forasmuch",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24894]]]]},{"k":"G1896","v":[["*",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]]],[24918,27051]]],["+",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27051]]],["on",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24918]]]]},{"k":"G1897","v":[["Seeing",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28021]]]]},{"k":"G1898","v":[["in",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30083]]]]},{"k":"G1899","v":[["*",[16,16,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[42,1,1,2,3,[[1007,1,1,2,3]]],[45,5,5,3,8,[[1073,1,1,3,4],[1076,4,4,4,8]]],[47,3,3,8,11,[[1091,2,2,8,10],[1092,1,1,10,11]]],[51,1,1,11,12,[[1114,1,1,11,12]]],[57,2,2,12,14,[[1139,2,2,12,14]]],[58,2,2,14,16,[[1148,1,1,14,15],[1149,1,1,15,16]]]],[24468,25627,26530,28662,28724,28725,28741,28764,29075,29078,29082,29620,30066,30091,30336,30351]]],["Afterwards",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29078]]],["Then",[6,6,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[42,1,1,2,3,[[1007,1,1,2,3]]],[47,2,2,3,5,[[1091,1,1,3,4],[1092,1,1,4,5]]],[51,1,1,5,6,[[1114,1,1,5,6]]]],[24468,25627,26530,29075,29082,29620]]],["afterward",[2,2,[[45,2,2,0,2,[[1076,2,2,0,2]]]],[28741,28764]]],["that",[4,4,[[45,3,3,0,3,[[1073,1,1,0,1],[1076,2,2,1,3]]],[57,1,1,3,4,[[1139,1,1,3,4]]]],[28662,28724,28725,30066]]],["then",[3,3,[[57,1,1,0,1,[[1139,1,1,0,1]]],[58,2,2,1,3,[[1148,1,1,1,2],[1149,1,1,2,3]]]],[30091,30336,30351]]]]},{"k":"G1900","v":[["beyond",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27159]]]]},{"k":"G1901","v":[["forth",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29434]]]]},{"k":"G1902","v":[["upon",[2,2,[[46,2,2,0,2,[[1082,2,2,0,2]]]],[28879,28881]]]]},{"k":"G1903","v":[["coat",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26905]]]]},{"k":"G1904","v":[["*",[10,10,[[41,4,4,0,4,[[973,1,1,0,1],[983,1,1,1,2],[993,2,2,2,4]]],[43,4,4,4,8,[[1018,1,1,4,5],[1025,1,1,5,6],[1030,1,1,6,7],[1031,1,1,7,8]]],[48,1,1,8,9,[[1098,1,1,8,9]]],[58,1,1,9,10,[[1150,1,1,9,10]]]],[24928,25427,25852,25861,26931,27200,27402,27433,29236,30355]]],["come",[6,6,[[41,2,2,0,2,[[973,1,1,0,1],[993,1,1,1,2]]],[43,3,3,2,5,[[1018,1,1,2,3],[1025,1,1,3,4],[1030,1,1,4,5]]],[48,1,1,5,6,[[1098,1,1,5,6]]]],[24928,25861,26931,27200,27402,29236]]],["on",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25852]]],["thither",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27433]]],["upon",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[25427,30355]]]]},{"k":"G1905","v":[["*",[60,58,[[39,8,8,0,8,[[940,1,1,0,1],[944,1,1,1,2],[945,1,1,2,3],[950,4,4,3,7],[955,1,1,7,8]]],[40,25,25,8,33,[[961,1,1,8,9],[963,2,2,9,11],[964,3,3,11,14],[965,6,6,14,20],[966,3,3,20,23],[967,1,1,23,24],[968,3,3,24,27],[969,1,1,27,28],[970,2,2,28,30],[971,3,3,30,33]]],[41,18,18,33,51,[[974,1,1,33,34],[975,2,2,34,36],[978,1,1,36,37],[980,2,2,37,39],[981,1,1,39,40],[989,1,1,40,41],[990,2,2,41,43],[992,3,3,43,46],[993,1,1,46,47],[994,1,1,47,48],[995,3,3,48,51]]],[42,4,2,51,53,[[1014,4,2,51,53]]],[43,3,3,53,56,[[1018,1,1,53,54],[1022,1,1,54,55],[1040,1,1,55,56]]],[44,1,1,56,57,[[1055,1,1,56,57]]],[45,1,1,57,58,[[1075,1,1,57,58]]]],[23499,23673,23710,23895,23907,23913,23918,24140,24373,24468,24480,24505,24523,24527,24549,24554,24559,24566,24570,24571,24590,24598,24605,24669,24691,24701,24707,24720,24814,24815,24828,24830,24870,25019,25035,25039,25155,25254,25275,25319,25671,25706,25728,25800,25806,25819,25833,25928,25938,25941,25944,26792,26806,26929,27086,27768,28208,28713]]],["+",[3,3,[[40,1,1,0,1,[[967,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[44,1,1,2,3,[[1055,1,1,2,3]]]],[24669,25019,28208]]],["ask",[7,7,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,2,2,1,3,[[965,1,1,1,2],[968,1,1,2,3]]],[41,2,2,3,5,[[978,1,1,3,4],[992,1,1,4,5]]],[42,1,1,5,6,[[1014,1,1,5,6]]],[45,1,1,6,7,[[1075,1,1,6,7]]]],[23918,24570,24707,25155,25819,26806,28713]]],["asked",[44,44,[[39,6,6,0,6,[[940,1,1,0,1],[945,1,1,1,2],[950,3,3,2,5],[955,1,1,5,6]]],[40,22,22,6,28,[[961,1,1,6,7],[963,2,2,7,9],[964,3,3,9,12],[965,5,5,12,17],[966,3,3,17,20],[968,2,2,20,22],[969,1,1,22,23],[970,2,2,23,25],[971,3,3,25,28]]],[41,12,12,28,40,[[975,1,1,28,29],[980,2,2,29,31],[981,1,1,31,32],[990,2,2,32,34],[992,2,2,34,36],[993,1,1,36,37],[994,1,1,37,38],[995,2,2,38,40]]],[42,1,1,40,41,[[1014,1,1,40,41]]],[43,3,3,41,44,[[1018,1,1,41,42],[1022,1,1,42,43],[1040,1,1,43,44]]]],[23499,23710,23895,23907,23913,24140,24373,24468,24480,24505,24523,24527,24549,24554,24559,24566,24571,24590,24598,24605,24691,24701,24720,24814,24815,24828,24830,24870,25035,25254,25275,25319,25706,25728,25800,25806,25833,25928,25938,25941,26792,26929,27086,27768]]],["askest",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26806]]],["demanded",[2,2,[[41,2,2,0,2,[[975,1,1,0,1],[989,1,1,1,2]]]],[25039,25671]]],["desired",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23673]]],["me",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26806]]],["questioned",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25944]]]]},{"k":"G1906","v":[["answer",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30445]]]]},{"k":"G1907","v":[["*",[5,5,[[41,1,1,0,1,[[986,1,1,0,1]]],[43,2,2,1,3,[[1020,1,1,1,2],[1036,1,1,2,3]]],[49,1,1,3,4,[[1104,1,1,3,4]]],[53,1,1,4,5,[[1122,1,1,4,5]]]],[25560,27001,27607,29407,29763]]],["forth",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29407]]],["heed",[2,2,[[43,1,1,0,1,[[1020,1,1,0,1]]],[53,1,1,1,2,[[1122,1,1,1,2]]]],[27001,29763]]],["marked",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25560]]],["stayed",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27607]]]]},{"k":"G1908","v":[["*",[3,3,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[23278,25174,30440]]],["accuse",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30440]]],["use",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]]],[23278,25174]]]]},{"k":"G1909","v":[["*",[885,780,[[39,126,111,0,111,[[929,1,1,0,1],[930,1,1,1,2],[931,3,3,2,5],[932,4,3,5,8],[933,5,4,8,12],[934,3,3,12,15],[935,4,4,15,19],[937,6,6,19,25],[938,6,6,25,31],[939,1,1,31,32],[940,4,4,32,36],[941,8,8,36,44],[942,8,8,44,52],[943,2,2,52,54],[944,3,2,54,56],[945,1,1,56,57],[946,11,9,57,66],[947,3,2,66,68],[949,5,3,68,71],[950,3,3,71,74],[951,6,5,74,79],[952,11,10,79,89],[953,9,7,89,96],[954,7,6,96,102],[955,9,7,102,109],[956,2,2,109,111]]],[40,78,74,111,185,[[957,2,2,111,113],[958,5,5,113,118],[959,4,4,118,122],[960,10,8,122,130],[961,2,2,130,132],[962,10,10,132,142],[963,1,1,142,143],[964,4,4,143,147],[965,7,7,147,154],[966,5,4,154,158],[967,5,5,158,163],[968,4,4,163,167],[969,8,7,167,174],[970,4,4,174,178],[971,5,5,178,183],[972,2,2,183,185]]],[41,163,141,185,326,[[973,10,10,185,195],[974,7,7,195,202],[975,4,3,202,205],[976,12,10,205,215],[977,10,10,215,225],[978,6,5,225,230],[979,2,2,230,232],[980,5,5,232,237],[981,8,7,237,244],[982,7,6,244,250],[983,7,6,250,256],[984,15,9,256,265],[985,2,2,265,267],[986,1,1,267,268],[987,6,5,268,273],[988,1,1,273,274],[989,5,5,274,279],[990,4,4,279,283],[991,10,10,283,293],[992,6,5,293,298],[993,11,8,298,306],[994,9,7,306,313],[995,9,7,313,320],[996,6,6,320,326]]],[42,34,33,326,359,[[997,4,3,326,329],[999,1,1,329,330],[1000,2,2,330,332],[1001,1,1,332,333],[1002,4,4,333,337],[1003,2,2,337,339],[1004,2,2,339,341],[1005,1,1,341,342],[1007,1,1,342,343],[1008,3,3,343,346],[1009,2,2,346,348],[1013,1,1,348,349],[1014,1,1,349,350],[1015,5,5,350,355],[1016,1,1,355,356],[1017,3,3,356,359]]],[43,162,147,359,506,[[1018,4,4,359,363],[1019,10,9,363,372],[1020,7,5,372,377],[1021,12,10,377,387],[1022,11,9,387,396],[1023,1,1,396,397],[1024,6,6,397,403],[1025,10,10,403,413],[1026,7,7,413,420],[1027,11,10,420,430],[1028,8,6,430,436],[1029,4,4,436,440],[1030,6,5,440,445],[1031,4,4,445,449],[1032,5,5,449,454],[1033,3,3,454,457],[1034,4,4,457,461],[1035,2,2,461,463],[1036,8,8,463,471],[1037,6,5,471,476],[1038,7,7,476,483],[1039,1,1,483,484],[1040,1,1,484,485],[1041,4,4,485,489],[1042,7,6,489,495],[1043,5,5,495,500],[1044,5,3,500,503],[1045,3,3,503,506]]],[44,32,28,506,534,[[1046,2,2,506,508],[1047,2,2,508,510],[1048,1,1,510,511],[1049,5,4,511,515],[1050,4,3,515,518],[1051,1,1,518,519],[1052,1,1,519,520],[1053,1,1,520,521],[1054,4,4,521,525],[1055,3,2,525,527],[1056,3,2,527,529],[1057,1,1,529,530],[1060,3,3,530,533],[1061,1,1,533,534]]],[45,19,17,534,551,[[1062,1,1,534,535],[1063,1,1,535,536],[1064,1,1,536,537],[1067,3,2,537,539],[1068,2,2,539,541],[1069,2,2,541,543],[1070,2,1,543,544],[1072,2,2,544,546],[1074,1,1,546,547],[1075,3,3,547,550],[1077,1,1,550,551]]],[46,22,19,551,570,[[1078,4,3,551,554],[1079,1,1,554,555],[1080,3,3,555,558],[1082,1,1,558,559],[1084,5,4,559,563],[1086,4,3,563,566],[1087,1,1,566,567],[1089,2,2,567,569],[1090,1,1,569,570]]],[47,7,5,570,575,[[1093,3,2,570,572],[1094,1,1,572,573],[1095,1,1,573,574],[1096,2,1,574,575]]],[48,10,10,575,585,[[1097,2,2,575,577],[1098,3,3,577,580],[1100,2,2,580,582],[1101,1,1,582,583],[1102,2,2,583,585]]],[49,8,8,585,593,[[1103,2,2,585,587],[1104,2,2,587,589],[1105,3,3,589,592],[1106,1,1,592,593]]],[50,6,6,593,599,[[1107,2,2,593,595],[1109,4,4,595,599]]],[51,6,5,599,604,[[1111,1,1,599,600],[1112,1,1,600,601],[1113,3,2,601,603],[1114,1,1,603,604]]],[52,4,4,604,608,[[1116,1,1,604,605],[1117,2,2,605,607],[1118,1,1,607,608]]],[53,7,7,608,615,[[1119,2,2,608,610],[1122,1,1,610,611],[1123,2,2,611,613],[1124,2,2,613,615]]],[54,5,5,615,620,[[1126,2,2,615,617],[1127,2,2,617,619],[1128,1,1,619,620]]],[55,2,2,620,622,[[1129,1,1,620,621],[1131,1,1,621,622]]],[56,2,2,622,624,[[1132,2,2,622,624]]],[57,29,26,624,650,[[1133,1,1,624,625],[1134,2,2,625,627],[1135,1,1,627,628],[1138,3,2,628,630],[1139,2,2,630,632],[1140,6,5,632,637],[1141,4,4,637,641],[1142,4,3,641,644],[1143,4,4,644,648],[1144,2,2,648,650]]],[58,8,8,650,658,[[1147,3,3,650,653],[1150,5,5,653,658]]],[59,10,9,658,667,[[1151,2,2,658,660],[1152,3,3,660,663],[1153,3,2,663,665],[1154,1,1,665,666],[1155,1,1,666,667]]],[60,3,3,667,670,[[1156,1,1,667,668],[1157,1,1,668,669],[1158,1,1,669,670]]],[61,1,1,670,671,[[1161,1,1,670,671]]],[63,1,1,671,672,[[1165,1,1,671,672]]],[65,140,108,672,780,[[1167,3,3,672,675],[1168,3,3,675,678],[1169,6,4,678,682],[1170,5,4,682,686],[1171,7,5,686,691],[1172,7,6,691,697],[1173,11,7,697,704],[1174,5,3,704,707],[1175,5,5,707,712],[1176,8,5,712,717],[1177,10,5,717,722],[1178,3,3,722,725],[1179,9,5,725,730],[1180,11,7,730,737],[1181,1,1,737,738],[1182,8,8,738,746],[1183,8,7,746,753],[1184,6,6,753,759],[1185,9,8,759,767],[1186,7,5,767,772],[1187,4,4,772,776],[1188,4,4,776,780]]]],[23155,23191,23199,23205,23208,23213,23214,23215,23249,23257,23273,23279,23292,23301,23309,23340,23341,23342,23344,23381,23385,23388,23394,23395,23397,23430,23435,23438,23444,23446,23451,23488,23507,23515,23517,23538,23541,23544,23546,23547,23553,23559,23562,23587,23605,23608,23611,23616,23622,23623,23625,23626,23665,23668,23690,23691,23706,23732,23733,23739,23740,23743,23745,23746,23753,23756,23771,23790,23831,23845,23870,23881,23905,23906,23920,23922,23927,23953,23954,23959,23960,23962,23964,23973,23974,23987,23990,24002,24004,24028,24029,24030,24031,24039,24048,24053,24061,24066,24093,24104,24109,24118,24148,24154,24156,24158,24164,24172,24174,24209,24213,24225,24237,24264,24270,24274,24281,24286,24293,24312,24313,24314,24324,24328,24339,24343,24344,24349,24354,24361,24385,24397,24432,24435,24441,24446,24454,24455,24456,24459,24460,24462,24493,24502,24504,24506,24525,24541,24550,24551,24558,24560,24575,24577,24599,24604,24610,24612,24642,24644,24647,24653,24658,24687,24690,24699,24705,24719,24723,24725,24726,24729,24732,24746,24789,24800,24802,24805,24827,24848,24850,24859,24872,24875,24891,24905,24907,24909,24910,24922,24926,24928,24940,24952,24958,24981,24987,24993,24998,25006,25013,25020,25027,25045,25047,25067,25072,25074,25081,25085,25088,25090,25092,25095,25099,25112,25116,25118,25119,25125,25126,25131,25132,25134,25143,25163,25175,25181,25194,25195,25208,25239,25251,25253,25258,25261,25272,25302,25306,25339,25344,25349,25350,25363,25369,25372,25374,25382,25397,25398,25407,25422,25423,25425,25427,25438,25462,25470,25473,25484,25501,25503,25511,25512,25517,25522,25535,25584,25592,25593,25595,25598,25608,25646,25655,25667,25682,25685,25686,25692,25695,25696,25697,25735,25736,25745,25754,25758,25761,25766,25772,25774,25775,25797,25798,25800,25805,25816,25832,25834,25836,25838,25849,25851,25860,25861,25885,25894,25904,25908,25916,25917,25923,25936,25963,25965,25968,25973,25979,25983,25992,26003,26013,26015,26038,26040,26076,26077,26095,26156,26162,26183,26212,26259,26273,26276,26278,26358,26372,26388,26440,26455,26561,26594,26595,26596,26648,26655,26763,26789,26838,26844,26849,26856,26858,26874,26899,26909,26918,26931,26938,26944,26949,26950,26952,26966,26967,26968,26975,26979,26987,26993,26997,27006,27007,27008,27012,27027,27031,27039,27040,27043,27044,27048,27049,27051,27055,27064,27068,27070,27074,27077,27087,27089,27094,27099,27104,27126,27127,27139,27143,27170,27173,27177,27178,27192,27193,27200,27202,27203,27204,27208,27212,27220,27227,27233,27237,27249,27251,27258,27268,27269,27270,27275,27276,27284,27293,27298,27303,27304,27318,27322,27324,27326,27328,27335,27347,27349,27357,27358,27373,27374,27402,27412,27413,27417,27424,27427,27429,27452,27456,27459,27461,27473,27501,27502,27514,27529,27537,27542,27549,27563,27569,27591,27593,27595,27597,27598,27601,27602,27619,27635,27637,27639,27663,27664,27669,27687,27688,27691,27696,27699,27704,27723,27764,27773,27777,27788,27789,27802,27805,27806,27808,27813,27822,27825,27829,27839,27841,27843,27875,27898,27899,27902,27905,27913,27939,27948,27964,27971,28013,28027,28031,28040,28046,28049,28059,28061,28089,28092,28136,28160,28178,28183,28188,28199,28207,28222,28231,28265,28306,28315,28323,28355,28367,28403,28422,28468,28473,28523,28526,28532,28538,28550,28610,28620,28671,28694,28701,28703,28793,28804,28809,28823,28827,28854,28855,28856,28881,28920,28923,28929,28930,28962,28970,28971,28973,29031,29043,29044,29115,29118,29140,29175,29204,29216,29222,29236,29239,29249,29278,29298,29310,29340,29353,29364,29366,29408,29418,29430,29433,29435,29452,29481,29485,29519,29522,29523,29531,29562,29586,29597,29599,29610,29659,29662,29665,29682,29712,29714,29757,29768,29782,29801,29805,29841,29843,29862,29866,29874,29894,29929,29942,29945,29965,29984,29990,30001,30045,30051,30075,30077,30093,30096,30098,30100,30102,30115,30120,30122,30131,30149,30154,30161,30176,30185,30193,30202,30222,30237,30296,30300,30314,30355,30359,30361,30368,30371,30387,30394,30405,30423,30424,30429,30436,30460,30472,30492,30522,30525,30582,30668,30704,30714,30717,30734,30741,30743,30749,30756,30758,30766,30770,30772,30777,30778,30780,30782,30786,30789,30792,30795,30797,30798,30801,30803,30809,30811,30813,30820,30821,30825,30826,30827,30830,30837,30840,30844,30847,30851,30854,30857,30862,30863,30866,30869,30872,30878,30880,30882,30883,30888,30892,30894,30908,30909,30915,30916,30922,30924,30927,30932,30935,30940,30941,30942,30944,30948,30956,30962,30963,30964,30966,30968,30972,30975,30976,30978,30980,30983,30984,30991,30993,31002,31004,31010,31012,31013,31017,31021,31028,31029,31031,31033,31035,31036,31038,31039,31042,31044,31047,31049,31058,31063,31065,31069,31084,31094,31096,31098]]],["+",[55,54,[[39,7,7,0,7,[[937,1,1,0,1],[950,1,1,1,2],[952,1,1,2,3],[953,2,2,3,5],[954,1,1,5,6],[956,1,1,6,7]]],[40,3,3,7,10,[[958,1,1,7,8],[967,1,1,8,9],[969,1,1,9,10]]],[41,12,12,10,22,[[975,1,1,10,11],[976,1,1,11,12],[977,1,1,12,13],[982,1,1,13,14],[983,1,1,14,15],[989,1,1,15,16],[990,1,1,16,17],[991,2,2,17,19],[992,1,1,19,20],[993,1,1,20,21],[994,1,1,21,22]]],[42,1,1,22,23,[[1008,1,1,22,23]]],[43,13,13,23,36,[[1018,1,1,23,24],[1019,1,1,24,25],[1020,1,1,25,26],[1021,3,3,26,29],[1025,1,1,29,30],[1026,1,1,30,31],[1029,1,1,31,32],[1036,1,1,32,33],[1037,1,1,33,34],[1041,1,1,34,35],[1045,1,1,35,36]]],[44,4,4,36,40,[[1052,1,1,36,37],[1056,2,2,37,39],[1061,1,1,39,40]]],[45,1,1,40,41,[[1068,1,1,40,41]]],[46,3,2,41,43,[[1082,1,1,41,42],[1086,2,1,42,43]]],[49,1,1,43,44,[[1106,1,1,43,44]]],[54,2,2,44,46,[[1127,2,2,44,46]]],[57,2,2,46,48,[[1141,1,1,46,47],[1143,1,1,47,48]]],[58,1,1,48,49,[[1147,1,1,48,49]]],[60,2,2,49,51,[[1156,1,1,49,50],[1157,1,1,50,51]]],[63,1,1,51,52,[[1165,1,1,51,52]]],[65,2,2,52,54,[[1172,1,1,52,53],[1187,1,1,53,54]]]],[23394,23906,23959,24048,24053,24104,24209,24264,24642,24719,25027,25092,25132,25369,25427,25686,25692,25761,25775,25800,25832,25923,26594,26938,26993,26997,27039,27048,27051,27203,27249,27357,27619,27637,27773,27905,28092,28222,28231,28355,28526,28881,28962,29452,29862,29866,30122,30202,30300,30492,30522,30668,30797,31069]]],["Above",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29353]]],["For",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29366]]],["In",[2,2,[[46,1,1,0,1,[[1090,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[29044,29894]]],["Of",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27293]]],["Upon",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26077]]],["about",[5,5,[[39,2,2,0,2,[[929,1,1,0,1],[946,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[42,1,1,3,4,[[1016,1,1,3,4]]],[43,1,1,4,5,[[1028,1,1,4,5]]]],[23155,23733,24805,26874,27326]]],["above",[4,4,[[41,1,1,0,1,[[975,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]],[52,1,1,3,4,[[1117,1,1,3,4]]]],[25045,29278,29531,29665]]],["after",[3,3,[[41,2,2,0,2,[[973,1,1,0,1],[987,1,1,1,2]]],[44,1,1,2,3,[[1050,1,1,2,3]]]],[24952,25592,28061]]],["against",[39,29,[[39,5,4,0,4,[[938,1,1,0,1],[940,1,1,1,2],[952,2,1,2,3],[954,1,1,3,4]]],[40,8,7,4,11,[[959,3,3,4,7],[966,1,1,7,8],[969,3,2,8,10],[970,1,1,10,11]]],[41,17,9,11,20,[[981,1,1,11,12],[983,3,2,12,14],[984,8,2,14,16],[986,1,1,16,17],[993,2,1,17,18],[994,2,2,18,20]]],[42,1,1,20,21,[[1009,1,1,20,21]]],[43,4,4,21,25,[[1021,1,1,21,22],[1025,1,1,22,23],[1030,2,2,23,25]]],[44,2,2,25,27,[[1046,1,1,25,26],[1047,1,1,26,27]]],[46,1,1,27,28,[[1087,1,1,27,28]]],[59,1,1,28,29,[[1153,1,1,28,29]]]],[23438,23515,23964,24109,24312,24313,24314,24599,24725,24729,24802,25306,25422,25423,25511,25512,25584,25836,25916,25917,26648,27049,27177,27412,27413,27948,27964,28973,30436]]],["among",[4,4,[[39,1,1,0,1,[[941,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]],[65,1,1,3,4,[[1173,1,1,3,4]]]],[23546,26944,29659,30825]]],["at",[42,40,[[39,4,4,0,4,[[935,1,1,0,1],[937,1,1,1,2],[950,1,1,2,3],[952,1,1,3,4]]],[40,7,7,4,11,[[957,1,1,4,5],[958,1,1,5,6],[966,2,2,6,8],[967,1,1,8,9],[968,1,1,9,10],[969,1,1,10,11]]],[41,16,15,11,26,[[973,2,2,11,13],[974,2,2,13,15],[976,2,2,15,17],[977,3,3,17,20],[981,2,1,20,21],[992,2,2,21,23],[994,2,2,23,25],[996,1,1,25,26]]],[42,4,4,26,30,[[1002,1,1,26,27],[1004,2,2,27,29],[1017,1,1,29,30]]],[43,7,6,30,36,[[1020,3,2,30,32],[1022,1,1,32,33],[1027,1,1,33,34],[1030,1,1,34,35],[1042,1,1,35,36]]],[45,1,1,36,37,[[1075,1,1,36,37]]],[65,3,3,37,40,[[1169,1,1,37,38],[1174,1,1,38,39],[1187,1,1,39,40]]]],[23344,23388,23905,23990,24237,24274,24610,24612,24658,24690,24746,24907,24922,25006,25020,25085,25095,25112,25116,25134,25344,25805,25816,25894,25904,26013,26278,26388,26440,26899,26997,27006,27068,27284,27374,27806,28694,30766,30830,31065]]],["before",[18,16,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]],[43,8,7,3,10,[[1027,1,1,3,4],[1040,1,1,4,5],[1041,2,2,5,7],[1042,3,2,7,9],[1043,1,1,9,10]]],[45,3,2,10,12,[[1067,3,2,10,12]]],[46,1,1,12,13,[[1084,1,1,12,13]]],[53,2,2,13,15,[[1123,1,1,13,14],[1124,1,1,14,15]]],[65,1,1,15,16,[[1176,1,1,15,16]]]],[23435,24726,25838,27276,27764,27788,27789,27805,27822,27825,28468,28473,28930,29782,29801,30872]]],["beside",[3,3,[[39,2,2,0,2,[[953,2,2,0,2]]],[41,1,1,2,3,[[988,1,1,2,3]]]],[24028,24030,25646]]],["by",[8,5,[[39,2,1,0,1,[[932,2,1,0,1]]],[41,2,1,1,2,[[976,2,1,1,2]]],[42,1,1,2,3,[[1001,1,1,2,3]]],[44,2,1,3,4,[[1055,2,1,3,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]]],[23213,25067,26212,28207,29430]]],["done",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27275]]],["for",[26,24,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[41,6,4,2,6,[[974,1,1,2,3],[979,1,1,3,4],[985,1,1,4,5],[995,3,1,5,6]]],[42,1,1,6,7,[[1015,1,1,6,7]]],[43,5,5,7,12,[[1021,1,1,7,8],[1032,2,2,8,10],[1037,1,1,10,11],[1043,1,1,11,12]]],[44,1,1,12,13,[[1050,1,1,12,13]]],[45,1,1,13,14,[[1062,1,1,13,14]]],[46,2,2,14,16,[[1084,1,1,14,15],[1086,1,1,15,16]]],[49,2,2,16,18,[[1105,2,2,16,18]]],[51,1,1,18,19,[[1113,1,1,18,19]]],[57,1,1,19,20,[[1144,1,1,19,20]]],[58,2,2,20,22,[[1150,2,2,20,22]]],[59,1,1,22,23,[[1151,1,1,22,23]]],[65,1,1,23,24,[[1184,1,1,23,24]]]],[23771,24293,24993,25239,25535,25963,26849,27043,27456,27473,27664,27829,28059,28367,28929,28971,29433,29435,29599,30222,30355,30361,30387,31002]]],["in",[120,115,[[39,17,17,0,17,[[930,1,1,0,1],[932,1,1,1,2],[934,1,1,2,3],[941,1,1,3,4],[942,2,2,4,6],[946,2,2,6,8],[947,1,1,8,9],[949,1,1,9,10],[951,1,1,10,11],[952,2,2,11,13],[954,1,1,13,14],[955,2,2,14,16],[956,1,1,16,17]]],[40,17,16,17,33,[[958,1,1,17,18],[960,3,2,18,20],[961,1,1,20,21],[962,3,3,21,24],[964,1,1,24,25],[965,2,2,25,27],[966,1,1,27,28],[967,1,1,28,29],[968,2,2,29,31],[969,1,1,31,32],[971,1,1,32,33]]],[41,12,12,33,45,[[973,1,1,33,34],[976,1,1,34,35],[977,1,1,35,36],[978,1,1,36,37],[981,2,2,37,39],[983,1,1,39,40],[989,1,1,40,41],[990,1,1,41,42],[993,2,2,42,44],[996,1,1,44,45]]],[42,1,1,45,46,[[1015,1,1,45,46]]],[43,14,14,46,60,[[1019,4,4,46,50],[1020,1,1,50,51],[1021,2,2,51,53],[1022,2,2,53,55],[1025,1,1,55,56],[1026,1,1,56,57],[1031,1,1,57,58],[1037,1,1,58,59],[1044,1,1,59,60]]],[44,6,6,60,66,[[1046,1,1,60,61],[1049,1,1,61,62],[1050,1,1,62,63],[1051,1,1,63,64],[1053,1,1,64,65],[1060,1,1,65,66]]],[45,4,3,66,69,[[1069,1,1,66,67],[1070,2,1,67,68],[1074,1,1,68,69]]],[46,9,8,69,77,[[1078,3,2,69,71],[1079,1,1,71,72],[1080,1,1,72,73],[1084,3,3,73,76],[1086,1,1,76,77]]],[48,1,1,77,78,[[1097,1,1,77,78]]],[50,2,2,78,80,[[1107,2,2,78,80]]],[51,2,2,80,82,[[1111,1,1,80,81],[1113,1,1,81,82]]],[53,3,3,82,85,[[1122,1,1,82,83],[1123,1,1,83,84],[1124,1,1,84,85]]],[56,2,2,85,87,[[1132,2,2,85,87]]],[57,6,6,87,93,[[1133,1,1,87,88],[1134,1,1,88,89],[1140,1,1,89,90],[1141,2,2,90,92],[1142,1,1,92,93]]],[59,2,2,93,95,[[1151,1,1,93,94],[1153,1,1,94,95]]],[60,1,1,95,96,[[1158,1,1,95,96]]],[61,1,1,96,97,[[1161,1,1,96,97]]],[65,20,18,97,115,[[1167,1,1,97,98],[1168,1,1,98,99],[1171,3,3,99,102],[1173,1,1,102,103],[1175,2,2,103,105],[1177,1,1,105,106],[1179,2,1,106,107],[1180,3,2,107,109],[1183,1,1,109,110],[1184,1,1,110,111],[1186,2,2,111,113],[1188,2,2,113,115]]]],[23191,23215,23292,23553,23605,23608,23732,23743,23790,23845,23920,23962,23987,24118,24158,24172,24213,24286,24354,24361,24397,24432,24435,24462,24504,24575,24577,24612,24644,24687,24699,24723,24827,24940,25074,25125,25163,25349,25350,25407,25685,25697,25834,25849,26038,26838,26950,26968,26975,26987,27007,27039,27040,27087,27099,27204,27258,27417,27635,27875,27939,28040,28049,28089,28136,28315,28532,28550,28671,28804,28809,28827,28855,28920,28923,28929,28970,29222,29481,29485,29562,29597,29757,29768,29805,29942,29945,29965,29990,30102,30115,30131,30149,30394,30429,30525,30582,30717,30734,30780,30782,30792,30813,30844,30854,30880,30924,30927,30935,30983,31010,31039,31042,31084,31096]]],["into",[18,18,[[39,6,6,0,6,[[941,3,3,0,3],[946,1,1,3,4],[950,1,1,4,5],[952,1,1,5,6]]],[40,2,2,6,8,[[960,1,1,6,7],[962,1,1,7,8]]],[41,2,2,8,10,[[991,2,2,8,10]]],[43,3,3,10,13,[[1024,1,1,10,11],[1026,1,1,11,12],[1027,1,1,12,13]]],[45,3,3,13,16,[[1063,1,1,13,14],[1072,1,1,14,15],[1075,1,1,15,16]]],[57,1,1,16,17,[[1142,1,1,16,17]]],[65,1,1,17,18,[[1177,1,1,17,18]]]],[23547,23559,23562,23739,23881,23973,24349,24460,25735,25754,27139,27227,27269,28403,28620,28701,30149,30883]]],["of",[21,19,[[39,2,1,0,1,[[946,2,1,0,1]]],[40,3,3,1,4,[[962,1,1,1,2],[965,2,2,2,4]]],[41,1,1,4,5,[[976,1,1,4,5]]],[42,1,1,5,6,[[1008,1,1,5,6]]],[43,5,5,6,11,[[1021,2,2,6,8],[1028,1,1,8,9],[1036,2,2,9,11]]],[45,1,1,11,12,[[1077,1,1,11,12]]],[46,1,1,12,13,[[1089,1,1,12,13]]],[47,2,1,13,14,[[1093,2,1,13,14]]],[57,3,3,14,17,[[1139,1,1,14,15],[1140,1,1,15,16],[1143,1,1,16,17]]],[65,2,2,17,19,[[1167,1,1,17,18],[1174,1,1,18,19]]]],[23740,24459,24550,24551,25088,26596,27031,27049,27335,27593,27595,28793,29043,29118,30077,30093,30176,30704,30840]]],["on",[195,179,[[39,34,29,0,29,[[932,1,1,0,1],[933,4,3,1,4],[937,2,2,4,6],[938,2,2,6,8],[941,1,1,8,9],[942,5,5,9,14],[943,2,2,14,16],[944,2,1,16,17],[945,1,1,17,18],[946,3,2,18,20],[949,2,1,20,21],[951,1,1,21,22],[952,1,1,22,23],[954,4,4,23,27],[955,3,2,27,29]]],[40,18,18,29,47,[[958,2,2,29,31],[960,6,6,31,37],[962,1,1,37,38],[964,2,2,38,40],[965,3,3,40,43],[969,1,1,43,44],[970,2,2,44,46],[972,1,1,46,47]]],[41,25,24,47,71,[[973,1,1,47,48],[974,1,1,48,49],[976,1,1,49,50],[977,1,1,50,51],[978,2,2,51,53],[979,1,1,53,54],[980,3,3,54,57],[982,2,2,57,59],[983,1,1,59,60],[987,2,2,60,62],[989,1,1,62,63],[990,1,1,63,64],[992,2,2,64,66],[993,3,2,66,68],[994,2,2,68,70],[995,1,1,70,71]]],[42,12,12,71,83,[[997,1,1,71,72],[999,1,1,72,73],[1000,1,1,73,74],[1002,2,2,74,76],[1003,2,2,76,78],[1008,1,1,78,79],[1009,1,1,79,80],[1013,1,1,80,81],[1015,1,1,81,82],[1017,1,1,82,83]]],[43,36,33,83,116,[[1019,3,2,83,85],[1021,2,2,85,87],[1022,4,4,87,91],[1024,1,1,91,92],[1025,1,1,92,93],[1026,1,1,93,94],[1027,3,3,94,97],[1028,3,2,97,99],[1030,1,1,99,100],[1031,1,1,100,101],[1033,1,1,101,102],[1034,1,1,102,103],[1036,3,3,103,106],[1037,1,1,106,107],[1038,4,4,107,111],[1039,1,1,111,112],[1042,2,2,112,114],[1044,2,1,114,115],[1045,1,1,115,116]]],[44,7,7,116,123,[[1049,2,2,116,118],[1054,2,2,118,120],[1055,1,1,120,121],[1057,1,1,121,122],[1060,1,1,122,123]]],[45,2,2,123,125,[[1072,1,1,123,124],[1075,1,1,124,125]]],[47,2,2,125,127,[[1093,1,1,125,126],[1096,1,1,126,127]]],[48,2,2,127,129,[[1097,1,1,127,128],[1102,1,1,128,129]]],[50,2,2,129,131,[[1109,2,2,129,131]]],[53,2,2,131,133,[[1119,2,2,131,133]]],[55,1,1,133,134,[[1131,1,1,133,134]]],[57,3,3,134,137,[[1140,1,1,134,135],[1143,1,1,135,136],[1144,1,1,136,137]]],[58,2,2,137,139,[[1150,2,2,137,139]]],[59,2,2,139,141,[[1152,2,2,139,141]]],[65,45,38,141,179,[[1169,1,1,141,142],[1170,4,4,142,146],[1171,2,2,146,148],[1172,5,4,148,152],[1173,7,4,152,156],[1175,2,2,156,158],[1176,1,1,158,159],[1177,2,2,159,161],[1179,2,1,161,162],[1180,6,5,162,167],[1181,1,1,167,168],[1183,2,2,168,170],[1184,1,1,170,171],[1185,6,5,171,176],[1186,3,3,176,179]]]],[23214,23249,23273,23279,23381,23385,23446,23451,23541,23616,23622,23623,23625,23626,23665,23668,23691,23706,23745,23746,23870,23922,23974,24061,24066,24093,24104,24148,24154,24270,24281,24324,24328,24339,24343,24344,24361,24454,24502,24506,24541,24558,24560,24732,24789,24800,24891,24958,24987,25072,25119,25175,25194,25208,25253,25258,25261,25397,25398,25438,25593,25608,25667,25696,25797,25798,25838,25861,25885,25894,25965,26077,26156,26162,26259,26276,26358,26372,26595,26655,26763,26844,26918,26967,26979,27027,27044,27064,27074,27077,27089,27170,27193,27233,27298,27303,27304,27322,27324,27373,27424,27514,27549,27591,27601,27602,27663,27669,27687,27691,27704,27723,27802,27813,27899,27902,28027,28046,28178,28188,28199,28265,28306,28610,28703,29115,29204,29216,29340,29519,29523,29712,29714,29929,30096,30185,30237,30359,30371,30405,30423,30749,30770,30772,30777,30778,30780,30789,30795,30798,30803,30809,30811,30821,30825,30826,30847,30857,30863,30882,30888,30922,30927,30932,30940,30941,30942,30948,30983,30984,31012,31021,31029,31033,31035,31036,31044,31047,31049]]],["over",[49,46,[[39,7,5,0,5,[[952,2,2,0,2],[953,4,2,2,4],[955,1,1,4,5]]],[40,1,1,5,6,[[971,1,1,5,6]]],[41,15,14,6,20,[[973,1,1,6,7],[974,1,1,7,8],[981,1,1,8,9],[982,1,1,9,10],[984,3,3,10,13],[987,3,2,13,15],[991,3,3,15,18],[995,2,2,18,20]]],[43,6,6,20,26,[[1023,1,1,20,21],[1024,3,3,21,24],[1025,1,1,24,25],[1036,1,1,25,26]]],[44,2,2,26,28,[[1050,1,1,26,27],[1054,1,1,27,28]]],[46,1,1,28,29,[[1080,1,1,28,29]]],[51,1,1,29,30,[[1113,1,1,29,30]]],[57,3,3,30,33,[[1134,1,1,30,31],[1135,1,1,31,32],[1142,1,1,32,33]]],[58,1,1,33,34,[[1150,1,1,33,34]]],[59,1,1,34,35,[[1153,1,1,34,35]]],[65,11,11,35,46,[[1168,1,1,35,36],[1172,1,1,36,37],[1175,1,1,37,38],[1177,2,2,38,40],[1179,1,1,40,41],[1180,1,1,41,42],[1182,1,1,42,43],[1183,1,1,43,44],[1184,2,2,44,46]]]],[24002,24004,24029,24031,24174,24859,24926,24981,25302,25382,25473,25501,25503,25595,25598,25745,25758,25772,25973,25979,27104,27126,27127,27143,27178,27598,28061,28160,28854,29597,29984,30001,30154,30368,30436,30743,30801,30851,30878,30882,30915,30944,30963,30993,31004,31013]]],["she",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27501]]],["the",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24705]]],["through",[2,2,[[43,1,1,0,1,[[1020,1,1,0,1]]],[45,1,1,1,2,[[1069,1,1,1,2]]]],[27012,28538]]],["throughout",[2,2,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,1,1,1,2,[[1028,1,1,1,2]]]],[25088,27335]]],["time",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25090]]],["to",[39,39,[[39,5,5,0,5,[[931,2,2,0,2],[933,1,1,2,3],[941,1,1,3,4],[949,1,1,4,5]]],[40,1,1,5,6,[[967,1,1,5,6]]],[41,14,14,6,20,[[973,2,2,6,8],[977,1,1,8,9],[980,1,1,9,10],[981,1,1,10,11],[984,2,2,11,13],[989,1,1,13,14],[991,1,1,14,15],[994,2,2,15,17],[995,2,2,17,19],[996,1,1,19,20]]],[42,2,2,20,22,[[1015,1,1,20,21],[1017,1,1,21,22]]],[43,12,12,22,34,[[1025,1,1,22,23],[1026,2,2,23,25],[1027,1,1,25,26],[1029,1,1,26,27],[1032,1,1,27,28],[1034,1,1,28,29],[1035,1,1,29,30],[1037,1,1,30,31],[1043,1,1,31,32],[1044,2,2,32,34]]],[47,1,1,34,35,[[1094,1,1,34,35]]],[54,1,1,35,36,[[1126,1,1,35,36]]],[58,1,1,36,37,[[1147,1,1,36,37]]],[65,2,2,37,39,[[1187,1,1,37,38],[1188,1,1,38,39]]]],[23199,23205,23257,23587,23845,24653,24909,24910,25118,25272,25363,25484,25517,25655,25736,25908,25916,25968,25983,26015,26858,26909,27208,27220,27251,27270,27349,27461,27537,27569,27639,27843,27898,27899,29140,29841,30296,31063,31094]]],["touching",[2,2,[[43,1,1,0,1,[[1022,1,1,0,1]]],[52,1,1,1,2,[[1118,1,1,1,2]]]],[27094,29682]]],["toward",[7,7,[[39,2,2,0,2,[[940,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[44,1,1,3,4,[[1056,1,1,3,4]]],[45,1,1,4,5,[[1068,1,1,4,5]]],[48,1,1,5,6,[[1098,1,1,5,6]]],[57,1,1,6,7,[[1138,1,1,6,7]]]],[23538,23611,24441,28231,28523,29236,30045]]],["under",[3,3,[[57,3,3,0,3,[[1139,1,1,0,1],[1141,1,1,1,2],[1142,1,1,2,3]]]],[30075,30120,30161]]],["unto",[45,45,[[39,4,4,0,4,[[934,1,1,0,1],[937,1,1,1,2],[940,1,1,2,3],[955,1,1,3,4]]],[40,4,4,4,8,[[961,1,1,4,5],[971,2,2,5,7],[972,1,1,7,8]]],[41,8,8,8,16,[[975,1,1,8,9],[978,1,1,9,10],[982,2,2,10,12],[984,1,1,12,13],[995,1,1,13,14],[996,2,2,14,16]]],[42,1,1,16,17,[[1002,1,1,16,17]]],[43,17,17,17,34,[[1025,2,2,17,19],[1026,1,1,19,20],[1027,1,1,20,21],[1028,2,2,21,23],[1029,1,1,23,24],[1031,2,2,24,26],[1033,1,1,26,27],[1034,2,2,27,29],[1036,1,1,29,30],[1038,1,1,30,31],[1041,1,1,31,32],[1042,1,1,32,33],[1043,1,1,33,34]]],[47,1,1,34,35,[[1095,1,1,34,35]]],[48,1,1,35,36,[[1098,1,1,35,36]]],[51,1,1,36,37,[[1114,1,1,36,37]]],[52,1,1,37,38,[[1117,1,1,37,38]]],[54,2,2,38,40,[[1126,1,1,38,39],[1128,1,1,39,40]]],[57,1,1,40,41,[[1138,1,1,40,41]]],[59,1,1,41,42,[[1152,1,1,41,42]]],[65,3,3,42,45,[[1173,1,1,42,43],[1182,1,1,43,44],[1188,1,1,44,45]]]],[23309,23395,23517,24156,24385,24848,24872,24875,25027,25181,25372,25374,25470,25936,25992,26003,26273,27202,27212,27237,27270,27318,27328,27347,27427,27429,27502,27529,27542,27597,27696,27777,27808,27841,29175,29239,29610,29662,29843,29874,30045,30424,30827,30968,31098]]],["upon",[154,143,[[39,22,21,0,21,[[931,1,1,0,1],[934,1,1,1,2],[935,3,3,2,5],[937,1,1,5,6],[938,2,2,6,8],[939,1,1,8,9],[940,1,1,9,10],[941,1,1,10,11],[944,1,1,11,12],[947,1,1,12,13],[949,1,1,13,14],[951,4,3,14,17],[952,1,1,17,18],[953,1,1,18,19],[955,2,2,19,21]]],[40,9,9,21,30,[[957,1,1,21,22],[962,3,3,22,25],[963,1,1,25,26],[964,1,1,26,27],[966,1,1,27,28],[967,1,1,28,29],[971,1,1,29,30]]],[41,24,24,30,54,[[973,2,2,30,32],[974,2,2,32,34],[975,1,1,34,35],[976,1,1,35,36],[977,3,3,36,39],[978,2,2,39,41],[980,1,1,41,42],[981,1,1,42,43],[982,1,1,43,44],[983,1,1,44,45],[984,1,1,45,46],[985,1,1,46,47],[989,1,1,47,48],[991,2,2,48,50],[992,1,1,50,51],[993,2,2,51,53],[996,1,1,53,54]]],[42,7,7,54,61,[[997,2,2,54,56],[1000,1,1,56,57],[1005,1,1,57,58],[1007,1,1,58,59],[1014,1,1,59,60],[1015,1,1,60,61]]],[43,20,19,61,80,[[1018,2,2,61,63],[1019,2,2,63,65],[1021,1,1,65,66],[1022,3,2,66,68],[1024,1,1,68,69],[1025,2,2,69,71],[1027,1,1,71,72],[1029,1,1,72,73],[1030,2,2,73,75],[1032,2,2,75,77],[1035,1,1,77,78],[1038,1,1,78,79],[1043,1,1,79,80]]],[44,6,5,80,85,[[1047,1,1,80,81],[1048,1,1,81,82],[1049,2,1,82,83],[1054,1,1,83,84],[1060,1,1,84,85]]],[45,1,1,85,86,[[1064,1,1,85,86]]],[46,3,3,86,89,[[1078,1,1,86,87],[1080,1,1,87,88],[1089,1,1,88,89]]],[47,1,1,89,90,[[1096,1,1,89,90]]],[48,3,3,90,93,[[1098,1,1,90,91],[1100,1,1,91,92],[1101,1,1,92,93]]],[49,3,3,93,96,[[1103,1,1,93,94],[1104,2,2,94,96]]],[50,1,1,96,97,[[1109,1,1,96,97]]],[51,1,1,97,98,[[1112,1,1,97,98]]],[57,3,3,98,101,[[1138,1,1,98,99],[1140,1,1,99,100],[1143,1,1,100,101]]],[58,1,1,101,102,[[1147,1,1,101,102]]],[59,2,2,102,104,[[1154,1,1,102,103],[1155,1,1,103,104]]],[65,47,39,104,143,[[1167,1,1,104,105],[1168,1,1,105,106],[1169,4,3,106,109],[1170,1,1,109,110],[1171,2,2,110,112],[1173,1,1,112,113],[1174,3,2,113,115],[1176,6,4,115,119],[1177,4,3,119,122],[1178,2,2,122,124],[1179,4,2,124,126],[1180,1,1,126,127],[1182,6,6,127,133],[1183,4,4,133,137],[1184,1,1,137,138],[1185,3,3,138,141],[1186,2,1,141,142],[1187,1,1,142,143]]]],[23208,23301,23340,23341,23342,23397,23430,23444,23488,23507,23544,23690,23790,23831,23927,23953,23954,23960,24039,24158,24164,24225,24446,24455,24456,24493,24525,24604,24647,24850,24905,24928,24998,25013,25047,25081,25126,25131,25143,25194,25195,25251,25339,25369,25425,25462,25522,25682,25766,25774,25797,25851,25860,26040,26076,26095,26183,26455,26561,26789,26856,26931,26949,26952,26966,27055,27070,27087,27173,27192,27200,27268,27358,27373,27402,27452,27459,27563,27699,27839,27971,28013,28031,28183,28323,28422,28823,28856,29031,29204,29249,29298,29310,29364,29408,29418,29522,29586,30051,30098,30193,30314,30460,30472,30714,30741,30749,30756,30758,30772,30786,30792,30820,30830,30837,30862,30863,30866,30869,30882,30883,30888,30892,30894,30909,30916,30940,30956,30962,30964,30966,30972,30975,30976,30978,30980,30991,31017,31028,31031,31038,31042,31058]]],["was",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27635]]],["were",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25099]]],["with",[8,7,[[39,2,2,0,2,[[946,2,2,0,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[43,2,2,3,5,[[1038,1,1,3,4],[1045,1,1,4,5]]],[57,2,1,5,6,[[1140,2,1,5,6]]],[65,1,1,6,7,[[1178,1,1,6,7]]]],[23753,23756,25695,27688,27913,30100,30908]]],["ye",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27008]]]]},{"k":"G1910","v":[["*",[6,6,[[39,1,1,0,1,[[949,1,1,0,1]]],[43,5,5,1,6,[[1037,1,1,1,2],[1038,2,2,2,4],[1042,1,1,4,5],[1044,1,1,5,6]]]],[23831,27644,27666,27670,27797,27857]]],["+",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27670]]],["aboard",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27666]]],["came",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27644]]],["into",[2,2,[[43,2,2,0,2,[[1042,1,1,0,1],[1044,1,1,1,2]]]],[27797,27857]]],["sitting",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23831]]]]},{"k":"G1911","v":[["*",[18,18,[[39,2,2,0,2,[[937,1,1,0,1],[954,1,1,1,2]]],[40,4,4,2,6,[[960,1,1,2,3],[967,1,1,3,4],[970,2,2,4,6]]],[41,5,5,6,11,[[977,1,1,6,7],[981,1,1,7,8],[987,1,1,8,9],[992,1,1,9,10],[993,1,1,10,11]]],[42,2,2,11,13,[[1003,2,2,11,13]]],[43,4,4,13,17,[[1021,1,1,13,14],[1022,1,1,14,15],[1029,1,1,15,16],[1038,1,1,16,17]]],[45,1,1,17,18,[[1068,1,1,17,18]]]],[23395,24104,24360,24647,24800,24826,25143,25363,25600,25798,25838,26358,26372,27025,27077,27338,27691,28522]]],["+",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27025]]],["beat",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24360]]],["cast",[2,2,[[40,1,1,0,1,[[967,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[24647,28522]]],["falleth",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25600]]],["forth",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27338]]],["laid",[6,6,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,2,2,2,4,[[1003,2,2,2,4]]],[43,2,2,4,6,[[1022,1,1,4,5],[1038,1,1,5,6]]]],[24104,24800,26358,26372,27077,27691]]],["lay",[2,2,[[41,2,2,0,2,[[992,1,1,0,1],[993,1,1,1,2]]]],[25798,25838]]],["put",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25363]]],["putteth",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]]],[23395,25143]]],["thereon",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24826]]]]},{"k":"G1912","v":[["*",[3,3,[[46,1,1,0,1,[[1079,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]],[52,1,1,2,3,[[1118,1,1,2,3]]]],[28829,29579,29686]]],["chargeable",[2,2,[[51,1,1,0,1,[[1112,1,1,0,1]]],[52,1,1,1,2,[[1118,1,1,1,2]]]],[29579,29686]]],["overcharge",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28829]]]]},{"k":"G1913","v":[["*",[3,3,[[41,2,2,0,2,[[982,1,1,0,1],[991,1,1,1,2]]],[43,1,1,2,3,[[1040,1,1,2,3]]]],[25397,25766,27758]]],["+",[2,2,[[41,1,1,0,1,[[991,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[25766,27758]]],["set",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25397]]]]},{"k":"G1914","v":[["*",[3,3,[[41,2,2,0,2,[[973,1,1,0,1],[981,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[24941,25339,30296]]],["look",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25339]]],["regarded",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24941]]],["respect",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30296]]]]},{"k":"G1915","v":[["piece",[4,3,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,2,1,2,3,[[977,2,1,2,3]]]],[23395,24281,25143]]]]},{"k":"G1916","v":[["crying",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27820]]]]},{"k":"G1917","v":[["*",[4,4,[[43,4,4,0,4,[[1026,1,1,0,1],[1037,2,2,1,3],[1040,1,1,3,4]]]],[27240,27629,27645,27764]]],["+",[2,2,[[43,2,2,0,2,[[1037,1,1,0,1],[1040,1,1,1,2]]]],[27629,27764]]],["await",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27240]]],["wait",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27645]]]]},{"k":"G1918","v":[["marry",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23896]]]]},{"k":"G1919","v":[["*",[7,6,[[42,1,1,0,1,[[999,1,1,0,1]]],[45,2,1,1,2,[[1076,2,1,1,2]]],[46,1,1,2,3,[[1082,1,1,2,3]]],[49,2,2,3,5,[[1104,1,1,3,4],[1105,1,1,4,5]]],[58,1,1,5,6,[[1148,1,1,5,6]]]],[26132,28758,28878,29401,29440,30334]]],["earth",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29401]]],["earthly",[2,2,[[46,1,1,0,1,[[1082,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[28878,30334]]],["terrestrial",[2,1,[[45,2,1,0,1,[[1076,2,1,0,1]]]],[28758]]],["things",[2,2,[[42,1,1,0,1,[[999,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[26132,29440]]]]},{"k":"G1920","v":[["blew",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27912]]]]},{"k":"G1921","v":[["*",[42,38,[[39,6,5,0,5,[[935,2,2,0,2],[939,2,1,2,3],[942,1,1,3,4],[945,1,1,4,5]]],[40,4,4,5,9,[[958,1,1,5,6],[961,1,1,6,7],[962,2,2,7,9]]],[41,7,7,9,16,[[973,2,2,9,11],[977,1,1,11,12],[979,1,1,12,13],[995,1,1,13,14],[996,2,2,14,16]]],[43,11,11,16,27,[[1020,1,1,16,17],[1021,1,1,17,18],[1026,1,1,18,19],[1029,1,1,19,20],[1036,1,1,20,21],[1039,2,2,21,23],[1041,1,1,23,24],[1042,1,1,24,25],[1044,1,1,25,26],[1045,1,1,26,27]]],[44,1,1,27,28,[[1046,1,1,27,28]]],[45,4,3,28,31,[[1074,2,1,28,29],[1075,1,1,29,30],[1077,1,1,30,31]]],[46,5,4,31,35,[[1078,3,2,31,33],[1083,1,1,33,34],[1090,1,1,34,35]]],[50,1,1,35,36,[[1107,1,1,35,36]]],[53,1,1,36,37,[[1122,1,1,36,37]]],[60,2,1,37,38,[[1157,2,1,37,38]]]],[23332,23336,23486,23632,23712,24268,24394,24440,24461,24897,24915,25129,25232,25942,26007,26022,27006,27035,27246,27351,27619,27728,27733,27777,27806,27894,27900,27962,28677,28715,28794,28813,28814,28907,29048,29471,29750,30521]]],["Know",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29048]]],["acknowledge",[4,3,[[45,2,2,0,2,[[1075,1,1,0,1],[1077,1,1,1,2]]],[46,2,1,2,3,[[1078,2,1,2,3]]]],[28715,28794,28813]]],["acknowledged",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28814]]],["knew",[14,14,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,2,2,1,3,[[962,2,2,1,3]]],[41,3,3,3,6,[[979,1,1,3,4],[995,1,1,4,5],[996,1,1,5,6]]],[43,7,7,6,13,[[1020,1,1,6,7],[1026,1,1,7,8],[1029,1,1,8,9],[1036,1,1,9,10],[1039,1,1,10,11],[1044,1,1,11,12],[1045,1,1,12,13]]],[50,1,1,13,14,[[1107,1,1,13,14]]]],[23712,24440,24461,25232,25942,26022,27006,27246,27351,27619,27733,27894,27900,29471]]],["know",[7,7,[[39,2,2,0,2,[[935,2,2,0,2]]],[41,2,2,2,4,[[973,1,1,2,3],[996,1,1,3,4]]],[43,1,1,4,5,[[1039,1,1,4,5]]],[45,1,1,5,6,[[1074,1,1,5,6]]],[53,1,1,6,7,[[1122,1,1,6,7]]]],[23332,23336,24897,26007,27728,28677,29750]]],["knowest",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27806]]],["knoweth",[2,1,[[39,2,1,0,1,[[939,2,1,0,1]]]],[23486]]],["knowing",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[24394,27962]]],["knowledge",[3,3,[[39,1,1,0,1,[[942,1,1,0,1]]],[43,2,2,1,3,[[1021,1,1,1,2],[1041,1,1,2,3]]]],[23632,27035,27777]]],["known",[4,3,[[45,1,1,0,1,[[1074,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]],[60,2,1,2,3,[[1157,2,1,2,3]]]],[28677,28907,30521]]],["perceived",[3,3,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,2,2,1,3,[[973,1,1,1,2],[977,1,1,2,3]]]],[24268,24915,25129]]]]},{"k":"G1922","v":[["*",[20,20,[[44,3,3,0,3,[[1046,1,1,0,1],[1048,1,1,1,2],[1055,1,1,2,3]]],[48,2,2,3,5,[[1097,1,1,3,4],[1100,1,1,4,5]]],[49,1,1,5,6,[[1103,1,1,5,6]]],[50,4,4,6,10,[[1107,2,2,6,8],[1108,1,1,8,9],[1109,1,1,9,10]]],[53,1,1,10,11,[[1120,1,1,10,11]]],[54,2,2,11,13,[[1126,1,1,11,12],[1127,1,1,12,13]]],[55,1,1,13,14,[[1129,1,1,13,14]]],[56,1,1,14,15,[[1132,1,1,14,15]]],[57,1,1,15,16,[[1142,1,1,15,16]]],[60,4,4,16,20,[[1156,3,3,16,19],[1157,1,1,19,20]]]],[27958,28011,28190,29223,29285,29370,29474,29475,29496,29527,29720,29852,29860,29893,29944,30159,30481,30482,30487,30520]]],["acknowledgement",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29496]]],["acknowledging",[3,3,[[54,1,1,0,1,[[1126,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]]],[29852,29893,29944]]],["knowledge",[16,16,[[44,3,3,0,3,[[1046,1,1,0,1],[1048,1,1,1,2],[1055,1,1,2,3]]],[48,2,2,3,5,[[1097,1,1,3,4],[1100,1,1,4,5]]],[49,1,1,5,6,[[1103,1,1,5,6]]],[50,3,3,6,9,[[1107,2,2,6,8],[1109,1,1,8,9]]],[53,1,1,9,10,[[1120,1,1,9,10]]],[54,1,1,10,11,[[1127,1,1,10,11]]],[57,1,1,11,12,[[1142,1,1,11,12]]],[60,4,4,12,16,[[1156,3,3,12,15],[1157,1,1,15,16]]]],[27958,28011,28190,29223,29285,29370,29474,29475,29527,29720,29860,30159,30481,30482,30487,30520]]]]},{"k":"G1923","v":[["superscription",[5,5,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,2,2,1,3,[[968,1,1,1,2],[971,1,1,2,3]]],[41,2,2,3,5,[[992,1,1,3,4],[995,1,1,4,5]]]],[23892,24689,24852,25803,25973]]]]},{"k":"G1924","v":[["*",[5,5,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[57,2,2,2,4,[[1140,1,1,2,3],[1142,1,1,3,4]]],[65,1,1,4,5,[[1187,1,1,4,5]]]],[24852,27546,30102,30149,31065]]],["+",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27546]]],["over",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24852]]],["thereon",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31065]]],["write",[2,2,[[57,2,2,0,2,[[1140,1,1,0,1],[1142,1,1,1,2]]]],[30102,30149]]]]},{"k":"G1925","v":[["*",[9,9,[[39,3,3,0,3,[[944,1,1,0,1],[950,1,1,1,2],[952,1,1,2,3]]],[41,3,3,3,6,[[989,1,1,3,4],[992,1,1,4,5],[996,1,1,5,6]]],[43,2,2,6,8,[[1026,1,1,6,7],[1035,1,1,7,8]]],[57,1,1,8,9,[[1138,1,1,8,9]]]],[23673,23891,23958,25665,25803,26031,27255,27585,30061]]],["Shew",[2,2,[[39,1,1,0,1,[[950,1,1,0,1]]],[41,1,1,1,2,[[992,1,1,1,2]]]],[23891,25803]]],["shew",[4,4,[[39,2,2,0,2,[[944,1,1,0,1],[952,1,1,1,2]]],[41,1,1,2,3,[[989,1,1,2,3]]],[57,1,1,3,4,[[1138,1,1,3,4]]]],[23673,23958,25665,30061]]],["shewed",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26031]]],["shewing",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1035,1,1,1,2]]]],[27255,27585]]]]},{"k":"G1926","v":[["*",[2,2,[[63,2,2,0,2,[[1165,2,2,0,2]]]],[30667,30668]]],["receive",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30668]]],["receiveth",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30667]]]]},{"k":"G1927","v":[["*",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1034,1,1,1,2]]]],[26959,27544]]],["strangers",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26959]]],["there",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27544]]]]},{"k":"G1928","v":[["thereto",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29117]]]]},{"k":"G1929","v":[["*",[11,10,[[39,2,2,0,2,[[935,2,2,0,2]]],[41,6,5,2,7,[[976,1,1,2,3],[983,3,2,3,5],[996,2,2,5,7]]],[42,1,1,7,8,[[1009,1,1,7,8]]],[43,2,2,8,10,[[1032,1,1,8,9],[1044,1,1,9,10]]]],[23325,23326,25080,25416,25417,26021,26033,26656,27472,27870]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27870]]],["delivered",[2,2,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]]],[25080,27472]]],["gave",[2,2,[[41,2,2,0,2,[[996,2,2,0,2]]]],[26021,26033]]],["give",[5,4,[[39,2,2,0,2,[[935,2,2,0,2]]],[41,2,1,2,3,[[983,2,1,2,3]]],[42,1,1,3,4,[[1009,1,1,3,4]]]],[23325,23326,25416,26656]]],["offer",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25417]]]]},{"k":"G1930","v":[["order",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29897]]]]},{"k":"G1931","v":[["down",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29298]]]]},{"k":"G1932","v":[["*",[2,2,[[43,1,1,0,1,[[1041,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]]],[27773,28972]]],["clemency",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27773]]],["gentleness",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28972]]]]},{"k":"G1933","v":[["*",[5,5,[[49,1,1,0,1,[[1106,1,1,0,1]]],[53,1,1,1,2,[[1121,1,1,1,2]]],[55,1,1,2,3,[[1131,1,1,2,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[29447,29734,29925,30336,30417]]],["gentle",[3,3,[[55,1,1,0,1,[[1131,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]]],[29925,30336,30417]]],["moderation",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29447]]],["patient",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29734]]]]},{"k":"G1934","v":[["*",[14,13,[[39,3,3,0,3,[[934,1,1,0,1],[940,1,1,1,2],[944,1,1,2,3]]],[40,1,1,3,4,[[964,1,1,3,4]]],[41,2,2,4,6,[[983,1,1,4,5],[984,1,1,5,6]]],[43,3,3,6,9,[[1029,1,1,6,7],[1030,1,1,7,8],[1036,1,1,8,9]]],[44,1,1,9,10,[[1056,1,1,9,10]]],[49,2,1,10,11,[[1106,2,1,10,11]]],[57,2,2,11,13,[[1143,1,1,11,12],[1145,1,1,12,13]]]],[23314,23528,23676,24512,25434,25489,27356,27369,27624,28216,29459,30186,30255]]],["after",[4,4,[[39,2,2,0,2,[[940,1,1,0,1],[944,1,1,1,2]]],[40,1,1,2,3,[[964,1,1,2,3]]],[41,1,1,3,4,[[984,1,1,3,4]]]],[23528,23676,24512,25489]]],["desire",[2,1,[[49,2,1,0,1,[[1106,2,1,0,1]]]],[29459]]],["desired",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27369]]],["enquire",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27624]]],["for",[2,2,[[43,1,1,0,1,[[1029,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]]],[27356,28216]]],["seek",[4,4,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[57,2,2,2,4,[[1143,1,1,2,3],[1145,1,1,3,4]]]],[23314,25434,30186,30255]]]]},{"k":"G1935","v":[["death",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28442]]]]},{"k":"G1936","v":[["on",[4,4,[[43,1,1,0,1,[[1025,1,1,0,1]]],[53,1,1,1,2,[[1122,1,1,1,2]]],[54,1,1,2,3,[[1125,1,1,2,3]]],[57,1,1,3,4,[[1138,1,1,3,4]]]],[27194,29761,29815,30046]]]]},{"k":"G1937","v":[["*",[16,16,[[39,2,2,0,2,[[933,1,1,0,1],[941,1,1,1,2]]],[41,4,4,2,6,[[987,1,1,2,3],[988,1,1,3,4],[989,1,1,4,5],[994,1,1,5,6]]],[43,1,1,6,7,[[1037,1,1,6,7]]],[44,2,2,7,9,[[1052,1,1,7,8],[1058,1,1,8,9]]],[45,1,1,9,10,[[1071,1,1,9,10]]],[47,1,1,10,11,[[1095,1,1,10,11]]],[53,1,1,11,12,[[1121,1,1,11,12]]],[57,1,1,12,13,[[1138,1,1,12,13]]],[58,1,1,13,14,[[1149,1,1,13,14]]],[59,1,1,14,15,[[1151,1,1,14,15]]],[65,1,1,15,16,[[1175,1,1,15,16]]]],[23262,23556,25604,25641,25673,25879,27659,28098,28275,28573,29179,29732,30055,30339,30386,30846]]],["covet",[2,2,[[44,2,2,0,2,[[1052,1,1,0,1],[1058,1,1,1,2]]]],[28098,28275]]],["coveted",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27659]]],["desire",[4,4,[[41,1,1,0,1,[[989,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]],[59,1,1,2,3,[[1151,1,1,2,3]]],[65,1,1,3,4,[[1175,1,1,3,4]]]],[25673,30055,30386,30846]]],["desired",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[23556,25879]]],["desireth",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29732]]],["desiring",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25641]]],["fain",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25604]]],["lust",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[58,1,1,1,2,[[1149,1,1,1,2]]]],[23262,30339]]],["lusted",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28573]]],["lusteth",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29179]]]]},{"k":"G1938","v":[["+",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28573]]]]},{"k":"G1939","v":[["*",[38,37,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]],[44,5,5,3,8,[[1046,1,1,3,4],[1051,1,1,4,5],[1052,2,2,5,7],[1058,1,1,7,8]]],[47,2,2,8,10,[[1095,2,2,8,10]]],[48,2,2,10,12,[[1098,1,1,10,11],[1100,1,1,11,12]]],[49,1,1,12,13,[[1103,1,1,12,13]]],[50,1,1,13,14,[[1109,1,1,13,14]]],[51,2,2,14,16,[[1112,1,1,14,15],[1114,1,1,15,16]]],[53,1,1,16,17,[[1124,1,1,16,17]]],[54,3,3,17,20,[[1126,1,1,17,18],[1127,1,1,18,19],[1128,1,1,19,20]]],[55,2,2,20,22,[[1130,1,1,20,21],[1131,1,1,21,22]]],[58,2,2,22,24,[[1146,2,2,22,24]]],[59,4,4,24,28,[[1151,1,1,24,25],[1152,1,1,25,26],[1154,2,2,26,28]]],[60,4,4,28,32,[[1156,1,1,28,29],[1157,2,2,29,31],[1158,1,1,31,32]]],[61,3,2,32,34,[[1160,3,2,32,34]]],[64,2,2,34,36,[[1166,2,2,34,36]]],[65,1,1,36,37,[[1184,1,1,36,37]]]],[24342,25879,26425,27954,28080,28098,28099,28280,29178,29186,29232,29294,29384,29522,29587,29608,29797,29849,29859,29873,29920,29926,30280,30281,30388,30410,30448,30449,30483,30510,30518,30525,30566,30567,30688,30690,31007]]],["after",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31007]]],["concupiscence",[3,3,[[44,1,1,0,1,[[1052,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]]],[28099,29522,29608]]],["desire",[3,3,[[41,1,1,0,1,[[994,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]]],[25879,29384,29587]]],["lust",[9,8,[[44,1,1,0,1,[[1052,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[58,2,2,2,4,[[1146,2,2,2,4]]],[60,2,2,4,6,[[1156,1,1,4,5],[1157,1,1,5,6]]],[61,3,2,6,8,[[1160,3,2,6,8]]]],[28098,29178,30280,30281,30483,30510,30566,30567]]],["lusts",[22,22,[[40,1,1,0,1,[[960,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]],[44,3,3,2,5,[[1046,1,1,2,3],[1051,1,1,3,4],[1058,1,1,4,5]]],[47,1,1,5,6,[[1095,1,1,5,6]]],[48,2,2,6,8,[[1098,1,1,6,7],[1100,1,1,7,8]]],[53,1,1,8,9,[[1124,1,1,8,9]]],[54,3,3,9,12,[[1126,1,1,9,10],[1127,1,1,10,11],[1128,1,1,11,12]]],[55,2,2,12,14,[[1130,1,1,12,13],[1131,1,1,13,14]]],[59,4,4,14,18,[[1151,1,1,14,15],[1152,1,1,15,16],[1154,2,2,16,18]]],[60,2,2,18,20,[[1157,1,1,18,19],[1158,1,1,19,20]]],[64,2,2,20,22,[[1166,2,2,20,22]]]],[24342,26425,27954,28080,28280,29186,29232,29294,29797,29849,29859,29873,29920,29926,30388,30410,30448,30449,30518,30525,30688,30690]]]]},{"k":"G1940","v":[["set",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23833]]]]},{"k":"G1941","v":[["*",[32,32,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[43,21,21,2,23,[[1018,1,1,2,3],[1019,1,1,3,4],[1021,1,1,4,5],[1024,1,1,5,6],[1026,2,2,6,8],[1027,3,3,8,11],[1028,1,1,11,12],[1029,2,2,12,14],[1032,2,2,14,16],[1039,1,1,16,17],[1042,4,4,17,21],[1043,1,1,21,22],[1045,1,1,22,23]]],[44,3,3,23,26,[[1055,3,3,23,26]]],[45,1,1,26,27,[[1062,1,1,26,27]]],[46,1,1,27,28,[[1078,1,1,27,28]]],[54,1,1,28,29,[[1126,1,1,28,29]]],[57,1,1,29,30,[[1143,1,1,29,30]]],[58,1,1,30,31,[[1147,1,1,30,31]]],[59,1,1,31,32,[[1151,1,1,31,32]]]],[23420,25867,26946,26970,27058,27175,27230,27237,27264,27277,27291,27320,27349,27362,27459,27464,27720,27807,27808,27817,27821,27855,27918,28200,28201,28202,28365,28823,29849,30188,30300,30391]]],["appeal",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27807]]],["appealed",[4,4,[[43,4,4,0,4,[[1042,3,3,0,3],[1043,1,1,3,4]]]],[27808,27817,27821,27855]]],["call",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28823]]],["called",[3,3,[[43,1,1,0,1,[[1032,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[27459,30188,30300]]],["is",[3,3,[[43,3,3,0,3,[[1027,2,2,0,2],[1028,1,1,2,3]]]],[27264,27291,27320]]],["on",[7,7,[[43,4,4,0,4,[[1019,1,1,0,1],[1026,2,2,1,3],[1039,1,1,3,4]]],[44,1,1,4,5,[[1055,1,1,4,5]]],[54,1,1,5,6,[[1126,1,1,5,6]]],[59,1,1,6,7,[[1151,1,1,6,7]]]],[26970,27230,27237,27720,28202,29849,30391]]],["surname",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27349]]],["surnamed",[5,5,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,4,4,1,5,[[1018,1,1,1,2],[1021,1,1,2,3],[1027,1,1,3,4],[1032,1,1,4,5]]]],[25867,26946,27058,27277,27464]]],["unto",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27918]]],["upon",[4,4,[[43,1,1,0,1,[[1024,1,1,0,1]]],[44,2,2,1,3,[[1055,2,2,1,3]]],[45,1,1,3,4,[[1062,1,1,3,4]]]],[27175,28200,28201,28365]]],["was",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]]],[23420,27362]]]]},{"k":"G1942","v":[["cloke",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30415]]]]},{"k":"G1943","v":[["covered",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28029]]]]},{"k":"G1944","v":[["*",[3,3,[[42,1,1,0,1,[[1003,1,1,0,1]]],[47,2,2,1,3,[[1093,2,2,1,3]]]],[26377,29112,29115]]],["Cursed",[2,2,[[47,2,2,0,2,[[1093,2,2,0,2]]]],[29112,29115]]],["cursed",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26377]]]]},{"k":"G1945","v":[["*",[7,7,[[41,2,2,0,2,[[977,1,1,0,1],[995,1,1,1,2]]],[42,2,2,2,4,[[1007,1,1,2,3],[1017,1,1,3,4]]],[43,1,1,4,5,[[1044,1,1,4,5]]],[45,1,1,5,6,[[1070,1,1,5,6]]],[57,1,1,6,7,[[1141,1,1,6,7]]]],[25108,25958,26561,26907,27875,28556,30115]]],["imposed",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30115]]],["instant",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25958]]],["lay",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26561]]],["on",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27875]]],["thereon",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26907]]],["upon",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]]],[25108,28556]]]]},{"k":"G1946","v":[["Epicureans",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27541]]]]},{"k":"G1947","v":[["help",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27845]]]]},{"k":"G1948","v":[["sentence",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25959]]]]},{"k":"G1949","v":[["*",[19,18,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,5,5,2,7,[[981,1,1,2,3],[986,1,1,3,4],[992,2,2,4,6],[995,1,1,6,7]]],[43,7,7,7,14,[[1026,1,1,7,8],[1033,1,1,8,9],[1034,1,1,9,10],[1035,1,1,10,11],[1038,2,2,11,13],[1040,1,1,13,14]]],[53,2,2,14,16,[[1124,2,2,14,16]]],[57,3,2,16,18,[[1134,2,1,16,17],[1140,1,1,17,18]]]],[23628,24523,25348,25557,25799,25805,25961,27243,27502,27542,27574,27694,27697,27753,29800,29807,29993,30101]]],["+",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29993]]],["caught",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[43,1,1,1,2,[[1033,1,1,1,2]]]],[23628,27502]]],["hold",[2,2,[[41,2,2,0,2,[[992,2,2,0,2]]]],[25799,25805]]],["on",[3,3,[[53,2,2,0,2,[[1124,2,2,0,2]]],[57,1,1,2,3,[[1134,1,1,2,3]]]],[29800,29807,29993]]],["took",[10,10,[[40,1,1,0,1,[[964,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[986,1,1,2,3]]],[43,6,6,3,9,[[1026,1,1,3,4],[1034,1,1,4,5],[1035,1,1,5,6],[1038,2,2,6,8],[1040,1,1,8,9]]],[57,1,1,9,10,[[1140,1,1,9,10]]]],[24523,25348,25557,27243,27542,27574,27694,27697,27753,30101]]],["upon",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25961]]]]},{"k":"G1950","v":[["*",[8,8,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]],[57,3,3,4,7,[[1138,1,1,4,5],[1145,2,2,5,7]]],[58,1,1,7,8,[[1146,1,1,7,8]]]],[23677,24514,25465,29434,30054,30243,30257,30290]]],["+",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30243]]],["forget",[2,2,[[57,2,2,0,2,[[1138,1,1,0,1],[1145,1,1,1,2]]]],[30054,30257]]],["forgetteth",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30290]]],["forgetting",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29434]]],["forgotten",[3,3,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,1,1,2,3,[[984,1,1,2,3]]]],[23677,24514,25465]]]]},{"k":"G1951","v":[["*",[2,2,[[42,1,1,0,1,[[1001,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]]],[26212,27482]]],["called",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26212]]],["chose",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27482]]]]},{"k":"G1952","v":[["fail",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30204]]]]},{"k":"G1953","v":[["forgetful",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30291]]]]},{"k":"G1954","v":[["rest",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30448]]]]},{"k":"G1955","v":[["interpretation",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30499]]]]},{"k":"G1956","v":[["*",[2,2,[[40,1,1,0,1,[[960,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[24357,27624]]],["determined",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27624]]],["expounded",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24357]]]]},{"k":"G1957","v":[["testifying",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30477]]]]},{"k":"G1958","v":[["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27858]]]]},{"k":"G1959","v":[["*",[3,3,[[41,2,2,0,2,[[982,2,2,0,2]]],[53,1,1,2,3,[[1121,1,1,2,3]]]],[25397,25398,29736]]],["care",[2,2,[[41,2,2,0,2,[[982,2,2,0,2]]]],[25397,25398]]],["of",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29736]]]]},{"k":"G1960","v":[["diligently",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25596]]]]},{"k":"G1961","v":[["*",[18,18,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,8,8,1,9,[[1027,1,1,1,2],[1029,1,1,2,3],[1030,1,1,3,4],[1032,1,1,4,5],[1038,2,2,5,7],[1045,2,2,7,9]]],[44,3,3,9,12,[[1051,1,1,9,10],[1056,2,2,10,12]]],[45,2,2,12,14,[[1077,2,2,12,14]]],[47,1,1,14,15,[[1091,1,1,14,15]]],[49,1,1,15,16,[[1103,1,1,15,16]]],[50,1,1,16,17,[[1107,1,1,16,17]]],[53,1,1,17,18,[[1122,1,1,17,18]]]],[26388,27307,27353,27405,27476,27668,27674,27911,27913,28069,28231,28232,28783,28784,29075,29385,29488,29763]]],["+",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28232]]],["abide",[2,2,[[43,1,1,0,1,[[1032,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[27476,29385]]],["abode",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29075]]],["continue",[4,4,[[43,1,1,0,1,[[1030,1,1,0,1]]],[44,1,1,1,2,[[1051,1,1,1,2]]],[50,1,1,2,3,[[1107,1,1,2,3]]],[53,1,1,3,4,[[1122,1,1,3,4]]]],[27405,28069,29488,29763]]],["continued",[2,2,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]]],[26388,27353]]],["in",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28231]]],["tarried",[3,3,[[43,3,3,0,3,[[1038,2,2,0,2],[1045,1,1,2,3]]]],[27668,27674,27911]]],["tarry",[4,4,[[43,2,2,0,2,[[1027,1,1,0,1],[1045,1,1,1,2]]],[45,2,2,2,4,[[1077,2,2,2,4]]]],[27307,27913,28783,28784]]]]},{"k":"G1962","v":[["consented",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27577]]]]},{"k":"G1963","v":[["thought",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27198]]]]},{"k":"G1964","v":[["forswear",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23267]]]]},{"k":"G1965","v":[["persons",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29706]]]]},{"k":"G1966","v":[["*",[5,5,[[43,5,5,0,5,[[1024,1,1,0,1],[1033,1,1,1,2],[1037,1,1,2,3],[1038,1,1,3,4],[1040,1,1,4,5]]]],[27142,27494,27641,27682,27745]]],["following",[2,2,[[43,2,2,0,2,[[1038,1,1,0,1],[1040,1,1,1,2]]]],[27682,27745]]],["next",[3,3,[[43,3,3,0,3,[[1024,1,1,0,1],[1033,1,1,1,2],[1037,1,1,2,3]]]],[27142,27494,27641]]]]},{"k":"G1967","v":[["daily",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23293,25408]]]]},{"k":"G1968","v":[["*",[13,13,[[40,1,1,0,1,[[959,1,1,0,1]]],[41,2,2,1,3,[[973,1,1,1,2],[987,1,1,2,3]]],[42,1,1,3,4,[[1009,1,1,3,4]]],[43,8,8,4,12,[[1025,1,1,4,5],[1027,2,2,5,7],[1028,1,1,7,8],[1030,1,1,8,9],[1036,1,1,9,10],[1037,2,2,10,12]]],[44,1,1,12,13,[[1060,1,1,12,13]]]],[24298,24905,25608,26655,27192,27269,27303,27322,27373,27602,27636,27663,28306]]],["fallen",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27192]]],["fell",[9,9,[[41,2,2,0,2,[[973,1,1,0,1],[987,1,1,1,2]]],[43,6,6,2,8,[[1027,2,2,2,4],[1028,1,1,4,5],[1030,1,1,5,6],[1036,1,1,6,7],[1037,1,1,7,8]]],[44,1,1,8,9,[[1060,1,1,8,9]]]],[24905,25608,27269,27303,27322,27373,27602,27663,28306]]],["lying",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26655]]],["on",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27636]]],["upon",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24298]]]]},{"k":"G1969","v":[["Rebuke",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29764]]]]},{"k":"G1970","v":[]},{"k":"G1971","v":[["*",[9,9,[[44,1,1,0,1,[[1046,1,1,0,1]]],[46,2,2,1,3,[[1082,1,1,1,2],[1086,1,1,2,3]]],[49,2,2,3,5,[[1103,1,1,3,4],[1104,1,1,4,5]]],[51,1,1,5,6,[[1113,1,1,5,6]]],[54,1,1,6,7,[[1125,1,1,6,7]]],[58,1,1,7,8,[[1149,1,1,7,8]]],[59,1,1,8,9,[[1152,1,1,8,9]]]],[27941,28879,28970,29369,29417,29596,29813,30342,30401]]],["+",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29417]]],["after",[2,2,[[46,1,1,0,1,[[1086,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[28970,29369]]],["desire",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30401]]],["desiring",[2,2,[[46,1,1,0,1,[[1082,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]]],[28879,29813]]],["greatly",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29596]]],["long",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27941]]],["lusteth",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30342]]]]},{"k":"G1972","v":[["desire",[2,2,[[46,2,2,0,2,[[1084,2,2,0,2]]]],[28923,28927]]]]},{"k":"G1973","v":[["for",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29443]]]]},{"k":"G1974","v":[["desire",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28326]]]]},{"k":"G1975","v":[["come",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25249]]]]},{"k":"G1976","v":[["seweth",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24281]]]]},{"k":"G1977","v":[["*",[2,2,[[41,1,1,0,1,[[991,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[25766,30472]]],["Casting",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30472]]],["cast",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25766]]]]},{"k":"G1978","v":[["*",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]]],[24145,28343]]],["notable",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24145]]],["note",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28343]]]]},{"k":"G1979","v":[["victuals",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25313]]]]},{"k":"G1980","v":[["*",[11,11,[[39,2,2,0,2,[[953,2,2,0,2]]],[41,3,3,2,5,[[973,2,2,2,4],[979,1,1,4,5]]],[43,4,4,5,9,[[1023,1,1,5,6],[1024,1,1,6,7],[1032,2,2,7,9]]],[57,1,1,9,10,[[1134,1,1,9,10]]],[58,1,1,10,11,[[1146,1,1,10,11]]]],[24044,24051,24961,24971,25211,27104,27139,27456,27478,29983,30293]]],["out",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27104]]],["visit",[4,4,[[43,3,3,0,3,[[1024,1,1,0,1],[1032,2,2,1,3]]],[58,1,1,3,4,[[1146,1,1,3,4]]]],[27139,27456,27478,30293]]],["visited",[5,5,[[39,2,2,0,2,[[953,2,2,0,2]]],[41,3,3,2,5,[[973,2,2,2,4],[979,1,1,4,5]]]],[24044,24051,24961,24971,25211]]],["visitest",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29983]]]]},{"k":"G1981","v":[["rest",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29031]]]]},{"k":"G1982","v":[["*",[5,5,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[981,1,1,3,4]]],[43,1,1,4,5,[[1022,1,1,4,5]]]],[23705,24545,24928,25335,27074]]],["overshadow",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[24928,27074]]],["overshadowed",[3,3,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]]],[23705,24545,25335]]]]},{"k":"G1983","v":[["*",[2,2,[[57,1,1,0,1,[[1144,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[30227,30467]]],["diligently",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30227]]],["oversight",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30467]]]]},{"k":"G1984","v":[["*",[4,4,[[41,1,1,0,1,[[991,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]],[53,1,1,2,3,[[1121,1,1,2,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[25775,26943,29732,30411]]],["bishop",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29732]]],["bishoprick",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26943]]],["visitation",[2,2,[[41,1,1,0,1,[[991,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[25775,30411]]]]},{"k":"G1985","v":[["*",[5,5,[[43,1,1,0,1,[[1037,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]],[53,1,1,2,3,[[1121,1,1,2,3]]],[55,1,1,3,4,[[1129,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[27654,29362,29733,29899,30424]]],["Bishop",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30424]]],["bishop",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[29733,29899]]],["bishops",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29362]]],["overseers",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27654]]]]},{"k":"G1986","v":[["uncircumcised",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28505]]]]},{"k":"G1987","v":[["*",[14,14,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,9,9,1,10,[[1027,1,1,1,2],[1032,1,1,2,3],[1035,1,1,3,4],[1036,2,2,4,6],[1037,1,1,6,7],[1039,1,1,7,8],[1041,1,1,8,9],[1043,1,1,9,10]]],[53,1,1,10,11,[[1124,1,1,10,11]]],[57,1,1,11,12,[[1143,1,1,11,12]]],[58,1,1,12,13,[[1149,1,1,12,13]]],[64,1,1,13,14,[[1166,1,1,13,14]]]],[24822,27287,27449,27582,27600,27610,27644,27723,27779,27849,29792,30180,30351,30682]]],["know",[9,9,[[43,7,7,0,7,[[1027,1,1,0,1],[1032,1,1,1,2],[1036,2,2,2,4],[1037,1,1,4,5],[1039,1,1,5,6],[1041,1,1,6,7]]],[58,1,1,7,8,[[1149,1,1,7,8]]],[64,1,1,8,9,[[1166,1,1,8,9]]]],[27287,27449,27600,27610,27644,27723,27779,30351,30682]]],["knoweth",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27849]]],["knowing",[3,3,[[43,1,1,0,1,[[1035,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[27582,29792,30180]]],["understand",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24822]]]]},{"k":"G1988","v":[["*",[7,6,[[41,7,6,0,6,[[977,1,1,0,1],[980,3,2,1,3],[981,2,2,3,5],[989,1,1,5,6]]]],[25112,25269,25290,25334,25350,25664]]],["Master",[6,6,[[41,6,6,0,6,[[977,1,1,0,1],[980,2,2,1,3],[981,2,2,3,5],[989,1,1,5,6]]]],[25112,25269,25290,25334,25350,25664]]],["master",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25269]]]]},{"k":"G1989","v":[["*",[3,3,[[43,2,2,0,2,[[1032,1,1,0,1],[1038,1,1,1,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]]],[27462,27689,30263]]],["letter",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30263]]],["write",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27462]]],["written",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27689]]]]},{"k":"G1990","v":[["knowledge",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30332]]]]},{"k":"G1991","v":[["*",[4,4,[[43,4,4,0,4,[[1031,1,1,0,1],[1032,2,2,1,3],[1035,1,1,3,4]]]],[27436,27474,27483,27580]]],["Confirming",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27436]]],["confirmed",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27474]]],["confirming",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27483]]],["strengthening",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27580]]]]},{"k":"G1992","v":[["*",[24,23,[[43,5,5,0,5,[[1026,1,1,0,1],[1032,1,1,1,2],[1039,1,1,2,3],[1040,2,2,3,5]]],[44,1,1,5,6,[[1061,1,1,5,6]]],[45,2,2,6,8,[[1066,1,1,6,7],[1077,1,1,7,8]]],[46,8,7,8,15,[[1080,3,3,8,11],[1084,2,1,11,12],[1087,3,3,12,15]]],[50,1,1,15,16,[[1110,1,1,15,16]]],[51,1,1,16,17,[[1115,1,1,16,17]]],[52,4,4,17,21,[[1117,2,2,17,19],[1118,2,2,19,21]]],[60,2,2,21,23,[[1158,2,2,21,23]]]],[27218,27472,27709,27759,27767,28358,28463,28779,28842,28843,28844,28924,28980,28981,28982,29558,29648,29663,29676,29692,29695,30523,30538]]],["+",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28981]]],["epistle",[13,13,[[43,2,2,0,2,[[1032,1,1,0,1],[1040,1,1,1,2]]],[44,1,1,2,3,[[1061,1,1,2,3]]],[45,1,1,3,4,[[1066,1,1,3,4]]],[46,3,3,4,7,[[1080,2,2,4,6],[1084,1,1,6,7]]],[50,1,1,7,8,[[1110,1,1,7,8]]],[51,1,1,8,9,[[1115,1,1,8,9]]],[52,3,3,9,12,[[1117,1,1,9,10],[1118,2,2,10,12]]],[60,1,1,12,13,[[1158,1,1,12,13]]]],[27472,27767,28358,28463,28843,28844,28924,29558,29648,29676,29692,29695,30523]]],["epistles",[2,2,[[46,1,1,0,1,[[1080,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[28842,30538]]],["letter",[3,3,[[43,1,1,0,1,[[1040,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]]],[27759,28924,29663]]],["letters",[5,5,[[43,2,2,0,2,[[1026,1,1,0,1],[1039,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[46,2,2,3,5,[[1087,2,2,3,5]]]],[27218,27709,28779,28980,28982]]]]},{"k":"G1993","v":[["+",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29903]]]]},{"k":"G1994","v":[["*",[39,38,[[39,5,5,0,5,[[937,1,1,0,1],[938,1,1,1,2],[940,1,1,2,3],[941,1,1,3,4],[952,1,1,4,5]]],[40,4,4,5,9,[[960,1,1,5,6],[961,1,1,6,7],[964,1,1,7,8],[969,1,1,8,9]]],[41,7,7,9,16,[[973,2,2,9,11],[974,1,1,11,12],[980,1,1,12,13],[989,2,2,13,15],[994,1,1,15,16]]],[42,2,2,16,18,[[1008,1,1,16,17],[1017,1,1,17,18]]],[43,11,11,18,29,[[1020,1,1,18,19],[1026,2,2,19,21],[1028,1,1,21,22],[1031,1,1,22,23],[1032,2,2,23,25],[1033,1,1,25,26],[1043,2,2,26,28],[1045,1,1,28,29]]],[46,1,1,29,30,[[1080,1,1,29,30]]],[47,1,1,30,31,[[1094,1,1,30,31]]],[51,1,1,31,32,[[1111,1,1,31,32]]],[58,2,2,32,34,[[1150,2,2,32,34]]],[59,1,1,34,35,[[1152,1,1,34,35]]],[60,2,2,35,37,[[1157,2,2,35,37]]],[65,2,1,37,38,[[1167,2,1,37,38]]]],[23401,23430,23533,23554,23975,24335,24394,24533,24733,24909,24910,24993,25300,25655,25682,25896,26620,26918,27015,27251,27256,27328,27429,27461,27478,27501,27841,27843,27926,28857,29140,29569,30373,30374,30424,30521,30522,30709]]],["+",[2,2,[[43,1,1,0,1,[[1032,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[27478,30522]]],["about",[4,4,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[964,1,1,2,3]]],[42,1,1,3,4,[[1017,1,1,3,4]]]],[23401,24394,24533,26918]]],["again",[2,2,[[41,2,2,0,2,[[980,1,1,0,1],[989,1,1,1,2]]]],[25300,25655]]],["back",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24733]]],["convert",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30373]]],["converted",[6,6,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,1,1,3,4,[[1008,1,1,3,4]]],[43,2,2,4,6,[[1020,1,1,4,5],[1045,1,1,5,6]]]],[23554,24335,25896,26620,27015,27926]]],["converteth",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30374]]],["return",[4,4,[[39,3,3,0,3,[[938,1,1,0,1],[940,1,1,1,2],[952,1,1,2,3]]],[41,1,1,3,4,[[989,1,1,3,4]]]],[23430,23533,23975,25682]]],["returned",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[24993,30424]]],["turn",[8,8,[[41,2,2,0,2,[[973,2,2,0,2]]],[43,3,3,2,5,[[1031,1,1,2,3],[1043,2,2,3,5]]],[46,1,1,5,6,[[1080,1,1,5,6]]],[47,1,1,6,7,[[1094,1,1,6,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]]],[24909,24910,27429,27841,27843,28857,29140,30521]]],["turned",[7,6,[[43,4,4,0,4,[[1026,1,1,0,1],[1028,1,1,1,2],[1032,1,1,2,3],[1033,1,1,3,4]]],[51,1,1,4,5,[[1111,1,1,4,5]]],[65,2,1,5,6,[[1167,2,1,5,6]]]],[27251,27328,27461,27501,29569,30709]]],["turning",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27256]]]]},{"k":"G1995","v":[["conversion",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27445]]]]},{"k":"G1996","v":[["*",[7,6,[[39,3,2,0,2,[[951,2,1,0,1],[952,1,1,1,2]]],[40,2,2,2,4,[[957,1,1,2,3],[969,1,1,3,4]]],[41,2,2,4,6,[[984,1,1,4,5],[985,1,1,5,6]]]],[23955,23988,24248,24744,25460,25552]]],["+",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23955,25552]]],["gathereth",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23955]]],["together",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,2,2,1,3,[[957,1,1,1,2],[969,1,1,2,3]]],[41,1,1,3,4,[[984,1,1,3,4]]]],[23988,24248,24744,25460]]]]},{"k":"G1997","v":[["*",[2,2,[[52,1,1,0,1,[[1117,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[29662,30158]]],["+",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30158]]],["together",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29662]]]]},{"k":"G1998","v":[["together",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24563]]]]},{"k":"G1999","v":[["*",[2,2,[[43,1,1,0,1,[[1041,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[27781,29017]]],["+",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27781]]],["upon",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29017]]]]},{"k":"G2000","v":[["dangerous",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27864]]]]},{"k":"G2001","v":[["fierce",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25940]]]]},{"k":"G2002","v":[["heap",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29873]]]]},{"k":"G2003","v":[["*",[7,7,[[44,1,1,0,1,[[1061,1,1,0,1]]],[45,2,2,1,3,[[1068,2,2,1,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]],[53,1,1,4,5,[[1119,1,1,4,5]]],[55,2,2,5,7,[[1129,1,1,5,6],[1130,1,1,6,7]]]],[28362,28493,28512,28940,29697,29895,29923]]],["authority",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29923]]],["commandment",[6,6,[[44,1,1,0,1,[[1061,1,1,0,1]]],[45,2,2,1,3,[[1068,2,2,1,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]],[53,1,1,4,5,[[1119,1,1,4,5]]],[55,1,1,5,6,[[1129,1,1,5,6]]]],[28362,28493,28512,28940,29697,29895]]]]},{"k":"G2004","v":[["*",[10,10,[[40,4,4,0,4,[[957,1,1,0,1],[962,2,2,1,3],[965,1,1,3,4]]],[41,4,4,4,8,[[976,1,1,4,5],[980,2,2,5,7],[986,1,1,7,8]]],[43,1,1,8,9,[[1040,1,1,8,9]]],[56,1,1,9,10,[[1132,1,1,9,10]]]],[24242,24434,24446,24563,25099,25270,25276,25575,27736,29946]]],["charge",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24563]]],["command",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25276]]],["commanded",[4,4,[[40,2,2,0,2,[[962,2,2,0,2]]],[41,1,1,2,3,[[986,1,1,2,3]]],[43,1,1,3,4,[[1040,1,1,3,4]]]],[24434,24446,25575,27736]]],["commandeth",[3,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,2,2,1,3,[[976,1,1,1,2],[980,1,1,2,3]]]],[24242,25099,25270]]],["enjoin",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29946]]]]},{"k":"G2005","v":[["*",[11,10,[[41,1,1,0,1,[[985,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[46,4,3,2,5,[[1084,1,1,2,3],[1085,3,2,3,5]]],[47,1,1,5,6,[[1093,1,1,5,6]]],[49,1,1,6,7,[[1103,1,1,6,7]]],[57,2,2,7,9,[[1140,1,1,7,8],[1141,1,1,8,9]]],[59,1,1,9,10,[[1155,1,1,9,10]]]],[25550,28331,28917,28938,28943,29105,29367,30097,30111,30474]]],["accomplished",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30474]]],["accomplishing",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30111]]],["do",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25550]]],["finish",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28938]]],["make",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30097]]],["perfect",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29105]]],["perfecting",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28917]]],["perform",[2,2,[[46,1,1,0,1,[[1085,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[28943,29367]]],["performance",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28943]]],["performed",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28331]]]]},{"k":"G2006","v":[["needful",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30309]]]]},{"k":"G2007","v":[["*",[42,41,[[39,7,7,0,7,[[937,1,1,0,1],[947,2,2,1,3],[949,1,1,3,4],[951,1,1,4,5],[955,2,2,5,7]]],[40,9,9,7,16,[[959,2,2,7,9],[960,1,1,9,10],[961,1,1,10,11],[962,1,1,11,12],[963,1,1,12,13],[964,2,2,13,15],[972,1,1,15,16]]],[41,6,6,16,22,[[976,1,1,16,17],[980,1,1,17,18],[982,1,1,18,19],[985,1,1,19,20],[987,1,1,20,21],[995,1,1,21,22]]],[42,2,2,22,24,[[1005,1,1,22,23],[1015,1,1,23,24]]],[43,14,14,24,38,[[1023,1,1,24,25],[1025,2,2,25,27],[1026,2,2,27,29],[1030,1,1,29,30],[1032,2,2,30,32],[1033,1,1,32,33],[1035,1,1,33,34],[1036,1,1,34,35],[1045,3,3,35,38]]],[53,1,1,38,39,[[1123,1,1,38,39]]],[65,3,2,39,41,[[1167,1,1,39,40],[1188,2,1,40,41]]]],[23397,23775,23777,23833,23922,24158,24166,24304,24305,24344,24387,24412,24495,24523,24525,24891,25103,25261,25393,25531,25593,25961,26455,26827,27107,27193,27195,27228,27233,27365,27452,27470,27506,27567,27591,27902,27907,27909,29785,30714,31098]]],["+",[8,8,[[40,5,5,0,5,[[959,2,2,0,2],[962,1,1,2,3],[963,1,1,3,4],[964,1,1,4,5]]],[41,2,2,5,7,[[976,1,1,5,6],[982,1,1,6,7]]],[43,1,1,7,8,[[1023,1,1,7,8]]]],[24304,24305,24412,24495,24523,25103,25393,27107]]],["Lay",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29785]]],["add",[2,1,[[65,2,1,0,1,[[1188,2,1,0,1]]]],[31098]]],["laded",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27909]]],["laid",[10,10,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,2,2,1,3,[[985,1,1,1,2],[995,1,1,2,3]]],[43,6,6,3,9,[[1025,1,1,3,4],[1030,1,1,4,5],[1033,1,1,5,6],[1036,1,1,6,7],[1045,2,2,7,9]]],[65,1,1,9,10,[[1167,1,1,9,10]]]],[23777,25531,25961,27193,27365,27506,27591,27902,27907,30714]]],["lay",[6,6,[[39,2,2,0,2,[[937,1,1,0,1],[951,1,1,1,2]]],[40,2,2,2,4,[[961,1,1,2,3],[972,1,1,3,4]]],[43,2,2,4,6,[[1025,1,1,4,5],[1032,1,1,5,6]]]],[23397,23922,24387,24891,27195,27470]]],["layeth",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25593]]],["on",[2,2,[[42,1,1,0,1,[[1015,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]]],[26827,27567]]],["put",[6,6,[[39,3,3,0,3,[[947,1,1,0,1],[949,1,1,1,2],[955,1,1,2,3]]],[40,1,1,3,4,[[964,1,1,3,4]]],[42,1,1,4,5,[[1005,1,1,4,5]]],[43,1,1,5,6,[[1032,1,1,5,6]]]],[23775,23833,24158,24525,26455,27452]]],["putting",[2,2,[[43,2,2,0,2,[[1026,2,2,0,2]]]],[27228,27233]]],["set",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24344]]],["setteth",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25261]]],["up",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24166]]]]},{"k":"G2008","v":[["*",[29,29,[[39,6,6,0,6,[[936,1,1,0,1],[940,1,1,1,2],[944,1,1,2,3],[945,1,1,3,4],[947,1,1,4,5],[948,1,1,5,6]]],[40,9,9,6,15,[[957,1,1,6,7],[959,1,1,7,8],[960,1,1,8,9],[964,3,3,9,12],[965,1,1,12,13],[966,2,2,13,15]]],[41,12,12,15,27,[[976,3,3,15,18],[980,1,1,18,19],[981,3,3,19,22],[989,1,1,22,23],[990,2,2,23,25],[991,1,1,25,26],[995,1,1,26,27]]],[54,1,1,27,28,[[1128,1,1,27,28]]],[64,1,1,28,29,[[1166,1,1,28,29]]]],[23371,23505,23694,23718,23775,23823,24240,24300,24362,24530,24532,24533,24563,24601,24636,25098,25102,25104,25269,25322,25343,25356,25654,25703,25727,25770,25975,29872,30681]]],["charged",[5,5,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,3,3,1,4,[[959,1,1,1,2],[964,1,1,2,3],[966,1,1,3,4]]],[41,1,1,4,5,[[981,1,1,4,5]]]],[23505,24300,24530,24636,25322]]],["rebuke",[6,6,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,2,2,2,4,[[989,1,1,2,3],[991,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]],[64,1,1,5,6,[[1166,1,1,5,6]]]],[23694,24532,25654,25770,29872,30681]]],["rebuked",[17,17,[[39,4,4,0,4,[[936,1,1,0,1],[945,1,1,1,2],[947,1,1,2,3],[948,1,1,3,4]]],[40,5,5,4,9,[[957,1,1,4,5],[960,1,1,5,6],[964,1,1,6,7],[965,1,1,7,8],[966,1,1,8,9]]],[41,8,8,9,17,[[976,2,2,9,11],[980,1,1,11,12],[981,2,2,12,14],[990,2,2,14,16],[995,1,1,16,17]]]],[23371,23718,23775,23823,24240,24362,24533,24563,24601,25098,25102,25269,25343,25356,25703,25727,25975]]],["rebuking",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25104]]]]},{"k":"G2009","v":[["punishment",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28830]]]]},{"k":"G2010","v":[["*",[19,18,[[39,3,3,0,3,[[936,2,2,0,2],[947,1,1,2,3]]],[40,2,2,3,5,[[961,1,1,3,4],[966,1,1,4,5]]],[41,4,3,5,8,[[980,2,1,5,6],[981,2,2,6,8]]],[42,1,1,8,9,[[1015,1,1,8,9]]],[43,5,5,9,14,[[1038,2,2,9,11],[1043,1,1,11,12],[1044,1,1,12,13],[1045,1,1,13,14]]],[45,2,2,14,16,[[1075,1,1,14,15],[1077,1,1,15,16]]],[53,1,1,16,17,[[1120,1,1,16,17]]],[57,1,1,17,18,[[1138,1,1,17,18]]]],[23366,23376,23770,24377,24592,25277,25360,25362,26863,27703,27704,27824,27858,27915,28712,28783,29728,30047]]],["+",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24377]]],["leave",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26863]]],["let",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25362]]],["liberty",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27858]]],["licence",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27704]]],["permit",[2,2,[[45,1,1,0,1,[[1077,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[28783,30047]]],["permitted",[2,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[27824,28712]]],["suffer",[6,6,[[39,2,2,0,2,[[936,2,2,0,2]]],[41,2,2,2,4,[[980,1,1,2,3],[981,1,1,3,4]]],[43,1,1,4,5,[[1038,1,1,4,5]]],[53,1,1,5,6,[[1120,1,1,5,6]]]],[23366,23376,25277,25360,27703,29728]]],["suffered",[4,4,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[43,1,1,3,4,[[1045,1,1,3,4]]]],[23770,24592,25277,27915]]]]},{"k":"G2011","v":[["commission",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27835]]]]},{"k":"G2012","v":[["*",[3,3,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[47,1,1,2,3,[[1094,1,1,2,3]]]],[23800,25248,29133]]],["steward",[2,2,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[23800,25248]]],["tutors",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29133]]]]},{"k":"G2013","v":[["*",[5,4,[[44,2,1,0,1,[[1056,2,1,0,1]]],[57,2,2,1,3,[[1138,1,1,1,2],[1143,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]]],[28216,30059,30205,30339]]],["obtain",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30339]]],["obtained",[4,3,[[44,2,1,0,1,[[1056,2,1,0,1]]],[57,2,2,1,3,[[1138,1,1,1,2],[1143,1,1,2,3]]]],[28216,30059,30205]]]]},{"k":"G2014","v":[["*",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]],[55,2,2,2,4,[[1130,1,1,2,3],[1131,1,1,3,4]]]],[24972,27875,29919,29927]]],["appeared",[3,3,[[43,1,1,0,1,[[1044,1,1,0,1]]],[55,2,2,1,3,[[1130,1,1,1,2],[1131,1,1,2,3]]]],[27875,29919,29927]]],["light",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24972]]]]},{"k":"G2015","v":[["*",[6,6,[[52,1,1,0,1,[[1117,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]],[54,3,3,2,5,[[1125,1,1,2,3],[1128,2,2,3,5]]],[55,1,1,5,6,[[1130,1,1,5,6]]]],[29669,29802,29819,29871,29878,29921]]],["appearing",[5,5,[[53,1,1,0,1,[[1124,1,1,0,1]]],[54,3,3,1,4,[[1125,1,1,1,2],[1128,2,2,2,4]]],[55,1,1,4,5,[[1130,1,1,4,5]]]],[29802,29819,29871,29878,29921]]],["brightness",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29669]]]]},{"k":"G2016","v":[["notable",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26969]]]]},{"k":"G2017","v":[["+",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29318]]]]},{"k":"G2018","v":[["*",[5,5,[[43,2,2,0,2,[[1036,1,1,0,1],[1042,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[49,1,1,3,4,[[1103,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[27597,27814,27996,29377,30681]]],["add",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29377]]],["against",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30681]]],["brought",[2,2,[[43,2,2,0,2,[[1036,1,1,0,1],[1042,1,1,1,2]]]],[27597,27814]]],["taketh",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[27996]]]]},{"k":"G2019","v":[["*",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,2,2,1,3,[[1029,1,1,1,2],[1039,1,1,2,3]]]],[25956,27359,27728]]],["+",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27728]]],["cried",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25956]]],["shout",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27359]]]]},{"k":"G2020","v":[["*",[2,2,[[39,1,1,0,1,[[956,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24196,25989]]],["dawn",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24196]]],["on",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25989]]]]},{"k":"G2021","v":[["*",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,2,2,1,3,[[1026,1,1,1,2],[1036,1,1,2,3]]]],[24894,27245,27598]]],["about",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27245]]],["hand",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24894]]],["upon",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27598]]]]},{"k":"G2022","v":[["in",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25397]]]]},{"k":"G2023","v":[["*",[5,5,[[46,1,1,0,1,[[1086,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]],[60,2,2,3,5,[[1156,2,2,3,5]]]],[28966,29107,29513,30484,30490]]],["+",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29107]]],["add",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30484]]],["ministered",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29513]]],["ministereth",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28966]]],["unto",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30490]]]]},{"k":"G2024","v":[["*",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[29288,29380]]],["supplieth",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29288]]],["supply",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29380]]]]},{"k":"G2025","v":[["anointed",[2,2,[[42,2,2,0,2,[[1005,2,2,0,2]]]],[26446,26451]]]]},{"k":"G2026","v":[["*",[8,7,[[43,1,1,0,1,[[1037,1,1,0,1]]],[45,4,3,1,4,[[1064,4,3,1,4]]],[48,1,1,4,5,[[1098,1,1,4,5]]],[50,1,1,5,6,[[1108,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[27658,28420,28422,28424,29249,29501,30692]]],["build",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28422]]],["built",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29249]]],["thereon",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28420]]],["thereupon",[2,2,[[45,2,2,0,2,[[1064,2,2,0,2]]]],[28420,28424]]],["up",[3,3,[[43,1,1,0,1,[[1037,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[27658,29501,30692]]]]},{"k":"G2027","v":[["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27896]]]]},{"k":"G2028","v":[["called",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27979]]]]},{"k":"G2029","v":[["behold",[2,2,[[59,2,2,0,2,[[1152,1,1,0,1],[1153,1,1,1,2]]]],[30411,30426]]]]},{"k":"G2030","v":[["eyewitnesses",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30495]]]]},{"k":"G2031","v":[["+",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30073]]]]},{"k":"G2032","v":[["*",[20,18,[[39,1,1,0,1,[[946,1,1,0,1]]],[42,1,1,1,2,[[999,1,1,1,2]]],[45,5,3,2,5,[[1076,5,3,2,5]]],[48,5,5,5,10,[[1097,2,2,5,7],[1098,1,1,7,8],[1099,1,1,8,9],[1102,1,1,9,10]]],[49,1,1,10,11,[[1104,1,1,10,11]]],[54,1,1,11,12,[[1128,1,1,11,12]]],[57,6,6,12,18,[[1135,1,1,12,13],[1138,1,1,13,14],[1140,1,1,14,15],[1141,1,1,15,16],[1143,1,1,16,17],[1144,1,1,17,18]]]],[23762,26132,28758,28766,28767,29209,29226,29235,29261,29349,29401,29888,29996,30048,30097,30128,30188,30234]]],["+",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28766]]],["celestial",[2,1,[[45,2,1,0,1,[[1076,2,1,0,1]]]],[28758]]],["heaven",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29401]]],["heavenly",[12,12,[[39,1,1,0,1,[[946,1,1,0,1]]],[45,2,2,1,3,[[1076,2,2,1,3]]],[48,4,4,3,7,[[1097,2,2,3,5],[1098,1,1,5,6],[1099,1,1,6,7]]],[54,1,1,7,8,[[1128,1,1,7,8]]],[57,4,4,8,12,[[1135,1,1,8,9],[1138,1,1,9,10],[1143,1,1,10,11],[1144,1,1,11,12]]]],[23762,28766,28767,29209,29226,29235,29261,29888,29996,30048,30188,30234]]],["high",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29349]]],["things",[3,3,[[42,1,1,0,1,[[999,1,1,0,1]]],[57,2,2,1,3,[[1140,1,1,1,2],[1141,1,1,2,3]]]],[26132,30097,30128]]]]},{"k":"G2033","v":[["*",[87,63,[[39,9,9,0,9,[[940,1,1,0,1],[943,3,3,1,4],[944,1,1,4,5],[946,1,1,5,6],[950,3,3,6,9]]],[40,9,8,9,17,[[964,5,4,9,13],[968,3,3,13,16],[972,1,1,16,17]]],[41,6,6,17,23,[[974,1,1,17,18],[980,1,1,18,19],[983,1,1,19,20],[992,3,3,20,23]]],[43,8,8,23,31,[[1023,1,1,23,24],[1030,1,1,24,25],[1036,1,1,25,26],[1037,1,1,26,27],[1038,3,3,27,30],[1045,1,1,30,31]]],[57,1,1,31,32,[[1143,1,1,31,32]]],[65,54,31,32,63,[[1167,12,6,32,38],[1168,2,1,38,39],[1169,2,1,39,40],[1170,2,1,40,41],[1171,5,3,41,44],[1174,4,2,44,46],[1176,3,2,46,48],[1177,1,1,48,49],[1178,2,1,49,50],[1179,1,1,50,51],[1181,8,4,51,55],[1182,1,1,55,56],[1183,8,6,56,62],[1187,3,1,62,63]]]],[23534,23667,23669,23670,23682,23749,23897,23898,23900,24505,24506,24508,24520,24693,24695,24696,24882,25009,25247,25431,25808,25810,25812,27104,27381,27599,27632,27668,27672,27691,27913,30202,30701,30708,30709,30710,30713,30717,30718,30747,30773,30780,30784,30785,30829,30833,30864,30865,30885,30894,30909,30947,30952,30953,30954,30955,30976,30978,30982,30984,30985,30986,31062]]],["Seven",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[964,2,2,1,3]]]],[23667,24505,24520]]],["seven",[83,60,[[39,7,7,0,7,[[940,1,1,0,1],[943,2,2,1,3],[944,1,1,3,4],[946,1,1,4,5],[950,2,2,5,7]]],[40,7,7,7,14,[[964,3,3,7,10],[968,3,3,10,13],[972,1,1,13,14]]],[41,6,6,14,20,[[974,1,1,14,15],[980,1,1,15,16],[983,1,1,16,17],[992,3,3,17,20]]],[43,8,8,20,28,[[1023,1,1,20,21],[1030,1,1,21,22],[1036,1,1,22,23],[1037,1,1,23,24],[1038,3,3,24,27],[1045,1,1,27,28]]],[57,1,1,28,29,[[1143,1,1,28,29]]],[65,54,31,29,60,[[1167,12,6,29,35],[1168,2,1,35,36],[1169,2,1,36,37],[1170,2,1,37,38],[1171,5,3,38,41],[1174,4,2,41,43],[1176,3,2,43,45],[1177,1,1,45,46],[1178,2,1,46,47],[1179,1,1,47,48],[1181,8,4,48,52],[1182,1,1,52,53],[1183,8,6,53,59],[1187,3,1,59,60]]]],[23534,23669,23670,23682,23749,23897,23900,24506,24508,24520,24693,24695,24696,24882,25009,25247,25431,25808,25810,25812,27104,27381,27599,27632,27668,27672,27691,27913,30202,30701,30708,30709,30710,30713,30717,30718,30747,30773,30780,30784,30785,30829,30833,30864,30865,30885,30894,30909,30947,30952,30953,30954,30955,30976,30978,30982,30984,30985,30986,31062]]],["seventh",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23898]]]]},{"k":"G2034","v":[["times",[4,3,[[39,2,2,0,2,[[946,2,2,0,2]]],[41,2,1,2,3,[[989,2,1,2,3]]]],[23748,23749,25655]]]]},{"k":"G2035","v":[["thousand",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28213]]]]},{"k":"G2036","v":[["*",[975,900,[[39,186,172,0,172,[[930,3,3,0,3],[931,2,2,3,5],[932,3,2,5,7],[933,3,2,7,9],[936,8,8,9,17],[937,9,8,17,25],[938,1,1,25,26],[939,3,3,26,29],[940,12,10,29,39],[941,7,7,39,46],[942,5,5,46,51],[943,13,13,51,64],[944,11,11,64,75],[945,10,10,75,85],[946,3,3,85,88],[947,11,11,88,99],[948,8,7,99,106],[949,15,12,106,118],[950,9,9,118,127],[951,2,2,127,129],[952,6,6,129,135],[953,5,5,135,140],[954,23,20,140,160],[955,9,8,160,168],[956,5,4,168,172]]],[40,98,90,172,262,[[957,3,3,172,175],[958,4,3,175,178],[959,2,2,178,180],[960,2,2,180,182],[961,4,4,182,186],[962,6,5,186,191],[963,6,6,191,197],[964,5,5,197,202],[965,8,8,202,210],[966,16,15,210,225],[967,9,7,225,232],[968,12,10,232,242],[969,3,3,242,245],[970,11,11,245,256],[971,3,3,256,259],[972,4,3,259,262]]],[41,307,280,262,542,[[973,12,12,262,274],[974,6,6,274,280],[975,3,3,280,283],[976,9,8,283,291],[977,14,13,291,304],[978,7,7,304,311],[979,16,13,311,324],[980,13,12,324,336],[981,27,23,336,359],[982,15,13,359,372],[983,12,11,372,383],[984,14,13,383,396],[985,10,8,396,404],[986,13,13,404,417],[987,9,9,417,426],[988,12,10,426,436],[989,9,9,436,445],[990,15,15,445,460],[991,18,18,460,478],[992,20,17,478,495],[993,4,4,495,499],[994,29,25,499,524],[995,7,6,524,530],[996,13,12,530,542]]],[42,214,199,542,741,[[997,12,11,542,553],[998,5,5,553,558],[999,10,9,558,567],[1000,12,11,567,578],[1001,4,4,578,582],[1002,17,17,582,599],[1003,13,13,599,612],[1004,19,18,612,630],[1005,23,22,630,652],[1006,8,8,652,660],[1007,18,17,660,677],[1008,11,11,677,688],[1009,7,6,688,694],[1010,5,4,694,698],[1011,1,1,698,699],[1012,6,4,699,703],[1013,1,1,703,704],[1014,22,19,704,723],[1015,3,3,723,726],[1016,10,10,726,736],[1017,7,5,736,741]]],[43,133,124,741,865,[[1018,5,5,741,746],[1019,3,3,746,749],[1020,3,3,749,752],[1021,5,5,752,757],[1022,7,6,757,763],[1023,1,1,763,764],[1024,11,11,764,775],[1025,8,7,775,782],[1026,9,7,782,789],[1027,8,7,789,796],[1028,3,3,796,799],[1029,4,4,799,803],[1030,5,5,803,808],[1031,1,1,808,809],[1032,2,2,809,811],[1033,3,3,811,814],[1034,1,1,814,815],[1035,4,4,815,819],[1036,9,7,819,826],[1037,4,4,826,830],[1038,5,5,830,835],[1039,10,9,835,844],[1040,7,7,844,851],[1041,2,2,851,853],[1042,2,2,853,855],[1043,4,3,855,858],[1044,3,3,858,861],[1045,4,4,861,865]]],[44,1,1,865,866,[[1055,1,1,865,866]]],[45,9,9,866,875,[[1062,1,1,866,867],[1071,1,1,867,868],[1072,2,2,868,870],[1073,4,4,870,874],[1076,1,1,874,875]]],[46,2,2,875,877,[[1081,1,1,875,876],[1083,1,1,876,877]]],[47,1,1,877,878,[[1092,1,1,877,878]]],[50,1,1,878,879,[[1110,1,1,878,879]]],[55,1,1,879,880,[[1129,1,1,879,880]]],[57,6,6,880,886,[[1133,1,1,880,881],[1135,1,1,881,882],[1139,1,1,882,883],[1142,2,2,883,885],[1144,1,1,885,886]]],[58,5,3,886,889,[[1147,5,3,886,889]]],[61,4,4,889,893,[[1159,3,3,889,892],[1162,1,1,892,893]]],[64,1,1,893,894,[[1166,1,1,893,894]]],[65,6,6,894,900,[[1173,1,1,894,895],[1183,1,1,895,896],[1187,2,2,896,898],[1188,2,2,898,900]]]],[23174,23177,23182,23199,23207,23212,23213,23245,23256,23349,23353,23355,23358,23364,23366,23367,23377,23381,23382,23383,23384,23390,23391,23394,23401,23444,23462,23463,23484,23491,23492,23500,23513,23514,23521,23528,23536,23537,23538,23549,23550,23566,23567,23576,23591,23596,23599,23613,23615,23625,23626,23636,23638,23643,23645,23646,23648,23649,23657,23659,23660,23661,23665,23667,23674,23678,23680,23683,23684,23686,23688,23689,23692,23695,23696,23704,23707,23709,23711,23713,23717,23719,23720,23722,23724,23730,23744,23748,23766,23767,23773,23776,23778,23779,23780,23785,23788,23789,23790,23796,23805,23809,23813,23814,23817,23824,23829,23831,23842,23847,23850,23851,23852,23853,23854,23855,23856,23864,23873,23876,23885,23889,23890,23896,23901,23909,23916,23921,23957,23959,23960,23961,23980,23983,24005,24016,24020,24030,24032,24034,24055,24064,24069,24072,24075,24077,24079,24080,24087,24089,24098,24103,24104,24109,24115,24116,24117,24118,24120,24127,24133,24135,24146,24150,24154,24172,24192,24193,24200,24201,24202,24208,24232,24257,24259,24268,24269,24279,24297,24320,24362,24363,24371,24397,24398,24407,24423,24429,24431,24438,24444,24469,24473,24474,24490,24492,24499,24505,24507,24520,24526,24534,24550,24555,24556,24559,24561,24567,24574,24577,24591,24592,24593,24602,24606,24608,24609,24617,24624,24625,24626,24627,24637,24639,24640,24643,24646,24654,24663,24669,24671,24672,24680,24685,24688,24689,24690,24697,24699,24705,24707,24709,24719,24721,24738,24760,24768,24770,24772,24774,24776,24778,24793,24802,24816,24826,24828,24838,24865,24880,24881,24888,24906,24911,24912,24921,24923,24927,24928,24931,24935,24939,24953,24954,24983,24988,25001,25007,25021,25022,25037,25038,25039,25066,25069,25071,25072,25075,25086,25087,25106,25111,25112,25117,25120,25121,25127,25129,25130,25131,25134,25138,25140,25141,25148,25149,25154,25155,25156,25172,25185,25202,25204,25208,25209,25215,25217,25226,25234,25235,25237,25238,25243,25245,25249,25255,25266,25267,25270,25273,25275,25290,25291,25293,25297,25301,25304,25310,25313,25314,25315,25320,25321,25322,25323,25334,25342,25344,25349,25350,25351,25355,25356,25358,25359,25360,25361,25362,25363,25373,25381,25384,25386,25389,25390,25391,25392,25393,25398,25400,25403,25404,25406,25407,25410,25412,25420,25422,25432,25433,25444,25451,25454,25462,25470,25471,25472,25473,25474,25475,25477,25479,25481,25500,25501,25504,25520,25525,25530,25533,25538,25541,25550,25553,25556,25558,25563,25568,25569,25570,25571,25572,25573,25574,25575,25576,25578,25591,25599,25600,25605,25609,25610,25615,25617,25619,25622,25623,25626,25627,25635,25644,25645,25647,25650,25651,25652,25656,25657,25665,25668,25670,25671,25673,25688,25692,25694,25697,25704,25707,25709,25710,25712,25714,25715,25716,25717,25719,25729,25730,25736,25739,25740,25742,25743,25744,25746,25748,25750,25755,25756,25759,25761,25763,25764,25765,25770,25771,25781,25782,25784,25785,25787,25792,25795,25796,25798,25802,25803,25804,25813,25818,25820,25821,25824,25829,25831,25834,25855,25872,25873,25874,25879,25881,25889,25895,25897,25898,25899,25900,25902,25904,25910,25912,25913,25915,25916,25920,25922,25924,25925,25931,25934,25935,25939,25949,25957,25963,25978,25981,25996,26008,26009,26010,26015,26016,26023,26029,26031,26032,26035,26037,26059,26066,26067,26069,26074,26077,26082,26086,26090,26092,26094,26111,26113,26114,26115,26117,26122,26123,26127,26129,26130,26132,26146,26147,26148,26166,26169,26173,26183,26185,26188,26195,26204,26206,26208,26209,26221,26222,26224,26229,26267,26282,26283,26285,26286,26287,26289,26291,26292,26293,26298,26300,26310,26316,26317,26318,26324,26331,26337,26344,26348,26349,26361,26363,26364,26366,26367,26370,26373,26380,26388,26391,26392,26394,26395,26402,26404,26405,26406,26409,26420,26422,26423,26429,26433,26436,26438,26439,26446,26447,26451,26452,26455,26457,26460,26462,26463,26464,26465,26466,26467,26468,26470,26474,26475,26476,26477,26479,26480,26481,26487,26488,26505,26506,26507,26515,26516,26522,26527,26534,26535,26537,26539,26544,26548,26551,26557,26560,26563,26564,26565,26566,26569,26572,26574,26586,26587,26599,26607,26610,26615,26618,26619,26621,26624,26629,26637,26641,26642,26651,26658,26663,26670,26691,26694,26696,26719,26730,26741,26743,26745,26760,26786,26789,26791,26792,26793,26794,26796,26801,26806,26807,26810,26814,26815,26816,26817,26818,26819,26822,26823,26846,26849,26855,26881,26882,26884,26885,26887,26888,26889,26892,26893,26895,26904,26915,26917,26918,26921,26930,26932,26934,26938,26947,26978,26983,26986,27000,27002,27018,27030,27041,27045,27046,27047,27062,27067,27068,27078,27088,27094,27103,27117,27119,27123,27142,27143,27149,27151,27153,27156,27172,27176,27196,27200,27205,27206,27207,27210,27213,27221,27222,27226,27231,27233,27250,27256,27262,27263,27273,27278,27280,27281,27293,27315,27319,27320,27345,27348,27352,27354,27364,27372,27378,27384,27408,27424,27449,27478,27501,27503,27514,27555,27563,27566,27571,27578,27587,27588,27589,27600,27606,27610,27626,27636,27644,27661,27662,27675,27678,27684,27701,27703,27712,27714,27717,27718,27723,27725,27728,27729,27731,27735,27737,27738,27745,27748,27754,27757,27789,27791,27805,27806,27838,27852,27853,27876,27886,27890,27920,27924,27925,27928,28194,28378,28595,28622,28624,28637,28649,28650,28655,28745,28865,28914,29095,29559,29904,29968,30005,30073,30140,30163,30233,30296,30304,30309,30546,30548,30550,30623,30681,30824,30982,31058,31059,31086,31097]]],["+",[10,10,[[39,2,2,0,2,[[930,1,1,0,1],[948,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[42,1,1,3,4,[[1010,1,1,3,4]]],[43,3,3,4,7,[[1025,2,2,4,6],[1044,1,1,6,7]]],[45,2,2,7,9,[[1072,1,1,7,8],[1076,1,1,8,9]]],[57,1,1,9,10,[[1139,1,1,9,10]]]],[23182,23796,25697,26670,27206,27207,27876,28624,28745,30073]]],["Grant",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23813]]],["I",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26846]]],["Said",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]],[43,1,1,2,3,[[1031,1,1,2,3]]]],[25949,26563,27424]]],["Say",[2,2,[[39,1,1,0,1,[[956,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]]],[24208,28194]]],["Saying",[3,3,[[41,2,2,0,2,[[981,1,1,0,1],[991,1,1,1,2]]],[43,1,1,2,3,[[1024,1,1,2,3]]]],[25323,25761,27156]]],["Tell",[9,9,[[39,5,5,0,5,[[945,1,1,0,1],[949,1,1,1,2],[950,2,2,2,4],[952,1,1,4,5]]],[40,1,1,5,6,[[969,1,1,5,6]]],[41,2,2,6,8,[[979,1,1,6,7],[992,1,1,7,8]]],[43,1,1,8,9,[[1022,1,1,8,9]]]],[23709,23831,23876,23889,23960,24721,25237,25781,27067]]],["answer",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25782]]],["bade",[3,3,[[39,1,1,0,1,[[944,1,1,0,1]]],[43,2,2,1,3,[[1028,1,1,1,2],[1039,1,1,2,3]]]],[23684,27319,27728]]],["bid",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[23921,25403]]],["called",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26516]]],["command",[3,3,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,2,2,1,3,[[976,1,1,1,2],[981,1,1,2,3]]]],[23212,25066,25355]]],["commanded",[5,5,[[40,3,3,0,3,[[961,1,1,0,1],[964,1,1,1,2],[966,1,1,2,3]]],[41,1,1,3,4,[[991,1,1,3,4]]],[46,1,1,4,5,[[1081,1,1,4,5]]]],[24407,24507,24637,25746,28865]]],["on",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25235]]],["said",[762,722,[[39,142,139,0,139,[[930,2,2,0,2],[931,2,2,2,4],[932,2,2,4,6],[936,6,6,6,12],[937,7,7,12,19],[939,3,3,19,22],[940,9,9,22,31],[941,7,7,31,38],[942,5,5,38,43],[943,12,12,43,55],[944,8,8,55,63],[945,8,8,63,71],[946,2,2,71,73],[947,11,11,73,84],[948,6,6,84,90],[949,9,8,90,98],[950,6,6,98,104],[952,2,2,104,106],[953,5,5,106,111],[954,20,19,111,130],[955,8,7,130,137],[956,2,2,137,139]]],[40,71,67,139,206,[[957,1,1,139,140],[958,2,2,140,142],[959,1,1,142,143],[960,2,2,143,145],[961,2,2,145,147],[962,6,5,147,152],[963,4,4,152,156],[964,3,3,156,159],[965,6,6,159,165],[966,15,14,165,179],[967,3,3,179,182],[968,10,8,182,190],[969,1,1,190,191],[970,9,9,191,200],[971,3,3,200,203],[972,3,3,203,206]]],[41,256,242,206,448,[[973,12,12,206,218],[974,6,6,218,224],[975,3,3,224,227],[976,8,8,227,235],[977,10,10,235,245],[978,5,5,245,250],[979,11,10,250,260],[980,11,10,260,270],[981,24,21,270,291],[982,13,12,291,303],[983,10,10,303,313],[984,8,8,313,321],[985,8,7,321,328],[986,9,9,328,337],[987,8,8,337,345],[988,12,10,345,355],[989,9,9,355,364],[990,14,14,364,378],[991,14,14,378,392],[992,14,13,392,405],[993,3,3,405,408],[994,26,24,408,432],[995,6,5,432,437],[996,12,11,437,448]]],[42,172,162,448,610,[[997,11,10,448,458],[998,5,5,458,463],[999,8,8,463,471],[1000,9,8,471,479],[1001,4,4,479,483],[1002,17,17,483,500],[1003,12,12,500,512],[1004,17,16,512,528],[1005,20,19,528,547],[1006,3,3,547,550],[1007,13,13,550,563],[1008,8,8,563,571],[1009,6,5,571,576],[1010,4,3,576,579],[1011,1,1,579,580],[1012,5,4,580,584],[1013,1,1,584,585],[1014,14,12,585,597],[1015,2,2,597,599],[1016,7,7,599,606],[1017,5,4,606,610]]],[43,105,97,610,707,[[1018,4,4,610,614],[1019,2,2,614,616],[1020,3,3,616,619],[1021,5,5,619,624],[1022,6,6,624,630],[1023,1,1,630,631],[1024,7,7,631,638],[1025,6,5,638,643],[1026,9,7,643,650],[1027,7,6,650,656],[1028,2,2,656,658],[1029,4,4,658,662],[1030,5,5,662,667],[1032,2,2,667,669],[1033,2,2,669,671],[1034,1,1,671,672],[1035,2,2,672,674],[1036,7,5,674,679],[1037,3,3,679,682],[1038,3,3,682,685],[1039,9,8,685,693],[1040,6,6,693,699],[1041,1,1,699,700],[1042,2,2,700,702],[1043,3,2,702,704],[1044,1,1,704,705],[1045,2,2,705,707]]],[46,1,1,707,708,[[1083,1,1,707,708]]],[47,1,1,708,709,[[1092,1,1,708,709]]],[55,1,1,709,710,[[1129,1,1,709,710]]],[57,5,5,710,715,[[1133,1,1,710,711],[1135,1,1,711,712],[1142,2,2,712,714],[1144,1,1,714,715]]],[58,2,1,715,716,[[1147,2,1,715,716]]],[64,1,1,716,717,[[1166,1,1,716,717]]],[65,5,5,717,722,[[1173,1,1,717,718],[1183,1,1,718,719],[1187,2,2,719,721],[1188,1,1,721,722]]]],[23174,23177,23199,23207,23212,23213,23355,23358,23364,23366,23367,23377,23381,23382,23383,23390,23391,23394,23401,23462,23463,23484,23491,23492,23500,23513,23514,23528,23536,23537,23538,23549,23550,23566,23567,23576,23591,23596,23599,23613,23615,23625,23626,23636,23643,23645,23646,23648,23649,23657,23659,23660,23661,23665,23667,23674,23678,23680,23686,23688,23689,23695,23696,23704,23707,23711,23717,23719,23720,23722,23724,23730,23748,23766,23767,23773,23776,23778,23779,23780,23785,23788,23789,23790,23805,23809,23813,23814,23817,23824,23842,23847,23850,23853,23854,23855,23856,23864,23885,23890,23896,23901,23909,23916,23959,23961,24016,24020,24030,24032,24034,24055,24064,24069,24072,24075,24077,24079,24080,24087,24089,24103,24104,24109,24115,24116,24117,24118,24120,24127,24133,24135,24146,24150,24154,24172,24192,24200,24201,24232,24268,24279,24320,24362,24363,24371,24398,24423,24429,24431,24438,24444,24469,24473,24490,24492,24505,24520,24534,24555,24559,24561,24567,24574,24577,24591,24592,24593,24602,24606,24608,24609,24617,24624,24625,24626,24627,24639,24640,24646,24654,24669,24680,24688,24689,24690,24697,24705,24707,24709,24719,24760,24770,24772,24774,24776,24778,24802,24816,24826,24828,24838,24865,24880,24881,24888,24906,24911,24912,24921,24923,24927,24928,24931,24935,24939,24953,24954,24983,24988,25001,25007,25021,25022,25037,25038,25039,25066,25069,25071,25072,25075,25086,25087,25106,25111,25112,25117,25127,25129,25131,25134,25138,25140,25141,25148,25149,25154,25155,25156,25204,25208,25209,25215,25217,25226,25235,25238,25243,25245,25255,25266,25267,25270,25273,25275,25290,25291,25293,25297,25304,25310,25313,25314,25315,25320,25321,25334,25342,25344,25349,25350,25351,25355,25356,25358,25359,25360,25361,25362,25363,25381,25384,25386,25389,25390,25391,25392,25393,25398,25400,25403,25404,25406,25407,25410,25420,25422,25432,25433,25444,25451,25454,25472,25473,25474,25477,25479,25481,25500,25501,25520,25525,25530,25533,25538,25541,25550,25568,25569,25571,25572,25573,25574,25575,25576,25578,25599,25600,25605,25609,25610,25615,25617,25619,25622,25623,25626,25627,25635,25644,25645,25647,25650,25651,25652,25656,25657,25665,25668,25670,25671,25673,25688,25692,25694,25704,25707,25709,25710,25712,25714,25715,25716,25717,25719,25729,25730,25736,25739,25740,25743,25744,25748,25750,25755,25756,25763,25764,25765,25770,25771,25782,25787,25792,25795,25796,25802,25803,25804,25813,25818,25820,25821,25824,25829,25831,25834,25873,25874,25879,25881,25889,25895,25897,25898,25899,25900,25902,25904,25910,25912,25913,25915,25916,25920,25922,25924,25925,25931,25934,25935,25939,25957,25963,25978,25981,25996,26008,26009,26010,26015,26016,26023,26029,26032,26035,26037,26066,26067,26069,26074,26077,26082,26086,26090,26092,26094,26111,26113,26114,26115,26117,26122,26123,26127,26129,26130,26146,26147,26148,26166,26169,26173,26183,26188,26204,26208,26209,26221,26222,26224,26229,26267,26282,26283,26285,26286,26287,26289,26291,26292,26293,26298,26300,26310,26316,26317,26318,26324,26331,26337,26344,26348,26349,26361,26363,26364,26366,26370,26373,26380,26388,26391,26392,26394,26395,26402,26404,26405,26409,26420,26422,26423,26429,26433,26438,26439,26447,26451,26452,26455,26457,26460,26463,26464,26465,26466,26468,26470,26474,26475,26476,26477,26479,26480,26481,26488,26507,26515,26527,26534,26535,26537,26539,26544,26548,26551,26557,26560,26564,26565,26572,26586,26587,26599,26610,26615,26619,26621,26624,26637,26641,26642,26651,26663,26691,26694,26696,26719,26730,26741,26743,26745,26760,26789,26791,26792,26796,26806,26810,26814,26815,26816,26818,26822,26823,26849,26855,26881,26887,26888,26889,26892,26893,26895,26904,26915,26918,26921,26930,26934,26938,26947,26983,26986,27000,27002,27018,27030,27041,27045,27046,27047,27062,27067,27068,27078,27088,27094,27103,27117,27119,27123,27149,27153,27172,27176,27196,27200,27205,27210,27213,27221,27222,27226,27231,27233,27250,27256,27263,27273,27278,27280,27281,27293,27315,27320,27345,27348,27352,27354,27364,27372,27378,27384,27408,27449,27478,27501,27514,27555,27563,27571,27587,27588,27589,27600,27610,27636,27644,27661,27675,27684,27703,27712,27714,27717,27718,27723,27725,27729,27731,27735,27737,27738,27745,27748,27754,27791,27805,27806,27838,27852,27886,27920,27928,28914,29095,29904,29968,30005,30140,30163,30233,30304,30681,30824,30982,31058,31059,31086]]],["saith",[2,2,[[40,1,1,0,1,[[967,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]]],[24663,26406]]],["say",[64,58,[[39,16,14,0,14,[[933,3,2,0,2],[937,2,1,2,3],[943,1,1,3,4],[949,4,4,4,8],[951,1,1,8,9],[952,3,3,9,12],[954,1,1,12,13],[955,1,1,13,14]]],[40,11,9,14,23,[[957,1,1,14,15],[958,2,1,15,16],[963,1,1,16,17],[967,5,4,17,21],[969,1,1,21,22],[970,1,1,22,23]]],[41,15,14,23,37,[[977,2,1,23,24],[979,2,2,24,26],[982,1,1,26,27],[983,2,2,27,29],[984,3,3,29,32],[985,1,1,32,33],[986,2,2,33,35],[992,2,2,35,37]]],[42,4,4,37,41,[[1004,1,1,37,38],[1008,2,2,38,40],[1016,1,1,40,41]]],[43,2,2,41,43,[[1041,1,1,41,42],[1045,1,1,42,43]]],[45,7,7,43,50,[[1062,1,1,43,44],[1071,1,1,44,45],[1072,1,1,45,46],[1073,4,4,46,50]]],[50,1,1,50,51,[[1110,1,1,50,51]]],[58,3,2,51,53,[[1147,3,2,51,53]]],[61,4,4,53,57,[[1159,3,3,53,56],[1162,1,1,56,57]]],[65,1,1,57,58,[[1188,1,1,57,58]]]],[23245,23256,23384,23638,23829,23847,23851,23852,23957,23980,23983,24005,24072,24193,24259,24269,24474,24643,24663,24671,24672,24738,24768,25130,25202,25235,25373,25410,25412,25470,25471,25504,25553,25563,25570,25784,25785,26436,26607,26629,26884,27789,27925,28378,28595,28622,28637,28649,28650,28655,29559,30296,30309,30546,30548,30550,30623,31097]]],["saying",[15,15,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,3,3,1,4,[[977,1,1,1,2],[986,1,1,2,3],[994,1,1,3,4]]],[42,2,2,4,6,[[1007,1,1,4,5],[1014,1,1,5,6]]],[43,9,9,6,15,[[1024,3,3,6,9],[1027,1,1,9,10],[1033,1,1,10,11],[1035,1,1,11,12],[1036,1,1,12,13],[1038,1,1,13,14],[1040,1,1,14,15]]]],[24098,25120,25558,25872,26551,26807,27142,27143,27151,27262,27503,27578,27606,27678,27757]]],["spake",[29,29,[[39,3,3,0,3,[[944,1,1,0,1],[945,1,1,1,2],[950,1,1,2,3]]],[40,4,4,3,7,[[959,1,1,3,4],[965,1,1,4,5],[968,1,1,5,6],[970,1,1,6,7]]],[41,9,9,7,16,[[978,1,1,7,8],[979,1,1,8,9],[980,1,1,9,10],[984,1,1,10,11],[986,1,1,11,12],[987,1,1,12,13],[991,1,1,13,14],[992,1,1,14,15],[993,1,1,15,16]]],[42,12,12,16,28,[[997,1,1,16,17],[1003,1,1,17,18],[1005,1,1,18,19],[1006,2,2,19,21],[1007,1,1,21,22],[1008,1,1,22,23],[1009,1,1,23,24],[1014,3,3,24,27],[1017,1,1,27,28]]],[43,1,1,28,29,[[1035,1,1,28,29]]]],[23683,23713,23873,24297,24556,24699,24793,25185,25234,25249,25475,25556,25591,25742,25781,25855,26059,26367,26462,26487,26522,26574,26618,26658,26794,26801,26817,26917,27566]]],["speak",[6,6,[[39,2,2,0,2,[[936,1,1,0,1],[938,1,1,1,2]]],[41,2,2,2,4,[[978,1,1,2,3],[984,1,1,3,4]]],[43,2,2,4,6,[[1019,1,1,4,5],[1038,1,1,5,6]]]],[23353,23444,25172,25472,26978,27701]]],["speaketh",[2,1,[[39,2,1,0,1,[[940,2,1,0,1]]]],[23521]]],["spoken",[19,19,[[40,2,2,0,2,[[957,1,1,0,1],[968,1,1,1,2]]],[41,4,4,2,6,[[984,1,1,2,3],[991,1,1,3,4],[992,1,1,4,5],[996,1,1,5,6]]],[42,7,7,6,13,[[1000,1,1,6,7],[1005,1,1,7,8],[1007,1,1,8,9],[1014,2,2,9,11],[1016,1,1,11,12],[1017,1,1,12,13]]],[43,6,6,13,19,[[1018,1,1,13,14],[1036,1,1,14,15],[1037,1,1,15,16],[1043,1,1,16,17],[1044,1,1,17,18],[1045,1,1,18,19]]]],[24257,24685,25462,25759,25798,26031,26206,26446,26566,26786,26807,26885,26917,26932,27626,27662,27853,27890,27924]]],["tell",[19,18,[[39,6,6,0,6,[[936,1,1,0,1],[944,1,1,1,2],[946,1,1,2,3],[949,1,1,3,4],[954,1,1,4,5],[956,1,1,5,6]]],[40,3,3,6,9,[[963,1,1,6,7],[964,1,1,7,8],[972,1,1,8,9]]],[41,6,5,9,14,[[977,1,1,9,10],[980,1,1,10,11],[981,1,1,11,12],[985,1,1,12,13],[994,2,1,13,14]]],[42,4,4,14,18,[[999,1,1,14,15],[1006,1,1,15,16],[1014,1,1,16,17],[1016,1,1,17,18]]]],[23349,23692,23744,23850,24117,24202,24499,24526,24880,25121,25301,25322,25550,25931,26132,26505,26819,26882]]],["told",[12,12,[[39,2,2,0,2,[[940,1,1,0,1],[956,1,1,1,2]]],[40,2,2,2,4,[[961,1,1,2,3],[965,1,1,3,4]]],[42,8,8,4,12,[[999,1,1,4,5],[1000,2,2,5,7],[1005,1,1,7,8],[1006,1,1,8,9],[1007,1,1,9,10],[1012,1,1,10,11],[1014,1,1,11,12]]]],[23537,24202,24397,24550,26132,26185,26195,26467,26506,26569,26730,26793]]]]},{"k":"G2037","v":[["Erastus",[3,3,[[43,1,1,0,1,[[1036,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[27607,28359,29890]]]]},{"k":"G2038","v":[["*",[39,37,[[39,4,4,0,4,[[935,1,1,0,1],[949,1,1,1,2],[953,1,1,2,3],[954,1,1,3,4]]],[40,1,1,4,5,[[970,1,1,4,5]]],[41,1,1,5,6,[[985,1,1,5,6]]],[42,8,6,6,12,[[999,1,1,6,7],[1001,2,1,7,8],[1002,3,3,8,11],[1005,2,1,11,12]]],[43,3,3,12,15,[[1027,1,1,12,13],[1030,1,1,13,14],[1035,1,1,14,15]]],[44,4,4,15,19,[[1047,1,1,15,16],[1049,2,2,16,18],[1058,1,1,18,19]]],[45,4,4,19,23,[[1065,1,1,19,20],[1070,2,2,20,22],[1077,1,1,22,23]]],[47,1,1,23,24,[[1096,1,1,23,24]]],[48,1,1,24,25,[[1100,1,1,24,25]]],[50,1,1,25,26,[[1109,1,1,25,26]]],[51,2,2,26,28,[[1112,1,1,26,27],[1114,1,1,27,28]]],[52,4,4,28,32,[[1118,4,4,28,32]]],[57,1,1,32,33,[[1143,1,1,32,33]]],[58,1,1,33,34,[[1147,1,1,33,34]]],[62,1,1,34,35,[[1164,1,1,34,35]]],[63,1,1,35,36,[[1165,1,1,35,36]]],[65,1,1,36,37,[[1184,1,1,36,37]]]],[23339,23854,24024,24064,24760,25532,26141,26227,26284,26285,26287,26444,27294,27403,27560,27972,28026,28027,28276,28445,28546,28553,28786,29198,29300,29540,29579,29614,29686,29688,29689,29690,30205,30302,30653,30663,31010]]],["+",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28546]]],["Labour",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26284]]],["commit",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30302]]],["do",[2,2,[[47,1,1,0,1,[[1096,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29198,29540]]],["doest",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30663]]],["labouring",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29579]]],["minister",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28553]]],["trade",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31010]]],["traded",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24024]]],["work",[12,11,[[39,2,2,0,2,[[935,1,1,0,1],[949,1,1,1,2]]],[41,1,1,2,3,[[985,1,1,2,3]]],[42,5,4,3,7,[[1001,1,1,3,4],[1002,2,2,4,6],[1005,2,1,6,7]]],[43,1,1,7,8,[[1030,1,1,7,8]]],[51,1,1,8,9,[[1114,1,1,8,9]]],[52,2,2,9,11,[[1118,2,2,9,11]]]],[23339,23854,25532,26227,26285,26287,26444,27403,29614,29688,29690]]],["worketh",[7,7,[[42,1,1,0,1,[[1001,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]],[44,4,4,2,6,[[1047,1,1,2,3],[1049,2,2,3,5],[1058,1,1,5,6]]],[45,1,1,6,7,[[1077,1,1,6,7]]]],[26227,27294,27972,28026,28027,28276,28786]]],["working",[3,3,[[45,1,1,0,1,[[1065,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[52,1,1,2,3,[[1118,1,1,2,3]]]],[28445,29300,29689]]],["wrought",[7,7,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,1,1,2,3,[[999,1,1,2,3]]],[43,1,1,3,4,[[1035,1,1,3,4]]],[52,1,1,4,5,[[1118,1,1,4,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]],[62,1,1,6,7,[[1164,1,1,6,7]]]],[24064,24760,26141,27560,29686,30205,30653]]]]},{"k":"G2039","v":[["*",[6,6,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,4,4,1,5,[[1033,2,2,1,3],[1036,2,2,3,5]]],[48,1,1,5,6,[[1100,1,1,5,6]]]],[25517,27499,27502,27609,27610,29291]]],["craft",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27610]]],["diligence",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25517]]],["gain",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1036,1,1,1,2]]]],[27499,27609]]],["gains",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27502]]],["work",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29291]]]]},{"k":"G2040","v":[["*",[16,15,[[39,6,6,0,6,[[937,2,2,0,2],[938,1,1,2,3],[948,3,3,3,6]]],[41,4,3,6,9,[[982,3,2,6,8],[985,1,1,8,9]]],[43,1,1,9,10,[[1036,1,1,9,10]]],[46,1,1,10,11,[[1088,1,1,10,11]]],[49,1,1,11,12,[[1105,1,1,11,12]]],[53,1,1,12,13,[[1123,1,1,12,13]]],[54,1,1,13,14,[[1126,1,1,13,14]]],[58,1,1,14,15,[[1150,1,1,14,15]]]],[23416,23417,23427,23793,23794,23800,25365,25370,25545,27610,29002,29423,29781,29842,30358]]],["labourer",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[25370,29781]]],["labourers",[8,7,[[39,5,5,0,5,[[937,2,2,0,2],[948,3,3,2,5]]],[41,2,1,5,6,[[982,2,1,5,6]]],[58,1,1,6,7,[[1150,1,1,6,7]]]],[23416,23417,23793,23794,23800,25365,30358]]],["workers",[3,3,[[41,1,1,0,1,[[985,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]]],[25545,29002,29423]]],["workman",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[23427,29842]]],["workmen",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27610]]]]},{"k":"G2041","v":[["*",[176,161,[[39,5,5,0,5,[[933,1,1,0,1],[939,1,1,1,2],[951,2,2,2,4],[954,1,1,4,5]]],[40,2,2,5,7,[[969,1,1,5,6],[970,1,1,6,7]]],[41,2,2,7,9,[[983,1,1,7,8],[996,1,1,8,9]]],[42,27,25,9,34,[[999,3,3,9,12],[1000,1,1,12,13],[1001,3,2,13,15],[1002,2,2,15,17],[1003,3,3,17,20],[1004,2,2,20,22],[1005,2,2,22,24],[1006,6,5,24,29],[1010,3,3,29,32],[1011,1,1,32,33],[1013,1,1,33,34]]],[43,11,10,34,44,[[1022,1,1,34,35],[1024,2,2,35,37],[1026,1,1,37,38],[1030,3,2,38,40],[1031,1,1,40,41],[1032,2,2,41,43],[1043,1,1,43,44]]],[44,18,15,44,59,[[1047,3,3,44,47],[1048,3,3,47,50],[1049,2,2,50,52],[1054,2,2,52,54],[1056,4,1,54,55],[1058,2,2,55,57],[1059,1,1,57,58],[1060,1,1,58,59]]],[45,8,7,59,66,[[1064,4,3,59,62],[1066,1,1,62,63],[1070,1,1,63,64],[1076,1,1,64,65],[1077,1,1,65,66]]],[46,3,3,66,69,[[1086,1,1,66,67],[1087,1,1,67,68],[1088,1,1,68,69]]],[47,8,6,69,75,[[1092,3,1,69,70],[1093,3,3,70,73],[1095,1,1,73,74],[1096,1,1,74,75]]],[48,4,4,75,79,[[1098,2,2,75,77],[1100,1,1,77,78],[1101,1,1,78,79]]],[49,3,3,79,82,[[1103,2,2,79,81],[1104,1,1,81,82]]],[50,3,3,82,85,[[1107,2,2,82,84],[1109,1,1,84,85]]],[51,2,2,85,87,[[1111,1,1,85,86],[1115,1,1,86,87]]],[52,2,2,87,89,[[1116,1,1,87,88],[1117,1,1,88,89]]],[53,6,5,89,94,[[1120,1,1,89,90],[1121,1,1,90,91],[1123,3,2,91,93],[1124,1,1,93,94]]],[54,6,6,94,100,[[1125,1,1,94,95],[1126,1,1,95,96],[1127,1,1,96,97],[1128,3,3,97,100]]],[55,8,7,100,107,[[1129,2,1,100,101],[1130,2,2,101,103],[1131,4,4,103,107]]],[57,11,11,107,118,[[1133,1,1,107,108],[1134,1,1,108,109],[1135,1,1,109,110],[1136,3,3,110,113],[1138,2,2,113,115],[1141,1,1,115,116],[1142,1,1,116,117],[1145,1,1,117,118]]],[58,15,12,118,130,[[1146,2,2,118,120],[1147,12,9,120,129],[1148,1,1,129,130]]],[59,2,2,130,132,[[1151,1,1,130,131],[1152,1,1,131,132]]],[60,2,2,132,134,[[1157,1,1,132,133],[1158,1,1,133,134]]],[61,3,3,134,137,[[1161,3,3,134,137]]],[62,1,1,137,138,[[1164,1,1,137,138]]],[63,1,1,138,139,[[1165,1,1,138,139]]],[64,1,1,139,140,[[1166,1,1,139,140]]],[65,22,21,140,161,[[1168,10,9,140,149],[1169,4,4,149,153],[1175,1,1,153,154],[1180,1,1,154,155],[1181,1,1,155,156],[1182,1,1,156,157],[1184,1,1,157,158],[1186,2,2,158,160],[1188,1,1,160,161]]]],[23250,23461,23921,23923,24064,24751,24760,25453,26010,26139,26140,26141,26190,26230,26246,26285,26286,26331,26335,26349,26420,26422,26443,26444,26506,26513,26514,26518,26519,26678,26679,26680,26723,26763,27097,27138,27157,27252,27364,27403,27440,27460,27480,27843,27968,27969,27977,28011,28018,28019,28024,28028,28166,28187,28215,28269,28278,28300,28321,28423,28424,28425,28456,28541,28776,28786,28964,28982,29004,29097,29104,29107,29112,29181,29192,29238,29239,29284,29315,29367,29383,29421,29475,29486,29534,29563,29634,29660,29678,29726,29732,29773,29788,29806,29818,29848,29870,29875,29884,29888,29908,29915,29922,29924,29928,29931,29937,29973,29984,30004,30017,30018,30024,30045,30054,30119,30157,30262,30270,30291,30307,30310,30311,30313,30314,30315,30317,30318,30319,30332,30391,30411,30508,30532,30587,30591,30597,30656,30668,30687,30719,30722,30723,30726,30730,30736,30739,30740,30743,30747,30748,30754,30761,30860,30939,30949,30965,30999,31050,31051,31092]]],["+",[4,4,[[42,1,1,0,1,[[1010,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[26679,29634,29806,30307]]],["deed",[6,6,[[41,1,1,0,1,[[996,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[45,1,1,2,3,[[1066,1,1,2,3]]],[46,1,1,3,4,[[1087,1,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]],[61,1,1,5,6,[[1161,1,1,5,6]]]],[26010,28321,28456,28982,29534,30597]]],["deeds",[16,16,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,4,4,1,5,[[999,3,3,1,4],[1004,1,1,4,5]]],[43,1,1,5,6,[[1024,1,1,5,6]]],[44,3,3,6,9,[[1047,1,1,6,7],[1048,2,2,7,9]]],[60,1,1,9,10,[[1157,1,1,9,10]]],[62,1,1,10,11,[[1164,1,1,10,11]]],[63,1,1,11,12,[[1165,1,1,11,12]]],[64,1,1,12,13,[[1166,1,1,12,13]]],[65,3,3,13,16,[[1168,2,2,13,15],[1182,1,1,15,16]]]],[25453,26139,26140,26141,26422,27138,27968,28011,28019,30508,30656,30668,30687,30723,30739,30965]]],["doing",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27969]]],["labour",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29383]]],["work",[47,44,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[969,1,1,1,2],[970,1,1,2,3]]],[42,5,5,3,8,[[1000,1,1,3,4],[1002,1,1,4,5],[1003,1,1,5,6],[1006,1,1,6,7],[1013,1,1,7,8]]],[43,6,5,8,13,[[1022,1,1,8,9],[1030,3,2,9,11],[1031,1,1,11,12],[1032,1,1,12,13]]],[44,4,3,13,16,[[1047,1,1,13,14],[1056,2,1,14,15],[1059,1,1,15,16]]],[45,7,6,16,22,[[1064,4,3,16,19],[1070,1,1,19,20],[1076,1,1,20,21],[1077,1,1,21,22]]],[46,1,1,22,23,[[1086,1,1,22,23]]],[47,1,1,23,24,[[1096,1,1,23,24]]],[48,1,1,24,25,[[1100,1,1,24,25]]],[49,2,2,25,27,[[1103,1,1,25,26],[1104,1,1,26,27]]],[50,1,1,27,28,[[1107,1,1,27,28]]],[51,1,1,28,29,[[1111,1,1,28,29]]],[52,2,2,29,31,[[1116,1,1,29,30],[1117,1,1,30,31]]],[53,2,2,31,33,[[1121,1,1,31,32],[1123,1,1,32,33]]],[54,3,3,33,36,[[1126,1,1,33,34],[1128,2,2,34,36]]],[55,2,2,36,38,[[1129,1,1,36,37],[1131,1,1,37,38]]],[57,2,2,38,40,[[1138,1,1,38,39],[1145,1,1,39,40]]],[58,2,2,40,42,[[1146,2,2,40,42]]],[59,1,1,42,43,[[1151,1,1,42,43]]],[65,1,1,43,44,[[1188,1,1,43,44]]]],[24064,24751,24760,26190,26286,26349,26514,26763,27097,27364,27403,27440,27480,27977,28215,28300,28423,28424,28425,28541,28776,28786,28964,29192,29284,29367,29421,29475,29563,29660,29678,29732,29773,29848,29875,29888,29908,29924,30054,30262,30270,30291,30391,31092]]],["works",[101,92,[[39,4,4,0,4,[[933,1,1,0,1],[939,1,1,1,2],[951,2,2,2,4]]],[42,17,15,4,19,[[1001,3,2,4,6],[1002,1,1,6,7],[1003,2,2,7,9],[1004,1,1,9,10],[1005,2,2,10,12],[1006,5,4,12,16],[1010,2,2,16,18],[1011,1,1,18,19]]],[43,4,4,19,23,[[1024,1,1,19,20],[1026,1,1,20,21],[1032,1,1,21,22],[1043,1,1,22,23]]],[44,9,8,23,31,[[1048,1,1,23,24],[1049,2,2,24,26],[1054,2,2,26,28],[1056,2,1,28,29],[1058,2,2,29,31]]],[46,1,1,31,32,[[1088,1,1,31,32]]],[47,7,5,32,37,[[1092,3,1,32,33],[1093,3,3,33,36],[1095,1,1,36,37]]],[48,3,3,37,40,[[1098,2,2,37,39],[1101,1,1,39,40]]],[50,1,1,40,41,[[1107,1,1,40,41]]],[53,3,3,41,44,[[1120,1,1,41,42],[1123,2,2,42,44]]],[54,3,3,44,47,[[1125,1,1,44,45],[1127,1,1,45,46],[1128,1,1,46,47]]],[55,6,6,47,53,[[1129,1,1,47,48],[1130,2,2,48,50],[1131,3,3,50,53]]],[57,9,9,53,62,[[1133,1,1,53,54],[1134,1,1,54,55],[1135,1,1,55,56],[1136,3,3,56,59],[1138,1,1,59,60],[1141,1,1,60,61],[1142,1,1,61,62]]],[58,12,9,62,71,[[1147,11,8,62,70],[1148,1,1,70,71]]],[59,1,1,71,72,[[1152,1,1,71,72]]],[60,1,1,72,73,[[1158,1,1,72,73]]],[61,2,2,73,75,[[1161,2,2,73,75]]],[65,18,17,75,92,[[1168,8,7,75,82],[1169,4,4,82,86],[1175,1,1,86,87],[1180,1,1,87,88],[1181,1,1,88,89],[1184,1,1,89,90],[1186,2,2,90,92]]]],[23250,23461,23921,23923,26230,26246,26285,26331,26335,26420,26443,26444,26506,26513,26518,26519,26678,26680,26723,27157,27252,27460,27843,28018,28024,28028,28166,28187,28215,28269,28278,29004,29097,29104,29107,29112,29181,29238,29239,29315,29486,29726,29773,29788,29818,29870,29884,29908,29915,29922,29928,29931,29937,29973,29984,30004,30017,30018,30024,30045,30119,30157,30310,30311,30313,30314,30315,30317,30318,30319,30332,30411,30532,30587,30591,30719,30722,30726,30730,30736,30740,30743,30747,30748,30754,30761,30860,30939,30949,30999,31050,31051]]]]},{"k":"G2042","v":[["*",[2,2,[[46,1,1,0,1,[[1086,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[28958,29538]]],["provoke",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29538]]],["provoked",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28958]]]]},{"k":"G2043","v":[["fast",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27896]]]]},{"k":"G2044","v":[["utter",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23574]]]]},{"k":"G2045","v":[["*",[6,6,[[42,2,2,0,2,[[1001,1,1,0,1],[1003,1,1,1,2]]],[44,1,1,2,3,[[1053,1,1,2,3]]],[45,1,1,3,4,[[1063,1,1,3,4]]],[59,1,1,4,5,[[1151,1,1,4,5]]],[65,1,1,5,6,[[1168,1,1,5,6]]]],[26249,26380,28143,28404,30385,30740]]],["Search",[2,2,[[42,2,2,0,2,[[1001,1,1,0,1],[1003,1,1,1,2]]]],[26249,26380]]],["Searching",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30385]]],["searcheth",[3,3,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,1,1,1,2,[[1063,1,1,1,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[28143,28404,30740]]]]},{"k":"G2046","v":[["*",[71,71,[[39,11,11,0,11,[[935,2,2,0,2],[941,1,1,2,3],[945,1,1,3,4],[949,3,3,4,7],[953,3,3,7,10],[954,1,1,10,11]]],[40,2,2,11,13,[[967,2,2,11,13]]],[41,18,18,13,31,[[974,1,1,13,14],[976,2,2,14,16],[984,2,2,16,18],[985,2,2,18,20],[986,1,1,20,21],[987,1,1,21,22],[989,4,4,22,26],[991,1,1,26,27],[992,1,1,27,28],[994,2,2,28,30],[995,1,1,30,31]]],[42,6,6,31,37,[[1000,1,1,31,32],[1002,1,1,32,33],[1007,1,1,33,34],[1008,1,1,34,35],[1010,1,1,35,36],[1011,1,1,36,37]]],[43,7,7,37,44,[[1019,1,1,37,38],[1025,1,1,38,39],[1030,2,2,39,41],[1034,1,1,41,42],[1037,1,1,42,43],[1040,1,1,43,44]]],[44,11,11,44,55,[[1048,1,1,44,45],[1049,2,2,45,47],[1051,1,1,47,48],[1052,1,1,48,49],[1053,1,1,49,50],[1054,4,4,50,54],[1056,1,1,54,55]]],[45,3,3,55,58,[[1075,2,2,55,57],[1076,1,1,57,58]]],[46,2,2,58,60,[[1089,2,2,58,60]]],[49,1,1,60,61,[[1106,1,1,60,61]]],[57,6,6,61,67,[[1133,1,1,61,62],[1136,3,3,62,65],[1142,1,1,65,66],[1145,1,1,66,67]]],[58,1,1,67,68,[[1147,1,1,67,68]]],[65,3,3,68,71,[[1173,1,1,68,69],[1183,1,1,69,70],[1185,1,1,70,71]]]],[23320,23338,23569,23720,23829,23850,23851,24042,24048,24049,24129,24669,24671,24997,25075,25086,25469,25478,25543,25545,25562,25606,25658,25659,25672,25674,25762,25784,25875,25877,25964,26174,26322,26536,26630,26697,26714,26965,27200,27396,27402,27551,27664,27739,27996,28023,28040,28069,28098,28147,28169,28174,28175,28185,28228,28694,28701,28753,29028,29031,29446,29976,30017,30018,30021,30142,30246,30311,30824,30982,31020]]],["called",[1,1,[[42,1,1,0,1,[[1011,1,1,0,1]]]],[26714]]],["of",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27402]]],["said",[16,16,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,3,3,1,4,[[974,1,1,1,2],[976,1,1,2,3],[994,1,1,3,4]]],[42,2,2,4,6,[[1002,1,1,4,5],[1008,1,1,5,6]]],[43,2,2,6,8,[[1030,1,1,6,7],[1034,1,1,7,8]]],[46,1,1,8,9,[[1089,1,1,8,9]]],[57,5,5,9,14,[[1133,1,1,9,10],[1136,2,2,10,12],[1142,1,1,12,13],[1145,1,1,13,14]]],[65,2,2,14,16,[[1173,1,1,14,15],[1185,1,1,15,16]]]],[24129,24997,25075,25877,26322,26630,27396,27551,29031,29976,30017,30021,30142,30246,30824,31020]]],["saidst",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26174]]],["say",[40,40,[[39,9,9,0,9,[[935,2,2,0,2],[941,1,1,2,3],[945,1,1,3,4],[949,2,2,4,6],[953,3,3,6,9]]],[40,1,1,9,10,[[967,1,1,9,10]]],[41,14,14,10,24,[[976,1,1,10,11],[984,1,1,11,12],[985,2,2,12,14],[986,1,1,14,15],[987,1,1,15,16],[989,4,4,16,20],[991,1,1,20,21],[992,1,1,21,22],[994,1,1,22,23],[995,1,1,23,24]]],[44,10,10,24,34,[[1048,1,1,24,25],[1049,1,1,25,26],[1051,1,1,26,27],[1052,1,1,27,28],[1053,1,1,28,29],[1054,4,4,29,33],[1056,1,1,33,34]]],[45,3,3,34,37,[[1075,2,2,34,36],[1076,1,1,36,37]]],[46,1,1,37,38,[[1089,1,1,37,38]]],[49,1,1,38,39,[[1106,1,1,38,39]]],[58,1,1,39,40,[[1147,1,1,39,40]]]],[23320,23338,23569,23720,23829,23851,24042,24048,24049,24671,25086,25478,25543,25545,25562,25606,25658,25659,25672,25674,25762,25784,25875,25964,27996,28023,28069,28098,28147,28169,28174,28175,28185,28228,28694,28701,28753,29028,29446,30311]]],["spake",[3,3,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,1,1,1,2,[[1037,1,1,1,2]]],[57,1,1,2,3,[[1136,1,1,2,3]]]],[26536,27664,30018]]],["speak",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[25469,27739]]],["spoken",[3,3,[[43,2,2,0,2,[[1019,1,1,0,1],[1025,1,1,1,2]]],[44,1,1,2,3,[[1049,1,1,2,3]]]],[26965,27200,28040]]],["tell",[3,3,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[65,1,1,2,3,[[1183,1,1,2,3]]]],[23850,24669,30982]]],["told",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26697]]]]},{"k":"G2047","v":[["*",[4,4,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[23666,24504,29015,30210]]],["deserts",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30210]]],["wilderness",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]]],[23666,24504,29015]]]]},{"k":"G2048","v":[["*",[50,50,[[39,8,8,0,8,[[931,2,2,0,2],[932,1,1,2,3],[939,1,1,3,4],[942,2,2,4,6],[951,1,1,6,7],[952,1,1,7,8]]],[40,9,9,8,17,[[957,6,6,8,14],[962,3,3,14,17]]],[41,12,12,17,29,[[973,1,1,17,18],[975,2,2,18,20],[976,2,2,20,22],[977,1,1,22,23],[979,1,1,23,24],[980,1,1,24,25],[981,2,2,25,27],[985,1,1,27,28],[987,1,1,28,29]]],[42,5,5,29,34,[[997,1,1,29,30],[999,1,1,30,31],[1002,2,2,31,33],[1007,1,1,33,34]]],[43,9,9,34,43,[[1018,1,1,34,35],[1024,5,5,35,40],[1025,1,1,40,41],[1030,1,1,41,42],[1038,1,1,42,43]]],[45,1,1,43,44,[[1071,1,1,43,44]]],[47,1,1,44,45,[[1094,1,1,44,45]]],[57,2,2,45,47,[[1135,2,2,45,47]]],[65,3,3,47,50,[[1178,2,2,47,49],[1183,1,1,49,50]]]],[23193,23195,23210,23466,23610,23612,23956,23983,24218,24219,24227,24228,24250,24260,24438,24439,24442,24973,25027,25029,25064,25105,25123,25219,25274,25311,25313,25553,25592,26067,26134,26288,26306,26577,26943,27146,27152,27154,27158,27160,27202,27380,27702,28572,29158,30003,30012,30897,30905,30978]]],["desert",[12,12,[[39,3,3,0,3,[[942,2,2,0,2],[952,1,1,2,3]]],[40,4,4,3,7,[[957,1,1,3,4],[962,3,3,4,7]]],[41,3,3,7,10,[[976,1,1,7,8],[981,2,2,8,10]]],[42,1,1,10,11,[[1002,1,1,10,11]]],[43,1,1,11,12,[[1025,1,1,11,12]]]],[23610,23612,23983,24260,24438,24439,24442,25105,25311,25313,26288,27202]]],["deserts",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24973]]],["desolate",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[43,1,1,2,3,[[1018,1,1,2,3]]],[47,1,1,3,4,[[1094,1,1,3,4]]]],[23956,25553,26943,29158]]],["solitary",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24250]]],["wilderness",[32,32,[[39,4,4,0,4,[[931,2,2,0,2],[932,1,1,2,3],[939,1,1,3,4]]],[40,4,4,4,8,[[957,4,4,4,8]]],[41,7,7,8,15,[[975,2,2,8,10],[976,1,1,10,11],[977,1,1,11,12],[979,1,1,12,13],[980,1,1,13,14],[987,1,1,14,15]]],[42,4,4,15,19,[[997,1,1,15,16],[999,1,1,16,17],[1002,1,1,17,18],[1007,1,1,18,19]]],[43,7,7,19,26,[[1024,5,5,19,24],[1030,1,1,24,25],[1038,1,1,25,26]]],[45,1,1,26,27,[[1071,1,1,26,27]]],[57,2,2,27,29,[[1135,2,2,27,29]]],[65,3,3,29,32,[[1178,2,2,29,31],[1183,1,1,31,32]]]],[23193,23195,23210,23466,24218,24219,24227,24228,25027,25029,25064,25123,25219,25274,25592,26067,26134,26306,26577,27146,27152,27154,27158,27160,27380,27702,28572,30003,30012,30897,30905,30978]]]]},{"k":"G2049","v":[["*",[5,5,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[65,3,3,2,5,[[1183,1,1,2,3],[1184,2,2,3,5]]]],[23514,25422,30991,31010,31012]]],["desolate",[2,2,[[65,2,2,0,2,[[1183,1,1,0,1],[1184,1,1,1,2]]]],[30991,31012]]],["desolation",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23514,25422]]],["nought",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31010]]]]},{"k":"G2050","v":[["desolation",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]]],[23972,24731,25846]]]]},{"k":"G2051","v":[["strive",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23508]]]]},{"k":"G2052","v":[["*",[7,7,[[44,1,1,0,1,[[1047,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]],[49,2,2,3,5,[[1103,1,1,3,4],[1104,1,1,4,5]]],[58,2,2,5,7,[[1148,2,2,5,7]]]],[27970,29042,29182,29377,29394,30333,30335]]],["+",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27970]]],["contention",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29377]]],["strife",[4,4,[[47,1,1,0,1,[[1095,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]],[58,2,2,2,4,[[1148,2,2,2,4]]]],[29182,29394,30333,30335]]],["strifes",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29042]]]]},{"k":"G2053","v":[["wool",[2,2,[[57,1,1,0,1,[[1141,1,1,0,1]]],[65,1,1,1,2,[[1167,1,1,1,2]]]],[30124,30711]]]]},{"k":"G2054","v":[["*",[9,9,[[44,2,2,0,2,[[1046,1,1,0,1],[1058,1,1,1,2]]],[45,2,2,2,4,[[1062,1,1,2,3],[1064,1,1,3,4]]],[46,1,1,4,5,[[1089,1,1,4,5]]],[47,1,1,5,6,[[1095,1,1,5,6]]],[49,1,1,6,7,[[1103,1,1,6,7]]],[53,1,1,7,8,[[1124,1,1,7,8]]],[55,1,1,8,9,[[1131,1,1,8,9]]]],[27959,28279,28374,28413,29042,29182,29376,29792,29932]]],["contentions",[2,2,[[45,1,1,0,1,[[1062,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[28374,29932]]],["debate",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27959]]],["debates",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29042]]],["strife",[4,4,[[44,1,1,0,1,[[1058,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[53,1,1,3,4,[[1124,1,1,3,4]]]],[28279,28413,29376,29792]]],["variance",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29182]]]]},{"k":"G2055","v":[["goats",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24041]]]]},{"k":"G2056","v":[["*",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]]],[24040,25617]]],["goats",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24040]]],["kid",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25617]]]]},{"k":"G2057","v":[["Hermas",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28350]]]]},{"k":"G2058","v":[["interpretation",[2,2,[[45,2,2,0,2,[[1073,1,1,0,1],[1075,1,1,1,2]]]],[28644,28704]]]]},{"k":"G2059","v":[["*",[4,4,[[42,3,3,0,3,[[997,2,2,0,2],[1005,1,1,2,3]]],[57,1,1,3,4,[[1139,1,1,3,4]]]],[26082,26086,26447,30066]]],["interpretation",[3,3,[[42,2,2,0,2,[[997,1,1,0,1],[1005,1,1,1,2]]],[57,1,1,2,3,[[1139,1,1,2,3]]]],[26086,26447,30066]]],["interpreted",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26082]]]]},{"k":"G2060","v":[["*",[2,2,[[43,1,1,0,1,[[1031,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]]],[27426,28350]]],["Hermes",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28350]]],["Mercurius",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27426]]]]},{"k":"G2061","v":[["Hermogenes",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29824]]]]},{"k":"G2062","v":[["*",[4,4,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]]],[27271,27313,27953,30326]]],["serpents",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30326]]],["things",[3,3,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]]],[27271,27313,27953]]]]},{"k":"G2063","v":[["Red",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[27152,30201]]]]},{"k":"G2064","v":[["*",[639,601,[[39,119,113,0,113,[[930,6,6,0,6],[931,4,4,6,10],[932,1,1,10,11],[933,3,2,11,13],[934,1,1,13,14],[935,3,3,14,17],[936,7,6,17,23],[937,8,7,23,30],[938,5,4,30,34],[939,4,4,34,38],[940,3,3,38,41],[941,6,6,41,47],[942,6,5,47,52],[943,3,3,52,55],[944,5,5,55,60],[945,5,5,60,65],[946,4,3,65,68],[947,2,2,68,70],[948,3,3,70,73],[949,7,7,73,80],[950,1,1,80,81],[951,2,2,81,83],[952,8,8,83,91],[953,9,9,91,100],[954,6,6,100,106],[955,4,4,106,110],[956,3,3,110,113]]],[40,84,81,113,194,[[957,7,7,113,120],[958,5,5,120,125],[959,3,3,125,128],[960,4,4,128,132],[961,9,9,132,141],[962,6,6,141,147],[963,3,3,147,150],[964,4,4,150,154],[965,7,7,154,161],[966,6,6,161,167],[967,7,5,167,172],[968,4,4,172,176],[969,4,4,176,180],[970,10,9,180,189],[971,3,3,189,192],[972,2,2,192,194]]],[41,101,96,194,290,[[973,2,2,194,196],[974,4,4,196,200],[975,3,3,200,203],[976,3,3,203,206],[977,5,4,206,210],[978,2,2,210,212],[979,8,7,212,219],[980,6,6,219,225],[981,3,3,225,228],[982,3,3,228,231],[983,3,3,231,234],[984,10,9,234,243],[985,4,4,243,247],[986,8,8,247,255],[987,5,5,255,260],[988,2,2,260,262],[989,6,4,262,266],[990,5,5,266,271],[991,7,7,271,278],[992,1,1,278,279],[993,3,3,279,282],[994,3,3,282,285],[995,3,3,285,288],[996,2,2,288,290]]],[42,156,142,290,432,[[997,12,11,290,301],[999,11,8,301,309],[1000,16,14,309,323],[1001,7,6,323,329],[1002,12,11,329,340],[1003,11,11,340,351],[1004,7,6,351,357],[1005,3,3,357,360],[1006,5,4,360,364],[1007,12,12,364,376],[1008,12,11,376,387],[1009,3,3,387,390],[1010,6,6,390,396],[1011,2,2,396,398],[1012,11,9,398,407],[1013,3,3,407,410],[1014,3,3,410,413],[1015,5,4,413,417],[1016,10,10,417,427],[1017,5,5,427,432]]],[43,54,54,432,486,[[1018,1,1,432,433],[1019,1,1,433,434],[1020,1,1,434,435],[1021,1,1,435,436],[1022,1,1,436,437],[1024,1,1,437,438],[1025,3,3,438,441],[1026,2,2,441,443],[1027,1,1,443,444],[1028,2,2,444,446],[1029,2,2,446,448],[1030,4,4,448,452],[1031,1,1,452,453],[1032,1,1,453,454],[1033,3,3,454,457],[1034,3,3,457,460],[1035,4,4,460,464],[1036,5,5,464,469],[1037,4,4,469,473],[1038,4,4,473,477],[1039,3,3,477,480],[1041,1,1,480,481],[1042,1,1,481,482],[1044,1,1,482,483],[1045,3,3,483,486]]],[44,11,10,486,496,[[1046,2,2,486,488],[1048,1,1,488,489],[1052,1,1,489,490],[1054,1,1,490,491],[1060,6,5,491,496]]],[45,18,15,496,511,[[1063,2,1,496,497],[1065,4,4,497,501],[1072,2,2,501,503],[1074,1,1,503,504],[1075,1,1,504,505],[1076,1,1,505,506],[1077,7,5,506,511]]],[46,16,16,511,527,[[1078,3,3,511,514],[1079,3,3,514,517],[1084,1,1,517,518],[1086,1,1,518,519],[1088,2,2,519,521],[1089,4,4,521,525],[1090,2,2,525,527]]],[47,8,7,527,534,[[1091,1,1,527,528],[1092,3,2,528,530],[1093,3,3,530,533],[1094,1,1,533,534]]],[48,2,2,534,536,[[1098,1,1,534,535],[1101,1,1,535,536]]],[49,3,3,536,539,[[1103,2,2,536,538],[1104,1,1,538,539]]],[50,2,2,539,541,[[1109,1,1,539,540],[1110,1,1,540,541]]],[51,4,4,541,545,[[1111,1,1,541,542],[1112,1,1,542,543],[1113,1,1,543,544],[1115,1,1,544,545]]],[52,2,2,545,547,[[1116,1,1,545,546],[1117,1,1,546,547]]],[53,4,4,547,551,[[1119,1,1,547,548],[1120,1,1,548,549],[1121,1,1,549,550],[1122,1,1,550,551]]],[54,4,4,551,555,[[1127,1,1,551,552],[1128,3,3,552,555]]],[55,1,1,555,556,[[1131,1,1,555,556]]],[57,5,5,556,561,[[1138,1,1,556,557],[1140,1,1,557,558],[1142,1,1,558,559],[1143,1,1,559,560],[1145,1,1,560,561]]],[60,1,1,561,562,[[1158,1,1,561,562]]],[61,5,4,562,566,[[1160,1,1,562,563],[1162,3,2,563,565],[1163,1,1,565,566]]],[62,3,3,566,569,[[1164,3,3,566,569]]],[63,2,2,569,571,[[1165,2,2,569,571]]],[64,1,1,571,572,[[1166,1,1,571,572]]],[65,33,29,572,601,[[1167,1,1,572,573],[1168,2,2,573,575],[1169,2,2,575,577],[1171,1,1,577,578],[1172,5,5,578,583],[1173,2,2,583,585],[1174,1,1,585,586],[1175,1,1,586,587],[1177,2,2,587,589],[1180,2,2,589,591],[1182,1,1,591,592],[1183,3,2,592,594],[1184,1,1,594,595],[1185,1,1,595,596],[1187,1,1,596,597],[1188,7,4,597,601]]]],[23171,23177,23178,23180,23190,23192,23199,23203,23206,23208,23222,23251,23258,23292,23331,23341,23343,23347,23352,23354,23359,23373,23374,23380,23389,23392,23394,23397,23402,23407,23430,23440,23451,23452,23462,23473,23477,23478,23498,23531,23533,23543,23558,23564,23571,23575,23593,23609,23625,23626,23630,23631,23658,23662,23672,23677,23685,23696,23699,23700,23710,23711,23712,23714,23724,23734,23738,23758,23763,23776,23801,23802,23820,23827,23831,23835,23845,23849,23858,23866,23875,23953,23957,23962,23987,23996,23999,24000,24001,24003,24005,24014,24018,24019,24021,24027,24035,24039,24044,24047,24090,24094,24097,24099,24101,24118,24162,24178,24186,24193,24196,24206,24208,24222,24224,24229,24239,24244,24255,24260,24263,24273,24277,24278,24280,24296,24307,24319,24327,24338,24344,24345,24365,24379,24386,24387,24390,24391,24397,24399,24402,24408,24428,24436,24438,24455,24460,24464,24488,24494,24510,24522,24534,24538,24539,24545,24549,24550,24551,24552,24571,24589,24602,24618,24633,24634,24638,24649,24650,24653,24655,24667,24682,24687,24691,24715,24723,24743,24752,24753,24757,24770,24771,24786,24791,24795,24799,24816,24820,24847,24862,24869,24874,24875,24936,24952,24989,25000,25017,25024,25028,25037,25041,25079,25097,25105,25114,25124,25139,25142,25163,25193,25198,25202,25203,25214,25215,25228,25229,25257,25262,25280,25286,25292,25294,25324,25327,25357,25364,25395,25396,25407,25430,25436,25495,25496,25497,25498,25499,25502,25504,25508,25513,25524,25525,25532,25553,25554,25562,25563,25570,25573,25579,25580,25584,25594,25605,25608,25613,25618,25641,25648,25652,25671,25673,25678,25691,25693,25696,25704,25718,25736,25741,25744,25749,25751,25754,25769,25795,25832,25834,25853,25871,25882,25909,25961,25964,25977,25992,26014,26051,26053,26055,26059,26071,26073,26074,26075,26083,26090,26091,26122,26128,26139,26140,26141,26142,26146,26151,26161,26163,26171,26172,26177,26179,26181,26183,26186,26191,26196,26201,26202,26210,26217,26234,26235,26238,26250,26253,26262,26271,26272,26274,26280,26281,26292,26294,26301,26302,26322,26355,26356,26358,26359,26362,26364,26365,26369,26370,26373,26378,26383,26395,26401,26402,26403,26423,26444,26447,26479,26489,26491,26493,26522,26540,26542,26543,26550,26552,26553,26555,26557,26561,26568,26571,26579,26581,26589,26592,26593,26595,26602,26603,26607,26608,26626,26627,26631,26636,26663,26671,26674,26686,26691,26696,26698,26721,26725,26728,26730,26733,26734,26739,26747,26751,26754,26758,26760,26770,26772,26788,26789,26822,26857,26858,26863,26864,26868,26869,26870,26871,26873,26875,26885,26886,26891,26893,26901,26906,26911,26920,26921,26934,26969,27015,27045,27074,27127,27203,27212,27216,27233,27237,27288,27312,27319,27347,27349,27375,27387,27406,27413,27438,27472,27490,27520,27522,27524,27536,27538,27558,27559,27564,27578,27586,27589,27591,27603,27612,27628,27632,27640,27641,27665,27672,27675,27686,27715,27717,27734,27777,27819,27863,27912,27913,27915,27940,27943,27999,28100,28164,28325,28326,28327,28332,28335,28395,28438,28451,28452,28454,28626,28634,28675,28684,28753,28778,28781,28786,28787,28788,28815,28816,28823,28825,28827,28836,28921,28960,28993,28998,29023,29036,29042,29043,29044,29045,29078,29092,29093,29121,29125,29127,29135,29246,29310,29373,29388,29415,29523,29552,29570,29588,29596,29623,29659,29664,29711,29720,29745,29760,29860,29879,29883,29891,29935,30051,30100,30170,30180,30264,30525,30568,30605,30606,30630,30652,30655,30657,30661,30668,30686,30704,30722,30733,30756,30757,30786,30794,30796,30798,30800,30810,30823,30824,30830,30852,30886,30890,30933,30941,30969,30976,30985,31003,31024,31062,31087,31092,31097,31100]]],["+",[7,7,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]],[43,3,3,3,6,[[1020,1,1,3,4],[1028,1,1,4,5],[1036,1,1,5,6]]],[62,1,1,6,7,[[1164,1,1,6,7]]]],[24390,25142,26864,27015,27319,27612,30655]]],["Came",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27717]]],["Come",[12,11,[[39,2,2,0,2,[[936,1,1,0,1],[942,1,1,1,2]]],[41,2,2,2,4,[[979,1,1,2,3],[986,1,1,3,4]]],[42,2,2,4,6,[[997,2,2,4,6]]],[65,6,5,6,11,[[1172,4,4,6,10],[1188,2,1,10,11]]]],[23354,23626,25203,25570,26083,26090,30794,30796,30798,30800,31097]]],["appear",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27734]]],["brought",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24344]]],["by",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27074]]],["came",[194,192,[[39,41,41,0,41,[[930,3,3,0,3],[932,1,1,3,4],[935,2,2,4,6],[936,1,1,6,7],[937,4,4,7,11],[938,1,1,11,12],[939,2,2,12,14],[940,1,1,14,15],[941,2,2,15,17],[942,2,2,17,19],[943,3,3,19,22],[944,1,1,22,23],[946,1,1,23,24],[947,1,1,24,25],[948,3,3,25,28],[949,2,2,28,30],[952,1,1,30,31],[953,4,4,31,35],[954,2,2,35,37],[955,1,1,37,38],[956,3,3,38,41]]],[40,32,31,41,72,[[957,4,4,41,45],[958,1,1,45,46],[959,2,2,46,48],[960,1,1,48,49],[961,3,3,49,52],[962,3,3,52,55],[963,3,3,55,58],[964,1,1,58,59],[965,3,3,59,62],[966,3,3,62,65],[967,2,1,65,66],[968,1,1,66,67],[970,3,3,67,70],[971,1,1,70,71],[972,1,1,71,72]]],[41,31,31,72,103,[[973,1,1,72,73],[974,3,3,73,76],[975,2,2,76,78],[976,2,2,78,80],[977,2,2,80,82],[978,1,1,82,83],[979,1,1,83,84],[980,3,3,84,87],[982,2,2,87,89],[983,1,1,89,90],[985,1,1,90,91],[987,3,3,91,94],[988,1,1,94,95],[989,1,1,95,96],[990,1,1,96,97],[991,3,3,97,100],[994,1,1,100,101],[996,2,2,101,103]]],[42,40,40,103,143,[[997,3,3,103,106],[999,3,3,106,109],[1000,3,3,109,112],[1002,2,2,112,114],[1003,2,2,114,116],[1004,3,3,116,119],[1005,1,1,119,120],[1006,1,1,120,121],[1007,4,4,121,125],[1008,5,5,125,130],[1014,1,1,130,131],[1015,4,4,131,135],[1016,7,7,135,142],[1017,1,1,142,143]]],[43,29,29,143,172,[[1024,1,1,143,144],[1025,2,2,144,146],[1026,1,1,146,147],[1027,1,1,147,148],[1028,1,1,148,149],[1029,2,2,149,151],[1030,2,2,151,153],[1031,1,1,153,154],[1032,1,1,154,155],[1033,1,1,155,156],[1034,2,2,156,158],[1035,1,1,158,159],[1036,3,3,159,162],[1037,4,4,162,166],[1038,2,2,166,168],[1039,1,1,168,169],[1044,1,1,169,170],[1045,2,2,170,172]]],[44,1,1,172,173,[[1052,1,1,172,173]]],[45,2,1,173,174,[[1063,2,1,173,174]]],[46,4,4,174,178,[[1078,1,1,174,175],[1079,2,2,175,177],[1088,1,1,177,178]]],[47,3,3,178,181,[[1091,1,1,178,179],[1092,1,1,179,180],[1093,1,1,180,181]]],[48,1,1,181,182,[[1098,1,1,181,182]]],[51,1,1,182,183,[[1113,1,1,182,183]]],[53,1,1,183,184,[[1119,1,1,183,184]]],[61,1,1,184,185,[[1163,1,1,184,185]]],[63,1,1,185,186,[[1165,1,1,185,186]]],[65,6,6,186,192,[[1171,1,1,186,187],[1173,2,2,187,189],[1174,1,1,189,190],[1183,1,1,190,191],[1187,1,1,191,192]]]],[23178,23190,23192,23222,23341,23343,23347,23380,23389,23397,23402,23451,23477,23478,23531,23543,23564,23630,23631,23658,23662,23672,23685,23758,23763,23801,23802,23820,23845,23858,23996,24018,24019,24044,24047,24097,24101,24186,24196,24206,24208,24224,24229,24255,24260,24277,24296,24319,24327,24391,24397,24399,24408,24436,24460,24464,24488,24494,24510,24545,24552,24571,24633,24634,24638,24653,24715,24757,24770,24786,24869,24875,24952,24989,25000,25024,25028,25037,25079,25105,25114,25139,25163,25228,25280,25286,25292,25395,25396,25436,25524,25605,25608,25613,25641,25678,25691,25736,25749,25751,25871,25992,26014,26051,26055,26083,26122,26142,26146,26183,26186,26202,26280,26281,26373,26378,26383,26395,26423,26447,26489,26540,26542,26552,26568,26581,26589,26607,26608,26627,26822,26857,26858,26863,26864,26870,26871,26875,26885,26886,26891,26893,26906,27127,27212,27216,27237,27288,27312,27347,27349,27375,27413,27438,27472,27522,27524,27536,27558,27586,27591,27603,27628,27632,27640,27641,27665,27672,27715,27863,27912,27915,28100,28395,28823,28827,28836,28998,29078,29093,29125,29246,29596,29711,30630,30661,30786,30823,30824,30830,30976,31062]]],["camest",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27233]]],["come",[272,261,[[39,49,48,0,48,[[930,3,3,0,3],[931,1,1,3,4],[933,3,2,4,6],[934,1,1,6,7],[935,1,1,7,8],[936,4,4,8,12],[937,4,4,12,16],[938,4,4,16,20],[939,2,2,20,22],[940,1,1,22,23],[941,2,2,23,25],[942,1,1,25,26],[944,3,3,26,29],[945,5,5,29,34],[946,2,2,34,36],[947,1,1,36,37],[949,2,2,37,39],[950,1,1,39,40],[951,1,1,40,41],[952,3,3,41,44],[953,1,1,44,45],[955,3,3,45,48]]],[40,25,24,48,72,[[957,1,1,48,49],[958,3,3,49,52],[960,1,1,52,53],[961,2,2,53,55],[962,1,1,55,56],[964,1,1,56,57],[965,3,3,57,60],[966,2,2,60,62],[967,3,2,62,64],[968,3,3,64,67],[969,1,1,67,68],[970,2,2,68,70],[971,1,1,70,71],[972,1,1,71,72]]],[41,40,38,72,110,[[973,1,1,72,73],[976,1,1,73,74],[977,2,2,74,76],[979,5,5,76,81],[980,1,1,81,82],[981,3,3,82,85],[982,1,1,85,86],[983,1,1,86,87],[984,4,3,87,90],[985,2,2,90,92],[986,4,4,92,96],[987,1,1,96,97],[988,1,1,97,98],[989,4,3,98,101],[990,2,2,101,103],[991,2,2,103,105],[992,1,1,105,106],[993,2,2,106,108],[994,2,2,108,110]]],[42,63,61,110,171,[[997,1,1,110,111],[999,3,3,111,114],[1000,6,6,114,120],[1001,4,3,120,123],[1002,6,6,123,129],[1003,6,6,129,135],[1004,4,4,135,139],[1005,1,1,139,140],[1006,1,1,140,141],[1007,6,6,141,147],[1008,3,3,147,150],[1009,2,2,150,152],[1010,4,4,152,156],[1011,2,2,156,158],[1012,8,7,158,165],[1013,3,3,165,168],[1014,1,1,168,169],[1017,2,2,169,171]]],[43,12,12,171,183,[[1018,1,1,171,172],[1019,1,1,172,173],[1025,1,1,173,174],[1033,2,2,174,176],[1034,1,1,176,177],[1035,1,1,177,178],[1036,1,1,178,179],[1038,2,2,179,181],[1041,1,1,181,182],[1042,1,1,182,183]]],[44,9,8,183,191,[[1046,2,2,183,185],[1048,1,1,185,186],[1054,1,1,186,187],[1060,5,4,187,191]]],[45,16,14,191,205,[[1065,4,4,191,195],[1072,2,2,195,197],[1074,1,1,197,198],[1075,1,1,198,199],[1076,1,1,199,200],[1077,7,5,200,205]]],[46,10,10,205,215,[[1078,2,2,205,207],[1079,1,1,207,208],[1084,1,1,208,209],[1086,1,1,209,210],[1089,4,4,210,214],[1090,1,1,214,215]]],[47,5,5,215,220,[[1092,2,2,215,217],[1093,2,2,217,219],[1094,1,1,219,220]]],[49,2,2,220,222,[[1103,1,1,220,221],[1104,1,1,221,222]]],[50,1,1,222,223,[[1110,1,1,222,223]]],[51,2,2,223,225,[[1111,1,1,223,224],[1112,1,1,224,225]]],[52,2,2,225,227,[[1116,1,1,225,226],[1117,1,1,226,227]]],[53,3,3,227,230,[[1120,1,1,227,228],[1121,1,1,228,229],[1122,1,1,229,230]]],[54,3,3,230,233,[[1127,1,1,230,231],[1128,2,2,231,233]]],[55,1,1,233,234,[[1131,1,1,233,234]]],[57,3,3,234,237,[[1140,1,1,234,235],[1142,1,1,235,236],[1145,1,1,236,237]]],[60,1,1,237,238,[[1158,1,1,237,238]]],[61,4,3,238,241,[[1160,1,1,238,239],[1162,3,2,239,241]]],[62,2,2,241,243,[[1164,2,2,241,243]]],[63,1,1,243,244,[[1165,1,1,243,244]]],[65,18,17,244,261,[[1168,2,2,244,246],[1169,2,2,246,248],[1172,1,1,248,249],[1175,1,1,249,250],[1177,1,1,250,251],[1180,2,2,251,253],[1182,1,1,253,254],[1183,1,1,254,255],[1184,1,1,255,256],[1185,1,1,256,257],[1188,5,4,257,261]]]],[23171,23177,23180,23199,23251,23258,23292,23331,23352,23359,23373,23374,23392,23394,23397,23407,23430,23440,23451,23452,23462,23473,23533,23571,23593,23625,23677,23696,23699,23710,23711,23712,23714,23724,23734,23738,23776,23827,23849,23875,23953,23962,23999,24000,24039,24162,24178,24193,24239,24263,24278,24280,24345,24379,24387,24428,24534,24539,24549,24551,24602,24618,24655,24667,24682,24687,24691,24723,24795,24799,24862,24874,24936,25097,25114,25124,25198,25202,25214,25215,25229,25262,25324,25327,25357,25364,25407,25497,25498,25508,25525,25532,25562,25573,25579,25580,25618,25648,25652,25671,25673,25704,25718,25741,25744,25795,25832,25834,25882,25909,26075,26122,26139,26146,26171,26172,26181,26196,26201,26210,26234,26250,26253,26262,26271,26272,26274,26301,26322,26356,26358,26362,26364,26365,26369,26395,26401,26402,26403,26479,26491,26550,26553,26555,26557,26571,26579,26592,26603,26626,26631,26663,26671,26686,26691,26696,26721,26725,26730,26733,26734,26739,26747,26754,26758,26760,26770,26772,26789,26920,26921,26934,26969,27203,27490,27520,27538,27559,27589,27675,27686,27777,27819,27940,27943,27999,28164,28326,28327,28332,28335,28438,28451,28452,28454,28626,28634,28675,28684,28753,28778,28781,28786,28787,28788,28815,28816,28825,28921,28960,29023,29036,29042,29043,29045,29092,29093,29121,29127,29135,29388,29415,29552,29570,29588,29659,29664,29720,29745,29760,29860,29879,29891,29935,30100,30170,30264,30525,30568,30605,30606,30652,30657,30668,30722,30733,30756,30757,30810,30852,30890,30933,30941,30969,30985,31003,31024,31087,31092,31097,31100]]],["comest",[3,3,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[23206,25977,29883]]],["cometh",[98,97,[[39,16,16,0,16,[[931,1,1,0,1],[936,1,1,1,2],[941,1,1,2,3],[946,1,1,3,4],[949,3,3,4,7],[951,1,1,7,8],[952,2,2,8,10],[953,3,3,10,13],[954,3,3,13,16]]],[40,16,16,16,32,[[957,1,1,16,17],[960,1,1,17,18],[961,2,2,18,20],[962,1,1,20,21],[964,2,2,21,23],[965,1,1,23,24],[966,1,1,24,25],[967,2,2,25,27],[969,1,1,27,28],[970,4,4,28,32]]],[41,18,18,32,50,[[975,1,1,32,33],[978,1,1,33,34],[979,1,1,34,35],[980,2,2,35,37],[983,1,1,37,38],[984,5,5,38,43],[985,1,1,43,44],[986,2,2,44,46],[987,1,1,46,47],[989,1,1,47,48],[990,1,1,48,49],[991,1,1,49,50]]],[42,37,36,50,86,[[997,3,3,50,53],[999,5,4,53,57],[1000,6,6,57,63],[1002,3,3,63,66],[1003,3,3,66,69],[1005,1,1,69,70],[1006,1,1,70,71],[1007,1,1,71,72],[1008,3,3,72,75],[1009,1,1,75,76],[1010,2,2,76,78],[1012,3,3,78,81],[1014,1,1,81,82],[1016,3,3,82,85],[1017,1,1,85,86]]],[43,2,2,86,88,[[1030,1,1,86,87],[1035,1,1,87,88]]],[46,1,1,88,89,[[1088,1,1,88,89]]],[48,1,1,89,90,[[1101,1,1,89,90]]],[50,1,1,90,91,[[1109,1,1,90,91]]],[51,1,1,91,92,[[1115,1,1,91,92]]],[57,1,1,92,93,[[1138,1,1,92,93]]],[64,1,1,93,94,[[1166,1,1,93,94]]],[65,3,3,94,97,[[1167,1,1,94,95],[1177,1,1,95,96],[1183,1,1,96,97]]]],[23203,23354,23558,23734,23831,23835,23866,23957,24001,24003,24014,24021,24027,24090,24094,24099,24222,24338,24386,24402,24455,24522,24538,24550,24589,24649,24650,24752,24771,24791,24795,24820,25041,25193,25203,25257,25294,25430,25495,25496,25499,25502,25513,25553,25563,25584,25594,25671,25696,25769,26053,26059,26074,26128,26140,26141,26151,26161,26163,26177,26179,26181,26191,26292,26294,26302,26355,26359,26370,26444,26491,26561,26593,26595,26602,26636,26674,26698,26728,26751,26758,26788,26868,26869,26873,26911,27387,27578,28993,29310,29523,29623,30051,30686,30704,30886,30985]]],["coming",[27,27,[[39,5,5,0,5,[[944,1,1,0,1],[952,2,2,1,3],[953,1,1,3,4],[954,1,1,4,5]]],[40,5,5,5,10,[[962,1,1,5,6],[969,2,2,6,8],[970,1,1,8,9],[971,1,1,9,10]]],[41,6,6,10,16,[[984,1,1,10,11],[990,1,1,11,12],[991,1,1,12,13],[993,1,1,13,14],[995,2,2,14,16]]],[42,9,9,16,25,[[997,3,3,16,19],[1001,3,3,19,22],[1006,1,1,22,23],[1007,1,1,23,24],[1008,1,1,24,25]]],[44,1,1,25,26,[[1060,1,1,25,26]]],[46,1,1,26,27,[[1090,1,1,26,27]]]],[23700,23987,24005,24035,24118,24438,24743,24753,24816,24847,25504,25693,25754,25853,25961,25964,26071,26073,26091,26217,26235,26238,26493,26543,26592,28325,29044]]],["entered",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]]],[24244,27564]]],["go",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[42,1,1,1,2,[[1017,1,1,1,2]]]],[23626,26901]]],["lighting",[1,1,[[39,1,1,0,1,[[931,1,1,0,1]]]],[23208]]],["next",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27406]]],["out",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29373]]],["over",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24365]]],["resorted",[2,2,[[40,1,1,0,1,[[958,1,1,0,1]]],[42,1,1,1,2,[[1006,1,1,1,2]]]],[24273,26522]]],["went",[11,11,[[39,3,3,0,3,[[940,1,1,0,1],[941,1,1,1,2],[942,1,1,2,3]]],[40,1,1,3,4,[[959,1,1,3,4]]],[41,2,2,4,6,[[974,1,1,4,5],[986,1,1,5,6]]],[42,2,2,6,8,[[1000,1,1,6,7],[1002,1,1,7,8]]],[43,2,2,8,10,[[1021,1,1,8,9],[1045,1,1,9,10]]],[57,1,1,10,11,[[1143,1,1,10,11]]]],[23498,23575,23609,24307,25017,25554,26201,26274,27045,27913,30180]]]]},{"k":"G2065","v":[["*",[58,57,[[39,3,3,0,3,[[943,1,1,0,1],[944,1,1,1,2],[949,1,1,2,3]]],[40,2,2,3,5,[[960,1,1,3,4],[963,1,1,4,5]]],[41,14,14,5,19,[[976,1,1,5,6],[977,1,1,6,7],[979,2,2,7,9],[980,1,1,9,10],[981,1,1,10,11],[983,1,1,11,12],[986,3,3,12,15],[988,1,1,15,16],[991,1,1,16,17],[992,1,1,17,18],[994,1,1,18,19]]],[42,27,26,19,45,[[997,3,3,19,22],[1000,3,3,22,25],[1001,1,1,25,26],[1004,1,1,26,27],[1005,5,5,27,32],[1008,1,1,32,33],[1010,1,1,33,34],[1012,5,5,34,39],[1013,4,3,39,42],[1014,1,1,42,43],[1015,2,2,43,45]]],[43,6,6,45,51,[[1020,1,1,45,46],[1027,1,1,46,47],[1033,1,1,47,48],[1035,1,1,48,49],[1040,2,2,49,51]]],[49,1,1,51,52,[[1106,1,1,51,52]]],[51,2,2,52,54,[[1114,1,1,52,53],[1115,1,1,53,54]]],[52,1,1,54,55,[[1117,1,1,54,55]]],[61,1,1,55,56,[[1163,1,1,55,56]]],[62,1,1,56,57,[[1164,1,1,56,57]]]],[23656,23685,23850,24333,24489,25101,25110,25198,25231,25282,25346,25442,25571,25572,25585,25647,25762,25782,25932,26063,26065,26069,26187,26196,26203,26222,26388,26442,26455,26459,26461,26463,26601,26684,26731,26745,26749,26752,26756,26768,26774,26779,26804,26856,26863,26999,27307,27522,27577,27752,27754,29445,29604,29633,29662,30640,30650]]],["+",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25782]]],["ask",[10,10,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,3,3,1,4,[[981,1,1,1,2],[991,1,1,2,3],[994,1,1,3,4]]],[42,6,6,4,10,[[997,1,1,4,5],[1005,2,2,5,7],[1012,3,3,7,10]]]],[23850,25346,25762,25932,26063,26461,26463,26745,26749,26756]]],["asked",[10,10,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[42,7,7,2,9,[[997,2,2,2,4],[1001,1,1,4,5],[1005,3,3,5,8],[1014,1,1,8,9]]],[43,1,1,9,10,[[1020,1,1,9,10]]]],[23685,24333,26065,26069,26222,26442,26455,26459,26804,26999]]],["asketh",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26731]]],["asking",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26388]]],["beseech",[4,4,[[51,2,2,0,2,[[1114,1,1,0,1],[1115,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]],[62,1,1,3,4,[[1164,1,1,3,4]]]],[29604,29633,29662,30650]]],["beseeching",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25198]]],["besought",[9,9,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,3,3,2,5,[[976,1,1,2,3],[980,1,1,3,4],[983,1,1,4,5]]],[42,4,4,5,9,[[1000,2,2,5,7],[1015,2,2,7,9]]]],[23656,24489,25101,25282,25442,26196,26203,26856,26863]]],["desire",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27754]]],["desired",[4,4,[[41,1,1,0,1,[[979,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]],[43,2,2,2,4,[[1033,1,1,2,3],[1035,1,1,3,4]]]],[25231,26601,27522,27577]]],["desireth",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25585]]],["intreat",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29445]]],["pray",[10,9,[[41,3,3,0,3,[[986,2,2,0,2],[988,1,1,2,3]]],[42,6,5,3,8,[[1010,1,1,3,4],[1012,1,1,4,5],[1013,4,3,5,8]]],[61,1,1,8,9,[[1163,1,1,8,9]]]],[25571,25572,25647,26684,26752,26768,26774,26779,30640]]],["prayed",[4,4,[[41,1,1,0,1,[[977,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]],[43,2,2,2,4,[[1027,1,1,2,3],[1040,1,1,3,4]]]],[25110,26187,27307,27752]]]]},{"k":"G2066","v":[["*",[7,6,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,3,3,1,4,[[1018,1,1,1,2],[1027,1,1,2,3],[1029,1,1,3,4]]],[58,3,2,4,6,[[1147,3,2,4,6]]]],[25946,26933,27289,27358,30295,30296]]],["+",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27358]]],["apparel",[2,2,[[43,1,1,0,1,[[1018,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[26933,30295]]],["clothing",[2,2,[[43,1,1,0,1,[[1027,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[27289,30296]]],["raiment",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30295]]],["robe",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25946]]]]},{"k":"G2067","v":[["garments",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[25995]]]]},{"k":"G2068","v":[["*",[65,55,[[39,11,11,0,11,[[937,1,1,0,1],[939,2,2,1,3],[940,1,1,3,4],[942,1,1,4,5],[943,3,3,5,8],[952,1,1,8,9],[954,2,2,9,11]]],[40,11,9,11,20,[[957,1,1,11,12],[958,2,1,12,13],[963,5,5,13,18],[970,3,2,18,20]]],[41,12,12,20,32,[[977,2,2,20,22],[978,1,1,22,23],[979,2,2,23,25],[982,2,2,25,27],[984,1,1,27,28],[987,1,1,28,29],[989,2,2,29,31],[994,1,1,31,32]]],[43,1,1,32,33,[[1044,1,1,32,33]]],[44,10,4,33,37,[[1059,10,4,33,37]]],[45,17,15,37,52,[[1069,2,2,37,39],[1070,3,2,39,41],[1071,5,5,41,46],[1072,7,6,46,52]]],[52,2,2,52,54,[[1118,2,2,52,54]]],[57,1,1,54,55,[[1142,1,1,54,55]]]],[23390,23477,23478,23490,23618,23635,23660,23671,24006,24075,24080,24221,24276,24465,24466,24467,24468,24491,24772,24776,25137,25140,25147,25228,25229,25370,25371,25504,25604,25678,25679,25894,27890,28282,28283,28286,28300,28534,28537,28547,28553,28585,28592,28594,28595,28598,28622,28626,28627,28628,28629,28634,29688,29690,30160]]],["+",[4,3,[[44,3,2,0,2,[[1059,3,2,0,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]]],[28283,28286,28626]]],["devour",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30160]]],["eat",[38,38,[[39,6,6,0,6,[[940,1,1,0,1],[943,3,3,1,4],[952,1,1,4,5],[954,1,1,5,6]]],[40,9,9,6,15,[[957,1,1,6,7],[958,1,1,7,8],[963,5,5,8,13],[970,2,2,13,15]]],[41,9,9,15,24,[[977,2,2,15,17],[978,1,1,17,18],[982,1,1,18,19],[984,1,1,19,20],[987,1,1,20,21],[989,2,2,21,23],[994,1,1,23,24]]],[43,1,1,24,25,[[1044,1,1,24,25]]],[45,11,11,25,36,[[1069,2,2,25,27],[1071,5,5,27,32],[1072,4,4,32,36]]],[52,2,2,36,38,[[1118,2,2,36,38]]]],[23490,23635,23660,23671,24006,24075,24221,24276,24465,24466,24467,24468,24491,24772,24776,25137,25140,25147,25371,25504,25604,25678,25679,25894,27890,28534,28537,28585,28592,28594,28595,28598,28622,28627,28628,28634,29688,29690]]],["eaten",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23618]]],["eateth",[14,9,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[970,1,1,2,3]]],[44,7,4,3,7,[[1059,7,4,3,7]]],[45,4,2,7,9,[[1070,2,1,7,8],[1072,2,1,8,9]]]],[23390,24276,24772,28282,28283,28286,28300,28547,28629]]],["eating",[6,6,[[39,3,3,0,3,[[939,2,2,0,2],[954,1,1,2,3]]],[41,3,3,3,6,[[979,2,2,3,5],[982,1,1,5,6]]]],[23477,23478,24080,25228,25229,25370]]],["live",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28553]]]]},{"k":"G2069","v":[["Esli",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25050]]]]},{"k":"G2070","v":[["*",[53,51,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[989,1,1,2,3]]],[42,5,5,3,8,[[1004,1,1,3,4],[1005,2,2,4,6],[1006,1,1,6,7],[1013,1,1,7,8]]],[43,9,8,8,16,[[1019,1,1,8,9],[1020,1,1,9,10],[1022,1,1,10,11],[1027,1,1,11,12],[1031,1,1,12,13],[1033,1,1,13,14],[1034,2,1,14,15],[1040,1,1,15,16]]],[44,5,5,16,21,[[1051,1,1,16,17],[1053,2,2,17,19],[1057,1,1,19,20],[1059,1,1,20,21]]],[45,5,4,21,25,[[1064,1,1,21,22],[1071,2,2,22,24],[1076,2,1,24,25]]],[46,7,7,25,32,[[1078,2,2,25,27],[1079,2,2,27,29],[1080,1,1,29,30],[1087,1,1,30,31],[1090,1,1,31,32]]],[47,3,3,32,35,[[1093,1,1,32,33],[1094,2,2,33,35]]],[48,3,3,35,38,[[1098,1,1,35,36],[1100,1,1,36,37],[1101,1,1,37,38]]],[49,1,1,38,39,[[1105,1,1,38,39]]],[51,1,1,39,40,[[1115,1,1,39,40]]],[57,4,4,40,44,[[1135,1,1,40,41],[1136,1,1,41,42],[1142,2,2,42,44]]],[61,7,7,44,51,[[1160,1,1,44,45],[1161,2,2,45,47],[1162,2,2,47,49],[1163,2,2,49,51]]]],[24373,25313,25661,26414,26468,26480,26511,26781,26981,27011,27091,27298,27429,27511,27551,27749,28083,28128,28132,28250,28288,28419,28584,28589,28737,28814,28824,28839,28841,28846,28982,29049,29127,29159,29162,29239,29297,29334,29424,29626,30001,30016,30143,30172,30555,30581,30598,30609,30620,30643,30644]]],["+",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30016]]],["Are",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26480]]],["are",[48,48,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[989,1,1,2,3]]],[42,3,3,3,6,[[1005,1,1,3,4],[1006,1,1,4,5],[1013,1,1,5,6]]],[43,8,8,6,14,[[1019,1,1,6,7],[1020,1,1,7,8],[1022,1,1,8,9],[1027,1,1,9,10],[1031,1,1,10,11],[1033,1,1,11,12],[1034,1,1,12,13],[1040,1,1,13,14]]],[44,5,5,14,19,[[1051,1,1,14,15],[1053,2,2,15,17],[1057,1,1,17,18],[1059,1,1,18,19]]],[45,4,4,19,23,[[1064,1,1,19,20],[1071,2,2,20,22],[1076,1,1,22,23]]],[46,7,7,23,30,[[1078,2,2,23,25],[1079,2,2,25,27],[1080,1,1,27,28],[1087,1,1,28,29],[1090,1,1,29,30]]],[47,3,3,30,33,[[1093,1,1,30,31],[1094,2,2,31,33]]],[48,3,3,33,36,[[1098,1,1,33,34],[1100,1,1,34,35],[1101,1,1,35,36]]],[49,1,1,36,37,[[1105,1,1,36,37]]],[51,1,1,37,38,[[1115,1,1,37,38]]],[57,3,3,38,41,[[1135,1,1,38,39],[1142,2,2,39,41]]],[61,7,7,41,48,[[1160,1,1,41,42],[1161,2,2,42,44],[1162,2,2,44,46],[1163,2,2,46,48]]]],[24373,25313,25661,26468,26511,26781,26981,27011,27091,27298,27429,27511,27551,27749,28083,28128,28132,28250,28288,28419,28584,28589,28737,28814,28824,28839,28841,28846,28982,29049,29127,29159,29162,29239,29297,29334,29424,29626,30001,30143,30172,30555,30581,30598,30609,30620,30643,30644]]],["be",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26414]]],["being",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27551]]],["have",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28737]]]]},{"k":"G2071","v":[["*",[188,170,[[39,47,43,0,43,[[933,5,3,0,3],[934,4,4,3,7],[936,1,1,7,8],[938,2,2,8,10],[939,2,2,10,12],[940,4,4,12,16],[941,4,4,16,20],[944,3,2,20,22],[945,1,1,22,23],[946,2,1,23,24],[947,3,3,24,27],[948,2,2,27,29],[950,2,2,29,31],[951,1,1,31,32],[952,9,9,32,41],[953,1,1,41,42],[955,1,1,42,43]]],[40,19,17,43,60,[[962,1,1,43,44],[965,2,2,44,46],[966,5,4,46,50],[967,2,2,50,52],[968,2,2,52,54],[969,6,5,54,59],[970,1,1,59,60]]],[41,49,46,60,106,[[973,8,8,60,68],[974,1,1,68,69],[975,1,1,69,70],[976,1,1,70,71],[977,1,1,71,72],[978,3,2,72,74],[981,2,2,74,76],[982,2,2,76,78],[983,3,3,78,81],[984,4,4,81,85],[985,3,2,85,87],[986,2,2,87,89],[987,1,1,89,90],[989,7,7,90,97],[993,7,6,97,103],[994,2,2,103,105],[995,1,1,105,106]]],[42,6,6,106,112,[[1002,1,1,106,107],[1004,2,2,107,109],[1008,1,1,109,110],[1010,1,1,110,111],[1015,1,1,111,112]]],[43,9,9,112,121,[[1018,1,1,112,113],[1019,2,2,113,115],[1020,1,1,115,116],[1024,1,1,116,117],[1030,1,1,117,118],[1039,1,1,118,119],[1044,2,2,119,121]]],[44,5,5,121,126,[[1049,1,1,121,122],[1051,1,1,122,123],[1054,2,2,123,125],[1060,1,1,125,126]]],[45,4,4,126,130,[[1067,1,1,126,127],[1072,1,1,127,128],[1075,2,2,128,130]]],[46,8,6,130,136,[[1080,1,1,130,131],[1083,4,2,131,133],[1088,1,1,133,134],[1089,1,1,134,135],[1090,1,1,135,136]]],[48,2,2,136,138,[[1101,1,1,136,137],[1102,1,1,137,138]]],[49,1,1,138,139,[[1106,1,1,138,139]]],[51,1,1,139,140,[[1114,1,1,139,140]]],[53,1,1,140,141,[[1122,1,1,140,141]]],[54,5,5,141,146,[[1126,2,2,141,143],[1127,2,2,143,145],[1128,1,1,145,146]]],[57,7,5,146,151,[[1133,2,1,146,147],[1134,1,1,147,148],[1135,1,1,148,149],[1140,3,2,149,151]]],[58,2,2,151,153,[[1146,1,1,151,152],[1150,1,1,152,153]]],[60,1,1,153,154,[[1157,1,1,153,154]]],[61,2,1,154,155,[[1161,2,1,154,155]]],[62,2,2,155,157,[[1164,2,2,155,157]]],[64,1,1,157,158,[[1166,1,1,157,158]]],[65,16,12,158,170,[[1176,2,2,158,160],[1182,1,1,160,161],[1186,1,1,161,162],[1187,7,4,162,166],[1188,5,4,166,170]]]],[23255,23256,23282,23287,23303,23304,23305,23357,23432,23439,23481,23483,23500,23516,23529,23534,23579,23581,23588,23589,23691,23694,23717,23745,23767,23789,23792,23808,23818,23885,23900,23929,23960,23964,23966,23978,23984,23994,23996,23997,24008,24038,24193,24418,24557,24573,24596,24619,24631,24632,24663,24664,24680,24696,24721,24725,24730,24736,24742,24756,24907,24908,24913,24925,24926,24927,24938,24959,24983,25030,25070,25117,25181,25186,25342,25349,25375,25377,25424,25435,25441,25479,25493,25511,25514,25546,25548,25563,25567,25595,25675,25677,25681,25682,25685,25686,25687,25833,25837,25843,25849,25850,25851,25913,25933,25978,26302,26417,26436,26606,26685,26849,26931,26966,26970,27019,27122,27373,27719,27877,27880,28040,28073,28164,28181,28315,28483,28627,28687,28689,28849,28914,28916,29004,29028,29054,29335,29340,29451,29620,29753,29829,29848,29855,29862,29873,29968,29990,30007,30102,30104,30291,30357,30501,30581,30647,30648,30690,30867,30870,30959,31044,31056,31057,31060,31078,31083,31085,31092,31094]]],["+",[6,6,[[42,1,1,0,1,[[1008,1,1,0,1]]],[44,1,1,1,2,[[1051,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]],[57,1,1,4,5,[[1134,1,1,4,5]]],[65,1,1,5,6,[[1187,1,1,5,6]]]],[26606,28073,28687,28916,29990,31057]]],["Be",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23282]]],["be",[161,146,[[39,44,41,0,41,[[933,4,2,0,2],[934,4,4,2,6],[936,1,1,6,7],[938,2,2,7,9],[939,2,2,9,11],[940,4,4,11,15],[941,4,4,15,19],[944,2,2,19,21],[945,1,1,21,22],[946,2,1,22,23],[947,2,2,23,25],[948,2,2,25,27],[950,2,2,27,29],[951,1,1,29,30],[952,9,9,30,39],[953,1,1,39,40],[955,1,1,40,41]]],[40,16,14,41,55,[[962,1,1,41,42],[965,2,2,42,44],[966,5,4,44,48],[968,2,2,48,50],[969,5,4,50,54],[970,1,1,54,55]]],[41,43,40,55,95,[[973,7,7,55,62],[974,1,1,62,63],[976,1,1,63,64],[978,3,2,64,66],[981,2,2,66,68],[982,2,2,68,70],[983,3,3,70,73],[984,4,4,73,77],[985,3,2,77,79],[986,1,1,79,80],[987,1,1,80,81],[989,7,7,81,88],[993,7,6,88,94],[995,1,1,94,95]]],[42,5,5,95,100,[[1002,1,1,95,96],[1004,2,2,96,98],[1010,1,1,98,99],[1015,1,1,99,100]]],[43,5,5,100,105,[[1018,1,1,100,101],[1030,1,1,101,102],[1039,1,1,102,103],[1044,2,2,103,105]]],[44,2,2,105,107,[[1049,1,1,105,106],[1060,1,1,106,107]]],[45,3,3,107,110,[[1067,1,1,107,108],[1072,1,1,108,109],[1075,1,1,109,110]]],[46,7,6,110,116,[[1080,1,1,110,111],[1083,3,2,111,113],[1088,1,1,113,114],[1089,1,1,114,115],[1090,1,1,115,116]]],[48,1,1,116,117,[[1101,1,1,116,117]]],[49,1,1,117,118,[[1106,1,1,117,118]]],[51,1,1,118,119,[[1114,1,1,118,119]]],[53,1,1,119,120,[[1122,1,1,119,120]]],[54,4,4,120,124,[[1126,2,2,120,122],[1127,2,2,122,124]]],[57,6,4,124,128,[[1133,2,1,124,125],[1135,1,1,125,126],[1140,3,2,126,128]]],[58,2,2,128,130,[[1146,1,1,128,129],[1150,1,1,129,130]]],[60,1,1,130,131,[[1157,1,1,130,131]]],[61,2,1,131,132,[[1161,2,1,131,132]]],[62,2,2,132,134,[[1164,2,2,132,134]]],[64,1,1,134,135,[[1166,1,1,134,135]]],[65,14,11,135,146,[[1176,2,2,135,137],[1182,1,1,137,138],[1186,1,1,138,139],[1187,6,4,139,143],[1188,4,3,143,146]]]],[23255,23256,23287,23303,23304,23305,23357,23432,23439,23481,23483,23500,23516,23529,23534,23579,23581,23588,23589,23691,23694,23717,23745,23767,23792,23808,23818,23885,23900,23929,23960,23964,23966,23978,23984,23994,23996,23997,24008,24038,24193,24418,24557,24573,24596,24619,24631,24632,24680,24696,24721,24725,24730,24736,24756,24908,24913,24925,24926,24927,24938,24959,24983,25070,25181,25186,25342,25349,25375,25377,25424,25435,25441,25479,25493,25511,25514,25546,25548,25567,25595,25675,25677,25681,25682,25685,25686,25687,25833,25837,25843,25849,25850,25851,25978,26302,26417,26436,26685,26849,26931,27373,27719,27877,27880,28040,28315,28483,28627,28689,28849,28914,28916,29004,29028,29054,29335,29451,29620,29753,29829,29848,29855,29862,29968,30007,30102,30104,30291,30357,30501,30581,30647,30648,30690,30867,30870,30959,31044,31056,31057,31060,31078,31083,31085,31092]]],["come",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29873]]],["follow",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25913]]],["have",[7,7,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,2,2,1,3,[[967,2,2,1,3]]],[41,2,2,3,5,[[973,1,1,3,4],[986,1,1,4,5]]],[44,1,1,5,6,[[1054,1,1,5,6]]],[65,1,1,6,7,[[1188,1,1,6,7]]]],[23789,24663,24664,24907,25563,28164,31094]]],["made",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25030]]],["mayest",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29340]]],["pass",[4,4,[[43,3,3,0,3,[[1019,2,2,0,2],[1020,1,1,2,3]]],[44,1,1,3,4,[[1054,1,1,3,4]]]],[26966,26970,27019,28181]]],["shall",[3,3,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]]],[23691,24742,25933]]],["shalt",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25117]]],["should",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27122]]]]},{"k":"G2072","v":[["glass",[2,2,[[45,1,1,0,1,[[1074,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[28677,30289]]]]},{"k":"G2073","v":[["*",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,2,2,1,3,[[1021,1,1,1,2],[1045,1,1,2,3]]]],[26020,27025,27922]]],["evening",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]]],[26020,27922]]],["eventide",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27025]]]]},{"k":"G2074","v":[["Esrom",[3,2,[[39,2,1,0,1,[[929,2,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23147,25058]]]]},{"k":"G2075","v":[["*",[92,88,[[39,9,9,0,9,[[933,3,3,0,3],[936,1,1,3,4],[938,1,1,4,5],[943,1,1,5,6],[951,3,3,6,9]]],[40,4,4,9,13,[[960,1,1,9,10],[963,1,1,10,11],[965,1,1,11,12],[969,1,1,12,13]]],[41,10,10,13,23,[[978,1,1,13,14],[981,1,1,14,15],[983,1,1,15,16],[985,2,2,16,18],[988,1,1,18,19],[994,1,1,19,20],[996,3,3,20,23]]],[42,16,15,23,38,[[1004,6,5,23,28],[1006,2,2,28,30],[1009,4,4,30,34],[1011,4,4,34,38]]],[43,4,4,38,42,[[1020,1,1,38,39],[1024,1,1,39,40],[1036,1,1,40,41],[1039,1,1,41,42]]],[44,5,5,42,47,[[1046,1,1,42,43],[1051,2,2,43,45],[1053,1,1,45,46],[1060,1,1,46,47]]],[45,17,16,47,63,[[1062,1,1,47,48],[1064,6,5,48,53],[1065,1,1,53,54],[1066,2,2,54,56],[1067,2,2,56,58],[1070,2,2,58,60],[1073,1,1,60,61],[1075,1,1,61,62],[1076,1,1,62,63]]],[46,8,7,63,70,[[1078,1,1,63,64],[1079,1,1,64,65],[1080,2,2,65,67],[1083,1,1,67,68],[1084,1,1,68,69],[1090,2,1,69,70]]],[47,6,6,70,76,[[1093,4,4,70,74],[1094,1,1,74,75],[1095,1,1,75,76]]],[48,4,4,76,80,[[1098,3,3,76,79],[1101,1,1,79,80]]],[50,1,1,80,81,[[1108,1,1,80,81]]],[51,4,4,81,85,[[1112,1,1,81,82],[1114,1,1,82,83],[1115,2,2,83,85]]],[57,2,1,85,86,[[1144,2,1,85,86]]],[61,2,2,86,88,[[1160,1,1,86,87],[1162,1,1,87,88]]]],[23245,23247,23248,23371,23437,23649,23926,23946,23949,24363,24481,24579,24728,25168,25356,25449,25543,25545,25635,25892,26008,26029,26039,26404,26412,26418,26425,26428,26507,26515,26640,26641,26647,26665,26702,26713,26718,26726,27021,27142,27600,27707,27936,28082,28084,28125,28317,28393,28413,28414,28419,28426,28427,28441,28456,28461,28469,28486,28541,28542,28661,28690,28735,28807,28833,28843,28844,28914,28919,29048,29105,29128,29130,29131,29137,29180,29234,29237,29248,29309,29504,29590,29612,29625,29626,30220,30564,30607]]],["+",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29309]]],["Are",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[47,1,1,2,3,[[1093,1,1,2,3]]]],[23649,24481,29105]]],["are",[79,77,[[39,7,7,0,7,[[933,3,3,0,3],[936,1,1,3,4],[951,3,3,4,7]]],[40,1,1,7,8,[[960,1,1,7,8]]],[41,10,10,8,18,[[978,1,1,8,9],[981,1,1,9,10],[983,1,1,10,11],[985,2,2,11,13],[988,1,1,13,14],[994,1,1,14,15],[996,3,3,15,18]]],[42,15,14,18,32,[[1004,6,5,18,23],[1006,2,2,23,25],[1009,4,4,25,29],[1011,3,3,29,32]]],[43,4,4,32,36,[[1020,1,1,32,33],[1024,1,1,33,34],[1036,1,1,34,35],[1039,1,1,35,36]]],[44,5,5,36,41,[[1046,1,1,36,37],[1051,2,2,37,39],[1053,1,1,39,40],[1060,1,1,40,41]]],[45,17,16,41,57,[[1062,1,1,41,42],[1064,6,5,42,47],[1065,1,1,47,48],[1066,2,2,48,50],[1067,2,2,50,52],[1070,2,2,52,54],[1073,1,1,54,55],[1075,1,1,55,56],[1076,1,1,56,57]]],[46,4,4,57,61,[[1078,1,1,57,58],[1080,1,1,58,59],[1083,1,1,59,60],[1084,1,1,60,61]]],[47,5,5,61,66,[[1093,3,3,61,64],[1094,1,1,64,65],[1095,1,1,65,66]]],[48,3,3,66,69,[[1098,3,3,66,69]]],[50,1,1,69,70,[[1108,1,1,69,70]]],[51,4,4,70,74,[[1112,1,1,70,71],[1114,1,1,71,72],[1115,2,2,72,74]]],[57,1,1,74,75,[[1144,1,1,74,75]]],[61,2,2,75,77,[[1160,1,1,75,76],[1162,1,1,76,77]]]],[23245,23247,23248,23371,23926,23946,23949,24363,25168,25356,25449,25543,25545,25635,25892,26008,26029,26039,26404,26412,26418,26425,26428,26507,26515,26640,26641,26647,26665,26702,26713,26718,27021,27142,27600,27707,27936,28082,28084,28125,28317,28393,28413,28414,28419,28426,28427,28441,28456,28461,28469,28486,28541,28542,28661,28690,28735,28807,28843,28914,28919,29128,29130,29131,29137,29180,29234,29237,29248,29504,29590,29612,29625,29626,30220,30564,30607]]],["be",[5,4,[[46,4,3,0,3,[[1079,1,1,0,1],[1080,1,1,1,2],[1090,2,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]]],[28833,28844,29048,30220]]],["been",[1,1,[[42,1,1,0,1,[[1011,1,1,0,1]]]],[26726]]],["is",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23437,24728]]],["to",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24579]]]]},{"k":"G2076","v":[["*",[889,800,[[39,120,115,0,115,[[929,2,2,0,2],[930,1,1,2,3],[931,4,4,3,7],[933,7,6,7,13],[934,5,5,13,18],[935,2,2,18,20],[936,1,1,20,21],[937,3,3,21,24],[938,8,7,24,31],[939,6,6,31,37],[940,7,7,37,44],[941,19,17,44,61],[942,3,3,61,64],[943,2,2,64,66],[944,1,1,66,67],[945,2,2,67,69],[946,6,6,69,75],[947,5,4,75,79],[948,3,3,79,82],[949,4,4,82,86],[950,5,5,86,91],[951,6,6,91,97],[952,4,4,97,101],[954,8,8,101,109],[955,5,5,109,114],[956,1,1,114,115]]],[40,66,61,115,176,[[957,1,1,115,116],[958,4,4,116,120],[959,3,3,120,123],[960,5,4,123,127],[961,2,2,127,129],[962,7,6,129,135],[963,4,3,135,138],[965,11,10,138,148],[966,7,7,148,155],[968,11,10,155,165],[969,3,3,165,168],[970,7,7,168,175],[972,1,1,175,176]]],[41,107,99,176,275,[[973,3,3,176,179],[974,1,1,179,180],[976,2,2,180,182],[977,4,4,182,186],[978,12,12,186,198],[979,7,6,198,204],[980,7,5,204,209],[981,7,6,209,215],[982,5,4,215,219],[983,7,6,219,225],[984,8,8,225,233],[985,3,3,233,236],[986,4,4,236,240],[987,1,1,240,241],[988,4,3,241,244],[989,2,2,244,246],[990,4,4,246,250],[991,4,3,250,253],[992,6,6,253,259],[993,2,2,259,261],[994,6,6,261,267],[995,5,5,267,272],[996,3,3,272,275]]],[42,164,146,275,421,[[997,6,6,275,281],[998,2,2,281,283],[999,10,7,283,290],[1000,11,11,290,301],[1001,12,11,301,312],[1002,22,18,312,330],[1003,17,15,330,345],[1004,15,12,345,357],[1005,16,14,357,371],[1006,7,7,371,378],[1007,4,4,378,382],[1008,6,6,382,388],[1009,4,4,388,392],[1010,3,3,392,395],[1011,3,3,395,398],[1012,4,4,398,402],[1013,4,4,402,406],[1014,4,3,406,409],[1015,2,2,409,411],[1016,4,4,411,415],[1017,8,6,415,421]]],[43,67,65,421,486,[[1018,1,1,421,422],[1019,5,5,422,427],[1021,4,3,427,430],[1022,1,1,430,431],[1023,1,1,431,432],[1024,3,3,432,435],[1025,4,3,435,438],[1026,6,6,438,444],[1027,7,7,444,451],[1029,3,3,451,454],[1030,1,1,454,455],[1032,1,1,455,456],[1033,1,1,456,457],[1034,1,1,457,458],[1035,2,2,458,460],[1036,5,5,460,465],[1037,2,2,465,467],[1038,5,5,467,472],[1039,2,2,472,474],[1040,5,5,474,479],[1042,4,4,479,483],[1043,1,1,483,484],[1045,2,2,484,486]]],[44,39,35,486,521,[[1046,5,5,486,491],[1047,3,3,491,494],[1048,8,6,494,500],[1049,3,3,500,503],[1050,1,1,503,504],[1052,2,2,504,506],[1053,3,3,506,509],[1054,1,1,509,510],[1055,3,3,510,513],[1056,3,2,513,515],[1058,3,2,515,517],[1059,3,3,517,520],[1061,1,1,520,521]]],[45,74,64,521,585,[[1062,4,2,521,523],[1063,1,1,523,524],[1064,8,8,524,532],[1065,3,3,532,535],[1067,8,8,535,543],[1068,11,8,543,551],[1070,4,3,551,554],[1071,5,3,554,557],[1072,10,10,557,567],[1073,7,6,567,573],[1075,7,7,573,580],[1076,5,4,580,584],[1077,1,1,584,585]]],[46,14,13,585,598,[[1078,1,1,585,586],[1079,2,2,586,588],[1080,1,1,588,589],[1081,3,2,589,591],[1084,1,1,591,592],[1086,2,2,592,594],[1087,1,1,594,595],[1088,1,1,595,596],[1089,1,1,596,597],[1090,1,1,597,598]]],[47,18,14,598,612,[[1091,2,2,598,600],[1093,4,3,600,603],[1094,7,5,603,608],[1095,5,4,608,612]]],[48,22,20,612,632,[[1097,3,3,612,615],[1098,1,1,615,616],[1099,1,1,616,617],[1100,4,4,617,621],[1101,8,7,621,628],[1102,5,4,628,632]]],[49,5,5,632,637,[[1103,3,3,632,635],[1104,1,1,635,636],[1106,1,1,636,637]]],[50,17,16,637,653,[[1107,7,6,637,643],[1108,4,4,643,647],[1109,5,5,647,652],[1110,1,1,652,653]]],[51,2,2,653,655,[[1112,1,1,653,654],[1114,1,1,654,655]]],[52,5,5,655,660,[[1116,1,1,655,656],[1117,2,2,656,658],[1118,2,2,658,660]]],[53,12,11,660,671,[[1119,2,2,660,662],[1121,2,2,662,664],[1122,3,2,664,666],[1123,3,3,666,669],[1124,2,2,669,671]]],[54,7,6,671,677,[[1125,3,3,671,674],[1126,2,2,674,676],[1128,2,1,676,677]]],[55,3,3,677,680,[[1129,2,2,677,679],[1131,1,1,679,680]]],[57,11,11,680,691,[[1134,1,1,680,681],[1136,1,1,681,682],[1137,2,2,682,684],[1139,1,1,684,685],[1140,1,1,685,686],[1141,2,2,686,688],[1143,2,2,688,690],[1144,1,1,690,691]]],[58,17,16,691,707,[[1146,4,4,691,695],[1147,5,4,695,699],[1148,2,2,699,701],[1149,5,5,701,706],[1150,1,1,706,707]]],[59,6,6,707,713,[[1151,2,2,707,709],[1152,1,1,709,710],[1153,2,2,710,712],[1154,1,1,712,713]]],[60,5,5,713,718,[[1156,3,3,713,716],[1158,2,2,716,718]]],[61,74,56,718,774,[[1159,7,5,718,723],[1160,21,15,723,738],[1161,13,11,738,749],[1162,16,14,749,763],[1163,17,11,763,774]]],[62,3,2,774,776,[[1164,3,2,774,776]]],[63,2,2,776,778,[[1165,2,2,776,778]]],[65,29,22,778,800,[[1167,1,1,778,779],[1168,1,1,779,780],[1171,4,3,780,783],[1179,3,2,783,785],[1180,1,1,785,786],[1182,1,1,786,787],[1183,9,5,787,792],[1185,1,1,792,793],[1186,2,2,793,795],[1187,5,4,795,799],[1188,1,1,799,800]]]],[23164,23167,23171,23195,23203,23207,23209,23237,23244,23268,23269,23271,23282,23295,23303,23304,23305,23307,23325,23328,23372,23384,23392,23394,23419,23427,23428,23441,23443,23454,23455,23465,23469,23470,23473,23475,23489,23495,23496,23497,23512,23519,23537,23539,23558,23559,23560,23561,23562,23570,23571,23572,23576,23577,23578,23583,23584,23586,23591,23594,23596,23599,23612,23623,23653,23659,23692,23704,23705,23728,23731,23734,23735,23736,23741,23772,23776,23786,23788,23793,23807,23815,23836,23837,23864,23868,23880,23904,23910,23914,23917,23926,23927,23928,23934,23935,23936,23963,23983,23990,24002,24072,24080,24082,24092,24093,24102,24120,24122,24135,24162,24166,24171,24191,24201,24242,24261,24269,24279,24288,24317,24321,24323,24345,24349,24354,24364,24378,24405,24410,24411,24422,24423,24442,24462,24467,24478,24490,24543,24545,24548,24559,24577,24578,24580,24581,24583,24585,24602,24612,24613,24615,24617,24628,24635,24680,24684,24700,24701,24702,24704,24705,24706,24708,24710,24745,24746,24750,24768,24776,24778,24788,24789,24798,24823,24879,24929,24954,24956,24984,25085,25087,25128,25130,25141,25146,25151,25166,25178,25179,25180,25181,25182,25186,25189,25193,25194,25195,25199,25218,25222,25223,25234,25244,25256,25262,25270,25271,25275,25310,25334,25336,25339,25351,25363,25370,25385,25392,25405,25426,25428,25434,25439,25440,25446,25460,25461,25465,25474,25482,25483,25493,25501,25536,25537,25539,25570,25575,25584,25588,25619,25630,25635,25637,25652,25672,25704,25713,25715,25717,25734,25740,25777,25781,25785,25793,25796,25817,25823,25856,25857,25875,25883,25902,25917,25923,25928,25941,25942,25950,25970,25973,25997,26012,26020,26063,26071,26074,26077,26078,26091,26104,26112,26126,26128,26139,26141,26149,26151,26153,26166,26167,26174,26176,26178,26179,26185,26190,26191,26193,26198,26212,26220,26222,26223,26225,26235,26237,26240,26241,26242,26255,26266,26271,26281,26286,26288,26290,26296,26297,26299,26302,26307,26308,26312,26315,26317,26320,26321,26327,26334,26335,26339,26340,26344,26345,26346,26350,26353,26354,26355,26356,26364,26368,26369,26394,26395,26397,26398,26400,26407,26410,26415,26420,26425,26431,26435,26444,26448,26449,26452,26456,26457,26459,26460,26464,26465,26469,26470,26476,26477,26482,26483,26494,26497,26502,26510,26515,26527,26533,26562,26580,26589,26594,26611,26614,26615,26630,26640,26646,26655,26656,26689,26692,26696,26700,26711,26719,26741,26743,26744,26758,26762,26766,26769,26776,26821,26823,26824,26860,26865,26881,26882,26897,26898,26902,26905,26910,26918,26922,26923,26930,26964,26965,26974,26978,26988,27033,27034,27041,27098,27103,27149,27153,27154,27186,27197,27202,27231,27236,27237,27238,27242,27254,27263,27265,27287,27293,27294,27295,27301,27340,27346,27352,27377,27460,27495,27526,27567,27572,27587,27610,27619,27620,27621,27636,27661,27675,27686,27688,27692,27697,27730,27733,27739,27740,27753,27761,27768,27801,27807,27810,27812,27849,27903,27921,27939,27942,27946,27949,27955,27964,27973,27990,27999,28001,28002,28003,28009,28013,28037,28038,28043,28061,28094,28105,28125,28140,28150,28157,28189,28196,28200,28215,28232,28267,28270,28284,28297,28303,28341,28381,28388,28408,28415,28417,28421,28423,28427,28429,28431,28432,28436,28437,28450,28472,28474,28482,28483,28484,28485,28486,28487,28495,28496,28501,28506,28509,28516,28526,28527,28543,28556,28558,28583,28586,28595,28603,28605,28607,28608,28613,28614,28615,28620,28624,28625,28640,28646,28648,28649,28650,28656,28688,28692,28693,28703,28704,28711,28713,28730,28731,28762,28776,28791,28812,28826,28827,28858,28862,28863,28931,28957,28968,28989,28999,29035,29048,29064,29068,29114,29118,29122,29132,29133,29155,29156,29157,29165,29181,29184,29185,29220,29224,29229,29243,29264,29281,29282,29287,29293,29309,29314,29316,29317,29322,29327,29336,29338,29339,29346,29349,29368,29369,29389,29404,29450,29471,29472,29480,29482,29483,29492,29504,29511,29516,29517,29518,29522,29531,29537,29542,29551,29583,29606,29652,29665,29670,29681,29695,29701,29716,29746,29747,29755,29757,29767,29771,29788,29794,29798,29815,29821,29824,29844,29847,29881,29898,29905,29931,29983,30027,30043,30044,30079,30098,30110,30120,30173,30178,30219,30279,30283,30289,30293,30310,30312,30313,30319,30324,30336,30341,30349,30351,30353,30354,30365,30380,30399,30414,30428,30446,30457,30488,30493,30496,30526,30538,30545,30547,30548,30549,30550,30552,30554,30557,30558,30559,30560,30561,30565,30566,30568,30571,30572,30575,30577,30579,30581,30582,30583,30584,30586,30587,30589,30590,30594,30599,30602,30604,30605,30606,30607,30609,30610,30611,30613,30615,30618,30619,30620,30621,30623,30625,30627,30628,30629,30630,30633,30635,30638,30640,30641,30644,30651,30652,30669,30670,30701,30724,30781,30791,30792,30918,30926,30938,30975,30983,30985,30986,30989,30993,31025,31040,31052,31054,31065,31069,31075,31090]]],["+",[23,23,[[39,3,3,0,3,[[941,1,1,0,1],[946,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[962,1,1,3,4],[965,1,1,4,5]]],[41,2,2,5,7,[[978,1,1,5,6],[995,1,1,6,7]]],[43,5,5,7,12,[[1029,1,1,7,8],[1030,1,1,8,9],[1036,1,1,9,10],[1042,1,1,10,11],[1045,1,1,11,12]]],[45,1,1,12,13,[[1068,1,1,12,13]]],[46,1,1,13,14,[[1086,1,1,13,14]]],[48,1,1,14,15,[[1102,1,1,14,15]]],[50,3,3,15,18,[[1107,1,1,15,16],[1108,1,1,16,17],[1109,1,1,17,18]]],[53,1,1,18,19,[[1122,1,1,18,19]]],[57,1,1,19,20,[[1141,1,1,19,20]]],[58,1,1,20,21,[[1146,1,1,20,21]]],[59,1,1,21,22,[[1151,1,1,21,22]]],[61,1,1,22,23,[[1160,1,1,22,23]]]],[23560,23734,24191,24462,24559,25189,25942,27340,27377,27621,27801,27921,28516,28968,29349,29471,29517,29518,29755,30110,30279,30380,30572]]],["IS",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24166,25973]]],["Is",[12,12,[[39,4,4,0,4,[[934,1,1,0,1],[940,1,1,1,2],[941,1,1,2,3],[948,1,1,3,4]]],[40,1,1,4,5,[[962,1,1,4,5]]],[41,1,1,5,6,[[976,1,1,5,6]]],[42,5,5,6,11,[[1002,1,1,6,7],[1003,1,1,7,8],[1005,2,2,8,10],[1006,1,1,10,11]]],[43,1,1,11,12,[[1026,1,1,11,12]]]],[23307,23512,23594,23807,24410,25085,26299,26353,26448,26459,26515,27237]]],["and",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25734]]],["are",[51,49,[[39,3,3,0,3,[[938,1,1,0,1],[943,1,1,1,2],[947,1,1,2,3]]],[40,2,2,3,5,[[963,1,1,3,4],[966,1,1,4,5]]],[41,4,4,5,9,[[983,2,2,5,7],[986,1,1,7,8],[990,1,1,8,9]]],[42,13,12,9,21,[[999,1,1,9,10],[1000,1,1,10,11],[1002,3,2,11,13],[1003,1,1,13,14],[1006,2,2,14,16],[1012,1,1,16,17],[1013,2,2,17,19],[1016,1,1,19,20],[1017,1,1,20,21]]],[43,2,2,21,23,[[1032,1,1,21,22],[1038,1,1,22,23]]],[45,9,9,23,32,[[1063,1,1,23,24],[1064,2,2,24,26],[1067,2,2,26,28],[1068,1,1,28,29],[1073,2,2,29,31],[1075,1,1,31,32]]],[47,3,2,32,34,[[1094,1,1,32,33],[1095,2,1,33,34]]],[49,1,1,34,35,[[1106,1,1,34,35]]],[50,2,2,35,37,[[1108,2,2,35,37]]],[53,1,1,37,38,[[1123,1,1,37,38]]],[54,2,2,38,40,[[1125,1,1,38,39],[1126,1,1,39,40]]],[55,1,1,40,41,[[1131,1,1,40,41]]],[60,1,1,41,42,[[1158,1,1,41,42]]],[61,2,2,42,44,[[1161,1,1,42,43],[1162,1,1,43,44]]],[65,5,5,44,49,[[1167,1,1,44,45],[1171,1,1,45,46],[1187,3,3,46,49]]]],[23419,23653,23788,24478,24615,25426,25446,25570,25715,26141,26191,26266,26320,26335,26497,26502,26741,26766,26769,26897,26923,27460,27688,28408,28431,28432,28482,28487,28501,28646,28656,28688,29155,29181,29450,29511,29516,29788,29824,29847,29931,30538,30589,30604,30701,30792,31065,31069,31075]]],["be",[23,23,[[39,4,4,0,4,[[934,1,1,0,1],[947,1,1,1,2],[954,1,1,2,3],[955,1,1,3,4]]],[40,2,2,4,6,[[960,1,1,4,5],[963,1,1,5,6]]],[41,4,4,6,10,[[983,1,1,6,7],[986,1,1,7,8],[992,1,1,8,9],[995,1,1,9,10]]],[42,3,3,10,13,[[1003,1,1,10,11],[1005,1,1,11,12],[1016,1,1,12,13]]],[43,5,5,13,18,[[1021,1,1,13,14],[1022,1,1,14,15],[1035,1,1,15,16],[1036,1,1,16,17],[1042,1,1,17,18]]],[45,1,1,18,19,[[1076,1,1,18,19]]],[46,1,1,19,20,[[1081,1,1,19,20]]],[55,1,1,20,21,[[1129,1,1,20,21]]],[58,1,1,21,22,[[1146,1,1,21,22]]],[59,1,1,22,23,[[1154,1,1,22,23]]]],[23305,23772,24093,24171,24354,24467,25440,25584,25785,25970,26345,26465,26882,27041,27098,27572,27587,27807,28731,28862,29898,30289,30457]]],["been",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]]],[26012,26562]]],["belongeth",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30044]]],["cometh",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23271]]],["consisteth",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25474]]],["had",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27697]]],["hast",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27197]]],["have",[9,9,[[41,4,4,0,4,[[978,3,3,0,3],[984,1,1,3,4]]],[42,1,1,4,5,[[1014,1,1,4,5]]],[43,2,2,5,7,[[1035,1,1,5,6],[1036,1,1,6,7]]],[44,1,1,7,8,[[1054,1,1,7,8]]],[45,1,1,8,9,[[1070,1,1,8,9]]]],[25178,25179,25180,25483,26824,27567,27610,28157,28556]]],["he",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25823]]],["is",[719,651,[[39,100,96,0,96,[[929,2,2,0,2],[930,1,1,2,3],[931,3,3,3,6],[933,6,5,6,11],[934,3,3,11,14],[935,2,2,14,16],[936,1,1,16,17],[937,2,2,17,19],[938,7,6,19,25],[939,6,6,25,31],[940,5,5,31,36],[941,17,15,36,51],[942,3,3,51,54],[943,1,1,54,55],[945,2,2,55,57],[946,5,5,57,62],[947,3,3,62,65],[948,2,2,65,67],[949,4,4,67,71],[950,5,5,71,76],[951,6,6,76,82],[952,4,4,82,86],[954,7,7,86,93],[955,2,2,93,95],[956,1,1,95,96]]],[40,54,51,96,147,[[957,1,1,96,97],[958,3,3,97,100],[959,3,3,100,103],[960,4,4,103,107],[961,1,1,107,108],[962,5,4,108,112],[963,2,2,112,114],[965,9,8,114,122],[966,5,5,122,127],[968,11,10,127,137],[969,3,3,137,140],[970,6,6,140,146],[972,1,1,146,147]]],[41,84,77,147,224,[[973,3,3,147,150],[974,1,1,150,151],[976,1,1,151,152],[977,4,4,152,156],[978,8,8,156,164],[979,6,5,164,169],[980,7,5,169,174],[981,7,6,174,180],[982,5,4,180,184],[983,4,3,184,187],[984,6,6,187,193],[985,3,3,193,196],[986,2,2,196,198],[987,1,1,198,199],[988,4,3,199,202],[989,2,2,202,204],[990,3,3,204,207],[991,2,2,207,209],[992,4,4,209,213],[993,2,2,213,215],[994,6,6,215,221],[995,1,1,221,222],[996,2,2,222,224]]],[42,129,115,224,339,[[997,6,6,224,230],[999,9,6,230,236],[1000,10,10,236,246],[1001,10,9,246,255],[1002,16,15,255,270],[1003,14,12,270,282],[1004,15,12,282,294],[1005,13,11,294,305],[1006,4,4,305,309],[1007,2,2,309,311],[1008,5,5,311,316],[1009,4,4,316,320],[1010,3,3,320,323],[1011,3,3,323,326],[1012,3,3,326,329],[1013,2,2,329,331],[1014,3,2,331,333],[1015,2,2,333,335],[1016,1,1,335,336],[1017,4,3,336,339]]],[43,39,38,339,377,[[1018,1,1,339,340],[1019,5,5,340,345],[1021,3,2,345,347],[1023,1,1,347,348],[1024,3,3,348,351],[1025,3,3,351,354],[1026,3,3,354,357],[1027,7,7,357,364],[1029,1,1,364,365],[1033,1,1,365,366],[1034,1,1,366,367],[1036,1,1,367,368],[1037,2,2,368,370],[1038,2,2,370,372],[1039,1,1,372,373],[1040,1,1,373,374],[1042,2,2,374,376],[1045,1,1,376,377]]],[44,36,33,377,410,[[1046,5,5,377,382],[1047,3,3,382,385],[1048,7,6,385,391],[1049,2,2,391,393],[1050,1,1,393,394],[1052,2,2,394,396],[1053,3,3,396,399],[1055,3,3,399,402],[1056,3,2,402,404],[1058,3,2,404,406],[1059,3,3,406,409],[1061,1,1,409,410]]],[45,61,54,410,464,[[1062,4,2,410,412],[1064,6,6,412,418],[1065,3,3,418,421],[1067,6,6,421,427],[1068,8,6,427,433],[1070,3,3,433,436],[1071,5,3,436,439],[1072,10,10,439,449],[1073,5,5,449,454],[1075,6,6,454,460],[1076,4,3,460,463],[1077,1,1,463,464]]],[46,12,12,464,476,[[1078,1,1,464,465],[1079,2,2,465,467],[1080,1,1,467,468],[1081,2,2,468,470],[1084,1,1,470,471],[1086,1,1,471,472],[1087,1,1,472,473],[1088,1,1,473,474],[1089,1,1,474,475],[1090,1,1,475,476]]],[47,15,13,476,489,[[1091,2,2,476,478],[1093,4,3,478,481],[1094,6,5,481,486],[1095,3,3,486,489]]],[48,21,19,489,508,[[1097,3,3,489,492],[1098,1,1,492,493],[1099,1,1,493,494],[1100,4,4,494,498],[1101,8,7,498,505],[1102,4,3,505,508]]],[49,4,4,508,512,[[1103,3,3,508,511],[1104,1,1,511,512]]],[50,12,11,512,523,[[1107,6,5,512,517],[1108,1,1,517,518],[1109,4,4,518,522],[1110,1,1,522,523]]],[51,2,2,523,525,[[1112,1,1,523,524],[1114,1,1,524,525]]],[52,5,5,525,530,[[1116,1,1,525,526],[1117,2,2,526,528],[1118,2,2,528,530]]],[53,10,10,530,540,[[1119,2,2,530,532],[1121,2,2,532,534],[1122,2,2,534,536],[1123,2,2,536,538],[1124,2,2,538,540]]],[54,5,4,540,544,[[1125,2,2,540,542],[1126,1,1,542,543],[1128,2,1,543,544]]],[55,1,1,544,545,[[1129,1,1,544,545]]],[57,9,9,545,554,[[1134,1,1,545,546],[1136,1,1,546,547],[1137,1,1,547,548],[1139,1,1,548,549],[1140,1,1,549,550],[1141,1,1,550,551],[1143,2,2,551,553],[1144,1,1,553,554]]],[58,15,14,554,568,[[1146,2,2,554,556],[1147,5,4,556,560],[1148,2,2,560,562],[1149,5,5,562,567],[1150,1,1,567,568]]],[59,4,4,568,572,[[1151,1,1,568,569],[1152,1,1,569,570],[1153,2,2,570,572]]],[60,3,3,572,575,[[1156,2,2,572,574],[1158,1,1,574,575]]],[61,71,55,575,630,[[1159,7,5,575,580],[1160,20,15,580,595],[1161,12,11,595,606],[1162,15,13,606,619],[1163,17,11,619,630]]],[62,3,2,630,632,[[1164,3,2,630,632]]],[63,2,2,632,634,[[1165,2,2,632,634]]],[65,22,17,634,651,[[1168,1,1,634,635],[1171,3,3,635,638],[1179,3,2,638,640],[1180,1,1,640,641],[1183,9,5,641,646],[1185,1,1,646,647],[1186,2,2,647,649],[1187,1,1,649,650],[1188,1,1,650,651]]]],[23164,23167,23171,23195,23203,23209,23237,23244,23268,23269,23282,23295,23303,23304,23325,23328,23372,23384,23394,23427,23428,23441,23443,23454,23455,23465,23469,23470,23473,23475,23489,23495,23497,23519,23537,23539,23558,23559,23561,23562,23570,23571,23572,23576,23577,23578,23583,23584,23586,23591,23596,23599,23612,23623,23659,23704,23705,23728,23731,23735,23736,23741,23776,23786,23788,23793,23815,23836,23837,23864,23868,23880,23904,23910,23914,23917,23926,23927,23928,23934,23935,23936,23963,23983,23990,24002,24072,24080,24082,24092,24102,24120,24122,24135,24162,24201,24242,24269,24279,24288,24317,24321,24323,24345,24349,24354,24364,24405,24411,24422,24423,24442,24478,24490,24543,24545,24577,24578,24580,24581,24583,24585,24602,24612,24613,24617,24628,24680,24684,24700,24701,24702,24704,24705,24706,24708,24710,24745,24746,24750,24768,24776,24778,24788,24798,24823,24879,24929,24954,24956,24984,25087,25128,25130,25141,25146,25151,25166,25181,25182,25186,25193,25194,25195,25218,25222,25223,25234,25244,25256,25262,25270,25271,25275,25310,25334,25336,25339,25351,25363,25370,25385,25392,25405,25428,25434,25439,25460,25461,25465,25482,25493,25501,25536,25537,25539,25575,25588,25619,25630,25635,25637,25652,25672,25704,25713,25717,25740,25777,25781,25793,25796,25817,25856,25857,25875,25883,25902,25917,25923,25928,25950,25997,26020,26063,26071,26074,26077,26078,26091,26126,26128,26139,26149,26151,26153,26166,26167,26174,26176,26178,26179,26185,26190,26193,26198,26212,26220,26222,26235,26237,26240,26241,26242,26255,26266,26271,26286,26288,26290,26296,26297,26302,26307,26308,26312,26315,26317,26320,26327,26334,26339,26340,26344,26346,26350,26354,26355,26356,26364,26368,26369,26394,26395,26397,26398,26400,26407,26410,26415,26420,26425,26431,26435,26444,26449,26452,26456,26457,26460,26464,26469,26470,26476,26477,26482,26483,26494,26510,26527,26533,26594,26611,26614,26615,26630,26640,26646,26655,26656,26689,26692,26696,26700,26711,26719,26743,26744,26758,26762,26776,26821,26823,26860,26865,26898,26905,26918,26922,26930,26964,26965,26974,26978,26988,27033,27034,27103,27149,27153,27154,27186,27197,27202,27231,27236,27238,27263,27265,27287,27293,27294,27295,27301,27352,27495,27526,27620,27636,27661,27686,27692,27730,27753,27810,27812,27903,27939,27942,27946,27949,27955,27964,27973,27990,27999,28001,28002,28003,28009,28013,28037,28038,28061,28094,28105,28125,28140,28150,28189,28196,28200,28215,28232,28267,28270,28284,28297,28303,28341,28381,28388,28415,28417,28421,28423,28427,28429,28436,28437,28450,28472,28474,28483,28484,28485,28486,28495,28496,28506,28509,28526,28527,28543,28556,28558,28583,28586,28595,28603,28605,28607,28608,28613,28614,28615,28620,28624,28625,28640,28646,28648,28649,28650,28692,28693,28703,28704,28711,28713,28730,28762,28776,28791,28812,28826,28827,28858,28862,28863,28931,28957,28989,28999,29035,29048,29064,29068,29114,29118,29122,29132,29133,29155,29156,29157,29165,29184,29185,29220,29224,29229,29243,29264,29281,29282,29287,29293,29309,29314,29316,29317,29322,29327,29336,29338,29339,29346,29368,29369,29389,29404,29472,29480,29482,29483,29492,29504,29522,29531,29537,29542,29551,29583,29606,29652,29665,29670,29681,29695,29701,29716,29746,29747,29755,29757,29767,29771,29794,29798,29815,29821,29844,29881,29905,29983,30027,30043,30079,30098,30120,30173,30178,30219,30283,30293,30310,30312,30313,30319,30324,30336,30341,30349,30351,30353,30354,30365,30399,30414,30428,30446,30488,30496,30526,30545,30547,30548,30549,30550,30552,30554,30557,30558,30559,30560,30561,30565,30566,30568,30571,30572,30575,30577,30579,30581,30582,30583,30584,30586,30587,30589,30590,30594,30599,30602,30605,30606,30607,30609,30610,30611,30613,30615,30618,30619,30620,30621,30623,30625,30627,30628,30629,30630,30633,30635,30638,30640,30641,30644,30651,30652,30669,30670,30724,30781,30791,30792,30918,30926,30938,30983,30985,30986,30989,30993,31025,31040,31052,31069,31090]]],["it",[1,1,[[39,1,1,0,1,[[931,1,1,0,1]]]],[23207]]],["mean",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24548]]],["meaneth",[2,2,[[39,2,2,0,2,[[937,1,1,0,1],[940,1,1,1,2]]]],[23392,23496]]],["must",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30493]]],["no",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28003]]],["owneth",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27675]]],["should",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26321]]],["was",[28,28,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,3,3,1,4,[[958,1,1,1,2],[961,1,1,2,3],[966,1,1,3,4]]],[41,2,2,4,6,[[979,1,1,4,5],[991,1,1,5,6]]],[42,10,10,6,16,[[998,2,2,6,8],[1001,2,2,8,10],[1002,1,1,10,11],[1008,1,1,11,12],[1016,1,1,12,13],[1017,3,3,13,16]]],[43,9,9,16,25,[[1026,2,2,16,18],[1029,1,1,18,19],[1036,1,1,19,20],[1039,1,1,20,21],[1040,3,3,21,24],[1043,1,1,24,25]]],[44,1,1,25,26,[[1049,1,1,25,26]]],[65,2,2,26,28,[[1182,1,1,26,27],[1187,1,1,27,28]]]],[23692,24261,24378,24635,25199,25734,26104,26112,26223,26225,26281,26589,26881,26902,26905,26910,27242,27254,27346,27619,27733,27739,27761,27768,27849,28043,30975,31054]]],["were",[5,5,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]],[42,1,1,2,3,[[1007,1,1,2,3]]],[43,1,1,3,4,[[1040,1,1,3,4]]],[45,1,1,4,5,[[1068,1,1,4,5]]]],[24789,25941,26580,27740,28501]]]]},{"k":"G2077","v":[["*",[16,16,[[39,4,4,0,4,[[933,1,1,0,1],[946,1,1,1,2],[948,2,2,2,4]]],[41,1,1,4,5,[[984,1,1,4,5]]],[43,5,5,5,10,[[1018,1,1,5,6],[1019,1,1,6,7],[1021,1,1,7,8],[1030,1,1,8,9],[1045,1,1,9,10]]],[46,1,1,10,11,[[1089,1,1,10,11]]],[47,2,2,11,13,[[1091,2,2,11,13]]],[53,1,1,13,14,[[1121,1,1,13,14]]],[58,1,1,14,15,[[1146,1,1,14,15]]],[59,1,1,15,16,[[1153,1,1,15,16]]]],[23271,23744,23818,23819,25494,26943,26963,27032,27400,27927,29038,29065,29066,29743,30285,30427]]],["Be",[3,3,[[43,3,3,0,3,[[1021,1,1,0,1],[1030,1,1,1,2],[1045,1,1,2,3]]]],[27032,27400,27927]]],["be",[12,12,[[39,4,4,0,4,[[933,1,1,0,1],[946,1,1,1,2],[948,2,2,2,4]]],[41,1,1,4,5,[[984,1,1,4,5]]],[43,1,1,5,6,[[1019,1,1,5,6]]],[46,1,1,6,7,[[1089,1,1,6,7]]],[47,2,2,7,9,[[1091,2,2,7,9]]],[53,1,1,9,10,[[1121,1,1,9,10]]],[58,1,1,10,11,[[1146,1,1,10,11]]],[59,1,1,11,12,[[1153,1,1,11,12]]]],[23271,23744,23818,23819,25494,26963,29038,29065,29066,29743,30285,30427]]],["man",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26943]]]]},{"k":"G2078","v":[["*",[54,49,[[39,10,8,0,8,[[933,1,1,0,1],[940,1,1,1,2],[947,2,1,2,3],[948,5,4,3,7],[955,1,1,7,8]]],[40,5,4,8,12,[[965,1,1,8,9],[966,2,1,9,10],[968,2,2,10,12]]],[41,6,5,12,17,[[983,1,1,12,13],[984,1,1,13,14],[985,2,1,14,15],[986,2,2,15,17]]],[42,8,8,17,25,[[1002,4,4,17,21],[1003,1,1,21,22],[1004,1,1,22,23],[1007,1,1,23,24],[1008,1,1,24,25]]],[43,3,3,25,28,[[1018,1,1,25,26],[1019,1,1,26,27],[1030,1,1,27,28]]],[45,5,5,28,33,[[1065,1,1,28,29],[1076,4,4,29,33]]],[54,1,1,33,34,[[1127,1,1,33,34]]],[57,1,1,34,35,[[1133,1,1,34,35]]],[58,1,1,35,36,[[1150,1,1,35,36]]],[59,2,2,36,38,[[1151,2,2,36,38]]],[60,2,2,38,40,[[1157,1,1,38,39],[1158,1,1,39,40]]],[61,2,1,40,41,[[1160,2,1,40,41]]],[64,1,1,41,42,[[1166,1,1,41,42]]],[65,7,7,42,49,[[1167,2,2,42,44],[1168,2,2,44,46],[1181,1,1,46,47],[1187,1,1,47,48],[1188,1,1,48,49]]]],[23260,23534,23792,23800,23804,23806,23808,24193,24573,24619,24679,24695,25431,25518,25548,25562,25563,26296,26297,26301,26311,26365,26390,26547,26628,26931,26966,27409,28442,28726,28744,28763,28770,29854,29965,30357,30379,30394,30520,30525,30568,30690,30708,30714,30725,30736,30947,31062,31093]]],["end",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30520]]],["ends",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27409]]],["last",[48,43,[[39,9,7,0,7,[[940,1,1,0,1],[947,2,1,1,2],[948,5,4,2,6],[955,1,1,6,7]]],[40,5,4,7,11,[[965,1,1,7,8],[966,2,1,8,9],[968,2,2,9,11]]],[41,4,3,11,14,[[983,1,1,11,12],[984,1,1,12,13],[985,2,1,13,14]]],[42,8,8,14,22,[[1002,4,4,14,18],[1003,1,1,18,19],[1004,1,1,19,20],[1007,1,1,20,21],[1008,1,1,21,22]]],[43,1,1,22,23,[[1019,1,1,22,23]]],[45,5,5,23,28,[[1065,1,1,23,24],[1076,4,4,24,28]]],[54,1,1,28,29,[[1127,1,1,28,29]]],[57,1,1,29,30,[[1133,1,1,29,30]]],[58,1,1,30,31,[[1150,1,1,30,31]]],[59,2,2,31,33,[[1151,2,2,31,33]]],[60,1,1,33,34,[[1158,1,1,33,34]]],[61,2,1,34,35,[[1160,2,1,34,35]]],[64,1,1,35,36,[[1166,1,1,35,36]]],[65,7,7,36,43,[[1167,2,2,36,38],[1168,2,2,38,40],[1181,1,1,40,41],[1187,1,1,41,42],[1188,1,1,42,43]]]],[23534,23792,23800,23804,23806,23808,24193,24573,24619,24679,24695,25431,25518,25548,26296,26297,26301,26311,26365,26390,26547,26628,26966,28442,28726,28744,28763,28770,29854,29965,30357,30379,30394,30525,30568,30690,30708,30714,30725,30736,30947,31062,31093]]],["lowest",[2,2,[[41,2,2,0,2,[[986,2,2,0,2]]]],[25562,25563]]],["part",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26931]]],["uttermost",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23260]]]]},{"k":"G2079","v":[["+",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24387]]]]},{"k":"G2080","v":[["*",[7,7,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,1,1,2,3,[[1016,1,1,2,3]]],[43,1,1,3,4,[[1022,1,1,3,4]]],[44,1,1,4,5,[[1052,1,1,4,5]]],[45,1,1,5,6,[[1066,1,1,5,6]]],[48,1,1,6,7,[[1099,1,1,6,7]]]],[24112,24842,26893,27082,28113,28466,29267]]],["in",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24112]]],["inner",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29267]]],["into",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24842]]],["inward",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28113]]],["within",[3,3,[[42,1,1,0,1,[[1016,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]],[45,1,1,2,3,[[1066,1,1,2,3]]]],[26893,27082,28466]]]]},{"k":"G2081","v":[["*",[13,13,[[39,4,4,0,4,[[935,1,1,0,1],[951,3,3,1,4]]],[40,2,2,4,6,[[963,2,2,4,6]]],[41,3,3,6,9,[[983,3,3,6,9]]],[46,2,2,9,11,[[1081,1,1,9,10],[1084,1,1,10,11]]],[65,2,2,11,13,[[1170,1,1,11,12],[1171,1,1,12,13]]]],[23331,23943,23945,23946,24484,24486,25412,25444,25445,28875,28921,30776,30780]]],["+",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23945]]],["inward",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28875]]],["inwardly",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23331]]],["part",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25444]]],["within",[9,9,[[39,2,2,0,2,[[951,2,2,0,2]]],[40,2,2,2,4,[[963,2,2,2,4]]],[41,2,2,4,6,[[983,2,2,4,6]]],[46,1,1,6,7,[[1084,1,1,6,7]]],[65,2,2,7,9,[[1170,1,1,7,8],[1171,1,1,8,9]]]],[23943,23946,24484,24486,25412,25445,28921,30776,30780]]]]},{"k":"G2082","v":[["*",[2,2,[[43,1,1,0,1,[[1033,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[27507,30063]]],["inner",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27507]]],["within",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30063]]]]},{"k":"G2083","v":[["*",[4,4,[[39,4,4,0,4,[[939,1,1,0,1],[948,1,1,1,2],[950,1,1,2,3],[954,1,1,3,4]]]],[23475,23805,23884,24104]]],["Friend",[3,3,[[39,3,3,0,3,[[948,1,1,0,1],[950,1,1,1,2],[954,1,1,2,3]]]],[23805,23884,24104]]],["fellows",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23475]]]]},{"k":"G2084","v":[["tongues",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28699]]]]},{"k":"G2085","v":[["*",[2,2,[[53,2,2,0,2,[[1119,1,1,0,1],[1124,1,1,1,2]]]],[29699,29791]]],["+",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29699]]],["otherwise",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29791]]]]},{"k":"G2086","v":[["together",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28912]]]]},{"k":"G2087","v":[["*",[99,94,[[39,7,6,0,6,[[934,2,1,0,1],[936,1,1,1,2],[939,1,1,2,3],[940,1,1,3,4],[943,1,1,4,5],[944,1,1,5,6]]],[40,1,1,6,7,[[972,1,1,6,7]]],[41,33,32,7,39,[[975,1,1,7,8],[976,1,1,8,9],[977,1,1,9,10],[978,1,1,10,11],[979,1,1,11,12],[980,4,4,12,16],[981,4,4,16,20],[982,1,1,20,21],[983,2,2,21,23],[986,3,3,23,26],[988,4,3,26,29],[989,3,3,29,32],[990,1,1,32,33],[991,1,1,33,34],[992,1,1,34,35],[994,2,2,35,37],[995,2,2,37,39]]],[42,1,1,39,40,[[1015,1,1,39,40]]],[43,18,18,40,58,[[1018,1,1,40,41],[1019,3,3,41,44],[1021,1,1,44,45],[1024,1,1,45,46],[1025,1,1,46,47],[1029,1,1,47,48],[1030,1,1,48,49],[1032,1,1,49,50],[1034,3,3,50,53],[1036,1,1,53,54],[1037,1,1,54,55],[1040,1,1,55,56],[1044,2,2,56,58]]],[44,9,8,58,66,[[1047,2,2,58,60],[1052,4,3,60,63],[1053,1,1,63,64],[1058,2,2,64,66]]],[45,12,11,66,77,[[1064,1,1,66,67],[1065,1,1,67,68],[1067,1,1,68,69],[1069,1,1,69,70],[1071,2,2,70,72],[1073,2,2,72,74],[1075,2,2,74,76],[1076,2,1,76,77]]],[46,3,2,77,79,[[1085,1,1,77,78],[1088,2,1,78,79]]],[47,3,3,79,82,[[1091,2,2,79,81],[1096,1,1,81,82]]],[48,1,1,82,83,[[1099,1,1,82,83]]],[49,1,1,83,84,[[1104,1,1,83,84]]],[53,1,1,84,85,[[1119,1,1,84,85]]],[54,1,1,85,86,[[1126,1,1,85,86]]],[57,5,5,86,91,[[1137,1,1,86,87],[1139,3,3,87,90],[1143,1,1,90,91]]],[58,2,2,91,93,[[1147,1,1,91,92],[1149,1,1,92,93]]],[64,1,1,93,94,[[1166,1,1,93,94]]]],[23306,23366,23462,23534,23663,23686,24885,25043,25106,25114,25152,25236,25248,25251,25252,25253,25330,25357,25360,25362,25364,25421,25431,25572,25573,25584,25627,25633,25638,25685,25686,25687,25698,25751,25790,25922,25929,25967,25975,26862,26943,26953,26962,26989,27034,27134,27210,27354,27397,27477,27530,27544,27557,27624,27641,27740,27856,27858,27963,27983,28094,28095,28114,28155,28274,28275,28414,28439,28468,28531,28591,28596,28643,28644,28695,28699,28758,28940,28993,29063,29076,29192,29256,29395,29706,29829,30036,30075,30077,30079,30208,30318,30349,30679]]],["+",[2,2,[[43,1,1,0,1,[[1025,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[27210,28699]]],["Others",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26962]]],["altered",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25330]]],["another",[44,42,[[39,2,2,0,2,[[936,1,1,0,1],[939,1,1,1,2]]],[40,1,1,2,3,[[972,1,1,2,3]]],[41,12,12,3,15,[[978,1,1,3,4],[981,3,3,4,7],[986,3,3,7,10],[988,2,2,10,12],[991,1,1,12,13],[992,1,1,13,14],[994,1,1,14,15]]],[42,1,1,15,16,[[1015,1,1,15,16]]],[43,5,5,16,21,[[1018,1,1,16,17],[1024,1,1,17,18],[1029,1,1,18,19],[1030,1,1,19,20],[1034,1,1,20,21]]],[44,7,6,21,27,[[1047,2,2,21,23],[1052,4,3,23,26],[1058,1,1,26,27]]],[45,6,6,27,33,[[1064,1,1,27,28],[1065,1,1,28,29],[1067,1,1,29,30],[1073,2,2,30,32],[1076,1,1,32,33]]],[46,2,1,33,34,[[1088,2,1,33,34]]],[47,2,2,34,36,[[1091,1,1,34,35],[1096,1,1,35,36]]],[57,4,4,36,40,[[1137,1,1,36,37],[1139,3,3,37,40]]],[58,2,2,40,42,[[1147,1,1,40,41],[1149,1,1,41,42]]]],[23366,23462,24885,25152,25357,25360,25362,25572,25573,25584,25627,25638,25751,25790,25922,26862,26943,27134,27354,27397,27530,27963,27983,28094,28095,28114,28274,28414,28439,28468,28643,28644,28758,28993,29063,29192,30036,30075,30077,30079,30318,30349]]],["another's",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28591]]],["else",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27544]]],["matters",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27624]]],["next",[2,2,[[43,2,2,0,2,[[1037,1,1,0,1],[1044,1,1,1,2]]]],[27641,27858]]],["one",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28758]]],["other",[29,27,[[39,3,2,0,2,[[934,2,1,0,1],[940,1,1,1,2]]],[41,14,13,2,15,[[976,1,1,2,3],[977,1,1,3,4],[979,1,1,4,5],[980,1,1,5,6],[982,1,1,6,7],[983,1,1,7,8],[988,2,1,8,9],[989,3,3,9,12],[990,1,1,12,13],[995,2,2,13,15]]],[43,5,5,15,20,[[1019,2,2,15,17],[1021,1,1,17,18],[1040,1,1,18,19],[1044,1,1,19,20]]],[44,2,2,20,22,[[1053,1,1,20,21],[1058,1,1,21,22]]],[45,3,3,22,25,[[1069,1,1,22,23],[1071,1,1,23,24],[1075,1,1,24,25]]],[47,1,1,25,26,[[1091,1,1,25,26]]],[48,1,1,26,27,[[1099,1,1,26,27]]]],[23306,23534,25106,25114,25236,25253,25364,25431,25633,25685,25686,25687,25698,25967,25975,26953,26989,27034,27740,27856,28155,28275,28531,28596,28695,29076,29256]]],["others",[10,10,[[39,2,2,0,2,[[943,1,1,0,1],[944,1,1,1,2]]],[41,2,2,2,4,[[980,1,1,2,3],[983,1,1,3,4]]],[43,2,2,4,6,[[1032,1,1,4,5],[1034,1,1,5,6]]],[46,1,1,6,7,[[1085,1,1,6,7]]],[49,1,1,7,8,[[1104,1,1,7,8]]],[54,1,1,8,9,[[1126,1,1,8,9]]],[57,1,1,9,10,[[1143,1,1,9,10]]]],[23663,23686,25248,25421,27477,27557,28940,29395,29829,30208]]],["some",[2,2,[[41,2,2,0,2,[[980,2,2,0,2]]]],[25251,25252]]],["strange",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30679]]],["thing",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29706]]],["things",[2,2,[[41,2,2,0,2,[[975,1,1,0,1],[994,1,1,1,2]]]],[25043,25929]]]]},{"k":"G2088","v":[["+",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29436]]]]},{"k":"G2089","v":[["*",[101,90,[[39,8,8,0,8,[[933,1,1,0,1],[940,1,1,1,2],[945,1,1,2,3],[946,1,1,3,4],[947,1,1,4,5],[954,2,2,5,7],[955,1,1,7,8]]],[40,6,5,8,13,[[961,2,1,8,9],[964,1,1,9,10],[968,1,1,10,11],[970,2,2,11,13]]],[41,17,17,13,30,[[973,1,1,13,14],[980,1,1,14,15],[981,1,1,15,16],[986,3,3,16,19],[987,1,1,19,20],[988,1,1,20,21],[990,1,1,21,22],[992,1,1,22,23],[994,4,4,23,27],[996,3,3,27,30]]],[42,15,14,30,44,[[1000,1,1,30,31],[1003,1,1,31,32],[1007,1,1,32,33],[1008,1,1,33,34],[1009,1,1,34,35],[1010,3,2,35,37],[1012,4,4,37,41],[1013,1,1,41,42],[1016,1,1,42,43],[1017,1,1,43,44]]],[43,5,5,44,49,[[1019,1,1,44,45],[1026,1,1,45,46],[1027,1,1,46,47],[1035,1,1,47,48],[1038,1,1,48,49]]],[44,5,5,49,54,[[1048,1,1,49,50],[1050,2,2,50,52],[1051,1,1,52,53],[1054,1,1,53,54]]],[45,4,4,54,58,[[1064,2,2,54,56],[1073,1,1,56,57],[1076,1,1,57,58]]],[46,1,1,58,59,[[1078,1,1,58,59]]],[47,3,2,59,61,[[1091,1,1,59,60],[1095,2,1,60,61]]],[49,1,1,61,62,[[1103,1,1,61,62]]],[52,1,1,62,63,[[1117,1,1,62,63]]],[57,13,13,63,76,[[1139,3,3,63,66],[1140,1,1,66,67],[1141,1,1,67,68],[1142,3,3,68,71],[1143,3,3,71,74],[1144,2,2,74,76]]],[65,22,14,76,90,[[1169,1,1,76,77],[1172,1,1,77,78],[1173,2,1,78,79],[1175,1,1,79,80],[1176,1,1,80,81],[1178,1,1,81,82],[1184,6,3,82,85],[1186,1,1,85,86],[1187,3,2,86,88],[1188,5,2,88,90]]]],[23247,23535,23705,23743,23782,24101,24119,24192,24399,24517,24679,24797,24817,24908,25294,25343,25575,25579,25585,25608,25622,25710,25815,25901,25911,25924,25935,25997,26032,26035,26191,26361,26577,26615,26663,26687,26698,26736,26738,26747,26751,26770,26868,26904,26975,27217,27303,27575,27692,27998,28053,28055,28070,28174,28412,28413,28665,28735,28810,29067,29173,29370,29666,30074,30075,30079,30104,30113,30135,30150,30170,30176,30204,30208,30238,30239,30758,30804,30826,30852,30867,30899,31014,31015,31016,31041,31054,31057,31083,31091]]],["+",[13,10,[[41,2,2,0,2,[[987,1,1,0,1],[988,1,1,1,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]],[57,3,3,3,6,[[1140,1,1,3,4],[1142,2,2,4,6]]],[65,7,4,6,10,[[1184,6,3,6,9],[1188,1,1,9,10]]]],[25608,25622,26975,30104,30135,30150,31014,31015,31016,31083]]],["Hereafter",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26698]]],["Yet",[6,6,[[41,1,1,0,1,[[990,1,1,0,1]]],[42,3,3,1,4,[[1003,1,1,1,2],[1008,1,1,2,3],[1010,1,1,3,4]]],[57,2,2,4,6,[[1144,2,2,4,6]]]],[25710,26361,26615,26687,30238,30239]]],["even",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24908]]],["further",[6,6,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[970,1,1,2,3]]],[41,1,1,3,4,[[994,1,1,3,4]]],[43,1,1,4,5,[[1038,1,1,4,5]]],[57,1,1,5,6,[[1139,1,1,5,6]]]],[24119,24399,24817,25935,27692,30075]]],["longer",[2,2,[[44,1,1,0,1,[[1051,1,1,0,1]]],[65,1,1,1,2,[[1176,1,1,1,2]]]],[28070,30867]]],["more",[18,16,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,1,1,1,2,[[992,1,1,1,2]]],[42,6,6,2,8,[[1007,1,1,2,3],[1010,1,1,3,4],[1012,3,3,4,7],[1013,1,1,7,8]]],[57,1,1,8,9,[[1143,1,1,8,9]]],[65,9,7,9,16,[[1169,1,1,9,10],[1173,2,1,10,11],[1175,1,1,11,12],[1178,1,1,12,13],[1186,1,1,13,14],[1187,3,2,14,16]]]],[23743,25815,26577,26687,26736,26747,26751,26770,30204,30758,30826,30852,30899,31041,31054,31057]]],["moreover",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30208]]],["now",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26904]]],["still",[4,1,[[65,4,1,0,1,[[1188,4,1,0,1]]]],[31091]]],["thenceforth",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23247]]],["while",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24192]]],["yea",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25579]]],["yet",[45,44,[[39,4,4,0,4,[[940,1,1,0,1],[945,1,1,1,2],[947,1,1,2,3],[954,1,1,3,4]]],[40,4,4,4,8,[[961,1,1,4,5],[964,1,1,5,6],[968,1,1,6,7],[970,1,1,7,8]]],[41,10,10,8,18,[[980,1,1,8,9],[981,1,1,9,10],[986,2,2,10,12],[994,3,3,12,15],[996,3,3,15,18]]],[42,4,4,18,22,[[1000,1,1,18,19],[1009,1,1,19,20],[1012,1,1,20,21],[1016,1,1,21,22]]],[43,3,3,22,25,[[1026,1,1,22,23],[1027,1,1,23,24],[1035,1,1,24,25]]],[44,4,4,25,29,[[1048,1,1,25,26],[1050,2,2,26,28],[1054,1,1,28,29]]],[45,4,4,29,33,[[1064,2,2,29,31],[1073,1,1,31,32],[1076,1,1,32,33]]],[46,1,1,33,34,[[1078,1,1,33,34]]],[47,3,2,34,36,[[1091,1,1,34,35],[1095,2,1,35,36]]],[49,1,1,36,37,[[1103,1,1,36,37]]],[52,1,1,37,38,[[1117,1,1,37,38]]],[57,5,5,38,43,[[1139,2,2,38,40],[1141,1,1,40,41],[1142,1,1,41,42],[1143,1,1,42,43]]],[65,1,1,43,44,[[1172,1,1,43,44]]]],[23535,23705,23782,24101,24399,24517,24679,24797,25294,25343,25575,25585,25901,25911,25924,25997,26032,26035,26191,26663,26738,26868,27217,27303,27575,27998,28053,28055,28174,28412,28413,28665,28735,28810,29067,29173,29370,29666,30074,30079,30113,30170,30176,30804]]]]},{"k":"G2090","v":[["*",[40,40,[[39,7,7,0,7,[[931,1,1,0,1],[948,1,1,1,2],[950,1,1,2,3],[953,2,2,3,5],[954,2,2,5,7]]],[40,5,5,7,12,[[957,1,1,7,8],[966,1,1,8,9],[970,3,3,9,12]]],[41,14,14,12,26,[[973,2,2,12,14],[974,1,1,14,15],[975,1,1,15,16],[981,1,1,16,17],[984,2,2,17,19],[989,1,1,19,20],[994,4,4,20,24],[995,1,1,24,25],[996,1,1,25,26]]],[42,2,2,26,28,[[1010,2,2,26,28]]],[43,1,1,28,29,[[1040,1,1,28,29]]],[45,1,1,29,30,[[1063,1,1,29,30]]],[54,1,1,30,31,[[1126,1,1,30,31]]],[56,1,1,31,32,[[1132,1,1,31,32]]],[57,1,1,32,33,[[1143,1,1,32,33]]],[65,7,7,33,40,[[1174,1,1,33,34],[1175,2,2,34,36],[1178,1,1,36,37],[1182,1,1,37,38],[1185,1,1,38,39],[1187,1,1,39,40]]]],[23195,23815,23876,24042,24049,24071,24073,24218,24628,24766,24769,24770,24910,24969,25004,25029,25353,25479,25506,25659,25872,25873,25876,25877,25991,25992,26670,26671,27757,28403,29848,29960,30188,30833,30847,30855,30897,30966,31024,31055]]],["+",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31024]]],["Prepare",[3,3,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[975,1,1,2,3]]]],[23195,24218,25029]]],["prepare",[8,8,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,3,3,2,5,[[973,1,1,2,3],[994,2,2,3,5]]],[42,2,2,5,7,[[1010,2,2,5,7]]],[56,1,1,7,8,[[1132,1,1,7,8]]]],[24071,24766,24969,25872,25873,26670,26671,29960]]],["prepared",[18,18,[[39,4,4,0,4,[[948,1,1,0,1],[950,1,1,1,2],[953,2,2,2,4]]],[40,1,1,4,5,[[966,1,1,4,5]]],[41,4,4,5,9,[[974,1,1,5,6],[984,1,1,6,7],[995,1,1,7,8],[996,1,1,8,9]]],[45,1,1,9,10,[[1063,1,1,9,10]]],[54,1,1,10,11,[[1126,1,1,10,11]]],[57,1,1,11,12,[[1143,1,1,11,12]]],[65,6,6,12,18,[[1174,1,1,12,13],[1175,2,2,13,15],[1178,1,1,15,16],[1182,1,1,16,17],[1187,1,1,17,18]]]],[23815,23876,24042,24049,24628,25004,25506,25991,25992,28403,29848,30188,30833,30847,30855,30897,30966,31055]]],["provided",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25479]]],["ready",[9,9,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[970,2,2,1,3]]],[41,5,5,3,8,[[973,1,1,3,4],[981,1,1,4,5],[989,1,1,5,6],[994,2,2,6,8]]],[43,1,1,8,9,[[1040,1,1,8,9]]]],[24073,24769,24770,24910,25353,25659,25876,25877,27757]]]]},{"k":"G2091","v":[["preparation",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29352]]]]},{"k":"G2092","v":[["*",[17,17,[[39,4,4,0,4,[[950,2,2,0,2],[952,1,1,2,3],[953,1,1,3,4]]],[40,1,1,4,5,[[970,1,1,4,5]]],[41,3,3,5,8,[[984,1,1,5,6],[986,1,1,6,7],[994,1,1,7,8]]],[42,1,1,8,9,[[1003,1,1,8,9]]],[43,2,2,9,11,[[1040,2,2,9,11]]],[46,3,3,11,14,[[1086,1,1,11,12],[1087,2,2,12,14]]],[55,1,1,14,15,[[1131,1,1,14,15]]],[59,2,2,15,17,[[1151,1,1,15,16],[1153,1,1,16,17]]]],[23876,23880,24001,24018,24769,25499,25570,25897,26334,27749,27755,28961,28977,28987,29924,30379,30439]]],["+",[2,2,[[46,2,2,0,2,[[1086,1,1,0,1],[1087,1,1,1,2]]]],[28961,28987]]],["prepared",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24769]]],["readiness",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28977]]],["ready",[13,13,[[39,4,4,0,4,[[950,2,2,0,2],[952,1,1,2,3],[953,1,1,3,4]]],[41,3,3,4,7,[[984,1,1,4,5],[986,1,1,5,6],[994,1,1,6,7]]],[42,1,1,7,8,[[1003,1,1,7,8]]],[43,2,2,8,10,[[1040,2,2,8,10]]],[55,1,1,10,11,[[1131,1,1,10,11]]],[59,2,2,11,13,[[1151,1,1,11,12],[1153,1,1,12,13]]]],[23876,23880,24001,24018,25499,25570,25897,26334,27749,27755,29924,30379,30439]]]]},{"k":"G2093","v":[["ready",[3,3,[[43,1,1,0,1,[[1038,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[27677,29036,30451]]]]},{"k":"G2094","v":[["*",[49,48,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,2,2,1,3,[[961,2,2,1,3]]],[41,15,15,3,18,[[974,4,4,3,7],[975,2,2,7,9],[976,1,1,9,10],[980,2,2,10,12],[984,1,1,12,13],[985,4,4,13,17],[987,1,1,17,18]]],[42,3,3,18,21,[[998,1,1,18,19],[1001,1,1,19,20],[1004,1,1,20,21]]],[43,11,11,21,32,[[1021,1,1,21,22],[1024,4,4,22,26],[1026,1,1,26,27],[1030,2,2,27,29],[1036,1,1,29,30],[1041,2,2,30,32]]],[44,1,1,32,33,[[1060,1,1,32,33]]],[46,1,1,33,34,[[1089,1,1,33,34]]],[47,3,3,34,37,[[1091,1,1,34,35],[1092,1,1,35,36],[1093,1,1,36,37]]],[53,1,1,37,38,[[1123,1,1,37,38]]],[57,3,3,38,41,[[1133,1,1,38,39],[1135,2,2,39,41]]],[60,2,1,41,42,[[1158,2,1,41,42]]],[65,6,6,42,48,[[1186,6,6,42,48]]]],[23399,24389,24406,25009,25010,25014,25015,25026,25048,25088,25287,25288,25478,25525,25526,25529,25534,25617,26115,26215,26438,27044,27122,27146,27152,27158,27249,27382,27383,27595,27779,27786,28326,29024,29075,29082,29119,29772,29975,30004,30012,30530,31040,31041,31042,31043,31044,31045]]],["+",[3,3,[[41,3,3,0,3,[[974,2,2,0,2],[975,1,1,2,3]]]],[25014,25015,25048]]],["age",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25287]]],["old",[2,2,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]]],[26438,27044]]],["year",[2,2,[[41,2,2,0,2,[[975,1,1,0,1],[985,1,1,1,2]]]],[25026,25526]]],["years",[41,40,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,2,2,1,3,[[961,2,2,1,3]]],[41,9,9,3,12,[[974,2,2,3,5],[976,1,1,5,6],[980,1,1,6,7],[984,1,1,7,8],[985,3,3,8,11],[987,1,1,11,12]]],[42,2,2,12,14,[[998,1,1,12,13],[1001,1,1,13,14]]],[43,10,10,14,24,[[1024,4,4,14,18],[1026,1,1,18,19],[1030,2,2,19,21],[1036,1,1,21,22],[1041,2,2,22,24]]],[44,1,1,24,25,[[1060,1,1,24,25]]],[46,1,1,25,26,[[1089,1,1,25,26]]],[47,3,3,26,29,[[1091,1,1,26,27],[1092,1,1,27,28],[1093,1,1,28,29]]],[53,1,1,29,30,[[1123,1,1,29,30]]],[57,3,3,30,33,[[1133,1,1,30,31],[1135,2,2,31,33]]],[60,2,1,33,34,[[1158,2,1,33,34]]],[65,6,6,34,40,[[1186,6,6,34,40]]]],[23399,24389,24406,25009,25010,25088,25288,25478,25525,25529,25534,25617,26115,26215,27122,27146,27152,27158,27249,27382,27383,27595,27779,27786,28326,29024,29075,29082,29119,29772,29975,30004,30012,30530,31040,31041,31042,31043,31044,31045]]]]},{"k":"G2095","v":[["*",[6,6,[[39,2,2,0,2,[[953,2,2,0,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,1,1,3,4,[[991,1,1,3,4]]],[43,1,1,4,5,[[1032,1,1,4,5]]],[48,1,1,5,6,[[1102,1,1,5,6]]]],[24029,24031,24761,25748,27471,29340]]],["Well",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25748]]],["done",[2,2,[[39,2,2,0,2,[[953,2,2,0,2]]]],[24029,24031]]],["good",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24761]]],["well",[2,2,[[43,1,1,0,1,[[1032,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]]],[27471,29340]]]]},{"k":"G2096","v":[["Eve",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[53,1,1,1,2,[[1120,1,1,1,2]]]],[28992,29729]]]]},{"k":"G2097","v":[["*",[55,52,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,10,10,1,11,[[973,1,1,1,2],[974,1,1,2,3],[975,1,1,3,4],[976,2,2,4,6],[979,1,1,6,7],[980,1,1,7,8],[981,1,1,8,9],[988,1,1,9,10],[992,1,1,10,11]]],[43,15,15,11,26,[[1022,1,1,11,12],[1025,5,5,12,17],[1027,1,1,17,18],[1028,1,1,18,19],[1030,1,1,19,20],[1031,3,3,20,23],[1032,1,1,23,24],[1033,1,1,24,25],[1034,1,1,25,26]]],[44,4,3,26,29,[[1046,1,1,26,27],[1055,2,1,27,28],[1060,1,1,28,29]]],[45,6,5,29,34,[[1062,1,1,29,30],[1070,3,2,30,32],[1076,2,2,32,34]]],[46,2,2,34,36,[[1087,1,1,34,35],[1088,1,1,35,36]]],[47,7,6,36,42,[[1091,6,5,36,41],[1094,1,1,41,42]]],[48,2,2,42,44,[[1098,1,1,42,43],[1099,1,1,43,44]]],[51,1,1,44,45,[[1113,1,1,44,45]]],[57,2,2,45,47,[[1136,2,2,45,47]]],[59,3,3,47,50,[[1151,2,2,47,49],[1154,1,1,49,50]]],[65,2,2,50,52,[[1176,1,1,50,51],[1180,1,1,51,52]]]],[23464,24912,24983,25043,25081,25106,25217,25246,25307,25636,25780,27101,27180,27188,27201,27211,27216,27295,27327,27394,27421,27429,27435,27477,27493,27541,27945,28203,28323,28380,28556,28558,28719,28720,28987,28996,29065,29066,29068,29073,29080,29144,29246,29259,29596,30016,30020,30386,30399,30452,30868,30932]]],["+",[8,8,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]],[43,2,2,2,4,[[1030,1,1,2,3],[1031,1,1,3,4]]],[45,1,1,4,5,[[1070,1,1,4,5]]],[51,1,1,5,6,[[1113,1,1,5,6]]],[57,2,2,6,8,[[1136,2,2,6,8]]]],[24912,24983,27394,27421,28556,29596,30016,30020]]],["declared",[1,1,[[65,1,1,0,1,[[1176,1,1,0,1]]]],[30868]]],["gospel",[17,17,[[41,3,3,0,3,[[976,1,1,0,1],[981,1,1,1,2],[992,1,1,2,3]]],[43,3,3,3,6,[[1025,1,1,3,4],[1031,1,1,4,5],[1033,1,1,5,6]]],[44,3,3,6,9,[[1046,1,1,6,7],[1055,1,1,7,8],[1060,1,1,8,9]]],[45,3,3,9,12,[[1062,1,1,9,10],[1070,2,2,10,12]]],[46,1,1,12,13,[[1087,1,1,12,13]]],[47,3,3,13,16,[[1091,2,2,13,15],[1094,1,1,15,16]]],[59,1,1,16,17,[[1151,1,1,16,17]]]],[25081,25307,25780,27201,27435,27493,27945,28203,28323,28380,28556,28558,28987,29065,29066,29144,30386]]],["preach",[6,6,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,2,2,1,3,[[1022,1,1,1,2],[1031,1,1,2,3]]],[47,1,1,3,4,[[1091,1,1,3,4]]],[48,1,1,4,5,[[1099,1,1,4,5]]],[65,1,1,5,6,[[1180,1,1,5,6]]]],[25106,27101,27429,29073,29259,30932]]],["preached",[14,14,[[41,3,3,0,3,[[975,1,1,0,1],[979,1,1,1,2],[988,1,1,2,3]]],[43,3,3,3,6,[[1025,2,2,3,5],[1034,1,1,5,6]]],[45,2,2,6,8,[[1076,2,2,6,8]]],[46,1,1,8,9,[[1088,1,1,8,9]]],[47,2,2,9,11,[[1091,2,2,9,11]]],[48,1,1,11,12,[[1098,1,1,11,12]]],[59,2,2,12,14,[[1151,1,1,12,13],[1154,1,1,13,14]]]],[25043,25217,25636,27211,27216,27541,28719,28720,28996,29065,29068,29246,30399,30452]]],["preacheth",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29080]]],["preaching",[5,5,[[43,5,5,0,5,[[1025,2,2,0,2],[1027,1,1,2,3],[1028,1,1,3,4],[1032,1,1,4,5]]]],[27180,27188,27295,27327,27477]]],["them",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23464]]],["tidings",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]]],[25246,28203]]]]},{"k":"G2098","v":[["*",[77,74,[[39,4,4,0,4,[[932,1,1,0,1],[937,1,1,1,2],[952,1,1,2,3],[954,1,1,3,4]]],[40,8,8,4,12,[[957,3,3,4,7],[964,1,1,7,8],[966,1,1,8,9],[969,1,1,9,10],[970,1,1,10,11],[972,1,1,11,12]]],[43,2,2,12,14,[[1032,1,1,12,13],[1037,1,1,13,14]]],[44,10,10,14,24,[[1046,3,3,14,17],[1047,1,1,17,18],[1055,1,1,18,19],[1056,1,1,19,20],[1060,3,3,20,23],[1061,1,1,23,24]]],[45,8,6,24,30,[[1065,1,1,24,25],[1070,6,4,25,29],[1076,1,1,29,30]]],[46,8,8,30,38,[[1079,1,1,30,31],[1081,2,2,31,33],[1085,1,1,33,34],[1086,1,1,34,35],[1087,1,1,35,36],[1088,2,2,36,38]]],[47,7,7,38,45,[[1091,3,3,38,41],[1092,4,4,41,45]]],[48,4,4,45,49,[[1097,1,1,45,46],[1099,1,1,46,47],[1102,2,2,47,49]]],[49,9,8,49,57,[[1103,6,5,49,54],[1104,1,1,54,55],[1106,2,2,55,57]]],[50,2,2,57,59,[[1107,2,2,57,59]]],[51,6,6,59,65,[[1111,1,1,59,60],[1112,4,4,60,64],[1113,1,1,64,65]]],[52,2,2,65,67,[[1116,1,1,65,66],[1117,1,1,66,67]]],[53,1,1,67,68,[[1119,1,1,67,68]]],[54,3,3,68,71,[[1125,2,2,68,70],[1126,1,1,70,71]]],[56,1,1,71,72,[[1132,1,1,71,72]]],[59,1,1,72,73,[[1154,1,1,72,73]]],[65,1,1,73,74,[[1180,1,1,73,74]]]],[23232,23414,23971,24067,24216,24229,24230,24535,24617,24727,24763,24888,27449,27650,27931,27939,27946,27978,28204,28237,28319,28322,28332,28361,28448,28552,28554,28558,28563,28719,28836,28862,28863,28950,28969,28985,28993,28996,29063,29064,29068,29083,29086,29088,29095,29219,29257,29352,29356,29366,29368,29373,29378,29388,29413,29445,29457,29470,29488,29565,29572,29574,29578,29579,29592,29657,29675,29707,29817,29819,29835,29951,30463,30932]]],["+",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28563]]],["gospel",[74,71,[[39,4,4,0,4,[[932,1,1,0,1],[937,1,1,1,2],[952,1,1,2,3],[954,1,1,3,4]]],[40,6,6,4,10,[[957,3,3,4,7],[969,1,1,7,8],[970,1,1,8,9],[972,1,1,9,10]]],[43,2,2,10,12,[[1032,1,1,10,11],[1037,1,1,11,12]]],[44,10,10,12,22,[[1046,3,3,12,15],[1047,1,1,15,16],[1055,1,1,16,17],[1056,1,1,17,18],[1060,3,3,18,21],[1061,1,1,21,22]]],[45,7,5,22,27,[[1065,1,1,22,23],[1070,5,3,23,26],[1076,1,1,26,27]]],[46,8,8,27,35,[[1079,1,1,27,28],[1081,2,2,28,30],[1085,1,1,30,31],[1086,1,1,31,32],[1087,1,1,32,33],[1088,2,2,33,35]]],[47,7,7,35,42,[[1091,3,3,35,38],[1092,4,4,38,42]]],[48,4,4,42,46,[[1097,1,1,42,43],[1099,1,1,43,44],[1102,2,2,44,46]]],[49,9,8,46,54,[[1103,6,5,46,51],[1104,1,1,51,52],[1106,2,2,52,54]]],[50,2,2,54,56,[[1107,2,2,54,56]]],[51,6,6,56,62,[[1111,1,1,56,57],[1112,4,4,57,61],[1113,1,1,61,62]]],[52,2,2,62,64,[[1116,1,1,62,63],[1117,1,1,63,64]]],[53,1,1,64,65,[[1119,1,1,64,65]]],[54,3,3,65,68,[[1125,2,2,65,67],[1126,1,1,67,68]]],[56,1,1,68,69,[[1132,1,1,68,69]]],[59,1,1,69,70,[[1154,1,1,69,70]]],[65,1,1,70,71,[[1180,1,1,70,71]]]],[23232,23414,23971,24067,24216,24229,24230,24727,24763,24888,27449,27650,27931,27939,27946,27978,28204,28237,28319,28322,28332,28361,28448,28552,28554,28558,28719,28836,28862,28863,28950,28969,28985,28993,28996,29063,29064,29068,29083,29086,29088,29095,29219,29257,29352,29356,29366,29368,29373,29378,29388,29413,29445,29457,29470,29488,29565,29572,29574,29578,29579,29592,29657,29675,29707,29817,29819,29835,29951,30463,30932]]],["gospel's",[2,2,[[40,2,2,0,2,[[964,1,1,0,1],[966,1,1,1,2]]]],[24535,24617]]]]},{"k":"G2099","v":[["*",[3,3,[[43,1,1,0,1,[[1038,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[27672,29283,29875]]],["evangelist",[2,2,[[43,1,1,0,1,[[1038,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]]],[27672,29875]]],["evangelists",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29283]]]]},{"k":"G2100","v":[["*",[3,3,[[57,3,3,0,3,[[1143,2,2,0,2],[1145,1,1,2,3]]]],[30177,30178,30257]]],["please",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30178]]],["pleased",[2,2,[[57,2,2,0,2,[[1143,1,1,0,1],[1145,1,1,1,2]]]],[30177,30257]]]]},{"k":"G2101","v":[["*",[9,9,[[44,3,3,0,3,[[1057,2,2,0,2],[1059,1,1,2,3]]],[46,1,1,3,4,[[1082,1,1,3,4]]],[48,1,1,4,5,[[1101,1,1,4,5]]],[49,1,1,5,6,[[1106,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[55,1,1,7,8,[[1130,1,1,7,8]]],[57,1,1,8,9,[[1145,1,1,8,9]]]],[28246,28247,28298,28886,29314,29460,29537,29917,30262]]],["acceptable",[4,4,[[44,3,3,0,3,[[1057,2,2,0,2],[1059,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]]],[28246,28247,28298,29314]]],["accepted",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28886]]],["pleasing",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29537]]],["well",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29917]]],["wellpleasing",[2,2,[[49,1,1,0,1,[[1106,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[29460,30262]]]]},{"k":"G2102","v":[["acceptably",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30240]]]]},{"k":"G2103","v":[["Eubulus",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29891]]]]},{"k":"G2104","v":[["*",[3,3,[[41,1,1,0,1,[[991,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[45,1,1,2,3,[[1062,1,1,2,3]]]],[25743,27534,28389]]],["+",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25743]]],["noble",[2,2,[[43,1,1,0,1,[[1034,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]]],[27534,28389]]]]},{"k":"G2105","v":[["weather",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23674]]]]},{"k":"G2106","v":[["*",[21,21,[[39,3,3,0,3,[[931,1,1,0,1],[940,1,1,1,2],[945,1,1,2,3]]],[40,1,1,3,4,[[957,1,1,3,4]]],[41,2,2,4,6,[[975,1,1,4,5],[984,1,1,5,6]]],[44,2,2,6,8,[[1060,2,2,6,8]]],[45,2,2,8,10,[[1062,1,1,8,9],[1071,1,1,9,10]]],[46,2,2,10,12,[[1082,1,1,10,11],[1089,1,1,11,12]]],[47,1,1,12,13,[[1091,1,1,12,13]]],[50,1,1,13,14,[[1107,1,1,13,14]]],[51,2,2,14,16,[[1112,1,1,14,15],[1113,1,1,15,16]]],[52,1,1,16,17,[[1117,1,1,16,17]]],[57,3,3,17,20,[[1142,3,3,17,20]]],[60,1,1,20,21,[[1156,1,1,20,21]]]],[23209,23507,23705,24226,25047,25491,28329,28330,28384,28572,28885,29032,29072,29484,29578,29591,29673,30139,30141,30171,30496]]],["+",[4,4,[[41,1,1,0,1,[[984,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]],[57,2,2,2,4,[[1142,2,2,2,4]]]],[25491,28572,30139,30171]]],["good",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29591]]],["pleased",[11,11,[[39,3,3,0,3,[[931,1,1,0,1],[940,1,1,1,2],[945,1,1,2,3]]],[40,1,1,3,4,[[957,1,1,3,4]]],[41,1,1,4,5,[[975,1,1,4,5]]],[44,2,2,5,7,[[1060,2,2,5,7]]],[45,1,1,7,8,[[1062,1,1,7,8]]],[47,1,1,8,9,[[1091,1,1,8,9]]],[50,1,1,9,10,[[1107,1,1,9,10]]],[60,1,1,10,11,[[1156,1,1,10,11]]]],[23209,23507,23705,24226,25047,28329,28330,28384,29072,29484,30496]]],["pleasure",[3,3,[[46,1,1,0,1,[[1089,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[29032,29673,30141]]],["willing",[2,2,[[46,1,1,0,1,[[1082,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]]],[28885,29578]]]]},{"k":"G2107","v":[["*",[9,9,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[982,1,1,2,3]]],[44,1,1,3,4,[[1055,1,1,3,4]]],[48,2,2,4,6,[[1097,2,2,4,6]]],[49,2,2,6,8,[[1103,1,1,6,7],[1104,1,1,7,8]]],[52,1,1,8,9,[[1116,1,1,8,9]]]],[23485,24987,25384,28189,29211,29215,29376,29404,29660]]],["+",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28189]]],["good",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[23485,25384]]],["pleasure",[4,4,[[48,2,2,0,2,[[1097,2,2,0,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[52,1,1,3,4,[[1116,1,1,3,4]]]],[29211,29215,29404,29660]]],["will",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[24987,29376]]]]},{"k":"G2108","v":[["*",[2,2,[[43,1,1,0,1,[[1021,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[27031,29790]]],["benefit",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29790]]],["done",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27031]]]]},{"k":"G2109","v":[["good",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27297]]]]},{"k":"G2110","v":[["benefactors",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25889]]]]},{"k":"G2111","v":[["*",[3,3,[[41,2,2,0,2,[[981,1,1,0,1],[986,1,1,1,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]]],[25363,25588,30051]]],["fit",[2,2,[[41,2,2,0,2,[[981,1,1,0,1],[986,1,1,1,2]]]],[25363,25588]]],["meet",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30051]]]]},{"k":"G2112","v":[["*",[80,80,[[39,15,15,0,15,[[932,2,2,0,2],[936,1,1,2,3],[941,1,1,3,4],[942,3,3,4,7],[948,1,1,7,8],[949,2,2,8,10],[952,1,1,10,11],[953,1,1,11,12],[954,2,2,12,14],[955,1,1,14,15]]],[40,40,40,15,55,[[957,9,9,15,24],[958,3,3,24,27],[959,1,1,27,28],[960,5,5,28,33],[961,6,6,33,39],[962,5,5,39,44],[963,1,1,44,45],[964,1,1,45,46],[965,3,3,46,49],[966,1,1,49,50],[967,2,2,50,52],[970,2,2,52,54],[971,1,1,54,55]]],[41,8,8,55,63,[[977,2,2,55,57],[978,1,1,57,58],[984,2,2,58,60],[986,1,1,60,61],[989,1,1,61,62],[993,1,1,62,63]]],[42,4,4,63,67,[[1001,1,1,63,64],[1002,1,1,64,65],[1009,1,1,65,66],[1014,1,1,66,67]]],[43,9,9,67,76,[[1026,3,3,67,70],[1029,1,1,70,71],[1033,1,1,71,72],[1034,2,2,72,74],[1038,1,1,74,75],[1039,1,1,75,76]]],[47,1,1,76,77,[[1091,1,1,76,77]]],[58,1,1,77,78,[[1146,1,1,77,78]]],[63,1,1,78,79,[[1165,1,1,78,79]]],[65,1,1,79,80,[[1170,1,1,79,80]]]],[23229,23231,23348,23544,23619,23624,23628,23826,23828,23829,23986,24023,24103,24128,24177,24225,24233,24235,24236,24244,24245,24246,24257,24258,24262,24268,24272,24294,24328,24338,24339,24340,24352,24366,24377,24393,24394,24400,24406,24432,24434,24452,24457,24461,24498,24510,24553,24558,24562,24640,24642,24643,24797,24799,24827,25120,25146,25195,25495,25513,25558,25658,25835,26219,26278,26660,26812,27234,27236,27250,27347,27493,27533,27537,27694,27733,29073,30290,30672,30770]]],["+",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[42,1,1,1,2,[[1009,1,1,1,2]]]],[23231,26660]]],["Immediately",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23986]]],["anon",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24245]]],["as",[2,2,[[40,2,2,0,2,[[961,1,1,0,1],[967,1,1,1,2]]]],[24400,24642]]],["by",[2,2,[[41,2,2,0,2,[[989,1,1,0,1],[993,1,1,1,2]]]],[25658,25835]]],["forthwith",[7,7,[[39,2,2,0,2,[[941,1,1,0,1],[954,1,1,1,2]]],[40,3,3,2,5,[[957,2,2,2,4],[961,1,1,4,5]]],[43,2,2,5,7,[[1029,1,1,5,6],[1038,1,1,6,7]]]],[23544,24103,24244,24258,24377,27347,27694]]],["immediately",[32,32,[[39,4,4,0,4,[[936,1,1,0,1],[942,1,1,1,2],[948,1,1,2,3],[954,1,1,3,4]]],[40,15,15,4,19,[[957,2,2,4,6],[958,2,2,6,8],[960,5,5,8,13],[961,2,2,13,15],[962,2,2,15,17],[966,1,1,17,18],[970,1,1,18,19]]],[41,3,3,19,22,[[977,1,1,19,20],[978,1,1,20,21],[984,1,1,21,22]]],[42,3,3,22,25,[[1001,1,1,22,23],[1002,1,1,23,24],[1014,1,1,24,25]]],[43,5,5,25,30,[[1026,2,2,25,27],[1033,1,1,27,28],[1034,2,2,28,30]]],[47,1,1,30,31,[[1091,1,1,30,31]]],[65,1,1,31,32,[[1170,1,1,31,32]]]],[23348,23628,23826,24128,24246,24257,24268,24272,24328,24338,24339,24340,24352,24366,24394,24434,24457,24640,24797,25120,25195,25495,26219,26278,26812,27234,27250,27493,27533,27537,29073,30770]]],["shortly",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30672]]],["straightway",[32,32,[[39,7,7,0,7,[[932,1,1,0,1],[942,2,2,1,3],[949,2,2,3,5],[953,1,1,5,6],[955,1,1,6,7]]],[40,19,19,7,26,[[957,4,4,7,11],[958,1,1,11,12],[959,1,1,12,13],[961,2,2,13,15],[962,3,3,15,18],[963,1,1,18,19],[964,1,1,19,20],[965,3,3,20,23],[967,1,1,23,24],[970,1,1,24,25],[971,1,1,25,26]]],[41,3,3,26,29,[[977,1,1,26,27],[984,1,1,27,28],[986,1,1,28,29]]],[43,2,2,29,31,[[1026,1,1,29,30],[1039,1,1,30,31]]],[58,1,1,31,32,[[1146,1,1,31,32]]]],[23229,23619,23624,23828,23829,24023,24177,24225,24233,24235,24236,24262,24294,24393,24406,24432,24452,24461,24498,24510,24553,24558,24562,24643,24799,24827,25146,25513,25558,27236,27733,30290]]]]},{"k":"G2113","v":[["course",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1038,1,1,1,2]]]],[27494,27665]]]]},{"k":"G2114","v":[["*",[3,3,[[43,2,2,0,2,[[1044,2,2,0,2]]],[58,1,1,2,3,[[1150,1,1,2,3]]]],[27877,27880,30367]]],["+",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30367]]],["cheer",[2,2,[[43,2,2,0,2,[[1044,2,2,0,2]]]],[27877,27880]]]]},{"k":"G2115","v":[["*",[2,2,[[43,2,2,0,2,[[1041,1,1,0,1],[1044,1,1,1,2]]]],[27779,27891]]],["cheer",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27891]]],["cheerfully",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27779]]]]},{"k":"G2116","v":[["*",[2,2,[[42,1,1,0,1,[[997,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[26067,30323]]],["+",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30323]]],["straight",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26067]]]]},{"k":"G2117","v":[["*",[16,16,[[39,4,4,0,4,[[931,2,2,0,2],[941,2,2,2,4]]],[40,3,3,4,7,[[957,3,3,4,7]]],[41,2,2,7,9,[[975,2,2,7,9]]],[42,3,3,9,12,[[1009,1,1,9,10],[1015,1,1,10,11],[1017,1,1,11,12]]],[43,3,3,12,15,[[1025,1,1,12,13],[1026,1,1,13,14],[1030,1,1,14,15]]],[60,1,1,15,16,[[1157,1,1,15,16]]]],[23195,23208,23559,23560,24218,24227,24243,25029,25030,26662,26859,26901,27197,27227,27372,30515]]],["Straight",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27227]]],["anon",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23559]]],["by",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23560]]],["forthwith",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26859]]],["immediately",[3,3,[[40,2,2,0,2,[[957,2,2,0,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]]],[24227,24243,26901]]],["right",[3,3,[[43,2,2,0,2,[[1025,1,1,0,1],[1030,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[27197,27372,30515]]],["straight",[4,4,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,2,2,2,4,[[975,2,2,2,4]]]],[23195,24218,25029,25030]]],["straightway",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[42,1,1,1,2,[[1009,1,1,1,2]]]],[23208,26662]]]]},{"k":"G2118","v":[["righteousness",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29971]]]]},{"k":"G2119","v":[["*",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]]],[24438,27544,28788]]],["+",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24438]]],["time",[2,2,[[43,1,1,0,1,[[1034,1,1,0,1]]],[45,1,1,1,2,[[1077,1,1,1,2]]]],[27544,28788]]]]},{"k":"G2120","v":[["opportunity",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24070,25870]]]]},{"k":"G2121","v":[["*",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[57,1,1,1,2,[[1136,1,1,1,2]]]],[24428,30030]]],["+",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30030]]],["convenient",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24428]]]]},{"k":"G2122","v":[["*",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]]],[24765,29872]]],["conveniently",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24765]]],["season",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29872]]]]},{"k":"G2123","v":[["easier",[7,7,[[39,2,2,0,2,[[937,1,1,0,1],[947,1,1,1,2]]],[40,2,2,2,4,[[958,1,1,2,3],[966,1,1,3,4]]],[41,3,3,4,7,[[977,1,1,4,5],[988,1,1,5,6],[990,1,1,6,7]]]],[23384,23786,24269,24613,25130,25637,25713]]]]},{"k":"G2124","v":[["*",[2,2,[[57,2,2,0,2,[[1137,1,1,0,1],[1144,1,1,1,2]]]],[30037,30240]]],["+",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30037]]],["fear",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30240]]]]},{"k":"G2125","v":[["*",[2,2,[[43,1,1,0,1,[[1040,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[27744,30179]]],["fear",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30179]]],["fearing",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27744]]]]},{"k":"G2126","v":[["devout",[3,3,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,2,2,1,3,[[1019,1,1,1,2],[1025,1,1,2,3]]]],[24998,26954,27178]]]]},{"k":"G2127","v":[["*",[44,41,[[39,6,6,0,6,[[933,1,1,0,1],[942,1,1,1,2],[949,1,1,2,3],[951,1,1,3,4],[953,1,1,4,5],[954,1,1,5,6]]],[40,6,6,6,12,[[962,1,1,6,7],[964,1,1,7,8],[966,1,1,8,9],[967,2,2,9,11],[970,1,1,11,12]]],[41,14,13,12,25,[[973,4,3,12,15],[974,2,2,15,17],[978,1,1,17,18],[981,1,1,18,19],[985,1,1,19,20],[991,1,1,20,21],[996,4,4,21,25]]],[42,1,1,25,26,[[1008,1,1,25,26]]],[43,1,1,26,27,[[1020,1,1,26,27]]],[44,2,1,27,28,[[1057,2,1,27,28]]],[45,3,3,28,31,[[1065,1,1,28,29],[1071,1,1,29,30],[1075,1,1,30,31]]],[47,1,1,31,32,[[1093,1,1,31,32]]],[48,1,1,32,33,[[1097,1,1,32,33]]],[57,7,6,33,39,[[1138,2,1,33,34],[1139,3,3,34,37],[1143,2,2,37,39]]],[58,1,1,39,40,[[1148,1,1,39,40]]],[59,1,1,40,41,[[1153,1,1,40,41]]]],[23278,23616,23835,23957,24042,24080,24448,24507,24604,24649,24650,24776,24921,24935,24957,25001,25007,25174,25317,25553,25769,26021,26041,26042,26044,26593,27022,28259,28445,28583,28694,29111,29209,30058,30065,30070,30071,30192,30193,30328,30433]]],["Bless",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]]],[25174,28259]]],["Blessed",[8,8,[[39,2,2,0,2,[[949,1,1,0,1],[951,1,1,1,2]]],[40,2,2,2,4,[[967,2,2,2,4]]],[41,3,3,4,7,[[973,1,1,4,5],[985,1,1,5,6],[991,1,1,6,7]]],[42,1,1,7,8,[[1008,1,1,7,8]]]],[23835,23957,24649,24650,24935,25553,25769,26593]]],["bless",[8,8,[[39,1,1,0,1,[[933,1,1,0,1]]],[43,1,1,1,2,[[1020,1,1,1,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[45,3,3,3,6,[[1065,1,1,3,4],[1071,1,1,4,5],[1075,1,1,5,6]]],[57,1,1,6,7,[[1138,1,1,6,7]]],[58,1,1,7,8,[[1148,1,1,7,8]]]],[23278,27022,28259,28445,28583,28694,30058,30328]]],["blessed",[22,22,[[39,3,3,0,3,[[942,1,1,0,1],[953,1,1,1,2],[954,1,1,2,3]]],[40,4,4,3,7,[[962,1,1,3,4],[964,1,1,4,5],[966,1,1,5,6],[970,1,1,6,7]]],[41,8,8,7,15,[[973,2,2,7,9],[974,2,2,9,11],[981,1,1,11,12],[996,3,3,12,15]]],[47,1,1,15,16,[[1093,1,1,15,16]]],[48,1,1,16,17,[[1097,1,1,16,17]]],[57,5,5,17,22,[[1139,3,3,17,20],[1143,2,2,20,22]]]],[23616,24042,24080,24448,24507,24604,24776,24921,24935,25001,25007,25317,26021,26041,26042,29111,29209,30065,30070,30071,30192,30193]]],["blessing",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[26044,30058,30433]]],["praised",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24957]]]]},{"k":"G2128","v":[["*",[8,8,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[44,2,2,2,4,[[1046,1,1,2,3],[1054,1,1,3,4]]],[46,2,2,4,6,[[1078,1,1,4,5],[1088,1,1,5,6]]],[48,1,1,6,7,[[1097,1,1,6,7]]],[59,1,1,7,8,[[1151,1,1,7,8]]]],[24815,24961,27955,28160,28803,29020,29209,30377]]],["Blessed",[5,5,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[46,1,1,2,3,[[1078,1,1,2,3]]],[48,1,1,3,4,[[1097,1,1,3,4]]],[59,1,1,4,5,[[1151,1,1,4,5]]]],[24815,24961,28803,29209,30377]]],["blessed",[3,3,[[44,2,2,0,2,[[1046,1,1,0,1],[1054,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]]],[27955,28160,29020]]]]},{"k":"G2129","v":[["*",[16,14,[[44,2,2,0,2,[[1060,1,1,0,1],[1061,1,1,1,2]]],[45,1,1,2,3,[[1071,1,1,2,3]]],[46,4,2,3,5,[[1086,4,2,3,5]]],[47,1,1,5,6,[[1093,1,1,5,6]]],[48,1,1,6,7,[[1097,1,1,6,7]]],[57,2,2,7,9,[[1138,1,1,7,8],[1144,1,1,8,9]]],[58,1,1,9,10,[[1148,1,1,9,10]]],[59,1,1,10,11,[[1153,1,1,10,11]]],[65,3,3,11,14,[[1171,2,2,11,13],[1173,1,1,13,14]]]],[28332,28354,28583,28961,28962,29116,29209,30051,30229,30329,30433,30791,30792,30822]]],["+",[2,1,[[46,2,1,0,1,[[1086,2,1,0,1]]]],[28962]]],["Blessing",[2,2,[[65,2,2,0,2,[[1171,1,1,0,1],[1173,1,1,1,2]]]],[30792,30822]]],["blessing",[8,8,[[44,1,1,0,1,[[1060,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]],[47,1,1,2,3,[[1093,1,1,2,3]]],[57,2,2,3,5,[[1138,1,1,3,4],[1144,1,1,4,5]]],[58,1,1,5,6,[[1148,1,1,5,6]]],[59,1,1,6,7,[[1153,1,1,6,7]]],[65,1,1,7,8,[[1171,1,1,7,8]]]],[28332,28583,29116,30051,30229,30329,30433,30791]]],["blessings",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29209]]],["bounty",[2,1,[[46,2,1,0,1,[[1086,2,1,0,1]]]],[28961]]],["speeches",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28354]]]]},{"k":"G2130","v":[["distribute",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29806]]]]},{"k":"G2131","v":[["Eunice",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29814]]]]},{"k":"G2132","v":[["+",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23259]]]]},{"k":"G2133","v":[["*",[2,2,[[45,1,1,0,1,[[1068,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]]],[28490,29344]]],["benevolence",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28490]]],["will",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29344]]]]},{"k":"G2134","v":[["*",[2,1,[[39,2,1,0,1,[[947,2,1,0,1]]]],[23774]]],["+",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23774]]],["eunuchs",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23774]]]]},{"k":"G2135","v":[["*",[8,6,[[39,3,1,0,1,[[947,3,1,0,1]]],[43,5,5,1,6,[[1025,5,5,1,6]]]],[23774,27203,27210,27212,27214,27215]]],["+",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27215]]],["eunuch",[4,4,[[43,4,4,0,4,[[1025,4,4,0,4]]]],[27203,27210,27212,27214]]],["eunuchs",[3,1,[[39,3,1,0,1,[[947,3,1,0,1]]]],[23774]]]]},{"k":"G2136","v":[["Euodias",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29444]]]]},{"k":"G2137","v":[["*",[4,3,[[44,1,1,0,1,[[1046,1,1,0,1]]],[45,1,1,1,2,[[1077,1,1,1,2]]],[63,2,1,2,3,[[1165,2,1,2,3]]]],[27940,28778,30660]]],["journey",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27940]]],["prosper",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30660]]],["prospered",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28778]]],["prospereth",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30660]]]]},{"k":"G2138","v":[["intreated",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30336]]]]},{"k":"G2139","v":[["beset",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30213]]]]},{"k":"G2140","v":[["good",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30257]]]]},{"k":"G2141","v":[["+",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27336]]]]},{"k":"G2142","v":[["wealth",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27610]]]]},{"k":"G2143","v":[["grace",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30277]]]]},{"k":"G2144","v":[["*",[5,5,[[44,2,2,0,2,[[1060,2,2,0,2]]],[46,2,2,2,4,[[1083,1,1,2,3],[1085,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[28319,28334,28900,28944,30404]]],["acceptable",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[28319,30404]]],["accepted",[3,3,[[44,1,1,0,1,[[1060,1,1,0,1]]],[46,2,2,1,3,[[1083,1,1,1,2],[1085,1,1,2,3]]]],[28334,28900,28944]]]]},{"k":"G2145","v":[["upon",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28522]]]]},{"k":"G2146","v":[["shew",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29200]]]]},{"k":"G2147","v":[["*",[177,167,[[39,28,26,0,26,[[929,1,1,0,1],[930,1,1,1,2],[935,3,3,2,5],[936,1,1,5,6],[938,2,1,6,7],[939,1,1,7,8],[940,2,2,8,10],[941,2,2,10,12],[944,1,1,12,13],[945,1,1,13,14],[946,2,2,14,16],[948,1,1,16,17],[949,2,2,17,19],[950,2,2,19,21],[952,1,1,21,22],[954,4,3,22,25],[955,1,1,25,26]]],[40,11,10,26,36,[[957,1,1,26,27],[963,1,1,27,28],[967,4,3,28,31],[969,1,1,31,32],[970,4,4,32,36]]],[41,45,44,36,80,[[973,1,1,36,37],[974,3,3,37,40],[976,1,1,40,41],[977,1,1,41,42],[978,1,1,42,43],[979,2,2,43,45],[980,1,1,45,46],[981,2,2,46,48],[983,4,4,48,52],[984,3,3,52,55],[985,2,2,55,57],[987,8,7,57,64],[989,1,1,64,65],[990,1,1,65,66],[991,3,3,66,69],[994,2,2,69,71],[995,4,4,71,75],[996,5,5,75,80]]],[42,19,17,80,97,[[997,5,3,80,83],[998,1,1,83,84],[1001,1,1,84,85],[1002,1,1,85,86],[1003,3,3,86,89],[1005,1,1,89,90],[1006,1,1,90,91],[1007,1,1,91,92],[1008,1,1,92,93],[1014,1,1,93,94],[1015,2,2,94,96],[1017,1,1,96,97]]],[43,35,32,97,129,[[1021,1,1,97,98],[1022,5,4,98,102],[1024,3,2,102,104],[1025,1,1,104,105],[1026,2,2,105,107],[1027,1,1,107,108],[1028,1,1,108,109],[1029,1,1,109,110],[1030,3,3,110,113],[1034,3,3,113,116],[1035,1,1,116,117],[1036,2,2,117,119],[1038,1,1,119,120],[1040,2,2,120,122],[1041,4,4,122,126],[1044,3,2,126,128],[1045,1,1,128,129]]],[44,5,5,129,134,[[1049,1,1,129,130],[1052,3,3,130,133],[1055,1,1,133,134]]],[45,2,2,134,136,[[1065,1,1,134,135],[1076,1,1,135,136]]],[46,6,5,136,141,[[1079,1,1,136,137],[1082,1,1,137,138],[1086,1,1,138,139],[1088,1,1,139,140],[1089,2,1,140,141]]],[47,1,1,141,142,[[1092,1,1,141,142]]],[49,2,2,142,144,[[1104,1,1,142,143],[1105,1,1,143,144]]],[54,2,2,144,146,[[1125,2,2,144,146]]],[57,4,4,146,150,[[1136,1,1,146,147],[1141,1,1,147,148],[1143,1,1,148,149],[1144,1,1,149,150]]],[59,2,2,150,152,[[1151,1,1,150,151],[1152,1,1,151,152]]],[60,1,1,152,153,[[1158,1,1,152,153]]],[62,1,1,153,154,[[1164,1,1,153,154]]],[65,13,13,154,167,[[1168,1,1,154,155],[1169,1,1,155,156],[1171,1,1,156,157],[1175,1,1,157,158],[1178,1,1,158,159],[1180,1,1,159,160],[1182,1,1,160,161],[1184,4,4,161,165],[1186,2,2,165,167]]]],[23162,23177,23323,23324,23330,23355,23456,23488,23532,23533,23583,23585,23697,23727,23740,23755,23798,23828,23845,23881,23882,24003,24094,24097,24114,24161,24252,24493,24642,24644,24653,24753,24770,24791,24794,24809,24923,24985,25018,25019,25080,25126,25153,25204,25205,25280,25313,25337,25414,25415,25429,25430,25496,25497,25502,25524,25525,25592,25593,25594,25596,25597,25612,25620,25669,25696,25761,25763,25779,25877,25909,25937,25939,25949,25957,25993,25994,26014,26015,26024,26085,26087,26089,26109,26224,26282,26362,26363,26364,26475,26490,26540,26594,26823,26829,26831,26904,27043,27069,27081,27082,27098,27127,27162,27216,27218,27249,27286,27333,27356,27368,27384,27390,27529,27546,27550,27559,27586,27604,27666,27743,27763,27774,27781,27787,27789,27861,27883,27913,28023,28101,28109,28112,28208,28435,28733,28837,28880,28960,29001,29042,29098,29399,29430,29826,29827,30030,30117,30177,30229,30381,30421,30536,30649,30719,30748,30783,30846,30899,30931,30974,31007,31014,31015,31017,31049,31053]]],["+",[2,2,[[39,1,1,0,1,[[929,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]]],[23162,27789]]],["find",[46,46,[[39,10,10,0,10,[[935,2,2,0,2],[938,1,1,2,3],[939,1,1,3,4],[944,1,1,4,5],[945,1,1,5,6],[946,1,1,6,7],[949,1,1,7,8],[950,1,1,8,9],[952,1,1,9,10]]],[40,3,3,10,13,[[967,2,2,10,12],[969,1,1,12,13]]],[41,14,14,13,27,[[974,1,1,13,14],[977,1,1,14,15],[978,1,1,15,16],[983,1,1,16,17],[984,3,3,17,20],[985,1,1,20,21],[987,2,2,21,23],[990,1,1,23,24],[991,2,2,24,26],[995,1,1,26,27]]],[42,8,8,27,35,[[1003,3,3,27,30],[1006,1,1,30,31],[1014,1,1,31,32],[1015,2,2,32,34],[1017,1,1,34,35]]],[43,3,3,35,38,[[1024,1,1,35,36],[1034,1,1,36,37],[1040,1,1,37,38]]],[44,2,2,38,40,[[1052,2,2,38,40]]],[46,2,2,40,42,[[1086,1,1,40,41],[1089,1,1,41,42]]],[54,1,1,42,43,[[1125,1,1,42,43]]],[57,1,1,43,44,[[1136,1,1,43,44]]],[65,2,2,44,46,[[1175,1,1,44,45],[1184,1,1,45,46]]]],[23323,23330,23456,23488,23697,23727,23740,23828,23881,24003,24642,24653,24753,24985,25126,25153,25414,25496,25497,25502,25525,25592,25596,25696,25761,25779,25939,26362,26363,26364,26490,26823,26829,26831,26904,27162,27550,27743,28109,28112,28960,29042,29827,30030,30846,31007]]],["findeth",[12,12,[[39,5,5,0,5,[[935,1,1,0,1],[938,1,1,1,2],[940,2,2,2,4],[954,1,1,4,5]]],[40,1,1,5,6,[[970,1,1,5,6]]],[41,2,2,6,8,[[983,2,2,6,8]]],[42,4,4,8,12,[[997,3,3,8,11],[1001,1,1,11,12]]]],[23324,23456,23532,23533,24094,24791,25415,25430,26085,26087,26089,26224]]],["finding",[4,4,[[41,1,1,0,1,[[983,1,1,0,1]]],[43,3,3,1,4,[[1021,1,1,1,2],[1036,1,1,2,3],[1038,1,1,3,4]]]],[25429,27043,27586,27666]]],["found",[110,106,[[39,12,11,0,11,[[930,1,1,0,1],[936,1,1,1,2],[941,2,2,2,4],[946,1,1,4,5],[948,1,1,5,6],[949,1,1,6,7],[950,1,1,7,8],[954,3,2,8,10],[955,1,1,10,11]]],[40,7,7,11,18,[[957,1,1,11,12],[963,1,1,12,13],[967,2,2,13,15],[970,3,3,15,18]]],[41,27,26,18,44,[[973,1,1,18,19],[974,2,2,19,21],[976,1,1,21,22],[979,2,2,22,24],[980,1,1,24,25],[981,1,1,25,26],[985,1,1,26,27],[987,6,5,27,32],[989,1,1,32,33],[991,1,1,33,34],[994,2,2,34,36],[995,3,3,36,39],[996,5,5,39,44]]],[42,7,7,44,51,[[997,2,2,44,46],[998,1,1,46,47],[1002,1,1,47,48],[1005,1,1,48,49],[1007,1,1,49,50],[1008,1,1,50,51]]],[43,27,25,51,76,[[1022,5,4,51,55],[1024,2,2,55,57],[1025,1,1,57,58],[1026,2,2,58,60],[1027,1,1,60,61],[1028,1,1,61,62],[1029,1,1,62,63],[1030,3,3,63,66],[1034,2,2,66,68],[1035,1,1,68,69],[1036,1,1,69,70],[1041,3,3,70,73],[1044,3,2,73,75],[1045,1,1,75,76]]],[44,3,3,76,79,[[1049,1,1,76,77],[1052,1,1,77,78],[1055,1,1,78,79]]],[45,2,2,79,81,[[1065,1,1,79,80],[1076,1,1,80,81]]],[46,4,4,81,85,[[1079,1,1,81,82],[1082,1,1,82,83],[1088,1,1,83,84],[1089,1,1,84,85]]],[47,1,1,85,86,[[1092,1,1,85,86]]],[49,2,2,86,88,[[1104,1,1,86,87],[1105,1,1,87,88]]],[54,1,1,88,89,[[1125,1,1,88,89]]],[57,2,2,89,91,[[1143,1,1,89,90],[1144,1,1,90,91]]],[59,2,2,91,93,[[1151,1,1,91,92],[1152,1,1,92,93]]],[60,1,1,93,94,[[1158,1,1,93,94]]],[62,1,1,94,95,[[1164,1,1,94,95]]],[65,11,11,95,106,[[1168,1,1,95,96],[1169,1,1,96,97],[1171,1,1,97,98],[1178,1,1,98,99],[1180,1,1,99,100],[1182,1,1,100,101],[1184,3,3,101,104],[1186,2,2,104,106]]]],[23177,23355,23583,23585,23755,23798,23845,23882,24097,24114,24161,24252,24493,24644,24653,24770,24794,24809,24923,25018,25019,25080,25204,25205,25280,25337,25524,25593,25594,25597,25612,25620,25669,25763,25877,25909,25937,25949,25957,25993,25994,26014,26015,26024,26085,26089,26109,26282,26475,26540,26594,27069,27081,27082,27098,27127,27162,27216,27218,27249,27286,27333,27356,27368,27384,27390,27529,27546,27559,27604,27774,27781,27787,27861,27883,27913,28023,28101,28208,28435,28733,28837,28880,29001,29042,29098,29399,29430,29826,30177,30229,30381,30421,30536,30649,30719,30748,30783,30899,30931,30974,31014,31015,31017,31049,31053]]],["get",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25313]]],["obtained",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30117]]],["perceived",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27763]]]]},{"k":"G2148","v":[["Euroclydon",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27869]]]]},{"k":"G2149","v":[["broad",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23329]]]]},{"k":"G2150","v":[["*",[15,15,[[43,1,1,0,1,[[1020,1,1,0,1]]],[53,8,8,1,9,[[1120,1,1,1,2],[1121,1,1,2,3],[1122,2,2,3,5],[1124,4,4,5,9]]],[54,1,1,9,10,[[1127,1,1,9,10]]],[55,1,1,10,11,[[1129,1,1,10,11]]],[60,4,4,11,15,[[1156,3,3,11,14],[1158,1,1,14,15]]]],[27008,29718,29747,29754,29755,29791,29793,29794,29799,29858,29893,30482,30485,30486,30533]]],["godliness",[14,14,[[53,8,8,0,8,[[1120,1,1,0,1],[1121,1,1,1,2],[1122,2,2,2,4],[1124,4,4,4,8]]],[54,1,1,8,9,[[1127,1,1,8,9]]],[55,1,1,9,10,[[1129,1,1,9,10]]],[60,4,4,10,14,[[1156,3,3,10,13],[1158,1,1,13,14]]]],[29718,29747,29754,29755,29791,29793,29794,29799,29858,29893,30482,30485,30486,30533]]],["holiness",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27008]]]]},{"k":"G2151","v":[["*",[2,2,[[43,1,1,0,1,[[1034,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[27546,29767]]],["piety",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29767]]],["worship",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27546]]]]},{"k":"G2152","v":[["*",[4,4,[[43,3,3,0,3,[[1027,2,2,0,2],[1039,1,1,2,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]]],[27261,27266,27716,30509]]],["devout",[3,3,[[43,3,3,0,3,[[1027,2,2,0,2],[1039,1,1,2,3]]]],[27261,27266,27716]]],["godly",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30509]]]]},{"k":"G2153","v":[["godly",[2,2,[[54,1,1,0,1,[[1127,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]]],[29865,29920]]]]},{"k":"G2154","v":[["understood",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28687]]]]},{"k":"G2155","v":[["*",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[29304,30432]]],["pitiful",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30432]]],["tenderhearted",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29304]]]]},{"k":"G2156","v":[["*",[3,3,[[44,1,1,0,1,[[1058,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]]],[28279,28718,29615]]],["decently",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28718]]],["honestly",[2,2,[[44,1,1,0,1,[[1058,1,1,0,1]]],[51,1,1,1,2,[[1114,1,1,1,2]]]],[28279,29615]]]]},{"k":"G2157","v":[["comeliness",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28657]]]]},{"k":"G2158","v":[["*",[5,5,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,2,2,1,3,[[1030,1,1,1,2],[1034,1,1,2,3]]],[45,2,2,3,5,[[1068,1,1,3,4],[1073,1,1,4,5]]]],[24869,27412,27535,28522,28658]]],["comely",[2,2,[[45,2,2,0,2,[[1068,1,1,0,1],[1073,1,1,1,2]]]],[28522,28658]]],["honourable",[3,3,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,2,2,1,3,[[1030,1,1,1,2],[1034,1,1,2,3]]]],[24869,27412,27535]]]]},{"k":"G2159","v":[["*",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]]],[25945,27585]]],["mightily",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27585]]],["vehemently",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25945]]]]},{"k":"G2160","v":[["jesting",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29308]]]]},{"k":"G2161","v":[["Eutychus",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27635]]]]},{"k":"G2162","v":[["report",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28906]]]]},{"k":"G2163","v":[["report",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29450]]]]},{"k":"G2164","v":[["plentifully",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25475]]]]},{"k":"G2165","v":[["*",[14,14,[[41,6,6,0,6,[[984,1,1,0,1],[987,4,4,1,5],[988,1,1,5,6]]],[43,2,2,6,8,[[1019,1,1,6,7],[1024,1,1,7,8]]],[44,1,1,8,9,[[1060,1,1,8,9]]],[46,1,1,9,10,[[1079,1,1,9,10]]],[47,1,1,10,11,[[1094,1,1,10,11]]],[65,3,3,11,14,[[1177,1,1,11,12],[1178,1,1,12,13],[1184,1,1,13,14]]]],[25478,25611,25612,25617,25620,25639,26975,27157,28313,28826,29158,30882,30903,31013]]],["+",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28826]]],["Rejoice",[3,3,[[44,1,1,0,1,[[1060,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[28313,29158,31013]]],["fared",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25639]]],["merry",[6,6,[[41,5,5,0,5,[[984,1,1,0,1],[987,4,4,1,5]]],[65,1,1,5,6,[[1177,1,1,5,6]]]],[25478,25611,25612,25617,25620,30882]]],["rejoice",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[65,1,1,1,2,[[1178,1,1,1,2]]]],[26975,30903]]],["rejoiced",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27157]]]]},{"k":"G2166","v":[["Euphrates",[2,2,[[65,2,2,0,2,[[1175,1,1,0,1],[1182,1,1,1,2]]]],[30854,30966]]]]},{"k":"G2167","v":[["*",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1031,1,1,1,2]]]],[26977,27431]]],["gladness",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27431]]],["joy",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26977]]]]},{"k":"G2168","v":[["*",[39,38,[[39,2,2,0,2,[[943,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[964,1,1,2,3],[970,1,1,3,4]]],[41,4,4,4,8,[[989,1,1,4,5],[990,1,1,5,6],[994,2,2,6,8]]],[42,3,3,8,11,[[1002,2,2,8,10],[1007,1,1,10,11]]],[43,2,2,11,13,[[1044,1,1,11,12],[1045,1,1,12,13]]],[44,6,5,13,18,[[1046,2,2,13,15],[1052,1,1,15,16],[1059,2,1,16,17],[1061,1,1,17,18]]],[45,6,6,18,24,[[1062,2,2,18,20],[1071,1,1,20,21],[1072,1,1,21,22],[1075,2,2,22,24]]],[46,1,1,24,25,[[1078,1,1,24,25]]],[48,2,2,25,27,[[1097,1,1,25,26],[1101,1,1,26,27]]],[49,1,1,27,28,[[1103,1,1,27,28]]],[50,3,3,28,31,[[1107,2,2,28,30],[1109,1,1,30,31]]],[51,3,3,31,34,[[1111,1,1,31,32],[1112,1,1,32,33],[1115,1,1,33,34]]],[52,2,2,34,36,[[1116,1,1,34,35],[1117,1,1,35,36]]],[56,1,1,36,37,[[1132,1,1,36,37]]],[65,1,1,37,38,[[1177,1,1,37,38]]]],[23669,24081,24506,24777,25667,25699,25881,25883,26268,26280,26564,27890,27914,27938,27951,28116,28286,28340,28367,28377,28597,28624,28695,28696,28811,29222,29324,29364,29468,29477,29534,29562,29583,29639,29652,29674,29942,30889]]],["+",[4,3,[[41,1,1,0,1,[[989,1,1,0,1]]],[44,2,1,1,2,[[1059,2,1,1,2]]],[65,1,1,2,3,[[1177,1,1,2,3]]]],[25667,28286,30889]]],["given",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28811]]],["thank",[11,11,[[41,1,1,0,1,[[990,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]],[44,2,2,2,4,[[1046,1,1,2,3],[1052,1,1,3,4]]],[45,3,3,4,7,[[1062,2,2,4,6],[1075,1,1,6,7]]],[49,1,1,7,8,[[1103,1,1,7,8]]],[51,1,1,8,9,[[1112,1,1,8,9]]],[52,1,1,9,10,[[1116,1,1,9,10]]],[56,1,1,10,11,[[1132,1,1,10,11]]]],[25699,26564,27938,28116,28367,28377,28696,29364,29583,29652,29942]]],["thanked",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27914]]],["thankful",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27951]]],["thanks",[21,21,[[39,2,2,0,2,[[943,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[964,1,1,2,3],[970,1,1,3,4]]],[41,2,2,4,6,[[994,2,2,4,6]]],[42,2,2,6,8,[[1002,2,2,6,8]]],[43,1,1,8,9,[[1044,1,1,8,9]]],[44,1,1,9,10,[[1061,1,1,9,10]]],[45,3,3,10,13,[[1071,1,1,10,11],[1072,1,1,11,12],[1075,1,1,12,13]]],[48,2,2,13,15,[[1097,1,1,13,14],[1101,1,1,14,15]]],[50,3,3,15,18,[[1107,2,2,15,17],[1109,1,1,17,18]]],[51,2,2,18,20,[[1111,1,1,18,19],[1115,1,1,19,20]]],[52,1,1,20,21,[[1117,1,1,20,21]]]],[23669,24081,24506,24777,25881,25883,26268,26280,27890,28340,28597,28624,28695,29222,29324,29468,29477,29534,29562,29639,29674]]]]},{"k":"G2169","v":[["*",[15,15,[[43,1,1,0,1,[[1041,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[46,3,3,2,5,[[1081,1,1,2,3],[1086,2,2,3,5]]],[48,1,1,5,6,[[1101,1,1,5,6]]],[49,1,1,6,7,[[1106,1,1,6,7]]],[50,2,2,7,9,[[1108,1,1,7,8],[1110,1,1,8,9]]],[51,1,1,9,10,[[1113,1,1,9,10]]],[53,3,3,10,13,[[1120,1,1,10,11],[1122,2,2,11,13]]],[65,2,2,13,15,[[1170,1,1,13,14],[1173,1,1,14,15]]]],[27772,28694,28874,28967,28968,29308,29448,29501,29544,29599,29717,29750,29751,30777,30822]]],["thankfulness",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27772]]],["thanks",[5,5,[[45,1,1,0,1,[[1075,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]],[51,1,1,2,3,[[1113,1,1,2,3]]],[53,1,1,3,4,[[1120,1,1,3,4]]],[65,1,1,4,5,[[1170,1,1,4,5]]]],[28694,29308,29599,29717,30777]]],["thanksgiving",[8,8,[[46,2,2,0,2,[[1081,1,1,0,1],[1086,1,1,1,2]]],[49,1,1,2,3,[[1106,1,1,2,3]]],[50,2,2,3,5,[[1108,1,1,3,4],[1110,1,1,4,5]]],[53,2,2,5,7,[[1122,2,2,5,7]]],[65,1,1,7,8,[[1173,1,1,7,8]]]],[28874,28967,29448,29501,29544,29750,29751,30822]]],["thanksgivings",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28968]]]]},{"k":"G2170","v":[["thankful",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29532]]]]},{"k":"G2171","v":[["*",[3,3,[[43,2,2,0,2,[[1035,1,1,0,1],[1038,1,1,1,2]]],[58,1,1,2,3,[[1150,1,1,2,3]]]],[27575,27687,30369]]],["prayer",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30369]]],["vow",[2,2,[[43,2,2,0,2,[[1035,1,1,0,1],[1038,1,1,1,2]]]],[27575,27687]]]]},{"k":"G2172","v":[["*",[7,7,[[43,2,2,0,2,[[1043,1,1,0,1],[1044,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]],[46,2,2,3,5,[[1090,2,2,3,5]]],[58,1,1,5,6,[[1150,1,1,5,6]]],[63,1,1,6,7,[[1165,1,1,6,7]]]],[27852,27884,28158,29050,29052,30370,30660]]],["+",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27852]]],["pray",[2,2,[[46,1,1,0,1,[[1090,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[29050,30370]]],["wish",[3,3,[[44,1,1,0,1,[[1054,1,1,0,1]]],[46,1,1,1,2,[[1090,1,1,1,2]]],[63,1,1,2,3,[[1165,1,1,2,3]]]],[28158,29052,30660]]],["wished",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27884]]]]},{"k":"G2173","v":[["*",[3,3,[[54,2,2,0,2,[[1126,1,1,0,1],[1128,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]]],[29848,29881,29949]]],["+",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29848]]],["profitable",[2,2,[[54,1,1,0,1,[[1128,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[29881,29949]]]]},{"k":"G2174","v":[["comfort",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29410]]]]},{"k":"G2175","v":[["*",[3,3,[[46,1,1,0,1,[[1079,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]],[49,1,1,2,3,[[1106,1,1,2,3]]]],[28839,29306,29460]]],["savour",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28839]]],["smell",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29460]]],["sweetsmelling",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29306]]]]},{"k":"G2176","v":[["*",[10,10,[[39,5,5,0,5,[[948,2,2,0,2],[953,2,2,2,4],[955,1,1,4,5]]],[40,3,3,5,8,[[966,2,2,5,7],[971,1,1,7,8]]],[43,1,1,8,9,[[1038,1,1,8,9]]],[65,1,1,9,10,[[1176,1,1,9,10]]]],[23813,23815,24041,24049,24167,24625,24628,24853,27667,30863]]],["hand",[4,4,[[39,1,1,0,1,[[953,1,1,0,1]]],[40,2,2,1,3,[[966,2,2,1,3]]],[43,1,1,3,4,[[1038,1,1,3,4]]]],[24049,24625,24628,27667]]],["left",[6,6,[[39,4,4,0,4,[[948,2,2,0,2],[953,1,1,2,3],[955,1,1,3,4]]],[40,1,1,4,5,[[971,1,1,4,5]]],[65,1,1,5,6,[[1176,1,1,5,6]]]],[23813,23815,24041,24167,24853,30863]]]]},{"k":"G2177","v":[["leaped",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27601]]]]},{"k":"G2178","v":[["once",[5,5,[[44,1,1,0,1,[[1051,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[57,3,3,2,5,[[1139,1,1,2,3],[1141,1,1,3,4],[1142,1,1,4,5]]]],[28078,28724,30091,30117,30143]]]]},{"k":"G2179","v":[["Ephesus",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30718]]]]},{"k":"G2180","v":[["*",[5,4,[[43,5,4,0,4,[[1036,4,3,0,3],[1038,1,1,3,4]]]],[27613,27619,27620,27693]]],["+",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27620]]],["Ephesian",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27693]]],["Ephesians",[3,3,[[43,3,3,0,3,[[1036,3,3,0,3]]]],[27613,27619,27620]]]]},{"k":"G2181","v":[["Ephesus",[15,15,[[43,8,8,0,8,[[1035,3,3,0,3],[1036,3,3,3,6],[1037,2,2,6,8]]],[45,2,2,8,10,[[1076,1,1,8,9],[1077,1,1,9,10]]],[48,1,1,10,11,[[1097,1,1,10,11]]],[53,1,1,11,12,[[1119,1,1,11,12]]],[54,2,2,12,14,[[1125,1,1,12,13],[1128,1,1,13,14]]],[65,1,1,14,15,[[1167,1,1,14,15]]]],[27576,27578,27581,27586,27602,27611,27642,27643,28750,28784,29207,29699,29827,29882,30708]]]]},{"k":"G2182","v":[["inventors",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27960]]]]},{"k":"G2183","v":[["course",[2,2,[[41,2,2,0,2,[[973,2,2,0,2]]]],[24898,24901]]]]},{"k":"G2184","v":[["daily",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30308]]]]},{"k":"G2185","v":[["*",[2,2,[[46,2,2,0,2,[[1087,2,2,0,2]]]],[28984,28985]]],["reach",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28984]]],["reached",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28985]]]]},{"k":"G2186","v":[["*",[21,21,[[41,7,7,0,7,[[974,2,2,0,2],[976,1,1,2,3],[982,1,1,3,4],[992,1,1,4,5],[993,1,1,5,6],[996,1,1,6,7]]],[43,11,11,7,18,[[1021,1,1,7,8],[1023,1,1,8,9],[1027,1,1,9,10],[1028,1,1,10,11],[1029,1,1,11,12],[1034,1,1,12,13],[1039,2,2,13,15],[1040,2,2,15,17],[1045,1,1,17,18]]],[51,1,1,18,19,[[1115,1,1,18,19]]],[54,2,2,19,21,[[1128,2,2,19,21]]]],[24982,25011,25102,25403,25780,25860,25995,27023,27113,27276,27318,27344,27528,27717,27724,27745,27761,27901,29624,29872,29876]]],["assaulted",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27528]]],["by",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,2,2,1,3,[[1039,1,1,1,2],[1040,1,1,2,3]]]],[25995,27724,27745]]],["came",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[25403,27761]]],["come",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[43,1,1,1,2,[[1028,1,1,1,2]]]],[25860,27318]]],["coming",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25011]]],["hand",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29876]]],["instant",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29872]]],["present",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27901]]],["stood",[3,3,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,2,2,1,3,[[1027,1,1,1,2],[1039,1,1,2,3]]]],[25102,27276,27717]]],["upon",[6,6,[[41,2,2,0,2,[[974,1,1,0,1],[992,1,1,1,2]]],[43,3,3,2,5,[[1021,1,1,2,3],[1023,1,1,3,4],[1029,1,1,4,5]]],[51,1,1,5,6,[[1115,1,1,5,6]]]],[24982,25780,27023,27113,27344,29624]]]]},{"k":"G2187","v":[["Ephraim",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26577]]]]},{"k":"G2188","v":[["Ephphatha",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24497]]]]},{"k":"G2189","v":[["*",[6,6,[[41,1,1,0,1,[[995,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]],[48,2,2,3,5,[[1098,2,2,3,5]]],[58,1,1,5,6,[[1149,1,1,5,6]]]],[25947,28123,29182,29244,29245,30341]]],["enmity",[5,5,[[41,1,1,0,1,[[995,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]],[48,2,2,2,4,[[1098,2,2,2,4]]],[58,1,1,4,5,[[1149,1,1,4,5]]]],[25947,28123,29244,29245,30341]]],["hatred",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29182]]]]},{"k":"G2190","v":[["*",[32,32,[[39,7,7,0,7,[[933,2,2,0,2],[938,1,1,2,3],[941,3,3,3,6],[950,1,1,6,7]]],[40,1,1,7,8,[[968,1,1,7,8]]],[41,8,8,8,16,[[973,2,2,8,10],[978,2,2,10,12],[982,1,1,12,13],[991,2,2,13,15],[992,1,1,15,16]]],[43,2,2,16,18,[[1019,1,1,16,17],[1030,1,1,17,18]]],[44,3,3,18,21,[[1050,1,1,18,19],[1056,1,1,19,20],[1057,1,1,20,21]]],[45,2,2,21,23,[[1076,2,2,21,23]]],[47,1,1,23,24,[[1094,1,1,23,24]]],[49,1,1,24,25,[[1105,1,1,24,25]]],[50,1,1,25,26,[[1107,1,1,25,26]]],[52,1,1,26,27,[[1118,1,1,26,27]]],[57,2,2,27,29,[[1133,1,1,27,28],[1142,1,1,28,29]]],[58,1,1,29,30,[[1149,1,1,29,30]]],[65,2,2,30,32,[[1177,2,2,30,32]]]],[23277,23278,23453,23564,23567,23578,23916,24709,24964,24967,25173,25181,25382,25758,25774,25822,26984,27372,28057,28237,28265,28743,28744,29147,29439,29486,29693,29976,30146,30341,30877,30884]]],["enemies",[19,19,[[39,2,2,0,2,[[933,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,7,7,3,10,[[973,2,2,3,5],[978,2,2,5,7],[991,2,2,7,9],[992,1,1,9,10]]],[44,2,2,10,12,[[1050,1,1,10,11],[1056,1,1,11,12]]],[45,1,1,12,13,[[1076,1,1,12,13]]],[49,1,1,13,14,[[1105,1,1,13,14]]],[50,1,1,14,15,[[1107,1,1,14,15]]],[57,2,2,15,17,[[1133,1,1,15,16],[1142,1,1,16,17]]],[65,2,2,17,19,[[1177,2,2,17,19]]]],[23278,23916,24709,24964,24967,25173,25181,25758,25774,25822,28057,28237,28743,29439,29486,29976,30146,30877,30884]]],["enemy",[11,11,[[39,4,4,0,4,[[933,1,1,0,1],[941,3,3,1,4]]],[41,1,1,4,5,[[982,1,1,4,5]]],[43,1,1,5,6,[[1030,1,1,5,6]]],[44,1,1,6,7,[[1057,1,1,6,7]]],[45,1,1,7,8,[[1076,1,1,7,8]]],[47,1,1,8,9,[[1094,1,1,8,9]]],[52,1,1,9,10,[[1118,1,1,9,10]]],[58,1,1,10,11,[[1149,1,1,10,11]]]],[23277,23564,23567,23578,25382,27372,28265,28744,29147,29693,30341]]],["foes",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[23453,26984]]]]},{"k":"G2191","v":[["*",[5,5,[[39,3,3,0,3,[[931,1,1,0,1],[940,1,1,1,2],[951,1,1,2,3]]],[41,1,1,3,4,[[975,1,1,3,4]]],[43,1,1,4,5,[[1045,1,1,4,5]]]],[23199,23523,23951,25032,27902]]],["viper",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27902]]],["vipers",[4,4,[[39,3,3,0,3,[[931,1,1,0,1],[940,1,1,1,2],[951,1,1,2,3]]],[41,1,1,3,4,[[975,1,1,3,4]]]],[23199,23523,23951,25032]]]]},{"k":"G2192","v":[["*",[709,626,[[39,72,63,0,63,[[929,2,2,0,2],[931,3,3,2,5],[932,1,1,5,6],[933,2,2,6,8],[934,2,2,8,10],[935,1,1,10,11],[936,4,3,11,14],[937,4,3,14,17],[939,2,2,17,19],[940,2,2,19,21],[941,12,9,21,30],[942,5,5,30,35],[943,3,3,35,38],[945,1,1,38,39],[946,4,3,39,42],[947,3,3,42,45],[949,5,5,45,50],[950,4,4,50,54],[952,1,1,54,55],[953,5,3,55,58],[954,4,3,58,61],[955,2,2,61,63]]],[40,72,64,63,127,[[957,4,4,63,67],[958,5,4,67,71],[959,8,8,71,79],[960,10,7,79,86],[961,3,3,86,89],[962,5,5,89,94],[963,2,2,94,96],[964,10,8,96,104],[965,5,5,104,109],[966,4,3,109,112],[967,5,5,112,117],[968,3,3,117,120],[969,1,1,120,121],[970,5,4,121,125],[972,2,2,125,127]]],[41,78,66,127,193,[[975,4,2,127,129],[976,2,2,129,131],[977,3,2,131,133],[978,1,1,133,134],[979,5,5,134,139],[980,7,5,139,144],[981,4,3,144,147],[983,3,3,147,150],[984,5,5,150,155],[985,3,3,155,158],[986,6,5,158,163],[987,4,4,163,167],[988,3,3,167,170],[989,3,3,170,173],[990,3,2,173,175],[991,9,7,175,182],[992,3,3,182,185],[993,2,2,185,187],[994,4,3,187,190],[995,1,1,190,191],[996,3,2,191,193]]],[42,87,75,193,268,[[998,2,2,193,195],[999,4,4,195,199],[1000,9,6,199,205],[1001,12,11,205,216],[1002,6,6,216,222],[1003,1,1,222,223],[1004,8,8,223,231],[1005,3,3,231,234],[1006,6,4,234,238],[1007,1,1,238,239],[1008,6,5,239,244],[1009,5,4,244,248],[1010,2,2,248,250],[1011,4,3,250,253],[1012,7,6,253,259],[1013,2,2,259,261],[1014,1,1,261,262],[1015,6,4,262,266],[1016,1,1,266,267],[1017,1,1,267,268]]],[43,44,43,268,311,[[1018,1,1,268,269],[1019,3,3,269,272],[1020,1,1,272,273],[1021,2,2,273,275],[1024,1,1,275,276],[1025,1,1,276,277],[1026,2,2,277,279],[1029,1,1,279,280],[1030,1,1,280,281],[1031,1,1,281,282],[1032,2,2,282,284],[1033,1,1,284,285],[1034,1,1,285,286],[1035,1,1,286,287],[1036,2,2,287,289],[1037,2,2,289,291],[1038,3,3,291,294],[1040,4,4,294,298],[1041,6,6,298,304],[1042,4,3,304,307],[1044,1,1,307,308],[1045,3,3,308,311]]],[44,25,21,311,332,[[1046,2,2,311,313],[1047,3,2,313,315],[1049,1,1,315,316],[1050,2,2,316,318],[1051,2,2,318,320],[1053,2,2,320,322],[1054,2,2,322,324],[1055,1,1,324,325],[1057,3,2,325,327],[1058,1,1,327,328],[1059,2,1,328,329],[1060,4,3,329,332]]],[45,49,38,332,370,[[1063,1,1,332,333],[1065,2,2,333,335],[1066,1,1,335,336],[1067,4,4,336,340],[1068,12,9,340,349],[1069,2,2,349,351],[1070,4,4,351,355],[1072,5,4,355,359],[1073,6,5,359,364],[1074,5,3,364,367],[1075,5,1,367,368],[1076,2,2,368,370]]],[46,22,21,370,391,[[1078,2,2,370,372],[1079,3,3,372,375],[1080,2,2,375,377],[1081,3,3,377,380],[1082,2,2,380,382],[1083,1,1,382,383],[1084,2,2,383,385],[1085,3,2,385,387],[1086,1,1,387,388],[1087,2,2,388,390],[1089,1,1,390,391]]],[47,6,5,391,396,[[1092,1,1,391,392],[1094,3,2,392,394],[1096,2,2,394,396]]],[48,8,7,396,403,[[1097,1,1,396,397],[1098,2,2,397,399],[1099,1,1,399,400],[1100,2,1,400,401],[1101,2,2,401,403]]],[49,10,10,403,413,[[1103,3,3,403,406],[1104,4,4,406,410],[1105,3,3,410,413]]],[50,6,6,413,419,[[1107,1,1,413,414],[1108,2,2,414,416],[1109,1,1,416,417],[1110,2,2,417,419]]],[51,8,8,419,427,[[1111,2,2,419,421],[1113,1,1,421,422],[1114,3,3,422,425],[1115,2,2,425,427]]],[52,1,1,427,428,[[1118,1,1,427,428]]],[53,14,14,428,442,[[1119,2,2,428,430],[1121,3,3,430,433],[1122,1,1,433,434],[1123,5,5,434,439],[1124,3,3,439,442]]],[54,6,5,442,447,[[1125,3,2,442,444],[1126,2,2,444,446],[1127,1,1,446,447]]],[55,2,2,447,449,[[1129,1,1,447,448],[1130,1,1,448,449]]],[56,4,4,449,453,[[1132,4,4,449,453]]],[57,38,35,453,488,[[1134,1,1,453,454],[1135,1,1,454,455],[1136,2,2,455,457],[1137,3,2,457,459],[1138,4,4,459,463],[1139,6,6,463,469],[1140,2,2,469,471],[1141,4,3,471,474],[1142,6,6,474,480],[1143,3,3,480,483],[1144,2,2,483,485],[1145,4,3,485,488]]],[58,10,7,488,495,[[1146,1,1,488,489],[1147,6,4,489,493],[1148,1,1,493,494],[1149,2,1,494,495]]],[59,5,5,495,500,[[1152,2,2,495,497],[1153,1,1,497,498],[1154,2,2,498,500]]],[60,5,4,500,504,[[1156,2,2,500,502],[1157,3,2,502,504]]],[61,28,23,504,527,[[1159,4,4,504,508],[1160,7,6,508,514],[1161,5,4,514,518],[1162,4,4,518,522],[1163,8,5,522,527]]],[62,4,3,527,530,[[1164,4,3,527,530]]],[63,2,2,530,532,[[1165,2,2,530,532]]],[64,2,2,532,534,[[1166,2,2,532,534]]],[65,101,92,534,626,[[1167,2,2,534,536],[1168,16,15,536,551],[1169,10,9,551,560],[1170,4,3,560,563],[1171,2,2,563,565],[1172,3,3,565,568],[1173,1,1,568,569],[1174,3,3,569,572],[1175,10,9,572,581],[1176,1,1,581,582],[1177,2,1,582,583],[1178,6,5,583,588],[1179,6,6,588,594],[1180,7,6,594,600],[1181,3,3,600,603],[1182,2,2,603,605],[1183,7,7,605,612],[1184,2,2,612,614],[1185,3,3,614,617],[1186,3,2,617,619],[1187,7,6,619,625],[1188,1,1,625,626]]]],[23162,23167,23196,23201,23206,23233,23257,23280,23283,23290,23345,23354,23361,23365,23385,23391,23415,23474,23477,23499,23500,23544,23545,23548,23551,23560,23566,23582,23583,23585,23601,23602,23613,23614,23632,23663,23665,23667,23720,23735,23736,23752,23778,23783,23784,23829,23847,23852,23854,23872,23884,23896,23897,23900,23976,24033,24036,24037,24061,24065,24119,24145,24194,24237,24247,24249,24253,24270,24277,24279,24285,24289,24291,24298,24303,24310,24314,24317,24318,24328,24329,24332,24340,24346,24348,24363,24367,24379,24387,24425,24441,24443,24445,24462,24479,24488,24501,24502,24505,24507,24514,24516,24517,24518,24555,24581,24583,24585,24588,24609,24610,24611,24643,24653,24662,24665,24672,24679,24696,24717,24734,24757,24761,24762,24817,24881,24891,25033,25036,25096,25103,25131,25138,25154,25197,25203,25228,25235,25237,25251,25253,25258,25263,25272,25304,25312,25359,25410,25411,25441,25463,25464,25476,25478,25509,25524,25529,25551,25567,25571,25572,25581,25588,25592,25595,25596,25599,25621,25648,25649,25657,25658,25660,25710,25712,25748,25751,25755,25756,25757,25762,25765,25803,25807,25812,25830,25849,25900,25901,25935,25952,26030,26032,26098,26120,26135,26136,26149,26156,26167,26173,26174,26188,26200,26208,26212,26215,26216,26217,26234,26236,26246,26248,26249,26250,26252,26266,26297,26304,26310,26311,26325,26348,26387,26393,26407,26422,26429,26430,26433,26438,26461,26463,26481,26491,26497,26499,26501,26540,26586,26588,26615,26616,26628,26638,26640,26659,26665,26689,26698,26712,26721,26723,26738,26741,26747,26748,26756,26759,26764,26772,26795,26832,26835,26836,26840,26898,26903,26935,26993,26994,26996,27002,27036,27057,27117,27183,27230,27247,27352,27367,27423,27463,27478,27499,27534,27575,27598,27623,27641,27650,27677,27687,27690,27751,27752,27753,27763,27778,27784,27785,27788,27792,27794,27812,27815,27822,27894,27908,27918,27928,27943,27958,27976,27982,28024,28048,28049,28089,28090,28125,28139,28165,28176,28190,28249,28251,28269,28302,28307,28320,28326,28410,28440,28448,28455,28468,28471,28474,28486,28489,28494,28499,28500,28512,28515,28516,28524,28527,28528,28537,28544,28545,28546,28557,28604,28610,28616,28622,28646,28655,28657,28658,28664,28666,28667,28668,28704,28749,28752,28809,28815,28827,28828,28837,28845,28853,28860,28866,28872,28878,28889,28908,28917,28921,28943,28944,28964,28977,28986,29036,29085,29153,29158,29192,29198,29213,29241,29247,29263,29300,29309,29331,29368,29384,29391,29393,29411,29418,29420,29425,29430,29438,29479,29495,29517,29530,29543,29555,29568,29569,29596,29612,29615,29616,29622,29624,29687,29708,29715,29735,29738,29740,29755,29767,29775,29779,29783,29788,29790,29796,29804,29812,29822,29844,29846,29858,29898,29916,29943,29945,29946,29955,29991,29998,30028,30029,30042,30044,30053,30057,30062,30063,30067,30069,30070,30088,30091,30092,30093,30095,30106,30109,30113,30134,30135,30152,30167,30168,30169,30182,30187,30197,30221,30240,30251,30255,30259,30270,30294,30307,30310,30311,30333,30339,30411,30415,30440,30451,30454,30494,30498,30514,30516,30543,30546,30547,30548,30551,30557,30570,30573,30577,30578,30582,30594,30596,30600,30619,30620,30621,30624,30634,30636,30637,30638,30639,30650,30654,30657,30662,30671,30675,30691,30713,30715,30720,30721,30723,30724,30727,30728,30729,30731,30732,30734,30735,30737,30741,30742,30746,30747,30750,30752,30753,30754,30757,30759,30763,30768,30772,30775,30776,30785,30787,30795,30798,30802,30812,30830,30833,30836,30843,30844,30848,30849,30850,30851,30854,30857,30859,30863,30878,30893,30894,30897,30903,30908,30909,30917,30919,30922,30925,30926,30927,30932,30937,30940,30943,30944,30947,30948,30952,30956,30963,30976,30978,30979,30982,30984,30988,30993,30994,31012,31027,31029,31033,31039,31044,31062,31064,31065,31067,31068,31076,31085]]],["+",[63,61,[[39,11,10,0,10,[[929,2,2,0,2],[932,1,1,2,3],[936,1,1,3,4],[937,2,1,4,5],[942,3,3,5,8],[947,1,1,8,9],[952,1,1,9,10]]],[40,10,10,10,20,[[957,2,2,10,12],[958,1,1,12,13],[961,1,1,13,14],[962,1,1,14,15],[966,1,1,15,16],[969,1,1,16,17],[970,1,1,17,18],[972,2,2,18,20]]],[41,10,9,20,29,[[977,2,1,20,21],[979,1,1,21,22],[980,1,1,22,23],[986,1,1,23,24],[987,1,1,24,25],[989,1,1,25,26],[991,1,1,26,27],[993,1,1,27,28],[994,1,1,28,29]]],[42,8,8,29,37,[[998,1,1,29,30],[1000,1,1,30,31],[1005,3,3,31,34],[1009,1,1,34,35],[1010,1,1,35,36],[1012,1,1,36,37]]],[43,2,2,37,39,[[1041,2,2,37,39]]],[45,2,2,39,41,[[1067,1,1,39,40],[1076,1,1,40,41]]],[46,1,1,41,42,[[1085,1,1,41,42]]],[48,1,1,42,43,[[1100,1,1,42,43]]],[50,1,1,43,44,[[1108,1,1,43,44]]],[51,3,3,44,47,[[1111,1,1,44,45],[1114,1,1,45,46],[1115,1,1,46,47]]],[53,2,2,47,49,[[1119,1,1,47,48],[1123,1,1,48,49]]],[54,2,2,49,51,[[1125,1,1,49,50],[1126,1,1,50,51]]],[57,3,3,51,54,[[1139,1,1,51,52],[1143,2,2,52,54]]],[60,1,1,54,55,[[1157,1,1,54,55]]],[61,1,1,55,56,[[1160,1,1,55,56]]],[64,1,1,56,57,[[1166,1,1,56,57]]],[65,4,4,57,61,[[1170,1,1,57,58],[1178,1,1,58,59],[1183,1,1,59,60],[1188,1,1,60,61]]]],[23162,23167,23233,23361,23391,23613,23614,23632,23784,23976,24247,24249,24277,24387,24462,24610,24734,24817,24881,24891,25138,25197,25251,25567,25595,25660,25748,25849,25935,26120,26208,26461,26463,26481,26640,26698,26756,27788,27794,28474,28752,28944,29300,29517,29568,29612,29624,29708,29783,29812,29844,30091,30187,30197,30516,30577,30675,30776,30893,30993,31085]]],["Are",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27117]]],["Hast",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28302]]],["Hath",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28176]]],["Have",[6,6,[[40,2,2,0,2,[[965,1,1,0,1],[967,1,1,1,2]]],[41,1,1,2,3,[[996,1,1,2,3]]],[45,3,3,3,6,[[1070,2,2,3,5],[1073,1,1,5,6]]]],[24588,24662,26032,28544,28545,28664]]],["Having",[13,13,[[40,2,2,0,2,[[964,1,1,0,1],[968,1,1,1,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[46,1,1,3,4,[[1084,1,1,3,4]]],[49,1,1,4,5,[[1103,1,1,4,5]]],[53,1,1,5,6,[[1123,1,1,5,6]]],[54,1,1,6,7,[[1127,1,1,6,7]]],[57,1,1,7,8,[[1142,1,1,7,8]]],[59,2,2,8,10,[[1152,1,1,8,9],[1153,1,1,9,10]]],[60,1,1,10,11,[[1157,1,1,10,11]]],[62,1,1,11,12,[[1164,1,1,11,12]]],[65,1,1,12,13,[[1187,1,1,12,13]]]],[24518,24679,28251,28917,29391,29775,29858,30152,30411,30440,30514,30657,31064]]],["Holding",[2,2,[[53,2,2,0,2,[[1119,1,1,0,1],[1121,1,1,1,2]]]],[29715,29740]]],["a",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26935]]],["accompany",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30053]]],["am",[2,2,[[43,1,1,0,1,[[1038,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]]],[27677,29036]]],["are",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29788]]],["art",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26438]]],["be",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29946]]],["been",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26216]]],["could",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]]],[24762,27036,30057]]],["count",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[27650,29955]]],["counted",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]]],[23602,24672]]],["do",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27478]]],["fast",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29822]]],["following",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25551]]],["had",[107,101,[[39,11,9,0,9,[[931,1,1,0,1],[940,1,1,1,2],[941,4,3,2,5],[946,2,1,5,6],[949,1,1,6,7],[950,1,1,7,8],[955,1,1,8,9]]],[40,15,14,9,23,[[957,1,1,9,10],[958,1,1,10,11],[959,3,3,11,14],[960,3,2,14,16],[961,2,2,16,18],[963,1,1,18,19],[964,2,2,19,21],[968,2,2,21,23]]],[41,13,13,23,36,[[976,2,2,23,25],[978,1,1,25,26],[979,1,1,26,27],[980,1,1,27,28],[981,1,1,28,29],[985,2,2,29,31],[987,1,1,31,32],[988,1,1,32,33],[989,1,1,33,34],[992,1,1,34,35],[993,1,1,35,36]]],[42,8,8,36,44,[[1000,1,1,36,37],[1001,1,1,37,38],[1007,1,1,38,39],[1008,1,1,39,40],[1009,1,1,40,41],[1011,2,2,41,43],[1013,1,1,43,44]]],[43,12,12,44,56,[[1019,2,2,44,46],[1021,1,1,46,47],[1026,1,1,47,48],[1030,1,1,48,49],[1031,1,1,49,50],[1035,1,1,50,51],[1036,1,1,51,52],[1042,1,1,52,53],[1045,3,3,53,56]]],[44,2,2,56,58,[[1051,1,1,56,57],[1054,1,1,57,58]]],[45,1,1,58,59,[[1068,1,1,58,59]]],[46,3,3,59,62,[[1078,1,1,59,60],[1079,1,1,60,61],[1084,1,1,61,62]]],[47,1,1,62,63,[[1094,1,1,62,63]]],[51,1,1,63,64,[[1111,1,1,63,64]]],[57,7,6,64,70,[[1134,1,1,64,65],[1139,1,1,65,66],[1141,3,2,66,68],[1142,1,1,68,69],[1144,1,1,69,70]]],[61,1,1,70,71,[[1160,1,1,70,71]]],[62,1,1,71,72,[[1164,1,1,71,72]]],[63,1,1,72,73,[[1165,1,1,72,73]]],[65,30,28,73,101,[[1167,1,1,73,74],[1170,3,3,74,77],[1172,2,2,77,79],[1174,2,2,79,81],[1175,6,6,81,87],[1176,1,1,87,88],[1179,3,3,88,91],[1180,2,1,91,92],[1182,1,1,92,93],[1183,1,1,93,94],[1184,1,1,94,95],[1185,1,1,95,96],[1187,6,5,96,101]]]],[23196,23499,23544,23545,23585,23752,23854,23900,24145,24237,24285,24289,24291,24298,24328,24329,24367,24379,24488,24507,24514,24696,24717,25096,25103,25154,25237,25272,25312,25524,25529,25599,25621,25657,25812,25830,26174,26215,26540,26586,26659,26721,26723,26764,26993,26994,27057,27247,27367,27423,27575,27598,27815,27908,27918,27928,28089,28165,28516,28809,28837,28921,29153,29569,29991,30070,30106,30109,30135,30221,30557,30650,30671,30713,30772,30775,30776,30795,30798,30833,30836,30848,30849,30850,30851,30854,30859,30863,30919,30922,30925,30944,30956,30976,31012,31029,31062,31065,31067,31068,31076]]],["hast",[26,25,[[39,1,1,0,1,[[953,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,2,2,2,4,[[984,1,1,2,3],[990,1,1,3,4]]],[42,8,7,4,11,[[1000,3,2,4,6],[1002,1,1,6,7],[1003,1,1,7,8],[1004,2,2,8,10],[1009,1,1,10,11]]],[43,1,1,11,12,[[1040,1,1,11,12]]],[44,1,1,12,13,[[1047,1,1,12,13]]],[45,2,2,13,15,[[1065,1,1,13,14],[1069,1,1,14,15]]],[56,1,1,15,16,[[1132,1,1,15,16]]],[58,1,1,16,17,[[1147,1,1,16,17]]],[65,8,8,17,25,[[1168,4,4,17,21],[1169,4,4,21,25]]]],[24033,24609,25478,25710,26167,26174,26325,26348,26429,26433,26638,27753,27982,28440,28537,29943,30311,30720,30723,30731,30732,30747,30750,30754,30757]]],["hath",[128,105,[[39,18,14,0,14,[[933,1,1,0,1],[936,1,1,1,2],[937,1,1,2,3],[939,2,2,3,5],[941,8,6,5,11],[949,1,1,11,12],[953,4,2,12,14]]],[40,11,9,14,23,[[958,1,1,14,15],[959,4,4,15,19],[960,4,2,19,21],[965,1,1,21,22],[967,1,1,22,23]]],[41,22,16,23,39,[[975,3,1,23,24],[977,1,1,24,25],[979,1,1,25,26],[980,3,2,26,28],[981,1,1,28,29],[984,1,1,29,30],[986,1,1,30,31],[991,7,5,31,36],[992,1,1,36,37],[994,2,1,37,38],[996,1,1,38,39]]],[42,15,15,39,54,[[999,2,2,39,41],[1000,1,1,41,42],[1001,2,2,42,44],[1002,3,3,44,47],[1006,1,1,47,48],[1008,1,1,48,49],[1010,1,1,49,50],[1011,1,1,50,51],[1012,2,2,51,53],[1015,1,1,53,54]]],[43,4,4,54,58,[[1026,1,1,54,55],[1032,1,1,55,56],[1040,2,2,56,58]]],[44,1,1,58,59,[[1049,1,1,58,59]]],[45,10,6,59,65,[[1068,4,4,59,63],[1073,1,1,63,64],[1075,5,1,64,65]]],[46,1,1,65,66,[[1085,1,1,65,66]]],[47,2,1,66,67,[[1094,2,1,66,67]]],[48,1,1,67,68,[[1101,1,1,67,68]]],[50,1,1,68,69,[[1110,1,1,68,69]]],[53,1,1,69,70,[[1124,1,1,69,70]]],[57,4,4,70,74,[[1135,1,1,70,71],[1139,1,1,71,72],[1142,1,1,72,73],[1143,1,1,73,74]]],[58,2,2,74,76,[[1147,2,2,74,76]]],[61,12,8,76,84,[[1160,2,1,76,77],[1161,3,3,77,80],[1162,2,2,80,82],[1163,5,2,82,84]]],[62,2,1,84,85,[[1164,2,1,84,85]]],[65,21,20,85,105,[[1168,6,6,85,91],[1169,5,5,91,96],[1175,1,1,96,97],[1178,2,2,97,99],[1179,1,1,99,100],[1182,1,1,100,101],[1183,2,2,101,103],[1185,1,1,103,104],[1186,2,1,104,105]]]],[23257,23365,23385,23474,23477,23548,23551,23560,23566,23582,23583,23829,24036,24037,24270,24310,24314,24317,24318,24332,24348,24555,24643,25036,25131,25228,25253,25263,25359,25464,25588,25755,25756,25757,25762,25765,25803,25900,26030,26149,26156,26200,26234,26236,26266,26304,26311,26501,26628,26689,26712,26741,26747,26836,27230,27463,27751,27752,28024,28494,28499,28500,28524,28646,28704,28944,29158,29309,29555,29804,29998,30088,30168,30182,30307,30310,30573,30582,30594,30596,30619,30621,30634,30636,30654,30724,30728,30729,30734,30735,30746,30747,30752,30753,30759,30768,30851,30897,30903,30926,30963,30982,30984,31033,31044]]],["have",[253,233,[[39,18,17,0,17,[[931,2,2,0,2],[933,1,1,2,3],[934,2,2,3,5],[936,1,1,5,6],[940,1,1,6,7],[942,1,1,7,8],[943,2,2,8,10],[945,1,1,10,11],[947,2,2,11,13],[949,1,1,13,14],[954,3,2,14,16],[955,1,1,16,17]]],[40,20,18,17,35,[[958,2,2,17,19],[959,1,1,19,20],[960,3,3,20,23],[962,3,3,23,26],[963,1,1,26,27],[964,5,4,27,31],[966,2,2,31,33],[967,1,1,33,34],[970,2,1,34,35]]],[41,21,21,35,56,[[975,1,1,35,36],[979,1,1,36,37],[980,2,2,37,39],[981,2,2,39,41],[983,2,2,41,43],[984,3,3,43,46],[986,3,3,46,49],[988,2,2,49,51],[990,2,2,51,53],[991,1,1,53,54],[994,1,1,54,55],[996,1,1,55,56]]],[42,44,38,56,94,[[998,1,1,56,57],[999,2,2,57,59],[1000,3,2,59,61],[1001,7,7,61,68],[1002,2,2,68,70],[1004,5,5,70,75],[1006,5,3,75,78],[1008,4,3,78,81],[1009,2,2,81,83],[1011,1,1,83,84],[1012,4,3,84,87],[1013,1,1,87,88],[1015,5,4,88,92],[1016,1,1,92,93],[1017,1,1,93,94]]],[43,10,9,94,103,[[1020,1,1,94,95],[1036,1,1,95,96],[1038,1,1,96,97],[1040,1,1,97,98],[1041,3,3,98,101],[1042,3,2,101,103]]],[44,14,13,103,116,[[1046,1,1,103,104],[1047,1,1,104,105],[1050,2,2,105,107],[1051,1,1,107,108],[1053,2,2,108,110],[1055,1,1,110,111],[1057,2,1,111,112],[1058,1,1,112,113],[1059,1,1,113,114],[1060,2,2,114,116]]],[45,28,23,116,139,[[1063,1,1,116,117],[1065,1,1,117,118],[1066,1,1,118,119],[1067,2,2,119,121],[1068,6,5,121,126],[1069,1,1,126,127],[1070,2,2,127,129],[1072,4,3,129,132],[1073,4,3,132,135],[1074,5,3,135,138],[1076,1,1,138,139]]],[46,10,10,139,149,[[1078,1,1,139,140],[1079,2,2,140,142],[1080,2,2,142,144],[1081,2,2,144,146],[1082,2,2,146,148],[1085,1,1,148,149]]],[47,3,3,149,152,[[1092,1,1,149,150],[1096,2,2,150,152]]],[48,4,4,152,156,[[1097,1,1,152,153],[1098,1,1,153,154],[1099,1,1,154,155],[1100,1,1,155,156]]],[49,5,5,156,161,[[1103,1,1,156,157],[1104,2,2,157,159],[1105,2,2,159,161]]],[50,4,4,161,165,[[1107,1,1,161,162],[1108,1,1,162,163],[1109,1,1,163,164],[1110,1,1,164,165]]],[51,4,4,165,169,[[1113,1,1,165,166],[1114,2,2,166,168],[1115,1,1,168,169]]],[52,1,1,169,170,[[1118,1,1,169,170]]],[53,4,4,170,174,[[1121,1,1,170,171],[1123,2,2,171,173],[1124,1,1,173,174]]],[54,1,1,174,175,[[1125,1,1,174,175]]],[56,1,1,175,176,[[1132,1,1,175,176]]],[57,18,16,176,192,[[1136,2,2,176,178],[1137,3,2,178,180],[1138,2,2,180,182],[1139,2,2,182,184],[1140,2,2,184,186],[1142,2,2,186,188],[1144,1,1,188,189],[1145,4,3,189,192]]],[58,7,6,192,198,[[1146,1,1,192,193],[1147,3,3,193,196],[1148,1,1,196,197],[1149,2,1,197,198]]],[59,1,1,198,199,[[1154,1,1,198,199]]],[60,3,3,199,202,[[1156,2,2,199,201],[1157,1,1,201,202]]],[61,14,14,202,216,[[1159,4,4,202,206],[1160,3,3,206,209],[1161,2,2,209,211],[1162,2,2,211,213],[1163,3,3,213,216]]],[63,1,1,216,217,[[1165,1,1,216,217]]],[65,17,16,217,233,[[1167,1,1,217,218],[1168,6,6,218,224],[1169,1,1,224,225],[1175,2,2,225,227],[1177,2,1,227,228],[1178,1,1,228,229],[1179,1,1,229,230],[1180,1,1,230,231],[1183,1,1,231,232],[1185,1,1,232,233]]]],[23201,23206,23280,23283,23290,23365,23500,23601,23665,23667,23720,23778,23783,23847,24065,24119,24194,24277,24279,24303,24340,24346,24363,24425,24443,24445,24479,24502,24505,24516,24517,24609,24611,24665,24761,25033,25235,25258,25263,25304,25359,25410,25411,25463,25476,25509,25571,25572,25581,25648,25649,25710,25712,25751,25901,26030,26098,26135,26136,26173,26188,26217,26236,26246,26248,26249,26250,26252,26297,26310,26387,26393,26407,26422,26430,26491,26497,26499,26588,26615,26616,26659,26665,26721,26738,26748,26759,26772,26832,26835,26836,26840,26898,26903,27002,27623,27687,27763,27784,27785,27792,27812,27822,27943,27976,28048,28049,28090,28125,28139,28190,28249,28269,28302,28307,28320,28410,28448,28455,28471,28486,28489,28512,28515,28516,28527,28528,28546,28557,28610,28616,28622,28655,28657,28658,28666,28667,28668,28749,28815,28827,28828,28845,28853,28860,28866,28878,28889,28943,29085,29192,29198,29213,29247,29263,29300,29368,29411,29418,29425,29438,29479,29495,29530,29543,29596,29615,29616,29622,29687,29738,29767,29779,29790,29812,29945,30028,30029,30042,30044,30062,30063,30069,30092,30093,30095,30167,30169,30240,30251,30255,30259,30270,30294,30307,30311,30333,30339,30454,30494,30498,30514,30543,30546,30547,30548,30551,30570,30578,30596,30600,30620,30624,30637,30638,30639,30662,30715,30721,30727,30731,30737,30741,30742,30763,30843,30844,30878,30908,30917,30937,30988,31027]]],["having",[71,70,[[39,10,10,0,10,[[935,1,1,0,1],[936,1,1,1,2],[937,1,1,2,3],[943,1,1,3,4],[946,2,2,4,6],[950,3,3,6,9],[954,1,1,9,10]]],[40,8,8,10,18,[[962,1,1,10,11],[964,2,2,11,13],[965,3,3,13,16],[967,1,1,16,17],[970,1,1,17,18]]],[41,6,6,18,24,[[979,1,1,18,19],[983,1,1,19,20],[987,2,2,20,22],[989,1,1,22,23],[992,1,1,23,24]]],[42,2,2,24,26,[[1001,1,1,24,25],[1014,1,1,25,26]]],[43,1,1,26,27,[[1019,1,1,26,27]]],[44,3,2,27,29,[[1047,1,1,27,28],[1060,2,1,28,29]]],[45,3,3,29,32,[[1067,1,1,29,30],[1068,1,1,30,31],[1072,1,1,31,32]]],[46,5,5,32,37,[[1081,1,1,32,33],[1083,1,1,33,34],[1086,1,1,34,35],[1087,2,2,35,37]]],[48,2,2,37,39,[[1098,1,1,37,38],[1101,1,1,38,39]]],[49,3,3,39,42,[[1103,1,1,39,40],[1104,1,1,40,41],[1105,1,1,41,42]]],[53,3,3,42,45,[[1121,1,1,42,43],[1122,1,1,43,44],[1124,1,1,44,45]]],[54,1,1,45,46,[[1126,1,1,45,46]]],[55,2,2,46,48,[[1129,1,1,46,47],[1130,1,1,47,48]]],[57,2,2,48,50,[[1139,1,1,48,49],[1142,1,1,49,50]]],[64,1,1,50,51,[[1166,1,1,50,51]]],[65,19,19,51,70,[[1171,2,2,51,53],[1173,1,1,53,54],[1174,1,1,54,55],[1175,1,1,55,56],[1178,2,2,56,58],[1179,1,1,58,59],[1180,4,4,59,63],[1181,3,3,63,66],[1183,2,2,66,68],[1184,1,1,68,69],[1186,1,1,69,70]]]],[23345,23354,23415,23663,23735,23736,23884,23896,23897,24061,24441,24501,24518,24581,24583,24585,24653,24757,25203,25441,25592,25596,25658,25807,26212,26795,26996,27976,28326,28468,28524,28604,28872,28908,28964,28977,28986,29241,29331,29384,29393,29430,29735,29755,29796,29846,29898,29916,30067,30134,30691,30785,30787,30812,30830,30857,30894,30903,30909,30927,30932,30940,30943,30947,30948,30952,30978,30979,30994,31039]]],["held",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30802]]],["hold",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[23852,29420]]],["is",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30451]]],["must",[2,2,[[41,2,2,0,2,[[986,1,1,0,1],[995,1,1,1,2]]]],[25571,25952]]],["next",[3,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[43,2,2,1,3,[[1037,1,1,1,2],[1038,1,1,2,3]]]],[24253,27641,27690]]],["possessed",[2,2,[[43,2,2,0,2,[[1025,1,1,0,1],[1033,1,1,1,2]]]],[27183,27499]]],["retain",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27958]]],["took",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23872]]],["using",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30415]]],["was",[2,2,[[43,1,1,0,1,[[1029,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[27352,30113]]],["were",[2,2,[[43,2,2,0,2,[[1034,1,1,0,1],[1041,1,1,1,2]]]],[27534,27778]]],["with",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27894]]]]},{"k":"G2193","v":[["*",[148,139,[[39,48,42,0,42,[[929,4,2,0,2],[930,3,3,2,5],[933,4,3,5,8],[938,2,2,8,10],[939,4,3,10,13],[940,1,1,13,14],[941,1,1,14,15],[942,1,1,15,16],[944,1,1,16,17],[945,3,2,17,19],[946,5,4,19,23],[948,1,1,23,24],[950,2,2,24,26],[951,2,2,26,28],[952,5,5,28,33],[954,4,4,33,37],[955,4,4,37,41],[956,1,1,41,42]]],[40,15,14,42,56,[[962,3,3,42,45],[965,3,2,45,47],[968,1,1,47,48],[969,2,2,48,50],[970,4,4,50,54],[971,2,2,54,56]]],[41,28,27,56,83,[[973,1,1,56,57],[974,1,1,57,58],[976,2,2,58,60],[981,2,2,60,62],[982,2,1,62,63],[983,1,1,63,64],[984,2,2,64,66],[985,3,3,66,69],[987,2,2,69,71],[988,1,1,71,72],[989,1,1,72,73],[991,1,1,73,74],[992,1,1,74,75],[993,1,1,75,76],[994,3,3,76,79],[995,2,2,79,81],[996,2,2,81,83]]],[42,13,13,83,96,[[998,2,2,83,85],[1001,1,1,85,86],[1004,1,1,86,87],[1005,2,2,87,89],[1006,1,1,89,90],[1008,2,2,90,92],[1009,1,1,92,93],[1012,1,1,93,94],[1017,2,2,94,96]]],[43,21,21,96,117,[[1018,2,2,96,98],[1019,1,1,98,99],[1024,1,1,99,100],[1025,2,2,100,102],[1026,1,1,102,103],[1028,2,2,103,105],[1030,2,2,105,107],[1034,1,1,107,108],[1038,2,2,108,110],[1040,4,4,110,114],[1042,1,1,114,115],[1043,1,1,115,116],[1045,1,1,116,117]]],[44,2,2,117,119,[[1048,1,1,117,118],[1056,1,1,118,119]]],[45,6,6,119,125,[[1062,1,1,119,120],[1065,2,2,120,122],[1069,1,1,122,123],[1076,1,1,123,124],[1077,1,1,124,125]]],[46,3,3,125,128,[[1078,1,1,125,126],[1080,1,1,126,127],[1089,1,1,127,128]]],[52,1,1,128,129,[[1117,1,1,128,129]]],[53,1,1,129,130,[[1122,1,1,129,130]]],[57,3,3,130,133,[[1133,1,1,130,131],[1140,1,1,131,132],[1142,1,1,132,133]]],[58,2,1,133,134,[[1150,2,1,133,134]]],[60,1,1,134,135,[[1156,1,1,134,135]]],[61,1,1,135,136,[[1160,1,1,135,136]]],[65,3,3,136,139,[[1172,2,2,136,138],[1186,1,1,138,139]]]],[23161,23169,23178,23182,23184,23252,23259,23260,23428,23440,23471,23472,23482,23509,23572,23619,23700,23709,23717,23748,23749,23757,23761,23800,23898,23916,23953,23957,23978,23984,23988,23991,23996,24083,24090,24092,24112,24137,24174,24180,24193,24215,24417,24430,24452,24539,24557,24709,24736,24744,24779,24786,24788,24808,24859,24864,24973,24988,25092,25105,25328,25342,25378,25456,25509,25518,25526,25539,25553,25592,25596,25636,25659,25744,25822,25858,25880,25882,25915,25940,25979,26040,26041,26102,26105,26227,26390,26444,26458,26505,26615,26616,26668,26750,26920,26921,26931,26945,26984,27161,27186,27216,27254,27326,27329,27382,27409,27538,27669,27690,27746,27748,27755,27757,27817,27834,27922,28003,28217,28371,28438,28446,28534,28724,28784,28813,28856,29024,29668,29760,29976,30103,30146,30361,30498,30559,30803,30804,31043]]],["+",[50,48,[[39,14,13,0,13,[[930,1,1,0,1],[933,2,2,1,3],[938,2,2,3,5],[940,1,1,5,6],[942,1,1,6,7],[944,1,1,7,8],[945,3,2,8,10],[951,1,1,10,11],[952,1,1,11,12],[954,1,1,12,13]]],[40,5,4,13,17,[[962,1,1,13,14],[965,3,2,14,16],[968,1,1,16,17]]],[41,13,13,17,30,[[981,2,2,17,19],[984,1,1,19,20],[985,3,3,20,23],[987,1,1,23,24],[992,1,1,24,25],[993,1,1,25,26],[994,3,3,26,29],[996,1,1,29,30]]],[42,5,5,30,35,[[1001,1,1,30,31],[1005,1,1,31,32],[1006,1,1,32,33],[1009,1,1,33,34],[1012,1,1,34,35]]],[43,6,6,35,41,[[1038,1,1,35,36],[1040,3,3,36,39],[1042,1,1,39,40],[1043,1,1,40,41]]],[44,1,1,41,42,[[1048,1,1,41,42]]],[45,1,1,42,43,[[1065,1,1,42,43]]],[57,1,1,43,44,[[1133,1,1,43,44]]],[58,1,1,44,45,[[1150,1,1,44,45]]],[60,1,1,45,46,[[1156,1,1,45,46]]],[65,2,2,46,48,[[1172,2,2,46,48]]]],[23182,23259,23260,23428,23440,23509,23619,23700,23709,23717,23957,23991,24090,24417,24539,24557,24709,25328,25342,25518,25526,25539,25553,25596,25822,25858,25880,25882,25915,26040,26227,26458,26505,26668,26750,27690,27746,27748,27755,27817,27834,28003,28438,29976,30361,30498,30803,30804]]],["Till",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[53,1,1,1,2,[[1122,1,1,1,2]]]],[23252,29760]]],["Until",[3,2,[[39,2,1,0,1,[[946,2,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[23749,26984]]],["While",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26616]]],["as",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,2,2,1,3,[[1028,2,2,1,3]]]],[26041,27326,27329]]],["even",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24808]]],["till",[18,18,[[39,8,8,0,8,[[929,1,1,0,1],[930,1,1,1,2],[933,1,1,2,3],[941,1,1,3,4],[946,3,3,4,7],[950,1,1,7,8]]],[41,4,4,8,12,[[973,1,1,8,9],[984,1,1,9,10],[989,1,1,10,11],[991,1,1,11,12]]],[42,2,2,12,14,[[1017,2,2,12,14]]],[43,3,3,14,17,[[1025,1,1,14,15],[1038,1,1,15,16],[1045,1,1,16,17]]],[57,1,1,17,18,[[1142,1,1,17,18]]]],[23169,23178,23252,23572,23748,23757,23761,23916,24973,25509,25659,25744,26920,26921,27216,27669,27922,30146]]],["to",[17,16,[[39,5,5,0,5,[[929,1,1,0,1],[939,1,1,1,2],[952,2,2,2,4],[955,1,1,4,5]]],[40,2,2,5,7,[[969,1,1,5,6],[971,1,1,6,7]]],[41,3,2,7,9,[[982,2,1,7,8],[995,1,1,8,9]]],[42,1,1,9,10,[[998,1,1,9,10]]],[43,3,3,10,13,[[1025,1,1,10,11],[1026,1,1,11,12],[1040,1,1,12,13]]],[46,2,2,13,15,[[1078,1,1,13,14],[1089,1,1,14,15]]],[57,1,1,15,16,[[1140,1,1,15,16]]]],[23161,23482,23978,23988,24180,24744,24864,25378,25940,26102,27186,27254,27757,28813,29024,30103]]],["until",[18,18,[[39,7,7,0,7,[[929,1,1,0,1],[930,1,1,1,2],[939,2,2,2,4],[952,1,1,4,5],[954,1,1,5,6],[955,1,1,6,7]]],[40,2,2,7,9,[[970,1,1,7,8],[971,1,1,8,9]]],[41,3,3,9,12,[[987,1,1,9,10],[988,1,1,10,11],[995,1,1,11,12]]],[42,1,1,12,13,[[998,1,1,12,13]]],[43,1,1,13,14,[[1030,1,1,13,14]]],[45,1,1,14,15,[[1077,1,1,14,15]]],[52,1,1,15,16,[[1117,1,1,15,16]]],[61,1,1,16,17,[[1160,1,1,16,17]]],[65,1,1,17,18,[[1186,1,1,17,18]]]],[23161,23184,23471,23472,23996,24083,24193,24779,24859,25592,25636,25979,26105,27382,28784,29668,30559,31043]]],["unto",[31,31,[[39,11,11,0,11,[[929,1,1,0,1],[939,1,1,1,2],[948,1,1,2,3],[950,1,1,3,4],[951,1,1,4,5],[952,1,1,5,6],[954,2,2,6,8],[955,2,2,8,10],[956,1,1,10,11]]],[40,3,3,11,14,[[962,1,1,11,12],[969,1,1,12,13],[970,1,1,13,14]]],[41,4,4,14,18,[[974,1,1,14,15],[976,2,2,15,17],[983,1,1,17,18]]],[42,1,1,18,19,[[1004,1,1,18,19]]],[43,5,5,19,24,[[1018,2,2,19,21],[1024,1,1,21,22],[1030,1,1,22,23],[1034,1,1,23,24]]],[44,1,1,24,25,[[1056,1,1,24,25]]],[45,4,4,25,29,[[1062,1,1,25,26],[1065,1,1,26,27],[1069,1,1,27,28],[1076,1,1,28,29]]],[46,1,1,29,30,[[1080,1,1,29,30]]],[58,1,1,30,31,[[1150,1,1,30,31]]]],[23161,23482,23800,23898,23953,23984,24092,24112,24137,24174,24215,24430,24736,24788,24988,25092,25105,25456,26390,26931,26945,27161,27409,27538,28217,28371,28446,28534,28724,28856,30361]]],["while",[4,4,[[40,2,2,0,2,[[962,1,1,0,1],[970,1,1,1,2]]],[42,2,2,2,4,[[1005,1,1,2,3],[1008,1,1,3,4]]]],[24452,24786,26444,26615]]]]},{"k":"G2194","v":[["Zabulon",[3,3,[[39,2,2,0,2,[[932,2,2,0,2]]],[65,1,1,2,3,[[1173,1,1,2,3]]]],[23222,23224,30818]]]]},{"k":"G2195","v":[["*",[3,3,[[41,3,3,0,3,[[991,3,3,0,3]]]],[25733,25736,25739]]],["+",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25733]]],["Zacchaeus",[2,2,[[41,2,2,0,2,[[991,2,2,0,2]]]],[25736,25739]]]]},{"k":"G2196","v":[["Zara",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23147]]]]},{"k":"G2197","v":[["*",[12,11,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,11,10,1,11,[[973,8,8,1,9],[975,2,1,9,10],[983,1,1,10,11]]]],[23953,24898,24905,24906,24911,24914,24933,24952,24960,25027,25456]]],["Zacharias",[11,11,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,10,10,1,11,[[973,8,8,1,9],[975,1,1,9,10],[983,1,1,10,11]]]],[23953,24898,24905,24906,24911,24914,24933,24952,24960,25027,25456]]],["in",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25027]]]]},{"k":"G2198","v":[["*",[142,127,[[39,6,6,0,6,[[932,1,1,0,1],[937,1,1,1,2],[944,1,1,2,3],[950,1,1,3,4],[954,1,1,4,5],[955,1,1,5,6]]],[40,3,3,6,9,[[961,1,1,6,7],[968,1,1,7,8],[972,1,1,8,9]]],[41,8,7,9,16,[[974,1,1,9,10],[976,1,1,10,11],[982,1,1,11,12],[987,1,1,12,13],[992,2,1,13,14],[996,2,2,14,16]]],[42,18,14,16,30,[[1000,5,5,16,21],[1001,1,1,21,22],[1002,7,4,22,26],[1003,1,1,26,27],[1007,2,2,27,29],[1010,2,1,29,30]]],[43,12,12,30,42,[[1018,1,1,30,31],[1024,1,1,31,32],[1026,1,1,32,33],[1027,1,1,33,34],[1031,1,1,34,35],[1034,1,1,35,36],[1037,1,1,36,37],[1039,1,1,37,38],[1042,2,2,38,40],[1043,1,1,40,41],[1045,1,1,41,42]]],[44,22,18,42,60,[[1046,1,1,42,43],[1051,5,4,43,47],[1052,4,4,47,51],[1053,3,2,51,53],[1054,1,1,53,54],[1055,1,1,54,55],[1057,1,1,55,56],[1059,6,4,56,60]]],[45,3,3,60,63,[[1068,1,1,60,61],[1070,1,1,61,62],[1076,1,1,62,63]]],[46,9,7,63,70,[[1078,1,1,63,64],[1080,1,1,64,65],[1081,1,1,65,66],[1082,2,1,66,67],[1083,2,2,67,69],[1090,2,1,69,70]]],[47,9,6,70,76,[[1092,6,3,70,73],[1093,2,2,73,75],[1095,1,1,75,76]]],[49,2,2,76,78,[[1103,2,2,76,78]]],[50,2,2,78,80,[[1108,1,1,78,79],[1109,1,1,79,80]]],[51,5,5,80,85,[[1111,1,1,80,81],[1113,1,1,81,82],[1114,2,2,82,84],[1115,1,1,84,85]]],[53,4,4,85,89,[[1121,1,1,85,86],[1122,1,1,86,87],[1123,1,1,87,88],[1124,1,1,88,89]]],[54,2,2,89,91,[[1127,1,1,89,90],[1128,1,1,90,91]]],[55,1,1,91,92,[[1130,1,1,91,92]]],[57,12,12,92,104,[[1134,1,1,92,93],[1135,1,1,93,94],[1136,1,1,94,95],[1139,2,2,95,97],[1141,2,2,97,99],[1142,3,3,99,102],[1144,2,2,102,104]]],[58,1,1,104,105,[[1149,1,1,104,105]]],[59,7,7,105,112,[[1151,2,2,105,107],[1152,3,3,107,110],[1154,2,2,110,112]]],[61,1,1,112,113,[[1162,1,1,112,113]]],[65,15,14,113,127,[[1167,2,1,113,114],[1168,1,1,114,115],[1169,1,1,115,116],[1170,2,2,116,118],[1171,1,1,118,119],[1173,2,2,119,121],[1176,1,1,121,122],[1179,1,1,122,123],[1181,1,1,123,124],[1182,1,1,124,125],[1185,1,1,125,126],[1186,1,1,126,127]]]],[23213,23397,23688,23904,24117,24192,24387,24700,24884,25009,25067,25391,25601,25817,25996,26014,26166,26167,26206,26207,26209,26235,26308,26314,26315,26326,26366,26548,26549,26687,26926,27154,27257,27301,27429,27551,27638,27726,27815,27820,27828,27903,27947,28070,28078,28079,28081,28092,28093,28094,28100,28128,28129,28181,28193,28246,28287,28288,28289,28291,28526,28554,28763,28808,28844,28870,28892,28907,28914,29047,29095,29100,29101,29113,29114,29187,29382,29383,29514,29524,29569,29598,29618,29620,29631,29746,29757,29769,29805,29865,29871,29920,29992,30007,30026,30072,30089,30119,30122,30153,30164,30171,30221,30234,30352,30377,30397,30403,30404,30423,30451,30452,30612,30715,30725,30747,30777,30778,30793,30812,30827,30867,30922,30953,30957,31037,31042]]],["alive",[15,15,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[972,1,1,1,2]]],[41,1,1,2,3,[[996,1,1,2,3]]],[43,4,4,3,7,[[1018,1,1,3,4],[1026,1,1,4,5],[1037,1,1,5,6],[1042,1,1,6,7]]],[44,3,3,7,10,[[1051,2,2,7,9],[1052,1,1,9,10]]],[51,2,2,10,12,[[1114,2,2,10,12]]],[65,3,3,12,15,[[1167,1,1,12,13],[1168,1,1,13,14],[1185,1,1,14,15]]]],[24192,24884,26014,26926,27257,27638,27815,28079,28081,28100,29618,29620,30715,30725,31037]]],["life",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28808]]],["lifetime",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29992]]],["live",[54,46,[[39,2,2,0,2,[[932,1,1,0,1],[937,1,1,1,2]]],[40,1,1,2,3,[[961,1,1,2,3]]],[41,3,3,3,6,[[976,1,1,3,4],[982,1,1,4,5],[992,1,1,5,6]]],[42,8,6,6,12,[[1001,1,1,6,7],[1002,4,3,7,10],[1007,1,1,10,11],[1010,2,1,11,12]]],[43,4,4,12,16,[[1034,1,1,12,13],[1039,1,1,13,14],[1042,1,1,14,15],[1045,1,1,15,16]]],[44,10,7,16,23,[[1046,1,1,16,17],[1051,1,1,17,18],[1053,3,2,18,20],[1055,1,1,20,21],[1059,4,2,21,23]]],[45,1,1,23,24,[[1070,1,1,23,24]]],[46,5,4,24,28,[[1081,1,1,24,25],[1082,2,1,25,26],[1083,1,1,26,27],[1090,1,1,27,28]]],[47,7,5,28,33,[[1092,4,2,28,30],[1093,2,2,30,32],[1095,1,1,32,33]]],[49,2,2,33,35,[[1103,2,2,33,35]]],[51,2,2,35,37,[[1113,1,1,35,36],[1115,1,1,36,37]]],[54,1,1,37,38,[[1127,1,1,37,38]]],[55,1,1,38,39,[[1130,1,1,38,39]]],[57,2,2,39,41,[[1142,1,1,39,40],[1144,1,1,40,41]]],[58,1,1,41,42,[[1149,1,1,41,42]]],[59,2,2,42,44,[[1152,1,1,42,43],[1154,1,1,43,44]]],[61,1,1,44,45,[[1162,1,1,44,45]]],[65,1,1,45,46,[[1179,1,1,45,46]]]],[23213,23397,24387,25067,25391,25817,26235,26308,26314,26315,26548,26687,27551,27726,27820,27903,27947,28070,28128,28129,28193,28288,28291,28554,28870,28892,28907,29047,29100,29101,29113,29114,29187,29382,29383,29598,29631,29865,29920,30171,30221,30352,30423,30452,30612,30922]]],["lived",[4,4,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]],[65,1,1,3,4,[[1186,1,1,3,4]]]],[25009,27828,29524,31042]]],["lively",[3,3,[[43,1,1,0,1,[[1024,1,1,0,1]]],[59,2,2,1,3,[[1151,1,1,1,2],[1152,1,1,2,3]]]],[27154,30377,30404]]],["livest",[2,2,[[47,1,1,0,1,[[1092,1,1,0,1]]],[65,1,1,1,2,[[1169,1,1,1,2]]]],[29095,30747]]],["liveth",[24,23,[[42,4,4,0,4,[[1000,3,3,0,3],[1007,1,1,3,4]]],[44,6,5,4,9,[[1051,2,1,4,5],[1052,3,3,5,8],[1059,1,1,8,9]]],[45,1,1,9,10,[[1068,1,1,9,10]]],[46,1,1,10,11,[[1090,1,1,10,11]]],[47,1,1,11,12,[[1092,1,1,11,12]]],[53,1,1,12,13,[[1123,1,1,12,13]]],[57,3,3,13,16,[[1139,2,2,13,15],[1141,1,1,15,16]]],[59,1,1,16,17,[[1151,1,1,16,17]]],[65,6,6,17,23,[[1167,1,1,17,18],[1170,2,2,18,20],[1171,1,1,20,21],[1176,1,1,21,22],[1181,1,1,22,23]]]],[26206,26207,26209,26549,28078,28092,28093,28094,28287,28526,29047,29101,29769,30072,30089,30122,30397,30715,30777,30778,30793,30867,30953]]],["living",[34,34,[[39,3,3,0,3,[[944,1,1,0,1],[950,1,1,1,2],[954,1,1,2,3]]],[40,1,1,3,4,[[968,1,1,3,4]]],[41,3,3,4,7,[[987,1,1,4,5],[992,1,1,5,6],[996,1,1,6,7]]],[42,6,6,7,13,[[1000,2,2,7,9],[1002,3,3,9,12],[1003,1,1,12,13]]],[43,1,1,13,14,[[1031,1,1,13,14]]],[44,3,3,14,17,[[1054,1,1,14,15],[1057,1,1,15,16],[1059,1,1,16,17]]],[45,1,1,17,18,[[1076,1,1,17,18]]],[46,2,2,18,20,[[1080,1,1,18,19],[1083,1,1,19,20]]],[50,1,1,20,21,[[1108,1,1,20,21]]],[51,1,1,21,22,[[1111,1,1,21,22]]],[53,3,3,22,25,[[1121,1,1,22,23],[1122,1,1,23,24],[1124,1,1,24,25]]],[57,5,5,25,30,[[1135,1,1,25,26],[1141,1,1,26,27],[1142,2,2,27,29],[1144,1,1,29,30]]],[59,1,1,30,31,[[1152,1,1,30,31]]],[65,3,3,31,34,[[1173,2,2,31,33],[1182,1,1,33,34]]]],[23688,23904,24117,24700,25601,25817,25996,26166,26167,26308,26314,26326,26366,27429,28181,28246,28289,28763,28844,28914,29514,29569,29746,29757,29805,30007,30119,30153,30164,30234,30403,30812,30827,30957]]],["quick",[4,4,[[43,1,1,0,1,[[1027,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]],[57,1,1,2,3,[[1136,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]]],[27301,29871,30026,30451]]]]},{"k":"G2199","v":[["*",[12,11,[[39,6,5,0,5,[[932,2,1,0,1],[938,1,1,1,2],[948,1,1,2,3],[954,1,1,3,4],[955,1,1,4,5]]],[40,4,4,5,9,[[957,2,2,5,7],[959,1,1,7,8],[966,1,1,8,9]]],[41,1,1,9,10,[[977,1,1,9,10]]],[42,1,1,10,11,[[1017,1,1,10,11]]]],[23230,23419,23812,24091,24185,24234,24235,24305,24623,25117,26900]]],["Zebedee",[10,9,[[39,4,3,0,3,[[932,2,1,0,1],[938,1,1,1,2],[954,1,1,2,3]]],[40,4,4,3,7,[[957,2,2,3,5],[959,1,1,5,6],[966,1,1,6,7]]],[41,1,1,7,8,[[977,1,1,7,8]]],[42,1,1,8,9,[[1017,1,1,8,9]]]],[23230,23419,24091,24234,24235,24305,24623,25117,26900]]],["Zebedee's",[2,2,[[39,2,2,0,2,[[948,1,1,0,1],[955,1,1,1,2]]]],[23812,24185]]]]},{"k":"G2200","v":[["hot",[3,2,[[65,3,2,0,2,[[1169,3,2,0,2]]]],[30761,30762]]]]},{"k":"G2201","v":[["*",[2,2,[[41,2,2,0,2,[[974,1,1,0,1],[986,1,1,1,2]]]],[24997,25572]]],["pair",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24997]]],["yoke",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25572]]]]},{"k":"G2202","v":[["bands",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27895]]]]},{"k":"G2203","v":[["Jupiter",[2,2,[[43,2,2,0,2,[[1031,2,2,0,2]]]],[27426,27427]]]]},{"k":"G2204","v":[["fervent",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]]],[27582,28256]]]]},{"k":"G2205","v":[["*",[17,17,[[42,1,1,0,1,[[998,1,1,0,1]]],[43,2,2,1,3,[[1022,1,1,1,2],[1030,1,1,2,3]]],[44,2,2,3,5,[[1055,1,1,3,4],[1058,1,1,4,5]]],[45,1,1,5,6,[[1064,1,1,5,6]]],[46,5,5,6,11,[[1084,2,2,6,8],[1086,1,1,8,9],[1088,1,1,9,10],[1089,1,1,10,11]]],[47,1,1,11,12,[[1095,1,1,11,12]]],[49,1,1,12,13,[[1105,1,1,12,13]]],[50,1,1,13,14,[[1110,1,1,13,14]]],[57,1,1,14,15,[[1142,1,1,14,15]]],[58,2,2,15,17,[[1148,2,2,15,17]]]],[26112,27076,27407,28190,28279,28413,28923,28927,28958,28991,29042,29182,29427,29555,30160,30333,30335]]],["emulations",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29182]]],["envy",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27407]]],["envying",[4,4,[[44,1,1,0,1,[[1058,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]],[58,2,2,2,4,[[1148,2,2,2,4]]]],[28279,28413,30333,30335]]],["envyings",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29042]]],["indignation",[2,2,[[43,1,1,0,1,[[1022,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[27076,30160]]],["jealousy",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28991]]],["mind",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28923]]],["zeal",[6,6,[[42,1,1,0,1,[[998,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]],[46,2,2,2,4,[[1084,1,1,2,3],[1086,1,1,3,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]],[50,1,1,5,6,[[1110,1,1,5,6]]]],[26112,28190,28927,28958,29427,29555]]]]},{"k":"G2206","v":[["*",[12,11,[[43,2,2,0,2,[[1024,1,1,0,1],[1034,1,1,1,2]]],[45,4,4,2,6,[[1073,1,1,2,3],[1074,1,1,3,4],[1075,2,2,4,6]]],[46,1,1,6,7,[[1088,1,1,6,7]]],[47,3,2,7,9,[[1094,3,2,7,9]]],[58,1,1,9,10,[[1149,1,1,9,10]]],[65,1,1,10,11,[[1169,1,1,10,11]]]],[27125,27528,28665,28669,28679,28717,28991,29148,29149,30339,30765]]],["+",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27528]]],["affect",[2,1,[[47,2,1,0,1,[[1094,2,1,0,1]]]],[29148]]],["affected",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29149]]],["covet",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28717]]],["desire",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28679]]],["earnestly",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28665]]],["envieth",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28669]]],["envy",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27125]]],["have",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30339]]],["jealous",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28991]]],["zealous",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30765]]]]},{"k":"G2207","v":[["zealous",[5,5,[[43,2,2,0,2,[[1038,1,1,0,1],[1039,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]],[47,1,1,3,4,[[1091,1,1,3,4]]],[55,1,1,4,5,[[1130,1,1,4,5]]]],[27684,27707,28690,29071,29922]]]]},{"k":"G2208","v":[["Zelotes",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]]],[25161,26936]]]]},{"k":"G2209","v":[["*",[4,4,[[43,2,2,0,2,[[1044,2,2,0,2]]],[49,2,2,2,4,[[1105,2,2,2,4]]]],[27865,27876,29428,29429]]],["damage",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27865]]],["loss",[3,3,[[43,1,1,0,1,[[1044,1,1,0,1]]],[49,2,2,1,3,[[1105,2,2,1,3]]]],[27876,29428,29429]]]]},{"k":"G2210","v":[["*",[6,6,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[45,1,1,3,4,[[1064,1,1,3,4]]],[46,1,1,4,5,[[1084,1,1,4,5]]],[49,1,1,5,6,[[1105,1,1,5,6]]]],[23698,24536,25326,28425,28925,29429]]],["away",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25326]]],["damage",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28925]]],["lose",[2,2,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]]],[23698,24536]]],["loss",[2,2,[[45,1,1,0,1,[[1064,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[28425,29429]]]]},{"k":"G2211","v":[["+",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29936]]]]},{"k":"G2212","v":[["*",[119,116,[[39,14,14,0,14,[[930,2,2,0,2],[934,1,1,2,3],[935,2,2,3,5],[940,3,3,5,8],[941,1,1,8,9],[946,1,1,9,10],[949,1,1,10,11],[954,2,2,11,13],[956,1,1,13,14]]],[40,9,9,14,23,[[957,1,1,14,15],[959,1,1,15,16],[964,1,1,16,17],[967,1,1,17,18],[968,1,1,18,19],[970,3,3,19,22],[972,1,1,22,23]]],[41,27,27,23,50,[[974,3,3,23,26],[976,1,1,26,27],[977,1,1,27,28],[978,1,1,28,29],[981,1,1,29,30],[983,5,5,30,35],[984,3,3,35,38],[985,3,3,38,41],[987,1,1,41,42],[989,1,1,42,43],[991,3,3,43,46],[992,1,1,46,47],[994,2,2,47,49],[996,1,1,49,50]]],[42,35,33,50,83,[[997,1,1,50,51],[1000,2,2,51,53],[1001,4,4,53,57],[1002,2,2,57,59],[1003,11,10,59,69],[1004,5,4,69,73],[1006,1,1,73,74],[1007,2,2,74,76],[1009,1,1,76,77],[1012,1,1,77,78],[1014,3,3,78,81],[1015,1,1,81,82],[1016,1,1,82,83]]],[43,10,10,83,93,[[1026,1,1,83,84],[1027,2,2,84,86],[1030,2,2,86,88],[1033,1,1,88,89],[1034,2,2,89,91],[1038,1,1,91,92],[1044,1,1,92,93]]],[44,4,4,93,97,[[1047,1,1,93,94],[1055,2,2,94,96],[1056,1,1,96,97]]],[45,8,7,97,104,[[1062,1,1,97,98],[1065,1,1,98,99],[1068,2,1,99,100],[1071,2,2,100,102],[1074,1,1,102,103],[1075,1,1,103,104]]],[46,2,2,104,106,[[1089,1,1,104,105],[1090,1,1,105,106]]],[47,2,2,106,108,[[1091,1,1,106,107],[1092,1,1,107,108]]],[49,1,1,108,109,[[1104,1,1,108,109]]],[50,1,1,109,110,[[1109,1,1,109,110]]],[51,1,1,110,111,[[1112,1,1,110,111]]],[54,1,1,111,112,[[1125,1,1,111,112]]],[57,1,1,112,113,[[1140,1,1,112,113]]],[59,2,2,113,115,[[1153,1,1,113,114],[1155,1,1,114,115]]],[65,1,1,115,116,[[1175,1,1,115,116]]]],[23182,23189,23315,23323,23324,23532,23535,23536,23584,23739,23872,24070,24113,24200,24252,24320,24511,24658,24685,24755,24765,24809,24879,25018,25021,25022,25105,25125,25165,25310,25414,25415,25421,25429,25459,25488,25490,25507,25524,25525,25542,25596,25684,25734,25741,25778,25798,25866,25870,25996,26082,26179,26183,26226,26228,26240,26254,26281,26283,26329,26332,26339,26346,26347,26348,26353,26358,26362,26364,26402,26418,26421,26431,26520,26531,26579,26663,26745,26789,26792,26793,26837,26882,27227,27278,27280,27370,27373,27493,27528,27550,27695,27885,27969,28191,28208,28212,28385,28435,28514,28591,28600,28670,28690,29036,29046,29067,29098,29412,29518,29576,29826,30099,30435,30473,30846]]],["+",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29826]]],["about",[5,5,[[42,2,2,0,2,[[1003,2,2,0,2]]],[43,2,2,2,4,[[1038,1,1,2,3],[1044,1,1,3,4]]],[44,1,1,4,5,[[1055,1,1,4,5]]]],[26347,26348,27695,27885,28191]]],["after",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28385]]],["desired",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25310]]],["desiring",[2,2,[[39,2,2,0,2,[[940,2,2,0,2]]]],[23535,23536]]],["endeavoured",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27493]]],["enquire",[2,2,[[42,1,1,0,1,[[1012,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[26745,27227]]],["for",[3,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[44,1,1,2,3,[[1047,1,1,2,3]]]],[24252,26281,27969]]],["required",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]]],[25507,28435]]],["seek",[45,44,[[39,4,4,0,4,[[930,1,1,0,1],[934,1,1,1,2],[935,1,1,2,3],[956,1,1,3,4]]],[40,2,2,4,6,[[959,1,1,4,5],[972,1,1,5,6]]],[41,8,8,6,14,[[983,1,1,6,7],[984,2,2,7,9],[985,1,1,9,10],[987,1,1,10,11],[989,1,1,11,12],[991,1,1,12,13],[996,1,1,13,14]]],[42,15,15,14,29,[[997,1,1,14,15],[1001,2,2,15,17],[1002,1,1,17,18],[1003,3,3,18,21],[1004,4,4,21,25],[1009,1,1,25,26],[1014,3,3,26,29]]],[43,3,3,29,32,[[1027,2,2,29,31],[1034,1,1,31,32]]],[44,1,1,32,33,[[1056,1,1,32,33]]],[45,4,3,33,36,[[1068,2,1,33,34],[1071,1,1,34,35],[1075,1,1,35,36]]],[46,2,2,36,38,[[1089,1,1,36,37],[1090,1,1,37,38]]],[47,2,2,38,40,[[1091,1,1,38,39],[1092,1,1,39,40]]],[49,1,1,40,41,[[1104,1,1,40,41]]],[50,1,1,41,42,[[1109,1,1,41,42]]],[59,1,1,42,43,[[1153,1,1,42,43]]],[65,1,1,43,44,[[1175,1,1,43,44]]]],[23182,23315,23323,24200,24320,24879,25414,25488,25490,25542,25596,25684,25741,25996,26082,26240,26254,26283,26353,26362,26364,26402,26418,26421,26431,26663,26789,26792,26793,27278,27280,27550,28212,28514,28591,28690,29036,29046,29067,29098,29412,29518,30435,30846]]],["seekest",[2,2,[[42,2,2,0,2,[[1000,1,1,0,1],[1016,1,1,1,2]]]],[26183,26882]]],["seeketh",[9,8,[[39,2,2,0,2,[[935,1,1,0,1],[946,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[42,5,4,3,7,[[1000,1,1,3,4],[1003,3,2,4,6],[1004,1,1,6,7]]],[45,1,1,7,8,[[1074,1,1,7,8]]]],[23324,23739,25415,26179,26332,26346,26431,28670]]],["seeking",[11,11,[[39,2,2,0,2,[[940,1,1,0,1],[941,1,1,1,2]]],[40,1,1,2,3,[[964,1,1,2,3]]],[41,4,4,3,7,[[974,1,1,3,4],[983,2,2,4,6],[985,1,1,6,7]]],[43,2,2,7,9,[[1030,2,2,7,9]]],[45,1,1,9,10,[[1071,1,1,9,10]]],[59,1,1,10,11,[[1155,1,1,10,11]]]],[23532,23584,24511,25018,25429,25459,25525,27370,27373,28600,30473]]],["sought",[34,34,[[39,4,4,0,4,[[930,1,1,0,1],[949,1,1,1,2],[954,2,2,2,4]]],[40,5,5,4,9,[[967,1,1,4,5],[968,1,1,5,6],[970,3,3,6,9]]],[41,12,12,9,21,[[974,2,2,9,11],[976,1,1,11,12],[977,1,1,12,13],[978,1,1,13,14],[983,1,1,14,15],[985,1,1,15,16],[991,2,2,16,18],[992,1,1,18,19],[994,2,2,19,21]]],[42,9,9,21,30,[[1001,2,2,21,23],[1003,3,3,23,26],[1006,1,1,26,27],[1007,2,2,27,29],[1015,1,1,29,30]]],[43,1,1,30,31,[[1034,1,1,30,31]]],[44,1,1,31,32,[[1055,1,1,31,32]]],[51,1,1,32,33,[[1112,1,1,32,33]]],[57,1,1,33,34,[[1140,1,1,33,34]]]],[23189,23872,24070,24113,24658,24685,24755,24765,24809,25021,25022,25105,25125,25165,25421,25524,25734,25778,25798,25866,25870,26226,26228,26329,26339,26358,26520,26531,26579,26837,27528,28208,29576,30099]]]]},{"k":"G2213","v":[["*",[5,5,[[43,5,5,0,5,[[1032,1,1,0,1],[1035,1,1,1,2],[1040,1,1,2,3],[1042,1,1,3,4],[1043,1,1,4,5]]]],[27444,27572,27763,27815,27826]]],["question",[2,2,[[43,2,2,0,2,[[1032,1,1,0,1],[1035,1,1,1,2]]]],[27444,27572]]],["questions",[3,3,[[43,3,3,0,3,[[1040,1,1,0,1],[1042,1,1,1,2],[1043,1,1,2,3]]]],[27763,27815,27826]]]]},{"k":"G2214","v":[["*",[6,6,[[42,1,1,0,1,[[999,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]],[53,2,2,2,4,[[1119,1,1,2,3],[1124,1,1,3,4]]],[54,1,1,4,5,[[1126,1,1,4,5]]],[55,1,1,5,6,[[1131,1,1,5,6]]]],[26145,27816,29700,29792,29850,29932]]],["+",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27816]]],["question",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26145]]],["questions",[4,4,[[53,2,2,0,2,[[1119,1,1,0,1],[1124,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[55,1,1,3,4,[[1131,1,1,3,4]]]],[29700,29792,29850,29932]]]]},{"k":"G2215","v":[["tares",[8,8,[[39,8,8,0,8,[[941,8,8,0,8]]]],[23564,23565,23566,23568,23569,23575,23577,23579]]]]},{"k":"G2216","v":[["Zorobabel",[3,3,[[39,2,2,0,2,[[929,2,2,0,2]]],[41,1,1,2,3,[[975,1,1,2,3]]]],[23156,23157,25052]]]]},{"k":"G2217","v":[["*",[4,4,[[60,2,2,0,2,[[1157,2,2,0,2]]],[64,2,2,2,4,[[1166,2,2,2,4]]]],[30504,30517,30678,30685]]],["blackness",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30685]]],["darkness",[2,2,[[60,1,1,0,1,[[1157,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[30504,30678]]],["mist",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30517]]]]},{"k":"G2218","v":[["*",[6,6,[[39,2,2,0,2,[[939,2,2,0,2]]],[43,1,1,2,3,[[1032,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]],[53,1,1,4,5,[[1124,1,1,4,5]]],[65,1,1,5,6,[[1172,1,1,5,6]]]],[23488,23489,27452,29163,29789,30798]]],["balances",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30798]]],["yoke",[5,5,[[39,2,2,0,2,[[939,2,2,0,2]]],[43,1,1,2,3,[[1032,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]],[53,1,1,4,5,[[1124,1,1,4,5]]]],[23488,23489,27452,29163,29789]]]]},{"k":"G2219","v":[["leaven",[13,11,[[39,4,4,0,4,[[941,1,1,0,1],[944,3,3,1,4]]],[40,2,1,4,5,[[964,2,1,4,5]]],[41,2,2,5,7,[[984,1,1,5,6],[985,1,1,6,7]]],[45,4,3,7,10,[[1066,4,3,7,10]]],[47,1,1,10,11,[[1095,1,1,10,11]]]],[23572,23678,23683,23684,24515,25460,25539,28460,28461,28462,29171]]]]},{"k":"G2220","v":[["*",[4,4,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[45,1,1,2,3,[[1066,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]]],[23572,25539,28460,29171]]],["leavened",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23572,25539]]],["leaveneth",[2,2,[[45,1,1,0,1,[[1066,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]]],[28460,29171]]]]},{"k":"G2221","v":[["*",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[25117,29853]]],["captive",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29853]]],["catch",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25117]]]]},{"k":"G2222","v":[["*",[134,126,[[39,7,7,0,7,[[935,1,1,0,1],[946,2,2,1,3],[947,3,3,3,6],[953,1,1,6,7]]],[40,4,4,7,11,[[965,2,2,7,9],[966,2,2,9,11]]],[41,6,6,11,17,[[973,1,1,11,12],[982,1,1,12,13],[984,1,1,13,14],[988,1,1,14,15],[990,2,2,15,17]]],[42,36,32,17,49,[[997,2,1,17,18],[999,4,3,18,21],[1000,2,2,21,23],[1001,7,5,23,28],[1002,11,11,28,39],[1004,1,1,39,40],[1006,2,2,40,42],[1007,1,1,42,43],[1008,2,2,43,45],[1010,1,1,45,46],[1013,2,2,46,48],[1016,1,1,48,49]]],[43,8,8,49,57,[[1019,1,1,49,50],[1020,1,1,50,51],[1022,1,1,51,52],[1025,1,1,52,53],[1028,1,1,53,54],[1030,2,2,54,56],[1034,1,1,56,57]]],[44,14,14,57,71,[[1047,1,1,57,58],[1050,4,4,58,62],[1051,3,3,62,65],[1052,1,1,65,66],[1053,4,4,66,70],[1056,1,1,70,71]]],[45,2,2,71,73,[[1064,1,1,71,72],[1076,1,1,72,73]]],[46,6,5,73,78,[[1079,2,1,73,74],[1081,3,3,74,77],[1082,1,1,77,78]]],[47,1,1,78,79,[[1096,1,1,78,79]]],[48,1,1,79,80,[[1100,1,1,79,80]]],[49,3,3,80,83,[[1103,1,1,80,81],[1104,1,1,81,82],[1106,1,1,82,83]]],[50,2,2,83,85,[[1109,2,2,83,85]]],[53,4,4,85,89,[[1119,1,1,85,86],[1122,1,1,86,87],[1124,2,2,87,89]]],[54,2,2,89,91,[[1125,2,2,89,91]]],[55,2,2,91,93,[[1129,1,1,91,92],[1131,1,1,92,93]]],[57,2,2,93,95,[[1139,2,2,93,95]]],[58,2,2,95,97,[[1146,1,1,95,96],[1149,1,1,96,97]]],[59,2,2,97,99,[[1153,2,2,97,99]]],[60,1,1,99,100,[[1156,1,1,99,100]]],[61,13,10,100,110,[[1159,3,2,100,102],[1160,1,1,102,103],[1161,2,2,103,105],[1163,7,5,105,110]]],[64,1,1,110,111,[[1166,1,1,110,111]]],[65,15,15,111,126,[[1168,2,2,111,113],[1169,1,1,113,114],[1177,1,1,114,115],[1179,1,1,115,116],[1183,1,1,116,117],[1186,2,2,117,119],[1187,2,2,119,121],[1188,5,5,121,126]]]],[23330,23735,23736,23778,23779,23791,24054,24581,24583,24605,24618,24968,25388,25474,25645,25706,25718,26048,26135,26136,26156,26170,26192,26234,26236,26239,26249,26250,26284,26290,26292,26297,26304,26305,26308,26310,26311,26320,26325,26393,26491,26509,26548,26605,26630,26674,26761,26762,26898,26977,27011,27079,27209,27325,27408,27410,27548,27969,28057,28064,28065,28068,28072,28090,28091,28101,28118,28122,28126,28154,28224,28432,28737,28840,28869,28870,28871,28881,29196,29290,29381,29407,29445,29520,29521,29712,29755,29800,29807,29810,29819,29894,29930,30067,30080,30278,30351,30431,30434,30482,30541,30542,30575,30593,30594,30635,30636,30637,30640,30644,30693,30724,30727,30751,30883,30916,30983,31050,31053,31059,31080,31081,31082,31094,31097,31099]]],["+",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29819]]],["life",[132,124,[[39,7,7,0,7,[[935,1,1,0,1],[946,2,2,1,3],[947,3,3,3,6],[953,1,1,6,7]]],[40,4,4,7,11,[[965,2,2,7,9],[966,2,2,9,11]]],[41,5,5,11,16,[[973,1,1,11,12],[982,1,1,12,13],[984,1,1,13,14],[990,2,2,14,16]]],[42,36,32,16,48,[[997,2,1,16,17],[999,4,3,17,20],[1000,2,2,20,22],[1001,7,5,22,27],[1002,11,11,27,38],[1004,1,1,38,39],[1006,2,2,39,41],[1007,1,1,41,42],[1008,2,2,42,44],[1010,1,1,44,45],[1013,2,2,45,47],[1016,1,1,47,48]]],[43,8,8,48,56,[[1019,1,1,48,49],[1020,1,1,49,50],[1022,1,1,50,51],[1025,1,1,51,52],[1028,1,1,52,53],[1030,2,2,53,55],[1034,1,1,55,56]]],[44,14,14,56,70,[[1047,1,1,56,57],[1050,4,4,57,61],[1051,3,3,61,64],[1052,1,1,64,65],[1053,4,4,65,69],[1056,1,1,69,70]]],[45,2,2,70,72,[[1064,1,1,70,71],[1076,1,1,71,72]]],[46,6,5,72,77,[[1079,2,1,72,73],[1081,3,3,73,76],[1082,1,1,76,77]]],[47,1,1,77,78,[[1096,1,1,77,78]]],[48,1,1,78,79,[[1100,1,1,78,79]]],[49,3,3,79,82,[[1103,1,1,79,80],[1104,1,1,80,81],[1106,1,1,81,82]]],[50,2,2,82,84,[[1109,2,2,82,84]]],[53,4,4,84,88,[[1119,1,1,84,85],[1122,1,1,85,86],[1124,2,2,86,88]]],[54,1,1,88,89,[[1125,1,1,88,89]]],[55,2,2,89,91,[[1129,1,1,89,90],[1131,1,1,90,91]]],[57,2,2,91,93,[[1139,2,2,91,93]]],[58,2,2,93,95,[[1146,1,1,93,94],[1149,1,1,94,95]]],[59,2,2,95,97,[[1153,2,2,95,97]]],[60,1,1,97,98,[[1156,1,1,97,98]]],[61,13,10,98,108,[[1159,3,2,98,100],[1160,1,1,100,101],[1161,2,2,101,103],[1163,7,5,103,108]]],[64,1,1,108,109,[[1166,1,1,108,109]]],[65,15,15,109,124,[[1168,2,2,109,111],[1169,1,1,111,112],[1177,1,1,112,113],[1179,1,1,113,114],[1183,1,1,114,115],[1186,2,2,115,117],[1187,2,2,117,119],[1188,5,5,119,124]]]],[23330,23735,23736,23778,23779,23791,24054,24581,24583,24605,24618,24968,25388,25474,25706,25718,26048,26135,26136,26156,26170,26192,26234,26236,26239,26249,26250,26284,26290,26292,26297,26304,26305,26308,26310,26311,26320,26325,26393,26491,26509,26548,26605,26630,26674,26761,26762,26898,26977,27011,27079,27209,27325,27408,27410,27548,27969,28057,28064,28065,28068,28072,28090,28091,28101,28118,28122,28126,28154,28224,28432,28737,28840,28869,28870,28871,28881,29196,29290,29381,29407,29445,29520,29521,29712,29755,29800,29807,29810,29894,29930,30067,30080,30278,30351,30431,30434,30482,30541,30542,30575,30593,30594,30635,30636,30637,30640,30644,30693,30724,30727,30751,30883,30916,30983,31050,31053,31059,31080,31081,31082,31094,31097,31099]]],["lifetime",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25645]]]]},{"k":"G2223","v":[["*",[8,7,[[39,2,2,0,2,[[931,1,1,0,1],[938,1,1,1,2]]],[40,2,2,2,4,[[957,1,1,2,3],[962,1,1,3,4]]],[43,2,1,4,5,[[1038,2,1,4,5]]],[65,2,2,5,7,[[1167,1,1,5,6],[1181,1,1,6,7]]]],[23196,23426,24221,24415,27675,30710,30952]]],["girdle",[5,4,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[43,2,1,2,3,[[1038,2,1,2,3]]],[65,1,1,3,4,[[1167,1,1,3,4]]]],[23196,24221,27675,30710]]],["girdles",[1,1,[[65,1,1,0,1,[[1181,1,1,0,1]]]],[30952]]],["purse",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24415]]],["purses",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23426]]]]},{"k":"G2224","v":[["*",[2,1,[[42,2,1,0,1,[[1017,2,1,0,1]]]],[26916]]],["gird",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26916]]],["girdedst",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26916]]]]},{"k":"G2225","v":[["*",[2,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[25684,27135]]],["live",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27135]]],["preserve",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25684]]]]},{"k":"G2226","v":[["*",[23,20,[[57,1,1,0,1,[[1145,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]],[65,20,17,3,20,[[1170,7,4,3,7],[1171,4,4,7,11],[1172,5,5,11,16],[1173,1,1,16,17],[1180,1,1,17,18],[1181,1,1,18,19],[1185,1,1,19,20]]]],[30252,30512,30682,30774,30775,30776,30777,30785,30787,30790,30793,30794,30796,30798,30799,30800,30821,30929,30953,31021]]],["beast",[7,4,[[65,7,4,0,4,[[1170,4,1,0,1],[1172,3,3,1,4]]]],[30775,30796,30798,30800]]],["beasts",[16,16,[[57,1,1,0,1,[[1145,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]],[65,13,13,3,16,[[1170,3,3,3,6],[1171,4,4,6,10],[1172,2,2,10,12],[1173,1,1,12,13],[1180,1,1,13,14],[1181,1,1,14,15],[1185,1,1,15,16]]]],[30252,30512,30682,30774,30776,30777,30785,30787,30790,30793,30794,30799,30821,30929,30953,31021]]]]},{"k":"G2227","v":[["*",[12,11,[[42,3,2,0,2,[[1001,2,1,0,1],[1002,1,1,1,2]]],[44,2,2,2,4,[[1049,1,1,2,3],[1053,1,1,3,4]]],[45,3,3,4,7,[[1076,3,3,4,7]]],[46,1,1,7,8,[[1080,1,1,7,8]]],[47,1,1,8,9,[[1093,1,1,8,9]]],[53,1,1,9,10,[[1124,1,1,9,10]]],[59,1,1,10,11,[[1153,1,1,10,11]]]],[26231,26320,28039,28127,28740,28754,28763,28847,29123,29801,30442]]],["alive",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28740]]],["life",[2,2,[[46,1,1,0,1,[[1080,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]]],[28847,29123]]],["quicken",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28127]]],["quickened",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[28754,30442]]],["quickeneth",[5,4,[[42,3,2,0,2,[[1001,2,1,0,1],[1002,1,1,1,2]]],[44,1,1,2,3,[[1049,1,1,2,3]]],[53,1,1,3,4,[[1124,1,1,3,4]]]],[26231,26320,28039,29801]]],["quickening",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28763]]]]},{"k":"G2228","v":[["*",[353,279,[[39,66,46,0,46,[[933,3,3,0,3],[934,4,2,3,5],[935,3,3,5,8],[937,1,1,8,9],[938,6,5,9,14],[939,3,3,14,17],[940,5,4,17,21],[941,1,1,21,22],[943,3,3,22,25],[944,2,2,25,27],[945,2,1,27,28],[946,9,5,28,33],[947,8,2,33,35],[949,1,1,35,36],[950,1,1,36,37],[951,2,2,37,39],[952,1,1,39,40],[953,8,4,40,44],[954,2,1,44,45],[955,1,1,45,46]]],[40,35,24,46,70,[[958,1,1,46,47],[959,3,2,47,49],[960,3,3,49,52],[962,5,3,52,55],[963,3,3,55,58],[964,1,1,58,59],[965,3,3,59,62],[966,8,2,62,64],[967,1,1,64,65],[968,2,2,65,67],[969,4,2,67,69],[970,1,1,69,70]]],[41,46,40,70,110,[[974,1,1,70,71],[977,1,1,71,72],[978,3,2,72,74],[979,2,2,74,76],[980,1,1,76,77],[981,2,2,77,79],[982,2,2,79,81],[983,1,1,81,82],[984,6,5,82,87],[985,2,2,87,89],[986,3,3,89,92],[987,2,2,92,94],[988,3,2,94,96],[989,4,4,96,100],[990,7,4,100,104],[992,3,3,104,107],[994,3,3,107,110]]],[42,12,12,110,122,[[998,1,1,110,111],[999,1,1,111,112],[1000,2,2,112,114],[1002,1,1,114,115],[1003,2,2,115,117],[1005,2,2,117,119],[1009,2,2,119,121],[1014,1,1,121,122]]],[43,38,34,122,156,[[1018,1,1,122,123],[1019,1,1,123,124],[1020,2,1,124,125],[1021,3,3,125,128],[1022,2,2,128,130],[1024,2,2,130,132],[1025,1,1,132,133],[1027,3,2,133,135],[1028,1,1,135,136],[1034,3,2,136,138],[1035,1,1,138,139],[1036,1,1,139,140],[1037,3,2,140,142],[1040,2,2,142,144],[1041,5,5,144,149],[1042,2,2,149,151],[1043,1,1,151,152],[1044,1,1,152,153],[1045,3,3,153,156]]],[44,29,23,156,179,[[1046,1,1,156,157],[1047,2,2,157,159],[1048,2,2,159,161],[1049,3,3,161,164],[1051,2,2,164,166],[1052,1,1,166,167],[1053,6,1,167,168],[1054,2,2,168,170],[1055,1,1,170,171],[1056,3,3,171,174],[1058,1,1,174,175],[1059,5,4,175,179]]],[45,51,41,179,220,[[1062,1,1,179,180],[1063,1,1,180,181],[1064,1,1,181,182],[1065,2,2,182,184],[1066,8,2,184,186],[1067,3,3,186,189],[1068,4,4,189,193],[1070,5,5,193,198],[1071,2,2,198,200],[1072,6,6,200,206],[1073,1,1,206,207],[1074,1,1,207,208],[1075,14,10,208,218],[1076,1,1,218,219],[1077,1,1,219,220]]],[46,13,10,220,230,[[1078,3,2,220,222],[1080,1,1,222,223],[1083,1,1,223,224],[1086,1,1,224,225],[1087,1,1,225,226],[1088,3,2,226,228],[1089,1,1,228,229],[1090,2,1,229,230]]],[47,8,7,230,237,[[1091,3,2,230,232],[1092,1,1,232,233],[1093,3,3,233,236],[1094,1,1,236,237]]],[48,7,5,237,242,[[1099,1,1,237,238],[1101,6,4,238,242]]],[49,2,2,242,244,[[1104,1,1,242,243],[1105,1,1,243,244]]],[50,5,2,244,246,[[1108,4,1,244,245],[1109,1,1,245,246]]],[51,3,1,246,247,[[1112,3,1,246,247]]],[52,1,1,247,248,[[1117,1,1,247,248]]],[53,7,5,248,253,[[1119,1,1,248,249],[1120,3,1,249,250],[1123,3,3,250,253]]],[54,1,1,253,254,[[1127,1,1,253,254]]],[55,2,2,254,256,[[1129,1,1,254,255],[1131,1,1,255,256]]],[56,1,1,256,257,[[1132,1,1,256,257]]],[57,4,4,257,261,[[1134,1,1,257,258],[1142,1,1,258,259],[1143,1,1,259,260],[1144,1,1,260,261]]],[58,6,6,261,267,[[1146,1,1,261,262],[1147,2,2,262,264],[1148,1,1,264,265],[1149,2,2,265,267]]],[59,8,6,267,273,[[1151,2,2,267,269],[1153,3,3,269,272],[1154,3,1,272,273]]],[60,1,1,273,274,[[1157,1,1,273,274]]],[61,1,1,274,275,[[1162,1,1,274,275]]],[65,6,4,275,279,[[1169,1,1,275,276],[1179,4,2,276,278],[1180,1,1,278,279]]]],[23251,23252,23270,23306,23313,23320,23325,23332,23384,23428,23431,23432,23436,23454,23462,23481,23483,23494,23514,23518,23522,23560,23637,23638,23639,23686,23698,23725,23735,23736,23740,23743,23747,23786,23791,23851,23889,23935,23937,23980,24045,24046,24047,24052,24107,24146,24269,24292,24321,24340,24344,24353,24418,24422,24463,24473,24474,24475,24537,24581,24583,24585,24613,24617,24670,24687,24688,24738,24752,24784,24997,25130,25155,25188,25214,25215,25261,25314,25326,25375,25377,25417,25470,25473,25488,25500,25510,25522,25533,25558,25565,25584,25595,25596,25633,25637,25653,25658,25672,25674,25699,25702,25713,25717,25781,25783,25801,25891,25898,25932,26101,26139,26157,26183,26276,26345,26376,26442,26461,26640,26659,26819,26930,26969,27008,27029,27041,27056,27088,27097,27118,27165,27210,27273,27287,27315,27544,27552,27571,27597,27659,27661,27743,27763,27780,27781,27789,27790,27792,27802,27812,27854,27866,27905,27916,27920,27951,27966,27977,27992,28020,28031,28032,28035,28071,28084,28092,28151,28166,28176,28195,28211,28243,28244,28277,28284,28290,28293,28301,28376,28395,28415,28436,28454,28464,28465,28476,28483,28486,28496,28498,28502,28503,28546,28547,28548,28550,28555,28586,28589,28604,28605,28606,28614,28622,28627,28655,28666,28683,28684,28685,28697,28701,28702,28705,28707,28714,28715,28755,28782,28813,28817,28842,28913,28963,28983,28993,28996,29028,29048,29065,29067,29083,29104,29107,29117,29158,29271,29307,29308,29309,29331,29394,29433,29510,29534,29589,29665,29700,29725,29767,29779,29782,29857,29898,29935,29956,29983,30161,30197,30228,30283,30296,30308,30331,30342,30352,30385,30392,30427,30433,30441,30461,30521,30607,30761,30924,30925,30935]]],["+",[11,9,[[41,1,1,0,1,[[983,1,1,0,1]]],[43,2,2,1,3,[[1024,1,1,1,2],[1041,1,1,2,3]]],[44,2,2,3,5,[[1056,1,1,3,4],[1059,1,1,4,5]]],[45,2,2,5,7,[[1064,1,1,5,6],[1071,1,1,6,7]]],[46,4,2,7,9,[[1078,2,1,7,8],[1090,2,1,8,9]]]],[25417,27118,27780,28211,28290,28415,28586,28813,29048]]],["-",[6,6,[[39,1,1,0,1,[[954,1,1,0,1]]],[44,3,3,1,4,[[1051,1,1,1,2],[1052,1,1,2,3],[1054,1,1,3,4]]],[45,1,1,4,5,[[1067,1,1,4,5]]],[46,1,1,5,6,[[1088,1,1,5,6]]]],[24107,28071,28092,28176,28476,28996]]],["Are",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29589]]],["Doth",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28614]]],["Either",[3,3,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,2,2,1,3,[[978,1,1,1,2],[987,1,1,2,3]]]],[23522,25188,25596]]],["Except",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27790]]],["Or",[12,12,[[39,3,3,0,3,[[935,2,2,0,2],[940,1,1,2,3]]],[40,1,1,3,4,[[964,1,1,3,4]]],[41,2,2,4,6,[[985,1,1,4,5],[986,1,1,5,6]]],[43,1,1,6,7,[[1041,1,1,6,7]]],[44,3,3,7,10,[[1047,1,1,7,8],[1055,1,1,8,9],[1056,1,1,9,10]]],[45,2,2,10,12,[[1070,2,2,10,12]]]],[23320,23325,23494,24537,25522,25584,27789,27966,28195,28244,28546,28550]]],["What",[3,3,[[45,3,3,0,3,[[1067,2,2,0,2],[1075,1,1,2,3]]]],[28483,28486,28714]]],["and",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[45,1,1,1,2,[[1072,1,1,1,2]]],[59,1,1,2,3,[[1151,1,1,2,3]]]],[24418,28627,30392]]],["but",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]]],[25314,27544]]],["either",[5,5,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]],[58,1,1,4,5,[[1148,1,1,4,5]]]],[23306,25633,28684,29433,30331]]],["else",[3,3,[[39,2,2,0,2,[[940,2,2,0,2]]],[41,1,1,2,3,[[988,1,1,2,3]]]],[23518,23522,25633]]],["he",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28020]]],["neither",[3,3,[[43,1,1,0,1,[[1041,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[27781,27951,30283]]],["nor",[5,4,[[41,1,1,0,1,[[994,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]],[48,3,2,2,4,[[1101,3,2,2,4]]]],[25932,28655,29308,29309]]],["or",[245,183,[[39,50,34,0,34,[[933,3,3,0,3],[934,3,2,3,5],[935,1,1,5,6],[937,1,1,6,7],[938,5,4,7,11],[939,1,1,11,12],[940,1,1,12,13],[941,1,1,13,14],[943,3,3,14,17],[944,2,2,17,19],[945,2,1,19,20],[946,6,3,20,23],[947,7,1,23,24],[949,1,1,24,25],[950,1,1,25,26],[951,2,2,26,28],[952,1,1,28,29],[953,8,4,29,33],[955,1,1,33,34]]],[40,27,17,34,51,[[958,1,1,34,35],[959,3,2,35,37],[960,3,3,37,40],[962,3,2,40,42],[963,3,3,42,45],[966,7,1,45,46],[967,1,1,46,47],[968,2,2,47,49],[969,4,2,49,51]]],[41,28,23,51,74,[[974,1,1,51,52],[977,1,1,52,53],[978,2,1,53,54],[979,2,2,54,56],[980,1,1,56,57],[981,1,1,57,58],[984,5,4,58,62],[985,1,1,62,63],[986,2,2,63,65],[989,3,3,65,68],[990,5,2,68,70],[992,3,3,70,73],[994,1,1,73,74]]],[42,9,9,74,83,[[998,1,1,74,75],[1000,1,1,75,76],[1002,1,1,76,77],[1003,2,2,77,79],[1005,2,2,79,81],[1009,1,1,81,82],[1014,1,1,82,83]]],[43,25,21,83,104,[[1018,1,1,83,84],[1020,2,1,84,85],[1021,2,2,85,87],[1022,1,1,87,88],[1024,1,1,88,89],[1025,1,1,89,90],[1027,3,2,90,92],[1028,1,1,92,93],[1034,2,1,93,94],[1035,1,1,94,95],[1036,1,1,95,96],[1037,2,1,96,97],[1040,2,2,97,99],[1041,1,1,99,100],[1043,1,1,100,101],[1045,3,3,101,104]]],[44,18,12,104,116,[[1047,1,1,104,105],[1048,1,1,105,106],[1049,3,3,106,109],[1051,1,1,109,110],[1053,6,1,110,111],[1054,1,1,111,112],[1056,1,1,112,113],[1059,4,3,113,116]]],[45,33,25,116,141,[[1062,1,1,116,117],[1063,1,1,117,118],[1065,2,2,118,120],[1066,8,2,120,122],[1068,3,3,122,125],[1070,2,2,125,127],[1072,4,4,127,131],[1074,1,1,131,132],[1075,10,8,132,140],[1076,1,1,140,141]]],[46,8,7,141,148,[[1078,1,1,141,142],[1080,1,1,142,143],[1083,1,1,143,144],[1086,1,1,144,145],[1087,1,1,145,146],[1088,2,1,146,147],[1089,1,1,147,148]]],[47,7,6,148,154,[[1091,3,2,148,150],[1092,1,1,150,151],[1093,3,3,151,154]]],[48,4,3,154,157,[[1099,1,1,154,155],[1101,3,2,155,157]]],[49,1,1,157,158,[[1104,1,1,157,158]]],[50,5,2,158,160,[[1108,4,1,158,159],[1109,1,1,159,160]]],[51,2,1,160,161,[[1112,2,1,160,161]]],[52,1,1,161,162,[[1117,1,1,161,162]]],[53,6,4,162,166,[[1120,3,1,162,163],[1123,3,3,163,166]]],[55,2,2,166,168,[[1129,1,1,166,167],[1131,1,1,167,168]]],[56,1,1,168,169,[[1132,1,1,168,169]]],[57,3,3,169,172,[[1134,1,1,169,170],[1142,1,1,170,171],[1144,1,1,171,172]]],[58,3,3,172,175,[[1147,2,2,172,174],[1149,1,1,174,175]]],[59,6,4,175,179,[[1151,1,1,175,176],[1153,2,2,176,178],[1154,3,1,178,179]]],[65,6,4,179,183,[[1169,1,1,179,180],[1179,4,2,180,182],[1180,1,1,182,183]]]],[23251,23252,23270,23306,23313,23332,23384,23428,23431,23436,23454,23462,23514,23560,23637,23638,23639,23686,23698,23725,23735,23743,23747,23791,23851,23889,23935,23937,23980,24045,24046,24047,24052,24146,24269,24292,24321,24340,24344,24353,24422,24463,24473,24474,24475,24617,24670,24687,24688,24738,24752,24997,25130,25155,25214,25215,25261,25326,25470,25473,25488,25500,25533,25558,25565,25658,25672,25674,25699,25717,25781,25783,25801,25891,26101,26183,26276,26345,26376,26442,26461,26659,26819,26930,27008,27029,27056,27097,27165,27210,27273,27287,27315,27552,27571,27597,27659,27743,27763,27792,27854,27905,27916,27920,27977,27992,28031,28032,28035,28084,28151,28166,28243,28284,28293,28301,28376,28395,28436,28454,28464,28465,28498,28502,28503,28547,28548,28604,28605,28606,28622,28666,28684,28685,28701,28702,28705,28707,28714,28715,28755,28817,28842,28913,28963,28983,28993,29028,29065,29067,29083,29104,29107,29117,29271,29307,29331,29394,29510,29534,29589,29665,29725,29767,29779,29782,29898,29935,29956,29983,30161,30228,30296,30308,30352,30385,30427,30433,30461,30761,30924,30925,30935]]],["rather",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23736,25510]]],["save",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26640]]],["than",[38,38,[[39,7,7,0,7,[[938,1,1,0,1],[939,2,2,1,3],[946,2,2,3,5],[947,1,1,5,6],[954,1,1,6,7]]],[40,5,5,7,12,[[962,1,1,7,8],[965,3,3,8,11],[966,1,1,11,12]]],[41,7,7,12,19,[[982,2,2,12,14],[987,1,1,14,15],[988,1,1,15,16],[989,1,1,16,17],[990,2,2,17,19]]],[42,2,2,19,21,[[999,1,1,19,20],[1000,1,1,20,21]]],[43,5,5,21,26,[[1021,1,1,21,22],[1022,1,1,22,23],[1037,1,1,23,24],[1042,1,1,24,25],[1044,1,1,25,26]]],[44,1,1,26,27,[[1058,1,1,26,27]]],[45,4,4,27,31,[[1068,1,1,27,28],[1070,1,1,28,29],[1075,2,2,29,31]]],[47,1,1,31,32,[[1094,1,1,31,32]]],[53,1,1,32,33,[[1119,1,1,32,33]]],[54,1,1,33,34,[[1127,1,1,33,34]]],[57,1,1,34,35,[[1143,1,1,34,35]]],[59,1,1,35,36,[[1153,1,1,35,36]]],[60,1,1,36,37,[[1157,1,1,36,37]]],[61,1,1,37,38,[[1162,1,1,37,38]]]],[23432,23481,23483,23735,23740,23786,24107,24418,24581,24583,24585,24613,25375,25377,25595,25637,25653,25702,25713,26139,26157,27041,27088,27661,27802,27866,28277,28496,28555,28683,28697,29158,29700,29857,30197,30441,30521,30607]]],["that",[3,3,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,2,2,1,3,[[1019,1,1,1,2],[1042,1,1,2,3]]]],[25898,26969,27812]]],["the",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24784]]],["we",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28589]]],["ye",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30342]]],["yea",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28782]]]]},{"k":"G2229","v":[["+",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30058]]]]},{"k":"G2230","v":[["governor",[2,2,[[41,2,2,0,2,[[974,1,1,0,1],[975,1,1,1,2]]]],[24975,25026]]]]},{"k":"G2231","v":[["reign",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25026]]]]},{"k":"G2232","v":[["*",[22,21,[[39,11,10,0,10,[[930,1,1,0,1],[938,1,1,1,2],[955,8,7,2,9],[956,1,1,9,10]]],[40,1,1,10,11,[[969,1,1,10,11]]],[41,2,2,11,13,[[992,1,1,11,12],[993,1,1,12,13]]],[43,7,7,13,20,[[1040,4,4,13,17],[1041,2,2,17,19],[1043,1,1,19,20]]],[59,1,1,20,21,[[1152,1,1,20,21]]]],[23175,23435,24131,24140,24143,24144,24150,24152,24156,24209,24726,25799,25838,27758,27760,27767,27768,27770,27779,27853,30413]]],["+",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24209]]],["governor",[16,15,[[39,8,7,0,7,[[955,8,7,0,7]]],[41,1,1,7,8,[[992,1,1,7,8]]],[43,7,7,8,15,[[1040,4,4,8,12],[1041,2,2,12,14],[1043,1,1,14,15]]]],[24131,24140,24143,24144,24150,24152,24156,25799,27758,27760,27767,27768,27770,27779,27853]]],["governors",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[23435,30413]]],["princes",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23175]]],["rulers",[2,2,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]]],[24726,25838]]]]},{"k":"G2233","v":[["*",[28,27,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[43,4,4,2,6,[[1024,1,1,2,3],[1031,1,1,3,4],[1032,1,1,4,5],[1043,1,1,5,6]]],[46,1,1,6,7,[[1086,1,1,6,7]]],[49,6,5,7,12,[[1104,3,3,7,10],[1105,3,2,10,12]]],[51,1,1,12,13,[[1115,1,1,12,13]]],[52,1,1,13,14,[[1118,1,1,13,14]]],[53,2,2,14,16,[[1119,1,1,14,15],[1124,1,1,15,16]]],[57,6,6,16,22,[[1142,1,1,16,17],[1143,2,2,17,19],[1145,3,3,19,22]]],[58,1,1,22,23,[[1146,1,1,22,23]]],[60,4,4,23,27,[[1156,1,1,23,24],[1157,1,1,24,25],[1158,2,2,25,27]]]],[23175,25890,27126,27426,27464,27825,28961,29394,29397,29416,29428,29429,29634,29693,29708,29789,30162,30183,30198,30248,30258,30265,30268,30492,30513,30531,30537]]],["+",[2,2,[[43,1,1,0,1,[[1031,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[27426,29394]]],["Esteeming",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30198]]],["Governor",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23175]]],["account",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30537]]],["chief",[2,2,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]]],[25890,27464]]],["count",[7,6,[[49,2,1,0,1,[[1105,2,1,0,1]]],[52,1,1,1,2,[[1118,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]],[58,1,1,3,4,[[1146,1,1,3,4]]],[60,2,2,4,6,[[1157,1,1,4,5],[1158,1,1,5,6]]]],[29429,29693,29789,30268,30513,30531]]],["counted",[3,3,[[49,1,1,0,1,[[1105,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[29428,29708,30162]]],["esteem",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29634]]],["governor",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27126]]],["judged",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30183]]],["over",[3,3,[[57,3,3,0,3,[[1145,3,3,0,3]]]],[30248,30258,30265]]],["supposed",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29416]]],["think",[2,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[27825,30492]]],["thought",[2,2,[[46,1,1,0,1,[[1086,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[28961,29397]]]]},{"k":"G2234","v":[["gladly",[3,3,[[40,2,2,0,2,[[962,1,1,0,1],[968,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]]],[24427,24710,29008]]]]},{"k":"G2235","v":[["*",[59,54,[[39,7,7,0,7,[[931,1,1,0,1],[933,1,1,1,2],[942,2,2,2,4],[943,1,1,4,5],[945,1,1,5,6],[952,1,1,6,7]]],[40,8,7,7,14,[[960,1,1,7,8],[962,2,1,8,9],[964,1,1,9,10],[967,1,1,10,11],[969,1,1,11,12],[971,2,2,12,14]]],[41,8,7,14,21,[[975,1,1,14,15],[979,1,1,15,16],[983,1,1,16,17],[984,1,1,17,18],[986,1,1,18,19],[991,1,1,19,20],[993,2,1,20,21]]],[42,16,16,21,37,[[999,1,1,21,22],[1000,2,2,22,24],[1001,1,1,24,25],[1002,1,1,25,26],[1003,1,1,26,27],[1005,2,2,27,29],[1007,2,2,29,31],[1009,1,1,31,32],[1011,1,1,32,33],[1015,2,2,33,35],[1017,2,2,35,37]]],[43,3,2,37,39,[[1021,1,1,37,38],[1044,2,1,38,39]]],[44,3,3,39,42,[[1046,1,1,39,40],[1049,1,1,40,41],[1058,1,1,41,42]]],[45,4,3,42,45,[[1065,2,1,42,43],[1066,1,1,43,44],[1067,1,1,44,45]]],[49,3,2,45,47,[[1105,2,1,45,46],[1106,1,1,46,47]]],[52,1,1,47,48,[[1117,1,1,47,48]]],[53,1,1,48,49,[[1123,1,1,48,49]]],[54,2,2,49,51,[[1126,1,1,49,50],[1128,1,1,50,51]]],[60,1,1,51,52,[[1158,1,1,51,52]]],[61,2,2,52,54,[[1160,1,1,52,53],[1162,1,1,53,54]]]],[23202,23262,23612,23621,23665,23712,23989,24360,24442,24502,24651,24745,24868,24870,25034,25201,25412,25508,25570,25768,25856,26138,26191,26207,26216,26274,26342,26462,26467,26540,26562,26632,26702,26853,26858,26902,26912,27025,27864,27940,28041,28277,28441,28457,28474,29433,29452,29668,29778,29845,29876,30523,30558,30606]]],["+",[6,6,[[40,3,3,0,3,[[960,1,1,0,1],[962,1,1,1,2],[971,1,1,2,3]]],[43,1,1,3,4,[[1044,1,1,3,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]],[54,1,1,5,6,[[1128,1,1,5,6]]]],[24360,24442,24870,27864,29433,29876]]],["Now",[3,3,[[42,1,1,0,1,[[1011,1,1,0,1]]],[45,2,2,1,3,[[1065,1,1,1,2],[1067,1,1,2,3]]]],[26702,28441,28474]]],["about",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26342]]],["already",[15,15,[[39,2,2,0,2,[[933,1,1,0,1],[945,1,1,1,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[42,6,6,3,9,[[999,1,1,3,4],[1000,1,1,4,5],[1005,2,2,5,7],[1007,1,1,7,8],[1015,1,1,8,9]]],[45,1,1,9,10,[[1066,1,1,9,10]]],[49,1,1,10,11,[[1105,1,1,10,11]]],[52,1,1,11,12,[[1117,1,1,11,12]]],[53,1,1,12,13,[[1123,1,1,12,13]]],[54,1,1,13,14,[[1126,1,1,13,14]]],[61,1,1,14,15,[[1162,1,1,14,15]]]],[23262,23712,25508,26138,26191,26462,26467,26540,26858,28457,29433,29668,29778,29845,30606]]],["now",[31,30,[[39,4,4,0,4,[[931,1,1,0,1],[942,2,2,1,3],[943,1,1,3,4]]],[40,4,4,4,8,[[962,1,1,4,5],[964,1,1,5,6],[967,1,1,6,7],[971,1,1,7,8]]],[41,7,6,8,14,[[975,1,1,8,9],[979,1,1,9,10],[983,1,1,10,11],[986,1,1,11,12],[991,1,1,12,13],[993,2,1,13,14]]],[42,7,7,14,21,[[1000,1,1,14,15],[1001,1,1,15,16],[1002,1,1,16,17],[1009,1,1,17,18],[1015,1,1,18,19],[1017,2,2,19,21]]],[43,2,2,21,23,[[1021,1,1,21,22],[1044,1,1,22,23]]],[44,3,3,23,26,[[1046,1,1,23,24],[1049,1,1,24,25],[1058,1,1,25,26]]],[45,1,1,26,27,[[1065,1,1,26,27]]],[49,1,1,27,28,[[1106,1,1,27,28]]],[60,1,1,28,29,[[1158,1,1,28,29]]],[61,1,1,29,30,[[1160,1,1,29,30]]]],[23202,23612,23621,23665,24442,24502,24651,24868,25034,25201,25412,25570,25768,25856,26207,26216,26274,26632,26853,26902,26912,27025,27864,27940,28041,28277,28441,29452,30523,30558]]],["time",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26562]]],["yet",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23989,24745]]]]},{"k":"G2236","v":[["gladly",[2,2,[[46,2,2,0,2,[[1089,2,2,0,2]]]],[29031,29037]]]]},{"k":"G2237","v":[["*",[5,5,[[41,1,1,0,1,[[980,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]],[58,2,2,2,4,[[1149,2,2,2,4]]],[60,1,1,4,5,[[1157,1,1,4,5]]]],[25259,29926,30338,30340,30513]]],["lusts",[2,2,[[58,2,2,0,2,[[1149,2,2,0,2]]]],[30338,30340]]],["pleasure",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30513]]],["pleasures",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[25259,29926]]]]},{"k":"G2238","v":[["mint",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23941,25447]]]]},{"k":"G2239","v":[["manners",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28751]]]]},{"k":"G2240","v":[["*",[27,26,[[39,4,4,0,4,[[936,1,1,0,1],[951,1,1,1,2],[952,2,2,2,4]]],[40,1,1,4,5,[[964,1,1,4,5]]],[41,5,5,5,10,[[984,1,1,5,6],[985,2,2,6,8],[987,1,1,8,9],[991,1,1,9,10]]],[42,4,4,10,14,[[998,1,1,10,11],[1000,1,1,11,12],[1002,1,1,12,13],[1004,1,1,13,14]]],[43,1,1,14,15,[[1045,1,1,14,15]]],[44,1,1,15,16,[[1056,1,1,15,16]]],[57,3,3,16,19,[[1142,3,3,16,19]]],[60,1,1,19,20,[[1158,1,1,19,20]]],[61,1,1,20,21,[[1163,1,1,20,21]]],[65,6,5,21,26,[[1168,1,1,21,22],[1169,3,2,22,24],[1181,1,1,24,25],[1184,1,1,25,26]]]],[23356,23954,23971,24007,24503,25505,25547,25553,25615,25774,26099,26203,26294,26423,27922,28235,30140,30142,30170,30532,30644,30742,30749,30755,30950,31001]]],["+",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30742]]],["came",[3,3,[[40,1,1,0,1,[[964,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]]],[24503,26423,27922]]],["come",[23,22,[[39,4,4,0,4,[[936,1,1,0,1],[951,1,1,1,2],[952,2,2,2,4]]],[41,5,5,4,9,[[984,1,1,4,5],[985,2,2,5,7],[987,1,1,7,8],[991,1,1,8,9]]],[42,3,3,9,12,[[998,1,1,9,10],[1000,1,1,10,11],[1002,1,1,11,12]]],[44,1,1,12,13,[[1056,1,1,12,13]]],[57,3,3,13,16,[[1142,3,3,13,16]]],[60,1,1,16,17,[[1158,1,1,16,17]]],[61,1,1,17,18,[[1163,1,1,17,18]]],[65,5,4,18,22,[[1169,3,2,18,20],[1181,1,1,20,21],[1184,1,1,21,22]]]],[23356,23954,23971,24007,25505,25547,25553,25615,25774,26099,26203,26294,28235,30140,30142,30170,30532,30644,30749,30755,30950,31001]]]]},{"k":"G2241","v":[["Eli",[2,1,[[39,2,1,0,1,[[955,2,1,0,1]]]],[24175]]]]},{"k":"G2242","v":[["Heli",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25048]]]]},{"k":"G2243","v":[["Elias",[30,30,[[39,9,9,0,9,[[939,1,1,0,1],[944,1,1,1,2],[945,5,5,2,7],[955,2,2,7,9]]],[40,9,9,9,18,[[962,1,1,9,10],[964,1,1,10,11],[965,5,5,11,16],[971,2,2,16,18]]],[41,8,8,18,26,[[973,1,1,18,19],[976,2,2,19,21],[981,5,5,21,26]]],[42,2,2,26,28,[[997,2,2,26,28]]],[44,1,1,28,29,[[1056,1,1,28,29]]],[58,1,1,29,30,[[1150,1,1,29,30]]]],[23473,23686,23703,23704,23710,23711,23712,24176,24178,24422,24528,24542,24543,24549,24550,24551,24861,24862,24910,25088,25089,25309,25320,25331,25334,25355,26065,26069,28211,30371]]]]},{"k":"G2244","v":[["*",[8,8,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,3,3,1,4,[[974,1,1,1,2],[984,1,1,2,3],[991,1,1,3,4]]],[42,2,2,4,6,[[1005,2,2,4,6]]],[48,1,1,6,7,[[1100,1,1,6,7]]],[57,1,1,7,8,[[1143,1,1,7,8]]]],[23309,25025,25484,25734,26461,26463,29285,30183]]],["+",[3,3,[[42,2,2,0,2,[[1005,2,2,0,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[26461,26463,30183]]],["stature",[5,5,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,3,3,1,4,[[974,1,1,1,2],[984,1,1,2,3],[991,1,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]]],[23309,25025,25484,25734,29285]]]]},{"k":"G2245","v":[["great",[2,2,[[50,1,1,0,1,[[1108,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[29495,30324]]]]},{"k":"G2246","v":[["*",[32,32,[[39,5,5,0,5,[[933,1,1,0,1],[941,2,2,1,3],[945,1,1,3,4],[952,1,1,4,5]]],[40,4,4,5,9,[[957,1,1,5,6],[960,1,1,6,7],[969,1,1,7,8],[972,1,1,8,9]]],[41,3,3,9,12,[[976,1,1,9,10],[993,1,1,10,11],[995,1,1,11,12]]],[43,4,4,12,16,[[1019,1,1,12,13],[1030,1,1,13,14],[1043,1,1,14,15],[1044,1,1,15,16]]],[45,1,1,16,17,[[1076,1,1,16,17]]],[48,1,1,17,18,[[1100,1,1,17,18]]],[58,1,1,18,19,[[1146,1,1,18,19]]],[65,13,13,19,32,[[1167,1,1,19,20],[1172,1,1,20,21],[1173,2,2,21,23],[1174,1,1,23,24],[1175,1,1,24,25],[1176,1,1,25,26],[1178,1,1,26,27],[1182,2,2,27,29],[1185,1,1,29,30],[1187,1,1,30,31],[1188,1,1,31,32]]]],[23279,23545,23582,23702,23986,24247,24329,24741,24875,25103,25851,25980,26969,27373,27836,27875,28759,29298,30277,30713,30805,30812,30826,30839,30842,30862,30892,30962,30966,31034,31076,31085]]],["+",[2,2,[[65,2,2,0,2,[[1173,1,1,0,1],[1182,1,1,1,2]]]],[30812,30966]]],["sun",[30,30,[[39,5,5,0,5,[[933,1,1,0,1],[941,2,2,1,3],[945,1,1,3,4],[952,1,1,4,5]]],[40,4,4,5,9,[[957,1,1,5,6],[960,1,1,6,7],[969,1,1,7,8],[972,1,1,8,9]]],[41,3,3,9,12,[[976,1,1,9,10],[993,1,1,10,11],[995,1,1,11,12]]],[43,4,4,12,16,[[1019,1,1,12,13],[1030,1,1,13,14],[1043,1,1,14,15],[1044,1,1,15,16]]],[45,1,1,16,17,[[1076,1,1,16,17]]],[48,1,1,17,18,[[1100,1,1,17,18]]],[58,1,1,18,19,[[1146,1,1,18,19]]],[65,11,11,19,30,[[1167,1,1,19,20],[1172,1,1,20,21],[1173,1,1,21,22],[1174,1,1,22,23],[1175,1,1,23,24],[1176,1,1,24,25],[1178,1,1,25,26],[1182,1,1,26,27],[1185,1,1,27,28],[1187,1,1,28,29],[1188,1,1,29,30]]]],[23279,23545,23582,23702,23986,24247,24329,24741,24875,25103,25851,25980,26969,27373,27836,27875,28759,29298,30277,30713,30805,30826,30839,30842,30862,30892,30962,31034,31076,31085]]]]},{"k":"G2247","v":[["nails",[2,1,[[42,2,1,0,1,[[1016,2,1,0,1]]]],[26892]]]]},{"k":"G2248","v":[["*",[180,166,[[39,13,12,0,12,[[934,2,1,0,1],[936,3,3,1,4],[937,1,1,4,5],[941,1,1,5,6],[945,1,1,6,7],[948,3,3,7,10],[955,2,2,10,12]]],[40,5,5,12,17,[[957,1,1,12,13],[961,1,1,13,14],[962,1,1,14,15],[965,2,2,15,17]]],[41,19,17,17,34,[[973,2,2,17,19],[975,1,1,19,20],[976,1,1,20,21],[979,1,1,21,22],[981,1,1,22,23],[983,4,3,23,26],[984,1,1,26,27],[988,1,1,27,28],[989,1,1,28,29],[991,1,1,29,30],[992,1,1,30,31],[995,3,2,31,33],[996,1,1,33,34]]],[42,2,2,34,36,[[997,1,1,34,35],[1005,1,1,35,36]]],[43,29,26,36,62,[[1018,1,1,36,37],[1020,1,1,37,38],[1021,1,1,38,39],[1022,1,1,39,40],[1023,1,1,40,41],[1024,2,2,41,43],[1028,1,1,43,44],[1031,2,2,44,46],[1033,5,3,46,49],[1037,1,1,49,50],[1038,5,4,50,54],[1044,5,5,54,59],[1045,3,3,59,62]]],[44,13,13,62,75,[[1048,1,1,62,63],[1049,1,1,63,64],[1050,1,1,64,65],[1051,1,1,65,66],[1052,1,1,66,67],[1053,4,4,67,71],[1054,1,1,71,72],[1058,1,1,72,73],[1060,1,1,73,74],[1061,1,1,74,75]]],[45,8,7,75,82,[[1065,2,2,75,77],[1067,1,1,77,78],[1068,1,1,78,79],[1069,1,1,79,80],[1070,2,1,80,81],[1071,1,1,81,82]]],[46,23,21,82,103,[[1078,10,8,82,90],[1079,1,1,90,91],[1080,1,1,91,92],[1081,1,1,92,93],[1082,4,4,93,97],[1084,2,2,97,99],[1085,3,3,99,102],[1087,1,1,102,103]]],[47,5,5,103,108,[[1091,2,2,103,105],[1092,1,1,105,106],[1093,1,1,106,107],[1095,1,1,107,108]]],[48,12,11,108,119,[[1097,8,7,108,115],[1098,3,3,115,118],[1101,1,1,118,119]]],[49,1,1,119,120,[[1105,1,1,119,120]]],[50,2,2,120,122,[[1107,2,2,120,122]]],[51,10,9,122,131,[[1111,2,2,122,124],[1112,3,3,124,127],[1113,2,1,127,128],[1114,2,2,128,130],[1115,1,1,130,131]]],[52,4,4,131,135,[[1116,1,1,131,132],[1117,1,1,132,133],[1118,2,2,133,135]]],[54,2,2,135,137,[[1125,1,1,135,136],[1126,1,1,136,137]]],[55,5,5,137,142,[[1130,2,2,137,139],[1131,3,3,139,142]]],[57,3,3,142,145,[[1134,2,2,142,144],[1145,1,1,144,145]]],[58,2,1,145,146,[[1146,2,1,145,146]]],[59,5,5,146,151,[[1151,2,2,146,148],[1153,2,2,148,150],[1155,1,1,150,151]]],[60,2,2,151,153,[[1156,1,1,151,152],[1158,1,1,152,153]]],[61,6,6,153,159,[[1159,2,2,153,155],[1161,1,1,155,156],[1162,3,3,156,159]]],[63,2,2,159,161,[[1165,2,2,159,161]]],[65,7,5,161,166,[[1167,3,2,161,163],[1171,2,2,163,165],[1172,2,1,165,166]]]],[23295,23370,23374,23376,23406,23595,23704,23799,23822,23823,24133,24154,24239,24376,24410,24543,24560,24964,24971,25039,25097,25215,25334,25406,25409,25450,25500,25646,25664,25745,25785,25965,25974,26013,26066,26474,26944,27000,27034,27087,27103,27143,27156,27322,27425,27436,27493,27498,27520,27631,27665,27669,27675,27681,27856,27861,27862,27875,27881,27901,27906,27909,27999,28046,28055,28074,28097,28134,28151,28153,28155,28179,28277,28310,28342,28434,28442,28481,28502,28535,28550,28573,28804,28805,28808,28810,28811,28814,28821,28822,28838,28847,28873,28882,28887,28891,28895,28918,28922,28936,28938,28952,28973,29061,29080,29085,29115,29163,29209,29210,29211,29212,29214,29218,29225,29233,29234,29236,29306,29438,29477,29478,29568,29570,29585,29586,29588,29596,29610,29611,29630,29653,29677,29685,29687,29818,29839,29920,29922,29928,29929,29938,29978,29980,30247,30284,30377,30378,30442,30445,30475,30482,30531,30547,30549,30580,30613,30614,30622,30667,30668,30702,30703,30788,30789,30809]]],["+",[14,12,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[43,3,2,2,4,[[1033,2,1,2,3],[1038,1,1,3,4]]],[45,2,1,4,5,[[1070,2,1,4,5]]],[46,2,2,5,7,[[1079,1,1,5,6],[1080,1,1,6,7]]],[47,2,2,7,9,[[1092,1,1,7,8],[1095,1,1,8,9]]],[48,1,1,9,10,[[1097,1,1,9,10]]],[50,1,1,10,11,[[1107,1,1,10,11]]],[59,1,1,11,12,[[1151,1,1,11,12]]]],[23376,26013,27520,27669,28550,28838,28847,29085,29163,29212,29477,30377]]],["to",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28277]]],["us",[136,129,[[39,12,11,0,11,[[934,2,1,0,1],[936,2,2,1,3],[937,1,1,3,4],[941,1,1,4,5],[945,1,1,5,6],[948,3,3,6,9],[955,2,2,9,11]]],[40,5,5,11,16,[[957,1,1,11,12],[961,1,1,12,13],[962,1,1,13,14],[965,2,2,14,16]]],[41,17,15,16,31,[[973,2,2,16,18],[976,1,1,18,19],[979,1,1,19,20],[981,1,1,20,21],[983,4,3,21,24],[984,1,1,24,25],[988,1,1,25,26],[989,1,1,26,27],[991,1,1,27,28],[992,1,1,28,29],[995,3,2,29,31]]],[42,2,2,31,33,[[997,1,1,31,32],[1005,1,1,32,33]]],[43,18,18,33,51,[[1018,1,1,33,34],[1020,1,1,34,35],[1022,1,1,35,36],[1024,2,2,36,38],[1028,1,1,38,39],[1031,1,1,39,40],[1033,3,3,40,43],[1037,1,1,43,44],[1038,2,2,44,46],[1044,2,2,46,48],[1045,3,3,48,51]]],[44,9,9,51,60,[[1049,1,1,51,52],[1050,1,1,52,53],[1053,4,4,53,57],[1054,1,1,57,58],[1060,1,1,58,59],[1061,1,1,59,60]]],[45,5,5,60,65,[[1065,2,2,60,62],[1067,1,1,62,63],[1068,1,1,63,64],[1069,1,1,64,65]]],[46,16,15,65,80,[[1078,8,7,65,72],[1081,1,1,72,73],[1082,3,3,73,76],[1084,2,2,76,78],[1085,1,1,78,79],[1087,1,1,79,80]]],[47,3,3,80,83,[[1091,2,2,80,82],[1093,1,1,82,83]]],[48,7,7,83,90,[[1097,4,4,83,87],[1098,2,2,87,89],[1101,1,1,89,90]]],[49,1,1,90,91,[[1105,1,1,90,91]]],[50,1,1,91,92,[[1107,1,1,91,92]]],[51,9,8,92,100,[[1111,1,1,92,93],[1112,3,3,93,96],[1113,2,1,96,97],[1114,2,2,97,99],[1115,1,1,99,100]]],[52,3,3,100,103,[[1117,1,1,100,101],[1118,2,2,101,103]]],[54,2,2,103,105,[[1125,1,1,103,104],[1126,1,1,104,105]]],[55,5,5,105,110,[[1130,2,2,105,107],[1131,3,3,107,110]]],[57,1,1,110,111,[[1134,1,1,110,111]]],[58,1,1,111,112,[[1146,1,1,111,112]]],[59,3,3,112,115,[[1153,2,2,112,114],[1155,1,1,114,115]]],[60,1,1,115,116,[[1156,1,1,115,116]]],[61,6,6,116,122,[[1159,2,2,116,118],[1161,1,1,118,119],[1162,3,3,119,122]]],[63,2,2,122,124,[[1165,2,2,122,124]]],[65,7,5,124,129,[[1167,3,2,124,126],[1171,2,2,126,128],[1172,2,1,128,129]]]],[23295,23370,23374,23406,23595,23704,23799,23822,23823,24133,24154,24239,24376,24410,24543,24560,24964,24971,25097,25215,25334,25406,25409,25450,25500,25646,25664,25745,25785,25965,25974,26066,26474,26944,27000,27087,27143,27156,27322,27425,27493,27498,27520,27631,27675,27681,27861,27862,27901,27906,27909,28046,28055,28134,28151,28153,28155,28179,28310,28342,28434,28442,28481,28502,28535,28804,28805,28810,28811,28814,28821,28822,28873,28882,28891,28895,28918,28922,28952,28973,29061,29080,29115,29209,29210,29211,29214,29233,29236,29306,29438,29478,29570,29585,29586,29588,29596,29610,29611,29630,29677,29685,29687,29818,29839,29920,29922,29928,29929,29938,29980,30284,30442,30445,30475,30482,30547,30549,30580,30613,30614,30622,30667,30668,30702,30703,30788,30789,30809]]],["usward",[2,2,[[48,1,1,0,1,[[1097,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[29225,30531]]],["we",[26,26,[[41,1,1,0,1,[[975,1,1,0,1]]],[43,8,8,1,9,[[1021,1,1,1,2],[1023,1,1,2,3],[1031,1,1,3,4],[1038,2,2,4,6],[1044,3,3,6,9]]],[44,3,3,9,12,[[1048,1,1,9,10],[1051,1,1,10,11],[1052,1,1,11,12]]],[45,1,1,12,13,[[1071,1,1,12,13]]],[46,5,5,13,18,[[1078,2,2,13,15],[1082,1,1,15,16],[1085,2,2,16,18]]],[48,3,3,18,21,[[1097,2,2,18,20],[1098,1,1,20,21]]],[51,1,1,21,22,[[1111,1,1,21,22]]],[52,1,1,22,23,[[1116,1,1,22,23]]],[57,2,2,23,25,[[1134,1,1,23,24],[1145,1,1,24,25]]],[58,1,1,25,26,[[1146,1,1,25,26]]]],[25039,27034,27103,27436,27665,27669,27856,27875,27881,27999,28074,28097,28573,28804,28808,28887,28936,28938,29210,29218,29234,29568,29653,29978,30247,30284]]],["you",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30378]]]]},{"k":"G2249","v":[["*",[125,120,[[39,5,5,0,5,[[934,1,1,0,1],[937,1,1,1,2],[945,1,1,2,3],[947,1,1,3,4],[956,1,1,4,5]]],[40,3,3,5,8,[[965,1,1,5,6],[966,1,1,6,7],[970,1,1,7,8]]],[41,4,4,8,12,[[981,1,1,8,9],[990,1,1,9,10],[995,1,1,10,11],[996,1,1,11,12]]],[42,18,18,12,30,[[997,1,1,12,13],[1000,1,1,13,14],[1002,2,2,14,16],[1003,1,1,16,17],[1004,2,2,17,19],[1005,5,5,19,24],[1007,1,1,24,25],[1008,1,1,25,26],[1013,2,2,26,28],[1015,1,1,28,29],[1017,1,1,29,30]]],[43,21,21,30,51,[[1019,2,2,30,32],[1020,1,1,32,33],[1021,2,2,33,35],[1022,1,1,35,36],[1023,1,1,36,37],[1027,3,3,37,40],[1030,1,1,40,41],[1031,1,1,41,42],[1032,1,1,42,43],[1037,2,2,43,45],[1038,3,3,45,48],[1040,1,1,48,49],[1041,1,1,49,50],[1045,1,1,50,51]]],[44,3,3,51,54,[[1051,1,1,51,52],[1053,1,1,52,53],[1060,1,1,53,54]]],[45,17,13,54,67,[[1062,1,1,54,55],[1063,2,2,55,57],[1065,4,2,57,59],[1069,2,1,59,60],[1070,4,3,60,63],[1072,1,1,63,64],[1073,1,1,64,65],[1076,2,2,65,67]]],[46,16,15,67,82,[[1078,1,1,67,68],[1080,1,1,68,69],[1081,2,2,69,71],[1082,2,2,71,73],[1086,1,1,73,74],[1087,2,2,74,76],[1088,2,2,76,78],[1090,5,4,78,82]]],[47,7,7,82,89,[[1091,1,1,82,83],[1092,3,3,83,86],[1094,2,2,86,88],[1095,1,1,88,89]]],[48,1,1,89,90,[[1098,1,1,89,90]]],[49,1,1,90,91,[[1105,1,1,90,91]]],[50,2,2,91,93,[[1107,2,2,91,93]]],[51,7,7,93,100,[[1112,2,2,93,95],[1113,2,2,95,97],[1114,2,2,97,99],[1115,1,1,99,100]]],[52,1,1,100,101,[[1117,1,1,100,101]]],[55,2,2,101,103,[[1131,2,2,101,103]]],[57,5,5,103,108,[[1134,1,1,103,104],[1135,1,1,104,105],[1142,1,1,105,106],[1144,2,2,106,108]]],[60,1,1,108,109,[[1156,1,1,108,109]]],[61,9,9,109,118,[[1161,2,2,109,111],[1162,7,7,111,118]]],[63,2,2,118,120,[[1165,2,2,118,120]]]],[23294,23393,23719,23789,24209,24566,24616,24812,25314,25716,25976,26012,26060,26178,26299,26326,26363,26422,26429,26461,26464,26468,26469,26480,26539,26614,26770,26781,26832,26901,26957,26981,27011,27031,27042,27091,27105,27292,27298,27306,27394,27429,27452,27632,27639,27671,27676,27689,27749,27777,27920,28072,28139,28304,28386,28406,28410,28441,28443,28533,28551,28552,28565,28616,28647,28748,28770,28806,28859,28870,28872,28893,28898,28960,28978,28984,29001,29010,29047,29049,29050,29052,29065,29090,29096,29097,29134,29159,29167,29232,29424,29474,29493,29583,29587,29596,29602,29618,29620,29629,29674,29926,29928,29980,30001,30172,30213,30237,30497,30593,30595,30609,30613,30614,30617,30619,30620,30622,30666,30670]]],["+",[3,3,[[42,1,1,0,1,[[1005,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]]],[26480,27292,28748]]],["We",[15,15,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,5,5,1,6,[[1004,1,1,1,2],[1005,1,1,2,3],[1008,1,1,3,4],[1015,1,1,4,5],[1017,1,1,5,6]]],[43,2,2,6,8,[[1031,1,1,6,7],[1045,1,1,7,8]]],[44,1,1,8,9,[[1060,1,1,8,9]]],[45,1,1,9,10,[[1065,1,1,9,10]]],[47,1,1,10,11,[[1092,1,1,10,11]]],[61,3,3,11,14,[[1161,1,1,11,12],[1162,2,2,12,14]]],[63,1,1,14,15,[[1165,1,1,14,15]]]],[24812,26422,26469,26614,26832,26901,27429,27920,28304,28443,29096,30593,30609,30622,30666]]],["us",[2,2,[[42,1,1,0,1,[[1007,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]]],[26539,29629]]],["we",[105,101,[[39,5,5,0,5,[[934,1,1,0,1],[937,1,1,1,2],[945,1,1,2,3],[947,1,1,3,4],[956,1,1,4,5]]],[40,2,2,5,7,[[965,1,1,5,6],[966,1,1,6,7]]],[41,4,4,7,11,[[981,1,1,7,8],[990,1,1,8,9],[995,1,1,9,10],[996,1,1,10,11]]],[42,11,11,11,22,[[997,1,1,11,12],[1000,1,1,12,13],[1002,2,2,13,15],[1003,1,1,15,16],[1004,1,1,16,17],[1005,3,3,17,20],[1013,2,2,20,22]]],[43,18,18,22,40,[[1019,2,2,22,24],[1020,1,1,24,25],[1021,2,2,25,27],[1022,1,1,27,28],[1023,1,1,28,29],[1027,2,2,29,31],[1030,1,1,31,32],[1032,1,1,32,33],[1037,2,2,33,35],[1038,3,3,35,38],[1040,1,1,38,39],[1041,1,1,39,40]]],[44,2,2,40,42,[[1051,1,1,40,41],[1053,1,1,41,42]]],[45,15,12,42,54,[[1062,1,1,42,43],[1063,2,2,43,45],[1065,3,2,45,47],[1069,2,1,47,48],[1070,4,3,48,51],[1072,1,1,51,52],[1073,1,1,52,53],[1076,1,1,53,54]]],[46,16,15,54,69,[[1078,1,1,54,55],[1080,1,1,55,56],[1081,2,2,56,58],[1082,2,2,58,60],[1086,1,1,60,61],[1087,2,2,61,63],[1088,2,2,63,65],[1090,5,4,65,69]]],[47,6,6,69,75,[[1091,1,1,69,70],[1092,2,2,70,72],[1094,2,2,72,74],[1095,1,1,74,75]]],[48,1,1,75,76,[[1098,1,1,75,76]]],[49,1,1,76,77,[[1105,1,1,76,77]]],[50,2,2,77,79,[[1107,2,2,77,79]]],[51,6,6,79,85,[[1112,2,2,79,81],[1113,2,2,81,83],[1114,2,2,83,85]]],[52,1,1,85,86,[[1117,1,1,85,86]]],[55,2,2,86,88,[[1131,2,2,86,88]]],[57,5,5,88,93,[[1134,1,1,88,89],[1135,1,1,89,90],[1142,1,1,90,91],[1144,2,2,91,93]]],[60,1,1,93,94,[[1156,1,1,93,94]]],[61,6,6,94,100,[[1161,1,1,94,95],[1162,5,5,95,100]]],[63,1,1,100,101,[[1165,1,1,100,101]]]],[23294,23393,23719,23789,24209,24566,24616,25314,25716,25976,26012,26060,26178,26299,26326,26363,26429,26461,26464,26468,26770,26781,26957,26981,27011,27031,27042,27091,27105,27298,27306,27394,27452,27632,27639,27671,27676,27689,27749,27777,28072,28139,28386,28406,28410,28441,28443,28533,28551,28552,28565,28616,28647,28770,28806,28859,28870,28872,28893,28898,28960,28978,28984,29001,29010,29047,29049,29050,29052,29065,29090,29097,29134,29159,29167,29232,29424,29474,29493,29583,29587,29596,29602,29618,29620,29674,29926,29928,29980,30001,30172,30213,30237,30497,30595,30613,30614,30617,30619,30620,30670]]]]},{"k":"G2250","v":[["*",[389,366,[[39,43,40,0,40,[[930,1,1,0,1],[931,1,1,1,2],[932,1,1,2,3],[934,1,1,3,4],[935,1,1,4,5],[937,1,1,5,6],[938,1,1,6,7],[939,3,3,7,10],[940,3,2,10,12],[941,1,1,12,13],[943,1,1,13,14],[944,1,1,14,15],[945,2,2,15,17],[948,4,4,17,21],[950,2,2,21,23],[951,1,1,23,24],[952,9,7,24,31],[953,1,1,31,32],[954,4,4,32,36],[955,3,3,36,39],[956,1,1,39,40]]],[40,28,26,40,66,[[957,2,2,40,42],[958,3,2,42,44],[960,2,2,44,46],[961,1,1,46,47],[962,2,2,47,49],[964,3,3,49,52],[965,2,2,52,54],[966,1,1,54,55],[969,6,5,55,60],[970,5,5,60,65],[971,1,1,65,66]]],[41,85,79,66,145,[[973,11,11,66,77],[974,9,9,77,86],[976,5,4,86,90],[977,3,2,90,92],[978,3,3,92,95],[980,1,1,95,96],[981,7,7,96,103],[982,1,1,103,104],[983,1,1,104,105],[984,1,1,105,106],[985,4,3,106,109],[986,1,1,109,110],[987,1,1,110,111],[988,1,1,111,112],[989,12,9,112,121],[990,2,2,121,123],[991,3,3,123,126],[992,1,1,126,127],[993,5,5,127,132],[994,3,3,132,135],[995,4,4,135,139],[996,6,6,139,145]]],[42,30,29,145,174,[[997,1,1,145,146],[998,4,4,146,150],[1000,2,2,150,152],[1001,1,1,152,153],[1002,4,4,153,157],[1003,1,1,157,158],[1004,1,1,158,159],[1005,1,1,159,160],[1007,6,5,160,165],[1008,3,3,165,168],[1010,1,1,168,169],[1012,2,2,169,171],[1015,1,1,171,172],[1016,2,2,172,174]]],[43,94,90,174,264,[[1018,5,5,174,179],[1019,9,9,179,188],[1020,2,2,188,190],[1022,3,3,190,193],[1023,1,1,193,194],[1024,4,4,194,198],[1025,1,1,198,199],[1026,6,6,199,205],[1027,4,4,205,209],[1028,1,1,209,210],[1029,3,3,210,213],[1030,3,3,213,216],[1032,2,2,216,218],[1033,5,5,218,223],[1034,3,3,223,226],[1035,1,1,226,227],[1036,1,1,227,228],[1037,7,5,228,233],[1038,9,8,233,241],[1040,2,2,241,243],[1041,3,3,243,246],[1042,4,4,246,250],[1043,3,3,250,253],[1044,6,5,253,258],[1045,6,6,258,264]]],[44,12,9,264,273,[[1047,2,2,264,266],[1053,1,1,266,267],[1055,1,1,267,268],[1056,1,1,268,269],[1058,2,2,269,271],[1059,5,2,271,273]]],[45,7,7,273,280,[[1062,1,1,273,274],[1064,1,1,274,275],[1065,1,1,275,276],[1066,1,1,276,277],[1071,1,1,277,278],[1076,2,2,278,280]]],[46,6,4,280,284,[[1078,1,1,280,281],[1081,2,1,281,282],[1083,2,1,282,283],[1088,1,1,283,284]]],[47,2,2,284,286,[[1091,1,1,284,285],[1094,1,1,285,286]]],[48,3,3,286,289,[[1100,1,1,286,287],[1101,1,1,287,288],[1102,1,1,288,289]]],[49,4,4,289,293,[[1103,3,3,289,292],[1104,1,1,292,293]]],[50,2,2,293,295,[[1107,2,2,293,295]]],[51,6,6,295,301,[[1112,1,1,295,296],[1113,1,1,296,297],[1115,4,4,297,301]]],[52,3,3,301,304,[[1116,1,1,301,302],[1117,1,1,302,303],[1118,1,1,303,304]]],[53,1,1,304,305,[[1123,1,1,304,305]]],[54,5,5,305,310,[[1125,3,3,305,308],[1127,1,1,308,309],[1128,1,1,309,310]]],[57,18,18,310,328,[[1133,1,1,310,311],[1135,2,2,311,313],[1136,3,3,313,316],[1137,1,1,316,317],[1139,2,2,317,319],[1140,3,3,319,322],[1142,4,4,322,326],[1143,1,1,326,327],[1144,1,1,327,328]]],[58,2,2,328,330,[[1150,2,2,328,330]]],[59,3,3,330,333,[[1152,1,1,330,331],[1153,2,2,331,333]]],[60,12,10,333,343,[[1156,1,1,333,334],[1157,4,3,334,337],[1158,7,6,337,343]]],[61,1,1,343,344,[[1162,1,1,343,344]]],[64,1,1,344,345,[[1166,1,1,344,345]]],[65,21,21,345,366,[[1167,1,1,345,346],[1168,2,2,346,348],[1170,1,1,348,349],[1172,1,1,349,350],[1173,1,1,350,351],[1174,1,1,351,352],[1175,2,2,352,354],[1176,1,1,354,355],[1177,4,4,355,359],[1178,2,2,359,361],[1180,1,1,361,362],[1182,1,1,362,363],[1184,1,1,363,364],[1186,1,1,364,365],[1187,1,1,365,366]]]],[23170,23193,23211,23316,23338,23394,23432,23471,23481,23483,23525,23529,23540,23665,23693,23701,23723,23794,23798,23804,23811,23895,23918,23948,23976,23979,23986,23993,23994,23995,24007,24021,24056,24083,24109,24115,24169,24192,24193,24215,24224,24228,24261,24280,24350,24358,24369,24418,24428,24501,24502,24531,24540,24569,24622,24734,24736,24737,24741,24749,24755,24766,24779,24803,24812,24855,24898,24900,24911,24913,24916,24917,24918,24932,24952,24968,24973,24974,24979,24994,24995,25009,25010,25016,25017,25019,25065,25079,25088,25105,25124,25142,25158,25159,25169,25267,25313,25323,25324,25329,25337,25338,25352,25375,25408,25505,25532,25534,25549,25558,25601,25639,25655,25673,25675,25677,25678,25679,25680,25681,25682,25695,25721,25773,25774,25778,25780,25832,25848,25849,25860,25863,25871,25917,25930,25942,25947,25964,25989,25998,26004,26009,26012,26020,26037,26083,26096,26107,26114,26115,26196,26199,26219,26296,26297,26301,26311,26365,26437,26444,26529,26532,26540,26547,26576,26581,26587,26628,26688,26749,26752,26856,26886,26893,26925,26926,26928,26938,26945,26950,26964,26966,26967,26969,26978,26990,26995,26996,26998,27020,27095,27096,27101,27102,27124,27142,27157,27161,27177,27225,27235,27239,27240,27253,27259,27262,27289,27299,27307,27334,27340,27355,27358,27376,27393,27403,27449,27478,27488,27495,27496,27501,27518,27534,27540,27554,27575,27594,27632,27642,27644,27652,27657,27668,27669,27671,27674,27679,27690,27691,27702,27735,27746,27770,27780,27793,27797,27802,27809,27810,27830,27836,27845,27862,27875,27884,27888,27894,27906,27911,27912,27913,27916,27922,27967,27978,28152,28209,28217,28278,28279,28285,28286,28371,28423,28436,28459,28575,28722,28749,28814,28875,28900,29017,29075,29141,29302,29320,29350,29366,29367,29371,29407,29471,29474,29579,29600,29623,29625,29626,29629,29659,29663,29686,29768,29812,29821,29827,29854,29878,29965,30003,30008,30018,30021,30022,30037,30067,30091,30100,30101,30102,30144,30149,30158,30165,30202,30222,30357,30359,30411,30434,30444,30498,30508,30509,30513,30525,30529,30530,30532,30534,30540,30620,30678,30707,30727,30730,30776,30810,30825,30839,30846,30855,30868,30875,30878,30881,30883,30897,30901,30937,30968,31001,31048,31078]]],["+",[31,29,[[39,2,2,0,2,[[954,1,1,0,1],[956,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,6,6,3,9,[[974,1,1,3,4],[981,1,1,4,5],[983,1,1,5,6],[988,1,1,6,7],[991,1,1,7,8],[994,1,1,8,9]]],[43,12,12,9,21,[[1019,2,2,9,11],[1020,1,1,11,12],[1022,1,1,12,13],[1032,1,1,13,14],[1033,1,1,14,15],[1034,2,2,15,17],[1035,1,1,17,18],[1036,1,1,18,19],[1043,1,1,19,20],[1044,1,1,20,21]]],[44,2,1,21,22,[[1059,2,1,21,22]]],[45,1,1,22,23,[[1076,1,1,22,23]]],[46,3,2,23,25,[[1081,2,1,23,24],[1088,1,1,24,25]]],[57,3,3,25,28,[[1135,1,1,25,26],[1139,1,1,26,27],[1142,1,1,27,28]]],[60,1,1,28,29,[[1158,1,1,28,29]]]],[24109,24215,24803,25009,25324,25408,25639,25778,25917,26995,26996,26998,27101,27449,27488,27534,27540,27575,27594,27836,27884,28285,28749,28875,29017,30008,30091,30144,30540]]],["day",[194,187,[[39,21,21,0,21,[[934,1,1,0,1],[935,1,1,1,2],[938,1,1,2,3],[939,2,2,3,5],[940,1,1,5,6],[941,1,1,6,7],[944,1,1,7,8],[945,1,1,8,9],[948,4,4,9,13],[950,2,2,13,15],[952,3,3,15,18],[953,1,1,18,19],[954,1,1,19,20],[955,1,1,20,21]]],[40,10,10,21,31,[[960,2,2,21,23],[961,1,1,23,24],[962,2,2,24,26],[965,1,1,26,27],[966,1,1,27,28],[969,1,1,28,29],[970,2,2,29,31]]],[41,39,38,31,69,[[973,3,3,31,34],[974,1,1,34,35],[976,2,2,35,37],[977,1,1,37,38],[978,2,2,38,40],[980,1,1,40,41],[981,3,3,41,44],[982,1,1,44,45],[984,1,1,45,46],[985,3,3,46,49],[986,1,1,49,50],[989,7,6,50,56],[990,2,2,56,58],[991,1,1,58,59],[993,1,1,59,60],[994,2,2,60,62],[995,2,2,62,64],[996,5,5,64,69]]],[42,21,20,69,89,[[997,1,1,69,70],[998,1,1,70,71],[1001,1,1,71,72],[1002,4,4,72,76],[1003,1,1,76,77],[1004,1,1,77,78],[1005,1,1,78,79],[1007,4,3,79,82],[1008,2,2,82,84],[1010,1,1,84,85],[1012,2,2,85,87],[1015,1,1,87,88],[1016,1,1,88,89]]],[43,32,31,89,120,[[1018,2,2,89,91],[1019,5,5,91,96],[1024,2,2,96,98],[1026,1,1,98,99],[1027,2,2,99,101],[1029,2,2,101,103],[1030,1,1,103,104],[1033,1,1,104,105],[1034,1,1,105,106],[1037,4,4,106,110],[1038,2,2,110,112],[1040,2,2,112,114],[1043,2,2,114,116],[1044,3,2,116,118],[1045,2,2,118,120]]],[44,10,9,120,129,[[1047,2,2,120,122],[1053,1,1,122,123],[1055,1,1,123,124],[1056,1,1,124,125],[1058,2,2,125,127],[1059,3,2,127,129]]],[45,5,5,129,134,[[1062,1,1,129,130],[1064,1,1,130,131],[1066,1,1,131,132],[1071,1,1,132,133],[1076,1,1,133,134]]],[46,3,2,134,136,[[1078,1,1,134,135],[1083,2,1,135,136]]],[48,2,2,136,138,[[1100,1,1,136,137],[1102,1,1,137,138]]],[49,4,4,138,142,[[1103,3,3,138,141],[1104,1,1,141,142]]],[50,2,2,142,144,[[1107,2,2,142,144]]],[51,6,6,144,150,[[1112,1,1,144,145],[1113,1,1,145,146],[1115,4,4,146,150]]],[52,3,3,150,153,[[1116,1,1,150,151],[1117,1,1,151,152],[1118,1,1,152,153]]],[53,1,1,153,154,[[1123,1,1,153,154]]],[54,4,4,154,158,[[1125,3,3,154,157],[1128,1,1,157,158]]],[57,6,6,158,164,[[1135,1,1,158,159],[1136,3,3,159,162],[1140,1,1,162,163],[1142,1,1,163,164]]],[58,1,1,164,165,[[1150,1,1,164,165]]],[59,1,1,165,166,[[1152,1,1,165,166]]],[60,9,7,166,173,[[1156,1,1,166,167],[1157,3,2,167,169],[1158,5,4,169,173]]],[61,1,1,173,174,[[1162,1,1,173,174]]],[64,1,1,174,175,[[1166,1,1,174,175]]],[65,12,12,175,187,[[1167,1,1,175,176],[1170,1,1,176,177],[1172,1,1,177,178],[1173,1,1,178,179],[1174,1,1,179,180],[1175,1,1,180,181],[1178,1,1,181,182],[1180,1,1,182,183],[1182,1,1,183,184],[1184,1,1,184,185],[1186,1,1,185,186],[1187,1,1,186,187]]]],[23316,23338,23432,23481,23483,23525,23540,23693,23723,23794,23798,23804,23811,23895,23918,23993,23995,24007,24021,24083,24193,24350,24358,24369,24418,24428,24569,24622,24749,24766,24779,24913,24952,24973,25010,25079,25105,25124,25159,25169,25267,25313,25323,25338,25375,25505,25532,25534,25549,25558,25655,25675,25678,25680,25681,25682,25695,25721,25773,25860,25871,25930,25947,25989,25998,26004,26012,26020,26037,26083,26096,26219,26296,26297,26301,26311,26365,26437,26444,26532,26547,26576,26587,26628,26688,26749,26752,26856,26886,26925,26945,26950,26964,26969,26978,26990,27124,27142,27240,27262,27299,27355,27358,27376,27518,27554,27642,27644,27652,27657,27671,27690,27735,27746,27830,27845,27888,27894,27912,27922,27967,27978,28152,28209,28217,28278,28279,28285,28286,28371,28423,28459,28575,28722,28814,28900,29302,29350,29366,29367,29371,29407,29471,29474,29579,29600,29623,29625,29626,29629,29659,29663,29686,29768,29812,29821,29827,29878,30003,30018,30021,30022,30101,30158,30359,30411,30498,30508,30509,30529,30530,30532,30534,30620,30678,30707,30776,30810,30825,30839,30855,30901,30937,30968,31001,31048,31078]]],["day's",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25017]]],["days",[154,144,[[39,20,18,0,18,[[930,1,1,0,1],[931,1,1,1,2],[932,1,1,2,3],[937,1,1,3,4],[939,1,1,4,5],[940,2,1,5,6],[943,1,1,6,7],[945,1,1,7,8],[951,1,1,8,9],[952,6,5,9,14],[954,2,2,14,16],[955,2,2,16,18]]],[40,17,15,18,33,[[957,2,2,18,20],[958,3,2,20,22],[964,3,3,22,25],[965,1,1,25,26],[969,5,4,26,30],[970,2,2,30,32],[971,1,1,32,33]]],[41,34,30,33,63,[[973,6,6,33,39],[974,6,6,39,45],[976,3,2,45,47],[977,2,1,47,48],[978,1,1,48,49],[981,2,2,49,51],[985,1,1,51,52],[987,1,1,52,53],[989,5,3,53,56],[991,1,1,56,57],[992,1,1,57,58],[993,3,3,58,61],[995,1,1,61,62],[996,1,1,62,63]]],[42,9,9,63,72,[[998,3,3,63,66],[1000,2,2,66,68],[1007,2,2,68,70],[1008,1,1,70,71],[1016,1,1,71,72]]],[43,48,46,72,118,[[1018,3,3,72,75],[1019,2,2,75,77],[1020,1,1,77,78],[1022,2,2,78,80],[1023,1,1,80,81],[1024,2,2,81,83],[1026,5,5,83,88],[1027,2,2,88,90],[1028,1,1,90,91],[1029,1,1,91,92],[1030,2,2,92,94],[1032,1,1,94,95],[1033,2,2,95,97],[1037,3,1,97,98],[1038,7,7,98,105],[1041,3,3,105,108],[1042,4,4,108,112],[1044,2,2,112,114],[1045,4,4,114,118]]],[47,2,2,118,120,[[1091,1,1,118,119],[1094,1,1,119,120]]],[48,1,1,120,121,[[1101,1,1,120,121]]],[54,1,1,121,122,[[1127,1,1,121,122]]],[57,9,9,122,131,[[1133,1,1,122,123],[1137,1,1,123,124],[1139,1,1,124,125],[1140,2,2,125,127],[1142,2,2,127,129],[1143,1,1,129,130],[1144,1,1,130,131]]],[58,1,1,131,132,[[1150,1,1,131,132]]],[59,2,2,132,134,[[1153,2,2,132,134]]],[60,1,1,134,135,[[1158,1,1,134,135]]],[65,9,9,135,144,[[1168,2,2,135,137],[1175,1,1,137,138],[1176,1,1,138,139],[1177,4,4,139,143],[1178,1,1,143,144]]]],[23170,23193,23211,23394,23471,23529,23665,23701,23948,23976,23979,23986,23994,23995,24056,24115,24169,24192,24224,24228,24261,24280,24501,24502,24531,24540,24734,24736,24737,24741,24755,24812,24855,24898,24916,24917,24918,24932,24968,24974,24979,24994,24995,25016,25019,25065,25088,25142,25158,25329,25337,25532,25601,25673,25677,25679,25774,25780,25832,25848,25849,25964,26009,26107,26114,26115,26196,26199,26529,26540,26581,26893,26926,26928,26938,26966,26967,27020,27095,27096,27102,27157,27161,27225,27235,27239,27253,27259,27289,27307,27334,27340,27393,27403,27478,27495,27501,27632,27668,27669,27674,27679,27690,27691,27702,27770,27780,27793,27797,27802,27809,27810,27862,27875,27906,27911,27913,27916,29075,29141,29320,29854,29965,30037,30067,30100,30102,30149,30165,30202,30222,30357,30434,30444,30525,30727,30730,30846,30868,30875,30878,30881,30883,30897]]],["judgment",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28436]]],["on",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27496]]],["time",[5,5,[[41,3,3,0,3,[[981,1,1,0,1],[993,1,1,1,2],[995,1,1,2,3]]],[43,1,1,3,4,[[1025,1,1,3,4]]],[60,1,1,4,5,[[1157,1,1,4,5]]]],[25352,25863,25942,27177,30513]]],["years",[2,2,[[41,2,2,0,2,[[973,2,2,0,2]]]],[24900,24911]]]]},{"k":"G2251","v":[["*",[9,9,[[43,3,3,0,3,[[1019,1,1,0,1],[1041,1,1,1,2],[1043,1,1,2,3]]],[44,1,1,3,4,[[1060,1,1,3,4]]],[45,1,1,4,5,[[1076,1,1,4,5]]],[54,1,1,5,6,[[1128,1,1,5,6]]],[55,1,1,6,7,[[1131,1,1,6,7]]],[61,2,2,7,9,[[1159,1,1,7,8],[1160,1,1,8,9]]]],[26960,27775,27828,28307,28749,29885,29937,30543,30552]]],["our",[6,6,[[43,3,3,0,3,[[1019,1,1,0,1],[1041,1,1,1,2],[1043,1,1,2,3]]],[44,1,1,3,4,[[1060,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]],[61,1,1,5,6,[[1159,1,1,5,6]]]],[26960,27775,27828,28307,29885,30543]]],["ours",[2,2,[[55,1,1,0,1,[[1131,1,1,0,1]]],[61,1,1,1,2,[[1160,1,1,1,2]]]],[29937,30552]]],["your",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28749]]]]},{"k":"G2252","v":[["*",[16,16,[[39,3,3,0,3,[[953,3,3,0,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[42,3,3,4,7,[[1007,1,1,4,5],[1012,1,1,5,6],[1013,1,1,6,7]]],[43,6,6,7,13,[[1027,1,1,7,8],[1028,3,3,8,11],[1039,2,2,11,13]]],[45,1,1,13,14,[[1074,1,1,13,14]]],[47,2,2,14,16,[[1091,2,2,14,16]]]],[24043,24044,24051,24803,26538,26730,26771,27289,27312,27318,27324,27723,27724,28676,29067,29079]]],["+",[2,2,[[43,1,1,0,1,[[1039,1,1,0,1]]],[47,1,1,1,2,[[1091,1,1,1,2]]]],[27723,29067]]],["was",[14,14,[[39,3,3,0,3,[[953,3,3,0,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[42,3,3,4,7,[[1007,1,1,4,5],[1012,1,1,5,6],[1013,1,1,6,7]]],[43,5,5,7,12,[[1027,1,1,7,8],[1028,3,3,8,11],[1039,1,1,11,12]]],[45,1,1,12,13,[[1074,1,1,12,13]]],[47,1,1,13,14,[[1091,1,1,13,14]]]],[24043,24044,24051,24803,26538,26730,26771,27289,27312,27318,27324,27724,28676,29079]]]]},{"k":"G2253","v":[["dead",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25393]]]]},{"k":"G2254","v":[["*",[179,169,[[39,19,19,0,19,[[931,1,1,0,1],[934,2,2,1,3],[936,2,2,3,5],[941,1,1,5,6],[943,2,2,6,8],[947,1,1,8,9],[948,1,1,9,10],[949,1,1,10,11],[950,2,2,11,13],[952,1,1,13,14],[953,3,3,14,17],[954,2,2,17,19]]],[40,11,10,19,29,[[957,1,1,19,20],[965,3,2,20,22],[966,2,2,22,24],[968,2,2,24,26],[969,1,1,26,27],[970,1,1,27,28],[972,1,1,28,29]]],[41,28,25,29,54,[[973,4,4,29,33],[974,2,2,33,35],[976,1,1,35,36],[979,2,2,36,38],[981,1,1,38,39],[982,2,2,39,41],[983,3,2,41,43],[985,1,1,43,44],[989,1,1,44,45],[992,4,4,45,49],[994,2,2,49,51],[995,1,1,51,52],[996,4,2,52,54]]],[42,16,15,54,69,[[997,1,1,54,55],[998,1,1,55,56],[1000,2,2,56,58],[1002,2,2,58,60],[1004,1,1,60,61],[1006,1,1,61,62],[1007,1,1,62,63],[1010,4,3,63,66],[1012,1,1,66,67],[1013,1,1,67,68],[1014,1,1,68,69]]],[43,34,33,69,102,[[1018,3,3,69,72],[1019,1,1,72,73],[1020,1,1,73,74],[1023,1,1,74,75],[1024,2,2,75,77],[1027,2,2,77,79],[1028,2,2,79,81],[1030,2,2,81,83],[1031,1,1,83,84],[1032,4,4,84,88],[1033,5,4,88,92],[1036,1,1,92,93],[1037,1,1,93,94],[1038,3,3,94,97],[1042,1,1,97,98],[1044,1,1,98,99],[1045,3,3,99,102]]],[44,5,5,102,107,[[1050,1,1,102,103],[1053,2,2,103,105],[1054,1,1,105,106],[1057,1,1,106,107]]],[45,7,7,107,114,[[1062,2,2,107,109],[1063,2,2,109,111],[1065,1,1,111,112],[1069,1,1,112,113],[1076,1,1,113,114]]],[46,12,12,114,126,[[1078,1,1,114,115],[1081,2,2,115,117],[1082,3,3,117,120],[1083,1,1,120,121],[1084,1,1,121,122],[1085,2,2,122,124],[1087,2,2,124,126]]],[48,3,3,126,129,[[1097,1,1,126,127],[1099,1,1,127,128],[1102,1,1,128,129]]],[50,3,3,129,132,[[1107,1,1,129,130],[1108,1,1,130,131],[1110,1,1,131,132]]],[51,2,2,132,134,[[1112,1,1,132,133],[1113,1,1,133,134]]],[53,1,1,134,135,[[1124,1,1,134,135]]],[54,3,3,135,138,[[1125,3,3,135,138]]],[57,8,7,138,145,[[1133,1,1,138,139],[1136,1,1,139,140],[1137,1,1,140,141],[1139,1,1,141,142],[1142,2,2,142,144],[1144,2,1,144,145]]],[58,3,3,145,148,[[1148,1,1,145,146],[1149,1,1,146,147],[1150,1,1,147,148]]],[59,3,3,148,151,[[1151,1,1,148,149],[1152,1,1,149,150],[1154,1,1,150,151]]],[60,3,3,151,154,[[1156,3,3,151,154]]],[61,17,14,154,168,[[1159,4,4,154,158],[1160,1,1,158,159],[1161,4,3,159,162],[1162,6,4,162,166],[1163,2,2,166,168]]],[62,1,1,168,169,[[1164,1,1,168,169]]]],[23207,23293,23294,23374,23376,23575,23648,23666,23789,23804,23851,23889,23897,23960,24016,24017,24019,24117,24122,24239,24560,24576,24623,24625,24684,24692,24721,24769,24876,24894,24895,24962,24967,24988,25021,25097,25200,25211,25314,25374,25380,25408,25409,25543,25656,25781,25793,25801,25807,25872,25931,25953,26015,26023,26058,26113,26168,26181,26291,26309,26386,26505,26573,26676,26677,26690,26743,26780,26816,26940,26944,26945,26978,27008,27115,27154,27156,27300,27301,27320,27324,27395,27409,27431,27449,27450,27467,27470,27492,27499,27500,27504,27612,27640,27680,27682,27687,27820,27857,27901,27914,27921,28052,28120,28148,28184,28251,28381,28393,28404,28406,28439,28533,28775,28808,28871,28876,28882,28895,28896,28910,28923,28937,28939,28979,28984,29215,29271,29349,29473,29508,29545,29578,29596,29805,29816,29818,29823,29965,30027,30041,30090,30148,30153,30213,30322,30342,30371,30386,30420,30449,30480,30482,30483,30542,30548,30549,30550,30575,30580,30602,30603,30612,30615,30616,30619,30635,30644,30647]]],["+",[6,6,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,2,2,1,3,[[957,1,1,1,2],[972,1,1,2,3]]],[41,1,1,3,4,[[976,1,1,3,4]]],[51,1,1,4,5,[[1113,1,1,4,5]]],[57,1,1,5,6,[[1136,1,1,5,6]]]],[23374,24239,24876,25097,29596,30027]]],["We",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[25314,27687]]],["our",[3,3,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]],[43,1,1,2,3,[[1036,1,1,2,3]]]],[24684,25656,27612]]],["ours",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25793]]],["us",[160,151,[[39,16,16,0,16,[[931,1,1,0,1],[934,2,2,1,3],[936,1,1,3,4],[941,1,1,4,5],[943,1,1,5,6],[948,1,1,6,7],[949,1,1,7,8],[950,2,2,8,10],[952,1,1,10,11],[953,3,3,11,14],[954,2,2,14,16]]],[40,8,7,16,23,[[965,3,2,16,18],[966,2,2,18,20],[968,1,1,20,21],[969,1,1,21,22],[970,1,1,22,23]]],[41,24,21,23,44,[[973,4,4,23,27],[974,2,2,27,29],[979,2,2,29,31],[982,2,2,31,33],[983,3,2,33,35],[985,1,1,35,36],[992,3,3,36,39],[994,2,2,39,41],[995,1,1,41,42],[996,4,2,42,44]]],[42,16,15,44,59,[[997,1,1,44,45],[998,1,1,45,46],[1000,2,2,46,48],[1002,2,2,48,50],[1004,1,1,50,51],[1006,1,1,51,52],[1007,1,1,52,53],[1010,4,3,53,56],[1012,1,1,56,57],[1013,1,1,57,58],[1014,1,1,58,59]]],[43,31,30,59,89,[[1018,3,3,59,62],[1019,1,1,62,63],[1020,1,1,63,64],[1023,1,1,64,65],[1024,2,2,65,67],[1027,2,2,67,69],[1028,2,2,69,71],[1030,2,2,71,73],[1031,1,1,73,74],[1032,4,4,74,78],[1033,5,4,78,82],[1037,1,1,82,83],[1038,2,2,83,85],[1042,1,1,85,86],[1044,1,1,86,87],[1045,2,2,87,89]]],[44,5,5,89,94,[[1050,1,1,89,90],[1053,2,2,90,92],[1054,1,1,92,93],[1057,1,1,93,94]]],[45,7,7,94,101,[[1062,2,2,94,96],[1063,2,2,96,98],[1065,1,1,98,99],[1069,1,1,99,100],[1076,1,1,100,101]]],[46,12,12,101,113,[[1078,1,1,101,102],[1081,2,2,102,104],[1082,3,3,104,107],[1083,1,1,107,108],[1084,1,1,108,109],[1085,2,2,109,111],[1087,2,2,111,113]]],[48,2,2,113,115,[[1097,1,1,113,114],[1099,1,1,114,115]]],[50,3,3,115,118,[[1107,1,1,115,116],[1108,1,1,116,117],[1110,1,1,117,118]]],[51,1,1,118,119,[[1112,1,1,118,119]]],[53,1,1,119,120,[[1124,1,1,119,120]]],[54,3,3,120,123,[[1125,3,3,120,123]]],[57,5,5,123,128,[[1133,1,1,123,124],[1139,1,1,124,125],[1142,2,2,125,127],[1144,1,1,127,128]]],[58,2,2,128,130,[[1148,1,1,128,129],[1149,1,1,129,130]]],[59,3,3,130,133,[[1151,1,1,130,131],[1152,1,1,131,132],[1154,1,1,132,133]]],[60,3,3,133,136,[[1156,3,3,133,136]]],[61,17,14,136,150,[[1159,4,4,136,140],[1160,1,1,140,141],[1161,4,3,141,144],[1162,6,4,144,148],[1163,2,2,148,150]]],[62,1,1,150,151,[[1164,1,1,150,151]]]],[23207,23293,23294,23376,23575,23648,23804,23851,23889,23897,23960,24016,24017,24019,24117,24122,24560,24576,24623,24625,24692,24721,24769,24894,24895,24962,24967,24988,25021,25200,25211,25374,25380,25408,25409,25543,25781,25801,25807,25872,25931,25953,26015,26023,26058,26113,26168,26181,26291,26309,26386,26505,26573,26676,26677,26690,26743,26780,26816,26940,26944,26945,26978,27008,27115,27154,27156,27300,27301,27320,27324,27395,27409,27431,27449,27450,27467,27470,27492,27499,27500,27504,27640,27680,27682,27820,27857,27901,27914,28052,28120,28148,28184,28251,28381,28393,28404,28406,28439,28533,28775,28808,28871,28876,28882,28895,28896,28910,28923,28937,28939,28979,28984,29215,29271,29473,29508,29545,29578,29805,29816,29818,29823,29965,30090,30148,30153,30213,30322,30342,30386,30420,30449,30480,30482,30483,30542,30548,30549,30550,30575,30580,30602,30603,30612,30615,30616,30619,30635,30644,30647]]],["we",[6,6,[[39,2,2,0,2,[[943,1,1,0,1],[947,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]],[48,1,1,3,4,[[1102,1,1,3,4]]],[57,1,1,4,5,[[1137,1,1,4,5]]],[58,1,1,5,6,[[1150,1,1,5,6]]]],[23666,23789,27921,29349,30041,30371]]],["with",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30213]]]]},{"k":"G2255","v":[["half",[5,5,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[991,1,1,1,2]]],[65,3,3,2,5,[[1177,2,2,2,4],[1178,1,1,4,5]]]],[24430,25739,30881,30883,30905]]]]},{"k":"G2256","v":[["hour",[1,1,[[65,1,1,0,1,[[1174,1,1,0,1]]]],[30828]]]]},{"k":"G2257","v":[["*",[406,361,[[39,13,12,0,12,[[929,1,1,0,1],[934,4,3,1,4],[936,1,1,4,5],[943,1,1,5,6],[948,1,1,6,7],[949,1,1,7,8],[951,1,1,8,9],[953,1,1,9,10],[955,1,1,10,11],[956,1,1,11,12]]],[40,3,3,12,15,[[967,1,1,12,13],[968,2,2,13,15]]],[41,21,20,15,35,[[973,8,8,15,23],[979,1,1,23,24],[981,3,2,24,26],[983,3,3,26,29],[985,1,1,29,30],[988,1,1,30,31],[996,4,4,31,35]]],[42,13,13,35,48,[[999,1,1,35,36],[1000,2,2,36,38],[1002,1,1,38,39],[1003,1,1,39,40],[1004,2,2,40,42],[1005,1,1,42,43],[1006,1,1,43,44],[1007,2,2,44,46],[1008,1,1,46,47],[1015,1,1,47,48]]],[43,44,42,48,90,[[1018,1,1,48,49],[1019,2,2,49,51],[1020,2,2,51,53],[1022,1,1,53,54],[1024,12,10,54,64],[1030,1,1,64,65],[1031,1,1,65,66],[1032,6,6,66,72],[1033,2,2,72,74],[1034,2,2,74,76],[1036,1,1,76,77],[1037,1,1,77,78],[1038,2,2,78,80],[1039,1,1,80,81],[1041,2,2,81,83],[1043,2,2,83,85],[1044,3,3,85,88],[1045,2,2,88,90]]],[44,44,39,90,129,[[1046,2,2,90,92],[1048,1,1,92,93],[1049,6,5,93,98],[1050,7,6,98,104],[1051,3,3,104,107],[1052,2,2,107,109],[1053,9,7,109,116],[1054,1,1,116,117],[1055,1,1,117,118],[1058,1,1,118,119],[1059,2,2,119,121],[1060,3,3,121,124],[1061,6,5,124,129]]],[45,24,21,129,150,[[1062,7,6,129,135],[1063,1,1,135,136],[1065,1,1,136,137],[1066,4,2,137,139],[1067,1,1,139,140],[1070,1,1,140,141],[1071,3,3,141,144],[1073,2,2,144,146],[1076,4,4,146,150]]],[46,56,50,150,200,[[1078,15,13,150,163],[1079,1,1,163,164],[1080,4,3,164,167],[1081,8,8,167,175],[1082,5,5,175,180],[1083,2,1,180,181],[1084,7,6,181,187],[1085,8,7,187,194],[1086,2,2,194,196],[1087,3,3,196,199],[1088,1,1,199,200]]],[47,9,8,200,208,[[1091,3,2,200,202],[1092,1,1,202,203],[1093,2,2,203,205],[1094,1,1,205,206],[1096,2,2,206,208]]],[48,13,13,208,221,[[1097,4,4,208,212],[1098,2,2,212,214],[1099,2,2,214,216],[1100,1,1,216,217],[1101,2,2,217,219],[1102,2,2,219,221]]],[49,5,5,221,226,[[1103,1,1,221,222],[1105,2,2,222,224],[1106,2,2,224,226]]],[50,6,6,226,232,[[1107,3,3,226,229],[1108,1,1,229,230],[1109,1,1,230,231],[1110,1,1,231,232]]],[51,33,27,232,259,[[1111,7,6,232,238],[1112,9,8,238,246],[1113,11,7,246,253],[1114,1,1,253,254],[1115,5,5,254,259]]],[52,22,17,259,276,[[1116,8,7,259,266],[1117,8,5,266,271],[1118,6,5,271,276]]],[53,9,7,276,283,[[1119,6,4,276,280],[1120,1,1,280,281],[1124,2,2,281,283]]],[54,4,4,283,287,[[1125,4,4,283,287]]],[55,7,7,287,294,[[1129,2,2,287,289],[1130,3,3,289,292],[1131,2,2,292,294]]],[56,3,3,294,297,[[1132,3,3,294,297]]],[57,13,12,297,309,[[1133,1,1,297,298],[1135,1,1,298,299],[1136,1,1,299,300],[1138,1,1,300,301],[1139,1,1,301,302],[1141,1,1,302,303],[1142,1,1,303,304],[1143,2,1,304,305],[1144,2,2,305,307],[1145,2,2,307,309]]],[58,3,3,309,312,[[1147,2,2,309,311],[1148,1,1,311,312]]],[59,5,5,312,317,[[1151,1,1,312,313],[1152,2,2,313,315],[1154,2,2,315,317]]],[60,10,9,317,326,[[1156,6,6,317,323],[1158,4,3,323,326]]],[61,24,16,326,342,[[1159,4,3,326,329],[1160,6,2,329,331],[1161,7,5,331,336],[1162,4,3,336,339],[1163,3,3,339,342]]],[62,2,2,342,344,[[1164,2,2,342,344]]],[63,1,1,344,345,[[1165,1,1,344,345]]],[64,5,4,345,349,[[1166,5,4,345,349]]],[65,14,12,349,361,[[1167,1,1,349,350],[1171,1,1,350,351],[1172,1,1,351,352],[1173,3,3,352,355],[1177,2,2,355,357],[1178,3,1,357,358],[1185,2,2,358,360],[1188,1,1,360,361]]]],[23167,23291,23293,23294,23362,23656,23825,23868,23948,24016,24154,24208,24650,24680,24702,24948,24964,24965,24966,24967,24968,24971,24972,25200,25350,25351,25407,25408,25409,25544,25646,26011,26013,26020,26023,26131,26168,26176,26288,26379,26420,26434,26460,26505,26534,26571,26618,26832,26945,26957,26988,27009,27021,27089,27118,27127,27128,27131,27135,27154,27155,27156,27160,27161,27379,27431,27451,27452,27466,27467,27468,27478,27499,27503,27543,27550,27610,27647,27674,27681,27718,27773,27776,27830,27837,27865,27873,27882,27914,27924,27933,27937,27996,28023,28034,28038,28046,28047,28048,28052,28053,28055,28058,28068,28074,28079,28091,28096,28116,28132,28139,28142,28147,28148,28150,28155,28165,28204,28277,28287,28292,28305,28309,28333,28337,28345,28354,28356,28360,28365,28366,28370,28371,28372,28373,28401,28441,28458,28461,28478,28541,28568,28573,28578,28657,28658,28721,28732,28749,28775,28802,28803,28804,28805,28807,28808,28811,28812,28814,28818,28819,28820,28822,28838,28843,28844,28846,28862,28865,28866,28869,28870,28875,28876,28877,28878,28879,28889,28897,28898,28909,28919,28920,28921,28925,28928,28930,28936,28941,28951,28952,28954,28955,28956,28959,28967,28975,28979,28986,29020,29060,29061,29085,29115,29126,29157,29202,29206,29208,29209,29220,29223,29232,29243,29262,29265,29279,29306,29324,29359,29361,29363,29441,29442,29462,29465,29467,29468,29472,29508,29521,29545,29561,29562,29563,29565,29566,29569,29571,29572,29573,29574,29579,29583,29589,29590,29592,29595,29596,29597,29599,29601,29603,29604,29630,29631,29644,29646,29649,29650,29651,29656,29657,29659,29660,29661,29662,29663,29675,29676,29677,29679,29684,29690,29692,29696,29697,29698,29708,29710,29719,29791,29802,29811,29817,29818,29819,29895,29896,29918,29921,29922,29927,29929,29940,29941,29963,29966,29996,30029,30064,30078,30129,30159,30212,30221,30241,30259,30261,30294,30314,30325,30377,30420,30423,30447,30463,30480,30481,30487,30490,30493,30495,30524,30537,30540,30541,30543,30549,30552,30569,30584,30595,30598,30599,30600,30609,30613,30620,30628,30638,30639,30647,30657,30670,30676,30689,30693,30697,30702,30789,30803,30813,30820,30822,30880,30887,30901,31018,31022,31101]]],["+",[6,6,[[42,1,1,0,1,[[1006,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[46,2,2,2,4,[[1078,1,1,2,3],[1082,1,1,3,4]]],[48,1,1,4,5,[[1102,1,1,4,5]]],[55,1,1,5,6,[[1131,1,1,5,6]]]],[26505,28333,28811,28889,29359,29927]]],["Our",[6,6,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,3,3,2,5,[[1000,1,1,2,3],[1002,1,1,3,4],[1007,1,1,4,5]]],[43,1,1,5,6,[[1024,1,1,5,6]]]],[23291,25407,26176,26288,26534,27160]]],["company",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26013]]],["our",[297,270,[[39,9,8,0,8,[[934,3,2,0,2],[936,1,1,2,3],[948,1,1,3,4],[949,1,1,4,5],[951,1,1,5,6],[953,1,1,6,7],[955,1,1,7,8]]],[40,2,2,8,10,[[967,1,1,8,9],[968,1,1,9,10]]],[41,14,14,10,24,[[973,8,8,10,18],[979,1,1,18,19],[983,2,2,19,21],[985,1,1,21,22],[996,2,2,22,24]]],[42,9,9,24,33,[[999,1,1,24,25],[1000,1,1,25,26],[1003,1,1,26,27],[1004,2,2,27,29],[1005,1,1,29,30],[1007,1,1,30,31],[1008,1,1,31,32],[1015,1,1,32,33]]],[43,30,28,33,61,[[1019,2,2,33,35],[1020,2,2,35,37],[1022,1,1,37,38],[1024,10,8,38,46],[1030,1,1,46,47],[1031,1,1,47,48],[1032,4,4,48,52],[1033,1,1,52,53],[1034,1,1,53,54],[1036,1,1,54,55],[1037,1,1,55,56],[1039,1,1,56,57],[1041,1,1,57,58],[1043,1,1,58,59],[1044,1,1,59,60],[1045,1,1,60,61]]],[44,30,29,61,90,[[1046,2,2,61,63],[1048,1,1,63,64],[1049,5,4,64,68],[1050,4,4,68,72],[1051,3,3,72,75],[1052,2,2,75,77],[1053,4,4,77,81],[1054,1,1,81,82],[1055,1,1,82,83],[1058,1,1,83,84],[1060,1,1,84,85],[1061,5,5,85,90]]],[45,21,20,90,110,[[1062,6,6,90,96],[1063,1,1,96,97],[1066,3,2,97,99],[1067,1,1,99,100],[1070,1,1,100,101],[1071,3,3,101,104],[1073,2,2,104,106],[1076,4,4,106,110]]],[46,37,34,110,144,[[1078,10,9,110,119],[1080,3,2,119,121],[1081,6,6,121,127],[1082,2,2,127,129],[1083,2,1,129,130],[1084,5,5,130,135],[1085,4,4,135,139],[1086,1,1,139,140],[1087,3,3,140,143],[1088,1,1,143,144]]],[47,7,6,144,150,[[1091,3,2,144,146],[1092,1,1,146,147],[1093,1,1,147,148],[1096,2,2,148,150]]],[48,10,10,150,160,[[1097,4,4,150,154],[1098,2,2,154,156],[1099,2,2,156,158],[1101,1,1,158,159],[1102,1,1,159,160]]],[49,5,5,160,165,[[1103,1,1,160,161],[1105,2,2,161,163],[1106,2,2,163,165]]],[50,4,4,165,169,[[1107,3,3,165,168],[1109,1,1,168,169]]],[51,26,20,169,189,[[1111,5,4,169,173],[1112,8,7,173,180],[1113,10,6,180,186],[1115,3,3,186,189]]],[52,18,14,189,203,[[1116,7,6,189,195],[1117,7,4,195,199],[1118,4,4,199,203]]],[53,9,7,203,210,[[1119,6,4,203,207],[1120,1,1,207,208],[1124,2,2,208,210]]],[54,4,4,210,214,[[1125,4,4,210,214]]],[55,5,5,214,219,[[1129,2,2,214,216],[1130,2,2,216,218],[1131,1,1,218,219]]],[56,3,3,219,222,[[1132,3,3,219,222]]],[57,7,7,222,229,[[1133,1,1,222,223],[1135,1,1,223,224],[1136,1,1,224,225],[1139,1,1,225,226],[1144,2,2,226,228],[1145,1,1,228,229]]],[58,3,3,229,232,[[1147,2,2,229,231],[1148,1,1,231,232]]],[59,2,2,232,234,[[1151,1,1,232,233],[1152,1,1,233,234]]],[60,9,8,234,242,[[1156,6,6,234,240],[1158,3,2,240,242]]],[61,12,10,242,252,[[1159,3,2,242,244],[1160,1,1,244,245],[1161,5,4,245,249],[1162,2,2,249,251],[1163,1,1,251,252]]],[62,1,1,252,253,[[1164,1,1,252,253]]],[63,1,1,253,254,[[1165,1,1,253,254]]],[64,5,4,254,258,[[1166,5,4,254,258]]],[65,14,12,258,270,[[1167,1,1,258,259],[1171,1,1,259,260],[1172,1,1,260,261],[1173,3,3,261,264],[1177,2,2,264,266],[1178,3,1,266,267],[1185,2,2,267,269],[1188,1,1,269,270]]]],[23293,23294,23362,23825,23868,23948,24016,24154,24650,24702,24948,24964,24965,24966,24967,24968,24971,24972,25200,25408,25409,25544,26011,26023,26131,26168,26379,26420,26434,26460,26571,26618,26832,26957,26988,27009,27021,27089,27118,27127,27128,27131,27135,27154,27155,27161,27379,27431,27452,27467,27468,27478,27503,27543,27610,27647,27718,27776,27830,27865,27924,27933,27937,27996,28023,28034,28046,28047,28048,28052,28058,28068,28074,28079,28091,28096,28116,28132,28139,28142,28155,28165,28204,28277,28309,28337,28345,28354,28356,28360,28365,28366,28370,28371,28372,28373,28401,28458,28461,28478,28541,28568,28573,28578,28657,28658,28721,28732,28749,28775,28802,28803,28804,28805,28807,28808,28812,28818,28822,28843,28846,28862,28865,28869,28870,28875,28876,28878,28879,28909,28919,28920,28921,28928,28930,28941,28954,28955,28956,28959,28975,28979,28986,29020,29060,29061,29085,29126,29202,29206,29208,29209,29220,29223,29232,29243,29262,29265,29324,29361,29363,29441,29442,29462,29465,29467,29468,29472,29521,29561,29562,29563,29565,29571,29572,29573,29574,29579,29589,29590,29592,29595,29597,29599,29601,29603,29630,29644,29649,29650,29651,29657,29659,29660,29661,29662,29675,29676,29677,29684,29690,29692,29696,29697,29698,29708,29710,29719,29791,29802,29811,29817,29818,29819,29895,29896,29918,29921,29929,29940,29941,29963,29966,29996,30029,30078,30221,30241,30261,30294,30314,30325,30377,30423,30480,30481,30487,30490,30493,30495,30537,30540,30541,30549,30552,30584,30598,30599,30600,30613,30620,30628,30657,30670,30676,30689,30693,30697,30702,30789,30803,30813,30820,30822,30880,30887,30901,31018,31022,31101]]],["ours",[3,3,[[40,1,1,0,1,[[968,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]],[46,1,1,2,3,[[1078,1,1,2,3]]]],[24680,28365,28814]]],["us",[80,71,[[39,2,2,0,2,[[929,1,1,0,1],[943,1,1,1,2]]],[41,5,4,2,6,[[981,3,2,2,4],[988,1,1,4,5],[996,1,1,5,6]]],[43,7,7,6,13,[[1018,1,1,6,7],[1024,1,1,7,8],[1032,2,2,8,10],[1034,1,1,10,11],[1041,1,1,11,12],[1045,1,1,12,13]]],[44,10,9,13,22,[[1049,1,1,13,14],[1050,1,1,14,15],[1053,5,4,15,19],[1059,2,2,19,21],[1060,1,1,21,22]]],[45,2,2,22,24,[[1065,1,1,22,23],[1066,1,1,23,24]]],[46,14,13,24,37,[[1078,3,3,24,27],[1079,1,1,27,28],[1080,1,1,28,29],[1081,1,1,29,30],[1082,2,2,30,32],[1084,1,1,32,33],[1085,4,3,33,36],[1086,1,1,36,37]]],[47,2,2,37,39,[[1093,1,1,37,38],[1094,1,1,38,39]]],[48,2,2,39,41,[[1100,1,1,39,40],[1101,1,1,40,41]]],[50,2,2,41,43,[[1108,1,1,41,42],[1110,1,1,42,43]]],[51,7,7,43,50,[[1111,2,2,43,45],[1112,1,1,45,46],[1113,1,1,46,47],[1114,1,1,47,48],[1115,2,2,48,50]]],[52,4,4,50,54,[[1116,1,1,50,51],[1117,1,1,51,52],[1118,2,2,52,54]]],[55,1,1,54,55,[[1130,1,1,54,55]]],[57,5,4,55,59,[[1138,1,1,55,56],[1141,1,1,56,57],[1143,2,1,57,58],[1145,1,1,58,59]]],[59,3,3,59,62,[[1152,1,1,59,60],[1154,2,2,60,62]]],[60,1,1,62,63,[[1158,1,1,62,63]]],[61,12,7,63,70,[[1159,1,1,63,64],[1160,5,1,64,65],[1161,2,2,65,67],[1162,2,1,67,68],[1163,2,2,68,70]]],[62,1,1,70,71,[[1164,1,1,70,71]]]],[23167,23656,25350,25351,25646,26020,26945,27156,27451,27466,27550,27773,27914,28038,28055,28142,28147,28148,28150,28287,28292,28305,28441,28461,28811,28819,28820,28838,28844,28866,28897,28898,28925,28936,28951,28952,28967,29115,29157,29279,29306,29508,29545,29566,29569,29583,29596,29604,29631,29646,29656,29663,29679,29684,29922,30064,30129,30212,30259,30420,30447,30463,30524,30543,30569,30595,30600,30609,30638,30639,30647]]],["we",[12,12,[[39,1,1,0,1,[[956,1,1,0,1]]],[43,6,6,1,7,[[1033,1,1,1,2],[1038,2,2,2,4],[1043,1,1,4,5],[1044,2,2,5,7]]],[44,2,2,7,9,[[1050,2,2,7,9]]],[46,2,2,9,11,[[1081,1,1,9,10],[1084,1,1,10,11]]],[57,1,1,11,12,[[1142,1,1,11,12]]]],[24208,27499,27674,27681,27837,27873,27882,28053,28055,28877,28921,30159]]],["your",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28356]]]]},{"k":"G2258","v":[["*",[451,411,[[39,37,35,0,35,[[929,1,1,0,1],[930,2,2,1,3],[931,1,1,3,4],[932,1,1,4,5],[935,2,2,5,7],[936,1,1,7,8],[937,1,1,8,9],[940,3,3,9,12],[942,4,3,12,15],[943,1,1,15,16],[947,1,1,16,17],[949,2,2,17,19],[950,2,2,19,21],[951,2,1,21,22],[952,1,1,22,23],[953,3,3,23,26],[954,4,4,26,30],[955,4,4,30,34],[956,1,1,34,35]]],[40,60,56,35,91,[[957,9,8,35,43],[958,4,4,43,47],[959,1,1,47,48],[960,4,3,48,51],[961,6,6,51,57],[962,6,6,57,63],[963,1,1,63,64],[964,1,1,64,65],[965,2,2,65,67],[966,3,2,67,69],[967,3,3,69,72],[968,1,1,72,73],[970,8,8,73,81],[971,10,9,81,90],[972,1,1,90,91]]],[41,102,88,91,179,[[973,9,7,91,98],[974,9,8,98,106],[975,1,1,106,107],[976,10,10,107,117],[977,11,7,117,124],[978,3,2,124,126],[979,6,5,126,131],[980,4,4,131,135],[981,5,5,135,140],[982,1,1,140,141],[983,2,1,141,142],[985,3,2,142,144],[986,2,2,144,146],[987,6,4,146,150],[988,3,3,150,153],[989,1,1,153,154],[990,4,4,154,158],[991,4,3,158,161],[992,2,2,161,163],[993,1,1,163,164],[994,2,2,164,166],[995,9,9,166,175],[996,4,4,175,179]]],[42,110,99,179,278,[[997,17,13,179,192],[998,5,5,192,197],[999,6,5,197,202],[1000,3,2,202,204],[1001,4,4,204,208],[1002,4,4,208,212],[1003,4,4,212,216],[1004,3,3,216,219],[1005,7,7,219,226],[1006,4,4,226,230],[1007,11,10,230,240],[1008,5,5,240,245],[1009,3,3,245,248],[1011,1,1,248,249],[1013,1,1,249,250],[1014,14,12,250,262],[1015,10,8,262,270],[1016,4,4,270,274],[1017,4,4,274,278]]],[43,81,78,278,356,[[1018,5,5,278,283],[1019,6,6,283,289],[1020,1,1,289,290],[1021,8,7,290,297],[1022,1,1,297,298],[1024,4,4,298,302],[1025,6,6,302,308],[1026,6,5,308,313],[1027,3,3,313,316],[1028,3,3,316,319],[1029,6,6,319,325],[1030,4,4,325,329],[1031,4,4,329,333],[1033,3,3,333,336],[1034,2,2,336,338],[1035,4,4,338,342],[1036,4,4,342,346],[1037,4,3,346,349],[1038,3,3,349,352],[1039,1,1,352,353],[1040,1,1,353,354],[1044,2,2,354,356]]],[44,5,4,356,360,[[1050,1,1,356,357],[1051,3,2,357,359],[1052,1,1,359,360]]],[45,6,6,360,366,[[1067,1,1,360,361],[1071,2,2,361,363],[1073,2,2,363,365],[1077,1,1,365,366]]],[46,1,1,366,367,[[1082,1,1,366,367]]],[47,7,6,367,373,[[1091,1,1,367,368],[1092,2,2,368,370],[1093,1,1,370,371],[1094,3,2,371,373]]],[48,3,3,373,376,[[1098,2,2,373,375],[1101,1,1,375,376]]],[49,2,2,376,378,[[1104,1,1,376,377],[1105,1,1,377,378]]],[50,1,1,378,379,[[1108,1,1,378,379]]],[51,1,1,379,380,[[1113,1,1,379,380]]],[52,1,1,380,381,[[1118,1,1,380,381]]],[55,1,1,381,382,[[1131,1,1,381,382]]],[57,8,7,382,389,[[1134,1,1,382,383],[1139,2,2,383,385],[1140,3,2,385,387],[1143,1,1,387,388],[1144,1,1,388,389]]],[58,2,2,389,391,[[1146,1,1,389,390],[1150,1,1,390,391]]],[59,1,1,391,392,[[1152,1,1,391,392]]],[60,2,2,392,394,[[1157,1,1,392,393],[1158,1,1,393,394]]],[61,6,4,394,398,[[1159,2,2,394,396],[1160,2,1,396,397],[1161,2,1,397,398]]],[65,14,13,398,411,[[1170,1,1,398,399],[1171,1,1,399,400],[1175,2,2,400,402],[1176,1,1,402,403],[1179,1,1,403,404],[1182,1,1,404,405],[1183,4,3,405,408],[1184,1,1,408,409],[1187,2,2,409,411]]]],[23162,23178,23184,23196,23227,23343,23345,23375,23415,23493,23499,23529,23618,23620,23621,23671,23784,23851,23859,23880,23897,23948,23995,24010,24029,24031,24078,24097,24123,24125,24183,24184,24185,24190,24198,24221,24228,24231,24237,24238,24248,24254,24260,24264,24266,24275,24278,24289,24324,24359,24361,24369,24375,24377,24385,24404,24406,24438,24441,24451,24454,24455,24459,24489,24509,24542,24544,24610,24620,24653,24670,24672,24693,24755,24758,24775,24794,24808,24810,24813,24821,24833,24851,24852,24865,24866,24867,24868,24869,24872,24877,24899,24900,24903,24914,24915,24959,24973,24980,24981,24998,24999,25006,25009,25013,25024,25048,25079,25080,25083,25088,25090,25094,25095,25096,25101,25107,25108,25110,25117,25123,25124,25125,25136,25152,25158,25197,25207,25232,25234,25236,25247,25277,25285,25287,25315,25331,25333,25346,25354,25402,25419,25528,25529,25554,25555,25589,25612,25613,25620,25621,25639,25640,25667,25690,25691,25711,25722,25733,25734,25778,25783,25808,25863,25920,25923,25943,25954,25973,25979,25982,25986,25988,25989,25990,26001,26004,26023,26044,26045,26046,26048,26052,26053,26054,26059,26068,26072,26074,26083,26084,26088,26096,26101,26108,26118,26120,26121,26139,26143,26144,26146,26162,26202,26211,26215,26219,26245,26261,26267,26279,26319,26330,26340,26367,26370,26420,26423,26425,26448,26454,26456,26458,26464,26473,26481,26487,26503,26521,26522,26524,26525,26529,26541,26544,26553,26555,26561,26564,26578,26581,26582,26586,26596,26600,26635,26653,26660,26718,26765,26786,26795,26798,26799,26800,26801,26803,26810,26813,26815,26821,26825,26836,26839,26844,26845,26848,26856,26866,26867,26874,26886,26891,26893,26900,26905,26906,26916,26933,26936,26937,26938,26940,26950,26951,26954,26973,26991,26993,27006,27025,27028,27035,27044,27053,27054,27055,27071,27125,27136,27138,27160,27177,27189,27192,27203,27204,27208,27225,27226,27244,27249,27252,27260,27283,27297,27327,27328,27331,27340,27342,27343,27349,27355,27357,27363,27369,27408,27410,27418,27421,27426,27440,27484,27492,27495,27524,27534,27560,27564,27571,27582,27592,27599,27601,27617,27634,27639,27642,27667,27673,27693,27733,27747,27863,27892,28060,28085,28088,28096,28478,28568,28571,28636,28653,28788,28896,29080,29087,29092,29123,29134,29146,29232,29241,29312,29417,29428,29508,29594,29688,29926,29992,30074,30075,30096,30099,30210,30233,30290,30371,30424,30521,30527,30541,30542,30569,30591,30771,30790,30848,30850,30871,30910,30959,30979,30983,30986,31016,31071,31074]]],["+",[44,44,[[39,4,4,0,4,[[935,1,1,0,1],[937,1,1,1,2],[947,1,1,2,3],[951,1,1,3,4]]],[40,9,9,4,13,[[957,2,2,4,6],[958,1,1,6,7],[966,2,2,7,9],[970,3,3,9,12],[971,1,1,12,13]]],[41,16,16,13,29,[[973,3,3,13,16],[974,1,1,16,17],[976,2,2,17,19],[977,3,3,19,22],[978,1,1,22,23],[986,1,1,23,24],[987,1,1,24,25],[991,1,1,25,26],[995,1,1,26,27],[996,2,2,27,29]]],[42,3,3,29,32,[[1006,1,1,29,30],[1014,2,2,30,32]]],[43,10,10,32,42,[[1018,3,3,32,35],[1019,1,1,35,36],[1025,2,2,36,38],[1027,1,1,38,39],[1031,1,1,39,40],[1033,1,1,40,41],[1035,1,1,41,42]]],[49,1,1,42,43,[[1104,1,1,42,43]]],[57,1,1,43,44,[[1140,1,1,43,44]]]],[23345,23415,23784,23948,24237,24254,24278,24610,24620,24808,24810,24813,24869,24900,24914,24915,25006,25094,25107,25108,25123,25136,25158,25554,25589,25778,25990,26004,26023,26521,26803,26810,26933,26936,26937,26991,27189,27203,27283,27421,27492,27564,29417,30096]]],["Was",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27204]]],["be",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25048]]],["been",[15,15,[[39,4,4,0,4,[[951,1,1,0,1],[953,2,2,1,3],[954,1,1,3,4]]],[41,2,2,4,6,[[976,1,1,4,5],[980,1,1,5,6]]],[42,3,3,6,9,[[1005,1,1,6,7],[1007,2,2,7,9]]],[43,2,2,9,11,[[1021,1,1,9,10],[1031,1,1,10,11]]],[47,1,1,11,12,[[1093,1,1,11,12]]],[57,1,1,12,13,[[1140,1,1,12,13]]],[60,1,1,13,14,[[1157,1,1,13,14]]],[61,1,1,14,15,[[1160,1,1,14,15]]]],[23948,24029,24031,24078,25079,25247,26458,26544,26555,27035,27440,29123,30099,30521,30569]]],["had",[11,11,[[41,4,4,0,4,[[979,1,1,0,1],[980,1,1,1,2],[982,1,1,2,3],[995,1,1,3,4]]],[43,6,6,4,10,[[1021,1,1,4,5],[1024,1,1,5,6],[1037,1,1,6,7],[1038,2,2,7,9],[1039,1,1,9,10]]],[47,1,1,10,11,[[1091,1,1,10,11]]]],[25236,25287,25402,25986,27054,27160,27639,27673,27693,27733,29080]]],["held",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27418]]],["is",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29146]]],["was",[257,235,[[39,19,18,0,18,[[929,1,1,0,1],[930,2,2,1,3],[931,1,1,3,4],[935,1,1,4,5],[936,1,1,5,6],[940,3,3,6,9],[942,3,2,9,11],[949,2,2,11,13],[954,1,1,13,14],[955,3,3,14,17],[956,1,1,17,18]]],[40,33,32,18,50,[[957,6,5,18,23],[958,1,1,23,24],[959,1,1,24,25],[960,3,3,25,28],[961,5,5,28,33],[962,3,3,33,36],[963,1,1,36,37],[967,3,3,37,40],[970,1,1,40,41],[971,8,8,41,49],[972,1,1,49,50]]],[41,62,53,50,103,[[973,3,3,50,53],[974,7,6,53,59],[976,4,4,59,63],[977,5,4,63,67],[978,2,1,67,68],[979,4,3,68,71],[980,1,1,71,72],[981,2,2,72,74],[983,2,1,74,75],[985,3,2,75,77],[986,1,1,77,78],[987,5,3,78,81],[988,3,3,81,84],[989,1,1,84,85],[990,4,4,85,89],[991,3,2,89,91],[992,1,1,91,92],[993,1,1,92,93],[994,2,2,93,95],[995,7,7,95,102],[996,1,1,102,103]]],[42,83,74,103,177,[[997,16,12,103,115],[998,4,4,115,119],[999,5,4,119,123],[1000,3,2,123,125],[1001,4,4,125,129],[1002,4,4,129,133],[1003,4,4,133,137],[1004,1,1,137,138],[1005,4,4,138,142],[1006,1,1,142,143],[1007,9,9,143,152],[1008,3,3,152,155],[1009,3,3,155,158],[1014,10,9,158,167],[1015,9,7,167,174],[1016,2,2,174,176],[1017,1,1,176,177]]],[43,36,35,177,212,[[1018,1,1,177,178],[1019,1,1,178,179],[1020,1,1,179,180],[1021,3,3,180,183],[1024,3,3,183,186],[1025,3,3,186,189],[1026,6,5,189,194],[1027,2,2,194,196],[1028,2,2,196,198],[1029,4,4,198,202],[1030,2,2,202,204],[1031,1,1,204,205],[1033,1,1,205,206],[1034,1,1,206,207],[1035,1,1,207,208],[1036,2,2,208,210],[1038,1,1,210,211],[1044,1,1,211,212]]],[44,1,1,212,213,[[1050,1,1,212,213]]],[45,2,2,213,215,[[1071,1,1,213,214],[1077,1,1,214,215]]],[46,1,1,215,216,[[1082,1,1,215,216]]],[47,1,1,216,217,[[1092,1,1,216,217]]],[50,1,1,217,218,[[1108,1,1,217,218]]],[57,3,3,218,221,[[1139,1,1,218,219],[1143,1,1,219,220],[1144,1,1,220,221]]],[58,2,2,221,223,[[1146,1,1,221,222],[1150,1,1,222,223]]],[61,3,3,223,226,[[1159,2,2,223,225],[1161,1,1,225,226]]],[65,10,9,226,235,[[1170,1,1,226,227],[1171,1,1,227,228],[1176,1,1,228,229],[1179,1,1,229,230],[1183,4,3,230,233],[1187,2,2,233,235]]]],[23162,23178,23184,23196,23343,23375,23493,23499,23529,23620,23621,23851,23859,24125,24183,24185,24190,24198,24221,24228,24238,24248,24260,24264,24289,24324,24359,24361,24369,24375,24385,24404,24406,24454,24455,24459,24489,24653,24670,24672,24755,24833,24851,24852,24865,24866,24867,24868,24872,24877,24900,24959,24973,24980,24998,24999,25009,25013,25024,25080,25095,25096,25101,25110,25124,25125,25136,25152,25197,25207,25232,25277,25346,25354,25419,25528,25529,25555,25612,25613,25620,25621,25639,25640,25667,25690,25691,25711,25722,25733,25734,25783,25863,25920,25923,25943,25954,25973,25979,25982,25988,25989,26001,26045,26046,26048,26052,26053,26054,26059,26072,26074,26083,26084,26088,26096,26108,26118,26120,26121,26143,26144,26146,26162,26202,26211,26215,26219,26245,26261,26267,26279,26319,26330,26340,26367,26370,26425,26448,26454,26456,26464,26503,26524,26525,26529,26541,26553,26555,26561,26564,26578,26581,26582,26586,26635,26653,26660,26786,26795,26798,26799,26800,26801,26803,26813,26825,26839,26844,26845,26848,26856,26866,26867,26874,26891,26905,26940,26973,27006,27025,27044,27055,27125,27136,27138,27177,27192,27208,27225,27226,27244,27249,27252,27260,27297,27328,27331,27342,27343,27355,27357,27369,27408,27426,27484,27524,27582,27601,27617,27667,27863,28060,28571,28788,28896,29092,29508,30074,30210,30233,30290,30371,30541,30542,30591,30771,30790,30871,30910,30979,30983,30986,31071,31074]]],["wast",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]],[65,1,1,3,4,[[1182,1,1,3,4]]]],[24123,24821,26916,30959]]],["were",[116,112,[[39,9,9,0,9,[[932,1,1,0,1],[942,1,1,1,2],[943,1,1,2,3],[950,2,2,3,5],[952,1,1,5,6],[953,1,1,6,7],[954,1,1,7,8],[955,1,1,8,9]]],[40,17,17,9,26,[[957,1,1,9,10],[958,2,2,10,12],[960,1,1,12,13],[961,1,1,13,14],[962,3,3,14,17],[964,1,1,17,18],[965,2,2,18,20],[966,1,1,20,21],[968,1,1,21,22],[970,3,3,22,25],[971,1,1,25,26]]],[41,17,16,26,42,[[973,3,3,26,29],[974,1,1,29,30],[976,3,3,30,33],[977,3,2,33,35],[979,1,1,35,36],[980,1,1,36,37],[981,3,3,37,40],[992,1,1,40,41],[996,1,1,41,42]]],[42,20,20,42,62,[[997,1,1,42,43],[998,1,1,43,44],[999,1,1,44,45],[1004,2,2,45,47],[1005,2,2,47,49],[1006,2,2,49,51],[1008,2,2,51,53],[1011,1,1,53,54],[1013,1,1,54,55],[1014,2,2,55,57],[1015,1,1,57,58],[1016,2,2,58,60],[1017,2,2,60,62]]],[43,25,24,62,86,[[1018,1,1,62,63],[1019,4,4,63,67],[1021,3,3,67,70],[1022,1,1,70,71],[1028,1,1,71,72],[1029,2,2,72,74],[1030,2,2,74,76],[1033,1,1,76,77],[1034,1,1,77,78],[1035,2,2,78,80],[1036,2,2,80,82],[1037,3,2,82,84],[1040,1,1,84,85],[1044,1,1,85,86]]],[44,4,3,86,89,[[1051,3,2,86,88],[1052,1,1,88,89]]],[45,4,4,89,93,[[1067,1,1,89,90],[1071,1,1,90,91],[1073,2,2,91,93]]],[47,3,2,93,95,[[1092,1,1,93,94],[1094,2,1,94,95]]],[48,3,3,95,98,[[1098,2,2,95,97],[1101,1,1,97,98]]],[49,1,1,98,99,[[1105,1,1,98,99]]],[51,1,1,99,100,[[1113,1,1,99,100]]],[52,1,1,100,101,[[1118,1,1,100,101]]],[55,1,1,101,102,[[1131,1,1,101,102]]],[57,3,3,102,105,[[1134,1,1,102,103],[1139,1,1,103,104],[1140,1,1,104,105]]],[59,1,1,105,106,[[1152,1,1,105,106]]],[60,1,1,106,107,[[1158,1,1,106,107]]],[61,2,2,107,109,[[1160,1,1,107,108],[1161,1,1,108,109]]],[65,3,3,109,112,[[1175,2,2,109,111],[1184,1,1,111,112]]]],[23227,23618,23671,23880,23897,23995,24010,24097,24184,24231,24266,24275,24359,24377,24438,24441,24451,24509,24542,24544,24620,24693,24758,24775,24794,24866,24899,24900,24903,24981,25083,25088,25090,25117,25124,25234,25285,25315,25331,25333,25808,26044,26068,26101,26139,26420,26423,26473,26481,26487,26522,26596,26600,26718,26765,26815,26821,26836,26886,26893,26900,26906,26938,26950,26951,26954,26993,27028,27053,27054,27071,27327,27340,27349,27363,27410,27495,27534,27560,27571,27592,27599,27634,27642,27747,27892,28085,28088,28096,28478,28568,28636,28653,29087,29134,29232,29241,29312,29428,29594,29688,29926,29992,30075,30096,30424,30527,30569,30591,30848,30850,31016]]]]},{"k":"G2259","v":[["*",[2,2,[[46,2,2,0,2,[[1080,2,2,0,2]]]],[28856,28857]]],["+",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28857]]],["when",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28856]]]]},{"k":"G2260","v":[["than",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26623]]]]},{"k":"G2261","v":[["gentle",[2,2,[[51,1,1,0,1,[[1112,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[29577,29851]]]]},{"k":"G2262","v":[["Er",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25053]]]]},{"k":"G2263","v":[["quiet",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29718]]]]},{"k":"G2264","v":[["*",[44,41,[[39,13,12,0,12,[[930,9,9,0,9],[942,4,3,9,12]]],[40,8,8,12,20,[[962,7,7,12,19],[964,1,1,19,20]]],[41,14,12,20,32,[[973,1,1,20,21],[975,3,2,21,23],[980,1,1,23,24],[981,2,2,24,26],[985,1,1,26,27],[995,6,5,27,32]]],[43,9,9,32,41,[[1021,1,1,32,33],[1029,6,6,33,39],[1030,1,1,39,40],[1040,1,1,40,41]]]],[23170,23172,23176,23181,23182,23184,23185,23188,23191,23598,23600,23603,24421,24423,24424,24425,24427,24428,24429,24515,24898,25026,25044,25248,25308,25310,25549,25942,25943,25946,25947,25950,27049,27338,27343,27348,27356,27357,27358,27363,27769]]],["Herod",[40,39,[[39,12,12,0,12,[[930,9,9,0,9],[942,3,3,9,12]]],[40,8,8,12,20,[[962,7,7,12,19],[964,1,1,19,20]]],[41,12,11,20,31,[[973,1,1,20,21],[975,3,2,21,23],[981,2,2,23,25],[985,1,1,25,26],[995,5,5,26,31]]],[43,8,8,31,39,[[1021,1,1,31,32],[1029,6,6,32,38],[1030,1,1,38,39]]]],[23170,23172,23176,23181,23182,23184,23185,23188,23191,23598,23600,23603,24421,24423,24424,24425,24427,24428,24429,24515,24898,25026,25044,25308,25310,25549,25942,25943,25946,25947,25950,27049,27338,27343,27348,27356,27357,27358,27363]]],["Herod's",[4,4,[[39,1,1,0,1,[[942,1,1,0,1]]],[41,2,2,1,3,[[980,1,1,1,2],[995,1,1,2,3]]],[43,1,1,3,4,[[1040,1,1,3,4]]]],[23603,25248,25942,27769]]]]},{"k":"G2265","v":[["Herodians",[3,3,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,2,2,1,3,[[959,1,1,1,2],[968,1,1,2,3]]]],[23888,24294,24686]]]]},{"k":"G2266","v":[["*",[6,6,[[39,2,2,0,2,[[942,2,2,0,2]]],[40,3,3,2,5,[[962,3,3,2,5]]],[41,1,1,5,6,[[975,1,1,5,6]]]],[23600,23603,24424,24426,24429,25044]]],["+",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]]],[23600,24424]]],["Herodias",[4,4,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,2,2,1,3,[[962,2,2,1,3]]],[41,1,1,3,4,[[975,1,1,3,4]]]],[23603,24426,24429,25044]]]]},{"k":"G2267","v":[["Herodion",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28347]]]]},{"k":"G2268","v":[["Esaias",[21,21,[[39,6,6,0,6,[[931,1,1,0,1],[932,1,1,1,2],[936,1,1,2,3],[940,1,1,3,4],[941,1,1,4,5],[943,1,1,5,6]]],[40,1,1,6,7,[[963,1,1,6,7]]],[41,2,2,7,9,[[975,1,1,7,8],[976,1,1,8,9]]],[42,4,4,9,13,[[997,1,1,9,10],[1008,3,3,10,13]]],[43,3,3,13,16,[[1025,2,2,13,15],[1045,1,1,15,16]]],[44,5,5,16,21,[[1054,2,2,16,18],[1055,2,2,18,20],[1060,1,1,20,21]]]],[23195,23223,23362,23506,23553,23640,24469,25029,25080,26067,26618,26619,26621,27204,27206,27924,28182,28184,28204,28208,28315]]]]},{"k":"G2269","v":[["Esau",[3,3,[[44,1,1,0,1,[[1054,1,1,0,1]]],[57,2,2,1,3,[[1143,1,1,1,2],[1144,1,1,2,3]]]],[28168,30192,30228]]]]},{"k":"G2270","v":[["*",[5,5,[[41,2,2,0,2,[[986,1,1,0,1],[995,1,1,1,2]]],[43,2,2,2,4,[[1028,1,1,2,3],[1038,1,1,3,4]]],[51,1,1,4,5,[[1114,1,1,4,5]]]],[25557,25991,27325,27678,29614]]],["ceased",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27678]]],["peace",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[43,1,1,1,2,[[1028,1,1,1,2]]]],[25557,27325]]],["quiet",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29614]]],["rested",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25991]]]]},{"k":"G2271","v":[["*",[4,4,[[43,1,1,0,1,[[1039,1,1,0,1]]],[52,1,1,1,2,[[1118,1,1,1,2]]],[53,2,2,2,4,[[1120,2,2,2,4]]]],[27706,29690,29727,29728]]],["quietness",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29690]]],["silence",[3,3,[[43,1,1,0,1,[[1039,1,1,0,1]]],[53,2,2,1,3,[[1120,2,2,1,3]]]],[27706,29727,29728]]]]},{"k":"G2272","v":[["*",[2,2,[[53,1,1,0,1,[[1120,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[29718,30428]]],["peaceable",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29718]]],["quiet",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30428]]]]},{"k":"G2273","v":[["whether",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28084]]]]},{"k":"G2274","v":[["*",[3,3,[[46,1,1,0,1,[[1089,1,1,0,1]]],[60,2,2,1,3,[[1157,2,2,1,3]]]],[29035,30519,30520]]],["inferior",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29035]]],["overcome",[2,2,[[60,2,2,0,2,[[1157,2,2,0,2]]]],[30519,30520]]]]},{"k":"G2275","v":[["*",[2,2,[[44,1,1,0,1,[[1056,1,1,0,1]]],[45,1,1,1,2,[[1067,1,1,1,2]]]],[28221,28474]]],["diminishing",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28221]]],["fault",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28474]]]]},{"k":"G2276","v":[["*",[2,2,[[45,1,1,0,1,[[1072,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]]],[28617,29037]]],["less",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29037]]],["worse",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28617]]]]},{"k":"G2277","v":[["be",[2,2,[[45,1,1,0,1,[[1077,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[28798,30366]]]]},{"k":"G2278","v":[["*",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[45,1,1,1,2,[[1074,1,1,1,2]]]],[25851,28666]]],["roaring",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25851]]],["sounding",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28666]]]]},{"k":"G2279","v":[["*",[3,3,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[25100,26951,30231]]],["fame",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25100]]],["sound",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[26951,30231]]]]},{"k":"G2280","v":[["Thaddaeus",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]]],[23420,24306]]]]},{"k":"G2281","v":[["*",[92,83,[[39,17,16,0,16,[[932,3,2,0,2],[936,4,4,2,6],[941,2,2,6,8],[942,3,3,8,11],[943,1,1,11,12],[945,1,1,12,13],[946,1,1,13,14],[949,1,1,14,15],[951,1,1,15,16]]],[40,19,15,16,31,[[957,2,1,16,17],[958,1,1,17,18],[959,1,1,18,19],[960,5,3,19,22],[961,4,3,22,25],[962,3,3,25,28],[963,1,1,28,29],[965,1,1,29,30],[967,1,1,30,31]]],[41,3,3,31,34,[[989,2,2,31,33],[993,1,1,33,34]]],[42,9,9,34,43,[[1002,7,7,34,41],[1017,2,2,41,43]]],[43,10,10,43,53,[[1021,1,1,43,44],[1024,1,1,44,45],[1027,2,2,45,47],[1031,1,1,47,48],[1034,1,1,48,49],[1044,3,3,49,52],[1045,1,1,52,53]]],[44,1,1,53,54,[[1054,1,1,53,54]]],[45,2,2,54,56,[[1071,2,2,54,56]]],[46,1,1,56,57,[[1088,1,1,56,57]]],[57,2,2,57,59,[[1143,2,2,57,59]]],[58,1,1,59,60,[[1146,1,1,59,60]]],[64,1,1,60,61,[[1166,1,1,60,61]]],[65,26,22,61,83,[[1170,1,1,61,62],[1171,1,1,62,63],[1173,3,3,63,66],[1174,3,2,66,68],[1176,4,4,68,72],[1178,1,1,72,73],[1179,2,1,73,74],[1180,1,1,74,75],[1181,2,1,75,76],[1182,2,1,76,77],[1184,3,3,77,80],[1186,2,2,80,82],[1187,1,1,82,83]]]],[23224,23227,23369,23371,23372,23377,23540,23586,23621,23622,23623,23662,23727,23733,23847,23933,24231,24273,24295,24324,24362,24364,24365,24377,24385,24454,24455,24456,24494,24580,24663,25653,25657,25851,26258,26273,26274,26275,26276,26279,26282,26899,26905,27046,27152,27265,27291,27429,27537,27885,27893,27895,27903,28182,28568,28569,29015,30184,30201,30272,30685,30774,30792,30811,30812,30813,30835,30836,30863,30866,30867,30869,30903,30909,30933,30948,30957,31010,31012,31014,31046,31051,31054]]],["+",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30184]]],["sea",[86,78,[[39,16,15,0,15,[[932,3,2,0,2],[936,4,4,2,6],[941,1,1,6,7],[942,3,3,7,10],[943,1,1,10,11],[945,1,1,11,12],[946,1,1,12,13],[949,1,1,13,14],[951,1,1,14,15]]],[40,17,14,15,29,[[957,2,1,15,16],[959,1,1,16,17],[960,4,3,17,20],[961,4,3,20,23],[962,3,3,23,26],[963,1,1,26,27],[965,1,1,27,28],[967,1,1,28,29]]],[41,3,3,29,32,[[989,2,2,29,31],[993,1,1,31,32]]],[42,9,9,32,41,[[1002,7,7,32,39],[1017,2,2,39,41]]],[43,8,8,41,49,[[1021,1,1,41,42],[1024,1,1,42,43],[1031,1,1,43,44],[1034,1,1,44,45],[1044,3,3,45,48],[1045,1,1,48,49]]],[44,1,1,49,50,[[1054,1,1,49,50]]],[45,2,2,50,52,[[1071,2,2,50,52]]],[46,1,1,52,53,[[1088,1,1,52,53]]],[57,1,1,53,54,[[1143,1,1,53,54]]],[58,1,1,54,55,[[1146,1,1,54,55]]],[64,1,1,55,56,[[1166,1,1,55,56]]],[65,26,22,56,78,[[1170,1,1,56,57],[1171,1,1,57,58],[1173,3,3,58,61],[1174,3,2,61,63],[1176,4,4,63,67],[1178,1,1,67,68],[1179,2,1,68,69],[1180,1,1,69,70],[1181,2,1,70,71],[1182,2,1,71,72],[1184,3,3,72,75],[1186,2,2,75,77],[1187,1,1,77,78]]]],[23224,23227,23369,23371,23372,23377,23586,23621,23622,23623,23662,23727,23733,23847,23933,24231,24295,24324,24362,24364,24365,24377,24385,24454,24455,24456,24494,24580,24663,25653,25657,25851,26258,26273,26274,26275,26276,26279,26282,26899,26905,27046,27152,27429,27537,27885,27893,27895,27903,28182,28568,28569,29015,30201,30272,30685,30774,30792,30811,30812,30813,30835,30836,30863,30866,30867,30869,30903,30909,30933,30948,30957,31010,31012,31014,31046,31051,31054]]],["side",[5,5,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[960,1,1,2,3]]],[43,2,2,3,5,[[1027,2,2,3,5]]]],[23540,24273,24324,27265,27291]]]]},{"k":"G2282","v":[["cherisheth",[2,2,[[48,1,1,0,1,[[1101,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]]],[29333,29577]]]]},{"k":"G2283","v":[["Thamar",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23147]]]]},{"k":"G2284","v":[["*",[4,4,[[40,3,3,0,3,[[957,1,1,0,1],[966,2,2,1,3]]],[43,1,1,3,4,[[1026,1,1,3,4]]]],[24242,24612,24620,27222]]],["amazed",[2,2,[[40,2,2,0,2,[[957,1,1,0,1],[966,1,1,1,2]]]],[24242,24620]]],["astonished",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[24612,27222]]]]},{"k":"G2285","v":[["*",[3,3,[[41,2,2,0,2,[[976,1,1,0,1],[977,1,1,1,2]]],[43,1,1,2,3,[[1020,1,1,2,3]]]],[25099,25116,27006]]],["+",[2,2,[[41,2,2,0,2,[[976,1,1,0,1],[977,1,1,1,2]]]],[25099,25116]]],["wonder",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27006]]]]},{"k":"G2286","v":[["thing",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24891]]]]},{"k":"G2287","v":[["deadly",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30327]]]]},{"k":"G2288","v":[["*",[119,106,[[39,7,7,0,7,[[932,1,1,0,1],[938,1,1,1,2],[943,1,1,2,3],[944,1,1,3,4],[948,1,1,4,5],[954,2,2,5,7]]],[40,6,6,7,13,[[963,1,1,7,8],[965,1,1,8,9],[966,1,1,9,10],[969,1,1,10,11],[970,2,2,11,13]]],[41,7,7,13,20,[[973,1,1,13,14],[974,1,1,14,15],[981,1,1,15,16],[994,1,1,16,17],[995,2,2,17,19],[996,1,1,19,20]]],[42,8,8,20,28,[[1001,1,1,20,21],[1004,2,2,21,23],[1007,2,2,23,25],[1008,1,1,25,26],[1014,1,1,26,27],[1017,1,1,27,28]]],[43,8,8,28,36,[[1019,1,1,28,29],[1030,1,1,29,30],[1039,1,1,30,31],[1040,1,1,31,32],[1042,2,2,32,34],[1043,1,1,34,35],[1045,1,1,35,36]]],[44,22,20,36,56,[[1046,1,1,36,37],[1050,6,5,37,42],[1051,7,7,42,49],[1052,5,4,49,53],[1053,3,3,53,56]]],[45,7,7,56,63,[[1064,1,1,56,57],[1072,1,1,57,58],[1076,5,5,58,63]]],[46,9,8,63,71,[[1078,2,2,63,65],[1079,2,1,65,66],[1080,1,1,66,67],[1081,2,2,67,69],[1084,1,1,69,70],[1088,1,1,70,71]]],[49,6,5,71,76,[[1103,1,1,71,72],[1104,4,3,72,75],[1105,1,1,75,76]]],[50,1,1,76,77,[[1107,1,1,76,77]]],[54,1,1,77,78,[[1125,1,1,77,78]]],[57,10,8,78,86,[[1134,5,3,78,81],[1137,1,1,81,82],[1139,1,1,82,83],[1141,2,2,83,85],[1143,1,1,85,86]]],[58,2,2,86,88,[[1146,1,1,86,87],[1150,1,1,87,88]]],[61,6,3,88,91,[[1161,2,1,88,89],[1163,4,2,89,91]]],[65,19,15,91,106,[[1167,1,1,91,92],[1168,3,3,92,95],[1172,2,1,95,96],[1175,2,1,96,97],[1178,1,1,97,98],[1179,3,2,98,100],[1184,1,1,100,101],[1186,4,3,101,104],[1187,2,2,104,106]]]],[23225,23438,23637,23700,23810,24092,24120,24473,24539,24621,24729,24788,24818,24972,24999,25328,25897,25950,25957,26011,26234,26432,26433,26527,26536,26613,26817,26917,26973,27390,27708,27763,27807,27821,27854,27917,27962,28057,28059,28061,28064,28068,28071,28072,28073,28077,28084,28089,28091,28096,28101,28104,28115,28118,28122,28154,28432,28626,28739,28744,28772,28773,28774,28809,28810,28840,28848,28870,28871,28926,29012,29381,29399,29418,29421,29431,29487,29819,29986,29991,29992,30037,30087,30120,30121,30177,30281,30374,30593,30640,30641,30715,30727,30728,30740,30801,30846,30902,30911,30920,31001,31044,31051,31052,31057,31061]]],["+",[2,2,[[57,1,1,0,1,[[1141,1,1,0,1]]],[65,1,1,1,2,[[1179,1,1,1,2]]]],[30120,30920]]],["Death",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[65,1,1,1,2,[[1172,1,1,1,2]]]],[28772,30801]]],["deadly",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30911]]],["death",[113,102,[[39,7,7,0,7,[[932,1,1,0,1],[938,1,1,1,2],[943,1,1,2,3],[944,1,1,3,4],[948,1,1,4,5],[954,2,2,5,7]]],[40,6,6,7,13,[[963,1,1,7,8],[965,1,1,8,9],[966,1,1,9,10],[969,1,1,10,11],[970,2,2,11,13]]],[41,7,7,13,20,[[973,1,1,13,14],[974,1,1,14,15],[981,1,1,15,16],[994,1,1,16,17],[995,2,2,17,19],[996,1,1,19,20]]],[42,8,8,20,28,[[1001,1,1,20,21],[1004,2,2,21,23],[1007,2,2,23,25],[1008,1,1,25,26],[1014,1,1,26,27],[1017,1,1,27,28]]],[43,8,8,28,36,[[1019,1,1,28,29],[1030,1,1,29,30],[1039,1,1,30,31],[1040,1,1,31,32],[1042,2,2,32,34],[1043,1,1,34,35],[1045,1,1,35,36]]],[44,22,20,36,56,[[1046,1,1,36,37],[1050,6,5,37,42],[1051,7,7,42,49],[1052,5,4,49,53],[1053,3,3,53,56]]],[45,6,6,56,62,[[1064,1,1,56,57],[1072,1,1,57,58],[1076,4,4,58,62]]],[46,8,7,62,69,[[1078,2,2,62,64],[1079,2,1,64,65],[1080,1,1,65,66],[1081,2,2,66,68],[1084,1,1,68,69]]],[49,6,5,69,74,[[1103,1,1,69,70],[1104,4,3,70,73],[1105,1,1,73,74]]],[50,1,1,74,75,[[1107,1,1,74,75]]],[54,1,1,75,76,[[1125,1,1,75,76]]],[57,9,7,76,83,[[1134,5,3,76,79],[1137,1,1,79,80],[1139,1,1,80,81],[1141,1,1,81,82],[1143,1,1,82,83]]],[58,2,2,83,85,[[1146,1,1,83,84],[1150,1,1,84,85]]],[61,6,3,85,88,[[1161,2,1,85,86],[1163,4,2,86,88]]],[65,16,14,88,102,[[1167,1,1,88,89],[1168,3,3,89,92],[1172,1,1,92,93],[1175,2,1,93,94],[1178,1,1,94,95],[1179,1,1,95,96],[1184,1,1,96,97],[1186,4,3,97,100],[1187,2,2,100,102]]]],[23225,23438,23637,23700,23810,24092,24120,24473,24539,24621,24729,24788,24818,24972,24999,25328,25897,25950,25957,26011,26234,26432,26433,26527,26536,26613,26817,26917,26973,27390,27708,27763,27807,27821,27854,27917,27962,28057,28059,28061,28064,28068,28071,28072,28073,28077,28084,28089,28091,28096,28101,28104,28115,28118,28122,28154,28432,28626,28739,28744,28773,28774,28809,28810,28840,28848,28870,28871,28926,29381,29399,29418,29421,29431,29487,29819,29986,29991,29992,30037,30087,30121,30177,30281,30374,30593,30640,30641,30715,30727,30728,30740,30801,30846,30902,30911,31001,31044,31051,31052,31057,31061]]],["deaths",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29012]]]]},{"k":"G2289","v":[["*",[11,11,[[39,3,3,0,3,[[938,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[969,1,1,3,4],[970,1,1,4,5]]],[41,1,1,5,6,[[993,1,1,5,6]]],[44,3,3,6,9,[[1052,1,1,6,7],[1053,2,2,7,9]]],[46,1,1,9,10,[[1083,1,1,9,10]]],[59,1,1,10,11,[[1153,1,1,10,11]]]],[23438,24113,24130,24729,24809,25842,28095,28129,28152,28907,30442]]],["+",[5,5,[[39,3,3,0,3,[[938,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[969,1,1,3,4],[970,1,1,4,5]]]],[23438,24113,24130,24729,24809]]],["dead",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28095]]],["death",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[25842,30442]]],["killed",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]]],[28152,28907]]],["mortify",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28129]]]]},{"k":"G2290","v":[["*",[11,11,[[39,3,3,0,3,[[936,2,2,0,2],[942,1,1,2,3]]],[41,3,3,3,6,[[981,2,2,3,5],[988,1,1,5,6]]],[43,4,4,6,10,[[1019,1,1,6,7],[1022,3,3,7,10]]],[45,1,1,10,11,[[1076,1,1,10,11]]]],[23366,23367,23609,25360,25361,25642,26978,27065,27068,27069,28722]]],["buried",[7,7,[[39,1,1,0,1,[[942,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[43,4,4,2,6,[[1019,1,1,2,3],[1022,3,3,3,6]]],[45,1,1,6,7,[[1076,1,1,6,7]]]],[23609,25642,26978,27065,27068,27069,28722]]],["bury",[4,4,[[39,2,2,0,2,[[936,2,2,0,2]]],[41,2,2,2,4,[[981,2,2,2,4]]]],[23366,23367,25360,25361]]]]},{"k":"G2291","v":[["Thara",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25059]]]]},{"k":"G2292","v":[["*",[6,6,[[46,5,5,0,5,[[1082,2,2,0,2],[1084,1,1,2,3],[1087,2,2,3,5]]],[57,1,1,5,6,[[1145,1,1,5,6]]]],[28883,28885,28932,28972,28973,30247]]],["bold",[2,2,[[46,2,2,0,2,[[1087,2,2,0,2]]]],[28972,28973]]],["boldly",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30247]]],["confidence",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28932]]],["confident",[2,2,[[46,2,2,0,2,[[1082,2,2,0,2]]]],[28883,28885]]]]},{"k":"G2293","v":[["*",[8,8,[[39,3,3,0,3,[[937,2,2,0,2],[942,1,1,2,3]]],[40,2,2,3,5,[[962,1,1,3,4],[966,1,1,4,5]]],[41,1,1,5,6,[[980,1,1,5,6]]],[42,1,1,6,7,[[1012,1,1,6,7]]],[43,1,1,7,8,[[1040,1,1,7,8]]]],[23381,23401,23624,24457,24637,25293,26759,27745]]],["cheer",[5,5,[[39,2,2,0,2,[[937,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[42,1,1,3,4,[[1012,1,1,3,4]]],[43,1,1,4,5,[[1040,1,1,4,5]]]],[23381,23624,24457,26759,27745]]],["comfort",[3,3,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23401,24637,25293]]]]},{"k":"G2294","v":[["courage",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27914]]]]},{"k":"G2295","v":[["admiration",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30981]]]]},{"k":"G2296","v":[["*",[46,46,[[39,8,8,0,8,[[936,2,2,0,2],[937,2,2,2,4],[943,1,1,4,5],[949,1,1,5,6],[950,1,1,6,7],[955,1,1,7,8]]],[40,6,6,8,14,[[961,1,1,8,9],[962,2,2,9,11],[968,1,1,11,12],[971,2,2,12,14]]],[41,13,13,14,27,[[973,2,2,14,16],[974,2,2,16,18],[976,1,1,18,19],[979,1,1,19,20],[980,1,1,20,21],[981,1,1,21,22],[983,2,2,22,24],[992,1,1,24,25],[996,2,2,25,27]]],[42,6,6,27,33,[[999,1,1,27,28],[1000,1,1,28,29],[1001,2,2,29,31],[1003,2,2,31,33]]],[43,5,5,33,38,[[1019,1,1,33,34],[1020,1,1,34,35],[1021,1,1,35,36],[1024,1,1,36,37],[1030,1,1,37,38]]],[47,1,1,38,39,[[1091,1,1,38,39]]],[52,1,1,39,40,[[1116,1,1,39,40]]],[61,1,1,40,41,[[1161,1,1,40,41]]],[64,1,1,41,42,[[1166,1,1,41,42]]],[65,4,4,42,46,[[1179,1,1,42,43],[1183,3,3,43,46]]]],[23355,23372,23387,23412,23664,23846,23894,24143,24384,24413,24458,24690,24831,24870,24914,24956,24991,25006,25085,25204,25270,25344,25419,25443,25805,26003,26032,26127,26183,26230,26238,26343,26349,26956,27008,27035,27147,27403,29063,29659,30592,30688,30911,30981,30982,30983]]],["+",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[25006,30688]]],["Marvel",[3,3,[[42,2,2,0,2,[[999,1,1,0,1],[1001,1,1,1,2]]],[61,1,1,2,3,[[1161,1,1,2,3]]]],[26127,26238,30592]]],["admired",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29659]]],["marvel",[6,6,[[40,1,1,0,1,[[961,1,1,0,1]]],[42,2,2,1,3,[[1001,1,1,1,2],[1003,1,1,2,3]]],[43,1,1,3,4,[[1020,1,1,3,4]]],[47,1,1,4,5,[[1091,1,1,4,5]]],[65,1,1,5,6,[[1183,1,1,5,6]]]],[24384,26230,26349,27008,29063,30982]]],["marvelled",[20,20,[[39,7,7,0,7,[[936,2,2,0,2],[937,2,2,2,4],[949,1,1,4,5],[950,1,1,5,6],[955,1,1,6,7]]],[40,4,4,7,11,[[962,1,1,7,8],[968,1,1,8,9],[971,2,2,9,11]]],[41,5,5,11,16,[[973,2,2,11,13],[979,1,1,13,14],[983,1,1,14,15],[992,1,1,15,16]]],[42,2,2,16,18,[[1000,1,1,16,17],[1003,1,1,17,18]]],[43,2,2,18,20,[[1019,1,1,18,19],[1021,1,1,19,20]]]],[23355,23372,23387,23412,23846,23894,24143,24413,24690,24831,24870,24914,24956,25204,25443,25805,26183,26343,26956,27035]]],["wonder",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[65,1,1,1,2,[[1183,1,1,1,2]]]],[27403,30983]]],["wondered",[11,11,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,6,6,2,8,[[974,1,1,2,3],[976,1,1,3,4],[980,1,1,4,5],[981,1,1,5,6],[983,1,1,6,7],[996,1,1,7,8]]],[43,1,1,8,9,[[1024,1,1,8,9]]],[65,2,2,9,11,[[1179,1,1,9,10],[1183,1,1,10,11]]]],[23664,24458,24991,25085,25270,25344,25419,26032,27147,30911,30981]]],["wondering",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26003]]]]},{"k":"G2297","v":[["things",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23841]]]]},{"k":"G2298","v":[["*",[7,7,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[42,1,1,2,3,[[1005,1,1,2,3]]],[46,1,1,3,4,[[1088,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]],[65,2,2,5,7,[[1181,2,2,5,7]]]],[23868,24684,26470,29003,30408,30947,30949]]],["marvel",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29003]]],["marvellous",[5,5,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]],[65,2,2,3,5,[[1181,2,2,3,5]]]],[23868,24684,30408,30947,30949]]],["thing",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26470]]]]},{"k":"G2299","v":[["goddess",[3,3,[[43,3,3,0,3,[[1036,3,3,0,3]]]],[27612,27620,27622]]]]},{"k":"G2300","v":[["*",[24,24,[[39,4,4,0,4,[[934,1,1,0,1],[939,1,1,1,2],[950,1,1,2,3],[951,1,1,3,4]]],[40,2,2,4,6,[[972,2,2,4,6]]],[41,3,3,6,9,[[977,1,1,6,7],[979,1,1,7,8],[995,1,1,8,9]]],[42,7,7,9,16,[[997,3,3,9,12],[1000,1,1,12,13],[1002,1,1,13,14],[1004,1,1,14,15],[1007,1,1,15,16]]],[43,4,4,16,20,[[1018,1,1,16,17],[1025,1,1,17,18],[1038,1,1,18,19],[1039,1,1,19,20]]],[44,1,1,20,21,[[1060,1,1,20,21]]],[61,3,3,21,24,[[1159,1,1,21,22],[1162,2,2,22,24]]]],[23283,23466,23883,23923,24884,24887,25134,25219,25990,26058,26076,26082,26191,26262,26391,26568,26934,27194,27691,27713,28327,30541,30615,30617]]],["beheld",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]]],[25990,26058]]],["on",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26191]]],["saw",[8,8,[[41,1,1,0,1,[[977,1,1,0,1]]],[42,4,4,1,5,[[997,2,2,1,3],[1002,1,1,3,4],[1004,1,1,4,5]]],[43,3,3,5,8,[[1025,1,1,5,6],[1038,1,1,6,7],[1039,1,1,7,8]]]],[25134,26076,26082,26262,26391,27194,27691,27713]]],["see",[4,4,[[39,2,2,0,2,[[939,1,1,0,1],[950,1,1,1,2]]],[41,1,1,2,3,[[979,1,1,2,3]]],[44,1,1,3,4,[[1060,1,1,3,4]]]],[23466,23883,25219,28327]]],["seen",[8,8,[[39,2,2,0,2,[[934,1,1,0,1],[951,1,1,1,2]]],[40,2,2,2,4,[[972,2,2,2,4]]],[42,1,1,4,5,[[1007,1,1,4,5]]],[43,1,1,5,6,[[1018,1,1,5,6]]],[61,2,2,6,8,[[1162,2,2,6,8]]]],[23283,23923,24884,24887,26568,26934,30615,30617]]],["upon",[1,1,[[61,1,1,0,1,[[1159,1,1,0,1]]]],[30541]]]]},{"k":"G2301","v":[["gazingstock",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30166]]]]},{"k":"G2302","v":[["*",[3,3,[[43,2,2,0,2,[[1036,2,2,0,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]]],[27614,27616,28442]]],["spectacle",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28442]]],["theatre",[2,2,[[43,2,2,0,2,[[1036,2,2,0,2]]]],[27614,27616]]]]},{"k":"G2303","v":[["brimstone",[7,7,[[41,1,1,0,1,[[989,1,1,0,1]]],[65,6,6,1,7,[[1175,2,2,1,3],[1180,1,1,3,4],[1185,1,1,4,5],[1186,1,1,5,6],[1187,1,1,6,7]]]],[25680,30857,30858,30936,31037,31048,31061]]]]},{"k":"G2304","v":[["*",[3,3,[[43,1,1,0,1,[[1034,1,1,0,1]]],[60,2,2,1,3,[[1156,2,2,1,3]]]],[27552,30482,30483]]],["Godhead",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27552]]],["divine",[2,2,[[60,2,2,0,2,[[1156,2,2,0,2]]]],[30482,30483]]]]},{"k":"G2305","v":[["Godhead",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27950]]]]},{"k":"G2306","v":[["brimstone",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30857]]]]},{"k":"G2307","v":[["*",[64,60,[[39,6,6,0,6,[[934,1,1,0,1],[935,1,1,1,2],[940,1,1,2,3],[946,1,1,3,4],[949,1,1,4,5],[954,1,1,5,6]]],[40,1,1,6,7,[[959,1,1,6,7]]],[41,5,4,7,11,[[983,1,1,7,8],[984,2,1,8,9],[994,1,1,9,10],[995,1,1,10,11]]],[42,11,8,11,19,[[997,2,1,11,12],[1000,1,1,12,13],[1001,2,1,13,14],[1002,4,3,14,17],[1003,1,1,17,18],[1005,1,1,18,19]]],[43,3,3,19,22,[[1030,1,1,19,20],[1038,1,1,20,21],[1039,1,1,21,22]]],[44,4,4,22,26,[[1046,1,1,22,23],[1047,1,1,23,24],[1057,1,1,24,25],[1060,1,1,25,26]]],[45,3,3,26,29,[[1062,1,1,26,27],[1068,1,1,27,28],[1077,1,1,28,29]]],[46,2,2,29,31,[[1078,1,1,29,30],[1085,1,1,30,31]]],[47,1,1,31,32,[[1091,1,1,31,32]]],[48,7,7,32,39,[[1097,4,4,32,36],[1098,1,1,36,37],[1101,1,1,37,38],[1102,1,1,38,39]]],[50,3,3,39,42,[[1107,2,2,39,41],[1110,1,1,41,42]]],[51,2,2,42,44,[[1114,1,1,42,43],[1115,1,1,43,44]]],[54,2,2,44,46,[[1125,1,1,44,45],[1126,1,1,45,46]]],[57,5,5,46,51,[[1142,4,4,46,50],[1145,1,1,50,51]]],[59,5,5,51,56,[[1152,1,1,51,52],[1153,1,1,52,53],[1154,3,3,53,56]]],[60,1,1,56,57,[[1156,1,1,56,57]]],[61,2,2,57,59,[[1160,1,1,57,58],[1163,1,1,58,59]]],[65,1,1,59,60,[[1170,1,1,59,60]]]],[23292,23337,23539,23741,23857,24096,24323,25407,25506,25906,25960,26057,26190,26240,26295,26296,26297,26345,26471,27384,27678,27718,27940,27980,28247,28335,28364,28524,28788,28801,28937,29061,29207,29211,29215,29217,29232,29321,29343,29466,29474,29554,29606,29639,29810,29853,30140,30142,30143,30169,30262,30414,30441,30448,30449,30465,30500,30567,30638,30779]]],["desires",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29232]]],["pleasure",[1,1,[[65,1,1,0,1,[[1170,1,1,0,1]]]],[30779]]],["will",[62,58,[[39,6,6,0,6,[[934,1,1,0,1],[935,1,1,1,2],[940,1,1,2,3],[946,1,1,3,4],[949,1,1,4,5],[954,1,1,5,6]]],[40,1,1,6,7,[[959,1,1,6,7]]],[41,5,4,7,11,[[983,1,1,7,8],[984,2,1,8,9],[994,1,1,9,10],[995,1,1,10,11]]],[42,11,8,11,19,[[997,2,1,11,12],[1000,1,1,12,13],[1001,2,1,13,14],[1002,4,3,14,17],[1003,1,1,17,18],[1005,1,1,18,19]]],[43,3,3,19,22,[[1030,1,1,19,20],[1038,1,1,20,21],[1039,1,1,21,22]]],[44,4,4,22,26,[[1046,1,1,22,23],[1047,1,1,23,24],[1057,1,1,24,25],[1060,1,1,25,26]]],[45,3,3,26,29,[[1062,1,1,26,27],[1068,1,1,27,28],[1077,1,1,28,29]]],[46,2,2,29,31,[[1078,1,1,29,30],[1085,1,1,30,31]]],[47,1,1,31,32,[[1091,1,1,31,32]]],[48,6,6,32,38,[[1097,4,4,32,36],[1101,1,1,36,37],[1102,1,1,37,38]]],[50,3,3,38,41,[[1107,2,2,38,40],[1110,1,1,40,41]]],[51,2,2,41,43,[[1114,1,1,41,42],[1115,1,1,42,43]]],[54,2,2,43,45,[[1125,1,1,43,44],[1126,1,1,44,45]]],[57,5,5,45,50,[[1142,4,4,45,49],[1145,1,1,49,50]]],[59,5,5,50,55,[[1152,1,1,50,51],[1153,1,1,51,52],[1154,3,3,52,55]]],[60,1,1,55,56,[[1156,1,1,55,56]]],[61,2,2,56,58,[[1160,1,1,56,57],[1163,1,1,57,58]]]],[23292,23337,23539,23741,23857,24096,24323,25407,25506,25906,25960,26057,26190,26240,26295,26296,26297,26345,26471,27384,27678,27718,27940,27980,28247,28335,28364,28524,28788,28801,28937,29061,29207,29211,29215,29217,29321,29343,29466,29474,29554,29606,29639,29810,29853,30140,30142,30143,30169,30262,30414,30441,30448,30449,30465,30500,30567,30638]]]]},{"k":"G2308","v":[["will",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29981]]]]},{"k":"G2309","v":[["*",[210,201,[[39,42,41,0,41,[[929,1,1,0,1],[930,1,1,1,2],[933,2,2,2,4],[935,1,1,4,5],[936,2,2,5,7],[937,1,1,7,8],[939,1,1,8,9],[940,2,2,9,11],[941,1,1,11,12],[942,1,1,12,13],[943,2,2,13,15],[944,2,2,15,17],[945,2,2,17,19],[946,2,2,19,21],[947,2,2,21,23],[948,6,6,23,29],[949,1,1,29,30],[950,1,1,30,31],[951,3,2,31,33],[954,3,3,33,36],[955,5,5,36,41]]],[40,25,25,41,66,[[957,2,2,41,43],[959,1,1,43,44],[962,5,5,44,49],[963,1,1,49,50],[964,2,2,50,52],[965,3,3,52,55],[966,5,5,55,60],[968,1,1,60,61],[970,3,3,61,64],[971,2,2,64,66]]],[41,28,27,66,93,[[973,1,1,66,67],[976,1,1,67,68],[977,3,3,68,71],[978,1,1,71,72],[980,1,1,72,73],[981,3,3,73,76],[982,2,2,76,78],[984,1,1,78,79],[985,3,2,79,81],[986,1,1,81,82],[987,1,1,82,83],[988,1,1,83,84],[990,3,3,84,87],[991,2,2,87,89],[992,1,1,89,90],[994,1,1,90,91],[995,2,2,91,93]]],[42,23,21,93,114,[[997,1,1,93,94],[999,1,1,94,95],[1001,4,4,95,99],[1002,3,3,99,102],[1003,3,3,102,105],[1004,1,1,105,106],[1005,2,1,106,107],[1008,1,1,107,108],[1011,1,1,108,109],[1012,1,1,109,110],[1013,1,1,110,111],[1017,4,3,111,114]]],[43,16,15,114,129,[[1019,1,1,114,115],[1024,2,2,115,117],[1026,1,1,117,118],[1027,1,1,118,119],[1031,1,1,119,120],[1033,1,1,120,121],[1034,2,2,121,123],[1035,1,1,123,124],[1036,1,1,124,125],[1041,2,2,125,127],[1042,2,1,127,128],[1043,1,1,128,129]]],[44,15,13,129,142,[[1046,1,1,129,130],[1052,7,6,130,136],[1054,4,3,136,139],[1056,1,1,139,140],[1058,1,1,140,141],[1061,1,1,141,142]]],[45,17,17,142,159,[[1065,2,2,142,144],[1068,4,4,144,148],[1071,3,3,148,151],[1072,1,1,151,152],[1073,2,2,152,154],[1075,3,3,154,157],[1076,1,1,157,158],[1077,1,1,158,159]]],[46,9,8,159,167,[[1078,1,1,159,160],[1082,1,1,160,161],[1085,2,2,161,163],[1088,2,2,163,165],[1089,3,2,165,167]]],[47,9,9,167,176,[[1091,1,1,167,168],[1093,1,1,168,169],[1094,4,4,169,173],[1095,1,1,173,174],[1096,2,2,174,176]]],[49,1,1,176,177,[[1104,1,1,176,177]]],[50,3,3,177,180,[[1107,1,1,177,178],[1108,2,2,178,180]]],[51,2,2,180,182,[[1112,1,1,180,181],[1114,1,1,181,182]]],[52,1,1,182,183,[[1118,1,1,182,183]]],[53,3,3,183,186,[[1119,1,1,183,184],[1120,1,1,184,185],[1123,1,1,185,186]]],[54,1,1,186,187,[[1127,1,1,186,187]]],[56,1,1,187,188,[[1132,1,1,187,188]]],[57,4,4,188,192,[[1142,2,2,188,190],[1144,1,1,190,191],[1145,1,1,191,192]]],[58,2,2,192,194,[[1147,1,1,192,193],[1149,1,1,193,194]]],[59,2,2,194,196,[[1153,2,2,194,196]]],[60,1,1,196,197,[[1158,1,1,196,197]]],[63,1,1,197,198,[[1165,1,1,197,198]]],[65,4,3,198,201,[[1177,3,2,198,200],[1188,1,1,200,201]]]],[23163,23187,23274,23276,23328,23347,23348,23392,23473,23496,23527,23567,23602,23661,23665,23696,23697,23704,23712,23750,23757,23779,23783,23806,23807,23813,23818,23819,23824,23855,23875,23922,23955,24069,24071,24093,24144,24146,24150,24163,24172,24255,24256,24301,24426,24429,24432,24433,24455,24487,24534,24535,24551,24568,24573,24623,24624,24631,24632,24639,24711,24761,24766,24790,24835,24838,24955,25069,25119,25120,25146,25177,25265,25324,25325,25355,25387,25392,25508,25549,25552,25581,25616,25646,25692,25701,25729,25745,25758,25825,25873,25943,25955,26087,26128,26216,26231,26245,26250,26268,26278,26324,26329,26345,26372,26425,26467,26601,26706,26745,26783,26916,26920,26921,26961,27144,27155,27222,27269,27427,27486,27541,27543,27578,27618,27775,27796,27805,27828,27943,28106,28107,28109,28110,28111,28112,28171,28173,28177,28234,28269,28355,28452,28454,28494,28519,28523,28526,28568,28587,28594,28603,28635,28652,28683,28697,28713,28756,28783,28808,28881,28942,28943,29001,29021,29028,29042,29064,29104,29140,29148,29151,29152,29179,29200,29201,29404,29492,29495,29512,29588,29616,29688,29703,29720,29774,29865,29952,30138,30141,30229,30259,30313,30352,30434,30441,30527,30671,30877,30878,31097]]],["+",[9,9,[[41,1,1,0,1,[[973,1,1,0,1]]],[42,2,2,1,3,[[1002,1,1,1,2],[1005,1,1,2,3]]],[43,4,4,3,7,[[1019,1,1,3,4],[1024,1,1,4,5],[1034,2,2,5,7]]],[50,1,1,7,8,[[1108,1,1,7,8]]],[65,1,1,8,9,[[1177,1,1,8,9]]]],[24955,26324,26467,26961,27144,27541,27543,29512,30878]]],["Desiring",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29703]]],["Will",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24835]]],["Wilt",[4,4,[[39,1,1,0,1,[[941,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[43,1,1,2,3,[[1042,1,1,2,3]]],[44,1,1,3,4,[[1058,1,1,3,4]]]],[23567,26216,27805,28269]]],["be",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30441]]],["desire",[9,9,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[992,1,1,1,2]]],[46,2,2,2,4,[[1088,1,1,2,3],[1089,1,1,3,4]]],[47,5,5,4,9,[[1094,3,3,4,7],[1096,2,2,7,9]]]],[24573,25825,29001,29028,29140,29151,29152,29200,29201]]],["desired",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25387]]],["desireth",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25146]]],["desiring",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25265]]],["desirous",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[42,1,1,1,2,[[1012,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]]],[25943,26745,29021]]],["disposed",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28594]]],["forward",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28942]]],["had",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28697]]],["have",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25745]]],["intending",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25581]]],["listed",[2,2,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]]],[23712,24551]]],["listeth",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26128]]],["love",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24711]]],["pleased",[2,2,[[45,2,2,0,2,[[1073,1,1,0,1],[1076,1,1,1,2]]]],[28652,28756]]],["will",[64,62,[[39,20,20,0,20,[[933,1,1,0,1],[936,1,1,1,2],[937,1,1,2,3],[939,1,1,3,4],[940,1,1,4,5],[943,1,1,5,6],[944,2,2,6,8],[948,5,5,8,13],[949,1,1,13,14],[951,1,1,14,15],[954,2,2,15,17],[955,3,3,17,20]]],[40,9,9,20,29,[[957,1,1,20,21],[962,1,1,21,22],[964,2,2,22,24],[966,2,2,24,26],[970,2,2,26,28],[971,1,1,28,29]]],[41,6,6,29,35,[[976,1,1,29,30],[977,1,1,30,31],[981,2,2,31,33],[984,1,1,33,34],[985,1,1,34,35]]],[42,8,8,35,43,[[1001,2,2,35,37],[1003,1,1,37,38],[1004,1,1,38,39],[1011,1,1,39,40],[1013,1,1,40,41],[1017,2,2,41,43]]],[43,1,1,43,44,[[1035,1,1,43,44]]],[44,3,2,44,46,[[1052,1,1,44,45],[1054,2,1,45,46]]],[45,6,6,46,52,[[1065,2,2,46,48],[1068,2,2,48,50],[1075,1,1,50,51],[1077,1,1,51,52]]],[46,1,1,52,53,[[1085,1,1,52,53]]],[49,1,1,53,54,[[1104,1,1,53,54]]],[53,2,2,54,56,[[1120,1,1,54,55],[1123,1,1,55,56]]],[54,1,1,56,57,[[1127,1,1,56,57]]],[58,1,1,57,58,[[1149,1,1,57,58]]],[59,1,1,58,59,[[1153,1,1,58,59]]],[63,1,1,59,60,[[1165,1,1,59,60]]],[65,3,2,60,62,[[1177,2,1,60,61],[1188,1,1,61,62]]]],[23274,23348,23392,23473,23496,23665,23696,23697,23806,23807,23818,23819,23824,23855,23922,24069,24093,24146,24150,24172,24256,24432,24534,24535,24631,24632,24761,24790,24838,25069,25120,25324,25325,25508,25549,26231,26250,26345,26425,26706,26783,26920,26921,27578,28109,28173,28452,28454,28523,28526,28713,28783,28943,29404,29720,29774,29865,30352,30434,30671,30877,31097]]],["willeth",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28171]]],["willing",[8,8,[[39,1,1,0,1,[[929,1,1,0,1]]],[41,2,2,1,3,[[982,1,1,1,2],[995,1,1,2,3]]],[42,1,1,3,4,[[1001,1,1,3,4]]],[43,2,2,4,6,[[1041,1,1,4,5],[1042,1,1,5,6]]],[44,1,1,6,7,[[1054,1,1,6,7]]],[57,1,1,7,8,[[1145,1,1,7,8]]]],[23163,25392,25955,26245,27796,27805,28177,30259]]],["willingly",[2,2,[[42,1,1,0,1,[[1002,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[26278,30527]]],["wilt",[17,17,[[39,7,7,0,7,[[936,1,1,0,1],[943,1,1,1,2],[945,1,1,2,3],[947,2,2,3,5],[948,1,1,5,6],[954,1,1,6,7]]],[40,4,4,7,11,[[957,1,1,7,8],[962,1,1,8,9],[966,1,1,9,10],[970,1,1,10,11]]],[41,4,4,11,15,[[977,1,1,11,12],[981,1,1,12,13],[990,1,1,13,14],[994,1,1,14,15]]],[43,1,1,15,16,[[1026,1,1,15,16]]],[58,1,1,16,17,[[1147,1,1,16,17]]]],[23347,23661,23704,23779,23783,23813,24071,24255,24429,24639,24766,25119,25355,25729,25873,27222,30313]]],["would",[72,68,[[39,12,11,0,11,[[930,1,1,0,1],[933,1,1,1,2],[935,1,1,2,3],[940,1,1,3,4],[942,1,1,4,5],[946,2,2,5,7],[950,1,1,7,8],[951,2,1,8,9],[955,2,2,9,11]]],[40,8,8,11,19,[[959,1,1,11,12],[962,3,3,12,15],[963,1,1,15,16],[965,1,1,16,17],[966,2,2,17,19]]],[41,8,7,19,26,[[978,1,1,19,20],[985,2,1,20,21],[987,1,1,21,22],[988,1,1,22,23],[990,2,2,23,25],[991,1,1,25,26]]],[42,6,6,26,32,[[997,1,1,26,27],[1002,1,1,27,28],[1003,2,2,28,30],[1005,1,1,30,31],[1008,1,1,31,32]]],[43,7,7,32,39,[[1024,1,1,32,33],[1027,1,1,33,34],[1031,1,1,34,35],[1033,1,1,35,36],[1036,1,1,36,37],[1041,1,1,37,38],[1043,1,1,38,39]]],[44,9,8,39,47,[[1046,1,1,39,40],[1052,6,5,40,45],[1056,1,1,45,46],[1061,1,1,46,47]]],[45,7,7,47,54,[[1068,2,2,47,49],[1071,2,2,49,51],[1072,1,1,51,52],[1073,1,1,52,53],[1075,1,1,53,54]]],[46,4,3,54,57,[[1078,1,1,54,55],[1082,1,1,55,56],[1089,2,1,56,57]]],[47,4,4,57,61,[[1091,1,1,57,58],[1093,1,1,58,59],[1094,1,1,59,60],[1095,1,1,60,61]]],[50,2,2,61,63,[[1107,1,1,61,62],[1108,1,1,62,63]]],[51,2,2,63,65,[[1112,1,1,63,64],[1114,1,1,64,65]]],[52,1,1,65,66,[[1118,1,1,65,66]]],[56,1,1,66,67,[[1132,1,1,66,67]]],[57,1,1,67,68,[[1144,1,1,67,68]]]],[23187,23276,23328,23527,23602,23750,23757,23875,23955,24144,24163,24301,24426,24433,24455,24487,24568,24623,24624,25177,25552,25616,25646,25692,25701,25758,26087,26268,26329,26372,26467,26601,27155,27269,27427,27486,27618,27775,27828,27943,28106,28107,28110,28111,28112,28234,28355,28494,28519,28568,28587,28603,28635,28683,28808,28881,29042,29064,29104,29148,29179,29492,29495,29588,29616,29688,29952,30229]]],["wouldest",[4,3,[[42,2,1,0,1,[[1017,2,1,0,1]]],[57,2,2,1,3,[[1142,2,2,1,3]]]],[26916,30138,30141]]]]},{"k":"G2310","v":[["*",[16,15,[[41,3,3,0,3,[[978,2,2,0,2],[986,1,1,2,3]]],[43,1,1,3,4,[[1033,1,1,3,4]]],[44,1,1,4,5,[[1060,1,1,4,5]]],[45,3,3,5,8,[[1064,3,3,5,8]]],[48,1,1,8,9,[[1098,1,1,8,9]]],[53,1,1,9,10,[[1124,1,1,9,10]]],[54,1,1,10,11,[[1126,1,1,10,11]]],[57,2,2,11,13,[[1138,1,1,11,12],[1143,1,1,12,13]]],[65,3,2,13,15,[[1187,3,2,13,15]]]],[25194,25195,25582,27509,28323,28420,28421,28422,29249,29807,29846,30045,30182,31067,31072]]],["foundation",[12,12,[[41,3,3,0,3,[[978,2,2,0,2],[986,1,1,2,3]]],[44,1,1,3,4,[[1060,1,1,3,4]]],[45,3,3,4,7,[[1064,3,3,4,7]]],[48,1,1,7,8,[[1098,1,1,7,8]]],[53,1,1,8,9,[[1124,1,1,8,9]]],[54,1,1,9,10,[[1126,1,1,9,10]]],[57,1,1,10,11,[[1138,1,1,10,11]]],[65,1,1,11,12,[[1187,1,1,11,12]]]],[25194,25195,25582,28323,28420,28421,28422,29249,29807,29846,30045,31072]]],["foundations",[4,4,[[43,1,1,0,1,[[1033,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]],[65,2,2,2,4,[[1187,2,2,2,4]]]],[27509,30182,31067,31072]]]]},{"k":"G2311","v":[["*",[6,6,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[48,1,1,2,3,[[1099,1,1,2,3]]],[50,1,1,3,4,[[1107,1,1,3,4]]],[57,1,1,4,5,[[1133,1,1,4,5]]],[59,1,1,5,6,[[1155,1,1,5,6]]]],[23341,25194,29268,29488,29973,30475]]],["foundation",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29973]]],["founded",[2,2,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]]],[23341,25194]]],["grounded",[2,2,[[48,1,1,0,1,[[1099,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[29268,29488]]],["settle",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30475]]]]},{"k":"G2312","v":[["God",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29612]]]]},{"k":"G2313","v":[["God",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27743]]]]},{"k":"G2314","v":[["God",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27098]]]]},{"k":"G2315","v":[["God",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29869]]]]},{"k":"G2316","v":[["*",[1343,1172,[[39,55,46,0,46,[[929,1,1,0,1],[931,2,2,1,3],[932,5,5,3,8],[933,3,3,8,11],[934,3,3,11,14],[936,1,1,14,15],[937,1,1,15,16],[940,3,2,16,18],[942,1,1,18,19],[943,4,4,19,23],[944,2,2,23,25],[947,4,4,25,29],[949,3,3,29,32],[950,12,7,32,39],[951,1,1,39,40],[954,3,2,40,42],[955,6,4,42,46]]],[40,52,44,46,90,[[957,4,4,46,50],[958,3,3,50,53],[959,2,2,53,55],[960,3,3,55,58],[961,2,1,58,59],[963,3,3,59,62],[964,1,1,62,63],[965,2,2,63,65],[966,10,9,65,74],[967,1,1,74,75],[968,14,9,75,84],[969,1,1,84,85],[970,1,1,85,86],[971,4,3,86,89],[972,1,1,89,90]]],[41,124,116,90,206,[[973,13,13,90,103],[974,6,6,103,109],[975,4,4,109,113],[976,8,8,113,121],[977,4,4,121,125],[978,3,3,125,128],[979,5,4,128,132],[980,6,6,132,138],[981,7,7,138,145],[982,3,3,145,148],[983,5,4,148,152],[984,8,8,152,160],[985,5,5,160,165],[986,1,1,165,166],[987,1,1,166,167],[988,4,3,167,170],[989,5,4,170,174],[990,14,13,174,187],[991,2,2,187,189],[992,8,5,189,194],[993,2,2,194,196],[994,4,4,196,200],[995,4,4,200,204],[996,2,2,204,206]]],[42,84,70,206,276,[[997,12,11,206,217],[999,13,10,217,227],[1000,2,2,227,229],[1001,5,4,229,233],[1002,7,7,233,240],[1003,1,1,240,241],[1004,8,5,241,246],[1005,7,7,246,253],[1006,5,4,253,257],[1007,7,5,257,262],[1008,1,1,262,263],[1009,5,3,263,266],[1010,1,1,266,267],[1012,3,3,267,270],[1013,1,1,270,271],[1015,1,1,271,272],[1016,4,3,272,275],[1017,1,1,275,276]]],[43,171,157,276,433,[[1018,1,1,276,277],[1019,12,11,277,288],[1020,10,9,288,297],[1021,7,5,297,302],[1022,6,6,302,308],[1023,3,3,308,311],[1024,21,16,311,327],[1025,7,7,327,334],[1026,1,1,334,335],[1027,17,14,335,349],[1028,7,5,349,354],[1029,4,4,354,358],[1030,14,14,358,372],[1031,5,5,372,377],[1032,9,9,377,386],[1033,4,4,386,390],[1034,5,5,390,395],[1035,5,5,395,400],[1036,3,3,400,403],[1037,6,6,403,409],[1038,1,1,409,410],[1039,2,2,410,412],[1040,3,3,412,415],[1041,3,3,415,418],[1043,6,6,418,424],[1044,4,4,424,428],[1045,5,5,428,433]]],[44,153,135,433,568,[[1046,21,17,433,450],[1047,11,11,450,461],[1048,17,15,461,476],[1049,6,5,476,481],[1050,7,7,481,488],[1051,7,6,488,494],[1052,4,3,494,497],[1053,18,15,497,512],[1054,9,9,512,521],[1055,6,5,521,526],[1056,11,10,526,536],[1057,4,3,536,539],[1058,6,4,539,543],[1059,10,9,543,552],[1060,13,13,552,565],[1061,3,3,565,568]]],[45,106,86,568,654,[[1062,20,14,568,582],[1063,12,8,582,590],[1064,13,8,590,598],[1065,4,4,598,602],[1066,1,1,602,603],[1067,8,7,603,610],[1068,6,6,610,616],[1069,6,5,616,621],[1070,2,2,621,623],[1071,5,5,623,628],[1072,6,6,628,634],[1073,5,5,634,639],[1075,7,6,639,645],[1076,11,9,645,654]]],[46,79,65,654,719,[[1078,15,11,654,665],[1079,5,3,665,668],[1080,3,3,668,671],[1081,8,5,671,676],[1082,9,8,676,684],[1083,7,4,684,688],[1084,6,6,688,694],[1085,3,3,694,697],[1086,7,7,697,704],[1087,3,3,704,707],[1088,4,4,707,711],[1089,4,4,711,715],[1090,5,4,715,719]]],[47,31,29,719,748,[[1091,8,8,719,727],[1092,4,4,727,731],[1093,8,8,731,739],[1094,8,6,739,745],[1095,1,1,745,746],[1096,2,2,746,748]]],[48,32,32,748,780,[[1097,4,4,748,752],[1098,6,6,752,758],[1099,5,5,758,763],[1100,6,6,763,769],[1101,6,6,769,775],[1102,5,5,775,780]]],[49,23,22,780,802,[[1103,5,5,780,785],[1104,7,6,785,791],[1105,5,5,791,796],[1106,6,6,796,802]]],[50,22,21,802,823,[[1107,9,8,802,810],[1108,3,3,810,813],[1109,7,7,813,820],[1110,3,3,820,823]]],[51,37,30,823,853,[[1111,8,6,823,829],[1112,14,10,829,839],[1113,5,4,839,843],[1114,7,7,843,850],[1115,3,3,850,853]]],[52,19,14,853,867,[[1116,10,9,853,862],[1117,8,4,862,866],[1118,1,1,866,867]]],[53,23,21,867,888,[[1119,5,5,867,872],[1120,3,2,872,874],[1121,4,3,874,877],[1122,4,4,877,881],[1123,3,3,881,884],[1124,4,4,884,888]]],[54,12,12,888,900,[[1125,6,6,888,894],[1126,4,4,894,898],[1127,1,1,898,899],[1128,1,1,899,900]]],[55,13,12,900,912,[[1129,7,6,900,906],[1130,4,4,906,910],[1131,2,2,910,912]]],[56,2,2,912,914,[[1132,2,2,912,914]]],[57,69,64,914,978,[[1133,5,4,914,918],[1134,4,4,918,922],[1135,2,2,922,924],[1136,5,5,924,929],[1137,4,4,929,933],[1138,9,9,933,942],[1139,4,4,942,946],[1140,1,1,946,947],[1141,4,3,947,950],[1142,7,7,950,957],[1143,12,9,957,966],[1144,7,7,966,973],[1145,5,5,973,978]]],[58,17,13,978,991,[[1146,6,5,978,983],[1147,4,3,983,986],[1148,2,1,986,987],[1149,5,4,987,991]]],[59,39,35,991,1026,[[1151,6,5,991,996],[1152,9,9,996,1005],[1153,8,8,1005,1013],[1154,11,8,1013,1021],[1155,5,5,1021,1026]]],[60,7,7,1026,1033,[[1156,4,4,1026,1030],[1157,1,1,1030,1031],[1158,2,2,1031,1033]]],[61,64,41,1033,1074,[[1159,1,1,1033,1034],[1160,3,3,1034,1037],[1161,11,9,1037,1046],[1162,29,15,1046,1061],[1163,20,13,1061,1074]]],[62,2,2,1074,1076,[[1164,2,2,1074,1076]]],[63,3,2,1076,1078,[[1165,3,2,1076,1078]]],[64,5,4,1078,1082,[[1166,5,4,1078,1082]]],[65,99,90,1082,1172,[[1167,4,4,1082,1086],[1168,2,2,1086,1088],[1169,7,4,1088,1092],[1170,2,2,1092,1094],[1171,3,3,1094,1097],[1172,1,1,1097,1098],[1173,7,7,1098,1105],[1174,2,2,1105,1107],[1175,2,2,1107,1109],[1176,1,1,1109,1110],[1177,8,7,1110,1117],[1178,5,4,1117,1121],[1179,1,1,1121,1122],[1180,6,6,1122,1128],[1181,6,5,1128,1133],[1182,7,7,1133,1140],[1183,2,1,1140,1141],[1184,3,3,1141,1144],[1185,9,9,1144,1153],[1186,4,4,1153,1157],[1187,10,8,1157,1165],[1188,7,7,1165,1172]]]],[23167,23201,23208,23212,23213,23215,23216,23219,23242,23243,23268,23306,23312,23315,23374,23387,23493,23517,23630,23636,23637,23639,23664,23688,23695,23768,23779,23786,23788,23838,23857,23869,23888,23893,23901,23902,23903,23904,23909,23940,24115,24117,24169,24172,24175,24183,24216,24229,24230,24239,24267,24272,24286,24299,24323,24334,24349,24353,24371,24471,24472,24476,24533,24539,24585,24594,24597,24602,24603,24606,24611,24612,24613,24615,24662,24687,24690,24697,24699,24700,24702,24703,24705,24707,24736,24779,24860,24865,24869,24892,24899,24901,24909,24912,24919,24923,24925,24928,24930,24940,24957,24961,24971,24986,24987,24993,25001,25013,25025,25027,25031,25033,25063,25066,25067,25071,25072,25075,25097,25104,25106,25108,25128,25132,25133,25150,25158,25166,25211,25223,25224,25225,25246,25255,25256,25266,25273,25284,25303,25312,25321,25328,25344,25361,25363,25372,25374,25390,25425,25433,25447,25454,25465,25467,25468,25479,25480,25483,25487,25490,25531,25536,25538,25546,25547,25568,25598,25633,25635,25636,25666,25669,25671,25672,25690,25692,25695,25699,25701,25704,25705,25707,25712,25713,25715,25717,25731,25742,25768,25800,25804,25815,25816,25817,25830,25857,25880,25882,25933,25934,25970,25975,25982,25986,26010,26044,26045,26046,26050,26056,26057,26062,26073,26078,26080,26093,26095,26122,26123,26125,26136,26137,26138,26141,26153,26154,26156,26166,26180,26228,26235,26252,26254,26284,26285,26286,26290,26302,26303,26326,26345,26421,26422,26423,26428,26435,26443,26456,26464,26469,26471,26473,26475,26514,26515,26516,26517,26527,26545,26550,26563,26575,26623,26633,26661,26662,26669,26728,26753,26756,26762,26832,26884,26895,26898,26917,26926,26960,26966,26971,26972,26973,26979,26981,26982,26985,26988,26996,27004,27005,27009,27011,27014,27017,27018,27021,27022,27032,27041,27043,27046,27053,27063,27088,27089,27090,27091,27098,27103,27108,27112,27118,27122,27123,27125,27133,27141,27148,27151,27153,27156,27158,27159,27161,27162,27171,27172,27186,27188,27190,27196,27197,27198,27213,27236,27261,27262,27263,27274,27281,27287,27290,27292,27293,27297,27299,27300,27301,27305,27308,27316,27324,27325,27330,27342,27359,27360,27361,27367,27369,27378,27379,27383,27385,27388,27392,27395,27398,27399,27405,27406,27408,27425,27429,27436,27440,27441,27446,27449,27450,27452,27454,27456,27460,27461,27482,27497,27500,27508,27517,27536,27546,27547,27552,27553,27564,27568,27570,27578,27583,27593,27596,27611,27647,27650,27651,27653,27654,27658,27683,27707,27718,27735,27737,27738,27783,27784,27785,27829,27831,27841,27843,27845,27852,27878,27879,27880,27890,27905,27914,27922,27927,27930,27931,27934,27937,27938,27939,27940,27946,27947,27948,27949,27951,27953,27954,27955,27956,27958,27962,27964,27965,27966,27967,27973,27975,27978,27979,27985,27986,27991,27993,27994,27995,27996,27997,27998,28002,28009,28010,28012,28013,28014,28016,28020,28021,28024,28025,28028,28039,28042,28048,28049,28052,28055,28057,28058,28062,28078,28079,28081,28085,28090,28091,28095,28113,28116,28119,28123,28124,28125,28130,28132,28133,28135,28137,28143,28144,28147,28149,28150,28155,28160,28161,28163,28166,28169,28171,28175,28177,28181,28189,28190,28191,28197,28205,28210,28211,28217,28230,28231,28232,28238,28239,28241,28242,28246,28247,28248,28267,28268,28270,28272,28283,28284,28286,28291,28292,28297,28298,28300,28302,28308,28309,28310,28311,28312,28316,28318,28319,28320,28322,28333,28335,28336,28356,28362,28363,28364,28365,28366,28367,28372,28377,28381,28383,28384,28387,28388,28390,28391,28393,28395,28399,28401,28403,28404,28405,28406,28408,28416,28417,28419,28420,28426,28427,28429,28433,28434,28438,28442,28453,28467,28476,28477,28478,28480,28481,28486,28487,28494,28502,28504,28506,28511,28527,28530,28531,28532,28533,28535,28549,28561,28572,28580,28587,28598,28599,28603,28607,28612,28613,28616,28622,28637,28640,28652,28658,28662,28680,28696,28703,28706,28711,28714,28727,28728,28733,28742,28746,28752,28756,28768,28775,28801,28802,28803,28804,28809,28812,28818,28819,28820,28821,28823,28838,28839,28841,28844,28845,28846,28861,28863,28865,28866,28874,28878,28882,28888,28890,28895,28896,28897,28898,28899,28902,28905,28914,28917,28922,28925,28926,28927,28928,28933,28937,28948,28963,28964,28967,28968,28969,28970,28971,28975,28976,28984,28991,28996,29000,29020,29024,29025,29041,29043,29047,29050,29054,29057,29058,29060,29061,29067,29070,29072,29077,29081,29087,29100,29101,29102,29108,29110,29113,29119,29120,29122,29123,29128,29135,29137,29138,29139,29140,29145,29183,29195,29204,29207,29208,29209,29223,29233,29237,29239,29245,29248,29251,29253,29258,29260,29261,29270,29278,29285,29290,29296,29302,29304,29305,29306,29309,29310,29324,29325,29343,29348,29350,29354,29360,29363,29364,29369,29372,29389,29397,29400,29402,29404,29406,29418,29424,29430,29435,29436,29440,29448,29449,29451,29460,29461,29462,29466,29467,29468,29471,29475,29480,29490,29492,29496,29506,29513,29518,29520,29523,29529,29532,29534,29539,29545,29553,29554,29561,29562,29563,29564,29568,29569,29572,29574,29575,29578,29579,29580,29582,29583,29584,29585,29592,29599,29601,29603,29604,29606,29608,29610,29611,29617,29619,29630,29639,29644,29650,29651,29652,29653,29654,29655,29657,29660,29661,29665,29672,29674,29677,29683,29697,29698,29700,29707,29713,29719,29721,29736,29746,29747,29750,29751,29752,29757,29767,29768,29784,29789,29799,29801,29805,29810,29811,29812,29815,29816,29817,29836,29842,29846,29852,29870,29871,29893,29894,29895,29896,29899,29908,29913,29918,29919,29921,29927,29931,29941,29942,29964,29969,29971,29972,29981,29986,29990,29994,29999,30007,30018,30023,30024,30026,30028,30031,30034,30040,30042,30045,30047,30049,30050,30051,30054,30057,30061,30062,30065,30067,30083,30089,30102,30119,30125,30129,30140,30142,30145,30154,30162,30164,30169,30175,30176,30177,30178,30182,30188,30191,30197,30212,30214,30219,30227,30234,30235,30240,30241,30245,30248,30256,30257,30261,30267,30271,30279,30286,30293,30298,30312,30316,30328,30341,30343,30344,30345,30376,30377,30379,30395,30397,30403,30404,30409,30411,30414,30415,30416,30418,30419,30428,30429,30439,30441,30442,30444,30445,30446,30448,30452,30456,30457,30460,30462,30463,30465,30467,30470,30471,30475,30477,30480,30481,30496,30500,30504,30527,30534,30545,30555,30564,30567,30580,30581,30587,30588,30589,30595,30596,30599,30600,30604,30605,30606,30607,30609,30610,30611,30612,30613,30614,30615,30618,30619,30623,30624,30625,30626,30627,30628,30629,30633,30634,30635,30636,30637,30642,30643,30644,30648,30654,30664,30669,30673,30676,30693,30697,30698,30699,30703,30706,30724,30735,30747,30748,30758,30760,30773,30776,30785,30788,30789,30802,30812,30813,30820,30821,30822,30825,30827,30829,30831,30844,30853,30868,30873,30876,30883,30885,30888,30889,30891,30896,30897,30901,30908,30914,30930,30931,30933,30936,30938,30945,30947,30948,30949,30953,30954,30955,30961,30963,30965,30968,30973,30975,30992,30998,31001,31013,31018,31021,31022,31023,31026,31027,31030,31032,31034,31042,31044,31047,31050,31055,31056,31057,31060,31063,31064,31075,31076,31081,31083,31085,31086,31089,31098,31099]]],["+",[22,21,[[39,2,2,0,2,[[943,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[963,1,1,2,3]]],[41,2,2,3,5,[[977,1,1,3,4],[990,1,1,4,5]]],[42,1,1,5,6,[[1004,1,1,5,6]]],[43,1,1,6,7,[[1045,1,1,6,7]]],[44,5,4,7,11,[[1048,1,1,7,8],[1051,1,1,8,9],[1058,1,1,9,10],[1059,2,1,10,11]]],[46,4,4,11,15,[[1081,1,1,11,12],[1084,3,3,12,15]]],[47,1,1,15,16,[[1091,1,1,15,16]]],[51,1,1,16,17,[[1113,1,1,16,17]]],[54,1,1,17,18,[[1126,1,1,17,18]]],[55,1,1,18,19,[[1131,1,1,18,19]]],[57,1,1,19,20,[[1138,1,1,19,20]]],[63,1,1,20,21,[[1165,1,1,20,21]]]],[23639,23857,24476,25108,25717,26423,27922,27994,28085,28267,28286,28861,28925,28926,28927,29077,29599,29852,29927,30050,30664]]],["GOD",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27546]]],["God",[1288,1137,[[39,51,43,0,43,[[929,1,1,0,1],[931,2,2,1,3],[932,5,5,3,8],[933,2,2,8,10],[934,3,3,10,13],[936,1,1,13,14],[937,1,1,14,15],[940,3,2,15,17],[942,1,1,17,18],[943,3,3,18,21],[944,2,2,21,23],[947,4,4,23,27],[949,2,2,27,29],[950,11,7,29,36],[951,1,1,36,37],[954,3,2,37,39],[955,6,4,39,43]]],[40,50,43,43,86,[[957,4,4,43,47],[958,3,3,47,50],[959,2,2,50,52],[960,3,3,52,55],[961,2,1,55,56],[963,2,2,56,58],[964,1,1,58,59],[965,2,2,59,61],[966,10,9,61,70],[967,1,1,70,71],[968,13,9,71,80],[969,1,1,80,81],[970,1,1,81,82],[971,4,3,82,85],[972,1,1,85,86]]],[41,120,113,86,199,[[973,13,13,86,99],[974,6,6,99,105],[975,4,4,105,109],[976,8,8,109,117],[977,3,3,117,120],[978,3,3,120,123],[979,5,4,123,127],[980,6,6,127,133],[981,7,7,133,140],[982,3,3,140,143],[983,5,4,143,147],[984,8,8,147,155],[985,4,4,155,159],[986,1,1,159,160],[987,1,1,160,161],[988,4,3,161,164],[989,5,4,164,168],[990,13,12,168,180],[991,2,2,180,182],[992,7,5,182,187],[993,2,2,187,189],[994,4,4,189,193],[995,4,4,193,197],[996,2,2,197,199]]],[42,80,69,199,268,[[997,12,11,199,210],[999,13,10,210,220],[1000,2,2,220,222],[1001,5,4,222,226],[1002,7,7,226,233],[1003,1,1,233,234],[1004,6,5,234,239],[1005,7,7,239,246],[1006,3,3,246,249],[1007,7,5,249,254],[1008,1,1,254,255],[1009,5,3,255,258],[1010,1,1,258,259],[1012,3,3,259,262],[1013,1,1,262,263],[1015,1,1,263,264],[1016,4,3,264,267],[1017,1,1,267,268]]],[43,162,148,268,416,[[1018,1,1,268,269],[1019,12,11,269,280],[1020,10,9,280,289],[1021,7,5,289,294],[1022,6,6,294,300],[1023,3,3,300,303],[1024,19,14,303,317],[1025,7,7,317,324],[1026,1,1,324,325],[1027,17,14,325,339],[1028,7,5,339,344],[1029,3,3,344,347],[1030,14,14,347,361],[1031,4,4,361,365],[1032,9,9,365,374],[1033,4,4,374,378],[1034,4,4,378,382],[1035,5,5,382,387],[1036,2,2,387,389],[1037,6,6,389,395],[1038,1,1,395,396],[1039,2,2,396,398],[1040,2,2,398,400],[1041,3,3,400,403],[1043,6,6,403,409],[1044,4,4,409,413],[1045,3,3,413,416]]],[44,145,131,416,547,[[1046,21,17,416,433],[1047,11,11,433,444],[1048,16,14,444,458],[1049,6,5,458,463],[1050,7,7,463,470],[1051,6,5,470,475],[1052,4,3,475,478],[1053,17,15,478,493],[1054,9,9,493,502],[1055,5,5,502,507],[1056,11,10,507,517],[1057,4,3,517,520],[1058,4,3,520,523],[1059,8,8,523,531],[1060,13,13,531,544],[1061,3,3,544,547]]],[45,100,84,547,631,[[1062,20,14,547,561],[1063,12,8,561,569],[1064,10,7,569,576],[1065,4,4,576,580],[1066,1,1,580,581],[1067,7,7,581,588],[1068,6,6,588,594],[1069,4,4,594,598],[1070,2,2,598,600],[1071,5,5,600,605],[1072,6,6,605,611],[1073,5,5,611,616],[1075,7,6,616,622],[1076,11,9,622,631]]],[46,71,60,631,691,[[1078,14,11,631,642],[1079,5,3,642,645],[1080,2,2,645,647],[1081,6,5,647,652],[1082,9,8,652,660],[1083,7,4,660,664],[1084,3,3,664,667],[1085,3,3,667,670],[1086,7,7,670,677],[1087,3,3,677,680],[1088,3,3,680,683],[1089,4,4,683,687],[1090,5,4,687,691]]],[47,29,28,691,719,[[1091,7,7,691,698],[1092,4,4,698,702],[1093,8,8,702,710],[1094,7,6,710,716],[1095,1,1,716,717],[1096,2,2,717,719]]],[48,32,32,719,751,[[1097,4,4,719,723],[1098,6,6,723,729],[1099,5,5,729,734],[1100,6,6,734,740],[1101,6,6,740,746],[1102,5,5,746,751]]],[49,23,22,751,773,[[1103,5,5,751,756],[1104,7,6,756,762],[1105,5,5,762,767],[1106,6,6,767,773]]],[50,22,21,773,794,[[1107,9,8,773,781],[1108,3,3,781,784],[1109,7,7,784,791],[1110,3,3,791,794]]],[51,35,29,794,823,[[1111,7,5,794,799],[1112,14,10,799,809],[1113,4,4,809,813],[1114,7,7,813,820],[1115,3,3,820,823]]],[52,19,14,823,837,[[1116,10,9,823,832],[1117,8,4,832,836],[1118,1,1,836,837]]],[53,22,20,837,857,[[1119,4,4,837,841],[1120,3,2,841,843],[1121,4,3,843,846],[1122,4,4,846,850],[1123,3,3,850,853],[1124,4,4,853,857]]],[54,11,11,857,868,[[1125,6,6,857,863],[1126,3,3,863,866],[1127,1,1,866,867],[1128,1,1,867,868]]],[55,11,11,868,879,[[1129,6,6,868,874],[1130,4,4,874,878],[1131,1,1,878,879]]],[56,2,2,879,881,[[1132,2,2,879,881]]],[57,68,63,881,944,[[1133,5,4,881,885],[1134,4,4,885,889],[1135,2,2,889,891],[1136,5,5,891,896],[1137,4,4,896,900],[1138,8,8,900,908],[1139,4,4,908,912],[1140,1,1,912,913],[1141,4,3,913,916],[1142,7,7,916,923],[1143,12,9,923,932],[1144,7,7,932,939],[1145,5,5,939,944]]],[58,17,13,944,957,[[1146,6,5,944,949],[1147,4,3,949,952],[1148,2,1,952,953],[1149,5,4,953,957]]],[59,39,35,957,992,[[1151,6,5,957,962],[1152,9,9,962,971],[1153,8,8,971,979],[1154,11,8,979,987],[1155,5,5,987,992]]],[60,7,7,992,999,[[1156,4,4,992,996],[1157,1,1,996,997],[1158,2,2,997,999]]],[61,64,41,999,1040,[[1159,1,1,999,1000],[1160,3,3,1000,1003],[1161,11,9,1003,1012],[1162,29,15,1012,1027],[1163,20,13,1027,1040]]],[62,2,2,1040,1042,[[1164,2,2,1040,1042]]],[63,2,1,1042,1043,[[1165,2,1,1042,1043]]],[64,5,4,1043,1047,[[1166,5,4,1043,1047]]],[65,99,90,1047,1137,[[1167,4,4,1047,1051],[1168,2,2,1051,1053],[1169,7,4,1053,1057],[1170,2,2,1057,1059],[1171,3,3,1059,1062],[1172,1,1,1062,1063],[1173,7,7,1063,1070],[1174,2,2,1070,1072],[1175,2,2,1072,1074],[1176,1,1,1074,1075],[1177,8,7,1075,1082],[1178,5,4,1082,1086],[1179,1,1,1086,1087],[1180,6,6,1087,1093],[1181,6,5,1093,1098],[1182,7,7,1098,1105],[1183,2,1,1105,1106],[1184,3,3,1106,1109],[1185,9,9,1109,1118],[1186,4,4,1118,1122],[1187,10,8,1122,1130],[1188,7,7,1130,1137]]]],[23167,23201,23208,23212,23213,23215,23216,23219,23242,23243,23306,23312,23315,23374,23387,23493,23517,23630,23636,23637,23664,23688,23695,23768,23779,23786,23788,23838,23869,23888,23893,23901,23902,23903,23904,23909,23940,24115,24117,24169,24172,24175,24183,24216,24229,24230,24239,24267,24272,24286,24299,24323,24334,24349,24353,24371,24471,24472,24533,24539,24585,24594,24597,24602,24603,24606,24611,24612,24613,24615,24662,24687,24690,24697,24699,24700,24702,24703,24705,24707,24736,24779,24860,24865,24869,24892,24899,24901,24909,24912,24919,24923,24925,24928,24930,24940,24957,24961,24971,24986,24987,24993,25001,25013,25025,25027,25031,25033,25063,25066,25067,25071,25072,25075,25097,25104,25106,25128,25132,25133,25150,25158,25166,25211,25223,25224,25225,25246,25255,25256,25266,25273,25284,25303,25312,25321,25328,25344,25361,25363,25372,25374,25390,25425,25433,25447,25454,25465,25467,25468,25479,25480,25483,25487,25490,25531,25536,25538,25546,25568,25598,25633,25635,25636,25666,25669,25671,25672,25690,25692,25695,25699,25701,25704,25705,25707,25712,25713,25715,25731,25742,25768,25800,25804,25815,25816,25817,25830,25857,25880,25882,25933,25934,25970,25975,25982,25986,26010,26044,26045,26046,26050,26056,26057,26062,26073,26078,26080,26093,26095,26122,26123,26125,26136,26137,26138,26141,26153,26154,26156,26166,26180,26228,26235,26252,26254,26284,26285,26286,26290,26302,26303,26326,26345,26421,26422,26423,26428,26435,26443,26456,26464,26469,26471,26473,26475,26514,26516,26517,26527,26545,26550,26563,26575,26623,26633,26661,26662,26669,26728,26753,26756,26762,26832,26884,26895,26898,26917,26926,26960,26966,26971,26972,26973,26979,26981,26982,26985,26988,26996,27004,27005,27009,27011,27014,27017,27018,27021,27022,27032,27041,27043,27046,27053,27063,27088,27089,27090,27091,27098,27103,27108,27112,27118,27122,27123,27125,27133,27141,27148,27151,27153,27158,27161,27162,27171,27172,27186,27188,27190,27196,27197,27198,27213,27236,27261,27262,27263,27274,27281,27287,27290,27292,27293,27297,27299,27300,27301,27305,27308,27316,27324,27325,27330,27342,27360,27361,27367,27369,27378,27379,27383,27385,27388,27392,27395,27398,27399,27405,27406,27408,27429,27436,27440,27441,27446,27449,27450,27452,27454,27456,27460,27461,27482,27497,27500,27508,27517,27536,27547,27552,27553,27564,27568,27570,27578,27583,27593,27596,27647,27650,27651,27653,27654,27658,27683,27707,27718,27735,27737,27783,27784,27785,27829,27831,27841,27843,27845,27852,27878,27879,27880,27890,27914,27927,27930,27931,27934,27937,27938,27939,27940,27946,27947,27948,27949,27951,27953,27954,27955,27956,27958,27962,27964,27965,27966,27967,27973,27975,27978,27979,27985,27986,27991,27993,27995,27996,27997,27998,28002,28009,28010,28012,28013,28014,28016,28020,28021,28024,28025,28028,28039,28042,28048,28049,28052,28055,28057,28058,28062,28078,28079,28081,28090,28091,28095,28113,28116,28119,28123,28124,28125,28130,28132,28133,28135,28137,28143,28144,28147,28149,28150,28155,28160,28161,28163,28166,28169,28171,28175,28177,28181,28189,28190,28191,28197,28205,28210,28211,28217,28230,28231,28232,28238,28239,28241,28242,28246,28247,28248,28267,28268,28270,28283,28284,28291,28292,28297,28298,28300,28302,28308,28309,28310,28311,28312,28316,28318,28319,28320,28322,28333,28335,28336,28356,28362,28363,28364,28365,28366,28367,28372,28377,28381,28383,28384,28387,28388,28390,28391,28393,28395,28399,28401,28403,28404,28405,28406,28408,28416,28417,28419,28420,28426,28427,28429,28434,28438,28442,28453,28467,28476,28477,28478,28480,28481,28486,28487,28494,28502,28504,28506,28511,28527,28530,28531,28533,28535,28549,28561,28572,28580,28587,28598,28599,28603,28607,28612,28613,28616,28622,28637,28640,28652,28658,28662,28680,28696,28703,28706,28711,28714,28727,28728,28733,28742,28746,28752,28756,28768,28775,28801,28802,28803,28804,28809,28812,28818,28819,28820,28821,28823,28838,28839,28841,28844,28846,28861,28863,28865,28866,28874,28878,28882,28888,28890,28895,28896,28897,28898,28899,28902,28905,28914,28917,28922,28928,28933,28937,28948,28963,28964,28967,28968,28969,28970,28971,28975,28976,28984,28996,29000,29020,29024,29025,29041,29043,29047,29050,29054,29057,29058,29060,29061,29067,29070,29072,29081,29087,29100,29101,29102,29108,29110,29113,29119,29120,29122,29123,29128,29135,29137,29138,29139,29140,29145,29183,29195,29204,29207,29208,29209,29223,29233,29237,29239,29245,29248,29251,29253,29258,29260,29261,29270,29278,29285,29290,29296,29302,29304,29305,29306,29309,29310,29324,29325,29343,29348,29350,29354,29360,29363,29364,29369,29372,29389,29397,29400,29402,29404,29406,29418,29424,29430,29435,29436,29440,29448,29449,29451,29460,29461,29462,29466,29467,29468,29471,29475,29480,29490,29492,29496,29506,29513,29518,29520,29523,29529,29532,29534,29539,29545,29553,29554,29561,29562,29563,29564,29569,29572,29574,29575,29578,29579,29580,29582,29583,29584,29585,29592,29599,29601,29603,29604,29606,29608,29610,29611,29617,29619,29630,29639,29644,29650,29651,29652,29653,29654,29655,29657,29660,29661,29665,29672,29674,29677,29683,29697,29698,29707,29713,29719,29721,29736,29746,29747,29750,29751,29752,29757,29767,29768,29784,29789,29799,29801,29805,29810,29811,29812,29815,29816,29817,29836,29842,29846,29870,29871,29893,29894,29895,29896,29899,29908,29913,29918,29919,29921,29931,29941,29942,29964,29969,29971,29972,29981,29986,29990,29994,29999,30007,30018,30023,30024,30026,30028,30031,30034,30040,30042,30045,30047,30049,30051,30054,30057,30061,30062,30065,30067,30083,30089,30102,30119,30125,30129,30140,30142,30145,30154,30162,30164,30169,30175,30176,30177,30178,30182,30188,30191,30197,30212,30214,30219,30227,30234,30235,30240,30241,30245,30248,30256,30257,30261,30267,30271,30279,30286,30293,30298,30312,30316,30328,30341,30343,30344,30345,30376,30377,30379,30395,30397,30403,30404,30409,30411,30414,30415,30416,30418,30419,30428,30429,30439,30441,30442,30444,30445,30446,30448,30452,30456,30457,30460,30462,30463,30465,30467,30470,30471,30475,30477,30480,30481,30496,30500,30504,30527,30534,30545,30555,30564,30567,30580,30581,30587,30588,30589,30595,30596,30599,30600,30604,30605,30606,30607,30609,30610,30611,30612,30613,30614,30615,30618,30619,30623,30624,30625,30626,30627,30628,30629,30633,30634,30635,30636,30637,30642,30643,30644,30648,30654,30669,30673,30676,30693,30697,30698,30699,30703,30706,30724,30735,30747,30748,30758,30760,30773,30776,30785,30788,30789,30802,30812,30813,30820,30821,30822,30825,30827,30829,30831,30844,30853,30868,30873,30876,30883,30885,30888,30889,30891,30896,30897,30901,30908,30914,30930,30931,30933,30936,30938,30945,30947,30948,30949,30953,30954,30955,30961,30963,30965,30968,30973,30975,30992,30998,31001,31013,31018,31021,31022,31023,31026,31027,31030,31032,31034,31042,31044,31047,31050,31055,31056,31057,31060,31063,31064,31075,31076,31081,31083,31085,31086,31089,31098,31099]]],["God's",[14,13,[[39,2,2,0,2,[[933,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]],[42,1,1,4,5,[[1004,1,1,4,5]]],[43,1,1,5,6,[[1040,1,1,5,6]]],[44,3,3,6,9,[[1053,1,1,6,7],[1055,1,1,7,8],[1058,1,1,8,9]]],[45,4,3,9,12,[[1064,3,2,9,11],[1067,1,1,11,12]]],[55,1,1,12,13,[[1129,1,1,12,13]]]],[23268,23893,24690,25804,26428,27738,28149,28191,28272,28419,28433,28487,29893]]],["Godward",[2,2,[[46,1,1,0,1,[[1080,1,1,0,1]]],[51,1,1,1,2,[[1111,1,1,1,2]]]],[28845,29568]]],["god",[4,4,[[43,3,3,0,3,[[1024,1,1,0,1],[1029,1,1,1,2],[1045,1,1,2,3]]],[46,1,1,3,4,[[1081,1,1,3,4]]]],[27159,27359,27905,28863]]],["godly",[3,3,[[46,2,2,0,2,[[1078,1,1,0,1],[1088,1,1,1,2]]],[53,1,1,2,3,[[1119,1,1,2,3]]]],[28812,28991,29700]]],["gods",[8,7,[[42,2,2,0,2,[[1006,2,2,0,2]]],[43,3,3,2,5,[[1024,1,1,2,3],[1031,1,1,3,4],[1036,1,1,4,5]]],[45,2,1,5,6,[[1069,2,1,5,6]]],[47,1,1,6,7,[[1094,1,1,6,7]]]],[26515,26516,27156,27425,27611,28532,29139]]],["of",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25547]]]]},{"k":"G2317","v":[["godliness",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29726]]]]},{"k":"G2318","v":[["God",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26471]]]]},{"k":"G2319","v":[["God",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27960]]]]},{"k":"G2320","v":[["Godhead",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29503]]]]},{"k":"G2321","v":[["Theophilus",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]]],[24896,26924]]]]},{"k":"G2322","v":[["*",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[984,1,1,2,3]]],[65,1,1,3,4,[[1188,1,1,3,4]]]],[24002,25312,25501,31082]]],["healing",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[65,1,1,1,2,[[1188,1,1,1,2]]]],[25312,31082]]],["household",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[24002,25501]]]]},{"k":"G2323","v":[["*",[44,43,[[39,16,16,0,16,[[932,2,2,0,2],[936,2,2,2,4],[937,1,1,4,5],[938,2,2,5,7],[940,3,3,7,10],[942,1,1,10,11],[943,1,1,11,12],[945,2,2,12,14],[947,1,1,14,15],[949,1,1,15,16]]],[40,6,6,16,22,[[957,1,1,16,17],[959,3,3,17,20],[962,2,2,20,22]]],[41,14,13,22,35,[[976,2,2,22,24],[977,1,1,24,25],[978,2,2,25,27],[979,1,1,27,28],[980,2,2,28,30],[981,2,2,30,32],[982,1,1,32,33],[985,2,1,33,34],[986,1,1,34,35]]],[42,1,1,35,36,[[1001,1,1,35,36]]],[43,5,5,36,41,[[1021,1,1,36,37],[1022,1,1,37,38],[1025,1,1,38,39],[1034,1,1,39,40],[1045,1,1,40,41]]],[65,2,2,41,43,[[1179,2,2,41,43]]]],[23232,23233,23352,23361,23414,23418,23425,23499,23504,23511,23611,23663,23716,23718,23764,23840,24249,24290,24298,24303,24412,24420,25086,25103,25122,25153,25164,25216,25247,25288,25302,25307,25372,25532,25556,26220,27036,27075,27183,27548,27908,30911,30920]]],["Heal",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23425]]],["cure",[2,2,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[23716,25302]]],["cured",[3,3,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[42,1,1,2,3,[[1001,1,1,2,3]]]],[23718,25216,26220]]],["heal",[9,9,[[39,3,3,0,3,[[936,1,1,0,1],[938,1,1,1,2],[940,1,1,2,3]]],[40,2,2,3,5,[[959,2,2,3,5]]],[41,4,4,5,9,[[976,1,1,5,6],[978,1,1,6,7],[982,1,1,7,8],[986,1,1,8,9]]]],[23352,23418,23499,24290,24303,25086,25153,25372,25556]]],["healed",[25,24,[[39,8,8,0,8,[[932,1,1,0,1],[936,1,1,1,2],[940,2,2,2,4],[942,1,1,4,5],[943,1,1,5,6],[947,1,1,6,7],[949,1,1,7,8]]],[40,4,4,8,12,[[957,1,1,8,9],[959,1,1,9,10],[962,2,2,10,12]]],[41,7,6,12,18,[[976,1,1,12,13],[977,1,1,13,14],[978,1,1,14,15],[980,2,2,15,17],[985,2,1,17,18]]],[43,4,4,18,22,[[1021,1,1,18,19],[1022,1,1,19,20],[1025,1,1,20,21],[1045,1,1,21,22]]],[65,2,2,22,24,[[1179,2,2,22,24]]]],[23233,23361,23504,23511,23611,23663,23764,23840,24249,24298,24412,24420,25103,25122,25164,25247,25288,25532,27036,27075,27183,27908,30911,30920]]],["healing",[3,3,[[39,2,2,0,2,[[932,1,1,0,1],[937,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]]],[23232,23414,25307]]],["worshipped",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27548]]]]},{"k":"G2324","v":[["servant",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30000]]]]},{"k":"G2325","v":[["*",[21,17,[[39,3,3,0,3,[[934,1,1,0,1],[953,2,2,1,3]]],[41,3,3,3,6,[[984,1,1,3,4],[991,2,2,4,6]]],[42,4,3,6,9,[[1000,4,3,6,9]]],[45,1,1,9,10,[[1070,1,1,9,10]]],[46,2,1,10,11,[[1086,2,1,10,11]]],[47,4,3,11,14,[[1096,4,3,11,14]]],[58,1,1,14,15,[[1150,1,1,14,15]]],[65,3,2,15,17,[[1180,3,2,15,17]]]],[23308,24032,24034,25483,25752,25753,26192,26193,26194,28551,28962,29195,29196,29197,30358,30941,30942]]],["reap",[13,10,[[39,2,2,0,2,[[934,1,1,0,1],[953,1,1,1,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[42,1,1,3,4,[[1000,1,1,3,4]]],[45,1,1,4,5,[[1070,1,1,4,5]]],[46,2,1,5,6,[[1086,2,1,5,6]]],[47,4,3,6,9,[[1096,4,3,6,9]]],[65,2,1,9,10,[[1180,2,1,9,10]]]],[23308,24034,25483,26194,28551,28962,29195,29196,29197,30941]]],["reaped",[2,2,[[58,1,1,0,1,[[1150,1,1,0,1]]],[65,1,1,1,2,[[1180,1,1,1,2]]]],[30358,30942]]],["reapest",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25752]]],["reapeth",[3,2,[[42,3,2,0,2,[[1000,3,2,0,2]]]],[26192,26193]]],["reaping",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,1,1,1,2,[[991,1,1,1,2]]]],[24032,25753]]]]},{"k":"G2326","v":[["harvest",[13,8,[[39,6,4,0,4,[[937,3,2,0,2],[941,3,2,2,4]]],[40,1,1,4,5,[[960,1,1,4,5]]],[41,3,1,5,6,[[982,3,1,5,6]]],[42,2,1,6,7,[[1000,2,1,6,7]]],[65,1,1,7,8,[[1180,1,1,7,8]]]],[23416,23417,23569,23578,24352,25365,26191,30941]]]]},{"k":"G2327","v":[["reapers",[2,2,[[39,2,2,0,2,[[941,2,2,0,2]]]],[23569,23578]]]]},{"k":"G2328","v":[["*",[6,5,[[40,2,2,0,2,[[970,2,2,0,2]]],[42,3,2,2,4,[[1014,3,2,2,4]]],[58,1,1,4,5,[[1147,1,1,4,5]]]],[24808,24821,26803,26810,30309]]],["warmed",[5,4,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,3,2,1,3,[[1014,3,2,1,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[24808,26803,26810,30309]]],["warming",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24821]]]]},{"k":"G2329","v":[["heat",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27902]]]]},{"k":"G2330","v":[["summer",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]]],[23989,24745,25856]]]]},{"k":"G2331","v":[["*",[4,4,[[43,2,2,0,2,[[1037,1,1,0,1],[1044,1,1,1,2]]],[51,1,1,2,3,[[1111,1,1,2,3]]],[52,1,1,3,4,[[1116,1,1,3,4]]]],[27630,27857,29561,29650]]],["Thessalonians",[3,3,[[43,1,1,0,1,[[1037,1,1,0,1]]],[51,1,1,1,2,[[1111,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]]],[27630,29561,29650]]],["Thessalonica",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27857]]]]},{"k":"G2332","v":[["Thessalonica",[5,5,[[43,3,3,0,3,[[1034,3,3,0,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]]],[27524,27534,27536,29458,29880]]]]},{"k":"G2333","v":[["Theudas",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27095]]]]},{"k":"G2334","v":[["*",[57,55,[[39,2,2,0,2,[[955,1,1,0,1],[956,1,1,1,2]]],[40,7,7,2,9,[[959,1,1,2,3],[961,2,2,3,5],[968,1,1,5,6],[971,2,2,6,8],[972,1,1,8,9]]],[41,7,7,9,16,[[982,1,1,9,10],[986,1,1,10,11],[993,1,1,11,12],[995,2,2,12,14],[996,2,2,14,16]]],[42,23,21,16,37,[[998,1,1,16,17],[1000,1,1,17,18],[1002,3,3,18,21],[1003,1,1,21,22],[1004,1,1,22,23],[1005,1,1,23,24],[1006,1,1,24,25],[1008,3,2,25,27],[1010,3,2,27,29],[1012,4,4,29,33],[1013,1,1,33,34],[1016,3,3,34,37]]],[43,14,14,37,51,[[1020,1,1,37,38],[1021,1,1,38,39],[1024,1,1,39,40],[1025,1,1,40,41],[1026,1,1,41,42],[1027,1,1,42,43],[1034,2,2,43,45],[1036,1,1,45,46],[1037,1,1,46,47],[1038,1,1,47,48],[1042,1,1,48,49],[1044,1,1,49,50],[1045,1,1,50,51]]],[57,1,1,51,52,[[1139,1,1,51,52]]],[61,1,1,52,53,[[1161,1,1,52,53]]],[65,2,2,53,55,[[1177,2,2,53,55]]]],[24184,24196,24299,24379,24402,24714,24866,24873,24877,25381,25582,25832,25970,25983,26028,26030,26118,26175,26276,26297,26319,26331,26432,26448,26493,26599,26625,26685,26687,26736,26742,26743,26745,26783,26873,26879,26881,27012,27035,27172,27189,27223,27270,27539,27545,27611,27664,27684,27820,27865,27905,30068,30596,30883,30884]]],["Perceive",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26599]]],["beheld",[4,4,[[40,2,2,0,2,[[968,1,1,0,1],[971,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[65,1,1,3,4,[[1177,1,1,3,4]]]],[24714,24873,25381,30884]]],["behold",[3,3,[[41,2,2,0,2,[[986,1,1,0,1],[993,1,1,1,2]]],[42,1,1,2,3,[[1013,1,1,2,3]]]],[25582,25832,26783]]],["beholding",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,2,2,1,3,[[995,2,2,1,3]]],[43,1,1,3,4,[[1025,1,1,3,4]]]],[24184,25970,25983,27189]]],["consider",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30068]]],["on",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24866]]],["perceive",[3,3,[[42,1,1,0,1,[[1000,1,1,0,1]]],[43,2,2,1,3,[[1034,1,1,1,2],[1044,1,1,2,3]]]],[26175,27545,27865]]],["saw",[9,9,[[40,2,2,0,2,[[959,1,1,0,1],[972,1,1,1,2]]],[42,2,2,2,4,[[998,1,1,2,3],[1016,1,1,3,4]]],[43,4,4,4,8,[[1021,1,1,4,5],[1027,1,1,5,6],[1034,1,1,6,7],[1045,1,1,7,8]]],[65,1,1,8,9,[[1177,1,1,8,9]]]],[24299,24877,26118,26881,27035,27270,27539,27905,30883]]],["see",[17,17,[[39,1,1,0,1,[[956,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[996,1,1,2,3]]],[42,9,9,3,12,[[1002,2,2,3,5],[1003,1,1,5,6],[1004,1,1,6,7],[1010,1,1,7,8],[1012,4,4,8,12]]],[43,5,5,12,17,[[1020,1,1,12,13],[1024,1,1,13,14],[1036,1,1,14,15],[1037,1,1,15,16],[1042,1,1,16,17]]]],[24196,24379,26030,26276,26319,26331,26432,26687,26736,26742,26743,26745,27012,27172,27611,27664,27820]]],["seeing",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27223]]],["seen",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,1,1,1,2,[[1005,1,1,1,2]]]],[26028,26448]]],["seest",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27684]]],["seeth",[10,9,[[40,1,1,0,1,[[961,1,1,0,1]]],[42,8,7,1,8,[[1002,1,1,1,2],[1006,1,1,2,3],[1008,2,1,3,4],[1010,2,2,4,6],[1016,2,2,6,8]]],[61,1,1,8,9,[[1161,1,1,8,9]]]],[24402,26297,26493,26625,26685,26687,26873,26879,30596]]]]},{"k":"G2335","v":[["sight",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25983]]]]},{"k":"G2336","v":[["sheath",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26796]]]]},{"k":"G2337","v":[["*",[6,6,[[39,2,2,0,2,[[949,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,3,3,3,6,[[983,1,1,3,4],[993,1,1,4,5],[995,1,1,5,6]]]],[23842,23976,24734,25432,25849,25964]]],["suck",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,2,2,2,4,[[993,1,1,2,3],[995,1,1,3,4]]]],[23976,24734,25849,25964]]],["sucked",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25432]]],["sucklings",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23842]]]]},{"k":"G2338","v":[["*",[5,5,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[44,2,2,2,4,[[1046,2,2,2,4]]],[47,1,1,4,5,[[1093,1,1,4,5]]]],[23766,24594,27956,27957,29130]]],["female",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[47,1,1,2,3,[[1093,1,1,2,3]]]],[23766,24594,29130]]],["woman",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27957]]],["women",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27956]]]]},{"k":"G2339","v":[["trap",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28218]]]]},{"k":"G2340","v":[["catch",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25459]]]]},{"k":"G2341","v":[["beasts",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28750]]]]},{"k":"G2342","v":[["*",[46,38,[[40,1,1,0,1,[[957,1,1,0,1]]],[43,4,4,1,5,[[1027,1,1,1,2],[1028,1,1,2,3],[1045,2,2,3,5]]],[55,1,1,5,6,[[1129,1,1,5,6]]],[57,1,1,6,7,[[1144,1,1,6,7]]],[58,1,1,7,8,[[1148,1,1,7,8]]],[65,38,30,8,38,[[1172,1,1,8,9],[1177,1,1,9,10],[1179,16,10,10,20],[1180,2,2,20,22],[1181,1,1,22,23],[1182,3,3,23,26],[1183,9,8,26,34],[1185,3,2,34,36],[1186,2,2,36,38]]]],[24228,27271,27313,27903,27904,29904,30232,30326,30801,30879,30909,30910,30911,30912,30919,30920,30922,30923,30925,30926,30935,30937,30948,30956,30964,30967,30978,30982,30983,30986,30987,30988,30991,30992,31036,31037,31042,31048]]],["beast",[40,32,[[43,2,2,0,2,[[1045,2,2,0,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]],[65,37,29,3,32,[[1177,1,1,3,4],[1179,16,10,4,14],[1180,2,2,14,16],[1181,1,1,16,17],[1182,3,3,17,20],[1183,9,8,20,28],[1185,3,2,28,30],[1186,2,2,30,32]]]],[27903,27904,30232,30879,30909,30910,30911,30912,30919,30920,30922,30923,30925,30926,30935,30937,30948,30956,30964,30967,30978,30982,30983,30986,30987,30988,30991,30992,31036,31037,31042,31048]]],["beasts",[6,6,[[40,1,1,0,1,[[957,1,1,0,1]]],[43,2,2,1,3,[[1027,1,1,1,2],[1028,1,1,2,3]]],[55,1,1,3,4,[[1129,1,1,3,4]]],[58,1,1,4,5,[[1148,1,1,4,5]]],[65,1,1,5,6,[[1172,1,1,5,6]]]],[24228,27271,27313,29904,30326,30801]]]]},{"k":"G2343","v":[["*",[8,8,[[39,2,2,0,2,[[934,2,2,0,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[44,1,1,3,4,[[1047,1,1,3,4]]],[45,1,1,4,5,[[1077,1,1,4,5]]],[46,1,1,5,6,[[1089,1,1,5,6]]],[58,1,1,6,7,[[1150,1,1,6,7]]],[60,1,1,7,8,[[1158,1,1,7,8]]]],[23301,23302,25480,27967,28778,29036,30357,30529]]],["+",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23301]]],["store",[2,2,[[45,1,1,0,1,[[1077,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[28778,30529]]],["together",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30357]]],["treasure",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25480]]],["up",[3,3,[[39,1,1,0,1,[[934,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]],[46,1,1,2,3,[[1089,1,1,2,3]]]],[23302,27967,29036]]]]},{"k":"G2344","v":[["*",[18,16,[[39,9,8,0,8,[[930,1,1,0,1],[934,3,3,1,4],[940,2,1,4,5],[941,2,2,5,7],[947,1,1,7,8]]],[40,1,1,8,9,[[966,1,1,8,9]]],[41,5,4,9,13,[[978,2,1,9,10],[984,2,2,10,12],[990,1,1,12,13]]],[46,1,1,13,14,[[1081,1,1,13,14]]],[50,1,1,14,15,[[1108,1,1,14,15]]],[57,1,1,15,16,[[1143,1,1,15,16]]]],[23180,23301,23302,23303,23524,23583,23591,23783,24609,25191,25492,25493,25710,28866,29497,30198]]],["treasure",[13,11,[[39,6,5,0,5,[[934,1,1,0,1],[940,2,1,1,2],[941,2,2,2,4],[947,1,1,4,5]]],[40,1,1,5,6,[[966,1,1,5,6]]],[41,5,4,6,10,[[978,2,1,6,7],[984,2,2,7,9],[990,1,1,9,10]]],[46,1,1,10,11,[[1081,1,1,10,11]]]],[23303,23524,23583,23591,23783,24609,25191,25492,25493,25710,28866]]],["treasures",[5,5,[[39,3,3,0,3,[[930,1,1,0,1],[934,2,2,1,3]]],[50,1,1,3,4,[[1108,1,1,3,4]]],[57,1,1,4,5,[[1143,1,1,4,5]]]],[23180,23301,23302,29497,30198]]]]},{"k":"G2345","v":[["*",[3,3,[[50,1,1,0,1,[[1108,1,1,0,1]]],[57,2,2,1,3,[[1143,1,1,1,2],[1144,1,1,2,3]]]],[29515,30200,30232]]],["handle",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29515]]],["touch",[2,2,[[57,2,2,0,2,[[1143,1,1,0,1],[1144,1,1,1,2]]]],[30200,30232]]]]},{"k":"G2346","v":[["*",[10,10,[[39,1,1,0,1,[[935,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[46,3,3,2,5,[[1078,1,1,2,3],[1081,1,1,3,4],[1084,1,1,4,5]]],[51,1,1,5,6,[[1113,1,1,5,6]]],[52,2,2,6,8,[[1116,2,2,6,8]]],[53,1,1,8,9,[[1123,1,1,8,9]]],[57,1,1,9,10,[[1143,1,1,9,10]]]],[23330,24297,28806,28867,28921,29594,29655,29656,29773,30209]]],["afflicted",[3,3,[[46,1,1,0,1,[[1078,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[28806,29773,30209]]],["narrow",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23330]]],["throng",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24297]]],["tribulation",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29594]]],["trouble",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29655]]],["troubled",[3,3,[[46,2,2,0,2,[[1081,1,1,0,1],[1084,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]]],[28867,28921,29656]]]]},{"k":"G2347","v":[["*",[45,43,[[39,4,4,0,4,[[941,1,1,0,1],[952,3,3,1,4]]],[40,3,3,4,7,[[960,1,1,4,5],[969,2,2,5,7]]],[42,2,2,7,9,[[1012,2,2,7,9]]],[43,5,5,9,14,[[1024,2,2,9,11],[1028,1,1,11,12],[1031,1,1,12,13],[1037,1,1,13,14]]],[44,5,4,14,18,[[1047,1,1,14,15],[1050,2,1,15,16],[1053,1,1,16,17],[1057,1,1,17,18]]],[45,1,1,18,19,[[1068,1,1,18,19]]],[46,9,8,19,27,[[1078,3,2,19,21],[1079,1,1,21,22],[1081,1,1,22,23],[1083,1,1,23,24],[1084,1,1,24,25],[1085,2,2,25,27]]],[48,1,1,27,28,[[1099,1,1,27,28]]],[49,2,2,28,30,[[1103,1,1,28,29],[1106,1,1,29,30]]],[50,1,1,30,31,[[1107,1,1,30,31]]],[51,3,3,31,34,[[1111,1,1,31,32],[1113,2,2,32,34]]],[52,2,2,34,36,[[1116,2,2,34,36]]],[57,1,1,36,37,[[1142,1,1,36,37]]],[58,1,1,37,38,[[1146,1,1,37,38]]],[65,5,5,38,43,[[1167,1,1,38,39],[1168,3,3,39,42],[1173,1,1,42,43]]]],[23560,23966,23978,23986,24340,24736,24741,26747,26759,27126,27127,27326,27436,27649,27971,28050,28151,28257,28515,28804,28808,28828,28876,28902,28920,28934,28945,29264,29377,29456,29489,29566,29593,29597,29653,29655,30166,30293,30706,30726,30727,30739,30824]]],["+",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23966]]],["Tribulation",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27971]]],["affliction",[11,11,[[40,2,2,0,2,[[960,1,1,0,1],[969,1,1,1,2]]],[43,1,1,2,3,[[1024,1,1,2,3]]],[46,3,3,3,6,[[1079,1,1,3,4],[1081,1,1,4,5],[1085,1,1,5,6]]],[49,2,2,6,8,[[1103,1,1,6,7],[1106,1,1,7,8]]],[51,2,2,8,10,[[1111,1,1,8,9],[1113,1,1,9,10]]],[58,1,1,10,11,[[1146,1,1,10,11]]]],[24340,24736,27127,28828,28876,28934,29377,29456,29566,29597,30293]]],["afflictions",[6,6,[[43,2,2,0,2,[[1024,1,1,0,1],[1037,1,1,1,2]]],[46,1,1,2,3,[[1083,1,1,2,3]]],[50,1,1,3,4,[[1107,1,1,3,4]]],[51,1,1,4,5,[[1113,1,1,4,5]]],[57,1,1,5,6,[[1142,1,1,5,6]]]],[27126,27649,28902,29489,29593,30166]]],["anguish",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26747]]],["burdened",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28945]]],["persecution",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27326]]],["tribulation",[17,17,[[39,3,3,0,3,[[941,1,1,0,1],[952,2,2,1,3]]],[40,1,1,3,4,[[969,1,1,3,4]]],[42,1,1,4,5,[[1012,1,1,4,5]]],[43,1,1,5,6,[[1031,1,1,5,6]]],[44,3,3,6,9,[[1050,1,1,6,7],[1053,1,1,7,8],[1057,1,1,8,9]]],[46,2,2,9,11,[[1078,1,1,9,10],[1084,1,1,10,11]]],[52,1,1,11,12,[[1116,1,1,11,12]]],[65,5,5,12,17,[[1167,1,1,12,13],[1168,3,3,13,16],[1173,1,1,16,17]]]],[23560,23978,23986,24741,26759,27436,28050,28151,28257,28804,28920,29655,30706,30726,30727,30739,30824]]],["tribulations",[3,3,[[44,1,1,0,1,[[1050,1,1,0,1]]],[48,1,1,1,2,[[1099,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]]],[28050,29264,29653]]],["trouble",[3,3,[[45,1,1,0,1,[[1068,1,1,0,1]]],[46,2,2,1,3,[[1078,2,2,1,3]]]],[28515,28804,28808]]]]},{"k":"G2348","v":[["*",[13,13,[[39,1,1,0,1,[[930,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,2,2,2,4,[[979,1,1,2,3],[980,1,1,3,4]]],[42,6,6,4,10,[[1007,4,4,4,8],[1008,1,1,8,9],[1015,1,1,9,10]]],[43,2,2,10,12,[[1031,1,1,10,11],[1042,1,1,11,12]]],[53,1,1,12,13,[[1123,1,1,12,13]]]],[23189,24870,25207,25294,26544,26562,26564,26567,26581,26858,27433,27815,29769]]],["+",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]]],[24870,26544]]],["dead",[10,10,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[42,5,5,2,7,[[1007,3,3,2,5],[1008,1,1,5,6],[1015,1,1,6,7]]],[43,2,2,7,9,[[1031,1,1,7,8],[1042,1,1,8,9]]],[53,1,1,9,10,[[1123,1,1,9,10]]]],[23189,25294,26562,26564,26567,26581,26858,27433,27815,29769]]],["man",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25207]]]]},{"k":"G2349","v":[["*",[6,6,[[44,2,2,0,2,[[1051,1,1,0,1],[1053,1,1,1,2]]],[45,2,2,2,4,[[1076,2,2,2,4]]],[46,2,2,4,6,[[1081,1,1,4,5],[1082,1,1,5,6]]]],[28080,28127,28771,28772,28870,28881]]],["mortal",[5,5,[[44,2,2,0,2,[[1051,1,1,0,1],[1053,1,1,1,2]]],[45,2,2,2,4,[[1076,2,2,2,4]]],[46,1,1,4,5,[[1081,1,1,4,5]]]],[28080,28127,28771,28772,28870]]],["mortality",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28881]]]]},{"k":"G2350","v":[["*",[4,4,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[43,2,2,2,4,[[1034,1,1,2,3],[1037,1,1,3,4]]]],[23402,24403,27528,27636]]],["+",[2,2,[[43,2,2,0,2,[[1034,1,1,0,1],[1037,1,1,1,2]]]],[27528,27636]]],["ado",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24403]]],["noise",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23402]]]]},{"k":"G2351","v":[["*",[7,7,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,2,2,2,4,[[961,1,1,2,3],[970,1,1,3,4]]],[43,3,3,4,7,[[1037,1,1,4,5],[1038,1,1,5,6],[1041,1,1,6,7]]]],[24059,24153,24402,24756,27627,27698,27787]]],["tumult",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[43,2,2,2,4,[[1038,1,1,2,3],[1041,1,1,3,4]]]],[24153,24402,27698,27787]]],["uproar",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[43,1,1,2,3,[[1037,1,1,2,3]]]],[24059,24756,27627]]]]},{"k":"G2352","v":[["bruised",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25081]]]]},{"k":"G2353","v":[["cattle",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26168]]]]},{"k":"G2354","v":[["*",[4,4,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,2,2,1,3,[[979,1,1,1,2],[995,1,1,2,3]]],[42,1,1,3,4,[[1012,1,1,3,4]]]],[23476,25227,25962,26746]]],["lament",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26746]]],["lamented",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25962]]],["mourned",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]]],[23476,25227]]]]},{"k":"G2355","v":[["lamentation",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23187]]]]},{"k":"G2356","v":[["*",[4,4,[[43,1,1,0,1,[[1043,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]],[58,2,2,2,4,[[1146,2,2,2,4]]]],[27828,29512,30292,30293]]],["religion",[3,3,[[43,1,1,0,1,[[1043,1,1,0,1]]],[58,2,2,1,3,[[1146,2,2,1,3]]]],[27828,30292,30293]]],["worshipping",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29512]]]]},{"k":"G2357","v":[["religious",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30292]]]]},{"k":"G2358","v":[["*",[2,2,[[46,1,1,0,1,[[1079,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[28838,29509]]],["+",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28838]]],["over",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29509]]]]},{"k":"G2359","v":[["*",[15,14,[[39,3,3,0,3,[[931,1,1,0,1],[933,1,1,1,2],[938,1,1,2,3]]],[40,1,1,3,4,[[957,1,1,3,4]]],[41,4,4,4,8,[[979,2,2,4,6],[984,1,1,6,7],[993,1,1,7,8]]],[42,2,2,8,10,[[1007,1,1,8,9],[1008,1,1,9,10]]],[43,1,1,10,11,[[1044,1,1,10,11]]],[59,1,1,11,12,[[1153,1,1,11,12]]],[65,3,2,12,14,[[1167,1,1,12,13],[1175,2,1,13,14]]]],[23196,23270,23447,24221,25233,25239,25466,25844,26525,26583,27889,30427,30711,30848]]],["hair",[10,9,[[39,2,2,0,2,[[931,1,1,0,1],[933,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,1,1,3,4,[[993,1,1,3,4]]],[42,2,2,4,6,[[1007,1,1,4,5],[1008,1,1,5,6]]],[43,1,1,6,7,[[1044,1,1,6,7]]],[59,1,1,7,8,[[1153,1,1,7,8]]],[65,2,1,8,9,[[1175,2,1,8,9]]]],[23196,23270,24221,25844,26525,26583,27889,30427,30848]]],["hairs",[5,5,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,3,3,1,4,[[979,2,2,1,3],[984,1,1,3,4]]],[65,1,1,4,5,[[1167,1,1,4,5]]]],[23447,25233,25239,25466,30711]]]]},{"k":"G2360","v":[["troubled",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]]],[23963,24724,29663]]]]},{"k":"G2361","v":[["drops",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25908]]]]},{"k":"G2362","v":[["*",[61,50,[[39,5,4,0,4,[[933,1,1,0,1],[947,2,1,1,2],[951,1,1,2,3],[953,1,1,3,4]]],[41,3,3,4,7,[[973,2,2,4,6],[994,1,1,6,7]]],[43,2,2,7,9,[[1019,1,1,7,8],[1024,1,1,8,9]]],[50,1,1,9,10,[[1107,1,1,9,10]]],[57,4,4,10,14,[[1133,1,1,10,11],[1136,1,1,11,12],[1140,1,1,12,13],[1144,1,1,13,14]]],[65,46,36,14,50,[[1167,1,1,14,15],[1168,1,1,15,16],[1169,2,1,16,17],[1170,14,7,17,24],[1171,5,5,24,29],[1172,1,1,29,30],[1173,7,5,30,35],[1174,1,1,35,36],[1177,1,1,36,37],[1178,1,1,37,38],[1179,1,1,38,39],[1180,2,2,39,41],[1182,2,2,41,43],[1185,2,2,43,45],[1186,2,2,45,47],[1187,1,1,47,48],[1188,2,2,48,50]]]],[23268,23790,23940,24039,24925,24945,25894,26979,27165,29481,29971,30030,30093,30214,30701,30730,30767,30770,30771,30772,30773,30774,30777,30778,30780,30785,30786,30790,30792,30809,30819,30820,30821,30825,30827,30830,30888,30896,30910,30929,30931,30964,30971,31021,31022,31042,31049,31058,31081,31083]]],["seat",[3,3,[[65,3,3,0,3,[[1168,1,1,0,1],[1179,1,1,1,2],[1182,1,1,2,3]]]],[30730,30910,30964]]],["seats",[4,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[65,3,2,1,3,[[1170,2,1,1,2],[1177,1,1,2,3]]]],[24945,30772,30888]]],["throne",[50,42,[[39,4,4,0,4,[[933,1,1,0,1],[947,1,1,1,2],[951,1,1,2,3],[953,1,1,3,4]]],[41,1,1,4,5,[[973,1,1,4,5]]],[43,2,2,5,7,[[1019,1,1,5,6],[1024,1,1,6,7]]],[57,4,4,7,11,[[1133,1,1,7,8],[1136,1,1,8,9],[1140,1,1,9,10],[1144,1,1,10,11]]],[65,39,31,11,42,[[1167,1,1,11,12],[1169,2,1,12,13],[1170,12,7,13,20],[1171,5,5,20,25],[1172,1,1,25,26],[1173,7,5,26,31],[1174,1,1,31,32],[1178,1,1,32,33],[1180,2,2,33,35],[1182,1,1,35,36],[1185,2,2,36,38],[1186,1,1,38,39],[1187,1,1,39,40],[1188,2,2,40,42]]]],[23268,23790,23940,24039,24925,26979,27165,29971,30030,30093,30214,30701,30767,30770,30771,30772,30773,30774,30777,30778,30780,30785,30786,30790,30792,30809,30819,30820,30821,30825,30827,30830,30896,30929,30931,30971,31021,31022,31049,31058,31081,31083]]],["thrones",[4,4,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[50,1,1,2,3,[[1107,1,1,2,3]]],[65,1,1,3,4,[[1186,1,1,3,4]]]],[23790,25894,29481,31042]]]]},{"k":"G2363","v":[["Thyatira",[4,4,[[43,1,1,0,1,[[1033,1,1,0,1]]],[65,3,3,1,4,[[1167,1,1,1,2],[1168,2,2,2,4]]]],[27497,30708,30735,30741]]]]},{"k":"G2364","v":[["*",[29,28,[[39,8,8,0,8,[[937,2,2,0,2],[938,2,2,2,4],[942,1,1,4,5],[943,2,2,5,7],[949,1,1,7,8]]],[40,6,6,8,14,[[961,2,2,8,10],[962,1,1,10,11],[963,3,3,11,14]]],[41,9,8,14,22,[[973,1,1,14,15],[974,1,1,15,16],[980,3,3,16,19],[984,2,1,19,20],[985,1,1,20,21],[995,1,1,21,22]]],[42,1,1,22,23,[[1008,1,1,22,23]]],[43,3,3,23,26,[[1019,1,1,23,24],[1024,1,1,24,25],[1038,1,1,25,26]]],[46,1,1,26,27,[[1083,1,1,26,27]]],[57,1,1,27,28,[[1143,1,1,27,28]]]],[23397,23401,23452,23454,23603,23655,23661,23831,24398,24399,24429,24489,24492,24493,24898,25009,25287,25293,25294,25512,25534,25963,26595,26966,27137,27673,28916,30196]]],["Daughter",[3,3,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23401,24398,25293]]],["Daughters",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25963]]],["daughter",[21,20,[[39,7,7,0,7,[[937,1,1,0,1],[938,2,2,1,3],[942,1,1,3,4],[943,2,2,4,6],[949,1,1,6,7]]],[40,5,5,7,12,[[961,1,1,7,8],[962,1,1,8,9],[963,3,3,9,12]]],[41,6,5,12,17,[[974,1,1,12,13],[980,2,2,13,15],[984,2,1,15,16],[985,1,1,16,17]]],[42,1,1,17,18,[[1008,1,1,17,18]]],[43,1,1,18,19,[[1024,1,1,18,19]]],[57,1,1,19,20,[[1143,1,1,19,20]]]],[23397,23452,23454,23603,23655,23661,23831,24399,24429,24489,24492,24493,25009,25287,25294,25512,25534,26595,27137,30196]]],["daughters",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,2,2,1,3,[[1019,1,1,1,2],[1038,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]]],[24898,26966,27673,28916]]]]},{"k":"G2365","v":[["daughter",[2,2,[[40,2,2,0,2,[[961,1,1,0,1],[963,1,1,1,2]]]],[24387,24488]]]]},{"k":"G2366","v":[["tempest",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30230]]]]},{"k":"G2367","v":[["thyine",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31005]]]]},{"k":"G2368","v":[["*",[6,6,[[41,2,2,0,2,[[973,2,2,0,2]]],[65,4,4,2,6,[[1171,1,1,2,3],[1174,2,2,3,5],[1184,1,1,5,6]]]],[24903,24904,30787,30830,30831,31006]]],["incense",[4,4,[[41,2,2,0,2,[[973,2,2,0,2]]],[65,2,2,2,4,[[1174,2,2,2,4]]]],[24903,24904,30830,30831]]],["odours",[2,2,[[65,2,2,0,2,[[1171,1,1,0,1],[1184,1,1,1,2]]]],[30787,31006]]]]},{"k":"G2369","v":[["censer",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30109]]]]},{"k":"G2370","v":[["incense",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24902]]]]},{"k":"G2371","v":[["displeased",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27357]]]]},{"k":"G2372","v":[["*",[18,18,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]],[44,1,1,2,3,[[1047,1,1,2,3]]],[46,1,1,3,4,[[1089,1,1,3,4]]],[47,1,1,4,5,[[1095,1,1,4,5]]],[48,1,1,5,6,[[1100,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[57,1,1,7,8,[[1143,1,1,7,8]]],[65,10,10,8,18,[[1178,1,1,8,9],[1180,3,3,9,12],[1181,2,2,12,14],[1182,2,2,14,16],[1184,1,1,16,17],[1185,1,1,17,18]]]],[25091,27613,27970,29042,29182,29303,29525,30199,30903,30934,30936,30945,30947,30953,30955,30973,30996,31032]]],["fierceness",[2,2,[[65,2,2,0,2,[[1182,1,1,0,1],[1185,1,1,1,2]]]],[30973,31032]]],["indignation",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27970]]],["wrath",[14,14,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]],[65,8,8,6,14,[[1178,1,1,6,7],[1180,3,3,7,10],[1181,2,2,10,12],[1182,1,1,12,13],[1184,1,1,13,14]]]],[25091,27613,29182,29303,29525,30199,30903,30934,30936,30945,30947,30953,30955,30996]]],["wraths",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29042]]]]},{"k":"G2373","v":[["+",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23185]]]]},{"k":"G2374","v":[["*",[39,37,[[39,5,5,0,5,[[934,1,1,0,1],[952,1,1,1,2],[953,1,1,2,3],[955,1,1,3,4],[956,1,1,4,5]]],[40,6,6,5,11,[[957,1,1,5,6],[958,1,1,6,7],[967,1,1,7,8],[969,1,1,8,9],[971,1,1,9,10],[972,1,1,10,11]]],[41,3,2,11,13,[[983,1,1,11,12],[985,2,1,12,13]]],[42,7,7,13,20,[[1006,4,4,13,17],[1014,1,1,17,18],[1016,2,2,18,20]]],[43,10,10,20,30,[[1020,1,1,20,21],[1022,3,3,21,24],[1029,2,2,24,26],[1031,1,1,26,27],[1033,2,2,27,29],[1038,1,1,29,30]]],[45,1,1,30,31,[[1077,1,1,30,31]]],[46,1,1,31,32,[[1079,1,1,31,32]]],[50,1,1,32,33,[[1110,1,1,32,33]]],[58,1,1,33,34,[[1150,1,1,33,34]]],[65,4,3,34,37,[[1169,3,2,34,36],[1170,1,1,36,37]]]],[23288,23990,24018,24189,24197,24248,24262,24644,24746,24872,24876,25412,25543,26482,26483,26488,26490,26801,26886,26893,26998,27068,27078,27082,27343,27350,27441,27509,27510,27694,28785,28836,29545,30363,30754,30766,30769]]],["door",[29,27,[[39,4,4,0,4,[[934,1,1,0,1],[953,1,1,1,2],[955,1,1,2,3],[956,1,1,3,4]]],[40,5,5,4,9,[[957,1,1,4,5],[958,1,1,5,6],[967,1,1,6,7],[971,1,1,7,8],[972,1,1,8,9]]],[41,3,2,9,11,[[983,1,1,9,10],[985,2,1,10,11]]],[42,5,5,11,16,[[1006,4,4,11,15],[1014,1,1,15,16]]],[43,4,4,16,20,[[1022,1,1,16,17],[1029,2,2,17,19],[1031,1,1,19,20]]],[45,1,1,20,21,[[1077,1,1,20,21]]],[46,1,1,21,22,[[1079,1,1,21,22]]],[50,1,1,22,23,[[1110,1,1,22,23]]],[58,1,1,23,24,[[1150,1,1,23,24]]],[65,4,3,24,27,[[1169,3,2,24,26],[1170,1,1,26,27]]]],[23288,24018,24189,24197,24248,24262,24644,24872,24876,25412,25543,26482,26483,26488,26490,26801,27068,27343,27350,27441,28785,28836,29545,30363,30754,30766,30769]]],["doors",[9,9,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[42,2,2,2,4,[[1016,2,2,2,4]]],[43,5,5,4,9,[[1022,2,2,4,6],[1033,2,2,6,8],[1038,1,1,8,9]]]],[23990,24746,26886,26893,27078,27082,27509,27510,27694]]],["gate",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[26998]]]]},{"k":"G2375","v":[["shield",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29353]]]]},{"k":"G2376","v":[["window",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[27635,29022]]]]},{"k":"G2377","v":[["*",[4,4,[[40,1,1,0,1,[[969,1,1,0,1]]],[42,3,3,1,4,[[1006,1,1,1,2],[1014,2,2,2,4]]]],[24751,26484,26801,26802]]],["door",[2,2,[[42,2,2,0,2,[[1014,2,2,0,2]]]],[26801,26802]]],["porter",[2,2,[[40,1,1,0,1,[[969,1,1,0,1]]],[42,1,1,1,2,[[1006,1,1,1,2]]]],[24751,26484]]]]},{"k":"G2378","v":[["*",[29,29,[[39,2,2,0,2,[[937,1,1,0,1],[940,1,1,1,2]]],[40,2,2,2,4,[[965,1,1,2,3],[968,1,1,3,4]]],[41,2,2,4,6,[[974,1,1,4,5],[985,1,1,5,6]]],[43,2,2,6,8,[[1024,2,2,6,8]]],[44,1,1,8,9,[[1057,1,1,8,9]]],[45,1,1,9,10,[[1071,1,1,9,10]]],[48,1,1,10,11,[[1101,1,1,10,11]]],[49,2,2,11,13,[[1104,1,1,11,12],[1106,1,1,12,13]]],[57,15,15,13,28,[[1137,1,1,13,14],[1139,1,1,14,15],[1140,1,1,15,16],[1141,3,3,16,19],[1142,6,6,19,25],[1143,1,1,25,26],[1145,2,2,26,28]]],[59,1,1,28,29,[[1152,1,1,28,29]]]],[23392,23496,24587,24706,24997,25519,27157,27158,28246,28585,29306,29408,29460,30031,30091,30095,30114,30128,30131,30134,30138,30141,30144,30145,30159,30176,30256,30257,30404]]],["Sacrifice",[2,2,[[57,2,2,0,2,[[1142,2,2,0,2]]]],[30138,30141]]],["sacrifice",[15,15,[[39,2,2,0,2,[[937,1,1,0,1],[940,1,1,1,2]]],[40,1,1,2,3,[[965,1,1,2,3]]],[41,1,1,3,4,[[974,1,1,3,4]]],[43,1,1,4,5,[[1024,1,1,4,5]]],[44,1,1,5,6,[[1057,1,1,5,6]]],[48,1,1,6,7,[[1101,1,1,6,7]]],[49,2,2,7,9,[[1104,1,1,7,8],[1106,1,1,8,9]]],[57,6,6,9,15,[[1139,1,1,9,10],[1141,1,1,10,11],[1142,2,2,11,13],[1143,1,1,13,14],[1145,1,1,14,15]]]],[23392,23496,24587,24997,27157,28246,29306,29408,29460,30091,30131,30145,30159,30176,30256]]],["sacrifices",[12,12,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[43,1,1,2,3,[[1024,1,1,2,3]]],[45,1,1,3,4,[[1071,1,1,3,4]]],[57,7,7,4,11,[[1137,1,1,4,5],[1140,1,1,5,6],[1141,2,2,6,8],[1142,2,2,8,10],[1145,1,1,10,11]]],[59,1,1,11,12,[[1152,1,1,11,12]]]],[24706,25519,27158,28585,30031,30095,30114,30128,30134,30144,30257,30404]]]]},{"k":"G2379","v":[["*",[23,21,[[39,6,6,0,6,[[933,2,2,0,2],[951,4,4,2,6]]],[41,2,2,6,8,[[973,1,1,6,7],[983,1,1,7,8]]],[44,1,1,8,9,[[1056,1,1,8,9]]],[45,3,2,9,11,[[1070,2,1,9,10],[1071,1,1,10,11]]],[57,2,2,11,13,[[1139,1,1,11,12],[1145,1,1,12,13]]],[58,1,1,13,14,[[1147,1,1,13,14]]],[65,8,7,14,21,[[1172,1,1,14,15],[1174,3,2,15,17],[1175,1,1,17,18],[1177,1,1,18,19],[1180,1,1,19,20],[1182,1,1,20,21]]]],[23257,23258,23936,23937,23938,23953,24904,25456,28212,28553,28585,30077,30251,30314,30802,30830,30832,30853,30873,30944,30961]]],["altar",[22,20,[[39,6,6,0,6,[[933,2,2,0,2],[951,4,4,2,6]]],[41,2,2,6,8,[[973,1,1,6,7],[983,1,1,7,8]]],[45,3,2,8,10,[[1070,2,1,8,9],[1071,1,1,9,10]]],[57,2,2,10,12,[[1139,1,1,10,11],[1145,1,1,11,12]]],[58,1,1,12,13,[[1147,1,1,12,13]]],[65,8,7,13,20,[[1172,1,1,13,14],[1174,3,2,14,16],[1175,1,1,16,17],[1177,1,1,17,18],[1180,1,1,18,19],[1182,1,1,19,20]]]],[23257,23258,23936,23937,23938,23953,24904,25456,28553,28585,30077,30251,30314,30802,30830,30832,30853,30873,30944,30961]]],["altars",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28212]]]]},{"k":"G2380","v":[["*",[14,13,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,4,4,2,6,[[987,3,3,2,5],[994,1,1,5,6]]],[42,1,1,6,7,[[1006,1,1,6,7]]],[43,4,4,7,11,[[1027,1,1,7,8],[1028,1,1,8,9],[1031,2,2,9,11]]],[45,3,2,11,13,[[1066,1,1,11,12],[1071,2,1,12,13]]]],[23876,24766,25611,25615,25618,25871,26491,27272,27314,27427,27432,28461,28587]]],["kill",[3,3,[[41,1,1,0,1,[[987,1,1,0,1]]],[42,1,1,1,2,[[1006,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]]],[25611,26491,27272]]],["killed",[5,5,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,3,3,2,5,[[987,2,2,2,4],[994,1,1,4,5]]]],[23876,24766,25615,25618,25871]]],["sacrifice",[4,3,[[43,2,2,0,2,[[1031,2,2,0,2]]],[45,2,1,2,3,[[1071,2,1,2,3]]]],[27427,27432,28587]]],["sacrificed",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28461]]],["slay",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27314]]]]},{"k":"G2381","v":[["Thomas",[12,12,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[42,8,8,3,11,[[1007,1,1,3,4],[1010,1,1,4,5],[1016,5,5,5,10],[1017,1,1,10,11]]],[43,1,1,11,12,[[1018,1,1,11,12]]]],[23420,24306,25161,26539,26673,26891,26893,26894,26895,26896,26900,26936]]]]},{"k":"G2382","v":[["*",[5,4,[[48,1,1,0,1,[[1102,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]],[65,3,2,2,4,[[1175,3,2,2,4]]]],[29351,29629,30849,30857]]],["breastplate",[2,2,[[48,1,1,0,1,[[1102,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]]],[29351,29629]]],["breastplates",[3,2,[[65,3,2,0,2,[[1175,3,2,0,2]]]],[30849,30857]]]]},{"k":"G2383","v":[["Jairus",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24386,25286]]]]},{"k":"G2384","v":[["*",[27,25,[[39,6,5,0,5,[[929,4,3,0,3],[936,1,1,3,4],[950,1,1,4,5]]],[40,1,1,5,6,[[968,1,1,5,6]]],[41,4,4,6,10,[[973,1,1,6,7],[975,1,1,7,8],[985,1,1,8,9],[992,1,1,9,10]]],[42,3,3,10,13,[[1000,3,3,10,13]]],[43,8,7,13,20,[[1020,1,1,13,14],[1024,7,6,14,20]]],[44,2,2,20,22,[[1054,1,1,20,21],[1056,1,1,21,22]]],[57,3,3,22,25,[[1143,3,3,22,25]]]],[23146,23159,23160,23356,23904,24699,24926,25059,25546,25816,26161,26162,26168,27009,27124,27128,27130,27131,27148,27162,28168,28235,30181,30192,30193]]],["Jacob",[26,24,[[39,6,5,0,5,[[929,4,3,0,3],[936,1,1,3,4],[950,1,1,4,5]]],[40,1,1,5,6,[[968,1,1,5,6]]],[41,4,4,6,10,[[973,1,1,6,7],[975,1,1,7,8],[985,1,1,8,9],[992,1,1,9,10]]],[42,2,2,10,12,[[1000,2,2,10,12]]],[43,8,7,12,19,[[1020,1,1,12,13],[1024,7,6,13,19]]],[44,2,2,19,21,[[1054,1,1,19,20],[1056,1,1,20,21]]],[57,3,3,21,24,[[1143,3,3,21,24]]]],[23146,23159,23160,23356,23904,24699,24926,25059,25546,25816,26161,26168,27009,27124,27128,27130,27131,27148,27162,28168,28235,30181,30192,30193]]],["Jacob's",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26162]]]]},{"k":"G2385","v":[["*",[43,38,[[39,7,6,0,6,[[932,1,1,0,1],[938,3,2,1,3],[941,1,1,3,4],[945,1,1,4,5],[955,1,1,5,6]]],[40,15,13,6,19,[[957,2,2,6,8],[959,3,2,8,10],[961,2,1,10,11],[962,1,1,11,12],[965,1,1,12,13],[966,2,2,13,15],[969,1,1,15,16],[970,1,1,16,17],[971,1,1,17,18],[972,1,1,18,19]]],[41,8,8,19,27,[[977,1,1,19,20],[978,3,3,20,23],[980,1,1,23,24],[981,2,2,24,26],[996,1,1,26,27]]],[43,7,5,27,32,[[1018,3,1,27,28],[1029,2,2,28,30],[1032,1,1,30,31],[1038,1,1,31,32]]],[45,1,1,32,33,[[1076,1,1,32,33]]],[47,3,3,33,36,[[1091,1,1,33,34],[1092,2,2,34,36]]],[58,1,1,36,37,[[1146,1,1,36,37]]],[64,1,1,37,38,[[1166,1,1,37,38]]]],[23230,23419,23420,23594,23701,24185,24234,24244,24305,24306,24401,24410,24540,24623,24629,24720,24787,24866,24874,25117,25160,25161,25162,25296,25329,25355,26001,26936,27339,27354,27455,27682,28725,29076,29090,29093,30267,30673]]],["+",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29090]]],["James",[41,37,[[39,6,6,0,6,[[932,1,1,0,1],[938,2,2,1,3],[941,1,1,3,4],[945,1,1,4,5],[955,1,1,5,6]]],[40,15,13,6,19,[[957,2,2,6,8],[959,3,2,8,10],[961,2,1,10,11],[962,1,1,11,12],[965,1,1,12,13],[966,2,2,13,15],[969,1,1,15,16],[970,1,1,16,17],[971,1,1,17,18],[972,1,1,18,19]]],[41,8,8,19,27,[[977,1,1,19,20],[978,3,3,20,23],[980,1,1,23,24],[981,2,2,24,26],[996,1,1,26,27]]],[43,7,5,27,32,[[1018,3,1,27,28],[1029,2,2,28,30],[1032,1,1,30,31],[1038,1,1,31,32]]],[45,1,1,32,33,[[1076,1,1,32,33]]],[47,2,2,33,35,[[1091,1,1,33,34],[1092,1,1,34,35]]],[58,1,1,35,36,[[1146,1,1,35,36]]],[64,1,1,36,37,[[1166,1,1,36,37]]]],[23230,23419,23420,23594,23701,24185,24234,24244,24305,24306,24401,24410,24540,24623,24629,24720,24787,24866,24874,25117,25160,25161,25162,25296,25329,25355,26001,26936,27339,27354,27455,27682,28725,29076,29093,30267,30673]]],["the",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23420]]]]},{"k":"G2386","v":[["*",[3,3,[[45,3,3,0,3,[[1073,3,3,0,3]]]],[28643,28662,28664]]],["healing",[2,2,[[45,2,2,0,2,[[1073,2,2,0,2]]]],[28643,28664]]],["healings",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28662]]]]},{"k":"G2387","v":[["Jambres",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29861]]]]},{"k":"G2388","v":[["Janna",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25049]]]]},{"k":"G2389","v":[["Jannes",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29861]]]]},{"k":"G2390","v":[["*",[28,28,[[39,4,4,0,4,[[936,2,2,0,2],[941,1,1,2,3],[943,1,1,3,4]]],[40,1,1,4,5,[[961,1,1,4,5]]],[41,12,12,5,17,[[976,1,1,5,6],[977,1,1,6,7],[978,2,2,7,9],[979,1,1,9,10],[980,1,1,10,11],[981,3,3,11,14],[986,1,1,14,15],[989,1,1,15,16],[994,1,1,16,17]]],[42,3,3,17,20,[[1000,1,1,17,18],[1001,1,1,18,19],[1008,1,1,19,20]]],[43,5,5,20,25,[[1020,1,1,20,21],[1026,1,1,21,22],[1027,1,1,22,23],[1045,2,2,23,25]]],[57,1,1,25,26,[[1144,1,1,25,26]]],[58,1,1,26,27,[[1150,1,1,26,27]]],[59,1,1,27,28,[[1152,1,1,27,28]]]],[23353,23358,23554,23661,24393,25081,25124,25163,25165,25202,25292,25303,25312,25343,25557,25666,25915,26203,26223,26620,27007,27250,27297,27907,27926,30225,30370,30423]]],["+",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27250]]],["heal",[7,7,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,3,3,1,4,[[976,1,1,1,2],[977,1,1,2,3],[981,1,1,3,4]]],[42,2,2,4,6,[[1000,1,1,4,5],[1008,1,1,5,6]]],[43,1,1,6,7,[[1045,1,1,6,7]]]],[23554,25081,25124,25303,26203,26620,27926]]],["healed",[18,18,[[39,2,2,0,2,[[936,2,2,0,2]]],[40,1,1,2,3,[[961,1,1,2,3]]],[41,9,9,3,12,[[978,2,2,3,5],[979,1,1,5,6],[980,1,1,6,7],[981,2,2,7,9],[986,1,1,9,10],[989,1,1,10,11],[994,1,1,11,12]]],[42,1,1,12,13,[[1001,1,1,12,13]]],[43,2,2,13,15,[[1020,1,1,13,14],[1045,1,1,14,15]]],[57,1,1,15,16,[[1144,1,1,15,16]]],[58,1,1,16,17,[[1150,1,1,16,17]]],[59,1,1,17,18,[[1152,1,1,17,18]]]],[23353,23358,24393,25163,25165,25202,25292,25312,25343,25557,25666,25915,26223,27007,27907,30225,30370,30423]]],["healing",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27297]]],["whole",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23661]]]]},{"k":"G2391","v":[["Jared",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25062]]]]},{"k":"G2392","v":[["*",[3,3,[[41,1,1,0,1,[[985,1,1,0,1]]],[43,2,2,1,3,[[1021,2,2,1,3]]]],[25550,27044,27052]]],["cures",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25550]]],["heal",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27052]]],["healing",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27044]]]]},{"k":"G2393","v":[["jasper",[4,4,[[65,4,4,0,4,[[1170,1,1,0,1],[1187,3,3,1,4]]]],[30771,31064,31071,31072]]]]},{"k":"G2394","v":[["Jason",[5,5,[[43,4,4,0,4,[[1034,4,4,0,4]]],[44,1,1,4,5,[[1061,1,1,4,5]]]],[27528,27529,27530,27532,28357]]]]},{"k":"G2395","v":[["*",[7,7,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[961,1,1,2,3]]],[41,3,3,3,6,[[976,1,1,3,4],[977,1,1,4,5],[980,1,1,5,6]]],[50,1,1,6,7,[[1110,1,1,6,7]]]],[23391,24277,24390,25086,25138,25288,29556]]],["Physician",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25086]]],["physician",[4,4,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,1,1,2,3,[[977,1,1,2,3]]],[50,1,1,3,4,[[1110,1,1,3,4]]]],[23391,24277,25138,29556]]],["physicians",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24390,25288]]]]},{"k":"G2396","v":[["*",[26,26,[[39,4,4,0,4,[[953,3,3,0,3],[954,1,1,3,4]]],[40,6,6,4,10,[[958,1,1,4,5],[959,1,1,5,6],[967,1,1,6,7],[969,1,1,7,8],[971,1,1,8,9],[972,1,1,9,10]]],[42,14,14,10,24,[[997,3,3,10,13],[999,1,1,13,14],[1001,1,1,14,15],[1003,1,1,15,16],[1007,2,2,16,18],[1008,1,1,18,19],[1012,1,1,19,20],[1014,1,1,20,21],[1015,3,3,21,24]]],[44,1,1,24,25,[[1047,1,1,24,25]]],[47,1,1,25,26,[[1095,1,1,25,26]]]],[24028,24030,24033,24119,24284,24322,24661,24718,24830,24879,26073,26080,26091,26146,26224,26354,26526,26559,26599,26755,26806,26829,26830,26839,27979,29164]]],["Behold",[12,12,[[40,2,2,0,2,[[958,1,1,0,1],[959,1,1,1,2]]],[42,8,8,2,10,[[997,3,3,2,5],[1001,1,1,5,6],[1007,1,1,6,7],[1015,3,3,7,10]]],[44,1,1,10,11,[[1047,1,1,10,11]]],[47,1,1,11,12,[[1095,1,1,11,12]]]],[24284,24322,26073,26080,26091,26224,26559,26829,26830,26839,27979,29164]]],["Lo",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26755]]],["behold",[10,10,[[39,3,3,0,3,[[953,2,2,0,2],[954,1,1,2,3]]],[40,3,3,3,6,[[967,1,1,3,4],[971,1,1,4,5],[972,1,1,5,6]]],[42,4,4,6,10,[[999,1,1,6,7],[1007,1,1,7,8],[1008,1,1,8,9],[1014,1,1,9,10]]]],[24028,24030,24119,24661,24830,24879,26146,26526,26599,26806]]],["lo",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[42,1,1,1,2,[[1003,1,1,1,2]]]],[24033,26354]]],["see",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24718]]]]},{"k":"G2397","v":[["countenance",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24198]]]]},{"k":"G2398","v":[["*",[113,109,[[39,10,10,0,10,[[937,1,1,0,1],[942,2,2,1,3],[945,2,2,3,5],[948,1,1,5,6],[950,1,1,6,7],[952,1,1,7,8],[953,2,2,8,10]]],[40,8,8,10,18,[[960,1,1,10,11],[962,2,2,11,13],[963,1,1,13,14],[965,2,2,14,16],[969,1,1,16,17],[971,1,1,17,18]]],[41,6,6,18,24,[[974,1,1,18,19],[978,2,2,19,21],[981,1,1,21,22],[982,2,2,22,24]]],[42,15,14,24,38,[[997,3,2,24,26],[1000,1,1,26,27],[1001,2,2,27,29],[1003,1,1,29,30],[1004,1,1,30,31],[1006,3,3,31,34],[1009,1,1,34,35],[1011,1,1,35,36],[1012,1,1,36,37],[1015,1,1,37,38]]],[43,15,15,38,53,[[1018,3,3,38,41],[1019,2,2,41,43],[1020,1,1,43,44],[1021,2,2,44,46],[1030,1,1,46,47],[1037,1,1,47,48],[1038,1,1,48,49],[1040,1,1,49,50],[1041,1,1,50,51],[1042,1,1,51,52],[1045,1,1,52,53]]],[44,5,5,53,58,[[1053,1,1,53,54],[1055,1,1,54,55],[1056,1,1,55,56],[1059,2,2,56,58]]],[45,15,13,58,71,[[1064,2,1,58,59],[1065,1,1,59,60],[1067,1,1,60,61],[1068,5,4,61,65],[1070,1,1,65,66],[1072,1,1,66,67],[1073,1,1,67,68],[1075,1,1,68,69],[1076,2,2,69,71]]],[47,3,3,71,74,[[1092,1,1,71,72],[1096,2,2,72,74]]],[48,2,2,74,76,[[1101,2,2,74,76]]],[50,1,1,76,77,[[1109,1,1,76,77]]],[51,4,3,77,80,[[1112,2,2,77,79],[1114,2,1,79,80]]],[53,9,9,80,89,[[1120,1,1,80,81],[1121,3,3,81,84],[1122,1,1,84,85],[1123,2,2,85,87],[1124,2,2,87,89]]],[54,2,2,89,91,[[1125,1,1,89,90],[1128,1,1,90,91]]],[55,4,4,91,95,[[1129,2,2,91,93],[1130,2,2,93,95]]],[57,4,4,95,99,[[1136,1,1,95,96],[1139,1,1,96,97],[1141,1,1,97,98],[1145,1,1,98,99]]],[58,1,1,99,100,[[1146,1,1,99,100]]],[59,2,2,100,102,[[1153,2,2,100,102]]],[60,6,6,102,108,[[1156,1,1,102,103],[1157,2,2,103,105],[1158,3,3,105,108]]],[64,1,1,108,109,[[1166,1,1,108,109]]]],[23380,23610,23620,23701,23719,23809,23877,23960,24022,24023,24357,24438,24439,24496,24540,24566,24720,24846,24976,25187,25190,25311,25386,25397,26055,26085,26200,26228,26253,26346,26425,26484,26485,26493,26631,26718,26758,26852,26930,26942,26948,26955,26957,27008,27045,27054,27398,27654,27670,27753,27792,27815,27929,28148,28191,28233,28284,28285,28418,28445,28485,28489,28491,28494,28524,28547,28621,28645,28713,28741,28756,29083,29193,29197,29326,29328,29535,29584,29585,29614,29722,29735,29736,29743,29749,29767,29771,29789,29803,29818,29873,29895,29904,29913,29917,30024,30091,30117,30253,30280,30425,30429,30499,30516,30522,30525,30538,30539,30678]]],["+",[21,21,[[39,6,6,0,6,[[942,2,2,0,2],[945,2,2,2,4],[948,1,1,4,5],[952,1,1,5,6]]],[40,8,8,6,14,[[960,1,1,6,7],[962,2,2,7,9],[963,1,1,9,10],[965,2,2,10,12],[969,1,1,12,13],[971,1,1,13,14]]],[41,2,2,14,16,[[981,1,1,14,15],[982,1,1,15,16]]],[43,2,2,16,18,[[1038,1,1,16,17],[1040,1,1,17,18]]],[47,1,1,18,19,[[1092,1,1,18,19]]],[51,1,1,19,20,[[1114,1,1,19,20]]],[60,1,1,20,21,[[1157,1,1,20,21]]]],[23610,23620,23701,23719,23809,23960,24357,24438,24439,24496,24540,24566,24720,24846,25311,25386,27670,27753,29083,29614,30522]]],["acquaintance",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27792]]],["at",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29767]]],["company",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27045]]],["due",[3,3,[[47,1,1,0,1,[[1096,1,1,0,1]]],[53,1,1,1,2,[[1120,1,1,1,2]]],[55,1,1,2,3,[[1129,1,1,2,3]]]],[29197,29722,29895]]],["his",[5,5,[[39,1,1,0,1,[[950,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]],[57,1,1,3,4,[[1136,1,1,3,4]]],[60,1,1,4,5,[[1157,1,1,4,5]]]],[23877,26228,29803,30024,30516]]],["own",[74,71,[[39,2,2,0,2,[[937,1,1,0,1],[953,1,1,1,2]]],[41,4,4,2,6,[[974,1,1,2,3],[978,2,2,3,5],[982,1,1,5,6]]],[42,14,13,6,19,[[997,3,2,6,8],[1000,1,1,8,9],[1001,1,1,9,10],[1003,1,1,10,11],[1004,1,1,11,12],[1006,3,3,12,15],[1009,1,1,15,16],[1011,1,1,16,17],[1012,1,1,17,18],[1015,1,1,18,19]]],[43,10,10,19,29,[[1018,2,2,19,21],[1019,2,2,21,23],[1020,1,1,23,24],[1021,1,1,24,25],[1030,1,1,25,26],[1037,1,1,26,27],[1042,1,1,27,28],[1045,1,1,28,29]]],[44,5,5,29,34,[[1053,1,1,29,30],[1055,1,1,30,31],[1056,1,1,31,32],[1059,2,2,32,34]]],[45,12,10,34,44,[[1064,2,1,34,35],[1065,1,1,35,36],[1067,1,1,36,37],[1068,4,3,37,40],[1070,1,1,40,41],[1072,1,1,41,42],[1076,2,2,42,44]]],[47,1,1,44,45,[[1096,1,1,44,45]]],[48,2,2,45,47,[[1101,2,2,45,47]]],[50,1,1,47,48,[[1109,1,1,47,48]]],[51,3,3,48,51,[[1112,2,2,48,50],[1114,1,1,50,51]]],[53,5,5,51,56,[[1121,3,3,51,54],[1123,1,1,54,55],[1124,1,1,55,56]]],[54,2,2,56,58,[[1125,1,1,56,57],[1128,1,1,57,58]]],[55,3,3,58,61,[[1129,1,1,58,59],[1130,2,2,59,61]]],[57,3,3,61,64,[[1139,1,1,61,62],[1141,1,1,62,63],[1145,1,1,63,64]]],[58,1,1,64,65,[[1146,1,1,64,65]]],[59,2,2,65,67,[[1153,2,2,65,67]]],[60,3,3,67,70,[[1158,3,3,67,70]]],[64,1,1,70,71,[[1166,1,1,70,71]]]],[23380,24022,24976,25187,25190,25397,26055,26085,26200,26253,26346,26425,26484,26485,26493,26631,26718,26758,26852,26930,26948,26955,26957,27008,27054,27398,27654,27815,27929,28148,28191,28233,28284,28285,28418,28445,28485,28489,28491,28524,28547,28621,28741,28756,29193,29326,29328,29535,29584,29585,29614,29735,29736,29743,29771,29789,29818,29873,29904,29913,29917,30091,30117,30253,30280,30425,30429,30525,30538,30539,30678]]],["private",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30499]]],["proper",[2,2,[[43,1,1,0,1,[[1018,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[26942,28494]]],["several",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24023]]],["severally",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28645]]],["their",[2,2,[[45,1,1,0,1,[[1075,1,1,0,1]]],[53,1,1,1,2,[[1122,1,1,1,2]]]],[28713,29749]]]]},{"k":"G2399","v":[["*",[5,5,[[43,1,1,0,1,[[1021,1,1,0,1]]],[45,3,3,1,4,[[1075,3,3,1,4]]],[46,1,1,4,5,[[1088,1,1,4,5]]]],[27035,28694,28701,28702,28995]]],["ignorant",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27035]]],["rude",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28995]]],["unlearned",[3,3,[[45,3,3,0,3,[[1075,3,3,0,3]]]],[28694,28701,28702]]]]},{"k":"G2400","v":[["*",[213,204,[[39,62,59,0,59,[[929,2,2,0,2],[930,4,4,2,6],[931,2,2,6,8],[932,1,1,8,9],[935,1,1,9,10],[936,5,5,10,15],[937,6,6,15,21],[938,1,1,21,22],[939,3,3,22,25],[940,8,8,25,33],[941,1,1,33,34],[943,1,1,34,35],[945,3,2,35,37],[947,2,2,37,39],[948,2,2,39,41],[949,1,1,41,42],[950,1,1,42,43],[951,2,2,43,45],[952,4,3,45,48],[953,1,1,48,49],[954,4,4,49,53],[955,1,1,53,54],[956,6,5,54,59]]],[40,12,11,59,70,[[957,1,1,59,60],[959,1,1,60,61],[960,1,1,61,62],[961,1,1,62,63],[966,2,2,63,65],[969,3,2,65,67],[970,2,2,67,69],[971,1,1,69,70]]],[41,59,56,70,126,[[973,6,6,70,76],[974,5,5,76,81],[977,2,2,81,83],[978,1,1,83,84],[979,5,5,84,89],[980,1,1,89,90],[981,3,3,90,93],[982,3,3,93,96],[983,3,3,96,99],[985,6,6,99,105],[986,1,1,105,106],[987,1,1,106,107],[989,5,2,107,109],[990,2,2,109,111],[991,3,3,111,114],[994,5,5,114,119],[995,4,4,119,123],[996,3,3,123,126]]],[42,5,5,126,131,[[1000,1,1,126,127],[1008,1,1,127,128],[1012,1,1,128,129],[1015,2,2,129,131]]],[43,23,23,131,154,[[1018,1,1,131,132],[1019,1,1,132,133],[1022,3,3,133,136],[1024,1,1,136,137],[1025,2,2,137,139],[1026,2,2,139,141],[1027,4,4,141,145],[1028,1,1,145,146],[1029,1,1,146,147],[1030,3,3,147,150],[1033,1,1,150,151],[1037,2,2,151,153],[1044,1,1,153,154]]],[44,1,1,154,155,[[1054,1,1,154,155]]],[45,1,1,155,156,[[1076,1,1,155,156]]],[46,6,5,156,161,[[1082,1,1,156,157],[1083,3,2,157,159],[1084,1,1,159,160],[1089,1,1,160,161]]],[47,1,1,161,162,[[1091,1,1,161,162]]],[57,4,4,162,166,[[1134,1,1,162,163],[1140,1,1,163,164],[1142,2,2,164,166]]],[58,7,7,166,173,[[1148,3,3,166,169],[1150,4,4,169,173]]],[59,1,1,173,174,[[1152,1,1,173,174]]],[64,1,1,174,175,[[1166,1,1,174,175]]],[65,30,29,175,204,[[1167,2,2,175,177],[1168,2,2,177,179],[1169,5,4,179,183],[1170,2,2,183,185],[1171,2,2,185,187],[1172,4,4,187,191],[1173,1,1,191,192],[1175,1,1,192,193],[1177,1,1,193,194],[1178,1,1,194,195],[1180,2,2,195,197],[1181,1,1,197,198],[1182,1,1,198,199],[1185,1,1,199,200],[1187,2,2,200,202],[1188,2,2,202,204]]]],[23164,23167,23170,23178,23182,23188,23208,23209,23220,23320,23347,23369,23374,23377,23379,23381,23382,23389,23397,23399,23411,23433,23467,23469,23478,23491,23499,23507,23530,23531,23535,23536,23538,23542,23655,23703,23705,23778,23789,23810,23822,23831,23876,23952,23956,23980,23982,23983,24014,24099,24100,24101,24105,24180,24197,24202,24204,24206,24215,24217,24320,24326,24386,24616,24621,24738,24740,24795,24796,24861,24913,24924,24929,24931,24937,24941,24982,24983,24998,25007,25021,25119,25125,25169,25207,25220,25222,25229,25232,25286,25331,25339,25340,25366,25382,25388,25436,25437,25446,25525,25529,25534,25548,25550,25553,25555,25617,25672,25674,25716,25719,25733,25739,25751,25874,25885,25895,25902,25911,25949,25950,25964,25985,25995,26004,26040,26191,26595,26758,26851,26852,26933,26956,27068,27084,27087,27172,27203,27212,27226,27227,27276,27278,27280,27289,27318,27344,27373,27387,27408,27484,27648,27651,27879,28188,28769,28894,28900,28907,28927,29036,29077,29990,30100,30140,30142,30322,30323,30324,30358,30361,30363,30365,30405,30686,30704,30715,30727,30739,30754,30755,30757,30766,30769,30770,30784,30785,30795,30798,30801,30805,30819,30852,30886,30894,30927,30940,30951,30969,31028,31056,31058,31087,31092]]],["+",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24204]]],["Behold",[64,64,[[39,17,17,0,17,[[929,1,1,0,1],[938,1,1,1,2],[939,2,2,2,4],[940,4,4,4,8],[941,1,1,8,9],[947,1,1,9,10],[948,1,1,10,11],[949,1,1,11,12],[950,1,1,12,13],[951,1,1,13,14],[952,2,2,14,16],[953,1,1,16,17]]],[40,5,5,17,22,[[957,1,1,17,18],[959,1,1,18,19],[960,1,1,19,20],[966,1,1,20,21],[971,1,1,21,22]]],[41,12,12,22,34,[[973,1,1,22,23],[974,1,1,23,24],[979,3,3,24,27],[982,1,1,27,28],[985,3,3,28,31],[990,1,1,31,32],[991,1,1,32,33],[994,1,1,33,34]]],[42,2,2,34,36,[[1012,1,1,34,35],[1015,1,1,35,36]]],[43,6,6,36,42,[[1019,1,1,36,37],[1022,1,1,37,38],[1024,1,1,38,39],[1026,1,1,39,40],[1027,2,2,40,42]]],[44,1,1,42,43,[[1054,1,1,42,43]]],[45,1,1,43,44,[[1076,1,1,43,44]]],[46,1,1,44,45,[[1089,1,1,44,45]]],[57,2,2,45,47,[[1134,1,1,45,46],[1140,1,1,46,47]]],[58,6,6,47,53,[[1148,3,3,47,50],[1150,3,3,50,53]]],[59,1,1,53,54,[[1152,1,1,53,54]]],[64,1,1,54,55,[[1166,1,1,54,55]]],[65,9,9,55,64,[[1167,1,1,55,56],[1168,1,1,56,57],[1169,3,3,57,60],[1182,1,1,60,61],[1187,2,2,61,63],[1188,1,1,63,64]]]],[23167,23433,23469,23478,23491,23507,23536,23538,23542,23789,23810,23831,23876,23956,23982,23983,24014,24217,24320,24326,24621,24861,24931,25007,25220,25222,25229,25382,25525,25550,25553,25719,25739,25874,26758,26852,26956,27084,27172,27226,27278,27280,28188,28769,29036,29990,30100,30322,30323,30324,30358,30361,30365,30405,30686,30704,30739,30755,30757,30766,30969,31056,31058,31087]]],["Lo",[8,8,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,2,2,1,3,[[966,1,1,1,2],[969,1,1,2,3]]],[41,3,3,3,6,[[987,1,1,3,4],[989,1,1,4,5],[990,1,1,5,6]]],[57,2,2,6,8,[[1142,2,2,6,8]]]],[23980,24616,24738,25617,25672,25716,30140,30142]]],["See",[2,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]]],[25674,27212]]],["behold",[116,114,[[39,37,36,0,36,[[929,1,1,0,1],[930,3,3,1,4],[932,1,1,4,5],[935,1,1,5,6],[936,5,5,6,11],[937,6,6,11,17],[939,1,1,17,18],[940,4,4,18,22],[943,1,1,22,23],[945,3,2,23,25],[947,1,1,25,26],[948,1,1,26,27],[951,1,1,27,28],[952,1,1,28,29],[954,3,3,29,32],[955,1,1,32,33],[956,3,3,33,36]]],[40,3,3,36,39,[[961,1,1,36,37],[969,1,1,37,38],[970,1,1,38,39]]],[41,36,36,39,75,[[973,4,4,39,43],[974,3,3,43,46],[977,2,2,46,48],[978,1,1,48,49],[979,2,2,49,51],[980,1,1,51,52],[981,2,2,52,54],[982,2,2,54,56],[983,3,3,56,59],[985,2,2,59,61],[986,1,1,61,62],[989,1,1,62,63],[991,2,2,63,65],[994,4,4,65,69],[995,3,3,69,72],[996,3,3,72,75]]],[42,3,3,75,78,[[1000,1,1,75,76],[1008,1,1,76,77],[1015,1,1,77,78]]],[43,14,14,78,92,[[1018,1,1,78,79],[1022,2,2,79,81],[1025,1,1,81,82],[1026,1,1,82,83],[1027,2,2,83,85],[1028,1,1,85,86],[1029,1,1,86,87],[1030,2,2,87,89],[1033,1,1,89,90],[1037,2,2,90,92]]],[46,5,4,92,96,[[1082,1,1,92,93],[1083,3,2,93,95],[1084,1,1,95,96]]],[47,1,1,96,97,[[1091,1,1,96,97]]],[58,1,1,97,98,[[1150,1,1,97,98]]],[65,16,16,98,114,[[1167,1,1,98,99],[1168,1,1,99,100],[1169,2,2,100,102],[1170,2,2,102,104],[1171,1,1,104,105],[1172,2,2,105,107],[1175,1,1,107,108],[1177,1,1,108,109],[1178,1,1,109,110],[1180,1,1,110,111],[1181,1,1,111,112],[1185,1,1,112,113],[1188,1,1,113,114]]]],[23164,23170,23182,23188,23220,23320,23347,23369,23374,23377,23379,23381,23382,23389,23397,23399,23411,23467,23499,23530,23531,23535,23655,23703,23705,23778,23822,23952,23983,24099,24100,24105,24180,24197,24202,24206,24386,24740,24795,24913,24924,24929,24941,24983,24998,25021,25119,25125,25169,25207,25232,25286,25331,25339,25366,25388,25436,25437,25446,25529,25548,25555,25672,25733,25751,25885,25895,25902,25911,25949,25964,25985,25995,26004,26040,26191,26595,26851,26933,27068,27087,27203,27227,27276,27289,27318,27344,27373,27387,27484,27648,27651,28894,28900,28907,28927,29077,30363,30715,30727,30754,30755,30769,30770,30784,30795,30801,30852,30886,30894,30940,30951,31028,31092]]],["lo",[21,21,[[39,6,6,0,6,[[930,1,1,0,1],[931,2,2,1,3],[954,1,1,3,4],[956,2,2,4,6]]],[40,2,2,6,8,[[969,1,1,6,7],[970,1,1,7,8]]],[41,6,6,8,14,[[973,1,1,8,9],[974,1,1,9,10],[981,1,1,10,11],[985,1,1,11,12],[989,1,1,12,13],[995,1,1,13,14]]],[43,2,2,14,16,[[1030,1,1,14,15],[1044,1,1,15,16]]],[65,5,5,16,21,[[1171,1,1,16,17],[1172,2,2,17,19],[1173,1,1,19,20],[1180,1,1,20,21]]]],[23178,23208,23209,24101,24202,24215,24738,24796,24937,24982,25340,25534,25672,25950,27408,27879,30785,30798,30805,30819,30927]]],["see",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25674]]]]},{"k":"G2401","v":[["Idumaea",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24296]]]]},{"k":"G2402","v":[["sweat",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25908]]]]},{"k":"G2403","v":[["Jezebel",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30737]]]]},{"k":"G2404","v":[["Hierapolis",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29555]]]]},{"k":"G2405","v":[["*",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[24902,30069]]],["office",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24902]]],["priesthood",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30069]]]]},{"k":"G2406","v":[["priesthood",[2,2,[[59,2,2,0,2,[[1152,2,2,0,2]]]],[30404,30408]]]]},{"k":"G2407","v":[["office",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24901]]]]},{"k":"G2408","v":[["*",[3,3,[[39,3,3,0,3,[[930,1,1,0,1],[944,1,1,1,2],[955,1,1,2,3]]]],[23186,23686,24138]]],["Jeremias",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23686]]],["Jeremy",[2,2,[[39,2,2,0,2,[[930,1,1,0,1],[955,1,1,1,2]]]],[23186,24138]]]]},{"k":"G2409","v":[["*",[32,30,[[39,3,3,0,3,[[936,1,1,0,1],[940,2,2,1,3]]],[40,2,2,3,5,[[957,1,1,3,4],[958,1,1,4,5]]],[41,5,5,5,10,[[973,1,1,5,6],[977,1,1,6,7],[978,1,1,7,8],[982,1,1,8,9],[989,1,1,9,10]]],[42,1,1,10,11,[[997,1,1,10,11]]],[43,4,4,11,15,[[1021,1,1,11,12],[1022,1,1,12,13],[1023,1,1,13,14],[1031,1,1,14,15]]],[57,14,12,15,27,[[1137,1,1,15,16],[1139,8,7,16,23],[1140,2,1,23,24],[1141,1,1,24,25],[1142,2,2,25,27]]],[65,3,3,27,30,[[1167,1,1,27,28],[1171,1,1,28,29],[1186,1,1,29,30]]]],[23349,23493,23494,24259,24286,24898,25121,25150,25394,25665,26063,27023,27083,27108,27427,30036,30065,30067,30075,30079,30081,30085,30087,30096,30111,30144,30154,30703,30789,31044]]],["+",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[25394,30085]]],["priest",[16,16,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[977,1,1,3,4]]],[43,2,2,4,6,[[1022,1,1,4,5],[1031,1,1,5,6]]],[57,10,10,6,16,[[1137,1,1,6,7],[1139,6,6,7,13],[1140,1,1,13,14],[1142,2,2,14,16]]]],[23349,24259,24898,25121,27083,27427,30036,30065,30067,30075,30079,30081,30085,30096,30144,30154]]],["priests",[14,14,[[39,2,2,0,2,[[940,2,2,0,2]]],[40,1,1,2,3,[[958,1,1,2,3]]],[41,2,2,3,5,[[978,1,1,3,4],[989,1,1,4,5]]],[42,1,1,5,6,[[997,1,1,5,6]]],[43,2,2,6,8,[[1021,1,1,6,7],[1023,1,1,7,8]]],[57,3,3,8,11,[[1139,1,1,8,9],[1140,1,1,9,10],[1141,1,1,10,11]]],[65,3,3,11,14,[[1167,1,1,11,12],[1171,1,1,12,13],[1186,1,1,13,14]]]],[23493,23494,24286,25150,25665,26063,27023,27108,30087,30096,30111,30703,30789,31044]]]]},{"k":"G2410","v":[["Jericho",[7,6,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,2,1,1,2,[[966,2,1,1,2]]],[41,3,3,2,5,[[982,1,1,2,3],[990,1,1,3,4],[991,1,1,4,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]]],[23821,24634,25393,25723,25732,30202]]]]},{"k":"G2411","v":[["temple",[71,67,[[39,11,9,0,9,[[932,1,1,0,1],[940,2,2,1,3],[949,5,4,3,7],[952,2,1,7,8],[954,1,1,8,9]]],[40,9,8,9,17,[[967,5,4,9,13],[968,1,1,13,14],[969,2,2,14,16],[970,1,1,16,17]]],[41,14,14,17,31,[[974,3,3,17,20],[976,1,1,20,21],[990,1,1,21,22],[991,2,2,22,24],[992,1,1,24,25],[993,3,3,25,28],[994,2,2,28,30],[996,1,1,30,31]]],[42,11,11,31,42,[[998,2,2,31,33],[1001,1,1,33,34],[1003,2,2,34,36],[1004,3,3,36,39],[1006,1,1,39,40],[1007,1,1,40,41],[1014,1,1,41,42]]],[43,25,24,42,66,[[1019,1,1,42,43],[1020,6,5,43,48],[1021,1,1,48,49],[1022,5,5,49,54],[1036,1,1,54,55],[1038,5,5,55,60],[1039,1,1,60,61],[1041,3,3,61,64],[1042,1,1,64,65],[1043,1,1,65,66]]],[45,1,1,66,67,[[1070,1,1,66,67]]]],[23214,23494,23495,23838,23840,23841,23849,23958,24109,24651,24655,24656,24667,24708,24718,24720,24803,25000,25010,25019,25072,25698,25776,25778,25780,25831,25863,25864,25916,25917,26044,26109,26110,26224,26342,26356,26383,26401,26440,26504,26579,26805,26995,26997,26998,26999,27004,27006,27023,27079,27080,27083,27084,27101,27612,27690,27691,27692,27693,27694,27721,27775,27781,27787,27804,27844,28553]]]]},{"k":"G2412","v":[["holiness",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29911]]]]},{"k":"G2413","v":[["*",[2,2,[[45,1,1,0,1,[[1070,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[28553,29868]]],["holy",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29868]]],["things",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28553]]]]},{"k":"G2414","v":[["Jerusalem",[59,59,[[39,11,11,0,11,[[930,2,2,0,2],[931,1,1,2,3],[932,1,1,3,4],[933,1,1,4,5],[943,1,1,5,6],[944,1,1,6,7],[948,2,2,7,9],[949,2,2,9,11]]],[40,9,9,11,20,[[959,2,2,11,13],[963,1,1,13,14],[966,2,2,14,16],[967,3,3,16,19],[971,1,1,19,20]]],[41,5,5,20,25,[[974,2,2,20,22],[990,1,1,22,23],[991,1,1,23,24],[995,1,1,24,25]]],[42,12,12,25,37,[[997,1,1,25,26],[998,2,2,26,28],[1000,3,3,28,31],[1001,2,2,31,33],[1006,1,1,33,34],[1007,2,2,34,36],[1008,1,1,36,37]]],[43,19,19,37,56,[[1018,1,1,37,38],[1025,2,2,38,40],[1028,3,3,40,43],[1030,1,1,43,44],[1035,1,1,44,45],[1037,1,1,45,46],[1038,1,1,46,47],[1042,5,5,47,52],[1043,3,3,52,55],[1045,1,1,55,56]]],[47,3,3,56,59,[[1091,2,2,56,58],[1092,1,1,58,59]]]],[23170,23172,23197,23234,23269,23634,23693,23809,23810,23827,23836,24296,24310,24464,24620,24621,24651,24655,24667,24867,24995,25015,25719,25759,25942,26063,26108,26118,26176,26177,26201,26211,26212,26503,26541,26578,26592,26927,27177,27190,27309,27329,27334,27375,27578,27642,27681,27797,27803,27805,27811,27820,27827,27833,27843,27916,29074,29075,29082]]]]},{"k":"G2415","v":[["Jerusalem",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[42,1,1,1,2,[[1003,1,1,1,2]]]],[24220,26353]]]]},{"k":"G2416","v":[["sacrilege",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27984]]]]},{"k":"G2417","v":[["churches",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27622]]]]},{"k":"G2418","v":[["ministering",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28319]]]]},{"k":"G2419","v":[["Jerusalem",[83,80,[[39,2,1,0,1,[[951,2,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,28,27,2,29,[[974,5,5,2,7],[976,1,1,7,8],[977,1,1,8,9],[978,1,1,9,10],[981,3,3,10,13],[982,1,1,13,14],[985,5,4,14,18],[989,1,1,18,19],[991,1,1,19,20],[993,2,2,20,22],[995,1,1,22,23],[996,6,6,23,29]]],[43,41,40,29,69,[[1018,4,3,29,32],[1019,2,2,32,34],[1021,2,2,34,36],[1022,2,2,36,38],[1023,1,1,38,39],[1025,3,3,39,42],[1026,5,5,42,47],[1027,1,1,47,48],[1029,1,1,48,49],[1030,2,2,49,51],[1032,2,2,51,53],[1033,1,1,53,54],[1036,1,1,54,55],[1037,1,1,55,56],[1038,6,6,56,62],[1039,3,3,62,65],[1040,1,1,65,66],[1041,1,1,66,67],[1042,2,2,67,69]]],[44,4,4,69,73,[[1060,4,4,69,73]]],[45,1,1,73,74,[[1077,1,1,73,74]]],[47,2,2,74,76,[[1094,2,2,74,76]]],[57,1,1,76,77,[[1144,1,1,76,77]]],[65,3,3,77,80,[[1169,1,1,77,78],[1187,2,2,78,80]]]],[23955,24641,24998,25011,25014,25016,25018,25072,25124,25163,25332,25352,25354,25393,25522,25540,25551,25552,25662,25742,25846,25850,25963,26004,26009,26024,26038,26040,26043,26931,26935,26942,26954,26963,27028,27038,27075,27087,27108,27201,27202,27203,27218,27229,27237,27242,27244,27298,27362,27389,27393,27444,27446,27487,27606,27648,27668,27675,27676,27677,27679,27695,27709,27721,27722,27745,27780,27799,27816,28322,28328,28329,28334,28779,29156,29157,30234,30758,31055,31063]]]]},{"k":"G2420","v":[["priesthood",[4,4,[[57,4,4,0,4,[[1139,4,4,0,4]]]],[30075,30076,30078,30088]]]]},{"k":"G2421","v":[["Jesse",[5,5,[[39,2,2,0,2,[[929,2,2,0,2]]],[41,1,1,2,3,[[975,1,1,2,3]]],[43,1,1,3,4,[[1030,1,1,3,4]]],[44,1,1,4,5,[[1060,1,1,4,5]]]],[23149,23150,25057,27384,28315]]]]},{"k":"G2422","v":[["Jephthae",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30204]]]]},{"k":"G2423","v":[["Jechonias",[2,2,[[39,2,2,0,2,[[929,2,2,0,2]]]],[23155,23156]]]]},{"k":"G2424","v":[["*",[975,935,[[39,172,170,0,170,[[929,5,5,0,5],[930,1,1,5,6],[931,3,3,6,9],[932,7,7,9,16],[935,1,1,16,17],[936,12,12,17,29],[937,13,13,29,42],[938,1,1,42,43],[939,4,4,43,47],[940,3,3,47,50],[941,6,6,50,56],[942,10,10,56,66],[943,8,8,66,74],[944,7,7,74,81],[945,13,13,81,94],[946,3,3,94,97],[947,7,7,97,104],[948,6,6,104,110],[949,10,10,110,120],[950,5,5,120,125],[951,1,1,125,126],[952,3,3,126,129],[954,23,22,129,151],[955,15,14,151,165],[956,5,5,165,170]]],[40,93,90,170,260,[[957,7,7,170,177],[958,5,5,177,182],[959,1,1,182,183],[961,10,10,183,193],[962,3,3,193,196],[963,1,1,196,197],[964,3,3,197,200],[965,8,8,200,208],[966,19,17,208,225],[967,9,8,225,233],[968,6,6,233,239],[969,2,2,239,241],[970,12,12,241,253],[971,6,6,253,259],[972,1,1,259,260]]],[41,98,95,260,355,[[973,1,1,260,261],[974,4,4,261,265],[975,2,2,265,267],[976,7,7,267,274],[977,6,6,274,280],[978,3,3,280,283],[979,7,7,283,290],[980,12,10,290,300],[981,10,10,300,310],[982,6,6,310,316],[985,3,3,316,319],[986,1,1,319,320],[989,2,2,320,322],[990,8,8,322,330],[991,5,4,330,334],[992,2,2,334,336],[994,5,5,336,341],[995,10,10,341,351],[996,4,4,351,355]]],[42,254,243,355,598,[[997,12,11,355,366],[998,10,10,366,376],[999,5,5,376,381],[1000,19,18,381,399],[1001,9,9,399,408],[1002,23,22,408,430],[1003,9,9,430,439],[1004,20,20,439,459],[1005,7,7,459,466],[1006,6,6,466,472],[1007,24,24,472,496],[1008,15,15,496,511],[1009,15,14,511,525],[1010,3,3,525,528],[1012,2,2,528,530],[1013,2,2,530,532],[1014,21,19,532,551],[1015,22,19,551,570],[1016,14,13,570,583],[1017,16,15,583,598]]],[43,68,67,598,665,[[1018,5,5,598,603],[1019,4,4,603,607],[1020,4,4,607,611],[1021,7,7,611,618],[1022,3,3,618,621],[1023,1,1,621,622],[1024,3,3,622,625],[1025,4,4,625,629],[1026,5,5,629,634],[1027,2,2,634,636],[1028,2,2,636,638],[1030,2,2,638,640],[1032,2,2,640,642],[1033,2,2,642,644],[1034,3,3,644,647],[1035,2,2,647,649],[1036,7,6,649,655],[1037,3,3,655,658],[1038,1,1,658,659],[1039,1,1,659,660],[1042,1,1,660,661],[1043,2,2,661,663],[1045,2,2,663,665]]],[44,38,38,665,703,[[1046,5,5,665,670],[1047,1,1,670,671],[1048,3,3,671,674],[1049,1,1,674,675],[1050,5,5,675,680],[1051,3,3,680,683],[1052,1,1,683,684],[1053,4,4,684,688],[1055,1,1,688,689],[1058,1,1,689,690],[1059,1,1,690,691],[1060,6,6,691,697],[1061,6,6,697,703]]],[45,27,24,703,727,[[1062,10,9,703,712],[1063,1,1,712,713],[1064,1,1,713,714],[1065,1,1,714,715],[1066,3,2,715,717],[1067,1,1,717,718],[1069,1,1,718,719],[1070,1,1,719,720],[1072,1,1,720,721],[1073,2,1,721,722],[1076,2,2,722,724],[1077,3,3,724,727]]],[46,20,16,727,743,[[1078,5,5,727,732],[1081,9,5,732,737],[1082,1,1,737,738],[1085,1,1,738,739],[1088,2,2,739,741],[1090,2,2,741,743]]],[47,17,16,743,759,[[1091,3,3,743,746],[1092,3,2,746,748],[1093,5,5,748,753],[1094,1,1,753,754],[1095,1,1,754,755],[1096,4,4,755,759]]],[48,21,20,759,779,[[1097,7,6,759,765],[1098,5,5,765,770],[1099,5,5,770,775],[1100,1,1,775,776],[1101,1,1,776,777],[1102,2,2,777,779]]],[49,22,21,779,800,[[1103,8,7,779,786],[1104,5,5,786,791],[1105,5,5,791,796],[1106,4,4,796,800]]],[50,8,8,800,808,[[1107,5,5,800,805],[1108,1,1,805,806],[1109,1,1,806,807],[1110,1,1,807,808]]],[51,17,15,808,823,[[1111,4,3,808,811],[1112,3,3,811,814],[1113,2,2,814,816],[1114,4,3,816,819],[1115,4,4,819,823]]],[52,12,11,823,834,[[1116,6,5,823,828],[1117,3,3,828,831],[1118,3,3,831,834]]],[53,14,13,834,847,[[1119,7,6,834,840],[1120,1,1,840,841],[1121,1,1,841,842],[1122,1,1,842,843],[1123,1,1,843,844],[1124,3,3,844,847]]],[54,14,13,847,860,[[1125,6,5,847,852],[1126,4,4,852,856],[1127,2,2,856,858],[1128,2,2,858,860]]],[55,4,4,860,864,[[1129,2,2,860,862],[1130,1,1,862,863],[1131,1,1,863,864]]],[56,7,7,864,871,[[1132,7,7,864,871]]],[57,14,14,871,885,[[1134,1,1,871,872],[1135,1,1,872,873],[1136,2,2,873,875],[1138,1,1,875,876],[1139,1,1,876,877],[1142,2,2,877,879],[1144,2,2,879,881],[1145,4,4,881,885]]],[58,2,2,885,887,[[1146,1,1,885,886],[1147,1,1,886,887]]],[59,11,10,887,897,[[1151,6,5,887,892],[1152,1,1,892,893],[1153,1,1,893,894],[1154,1,1,894,895],[1155,2,2,895,897]]],[60,9,8,897,905,[[1156,7,6,897,903],[1157,1,1,903,904],[1158,1,1,904,905]]],[61,12,12,905,917,[[1159,2,2,905,907],[1160,2,2,907,909],[1161,1,1,909,910],[1162,3,3,910,913],[1163,4,4,913,917]]],[62,2,2,917,919,[[1164,2,2,917,919]]],[64,5,4,919,923,[[1166,5,4,919,923]]],[65,14,12,923,935,[[1167,5,4,923,927],[1178,1,1,927,928],[1180,1,1,928,929],[1183,1,1,929,930],[1185,2,1,930,931],[1186,1,1,931,932],[1188,3,3,932,935]]]],[23145,23160,23162,23165,23169,23170,23205,23207,23208,23210,23216,23219,23221,23226,23227,23232,23344,23348,23349,23350,23352,23355,23358,23359,23363,23365,23367,23374,23379,23381,23383,23388,23389,23391,23394,23398,23401,23402,23406,23407,23409,23414,23422,23460,23463,23466,23484,23490,23504,23514,23540,23573,23575,23590,23592,23596,23598,23609,23610,23611,23613,23619,23622,23624,23626,23628,23634,23649,23654,23661,23662,23663,23665,23667,23678,23680,23685,23689,23692,23693,23696,23701,23704,23707,23708,23709,23711,23717,23718,23719,23720,23722,23725,23726,23728,23729,23749,23763,23776,23780,23783,23785,23788,23790,23809,23814,23817,23822,23824,23826,23827,23832,23837,23838,23842,23847,23850,23853,23857,23868,23873,23890,23901,23909,23913,23919,23958,23959,23961,24055,24058,24060,24064,24071,24073,24080,24085,24088,24090,24103,24104,24105,24106,24109,24111,24113,24117,24118,24123,24125,24129,24130,24140,24146,24149,24151,24155,24156,24166,24175,24179,24183,24184,24186,24187,24200,24204,24205,24211,24213,24216,24224,24229,24232,24239,24240,24256,24265,24268,24275,24277,24279,24295,24370,24371,24377,24379,24383,24384,24385,24391,24394,24400,24411,24437,24441,24490,24501,24517,24527,24540,24542,24543,24546,24561,24563,24565,24577,24593,24602,24606,24609,24611,24612,24615,24617,24620,24626,24627,24630,24635,24637,24638,24639,24640,24646,24647,24651,24654,24655,24662,24669,24673,24690,24697,24702,24707,24708,24714,24719,24722,24760,24772,24776,24781,24784,24802,24807,24809,24814,24816,24821,24826,24827,24831,24841,24860,24863,24869,24879,24924,24994,25000,25016,25025,25046,25048,25064,25067,25071,25075,25077,25097,25098,25115,25117,25119,25126,25129,25138,25149,25155,25157,25198,25199,25201,25204,25214,25217,25235,25273,25275,25280,25283,25284,25285,25286,25290,25291,25295,25334,25337,25342,25343,25344,25348,25351,25359,25361,25363,25384,25392,25393,25400,25402,25404,25520,25530,25532,25556,25664,25668,25704,25707,25710,25712,25725,25726,25728,25730,25734,25736,25740,25766,25787,25813,25911,25912,25915,25916,25927,25943,25955,25960,25961,25963,25969,25977,25978,25981,25987,25994,26006,26010,26027,26061,26073,26080,26081,26082,26086,26087,26089,26091,26092,26094,26096,26097,26098,26099,26102,26106,26108,26114,26117,26119,26122,26123,26125,26130,26142,26157,26158,26162,26163,26166,26169,26172,26173,26177,26182,26190,26200,26202,26203,26204,26206,26209,26210,26211,26216,26218,26223,26224,26225,26226,26227,26229,26258,26260,26262,26267,26268,26271,26272,26274,26276,26279,26281,26283,26286,26289,26292,26299,26300,26310,26318,26321,26324,26327,26329,26334,26342,26344,26349,26356,26361,26365,26367,26382,26387,26390,26391,26392,26393,26395,26400,26401,26402,26406,26409,26412,26415,26420,26423,26430,26435,26439,26440,26443,26451,26454,26475,26477,26479,26481,26487,26488,26504,26506,26513,26515,26527,26528,26532,26536,26537,26540,26543,26544,26546,26548,26553,26555,26556,26558,26561,26562,26563,26564,26567,26568,26569,26574,26577,26579,26581,26583,26587,26589,26591,26592,26594,26596,26601,26602,26603,26610,26615,26616,26624,26631,26633,26637,26638,26640,26651,26653,26655,26656,26657,26659,26661,26666,26668,26674,26677,26691,26745,26757,26760,26762,26786,26787,26789,26790,26792,26793,26796,26797,26800,26804,26805,26807,26808,26813,26817,26818,26819,26821,26822,26826,26830,26834,26836,26838,26841,26843,26844,26845,26848,26850,26851,26853,26855,26858,26863,26864,26865,26867,26869,26879,26881,26882,26883,26884,26886,26888,26891,26893,26896,26897,26898,26899,26902,26903,26905,26908,26910,26911,26912,26913,26915,26918,26919,26920,26921,26923,26924,26934,26937,26939,26944,26971,26981,26985,26987,27002,27009,27016,27022,27024,27032,27035,27040,27049,27052,27055,27089,27099,27101,27115,27161,27171,27175,27188,27192,27211,27213,27221,27233,27243,27245,27250,27295,27297,27324,27327,27385,27395,27453,27468,27501,27514,27526,27530,27541,27562,27585,27589,27590,27595,27598,27600,27602,27647,27650,27661,27677,27712,27815,27832,27838,27922,27930,27931,27933,27936,27937,27938,27978,28013,28015,28017,28046,28048,28058,28062,28064,28068,28071,28079,28091,28116,28117,28118,28127,28155,28197,28280,28294,28308,28309,28311,28319,28320,28333,28339,28354,28356,28360,28361,28363,28364,28365,28366,28367,28370,28371,28372,28373,28393,28396,28421,28448,28458,28459,28478,28533,28541,28623,28637,28749,28775,28798,28799,28800,28801,28802,28803,28814,28819,28864,28865,28869,28870,28873,28895,28941,28993,29020,29048,29057,29058,29060,29069,29085,29097,29103,29116,29124,29128,29130,29145,29168,29202,29203,29205,29206,29207,29208,29209,29211,29221,29223,29235,29236,29239,29242,29249,29252,29260,29262,29265,29272,29293,29324,29360,29361,29362,29363,29367,29369,29372,29380,29387,29396,29401,29402,29410,29412,29424,29429,29433,29435,29441,29449,29461,29463,29465,29466,29467,29468,29469,29493,29500,29534,29553,29561,29563,29570,29584,29585,29589,29601,29603,29604,29605,29617,29630,29639,29644,29649,29650,29651,29656,29657,29661,29662,29675,29677,29684,29690,29696,29697,29698,29708,29710,29711,29712,29721,29744,29753,29784,29791,29801,29802,29810,29811,29818,29819,29822,29828,29830,29835,29837,29865,29868,29871,29892,29893,29896,29921,29929,29939,29941,29943,29944,29947,29961,29963,29986,29996,30022,30028,30064,30086,30143,30152,30214,30236,30249,30253,30261,30262,30267,30294,30375,30376,30377,30381,30387,30404,30445,30457,30475,30479,30480,30481,30487,30490,30493,30495,30520,30540,30543,30547,30551,30572,30602,30605,30606,30618,30625,30629,30630,30644,30648,30652,30673,30676,30689,30693,30698,30699,30702,30706,30908,30938,30981,31027,31042,31096,31100,31101]]],["+",[9,9,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[991,1,1,2,3]]],[42,2,2,3,5,[[1008,1,1,3,4],[1014,1,1,4,5]]],[43,1,1,5,6,[[1030,1,1,5,6]]],[44,1,1,6,7,[[1060,1,1,6,7]]],[46,2,2,7,9,[[1081,2,2,7,9]]]],[24186,24807,25766,26589,26807,27395,28333,28864,28870]]],["JESUS",[6,6,[[39,3,3,0,3,[[929,2,2,0,2],[955,1,1,2,3]]],[41,2,2,3,5,[[973,1,1,3,4],[974,1,1,4,5]]],[42,1,1,5,6,[[1015,1,1,5,6]]]],[23165,23169,24166,24924,24994,26844]]],["Jesus",[954,918,[[39,167,165,0,165,[[929,3,3,0,3],[930,1,1,3,4],[931,3,3,4,7],[932,7,7,7,14],[935,1,1,14,15],[936,12,12,15,27],[937,13,13,27,40],[938,1,1,40,41],[939,4,4,41,45],[940,3,3,45,48],[941,6,6,48,54],[942,10,10,54,64],[943,7,7,64,71],[944,7,7,71,78],[945,13,13,78,91],[946,3,3,91,94],[947,7,7,94,101],[948,6,6,101,107],[949,10,10,107,117],[950,5,5,117,122],[951,1,1,122,123],[952,3,3,123,126],[954,23,22,126,148],[955,13,12,148,160],[956,5,5,160,165]]],[40,92,89,165,254,[[957,7,7,165,172],[958,5,5,172,177],[959,1,1,177,178],[961,10,10,178,188],[962,3,3,188,191],[963,1,1,191,192],[964,3,3,192,195],[965,8,8,195,203],[966,19,17,203,220],[967,9,8,220,228],[968,6,6,228,234],[969,2,2,234,236],[970,11,11,236,247],[971,6,6,247,253],[972,1,1,253,254]]],[41,92,90,254,344,[[974,3,3,254,257],[975,2,2,257,259],[976,7,7,259,266],[977,5,5,266,271],[978,3,3,271,274],[979,7,7,274,281],[980,11,9,281,290],[981,10,10,290,300],[982,5,5,300,305],[985,3,3,305,308],[986,1,1,308,309],[989,2,2,309,311],[990,8,8,311,319],[991,4,4,319,323],[992,2,2,323,325],[994,5,5,325,330],[995,10,10,330,340],[996,4,4,340,344]]],[42,249,239,344,583,[[997,12,11,344,355],[998,10,10,355,365],[999,5,5,365,370],[1000,19,18,370,388],[1001,9,9,388,397],[1002,23,22,397,419],[1003,9,9,419,428],[1004,20,20,428,448],[1005,7,7,448,455],[1006,6,6,455,461],[1007,24,24,461,485],[1008,14,14,485,499],[1009,13,13,499,512],[1010,3,3,512,515],[1012,2,2,515,517],[1013,2,2,517,519],[1014,20,18,519,537],[1015,21,18,537,555],[1016,14,13,555,568],[1017,16,15,568,583]]],[43,67,66,583,649,[[1018,5,5,583,588],[1019,4,4,588,592],[1020,4,4,592,596],[1021,7,7,596,603],[1022,3,3,603,606],[1023,1,1,606,607],[1024,3,3,607,610],[1025,4,4,610,614],[1026,5,5,614,619],[1027,2,2,619,621],[1028,2,2,621,623],[1030,1,1,623,624],[1032,2,2,624,626],[1033,2,2,626,628],[1034,3,3,628,631],[1035,2,2,631,633],[1036,7,6,633,639],[1037,3,3,639,642],[1038,1,1,642,643],[1039,1,1,643,644],[1042,1,1,644,645],[1043,2,2,645,647],[1045,2,2,647,649]]],[44,37,37,649,686,[[1046,5,5,649,654],[1047,1,1,654,655],[1048,3,3,655,658],[1049,1,1,658,659],[1050,5,5,659,664],[1051,3,3,664,667],[1052,1,1,667,668],[1053,4,4,668,672],[1055,1,1,672,673],[1058,1,1,673,674],[1059,1,1,674,675],[1060,5,5,675,680],[1061,6,6,680,686]]],[45,27,24,686,710,[[1062,10,9,686,695],[1063,1,1,695,696],[1064,1,1,696,697],[1065,1,1,697,698],[1066,3,2,698,700],[1067,1,1,700,701],[1069,1,1,701,702],[1070,1,1,702,703],[1072,1,1,703,704],[1073,2,1,704,705],[1076,2,2,705,707],[1077,3,3,707,710]]],[46,18,16,710,726,[[1078,5,5,710,715],[1081,7,5,715,720],[1082,1,1,720,721],[1085,1,1,721,722],[1088,2,2,722,724],[1090,2,2,724,726]]],[47,17,16,726,742,[[1091,3,3,726,729],[1092,3,2,729,731],[1093,5,5,731,736],[1094,1,1,736,737],[1095,1,1,737,738],[1096,4,4,738,742]]],[48,21,20,742,762,[[1097,7,6,742,748],[1098,5,5,748,753],[1099,5,5,753,758],[1100,1,1,758,759],[1101,1,1,759,760],[1102,2,2,760,762]]],[49,22,21,762,783,[[1103,8,7,762,769],[1104,5,5,769,774],[1105,5,5,774,779],[1106,4,4,779,783]]],[50,8,8,783,791,[[1107,5,5,783,788],[1108,1,1,788,789],[1109,1,1,789,790],[1110,1,1,790,791]]],[51,17,15,791,806,[[1111,4,3,791,794],[1112,3,3,794,797],[1113,2,2,797,799],[1114,4,3,799,802],[1115,4,4,802,806]]],[52,12,11,806,817,[[1116,6,5,806,811],[1117,3,3,811,814],[1118,3,3,814,817]]],[53,14,13,817,830,[[1119,7,6,817,823],[1120,1,1,823,824],[1121,1,1,824,825],[1122,1,1,825,826],[1123,1,1,826,827],[1124,3,3,827,830]]],[54,14,13,830,843,[[1125,6,5,830,835],[1126,4,4,835,839],[1127,2,2,839,841],[1128,2,2,841,843]]],[55,4,4,843,847,[[1129,2,2,843,845],[1130,1,1,845,846],[1131,1,1,846,847]]],[56,7,7,847,854,[[1132,7,7,847,854]]],[57,14,14,854,868,[[1134,1,1,854,855],[1135,1,1,855,856],[1136,2,2,856,858],[1138,1,1,858,859],[1139,1,1,859,860],[1142,2,2,860,862],[1144,2,2,862,864],[1145,4,4,864,868]]],[58,2,2,868,870,[[1146,1,1,868,869],[1147,1,1,869,870]]],[59,11,10,870,880,[[1151,6,5,870,875],[1152,1,1,875,876],[1153,1,1,876,877],[1154,1,1,877,878],[1155,2,2,878,880]]],[60,9,8,880,888,[[1156,7,6,880,886],[1157,1,1,886,887],[1158,1,1,887,888]]],[61,12,12,888,900,[[1159,2,2,888,890],[1160,2,2,890,892],[1161,1,1,892,893],[1162,3,3,893,896],[1163,4,4,896,900]]],[62,2,2,900,902,[[1164,2,2,900,902]]],[64,5,4,902,906,[[1166,5,4,902,906]]],[65,14,12,906,918,[[1167,5,4,906,910],[1178,1,1,910,911],[1180,1,1,911,912],[1183,1,1,912,913],[1185,2,1,913,914],[1186,1,1,914,915],[1188,3,3,915,918]]]],[23145,23160,23162,23170,23205,23207,23208,23210,23216,23219,23221,23226,23227,23232,23344,23348,23349,23350,23352,23355,23358,23359,23363,23365,23367,23374,23379,23381,23383,23388,23389,23391,23394,23398,23401,23402,23406,23407,23409,23414,23422,23460,23463,23466,23484,23490,23504,23514,23540,23573,23575,23590,23592,23596,23598,23609,23610,23611,23613,23619,23622,23624,23626,23628,23634,23649,23654,23661,23662,23665,23667,23678,23680,23685,23689,23692,23693,23696,23701,23704,23707,23708,23709,23711,23717,23718,23719,23720,23722,23725,23726,23728,23729,23749,23763,23776,23780,23783,23785,23788,23790,23809,23814,23817,23822,23824,23826,23827,23832,23837,23838,23842,23847,23850,23853,23857,23868,23873,23890,23901,23909,23913,23919,23958,23959,23961,24055,24058,24060,24064,24071,24073,24080,24085,24088,24090,24103,24104,24105,24106,24109,24111,24113,24117,24118,24123,24125,24129,24130,24140,24146,24149,24151,24155,24156,24175,24179,24183,24184,24187,24200,24204,24205,24211,24213,24216,24224,24229,24232,24239,24240,24256,24265,24268,24275,24277,24279,24295,24370,24371,24377,24379,24383,24384,24385,24391,24394,24400,24411,24437,24441,24490,24501,24517,24527,24540,24542,24543,24546,24561,24563,24565,24577,24593,24602,24606,24609,24611,24612,24615,24617,24620,24626,24627,24630,24635,24637,24638,24639,24640,24646,24647,24651,24654,24655,24662,24669,24673,24690,24697,24702,24707,24708,24714,24719,24722,24760,24772,24776,24781,24784,24802,24809,24814,24816,24821,24826,24827,24831,24841,24860,24863,24869,24879,25000,25016,25025,25046,25048,25064,25067,25071,25075,25077,25097,25098,25117,25119,25126,25129,25138,25149,25155,25157,25198,25199,25201,25204,25214,25217,25235,25273,25275,25280,25283,25284,25285,25290,25291,25295,25334,25337,25342,25343,25344,25348,25351,25359,25361,25363,25384,25392,25393,25400,25404,25520,25530,25532,25556,25664,25668,25704,25707,25710,25712,25725,25726,25728,25730,25734,25736,25740,25766,25787,25813,25911,25912,25915,25916,25927,25943,25955,25960,25961,25963,25969,25977,25978,25981,25987,25994,26006,26010,26027,26061,26073,26080,26081,26082,26086,26087,26089,26091,26092,26094,26096,26097,26098,26099,26102,26106,26108,26114,26117,26119,26122,26123,26125,26130,26142,26157,26158,26162,26163,26166,26169,26172,26173,26177,26182,26190,26200,26202,26203,26204,26206,26209,26210,26211,26216,26218,26223,26224,26225,26226,26227,26229,26258,26260,26262,26267,26268,26271,26272,26274,26276,26279,26281,26283,26286,26289,26292,26299,26300,26310,26318,26321,26324,26327,26329,26334,26342,26344,26349,26356,26361,26365,26367,26382,26387,26390,26391,26392,26393,26395,26400,26401,26402,26406,26409,26412,26415,26420,26423,26430,26435,26439,26440,26443,26451,26454,26475,26477,26479,26481,26487,26488,26504,26506,26513,26515,26527,26528,26532,26536,26537,26540,26543,26544,26546,26548,26553,26555,26556,26558,26561,26562,26563,26564,26567,26568,26569,26574,26577,26579,26581,26583,26587,26591,26592,26594,26596,26601,26602,26603,26610,26615,26616,26624,26631,26633,26637,26638,26640,26651,26653,26656,26657,26659,26661,26666,26668,26674,26677,26691,26745,26757,26760,26762,26786,26787,26789,26790,26792,26793,26796,26797,26800,26804,26805,26808,26813,26817,26818,26819,26821,26822,26826,26830,26834,26836,26838,26841,26843,26845,26848,26850,26851,26853,26855,26858,26863,26864,26865,26867,26869,26879,26881,26882,26883,26884,26886,26888,26891,26893,26896,26897,26898,26899,26902,26903,26905,26908,26910,26911,26912,26913,26915,26918,26919,26920,26921,26923,26924,26934,26937,26939,26944,26971,26981,26985,26987,27002,27009,27016,27022,27024,27032,27035,27040,27049,27052,27055,27089,27099,27101,27115,27161,27171,27175,27188,27192,27211,27213,27221,27233,27243,27245,27250,27295,27297,27324,27327,27385,27453,27468,27501,27514,27526,27530,27541,27562,27585,27589,27590,27595,27598,27600,27602,27647,27650,27661,27677,27712,27815,27832,27838,27922,27930,27931,27933,27936,27937,27938,27978,28013,28015,28017,28046,28048,28058,28062,28064,28068,28071,28079,28091,28116,28117,28118,28127,28155,28197,28280,28294,28308,28309,28311,28319,28320,28339,28354,28356,28360,28361,28363,28364,28365,28366,28367,28370,28371,28372,28373,28393,28396,28421,28448,28458,28459,28478,28533,28541,28623,28637,28749,28775,28798,28799,28800,28801,28802,28803,28814,28819,28864,28865,28869,28870,28873,28895,28941,28993,29020,29048,29057,29058,29060,29069,29085,29097,29103,29116,29124,29128,29130,29145,29168,29202,29203,29205,29206,29207,29208,29209,29211,29221,29223,29235,29236,29239,29242,29249,29252,29260,29262,29265,29272,29293,29324,29360,29361,29362,29363,29367,29369,29372,29380,29387,29396,29401,29402,29410,29412,29424,29429,29433,29435,29441,29449,29461,29463,29465,29466,29467,29468,29469,29493,29500,29534,29553,29561,29563,29570,29584,29585,29589,29601,29603,29604,29605,29617,29630,29639,29644,29649,29650,29651,29656,29657,29661,29662,29675,29677,29684,29690,29696,29697,29698,29708,29710,29711,29712,29721,29744,29753,29784,29791,29801,29802,29810,29811,29818,29819,29822,29828,29830,29835,29837,29865,29868,29871,29892,29893,29896,29921,29929,29939,29941,29943,29944,29947,29961,29963,29986,29996,30022,30028,30064,30086,30143,30152,30214,30236,30249,30253,30261,30262,30267,30294,30375,30376,30377,30381,30387,30404,30445,30457,30475,30479,30480,30481,30487,30490,30493,30495,30520,30540,30543,30547,30551,30572,30602,30605,30606,30618,30625,30629,30630,30644,30648,30652,30673,30676,30689,30693,30698,30699,30702,30706,30908,30938,30981,31027,31042,31096,31100,31101]]],["Jesus'",[6,6,[[39,1,1,0,1,[[943,1,1,0,1]]],[41,3,3,1,4,[[977,1,1,1,2],[980,1,1,2,3],[982,1,1,3,4]]],[42,2,2,4,6,[[1009,2,2,4,6]]]],[23663,25115,25286,25402,26653,26655]]]]},{"k":"G2425","v":[["*",[41,41,[[39,3,3,0,3,[[931,1,1,0,1],[936,1,1,1,2],[956,1,1,2,3]]],[40,3,3,3,6,[[957,1,1,3,4],[966,1,1,4,5],[971,1,1,5,6]]],[41,10,10,6,16,[[975,1,1,6,7],[979,3,3,7,10],[980,2,2,10,12],[992,1,1,12,13],[994,1,1,13,14],[995,2,2,14,16]]],[43,19,19,16,35,[[1022,1,1,16,17],[1025,1,1,17,18],[1026,2,2,18,20],[1028,2,2,20,22],[1029,1,1,22,23],[1031,2,2,23,25],[1034,1,1,25,26],[1035,1,1,26,27],[1036,2,2,27,29],[1037,3,3,29,32],[1039,1,1,32,33],[1044,2,2,33,35]]],[45,2,2,35,37,[[1072,1,1,35,36],[1076,1,1,36,37]]],[46,3,3,37,40,[[1079,2,2,37,39],[1080,1,1,39,40]]],[54,1,1,40,41,[[1126,1,1,40,41]]]],[23203,23353,24207,24222,24634,24841,25041,25201,25206,25207,25272,25277,25788,25902,25943,25944,27096,27187,27239,27259,27331,27333,27349,27417,27435,27532,27575,27604,27611,27634,27637,27663,27710,27862,27864,28630,28727,28830,28840,28846,29829]]],["+",[5,5,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[43,3,3,2,5,[[1035,1,1,2,3],[1037,2,2,3,5]]]],[24841,25272,27575,27637,27663]]],["Long",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27417]]],["Many",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27604]]],["Sufficient",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28830]]],["able",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29829]]],["enough",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25902]]],["great",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27710]]],["large",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24207]]],["long",[3,3,[[41,2,2,0,2,[[992,1,1,0,1],[995,1,1,1,2]]],[43,1,1,2,3,[[1025,1,1,2,3]]]],[25788,25943,27187]]],["many",[10,10,[[41,3,3,0,3,[[979,1,1,0,1],[980,1,1,1,2],[995,1,1,2,3]]],[43,6,6,3,9,[[1026,2,2,3,5],[1029,1,1,5,6],[1031,1,1,6,7],[1037,1,1,7,8],[1044,1,1,8,9]]],[45,1,1,9,10,[[1072,1,1,9,10]]]],[25206,25277,25944,27239,27259,27349,27435,27634,27862,28630]]],["meet",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28727]]],["much",[6,6,[[41,1,1,0,1,[[979,1,1,0,1]]],[43,5,5,1,6,[[1022,1,1,1,2],[1028,2,2,2,4],[1036,1,1,4,5],[1044,1,1,5,6]]]],[25207,27096,27331,27333,27611,27864]]],["number",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24634]]],["security",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27532]]],["sufficient",[2,2,[[46,2,2,0,2,[[1079,1,1,0,1],[1080,1,1,1,2]]]],[28840,28846]]],["worthy",[5,5,[[39,2,2,0,2,[[931,1,1,0,1],[936,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,2,2,3,5,[[975,1,1,3,4],[979,1,1,4,5]]]],[23203,23353,24222,25041,25201]]]]},{"k":"G2426","v":[["sufficiency",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28846]]]]},{"k":"G2427","v":[["+",[2,2,[[46,1,1,0,1,[[1080,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[28847,29477]]]]},{"k":"G2428","v":[["supplications",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30037]]]]},{"k":"G2429","v":[["moisture",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25251]]]]},{"k":"G2430","v":[["Iconium",[6,6,[[43,5,5,0,5,[[1030,1,1,0,1],[1031,3,3,1,4],[1033,1,1,4,5]]],[54,1,1,5,6,[[1127,1,1,5,6]]]],[27413,27415,27433,27435,27485,29864]]]]},{"k":"G2431","v":[["cheerful",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28963]]]]},{"k":"G2432","v":[["cheerfulness",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28253]]]]},{"k":"G2433","v":[["*",[2,2,[[41,1,1,0,1,[[990,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]]],[25701,29994]]],["for",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29994]]],["merciful",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25701]]]]},{"k":"G2434","v":[["propitiation",[2,2,[[61,2,2,0,2,[[1160,1,1,0,1],[1162,1,1,1,2]]]],[30552,30613]]]]},{"k":"G2435","v":[["*",[2,2,[[44,1,1,0,1,[[1048,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[28016,30110]]],["mercyseat",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30110]]],["propitiation",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28016]]]]},{"k":"G2436","v":[["*",[2,2,[[39,1,1,0,1,[[944,1,1,0,1]]],[57,1,1,1,2,[[1140,1,1,1,2]]]],[23694,30104]]],["far",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23694]]],["merciful",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30104]]]]},{"k":"G2437","v":[["Illyricum",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28322]]]]},{"k":"G2438","v":[["*",[4,4,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[42,1,1,2,3,[[997,1,1,2,3]]],[43,1,1,3,4,[[1039,1,1,3,4]]]],[24222,25041,26071,27729]]],["latchet",[3,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[42,1,1,2,3,[[997,1,1,2,3]]]],[24222,25041,26071]]],["thongs",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27729]]]]},{"k":"G2439","v":[["clothed",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24379,25280]]]]},{"k":"G2440","v":[["*",[61,59,[[39,16,14,0,14,[[933,1,1,0,1],[937,4,3,1,4],[939,1,1,4,5],[942,1,1,5,6],[945,1,1,6,7],[949,2,2,7,9],[951,1,1,9,10],[952,1,1,10,11],[954,1,1,11,12],[955,3,2,12,14]]],[40,12,12,14,26,[[958,1,1,14,15],[961,3,3,15,18],[962,1,1,18,19],[965,1,1,19,20],[966,1,1,20,21],[967,2,2,21,23],[969,1,1,23,24],[971,2,2,24,26]]],[41,9,9,26,35,[[977,1,1,26,27],[978,1,1,27,28],[979,1,1,28,29],[980,2,2,29,31],[991,2,2,31,33],[994,1,1,33,34],[995,1,1,34,35]]],[42,6,6,35,41,[[1009,2,2,35,37],[1015,4,4,37,41]]],[43,8,8,41,49,[[1024,1,1,41,42],[1026,1,1,42,43],[1029,1,1,43,44],[1031,1,1,44,45],[1033,1,1,45,46],[1035,1,1,46,47],[1039,2,2,47,49]]],[57,1,1,49,50,[[1133,1,1,49,50]]],[58,1,1,50,51,[[1150,1,1,50,51]]],[59,1,1,51,52,[[1153,1,1,51,52]]],[65,7,7,52,59,[[1169,3,3,52,55],[1170,1,1,55,56],[1182,1,1,56,57],[1185,2,2,57,59]]]],[23274,23395,23399,23400,23467,23633,23702,23833,23834,23923,23975,24119,24160,24164,24281,24391,24392,24394,24463,24541,24638,24647,24648,24733,24846,24850,25143,25175,25220,25272,25289,25766,25767,25900,25969,26634,26642,26827,26830,26848,26849,27174,27255,27345,27428,27505,27563,27724,27727,29974,30356,30427,30750,30751,30764,30772,30969,31030,31033]]],["+",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]]],[24846,27345]]],["apparel",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30427]]],["cloke",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]]],[23274,25175]]],["clothes",[11,11,[[39,3,3,0,3,[[949,1,1,0,1],[952,1,1,1,2],[954,1,1,2,3]]],[40,2,2,3,5,[[961,2,2,3,5]]],[41,2,2,5,7,[[980,1,1,5,6],[991,1,1,6,7]]],[43,4,4,7,11,[[1024,1,1,7,8],[1031,1,1,8,9],[1033,1,1,9,10],[1039,1,1,10,11]]]],[23833,23975,24119,24392,24394,25272,25767,27174,27428,27505,27727]]],["garment",[14,13,[[39,5,4,0,4,[[937,4,3,0,3],[942,1,1,3,4]]],[40,5,5,4,9,[[958,1,1,4,5],[961,1,1,5,6],[962,1,1,6,7],[966,1,1,7,8],[969,1,1,8,9]]],[41,3,3,9,12,[[977,1,1,9,10],[980,1,1,10,11],[994,1,1,11,12]]],[57,1,1,12,13,[[1133,1,1,12,13]]]],[23395,23399,23400,23633,24281,24391,24463,24638,24733,25143,25289,25900,29974]]],["garments",[15,14,[[39,4,3,0,3,[[949,1,1,0,1],[951,1,1,1,2],[955,2,1,2,3]]],[40,3,3,3,6,[[967,2,2,3,5],[971,1,1,5,6]]],[41,1,1,6,7,[[991,1,1,6,7]]],[42,3,3,7,10,[[1009,2,2,7,9],[1015,1,1,9,10]]],[43,1,1,10,11,[[1026,1,1,10,11]]],[58,1,1,11,12,[[1150,1,1,11,12]]],[65,2,2,12,14,[[1169,1,1,12,13],[1182,1,1,13,14]]]],[23834,23923,24164,24647,24648,24850,25766,26634,26642,26848,27255,30356,30750,30969]]],["raiment",[12,12,[[39,3,3,0,3,[[939,1,1,0,1],[945,1,1,1,2],[955,1,1,2,3]]],[40,1,1,3,4,[[965,1,1,3,4]]],[41,2,2,4,6,[[979,1,1,4,5],[995,1,1,5,6]]],[42,1,1,6,7,[[1015,1,1,6,7]]],[43,2,2,7,9,[[1035,1,1,7,8],[1039,1,1,8,9]]],[65,3,3,9,12,[[1169,2,2,9,11],[1170,1,1,11,12]]]],[23467,23702,24160,24541,25220,25969,26849,27563,27724,30751,30764,30772]]],["robe",[2,2,[[42,2,2,0,2,[[1015,2,2,0,2]]]],[26827,26830]]],["vesture",[2,2,[[65,2,2,0,2,[[1185,2,2,0,2]]]],[31030,31033]]]]},{"k":"G2441","v":[["*",[6,6,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,2,2,1,3,[[979,1,1,1,2],[981,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[43,1,1,4,5,[[1037,1,1,4,5]]],[53,1,1,5,6,[[1120,1,1,5,6]]]],[24164,25220,25330,26849,27659,29725]]],["+",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25220]]],["apparel",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27659]]],["array",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29725]]],["raiment",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25330]]],["vesture",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]]],[24164,26849]]]]},{"k":"G2442","v":[["desirous",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29578]]]]},{"k":"G2443","v":[["*",[620,582,[[39,37,37,0,37,[[929,1,1,0,1],[930,1,1,1,2],[932,2,2,2,4],[933,2,2,4,6],[935,2,2,6,8],[936,1,1,8,9],[937,1,1,9,10],[938,1,1,10,11],[940,2,2,11,13],[942,2,2,13,15],[944,1,1,15,16],[946,3,3,16,19],[947,2,2,19,21],[948,3,3,21,24],[949,1,1,24,25],[951,1,1,25,26],[952,1,1,26,27],[954,5,5,27,32],[955,4,4,32,36],[956,1,1,36,37]]],[40,60,58,37,95,[[957,1,1,37,38],[958,1,1,38,39],[959,6,5,39,44],[960,4,3,44,47],[961,5,5,47,52],[962,6,6,52,58],[963,4,4,58,62],[964,3,3,62,65],[965,5,5,65,70],[966,6,6,70,76],[967,3,3,76,79],[968,4,4,79,83],[969,2,2,83,85],[970,4,4,85,89],[971,5,5,89,94],[972,1,1,94,95]]],[41,43,43,95,138,[[973,2,2,95,97],[976,1,1,97,98],[977,1,1,98,99],[978,3,3,99,102],[979,2,2,102,104],[980,4,4,104,108],[981,3,3,108,111],[982,1,1,111,112],[983,3,3,112,115],[984,1,1,115,116],[986,3,3,116,119],[987,1,1,119,120],[988,4,4,120,124],[989,1,1,124,125],[990,3,3,125,128],[991,2,2,128,130],[992,4,4,130,134],[993,1,1,134,135],[994,3,3,135,138]]],[42,139,126,138,264,[[997,7,6,138,144],[998,1,1,144,145],[999,5,4,145,149],[1000,5,5,149,154],[1001,6,6,154,160],[1002,11,11,160,171],[1003,3,3,171,174],[1004,3,3,174,177],[1005,5,5,177,182],[1006,5,4,182,186],[1007,13,13,186,199],[1008,10,9,199,208],[1009,8,7,208,215],[1010,5,5,215,220],[1011,9,8,220,228],[1012,8,8,228,236],[1013,19,14,236,250],[1014,6,6,250,256],[1015,8,7,256,263],[1016,2,1,263,264]]],[43,14,14,264,278,[[1019,1,1,264,265],[1021,1,1,265,266],[1022,1,1,266,267],[1025,1,1,267,268],[1026,1,1,268,269],[1033,2,2,269,271],[1036,1,1,271,272],[1038,1,1,272,273],[1039,2,2,273,275],[1040,1,1,275,276],[1041,1,1,276,277],[1044,1,1,277,278]]],[44,29,27,278,305,[[1046,2,2,278,280],[1048,2,2,280,282],[1049,1,1,282,283],[1050,2,2,283,285],[1051,3,3,285,288],[1052,3,2,288,290],[1053,2,2,290,292],[1054,2,2,292,294],[1056,4,4,294,298],[1059,1,1,298,299],[1060,6,5,299,304],[1061,1,1,304,305]]],[45,54,46,305,351,[[1062,5,4,305,309],[1063,2,2,309,311],[1064,1,1,311,312],[1065,5,4,312,316],[1066,3,3,316,319],[1068,5,4,319,323],[1070,12,9,323,332],[1071,1,1,332,333],[1072,3,3,333,336],[1073,1,1,336,337],[1074,1,1,337,338],[1075,7,6,338,344],[1076,1,1,344,345],[1077,7,6,345,351]]],[46,38,35,351,386,[[1078,4,4,351,355],[1079,4,3,355,358],[1081,4,4,358,362],[1082,5,5,362,367],[1083,1,1,367,368],[1084,1,1,368,369],[1085,5,5,369,374],[1086,4,4,374,378],[1087,1,1,378,379],[1088,4,3,379,382],[1089,3,3,382,385],[1090,2,1,385,386]]],[47,16,14,386,400,[[1091,1,1,386,387],[1092,6,6,387,393],[1093,4,3,393,396],[1094,3,2,396,398],[1095,1,1,398,399],[1096,1,1,399,400]]],[48,22,21,400,421,[[1097,1,1,400,401],[1098,3,3,401,404],[1099,4,4,404,408],[1100,4,4,408,412],[1101,4,3,412,415],[1102,6,6,415,421]]],[49,11,11,421,432,[[1103,4,4,421,425],[1104,6,6,425,431],[1105,1,1,431,432]]],[50,10,10,432,442,[[1107,3,3,432,435],[1108,1,1,435,436],[1110,6,6,436,442]]],[51,6,6,442,448,[[1112,1,1,442,443],[1114,3,3,443,446],[1115,2,2,446,448]]],[52,7,7,448,455,[[1116,1,1,448,449],[1117,1,1,449,450],[1118,5,5,450,455]]],[53,13,13,455,468,[[1119,4,4,455,459],[1120,1,1,459,460],[1121,1,1,460,461],[1122,1,1,461,462],[1123,4,4,462,466],[1124,2,2,466,468]]],[54,5,5,468,473,[[1125,1,1,468,469],[1126,2,2,469,471],[1127,1,1,471,472],[1128,1,1,472,473]]],[55,13,13,473,486,[[1129,3,3,473,476],[1130,6,6,476,482],[1131,4,4,482,486]]],[56,4,4,486,490,[[1132,4,4,486,490]]],[57,15,15,490,505,[[1134,2,2,490,492],[1136,1,1,492,493],[1137,1,1,493,494],[1138,2,2,494,496],[1141,1,1,496,497],[1142,2,2,497,499],[1143,2,2,499,501],[1144,1,1,501,502],[1145,3,3,502,505]]],[58,2,2,505,507,[[1146,1,1,505,506],[1149,1,1,506,507]]],[59,13,13,507,520,[[1151,1,1,507,508],[1152,4,4,508,512],[1153,4,4,512,516],[1154,3,3,516,519],[1155,1,1,519,520]]],[60,1,1,520,521,[[1156,1,1,520,521]]],[61,20,19,521,540,[[1159,3,3,521,524],[1160,4,4,524,528],[1161,5,5,528,533],[1162,3,3,533,536],[1163,5,4,536,540]]],[62,5,4,540,544,[[1164,5,4,540,544]]],[63,2,2,544,546,[[1165,2,2,544,546]]],[65,41,36,546,582,[[1168,2,2,546,548],[1169,5,3,548,551],[1172,3,3,551,554],[1173,1,1,554,555],[1174,3,3,555,558],[1175,5,4,558,562],[1177,1,1,562,563],[1178,4,4,563,567],[1179,6,5,567,572],[1180,1,1,572,573],[1182,1,1,573,574],[1184,2,1,574,575],[1185,3,3,575,578],[1186,1,1,578,579],[1187,2,2,579,581],[1188,1,1,581,582]]]],[23166,23184,23212,23223,23263,23264,23317,23328,23353,23385,23442,23499,23505,23612,23633,23692,23733,23741,23743,23775,23778,23813,23823,23825,23830,23944,23977,24058,24070,24095,24110,24117,24149,24155,24161,24164,24205,24253,24270,24290,24297,24298,24300,24302,24335,24344,24345,24374,24376,24382,24387,24407,24415,24419,24432,24443,24448,24463,24472,24489,24495,24499,24506,24522,24530,24547,24550,24556,24560,24568,24601,24605,24623,24625,24636,24639,24656,24665,24668,24675,24686,24688,24692,24735,24751,24764,24766,24789,24803,24837,24841,24846,24847,24858,24874,24897,24936,25066,25131,25153,25177,25180,25201,25231,25255,25261,25276,25277,25313,25341,25346,25403,25438,25455,25459,25495,25563,25576,25582,25617,25624,25629,25644,25647,25653,25703,25727,25729,25735,25746,25789,25793,25799,25807,25862,25872,25894,25896,26051,26052,26063,26066,26071,26075,26120,26135,26136,26137,26141,26164,26171,26190,26192,26203,26217,26230,26233,26244,26246,26250,26262,26264,26269,26272,26285,26286,26287,26295,26296,26297,26307,26331,26351,26360,26387,26437,26440,26442,26443,26462,26476,26479,26491,26498,26512,26519,26527,26534,26538,26539,26542,26554,26560,26565,26573,26575,26576,26578,26580,26589,26590,26600,26603,26616,26618,26620,26626,26627,26631,26632,26645,26648,26649,26659,26664,26671,26681,26684,26697,26699,26701,26707,26710,26711,26712,26715,26716,26724,26727,26728,26730,26733,26750,26756,26758,26759,26760,26761,26762,26763,26770,26771,26772,26774,26778,26780,26781,26782,26783,26785,26794,26813,26817,26821,26822,26824,26829,26849,26853,26856,26860,26861,26863,26898,26974,27039,27074,27195,27237,27513,27519,27589,27688,27709,27728,27758,27773,27897,27941,27943,27999,28010,28038,28067,28068,28069,28072,28074,28095,28104,28120,28133,28166,28178,28220,28228,28240,28241,28289,28307,28309,28319,28334,28335,28338,28373,28390,28391,28394,28399,28406,28428,28435,28436,28439,28441,28456,28459,28461,28492,28516,28521,28522,28555,28558,28559,28560,28561,28562,28563,28564,28565,28600,28619,28632,28634,28659,28668,28679,28683,28690,28691,28697,28709,28746,28778,28782,28786,28787,28788,28792,28809,28811,28815,28817,28828,28829,28833,28866,28869,28870,28874,28881,28887,28889,28892,28898,28901,28925,28938,28939,28941,28945,28946,28959,28960,28961,28964,28980,28996,29001,29005,29029,29030,29031,29050,29073,29085,29086,29090,29091,29097,29100,29116,29124,29126,29136,29148,29179,29201,29223,29236,29239,29244,29261,29267,29268,29270,29282,29286,29300,29301,29330,29331,29337,29340,29350,29356,29357,29358,29359,29370,29371,29387,29388,29393,29401,29406,29410,29419,29421,29429,29474,29483,29493,29496,29545,29546,29550,29554,29558,29559,29586,29604,29615,29616,29625,29631,29660,29673,29679,29680,29687,29690,29692,29699,29712,29714,29716,29718,29746,29762,29770,29779,29783,29784,29789,29807,29813,29831,29837,29870,29887,29897,29901,29905,29912,29913,29916,29918,29920,29922,29930,29931,29936,29937,29951,29952,29953,29957,29991,29994,30030,30031,30056,30062,30130,30142,30169,30207,30212,30239,30253,30258,30260,30270,30340,30381,30401,30411,30420,30423,30425,30433,30440,30442,30452,30457,30459,30471,30483,30543,30544,30549,30551,30569,30577,30578,30580,30584,30587,30590,30602,30612,30620,30624,30627,30637,30640,30644,30650,30651,30653,30657,30662,30666,30727,30738,30755,30757,30764,30795,30797,30804,30811,30830,30833,30839,30844,30845,30855,30860,30878,30895,30897,30905,30906,30920,30921,30923,30924,30925,30939,30966,30997,31025,31032,31035,31041,31068,31076,31094]]],["+",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]]],[24803,26217,28792]]],["That",[48,48,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,3,3,2,5,[[973,1,1,2,3],[983,1,1,3,4],[994,1,1,4,5]]],[42,8,8,5,13,[[999,1,1,5,6],[1001,1,1,6,7],[1008,1,1,7,8],[1009,1,1,8,9],[1011,1,1,9,10],[1013,1,1,10,11],[1014,2,2,11,13]]],[44,6,6,13,19,[[1050,1,1,13,14],[1053,1,1,14,15],[1060,3,3,15,18],[1061,1,1,18,19]]],[45,3,3,19,22,[[1062,1,1,19,20],[1063,1,1,20,21],[1073,1,1,21,22]]],[46,1,1,22,23,[[1087,1,1,22,23]]],[47,1,1,23,24,[[1093,1,1,23,24]]],[48,7,7,24,31,[[1097,1,1,24,25],[1098,1,1,25,26],[1099,1,1,26,27],[1100,1,1,27,28],[1101,2,2,28,30],[1102,1,1,30,31]]],[49,3,3,31,34,[[1103,1,1,31,32],[1104,2,2,32,34]]],[50,2,2,34,36,[[1108,1,1,34,35],[1110,1,1,35,36]]],[51,1,1,36,37,[[1114,1,1,36,37]]],[52,1,1,37,38,[[1117,1,1,37,38]]],[54,1,1,38,39,[[1127,1,1,38,39]]],[55,2,2,39,41,[[1130,1,1,39,40],[1131,1,1,40,41]]],[57,2,2,41,43,[[1138,2,2,41,43]]],[59,1,1,43,44,[[1151,1,1,43,44]]],[61,2,2,44,46,[[1161,1,1,44,45],[1162,1,1,45,46]]],[62,1,1,46,47,[[1164,1,1,46,47]]],[65,1,1,47,48,[[1185,1,1,47,48]]]],[23223,24335,24897,25455,25894,26135,26233,26618,26664,26711,26780,26794,26817,28068,28120,28309,28334,28335,28338,28394,28399,28659,28980,29116,29223,29236,29267,29286,29330,29331,29340,29387,29401,29406,29496,29546,29615,29673,29870,29912,29930,30056,30062,30381,30602,30624,30651,31035]]],["To",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29136]]],["after",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25582]]],["albeit",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29957]]],["as",[1,1,[[65,1,1,0,1,[[1174,1,1,0,1]]]],[30839]]],["because",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23823]]],["intent",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26538]]],["pray",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24387]]],["should",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30923]]],["that",[487,464,[[39,32,32,0,32,[[929,1,1,0,1],[930,1,1,1,2],[932,1,1,2,3],[933,2,2,3,5],[935,2,2,5,7],[936,1,1,7,8],[937,1,1,8,9],[938,1,1,9,10],[940,2,2,10,12],[942,2,2,12,14],[944,1,1,14,15],[946,3,3,15,18],[947,2,2,18,20],[948,2,2,20,22],[949,1,1,22,23],[951,1,1,23,24],[952,1,1,24,25],[954,4,4,25,29],[955,2,2,29,31],[956,1,1,31,32]]],[40,42,41,32,73,[[957,1,1,32,33],[958,1,1,33,34],[959,5,4,34,38],[960,1,1,38,39],[961,4,4,39,43],[962,5,5,43,48],[963,3,3,48,51],[964,1,1,51,52],[965,4,4,52,56],[966,6,6,56,62],[967,2,2,62,64],[968,3,3,64,67],[969,1,1,67,68],[970,2,2,68,70],[971,2,2,70,72],[972,1,1,72,73]]],[41,36,36,73,109,[[973,1,1,73,74],[976,1,1,74,75],[977,1,1,75,76],[978,2,2,76,78],[979,2,2,78,80],[980,4,4,80,84],[981,2,2,84,86],[982,1,1,86,87],[983,2,2,87,89],[984,1,1,89,90],[986,2,2,90,92],[987,1,1,92,93],[988,4,4,93,97],[989,1,1,97,98],[990,3,3,98,101],[991,1,1,101,102],[992,4,4,102,106],[993,1,1,106,107],[994,2,2,107,109]]],[42,105,98,109,207,[[997,3,3,109,112],[998,1,1,112,113],[999,3,3,113,116],[1000,3,3,116,119],[1001,3,3,119,122],[1002,9,9,122,131],[1003,2,2,131,133],[1004,1,1,133,134],[1005,5,5,134,139],[1006,3,3,139,142],[1007,8,8,142,150],[1008,6,6,150,156],[1009,6,6,156,162],[1010,5,5,162,167],[1011,8,7,167,174],[1012,8,8,174,182],[1013,17,13,182,195],[1014,4,4,195,199],[1015,8,7,199,206],[1016,2,1,206,207]]],[43,10,10,207,217,[[1019,1,1,207,208],[1021,1,1,208,209],[1022,1,1,209,210],[1025,1,1,210,211],[1026,1,1,211,212],[1036,1,1,212,213],[1038,1,1,213,214],[1039,1,1,214,215],[1040,1,1,215,216],[1041,1,1,216,217]]],[44,23,22,217,239,[[1046,2,2,217,219],[1048,2,2,219,221],[1049,1,1,221,222],[1050,1,1,222,223],[1051,3,3,223,226],[1052,3,2,226,228],[1053,1,1,228,229],[1054,2,2,229,231],[1056,4,4,231,235],[1059,1,1,235,236],[1060,3,3,236,239]]],[45,43,37,239,276,[[1062,1,1,239,240],[1063,1,1,240,241],[1064,1,1,241,242],[1065,5,4,242,246],[1066,3,3,246,249],[1068,5,4,249,253],[1070,11,8,253,261],[1071,1,1,261,262],[1072,3,3,262,265],[1075,7,6,265,271],[1076,1,1,271,272],[1077,4,4,272,276]]],[46,36,33,276,309,[[1078,4,4,276,280],[1079,4,3,280,283],[1081,4,4,283,287],[1082,5,5,287,292],[1083,1,1,292,293],[1084,1,1,293,294],[1085,5,5,294,299],[1086,4,4,299,303],[1088,4,3,303,306],[1089,2,2,306,308],[1090,2,1,308,309]]],[47,14,14,309,323,[[1091,1,1,309,310],[1092,6,6,310,316],[1093,3,3,316,319],[1094,2,2,319,321],[1095,1,1,321,322],[1096,1,1,322,323]]],[48,14,14,323,337,[[1098,1,1,323,324],[1099,3,3,324,327],[1100,3,3,327,330],[1101,2,2,330,332],[1102,5,5,332,337]]],[49,7,7,337,344,[[1103,3,3,337,340],[1104,3,3,340,343],[1105,1,1,343,344]]],[50,8,8,344,352,[[1107,3,3,344,347],[1110,5,5,347,352]]],[51,4,4,352,356,[[1112,1,1,352,353],[1114,1,1,353,354],[1115,2,2,354,356]]],[52,5,5,356,361,[[1116,1,1,356,357],[1118,4,4,357,361]]],[53,13,13,361,374,[[1119,4,4,361,365],[1120,1,1,365,366],[1121,1,1,366,367],[1122,1,1,367,368],[1123,4,4,368,372],[1124,2,2,372,374]]],[54,4,4,374,378,[[1125,1,1,374,375],[1126,2,2,375,377],[1128,1,1,377,378]]],[55,11,11,378,389,[[1129,3,3,378,381],[1130,5,5,381,386],[1131,3,3,386,389]]],[56,3,3,389,392,[[1132,3,3,389,392]]],[57,13,13,392,405,[[1134,2,2,392,394],[1136,1,1,394,395],[1137,1,1,395,396],[1141,1,1,396,397],[1142,2,2,397,399],[1143,2,2,399,401],[1144,1,1,401,402],[1145,3,3,402,405]]],[58,2,2,405,407,[[1146,1,1,405,406],[1149,1,1,406,407]]],[59,12,12,407,419,[[1152,4,4,407,411],[1153,4,4,411,415],[1154,3,3,415,418],[1155,1,1,418,419]]],[60,1,1,419,420,[[1156,1,1,419,420]]],[61,16,15,420,435,[[1159,2,2,420,422],[1160,4,4,422,426],[1161,3,3,426,429],[1162,2,2,429,431],[1163,5,4,431,435]]],[62,4,4,435,439,[[1164,4,4,435,439]]],[63,1,1,439,440,[[1165,1,1,439,440]]],[65,28,24,440,464,[[1168,1,1,440,441],[1169,4,2,441,443],[1172,2,2,443,445],[1173,1,1,445,446],[1174,1,1,446,447],[1175,4,3,447,450],[1177,1,1,450,451],[1178,3,3,451,454],[1179,3,3,454,457],[1180,1,1,457,458],[1182,1,1,458,459],[1184,2,1,459,460],[1185,2,2,460,462],[1186,1,1,462,463],[1188,1,1,463,464]]]],[23166,23184,23212,23263,23264,23317,23328,23353,23385,23442,23499,23505,23612,23633,23692,23733,23741,23743,23775,23778,23813,23825,23830,23944,23977,24058,24095,24110,24117,24149,24164,24205,24253,24270,24290,24297,24300,24302,24345,24374,24376,24382,24407,24415,24419,24432,24443,24463,24472,24489,24499,24530,24547,24550,24556,24568,24601,24605,24623,24625,24636,24639,24656,24665,24675,24688,24692,24735,24766,24789,24837,24858,24874,24936,25066,25131,25153,25177,25201,25231,25255,25261,25276,25277,25313,25346,25403,25438,25459,25495,25563,25576,25617,25624,25629,25644,25647,25653,25703,25727,25729,25746,25789,25793,25799,25807,25862,25872,25896,26051,26066,26075,26120,26136,26137,26141,26171,26192,26203,26230,26244,26250,26262,26264,26269,26285,26286,26287,26296,26297,26307,26331,26351,26387,26442,26443,26462,26476,26479,26491,26498,26519,26527,26534,26539,26560,26565,26573,26575,26580,26589,26590,26603,26616,26620,26626,26631,26645,26648,26649,26659,26664,26671,26681,26684,26697,26699,26701,26707,26710,26712,26715,26716,26724,26727,26728,26730,26733,26750,26756,26758,26759,26760,26761,26762,26770,26771,26772,26774,26778,26780,26781,26782,26783,26785,26813,26821,26822,26824,26829,26849,26853,26856,26860,26861,26863,26898,26974,27039,27074,27195,27237,27589,27688,27728,27758,27773,27941,27943,27999,28010,28038,28067,28069,28072,28074,28095,28104,28133,28166,28178,28220,28228,28240,28241,28289,28307,28319,28334,28373,28406,28428,28435,28436,28439,28441,28456,28459,28461,28492,28516,28521,28522,28555,28558,28559,28560,28561,28562,28563,28564,28600,28619,28632,28634,28679,28683,28690,28691,28697,28709,28746,28778,28782,28786,28787,28809,28811,28815,28817,28828,28829,28833,28866,28869,28870,28874,28881,28887,28889,28892,28898,28901,28925,28938,28939,28941,28945,28946,28959,28960,28961,28964,28996,29001,29005,29030,29031,29050,29073,29085,29086,29090,29091,29097,29100,29116,29124,29126,29136,29148,29179,29201,29239,29261,29268,29270,29282,29300,29301,29331,29337,29350,29356,29357,29358,29359,29370,29371,29388,29393,29410,29419,29429,29474,29483,29493,29545,29550,29554,29558,29559,29586,29616,29625,29631,29660,29679,29680,29690,29692,29699,29712,29714,29716,29718,29746,29762,29770,29779,29783,29784,29789,29807,29813,29831,29837,29887,29897,29901,29905,29913,29916,29918,29920,29922,29931,29936,29937,29951,29952,29953,29991,29994,30030,30031,30130,30142,30169,30207,30212,30239,30253,30258,30260,30270,30340,30401,30411,30420,30423,30425,30433,30440,30442,30452,30457,30459,30471,30483,30543,30544,30551,30569,30577,30578,30580,30587,30590,30612,30620,30627,30637,30640,30644,30650,30651,30653,30657,30666,30727,30757,30764,30797,30804,30811,30830,30844,30845,30860,30878,30897,30905,30906,30921,30923,30925,30939,30966,30997,31025,31032,31041,31094]]],["to",[73,69,[[39,3,3,0,3,[[954,1,1,0,1],[955,2,2,1,3]]],[40,15,14,3,17,[[959,1,1,3,4],[960,2,1,4,5],[962,1,1,5,6],[963,1,1,6,7],[964,2,2,7,9],[965,1,1,9,10],[967,1,1,10,11],[968,1,1,11,12],[969,1,1,12,13],[970,1,1,13,14],[971,3,3,14,17]]],[41,3,3,17,20,[[978,1,1,17,18],[981,1,1,18,19],[991,1,1,19,20]]],[42,24,23,20,43,[[997,4,4,20,24],[999,1,1,24,25],[1000,2,2,25,27],[1001,1,1,27,28],[1002,2,2,28,30],[1003,1,1,30,31],[1004,2,2,31,33],[1006,2,2,33,35],[1007,4,4,35,39],[1008,3,2,39,41],[1009,1,1,41,42],[1013,1,1,42,43]]],[43,4,4,43,47,[[1033,2,2,43,45],[1039,1,1,45,46],[1044,1,1,46,47]]],[45,7,5,47,52,[[1062,3,2,47,49],[1070,1,1,49,50],[1074,1,1,50,51],[1077,2,1,51,52]]],[46,1,1,52,53,[[1089,1,1,52,53]]],[48,1,1,53,54,[[1098,1,1,53,54]]],[49,1,1,54,55,[[1104,1,1,54,55]]],[52,1,1,55,56,[[1118,1,1,55,56]]],[61,2,2,56,58,[[1159,1,1,56,57],[1161,1,1,57,58]]],[63,1,1,58,59,[[1165,1,1,58,59]]],[65,10,10,59,69,[[1168,1,1,59,60],[1169,1,1,60,61],[1172,1,1,61,62],[1174,1,1,62,63],[1175,1,1,63,64],[1178,1,1,64,65],[1179,2,2,65,67],[1187,2,2,67,69]]]],[24070,24155,24161,24298,24344,24448,24495,24506,24522,24560,24668,24686,24751,24764,24841,24846,24847,25180,25341,25735,26051,26052,26063,26071,26137,26164,26190,26246,26272,26295,26360,26437,26440,26491,26512,26542,26554,26576,26578,26600,26627,26632,26763,27513,27519,27709,27897,28390,28391,28565,28668,28788,29029,29244,29421,29687,30549,30584,30662,30738,30755,30795,30833,30855,30895,30920,30924,31068,31076]]],["would",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29604]]]]},{"k":"G2444","v":[["*",[6,6,[[39,2,2,0,2,[[937,1,1,0,1],[955,1,1,1,2]]],[41,1,1,2,3,[[985,1,1,2,3]]],[43,2,2,3,5,[[1021,1,1,3,4],[1024,1,1,4,5]]],[45,1,1,5,6,[[1071,1,1,5,6]]]],[23383,24175,25525,27047,27142,28596]]],["+",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25525]]],["Wherefore",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23383]]],["Why",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27047]]],["why",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[45,1,1,2,3,[[1071,1,1,2,3]]]],[24175,27142,28596]]]]},{"k":"G2445","v":[["Joppa",[10,10,[[43,10,10,0,10,[[1026,4,4,0,4],[1027,4,4,4,8],[1028,2,2,8,10]]]],[27252,27254,27258,27259,27264,27267,27282,27291,27312,27320]]]]},{"k":"G2446","v":[["Jordan",[15,15,[[39,6,6,0,6,[[931,3,3,0,3],[932,2,2,3,5],[947,1,1,5,6]]],[40,4,4,6,10,[[957,2,2,6,8],[959,1,1,8,9],[966,1,1,9,10]]],[41,2,2,10,12,[[975,1,1,10,11],[976,1,1,11,12]]],[42,3,3,12,15,[[997,1,1,12,13],[999,1,1,13,14],[1006,1,1,14,15]]]],[23197,23198,23205,23224,23234,23763,24220,24224,24296,24589,25028,25064,26072,26146,26521]]]]},{"k":"G2447","v":[["*",[3,3,[[44,1,1,0,1,[[1048,1,1,0,1]]],[58,2,2,1,3,[[1148,1,1,1,2],[1150,1,1,2,3]]]],[28004,30327,30357]]],["poison",[2,2,[[44,1,1,0,1,[[1048,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[28004,30327]]],["rust",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30357]]]]},{"k":"G2448","v":[["Juda",[3,2,[[39,2,1,0,1,[[930,2,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]]],[23175,24932]]]]},{"k":"G2449","v":[["*",[44,44,[[39,8,8,0,8,[[930,3,3,0,3],[931,2,2,3,5],[932,1,1,5,6],[947,1,1,6,7],[952,1,1,7,8]]],[40,4,4,8,12,[[957,1,1,8,9],[959,1,1,9,10],[966,1,1,10,11],[969,1,1,11,12]]],[41,9,9,12,21,[[973,2,2,12,14],[974,1,1,14,15],[975,1,1,15,16],[977,1,1,16,17],[978,1,1,17,18],[979,1,1,18,19],[993,1,1,19,20],[995,1,1,20,21]]],[42,7,7,21,28,[[999,1,1,21,22],[1000,3,3,22,25],[1003,2,2,25,27],[1007,1,1,27,28]]],[43,12,12,28,40,[[1018,1,1,28,29],[1019,1,1,29,30],[1025,1,1,30,31],[1026,1,1,31,32],[1027,1,1,32,33],[1028,2,2,33,35],[1029,1,1,35,36],[1032,1,1,36,37],[1038,1,1,37,38],[1043,1,1,38,39],[1045,1,1,39,40]]],[44,1,1,40,41,[[1060,1,1,40,41]]],[46,1,1,41,42,[[1078,1,1,41,42]]],[47,1,1,42,43,[[1091,1,1,42,43]]],[51,1,1,43,44,[[1112,1,1,43,44]]]],[23170,23174,23191,23193,23197,23234,23763,23973,24220,24295,24589,24731,24898,24958,24977,25026,25124,25163,25212,25847,25940,26142,26159,26203,26210,26329,26331,26530,26931,26958,27177,27247,27296,27308,27336,27356,27443,27674,27843,27920,28334,28816,29079,29584]]],["Jewry",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[42,1,1,1,2,[[1003,1,1,1,2]]]],[25940,26329]]],["Judaea",[42,42,[[39,8,8,0,8,[[930,3,3,0,3],[931,2,2,3,5],[932,1,1,5,6],[947,1,1,6,7],[952,1,1,7,8]]],[40,4,4,8,12,[[957,1,1,8,9],[959,1,1,9,10],[966,1,1,10,11],[969,1,1,11,12]]],[41,8,8,12,20,[[973,2,2,12,14],[974,1,1,14,15],[975,1,1,15,16],[977,1,1,16,17],[978,1,1,17,18],[979,1,1,18,19],[993,1,1,19,20]]],[42,6,6,20,26,[[999,1,1,20,21],[1000,3,3,21,24],[1003,1,1,24,25],[1007,1,1,25,26]]],[43,12,12,26,38,[[1018,1,1,26,27],[1019,1,1,27,28],[1025,1,1,28,29],[1026,1,1,29,30],[1027,1,1,30,31],[1028,2,2,31,33],[1029,1,1,33,34],[1032,1,1,34,35],[1038,1,1,35,36],[1043,1,1,36,37],[1045,1,1,37,38]]],[44,1,1,38,39,[[1060,1,1,38,39]]],[46,1,1,39,40,[[1078,1,1,39,40]]],[47,1,1,40,41,[[1091,1,1,40,41]]],[51,1,1,41,42,[[1112,1,1,41,42]]]],[23170,23174,23191,23193,23197,23234,23763,23973,24220,24295,24589,24731,24898,24958,24977,25026,25124,25163,25212,25847,26142,26159,26203,26210,26331,26530,26931,26958,27177,27247,27296,27308,27336,27356,27443,27674,27843,27920,28334,28816,29079,29584]]]]},{"k":"G2450","v":[["Jews",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29095]]]]},{"k":"G2451","v":[["Jewish",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29906]]]]},{"k":"G2452","v":[["Jews",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29095]]]]},{"k":"G2453","v":[["*",[196,187,[[39,5,5,0,5,[[930,1,1,0,1],[955,3,3,1,4],[956,1,1,4,5]]],[40,6,6,5,11,[[963,1,1,5,6],[971,5,5,6,11]]],[41,5,5,11,16,[[979,1,1,11,12],[995,4,4,12,16]]],[42,70,66,16,82,[[997,1,1,16,17],[998,4,4,17,21],[999,2,2,21,23],[1000,3,2,23,25],[1001,5,5,25,30],[1002,3,3,30,33],[1003,6,6,33,39],[1004,5,5,39,44],[1005,3,2,44,46],[1006,4,4,46,50],[1007,8,8,50,58],[1008,2,2,58,60],[1009,1,1,60,61],[1014,9,9,61,70],[1015,13,11,70,81],[1016,1,1,81,82]]],[43,82,79,82,161,[[1019,3,3,82,85],[1026,2,2,85,87],[1027,3,3,87,90],[1028,1,1,90,91],[1029,2,2,91,93],[1030,6,6,93,99],[1031,6,5,99,104],[1033,3,3,104,107],[1034,5,5,107,112],[1035,10,8,112,120],[1036,6,6,120,126],[1037,3,3,126,129],[1038,5,5,129,134],[1039,3,3,134,137],[1040,4,4,137,141],[1041,5,5,141,146],[1042,7,7,146,153],[1043,5,5,153,158],[1045,3,3,158,161]]],[44,11,11,161,172,[[1046,1,1,161,162],[1047,5,5,162,167],[1048,3,3,167,170],[1054,1,1,170,171],[1055,1,1,171,172]]],[45,8,6,172,178,[[1062,3,3,172,175],[1070,3,1,175,176],[1071,1,1,176,177],[1073,1,1,177,178]]],[46,1,1,178,179,[[1088,1,1,178,179]]],[47,4,4,179,183,[[1092,3,3,179,182],[1093,1,1,182,183]]],[50,1,1,183,184,[[1109,1,1,183,184]]],[51,1,1,184,185,[[1112,1,1,184,185]]],[65,2,2,185,187,[[1168,1,1,185,186],[1169,1,1,186,187]]]],[23171,24140,24158,24166,24210,24466,24828,24835,24838,24844,24852,25198,25938,25972,25973,25986,26063,26101,26108,26113,26115,26121,26145,26165,26178,26211,26220,26225,26226,26228,26261,26298,26309,26329,26330,26339,26341,26343,26363,26403,26412,26429,26433,26438,26458,26462,26500,26505,26512,26514,26531,26542,26554,26556,26559,26568,26577,26578,26589,26591,26663,26797,26799,26805,26816,26818,26820,26821,26823,26824,26828,26832,26837,26839,26844,26845,26846,26856,26863,26865,26867,26886,26954,26959,26963,27238,27239,27281,27287,27298,27326,27340,27348,27367,27368,27404,27405,27407,27412,27415,27416,27418,27419,27433,27484,27486,27503,27524,27528,27533,27536,27540,27559,27561,27562,27569,27571,27576,27581,27585,27595,27598,27599,27602,27618,27619,27629,27645,27647,27675,27684,27685,27691,27703,27707,27716,27734,27746,27754,27761,27764,27774,27778,27787,27793,27796,27798,27803,27804,27805,27806,27811,27820,27825,27826,27827,27830,27844,27916,27918,27928,27946,27971,27972,27979,27990,27991,27992,28000,28020,28179,28200,28385,28386,28387,28560,28599,28647,29013,29094,29095,29096,29130,29528,29584,30726,30755]]],["+",[2,2,[[42,1,1,0,1,[[1006,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]]],[26505,27916]]],["JEWS",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]]],[24166,24852,25973,26844]]],["Jew",[22,22,[[42,2,2,0,2,[[1000,1,1,0,1],[1014,1,1,1,2]]],[43,8,8,2,10,[[1027,1,1,2,3],[1030,1,1,3,4],[1035,2,2,4,6],[1036,2,2,6,8],[1038,1,1,8,9],[1039,1,1,9,10]]],[44,8,8,10,18,[[1046,1,1,10,11],[1047,5,5,11,16],[1048,1,1,16,17],[1055,1,1,17,18]]],[45,1,1,18,19,[[1070,1,1,18,19]]],[47,2,2,19,21,[[1092,1,1,19,20],[1093,1,1,20,21]]],[50,1,1,21,22,[[1109,1,1,21,22]]]],[26165,26820,27287,27368,27559,27581,27599,27619,27703,27707,27946,27971,27972,27979,27990,27991,27992,28200,28560,29095,29130,29528]]],["Jewess",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1041,1,1,1,2]]]],[27484,27793]]],["Jews",[161,155,[[39,4,4,0,4,[[930,1,1,0,1],[955,2,2,1,3],[956,1,1,3,4]]],[40,5,5,4,9,[[963,1,1,4,5],[971,4,4,5,9]]],[41,4,4,9,13,[[979,1,1,9,10],[995,3,3,10,13]]],[42,62,59,13,72,[[997,1,1,13,14],[998,3,3,14,17],[999,2,2,17,19],[1000,2,2,19,21],[1001,5,5,21,26],[1002,3,3,26,29],[1003,5,5,29,34],[1004,5,5,34,39],[1005,3,2,39,41],[1006,3,3,41,44],[1007,7,7,44,51],[1008,2,2,51,53],[1009,1,1,53,54],[1014,8,8,54,62],[1015,11,9,62,71],[1016,1,1,71,72]]],[43,70,68,72,140,[[1019,2,2,72,74],[1026,2,2,74,76],[1027,2,2,76,78],[1028,1,1,78,79],[1029,2,2,79,81],[1030,5,5,81,86],[1031,6,5,86,91],[1033,2,2,91,93],[1034,5,5,93,98],[1035,8,7,98,105],[1036,4,4,105,109],[1037,3,3,109,112],[1038,4,4,112,116],[1039,2,2,116,118],[1040,4,4,118,122],[1041,4,4,122,126],[1042,7,7,126,133],[1043,5,5,133,138],[1045,2,2,138,140]]],[44,3,3,140,143,[[1048,2,2,140,142],[1054,1,1,142,143]]],[45,7,6,143,149,[[1062,3,3,143,146],[1070,2,1,146,147],[1071,1,1,147,148],[1073,1,1,148,149]]],[46,1,1,149,150,[[1088,1,1,149,150]]],[47,2,2,150,152,[[1092,2,2,150,152]]],[51,1,1,152,153,[[1112,1,1,152,153]]],[65,2,2,153,155,[[1168,1,1,153,154],[1169,1,1,154,155]]]],[23171,24140,24158,24210,24466,24828,24835,24838,24844,25198,25938,25972,25986,26063,26101,26113,26115,26121,26145,26165,26178,26211,26220,26225,26226,26228,26261,26298,26309,26329,26339,26341,26343,26363,26403,26412,26429,26433,26438,26458,26462,26500,26512,26514,26531,26542,26554,26556,26559,26568,26577,26589,26591,26663,26797,26799,26805,26816,26818,26821,26823,26824,26828,26832,26837,26839,26845,26846,26856,26863,26865,26886,26954,26959,27238,27239,27281,27298,27326,27340,27348,27367,27404,27405,27407,27412,27415,27416,27418,27419,27433,27486,27503,27524,27528,27533,27536,27540,27559,27561,27562,27569,27571,27576,27585,27595,27598,27602,27618,27629,27645,27647,27675,27684,27685,27691,27716,27734,27746,27754,27761,27764,27774,27778,27787,27796,27798,27803,27804,27805,27806,27811,27820,27825,27826,27827,27830,27844,27918,27928,28000,28020,28179,28385,28386,28387,28560,28599,28647,29013,29094,29096,29584,30726,30755]]],["Jews'",[4,4,[[42,4,4,0,4,[[998,1,1,0,1],[1003,1,1,1,2],[1007,1,1,2,3],[1015,1,1,3,4]]]],[26108,26330,26578,26867]]],["Judaea",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26963]]]]},{"k":"G2454","v":[["religion",[2,2,[[47,2,2,0,2,[[1091,2,2,0,2]]]],[29070,29071]]]]},{"k":"G2455","v":[["*",[42,41,[[39,8,8,0,8,[[929,2,2,0,2],[938,1,1,2,3],[941,1,1,3,4],[954,3,3,4,7],[955,1,1,7,8]]],[40,4,4,8,12,[[959,1,1,8,9],[962,1,1,9,10],[970,2,2,10,12]]],[41,8,7,12,19,[[975,3,3,12,15],[978,2,1,15,16],[994,3,3,16,19]]],[42,9,9,19,28,[[1002,1,1,19,20],[1008,1,1,20,21],[1009,3,3,21,24],[1010,1,1,24,25],[1014,3,3,25,28]]],[43,8,8,28,36,[[1018,3,3,28,31],[1022,1,1,31,32],[1026,1,1,32,33],[1032,3,3,33,36]]],[57,2,2,36,38,[[1139,1,1,36,37],[1140,1,1,37,38]]],[64,1,1,38,39,[[1166,1,1,38,39]]],[65,2,2,39,41,[[1171,1,1,39,40],[1173,1,1,40,41]]]],[23146,23147,23421,23594,24068,24079,24101,24132,24307,24410,24764,24797,25051,25055,25058,25162,25867,25911,25912,26328,26584,26632,26656,26659,26690,26787,26788,26790,26936,26939,26948,27096,27227,27464,27469,27474,30078,30100,30673,30784,30815]]],["Juda",[7,7,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,3,3,1,4,[[975,3,3,1,4]]],[57,1,1,4,5,[[1139,1,1,4,5]]],[65,2,2,5,7,[[1171,1,1,5,6],[1173,1,1,6,7]]]],[24410,25051,25055,25058,30078,30784,30815]]],["Judah",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30100]]],["Judas",[33,32,[[39,8,8,0,8,[[929,2,2,0,2],[938,1,1,2,3],[941,1,1,3,4],[954,3,3,4,7],[955,1,1,7,8]]],[40,3,3,8,11,[[959,1,1,8,9],[970,2,2,9,11]]],[41,5,4,11,15,[[978,2,1,11,12],[994,3,3,12,15]]],[42,9,9,15,24,[[1002,1,1,15,16],[1008,1,1,16,17],[1009,3,3,17,20],[1010,1,1,20,21],[1014,3,3,21,24]]],[43,8,8,24,32,[[1018,3,3,24,27],[1022,1,1,27,28],[1026,1,1,28,29],[1032,3,3,29,32]]]],[23146,23147,23421,23594,24068,24079,24101,24132,24307,24764,24797,25162,25867,25911,25912,26328,26584,26632,26656,26659,26690,26787,26788,26790,26936,26939,26948,27096,27227,27464,27469,27474]]],["Jude",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30673]]]]},{"k":"G2456","v":[["Julia",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28351]]]]},{"k":"G2457","v":[["Julius",[2,2,[[43,2,2,0,2,[[1044,2,2,0,2]]]],[27856,27858]]]]},{"k":"G2458","v":[["Junia",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28343]]]]},{"k":"G2459","v":[["Justus",[3,3,[[43,2,2,0,2,[[1018,1,1,0,1],[1035,1,1,1,2]]],[50,1,1,2,3,[[1110,1,1,2,3]]]],[26946,27564,29553]]]]},{"k":"G2460","v":[["horsemen",[2,2,[[43,2,2,0,2,[[1040,2,2,0,2]]]],[27757,27766]]]]},{"k":"G2461","v":[["horsemen",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30856]]]]},{"k":"G2462","v":[["*",[16,15,[[58,1,1,0,1,[[1148,1,1,0,1]]],[65,15,14,1,15,[[1172,4,4,1,5],[1175,4,3,5,8],[1180,1,1,8,9],[1184,1,1,9,10],[1185,5,5,10,15]]]],[30322,30795,30797,30798,30801,30847,30849,30857,30946,31006,31028,31031,31035,31036,31038]]],["horse",[8,8,[[65,8,8,0,8,[[1172,4,4,0,4],[1180,1,1,4,5],[1185,3,3,5,8]]]],[30795,30797,30798,30801,30946,31028,31036,31038]]],["horses",[7,6,[[65,7,6,0,6,[[1175,4,3,0,3],[1184,1,1,3,4],[1185,2,2,4,6]]]],[30847,30849,30857,31006,31031,31035]]],["horses'",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30322]]]]},{"k":"G2463","v":[["rainbow",[2,2,[[65,2,2,0,2,[[1170,1,1,0,1],[1176,1,1,1,2]]]],[30771,30862]]]]},{"k":"G2464","v":[["Isaac",[20,18,[[39,4,3,0,3,[[929,2,1,0,1],[936,1,1,1,2],[950,1,1,2,3]]],[40,1,1,3,4,[[968,1,1,3,4]]],[41,3,3,4,7,[[975,1,1,4,5],[985,1,1,5,6],[992,1,1,6,7]]],[43,4,3,7,10,[[1020,1,1,7,8],[1024,3,2,8,10]]],[44,2,2,10,12,[[1054,2,2,10,12]]],[47,1,1,12,13,[[1094,1,1,12,13]]],[57,4,4,13,17,[[1143,4,4,13,17]]],[58,1,1,17,18,[[1147,1,1,17,18]]]],[23146,23356,23904,24699,25059,25546,25816,27009,27124,27148,28162,28165,29159,30181,30189,30190,30192,30314]]]]},{"k":"G2465","v":[["angels",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25815]]]]},{"k":"G2466","v":[["Issachar",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30817]]]]},{"k":"G2467","v":[["know",[2,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[27827,30229]]]]},{"k":"G2468","v":[["*",[5,5,[[39,2,2,0,2,[[930,1,1,0,1],[933,1,1,1,2]]],[40,1,1,2,3,[[961,1,1,2,3]]],[41,1,1,3,4,[[991,1,1,3,4]]],[53,1,1,4,5,[[1122,1,1,4,5]]]],[23182,23259,24398,25748,29762]]],["+",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[991,1,1,1,2]]]],[23259,25748]]],["be",[2,2,[[39,1,1,0,1,[[930,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]]],[23182,24398]]],["wholly",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29762]]]]},{"k":"G2469","v":[["Iscariot",[11,11,[[39,2,2,0,2,[[938,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[959,1,1,2,3],[970,1,1,3,4]]],[41,2,2,4,6,[[978,1,1,4,5],[994,1,1,5,6]]],[42,5,5,6,11,[[1002,1,1,6,7],[1008,1,1,7,8],[1009,2,2,8,10],[1010,1,1,10,11]]]],[23421,24068,24307,24764,25162,25867,26328,26584,26632,26656,26690]]]]},{"k":"G2470","v":[["*",[8,8,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,2,2,1,3,[[970,2,2,1,3]]],[41,1,1,3,4,[[978,1,1,3,4]]],[42,1,1,4,5,[[1001,1,1,4,5]]],[43,1,1,5,6,[[1028,1,1,5,6]]],[49,1,1,6,7,[[1104,1,1,6,7]]],[65,1,1,7,8,[[1187,1,1,7,8]]]],[23804,24810,24813,25180,26228,27324,29397,31069]]],["+",[2,2,[[40,2,2,0,2,[[970,2,2,0,2]]]],[24810,24813]]],["again",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25180]]],["equal",[4,4,[[39,1,1,0,1,[[948,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[65,1,1,3,4,[[1187,1,1,3,4]]]],[23804,26228,29397,31069]]],["like",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27324]]]]},{"k":"G2471","v":[["*",[3,2,[[46,2,1,0,1,[[1085,2,1,0,1]]],[50,1,1,1,2,[[1110,1,1,1,2]]]],[28946,29543]]],["equal",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29543]]],["equality",[2,1,[[46,2,1,0,1,[[1085,2,1,0,1]]]],[28946]]]]},{"k":"G2472","v":[["precious",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30480]]]]},{"k":"G2473","v":[["likeminded",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29411]]]]},{"k":"G2474","v":[["Israel",[70,68,[[39,12,12,0,12,[[930,3,3,0,3],[936,1,1,3,4],[937,1,1,4,5],[938,2,2,5,7],[943,2,2,7,9],[947,1,1,9,10],[955,2,2,10,12]]],[40,2,2,12,14,[[968,1,1,12,13],[971,1,1,13,14]]],[41,12,12,14,26,[[973,4,4,14,18],[974,3,3,18,21],[976,2,2,21,23],[979,1,1,23,24],[994,1,1,24,25],[996,1,1,25,26]]],[42,4,4,26,30,[[997,2,2,26,28],[999,1,1,28,29],[1008,1,1,29,30]]],[43,16,16,30,46,[[1018,1,1,30,31],[1019,1,1,31,32],[1021,3,3,32,35],[1022,2,2,35,37],[1024,3,3,37,40],[1026,1,1,40,41],[1027,1,1,41,42],[1030,3,3,42,45],[1045,1,1,45,46]]],[44,12,10,46,56,[[1054,5,3,46,49],[1055,3,3,49,52],[1056,4,4,52,56]]],[45,1,1,56,57,[[1071,1,1,56,57]]],[46,2,2,57,59,[[1080,2,2,57,59]]],[47,1,1,59,60,[[1096,1,1,59,60]]],[48,1,1,60,61,[[1098,1,1,60,61]]],[49,1,1,61,62,[[1105,1,1,61,62]]],[57,3,3,62,65,[[1140,2,2,62,64],[1143,1,1,64,65]]],[65,3,3,65,68,[[1168,1,1,65,66],[1173,1,1,66,67],[1187,1,1,67,68]]]],[23175,23189,23190,23355,23412,23423,23440,23657,23664,23790,24138,24171,24702,24858,24909,24947,24961,24973,24998,25005,25007,25088,25090,25204,25894,26012,26075,26093,26130,26593,26929,26985,27030,27032,27049,27080,27090,27139,27153,27158,27231,27295,27379,27385,27386,27919,28161,28182,28186,28189,28207,28209,28211,28216,28234,28235,28585,28848,28854,29204,29241,29426,30100,30102,30194,30731,30814,31065]]]]},{"k":"G2475","v":[["*",[9,9,[[42,1,1,0,1,[[997,1,1,0,1]]],[43,5,5,1,6,[[1019,1,1,1,2],[1020,1,1,2,3],[1022,1,1,3,4],[1030,1,1,4,5],[1038,1,1,5,6]]],[44,2,2,6,8,[[1054,1,1,6,7],[1056,1,1,7,8]]],[46,1,1,8,9,[[1088,1,1,8,9]]]],[26091,26971,27008,27094,27378,27692,28159,28210,29011]]],["Israel",[5,5,[[43,5,5,0,5,[[1019,1,1,0,1],[1020,1,1,1,2],[1022,1,1,2,3],[1030,1,1,3,4],[1038,1,1,4,5]]]],[26971,27008,27094,27378,27692]]],["Israelite",[2,2,[[42,1,1,0,1,[[997,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]]],[26091,28210]]],["Israelites",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[28159,29011]]]]},{"k":"G2476","v":[["*",[156,152,[[39,21,20,0,20,[[930,1,1,0,1],[932,1,1,1,2],[934,1,1,2,3],[940,4,4,3,7],[941,1,1,7,8],[944,1,1,8,9],[946,2,2,9,11],[948,4,3,11,14],[952,1,1,14,15],[953,1,1,15,16],[954,2,2,16,18],[955,2,2,18,20]]],[40,10,10,20,30,[[959,4,4,20,24],[965,2,2,24,26],[966,1,1,26,27],[967,1,1,27,28],[969,2,2,28,30]]],[41,25,24,30,54,[[973,1,1,30,31],[976,1,1,31,32],[977,2,2,32,34],[978,3,2,34,36],[979,2,2,36,38],[980,2,2,38,40],[981,2,2,40,42],[983,1,1,42,43],[985,1,1,43,44],[989,1,1,44,45],[990,3,3,45,48],[991,1,1,48,49],[993,1,1,49,50],[995,3,3,50,53],[996,1,1,53,54]]],[42,21,20,54,74,[[997,2,2,54,56],[999,1,1,56,57],[1002,1,1,57,58],[1003,1,1,58,59],[1004,3,3,59,62],[1007,1,1,62,63],[1008,1,1,63,64],[1014,5,4,64,68],[1015,1,1,68,69],[1016,4,4,69,73],[1017,1,1,73,74]]],[43,35,35,74,109,[[1018,2,2,74,76],[1019,1,1,76,77],[1020,1,1,77,78],[1021,2,2,78,80],[1022,4,4,80,84],[1023,2,2,84,86],[1024,4,4,86,90],[1025,1,1,90,91],[1026,1,1,91,92],[1027,1,1,92,93],[1028,1,1,93,94],[1029,1,1,94,95],[1033,1,1,95,96],[1034,2,2,96,98],[1038,1,1,98,99],[1039,2,2,99,101],[1041,2,2,101,103],[1042,2,2,103,105],[1043,3,3,105,108],[1044,1,1,108,109]]],[44,6,5,109,114,[[1048,1,1,109,110],[1050,1,1,110,111],[1055,1,1,111,112],[1056,1,1,112,113],[1059,2,1,113,114]]],[45,3,3,114,117,[[1068,1,1,114,115],[1071,1,1,115,116],[1076,1,1,116,117]]],[46,2,2,117,119,[[1078,1,1,117,118],[1090,1,1,118,119]]],[48,3,3,119,122,[[1102,3,3,119,122]]],[50,1,1,122,123,[[1110,1,1,122,123]]],[54,1,1,123,124,[[1126,1,1,123,124]]],[57,2,2,124,126,[[1142,2,2,124,126]]],[58,2,2,126,128,[[1147,1,1,126,127],[1150,1,1,127,128]]],[59,1,1,128,129,[[1155,1,1,128,129]]],[64,1,1,129,130,[[1166,1,1,129,130]]],[65,22,22,130,152,[[1169,1,1,130,131],[1171,1,1,131,132],[1172,1,1,132,133],[1173,3,3,133,136],[1174,2,2,136,138],[1176,2,2,138,140],[1177,3,3,140,143],[1178,1,1,143,144],[1179,1,1,144,145],[1180,1,1,145,146],[1181,1,1,146,147],[1184,3,3,147,150],[1185,1,1,150,151],[1186,1,1,151,152]]]],[23178,23214,23287,23514,23515,23535,23536,23541,23700,23729,23743,23795,23798,23824,23972,24041,24069,24127,24140,24176,24312,24313,24314,24319,24539,24574,24637,24645,24726,24731,24904,25072,25108,25109,25154,25163,25209,25233,25265,25289,25328,25348,25423,25543,25663,25699,25701,25728,25739,25862,25945,25970,25984,26027,26070,26079,26149,26279,26365,26384,26390,26425,26579,26609,26790,26801,26803,26810,26850,26878,26881,26886,26893,26902,26934,26946,26963,27004,27029,27036,27079,27082,27084,27086,27107,27114,27149,27171,27172,27176,27214,27223,27289,27320,27351,27492,27545,27554,27704,27729,27734,27789,27790,27806,27814,27829,27839,27845,27876,28022,28049,28191,28229,28284,28524,28579,28719,28824,29044,29348,29350,29351,29554,29846,30142,30144,30296,30363,30477,30696,30766,30785,30810,30811,30819,30821,30829,30830,30866,30869,30873,30876,30883,30895,30909,30927,30948,31003,31008,31010,31034,31050]]],["+",[7,7,[[41,1,1,0,1,[[977,1,1,0,1]]],[42,2,2,1,3,[[1014,2,2,1,3]]],[43,3,3,3,6,[[1033,1,1,3,4],[1039,1,1,4,5],[1042,1,1,5,6]]],[44,1,1,6,7,[[1059,1,1,6,7]]]],[25108,26803,26810,27492,27729,27806,28284]]],["Stand",[2,2,[[48,1,1,0,1,[[1102,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[29351,30296]]],["Standing",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31003]]],["abode",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26425]]],["appointed",[2,2,[[43,2,2,0,2,[[1018,1,1,0,1],[1034,1,1,1,2]]]],[26946,27554]]],["brought",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24726]]],["by",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]]],[24127,26609]]],["continue",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27845]]],["covenanted",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24069]]],["establish",[3,3,[[44,2,2,0,2,[[1048,1,1,0,1],[1055,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[28022,28191,30142]]],["established",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[46,1,1,1,2,[[1090,1,1,1,2]]]],[23743,29044]]],["forth",[3,2,[[41,2,1,0,1,[[978,2,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[25154,27876]]],["lay",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27176]]],["present",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30696]]],["set",[10,10,[[39,2,2,0,2,[[946,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[965,1,1,2,3]]],[41,2,2,3,5,[[976,1,1,3,4],[981,1,1,4,5]]],[42,1,1,5,6,[[1004,1,1,5,6]]],[43,4,4,6,10,[[1021,1,1,6,7],[1022,1,1,7,8],[1023,1,1,8,9],[1039,1,1,9,10]]]],[23729,24041,24574,25072,25348,26384,27029,27086,27107,27734]]],["setteth",[1,1,[[39,1,1,0,1,[[932,1,1,0,1]]]],[23214]]],["stanched",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25289]]],["stand",[30,30,[[39,5,5,0,5,[[940,3,3,0,3],[948,1,1,3,4],[952,1,1,4,5]]],[40,4,4,5,9,[[959,3,3,5,8],[965,1,1,8,9]]],[41,4,4,9,13,[[980,1,1,9,10],[983,1,1,10,11],[985,1,1,11,12],[993,1,1,12,13]]],[43,4,4,13,17,[[1018,1,1,13,14],[1022,1,1,14,15],[1043,2,2,15,17]]],[44,1,1,17,18,[[1050,1,1,17,18]]],[45,1,1,18,19,[[1076,1,1,18,19]]],[46,1,1,19,20,[[1078,1,1,19,20]]],[48,2,2,20,22,[[1102,2,2,20,22]]],[50,1,1,22,23,[[1110,1,1,22,23]]],[59,1,1,23,24,[[1155,1,1,23,24]]],[65,6,6,24,30,[[1169,1,1,24,25],[1172,1,1,25,26],[1176,1,1,26,27],[1181,1,1,27,28],[1184,1,1,28,29],[1186,1,1,29,30]]]],[23514,23515,23536,23798,23972,24312,24313,24314,24539,25265,25423,25543,25862,26934,27079,27829,27839,28049,28719,28824,29348,29350,29554,30477,30766,30810,30866,30948,31008,31050]]],["standest",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]]],[27149,28229]]],["standeth",[8,8,[[42,2,2,0,2,[[997,1,1,0,1],[999,1,1,1,2]]],[45,2,2,2,4,[[1068,1,1,2,3],[1071,1,1,3,4]]],[54,1,1,4,5,[[1126,1,1,4,5]]],[57,1,1,5,6,[[1142,1,1,5,6]]],[58,1,1,6,7,[[1150,1,1,6,7]]],[65,1,1,7,8,[[1176,1,1,7,8]]]],[26070,26149,28524,28579,29846,30144,30363,30869]]],["standing",[21,21,[[39,4,4,0,4,[[934,1,1,0,1],[944,1,1,1,2],[948,2,2,2,4]]],[40,2,2,4,6,[[959,1,1,4,5],[969,1,1,5,6]]],[41,4,4,6,10,[[973,1,1,6,7],[977,1,1,7,8],[981,1,1,8,9],[990,1,1,9,10]]],[42,2,2,10,12,[[1004,1,1,10,11],[1016,1,1,11,12]]],[43,6,6,12,18,[[1021,1,1,12,13],[1022,2,2,13,15],[1024,2,2,15,17],[1041,1,1,17,18]]],[65,3,3,18,21,[[1173,1,1,18,19],[1177,1,1,19,20],[1185,1,1,20,21]]]],[23287,23700,23795,23798,24319,24731,24904,25109,25328,25701,26390,26881,27036,27082,27084,27171,27172,27790,30811,30876,31034]]],["still",[4,4,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[979,1,1,2,3]]],[43,1,1,3,4,[[1025,1,1,3,4]]]],[23824,24637,25209,27214]]],["stood",[47,47,[[39,5,5,0,5,[[930,1,1,0,1],[940,1,1,1,2],[941,1,1,2,3],[955,2,2,3,5]]],[40,1,1,5,6,[[967,1,1,5,6]]],[41,10,10,6,16,[[978,1,1,6,7],[979,1,1,7,8],[989,1,1,8,9],[990,2,2,9,11],[991,1,1,11,12],[995,3,3,12,15],[996,1,1,15,16]]],[42,12,12,16,28,[[997,1,1,16,17],[1002,1,1,17,18],[1003,1,1,18,19],[1007,1,1,19,20],[1014,3,3,20,23],[1015,1,1,23,24],[1016,3,3,24,27],[1017,1,1,27,28]]],[43,8,8,28,36,[[1020,1,1,28,29],[1026,1,1,29,30],[1027,1,1,30,31],[1028,1,1,31,32],[1029,1,1,32,33],[1034,1,1,33,34],[1038,1,1,34,35],[1041,1,1,35,36]]],[65,11,11,36,47,[[1171,1,1,36,37],[1173,2,2,37,39],[1174,2,2,39,41],[1177,2,2,41,43],[1178,1,1,43,44],[1179,1,1,44,45],[1180,1,1,45,46],[1184,1,1,46,47]]]],[23178,23535,23541,24140,24176,24645,25163,25233,25663,25699,25728,25739,25945,25970,25984,26027,26079,26279,26365,26579,26790,26801,26803,26850,26878,26886,26893,26902,27004,27223,27289,27320,27351,27545,27704,27789,30785,30819,30821,30829,30830,30873,30883,30895,30909,30927,31010]]],["up",[4,4,[[43,3,3,0,3,[[1019,1,1,0,1],[1023,1,1,1,2],[1042,1,1,2,3]]],[44,1,1,3,4,[[1059,1,1,3,4]]]],[26963,27114,27814,28284]]]]},{"k":"G2477","v":[["see",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29075]]]]},{"k":"G2478","v":[["*",[27,25,[[39,4,3,0,3,[[931,1,1,0,1],[940,2,1,1,2],[942,1,1,2,3]]],[40,3,2,3,5,[[957,1,1,3,4],[959,2,1,4,5]]],[41,4,4,5,9,[[975,1,1,5,6],[983,2,2,6,8],[987,1,1,8,9]]],[45,4,4,9,13,[[1062,2,2,9,11],[1065,1,1,11,12],[1071,1,1,12,13]]],[46,1,1,13,14,[[1087,1,1,13,14]]],[57,3,3,14,17,[[1137,1,1,14,15],[1138,1,1,15,16],[1143,1,1,16,17]]],[61,1,1,17,18,[[1160,1,1,17,18]]],[65,7,7,18,25,[[1171,1,1,18,19],[1176,1,1,19,20],[1184,3,3,20,23],[1185,2,2,23,25]]]],[23203,23518,23627,24222,24315,25041,25426,25427,25602,28388,28390,28443,28589,28981,30037,30062,30206,30564,30781,30862,31001,31003,31014,31023,31035]]],["boisterous",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23627]]],["man",[3,3,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]]],[23518,24315,25426]]],["man's",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]]],[23518,24315]]],["men",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31035]]],["mightier",[3,3,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[975,1,1,2,3]]]],[23203,24222,25041]]],["mighty",[6,6,[[41,1,1,0,1,[[987,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]],[65,4,4,2,6,[[1176,1,1,2,3],[1184,2,2,3,5],[1185,1,1,5,6]]]],[25602,28390,30862,31003,31014,31023]]],["powerful",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28981]]],["strong",[6,6,[[45,1,1,0,1,[[1065,1,1,0,1]]],[57,2,2,1,3,[[1137,1,1,1,2],[1138,1,1,2,3]]],[61,1,1,3,4,[[1160,1,1,3,4]]],[65,2,2,4,6,[[1171,1,1,4,5],[1184,1,1,5,6]]]],[28443,30037,30062,30564,30781,31001]]],["stronger",[3,3,[[41,1,1,0,1,[[983,1,1,0,1]]],[45,2,2,1,3,[[1062,1,1,1,2],[1071,1,1,2,3]]]],[25427,28388,28589]]],["valiant",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30206]]]]},{"k":"G2479","v":[["*",[11,11,[[40,2,2,0,2,[[968,2,2,0,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[48,2,2,3,5,[[1097,1,1,3,4],[1102,1,1,4,5]]],[52,1,1,5,6,[[1116,1,1,5,6]]],[59,1,1,6,7,[[1154,1,1,6,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]],[65,3,3,8,11,[[1171,1,1,8,9],[1173,1,1,9,10],[1184,1,1,10,11]]]],[24703,24706,25390,29225,29347,29658,30457,30511,30791,30822,30995]]],["+",[2,2,[[48,1,1,0,1,[[1097,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[29225,30995]]],["ability",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30457]]],["might",[2,2,[[48,1,1,0,1,[[1102,1,1,0,1]]],[65,1,1,1,2,[[1173,1,1,1,2]]]],[29347,30822]]],["power",[2,2,[[52,1,1,0,1,[[1116,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[29658,30511]]],["strength",[4,4,[[40,2,2,0,2,[[968,2,2,0,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[65,1,1,3,4,[[1171,1,1,3,4]]]],[24703,24706,25390,30791]]]]},{"k":"G2480","v":[["*",[29,29,[[39,4,4,0,4,[[933,1,1,0,1],[936,1,1,1,2],[937,1,1,2,3],[954,1,1,3,4]]],[40,4,4,4,8,[[958,1,1,4,5],[961,1,1,5,6],[965,1,1,6,7],[970,1,1,7,8]]],[41,8,8,8,16,[[978,1,1,8,9],[980,1,1,9,10],[985,1,1,10,11],[986,3,3,11,14],[988,1,1,14,15],[992,1,1,15,16]]],[42,1,1,16,17,[[1017,1,1,16,17]]],[43,6,6,17,23,[[1023,1,1,17,18],[1032,1,1,18,19],[1036,2,2,19,21],[1042,1,1,21,22],[1044,1,1,22,23]]],[47,2,2,23,25,[[1095,1,1,23,24],[1096,1,1,24,25]]],[49,1,1,25,26,[[1106,1,1,25,26]]],[57,1,1,26,27,[[1141,1,1,26,27]]],[58,1,1,27,28,[[1150,1,1,27,28]]],[65,1,1,28,29,[[1178,1,1,28,29]]]],[23247,23373,23391,24094,24277,24368,24556,24791,25194,25288,25542,25559,25582,25583,25623,25805,26904,27111,27452,27601,27605,27803,27871,29168,29203,29455,30122,30370,30899]]],["+",[7,7,[[41,3,3,0,3,[[986,2,2,0,2],[988,1,1,2,3]]],[42,1,1,3,4,[[1017,1,1,3,4]]],[43,2,2,4,6,[[1023,1,1,4,5],[1044,1,1,5,6]]],[57,1,1,6,7,[[1141,1,1,6,7]]]],[25582,25583,25623,26904,27111,27871,30122]]],["able",[2,2,[[41,1,1,0,1,[[985,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]]],[25542,27452]]],["availeth",[3,3,[[47,2,2,0,2,[[1095,1,1,0,1],[1096,1,1,1,2]]],[58,1,1,2,3,[[1150,1,1,2,3]]]],[29168,29203,30370]]],["could",[8,8,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[965,1,1,2,3]]],[41,4,4,3,7,[[978,1,1,3,4],[980,1,1,4,5],[986,1,1,5,6],[992,1,1,6,7]]],[43,1,1,7,8,[[1042,1,1,7,8]]]],[24094,24368,24556,25194,25288,25559,25805,27803]]],["couldest",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24791]]],["do",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29455]]],["good",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23247]]],["might",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23373]]],["prevailed",[3,3,[[43,2,2,0,2,[[1036,2,2,0,2]]],[65,1,1,2,3,[[1178,1,1,2,3]]]],[27601,27605,30899]]],["whole",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]]],[23391,24277]]]]},{"k":"G2481","v":[["be",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25792]]]]},{"k":"G2482","v":[["Italy",[4,4,[[43,3,3,0,3,[[1035,1,1,0,1],[1044,2,2,1,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]]],[27559,27856,27861,30265]]]]},{"k":"G2483","v":[["Italian",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27260]]]]},{"k":"G2484","v":[["Ituraea",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25026]]]]},{"k":"G2485","v":[["fishes",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]]],[23667,24507]]]]},{"k":"G2486","v":[["*",[20,18,[[39,5,5,0,5,[[935,1,1,0,1],[942,2,2,1,3],[943,1,1,3,4],[945,1,1,4,5]]],[40,4,3,5,8,[[962,4,3,5,8]]],[41,7,6,8,14,[[977,2,2,8,10],[981,2,2,10,12],[983,2,1,12,13],[996,1,1,13,14]]],[42,3,3,14,17,[[1017,3,3,14,17]]],[45,1,1,17,18,[[1076,1,1,17,18]]]],[23326,23614,23616,23669,23727,24445,24448,24450,25113,25116,25314,25317,25416,26033,26904,26906,26909,28757]]],["fish",[5,4,[[39,2,2,0,2,[[935,1,1,0,1],[945,1,1,1,2]]],[41,3,2,2,4,[[983,2,1,2,3],[996,1,1,3,4]]]],[23326,23727,25416,26033]]],["fishes",[15,14,[[39,3,3,0,3,[[942,2,2,0,2],[943,1,1,2,3]]],[40,4,3,3,6,[[962,4,3,3,6]]],[41,4,4,6,10,[[977,2,2,6,8],[981,2,2,8,10]]],[42,3,3,10,13,[[1017,3,3,10,13]]],[45,1,1,13,14,[[1076,1,1,13,14]]]],[23614,23616,23669,24445,24448,24450,25113,25116,25314,25317,26904,26906,26909,28757]]]]},{"k":"G2487","v":[["steps",[3,3,[[44,1,1,0,1,[[1049,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]]],[28034,29040,30420]]]]},{"k":"G2488","v":[["Joatham",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23153]]]]},{"k":"G2489","v":[["Joanna",[2,2,[[41,2,2,0,2,[[980,1,1,0,1],[996,1,1,1,2]]]],[25248,26001]]]]},{"k":"G2490","v":[["Joanna",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25052]]]]},{"k":"G2491","v":[["*",[133,130,[[39,26,26,0,26,[[931,4,4,0,4],[932,2,2,4,6],[937,1,1,6,7],[938,1,1,7,8],[939,7,7,8,15],[942,5,5,15,20],[944,1,1,20,21],[945,2,2,21,23],[949,3,3,23,26]]],[40,26,25,26,51,[[957,6,6,26,32],[958,2,1,32,33],[959,1,1,33,34],[961,1,1,34,35],[962,7,7,35,42],[964,1,1,42,43],[965,2,2,43,45],[966,2,2,45,47],[967,2,2,47,49],[969,1,1,49,50],[970,1,1,50,51]]],[41,31,30,51,81,[[973,3,3,51,54],[975,4,4,54,58],[977,2,2,58,60],[978,1,1,60,61],[979,9,8,61,69],[980,1,1,69,70],[981,6,6,70,76],[983,1,1,76,77],[988,1,1,77,78],[992,2,2,78,80],[994,1,1,80,81]]],[42,20,19,81,100,[[997,9,9,81,90],[999,5,5,90,95],[1000,1,1,95,96],[1001,2,2,96,98],[1006,3,2,98,100]]],[43,24,24,100,124,[[1018,3,3,100,103],[1020,4,4,103,107],[1021,3,3,107,110],[1025,1,1,110,111],[1027,1,1,111,112],[1028,1,1,112,113],[1029,3,3,113,116],[1030,4,4,116,120],[1032,1,1,120,121],[1035,1,1,121,122],[1036,2,2,122,124]]],[47,1,1,124,125,[[1092,1,1,124,125]]],[65,5,5,125,130,[[1167,3,3,125,128],[1187,1,1,128,129],[1188,1,1,129,130]]]],[23193,23196,23205,23206,23221,23230,23393,23419,23461,23463,23466,23470,23471,23472,23477,23599,23600,23601,23605,23607,23686,23701,23713,23851,23852,23858,24219,24221,24224,24229,24234,24244,24278,24305,24401,24421,24423,24424,24425,24427,24431,24432,24528,24540,24576,24623,24629,24670,24672,24720,24787,24906,24953,24956,25027,25040,25041,25045,25117,25140,25160,25213,25214,25215,25217,25219,25223,25224,25228,25296,25308,25310,25320,25329,25350,25355,25406,25636,25783,25785,25872,26050,26059,26063,26070,26072,26073,26076,26079,26084,26143,26144,26145,26146,26147,26157,26243,26246,26521,26522,26928,26936,26945,26997,26999,27000,27007,27028,27035,27041,27190,27296,27323,27339,27349,27362,27367,27375,27386,27387,27479,27582,27588,27589,29090,30698,30701,30706,31055,31088]]],["+",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23463]]],["John",[130,127,[[39,25,25,0,25,[[931,4,4,0,4],[932,2,2,4,6],[937,1,1,6,7],[938,1,1,7,8],[939,6,6,8,14],[942,5,5,14,19],[944,1,1,19,20],[945,2,2,20,22],[949,3,3,22,25]]],[40,26,25,25,50,[[957,6,6,25,31],[958,2,1,31,32],[959,1,1,32,33],[961,1,1,33,34],[962,7,7,34,41],[964,1,1,41,42],[965,2,2,42,44],[966,2,2,44,46],[967,2,2,46,48],[969,1,1,48,49],[970,1,1,49,50]]],[41,31,30,50,80,[[973,3,3,50,53],[975,4,4,53,57],[977,2,2,57,59],[978,1,1,59,60],[979,9,8,60,68],[980,1,1,68,69],[981,6,6,69,75],[983,1,1,75,76],[988,1,1,76,77],[992,2,2,77,79],[994,1,1,79,80]]],[42,19,18,80,98,[[997,9,9,80,89],[999,4,4,89,93],[1000,1,1,93,94],[1001,2,2,94,96],[1006,3,2,96,98]]],[43,23,23,98,121,[[1018,3,3,98,101],[1020,4,4,101,105],[1021,3,3,105,108],[1025,1,1,108,109],[1027,1,1,109,110],[1028,1,1,110,111],[1029,3,3,111,114],[1030,4,4,114,118],[1032,1,1,118,119],[1035,1,1,119,120],[1036,1,1,120,121]]],[47,1,1,121,122,[[1092,1,1,121,122]]],[65,5,5,122,127,[[1167,3,3,122,125],[1187,1,1,125,126],[1188,1,1,126,127]]]],[23193,23196,23205,23206,23221,23230,23393,23419,23461,23466,23470,23471,23472,23477,23599,23600,23601,23605,23607,23686,23701,23713,23851,23852,23858,24219,24221,24224,24229,24234,24244,24278,24305,24401,24421,24423,24424,24425,24427,24431,24432,24528,24540,24576,24623,24629,24670,24672,24720,24787,24906,24953,24956,25027,25040,25041,25045,25117,25140,25160,25213,25214,25215,25217,25219,25223,25224,25228,25296,25308,25310,25320,25329,25350,25355,25406,25636,25783,25785,25872,26050,26059,26063,26070,26072,26073,26076,26079,26084,26143,26144,26146,26147,26157,26243,26246,26521,26522,26928,26936,26945,26997,26999,27000,27007,27028,27035,27041,27190,27296,27323,27339,27349,27362,27367,27375,27386,27387,27479,27582,27589,29090,30698,30701,30706,31055,31088]]],["John's",[2,2,[[42,1,1,0,1,[[999,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[26145,27588]]]]},{"k":"G2492","v":[["Job",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30365]]]]},{"k":"G2493","v":[["Joel",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26965]]]]},{"k":"G2494","v":[["Jonan",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25055]]]]},{"k":"G2495","v":[["*",[13,11,[[39,5,4,0,4,[[940,4,3,0,3],[944,1,1,3,4]]],[41,4,3,4,7,[[983,4,3,4,7]]],[42,4,4,7,11,[[997,1,1,7,8],[1017,3,3,8,11]]]],[23528,23529,23530,23676,25434,25435,25437,26086,26913,26914,26915]]],["Jona",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26086]]],["Jonas",[12,10,[[39,5,4,0,4,[[940,4,3,0,3],[944,1,1,3,4]]],[41,4,3,4,7,[[983,4,3,4,7]]],[42,3,3,7,10,[[1017,3,3,7,10]]]],[23528,23529,23530,23676,25434,25435,25437,26913,26914,26915]]]]},{"k":"G2496","v":[["Joram",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23152]]]]},{"k":"G2497","v":[["Jorim",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25054]]]]},{"k":"G2498","v":[["Josaphat",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23152]]]]},{"k":"G2499","v":[["Jose",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25054]]]]},{"k":"G2500","v":[["Joses",[6,6,[[39,2,2,0,2,[[941,1,1,0,1],[955,1,1,1,2]]],[40,3,3,2,5,[[962,1,1,2,3],[971,2,2,3,5]]],[43,1,1,5,6,[[1021,1,1,5,6]]]],[23594,24185,24410,24866,24873,27058]]]]},{"k":"G2501","v":[["*",[35,34,[[39,9,9,0,9,[[929,5,5,0,5],[930,2,2,5,7],[955,2,2,7,9]]],[40,2,2,9,11,[[971,2,2,9,11]]],[41,11,11,11,22,[[973,1,1,11,12],[974,4,4,12,16],[975,4,4,16,20],[976,1,1,20,21],[995,1,1,21,22]]],[42,4,4,22,26,[[997,1,1,22,23],[1000,1,1,23,24],[1002,1,1,24,25],[1015,1,1,25,26]]],[43,6,5,26,31,[[1018,1,1,26,27],[1024,5,4,27,31]]],[57,2,2,31,33,[[1143,2,2,31,33]]],[65,1,1,33,34,[[1173,1,1,33,34]]]],[23160,23162,23163,23164,23168,23182,23188,24186,24188,24869,24871,24920,24977,24989,25006,25016,25048,25049,25051,25055,25085,25985,26089,26161,26299,26863,26946,27125,27129,27130,27134,30193,30194,30818]]],["Joseph",[33,33,[[39,9,9,0,9,[[929,5,5,0,5],[930,2,2,5,7],[955,2,2,7,9]]],[40,2,2,9,11,[[971,2,2,9,11]]],[41,10,10,11,21,[[973,1,1,11,12],[974,4,4,12,16],[975,4,4,16,20],[995,1,1,20,21]]],[42,4,4,21,25,[[997,1,1,21,22],[1000,1,1,22,23],[1002,1,1,23,24],[1015,1,1,24,25]]],[43,5,5,25,30,[[1018,1,1,25,26],[1024,4,4,26,30]]],[57,2,2,30,32,[[1143,2,2,30,32]]],[65,1,1,32,33,[[1173,1,1,32,33]]]],[23160,23162,23163,23164,23168,23182,23188,24186,24188,24869,24871,24920,24977,24989,25006,25016,25048,25049,25051,25055,25985,26089,26161,26299,26863,26946,27125,27129,27130,27134,30193,30194,30818]]],["Joseph's",[2,2,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[25085,27129]]]]},{"k":"G2502","v":[["Josias",[2,2,[[39,2,2,0,2,[[929,2,2,0,2]]]],[23154,23155]]]]},{"k":"G2503","v":[["jot",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23252]]]]},{"k":"G2504","v":[["*",[72,68,[[39,8,7,0,7,[[930,1,1,0,1],[938,2,2,1,3],[939,1,1,3,4],[944,1,1,4,5],[949,2,1,5,6],[954,1,1,6,7]]],[40,1,1,7,8,[[967,1,1,7,8]]],[41,6,6,8,14,[[973,1,1,8,9],[974,1,1,9,10],[983,1,1,10,11],[988,1,1,11,12],[992,1,1,12,13],[994,1,1,13,14]]],[42,22,22,14,36,[[997,3,3,14,17],[1001,1,1,17,18],[1002,2,2,18,20],[1003,1,1,20,21],[1004,1,1,21,22],[1006,4,4,22,26],[1008,1,1,26,27],[1010,1,1,27,28],[1011,3,3,28,31],[1013,3,3,31,34],[1016,2,2,34,36]]],[43,5,5,36,41,[[1025,1,1,36,37],[1027,1,1,37,38],[1039,2,2,38,40],[1043,1,1,40,41]]],[44,2,2,41,43,[[1048,1,1,41,42],[1056,1,1,42,43]]],[45,7,7,43,50,[[1063,1,1,43,44],[1068,2,2,44,46],[1071,1,1,46,47],[1072,1,1,47,48],[1076,1,1,48,49],[1077,1,1,49,50]]],[46,8,6,50,56,[[1083,1,1,50,51],[1088,6,4,51,55],[1089,1,1,55,56]]],[47,2,2,56,58,[[1094,1,1,56,57],[1096,1,1,57,58]]],[48,1,1,58,59,[[1097,1,1,58,59]]],[49,2,2,59,61,[[1104,2,2,59,61]]],[51,1,1,61,62,[[1113,1,1,61,62]]],[57,1,1,62,63,[[1140,1,1,62,63]]],[58,2,1,63,64,[[1147,2,1,63,64]]],[65,4,4,64,68,[[1168,2,2,64,66],[1169,2,2,66,68]]]],[23177,23449,23450,23487,23690,23850,24069,24669,24896,25021,25414,25629,25782,25893,26075,26077,26078,26227,26313,26314,26356,26407,26496,26508,26509,26519,26612,26688,26703,26704,26708,26777,26780,26785,26882,26888,27195,27285,27717,27723,27852,27998,28212,28395,28495,28527,28600,28601,28726,28780,28915,29005,29007,29010,29011,29042,29143,29202,29221,29410,29419,29595,30101,30311,30723,30744,30756,30767]]],["+",[14,14,[[39,2,2,0,2,[[938,1,1,0,1],[944,1,1,1,2]]],[40,1,1,2,3,[[967,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]],[42,4,4,4,8,[[1003,1,1,4,5],[1006,1,1,5,6],[1011,1,1,6,7],[1016,1,1,7,8]]],[43,1,1,8,9,[[1027,1,1,8,9]]],[45,3,3,9,12,[[1068,1,1,9,10],[1071,1,1,10,11],[1077,1,1,11,12]]],[46,2,2,12,14,[[1088,2,2,12,14]]]],[23449,23690,24669,25782,26356,26496,26708,26888,27285,28495,28600,28780,29007,29010]]],["I",[44,41,[[39,3,3,0,3,[[930,1,1,0,1],[939,1,1,1,2],[954,1,1,2,3]]],[41,4,4,3,7,[[974,1,1,3,4],[983,1,1,4,5],[988,1,1,5,6],[994,1,1,6,7]]],[42,17,17,7,24,[[997,3,3,7,10],[1001,1,1,10,11],[1002,2,2,11,13],[1004,1,1,13,14],[1006,3,3,14,17],[1008,1,1,17,18],[1010,1,1,18,19],[1011,2,2,19,21],[1013,2,2,21,23],[1016,1,1,23,24]]],[43,3,3,24,27,[[1039,2,2,24,26],[1043,1,1,26,27]]],[44,1,1,27,28,[[1056,1,1,27,28]]],[45,2,2,28,30,[[1063,1,1,28,29],[1068,1,1,29,30]]],[46,6,4,30,34,[[1083,1,1,30,31],[1088,4,2,31,33],[1089,1,1,33,34]]],[47,2,2,34,36,[[1094,1,1,34,35],[1096,1,1,35,36]]],[49,1,1,36,37,[[1104,1,1,36,37]]],[51,1,1,37,38,[[1113,1,1,37,38]]],[57,1,1,38,39,[[1140,1,1,38,39]]],[58,2,1,39,40,[[1147,2,1,39,40]]],[65,1,1,40,41,[[1168,1,1,40,41]]]],[23177,23487,24069,25021,25414,25629,25893,26075,26077,26078,26227,26313,26314,26407,26508,26509,26519,26612,26688,26703,26704,26780,26785,26882,27717,27723,27852,28212,28395,28527,28915,29005,29011,29042,29143,29202,29419,29595,30101,30311,30744]]],["also",[13,13,[[39,2,2,0,2,[[938,1,1,0,1],[949,1,1,1,2]]],[41,1,1,2,3,[[973,1,1,2,3]]],[42,1,1,3,4,[[1013,1,1,3,4]]],[43,1,1,4,5,[[1025,1,1,4,5]]],[44,1,1,5,6,[[1048,1,1,5,6]]],[45,2,2,6,8,[[1072,1,1,6,7],[1076,1,1,7,8]]],[48,1,1,8,9,[[1097,1,1,8,9]]],[49,1,1,9,10,[[1104,1,1,9,10]]],[65,3,3,10,13,[[1168,1,1,10,11],[1169,2,2,11,13]]]],[23450,23850,24896,26777,27195,27998,28601,28726,29221,29410,30723,30756,30767]]],["wise",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23850]]]]},{"k":"G2505","v":[["as",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24139]]]]},{"k":"G2506","v":[["*",[3,3,[[46,3,3,0,3,[[1087,2,2,0,2],[1090,1,1,2,3]]]],[28975,28979,29053]]],["destruction",[2,2,[[46,2,2,0,2,[[1087,1,1,0,1],[1090,1,1,1,2]]]],[28979,29053]]],["down",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28975]]]]},{"k":"G2507","v":[["*",[9,9,[[40,2,2,0,2,[[971,2,2,0,2]]],[41,3,3,2,5,[[973,1,1,2,3],[984,1,1,3,4],[995,1,1,4,5]]],[43,3,3,5,8,[[1030,2,2,5,7],[1036,1,1,7,8]]],[46,1,1,8,9,[[1087,1,1,8,9]]]],[24862,24872,24945,25477,25988,27381,27391,27612,28976]]],["+",[3,3,[[40,2,2,0,2,[[971,2,2,0,2]]],[41,1,1,2,3,[[995,1,1,2,3]]]],[24862,24872,25988]]],["destroyed",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1036,1,1,1,2]]]],[27381,27612]]],["down",[4,4,[[41,2,2,0,2,[[973,1,1,0,1],[984,1,1,1,2]]],[43,1,1,2,3,[[1030,1,1,2,3]]],[46,1,1,3,4,[[1087,1,1,3,4]]]],[24945,25477,27391,28976]]]]},{"k":"G2508","v":[["*",[2,2,[[42,1,1,0,1,[[1011,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[26701,30135]]],["purged",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30135]]],["purgeth",[1,1,[[42,1,1,0,1,[[1011,1,1,0,1]]]],[26701]]]]},{"k":"G2509","v":[["*",[13,13,[[44,2,2,0,2,[[1049,1,1,0,1],[1057,1,1,1,2]]],[45,1,1,2,3,[[1073,1,1,2,3]]],[46,4,4,3,7,[[1078,1,1,3,4],[1080,2,2,4,6],[1085,1,1,6,7]]],[51,4,4,7,11,[[1112,1,1,7,8],[1113,2,2,8,10],[1114,1,1,10,11]]],[57,2,2,11,13,[[1136,1,1,11,12],[1137,1,1,12,13]]]],[28028,28249,28646,28814,28854,28859,28943,29581,29596,29602,29608,30016,30034]]],["As",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29581]]],["as",[12,12,[[44,2,2,0,2,[[1049,1,1,0,1],[1057,1,1,1,2]]],[45,1,1,2,3,[[1073,1,1,2,3]]],[46,4,4,3,7,[[1078,1,1,3,4],[1080,2,2,4,6],[1085,1,1,6,7]]],[51,3,3,7,10,[[1113,2,2,7,9],[1114,1,1,9,10]]],[57,2,2,10,12,[[1136,1,1,10,11],[1137,1,1,11,12]]]],[28028,28249,28646,28814,28854,28859,28943,29596,29602,29608,30016,30034]]]]},{"k":"G2510","v":[["fastened",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27902]]]]},{"k":"G2511","v":[["*",[30,29,[[39,7,6,0,6,[[936,3,2,0,2],[938,1,1,2,3],[939,1,1,3,4],[951,2,2,4,6]]],[40,4,4,6,10,[[957,3,3,6,9],[963,1,1,9,10]]],[41,7,7,10,17,[[976,1,1,10,11],[977,2,2,11,13],[979,1,1,13,14],[983,1,1,14,15],[989,2,2,15,17]]],[43,3,3,17,20,[[1027,1,1,17,18],[1028,1,1,18,19],[1032,1,1,19,20]]],[46,1,1,20,21,[[1084,1,1,20,21]]],[48,1,1,21,22,[[1101,1,1,21,22]]],[55,1,1,22,23,[[1130,1,1,22,23]]],[57,3,3,23,26,[[1141,3,3,23,26]]],[58,1,1,26,27,[[1149,1,1,26,27]]],[61,2,2,27,29,[[1159,2,2,27,29]]]],[23347,23348,23425,23464,23943,23944,24255,24256,24257,24482,25090,25119,25120,25217,25444,25665,25668,27274,27316,27451,28917,29330,29922,30119,30127,30128,30345,30547,30549]]],["+",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[977,1,1,2,3]]]],[23347,24255,25119]]],["Cleanse",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30345]]],["clean",[5,5,[[39,2,2,0,2,[[936,1,1,0,1],[951,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,2,2,3,5,[[977,1,1,3,4],[983,1,1,4,5]]]],[23348,23943,24256,25120,25444]]],["cleanse",[5,5,[[39,2,2,0,2,[[938,1,1,0,1],[951,1,1,1,2]]],[46,1,1,2,3,[[1084,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]],[61,1,1,4,5,[[1159,1,1,4,5]]]],[23425,23944,28917,29330,30549]]],["cleansed",[9,9,[[39,2,2,0,2,[[936,1,1,0,1],[939,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,4,4,3,7,[[976,1,1,3,4],[979,1,1,4,5],[989,2,2,5,7]]],[43,2,2,7,9,[[1027,1,1,7,8],[1028,1,1,8,9]]]],[23348,23464,24257,25090,25217,25665,25668,27274,27316]]],["cleanseth",[1,1,[[61,1,1,0,1,[[1159,1,1,0,1]]]],[30547]]],["purge",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30119]]],["purged",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30127]]],["purging",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24482]]],["purified",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30128]]],["purify",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29922]]],["purifying",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27451]]]]},{"k":"G2512","v":[["*",[7,7,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[977,1,1,2,3]]],[42,2,2,3,5,[[998,1,1,3,4],[999,1,1,4,5]]],[57,1,1,5,6,[[1133,1,1,5,6]]],[60,1,1,6,7,[[1156,1,1,6,7]]]],[24259,24995,25121,26101,26145,29966,30488]]],["+",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29966]]],["cleansing",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]]],[24259,25121]]],["purged",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30488]]],["purification",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24995]]],["purifying",[2,2,[[42,2,2,0,2,[[998,1,1,0,1],[999,1,1,1,2]]]],[26101,26145]]]]},{"k":"G2513","v":[["*",[28,24,[[39,3,3,0,3,[[933,1,1,0,1],[951,1,1,1,2],[955,1,1,2,3]]],[41,1,1,3,4,[[983,1,1,3,4]]],[42,4,3,4,7,[[1009,3,2,4,6],[1011,1,1,6,7]]],[43,2,2,7,9,[[1035,1,1,7,8],[1037,1,1,8,9]]],[44,1,1,9,10,[[1059,1,1,9,10]]],[53,2,2,10,12,[[1119,1,1,10,11],[1121,1,1,11,12]]],[54,2,2,12,14,[[1125,1,1,12,13],[1126,1,1,13,14]]],[55,3,1,14,15,[[1129,3,1,14,15]]],[57,1,1,15,16,[[1142,1,1,15,16]]],[58,1,1,16,17,[[1146,1,1,16,17]]],[59,1,1,17,18,[[1151,1,1,17,18]]],[65,7,6,18,24,[[1181,1,1,18,19],[1185,2,2,19,21],[1187,3,2,21,23],[1188,1,1,23,24]]]],[23242,23944,24188,25446,26640,26641,26702,27563,27652,28300,29701,29740,29812,29849,29907,30155,30293,30396,30952,31025,31031,31071,31074,31081]]],["Pure",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30293]]],["clean",[10,9,[[39,2,2,0,2,[[951,1,1,0,1],[955,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[42,4,3,3,6,[[1009,3,2,3,5],[1011,1,1,5,6]]],[43,1,1,6,7,[[1035,1,1,6,7]]],[65,2,2,7,9,[[1185,2,2,7,9]]]],[23944,24188,25446,26640,26641,26702,27563,31025,31031]]],["clear",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31071]]],["pure",[16,14,[[39,1,1,0,1,[[933,1,1,0,1]]],[43,1,1,1,2,[[1037,1,1,1,2]]],[44,1,1,2,3,[[1059,1,1,2,3]]],[53,2,2,3,5,[[1119,1,1,3,4],[1121,1,1,4,5]]],[54,2,2,5,7,[[1125,1,1,5,6],[1126,1,1,6,7]]],[55,3,1,7,8,[[1129,3,1,7,8]]],[57,1,1,8,9,[[1142,1,1,8,9]]],[59,1,1,9,10,[[1151,1,1,9,10]]],[65,4,4,10,14,[[1181,1,1,10,11],[1187,2,2,11,13],[1188,1,1,13,14]]]],[23242,27652,28300,29701,29740,29812,29849,29907,30155,30396,30952,31071,31074,31081]]]]},{"k":"G2514","v":[["purifying",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30118]]]]},{"k":"G2515","v":[["*",[3,3,[[39,2,2,0,2,[[949,1,1,0,1],[951,1,1,1,2]]],[40,1,1,2,3,[[967,1,1,2,3]]]],[23838,23920,24655]]],["seat",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23920]]],["seats",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]]],[23838,24655]]]]},{"k":"G2516","v":[["*",[6,6,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[42,3,3,2,5,[[1000,1,1,2,3],[1007,1,1,3,4],[1016,1,1,4,5]]],[43,1,1,5,6,[[1023,1,1,5,6]]]],[24109,25019,26162,26543,26879,27116]]],["sat",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,2,2,1,3,[[1000,1,1,1,2],[1007,1,1,2,3]]],[43,1,1,3,4,[[1023,1,1,3,4]]]],[24109,26162,26543,27116]]],["sitting",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[42,1,1,1,2,[[1016,1,1,1,2]]]],[25019,26879]]]]},{"k":"G2517","v":[["*",[5,5,[[41,2,2,0,2,[[973,1,1,0,1],[980,1,1,1,2]]],[43,3,3,2,5,[[1020,1,1,2,3],[1028,1,1,3,4],[1035,1,1,4,5]]]],[24896,25246,27020,27311,27580]]],["+",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25246]]],["after",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27020]]],["order",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,2,2,1,3,[[1028,1,1,1,2],[1035,1,1,2,3]]]],[24896,27311,27580]]]]},{"k":"G2518","v":[["*",[22,20,[[39,7,7,0,7,[[936,1,1,0,1],[937,1,1,1,2],[941,1,1,2,3],[953,1,1,3,4],[954,3,3,4,7]]],[40,8,7,7,14,[[960,2,2,7,9],[961,1,1,9,10],[969,1,1,10,11],[970,4,3,11,14]]],[41,2,2,14,16,[[980,1,1,14,15],[994,1,1,15,16]]],[48,1,1,16,17,[[1101,1,1,16,17]]],[51,4,3,17,20,[[1115,4,3,17,20]]]],[23369,23403,23564,24013,24094,24097,24099,24350,24361,24403,24753,24791,24794,24795,25297,25910,29318,29627,29628,29631]]],["asleep",[5,5,[[39,3,3,0,3,[[936,1,1,0,1],[954,2,2,1,3]]],[40,2,2,3,5,[[960,1,1,3,4],[970,1,1,4,5]]]],[23369,24094,24097,24361,24794]]],["on",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24099,24795]]],["sleep",[6,5,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[51,4,3,2,5,[[1115,4,3,2,5]]]],[24350,25910,29627,29628,29631]]],["sleepest",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]]],[24791,29318]]],["sleepeth",[3,3,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23403,24403,25297]]],["sleeping",[2,2,[[40,2,2,0,2,[[969,1,1,0,1],[970,1,1,1,2]]]],[24753,24791]]],["slept",[2,2,[[39,2,2,0,2,[[941,1,1,0,1],[953,1,1,1,2]]]],[23564,24013]]]]},{"k":"G2519","v":[["*",[3,2,[[39,3,2,0,2,[[951,3,2,0,2]]]],[23926,23928]]],["Master",[2,2,[[39,2,2,0,2,[[951,2,2,0,2]]]],[23926,23928]]],["masters",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23928]]]]},{"k":"G2520","v":[["+",[2,2,[[43,1,1,0,1,[[1039,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[27726,27958]]]]},{"k":"G2521","v":[["*",[89,87,[[39,18,17,0,17,[[932,2,1,0,1],[937,1,1,1,2],[939,1,1,2,3],[941,2,2,3,5],[943,1,1,5,6],[948,1,1,6,7],[950,1,1,7,8],[951,1,1,8,9],[952,1,1,9,10],[954,3,3,10,13],[955,3,3,13,16],[956,1,1,16,17]]],[40,11,11,17,28,[[958,2,2,17,19],[959,2,2,19,21],[960,1,1,21,22],[961,1,1,22,23],[966,1,1,23,24],[968,1,1,24,25],[969,1,1,25,26],[970,1,1,26,27],[972,1,1,27,28]]],[41,12,12,28,40,[[973,1,1,28,29],[977,2,2,29,31],[979,1,1,31,32],[980,1,1,32,33],[982,1,1,33,34],[990,1,1,34,35],[992,1,1,35,36],[993,1,1,36,37],[994,3,3,37,40]]],[42,4,4,40,44,[[998,1,1,40,41],[1002,1,1,41,42],[1005,1,1,42,43],[1008,1,1,43,44]]],[43,7,7,44,51,[[1019,2,2,44,46],[1020,1,1,46,47],[1025,1,1,47,48],[1031,1,1,48,49],[1037,1,1,49,50],[1040,1,1,50,51]]],[45,1,1,51,52,[[1075,1,1,51,52]]],[50,1,1,52,53,[[1109,1,1,52,53]]],[57,1,1,53,54,[[1133,1,1,53,54]]],[58,2,1,54,55,[[1147,2,1,54,55]]],[65,32,32,55,87,[[1170,5,5,55,60],[1171,3,3,60,63],[1172,5,5,63,68],[1173,2,2,68,70],[1175,1,1,70,71],[1177,1,1,71,72],[1180,3,3,72,75],[1183,4,4,75,79],[1184,1,1,79,80],[1185,5,5,80,85],[1186,1,1,85,86],[1187,1,1,86,87]]]],[23225,23388,23475,23540,23541,23662,23822,23916,23940,23960,24112,24118,24123,24148,24165,24190,24197,24266,24274,24320,24322,24324,24379,24634,24709,24720,24816,24878,24972,25124,25134,25227,25280,25376,25723,25821,25861,25919,25920,25933,26109,26260,26448,26595,26951,26983,27006,27204,27422,27635,27737,28708,29518,29976,30296,30770,30771,30772,30777,30778,30780,30786,30792,30795,30797,30798,30801,30809,30820,30825,30857,30888,30940,30941,30942,30976,30978,30984,30990,31000,31021,31028,31035,31036,31038,31049,31058]]],["+",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29518]]],["Sit",[6,6,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[43,1,1,3,4,[[1019,1,1,3,4]]],[57,1,1,4,5,[[1133,1,1,4,5]]],[58,1,1,5,6,[[1147,1,1,5,6]]]],[23916,24709,25821,26983,29976,30296]]],["by",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[25124,28708]]],["down",[4,4,[[39,3,3,0,3,[[943,1,1,0,1],[955,2,2,1,3]]],[41,1,1,3,4,[[994,1,1,3,4]]]],[23662,24148,24165,25919]]],["dwell",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25861]]],["sat",[41,40,[[39,8,7,0,7,[[932,2,1,0,1],[941,2,2,1,3],[952,1,1,3,4],[954,2,2,4,6],[956,1,1,6,7]]],[40,5,5,7,12,[[959,2,2,7,9],[960,1,1,9,10],[966,1,1,10,11],[969,1,1,11,12]]],[41,2,2,12,14,[[990,1,1,12,13],[994,1,1,13,14]]],[42,2,2,14,16,[[1002,1,1,14,15],[1005,1,1,15,16]]],[43,3,3,16,19,[[1020,1,1,16,17],[1031,1,1,17,18],[1037,1,1,18,19]]],[65,21,21,19,40,[[1170,4,4,19,23],[1171,2,2,23,25],[1172,4,4,25,29],[1175,1,1,29,30],[1177,1,1,30,31],[1180,3,3,31,34],[1185,4,4,34,38],[1186,1,1,38,39],[1187,1,1,39,40]]]],[23225,23540,23541,23960,24112,24123,24197,24320,24322,24324,24634,24720,25723,25920,26260,26448,27006,27422,27635,30770,30771,30777,30778,30780,30786,30795,30797,30798,30801,30857,30888,30940,30941,30942,31021,31028,31036,31038,31049,31058]]],["sit",[6,6,[[41,2,2,0,2,[[973,1,1,0,1],[994,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]],[65,3,3,3,6,[[1183,1,1,3,4],[1184,1,1,4,5],[1185,1,1,5,6]]]],[24972,25933,30296,30978,31000,31035]]],["sittest",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27737]]],["sitteth",[8,8,[[39,1,1,0,1,[[951,1,1,0,1]]],[65,7,7,1,8,[[1171,1,1,1,2],[1172,1,1,2,3],[1173,2,2,3,5],[1183,3,3,5,8]]]],[23940,30792,30809,30820,30825,30976,30984,30990]]],["sitting",[19,19,[[39,5,5,0,5,[[937,1,1,0,1],[939,1,1,1,2],[948,1,1,2,3],[954,1,1,3,4],[955,1,1,4,5]]],[40,5,5,5,10,[[958,2,2,5,7],[961,1,1,7,8],[970,1,1,8,9],[972,1,1,9,10]]],[41,4,4,10,14,[[977,1,1,10,11],[979,1,1,11,12],[980,1,1,12,13],[982,1,1,13,14]]],[42,2,2,14,16,[[998,1,1,14,15],[1008,1,1,15,16]]],[43,2,2,16,18,[[1019,1,1,16,17],[1025,1,1,17,18]]],[65,1,1,18,19,[[1170,1,1,18,19]]]],[23388,23475,23822,24118,24190,24266,24274,24379,24816,24878,25134,25227,25280,25376,26109,26595,26951,27204,30772]]]]},{"k":"G2522","v":[["daily",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27102]]]]},{"k":"G2523","v":[["*",[48,46,[[39,9,8,0,8,[[933,1,1,0,1],[941,1,1,1,2],[947,2,1,2,3],[948,2,2,3,5],[951,1,1,5,6],[953,1,1,6,7],[954,1,1,7,8]]],[40,8,8,8,16,[[965,1,1,8,9],[966,2,2,9,11],[967,2,2,11,13],[968,1,1,13,14],[970,1,1,14,15],[972,1,1,15,16]]],[41,8,8,16,24,[[976,1,1,16,17],[977,1,1,17,18],[986,2,2,18,20],[988,1,1,20,21],[991,1,1,21,22],[994,1,1,22,23],[996,1,1,23,24]]],[42,3,3,24,27,[[1004,1,1,24,25],[1008,1,1,25,26],[1015,1,1,26,27]]],[43,9,9,27,36,[[1019,2,2,27,29],[1025,1,1,29,30],[1029,1,1,30,31],[1030,1,1,31,32],[1033,1,1,32,33],[1035,1,1,33,34],[1042,2,2,34,36]]],[45,2,2,36,38,[[1067,1,1,36,37],[1071,1,1,37,38]]],[48,1,1,38,39,[[1097,1,1,38,39]]],[52,1,1,39,40,[[1117,1,1,39,40]]],[57,4,4,40,44,[[1133,1,1,40,41],[1140,1,1,41,42],[1142,1,1,42,43],[1144,1,1,43,44]]],[65,3,2,44,46,[[1169,2,1,44,45],[1186,1,1,45,46]]]],[23235,23587,23790,23813,23815,23920,24039,24090,24573,24625,24628,24642,24647,24714,24786,24892,25083,25110,25581,25584,25626,25761,25894,26040,26383,26594,26838,26952,26979,27207,27358,27376,27496,27568,27802,27813,28471,28574,29226,29665,29966,30093,30145,30214,30767,31042]]],["+",[2,2,[[41,2,2,0,2,[[986,2,2,0,2]]]],[25581,25584]]],["Sit",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24090,24786]]],["continued",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27568]]],["down",[14,14,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,3,3,2,5,[[976,1,1,2,3],[977,1,1,3,4],[988,1,1,4,5]]],[42,2,2,5,7,[[1004,1,1,5,6],[1015,1,1,6,7]]],[43,2,2,7,9,[[1030,1,1,7,8],[1033,1,1,8,9]]],[45,1,1,9,10,[[1071,1,1,9,10]]],[57,3,3,10,13,[[1133,1,1,10,11],[1142,1,1,11,12],[1144,1,1,12,13]]],[65,1,1,13,14,[[1169,1,1,13,14]]]],[23587,24573,25083,25110,25626,26383,26838,27376,27496,28574,29966,30145,30214,30767]]],["sat",[10,10,[[40,4,4,0,4,[[967,2,2,0,2],[968,1,1,2,3],[972,1,1,3,4]]],[41,1,1,4,5,[[991,1,1,4,5]]],[42,1,1,5,6,[[1008,1,1,5,6]]],[43,3,3,6,9,[[1019,1,1,6,7],[1029,1,1,7,8],[1042,1,1,8,9]]],[65,1,1,9,10,[[1186,1,1,9,10]]]],[24642,24647,24714,24892,25761,26594,26952,27358,27813,31042]]],["set",[4,4,[[39,1,1,0,1,[[933,1,1,0,1]]],[45,1,1,1,2,[[1067,1,1,1,2]]],[48,1,1,2,3,[[1097,1,1,2,3]]],[57,1,1,3,4,[[1140,1,1,3,4]]]],[23235,28471,29226,30093]]],["sit",[12,11,[[39,6,5,0,5,[[947,2,1,0,1],[948,2,2,1,3],[951,1,1,3,4],[953,1,1,4,5]]],[40,2,2,5,7,[[966,2,2,5,7]]],[41,1,1,7,8,[[994,1,1,7,8]]],[43,2,2,8,10,[[1019,1,1,8,9],[1025,1,1,9,10]]],[65,1,1,10,11,[[1169,1,1,10,11]]]],[23790,23813,23815,23920,24039,24625,24628,25894,26979,27207,30767]]],["sitteth",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29665]]],["sitting",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27802]]],["tarry",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26040]]]]},{"k":"G2524","v":[["*",[4,4,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,3,3,1,4,[[1026,1,1,1,2],[1027,1,1,2,3],[1028,1,1,3,4]]]],[25126,27241,27270,27312]]],["+",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[25126,27241]]],["down",[2,2,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]]],[27270,27312]]]]},{"k":"G2525","v":[["*",[22,21,[[39,4,4,0,4,[[952,2,2,0,2],[953,2,2,2,4]]],[41,3,3,4,7,[[984,3,3,4,7]]],[43,5,5,7,12,[[1023,1,1,7,8],[1024,3,3,8,11],[1034,1,1,11,12]]],[44,2,1,12,13,[[1050,2,1,12,13]]],[55,1,1,13,14,[[1129,1,1,13,14]]],[57,4,4,14,18,[[1134,1,1,14,15],[1137,1,1,15,16],[1139,1,1,16,17],[1140,1,1,17,18]]],[58,2,2,18,20,[[1148,1,1,18,19],[1149,1,1,19,20]]],[60,1,1,20,21,[[1156,1,1,20,21]]]],[24002,24004,24029,24031,25473,25501,25503,27104,27126,27143,27151,27538,28066,29897,29984,30031,30092,30095,30325,30341,30487]]],["+",[4,4,[[39,3,3,0,3,[[952,1,1,0,1],[953,2,2,1,3]]],[41,1,1,3,4,[[984,1,1,3,4]]]],[24004,24029,24031,25503]]],["appoint",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27104]]],["conducted",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27538]]],["is",[2,2,[[58,2,2,0,2,[[1148,1,1,0,1],[1149,1,1,1,2]]]],[30325,30341]]],["made",[6,5,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,3,3,1,4,[[1024,3,3,1,4]]],[44,2,1,4,5,[[1050,2,1,4,5]]]],[25473,27126,27143,27151,28066]]],["make",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30487]]],["maketh",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30092]]],["ordain",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29897]]],["ordained",[2,2,[[57,2,2,0,2,[[1137,1,1,0,1],[1140,1,1,1,2]]]],[30031,30095]]],["ruler",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[24002,25501]]],["set",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29984]]]]},{"k":"G2526","v":[["*",[4,3,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,2,1,1,2,[[1085,2,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[28142,28944,30459]]],["as",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[28142,30459]]],["that",[2,1,[[46,2,1,0,1,[[1085,2,1,0,1]]]],[28944]]]]},{"k":"G2527","v":[["all",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27040]]]]},{"k":"G2528","v":[["armed",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25426]]]]},{"k":"G2529","v":[["seen",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27950]]]]},{"k":"G2530","v":[["*",[5,5,[[41,2,2,0,2,[[973,1,1,0,1],[991,1,1,1,2]]],[43,3,3,2,5,[[1019,2,2,2,4],[1021,1,1,4,5]]]],[24900,25740,26973,26994,27057]]],["+",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27057]]],["as",[2,2,[[41,1,1,0,1,[[991,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[25740,26994]]],["because",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26973]]],["that",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24900]]]]},{"k":"G2531","v":[["*",[180,178,[[39,3,3,0,3,[[949,1,1,0,1],[954,1,1,1,2],[956,1,1,2,3]]],[40,7,7,3,10,[[960,1,1,3,4],[965,1,1,4,5],[967,1,1,5,6],[970,2,2,6,8],[971,1,1,8,9],[972,1,1,9,10]]],[41,16,16,10,26,[[973,3,3,10,13],[974,2,2,13,15],[977,1,1,15,16],[978,2,2,16,18],[983,2,2,18,20],[989,1,1,20,21],[991,1,1,21,22],[994,2,2,22,24],[996,2,2,24,26]]],[42,32,32,26,58,[[997,1,1,26,27],[999,1,1,27,28],[1001,2,2,28,30],[1002,3,3,30,33],[1003,1,1,33,34],[1004,1,1,34,35],[1006,2,2,35,37],[1008,2,2,37,39],[1009,3,3,39,42],[1010,2,2,42,44],[1011,4,4,44,48],[1013,8,8,48,56],[1015,1,1,56,57],[1016,1,1,57,58]]],[43,11,11,58,69,[[1019,2,2,58,60],[1024,3,3,60,63],[1027,1,1,63,64],[1028,1,1,64,65],[1032,3,3,65,68],[1039,1,1,68,69]]],[44,20,19,69,88,[[1046,3,3,69,72],[1047,1,1,72,73],[1048,4,3,73,76],[1049,1,1,76,77],[1053,1,1,77,78],[1054,3,3,78,81],[1055,1,1,81,82],[1056,2,2,82,84],[1060,4,4,84,88]]],[45,20,20,88,108,[[1062,2,2,88,90],[1063,1,1,90,91],[1065,1,1,91,92],[1066,1,1,92,93],[1069,1,1,93,94],[1071,6,6,94,100],[1072,2,2,100,102],[1073,2,2,102,104],[1074,1,1,104,105],[1075,1,1,105,106],[1076,2,2,106,108]]],[46,12,12,108,120,[[1078,2,2,108,110],[1081,1,1,110,111],[1083,1,1,111,112],[1085,3,3,112,115],[1086,3,3,115,118],[1087,1,1,118,119],[1088,1,1,119,120]]],[47,3,3,120,123,[[1092,1,1,120,121],[1093,1,1,121,122],[1095,1,1,122,123]]],[48,10,10,123,133,[[1097,1,1,123,124],[1099,1,1,124,125],[1100,4,4,125,129],[1101,4,4,129,133]]],[49,3,3,133,136,[[1103,1,1,133,134],[1104,1,1,134,135],[1105,1,1,135,136]]],[50,5,4,136,140,[[1107,3,2,136,138],[1108,1,1,138,139],[1109,1,1,139,140]]],[51,12,12,140,152,[[1111,1,1,140,141],[1112,5,5,141,146],[1113,1,1,146,147],[1114,4,4,147,151],[1115,1,1,151,152]]],[52,2,2,152,154,[[1116,1,1,152,153],[1118,1,1,153,154]]],[53,1,1,154,155,[[1119,1,1,154,155]]],[57,8,8,155,163,[[1135,1,1,155,156],[1136,2,2,156,158],[1137,2,2,158,160],[1140,1,1,160,161],[1142,1,1,161,162],[1143,1,1,162,163]]],[59,1,1,163,164,[[1154,1,1,163,164]]],[60,1,1,164,165,[[1156,1,1,164,165]]],[61,9,9,165,174,[[1160,3,3,165,168],[1161,5,5,168,173],[1162,1,1,173,174]]],[62,2,2,174,176,[[1164,2,2,174,176]]],[63,2,2,176,178,[[1165,2,2,176,178]]]],[23832,24078,24201,24356,24551,24646,24770,24775,24834,24880,24895,24948,24963,24993,24996,25121,25177,25182,25406,25435,25677,25763,25877,25893,26015,26030,26067,26134,26233,26240,26288,26314,26315,26366,26409,26496,26507,26594,26630,26645,26663,26664,26695,26699,26703,26708,26709,26711,26761,26770,26773,26775,26777,26780,26781,26782,26865,26888,26953,26971,27133,27158,27164,27306,27336,27450,27456,27457,27707,27943,27947,27958,27986,27995,27999,28001,28039,28152,28168,28184,28188,28203,28217,28235,28306,28310,28312,28324,28369,28394,28403,28450,28461,28529,28573,28574,28575,28576,28577,28600,28601,28602,28645,28652,28677,28712,28756,28767,28805,28814,28860,28914,28937,28938,28947,28959,28963,28965,28978,29001,29088,29108,29183,29210,29254,29276,29289,29293,29304,29306,29307,29329,29333,29368,29403,29438,29471,29472,29501,29530,29565,29572,29574,29575,29583,29584,29594,29604,29609,29614,29616,29632,29652,29679,29699,30002,30017,30021,30033,30036,30097,30158,30184,30456,30493,30556,30568,30577,30581,30582,30586,30591,30602,30620,30649,30651,30660,30661]]],["+",[3,3,[[43,1,1,0,1,[[1027,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]]],[27306,28600,29289]]],["As",[21,21,[[41,3,3,0,3,[[973,2,2,0,2],[974,1,1,2,3]]],[42,6,6,3,9,[[1002,1,1,3,4],[1006,1,1,4,5],[1011,2,2,5,7],[1013,2,2,7,9]]],[44,5,5,9,14,[[1048,1,1,9,10],[1049,1,1,10,11],[1053,1,1,11,12],[1054,2,2,12,14]]],[46,3,3,14,17,[[1078,1,1,14,15],[1085,1,1,15,16],[1086,1,1,16,17]]],[50,1,1,17,18,[[1107,1,1,17,18]]],[53,1,1,18,19,[[1119,1,1,18,19]]],[57,1,1,19,20,[[1137,1,1,19,20]]],[59,1,1,20,21,[[1154,1,1,20,21]]]],[24948,24963,24996,26314,26496,26703,26708,26761,26777,28001,28039,28152,28168,28188,28814,28947,28965,29472,29699,30036,30456]]],["as",[152,150,[[39,3,3,0,3,[[949,1,1,0,1],[954,1,1,1,2],[956,1,1,2,3]]],[40,7,7,3,10,[[960,1,1,3,4],[965,1,1,4,5],[967,1,1,5,6],[970,2,2,6,8],[971,1,1,8,9],[972,1,1,9,10]]],[41,13,13,10,23,[[973,1,1,10,11],[974,1,1,11,12],[977,1,1,12,13],[978,2,2,13,15],[983,2,2,15,17],[989,1,1,17,18],[991,1,1,18,19],[994,2,2,19,21],[996,2,2,21,23]]],[42,26,26,23,49,[[997,1,1,23,24],[999,1,1,24,25],[1001,2,2,25,27],[1002,2,2,27,29],[1003,1,1,29,30],[1004,1,1,30,31],[1006,1,1,31,32],[1008,2,2,32,34],[1009,3,3,34,37],[1010,2,2,37,39],[1011,2,2,39,41],[1013,6,6,41,47],[1015,1,1,47,48],[1016,1,1,48,49]]],[43,7,7,49,56,[[1019,2,2,49,51],[1024,2,2,51,53],[1032,2,2,53,55],[1039,1,1,55,56]]],[44,14,13,56,69,[[1046,3,3,56,59],[1047,1,1,59,60],[1048,3,2,60,62],[1054,1,1,62,63],[1056,2,2,63,65],[1060,4,4,65,69]]],[45,19,19,69,88,[[1062,2,2,69,71],[1063,1,1,71,72],[1065,1,1,72,73],[1066,1,1,73,74],[1069,1,1,74,75],[1071,5,5,75,80],[1072,2,2,80,82],[1073,2,2,82,84],[1074,1,1,84,85],[1075,1,1,85,86],[1076,2,2,86,88]]],[46,9,9,88,97,[[1078,1,1,88,89],[1081,1,1,89,90],[1083,1,1,90,91],[1085,2,2,91,93],[1086,2,2,93,95],[1087,1,1,95,96],[1088,1,1,96,97]]],[47,3,3,97,100,[[1092,1,1,97,98],[1093,1,1,98,99],[1095,1,1,99,100]]],[48,9,9,100,109,[[1097,1,1,100,101],[1099,1,1,101,102],[1100,3,3,102,105],[1101,4,4,105,109]]],[49,3,3,109,112,[[1103,1,1,109,110],[1104,1,1,110,111],[1105,1,1,111,112]]],[50,4,3,112,115,[[1107,2,1,112,113],[1108,1,1,113,114],[1109,1,1,114,115]]],[51,12,12,115,127,[[1111,1,1,115,116],[1112,5,5,116,121],[1113,1,1,121,122],[1114,4,4,122,126],[1115,1,1,126,127]]],[52,2,2,127,129,[[1116,1,1,127,128],[1118,1,1,128,129]]],[57,7,7,129,136,[[1135,1,1,129,130],[1136,2,2,130,132],[1137,1,1,132,133],[1140,1,1,133,134],[1142,1,1,134,135],[1143,1,1,135,136]]],[60,1,1,136,137,[[1156,1,1,136,137]]],[61,9,9,137,146,[[1160,3,3,137,140],[1161,5,5,140,145],[1162,1,1,145,146]]],[62,2,2,146,148,[[1164,2,2,146,148]]],[63,2,2,148,150,[[1165,2,2,148,150]]]],[23832,24078,24201,24356,24551,24646,24770,24775,24834,24880,24895,24993,25121,25177,25182,25406,25435,25677,25763,25877,25893,26015,26030,26067,26134,26233,26240,26288,26315,26366,26409,26507,26594,26630,26645,26663,26664,26695,26699,26709,26711,26770,26773,26775,26780,26781,26782,26865,26888,26953,26971,27158,27164,27450,27457,27707,27943,27947,27958,27986,27995,27999,28184,28217,28235,28306,28310,28312,28324,28369,28394,28403,28450,28461,28529,28573,28574,28575,28576,28577,28601,28602,28645,28652,28677,28712,28756,28767,28805,28860,28914,28937,28938,28959,28963,28978,29001,29088,29108,29183,29210,29254,29276,29293,29304,29306,29307,29329,29333,29368,29403,29438,29471,29501,29530,29565,29572,29574,29575,29583,29584,29594,29604,29609,29614,29616,29632,29652,29679,30002,30017,30021,30033,30097,30158,30184,30493,30556,30568,30577,30581,30582,30586,30591,30602,30620,30649,30651,30660,30661]]],["how",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27456]]],["it",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28203]]],["to",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27336]]],["when",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27133]]]]},{"k":"G2532","v":[["*",[9264,5218,[[39,1233,723,0,723,[[929,12,9,0,9],[930,31,16,9,25],[931,19,12,25,37],[932,42,19,37,56],[933,40,26,56,82],[934,28,18,82,100],[935,36,19,100,119],[936,57,29,119,148],[937,53,30,148,178],[938,41,27,178,205],[939,36,20,205,225],[940,63,40,225,265],[941,80,45,265,310],[942,45,25,310,335],[943,41,24,335,359],[944,31,17,359,376],[945,43,22,376,398],[946,30,21,398,419],[947,29,18,419,437],[948,41,26,437,463],[949,69,36,463,499],[950,42,26,499,525],[951,53,29,525,554],[952,60,34,554,588],[953,59,37,588,625],[954,72,47,625,672],[955,59,37,672,709],[956,21,14,709,723]]],[40,1099,563,723,1286,[[957,76,39,723,762],[958,56,25,762,787],[959,64,32,787,819],[960,74,32,819,851],[961,81,37,851,888],[962,118,50,888,938],[963,49,28,938,966],[964,63,35,966,1001],[965,77,43,1001,1044],[966,73,40,1044,1084],[967,55,29,1084,1113],[968,74,36,1113,1149],[969,46,27,1149,1176],[970,114,61,1176,1237],[971,58,34,1237,1271],[972,21,15,1271,1286]]],[41,1535,854,1286,2140,[[973,98,60,1286,1346],[974,81,41,1346,1387],[975,34,20,1387,1407],[976,66,37,1407,1444],[977,70,35,1444,1479],[978,85,38,1479,1517],[979,66,34,1517,1551],[980,101,47,1551,1598],[981,89,45,1598,1643],[982,59,32,1643,1675],[983,66,39,1675,1714],[984,60,42,1714,1756],[985,60,27,1756,1783],[986,51,24,1783,1807],[987,53,26,1807,1833],[988,42,24,1833,1857],[989,41,28,1857,1885],[990,38,25,1885,1910],[991,58,40,1910,1950],[992,51,30,1950,1980],[993,47,26,1980,2006],[994,76,46,2006,2052],[995,60,41,2052,2093],[996,83,47,2093,2140]]],[42,864,544,2140,2684,[[997,58,36,2140,2176],[998,38,19,2176,2195],[999,33,22,2195,2217],[1000,48,32,2217,2249],[1001,38,29,2249,2278],[1002,53,40,2278,2318],[1003,42,30,2318,2348],[1004,51,33,2348,2381],[1005,45,25,2381,2406],[1006,46,29,2406,2435],[1007,47,30,2435,2465],[1008,45,32,2465,2497],[1009,28,19,2497,2516],[1010,39,25,2516,2541],[1011,23,13,2541,2554],[1012,35,20,2554,2574],[1013,31,17,2574,2591],[1014,39,24,2591,2615],[1015,46,32,2615,2647],[1016,51,23,2647,2670],[1017,28,14,2670,2684]]],[43,1123,671,2684,3355,[[1018,39,19,2684,2703],[1019,68,35,2703,2738],[1020,34,17,2738,2755],[1021,48,28,2755,2783],[1022,52,32,2783,2815],[1023,30,13,2815,2828],[1024,84,43,2828,2871],[1025,35,25,2871,2896],[1026,53,32,2896,2928],[1027,53,34,2928,2962],[1028,37,23,2962,2985],[1029,32,18,2985,3003],[1030,57,32,3003,3035],[1031,35,21,3035,3056],[1032,49,25,3056,3081],[1033,44,31,3081,3112],[1034,45,25,3112,3137],[1035,29,20,3137,3157],[1036,39,26,3157,3183],[1037,32,23,3183,3206],[1038,39,21,3206,3227],[1039,36,22,3227,3249],[1040,22,16,3249,3265],[1041,20,16,3265,3281],[1042,20,13,3281,3294],[1043,31,19,3294,3313],[1044,29,22,3313,3335],[1045,31,20,3335,3355]]],[44,290,199,3355,3554,[[1046,26,17,3355,3372],[1047,25,14,3372,3386],[1048,15,13,3386,3399],[1049,18,14,3399,3413],[1050,15,12,3413,3425],[1051,7,6,3425,3431],[1052,8,6,3431,3437],[1053,21,14,3437,3451],[1054,23,15,3451,3466],[1055,8,8,3466,3474],[1056,34,21,3474,3495],[1057,5,3,3495,3498],[1058,10,8,3498,3506],[1059,18,10,3506,3516],[1060,29,23,3516,3539],[1061,28,15,3539,3554]]],[45,290,207,3554,3761,[[1062,22,15,3554,3569],[1063,12,8,3569,3577],[1064,10,8,3577,3585],[1065,18,10,3585,3595],[1066,10,8,3595,3603],[1067,15,9,3603,3612],[1068,30,22,3612,3634],[1069,9,6,3634,3640],[1070,12,9,3640,3649],[1071,23,15,3649,3664],[1072,23,18,3664,3682],[1073,16,13,3682,3695],[1074,10,5,3695,3700],[1075,24,19,3700,3719],[1076,42,32,3719,3751],[1077,14,10,3751,3761]]],[46,193,128,3761,3889,[[1078,33,20,3761,3781],[1079,11,10,3781,3791],[1080,4,4,3791,3795],[1081,10,7,3795,3802],[1082,13,11,3802,3813],[1083,20,11,3813,3824],[1084,7,6,3824,3830],[1085,25,15,3830,3845],[1086,14,8,3845,3853],[1087,13,10,3853,3863],[1088,17,9,3863,3872],[1089,14,10,3872,3882],[1090,12,7,3882,3889]]],[47,74,58,3889,3947,[[1091,16,15,3889,3904],[1092,18,12,3904,3916],[1093,9,7,3916,3923],[1094,14,12,3923,3935],[1095,8,7,3935,3942],[1096,9,5,3942,3947]]],[48,136,88,3947,4035,[[1097,22,15,3947,3962],[1098,20,12,3962,3974],[1099,11,8,3974,3982],[1100,25,17,3982,3999],[1101,33,19,3999,4018],[1102,25,17,4018,4035]]],[49,105,63,4035,4098,[[1103,32,20,4035,4055],[1104,27,18,4055,4073],[1105,16,12,4073,4085],[1106,30,13,4085,4098]]],[50,109,66,4098,4164,[[1107,35,22,4098,4120],[1108,28,16,4120,4136],[1109,25,15,4136,4151],[1110,21,13,4151,4164]]],[51,104,53,4164,4217,[[1111,19,8,4164,4172],[1112,25,12,4172,4184],[1113,21,9,4184,4193],[1114,19,12,4193,4205],[1115,20,12,4205,4217]]],[52,51,34,4217,4251,[[1116,18,11,4217,4228],[1117,18,12,4228,4240],[1118,15,11,4240,4251]]],[53,95,65,4251,4316,[[1119,18,13,4251,4264],[1120,15,9,4264,4273],[1121,7,6,4273,4279],[1122,14,11,4279,4290],[1123,21,13,4290,4303],[1124,20,13,4303,4316]]],[54,68,47,4316,4363,[[1125,18,13,4316,4329],[1126,17,12,4329,4341],[1127,12,10,4341,4351],[1128,21,12,4351,4363]]],[55,36,22,4363,4385,[[1129,13,8,4363,4371],[1130,7,4,4371,4375],[1131,16,10,4375,4385]]],[56,17,11,4385,4396,[[1132,17,11,4385,4396]]],[57,259,172,4396,4568,[[1133,15,10,4396,4406],[1134,18,11,4406,4417],[1135,7,7,4417,4424],[1136,15,8,4424,4432],[1137,18,11,4432,4443],[1138,20,15,4443,4458],[1139,18,16,4458,4474],[1140,16,9,4474,4483],[1141,24,14,4483,4497],[1142,28,20,4497,4517],[1143,37,23,4517,4540],[1144,30,18,4540,4558],[1145,13,10,4558,4568]]],[58,117,73,4568,4641,[[1146,20,13,4568,4581],[1147,24,17,4581,4598],[1148,24,14,4598,4612],[1149,24,13,4612,4625],[1150,25,16,4625,4641]]],[59,74,56,4641,4697,[[1151,19,14,4641,4655],[1152,18,10,4655,4665],[1153,19,16,4665,4681],[1154,11,10,4681,4691],[1155,7,6,4691,4697]]],[60,64,43,4697,4740,[[1156,19,15,4697,4712],[1157,20,15,4712,4727],[1158,25,13,4727,4740]]],[61,132,78,4740,4818,[[1159,21,10,4740,4750],[1160,36,21,4750,4771],[1161,26,16,4771,4787],[1162,23,15,4787,4802],[1163,26,16,4802,4818]]],[62,16,9,4818,4827,[[1164,16,9,4818,4827]]],[63,11,7,4827,4834,[[1165,11,7,4827,4834]]],[64,22,13,4834,4847,[[1166,22,13,4834,4847]]],[65,1147,371,4847,5218,[[1167,57,20,4847,4867],[1168,55,22,4867,4889],[1169,47,16,4889,4905],[1170,40,11,4905,4916],[1171,52,14,4916,4930],[1172,65,17,4930,4947],[1173,35,11,4947,4958],[1174,42,13,4958,4971],[1175,55,19,4971,4990],[1176,34,10,4990,5000],[1177,66,18,5000,5018],[1178,45,17,5018,5035],[1179,50,17,5035,5052],[1180,55,20,5052,5072],[1181,21,8,5072,5080],[1182,53,21,5080,5101],[1183,53,17,5101,5118],[1184,88,23,5118,5141],[1185,67,21,5141,5162],[1186,51,14,5162,5176],[1187,65,25,5176,5201],[1188,51,17,5201,5218]]]],[23146,23147,23155,23161,23163,23165,23167,23168,23169,23171,23172,23173,23175,23177,23178,23180,23181,23182,23183,23184,23185,23187,23189,23190,23192,23194,23196,23197,23198,23199,23201,23202,23203,23204,23206,23208,23209,23211,23212,23214,23215,23217,23218,23219,23220,23222,23224,23225,23226,23227,23228,23230,23231,23232,23233,23234,23235,23236,23240,23245,23246,23247,23249,23250,23252,23253,23254,23258,23259,23263,23264,23266,23272,23273,23274,23275,23276,23277,23278,23279,23280,23281,23284,23286,23287,23288,23294,23295,23296,23299,23300,23301,23302,23303,23306,23307,23308,23310,23312,23315,23318,23320,23321,23322,23323,23324,23326,23328,23329,23330,23335,23338,23339,23340,23341,23342,23343,23344,23345,23347,23348,23349,23351,23352,23353,23354,23355,23356,23357,23358,23359,23360,23361,23362,23364,23365,23366,23367,23368,23369,23370,23371,23372,23373,23374,23377,23378,23379,23380,23381,23382,23383,23384,23385,23386,23387,23388,23389,23390,23392,23393,23394,23395,23396,23397,23398,23399,23401,23402,23403,23404,23405,23406,23407,23409,23412,23414,23415,23418,23419,23420,23421,23422,23430,23431,23432,23433,23434,23435,23438,23439,23442,23443,23444,23445,23446,23447,23452,23453,23454,23455,23456,23457,23458,23459,23460,23463,23464,23465,23468,23471,23472,23473,23475,23476,23477,23478,23480,23481,23482,23484,23486,23487,23488,23489,23490,23492,23493,23494,23496,23497,23498,23499,23500,23502,23504,23505,23507,23509,23510,23511,23512,23514,23515,23516,23518,23519,23520,23521,23522,23524,23526,23527,23528,23529,23530,23531,23532,23533,23534,23535,23536,23537,23538,23539,23540,23541,23542,23543,23544,23545,23546,23547,23549,23551,23552,23553,23554,23555,23556,23558,23559,23561,23562,23564,23565,23567,23569,23570,23571,23572,23573,23575,23578,23579,23580,23581,23583,23585,23586,23587,23588,23589,23591,23592,23593,23594,23595,23596,23597,23599,23600,23602,23603,23606,23607,23608,23609,23610,23611,23612,23614,23616,23617,23618,23619,23620,23623,23626,23627,23628,23629,23631,23632,23633,23634,23636,23637,23639,23641,23643,23649,23650,23654,23655,23656,23659,23661,23662,23663,23664,23665,23666,23667,23668,23669,23670,23671,23672,23673,23675,23676,23677,23678,23681,23682,23683,23684,23689,23690,23691,23693,23694,23696,23698,23699,23701,23702,23703,23704,23705,23706,23707,23709,23710,23711,23712,23714,23715,23716,23717,23718,23720,23721,23723,23724,23725,23727,23729,23730,23732,23733,23735,23736,23739,23740,23742,23744,23745,23748,23752,23753,23754,23755,23756,23758,23760,23761,23762,23763,23764,23765,23766,23767,23769,23771,23774,23775,23776,23777,23778,23781,23783,23789,23790,23791,23792,23795,23796,23797,23798,23799,23800,23801,23802,23804,23806,23808,23809,23810,23811,23812,23813,23814,23815,23816,23817,23819,23820,23821,23822,23824,23826,23827,23828,23829,23831,23832,23833,23834,23835,23836,23838,23839,23840,23841,23842,23843,23845,23846,23847,23848,23849,23853,23854,23856,23857,23858,23859,23861,23862,23864,23865,23867,23868,23869,23870,23871,23872,23873,23875,23876,23878,23879,23881,23882,23884,23885,23887,23888,23892,23893,23894,23895,23896,23897,23898,23899,23904,23905,23907,23909,23910,23912,23918,23919,23920,23921,23922,23923,23924,23925,23927,23930,23931,23932,23933,23935,23936,23937,23938,23939,23940,23941,23943,23944,23945,23946,23947,23948,23950,23952,23953,23955,23958,23960,23961,23962,23963,23964,23966,23967,23968,23969,23971,23975,23976,23979,23981,23984,23986,23987,23988,23989,23990,23992,23993,23994,23995,23996,23997,23998,24000,24001,24002,24006,24007,24008,24010,24013,24015,24017,24018,24019,24022,24023,24024,24025,24026,24027,24028,24029,24030,24031,24032,24033,24034,24035,24036,24037,24038,24039,24040,24041,24043,24044,24045,24046,24047,24048,24049,24050,24051,24052,24054,24055,24056,24057,24058,24061,24063,24067,24070,24072,24073,24075,24076,24080,24081,24084,24085,24089,24090,24091,24092,24093,24094,24095,24097,24098,24099,24101,24103,24104,24105,24107,24109,24111,24112,24113,24114,24115,24116,24117,24118,24121,24123,24125,24126,24127,24128,24129,24130,24131,24132,24134,24138,24139,24140,24141,24143,24149,24154,24157,24158,24159,24160,24162,24163,24164,24165,24166,24167,24169,24170,24171,24177,24180,24181,24182,24183,24185,24186,24188,24189,24190,24191,24193,24195,24196,24197,24198,24199,24202,24203,24204,24207,24209,24210,24212,24213,24214,24215,24219,24220,24221,24222,24224,24225,24226,24227,24228,24230,24231,24232,24233,24234,24235,24236,24237,24238,24239,24240,24241,24242,24244,24245,24246,24247,24248,24249,24250,24251,24252,24253,24254,24255,24256,24257,24258,24259,24260,24261,24262,24263,24264,24266,24268,24269,24271,24272,24273,24274,24275,24276,24277,24278,24279,24280,24281,24282,24283,24284,24285,24286,24287,24288,24289,24290,24291,24292,24293,24294,24295,24296,24297,24299,24300,24301,24302,24303,24304,24305,24306,24307,24308,24309,24310,24311,24312,24313,24314,24315,24316,24319,24320,24321,24322,24323,24324,24325,24327,24328,24329,24330,24331,24332,24334,24335,24336,24338,24339,24340,24341,24342,24343,24344,24347,24348,24349,24350,24353,24355,24356,24358,24359,24360,24361,24362,24363,24364,24365,24366,24367,24368,24369,24370,24371,24373,24374,24376,24377,24378,24379,24380,24381,24382,24383,24384,24385,24386,24387,24388,24389,24390,24393,24394,24395,24396,24397,24398,24401,24402,24403,24404,24405,24406,24407,24408,24409,24410,24411,24412,24413,24414,24415,24416,24417,24418,24419,24420,24421,24424,24426,24427,24428,24429,24430,24432,24433,24434,24435,24436,24437,24438,24439,24440,24441,24442,24443,24444,24445,24446,24447,24448,24449,24450,24451,24452,24453,24454,24455,24456,24457,24458,24460,24461,24463,24464,24465,24466,24467,24468,24471,24472,24473,24475,24476,24477,24480,24481,24482,24486,24487,24489,24490,24491,24492,24493,24494,24495,24496,24497,24498,24499,24500,24501,24502,24503,24504,24505,24506,24507,24508,24509,24510,24511,24512,24513,24514,24515,24516,24517,24518,24521,24522,24523,24524,24525,24526,24527,24528,24529,24530,24531,24532,24533,24534,24535,24536,24538,24539,24540,24541,24542,24543,24545,24546,24548,24549,24550,24551,24552,24553,24554,24555,24556,24558,24559,24560,24562,24563,24564,24565,24566,24567,24568,24569,24570,24571,24573,24574,24575,24576,24577,24580,24581,24582,24583,24584,24585,24586,24587,24588,24589,24590,24592,24593,24594,24595,24596,24598,24599,24600,24601,24602,24604,24605,24607,24609,24611,24614,24616,24617,24618,24619,24620,24621,24622,24623,24625,24626,24627,24628,24629,24630,24632,24633,24634,24635,24636,24637,24639,24640,24641,24642,24643,24644,24645,24646,24647,24648,24649,24651,24652,24653,24654,24655,24656,24657,24658,24659,24660,24661,24662,24663,24664,24665,24667,24668,24669,24671,24673,24674,24675,24676,24677,24678,24679,24680,24681,24682,24684,24685,24686,24687,24689,24690,24691,24692,24693,24694,24695,24697,24699,24701,24703,24704,24705,24706,24707,24708,24710,24711,24712,24713,24714,24715,24716,24718,24719,24720,24721,24723,24724,24725,24726,24727,24729,24730,24733,24734,24736,24737,24738,24739,24741,24742,24743,24744,24745,24746,24748,24749,24750,24751,24755,24757,24758,24759,24761,24763,24764,24765,24766,24767,24768,24769,24770,24771,24772,24773,24776,24777,24778,24780,24781,24783,24784,24785,24786,24787,24788,24789,24790,24791,24792,24793,24794,24795,24797,24798,24799,24800,24801,24802,24803,24804,24805,24807,24808,24809,24810,24811,24812,24813,24814,24815,24816,24819,24820,24821,24822,24823,24824,24825,24826,24827,24828,24829,24834,24841,24842,24843,24844,24845,24846,24847,24848,24849,24850,24851,24852,24853,24854,24855,24856,24857,24858,24860,24861,24862,24864,24866,24867,24868,24869,24870,24871,24872,24873,24874,24875,24876,24877,24878,24880,24881,24883,24884,24887,24888,24889,24891,24892,24893,24895,24898,24899,24900,24903,24905,24906,24907,24908,24909,24910,24911,24912,24913,24914,24915,24916,24917,24920,24921,24922,24923,24924,24925,24926,24928,24929,24931,24933,24934,24935,24936,24938,24939,24940,24942,24943,24945,24946,24948,24949,24950,24951,24952,24953,24954,24955,24956,24957,24958,24959,24960,24961,24962,24964,24965,24968,24969,24972,24973,24976,24977,24980,24981,24982,24983,24985,24986,24987,24988,24989,24991,24993,24994,24995,24997,24998,24999,25000,25001,25005,25006,25007,25008,25009,25010,25011,25012,25013,25014,25015,25016,25017,25018,25019,25020,25021,25022,25023,25024,25025,25026,25027,25028,25030,25031,25033,25034,25035,25036,25037,25039,25040,25041,25042,25043,25044,25045,25046,25047,25048,25064,25065,25066,25067,25068,25069,25071,25072,25074,25075,25076,25077,25078,25079,25080,25081,25083,25085,25086,25088,25089,25090,25091,25092,25094,25095,25096,25097,25098,25099,25100,25101,25102,25104,25105,25106,25107,25108,25109,25110,25111,25112,25113,25114,25116,25117,25118,25119,25120,25121,25122,25123,25124,25125,25126,25127,25128,25130,25131,25132,25133,25134,25135,25136,25137,25138,25140,25142,25143,25144,25145,25146,25147,25149,25150,25151,25152,25153,25154,25156,25157,25158,25159,25160,25161,25162,25163,25164,25165,25166,25168,25169,25171,25174,25175,25176,25177,25178,25179,25180,25181,25182,25183,25184,25188,25191,25192,25193,25194,25195,25198,25200,25202,25203,25204,25205,25206,25207,25208,25209,25210,25211,25212,25213,25214,25216,25217,25218,25220,25221,25224,25225,25226,25227,25228,25229,25230,25231,25232,25233,25234,25235,25239,25244,25246,25247,25248,25249,25250,25251,25252,25253,25255,25257,25258,25259,25260,25262,25263,25264,25265,25266,25267,25268,25269,25270,25271,25272,25273,25274,25276,25277,25278,25279,25280,25281,25282,25284,25286,25287,25288,25289,25290,25292,25295,25296,25297,25298,25299,25300,25301,25302,25303,25304,25305,25306,25307,25308,25310,25311,25312,25313,25314,25316,25317,25318,25319,25323,25324,25327,25329,25330,25331,25333,25334,25335,25336,25337,25339,25340,25341,25342,25343,25346,25349,25350,25351,25352,25353,25354,25355,25356,25357,25359,25362,25363,25364,25367,25369,25370,25371,25372,25373,25374,25376,25377,25378,25379,25380,25382,25384,25385,25386,25387,25388,25390,25391,25392,25393,25394,25395,25396,25397,25398,25400,25401,25402,25404,25406,25407,25409,25410,25411,25412,25414,25415,25416,25417,25419,25422,25423,25427,25428,25429,25430,25431,25432,25433,25434,25435,25436,25437,25439,25444,25445,25446,25447,25448,25449,25450,25451,25453,25454,25456,25457,25458,25459,25461,25462,25463,25465,25466,25467,25469,25470,25474,25476,25477,25478,25480,25482,25483,25487,25488,25490,25492,25493,25494,25495,25496,25497,25498,25499,25500,25501,25504,25505,25506,25507,25508,25509,25511,25512,25513,25514,25515,25516,25517,25518,25520,25522,25524,25525,25526,25529,25530,25531,25532,25533,25534,25535,25536,25537,25538,25540,25542,25543,25544,25545,25546,25547,25548,25549,25550,25551,25552,25554,25555,25556,25557,25558,25559,25562,25564,25565,25567,25569,25570,25571,25572,25573,25574,25575,25576,25578,25579,25580,25582,25583,25584,25589,25590,25592,25593,25594,25596,25597,25600,25601,25602,25603,25604,25606,25607,25608,25609,25610,25611,25612,25613,25614,25615,25616,25617,25619,25620,25621,25622,25625,25626,25627,25628,25630,25632,25633,25634,25635,25636,25637,25638,25639,25641,25642,25643,25644,25645,25646,25648,25649,25651,25653,25654,25655,25656,25657,25659,25661,25662,25663,25664,25665,25667,25670,25671,25673,25674,25675,25676,25677,25678,25679,25680,25682,25684,25685,25686,25687,25688,25689,25690,25691,25692,25695,25697,25698,25699,25701,25703,25704,25706,25708,25710,25714,25716,25718,25719,25720,25721,25722,25726,25727,25730,25731,25732,25733,25734,25735,25736,25737,25738,25739,25740,25741,25742,25743,25744,25745,25746,25748,25749,25750,25751,25752,25753,25754,25755,25756,25757,25758,25759,25760,25762,25766,25769,25770,25771,25772,25773,25774,25775,25776,25778,25779,25780,25781,25782,25786,25787,25788,25789,25790,25791,25794,25795,25798,25799,25800,25803,25804,25805,25807,25808,25809,25810,25811,25813,25814,25815,25816,25821,25823,25825,25826,25828,25829,25831,25833,25834,25835,25836,25837,25838,25841,25842,25843,25844,25847,25849,25850,25851,25852,25853,25854,25855,25857,25859,25860,25862,25864,25866,25868,25869,25870,25872,25875,25877,25878,25879,25881,25883,25884,25886,25887,25888,25889,25890,25894,25896,25897,25899,25900,25901,25903,25905,25908,25909,25910,25911,25914,25915,25916,25917,25918,25919,25920,25922,25923,25924,25925,25926,25927,25928,25929,25930,25932,25936,25937,25939,25942,25943,25945,25946,25947,25948,25949,25950,25954,25957,25958,25960,25961,25962,25963,25964,25965,25967,25968,25970,25971,25972,25973,25974,25976,25977,25978,25979,25980,25981,25983,25984,25985,25986,25988,25989,25990,25991,25992,25994,25995,25996,25998,25999,26000,26001,26002,26003,26004,26005,26006,26008,26009,26010,26011,26013,26014,26015,26016,26017,26018,26019,26020,26021,26022,26023,26024,26025,26026,26027,26028,26029,26030,26031,26032,26033,26034,26035,26037,26038,26040,26041,26042,26043,26044,26045,26047,26048,26049,26054,26055,26058,26059,26060,26061,26063,26064,26065,26068,26069,26073,26076,26077,26078,26079,26080,26081,26082,26083,26084,26085,26086,26087,26088,26089,26090,26091,26092,26093,26094,26095,26096,26097,26098,26099,26102,26103,26104,26105,26106,26107,26108,26109,26110,26111,26113,26114,26115,26117,26120,26122,26123,26124,26125,26126,26128,26129,26130,26131,26132,26133,26134,26139,26140,26142,26143,26146,26147,26149,26151,26152,26155,26157,26159,26166,26167,26168,26169,26172,26173,26174,26176,26179,26180,26183,26184,26186,26190,26191,26192,26193,26194,26196,26197,26198,26199,26201,26202,26203,26204,26206,26207,26208,26209,26211,26214,26216,26218,26219,26221,26222,26224,26225,26226,26228,26229,26230,26231,26234,26235,26236,26237,26239,26240,26242,26243,26245,26247,26248,26249,26250,26253,26254,26259,26260,26262,26266,26268,26270,26272,26274,26276,26278,26279,26281,26282,26283,26286,26287,26290,26292,26293,26294,26297,26299,26300,26301,26302,26306,26307,26310,26311,26312,26313,26314,26315,26320,26321,26322,26323,26324,26326,26327,26329,26331,26332,26338,26339,26340,26342,26343,26344,26346,26347,26348,26349,26350,26354,26356,26358,26359,26360,26361,26362,26363,26364,26365,26370,26373,26375,26379,26380,26381,26383,26384,26389,26390,26391,26392,26395,26397,26398,26399,26400,26401,26402,26404,26406,26407,26409,26410,26413,26414,26419,26420,26423,26425,26429,26430,26431,26433,26434,26436,26437,26438,26440,26441,26442,26446,26447,26448,26451,26454,26455,26456,26458,26459,26460,26464,26465,26467,26468,26470,26471,26474,26475,26476,26477,26478,26479,26480,26482,26484,26485,26489,26490,26491,26493,26494,26495,26496,26497,26499,26501,26503,26504,26505,26506,26508,26509,26510,26511,26514,26516,26517,26519,26520,26521,26522,26523,26524,26525,26528,26531,26534,26538,26539,26542,26545,26548,26549,26551,26552,26554,26556,26557,26560,26561,26564,26566,26567,26568,26569,26570,26571,26573,26575,26578,26579,26580,26582,26583,26585,26586,26589,26590,26591,26593,26596,26597,26598,26601,26602,26605,26606,26607,26608,26609,26610,26614,26615,26616,26618,26620,26621,26622,26624,26625,26627,26628,26629,26630,26632,26633,26634,26635,26636,26637,26639,26640,26642,26643,26644,26645,26651,26656,26657,26661,26662,26663,26664,26669,26671,26672,26673,26674,26675,26676,26677,26678,26679,26680,26681,26684,26685,26687,26688,26689,26690,26691,26692,26694,26696,26697,26698,26699,26700,26701,26705,26706,26707,26709,26710,26715,26719,26721,26722,26723,26726,26729,26731,26734,26736,26739,26740,26741,26742,26743,26745,26746,26748,26749,26750,26752,26753,26754,26755,26756,26758,26760,26762,26764,26765,26767,26769,26770,26771,26772,26773,26778,26779,26780,26781,26782,26784,26785,26786,26787,26788,26790,26791,26795,26797,26798,26800,26801,26802,26803,26804,26805,26810,26812,26813,26814,26815,26816,26818,26820,26822,26823,26826,26827,26828,26829,26830,26831,26832,26834,26835,26838,26839,26841,26842,26843,26844,26845,26848,26849,26850,26851,26852,26854,26855,26856,26857,26859,26860,26862,26863,26864,26865,26866,26868,26869,26870,26871,26872,26873,26874,26875,26879,26880,26881,26884,26885,26886,26887,26889,26892,26893,26894,26895,26896,26897,26898,26900,26901,26904,26905,26907,26909,26911,26915,26916,26917,26918,26921,26922,26923,26924,26926,26927,26931,26932,26933,26934,26936,26937,26938,26940,26941,26942,26943,26944,26946,26947,26948,26949,26950,26951,26952,26953,26955,26956,26957,26958,26959,26960,26961,26963,26966,26967,26968,26969,26970,26971,26972,26975,26978,26979,26982,26985,26986,26987,26988,26989,26990,26991,26992,26993,26994,26995,26996,26997,26998,26999,27002,27003,27004,27005,27006,27007,27009,27010,27012,27013,27015,27016,27020,27021,27023,27024,27025,27026,27027,27028,27029,27030,27032,27034,27035,27038,27040,27041,27042,27045,27046,27047,27048,27049,27050,27051,27052,27053,27054,27055,27057,27059,27061,27062,27063,27064,27065,27066,27068,27069,27070,27071,27073,27074,27075,27076,27077,27079,27080,27082,27083,27084,27086,27087,27088,27090,27091,27092,27095,27096,27097,27098,27099,27101,27104,27105,27106,27107,27108,27109,27110,27111,27112,27113,27114,27115,27116,27118,27119,27121,27122,27123,27124,27125,27126,27127,27129,27130,27131,27132,27133,27136,27137,27138,27140,27142,27143,27145,27146,27148,27150,27151,27152,27154,27155,27157,27158,27159,27161,27162,27167,27168,27169,27170,27171,27172,27173,27174,27175,27176,27177,27178,27179,27182,27183,27184,27185,27188,27189,27190,27193,27198,27199,27201,27202,27203,27204,27205,27206,27208,27211,27212,27214,27215,27216,27217,27218,27219,27220,27222,27225,27226,27227,27228,27230,27231,27233,27234,27235,27236,27237,27238,27240,27242,27243,27244,27245,27246,27247,27248,27250,27251,27252,27255,27256,27257,27258,27261,27262,27263,27264,27266,27267,27268,27269,27270,27271,27272,27274,27275,27276,27277,27279,27281,27282,27283,27286,27287,27288,27289,27290,27291,27294,27297,27298,27299,27300,27301,27304,27305,27306,27308,27309,27310,27312,27313,27314,27317,27318,27319,27320,27321,27322,27324,27325,27326,27327,27328,27329,27330,27331,27333,27335,27337,27340,27341,27344,27345,27346,27347,27348,27349,27351,27353,27354,27356,27357,27358,27359,27360,27361,27362,27363,27364,27365,27367,27369,27371,27372,27373,27376,27377,27378,27379,27380,27381,27382,27383,27384,27388,27389,27390,27394,27395,27397,27398,27401,27403,27405,27407,27408,27410,27412,27414,27415,27416,27417,27418,27419,27420,27422,27423,27424,27427,27428,27429,27431,27432,27433,27434,27435,27436,27438,27439,27441,27443,27444,27445,27446,27448,27449,27450,27451,27454,27457,27458,27459,27462,27464,27465,27466,27467,27469,27470,27471,27472,27474,27477,27480,27483,27484,27485,27486,27487,27488,27489,27490,27492,27496,27497,27498,27500,27501,27502,27503,27504,27505,27507,27508,27509,27510,27512,27513,27514,27515,27516,27517,27520,27521,27522,27523,27524,27525,27526,27527,27528,27529,27530,27531,27532,27533,27535,27537,27538,27540,27541,27544,27546,27547,27548,27549,27550,27551,27552,27556,27557,27559,27560,27561,27562,27563,27564,27565,27566,27567,27568,27569,27572,27573,27574,27575,27578,27579,27580,27582,27583,27586,27591,27593,27594,27595,27597,27600,27601,27602,27603,27604,27605,27606,27607,27610,27611,27612,27613,27614,27616,27617,27620,27621,27623,27625,27626,27627,27628,27630,27632,27635,27636,27637,27638,27641,27645,27646,27647,27648,27649,27650,27651,27654,27656,27657,27658,27660,27662,27663,27666,27667,27668,27669,27670,27671,27672,27675,27676,27677,27680,27683,27684,27688,27689,27691,27692,27694,27696,27697,27702,27705,27706,27708,27709,27710,27711,27713,27717,27718,27719,27720,27721,27722,27723,27724,27725,27726,27727,27729,27732,27733,27734,27737,27740,27741,27743,27745,27748,27750,27752,27753,27755,27757,27761,27764,27767,27768,27769,27770,27771,27772,27774,27775,27778,27781,27783,27784,27785,27786,27788,27792,27793,27794,27795,27798,27803,27806,27807,27809,27811,27815,27818,27819,27820,27821,27822,27823,27826,27829,27830,27833,27834,27835,27836,27837,27839,27840,27841,27843,27845,27846,27848,27849,27852,27853,27854,27856,27860,27862,27864,27865,27866,27867,27870,27874,27876,27877,27878,27879,27883,27885,27886,27887,27890,27891,27895,27896,27899,27900,27901,27902,27905,27907,27908,27909,27911,27912,27913,27914,27919,27922,27923,27925,27926,27927,27928,27929,27930,27935,27936,27937,27942,27943,27944,27945,27946,27948,27950,27951,27953,27954,27955,27957,27958,27962,27965,27966,27967,27969,27970,27971,27972,27974,27977,27979,27980,27982,27989,27991,27995,27999,28000,28005,28007,28008,28010,28012,28013,28014,28017,28020,28021,28025,28028,28029,28031,28033,28034,28036,28038,28039,28041,28043,28044,28046,28047,28049,28050,28054,28058,28059,28061,28062,28063,28064,28065,28066,28068,28072,28073,28076,28079,28081,28087,28095,28097,28101,28102,28103,28114,28118,28119,28122,28127,28133,28137,28138,28139,28140,28142,28145,28146,28148,28150,28157,28159,28160,28164,28165,28170,28172,28177,28178,28179,28180,28181,28183,28184,28188,28189,28191,28196,28197,28200,28206,28208,28209,28210,28212,28214,28217,28218,28219,28221,28223,28225,28226,28231,28232,28233,28235,28236,28238,28239,28240,28242,28244,28245,28247,28259,28260,28269,28271,28272,28275,28277,28278,28279,28280,28283,28286,28287,28289,28290,28291,28294,28297,28298,28299,28304,28306,28307,28308,28309,28310,28312,28313,28314,28315,28316,28317,28321,28322,28324,28325,28327,28329,28330,28331,28333,28334,28335,28338,28339,28340,28341,28343,28345,28348,28349,28350,28351,28353,28354,28357,28359,28361,28364,28365,28366,28368,28371,28373,28377,28379,28382,28385,28387,28388,28390,28391,28393,28396,28397,28398,28403,28404,28405,28407,28408,28411,28412,28413,28415,28418,28423,28426,28430,28434,28438,28439,28440,28441,28442,28444,28445,28450,28452,28455,28456,28458,28461,28462,28464,28466,28467,28468,28469,28473,28475,28478,28480,28481,28486,28487,28489,28490,28491,28492,28494,28495,28498,28499,28500,28501,28504,28506,28509,28515,28516,28517,28518,28521,28522,28523,28524,28525,28531,28532,28533,28534,28538,28539,28544,28545,28546,28547,28548,28550,28554,28560,28567,28568,28569,28570,28571,28574,28575,28576,28577,28580,28587,28588,28593,28594,28595,28599,28602,28605,28606,28607,28609,28612,28618,28619,28621,28622,28623,28624,28625,28626,28627,28628,28629,28630,28637,28639,28640,28645,28646,28647,28648,28650,28657,28660,28661,28662,28665,28666,28667,28668,28674,28677,28681,28686,28687,28688,28689,28690,28693,28697,28699,28701,28703,28705,28706,28707,28709,28710,28712,28717,28718,28719,28720,28721,28722,28723,28724,28728,28729,28732,28733,28736,28739,28740,28742,28746,28747,28748,28750,28752,28755,28756,28758,28759,28760,28762,28763,28766,28767,28768,28770,28771,28772,28777,28782,28785,28786,28788,28791,28792,28793,28794,28795,28801,28802,28803,28805,28806,28807,28808,28810,28811,28812,28813,28814,28815,28816,28817,28818,28819,28820,28821,28822,28826,28827,28828,28831,28833,28834,28836,28838,28839,28840,28843,28847,28851,28854,28862,28866,28869,28870,28872,28873,28875,28879,28880,28881,28882,28885,28886,28888,28889,28892,28895,28896,28899,28900,28905,28906,28907,28908,28911,28912,28914,28915,28916,28917,28919,28921,28923,28930,28931,28934,28935,28936,28937,28938,28939,28940,28942,28943,28946,28947,28951,28953,28955,28956,28958,28960,28961,28962,28966,28968,28969,28970,28972,28976,28977,28978,28979,28981,28982,28983,28984,28985,28990,28995,28998,29001,29003,29016,29018,29020,29022,29023,29025,29026,29029,29031,29034,29036,29037,29040,29043,29044,29045,29047,29052,29053,29054,29057,29058,29059,29060,29061,29064,29065,29066,29070,29071,29072,29073,29074,29075,29078,29081,29082,29083,29089,29090,29091,29093,29094,29095,29096,29097,29098,29101,29106,29107,29108,29118,29119,29130,29131,29133,29134,29138,29140,29141,29145,29149,29151,29153,29158,29160,29161,29163,29174,29177,29178,29183,29186,29187,29189,29190,29192,29195,29204,29207,29208,29209,29210,29214,29216,29217,29219,29221,29223,29224,29225,29226,29227,29228,29230,29232,29234,29235,29237,29241,29243,29245,29246,29248,29249,29251,29256,29257,29260,29261,29263,29266,29268,29269,29274,29276,29278,29280,29281,29282,29283,29285,29286,29288,29289,29293,29296,29298,29302,29303,29304,29306,29307,29308,29309,29313,29315,29316,29318,29322,29323,29324,29327,29329,29331,29333,29334,29335,29336,29337,29339,29340,29341,29342,29344,29346,29347,29349,29350,29351,29352,29354,29355,29356,29358,29359,29360,29362,29363,29368,29370,29371,29372,29374,29375,29376,29379,29380,29381,29382,29383,29384,29386,29388,29389,29390,29391,29392,29395,29396,29399,29400,29401,29402,29403,29404,29405,29406,29408,29409,29415,29416,29417,29418,29420,29424,29425,29429,29430,29431,29433,29436,29438,29439,29440,29441,29442,29443,29444,29445,29448,29449,29450,29451,29452,29454,29457,29458,29460,29462,29466,29467,29468,29469,29471,29472,29473,29474,29475,29476,29478,29481,29482,29483,29485,29486,29487,29488,29489,29491,29493,29494,29495,29496,29497,29499,29501,29502,29504,29505,29506,29507,29508,29509,29512,29513,29516,29517,29520,29521,29522,29524,29525,29527,29528,29529,29530,29532,29533,29534,29536,29540,29542,29543,29545,29549,29550,29551,29552,29553,29554,29555,29556,29557,29558,29559,29561,29563,29565,29566,29567,29568,29569,29570,29572,29578,29579,29580,29581,29582,29583,29584,29585,29588,29589,29590,29592,29594,29595,29596,29597,29600,29601,29602,29603,29604,29607,29608,29609,29611,29613,29614,29615,29616,29617,29619,29620,29622,29624,29626,29627,29628,29629,29632,29633,29634,29636,29644,29645,29650,29651,29652,29653,29654,29656,29657,29658,29659,29660,29661,29662,29664,29665,29667,29669,29670,29671,29672,29674,29676,29677,29678,29679,29680,29681,29682,29683,29684,29686,29688,29690,29692,29693,29697,29698,29700,29701,29705,29706,29708,29709,29710,29711,29713,29715,29716,29718,29719,29720,29721,29723,29724,29725,29730,29731,29738,29741,29743,29744,29746,29747,29748,29750,29751,29752,29753,29754,29755,29756,29757,29758,29763,29767,29768,29770,29771,29776,29779,29780,29781,29783,29784,29786,29787,29788,29789,29790,29791,29792,29793,29796,29797,29798,29800,29801,29803,29804,29808,29811,29812,29814,29816,29818,29819,29820,29821,29822,29824,29825,29826,29827,29829,29832,29837,29838,29839,29844,29845,29846,29847,29848,29850,29853,29859,29860,29861,29862,29864,29865,29866,29867,29868,29869,29871,29872,29874,29876,29878,29880,29883,29885,29887,29888,29889,29891,29893,29896,29897,29901,29902,29906,29907,29908,29920,29921,29922,29923,29924,29926,29927,29928,29931,29932,29933,29934,29936,29937,29939,29940,29941,29943,29945,29947,29949,29954,29957,29959,29960,29964,29965,29966,29968,29969,29970,29972,29973,29974,29975,29979,29980,29981,29984,29986,29987,29988,29990,29991,29992,29994,29996,29997,30000,30001,30004,30005,30014,30016,30018,30019,30020,30024,30026,30027,30030,30031,30032,30033,30034,30035,30036,30037,30039,30041,30042,30044,30045,30046,30047,30048,30049,30050,30051,30052,30053,30054,30056,30058,30059,30060,30063,30065,30066,30068,30069,30070,30072,30073,30075,30076,30079,30082,30084,30085,30087,30089,30090,30094,30095,30097,30098,30100,30102,30103,30104,30105,30106,30107,30109,30112,30114,30115,30116,30117,30118,30120,30124,30126,30127,30132,30137,30138,30139,30141,30144,30148,30149,30150,30153,30154,30155,30157,30158,30160,30162,30163,30166,30167,30170,30171,30176,30177,30178,30179,30180,30181,30182,30183,30184,30185,30187,30189,30191,30192,30193,30194,30195,30200,30204,30208,30209,30210,30211,30213,30214,30217,30220,30221,30224,30225,30226,30227,30230,30231,30233,30234,30235,30236,30238,30240,30241,30244,30245,30247,30249,30250,30253,30257,30258,30263,30265,30267,30270,30271,30272,30277,30280,30283,30287,30288,30289,30290,30291,30293,30295,30296,30297,30298,30299,30304,30305,30306,30308,30309,30310,30312,30315,30316,30317,30318,30319,30321,30322,30323,30324,30325,30326,30328,30329,30330,30331,30332,30333,30335,30336,30338,30339,30340,30341,30344,30345,30346,30347,30348,30349,30350,30352,30354,30356,30357,30358,30359,30361,30362,30364,30365,30366,30368,30369,30370,30371,30372,30373,30374,30375,30376,30377,30378,30381,30382,30384,30385,30389,30391,30393,30395,30397,30398,30400,30404,30405,30407,30410,30415,30417,30419,30420,30424,30425,30427,30428,30429,30430,30431,30434,30435,30436,30437,30438,30439,30442,30443,30445,30446,30447,30449,30451,30452,30453,30457,30459,30460,30464,30465,30466,30469,30470,30476,30477,30478,30480,30481,30482,30483,30484,30487,30489,30490,30491,30493,30494,30495,30496,30497,30498,30501,30502,30503,30505,30506,30507,30508,30510,30511,30512,30513,30514,30519,30520,30522,30524,30526,30527,30529,30530,30532,30533,30534,30535,30536,30537,30538,30540,30541,30542,30543,30544,30545,30546,30547,30548,30549,30550,30551,30552,30553,30554,30556,30558,30559,30560,30561,30564,30566,30567,30568,30570,30571,30572,30573,30574,30575,30577,30578,30581,30582,30583,30584,30588,30589,30591,30594,30595,30596,30597,30598,30599,30601,30602,30603,30606,30607,30608,30609,30610,30613,30614,30615,30616,30617,30618,30619,30620,30623,30624,30625,30626,30627,30628,30630,30631,30632,30635,30637,30638,30639,30640,30641,30642,30643,30644,30646,30647,30648,30650,30651,30652,30654,30655,30657,30660,30661,30663,30668,30670,30671,30672,30673,30674,30676,30679,30680,30683,30686,30687,30688,30694,30695,30696,30697,30698,30699,30700,30701,30702,30703,30704,30705,30706,30707,30708,30709,30710,30711,30712,30713,30714,30715,30716,30717,30719,30720,30722,30725,30726,30727,30729,30730,30731,30732,30733,30734,30735,30736,30737,30738,30739,30740,30741,30743,30744,30745,30747,30748,30749,30750,30751,30753,30754,30755,30758,30760,30762,30763,30764,30765,30766,30767,30769,30770,30771,30772,30773,30774,30775,30776,30777,30778,30779,30780,30781,30782,30783,30784,30785,30786,30787,30788,30789,30790,30791,30792,30793,30794,30795,30796,30797,30798,30799,30800,30801,30802,30803,30804,30805,30806,30807,30808,30809,30810,30811,30812,30814,30819,30820,30821,30822,30823,30824,30825,30827,30828,30829,30830,30831,30832,30833,30834,30835,30836,30837,30838,30839,30840,30841,30842,30843,30844,30845,30846,30847,30848,30849,30850,30851,30853,30855,30856,30857,30858,30859,30860,30861,30862,30863,30864,30865,30866,30867,30869,30870,30871,30872,30873,30874,30875,30876,30877,30878,30879,30880,30881,30882,30883,30884,30885,30887,30888,30889,30890,30891,30892,30893,30894,30895,30896,30897,30898,30899,30900,30901,30902,30903,30904,30905,30906,30907,30908,30909,30910,30911,30912,30913,30914,30915,30916,30918,30919,30920,30921,30922,30923,30924,30925,30926,30927,30928,30929,30930,30931,30932,30933,30934,30935,30936,30937,30938,30939,30940,30941,30942,30943,30944,30945,30946,30947,30948,30949,30950,30951,30952,30953,30954,30955,30956,30957,30958,30959,30960,30961,30962,30963,30964,30965,30966,30967,30968,30969,30970,30971,30972,30973,30974,30975,30976,30977,30978,30979,30980,30981,30982,30983,30985,30986,30987,30988,30989,30990,30991,30992,30993,30994,30995,30996,30997,30998,30999,31000,31001,31002,31004,31005,31006,31007,31008,31009,31010,31011,31012,31013,31014,31015,31016,31017,31018,31019,31020,31021,31022,31023,31024,31025,31026,31027,31028,31029,31030,31031,31032,31033,31034,31035,31036,31037,31038,31039,31040,31041,31042,31044,31045,31046,31047,31048,31049,31050,31051,31052,31053,31054,31055,31056,31057,31058,31059,31060,31061,31062,31063,31064,31065,31067,31068,31069,31070,31071,31072,31074,31075,31076,31077,31078,31079,31080,31081,31082,31083,31084,31085,31086,31088,31089,31090,31091,31092,31093,31094,31095,31096,31097,31099]]],["+",[177,172,[[39,9,9,0,9,[[938,1,1,0,1],[945,1,1,1,2],[950,1,1,2,3],[951,1,1,3,4],[953,3,3,4,7],[954,1,1,7,8],[956,1,1,8,9]]],[40,13,13,9,22,[[957,1,1,9,10],[958,1,1,10,11],[960,1,1,11,12],[961,1,1,12,13],[962,1,1,13,14],[963,2,2,14,16],[964,1,1,16,17],[965,1,1,17,18],[968,1,1,18,19],[969,1,1,19,20],[970,2,2,20,22]]],[41,34,34,22,56,[[974,2,2,22,24],[975,1,1,24,25],[976,1,1,25,26],[977,3,3,26,29],[978,1,1,29,30],[979,1,1,30,31],[980,3,3,31,34],[982,2,2,34,36],[983,1,1,36,37],[984,1,1,37,38],[985,4,4,38,42],[987,1,1,42,43],[988,1,1,43,44],[989,1,1,44,45],[990,4,4,45,49],[991,2,2,49,51],[992,1,1,51,52],[994,2,2,52,54],[996,2,2,54,56]]],[42,15,15,56,71,[[998,3,3,56,59],[999,1,1,59,60],[1000,1,1,60,61],[1001,1,1,61,62],[1003,2,2,62,64],[1006,1,1,64,65],[1008,3,3,65,68],[1013,2,2,68,70],[1015,1,1,70,71]]],[43,23,23,71,94,[[1018,1,1,71,72],[1019,2,2,72,74],[1021,2,2,74,76],[1022,1,1,76,77],[1025,1,1,77,78],[1027,3,3,78,81],[1028,3,3,81,84],[1029,2,2,84,86],[1030,1,1,86,87],[1034,1,1,87,88],[1036,1,1,88,89],[1039,1,1,89,90],[1041,1,1,90,91],[1042,1,1,91,92],[1043,2,2,92,94]]],[44,4,4,94,98,[[1046,1,1,94,95],[1049,1,1,95,96],[1050,1,1,96,97],[1059,1,1,97,98]]],[45,15,14,98,112,[[1063,2,2,98,100],[1066,1,1,100,101],[1068,2,2,101,103],[1069,1,1,103,104],[1070,1,1,104,105],[1072,2,2,105,107],[1073,1,1,107,108],[1075,1,1,108,109],[1076,3,2,109,111],[1077,1,1,111,112]]],[46,15,15,112,127,[[1078,4,4,112,116],[1079,2,2,116,118],[1081,2,2,118,120],[1082,2,2,120,122],[1084,1,1,122,123],[1086,1,1,123,124],[1087,1,1,124,125],[1088,1,1,125,126],[1090,1,1,126,127]]],[47,3,3,127,130,[[1091,1,1,127,128],[1092,2,2,128,130]]],[48,4,4,130,134,[[1100,1,1,130,131],[1101,2,2,131,133],[1102,1,1,133,134]]],[49,2,1,134,135,[[1106,2,1,134,135]]],[50,3,3,135,138,[[1107,1,1,135,136],[1108,1,1,136,137],[1110,1,1,137,138]]],[51,5,4,138,142,[[1112,3,2,138,140],[1114,2,2,140,142]]],[53,1,1,142,143,[[1121,1,1,142,143]]],[54,2,2,143,145,[[1125,1,1,143,144],[1128,1,1,144,145]]],[55,2,2,145,147,[[1129,1,1,145,146],[1131,1,1,146,147]]],[57,3,3,147,150,[[1136,1,1,147,148],[1142,1,1,148,149],[1144,1,1,149,150]]],[58,2,2,150,152,[[1147,1,1,150,151],[1150,1,1,151,152]]],[59,1,1,152,153,[[1152,1,1,152,153]]],[60,2,2,153,155,[[1156,1,1,153,154],[1157,1,1,154,155]]],[61,2,2,155,157,[[1161,1,1,155,156],[1163,1,1,156,157]]],[62,1,1,157,158,[[1164,1,1,157,158]]],[65,16,14,158,172,[[1167,2,2,158,160],[1170,3,2,160,162],[1172,1,1,162,163],[1175,1,1,163,164],[1177,1,1,164,165],[1179,2,1,165,166],[1182,2,2,166,168],[1185,1,1,168,169],[1186,1,1,169,170],[1187,1,1,170,171],[1188,1,1,171,172]]]],[23421,23701,23888,23941,24030,24032,24037,24093,24204,24239,24275,24343,24371,24428,24467,24491,24507,24560,24687,24736,24783,24794,24994,25017,25043,25097,25108,25119,25142,25152,25207,25272,25273,25281,25388,25393,25417,25488,25522,25525,25529,25534,25597,25641,25661,25690,25692,25697,25722,25733,25773,25800,25901,25914,25995,26006,26099,26115,26120,26140,26179,26231,26338,26356,26509,26590,26606,26622,26779,26784,26843,26933,26967,26978,27034,27054,27079,27204,27276,27288,27306,27319,27322,27335,27349,27358,27371,27528,27597,27709,27794,27806,27826,27834,27962,28034,28066,28290,28403,28408,28466,28494,28525,28532,28545,28605,28609,28648,28686,28736,28766,28792,28813,28818,28819,28822,28826,28834,28862,28875,28881,28882,28923,28958,28979,28995,29047,29065,29090,29094,29289,29315,29337,29346,29458,29471,29499,29545,29585,29588,29611,29617,29738,29819,29878,29902,29936,30027,30167,30241,30297,30362,30419,30484,30506,30583,30625,30655,30705,30708,30772,30778,30804,30861,30888,30924,30958,30965,31021,31042,31059,31082]]],["-",[10,10,[[39,6,6,0,6,[[936,2,2,0,2],[939,1,1,2,3],[944,1,1,3,4],[950,1,1,4,5],[952,1,1,5,6]]],[42,1,1,6,7,[[1003,1,1,6,7]]],[43,1,1,7,8,[[1034,1,1,7,8]]],[65,2,2,8,10,[[1167,1,1,8,9],[1174,1,1,9,10]]]],[23353,23354,23463,23673,23894,23975,26329,27556,30715,30834]]],["AND",[2,2,[[65,2,2,0,2,[[1183,1,1,0,1],[1185,1,1,1,2]]]],[30980,31033]]],["Also",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27656]]],["And",[1949,1879,[[39,287,278,0,278,[[929,1,1,0,1],[930,7,7,1,8],[931,5,5,8,13],[932,10,10,13,23],[933,5,5,23,28],[934,4,4,28,32],[935,5,5,32,37],[936,20,18,37,55],[937,20,19,55,74],[938,9,9,74,83],[939,5,5,83,88],[940,11,10,88,98],[941,12,12,98,110],[942,17,17,110,127],[943,13,13,127,140],[944,5,5,140,145],[945,13,12,145,157],[946,6,6,157,163],[947,6,6,163,169],[948,10,10,169,179],[949,21,18,179,197],[950,7,7,197,204],[951,5,5,204,209],[952,12,12,209,221],[953,9,9,221,230],[954,22,21,230,251],[955,20,20,251,271],[956,7,7,271,278]]],[40,411,394,278,672,[[957,31,31,278,309],[958,18,17,309,326],[959,28,27,326,353],[960,27,26,353,379],[961,33,31,379,410],[962,42,41,410,451],[963,18,17,451,468],[964,24,23,468,491],[965,29,29,491,520],[966,22,21,520,541],[967,25,23,541,564],[968,27,25,564,589],[969,11,11,589,600],[970,45,42,600,642],[971,24,23,642,665],[972,7,7,665,672]]],[41,421,403,672,1075,[[973,39,37,672,709],[974,32,32,709,741],[975,7,6,741,747],[976,33,29,747,776],[977,24,22,776,798],[978,11,11,798,809],[979,18,16,809,825],[980,18,18,825,843],[981,26,23,843,866],[982,10,10,866,876],[983,6,5,876,881],[984,8,8,881,889],[985,9,9,889,898],[986,15,15,898,913],[987,14,13,913,926],[988,10,10,926,936],[989,12,11,936,947],[990,9,9,947,956],[991,24,24,956,980],[992,15,15,980,995],[993,8,8,995,1003],[994,30,29,1003,1032],[995,16,16,1032,1048],[996,27,27,1048,1075]]],[42,126,122,1075,1197,[[997,16,14,1075,1089],[998,10,9,1089,1098],[999,4,4,1098,1102],[1000,6,6,1102,1108],[1001,7,7,1108,1115],[1002,8,7,1115,1122],[1003,3,3,1122,1125],[1004,6,6,1125,1131],[1005,9,9,1131,1140],[1006,6,6,1140,1146],[1007,8,8,1146,1154],[1008,3,3,1154,1157],[1009,3,3,1157,1160],[1010,5,5,1160,1165],[1012,4,4,1165,1169],[1013,6,6,1169,1175],[1014,2,2,1175,1177],[1015,8,8,1177,1185],[1016,10,10,1185,1195],[1017,2,2,1195,1197]]],[43,178,175,1197,1372,[[1018,9,9,1197,1206],[1019,9,9,1206,1215],[1020,8,8,1215,1223],[1021,8,8,1223,1231],[1022,5,5,1231,1236],[1023,4,4,1236,1240],[1024,17,17,1240,1257],[1025,3,3,1257,1260],[1026,13,12,1260,1272],[1027,13,13,1272,1285],[1028,4,4,1285,1289],[1029,10,9,1289,1298],[1030,9,9,1298,1307],[1031,5,5,1307,1312],[1032,4,4,1312,1316],[1033,11,11,1316,1327],[1034,3,3,1327,1330],[1035,8,8,1330,1338],[1036,4,4,1338,1342],[1037,4,4,1342,1346],[1038,5,5,1346,1351],[1039,4,4,1351,1355],[1040,2,2,1355,1357],[1041,1,1,1357,1358],[1042,1,1,1358,1359],[1043,4,4,1359,1363],[1044,6,5,1363,1368],[1045,4,4,1368,1372]]],[44,23,23,1372,1395,[[1046,2,2,1372,1374],[1047,2,2,1374,1376],[1048,2,2,1376,1378],[1049,5,5,1378,1383],[1050,1,1,1383,1384],[1052,1,1,1384,1385],[1054,3,3,1385,1388],[1056,2,2,1388,1390],[1057,1,1,1390,1391],[1058,1,1,1391,1392],[1060,3,3,1392,1395]]],[45,34,34,1395,1429,[[1062,1,1,1395,1396],[1063,2,2,1396,1398],[1064,2,2,1398,1400],[1065,1,1,1400,1401],[1066,1,1,1401,1402],[1067,1,1,1402,1403],[1068,4,4,1403,1407],[1069,1,1,1407,1408],[1070,1,1,1408,1409],[1071,3,3,1409,1412],[1072,1,1,1412,1413],[1073,6,6,1413,1419],[1074,2,2,1419,1421],[1075,2,2,1421,1423],[1076,6,6,1423,1429]]],[46,19,19,1429,1448,[[1078,3,3,1429,1432],[1079,2,2,1432,1434],[1080,1,1,1434,1435],[1082,1,1,1435,1436],[1083,1,1,1436,1437],[1084,1,1,1437,1438],[1085,2,2,1438,1440],[1086,1,1,1440,1441],[1087,1,1,1441,1442],[1088,3,3,1442,1445],[1089,3,3,1445,1448]]],[47,9,8,1448,1456,[[1091,3,3,1448,1451],[1092,2,2,1451,1453],[1093,2,1,1453,1454],[1094,1,1,1454,1455],[1096,1,1,1455,1456]]],[48,18,18,1456,1474,[[1097,2,2,1456,1458],[1098,4,4,1458,1462],[1099,1,1,1462,1463],[1100,3,3,1463,1466],[1101,3,3,1466,1469],[1102,5,5,1469,1474]]],[49,9,9,1474,1483,[[1103,4,4,1474,1478],[1104,2,2,1478,1480],[1105,1,1,1480,1481],[1106,2,2,1481,1483]]],[50,14,14,1483,1497,[[1107,4,4,1483,1487],[1108,3,3,1487,1490],[1109,4,4,1490,1494],[1110,3,3,1494,1497]]],[51,5,5,1497,1502,[[1111,2,2,1497,1499],[1113,1,1,1499,1500],[1114,1,1,1500,1501],[1115,1,1,1501,1502]]],[52,6,6,1502,1508,[[1116,1,1,1502,1503],[1117,4,4,1503,1507],[1118,1,1,1507,1508]]],[53,6,6,1508,1514,[[1119,1,1,1508,1509],[1120,1,1,1509,1510],[1121,2,2,1510,1512],[1123,2,2,1512,1514]]],[54,7,7,1514,1521,[[1126,4,4,1514,1518],[1127,1,1,1518,1519],[1128,2,2,1519,1521]]],[56,1,1,1521,1522,[[1132,1,1,1521,1522]]],[57,40,39,1522,1561,[[1133,5,5,1522,1527],[1134,3,2,1527,1529],[1135,1,1,1529,1530],[1136,2,2,1530,1532],[1137,3,3,1532,1535],[1138,3,3,1535,1538],[1139,6,6,1538,1544],[1140,1,1,1544,1545],[1141,3,3,1545,1548],[1142,5,5,1548,1553],[1143,3,3,1553,1556],[1144,5,5,1556,1561]]],[58,5,5,1561,1566,[[1147,2,2,1561,1563],[1148,1,1,1563,1564],[1150,2,2,1564,1566]]],[59,5,5,1566,1571,[[1151,1,1,1566,1567],[1152,1,1,1567,1568],[1153,1,1,1568,1569],[1154,1,1,1569,1570],[1155,1,1,1570,1571]]],[60,8,8,1571,1579,[[1156,1,1,1571,1572],[1157,5,5,1572,1577],[1158,2,2,1577,1579]]],[61,24,23,1579,1602,[[1159,1,1,1579,1580],[1160,6,6,1580,1586],[1161,8,7,1586,1593],[1162,4,4,1593,1597],[1163,5,5,1597,1602]]],[62,2,2,1602,1604,[[1164,2,2,1602,1604]]],[64,1,1,1604,1605,[[1166,1,1,1604,1605]]],[65,290,274,1605,1879,[[1167,9,7,1605,1612],[1168,9,9,1612,1621],[1169,3,3,1621,1624],[1170,8,8,1624,1632],[1171,14,13,1632,1645],[1172,18,16,1645,1661],[1173,8,7,1661,1668],[1174,12,12,1668,1680],[1175,16,16,1680,1696],[1176,11,10,1696,1706],[1177,15,14,1706,1720],[1178,16,16,1720,1736],[1179,15,15,1736,1751],[1180,16,16,1751,1767],[1181,7,7,1767,1774],[1182,18,18,1774,1792],[1183,11,11,1792,1803],[1184,15,15,1803,1818],[1185,20,17,1818,1835],[1186,13,13,1835,1848],[1187,22,21,1848,1869],[1188,14,10,1869,1879]]]],[23169,23173,23175,23177,23180,23181,23184,23192,23194,23198,23201,23208,23209,23211,23212,23215,23218,23222,23228,23230,23232,23233,23234,23236,23264,23274,23275,23281,23287,23294,23295,23310,23339,23341,23342,23343,23344,23347,23348,23349,23351,23352,23358,23359,23360,23364,23365,23368,23369,23370,23371,23373,23374,23377,23379,23380,23381,23382,23383,23386,23388,23389,23390,23394,23398,23399,23401,23402,23403,23405,23406,23409,23412,23414,23418,23430,23431,23435,23439,23445,23453,23455,23459,23460,23465,23473,23476,23482,23498,23499,23502,23505,23510,23512,23515,23516,23521,23538,23541,23542,23543,23549,23553,23581,23589,23592,23593,23595,23596,23597,23599,23602,23606,23607,23608,23609,23611,23616,23617,23619,23620,23623,23626,23629,23631,23632,23633,23639,23643,23655,23656,23661,23662,23663,23666,23667,23668,23669,23670,23672,23675,23676,23677,23689,23691,23701,23702,23703,23706,23707,23709,23710,23714,23716,23718,23723,23725,23729,23730,23732,23736,23740,23761,23763,23764,23767,23777,23778,23791,23795,23801,23809,23811,23815,23816,23819,23821,23822,23824,23827,23829,23836,23838,23839,23840,23842,23843,23845,23846,23848,23849,23853,23856,23861,23865,23870,23871,23873,23875,23884,23888,23892,23905,23918,23925,23927,23936,23940,23948,23958,23961,23967,23968,23969,23971,23979,23987,23988,23996,24006,24008,24023,24025,24028,24033,24038,24040,24041,24048,24054,24055,24058,24070,24073,24075,24076,24081,24084,24091,24093,24094,24097,24098,24101,24103,24105,24116,24117,24126,24128,24129,24131,24134,24138,24139,24141,24143,24157,24158,24159,24160,24162,24165,24166,24169,24177,24180,24181,24182,24188,24189,24197,24202,24203,24207,24209,24212,24213,24220,24222,24224,24225,24226,24227,24228,24230,24232,24233,24234,24235,24236,24237,24238,24240,24241,24242,24244,24246,24248,24249,24250,24251,24252,24253,24254,24255,24257,24258,24259,24261,24262,24263,24264,24268,24272,24273,24274,24275,24276,24278,24279,24282,24283,24284,24285,24287,24289,24290,24291,24292,24293,24294,24296,24297,24299,24300,24301,24302,24303,24304,24305,24306,24307,24308,24309,24310,24311,24312,24313,24314,24320,24321,24322,24324,24325,24327,24330,24331,24332,24334,24336,24339,24340,24341,24342,24343,24344,24347,24349,24350,24353,24356,24358,24359,24360,24361,24362,24363,24364,24365,24366,24369,24371,24373,24374,24376,24377,24378,24379,24380,24381,24382,24384,24385,24386,24387,24388,24389,24390,24393,24394,24395,24396,24401,24402,24403,24404,24405,24406,24407,24408,24409,24410,24412,24413,24414,24415,24417,24418,24419,24420,24421,24428,24430,24432,24433,24434,24435,24436,24437,24438,24439,24440,24441,24442,24445,24446,24447,24448,24449,24450,24451,24452,24453,24454,24455,24457,24458,24460,24461,24463,24465,24467,24472,24475,24477,24480,24481,24487,24492,24493,24494,24495,24496,24497,24498,24499,24500,24503,24504,24505,24506,24507,24510,24511,24512,24513,24515,24516,24517,24521,24522,24523,24524,24526,24527,24529,24530,24531,24532,24534,24539,24540,24541,24542,24543,24545,24546,24548,24549,24552,24553,24554,24555,24556,24558,24559,24560,24562,24564,24566,24567,24568,24571,24573,24574,24580,24581,24583,24585,24590,24593,24596,24598,24599,24600,24601,24604,24605,24611,24620,24622,24623,24629,24632,24634,24635,24636,24637,24639,24640,24641,24642,24643,24645,24647,24649,24651,24652,24653,24654,24655,24656,24657,24658,24659,24660,24661,24662,24665,24667,24668,24671,24673,24674,24675,24677,24678,24681,24685,24686,24689,24690,24694,24695,24697,24701,24703,24704,24705,24706,24707,24708,24710,24711,24712,24714,24715,24716,24718,24719,24720,24727,24730,24733,24737,24738,24742,24743,24744,24757,24759,24764,24765,24766,24767,24768,24769,24770,24771,24772,24776,24777,24778,24780,24781,24784,24786,24787,24788,24789,24790,24791,24793,24794,24795,24797,24799,24802,24804,24805,24807,24808,24811,24814,24819,24820,24821,24822,24823,24824,24826,24827,24828,24829,24834,24843,24844,24845,24846,24847,24848,24849,24850,24852,24853,24854,24855,24858,24860,24861,24864,24868,24871,24872,24874,24875,24876,24877,24878,24881,24888,24900,24903,24905,24907,24909,24910,24911,24912,24913,24914,24916,24921,24923,24924,24926,24928,24929,24931,24933,24934,24935,24936,24938,24939,24940,24943,24951,24952,24953,24954,24955,24956,24958,24959,24960,24962,24969,24976,24980,24981,24982,24983,24985,24986,24988,24989,24991,24993,24994,24995,24997,24998,24999,25000,25006,25007,25009,25010,25011,25012,25015,25016,25018,25019,25021,25022,25023,25024,25025,25028,25031,25035,25039,25047,25048,25065,25066,25067,25068,25069,25071,25072,25074,25075,25076,25077,25078,25079,25080,25083,25085,25086,25090,25091,25092,25094,25095,25096,25098,25099,25100,25102,25104,25107,25109,25110,25112,25113,25114,25117,25118,25119,25120,25121,25124,25125,25126,25127,25128,25132,25133,25134,25135,25136,25138,25144,25149,25151,25156,25159,25163,25164,25165,25166,25177,25179,25180,25205,25206,25208,25209,25210,25212,25213,25214,25218,25224,25231,25232,25233,25235,25239,25244,25246,25247,25248,25251,25252,25253,25265,25267,25271,25276,25277,25284,25286,25288,25290,25298,25300,25301,25303,25304,25305,25306,25310,25311,25316,25318,25319,25330,25331,25334,25336,25337,25339,25340,25341,25349,25351,25353,25354,25357,25359,25369,25371,25372,25378,25386,25388,25392,25397,25398,25402,25406,25409,25410,25419,25430,25469,25476,25477,25478,25488,25495,25497,25514,25520,25529,25531,25535,25538,25540,25547,25548,25550,25554,25555,25556,25557,25558,25559,25562,25567,25570,25571,25572,25573,25575,25576,25580,25590,25593,25594,25597,25600,25601,25603,25604,25607,25608,25611,25612,25614,25622,25626,25627,25628,25632,25635,25641,25643,25644,25646,25655,25656,25662,25663,25664,25665,25667,25670,25674,25677,25688,25692,25701,25706,25721,25722,25726,25727,25730,25731,25732,25733,25734,25735,25736,25737,25738,25746,25748,25749,25751,25755,25756,25759,25760,25762,25766,25770,25771,25772,25775,25776,25778,25779,25780,25781,25786,25787,25789,25790,25791,25798,25799,25800,25805,25809,25810,25813,25821,25829,25831,25843,25850,25851,25853,25855,25864,25866,25868,25869,25870,25872,25875,25878,25879,25881,25883,25886,25887,25899,25901,25903,25905,25908,25909,25910,25915,25922,25923,25924,25925,25926,25927,25928,25929,25930,25936,25942,25958,25961,25968,25970,25972,25976,25977,25978,25980,25981,25983,25985,25988,25989,25994,25995,25999,26000,26002,26004,26005,26006,26010,26014,26015,26018,26019,26020,26021,26023,26024,26026,26029,26031,26034,26037,26038,26040,26042,26043,26044,26049,26058,26060,26063,26064,26065,26068,26069,26076,26080,26081,26086,26090,26095,26096,26098,26102,26103,26105,26108,26109,26110,26111,26133,26134,26146,26152,26183,26192,26197,26202,26206,26208,26219,26226,26237,26239,26247,26248,26250,26259,26274,26282,26299,26302,26322,26326,26340,26343,26381,26389,26397,26404,26406,26410,26413,26441,26442,26447,26456,26459,26474,26478,26479,26480,26485,26497,26504,26521,26522,26523,26538,26542,26549,26551,26557,26566,26567,26575,26625,26627,26630,26632,26656,26657,26671,26672,26681,26684,26697,26729,26734,26748,26749,26764,26769,26770,26778,26781,26785,26798,26823,26827,26828,26830,26834,26842,26852,26860,26862,26872,26874,26879,26880,26881,26887,26889,26893,26895,26897,26915,26917,26927,26932,26933,26936,26938,26942,26946,26947,26949,26950,26951,26952,26953,26957,26966,26968,26970,26994,26998,27003,27004,27005,27012,27013,27016,27021,27025,27028,27029,27040,27051,27053,27055,27057,27061,27070,27077,27091,27097,27106,27108,27111,27116,27119,27121,27123,27124,27125,27126,27129,27132,27138,27140,27146,27150,27157,27172,27174,27175,27176,27184,27203,27214,27220,27222,27225,27228,27230,27234,27235,27236,27244,27245,27250,27251,27264,27267,27270,27272,27274,27277,27283,27286,27289,27290,27298,27301,27304,27309,27318,27328,27333,27340,27341,27344,27345,27346,27348,27351,27354,27356,27367,27373,27380,27381,27382,27384,27390,27394,27401,27422,27429,27432,27438,27439,27443,27450,27451,27457,27492,27497,27498,27501,27503,27504,27505,27513,27515,27516,27522,27527,27532,27541,27559,27560,27564,27573,27574,27578,27579,27580,27591,27601,27614,27626,27648,27651,27658,27662,27666,27668,27670,27675,27683,27720,27722,27724,27725,27757,27768,27781,27820,27829,27834,27853,27854,27874,27877,27883,27895,27899,27900,27911,27923,27928,27953,27958,27980,27989,27999,28008,28033,28034,28041,28043,28044,28063,28101,28178,28181,28184,28218,28235,28247,28277,28313,28314,28315,28391,28397,28398,28411,28430,28445,28456,28478,28500,28504,28517,28518,28538,28560,28569,28570,28571,28624,28639,28640,28650,28657,28660,28662,28667,28668,28703,28710,28722,28723,28748,28755,28763,28767,28807,28815,28816,28827,28840,28854,28892,28916,28931,28937,28942,28970,28977,28998,29003,29022,29025,29029,29031,29059,29071,29081,29090,29094,29118,29145,29204,29225,29228,29230,29235,29245,29246,29260,29283,29296,29302,29306,29315,29322,29341,29346,29352,29354,29356,29370,29375,29386,29389,29399,29402,29430,29445,29449,29482,29483,29485,29486,29504,29507,29513,29527,29532,29534,29540,29553,29558,29559,29566,29570,29592,29614,29634,29656,29667,29669,29671,29672,29680,29708,29730,29741,29747,29770,29781,29829,29844,29846,29853,29868,29874,29888,29940,29968,29969,29970,29973,29975,29990,29992,30000,30018,30019,30033,30034,30039,30047,30049,30059,30069,30072,30073,30079,30084,30087,30103,30120,30127,30132,30144,30150,30154,30157,30163,30187,30204,30211,30217,30225,30231,30233,30236,30296,30316,30325,30369,30372,30391,30407,30437,30464,30469,30497,30502,30503,30505,30506,30507,30526,30537,30544,30551,30552,30553,30567,30575,30578,30582,30584,30591,30598,30601,30602,30603,30606,30617,30619,30624,30630,30632,30635,30638,30639,30650,30651,30694,30702,30703,30709,30710,30712,30713,30714,30720,30725,30729,30735,30738,30740,30743,30744,30745,30747,30753,30760,30770,30771,30772,30773,30774,30775,30776,30777,30780,30781,30782,30783,30784,30785,30786,30787,30788,30789,30790,30792,30793,30794,30795,30796,30797,30798,30799,30800,30801,30802,30803,30804,30805,30806,30807,30808,30809,30811,30812,30814,30820,30821,30823,30824,30828,30829,30830,30831,30832,30833,30835,30836,30837,30838,30839,30840,30841,30842,30843,30844,30845,30846,30847,30848,30849,30850,30851,30853,30855,30856,30857,30860,30862,30863,30864,30865,30866,30867,30869,30870,30871,30872,30873,30875,30877,30879,30880,30881,30882,30883,30884,30885,30887,30888,30890,30891,30892,30893,30894,30895,30896,30897,30898,30899,30900,30901,30902,30904,30905,30906,30907,30908,30909,30910,30911,30912,30913,30914,30915,30916,30919,30920,30921,30922,30923,30924,30925,30927,30928,30929,30931,30932,30934,30935,30937,30939,30940,30941,30942,30943,30944,30945,30946,30947,30948,30949,30951,30952,30953,30954,30955,30956,30957,30958,30959,30961,30962,30963,30964,30965,30966,30967,30970,30971,30972,30973,30974,30975,30976,30979,30980,30981,30982,30985,30986,30987,30990,30991,30993,30994,30995,30997,31002,31004,31006,31007,31009,31010,31011,31012,31014,31015,31016,31017,31018,31020,31021,31022,31023,31025,31026,31027,31028,31030,31031,31032,31033,31034,31036,31037,31038,31039,31040,31041,31042,31045,31046,31047,31048,31049,31050,31051,31052,31053,31054,31055,31056,31057,31058,31059,31062,31063,31067,31068,31069,31070,31071,31072,31074,31075,31076,31077,31078,31079,31080,31081,31083,31084,31085,31086,31088,31090,31092,31097,31099]]],["But",[16,16,[[39,3,3,0,3,[[939,1,1,0,1],[949,1,1,1,2],[954,1,1,2,3]]],[40,3,3,3,6,[[959,1,1,3,4],[960,1,1,4,5],[970,1,1,5,6]]],[41,6,6,6,12,[[976,1,1,6,7],[977,1,1,7,8],[979,1,1,8,9],[985,1,1,9,10],[993,1,1,10,11],[996,1,1,11,12]]],[42,1,1,12,13,[[1003,1,1,12,13]]],[61,2,2,13,15,[[1160,2,2,13,15]]],[65,1,1,15,16,[[1177,1,1,15,16]]]],[23478,23872,24114,24295,24355,24813,25089,25137,25230,25545,25844,26020,26354,30570,30577,30874]]],["Even",[9,9,[[41,1,1,0,1,[[982,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]],[45,2,2,3,5,[[1070,1,1,3,4],[1075,1,1,4,5]]],[47,1,1,5,6,[[1094,1,1,5,6]]],[48,1,1,6,7,[[1098,1,1,6,7]]],[58,2,2,7,9,[[1147,1,1,7,8],[1148,1,1,8,9]]]],[25374,26406,28179,28554,28690,29134,29234,30310,30324]]],["For",[3,3,[[41,1,1,0,1,[[978,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]],[61,1,1,2,3,[[1159,1,1,2,3]]]],[25178,28236,30542]]],["I",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29001]]],["Likewise",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28341]]],["Moreover",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27611]]],["Neither",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29308]]],["Now",[3,3,[[40,1,1,0,1,[[964,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[980,1,1,2,3]]]],[24514,25014,25267]]],["Or",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23326]]],["So",[7,7,[[39,1,1,0,1,[[950,1,1,0,1]]],[41,4,4,1,5,[[986,1,1,1,2],[988,1,1,2,3],[992,1,1,3,4],[993,1,1,4,5]]],[57,1,1,5,6,[[1135,1,1,5,6]]],[65,1,1,6,7,[[1183,1,1,6,7]]]],[23882,25574,25625,25794,25857,30014,30978]]],["Then",[12,12,[[39,4,4,0,4,[[943,1,1,0,1],[944,1,1,1,2],[950,1,1,2,3],[955,1,1,3,4]]],[40,3,3,4,7,[[963,1,1,4,5],[966,1,1,5,6],[968,1,1,6,7]]],[41,4,4,7,11,[[974,1,1,7,8],[979,1,1,8,9],[980,1,1,9,10],[996,1,1,10,11]]],[65,1,1,11,12,[[1188,1,1,11,12]]]],[23654,23694,23907,24154,24464,24616,24691,25001,25217,25282,26016,31089]]],["Therefore",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28467]]],["Thus",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23639]]],["When",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]]],[23610,24277]]],["Yea",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27159]]],["Yet",[3,3,[[42,1,1,0,1,[[1004,1,1,0,1]]],[45,1,1,1,2,[[1066,1,1,1,2]]],[52,1,1,2,3,[[1118,1,1,2,3]]]],[26436,28464,29693]]],["a",[3,3,[[41,3,3,0,3,[[982,1,1,0,1],[990,1,1,1,2],[994,1,1,2,3]]]],[25395,25689,25923]]],["also",[497,475,[[39,36,36,0,36,[[931,1,1,0,1],[933,2,2,1,3],[934,2,2,3,5],[940,1,1,5,6],[941,1,1,6,7],[943,2,2,7,9],[944,1,1,9,10],[945,1,1,10,11],[946,2,2,11,13],[947,2,2,13,15],[948,2,2,15,17],[950,2,2,17,19],[951,2,2,19,21],[952,4,4,21,25],[953,4,4,25,29],[954,5,5,29,34],[955,2,2,34,36]]],[40,17,17,36,53,[[957,1,1,36,37],[958,3,3,37,40],[959,1,1,40,41],[960,1,1,41,42],[963,1,1,42,43],[964,1,1,43,44],[967,1,1,44,45],[968,2,2,45,47],[970,2,2,47,49],[971,4,4,49,53]]],[41,81,77,53,130,[[973,2,2,53,55],[974,2,2,55,57],[975,3,3,57,60],[976,3,3,60,63],[977,3,3,63,66],[978,13,12,66,78],[979,2,2,78,80],[981,1,1,80,81],[982,2,2,81,83],[983,10,9,83,92],[984,4,4,92,96],[985,1,1,96,97],[986,3,2,97,99],[988,6,5,99,104],[989,3,3,104,107],[990,1,1,107,108],[991,2,2,108,110],[992,2,2,110,112],[993,1,1,112,113],[994,7,7,113,120],[995,8,8,120,128],[996,2,2,128,130]]],[42,45,44,130,174,[[999,1,1,130,131],[1000,1,1,131,132],[1001,3,3,132,135],[1002,3,3,135,138],[1003,3,3,138,141],[1004,1,1,141,142],[1005,3,3,142,145],[1007,2,2,145,147],[1008,4,4,147,151],[1009,4,4,151,155],[1010,4,4,155,159],[1011,4,3,159,162],[1013,3,3,162,165],[1014,4,4,165,169],[1015,1,1,169,170],[1016,1,1,170,171],[1017,3,3,171,174]]],[43,53,51,174,225,[[1018,2,2,174,176],[1019,2,2,176,178],[1020,1,1,178,179],[1022,2,2,179,181],[1024,1,1,181,182],[1025,1,1,182,183],[1026,1,1,183,184],[1027,1,1,184,185],[1028,3,3,185,188],[1029,1,1,188,189],[1030,5,5,189,194],[1031,1,1,194,195],[1032,3,3,195,198],[1034,4,3,198,201],[1036,2,2,201,203],[1038,4,4,203,207],[1039,3,2,207,209],[1040,4,4,209,213],[1041,4,4,213,217],[1042,1,1,217,218],[1043,3,3,218,221],[1044,2,2,221,223],[1045,2,2,223,225]]],[44,54,48,225,273,[[1046,5,5,225,230],[1047,1,1,230,231],[1048,2,1,231,232],[1049,6,6,232,238],[1050,4,4,238,242],[1051,4,4,242,246],[1052,1,1,246,247],[1053,11,9,247,256],[1054,3,3,256,259],[1056,7,6,259,265],[1058,2,2,265,267],[1060,6,4,267,271],[1061,2,2,271,273]]],[45,32,31,273,304,[[1062,2,2,273,275],[1063,1,1,275,276],[1065,1,1,276,277],[1068,3,3,277,280],[1070,1,1,280,281],[1071,3,3,281,284],[1072,5,5,284,289],[1073,1,1,289,290],[1074,1,1,290,291],[1075,4,3,291,294],[1076,9,9,294,303],[1077,1,1,303,304]]],[46,31,28,304,332,[[1078,6,5,304,309],[1079,2,2,309,311],[1080,1,1,311,312],[1081,4,4,312,316],[1082,1,1,316,317],[1083,2,2,317,319],[1085,8,7,319,326],[1086,3,2,326,328],[1087,2,2,328,330],[1090,2,2,330,332]]],[47,8,8,332,340,[[1092,4,4,332,336],[1095,2,2,336,338],[1096,2,2,338,340]]],[48,12,11,340,351,[[1097,4,3,340,343],[1098,2,2,343,345],[1100,2,2,345,347],[1101,2,2,347,349],[1102,2,2,349,351]]],[49,16,15,351,366,[[1103,3,3,351,354],[1104,6,6,354,360],[1105,3,3,360,363],[1106,4,3,363,366]]],[50,15,15,366,381,[[1107,5,5,366,371],[1108,2,2,371,373],[1109,5,5,373,378],[1110,3,3,378,381]]],[51,10,9,381,390,[[1111,2,2,381,383],[1112,4,3,383,386],[1113,1,1,386,387],[1114,1,1,387,388],[1115,2,2,388,390]]],[52,2,2,390,392,[[1116,2,2,390,392]]],[53,5,5,392,397,[[1120,1,1,392,393],[1123,3,3,393,396],[1124,1,1,396,397]]],[54,11,11,397,408,[[1125,2,2,397,399],[1126,6,6,399,405],[1127,2,2,405,407],[1128,1,1,407,408]]],[55,2,2,408,410,[[1131,2,2,408,410]]],[56,3,3,410,413,[[1132,3,3,410,413]]],[57,23,22,413,435,[[1133,1,1,413,414],[1134,1,1,414,415],[1135,1,1,415,416],[1136,1,1,416,417],[1137,4,4,417,421],[1139,5,4,421,425],[1140,2,2,425,427],[1141,1,1,427,428],[1142,1,1,428,429],[1143,2,2,429,431],[1144,2,2,431,433],[1145,2,2,433,435]]],[58,8,8,435,443,[[1146,1,1,435,436],[1147,5,5,436,441],[1148,2,2,441,443]]],[59,12,12,443,455,[[1152,5,5,443,448],[1153,5,5,448,453],[1154,2,2,453,455]]],[60,6,5,455,460,[[1156,1,1,455,456],[1157,1,1,456,457],[1158,4,3,457,460]]],[61,7,7,460,467,[[1159,1,1,460,461],[1160,4,4,461,465],[1162,2,2,465,467]]],[62,1,1,467,468,[[1164,1,1,467,468]]],[64,2,2,468,470,[[1166,2,2,468,470]]],[65,5,5,470,475,[[1167,1,1,470,471],[1168,1,1,471,472],[1172,1,1,472,473],[1177,1,1,473,474],[1180,1,1,474,475]]]],[23202,23273,23274,23296,23303,23534,23565,23636,23649,23673,23712,23760,23762,23765,23790,23796,23799,23898,23899,23944,23946,23984,23994,23996,24001,24019,24025,24049,24052,24067,24089,24123,24125,24127,24170,24186,24234,24281,24286,24288,24307,24359,24481,24538,24665,24679,24695,24763,24785,24857,24866,24867,24869,24928,24929,24977,25008,25034,25037,25046,25086,25104,25106,25117,25143,25146,25150,25151,25152,25159,25160,25162,25175,25177,25178,25179,25180,25182,25203,25244,25362,25364,25402,25406,25409,25423,25435,25439,25445,25450,25451,25454,25467,25493,25499,25513,25526,25565,25579,25621,25630,25634,25642,25648,25675,25677,25679,25703,25740,25750,25810,25811,25828,25884,25888,25903,25920,25922,25923,25932,25942,25962,25967,25970,25971,25973,25986,25990,26013,26014,26143,26201,26228,26229,26237,26281,26293,26324,26331,26375,26380,26400,26455,26467,26480,26539,26575,26589,26598,26606,26622,26639,26644,26662,26664,26669,26671,26675,26687,26719,26722,26726,26760,26778,26780,26787,26790,26802,26810,26864,26875,26901,26918,26923,26926,26934,26971,26975,27013,27061,27075,27161,27189,27248,27304,27308,27325,27337,27340,27367,27371,27384,27395,27397,27429,27469,27474,27477,27529,27535,27551,27606,27612,27677,27680,27688,27692,27709,27724,27745,27764,27767,27769,27775,27778,27784,27795,27818,27833,27849,27852,27865,27891,27908,27909,27936,27943,27945,27954,27957,27974,28020,28028,28031,28033,28038,28043,28046,28049,28050,28058,28062,28072,28073,28076,28079,28095,28127,28133,28137,28139,28142,28145,28146,28148,28150,28165,28179,28180,28210,28214,28225,28231,28232,28240,28271,28272,28310,28317,28325,28330,28340,28343,28371,28379,28407,28441,28490,28491,28509,28548,28576,28577,28580,28606,28612,28619,28623,28625,28646,28677,28693,28697,28712,28719,28720,28721,28732,28739,28746,28758,28760,28767,28786,28805,28806,28807,28811,28814,28833,28834,28847,28869,28870,28872,28873,28888,28899,28911,28938,28939,28942,28943,28946,28951,28953,28962,28968,28982,28985,29047,29052,29082,29091,29094,29098,29183,29187,29189,29195,29217,29219,29227,29232,29251,29281,29282,29306,29329,29346,29358,29376,29381,29390,29395,29396,29400,29409,29415,29418,29425,29433,29441,29445,29452,29457,29471,29472,29473,29474,29494,29505,29506,29521,29524,29525,29530,29532,29543,29545,29558,29565,29568,29578,29583,29584,29596,29609,29632,29645,29654,29660,29725,29776,29783,29788,29800,29814,29821,29829,29832,29837,29838,29839,29847,29861,29862,29885,29926,29937,29947,29959,29960,29965,29991,29997,30024,30032,30033,30035,30036,30066,30073,30076,30089,30095,30098,30106,30148,30183,30191,30213,30238,30244,30253,30277,30295,30304,30312,30318,30319,30321,30323,30404,30405,30407,30417,30420,30425,30429,30442,30443,30445,30452,30459,30498,30501,30532,30537,30538,30543,30552,30556,30573,30574,30614,30624,30646,30680,30686,30706,30732,30804,30880,30943]]],["an",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27546]]],["and",[6226,3957,[[39,865,568,0,568,[[929,11,9,0,9],[930,24,11,9,20],[931,13,8,20,28],[932,32,17,28,45],[933,31,21,45,66],[934,20,13,66,79],[935,29,16,79,95],[936,34,19,95,114],[937,33,24,114,138],[938,29,21,138,159],[939,29,17,159,176],[940,49,32,176,208],[941,66,40,208,248],[942,27,19,248,267],[943,24,16,267,283],[944,23,14,283,297],[945,28,19,297,316],[946,21,16,316,332],[947,21,15,332,347],[948,27,20,347,367],[949,47,28,367,395],[950,29,21,395,416],[951,44,25,416,441],[952,41,27,441,468],[953,43,29,468,497],[954,42,31,497,528],[955,35,28,528,556],[956,13,12,556,568]]],[40,626,378,568,946,[[957,42,31,568,599],[958,33,18,599,617],[959,34,20,617,637],[960,41,19,637,656],[961,46,26,656,682],[962,70,36,682,718],[963,25,21,718,739],[964,35,20,739,759],[965,45,29,759,788],[966,47,28,788,816],[967,29,17,816,833],[968,42,26,833,859],[969,32,19,859,878],[970,62,38,878,916],[971,30,19,916,935],[972,13,11,935,946]]],[41,924,600,946,1546,[[973,55,42,946,988],[974,40,24,988,1012],[975,20,14,1012,1026],[976,28,20,1026,1046],[977,35,21,1046,1067],[978,58,31,1067,1098],[979,43,25,1098,1123],[980,73,40,1123,1163],[981,58,34,1163,1197],[982,41,23,1197,1220],[983,46,28,1220,1248],[984,41,29,1248,1277],[985,45,23,1277,1300],[986,31,19,1300,1319],[987,36,22,1319,1341],[988,23,17,1341,1358],[989,24,17,1358,1375],[990,20,15,1375,1390],[991,23,20,1390,1410],[992,30,22,1410,1432],[993,35,20,1432,1452],[994,34,26,1452,1478],[995,36,31,1478,1509],[996,49,37,1509,1546]]],[42,648,450,1546,1996,[[997,41,32,1546,1578],[998,24,14,1578,1592],[999,27,19,1592,1611],[1000,39,28,1611,1639],[1001,26,22,1639,1661],[1002,41,35,1661,1696],[1003,31,23,1696,1719],[1004,40,27,1719,1746],[1005,32,20,1746,1766],[1006,38,26,1766,1792],[1007,33,24,1792,1816],[1008,32,26,1816,1842],[1009,19,14,1842,1856],[1010,30,22,1856,1878],[1011,16,9,1878,1887],[1012,30,18,1887,1905],[1013,19,12,1905,1917],[1014,33,20,1917,1937],[1015,36,29,1937,1966],[1016,39,20,1966,1986],[1017,22,10,1986,1996]]],[43,824,546,1996,2542,[[1018,27,13,1996,2009],[1019,54,31,2009,2040],[1020,23,14,2040,2054],[1021,38,23,2054,2077],[1022,42,29,2077,2106],[1023,26,12,2106,2118],[1024,62,39,2118,2157],[1025,29,23,2157,2180],[1026,37,24,2180,2204],[1027,34,26,2204,2230],[1028,26,17,2230,2247],[1029,18,12,2247,2259],[1030,41,22,2259,2281],[1031,28,17,2281,2298],[1032,42,22,2298,2320],[1033,32,26,2320,2346],[1034,34,24,2346,2370],[1035,20,15,2370,2385],[1036,27,22,2385,2407],[1037,27,19,2407,2426],[1038,28,16,2426,2442],[1039,26,19,2442,2461],[1040,14,12,2461,2473],[1041,13,13,2473,2486],[1042,13,9,2486,2495],[1043,20,14,2495,2509],[1044,18,17,2509,2526],[1045,25,16,2526,2542]]],[44,184,137,2542,2679,[[1046,16,11,2542,2553],[1047,21,14,2553,2567],[1048,11,11,2567,2578],[1049,5,5,2578,2583],[1050,5,4,2583,2587],[1051,2,2,2587,2589],[1052,6,4,2589,2593],[1053,5,5,2593,2598],[1054,16,11,2598,2609],[1055,8,8,2609,2617],[1056,21,15,2617,2632],[1057,4,3,2632,2635],[1058,7,5,2635,2640],[1059,15,9,2640,2649],[1060,18,17,2649,2666],[1061,24,13,2666,2679]]],[45,182,136,2679,2815,[[1062,18,13,2679,2692],[1063,5,3,2692,2695],[1064,7,5,2695,2700],[1065,13,8,2700,2708],[1066,5,4,2708,2712],[1067,12,9,2712,2721],[1068,19,14,2721,2735],[1069,7,5,2735,2740],[1070,8,6,2740,2746],[1071,14,11,2746,2757],[1072,15,11,2757,2768],[1073,7,7,2768,2775],[1074,7,4,2775,2779],[1075,15,12,2779,2791],[1076,20,17,2791,2808],[1077,10,7,2808,2815]]],[46,109,73,2815,2888,[[1078,16,12,2815,2827],[1079,5,5,2827,2832],[1080,1,1,2832,2833],[1081,4,3,2833,2836],[1082,6,5,2836,2841],[1083,16,8,2841,2849],[1084,3,3,2849,2852],[1085,14,10,2852,2862],[1086,8,5,2862,2867],[1087,7,5,2867,2872],[1088,10,5,2872,2877],[1089,11,7,2877,2884],[1090,8,4,2884,2888]]],[47,43,37,2888,2925,[[1091,11,10,2888,2898],[1092,8,7,2898,2905],[1093,5,5,2905,2910],[1094,9,7,2910,2917],[1095,5,5,2917,2922],[1096,5,3,2922,2925]]],[48,94,69,2925,2994,[[1097,16,12,2925,2937],[1098,12,9,2937,2946],[1099,10,7,2946,2953],[1100,18,13,2953,2966],[1101,21,14,2966,2980],[1102,17,14,2980,2994]]],[49,67,46,2994,3040,[[1103,23,17,2994,3011],[1104,17,12,3011,3023],[1105,9,6,3023,3029],[1106,18,11,3029,3040]]],[50,72,52,3040,3092,[[1107,24,17,3040,3057],[1108,22,14,3057,3071],[1109,13,11,3071,3082],[1110,13,10,3082,3092]]],[51,71,40,3092,3132,[[1111,15,7,3092,3099],[1112,14,7,3099,3106],[1113,15,8,3106,3114],[1114,12,8,3114,3122],[1115,15,10,3122,3132]]],[52,38,27,3132,3159,[[1116,15,9,3132,3141],[1117,13,9,3141,3150],[1118,10,9,3150,3159]]],[53,80,57,3159,3216,[[1119,17,12,3159,3171],[1120,13,8,3171,3179],[1121,4,4,3179,3183],[1122,12,11,3183,3194],[1123,15,9,3194,3203],[1124,19,13,3203,3216]]],[54,47,33,3216,3249,[[1125,15,12,3216,3228],[1126,7,5,3228,3233],[1127,8,7,3233,3240],[1128,17,9,3240,3249]]],[55,30,20,3249,3269,[[1129,10,8,3249,3257],[1130,7,4,3257,3261],[1131,13,8,3261,3269]]],[56,11,7,3269,3276,[[1132,11,7,3269,3276]]],[57,179,126,3276,3402,[[1133,9,8,3276,3284],[1134,14,10,3284,3294],[1135,4,4,3294,3298],[1136,9,4,3298,3302],[1137,9,6,3302,3308],[1138,15,12,3308,3320],[1139,6,6,3320,3326],[1140,12,8,3326,3334],[1141,20,11,3334,3345],[1142,20,16,3345,3361],[1143,30,20,3361,3381],[1144,21,14,3381,3395],[1145,10,7,3395,3402]]],[58,96,67,3402,3469,[[1146,18,13,3402,3415],[1147,15,13,3415,3428],[1148,19,13,3428,3441],[1149,22,13,3441,3454],[1150,22,15,3454,3469]]],[59,53,41,3469,3510,[[1151,17,12,3469,3481],[1152,11,8,3481,3489],[1153,13,10,3489,3499],[1154,6,6,3499,3505],[1155,6,5,3505,3510]]],[60,41,31,3510,3541,[[1156,14,11,3510,3521],[1157,10,9,3521,3530],[1158,17,11,3530,3541]]],[61,91,64,3541,3605,[[1159,17,9,3541,3550],[1160,23,15,3550,3565],[1161,15,14,3565,3579],[1162,16,12,3579,3591],[1163,20,14,3591,3605]]],[62,11,7,3605,3612,[[1164,11,7,3605,3612]]],[63,11,7,3612,3619,[[1165,11,7,3612,3619]]],[64,17,9,3619,3628,[[1166,17,9,3619,3628]]],[65,812,329,3628,3957,[[1167,44,19,3628,3647],[1168,44,18,3647,3665],[1169,42,16,3665,3681],[1170,29,11,3681,3692],[1171,38,13,3692,3705],[1172,45,16,3705,3721],[1173,27,9,3721,3730],[1174,29,10,3730,3740],[1175,37,16,3740,3756],[1176,23,10,3756,3766],[1177,48,18,3766,3784],[1178,29,13,3784,3797],[1179,31,14,3797,3811],[1180,36,16,3811,3827],[1181,14,7,3827,3834],[1182,33,20,3834,3854],[1183,39,14,3854,3868],[1184,72,22,3868,3890],[1185,43,19,3890,3909],[1186,36,12,3909,3921],[1187,40,20,3921,3941],[1188,33,16,3941,3957]]]],[23146,23147,23155,23161,23163,23165,23167,23168,23169,23171,23172,23173,23178,23180,23182,23183,23185,23187,23189,23190,23196,23197,23199,23202,23203,23204,23206,23208,23211,23214,23215,23217,23219,23220,23222,23224,23225,23226,23227,23228,23230,23231,23232,23233,23234,23235,23240,23245,23246,23247,23249,23250,23252,23253,23254,23258,23259,23263,23264,23266,23272,23274,23276,23277,23278,23279,23284,23286,23287,23288,23295,23299,23300,23301,23302,23306,23307,23312,23315,23318,23320,23321,23322,23323,23324,23328,23329,23330,23335,23338,23340,23341,23342,23343,23345,23349,23353,23354,23355,23356,23357,23358,23359,23360,23361,23362,23365,23366,23367,23371,23372,23377,23378,23379,23380,23381,23384,23385,23387,23388,23389,23390,23392,23393,23394,23395,23396,23397,23398,23401,23402,23404,23406,23407,23409,23412,23414,23415,23418,23419,23420,23421,23422,23432,23433,23434,23435,23438,23442,23443,23444,23445,23446,23452,23454,23455,23456,23457,23458,23460,23463,23464,23468,23471,23472,23475,23476,23477,23478,23480,23481,23484,23486,23487,23488,23489,23490,23492,23493,23494,23496,23500,23502,23504,23507,23509,23511,23512,23514,23518,23519,23520,23522,23524,23526,23527,23528,23529,23530,23531,23532,23533,23534,23535,23536,23537,23538,23539,23540,23541,23543,23544,23545,23546,23547,23551,23552,23553,23554,23555,23556,23558,23559,23561,23562,23564,23565,23567,23569,23570,23571,23572,23573,23575,23578,23579,23580,23581,23583,23585,23586,23587,23588,23589,23591,23593,23594,23596,23599,23600,23603,23606,23608,23609,23610,23611,23612,23614,23616,23617,23618,23619,23623,23627,23628,23632,23633,23634,23637,23641,23643,23650,23654,23659,23662,23663,23664,23665,23667,23669,23670,23671,23672,23675,23676,23678,23681,23682,23683,23684,23689,23690,23691,23693,23696,23698,23699,23701,23702,23703,23704,23705,23706,23707,23711,23712,23714,23715,23716,23717,23718,23720,23721,23723,23724,23727,23729,23730,23733,23735,23736,23739,23742,23744,23745,23748,23752,23753,23754,23755,23756,23758,23763,23764,23765,23766,23767,23769,23771,23774,23775,23776,23781,23783,23789,23791,23792,23796,23797,23798,23799,23800,23802,23804,23806,23808,23809,23810,23811,23812,23813,23814,23815,23817,23820,23824,23826,23827,23828,23829,23831,23832,23833,23834,23835,23838,23840,23841,23842,23843,23845,23847,23849,23854,23856,23857,23858,23859,23862,23864,23865,23867,23868,23869,23871,23875,23876,23878,23879,23881,23882,23885,23887,23888,23892,23893,23894,23895,23896,23897,23898,23904,23907,23909,23910,23912,23919,23920,23921,23922,23923,23924,23925,23930,23931,23932,23933,23935,23937,23938,23939,23940,23941,23943,23944,23945,23946,23947,23952,23953,23955,23958,23960,23962,23963,23964,23966,23967,23968,23971,23976,23981,23984,23986,23987,23988,23989,23992,23993,23995,23996,23997,23998,24000,24002,24006,24007,24008,24010,24013,24015,24017,24018,24022,24023,24024,24026,24027,24029,24031,24032,24034,24035,24036,24037,24038,24039,24040,24043,24044,24045,24046,24047,24049,24050,24051,24052,24056,24057,24058,24061,24063,24072,24073,24080,24081,24085,24090,24091,24092,24094,24095,24099,24101,24103,24104,24105,24107,24109,24111,24112,24113,24115,24118,24121,24123,24125,24128,24130,24131,24132,24134,24140,24141,24149,24154,24158,24159,24160,24163,24164,24167,24169,24170,24171,24177,24180,24181,24182,24183,24185,24189,24190,24191,24193,24195,24196,24197,24198,24199,24202,24203,24204,24209,24210,24213,24214,24215,24219,24220,24221,24224,24225,24228,24230,24231,24232,24233,24234,24235,24236,24237,24238,24240,24241,24242,24244,24245,24246,24247,24249,24250,24251,24254,24255,24256,24257,24259,24260,24261,24262,24264,24266,24269,24271,24272,24273,24274,24275,24276,24278,24280,24281,24282,24283,24285,24286,24289,24293,24295,24296,24299,24301,24302,24303,24305,24306,24307,24310,24311,24314,24315,24316,24319,24320,24322,24323,24324,24325,24327,24328,24329,24330,24331,24335,24336,24338,24342,24343,24347,24348,24350,24355,24361,24362,24364,24367,24368,24369,24370,24377,24378,24379,24380,24383,24384,24385,24386,24387,24388,24390,24393,24394,24395,24397,24398,24401,24402,24403,24404,24406,24407,24408,24409,24410,24411,24414,24416,24420,24421,24424,24426,24427,24428,24429,24433,24435,24436,24437,24438,24440,24441,24442,24443,24444,24445,24447,24448,24449,24450,24452,24454,24455,24456,24457,24458,24460,24463,24464,24466,24467,24468,24471,24473,24476,24477,24482,24486,24487,24489,24490,24491,24493,24494,24495,24496,24497,24498,24500,24501,24502,24506,24507,24508,24509,24511,24512,24515,24518,24522,24523,24525,24527,24531,24533,24534,24535,24536,24538,24540,24542,24543,24545,24550,24551,24552,24553,24556,24558,24560,24563,24564,24565,24567,24568,24569,24570,24571,24573,24574,24575,24576,24580,24582,24584,24586,24587,24588,24589,24592,24594,24595,24599,24600,24602,24605,24607,24609,24616,24617,24618,24619,24620,24621,24622,24623,24625,24626,24627,24628,24629,24630,24633,24634,24635,24640,24641,24642,24643,24644,24646,24647,24648,24649,24651,24653,24655,24658,24663,24664,24667,24668,24669,24674,24676,24677,24678,24680,24681,24682,24684,24685,24686,24689,24690,24691,24692,24693,24694,24695,24699,24703,24705,24706,24710,24711,24712,24713,24714,24718,24720,24721,24723,24724,24725,24726,24729,24734,24739,24741,24742,24743,24744,24745,24748,24749,24750,24751,24755,24757,24758,24759,24761,24765,24767,24770,24772,24773,24776,24777,24781,24786,24787,24788,24789,24791,24792,24795,24797,24798,24799,24800,24801,24802,24803,24805,24807,24808,24809,24812,24815,24816,24819,24822,24824,24825,24827,24841,24842,24843,24845,24846,24847,24851,24853,24855,24856,24858,24862,24866,24867,24869,24870,24872,24873,24874,24878,24880,24881,24883,24884,24887,24889,24891,24892,24893,24895,24898,24899,24900,24905,24906,24907,24908,24910,24911,24912,24913,24914,24915,24917,24920,24922,24924,24925,24926,24928,24929,24933,24934,24935,24942,24945,24946,24948,24949,24950,24951,24952,24957,24958,24960,24961,24964,24965,24968,24972,24973,24977,24980,24982,24986,24987,24988,24989,24993,24998,25000,25001,25005,25006,25007,25010,25011,25013,25016,25017,25019,25020,25021,25024,25025,25026,25027,25030,25033,25034,25036,25037,25039,25040,25041,25042,25044,25046,25047,25064,25065,25069,25071,25072,25077,25079,25081,25085,25088,25090,25092,25094,25096,25098,25099,25101,25102,25104,25105,25111,25114,25116,25117,25121,25122,25123,25124,25125,25126,25128,25130,25131,25133,25134,25136,25137,25140,25143,25144,25145,25147,25149,25150,25152,25153,25154,25156,25157,25158,25159,25160,25161,25162,25163,25164,25165,25168,25169,25171,25174,25175,25176,25181,25183,25184,25188,25191,25192,25193,25194,25195,25198,25200,25202,25203,25204,25206,25207,25208,25210,25211,25212,25216,25217,25220,25221,25224,25225,25226,25227,25228,25229,25231,25233,25234,25239,25246,25247,25248,25249,25250,25251,25252,25253,25255,25257,25258,25259,25260,25262,25263,25264,25265,25266,25267,25268,25269,25270,25272,25273,25274,25277,25278,25279,25280,25284,25286,25287,25289,25290,25292,25295,25296,25297,25299,25300,25302,25303,25305,25307,25308,25312,25313,25314,25316,25317,25318,25319,25323,25324,25327,25329,25330,25331,25333,25334,25335,25337,25340,25341,25342,25343,25346,25349,25350,25353,25355,25356,25359,25363,25364,25367,25370,25371,25372,25373,25376,25377,25379,25382,25384,25385,25387,25390,25391,25393,25394,25395,25396,25397,25398,25400,25404,25410,25411,25412,25414,25415,25419,25422,25427,25428,25429,25430,25431,25432,25433,25434,25436,25437,25444,25446,25447,25448,25449,25451,25454,25456,25457,25458,25459,25462,25463,25465,25470,25474,25477,25480,25482,25483,25487,25490,25492,25494,25495,25496,25497,25498,25501,25504,25505,25506,25507,25508,25509,25511,25512,25514,25515,25517,25522,25524,25525,25526,25529,25530,25531,25532,25533,25535,25536,25537,25540,25542,25543,25544,25546,25547,25548,25549,25550,25551,25552,25556,25557,25558,25562,25564,25565,25569,25571,25572,25573,25574,25575,25576,25578,25579,25580,25582,25583,25584,25589,25590,25592,25594,25596,25601,25602,25603,25604,25606,25608,25609,25610,25611,25612,25613,25614,25615,25616,25617,25619,25620,25621,25626,25627,25630,25633,25634,25636,25637,25638,25639,25642,25643,25644,25645,25646,25649,25651,25653,25654,25655,25657,25659,25662,25667,25671,25673,25676,25678,25680,25682,25684,25685,25686,25687,25689,25691,25695,25697,25698,25704,25708,25710,25716,25718,25719,25720,25721,25722,25731,25733,25736,25737,25739,25741,25742,25743,25744,25745,25752,25753,25755,25758,25760,25766,25769,25774,25775,25776,25778,25780,25782,25788,25790,25791,25795,25798,25799,25800,25803,25804,25805,25807,25808,25809,25810,25813,25814,25815,25816,25825,25826,25831,25833,25834,25835,25836,25837,25838,25841,25842,25847,25849,25850,25851,25852,25853,25854,25855,25859,25860,25862,25866,25868,25869,25870,25872,25877,25878,25881,25883,25889,25890,25894,25896,25897,25899,25900,25905,25911,25914,25916,25917,25918,25919,25920,25928,25930,25937,25939,25943,25945,25946,25947,25948,25949,25950,25954,25957,25958,25960,25962,25963,25964,25965,25968,25971,25973,25974,25979,25980,25981,25984,25985,25986,25988,25989,25990,25991,25992,25996,25998,26000,26001,26002,26003,26006,26008,26009,26010,26011,26015,26016,26017,26018,26019,26020,26021,26022,26023,26024,26025,26026,26027,26028,26029,26030,26031,26032,26033,26035,26037,26038,26041,26042,26044,26045,26047,26048,26049,26054,26055,26058,26059,26060,26061,26063,26064,26069,26073,26076,26077,26078,26079,26081,26082,26083,26084,26085,26087,26088,26089,26090,26091,26092,26093,26094,26095,26096,26097,26103,26104,26105,26106,26107,26108,26109,26110,26113,26114,26115,26117,26122,26123,26124,26125,26126,26128,26129,26130,26131,26132,26139,26142,26143,26146,26147,26149,26151,26152,26155,26157,26159,26166,26167,26168,26169,26172,26173,26174,26176,26179,26180,26183,26184,26186,26190,26191,26192,26193,26194,26196,26198,26199,26203,26204,26206,26207,26209,26211,26214,26216,26218,26219,26221,26222,26224,26225,26226,26229,26230,26231,26234,26235,26240,26242,26243,26245,26249,26253,26254,26260,26262,26266,26268,26270,26272,26274,26276,26278,26279,26281,26283,26286,26287,26290,26292,26293,26294,26297,26299,26300,26301,26302,26306,26307,26310,26311,26312,26313,26315,26320,26321,26323,26326,26327,26331,26332,26339,26342,26344,26346,26347,26348,26349,26350,26354,26356,26359,26360,26361,26362,26363,26364,26365,26370,26373,26379,26380,26383,26384,26390,26391,26392,26395,26397,26399,26401,26402,26407,26409,26413,26414,26419,26420,26423,26425,26429,26430,26431,26433,26434,26436,26437,26438,26440,26446,26447,26448,26451,26454,26455,26458,26460,26464,26465,26467,26468,26470,26471,26474,26475,26476,26477,26479,26480,26482,26484,26485,26489,26490,26491,26493,26494,26495,26496,26497,26499,26501,26503,26505,26506,26508,26509,26510,26511,26514,26516,26517,26519,26521,26522,26524,26525,26528,26531,26534,26542,26548,26549,26551,26552,26554,26556,26557,26561,26564,26567,26568,26569,26570,26571,26573,26578,26579,26580,26582,26583,26585,26586,26589,26591,26593,26596,26597,26601,26602,26605,26606,26607,26608,26609,26610,26614,26616,26618,26620,26621,26624,26627,26628,26629,26633,26634,26635,26636,26637,26639,26640,26642,26643,26644,26651,26661,26662,26663,26671,26672,26673,26674,26675,26676,26677,26678,26679,26680,26684,26685,26687,26688,26689,26690,26691,26692,26694,26696,26698,26699,26700,26701,26705,26706,26709,26710,26715,26721,26723,26731,26734,26736,26739,26740,26741,26742,26743,26745,26746,26748,26750,26752,26753,26754,26755,26756,26758,26760,26762,26765,26767,26769,26770,26771,26772,26773,26782,26784,26785,26786,26788,26791,26795,26797,26800,26801,26803,26804,26805,26810,26812,26813,26814,26815,26816,26818,26820,26822,26823,26826,26827,26828,26829,26830,26831,26832,26834,26835,26838,26839,26841,26843,26844,26845,26848,26849,26850,26851,26854,26855,26856,26857,26859,26860,26863,26864,26865,26866,26868,26869,26870,26871,26873,26875,26879,26880,26881,26884,26885,26886,26887,26889,26892,26893,26894,26895,26896,26898,26900,26901,26904,26905,26907,26909,26911,26916,26918,26922,26924,26926,26931,26932,26936,26937,26940,26941,26943,26944,26946,26948,26949,26951,26953,26955,26956,26958,26959,26960,26961,26963,26966,26967,26968,26969,26971,26972,26975,26978,26979,26982,26985,26986,26987,26988,26989,26990,26991,26992,26993,26994,26995,26996,26997,26999,27002,27003,27004,27005,27006,27007,27009,27010,27012,27015,27020,27021,27023,27024,27025,27026,27027,27028,27030,27032,27035,27038,27041,27042,27045,27046,27047,27048,27049,27050,27051,27052,27053,27054,27059,27061,27062,27063,27064,27065,27068,27069,27070,27071,27073,27074,27075,27076,27077,27080,27082,27083,27084,27086,27087,27088,27090,27091,27092,27095,27096,27097,27099,27101,27104,27105,27106,27107,27108,27109,27110,27111,27112,27113,27114,27115,27118,27119,27121,27122,27123,27124,27126,27127,27129,27130,27131,27132,27133,27136,27137,27138,27140,27142,27143,27145,27148,27150,27151,27152,27154,27155,27157,27158,27159,27162,27167,27168,27169,27170,27171,27172,27173,27174,27175,27177,27178,27179,27182,27183,27185,27188,27189,27190,27193,27198,27199,27201,27202,27203,27204,27205,27206,27208,27211,27212,27214,27216,27217,27219,27222,27225,27226,27227,27228,27231,27233,27234,27237,27238,27240,27243,27244,27246,27247,27250,27251,27252,27255,27256,27257,27258,27261,27262,27263,27264,27266,27268,27269,27270,27271,27272,27275,27279,27281,27282,27283,27286,27289,27290,27291,27294,27297,27298,27299,27300,27301,27305,27308,27310,27312,27313,27314,27317,27319,27320,27321,27325,27326,27327,27329,27330,27331,27333,27337,27344,27345,27346,27347,27348,27354,27356,27357,27359,27360,27361,27362,27363,27364,27365,27369,27372,27373,27376,27377,27378,27379,27382,27383,27388,27389,27398,27403,27405,27407,27408,27410,27412,27414,27415,27416,27417,27418,27419,27420,27423,27424,27427,27428,27429,27431,27433,27434,27435,27436,27441,27444,27445,27446,27448,27449,27451,27454,27458,27459,27462,27464,27465,27466,27467,27469,27470,27471,27472,27474,27477,27480,27483,27484,27485,27486,27487,27488,27489,27492,27496,27498,27500,27501,27502,27505,27507,27508,27509,27510,27512,27514,27515,27516,27517,27520,27521,27522,27523,27524,27525,27526,27527,27528,27529,27530,27531,27532,27533,27535,27537,27538,27540,27541,27544,27546,27547,27548,27549,27550,27551,27552,27557,27560,27561,27562,27563,27565,27566,27567,27568,27569,27572,27575,27579,27580,27582,27583,27586,27591,27593,27594,27595,27597,27600,27601,27602,27603,27604,27605,27606,27607,27611,27612,27613,27614,27617,27620,27621,27623,27627,27628,27630,27632,27635,27636,27637,27638,27641,27645,27646,27647,27649,27650,27654,27657,27658,27660,27663,27667,27669,27671,27672,27675,27676,27677,27684,27688,27689,27691,27692,27694,27696,27697,27702,27705,27706,27708,27709,27710,27711,27713,27717,27718,27719,27720,27722,27723,27724,27726,27727,27729,27733,27734,27737,27740,27741,27743,27748,27750,27752,27753,27755,27757,27761,27767,27770,27771,27772,27774,27775,27783,27784,27785,27786,27788,27792,27793,27794,27798,27803,27809,27811,27815,27819,27820,27822,27823,27830,27833,27835,27836,27837,27839,27840,27841,27843,27845,27846,27848,27852,27853,27856,27860,27862,27864,27865,27866,27867,27870,27876,27878,27879,27883,27886,27887,27890,27895,27896,27901,27902,27905,27907,27908,27909,27912,27913,27914,27919,27922,27925,27926,27927,27929,27930,27935,27937,27942,27944,27946,27948,27950,27951,27953,27955,27957,27965,27966,27967,27969,27970,27971,27972,27974,27977,27979,27980,27982,27989,27991,27995,27999,28000,28005,28007,28010,28012,28013,28014,28017,28021,28025,28029,28036,28039,28047,28049,28059,28062,28064,28081,28087,28097,28102,28103,28114,28118,28119,28122,28138,28146,28157,28159,28160,28164,28170,28172,28177,28180,28183,28184,28188,28189,28191,28196,28197,28200,28206,28208,28209,28212,28217,28218,28219,28221,28223,28225,28226,28231,28233,28235,28238,28242,28244,28245,28247,28259,28260,28269,28275,28278,28279,28280,28283,28286,28287,28289,28291,28294,28297,28298,28299,28304,28307,28308,28312,28314,28315,28316,28321,28322,28324,28327,28329,28330,28331,28333,28334,28335,28338,28339,28343,28345,28348,28349,28350,28351,28353,28354,28357,28359,28361,28364,28365,28366,28368,28373,28377,28382,28385,28387,28388,28390,28391,28393,28396,28397,28398,28412,28413,28418,28423,28426,28434,28438,28439,28441,28442,28444,28450,28452,28455,28456,28458,28462,28468,28469,28473,28475,28478,28480,28481,28486,28487,28489,28492,28495,28498,28499,28500,28501,28506,28515,28517,28521,28522,28523,28524,28531,28532,28533,28534,28539,28544,28545,28546,28547,28550,28567,28568,28569,28574,28575,28576,28577,28587,28588,28593,28594,28595,28602,28607,28618,28621,28622,28624,28626,28627,28628,28629,28630,28637,28645,28646,28647,28657,28661,28665,28666,28667,28668,28674,28681,28688,28689,28699,28701,28703,28705,28706,28707,28709,28717,28718,28719,28722,28728,28729,28733,28742,28750,28752,28756,28758,28759,28762,28766,28768,28770,28771,28772,28782,28785,28791,28792,28793,28794,28795,28801,28802,28803,28806,28810,28812,28816,28817,28819,28820,28821,28822,28828,28831,28836,28838,28839,28843,28866,28872,28873,28885,28889,28892,28895,28896,28900,28905,28906,28907,28908,28914,28915,28916,28917,28919,28931,28934,28935,28936,28937,28939,28940,28947,28951,28955,28956,28960,28961,28962,28966,28969,28972,28976,28979,28981,28983,28998,29016,29018,29020,29022,29023,29026,29034,29036,29037,29040,29043,29045,29053,29054,29057,29058,29060,29061,29064,29070,29072,29073,29074,29075,29078,29083,29090,29093,29095,29096,29097,29101,29107,29108,29118,29119,29131,29133,29140,29141,29149,29151,29158,29161,29163,29177,29178,29183,29186,29190,29192,29204,29207,29208,29209,29210,29214,29216,29221,29223,29224,29226,29227,29228,29230,29232,29235,29237,29241,29243,29246,29248,29249,29256,29257,29261,29263,29266,29268,29269,29274,29276,29278,29280,29283,29285,29286,29288,29289,29293,29296,29298,29303,29306,29307,29309,29313,29318,29323,29324,29327,29329,29331,29333,29334,29335,29336,29339,29340,29341,29342,29344,29347,29349,29350,29351,29354,29355,29358,29359,29360,29362,29363,29368,29370,29371,29372,29374,29376,29379,29380,29381,29382,29384,29386,29388,29389,29391,29392,29400,29401,29403,29404,29405,29406,29408,29409,29416,29417,29420,29424,29429,29431,29436,29438,29440,29443,29444,29445,29448,29449,29450,29451,29454,29457,29460,29462,29466,29467,29468,29469,29471,29474,29475,29476,29478,29481,29482,29486,29487,29488,29489,29491,29493,29495,29496,29497,29499,29501,29502,29504,29507,29508,29509,29512,29513,29516,29517,29520,29522,29528,29529,29530,29532,29533,29534,29536,29540,29542,29543,29549,29550,29551,29552,29554,29555,29556,29557,29558,29561,29563,29565,29566,29567,29568,29569,29572,29579,29580,29581,29582,29585,29590,29592,29594,29595,29596,29597,29600,29601,29602,29604,29607,29609,29614,29615,29617,29619,29620,29622,29624,29626,29627,29628,29629,29632,29633,29636,29644,29650,29651,29652,29653,29657,29658,29659,29660,29661,29662,29664,29665,29669,29670,29674,29676,29677,29678,29679,29680,29681,29682,29683,29684,29686,29690,29692,29697,29698,29700,29701,29705,29706,29709,29710,29711,29713,29715,29716,29718,29719,29720,29721,29723,29724,29725,29731,29738,29743,29744,29746,29748,29750,29751,29752,29753,29754,29755,29756,29757,29758,29763,29767,29768,29771,29776,29779,29780,29784,29786,29788,29789,29790,29791,29792,29793,29796,29797,29798,29800,29801,29803,29804,29808,29811,29812,29814,29816,29818,29820,29821,29822,29824,29825,29826,29827,29844,29845,29847,29848,29850,29859,29860,29861,29865,29866,29867,29869,29871,29872,29876,29880,29883,29887,29888,29889,29891,29893,29896,29897,29901,29902,29906,29907,29908,29920,29921,29922,29923,29924,29926,29927,29928,29931,29932,29933,29934,29939,29940,29941,29943,29945,29949,29954,29964,29966,29968,29970,29972,29973,29974,29975,29979,29980,29981,29984,29986,29987,29988,29990,29991,29994,29996,30001,30004,30005,30020,30026,30027,30030,30031,30032,30037,30041,30042,30044,30045,30046,30048,30050,30051,30052,30053,30054,30056,30058,30060,30063,30065,30070,30075,30082,30085,30090,30094,30095,30097,30100,30102,30103,30104,30105,30107,30109,30112,30114,30115,30116,30117,30118,30124,30126,30127,30137,30138,30139,30141,30144,30149,30150,30153,30155,30157,30158,30160,30162,30166,30167,30170,30176,30177,30178,30179,30180,30181,30182,30183,30184,30185,30189,30192,30193,30194,30195,30200,30204,30208,30209,30210,30213,30214,30220,30221,30224,30226,30227,30230,30231,30233,30234,30235,30236,30240,30245,30247,30249,30250,30257,30258,30265,30267,30270,30271,30272,30277,30280,30283,30287,30288,30289,30290,30291,30293,30296,30297,30298,30299,30305,30306,30308,30309,30312,30315,30316,30317,30318,30322,30323,30324,30325,30326,30328,30329,30330,30331,30332,30333,30335,30336,30338,30339,30340,30341,30344,30345,30346,30347,30348,30349,30350,30352,30354,30356,30357,30358,30359,30361,30364,30365,30366,30368,30369,30370,30371,30372,30373,30374,30375,30376,30377,30378,30381,30382,30384,30385,30393,30395,30397,30398,30400,30405,30407,30410,30415,30417,30419,30424,30427,30428,30430,30431,30434,30435,30436,30438,30439,30446,30449,30451,30453,30457,30460,30464,30466,30470,30476,30477,30478,30480,30481,30482,30483,30487,30489,30490,30491,30495,30496,30498,30503,30508,30510,30511,30512,30513,30514,30520,30522,30524,30527,30529,30530,30532,30533,30534,30535,30536,30538,30540,30541,30542,30543,30545,30546,30547,30548,30549,30550,30554,30558,30559,30560,30561,30564,30566,30567,30568,30570,30571,30572,30574,30577,30578,30581,30584,30588,30589,30591,30594,30595,30596,30597,30598,30599,30601,30602,30603,30606,30607,30608,30609,30610,30613,30615,30616,30617,30618,30619,30623,30625,30626,30627,30628,30630,30631,30632,30635,30637,30640,30641,30642,30643,30644,30646,30647,30648,30652,30654,30655,30657,30660,30661,30663,30668,30670,30671,30672,30673,30674,30676,30679,30683,30687,30688,30696,30697,30698,30699,30700,30701,30702,30703,30704,30705,30706,30707,30708,30710,30711,30712,30713,30714,30715,30716,30717,30719,30720,30722,30725,30726,30727,30730,30731,30733,30734,30735,30736,30737,30738,30739,30740,30741,30743,30747,30748,30749,30750,30751,30753,30754,30755,30758,30760,30762,30763,30764,30765,30766,30767,30769,30770,30771,30772,30773,30774,30775,30776,30777,30778,30779,30780,30781,30783,30784,30785,30786,30787,30788,30789,30790,30791,30792,30793,30794,30795,30796,30797,30798,30799,30800,30801,30802,30803,30804,30805,30807,30808,30809,30810,30812,30819,30820,30821,30822,30823,30824,30825,30827,30829,30830,30832,30834,30835,30836,30837,30838,30839,30840,30841,30842,30843,30845,30846,30847,30848,30849,30850,30853,30855,30856,30857,30858,30859,30860,30862,30863,30864,30865,30866,30867,30869,30870,30871,30872,30873,30874,30875,30876,30877,30878,30879,30880,30881,30882,30883,30884,30885,30887,30888,30889,30890,30891,30892,30893,30894,30895,30896,30898,30900,30901,30902,30903,30905,30907,30908,30909,30910,30911,30912,30913,30914,30915,30918,30919,30920,30922,30923,30924,30926,30927,30928,30929,30930,30932,30933,30935,30936,30937,30938,30940,30941,30942,30944,30945,30946,30947,30948,30949,30950,30951,30952,30954,30955,30956,30957,30958,30959,30960,30961,30962,30963,30964,30965,30966,30967,30968,30969,30971,30972,30973,30974,30975,30976,30977,30978,30979,30981,30982,30983,30985,30986,30988,30989,30990,30991,30992,30994,30995,30996,30997,30998,30999,31000,31001,31002,31004,31005,31006,31007,31008,31009,31010,31012,31013,31014,31015,31016,31017,31018,31019,31021,31022,31023,31024,31025,31027,31028,31029,31030,31031,31032,31033,31034,31035,31036,31037,31038,31039,31040,31041,31042,31044,31046,31047,31048,31049,31050,31051,31052,31054,31056,31057,31058,31059,31060,31061,31062,31063,31064,31065,31067,31068,31069,31071,31074,31075,31076,31077,31079,31081,31082,31083,31084,31085,31086,31088,31089,31091,31092,31093,31094,31095,31096,31097,31099]]],["are",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28724]]],["as",[3,3,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[60,1,1,2,3,[[1158,1,1,2,3]]]],[25124,27835,30537]]],["at",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27819]]],["be",[2,2,[[43,1,1,0,1,[[1036,1,1,0,1]]],[47,1,1,1,2,[[1096,1,1,1,2]]]],[27612,29189]]],["because",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27864]]],["being",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26390]]],["both",[44,41,[[39,2,2,0,2,[[938,1,1,0,1],[940,1,1,1,2]]],[40,2,2,2,4,[[962,1,1,2,3],[963,1,1,3,4]]],[41,4,4,4,8,[[974,1,1,4,5],[977,1,1,5,6],[993,1,1,6,7],[994,1,1,7,8]]],[42,8,7,8,15,[[998,1,1,8,9],[1000,1,1,9,10],[1005,1,1,10,11],[1007,2,2,11,13],[1008,1,1,13,14],[1011,2,1,14,15]]],[43,2,2,15,17,[[1019,1,1,15,16],[1043,1,1,16,17]]],[44,3,2,17,19,[[1056,1,1,17,18],[1059,2,1,18,19]]],[45,6,6,19,25,[[1065,2,2,19,21],[1067,2,2,21,23],[1068,2,2,23,25]]],[46,1,1,25,26,[[1086,1,1,25,26]]],[49,4,3,26,29,[[1104,1,1,26,27],[1106,3,2,27,29]]],[51,1,1,29,30,[[1115,1,1,29,30]]],[52,1,1,30,31,[[1118,1,1,30,31]]],[53,2,2,31,33,[[1122,2,2,31,33]]],[55,1,1,33,34,[[1129,1,1,33,34]]],[56,1,1,34,35,[[1132,1,1,34,35]]],[60,1,1,35,36,[[1158,1,1,35,36]]],[62,1,1,36,37,[[1164,1,1,36,37]]],[64,1,1,37,38,[[1166,1,1,37,38]]],[65,3,3,38,41,[[1179,1,1,38,39],[1185,2,2,39,41]]]],[23445,23511,24437,24500,25019,25143,25842,25897,26097,26192,26477,26571,26580,26608,26723,26985,27852,28242,28289,28438,28444,28480,28481,28516,28521,28966,29404,29451,29454,29636,29682,29757,29763,29901,29954,30540,30654,30697,30923,31022,31035]]],["but",[25,25,[[40,6,6,0,6,[[960,1,1,0,1],[962,1,1,1,2],[963,1,1,2,3],[964,1,1,3,4],[968,1,1,4,5],[970,1,1,5,6]]],[41,1,1,6,7,[[974,1,1,6,7]]],[42,4,4,7,11,[[997,1,1,7,8],[1003,1,1,8,9],[1006,1,1,9,10],[1013,1,1,10,11]]],[43,4,4,11,15,[[1024,1,1,11,12],[1026,1,1,12,13],[1027,1,1,13,14],[1033,1,1,14,15]]],[44,1,1,15,16,[[1046,1,1,15,16]]],[45,2,2,16,18,[[1073,1,1,16,17],[1077,1,1,17,18]]],[51,1,1,18,19,[[1112,1,1,18,19]]],[54,1,1,19,20,[[1127,1,1,19,20]]],[57,1,1,20,21,[[1142,1,1,20,21]]],[58,1,1,21,22,[[1146,1,1,21,22]]],[65,3,3,22,25,[[1169,1,1,22,23],[1175,1,1,23,24],[1188,1,1,24,25]]]],[24338,24426,24487,24528,24685,24810,25024,26064,26358,26520,26770,27125,27242,27287,27490,27943,28639,28788,29588,29864,30171,30277,30751,30851,31083]]],["did",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27324]]],["didst",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28440]]],["do",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29627]]],["else",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27977]]],["even",[95,94,[[39,8,8,0,8,[[933,2,2,0,2],[935,1,1,2,3],[936,1,1,3,4],[940,1,1,4,5],[941,1,1,5,6],[946,1,1,6,7],[948,1,1,7,8]]],[40,6,6,8,14,[[957,1,1,8,9],[960,2,2,9,11],[962,1,1,11,12],[966,1,1,12,13],[969,1,1,13,14]]],[41,13,13,14,27,[[978,1,1,14,15],[980,2,2,15,17],[981,1,1,17,18],[982,1,1,18,19],[984,3,3,19,22],[990,1,1,22,23],[991,2,2,23,25],[992,1,1,25,26],[996,1,1,26,27]]],[42,2,2,27,29,[[1007,2,2,27,29]]],[43,2,2,29,31,[[1022,1,1,29,30],[1039,1,1,30,31]]],[44,10,10,31,41,[[1046,1,1,31,32],[1050,4,4,32,36],[1051,1,1,36,37],[1053,2,2,37,39],[1060,2,2,39,41]]],[45,6,6,41,47,[[1063,1,1,41,42],[1064,1,1,42,43],[1066,1,1,43,44],[1076,2,2,44,46],[1077,1,1,46,47]]],[46,8,8,47,55,[[1078,3,3,47,50],[1080,1,1,50,51],[1084,1,1,51,52],[1087,2,2,52,54],[1088,1,1,54,55]]],[47,3,3,55,58,[[1092,1,1,55,56],[1094,1,1,56,57],[1095,1,1,57,58]]],[48,5,5,58,63,[[1098,1,1,58,59],[1100,1,1,59,60],[1101,3,3,60,63]]],[49,5,5,63,68,[[1103,1,1,63,64],[1105,3,3,64,67],[1106,1,1,67,68]]],[50,1,1,68,69,[[1109,1,1,68,69]]],[51,7,7,69,76,[[1112,2,2,69,71],[1113,3,3,71,74],[1114,2,2,74,76]]],[52,3,3,76,79,[[1117,1,1,76,77],[1118,2,2,77,79]]],[55,1,1,79,80,[[1129,1,1,79,80]]],[56,1,1,80,81,[[1132,1,1,80,81]]],[57,4,4,81,85,[[1136,1,1,81,82],[1139,1,1,82,83],[1143,2,2,83,85]]],[58,1,1,85,86,[[1148,1,1,85,86]]],[60,3,2,86,88,[[1156,1,1,86,87],[1157,2,1,87,88]]],[61,1,1,88,89,[[1160,1,1,88,89]]],[64,1,1,89,90,[[1166,1,1,89,90]]],[65,4,4,90,94,[[1168,1,1,90,91],[1169,1,1,91,92],[1183,1,1,92,93],[1184,1,1,93,94]]]],[23280,23281,23328,23372,23497,23551,23760,23806,24242,24348,24364,24409,24633,24739,25179,25263,25270,25355,25380,25466,25500,25516,25699,25757,25773,25816,26015,26545,26560,27098,27721,27943,28054,28061,28065,28068,28072,28139,28150,28306,28309,28405,28415,28461,28740,28742,28777,28803,28808,28813,28851,28930,28978,28984,29001,29097,29160,29174,29232,29304,29316,29327,29333,29376,29436,29439,29442,29458,29530,29572,29589,29594,29602,29603,29608,29616,29677,29679,29688,29907,29957,30026,30068,30184,30191,30328,30493,30501,30568,30695,30730,30750,30986,30999]]],["field",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24981]]],["for",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]],[43,1,1,2,3,[[1040,1,1,2,3]]],[61,1,1,3,4,[[1161,1,1,3,4]]]],[24915,26615,27737,30583]]],["hath",[2,2,[[43,1,1,0,1,[[1042,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]]],[27821,28338]]],["have",[3,3,[[44,1,1,0,1,[[1056,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]]],[28239,29584,30263]]],["he",[8,8,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,5,5,1,6,[[1027,1,1,1,2],[1038,1,1,2,3],[1040,1,1,3,4],[1041,1,1,4,5],[1044,1,1,5,6]]],[60,1,1,6,7,[[1157,1,1,6,7]]],[65,1,1,7,8,[[1179,1,1,7,8]]]],[25329,27263,27675,27768,27795,27890,30519,30921]]],["his",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25900]]],["if",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25592]]],["in",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29089]]],["indeed",[4,4,[[40,1,1,0,1,[[965,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[51,1,1,3,4,[[1114,1,1,3,4]]]],[24551,28990,29418,29613]]],["is",[2,2,[[42,1,1,0,1,[[1004,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[26398,30051]]],["it",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29471]]],["let",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30465]]],["likewise",[8,8,[[39,2,2,0,2,[[948,1,1,0,1],[952,1,1,1,2]]],[41,2,2,2,4,[[975,1,1,2,3],[991,1,1,3,4]]],[43,1,1,4,5,[[1020,1,1,4,5]]],[45,1,1,5,6,[[1075,1,1,5,6]]],[50,1,1,6,7,[[1110,1,1,6,7]]],[59,1,1,7,8,[[1154,1,1,7,8]]]],[23802,23990,25039,25750,27020,28687,29558,30447]]],["manner",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24746]]],["neither",[9,9,[[40,2,2,0,2,[[961,1,1,0,1],[972,1,1,1,2]]],[41,2,2,2,4,[[984,1,1,2,3],[987,1,1,3,4]]],[44,1,1,4,5,[[1049,1,1,4,5]]],[45,1,1,5,6,[[1071,1,1,5,6]]],[61,1,1,6,7,[[1161,1,1,6,7]]],[65,2,2,7,9,[[1187,1,1,7,8],[1188,1,1,8,9]]]],[24368,24881,25461,25617,28041,28599,30589,31080,31085]]],["nor",[11,9,[[41,1,1,0,1,[[973,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]],[43,1,1,2,3,[[1030,1,1,2,3]]],[45,2,1,3,4,[[1071,2,1,3,4]]],[47,1,1,4,5,[[1093,1,1,4,5]]],[48,1,1,5,6,[[1101,1,1,5,6]]],[50,2,1,6,7,[[1109,2,1,6,7]]],[57,1,1,7,8,[[1144,1,1,7,8]]],[65,1,1,8,9,[[1180,1,1,8,9]]]],[24908,26620,27389,28599,29130,29308,29528,30230,30937]]],["of",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27616]]],["or",[10,10,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[984,1,1,2,3]]],[43,3,3,3,6,[[1026,1,1,3,4],[1034,1,1,4,5],[1042,1,1,5,6]]],[46,1,1,6,7,[[1090,1,1,6,7]]],[58,1,1,7,8,[[1149,1,1,7,8]]],[65,2,2,8,10,[[1186,1,1,8,9],[1187,1,1,9,10]]]],[23307,25416,25497,27218,27544,27807,29044,30350,31042,31080]]],["shall",[2,2,[[58,1,1,0,1,[[1149,1,1,0,1]]],[65,1,1,1,2,[[1180,1,1,1,2]]]],[30352,30936]]],["should",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26645]]],["so",[10,10,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,3,3,2,5,[[1002,1,1,2,3],[1009,1,1,3,4],[1011,1,1,4,5]]],[43,1,1,5,6,[[1024,1,1,5,6]]],[44,1,1,6,7,[[1056,1,1,6,7]]],[47,1,1,7,8,[[1091,1,1,7,8]]],[59,1,1,8,9,[[1151,1,1,8,9]]],[61,1,1,9,10,[[1162,1,1,9,10]]]],[24193,25407,26314,26663,26707,27167,28225,29066,30389,30620]]],["that",[16,16,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,11,11,1,12,[[975,1,1,1,2],[977,1,1,2,3],[980,2,2,3,5],[981,1,1,5,6],[982,1,1,6,7],[983,1,1,7,8],[986,1,1,8,9],[989,1,1,9,10],[991,2,2,10,12]]],[43,1,1,12,13,[[1025,1,1,12,13]]],[44,1,1,13,14,[[1053,1,1,13,14]]],[46,1,1,14,15,[[1082,1,1,14,15]]],[60,1,1,15,16,[[1156,1,1,15,16]]]],[24577,25045,25124,25246,25267,25352,25401,25453,25554,25662,25754,25774,27215,28150,28880,30494]]],["the",[2,2,[[45,1,1,0,1,[[1062,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]]],[28385,29153]]],["then",[10,10,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,4,4,2,6,[[990,1,1,2,3],[991,2,2,3,5],[992,1,1,5,6]]],[44,1,1,6,7,[[1053,1,1,6,7]]],[45,1,1,7,8,[[1076,1,1,7,8]]],[47,1,1,8,9,[[1094,1,1,8,9]]],[61,1,1,9,10,[[1159,1,1,9,10]]]],[23950,24614,25714,25746,25754,25823,28133,28747,29138,30545]]],["therefore",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28943]]],["they",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]]],[24444,29787,30050]]],["thou",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24824]]],["though",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]]],[24114,25695]]],["to",[2,2,[[42,1,1,0,1,[[1001,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[26236,27625]]],["us",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30016]]],["verily",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29594]]],["very",[4,4,[[39,2,2,0,2,[[938,1,1,0,1],[952,1,1,1,2]]],[41,2,2,2,4,[[981,1,1,2,3],[984,1,1,3,4]]]],[23447,23981,25306,25518]]],["was",[2,2,[[43,1,1,0,1,[[1039,1,1,0,1]]],[57,1,1,1,2,[[1137,1,1,1,2]]]],[27732,30034]]],["we",[3,3,[[43,1,1,0,1,[[1038,1,1,0,1]]],[46,2,2,1,3,[[1082,2,2,1,3]]]],[27667,28879,28886]]],["were",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27353]]],["when",[7,7,[[40,1,1,0,1,[[962,1,1,0,1]]],[42,1,1,1,2,[[1016,1,1,1,2]]],[43,2,2,2,4,[[1022,1,1,2,3],[1044,1,1,3,4]]],[46,1,1,4,5,[[1084,1,1,4,5]]],[57,2,2,5,7,[[1137,1,1,5,6],[1140,1,1,6,7]]]],[24429,26886,27066,27885,28921,30042,30100]]],["which",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25639]]],["who",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1031,1,1,1,2]]]],[25119,27433]]],["will",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28810]]],["with",[5,5,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[43,2,2,2,4,[[1035,1,1,2,3],[1036,1,1,3,4]]],[46,1,1,4,5,[[1083,1,1,4,5]]]],[24634,25267,27559,27610,28912]]],["withal",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27823]]],["yea",[3,3,[[42,1,1,0,1,[[1012,1,1,0,1]]],[43,1,1,1,2,[[1020,1,1,1,2]]],[45,1,1,2,3,[[1063,1,1,2,3]]]],[26758,27012,28404]]],["yet",[7,7,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]],[43,1,1,3,4,[[1024,1,1,3,4]]],[44,1,1,4,5,[[1053,1,1,4,5]]],[47,1,1,5,6,[[1093,1,1,5,6]]],[49,1,1,6,7,[[1103,1,1,6,7]]]],[23308,25045,26921,27121,28140,29106,29383]]]]},{"k":"G2533","v":[["Caiaphas",[9,9,[[39,2,2,0,2,[[954,2,2,0,2]]],[41,1,1,2,3,[[975,1,1,2,3]]],[42,5,5,3,8,[[1007,1,1,3,4],[1014,4,4,4,8]]],[43,1,1,8,9,[[1021,1,1,8,9]]]],[24057,24111,25027,26572,26798,26799,26809,26813,27028]]]]},{"k":"G2534","v":[]},{"k":"G2535","v":[["Cain",[3,3,[[57,1,1,0,1,[[1143,1,1,0,1]]],[61,1,1,1,2,[[1161,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[30176,30591,30683]]]]},{"k":"G2536","v":[["Cainan",[2,2,[[41,2,2,0,2,[[975,2,2,0,2]]]],[25061,25062]]]]},{"k":"G2537","v":[["*",[44,38,[[39,5,5,0,5,[[937,1,1,0,1],[941,1,1,1,2],[954,2,2,2,4],[955,1,1,4,5]]],[40,6,6,5,11,[[957,1,1,5,6],[958,2,2,6,8],[970,2,2,8,10],[972,1,1,10,11]]],[41,5,3,11,14,[[977,4,2,11,13],[994,1,1,13,14]]],[42,2,2,14,16,[[1009,1,1,14,15],[1015,1,1,15,16]]],[43,2,2,16,18,[[1034,2,2,16,18]]],[45,1,1,18,19,[[1072,1,1,18,19]]],[46,3,2,19,21,[[1080,1,1,19,20],[1082,2,1,20,21]]],[47,1,1,21,22,[[1096,1,1,21,22]]],[48,2,2,22,24,[[1098,1,1,22,23],[1100,1,1,23,24]]],[57,3,3,24,27,[[1140,2,2,24,26],[1141,1,1,26,27]]],[60,2,1,27,28,[[1158,2,1,27,28]]],[61,2,2,28,30,[[1160,2,2,28,30]]],[62,1,1,30,31,[[1164,1,1,30,31]]],[65,9,7,31,38,[[1168,1,1,31,32],[1169,2,1,32,33],[1171,1,1,33,34],[1180,1,1,34,35],[1187,4,3,35,38]]]],[23396,23591,24082,24083,24189,24242,24281,24282,24778,24779,24890,25143,25145,25884,26664,26866,27542,27544,28625,28847,28894,29203,29244,29296,30100,30105,30120,30535,30557,30558,30650,30734,30758,30788,30929,31054,31055,31058]]],["new",[42,36,[[39,5,5,0,5,[[937,1,1,0,1],[941,1,1,1,2],[954,2,2,2,4],[955,1,1,4,5]]],[40,5,5,5,10,[[957,1,1,5,6],[958,1,1,6,7],[970,2,2,7,9],[972,1,1,9,10]]],[41,5,3,10,13,[[977,4,2,10,12],[994,1,1,12,13]]],[42,2,2,13,15,[[1009,1,1,13,14],[1015,1,1,14,15]]],[43,1,1,15,16,[[1034,1,1,15,16]]],[45,1,1,16,17,[[1072,1,1,16,17]]],[46,3,2,17,19,[[1080,1,1,17,18],[1082,2,1,18,19]]],[47,1,1,19,20,[[1096,1,1,19,20]]],[48,2,2,20,22,[[1098,1,1,20,21],[1100,1,1,21,22]]],[57,3,3,22,25,[[1140,2,2,22,24],[1141,1,1,24,25]]],[60,2,1,25,26,[[1158,2,1,25,26]]],[61,2,2,26,28,[[1160,2,2,26,28]]],[62,1,1,28,29,[[1164,1,1,28,29]]],[65,9,7,29,36,[[1168,1,1,29,30],[1169,2,1,30,31],[1171,1,1,31,32],[1180,1,1,32,33],[1187,4,3,33,36]]]],[23396,23591,24082,24083,24189,24242,24282,24778,24779,24890,25143,25145,25884,26664,26866,27542,28625,28847,28894,29203,29244,29296,30100,30105,30120,30535,30557,30558,30650,30734,30758,30788,30929,31054,31055,31058]]],["piece",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24281]]],["thing",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27544]]]]},{"k":"G2538","v":[["newness",[2,2,[[44,2,2,0,2,[[1051,1,1,0,1],[1052,1,1,1,2]]]],[28072,28097]]]]},{"k":"G2539","v":[["*",[6,6,[[49,1,1,0,1,[[1105,1,1,0,1]]],[57,3,3,1,4,[[1137,1,1,1,2],[1139,1,1,2,3],[1144,1,1,3,4]]],[60,1,1,4,5,[[1156,1,1,4,5]]],[65,1,1,5,6,[[1183,1,1,5,6]]]],[29425,30038,30069,30229,30491,30983]]],["Though",[2,2,[[49,1,1,0,1,[[1105,1,1,0,1]]],[57,1,1,1,2,[[1137,1,1,1,2]]]],[29425,30038]]],["though",[3,3,[[57,2,2,0,2,[[1139,1,1,0,1],[1144,1,1,1,2]]],[60,1,1,2,3,[[1156,1,1,2,3]]]],[30069,30229,30491]]],["yet",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30983]]]]},{"k":"G2540","v":[["*",[86,81,[[39,10,10,0,10,[[936,1,1,0,1],[939,1,1,1,2],[940,1,1,2,3],[941,1,1,3,4],[942,1,1,4,5],[944,1,1,5,6],[949,2,2,6,8],[952,1,1,8,9],[954,1,1,9,10]]],[40,5,5,10,15,[[957,1,1,10,11],[966,1,1,11,12],[967,1,1,12,13],[968,1,1,13,14],[969,1,1,14,15]]],[41,13,12,15,27,[[973,1,1,15,16],[976,1,1,16,17],[980,2,1,17,18],[984,2,2,18,20],[985,1,1,20,21],[990,1,1,21,22],[991,1,1,22,23],[992,1,1,23,24],[993,3,3,24,27]]],[42,4,3,27,30,[[1001,1,1,27,28],[1003,3,2,28,30]]],[43,9,9,30,39,[[1018,1,1,30,31],[1020,1,1,31,32],[1024,1,1,32,33],[1029,1,1,33,34],[1030,1,1,34,35],[1031,1,1,35,36],[1034,1,1,36,37],[1036,1,1,37,38],[1041,1,1,38,39]]],[44,6,6,39,45,[[1048,1,1,39,40],[1050,1,1,40,41],[1053,1,1,41,42],[1054,1,1,42,43],[1056,1,1,43,44],[1058,1,1,44,45]]],[45,3,3,45,48,[[1065,1,1,45,46],[1068,2,2,46,48]]],[46,3,2,48,50,[[1083,2,1,48,49],[1085,1,1,49,50]]],[47,3,3,50,53,[[1094,1,1,50,51],[1096,2,2,51,53]]],[48,4,4,53,57,[[1097,1,1,53,54],[1098,1,1,54,55],[1101,1,1,55,56],[1102,1,1,56,57]]],[50,1,1,57,58,[[1110,1,1,57,58]]],[51,2,2,58,60,[[1112,1,1,58,59],[1115,1,1,59,60]]],[52,1,1,60,61,[[1117,1,1,60,61]]],[53,3,3,61,64,[[1120,1,1,61,62],[1122,1,1,62,63],[1124,1,1,63,64]]],[54,3,3,64,67,[[1127,1,1,64,65],[1128,2,2,65,67]]],[55,1,1,67,68,[[1129,1,1,67,68]]],[57,4,4,68,72,[[1141,2,2,68,70],[1143,2,2,70,72]]],[59,4,4,72,76,[[1151,2,2,72,74],[1154,1,1,74,75],[1155,1,1,75,76]]],[65,7,5,76,81,[[1167,1,1,76,77],[1177,1,1,77,78],[1178,4,2,78,80],[1188,1,1,80,81]]]],[23374,23484,23490,23569,23598,23675,23860,23867,24002,24072,24230,24618,24653,24675,24750,24913,25076,25258,25501,25515,25519,25718,25775,25789,25834,25850,25862,26214,26334,26336,26930,27015,27136,27338,27373,27431,27549,27608,27794,28017,28053,28134,28164,28214,28277,28438,28492,28516,28900,28946,29141,29197,29198,29216,29241,29320,29355,29547,29587,29622,29667,29722,29748,29803,29854,29873,29876,29895,30114,30115,30183,30187,30379,30385,30463,30471,30700,30890,30903,30905,31090]]],["+",[6,6,[[41,2,2,0,2,[[976,1,1,0,1],[993,1,1,1,2]]],[42,1,1,2,3,[[1001,1,1,2,3]]],[48,1,1,3,4,[[1102,1,1,3,4]]],[51,1,1,4,5,[[1112,1,1,4,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]]],[25076,25862,26214,29355,29587,30183]]],["opportunity",[2,2,[[47,1,1,0,1,[[1096,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[29198,30187]]],["season",[9,9,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,4,4,2,6,[[973,1,1,2,3],[984,1,1,3,4],[985,1,1,4,5],[992,1,1,5,6]]],[43,2,2,6,8,[[1030,1,1,6,7],[1041,1,1,7,8]]],[47,1,1,8,9,[[1096,1,1,8,9]]]],[24002,24675,24913,25501,25519,25789,27373,27794,29197]]],["seasons",[4,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[43,2,2,1,3,[[1018,1,1,1,2],[1031,1,1,2,3]]],[51,1,1,3,4,[[1115,1,1,3,4]]]],[23867,26930,27431,29622]]],["time",[53,50,[[39,7,7,0,7,[[936,1,1,0,1],[939,1,1,1,2],[940,1,1,2,3],[941,1,1,3,4],[942,1,1,4,5],[949,1,1,5,6],[954,1,1,6,7]]],[40,4,4,7,11,[[957,1,1,7,8],[966,1,1,8,9],[967,1,1,9,10],[969,1,1,10,11]]],[41,5,5,11,16,[[980,1,1,11,12],[984,1,1,12,13],[990,1,1,13,14],[991,1,1,14,15],[993,1,1,15,16]]],[42,3,2,16,18,[[1003,3,2,16,18]]],[43,3,3,18,21,[[1024,1,1,18,19],[1029,1,1,19,20],[1036,1,1,20,21]]],[44,6,6,21,27,[[1048,1,1,21,22],[1050,1,1,22,23],[1053,1,1,23,24],[1054,1,1,24,25],[1056,1,1,25,26],[1058,1,1,26,27]]],[45,3,3,27,30,[[1065,1,1,27,28],[1068,2,2,28,30]]],[46,3,2,30,32,[[1083,2,1,30,31],[1085,1,1,31,32]]],[48,2,2,32,34,[[1098,1,1,32,33],[1101,1,1,33,34]]],[50,1,1,34,35,[[1110,1,1,34,35]]],[52,1,1,35,36,[[1117,1,1,35,36]]],[53,1,1,36,37,[[1120,1,1,36,37]]],[54,2,2,37,39,[[1128,2,2,37,39]]],[57,2,2,39,41,[[1141,2,2,39,41]]],[59,4,4,41,45,[[1151,2,2,41,43],[1154,1,1,43,44],[1155,1,1,44,45]]],[65,6,5,45,50,[[1167,1,1,45,46],[1177,1,1,46,47],[1178,3,2,47,49],[1188,1,1,49,50]]]],[23374,23484,23490,23569,23598,23860,24072,24230,24618,24653,24750,25258,25515,25718,25775,25834,26334,26336,27136,27338,27608,28017,28053,28134,28164,28214,28277,28438,28492,28516,28900,28946,29241,29320,29547,29667,29722,29873,29876,30114,30115,30379,30385,30463,30471,30700,30890,30903,30905,31090]]],["times",[11,11,[[39,1,1,0,1,[[944,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]],[43,2,2,2,4,[[1020,1,1,2,3],[1034,1,1,3,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]],[48,1,1,5,6,[[1097,1,1,5,6]]],[53,2,2,6,8,[[1122,1,1,6,7],[1124,1,1,7,8]]],[54,1,1,8,9,[[1127,1,1,8,9]]],[55,1,1,9,10,[[1129,1,1,9,10]]],[65,1,1,10,11,[[1178,1,1,10,11]]]],[23675,25850,27015,27549,29141,29216,29748,29803,29854,29895,30905]]],["while",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25258]]]]},{"k":"G2541","v":[["*",[30,24,[[39,4,2,0,2,[[950,4,2,0,2]]],[40,4,3,2,5,[[968,4,3,2,5]]],[41,7,6,5,11,[[974,1,1,5,6],[975,1,1,6,7],[992,4,3,7,10],[995,1,1,10,11]]],[42,3,2,11,13,[[1015,3,2,11,13]]],[43,11,10,13,23,[[1028,1,1,13,14],[1034,1,1,14,15],[1042,6,5,15,20],[1043,1,1,20,21],[1044,1,1,21,22],[1045,1,1,22,23]]],[49,1,1,23,24,[[1106,1,1,23,24]]]],[23889,23893,24687,24689,24690,24974,25026,25801,25803,25804,25937,26837,26840,27335,27530,27804,27806,27807,27808,27817,27855,27879,27918,29464]]],["Caesar",[21,20,[[39,2,2,0,2,[[950,2,2,0,2]]],[40,2,2,2,4,[[968,2,2,2,4]]],[41,5,5,4,9,[[974,1,1,4,5],[975,1,1,5,6],[992,2,2,6,8],[995,1,1,8,9]]],[42,2,2,9,11,[[1015,2,2,9,11]]],[43,10,9,11,20,[[1028,1,1,11,12],[1034,1,1,12,13],[1042,5,4,13,17],[1043,1,1,17,18],[1044,1,1,18,19],[1045,1,1,19,20]]]],[23889,23893,24687,24690,24974,25026,25801,25804,25937,26837,26840,27335,27530,27804,27807,27808,27817,27855,27879,27918]]],["Caesar's",[9,8,[[39,2,1,0,1,[[950,2,1,0,1]]],[40,2,2,1,3,[[968,2,2,1,3]]],[41,2,2,3,5,[[992,2,2,3,5]]],[42,1,1,5,6,[[1015,1,1,5,6]]],[43,1,1,6,7,[[1042,1,1,6,7]]],[49,1,1,7,8,[[1106,1,1,7,8]]]],[23893,24689,24690,25803,25804,26837,27806,29464]]]]},{"k":"G2542","v":[["Caesarea",[17,17,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[43,15,15,2,17,[[1025,1,1,2,3],[1026,1,1,3,4],[1027,2,2,4,6],[1028,1,1,6,7],[1029,1,1,7,8],[1035,1,1,8,9],[1038,2,2,9,11],[1040,2,2,11,13],[1042,4,4,13,17]]]],[23685,24527,27216,27246,27260,27283,27318,27356,27579,27672,27680,27757,27767,27797,27800,27802,27809]]]]},{"k":"G2543","v":[["*",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[57,1,1,1,2,[[1136,1,1,1,2]]]],[25513,30017]]],["although",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30017]]],["and",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25513]]]]},{"k":"G2544","v":[["*",[3,3,[[42,1,1,0,1,[[1000,1,1,0,1]]],[43,2,2,1,3,[[1031,1,1,1,2],[1034,1,1,2,3]]]],[26158,27431,27550]]],["Nevertheless",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27431]]],["Though",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26158]]],["though",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27550]]]]},{"k":"G2545","v":[["*",[12,12,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[996,1,1,2,3]]],[42,2,2,3,5,[[1001,1,1,3,4],[1011,1,1,4,5]]],[45,1,1,5,6,[[1074,1,1,5,6]]],[57,1,1,6,7,[[1144,1,1,6,7]]],[65,5,5,7,12,[[1170,1,1,7,8],[1174,2,2,8,10],[1185,1,1,10,11],[1187,1,1,11,12]]]],[23249,25494,26023,26245,26705,28668,30230,30773,30835,30837,31037,31061]]],["+",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26023]]],["burned",[3,3,[[42,1,1,0,1,[[1011,1,1,0,1]]],[45,1,1,1,2,[[1074,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[26705,28668,30230]]],["burneth",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31061]]],["burning",[6,6,[[41,1,1,0,1,[[984,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[65,4,4,2,6,[[1170,1,1,2,3],[1174,2,2,3,5],[1185,1,1,5,6]]]],[25494,26245,30773,30835,30837,31037]]],["light",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23249]]]]},{"k":"G2546","v":[["*",[11,11,[[39,3,3,0,3,[[933,1,1,0,1],[938,1,1,1,2],[956,1,1,2,3]]],[40,2,2,3,5,[[957,2,2,3,5]]],[42,1,1,5,6,[[1007,1,1,5,6]]],[43,5,5,6,11,[[1031,1,1,6,7],[1034,1,1,7,8],[1039,1,1,8,9],[1042,1,1,9,10],[1044,1,1,10,11]]]],[23257,23428,24205,24250,24253,26577,27421,27536,27714,27816,27861]]],["also",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]]],[24253,27536]]],["there",[9,9,[[39,3,3,0,3,[[933,1,1,0,1],[938,1,1,1,2],[956,1,1,2,3]]],[40,1,1,3,4,[[957,1,1,3,4]]],[42,1,1,4,5,[[1007,1,1,4,5]]],[43,4,4,5,9,[[1031,1,1,5,6],[1039,1,1,6,7],[1042,1,1,7,8],[1044,1,1,8,9]]]],[23257,23428,24205,24250,26577,27421,27714,27816,27861]]]]},{"k":"G2547","v":[["*",[9,9,[[40,1,1,0,1,[[966,1,1,0,1]]],[43,8,8,1,9,[[1024,1,1,1,2],[1030,1,1,2,3],[1031,1,1,3,4],[1037,1,1,4,5],[1038,1,1,5,6],[1044,2,2,6,8],[1045,1,1,8,9]]]],[24589,27120,27383,27440,27641,27665,27859,27867,27914]]],["+",[3,3,[[40,1,1,0,1,[[966,1,1,0,1]]],[43,2,2,1,3,[[1037,1,1,1,2],[1044,1,1,2,3]]]],[24589,27641,27859]]],["afterward",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27383]]],["also",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27867]]],["thence",[4,4,[[43,4,4,0,4,[[1024,1,1,0,1],[1031,1,1,1,2],[1038,1,1,2,3],[1045,1,1,3,4]]]],[27120,27440,27665,27914]]]]},{"k":"G2548","v":[["*",[23,23,[[39,3,3,0,3,[[943,1,1,0,1],[948,1,1,1,2],[951,1,1,2,3]]],[40,4,4,3,7,[[968,2,2,3,5],[972,2,2,5,7]]],[41,4,4,7,11,[[983,2,2,7,9],[992,1,1,9,10],[994,1,1,10,11]]],[42,6,6,11,17,[[1002,1,1,11,12],[1003,1,1,12,13],[1006,1,1,13,14],[1010,1,1,14,15],[1013,1,1,15,16],[1015,1,1,16,17]]],[43,3,3,17,20,[[1022,1,1,17,18],[1032,1,1,18,19],[1035,1,1,19,20]]],[45,1,1,20,21,[[1071,1,1,20,21]]],[54,1,1,21,22,[[1126,1,1,21,22]]],[57,1,1,22,23,[[1136,1,1,22,23]]]],[23651,23796,23941,24677,24678,24884,24886,25412,25447,25790,25876,26314,26357,26497,26680,26783,26860,27096,27453,27576,28573,29839,30016]]],["+",[5,5,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,1,1,2,3,[[1010,1,1,2,3]]],[43,2,2,3,5,[[1032,1,1,3,4],[1035,1,1,4,5]]]],[23796,25447,26680,27453,27576]]],["also",[6,6,[[41,1,1,0,1,[[992,1,1,0,1]]],[42,2,2,1,3,[[1006,1,1,1,2],[1013,1,1,2,3]]],[43,1,1,3,4,[[1022,1,1,3,4]]],[45,1,1,4,5,[[1071,1,1,4,5]]],[54,1,1,5,6,[[1126,1,1,5,6]]]],[25790,26497,26783,27096,28573,29839]]],["he",[5,5,[[41,2,2,0,2,[[983,1,1,0,1],[994,1,1,1,2]]],[42,3,3,2,5,[[1002,1,1,2,3],[1003,1,1,3,4],[1015,1,1,4,5]]]],[25412,25876,26314,26357,26860]]],["him",[2,2,[[40,2,2,0,2,[[968,2,2,0,2]]]],[24677,24678]]],["other",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23941]]],["them",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30016]]],["they",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[972,2,2,1,3]]]],[23651,24884,24886]]]]},{"k":"G2549","v":[["*",[11,11,[[39,1,1,0,1,[[934,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[45,2,2,3,5,[[1066,1,1,3,4],[1075,1,1,4,5]]],[48,1,1,5,6,[[1100,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[55,1,1,7,8,[[1131,1,1,7,8]]],[58,1,1,8,9,[[1146,1,1,8,9]]],[59,2,2,9,11,[[1152,2,2,9,11]]]],[23316,27198,27959,28462,28698,29303,29525,29926,30287,30400,30415]]],["evil",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23316]]],["malice",[6,6,[[45,2,2,0,2,[[1066,1,1,0,1],[1075,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]],[50,1,1,3,4,[[1109,1,1,3,4]]],[55,1,1,4,5,[[1131,1,1,4,5]]],[59,1,1,5,6,[[1152,1,1,5,6]]]],[28462,28698,29303,29525,29926,30400]]],["maliciousness",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[27959,30415]]],["naughtiness",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30287]]],["wickedness",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27198]]]]},{"k":"G2550","v":[["malignity",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27959]]]]},{"k":"G2551","v":[["*",[4,4,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[963,1,1,1,2],[965,1,1,2,3]]],[43,1,1,3,4,[[1036,1,1,3,4]]]],[23637,24473,24577,27594]]],["curseth",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[23637,24473]]],["evil",[2,2,[[40,1,1,0,1,[[965,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[24577,27594]]]]},{"k":"G2552","v":[["affliction",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30364]]]]},{"k":"G2553","v":[["*",[4,4,[[54,3,3,0,3,[[1126,2,2,0,2],[1128,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]]],[29830,29836,29875,30367]]],["+",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30367]]],["afflictions",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29875]]],["hardness",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29830]]],["trouble",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29836]]]]},{"k":"G2554","v":[["*",[4,4,[[40,1,1,0,1,[[959,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]],[63,1,1,3,4,[[1165,1,1,3,4]]]],[24292,25155,30441,30669]]],["doing",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30441]]],["evil",[3,3,[[40,1,1,0,1,[[959,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[63,1,1,2,3,[[1165,1,1,2,3]]]],[24292,25155,30669]]]]},{"k":"G2555","v":[["*",[5,5,[[42,1,1,0,1,[[1014,1,1,0,1]]],[59,4,4,1,5,[[1152,2,2,1,3],[1153,1,1,3,4],[1154,1,1,4,5]]]],[26815,30411,30413,30440,30461]]],["evildoer",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30461]]],["evildoers",[3,3,[[59,3,3,0,3,[[1152,2,2,0,2],[1153,1,1,2,3]]]],[30411,30413,30440]]],["malefactor",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26815]]]]},{"k":"G2556","v":[["*",[51,46,[[39,3,3,0,3,[[949,1,1,0,1],[952,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[963,1,1,3,4],[971,1,1,4,5]]],[41,2,2,5,7,[[988,1,1,5,6],[995,1,1,6,7]]],[42,1,1,7,8,[[1014,1,1,7,8]]],[43,4,4,8,12,[[1026,1,1,8,9],[1033,1,1,9,10],[1040,1,1,10,11],[1045,1,1,11,12]]],[44,16,13,12,25,[[1046,1,1,12,13],[1047,1,1,13,14],[1048,1,1,14,15],[1052,2,2,15,17],[1054,1,1,17,18],[1057,4,2,18,20],[1058,4,3,20,23],[1059,1,1,23,24],[1061,1,1,24,25]]],[45,3,3,25,28,[[1071,1,1,25,26],[1074,1,1,26,27],[1076,1,1,27,28]]],[46,2,2,28,30,[[1082,1,1,28,29],[1090,1,1,29,30]]],[49,1,1,30,31,[[1105,1,1,30,31]]],[50,1,1,31,32,[[1109,1,1,31,32]]],[51,2,1,32,33,[[1115,2,1,32,33]]],[53,1,1,33,34,[[1124,1,1,33,34]]],[54,1,1,34,35,[[1128,1,1,34,35]]],[55,1,1,35,36,[[1129,1,1,35,36]]],[57,1,1,36,37,[[1137,1,1,36,37]]],[58,2,2,37,39,[[1146,1,1,37,38],[1148,1,1,38,39]]],[59,5,4,39,43,[[1153,5,4,39,43]]],[63,1,1,43,44,[[1165,1,1,43,44]]],[65,2,2,44,46,[[1168,1,1,44,45],[1182,1,1,45,46]]]],[23867,24005,24152,24484,24840,25645,25957,26808,27229,27511,27743,27904,27960,27971,27999,28110,28112,28166,28262,28266,28269,28270,28276,28300,28355,28573,28670,28751,28887,29050,29423,29522,29636,29798,29884,29904,30044,30279,30327,30433,30434,30435,30436,30669,30719,30956]]],["bad",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28887]]],["evil",[42,37,[[39,2,2,0,2,[[952,1,1,0,1],[955,1,1,1,2]]],[40,2,2,2,4,[[963,1,1,2,3],[971,1,1,3,4]]],[41,1,1,4,5,[[995,1,1,4,5]]],[42,1,1,5,6,[[1014,1,1,5,6]]],[43,2,2,6,8,[[1026,1,1,6,7],[1040,1,1,7,8]]],[44,14,11,8,19,[[1047,1,1,8,9],[1048,1,1,9,10],[1052,2,2,10,12],[1054,1,1,12,13],[1057,4,2,13,15],[1058,3,2,15,17],[1059,1,1,17,18],[1061,1,1,18,19]]],[45,2,2,19,21,[[1074,1,1,19,20],[1076,1,1,20,21]]],[46,1,1,21,22,[[1090,1,1,21,22]]],[49,1,1,22,23,[[1105,1,1,22,23]]],[50,1,1,23,24,[[1109,1,1,23,24]]],[51,2,1,24,25,[[1115,2,1,24,25]]],[53,1,1,25,26,[[1124,1,1,25,26]]],[54,1,1,26,27,[[1128,1,1,26,27]]],[55,1,1,27,28,[[1129,1,1,27,28]]],[57,1,1,28,29,[[1137,1,1,28,29]]],[58,2,2,29,31,[[1146,1,1,29,30],[1148,1,1,30,31]]],[59,5,4,31,35,[[1153,5,4,31,35]]],[63,1,1,35,36,[[1165,1,1,35,36]]],[65,1,1,36,37,[[1168,1,1,36,37]]]],[24005,24152,24484,24840,25957,26808,27229,27743,27971,27999,28110,28112,28166,28262,28266,28269,28270,28300,28355,28670,28751,29050,29423,29522,29636,29798,29884,29904,30044,30279,30327,30433,30434,30435,30436,30669,30719]]],["harm",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1045,1,1,1,2]]]],[27511,27904]]],["ill",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28276]]],["men",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23867]]],["noisome",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30956]]],["things",[3,3,[[41,1,1,0,1,[[988,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[45,1,1,2,3,[[1071,1,1,2,3]]]],[25645,27960,28573]]]]},{"k":"G2557","v":[["*",[4,4,[[41,3,3,0,3,[[995,3,3,0,3]]],[54,1,1,3,4,[[1126,1,1,3,4]]]],[25967,25968,25974,29836]]],["doer",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29836]]],["malefactors",[3,3,[[41,3,3,0,3,[[995,3,3,0,3]]]],[25967,25968,25974]]]]},{"k":"G2558","v":[["*",[2,2,[[57,2,2,0,2,[[1143,1,1,0,1],[1145,1,1,1,2]]]],[30209,30244]]],["adversity",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30244]]],["tormented",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30209]]]]},{"k":"G2559","v":[["*",[6,6,[[43,5,5,0,5,[[1024,2,2,0,2],[1029,1,1,2,3],[1031,1,1,3,4],[1035,1,1,4,5]]],[59,1,1,5,6,[[1153,1,1,5,6]]]],[27122,27135,27338,27416,27567,30437]]],["+",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27416]]],["entreated",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27135]]],["evil",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27122]]],["harm",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30437]]],["hurt",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27567]]],["vex",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27338]]]]},{"k":"G2560","v":[["*",[16,16,[[39,7,7,0,7,[[932,1,1,0,1],[936,1,1,1,2],[937,1,1,2,3],[942,1,1,3,4],[943,1,1,4,5],[945,1,1,5,6],[949,1,1,6,7]]],[40,4,4,7,11,[[957,2,2,7,9],[958,1,1,9,10],[962,1,1,10,11]]],[41,2,2,11,13,[[977,1,1,11,12],[979,1,1,12,13]]],[42,1,1,13,14,[[1014,1,1,13,14]]],[43,1,1,14,15,[[1040,1,1,14,15]]],[58,1,1,15,16,[[1149,1,1,15,16]]]],[23233,23361,23391,23632,23655,23715,23867,24247,24249,24277,24462,25138,25197,26808,27739,30340]]],["+",[10,10,[[39,4,4,0,4,[[932,1,1,0,1],[936,1,1,1,2],[937,1,1,2,3],[942,1,1,3,4]]],[40,4,4,4,8,[[957,2,2,4,6],[958,1,1,6,7],[962,1,1,7,8]]],[41,2,2,8,10,[[977,1,1,8,9],[979,1,1,9,10]]]],[23233,23361,23391,23632,24247,24249,24277,24462,25138,25197]]],["amiss",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30340]]],["evil",[2,2,[[42,1,1,0,1,[[1014,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[26808,27739]]],["grievously",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23655]]],["miserably",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23867]]],["sore",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23715]]]]},{"k":"G2561","v":[["affliction",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27150]]]]},{"k":"G2562","v":[["stubble",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28422]]]]},{"k":"G2563","v":[["*",[12,12,[[39,5,5,0,5,[[939,1,1,0,1],[940,1,1,1,2],[955,3,3,2,5]]],[40,2,2,5,7,[[971,2,2,5,7]]],[41,1,1,7,8,[[979,1,1,7,8]]],[63,1,1,8,9,[[1165,1,1,8,9]]],[65,3,3,9,12,[[1177,1,1,9,10],[1187,2,2,10,12]]]],[23466,23509,24158,24159,24177,24845,24862,25219,30671,30873,31068,31069]]],["pen",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30671]]],["reed",[11,11,[[39,5,5,0,5,[[939,1,1,0,1],[940,1,1,1,2],[955,3,3,2,5]]],[40,2,2,5,7,[[971,2,2,5,7]]],[41,1,1,7,8,[[979,1,1,7,8]]],[65,3,3,8,11,[[1177,1,1,8,9],[1187,2,2,9,11]]]],[23466,23509,24158,24159,24177,24845,24862,25219,30873,31068,31069]]]]},{"k":"G2564","v":[["*",[146,138,[[39,27,25,0,25,[[929,3,3,0,3],[930,3,3,3,6],[932,1,1,6,7],[933,3,2,7,9],[937,1,1,9,10],[938,1,1,10,11],[948,1,1,11,12],[949,1,1,12,13],[950,7,6,13,19],[951,4,4,19,23],[953,1,1,23,24],[955,1,1,24,25]]],[40,3,3,25,28,[[957,1,1,25,26],[958,1,1,26,27],[967,1,1,27,28]]],[41,42,39,28,67,[[973,10,10,28,38],[974,4,3,38,41],[977,1,1,41,42],[978,2,2,42,44],[979,2,2,44,46],[980,1,1,46,47],[981,1,1,47,48],[982,1,1,48,49],[986,11,9,49,58],[987,2,2,58,60],[991,3,3,60,63],[992,1,1,63,64],[993,1,1,64,65],[994,1,1,65,66],[995,1,1,66,67]]],[42,3,3,67,70,[[997,1,1,67,68],[998,1,1,68,69],[1006,1,1,69,70]]],[43,16,16,70,86,[[1018,3,3,70,73],[1020,1,1,73,74],[1021,1,1,74,75],[1024,1,1,75,76],[1026,1,1,76,77],[1027,1,1,77,78],[1030,1,1,78,79],[1031,1,1,79,80],[1032,1,1,80,81],[1041,1,1,81,82],[1044,3,3,82,85],[1045,1,1,85,86]]],[44,8,7,86,93,[[1049,1,1,86,87],[1053,2,1,87,88],[1054,5,5,88,93]]],[45,12,10,93,103,[[1062,1,1,93,94],[1068,9,7,94,101],[1071,1,1,101,102],[1076,1,1,102,103]]],[47,4,4,103,107,[[1091,2,2,103,105],[1095,2,2,105,107]]],[48,2,2,107,109,[[1100,2,2,107,109]]],[50,1,1,109,110,[[1109,1,1,109,110]]],[51,3,3,110,113,[[1112,1,1,110,111],[1114,1,1,111,112],[1115,1,1,112,113]]],[52,1,1,113,114,[[1117,1,1,113,114]]],[53,1,1,114,115,[[1124,1,1,114,115]]],[54,1,1,115,116,[[1125,1,1,115,116]]],[57,6,6,116,122,[[1134,1,1,116,117],[1135,1,1,117,118],[1137,1,1,118,119],[1141,1,1,119,120],[1143,2,2,120,122]]],[58,1,1,122,123,[[1147,1,1,122,123]]],[59,6,6,123,129,[[1151,1,1,123,124],[1152,2,2,124,126],[1153,2,2,126,128],[1155,1,1,128,129]]],[60,1,1,129,130,[[1156,1,1,129,130]]],[61,1,1,130,131,[[1161,1,1,130,131]]],[65,7,7,131,138,[[1167,1,1,131,132],[1177,1,1,132,133],[1178,1,1,133,134],[1182,1,1,134,135],[1185,3,3,135,138]]]],[23165,23167,23169,23176,23184,23192,23230,23243,23253,23392,23442,23800,23839,23875,23876,23880,23881,23915,23917,23925,23926,23927,23928,24022,24137,24235,24277,24657,24906,24924,24925,24928,24929,24952,24953,24954,24955,24969,24977,24994,24996,25139,25161,25192,25206,25234,25247,25311,25402,25560,25561,25562,25563,25565,25566,25569,25570,25577,25607,25609,25733,25744,25760,25823,25863,25889,25968,26086,26097,26484,26935,26942,26946,27007,27040,27174,27227,27260,27363,27426,27479,27771,27863,27869,27871,27900,28039,28146,28162,28166,28179,28180,28181,28372,28502,28504,28505,28507,28508,28509,28511,28594,28727,29063,29072,29170,29175,29273,29276,29532,29582,29610,29645,29675,29800,29818,29988,30008,30034,30120,30180,30190,30316,30389,30408,30420,30430,30433,30475,30482,30580,30706,30880,30900,30970,31026,31028,31030]]],["+",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25733]]],["Call",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23800]]],["bade",[4,4,[[41,4,4,0,4,[[986,4,4,0,4]]]],[25562,25563,25565,25569]]],["bid",[2,2,[[39,1,1,0,1,[[950,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]]],[23881,28594]]],["bidden",[10,9,[[39,3,3,0,3,[[950,3,3,0,3]]],[41,7,6,3,9,[[979,1,1,3,4],[986,6,5,4,9]]]],[23875,23876,23880,25234,25560,25561,25563,25570,25577]]],["call",[15,15,[[39,7,7,0,7,[[929,2,2,0,2],[937,1,1,2,3],[950,3,3,3,6],[951,1,1,6,7]]],[40,1,1,7,8,[[958,1,1,7,8]]],[41,5,5,8,13,[[973,2,2,8,10],[977,1,1,10,11],[978,1,1,11,12],[986,1,1,12,13]]],[44,1,1,13,14,[[1054,1,1,13,14]]],[57,1,1,14,15,[[1134,1,1,14,15]]]],[23165,23167,23392,23875,23915,23917,23927,24277,24906,24924,25139,25192,25566,28180,29988]]],["called",[102,98,[[39,15,14,0,14,[[929,1,1,0,1],[930,3,3,1,4],[932,1,1,4,5],[933,3,2,5,7],[938,1,1,7,8],[949,1,1,8,9],[951,3,3,9,12],[953,1,1,12,13],[955,1,1,13,14]]],[40,2,2,14,16,[[957,1,1,14,15],[967,1,1,15,16]]],[41,23,23,16,39,[[973,8,8,16,24],[974,3,3,24,27],[978,1,1,27,28],[979,1,1,28,29],[980,1,1,29,30],[981,1,1,30,31],[982,1,1,31,32],[987,2,2,32,34],[991,2,2,34,36],[993,1,1,36,37],[994,1,1,37,38],[995,1,1,38,39]]],[42,2,2,39,41,[[997,1,1,39,40],[998,1,1,40,41]]],[43,13,13,41,54,[[1018,3,3,41,44],[1020,1,1,44,45],[1021,1,1,45,46],[1026,1,1,46,47],[1027,1,1,47,48],[1030,1,1,48,49],[1031,1,1,49,50],[1044,3,3,50,53],[1045,1,1,53,54]]],[44,5,4,54,58,[[1053,2,1,54,55],[1054,3,3,55,58]]],[45,11,9,58,67,[[1062,1,1,58,59],[1068,9,7,59,66],[1076,1,1,66,67]]],[47,3,3,67,70,[[1091,2,2,67,69],[1095,1,1,69,70]]],[48,2,2,70,72,[[1100,2,2,70,72]]],[50,1,1,72,73,[[1109,1,1,72,73]]],[51,2,2,73,75,[[1112,1,1,73,74],[1114,1,1,74,75]]],[52,1,1,75,76,[[1117,1,1,75,76]]],[53,1,1,76,77,[[1124,1,1,76,77]]],[54,1,1,77,78,[[1125,1,1,77,78]]],[57,5,5,78,83,[[1135,1,1,78,79],[1137,1,1,79,80],[1141,1,1,80,81],[1143,2,2,81,83]]],[58,1,1,83,84,[[1147,1,1,83,84]]],[59,5,5,84,89,[[1151,1,1,84,85],[1152,2,2,85,87],[1153,1,1,87,88],[1155,1,1,88,89]]],[60,1,1,89,90,[[1156,1,1,89,90]]],[61,1,1,90,91,[[1161,1,1,90,91]]],[65,7,7,91,98,[[1167,1,1,91,92],[1177,1,1,92,93],[1178,1,1,93,94],[1182,1,1,94,95],[1185,3,3,95,98]]]],[23169,23176,23184,23192,23230,23243,23253,23442,23839,23925,23926,23928,24022,24137,24235,24657,24925,24928,24929,24952,24953,24954,24955,24969,24977,24994,24996,25161,25206,25247,25311,25402,25607,25609,25744,25760,25863,25889,25968,26086,26097,26935,26942,26946,27007,27040,27227,27260,27363,27426,27863,27869,27871,27900,28146,28162,28179,28181,28372,28502,28504,28505,28507,28508,28509,28511,28727,29063,29072,29175,29273,29276,29532,29582,29610,29675,29800,29818,30008,30034,30120,30180,30190,30316,30389,30408,30420,30433,30475,30482,30580,30706,30880,30900,30970,31026,31028,31030]]],["calleth",[6,6,[[41,1,1,0,1,[[992,1,1,0,1]]],[42,1,1,1,2,[[1006,1,1,1,2]]],[44,2,2,2,4,[[1049,1,1,2,3],[1054,1,1,3,4]]],[47,1,1,4,5,[[1095,1,1,4,5]]],[51,1,1,5,6,[[1115,1,1,5,6]]]],[25823,26484,28039,28166,29170,29645]]],["calling",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30430]]],["forth",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27771]]],["name",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27174]]],["named",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24994]]],["was",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27479]]]]},{"k":"G2565","v":[["tree",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28233]]]]},{"k":"G2566","v":[["well",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27806]]]]},{"k":"G2567","v":[["things",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29911]]]]},{"k":"G2568","v":[["fair",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27863]]]]},{"k":"G2569","v":[["doing",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29691]]]]},{"k":"G2570","v":[["*",[101,90,[[39,21,20,0,20,[[931,1,1,0,1],[933,1,1,1,2],[935,3,3,2,5],[940,2,1,5,6],[941,8,8,6,14],[943,1,1,14,15],[945,1,1,15,16],[946,2,2,16,18],[954,2,2,18,20]]],[40,11,11,20,31,[[960,2,2,20,22],[963,1,1,22,23],[965,6,6,23,29],[970,2,2,29,31]]],[41,9,7,31,38,[[975,1,1,31,32],[978,3,2,32,34],[980,2,1,34,35],[981,1,1,35,36],[986,1,1,36,37],[993,1,1,37,38]]],[42,7,5,38,43,[[998,2,1,38,39],[1006,5,4,39,43]]],[44,5,5,43,48,[[1052,3,3,43,46],[1057,1,1,46,47],[1059,1,1,47,48]]],[45,6,5,48,53,[[1066,1,1,48,49],[1068,4,3,49,52],[1070,1,1,52,53]]],[46,2,2,53,55,[[1085,1,1,53,54],[1090,1,1,54,55]]],[47,3,2,55,57,[[1094,2,1,55,56],[1096,1,1,56,57]]],[51,1,1,57,58,[[1115,1,1,57,58]]],[53,17,15,58,73,[[1119,2,2,58,60],[1120,1,1,60,61],[1121,3,3,61,64],[1122,3,2,64,66],[1123,3,3,66,69],[1124,5,4,69,73]]],[54,3,3,73,76,[[1125,1,1,73,74],[1126,1,1,74,75],[1128,1,1,75,76]]],[55,5,4,76,80,[[1130,2,2,76,78],[1131,3,2,78,80]]],[57,5,5,80,85,[[1137,1,1,80,81],[1138,1,1,81,82],[1142,1,1,82,83],[1145,2,2,83,85]]],[58,3,3,85,88,[[1147,1,1,85,86],[1148,1,1,86,87],[1149,1,1,87,88]]],[59,3,2,88,90,[[1152,2,1,88,89],[1154,1,1,89,90]]]],[23202,23250,23333,23334,23335,23522,23547,23562,23563,23566,23576,23577,23584,23587,23659,23704,23735,23736,24064,24078,24331,24343,24490,24543,24580,24581,24583,24585,24588,24760,24775,25034,25184,25189,25260,25334,25587,25831,26105,26492,26495,26513,26514,28107,28109,28112,28262,28301,28460,28488,28495,28513,28555,28953,29050,29149,29197,29642,29704,29714,29719,29732,29738,29744,29751,29753,29767,29773,29788,29800,29801,29806,29807,29823,29830,29877,29915,29922,29931,29937,30044,30049,30157,30250,30259,30300,30332,30354,30411,30456]]],["+",[2,2,[[40,1,1,0,1,[[965,1,1,0,1]]],[44,1,1,1,2,[[1052,1,1,1,2]]]],[24580,28112]]],["better",[6,6,[[39,2,2,0,2,[[946,2,2,0,2]]],[40,3,3,2,5,[[965,3,3,2,5]]],[45,1,1,5,6,[[1070,1,1,5,6]]]],[23735,23736,24581,24583,24585,28555]]],["good",[80,71,[[39,17,16,0,16,[[931,1,1,0,1],[933,1,1,1,2],[935,3,3,2,5],[940,2,1,5,6],[941,7,7,6,13],[945,1,1,13,14],[954,2,2,14,16]]],[40,6,6,16,22,[[960,2,2,16,18],[965,2,2,18,20],[970,2,2,20,22]]],[41,7,6,22,28,[[975,1,1,22,23],[978,3,2,23,25],[980,1,1,25,26],[981,1,1,26,27],[986,1,1,27,28]]],[42,7,5,28,33,[[998,2,1,28,29],[1006,5,4,29,33]]],[44,3,3,33,36,[[1052,2,2,33,35],[1059,1,1,35,36]]],[45,5,4,36,40,[[1066,1,1,36,37],[1068,4,3,37,40]]],[47,2,1,40,41,[[1094,2,1,40,41]]],[51,1,1,41,42,[[1115,1,1,41,42]]],[53,17,15,42,57,[[1119,2,2,42,44],[1120,1,1,44,45],[1121,3,3,45,48],[1122,3,2,48,50],[1123,3,3,50,53],[1124,5,4,53,57]]],[54,2,2,57,59,[[1126,1,1,57,58],[1128,1,1,58,59]]],[55,5,4,59,63,[[1130,2,2,59,61],[1131,3,2,61,63]]],[57,4,4,63,67,[[1137,1,1,63,64],[1138,1,1,64,65],[1142,1,1,65,66],[1145,1,1,66,67]]],[58,2,2,67,69,[[1148,1,1,67,68],[1149,1,1,68,69]]],[59,2,2,69,71,[[1152,1,1,69,70],[1154,1,1,70,71]]]],[23202,23250,23333,23334,23335,23522,23547,23562,23563,23566,23576,23577,23587,23704,24064,24078,24331,24343,24543,24588,24760,24775,25034,25184,25189,25260,25334,25587,26105,26492,26495,26513,26514,28107,28109,28301,28460,28488,28495,28513,29149,29642,29704,29714,29719,29732,29738,29744,29751,29753,29767,29773,29788,29800,29801,29806,29807,29830,29877,29915,29922,29931,29937,30044,30049,30157,30259,30332,30354,30411,30456]]],["goodly",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]]],[23584,25831]]],["honest",[4,4,[[41,1,1,0,1,[[980,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]],[46,1,1,2,3,[[1090,1,1,2,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[25260,28262,29050,30411]]],["meet",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[23659,24490]]],["thing",[2,2,[[54,1,1,0,1,[[1125,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[29823,30250]]],["things",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28953]]],["well",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29197]]],["worthy",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30300]]]]},{"k":"G2571","v":[["vail",[4,4,[[46,4,4,0,4,[[1080,4,4,0,4]]]],[28854,28855,28856,28857]]]]},{"k":"G2572","v":[["*",[8,7,[[39,2,2,0,2,[[936,1,1,0,1],[938,1,1,1,2]]],[41,2,2,2,4,[[980,1,1,2,3],[995,1,1,3,4]]],[46,2,1,4,5,[[1081,2,1,4,5]]],[58,1,1,5,6,[[1150,1,1,5,6]]],[59,1,1,6,7,[[1154,1,1,6,7]]]],[23369,23443,25261,25965,28862,30374,30454]]],["Cover",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25965]]],["cover",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30454]]],["covered",[2,2,[[39,2,2,0,2,[[936,1,1,0,1],[938,1,1,1,2]]]],[23369,23443]]],["covereth",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25261]]],["hid",[2,1,[[46,2,1,0,1,[[1081,2,1,0,1]]]],[28862]]],["hide",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30374]]]]},{"k":"G2573","v":[["*",[36,36,[[39,3,3,0,3,[[933,1,1,0,1],[940,1,1,1,2],[943,1,1,2,3]]],[40,6,6,3,9,[[963,3,3,3,6],[968,2,2,6,8],[972,1,1,8,9]]],[41,3,3,9,12,[[978,2,2,9,11],[992,1,1,11,12]]],[42,4,4,12,16,[[1000,1,1,12,13],[1004,1,1,13,14],[1009,1,1,14,15],[1014,1,1,15,16]]],[43,2,2,16,18,[[1027,1,1,16,17],[1045,1,1,17,18]]],[44,1,1,18,19,[[1056,1,1,18,19]]],[45,3,3,19,22,[[1068,2,2,19,21],[1075,1,1,21,22]]],[46,1,1,22,23,[[1088,1,1,22,23]]],[47,2,2,23,25,[[1094,1,1,23,24],[1095,1,1,24,25]]],[49,1,1,25,26,[[1106,1,1,25,26]]],[53,4,4,26,30,[[1121,3,3,26,29],[1123,1,1,29,30]]],[57,1,1,30,31,[[1145,1,1,30,31]]],[58,3,3,31,34,[[1147,3,3,31,34]]],[60,1,1,34,35,[[1156,1,1,34,35]]],[63,1,1,35,36,[[1165,1,1,35,36]]]],[23278,23501,23640,24469,24472,24500,24701,24705,24891,25172,25173,25818,26173,26429,26643,26808,27292,27924,28229,28524,28525,28695,28993,29148,29169,29456,29735,29743,29744,29780,30259,30296,30301,30312,30498,30664]]],["+",[2,2,[[40,1,1,0,1,[[972,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[24891,30259]]],["Well",[4,4,[[40,2,2,0,2,[[963,1,1,0,1],[968,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]],[44,1,1,3,4,[[1056,1,1,3,4]]]],[24469,24705,27924,28229]]],["good",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]]],[23278,25173]]],["place",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30296]]],["well",[27,27,[[39,2,2,0,2,[[940,1,1,0,1],[943,1,1,1,2]]],[40,3,3,2,5,[[963,2,2,2,4],[968,1,1,4,5]]],[41,2,2,5,7,[[978,1,1,5,6],[992,1,1,6,7]]],[42,4,4,7,11,[[1000,1,1,7,8],[1004,1,1,8,9],[1009,1,1,9,10],[1014,1,1,10,11]]],[43,1,1,11,12,[[1027,1,1,11,12]]],[45,3,3,12,15,[[1068,2,2,12,14],[1075,1,1,14,15]]],[46,1,1,15,16,[[1088,1,1,15,16]]],[47,2,2,16,18,[[1094,1,1,16,17],[1095,1,1,17,18]]],[49,1,1,18,19,[[1106,1,1,18,19]]],[53,4,4,19,23,[[1121,3,3,19,22],[1123,1,1,22,23]]],[58,2,2,23,25,[[1147,2,2,23,25]]],[60,1,1,25,26,[[1156,1,1,25,26]]],[63,1,1,26,27,[[1165,1,1,26,27]]]],[23501,23640,24472,24500,24701,25172,25818,26173,26429,26643,26808,27292,28524,28525,28695,28993,29148,29169,29456,29735,29743,29744,29780,30301,30312,30498,30664]]]]},{"k":"G2574","v":[["*",[6,6,[[39,3,3,0,3,[[931,1,1,0,1],[947,1,1,1,2],[951,1,1,2,3]]],[40,2,2,3,5,[[957,1,1,3,4],[966,1,1,4,5]]],[41,1,1,5,6,[[990,1,1,5,6]]]],[23196,23786,23942,24221,24613,25713]]],["camel",[4,4,[[39,2,2,0,2,[[947,1,1,0,1],[951,1,1,1,2]]],[40,1,1,2,3,[[966,1,1,2,3]]],[41,1,1,3,4,[[990,1,1,3,4]]]],[23786,23942,24613,25713]]],["camel's",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23196,24221]]]]},{"k":"G2575","v":[["furnace",[4,4,[[39,2,2,0,2,[[941,2,2,0,2]]],[65,2,2,2,4,[[1167,1,1,2,3],[1175,1,1,3,4]]]],[23581,23589,30712,30842]]]]},{"k":"G2576","v":[["closed",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]]],[23554,27926]]]]},{"k":"G2577","v":[["*",[3,3,[[57,1,1,0,1,[[1144,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[30215,30369,30720]]],["fainted",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30720]]],["sick",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30369]]],["wearied",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30215]]]]},{"k":"G2578","v":[["*",[4,4,[[44,2,2,0,2,[[1056,1,1,0,1],[1059,1,1,1,2]]],[48,1,1,2,3,[[1099,1,1,2,3]]],[49,1,1,3,4,[[1104,1,1,3,4]]]],[28213,28291,29265,29401]]],["bow",[3,3,[[44,1,1,0,1,[[1059,1,1,0,1]]],[48,1,1,1,2,[[1099,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[28291,29265,29401]]],["bowed",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28213]]]]},{"k":"G2579","v":[["*",[13,13,[[39,2,2,0,2,[[949,1,1,0,1],[954,1,1,1,2]]],[40,3,3,2,5,[[961,1,1,2,3],[962,1,1,3,4],[972,1,1,4,5]]],[41,1,1,5,6,[[985,1,1,5,6]]],[42,3,3,6,9,[[1004,1,1,6,7],[1006,1,1,7,8],[1007,1,1,8,9]]],[43,1,1,9,10,[[1022,1,1,9,10]]],[46,1,1,10,11,[[1088,1,1,10,11]]],[57,1,1,11,12,[[1144,1,1,11,12]]],[58,1,1,12,13,[[1150,1,1,12,13]]]],[23847,24089,24392,24463,24891,25527,26395,26519,26548,27074,29005,30232,30369]]],["If",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24392]]],["Though",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]]],[24089,26395]]],["as",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30232]]],["but",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24463]]],["if",[4,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[972,1,1,1,2]]],[41,1,1,2,3,[[985,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]]],[23847,24891,25527,30369]]],["least",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27074]]],["though",[2,2,[[42,2,2,0,2,[[1006,1,1,0,1],[1007,1,1,1,2]]]],[26519,26548]]],["yet",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29005]]]]},{"k":"G2580","v":[["Cana",[4,4,[[42,4,4,0,4,[[998,2,2,0,2],[1000,1,1,2,3],[1017,1,1,3,4]]]],[26096,26106,26202,26900]]]]},{"k":"G2581","v":[["Canaanite",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]]],[23421,24306]]]]},{"k":"G2582","v":[["Candace",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27203]]]]},{"k":"G2583","v":[["*",[5,5,[[46,3,3,0,3,[[1087,3,3,0,3]]],[47,1,1,3,4,[[1096,1,1,3,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]]],[28984,28986,28987,29204,29437]]],["rule",[4,4,[[46,2,2,0,2,[[1087,2,2,0,2]]],[47,1,1,2,3,[[1096,1,1,2,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]]],[28984,28986,29204,29437]]],["things",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28987]]]]},{"k":"G2584","v":[["Capernaum",[16,16,[[39,4,4,0,4,[[932,1,1,0,1],[936,1,1,1,2],[939,1,1,2,3],[945,1,1,3,4]]],[40,3,3,4,7,[[957,1,1,4,5],[958,1,1,5,6],[965,1,1,6,7]]],[41,4,4,7,11,[[976,2,2,7,9],[979,1,1,9,10],[982,1,1,10,11]]],[42,5,5,11,16,[[998,1,1,11,12],[1000,1,1,12,13],[1002,3,3,13,16]]]],[23222,23350,23482,23724,24236,24261,24571,25086,25094,25196,25378,26107,26202,26274,26281,26316]]]]},{"k":"G2585","v":[["corrupt",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28841]]]]},{"k":"G2586","v":[["smoke",[13,11,[[43,1,1,0,1,[[1019,1,1,0,1]]],[65,12,10,1,11,[[1174,1,1,1,2],[1175,6,4,2,6],[1180,1,1,6,7],[1181,1,1,7,8],[1184,2,2,8,10],[1185,1,1,10,11]]]],[26968,30831,30842,30843,30857,30858,30937,30954,31002,31011,31020]]]]},{"k":"G2587","v":[["Cappadocia",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[26958,30375]]]]},{"k":"G2588","v":[["*",[160,152,[[39,17,16,0,16,[[933,2,2,0,2],[934,1,1,2,3],[937,1,1,3,4],[939,1,1,4,5],[940,3,3,5,8],[941,3,2,8,10],[943,3,3,10,13],[946,1,1,13,14],[950,1,1,14,15],[952,1,1,15,16]]],[40,12,12,16,28,[[958,2,2,16,18],[959,1,1,18,19],[960,1,1,19,20],[962,1,1,20,21],[963,3,3,21,24],[964,1,1,24,25],[967,1,1,25,26],[968,2,2,26,28]]],[41,24,22,28,50,[[973,3,3,28,31],[974,3,3,31,34],[975,1,1,34,35],[976,1,1,35,36],[977,1,1,36,37],[978,3,1,37,38],[980,2,2,38,40],[981,1,1,40,41],[982,1,1,41,42],[984,2,2,42,44],[988,1,1,44,45],[993,2,2,45,47],[996,3,3,47,50]]],[42,7,6,50,56,[[1008,2,1,50,51],[1009,1,1,51,52],[1010,2,2,52,54],[1012,2,2,54,56]]],[43,21,20,56,76,[[1019,3,3,56,59],[1021,1,1,59,60],[1022,2,2,60,62],[1024,4,4,62,66],[1025,3,3,66,69],[1028,1,1,69,70],[1030,1,1,70,71],[1031,1,1,71,72],[1032,1,1,72,73],[1033,1,1,73,74],[1038,1,1,74,75],[1045,2,1,75,76]]],[44,15,15,76,91,[[1046,2,2,76,78],[1047,3,3,78,81],[1050,1,1,81,82],[1051,1,1,82,83],[1053,1,1,83,84],[1054,1,1,84,85],[1055,5,5,85,90],[1061,1,1,90,91]]],[45,5,4,91,95,[[1063,1,1,91,92],[1065,1,1,92,93],[1068,2,1,93,94],[1075,1,1,94,95]]],[46,11,11,95,106,[[1078,1,1,95,96],[1079,1,1,96,97],[1080,3,3,97,100],[1081,1,1,100,101],[1082,1,1,101,102],[1083,1,1,102,103],[1084,1,1,103,104],[1085,1,1,104,105],[1086,1,1,105,106]]],[47,1,1,106,107,[[1094,1,1,106,107]]],[48,5,5,107,112,[[1099,1,1,107,108],[1100,1,1,108,109],[1101,1,1,109,110],[1102,2,2,110,112]]],[49,2,2,112,114,[[1103,1,1,112,113],[1106,1,1,113,114]]],[50,5,5,114,119,[[1108,1,1,114,115],[1109,3,3,115,118],[1110,1,1,118,119]]],[51,3,3,119,122,[[1112,2,2,119,121],[1113,1,1,121,122]]],[52,2,2,122,124,[[1117,1,1,122,123],[1118,1,1,123,124]]],[53,1,1,124,125,[[1119,1,1,124,125]]],[54,1,1,125,126,[[1126,1,1,125,126]]],[57,11,10,126,136,[[1135,4,4,126,130],[1136,2,2,130,132],[1140,1,1,132,133],[1142,3,2,133,135],[1145,1,1,135,136]]],[58,5,5,136,141,[[1146,1,1,136,137],[1148,1,1,137,138],[1149,1,1,138,139],[1150,2,2,139,141]]],[59,3,3,141,144,[[1151,1,1,141,142],[1153,2,2,142,144]]],[60,2,2,144,146,[[1156,1,1,144,145],[1157,1,1,145,146]]],[61,4,3,146,149,[[1161,4,3,146,149]]],[65,3,3,149,152,[[1168,1,1,149,150],[1183,1,1,150,151],[1184,1,1,151,152]]]],[23242,23262,23303,23383,23488,23523,23524,23529,23554,23558,23641,23651,23652,23762,23909,24005,24266,24268,24293,24338,24459,24469,24482,24484,24517,24663,24703,24706,24910,24944,24959,24992,25008,25024,25040,25081,25129,25191,25257,25260,25348,25390,25493,25504,25635,25840,25860,26016,26023,26029,26620,26632,26669,26695,26732,26748,26975,26986,26995,27054,27062,27063,27139,27155,27167,27170,27197,27198,27213,27330,27384,27431,27451,27497,27677,27926,27951,27954,27967,27977,27991,28052,28085,28143,28157,28189,28194,28196,28197,28198,28354,28403,28438,28524,28703,28822,28828,28843,28844,28856,28865,28889,28909,28919,28948,28963,29137,29268,29290,29323,29342,29359,29368,29449,29496,29532,29533,29539,29550,29574,29587,29603,29678,29683,29701,29849,30003,30005,30007,30010,30021,30026,30102,30149,30155,30250,30292,30333,30345,30359,30362,30396,30428,30439,30498,30514,30598,30599,30600,30740,30992,31000]]],["+",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25081]]],["heart",[101,94,[[39,15,14,0,14,[[933,2,2,0,2],[934,1,1,2,3],[939,1,1,3,4],[940,3,3,4,7],[941,3,2,7,9],[943,3,3,9,12],[950,1,1,12,13],[952,1,1,13,14]]],[40,8,8,14,22,[[962,1,1,14,15],[963,3,3,15,18],[964,1,1,18,19],[967,1,1,19,20],[968,2,2,20,22]]],[41,12,10,22,32,[[974,2,2,22,24],[978,3,1,24,25],[980,1,1,25,26],[981,1,1,26,27],[982,1,1,27,28],[984,2,2,28,30],[996,2,2,30,32]]],[42,7,6,32,38,[[1008,2,1,32,33],[1009,1,1,33,34],[1010,2,2,34,36],[1012,2,2,36,38]]],[43,18,17,38,55,[[1019,3,3,38,41],[1021,1,1,41,42],[1022,2,2,42,44],[1024,3,3,44,47],[1025,3,3,47,50],[1028,1,1,50,51],[1030,1,1,51,52],[1033,1,1,52,53],[1038,1,1,53,54],[1045,2,1,54,55]]],[44,9,9,55,64,[[1046,1,1,55,56],[1047,2,2,56,58],[1051,1,1,58,59],[1054,1,1,59,60],[1055,4,4,60,64]]],[45,4,3,64,67,[[1063,1,1,64,65],[1068,2,1,65,66],[1075,1,1,66,67]]],[46,7,7,67,74,[[1079,1,1,67,68],[1080,2,2,68,70],[1082,1,1,70,71],[1083,1,1,71,72],[1085,1,1,72,73],[1086,1,1,73,74]]],[48,3,3,74,77,[[1100,1,1,74,75],[1101,1,1,75,76],[1102,1,1,76,77]]],[49,1,1,77,78,[[1103,1,1,77,78]]],[50,1,1,78,79,[[1109,1,1,78,79]]],[51,1,1,79,80,[[1112,1,1,79,80]]],[53,1,1,80,81,[[1119,1,1,80,81]]],[54,1,1,81,82,[[1126,1,1,81,82]]],[57,5,5,82,87,[[1135,2,2,82,84],[1136,1,1,84,85],[1142,1,1,85,86],[1145,1,1,86,87]]],[58,1,1,87,88,[[1146,1,1,87,88]]],[59,2,2,88,90,[[1151,1,1,88,89],[1153,1,1,89,90]]],[60,1,1,90,91,[[1157,1,1,90,91]]],[61,3,2,91,93,[[1161,3,2,91,93]]],[65,1,1,93,94,[[1184,1,1,93,94]]]],[23242,23262,23303,23488,23523,23524,23529,23554,23558,23641,23651,23652,23909,24005,24459,24469,24482,24484,24517,24663,24703,24706,24992,25024,25191,25260,25348,25390,25493,25504,26016,26023,26620,26632,26669,26695,26732,26748,26975,26986,26995,27054,27062,27063,27139,27167,27170,27197,27198,27213,27330,27384,27497,27677,27926,27951,27967,27991,28085,28157,28194,28196,28197,28198,28403,28524,28703,28828,28844,28856,28889,28909,28948,28963,29290,29323,29342,29368,29539,29587,29701,29849,30005,30007,30026,30155,30250,30292,30396,30428,30514,30599,30600,31000]]],["heart's",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28189]]],["hearts",[57,57,[[39,2,2,0,2,[[937,1,1,0,1],[946,1,1,1,2]]],[40,4,4,2,6,[[958,2,2,2,4],[959,1,1,4,5],[960,1,1,5,6]]],[41,11,11,6,17,[[973,3,3,6,9],[974,1,1,9,10],[975,1,1,10,11],[977,1,1,11,12],[980,1,1,12,13],[988,1,1,13,14],[993,2,2,14,16],[996,1,1,16,17]]],[43,3,3,17,20,[[1024,1,1,17,18],[1031,1,1,18,19],[1032,1,1,19,20]]],[44,5,5,20,25,[[1046,1,1,20,21],[1047,1,1,21,22],[1050,1,1,22,23],[1053,1,1,23,24],[1061,1,1,24,25]]],[45,1,1,25,26,[[1065,1,1,25,26]]],[46,4,4,26,30,[[1078,1,1,26,27],[1080,1,1,27,28],[1081,1,1,28,29],[1084,1,1,29,30]]],[47,1,1,30,31,[[1094,1,1,30,31]]],[48,2,2,31,33,[[1099,1,1,31,32],[1102,1,1,32,33]]],[49,1,1,33,34,[[1106,1,1,33,34]]],[50,4,4,34,38,[[1108,1,1,34,35],[1109,2,2,35,37],[1110,1,1,37,38]]],[51,2,2,38,40,[[1112,1,1,38,39],[1113,1,1,39,40]]],[52,2,2,40,42,[[1117,1,1,40,41],[1118,1,1,41,42]]],[57,6,6,42,48,[[1135,2,2,42,44],[1136,1,1,44,45],[1140,1,1,45,46],[1142,2,2,46,48]]],[58,4,4,48,52,[[1148,1,1,48,49],[1149,1,1,49,50],[1150,2,2,50,52]]],[59,1,1,52,53,[[1153,1,1,52,53]]],[60,1,1,53,54,[[1156,1,1,53,54]]],[61,1,1,54,55,[[1161,1,1,54,55]]],[65,2,2,55,57,[[1168,1,1,55,56],[1183,1,1,56,57]]]],[23383,23762,24266,24268,24293,24338,24910,24944,24959,25008,25040,25129,25257,25635,25840,25860,26029,27155,27431,27451,27954,27977,28052,28143,28354,28438,28822,28843,28865,28919,29137,29268,29359,29449,29496,29532,29533,29550,29574,29603,29678,29683,30003,30010,30021,30102,30149,30155,30333,30345,30359,30362,30439,30498,30598,30740,30992]]]]},{"k":"G2589","v":[["hearts",[2,2,[[43,2,2,0,2,[[1018,1,1,0,1],[1032,1,1,1,2]]]],[26947,27450]]]]},{"k":"G2590","v":[["*",[66,56,[[39,19,14,0,14,[[931,2,2,0,2],[935,7,5,2,7],[940,3,1,7,8],[941,2,2,8,10],[949,5,4,10,14]]],[40,5,5,14,19,[[960,3,3,14,17],[967,1,1,17,18],[968,1,1,18,19]]],[41,12,11,19,30,[[973,1,1,19,20],[975,2,2,20,22],[978,3,2,22,24],[980,1,1,24,25],[984,1,1,25,26],[985,3,3,26,29],[992,1,1,29,30]]],[42,10,7,30,37,[[1000,1,1,30,31],[1008,1,1,31,32],[1011,8,5,32,37]]],[43,1,1,37,38,[[1019,1,1,37,38]]],[44,4,4,38,42,[[1046,1,1,38,39],[1051,2,2,39,41],[1060,1,1,41,42]]],[45,1,1,42,43,[[1070,1,1,42,43]]],[47,1,1,43,44,[[1095,1,1,43,44]]],[48,1,1,44,45,[[1101,1,1,44,45]]],[49,3,3,45,48,[[1103,2,2,45,47],[1106,1,1,47,48]]],[54,1,1,48,49,[[1126,1,1,48,49]]],[57,2,2,49,51,[[1144,1,1,49,50],[1145,1,1,50,51]]],[58,4,4,51,55,[[1148,2,2,51,53],[1150,2,2,53,55]]],[65,2,1,55,56,[[1188,2,1,55,56]]]],[23200,23202,23332,23333,23334,23335,23336,23522,23547,23565,23845,23860,23867,23869,24330,24331,24352,24654,24675,24935,25033,25034,25189,25190,25253,25476,25524,25525,25527,25789,26192,26604,26701,26703,26704,26707,26715,26979,27943,28089,28090,28331,28547,29184,29313,29372,29383,29459,29833,30223,30256,30336,30337,30361,30372,31082]]],["+",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28089]]],["fruit",[53,45,[[39,13,9,0,9,[[931,1,1,0,1],[935,5,3,1,4],[940,3,1,4,5],[941,2,2,5,7],[949,2,2,7,9]]],[40,5,5,9,14,[[960,3,3,9,12],[967,1,1,12,13],[968,1,1,13,14]]],[41,10,9,14,23,[[973,1,1,14,15],[975,1,1,15,16],[978,3,2,16,18],[980,1,1,18,19],[985,3,3,19,22],[992,1,1,22,23]]],[42,10,7,23,30,[[1000,1,1,23,24],[1008,1,1,24,25],[1011,8,5,25,30]]],[43,1,1,30,31,[[1019,1,1,30,31]]],[44,3,3,31,34,[[1046,1,1,31,32],[1051,1,1,32,33],[1060,1,1,33,34]]],[45,1,1,34,35,[[1070,1,1,34,35]]],[47,1,1,35,36,[[1095,1,1,35,36]]],[48,1,1,36,37,[[1101,1,1,36,37]]],[49,2,2,37,39,[[1103,1,1,37,38],[1106,1,1,38,39]]],[57,2,2,39,41,[[1144,1,1,39,40],[1145,1,1,40,41]]],[58,3,3,41,44,[[1148,1,1,41,42],[1150,2,2,42,44]]],[65,1,1,44,45,[[1188,1,1,44,45]]]],[23202,23333,23334,23335,23522,23547,23565,23845,23860,24330,24331,24352,24654,24675,24935,25034,25189,25190,25253,25524,25525,25527,25789,26192,26604,26701,26703,26704,26707,26715,26979,27943,28090,28331,28547,29184,29313,29383,29459,30223,30256,30337,30361,30372,31082]]],["fruits",[12,12,[[39,6,6,0,6,[[931,1,1,0,1],[935,2,2,1,3],[949,3,3,3,6]]],[41,2,2,6,8,[[975,1,1,6,7],[984,1,1,7,8]]],[49,1,1,8,9,[[1103,1,1,8,9]]],[54,1,1,9,10,[[1126,1,1,9,10]]],[58,1,1,10,11,[[1148,1,1,10,11]]],[65,1,1,11,12,[[1188,1,1,11,12]]]],[23200,23332,23336,23860,23867,23869,25033,25476,29372,29833,30336,31082]]]]},{"k":"G2591","v":[["Carpus",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29883]]]]},{"k":"G2592","v":[["*",[8,8,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,2,2,1,3,[[960,2,2,1,3]]],[41,1,1,3,4,[[980,1,1,3,4]]],[44,2,2,4,6,[[1052,2,2,4,6]]],[50,2,2,6,8,[[1107,2,2,6,8]]]],[23562,24343,24351,25260,28095,28096,29471,29475]]],["fruit",[7,7,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,2,2,1,3,[[960,2,2,1,3]]],[41,1,1,3,4,[[980,1,1,3,4]]],[44,2,2,4,6,[[1052,2,2,4,6]]],[50,1,1,6,7,[[1107,1,1,6,7]]]],[23562,24343,24351,25260,28095,28096,29471]]],["fruitful",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29475]]]]},{"k":"G2593","v":[["fruitful",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27431]]]]},{"k":"G2594","v":[["endured",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30199]]]]},{"k":"G2595","v":[["mote",[6,5,[[39,3,3,0,3,[[935,3,3,0,3]]],[41,3,2,3,5,[[978,3,2,3,5]]]],[23319,23320,23321,25187,25188]]]]},{"k":"G2596","v":[["*",[475,432,[[39,37,33,0,33,[[929,1,1,0,1],[930,5,5,1,6],[933,2,2,6,8],[936,1,1,8,9],[937,1,1,9,10],[938,3,1,10,11],[940,6,4,11,15],[942,2,2,15,17],[944,1,1,17,18],[945,2,2,18,20],[947,1,1,20,21],[948,2,2,21,23],[951,1,1,23,24],[952,2,2,24,26],[953,1,1,26,27],[954,3,3,27,30],[955,3,3,30,33]]],[40,20,20,33,53,[[957,1,1,33,34],[959,1,1,34,35],[960,1,1,35,36],[961,1,1,36,37],[962,2,2,37,39],[963,2,2,39,41],[965,3,3,41,44],[967,1,1,44,45],[969,2,2,45,47],[970,5,5,47,52],[971,1,1,52,53]]],[41,42,42,53,95,[[973,3,3,53,56],[974,8,8,56,64],[976,2,2,64,66],[978,2,2,66,68],[980,4,4,68,72],[981,4,4,72,76],[982,5,5,76,81],[983,2,2,81,83],[985,1,1,83,84],[987,1,1,84,85],[988,1,1,85,86],[989,1,1,86,87],[991,1,1,87,88],[993,1,1,88,89],[994,3,3,89,92],[995,3,3,92,95]]],[42,10,10,95,105,[[998,1,1,95,96],[1001,1,1,96,97],[1003,1,1,97,98],[1004,1,1,98,99],[1006,1,1,99,100],[1014,2,2,100,102],[1015,2,2,102,104],[1017,1,1,104,105]]],[43,93,86,105,191,[[1019,5,4,105,109],[1020,4,4,109,113],[1021,2,1,113,114],[1022,2,2,114,116],[1023,1,1,116,117],[1024,1,1,117,118],[1025,4,4,118,122],[1026,2,2,122,124],[1027,1,1,124,125],[1028,1,1,125,126],[1029,1,1,126,127],[1030,4,4,127,131],[1031,3,3,131,134],[1032,5,4,134,138],[1033,5,4,138,142],[1034,6,6,142,148],[1035,2,2,148,150],[1036,4,4,150,154],[1037,2,2,154,156],[1038,3,3,156,159],[1039,3,3,159,162],[1040,3,3,162,165],[1041,7,6,165,171],[1042,9,8,171,179],[1043,4,4,179,183],[1044,8,7,183,190],[1045,1,1,190,191]]],[44,51,43,191,234,[[1046,3,3,191,194],[1047,5,5,194,199],[1048,1,1,199,200],[1049,5,4,200,204],[1050,1,1,204,205],[1052,2,2,205,207],[1053,12,9,207,216],[1054,4,4,216,220],[1055,1,1,220,221],[1056,7,5,221,226],[1057,3,2,226,228],[1059,2,2,228,230],[1060,1,1,230,231],[1061,4,3,231,234]]],[45,24,23,234,257,[[1062,1,1,234,235],[1063,1,1,235,236],[1064,3,3,236,239],[1065,1,1,239,240],[1068,3,2,240,242],[1070,1,1,242,243],[1071,1,1,243,244],[1072,1,1,244,245],[1073,2,2,245,247],[1075,3,3,247,250],[1076,5,5,250,255],[1077,2,2,255,257]]],[46,25,24,257,281,[[1078,2,2,257,259],[1081,2,2,259,261],[1082,2,1,261,262],[1084,3,3,262,265],[1085,2,2,265,267],[1087,7,7,267,274],[1088,5,5,274,279],[1090,2,2,279,281]]],[47,17,14,281,295,[[1091,3,3,281,284],[1092,3,2,284,286],[1093,4,4,286,290],[1094,4,3,290,293],[1095,3,2,293,295]]],[48,24,20,295,315,[[1097,7,6,295,301],[1098,2,1,301,302],[1099,6,5,302,307],[1100,5,4,307,311],[1101,1,1,311,312],[1102,3,3,312,315]]],[49,10,9,315,324,[[1103,2,2,315,317],[1104,1,1,317,318],[1105,5,4,318,322],[1106,2,2,322,324]]],[50,14,11,324,335,[[1107,3,3,324,327],[1108,5,3,327,330],[1109,4,3,330,333],[1110,2,2,333,335]]],[52,4,4,335,339,[[1116,1,1,335,336],[1117,2,2,336,338],[1118,1,1,338,339]]],[53,6,6,339,345,[[1119,3,3,339,342],[1123,2,2,342,344],[1124,1,1,344,345]]],[54,8,7,345,352,[[1125,4,3,345,348],[1126,1,1,348,349],[1128,3,3,349,352]]],[55,8,7,352,359,[[1129,6,5,352,357],[1131,2,2,357,359]]],[56,3,2,359,361,[[1132,3,2,359,361]]],[57,42,37,361,398,[[1133,1,1,361,362],[1134,2,2,362,364],[1135,3,3,364,367],[1136,2,1,367,368],[1137,2,2,368,370],[1138,4,3,370,373],[1139,11,9,373,382],[1140,3,3,382,385],[1141,7,6,385,391],[1142,4,4,391,395],[1143,2,2,395,397],[1144,1,1,397,398]]],[58,5,5,398,403,[[1147,2,2,398,400],[1148,2,2,400,402],[1150,1,1,402,403]]],[59,11,9,403,412,[[1151,4,4,403,407],[1152,1,1,407,408],[1153,1,1,408,409],[1154,5,3,409,412]]],[60,4,4,412,416,[[1157,1,1,412,413],[1158,3,3,413,416]]],[61,1,1,416,417,[[1163,1,1,416,417]]],[62,1,1,417,418,[[1164,1,1,417,418]]],[63,1,1,418,419,[[1165,1,1,418,419]]],[64,4,3,419,422,[[1166,4,3,419,422]]],[65,10,10,422,432,[[1168,4,4,422,426],[1170,1,1,426,427],[1178,1,1,427,428],[1184,1,1,428,429],[1186,2,2,429,431],[1188,1,1,431,432]]]],[23164,23181,23182,23185,23188,23191,23245,23257,23377,23408,23452,23503,23514,23519,23521,23610,23620,23699,23701,23719,23765,23803,23809,23921,23960,23964,24023,24109,24113,24117,24130,24144,24148,24242,24294,24357,24377,24438,24439,24468,24496,24540,24566,24578,24665,24720,24725,24757,24803,24809,24810,24811,24832,24902,24911,24931,24995,24997,25000,25002,25004,25012,25014,25015,25077,25079,25169,25172,25246,25249,25278,25284,25307,25311,25324,25351,25367,25386,25394,25395,25396,25408,25428,25540,25602,25639,25681,25778,25837,25886,25903,25917,25940,25952,25991,26101,26214,26352,26396,26484,26814,26816,26832,26836,26923,26959,26979,26995,26996,26998,27009,27013,27018,27048,27074,27101,27114,27160,27177,27179,27202,27212,27247,27258,27296,27308,27338,27363,27384,27385,27389,27415,27416,27437,27453,27463,27465,27478,27488,27490,27505,27508,27525,27534,27540,27545,27548,27551,27561,27572,27594,27601,27605,27608,27646,27649,27683,27685,27692,27707,27716,27723,27737,27753,27765,27770,27774,27775,27781,27783,27791,27798,27799,27803,27810,27811,27812,27819,27823,27826,27828,27834,27836,27857,27860,27862,27867,27869,27880,27882,27915,27933,27934,27945,27964,27967,27968,27969,27978,27996,28023,28026,28038,28040,28053,28104,28113,28117,28120,28121,28128,28129,28143,28144,28147,28149,28158,28160,28164,28166,28190,28211,28214,28230,28233,28237,28250,28251,28295,28302,28308,28341,28361,28362,28389,28395,28413,28418,28420,28439,28493,28527,28548,28585,28604,28642,28665,28705,28709,28718,28721,28722,28733,28749,28750,28778,28795,28808,28817,28872,28876,28893,28925,28926,28927,28935,28940,28972,28973,28974,28976,28978,28984,28986,29004,29006,29007,29010,29017,29051,29053,29061,29068,29070,29083,29092,29103,29117,29123,29131,29154,29159,29160,29179,29185,29211,29213,29215,29217,29221,29225,29231,29254,29258,29262,29267,29271,29279,29288,29294,29296,29337,29342,29343,29358,29373,29381,29394,29426,29427,29435,29442,29453,29461,29476,29490,29494,29502,29508,29516,29527,29537,29539,29549,29557,29661,29664,29670,29684,29697,29707,29714,29782,29784,29791,29810,29817,29818,29835,29871,29873,29884,29893,29895,29896,29897,29901,29928,29930,29940,29952,29973,29981,29994,29998,30003,30008,30029,30036,30040,30057,30060,30064,30069,30075,30079,30080,30081,30084,30085,30086,30091,30096,30097,30101,30110,30114,30124,30127,30130,30132,30134,30136,30141,30144,30179,30185,30222,30301,30310,30328,30333,30363,30376,30377,30389,30391,30410,30431,30452,30460,30465,30511,30525,30535,30537,30638,30651,30672,30687,30688,30690,30721,30731,30737,30740,30776,30898,30999,31050,31051,31082]]],["+",[111,108,[[39,7,7,0,7,[[942,2,2,0,2],[945,2,2,2,4],[948,1,1,4,5],[952,1,1,5,6],[954,1,1,6,7]]],[40,9,9,7,16,[[960,1,1,7,8],[962,2,2,8,10],[963,1,1,10,11],[965,2,2,11,13],[969,2,2,13,15],[970,1,1,15,16]]],[41,17,17,16,33,[[973,1,1,16,17],[974,1,1,17,18],[978,2,2,18,20],[980,2,2,20,22],[981,2,2,22,24],[982,2,2,24,26],[983,1,1,26,27],[988,1,1,27,28],[989,1,1,28,29],[991,1,1,29,30],[993,1,1,30,31],[994,2,2,31,33]]],[42,2,2,33,35,[[1001,1,1,33,34],[1017,1,1,34,35]]],[43,33,31,35,66,[[1019,3,2,35,37],[1020,2,2,37,39],[1022,1,1,39,40],[1025,1,1,40,41],[1030,1,1,41,42],[1031,2,2,42,44],[1032,3,2,44,46],[1033,1,1,46,47],[1034,5,5,47,52],[1035,1,1,52,53],[1036,3,3,53,56],[1037,2,2,56,58],[1038,1,1,58,59],[1039,1,1,59,60],[1040,1,1,60,61],[1041,1,1,61,62],[1042,2,2,62,64],[1043,1,1,64,65],[1044,1,1,65,66]]],[44,7,7,66,73,[[1046,1,1,66,67],[1052,1,1,67,68],[1053,1,1,68,69],[1056,3,3,69,72],[1059,1,1,72,73]]],[45,5,5,73,78,[[1072,1,1,73,74],[1073,1,1,74,75],[1075,1,1,75,76],[1076,1,1,76,77],[1077,1,1,77,78]]],[46,6,6,78,84,[[1078,1,1,78,79],[1081,1,1,79,80],[1084,3,3,80,83],[1088,1,1,83,84]]],[47,2,2,84,86,[[1091,1,1,84,85],[1092,1,1,85,86]]],[48,2,2,86,88,[[1101,1,1,86,87],[1102,1,1,87,88]]],[50,1,1,88,89,[[1110,1,1,88,89]]],[55,2,2,89,91,[[1129,2,2,89,91]]],[56,1,1,91,92,[[1132,1,1,91,92]]],[57,11,11,92,103,[[1135,2,2,92,94],[1136,1,1,94,95],[1139,2,2,95,97],[1141,3,3,97,100],[1142,3,3,100,103]]],[58,2,2,103,105,[[1147,1,1,103,104],[1150,1,1,104,105]]],[59,2,1,105,106,[[1154,2,1,105,106]]],[65,2,2,106,108,[[1170,1,1,106,107],[1188,1,1,107,108]]]],[23610,23620,23701,23719,23809,23960,24109,24357,24438,24439,24496,24540,24566,24720,24725,24803,24911,25014,25169,25172,25246,25249,25311,25324,25386,25396,25408,25639,25681,25778,25837,25903,25917,26214,26923,26995,26996,26998,27009,27101,27179,27389,27415,27437,27453,27463,27488,27525,27534,27540,27548,27551,27561,27594,27605,27608,27646,27649,27683,27723,27753,27791,27812,27819,27834,27880,27945,28104,28149,28230,28233,28237,28295,28604,28665,28709,28749,28778,28808,28876,28925,28926,28927,29017,29070,29083,29337,29358,29549,29897,29901,29952,29998,30008,30029,30084,30091,30110,30130,30132,30134,30136,30144,30310,30363,30460,30776,31082]]],["According",[6,6,[[39,1,1,0,1,[[937,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[45,1,1,2,3,[[1064,1,1,2,3]]],[48,1,1,3,4,[[1099,1,1,3,4]]],[49,1,1,4,5,[[1103,1,1,4,5]]],[53,1,1,5,6,[[1119,1,1,5,6]]]],[23408,24902,28420,29262,29381,29707]]],["Against",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29782]]],["At",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28164]]],["By",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30086]]],["Concerning",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29427]]],["about",[3,3,[[43,3,3,0,3,[[1019,1,1,0,1],[1029,1,1,1,2],[1044,1,1,2,3]]]],[26959,27338,27882]]],["according",[100,95,[[39,3,3,0,3,[[930,1,1,0,1],[944,1,1,1,2],[953,1,1,2,3]]],[40,1,1,3,4,[[963,1,1,3,4]]],[41,6,6,4,10,[[973,1,1,4,5],[974,4,4,5,9],[995,1,1,9,10]]],[42,2,2,10,12,[[1003,1,1,10,11],[1014,1,1,11,12]]],[43,5,5,12,17,[[1024,1,1,12,13],[1030,1,1,13,14],[1039,2,2,14,16],[1041,1,1,16,17]]],[44,18,16,17,33,[[1046,2,2,17,19],[1047,3,3,19,22],[1049,1,1,22,23],[1053,2,2,23,25],[1054,2,2,25,27],[1055,1,1,27,28],[1056,1,1,28,29],[1057,2,1,29,30],[1060,1,1,30,31],[1061,3,2,31,33]]],[45,3,3,33,36,[[1064,1,1,33,34],[1076,2,2,34,36]]],[46,6,6,36,42,[[1078,1,1,36,37],[1087,3,3,37,40],[1088,1,1,40,41],[1090,1,1,41,42]]],[47,2,2,42,44,[[1091,1,1,42,43],[1093,1,1,43,44]]],[48,14,13,44,57,[[1097,5,5,44,49],[1098,2,1,49,50],[1099,3,3,50,53],[1100,3,3,53,56],[1102,1,1,56,57]]],[49,2,2,57,59,[[1105,1,1,57,58],[1106,1,1,58,59]]],[50,4,4,59,63,[[1107,3,3,59,62],[1109,1,1,62,63]]],[52,1,1,63,64,[[1116,1,1,63,64]]],[53,2,2,64,66,[[1119,1,1,64,65],[1124,1,1,65,66]]],[54,6,5,66,71,[[1125,4,3,66,69],[1126,1,1,69,70],[1128,1,1,70,71]]],[55,4,4,71,75,[[1129,2,2,71,73],[1131,2,2,73,75]]],[57,6,6,75,81,[[1134,1,1,75,76],[1139,1,1,76,77],[1140,3,3,77,80],[1141,1,1,80,81]]],[58,1,1,81,82,[[1147,1,1,81,82]]],[59,7,6,82,88,[[1151,3,3,82,85],[1153,1,1,85,86],[1154,3,2,86,88]]],[60,2,2,88,90,[[1158,2,2,88,90]]],[61,1,1,90,91,[[1163,1,1,90,91]]],[65,4,4,91,95,[[1168,1,1,91,92],[1184,1,1,92,93],[1186,2,2,93,95]]]],[23185,23699,24023,24468,24931,24995,24997,25002,25012,25991,26352,26816,27160,27385,27707,27716,27775,27933,27934,27964,27968,27978,28040,28143,28144,28158,28166,28190,28214,28251,28308,28361,28362,28418,28721,28722,28817,28973,28984,28986,29004,29053,29061,29131,29211,29213,29215,29217,29225,29231,29258,29267,29271,29279,29288,29294,29342,29442,29461,29476,29490,29494,29539,29661,29714,29791,29810,29817,29818,29835,29884,29893,29895,29928,29930,29981,30069,30096,30097,30101,30124,30301,30376,30377,30391,30431,30452,30465,30535,30537,30638,30740,30999,31050,31051]]],["after",[60,51,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,2,2,1,3,[[974,2,2,1,3]]],[42,2,2,3,5,[[998,1,1,3,4],[1004,1,1,4,5]]],[43,4,4,5,9,[[1030,1,1,5,6],[1040,1,1,6,7],[1041,1,1,7,8],[1043,1,1,8,9]]],[44,10,7,9,16,[[1047,1,1,9,10],[1052,1,1,10,11],[1053,8,5,11,16]]],[45,3,3,16,19,[[1062,1,1,16,17],[1068,1,1,17,18],[1071,1,1,18,19]]],[46,6,5,19,24,[[1082,2,1,19,20],[1087,2,2,20,22],[1088,2,2,22,24]]],[47,4,3,24,27,[[1091,1,1,24,25],[1094,3,2,25,27]]],[48,2,2,27,29,[[1097,1,1,27,28],[1100,1,1,28,29]]],[50,5,3,29,32,[[1108,4,2,29,31],[1109,1,1,31,32]]],[52,2,2,32,34,[[1117,1,1,32,33],[1118,1,1,33,34]]],[54,1,1,34,35,[[1128,1,1,34,35]]],[55,2,2,35,37,[[1129,2,2,35,37]]],[57,11,9,37,46,[[1137,2,2,37,39],[1138,1,1,39,40],[1139,7,5,40,45],[1144,1,1,45,46]]],[58,1,1,46,47,[[1148,1,1,46,47]]],[60,1,1,47,48,[[1158,1,1,47,48]]],[62,1,1,48,49,[[1164,1,1,48,49]]],[64,2,2,49,51,[[1166,2,2,49,51]]]],[23921,25000,25015,26101,26396,27384,27737,27783,27828,27967,28113,28117,28120,28121,28128,28129,28389,28527,28585,28893,28974,28978,29006,29007,29068,29154,29160,29217,29296,29502,29516,29527,29670,29684,29873,29893,29896,30036,30040,30064,30075,30079,30080,30081,30085,30222,30328,30525,30651,30688,30690]]],["against",[58,51,[[39,14,10,0,10,[[933,2,2,0,2],[938,3,1,2,3],[940,6,4,3,7],[948,1,1,7,8],[954,1,1,8,9],[955,1,1,9,10]]],[40,6,6,10,16,[[959,1,1,10,11],[965,1,1,11,12],[967,1,1,12,13],[970,3,3,13,16]]],[41,2,2,16,18,[[981,1,1,16,17],[983,1,1,17,18]]],[42,2,2,18,20,[[1014,1,1,18,19],[1015,1,1,19,20]]],[43,16,14,20,34,[[1021,2,1,20,21],[1023,1,1,21,22],[1031,1,1,22,23],[1033,1,1,23,24],[1036,1,1,24,25],[1038,1,1,25,26],[1041,1,1,26,27],[1042,5,5,27,32],[1044,3,2,32,34]]],[44,2,2,34,36,[[1053,1,1,34,35],[1056,1,1,35,36]]],[45,1,1,36,37,[[1065,1,1,36,37]]],[46,2,2,37,39,[[1087,1,1,37,38],[1090,1,1,38,39]]],[47,4,3,39,42,[[1093,1,1,39,40],[1095,3,2,40,42]]],[50,1,1,42,43,[[1108,1,1,42,43]]],[58,1,1,43,44,[[1148,1,1,43,44]]],[59,1,1,44,45,[[1152,1,1,44,45]]],[60,1,1,45,46,[[1157,1,1,45,46]]],[64,1,1,46,47,[[1166,1,1,46,47]]],[65,4,4,47,51,[[1168,3,3,47,50],[1178,1,1,50,51]]]],[23245,23257,23452,23503,23514,23519,23521,23803,24113,24130,24294,24578,24665,24809,24810,24811,25351,25428,26814,26836,27048,27114,27416,27505,27601,27692,27770,27798,27799,27803,27811,27823,27862,27869,28147,28211,28439,28976,29051,29123,29179,29185,29508,30333,30410,30511,30687,30721,30731,30737,30898]]],["among",[2,2,[[43,2,2,0,2,[[1038,1,1,0,1],[1043,1,1,1,2]]]],[27685,27826]]],["as",[9,9,[[41,2,2,0,2,[[976,1,1,0,1],[994,1,1,1,2]]],[43,1,1,2,3,[[1040,1,1,2,3]]],[44,1,1,3,4,[[1048,1,1,3,4]]],[45,2,2,4,6,[[1064,1,1,4,5],[1070,1,1,5,6]]],[46,1,1,6,7,[[1081,1,1,6,7]]],[47,1,1,7,8,[[1094,1,1,7,8]]],[59,1,1,8,9,[[1151,1,1,8,9]]]],[25079,25886,27765,27996,28413,28548,28872,29159,30389]]],["at",[6,6,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,2,2,2,4,[[982,1,1,2,3],[995,1,1,3,4]]],[43,1,1,4,5,[[1033,1,1,4,5]]],[54,1,1,5,6,[[1128,1,1,5,6]]]],[24144,24832,25395,25952,27508,29871]]],["before",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]]],[25004,29103]]],["by",[26,25,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,2,2,1,3,[[982,2,2,1,3]]],[42,2,2,3,5,[[1006,1,1,3,4],[1015,1,1,4,5]]],[43,1,1,5,6,[[1045,1,1,5,6]]],[44,3,3,6,9,[[1047,1,1,6,7],[1049,1,1,7,8],[1056,1,1,8,9]]],[45,3,3,9,12,[[1068,1,1,9,10],[1073,1,1,10,11],[1075,1,1,11,12]]],[46,1,1,12,13,[[1085,1,1,12,13]]],[47,1,1,13,14,[[1092,1,1,13,14]]],[48,2,2,14,16,[[1099,2,2,14,16]]],[52,1,1,16,17,[[1117,1,1,16,17]]],[53,2,2,17,19,[[1119,1,1,17,18],[1123,1,1,18,19]]],[57,6,5,19,24,[[1138,3,2,19,21],[1141,1,1,21,22],[1142,1,1,22,23],[1143,1,1,23,24]]],[63,1,1,24,25,[[1165,1,1,24,25]]]],[24117,25367,25394,26484,26832,27915,27969,28038,28233,28493,28642,28705,28940,29083,29254,29258,29664,29697,29784,30057,30060,30127,30141,30179,30672]]],["cause",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27810]]],["concerning",[3,3,[[44,1,1,0,1,[[1054,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]]],[28160,29010,29294]]],["down",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23377,24377,25278]]],["every",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28250]]],["for",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23765]]],["in",[33,33,[[39,7,7,0,7,[[929,1,1,0,1],[930,4,4,1,5],[952,1,1,5,6],[955,1,1,6,7]]],[41,1,1,7,8,[[987,1,1,7,8]]],[43,10,10,8,18,[[1020,1,1,8,9],[1028,1,1,9,10],[1030,1,1,10,11],[1032,2,2,11,13],[1034,1,1,13,14],[1041,2,2,14,16],[1042,1,1,16,17],[1043,1,1,17,18]]],[44,2,2,18,20,[[1050,1,1,18,19],[1061,1,1,19,20]]],[45,2,2,20,22,[[1075,1,1,20,21],[1077,1,1,21,22]]],[46,1,1,22,23,[[1087,1,1,22,23]]],[50,3,3,23,26,[[1109,2,2,23,25],[1110,1,1,25,26]]],[56,1,1,26,27,[[1132,1,1,26,27]]],[57,6,6,27,33,[[1133,1,1,27,28],[1134,1,1,28,29],[1135,1,1,29,30],[1136,1,1,30,31],[1141,1,1,31,32],[1143,1,1,32,33]]]],[23164,23181,23182,23188,23191,23964,24148,25602,27018,27308,27363,27465,27478,27545,27781,27783,27799,27836,28053,28341,28718,28795,28972,29537,29539,29557,29940,29973,29994,30003,30029,30114,30185]]],["into",[2,2,[[43,2,2,0,2,[[1022,1,1,0,1],[1033,1,1,1,2]]]],[27074,27490]]],["manner",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]]],[28750,29117]]],["of",[10,9,[[43,3,3,0,3,[[1035,1,1,0,1],[1044,2,2,1,3]]],[44,2,1,3,4,[[1049,2,1,3,4]]],[45,2,2,4,6,[[1068,1,1,4,5],[1076,1,1,5,6]]],[48,1,1,6,7,[[1097,1,1,6,7]]],[49,1,1,7,8,[[1106,1,1,7,8]]],[56,1,1,8,9,[[1132,1,1,8,9]]]],[27572,27857,27860,28026,28493,28733,29221,29453,29952]]],["on",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]]],[24757,27212]]],["pertaining",[2,2,[[44,1,1,0,1,[[1049,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[28023,30114]]],["through",[5,5,[[41,3,3,0,3,[[976,1,1,0,1],[981,1,1,1,2],[985,1,1,2,3]]],[43,1,1,3,4,[[1020,1,1,3,4]]],[49,1,1,4,5,[[1104,1,1,4,5]]]],[25077,25307,25540,27013,29394]]],["throughout",[7,7,[[41,2,2,0,2,[[980,1,1,0,1],[995,1,1,1,2]]],[43,5,5,2,7,[[1025,1,1,2,3],[1026,2,2,3,5],[1027,1,1,5,6],[1041,1,1,6,7]]]],[25284,25940,27177,27247,27258,27296,27774]]],["to",[5,5,[[43,2,2,0,2,[[1019,1,1,0,1],[1033,1,1,1,2]]],[44,1,1,2,3,[[1059,1,1,2,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]],[47,1,1,4,5,[[1092,1,1,4,5]]]],[26979,27490,28302,28935,29092]]],["touching",[3,3,[[44,1,1,0,1,[[1056,1,1,0,1]]],[49,2,2,1,3,[[1105,2,2,1,3]]]],[28237,29426,29427]]],["toward",[3,3,[[43,2,2,0,2,[[1025,1,1,0,1],[1044,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]]],[27202,27867,29435]]],["unto",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29373]]],["upon",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30687]]],["with",[3,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[45,1,1,1,2,[[1063,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]]],[24242,28395,29343]]]]},{"k":"G2597","v":[["*",[80,80,[[39,10,10,0,10,[[931,1,1,0,1],[935,2,2,1,3],[936,1,1,3,4],[942,1,1,4,5],[945,1,1,5,6],[952,1,1,6,7],[955,2,2,7,9],[956,1,1,9,10]]],[40,6,6,10,16,[[957,1,1,10,11],[959,1,1,11,12],[965,1,1,12,13],[969,1,1,13,14],[971,2,2,14,16]]],[41,12,12,16,28,[[974,1,1,16,17],[975,1,1,17,18],[978,1,1,18,19],[980,1,1,19,20],[981,1,1,20,21],[982,2,2,21,23],[989,1,1,23,24],[990,1,1,24,25],[991,2,2,25,27],[994,1,1,27,28]]],[42,18,18,28,46,[[997,3,3,28,31],[998,1,1,31,32],[999,1,1,32,33],[1000,3,3,33,36],[1001,2,2,36,38],[1002,8,8,38,46]]],[43,19,19,46,65,[[1024,2,2,46,48],[1025,3,3,48,51],[1027,3,3,51,54],[1028,1,1,54,55],[1031,2,2,55,57],[1033,1,1,57,58],[1035,1,1,58,59],[1037,1,1,59,60],[1040,1,1,60,61],[1041,2,2,61,63],[1042,2,2,63,65]]],[44,1,1,65,66,[[1055,1,1,65,66]]],[48,2,2,66,68,[[1100,2,2,66,68]]],[51,1,1,68,69,[[1114,1,1,68,69]]],[58,1,1,69,70,[[1146,1,1,69,70]]],[65,10,10,70,80,[[1169,1,1,70,71],[1176,1,1,71,72],[1178,1,1,72,73],[1179,1,1,73,74],[1182,1,1,74,75],[1184,1,1,75,76],[1186,2,2,76,78],[1187,2,2,78,80]]]],[23208,23341,23343,23346,23626,23709,23974,24169,24171,24197,24225,24310,24547,24732,24856,24858,25024,25047,25163,25268,25355,25393,25394,25682,25702,25736,25737,25908,26076,26077,26095,26107,26133,26203,26205,26207,26214,26217,26273,26290,26295,26298,26299,26307,26308,26315,27131,27150,27191,27202,27214,27270,27279,27280,27312,27425,27439,27491,27579,27636,27744,27770,27791,27802,27803,28195,29281,29282,29619,30283,30758,30862,30903,30921,30975,30994,31039,31047,31055,31063]]],["descend",[4,4,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,1,1,1,2,[[1028,1,1,1,2]]],[44,1,1,2,3,[[1055,1,1,2,3]]],[51,1,1,3,4,[[1114,1,1,3,4]]]],[24858,27312,28195,29619]]],["descended",[7,7,[[39,3,3,0,3,[[935,2,2,0,2],[956,1,1,2,3]]],[41,1,1,3,4,[[975,1,1,3,4]]],[43,1,1,4,5,[[1041,1,1,4,5]]],[48,2,2,5,7,[[1100,2,2,5,7]]]],[23341,23343,24197,25047,27770,29281,29282]]],["descending",[7,7,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[42,3,3,2,5,[[997,3,3,2,5]]],[43,1,1,5,6,[[1027,1,1,5,6]]],[65,1,1,6,7,[[1187,1,1,6,7]]]],[23208,24225,26076,26077,26095,27270,31063]]],["down",[61,61,[[39,6,6,0,6,[[936,1,1,0,1],[942,1,1,1,2],[945,1,1,2,3],[952,1,1,3,4],[955,2,2,4,6]]],[40,4,4,6,10,[[959,1,1,6,7],[965,1,1,7,8],[969,1,1,8,9],[971,1,1,9,10]]],[41,11,11,10,21,[[974,1,1,10,11],[978,1,1,11,12],[980,1,1,12,13],[981,1,1,13,14],[982,2,2,14,16],[989,1,1,16,17],[990,1,1,17,18],[991,2,2,18,20],[994,1,1,20,21]]],[42,15,15,21,36,[[998,1,1,21,22],[999,1,1,22,23],[1000,3,3,23,26],[1001,2,2,26,28],[1002,8,8,28,36]]],[43,16,16,36,52,[[1024,2,2,36,38],[1025,3,3,38,41],[1027,2,2,41,43],[1031,2,2,43,45],[1033,1,1,45,46],[1035,1,1,46,47],[1037,1,1,47,48],[1040,1,1,48,49],[1041,1,1,49,50],[1042,2,2,50,52]]],[58,1,1,52,53,[[1146,1,1,52,53]]],[65,8,8,53,61,[[1169,1,1,53,54],[1176,1,1,54,55],[1178,1,1,55,56],[1179,1,1,56,57],[1184,1,1,57,58],[1186,2,2,58,60],[1187,1,1,60,61]]]],[23346,23626,23709,23974,24169,24171,24310,24547,24732,24856,25024,25163,25268,25355,25393,25394,25682,25702,25736,25737,25908,26107,26133,26203,26205,26207,26214,26217,26273,26290,26295,26298,26299,26307,26308,26315,27131,27150,27191,27202,27214,27279,27280,27425,27439,27491,27579,27636,27744,27791,27802,27803,30283,30758,30862,30903,30921,30994,31039,31047,31055]]],["fell",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30975]]]]},{"k":"G2598","v":[["*",[3,3,[[46,1,1,0,1,[[1081,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]],[65,1,1,2,3,[[1178,1,1,2,3]]]],[28868,30045,30901]]],["down",[2,2,[[46,1,1,0,1,[[1081,1,1,0,1]]],[65,1,1,1,2,[[1178,1,1,1,2]]]],[28868,30901]]],["laying",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30045]]]]},{"k":"G2599","v":[["burden",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29038]]]]},{"k":"G2600","v":[["descent",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25768]]]]},{"k":"G2601","v":[["down",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[23482,25378]]]]},{"k":"G2602","v":[["*",[11,11,[[39,2,2,0,2,[[941,1,1,0,1],[953,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[42,1,1,3,4,[[1013,1,1,3,4]]],[48,1,1,4,5,[[1097,1,1,4,5]]],[57,3,3,5,8,[[1136,1,1,5,6],[1141,1,1,6,7],[1143,1,1,7,8]]],[59,1,1,8,9,[[1151,1,1,8,9]]],[65,2,2,9,11,[[1179,1,1,9,10],[1183,1,1,10,11]]]],[23574,24042,25455,26783,29210,30017,30131,30183,30394,30916,30983]]],["conceive",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30183]]],["foundation",[10,10,[[39,2,2,0,2,[[941,1,1,0,1],[953,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[42,1,1,3,4,[[1013,1,1,3,4]]],[48,1,1,4,5,[[1097,1,1,4,5]]],[57,2,2,5,7,[[1136,1,1,5,6],[1141,1,1,6,7]]],[59,1,1,7,8,[[1151,1,1,7,8]]],[65,2,2,8,10,[[1179,1,1,8,9],[1183,1,1,9,10]]]],[23574,24042,25455,26783,29210,30017,30131,30394,30916,30983]]]]},{"k":"G2603","v":[["+",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29512]]]]},{"k":"G2604","v":[["forth",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27541]]]]},{"k":"G2605","v":[["*",[17,17,[[43,10,10,0,10,[[1021,1,1,0,1],[1030,2,2,1,3],[1032,1,1,3,4],[1033,2,2,4,6],[1034,3,3,6,9],[1043,1,1,9,10]]],[44,1,1,10,11,[[1046,1,1,10,11]]],[45,3,3,11,14,[[1063,1,1,11,12],[1070,1,1,12,13],[1072,1,1,13,14]]],[49,2,2,14,16,[[1103,2,2,14,16]]],[50,1,1,16,17,[[1107,1,1,16,17]]]],[27024,27367,27400,27478,27500,27504,27526,27536,27546,27846,27938,28395,28554,28626,29377,29379,29493]]],["+",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27938]]],["declare",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27546]]],["declaring",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28395]]],["preach",[4,4,[[43,1,1,0,1,[[1034,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[50,1,1,3,4,[[1107,1,1,3,4]]]],[27526,28554,29377,29493]]],["preached",[6,6,[[43,5,5,0,5,[[1021,1,1,0,1],[1030,2,2,1,3],[1032,1,1,3,4],[1034,1,1,4,5]]],[49,1,1,5,6,[[1103,1,1,5,6]]]],[27024,27367,27400,27478,27536,29379]]],["shew",[3,3,[[43,2,2,0,2,[[1033,1,1,0,1],[1043,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]]],[27500,27846,28626]]],["teach",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27504]]]]},{"k":"G2606","v":[["+",[3,3,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23403,24404,25298]]]]},{"k":"G2607","v":[["*",[3,3,[[47,1,1,0,1,[[1092,1,1,0,1]]],[61,2,2,1,3,[[1161,2,2,1,3]]]],[29092,30599,30600]]],["blamed",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29092]]],["condemn",[2,2,[[61,2,2,0,2,[[1161,2,2,0,2]]]],[30599,30600]]]]},{"k":"G2608","v":[["*",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[42,3,3,1,4,[[1015,3,3,1,4]]]],[23509,26856,26857,26858]]],["brake",[2,2,[[42,2,2,0,2,[[1015,2,2,0,2]]]],[26857,26858]]],["break",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23509]]],["broken",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26856]]]]},{"k":"G2609","v":[["*",[10,10,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,8,8,1,9,[[1026,1,1,1,2],[1038,1,1,2,3],[1039,1,1,3,4],[1040,3,3,4,7],[1044,1,1,7,8],[1045,1,1,8,9]]],[44,1,1,9,10,[[1055,1,1,9,10]]]],[25118,27246,27667,27734,27749,27754,27762,27858,27911,28194]]],["+",[5,5,[[43,4,4,0,4,[[1026,1,1,0,1],[1039,1,1,1,2],[1040,2,2,2,4]]],[44,1,1,4,5,[[1055,1,1,4,5]]]],[27246,27734,27749,27762,28194]]],["brought",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25118]]],["down",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27754]]],["landed",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27667]]],["landing",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27911]]],["touched",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27858]]]]},{"k":"G2610","v":[["subdued",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30205]]]]},{"k":"G2611","v":[["up",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25397]]]]},{"k":"G2612","v":[["evident",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30079]]]]},{"k":"G2613","v":[["*",[5,4,[[39,2,2,0,2,[[940,2,2,0,2]]],[41,2,1,2,3,[[978,2,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]]],[23496,23526,25183,30360]]],["condemn",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25183]]],["condemned",[4,4,[[39,2,2,0,2,[[940,2,2,0,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]]],[23496,23526,25183,30360]]]]},{"k":"G2614","v":[["after",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24251]]]]},{"k":"G2615","v":[["+",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]]],[29009,29085]]]]},{"k":"G2616","v":[["*",[2,2,[[43,1,1,0,1,[[1027,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[27297,30299]]],["oppress",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30299]]],["oppressed",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27297]]]]},{"k":"G2617","v":[["*",[13,12,[[41,1,1,0,1,[[985,1,1,0,1]]],[44,3,3,1,4,[[1050,1,1,1,2],[1054,1,1,2,3],[1055,1,1,3,4]]],[45,5,4,4,8,[[1062,2,1,4,5],[1072,3,3,5,8]]],[46,2,2,8,10,[[1084,1,1,8,9],[1086,1,1,9,10]]],[59,2,2,10,12,[[1152,1,1,10,11],[1153,1,1,11,12]]]],[25535,28052,28188,28199,28390,28604,28605,28622,28930,28960,30405,30440]]],["+",[2,2,[[44,1,1,0,1,[[1050,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]]],[28052,28930]]],["ashamed",[5,5,[[41,1,1,0,1,[[985,1,1,0,1]]],[44,2,2,1,3,[[1054,1,1,1,2],[1055,1,1,2,3]]],[46,1,1,3,4,[[1086,1,1,3,4]]],[59,1,1,4,5,[[1153,1,1,4,5]]]],[25535,28188,28199,28960,30440]]],["confound",[2,1,[[45,2,1,0,1,[[1062,2,1,0,1]]]],[28390]]],["confounded",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30405]]],["dishonoureth",[2,2,[[45,2,2,0,2,[[1072,2,2,0,2]]]],[28604,28605]]],["shame",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28622]]]]},{"k":"G2618","v":[["*",[12,11,[[39,3,3,0,3,[[931,1,1,0,1],[941,2,2,1,3]]],[41,1,1,3,4,[[975,1,1,3,4]]],[43,1,1,4,5,[[1036,1,1,4,5]]],[45,1,1,5,6,[[1064,1,1,5,6]]],[57,1,1,6,7,[[1145,1,1,6,7]]],[60,1,1,7,8,[[1158,1,1,7,8]]],[65,4,3,8,11,[[1174,2,1,8,9],[1183,1,1,9,10],[1184,1,1,10,11]]]],[23204,23569,23579,25042,27604,28425,30252,30532,30834,30991,31001]]],["burn",[3,3,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[65,1,1,2,3,[[1183,1,1,2,3]]]],[23569,25042,30991]]],["burned",[5,5,[[39,1,1,0,1,[[941,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]],[45,1,1,2,3,[[1064,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]],[65,1,1,4,5,[[1184,1,1,4,5]]]],[23579,27604,28425,30252,31001]]],["up",[4,3,[[39,1,1,0,1,[[931,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]],[65,2,1,2,3,[[1174,2,1,2,3]]]],[23204,30532,30834]]]]},{"k":"G2619","v":[["*",[3,2,[[45,3,2,0,2,[[1072,3,2,0,2]]]],[28606,28607]]],["cover",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28607]]],["covered",[2,1,[[45,2,1,0,1,[[1072,2,1,0,1]]]],[28606]]]]},{"k":"G2620","v":[["*",[4,3,[[44,2,1,0,1,[[1056,2,1,0,1]]],[58,2,2,1,3,[[1147,1,1,1,2],[1148,1,1,2,3]]]],[28227,30306,30333]]],["+",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28227]]],["against",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30306]]],["boast",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28227]]],["glory",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30333]]]]},{"k":"G2621","v":[["*",[11,11,[[40,4,4,0,4,[[957,1,1,0,1],[958,2,2,1,3],[970,1,1,3,4]]],[41,2,2,4,6,[[977,2,2,4,6]]],[42,2,2,6,8,[[1001,2,2,6,8]]],[43,2,2,8,10,[[1026,1,1,8,9],[1045,1,1,9,10]]],[45,1,1,10,11,[[1069,1,1,10,11]]]],[24245,24264,24275,24757,25132,25136,26213,26216,27249,27907,28537]]],["+",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[25136,27249]]],["lay",[5,5,[[40,2,2,0,2,[[957,1,1,0,1],[958,1,1,1,2]]],[41,1,1,2,3,[[977,1,1,2,3]]],[42,1,1,3,4,[[1001,1,1,3,4]]],[43,1,1,4,5,[[1045,1,1,4,5]]]],[24245,24264,25132,26213,27907]]],["lie",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26216]]],["meat",[3,3,[[40,2,2,0,2,[[958,1,1,0,1],[970,1,1,1,2]]],[45,1,1,2,3,[[1069,1,1,2,3]]]],[24275,24757,28537]]]]},{"k":"G2622","v":[["brake",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[24448,25317]]]]},{"k":"G2623","v":[["up",[2,2,[[41,1,1,0,1,[[975,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]]],[25045,27833]]]]},{"k":"G2624","v":[["+",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27381]]]]},{"k":"G2625","v":[["*",[3,3,[[41,3,3,0,3,[[981,1,1,0,1],[986,1,1,1,2],[996,1,1,2,3]]]],[25315,25561,26021]]],["+",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25561]]],["down",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25315]]],["meat",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26021]]]]},{"k":"G2626","v":[["overflowed",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30528]]]]},{"k":"G2627","v":[["flood",[4,4,[[39,2,2,0,2,[[952,2,2,0,2]]],[41,1,1,2,3,[[989,1,1,2,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]]],[23995,23996,25678,30505]]]]},{"k":"G2628","v":[["*",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,1,1,1,2,[[1033,1,1,1,2]]]],[25990,27500]]],["after",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25990]]],["followed",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27500]]]]},{"k":"G2629","v":[["cutting",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24369]]]]},{"k":"G2630","v":[["+",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25092]]]]},{"k":"G2631","v":[["condemnation",[3,3,[[44,3,3,0,3,[[1050,2,2,0,2],[1053,1,1,2,3]]]],[28063,28065,28117]]]]},{"k":"G2632","v":[["*",[19,19,[[39,4,4,0,4,[[940,2,2,0,2],[948,1,1,2,3],[955,1,1,3,4]]],[40,3,3,4,7,[[966,1,1,4,5],[970,1,1,5,6],[972,1,1,6,7]]],[41,2,2,7,9,[[983,2,2,7,9]]],[42,2,2,9,11,[[1004,2,2,9,11]]],[44,4,4,11,15,[[1047,1,1,11,12],[1053,2,2,12,14],[1059,1,1,14,15]]],[45,1,1,15,16,[[1072,1,1,15,16]]],[57,1,1,16,17,[[1143,1,1,16,17]]],[58,1,1,17,18,[[1150,1,1,17,18]]],[60,1,1,18,19,[[1157,1,1,18,19]]]],[23530,23531,23810,24132,24621,24818,24889,25436,25437,26391,26392,27963,28119,28150,28303,28632,30179,30363,30506]]],["condemn",[7,7,[[39,3,3,0,3,[[940,2,2,0,2],[948,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,2,2,4,6,[[983,2,2,4,6]]],[42,1,1,6,7,[[1004,1,1,6,7]]]],[23530,23531,23810,24621,25436,25437,26392]]],["condemned",[8,8,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]],[44,1,1,3,4,[[1053,1,1,3,4]]],[45,1,1,4,5,[[1072,1,1,4,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]],[58,1,1,6,7,[[1150,1,1,6,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]]],[24132,24818,26391,28119,28632,30179,30363,30506]]],["condemnest",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27963]]],["condemneth",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28150]]],["damned",[2,2,[[40,1,1,0,1,[[972,1,1,0,1]]],[44,1,1,1,2,[[1059,1,1,1,2]]]],[24889,28303]]]]},{"k":"G2633","v":[["*",[2,2,[[46,2,2,0,2,[[1080,1,1,0,1],[1084,1,1,1,2]]]],[28850,28919]]],["condemn",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28919]]],["condemnation",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28850]]]]},{"k":"G2634","v":[["*",[4,4,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[43,1,1,2,3,[[1036,1,1,2,3]]],[59,1,1,3,4,[[1155,1,1,3,4]]]],[23817,24630,27601,30468]]],["dominion",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23817]]],["lordship",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24630]]],["over",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30468]]],["overcame",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27601]]]]},{"k":"G2635","v":[["*",[5,3,[[58,3,1,0,1,[[1149,3,1,0,1]]],[59,2,2,1,3,[[1152,1,1,1,2],[1153,1,1,2,3]]]],[30348,30411,30440]]],["+",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30348]]],["against",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30411]]],["evil",[2,1,[[58,2,1,0,1,[[1149,2,1,0,1]]]],[30348]]],["of",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30440]]]]},{"k":"G2636","v":[["*",[2,2,[[46,1,1,0,1,[[1089,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[29042,30400]]],["backbitings",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29042]]],["speakings",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30400]]]]},{"k":"G2637","v":[["Backbiters",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27960]]]]},{"k":"G2638","v":[["*",[15,14,[[40,1,1,0,1,[[965,1,1,0,1]]],[42,4,4,1,5,[[997,1,1,1,2],[1004,2,2,2,4],[1008,1,1,4,5]]],[43,3,3,5,8,[[1021,1,1,5,6],[1027,1,1,6,7],[1042,1,1,7,8]]],[44,1,1,8,9,[[1054,1,1,8,9]]],[45,1,1,9,10,[[1070,1,1,9,10]]],[48,1,1,10,11,[[1099,1,1,10,11]]],[49,3,2,11,13,[[1105,3,2,11,13]]],[51,1,1,13,14,[[1115,1,1,13,14]]]],[24556,26049,26384,26385,26615,27035,27293,27821,28185,28564,29269,29433,29434,29625]]],["apprehend",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29433]]],["apprehended",[2,2,[[49,2,2,0,2,[[1105,2,2,0,2]]]],[29433,29434]]],["attained",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28185]]],["comprehend",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29269]]],["comprehended",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26049]]],["found",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27821]]],["obtain",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28564]]],["overtake",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29625]]],["perceive",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27293]]],["perceived",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27035]]],["taken",[2,2,[[42,2,2,0,2,[[1004,2,2,0,2]]]],[26384,26385]]],["taketh",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24556]]],["upon",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26615]]]]},{"k":"G2639","v":[["number",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29772]]]]},{"k":"G2640","v":[["remnant",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28182]]]]},{"k":"G2641","v":[["*",[25,25,[[39,4,4,0,4,[[932,1,1,0,1],[944,1,1,1,2],[947,1,1,2,3],[949,1,1,3,4]]],[40,3,3,4,7,[[966,1,1,4,5],[968,1,1,5,6],[970,1,1,6,7]]],[41,4,4,7,11,[[977,1,1,7,8],[982,1,1,8,9],[987,1,1,9,10],[992,1,1,10,11]]],[42,1,1,11,12,[[1004,1,1,11,12]]],[43,6,6,12,18,[[1019,1,1,12,13],[1023,1,1,13,14],[1035,1,1,14,15],[1038,1,1,15,16],[1041,1,1,16,17],[1042,1,1,17,18]]],[44,1,1,18,19,[[1056,1,1,18,19]]],[48,1,1,19,20,[[1101,1,1,19,20]]],[51,1,1,20,21,[[1113,1,1,20,21]]],[55,1,1,21,22,[[1129,1,1,21,22]]],[57,2,2,22,24,[[1136,1,1,22,23],[1143,1,1,23,24]]],[60,1,1,24,25,[[1157,1,1,24,25]]]],[23222,23676,23767,23843,24595,24692,24806,25135,25403,25592,25810,26390,26980,27103,27576,27667,27796,27810,28213,29335,29591,29897,30015,30199,30515]]],["+",[2,2,[[43,2,2,0,2,[[1035,1,1,0,1],[1042,1,1,1,2]]]],[27576,27810]]],["forsaken",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30515]]],["forsook",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30199]]],["leave",[6,6,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,2,2,1,3,[[966,1,1,1,2],[968,1,1,2,3]]],[41,1,1,3,4,[[987,1,1,3,4]]],[43,1,1,4,5,[[1023,1,1,4,5]]],[48,1,1,5,6,[[1101,1,1,5,6]]]],[23767,24595,24692,25592,27103,29335]]],["leaving",[1,1,[[39,1,1,0,1,[[932,1,1,0,1]]]],[23222]]],["left",[13,13,[[39,2,2,0,2,[[944,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,3,3,3,6,[[977,1,1,3,4],[982,1,1,4,5],[992,1,1,5,6]]],[42,1,1,6,7,[[1004,1,1,6,7]]],[43,3,3,7,10,[[1019,1,1,7,8],[1038,1,1,8,9],[1041,1,1,9,10]]],[51,1,1,10,11,[[1113,1,1,10,11]]],[55,1,1,11,12,[[1129,1,1,11,12]]],[57,1,1,12,13,[[1136,1,1,12,13]]]],[23676,23843,24806,25135,25403,25810,26390,26980,27667,27796,29591,29897,30015]]],["reserved",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28213]]]]},{"k":"G2642","v":[["stone",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25785]]]]},{"k":"G2643","v":[["*",[4,4,[[44,2,2,0,2,[[1050,1,1,0,1],[1056,1,1,1,2]]],[46,2,2,2,4,[[1082,2,2,2,4]]]],[28058,28224,28895,28896]]],["atonement",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28058]]],["reconciliation",[2,2,[[46,2,2,0,2,[[1082,2,2,0,2]]]],[28895,28896]]],["reconciling",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28224]]]]},{"k":"G2644","v":[["*",[6,5,[[44,2,1,0,1,[[1050,2,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]],[46,3,3,2,5,[[1082,3,3,2,5]]]],[28057,28498,28895,28896,28897]]],["reconciled",[5,4,[[44,2,1,0,1,[[1050,2,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]],[46,2,2,2,4,[[1082,2,2,2,4]]]],[28057,28498,28895,28897]]],["reconciling",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28896]]]]},{"k":"G2645","v":[["residue",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27459]]]]},{"k":"G2646","v":[["*",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[994,1,1,2,3]]]],[24768,24980,25875]]],["guestchamber",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24768,25875]]],["inn",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24980]]]]},{"k":"G2647","v":[["*",[17,16,[[39,5,4,0,4,[[933,2,1,0,1],[952,1,1,1,2],[954,1,1,2,3],[955,1,1,3,4]]],[40,3,3,4,7,[[969,1,1,4,5],[970,1,1,5,6],[971,1,1,6,7]]],[41,3,3,7,10,[[981,1,1,7,8],[991,1,1,8,9],[993,1,1,9,10]]],[43,3,3,10,13,[[1022,2,2,10,12],[1023,1,1,12,13]]],[44,1,1,13,14,[[1059,1,1,13,14]]],[46,1,1,14,15,[[1082,1,1,14,15]]],[47,1,1,15,16,[[1092,1,1,15,16]]]],[23251,23959,24115,24169,24719,24812,24855,25313,25738,25832,27097,27098,27115,28300,28878,29099]]],["destroy",[6,5,[[39,3,2,0,2,[[933,2,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[43,1,1,3,4,[[1023,1,1,3,4]]],[44,1,1,4,5,[[1059,1,1,4,5]]]],[23251,24115,24812,27115,28300]]],["destroyed",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29099]]],["destroyest",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24169,24855]]],["dissolved",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28878]]],["down",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]]],[23959,24719,25832]]],["guest",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25738]]],["lodge",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25313]]],["nought",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27097]]],["overthrow",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27098]]]]},{"k":"G2648","v":[["Consider",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23310]]]]},{"k":"G2649","v":[["against",[4,4,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,2,2,2,4,[[970,1,1,2,3],[971,1,1,3,4]]]],[24116,24142,24814,24830]]]]},{"k":"G2650","v":[["+",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26936]]]]},{"k":"G2651","v":[["alone",[2,2,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[24333,25319]]]]},{"k":"G2652","v":[["curse",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31083]]]]},{"k":"G2653","v":[["curse",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24128]]]]},{"k":"G2654","v":[["consuming",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30241]]]]},{"k":"G2655","v":[["*",[3,3,[[46,3,3,0,3,[[1088,1,1,0,1],[1089,2,2,1,3]]]],[28998,29035,29036]]],["+",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29035]]],["burdensome",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29036]]],["chargeable",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28998]]]]},{"k":"G2656","v":[["beckoned",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25114]]]]},{"k":"G2657","v":[["*",[14,14,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,4,4,1,5,[[978,1,1,1,2],[984,2,2,2,4],[992,1,1,4,5]]],[43,4,4,5,9,[[1024,2,2,5,7],[1028,1,1,7,8],[1044,1,1,8,9]]],[44,1,1,9,10,[[1049,1,1,9,10]]],[57,2,2,10,12,[[1135,1,1,10,11],[1142,1,1,11,12]]],[58,2,2,12,14,[[1146,2,2,12,14]]]],[23319,25187,25483,25486,25802,27147,27148,27313,27894,28041,29996,30157,30289,30290]]],["Consider",[2,2,[[41,2,2,0,2,[[984,2,2,0,2]]]],[25483,25486]]],["behold",[2,2,[[43,2,2,0,2,[[1024,2,2,0,2]]]],[27147,27148]]],["beholdeth",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30290]]],["beholding",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30289]]],["consider",[2,2,[[57,2,2,0,2,[[1135,1,1,0,1],[1142,1,1,1,2]]]],[29996,30157]]],["considered",[2,2,[[43,1,1,0,1,[[1028,1,1,0,1]]],[44,1,1,1,2,[[1049,1,1,1,2]]]],[27313,28041]]],["considerest",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23319]]],["discovered",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27894]]],["perceived",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25802]]],["perceivest",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25187]]]]},{"k":"G2658","v":[["*",[13,13,[[43,9,9,0,9,[[1033,1,1,0,1],[1035,2,2,1,3],[1037,1,1,3,4],[1038,1,1,4,5],[1042,1,1,5,6],[1043,1,1,6,7],[1044,1,1,7,8],[1045,1,1,8,9]]],[45,2,2,9,11,[[1071,1,1,9,10],[1075,1,1,10,11]]],[48,1,1,11,12,[[1100,1,1,11,12]]],[49,1,1,12,13,[[1105,1,1,12,13]]]],[27484,27576,27581,27641,27671,27809,27830,27867,27912,28578,28714,29285,29432]]],["attain",[2,2,[[43,1,1,0,1,[[1044,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[27867,29432]]],["came",[8,8,[[43,7,7,0,7,[[1033,1,1,0,1],[1035,2,2,1,3],[1037,1,1,3,4],[1038,1,1,4,5],[1042,1,1,5,6],[1045,1,1,6,7]]],[45,1,1,7,8,[[1075,1,1,7,8]]]],[27484,27576,27581,27641,27671,27809,27912,28714]]],["come",[3,3,[[43,1,1,0,1,[[1043,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]]],[27830,28578,29285]]]]},{"k":"G2659","v":[["slumber",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28217]]]]},{"k":"G2660","v":[["pricked",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26986]]]]},{"k":"G2661","v":[["worthy",[4,4,[[41,2,2,0,2,[[992,1,1,0,1],[993,1,1,1,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]],[52,1,1,3,4,[[1116,1,1,3,4]]]],[25814,25862,27100,29654]]]]},{"k":"G2662","v":[["*",[5,5,[[39,2,2,0,2,[[933,1,1,0,1],[935,1,1,1,2]]],[41,2,2,2,4,[[980,1,1,2,3],[984,1,1,3,4]]],[57,1,1,4,5,[[1142,1,1,4,5]]]],[23247,23322,25250,25460,30162]]],["down",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25250]]],["foot",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[23247,30162]]],["trample",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23322]]],["trode",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25460]]]]},{"k":"G2663","v":[["rest",[9,8,[[43,1,1,0,1,[[1024,1,1,0,1]]],[57,8,7,1,8,[[1135,2,2,1,3],[1136,6,5,3,8]]]],[27165,30006,30013,30015,30017,30019,30024,30025]]]]},{"k":"G2664","v":[["*",[4,4,[[43,1,1,0,1,[[1031,1,1,0,1]]],[57,3,3,1,4,[[1136,3,3,1,4]]]],[27432,30018,30022,30024]]],["+",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30022]]],["ceased",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30024]]],["rest",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30018]]],["restrained",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27432]]]]},{"k":"G2665","v":[["veil",[6,6,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[57,3,3,3,6,[[1138,1,1,3,4],[1141,1,1,4,5],[1142,1,1,5,6]]]],[24180,24864,25980,30063,30108,30153]]]]},{"k":"G2666","v":[["*",[7,7,[[39,1,1,0,1,[[951,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[46,2,2,2,4,[[1079,1,1,2,3],[1082,1,1,3,4]]],[57,1,1,4,5,[[1143,1,1,4,5]]],[59,1,1,5,6,[[1155,1,1,5,6]]],[65,1,1,6,7,[[1178,1,1,6,7]]]],[23942,28772,28831,28881,30201,30473,30907]]],["devour",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30473]]],["drowned",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30201]]],["swallow",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23942]]],["up",[4,4,[[45,1,1,0,1,[[1076,1,1,0,1]]],[46,2,2,1,3,[[1079,1,1,1,2],[1082,1,1,2,3]]],[65,1,1,3,4,[[1178,1,1,3,4]]]],[28772,28831,28881,30907]]]]},{"k":"G2667","v":[["*",[2,2,[[43,2,2,0,2,[[1043,1,1,0,1],[1045,1,1,1,2]]]],[27837,27905]]],["down",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27905]]],["fallen",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27837]]]]},{"k":"G2668","v":[["arrived",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25271]]]]},{"k":"G2669","v":[["*",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[27140,30507]]],["oppressed",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27140]]],["vexed",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30507]]]]},{"k":"G2670","v":[["*",[2,2,[[39,2,2,0,2,[[942,1,1,0,1],[946,1,1,1,2]]]],[23627,23733]]],["drowned",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23733]]],["sink",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23627]]]]},{"k":"G2671","v":[["*",[6,5,[[47,3,2,0,2,[[1093,3,2,0,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]],[60,1,1,4,5,[[1157,1,1,4,5]]]],[29112,29115,30052,30329,30514]]],["curse",[3,2,[[47,3,2,0,2,[[1093,3,2,0,2]]]],[29112,29115]]],["cursed",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30514]]],["cursing",[2,2,[[57,1,1,0,1,[[1138,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[30052,30329]]]]},{"k":"G2672","v":[["*",[6,6,[[39,2,2,0,2,[[933,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[967,1,1,2,3]]],[41,1,1,3,4,[[978,1,1,3,4]]],[44,1,1,4,5,[[1057,1,1,4,5]]],[58,1,1,5,6,[[1148,1,1,5,6]]]],[23278,24049,24661,25174,28259,30328]]],["curse",[4,4,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]]],[23278,25174,28259,30328]]],["cursed",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24049]]],["cursedst",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24661]]]]},{"k":"G2673","v":[["*",[27,26,[[41,1,1,0,1,[[985,1,1,0,1]]],[44,6,6,1,7,[[1048,2,2,1,3],[1049,1,1,3,4],[1051,1,1,4,5],[1052,2,2,5,7]]],[45,9,8,7,15,[[1062,1,1,7,8],[1063,1,1,8,9],[1067,1,1,9,10],[1074,4,3,10,13],[1076,2,2,13,15]]],[46,4,4,15,19,[[1080,4,4,15,19]]],[47,3,3,19,22,[[1093,1,1,19,20],[1095,2,2,20,22]]],[48,1,1,22,23,[[1098,1,1,22,23]]],[52,1,1,23,24,[[1117,1,1,23,24]]],[54,1,1,24,25,[[1125,1,1,24,25]]],[57,1,1,25,26,[[1134,1,1,25,26]]]],[25525,27994,28022,28036,28074,28093,28097,28391,28400,28480,28673,28675,28676,28742,28744,28848,28852,28854,28855,29119,29166,29173,29244,29669,29819,29991]]],["+",[3,3,[[44,1,1,0,1,[[1048,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]],[54,1,1,2,3,[[1125,1,1,2,3]]]],[27994,29119,29819]]],["abolished",[2,2,[[46,1,1,0,1,[[1080,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]]],[28854,29244]]],["away",[6,6,[[45,3,3,0,3,[[1074,3,3,0,3]]],[46,3,3,3,6,[[1080,3,3,3,6]]]],[28673,28675,28676,28848,28852,28855]]],["ceased",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29173]]],["cumbereth",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25525]]],["delivered",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28097]]],["destroy",[3,3,[[45,1,1,0,1,[[1067,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]],[57,1,1,2,3,[[1134,1,1,2,3]]]],[28480,29669,29991]]],["destroyed",[2,2,[[44,1,1,0,1,[[1051,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]]],[28074,28744]]],["down",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28742]]],["effect",[2,2,[[44,1,1,0,1,[[1049,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]]],[28036,29166]]],["fail",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28673]]],["loosed",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28093]]],["nought",[2,2,[[45,2,2,0,2,[[1062,1,1,0,1],[1063,1,1,1,2]]]],[28391,28400]]],["void",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28022]]]]},{"k":"G2674","v":[["numbered",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26940]]]]},{"k":"G2675","v":[["*",[13,13,[[39,2,2,0,2,[[932,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,1,1,3,4,[[978,1,1,3,4]]],[44,1,1,4,5,[[1054,1,1,4,5]]],[45,1,1,5,6,[[1062,1,1,5,6]]],[46,1,1,6,7,[[1090,1,1,6,7]]],[47,1,1,7,8,[[1096,1,1,7,8]]],[51,1,1,8,9,[[1113,1,1,8,9]]],[57,3,3,9,12,[[1142,1,1,9,10],[1143,1,1,10,11],[1145,1,1,11,12]]],[59,1,1,12,13,[[1155,1,1,12,13]]]],[23230,23842,24234,25186,28177,28373,29054,29189,29600,30138,30175,30262,30475]]],["+",[2,2,[[57,1,1,0,1,[[1145,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[30262,30475]]],["fitted",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28177]]],["framed",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30175]]],["mending",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23230,24234]]],["perfect",[3,3,[[41,1,1,0,1,[[978,1,1,0,1]]],[46,1,1,1,2,[[1090,1,1,1,2]]],[51,1,1,2,3,[[1113,1,1,2,3]]]],[25186,29054,29600]]],["perfected",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23842]]],["prepared",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30138]]],["restore",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29189]]],["together",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28373]]]]},{"k":"G2676","v":[["perfection",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29052]]]]},{"k":"G2677","v":[["perfecting",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29284]]]]},{"k":"G2678","v":[["*",[4,4,[[43,4,4,0,4,[[1029,1,1,0,1],[1030,1,1,1,2],[1036,1,1,2,3],[1038,1,1,3,4]]]],[27354,27378,27618,27704]]],["beckoned",[2,2,[[43,2,2,0,2,[[1036,1,1,0,1],[1038,1,1,1,2]]]],[27618,27704]]],["beckoning",[2,2,[[43,2,2,0,2,[[1029,1,1,0,1],[1030,1,1,1,2]]]],[27354,27378]]]]},{"k":"G2679","v":[["*",[2,2,[[43,1,1,0,1,[[1032,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]]],[27458,28212]]],["down",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28212]]],["ruins",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27458]]]]},{"k":"G2680","v":[["*",[11,10,[[39,1,1,0,1,[[939,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[979,1,1,3,4]]],[57,6,5,4,9,[[1135,3,2,4,6],[1141,2,2,6,8],[1143,1,1,8,9]]],[59,1,1,9,10,[[1153,1,1,9,10]]]],[23469,24217,24910,25222,29998,29999,30107,30111,30179,30444]]],["builded",[2,2,[[57,2,2,0,2,[[1135,2,2,0,2]]]],[29998,29999]]],["built",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[29999]]],["made",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30107]]],["ordained",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30111]]],["prepare",[3,3,[[39,1,1,0,1,[[939,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[979,1,1,2,3]]]],[23469,24217,25222]]],["prepared",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[24910,30179]]],["preparing",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30444]]]]},{"k":"G2681","v":[["*",[4,4,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[985,1,1,2,3]]],[43,1,1,3,4,[[1019,1,1,3,4]]]],[23571,24355,25537,26975]]],["lodge",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]]],[23571,24355]]],["lodged",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25537]]],["rest",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26975]]]]},{"k":"G2682","v":[["nests",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[23365,25359]]]]},{"k":"G2683","v":[["shadowing",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30110]]]]},{"k":"G2684","v":[["out",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29085]]]]},{"k":"G2685","v":[["spies",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30203]]]]},{"k":"G2686","v":[["with",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27135]]]]},{"k":"G2687","v":[["*",[2,2,[[43,2,2,0,2,[[1036,2,2,0,2]]]],[27620,27621]]],["appeased",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27620]]],["quiet",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27621]]]]},{"k":"G2688","v":[["behaviour",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29911]]]]},{"k":"G2689","v":[["apparel",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29725]]]]},{"k":"G2690","v":[["overthrew",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]]],[23838,24655]]]]},{"k":"G2691","v":[["against",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29774]]]]},{"k":"G2692","v":[["*",[2,2,[[54,1,1,0,1,[[1126,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[29841,30506]]],["overthrow",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30506]]],["subverting",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29841]]]]},{"k":"G2693","v":[["overthrown",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28572]]]]},{"k":"G2694","v":[["hale",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25517]]]]},{"k":"G2695","v":[["slay",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25758]]]]},{"k":"G2696","v":[["sealed",[1,1,[[65,1,1,0,1,[[1171,1,1,0,1]]]],[30780]]]]},{"k":"G2697","v":[["possession",[2,2,[[43,2,2,0,2,[[1024,2,2,0,2]]]],[27121,27161]]]]},{"k":"G2698","v":[["*",[3,3,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,2,2,1,3,[[1041,1,1,1,2],[1042,1,1,2,3]]]],[24872,27796,27805]]],["do",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27805]]],["laid",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24872]]],["shew",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27796]]]]},{"k":"G2699","v":[["concision",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29423]]]]},{"k":"G2700","v":[["through",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30232]]]]},{"k":"G2701","v":[["down",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27696]]]]},{"k":"G2702","v":[["*",[3,2,[[43,3,2,0,2,[[1037,2,1,0,1],[1043,1,1,1,2]]]],[27635,27833]]],["+",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27833]]],["down",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27635]]],["into",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27635]]]]},{"k":"G2703","v":[["*",[2,2,[[43,1,1,0,1,[[1031,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[27420,30062]]],["fled",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27420]]],["refuge",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30062]]]]},{"k":"G2704","v":[["*",[2,2,[[54,1,1,0,1,[[1127,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[29861,30512]]],["corrupt",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29861]]],["perish",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30512]]]]},{"k":"G2705","v":[["*",[6,6,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,3,3,2,5,[[979,2,2,2,4],[987,1,1,4,5]]],[43,1,1,5,6,[[1037,1,1,5,6]]]],[24103,24799,25233,25240,25608,27663]]],["kiss",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25240]]],["kissed",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,2,2,2,4,[[979,1,1,2,3],[987,1,1,3,4]]],[43,1,1,4,5,[[1037,1,1,4,5]]]],[24103,24799,25233,25608,27663]]]]},{"k":"G2706","v":[["*",[9,9,[[39,2,2,0,2,[[934,1,1,0,1],[946,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[44,1,1,3,4,[[1047,1,1,3,4]]],[45,1,1,4,5,[[1072,1,1,4,5]]],[53,2,2,5,7,[[1122,1,1,5,6],[1124,1,1,6,7]]],[57,1,1,7,8,[[1144,1,1,7,8]]],[60,1,1,8,9,[[1157,1,1,8,9]]]],[23306,23737,25633,27966,28622,29759,29790,30214,30510]]],["despise",[7,7,[[39,2,2,0,2,[[934,1,1,0,1],[946,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[45,1,1,3,4,[[1072,1,1,3,4]]],[53,2,2,4,6,[[1122,1,1,4,5],[1124,1,1,5,6]]],[60,1,1,6,7,[[1157,1,1,6,7]]]],[23306,23737,25633,28622,29759,29790,30510]]],["despisest",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27966]]],["despising",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30214]]]]},{"k":"G2707","v":[["despisers",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27403]]]]},{"k":"G2708","v":[["poured",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24061,24757]]]]},{"k":"G2709","v":[["earth",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29401]]]]},{"k":"G2710","v":[["*",[2,2,[[45,2,2,0,2,[[1068,1,1,0,1],[1070,1,1,1,2]]]],[28518,28558]]],["abuse",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28558]]],["abusing",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28518]]]]},{"k":"G2711","v":[["cool",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25644]]]]},{"k":"G2712","v":[["idolatry",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27539]]]]},{"k":"G2713","v":[["*",[5,5,[[40,3,3,0,3,[[967,1,1,0,1],[968,1,1,1,2],[969,1,1,2,3]]],[41,1,1,3,4,[[991,1,1,3,4]]],[44,1,1,4,5,[[1049,1,1,4,5]]]],[24642,24714,24720,25761,28039]]],["against",[4,4,[[40,3,3,0,3,[[967,1,1,0,1],[968,1,1,1,2],[969,1,1,2,3]]],[41,1,1,3,4,[[991,1,1,3,4]]]],[24642,24714,24720,25761]]],["before",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28039]]]]},{"k":"G2714","v":[["*",[5,5,[[46,2,2,0,2,[[1079,1,1,0,1],[1089,1,1,1,2]]],[48,1,1,2,3,[[1097,1,1,2,3]]],[50,1,1,3,4,[[1107,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[28841,29041,29210,29487,30696]]],["+",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29487]]],["before",[2,2,[[46,1,1,0,1,[[1089,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]]],[29041,29210]]],["presence",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30696]]],["sight",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28841]]]]},{"k":"G2715","v":[["authority",[2,2,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]]],[23817,24630]]]]},{"k":"G2716","v":[["*",[24,23,[[44,11,11,0,11,[[1046,1,1,0,1],[1047,1,1,1,2],[1049,1,1,2,3],[1050,1,1,3,4],[1052,6,6,4,10],[1060,1,1,10,11]]],[45,1,1,11,12,[[1066,1,1,11,12]]],[46,7,6,12,18,[[1081,1,1,12,13],[1082,1,1,13,14],[1084,3,2,14,16],[1086,1,1,16,17],[1089,1,1,17,18]]],[48,1,1,18,19,[[1102,1,1,18,19]]],[49,1,1,19,20,[[1104,1,1,19,20]]],[58,2,2,20,22,[[1146,2,2,20,22]]],[59,1,1,22,23,[[1154,1,1,22,23]]]],[27957,27971,28037,28050,28099,28104,28106,28108,28109,28111,28321,28457,28876,28882,28926,28927,28967,29034,29350,29403,30269,30286,30449]]],["+",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28457]]],["causeth",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28967]]],["do",[3,3,[[44,3,3,0,3,[[1052,3,3,0,3]]]],[28106,28108,28111]]],["doeth",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27971]]],["done",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29350]]],["out",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29403]]],["perform",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28109]]],["worketh",[7,6,[[44,2,2,0,2,[[1049,1,1,0,1],[1050,1,1,1,2]]],[46,3,2,2,4,[[1081,1,1,2,3],[1084,2,1,3,4]]],[58,2,2,4,6,[[1146,2,2,4,6]]]],[28037,28050,28876,28926,30269,30286]]],["working",[2,2,[[44,2,2,0,2,[[1046,1,1,0,1],[1052,1,1,1,2]]]],[27957,28104]]],["wrought",[6,6,[[44,2,2,0,2,[[1052,1,1,0,1],[1060,1,1,1,2]]],[46,3,3,2,5,[[1082,1,1,2,3],[1084,1,1,3,4],[1089,1,1,4,5]]],[59,1,1,5,6,[[1154,1,1,5,6]]]],[28099,28321,28882,28927,29034,30449]]]]},{"k":"G2718","v":[["*",[13,13,[[41,2,2,0,2,[[976,1,1,0,1],[981,1,1,1,2]]],[43,10,10,2,12,[[1025,1,1,2,3],[1026,1,1,3,4],[1028,1,1,4,5],[1029,1,1,5,6],[1030,1,1,6,7],[1032,1,1,7,8],[1035,2,2,8,10],[1038,1,1,10,11],[1044,1,1,11,12]]],[58,1,1,12,13,[[1148,1,1,12,13]]]],[25094,25338,27181,27248,27334,27356,27366,27443,27562,27579,27674,27860,30334]]],["came",[2,2,[[43,2,2,0,2,[[1028,1,1,0,1],[1044,1,1,1,2]]]],[27334,27860]]],["come",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27562]]],["departed",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27366]]],["descendeth",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30334]]],["down",[7,7,[[41,2,2,0,2,[[976,1,1,0,1],[981,1,1,1,2]]],[43,5,5,2,7,[[1025,1,1,2,3],[1026,1,1,3,4],[1029,1,1,4,5],[1032,1,1,5,6],[1038,1,1,6,7]]]],[25094,25338,27181,27248,27356,27443,27674]]],["landed",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27579]]]]},{"k":"G2719","v":[["*",[15,15,[[39,2,2,0,2,[[941,1,1,0,1],[951,1,1,1,2]]],[40,2,2,2,4,[[960,1,1,2,3],[968,1,1,3,4]]],[41,3,3,4,7,[[980,1,1,4,5],[987,1,1,5,6],[992,1,1,6,7]]],[42,1,1,7,8,[[998,1,1,7,8]]],[46,1,1,8,9,[[1088,1,1,8,9]]],[47,1,1,9,10,[[1095,1,1,9,10]]],[65,5,5,10,15,[[1176,2,2,10,12],[1177,1,1,12,13],[1178,1,1,13,14],[1186,1,1,14,15]]]],[23543,23932,24327,24713,25250,25618,25826,26112,29009,29177,30870,30871,30877,30895,31047]]],["+",[5,5,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[42,1,1,2,3,[[998,1,1,2,3]]],[65,2,2,3,5,[[1176,2,2,3,5]]]],[23543,24327,26112,30870,30871]]],["devour",[6,6,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[46,1,1,3,4,[[1088,1,1,3,4]]],[47,1,1,4,5,[[1095,1,1,4,5]]],[65,1,1,5,6,[[1178,1,1,5,6]]]],[23932,24713,25826,29009,29177,30895]]],["devoured",[3,3,[[41,2,2,0,2,[[980,1,1,0,1],[987,1,1,1,2]]],[65,1,1,2,3,[[1186,1,1,2,3]]]],[25250,25618,31047]]],["devoureth",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30877]]]]},{"k":"G2720","v":[["*",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[51,1,1,1,2,[[1113,1,1,1,2]]],[52,1,1,2,3,[[1118,1,1,2,3]]]],[24972,29601,29683]]],["direct",[2,2,[[51,1,1,0,1,[[1113,1,1,0,1]]],[52,1,1,1,2,[[1118,1,1,1,2]]]],[29601,29683]]],["guide",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24972]]]]},{"k":"G2721","v":[["+",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27569]]]]},{"k":"G2722","v":[["*",[19,19,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,3,3,1,4,[[976,1,1,1,2],[980,1,1,2,3],[986,1,1,3,4]]],[42,1,1,4,5,[[1001,1,1,4,5]]],[43,1,1,5,6,[[1044,1,1,5,6]]],[44,2,2,6,8,[[1046,1,1,6,7],[1052,1,1,7,8]]],[45,3,3,8,11,[[1068,1,1,8,9],[1072,1,1,9,10],[1076,1,1,10,11]]],[46,1,1,11,12,[[1083,1,1,11,12]]],[51,1,1,12,13,[[1115,1,1,12,13]]],[52,2,2,13,15,[[1117,2,2,13,15]]],[56,1,1,15,16,[[1132,1,1,15,16]]],[57,3,3,16,19,[[1135,2,2,16,18],[1142,1,1,18,19]]]],[23864,25105,25260,25562,26214,27895,27948,28097,28517,28602,28720,28908,29642,29667,29668,29951,30001,30009,30156]]],["+",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29668]]],["fast",[3,3,[[51,1,1,0,1,[[1115,1,1,0,1]]],[57,2,2,1,3,[[1135,1,1,1,2],[1142,1,1,2,3]]]],[29642,30001,30156]]],["had",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26214]]],["held",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28097]]],["hold",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[57,1,1,1,2,[[1135,1,1,1,2]]]],[27948,30009]]],["keep",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[45,1,1,1,2,[[1072,1,1,1,2]]]],[25260,28602]]],["made",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27895]]],["memory",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28720]]],["on",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23864]]],["possessed",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28517]]],["possessing",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28908]]],["retained",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29951]]],["stayed",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25105]]],["take",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25562]]],["withholdeth",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29667]]]]},{"k":"G2723","v":[["*",[22,21,[[39,2,2,0,2,[[940,1,1,0,1],[955,1,1,1,2]]],[40,2,2,2,4,[[959,1,1,2,3],[971,1,1,3,4]]],[41,4,4,4,8,[[983,1,1,4,5],[995,3,3,5,8]]],[42,3,2,8,10,[[1001,2,1,8,9],[1004,1,1,9,10]]],[43,9,9,10,19,[[1039,1,1,10,11],[1041,4,4,11,15],[1042,3,3,15,18],[1045,1,1,18,19]]],[44,1,1,19,20,[[1047,1,1,19,20]]],[65,1,1,20,21,[[1178,1,1,20,21]]]],[23499,24141,24290,24829,25459,25937,25945,25949,26255,26387,27734,27771,27777,27782,27788,27801,27807,27812,27918,27977,30901]]],["accuse",[13,13,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[41,3,3,2,5,[[983,1,1,2,3],[995,2,2,3,5]]],[42,2,2,5,7,[[1001,1,1,5,6],[1004,1,1,6,7]]],[43,6,6,7,13,[[1041,3,3,7,10],[1042,2,2,10,12],[1045,1,1,12,13]]]],[23499,24290,25459,25937,25949,26255,26387,27771,27777,27782,27801,27807,27918]]],["accused",[6,6,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[43,2,2,3,5,[[1039,1,1,3,4],[1042,1,1,4,5]]],[65,1,1,5,6,[[1178,1,1,5,6]]]],[24141,24829,25945,27734,27812,30901]]],["accuseth",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26255]]],["accusing",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27977]]],["object",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27788]]]]},{"k":"G2724","v":[["*",[4,4,[[41,1,1,0,1,[[978,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]],[55,1,1,3,4,[[1129,1,1,3,4]]]],[25153,26814,29782,29898]]],["+",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29898]]],["accusation",[3,3,[[41,1,1,0,1,[[978,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]]],[25153,26814,29782]]]]},{"k":"G2725","v":[["*",[7,7,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,5,5,1,6,[[1040,2,2,1,3],[1041,1,1,3,4],[1042,2,2,4,6]]],[65,1,1,6,7,[[1178,1,1,6,7]]]],[26391,27764,27769,27777,27812,27814,30901]]],["accuser",[1,1,[[65,1,1,0,1,[[1178,1,1,0,1]]]],[30901]]],["accusers",[6,6,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,5,5,1,6,[[1040,2,2,1,3],[1041,1,1,3,4],[1042,2,2,4,6]]]],[26391,27764,27769,27777,27812,27814]]]]},{"k":"G2726","v":[["heaviness",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30346]]]]},{"k":"G2727","v":[["*",[8,7,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,3,3,1,4,[[1035,1,1,1,2],[1038,2,2,2,4]]],[44,1,1,4,5,[[1047,1,1,4,5]]],[45,1,1,5,6,[[1075,1,1,5,6]]],[47,2,1,6,7,[[1096,2,1,6,7]]]],[24897,27582,27685,27688,27980,28697,29194]]],["informed",[2,2,[[43,2,2,0,2,[[1038,2,2,0,2]]]],[27685,27688]]],["instructed",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]],[44,1,1,2,3,[[1047,1,1,2,3]]]],[24897,27582,27980]]],["taught",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29194]]],["teach",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28697]]],["teacheth",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29194]]]]},{"k":"G2728","v":[["cankered",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30357]]]]},{"k":"G2729","v":[["*",[2,2,[[39,1,1,0,1,[[944,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[23690,25958]]],["against",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23690]]],["prevailed",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25958]]]]},{"k":"G2730","v":[["*",[47,43,[[39,4,4,0,4,[[930,1,1,0,1],[932,1,1,1,2],[940,1,1,2,3],[951,1,1,3,4]]],[41,2,2,4,6,[[983,1,1,4,5],[985,1,1,5,6]]],[43,20,19,6,25,[[1018,2,2,6,8],[1019,3,3,8,11],[1021,1,1,11,12],[1024,4,3,12,15],[1026,3,3,15,18],[1028,1,1,18,19],[1030,1,1,19,20],[1034,2,2,20,22],[1036,2,2,22,24],[1039,1,1,24,25]]],[48,1,1,25,26,[[1099,1,1,25,26]]],[50,2,2,26,28,[[1107,1,1,26,27],[1108,1,1,27,28]]],[57,1,1,28,29,[[1143,1,1,28,29]]],[58,1,1,29,30,[[1149,1,1,29,30]]],[60,1,1,30,31,[[1158,1,1,30,31]]],[65,15,12,31,43,[[1168,2,1,31,32],[1169,1,1,32,33],[1172,1,1,33,34],[1174,1,1,34,35],[1177,2,1,35,36],[1178,1,1,36,37],[1179,4,3,37,40],[1180,1,1,40,41],[1183,2,2,41,43]]]],[23192,23222,23534,23939,25431,25522,26942,26943,26954,26958,26963,27038,27118,27120,27164,27238,27248,27251,27336,27389,27547,27549,27595,27602,27716,29268,29484,29503,30181,30342,30535,30730,30756,30803,30840,30882,30903,30916,30920,30922,30932,30977,30983]]],["+",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23939]]],["dwell",[19,18,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[43,6,6,2,8,[[1018,1,1,2,3],[1019,1,1,3,4],[1021,1,1,4,5],[1024,1,1,5,6],[1030,1,1,6,7],[1034,1,1,7,8]]],[48,1,1,8,9,[[1099,1,1,8,9]]],[50,1,1,9,10,[[1107,1,1,9,10]]],[65,9,8,10,18,[[1169,1,1,10,11],[1172,1,1,11,12],[1177,1,1,12,13],[1179,4,3,13,16],[1180,1,1,16,17],[1183,1,1,17,18]]]],[23534,25431,26943,26963,27038,27120,27389,27549,29268,29484,30756,30803,30882,30916,30920,30922,30932,30983]]],["dwellers",[2,2,[[43,2,2,0,2,[[1018,1,1,0,1],[1019,1,1,1,2]]]],[26942,26958]]],["dwellest",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30730]]],["dwelleth",[6,6,[[43,2,2,0,2,[[1024,1,1,0,1],[1034,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]],[60,1,1,4,5,[[1158,1,1,4,5]]],[65,1,1,5,6,[[1168,1,1,5,6]]]],[27164,27547,29503,30342,30535,30730]]],["dwelling",[3,3,[[43,2,2,0,2,[[1019,1,1,0,1],[1036,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[26954,27602,30181]]],["dwelt",[12,12,[[39,2,2,0,2,[[930,1,1,0,1],[932,1,1,1,2]]],[41,1,1,2,3,[[985,1,1,2,3]]],[43,8,8,3,11,[[1024,2,2,3,5],[1026,3,3,5,8],[1028,1,1,8,9],[1036,1,1,9,10],[1039,1,1,10,11]]],[65,1,1,11,12,[[1177,1,1,11,12]]]],[23192,23222,25522,27118,27120,27238,27248,27251,27336,27595,27716,30882]]],["inhabitants",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30977]]],["inhabiters",[2,2,[[65,2,2,0,2,[[1174,1,1,0,1],[1178,1,1,1,2]]]],[30840,30903]]]]},{"k":"G2731","v":[["dwelling",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24367]]]]},{"k":"G2732","v":[["habitation",[2,2,[[48,1,1,0,1,[[1098,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[29251,30995]]]]},{"k":"G2733","v":[["habitation",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27549]]]]},{"k":"G2734","v":[["glass",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28859]]]]},{"k":"G2735","v":[["deeds",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27771]]]]},{"k":"G2736","v":[["*",[11,11,[[39,3,3,0,3,[[930,1,1,0,1],[932,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[970,1,1,3,4],[971,1,1,4,5]]],[41,1,1,5,6,[[976,1,1,5,6]]],[42,3,3,6,9,[[1004,3,3,6,9]]],[43,2,2,9,11,[[1019,1,1,9,10],[1037,1,1,10,11]]]],[23185,23215,24180,24820,24864,25072,26387,26389,26404,26968,27635]]],["beneath",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]]],[24820,26404,26968]]],["bottom",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24180,24864]]],["down",[5,5,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]],[42,2,2,2,4,[[1004,2,2,2,4]]],[43,1,1,4,5,[[1037,1,1,4,5]]]],[23215,25072,26387,26389,27635]]],["under",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23185]]]]},{"k":"G2737","v":[["lower",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29281]]]]},{"k":"G2738","v":[["heat",[2,2,[[65,2,2,0,2,[[1173,1,1,0,1],[1182,1,1,1,2]]]],[30826,30963]]]]},{"k":"G2739","v":[["*",[4,4,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[65,2,2,2,4,[[1182,2,2,2,4]]]],[23545,24329,30962,30963]]],["scorch",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30962]]],["scorched",[3,3,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[65,1,1,2,3,[[1182,1,1,2,3]]]],[23545,24329,30963]]]]},{"k":"G2740","v":[["+",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30052]]]]},{"k":"G2741","v":[["heat",[2,2,[[60,2,2,0,2,[[1158,2,2,0,2]]]],[30532,30534]]]]},{"k":"G2742","v":[["heat",[3,3,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[23804,25514,30277]]]]},{"k":"G2743","v":[["iron",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29749]]]]},{"k":"G2744","v":[["*",[38,33,[[44,5,5,0,5,[[1047,2,2,0,2],[1050,3,3,2,5]]],[45,5,4,5,9,[[1062,3,2,5,7],[1064,1,1,7,8],[1065,1,1,8,9]]],[46,21,17,9,26,[[1082,1,1,9,10],[1084,1,1,10,11],[1086,1,1,11,12],[1087,6,5,12,17],[1088,6,4,17,21],[1089,6,5,21,26]]],[47,2,2,26,28,[[1096,2,2,26,28]]],[48,1,1,28,29,[[1098,1,1,28,29]]],[49,1,1,29,30,[[1105,1,1,29,30]]],[52,1,1,30,31,[[1116,1,1,30,31]]],[58,2,2,31,33,[[1146,1,1,31,32],[1149,1,1,32,33]]]],[27979,27985,28049,28050,28058,28392,28394,28431,28440,28889,28930,28958,28979,28984,28986,28987,28988,29001,29005,29007,29019,29023,29027,29028,29031,29033,29201,29202,29238,29424,29653,30275,30353]]],["+",[3,3,[[46,3,3,0,3,[[1084,1,1,0,1],[1087,1,1,1,2],[1088,1,1,2,3]]]],[28930,28979,29007]]],["boast",[7,7,[[44,2,2,0,2,[[1047,2,2,0,2]]],[46,4,4,2,6,[[1086,1,1,2,3],[1087,2,2,3,5],[1088,1,1,5,6]]],[48,1,1,6,7,[[1098,1,1,6,7]]]],[27979,27985,28958,28984,28987,29005,29238]]],["boasting",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28986]]],["glorieth",[2,2,[[45,1,1,0,1,[[1062,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]]],[28394,28988]]],["glory",[19,17,[[44,1,1,0,1,[[1050,1,1,0,1]]],[45,4,4,1,5,[[1062,2,2,1,3],[1064,1,1,3,4],[1065,1,1,4,5]]],[46,11,9,5,14,[[1082,1,1,5,6],[1087,1,1,6,7],[1088,4,3,7,10],[1089,5,4,10,14]]],[47,2,2,14,16,[[1096,2,2,14,16]]],[52,1,1,16,17,[[1116,1,1,16,17]]]],[28050,28392,28394,28431,28440,28889,28988,29001,29007,29019,29023,29027,29028,29031,29201,29202,29653]]],["glorying",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29033]]],["joy",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28058]]],["rejoice",[4,4,[[44,1,1,0,1,[[1050,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]],[58,2,2,2,4,[[1146,1,1,2,3],[1149,1,1,3,4]]]],[28049,29424,30275,30353]]]]},{"k":"G2745","v":[["*",[11,11,[[44,1,1,0,1,[[1049,1,1,0,1]]],[45,3,3,1,4,[[1066,1,1,1,2],[1070,2,2,2,4]]],[46,3,3,4,7,[[1078,1,1,4,5],[1082,1,1,5,6],[1086,1,1,6,7]]],[47,1,1,7,8,[[1096,1,1,7,8]]],[49,2,2,8,10,[[1103,1,1,8,9],[1104,1,1,9,10]]],[57,1,1,10,11,[[1135,1,1,10,11]]]],[28024,28460,28555,28556,28814,28889,28959,29192,29387,29407,30001]]],["+",[2,2,[[45,1,1,0,1,[[1070,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[28555,29407]]],["boasting",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28959]]],["glory",[2,2,[[44,1,1,0,1,[[1049,1,1,0,1]]],[46,1,1,1,2,[[1082,1,1,1,2]]]],[28024,28889]]],["glorying",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28460]]],["of",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28556]]],["rejoicing",[4,4,[[46,1,1,0,1,[[1078,1,1,0,1]]],[47,1,1,1,2,[[1096,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[57,1,1,3,4,[[1135,1,1,3,4]]]],[28814,29192,29387,30001]]]]},{"k":"G2746","v":[["*",[12,12,[[44,2,2,0,2,[[1048,1,1,0,1],[1060,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]],[46,7,7,3,10,[[1078,1,1,3,4],[1084,2,2,4,6],[1085,1,1,6,7],[1086,1,1,7,8],[1088,2,2,8,10]]],[51,1,1,10,11,[[1112,1,1,10,11]]],[58,1,1,11,12,[[1149,1,1,11,12]]]],[28018,28320,28749,28812,28920,28930,28956,28960,28999,29006,29589,30353]]],["boasting",[6,6,[[44,1,1,0,1,[[1048,1,1,0,1]]],[46,5,5,1,6,[[1084,1,1,1,2],[1085,1,1,2,3],[1086,1,1,3,4],[1088,2,2,4,6]]]],[28018,28930,28956,28960,28999,29006]]],["glory",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28320]]],["glorying",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28920]]],["rejoicing",[4,4,[[45,1,1,0,1,[[1076,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]]],[28749,28812,29589,30353]]]]},{"k":"G2747","v":[["Cenchrea",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]]],[27575,28337]]]]},{"k":"G2748","v":[["Cedron",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26786]]]]},{"k":"G2749","v":[["*",[26,26,[[39,3,3,0,3,[[931,1,1,0,1],[933,1,1,1,2],[956,1,1,2,3]]],[41,7,7,3,10,[[974,3,3,3,6],[975,1,1,6,7],[984,1,1,7,8],[995,1,1,8,9],[996,1,1,9,10]]],[42,8,8,10,18,[[998,1,1,10,11],[1007,1,1,11,12],[1015,1,1,12,13],[1016,4,4,13,17],[1017,1,1,17,18]]],[45,1,1,18,19,[[1064,1,1,18,19]]],[46,1,1,19,20,[[1080,1,1,19,20]]],[49,1,1,20,21,[[1103,1,1,20,21]]],[51,1,1,21,22,[[1113,1,1,21,22]]],[53,1,1,22,23,[[1119,1,1,22,23]]],[61,1,1,23,24,[[1163,1,1,23,24]]],[65,2,2,24,26,[[1170,1,1,24,25],[1187,1,1,25,26]]]],[23202,23248,24201,24985,24989,25007,25034,25478,25988,26003,26101,26564,26854,26872,26873,26874,26879,26907,28421,28856,29378,29593,29705,30643,30770,31069]]],["appointed",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29593]]],["is",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28856]]],["laid",[6,6,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,3,3,1,4,[[975,1,1,1,2],[995,1,1,2,3],[996,1,1,3,4]]],[42,1,1,4,5,[[1007,1,1,4,5]]],[45,1,1,5,6,[[1064,1,1,5,6]]]],[23202,25034,25988,26003,26564,28421]]],["lain",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26879]]],["lay",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24201]]],["lie",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26873]]],["lieth",[2,2,[[61,1,1,0,1,[[1163,1,1,0,1]]],[65,1,1,1,2,[[1187,1,1,1,2]]]],[30643,31069]]],["lying",[4,4,[[41,2,2,0,2,[[974,2,2,0,2]]],[42,2,2,2,4,[[1016,2,2,2,4]]]],[24985,24989,26872,26874]]],["made",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29705]]],["set",[6,6,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[42,2,2,2,4,[[998,1,1,2,3],[1015,1,1,3,4]]],[49,1,1,4,5,[[1103,1,1,4,5]]],[65,1,1,5,6,[[1170,1,1,5,6]]]],[23248,25007,26101,26854,29378,30770]]],["there",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26907]]],["up",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25478]]]]},{"k":"G2750","v":[["graveclothes",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26567]]]]},{"k":"G2751","v":[["*",[4,3,[[43,2,2,0,2,[[1025,1,1,0,1],[1035,1,1,1,2]]],[45,2,1,2,3,[[1072,2,1,2,3]]]],[27208,27575,28606]]],["shearer",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27208]]],["shorn",[3,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[45,2,1,1,2,[[1072,2,1,1,2]]]],[27575,28606]]]]},{"k":"G2752","v":[["shout",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29619]]]]},{"k":"G2753","v":[["*",[27,27,[[39,8,8,0,8,[[936,1,1,0,1],[942,3,3,1,4],[943,1,1,4,5],[946,1,1,5,6],[955,2,2,6,8]]],[41,1,1,8,9,[[990,1,1,8,9]]],[43,18,18,9,27,[[1021,1,1,9,10],[1022,1,1,10,11],[1025,1,1,11,12],[1029,1,1,12,13],[1033,1,1,13,14],[1038,2,2,14,16],[1039,2,2,16,18],[1040,3,3,18,21],[1041,1,1,21,22],[1042,4,4,22,26],[1044,1,1,26,27]]]],[23363,23606,23616,23625,23668,23752,24187,24193,25728,27037,27093,27214,27356,27505,27697,27698,27728,27734,27737,27744,27769,27777,27802,27813,27817,27819,27898]]],["Command",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24193]]],["Commanding",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27777]]],["bid",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23625]]],["commanded",[21,21,[[39,5,5,0,5,[[942,2,2,0,2],[943,1,1,2,3],[946,1,1,3,4],[955,1,1,4,5]]],[41,1,1,5,6,[[990,1,1,5,6]]],[43,15,15,6,21,[[1021,1,1,6,7],[1022,1,1,7,8],[1025,1,1,8,9],[1029,1,1,9,10],[1033,1,1,10,11],[1038,2,2,11,13],[1039,2,2,13,15],[1040,2,2,15,17],[1042,3,3,17,20],[1044,1,1,20,21]]]],[23606,23616,23668,23752,24187,25728,27037,27093,27214,27356,27505,27697,27698,27728,27734,27744,27769,27802,27813,27817,27898]]],["commandest",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27737]]],["commandment",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]]],[23363,27819]]]]},{"k":"G2754","v":[["vainglory",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29394]]]]},{"k":"G2755","v":[["glory",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29188]]]]},{"k":"G2756","v":[["*",[18,16,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,3,3,1,4,[[973,1,1,1,2],[992,2,2,2,4]]],[43,1,1,4,5,[[1021,1,1,4,5]]],[45,4,3,5,8,[[1076,4,3,5,8]]],[46,1,1,8,9,[[1083,1,1,8,9]]],[47,1,1,9,10,[[1092,1,1,9,10]]],[48,1,1,10,11,[[1101,1,1,10,11]]],[49,2,1,11,12,[[1104,2,1,11,12]]],[50,1,1,12,13,[[1108,1,1,12,13]]],[51,2,2,13,15,[[1112,1,1,13,14],[1113,1,1,14,15]]],[58,1,1,15,16,[[1147,1,1,15,16]]]],[24676,24946,25789,25790,27047,28728,28732,28776,28899,29083,29310,29407,29502,29571,29595,30313]]],["+",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24946]]],["empty",[3,3,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,2,2,1,3,[[992,2,2,1,3]]]],[24676,25789,25790]]],["things",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27047]]],["vain",[13,11,[[45,4,3,0,3,[[1076,4,3,0,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]],[47,1,1,4,5,[[1092,1,1,4,5]]],[48,1,1,5,6,[[1101,1,1,5,6]]],[49,2,1,6,7,[[1104,2,1,6,7]]],[50,1,1,7,8,[[1108,1,1,7,8]]],[51,2,2,8,10,[[1112,1,1,8,9],[1113,1,1,9,10]]],[58,1,1,10,11,[[1147,1,1,10,11]]]],[28728,28732,28776,28899,29083,29310,29407,29502,29571,29595,30313]]]]},{"k":"G2757","v":[["babblings",[2,2,[[53,1,1,0,1,[[1124,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[29808,29843]]]]},{"k":"G2758","v":[["*",[5,5,[[44,1,1,0,1,[[1049,1,1,0,1]]],[45,2,2,1,3,[[1062,1,1,1,2],[1070,1,1,2,3]]],[46,1,1,3,4,[[1086,1,1,3,4]]],[49,1,1,4,5,[[1104,1,1,4,5]]]],[28036,28380,28555,28959,29398]]],["+",[2,2,[[45,1,1,0,1,[[1070,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[28555,29398]]],["effect",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28380]]],["vain",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28959]]],["void",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28036]]]]},{"k":"G2759","v":[["*",[5,5,[[43,2,2,0,2,[[1026,1,1,0,1],[1043,1,1,1,2]]],[45,2,2,2,4,[[1076,2,2,2,4]]],[65,1,1,4,5,[[1175,1,1,4,5]]]],[27221,27837,28773,28774,30850]]],["pricks",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1043,1,1,1,2]]]],[27221,27837]]],["sting",[2,2,[[45,2,2,0,2,[[1076,2,2,0,2]]]],[28773,28774]]],["stings",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30850]]]]},{"k":"G2760","v":[["centurion",[3,3,[[40,3,3,0,3,[[971,3,3,0,3]]]],[24865,24870,24871]]]]},{"k":"G2761","v":[["vain",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30342]]]]},{"k":"G2762","v":[["tittle",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]]],[23252,25637]]]]},{"k":"G2763","v":[["*",[3,3,[[39,2,2,0,2,[[955,2,2,0,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]]],[24136,24139,28176]]],["potter",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28176]]],["potter's",[2,2,[[39,2,2,0,2,[[955,2,2,0,2]]]],[24136,24139]]]]},{"k":"G2764","v":[["potter",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30744]]]]},{"k":"G2765","v":[["pitcher",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24767,25874]]]]},{"k":"G2766","v":[["tiling",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25126]]]]},{"k":"G2767","v":[["*",[3,2,[[65,3,2,0,2,[[1180,1,1,0,1],[1184,2,1,1,2]]]],[30936,30999]]],["fill",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30999]]],["filled",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30999]]],["out",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30936]]]]},{"k":"G2768","v":[["*",[11,10,[[41,1,1,0,1,[[973,1,1,0,1]]],[65,10,9,1,10,[[1171,1,1,1,2],[1175,1,1,2,3],[1178,1,1,3,4],[1179,3,2,4,6],[1183,4,4,6,10]]]],[24962,30785,30853,30894,30909,30919,30978,30982,30987,30991]]],["horn",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24962]]],["horns",[10,9,[[65,10,9,0,9,[[1171,1,1,0,1],[1175,1,1,1,2],[1178,1,1,2,3],[1179,3,2,3,5],[1183,4,4,5,9]]]],[30785,30853,30894,30909,30919,30978,30982,30987,30991]]]]},{"k":"G2769","v":[["husks",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25604]]]]},{"k":"G2770","v":[["*",[16,15,[[39,5,5,0,5,[[944,1,1,0,1],[946,1,1,1,2],[953,3,3,2,5]]],[40,1,1,5,6,[[964,1,1,5,6]]],[41,1,1,6,7,[[981,1,1,6,7]]],[43,1,1,7,8,[[1044,1,1,7,8]]],[45,5,4,8,12,[[1070,5,4,8,12]]],[49,1,1,12,13,[[1105,1,1,12,13]]],[58,1,1,13,14,[[1149,1,1,13,14]]],[59,1,1,14,15,[[1153,1,1,14,15]]]],[23698,23742,24025,24028,24030,24536,25326,27876,28559,28560,28561,28562,29429,30350,30425]]],["gain",[9,8,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[45,5,4,3,7,[[1070,5,4,3,7]]],[58,1,1,7,8,[[1149,1,1,7,8]]]],[23698,24536,25326,28559,28560,28561,28562,30350]]],["gained",[5,5,[[39,4,4,0,4,[[946,1,1,0,1],[953,3,3,1,4]]],[43,1,1,4,5,[[1044,1,1,4,5]]]],[23742,24025,24028,24030,27876]]],["win",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29429]]],["won",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30425]]]]},{"k":"G2771","v":[["*",[3,3,[[49,2,2,0,2,[[1103,1,1,0,1],[1105,1,1,1,2]]],[55,1,1,2,3,[[1129,1,1,2,3]]]],[29382,29428,29903]]],["+",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29903]]],["gain",[2,2,[[49,2,2,0,2,[[1103,1,1,0,1],[1105,1,1,1,2]]]],[29382,29428]]]]},{"k":"G2772","v":[["money",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26110]]]]},{"k":"G2773","v":[["money",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26109]]]]},{"k":"G2774","v":[["sum",[2,2,[[43,1,1,0,1,[[1039,1,1,0,1]]],[57,1,1,1,2,[[1140,1,1,1,2]]]],[27732,30093]]]]},{"k":"G2775","v":[["head",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24677]]]]},{"k":"G2776","v":[["*",[76,68,[[39,12,12,0,12,[[933,1,1,0,1],[934,1,1,1,2],[936,1,1,2,3],[938,1,1,3,4],[942,2,2,4,6],[949,1,1,6,7],[954,1,1,7,8],[955,4,4,8,12]]],[40,8,8,12,20,[[962,4,4,12,16],[968,1,1,16,17],[970,1,1,17,18],[971,2,2,18,20]]],[41,8,8,20,28,[[979,3,3,20,23],[981,1,1,23,24],[984,1,1,24,25],[992,1,1,25,26],[993,2,2,26,28]]],[42,5,5,28,33,[[1009,1,1,28,29],[1015,2,2,29,31],[1016,2,2,31,33]]],[43,5,5,33,38,[[1021,1,1,33,34],[1035,2,2,34,36],[1038,1,1,36,37],[1044,1,1,37,38]]],[44,1,1,38,39,[[1057,1,1,38,39]]],[45,10,6,39,45,[[1072,9,5,39,44],[1073,1,1,44,45]]],[48,4,3,45,48,[[1097,1,1,45,46],[1100,1,1,46,47],[1101,2,1,47,48]]],[50,3,3,48,51,[[1107,1,1,48,49],[1108,2,2,49,51]]],[59,1,1,51,52,[[1152,1,1,51,52]]],[65,19,16,52,68,[[1167,1,1,52,53],[1170,1,1,53,54],[1175,4,3,54,57],[1176,1,1,57,58],[1178,3,2,58,60],[1179,3,2,60,62],[1180,1,1,62,63],[1183,3,3,63,66],[1184,1,1,66,67],[1185,1,1,67,68]]]],[23270,23299,23365,23447,23605,23608,23868,24061,24158,24159,24166,24168,24431,24432,24434,24435,24683,24757,24845,24855,25233,25239,25241,25359,25466,25796,25844,25854,26639,26827,26855,26874,26879,27033,27563,27575,27688,27889,28265,28603,28604,28605,28607,28610,28655,29228,29287,29327,29483,29504,29513,30406,30711,30772,30847,30857,30859,30862,30892,30894,30909,30911,30940,30978,30982,30984,31012,31029]]],["+",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28604]]],["Head",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29513]]],["head",[55,51,[[39,11,11,0,11,[[933,1,1,0,1],[934,1,1,1,2],[936,1,1,2,3],[938,1,1,3,4],[942,2,2,4,6],[949,1,1,6,7],[954,1,1,7,8],[955,3,3,8,11]]],[40,7,7,11,18,[[962,4,4,11,15],[968,1,1,15,16],[970,1,1,16,17],[971,1,1,17,18]]],[41,7,7,18,25,[[979,3,3,18,21],[981,1,1,21,22],[984,1,1,22,23],[992,1,1,23,24],[993,1,1,24,25]]],[42,5,5,25,30,[[1009,1,1,25,26],[1015,2,2,26,28],[1016,2,2,28,30]]],[43,3,3,30,33,[[1021,1,1,30,31],[1035,1,1,31,32],[1044,1,1,32,33]]],[44,1,1,33,34,[[1057,1,1,33,34]]],[45,9,6,34,40,[[1072,8,5,34,39],[1073,1,1,39,40]]],[48,4,3,40,43,[[1097,1,1,40,41],[1100,1,1,41,42],[1101,2,1,42,43]]],[50,2,2,43,45,[[1107,1,1,43,44],[1108,1,1,44,45]]],[59,1,1,45,46,[[1152,1,1,45,46]]],[65,5,5,46,51,[[1167,1,1,46,47],[1176,1,1,47,48],[1178,1,1,48,49],[1180,1,1,49,50],[1185,1,1,50,51]]]],[23270,23299,23365,23447,23605,23608,23868,24061,24158,24159,24166,24431,24432,24434,24435,24683,24757,24845,25233,25239,25241,25359,25466,25796,25844,26639,26827,26855,26874,26879,27033,27575,27889,28265,28603,28604,28605,28607,28610,28655,29228,29287,29327,29483,29504,30406,30711,30862,30892,30940,31029]]],["heads",[19,16,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]],[43,2,2,3,5,[[1035,1,1,3,4],[1038,1,1,4,5]]],[65,14,11,5,16,[[1170,1,1,5,6],[1175,4,3,6,9],[1178,2,1,9,10],[1179,3,2,10,12],[1183,3,3,12,15],[1184,1,1,15,16]]]],[24168,24855,25854,27563,27688,30772,30847,30857,30859,30894,30909,30911,30978,30982,30984,31012]]]]},{"k":"G2777","v":[["volume",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30140]]]]},{"k":"G2778","v":[["tribute",[4,4,[[39,3,3,0,3,[[945,1,1,0,1],[950,2,2,1,3]]],[40,1,1,3,4,[[968,1,1,3,4]]]],[23725,23889,23891,24687]]]]},{"k":"G2779","v":[["garden",[5,4,[[41,1,1,0,1,[[985,1,1,0,1]]],[42,4,3,1,4,[[1014,2,2,1,3],[1015,2,1,3,4]]]],[25537,26786,26811,26866]]]]},{"k":"G2780","v":[["gardener",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26882]]]]},{"k":"G2781","v":[["+",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26033]]]]},{"k":"G2782","v":[["preaching",[8,8,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[44,1,1,2,3,[[1061,1,1,2,3]]],[45,3,3,3,6,[[1062,1,1,3,4],[1063,1,1,4,5],[1076,1,1,5,6]]],[54,1,1,6,7,[[1128,1,1,6,7]]],[55,1,1,7,8,[[1129,1,1,7,8]]]],[23530,25437,28361,28384,28398,28732,29887,29895]]]]},{"k":"G2783","v":[["preacher",[3,3,[[53,1,1,0,1,[[1120,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[29723,29820,30505]]]]},{"k":"G2784","v":[["*",[61,60,[[39,9,9,0,9,[[931,1,1,0,1],[932,2,2,1,3],[937,1,1,3,4],[938,2,2,4,6],[939,1,1,6,7],[952,1,1,7,8],[954,1,1,8,9]]],[40,14,14,9,23,[[957,6,6,9,15],[959,1,1,15,16],[961,1,1,16,17],[962,1,1,17,18],[963,1,1,18,19],[969,1,1,19,20],[970,1,1,20,21],[972,2,2,21,23]]],[41,9,9,23,32,[[975,1,1,23,24],[976,3,3,24,27],[980,2,2,27,29],[981,1,1,29,30],[984,1,1,30,31],[996,1,1,31,32]]],[43,8,8,32,40,[[1025,1,1,32,33],[1026,1,1,33,34],[1027,2,2,34,36],[1032,1,1,36,37],[1036,1,1,37,38],[1037,1,1,38,39],[1045,1,1,39,40]]],[44,4,4,40,44,[[1047,1,1,40,41],[1055,3,3,41,44]]],[45,4,4,44,48,[[1062,1,1,44,45],[1070,1,1,45,46],[1076,2,2,46,48]]],[46,4,3,48,51,[[1078,1,1,48,49],[1081,1,1,49,50],[1088,2,1,50,51]]],[47,2,2,51,53,[[1092,1,1,51,52],[1095,1,1,52,53]]],[49,1,1,53,54,[[1103,1,1,53,54]]],[50,1,1,54,55,[[1107,1,1,54,55]]],[51,1,1,55,56,[[1112,1,1,55,56]]],[53,1,1,56,57,[[1121,1,1,56,57]]],[54,1,1,57,58,[[1128,1,1,57,58]]],[59,1,1,58,59,[[1153,1,1,58,59]]],[65,1,1,59,60,[[1171,1,1,59,60]]]],[23193,23226,23232,23414,23424,23444,23460,23971,24067,24219,24222,24229,24253,24254,24260,24302,24384,24419,24499,24727,24763,24888,24893,25028,25081,25082,25107,25246,25284,25303,25462,26038,27181,27236,27296,27301,27463,27598,27651,27930,27983,28196,28202,28203,28386,28567,28729,28730,28819,28864,28993,29083,29173,29376,29488,29579,29747,29872,30443,30781]]],["+",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]]],[24254,25107]]],["Preach",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29872]]],["Preaching",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27930]]],["preach",[21,21,[[39,4,4,0,4,[[932,1,1,0,1],[938,2,2,1,3],[939,1,1,3,4]]],[40,4,4,4,8,[[957,2,2,4,6],[959,1,1,6,7],[972,1,1,7,8]]],[41,3,3,8,11,[[976,2,2,8,10],[981,1,1,10,11]]],[43,2,2,11,13,[[1027,1,1,11,12],[1032,1,1,12,13]]],[44,2,2,13,15,[[1055,2,2,13,15]]],[45,2,2,15,17,[[1062,1,1,15,16],[1076,1,1,16,17]]],[46,1,1,17,18,[[1081,1,1,17,18]]],[47,2,2,18,20,[[1092,1,1,18,19],[1095,1,1,19,20]]],[49,1,1,20,21,[[1103,1,1,20,21]]]],[23226,23424,23444,23460,24219,24253,24302,24888,25081,25082,25303,27301,27463,28196,28203,28386,28729,28864,29083,29173,29376]]],["preached",[18,18,[[39,2,2,0,2,[[952,1,1,0,1],[954,1,1,1,2]]],[40,4,4,2,6,[[957,1,1,2,3],[962,1,1,3,4],[970,1,1,4,5],[972,1,1,5,6]]],[41,1,1,6,7,[[996,1,1,6,7]]],[43,3,3,7,10,[[1025,1,1,7,8],[1026,1,1,8,9],[1027,1,1,9,10]]],[45,2,2,10,12,[[1070,1,1,10,11],[1076,1,1,11,12]]],[46,2,2,12,14,[[1078,1,1,12,13],[1088,1,1,13,14]]],[50,1,1,14,15,[[1107,1,1,14,15]]],[51,1,1,15,16,[[1112,1,1,15,16]]],[53,1,1,16,17,[[1121,1,1,16,17]]],[59,1,1,17,18,[[1153,1,1,17,18]]]],[23971,24067,24222,24419,24763,24893,26038,27181,27236,27296,28567,28730,28819,28993,29488,29579,29747,30443]]],["preacher",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28202]]],["preachest",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27983]]],["preacheth",[2,2,[[43,1,1,0,1,[[1036,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[27598,28993]]],["preaching",[7,7,[[39,3,3,0,3,[[931,1,1,0,1],[932,1,1,1,2],[937,1,1,2,3]]],[40,1,1,3,4,[[957,1,1,3,4]]],[41,2,2,4,6,[[975,1,1,4,5],[980,1,1,5,6]]],[43,1,1,6,7,[[1037,1,1,6,7]]]],[23193,23232,23414,24229,25028,25246,27651]]],["proclaimed",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25462]]],["proclaiming",[1,1,[[65,1,1,0,1,[[1171,1,1,0,1]]]],[30781]]],["publish",[2,2,[[40,2,2,0,2,[[957,1,1,0,1],[961,1,1,1,2]]]],[24260,24384]]],["published",[3,3,[[40,2,2,0,2,[[963,1,1,0,1],[969,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[24499,24727,25284]]]]},{"k":"G2785","v":[["whale's",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23529]]]]},{"k":"G2786","v":[["Cephas",[6,6,[[42,1,1,0,1,[[997,1,1,0,1]]],[45,4,4,1,5,[[1062,1,1,1,2],[1064,1,1,2,3],[1070,1,1,3,4],[1076,1,1,4,5]]],[47,1,1,5,6,[[1092,1,1,5,6]]]],[26086,28375,28432,28545,28723,29090]]]]},{"k":"G2787","v":[["ark",[6,6,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]],[57,2,2,2,4,[[1141,1,1,2,3],[1143,1,1,3,4]]],[59,1,1,4,5,[[1153,1,1,4,5]]],[65,1,1,5,6,[[1177,1,1,5,6]]]],[23995,25678,30109,30179,30444,30891]]]]},{"k":"G2788","v":[["*",[4,4,[[45,1,1,0,1,[[1075,1,1,0,1]]],[65,3,3,1,4,[[1171,1,1,1,2],[1180,1,1,2,3],[1181,1,1,3,4]]]],[28685,30787,30928,30948]]],["harp",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28685]]],["harps",[3,3,[[65,3,3,0,3,[[1171,1,1,0,1],[1180,1,1,1,2],[1181,1,1,2,3]]]],[30787,30928,30948]]]]},{"k":"G2789","v":[["*",[2,2,[[45,1,1,0,1,[[1075,1,1,0,1]]],[65,1,1,1,2,[[1180,1,1,1,2]]]],[28685,30928]]],["harped",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28685]]],["harping",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30928]]]]},{"k":"G2790","v":[["harpers",[2,2,[[65,2,2,0,2,[[1180,1,1,0,1],[1184,1,1,1,2]]]],[30928,31015]]]]},{"k":"G2791","v":[["Cilicia",[8,8,[[43,7,7,0,7,[[1023,1,1,0,1],[1032,2,2,1,3],[1038,1,1,3,4],[1039,1,1,4,5],[1040,1,1,5,6],[1044,1,1,6,7]]],[47,1,1,7,8,[[1091,1,1,7,8]]]],[27110,27465,27483,27703,27707,27768,27860,29078]]]]},{"k":"G2792","v":[["cinnamon",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31006]]]]},{"k":"G2793","v":[["*",[4,4,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,2,2,1,3,[[1036,2,2,1,3]]],[45,1,1,3,4,[[1076,1,1,3,4]]]],[25268,27612,27625,28748]]],["+",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28748]]],["danger",[2,2,[[43,2,2,0,2,[[1036,2,2,0,2]]]],[27612,27625]]],["jeopardy",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25268]]]]},{"k":"G2794","v":[["*",[9,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,8,1,1,2,[[1088,8,1,1,2]]]],[28151,29015]]],["peril",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28151]]],["perils",[8,1,[[46,8,1,0,1,[[1088,8,1,0,1]]]],[29015]]]]},{"k":"G2795","v":[["*",[8,8,[[39,2,2,0,2,[[951,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[43,3,3,3,6,[[1034,1,1,3,4],[1038,1,1,4,5],[1041,1,1,5,6]]],[65,2,2,6,8,[[1168,1,1,6,7],[1172,1,1,7,8]]]],[23922,24168,24855,27551,27694,27774,30722,30807]]],["move",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]]],[23922,27551]]],["moved",[2,2,[[43,1,1,0,1,[[1038,1,1,0,1]]],[65,1,1,1,2,[[1172,1,1,1,2]]]],[27694,30807]]],["mover",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27774]]],["remove",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30722]]],["wagging",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24168,24855]]]]},{"k":"G2796","v":[["moving",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26213]]]]},{"k":"G2797","v":[["Cis",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27383]]]]},{"k":"G2798","v":[["*",[11,11,[[39,3,3,0,3,[[941,1,1,0,1],[949,1,1,1,2],[952,1,1,2,3]]],[40,2,2,3,5,[[960,1,1,3,4],[969,1,1,4,5]]],[41,1,1,5,6,[[985,1,1,5,6]]],[44,5,5,6,11,[[1056,5,5,6,11]]]],[23571,23834,23989,24355,24745,25537,28225,28226,28227,28228,28230]]],["branch",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23989,24745]]],["branches",[9,9,[[39,2,2,0,2,[[941,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,1,1,3,4,[[985,1,1,3,4]]],[44,5,5,4,9,[[1056,5,5,4,9]]]],[23571,23834,24355,25537,28225,28226,28227,28228,28230]]]]},{"k":"G2799","v":[["*",[40,34,[[39,2,2,0,2,[[930,1,1,0,1],[954,1,1,1,2]]],[40,4,4,2,6,[[961,2,2,2,4],[970,1,1,4,5],[972,1,1,5,6]]],[41,11,9,6,15,[[978,2,2,6,8],[979,3,3,8,11],[980,2,1,11,12],[991,1,1,12,13],[994,1,1,13,14],[995,2,1,14,15]]],[42,8,6,15,21,[[1007,3,2,15,17],[1012,1,1,17,18],[1016,4,3,18,21]]],[43,2,2,21,23,[[1026,1,1,21,22],[1038,1,1,22,23]]],[44,2,1,23,24,[[1057,2,1,23,24]]],[45,2,1,24,25,[[1068,2,1,24,25]]],[49,1,1,25,26,[[1105,1,1,25,26]]],[58,2,2,26,28,[[1149,1,1,26,27],[1150,1,1,27,28]]],[65,6,6,28,34,[[1171,2,2,28,30],[1184,4,4,30,34]]]],[23187,24129,24402,24403,24826,24883,25167,25171,25208,25227,25233,25297,25772,25926,25963,26554,26556,26746,26878,26880,26882,27255,27677,28260,28517,29439,30346,30355,30783,30784,31002,31004,31008,31012]]],["Weep",[3,3,[[41,2,2,0,2,[[979,1,1,0,1],[980,1,1,1,2]]],[65,1,1,2,3,[[1171,1,1,2,3]]]],[25208,25297,30784]]],["bewail",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31002]]],["weep",[14,12,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,4,3,1,4,[[978,2,2,1,3],[995,2,1,3,4]]],[42,2,2,4,6,[[1007,1,1,4,5],[1012,1,1,5,6]]],[43,1,1,6,7,[[1038,1,1,6,7]]],[44,2,1,7,8,[[1057,2,1,7,8]]],[45,1,1,8,9,[[1068,1,1,8,9]]],[58,2,2,9,11,[[1149,1,1,9,10],[1150,1,1,10,11]]],[65,1,1,11,12,[[1184,1,1,11,12]]]],[24403,25167,25171,25963,26554,26746,27677,28260,28517,30346,30355,31004]]],["weepest",[2,2,[[42,2,2,0,2,[[1016,2,2,0,2]]]],[26880,26882]]],["weeping",[9,8,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[42,3,2,2,4,[[1007,2,1,2,3],[1016,1,1,3,4]]],[43,1,1,4,5,[[1026,1,1,4,5]]],[49,1,1,5,6,[[1105,1,1,5,6]]],[65,2,2,6,8,[[1184,2,2,6,8]]]],[23187,25233,26556,26878,27255,29439,31008,31012]]],["wept",[11,11,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,3,3,1,4,[[961,1,1,1,2],[970,1,1,2,3],[972,1,1,3,4]]],[41,4,4,4,8,[[979,1,1,4,5],[980,1,1,5,6],[991,1,1,6,7],[994,1,1,7,8]]],[42,1,1,8,9,[[1016,1,1,8,9]]],[45,1,1,9,10,[[1068,1,1,9,10]]],[65,1,1,10,11,[[1171,1,1,10,11]]]],[24129,24402,24826,24883,25227,25297,25772,25926,26878,28517,30783]]]]},{"k":"G2800","v":[["breaking",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[26026,26991]]]]},{"k":"G2801","v":[["*",[9,9,[[39,2,2,0,2,[[942,1,1,0,1],[943,1,1,1,2]]],[40,4,4,2,6,[[962,1,1,2,3],[964,3,3,3,6]]],[41,1,1,6,7,[[981,1,1,6,7]]],[42,2,2,7,9,[[1002,2,2,7,9]]]],[23617,23670,24450,24508,24519,24520,25318,26269,26270]]],["broken",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]]],[23670,24508]]],["fragments",[7,7,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,3,3,1,4,[[962,1,1,1,2],[964,2,2,2,4]]],[41,1,1,4,5,[[981,1,1,4,5]]],[42,2,2,5,7,[[1002,2,2,5,7]]]],[23617,24450,24519,24520,25318,26269,26270]]]]},{"k":"G2802","v":[["Clauda",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27871]]]]},{"k":"G2803","v":[["Claudia",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29891]]]]},{"k":"G2804","v":[["Claudius",[3,3,[[43,3,3,0,3,[[1028,1,1,0,1],[1035,1,1,1,2],[1040,1,1,2,3]]]],[27335,27559,27760]]]]},{"k":"G2805","v":[["*",[9,9,[[39,7,7,0,7,[[930,1,1,0,1],[936,1,1,1,2],[941,2,2,2,4],[950,1,1,4,5],[952,1,1,5,6],[953,1,1,6,7]]],[41,1,1,7,8,[[985,1,1,7,8]]],[43,1,1,8,9,[[1037,1,1,8,9]]]],[23187,23357,23581,23589,23885,24008,24038,25546,27663]]],["+",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27663]]],["wailing",[2,2,[[39,2,2,0,2,[[941,2,2,0,2]]]],[23581,23589]]],["weeping",[6,6,[[39,5,5,0,5,[[930,1,1,0,1],[936,1,1,1,2],[950,1,1,2,3],[952,1,1,3,4],[953,1,1,4,5]]],[41,1,1,5,6,[[985,1,1,5,6]]]],[23187,23357,23885,24008,24038,25546]]]]},{"k":"G2806","v":[["*",[15,14,[[39,3,3,0,3,[[942,1,1,0,1],[943,1,1,1,2],[954,1,1,2,3]]],[40,3,3,3,6,[[964,2,2,3,5],[970,1,1,5,6]]],[41,2,2,6,8,[[994,1,1,6,7],[996,1,1,7,8]]],[43,4,4,8,12,[[1019,1,1,8,9],[1037,2,2,9,11],[1044,1,1,11,12]]],[45,3,2,12,14,[[1071,1,1,12,13],[1072,2,1,13,14]]]],[23616,23669,24080,24506,24519,24776,25883,26021,26995,27633,27637,27890,28583,28624]]],["brake",[9,9,[[39,3,3,0,3,[[942,1,1,0,1],[943,1,1,1,2],[954,1,1,2,3]]],[40,3,3,3,6,[[964,2,2,3,5],[970,1,1,5,6]]],[41,2,2,6,8,[[994,1,1,6,7],[996,1,1,7,8]]],[45,1,1,8,9,[[1072,1,1,8,9]]]],[23616,23669,24080,24506,24519,24776,25883,26021,28624]]],["break",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]]],[27633,28583]]],["breaking",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26995]]],["broken",[3,3,[[43,2,2,0,2,[[1037,1,1,0,1],[1044,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]]],[27637,27890,28624]]]]},{"k":"G2807","v":[["*",[6,6,[[39,1,1,0,1,[[944,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[65,4,4,2,6,[[1167,1,1,2,3],[1169,1,1,3,4],[1175,1,1,4,5],[1186,1,1,5,6]]]],[23691,25457,30715,30753,30841,31039]]],["key",[4,4,[[41,1,1,0,1,[[983,1,1,0,1]]],[65,3,3,1,4,[[1169,1,1,1,2],[1175,1,1,2,3],[1186,1,1,3,4]]]],[25457,30753,30841,31039]]],["keys",[2,2,[[39,1,1,0,1,[[944,1,1,0,1]]],[65,1,1,1,2,[[1167,1,1,1,2]]]],[23691,30715]]]]},{"k":"G2808","v":[["*",[16,15,[[39,3,3,0,3,[[934,1,1,0,1],[951,1,1,1,2],[953,1,1,2,3]]],[41,2,2,3,5,[[976,1,1,3,4],[983,1,1,4,5]]],[42,2,2,5,7,[[1016,2,2,5,7]]],[43,2,2,7,9,[[1022,1,1,7,8],[1038,1,1,8,9]]],[61,1,1,9,10,[[1161,1,1,9,10]]],[65,6,5,10,15,[[1169,3,2,10,12],[1177,1,1,12,13],[1186,1,1,13,14],[1187,1,1,14,15]]]],[23288,23931,24018,25088,25412,26886,26893,27082,27694,30596,30753,30754,30878,31041,31078]]],["+",[2,2,[[65,2,2,0,2,[[1186,1,1,0,1],[1187,1,1,1,2]]]],[31041,31078]]],["shut",[9,9,[[39,2,2,0,2,[[934,1,1,0,1],[953,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[42,2,2,3,5,[[1016,2,2,3,5]]],[43,2,2,5,7,[[1022,1,1,5,6],[1038,1,1,6,7]]],[65,2,2,7,9,[[1169,1,1,7,8],[1177,1,1,8,9]]]],[23288,24018,25412,26886,26893,27082,27694,30754,30878]]],["shutteth",[2,1,[[65,2,1,0,1,[[1169,2,1,0,1]]]],[30753]]],["up",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]],[61,1,1,2,3,[[1161,1,1,2,3]]]],[23931,25088,30596]]]]},{"k":"G2809","v":[["thefts",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30861]]]]},{"k":"G2810","v":[["Cleopas",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26009]]]]},{"k":"G2811","v":[["glory",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30419]]]]},{"k":"G2812","v":[["*",[16,16,[[39,3,3,0,3,[[934,2,2,0,2],[952,1,1,2,3]]],[41,2,2,3,5,[[984,2,2,3,5]]],[42,4,4,5,9,[[1006,3,3,5,8],[1008,1,1,8,9]]],[45,1,1,9,10,[[1067,1,1,9,10]]],[51,2,2,10,12,[[1115,2,2,10,12]]],[59,1,1,12,13,[[1154,1,1,12,13]]],[60,1,1,13,14,[[1158,1,1,13,14]]],[65,2,2,14,16,[[1169,1,1,14,15],[1182,1,1,15,16]]]],[23301,23302,24000,25492,25498,26482,26489,26491,26586,28477,29623,29625,30461,30532,30749,30969]]],["thief",[12,12,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,2,2,1,3,[[984,2,2,1,3]]],[42,3,3,3,6,[[1006,2,2,3,5],[1008,1,1,5,6]]],[51,2,2,6,8,[[1115,2,2,6,8]]],[59,1,1,8,9,[[1154,1,1,8,9]]],[60,1,1,9,10,[[1158,1,1,9,10]]],[65,2,2,10,12,[[1169,1,1,10,11],[1182,1,1,11,12]]]],[24000,25492,25498,26482,26491,26586,29623,29625,30461,30532,30749,30969]]],["thieves",[4,4,[[39,2,2,0,2,[[934,2,2,0,2]]],[42,1,1,2,3,[[1006,1,1,2,3]]],[45,1,1,3,4,[[1067,1,1,3,4]]]],[23301,23302,26489,28477]]]]},{"k":"G2813","v":[["*",[13,11,[[39,5,5,0,5,[[934,2,2,0,2],[947,1,1,2,3],[955,1,1,3,4],[956,1,1,4,5]]],[40,1,1,5,6,[[966,1,1,5,6]]],[41,1,1,6,7,[[990,1,1,6,7]]],[42,1,1,7,8,[[1006,1,1,7,8]]],[44,3,2,8,10,[[1047,2,1,8,9],[1058,1,1,9,10]]],[48,2,1,10,11,[[1100,2,1,10,11]]]],[23301,23302,23780,24193,24208,24607,25708,26491,27983,28275,29300]]],["+",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24193]]],["steal",[10,9,[[39,3,3,0,3,[[934,2,2,0,2],[947,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,1,1,4,5,[[990,1,1,4,5]]],[42,1,1,5,6,[[1006,1,1,5,6]]],[44,3,2,6,8,[[1047,2,1,6,7],[1058,1,1,7,8]]],[48,1,1,8,9,[[1100,1,1,8,9]]]],[23301,23302,23780,24607,25708,26491,27983,28275,29300]]],["stole",[2,2,[[39,1,1,0,1,[[956,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[24208,29300]]]]},{"k":"G2814","v":[["*",[4,4,[[42,4,4,0,4,[[1011,4,4,0,4]]]],[26701,26703,26704,26705]]],["branch",[3,3,[[42,3,3,0,3,[[1011,3,3,0,3]]]],[26701,26703,26705]]],["branches",[1,1,[[42,1,1,0,1,[[1011,1,1,0,1]]]],[26704]]]]},{"k":"G2815","v":[["Clement",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29445]]]]},{"k":"G2816","v":[["*",[18,17,[[39,3,3,0,3,[[933,1,1,0,1],[947,1,1,1,2],[953,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,2,2,4,6,[[982,1,1,4,5],[990,1,1,5,6]]],[45,4,3,6,9,[[1067,2,2,6,8],[1076,2,1,8,9]]],[47,2,2,9,11,[[1094,1,1,9,10],[1095,1,1,10,11]]],[57,4,4,11,15,[[1133,2,2,11,13],[1138,1,1,13,14],[1144,1,1,14,15]]],[59,1,1,15,16,[[1153,1,1,15,16]]],[65,1,1,16,17,[[1187,1,1,16,17]]]],[23239,23791,24042,24605,25388,25706,28476,28477,28768,29161,29183,29967,29977,30056,30229,30433,31060]]],["heir",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29161]]],["heirs",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29977]]],["inherit",[14,13,[[39,3,3,0,3,[[933,1,1,0,1],[947,1,1,1,2],[953,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,2,2,4,6,[[982,1,1,4,5],[990,1,1,5,6]]],[45,4,3,6,9,[[1067,2,2,6,8],[1076,2,1,8,9]]],[47,1,1,9,10,[[1095,1,1,9,10]]],[57,1,1,10,11,[[1138,1,1,10,11]]],[59,1,1,11,12,[[1153,1,1,11,12]]],[65,1,1,12,13,[[1187,1,1,12,13]]]],[23239,23791,24042,24605,25388,25706,28476,28477,28768,29183,30056,30433,31060]]],["inherited",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30229]]],["obtained",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29967]]]]},{"k":"G2817","v":[["inheritance",[14,14,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,2,2,4,[[984,1,1,2,3],[992,1,1,3,4]]],[43,2,2,4,6,[[1024,1,1,4,5],[1037,1,1,5,6]]],[47,1,1,6,7,[[1093,1,1,6,7]]],[48,3,3,7,10,[[1097,2,2,7,9],[1101,1,1,9,10]]],[50,1,1,10,11,[[1109,1,1,10,11]]],[57,2,2,11,13,[[1141,1,1,11,12],[1143,1,1,12,13]]],[59,1,1,13,14,[[1151,1,1,13,14]]]],[23864,24680,25472,25793,27121,27658,29120,29220,29224,29309,29541,30120,30180,30378]]]]},{"k":"G2818","v":[["*",[15,14,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[44,4,3,3,6,[[1049,2,2,3,5],[1053,2,1,5,6]]],[47,3,3,6,9,[[1093,1,1,6,7],[1094,2,2,7,9]]],[55,1,1,9,10,[[1131,1,1,9,10]]],[57,3,3,10,13,[[1133,1,1,10,11],[1138,1,1,11,12],[1143,1,1,12,13]]],[58,1,1,13,14,[[1147,1,1,13,14]]]],[23864,24680,25793,28035,28036,28133,29131,29132,29138,29930,29965,30061,30179,30298]]],["heir",[8,8,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[44,1,1,3,4,[[1049,1,1,3,4]]],[47,2,2,4,6,[[1094,2,2,4,6]]],[57,2,2,6,8,[[1133,1,1,6,7],[1143,1,1,7,8]]]],[23864,24680,25793,28035,29132,29138,29965,30179]]],["heirs",[7,6,[[44,3,2,0,2,[[1049,1,1,0,1],[1053,2,1,1,2]]],[47,1,1,2,3,[[1093,1,1,2,3]]],[55,1,1,3,4,[[1131,1,1,3,4]]],[57,1,1,4,5,[[1138,1,1,4,5]]],[58,1,1,5,6,[[1147,1,1,5,6]]]],[28036,28133,29131,29930,30061,30298]]]]},{"k":"G2819","v":[["*",[13,11,[[39,2,1,0,1,[[955,2,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[43,6,5,4,9,[[1018,4,3,4,7],[1025,1,1,7,8],[1043,1,1,8,9]]],[50,1,1,9,10,[[1107,1,1,9,10]]],[59,1,1,10,11,[[1155,1,1,10,11]]]],[24164,24850,25969,26849,26940,26948,26949,27197,27841,29477,30468]]],["heritage",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30468]]],["inheritance",[2,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[27841,29477]]],["lot",[2,2,[[43,2,2,0,2,[[1018,1,1,0,1],[1025,1,1,1,2]]]],[26949,27197]]],["lots",[6,5,[[39,2,1,0,1,[[955,2,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[43,1,1,4,5,[[1018,1,1,4,5]]]],[24164,24850,25969,26849,26949]]],["part",[2,2,[[43,2,2,0,2,[[1018,2,2,0,2]]]],[26940,26948]]]]},{"k":"G2820","v":[["inheritance",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29217]]]]},{"k":"G2821","v":[["*",[11,11,[[44,1,1,0,1,[[1056,1,1,0,1]]],[45,2,2,1,3,[[1062,1,1,1,2],[1068,1,1,2,3]]],[48,3,3,3,6,[[1097,1,1,3,4],[1100,2,2,4,6]]],[49,1,1,6,7,[[1105,1,1,6,7]]],[52,1,1,7,8,[[1116,1,1,7,8]]],[54,1,1,8,9,[[1125,1,1,8,9]]],[57,1,1,9,10,[[1135,1,1,9,10]]],[60,1,1,10,11,[[1156,1,1,10,11]]]],[28238,28389,28507,29224,29273,29276,29435,29660,29818,29996,30489]]],["calling",[10,10,[[44,1,1,0,1,[[1056,1,1,0,1]]],[45,2,2,1,3,[[1062,1,1,1,2],[1068,1,1,2,3]]],[48,2,2,3,5,[[1097,1,1,3,4],[1100,1,1,4,5]]],[49,1,1,5,6,[[1105,1,1,5,6]]],[52,1,1,6,7,[[1116,1,1,6,7]]],[54,1,1,7,8,[[1125,1,1,7,8]]],[57,1,1,8,9,[[1135,1,1,8,9]]],[60,1,1,9,10,[[1156,1,1,9,10]]]],[28238,28389,28507,29224,29276,29435,29660,29818,29996,30489]]],["vocation",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29273]]]]},{"k":"G2822","v":[["called",[11,11,[[39,2,2,0,2,[[948,1,1,0,1],[950,1,1,1,2]]],[44,4,4,2,6,[[1046,3,3,2,5],[1053,1,1,5,6]]],[45,3,3,6,9,[[1062,3,3,6,9]]],[64,1,1,9,10,[[1166,1,1,9,10]]],[65,1,1,10,11,[[1183,1,1,10,11]]]],[23808,23886,27931,27936,27937,28144,28364,28365,28387,30673,30989]]]]},{"k":"G2823","v":[["oven",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23312,25487]]]]},{"k":"G2824","v":[["*",[3,3,[[44,1,1,0,1,[[1060,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[47,1,1,2,3,[[1091,1,1,2,3]]]],[28326,28999,29078]]],["parts",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28326]]],["regions",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[47,1,1,1,2,[[1091,1,1,1,2]]]],[28999,29078]]]]},{"k":"G2825","v":[["*",[10,10,[[39,2,2,0,2,[[937,2,2,0,2]]],[40,3,3,2,5,[[960,1,1,2,3],[963,2,2,3,5]]],[41,3,3,5,8,[[977,1,1,5,6],[980,1,1,6,7],[989,1,1,7,8]]],[43,1,1,8,9,[[1022,1,1,8,9]]],[65,1,1,9,10,[[1168,1,1,9,10]]]],[23381,23385,24344,24467,24493,25125,25261,25685,27074,30739]]],["bed",[8,8,[[39,2,2,0,2,[[937,2,2,0,2]]],[40,2,2,2,4,[[960,1,1,2,3],[963,1,1,3,4]]],[41,3,3,4,7,[[977,1,1,4,5],[980,1,1,5,6],[989,1,1,6,7]]],[65,1,1,7,8,[[1168,1,1,7,8]]]],[23381,23385,24344,24493,25125,25261,25685,30739]]],["beds",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27074]]],["tables",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24467]]]]},{"k":"G2826","v":[["couch",[2,2,[[41,2,2,0,2,[[977,2,2,0,2]]]],[25126,25131]]]]},{"k":"G2827","v":[["*",[7,7,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,4,4,1,5,[[981,2,2,1,3],[996,2,2,3,5]]],[42,1,1,5,6,[[1015,1,1,5,6]]],[57,1,1,6,7,[[1143,1,1,6,7]]]],[23365,25313,25359,25996,26020,26855,30206]]],["away",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25313]]],["bowed",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26855]]],["down",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[25996]]],["flight",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30206]]],["lay",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[23365,25359]]],["spent",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26020]]]]},{"k":"G2828","v":[["company",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25315]]]]},{"k":"G2829","v":[["*",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[23652,24485]]],["Thefts",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24485]]],["thefts",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23652]]]]},{"k":"G2830","v":[["*",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[25269,30272]]],["raging",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25269]]],["wave",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30272]]]]},{"k":"G2831","v":[["fro",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29286]]]]},{"k":"G2832","v":[["Cleophas",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26850]]]]},{"k":"G2833","v":[["itching",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29873]]]]},{"k":"G2834","v":[["Cnidus",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27862]]]]},{"k":"G2835","v":[["farthing",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]]],[23260,24715]]]]},{"k":"G2836","v":[["*",[23,22,[[39,3,3,0,3,[[940,1,1,0,1],[943,1,1,1,2],[947,1,1,2,3]]],[40,1,1,3,4,[[963,1,1,3,4]]],[41,8,8,4,12,[[973,4,4,4,8],[974,1,1,8,9],[983,1,1,9,10],[987,1,1,10,11],[995,1,1,11,12]]],[42,2,2,12,14,[[999,1,1,12,13],[1003,1,1,13,14]]],[43,2,2,14,16,[[1020,1,1,14,15],[1031,1,1,15,16]]],[44,1,1,16,17,[[1061,1,1,16,17]]],[45,2,1,17,18,[[1067,2,1,17,18]]],[47,1,1,18,19,[[1091,1,1,18,19]]],[49,1,1,19,20,[[1105,1,1,19,20]]],[65,2,2,20,22,[[1176,2,2,20,22]]]],[23529,23650,23774,24482,24908,24934,24935,24937,24994,25432,25604,25964,26124,26366,26998,27422,28354,28480,29072,29440,30870,30871]]],["+",[1,1,[[65,1,1,0,1,[[1176,1,1,0,1]]]],[30870]]],["belly",[10,9,[[39,2,2,0,2,[[940,1,1,0,1],[943,1,1,1,2]]],[40,1,1,2,3,[[963,1,1,2,3]]],[41,1,1,3,4,[[987,1,1,3,4]]],[42,1,1,4,5,[[1003,1,1,4,5]]],[44,1,1,5,6,[[1061,1,1,5,6]]],[45,2,1,6,7,[[1067,2,1,6,7]]],[49,1,1,7,8,[[1105,1,1,7,8]]],[65,1,1,8,9,[[1176,1,1,8,9]]]],[23529,23650,24482,25604,26366,28354,28480,29440,30871]]],["womb",[11,11,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,6,6,1,7,[[973,4,4,1,5],[974,1,1,5,6],[983,1,1,6,7]]],[42,1,1,7,8,[[999,1,1,7,8]]],[43,2,2,8,10,[[1020,1,1,8,9],[1031,1,1,9,10]]],[47,1,1,10,11,[[1091,1,1,10,11]]]],[23774,24908,24934,24935,24937,24994,25432,26124,26998,27422,29072]]],["wombs",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25964]]]]},{"k":"G2837","v":[["*",[18,18,[[39,2,2,0,2,[[955,1,1,0,1],[956,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,2,2,3,5,[[1007,2,2,3,5]]],[43,3,3,5,8,[[1024,1,1,5,6],[1029,1,1,6,7],[1030,1,1,7,8]]],[45,6,6,8,14,[[1068,1,1,8,9],[1072,1,1,9,10],[1076,4,4,10,14]]],[51,3,3,14,17,[[1114,3,3,14,17]]],[60,1,1,17,18,[[1158,1,1,17,18]]]],[24181,24208,25909,26534,26535,27176,27343,27398,28526,28630,28724,28736,28738,28769,29616,29617,29618,30526]]],["+",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[51,1,1,1,2,[[1114,1,1,1,2]]]],[28736,29617]]],["asleep",[5,5,[[43,1,1,0,1,[[1024,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[51,2,2,2,4,[[1114,2,2,2,4]]],[60,1,1,4,5,[[1158,1,1,4,5]]]],[27176,28724,29616,29618,30526]]],["dead",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28526]]],["sleep",[4,4,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]],[45,2,2,2,4,[[1072,1,1,2,3],[1076,1,1,3,4]]]],[26535,27398,28630,28769]]],["sleepeth",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26534]]],["sleeping",[2,2,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]]],[25909,27343]]],["slept",[3,3,[[39,2,2,0,2,[[955,1,1,0,1],[956,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]]],[24181,24208,28738]]]]},{"k":"G2838","v":[["rest",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26536]]]]},{"k":"G2839","v":[["*",[12,10,[[40,1,1,0,1,[[963,1,1,0,1]]],[43,5,5,1,6,[[1019,1,1,1,2],[1021,1,1,2,3],[1027,2,2,3,5],[1028,1,1,5,6]]],[44,3,1,6,7,[[1059,3,1,6,7]]],[55,1,1,7,8,[[1129,1,1,7,8]]],[57,1,1,8,9,[[1142,1,1,8,9]]],[64,1,1,9,10,[[1166,1,1,9,10]]]],[24465,26993,27054,27273,27287,27315,28294,29896,30162,30675]]],["common",[7,7,[[43,5,5,0,5,[[1019,1,1,0,1],[1021,1,1,1,2],[1027,2,2,2,4],[1028,1,1,4,5]]],[55,1,1,5,6,[[1129,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[26993,27054,27273,27287,27315,29896,30675]]],["defiled",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24465]]],["thing",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30162]]],["unclean",[3,1,[[44,3,1,0,1,[[1059,3,1,0,1]]]],[28294]]]]},{"k":"G2840","v":[["*",[15,12,[[39,5,3,0,3,[[943,5,3,0,3]]],[40,5,4,3,7,[[963,5,4,3,7]]],[43,3,3,7,10,[[1027,1,1,7,8],[1028,1,1,8,9],[1038,1,1,9,10]]],[57,1,1,10,11,[[1141,1,1,10,11]]],[65,1,1,11,12,[[1187,1,1,11,12]]]],[23644,23651,23653,24478,24481,24483,24486,27274,27316,27692,30118,31080]]],["+",[2,2,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]]],[27274,27316]]],["defile",[6,5,[[39,2,2,0,2,[[943,2,2,0,2]]],[40,4,3,2,5,[[963,4,3,2,5]]]],[23651,23653,24478,24481,24486]]],["defileth",[5,4,[[39,3,2,0,2,[[943,3,2,0,2]]],[40,1,1,2,3,[[963,1,1,2,3]]],[65,1,1,3,4,[[1187,1,1,3,4]]]],[23644,23653,24483,31080]]],["polluted",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27692]]],["unclean",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30118]]]]},{"k":"G2841","v":[["*",[8,8,[[44,2,2,0,2,[[1057,1,1,0,1],[1060,1,1,1,2]]],[47,1,1,2,3,[[1096,1,1,2,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]],[53,1,1,4,5,[[1123,1,1,4,5]]],[57,1,1,5,6,[[1134,1,1,5,6]]],[59,1,1,6,7,[[1154,1,1,6,7]]],[62,1,1,7,8,[[1164,1,1,7,8]]]],[28258,28330,29194,29457,29785,29991,30459,30656]]],["Distributing",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28258]]],["communicate",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29194]]],["communicated",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29457]]],["partaker",[2,2,[[53,1,1,0,1,[[1123,1,1,0,1]]],[62,1,1,1,2,[[1164,1,1,1,2]]]],[29785,30656]]],["partakers",[3,3,[[44,1,1,0,1,[[1060,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[28330,29991,30459]]]]},{"k":"G2842","v":[["*",[20,18,[[43,1,1,0,1,[[1019,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[45,3,2,2,4,[[1062,1,1,2,3],[1071,2,1,3,4]]],[46,4,4,4,8,[[1083,1,1,4,5],[1085,1,1,5,6],[1086,1,1,6,7],[1090,1,1,7,8]]],[47,1,1,8,9,[[1092,1,1,8,9]]],[48,1,1,9,10,[[1099,1,1,9,10]]],[49,3,3,10,13,[[1103,1,1,10,11],[1104,1,1,11,12],[1105,1,1,12,13]]],[56,1,1,13,14,[[1132,1,1,13,14]]],[57,1,1,14,15,[[1145,1,1,14,15]]],[61,4,3,15,18,[[1159,4,3,15,18]]]],[26991,28329,28372,28583,28912,28936,28969,29057,29090,29260,29366,29392,29431,29944,30257,30543,30546,30547]]],["communicate",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30257]]],["communication",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29944]]],["communion",[4,3,[[45,2,1,0,1,[[1071,2,1,0,1]]],[46,2,2,1,3,[[1083,1,1,1,2],[1090,1,1,2,3]]]],[28583,28912,29057]]],["contribution",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28329]]],["distribution",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28969]]],["fellowship",[12,11,[[43,1,1,0,1,[[1019,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]],[47,1,1,3,4,[[1092,1,1,3,4]]],[48,1,1,4,5,[[1099,1,1,4,5]]],[49,3,3,5,8,[[1103,1,1,5,6],[1104,1,1,6,7],[1105,1,1,7,8]]],[61,4,3,8,11,[[1159,4,3,8,11]]]],[26991,28372,28936,29090,29260,29366,29392,29431,30543,30546,30547]]]]},{"k":"G2843","v":[["communicate",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29806]]]]},{"k":"G2844","v":[["*",[10,10,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]],[45,2,2,2,4,[[1071,2,2,2,4]]],[46,2,2,4,6,[[1078,1,1,4,5],[1085,1,1,5,6]]],[56,1,1,6,7,[[1132,1,1,6,7]]],[57,1,1,7,8,[[1142,1,1,7,8]]],[59,1,1,8,9,[[1155,1,1,8,9]]],[60,1,1,9,10,[[1156,1,1,9,10]]]],[23948,25117,28585,28587,28807,28955,29955,30166,30466,30483]]],["companions",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30166]]],["fellowship",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28587]]],["partaker",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30466]]],["partakers",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]],[46,1,1,2,3,[[1078,1,1,2,3]]],[60,1,1,3,4,[[1156,1,1,3,4]]]],[23948,28585,28807,30483]]],["partner",[2,2,[[46,1,1,0,1,[[1085,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[28955,29955]]],["partners",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25117]]]]},{"k":"G2845","v":[["*",[4,4,[[41,1,1,0,1,[[983,1,1,0,1]]],[44,2,2,1,3,[[1054,1,1,1,2],[1058,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]]],[25412,28165,28279,30245]]],["bed",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[25412,30245]]],["chambering",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28279]]],["conceived",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28165]]]]},{"k":"G2846","v":[["+",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27357]]]]},{"k":"G2847","v":[["*",[6,6,[[39,1,1,0,1,[[955,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]],[65,4,4,2,6,[[1183,2,2,2,4],[1184,2,2,4,6]]]],[24157,30124,30978,30979,31005,31009]]],["colour",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30979]]],["coloured",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30978]]],["scarlet",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]],[65,2,2,2,4,[[1184,2,2,2,4]]]],[24157,30124,31005,31009]]]]},{"k":"G2848","v":[["*",[7,7,[[39,2,2,0,2,[[941,1,1,0,1],[945,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,2,2,3,5,[[985,1,1,3,4],[989,1,1,4,5]]],[42,1,1,5,6,[[1008,1,1,5,6]]],[45,1,1,6,7,[[1076,1,1,6,7]]]],[23570,23720,24354,25537,25657,26604,28755]]],["+",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28755]]],["corn",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26604]]],["grain",[5,5,[[39,2,2,0,2,[[941,1,1,0,1],[945,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,2,2,3,5,[[985,1,1,3,4],[989,1,1,4,5]]]],[23570,23720,24354,25537,25657]]]]},{"k":"G2849","v":[["*",[2,2,[[43,1,1,0,1,[[1021,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[27043,30509]]],["punish",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27043]]],["punished",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30509]]]]},{"k":"G2850","v":[["+",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29575]]]]},{"k":"G2851","v":[["*",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[61,1,1,1,2,[[1162,1,1,1,2]]]],[24054,30621]]],["+",[1,1,[[61,1,1,0,1,[[1162,1,1,0,1]]]],[30621]]],["punishment",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24054]]]]},{"k":"G2852","v":[["*",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[46,1,1,3,4,[[1089,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[24121,24819,28444,29029,30419]]],["+",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30419]]],["buffet",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]]],[24819,29029]]],["buffeted",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]]],[24121,28444]]]]},{"k":"G2853","v":[["*",[10,10,[[41,2,2,0,2,[[982,1,1,0,1],[987,1,1,1,2]]],[43,5,5,2,7,[[1022,1,1,2,3],[1025,1,1,3,4],[1026,1,1,4,5],[1027,1,1,5,6],[1034,1,1,6,7]]],[44,1,1,7,8,[[1057,1,1,7,8]]],[45,2,2,8,10,[[1067,2,2,8,10]]]],[25374,25603,27072,27205,27242,27287,27557,28254,28483,28484]]],["clave",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27557]]],["cleave",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28254]]],["cleaveth",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25374]]],["company",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27287]]],["himself",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27242]]],["join",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27072]]],["joined",[3,3,[[41,1,1,0,1,[[987,1,1,0,1]]],[45,2,2,1,3,[[1067,2,2,1,3]]]],[25603,28483,28484]]],["thyself",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27205]]]]},{"k":"G2854","v":[["eyesalve",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30764]]]]},{"k":"G2855","v":[["*",[3,3,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[42,1,1,2,3,[[998,1,1,2,3]]]],[23838,24655,26110]]],["changers'",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26110]]],["moneychangers",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]]],[23838,24655]]]]},{"k":"G2856","v":[["shortened",[4,2,[[39,2,1,0,1,[[952,2,1,0,1]]],[40,2,1,1,2,[[969,2,1,1,2]]]],[23979,24737]]]]},{"k":"G2857","v":[["Colosse",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29467]]]]},{"k":"G2858","v":[]},{"k":"G2859","v":[["*",[6,6,[[41,3,3,0,3,[[978,1,1,0,1],[988,2,2,1,3]]],[42,2,2,3,5,[[997,1,1,3,4],[1009,1,1,4,5]]],[43,1,1,5,6,[[1044,1,1,5,6]]]],[25184,25642,25643,26062,26653,27894]]],["+",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25642]]],["bosom",[4,4,[[41,2,2,0,2,[[978,1,1,0,1],[988,1,1,1,2]]],[42,2,2,2,4,[[997,1,1,2,3],[1009,1,1,3,4]]]],[25184,25643,26062,26653]]],["creek",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27894]]]]},{"k":"G2860","v":[["swim",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27898]]]]},{"k":"G2861","v":[["pool",[5,5,[[42,5,5,0,5,[[1001,3,3,0,3],[1005,2,2,3,5]]]],[26212,26214,26217,26447,26451]]]]},{"k":"G2862","v":[["colony",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27495]]]]},{"k":"G2863","v":[["hair",[2,2,[[45,2,2,0,2,[[1072,2,2,0,2]]]],[28614,28615]]]]},{"k":"G2864","v":[["hair",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28615]]]]},{"k":"G2865","v":[["*",[11,11,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[46,1,1,2,3,[[1082,1,1,2,3]]],[48,1,1,3,4,[[1102,1,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]],[57,3,3,5,8,[[1142,1,1,5,6],[1143,2,2,6,8]]],[59,2,2,8,10,[[1151,1,1,8,9],[1155,1,1,9,10]]],[60,1,1,10,11,[[1157,1,1,10,11]]]],[24035,25232,28887,29345,29542,30169,30191,30211,30383,30469,30513]]],["+",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24035]]],["Receiving",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30383]]],["brought",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25232]]],["receive",[6,6,[[46,1,1,0,1,[[1082,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]],[57,1,1,3,4,[[1142,1,1,3,4]]],[59,1,1,4,5,[[1155,1,1,4,5]]],[60,1,1,5,6,[[1157,1,1,5,6]]]],[28887,29345,29542,30169,30469,30513]]],["received",[2,2,[[57,2,2,0,2,[[1143,2,2,0,2]]]],[30191,30211]]]]},{"k":"G2866","v":[["+",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26208]]]]},{"k":"G2867","v":[["whited",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[23945,27737]]]]},{"k":"G2868","v":[["dust",[5,5,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[982,1,1,2,3]]],[43,2,2,3,5,[[1030,1,1,3,4],[1039,1,1,4,5]]]],[23431,25306,25374,27413,27727]]]]},{"k":"G2869","v":[["ceased",[3,3,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,2,2,1,3,[[960,1,1,1,2],[962,1,1,2,3]]]],[23629,24362,24458]]]]},{"k":"G2870","v":[["lamentation",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27178]]]]},{"k":"G2871","v":[["slaughter",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30065]]]]},{"k":"G2872","v":[["*",[23,21,[[39,2,2,0,2,[[934,1,1,0,1],[939,1,1,1,2]]],[41,2,2,2,4,[[977,1,1,2,3],[984,1,1,3,4]]],[42,3,2,4,6,[[1000,3,2,4,6]]],[43,1,1,6,7,[[1037,1,1,6,7]]],[44,3,2,7,9,[[1061,3,2,7,9]]],[45,3,3,9,12,[[1065,1,1,9,10],[1076,1,1,10,11],[1077,1,1,11,12]]],[47,1,1,12,13,[[1094,1,1,12,13]]],[48,1,1,13,14,[[1100,1,1,13,14]]],[49,1,1,14,15,[[1104,1,1,14,15]]],[50,1,1,15,16,[[1107,1,1,15,16]]],[51,1,1,16,17,[[1115,1,1,16,17]]],[53,2,2,17,19,[[1122,1,1,17,18],[1123,1,1,18,19]]],[54,1,1,19,20,[[1126,1,1,19,20]]],[65,1,1,20,21,[[1168,1,1,20,21]]]],[23310,23487,25112,25486,26162,26194,27661,28342,28348,28445,28728,28792,29142,29300,29407,29494,29633,29757,29780,29833,30720]]],["+",[4,4,[[41,1,1,0,1,[[977,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]],[44,1,1,2,3,[[1061,1,1,2,3]]],[47,1,1,3,4,[[1094,1,1,3,4]]]],[25112,26194,28342,29142]]],["labour",[8,8,[[39,1,1,0,1,[[939,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]],[51,1,1,5,6,[[1115,1,1,5,6]]],[53,2,2,6,8,[[1122,1,1,6,7],[1123,1,1,7,8]]]],[23487,28348,28445,29300,29494,29633,29757,29780]]],["laboured",[5,5,[[42,1,1,0,1,[[1000,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]],[49,1,1,3,4,[[1104,1,1,3,4]]],[65,1,1,4,5,[[1168,1,1,4,5]]]],[26194,28348,28728,29407,30720]]],["laboureth",[2,2,[[45,1,1,0,1,[[1077,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[28792,29833]]],["labouring",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27661]]],["toil",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23310,25486]]],["wearied",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26162]]]]},{"k":"G2873","v":[["*",[19,19,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,2,2,2,4,[[983,1,1,2,3],[990,1,1,3,4]]],[42,1,1,4,5,[[1000,1,1,4,5]]],[45,2,2,5,7,[[1064,1,1,5,6],[1076,1,1,6,7]]],[46,4,4,7,11,[[1083,1,1,7,8],[1087,1,1,8,9],[1088,2,2,9,11]]],[47,1,1,11,12,[[1096,1,1,11,12]]],[51,3,3,12,15,[[1111,1,1,12,13],[1112,1,1,13,14],[1113,1,1,14,15]]],[52,1,1,15,16,[[1118,1,1,15,16]]],[57,1,1,16,17,[[1138,1,1,16,17]]],[65,2,2,17,19,[[1168,1,1,17,18],[1180,1,1,18,19]]]],[24064,24760,25412,25693,26194,28418,28776,28903,28986,29012,29016,29205,29563,29579,29595,29686,30054,30719,30939]]],["+",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,2,2,2,4,[[983,1,1,2,3],[990,1,1,3,4]]],[47,1,1,4,5,[[1096,1,1,4,5]]]],[24064,24760,25412,25693,29205]]],["labour",[8,8,[[45,2,2,0,2,[[1064,1,1,0,1],[1076,1,1,1,2]]],[51,3,3,2,5,[[1111,1,1,2,3],[1112,1,1,3,4],[1113,1,1,4,5]]],[52,1,1,5,6,[[1118,1,1,5,6]]],[57,1,1,6,7,[[1138,1,1,6,7]]],[65,1,1,7,8,[[1168,1,1,7,8]]]],[28418,28776,29563,29579,29595,29686,30054,30719]]],["labours",[5,5,[[42,1,1,0,1,[[1000,1,1,0,1]]],[46,3,3,1,4,[[1083,1,1,1,2],[1087,1,1,2,3],[1088,1,1,3,4]]],[65,1,1,4,5,[[1180,1,1,4,5]]]],[26194,28903,28986,29012,30939]]],["weariness",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29016]]]]},{"k":"G2874","v":[["*",[2,2,[[41,2,2,0,2,[[985,1,1,0,1],[986,1,1,1,2]]]],[25526,25588]]],["+",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25526]]],["dunghill",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25588]]]]},{"k":"G2875","v":[["*",[8,8,[[39,3,3,0,3,[[939,1,1,0,1],[949,1,1,1,2],[952,1,1,2,3]]],[40,1,1,3,4,[[967,1,1,3,4]]],[41,2,2,4,6,[[980,1,1,4,5],[995,1,1,5,6]]],[65,2,2,6,8,[[1167,1,1,6,7],[1184,1,1,7,8]]]],[23476,23834,23987,24648,25297,25962,30704,31002]]],["bewailed",[2,2,[[41,2,2,0,2,[[980,1,1,0,1],[995,1,1,1,2]]]],[25297,25962]]],["down",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]]],[23834,24648]]],["lament",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31002]]],["lamented",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23476]]],["mourn",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23987]]],["wail",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30704]]]]},{"k":"G2876","v":[["ravens",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25483]]]]},{"k":"G2877","v":[["*",[8,7,[[39,3,3,0,3,[[937,2,2,0,2],[942,1,1,2,3]]],[40,5,4,3,7,[[961,2,2,3,5],[962,3,2,5,7]]]],[23403,23404,23608,24405,24406,24429,24435]]],["Damsel",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24405]]],["damsel",[5,4,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,4,3,1,4,[[961,1,1,1,2],[962,3,2,2,4]]]],[23608,24406,24429,24435]]],["maid",[2,2,[[39,2,2,0,2,[[937,2,2,0,2]]]],[23403,23404]]]]},{"k":"G2878","v":[["*",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[24135,24474]]],["Corban",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24474]]],["treasury",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24135]]]]},{"k":"G2879","v":[["Core",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30683]]]]},{"k":"G2880","v":[["*",[2,2,[[43,1,1,0,1,[[1044,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]]],[27893,28441]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27893]]],["full",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28441]]]]},{"k":"G2881","v":[["Corinthians",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]]],[27565,28909]]]]},{"k":"G2882","v":[["Corinth",[6,6,[[43,2,2,0,2,[[1035,1,1,0,1],[1036,1,1,1,2]]],[45,1,1,2,3,[[1062,1,1,2,3]]],[46,2,2,3,5,[[1078,2,2,3,5]]],[54,1,1,5,6,[[1128,1,1,5,6]]]],[27558,27586,28365,28801,28823,29890]]]]},{"k":"G2883","v":[["Cornelius",[10,10,[[43,10,10,0,10,[[1027,10,10,0,10]]]],[27260,27262,27266,27276,27280,27281,27283,27284,27289,27290]]]]},{"k":"G2884","v":[["measures",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25627]]]]},{"k":"G2885","v":[["*",[10,10,[[39,3,3,0,3,[[940,1,1,0,1],[951,1,1,1,2],[953,1,1,2,3]]],[41,2,2,3,5,[[983,1,1,3,4],[993,1,1,4,5]]],[53,1,1,5,6,[[1120,1,1,5,6]]],[55,1,1,6,7,[[1130,1,1,6,7]]],[59,1,1,7,8,[[1153,1,1,7,8]]],[65,2,2,8,10,[[1187,2,2,8,10]]]],[23533,23947,24015,25430,25831,29725,29918,30429,31055,31072]]],["adorn",[2,2,[[53,1,1,0,1,[[1120,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]]],[29725,29918]]],["adorned",[3,3,[[41,1,1,0,1,[[993,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]],[65,1,1,2,3,[[1187,1,1,2,3]]]],[25831,30429,31055]]],["garnish",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23947]]],["garnished",[3,3,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[65,1,1,2,3,[[1187,1,1,2,3]]]],[23533,25430,31072]]],["trimmed",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24015]]]]},{"k":"G2886","v":[["worldly",[2,2,[[55,1,1,0,1,[[1130,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[29920,30106]]]]},{"k":"G2887","v":[["*",[2,2,[[53,2,2,0,2,[[1120,1,1,0,1],[1121,1,1,1,2]]]],[29725,29733]]],["behaviour",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29733]]],["modest",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29725]]]]},{"k":"G2888","v":[["rulers",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29349]]]]},{"k":"G2889","v":[["*",[187,152,[[39,9,9,0,9,[[932,1,1,0,1],[933,1,1,1,2],[941,2,2,2,4],[944,1,1,4,5],[946,1,1,5,6],[952,1,1,6,7],[953,1,1,7,8],[954,1,1,8,9]]],[40,3,3,9,12,[[964,1,1,9,10],[970,1,1,10,11],[972,1,1,11,12]]],[41,3,3,12,15,[[981,1,1,12,13],[983,1,1,13,14],[984,1,1,14,15]]],[42,79,58,15,73,[[997,5,3,15,18],[999,5,3,18,21],[1000,1,1,21,22],[1002,3,3,22,25],[1003,2,2,25,27],[1004,4,3,27,30],[1005,3,2,30,32],[1006,1,1,32,33],[1007,2,2,33,35],[1008,7,5,35,40],[1009,2,1,40,41],[1010,6,6,41,47],[1011,6,2,47,49],[1012,8,6,49,55],[1013,19,14,55,69],[1014,4,3,69,72],[1017,1,1,72,73]]],[43,1,1,73,74,[[1034,1,1,73,74]]],[44,9,9,74,83,[[1046,2,2,74,76],[1048,2,2,76,78],[1049,1,1,78,79],[1050,2,2,79,81],[1056,2,2,81,83]]],[45,21,17,83,100,[[1062,5,4,83,87],[1063,1,1,87,88],[1064,2,2,88,90],[1065,2,2,90,92],[1066,2,1,92,93],[1067,2,1,93,94],[1068,4,3,94,97],[1069,1,1,97,98],[1072,1,1,98,99],[1075,1,1,99,100]]],[46,3,3,100,103,[[1078,1,1,100,101],[1082,1,1,101,102],[1084,1,1,102,103]]],[47,3,2,103,105,[[1094,1,1,103,104],[1096,2,1,104,105]]],[48,3,3,105,108,[[1097,1,1,105,106],[1098,2,2,106,108]]],[49,1,1,108,109,[[1104,1,1,108,109]]],[50,4,3,109,112,[[1107,1,1,109,110],[1108,3,2,110,112]]],[53,3,3,112,115,[[1119,1,1,112,113],[1121,1,1,113,114],[1124,1,1,114,115]]],[57,5,5,115,120,[[1136,1,1,115,116],[1141,1,1,116,117],[1142,1,1,117,118],[1143,2,2,118,120]]],[58,5,4,120,124,[[1146,1,1,120,121],[1147,1,1,121,122],[1148,1,1,122,123],[1149,2,1,123,124]]],[59,3,3,124,127,[[1151,1,1,124,125],[1153,1,1,125,126],[1155,1,1,126,127]]],[60,5,4,127,131,[[1156,1,1,127,128],[1157,3,2,128,130],[1158,1,1,130,131]]],[61,23,17,131,148,[[1160,7,4,131,135],[1161,3,3,135,138],[1162,9,7,138,145],[1163,4,3,145,148]]],[62,1,1,148,149,[[1164,1,1,148,149]]],[65,3,3,149,152,[[1177,1,1,149,150],[1179,1,1,150,151],[1183,1,1,151,152]]]],[23217,23248,23574,23577,23698,23734,23978,24042,24067,24536,24763,24888,25326,25455,25489,26053,26054,26073,26136,26137,26139,26198,26271,26290,26308,26332,26335,26393,26404,26407,26445,26479,26517,26532,26550,26599,26605,26611,26626,26627,26631,26685,26687,26690,26695,26698,26699,26717,26718,26734,26737,26746,26747,26754,26759,26764,26765,26768,26770,26771,26772,26773,26774,26775,26777,26780,26782,26783,26784,26805,26821,26822,26923,27547,27938,27950,27997,28010,28035,28059,28060,28221,28224,28383,28384,28390,28391,28406,28429,28432,28442,28446,28464,28469,28518,28520,28521,28531,28632,28688,28812,28896,28926,29134,29202,29210,29231,29241,29406,29471,29502,29514,29711,29747,29795,30017,30131,30138,30179,30210,30293,30298,30325,30341,30394,30427,30474,30483,30505,30520,30528,30552,30565,30566,30567,30580,30592,30596,30604,30606,30607,30608,30612,30617,30620,30628,30629,30643,30652,30887,30916,30983]]],["adorning",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30427]]],["world",[185,150,[[39,9,9,0,9,[[932,1,1,0,1],[933,1,1,1,2],[941,2,2,2,4],[944,1,1,4,5],[946,1,1,5,6],[952,1,1,6,7],[953,1,1,7,8],[954,1,1,8,9]]],[40,3,3,9,12,[[964,1,1,9,10],[970,1,1,10,11],[972,1,1,11,12]]],[41,3,3,12,15,[[981,1,1,12,13],[983,1,1,13,14],[984,1,1,14,15]]],[42,79,58,15,73,[[997,5,3,15,18],[999,5,3,18,21],[1000,1,1,21,22],[1002,3,3,22,25],[1003,2,2,25,27],[1004,4,3,27,30],[1005,3,2,30,32],[1006,1,1,32,33],[1007,2,2,33,35],[1008,7,5,35,40],[1009,2,1,40,41],[1010,6,6,41,47],[1011,6,2,47,49],[1012,8,6,49,55],[1013,19,14,55,69],[1014,4,3,69,72],[1017,1,1,72,73]]],[43,1,1,73,74,[[1034,1,1,73,74]]],[44,9,9,74,83,[[1046,2,2,74,76],[1048,2,2,76,78],[1049,1,1,78,79],[1050,2,2,79,81],[1056,2,2,81,83]]],[45,21,17,83,100,[[1062,5,4,83,87],[1063,1,1,87,88],[1064,2,2,88,90],[1065,2,2,90,92],[1066,2,1,92,93],[1067,2,1,93,94],[1068,4,3,94,97],[1069,1,1,97,98],[1072,1,1,98,99],[1075,1,1,99,100]]],[46,3,3,100,103,[[1078,1,1,100,101],[1082,1,1,101,102],[1084,1,1,102,103]]],[47,3,2,103,105,[[1094,1,1,103,104],[1096,2,1,104,105]]],[48,3,3,105,108,[[1097,1,1,105,106],[1098,2,2,106,108]]],[49,1,1,108,109,[[1104,1,1,108,109]]],[50,4,3,109,112,[[1107,1,1,109,110],[1108,3,2,110,112]]],[53,3,3,112,115,[[1119,1,1,112,113],[1121,1,1,113,114],[1124,1,1,114,115]]],[57,5,5,115,120,[[1136,1,1,115,116],[1141,1,1,116,117],[1142,1,1,117,118],[1143,2,2,118,120]]],[58,5,4,120,124,[[1146,1,1,120,121],[1147,1,1,121,122],[1148,1,1,122,123],[1149,2,1,123,124]]],[59,2,2,124,126,[[1151,1,1,124,125],[1155,1,1,125,126]]],[60,5,4,126,130,[[1156,1,1,126,127],[1157,3,2,127,129],[1158,1,1,129,130]]],[61,22,16,130,146,[[1160,7,4,130,134],[1161,2,2,134,136],[1162,9,7,136,143],[1163,4,3,143,146]]],[62,1,1,146,147,[[1164,1,1,146,147]]],[65,3,3,147,150,[[1177,1,1,147,148],[1179,1,1,148,149],[1183,1,1,149,150]]]],[23217,23248,23574,23577,23698,23734,23978,24042,24067,24536,24763,24888,25326,25455,25489,26053,26054,26073,26136,26137,26139,26198,26271,26290,26308,26332,26335,26393,26404,26407,26445,26479,26517,26532,26550,26599,26605,26611,26626,26627,26631,26685,26687,26690,26695,26698,26699,26717,26718,26734,26737,26746,26747,26754,26759,26764,26765,26768,26770,26771,26772,26773,26774,26775,26777,26780,26782,26783,26784,26805,26821,26822,26923,27547,27938,27950,27997,28010,28035,28059,28060,28221,28224,28383,28384,28390,28391,28406,28429,28432,28442,28446,28464,28469,28518,28520,28521,28531,28632,28688,28812,28896,28926,29134,29202,29210,29231,29241,29406,29471,29502,29514,29711,29747,29795,30017,30131,30138,30179,30210,30293,30298,30325,30341,30394,30474,30483,30505,30520,30528,30552,30565,30566,30567,30580,30592,30604,30606,30607,30608,30612,30617,30620,30628,30629,30643,30652,30887,30916,30983]]],["world's",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30596]]]]},{"k":"G2890","v":[["Quartus",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28359]]]]},{"k":"G2891","v":[["cumi",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24405]]]]},{"k":"G2892","v":[["*",[3,3,[[39,3,3,0,3,[[955,2,2,0,2],[956,1,1,2,3]]]],[24194,24195,24206]]],["+",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24195]]],["watch",[2,2,[[39,2,2,0,2,[[955,1,1,0,1],[956,1,1,1,2]]]],[24194,24206]]]]},{"k":"G2893","v":[["lightened",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27893]]]]},{"k":"G2894","v":[["baskets",[6,6,[[39,2,2,0,2,[[942,1,1,0,1],[944,1,1,1,2]]],[40,2,2,2,4,[[962,1,1,2,3],[964,1,1,3,4]]],[41,1,1,4,5,[[981,1,1,4,5]]],[42,1,1,5,6,[[1002,1,1,5,6]]]],[23617,23681,24450,24519,25318,26270]]]]},{"k":"G2895","v":[["*",[12,12,[[40,5,5,0,5,[[958,4,4,0,4],[962,1,1,4,5]]],[42,5,5,5,10,[[1001,5,5,5,10]]],[43,2,2,10,12,[[1022,1,1,10,11],[1026,1,1,11,12]]]],[24264,24269,24271,24272,24462,26218,26219,26220,26221,26222,27074,27249]]],["+",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27249]]],["bed",[9,9,[[40,4,4,0,4,[[958,4,4,0,4]]],[42,5,5,4,9,[[1001,5,5,4,9]]]],[24264,24269,24271,24272,26218,26219,26220,26221,26222]]],["beds",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24462]]],["couches",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27074]]]]},{"k":"G2896","v":[["*",[59,58,[[39,11,11,0,11,[[936,1,1,0,1],[937,1,1,1,2],[942,2,2,2,4],[943,1,1,4,5],[948,2,2,5,7],[949,2,2,7,9],[955,2,2,9,11]]],[40,12,12,11,23,[[957,1,1,11,12],[959,1,1,12,13],[961,2,2,13,15],[965,2,2,15,17],[966,2,2,17,19],[967,1,1,19,20],[971,3,3,20,23]]],[41,4,4,23,27,[[976,1,1,23,24],[981,1,1,24,25],[990,1,1,25,26],[991,1,1,26,27]]],[42,6,6,27,33,[[997,1,1,27,28],[1003,2,2,28,30],[1008,2,2,30,32],[1015,1,1,32,33]]],[43,11,11,33,44,[[1024,2,2,33,35],[1031,1,1,35,36],[1033,1,1,36,37],[1036,3,3,37,40],[1038,2,2,40,42],[1040,1,1,42,43],[1041,1,1,43,44]]],[44,2,2,44,46,[[1053,1,1,44,45],[1054,1,1,45,46]]],[47,1,1,46,47,[[1094,1,1,46,47]]],[58,1,1,47,48,[[1150,1,1,47,48]]],[65,11,10,48,58,[[1172,1,1,48,49],[1173,2,2,49,51],[1176,2,1,51,52],[1178,1,1,52,53],[1180,1,1,53,54],[1184,3,3,54,57],[1185,1,1,57,58]]]],[23374,23406,23623,23627,23656,23822,23823,23835,23841,24152,24179,24241,24299,24369,24371,24562,24564,24635,24636,24649,24839,24840,24865,25104,25340,25727,25771,26059,26356,26365,26593,26624,26837,27173,27176,27428,27500,27613,27617,27619,27692,27700,27740,27790,28131,28182,29137,30358,30803,30812,30820,30864,30893,30941,30995,31011,31012,31034]]],["+",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27617]]],["cried",[29,28,[[39,4,4,0,4,[[942,1,1,0,1],[948,1,1,1,2],[949,1,1,2,3],[955,1,1,3,4]]],[40,6,6,4,10,[[957,1,1,4,5],[959,1,1,5,6],[961,1,1,6,7],[965,1,1,7,8],[966,1,1,8,9],[967,1,1,9,10]]],[41,1,1,10,11,[[990,1,1,10,11]]],[42,5,5,11,16,[[997,1,1,11,12],[1003,2,2,12,14],[1008,2,2,14,16]]],[43,3,3,16,19,[[1024,1,1,16,17],[1033,1,1,17,18],[1041,1,1,18,19]]],[65,10,9,19,28,[[1172,1,1,19,20],[1173,2,2,20,22],[1176,2,1,22,23],[1178,1,1,23,24],[1184,3,3,24,27],[1185,1,1,27,28]]]],[23627,23823,23835,24179,24241,24299,24371,24564,24636,24649,25727,26059,26356,26365,26593,26624,27176,27500,27790,30803,30812,30820,30864,30893,30995,31011,31012,31034]]],["crieth",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]],[58,1,1,2,3,[[1150,1,1,2,3]]]],[23656,28182,30358]]],["cry",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28131]]],["crying",[6,6,[[39,2,2,0,2,[[937,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[961,1,1,2,3]]],[43,1,1,3,4,[[1038,1,1,3,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]],[65,1,1,5,6,[[1180,1,1,5,6]]]],[23406,23841,24369,27700,29137,30941]]],["out",[19,19,[[39,4,4,0,4,[[936,1,1,0,1],[942,1,1,1,2],[948,1,1,2,3],[955,1,1,3,4]]],[40,5,5,4,9,[[965,1,1,4,5],[966,1,1,5,6],[971,3,3,6,9]]],[41,3,3,9,12,[[976,1,1,9,10],[981,1,1,10,11],[991,1,1,11,12]]],[42,1,1,12,13,[[1015,1,1,12,13]]],[43,6,6,13,19,[[1024,1,1,13,14],[1031,1,1,14,15],[1036,2,2,15,17],[1038,1,1,17,18],[1040,1,1,18,19]]]],[23374,23623,23822,24152,24562,24635,24839,24840,24865,25104,25340,25771,26837,27173,27428,27613,27619,27692,27740]]]]},{"k":"G2897","v":[["surfeiting",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25860]]]]},{"k":"G2898","v":[["*",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]]],[24162,24848,25968,26842]]],["Calvary",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25968]]],["skull",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]]],[24162,24848,26842]]]]},{"k":"G2899","v":[["*",[5,5,[[39,3,3,0,3,[[937,1,1,0,1],[942,1,1,1,2],[951,1,1,2,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[41,1,1,4,5,[[980,1,1,4,5]]]],[23399,23633,23923,24463,25289]]],["border",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24463,25289]]],["borders",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23923]]],["hem",[2,2,[[39,2,2,0,2,[[937,1,1,0,1],[942,1,1,1,2]]]],[23399,23633]]]]},{"k":"G2900","v":[["mighty",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30471]]]]},{"k":"G2901","v":[["*",[4,4,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[48,1,1,3,4,[[1099,1,1,3,4]]]],[24973,25013,28789,29267]]],["strengthened",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29267]]],["strong",[3,3,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]]],[24973,25013,28789]]]]},{"k":"G2902","v":[["*",[47,46,[[39,12,12,0,12,[[937,1,1,0,1],[940,1,1,1,2],[942,1,1,2,3],[946,1,1,3,4],[949,1,1,4,5],[950,1,1,5,6],[954,5,5,6,11],[956,1,1,11,12]]],[40,15,15,12,27,[[957,1,1,12,13],[959,1,1,13,14],[961,1,1,14,15],[962,1,1,15,16],[963,3,3,16,19],[965,2,2,19,21],[968,1,1,21,22],[970,5,5,22,27]]],[41,2,2,27,29,[[980,1,1,27,28],[996,1,1,28,29]]],[42,2,1,29,30,[[1016,2,1,29,30]]],[43,4,4,30,34,[[1019,1,1,30,31],[1020,1,1,31,32],[1041,1,1,32,33],[1044,1,1,33,34]]],[50,1,1,34,35,[[1108,1,1,34,35]]],[52,1,1,35,36,[[1117,1,1,35,36]]],[57,2,2,36,38,[[1136,1,1,36,37],[1138,1,1,37,38]]],[65,8,8,38,46,[[1168,5,5,38,43],[1169,1,1,43,44],[1173,1,1,44,45],[1186,1,1,45,46]]]],[23404,23500,23600,23755,23872,23878,24058,24102,24104,24109,24111,24204,24246,24309,24405,24424,24466,24467,24471,24548,24565,24685,24755,24798,24800,24803,24805,25299,26007,26890,26973,27007,27775,27868,29513,29676,30028,30062,30718,30730,30731,30732,30742,30757,30811,31040]]],["+",[2,2,[[39,2,2,0,2,[[954,2,2,0,2]]]],[24102,24109]]],["fast",[4,4,[[57,1,1,0,1,[[1136,1,1,0,1]]],[65,3,3,1,4,[[1168,2,2,1,3],[1169,1,1,3,4]]]],[30028,30730,30742,30757]]],["hands",[2,2,[[39,2,2,0,2,[[946,1,1,0,1],[949,1,1,1,2]]]],[23755,23872]]],["held",[2,2,[[39,1,1,0,1,[[956,1,1,0,1]]],[43,1,1,1,2,[[1020,1,1,1,2]]]],[24204,27007]]],["hold",[7,7,[[39,2,2,0,2,[[940,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[963,2,2,2,4]]],[52,1,1,4,5,[[1117,1,1,4,5]]],[65,2,2,5,7,[[1168,2,2,5,7]]]],[23500,24111,24467,24471,29676,30731,30732]]],["holden",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[26007,26973]]],["holdeth",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30718]]],["holding",[3,3,[[40,1,1,0,1,[[963,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]],[65,1,1,2,3,[[1173,1,1,2,3]]]],[24466,29513,30811]]],["kept",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24548]]],["obtained",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27868]]],["on",[5,5,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,3,3,1,4,[[959,1,1,1,2],[968,1,1,2,3],[970,1,1,3,4]]],[65,1,1,4,5,[[1186,1,1,4,5]]]],[23600,24309,24685,24805,31040]]],["retain",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26890]]],["retained",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26890]]],["take",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[970,2,2,1,3]]]],[24058,24755,24798]]],["took",[10,10,[[39,3,3,0,3,[[937,1,1,0,1],[950,1,1,1,2],[954,1,1,2,3]]],[40,5,5,3,8,[[957,1,1,3,4],[961,1,1,4,5],[965,1,1,5,6],[970,2,2,6,8]]],[41,1,1,8,9,[[980,1,1,8,9]]],[43,1,1,9,10,[[1041,1,1,9,10]]]],[23404,23878,24104,24246,24405,24565,24800,24803,25299,27775]]],["upon",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[24424,30062]]]]},{"k":"G2903","v":[["*",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,3,3,1,4,[[1040,1,1,1,2],[1041,1,1,2,3],[1043,1,1,3,4]]]],[24896,27760,27772,27848]]],["excellent",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[24896,27760]]],["noble",[2,2,[[43,2,2,0,2,[[1041,1,1,0,1],[1043,1,1,1,2]]]],[27772,27848]]]]},{"k":"G2904","v":[["*",[12,12,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]],[48,2,2,2,4,[[1097,1,1,2,3],[1102,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]],[53,1,1,5,6,[[1124,1,1,5,6]]],[57,1,1,6,7,[[1134,1,1,6,7]]],[59,2,2,7,9,[[1154,1,1,7,8],[1155,1,1,8,9]]],[64,1,1,9,10,[[1166,1,1,9,10]]],[65,2,2,10,12,[[1167,1,1,10,11],[1171,1,1,11,12]]]],[24944,27605,29225,29347,29476,29804,29991,30457,30476,30697,30703,30792]]],["+",[2,2,[[43,1,1,0,1,[[1036,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]]],[27605,29225]]],["dominion",[4,4,[[59,2,2,0,2,[[1154,1,1,0,1],[1155,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]],[65,1,1,3,4,[[1167,1,1,3,4]]]],[30457,30476,30697,30703]]],["power",[5,5,[[48,1,1,0,1,[[1102,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]],[57,1,1,3,4,[[1134,1,1,3,4]]],[65,1,1,4,5,[[1171,1,1,4,5]]]],[29347,29476,29804,29991,30792]]],["strength",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24944]]]]},{"k":"G2905","v":[["*",[7,7,[[39,2,2,0,2,[[940,1,1,0,1],[943,1,1,1,2]]],[42,4,4,2,6,[[1007,1,1,2,3],[1014,1,1,3,4],[1015,2,2,4,6]]],[43,1,1,6,7,[[1039,1,1,6,7]]]],[23508,23655,26566,26825,26831,26840,27727]]],["cried",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[42,2,2,1,3,[[1007,1,1,1,2],[1014,1,1,2,3]]]],[23655,26566,26825]]],["cry",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23508]]],["out",[3,3,[[42,2,2,0,2,[[1015,2,2,0,2]]],[43,1,1,2,3,[[1039,1,1,2,3]]]],[26831,26840,27727]]]]},{"k":"G2906","v":[["*",[6,6,[[39,1,1,0,1,[[953,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]],[57,1,1,3,4,[[1137,1,1,3,4]]],[65,2,2,4,6,[[1180,1,1,4,5],[1187,1,1,5,6]]]],[24014,27743,29303,30037,30944,31057]]],["clamour",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29303]]],["cry",[3,3,[[39,1,1,0,1,[[953,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]],[65,1,1,2,3,[[1180,1,1,2,3]]]],[24014,27743,30944]]],["crying",[2,2,[[57,1,1,0,1,[[1137,1,1,0,1]]],[65,1,1,1,2,[[1187,1,1,1,2]]]],[30037,31057]]]]},{"k":"G2907","v":[["flesh",[2,2,[[44,1,1,0,1,[[1059,1,1,0,1]]],[45,1,1,1,2,[[1069,1,1,1,2]]]],[28301,28540]]]]},{"k":"G2908","v":[["better",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28525]]]]},{"k":"G2909","v":[["*",[19,18,[[45,3,3,0,3,[[1068,1,1,0,1],[1072,1,1,1,2],[1073,1,1,2,3]]],[49,1,1,3,4,[[1103,1,1,3,4]]],[57,13,12,4,16,[[1133,1,1,4,5],[1138,1,1,5,6],[1139,3,3,6,9],[1140,2,1,9,10],[1141,1,1,10,11],[1142,1,1,11,12],[1143,3,3,12,15],[1144,1,1,15,16]]],[59,1,1,16,17,[[1153,1,1,16,17]]],[60,1,1,17,18,[[1157,1,1,17,18]]]],[28496,28617,28665,29384,29967,30053,30071,30083,30086,30098,30128,30167,30188,30207,30212,30236,30441,30521]]],["best",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28665]]],["better",[15,14,[[45,2,2,0,2,[[1068,1,1,0,1],[1072,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[57,10,9,3,12,[[1133,1,1,3,4],[1139,3,3,4,7],[1140,2,1,7,8],[1141,1,1,8,9],[1142,1,1,9,10],[1143,2,2,10,12]]],[59,1,1,12,13,[[1153,1,1,12,13]]],[60,1,1,13,14,[[1157,1,1,13,14]]]],[28496,28617,29384,29967,30071,30083,30086,30098,30128,30167,30188,30207,30441,30521]]],["thing",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30212]]],["things",[2,2,[[57,2,2,0,2,[[1138,1,1,0,1],[1144,1,1,1,2]]]],[30053,30236]]]]},{"k":"G2910","v":[["*",[7,7,[[39,2,2,0,2,[[946,1,1,0,1],[950,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[43,3,3,3,6,[[1022,1,1,3,4],[1027,1,1,4,5],[1045,1,1,5,6]]],[47,1,1,6,7,[[1093,1,1,6,7]]]],[23733,23912,25974,27089,27298,27903,29115]]],["hang",[2,2,[[39,1,1,0,1,[[950,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]]],[23912,27903]]],["hanged",[4,4,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]],[43,2,2,2,4,[[1022,1,1,2,3],[1027,1,1,3,4]]]],[23733,25974,27089,27298]]],["hangeth",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29115]]]]},{"k":"G2911","v":[["place",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23377,24377,25278]]]]},{"k":"G2912","v":[["*",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[26960,29904]]],["Cretes",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26960]]],["Cretians",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29904]]]]},{"k":"G2913","v":[["Crescens",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29880]]]]},{"k":"G2914","v":[["Crete",[5,5,[[43,4,4,0,4,[[1044,4,4,0,4]]],[55,1,1,4,5,[[1129,1,1,4,5]]]],[27862,27867,27868,27876,29897]]]]},{"k":"G2915","v":[["barley",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30799]]]]},{"k":"G2916","v":[["barley",[2,2,[[42,2,2,0,2,[[1002,2,2,0,2]]]],[26266,26270]]]]},{"k":"G2917","v":[["*",[28,28,[[39,2,2,0,2,[[935,1,1,0,1],[951,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,3,3,3,6,[[992,1,1,3,4],[995,1,1,4,5],[996,1,1,5,6]]],[42,1,1,6,7,[[1005,1,1,6,7]]],[43,1,1,7,8,[[1041,1,1,7,8]]],[44,6,6,8,14,[[1047,2,2,8,10],[1048,1,1,10,11],[1050,1,1,11,12],[1056,1,1,12,13],[1058,1,1,13,14]]],[45,3,3,14,17,[[1067,1,1,14,15],[1072,2,2,15,17]]],[47,1,1,17,18,[[1095,1,1,17,18]]],[53,2,2,18,20,[[1121,1,1,18,19],[1123,1,1,19,20]]],[57,1,1,20,21,[[1138,1,1,20,21]]],[58,1,1,21,22,[[1148,1,1,21,22]]],[59,1,1,22,23,[[1154,1,1,22,23]]],[60,1,1,23,24,[[1157,1,1,23,24]]],[64,1,1,24,25,[[1166,1,1,24,25]]],[65,3,3,25,28,[[1183,1,1,25,26],[1184,1,1,26,27],[1186,1,1,27,28]]]],[23318,23932,24713,25826,25975,26011,26479,27794,27964,27965,27999,28063,28242,28268,28474,28629,28634,29172,29737,29775,30046,30320,30463,30503,30676,30976,31013,31042]]],["+",[2,2,[[45,1,1,0,1,[[1067,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[28474,31013]]],["condemnation",[5,5,[[41,1,1,0,1,[[995,1,1,0,1]]],[45,1,1,1,2,[[1072,1,1,1,2]]],[53,1,1,2,3,[[1121,1,1,2,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[25975,28634,29737,30320,30676]]],["condemned",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26011]]],["damnation",[7,7,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[44,2,2,3,5,[[1048,1,1,3,4],[1058,1,1,4,5]]],[45,1,1,5,6,[[1072,1,1,5,6]]],[53,1,1,6,7,[[1123,1,1,6,7]]]],[23932,24713,25826,27999,28268,28629,29775]]],["judgment",[12,12,[[39,1,1,0,1,[[935,1,1,0,1]]],[42,1,1,1,2,[[1005,1,1,1,2]]],[43,1,1,2,3,[[1041,1,1,2,3]]],[44,3,3,3,6,[[1047,2,2,3,5],[1050,1,1,5,6]]],[47,1,1,6,7,[[1095,1,1,6,7]]],[57,1,1,7,8,[[1138,1,1,7,8]]],[59,1,1,8,9,[[1154,1,1,8,9]]],[60,1,1,9,10,[[1157,1,1,9,10]]],[65,2,2,10,12,[[1183,1,1,10,11],[1186,1,1,11,12]]]],[23318,26479,27794,27964,27965,28063,29172,30046,30463,30503,30976,31042]]],["judgments",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28242]]]]},{"k":"G2918","v":[["lilies",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23310,25486]]]]},{"k":"G2919","v":[["*",[114,98,[[39,6,4,0,4,[[933,1,1,0,1],[935,4,2,1,3],[947,1,1,3,4]]],[41,6,5,4,9,[[978,2,1,4,5],[979,1,1,5,6],[984,1,1,6,7],[991,1,1,7,8],[994,1,1,8,9]]],[42,19,14,9,23,[[999,3,2,9,11],[1001,2,2,11,13],[1003,3,2,13,15],[1004,5,4,15,19],[1008,4,2,19,21],[1012,1,1,21,22],[1014,1,1,22,23]]],[43,22,22,23,45,[[1020,1,1,23,24],[1021,1,1,24,25],[1024,1,1,25,26],[1030,2,2,26,28],[1032,1,1,28,29],[1033,2,2,29,31],[1034,1,1,31,32],[1037,1,1,32,33],[1038,1,1,33,34],[1040,2,2,34,36],[1041,2,2,36,38],[1042,4,4,38,42],[1043,2,2,42,44],[1044,1,1,44,45]]],[44,18,14,45,59,[[1047,7,5,45,50],[1048,3,3,50,53],[1059,8,6,53,59]]],[45,17,15,59,74,[[1063,1,1,59,60],[1065,1,1,60,61],[1066,4,3,61,64],[1067,5,4,64,68],[1068,1,1,68,69],[1071,2,2,69,71],[1072,3,3,71,74]]],[46,2,2,74,76,[[1079,1,1,74,75],[1082,1,1,75,76]]],[50,1,1,76,77,[[1108,1,1,76,77]]],[52,1,1,77,78,[[1117,1,1,77,78]]],[54,1,1,78,79,[[1128,1,1,78,79]]],[55,1,1,79,80,[[1131,1,1,79,80]]],[57,2,2,80,82,[[1142,1,1,80,81],[1145,1,1,81,82]]],[58,5,3,82,85,[[1147,1,1,82,83],[1149,4,2,83,85]]],[59,4,4,85,89,[[1151,1,1,85,86],[1152,1,1,86,87],[1154,2,2,87,89]]],[65,9,9,89,98,[[1172,1,1,89,90],[1177,1,1,90,91],[1182,1,1,91,92],[1184,2,2,92,94],[1185,2,2,94,96],[1186,2,2,96,98]]]],[23274,23317,23318,23790,25183,25238,25516,25753,25894,26137,26138,26232,26240,26352,26379,26396,26397,26407,26431,26627,26628,26737,26816,27009,27041,27123,27389,27408,27461,27487,27498,27554,27642,27689,27737,27740,27775,27790,27805,27806,27816,27821,27829,27831,27856,27963,27965,27974,27978,27989,27995,27997,27998,28283,28284,28285,28290,28293,28302,28396,28438,28457,28466,28467,28468,28469,28470,28473,28524,28582,28596,28613,28631,28632,28825,28891,29510,29673,29871,29935,30163,30245,30305,30348,30349,30391,30422,30451,30452,30803,30890,30959,31001,31013,31019,31028,31050,31051]]],["+",[5,5,[[39,1,1,0,1,[[933,1,1,0,1]]],[44,1,1,1,2,[[1059,1,1,1,2]]],[59,2,2,2,4,[[1151,1,1,2,3],[1154,1,1,3,4]]],[65,1,1,4,5,[[1184,1,1,4,5]]]],[23274,28293,30391,30452,31013]]],["Judge",[4,4,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[42,1,1,2,3,[[1003,1,1,2,3]]],[45,1,1,3,4,[[1072,1,1,3,4]]]],[23317,25183,26352,28613]]],["concluded",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27689]]],["condemn",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26137]]],["condemned",[2,1,[[42,2,1,0,1,[[999,2,1,0,1]]]],[26138]]],["condemneth",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28302]]],["condemning",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27389]]],["damned",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29673]]],["decreed",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28524]]],["determined",[7,7,[[43,4,4,0,4,[[1020,1,1,0,1],[1037,1,1,1,2],[1042,1,1,2,3],[1044,1,1,3,4]]],[45,1,1,4,5,[[1063,1,1,4,5]]],[46,1,1,5,6,[[1079,1,1,5,6]]],[55,1,1,6,7,[[1131,1,1,6,7]]]],[27009,27642,27821,27856,28396,28825,29935]]],["esteemeth",[2,1,[[44,2,1,0,1,[[1059,2,1,0,1]]]],[28285]]],["is",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27461]]],["judge",[40,37,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[991,1,1,2,3]]],[42,11,9,3,12,[[1001,1,1,3,4],[1003,2,2,4,6],[1004,4,3,6,9],[1008,3,2,9,11],[1014,1,1,11,12]]],[43,5,5,12,17,[[1021,1,1,12,13],[1024,1,1,13,14],[1030,1,1,14,15],[1034,1,1,15,16],[1040,1,1,16,17]]],[44,6,6,17,23,[[1047,2,2,17,19],[1048,1,1,19,20],[1059,3,3,20,23]]],[45,6,5,23,28,[[1065,1,1,23,24],[1066,2,1,24,25],[1067,2,2,25,27],[1071,1,1,27,28]]],[46,1,1,28,29,[[1082,1,1,28,29]]],[50,1,1,29,30,[[1108,1,1,29,30]]],[54,1,1,30,31,[[1128,1,1,30,31]]],[57,2,2,31,33,[[1142,1,1,31,32],[1145,1,1,32,33]]],[58,1,1,33,34,[[1149,1,1,33,34]]],[59,1,1,34,35,[[1154,1,1,34,35]]],[65,2,2,35,37,[[1172,1,1,35,36],[1185,1,1,36,37]]]],[23318,25516,25753,26240,26352,26379,26396,26397,26407,26627,26628,26816,27041,27123,27408,27554,27737,27978,27989,27997,28283,28290,28293,28438,28466,28469,28470,28582,28891,29510,29871,30163,30245,30348,30451,30803,31028]]],["judged",[25,25,[[39,2,2,0,2,[[935,2,2,0,2]]],[41,2,2,2,4,[[978,1,1,2,3],[979,1,1,3,4]]],[42,1,1,4,5,[[1012,1,1,4,5]]],[43,6,6,5,11,[[1033,1,1,5,6],[1041,1,1,6,7],[1042,3,3,7,10],[1043,1,1,10,11]]],[44,3,3,11,14,[[1047,1,1,11,12],[1048,2,2,12,14]]],[45,5,5,14,19,[[1066,1,1,14,15],[1067,1,1,15,16],[1071,1,1,16,17],[1072,2,2,17,19]]],[58,1,1,19,20,[[1147,1,1,19,20]]],[65,5,5,20,25,[[1177,1,1,20,21],[1182,1,1,21,22],[1185,1,1,22,23],[1186,2,2,23,25]]]],[23317,23318,25183,25238,26737,27498,27775,27805,27806,27816,27829,27974,27995,27998,28457,28469,28596,28631,28632,30305,30890,30959,31019,31050,31051]]],["judgest",[6,4,[[44,5,3,0,3,[[1047,4,2,0,2],[1059,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]]],[27963,27965,28284,30349]]],["judgeth",[8,7,[[42,3,3,0,3,[[1001,1,1,0,1],[1004,1,1,1,2],[1008,1,1,2,3]]],[45,1,1,3,4,[[1066,1,1,3,4]]],[58,2,1,4,5,[[1149,2,1,4,5]]],[59,1,1,5,6,[[1152,1,1,5,6]]],[65,1,1,6,7,[[1184,1,1,6,7]]]],[26232,26431,26628,28467,30348,30422,31001]]],["judging",[2,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[23790,25894]]],["law",[2,2,[[45,2,2,0,2,[[1067,2,2,0,2]]]],[28468,28473]]],["ordained",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27487]]],["question",[2,2,[[43,2,2,0,2,[[1040,1,1,0,1],[1041,1,1,1,2]]]],[27740,27790]]],["thought",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27831]]]]},{"k":"G2920","v":[["*",[48,47,[[39,12,12,0,12,[[933,2,2,0,2],[938,1,1,2,3],[939,2,2,3,5],[940,5,5,5,10],[951,2,2,10,12]]],[40,2,2,12,14,[[959,1,1,12,13],[962,1,1,13,14]]],[41,4,4,14,18,[[982,1,1,14,15],[983,3,3,15,18]]],[42,11,11,18,29,[[999,1,1,18,19],[1001,5,5,19,24],[1003,1,1,24,25],[1004,1,1,25,26],[1008,1,1,26,27],[1012,2,2,27,29]]],[43,1,1,29,30,[[1025,1,1,29,30]]],[52,1,1,30,31,[[1116,1,1,30,31]]],[53,1,1,31,32,[[1123,1,1,31,32]]],[57,2,2,32,34,[[1141,1,1,32,33],[1142,1,1,33,34]]],[58,2,1,34,35,[[1147,2,1,34,35]]],[60,4,4,35,39,[[1157,3,3,35,38],[1158,1,1,38,39]]],[61,1,1,39,40,[[1162,1,1,39,40]]],[64,3,3,40,43,[[1166,3,3,40,43]]],[65,4,4,43,47,[[1180,1,1,43,44],[1182,1,1,44,45],[1184,1,1,45,46],[1185,1,1,46,47]]]],[23255,23256,23432,23481,23483,23507,23509,23525,23530,23531,23941,23951,24317,24418,25377,25436,25437,25447,26139,26232,26234,26237,26239,26240,26352,26397,26611,26734,26737,27209,29654,29787,30132,30160,30306,30504,30509,30511,30529,30620,30678,30681,30687,30933,30961,31003,31019]]],["+",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23941]]],["accusation",[2,2,[[60,1,1,0,1,[[1157,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[30511,30681]]],["condemnation",[2,2,[[42,2,2,0,2,[[999,1,1,0,1],[1001,1,1,1,2]]]],[26139,26234]]],["damnation",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[42,1,1,2,3,[[1001,1,1,2,3]]]],[23951,24317,26239]]],["judgment",[38,37,[[39,10,10,0,10,[[933,2,2,0,2],[938,1,1,2,3],[939,2,2,3,5],[940,5,5,5,10]]],[40,1,1,10,11,[[962,1,1,10,11]]],[41,4,4,11,15,[[982,1,1,11,12],[983,3,3,12,15]]],[42,8,8,15,23,[[1001,3,3,15,18],[1003,1,1,18,19],[1004,1,1,19,20],[1008,1,1,20,21],[1012,2,2,21,23]]],[43,1,1,23,24,[[1025,1,1,23,24]]],[52,1,1,24,25,[[1116,1,1,24,25]]],[53,1,1,25,26,[[1123,1,1,25,26]]],[57,2,2,26,28,[[1141,1,1,26,27],[1142,1,1,27,28]]],[58,2,1,28,29,[[1147,2,1,28,29]]],[60,3,3,29,32,[[1157,2,2,29,31],[1158,1,1,31,32]]],[61,1,1,32,33,[[1162,1,1,32,33]]],[64,2,2,33,35,[[1166,2,2,33,35]]],[65,2,2,35,37,[[1180,1,1,35,36],[1184,1,1,36,37]]]],[23255,23256,23432,23481,23483,23507,23509,23525,23530,23531,24418,25377,25436,25437,25447,26232,26237,26240,26352,26397,26611,26734,26737,27209,29654,29787,30132,30160,30306,30504,30509,30529,30620,30678,30687,30933,31003]]],["judgments",[2,2,[[65,2,2,0,2,[[1182,1,1,0,1],[1185,1,1,1,2]]]],[30961,31019]]]]},{"k":"G2921","v":[["Crispus",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]]],[27565,28377]]]]},{"k":"G2922","v":[["*",[3,3,[[45,2,2,0,2,[[1067,2,2,0,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[28469,28471,30299]]],["+",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28469]]],["judgments",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28471]]],["seats",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30299]]]]},{"k":"G2923","v":[["*",[17,15,[[39,3,2,0,2,[[933,2,1,0,1],[940,1,1,1,2]]],[41,5,4,2,6,[[983,1,1,2,3],[984,2,1,3,4],[990,2,2,4,6]]],[43,4,4,6,10,[[1027,1,1,6,7],[1030,1,1,7,8],[1035,1,1,8,9],[1041,1,1,9,10]]],[54,1,1,10,11,[[1128,1,1,10,11]]],[57,1,1,11,12,[[1144,1,1,11,12]]],[58,3,3,12,15,[[1147,1,1,12,13],[1149,1,1,13,14],[1150,1,1,14,15]]]],[23259,23516,25424,25517,25690,25694,27301,27382,27572,27779,29878,30235,30297,30348,30363]]],["Judge",[2,2,[[43,1,1,0,1,[[1027,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[27301,30235]]],["judge",[11,9,[[39,2,1,0,1,[[933,2,1,0,1]]],[41,4,3,1,4,[[984,2,1,1,2],[990,2,2,2,4]]],[43,2,2,4,6,[[1035,1,1,4,5],[1041,1,1,5,6]]],[54,1,1,6,7,[[1128,1,1,6,7]]],[58,2,2,7,9,[[1149,1,1,7,8],[1150,1,1,8,9]]]],[23259,25517,25690,25694,27572,27779,29878,30348,30363]]],["judges",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[43,1,1,2,3,[[1030,1,1,2,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[23516,25424,27382,30297]]]]},{"k":"G2924","v":[["discerner",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30026]]]]},{"k":"G2925","v":[["*",[9,9,[[39,2,2,0,2,[[935,2,2,0,2]]],[41,4,4,2,6,[[983,2,2,2,4],[984,1,1,4,5],[985,1,1,5,6]]],[43,2,2,6,8,[[1029,2,2,6,8]]],[65,1,1,8,9,[[1169,1,1,8,9]]]],[23323,23324,25414,25415,25495,25543,27350,27353,30766]]],["knock",[4,4,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[985,1,1,2,3]]],[65,1,1,3,4,[[1169,1,1,3,4]]]],[23323,25414,25543,30766]]],["knocked",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27350]]],["knocketh",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[984,1,1,2,3]]]],[23324,25415,25495]]],["knocking",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27353]]]]},{"k":"G2926","v":[]},{"k":"G2927","v":[["*",[20,17,[[39,7,4,0,4,[[934,6,3,0,3],[938,1,1,3,4]]],[40,1,1,4,5,[[960,1,1,4,5]]],[41,3,3,5,8,[[980,1,1,5,6],[983,1,1,6,7],[984,1,1,7,8]]],[42,3,3,8,11,[[1003,2,2,8,10],[1014,1,1,10,11]]],[44,2,2,11,13,[[1047,2,2,11,13]]],[45,2,2,13,15,[[1065,1,1,13,14],[1075,1,1,14,15]]],[46,1,1,15,16,[[1081,1,1,15,16]]],[59,1,1,16,17,[[1153,1,1,16,17]]]],[23286,23288,23300,23443,24345,25262,25438,25461,26332,26338,26805,27978,27991,28438,28703,28861,30428]]],["+",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27991]]],["hid",[3,3,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[984,1,1,2,3]]]],[23443,24345,25461]]],["hidden",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30428]]],["place",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25438]]],["secret",[10,7,[[39,6,3,0,3,[[934,6,3,0,3]]],[41,1,1,3,4,[[980,1,1,3,4]]],[42,3,3,4,7,[[1003,2,2,4,6],[1014,1,1,6,7]]]],[23286,23288,23300,25262,26332,26338,26805]]],["secrets",[2,2,[[44,1,1,0,1,[[1047,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[27978,28703]]],["things",[2,2,[[45,1,1,0,1,[[1065,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]]],[28438,28861]]]]},{"k":"G2928","v":[["*",[16,15,[[39,5,4,0,4,[[933,1,1,0,1],[941,3,2,1,3],[953,1,1,3,4]]],[41,2,2,4,6,[[990,1,1,4,5],[991,1,1,5,6]]],[42,3,3,6,9,[[1004,1,1,6,7],[1008,1,1,7,8],[1015,1,1,8,9]]],[50,1,1,9,10,[[1109,1,1,9,10]]],[53,1,1,10,11,[[1123,1,1,10,11]]],[57,1,1,11,12,[[1143,1,1,11,12]]],[65,3,3,12,15,[[1168,1,1,12,13],[1172,2,2,13,15]]]],[23248,23574,23583,24033,25722,25773,26440,26616,26863,29520,29788,30195,30734,30808,30809]]],["+",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30734]]],["hid",[10,10,[[39,3,3,0,3,[[933,1,1,0,1],[941,1,1,1,2],[953,1,1,2,3]]],[41,2,2,3,5,[[990,1,1,3,4],[991,1,1,4,5]]],[42,1,1,5,6,[[1004,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[53,1,1,7,8,[[1123,1,1,7,8]]],[57,1,1,8,9,[[1143,1,1,8,9]]],[65,1,1,9,10,[[1172,1,1,9,10]]]],[23248,23583,24033,25722,25773,26440,29520,29788,30195,30808]]],["hide",[2,2,[[42,1,1,0,1,[[1008,1,1,0,1]]],[65,1,1,1,2,[[1172,1,1,1,2]]]],[26616,30809]]],["hideth",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23583]]],["secret",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23574]]],["secretly",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26863]]]]},{"k":"G2929","v":[["crystal",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31064]]]]},{"k":"G2930","v":[["crystal",[2,2,[[65,2,2,0,2,[[1170,1,1,0,1],[1188,1,1,1,2]]]],[30774,31081]]]]},{"k":"G2931","v":[["secret",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29316]]]]},{"k":"G2932","v":[["*",[7,7,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,2,2,1,3,[[990,1,1,1,2],[993,1,1,2,3]]],[43,3,3,3,6,[[1018,1,1,3,4],[1025,1,1,4,5],[1039,1,1,5,6]]],[51,1,1,6,7,[[1114,1,1,6,7]]]],[23426,25700,25845,26941,27196,27732,29607]]],["Provide",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23426]]],["obtained",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27732]]],["possess",[3,3,[[41,2,2,0,2,[[990,1,1,0,1],[993,1,1,1,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]]],[25700,25845,29607]]],["purchased",[2,2,[[43,2,2,0,2,[[1018,1,1,0,1],[1025,1,1,1,2]]]],[26941,27196]]]]},{"k":"G2933","v":[["*",[4,4,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[43,2,2,2,4,[[1019,1,1,2,3],[1022,1,1,3,4]]]],[23784,24610,26994,27060]]],["possession",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27060]]],["possessions",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]]],[23784,24610,26994]]]]},{"k":"G2934","v":[["*",[4,4,[[41,1,1,0,1,[[982,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]],[65,1,1,3,4,[[1184,1,1,3,4]]]],[25397,27758,28757,31006]]],["+",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28757]]],["beast",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25397]]],["beasts",[2,2,[[43,1,1,0,1,[[1040,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[27758,31006]]]]},{"k":"G2935","v":[["possessors",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27056]]]]},{"k":"G2936","v":[["*",[14,12,[[40,1,1,0,1,[[969,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[48,4,4,3,7,[[1098,2,2,3,5],[1099,1,1,5,6],[1100,1,1,6,7]]],[50,3,2,7,9,[[1107,2,1,7,8],[1109,1,1,8,9]]],[53,1,1,9,10,[[1122,1,1,9,10]]],[65,3,2,10,12,[[1170,2,1,10,11],[1176,1,1,11,12]]]],[24736,27955,28609,29239,29244,29260,29296,29481,29527,29750,30779,30867]]],["Creator",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27955]]],["created",[12,10,[[40,1,1,0,1,[[969,1,1,0,1]]],[45,1,1,1,2,[[1072,1,1,1,2]]],[48,3,3,2,5,[[1098,1,1,2,3],[1099,1,1,3,4],[1100,1,1,4,5]]],[50,3,2,5,7,[[1107,2,1,5,6],[1109,1,1,6,7]]],[53,1,1,7,8,[[1122,1,1,7,8]]],[65,3,2,8,10,[[1170,2,1,8,9],[1176,1,1,9,10]]]],[24736,28609,29239,29260,29296,29481,29527,29750,30779,30867]]],["make",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29244]]]]},{"k":"G2937","v":[["*",[19,19,[[40,3,3,0,3,[[966,1,1,0,1],[969,1,1,1,2],[972,1,1,2,3]]],[44,7,7,3,10,[[1046,2,2,3,5],[1053,5,5,5,10]]],[46,1,1,10,11,[[1082,1,1,10,11]]],[47,1,1,11,12,[[1096,1,1,11,12]]],[50,2,2,12,14,[[1107,2,2,12,14]]],[57,2,2,14,16,[[1136,1,1,14,15],[1141,1,1,15,16]]],[59,1,1,16,17,[[1152,1,1,16,17]]],[60,1,1,17,18,[[1158,1,1,17,18]]],[65,1,1,18,19,[[1169,1,1,18,19]]]],[24594,24736,24888,27950,27955,28135,28136,28137,28138,28155,28894,29203,29480,29488,30027,30116,30412,30526,30760]]],["building",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30116]]],["creation",[6,6,[[40,2,2,0,2,[[966,1,1,0,1],[969,1,1,1,2]]],[44,2,2,2,4,[[1046,1,1,2,3],[1053,1,1,3,4]]],[60,1,1,4,5,[[1158,1,1,4,5]]],[65,1,1,5,6,[[1169,1,1,5,6]]]],[24594,24736,27950,28138,30526,30760]]],["creature",[11,11,[[40,1,1,0,1,[[972,1,1,0,1]]],[44,5,5,1,6,[[1046,1,1,1,2],[1053,4,4,2,6]]],[46,1,1,6,7,[[1082,1,1,6,7]]],[47,1,1,7,8,[[1096,1,1,7,8]]],[50,2,2,8,10,[[1107,2,2,8,10]]],[57,1,1,10,11,[[1136,1,1,10,11]]]],[24888,27955,28135,28136,28137,28155,28894,29203,29480,29488,30027]]],["ordinance",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30412]]]]},{"k":"G2938","v":[["*",[4,4,[[53,1,1,0,1,[[1122,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]],[65,2,2,2,4,[[1171,1,1,2,3],[1174,1,1,3,4]]]],[29751,30284,30792,30836]]],["creature",[2,2,[[53,1,1,0,1,[[1122,1,1,0,1]]],[65,1,1,1,2,[[1171,1,1,1,2]]]],[29751,30792]]],["creatures",[2,2,[[58,1,1,0,1,[[1146,1,1,0,1]]],[65,1,1,1,2,[[1174,1,1,1,2]]]],[30284,30836]]]]},{"k":"G2939","v":[["Creator",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30465]]]]},{"k":"G2940","v":[["sleight",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29286]]]]},{"k":"G2941","v":[["governments",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28662]]]]},{"k":"G2942","v":[["*",[2,2,[[43,1,1,0,1,[[1044,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[27866,31010]]],["master",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27866]]],["shipmaster",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31010]]]]},{"k":"G2943","v":[["about",[4,4,[[65,4,4,0,4,[[1170,3,3,0,3],[1171,1,1,3,4]]]],[30771,30772,30776,30790]]]]},{"k":"G2944","v":[["*",[5,5,[[41,1,1,0,1,[[993,1,1,0,1]]],[42,1,1,1,2,[[1006,1,1,1,2]]],[43,1,1,2,3,[[1031,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]],[65,1,1,4,5,[[1186,1,1,4,5]]]],[25846,26505,27434,30202,31047]]],["+",[3,3,[[42,1,1,0,1,[[1006,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]],[65,1,1,2,3,[[1186,1,1,2,3]]]],[26505,30202,31047]]],["about",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27434]]],["compassed",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25846]]]]},{"k":"G2945","v":[["about",[7,7,[[40,3,3,0,3,[[959,1,1,0,1],[962,2,2,1,3]]],[41,1,1,3,4,[[981,1,1,3,4]]],[44,1,1,4,5,[[1060,1,1,4,5]]],[65,2,2,5,7,[[1170,1,1,5,6],[1173,1,1,6,7]]]],[24322,24413,24443,25313,28322,30774,30821]]]]},{"k":"G2946","v":[["wallowing",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30522]]]]},{"k":"G2947","v":[["wallowed",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24558]]]]},{"k":"G2948","v":[["maimed",[4,4,[[39,3,3,0,3,[[943,2,2,0,2],[946,1,1,2,3]]],[40,1,1,3,4,[[965,1,1,3,4]]]],[23663,23664,23735,24581]]]]},{"k":"G2949","v":[["waves",[5,5,[[39,2,2,0,2,[[936,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[43,1,1,3,4,[[1044,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[23369,23621,24360,27896,30685]]]]},{"k":"G2950","v":[["cymbal",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28666]]]]},{"k":"G2951","v":[["cummin",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23941]]]]},{"k":"G2952","v":[["dogs",[4,4,[[39,2,2,0,2,[[943,2,2,0,2]]],[40,2,2,2,4,[[963,2,2,2,4]]]],[23659,23660,24490,24491]]]]},{"k":"G2953","v":[["*",[3,3,[[43,3,3,0,3,[[1021,1,1,0,1],[1028,1,1,1,2],[1038,1,1,2,3]]]],[27058,27327,27680]]],["+",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27058]]],["Cyprus",[2,2,[[43,2,2,0,2,[[1028,1,1,0,1],[1038,1,1,1,2]]]],[27327,27680]]]]},{"k":"G2954","v":[["Cyprus",[5,5,[[43,5,5,0,5,[[1028,1,1,0,1],[1030,1,1,1,2],[1032,1,1,2,3],[1038,1,1,3,4],[1044,1,1,4,5]]]],[27326,27366,27481,27667,27859]]]]},{"k":"G2955","v":[["*",[3,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[42,2,2,1,3,[[1004,2,2,1,3]]]],[24222,26387,26389]]],["down",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24222]]],["stooped",[2,2,[[42,2,2,0,2,[[1004,2,2,0,2]]]],[26387,26389]]]]},{"k":"G2956","v":[["*",[6,6,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[43,3,3,3,6,[[1023,1,1,3,4],[1028,1,1,4,5],[1030,1,1,5,6]]]],[24161,24847,25961,27110,27327,27363]]],["Cyrene",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[43,2,2,1,3,[[1028,1,1,1,2],[1030,1,1,2,3]]]],[24161,27327,27363]]],["Cyrenian",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24847,25961]]],["Cyrenians",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27110]]]]},{"k":"G2957","v":[["Cyrene",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26959]]]]},{"k":"G2958","v":[["Cyrenius",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24975]]]]},{"k":"G2959","v":[["lady",[2,2,[[62,2,2,0,2,[[1164,2,2,0,2]]]],[30646,30650]]]]},{"k":"G2960","v":[["Lord's",[2,2,[[45,1,1,0,1,[[1072,1,1,0,1]]],[65,1,1,1,2,[[1167,1,1,1,2]]]],[28620,30707]]]]},{"k":"G2961","v":[["*",[7,7,[[41,1,1,0,1,[[994,1,1,0,1]]],[44,4,4,1,5,[[1051,2,2,1,3],[1052,1,1,3,4],[1059,1,1,4,5]]],[46,1,1,5,6,[[1078,1,1,5,6]]],[53,1,1,6,7,[[1124,1,1,6,7]]]],[25889,28077,28082,28092,28289,28824,29803]]],["+",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28077]]],["Lord",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28289]]],["lords",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29803]]],["over",[4,4,[[41,1,1,0,1,[[994,1,1,0,1]]],[44,2,2,1,3,[[1051,1,1,1,2],[1052,1,1,2,3]]],[46,1,1,3,4,[[1078,1,1,3,4]]]],[25889,28082,28092,28824]]]]},{"k":"G2962","v":[["*",[748,687,[[39,83,76,0,76,[[929,3,3,0,3],[930,3,3,3,6],[931,1,1,6,7],[932,2,2,7,9],[933,1,1,9,10],[934,1,1,10,11],[935,4,2,11,13],[936,5,5,13,18],[937,2,2,18,20],[938,2,2,20,22],[939,1,1,22,23],[940,1,1,23,24],[941,2,2,24,26],[942,2,2,26,28],[943,4,3,28,31],[944,1,1,31,32],[945,2,2,32,34],[946,7,7,34,41],[948,4,4,41,45],[949,5,5,45,50],[950,5,4,50,54],[951,1,1,54,55],[952,5,5,55,60],[953,14,11,60,71],[954,1,1,71,72],[955,2,2,72,74],[956,2,2,74,76]]],[40,20,18,76,94,[[957,1,1,76,77],[958,1,1,77,78],[961,1,1,78,79],[963,1,1,79,80],[965,1,1,80,81],[967,3,3,81,84],[968,8,6,84,90],[969,2,2,90,92],[972,2,2,92,94]]],[41,107,98,94,192,[[973,17,17,94,111],[974,11,9,111,120],[975,1,1,120,121],[976,4,4,121,125],[977,3,3,125,128],[978,3,2,128,130],[979,3,3,130,133],[981,4,4,133,137],[982,6,6,137,143],[983,2,2,143,145],[984,9,8,145,153],[985,6,5,153,158],[986,3,3,158,161],[988,5,4,161,165],[989,3,3,165,168],[990,2,2,168,170],[991,10,9,170,179],[992,6,5,179,184],[994,6,5,184,189],[995,1,1,189,190],[996,2,2,190,192]]],[42,53,51,192,243,[[997,1,1,192,193],[1000,5,5,193,198],[1001,1,1,198,199],[1002,3,3,199,202],[1004,1,1,202,203],[1005,2,2,203,205],[1007,8,8,205,213],[1008,4,3,213,216],[1009,8,8,216,224],[1010,3,3,224,227],[1011,2,2,227,229],[1016,7,7,229,236],[1017,8,7,236,243]]],[43,113,105,243,348,[[1018,3,3,243,246],[1019,8,7,246,253],[1020,2,2,253,255],[1021,3,3,255,258],[1022,3,3,258,261],[1024,7,7,261,268],[1025,5,5,268,273],[1026,16,13,273,286],[1027,4,4,286,290],[1028,8,7,290,297],[1029,4,4,297,301],[1030,7,7,301,308],[1031,2,2,308,310],[1032,6,5,310,315],[1033,8,8,315,323],[1034,2,2,323,325],[1035,4,3,325,328],[1036,5,5,328,333],[1037,4,4,333,337],[1038,3,3,337,340],[1039,5,4,340,344],[1040,1,1,344,345],[1042,1,1,345,346],[1043,1,1,346,347],[1045,1,1,347,348]]],[44,45,39,348,387,[[1046,2,2,348,350],[1049,2,2,350,352],[1050,3,3,352,355],[1051,2,2,355,357],[1052,1,1,357,358],[1053,1,1,358,359],[1054,2,2,359,361],[1055,4,4,361,365],[1056,2,2,365,367],[1057,2,2,367,369],[1058,1,1,369,370],[1059,10,5,370,375],[1060,3,3,375,378],[1061,10,9,378,387]]],[45,69,59,387,446,[[1062,7,7,387,394],[1063,2,2,394,396],[1064,2,2,396,398],[1065,4,4,398,402],[1066,3,2,402,404],[1067,5,4,404,408],[1068,12,9,408,417],[1069,2,2,417,419],[1070,5,4,419,423],[1071,5,4,423,427],[1072,8,6,427,433],[1073,2,2,433,435],[1075,2,2,435,437],[1076,5,4,437,441],[1077,5,5,441,446]]],[46,30,28,446,474,[[1078,3,3,446,449],[1079,1,1,449,450],[1080,5,3,450,453],[1081,3,3,453,456],[1082,3,3,456,459],[1083,2,2,459,461],[1085,4,4,461,465],[1087,3,3,465,468],[1088,2,2,468,470],[1089,2,2,470,472],[1090,2,2,472,474]]],[47,7,7,474,481,[[1091,2,2,474,476],[1094,1,1,476,477],[1095,1,1,477,478],[1096,3,3,478,481]]],[48,28,27,481,508,[[1097,4,4,481,485],[1098,1,1,485,486],[1099,2,2,486,488],[1100,3,3,488,491],[1101,7,7,491,498],[1102,11,10,498,508]]],[49,15,15,508,523,[[1103,2,2,508,510],[1104,4,4,510,514],[1105,3,3,514,517],[1106,6,6,517,523]]],[50,16,14,523,537,[[1107,3,3,523,526],[1108,1,1,526,527],[1109,8,7,527,534],[1110,4,3,534,537]]],[51,25,22,537,559,[[1111,5,4,537,541],[1112,2,2,541,543],[1113,4,4,543,547],[1114,8,6,547,553],[1115,6,6,553,559]]],[52,21,19,559,578,[[1116,7,6,559,565],[1117,5,5,565,570],[1118,9,8,570,578]]],[53,8,8,578,586,[[1119,4,4,578,582],[1123,1,1,582,583],[1124,3,3,583,586]]],[54,17,16,586,602,[[1125,5,4,586,590],[1126,5,5,590,595],[1127,1,1,595,596],[1128,6,6,596,602]]],[55,1,1,602,603,[[1129,1,1,602,603]]],[56,6,5,603,608,[[1132,6,5,603,608]]],[57,17,16,608,624,[[1133,1,1,608,609],[1134,1,1,609,610],[1139,2,2,610,612],[1140,5,5,612,617],[1142,3,2,617,619],[1144,3,3,619,622],[1145,2,2,622,624]]],[58,14,13,624,637,[[1146,3,3,624,627],[1147,1,1,627,628],[1149,2,2,628,630],[1150,8,7,630,637]]],[59,8,7,637,644,[[1151,2,2,637,639],[1152,2,2,639,641],[1153,4,3,641,644]]],[60,14,14,644,658,[[1156,5,5,644,649],[1157,3,3,649,652],[1158,6,6,652,658]]],[62,1,1,658,659,[[1164,1,1,658,659]]],[64,6,6,659,665,[[1166,6,6,659,665]]],[65,24,22,665,687,[[1167,1,1,665,666],[1170,2,2,666,668],[1173,1,1,668,669],[1177,3,3,669,672],[1180,1,1,672,673],[1181,2,2,673,675],[1182,2,2,675,677],[1183,2,1,677,678],[1184,1,1,678,679],[1185,4,3,679,682],[1187,1,1,682,683],[1188,4,4,683,687]]]],[23164,23166,23168,23182,23184,23188,23195,23216,23219,23267,23306,23337,23338,23347,23351,23353,23366,23370,23407,23417,23441,23442,23484,23497,23566,23590,23625,23627,23655,23658,23660,23694,23704,23715,23748,23752,23753,23754,23758,23759,23761,23800,23822,23823,23825,23829,23835,23856,23866,23868,23909,23915,23916,23917,23957,23999,24002,24003,24005,24007,24019,24026,24027,24028,24029,24030,24031,24032,24034,24045,24052,24076,24139,24192,24197,24201,24218,24288,24383,24491,24562,24643,24649,24650,24682,24684,24702,24703,24709,24710,24737,24752,24892,24893,24899,24902,24904,24908,24909,24910,24918,24921,24925,24931,24936,24938,24939,24951,24959,24961,24969,24982,24984,24988,24995,24996,24997,24999,25011,25012,25029,25071,25075,25081,25082,25115,25119,25124,25151,25192,25201,25208,25226,25355,25358,25360,25362,25364,25365,25380,25384,25390,25403,25406,25444,25495,25496,25500,25501,25502,25504,25505,25506,25526,25533,25541,25543,25553,25574,25575,25576,25623,25625,25628,25633,25656,25657,25688,25694,25729,25739,25747,25749,25751,25756,25762,25764,25765,25769,25792,25794,25816,25821,25823,25895,25897,25902,25913,25925,25977,25994,26025,26067,26157,26167,26171,26175,26205,26217,26280,26291,26325,26392,26476,26478,26525,26526,26535,26544,26550,26555,26557,26562,26593,26601,26618,26636,26639,26643,26644,26646,26655,26666,26667,26673,26676,26690,26714,26719,26869,26880,26882,26885,26887,26892,26895,26905,26910,26913,26914,26915,26918,26919,26929,26944,26947,26969,26970,26974,26983,26985,26988,26996,27015,27018,27048,27051,27055,27068,27073,27078,27146,27147,27149,27153,27165,27175,27176,27192,27200,27201,27202,27215,27217,27221,27222,27226,27227,27229,27231,27233,27243,27245,27247,27251,27258,27263,27273,27295,27307,27315,27323,27324,27327,27328,27330,27331,27344,27348,27354,27360,27364,27372,27373,27374,27409,27410,27411,27417,27437,27453,27459,27468,27477,27478,27493,27497,27498,27499,27502,27513,27514,27515,27547,27550,27565,27566,27582,27590,27595,27598,27602,27605,27645,27647,27650,27661,27677,27678,27684,27712,27714,27720,27723,27745,27822,27838,27930,27933,27937,28030,28046,28048,28058,28068,28079,28091,28116,28155,28183,28184,28197,28200,28201,28204,28212,28243,28256,28264,28280,28284,28286,28288,28291,28294,28309,28314,28333,28338,28344,28347,28348,28349,28354,28356,28358,28360,28365,28366,28370,28371,28372,28373,28394,28402,28410,28415,28430,28437,28438,28450,28452,28458,28459,28478,28480,28481,28484,28497,28499,28504,28509,28512,28519,28521,28522,28526,28532,28533,28541,28542,28545,28554,28588,28589,28593,28595,28611,28623,28626,28627,28629,28632,28637,28639,28699,28715,28749,28765,28775,28776,28783,28786,28795,28798,28799,28802,28803,28814,28836,28857,28858,28859,28864,28869,28873,28883,28885,28888,28915,28916,28937,28941,28951,28953,28979,28988,28989,29006,29020,29023,29030,29053,29057,29060,29076,29132,29172,29202,29205,29206,29208,29209,29221,29223,29250,29262,29265,29273,29277,29289,29312,29314,29321,29323,29324,29326,29333,29338,29341,29342,29344,29345,29346,29347,29358,29360,29361,29363,29375,29402,29410,29415,29420,29422,29429,29441,29443,29444,29446,29447,29452,29465,29467,29468,29475,29500,29533,29534,29535,29537,29539,29540,29541,29543,29549,29559,29561,29563,29566,29568,29585,29589,29598,29601,29602,29603,29604,29605,29609,29618,29619,29620,29623,29630,29633,29644,29648,29649,29650,29651,29656,29657,29658,29661,29662,29669,29674,29675,29677,29679,29681,29682,29683,29684,29690,29694,29696,29697,29698,29708,29710,29784,29791,29802,29803,29811,29817,29825,29827,29834,29841,29846,29849,29851,29864,29871,29878,29884,29887,29888,29892,29896,29941,29943,29954,29958,29963,29973,29980,30078,30085,30094,30100,30101,30102,30103,30149,30163,30217,30218,30226,30247,30261,30267,30273,30278,30294,30347,30352,30358,30361,30362,30364,30365,30368,30369,30377,30399,30402,30412,30430,30436,30439,30481,30487,30490,30493,30495,30509,30511,30520,30524,30530,30531,30532,30537,30540,30648,30676,30677,30681,30686,30689,30693,30705,30776,30779,30824,30880,30887,30889,30939,30949,30950,30959,30961,30989,31001,31018,31023,31033,31075,31085,31086,31100,31101]]],["+",[8,8,[[39,2,2,0,2,[[949,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[44,3,3,3,6,[[1059,2,2,3,5],[1060,1,1,5,6]]],[45,1,1,6,7,[[1071,1,1,6,7]]],[59,1,1,7,8,[[1152,1,1,7,8]]]],[23868,24076,24684,28288,28291,28333,28589,30412]]],["God",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27605]]],["LORD",[5,5,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[43,1,1,3,4,[[1019,1,1,3,4]]],[65,1,1,4,5,[[1185,1,1,4,5]]]],[23916,24709,25821,26983,31033]]],["LORDS",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31033]]],["Lord",[654,610,[[39,55,52,0,52,[[929,3,3,0,3],[930,3,3,3,6],[931,1,1,6,7],[932,2,2,7,9],[933,1,1,9,10],[935,4,2,10,12],[936,5,5,12,17],[937,2,2,17,19],[939,1,1,19,20],[940,1,1,20,21],[941,1,1,21,22],[942,2,2,22,24],[943,3,3,24,27],[944,1,1,27,28],[945,2,2,28,30],[946,2,2,30,32],[948,3,3,32,35],[949,2,2,35,37],[950,4,4,37,41],[951,1,1,41,42],[952,1,1,42,43],[953,7,6,43,49],[955,1,1,49,50],[956,2,2,50,52]]],[40,16,15,52,67,[[957,1,1,52,53],[958,1,1,53,54],[961,1,1,54,55],[963,1,1,55,56],[965,1,1,56,57],[967,3,3,57,60],[968,5,4,60,64],[969,1,1,64,65],[972,2,2,65,67]]],[41,88,82,67,149,[[973,17,17,67,84],[974,10,8,84,92],[975,1,1,92,93],[976,4,4,93,97],[977,3,3,97,100],[978,3,2,100,102],[979,3,3,102,105],[981,4,4,105,109],[982,6,6,109,115],[983,2,2,115,117],[984,2,2,117,119],[985,6,5,119,124],[986,1,1,124,125],[989,3,3,125,128],[990,2,2,128,130],[991,9,8,130,138],[992,3,3,138,141],[994,6,5,141,146],[995,1,1,146,147],[996,2,2,147,149]]],[42,43,41,149,190,[[997,1,1,149,150],[1000,1,1,150,151],[1002,3,3,151,154],[1004,1,1,154,155],[1005,2,2,155,157],[1007,8,8,157,165],[1008,3,2,165,167],[1009,7,7,167,174],[1010,3,3,174,177],[1016,6,6,177,183],[1017,8,7,183,190]]],[43,107,100,190,290,[[1018,3,3,190,193],[1019,7,7,193,200],[1020,2,2,200,202],[1021,3,3,202,205],[1022,3,3,205,208],[1024,7,7,208,215],[1025,5,5,215,220],[1026,16,13,220,233],[1027,4,4,233,237],[1028,8,7,237,244],[1029,4,4,244,248],[1030,7,7,248,255],[1031,2,2,255,257],[1032,6,5,257,262],[1033,5,5,262,267],[1034,2,2,267,269],[1035,4,3,269,272],[1036,4,4,272,276],[1037,4,4,276,280],[1038,3,3,280,283],[1039,5,4,283,287],[1040,1,1,287,288],[1043,1,1,288,289],[1045,1,1,289,290]]],[44,40,36,290,326,[[1046,2,2,290,292],[1049,2,2,292,294],[1050,3,3,294,297],[1051,2,2,297,299],[1052,1,1,299,300],[1053,1,1,300,301],[1054,2,2,301,303],[1055,4,4,303,307],[1056,2,2,307,309],[1057,2,2,309,311],[1058,1,1,311,312],[1059,6,3,312,315],[1060,2,2,315,317],[1061,10,9,317,326]]],[45,61,53,326,379,[[1062,7,7,326,333],[1063,2,2,333,335],[1064,2,2,335,337],[1065,4,4,337,341],[1066,3,2,341,343],[1067,5,4,343,347],[1068,11,9,347,356],[1069,1,1,356,357],[1070,5,4,357,361],[1071,1,1,361,362],[1072,6,4,362,366],[1073,2,2,366,368],[1075,2,2,368,370],[1076,5,4,370,374],[1077,5,5,374,379]]],[46,30,28,379,407,[[1078,3,3,379,382],[1079,1,1,382,383],[1080,5,3,383,386],[1081,3,3,386,389],[1082,3,3,389,392],[1083,2,2,392,394],[1085,4,4,394,398],[1087,3,3,398,401],[1088,2,2,401,403],[1089,2,2,403,405],[1090,2,2,405,407]]],[47,5,5,407,412,[[1091,1,1,407,408],[1095,1,1,408,409],[1096,3,3,409,412]]],[48,25,25,412,437,[[1097,4,4,412,416],[1098,1,1,416,417],[1099,2,2,417,419],[1100,3,3,419,422],[1101,7,7,422,429],[1102,8,8,429,437]]],[49,15,15,437,452,[[1103,2,2,437,439],[1104,4,4,439,443],[1105,3,3,443,446],[1106,6,6,446,452]]],[50,13,12,452,464,[[1107,3,3,452,455],[1108,1,1,455,456],[1109,7,6,456,462],[1110,2,2,462,464]]],[51,25,22,464,486,[[1111,5,4,464,468],[1112,2,2,468,470],[1113,4,4,470,474],[1114,8,6,474,480],[1115,6,6,480,486]]],[52,21,19,486,505,[[1116,7,6,486,492],[1117,5,5,492,497],[1118,9,8,497,505]]],[53,8,8,505,513,[[1119,4,4,505,509],[1123,1,1,509,510],[1124,3,3,510,513]]],[54,17,16,513,529,[[1125,5,4,513,517],[1126,5,5,517,522],[1127,1,1,522,523],[1128,6,6,523,529]]],[55,1,1,529,530,[[1129,1,1,529,530]]],[56,6,5,530,535,[[1132,6,5,530,535]]],[57,17,16,535,551,[[1133,1,1,535,536],[1134,1,1,536,537],[1139,2,2,537,539],[1140,5,5,539,544],[1142,3,2,544,546],[1144,3,3,546,549],[1145,2,2,549,551]]],[58,14,13,551,564,[[1146,3,3,551,554],[1147,1,1,554,555],[1149,2,2,555,557],[1150,8,7,557,564]]],[59,6,5,564,569,[[1151,2,2,564,566],[1152,1,1,566,567],[1153,3,2,567,569]]],[60,14,14,569,583,[[1156,5,5,569,574],[1157,3,3,574,577],[1158,6,6,577,583]]],[62,1,1,583,584,[[1164,1,1,583,584]]],[64,6,6,584,590,[[1166,6,6,584,590]]],[65,20,20,590,610,[[1167,1,1,590,591],[1170,2,2,591,593],[1177,3,3,593,596],[1180,1,1,596,597],[1181,2,2,597,599],[1182,2,2,599,601],[1183,1,1,601,602],[1184,1,1,602,603],[1185,2,2,603,605],[1187,1,1,605,606],[1188,4,4,606,610]]]],[23164,23166,23168,23182,23184,23188,23195,23216,23219,23267,23337,23338,23347,23351,23353,23366,23370,23407,23417,23484,23497,23590,23625,23627,23655,23658,23660,23694,23704,23715,23748,23753,23822,23823,23825,23829,23835,23909,23915,23916,23917,23957,23999,24019,24028,24030,24032,24045,24052,24139,24197,24201,24218,24288,24383,24491,24562,24643,24649,24650,24702,24703,24709,24710,24737,24892,24893,24899,24902,24904,24908,24909,24910,24918,24921,24925,24931,24936,24938,24939,24951,24959,24961,24969,24982,24984,24988,24995,24996,24997,25011,25012,25029,25071,25075,25081,25082,25115,25119,25124,25151,25192,25201,25208,25226,25355,25358,25360,25362,25364,25365,25380,25384,25390,25403,25406,25444,25500,25501,25526,25533,25541,25543,25553,25575,25656,25657,25688,25694,25729,25739,25747,25749,25751,25756,25762,25765,25769,25816,25821,25823,25895,25897,25902,25913,25925,25977,25994,26025,26067,26157,26280,26291,26325,26392,26476,26478,26525,26526,26535,26544,26550,26555,26557,26562,26593,26618,26636,26639,26643,26644,26655,26666,26667,26673,26676,26690,26869,26880,26885,26887,26892,26895,26905,26910,26913,26914,26915,26918,26919,26929,26944,26947,26969,26970,26974,26983,26985,26988,26996,27015,27018,27048,27051,27055,27068,27073,27078,27146,27147,27149,27153,27165,27175,27176,27192,27200,27201,27202,27215,27217,27221,27222,27226,27227,27229,27231,27233,27243,27245,27247,27251,27258,27263,27273,27295,27307,27315,27323,27324,27327,27328,27330,27331,27344,27348,27354,27360,27364,27372,27373,27374,27409,27410,27411,27417,27437,27453,27459,27468,27477,27478,27493,27497,27498,27514,27515,27547,27550,27565,27566,27582,27590,27595,27598,27602,27645,27647,27650,27661,27677,27678,27684,27712,27714,27720,27723,27745,27838,27930,27933,27937,28030,28046,28048,28058,28068,28079,28091,28116,28155,28183,28184,28197,28200,28201,28204,28212,28243,28256,28264,28280,28286,28288,28294,28309,28314,28338,28344,28347,28348,28349,28354,28356,28358,28360,28365,28366,28370,28371,28372,28373,28394,28402,28410,28415,28430,28437,28438,28450,28452,28458,28459,28478,28480,28481,28484,28497,28499,28504,28509,28512,28519,28521,28522,28526,28533,28541,28542,28545,28554,28588,28611,28623,28627,28632,28637,28639,28699,28715,28749,28765,28775,28776,28783,28786,28795,28798,28799,28802,28803,28814,28836,28857,28858,28859,28864,28869,28873,28883,28885,28888,28915,28916,28937,28941,28951,28953,28979,28988,28989,29006,29020,29023,29030,29053,29057,29060,29172,29202,29205,29206,29208,29209,29221,29223,29250,29262,29265,29273,29277,29289,29312,29314,29321,29323,29324,29326,29333,29338,29341,29344,29345,29347,29358,29360,29361,29363,29375,29402,29410,29415,29420,29422,29429,29441,29443,29444,29446,29447,29452,29465,29467,29468,29475,29500,29533,29534,29535,29537,29540,29541,29549,29559,29561,29563,29566,29568,29585,29589,29598,29601,29602,29603,29604,29605,29609,29618,29619,29620,29623,29630,29633,29644,29648,29649,29650,29651,29656,29657,29658,29661,29662,29669,29674,29675,29677,29679,29681,29682,29683,29684,29690,29694,29696,29697,29698,29708,29710,29784,29791,29802,29803,29811,29817,29825,29827,29834,29841,29846,29849,29851,29864,29871,29878,29884,29887,29888,29892,29896,29941,29943,29954,29958,29963,29973,29980,30078,30085,30094,30100,30101,30102,30103,30149,30163,30217,30218,30226,30247,30261,30267,30273,30278,30294,30347,30352,30358,30361,30362,30364,30365,30368,30369,30377,30399,30402,30436,30439,30481,30487,30490,30493,30495,30509,30511,30520,30524,30530,30531,30532,30537,30540,30648,30676,30677,30681,30686,30689,30693,30705,30776,30779,30880,30887,30889,30939,30949,30950,30959,30961,30989,31001,31018,31023,31075,31085,31086,31100,31101]]],["Lord's",[9,9,[[41,1,1,0,1,[[974,1,1,0,1]]],[44,1,1,1,2,[[1059,1,1,1,2]]],[45,6,6,2,8,[[1068,1,1,2,3],[1071,3,3,3,6],[1072,2,2,6,8]]],[47,1,1,8,9,[[1091,1,1,8,9]]]],[24999,28288,28509,28588,28593,28595,28626,28629,29076]]],["Master",[2,2,[[48,1,1,0,1,[[1102,1,1,0,1]]],[50,1,1,1,2,[[1110,1,1,1,2]]]],[29346,29543]]],["Masters",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29543]]],["Sir",[10,10,[[39,2,2,0,2,[[941,1,1,0,1],[955,1,1,1,2]]],[42,7,7,2,9,[[1000,4,4,2,6],[1001,1,1,6,7],[1008,1,1,7,8],[1016,1,1,8,9]]],[65,1,1,9,10,[[1173,1,1,9,10]]]],[23566,24192,26167,26171,26175,26205,26217,26601,26882,30824]]],["Sirs",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27513]]],["lord",[39,37,[[39,19,17,0,17,[[938,2,2,0,2],[946,5,5,2,7],[948,1,1,7,8],[949,1,1,8,9],[952,4,4,9,13],[953,6,4,13,17]]],[40,1,1,17,18,[[968,1,1,17,18]]],[41,13,13,18,31,[[984,6,6,18,24],[986,2,2,24,26],[988,3,3,26,29],[992,2,2,29,31]]],[42,3,3,31,34,[[1009,1,1,31,32],[1011,2,2,32,34]]],[43,1,1,34,35,[[1042,1,1,34,35]]],[47,1,1,35,36,[[1094,1,1,35,36]]],[59,1,1,36,37,[[1153,1,1,36,37]]]],[23441,23442,23752,23754,23758,23759,23761,23800,23866,24002,24003,24005,24007,24027,24029,24031,24034,24682,25495,25496,25501,25502,25504,25505,25574,25576,25623,25625,25628,25792,25794,26646,26714,26719,27822,29132,30430]]],["lord's",[3,3,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[988,1,1,2,3]]]],[24026,25506,25625]]],["lords",[2,2,[[45,1,1,0,1,[[1069,1,1,0,1]]],[65,1,1,1,2,[[1183,1,1,1,2]]]],[28532,30989]]],["master",[2,2,[[40,1,1,0,1,[[969,1,1,0,1]]],[44,1,1,1,2,[[1059,1,1,1,2]]]],[24752,28284]]],["masters",[7,7,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[43,2,2,2,4,[[1033,2,2,2,4]]],[48,2,2,4,6,[[1102,2,2,4,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]]],[23306,25633,27499,27502,29342,29346,29539]]],["masters'",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23660]]],["owners",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25764]]],["sir",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23856]]]]},{"k":"G2963","v":[["*",[4,4,[[48,1,1,0,1,[[1097,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[29227,29481,30510,30680]]],["dominion",[2,2,[[48,1,1,0,1,[[1097,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[29227,30680]]],["dominions",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29481]]],["government",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30510]]]]},{"k":"G2964","v":[["*",[2,2,[[46,1,1,0,1,[[1079,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]]],[28832,29117]]],["confirm",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28832]]],["confirmed",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29117]]]]},{"k":"G2965","v":[["*",[5,5,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]],[65,1,1,4,5,[[1188,1,1,4,5]]]],[23322,25641,29423,30522,31095]]],["dog",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30522]]],["dogs",[4,4,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]],[65,1,1,3,4,[[1188,1,1,3,4]]]],[23322,25641,29423,31095]]]]},{"k":"G2966","v":[["carcases",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30012]]]]},{"k":"G2967","v":[["*",[23,23,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,3,3,1,4,[[965,2,2,1,3],[966,1,1,3,4]]],[41,6,6,4,10,[[978,1,1,4,5],[981,2,2,5,7],[983,1,1,7,8],[990,1,1,8,9],[995,1,1,9,10]]],[43,6,6,10,16,[[1025,1,1,10,11],[1027,1,1,11,12],[1028,1,1,12,13],[1033,1,1,13,14],[1041,1,1,14,15],[1044,1,1,15,16]]],[44,1,1,16,17,[[1046,1,1,16,17]]],[45,1,1,17,18,[[1075,1,1,17,18]]],[51,1,1,18,19,[[1112,1,1,18,19]]],[53,1,1,19,20,[[1122,1,1,19,20]]],[57,1,1,20,21,[[1139,1,1,20,21]]],[60,1,1,21,22,[[1157,1,1,21,22]]],[63,1,1,22,23,[[1165,1,1,22,23]]]],[23776,24576,24577,24602,25175,25350,25351,25457,25704,25937,27212,27306,27324,27489,27792,27898,27943,28717,29586,29750,30087,30516,30668]]],["+",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27306]]],["Forbid",[2,2,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[24577,25351]]],["Forbidding",[2,2,[[51,1,1,0,1,[[1112,1,1,0,1]]],[53,1,1,1,2,[[1122,1,1,1,2]]]],[29586,29750]]],["forbad",[3,3,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[24576,25350,30516]]],["forbid",[6,6,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,2,2,2,4,[[978,1,1,2,3],[990,1,1,3,4]]],[43,1,1,4,5,[[1041,1,1,4,5]]],[45,1,1,5,6,[[1075,1,1,5,6]]]],[23776,24602,25175,25704,27792,28717]]],["forbidden",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27489]]],["forbiddeth",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30668]]],["forbidding",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25937]]],["hinder",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27212]]],["hindered",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25457]]],["kept",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27898]]],["let",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27943]]],["suffered",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30087]]],["withstand",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27324]]]]},{"k":"G2968","v":[["*",[28,27,[[39,4,4,0,4,[[937,1,1,0,1],[938,1,1,1,2],[942,1,1,2,3],[949,1,1,3,4]]],[40,8,7,4,11,[[962,3,3,4,7],[964,4,3,7,10],[967,1,1,10,11]]],[41,12,12,11,23,[[977,1,1,11,12],[980,1,1,12,13],[981,4,4,13,17],[982,1,1,17,18],[985,1,1,18,19],[989,1,1,19,20],[991,1,1,20,21],[996,2,2,21,23]]],[42,3,3,23,26,[[1003,1,1,23,24],[1007,2,2,24,26]]],[43,1,1,26,27,[[1025,1,1,26,27]]]],[23414,23428,23612,23828,24413,24443,24463,24523,24526,24527,24642,25124,25246,25307,25313,25353,25357,25401,25540,25663,25761,26004,26019,26370,26524,26553,27201]]],["town",[8,7,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,3,2,1,3,[[964,3,2,1,3]]],[41,1,1,3,4,[[977,1,1,3,4]]],[42,3,3,4,7,[[1003,1,1,4,5],[1007,2,2,5,7]]]],[23428,24523,24526,25124,26370,26524,26553]]],["towns",[3,3,[[40,1,1,0,1,[[964,1,1,0,1]]],[41,2,2,1,3,[[981,2,2,1,3]]]],[24527,25307,25313]]],["village",[10,10,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,8,8,2,10,[[980,1,1,2,3],[981,2,2,3,5],[982,1,1,5,6],[989,1,1,6,7],[991,1,1,7,8],[996,2,2,8,10]]]],[23828,24642,25246,25353,25357,25401,25663,25761,26004,26019]]],["villages",[7,7,[[39,2,2,0,2,[[937,1,1,0,1],[942,1,1,1,2]]],[40,3,3,2,5,[[962,3,3,2,5]]],[41,1,1,5,6,[[985,1,1,5,6]]],[43,1,1,6,7,[[1025,1,1,6,7]]]],[23414,23612,24413,24443,24463,25540,27201]]]]},{"k":"G2969","v":[["towns",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24253]]]]},{"k":"G2970","v":[["*",[3,3,[[44,1,1,0,1,[[1058,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[28279,29183,30449]]],["revellings",[2,2,[[47,1,1,0,1,[[1095,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[29183,30449]]],["rioting",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28279]]]]},{"k":"G2971","v":[["gnat",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23942]]]]},{"k":"G2972","v":[["Coos",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27665]]]]},{"k":"G2973","v":[["Cosam",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25053]]]]},{"k":"G2974","v":[["*",[14,12,[[39,7,6,0,6,[[937,2,2,0,2],[939,1,1,2,3],[940,2,1,3,4],[943,2,2,4,6]]],[40,3,3,6,9,[[963,2,2,6,8],[965,1,1,8,9]]],[41,4,3,9,12,[[973,1,1,9,10],[979,1,1,10,11],[983,2,1,11,12]]]],[23411,23412,23464,23511,23663,23664,24495,24500,24563,24915,25217,25419]]],["deaf",[5,5,[[39,1,1,0,1,[[939,1,1,0,1]]],[40,3,3,1,4,[[963,2,2,1,3],[965,1,1,3,4]]],[41,1,1,4,5,[[979,1,1,4,5]]]],[23464,24495,24500,24563,25217]]],["dumb",[8,6,[[39,6,5,0,5,[[937,2,2,0,2],[940,2,1,2,3],[943,2,2,3,5]]],[41,2,1,5,6,[[983,2,1,5,6]]]],[23411,23412,23511,23663,23664,25419]]],["speechless",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24915]]]]},{"k":"G2975","v":[["*",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]],[43,1,1,2,3,[[1018,1,1,2,3]]],[60,1,1,3,4,[[1156,1,1,3,4]]]],[24902,26849,26940,30480]]],["lots",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26849]]],["obtained",[2,2,[[43,1,1,0,1,[[1018,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[26940,30480]]],["was",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24902]]]]},{"k":"G2976","v":[["*",[15,15,[[41,4,4,0,4,[[988,4,4,0,4]]],[42,11,11,4,15,[[1007,6,6,4,10],[1008,5,5,10,15]]]],[25640,25643,25644,25645,26524,26525,26528,26534,26537,26566,26581,26582,26589,26590,26597]]],["+",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26590]]],["Lazarus",[14,14,[[41,4,4,0,4,[[988,4,4,0,4]]],[42,10,10,4,14,[[1007,6,6,4,10],[1008,4,4,10,14]]]],[25640,25643,25644,25645,26524,26525,26528,26534,26537,26566,26581,26582,26589,26597]]]]},{"k":"G2977","v":[["*",[4,4,[[39,2,2,0,2,[[929,1,1,0,1],[930,1,1,1,2]]],[42,1,1,2,3,[[1007,1,1,2,3]]],[43,1,1,3,4,[[1033,1,1,3,4]]]],[23163,23176,26551,27520]]],["privily",[3,3,[[39,2,2,0,2,[[929,1,1,0,1],[930,1,1,1,2]]],[43,1,1,2,3,[[1033,1,1,2,3]]]],[23163,23176,27520]]],["secretly",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26551]]]]},{"k":"G2978","v":[["*",[3,3,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[24360,25268,30517]]],["storm",[2,2,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24360,25268]]],["tempest",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30517]]]]},{"k":"G2979","v":[["kick",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1043,1,1,1,2]]]],[27221,27837]]]]},{"k":"G2980","v":[["*",[295,271,[[39,26,21,0,21,[[937,2,2,0,2],[938,4,2,2,4],[940,7,5,4,9],[941,6,5,9,14],[942,1,1,14,15],[943,1,1,15,16],[945,1,1,16,17],[951,1,1,17,18],[954,2,2,18,20],[956,1,1,20,21]]],[40,19,17,21,38,[[957,1,1,21,22],[958,2,2,22,24],[960,2,2,24,26],[961,2,2,26,28],[962,1,1,28,29],[963,2,2,29,31],[964,1,1,31,32],[965,1,1,32,33],[969,3,1,33,34],[970,2,2,34,36],[972,2,2,36,38]]],[41,30,30,38,68,[[973,7,7,38,45],[974,6,6,45,51],[976,1,1,51,52],[977,2,2,52,54],[978,1,1,54,55],[979,1,1,55,56],[980,1,1,56,57],[981,1,1,57,58],[983,2,2,58,60],[984,1,1,60,61],[994,2,2,61,63],[996,5,5,63,68]]],[42,59,51,68,119,[[997,1,1,68,69],[999,3,3,69,72],[1000,3,2,72,74],[1002,1,1,74,75],[1003,5,5,75,80],[1004,10,9,80,89],[1005,3,3,89,92],[1006,1,1,92,93],[1008,8,6,93,99],[1010,4,3,99,102],[1011,3,3,102,105],[1012,10,8,105,113],[1013,2,2,113,115],[1014,4,3,115,118],[1015,1,1,118,119]]],[43,62,62,119,181,[[1019,5,5,119,124],[1020,3,3,124,127],[1021,5,5,127,132],[1022,2,2,132,134],[1023,3,3,134,137],[1024,3,3,137,140],[1025,2,2,140,142],[1026,3,3,142,145],[1027,5,5,145,150],[1028,4,4,150,154],[1030,2,2,154,156],[1031,3,3,156,159],[1033,4,4,159,163],[1034,1,1,163,164],[1035,2,2,164,166],[1036,1,1,166,167],[1037,1,1,167,168],[1038,1,1,168,169],[1039,2,2,169,171],[1040,3,3,171,174],[1043,4,4,174,178],[1044,1,1,178,179],[1045,2,2,179,181]]],[44,3,3,181,184,[[1048,1,1,181,182],[1052,1,1,182,183],[1060,1,1,183,184]]],[45,33,27,184,211,[[1063,3,3,184,187],[1064,1,1,187,188],[1070,1,1,188,189],[1073,2,2,189,191],[1074,2,2,191,193],[1075,24,18,193,211]]],[46,10,8,211,219,[[1079,1,1,211,212],[1081,2,1,212,213],[1084,1,1,213,214],[1088,3,2,214,216],[1089,2,2,216,218],[1090,1,1,218,219]]],[48,3,3,219,222,[[1100,1,1,219,220],[1101,1,1,220,221],[1102,1,1,221,222]]],[49,1,1,222,223,[[1103,1,1,222,223]]],[50,2,2,223,225,[[1110,2,2,223,225]]],[51,4,4,225,229,[[1111,1,1,225,226],[1112,3,3,226,229]]],[53,1,1,229,230,[[1123,1,1,229,230]]],[55,2,2,230,232,[[1130,2,2,230,232]]],[57,16,16,232,248,[[1133,2,2,232,234],[1134,3,3,234,237],[1135,1,1,237,238],[1136,1,1,238,239],[1137,1,1,239,240],[1138,1,1,240,241],[1139,1,1,241,242],[1141,1,1,242,243],[1143,2,2,243,245],[1144,2,2,245,247],[1145,1,1,247,248]]],[58,3,3,248,251,[[1146,1,1,248,249],[1147,1,1,249,250],[1150,1,1,250,251]]],[59,2,2,251,253,[[1153,1,1,251,252],[1154,1,1,252,253]]],[60,2,2,253,255,[[1156,1,1,253,254],[1158,1,1,254,255]]],[61,1,1,255,256,[[1162,1,1,255,256]]],[62,1,1,256,257,[[1164,1,1,256,257]]],[63,1,1,257,258,[[1165,1,1,257,258]]],[64,2,2,258,260,[[1166,2,2,258,260]]],[65,12,11,260,271,[[1167,1,1,260,261],[1170,1,1,261,262],[1176,4,3,262,265],[1179,3,3,265,268],[1183,1,1,268,269],[1187,2,2,269,271]]]],[23397,23412,23436,23437,23511,23523,23525,23535,23536,23542,23549,23552,23572,23573,23624,23664,23705,23919,24067,24101,24213,24249,24262,24267,24356,24357,24399,24400,24457,24498,24500,24532,24544,24728,24763,24797,24890,24892,24912,24913,24915,24938,24948,24957,24963,24990,24991,24993,25006,25011,25023,25104,25111,25128,25191,25210,25294,25312,25419,25442,25462,25911,25924,25997,26016,26023,26027,26035,26081,26131,26151,26154,26182,26183,26320,26341,26345,26346,26354,26374,26393,26401,26406,26407,26409,26411,26419,26421,26425,26461,26469,26477,26487,26609,26616,26621,26628,26629,26630,26678,26693,26698,26702,26710,26721,26727,26730,26732,26739,26744,26751,26755,26759,26760,26772,26805,26806,26808,26835,26953,26955,26956,26960,26980,27017,27018,27020,27023,27039,27042,27051,27053,27079,27099,27111,27112,27114,27122,27154,27160,27201,27202,27222,27243,27245,27265,27266,27291,27303,27305,27321,27322,27326,27327,27404,27408,27415,27423,27439,27489,27496,27497,27515,27542,27566,27582,27591,27656,27703,27713,27714,27741,27743,27752,27837,27845,27849,27854,27880,27920,27924,28010,28092,28321,28400,28401,28407,28411,28548,28637,28664,28666,28676,28680,28681,28682,28683,28684,28687,28689,28691,28696,28697,28699,28701,28705,28706,28707,28712,28713,28717,28841,28872,28930,29006,29012,29026,29041,29046,29297,29323,29357,29375,29545,29546,29568,29572,29574,29586,29776,29909,29923,29964,29965,29979,29980,29982,30000,30022,30035,30053,30078,30124,30176,30190,30236,30237,30248,30285,30305,30364,30434,30457,30500,30538,30608,30657,30672,30687,30688,30709,30769,30864,30865,30869,30913,30919,30923,30976,31062,31068]]],["+",[2,2,[[43,1,1,0,1,[[1026,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[27245,28687]]],["Say",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28548]]],["Speakest",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26835]]],["Speaking",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29323]]],["after",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30000]]],["of",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24763]]],["preach",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27489]]],["preached",[4,4,[[40,1,1,0,1,[[958,1,1,0,1]]],[43,3,3,1,4,[[1025,1,1,1,2],[1030,1,1,2,3],[1031,1,1,3,4]]]],[24262,27201,27404,27439]]],["preaching",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27326]]],["said",[7,7,[[42,4,4,0,4,[[1004,1,1,0,1],[1012,1,1,1,2],[1014,2,2,2,4]]],[43,1,1,4,5,[[1040,1,1,4,5]]],[57,2,2,5,7,[[1137,1,1,5,6],[1143,1,1,6,7]]]],[26406,26732,26805,26806,27741,30035,30190]]],["saith",[2,2,[[42,1,1,0,1,[[1012,1,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]]],[26744,28010]]],["say",[5,5,[[40,1,1,0,1,[[965,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]],[43,3,3,2,5,[[1020,1,1,2,3],[1040,1,1,3,4],[1043,1,1,4,5]]]],[24544,26407,27018,27752,27845]]],["spake",[71,70,[[39,12,11,0,11,[[937,2,2,0,2],[940,1,1,2,3],[941,4,3,3,6],[942,1,1,6,7],[945,1,1,7,8],[951,1,1,8,9],[954,1,1,9,10],[956,1,1,10,11]]],[40,6,6,11,17,[[960,2,2,11,13],[961,1,1,13,14],[963,1,1,14,15],[964,1,1,15,16],[970,1,1,16,17]]],[41,14,14,17,31,[[973,3,3,17,20],[974,2,2,20,22],[980,1,1,22,23],[981,1,1,23,24],[983,2,2,24,26],[994,2,2,26,28],[996,3,3,28,31]]],[42,12,12,31,43,[[1003,2,2,31,33],[1004,3,3,33,36],[1005,1,1,36,37],[1006,1,1,37,38],[1008,3,3,38,41],[1013,1,1,41,42],[1014,1,1,42,43]]],[43,18,18,43,61,[[1019,1,1,43,44],[1021,2,2,44,46],[1023,1,1,46,47],[1024,2,2,47,49],[1025,1,1,49,50],[1027,2,2,50,52],[1028,1,1,52,53],[1031,1,1,53,54],[1033,2,2,54,56],[1035,1,1,56,57],[1036,1,1,57,58],[1039,1,1,58,59],[1045,2,2,59,61]]],[45,2,2,61,63,[[1074,1,1,61,62],[1075,1,1,62,63]]],[46,1,1,63,64,[[1084,1,1,63,64]]],[57,2,2,64,66,[[1133,1,1,64,65],[1139,1,1,65,66]]],[60,1,1,66,67,[[1156,1,1,66,67]]],[65,3,3,67,70,[[1167,1,1,67,68],[1176,1,1,68,69],[1179,1,1,69,70]]]],[23397,23412,23511,23542,23572,23573,23624,23705,23919,24101,24213,24356,24357,24399,24498,24532,24797,24948,24957,24963,25011,25023,25294,25312,25419,25442,25911,25924,25997,26027,26035,26341,26374,26393,26401,26411,26469,26487,26609,26616,26621,26760,26805,26980,27023,27053,27111,27122,27154,27202,27266,27303,27327,27415,27496,27515,27582,27591,27713,27920,27924,28676,28683,28930,29964,30078,30500,30709,30869,30919]]],["speak",[102,95,[[39,9,8,0,8,[[938,3,2,0,2],[940,4,4,2,6],[941,1,1,6,7],[943,1,1,7,8]]],[40,7,5,8,13,[[957,1,1,8,9],[958,1,1,9,10],[963,1,1,10,11],[969,3,1,11,12],[972,1,1,12,13]]],[41,5,5,13,18,[[973,3,3,13,16],[976,1,1,16,17],[979,1,1,17,18]]],[42,17,14,18,32,[[997,1,1,18,19],[999,1,1,19,20],[1000,1,1,20,21],[1002,1,1,21,22],[1003,1,1,22,23],[1004,2,2,23,25],[1005,1,1,25,26],[1008,3,2,26,28],[1010,2,1,28,29],[1012,3,2,29,31],[1013,1,1,31,32]]],[43,18,18,32,50,[[1019,4,4,32,36],[1021,3,3,36,39],[1022,2,2,39,41],[1023,2,2,41,43],[1027,2,2,43,45],[1028,1,1,45,46],[1031,1,1,46,47],[1035,1,1,47,48],[1038,1,1,48,49],[1043,1,1,49,50]]],[44,2,2,50,52,[[1052,1,1,50,51],[1060,1,1,51,52]]],[45,17,17,52,69,[[1063,3,3,52,55],[1064,1,1,55,56],[1073,1,1,56,57],[1074,1,1,57,58],[1075,11,11,58,69]]],[46,6,5,69,74,[[1079,1,1,69,70],[1081,1,1,70,71],[1088,3,2,71,73],[1089,1,1,73,74]]],[48,2,2,74,76,[[1100,1,1,74,75],[1102,1,1,75,76]]],[49,1,1,76,77,[[1103,1,1,76,77]]],[50,2,2,77,79,[[1110,2,2,77,79]]],[51,4,4,79,83,[[1111,1,1,79,80],[1112,3,3,80,83]]],[55,2,2,83,85,[[1130,2,2,83,85]]],[57,2,2,85,87,[[1134,1,1,85,86],[1138,1,1,86,87]]],[58,2,2,87,89,[[1146,1,1,87,88],[1147,1,1,88,89]]],[59,2,2,89,91,[[1153,1,1,89,90],[1154,1,1,90,91]]],[61,1,1,91,92,[[1162,1,1,91,92]]],[62,1,1,92,93,[[1164,1,1,92,93]]],[63,1,1,93,94,[[1165,1,1,93,94]]],[65,1,1,94,95,[[1179,1,1,94,95]]]],[23436,23437,23523,23525,23535,23536,23552,23664,24249,24267,24500,24728,24890,24912,24913,24915,25104,25210,26081,26131,26182,26320,26345,26409,26419,26461,26629,26630,26678,26739,26751,26772,26953,26955,26956,26960,27039,27042,27051,27079,27099,27112,27114,27291,27305,27322,27423,27566,27703,27849,28092,28321,28400,28401,28407,28411,28664,28666,28684,28696,28697,28699,28701,28705,28706,28707,28712,28713,28717,28841,28872,29006,29012,29041,29297,29357,29375,29545,29546,29568,29572,29574,29586,29909,29923,29982,30053,30285,30305,30434,30457,30608,30657,30672,30923]]],["speakest",[3,3,[[39,1,1,0,1,[[941,1,1,0,1]]],[42,1,1,1,2,[[1012,1,1,1,2]]],[43,1,1,2,3,[[1034,1,1,2,3]]]],[23549,26755,27542]]],["speaketh",[23,19,[[39,2,2,0,2,[[938,1,1,0,1],[940,1,1,1,2]]],[41,2,2,2,4,[[977,1,1,2,3],[978,1,1,3,4]]],[42,6,5,4,9,[[999,2,2,4,6],[1003,2,2,6,8],[1004,2,1,8,9]]],[45,9,6,9,15,[[1075,9,6,9,15]]],[57,3,3,15,18,[[1143,1,1,15,16],[1144,2,2,16,18]]],[64,1,1,18,19,[[1166,1,1,18,19]]]],[23437,23523,25128,25191,26151,26154,26346,26354,26425,28680,28681,28682,28683,28689,28691,30176,30236,30237,30688]]],["speaking",[10,10,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,3,3,1,4,[[1024,1,1,1,2],[1037,1,1,2,3],[1043,1,1,3,4]]],[45,2,2,4,6,[[1073,1,1,4,5],[1075,1,1,5,6]]],[46,1,1,6,7,[[1090,1,1,6,7]]],[53,1,1,7,8,[[1123,1,1,7,8]]],[60,1,1,8,9,[[1158,1,1,8,9]]],[65,1,1,9,10,[[1179,1,1,9,10]]]],[25111,27160,27656,27837,28637,28684,29046,29776,30538,30913]]],["spoken",[31,31,[[40,2,2,0,2,[[961,1,1,0,1],[972,1,1,1,2]]],[41,3,3,2,5,[[974,1,1,2,3],[984,1,1,3,4],[996,1,1,4,5]]],[42,10,10,5,15,[[1008,2,2,5,7],[1010,1,1,7,8],[1011,3,3,8,11],[1012,3,3,11,14],[1014,1,1,14,15]]],[43,6,6,15,21,[[1020,2,2,15,17],[1026,1,1,17,18],[1030,1,1,18,19],[1033,1,1,19,20],[1040,1,1,20,21]]],[45,1,1,21,22,[[1075,1,1,21,22]]],[46,1,1,22,23,[[1081,1,1,22,23]]],[57,6,6,23,29,[[1133,1,1,23,24],[1134,2,2,24,26],[1136,1,1,26,27],[1141,1,1,27,28],[1145,1,1,28,29]]],[58,1,1,29,30,[[1150,1,1,29,30]]],[64,1,1,30,31,[[1166,1,1,30,31]]]],[24400,24892,25006,25462,26016,26628,26629,26693,26702,26710,26721,26727,26751,26759,26808,27017,27020,27243,27408,27497,27743,28687,28872,29965,29979,29980,30022,30124,30248,30364,30687]]],["talk",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26698]]],["talked",[8,8,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,1,1,2,3,[[996,1,1,2,3]]],[42,1,1,3,4,[[1000,1,1,3,4]]],[43,1,1,4,5,[[1043,1,1,4,5]]],[65,3,3,5,8,[[1183,1,1,5,6],[1187,2,2,6,8]]]],[23535,24457,26023,26183,27854,30976,31062,31068]]],["talkest",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26183]]],["talketh",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26477]]],["talking",[1,1,[[65,1,1,0,1,[[1170,1,1,0,1]]]],[30769]]],["tell",[2,2,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]]],[27265,27321]]],["told",[10,10,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,4,4,1,5,[[973,1,1,1,2],[974,3,3,2,5]]],[42,2,2,5,7,[[1004,1,1,5,6],[1012,1,1,6,7]]],[43,3,3,7,10,[[1026,1,1,7,8],[1039,1,1,8,9],[1044,1,1,9,10]]]],[24067,24938,24990,24991,24993,26421,26730,27222,27714,27880]]],["utter",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29026]]],["uttered",[3,2,[[65,3,2,0,2,[[1176,3,2,0,2]]]],[30864,30865]]]]},{"k":"G2981","v":[["*",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,2,2,2,4,[[1000,1,1,2,3],[1004,1,1,3,4]]]],[24127,24824,26198,26424]]],["saying",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26198]]],["speech",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]]],[24127,24824,26424]]]]},{"k":"G2982","v":[["lama",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24175,24860]]]]},{"k":"G2983","v":[["*",[263,248,[[39,57,53,0,53,[[933,1,1,0,1],[935,1,1,1,2],[936,1,1,2,3],[938,4,3,3,6],[940,1,1,6,7],[941,3,3,7,10],[942,1,1,10,11],[943,2,2,11,13],[944,5,5,13,18],[945,3,3,18,21],[947,1,1,21,22],[948,5,4,22,26],[949,4,4,26,30],[950,1,1,30,31],[951,1,1,31,32],[953,9,8,32,40],[954,4,3,40,43],[955,8,8,43,51],[956,2,2,51,53]]],[40,20,19,53,72,[[960,1,1,53,54],[962,1,1,54,55],[963,1,1,55,56],[964,2,2,56,58],[965,1,1,58,59],[966,1,1,59,60],[967,1,1,60,61],[968,8,8,61,69],[970,3,2,69,71],[971,1,1,71,72]]],[41,21,21,72,93,[[977,2,2,72,74],[978,1,1,74,75],[979,1,1,75,76],[981,2,2,76,78],[983,1,1,78,79],[985,2,2,79,81],[991,2,2,81,83],[992,6,6,83,89],[994,2,2,89,91],[996,2,2,91,93]]],[42,45,40,93,133,[[997,2,2,93,95],[999,4,4,95,99],[1000,1,1,99,100],[1001,5,4,100,104],[1002,3,3,104,107],[1003,2,2,107,109],[1006,3,2,109,111],[1008,3,3,111,114],[1009,7,4,114,118],[1010,1,1,118,119],[1012,3,3,119,122],[1013,1,1,122,123],[1014,2,2,123,125],[1015,6,6,125,131],[1016,1,1,131,132],[1017,1,1,132,133]]],[43,30,30,133,163,[[1018,3,3,133,136],[1019,3,3,136,139],[1020,2,2,139,141],[1024,1,1,141,142],[1025,3,3,142,145],[1026,2,2,145,147],[1027,2,2,147,149],[1032,1,1,149,150],[1033,2,2,150,152],[1034,2,2,152,154],[1036,1,1,154,155],[1037,2,2,155,157],[1041,1,1,157,158],[1042,1,1,158,159],[1043,2,2,159,161],[1044,1,1,161,162],[1045,1,1,162,163]]],[44,9,8,163,171,[[1046,1,1,163,164],[1049,1,1,164,165],[1050,2,2,165,167],[1052,2,2,167,169],[1053,2,1,169,170],[1058,1,1,170,171]]],[45,12,10,171,181,[[1063,1,1,171,172],[1064,2,2,172,174],[1065,3,1,174,175],[1070,2,2,175,177],[1071,1,1,177,178],[1072,2,2,178,180],[1075,1,1,180,181]]],[46,6,5,181,186,[[1088,5,4,181,185],[1089,1,1,185,186]]],[47,3,3,186,189,[[1092,1,1,186,187],[1093,2,2,187,189]]],[49,2,2,189,191,[[1104,1,1,189,190],[1105,1,1,190,191]]],[50,1,1,191,192,[[1110,1,1,191,192]]],[53,1,1,192,193,[[1122,1,1,192,193]]],[54,1,1,193,194,[[1125,1,1,193,194]]],[57,17,17,194,211,[[1134,2,2,194,196],[1136,1,1,196,197],[1137,2,2,197,199],[1139,3,3,199,202],[1141,2,2,202,204],[1142,1,1,204,205],[1143,6,6,205,211]]],[58,6,6,211,217,[[1146,2,2,211,213],[1148,1,1,213,214],[1149,1,1,214,215],[1150,2,2,215,217]]],[59,1,1,217,218,[[1154,1,1,217,218]]],[60,2,2,218,220,[[1156,2,2,218,220]]],[61,3,3,220,223,[[1160,1,1,220,221],[1161,1,1,221,222],[1163,1,1,222,223]]],[62,2,2,223,225,[[1164,2,2,223,225]]],[63,1,1,225,226,[[1165,1,1,225,226]]],[65,23,22,226,248,[[1168,2,2,226,228],[1169,2,2,228,230],[1170,1,1,230,231],[1171,4,4,231,235],[1172,1,1,235,236],[1174,1,1,236,237],[1176,3,3,237,240],[1177,1,1,240,241],[1180,2,2,241,243],[1183,2,1,243,244],[1184,1,1,244,245],[1185,1,1,245,246],[1186,1,1,246,247],[1188,1,1,247,248]]]],[23274,23324,23362,23425,23455,23458,23503,23559,23570,23572,23616,23659,23669,23677,23679,23680,23681,23682,23724,23725,23727,23791,23799,23801,23802,23803,23848,23860,23861,23865,23887,23932,24009,24011,24012,24024,24026,24028,24030,24032,24080,24081,24106,24130,24135,24136,24138,24153,24159,24177,24188,24207,24210,24339,24448,24490,24506,24514,24574,24618,24664,24675,24676,24681,24692,24693,24694,24695,24713,24776,24777,24849,25112,25133,25150,25211,25317,25340,25415,25537,25539,25743,25746,25800,25807,25808,25809,25810,25826,25881,25883,26021,26034,26056,26060,26131,26147,26152,26153,26192,26244,26251,26253,26254,26264,26268,26278,26351,26367,26498,26499,26583,26593,26628,26634,26642,26650,26660,26685,26740,26741,26750,26767,26788,26816,26826,26831,26848,26852,26855,26865,26889,26911,26931,26943,26948,26972,26982,26987,26999,27001,27169,27191,27193,27195,27235,27241,27302,27306,27456,27486,27507,27532,27538,27587,27650,27661,27796,27812,27833,27841,27890,27914,27935,28033,28058,28064,28099,28102,28131,28268,28406,28418,28424,28440,28564,28565,28580,28623,28624,28683,28993,28997,29009,29013,29038,29087,29104,29116,29398,29433,29552,29751,29814,29979,29980,30030,30031,30034,30069,30072,30073,30120,30124,30159,30180,30183,30185,30201,30207,30208,30273,30278,30320,30340,30361,30364,30456,30488,30496,30577,30601,30633,30649,30655,30665,30734,30744,30749,30757,30779,30786,30787,30788,30791,30797,30832,30869,30870,30871,30889,30935,30937,30987,30997,31037,31042,31097]]],["+",[9,9,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,2,2,1,3,[[977,1,1,1,2],[979,1,1,2,3]]],[43,2,2,3,5,[[1041,1,1,3,4],[1042,1,1,4,5]]],[45,1,1,5,6,[[1072,1,1,5,6]]],[57,2,2,6,8,[[1134,1,1,6,7],[1143,1,1,7,8]]],[60,1,1,8,9,[[1156,1,1,8,9]]]],[24030,25133,25211,27796,27812,28624,29980,30201,30488]]],["Receive",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26889]]],["Received",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29104]]],["Take",[7,7,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,2,2,3,5,[[1014,1,1,3,4],[1015,1,1,4,5]]],[58,1,1,5,6,[[1150,1,1,5,6]]],[65,1,1,6,7,[[1176,1,1,6,7]]]],[24080,24776,25881,26816,26831,30364,30870]]],["Took",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26593]]],["acceptest",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25800]]],["accepteth",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29087]]],["an",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[26999]]],["attained",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29433]]],["away",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23274]]],["brought",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23680]]],["call",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29814]]],["caught",[3,3,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[46,1,1,2,3,[[1089,1,1,2,3]]]],[23865,24676,29038]]],["had",[2,2,[[40,1,1,0,1,[[968,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[24695,30208]]],["held",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23503]]],["obtain",[2,2,[[45,1,1,0,1,[[1070,1,1,0,1]]],[57,1,1,1,2,[[1136,1,1,1,2]]]],[28565,30030]]],["receive",[60,57,[[39,7,6,0,6,[[938,2,1,0,1],[947,1,1,1,2],[948,1,1,2,3],[949,2,2,3,5],[951,1,1,5,6]]],[40,5,5,6,11,[[960,1,1,6,7],[966,1,1,7,8],[967,1,1,8,9],[968,2,2,9,11]]],[41,2,2,11,13,[[991,1,1,11,12],[992,1,1,12,13]]],[42,12,11,13,24,[[999,2,2,13,15],[1001,5,4,15,19],[1003,2,2,19,21],[1010,1,1,21,22],[1012,2,2,22,24]]],[43,8,8,24,32,[[1018,1,1,24,25],[1019,1,1,25,26],[1020,1,1,26,27],[1025,2,2,27,29],[1027,1,1,29,30],[1037,1,1,30,31],[1043,1,1,31,32]]],[44,2,2,32,34,[[1050,1,1,32,33],[1058,1,1,33,34]]],[45,5,4,34,38,[[1064,2,2,34,36],[1065,2,1,36,37],[1075,1,1,37,38]]],[46,1,1,38,39,[[1088,1,1,38,39]]],[47,1,1,39,40,[[1093,1,1,39,40]]],[57,4,4,40,44,[[1139,2,2,40,42],[1141,1,1,42,43],[1143,1,1,43,44]]],[58,5,5,44,49,[[1146,2,2,44,46],[1148,1,1,46,47],[1149,1,1,47,48],[1150,1,1,48,49]]],[61,2,2,49,51,[[1161,1,1,49,50],[1163,1,1,50,51]]],[62,1,1,51,52,[[1164,1,1,51,52]]],[65,5,5,52,57,[[1170,1,1,52,53],[1171,1,1,53,54],[1180,1,1,54,55],[1183,1,1,55,56],[1184,1,1,56,57]]]],[23458,23791,23799,23848,23860,23932,24339,24618,24664,24675,24713,25743,25826,26131,26147,26244,26251,26253,26254,26351,26367,26685,26740,26750,26931,26987,27001,27191,27195,27302,27661,27841,28064,28268,28418,28424,28440,28683,28993,29116,30069,30072,30120,30180,30273,30278,30320,30340,30361,30601,30633,30655,30779,30791,30935,30987,30997]]],["received",[55,53,[[39,10,9,0,9,[[938,1,1,0,1],[945,1,1,1,2],[948,4,3,2,5],[953,4,4,5,9]]],[40,1,1,9,10,[[971,1,1,9,10]]],[41,1,1,10,11,[[991,1,1,10,11]]],[42,9,9,11,20,[[997,2,2,11,13],[999,1,1,13,14],[1002,1,1,14,15],[1006,1,1,15,16],[1009,1,1,16,17],[1013,1,1,17,18],[1014,1,1,18,19],[1015,1,1,19,20]]],[43,9,9,20,29,[[1019,1,1,20,21],[1024,1,1,21,22],[1025,1,1,22,23],[1026,1,1,23,24],[1027,1,1,24,25],[1033,1,1,25,26],[1036,1,1,26,27],[1037,1,1,27,28],[1043,1,1,28,29]]],[44,5,4,29,33,[[1046,1,1,29,30],[1049,1,1,30,31],[1050,1,1,31,32],[1053,2,1,32,33]]],[45,2,2,33,35,[[1063,1,1,33,34],[1065,1,1,34,35]]],[46,2,2,35,37,[[1088,2,2,35,37]]],[50,1,1,37,38,[[1110,1,1,37,38]]],[53,1,1,38,39,[[1122,1,1,38,39]]],[57,5,5,39,44,[[1134,1,1,39,40],[1142,1,1,40,41],[1143,3,3,41,44]]],[59,1,1,44,45,[[1154,1,1,44,45]]],[60,1,1,45,46,[[1156,1,1,45,46]]],[61,1,1,46,47,[[1160,1,1,46,47]]],[62,1,1,47,48,[[1164,1,1,47,48]]],[65,5,5,48,53,[[1168,1,1,48,49],[1169,1,1,49,50],[1183,1,1,50,51],[1185,1,1,51,52],[1186,1,1,52,53]]]],[23425,23724,23801,23802,23803,24024,24026,24028,24032,24849,25746,26056,26060,26153,26278,26499,26660,26767,26788,26855,26982,27169,27193,27235,27306,27507,27587,27650,27833,27935,28033,28058,28131,28406,28440,28993,29013,29552,29751,29979,30159,30183,30185,30207,30456,30496,30577,30649,30744,30749,30987,31037,31042]]],["receiveth",[14,11,[[39,2,2,0,2,[[935,1,1,0,1],[941,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[42,7,4,3,7,[[999,1,1,3,4],[1000,1,1,4,5],[1008,1,1,5,6],[1009,4,1,6,7]]],[45,1,1,7,8,[[1070,1,1,7,8]]],[57,1,1,8,9,[[1139,1,1,8,9]]],[65,2,2,9,11,[[1168,1,1,9,10],[1180,1,1,10,11]]]],[23324,23559,25415,26152,26192,26628,26650,28564,30073,30734,30937]]],["receiving",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27538]]],["take",[23,23,[[39,5,5,0,5,[[943,1,1,0,1],[944,1,1,1,2],[945,2,2,2,4],[954,1,1,4,5]]],[40,3,3,5,8,[[963,1,1,5,6],[964,1,1,6,7],[968,1,1,7,8]]],[41,2,2,8,10,[[978,1,1,8,9],[992,1,1,9,10]]],[42,4,4,10,14,[[1002,1,1,10,11],[1006,2,2,11,13],[1012,1,1,13,14]]],[43,3,3,14,17,[[1018,2,2,14,16],[1032,1,1,16,17]]],[46,1,1,17,18,[[1088,1,1,17,18]]],[65,5,5,18,23,[[1169,1,1,18,19],[1171,1,1,19,20],[1172,1,1,20,21],[1176,1,1,21,22],[1188,1,1,22,23]]]],[23659,23677,23725,23727,24106,24490,24514,24692,25150,25807,26264,26498,26499,26741,26943,26948,27456,29009,30757,30788,30797,30869,31097]]],["taken",[12,12,[[39,3,3,0,3,[[944,1,1,0,1],[955,1,1,1,2],[956,1,1,2,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[41,1,1,4,5,[[977,1,1,4,5]]],[42,1,1,5,6,[[1009,1,1,5,6]]],[43,2,2,6,8,[[1019,1,1,6,7],[1034,1,1,7,8]]],[45,1,1,8,9,[[1071,1,1,8,9]]],[57,1,1,9,10,[[1137,1,1,9,10]]],[65,2,2,10,12,[[1171,1,1,10,11],[1177,1,1,11,12]]]],[23679,24188,24207,24448,25112,26642,26972,27532,28580,30031,30787,30889]]],["taketh",[4,4,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]],[57,1,1,3,4,[[1137,1,1,3,4]]]],[23455,25340,26911,30034]]],["taking",[4,4,[[44,2,2,0,2,[[1052,2,2,0,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]],[63,1,1,3,4,[[1165,1,1,3,4]]]],[28099,28102,28997,30665]]],["took",[54,53,[[39,21,20,0,20,[[936,1,1,0,1],[941,2,2,1,3],[942,1,1,3,4],[943,1,1,4,5],[949,1,1,5,6],[950,1,1,6,7],[953,4,3,7,10],[954,2,2,10,12],[955,7,7,12,19],[956,1,1,19,20]]],[40,7,7,20,27,[[964,1,1,20,21],[965,1,1,21,22],[968,3,3,22,25],[970,2,2,25,27]]],[41,9,9,27,36,[[981,1,1,27,28],[985,2,2,28,30],[992,3,3,30,33],[994,1,1,33,34],[996,2,2,34,36]]],[42,7,7,36,43,[[1002,1,1,36,37],[1008,1,1,37,38],[1009,1,1,38,39],[1015,4,4,39,43]]],[43,4,4,43,47,[[1026,1,1,43,44],[1033,1,1,44,45],[1044,1,1,45,46],[1045,1,1,46,47]]],[45,1,1,47,48,[[1072,1,1,47,48]]],[49,1,1,48,49,[[1104,1,1,48,49]]],[57,1,1,49,50,[[1141,1,1,49,50]]],[65,3,3,50,53,[[1171,1,1,50,51],[1174,1,1,51,52],[1176,1,1,52,53]]]],[23362,23570,23572,23616,23669,23861,23887,24009,24011,24012,24080,24081,24130,24135,24136,24138,24153,24159,24177,24210,24506,24574,24681,24693,24694,24776,24777,25317,25537,25539,25808,25809,25810,25883,26021,26034,26268,26583,26634,26826,26848,26852,26865,27241,27486,27890,27914,28623,29398,30124,30786,30832,30871]]],["up",[2,2,[[39,2,2,0,2,[[944,2,2,0,2]]]],[23681,23682]]]]},{"k":"G2984","v":[["Lamech",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25061]]]]},{"k":"G2985","v":[["*",[9,9,[[39,5,5,0,5,[[953,5,5,0,5]]],[42,1,1,5,6,[[1014,1,1,5,6]]],[43,1,1,6,7,[[1037,1,1,6,7]]],[65,2,2,7,9,[[1170,1,1,7,8],[1174,1,1,8,9]]]],[24009,24011,24012,24015,24016,26788,27634,30773,30837]]],["lamp",[1,1,[[65,1,1,0,1,[[1174,1,1,0,1]]]],[30837]]],["lamps",[6,6,[[39,5,5,0,5,[[953,5,5,0,5]]],[65,1,1,5,6,[[1170,1,1,5,6]]]],[24009,24011,24012,24015,24016,30773]]],["lights",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27634]]],["torches",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26788]]]]},{"k":"G2986","v":[["*",[9,9,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]],[58,2,2,2,4,[[1147,2,2,2,4]]],[65,5,5,4,9,[[1181,1,1,4,5],[1184,1,1,5,6],[1185,1,1,6,7],[1188,2,2,7,9]]]],[25946,27289,30295,30296,30952,31007,31025,31081,31096]]],["bright",[2,2,[[43,1,1,0,1,[[1027,1,1,0,1]]],[65,1,1,1,2,[[1188,1,1,1,2]]]],[27289,31096]]],["clear",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31081]]],["gay",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30296]]],["goodly",[2,2,[[58,1,1,0,1,[[1147,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[30295,31007]]],["gorgeous",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25946]]],["white",[2,2,[[65,2,2,0,2,[[1181,1,1,0,1],[1185,1,1,1,2]]]],[30952,31025]]]]},{"k":"G2987","v":[["brightness",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27836]]]]},{"k":"G2988","v":[["sumptuously",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25639]]]]},{"k":"G2989","v":[["*",[7,6,[[39,3,3,0,3,[[933,2,2,0,2],[945,1,1,2,3]]],[41,1,1,3,4,[[989,1,1,3,4]]],[43,1,1,4,5,[[1029,1,1,4,5]]],[46,2,1,5,6,[[1081,2,1,5,6]]]],[23249,23250,23702,25675,27344,28865]]],["light",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23249]]],["shine",[3,3,[[39,2,2,0,2,[[933,1,1,0,1],[945,1,1,1,2]]],[46,1,1,2,3,[[1081,1,1,2,3]]]],[23250,23702,28865]]],["shined",[2,2,[[43,1,1,0,1,[[1029,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]]],[27344,28865]]],["shineth",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25675]]]]},{"k":"G2990","v":[["*",[6,6,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[43,1,1,2,3,[[1043,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]],[60,2,2,4,6,[[1158,2,2,4,6]]]],[24487,25292,27849,30243,30527,30530]]],["+",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30530]]],["hid",[2,2,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24487,25292]]],["hidden",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27849]]],["of",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30527]]],["unawares",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30243]]]]},{"k":"G2991","v":[["stone",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25988]]]]},{"k":"G2992","v":[["*",[143,139,[[39,15,15,0,15,[[929,1,1,0,1],[930,2,2,1,3],[932,2,2,3,5],[937,1,1,5,6],[941,1,1,6,7],[943,1,1,7,8],[949,1,1,8,9],[954,3,3,9,12],[955,3,3,12,15]]],[40,3,3,15,18,[[963,1,1,15,16],[967,1,1,16,17],[970,1,1,17,18]]],[41,36,36,18,54,[[973,5,5,18,23],[974,3,3,23,26],[975,3,3,26,29],[978,1,1,29,30],[979,3,3,30,33],[980,1,1,33,34],[981,1,1,34,35],[990,1,1,35,36],[991,2,2,36,38],[992,6,6,38,44],[993,2,2,44,46],[994,2,2,46,48],[995,5,5,48,53],[996,1,1,53,54]]],[42,3,3,54,57,[[1004,1,1,54,55],[1007,1,1,55,56],[1014,1,1,56,57]]],[43,48,47,57,104,[[1019,1,1,57,58],[1020,4,4,58,62],[1021,8,8,62,70],[1022,7,7,70,77],[1023,2,2,77,79],[1024,2,2,79,81],[1027,3,3,81,84],[1029,2,2,84,86],[1030,5,4,86,90],[1032,1,1,90,91],[1035,1,1,91,92],[1036,1,1,92,93],[1038,5,5,93,98],[1040,1,1,98,99],[1043,2,2,99,101],[1045,3,3,101,104]]],[44,8,7,104,111,[[1054,3,2,104,106],[1055,1,1,106,107],[1056,2,2,107,109],[1060,2,2,109,111]]],[45,2,2,111,113,[[1071,1,1,111,112],[1075,1,1,112,113]]],[46,1,1,113,114,[[1083,1,1,113,114]]],[55,1,1,114,115,[[1130,1,1,114,115]]],[57,13,12,115,127,[[1134,1,1,115,116],[1136,1,1,116,117],[1137,1,1,117,118],[1139,3,3,118,121],[1140,1,1,121,122],[1141,3,2,122,124],[1142,1,1,124,125],[1143,1,1,125,126],[1145,1,1,126,127]]],[59,3,2,127,129,[[1152,3,2,127,129]]],[60,1,1,129,130,[[1157,1,1,129,130]]],[64,1,1,130,131,[[1166,1,1,130,131]]],[65,8,8,131,139,[[1171,1,1,131,132],[1173,1,1,132,133],[1176,1,1,133,134],[1177,1,1,134,135],[1180,1,1,135,136],[1183,1,1,136,137],[1184,1,1,137,138],[1187,1,1,138,139]]]],[23165,23173,23175,23225,23232,23414,23554,23641,23849,24057,24059,24101,24130,24154,24193,24469,24672,24756,24903,24910,24914,24961,24970,24983,25004,25005,25040,25043,25046,25163,25196,25211,25224,25292,25314,25731,25778,25779,25780,25785,25788,25798,25805,25824,25849,25864,25866,25930,25940,25948,25949,25962,25970,26010,26383,26573,26799,26996,27005,27007,27008,27019,27023,27024,27030,27032,27039,27043,27047,27049,27071,27072,27079,27084,27085,27093,27096,27109,27113,27133,27150,27261,27300,27301,27341,27348,27377,27379,27386,27393,27456,27567,27589,27692,27694,27700,27703,27704,27739,27840,27846,27916,27925,27926,28180,28181,28209,28210,28211,28313,28314,28574,28699,28914,29922,29994,30023,30033,30069,30075,30091,30102,30112,30124,30163,30197,30253,30408,30409,30501,30677,30788,30819,30872,30881,30932,30990,30997,31056]]],["people",[139,135,[[39,14,14,0,14,[[929,1,1,0,1],[930,2,2,1,3],[932,2,2,3,5],[937,1,1,5,6],[943,1,1,6,7],[949,1,1,7,8],[954,3,3,8,11],[955,3,3,11,14]]],[40,3,3,14,17,[[963,1,1,14,15],[967,1,1,15,16],[970,1,1,16,17]]],[41,36,36,17,53,[[973,5,5,17,22],[974,3,3,22,25],[975,3,3,25,28],[978,1,1,28,29],[979,3,3,29,32],[980,1,1,32,33],[981,1,1,33,34],[990,1,1,34,35],[991,2,2,35,37],[992,6,6,37,43],[993,2,2,43,45],[994,2,2,45,47],[995,5,5,47,52],[996,1,1,52,53]]],[42,3,3,53,56,[[1004,1,1,53,54],[1007,1,1,54,55],[1014,1,1,55,56]]],[43,48,47,56,103,[[1019,1,1,56,57],[1020,4,4,57,61],[1021,8,8,61,69],[1022,7,7,69,76],[1023,2,2,76,78],[1024,2,2,78,80],[1027,3,3,80,83],[1029,2,2,83,85],[1030,5,4,85,89],[1032,1,1,89,90],[1035,1,1,90,91],[1036,1,1,91,92],[1038,5,5,92,97],[1040,1,1,97,98],[1043,2,2,98,100],[1045,3,3,100,103]]],[44,8,7,103,110,[[1054,3,2,103,105],[1055,1,1,105,106],[1056,2,2,106,108],[1060,2,2,108,110]]],[45,2,2,110,112,[[1071,1,1,110,111],[1075,1,1,111,112]]],[46,1,1,112,113,[[1083,1,1,112,113]]],[55,1,1,113,114,[[1130,1,1,113,114]]],[57,12,11,114,125,[[1134,1,1,114,115],[1136,1,1,115,116],[1137,1,1,116,117],[1139,2,2,117,119],[1140,1,1,119,120],[1141,3,2,120,122],[1142,1,1,122,123],[1143,1,1,123,124],[1145,1,1,124,125]]],[59,3,2,125,127,[[1152,3,2,125,127]]],[60,1,1,127,128,[[1157,1,1,127,128]]],[64,1,1,128,129,[[1166,1,1,128,129]]],[65,6,6,129,135,[[1171,1,1,129,130],[1173,1,1,130,131],[1177,1,1,131,132],[1180,1,1,132,133],[1184,1,1,133,134],[1187,1,1,134,135]]]],[23165,23173,23175,23225,23232,23414,23641,23849,24057,24059,24101,24130,24154,24193,24469,24672,24756,24903,24910,24914,24961,24970,24983,25004,25005,25040,25043,25046,25163,25196,25211,25224,25292,25314,25731,25778,25779,25780,25785,25788,25798,25805,25824,25849,25864,25866,25930,25940,25948,25949,25962,25970,26010,26383,26573,26799,26996,27005,27007,27008,27019,27023,27024,27030,27032,27039,27043,27047,27049,27071,27072,27079,27084,27085,27093,27096,27109,27113,27133,27150,27261,27300,27301,27341,27348,27377,27379,27386,27393,27456,27567,27589,27692,27694,27700,27703,27704,27739,27840,27846,27916,27925,27926,28180,28181,28209,28210,28211,28313,28314,28574,28699,28914,29922,29994,30023,30033,30069,30075,30102,30112,30124,30163,30197,30253,30408,30409,30501,30677,30788,30819,30881,30932,30997,31056]]],["people's",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[23554,30091]]],["peoples",[2,2,[[65,2,2,0,2,[[1176,1,1,0,1],[1183,1,1,1,2]]]],[30872,30990]]]]},{"k":"G2993","v":[["Laodicea",[5,5,[[50,4,4,0,4,[[1108,1,1,0,1],[1110,3,3,1,4]]],[65,1,1,4,5,[[1167,1,1,4,5]]]],[29495,29555,29557,29558,30708]]]]},{"k":"G2994","v":[["Laodiceans",[2,2,[[50,1,1,0,1,[[1110,1,1,0,1]]],[65,1,1,1,2,[[1169,1,1,1,2]]]],[29558,30760]]]]},{"k":"G2995","v":[["throat",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28004]]]]},{"k":"G2996","v":[["Lasea",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27863]]]]},{"k":"G2997","v":[["asunder",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26941]]]]},{"k":"G2998","v":[["*",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24189,24872]]],["hewn",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24872]]],["out",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24189]]]]},{"k":"G2999","v":[["service",[5,5,[[42,1,1,0,1,[[1012,1,1,0,1]]],[44,2,2,1,3,[[1054,1,1,1,2],[1057,1,1,2,3]]],[57,2,2,3,5,[[1141,2,2,3,5]]]],[26728,28159,28246,30106,30111]]]]},{"k":"G3000","v":[["*",[21,21,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,3,3,1,4,[[973,1,1,1,2],[974,1,1,2,3],[976,1,1,3,4]]],[43,5,5,4,9,[[1024,2,2,4,6],[1041,1,1,6,7],[1043,1,1,7,8],[1044,1,1,8,9]]],[44,2,2,9,11,[[1046,2,2,9,11]]],[49,1,1,11,12,[[1105,1,1,11,12]]],[54,1,1,12,13,[[1125,1,1,12,13]]],[57,6,6,13,19,[[1140,1,1,13,14],[1141,2,2,14,16],[1142,1,1,16,17],[1144,1,1,17,18],[1145,1,1,18,19]]],[65,2,2,19,21,[[1173,1,1,19,20],[1188,1,1,20,21]]]],[23219,24967,25010,25071,27123,27158,27783,27830,27878,27939,27955,29424,29812,30097,30114,30119,30135,30240,30251,30825,31083]]],["+",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30114]]],["serve",[13,13,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,2,2,1,3,[[973,1,1,1,2],[976,1,1,2,3]]],[43,2,2,3,5,[[1024,1,1,3,4],[1044,1,1,4,5]]],[44,1,1,5,6,[[1046,1,1,5,6]]],[54,1,1,6,7,[[1125,1,1,6,7]]],[57,4,4,7,11,[[1140,1,1,7,8],[1141,1,1,8,9],[1144,1,1,9,10],[1145,1,1,10,11]]],[65,2,2,11,13,[[1173,1,1,11,12],[1188,1,1,12,13]]]],[23219,24967,25071,27123,27878,27939,29812,30097,30119,30240,30251,30825,31083]]],["served",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[25010,27955]]],["serving",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27830]]],["worship",[3,3,[[43,2,2,0,2,[[1024,1,1,0,1],[1041,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]]],[27158,27783,29424]]],["worshippers",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30135]]]]},{"k":"G3001","v":[["herbs",[4,4,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[44,1,1,3,4,[[1059,1,1,3,4]]]],[23571,24355,25447,28282]]]]},{"k":"G3002","v":[["Lebbaeus",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23420]]]]},{"k":"G3003","v":[["*",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[961,2,2,1,3]]],[41,1,1,3,4,[[980,1,1,3,4]]]],[24107,24373,24379,25275]]],["Legion",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24373,25275]]],["legion",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24379]]],["legions",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24107]]]]},{"k":"G3004","v":[["*",[1343,1243,[[39,292,268,0,268,[[929,3,3,0,3],[930,6,6,3,9],[931,6,5,9,14],[932,7,7,14,21],[933,10,10,21,31],[934,6,6,31,37],[935,1,1,37,38],[936,15,15,38,53],[937,15,13,53,66],[938,7,7,66,73],[939,8,8,73,81],[940,9,9,81,90],[941,11,10,90,100],[942,8,8,100,108],[943,9,9,108,117],[944,9,7,117,124],[945,10,8,124,132],[946,12,11,132,143],[947,12,12,143,155],[948,10,9,155,164],[949,23,20,164,184],[950,16,13,184,197],[951,6,6,197,203],[952,5,5,203,208],[953,9,8,208,216],[954,32,29,216,245],[955,23,19,245,264],[956,4,4,264,268]]],[40,207,187,268,455,[[957,11,11,268,279],[958,11,11,279,290],[959,11,11,290,301],[960,11,11,301,312],[961,14,12,312,324],[962,14,12,324,336],[963,8,8,336,344],[964,17,13,344,357],[965,15,13,357,370],[966,15,15,370,385],[967,14,11,385,396],[968,13,10,396,406],[969,6,5,406,411],[970,33,30,411,441],[971,12,12,441,453],[972,2,2,453,455]]],[41,227,218,455,673,[[973,4,4,455,459],[974,1,1,459,460],[975,9,8,460,468],[976,9,9,468,477],[977,8,8,477,485],[978,5,5,485,490],[979,17,17,490,507],[980,11,11,507,518],[981,11,10,518,528],[982,7,7,528,535],[983,11,10,535,545],[984,16,15,545,560],[985,13,13,560,573],[986,6,5,573,578],[987,6,6,578,584],[988,5,5,584,589],[989,6,6,589,595],[990,14,14,595,609],[991,11,11,609,620],[992,11,10,620,630],[993,6,6,630,636],[994,17,17,636,653],[995,16,14,653,667],[996,7,6,667,673]]],[42,268,234,673,907,[[997,19,17,673,690],[998,9,8,690,698],[999,4,4,698,702],[1000,24,22,702,724],[1001,8,8,724,732],[1002,15,14,732,746],[1003,14,12,746,758],[1004,21,20,758,778],[1005,14,10,778,788],[1006,9,8,788,796],[1007,20,19,796,815],[1008,10,8,815,823],[1009,20,20,823,843],[1010,7,6,843,849],[1011,1,1,849,850],[1012,10,8,850,858],[1014,9,7,858,865],[1015,20,18,865,883],[1016,15,11,883,894],[1017,19,13,894,907]]],[43,105,103,907,1010,[[1018,2,2,907,909],[1019,7,7,909,916],[1020,2,2,916,918],[1021,2,2,918,920],[1022,5,5,920,925],[1023,4,4,925,929],[1024,3,3,929,932],[1025,6,6,932,938],[1026,3,3,938,941],[1027,2,2,941,943],[1028,5,5,943,948],[1029,3,3,948,951],[1030,5,4,951,955],[1031,3,3,955,958],[1032,4,4,958,962],[1033,5,5,962,967],[1034,5,4,967,971],[1035,1,1,971,972],[1036,4,4,972,976],[1037,1,1,976,977],[1038,6,6,977,983],[1039,5,5,983,988],[1040,4,4,988,992],[1041,3,3,992,995],[1042,2,2,995,997],[1043,4,4,997,1001],[1044,4,4,1001,1005],[1045,5,5,1005,1010]]],[44,35,33,1010,1043,[[1047,1,1,1010,1011],[1048,3,3,1011,1014],[1049,3,3,1014,1017],[1051,1,1,1017,1018],[1052,1,1,1018,1019],[1054,4,4,1019,1023],[1055,9,8,1023,1031],[1056,7,6,1031,1037],[1057,2,2,1037,1039],[1059,1,1,1039,1040],[1060,3,3,1040,1043]]],[45,22,21,1043,1064,[[1062,3,2,1043,1045],[1064,1,1,1045,1046],[1067,1,1,1046,1047],[1068,4,4,1047,1051],[1069,1,1,1051,1052],[1070,2,2,1052,1054],[1071,2,2,1054,1056],[1072,1,1,1056,1057],[1073,1,1,1057,1058],[1075,3,3,1058,1061],[1076,3,3,1061,1064]]],[46,11,10,1064,1074,[[1083,4,4,1064,1068],[1084,1,1,1068,1069],[1085,1,1,1069,1070],[1086,2,2,1070,1072],[1088,3,2,1072,1074]]],[47,9,9,1074,1083,[[1091,1,1,1074,1075],[1093,3,3,1075,1078],[1094,3,3,1078,1081],[1095,2,2,1081,1083]]],[48,7,6,1083,1089,[[1098,2,1,1083,1084],[1100,2,2,1084,1086],[1101,3,3,1086,1089]]],[49,3,2,1089,1091,[[1105,2,1,1089,1090],[1106,1,1,1090,1091]]],[50,2,2,1091,1093,[[1108,1,1,1091,1092],[1110,1,1,1092,1093]]],[51,2,2,1093,1095,[[1114,1,1,1093,1094],[1115,1,1,1094,1095]]],[52,2,2,1095,1097,[[1117,2,2,1095,1097]]],[53,4,4,1097,1101,[[1119,1,1,1097,1098],[1120,1,1,1098,1099],[1122,1,1,1099,1100],[1123,1,1,1100,1101]]],[54,2,2,1101,1103,[[1126,2,2,1101,1103]]],[55,1,1,1103,1104,[[1130,1,1,1103,1104]]],[56,2,2,1104,1106,[[1132,2,2,1104,1106]]],[57,33,32,1106,1138,[[1133,2,2,1106,1108],[1134,2,2,1108,1110],[1135,2,2,1110,1112],[1136,1,1,1112,1113],[1137,2,2,1113,1115],[1138,1,1,1115,1116],[1139,3,3,1116,1119],[1140,7,6,1119,1125],[1141,4,4,1125,1129],[1142,4,4,1129,1133],[1143,3,3,1133,1136],[1144,1,1,1136,1137],[1145,1,1,1137,1138]]],[58,7,7,1138,1145,[[1146,1,1,1138,1139],[1147,2,2,1139,1141],[1149,4,4,1141,1145]]],[60,1,1,1145,1146,[[1158,1,1,1145,1146]]],[61,4,4,1146,1150,[[1160,3,3,1146,1149],[1163,1,1,1149,1150]]],[62,2,2,1150,1152,[[1164,2,2,1150,1152]]],[64,2,2,1152,1154,[[1166,2,2,1152,1154]]],[65,93,89,1154,1243,[[1167,3,3,1154,1157],[1168,12,11,1157,1168],[1169,8,8,1168,1176],[1170,3,3,1176,1179],[1171,5,5,1179,1184],[1172,7,7,1184,1191],[1173,4,4,1191,1195],[1174,2,2,1195,1197],[1175,1,1,1197,1198],[1176,5,4,1198,1202],[1177,4,4,1202,1206],[1178,1,1,1206,1207],[1179,2,2,1207,1209],[1180,6,5,1209,1214],[1181,1,1,1214,1215],[1182,4,4,1215,1219],[1183,2,2,1219,1221],[1184,8,8,1221,1229],[1185,8,7,1229,1236],[1187,3,3,1236,1239],[1188,4,4,1239,1243]]]],[23160,23164,23166,23171,23182,23184,23186,23189,23192,23194,23195,23201,23206,23209,23215,23218,23219,23223,23226,23227,23228,23236,23252,23254,23256,23260,23262,23266,23268,23273,23278,23284,23287,23298,23307,23311,23313,23337,23347,23348,23349,23351,23352,23354,23355,23356,23362,23365,23370,23371,23372,23374,23376,23385,23388,23393,23397,23400,23403,23406,23407,23408,23409,23412,23413,23416,23419,23422,23424,23432,23440,23444,23459,23466,23468,23470,23476,23477,23478,23481,23483,23495,23499,23502,23506,23512,23520,23525,23527,23533,23542,23553,23556,23563,23570,23574,23575,23590,23593,23594,23601,23612,23614,23623,23624,23627,23628,23630,23634,23637,23638,23640,23655,23656,23658,23666,23667,23674,23679,23685,23687,23690,23694,23700,23705,23709,23710,23712,23714,23720,23725,23726,23728,23730,23737,23740,23745,23746,23749,23753,23755,23756,23759,23765,23769,23770,23771,23772,23779,23780,23782,23785,23786,23787,23790,23798,23799,23804,23813,23814,23815,23822,23823,23825,23828,23830,23835,23836,23837,23839,23841,23842,23845,23846,23847,23849,23851,23853,23857,23863,23867,23868,23869,23871,23873,23876,23880,23884,23888,23892,23893,23895,23896,23903,23907,23914,23915,23920,23921,23934,23948,23954,23957,23959,23960,23962,23991,24004,24017,24019,24020,24028,24045,24048,24052,24053,24057,24059,24062,24067,24068,24071,24072,24075,24076,24079,24081,24083,24085,24088,24089,24090,24092,24093,24094,24096,24099,24102,24106,24118,24119,24122,24123,24124,24125,24133,24138,24140,24142,24145,24146,24148,24151,24152,24153,24158,24162,24169,24170,24175,24176,24178,24183,24192,24204,24205,24208,24213,24222,24230,24239,24240,24242,24245,24252,24253,24255,24256,24259,24265,24270,24271,24272,24274,24276,24277,24278,24284,24285,24287,24291,24292,24293,24299,24309,24310,24311,24316,24318,24321,24322,24325,24332,24334,24336,24344,24347,24349,24353,24358,24361,24364,24372,24373,24376,24383,24387,24392,24394,24395,24399,24400,24403,24405,24409,24411,24417,24418,24421,24422,24425,24432,24442,24444,24445,24457,24472,24474,24477,24481,24483,24491,24497,24500,24501,24512,24515,24516,24517,24519,24521,24524,24526,24527,24529,24530,24533,24539,24543,24545,24549,24551,24557,24562,24563,24564,24569,24573,24576,24579,24599,24603,24606,24611,24612,24614,24615,24616,24617,24620,24623,24630,24635,24637,24639,24642,24645,24649,24657,24661,24662,24663,24664,24668,24671,24673,24674,24679,24687,24689,24691,24699,24708,24710,24711,24716,24718,24722,24723,24747,24754,24756,24758,24763,24766,24767,24768,24772,24773,24779,24781,24784,24785,24786,24788,24790,24791,24795,24798,24799,24811,24812,24814,24815,24817,24819,24821,24822,24823,24824,24825,24828,24830,24833,24835,24838,24840,24854,24855,24857,24860,24861,24862,24876,24879,24917,24956,24959,24960,24986,25029,25032,25033,25035,25036,25039,25041,25047,25067,25084,25085,25087,25088,25097,25098,25099,25104,25115,25119,25128,25131,25133,25137,25143,25146,25151,25166,25173,25188,25192,25199,25201,25203,25204,25209,25211,25214,25215,25219,25221,25223,25227,25228,25229,25234,25242,25244,25253,25254,25265,25269,25270,25275,25283,25290,25294,25295,25299,25308,25319,25321,25324,25328,25332,25334,25335,25336,25339,25365,25368,25372,25375,25380,25387,25388,25407,25413,25414,25423,25429,25432,25434,25450,25456,25458,25460,25463,25464,25467,25475,25476,25481,25486,25496,25500,25503,25510,25513,25514,25518,25521,25523,25524,25526,25532,25535,25536,25542,25543,25544,25545,25549,25553,25556,25560,25565,25577,25583,25590,25591,25594,25595,25597,25598,25621,25625,25627,25629,25649,25655,25657,25661,25664,25685,25688,25689,25690,25691,25694,25696,25701,25702,25705,25706,25707,25717,25722,25726,25729,25738,25745,25747,25749,25751,25753,25757,25769,25771,25773,25777,25781,25784,25787,25788,25793,25800,25807,25816,25820,25821,25829,25831,25833,25834,25836,25858,25865,25875,25880,25882,25883,25884,25898,25901,25906,25911,25921,25923,25924,25928,25929,25930,25934,25937,25938,25940,25953,25956,25965,25969,25970,25972,25974,25975,25977,25978,25982,25998,26001,26014,26020,26025,26027,26059,26065,26066,26070,26073,26076,26080,26082,26083,26085,26087,26089,26090,26091,26092,26093,26095,26098,26099,26100,26102,26103,26105,26116,26117,26123,26124,26125,26131,26161,26163,26165,26166,26167,26171,26172,26173,26175,26176,26177,26181,26182,26184,26187,26189,26190,26191,26198,26205,26206,26207,26216,26218,26220,26228,26229,26234,26235,26244,26262,26263,26265,26269,26271,26277,26283,26289,26299,26304,26309,26310,26322,26328,26334,26339,26340,26343,26353,26354,26356,26359,26365,26368,26369,26378,26385,26386,26387,26393,26400,26403,26406,26407,26408,26412,26414,26415,26420,26426,26427,26429,26432,26433,26435,26439,26442,26448,26449,26450,26451,26452,26456,26457,26459,26481,26482,26488,26501,26502,26505,26514,26517,26522,26526,26530,26531,26534,26536,26539,26546,26547,26550,26554,26555,26557,26559,26562,26563,26567,26570,26577,26579,26584,26601,26602,26603,26604,26609,26613,26614,26636,26638,26639,26640,26643,26646,26648,26649,26650,26651,26652,26654,26655,26657,26659,26661,26663,26666,26667,26668,26673,26674,26676,26677,26680,26690,26714,26733,26738,26743,26744,26746,26749,26752,26755,26790,26802,26811,26819,26822,26823,26825,26828,26829,26830,26831,26834,26835,26837,26838,26839,26840,26842,26846,26849,26851,26852,26853,26860,26862,26869,26880,26882,26883,26884,26886,26889,26891,26892,26894,26896,26900,26901,26903,26905,26908,26910,26913,26914,26915,26916,26917,26919,26920,26926,26929,26956,26961,26962,26966,26974,26983,26989,26998,27021,27038,27054,27082,27084,27087,27095,27097,27110,27112,27114,27115,27164,27165,27175,27182,27185,27186,27195,27202,27210,27220,27237,27252,27285,27287,27310,27311,27314,27323,27325,27344,27345,27352,27377,27387,27397,27407,27425,27429,27432,27447,27455,27459,27466,27492,27498,27500,27511,27518,27530,27541,27542,27544,27570,27589,27598,27611,27613,27649,27668,27675,27685,27687,27701,27704,27711,27722,27726,27730,27731,27742,27743,27746,27764,27771,27779,27783,27810,27816,27824,27837,27845,27854,27865,27866,27879,27888,27903,27905,27916,27923,27925,27984,27996,27999,28010,28025,28028,28031,28087,28098,28156,28170,28172,28180,28194,28196,28199,28204,28206,28207,28208,28209,28210,28211,28213,28218,28220,28222,28248,28264,28291,28311,28313,28315,28373,28375,28414,28472,28493,28495,28499,28522,28532,28548,28550,28582,28596,28625,28637,28694,28699,28712,28730,28752,28769,28900,28911,28915,28916,28919,28940,28959,28960,29005,29010,29066,29117,29118,29119,29132,29152,29161,29164,29178,29240,29280,29289,29316,29318,29336,29439,29453,29498,29553,29618,29624,29665,29666,29703,29723,29748,29781,29834,29845,29916,29957,29959,29969,29970,29983,29989,30002,30010,30021,30036,30041,30058,30075,30077,30085,30093,30100,30101,30102,30103,30105,30107,30108,30110,30125,30138,30141,30149,30163,30186,30196,30204,30238,30247,30279,30307,30316,30342,30343,30350,30352,30526,30554,30556,30559,30640,30655,30656,30686,30690,30705,30708,30714,30718,30724,30725,30726,30728,30729,30734,30735,30737,30741,30746,30747,30752,30753,30755,30759,30760,30763,30768,30769,30776,30778,30784,30788,30791,30792,30793,30794,30796,30798,30799,30800,30803,30809,30813,30820,30822,30823,30838,30840,30854,30865,30869,30870,30872,30873,30884,30887,30889,30901,30912,30922,30933,30934,30935,30939,30944,30949,30955,30959,30961,30971,30976,30990,30995,30997,31000,31003,31009,31011,31012,31014,31018,31021,31022,31023,31026,31027,31034,31056,31058,31062,31089,31090,31097,31100]]],["+",[11,11,[[39,2,2,0,2,[[940,1,1,0,1],[944,1,1,1,2]]],[40,2,2,2,4,[[963,1,1,2,3],[970,1,1,3,4]]],[41,2,2,4,6,[[986,1,1,4,5],[989,1,1,5,6]]],[42,2,2,6,8,[[1011,1,1,6,7],[1016,1,1,7,8]]],[43,2,2,8,10,[[1032,1,1,8,9],[1034,1,1,9,10]]],[58,1,1,10,11,[[1147,1,1,10,11]]]],[23499,23690,24483,24814,25556,25657,26714,26883,27459,27541,30316]]],["Say",[3,3,[[42,3,3,0,3,[[1000,1,1,0,1],[1004,1,1,1,2],[1006,1,1,2,3]]]],[26191,26429,26517]]],["Sayest",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26819]]],["Saying",[41,41,[[39,11,11,0,11,[[930,2,2,0,2],[948,1,1,2,3],[949,1,1,3,4],[950,2,2,4,6],[951,1,1,6,7],[954,1,1,7,8],[955,2,2,8,10],[956,1,1,10,11]]],[40,1,1,11,12,[[957,1,1,11,12]]],[41,11,11,12,23,[[976,1,1,12,13],[986,1,1,13,14],[990,2,2,14,16],[991,3,3,16,19],[992,1,1,19,20],[994,1,1,20,21],[996,2,2,21,23]]],[43,8,8,23,31,[[1021,1,1,23,24],[1022,2,2,24,26],[1025,1,1,26,27],[1028,1,1,27,28],[1035,1,1,28,29],[1044,1,1,29,30],[1045,1,1,30,31]]],[57,3,3,31,34,[[1134,1,1,31,32],[1138,1,1,32,33],[1141,1,1,33,34]]],[65,7,7,34,41,[[1167,1,1,34,35],[1171,1,1,35,36],[1173,2,2,36,38],[1175,1,1,38,39],[1177,1,1,39,40],[1180,1,1,40,41]]]],[23171,23189,23804,23828,23896,23914,23920,24122,24133,24192,24208,24239,25097,25583,25690,25729,25769,25773,25777,25807,25906,25998,26025,27038,27082,27087,27195,27310,27570,27879,27925,29989,30058,30125,30708,30791,30813,30822,30854,30889,30933]]],["Tell",[2,2,[[43,1,1,0,1,[[1039,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]]],[27731,29152]]],["asked",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27816]]],["bid",[1,1,[[62,1,1,0,1,[[1164,1,1,0,1]]]],[30655]]],["biddeth",[1,1,[[62,1,1,0,1,[[1164,1,1,0,1]]]],[30656]]],["boasting",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27095]]],["call",[3,3,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,2,2,1,3,[[1027,1,1,1,2],[1041,1,1,2,3]]]],[24838,27287,27783]]],["called",[37,35,[[39,12,12,0,12,[[929,1,1,0,1],[930,1,1,1,2],[932,1,1,2,3],[938,1,1,3,4],[941,1,1,4,5],[954,3,3,5,8],[955,4,4,8,12]]],[41,2,2,12,14,[[994,2,2,12,14]]],[42,10,9,14,23,[[1000,2,2,14,16],[1005,1,1,16,17],[1007,2,2,17,19],[1015,3,2,19,21],[1016,1,1,21,22],[1017,1,1,22,23]]],[43,3,3,23,26,[[1020,1,1,23,24],[1023,1,1,24,25],[1026,1,1,25,26]]],[45,1,1,26,27,[[1069,1,1,26,27]]],[48,2,1,27,28,[[1098,2,1,27,28]]],[50,1,1,28,29,[[1110,1,1,28,29]]],[52,1,1,29,30,[[1117,1,1,29,30]]],[57,4,4,30,34,[[1139,1,1,30,31],[1141,2,2,31,33],[1143,1,1,33,34]]],[65,1,1,34,35,[[1174,1,1,34,35]]]],[23160,23192,23227,23419,23594,24057,24068,24090,24145,24146,24151,24162,25865,25911,26161,26181,26451,26539,26577,26838,26842,26891,26900,26998,27110,27252,28532,29240,29553,29665,30075,30107,30108,30196,30838]]],["callest",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]]],[23779,24606,25707]]],["calleth",[4,4,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[992,1,1,1,2]]],[45,1,1,2,3,[[1073,1,1,2,3]]],[65,1,1,3,4,[[1168,1,1,3,4]]]],[24710,25816,28637,30737]]],["describeth",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28028]]],["forth",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25560]]],["named",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[23388,24833]]],["on",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27377]]],["out",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27185]]],["said",[199,192,[[39,25,25,0,25,[[937,4,4,0,4],[940,1,1,4,5],[941,1,1,5,6],[942,2,2,6,8],[945,1,1,8,9],[946,1,1,9,10],[949,4,4,10,14],[950,1,1,14,15],[954,5,5,15,20],[955,4,4,20,24],[956,1,1,24,25]]],[40,62,61,25,86,[[957,2,2,25,27],[958,6,6,27,33],[959,5,5,33,38],[960,9,9,38,47],[961,6,6,47,53],[962,7,6,53,59],[963,3,3,59,62],[964,2,2,62,64],[965,5,5,64,69],[966,1,1,69,70],[967,2,2,70,72],[968,2,2,72,74],[970,8,8,74,82],[971,3,3,82,85],[972,1,1,85,86]]],[41,28,28,86,114,[[975,2,2,86,88],[976,1,1,88,89],[978,2,2,89,91],[980,2,2,91,93],[981,3,3,93,96],[982,1,1,96,97],[983,2,2,97,99],[984,1,1,99,100],[985,4,4,100,104],[986,1,1,104,105],[988,3,3,105,108],[989,2,2,108,110],[993,1,1,110,111],[995,2,2,111,113],[996,1,1,113,114]]],[42,54,49,114,163,[[998,1,1,114,115],[1000,3,3,115,118],[1001,2,2,118,120],[1002,5,5,120,125],[1003,9,7,125,132],[1004,5,5,132,137],[1005,7,5,137,142],[1006,5,5,142,147],[1007,4,4,147,151],[1008,3,2,151,153],[1009,5,5,153,158],[1012,2,2,158,160],[1015,2,2,160,162],[1016,1,1,162,163]]],[43,16,16,163,179,[[1019,1,1,163,164],[1021,1,1,164,165],[1023,2,2,165,167],[1026,1,1,167,168],[1028,1,1,168,169],[1029,1,1,169,170],[1030,1,1,170,171],[1034,1,1,171,172],[1038,2,2,172,174],[1039,1,1,174,175],[1044,1,1,175,176],[1045,3,3,176,179]]],[44,1,1,179,180,[[1052,1,1,179,180]]],[46,1,1,180,181,[[1086,1,1,180,181]]],[57,3,3,181,184,[[1135,1,1,181,182],[1139,1,1,182,183],[1142,1,1,183,184]]],[65,9,8,184,192,[[1170,1,1,184,185],[1171,1,1,185,186],[1172,1,1,186,187],[1176,4,3,187,190],[1185,1,1,190,191],[1187,1,1,191,192]]]],[23400,23403,23407,23413,23512,23593,23601,23628,23705,23759,23837,23839,23845,23849,23873,24059,24079,24089,24106,24125,24142,24170,24176,24178,24205,24252,24253,24265,24274,24276,24284,24285,24287,24309,24310,24311,24318,24322,24325,24332,24334,24336,24344,24347,24349,24353,24364,24372,24392,24394,24395,24399,24405,24411,24417,24421,24422,24425,24442,24472,24477,24491,24521,24524,24539,24543,24562,24564,24569,24639,24645,24673,24708,24711,24756,24758,24766,24785,24790,24815,24821,24824,24840,24857,24861,24876,25032,25047,25085,25151,25166,25253,25265,25308,25324,25334,25365,25450,25458,25513,25526,25532,25535,25536,25565,25621,25625,25627,25664,25688,25836,25969,25977,26014,26117,26173,26189,26198,26220,26228,26263,26269,26271,26299,26322,26334,26339,26340,26353,26359,26368,26369,26387,26400,26403,26406,26412,26448,26449,26450,26452,26456,26501,26502,26505,26517,26522,26557,26559,26562,26570,26609,26613,26657,26659,26661,26666,26667,26744,26755,26828,26846,26892,26962,27054,27112,27114,27237,27323,27352,27387,27541,27668,27701,27726,27865,27903,27905,27916,28098,28959,30010,30085,30141,30769,30793,30809,30869,30870,30872,31027,31058]]],["saith",[292,279,[[39,45,45,0,45,[[932,4,4,0,4],[935,1,1,4,5],[936,4,4,5,9],[937,4,4,9,13],[940,2,2,13,15],[941,2,2,15,17],[943,1,1,17,18],[944,1,1,18,19],[945,2,2,19,21],[946,1,1,21,22],[947,3,3,22,25],[948,4,4,25,29],[949,3,3,29,32],[950,5,5,32,37],[954,7,7,37,44],[955,1,1,44,45]]],[40,47,46,45,91,[[957,2,2,45,47],[958,2,2,47,49],[959,3,3,49,52],[960,1,1,52,53],[961,3,3,53,56],[962,2,2,56,58],[963,2,2,58,60],[964,5,4,60,64],[965,2,2,64,66],[966,5,5,66,71],[967,5,5,71,76],[968,2,2,76,78],[969,1,1,78,79],[970,10,10,79,89],[971,1,1,89,90],[972,1,1,90,91]]],[41,9,9,91,100,[[975,1,1,91,92],[977,1,1,92,93],[983,1,1,93,94],[988,1,1,94,95],[990,1,1,95,96],[991,1,1,96,97],[992,1,1,97,98],[994,1,1,98,99],[996,1,1,99,100]]],[42,111,101,100,201,[[997,13,13,100,113],[998,7,6,113,119],[999,1,1,119,120],[1000,14,14,120,134],[1001,2,2,134,136],[1002,4,4,136,140],[1003,1,1,140,141],[1004,2,2,141,143],[1007,8,8,143,151],[1008,1,1,151,152],[1009,5,5,152,157],[1010,5,5,157,162],[1012,2,2,162,164],[1014,6,4,164,168],[1015,13,13,168,181],[1016,11,9,181,190],[1017,16,11,190,201]]],[43,7,7,201,208,[[1019,2,2,201,203],[1024,2,2,203,205],[1029,1,1,205,206],[1030,1,1,206,207],[1038,1,1,207,208]]],[44,18,18,208,226,[[1048,1,1,208,209],[1049,1,1,209,210],[1054,3,3,210,213],[1055,6,6,213,219],[1056,3,3,219,222],[1057,1,1,222,223],[1059,1,1,223,224],[1060,2,2,224,226]]],[45,6,6,226,232,[[1062,1,1,226,227],[1064,1,1,227,228],[1070,2,2,228,230],[1075,2,2,230,232]]],[46,3,3,232,235,[[1083,3,3,232,235]]],[47,2,2,235,237,[[1093,1,1,235,236],[1094,1,1,236,237]]],[48,2,2,237,239,[[1100,1,1,237,238],[1101,1,1,238,239]]],[53,1,1,239,240,[[1123,1,1,239,240]]],[57,12,11,240,251,[[1133,2,2,240,242],[1135,1,1,242,243],[1137,1,1,243,244],[1140,5,4,244,248],[1142,3,3,248,251]]],[58,2,2,251,253,[[1149,2,2,251,253]]],[61,3,3,253,256,[[1160,3,3,253,256]]],[65,24,23,256,279,[[1167,1,1,256,257],[1168,8,8,257,265],[1169,6,6,265,271],[1171,1,1,271,272],[1180,1,1,272,273],[1183,1,1,273,274],[1184,1,1,274,275],[1185,2,1,275,276],[1188,3,3,276,279]]]],[23215,23218,23219,23228,23337,23349,23352,23365,23371,23385,23388,23407,23416,23502,23533,23553,23590,23667,23687,23725,23726,23749,23770,23780,23782,23798,23799,23813,23815,23842,23857,23868,23880,23884,23892,23893,23915,24072,24085,24090,24092,24094,24099,24118,24151,24256,24259,24270,24277,24291,24292,24293,24358,24383,24400,24403,24445,24457,24481,24497,24501,24512,24517,24529,24557,24573,24599,24611,24612,24615,24630,24642,24661,24662,24663,24673,24689,24716,24718,24767,24768,24781,24784,24786,24788,24791,24795,24799,24817,24854,24879,25036,25146,25429,25649,25694,25753,25821,25875,26027,26065,26073,26080,26082,26083,26085,26087,26089,26090,26091,26092,26093,26095,26098,26099,26100,26102,26103,26105,26124,26163,26165,26166,26167,26171,26172,26175,26177,26181,26182,26184,26190,26205,26206,26216,26218,26262,26265,26277,26299,26378,26403,26420,26530,26534,26546,26547,26550,26562,26563,26567,26584,26636,26638,26639,26640,26655,26673,26674,26676,26677,26690,26743,26744,26790,26802,26811,26823,26829,26830,26831,26834,26835,26839,26840,26849,26851,26852,26853,26860,26862,26869,26880,26882,26883,26884,26886,26889,26894,26896,26901,26903,26905,26908,26910,26913,26914,26915,26917,26919,26920,26966,26983,27164,27165,27345,27397,27675,28010,28025,28170,28172,28180,28196,28199,28204,28207,28208,28209,28211,28213,28218,28264,28291,28313,28315,28375,28414,28548,28550,28699,28712,28900,28915,28916,29118,29161,29280,29318,29781,29969,29970,30002,30036,30100,30101,30102,30105,30138,30149,30163,30342,30343,30554,30556,30559,30705,30718,30724,30725,30728,30729,30734,30735,30746,30747,30752,30753,30759,30760,30768,30784,30939,30990,31000,31026,31089,31090,31100]]],["say",[281,277,[[39,88,86,0,86,[[931,2,1,0,1],[932,1,1,1,2],[933,9,9,2,11],[934,5,5,11,16],[936,3,3,16,19],[938,3,3,19,22],[939,7,7,22,29],[940,3,3,29,32],[941,2,2,32,34],[942,1,1,34,35],[943,2,2,35,37],[944,4,4,37,41],[945,3,3,41,44],[946,6,6,44,50],[947,6,6,50,56],[948,3,3,56,59],[949,6,5,59,64],[950,3,3,64,67],[951,5,5,67,72],[952,3,3,72,75],[953,3,3,75,78],[954,6,6,78,84],[955,2,2,84,86]]],[40,40,39,86,125,[[958,2,2,86,88],[959,1,1,88,89],[960,1,1,89,90],[961,1,1,90,91],[962,3,3,91,94],[963,1,1,94,95],[964,4,4,95,99],[965,4,4,99,103],[966,4,4,103,107],[967,3,3,107,110],[968,4,4,110,114],[969,4,3,114,117],[970,8,8,117,125]]],[41,58,57,125,182,[[975,2,1,125,126],[976,2,2,126,128],[977,1,1,128,129],[978,3,3,129,132],[979,9,9,132,141],[981,2,2,141,143],[982,3,3,143,146],[983,6,6,146,152],[984,10,10,152,162],[985,3,3,162,165],[986,1,1,165,166],[987,2,2,166,168],[988,1,1,168,169],[989,1,1,169,170],[990,2,2,170,172],[991,1,1,172,173],[992,1,1,173,174],[993,2,2,174,176],[994,4,4,176,180],[995,2,2,180,182]]],[42,43,43,182,225,[[997,2,2,182,184],[999,3,3,184,187],[1000,2,2,187,189],[1001,4,4,189,193],[1002,4,4,193,197],[1003,1,1,197,198],[1004,6,6,198,204],[1005,3,3,204,207],[1006,2,2,207,209],[1007,1,1,209,210],[1008,1,1,210,211],[1009,6,6,211,217],[1010,1,1,217,218],[1012,4,4,218,222],[1016,1,1,222,223],[1017,2,2,223,225]]],[43,5,5,225,230,[[1022,1,1,225,226],[1023,1,1,226,227],[1038,1,1,227,228],[1040,2,2,228,230]]],[44,9,9,230,239,[[1048,1,1,230,231],[1049,1,1,231,232],[1054,1,1,232,233],[1055,2,2,233,235],[1056,2,2,235,237],[1057,1,1,237,238],[1060,1,1,238,239]]],[45,4,4,239,243,[[1062,1,1,239,240],[1068,1,1,240,241],[1071,1,1,241,242],[1076,1,1,242,243]]],[46,2,2,243,245,[[1086,1,1,243,244],[1088,1,1,244,245]]],[47,5,5,245,250,[[1091,1,1,245,246],[1093,1,1,246,247],[1094,1,1,247,248],[1095,2,2,248,250]]],[48,1,1,250,251,[[1100,1,1,250,251]]],[50,1,1,251,252,[[1108,1,1,251,252]]],[51,2,2,252,254,[[1114,1,1,252,253],[1115,1,1,253,254]]],[53,1,1,254,255,[[1119,1,1,254,255]]],[54,1,1,255,256,[[1126,1,1,255,256]]],[55,1,1,256,257,[[1130,1,1,256,257]]],[56,2,2,257,259,[[1132,2,2,257,259]]],[57,3,3,259,262,[[1143,2,2,259,261],[1145,1,1,261,262]]],[58,4,4,262,266,[[1146,1,1,262,263],[1147,1,1,263,264],[1149,2,2,264,266]]],[61,1,1,266,267,[[1163,1,1,266,267]]],[65,10,10,267,277,[[1168,2,2,267,269],[1169,1,1,269,270],[1172,4,4,270,274],[1182,2,2,274,276],[1188,1,1,276,277]]]],[23201,23226,23252,23254,23256,23260,23262,23266,23268,23273,23278,23284,23287,23298,23307,23311,23354,23355,23356,23432,23440,23459,23466,23468,23470,23477,23478,23481,23483,23495,23520,23525,23556,23590,23614,23638,23666,23674,23685,23687,23700,23710,23712,23720,23730,23737,23740,23745,23746,23749,23769,23771,23772,23785,23786,23790,23799,23814,23825,23842,23847,23857,23867,23869,23893,23895,23914,23921,23934,23948,23954,23957,23959,23991,24004,24020,24048,24053,24067,24075,24076,24083,24088,24118,24151,24162,24271,24278,24316,24361,24405,24418,24444,24445,24474,24512,24519,24527,24529,24539,24549,24551,24579,24603,24616,24617,24635,24663,24664,24668,24687,24691,24708,24716,24722,24747,24754,24763,24772,24773,24779,24784,24812,24819,24823,25033,25084,25087,25131,25173,25188,25192,25203,25204,25209,25221,25223,25228,25229,25242,25244,25319,25321,25368,25372,25375,25407,25413,25414,25423,25434,25456,25460,25463,25464,25467,25481,25486,25496,25503,25513,25514,25542,25544,25553,25577,25595,25598,25629,25661,25705,25717,25757,25820,25829,25858,25880,25882,25901,25934,25965,25978,26082,26095,26123,26125,26131,26176,26191,26229,26234,26235,26244,26283,26289,26304,26310,26354,26385,26415,26427,26432,26435,26439,26457,26459,26481,26482,26488,26531,26604,26643,26646,26650,26651,26663,26668,26680,26738,26746,26749,26752,26880,26901,26916,27097,27115,27687,27742,27764,27999,28031,28156,28206,28207,28210,28220,28248,28311,28375,28495,28596,28730,28960,29005,29066,29119,29132,29164,29178,29289,29498,29618,29624,29703,29834,29916,29957,29959,30186,30204,30247,30279,30307,30350,30352,30640,30726,30741,30755,30796,30798,30799,30800,30959,30961,31097]]],["sayest",[20,20,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,3,3,2,5,[[961,1,1,2,3],[970,1,1,3,4],[971,1,1,4,5]]],[41,4,4,5,9,[[980,1,1,5,6],[992,1,1,6,7],[994,1,1,7,8],[995,1,1,8,9]]],[42,8,8,9,17,[[997,1,1,9,10],[1004,3,3,10,13],[1005,1,1,13,14],[1008,1,1,14,15],[1010,1,1,15,16],[1014,1,1,16,17]]],[44,1,1,17,18,[[1047,1,1,17,18]]],[45,1,1,18,19,[[1075,1,1,18,19]]],[65,1,1,19,20,[[1169,1,1,19,20]]]],[24124,24140,24395,24822,24828,25290,25800,25924,25938,26066,26386,26414,26433,26457,26614,26677,26822,27984,28694,30763]]],["saying",[341,340,[[39,102,102,0,102,[[929,2,2,0,2],[930,3,3,2,5],[931,4,4,5,9],[932,1,1,9,10],[933,1,1,10,11],[934,1,1,11,12],[936,8,8,12,20],[937,6,6,20,26],[938,2,2,26,28],[939,1,1,28,29],[940,2,2,29,31],[941,5,5,31,36],[942,5,5,36,41],[943,6,6,41,47],[944,3,3,47,50],[945,4,4,50,54],[946,4,4,54,58],[947,2,2,58,60],[948,2,2,60,62],[949,7,7,62,69],[950,5,5,69,74],[952,2,2,74,76],[953,6,6,76,82],[954,9,9,82,91],[955,9,9,91,100],[956,2,2,100,102]]],[40,41,41,102,143,[[957,5,5,102,107],[958,1,1,107,108],[959,2,2,108,110],[961,3,3,110,113],[962,2,2,113,115],[963,1,1,115,116],[964,5,5,116,121],[965,4,4,121,125],[966,3,3,125,128],[967,3,3,128,131],[968,3,3,131,134],[969,1,1,134,135],[970,3,3,135,138],[971,5,5,138,143]]],[41,83,82,143,225,[[973,4,4,143,147],[974,1,1,147,148],[975,4,4,148,152],[976,4,4,152,156],[977,5,5,156,161],[979,7,7,161,168],[980,8,8,168,176],[981,3,3,176,179],[982,2,2,179,181],[983,1,1,181,182],[984,2,2,182,184],[985,2,2,184,186],[986,1,1,186,187],[987,4,4,187,191],[989,1,1,191,192],[990,4,4,192,196],[991,5,5,196,201],[992,4,4,201,205],[993,2,2,205,207],[994,6,6,207,213],[995,11,10,213,223],[996,2,2,223,225]]],[42,21,21,225,246,[[997,3,3,225,228],[1000,2,2,228,230],[1002,1,1,230,231],[1003,3,3,231,234],[1004,1,1,234,235],[1005,2,2,235,237],[1006,1,1,237,238],[1007,3,3,238,241],[1008,2,2,241,243],[1014,1,1,243,244],[1015,2,2,244,246]]],[43,46,46,246,292,[[1018,1,1,246,247],[1019,3,3,247,250],[1020,1,1,250,251],[1022,1,1,251,252],[1024,1,1,252,253],[1025,2,2,253,255],[1026,1,1,255,256],[1027,1,1,256,257],[1028,3,3,257,260],[1029,1,1,260,261],[1030,1,1,261,262],[1031,2,2,262,264],[1032,3,3,264,267],[1033,5,5,267,272],[1034,2,2,272,274],[1036,4,4,274,278],[1037,1,1,278,279],[1038,2,2,279,281],[1039,3,3,281,284],[1040,2,2,284,286],[1041,1,1,286,287],[1042,1,1,287,288],[1043,3,3,288,291],[1044,1,1,291,292]]],[44,1,1,292,293,[[1056,1,1,292,293]]],[45,1,1,293,294,[[1072,1,1,293,294]]],[54,1,1,294,295,[[1126,1,1,294,295]]],[57,4,4,295,299,[[1134,1,1,295,296],[1136,1,1,296,297],[1140,1,1,297,298],[1144,1,1,298,299]]],[60,1,1,299,300,[[1158,1,1,299,300]]],[64,1,1,300,301,[[1166,1,1,300,301]]],[65,39,39,301,340,[[1167,1,1,301,302],[1170,2,2,302,304],[1171,2,2,304,306],[1172,2,2,306,308],[1173,2,2,308,310],[1174,1,1,310,311],[1176,1,1,311,312],[1177,3,3,312,315],[1178,1,1,315,316],[1179,2,2,316,318],[1180,4,4,318,322],[1181,1,1,322,323],[1182,2,2,323,325],[1183,1,1,325,326],[1184,7,7,326,333],[1185,5,5,333,338],[1187,2,2,338,340]]]],[23164,23166,23182,23184,23186,23194,23195,23206,23209,23223,23236,23313,23347,23348,23351,23362,23370,23372,23374,23376,23393,23397,23406,23408,23409,23412,23422,23424,23476,23506,23527,23542,23563,23570,23574,23575,23612,23623,23624,23627,23630,23634,23637,23640,23655,23656,23658,23679,23685,23694,23709,23710,23714,23725,23728,23753,23755,23756,23765,23787,23822,23823,23830,23835,23836,23841,23846,23851,23863,23876,23888,23903,23907,23915,23960,23962,24017,24019,24028,24045,24052,24053,24062,24071,24081,24093,24096,24102,24119,24123,24124,24138,24140,24148,24152,24153,24158,24169,24175,24183,24204,24213,24222,24230,24240,24242,24255,24272,24299,24321,24373,24376,24387,24409,24432,24500,24515,24516,24526,24527,24533,24545,24549,24563,24576,24614,24623,24637,24649,24657,24671,24679,24691,24699,24723,24798,24811,24822,24830,24835,24855,24860,24862,24917,24956,24959,24960,24986,25029,25035,25039,25041,25067,25098,25099,25104,25115,25119,25128,25133,25137,25199,25201,25211,25214,25215,25227,25234,25254,25269,25270,25275,25283,25294,25295,25299,25319,25336,25339,25380,25388,25450,25475,25476,25543,25549,25560,25590,25591,25594,25597,25655,25691,25701,25706,25726,25738,25745,25747,25749,25751,25781,25784,25793,25800,25833,25834,25883,25884,25921,25923,25928,25930,25937,25938,25940,25953,25956,25970,25972,25974,25975,25982,26014,26020,26059,26070,26076,26187,26207,26309,26343,26356,26365,26393,26442,26459,26514,26526,26554,26555,26601,26603,26825,26831,26837,26929,26956,26961,26989,27021,27084,27175,27186,27202,27220,27285,27311,27314,27325,27344,27377,27425,27429,27447,27455,27466,27492,27498,27500,27511,27518,27530,27542,27589,27598,27611,27613,27649,27685,27704,27711,27722,27730,27743,27746,27771,27810,27837,27845,27854,27888,28211,28625,29845,29983,30021,30103,30238,30526,30686,30714,30776,30778,30788,30792,30794,30803,30820,30823,30840,30865,30873,30884,30887,30901,30912,30922,30934,30935,30939,30944,30949,30955,30971,30976,30995,30997,31003,31009,31011,31012,31014,31018,31021,31022,31023,31034,31056,31062]]],["sayings",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27432]]],["shew",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28769]]],["spake",[17,17,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,8,8,2,10,[[977,1,1,2,3],[981,2,2,3,5],[983,1,1,5,6],[985,1,1,6,7],[990,1,1,7,8],[993,1,1,8,9],[994,1,1,9,10]]],[42,6,6,10,16,[[998,1,1,10,11],[1002,1,1,11,12],[1004,1,1,12,13],[1007,1,1,13,14],[1009,2,2,14,16]]],[43,1,1,16,17,[[1025,1,1,16,17]]]],[23871,24785,25143,25332,25335,25432,25524,25689,25831,25929,26116,26328,26408,26579,26652,26654,27182]]],["speak",[30,29,[[40,2,2,0,2,[[968,1,1,0,1],[970,1,1,1,2]]],[41,2,2,2,4,[[979,1,1,2,3],[992,1,1,3,4]]],[42,2,2,4,6,[[1004,1,1,4,5],[1009,1,1,5,6]]],[43,2,2,6,8,[[1041,1,1,6,7],[1043,1,1,7,8]]],[44,3,3,8,11,[[1048,1,1,8,9],[1051,1,1,9,10],[1056,1,1,10,11]]],[45,7,7,11,18,[[1062,1,1,11,12],[1067,1,1,12,13],[1068,3,3,13,16],[1071,1,1,16,17],[1076,1,1,17,18]]],[46,5,4,18,22,[[1083,1,1,18,19],[1084,1,1,19,20],[1085,1,1,20,21],[1088,2,1,21,22]]],[47,1,1,22,23,[[1093,1,1,22,23]]],[48,2,2,23,25,[[1101,2,2,23,25]]],[49,1,1,25,26,[[1106,1,1,25,26]]],[53,1,1,26,27,[[1120,1,1,26,27]]],[57,1,1,27,28,[[1141,1,1,27,28]]],[65,1,1,28,29,[[1168,1,1,28,29]]]],[24674,24825,25219,25788,26407,26648,27779,27824,27996,28087,28222,28373,28472,28493,28499,28522,28582,28752,28911,28919,28940,29010,29117,29316,29336,29453,29723,30110,30741]]],["speakest",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[42,1,1,1,2,[[1012,1,1,1,2]]]],[25500,26755]]],["speaketh",[4,4,[[43,2,2,0,2,[[1019,1,1,0,1],[1025,1,1,1,2]]],[44,1,1,2,3,[[1055,1,1,2,3]]],[53,1,1,3,4,[[1122,1,1,3,4]]]],[26974,27210,28194,29748]]],["speaking",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26926]]],["spoken",[7,7,[[41,1,1,0,1,[[990,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]],[43,3,3,2,5,[[1030,1,1,2,3],[1044,1,1,3,4],[1045,1,1,4,5]]],[57,2,2,5,7,[[1139,1,1,5,6],[1140,1,1,6,7]]]],[25722,26536,27407,27866,27923,30077,30093]]],["tell",[26,26,[[39,2,2,0,2,[[938,1,1,0,1],[949,1,1,1,2]]],[40,4,4,2,6,[[957,1,1,2,3],[964,1,1,3,4],[966,1,1,4,5],[967,1,1,5,6]]],[41,14,14,6,20,[[976,1,1,6,7],[981,1,1,7,8],[982,1,1,8,9],[984,2,2,9,11],[985,3,3,11,14],[989,1,1,14,15],[990,2,2,15,17],[991,1,1,17,18],[992,1,1,18,19],[994,1,1,19,20]]],[42,4,4,20,24,[[1004,1,1,20,21],[1008,1,1,21,22],[1009,1,1,22,23],[1012,1,1,23,24]]],[43,1,1,24,25,[[1034,1,1,24,25]]],[49,1,1,25,26,[[1105,1,1,25,26]]]],[23444,23853,24245,24530,24620,24673,25088,25328,25387,25510,25518,25521,25523,25545,25685,25696,25702,25771,25787,25898,26426,26602,26649,26733,27544,29439]]],["telleth",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26602]]],["told",[4,4,[[41,1,1,0,1,[[996,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[26001,29439,29666,30690]]],["uttered",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30041]]]]},{"k":"G3005","v":[["remnant",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28214]]]]},{"k":"G3006","v":[["smooth",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25030]]]]},{"k":"G3007","v":[["*",[6,6,[[41,1,1,0,1,[[990,1,1,0,1]]],[55,2,2,1,3,[[1129,1,1,1,2],[1131,1,1,2,3]]],[58,3,3,3,6,[[1146,2,2,3,5],[1147,1,1,5,6]]]],[25710,29897,29936,30270,30271,30308]]],["+",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30308]]],["lack",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30271]]],["lackest",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25710]]],["wanting",[3,3,[[55,2,2,0,2,[[1129,1,1,0,1],[1131,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[29897,29936,30270]]]]},{"k":"G3008","v":[["*",[3,3,[[43,1,1,0,1,[[1030,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[27364,28330,30144]]],["minister",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28330]]],["ministered",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27364]]],["ministering",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30144]]]]},{"k":"G3009","v":[["*",[6,6,[[41,1,1,0,1,[[973,1,1,0,1]]],[46,1,1,1,2,[[1086,1,1,1,2]]],[49,2,2,2,4,[[1104,2,2,2,4]]],[57,2,2,4,6,[[1140,1,1,4,5],[1141,1,1,5,6]]]],[24916,28968,29408,29421,30098,30126]]],["ministration",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24916]]],["ministry",[2,2,[[57,2,2,0,2,[[1140,1,1,0,1],[1141,1,1,1,2]]]],[30098,30126]]],["service",[3,3,[[46,1,1,0,1,[[1086,1,1,0,1]]],[49,2,2,1,3,[[1104,2,2,1,3]]]],[28968,29408,29421]]]]},{"k":"G3010","v":[["ministering",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29977]]]]},{"k":"G3011","v":[["*",[5,5,[[44,2,2,0,2,[[1058,1,1,0,1],[1060,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[57,2,2,3,5,[[1133,1,1,3,4],[1140,1,1,4,5]]]],[28272,28319,29416,29970,30094]]],["minister",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[57,1,1,1,2,[[1140,1,1,1,2]]]],[28319,30094]]],["ministered",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29416]]],["ministers",[2,2,[[44,1,1,0,1,[[1058,1,1,0,1]]],[57,1,1,1,2,[[1133,1,1,1,2]]]],[28272,29970]]]]},{"k":"G3012","v":[["towel",[2,2,[[42,2,2,0,2,[[1009,2,2,0,2]]]],[26634,26635]]]]},{"k":"G3013","v":[["scales",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27234]]]]},{"k":"G3014","v":[["leprosy",[4,4,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,2,2,2,4,[[977,2,2,2,4]]]],[23348,24257,25119,25120]]]]},{"k":"G3015","v":[["*",[9,9,[[39,4,4,0,4,[[936,1,1,0,1],[938,1,1,1,2],[939,1,1,2,3],[954,1,1,3,4]]],[40,2,2,4,6,[[957,1,1,4,5],[970,1,1,5,6]]],[41,3,3,6,9,[[976,1,1,6,7],[979,1,1,7,8],[989,1,1,8,9]]]],[23347,23425,23464,24060,24255,24757,25090,25217,25663]]],["leper",[4,4,[[39,2,2,0,2,[[936,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[957,1,1,2,3],[970,1,1,3,4]]]],[23347,24060,24255,24757]]],["lepers",[5,5,[[39,2,2,0,2,[[938,1,1,0,1],[939,1,1,1,2]]],[41,3,3,2,5,[[976,1,1,2,3],[979,1,1,3,4],[989,1,1,4,5]]]],[23425,23464,25090,25217,25663]]]]},{"k":"G3016","v":[["*",[3,3,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[993,1,1,2,3]]]],[24715,25518,25828]]],["mite",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25518]]],["mites",[2,2,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]]],[24715,25828]]]]},{"k":"G3017","v":[["Levi",[5,5,[[41,2,2,0,2,[[975,2,2,0,2]]],[57,2,2,2,4,[[1139,2,2,2,4]]],[65,1,1,4,5,[[1173,1,1,4,5]]]],[25049,25054,30069,30073,30817]]]]},{"k":"G3018","v":[["Levi",[3,3,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,2,2,1,3,[[977,2,2,1,3]]]],[24274,25134,25136]]]]},{"k":"G3019","v":[["*",[3,3,[[41,1,1,0,1,[[982,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]],[43,1,1,2,3,[[1021,1,1,2,3]]]],[25395,26063,27058]]],["Levite",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]]],[25395,27058]]],["Levites",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26063]]]]},{"k":"G3020","v":[["Levitical",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30075]]]]},{"k":"G3021","v":[["*",[2,2,[[40,1,1,0,1,[[965,1,1,0,1]]],[65,1,1,1,2,[[1173,1,1,1,2]]]],[24541,30824]]],["+",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30824]]],["white",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24541]]]]},{"k":"G3022","v":[["*",[25,23,[[39,3,3,0,3,[[933,1,1,0,1],[945,1,1,1,2],[956,1,1,2,3]]],[40,2,2,3,5,[[965,1,1,3,4],[972,1,1,4,5]]],[41,1,1,5,6,[[981,1,1,5,6]]],[42,2,2,6,8,[[1000,1,1,6,7],[1016,1,1,7,8]]],[43,1,1,8,9,[[1018,1,1,8,9]]],[65,16,14,9,23,[[1167,2,1,9,10],[1168,1,1,10,11],[1169,3,3,11,14],[1170,1,1,14,15],[1172,2,2,15,17],[1173,2,2,17,19],[1180,1,1,19,20],[1185,3,2,20,22],[1186,1,1,22,23]]]],[23270,23702,24198,24541,24878,25330,26191,26879,26933,30711,30734,30750,30751,30764,30772,30795,30804,30819,30823,30940,31028,31031,31049]]],["+",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24878]]],["white",[24,22,[[39,3,3,0,3,[[933,1,1,0,1],[945,1,1,1,2],[956,1,1,2,3]]],[40,1,1,3,4,[[965,1,1,3,4]]],[41,1,1,4,5,[[981,1,1,4,5]]],[42,2,2,5,7,[[1000,1,1,5,6],[1016,1,1,6,7]]],[43,1,1,7,8,[[1018,1,1,7,8]]],[65,16,14,8,22,[[1167,2,1,8,9],[1168,1,1,9,10],[1169,3,3,10,13],[1170,1,1,13,14],[1172,2,2,14,16],[1173,2,2,16,18],[1180,1,1,18,19],[1185,3,2,19,21],[1186,1,1,21,22]]]],[23270,23702,24198,24541,25330,26191,26879,26933,30711,30734,30750,30751,30764,30772,30795,30804,30819,30823,30940,31028,31031,31049]]]]},{"k":"G3023","v":[["*",[9,9,[[54,1,1,0,1,[[1128,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]],[59,1,1,2,3,[[1155,1,1,2,3]]],[65,6,6,3,9,[[1170,1,1,3,4],[1171,1,1,4,5],[1175,2,2,5,7],[1176,1,1,7,8],[1179,1,1,8,9]]]],[29887,30205,30473,30775,30784,30848,30857,30864,30910]]],["+",[1,1,[[65,1,1,0,1,[[1171,1,1,0,1]]]],[30784]]],["lion",[5,5,[[54,1,1,0,1,[[1128,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]],[65,3,3,2,5,[[1170,1,1,2,3],[1176,1,1,3,4],[1179,1,1,4,5]]]],[29887,30473,30775,30864,30910]]],["lions",[3,3,[[57,1,1,0,1,[[1143,1,1,0,1]]],[65,2,2,1,3,[[1175,2,2,1,3]]]],[30205,30848,30857]]]]},{"k":"G3024","v":[["+",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30488]]]]},{"k":"G3025","v":[["*",[5,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[65,4,3,1,4,[[1180,3,2,1,3],[1185,1,1,3,4]]]],[23859,30945,30946,31032]]],["+",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31032]]],["winepress",[4,3,[[39,1,1,0,1,[[949,1,1,0,1]]],[65,3,2,1,3,[[1180,3,2,1,3]]]],[23859,30945,30946]]]]},{"k":"G3026","v":[["tales",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26002]]]]},{"k":"G3027","v":[["*",[15,15,[[39,4,4,0,4,[[949,1,1,0,1],[954,1,1,1,2],[955,2,2,2,4]]],[40,3,3,4,7,[[967,1,1,4,5],[970,1,1,5,6],[971,1,1,6,7]]],[41,4,4,7,11,[[982,2,2,7,9],[991,1,1,9,10],[994,1,1,10,11]]],[42,3,3,11,14,[[1006,2,2,11,13],[1014,1,1,13,14]]],[46,1,1,14,15,[[1088,1,1,14,15]]]],[23839,24109,24167,24173,24657,24802,24853,25393,25399,25777,25916,26482,26489,26825,29015]]],["robber",[2,2,[[42,2,2,0,2,[[1006,1,1,0,1],[1014,1,1,1,2]]]],[26482,26825]]],["robbers",[2,2,[[42,1,1,0,1,[[1006,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[26489,29015]]],["thief",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]]],[24109,24802,25916]]],["thieves",[8,8,[[39,3,3,0,3,[[949,1,1,0,1],[955,2,2,1,3]]],[40,2,2,3,5,[[967,1,1,3,4],[971,1,1,4,5]]],[41,3,3,5,8,[[982,2,2,5,7],[991,1,1,7,8]]]],[23839,24167,24173,24657,24853,25393,25399,25777]]]]},{"k":"G3028","v":[["receiving",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29457]]]]},{"k":"G3029","v":[["*",[14,14,[[39,4,4,0,4,[[930,1,1,0,1],[932,1,1,1,2],[936,1,1,2,3],[955,1,1,3,4]]],[40,4,4,4,8,[[957,1,1,4,5],[962,1,1,5,6],[965,1,1,6,7],[972,1,1,7,8]]],[41,1,1,8,9,[[995,1,1,8,9]]],[46,2,2,9,11,[[1088,1,1,9,10],[1089,1,1,10,11]]],[54,1,1,11,12,[[1128,1,1,11,12]]],[62,1,1,12,13,[[1164,1,1,12,13]]],[63,1,1,13,14,[[1165,1,1,13,14]]]],[23185,23217,23373,24143,24250,24458,24541,24875,25943,28994,29033,29885,30649,30661]]],["+",[5,5,[[39,1,1,0,1,[[930,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[46,2,2,3,5,[[1088,1,1,3,4],[1089,1,1,4,5]]]],[23185,24250,25943,28994,29033]]],["exceeding",[3,3,[[39,2,2,0,2,[[932,1,1,0,1],[936,1,1,1,2]]],[40,1,1,2,3,[[965,1,1,2,3]]]],[23217,23373,24541]]],["greatly",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]],[62,1,1,2,3,[[1164,1,1,2,3]]],[63,1,1,3,4,[[1165,1,1,3,4]]]],[24143,29885,30649,30661]]],["sore",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24458]]],["very",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24875]]]]},{"k":"G3030","v":[["frankincense",[2,2,[[39,1,1,0,1,[[930,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[23180,31006]]]]},{"k":"G3031","v":[["censer",[2,2,[[65,2,2,0,2,[[1174,2,2,0,2]]]],[30830,30832]]]]},{"k":"G3032","v":[["Libertines",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27110]]]]},{"k":"G3033","v":[["Libya",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26959]]]]},{"k":"G3034","v":[["*",[8,8,[[42,4,4,0,4,[[1006,3,3,0,3],[1007,1,1,3,4]]],[43,2,2,4,6,[[1022,1,1,4,5],[1031,1,1,5,6]]],[46,1,1,6,7,[[1088,1,1,6,7]]],[57,1,1,7,8,[[1143,1,1,7,8]]]],[26512,26513,26514,26531,27085,27433,29014,30209]]],["stone",[4,4,[[42,4,4,0,4,[[1006,3,3,0,3],[1007,1,1,3,4]]]],[26512,26513,26514,26531]]],["stoned",[4,4,[[43,2,2,0,2,[[1022,1,1,0,1],[1031,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[27085,27433,29014,30209]]]]},{"k":"G3035","v":[["stone",[3,3,[[42,1,1,0,1,[[998,1,1,0,1]]],[46,1,1,1,2,[[1080,1,1,1,2]]],[65,1,1,2,3,[[1175,1,1,2,3]]]],[26101,28844,30860]]]]},{"k":"G3036","v":[["*",[9,9,[[39,2,2,0,2,[[949,1,1,0,1],[951,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[985,1,1,3,4]]],[42,1,1,4,5,[[1004,1,1,4,5]]],[43,3,3,5,8,[[1024,2,2,5,7],[1031,1,1,7,8]]],[57,1,1,8,9,[[1144,1,1,8,9]]]],[23861,23955,24677,25552,26386,27174,27175,27419,30232]]],["stone",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27419]]],["stoned",[5,5,[[39,1,1,0,1,[[949,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]],[43,2,2,2,4,[[1024,2,2,2,4]]],[57,1,1,4,5,[[1144,1,1,4,5]]]],[23861,26386,27174,27175,30232]]],["stones",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24677]]],["stonest",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23955,25552]]]]},{"k":"G3037","v":[["*",[60,55,[[39,11,10,0,10,[[931,1,1,0,1],[932,2,2,1,3],[935,1,1,3,4],[949,2,2,4,6],[952,2,1,6,7],[955,2,2,7,9],[956,1,1,9,10]]],[40,9,8,10,18,[[961,1,1,10,11],[965,1,1,11,12],[968,1,1,12,13],[969,3,2,13,15],[971,1,1,15,16],[972,2,2,16,18]]],[41,14,12,18,30,[[975,1,1,18,19],[976,2,2,19,21],[983,1,1,21,22],[991,3,2,22,24],[992,2,2,24,26],[993,3,2,26,28],[994,1,1,28,29],[996,1,1,29,30]]],[42,7,7,30,37,[[1004,2,2,30,32],[1006,1,1,32,33],[1007,3,3,33,36],[1016,1,1,36,37]]],[43,2,2,37,39,[[1021,1,1,37,38],[1034,1,1,38,39]]],[44,2,2,39,41,[[1054,2,2,39,41]]],[45,1,1,41,42,[[1064,1,1,41,42]]],[46,1,1,42,43,[[1080,1,1,42,43]]],[59,5,5,43,48,[[1152,5,5,43,48]]],[65,8,7,48,55,[[1170,1,1,48,49],[1183,1,1,49,50],[1184,3,3,50,53],[1187,3,2,53,55]]]],[23201,23212,23215,23325,23868,23870,23959,24189,24195,24197,24369,24580,24683,24718,24719,24872,24876,24877,25033,25066,25074,25416,25771,25775,25796,25797,25831,25832,25905,25993,26388,26440,26512,26561,26562,26564,26868,27033,27552,28187,28188,28422,28848,30403,30404,30405,30406,30407,30771,30979,31005,31009,31014,31064,31072]]],["+",[12,8,[[39,2,1,0,1,[[952,2,1,0,1]]],[40,3,2,1,3,[[965,1,1,1,2],[969,2,1,2,3]]],[41,4,2,3,5,[[991,2,1,3,4],[993,2,1,4,5]]],[44,2,2,5,7,[[1054,2,2,5,7]]],[59,1,1,7,8,[[1152,1,1,7,8]]]],[23959,24580,24719,25775,25832,28187,28188,30405]]],["stone",[31,30,[[39,7,7,0,7,[[932,1,1,0,1],[935,1,1,1,2],[949,2,2,2,4],[955,2,2,4,6],[956,1,1,6,7]]],[40,4,4,7,11,[[968,1,1,7,8],[971,1,1,8,9],[972,2,2,9,11]]],[41,6,6,11,17,[[976,2,2,11,13],[983,1,1,13,14],[992,2,2,14,16],[996,1,1,16,17]]],[42,5,5,17,22,[[1004,1,1,17,18],[1007,3,3,18,21],[1016,1,1,21,22]]],[43,2,2,22,24,[[1021,1,1,22,23],[1034,1,1,23,24]]],[59,3,3,24,27,[[1152,3,3,24,27]]],[65,4,3,27,30,[[1170,1,1,27,28],[1184,1,1,28,29],[1187,2,1,29,30]]]],[23215,23325,23868,23870,24189,24195,24197,24683,24872,24876,24877,25066,25074,25416,25796,25797,25993,26388,26561,26562,26564,26868,27033,27552,30403,30406,30407,30771,31014,31064]]],["stone's",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25905]]],["stones",[16,16,[[39,2,2,0,2,[[931,1,1,0,1],[932,1,1,1,2]]],[40,2,2,2,4,[[961,1,1,2,3],[969,1,1,3,4]]],[41,3,3,4,7,[[975,1,1,4,5],[991,1,1,5,6],[993,1,1,6,7]]],[42,2,2,7,9,[[1004,1,1,7,8],[1006,1,1,8,9]]],[45,1,1,9,10,[[1064,1,1,9,10]]],[46,1,1,10,11,[[1080,1,1,10,11]]],[59,1,1,11,12,[[1152,1,1,11,12]]],[65,4,4,12,16,[[1183,1,1,12,13],[1184,2,2,13,15],[1187,1,1,15,16]]]],[23201,23212,24369,24718,25033,25771,25831,26440,26512,28422,28848,30404,30979,31005,31009,31072]]]]},{"k":"G3038","v":[["Pavement",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26838]]]]},{"k":"G3039","v":[["+",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,1,1,1,2,[[992,1,1,1,2]]]],[23870,25797]]]]},{"k":"G3040","v":[["haven",[2,1,[[43,2,1,0,1,[[1044,2,1,0,1]]]],[27867]]]]},{"k":"G3041","v":[["lake",[10,10,[[41,5,5,0,5,[[977,2,2,0,2],[980,3,3,2,5]]],[65,5,5,5,10,[[1185,1,1,5,6],[1186,3,3,6,9],[1187,1,1,9,10]]]],[25108,25109,25267,25268,25278,31037,31048,31052,31053,31061]]]]},{"k":"G3042","v":[["*",[12,12,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,4,4,2,6,[[976,1,1,2,3],[987,2,2,3,5],[993,1,1,5,6]]],[43,2,2,6,8,[[1024,1,1,6,7],[1028,1,1,7,8]]],[44,1,1,8,9,[[1053,1,1,8,9]]],[46,1,1,9,10,[[1088,1,1,9,10]]],[65,2,2,10,12,[[1172,1,1,10,11],[1184,1,1,11,12]]]],[23964,24725,25088,25602,25605,25837,27127,27335,28151,29016,30801,31001]]],["dearth",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1028,1,1,1,2]]]],[27127,27335]]],["famine",[4,4,[[41,2,2,0,2,[[976,1,1,0,1],[987,1,1,1,2]]],[44,1,1,2,3,[[1053,1,1,2,3]]],[65,1,1,3,4,[[1184,1,1,3,4]]]],[25088,25602,28151,31001]]],["famines",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]]],[23964,24725,25837]]],["hunger",[3,3,[[41,1,1,0,1,[[987,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[65,1,1,2,3,[[1172,1,1,2,3]]]],[25605,29016,30801]]]]},{"k":"G3043","v":[["*",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[65,1,1,1,2,[[1181,1,1,1,2]]]],[23509,30952]]],["flax",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23509]]],["linen",[1,1,[[65,1,1,0,1,[[1181,1,1,0,1]]]],[30952]]]]},{"k":"G3044","v":[["Linus",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29891]]]]},{"k":"G3045","v":[["dainty",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31007]]]]},{"k":"G3046","v":[["pound",[2,2,[[42,2,2,0,2,[[1008,1,1,0,1],[1015,1,1,1,2]]]],[26583,26864]]]]},{"k":"G3047","v":[["west",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27867]]]]},{"k":"G3048","v":[["*",[2,2,[[45,2,2,0,2,[[1077,2,2,0,2]]]],[28777,28778]]],["collection",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28777]]],["gatherings",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28778]]]]},{"k":"G3049","v":[["*",[41,40,[[40,2,2,0,2,[[967,1,1,0,1],[971,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[43,1,1,3,4,[[1036,1,1,3,4]]],[44,19,19,4,23,[[1047,2,2,4,6],[1048,1,1,6,7],[1049,11,11,7,18],[1051,1,1,18,19],[1053,2,2,19,21],[1054,1,1,21,22],[1059,1,1,22,23]]],[45,3,3,23,26,[[1065,1,1,23,24],[1074,2,2,24,26]]],[46,8,7,26,33,[[1080,1,1,26,27],[1082,1,1,27,28],[1087,4,3,28,31],[1088,1,1,31,32],[1089,1,1,32,33]]],[47,1,1,33,34,[[1093,1,1,33,34]]],[49,2,2,34,36,[[1105,1,1,34,35],[1106,1,1,35,36]]],[54,1,1,36,37,[[1128,1,1,36,37]]],[57,1,1,37,38,[[1143,1,1,37,38]]],[58,1,1,38,39,[[1147,1,1,38,39]]],[59,1,1,39,40,[[1155,1,1,39,40]]]],[24671,24854,25901,27612,27965,27988,28019,28025,28026,28027,28028,28030,28031,28032,28033,28044,28045,28046,28079,28134,28152,28163,28294,28434,28670,28676,28846,28896,28973,28978,28982,28994,29028,29108,29434,29450,29886,30191,30316,30477]]],["+",[2,2,[[43,1,1,0,1,[[1036,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]]],[27612,29886]]],["Accounting",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30191]]],["account",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28434]]],["accounted",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]]],[28152,29108]]],["conclude",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28019]]],["count",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29434]]],["counted",[4,4,[[44,4,4,0,4,[[1047,1,1,0,1],[1049,2,2,1,3],[1054,1,1,3,4]]]],[27988,28025,28027,28163]]],["esteemeth",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28294]]],["impute",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28030]]],["imputed",[5,5,[[44,4,4,0,4,[[1049,4,4,0,4]]],[58,1,1,4,5,[[1147,1,1,4,5]]]],[28033,28044,28045,28046,30316]]],["imputeth",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28028]]],["imputing",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28896]]],["numbered",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24854]]],["on",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29450]]],["reasoned",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24671]]],["reckon",[2,2,[[44,2,2,0,2,[[1051,1,1,0,1],[1053,1,1,1,2]]]],[28079,28134]]],["reckoned",[4,4,[[41,1,1,0,1,[[994,1,1,0,1]]],[44,3,3,1,4,[[1049,3,3,1,4]]]],[25901,28026,28031,28032]]],["suppose",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[28994,30477]]],["think",[6,5,[[46,6,5,0,5,[[1080,1,1,0,1],[1087,4,3,1,4],[1089,1,1,4,5]]]],[28846,28973,28978,28982,29028]]],["thinkest",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27965]]],["thinketh",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28670]]],["thought",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28676]]]]},{"k":"G3050","v":[["*",[2,2,[[44,1,1,0,1,[[1057,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[28246,30401]]],["reasonable",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28246]]],["word",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30401]]]]},{"k":"G3051","v":[["oracles",[4,4,[[43,1,1,0,1,[[1024,1,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]],[57,1,1,2,3,[[1137,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]]],[27154,27993,30042,30457]]]]},{"k":"G3052","v":[["eloquent",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27581]]]]},{"k":"G3053","v":[["*",[2,2,[[44,1,1,0,1,[[1047,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]]],[27977,28976]]],["imaginations",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28976]]],["thoughts",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27977]]]]},{"k":"G3054","v":[["+",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29841]]]]},{"k":"G3055","v":[["words",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29792]]]]},{"k":"G3056","v":[["*",[330,316,[[39,32,30,0,30,[[933,2,2,0,2],[935,3,3,2,5],[936,2,2,5,7],[938,1,1,7,8],[940,4,3,8,11],[941,6,5,11,16],[943,2,2,16,18],[946,1,1,18,19],[947,3,3,19,22],[949,1,1,22,23],[950,2,2,23,25],[952,1,1,25,26],[953,1,1,26,27],[954,2,2,27,29],[956,1,1,29,30]]],[40,24,23,30,53,[[957,1,1,30,31],[958,1,1,31,32],[960,9,8,32,40],[961,1,1,40,41],[963,2,2,41,43],[964,2,2,43,45],[965,1,1,45,46],[966,2,2,46,48],[967,1,1,48,49],[968,1,1,49,50],[969,1,1,50,51],[970,1,1,51,52],[972,1,1,52,53]]],[41,33,33,53,86,[[973,4,4,53,57],[975,1,1,57,58],[976,3,3,58,61],[977,2,2,61,63],[978,1,1,63,64],[979,2,2,64,66],[980,5,5,66,71],[981,3,3,71,74],[982,1,1,74,75],[983,1,1,75,76],[984,1,1,76,77],[988,1,1,77,78],[992,2,2,78,80],[993,1,1,80,81],[994,1,1,81,82],[995,1,1,82,83],[996,3,3,83,86]]],[42,40,36,86,122,[[997,4,2,86,88],[998,1,1,88,89],[1000,4,4,89,93],[1001,2,2,93,95],[1002,1,1,95,96],[1003,2,2,96,98],[1004,6,6,98,104],[1006,2,2,104,106],[1008,2,2,106,108],[1010,3,2,108,110],[1011,4,3,110,113],[1013,4,4,113,117],[1014,2,2,117,119],[1015,2,2,119,121],[1017,1,1,121,122]]],[43,64,64,122,186,[[1018,1,1,122,123],[1019,3,3,123,126],[1021,3,3,126,129],[1022,2,2,129,131],[1023,4,4,131,135],[1024,2,2,135,137],[1025,4,4,137,141],[1027,3,3,141,144],[1028,3,3,144,147],[1029,1,1,147,148],[1030,8,8,148,156],[1031,3,3,156,159],[1032,8,8,159,167],[1033,3,3,167,170],[1034,2,2,170,172],[1035,3,3,172,175],[1036,4,4,175,179],[1037,6,6,179,185],[1039,1,1,185,186]]],[44,8,7,186,193,[[1048,1,1,186,187],[1054,4,3,187,190],[1058,1,1,190,191],[1059,1,1,191,192],[1060,1,1,192,193]]],[45,17,14,193,207,[[1062,3,3,193,196],[1063,4,3,196,199],[1065,2,2,199,201],[1073,2,1,201,202],[1075,4,3,202,205],[1076,2,2,205,207]]],[46,9,9,207,216,[[1078,1,1,207,208],[1079,1,1,208,209],[1081,1,1,209,210],[1082,1,1,210,211],[1083,1,1,211,212],[1085,1,1,212,213],[1087,2,2,213,215],[1088,1,1,215,216]]],[47,2,2,216,218,[[1095,1,1,216,217],[1096,1,1,217,218]]],[48,4,4,218,222,[[1097,1,1,218,219],[1100,1,1,219,220],[1101,1,1,220,221],[1102,1,1,221,222]]],[49,4,4,222,226,[[1103,1,1,222,223],[1104,1,1,223,224],[1106,2,2,224,226]]],[50,7,7,226,233,[[1107,2,2,226,228],[1108,1,1,228,229],[1109,2,2,229,231],[1110,2,2,231,233]]],[51,9,7,233,240,[[1111,3,3,233,236],[1112,4,2,236,238],[1114,2,2,238,240]]],[52,5,5,240,245,[[1117,3,3,240,243],[1118,2,2,243,245]]],[53,8,8,245,253,[[1119,1,1,245,246],[1121,1,1,246,247],[1122,4,4,247,251],[1123,1,1,251,252],[1124,1,1,252,253]]],[54,7,7,253,260,[[1125,1,1,253,254],[1126,4,4,254,258],[1128,2,2,258,260]]],[55,5,5,260,265,[[1129,2,2,260,262],[1130,2,2,262,264],[1131,1,1,264,265]]],[57,12,12,265,277,[[1134,1,1,265,266],[1136,3,3,266,269],[1137,2,2,269,271],[1138,1,1,271,272],[1139,1,1,272,273],[1144,1,1,273,274],[1145,3,3,274,277]]],[58,5,5,277,282,[[1146,4,4,277,281],[1148,1,1,281,282]]],[59,6,5,282,287,[[1151,1,1,282,283],[1152,1,1,283,284],[1153,3,2,284,286],[1154,1,1,286,287]]],[60,4,4,287,291,[[1156,1,1,287,288],[1157,1,1,288,289],[1158,2,2,289,291]]],[61,7,7,291,298,[[1159,2,2,291,293],[1160,3,3,293,296],[1161,1,1,296,297],[1163,1,1,297,298]]],[63,1,1,298,299,[[1165,1,1,298,299]]],[65,17,17,299,316,[[1167,3,3,299,302],[1169,2,2,302,304],[1172,1,1,304,305],[1178,1,1,305,306],[1185,2,2,306,308],[1186,1,1,308,309],[1187,1,1,309,310],[1188,6,6,310,316]]]],[23266,23271,23340,23342,23344,23353,23361,23431,23521,23525,23526,23558,23559,23560,23561,23562,23645,23656,23750,23763,23773,23784,23850,23887,23918,23992,24027,24055,24098,24210,24260,24262,24337,24338,24339,24340,24341,24342,24343,24356,24400,24476,24492,24532,24538,24548,24610,24612,24669,24686,24748,24793,24893,24895,24897,24913,24922,25029,25085,25095,25099,25108,25122,25193,25202,25212,25256,25257,25258,25260,25266,25327,25329,25345,25402,25433,25469,25622,25782,25799,25859,25925,25944,26008,26010,26035,26045,26058,26117,26193,26195,26197,26206,26234,26248,26317,26364,26368,26412,26418,26424,26432,26433,26436,26500,26516,26618,26628,26691,26692,26702,26719,26724,26765,26773,26776,26779,26794,26817,26833,26838,26921,26924,26971,26989,26990,27026,27051,27053,27064,27083,27103,27105,27106,27108,27138,27145,27180,27190,27197,27201,27288,27295,27303,27308,27326,27329,27361,27367,27369,27377,27388,27406,27408,27410,27411,27417,27426,27439,27448,27449,27457,27466,27469,27474,27477,27478,27489,27515,27519,27534,27536,27568,27571,27572,27595,27605,27623,27625,27628,27633,27650,27658,27661,27664,27726,27995,28161,28164,28183,28275,28292,28321,28368,28380,28381,28395,28398,28407,28452,28453,28642,28687,28697,28714,28720,28772,28818,28841,28861,28896,28905,28939,28981,28982,28995,29176,29194,29219,29301,29310,29356,29375,29407,29457,29459,29470,29490,29517,29533,29534,29545,29548,29565,29566,29568,29575,29583,29618,29621,29663,29676,29678,29679,29692,29711,29732,29752,29753,29756,29759,29780,29791,29822,29836,29838,29842,29844,29872,29885,29895,29901,29913,29916,29931,29979,30016,30026,30027,30041,30043,30045,30092,30231,30248,30258,30263,30284,30287,30288,30289,30321,30397,30407,30425,30439,30451,30498,30503,30527,30529,30541,30550,30555,30557,30564,30597,30631,30668,30699,30700,30706,30754,30756,30802,30902,31026,31030,31042,31058,31086,31087,31089,31090,31098,31099]]],["+",[14,14,[[39,1,1,0,1,[[953,1,1,0,1]]],[40,2,2,1,3,[[960,1,1,1,2],[963,1,1,2,3]]],[41,1,1,3,4,[[977,1,1,3,4]]],[42,1,1,4,5,[[1017,1,1,4,5]]],[43,4,4,5,9,[[1028,1,1,5,6],[1031,1,1,6,7],[1032,1,1,7,8],[1037,1,1,8,9]]],[46,1,1,9,10,[[1081,1,1,9,10]]],[49,1,1,10,11,[[1106,1,1,10,11]]],[51,1,1,11,12,[[1112,1,1,11,12]]],[57,2,2,12,14,[[1136,1,1,12,13],[1137,1,1,13,14]]]],[24027,24340,24476,25122,26921,27329,27426,27469,27650,28861,29457,29575,30027,30041]]],["I",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28720]]],["Word",[7,5,[[42,4,2,0,2,[[997,4,2,0,2]]],[61,2,2,2,4,[[1159,1,1,2,3],[1163,1,1,3,4]]],[65,1,1,4,5,[[1185,1,1,4,5]]]],[26045,26058,30541,30631,31030]]],["account",[8,8,[[39,2,2,0,2,[[940,1,1,0,1],[946,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[43,1,1,3,4,[[1036,1,1,3,4]]],[44,1,1,4,5,[[1059,1,1,4,5]]],[49,1,1,5,6,[[1106,1,1,5,6]]],[57,1,1,6,7,[[1145,1,1,6,7]]],[59,1,1,7,8,[[1154,1,1,7,8]]]],[23525,23750,25622,27625,28292,29459,30258,30451]]],["cause",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23266]]],["communication",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[23271,29301]]],["communications",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26008]]],["doctrine",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30045]]],["exhortation",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27628]]],["intent",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27288]]],["matter",[4,4,[[40,1,1,0,1,[[957,1,1,0,1]]],[43,3,3,1,4,[[1025,1,1,1,2],[1032,1,1,2,3],[1036,1,1,3,4]]]],[24260,27197,27448,27623]]],["preaching",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28381]]],["question",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24669]]],["reason",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[27571,30439]]],["rumour",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25212]]],["saying",[33,33,[[39,4,4,0,4,[[943,1,1,0,1],[947,2,2,1,3],[956,1,1,3,4]]],[40,4,4,4,8,[[963,1,1,4,5],[964,1,1,5,6],[965,1,1,6,7],[966,1,1,7,8]]],[41,1,1,8,9,[[973,1,1,8,9]]],[42,14,14,9,23,[[1000,2,2,9,11],[1002,1,1,11,12],[1003,2,2,12,14],[1004,3,3,14,17],[1008,1,1,17,18],[1011,1,1,18,19],[1014,2,2,19,21],[1015,2,2,21,23]]],[43,3,3,23,26,[[1023,1,1,23,24],[1024,1,1,24,25],[1033,1,1,25,26]]],[44,1,1,26,27,[[1058,1,1,26,27]]],[45,1,1,27,28,[[1076,1,1,27,28]]],[53,3,3,28,31,[[1119,1,1,28,29],[1121,1,1,29,30],[1122,1,1,30,31]]],[54,1,1,31,32,[[1126,1,1,31,32]]],[55,1,1,32,33,[[1131,1,1,32,33]]]],[23645,23773,23784,24210,24492,24532,24548,24610,24922,26193,26195,26317,26364,26368,26432,26433,26436,26618,26719,26794,26817,26833,26838,27106,27145,27519,28275,28772,29711,29732,29756,29838,29931]]],["sayings",[16,16,[[39,5,5,0,5,[[935,3,3,0,3],[947,1,1,3,4],[954,1,1,4,5]]],[41,3,3,5,8,[[978,1,1,5,6],[981,2,2,6,8]]],[42,2,2,8,10,[[1006,1,1,8,9],[1010,1,1,9,10]]],[44,1,1,10,11,[[1048,1,1,10,11]]],[65,5,5,11,16,[[1185,1,1,11,12],[1188,4,4,12,16]]]],[23340,23342,23344,23763,24055,25193,25329,25345,26500,26692,27995,31026,31086,31087,31089,31090]]],["shew",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29517]]],["speech",[8,8,[[43,1,1,0,1,[[1037,1,1,0,1]]],[45,3,3,1,4,[[1063,2,2,1,3],[1065,1,1,3,4]]],[46,2,2,4,6,[[1087,1,1,4,5],[1088,1,1,5,6]]],[50,1,1,6,7,[[1110,1,1,6,7]]],[55,1,1,7,8,[[1130,1,1,7,8]]]],[27633,28395,28398,28452,28981,28995,29548,29916]]],["talk",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23887]]],["thing",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,1,1,1,2,[[992,1,1,1,2]]]],[23850,25782]]],["things",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[24897,27083]]],["treatise",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26924]]],["utterance",[4,4,[[45,1,1,0,1,[[1062,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]],[50,1,1,3,4,[[1110,1,1,3,4]]]],[28368,28939,29356,29545]]],["word",[167,161,[[39,11,10,0,10,[[936,2,2,0,2],[940,1,1,2,3],[941,6,5,3,8],[943,1,1,8,9],[950,1,1,9,10]]],[40,11,10,10,20,[[958,1,1,10,11],[960,8,7,11,18],[961,1,1,18,19],[972,1,1,19,20]]],[41,15,15,20,35,[[973,1,1,20,21],[976,2,2,21,23],[977,1,1,23,24],[979,1,1,24,25],[980,5,5,25,30],[982,1,1,30,31],[983,1,1,31,32],[984,1,1,32,33],[994,1,1,33,34],[996,1,1,34,35]]],[42,18,18,35,53,[[998,1,1,35,36],[1000,2,2,36,38],[1001,2,2,38,40],[1004,3,3,40,43],[1006,1,1,43,44],[1008,1,1,44,45],[1010,1,1,45,46],[1011,3,3,46,49],[1013,4,4,49,53]]],[43,37,37,53,90,[[1019,1,1,53,54],[1021,3,3,54,57],[1023,3,3,57,60],[1025,3,3,60,63],[1027,2,2,63,65],[1028,2,2,65,67],[1029,1,1,67,68],[1030,8,8,68,76],[1031,2,2,76,78],[1032,3,3,78,81],[1033,2,2,81,83],[1034,2,2,83,85],[1035,1,1,85,86],[1036,2,2,86,88],[1037,1,1,88,89],[1039,1,1,89,90]]],[44,3,3,90,93,[[1054,2,2,90,92],[1060,1,1,92,93]]],[45,4,3,93,96,[[1065,1,1,93,94],[1073,2,1,94,95],[1075,1,1,95,96]]],[46,5,5,96,101,[[1078,1,1,96,97],[1079,1,1,97,98],[1082,1,1,98,99],[1083,1,1,99,100],[1087,1,1,100,101]]],[47,2,2,101,103,[[1095,1,1,101,102],[1096,1,1,102,103]]],[48,1,1,103,104,[[1097,1,1,103,104]]],[49,2,2,104,106,[[1103,1,1,104,105],[1104,1,1,105,106]]],[50,4,4,106,110,[[1107,2,2,106,108],[1109,2,2,108,110]]],[51,7,5,110,115,[[1111,3,3,110,113],[1112,3,1,113,114],[1114,1,1,114,115]]],[52,5,5,115,120,[[1117,3,3,115,118],[1118,2,2,118,120]]],[53,3,3,120,123,[[1122,2,2,120,122],[1123,1,1,122,123]]],[54,4,4,123,127,[[1126,3,3,123,126],[1128,1,1,126,127]]],[55,3,3,127,130,[[1129,2,2,127,129],[1130,1,1,129,130]]],[57,8,8,130,138,[[1134,1,1,130,131],[1136,2,2,131,133],[1137,1,1,133,134],[1139,1,1,134,135],[1144,1,1,135,136],[1145,2,2,136,138]]],[58,5,5,138,143,[[1146,4,4,138,142],[1148,1,1,142,143]]],[59,4,3,143,146,[[1151,1,1,143,144],[1152,1,1,144,145],[1153,2,1,145,146]]],[60,3,3,146,149,[[1156,1,1,146,147],[1158,2,2,147,149]]],[61,5,5,149,154,[[1159,1,1,149,150],[1160,3,3,150,153],[1161,1,1,153,154]]],[65,7,7,154,161,[[1167,2,2,154,156],[1169,2,2,156,158],[1172,1,1,158,159],[1178,1,1,159,160],[1186,1,1,160,161]]]],[23353,23361,23521,23558,23559,23560,23561,23562,23656,23918,24262,24337,24338,24339,24341,24342,24343,24356,24400,24893,24895,25095,25099,25108,25202,25256,25257,25258,25260,25266,25402,25433,25469,25925,26010,26117,26197,26206,26234,26248,26412,26418,26424,26516,26628,26692,26702,26719,26724,26765,26773,26776,26779,26990,27026,27051,27053,27103,27105,27108,27180,27190,27201,27295,27303,27308,27326,27361,27367,27369,27377,27388,27406,27408,27410,27411,27417,27439,27449,27477,27478,27489,27515,27534,27536,27568,27595,27605,27658,27726,28161,28164,28321,28453,28642,28714,28818,28841,28896,28905,28982,29176,29194,29219,29375,29407,29470,29490,29533,29534,29565,29566,29568,29583,29618,29663,29676,29678,29679,29692,29752,29759,29780,29836,29842,29844,29872,29895,29901,29913,29979,30016,30026,30043,30092,30231,30248,30263,30284,30287,30288,30289,30321,30397,30407,30425,30498,30527,30529,30550,30555,30557,30564,30597,30699,30706,30754,30756,30802,30902,31042]]],["words",[47,45,[[39,5,4,0,4,[[938,1,1,0,1],[940,2,1,1,2],[952,1,1,2,3],[954,1,1,3,4]]],[40,5,5,4,9,[[964,1,1,4,5],[966,1,1,5,6],[968,1,1,6,7],[969,1,1,7,8],[970,1,1,8,9]]],[41,8,8,9,17,[[973,1,1,9,10],[975,1,1,10,11],[976,1,1,11,12],[981,1,1,12,13],[992,1,1,13,14],[993,1,1,14,15],[995,1,1,15,16],[996,1,1,16,17]]],[42,1,1,17,18,[[1010,1,1,17,18]]],[43,10,10,18,28,[[1019,2,2,18,20],[1022,1,1,20,21],[1024,1,1,21,22],[1032,3,3,22,25],[1035,1,1,25,26],[1037,2,2,26,28]]],[45,6,5,28,33,[[1062,1,1,28,29],[1063,2,2,29,31],[1075,3,2,31,33]]],[48,1,1,33,34,[[1101,1,1,33,34]]],[51,1,1,34,35,[[1114,1,1,34,35]]],[53,2,2,35,37,[[1122,1,1,35,36],[1124,1,1,36,37]]],[54,2,2,37,39,[[1125,1,1,37,38],[1128,1,1,38,39]]],[60,1,1,39,40,[[1157,1,1,39,40]]],[63,1,1,40,41,[[1165,1,1,40,41]]],[65,4,4,41,45,[[1167,1,1,41,42],[1187,1,1,42,43],[1188,2,2,43,45]]]],[23431,23526,23992,24098,24538,24612,24686,24748,24793,24913,25029,25085,25327,25799,25859,25944,26035,26691,26971,26989,27064,27138,27457,27466,27474,27572,27661,27664,28380,28398,28407,28687,28697,29310,29621,29753,29791,29822,29885,30503,30668,30700,31058,31098,31099]]],["work",[2,1,[[44,2,1,0,1,[[1054,2,1,0,1]]]],[28183]]]]},{"k":"G3057","v":[["spear",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26859]]]]},{"k":"G3058","v":[["*",[4,4,[[42,1,1,0,1,[[1005,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[26468,27738,28445,30422]]],["Revilest",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27738]]],["reviled",[3,3,[[42,1,1,0,1,[[1005,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]]],[26468,28445,30422]]]]},{"k":"G3059","v":[["*",[3,2,[[53,1,1,0,1,[[1123,1,1,0,1]]],[59,2,1,1,2,[[1153,2,1,1,2]]]],[29777,30433]]],["+",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29777]]],["railing",[2,1,[[59,2,1,0,1,[[1153,2,1,0,1]]]],[30433]]]]},{"k":"G3060","v":[["*",[2,2,[[45,2,2,0,2,[[1066,1,1,0,1],[1067,1,1,1,2]]]],[28465,28477]]],["railer",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28465]]],["revilers",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28477]]]]},{"k":"G3061","v":[["*",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]],[43,1,1,2,3,[[1041,1,1,2,3]]]],[23964,25837,27774]]],["pestilences",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]]],[23964,25837]]],["pestilent",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27774]]]]},{"k":"G3062","v":[["*",[41,41,[[39,3,3,0,3,[[950,1,1,0,1],[953,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[960,1,1,3,4],[972,1,1,4,5]]],[41,6,6,5,11,[[980,1,1,5,6],[984,1,1,6,7],[990,2,2,7,9],[996,2,2,9,11]]],[43,5,5,11,16,[[1019,1,1,11,12],[1022,1,1,12,13],[1034,1,1,13,14],[1044,1,1,14,15],[1045,1,1,15,16]]],[44,2,2,16,18,[[1046,1,1,16,17],[1056,1,1,17,18]]],[45,4,4,18,22,[[1068,1,1,18,19],[1070,1,1,19,20],[1072,1,1,20,21],[1076,1,1,21,22]]],[46,2,2,22,24,[[1089,1,1,22,23],[1090,1,1,23,24]]],[47,1,1,24,25,[[1092,1,1,24,25]]],[48,2,2,25,27,[[1098,1,1,25,26],[1100,1,1,26,27]]],[49,2,2,27,29,[[1103,1,1,27,28],[1106,1,1,28,29]]],[51,2,2,29,31,[[1114,1,1,29,30],[1115,1,1,30,31]]],[53,1,1,31,32,[[1123,1,1,31,32]]],[60,1,1,32,33,[[1158,1,1,32,33]]],[65,8,8,33,41,[[1168,1,1,33,34],[1169,1,1,34,35],[1174,1,1,35,36],[1175,1,1,36,37],[1177,1,1,37,38],[1178,1,1,38,39],[1185,1,1,39,40],[1186,1,1,40,41]]]],[23878,24019,24178,24342,24886,25255,25485,25697,25699,26000,26001,26986,27072,27532,27899,27908,27943,28216,28499,28545,28634,28755,29035,29045,29094,29232,29289,29374,29445,29616,29627,29783,30538,30741,30748,30840,30860,30885,30908,31038,31043]]],["other",[15,15,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,2,2,1,3,[[990,1,1,1,2],[996,1,1,2,3]]],[43,1,1,3,4,[[1034,1,1,3,4]]],[44,1,1,4,5,[[1046,1,1,4,5]]],[45,2,2,5,7,[[1070,1,1,5,6],[1076,1,1,6,7]]],[46,2,2,7,9,[[1089,1,1,7,8],[1090,1,1,8,9]]],[47,1,1,9,10,[[1092,1,1,9,10]]],[48,1,1,10,11,[[1100,1,1,10,11]]],[49,2,2,11,13,[[1103,1,1,11,12],[1106,1,1,12,13]]],[60,1,1,13,14,[[1158,1,1,13,14]]],[65,1,1,14,15,[[1174,1,1,14,15]]]],[24019,25699,26001,27532,27943,28545,28755,29035,29045,29094,29289,29374,29445,30538,30840]]],["others",[7,7,[[41,2,2,0,2,[[980,1,1,0,1],[990,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]],[48,1,1,3,4,[[1098,1,1,3,4]]],[51,2,2,4,6,[[1114,1,1,4,5],[1115,1,1,5,6]]],[53,1,1,6,7,[[1123,1,1,6,7]]]],[25255,25697,27908,29232,29616,29627,29783]]],["remain",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30748]]],["remnant",[4,4,[[39,1,1,0,1,[[950,1,1,0,1]]],[65,3,3,1,4,[[1177,1,1,1,2],[1178,1,1,2,3],[1185,1,1,3,4]]]],[23878,30885,30908,31038]]],["residue",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24886]]],["rest",[12,12,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[996,1,1,2,3]]],[43,3,3,3,6,[[1019,1,1,3,4],[1022,1,1,4,5],[1044,1,1,5,6]]],[44,1,1,6,7,[[1056,1,1,6,7]]],[45,2,2,7,9,[[1068,1,1,7,8],[1072,1,1,8,9]]],[65,3,3,9,12,[[1168,1,1,9,10],[1175,1,1,10,11],[1186,1,1,11,12]]]],[24178,25485,26000,26986,27072,27899,28216,28499,28634,30741,30860,31043]]],["things",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24342]]]]},{"k":"G3063","v":[["*",[14,14,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[43,1,1,2,3,[[1044,1,1,2,3]]],[45,3,3,3,6,[[1062,1,1,3,4],[1065,1,1,4,5],[1068,1,1,5,6]]],[46,1,1,6,7,[[1090,1,1,6,7]]],[48,1,1,7,8,[[1102,1,1,7,8]]],[49,2,2,8,10,[[1105,1,1,8,9],[1106,1,1,9,10]]],[51,1,1,10,11,[[1114,1,1,10,11]]],[52,1,1,11,12,[[1118,1,1,11,12]]],[54,1,1,12,13,[[1128,1,1,12,13]]],[57,1,1,13,14,[[1142,1,1,13,14]]]],[24099,24795,27875,28379,28435,28516,29054,29347,29422,29450,29604,29679,29878,30146]]],["+",[2,2,[[45,2,2,0,2,[[1065,1,1,0,1],[1068,1,1,1,2]]]],[28435,28516]]],["Finally",[5,5,[[46,1,1,0,1,[[1090,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]],[49,2,2,2,4,[[1105,1,1,2,3],[1106,1,1,3,4]]],[52,1,1,4,5,[[1118,1,1,4,5]]]],[29054,29347,29422,29450,29679]]],["Furthermore",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29604]]],["Henceforth",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29878]]],["besides",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28379]]],["henceforth",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30146]]],["now",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24099,24795]]],["then",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27875]]]]},{"k":"G3064","v":[["henceforth",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29205]]]]},{"k":"G3065","v":[["*",[3,3,[[50,1,1,0,1,[[1110,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]]],[29556,29881,29962]]],["Lucas",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29962]]],["Luke",[2,2,[[50,1,1,0,1,[[1110,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]]],[29556,29881]]]]},{"k":"G3066","v":[["Lucius",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]]],[27363,28357]]]]},{"k":"G3067","v":[["washing",[2,2,[[48,1,1,0,1,[[1101,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[29330,29928]]]]},{"k":"G3068","v":[["washed",[6,6,[[42,1,1,0,1,[[1009,1,1,0,1]]],[43,2,2,1,3,[[1026,1,1,1,2],[1033,1,1,2,3]]],[57,1,1,3,4,[[1142,1,1,3,4]]],[60,1,1,4,5,[[1157,1,1,4,5]]],[65,1,1,5,6,[[1167,1,1,5,6]]]],[26640,27253,27516,30155,30522,30702]]]]},{"k":"G3069","v":[["Lydda",[3,3,[[43,3,3,0,3,[[1026,3,3,0,3]]]],[27248,27251,27254]]]]},{"k":"G3070","v":[["Lydia",[2,2,[[43,2,2,0,2,[[1033,2,2,0,2]]]],[27497,27523]]]]},{"k":"G3071","v":[["Lycaonia",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27420]]]]},{"k":"G3072","v":[["Lycaonia",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27425]]]]},{"k":"G3073","v":[["Lycia",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27860]]]]},{"k":"G3074","v":[["*",[6,5,[[39,2,2,0,2,[[935,1,1,0,1],[938,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[42,2,1,3,4,[[1006,2,1,3,4]]],[43,1,1,4,5,[[1037,1,1,4,5]]]],[23331,23433,25366,26493,27655]]],["wolf",[2,1,[[42,2,1,0,1,[[1006,2,1,0,1]]]],[26493]]],["wolves",[4,4,[[39,2,2,0,2,[[935,1,1,0,1],[938,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[43,1,1,3,4,[[1037,1,1,3,4]]]],[23331,23433,25366,27655]]]]},{"k":"G3075","v":[["havock",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27179]]]]},{"k":"G3076","v":[["*",[26,21,[[39,6,6,0,6,[[942,1,1,0,1],[945,1,1,1,2],[946,1,1,2,3],[947,1,1,3,4],[954,2,2,4,6]]],[40,2,2,6,8,[[966,1,1,6,7],[970,1,1,7,8]]],[42,2,2,8,10,[[1012,1,1,8,9],[1017,1,1,9,10]]],[44,1,1,10,11,[[1059,1,1,10,11]]],[46,12,7,11,18,[[1079,5,3,11,14],[1083,1,1,14,15],[1084,6,3,15,18]]],[48,1,1,18,19,[[1100,1,1,18,19]]],[51,1,1,19,20,[[1114,1,1,19,20]]],[59,1,1,20,21,[[1151,1,1,20,21]]]],[23606,23723,23758,23784,24076,24091,24610,24773,26746,26915,28295,28826,28828,28829,28908,28924,28925,28927,29302,29616,30380]]],["+",[6,5,[[39,3,3,0,3,[[945,1,1,0,1],[946,1,1,1,2],[954,1,1,2,3]]],[46,3,2,3,5,[[1079,1,1,3,4],[1084,2,1,4,5]]]],[23723,23758,24076,28826,28924]]],["grief",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28829]]],["grieve",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29302]]],["grieved",[5,5,[[40,1,1,0,1,[[966,1,1,0,1]]],[42,1,1,1,2,[[1017,1,1,1,2]]],[44,1,1,2,3,[[1059,1,1,2,3]]],[46,2,2,3,5,[[1079,2,2,3,5]]]],[24610,26915,28295,28828,28829]]],["heaviness",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30380]]],["sorrow",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29616]]],["sorrowed",[2,2,[[46,2,2,0,2,[[1084,2,2,0,2]]]],[28925,28927]]],["sorrowful",[5,5,[[39,2,2,0,2,[[947,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[42,1,1,3,4,[[1012,1,1,3,4]]],[46,1,1,4,5,[[1083,1,1,4,5]]]],[23784,24091,24773,26746,28908]]],["sorry",[4,3,[[39,1,1,0,1,[[942,1,1,0,1]]],[46,3,2,1,3,[[1079,1,1,1,2],[1084,2,1,2,3]]]],[23606,28826,28925]]]]},{"k":"G3077","v":[["*",[16,14,[[41,1,1,0,1,[[994,1,1,0,1]]],[42,4,4,1,5,[[1012,4,4,1,5]]],[44,1,1,5,6,[[1054,1,1,5,6]]],[46,6,5,6,11,[[1079,3,3,6,9],[1084,2,1,9,10],[1086,1,1,10,11]]],[49,2,1,11,12,[[1104,2,1,11,12]]],[57,1,1,12,13,[[1144,1,1,12,13]]],[59,1,1,13,14,[[1152,1,1,13,14]]]],[25909,26732,26746,26747,26748,28157,28825,28827,28831,28926,28963,29418,30223,30418]]],["+",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28963]]],["grief",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30418]]],["grievous",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30223]]],["heaviness",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[46,1,1,1,2,[[1079,1,1,1,2]]]],[28157,28825]]],["sorrow",[11,9,[[41,1,1,0,1,[[994,1,1,0,1]]],[42,4,4,1,5,[[1012,4,4,1,5]]],[46,4,3,5,8,[[1079,2,2,5,7],[1084,2,1,7,8]]],[49,2,1,8,9,[[1104,2,1,8,9]]]],[25909,26732,26746,26747,26748,28827,28831,28926,29418]]]]},{"k":"G3078","v":[["Lysanias",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25026]]]]},{"k":"G3079","v":[["Lysias",[3,3,[[43,3,3,0,3,[[1040,1,1,0,1],[1041,2,2,1,3]]]],[27760,27776,27791]]]]},{"k":"G3080","v":[["loosed",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28514]]]]},{"k":"G3081","v":[["better",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25653]]]]},{"k":"G3082","v":[["Lystra",[6,6,[[43,5,5,0,5,[[1031,3,3,0,3],[1033,2,2,3,5]]],[54,1,1,5,6,[[1127,1,1,5,6]]]],[27420,27422,27435,27484,27485,29864]]]]},{"k":"G3083","v":[["ransom",[2,2,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]]],[23820,24633]]]]},{"k":"G3084","v":[["*",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]],[59,1,1,2,3,[[1151,1,1,2,3]]]],[26012,29922,30392]]],["redeem",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29922]]],["redeemed",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[26012,30392]]]]},{"k":"G3085","v":[["*",[3,3,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[24961,25011,30117]]],["+",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24961]]],["redemption",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[25011,30117]]]]},{"k":"G3086","v":[["deliverer",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27151]]]]},{"k":"G3087","v":[["*",[12,11,[[39,1,1,0,1,[[933,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,2,2,2,4,[[980,1,1,2,3],[983,1,1,3,4]]],[57,1,1,4,5,[[1141,1,1,4,5]]],[65,7,6,5,11,[[1167,4,3,5,8],[1168,2,2,8,10],[1177,1,1,10,11]]]],[23249,24344,25261,25438,30107,30709,30710,30717,30718,30722,30876]]],["candlestick",[6,6,[[39,1,1,0,1,[[933,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,2,2,2,4,[[980,1,1,2,3],[983,1,1,3,4]]],[57,1,1,4,5,[[1141,1,1,4,5]]],[65,1,1,5,6,[[1168,1,1,5,6]]]],[23249,24344,25261,25438,30107,30722]]],["candlesticks",[6,5,[[65,6,5,0,5,[[1167,4,3,0,3],[1168,1,1,3,4],[1177,1,1,4,5]]]],[30709,30710,30717,30718,30876]]]]},{"k":"G3088","v":[["*",[14,14,[[39,2,2,0,2,[[933,1,1,0,1],[934,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,6,6,3,9,[[980,1,1,3,4],[983,3,3,4,7],[984,1,1,7,8],[987,1,1,8,9]]],[42,1,1,9,10,[[1001,1,1,9,10]]],[60,1,1,10,11,[[1156,1,1,10,11]]],[65,3,3,11,14,[[1184,1,1,11,12],[1187,1,1,12,13],[1188,1,1,13,14]]]],[23249,23304,24344,25261,25438,25439,25441,25494,25596,26245,30498,31016,31076,31085]]],["candle",[8,8,[[39,1,1,0,1,[[933,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,4,4,2,6,[[980,1,1,2,3],[983,2,2,3,5],[987,1,1,5,6]]],[65,2,2,6,8,[[1184,1,1,6,7],[1188,1,1,7,8]]]],[23249,24344,25261,25438,25441,25596,31016,31085]]],["light",[5,5,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,1,1,2,3,[[1001,1,1,2,3]]],[60,1,1,3,4,[[1156,1,1,3,4]]],[65,1,1,4,5,[[1187,1,1,4,5]]]],[23304,25439,26245,30498,31076]]],["lights",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25494]]]]},{"k":"G3089","v":[["*",[43,40,[[39,6,4,0,4,[[933,1,1,0,1],[944,2,1,1,2],[946,2,1,2,3],[949,1,1,3,4]]],[40,5,5,4,9,[[957,1,1,4,5],[963,1,1,5,6],[967,3,3,6,9]]],[41,7,6,9,15,[[975,1,1,9,10],[985,2,2,10,12],[991,4,3,12,15]]],[42,6,6,15,21,[[997,1,1,15,16],[998,1,1,16,17],[1001,1,1,17,18],[1003,1,1,18,19],[1006,1,1,19,20],[1007,1,1,20,21]]],[43,7,7,21,28,[[1019,1,1,21,22],[1024,1,1,22,23],[1030,2,2,23,25],[1039,1,1,25,26],[1041,1,1,26,27],[1044,1,1,27,28]]],[45,1,1,28,29,[[1068,1,1,28,29]]],[48,1,1,29,30,[[1098,1,1,29,30]]],[60,3,3,30,33,[[1158,3,3,30,33]]],[61,1,1,33,34,[[1161,1,1,33,34]]],[65,6,6,34,40,[[1171,2,2,34,36],[1175,2,2,36,38],[1186,2,2,38,40]]]],[23253,23691,23745,23828,24222,24498,24642,24644,24645,25041,25533,25534,25761,25762,25764,26071,26114,26228,26351,26516,26567,26973,27149,27387,27405,27734,27795,27896,28514,29243,30532,30533,30534,30587,30781,30784,30854,30855,31041,31045]]],["+",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26071]]],["Destroy",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26114]]],["Loose",[2,2,[[42,1,1,0,1,[[1007,1,1,0,1]]],[65,1,1,1,2,[[1175,1,1,1,2]]]],[26567,30854]]],["break",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23253]]],["broken",[4,4,[[42,3,3,0,3,[[1001,1,1,0,1],[1003,1,1,1,2],[1006,1,1,2,3]]],[43,1,1,3,4,[[1044,1,1,3,4]]]],[26228,26351,26516,27896]]],["destroy",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30587]]],["dissolved",[2,2,[[60,2,2,0,2,[[1158,2,2,0,2]]]],[30533,30534]]],["down",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29243]]],["loose",[13,13,[[39,3,3,0,3,[[944,1,1,0,1],[946,1,1,1,2],[949,1,1,2,3]]],[40,2,2,3,5,[[967,2,2,3,5]]],[41,4,4,5,9,[[985,1,1,5,6],[991,3,3,6,9]]],[43,2,2,9,11,[[1030,1,1,9,10],[1041,1,1,10,11]]],[65,2,2,11,13,[[1171,2,2,11,13]]]],[23691,23745,23828,24642,24644,25533,25761,25762,25764,27387,27795,30781,30784]]],["loosed",[10,10,[[39,2,2,0,2,[[944,1,1,0,1],[946,1,1,1,2]]],[40,1,1,2,3,[[963,1,1,2,3]]],[41,1,1,3,4,[[985,1,1,3,4]]],[43,2,2,4,6,[[1019,1,1,4,5],[1039,1,1,5,6]]],[45,1,1,6,7,[[1068,1,1,6,7]]],[65,3,3,7,10,[[1175,1,1,7,8],[1186,2,2,8,10]]]],[23691,23745,24498,25534,26973,27734,28514,30855,31041,31045]]],["loosing",[2,2,[[40,1,1,0,1,[[967,1,1,0,1]]],[41,1,1,1,2,[[991,1,1,1,2]]]],[24645,25764]]],["melt",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30532]]],["off",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27149]]],["unloose",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[24222,25041]]],["up",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27405]]]]},{"k":"G3090","v":[["Lois",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29814]]]]},{"k":"G3091","v":[["*",[4,4,[[41,3,3,0,3,[[989,3,3,0,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]]],[25679,25680,25683,30507]]],["Lot",[3,3,[[41,2,2,0,2,[[989,2,2,0,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[25679,25680,30507]]],["Lot's",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25683]]]]},{"k":"G3092","v":[["Maath",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25051]]]]},{"k":"G3093","v":[["Magdala",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23672]]]]},{"k":"G3094","v":[["Magdalene",[12,12,[[39,3,3,0,3,[[955,2,2,0,2],[956,1,1,2,3]]],[40,4,4,3,7,[[971,2,2,3,5],[972,2,2,5,7]]],[41,2,2,7,9,[[980,1,1,7,8],[996,1,1,8,9]]],[42,3,3,9,12,[[1015,1,1,9,10],[1016,2,2,10,12]]]],[24185,24190,24196,24866,24873,24874,24882,25247,26001,26850,26868,26885]]]]},{"k":"G3095","v":[["sorceries",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27187]]]]},{"k":"G3096","v":[["sorcery",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27185]]]]},{"k":"G3097","v":[["*",[6,5,[[39,4,3,0,3,[[930,4,3,0,3]]],[43,2,2,3,5,[[1030,2,2,3,5]]]],[23170,23176,23185,27368,27370]]],["men",[4,3,[[39,4,3,0,3,[[930,4,3,0,3]]]],[23170,23176,23185]]],["sorcerer",[2,2,[[43,2,2,0,2,[[1030,2,2,0,2]]]],[27368,27370]]]]},{"k":"G3098","v":[["Magog",[1,1,[[65,1,1,0,1,[[1186,1,1,0,1]]]],[31046]]]]},{"k":"G3099","v":[["Madian",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27145]]]]},{"k":"G3100","v":[["*",[4,4,[[39,3,3,0,3,[[941,1,1,0,1],[955,1,1,1,2],[956,1,1,2,3]]],[43,1,1,3,4,[[1031,1,1,3,4]]]],[23591,24186,24214,27435]]],["+",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24186]]],["instructed",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23591]]],["taught",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27435]]],["teach",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24214]]]]},{"k":"G3101","v":[["*",[268,252,[[39,74,71,0,71,[[933,1,1,0,1],[936,3,3,1,4],[937,6,5,4,9],[938,4,4,9,13],[939,2,2,13,15],[940,3,3,15,18],[941,2,2,18,20],[942,6,5,20,25],[943,7,6,25,31],[944,5,5,31,36],[945,5,5,36,41],[946,1,1,41,42],[947,4,4,42,46],[948,1,1,46,47],[949,3,3,47,50],[950,1,1,50,51],[951,1,1,51,52],[952,2,2,52,54],[954,11,11,54,65],[955,1,1,65,66],[956,5,5,66,71]]],[40,45,42,71,113,[[958,6,4,71,75],[959,2,2,75,77],[960,1,1,77,78],[961,1,1,78,79],[962,5,5,79,84],[963,3,3,84,87],[964,8,7,87,94],[965,4,4,94,98],[966,5,5,98,103],[967,2,2,103,105],[968,1,1,105,106],[969,1,1,106,107],[970,5,5,107,112],[972,1,1,112,113]]],[41,38,37,113,150,[[977,2,2,113,115],[978,5,5,115,120],[979,3,3,120,123],[980,2,2,123,125],[981,7,7,125,132],[982,1,1,132,133],[983,2,1,133,134],[984,2,2,134,136],[986,3,3,136,139],[988,1,1,139,140],[989,2,2,140,142],[990,1,1,142,143],[991,3,3,143,146],[992,1,1,146,147],[994,3,3,147,150]]],[42,81,74,150,224,[[997,2,2,150,152],[998,5,5,152,157],[999,2,2,157,159],[1000,6,6,159,165],[1002,13,10,165,175],[1003,1,1,175,176],[1004,1,1,176,177],[1005,4,3,177,180],[1007,4,4,180,184],[1008,2,2,184,186],[1009,4,4,186,190],[1011,1,1,190,191],[1012,2,2,191,193],[1014,9,7,193,200],[1015,4,3,200,203],[1016,11,11,203,214],[1017,10,10,214,224]]],[43,30,28,224,252,[[1018,1,1,224,225],[1023,3,3,225,228],[1026,7,6,228,234],[1028,2,2,234,236],[1030,1,1,236,237],[1031,3,3,237,240],[1032,1,1,240,241],[1033,1,1,241,242],[1035,2,2,242,244],[1036,3,3,244,247],[1037,3,3,247,250],[1038,3,2,250,252]]]],[23235,23366,23368,23370,23389,23390,23393,23398,23416,23418,23441,23442,23459,23460,23461,23490,23491,23538,23549,23575,23609,23612,23616,23619,23623,23635,23645,23656,23665,23666,23669,23677,23685,23692,23693,23696,23706,23710,23713,23716,23719,23728,23772,23775,23785,23787,23809,23827,23832,23846,23888,23919,23958,23960,24055,24062,24071,24072,24073,24080,24089,24090,24094,24099,24110,24193,24202,24203,24204,24208,24211,24275,24276,24278,24283,24295,24297,24357,24395,24408,24436,24442,24448,24452,24465,24468,24480,24501,24504,24506,24510,24527,24533,24534,24552,24556,24566,24569,24598,24601,24611,24612,24634,24641,24654,24716,24718,24766,24767,24768,24770,24786,24880,25137,25140,25147,25159,25163,25166,25186,25206,25213,25214,25254,25267,25302,25315,25317,25319,25341,25344,25355,25386,25406,25460,25481,25579,25580,25586,25621,25652,25673,25703,25760,25768,25770,25824,25875,25903,25909,26079,26081,26097,26106,26107,26112,26117,26142,26145,26157,26158,26164,26183,26187,26189,26260,26265,26268,26269,26273,26279,26281,26317,26318,26323,26331,26412,26442,26467,26468,26530,26531,26535,26577,26584,26596,26635,26652,26653,26665,26707,26743,26755,26786,26787,26800,26801,26802,26804,26810,26851,26852,26863,26869,26870,26871,26875,26877,26885,26886,26887,26892,26893,26897,26899,26900,26902,26905,26906,26910,26912,26918,26921,26922,26938,27102,27103,27108,27217,27226,27235,27241,27242,27254,27333,27336,27414,27434,27436,27442,27452,27484,27580,27584,27586,27594,27615,27627,27633,27656,27668,27680]]],["+",[4,4,[[39,1,1,0,1,[[956,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[42,2,2,2,4,[[1014,1,1,2,3],[1016,1,1,3,4]]]],[24203,25302,26800,26887]]],["disciple",[26,25,[[39,3,3,0,3,[[938,3,3,0,3]]],[41,4,4,3,7,[[978,1,1,3,4],[986,3,3,4,7]]],[42,15,14,7,21,[[1005,1,1,7,8],[1014,2,2,8,10],[1015,4,3,10,13],[1016,4,4,13,17],[1017,4,4,17,21]]],[43,4,4,21,25,[[1026,2,2,21,23],[1033,1,1,23,24],[1038,1,1,24,25]]]],[23441,23442,23459,25186,25579,25580,25586,26468,26800,26801,26851,26852,26863,26869,26870,26871,26875,26905,26918,26921,26922,27226,27242,27484,27680]]],["disciples",[237,226,[[39,70,67,0,67,[[933,1,1,0,1],[936,3,3,1,4],[937,6,5,4,9],[938,1,1,9,10],[939,2,2,10,12],[940,3,3,12,15],[941,2,2,15,17],[942,6,5,17,22],[943,7,6,22,28],[944,5,5,28,33],[945,5,5,33,38],[946,1,1,38,39],[947,4,4,39,43],[948,1,1,43,44],[949,3,3,44,47],[950,1,1,47,48],[951,1,1,48,49],[952,2,2,49,51],[954,11,11,51,62],[955,1,1,62,63],[956,4,4,63,67]]],[40,45,42,67,109,[[958,6,4,67,71],[959,2,2,71,73],[960,1,1,73,74],[961,1,1,74,75],[962,5,5,75,80],[963,3,3,80,83],[964,8,7,83,90],[965,4,4,90,94],[966,5,5,94,99],[967,2,2,99,101],[968,1,1,101,102],[969,1,1,102,103],[970,5,5,103,108],[972,1,1,108,109]]],[41,33,32,109,141,[[977,2,2,109,111],[978,4,4,111,115],[979,3,3,115,118],[980,2,2,118,120],[981,6,6,120,126],[982,1,1,126,127],[983,2,1,127,128],[984,2,2,128,130],[988,1,1,130,131],[989,2,2,131,133],[990,1,1,133,134],[991,3,3,134,137],[992,1,1,137,138],[994,3,3,138,141]]],[42,63,59,141,200,[[997,2,2,141,143],[998,5,5,143,148],[999,2,2,148,150],[1000,6,6,150,156],[1002,13,10,156,166],[1003,1,1,166,167],[1004,1,1,167,168],[1005,3,3,168,171],[1007,4,4,171,175],[1008,2,2,175,177],[1009,3,3,177,180],[1011,1,1,180,181],[1012,2,2,181,183],[1014,6,5,183,188],[1016,6,6,188,194],[1017,6,6,194,200]]],[43,26,26,200,226,[[1018,1,1,200,201],[1023,3,3,201,204],[1026,5,5,204,209],[1028,2,2,209,211],[1030,1,1,211,212],[1031,3,3,212,215],[1032,1,1,215,216],[1035,2,2,216,218],[1036,3,3,218,221],[1037,3,3,221,224],[1038,2,2,224,226]]]],[23235,23366,23368,23370,23389,23390,23393,23398,23416,23418,23460,23461,23490,23491,23538,23549,23575,23609,23612,23616,23619,23623,23635,23645,23656,23665,23666,23669,23677,23685,23692,23693,23696,23706,23710,23713,23716,23719,23728,23772,23775,23785,23787,23809,23827,23832,23846,23888,23919,23958,23960,24055,24062,24071,24072,24073,24080,24089,24090,24094,24099,24110,24193,24202,24204,24208,24211,24275,24276,24278,24283,24295,24297,24357,24395,24408,24436,24442,24448,24452,24465,24468,24480,24501,24504,24506,24510,24527,24533,24534,24552,24556,24566,24569,24598,24601,24611,24612,24634,24641,24654,24716,24718,24766,24767,24768,24770,24786,24880,25137,25140,25147,25159,25163,25166,25206,25213,25214,25254,25267,25315,25317,25319,25341,25344,25355,25386,25406,25460,25481,25621,25652,25673,25703,25760,25768,25770,25824,25875,25903,25909,26079,26081,26097,26106,26107,26112,26117,26142,26145,26157,26158,26164,26183,26187,26189,26260,26265,26268,26269,26273,26279,26281,26317,26318,26323,26331,26412,26442,26467,26468,26530,26531,26535,26577,26584,26596,26652,26653,26665,26707,26743,26755,26786,26787,26802,26804,26810,26877,26885,26886,26892,26893,26897,26899,26900,26902,26906,26910,26912,26938,27102,27103,27108,27217,27235,27241,27242,27254,27333,27336,27414,27434,27436,27442,27452,27580,27584,27586,27594,27615,27627,27633,27656,27668,27680]]],["disciples'",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26635]]]]},{"k":"G3102","v":[["disciple",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27252]]]]},{"k":"G3103","v":[["Mathusala",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25062]]]]},{"k":"G3104","v":[["Menan",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25056]]]]},{"k":"G3105","v":[["*",[5,5,[[42,1,1,0,1,[[1006,1,1,0,1]]],[43,3,3,1,4,[[1029,1,1,1,2],[1043,2,2,2,4]]],[45,1,1,4,5,[[1075,1,1,4,5]]]],[26501,27352,27847,27848,28701]]],["+",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27848]]],["mad",[3,3,[[42,1,1,0,1,[[1006,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]]],[26501,27352,28701]]],["thyself",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27847]]]]},{"k":"G3106","v":[["*",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[24941,30365]]],["+",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24941]]],["happy",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30365]]]]},{"k":"G3107","v":[["*",[50,49,[[39,13,13,0,13,[[933,9,9,0,9],[939,1,1,9,10],[941,1,1,10,11],[944,1,1,11,12],[952,1,1,12,13]]],[41,15,14,13,27,[[973,1,1,13,14],[978,4,3,14,17],[979,1,1,17,18],[982,1,1,18,19],[983,2,2,19,21],[984,3,3,21,24],[986,2,2,24,26],[995,1,1,26,27]]],[42,2,2,27,29,[[1009,1,1,27,28],[1016,1,1,28,29]]],[43,2,2,29,31,[[1037,1,1,29,30],[1043,1,1,30,31]]],[44,3,3,31,34,[[1049,2,2,31,33],[1059,1,1,33,34]]],[45,1,1,34,35,[[1068,1,1,34,35]]],[53,2,2,35,37,[[1119,1,1,35,36],[1124,1,1,36,37]]],[55,1,1,37,38,[[1130,1,1,37,38]]],[58,2,2,38,40,[[1146,2,2,38,40]]],[59,2,2,40,42,[[1153,1,1,40,41],[1154,1,1,41,42]]],[65,7,7,42,49,[[1167,1,1,42,43],[1180,1,1,43,44],[1182,1,1,44,45],[1185,1,1,45,46],[1186,1,1,46,47],[1188,2,2,47,49]]]],[23237,23238,23239,23240,23241,23242,23243,23244,23245,23465,23555,23689,24003,24938,25166,25167,25168,25218,25386,25432,25433,25496,25497,25502,25567,25568,25964,26647,26896,27661,27825,28029,28030,28302,28527,29707,29803,29921,30278,30291,30438,30460,30700,30939,30969,31026,31044,31087,31094]]],["Blessed",[30,29,[[39,11,11,0,11,[[933,9,9,0,9],[944,1,1,9,10],[952,1,1,10,11]]],[41,10,9,11,20,[[978,4,3,11,14],[982,1,1,14,15],[983,1,1,15,16],[984,2,2,16,18],[986,1,1,18,19],[995,1,1,19,20]]],[44,2,2,20,22,[[1049,2,2,20,22]]],[58,1,1,22,23,[[1146,1,1,22,23]]],[65,6,6,23,29,[[1167,1,1,23,24],[1180,1,1,24,25],[1182,1,1,25,26],[1185,1,1,26,27],[1186,1,1,27,28],[1188,1,1,28,29]]]],[23237,23238,23239,23240,23241,23242,23243,23244,23245,23689,24003,25166,25167,25168,25386,25432,25496,25502,25568,25964,28029,28030,30278,30700,30939,30969,31026,31044,31094]]],["Happy",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28302]]],["blessed",[14,14,[[39,2,2,0,2,[[939,1,1,0,1],[941,1,1,1,2]]],[41,5,5,2,7,[[973,1,1,2,3],[979,1,1,3,4],[983,1,1,4,5],[984,1,1,5,6],[986,1,1,6,7]]],[42,1,1,7,8,[[1016,1,1,7,8]]],[43,1,1,8,9,[[1037,1,1,8,9]]],[53,2,2,9,11,[[1119,1,1,9,10],[1124,1,1,10,11]]],[55,1,1,11,12,[[1130,1,1,11,12]]],[58,1,1,12,13,[[1146,1,1,12,13]]],[65,1,1,13,14,[[1188,1,1,13,14]]]],[23465,23555,24938,25218,25433,25497,25567,26896,27661,29707,29803,29921,30291,31087]]],["happier",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28527]]],["happy",[4,4,[[42,1,1,0,1,[[1009,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[59,2,2,2,4,[[1153,1,1,2,3],[1154,1,1,3,4]]]],[26647,27825,30438,30460]]]]},{"k":"G3108","v":[["blessedness",[3,3,[[44,2,2,0,2,[[1049,2,2,0,2]]],[47,1,1,2,3,[[1094,1,1,2,3]]]],[28028,28031,29146]]]]},{"k":"G3109","v":[["Macedonia",[22,20,[[43,8,8,0,8,[[1033,3,3,0,3],[1035,1,1,3,4],[1036,2,2,4,6],[1037,2,2,6,8]]],[44,1,1,8,9,[[1060,1,1,8,9]]],[45,2,1,9,10,[[1077,2,1,9,10]]],[46,6,5,10,15,[[1078,2,1,10,11],[1079,1,1,11,12],[1084,1,1,12,13],[1085,1,1,13,14],[1088,1,1,14,15]]],[49,1,1,15,16,[[1106,1,1,15,16]]],[51,3,3,16,19,[[1111,2,2,16,18],[1114,1,1,18,19]]],[53,1,1,19,20,[[1119,1,1,19,20]]]],[27492,27493,27495,27562,27606,27607,27627,27629,28329,28781,28816,28837,28921,28933,28998,29457,29567,29568,29613,29699]]]]},{"k":"G3110","v":[["*",[5,5,[[43,3,3,0,3,[[1033,1,1,0,1],[1036,1,1,1,2],[1044,1,1,2,3]]],[46,2,2,3,5,[[1086,2,2,3,5]]]],[27492,27614,27857,28958,28960]]],["Macedonia",[4,4,[[43,2,2,0,2,[[1033,1,1,0,1],[1036,1,1,1,2]]],[46,2,2,2,4,[[1086,2,2,2,4]]]],[27492,27614,28958,28960]]],["Macedonian",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27857]]]]},{"k":"G3111","v":[["shambles",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28592]]]]},{"k":"G3112","v":[["*",[10,10,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,2,2,4,[[979,1,1,2,3],[987,1,1,3,4]]],[42,1,1,4,5,[[1017,1,1,4,5]]],[43,3,3,5,8,[[1019,1,1,5,6],[1034,1,1,6,7],[1039,1,1,7,8]]],[48,2,2,8,10,[[1098,2,2,8,10]]]],[23375,24707,25201,25608,26906,26988,27550,27725,29242,29246]]],["+",[2,2,[[41,1,1,0,1,[[987,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[25608,26988]]],["far",[4,4,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]],[43,1,1,3,4,[[1034,1,1,3,4]]]],[24707,25201,26906,27550]]],["hence",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27725]]],["off",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[48,2,2,1,3,[[1098,2,2,1,3]]]],[23375,29242,29246]]]]},{"k":"G3113","v":[["*",[14,14,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,5,5,2,7,[[961,1,1,2,3],[964,1,1,3,4],[967,1,1,4,5],[970,1,1,5,6],[971,1,1,6,7]]],[41,4,4,7,11,[[988,1,1,7,8],[990,1,1,8,9],[994,1,1,9,10],[995,1,1,10,11]]],[65,3,3,11,14,[[1184,3,3,11,14]]]],[24112,24184,24370,24503,24653,24808,24866,25643,25701,25918,25984,31003,31008,31010]]],["+",[9,9,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,3,3,2,5,[[961,1,1,2,3],[970,1,1,3,4],[971,1,1,4,5]]],[41,1,1,5,6,[[988,1,1,5,6]]],[65,3,3,6,9,[[1184,3,3,6,9]]]],[24112,24184,24370,24808,24866,25643,31003,31008,31010]]],["far",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24503]]],["off",[4,4,[[40,1,1,0,1,[[967,1,1,0,1]]],[41,3,3,1,4,[[990,1,1,1,2],[994,1,1,2,3],[995,1,1,3,4]]]],[24653,25701,25918,25984]]]]},{"k":"G3114","v":[["*",[10,9,[[39,2,2,0,2,[[946,2,2,0,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[45,1,1,3,4,[[1074,1,1,3,4]]],[51,1,1,4,5,[[1115,1,1,4,5]]],[57,1,1,5,6,[[1138,1,1,5,6]]],[58,3,2,6,8,[[1150,3,2,6,8]]],[60,1,1,8,9,[[1158,1,1,8,9]]]],[23753,23756,25695,28669,29635,30059,30361,30362,30531]]],["+",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30362]]],["endured",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30059]]],["long",[2,2,[[41,1,1,0,1,[[990,1,1,0,1]]],[45,1,1,1,2,[[1074,1,1,1,2]]]],[25695,28669]]],["longsuffering",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30531]]],["patience",[3,3,[[39,2,2,0,2,[[946,2,2,0,2]]],[58,1,1,2,3,[[1150,1,1,2,3]]]],[23753,23756,30361]]],["patient",[2,2,[[51,1,1,0,1,[[1115,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[29635,30361]]]]},{"k":"G3115","v":[["*",[14,14,[[44,2,2,0,2,[[1047,1,1,0,1],[1054,1,1,1,2]]],[46,1,1,2,3,[[1083,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]],[50,2,2,5,7,[[1107,1,1,5,6],[1109,1,1,6,7]]],[53,1,1,7,8,[[1119,1,1,7,8]]],[54,2,2,8,10,[[1127,1,1,8,9],[1128,1,1,9,10]]],[57,1,1,10,11,[[1138,1,1,10,11]]],[58,1,1,11,12,[[1150,1,1,11,12]]],[59,1,1,12,13,[[1153,1,1,12,13]]],[60,1,1,13,14,[[1158,1,1,13,14]]]],[27966,28177,28904,29184,29274,29476,29529,29712,29863,29872,30056,30364,30444,30537]]],["longsuffering",[12,12,[[44,2,2,0,2,[[1047,1,1,0,1],[1054,1,1,1,2]]],[46,1,1,2,3,[[1083,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]],[50,2,2,5,7,[[1107,1,1,5,6],[1109,1,1,6,7]]],[53,1,1,7,8,[[1119,1,1,7,8]]],[54,2,2,8,10,[[1127,1,1,8,9],[1128,1,1,9,10]]],[59,1,1,10,11,[[1153,1,1,10,11]]],[60,1,1,11,12,[[1158,1,1,11,12]]]],[27966,28177,28904,29184,29274,29476,29529,29712,29863,29872,30444,30537]]],["patience",[2,2,[[57,1,1,0,1,[[1138,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[30056,30364]]]]},{"k":"G3116","v":[["patiently",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27826]]]]},{"k":"G3117","v":[["*",[5,5,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,3,3,2,5,[[987,1,1,2,3],[991,1,1,3,4],[992,1,1,4,5]]]],[23932,24713,25601,25743,25826]]],["+",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]]],[23932,24713,25826]]],["far",[2,2,[[41,2,2,0,2,[[987,1,1,0,1],[991,1,1,1,2]]]],[25601,25743]]]]},{"k":"G3118","v":[["long",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29340]]]]},{"k":"G3119","v":[["disease",[3,3,[[39,3,3,0,3,[[932,1,1,0,1],[937,1,1,1,2],[938,1,1,2,3]]]],[23232,23414,23418]]]]},{"k":"G3120","v":[["*",[4,3,[[39,2,1,0,1,[[939,2,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[45,1,1,2,3,[[1067,1,1,2,3]]]],[23467,25220,28476]]],["effeminate",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28476]]],["soft",[3,2,[[39,2,1,0,1,[[939,2,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]]],[23467,25220]]]]},{"k":"G3121","v":[["Maleleel",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25062]]]]},{"k":"G3122","v":[["*",[12,12,[[43,3,3,0,3,[[1037,1,1,0,1],[1042,1,1,1,2],[1043,1,1,2,3]]],[47,1,1,3,4,[[1096,1,1,3,4]]],[49,1,1,4,5,[[1106,1,1,4,5]]],[53,3,3,5,8,[[1122,1,1,5,6],[1123,2,2,6,8]]],[54,1,1,8,9,[[1128,1,1,8,9]]],[55,1,1,9,10,[[1129,1,1,9,10]]],[56,1,1,10,11,[[1132,1,1,10,11]]],[60,1,1,11,12,[[1157,1,1,11,12]]]],[27664,27822,27826,29198,29464,29757,29771,29780,29883,29902,29954,30510]]],["Especially",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27826]]],["all",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27664]]],["chiefly",[2,2,[[49,1,1,0,1,[[1106,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[29464,30510]]],["especially",[3,3,[[47,1,1,0,1,[[1096,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[29198,29780,29883]]],["specially",[5,5,[[43,1,1,0,1,[[1042,1,1,0,1]]],[53,2,2,1,3,[[1122,1,1,1,2],[1123,1,1,2,3]]],[55,1,1,3,4,[[1129,1,1,3,4]]],[56,1,1,4,5,[[1132,1,1,4,5]]]],[27822,29757,29771,29902,29954]]]]},{"k":"G3123","v":[["*",[83,81,[[39,9,9,0,9,[[934,2,2,0,2],[935,1,1,2,3],[938,3,3,3,6],[946,1,1,6,7],[953,1,1,7,8],[955,1,1,8,9]]],[40,6,6,9,15,[[961,1,1,9,10],[963,1,1,10,11],[965,1,1,11,12],[966,1,1,12,13],[970,1,1,13,14],[971,1,1,14,15]]],[41,6,6,15,21,[[977,1,1,15,16],[982,1,1,16,17],[983,1,1,17,18],[984,2,2,18,20],[990,1,1,20,21]]],[42,4,4,21,25,[[999,1,1,21,22],[1001,1,1,22,23],[1008,1,1,23,24],[1015,1,1,24,25]]],[43,7,7,25,32,[[1021,1,1,25,26],[1022,2,2,26,28],[1026,1,1,28,29],[1037,1,1,29,30],[1039,1,1,30,31],[1044,1,1,31,32]]],[44,8,8,32,40,[[1050,4,4,32,36],[1053,1,1,36,37],[1056,2,2,37,39],[1059,1,1,39,40]]],[45,10,9,40,49,[[1066,1,1,40,41],[1067,2,1,41,42],[1068,1,1,42,43],[1070,2,2,43,45],[1073,1,1,45,46],[1075,3,3,46,49]]],[46,8,8,49,57,[[1079,1,1,49,50],[1080,3,3,50,53],[1082,1,1,53,54],[1084,2,2,54,56],[1089,1,1,56,57]]],[47,2,2,57,59,[[1094,2,2,57,59]]],[48,3,3,59,62,[[1100,1,1,59,60],[1101,2,2,60,62]]],[49,6,5,62,67,[[1103,4,3,62,65],[1104,1,1,65,66],[1105,1,1,66,67]]],[51,2,2,67,69,[[1114,2,2,67,69]]],[53,2,2,69,71,[[1119,1,1,69,70],[1124,1,1,70,71]]],[54,1,1,71,72,[[1127,1,1,71,72]]],[56,2,2,72,74,[[1132,2,2,72,74]]],[57,6,6,74,80,[[1141,1,1,74,75],[1142,1,1,75,76],[1143,1,1,76,77],[1144,3,3,77,80]]],[60,1,1,80,81,[[1156,1,1,80,81]]]],[23308,23312,23327,23423,23442,23445,23740,24017,24153,24390,24499,24580,24636,24785,24837,25122,25383,25418,25483,25487,25727,26139,26228,26623,26833,27041,27073,27088,27238,27661,27706,27866,28056,28057,28062,28064,28150,28221,28233,28293,28456,28474,28508,28552,28555,28656,28679,28683,28696,28831,28849,28850,28852,28885,28923,28929,29031,29140,29158,29300,29308,29315,29370,29373,29384,29403,29425,29604,29613,29700,29790,29857,29947,29954,30119,30158,30197,30221,30225,30237,30489]]],["+",[6,6,[[39,1,1,0,1,[[934,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]],[43,1,1,3,4,[[1026,1,1,3,4]]],[48,1,1,4,5,[[1101,1,1,4,5]]],[49,1,1,5,6,[[1103,1,1,5,6]]]],[23308,24580,26833,27238,29315,29384]]],["deal",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24636]]],["more",[42,41,[[39,4,4,0,4,[[934,1,1,0,1],[935,1,1,1,2],[938,1,1,2,3],[946,1,1,3,4]]],[40,2,2,4,6,[[963,1,1,4,5],[970,1,1,5,6]]],[41,5,5,6,11,[[977,1,1,6,7],[983,1,1,7,8],[984,2,2,8,10],[990,1,1,10,11]]],[42,2,2,11,13,[[1001,1,1,11,12],[1008,1,1,12,13]]],[43,5,5,13,18,[[1021,1,1,13,14],[1022,1,1,14,15],[1037,1,1,15,16],[1039,1,1,16,17],[1044,1,1,17,18]]],[44,6,6,18,24,[[1050,4,4,18,22],[1056,2,2,22,24]]],[45,2,2,24,26,[[1073,1,1,24,25],[1075,1,1,25,26]]],[46,4,4,26,30,[[1080,2,2,26,28],[1084,2,2,28,30]]],[47,1,1,30,31,[[1094,1,1,30,31]]],[49,4,3,31,34,[[1103,2,1,31,32],[1104,1,1,32,33],[1105,1,1,33,34]]],[51,2,2,34,36,[[1114,2,2,34,36]]],[54,1,1,36,37,[[1127,1,1,36,37]]],[56,1,1,37,38,[[1132,1,1,37,38]]],[57,3,3,38,41,[[1141,1,1,38,39],[1142,1,1,39,40],[1144,1,1,40,41]]]],[23312,23327,23442,23740,24499,24785,25122,25418,25483,25487,25727,26228,26623,27041,27073,27661,27706,27866,28056,28057,28062,28064,28221,28233,28656,28696,28850,28852,28923,28929,29158,29370,29403,29425,29604,29613,29857,29954,30119,30158,30237]]],["rather",[33,32,[[39,4,4,0,4,[[938,2,2,0,2],[953,1,1,2,3],[955,1,1,3,4]]],[40,2,2,4,6,[[961,1,1,4,5],[971,1,1,5,6]]],[41,1,1,6,7,[[982,1,1,6,7]]],[42,1,1,7,8,[[999,1,1,7,8]]],[43,1,1,8,9,[[1022,1,1,8,9]]],[44,2,2,9,11,[[1053,1,1,9,10],[1059,1,1,10,11]]],[45,7,6,11,17,[[1066,1,1,11,12],[1067,2,1,12,13],[1068,1,1,13,14],[1070,1,1,14,15],[1075,2,2,15,17]]],[46,4,4,17,21,[[1079,1,1,17,18],[1080,1,1,18,19],[1082,1,1,19,20],[1089,1,1,20,21]]],[47,1,1,21,22,[[1094,1,1,21,22]]],[48,2,2,22,24,[[1100,1,1,22,23],[1101,1,1,23,24]]],[49,1,1,24,25,[[1103,1,1,24,25]]],[53,2,2,25,27,[[1119,1,1,25,26],[1124,1,1,26,27]]],[56,1,1,27,28,[[1132,1,1,27,28]]],[57,3,3,28,31,[[1143,1,1,28,29],[1144,2,2,29,31]]],[60,1,1,31,32,[[1156,1,1,31,32]]]],[23423,23445,24017,24153,24390,24837,25383,26139,27088,28150,28293,28456,28474,28508,28552,28679,28683,28831,28849,28885,29031,29140,29300,29308,29373,29700,29790,29947,30197,30221,30225,30489]]],["to",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28555]]]]},{"k":"G3124","v":[["Malchus",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26795]]]]},{"k":"G3125","v":[["grandmother",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29814]]]]},{"k":"G3126","v":[["mammon",[4,4,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,3,3,1,4,[[988,3,3,1,4]]]],[23306,25629,25631,25633]]]]},{"k":"G3127","v":[["Manaen",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27363]]]]},{"k":"G3128","v":[["Manasses",[3,2,[[39,2,1,0,1,[[929,2,1,0,1]]],[65,1,1,1,2,[[1173,1,1,1,2]]]],[23154,30816]]]]},{"k":"G3129","v":[["*",[25,24,[[39,3,3,0,3,[[937,1,1,0,1],[939,1,1,1,2],[952,1,1,2,3]]],[40,1,1,3,4,[[969,1,1,3,4]]],[42,2,2,4,6,[[1002,1,1,4,5],[1003,1,1,5,6]]],[43,1,1,6,7,[[1040,1,1,6,7]]],[44,1,1,7,8,[[1061,1,1,7,8]]],[45,3,3,8,11,[[1065,1,1,8,9],[1075,2,2,9,11]]],[47,1,1,11,12,[[1093,1,1,11,12]]],[48,1,1,12,13,[[1100,1,1,12,13]]],[49,2,2,13,15,[[1106,2,2,13,15]]],[50,1,1,15,16,[[1107,1,1,15,16]]],[53,3,3,16,19,[[1120,1,1,16,17],[1123,2,2,17,19]]],[54,3,2,19,21,[[1127,3,2,19,21]]],[55,1,1,21,22,[[1131,1,1,21,22]]],[57,1,1,22,23,[[1137,1,1,22,23]]],[65,1,1,23,24,[[1180,1,1,23,24]]]],[23392,23488,23989,24745,26302,26343,27761,28353,28439,28709,28713,29104,29292,29451,29453,29472,29727,29767,29776,29860,29867,29937,30038,30929]]],["learn",[13,13,[[39,3,3,0,3,[[937,1,1,0,1],[939,1,1,1,2],[952,1,1,2,3]]],[40,1,1,3,4,[[969,1,1,3,4]]],[45,3,3,4,7,[[1065,1,1,4,5],[1075,2,2,5,7]]],[47,1,1,7,8,[[1093,1,1,7,8]]],[53,3,3,8,11,[[1120,1,1,8,9],[1123,2,2,9,11]]],[55,1,1,11,12,[[1131,1,1,11,12]]],[65,1,1,12,13,[[1180,1,1,12,13]]]],[23392,23488,23989,24745,28439,28709,28713,29104,29727,29767,29776,29937,30929]]],["learned",[10,9,[[42,2,2,0,2,[[1002,1,1,0,1],[1003,1,1,1,2]]],[44,1,1,2,3,[[1061,1,1,2,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]],[49,2,2,4,6,[[1106,2,2,4,6]]],[50,1,1,6,7,[[1107,1,1,6,7]]],[54,2,1,7,8,[[1127,2,1,7,8]]],[57,1,1,8,9,[[1137,1,1,8,9]]]],[26302,26343,28353,29292,29451,29453,29472,29867,30038]]],["learning",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29860]]],["understood",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27761]]]]},{"k":"G3130","v":[["mad",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27847]]]]},{"k":"G3131","v":[["manna",[5,5,[[42,3,3,0,3,[[1002,3,3,0,3]]],[57,1,1,3,4,[[1141,1,1,3,4]]],[65,1,1,4,5,[[1168,1,1,4,5]]]],[26288,26306,26315,30109,30734]]]]},{"k":"G3132","v":[["soothsaying",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27499]]]]},{"k":"G3133","v":[["away",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30277]]]]},{"k":"G3134","v":[["Maranatha",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28798]]]]},{"k":"G3135","v":[["*",[9,8,[[39,3,3,0,3,[[935,1,1,0,1],[941,2,2,1,3]]],[53,1,1,3,4,[[1120,1,1,3,4]]],[65,5,4,4,8,[[1183,1,1,4,5],[1184,2,2,5,7],[1187,2,1,7,8]]]],[23322,23584,23585,29725,30979,31005,31009,31074]]],["pearl",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[65,1,1,1,2,[[1187,1,1,1,2]]]],[23585,31074]]],["pearls",[7,7,[[39,2,2,0,2,[[935,1,1,0,1],[941,1,1,1,2]]],[53,1,1,2,3,[[1120,1,1,2,3]]],[65,4,4,3,7,[[1183,1,1,3,4],[1184,2,2,4,6],[1187,1,1,6,7]]]],[23322,23584,29725,30979,31005,31009,31074]]]]},{"k":"G3136","v":[["Martha",[13,12,[[41,4,3,0,3,[[982,4,3,0,3]]],[42,9,9,3,12,[[1007,8,8,3,11],[1008,1,1,11,12]]]],[25401,25403,25404,26524,26528,26542,26543,26544,26547,26553,26562,26582]]]]},{"k":"G3137","v":[["Mary",[54,46,[[39,11,8,0,8,[[929,3,3,0,3],[930,1,1,3,4],[941,1,1,4,5],[955,4,2,5,7],[956,2,1,7,8]]],[40,8,5,8,13,[[962,1,1,8,9],[971,4,2,9,11],[972,3,2,11,13]]],[41,17,16,13,29,[[973,8,8,13,21],[974,4,4,21,25],[980,1,1,25,26],[982,2,2,26,28],[996,2,1,28,29]]],[42,15,14,29,43,[[1007,8,8,29,37],[1008,1,1,37,38],[1015,2,1,38,39],[1016,4,4,39,43]]],[43,2,2,43,45,[[1018,1,1,43,44],[1029,1,1,44,45]]],[44,1,1,45,46,[[1061,1,1,45,46]]]],[23160,23162,23164,23180,23594,24185,24190,24196,24410,24866,24873,24874,24882,24920,24923,24927,24931,24932,24934,24939,24949,24978,24989,24992,25007,25247,25402,25405,26001,26524,26525,26542,26543,26551,26554,26555,26568,26583,26850,26868,26878,26883,26885,26937,27349,28342]]]]},{"k":"G3138","v":[["*",[8,8,[[43,4,4,0,4,[[1029,2,2,0,2],[1032,2,2,2,4]]],[50,1,1,4,5,[[1110,1,1,4,5]]],[54,1,1,5,6,[[1128,1,1,5,6]]],[56,1,1,6,7,[[1132,1,1,6,7]]],[59,1,1,7,8,[[1155,1,1,7,8]]]],[27349,27362,27479,27481,29552,29881,29962,30478]]],["Marcus",[3,3,[[50,1,1,0,1,[[1110,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]],[59,1,1,2,3,[[1155,1,1,2,3]]]],[29552,29962,30478]]],["Mark",[5,5,[[43,4,4,0,4,[[1029,2,2,0,2],[1032,2,2,2,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]]],[27349,27362,27479,27481,29881]]]]},{"k":"G3139","v":[["marble",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31005]]]]},{"k":"G3140","v":[["*",[79,75,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,2,2,1,3,[[976,1,1,1,2],[983,1,1,2,3]]],[42,33,31,3,34,[[997,5,5,3,8],[998,1,1,8,9],[999,4,4,9,13],[1000,2,2,13,15],[1001,7,6,15,21],[1003,1,1,21,22],[1004,4,3,22,25],[1006,1,1,25,26],[1008,1,1,26,27],[1009,1,1,27,28],[1011,2,2,28,30],[1014,2,2,30,32],[1015,1,1,32,33],[1017,1,1,33,34]]],[43,12,12,34,46,[[1023,1,1,34,35],[1027,2,2,35,37],[1030,1,1,37,38],[1031,1,1,38,39],[1032,1,1,39,40],[1033,1,1,40,41],[1039,2,2,41,43],[1040,1,1,43,44],[1043,2,2,44,46]]],[44,2,2,46,48,[[1048,1,1,46,47],[1055,1,1,47,48]]],[45,1,1,48,49,[[1076,1,1,48,49]]],[46,1,1,49,50,[[1085,1,1,49,50]]],[47,1,1,50,51,[[1094,1,1,50,51]]],[50,1,1,51,52,[[1110,1,1,51,52]]],[51,1,1,52,53,[[1112,1,1,52,53]]],[53,2,2,53,55,[[1123,1,1,53,54],[1124,1,1,54,55]]],[57,8,7,55,62,[[1139,2,2,55,57],[1142,1,1,57,58],[1143,5,4,58,62]]],[61,7,7,62,69,[[1159,1,1,62,63],[1162,1,1,63,64],[1163,5,5,64,69]]],[63,4,3,69,72,[[1165,4,3,69,72]]],[65,3,3,72,75,[[1167,1,1,72,73],[1188,2,2,73,75]]]],[23949,25085,25453,26051,26052,26059,26076,26078,26120,26131,26146,26148,26152,26195,26200,26241,26242,26243,26246,26247,26249,26335,26394,26395,26399,26506,26597,26651,26725,26726,26808,26822,26860,26922,27104,27281,27302,27384,27417,27450,27485,27709,27716,27745,27828,27845,28012,28190,28733,28935,29146,29555,29581,29773,29801,30072,30081,30148,30174,30176,30177,30211,30542,30617,30630,30631,30632,30633,30634,30661,30664,30670,30699,31096,31100]]],["+",[8,8,[[41,1,1,0,1,[[976,1,1,0,1]]],[42,1,1,1,2,[[999,1,1,1,2]]],[43,3,3,2,5,[[1027,1,1,2,3],[1032,1,1,3,4],[1039,1,1,4,5]]],[44,1,1,5,6,[[1055,1,1,5,6]]],[47,1,1,6,7,[[1094,1,1,6,7]]],[50,1,1,7,8,[[1110,1,1,7,8]]]],[25085,26148,27302,27450,27709,28190,29146,29555]]],["charged",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29581]]],["gave",[1,1,[[61,1,1,0,1,[[1163,1,1,0,1]]]],[30634]]],["of",[2,2,[[43,1,1,0,1,[[1033,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[27485,29773]]],["record",[10,10,[[42,6,6,0,6,[[997,2,2,0,2],[1004,2,2,2,4],[1008,1,1,4,5],[1015,1,1,5,6]]],[46,1,1,6,7,[[1085,1,1,6,7]]],[61,1,1,7,8,[[1163,1,1,7,8]]],[63,1,1,8,9,[[1165,1,1,8,9]]],[65,1,1,9,10,[[1167,1,1,9,10]]]],[26076,26078,26394,26395,26597,26860,28935,30631,30670,30699]]],["report",[6,6,[[43,3,3,0,3,[[1023,1,1,0,1],[1027,1,1,1,2],[1039,1,1,2,3]]],[57,2,2,3,5,[[1143,2,2,3,5]]],[63,1,1,5,6,[[1165,1,1,5,6]]]],[27104,27281,27716,30174,30211,30670]]],["testified",[6,6,[[42,3,3,0,3,[[1000,2,2,0,2],[1009,1,1,2,3]]],[45,1,1,3,4,[[1076,1,1,3,4]]],[61,1,1,4,5,[[1163,1,1,4,5]]],[63,1,1,5,6,[[1165,1,1,5,6]]]],[26195,26200,26651,28733,30633,30661]]],["testifieth",[4,4,[[42,2,2,0,2,[[999,1,1,0,1],[1017,1,1,1,2]]],[57,1,1,2,3,[[1139,1,1,2,3]]],[65,1,1,3,4,[[1188,1,1,3,4]]]],[26152,26922,30081,31100]]],["testify",[8,8,[[42,5,5,0,5,[[998,1,1,0,1],[999,1,1,1,2],[1001,1,1,2,3],[1003,1,1,3,4],[1011,1,1,4,5]]],[43,1,1,5,6,[[1043,1,1,5,6]]],[61,1,1,6,7,[[1162,1,1,6,7]]],[65,1,1,7,8,[[1188,1,1,7,8]]]],[26120,26131,26249,26335,26725,27828,30617,31096]]],["testifying",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30176]]],["testimony",[3,3,[[43,2,2,0,2,[[1030,1,1,0,1],[1031,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[27384,27417,30177]]],["witness",[23,22,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,15,14,1,15,[[997,3,3,1,4],[999,1,1,4,5],[1001,5,5,5,10],[1004,2,1,10,11],[1006,1,1,11,12],[1011,1,1,12,13],[1014,2,2,13,15]]],[43,1,1,15,16,[[1040,1,1,15,16]]],[57,2,2,16,18,[[1142,1,1,16,17],[1143,1,1,17,18]]],[61,3,3,18,21,[[1159,1,1,18,19],[1163,2,2,19,21]]],[63,1,1,21,22,[[1165,1,1,21,22]]]],[25453,26051,26052,26059,26146,26241,26242,26243,26246,26247,26399,26506,26726,26808,26822,27745,30148,30176,30542,30630,30632,30664]]],["witnessed",[3,3,[[44,1,1,0,1,[[1048,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]],[57,1,1,2,3,[[1139,1,1,2,3]]]],[28012,29801,30072]]],["witnesses",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23949]]],["witnesseth",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26242]]],["witnessing",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27845]]]]},{"k":"G3141","v":[["*",[37,33,[[40,3,3,0,3,[[970,3,3,0,3]]],[41,1,1,3,4,[[994,1,1,3,4]]],[42,14,14,4,18,[[997,2,2,4,6],[999,3,3,6,9],[1001,4,4,9,13],[1004,3,3,13,16],[1015,1,1,16,17],[1017,1,1,17,18]]],[43,1,1,18,19,[[1039,1,1,18,19]]],[53,1,1,19,20,[[1121,1,1,19,20]]],[55,1,1,20,21,[[1129,1,1,20,21]]],[61,6,3,21,24,[[1163,6,3,21,24]]],[63,1,1,24,25,[[1165,1,1,24,25]]],[65,9,8,25,33,[[1167,2,2,25,27],[1172,1,1,27,28],[1177,1,1,28,29],[1178,2,2,29,31],[1185,2,1,31,32],[1186,1,1,32,33]]]],[24809,24810,24813,25935,26051,26063,26131,26152,26153,26241,26242,26244,26246,26394,26395,26398,26860,26922,27722,29738,29905,30633,30634,30635,30670,30699,30706,30802,30879,30902,30908,31027,31042]]],["record",[7,7,[[42,4,4,0,4,[[997,1,1,0,1],[1004,2,2,1,3],[1015,1,1,3,4]]],[61,2,2,4,6,[[1163,2,2,4,6]]],[63,1,1,6,7,[[1165,1,1,6,7]]]],[26063,26394,26395,26860,30634,30635,30670]]],["report",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29738]]],["testimony",[14,13,[[42,5,5,0,5,[[999,2,2,0,2],[1001,1,1,2,3],[1004,1,1,3,4],[1017,1,1,4,5]]],[43,1,1,5,6,[[1039,1,1,5,6]]],[65,8,7,6,13,[[1167,2,2,6,8],[1172,1,1,8,9],[1177,1,1,9,10],[1178,2,2,10,12],[1185,2,1,12,13]]]],[26152,26153,26244,26398,26922,27722,30699,30706,30802,30879,30902,30908,31027]]],["witness",[15,13,[[40,3,3,0,3,[[970,3,3,0,3]]],[41,1,1,3,4,[[994,1,1,3,4]]],[42,5,5,4,9,[[997,1,1,4,5],[999,1,1,5,6],[1001,3,3,6,9]]],[55,1,1,9,10,[[1129,1,1,9,10]]],[61,4,2,10,12,[[1163,4,2,10,12]]],[65,1,1,12,13,[[1186,1,1,12,13]]]],[24809,24810,24813,25935,26051,26131,26241,26242,26246,29905,30633,30634,31042]]]]},{"k":"G3142","v":[["*",[20,20,[[39,3,3,0,3,[[936,1,1,0,1],[938,1,1,1,2],[952,1,1,2,3]]],[40,3,3,3,6,[[957,1,1,3,4],[962,1,1,4,5],[969,1,1,5,6]]],[41,3,3,6,9,[[977,1,1,6,7],[981,1,1,7,8],[993,1,1,8,9]]],[43,2,2,9,11,[[1021,1,1,9,10],[1024,1,1,10,11]]],[45,2,2,11,13,[[1062,1,1,11,12],[1063,1,1,12,13]]],[46,1,1,13,14,[[1078,1,1,13,14]]],[52,1,1,14,15,[[1116,1,1,14,15]]],[53,1,1,15,16,[[1120,1,1,15,16]]],[54,1,1,16,17,[[1125,1,1,16,17]]],[57,1,1,17,18,[[1135,1,1,17,18]]],[58,1,1,18,19,[[1150,1,1,18,19]]],[65,1,1,19,20,[[1181,1,1,19,20]]]],[23349,23435,23971,24259,24418,24726,25121,25306,25839,27055,27160,28369,28395,28812,29659,29722,29817,30000,30357,30951]]],["testified",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29722]]],["testimony",[15,15,[[39,2,2,0,2,[[936,1,1,0,1],[938,1,1,1,2]]],[40,3,3,2,5,[[957,1,1,2,3],[962,1,1,3,4],[969,1,1,4,5]]],[41,3,3,5,8,[[977,1,1,5,6],[981,1,1,6,7],[993,1,1,7,8]]],[45,2,2,8,10,[[1062,1,1,8,9],[1063,1,1,9,10]]],[46,1,1,10,11,[[1078,1,1,10,11]]],[52,1,1,11,12,[[1116,1,1,11,12]]],[54,1,1,12,13,[[1125,1,1,12,13]]],[57,1,1,13,14,[[1135,1,1,13,14]]],[65,1,1,14,15,[[1181,1,1,14,15]]]],[23349,23435,24259,24418,24726,25121,25306,25839,28369,28395,28812,29659,29817,30000,30951]]],["witness",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[43,2,2,1,3,[[1021,1,1,1,2],[1024,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]]],[23971,27055,27160,30357]]]]},{"k":"G3143","v":[["*",[3,3,[[43,1,1,0,1,[[1037,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]]],[27652,29165,29289]]],["+",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27652]]],["testify",[2,2,[[47,1,1,0,1,[[1095,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[29165,29289]]]]},{"k":"G3144","v":[["*",[34,34,[[39,2,2,0,2,[[946,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,1,1,3,4,[[996,1,1,3,4]]],[43,13,13,4,17,[[1018,2,2,4,6],[1019,1,1,6,7],[1020,1,1,7,8],[1022,1,1,8,9],[1023,1,1,9,10],[1024,1,1,10,11],[1027,2,2,11,13],[1030,1,1,13,14],[1039,2,2,14,16],[1043,1,1,16,17]]],[44,1,1,17,18,[[1046,1,1,17,18]]],[46,2,2,18,20,[[1078,1,1,18,19],[1090,1,1,19,20]]],[49,1,1,20,21,[[1103,1,1,20,21]]],[51,2,2,21,23,[[1112,2,2,21,23]]],[53,2,2,23,25,[[1123,1,1,23,24],[1124,1,1,24,25]]],[54,1,1,25,26,[[1126,1,1,25,26]]],[57,2,2,26,28,[[1142,1,1,26,27],[1144,1,1,27,28]]],[59,1,1,28,29,[[1155,1,1,28,29]]],[65,5,5,29,34,[[1167,1,1,29,30],[1168,1,1,30,31],[1169,1,1,31,32],[1177,1,1,32,33],[1183,1,1,33,34]]]],[23743,24119,24817,26039,26931,26945,26981,27011,27091,27114,27174,27298,27300,27393,27719,27724,27839,27939,28823,29044,29369,29575,29580,29782,29800,29829,30161,30213,30466,30702,30730,30760,30875,30981]]],["martyr",[2,2,[[43,1,1,0,1,[[1039,1,1,0,1]]],[65,1,1,1,2,[[1168,1,1,1,2]]]],[27724,30730]]],["martyrs",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30981]]],["record",[2,2,[[46,1,1,0,1,[[1078,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[28823,29369]]],["witness",[8,8,[[43,3,3,0,3,[[1018,1,1,0,1],[1039,1,1,1,2],[1043,1,1,2,3]]],[44,1,1,3,4,[[1046,1,1,3,4]]],[51,1,1,4,5,[[1112,1,1,4,5]]],[59,1,1,5,6,[[1155,1,1,5,6]]],[65,2,2,6,8,[[1167,1,1,6,7],[1169,1,1,7,8]]]],[26945,27719,27839,27939,29575,30466,30702,30760]]],["witnesses",[21,21,[[39,2,2,0,2,[[946,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,1,1,3,4,[[996,1,1,3,4]]],[43,9,9,4,13,[[1018,1,1,4,5],[1019,1,1,5,6],[1020,1,1,6,7],[1022,1,1,7,8],[1023,1,1,8,9],[1024,1,1,9,10],[1027,2,2,10,12],[1030,1,1,12,13]]],[46,1,1,13,14,[[1090,1,1,13,14]]],[51,1,1,14,15,[[1112,1,1,14,15]]],[53,2,2,15,17,[[1123,1,1,15,16],[1124,1,1,16,17]]],[54,1,1,17,18,[[1126,1,1,17,18]]],[57,2,2,18,20,[[1142,1,1,18,19],[1144,1,1,19,20]]],[65,1,1,20,21,[[1177,1,1,20,21]]]],[23743,24119,24817,26039,26931,26981,27011,27091,27114,27174,27298,27300,27393,29044,29580,29782,29800,29829,30161,30213,30875]]]]},{"k":"G3145","v":[["gnawed",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30964]]]]},{"k":"G3146","v":[["*",[7,7,[[39,3,3,0,3,[[938,1,1,0,1],[948,1,1,1,2],[951,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,1,1,4,5,[[990,1,1,4,5]]],[42,1,1,5,6,[[1015,1,1,5,6]]],[57,1,1,6,7,[[1144,1,1,6,7]]]],[23434,23811,23952,24622,25721,26826,30218]]],["scourge",[5,5,[[39,3,3,0,3,[[938,1,1,0,1],[948,1,1,1,2],[951,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,1,1,4,5,[[990,1,1,4,5]]]],[23434,23811,23952,24622,25721]]],["scourged",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26826]]],["scourgeth",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30218]]]]},{"k":"G3147","v":[["scourge",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27729]]]]},{"k":"G3148","v":[["*",[6,6,[[40,3,3,0,3,[[959,1,1,0,1],[961,2,2,1,3]]],[41,1,1,3,4,[[979,1,1,3,4]]],[43,1,1,4,5,[[1039,1,1,4,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]]],[24298,24393,24398,25216,27728,30208]]],["plague",[2,2,[[40,2,2,0,2,[[961,2,2,0,2]]]],[24393,24398]]],["plagues",[2,2,[[40,1,1,0,1,[[959,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]]],[24298,25216]]],["scourging",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27728]]],["scourgings",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30208]]]]},{"k":"G3149","v":[["paps",[3,3,[[41,2,2,0,2,[[983,1,1,0,1],[995,1,1,1,2]]],[65,1,1,2,3,[[1167,1,1,2,3]]]],[25432,25964,30710]]]]},{"k":"G3150","v":[["jangling",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29702]]]]},{"k":"G3151","v":[["talkers",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29902]]]]},{"k":"G3152","v":[["*",[6,6,[[43,1,1,0,1,[[1031,1,1,0,1]]],[45,2,2,1,3,[[1064,1,1,1,2],[1076,1,1,2,3]]],[55,1,1,3,4,[[1131,1,1,3,4]]],[58,1,1,4,5,[[1146,1,1,4,5]]],[59,1,1,5,6,[[1151,1,1,5,6]]]],[27429,28430,28735,29932,30292,30392]]],["vain",[5,5,[[45,2,2,0,2,[[1064,1,1,0,1],[1076,1,1,1,2]]],[55,1,1,2,3,[[1131,1,1,2,3]]],[58,1,1,3,4,[[1146,1,1,3,4]]],[59,1,1,4,5,[[1151,1,1,4,5]]]],[28430,28735,29932,30292,30392]]],["vanities",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27429]]]]},{"k":"G3153","v":[["vanity",[3,3,[[44,1,1,0,1,[[1053,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[28136,29289,30518]]]]},{"k":"G3154","v":[["vain",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27951]]]]},{"k":"G3155","v":[["vain",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[23642,24470]]]]},{"k":"G3156","v":[["Matthew",[5,5,[[39,2,2,0,2,[[937,1,1,0,1],[938,1,1,1,2]]],[40,1,1,2,3,[[959,1,1,2,3]]],[41,1,1,3,4,[[978,1,1,3,4]]],[43,1,1,4,5,[[1018,1,1,4,5]]]],[23388,23420,24306,25161,26936]]]]},{"k":"G3157","v":[["Matthan",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23159]]]]},{"k":"G3158","v":[["Matthat",[2,2,[[41,2,2,0,2,[[975,2,2,0,2]]]],[25049,25054]]]]},{"k":"G3159","v":[["Matthias",[2,2,[[43,2,2,0,2,[[1018,2,2,0,2]]]],[26946,26949]]]]},{"k":"G3160","v":[["Mattatha",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25056]]]]},{"k":"G3161","v":[["Mattathias",[2,2,[[41,2,2,0,2,[[975,2,2,0,2]]]],[25050,25051]]]]},{"k":"G3162","v":[["*",[29,26,[[39,7,5,0,5,[[938,1,1,0,1],[954,6,4,1,5]]],[40,3,3,5,8,[[970,3,3,5,8]]],[41,5,5,8,13,[[993,1,1,8,9],[994,4,4,9,13]]],[42,2,2,13,15,[[1014,2,2,13,15]]],[43,2,2,15,17,[[1029,1,1,15,16],[1033,1,1,16,17]]],[44,2,2,17,19,[[1053,1,1,17,18],[1058,1,1,18,19]]],[48,1,1,19,20,[[1102,1,1,19,20]]],[57,3,3,20,23,[[1136,1,1,20,21],[1143,2,2,21,23]]],[65,4,3,23,26,[[1172,1,1,23,24],[1179,3,2,24,26]]]],[23451,24101,24105,24106,24109,24797,24801,24802,25850,25900,25902,25913,25916,26795,26796,27339,27510,28151,28270,29354,30026,30206,30209,30797,30918,30922]]],["one",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25900]]],["sword",[22,19,[[39,5,3,0,3,[[938,1,1,0,1],[954,4,2,1,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[41,2,2,4,6,[[993,1,1,4,5],[994,1,1,5,6]]],[42,2,2,6,8,[[1014,2,2,6,8]]],[43,2,2,8,10,[[1029,1,1,8,9],[1033,1,1,9,10]]],[44,2,2,10,12,[[1053,1,1,10,11],[1058,1,1,11,12]]],[48,1,1,12,13,[[1102,1,1,12,13]]],[57,3,3,13,16,[[1136,1,1,13,14],[1143,2,2,14,16]]],[65,4,3,16,19,[[1172,1,1,16,17],[1179,3,2,17,19]]]],[23451,24105,24106,24801,25850,25913,26795,26796,27339,27510,28151,28270,29354,30026,30206,30209,30797,30918,30922]]],["swords",[6,6,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,2,2,2,4,[[970,2,2,2,4]]],[41,2,2,4,6,[[994,2,2,4,6]]]],[24101,24109,24797,24802,25902,25916]]]]},{"k":"G3163","v":[["*",[4,4,[[46,1,1,0,1,[[1084,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]],[55,1,1,2,3,[[1131,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]]],[28921,29850,29932,30338]]],["fightings",[2,2,[[46,1,1,0,1,[[1084,1,1,0,1]]],[58,1,1,1,2,[[1149,1,1,1,2]]]],[28921,30338]]],["strifes",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29850]]],["strivings",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29932]]]]},{"k":"G3164","v":[["*",[4,4,[[42,1,1,0,1,[[1002,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]]],[26309,27142,29851,30339]]],["fight",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30339]]],["strive",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29851]]],["strove",[2,2,[[42,1,1,0,1,[[1002,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[26309,27142]]]]},{"k":"G3165","v":[["*",[300,275,[[39,38,32,0,32,[[931,1,1,0,1],[936,1,1,1,2],[938,2,2,2,4],[939,1,1,4,5],[942,2,2,5,7],[943,3,3,7,10],[944,2,2,10,12],[946,1,1,12,13],[947,2,2,13,15],[950,1,1,15,16],[951,1,1,16,17],[953,9,4,17,21],[954,10,9,21,30],[955,1,1,30,31],[956,1,1,31,32]]],[40,27,27,32,59,[[957,1,1,32,33],[961,1,1,33,34],[962,2,2,34,36],[963,2,2,36,38],[964,3,3,38,41],[965,3,3,41,44],[966,5,5,44,49],[968,1,1,49,50],[970,8,8,50,58],[971,1,1,58,59]]],[41,44,42,59,101,[[973,2,2,59,61],[974,2,1,61,62],[976,3,2,62,64],[977,1,1,64,65],[978,2,2,65,67],[980,1,1,67,68],[981,4,4,68,72],[982,3,3,72,75],[983,2,2,75,77],[984,2,2,77,79],[985,2,2,79,81],[986,3,3,81,84],[987,1,1,84,85],[988,2,2,85,87],[990,6,6,87,93],[991,2,2,93,95],[992,1,1,95,96],[994,4,4,96,100],[996,1,1,100,101]]],[42,100,89,101,190,[[997,2,2,101,103],[998,1,1,103,104],[1000,1,1,104,105],[1001,8,8,105,113],[1002,13,11,113,124],[1003,8,8,124,132],[1004,13,12,132,144],[1005,1,1,144,145],[1006,4,4,145,149],[1007,1,1,149,150],[1008,4,4,150,154],[1009,5,5,154,159],[1010,11,8,159,167],[1011,4,4,167,171],[1012,9,5,171,176],[1013,7,7,176,183],[1014,1,1,183,184],[1015,1,1,184,185],[1016,2,2,185,187],[1017,4,3,187,190]]],[43,40,37,190,227,[[1019,1,1,190,191],[1024,1,1,191,192],[1025,2,2,192,194],[1026,3,3,194,197],[1027,1,1,197,198],[1028,2,2,198,200],[1029,1,1,200,201],[1030,1,1,201,202],[1033,2,2,202,204],[1035,1,1,204,205],[1036,2,1,205,206],[1037,1,1,206,207],[1039,6,6,207,213],[1040,4,3,213,216],[1041,3,3,216,219],[1042,2,2,219,221],[1043,6,5,221,226],[1045,1,1,226,227]]],[44,7,7,227,234,[[1052,3,3,227,230],[1053,1,1,230,231],[1054,1,1,231,232],[1060,2,2,232,234]]],[45,4,4,234,238,[[1062,1,1,234,235],[1065,1,1,235,236],[1077,2,2,236,238]]],[46,11,10,238,248,[[1079,3,3,238,241],[1084,1,1,241,242],[1088,3,2,242,244],[1089,4,4,244,248]]],[47,5,5,248,253,[[1091,1,1,248,249],[1092,1,1,249,250],[1094,3,3,250,253]]],[48,1,1,253,254,[[1102,1,1,253,254]]],[49,3,3,254,257,[[1103,1,1,254,255],[1104,1,1,255,256],[1106,1,1,256,257]]],[50,1,1,257,258,[[1110,1,1,257,258]]],[53,2,1,258,259,[[1119,2,1,258,259]]],[54,9,9,259,268,[[1125,3,3,259,262],[1127,1,1,262,263],[1128,5,5,263,268]]],[55,1,1,268,269,[[1131,1,1,268,269]]],[57,4,3,269,272,[[1135,2,1,269,270],[1140,1,1,270,271],[1143,1,1,271,272]]],[65,3,3,272,275,[[1183,1,1,272,273],[1187,2,2,273,275]]]],[23206,23347,23450,23457,23487,23625,23627,23641,23642,23655,23685,23687,23759,23776,23779,23890,23957,24043,24044,24050,24051,24066,24075,24077,24086,24088,24089,24100,24109,24129,24175,24205,24255,24371,24429,24430,24469,24470,24527,24529,24538,24557,24575,24577,24602,24606,24624,24635,24636,24688,24772,24782,24784,24785,24796,24802,24803,24826,24860,24936,24941,25022,25081,25106,25119,25192,25193,25273,25319,25321,25327,25349,25379,25398,25403,25411,25423,25468,25473,25551,25553,25571,25572,25579,25607,25624,25644,25691,25693,25704,25707,25726,25727,25736,25758,25802,25879,25885,25898,25925,26030,26077,26092,26112,26190,26217,26221,26234,26240,26246,26247,26250,26253,26283,26292,26293,26294,26295,26296,26297,26301,26302,26314,26322,26344,26347,26356,26357,26361,26362,26364,26365,26397,26399,26402,26407,26409,26410,26418,26421,26423,26427,26430,26435,26444,26496,26497,26498,26513,26565,26607,26624,26625,26629,26643,26650,26651,26663,26668,26675,26677,26683,26687,26689,26691,26692,26696,26708,26715,26720,26724,26731,26736,26742,26743,26745,26764,26767,26780,26782,26783,26784,26785,26808,26836,26888,26896,26913,26914,26915,26977,27144,27207,27212,27220,27222,27233,27288,27318,27322,27348,27387,27498,27513,27578,27606,27649,27711,27712,27714,27717,27721,27725,27737,27752,27756,27781,27787,27788,27806,27807,27828,27836,27837,27844,27851,27917,28102,28114,28115,28118,28175,28319,28322,28380,28437,28782,28787,28826,28827,28837,28923,29005,29021,29028,29029,29033,29043,29072,29101,29143,29145,29149,29357,29368,29421,29455,29546,29708,29824,29825,29826,29864,29879,29880,29886,29887,29888,29935,30004,30103,30204,30978,31062,31063]]],["+",[19,18,[[39,5,4,0,4,[[936,1,1,0,1],[953,4,3,1,4]]],[40,1,1,4,5,[[957,1,1,4,5]]],[41,2,2,5,7,[[973,1,1,5,6],[977,1,1,6,7]]],[42,1,1,7,8,[[998,1,1,7,8]]],[43,2,2,8,10,[[1019,1,1,8,9],[1040,1,1,9,10]]],[44,2,2,10,12,[[1052,1,1,10,11],[1053,1,1,11,12]]],[45,1,1,12,13,[[1077,1,1,12,13]]],[46,1,1,13,14,[[1079,1,1,13,14]]],[47,1,1,14,15,[[1094,1,1,14,15]]],[54,1,1,15,16,[[1125,1,1,15,16]]],[65,2,2,16,18,[[1183,1,1,16,17],[1187,1,1,17,18]]]],[23347,24043,24050,24051,24255,24941,25119,26112,26977,27752,28114,28118,28782,28826,29143,29826,30978,31063]]],["He",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26914]]],["I",[35,34,[[39,4,4,0,4,[[944,2,2,0,2],[954,2,2,2,4]]],[40,4,4,4,8,[[964,2,2,4,6],[966,1,1,6,7],[970,1,1,7,8]]],[41,10,10,8,18,[[974,1,1,8,9],[976,1,1,9,10],[981,2,2,10,12],[982,1,1,12,13],[983,1,1,13,14],[985,1,1,14,15],[991,2,2,15,17],[994,1,1,17,18]]],[42,1,1,18,19,[[1006,1,1,18,19]]],[43,8,7,19,26,[[1028,1,1,19,20],[1030,1,1,20,21],[1033,1,1,21,22],[1035,1,1,22,23],[1036,2,1,23,24],[1039,1,1,24,25],[1042,1,1,25,26]]],[44,1,1,26,27,[[1060,1,1,26,27]]],[46,3,3,27,30,[[1079,2,2,27,29],[1084,1,1,29,30]]],[47,1,1,30,31,[[1094,1,1,30,31]]],[48,1,1,31,32,[[1102,1,1,31,32]]],[49,1,1,32,33,[[1103,1,1,32,33]]],[50,1,1,33,34,[[1110,1,1,33,34]]]],[23685,23687,24086,24089,24527,24529,24624,24785,25022,25106,25319,25321,25398,25423,25551,25736,25758,25879,26497,27322,27387,27513,27578,27606,27721,27806,28322,28827,28837,28923,29149,29357,29368,29546]]],["am",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24782]]],["me",[242,221,[[39,28,24,0,24,[[931,1,1,0,1],[938,2,2,1,3],[939,1,1,3,4],[942,2,2,4,6],[943,3,3,6,9],[946,1,1,9,10],[947,2,2,10,12],[950,1,1,12,13],[951,1,1,13,14],[953,5,2,14,16],[954,7,6,16,22],[955,1,1,22,23],[956,1,1,23,24]]],[40,21,21,24,45,[[961,1,1,24,25],[962,2,2,25,27],[963,2,2,27,29],[964,1,1,29,30],[965,3,3,30,33],[966,4,4,33,37],[968,1,1,37,38],[970,6,6,38,44],[971,1,1,44,45]]],[41,32,31,45,76,[[973,1,1,45,46],[974,1,1,46,47],[976,2,1,47,48],[978,2,2,48,50],[980,1,1,50,51],[981,2,2,51,53],[982,2,2,53,55],[983,1,1,55,56],[984,2,2,56,58],[985,1,1,58,59],[986,3,3,59,62],[987,1,1,62,63],[988,2,2,63,65],[990,6,6,65,71],[992,1,1,71,72],[994,3,3,72,75],[996,1,1,75,76]]],[42,97,86,76,162,[[997,2,2,76,78],[1000,1,1,78,79],[1001,8,8,79,87],[1002,13,11,87,98],[1003,8,8,98,106],[1004,13,12,106,118],[1005,1,1,118,119],[1006,3,3,119,122],[1007,1,1,122,123],[1008,4,4,123,127],[1009,5,5,127,132],[1010,11,8,132,140],[1011,4,4,140,144],[1012,9,5,144,149],[1013,7,7,149,156],[1014,1,1,156,157],[1015,1,1,157,158],[1016,2,2,158,160],[1017,3,2,160,162]]],[43,30,28,162,190,[[1024,1,1,162,163],[1025,2,2,163,165],[1026,3,3,165,168],[1027,1,1,168,169],[1028,1,1,169,170],[1029,1,1,170,171],[1033,1,1,171,172],[1037,1,1,172,173],[1039,5,5,173,178],[1040,3,2,178,180],[1041,3,3,180,183],[1042,1,1,183,184],[1043,6,5,184,189],[1045,1,1,189,190]]],[44,3,3,190,193,[[1052,2,2,190,192],[1054,1,1,192,193]]],[45,3,3,193,196,[[1062,1,1,193,194],[1065,1,1,194,195],[1077,1,1,195,196]]],[46,7,6,196,202,[[1088,3,2,196,198],[1089,4,4,198,202]]],[47,3,3,202,205,[[1091,1,1,202,203],[1092,1,1,203,204],[1094,1,1,204,205]]],[49,2,2,205,207,[[1104,1,1,205,206],[1106,1,1,206,207]]],[53,2,1,207,208,[[1119,2,1,207,208]]],[54,8,8,208,216,[[1125,2,2,208,210],[1127,1,1,210,211],[1128,5,5,211,216]]],[55,1,1,216,217,[[1131,1,1,216,217]]],[57,4,3,217,220,[[1135,2,1,217,218],[1140,1,1,218,219],[1143,1,1,219,220]]],[65,1,1,220,221,[[1187,1,1,220,221]]]],[23206,23450,23457,23487,23625,23627,23641,23642,23655,23759,23776,23779,23890,23957,24044,24051,24075,24077,24088,24100,24109,24129,24175,24205,24371,24429,24430,24469,24470,24538,24557,24575,24577,24602,24606,24635,24636,24688,24772,24784,24796,24802,24803,24826,24860,24936,25022,25081,25192,25193,25273,25327,25349,25379,25403,25411,25468,25473,25553,25571,25572,25579,25607,25624,25644,25691,25693,25704,25707,25726,25727,25802,25885,25898,25925,26030,26077,26092,26190,26217,26221,26234,26240,26246,26247,26250,26253,26283,26292,26293,26294,26295,26296,26297,26301,26302,26314,26322,26344,26347,26356,26357,26361,26362,26364,26365,26397,26399,26402,26407,26409,26410,26418,26421,26423,26427,26430,26435,26444,26496,26498,26513,26565,26607,26624,26625,26629,26643,26650,26651,26663,26668,26675,26677,26683,26687,26689,26691,26692,26696,26708,26715,26720,26724,26731,26736,26742,26743,26745,26764,26767,26780,26782,26783,26784,26785,26808,26836,26888,26896,26913,26915,27144,27207,27212,27220,27222,27233,27288,27318,27348,27498,27649,27711,27712,27714,27717,27725,27737,27756,27781,27787,27788,27807,27828,27836,27837,27844,27851,27917,28102,28115,28175,28380,28437,28787,29005,29021,29028,29029,29033,29043,29072,29101,29145,29421,29455,29708,29824,29825,29864,29879,29880,29886,29887,29888,29935,30004,30103,30204,31062]]],["my",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24066]]],["should",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28319]]]]},{"k":"G3166","v":[["things",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30324]]]]},{"k":"G3167","v":[["*",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[24942,26960]]],["things",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24942]]],["works",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26960]]]]},{"k":"G3168","v":[["*",[3,3,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]],[60,1,1,2,3,[[1156,1,1,2,3]]]],[25344,27612,30495]]],["magnificence",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27612]]],["majesty",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30495]]],["power",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25344]]]]},{"k":"G3169","v":[["excellent",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30496]]]]},{"k":"G3170","v":[["*",[8,8,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,2,2,1,3,[[973,2,2,1,3]]],[43,3,3,3,6,[[1022,1,1,3,4],[1027,1,1,4,5],[1036,1,1,5,6]]],[46,1,1,6,7,[[1087,1,1,6,7]]],[49,1,1,7,8,[[1103,1,1,7,8]]]],[23923,24939,24951,27072,27305,27602,28986,29381]]],["+",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24951]]],["enlarge",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23923]]],["enlarged",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28986]]],["magnified",[3,3,[[43,2,2,0,2,[[1022,1,1,0,1],[1036,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]]],[27072,27602,29381]]],["magnify",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]]],[24939,27305]]]]},{"k":"G3171","v":[["greatly",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29452]]]]},{"k":"G3172","v":[["*",[3,3,[[57,2,2,0,2,[[1133,1,1,0,1],[1140,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[29966,30093,30697]]],["Majesty",[2,2,[[57,2,2,0,2,[[1133,1,1,0,1],[1140,1,1,1,2]]]],[29966,30093]]],["majesty",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30697]]]]},{"k":"G3173","v":[["*",[195,185,[[39,20,20,0,20,[[930,1,1,0,1],[932,1,1,1,2],[933,2,2,2,4],[935,1,1,4,5],[936,2,2,5,7],[943,1,1,7,8],[948,2,2,8,10],[950,2,2,10,12],[952,3,3,12,15],[955,3,3,15,18],[956,2,2,18,20]]],[40,15,15,20,35,[[957,1,1,20,21],[960,4,4,21,25],[961,3,3,25,28],[966,2,2,28,30],[969,1,1,30,31],[970,1,1,31,32],[971,2,2,32,34],[972,1,1,34,35]]],[41,26,25,35,60,[[973,3,3,35,38],[974,2,2,38,40],[976,3,3,40,43],[977,1,1,43,44],[978,1,1,44,45],[979,1,1,45,46],[980,2,2,46,48],[981,1,1,48,49],[985,1,1,49,50],[986,1,1,50,51],[988,1,1,51,52],[989,1,1,52,53],[991,1,1,53,54],[993,3,2,54,56],[994,1,1,56,57],[995,2,2,57,59],[996,1,1,59,60]]],[42,5,5,60,65,[[1002,1,1,60,61],[1003,1,1,61,62],[1007,1,1,62,63],[1015,1,1,63,64],[1017,1,1,64,65]]],[43,31,29,65,94,[[1019,1,1,65,66],[1021,2,1,66,67],[1022,2,2,67,69],[1023,1,1,69,70],[1024,3,3,70,73],[1025,8,7,73,80],[1027,1,1,80,81],[1028,2,2,81,83],[1031,1,1,83,84],[1032,1,1,84,85],[1033,2,2,85,87],[1036,4,4,87,91],[1040,1,1,91,92],[1043,2,2,92,94]]],[44,1,1,94,95,[[1054,1,1,94,95]]],[45,2,2,95,97,[[1070,1,1,95,96],[1077,1,1,96,97]]],[46,1,1,97,98,[[1088,1,1,97,98]]],[48,1,1,98,99,[[1101,1,1,98,99]]],[53,2,2,99,101,[[1121,1,1,99,100],[1124,1,1,100,101]]],[54,1,1,101,102,[[1126,1,1,101,102]]],[55,1,1,102,103,[[1130,1,1,102,103]]],[57,6,6,103,109,[[1136,1,1,103,104],[1140,1,1,104,105],[1142,2,2,105,107],[1143,1,1,107,108],[1145,1,1,108,109]]],[64,1,1,109,110,[[1166,1,1,109,110]]],[65,82,75,110,185,[[1167,1,1,110,111],[1168,1,1,111,112],[1171,2,2,112,114],[1172,5,5,114,119],[1173,3,3,119,122],[1174,3,3,122,125],[1175,2,2,125,127],[1176,1,1,127,128],[1177,8,8,128,136],[1178,6,6,136,142],[1179,4,4,142,146],[1180,7,7,146,153],[1181,2,2,153,155],[1182,11,8,155,163],[1183,4,4,163,167],[1184,9,7,167,174],[1185,6,5,174,179],[1186,3,3,179,182],[1187,4,3,182,185]]]],[23179,23225,23253,23269,23343,23369,23371,23661,23817,23818,23908,23910,23978,23981,23988,24175,24179,24189,24197,24203,24241,24355,24360,24362,24364,24371,24375,24406,24630,24631,24719,24769,24860,24863,24877,24908,24925,24935,24982,24983,25088,25096,25101,25136,25195,25211,25273,25282,25349,25537,25569,25646,25666,25768,25837,25849,25876,25958,25981,26043,26275,26365,26566,26856,26909,26969,27055,27064,27070,27109,27127,27173,27176,27177,27178,27183,27184,27185,27186,27189,27270,27312,27335,27424,27445,27509,27511,27612,27613,27619,27620,27743,27845,27847,28157,28551,28785,29004,29336,29747,29794,29847,29921,30028,30103,30154,30168,30196,30261,30678,30707,30739,30781,30791,30797,30803,30805,30806,30810,30812,30820,30824,30835,30837,30840,30842,30854,30864,30880,30883,30884,30885,30887,30889,30890,30891,30892,30894,30900,30901,30903,30905,30910,30913,30921,30924,30928,30933,30934,30935,30941,30944,30945,30947,30949,30955,30963,30966,30968,30971,30972,30973,30975,30976,30980,30981,30993,30994,30995,31003,31009,31011,31012,31014,31018,31019,31022,31034,31035,31039,31049,31050,31056,31063,31065]]],["+",[5,5,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[57,2,2,2,4,[[1140,1,1,2,3],[1143,1,1,3,4]]],[65,1,1,4,5,[[1179,1,1,4,5]]]],[24364,24982,30103,30196,30924]]],["GREAT",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30980]]],["Great",[3,3,[[43,2,2,0,2,[[1036,2,2,0,2]]],[65,1,1,2,3,[[1181,1,1,2,3]]]],[27613,27619,30949]]],["day",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26856]]],["great",[140,133,[[39,18,18,0,18,[[930,1,1,0,1],[932,1,1,1,2],[933,2,2,2,4],[935,1,1,4,5],[936,2,2,5,7],[943,1,1,7,8],[948,2,2,8,10],[950,2,2,10,12],[952,3,3,12,15],[955,1,1,15,16],[956,2,2,16,18]]],[40,8,8,18,26,[[960,3,3,18,21],[961,2,2,21,23],[966,1,1,23,24],[969,1,1,24,25],[972,1,1,25,26]]],[41,17,16,26,42,[[973,2,2,26,28],[974,1,1,28,29],[976,2,2,29,31],[977,1,1,31,32],[978,1,1,32,33],[979,1,1,33,34],[980,1,1,34,35],[981,1,1,35,36],[985,1,1,36,37],[986,1,1,37,38],[988,1,1,38,39],[993,3,2,39,41],[996,1,1,41,42]]],[42,3,3,42,45,[[1002,1,1,42,43],[1003,1,1,43,44],[1017,1,1,44,45]]],[43,20,19,45,64,[[1019,1,1,45,46],[1021,2,1,46,47],[1022,2,2,47,49],[1023,1,1,49,50],[1024,1,1,50,51],[1025,4,4,51,55],[1027,1,1,55,56],[1028,2,2,56,58],[1032,1,1,58,59],[1033,1,1,59,60],[1036,2,2,60,62],[1040,1,1,62,63],[1043,1,1,63,64]]],[44,1,1,64,65,[[1054,1,1,64,65]]],[45,1,1,65,66,[[1077,1,1,65,66]]],[48,1,1,66,67,[[1101,1,1,66,67]]],[53,2,2,67,69,[[1121,1,1,67,68],[1124,1,1,68,69]]],[54,1,1,69,70,[[1126,1,1,69,70]]],[55,1,1,70,71,[[1130,1,1,70,71]]],[57,3,3,71,74,[[1136,1,1,71,72],[1142,1,1,72,73],[1145,1,1,73,74]]],[64,1,1,74,75,[[1166,1,1,74,75]]],[65,63,58,75,133,[[1167,1,1,75,76],[1168,1,1,76,77],[1172,3,3,77,80],[1173,1,1,80,81],[1174,2,2,81,83],[1175,2,2,83,85],[1177,8,8,85,93],[1178,5,5,93,98],[1179,2,2,98,100],[1180,3,3,100,103],[1181,1,1,103,104],[1182,11,8,104,112],[1183,3,3,112,115],[1184,8,7,115,122],[1185,5,5,122,127],[1186,3,3,127,130],[1187,4,3,130,133]]]],[23179,23225,23253,23269,23343,23369,23371,23661,23817,23818,23908,23910,23978,23981,23988,24189,24197,24203,24355,24360,24362,24375,24406,24631,24719,24877,24908,24925,24983,25088,25101,25136,25195,25211,25282,25349,25537,25569,25646,25837,25849,26043,26275,26365,26909,26969,27055,27064,27070,27109,27127,27177,27178,27184,27186,27270,27312,27335,27445,27509,27612,27620,27743,27845,28157,28785,29336,29747,29794,29847,29921,30028,30168,30261,30678,30707,30739,30797,30805,30810,30824,30835,30837,30842,30854,30880,30883,30884,30885,30887,30889,30890,30891,30892,30894,30900,30903,30905,30910,30921,30928,30934,30945,30947,30955,30963,30966,30968,30971,30972,30973,30975,30976,30981,30993,30994,30995,31003,31009,31011,31012,31014,31018,31019,31022,31034,31035,31039,31049,31050,31056,31063,31065]]],["greatest",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27186]]],["high",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30154]]],["large",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24769,25876]]],["loud",[33,33,[[39,2,2,0,2,[[955,2,2,0,2]]],[40,4,4,2,6,[[957,1,1,2,3],[961,1,1,3,4],[971,2,2,4,6]]],[41,7,7,6,13,[[973,1,1,6,7],[976,1,1,7,8],[980,1,1,8,9],[989,1,1,9,10],[991,1,1,10,11],[995,2,2,11,13]]],[42,1,1,13,14,[[1007,1,1,13,14]]],[43,6,6,14,20,[[1024,2,2,14,16],[1025,1,1,16,17],[1031,1,1,17,18],[1033,1,1,18,19],[1043,1,1,19,20]]],[65,13,13,20,33,[[1171,2,2,20,22],[1172,1,1,22,23],[1173,2,2,23,25],[1174,1,1,25,26],[1176,1,1,26,27],[1178,1,1,27,28],[1180,4,4,28,32],[1185,1,1,32,33]]]],[24175,24179,24241,24371,24860,24863,24935,25096,25273,25666,25768,25958,25981,26566,27173,27176,27183,27424,27511,27847,30781,30791,30803,30812,30820,30840,30864,30901,30933,30935,30941,30944,31034]]],["mighty",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30806]]],["one",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27185]]],["ones",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24630]]],["strong",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30995]]],["the",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27189]]],["thing",[2,2,[[45,1,1,0,1,[[1070,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[28551,29004]]],["things",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30913]]]]},{"k":"G3174","v":[["greatness",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29225]]]]},{"k":"G3175","v":[["*",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[65,2,2,1,3,[[1172,1,1,1,2],[1184,1,1,2,3]]]],[24428,30808,31016]]],["+",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24428]]],["men",[2,2,[[65,2,2,0,2,[[1172,1,1,0,1],[1184,1,1,1,2]]]],[30808,31016]]]]},{"k":"G3176","v":[["great",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30483]]]]},{"k":"G3177","v":[["*",[7,7,[[39,1,1,0,1,[[929,1,1,0,1]]],[40,3,3,1,4,[[961,1,1,1,2],[971,2,2,2,4]]],[42,1,1,4,5,[[997,1,1,4,5]]],[43,2,2,5,7,[[1021,1,1,5,6],[1030,1,1,6,7]]]],[23167,24405,24848,24860,26085,27058,27370]]],["+",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27370]]],["interpreted",[6,6,[[39,1,1,0,1,[[929,1,1,0,1]]],[40,3,3,1,4,[[961,1,1,1,2],[971,2,2,2,4]]],[42,1,1,4,5,[[997,1,1,4,5]]],[43,1,1,5,6,[[1021,1,1,5,6]]]],[23167,24405,24848,24860,26085,27058]]]]},{"k":"G3178","v":[["drunkenness",[3,3,[[41,1,1,0,1,[[993,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]]],[25860,28279,29183]]]]},{"k":"G3179","v":[["*",[5,5,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,2,2,1,3,[[1030,1,1,1,2],[1036,1,1,2,3]]],[45,1,1,3,4,[[1074,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]]],[25624,27384,27611,28667,29478]]],["away",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27611]]],["out",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25624]]],["remove",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28667]]],["removed",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27384]]],["translated",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29478]]]]},{"k":"G3180","v":[["*",[2,2,[[48,2,2,0,2,[[1100,1,1,0,1],[1102,1,1,1,2]]]],[29286,29348]]],["+",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29286]]],["wiles",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29348]]]]},{"k":"G3181","v":[["borders",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24487]]]]},{"k":"G3182","v":[["*",[3,3,[[41,1,1,0,1,[[984,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]],[51,1,1,2,3,[[1115,1,1,2,3]]]],[25504,29322,29628]]],["+",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29322]]],["drunken",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]]],[25504,29628]]]]},{"k":"G3183","v":[["*",[2,2,[[45,2,2,0,2,[[1066,1,1,0,1],[1067,1,1,1,2]]]],[28465,28477]]],["drunkard",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28465]]],["drunkards",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28477]]]]},{"k":"G3184","v":[["*",[7,7,[[39,1,1,0,1,[[952,1,1,0,1]]],[42,1,1,1,2,[[998,1,1,1,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]],[45,1,1,3,4,[[1072,1,1,3,4]]],[51,1,1,4,5,[[1115,1,1,4,5]]],[65,2,2,5,7,[[1183,2,2,5,7]]]],[24006,26105,26964,28621,29628,30977,30981]]],["drunk",[2,2,[[42,1,1,0,1,[[998,1,1,0,1]]],[65,1,1,1,2,[[1183,1,1,1,2]]]],[26105,30977]]],["drunken",[5,5,[[39,1,1,0,1,[[952,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[51,1,1,3,4,[[1115,1,1,3,4]]],[65,1,1,4,5,[[1183,1,1,4,5]]]],[24006,26964,28621,29628,30981]]]]},{"k":"G3185","v":[["more",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23823]]]]},{"k":"G3186","v":[["greater",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30662]]]]},{"k":"G3187","v":[["*",[45,42,[[39,9,8,0,8,[[939,2,1,0,1],[940,1,1,1,2],[941,1,1,2,3],[946,2,2,3,5],[951,3,3,5,8]]],[40,3,3,8,11,[[960,1,1,8,9],[965,1,1,9,10],[968,1,1,10,11]]],[41,7,6,11,17,[[979,2,1,11,12],[981,1,1,12,13],[984,1,1,13,14],[994,3,3,14,17]]],[42,13,12,17,29,[[997,1,1,17,18],[1000,1,1,18,19],[1001,2,2,19,21],[1004,1,1,21,22],[1006,1,1,22,23],[1009,2,1,23,24],[1010,2,2,24,26],[1011,2,2,26,28],[1015,1,1,28,29]]],[44,1,1,29,30,[[1054,1,1,29,30]]],[45,2,2,30,32,[[1074,1,1,30,31],[1075,1,1,31,32]]],[57,4,4,32,36,[[1138,2,2,32,34],[1141,1,1,34,35],[1143,1,1,35,36]]],[58,2,2,36,38,[[1148,1,1,36,37],[1149,1,1,37,38]]],[60,1,1,38,39,[[1157,1,1,38,39]]],[61,3,3,39,42,[[1161,1,1,39,40],[1162,1,1,40,41],[1163,1,1,41,42]]]],[23470,23495,23571,23728,23731,23929,23935,23937,24355,24572,24704,25223,25347,25477,25888,25890,25891,26094,26168,26230,26246,26434,26510,26646,26680,26696,26712,26719,26836,28167,28678,28683,30057,30060,30116,30198,30320,30343,30511,30599,30607,30633]]],["Greater",[1,1,[[42,1,1,0,1,[[1011,1,1,0,1]]]],[26712]]],["elder",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28167]]],["greater",[32,29,[[39,5,4,0,4,[[939,2,1,0,1],[940,1,1,1,2],[951,2,2,2,4]]],[40,2,2,4,6,[[960,1,1,4,5],[968,1,1,5,6]]],[41,4,3,6,9,[[979,2,1,6,7],[984,1,1,7,8],[994,1,1,8,9]]],[42,11,10,9,19,[[1000,1,1,9,10],[1001,2,2,10,12],[1004,1,1,12,13],[1006,1,1,13,14],[1009,2,1,14,15],[1010,2,2,15,17],[1011,1,1,17,18],[1015,1,1,18,19]]],[45,1,1,19,20,[[1075,1,1,19,20]]],[57,4,4,20,24,[[1138,2,2,20,22],[1141,1,1,22,23],[1143,1,1,23,24]]],[58,1,1,24,25,[[1148,1,1,24,25]]],[60,1,1,25,26,[[1157,1,1,25,26]]],[61,3,3,26,29,[[1161,1,1,26,27],[1162,1,1,27,28],[1163,1,1,28,29]]]],[23470,23495,23935,23937,24355,24704,25223,25477,25891,26168,26230,26246,26434,26510,26646,26680,26696,26719,26836,28683,30057,30060,30116,30198,30320,30511,30599,30607,30633]]],["greatest",[9,9,[[39,4,4,0,4,[[941,1,1,0,1],[946,2,2,1,3],[951,1,1,3,4]]],[40,1,1,4,5,[[965,1,1,4,5]]],[41,3,3,5,8,[[981,1,1,5,6],[994,2,2,6,8]]],[45,1,1,8,9,[[1074,1,1,8,9]]]],[23571,23728,23731,23929,24572,25347,25888,25890,28678]]],["more",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30343]]],["things",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26094]]]]},{"k":"G3188","v":[["ink",[3,3,[[46,1,1,0,1,[[1080,1,1,0,1]]],[62,1,1,1,2,[[1164,1,1,1,2]]],[63,1,1,2,3,[[1165,1,1,2,3]]]],[28844,30657,30671]]]]},{"k":"G3189","v":[["black",[3,3,[[39,1,1,0,1,[[933,1,1,0,1]]],[65,2,2,1,3,[[1172,2,2,1,3]]]],[23270,30798,30805]]]]},{"k":"G3190","v":[["Melea",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25056]]]]},{"k":"G3191","v":[["*",[3,3,[[40,1,1,0,1,[[969,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]]],[24728,27047,29762]]],["imagine",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27047]]],["premeditate",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24728]]],["upon",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29762]]]]},{"k":"G3192","v":[["honey",[4,4,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[65,2,2,2,4,[[1176,2,2,2,4]]]],[23196,24221,30870,30871]]]]},{"k":"G3193","v":[["+",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26033]]]]},{"k":"G3194","v":[["Melita",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27900]]]]},{"k":"G3195","v":[["*",[109,106,[[39,9,9,0,9,[[930,1,1,0,1],[931,1,1,1,2],[939,1,1,2,3],[940,1,1,3,4],[944,1,1,4,5],[945,2,2,5,7],[948,1,1,7,8],[952,1,1,8,9]]],[40,2,2,9,11,[[966,1,1,9,10],[969,1,1,10,11]]],[41,12,12,11,23,[[975,1,1,11,12],[979,1,1,12,13],[981,2,2,13,15],[982,1,1,15,16],[985,1,1,16,17],[991,2,2,17,19],[993,2,2,19,21],[994,1,1,21,22],[996,1,1,22,23]]],[42,12,11,23,34,[[1000,1,1,23,24],[1002,3,3,24,27],[1003,3,2,27,29],[1007,1,1,29,30],[1008,2,2,30,32],[1010,1,1,32,33],[1014,1,1,33,34]]],[43,34,33,34,67,[[1020,1,1,34,35],[1022,1,1,35,36],[1028,1,1,36,37],[1029,1,1,37,38],[1030,1,1,38,39],[1033,1,1,39,40],[1034,1,1,40,41],[1035,1,1,41,42],[1036,1,1,42,43],[1037,5,4,43,47],[1038,2,2,47,49],[1039,3,3,49,52],[1040,5,5,52,57],[1041,1,1,57,58],[1042,1,1,58,59],[1043,3,3,59,62],[1044,4,4,62,66],[1045,1,1,66,67]]],[44,5,5,67,72,[[1049,1,1,67,68],[1050,1,1,68,69],[1053,3,3,69,72]]],[45,1,1,72,73,[[1064,1,1,72,73]]],[47,1,1,73,74,[[1093,1,1,73,74]]],[48,1,1,74,75,[[1097,1,1,74,75]]],[50,1,1,75,76,[[1108,1,1,75,76]]],[51,1,1,76,77,[[1113,1,1,76,77]]],[53,3,3,77,80,[[1119,1,1,77,78],[1122,1,1,78,79],[1124,1,1,79,80]]],[54,1,1,80,81,[[1128,1,1,80,81]]],[57,10,10,81,91,[[1133,1,1,81,82],[1134,1,1,82,83],[1138,1,1,83,84],[1140,1,1,84,85],[1141,1,1,85,86],[1142,2,2,86,88],[1143,2,2,88,90],[1145,1,1,90,91]]],[58,1,1,91,92,[[1147,1,1,91,92]]],[59,1,1,92,93,[[1155,1,1,92,93]]],[60,1,1,93,94,[[1157,1,1,93,94]]],[65,13,12,94,106,[[1167,1,1,94,95],[1168,2,1,95,96],[1169,3,3,96,99],[1172,1,1,99,100],[1174,1,1,100,101],[1176,2,2,101,103],[1178,2,2,103,105],[1183,1,1,105,106]]]],[23182,23199,23473,23521,23699,23712,23722,23814,23963,24620,24721,25032,25197,25332,25345,25364,25527,25735,25742,25833,25862,25887,26012,26203,26263,26272,26328,26363,26367,26574,26584,26613,26690,26817,26999,27094,27335,27343,27396,27510,27554,27571,27612,27629,27633,27639,27664,27691,27701,27720,27730,27733,27737,27749,27754,27761,27764,27784,27800,27825,27845,27846,27857,27865,27885,27888,27905,28046,28061,28129,28134,28154,28432,29125,29227,29511,29594,29712,29755,29807,29871,29977,29982,30049,30097,30116,30134,30160,30180,30192,30255,30305,30466,30506,30716,30727,30748,30756,30762,30804,30840,30865,30868,30895,30896,30983]]],["+",[3,3,[[41,1,1,0,1,[[985,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]],[43,1,1,2,3,[[1040,1,1,2,3]]]],[25527,26203,27764]]],["about",[5,5,[[43,3,3,0,3,[[1020,1,1,0,1],[1035,1,1,1,2],[1037,1,1,2,3]]],[57,1,1,3,4,[[1140,1,1,3,4]]],[65,1,1,4,5,[[1176,1,1,4,5]]]],[26999,27571,27629,30097,30865]]],["after",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30180]]],["afterwards",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29125]]],["almost",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27691]]],["be",[2,2,[[57,1,1,0,1,[[1133,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[29977,30305]]],["begin",[1,1,[[65,1,1,0,1,[[1176,1,1,0,1]]]],[30868]]],["come",[16,16,[[39,2,2,0,2,[[931,1,1,0,1],[940,1,1,1,2]]],[41,1,1,2,3,[[975,1,1,2,3]]],[44,2,2,3,5,[[1050,1,1,3,4],[1053,1,1,4,5]]],[45,1,1,5,6,[[1064,1,1,5,6]]],[48,1,1,6,7,[[1097,1,1,6,7]]],[50,1,1,7,8,[[1108,1,1,7,8]]],[53,2,2,8,10,[[1122,1,1,8,9],[1124,1,1,9,10]]],[57,6,6,10,16,[[1134,1,1,10,11],[1138,1,1,11,12],[1141,1,1,12,13],[1142,1,1,13,14],[1143,1,1,14,15],[1145,1,1,15,16]]]],[23199,23521,25032,28061,28154,28432,29227,29511,29755,29807,29982,30049,30116,30134,30192,30255]]],["hereafter",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29712]]],["intend",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27094]]],["intending",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27639]]],["meaning",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27857]]],["minding",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27639]]],["ready",[4,4,[[41,1,1,0,1,[[979,1,1,0,1]]],[43,1,1,1,2,[[1037,1,1,1,2]]],[65,2,2,2,4,[[1169,1,1,2,3],[1178,1,1,3,4]]]],[25197,27633,30748,30895]]],["shall",[22,22,[[39,5,5,0,5,[[944,1,1,0,1],[945,2,2,1,3],[948,1,1,3,4],[952,1,1,4,5]]],[40,1,1,5,6,[[969,1,1,5,6]]],[41,3,3,6,9,[[981,1,1,6,7],[993,2,2,7,9]]],[43,3,3,9,12,[[1040,1,1,9,10],[1041,1,1,10,11],[1043,1,1,11,12]]],[44,3,3,12,15,[[1049,1,1,12,13],[1053,2,2,13,15]]],[54,1,1,15,16,[[1128,1,1,15,16]]],[57,1,1,16,17,[[1142,1,1,16,17]]],[59,1,1,17,18,[[1155,1,1,17,18]]],[65,4,4,18,22,[[1167,1,1,18,19],[1168,1,1,19,20],[1169,1,1,20,21],[1183,1,1,21,22]]]],[23699,23712,23722,23814,23963,24721,25345,25833,25862,27737,27784,27825,28046,28129,28134,29871,30160,30466,30716,30727,30756,30983]]],["shalt",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30727]]],["should",[22,22,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,4,4,1,5,[[981,1,1,1,2],[991,1,1,2,3],[994,1,1,3,4],[996,1,1,4,5]]],[42,6,6,5,11,[[1002,1,1,5,6],[1003,1,1,6,7],[1007,1,1,7,8],[1008,2,2,8,10],[1014,1,1,10,11]]],[43,8,8,11,19,[[1028,1,1,11,12],[1036,1,1,12,13],[1037,1,1,13,14],[1039,1,1,14,15],[1040,1,1,15,16],[1043,2,2,16,18],[1045,1,1,18,19]]],[51,1,1,19,20,[[1113,1,1,19,20]]],[60,1,1,20,21,[[1157,1,1,20,21]]],[65,1,1,21,22,[[1172,1,1,21,22]]]],[24620,25332,25742,25887,26012,26328,26367,26574,26584,26613,26817,27335,27612,27664,27733,27761,27845,27846,27905,29594,30506,30804]]],["tarriest",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27720]]],["thou",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27730]]],["to",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27396]]],["was",[5,5,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[991,1,1,1,2]]],[43,2,2,2,4,[[1038,1,1,2,3],[1044,1,1,3,4]]],[65,1,1,4,5,[[1178,1,1,4,5]]]],[23473,25735,27701,27888,30896]]],["will",[6,5,[[39,1,1,0,1,[[930,1,1,0,1]]],[42,2,1,1,2,[[1003,2,1,1,2]]],[43,2,2,2,4,[[1034,1,1,2,3],[1044,1,1,3,4]]],[65,1,1,4,5,[[1169,1,1,4,5]]]],[23182,26363,27554,27865,30762]]],["wilt",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26690]]],["would",[9,9,[[41,1,1,0,1,[[982,1,1,0,1]]],[42,2,2,1,3,[[1002,2,2,1,3]]],[43,6,6,3,9,[[1029,1,1,3,4],[1033,1,1,4,5],[1040,2,2,5,7],[1042,1,1,7,8],[1044,1,1,8,9]]]],[25364,26263,26272,27343,27510,27749,27754,27800,27885]]],["yet",[1,1,[[65,1,1,0,1,[[1174,1,1,0,1]]]],[30840]]]]},{"k":"G3196","v":[["*",[34,24,[[39,2,2,0,2,[[933,2,2,0,2]]],[44,10,6,2,8,[[1051,4,2,2,4],[1052,3,2,4,6],[1057,3,2,6,8]]],[45,16,10,8,18,[[1067,3,1,8,9],[1073,13,9,9,18]]],[48,2,2,18,20,[[1100,1,1,18,19],[1101,1,1,19,20]]],[50,1,1,20,21,[[1109,1,1,20,21]]],[58,3,3,21,24,[[1148,2,2,21,23],[1149,1,1,23,24]]]],[23263,23264,28081,28087,28096,28114,28249,28250,28482,28646,28648,28652,28653,28654,28656,28659,28660,28661,29297,29334,29522,30324,30325,30338]]],["member",[5,4,[[45,4,3,0,3,[[1073,4,3,0,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]]],[28648,28653,28660,30324]]],["members",[29,21,[[39,2,2,0,2,[[933,2,2,0,2]]],[44,10,6,2,8,[[1051,4,2,2,4],[1052,3,2,4,6],[1057,3,2,6,8]]],[45,12,8,8,16,[[1067,3,1,8,9],[1073,9,7,9,16]]],[48,2,2,16,18,[[1100,1,1,16,17],[1101,1,1,17,18]]],[50,1,1,18,19,[[1109,1,1,18,19]]],[58,2,2,19,21,[[1148,1,1,19,20],[1149,1,1,20,21]]]],[23263,23264,28081,28087,28096,28114,28249,28250,28482,28646,28652,28654,28656,28659,28660,28661,29297,29334,29522,30325,30338]]]]},{"k":"G3197","v":[["Melchi",[2,2,[[41,2,2,0,2,[[975,2,2,0,2]]]],[25049,25053]]]]},{"k":"G3198","v":[["Melchisedec",[9,9,[[57,9,9,0,9,[[1137,2,2,0,2],[1138,1,1,2,3],[1139,6,6,3,9]]]],[30036,30040,30064,30065,30074,30075,30079,30081,30085]]]]},{"k":"G3199","v":[["*",[10,10,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,2,2,1,3,[[960,1,1,1,2],[968,1,1,2,3]]],[41,1,1,3,4,[[982,1,1,3,4]]],[42,2,2,4,6,[[1006,1,1,4,5],[1008,1,1,5,6]]],[43,1,1,6,7,[[1035,1,1,6,7]]],[45,2,2,7,9,[[1068,1,1,7,8],[1070,1,1,8,9]]],[59,1,1,9,10,[[1155,1,1,9,10]]]],[23888,24361,24687,25403,26494,26586,27574,28508,28549,30472]]],["+",[2,2,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[24687,25403]]],["care",[2,2,[[45,2,2,0,2,[[1068,1,1,0,1],[1070,1,1,1,2]]]],[28508,28549]]],["cared",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26586]]],["carest",[2,2,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]]],[23888,24361]]],["careth",[2,2,[[42,1,1,0,1,[[1006,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[26494,30472]]],["for",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27574]]]]},{"k":"G3200","v":[["parchments",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29883]]]]},{"k":"G3201","v":[["fault",[3,3,[[40,1,1,0,1,[[963,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]],[57,1,1,2,3,[[1140,1,1,2,3]]]],[24465,28174,30100]]]]},{"k":"G3202","v":[["complainers",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30688]]]]},{"k":"G3303","v":[["*",[181,180,[[39,20,19,0,19,[[931,1,1,0,1],[937,1,1,1,2],[938,1,1,2,3],[941,4,4,3,7],[944,2,2,7,9],[945,1,1,9,10],[948,1,1,10,11],[949,1,1,11,12],[950,3,2,12,14],[951,2,2,14,16],[953,1,1,16,17],[954,2,2,17,19]]],[40,8,8,19,27,[[957,1,1,19,20],[960,1,1,20,21],[965,1,1,21,22],[966,1,1,22,23],[968,1,1,23,24],[970,2,2,24,26],[972,1,1,26,27]]],[41,11,11,27,38,[[975,2,2,27,29],[980,1,1,29,30],[982,2,2,30,32],[983,1,1,32,33],[985,1,1,33,34],[994,1,1,34,35],[995,3,3,35,38]]],[42,6,6,38,44,[[1003,1,1,38,39],[1007,1,1,39,40],[1012,2,2,40,42],[1015,1,1,42,43],[1016,1,1,43,44]]],[43,50,50,44,94,[[1018,4,4,44,48],[1019,1,1,48,49],[1020,2,2,49,51],[1021,1,1,51,52],[1022,2,2,52,54],[1025,2,2,54,56],[1026,2,2,56,58],[1028,2,2,58,60],[1029,1,1,60,61],[1030,2,2,61,63],[1031,3,3,63,66],[1032,2,2,66,68],[1033,1,1,68,69],[1034,4,4,69,73],[1035,1,1,73,74],[1036,3,3,74,77],[1038,1,1,77,78],[1039,2,2,78,80],[1040,4,4,80,84],[1042,2,2,84,86],[1043,2,2,86,88],[1044,3,3,88,91],[1045,3,3,91,94]]],[44,18,18,94,112,[[1046,1,1,94,95],[1047,3,3,95,98],[1048,1,1,98,99],[1050,1,1,99,100],[1051,1,1,100,101],[1052,1,1,101,102],[1053,2,2,102,104],[1054,1,1,104,105],[1055,1,1,105,106],[1056,3,3,106,109],[1059,3,3,109,112]]],[45,19,19,112,131,[[1062,3,3,112,115],[1063,1,1,115,116],[1064,1,1,116,117],[1066,1,1,117,118],[1067,2,2,118,120],[1068,1,1,120,121],[1070,2,2,121,123],[1072,3,3,123,126],[1073,2,2,126,128],[1075,1,1,128,129],[1076,2,2,129,131]]],[46,7,7,131,138,[[1079,1,1,131,132],[1081,1,1,132,133],[1085,1,1,133,134],[1086,1,1,134,135],[1087,2,2,135,137],[1089,1,1,137,138]]],[47,3,3,138,141,[[1094,3,3,138,141]]],[48,1,1,141,142,[[1100,1,1,141,142]]],[49,5,5,142,147,[[1103,3,3,142,145],[1105,2,2,145,147]]],[50,1,1,147,148,[[1108,1,1,147,148]]],[51,1,1,148,149,[[1112,1,1,148,149]]],[54,3,3,149,152,[[1125,1,1,149,150],[1126,1,1,150,151],[1128,1,1,151,152]]],[55,1,1,152,153,[[1129,1,1,152,153]]],[57,17,17,153,170,[[1135,1,1,153,154],[1138,1,1,154,155],[1139,7,7,155,162],[1140,1,1,162,163],[1141,3,3,163,166],[1142,2,2,166,168],[1143,1,1,168,169],[1144,1,1,169,170]]],[58,1,1,170,171,[[1148,1,1,170,171]]],[59,6,6,171,177,[[1151,1,1,171,172],[1152,2,2,172,174],[1153,1,1,174,175],[1154,2,2,175,177]]],[64,3,3,177,180,[[1166,3,3,177,180]]]],[23203,23416,23430,23543,23547,23562,23571,23675,23686,23711,23815,23861,23877,23880,23945,23946,24023,24078,24095,24223,24327,24550,24627,24678,24775,24792,24892,25041,25043,25250,25365,25369,25453,25527,25886,25968,25976,25991,26340,26529,26735,26748,26849,26897,26924,26928,26929,26941,26990,27017,27018,27038,27082,27100,27180,27201,27223,27247,27323,27326,27342,27366,27398,27417,27418,27426,27445,27472,27488,27535,27540,27553,27555,27571,27589,27617,27623,27703,27707,27713,27742,27752,27756,27765,27800,27807,27827,27832,27876,27896,27899,27904,27921,27923,27938,27969,27970,27987,27993,28063,28079,28116,28126,28133,28176,28189,28222,28231,28237,28282,28285,28300,28375,28381,28386,28409,28414,28457,28471,28474,28494,28564,28565,28607,28618,28621,28642,28662,28695,28757,28758,28840,28871,28949,28957,28972,28981,29034,29139,29154,29155,29283,29376,29377,29389,29422,29434,29517,29588,29819,29847,29874,29907,30000,30060,30066,30069,30072,30075,30082,30085,30087,30096,30106,30111,30128,30144,30166,30187,30222,30336,30394,30403,30413,30442,30452,30460,30680,30682,30694]]],["+",[95,94,[[39,11,10,0,10,[[938,1,1,0,1],[941,3,3,1,4],[944,1,1,4,5],[949,1,1,5,6],[950,3,2,6,8],[951,1,1,8,9],[953,1,1,9,10]]],[40,2,2,10,12,[[960,1,1,10,11],[968,1,1,11,12]]],[41,5,5,12,17,[[975,1,1,12,13],[980,1,1,13,14],[982,1,1,14,15],[995,2,2,15,17]]],[42,5,5,17,22,[[1003,1,1,17,18],[1007,1,1,18,19],[1012,2,2,19,21],[1015,1,1,21,22]]],[43,27,27,22,49,[[1018,2,2,22,24],[1019,1,1,24,25],[1020,1,1,25,26],[1022,1,1,26,27],[1025,2,2,27,29],[1026,1,1,29,30],[1028,1,1,30,31],[1031,3,3,31,34],[1034,3,3,34,37],[1035,1,1,37,38],[1036,2,2,38,40],[1040,2,2,40,42],[1042,1,1,42,43],[1043,2,2,43,45],[1044,2,2,45,47],[1045,2,2,47,49]]],[44,11,11,49,60,[[1047,1,1,49,50],[1048,1,1,50,51],[1050,1,1,51,52],[1052,1,1,52,53],[1054,1,1,53,54],[1055,1,1,54,55],[1056,3,3,55,58],[1059,2,2,58,60]]],[45,10,10,60,70,[[1062,2,2,60,62],[1063,1,1,62,63],[1064,1,1,63,64],[1067,1,1,64,65],[1068,1,1,65,66],[1070,1,1,66,67],[1072,1,1,67,68],[1073,2,2,68,70]]],[46,4,4,70,74,[[1079,1,1,70,71],[1081,1,1,71,72],[1086,1,1,72,73],[1087,1,1,73,74]]],[47,2,2,74,76,[[1094,2,2,74,76]]],[48,1,1,76,77,[[1100,1,1,76,77]]],[49,2,2,77,79,[[1103,1,1,77,78],[1105,1,1,78,79]]],[54,3,3,79,82,[[1125,1,1,79,80],[1126,1,1,80,81],[1128,1,1,81,82]]],[57,8,8,82,90,[[1139,4,4,82,86],[1141,2,2,86,88],[1142,2,2,88,90]]],[58,1,1,90,91,[[1148,1,1,90,91]]],[59,1,1,91,92,[[1154,1,1,91,92]]],[64,2,2,92,94,[[1166,2,2,92,94]]]],[23430,23543,23547,23562,23675,23861,23877,23880,23946,24023,24327,24678,25043,25250,25369,25968,25991,26340,26529,26735,26748,26849,26929,26941,26990,27017,27100,27180,27201,27247,27326,27417,27418,27426,27535,27553,27555,27571,27617,27623,27752,27765,27800,27827,27832,27896,27899,27904,27923,27970,27993,28063,28116,28176,28189,28222,28231,28237,28282,28285,28375,28381,28409,28414,28474,28494,28564,28621,28642,28662,28840,28871,28957,28981,29154,29155,29283,29377,29434,29819,29847,29874,30066,30072,30075,30085,30111,30128,30144,30166,30336,30452,30680,30694]]],["I",[2,2,[[43,1,1,0,1,[[1042,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[27807,27938]]],["Truly",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29034]]],["a",[2,2,[[43,1,1,0,1,[[1026,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]]],[27223,28386]]],["am",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28972]]],["an",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29389]]],["are",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29907]]],["as",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27921]]],["being",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1032,1,1,1,2]]]],[27366,27445]]],["even",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29588]]],["have",[2,2,[[43,2,2,0,2,[[1018,1,1,0,1],[1044,1,1,1,2]]]],[26924,27876]]],["he",[4,4,[[43,2,2,0,2,[[1030,1,1,0,1],[1034,1,1,1,2]]],[57,1,1,2,3,[[1140,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]]],[27398,27540,30096,30460]]],["indeed",[22,22,[[39,5,5,0,5,[[931,1,1,0,1],[941,1,1,1,2],[948,1,1,2,3],[951,1,1,3,4],[954,1,1,4,5]]],[40,3,3,5,8,[[957,1,1,5,6],[966,1,1,6,7],[970,1,1,7,8]]],[41,3,3,8,11,[[975,1,1,8,9],[983,1,1,9,10],[995,1,1,10,11]]],[43,3,3,11,14,[[1021,1,1,11,12],[1028,1,1,12,13],[1039,1,1,13,14]]],[44,2,2,14,16,[[1051,1,1,14,15],[1059,1,1,15,16]]],[45,1,1,16,17,[[1072,1,1,16,17]]],[46,1,1,17,18,[[1085,1,1,17,18]]],[49,2,2,18,20,[[1103,1,1,18,19],[1105,1,1,19,20]]],[50,1,1,20,21,[[1108,1,1,20,21]]],[59,1,1,21,22,[[1152,1,1,21,22]]]],[23203,23571,23815,23945,24095,24223,24627,24775,25041,25453,25976,27038,27323,27713,28079,28300,28607,28949,29376,29422,29517,30403]]],["is",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]]],[28126,28758]]],["it",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[45,1,1,2,3,[[1070,1,1,2,3]]]],[24078,25527,28565]]],["kind",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28757]]],["of",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[28133,30413]]],["say",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23686]]],["so",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27488]]],["the",[2,2,[[43,1,1,0,1,[[1040,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[27742,30442]]],["then",[2,2,[[40,1,1,0,1,[[972,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[24892,27756]]],["they",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30682]]],["truly",[11,11,[[39,2,2,0,2,[[937,1,1,0,1],[945,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,2,2,3,5,[[982,1,1,3,4],[994,1,1,4,5]]],[42,1,1,5,6,[[1016,1,1,5,6]]],[43,3,3,6,9,[[1018,1,1,6,7],[1020,1,1,7,8],[1022,1,1,8,9]]],[57,2,2,9,11,[[1139,1,1,9,10],[1143,1,1,10,11]]]],[23416,23711,24792,25365,25886,26897,26928,27018,27082,30087,30187]]],["verily",[13,13,[[40,1,1,0,1,[[965,1,1,0,1]]],[43,2,2,1,3,[[1036,1,1,1,2],[1039,1,1,2,3]]],[44,1,1,3,4,[[1047,1,1,3,4]]],[45,2,2,4,6,[[1066,1,1,4,5],[1075,1,1,5,6]]],[57,6,6,6,12,[[1135,1,1,6,7],[1138,1,1,7,8],[1139,2,2,8,10],[1141,1,1,10,11],[1144,1,1,11,12]]],[59,1,1,12,13,[[1151,1,1,12,13]]]],[24550,27589,27707,27987,28457,28695,30000,30060,30069,30082,30106,30222,30394]]],["was",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27342]]],["were",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27472]]],["when",[2,2,[[45,1,1,0,1,[[1072,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]]],[28618,29139]]],["which",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27703]]],["who",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27969]]],["ye",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28471]]]]},{"k":"G3304","v":[["*",[4,4,[[41,1,1,0,1,[[983,1,1,0,1]]],[44,2,2,1,3,[[1054,1,1,1,2],[1055,1,1,2,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]]],[25433,28175,28206,29429]]],["but",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28175]]],["doubtless",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29429]]],["rather",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25433]]],["verily",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28206]]]]},{"k":"G3305","v":[["*",[7,7,[[42,5,5,0,5,[[1000,1,1,0,1],[1003,1,1,1,2],[1008,1,1,2,3],[1016,1,1,3,4],[1017,1,1,4,5]]],[54,1,1,5,6,[[1126,1,1,5,6]]],[58,1,1,6,7,[[1147,1,1,6,7]]]],[26183,26341,26622,26872,26902,29846,30301]]],["+",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26622]]],["Howbeit",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26341]]],["Nevertheless",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29846]]],["but",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26902]]],["ye",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30301]]],["yet",[2,2,[[42,2,2,0,2,[[1000,1,1,0,1],[1016,1,1,1,2]]]],[26183,26872]]]]},{"k":"G3306","v":[["*",[120,105,[[39,3,3,0,3,[[938,1,1,0,1],[939,1,1,1,2],[954,1,1,2,3]]],[40,2,2,3,5,[[962,1,1,3,4],[970,1,1,4,5]]],[41,7,6,5,11,[[973,1,1,5,6],[980,1,1,6,7],[981,1,1,7,8],[982,1,1,8,9],[991,1,1,9,10],[996,2,1,10,11]]],[42,41,34,11,45,[[997,5,4,11,15],[998,1,1,15,16],[999,1,1,16,17],[1000,2,1,17,18],[1001,1,1,18,19],[1002,2,2,19,21],[1003,1,1,21,22],[1004,3,2,22,24],[1005,1,1,24,25],[1006,1,1,25,26],[1007,1,1,26,27],[1008,3,3,27,30],[1010,4,4,30,34],[1011,12,8,34,42],[1015,1,1,42,43],[1017,2,2,43,45]]],[43,15,14,45,59,[[1022,2,1,45,46],[1026,1,1,46,47],[1033,1,1,47,48],[1035,2,2,48,50],[1037,3,3,50,53],[1038,2,2,53,55],[1044,2,2,55,57],[1045,2,2,57,59]]],[44,1,1,59,60,[[1054,1,1,59,60]]],[45,8,8,60,68,[[1064,1,1,60,61],[1068,5,5,61,66],[1074,1,1,66,67],[1076,1,1,67,68]]],[46,3,3,68,71,[[1080,2,2,68,70],[1086,1,1,70,71]]],[49,1,1,71,72,[[1103,1,1,71,72]]],[53,1,1,72,73,[[1120,1,1,72,73]]],[54,3,3,73,76,[[1126,1,1,73,74],[1127,1,1,74,75],[1128,1,1,75,76]]],[57,6,6,76,82,[[1139,2,2,76,78],[1142,1,1,78,79],[1144,1,1,79,80],[1145,2,2,80,82]]],[59,2,2,82,84,[[1151,2,2,82,84]]],[61,23,18,84,102,[[1160,11,8,84,92],[1161,7,6,92,98],[1162,5,4,98,102]]],[62,3,2,102,104,[[1164,3,2,102,104]]],[65,1,1,104,105,[[1183,1,1,104,105]]]],[23428,23482,24092,24417,24788,24949,25272,25305,25370,25736,26020,26076,26077,26082,26083,26107,26156,26196,26248,26284,26313,26337,26412,26416,26481,26521,26529,26604,26614,26626,26678,26684,26685,26693,26703,26704,26705,26706,26708,26709,26710,26715,26856,26920,26921,27063,27259,27498,27560,27577,27631,27641,27649,27671,27672,27886,27896,27915,27929,28166,28424,28495,28498,28507,28511,28527,28678,28724,28852,28855,28965,29386,29731,29840,29867,29890,30067,30088,30167,30239,30242,30255,30397,30399,30556,30560,30564,30567,30569,30574,30577,30578,30585,30588,30593,30594,30596,30603,30615,30616,30618,30619,30647,30654,30985]]],["+",[4,4,[[42,2,2,0,2,[[1007,1,1,0,1],[1011,1,1,1,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]],[61,1,1,3,4,[[1160,1,1,3,4]]]],[26529,26705,27063,30569]]],["Abide",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,1,1,1,2,[[1011,1,1,1,2]]]],[26020,26703]]],["abide",[24,21,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,2,2,2,4,[[981,1,1,2,3],[991,1,1,3,4]]],[42,8,5,4,9,[[1008,1,1,4,5],[1010,1,1,5,6],[1011,6,3,6,9]]],[43,3,3,9,12,[[1033,1,1,9,10],[1037,1,1,10,11],[1044,1,1,11,12]]],[45,5,5,12,17,[[1064,1,1,12,13],[1068,4,4,13,17]]],[49,1,1,17,18,[[1103,1,1,17,18]]],[61,3,3,18,21,[[1160,3,3,18,21]]]],[23428,24417,25305,25736,26626,26684,26703,26706,26709,27498,27649,27886,28424,28495,28507,28511,28527,29386,30574,30577,30578]]],["abideth",[20,18,[[42,6,5,0,5,[[999,1,1,0,1],[1004,2,1,1,2],[1008,2,2,2,4],[1011,1,1,4,5]]],[45,1,1,5,6,[[1074,1,1,5,6]]],[54,1,1,6,7,[[1126,1,1,6,7]]],[57,1,1,7,8,[[1139,1,1,7,8]]],[59,1,1,8,9,[[1151,1,1,8,9]]],[61,8,8,9,17,[[1160,5,5,9,14],[1161,3,3,14,17]]],[62,2,1,17,18,[[1164,2,1,17,18]]]],[26156,26416,26604,26614,26704,28678,29840,30067,30397,30556,30560,30564,30567,30577,30585,30593,30603,30654]]],["abiding",[2,2,[[42,1,1,0,1,[[1001,1,1,0,1]]],[61,1,1,1,2,[[1161,1,1,1,2]]]],[26248,30594]]],["abode",[11,11,[[41,2,2,0,2,[[973,1,1,0,1],[980,1,1,1,2]]],[42,5,5,2,7,[[997,2,2,2,4],[1000,1,1,4,5],[1003,1,1,5,6],[1006,1,1,6,7]]],[43,3,3,7,10,[[1035,1,1,7,8],[1038,2,2,8,10]]],[54,1,1,10,11,[[1128,1,1,10,11]]]],[24949,25272,26076,26083,26196,26337,26521,27560,27671,27672,29890]]],["continue",[7,7,[[42,2,2,0,2,[[1004,1,1,0,1],[1011,1,1,1,2]]],[53,1,1,2,3,[[1120,1,1,2,3]]],[54,1,1,3,4,[[1127,1,1,3,4]]],[57,1,1,4,5,[[1145,1,1,4,5]]],[61,1,1,5,6,[[1160,1,1,5,6]]],[65,1,1,6,7,[[1183,1,1,6,7]]]],[26412,26708,29731,29867,30242,30574,30985]]],["continued",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26107]]],["continueth",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30088]]],["continuing",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30255]]],["dwell",[2,2,[[43,1,1,0,1,[[1045,1,1,0,1]]],[61,1,1,1,2,[[1162,1,1,1,2]]]],[27915,30616]]],["dwellest",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26082]]],["dwelleth",[10,9,[[42,3,3,0,3,[[1002,1,1,0,1],[1010,2,2,1,3]]],[61,6,5,3,8,[[1161,2,2,3,5],[1162,4,3,5,8]]],[62,1,1,8,9,[[1164,1,1,8,9]]]],[26313,26678,26685,30596,30603,30615,30618,30619,30647]]],["dwelt",[2,2,[[42,1,1,0,1,[[997,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]]],[26083,27929]]],["endureth",[2,2,[[42,1,1,0,1,[[1002,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[26284,30399]]],["enduring",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30167]]],["present",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26693]]],["remain",[8,8,[[41,1,1,0,1,[[982,1,1,0,1]]],[42,3,3,1,4,[[1011,2,2,1,3],[1015,1,1,3,4]]],[45,2,2,4,6,[[1068,1,1,4,5],[1076,1,1,5,6]]],[57,1,1,6,7,[[1144,1,1,6,7]]],[61,1,1,7,8,[[1160,1,1,7,8]]]],[25370,26710,26715,26856,28498,28724,30239,30574]]],["remained",[3,3,[[39,1,1,0,1,[[939,1,1,0,1]]],[43,2,2,1,3,[[1022,1,1,1,2],[1044,1,1,2,3]]]],[23482,27063,27896]]],["remaineth",[5,5,[[42,1,1,0,1,[[1005,1,1,0,1]]],[46,3,3,1,4,[[1080,2,2,1,3],[1086,1,1,3,4]]],[61,1,1,4,5,[[1161,1,1,4,5]]]],[26481,28852,28855,28965,30588]]],["remaining",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26077]]],["stand",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28166]]],["tarried",[3,3,[[43,3,3,0,3,[[1026,1,1,0,1],[1037,2,2,1,3]]]],[27259,27631,27641]]],["tarry",[7,7,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[996,1,1,2,3]]],[42,3,3,3,6,[[1000,1,1,3,4],[1017,2,2,4,6]]],[43,1,1,6,7,[[1035,1,1,6,7]]]],[24092,24788,26020,26196,26920,26921,27577]]]]},{"k":"G3307","v":[["*",[14,13,[[39,3,2,0,2,[[940,3,2,0,2]]],[40,4,4,2,6,[[959,3,3,2,5],[962,1,1,5,6]]],[41,1,1,6,7,[[984,1,1,6,7]]],[44,1,1,7,8,[[1057,1,1,7,8]]],[45,3,3,8,11,[[1062,1,1,8,9],[1068,2,2,9,11]]],[46,1,1,11,12,[[1087,1,1,11,12]]],[57,1,1,12,13,[[1139,1,1,12,13]]]],[23514,23515,24312,24313,24314,24448,25472,28248,28376,28504,28521,28984,30066]]],["between",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28521]]],["dealt",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28248]]],["distributed",[2,2,[[45,1,1,0,1,[[1068,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]]],[28504,28984]]],["divide",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25472]]],["divided",[8,7,[[39,3,2,0,2,[[940,3,2,0,2]]],[40,4,4,2,6,[[959,3,3,2,5],[962,1,1,5,6]]],[45,1,1,6,7,[[1062,1,1,6,7]]]],[23514,23515,24312,24313,24314,24448,28376]]],["gave",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30066]]]]},{"k":"G3308","v":[["*",[6,6,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,2,2,2,4,[[980,1,1,2,3],[993,1,1,3,4]]],[46,1,1,4,5,[[1088,1,1,4,5]]],[59,1,1,5,6,[[1155,1,1,5,6]]]],[23561,24342,25259,25860,29017,30472]]],["care",[3,3,[[39,1,1,0,1,[[941,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[59,1,1,2,3,[[1155,1,1,2,3]]]],[23561,29017,30472]]],["cares",[3,3,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,2,2,1,3,[[980,1,1,1,2],[993,1,1,2,3]]]],[24342,25259,25860]]]]},{"k":"G3309","v":[["*",[19,17,[[39,7,6,0,6,[[934,6,5,0,5],[938,1,1,5,6]]],[41,5,5,6,11,[[982,1,1,6,7],[984,4,4,7,11]]],[45,5,4,11,15,[[1068,4,3,11,14],[1073,1,1,14,15]]],[49,2,2,15,17,[[1104,1,1,15,16],[1106,1,1,16,17]]]],[23307,23309,23310,23313,23316,23436,25404,25470,25481,25484,25485,28519,28520,28521,28659,29411,29448]]],["+",[7,7,[[39,4,4,0,4,[[934,3,3,0,3],[938,1,1,3,4]]],[41,2,2,4,6,[[984,2,2,4,6]]],[45,1,1,6,7,[[1073,1,1,6,7]]]],[23307,23313,23316,23436,25470,25481,28659]]],["care",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29411]]],["careful",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]]],[25404,29448]]],["for",[4,3,[[45,4,3,0,3,[[1068,4,3,0,3]]]],[28519,28520,28521]]],["thought",[5,5,[[39,3,3,0,3,[[934,3,3,0,3]]],[41,2,2,3,5,[[984,2,2,3,5]]]],[23309,23310,23316,25484,25485]]]]},{"k":"G3310","v":[["*",[5,5,[[41,1,1,0,1,[[982,1,1,0,1]]],[43,2,2,1,3,[[1025,1,1,1,2],[1033,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]]],[25405,27197,27495,28913,29477]]],["+",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29477]]],["part",[4,4,[[41,1,1,0,1,[[982,1,1,0,1]]],[43,2,2,1,3,[[1025,1,1,1,2],[1033,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]]],[25405,27197,27495,28913]]]]},{"k":"G3311","v":[["*",[2,2,[[57,2,2,0,2,[[1134,1,1,0,1],[1136,1,1,1,2]]]],[29981,30026]]],["asunder",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30026]]],["gifts",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29981]]]]},{"k":"G3312","v":[["divider",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25473]]]]},{"k":"G3313","v":[["*",[43,41,[[39,4,4,0,4,[[930,1,1,0,1],[943,1,1,1,2],[944,1,1,2,3],[952,1,1,3,4]]],[40,1,1,4,5,[[964,1,1,4,5]]],[41,4,4,5,9,[[983,1,1,5,6],[984,1,1,6,7],[987,1,1,7,8],[996,1,1,8,9]]],[42,4,3,9,12,[[1009,1,1,9,10],[1015,2,1,10,11],[1017,1,1,11,12]]],[43,7,7,12,19,[[1019,1,1,12,13],[1022,1,1,13,14],[1036,2,2,14,16],[1037,1,1,16,17],[1040,2,2,17,19]]],[44,3,3,19,22,[[1056,1,1,19,20],[1060,2,2,20,22]]],[45,7,6,22,28,[[1072,1,1,22,23],[1073,1,1,23,24],[1074,4,3,24,27],[1075,1,1,27,28]]],[46,4,4,28,32,[[1078,1,1,28,29],[1079,1,1,29,30],[1080,1,1,30,31],[1086,1,1,31,32]]],[48,2,2,32,34,[[1100,2,2,32,34]]],[50,1,1,34,35,[[1108,1,1,34,35]]],[57,1,1,35,36,[[1141,1,1,35,36]]],[59,1,1,36,37,[[1154,1,1,36,37]]],[65,4,4,37,41,[[1182,1,1,37,38],[1186,1,1,38,39],[1187,1,1,39,40],[1188,1,1,40,41]]]],[23191,23654,23685,24008,24510,25441,25505,25600,26033,26638,26848,26904,26959,27061,27586,27612,27628,27740,27743,28234,28318,28327,28618,28661,28674,28675,28677,28705,28814,28829,28851,28959,29281,29288,29510,30110,30462,30973,31044,31061,31099]]],["+",[5,5,[[44,2,2,0,2,[[1060,2,2,0,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[46,1,1,3,4,[[1079,1,1,3,4]]],[57,1,1,4,5,[[1141,1,1,4,5]]]],[28318,28327,28618,28829,30110]]],["behalf",[2,2,[[46,1,1,0,1,[[1086,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[28959,30462]]],["coasts",[3,3,[[39,2,2,0,2,[[943,1,1,0,1],[944,1,1,1,2]]],[43,1,1,2,3,[[1036,1,1,2,3]]]],[23654,23685,27586]]],["course",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28705]]],["craft",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27612]]],["part",[16,15,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,2,2,1,3,[[1009,1,1,1,2],[1015,1,1,2,3]]],[43,3,3,3,6,[[1022,1,1,3,4],[1040,2,2,4,6]]],[44,1,1,6,7,[[1056,1,1,6,7]]],[45,4,3,7,10,[[1074,4,3,7,10]]],[46,1,1,10,11,[[1078,1,1,10,11]]],[48,1,1,11,12,[[1100,1,1,11,12]]],[65,3,3,12,15,[[1186,1,1,12,13],[1187,1,1,13,14],[1188,1,1,14,15]]]],[25441,26638,26848,27061,27740,27743,28234,28674,28675,28677,28814,29288,31044,31061,31099]]],["particular",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28661]]],["parts",[7,7,[[39,1,1,0,1,[[930,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]],[43,2,2,3,5,[[1019,1,1,3,4],[1037,1,1,4,5]]],[48,1,1,5,6,[[1100,1,1,5,6]]],[65,1,1,6,7,[[1182,1,1,6,7]]]],[23191,24510,26848,26959,27628,29281,30973]]],["piece",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26033]]],["portion",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[987,1,1,2,3]]]],[24008,25505,25600]]],["respect",[2,2,[[46,1,1,0,1,[[1080,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[28851,29510]]],["side",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26904]]]]},{"k":"G3314","v":[["*",[2,2,[[43,2,2,0,2,[[1025,1,1,0,1],[1039,1,1,1,2]]]],[27202,27710]]],["noon",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27710]]],["south",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27202]]]]},{"k":"G3315","v":[["confirmed",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30061]]]]},{"k":"G3316","v":[["mediator",[6,6,[[47,2,2,0,2,[[1093,2,2,0,2]]],[53,1,1,2,3,[[1120,1,1,2,3]]],[57,3,3,3,6,[[1140,1,1,3,4],[1141,1,1,4,5],[1144,1,1,5,6]]]],[29121,29122,29721,30098,30120,30236]]]]},{"k":"G3317","v":[["midnight",[4,4,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[43,2,2,2,4,[[1033,1,1,2,3],[1037,1,1,3,4]]]],[24752,25410,27508,27633]]]]},{"k":"G3318","v":[["Mesopotamia",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1024,1,1,1,2]]]],[26958,27118]]]]},{"k":"G3319","v":[["*",[61,59,[[39,8,8,0,8,[[938,1,1,0,1],[941,2,2,1,3],[942,2,2,3,5],[946,2,2,5,7],[953,1,1,7,8]]],[40,5,5,8,13,[[959,1,1,8,9],[962,1,1,9,10],[963,1,1,10,11],[965,1,1,11,12],[970,1,1,12,13]]],[41,14,13,13,26,[[974,1,1,13,14],[976,2,2,14,16],[977,1,1,16,17],[978,1,1,17,18],[980,1,1,18,19],[982,1,1,19,20],[989,1,1,20,21],[993,1,1,21,22],[994,3,2,22,24],[995,1,1,24,25],[996,1,1,25,26]]],[42,7,7,26,33,[[997,1,1,26,27],[1004,3,3,27,30],[1015,1,1,30,31],[1016,2,2,31,33]]],[43,10,10,33,43,[[1018,2,2,33,35],[1019,1,1,35,36],[1021,1,1,36,37],[1034,2,2,37,39],[1040,1,1,39,40],[1043,1,1,40,41],[1044,2,2,41,43]]],[45,2,2,43,45,[[1066,1,1,43,44],[1067,1,1,44,45]]],[46,1,1,45,46,[[1083,1,1,45,46]]],[49,1,1,46,47,[[1104,1,1,46,47]]],[50,1,1,47,48,[[1108,1,1,47,48]]],[51,1,1,48,49,[[1112,1,1,48,49]]],[52,1,1,49,50,[[1117,1,1,49,50]]],[57,1,1,50,51,[[1134,1,1,50,51]]],[65,9,8,51,59,[[1167,1,1,51,52],[1168,2,2,52,54],[1170,1,1,54,55],[1171,2,1,55,56],[1172,1,1,56,57],[1173,1,1,57,58],[1188,1,1,58,59]]]],[23433,23564,23588,23603,23621,23729,23747,24014,24291,24454,24494,24574,24814,25019,25093,25098,25126,25154,25252,25366,25662,25847,25891,25919,25980,26027,26070,26384,26390,26440,26843,26886,26893,26938,26941,26971,27029,27545,27556,27744,27836,27876,27882,28456,28472,28915,29406,29508,29577,29668,29989,30710,30718,30724,30774,30785,30799,30827,31082]]],["+",[12,12,[[39,3,3,0,3,[[941,1,1,0,1],[942,1,1,1,2],[953,1,1,2,3]]],[40,1,1,3,4,[[959,1,1,3,4]]],[41,4,4,4,8,[[980,1,1,4,5],[982,1,1,5,6],[994,2,2,6,8]]],[43,2,2,8,10,[[1043,1,1,8,9],[1044,1,1,9,10]]],[45,1,1,10,11,[[1067,1,1,10,11]]],[51,1,1,11,12,[[1112,1,1,11,12]]]],[23564,23603,24014,24291,25252,25366,25891,25919,27836,27882,28472,29577]]],["among",[6,6,[[39,1,1,0,1,[[941,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]],[43,2,2,2,4,[[1034,1,1,2,3],[1040,1,1,3,4]]],[45,1,1,4,5,[[1066,1,1,4,5]]],[46,1,1,5,6,[[1083,1,1,5,6]]]],[23588,26070,27556,27744,28456,28915]]],["midst",[41,40,[[39,4,4,0,4,[[938,1,1,0,1],[942,1,1,1,2],[946,2,2,2,4]]],[40,4,4,4,8,[[962,1,1,4,5],[963,1,1,5,6],[965,1,1,6,7],[970,1,1,7,8]]],[41,10,10,8,18,[[974,1,1,8,9],[976,2,2,9,11],[977,1,1,11,12],[978,1,1,12,13],[989,1,1,13,14],[993,1,1,14,15],[994,1,1,15,16],[995,1,1,16,17],[996,1,1,17,18]]],[42,6,6,18,24,[[1004,3,3,18,21],[1015,1,1,21,22],[1016,2,2,22,24]]],[43,6,6,24,30,[[1018,2,2,24,26],[1019,1,1,26,27],[1021,1,1,27,28],[1034,1,1,28,29],[1044,1,1,29,30]]],[49,1,1,30,31,[[1104,1,1,30,31]]],[57,1,1,31,32,[[1134,1,1,31,32]]],[65,9,8,32,40,[[1167,1,1,32,33],[1168,2,2,33,35],[1170,1,1,35,36],[1171,2,1,36,37],[1172,1,1,37,38],[1173,1,1,38,39],[1188,1,1,39,40]]]],[23433,23621,23729,23747,24454,24494,24574,24814,25019,25093,25098,25126,25154,25662,25847,25919,25980,26027,26384,26390,26440,26843,26886,26893,26938,26941,26971,27029,27545,27876,29406,29989,30710,30718,30724,30774,30785,30799,30827,31082]]],["way",[2,2,[[50,1,1,0,1,[[1108,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]]],[29508,29668]]]]},{"k":"G3320","v":[["wall",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29243]]]]},{"k":"G3321","v":[["heaven",[3,3,[[65,3,3,0,3,[[1174,1,1,0,1],[1180,1,1,1,2],[1185,1,1,2,3]]]],[30840,30932,31034]]]]},{"k":"G3322","v":[["midst",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26342]]]]},{"k":"G3323","v":[["Messias",[2,2,[[42,2,2,0,2,[[997,1,1,0,1],[1000,1,1,1,2]]]],[26085,26181]]]]},{"k":"G3324","v":[["full",[8,8,[[39,1,1,0,1,[[951,1,1,0,1]]],[42,2,2,1,3,[[1015,1,1,1,2],[1017,1,1,2,3]]],[44,2,2,3,5,[[1046,1,1,3,4],[1060,1,1,4,5]]],[58,2,2,5,7,[[1148,2,2,5,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]]],[23946,26854,26909,27959,28317,30327,30336,30514]]]]},{"k":"G3325","v":[["full",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26962]]]]},{"k":"G3326","v":[["*",[462,434,[[39,70,67,0,67,[[929,2,2,0,2],[930,2,2,2,4],[932,1,1,4,5],[933,2,2,5,7],[936,1,1,7,8],[937,2,2,8,10],[940,7,6,10,16],[941,1,1,16,17],[942,1,1,17,18],[943,1,1,18,19],[944,1,1,19,20],[945,3,3,20,23],[946,2,2,23,25],[947,1,1,25,26],[948,2,2,26,28],[949,1,1,28,29],[950,1,1,29,30],[952,5,5,30,35],[953,6,5,35,40],[954,18,17,40,57],[955,7,7,57,64],[956,3,3,64,67]]],[40,54,51,67,118,[[957,5,5,67,72],[958,5,3,72,75],[959,4,4,75,79],[960,2,2,79,81],[961,3,3,81,84],[962,2,2,84,86],[964,4,4,86,90],[965,3,3,90,93],[966,1,1,93,94],[967,1,1,94,95],[969,2,2,95,97],[970,15,14,97,111],[971,4,4,111,115],[972,3,3,115,118]]],[41,62,61,118,179,[[973,6,6,118,124],[974,3,3,124,127],[977,4,4,127,131],[978,3,3,131,134],[979,1,1,134,135],[980,2,2,135,137],[981,3,3,137,140],[982,3,3,140,143],[983,5,4,143,147],[984,4,4,147,151],[985,1,1,151,152],[986,2,2,152,154],[987,4,4,154,158],[989,3,3,158,161],[990,1,1,161,162],[993,1,1,162,163],[994,10,10,163,173],[995,2,2,173,175],[996,4,4,175,179]]],[42,58,55,179,234,[[998,1,1,179,180],[999,5,4,180,184],[1000,3,2,184,186],[1001,3,3,186,189],[1002,4,4,189,193],[1003,2,2,193,195],[1004,1,1,195,196],[1005,2,2,196,198],[1007,6,6,198,204],[1008,3,3,204,207],[1009,5,5,207,212],[1010,3,3,212,215],[1011,1,1,215,216],[1012,3,3,216,219],[1013,2,2,219,221],[1014,5,5,221,226],[1015,4,4,226,230],[1016,4,3,230,233],[1017,1,1,233,234]]],[43,60,58,234,292,[[1018,1,1,234,235],[1019,2,2,235,237],[1021,2,2,237,239],[1022,2,2,239,241],[1024,5,5,241,246],[1026,3,3,246,249],[1027,2,2,249,251],[1028,1,1,251,252],[1029,1,1,252,253],[1030,4,4,253,257],[1031,2,2,257,259],[1032,5,5,259,264],[1034,1,1,264,265],[1035,2,2,265,267],[1036,1,1,267,268],[1037,7,7,268,275],[1038,1,1,275,276],[1041,7,5,276,281],[1042,3,3,281,284],[1043,1,1,284,285],[1044,3,3,285,288],[1045,4,4,288,292]]],[44,7,6,292,298,[[1057,3,2,292,294],[1060,2,2,294,296],[1061,2,2,296,298]]],[45,9,9,298,307,[[1067,2,2,298,300],[1068,2,2,300,302],[1072,1,1,302,303],[1077,4,4,303,307]]],[46,7,7,307,314,[[1083,2,2,307,309],[1084,1,1,309,310],[1085,2,2,310,312],[1090,2,2,312,314]]],[47,7,7,314,321,[[1091,1,1,314,315],[1092,2,2,315,317],[1093,1,1,317,318],[1094,2,2,318,320],[1096,1,1,320,321]]],[48,7,6,321,327,[[1100,3,2,321,323],[1102,4,4,323,327]]],[49,7,7,327,334,[[1103,1,1,327,328],[1104,2,2,328,330],[1106,4,4,330,334]]],[50,2,2,334,336,[[1107,1,1,334,335],[1110,1,1,335,336]]],[51,3,3,336,339,[[1111,1,1,336,337],[1113,1,1,337,338],[1115,1,1,338,339]]],[52,5,4,339,343,[[1116,2,1,339,340],[1118,3,3,340,343]]],[53,9,9,343,352,[[1119,1,1,343,344],[1120,2,2,344,346],[1121,1,1,346,347],[1122,3,3,347,350],[1124,2,2,350,352]]],[54,6,4,352,356,[[1126,2,2,352,354],[1128,4,2,354,356]]],[55,4,3,356,359,[[1130,1,1,356,357],[1131,3,2,357,359]]],[56,1,1,359,360,[[1132,1,1,359,360]]],[57,22,22,360,382,[[1136,3,3,360,363],[1137,1,1,363,364],[1139,2,2,364,366],[1140,1,1,366,367],[1141,3,3,367,370],[1142,4,4,370,374],[1143,2,2,374,376],[1144,3,3,376,379],[1145,3,3,379,382]]],[59,2,2,382,384,[[1151,1,1,382,383],[1153,1,1,383,384]]],[60,1,1,384,385,[[1156,1,1,384,385]]],[61,7,5,385,390,[[1159,5,3,385,388],[1160,1,1,388,389],[1162,1,1,389,390]]],[62,2,2,390,392,[[1164,2,2,390,392]]],[65,50,42,392,434,[[1167,3,3,392,395],[1168,2,2,395,397],[1169,5,3,397,400],[1170,3,1,400,401],[1172,1,1,401,402],[1173,2,2,402,404],[1175,1,1,404,405],[1176,1,1,405,406],[1177,2,2,406,408],[1178,2,2,408,410],[1179,2,2,410,412],[1180,3,3,412,415],[1181,1,1,415,416],[1183,5,4,416,420],[1184,3,3,420,423],[1185,4,3,423,426],[1186,3,3,426,429],[1187,5,3,429,432],[1188,2,2,432,434]]]],[23156,23167,23172,23180,23230,23259,23275,23356,23390,23394,23492,23493,23519,23530,23531,23534,23559,23604,23663,23699,23701,23703,23717,23743,23750,23772,23794,23812,23828,23888,23986,23987,23988,24006,24008,24011,24012,24018,24027,24039,24056,24065,24072,24074,24077,24083,24090,24092,24094,24101,24105,24109,24112,24123,24125,24126,24127,24163,24170,24182,24183,24191,24192,24195,24203,24207,24215,24228,24229,24235,24244,24251,24276,24279,24285,24293,24294,24295,24302,24339,24359,24382,24388,24404,24432,24457,24510,24514,24531,24538,24540,24546,24562,24618,24651,24741,24743,24755,24761,24768,24771,24772,24774,24782,24787,24797,24802,24808,24816,24821,24824,24827,24833,24854,24857,24883,24885,24892,24917,24921,24932,24951,24959,24965,25009,25019,25024,25134,25136,25137,25141,25149,25150,25163,25231,25258,25290,25329,25340,25350,25364,25380,25400,25412,25428,25436,25437,25463,25472,25505,25517,25519,25562,25584,25601,25617,25618,25619,25659,25666,25671,25692,25853,25875,25879,25885,25892,25897,25901,25916,25917,25922,25923,25947,25978,25996,26020,26021,26043,26107,26122,26142,26145,26146,26183,26199,26211,26214,26224,26258,26260,26300,26323,26329,26361,26410,26477,26480,26530,26534,26539,26554,26577,26579,26588,26597,26615,26637,26638,26648,26657,26663,26677,26684,26698,26726,26730,26745,26758,26771,26783,26787,26788,26790,26803,26811,26843,26853,26863,26865,26874,26891,26893,26899,26949,26977,26978,27051,27053,27085,27096,27121,27123,27125,27154,27161,27235,27244,27255,27296,27297,27328,27341,27377,27379,27382,27387,27437,27441,27446,27458,27475,27477,27478,27534,27558,27567,27589,27632,27644,27645,27650,27655,27657,27660,27679,27770,27772,27776,27787,27793,27797,27808,27819,27835,27865,27869,27879,27910,27912,27916,27930,28260,28263,28313,28336,28356,28360,28473,28474,28499,28500,28625,28787,28788,28799,28800,28913,28914,28931,28936,28950,29054,29057,29075,29082,29093,29119,29156,29161,29206,29274,29297,29342,29344,29360,29361,29365,29403,29420,29445,29448,29451,29465,29476,29560,29566,29603,29649,29656,29690,29694,29696,29710,29725,29731,29735,29750,29751,29761,29794,29809,29837,29849,29881,29892,29923,29933,29938,29963,30021,30022,30030,30037,30085,30092,30102,30108,30124,30132,30148,30149,30155,30167,30181,30203,30226,30229,30240,30258,30264,30266,30385,30439,30494,30543,30546,30547,30569,30620,30647,30648,30704,30709,30716,30733,30739,30750,30766,30767,30769,30801,30811,30819,30852,30869,30879,30883,30900,30908,30912,30915,30927,30930,30939,30951,30976,30977,30987,30989,30994,30996,31002,31018,31036,31037,31041,31042,31044,31056,31062,31068,31092,31101]]],["+",[20,20,[[39,2,2,0,2,[[955,2,2,0,2]]],[41,4,4,2,6,[[981,1,1,2,3],[989,1,1,3,4],[990,1,1,4,5],[995,1,1,5,6]]],[42,2,2,6,8,[[1001,1,1,6,7],[1009,1,1,7,8]]],[43,2,2,8,10,[[1019,1,1,8,9],[1022,1,1,9,10]]],[45,1,1,10,11,[[1067,1,1,10,11]]],[57,3,3,11,14,[[1136,2,2,11,13],[1142,1,1,13,14]]],[59,1,1,14,15,[[1151,1,1,14,15]]],[61,1,1,15,16,[[1159,1,1,15,16]]],[65,4,4,16,20,[[1167,1,1,16,17],[1170,1,1,17,18],[1175,1,1,18,19],[1180,1,1,19,20]]]],[24191,24195,25340,25659,25692,25947,26224,26637,26978,27085,28474,30022,30030,30167,30385,30547,30716,30769,30852,30939]]],["After",[18,18,[[39,2,2,0,2,[[953,1,1,0,1],[955,1,1,1,2]]],[40,2,2,2,4,[[970,1,1,2,3],[972,1,1,3,4]]],[41,1,1,4,5,[[982,1,1,4,5]]],[42,7,7,5,12,[[998,1,1,5,6],[999,1,1,6,7],[1001,1,1,7,8],[1002,1,1,8,9],[1003,1,1,9,10],[1015,1,1,10,11],[1017,1,1,11,12]]],[43,3,3,12,15,[[1022,1,1,12,13],[1032,1,1,13,14],[1035,1,1,14,15]]],[45,1,1,15,16,[[1072,1,1,15,16]]],[65,2,2,16,18,[[1170,1,1,16,17],[1173,1,1,17,18]]]],[24027,24192,24755,24885,25364,26107,26142,26211,26258,26329,26853,26899,27096,27458,27558,28625,30769,30819]]],["With",[3,3,[[48,2,2,0,2,[[1100,1,1,0,1],[1102,1,1,1,2]]],[65,1,1,2,3,[[1183,1,1,2,3]]]],[29274,29344,30977]]],["after",[62,62,[[39,6,6,0,6,[[929,1,1,0,1],[945,1,1,1,2],[952,1,1,2,3],[954,2,2,3,5],[955,1,1,5,6]]],[40,7,7,6,13,[[957,1,1,6,7],[964,1,1,7,8],[965,1,1,8,9],[969,1,1,9,10],[970,2,2,10,12],[972,1,1,12,13]]],[41,7,7,13,20,[[973,1,1,13,14],[974,1,1,14,15],[977,1,1,15,16],[981,1,1,16,17],[984,1,1,17,18],[987,1,1,18,19],[994,1,1,19,20]]],[42,7,7,20,27,[[1000,1,1,20,21],[1001,1,1,21,22],[1007,2,2,22,24],[1009,1,1,24,25],[1015,1,1,25,26],[1016,1,1,26,27]]],[43,19,19,27,46,[[1024,2,2,27,29],[1027,1,1,29,30],[1029,1,1,30,31],[1030,3,3,31,34],[1032,1,1,34,35],[1036,1,1,35,36],[1037,2,2,36,38],[1038,1,1,38,39],[1041,2,2,39,41],[1042,1,1,41,42],[1044,1,1,42,43],[1045,3,3,43,46]]],[47,2,2,46,48,[[1091,1,1,46,47],[1093,1,1,47,48]]],[55,1,1,48,49,[[1131,1,1,48,49]]],[57,6,6,49,55,[[1136,1,1,49,50],[1140,1,1,50,51],[1141,2,2,51,53],[1142,2,2,53,55]]],[60,1,1,55,56,[[1156,1,1,55,56]]],[65,6,6,56,62,[[1173,1,1,56,57],[1177,1,1,57,58],[1181,1,1,58,59],[1184,1,1,59,60],[1185,1,1,60,61],[1186,1,1,61,62]]]],[23156,23701,23986,24056,24127,24182,24229,24531,24540,24741,24782,24824,24892,24917,25019,25134,25329,25463,25601,25922,26199,26214,26530,26534,26657,26863,26893,27121,27123,27296,27341,27377,27382,27387,27478,27589,27632,27655,27679,27770,27793,27797,27869,27910,27912,27916,29075,29119,29933,30021,30102,30108,30132,30148,30149,30494,30811,30883,30951,30994,31018,31041]]],["against",[4,3,[[65,4,3,0,3,[[1168,1,1,0,1],[1177,1,1,1,2],[1185,2,1,2,3]]]],[30733,30879,31036]]],["among",[5,5,[[41,2,2,0,2,[[994,1,1,0,1],[996,1,1,1,2]]],[42,3,3,2,5,[[1002,1,1,2,3],[1007,1,1,3,4],[1012,1,1,4,5]]]],[25901,25996,26300,26579,26745]]],["and",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26145]]],["in",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]]],[24816,27475]]],["is",[1,1,[[61,1,1,0,1,[[1162,1,1,0,1]]]],[30620]]],["of",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23750]]],["on",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25400]]],["since",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30092]]],["to",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24965]]],["unto",[1,1,[[65,1,1,0,1,[[1176,1,1,0,1]]]],[30869]]],["upon",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24951]]],["with",[340,320,[[39,59,57,0,57,[[929,1,1,0,1],[930,2,2,1,3],[932,1,1,3,4],[933,2,2,4,6],[936,1,1,6,7],[937,2,2,7,9],[940,7,6,9,15],[941,1,1,15,16],[942,1,1,16,17],[943,1,1,17,18],[944,1,1,18,19],[945,2,2,19,21],[946,1,1,21,22],[947,1,1,22,23],[948,2,2,23,25],[949,1,1,25,26],[950,1,1,26,27],[952,4,4,27,31],[953,5,5,31,36],[954,16,15,36,51],[955,3,3,51,54],[956,3,3,54,57]]],[40,44,41,57,98,[[957,4,4,57,61],[958,5,3,61,64],[959,4,4,64,68],[960,2,2,68,70],[961,3,3,70,73],[962,2,2,73,75],[964,3,3,75,78],[965,2,2,78,80],[966,1,1,80,81],[967,1,1,81,82],[969,1,1,82,83],[970,11,10,83,93],[971,4,4,93,97],[972,1,1,97,98]]],[41,45,44,98,142,[[973,3,3,98,101],[974,2,2,101,103],[977,3,3,103,106],[978,3,3,106,109],[979,1,1,109,110],[980,2,2,110,112],[981,1,1,112,113],[982,1,1,113,114],[983,5,4,114,118],[984,3,3,118,121],[985,1,1,121,122],[986,2,2,122,124],[987,3,3,124,127],[989,2,2,127,129],[993,1,1,129,130],[994,8,8,130,138],[995,1,1,138,139],[996,3,3,139,142]]],[42,38,37,142,179,[[999,3,3,142,145],[1000,2,1,145,146],[1002,2,2,146,148],[1003,1,1,148,149],[1004,1,1,149,150],[1005,2,2,150,152],[1007,3,3,152,155],[1008,3,3,155,158],[1009,3,3,158,161],[1010,3,3,161,164],[1011,1,1,164,165],[1012,2,2,165,167],[1013,2,2,167,169],[1014,5,5,169,174],[1015,2,2,174,176],[1016,3,3,176,179]]],[43,35,34,179,213,[[1018,1,1,179,180],[1019,1,1,180,181],[1021,2,2,181,183],[1024,3,3,183,186],[1026,3,3,186,189],[1027,1,1,189,190],[1028,1,1,190,191],[1030,1,1,191,192],[1031,2,2,192,194],[1032,2,2,194,196],[1034,1,1,196,197],[1035,1,1,197,198],[1037,5,5,198,203],[1041,5,4,203,207],[1042,2,2,207,209],[1043,1,1,209,210],[1044,2,2,210,212],[1045,1,1,212,213]]],[44,7,6,213,219,[[1057,3,2,213,215],[1060,2,2,215,217],[1061,2,2,217,219]]],[45,7,7,219,226,[[1067,1,1,219,220],[1068,2,2,220,222],[1077,4,4,222,226]]],[46,7,7,226,233,[[1083,2,2,226,228],[1084,1,1,228,229],[1085,2,2,229,231],[1090,2,2,231,233]]],[47,5,5,233,238,[[1092,2,2,233,235],[1094,2,2,235,237],[1096,1,1,237,238]]],[48,5,5,238,243,[[1100,2,2,238,240],[1102,3,3,240,243]]],[49,7,7,243,250,[[1103,1,1,243,244],[1104,2,2,244,246],[1106,4,4,246,250]]],[50,2,2,250,252,[[1107,1,1,250,251],[1110,1,1,251,252]]],[51,3,3,252,255,[[1111,1,1,252,253],[1113,1,1,253,254],[1115,1,1,254,255]]],[52,5,4,255,259,[[1116,2,1,255,256],[1118,3,3,256,259]]],[53,9,9,259,268,[[1119,1,1,259,260],[1120,2,2,260,262],[1121,1,1,262,263],[1122,3,3,263,266],[1124,2,2,266,268]]],[54,6,4,268,272,[[1126,2,2,268,270],[1128,4,2,270,272]]],[55,3,2,272,274,[[1130,1,1,272,273],[1131,2,1,273,274]]],[56,1,1,274,275,[[1132,1,1,274,275]]],[57,12,12,275,287,[[1137,1,1,275,276],[1139,1,1,276,277],[1141,1,1,277,278],[1142,1,1,278,279],[1143,2,2,279,281],[1144,3,3,281,284],[1145,3,3,284,287]]],[59,1,1,287,288,[[1153,1,1,287,288]]],[61,5,3,288,291,[[1159,4,2,288,290],[1160,1,1,290,291]]],[62,2,2,291,293,[[1164,2,2,291,293]]],[65,32,27,293,320,[[1167,2,2,293,295],[1168,1,1,295,296],[1169,5,3,296,299],[1170,1,1,299,300],[1172,1,1,300,301],[1178,2,2,301,303],[1179,2,2,303,305],[1180,2,2,305,307],[1183,4,3,307,310],[1184,2,2,310,312],[1185,1,1,312,313],[1186,2,2,313,315],[1187,5,3,315,318],[1188,2,2,318,320]]]],[23167,23172,23180,23230,23259,23275,23356,23390,23394,23492,23493,23519,23530,23531,23534,23559,23604,23663,23699,23703,23717,23743,23772,23794,23812,23828,23888,23987,23988,24006,24008,24011,24012,24018,24027,24039,24065,24072,24074,24077,24083,24090,24092,24094,24101,24105,24109,24112,24123,24125,24126,24163,24170,24183,24203,24207,24215,24228,24235,24244,24251,24276,24279,24285,24293,24294,24295,24302,24339,24359,24382,24388,24404,24432,24457,24510,24514,24538,24546,24562,24618,24651,24743,24761,24768,24771,24772,24774,24787,24797,24802,24808,24821,24827,24833,24854,24857,24883,24921,24932,24959,25009,25024,25136,25137,25141,25149,25150,25163,25231,25258,25290,25350,25380,25412,25428,25436,25437,25472,25505,25517,25519,25562,25584,25617,25618,25619,25666,25671,25853,25875,25879,25885,25892,25897,25916,25917,25923,25978,26020,26021,26043,26122,26142,26146,26183,26260,26323,26361,26410,26477,26480,26539,26554,26577,26588,26597,26615,26638,26648,26663,26677,26684,26698,26726,26730,26758,26771,26783,26787,26788,26790,26803,26811,26843,26865,26874,26891,26893,26949,26977,27051,27053,27125,27154,27161,27235,27244,27255,27297,27328,27379,27437,27441,27446,27477,27534,27567,27644,27645,27650,27657,27660,27770,27772,27776,27787,27808,27819,27835,27865,27879,27930,28260,28263,28313,28336,28356,28360,28473,28499,28500,28787,28788,28799,28800,28913,28914,28931,28936,28950,29054,29057,29082,29093,29156,29161,29206,29274,29297,29342,29360,29361,29365,29403,29420,29445,29448,29451,29465,29476,29560,29566,29603,29649,29656,29690,29694,29696,29710,29725,29731,29735,29750,29751,29761,29794,29809,29837,29849,29881,29892,29923,29938,29963,30037,30085,30124,30155,30181,30203,30226,30229,30240,30258,30264,30266,30439,30543,30546,30569,30647,30648,30704,30709,30739,30750,30766,30767,30769,30801,30900,30908,30912,30915,30927,30930,30976,30987,30989,30996,31002,31037,31042,31044,31056,31062,31068,31092,31101]]]]},{"k":"G3327","v":[["*",[12,11,[[39,6,5,0,5,[[936,1,1,0,1],[939,1,1,1,2],[940,1,1,2,3],[943,1,1,3,4],[945,2,1,4,5]]],[41,1,1,5,6,[[982,1,1,5,6]]],[42,3,3,6,9,[[1001,1,1,6,7],[1003,1,1,7,8],[1009,1,1,8,9]]],[43,1,1,9,10,[[1035,1,1,9,10]]],[61,1,1,10,11,[[1161,1,1,10,11]]]],[23379,23460,23498,23662,23720,25370,26234,26331,26631,27564,30593]]],["Depart",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26331]]],["Go",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25370]]],["Remove",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23720]]],["depart",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[42,1,1,1,2,[[1009,1,1,1,2]]]],[23379,26631]]],["departed",[4,4,[[39,3,3,0,3,[[939,1,1,0,1],[940,1,1,1,2],[943,1,1,2,3]]],[43,1,1,3,4,[[1035,1,1,3,4]]]],[23460,23498,23662,27564]]],["passed",[2,2,[[42,1,1,0,1,[[1001,1,1,0,1]]],[61,1,1,1,2,[[1161,1,1,1,2]]]],[26234,30593]]],["remove",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23720]]]]},{"k":"G3328","v":[["minds",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27905]]]]},{"k":"G3329","v":[["about",[2,2,[[58,2,2,0,2,[[1148,2,2,0,2]]]],[30322,30323]]]]},{"k":"G3330","v":[["*",[5,5,[[41,1,1,0,1,[[975,1,1,0,1]]],[44,2,2,1,3,[[1046,1,1,1,2],[1057,1,1,2,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]],[51,1,1,4,5,[[1112,1,1,4,5]]]],[25036,27941,28253,29300,29578]]],["give",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29300]]],["giveth",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28253]]],["impart",[2,2,[[41,1,1,0,1,[[975,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[25036,27941]]],["imparted",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29578]]]]},{"k":"G3331","v":[["*",[3,3,[[57,3,3,0,3,[[1139,1,1,0,1],[1143,1,1,1,2],[1144,1,1,2,3]]]],[30076,30177,30239]]],["change",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30076]]],["removing",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30239]]],["translation",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30177]]]]},{"k":"G3332","v":[["departed",[2,2,[[39,2,2,0,2,[[941,1,1,0,1],[947,1,1,1,2]]]],[23592,23763]]]]},{"k":"G3333","v":[["*",[4,4,[[43,4,4,0,4,[[1024,1,1,0,1],[1027,1,1,1,2],[1037,1,1,2,3],[1041,1,1,3,4]]]],[27130,27291,27643,27794]]],["called",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1037,1,1,1,2]]]],[27130,27643]]],["for",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27794]]],["hither",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27291]]]]},{"k":"G3334","v":[["away",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29488]]]]},{"k":"G3335","v":[["*",[6,6,[[43,3,3,0,3,[[1019,1,1,0,1],[1041,1,1,1,2],[1044,1,1,2,3]]],[54,1,1,3,4,[[1126,1,1,3,4]]],[57,2,2,4,6,[[1138,1,1,4,5],[1144,1,1,5,6]]]],[26995,27794,27888,29833,30051,30222]]],["+",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29833]]],["eat",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26995]]],["have",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27794]]],["partakers",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30222]]],["receiveth",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30051]]],["take",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27888]]]]},{"k":"G3336","v":[["+",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29750]]]]},{"k":"G3337","v":[["*",[2,2,[[44,2,2,0,2,[[1046,2,2,0,2]]]],[27955,27956]]],["change",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27956]]],["changed",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27955]]]]},{"k":"G3338","v":[["*",[6,5,[[39,3,3,0,3,[[949,2,2,0,2],[955,1,1,2,3]]],[46,2,1,3,4,[[1084,2,1,3,4]]],[57,1,1,4,5,[[1139,1,1,4,5]]]],[23855,23858,24132,28924,30085]]],["repent",[3,2,[[46,2,1,0,1,[[1084,2,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[28924,30085]]],["repented",[3,3,[[39,3,3,0,3,[[949,2,2,0,2],[955,1,1,2,3]]]],[23855,23858,24132]]]]},{"k":"G3339","v":[["*",[4,4,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[46,1,1,3,4,[[1080,1,1,3,4]]]],[23702,24540,28247,28859]]],["changed",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28859]]],["transfigured",[2,2,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]]],[23702,24540]]],["transformed",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28247]]]]},{"k":"G3340","v":[["*",[34,32,[[39,5,5,0,5,[[931,1,1,0,1],[932,1,1,1,2],[939,2,2,2,4],[940,1,1,4,5]]],[40,2,2,5,7,[[957,1,1,5,6],[962,1,1,6,7]]],[41,9,9,7,16,[[982,1,1,7,8],[983,1,1,8,9],[985,2,2,9,11],[987,2,2,11,13],[988,1,1,13,14],[989,2,2,14,16]]],[43,5,5,16,21,[[1019,1,1,16,17],[1020,1,1,17,18],[1025,1,1,18,19],[1034,1,1,19,20],[1043,1,1,20,21]]],[46,1,1,21,22,[[1089,1,1,21,22]]],[65,12,10,22,32,[[1168,6,4,22,26],[1169,2,2,26,28],[1175,2,2,28,30],[1182,2,2,30,32]]]],[23194,23226,23479,23480,23530,24230,24419,25376,25437,25521,25523,25595,25598,25650,25654,25655,26987,27015,27198,27553,27843,29043,30722,30733,30738,30739,30749,30765,30860,30861,30963,30965]]],["+",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30860]]],["Repent",[6,6,[[39,2,2,0,2,[[931,1,1,0,1],[932,1,1,1,2]]],[43,3,3,2,5,[[1019,1,1,2,3],[1020,1,1,3,4],[1025,1,1,4,5]]],[65,1,1,5,6,[[1168,1,1,5,6]]]],[23194,23226,26987,27015,27198,30733]]],["repent",[15,14,[[40,2,2,0,2,[[957,1,1,0,1],[962,1,1,1,2]]],[41,5,5,2,7,[[985,2,2,2,4],[988,1,1,4,5],[989,2,2,5,7]]],[43,2,2,7,9,[[1034,1,1,7,8],[1043,1,1,8,9]]],[65,6,5,9,14,[[1168,4,3,9,12],[1169,2,2,12,14]]]],[24230,24419,25521,25523,25650,25654,25655,27553,27843,30722,30738,30739,30749,30765]]],["repented",[10,10,[[39,3,3,0,3,[[939,2,2,0,2],[940,1,1,2,3]]],[41,2,2,3,5,[[982,1,1,3,4],[983,1,1,4,5]]],[46,1,1,5,6,[[1089,1,1,5,6]]],[65,4,4,6,10,[[1168,1,1,6,7],[1175,1,1,7,8],[1182,2,2,8,10]]]],[23479,23480,23530,25376,25437,29043,30738,30861,30963,30965]]],["repenteth",[2,2,[[41,2,2,0,2,[[987,2,2,0,2]]]],[25595,25598]]]]},{"k":"G3341","v":[["repentance",[24,24,[[39,3,3,0,3,[[931,2,2,0,2],[937,1,1,2,3]]],[40,2,2,3,5,[[957,1,1,3,4],[958,1,1,4,5]]],[41,5,5,5,10,[[975,2,2,5,7],[977,1,1,7,8],[987,1,1,8,9],[996,1,1,9,10]]],[43,6,6,10,16,[[1022,1,1,10,11],[1028,1,1,11,12],[1030,1,1,12,13],[1036,1,1,13,14],[1037,1,1,14,15],[1043,1,1,15,16]]],[44,1,1,16,17,[[1047,1,1,16,17]]],[46,2,2,17,19,[[1084,2,2,17,19]]],[54,1,1,19,20,[[1126,1,1,19,20]]],[57,3,3,20,23,[[1138,2,2,20,22],[1144,1,1,22,23]]],[60,1,1,23,24,[[1158,1,1,23,24]]]],[23200,23203,23392,24219,24277,25028,25033,25139,25595,26038,27090,27325,27386,27589,27647,27843,27966,28925,28926,29852,30045,30050,30229,30531]]]]},{"k":"G3342","v":[["*",[9,9,[[39,2,2,0,2,[[946,1,1,0,1],[951,1,1,1,2]]],[41,2,2,2,4,[[983,1,1,2,3],[988,1,1,3,4]]],[42,1,1,4,5,[[1000,1,1,4,5]]],[43,3,3,5,8,[[1029,1,1,5,6],[1030,1,1,6,7],[1032,1,1,7,8]]],[44,1,1,8,9,[[1047,1,1,8,9]]]],[23742,23953,25456,25646,26187,27343,27404,27451,27977]]],["+",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27451]]],["between",[5,5,[[39,2,2,0,2,[[946,1,1,0,1],[951,1,1,1,2]]],[41,2,2,2,4,[[983,1,1,2,3],[988,1,1,3,4]]],[43,1,1,4,5,[[1029,1,1,4,5]]]],[23742,23953,25456,25646,27343]]],["next",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27404]]],["while",[2,2,[[42,1,1,0,1,[[1000,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]]],[26187,27977]]]]},{"k":"G3343","v":[["for",[8,7,[[43,8,7,0,7,[[1027,4,3,0,3],[1028,1,1,3,4],[1041,2,2,4,6],[1042,1,1,6,7]]]],[27264,27281,27288,27320,27793,27795,27799]]]]},{"k":"G3344","v":[["*",[3,3,[[43,1,1,0,1,[[1019,1,1,0,1]]],[47,1,1,1,2,[[1091,1,1,1,2]]],[58,1,1,2,3,[[1149,1,1,2,3]]]],[26969,29064,30346]]],["pervert",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29064]]],["turned",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[58,1,1,1,2,[[1149,1,1,1,2]]]],[26969,30346]]]]},{"k":"G3345","v":[["*",[5,5,[[45,1,1,0,1,[[1065,1,1,0,1]]],[46,3,3,1,4,[[1088,3,3,1,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]]],[28439,29002,29003,29004,29442]]],["change",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29442]]],["themselves",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29002]]],["transferred",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28439]]],["transformed",[2,2,[[46,2,2,0,2,[[1088,2,2,0,2]]]],[29003,29004]]]]},{"k":"G3346","v":[["*",[6,5,[[43,1,1,0,1,[[1024,1,1,0,1]]],[47,1,1,1,2,[[1091,1,1,1,2]]],[57,3,2,2,4,[[1139,1,1,2,3],[1143,2,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[27132,29063,30076,30177,30676]]],["changed",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30076]]],["over",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27132]]],["removed",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29063]]],["translated",[2,1,[[57,2,1,0,1,[[1143,2,1,0,1]]]],[30177]]],["turning",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30676]]]]},{"k":"G3347","v":[["afterward",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30229]]]]},{"k":"G3348","v":[["*",[8,8,[[45,5,5,0,5,[[1070,2,2,0,2],[1071,3,3,2,5]]],[57,3,3,5,8,[[1134,1,1,5,6],[1137,1,1,6,7],[1139,1,1,7,8]]]],[28550,28552,28584,28588,28597,29991,30043,30077]]],["+",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28584]]],["part",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29991]]],["partaker",[2,2,[[45,2,2,0,2,[[1070,1,1,0,1],[1071,1,1,1,2]]]],[28550,28597]]],["partakers",[2,2,[[45,2,2,0,2,[[1070,1,1,0,1],[1071,1,1,1,2]]]],[28552,28588]]],["pertaineth",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30077]]],["useth",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30043]]]]},{"k":"G3349","v":[["mind",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25488]]]]},{"k":"G3350","v":[["*",[4,3,[[39,4,3,0,3,[[929,4,3,0,3]]]],[23155,23156,23161]]],["away",[3,2,[[39,3,2,0,2,[[929,3,2,0,2]]]],[23155,23161]]],["brought",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23156]]]]},{"k":"G3351","v":[["*",[2,2,[[43,2,2,0,2,[[1024,2,2,0,2]]]],[27120,27159]]],["+",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27159]]],["removed",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27120]]]]},{"k":"G3352","v":[["fellowship",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28912]]]]},{"k":"G3353","v":[["*",[6,6,[[41,1,1,0,1,[[977,1,1,0,1]]],[57,5,5,1,6,[[1133,1,1,1,2],[1135,2,2,2,4],[1138,1,1,4,5],[1144,1,1,5,6]]]],[25114,29972,29996,30009,30048,30220]]],["fellows",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29972]]],["partakers",[4,4,[[57,4,4,0,4,[[1135,2,2,0,2],[1138,1,1,2,3],[1144,1,1,3,4]]]],[29996,30009,30048,30220]]],["partners",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25114]]]]},{"k":"G3354","v":[["*",[10,9,[[39,1,1,0,1,[[935,1,1,0,1]]],[40,2,1,1,2,[[960,2,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[46,1,1,3,4,[[1087,1,1,3,4]]],[65,5,5,4,9,[[1177,2,2,4,6],[1187,3,3,6,9]]]],[23318,24347,25184,28983,30873,30874,31068,31069,31070]]],["measure",[3,3,[[65,3,3,0,3,[[1177,2,2,0,2],[1187,1,1,2,3]]]],[30873,30874,31068]]],["measured",[3,3,[[40,1,1,0,1,[[960,1,1,0,1]]],[65,2,2,1,3,[[1187,2,2,1,3]]]],[24347,31069,31070]]],["measuring",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28983]]],["mete",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]]],[23318,24347,25184]]]]},{"k":"G3355","v":[["firkins",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26101]]]]},{"k":"G3356","v":[["compassion",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30032]]]]},{"k":"G3357","v":[["little",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27638]]]]},{"k":"G3358","v":[["measure",[13,11,[[39,2,2,0,2,[[935,1,1,0,1],[951,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,2,1,3,4,[[978,2,1,3,4]]],[42,1,1,4,5,[[999,1,1,4,5]]],[44,1,1,5,6,[[1057,1,1,5,6]]],[46,2,1,6,7,[[1087,2,1,6,7]]],[48,3,3,7,10,[[1100,3,3,7,10]]],[65,1,1,10,11,[[1187,1,1,10,11]]]],[23318,23950,24347,25184,26154,28248,28984,29279,29285,29288,31070]]]]},{"k":"G3359","v":[["*",[8,8,[[65,8,8,0,8,[[1173,1,1,0,1],[1175,1,1,1,2],[1179,1,1,2,3],[1180,2,2,3,5],[1183,1,1,5,6],[1186,1,1,6,7],[1188,1,1,7,8]]]],[30813,30844,30924,30927,30935,30980,31042,31084]]],["forehead",[2,2,[[65,2,2,0,2,[[1180,1,1,0,1],[1183,1,1,1,2]]]],[30935,30980]]],["foreheads",[6,6,[[65,6,6,0,6,[[1173,1,1,0,1],[1175,1,1,1,2],[1179,1,1,2,3],[1180,1,1,3,4],[1186,1,1,4,5],[1188,1,1,5,6]]]],[30813,30844,30924,30927,31042,31084]]]]},{"k":"G3360","v":[["*",[17,17,[[39,3,3,0,3,[[939,1,1,0,1],[941,1,1,1,2],[956,1,1,2,3]]],[40,1,1,3,4,[[969,1,1,3,4]]],[43,2,2,4,6,[[1027,1,1,4,5],[1037,1,1,5,6]]],[44,2,2,6,8,[[1050,1,1,6,7],[1060,1,1,7,8]]],[48,1,1,8,9,[[1100,1,1,8,9]]],[49,2,2,9,11,[[1104,2,2,9,11]]],[53,1,1,11,12,[[1124,1,1,11,12]]],[54,1,1,12,13,[[1126,1,1,12,13]]],[57,4,4,13,17,[[1135,2,2,13,15],[1141,1,1,15,16],[1144,1,1,16,17]]]],[23482,23569,24210,24747,27289,27633,28061,28322,29285,29399,29421,29802,29836,30001,30009,30115,30216]]],["Till",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29285]]],["till",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24747]]],["to",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28061]]],["until",[7,7,[[39,3,3,0,3,[[939,1,1,0,1],[941,1,1,1,2],[956,1,1,2,3]]],[43,2,2,3,5,[[1027,1,1,3,4],[1037,1,1,4,5]]],[53,1,1,5,6,[[1124,1,1,5,6]]],[57,1,1,6,7,[[1141,1,1,6,7]]]],[23482,23569,24210,27289,27633,29802,30115]]],["unto",[7,7,[[44,1,1,0,1,[[1060,1,1,0,1]]],[49,2,2,1,3,[[1104,2,2,1,3]]],[54,1,1,3,4,[[1126,1,1,3,4]]],[57,3,3,4,7,[[1135,2,2,4,6],[1144,1,1,6,7]]]],[28322,29399,29421,29836,30001,30009,30216]]]]},{"k":"G3361","v":[["*",[750,673,[[39,83,78,0,78,[[929,2,2,0,2],[930,1,1,2,3],[931,2,2,3,5],[933,6,6,5,11],[934,13,13,11,24],[935,6,5,24,29],[936,1,1,29,30],[937,2,2,30,32],[938,11,9,32,41],[939,1,1,41,42],[940,3,2,42,44],[941,3,3,44,47],[942,1,1,47,48],[944,1,1,48,49],[945,1,1,49,50],[946,4,4,50,54],[947,2,2,54,56],[949,1,1,56,57],[950,5,5,57,62],[951,4,4,62,66],[952,8,7,66,73],[953,1,1,73,74],[954,2,2,74,76],[956,2,2,76,78]]],[40,44,37,78,115,[[958,2,2,78,80],[959,2,2,80,82],[960,4,3,82,85],[961,3,3,85,88],[962,7,5,88,93],[964,1,1,93,94],[965,1,1,94,95],[966,9,5,95,100],[967,1,1,100,101],[968,4,4,101,105],[969,8,8,105,113],[970,1,1,113,114],[972,1,1,114,115]]],[41,105,92,115,207,[[973,3,3,115,118],[974,3,3,118,121],[975,3,3,121,124],[976,1,1,124,125],[977,3,3,125,128],[978,5,4,128,132],[979,5,5,132,137],[980,9,8,137,145],[981,4,4,145,149],[982,5,4,149,153],[983,11,9,153,162],[984,12,10,162,172],[985,4,4,172,176],[986,3,3,176,179],[988,1,1,179,180],[989,5,4,180,184],[990,9,5,184,189],[991,2,2,189,191],[992,3,3,191,194],[993,5,4,194,198],[994,6,6,198,204],[995,1,1,204,205],[996,2,2,205,207]]],[42,66,65,207,272,[[998,1,1,207,208],[999,6,5,208,213],[1000,2,2,213,215],[1001,3,3,215,218],[1002,8,8,218,226],[1003,9,9,226,235],[1004,2,2,235,237],[1005,3,3,237,240],[1006,4,4,240,244],[1007,2,2,244,246],[1008,5,5,246,251],[1009,1,1,251,252],[1010,3,3,252,255],[1011,3,3,255,258],[1012,2,2,258,260],[1014,5,5,260,265],[1015,4,4,265,269],[1016,3,3,269,272]]],[43,55,53,272,325,[[1018,2,2,272,274],[1019,1,1,274,275],[1020,1,1,275,276],[1021,3,3,276,279],[1022,3,3,279,282],[1024,4,4,282,286],[1026,3,3,286,289],[1027,2,2,289,291],[1028,1,1,291,292],[1029,1,1,292,293],[1030,2,2,293,295],[1031,1,1,295,296],[1032,3,2,296,298],[1034,1,1,298,299],[1035,2,1,299,300],[1036,1,1,300,301],[1037,5,5,301,306],[1038,5,5,306,311],[1040,4,4,311,315],[1041,1,1,315,316],[1042,2,2,316,318],[1043,1,1,318,319],[1044,6,6,319,325]]],[44,66,53,325,378,[[1046,1,1,325,326],[1047,4,3,326,329],[1048,5,5,329,334],[1049,3,3,334,337],[1050,2,2,337,339],[1051,3,3,339,342],[1052,3,3,342,345],[1053,2,2,345,347],[1054,4,3,347,350],[1055,3,2,350,352],[1056,9,6,352,358],[1057,8,7,358,365],[1058,5,3,365,368],[1059,13,9,368,377],[1060,1,1,377,378]]],[45,73,61,378,439,[[1062,5,5,378,383],[1063,1,1,383,384],[1065,5,4,384,388],[1066,3,3,388,391],[1067,2,2,391,393],[1068,20,15,393,408],[1069,1,1,408,409],[1070,6,6,409,415],[1071,5,5,415,420],[1072,5,4,420,424],[1073,8,3,424,427],[1074,3,3,427,430],[1075,5,5,430,435],[1076,2,2,435,437],[1077,2,2,437,439]]],[46,33,30,439,469,[[1078,1,1,439,440],[1079,3,3,440,443],[1080,3,3,443,446],[1081,6,4,446,450],[1082,2,2,450,452],[1083,5,5,452,457],[1085,1,1,457,458],[1086,3,3,458,461],[1087,3,3,461,464],[1088,1,1,464,465],[1089,4,3,465,468],[1090,1,1,468,469]]],[47,16,15,469,484,[[1092,1,1,469,470],[1093,2,2,470,472],[1094,2,2,472,474],[1095,6,6,474,480],[1096,5,4,480,484]]],[48,14,13,484,497,[[1098,1,1,484,485],[1099,1,1,485,486],[1100,4,3,486,489],[1101,6,6,489,495],[1102,2,2,495,497]]],[49,4,4,497,501,[[1103,1,1,497,498],[1104,2,2,498,500],[1105,1,1,500,501]]],[50,10,10,501,511,[[1107,1,1,501,502],[1108,4,4,502,506],[1109,5,5,506,511]]],[51,12,10,511,521,[[1111,1,1,511,512],[1112,2,2,512,514],[1114,5,3,514,517],[1115,4,4,517,521]]],[52,10,9,521,530,[[1116,2,1,521,522],[1117,3,3,522,525],[1118,5,5,525,530]]],[53,21,17,530,547,[[1119,2,2,530,532],[1120,1,1,532,533],[1121,8,4,533,537],[1122,1,1,537,538],[1123,5,5,538,543],[1124,4,4,543,547]]],[54,3,3,547,550,[[1125,1,1,547,548],[1126,1,1,548,549],[1128,1,1,549,550]]],[55,14,9,550,559,[[1129,8,4,550,554],[1130,5,4,554,558],[1131,1,1,558,559]]],[56,2,2,559,561,[[1132,2,2,559,561]]],[57,29,28,561,589,[[1135,3,3,561,564],[1136,3,3,564,567],[1138,2,2,567,569],[1139,1,1,569,570],[1141,1,1,570,571],[1142,2,2,571,573],[1143,6,6,573,579],[1144,7,6,579,585],[1145,4,4,585,589]]],[58,22,20,589,609,[[1146,5,5,589,594],[1147,8,6,594,600],[1148,3,3,600,603],[1149,3,3,603,606],[1150,3,3,606,609]]],[59,13,13,609,622,[[1151,2,2,609,611],[1152,1,1,611,612],[1153,5,5,612,617],[1154,4,4,617,621],[1155,1,1,621,622]]],[60,4,4,622,626,[[1156,1,1,622,623],[1157,1,1,623,624],[1158,2,2,624,626]]],[61,18,16,626,642,[[1160,4,4,626,630],[1161,6,5,630,635],[1162,4,4,635,639],[1163,4,3,639,642]]],[62,5,4,642,646,[[1164,5,4,642,646]]],[63,2,2,646,648,[[1165,2,2,646,648]]],[64,3,3,648,651,[[1166,3,3,648,651]]],[65,23,22,651,673,[[1167,1,1,651,652],[1169,2,2,652,654],[1171,1,1,654,655],[1172,1,1,655,656],[1173,3,3,656,659],[1174,1,1,659,660],[1175,3,3,660,663],[1176,1,1,663,664],[1177,2,2,664,666],[1179,2,2,666,668],[1184,2,1,668,669],[1185,1,1,669,670],[1186,1,1,670,671],[1188,2,2,671,673]]]],[23163,23164,23181,23201,23202,23251,23263,23264,23268,23273,23276,23283,23284,23285,23289,23290,23295,23297,23298,23300,23301,23307,23313,23316,23317,23322,23325,23335,23342,23373,23394,23415,23422,23426,23427,23431,23436,23443,23445,23448,23451,23465,23505,23519,23544,23545,23558,23624,23700,23707,23737,23740,23743,23752,23768,23776,23847,23884,23895,23896,23897,23901,23921,23926,23927,23941,23961,23963,23974,23975,23977,23980,23983,24037,24059,24095,24200,24205,24264,24279,24300,24308,24328,24329,24335,24371,24374,24400,24415,24416,24418,24441,24457,24501,24577,24597,24602,24603,24607,24618,24663,24688,24691,24692,24697,24722,24724,24728,24732,24733,24735,24738,24753,24756,24879,24906,24913,24923,24983,24999,25018,25033,25034,25036,25105,25117,25126,25141,25175,25176,25183,25195,25201,25208,25218,25225,25237,25251,25255,25263,25273,25276,25294,25295,25297,25306,25334,25346,25351,25367,25370,25373,25383,25409,25412,25416,25417,25428,25429,25440,25441,25447,25463,25466,25470,25480,25481,25488,25491,25492,25506,25507,25521,25523,25529,25532,25561,25565,25582,25646,25652,25660,25674,25682,25689,25690,25704,25705,25708,25757,25758,25786,25795,25806,25834,25835,25840,25847,25896,25898,25899,25900,25904,25906,25963,26007,26014,26111,26124,26127,26135,26136,26138,26168,26171,26233,26238,26255,26269,26277,26284,26296,26300,26307,26321,26324,26343,26351,26352,26363,26369,26375,26377,26379,26380,26405,26434,26467,26479,26480,26482,26502,26518,26519,26560,26573,26595,26620,26626,26627,26628,26639,26669,26692,26695,26701,26721,26723,26727,26733,26802,26810,26815,26821,26825,26836,26846,26849,26856,26884,26894,26896,26927,26943,26974,27019,27039,27040,27042,27066,27087,27099,27135,27144,27158,27176,27225,27242,27254,27274,27306,27316,27356,27373,27402,27432,27461,27480,27529,27566,27616,27636,27642,27648,27653,27655,27668,27676,27678,27685,27698,27742,27743,27744,27755,27773,27820,27823,27855,27862,27870,27872,27876,27879,27897,27958,27976,27983,27984,27994,27995,27997,27999,28022,28027,28039,28041,28060,28061,28070,28080,28083,28094,28098,28104,28117,28120,28169,28175,28185,28194,28208,28210,28217,28219,28220,28227,28229,28247,28248,28256,28259,28261,28264,28266,28269,28279,28280,28281,28283,28286,28293,28295,28296,28300,28301,28302,28304,28370,28373,28376,28391,28392,28399,28438,28439,28440,28451,28462,28463,28465,28476,28482,28488,28492,28497,28498,28499,28500,28505,28508,28510,28514,28516,28517,28518,28524,28525,28535,28546,28548,28549,28556,28558,28561,28573,28579,28589,28595,28600,28622,28629,28632,28634,28659,28663,28664,28666,28667,28668,28685,28689,28698,28706,28717,28751,28752,28778,28787,28809,28825,28829,28837,28848,28854,28855,28861,28863,28866,28877,28896,28898,28899,28901,28907,28912,28915,28952,28960,28961,28963,28973,28980,28985,29005,29028,29039,29043,29050,29098,29103,29123,29139,29149,29163,29169,29175,29177,29179,29188,29189,29195,29197,29202,29241,29264,29298,29301,29302,29311,29315,29319,29321,29322,29331,29341,29343,29389,29395,29403,29430,29488,29502,29510,29512,29515,29519,29526,29536,29538,29539,29568,29579,29585,29608,29609,29616,29627,29636,29640,29641,29657,29663,29664,29673,29684,29686,29691,29692,29693,29699,29716,29725,29734,29737,29739,29742,29761,29764,29772,29776,29779,29782,29789,29790,29791,29805,29817,29841,29886,29898,29899,29903,29906,29911,29913,29917,29918,29937,29952,29957,30003,30010,30013,30016,30021,30029,30045,30056,30070,30114,30158,30168,30175,30177,30180,30185,30199,30212,30217,30227,30228,30231,30237,30239,30243,30250,30257,30258,30271,30273,30282,30288,30292,30294,30304,30306,30307,30309,30310,30320,30331,30333,30339,30348,30354,30363,30366,30371,30382,30388,30415,30430,30431,30433,30434,30438,30450,30458,30461,30462,30467,30488,30521,30530,30531,30551,30554,30565,30578,30589,30592,30593,30597,30600,30604,30606,30611,30623,30634,30636,30640,30652,30653,30654,30655,30668,30669,30677,30678,30691,30714,30749,30764,30784,30799,30811,30813,30826,30839,30844,30845,30860,30865,30874,30878,30923,30925,30997,31027,31041,31089,31090]]],["+",[138,132,[[39,16,16,0,16,[[931,1,1,0,1],[933,1,1,1,2],[934,5,5,2,7],[935,1,1,7,8],[937,1,1,8,9],[938,2,2,9,11],[942,1,1,11,12],[945,1,1,12,13],[946,1,1,13,14],[952,1,1,14,15],[956,1,1,15,16]]],[40,6,6,16,22,[[958,1,1,16,17],[961,1,1,17,18],[962,1,1,18,19],[964,1,1,19,20],[966,1,1,20,21],[969,1,1,21,22]]],[41,23,23,22,45,[[975,1,1,22,23],[978,1,1,23,24],[980,1,1,24,25],[983,3,3,25,28],[984,6,6,28,34],[985,3,3,34,37],[986,2,2,37,39],[988,1,1,39,40],[989,2,2,40,42],[990,1,1,42,43],[992,1,1,43,44],[994,1,1,44,45]]],[42,13,13,45,58,[[1000,1,1,45,46],[1002,3,3,46,49],[1003,3,3,49,52],[1004,1,1,52,53],[1005,2,2,53,55],[1012,1,1,55,56],[1015,1,1,56,57],[1016,1,1,57,58]]],[43,10,8,58,66,[[1024,1,1,58,59],[1027,1,1,59,60],[1028,1,1,60,61],[1032,2,1,61,62],[1035,2,1,62,63],[1037,1,1,63,64],[1041,1,1,64,65],[1044,1,1,65,66]]],[44,21,19,66,85,[[1046,1,1,66,67],[1048,4,4,67,71],[1049,1,1,71,72],[1050,1,1,72,73],[1051,2,2,73,75],[1052,2,2,75,77],[1054,1,1,77,78],[1055,1,1,78,79],[1056,4,4,79,83],[1059,4,2,83,85]]],[45,11,11,85,96,[[1062,2,2,85,87],[1065,1,1,87,88],[1067,1,1,88,89],[1068,1,1,89,90],[1070,3,3,90,93],[1071,1,1,93,94],[1072,2,2,94,96]]],[46,5,3,96,99,[[1080,1,1,96,97],[1081,3,1,97,98],[1090,1,1,98,99]]],[47,3,3,99,102,[[1092,1,1,99,100],[1093,1,1,100,101],[1096,1,1,101,102]]],[48,4,4,102,106,[[1100,1,1,102,103],[1101,2,2,103,105],[1102,1,1,105,106]]],[49,1,1,106,107,[[1103,1,1,106,107]]],[50,1,1,107,108,[[1109,1,1,107,108]]],[51,1,1,108,109,[[1115,1,1,108,109]]],[52,2,2,109,111,[[1118,2,2,109,111]]],[53,2,2,111,113,[[1119,1,1,111,112],[1124,1,1,112,113]]],[54,1,1,113,114,[[1126,1,1,113,114]]],[57,5,5,114,119,[[1136,1,1,114,115],[1139,1,1,115,116],[1142,1,1,116,117],[1144,1,1,117,118],[1145,1,1,118,119]]],[58,2,2,119,121,[[1147,1,1,119,120],[1149,1,1,120,121]]],[59,5,5,121,126,[[1153,2,2,121,123],[1154,3,3,123,126]]],[60,2,2,126,128,[[1156,1,1,126,127],[1158,1,1,127,128]]],[62,1,1,128,129,[[1164,1,1,128,129]]],[65,3,3,129,132,[[1173,1,1,129,130],[1177,1,1,130,131],[1184,1,1,131,132]]]],[23202,23276,23289,23301,23307,23313,23316,23335,23394,23436,23445,23624,23707,23740,23983,24205,24279,24400,24457,24501,24618,24728,25034,25176,25251,25412,25441,25447,25463,25470,25480,25481,25488,25492,25521,25523,25529,25561,25582,25646,25660,25674,25690,25795,25899,26168,26269,26277,26324,26369,26379,26380,26434,26467,26480,26733,26836,26896,27144,27274,27316,27480,27566,27636,27773,27897,27958,27994,27995,27997,28022,28041,28061,28070,28083,28098,28104,28169,28208,28210,28220,28227,28229,28283,28286,28370,28392,28438,28482,28525,28546,28548,28556,28573,28622,28634,28855,28877,29050,29098,29123,29202,29301,29315,29322,29341,29389,29536,29636,29691,29692,29699,29805,29841,30029,30070,30168,30239,30243,30307,30348,30430,30438,30450,30458,30461,30488,30530,30655,30826,30878,30997]]],["-",[2,2,[[45,1,1,0,1,[[1073,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[28664,30331]]],["Are",[2,2,[[42,1,1,0,1,[[1003,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]]],[26375,28663]]],["Doth",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28549]]],["Hath",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28210]]],["Lest",[2,2,[[40,1,1,0,1,[[969,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[24753,30228]]],["Neither",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23975]]],["Nor",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23427]]],["Not",[12,12,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,1,1,2,3,[[1014,1,1,2,3]]],[44,1,1,3,4,[[1057,1,1,3,4]]],[48,1,1,4,5,[[1102,1,1,4,5]]],[51,1,1,5,6,[[1114,1,1,5,6]]],[53,2,2,6,8,[[1121,2,2,6,8]]],[55,2,2,8,10,[[1129,1,1,8,9],[1130,1,1,9,10]]],[57,1,1,10,11,[[1142,1,1,10,11]]],[59,1,1,11,12,[[1153,1,1,11,12]]]],[24059,24756,26825,28256,29343,29608,29734,29737,29906,29918,30158,30433]]],["Shall",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28175]]],["a",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[42,1,1,1,2,[[1006,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]]],[23325,26502,28685]]],["any",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25806]]],["are",[3,1,[[45,3,1,0,1,[[1073,3,1,0,1]]]],[28663]]],["but",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27042]]],["by",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29039]]],["cannot",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29179]]],["do",[2,1,[[45,2,1,0,1,[[1073,2,1,0,1]]]],[28664]]],["he",[4,4,[[41,2,2,0,2,[[983,2,2,0,2]]],[42,2,2,2,4,[[999,1,1,2,3],[1003,1,1,3,4]]]],[25416,25417,26124,26363]]],["lest",[12,11,[[40,1,1,0,1,[[969,1,1,0,1]]],[43,3,3,1,4,[[1030,1,1,1,2],[1040,1,1,2,3],[1044,1,1,3,4]]],[45,1,1,4,5,[[1071,1,1,4,5]]],[46,3,3,5,8,[[1081,1,1,5,6],[1089,2,2,6,8]]],[47,1,1,8,9,[[1096,1,1,8,9]]],[50,1,1,9,10,[[1108,1,1,9,10]]],[57,2,1,10,11,[[1144,2,1,10,11]]]],[24722,27402,27744,27872,28579,28863,29028,29043,29189,29502,30227]]],["let",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29298]]],["man",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28293]]],["neither",[3,3,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[44,1,1,2,3,[[1059,1,1,2,3]]]],[23426,25367,28301]]],["never",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26343]]],["no",[45,43,[[39,9,9,0,9,[[936,1,1,0,1],[937,1,1,1,2],[941,2,2,2,4],[950,3,3,4,7],[951,1,1,7,8],[952,1,1,8,9]]],[40,7,5,9,14,[[960,2,2,9,11],[962,3,1,11,12],[968,2,2,12,14]]],[41,2,2,14,16,[[984,1,1,14,15],[994,1,1,15,16]]],[43,3,3,16,19,[[1018,1,1,16,17],[1021,1,1,17,18],[1040,1,1,18,19]]],[44,2,2,19,21,[[1050,1,1,19,20],[1052,1,1,20,21]]],[45,7,7,21,28,[[1062,1,1,21,22],[1065,1,1,22,23],[1068,1,1,23,24],[1073,1,1,24,25],[1075,1,1,25,26],[1077,2,2,26,28]]],[46,3,3,28,31,[[1082,1,1,28,29],[1085,1,1,29,30],[1088,1,1,30,31]]],[47,1,1,31,32,[[1094,1,1,31,32]]],[48,1,1,32,33,[[1098,1,1,32,33]]],[50,1,1,33,34,[[1108,1,1,33,34]]],[51,2,2,34,36,[[1114,2,2,34,36]]],[52,1,1,36,37,[[1117,1,1,36,37]]],[53,1,1,37,38,[[1121,1,1,37,38]]],[55,1,1,38,39,[[1129,1,1,38,39]]],[58,1,1,39,40,[[1147,1,1,39,40]]],[59,1,1,40,41,[[1153,1,1,40,41]]],[65,2,2,41,43,[[1179,1,1,41,42],[1186,1,1,42,43]]]],[23373,23415,23544,23545,23895,23896,23897,23927,23961,24328,24329,24415,24691,24692,25463,25900,26943,27039,27742,28060,28094,28373,28439,28524,28659,28706,28778,28787,28898,28952,29005,29139,29241,29510,29609,29616,29664,29734,29899,30306,30434,30925,31041]]],["none",[3,3,[[41,2,2,0,2,[[975,1,1,0,1],[983,1,1,1,2]]],[45,1,1,2,3,[[1068,1,1,2,3]]]],[25036,25429,28516]]],["nor",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25367]]],["not",[493,454,[[39,53,50,0,50,[[929,2,2,0,2],[930,1,1,2,3],[931,1,1,3,4],[933,5,5,4,9],[934,8,8,9,17],[935,4,3,17,20],[938,7,6,20,26],[939,1,1,26,27],[940,3,2,27,29],[941,1,1,29,30],[944,1,1,30,31],[946,3,3,31,34],[947,2,2,34,36],[949,1,1,36,37],[950,2,2,37,39],[951,3,3,39,42],[952,5,5,42,47],[953,1,1,47,48],[954,1,1,48,49],[956,1,1,49,50]]],[40,28,23,50,73,[[958,1,1,50,51],[959,2,2,51,53],[960,2,1,53,54],[961,2,2,54,56],[962,3,3,56,59],[965,1,1,59,60],[966,8,4,60,64],[967,1,1,64,65],[968,2,2,65,67],[969,5,5,67,72],[972,1,1,72,73]]],[41,68,60,73,133,[[973,3,3,73,76],[974,3,3,76,79],[975,1,1,79,80],[976,1,1,80,81],[977,2,2,81,83],[978,4,3,83,86],[979,4,4,86,90],[980,8,7,90,97],[981,4,4,97,101],[982,3,3,101,104],[983,4,3,104,107],[984,5,5,107,112],[985,1,1,112,113],[986,1,1,113,114],[989,2,1,114,115],[990,8,5,115,120],[991,2,2,120,122],[992,1,1,122,123],[993,5,4,123,127],[994,3,3,127,130],[995,1,1,130,131],[996,2,2,131,133]]],[42,46,45,133,178,[[998,1,1,133,134],[999,5,4,134,138],[1000,1,1,138,139],[1001,3,3,139,142],[1002,4,4,142,146],[1003,3,3,146,149],[1004,1,1,149,150],[1005,1,1,150,151],[1006,3,3,151,154],[1007,2,2,154,156],[1008,5,5,156,161],[1009,1,1,161,162],[1010,3,3,162,165],[1011,3,3,165,168],[1012,1,1,168,169],[1014,4,4,169,173],[1015,3,3,173,176],[1016,2,2,176,178]]],[43,35,35,178,213,[[1018,1,1,178,179],[1019,1,1,179,180],[1020,1,1,180,181],[1021,1,1,181,182],[1022,3,3,182,185],[1024,2,2,185,187],[1026,2,2,187,189],[1027,1,1,189,190],[1029,1,1,190,191],[1030,1,1,191,192],[1031,1,1,192,193],[1032,1,1,193,194],[1034,1,1,194,195],[1036,1,1,195,196],[1037,3,3,196,199],[1038,5,5,199,204],[1040,2,2,204,206],[1042,2,2,206,208],[1043,1,1,208,209],[1044,4,4,209,213]]],[44,36,30,213,243,[[1047,4,3,213,216],[1048,1,1,216,217],[1049,2,2,217,219],[1051,1,1,219,220],[1053,2,2,220,222],[1054,1,1,222,223],[1055,2,2,223,225],[1056,3,2,225,227],[1057,7,6,227,233],[1058,5,3,233,236],[1059,7,6,236,242],[1060,1,1,242,243]]],[45,42,37,243,280,[[1062,1,1,243,244],[1063,1,1,244,245],[1065,3,3,245,248],[1066,3,3,248,251],[1067,1,1,251,252],[1068,17,12,252,264],[1069,1,1,264,265],[1070,2,2,265,267],[1071,2,2,267,269],[1072,3,3,269,272],[1074,3,3,272,275],[1075,3,3,275,278],[1076,2,2,278,280]]],[46,21,21,280,301,[[1078,1,1,280,281],[1079,3,3,281,284],[1080,2,2,284,286],[1081,2,2,286,288],[1082,1,1,288,289],[1083,5,5,289,294],[1086,3,3,294,297],[1087,3,3,297,300],[1089,1,1,300,301]]],[47,10,9,301,310,[[1093,1,1,301,302],[1094,1,1,302,303],[1095,5,5,303,308],[1096,3,2,308,310]]],[48,7,7,310,317,[[1099,1,1,310,311],[1100,2,2,311,313],[1101,4,4,313,317]]],[49,3,3,317,320,[[1104,2,2,317,319],[1105,1,1,319,320]]],[50,7,7,320,327,[[1107,1,1,320,321],[1108,2,2,321,323],[1109,4,4,323,327]]],[51,8,8,327,335,[[1111,1,1,327,328],[1112,2,2,328,330],[1114,2,2,330,332],[1115,3,3,332,335]]],[52,7,6,335,341,[[1116,2,1,335,336],[1117,2,2,336,338],[1118,3,3,338,341]]],[53,16,14,341,355,[[1119,1,1,341,342],[1120,1,1,342,343],[1121,5,3,343,346],[1122,1,1,346,347],[1123,5,5,347,352],[1124,3,3,352,355]]],[54,2,2,355,357,[[1125,1,1,355,356],[1128,1,1,356,357]]],[55,11,7,357,364,[[1129,6,3,357,360],[1130,4,3,360,363],[1131,1,1,363,364]]],[56,2,2,364,366,[[1132,2,2,364,366]]],[57,20,20,366,386,[[1135,3,3,366,369],[1136,2,2,369,371],[1138,2,2,371,373],[1141,1,1,373,374],[1143,6,6,374,380],[1144,3,3,380,383],[1145,3,3,383,386]]],[58,18,17,386,403,[[1146,5,5,386,391],[1147,6,5,391,396],[1148,2,2,396,398],[1149,2,2,398,400],[1150,3,3,400,403]]],[59,6,6,403,409,[[1151,2,2,403,405],[1152,1,1,405,406],[1153,1,1,406,407],[1154,1,1,407,408],[1155,1,1,408,409]]],[60,2,2,409,411,[[1157,1,1,409,410],[1158,1,1,410,411]]],[61,18,16,411,427,[[1160,4,4,411,415],[1161,6,5,415,420],[1162,4,4,420,424],[1163,4,3,424,427]]],[62,4,4,427,431,[[1164,4,4,427,431]]],[63,2,2,431,433,[[1165,2,2,431,433]]],[64,3,3,433,436,[[1166,3,3,433,436]]],[65,18,18,436,454,[[1167,1,1,436,437],[1169,2,2,437,439],[1171,1,1,439,440],[1172,1,1,440,441],[1173,2,2,441,443],[1174,1,1,443,444],[1175,3,3,444,447],[1176,1,1,447,448],[1177,1,1,448,449],[1179,1,1,449,450],[1184,1,1,450,451],[1185,1,1,451,452],[1188,2,2,452,454]]]],[23163,23164,23181,23201,23251,23263,23264,23268,23273,23283,23284,23285,23290,23295,23297,23298,23300,23317,23322,23342,23422,23431,23443,23445,23448,23451,23465,23505,23519,23558,23700,23737,23743,23752,23768,23776,23847,23884,23901,23921,23926,23941,23963,23974,23977,23980,23983,24037,24095,24200,24264,24300,24308,24335,24371,24374,24416,24418,24441,24577,24597,24602,24603,24607,24663,24688,24697,24724,24732,24733,24735,24738,24879,24906,24913,24923,24983,24999,25018,25033,25105,25117,25126,25175,25183,25195,25201,25208,25218,25225,25255,25263,25273,25276,25294,25295,25297,25306,25334,25346,25351,25370,25373,25383,25409,25428,25440,25466,25488,25491,25506,25507,25532,25565,25682,25689,25690,25704,25705,25708,25757,25758,25786,25834,25835,25840,25847,25896,25904,25906,25963,26007,26014,26111,26127,26135,26136,26138,26171,26233,26238,26255,26284,26300,26307,26321,26351,26352,26377,26405,26479,26482,26518,26519,26560,26573,26595,26620,26626,26627,26628,26639,26669,26692,26695,26701,26721,26723,26727,26802,26810,26815,26821,26846,26849,26856,26884,26894,26927,26974,27019,27040,27066,27087,27099,27135,27176,27242,27254,27306,27356,27373,27432,27461,27529,27616,27642,27648,27655,27668,27676,27678,27685,27698,27743,27755,27820,27823,27855,27862,27870,27876,27879,27976,27983,27984,27999,28027,28039,28080,28117,28120,28185,28194,28208,28217,28219,28247,28248,28259,28261,28264,28266,28269,28279,28280,28281,28283,28295,28296,28300,28302,28304,28391,28399,28439,28440,28451,28462,28463,28465,28476,28488,28492,28497,28498,28499,28500,28505,28508,28510,28514,28517,28518,28535,28558,28561,28595,28600,28622,28629,28632,28666,28667,28668,28689,28698,28717,28751,28752,28809,28825,28829,28837,28848,28854,28861,28866,28896,28899,28901,28907,28912,28915,28960,28961,28963,28973,28980,28985,29043,29103,29149,29163,29169,29175,29177,29188,29195,29197,29264,29298,29302,29311,29319,29321,29331,29395,29403,29430,29488,29512,29515,29519,29526,29538,29539,29568,29579,29585,29608,29616,29627,29640,29641,29657,29663,29673,29684,29686,29693,29716,29725,29734,29739,29742,29761,29764,29772,29776,29779,29782,29789,29790,29791,29817,29886,29898,29899,29903,29911,29913,29917,29937,29952,29957,30003,30010,30013,30016,30021,30045,30056,30114,30175,30177,30180,30185,30199,30212,30217,30231,30237,30250,30257,30258,30271,30273,30282,30288,30292,30294,30304,30307,30309,30310,30320,30333,30339,30354,30363,30366,30371,30382,30388,30415,30431,30462,30467,30521,30531,30551,30554,30565,30578,30589,30592,30593,30597,30600,30604,30606,30611,30623,30634,30636,30640,30652,30653,30654,30655,30668,30669,30677,30678,30691,30714,30749,30764,30784,30799,30811,30813,30839,30844,30845,30860,30865,30874,30923,30997,31027,31089,31090]]],["nothing",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25237]]],["should",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26296]]],["that",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25652]]],["there",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28169]]],["they",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28220]]],["thou",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25898]]],["to",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27653]]],["was",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28376]]],["we",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28589]]],["will",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25416]]],["without",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27225]]],["ye",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[25141,27158]]]]},{"k":"G3362","v":[["*",[40,38,[[39,7,6,0,6,[[933,1,1,0,1],[938,1,1,1,2],[940,1,1,2,3],[946,3,2,3,5],[954,1,1,5,6]]],[40,4,4,6,10,[[959,1,1,6,7],[960,1,1,7,8],[963,2,2,8,10]]],[42,16,15,10,25,[[999,4,4,10,14],[1000,1,1,14,15],[1001,1,1,15,16],[1002,3,3,16,19],[1003,1,1,19,20],[1008,1,1,20,21],[1009,1,1,21,22],[1011,3,2,22,24],[1016,1,1,24,25]]],[43,3,3,25,28,[[1025,1,1,25,26],[1032,1,1,26,27],[1044,1,1,27,28]]],[44,2,2,28,30,[[1055,1,1,28,29],[1056,1,1,29,30]]],[45,3,3,30,33,[[1075,2,2,30,32],[1076,1,1,32,33]]],[47,1,1,33,34,[[1092,1,1,33,34]]],[52,1,1,34,35,[[1117,1,1,34,35]]],[54,1,1,35,36,[[1126,1,1,35,36]]],[65,2,2,36,38,[[1168,2,2,36,38]]]],[23254,23430,23518,23730,23762,24096,24315,24345,24466,24467,26122,26123,26125,26147,26204,26229,26301,26310,26322,26379,26604,26638,26703,26705,26892,27207,27443,27886,28203,28232,28684,28687,28754,29097,29664,29832,30722,30739]]],["+",[4,4,[[39,1,1,0,1,[[938,1,1,0,1]]],[42,2,2,1,3,[[1003,1,1,1,2],[1011,1,1,2,3]]],[44,1,1,3,4,[[1056,1,1,3,4]]]],[23430,26379,26705,28232]]],["Except",[9,9,[[39,1,1,0,1,[[946,1,1,0,1]]],[42,6,6,1,7,[[999,2,2,1,3],[1000,1,1,3,4],[1002,1,1,4,5],[1008,1,1,5,6],[1016,1,1,6,7]]],[43,2,2,7,9,[[1032,1,1,7,8],[1044,1,1,8,9]]]],[23730,26123,26125,26204,26310,26604,26892,27443,27886]]],["If",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26638]]],["but",[2,2,[[42,1,1,0,1,[[1001,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]]],[26229,29097]]],["except",[21,20,[[39,3,3,0,3,[[933,1,1,0,1],[940,1,1,1,2],[954,1,1,2,3]]],[40,3,3,3,6,[[959,1,1,3,4],[963,2,2,4,6]]],[42,6,5,6,11,[[999,2,2,6,8],[1002,2,2,8,10],[1011,2,1,10,11]]],[43,1,1,11,12,[[1025,1,1,11,12]]],[44,1,1,12,13,[[1055,1,1,12,13]]],[45,3,3,13,16,[[1075,2,2,13,15],[1076,1,1,15,16]]],[52,1,1,16,17,[[1117,1,1,16,17]]],[54,1,1,17,18,[[1126,1,1,17,18]]],[65,2,2,18,20,[[1168,2,2,18,20]]]],[23254,23518,24096,24315,24466,24467,26122,26147,26301,26322,26703,27207,28203,28684,28687,28754,29664,29832,30722,30739]]],["if",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23762]]],["not",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]]],[23762,24345]]]]},{"k":"G3363","v":[["*",[42,41,[[39,2,2,0,2,[[945,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[959,1,1,2,3],[970,1,1,3,4]]],[41,4,4,4,8,[[980,1,1,4,5],[988,1,1,5,6],[990,1,1,6,7],[994,1,1,7,8]]],[42,5,5,8,13,[[999,1,1,8,9],[1001,1,1,9,10],[1008,2,2,10,12],[1014,1,1,12,13]]],[43,1,1,13,14,[[1022,1,1,13,14]]],[44,2,2,14,16,[[1056,1,1,14,15],[1060,1,1,15,16]]],[45,4,4,16,20,[[1062,2,2,16,18],[1069,1,1,18,19],[1070,1,1,19,20]]],[46,6,5,20,25,[[1079,2,2,20,22],[1086,1,1,22,23],[1089,2,1,23,24],[1090,1,1,24,25]]],[47,1,1,25,26,[[1096,1,1,25,26]]],[48,1,1,26,27,[[1098,1,1,26,27]]],[49,1,1,27,28,[[1104,1,1,27,28]]],[50,2,2,28,30,[[1108,1,1,28,29],[1109,1,1,29,30]]],[53,2,2,30,32,[[1121,2,2,30,32]]],[57,5,5,32,37,[[1135,1,1,32,33],[1136,1,1,33,34],[1143,1,1,34,35],[1144,2,2,35,37]]],[58,2,2,37,39,[[1150,2,2,37,39]]],[60,1,1,39,40,[[1158,1,1,39,40]]],[65,1,1,40,41,[[1182,1,1,40,41]]]],[23727,24059,24297,24792,25257,25648,25693,25910,26140,26224,26615,26622,26813,27085,28234,28323,28378,28380,28540,28552,28827,28835,28959,29029,29053,29200,29238,29418,29498,29538,29737,29738,30008,30025,30200,30215,30225,30363,30366,30539,30969]]],["Lest",[2,2,[[45,1,1,0,1,[[1062,1,1,0,1]]],[46,1,1,1,2,[[1079,1,1,1,2]]]],[28378,28835]]],["lest",[40,39,[[39,2,2,0,2,[[945,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[959,1,1,2,3],[970,1,1,3,4]]],[41,4,4,4,8,[[980,1,1,4,5],[988,1,1,5,6],[990,1,1,6,7],[994,1,1,7,8]]],[42,5,5,8,13,[[999,1,1,8,9],[1001,1,1,9,10],[1008,2,2,10,12],[1014,1,1,12,13]]],[43,1,1,13,14,[[1022,1,1,13,14]]],[44,2,2,14,16,[[1056,1,1,14,15],[1060,1,1,15,16]]],[45,3,3,16,19,[[1062,1,1,16,17],[1069,1,1,17,18],[1070,1,1,18,19]]],[46,5,4,19,23,[[1079,1,1,19,20],[1086,1,1,20,21],[1089,2,1,21,22],[1090,1,1,22,23]]],[47,1,1,23,24,[[1096,1,1,23,24]]],[48,1,1,24,25,[[1098,1,1,24,25]]],[49,1,1,25,26,[[1104,1,1,25,26]]],[50,2,2,26,28,[[1108,1,1,26,27],[1109,1,1,27,28]]],[53,2,2,28,30,[[1121,2,2,28,30]]],[57,5,5,30,35,[[1135,1,1,30,31],[1136,1,1,31,32],[1143,1,1,32,33],[1144,2,2,33,35]]],[58,2,2,35,37,[[1150,2,2,35,37]]],[60,1,1,37,38,[[1158,1,1,37,38]]],[65,1,1,38,39,[[1182,1,1,38,39]]]],[23727,24059,24297,24792,25257,25648,25693,25910,26140,26224,26615,26622,26813,27085,28234,28323,28380,28540,28552,28827,28959,29029,29053,29200,29238,29418,29498,29538,29737,29738,30008,30025,30200,30215,30225,30363,30366,30539,30969]]]]},{"k":"G3364","v":[["*",[93,84,[[39,18,16,0,16,[[933,3,3,0,3],[938,2,2,3,5],[941,2,1,5,6],[943,1,1,6,7],[944,1,1,7,8],[946,1,1,8,9],[951,1,1,9,10],[952,5,4,10,14],[954,2,2,14,16]]],[40,11,10,16,26,[[965,2,2,16,18],[966,1,1,18,19],[969,5,4,19,23],[970,2,2,23,25],[972,1,1,25,26]]],[41,18,17,26,43,[[973,1,1,26,27],[978,2,1,27,28],[981,1,1,28,29],[982,1,1,29,30],[984,1,1,30,31],[985,1,1,31,32],[990,3,3,32,35],[993,3,3,35,38],[994,5,5,38,43]]],[42,16,15,43,58,[[1000,2,2,43,45],[1002,3,2,45,47],[1004,3,3,47,50],[1006,2,2,50,52],[1007,2,2,52,54],[1009,2,2,54,56],[1014,1,1,56,57],[1016,1,1,57,58]]],[43,3,2,58,60,[[1030,1,1,58,59],[1045,2,1,59,60]]],[44,1,1,60,61,[[1049,1,1,60,61]]],[45,1,1,61,62,[[1069,1,1,61,62]]],[47,2,2,62,64,[[1094,1,1,62,63],[1095,1,1,63,64]]],[51,2,2,64,66,[[1114,1,1,64,65],[1115,1,1,65,66]]],[57,4,4,66,70,[[1140,2,2,66,68],[1142,1,1,68,69],[1145,1,1,69,70]]],[59,1,1,70,71,[[1152,1,1,70,71]]],[60,1,1,71,72,[[1156,1,1,71,72]]],[65,15,12,72,84,[[1168,1,1,72,73],[1169,3,3,73,76],[1181,1,1,76,77],[1184,8,5,77,82],[1187,2,2,82,84]]]],[23252,23254,23260,23440,23459,23553,23639,23694,23730,23957,23959,23978,23991,23992,24083,24089,24539,24579,24603,24719,24736,24747,24748,24779,24785,24891,24908,25183,25328,25382,25518,25553,25695,25705,25718,25844,25858,25859,25880,25882,25898,25931,25932,26170,26204,26292,26294,26393,26432,26433,26486,26509,26549,26579,26638,26668,26796,26892,27403,27925,28030,28540,29161,29178,29618,29624,30103,30104,30150,30246,30405,30489,30728,30749,30751,30758,30950,31000,31007,31014,31015,31016,31078,31080]]],["+",[19,16,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,7,7,1,8,[[1000,1,1,1,2],[1002,1,1,2,3],[1004,2,2,3,5],[1006,1,1,5,6],[1007,1,1,6,7],[1009,1,1,7,8]]],[57,2,2,8,10,[[1140,1,1,8,9],[1142,1,1,9,10]]],[60,1,1,10,11,[[1156,1,1,10,11]]],[65,8,5,11,16,[[1184,7,4,11,15],[1187,1,1,15,16]]]],[24785,26170,26292,26432,26433,26509,26549,26638,30104,30150,30489,31007,31014,31015,31016,31078]]],["case",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23254]]],["ever",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23978]]],["means",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[23260,25382]]],["neither",[2,2,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]]],[24736,24908]]],["never",[2,2,[[42,1,1,0,1,[[1002,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[26292,30246]]],["no",[4,4,[[40,1,1,0,1,[[970,1,1,0,1]]],[45,1,1,1,2,[[1069,1,1,1,2]]],[65,2,2,2,4,[[1169,1,1,2,3],[1184,1,1,3,4]]]],[24779,28540,30758,31000]]],["not",[56,51,[[39,13,11,0,11,[[938,1,1,0,1],[941,2,1,1,2],[943,1,1,2,3],[944,1,1,3,4],[946,1,1,4,5],[951,1,1,5,6],[952,4,3,6,9],[954,2,2,9,11]]],[40,8,7,11,18,[[965,2,2,11,13],[966,1,1,13,14],[969,4,3,14,17],[972,1,1,17,18]]],[41,15,14,18,32,[[978,2,1,18,19],[981,1,1,19,20],[984,1,1,20,21],[985,1,1,21,22],[990,2,2,22,24],[993,3,3,24,27],[994,5,5,27,32]]],[42,7,7,32,39,[[1000,1,1,32,33],[1004,1,1,33,34],[1006,1,1,34,35],[1007,1,1,35,36],[1009,1,1,36,37],[1014,1,1,37,38],[1016,1,1,38,39]]],[43,2,1,39,40,[[1045,2,1,39,40]]],[44,1,1,40,41,[[1049,1,1,40,41]]],[47,2,2,41,43,[[1094,1,1,41,42],[1095,1,1,42,43]]],[51,2,2,43,45,[[1114,1,1,43,44],[1115,1,1,44,45]]],[57,1,1,45,46,[[1140,1,1,45,46]]],[59,1,1,46,47,[[1152,1,1,46,47]]],[65,4,4,47,51,[[1168,1,1,47,48],[1169,2,2,48,50],[1181,1,1,50,51]]]],[23440,23553,23639,23694,23730,23957,23959,23991,23992,24083,24089,24539,24579,24603,24719,24747,24748,24891,25183,25328,25518,25553,25695,25718,25844,25858,25859,25880,25882,25898,25931,25932,26204,26393,26486,26579,26668,26796,26892,27925,28030,29161,29178,29618,29624,30103,30405,30728,30749,30751,30950]]],["wise",[6,6,[[39,2,2,0,2,[[933,1,1,0,1],[938,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[42,1,1,3,4,[[1002,1,1,3,4]]],[43,1,1,4,5,[[1030,1,1,4,5]]],[65,1,1,5,6,[[1187,1,1,5,6]]]],[23252,23459,25705,26294,27403,31080]]]]},{"k":"G3365","v":[["so",[2,2,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]]],[27273,27315]]]]},{"k":"G3366","v":[["*",[57,49,[[39,11,8,0,8,[[934,1,1,0,1],[935,1,1,1,2],[938,6,3,2,5],[950,1,1,5,6],[951,1,1,6,7],[952,1,1,7,8]]],[40,7,6,8,14,[[958,1,1,8,9],[962,1,1,9,10],[964,2,1,10,11],[968,1,1,11,12],[969,2,2,12,14]]],[41,9,7,14,21,[[975,1,1,14,15],[982,1,1,15,16],[984,2,2,16,18],[986,3,1,18,19],[988,1,1,19,20],[989,1,1,20,21]]],[42,2,2,21,23,[[1000,1,1,21,22],[1010,1,1,22,23]]],[43,3,3,23,26,[[1021,1,1,23,24],[1038,1,1,24,25],[1040,1,1,25,26]]],[44,4,3,26,29,[[1051,1,1,26,27],[1054,1,1,27,28],[1059,2,1,28,29]]],[45,6,6,29,35,[[1066,2,2,29,31],[1071,4,4,31,35]]],[46,1,1,35,36,[[1081,1,1,35,36]]],[48,1,1,36,37,[[1101,1,1,36,37]]],[50,2,1,37,38,[[1108,2,1,37,38]]],[52,1,1,38,39,[[1118,1,1,38,39]]],[53,3,3,39,42,[[1119,1,1,39,40],[1123,1,1,40,41],[1124,1,1,41,42]]],[54,1,1,42,43,[[1125,1,1,42,43]]],[57,1,1,43,44,[[1144,1,1,43,44]]],[59,3,3,44,47,[[1153,1,1,44,45],[1155,2,2,45,47]]],[61,2,2,47,49,[[1160,1,1,47,48],[1161,1,1,48,49]]]],[23307,23322,23426,23427,23431,23901,23928,23977,24262,24418,24526,24697,24728,24732,25039,25367,25481,25506,25565,25646,25674,26171,26695,27040,27685,27742,28081,28166,28301,28462,28465,28574,28575,28576,28577,28861,29307,29515,29688,29700,29785,29805,29817,30217,30438,30467,30468,30565,30597]]],["+",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29307]]],["Neither",[9,9,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[44,1,1,2,3,[[1051,1,1,2,3]]],[45,4,4,3,7,[[1071,4,4,3,7]]],[53,1,1,7,8,[[1119,1,1,7,8]]],[59,1,1,8,9,[[1155,1,1,8,9]]]],[23928,24526,28081,28574,28575,28576,28577,29700,30468]]],["as",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24262]]],["neither",[23,22,[[39,4,3,0,3,[[935,1,1,0,1],[938,2,1,1,2],[952,1,1,2,3]]],[40,3,3,3,6,[[968,1,1,3,4],[969,2,2,4,6]]],[41,5,5,6,11,[[975,1,1,6,7],[984,2,2,7,9],[986,1,1,9,10],[988,1,1,10,11]]],[42,2,2,11,13,[[1000,1,1,11,12],[1010,1,1,12,13]]],[43,2,2,13,15,[[1038,1,1,13,14],[1040,1,1,14,15]]],[44,1,1,15,16,[[1054,1,1,15,16]]],[45,1,1,16,17,[[1066,1,1,16,17]]],[52,1,1,17,18,[[1118,1,1,17,18]]],[53,1,1,18,19,[[1123,1,1,18,19]]],[59,1,1,19,20,[[1153,1,1,19,20]]],[61,2,2,20,22,[[1160,1,1,20,21],[1161,1,1,21,22]]]],[23322,23427,23977,24697,24728,24732,25039,25481,25506,25565,25646,26171,26695,27685,27742,28166,28462,29688,29785,30438,30565,30597]]],["nor",[18,15,[[39,5,4,0,4,[[938,4,3,0,3],[950,1,1,3,4]]],[40,2,2,4,6,[[962,1,1,4,5],[964,1,1,5,6]]],[41,4,3,6,9,[[982,1,1,6,7],[986,2,1,7,8],[989,1,1,8,9]]],[43,1,1,9,10,[[1021,1,1,9,10]]],[44,2,1,10,11,[[1059,2,1,10,11]]],[46,1,1,11,12,[[1081,1,1,11,12]]],[53,1,1,12,13,[[1124,1,1,12,13]]],[54,1,1,13,14,[[1125,1,1,13,14]]],[57,1,1,14,15,[[1144,1,1,14,15]]]],[23426,23427,23431,23901,24418,24526,25367,25565,25674,27040,28301,28861,29805,29817,30217]]],["not",[4,3,[[45,1,1,0,1,[[1066,1,1,0,1]]],[50,2,1,1,2,[[1108,2,1,1,2]]],[59,1,1,2,3,[[1155,1,1,2,3]]]],[28465,29515,30467]]],["yet",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23307]]]]},{"k":"G3367","v":[["*",[91,88,[[39,5,5,0,5,[[936,1,1,0,1],[937,1,1,1,2],[944,1,1,2,3],[945,1,1,3,4],[955,1,1,4,5]]],[40,9,8,5,13,[[957,2,1,5,6],[961,2,2,6,8],[962,1,1,8,9],[963,1,1,9,10],[964,1,1,10,11],[965,1,1,11,12],[967,1,1,12,13]]],[41,9,9,13,22,[[975,2,2,13,15],[976,1,1,15,16],[977,1,1,16,17],[978,1,1,17,18],[980,1,1,18,19],[981,2,2,19,21],[982,1,1,21,22]]],[42,1,1,22,23,[[1004,1,1,22,23]]],[43,23,23,23,46,[[1021,2,2,23,25],[1025,1,1,25,26],[1026,1,1,26,27],[1027,2,2,27,29],[1028,2,2,29,31],[1030,1,1,31,32],[1032,1,1,32,33],[1033,1,1,33,34],[1036,2,2,34,36],[1038,1,1,36,37],[1040,3,3,37,40],[1041,1,1,40,41],[1042,2,2,41,43],[1044,1,1,43,44],[1045,2,2,44,46]]],[44,3,2,46,48,[[1057,1,1,46,47],[1058,2,1,47,48]]],[45,6,6,48,54,[[1062,1,1,48,49],[1064,2,2,49,51],[1071,3,3,51,54]]],[46,6,5,54,59,[[1083,3,2,54,56],[1084,1,1,56,57],[1088,1,1,57,58],[1090,1,1,58,59]]],[47,2,2,59,61,[[1096,2,2,59,61]]],[48,1,1,61,62,[[1101,1,1,61,62]]],[49,3,3,62,65,[[1103,1,1,62,63],[1104,1,1,63,64],[1106,1,1,64,65]]],[50,1,1,65,66,[[1108,1,1,65,66]]],[51,2,2,66,68,[[1113,1,1,66,67],[1114,1,1,67,68]]],[52,2,2,68,70,[[1117,1,1,68,69],[1118,1,1,69,70]]],[53,5,5,70,75,[[1122,1,1,70,71],[1123,3,3,71,74],[1124,1,1,74,75]]],[55,4,4,75,79,[[1130,2,2,75,77],[1131,2,2,77,79]]],[57,1,1,79,80,[[1142,1,1,79,80]]],[58,3,3,80,83,[[1146,3,3,80,83]]],[59,1,1,83,84,[[1153,1,1,83,84]]],[61,1,1,84,85,[[1161,1,1,84,85]]],[63,1,1,85,86,[[1165,1,1,85,86]]],[65,2,2,86,88,[[1168,1,1,86,87],[1169,1,1,87,88]]]],[23349,23409,23692,23709,24148,24259,24390,24407,24415,24499,24530,24547,24654,25038,25039,25098,25121,25181,25301,25304,25322,25367,26391,27039,27043,27200,27223,27279,27287,27319,27326,27390,27470,27511,27621,27625,27689,27748,27756,27763,27792,27813,27821,27888,27905,27917,28262,28274,28370,28428,28431,28591,28592,28594,28901,28908,28925,28994,29050,29191,29205,29310,29389,29394,29448,29512,29593,29615,29664,29689,29759,29777,29784,29785,29792,29916,29923,29925,29936,30135,30270,30272,30279,30430,30586,30665,30727,30757]]],["+",[7,7,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]],[45,2,2,3,5,[[1071,2,2,3,5]]],[46,1,1,5,6,[[1088,1,1,5,6]]],[57,1,1,6,7,[[1142,1,1,6,7]]]],[24148,25181,27905,28592,28594,28994,30135]]],["all",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29689]]],["any",[4,4,[[43,2,2,0,2,[[1027,1,1,0,1],[1042,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]],[59,1,1,3,4,[[1153,1,1,3,4]]]],[27287,27813,29664,30430]]],["man",[33,33,[[39,4,4,0,4,[[936,1,1,0,1],[937,1,1,1,2],[944,1,1,2,3],[945,1,1,3,4]]],[40,6,6,4,10,[[957,1,1,4,5],[961,1,1,5,6],[963,1,1,6,7],[964,1,1,7,8],[965,1,1,8,9],[967,1,1,9,10]]],[41,5,5,10,15,[[975,1,1,10,11],[977,1,1,11,12],[980,1,1,12,13],[981,1,1,13,14],[982,1,1,14,15]]],[43,2,2,15,17,[[1026,1,1,15,16],[1040,1,1,16,17]]],[44,2,2,17,19,[[1057,1,1,17,18],[1058,1,1,18,19]]],[45,3,3,19,22,[[1064,2,2,19,21],[1071,1,1,21,22]]],[47,1,1,22,23,[[1096,1,1,22,23]]],[48,1,1,23,24,[[1101,1,1,23,24]]],[50,1,1,24,25,[[1108,1,1,24,25]]],[51,1,1,25,26,[[1113,1,1,25,26]]],[53,2,2,26,28,[[1122,1,1,26,27],[1123,1,1,27,28]]],[55,2,2,28,30,[[1130,1,1,28,29],[1131,1,1,29,30]]],[58,1,1,30,31,[[1146,1,1,30,31]]],[61,1,1,31,32,[[1161,1,1,31,32]]],[65,1,1,32,33,[[1169,1,1,32,33]]]],[23349,23409,23692,23709,24259,24407,24499,24530,24547,24654,25039,25121,25301,25322,25367,27223,27756,28262,28274,28428,28431,28591,29205,29310,29512,29593,29759,29785,29923,29925,30279,30586,30757]]],["no",[12,12,[[41,1,1,0,1,[[975,1,1,0,1]]],[43,7,7,1,8,[[1021,1,1,1,2],[1030,1,1,2,3],[1032,1,1,3,4],[1033,1,1,4,5],[1036,1,1,5,6],[1038,1,1,6,7],[1045,1,1,7,8]]],[45,1,1,8,9,[[1062,1,1,8,9]]],[46,2,2,9,11,[[1083,1,1,9,10],[1090,1,1,10,11]]],[55,1,1,11,12,[[1130,1,1,11,12]]]],[25038,27039,27390,27470,27511,27625,27689,27917,28370,28901,29050,29916]]],["none",[6,6,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,3,3,1,4,[[1025,1,1,1,2],[1028,1,1,2,3],[1041,1,1,3,4]]],[53,1,1,4,5,[[1123,1,1,4,5]]],[65,1,1,5,6,[[1168,1,1,5,6]]]],[26391,27200,27326,27792,29777,30727]]],["not",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25098]]],["nothing",[25,25,[[40,3,3,0,3,[[957,1,1,0,1],[961,1,1,1,2],[962,1,1,2,3]]],[41,1,1,3,4,[[981,1,1,3,4]]],[43,8,8,4,12,[[1021,1,1,4,5],[1027,1,1,5,6],[1028,1,1,6,7],[1036,1,1,7,8],[1040,2,2,8,10],[1042,1,1,10,11],[1044,1,1,11,12]]],[46,2,2,12,14,[[1083,1,1,12,13],[1084,1,1,13,14]]],[47,1,1,14,15,[[1096,1,1,14,15]]],[49,3,3,15,18,[[1103,1,1,15,16],[1104,1,1,16,17],[1106,1,1,17,18]]],[51,1,1,18,19,[[1114,1,1,18,19]]],[53,2,2,19,21,[[1123,1,1,19,20],[1124,1,1,20,21]]],[55,1,1,21,22,[[1131,1,1,21,22]]],[58,2,2,22,24,[[1146,2,2,22,24]]],[63,1,1,24,25,[[1165,1,1,24,25]]]],[24259,24390,24415,25304,27043,27279,27319,27621,27748,27763,27821,27888,28908,28925,29191,29389,29394,29448,29615,29784,29792,29936,30270,30272,30665]]],["thing",[2,2,[[44,1,1,0,1,[[1058,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]]],[28274,28901]]]]},{"k":"G3368","v":[["never",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29860]]]]},{"k":"G3369","v":[["+",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30179]]]]},{"k":"G3370","v":[["Medes",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26958]]]]},{"k":"G3371","v":[["*",[21,21,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,4,4,1,5,[[957,1,1,1,2],[958,1,1,2,3],[965,1,1,3,4],[967,1,1,4,5]]],[42,2,2,5,7,[[1001,1,1,5,6],[1004,1,1,6,7]]],[43,3,3,7,10,[[1021,1,1,7,8],[1030,1,1,8,9],[1042,1,1,9,10]]],[44,3,3,10,13,[[1051,1,1,10,11],[1059,1,1,11,12],[1060,1,1,12,13]]],[46,1,1,13,14,[[1082,1,1,13,14]]],[48,3,3,14,17,[[1100,3,3,14,17]]],[51,2,2,17,19,[[1113,2,2,17,19]]],[53,1,1,19,20,[[1123,1,1,19,20]]],[59,1,1,20,21,[[1154,1,1,20,21]]]],[23845,24260,24262,24563,24654,26224,26392,27039,27396,27820,28074,28293,28326,28892,29286,29289,29300,29591,29595,29786,30448]]],["+",[3,3,[[40,1,1,0,1,[[958,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]]],[24262,29289,29786]]],["henceforth",[3,3,[[43,1,1,0,1,[[1021,1,1,0,1]]],[44,1,1,1,2,[[1051,1,1,1,2]]],[46,1,1,2,3,[[1082,1,1,2,3]]]],[27039,28074,28892]]],["henceforward",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23845]]],["hereafter",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24654]]],["longer",[4,4,[[43,1,1,0,1,[[1042,1,1,0,1]]],[51,2,2,1,3,[[1113,2,2,1,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]]],[27820,29591,29595,30448]]],["more",[9,9,[[40,2,2,0,2,[[957,1,1,0,1],[965,1,1,1,2]]],[42,2,2,2,4,[[1001,1,1,2,3],[1004,1,1,3,4]]],[43,1,1,4,5,[[1030,1,1,4,5]]],[44,2,2,5,7,[[1059,1,1,5,6],[1060,1,1,6,7]]],[48,2,2,7,9,[[1100,2,2,7,9]]]],[24260,24563,26224,26392,27396,28293,28326,29286,29300]]]]},{"k":"G3372","v":[["*",[3,2,[[48,1,1,0,1,[[1099,1,1,0,1]]],[65,2,1,1,2,[[1187,2,1,1,2]]]],[29269,31069]]],["+",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31069]]],["length",[2,2,[[48,1,1,0,1,[[1099,1,1,0,1]]],[65,1,1,1,2,[[1187,1,1,1,2]]]],[29269,31069]]]]},{"k":"G3373","v":[["up",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24350]]]]},{"k":"G3374","v":[["sheepskins",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30209]]]]},{"k":"G3375","v":[["+",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30058]]]]},{"k":"G3376","v":[["*",[18,18,[[41,5,5,0,5,[[973,4,4,0,4],[976,1,1,4,5]]],[43,5,5,5,10,[[1024,1,1,5,6],[1035,1,1,6,7],[1036,1,1,7,8],[1037,1,1,8,9],[1045,1,1,9,10]]],[47,1,1,10,11,[[1094,1,1,10,11]]],[58,1,1,11,12,[[1150,1,1,11,12]]],[65,6,6,12,18,[[1175,3,3,12,15],[1177,1,1,15,16],[1179,1,1,16,17],[1188,1,1,17,18]]]],[24917,24919,24929,24949,25088,27136,27568,27593,27629,27910,29141,30371,30845,30850,30855,30874,30913,31082]]],["month",[4,4,[[41,2,2,0,2,[[973,2,2,0,2]]],[65,2,2,2,4,[[1175,1,1,2,3],[1188,1,1,3,4]]]],[24919,24929,30855,31082]]],["months",[14,14,[[41,3,3,0,3,[[973,2,2,0,2],[976,1,1,2,3]]],[43,5,5,3,8,[[1024,1,1,3,4],[1035,1,1,4,5],[1036,1,1,5,6],[1037,1,1,6,7],[1045,1,1,7,8]]],[47,1,1,8,9,[[1094,1,1,8,9]]],[58,1,1,9,10,[[1150,1,1,9,10]]],[65,4,4,10,14,[[1175,2,2,10,12],[1177,1,1,12,13],[1179,1,1,13,14]]]],[24917,24949,25088,27136,27568,27593,27629,27910,29141,30371,30845,30850,30874,30913]]]]},{"k":"G3377","v":[["*",[4,4,[[41,1,1,0,1,[[992,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]],[43,1,1,2,3,[[1040,1,1,2,3]]],[45,1,1,3,4,[[1071,1,1,3,4]]]],[25816,26580,27764,28595]]],["shew",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26580]]],["shewed",[2,2,[[41,1,1,0,1,[[992,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]]],[25816,28595]]],["told",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27764]]]]},{"k":"G3378","v":[["not",[4,4,[[44,2,2,0,2,[[1055,2,2,0,2]]],[45,2,2,2,4,[[1070,2,2,2,4]]]],[28206,28207,28544,28545]]]]},{"k":"G3379","v":[["*",[25,25,[[39,8,8,0,8,[[932,1,1,0,1],[933,1,1,1,2],[935,1,1,2,3],[941,2,2,3,5],[943,1,1,5,6],[953,1,1,6,7],[955,1,1,7,8]]],[40,2,2,8,10,[[960,1,1,8,9],[970,1,1,9,10]]],[41,7,7,10,17,[[975,1,1,10,11],[976,1,1,11,12],[984,1,1,12,13],[986,3,3,13,16],[993,1,1,16,17]]],[42,1,1,17,18,[[1003,1,1,17,18]]],[43,2,2,18,20,[[1022,1,1,18,19],[1045,1,1,19,20]]],[54,1,1,20,21,[[1126,1,1,20,21]]],[57,4,4,21,25,[[1134,1,1,21,22],[1135,1,1,22,23],[1136,1,1,23,24],[1141,1,1,24,25]]]],[23215,23259,23322,23554,23568,23665,24017,24193,24335,24756,25040,25074,25517,25561,25565,25582,25860,26354,27098,27926,29852,29978,30007,30015,30122]]],["+",[3,3,[[41,1,1,0,1,[[975,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[25040,29852,30122]]],["Do",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26354]]],["haply",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[25582,27098]]],["lest",[12,12,[[39,5,5,0,5,[[935,1,1,0,1],[941,1,1,1,2],[943,1,1,2,3],[953,1,1,3,4],[955,1,1,4,5]]],[40,1,1,5,6,[[970,1,1,5,6]]],[41,3,3,6,9,[[984,1,1,6,7],[986,2,2,7,9]]],[43,1,1,9,10,[[1045,1,1,9,10]]],[57,2,2,10,12,[[1135,1,1,10,11],[1136,1,1,11,12]]]],[23322,23568,23665,24017,24193,24756,25517,25561,25565,27926,30007,30015]]],["time",[7,7,[[39,3,3,0,3,[[932,1,1,0,1],[933,1,1,1,2],[941,1,1,2,3]]],[40,1,1,3,4,[[960,1,1,3,4]]],[41,2,2,4,6,[[976,1,1,4,5],[993,1,1,5,6]]],[57,1,1,6,7,[[1134,1,1,6,7]]]],[23215,23259,23554,24335,25074,25860,29978]]]]},{"k":"G3380","v":[["yet",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[28166,30113]]]]},{"k":"G3381","v":[["*",[12,11,[[43,1,1,0,1,[[1044,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]],[45,2,2,2,4,[[1069,1,1,2,3],[1070,1,1,3,4]]],[46,5,4,4,8,[[1079,1,1,4,5],[1086,1,1,5,6],[1088,1,1,6,7],[1089,2,1,7,8]]],[47,2,2,8,10,[[1092,1,1,8,9],[1094,1,1,9,10]]],[51,1,1,10,11,[[1113,1,1,10,11]]]],[27884,28230,28536,28567,28831,28960,28992,29042,29083,29142,29595]]],["haply",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28960]]],["lest",[6,5,[[43,1,1,0,1,[[1044,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]],[46,3,2,2,4,[[1079,1,1,2,3],[1089,2,1,3,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]]],[27884,28230,28831,29042,29142]]],["means",[5,5,[[45,2,2,0,2,[[1069,1,1,0,1],[1070,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]],[47,1,1,3,4,[[1092,1,1,3,4]]],[51,1,1,4,5,[[1113,1,1,4,5]]]],[28536,28567,28992,29083,29595]]]]},{"k":"G3382","v":[["thigh",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31033]]]]},{"k":"G3383","v":[["*",[37,18,[[39,6,4,0,4,[[933,4,3,0,3],[939,2,1,3,4]]],[40,1,1,4,5,[[959,1,1,4,5]]],[41,7,2,5,7,[[979,2,1,5,6],[981,5,1,6,7]]],[43,7,4,7,11,[[1040,5,3,7,10],[1044,2,1,10,11]]],[48,1,1,11,12,[[1100,1,1,11,12]]],[52,4,1,12,13,[[1117,4,1,12,13]]],[53,2,1,13,14,[[1119,2,1,13,14]]],[57,2,1,14,15,[[1139,2,1,14,15]]],[58,3,1,15,16,[[1150,3,1,15,16]]],[65,4,2,16,18,[[1173,4,2,16,18]]]],[23268,23269,23270,23477,24308,25228,25304,27742,27746,27755,27875,29299,29663,29703,30067,30366,30811,30813]]],["Neither",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[23270,29299]]],["Nor",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23269]]],["as",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24308]]],["neither",[18,13,[[39,3,3,0,3,[[933,2,2,0,2],[939,1,1,2,3]]],[41,5,2,3,5,[[979,1,1,3,4],[981,4,1,4,5]]],[43,3,3,5,8,[[1040,2,2,5,7],[1044,1,1,7,8]]],[52,1,1,8,9,[[1117,1,1,8,9]]],[53,1,1,9,10,[[1119,1,1,9,10]]],[57,1,1,10,11,[[1139,1,1,10,11]]],[58,3,1,11,12,[[1150,3,1,11,12]]],[65,1,1,12,13,[[1173,1,1,12,13]]]],[23268,23269,23477,25228,25304,27746,27755,27875,29663,29703,30067,30366,30813]]],["nor",[14,12,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,2,2,1,3,[[979,1,1,1,2],[981,1,1,2,3]]],[43,4,4,3,7,[[1040,3,3,3,6],[1044,1,1,6,7]]],[52,2,1,7,8,[[1117,2,1,7,8]]],[53,1,1,8,9,[[1119,1,1,8,9]]],[57,1,1,9,10,[[1139,1,1,9,10]]],[65,3,2,10,12,[[1173,3,2,10,12]]]],[23477,25228,25304,27742,27746,27755,27875,29663,29703,30067,30811,30813]]],["or",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29663]]]]},{"k":"G3384","v":[["*",[85,79,[[39,27,25,0,25,[[929,1,1,0,1],[930,5,5,1,6],[938,2,2,6,8],[940,5,5,8,13],[941,1,1,13,14],[942,2,2,14,16],[943,4,3,16,19],[947,4,4,19,23],[948,1,1,23,24],[955,2,1,24,25]]],[40,17,16,25,41,[[959,5,5,25,30],[961,1,1,30,31],[962,2,2,31,33],[963,4,3,33,36],[966,4,4,36,40],[971,1,1,40,41]]],[41,18,17,41,58,[[973,3,3,41,44],[974,5,5,44,49],[979,2,2,49,51],[980,4,4,51,55],[984,2,1,55,56],[986,1,1,56,57],[990,1,1,57,58]]],[42,11,9,58,67,[[998,4,4,58,62],[999,1,1,62,63],[1002,1,1,63,64],[1015,5,3,64,67]]],[43,4,4,67,71,[[1018,1,1,67,68],[1020,1,1,68,69],[1029,1,1,69,70],[1031,1,1,70,71]]],[44,1,1,71,72,[[1061,1,1,71,72]]],[47,2,2,72,74,[[1091,1,1,72,73],[1094,1,1,73,74]]],[48,2,2,74,76,[[1101,1,1,74,75],[1102,1,1,75,76]]],[53,1,1,76,77,[[1123,1,1,76,77]]],[54,1,1,77,78,[[1125,1,1,77,78]]],[65,1,1,78,79,[[1183,1,1,78,79]]]],[23162,23180,23182,23183,23189,23190,23452,23454,23535,23536,23537,23538,23539,23594,23605,23608,23637,23638,23639,23767,23774,23781,23791,23812,24185,24319,24320,24321,24322,24323,24404,24431,24435,24473,24474,24475,24595,24607,24617,24618,24866,24908,24936,24953,25006,25007,25016,25021,25024,25207,25210,25264,25265,25266,25296,25512,25579,25708,26096,26098,26100,26107,26124,26299,26850,26851,26852,26937,26998,27349,27422,28349,29072,29157,29335,29339,29765,29814,30980]]],["MOTHER",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30980]]],["and",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23781]]],["mother",[74,69,[[39,25,23,0,23,[[929,1,1,0,1],[930,5,5,1,6],[938,2,2,6,8],[940,5,5,8,13],[941,1,1,13,14],[942,2,2,14,16],[943,4,3,16,19],[947,2,2,19,21],[948,1,1,21,22],[955,2,1,22,23]]],[40,16,15,23,38,[[959,5,5,23,28],[961,1,1,28,29],[962,2,2,29,31],[963,4,3,31,34],[966,3,3,34,37],[971,1,1,37,38]]],[41,17,16,38,54,[[973,2,2,38,40],[974,5,5,40,45],[979,2,2,45,47],[980,4,4,47,51],[984,2,1,51,52],[986,1,1,52,53],[990,1,1,53,54]]],[42,9,8,54,62,[[998,4,4,54,58],[1002,1,1,58,59],[1015,4,3,59,62]]],[43,2,2,62,64,[[1018,1,1,62,63],[1029,1,1,63,64]]],[44,1,1,64,65,[[1061,1,1,64,65]]],[47,1,1,65,66,[[1094,1,1,65,66]]],[48,2,2,66,68,[[1101,1,1,66,67],[1102,1,1,67,68]]],[54,1,1,68,69,[[1125,1,1,68,69]]]],[23162,23180,23182,23183,23189,23190,23452,23454,23535,23536,23537,23538,23539,23594,23605,23608,23637,23638,23639,23767,23791,23812,24185,24319,24320,24321,24322,24323,24404,24431,24435,24473,24474,24475,24595,24607,24617,24866,24936,24953,25006,25007,25016,25021,25024,25207,25210,25264,25265,25266,25296,25512,25579,25708,26096,26098,26100,26107,26299,26850,26851,26852,26937,27349,28349,29157,29335,29339,29814]]],["mother's",[7,7,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[42,2,2,2,4,[[999,1,1,2,3],[1015,1,1,3,4]]],[43,2,2,4,6,[[1020,1,1,4,5],[1031,1,1,5,6]]],[47,1,1,6,7,[[1091,1,1,6,7]]]],[23774,24908,26124,26850,26998,27422,29072]]],["mothers",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[24618,29765]]]]},{"k":"G3385","v":[["*",[15,14,[[39,4,4,0,4,[[935,1,1,0,1],[940,1,1,1,2],[954,2,2,2,4]]],[40,3,2,4,6,[[960,1,1,4,5],[970,2,1,5,6]]],[41,1,1,6,7,[[978,1,1,6,7]]],[42,4,4,7,11,[[1000,1,1,7,8],[1003,1,1,8,9],[1004,1,1,9,10],[1014,1,1,10,11]]],[43,1,1,11,12,[[1027,1,1,11,12]]],[46,1,1,12,13,[[1078,1,1,12,13]]],[58,1,1,13,14,[[1148,1,1,13,14]]]],[23332,23512,24076,24079,24344,24773,25185,26185,26359,26403,26820,27306,28817,30330]]],["+",[6,6,[[39,2,2,0,2,[[954,2,2,0,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]],[43,1,1,4,5,[[1027,1,1,4,5]]],[46,1,1,5,6,[[1078,1,1,5,6]]]],[24076,24079,25185,26820,27306,28817]]],["Doth",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30330]]],["Is",[2,1,[[40,2,1,0,1,[[970,2,1,0,1]]]],[24773]]],["Will",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26403]]],["a",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24344]]],["he",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26359]]],["men",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23332]]],["not",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]]],[23512,26185]]]]},{"k":"G3386","v":[["more",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28470]]]]},{"k":"G3387","v":[["*",[4,4,[[42,3,3,0,3,[[1000,1,1,0,1],[1003,1,1,1,2],[1017,1,1,2,3]]],[46,1,1,3,4,[[1089,1,1,3,4]]]],[26189,26376,26903,29040]]],["Did",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29040]]],["any",[2,2,[[42,2,2,0,2,[[1003,1,1,0,1],[1017,1,1,1,2]]]],[26376,26903]]],["man",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26189]]]]},{"k":"G3388","v":[["womb",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[44,1,1,1,2,[[1049,1,1,1,2]]]],[24996,28041]]]]},{"k":"G3389","v":[["mothers",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29705]]]]},{"k":"G3390","v":[]},{"k":"G3391","v":[["*",[79,70,[[39,15,12,0,12,[[933,3,3,0,3],[945,3,1,3,4],[947,2,2,4,6],[948,1,1,6,7],[949,1,1,7,8],[952,2,1,8,9],[954,2,2,9,11],[956,1,1,11,12]]],[40,9,6,12,18,[[965,3,1,12,13],[966,2,1,13,14],[968,1,1,14,15],[970,2,2,15,17],[972,1,1,17,18]]],[41,16,14,18,32,[[977,2,2,18,20],[980,1,1,20,21],[981,3,1,21,22],[985,1,1,22,23],[986,1,1,23,24],[987,1,1,24,25],[988,1,1,25,26],[989,3,3,26,29],[992,1,1,29,30],[994,1,1,30,31],[996,1,1,31,32]]],[42,3,3,32,35,[[1006,1,1,32,33],[1016,2,2,33,35]]],[43,7,7,35,42,[[1021,1,1,35,36],[1029,1,1,36,37],[1036,1,1,37,38],[1037,1,1,38,39],[1038,1,1,39,40],[1041,1,1,40,41],[1045,1,1,41,42]]],[45,3,3,42,45,[[1067,1,1,42,43],[1071,1,1,43,44],[1077,1,1,44,45]]],[46,1,1,45,46,[[1088,1,1,45,46]]],[47,1,1,46,47,[[1094,1,1,46,47]]],[48,3,3,47,50,[[1100,2,2,47,49],[1101,1,1,49,50]]],[49,1,1,50,51,[[1103,1,1,50,51]]],[53,2,2,51,53,[[1121,2,2,51,53]]],[55,2,2,53,55,[[1129,1,1,53,54],[1131,1,1,54,55]]],[57,3,3,55,58,[[1142,2,2,55,57],[1144,1,1,57,58]]],[60,2,1,58,59,[[1158,2,1,58,59]]],[65,11,11,59,70,[[1172,1,1,59,60],[1175,2,2,60,62],[1179,1,1,62,63],[1183,3,3,63,66],[1184,4,4,66,70]]]],[23252,23253,23270,23704,23767,23768,23804,23845,23998,24094,24123,24196,24543,24596,24715,24791,24820,24875,25119,25124,25267,25334,25528,25571,25596,25637,25673,25685,25686,25780,25923,25992,26497,26868,26886,27054,27347,27619,27633,27671,27790,27912,28483,28575,28778,29013,29155,29276,29277,29335,29388,29733,29743,29898,29933,30145,30147,30228,30530,30794,30852,30853,30911,30987,30988,30992,31001,31003,31010,31012]]],["+",[6,6,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[43,1,1,2,3,[[1036,1,1,2,3]]],[45,1,1,3,4,[[1077,1,1,3,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]],[65,1,1,5,6,[[1183,1,1,5,6]]]],[23767,25923,27619,28778,29155,30992]]],["One",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30852]]],["a",[3,3,[[39,2,2,0,2,[[949,1,1,0,1],[954,1,1,1,2]]],[65,1,1,2,3,[[1175,1,1,2,3]]]],[23845,24123,30853]]],["certain",[4,4,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,3,3,1,4,[[977,2,2,1,3],[980,1,1,3,4]]]],[24715,25119,25124,25267]]],["first",[7,7,[[39,1,1,0,1,[[956,1,1,0,1]]],[40,1,1,1,2,[[972,1,1,1,2]]],[41,1,1,2,3,[[996,1,1,2,3]]],[42,2,2,3,5,[[1016,2,2,3,5]]],[43,1,1,5,6,[[1037,1,1,5,6]]],[55,1,1,6,7,[[1131,1,1,6,7]]]],[24196,24875,25992,26868,26886,27633,29933]]],["one",[57,49,[[39,10,8,0,8,[[933,3,3,0,3],[945,3,1,3,4],[947,1,1,4,5],[948,1,1,5,6],[952,1,1,6,7],[954,1,1,7,8]]],[40,7,4,8,12,[[965,3,1,8,9],[966,2,1,9,10],[970,2,2,10,12]]],[41,11,9,12,21,[[981,3,1,12,13],[985,1,1,13,14],[986,1,1,14,15],[987,1,1,15,16],[988,1,1,16,17],[989,3,3,17,20],[992,1,1,20,21]]],[42,1,1,21,22,[[1006,1,1,21,22]]],[43,5,5,22,27,[[1021,1,1,22,23],[1029,1,1,23,24],[1038,1,1,24,25],[1041,1,1,25,26],[1045,1,1,26,27]]],[45,2,2,27,29,[[1067,1,1,27,28],[1071,1,1,28,29]]],[46,1,1,29,30,[[1088,1,1,29,30]]],[48,3,3,30,33,[[1100,2,2,30,32],[1101,1,1,32,33]]],[49,1,1,33,34,[[1103,1,1,33,34]]],[53,2,2,34,36,[[1121,2,2,34,36]]],[55,1,1,36,37,[[1129,1,1,36,37]]],[57,3,3,37,40,[[1142,2,2,37,39],[1144,1,1,39,40]]],[60,2,1,40,41,[[1158,2,1,40,41]]],[65,8,8,41,49,[[1172,1,1,41,42],[1179,1,1,42,43],[1183,2,2,43,45],[1184,4,4,45,49]]]],[23252,23253,23270,23704,23768,23804,23998,24094,24543,24596,24791,24820,25334,25528,25571,25596,25637,25673,25685,25686,25780,26497,27054,27347,27671,27790,27912,28483,28575,29013,29276,29277,29335,29388,29733,29743,29898,30145,30147,30228,30530,30794,30911,30987,30988,31001,31003,31010,31012]]],["other",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23998]]]]},{"k":"G3392","v":[["*",[5,4,[[42,1,1,0,1,[[1014,1,1,0,1]]],[55,2,1,1,2,[[1129,2,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[26813,29907,30227,30680]]],["defile",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30680]]],["defiled",[4,3,[[42,1,1,0,1,[[1014,1,1,0,1]]],[55,2,1,1,2,[[1129,2,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[26813,29907,30227]]]]},{"k":"G3393","v":[["pollutions",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30520]]]]},{"k":"G3394","v":[["uncleanness",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30510]]]]},{"k":"G3395","v":[["mixture",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26864]]]]},{"k":"G3396","v":[["mingled",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[65,2,2,2,4,[[1174,1,1,2,3],[1181,1,1,3,4]]]],[24163,25519,30834,30948]]]]},{"k":"G3397","v":[["*",[16,13,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,2,2,2,4,[[970,2,2,2,4]]],[42,9,6,4,10,[[1009,1,1,4,5],[1010,1,1,5,6],[1012,7,4,6,10]]],[46,2,2,10,12,[[1088,2,2,10,12]]],[57,1,1,12,13,[[1142,1,1,12,13]]]],[24093,24127,24789,24824,26663,26687,26742,26743,26744,26745,28990,29005,30170]]],["+",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[29005,30170]]],["further",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24093]]],["little",[3,3,[[40,2,2,0,2,[[970,2,2,0,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]]],[24789,24824,28990]]],["while",[10,7,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,9,6,1,7,[[1009,1,1,1,2],[1010,1,1,2,3],[1012,7,4,3,7]]]],[24127,26663,26687,26742,26743,26744,26745]]]]},{"k":"G3398","v":[["*",[30,30,[[39,6,6,0,6,[[938,1,1,0,1],[939,1,1,1,2],[941,1,1,2,3],[946,3,3,3,6]]],[40,3,3,6,9,[[960,1,1,6,7],[965,1,1,7,8],[971,1,1,8,9]]],[41,5,5,9,14,[[979,1,1,9,10],[981,1,1,10,11],[984,1,1,11,12],[989,1,1,12,13],[991,1,1,13,14]]],[42,2,2,14,16,[[1003,1,1,14,15],[1008,1,1,15,16]]],[43,2,2,16,18,[[1025,1,1,16,17],[1043,1,1,17,18]]],[45,1,1,18,19,[[1066,1,1,18,19]]],[47,1,1,19,20,[[1095,1,1,19,20]]],[57,1,1,20,21,[[1140,1,1,20,21]]],[58,1,1,21,22,[[1148,1,1,21,22]]],[65,8,8,22,30,[[1169,1,1,22,23],[1172,1,1,23,24],[1177,1,1,24,25],[1179,1,1,25,26],[1185,2,2,26,28],[1186,2,2,28,30]]]],[23459,23470,23571,23733,23737,23741,24354,24580,24866,25223,25349,25491,25653,25734,26361,26615,27186,27845,28460,29171,30103,30324,30754,30804,30890,30924,31022,31035,31041,31050]]],["+",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30103]]],["least",[5,5,[[39,2,2,0,2,[[939,1,1,0,1],[941,1,1,1,2]]],[41,2,2,2,4,[[979,1,1,2,3],[981,1,1,3,4]]],[43,1,1,4,5,[[1025,1,1,4,5]]]],[23470,23571,25223,25349,27186]]],["less",[2,2,[[40,2,2,0,2,[[960,1,1,0,1],[971,1,1,1,2]]]],[24354,24866]]],["little",[10,10,[[41,2,2,0,2,[[984,1,1,0,1],[991,1,1,1,2]]],[42,2,2,2,4,[[1003,1,1,2,3],[1008,1,1,3,4]]],[45,1,1,4,5,[[1066,1,1,4,5]]],[47,1,1,5,6,[[1095,1,1,5,6]]],[58,1,1,6,7,[[1148,1,1,6,7]]],[65,3,3,7,10,[[1169,1,1,7,8],[1172,1,1,8,9],[1186,1,1,9,10]]]],[25491,25734,26361,26615,28460,29171,30324,30754,30804,31041]]],["ones",[6,6,[[39,4,4,0,4,[[938,1,1,0,1],[946,3,3,1,4]]],[40,1,1,4,5,[[965,1,1,4,5]]],[41,1,1,5,6,[[989,1,1,5,6]]]],[23459,23733,23737,23741,24580,25653]]],["small",[6,6,[[43,1,1,0,1,[[1043,1,1,0,1]]],[65,5,5,1,6,[[1177,1,1,1,2],[1179,1,1,2,3],[1185,2,2,3,5],[1186,1,1,5,6]]]],[27845,30890,30924,31022,31035,31050]]]]},{"k":"G3399","v":[["*",[3,3,[[43,2,2,0,2,[[1037,2,2,0,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[27641,27643,29890]]],["Miletum",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29890]]],["Miletus",[2,2,[[43,2,2,0,2,[[1037,2,2,0,2]]]],[27641,27643]]]]},{"k":"G3400","v":[["mile",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23275]]]]},{"k":"G3401","v":[["follow",[4,4,[[52,2,2,0,2,[[1118,2,2,0,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]],[63,1,1,3,4,[[1165,1,1,3,4]]]],[29685,29687,30248,30669]]]]},{"k":"G3402","v":[["followers",[7,7,[[45,2,2,0,2,[[1065,1,1,0,1],[1072,1,1,1,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]],[51,2,2,3,5,[[1111,1,1,3,4],[1112,1,1,4,5]]],[57,1,1,5,6,[[1138,1,1,5,6]]],[59,1,1,6,7,[[1153,1,1,6,7]]]],[28449,28601,29305,29566,29584,30056,30437]]]]},{"k":"G3403","v":[["*",[2,2,[[57,2,2,0,2,[[1134,1,1,0,1],[1145,1,1,1,2]]]],[29983,30244]]],["Remember",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30244]]],["mindful",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29983]]]]},{"k":"G3404","v":[["*",[42,38,[[39,6,6,0,6,[[933,2,2,0,2],[934,1,1,2,3],[938,1,1,3,4],[952,2,2,4,6]]],[40,1,1,6,7,[[969,1,1,6,7]]],[41,7,7,7,14,[[973,1,1,7,8],[978,2,2,8,10],[986,1,1,10,11],[988,1,1,11,12],[991,1,1,12,13],[993,1,1,13,14]]],[42,12,9,14,23,[[999,1,1,14,15],[1003,2,1,15,16],[1008,1,1,16,17],[1011,7,5,17,22],[1013,1,1,22,23]]],[44,2,2,23,25,[[1052,1,1,23,24],[1054,1,1,24,25]]],[48,1,1,25,26,[[1101,1,1,25,26]]],[55,1,1,26,27,[[1131,1,1,26,27]]],[57,1,1,27,28,[[1133,1,1,27,28]]],[61,5,5,28,33,[[1160,2,2,28,30],[1161,2,2,30,32],[1162,1,1,32,33]]],[64,1,1,33,34,[[1166,1,1,33,34]]],[65,5,4,34,38,[[1168,3,2,34,36],[1183,1,1,36,37],[1184,1,1,37,38]]]],[23277,23278,23306,23439,23966,23967,24730,24964,25168,25173,25579,25633,25745,25843,26140,26335,26605,26717,26718,26722,26723,26724,26773,28106,28168,29333,29926,29972,30559,30561,30592,30594,30623,30695,30723,30732,30991,30995]]],["hate",[16,16,[[39,4,4,0,4,[[933,2,2,0,2],[934,1,1,2,3],[952,1,1,3,4]]],[41,5,5,4,9,[[973,1,1,4,5],[978,2,2,5,7],[986,1,1,7,8],[988,1,1,8,9]]],[42,2,2,9,11,[[1003,1,1,9,10],[1011,1,1,10,11]]],[44,1,1,11,12,[[1052,1,1,11,12]]],[61,1,1,12,13,[[1161,1,1,12,13]]],[65,3,3,13,16,[[1168,2,2,13,15],[1183,1,1,15,16]]]],[23277,23278,23306,23967,24964,25168,25173,25579,25633,26335,26717,28106,30592,30723,30732,30991]]],["hated",[12,12,[[39,2,2,0,2,[[938,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,2,2,3,5,[[991,1,1,3,4],[993,1,1,4,5]]],[42,4,4,5,9,[[1011,3,3,5,8],[1013,1,1,8,9]]],[44,1,1,9,10,[[1054,1,1,9,10]]],[48,1,1,10,11,[[1101,1,1,10,11]]],[57,1,1,11,12,[[1133,1,1,11,12]]]],[23439,23966,24730,25745,25843,26717,26723,26724,26773,28168,29333,29972]]],["hateful",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30995]]],["hatest",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30723]]],["hateth",[10,9,[[42,6,5,0,5,[[999,1,1,0,1],[1003,1,1,1,2],[1008,1,1,2,3],[1011,3,2,3,5]]],[61,4,4,5,9,[[1160,2,2,5,7],[1161,1,1,7,8],[1162,1,1,8,9]]]],[26140,26335,26605,26718,26722,30559,30561,30594,30623]]],["hating",[2,2,[[55,1,1,0,1,[[1131,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[29926,30695]]]]},{"k":"G3405","v":[["reward",[3,3,[[57,3,3,0,3,[[1134,1,1,0,1],[1142,1,1,1,2],[1143,1,1,2,3]]]],[29979,30168,30198]]]]},{"k":"G3406","v":[["rewarder",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30178]]]]},{"k":"G3407","v":[["servants",[2,2,[[41,2,2,0,2,[[987,2,2,0,2]]]],[25605,25607]]]]},{"k":"G3408","v":[["*",[29,28,[[39,10,9,0,9,[[933,2,2,0,2],[934,4,4,2,6],[938,3,2,6,8],[948,1,1,8,9]]],[40,1,1,9,10,[[965,1,1,9,10]]],[41,3,3,10,13,[[978,2,2,10,12],[982,1,1,12,13]]],[42,1,1,13,14,[[1000,1,1,13,14]]],[43,1,1,14,15,[[1018,1,1,14,15]]],[44,1,1,15,16,[[1049,1,1,15,16]]],[45,4,4,16,20,[[1064,2,2,16,18],[1070,2,2,18,20]]],[53,1,1,20,21,[[1123,1,1,20,21]]],[58,1,1,21,22,[[1150,1,1,21,22]]],[60,2,2,22,24,[[1157,2,2,22,24]]],[62,1,1,24,25,[[1164,1,1,24,25]]],[64,1,1,25,26,[[1166,1,1,25,26]]],[65,2,2,26,28,[[1177,1,1,26,27],[1188,1,1,27,28]]]],[23246,23280,23283,23284,23287,23298,23458,23459,23800,24579,25169,25181,25370,26192,26941,28026,28418,28424,28557,28558,29781,30358,30513,30515,30653,30683,30890,31092]]],["hire",[3,3,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[58,1,1,2,3,[[1150,1,1,2,3]]]],[23800,25370,30358]]],["reward",[24,23,[[39,9,8,0,8,[[933,2,2,0,2],[934,4,4,2,6],[938,3,2,6,8]]],[40,1,1,8,9,[[965,1,1,8,9]]],[41,2,2,9,11,[[978,2,2,9,11]]],[43,1,1,11,12,[[1018,1,1,11,12]]],[44,1,1,12,13,[[1049,1,1,12,13]]],[45,4,4,13,17,[[1064,2,2,13,15],[1070,2,2,15,17]]],[53,1,1,17,18,[[1123,1,1,17,18]]],[60,1,1,18,19,[[1157,1,1,18,19]]],[62,1,1,19,20,[[1164,1,1,19,20]]],[64,1,1,20,21,[[1166,1,1,20,21]]],[65,2,2,21,23,[[1177,1,1,21,22],[1188,1,1,22,23]]]],[23246,23280,23283,23284,23287,23298,23458,23459,24579,25169,25181,26941,28026,28418,28424,28557,28558,29781,30513,30653,30683,30890,31092]]],["wages",[2,2,[[42,1,1,0,1,[[1000,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[26192,30515]]]]},{"k":"G3409","v":[["*",[2,2,[[39,2,2,0,2,[[948,2,2,0,2]]]],[23793,23799]]],["hire",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23793]]],["hired",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23799]]]]},{"k":"G3410","v":[["house",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27929]]]]},{"k":"G3411","v":[["*",[4,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[42,3,2,1,3,[[1006,3,2,1,3]]]],[24235,26493,26494]]],["hireling",[3,2,[[42,3,2,0,2,[[1006,3,2,0,2]]]],[26493,26494]]],["servants",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24235]]]]},{"k":"G3412","v":[["Mitylene",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27640]]]]},{"k":"G3413","v":[["Michael",[2,2,[[64,1,1,0,1,[[1166,1,1,0,1]]],[65,1,1,1,2,[[1178,1,1,1,2]]]],[30681,30898]]]]},{"k":"G3414","v":[["*",[9,6,[[41,9,6,0,6,[[991,9,6,0,6]]]],[25744,25747,25749,25751,25755,25756]]],["pound",[4,4,[[41,4,4,0,4,[[991,4,4,0,4]]]],[25747,25749,25751,25755]]],["pounds",[5,5,[[41,5,5,0,5,[[991,5,5,0,5]]]],[25744,25747,25749,25755,25756]]]]},{"k":"G3415","v":[["*",[21,21,[[39,3,3,0,3,[[933,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[41,6,6,3,9,[[973,2,2,3,5],[988,1,1,5,6],[995,1,1,6,7],[996,2,2,7,9]]],[42,3,3,9,12,[[998,2,2,9,11],[1008,1,1,11,12]]],[43,2,2,12,14,[[1027,1,1,12,13],[1028,1,1,13,14]]],[45,1,1,14,15,[[1072,1,1,14,15]]],[54,1,1,15,16,[[1125,1,1,15,16]]],[57,2,2,16,18,[[1140,1,1,16,17],[1142,1,1,17,18]]],[60,1,1,18,19,[[1158,1,1,18,19]]],[64,1,1,19,20,[[1166,1,1,19,20]]],[65,1,1,20,21,[[1182,1,1,20,21]]]],[23257,24129,24192,24947,24965,25645,25977,25997,25999,26112,26117,26596,27290,27323,28602,29813,30104,30150,30524,30689,30973]]],["mindful",[2,2,[[54,1,1,0,1,[[1125,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[29813,30524]]],["remember",[9,9,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,4,4,1,5,[[973,1,1,1,2],[988,1,1,2,3],[995,1,1,3,4],[996,1,1,4,5]]],[45,1,1,5,6,[[1072,1,1,5,6]]],[57,2,2,6,8,[[1140,1,1,6,7],[1142,1,1,7,8]]],[64,1,1,8,9,[[1166,1,1,8,9]]]],[24192,24965,25645,25977,25997,28602,30104,30150,30689]]],["remembered",[6,6,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[42,3,3,2,5,[[998,2,2,2,4],[1008,1,1,4,5]]],[43,1,1,5,6,[[1028,1,1,5,6]]]],[24129,25999,26112,26117,26596,27323]]],["rememberest",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23257]]],["remembrance",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]],[65,1,1,2,3,[[1182,1,1,2,3]]]],[24947,27290,30973]]]]},{"k":"G3416","v":[["Mnason",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27680]]]]},{"k":"G3417","v":[["*",[7,7,[[44,1,1,0,1,[[1046,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[51,2,2,3,5,[[1111,1,1,3,4],[1113,1,1,4,5]]],[54,1,1,5,6,[[1125,1,1,5,6]]],[56,1,1,6,7,[[1132,1,1,6,7]]]],[27939,29222,29364,29562,29596,29812,29942]]],["mention",[4,4,[[44,1,1,0,1,[[1046,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]],[51,1,1,2,3,[[1111,1,1,2,3]]],[56,1,1,3,4,[[1132,1,1,3,4]]]],[27939,29222,29562,29942]]],["remembrance",[3,3,[[49,1,1,0,1,[[1103,1,1,0,1]]],[51,1,1,1,2,[[1113,1,1,1,2]]],[54,1,1,2,3,[[1125,1,1,2,3]]]],[29364,29596,29812]]]]},{"k":"G3418","v":[["*",[7,7,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,3,3,1,4,[[980,1,1,1,2],[995,1,1,2,3],[996,1,1,3,4]]],[43,2,2,4,6,[[1019,1,1,4,5],[1024,1,1,5,6]]],[65,1,1,6,7,[[1177,1,1,6,7]]]],[24369,25272,25988,25992,26978,27132,30881]]],["graves",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30881]]],["sepulchre",[4,4,[[41,2,2,0,2,[[995,1,1,0,1],[996,1,1,1,2]]],[43,2,2,2,4,[[1019,1,1,2,3],[1024,1,1,3,4]]]],[25988,25992,26978,27132]]],["tombs",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24369,25272]]]]},{"k":"G3419","v":[["*",[42,38,[[39,7,6,0,6,[[936,1,1,0,1],[951,1,1,1,2],[955,4,3,2,5],[956,1,1,5,6]]],[40,9,8,6,14,[[961,2,2,6,8],[962,1,1,8,9],[971,2,1,9,10],[972,4,4,10,14]]],[41,9,9,14,23,[[983,3,3,14,17],[995,1,1,17,18],[996,5,5,18,23]]],[42,16,14,23,37,[[1001,1,1,23,24],[1007,3,3,24,27],[1008,1,1,27,28],[1015,2,2,28,30],[1016,9,7,30,37]]],[43,1,1,37,38,[[1030,1,1,37,38]]]],[23373,23947,24181,24182,24189,24203,24366,24367,24436,24872,24875,24876,24878,24881,25449,25452,25453,25990,25993,26000,26003,26013,26015,26238,26540,26554,26561,26597,26866,26867,26868,26869,26870,26871,26873,26875,26878,27391]]],["grave",[4,4,[[42,4,4,0,4,[[1007,3,3,0,3],[1008,1,1,3,4]]]],[26540,26554,26561,26597]]],["graves",[4,4,[[39,2,2,0,2,[[955,2,2,0,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[42,1,1,3,4,[[1001,1,1,3,4]]]],[24181,24182,25449,26238]]],["sepulchre",[26,23,[[39,2,2,0,2,[[955,1,1,0,1],[956,1,1,1,2]]],[40,6,5,2,7,[[971,2,1,2,3],[972,4,4,3,7]]],[41,6,6,7,13,[[995,1,1,7,8],[996,5,5,8,13]]],[42,11,9,13,22,[[1015,2,2,13,15],[1016,9,7,15,22]]],[43,1,1,22,23,[[1030,1,1,22,23]]]],[24189,24203,24872,24875,24876,24878,24881,25990,25993,26000,26003,26013,26015,26866,26867,26868,26869,26870,26871,26873,26875,26878,27391]]],["sepulchres",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,2,2,1,3,[[983,2,2,1,3]]]],[23947,25452,25453]]],["tomb",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]]],[24189,24436]]],["tombs",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,2,2,1,3,[[961,2,2,1,3]]]],[23373,24366,24367]]]]},{"k":"G3420","v":[["+",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30494]]]]},{"k":"G3421","v":[["*",[21,21,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,1,1,2,3,[[989,1,1,2,3]]],[42,3,3,3,6,[[1011,1,1,3,4],[1012,2,2,4,6]]],[43,2,2,6,8,[[1037,2,2,6,8]]],[47,1,1,8,9,[[1092,1,1,8,9]]],[48,1,1,9,10,[[1098,1,1,9,10]]],[50,1,1,10,11,[[1110,1,1,10,11]]],[51,2,2,11,13,[[1111,1,1,11,12],[1112,1,1,12,13]]],[52,1,1,13,14,[[1117,1,1,13,14]]],[54,1,1,14,15,[[1126,1,1,14,15]]],[57,3,3,15,18,[[1143,2,2,15,17],[1145,1,1,17,18]]],[65,3,3,18,21,[[1168,1,1,18,19],[1169,1,1,19,20],[1184,1,1,20,21]]]],[23681,24518,25683,26719,26730,26747,27657,27661,29091,29240,29560,29563,29579,29666,29835,30187,30194,30248,30722,30749,30998]]],["Remember",[8,8,[[41,1,1,0,1,[[989,1,1,0,1]]],[42,1,1,1,2,[[1011,1,1,1,2]]],[50,1,1,2,3,[[1110,1,1,2,3]]],[52,1,1,3,4,[[1117,1,1,3,4]]],[54,1,1,4,5,[[1126,1,1,4,5]]],[57,1,1,5,6,[[1145,1,1,5,6]]],[65,2,2,6,8,[[1168,1,1,6,7],[1169,1,1,7,8]]]],[25683,26719,29560,29666,29835,30248,30722,30749]]],["Remembering",[1,1,[[51,1,1,0,1,[[1111,1,1,0,1]]]],[29563]]],["mention",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30194]]],["mindful",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30187]]],["remember",[8,8,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[42,1,1,2,3,[[1012,1,1,2,3]]],[43,2,2,3,5,[[1037,2,2,3,5]]],[47,1,1,5,6,[[1092,1,1,5,6]]],[48,1,1,6,7,[[1098,1,1,6,7]]],[51,1,1,7,8,[[1112,1,1,7,8]]]],[23681,24518,26730,27657,27661,29091,29240,29579]]],["remembered",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30998]]],["remembereth",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26747]]]]},{"k":"G3422","v":[["memorial",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]]],[24067,24763,27263]]]]},{"k":"G3423","v":[["espoused",[3,3,[[39,1,1,0,1,[[929,1,1,0,1]]],[41,2,2,1,3,[[973,1,1,1,2],[974,1,1,2,3]]]],[23162,24920,24978]]]]},{"k":"G3424","v":[["speech",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24495]]]]},{"k":"G3425","v":[["hardly",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25340]]]]},{"k":"G3426","v":[["bushel",[3,3,[[39,1,1,0,1,[[933,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]]],[23249,24344,25438]]]]},{"k":"G3427","v":[["*",[240,227,[[39,31,31,0,31,[[930,1,1,0,1],[932,1,1,1,2],[935,2,2,2,4],[936,2,2,4,6],[937,1,1,6,7],[939,1,1,7,8],[942,2,2,8,10],[943,3,3,10,13],[944,1,1,13,14],[945,1,1,14,15],[946,1,1,15,16],[947,2,2,16,18],[948,2,2,18,20],[949,2,2,20,22],[950,1,1,22,23],[953,4,4,23,27],[954,2,2,27,29],[955,1,1,29,30],[956,1,1,30,31]]],[40,9,9,31,40,[[958,1,1,31,32],[961,1,1,32,33],[962,1,1,33,34],[964,2,2,34,36],[966,1,1,36,37],[967,2,2,37,39],[968,1,1,39,40]]],[41,28,27,40,67,[[973,4,4,40,44],[976,1,1,44,45],[977,1,1,45,46],[979,1,1,46,47],[981,5,4,47,51],[982,2,2,51,53],[983,2,2,53,55],[987,3,3,55,58],[989,1,1,58,59],[990,3,3,59,62],[992,2,2,62,64],[994,2,2,64,66],[995,1,1,66,67]]],[42,41,38,67,105,[[997,2,2,67,69],[999,1,1,69,70],[1000,6,6,70,76],[1001,2,2,76,78],[1002,2,2,78,80],[1004,2,2,80,82],[1005,1,1,82,83],[1006,3,3,83,86],[1008,2,2,86,88],[1009,2,1,88,89],[1010,3,2,89,91],[1013,10,9,91,100],[1014,2,2,100,102],[1016,1,1,102,103],[1017,2,2,103,105]]],[43,36,35,105,140,[[1018,1,1,105,106],[1019,1,1,106,107],[1020,1,1,107,108],[1022,1,1,108,109],[1024,4,3,109,112],[1026,1,1,112,113],[1028,3,3,113,116],[1029,1,1,116,117],[1030,1,1,117,118],[1035,1,1,118,119],[1037,2,2,119,121],[1038,2,2,121,123],[1039,9,9,123,132],[1040,2,2,132,134],[1041,1,1,134,135],[1042,2,2,135,137],[1044,3,3,137,140]]],[44,9,9,140,149,[[1052,3,3,140,143],[1054,3,3,143,146],[1057,1,1,146,147],[1060,2,2,147,149]]],[45,15,11,149,160,[[1062,1,1,149,150],[1064,1,1,150,151],[1066,1,1,151,152],[1067,2,1,152,153],[1068,1,1,153,154],[1070,5,3,154,157],[1071,2,1,157,158],[1076,1,1,158,159],[1077,1,1,159,160]]],[46,11,10,160,170,[[1079,1,1,160,161],[1083,2,2,161,163],[1084,2,1,163,164],[1086,1,1,164,165],[1089,4,4,165,169],[1090,1,1,169,170]]],[47,5,5,170,175,[[1092,2,2,170,172],[1094,2,2,172,174],[1096,1,1,174,175]]],[48,4,4,175,179,[[1099,3,3,175,178],[1102,1,1,178,179]]],[49,7,7,179,186,[[1103,2,2,179,181],[1104,1,1,181,182],[1105,1,1,182,183],[1106,3,3,183,186]]],[50,2,2,186,188,[[1107,1,1,186,187],[1110,1,1,187,188]]],[54,7,6,188,194,[[1127,1,1,188,189],[1128,6,5,189,194]]],[56,3,3,194,197,[[1132,3,3,194,197]]],[57,5,5,197,202,[[1133,1,1,197,198],[1134,1,1,198,199],[1140,1,1,199,200],[1142,1,1,200,201],[1145,1,1,201,202]]],[58,1,1,202,203,[[1147,1,1,202,203]]],[60,1,1,203,204,[[1156,1,1,203,204]]],[65,25,23,204,227,[[1167,1,1,204,205],[1171,1,1,205,206],[1173,2,2,206,208],[1176,4,3,208,211],[1177,1,1,211,212],[1180,1,1,212,213],[1183,3,3,213,216],[1185,3,2,216,218],[1187,4,4,218,222],[1188,5,5,222,227]]]],[23177,23218,23337,23338,23366,23367,23388,23486,23605,23615,23641,23658,23665,23696,23717,23755,23783,23790,23805,23807,23828,23850,23891,24028,24030,24043,24050,24069,24107,24139,24213,24274,24373,24432,24502,24534,24609,24669,24670,24688,24918,24931,24936,24942,25086,25134,25240,25324,25339,25360,25362,25385,25403,25410,25412,25594,25597,25600,25659,25693,25701,25710,25782,25803,25893,25932,25949,26077,26087,26148,26163,26166,26171,26177,26185,26195,26221,26246,26294,26296,26426,26427,26451,26508,26510,26518,26629,26630,26666,26679,26699,26763,26765,26766,26767,26768,26770,26771,26781,26783,26794,26796,26882,26917,26920,26931,26977,27002,27067,27123,27158,27165,27231,27314,27316,27319,27345,27364,27567,27645,27648,27701,27703,27709,27710,27711,27713,27715,27717,27721,27722,27731,27753,27764,27780,27820,27823,27876,27878,27880,28101,28104,28109,28156,28157,28174,28248,28318,28333,28374,28420,28466,28479,28488,28555,28556,28558,28590,28750,28785,28836,28914,28916,28920,28957,29023,29029,29031,29035,29053,29087,29090,29146,29152,29205,29253,29254,29258,29356,29380,29383,29409,29428,29445,29457,29458,29490,29553,29864,29878,29881,29884,29886,29887,29951,29957,29960,29968,29990,30102,30138,30247,30311,30493,30714,30784,30823,30824,30865,30870,30872,30873,30939,30976,30982,30990,31026,31027,31058,31059,31060,31063,31081,31086,31088,31089,31090]]],["+",[11,11,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,3,3,2,5,[[999,1,1,2,3],[1000,1,1,3,4],[1010,1,1,4,5]]],[43,4,4,5,9,[[1030,1,1,5,6],[1039,2,2,6,8],[1041,1,1,8,9]]],[44,1,1,9,10,[[1054,1,1,9,10]]],[45,1,1,10,11,[[1066,1,1,10,11]]]],[23177,25412,26148,26177,26699,27364,27709,27731,27780,28156,28466]]],["I",[8,8,[[43,5,5,0,5,[[1020,1,1,0,1],[1035,1,1,1,2],[1038,1,1,2,3],[1039,2,2,3,5]]],[44,2,2,5,7,[[1052,1,1,5,6],[1054,1,1,6,7]]],[45,1,1,7,8,[[1070,1,1,7,8]]]],[27002,27567,27701,27710,27721,28101,28157,28556]]],["My",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24373]]],["he",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23388]]],["me",[208,198,[[39,29,29,0,29,[[932,1,1,0,1],[935,2,2,1,3],[936,2,2,3,5],[939,1,1,5,6],[942,2,2,6,8],[943,3,3,8,11],[944,1,1,11,12],[945,1,1,12,13],[946,1,1,13,14],[947,2,2,14,16],[948,2,2,16,18],[949,2,2,18,20],[950,1,1,20,21],[953,4,4,21,25],[954,2,2,25,27],[955,1,1,27,28],[956,1,1,28,29]]],[40,8,8,29,37,[[958,1,1,29,30],[962,1,1,30,31],[964,2,2,31,33],[966,1,1,33,34],[967,2,2,34,36],[968,1,1,36,37]]],[41,26,25,37,62,[[973,4,4,37,41],[976,1,1,41,42],[977,1,1,42,43],[979,1,1,43,44],[981,4,3,44,47],[982,2,2,47,49],[983,1,1,49,50],[987,3,3,50,53],[989,1,1,53,54],[990,3,3,54,57],[992,2,2,57,59],[994,2,2,59,61],[995,1,1,61,62]]],[42,38,35,62,97,[[997,2,2,62,64],[1000,5,5,64,69],[1001,2,2,69,71],[1002,2,2,71,73],[1004,2,2,73,75],[1005,1,1,75,76],[1006,3,3,76,79],[1008,2,2,79,81],[1009,2,1,81,82],[1010,2,1,82,83],[1013,10,9,83,92],[1014,2,2,92,94],[1016,1,1,94,95],[1017,2,2,95,97]]],[43,26,26,97,123,[[1018,1,1,97,98],[1019,1,1,98,99],[1022,1,1,99,100],[1024,3,3,100,103],[1026,1,1,103,104],[1028,3,3,104,107],[1029,1,1,107,108],[1037,2,2,108,110],[1038,1,1,110,111],[1039,5,5,111,116],[1040,2,2,116,118],[1042,2,2,118,120],[1044,3,3,120,123]]],[44,6,6,123,129,[[1052,2,2,123,125],[1054,1,1,125,126],[1057,1,1,126,127],[1060,2,2,127,129]]],[45,12,9,129,138,[[1062,1,1,129,130],[1064,1,1,130,131],[1067,2,1,131,132],[1068,1,1,132,133],[1070,3,2,133,135],[1071,2,1,135,136],[1076,1,1,136,137],[1077,1,1,137,138]]],[46,7,7,138,145,[[1079,1,1,138,139],[1086,1,1,139,140],[1089,4,4,140,144],[1090,1,1,144,145]]],[47,5,5,145,150,[[1092,2,2,145,147],[1094,2,2,147,149],[1096,1,1,149,150]]],[48,4,4,150,154,[[1099,3,3,150,153],[1102,1,1,153,154]]],[49,4,4,154,158,[[1104,1,1,154,155],[1105,1,1,155,156],[1106,2,2,156,158]]],[50,2,2,158,160,[[1107,1,1,158,159],[1110,1,1,159,160]]],[54,7,6,160,166,[[1127,1,1,160,161],[1128,6,5,161,166]]],[56,3,3,166,169,[[1132,3,3,166,169]]],[57,5,5,169,174,[[1133,1,1,169,170],[1134,1,1,170,171],[1140,1,1,171,172],[1142,1,1,172,173],[1145,1,1,173,174]]],[58,1,1,174,175,[[1147,1,1,174,175]]],[60,1,1,175,176,[[1156,1,1,175,176]]],[65,24,22,176,198,[[1167,1,1,176,177],[1171,1,1,177,178],[1173,2,2,178,180],[1176,4,3,180,183],[1177,1,1,183,184],[1180,1,1,184,185],[1183,3,3,185,188],[1185,3,2,188,190],[1187,3,3,190,193],[1188,5,5,193,198]]]],[23218,23337,23338,23366,23367,23486,23605,23615,23641,23658,23665,23696,23717,23755,23783,23790,23805,23807,23828,23850,23891,24028,24030,24043,24050,24069,24107,24139,24213,24274,24432,24502,24534,24609,24669,24670,24688,24918,24931,24936,24942,25086,25134,25240,25324,25360,25362,25385,25403,25410,25594,25597,25600,25659,25693,25701,25710,25782,25803,25893,25932,25949,26077,26087,26163,26166,26171,26185,26195,26221,26246,26294,26296,26426,26427,26451,26508,26510,26518,26629,26630,26666,26679,26763,26765,26766,26767,26768,26770,26771,26781,26783,26794,26796,26882,26917,26920,26931,26977,27067,27123,27158,27165,27231,27314,27316,27319,27345,27645,27648,27703,27711,27713,27715,27717,27722,27753,27764,27820,27823,27876,27878,27880,28104,28109,28174,28248,28318,28333,28374,28420,28479,28488,28555,28556,28590,28750,28785,28836,28957,29023,29029,29031,29035,29053,29087,29090,29146,29152,29205,29253,29254,29258,29356,29409,29428,29445,29457,29490,29553,29864,29878,29881,29884,29886,29887,29951,29957,29960,29968,29990,30102,30138,30247,30311,30493,30714,30784,30823,30824,30865,30870,30872,30873,30939,30976,30982,30990,31026,31027,31058,31059,31063,31081,31086,31088,31089,31090]]],["mine",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25339]]],["my",[10,9,[[43,1,1,0,1,[[1024,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[46,4,3,2,5,[[1083,2,2,2,4],[1084,2,1,4,5]]],[49,3,3,5,8,[[1103,2,2,5,7],[1106,1,1,7,8]]],[65,1,1,8,9,[[1187,1,1,8,9]]]],[27165,28558,28914,28916,28920,29380,29383,29458,31060]]]]},{"k":"G3428","v":[["*",[7,6,[[39,2,2,0,2,[[940,1,1,0,1],[944,1,1,1,2]]],[40,1,1,2,3,[[964,1,1,2,3]]],[44,2,1,3,4,[[1052,2,1,3,4]]],[58,1,1,4,5,[[1149,1,1,4,5]]],[60,1,1,5,6,[[1157,1,1,5,6]]]],[23528,23676,24538,28094,30341,30514]]],["adulteress",[2,1,[[44,2,1,0,1,[[1052,2,1,0,1]]]],[28094]]],["adulteresses",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30341]]],["adulterous",[3,3,[[39,2,2,0,2,[[940,1,1,0,1],[944,1,1,1,2]]],[40,1,1,2,3,[[964,1,1,2,3]]]],[23528,23676,24538]]],["adultery",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30514]]]]},{"k":"G3429","v":[["adultery",[6,4,[[39,4,2,0,2,[[933,2,1,0,1],[947,2,1,1,2]]],[40,2,2,2,4,[[966,2,2,2,4]]]],[23266,23771,24599,24600]]]]},{"k":"G3430","v":[["*",[4,4,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]]],[23652,24484,26384,29181]]],["Adultery",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29181]]],["adulteries",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[23652,24484]]],["adultery",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26384]]]]},{"k":"G3431","v":[["*",[14,11,[[39,3,3,0,3,[[933,2,2,0,2],[947,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,3,2,4,6,[[988,2,1,4,5],[990,1,1,5,6]]],[42,1,1,6,7,[[1004,1,1,6,7]]],[44,3,2,7,9,[[1047,2,1,7,8],[1058,1,1,8,9]]],[58,2,1,9,10,[[1147,2,1,9,10]]],[65,1,1,10,11,[[1168,1,1,10,11]]]],[23261,23262,23780,24607,25638,25708,26385,27984,28275,30304,30739]]],["+",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30304]]],["adultery",[13,11,[[39,3,3,0,3,[[933,2,2,0,2],[947,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,3,2,4,6,[[988,2,1,4,5],[990,1,1,5,6]]],[42,1,1,6,7,[[1004,1,1,6,7]]],[44,3,2,7,9,[[1047,2,1,7,8],[1058,1,1,8,9]]],[58,1,1,9,10,[[1147,1,1,9,10]]],[65,1,1,10,11,[[1168,1,1,10,11]]]],[23261,23262,23780,24607,25638,25708,26385,27984,28275,30304,30739]]]]},{"k":"G3432","v":[["adulterers",[4,4,[[41,1,1,0,1,[[990,1,1,0,1]]],[45,1,1,1,2,[[1067,1,1,1,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]]],[25699,28476,30245,30341]]]]},{"k":"G3433","v":[["*",[6,6,[[43,4,4,0,4,[[1031,1,1,0,1],[1044,3,3,1,4]]],[44,1,1,4,5,[[1050,1,1,4,5]]],[59,1,1,5,6,[[1154,1,1,5,6]]]],[27432,27862,27863,27871,28054,30464]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27871]]],["hardly",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27863]]],["scarce",[2,2,[[43,2,2,0,2,[[1031,1,1,0,1],[1044,1,1,1,2]]]],[27432,27862]]],["scarcely",[2,2,[[44,1,1,0,1,[[1050,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[28054,30464]]]]},{"k":"G3434","v":[["Moloch",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27159]]]]},{"k":"G3435","v":[["defiled",[3,3,[[45,1,1,0,1,[[1069,1,1,0,1]]],[65,2,2,1,3,[[1169,1,1,1,2],[1180,1,1,2,3]]]],[28534,30750,30930]]]]},{"k":"G3436","v":[["filthiness",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28917]]]]},{"k":"G3437","v":[["quarrel",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29530]]]]},{"k":"G3438","v":[["*",[2,2,[[42,2,2,0,2,[[1010,2,2,0,2]]]],[26670,26691]]],["abode",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26691]]],["mansions",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26670]]]]},{"k":"G3439","v":[["*",[9,9,[[41,3,3,0,3,[[979,1,1,0,1],[980,1,1,1,2],[981,1,1,2,3]]],[42,4,4,3,7,[[997,2,2,3,5],[999,2,2,5,7]]],[57,1,1,7,8,[[1143,1,1,7,8]]],[61,1,1,8,9,[[1162,1,1,8,9]]]],[25207,25287,25339,26058,26062,26136,26138,30189,30612]]],["begotten",[6,6,[[42,4,4,0,4,[[997,2,2,0,2],[999,2,2,2,4]]],[57,1,1,4,5,[[1143,1,1,4,5]]],[61,1,1,5,6,[[1162,1,1,5,6]]]],[26058,26062,26136,26138,30189,30612]]],["child",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25339]]],["only",[2,2,[[41,2,2,0,2,[[979,1,1,0,1],[980,1,1,1,2]]]],[25207,25287]]]]},{"k":"G3440","v":[["*",[68,68,[[39,7,7,0,7,[[933,1,1,0,1],[936,1,1,1,2],[937,1,1,2,3],[938,1,1,3,4],[942,1,1,4,5],[949,2,2,5,7]]],[40,3,3,7,10,[[961,1,1,7,8],[962,1,1,8,9],[965,1,1,9,10]]],[41,2,2,10,12,[[980,1,1,10,11],[982,1,1,11,12]]],[42,5,5,12,17,[[1001,1,1,12,13],[1007,1,1,13,14],[1008,1,1,14,15],[1009,1,1,15,16],[1013,1,1,16,17]]],[43,8,8,17,25,[[1025,1,1,17,18],[1028,1,1,18,19],[1035,1,1,19,20],[1036,2,2,20,22],[1038,1,1,22,23],[1043,1,1,23,24],[1044,1,1,24,25]]],[44,11,11,25,36,[[1046,1,1,25,26],[1048,1,1,26,27],[1049,3,3,27,30],[1050,2,2,30,32],[1053,1,1,32,33],[1054,2,2,33,35],[1058,1,1,35,36]]],[45,2,2,36,38,[[1068,1,1,36,37],[1076,1,1,37,38]]],[46,5,5,38,43,[[1084,1,1,38,39],[1085,3,3,39,42],[1086,1,1,42,43]]],[47,6,6,43,49,[[1091,1,1,43,44],[1092,1,1,44,45],[1093,1,1,45,46],[1094,1,1,46,47],[1095,1,1,47,48],[1096,1,1,48,49]]],[48,1,1,49,50,[[1097,1,1,49,50]]],[49,4,4,50,54,[[1103,2,2,50,52],[1104,2,2,52,54]]],[51,3,3,54,57,[[1111,2,2,54,56],[1112,1,1,56,57]]],[52,1,1,57,58,[[1117,1,1,57,58]]],[53,1,1,58,59,[[1123,1,1,58,59]]],[54,2,2,59,61,[[1126,1,1,59,60],[1128,1,1,60,61]]],[57,2,2,61,63,[[1141,1,1,61,62],[1144,1,1,62,63]]],[58,2,2,63,65,[[1146,1,1,63,64],[1147,1,1,64,65]]],[59,1,1,65,66,[[1152,1,1,65,66]]],[61,2,2,66,68,[[1160,1,1,66,67],[1163,1,1,67,68]]]],[23281,23353,23400,23459,23633,23845,23847,24400,24415,24546,25295,25403,26228,26575,26589,26639,26779,27192,27326,27582,27611,27612,27677,27852,27865,27962,28020,28034,28038,28045,28050,28058,28139,28165,28179,28271,28526,28737,28923,28942,28951,28953,28968,29080,29091,29104,29149,29175,29200,29227,29388,29390,29403,29418,29565,29568,29578,29668,29776,29847,29878,30115,30238,30288,30317,30417,30552,30630]]],["Only",[2,2,[[47,1,1,0,1,[[1092,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[29091,29388]]],["alone",[4,4,[[41,1,1,0,1,[[982,1,1,0,1]]],[42,1,1,1,2,[[1013,1,1,1,2]]],[43,1,1,2,3,[[1036,1,1,2,3]]],[44,1,1,3,4,[[1049,1,1,3,4]]]],[25403,26779,27611,28045]]],["but",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23400]]],["only",[61,61,[[39,6,6,0,6,[[933,1,1,0,1],[936,1,1,1,2],[938,1,1,2,3],[942,1,1,3,4],[949,2,2,4,6]]],[40,3,3,6,9,[[961,1,1,6,7],[962,1,1,7,8],[965,1,1,8,9]]],[41,1,1,9,10,[[980,1,1,9,10]]],[42,4,4,10,14,[[1001,1,1,10,11],[1007,1,1,11,12],[1008,1,1,12,13],[1009,1,1,13,14]]],[43,7,7,14,21,[[1025,1,1,14,15],[1028,1,1,15,16],[1035,1,1,16,17],[1036,1,1,17,18],[1038,1,1,18,19],[1043,1,1,19,20],[1044,1,1,20,21]]],[44,10,10,21,31,[[1046,1,1,21,22],[1048,1,1,22,23],[1049,2,2,23,25],[1050,2,2,25,27],[1053,1,1,27,28],[1054,2,2,28,30],[1058,1,1,30,31]]],[45,2,2,31,33,[[1068,1,1,31,32],[1076,1,1,32,33]]],[46,5,5,33,38,[[1084,1,1,33,34],[1085,3,3,34,37],[1086,1,1,37,38]]],[47,5,5,38,43,[[1091,1,1,38,39],[1093,1,1,39,40],[1094,1,1,40,41],[1095,1,1,41,42],[1096,1,1,42,43]]],[48,1,1,43,44,[[1097,1,1,43,44]]],[49,3,3,44,47,[[1103,1,1,44,45],[1104,2,2,45,47]]],[51,3,3,47,50,[[1111,2,2,47,49],[1112,1,1,49,50]]],[52,1,1,50,51,[[1117,1,1,50,51]]],[53,1,1,51,52,[[1123,1,1,51,52]]],[54,2,2,52,54,[[1126,1,1,52,53],[1128,1,1,53,54]]],[57,2,2,54,56,[[1141,1,1,54,55],[1144,1,1,55,56]]],[58,2,2,56,58,[[1146,1,1,56,57],[1147,1,1,57,58]]],[59,1,1,58,59,[[1152,1,1,58,59]]],[61,2,2,59,61,[[1160,1,1,59,60],[1163,1,1,60,61]]]],[23281,23353,23459,23633,23845,23847,24400,24415,24546,25295,26228,26575,26589,26639,27192,27326,27582,27612,27677,27852,27865,27962,28020,28034,28038,28050,28058,28139,28165,28179,28271,28526,28737,28923,28942,28951,28953,28968,29080,29104,29149,29175,29200,29227,29390,29403,29418,29565,29568,29578,29668,29776,29847,29878,30115,30238,30288,30317,30417,30552,30630]]]]},{"k":"G3441","v":[["*",[45,44,[[39,7,7,0,7,[[932,2,2,0,2],[940,1,1,2,3],[942,1,1,3,4],[945,1,1,4,5],[946,1,1,5,6],[952,1,1,6,7]]],[40,2,2,7,9,[[962,1,1,7,8],[965,1,1,8,9]]],[41,7,7,9,16,[[976,2,2,9,11],[977,1,1,11,12],[978,1,1,12,13],[981,1,1,13,14],[996,2,2,14,16]]],[42,10,9,16,25,[[1001,1,1,16,17],[1002,2,2,17,19],[1004,3,3,19,22],[1008,1,1,22,23],[1012,2,1,23,24],[1013,1,1,24,25]]],[44,3,3,25,28,[[1056,1,1,25,26],[1061,2,2,26,28]]],[45,2,2,28,30,[[1070,1,1,28,29],[1075,1,1,29,30]]],[47,1,1,30,31,[[1096,1,1,30,31]]],[49,1,1,31,32,[[1106,1,1,31,32]]],[50,1,1,32,33,[[1110,1,1,32,33]]],[51,1,1,33,34,[[1113,1,1,33,34]]],[53,3,3,34,37,[[1119,1,1,34,35],[1124,2,2,35,37]]],[54,1,1,37,38,[[1128,1,1,37,38]]],[57,1,1,38,39,[[1141,1,1,38,39]]],[62,1,1,39,40,[[1164,1,1,39,40]]],[64,2,2,40,42,[[1166,2,2,40,42]]],[65,2,2,42,44,[[1175,1,1,42,43],[1181,1,1,43,44]]]],[23213,23219,23493,23620,23708,23742,23993,24454,24540,25067,25071,25128,25150,25337,26003,26009,26254,26272,26279,26390,26397,26410,26604,26758,26762,28212,28340,28363,28546,28714,29192,29457,29553,29591,29713,29803,29804,29881,30112,30646,30676,30697,30844,30950]]],["+",[2,2,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]]],[24540,26009]]],["Only",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29881]]],["alone",[20,19,[[39,3,3,0,3,[[932,1,1,0,1],[942,1,1,1,2],[946,1,1,2,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[41,4,4,4,8,[[976,1,1,4,5],[977,1,1,5,6],[978,1,1,6,7],[981,1,1,7,8]]],[42,8,7,8,15,[[1002,2,2,8,10],[1004,3,3,10,13],[1008,1,1,13,14],[1012,2,1,14,15]]],[44,1,1,15,16,[[1056,1,1,15,16]]],[47,1,1,16,17,[[1096,1,1,16,17]]],[51,1,1,17,18,[[1113,1,1,17,18]]],[57,1,1,18,19,[[1141,1,1,18,19]]]],[23213,23620,23742,24454,25067,25128,25150,25337,26272,26279,26390,26397,26410,26604,26758,28212,29192,29591,30112]]],["only",[21,21,[[39,4,4,0,4,[[932,1,1,0,1],[940,1,1,1,2],[945,1,1,2,3],[952,1,1,3,4]]],[41,1,1,4,5,[[976,1,1,4,5]]],[42,2,2,5,7,[[1001,1,1,5,6],[1013,1,1,6,7]]],[44,2,2,7,9,[[1061,2,2,7,9]]],[45,2,2,9,11,[[1070,1,1,9,10],[1075,1,1,10,11]]],[49,1,1,11,12,[[1106,1,1,11,12]]],[50,1,1,12,13,[[1110,1,1,12,13]]],[53,3,3,13,16,[[1119,1,1,13,14],[1124,2,2,14,16]]],[62,1,1,16,17,[[1164,1,1,16,17]]],[64,2,2,17,19,[[1166,2,2,17,19]]],[65,2,2,19,21,[[1175,1,1,19,20],[1181,1,1,20,21]]]],[23219,23493,23708,23993,25071,26254,26762,28340,28363,28546,28714,29457,29553,29713,29803,29804,30646,30676,30697,30844,30950]]],["themselves",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26003]]]]},{"k":"G3442","v":[["eye",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]]],[23736,24585]]]]},{"k":"G3443","v":[["desolate",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29768]]]]},{"k":"G3444","v":[["form",[3,3,[[40,1,1,0,1,[[972,1,1,0,1]]],[49,2,2,1,3,[[1104,2,2,1,3]]]],[24885,29397,29398]]]]},{"k":"G3445","v":[["formed",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29150]]]]},{"k":"G3446","v":[["form",[2,2,[[44,1,1,0,1,[[1047,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[27982,29858]]]]},{"k":"G3447","v":[["calf",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27157]]]]},{"k":"G3448","v":[["*",[6,6,[[41,3,3,0,3,[[987,3,3,0,3]]],[57,2,2,3,5,[[1141,2,2,3,5]]],[65,1,1,5,6,[[1170,1,1,5,6]]]],[25611,25615,25618,30117,30124,30775]]],["calf",[4,4,[[41,3,3,0,3,[[987,3,3,0,3]]],[65,1,1,3,4,[[1170,1,1,3,4]]]],[25611,25615,25618,30775]]],["calves",[2,2,[[57,2,2,0,2,[[1141,2,2,0,2]]]],[30117,30124]]]]},{"k":"G3449","v":[["*",[3,3,[[46,1,1,0,1,[[1088,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]],[52,1,1,2,3,[[1118,1,1,2,3]]]],[29016,29579,29686]]],["painfulness",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29016]]],["travail",[2,2,[[51,1,1,0,1,[[1112,1,1,0,1]]],[52,1,1,1,2,[[1118,1,1,1,2]]]],[29579,29686]]]]},{"k":"G3450","v":[["*",[586,471,[[39,90,71,0,71,[[930,2,2,0,2],[931,3,2,2,4],[932,1,1,4,5],[935,3,3,5,8],[936,5,4,8,12],[937,1,1,12,13],[938,7,5,13,18],[939,5,4,18,22],[940,10,5,22,27],[941,2,2,27,29],[943,2,2,29,31],[944,5,4,31,35],[945,2,2,35,37],[946,5,5,37,42],[947,2,2,42,44],[948,5,2,44,46],[949,3,3,46,49],[950,4,2,49,51],[952,5,5,51,56],[953,3,3,56,59],[954,10,9,59,68],[955,4,2,68,70],[956,1,1,70,71]]],[40,42,35,71,106,[[957,5,4,71,75],[959,6,3,75,78],[961,3,3,78,81],[962,1,1,81,82],[963,1,1,82,83],[964,2,2,83,85],[965,6,6,85,91],[966,3,2,91,93],[967,1,1,93,94],[968,3,2,94,96],[969,3,3,96,99],[970,5,5,99,104],[971,2,1,104,105],[972,1,1,105,106]]],[41,93,80,106,186,[[973,9,7,106,113],[974,2,2,113,115],[975,2,2,115,117],[976,2,2,117,119],[978,1,1,119,120],[979,9,7,120,127],[980,5,3,127,130],[981,6,6,130,136],[982,3,3,136,139],[983,3,3,139,142],[984,8,6,142,148],[986,6,5,148,153],[987,5,5,153,158],[988,4,4,158,162],[990,2,2,162,164],[991,5,4,164,168],[992,3,2,168,170],[993,4,4,170,174],[994,9,8,174,182],[995,2,2,182,184],[996,3,2,184,186]]],[42,110,86,186,272,[[997,8,3,186,189],[998,2,2,189,191],[1000,1,1,191,192],[1001,4,4,192,196],[1002,9,6,196,202],[1004,11,9,202,211],[1005,3,3,211,214],[1006,11,10,214,224],[1007,4,4,224,228],[1008,4,4,228,232],[1009,4,4,232,236],[1010,14,11,236,247],[1011,13,11,247,258],[1012,4,4,258,262],[1014,1,1,262,263],[1015,2,1,263,264],[1016,12,5,264,269],[1017,3,3,269,272]]],[43,49,38,272,310,[[1018,1,1,272,273],[1019,13,7,273,280],[1024,5,4,280,284],[1026,2,2,284,286],[1027,2,1,286,287],[1028,1,1,287,288],[1030,3,2,288,290],[1032,3,3,290,293],[1033,1,1,293,294],[1037,5,4,294,298],[1038,1,1,298,299],[1039,2,2,299,301],[1041,3,3,301,304],[1042,2,2,304,306],[1043,4,3,306,309],[1045,1,1,309,310]]],[44,37,28,310,338,[[1046,4,2,310,312],[1047,1,1,312,313],[1052,5,3,313,316],[1054,9,6,316,322],[1055,1,1,322,323],[1056,3,3,323,326],[1060,2,2,326,328],[1061,12,10,328,338]]],[45,30,25,338,363,[[1062,2,2,338,340],[1063,2,1,340,341],[1065,5,4,341,345],[1069,2,1,345,346],[1070,4,4,346,350],[1071,2,2,350,352],[1072,4,4,352,356],[1074,2,1,356,357],[1075,5,4,357,361],[1076,1,1,361,362],[1077,1,1,362,363]]],[46,12,8,363,371,[[1079,2,1,363,364],[1088,5,4,364,368],[1089,5,3,368,371]]],[47,8,6,371,377,[[1091,3,2,371,373],[1094,4,3,373,376],[1096,1,1,376,377]]],[48,6,6,377,383,[[1097,1,1,377,378],[1099,3,3,378,381],[1102,2,2,381,383]]],[49,24,18,383,401,[[1103,10,8,383,391],[1104,6,3,391,394],[1105,3,3,394,397],[1106,5,4,397,401]]],[50,5,4,401,405,[[1107,2,1,401,402],[1108,1,1,402,403],[1110,2,2,403,405]]],[54,8,8,405,413,[[1125,4,4,405,409],[1126,2,2,409,411],[1127,1,1,411,412],[1128,1,1,412,413]]],[56,6,5,413,418,[[1132,6,5,413,418]]],[57,18,15,418,433,[[1133,2,2,418,420],[1134,1,1,420,421],[1135,4,3,421,424],[1136,3,2,424,426],[1137,1,1,426,427],[1140,3,2,427,429],[1142,3,3,429,432],[1144,1,1,432,433]]],[58,14,13,433,446,[[1146,3,3,433,436],[1147,6,5,436,441],[1148,3,3,441,444],[1150,2,2,444,446]]],[59,1,1,446,447,[[1155,1,1,446,447]]],[60,2,2,447,449,[[1156,2,2,447,449]]],[61,3,3,449,452,[[1160,1,1,449,450],[1161,2,2,450,452]]],[65,28,19,452,471,[[1167,2,2,452,454],[1168,7,5,454,459],[1169,13,7,459,466],[1176,2,1,466,467],[1177,1,1,467,468],[1184,1,1,468,469],[1188,2,2,469,471]]]],[23175,23184,23203,23209,23228,23337,23340,23342,23351,23353,23354,23366,23397,23439,23449,23450,23454,23455,23469,23486,23488,23489,23507,23533,23537,23538,23539,23569,23574,23646,23655,23689,23690,23695,23696,23705,23715,23732,23737,23746,23748,23762,23782,23791,23813,23815,23839,23854,23863,23876,23916,23962,23966,23992,23993,24005,24035,24042,24048,24066,24072,24080,24082,24083,24092,24093,24096,24107,24164,24175,24205,24217,24222,24226,24232,24321,24322,24323,24387,24394,24395,24430,24477,24533,24534,24545,24555,24562,24575,24577,24579,24608,24628,24657,24679,24709,24723,24730,24748,24762,24768,24776,24778,24788,24860,24890,24911,24913,24918,24936,24937,24939,24940,25003,25022,25041,25047,25070,25071,25193,25201,25202,25203,25222,25239,25240,25241,25266,25290,25291,25324,25336,25339,25349,25360,25362,25385,25392,25403,25411,25412,25429,25463,25472,25476,25477,25478,25504,25576,25577,25579,25580,25586,25594,25605,25606,25612,25617,25623,25625,25644,25647,25691,25709,25739,25754,25758,25777,25792,25821,25834,25838,25843,25859,25875,25883,25884,25892,25893,25894,25906,25917,25977,25981,26030,26040,26059,26071,26074,26099,26111,26205,26227,26234,26241,26253,26289,26308,26311,26312,26313,26322,26395,26400,26409,26412,26419,26430,26431,26433,26435,26451,26455,26470,26496,26497,26498,26499,26506,26508,26509,26510,26513,26518,26544,26555,26564,26565,26587,26607,26627,26628,26636,26638,26639,26667,26670,26675,26680,26681,26682,26688,26689,26691,26692,26694,26696,26700,26706,26707,26709,26713,26714,26715,26719,26720,26722,26723,26736,26749,26750,26752,26822,26849,26880,26884,26892,26894,26895,26913,26914,26915,26927,26963,26966,26967,26974,26975,26976,26983,27150,27165,27166,27175,27231,27232,27289,27315,27384,27395,27449,27455,27459,27498,27650,27651,27655,27660,27677,27705,27721,27782,27786,27789,27807,27811,27826,27827,27852,27918,27938,27939,27978,28095,28109,28114,28156,28157,28158,28172,28180,28181,28209,28212,28222,28223,28317,28334,28339,28340,28341,28343,28344,28345,28347,28357,28359,28361,28367,28374,28398,28447,28449,28450,28451,28540,28541,28555,28558,28567,28581,28596,28601,28602,28624,28633,28668,28692,28696,28697,28699,28776,28800,28837,28990,28998,29017,29019,29027,29031,29043,29071,29072,29145,29150,29151,29205,29222,29255,29264,29265,29347,29356,29364,29365,29368,29369,29374,29375,29377,29381,29393,29403,29416,29422,29429,29438,29443,29445,29456,29461,29489,29495,29552,29560,29812,29815,29821,29825,29828,29835,29863,29886,29942,29948,29958,29961,29962,29968,29976,29989,30004,30005,30006,30017,30019,30035,30101,30102,30149,30167,30171,30217,30268,30282,30285,30294,30296,30298,30307,30311,30320,30329,30331,30364,30366,30478,30493,30496,30551,30592,30597,30707,30717,30720,30730,30733,30743,30744,30751,30754,30756,30758,30762,30766,30767,30871,30875,30997,31092,31096]]],["+",[14,13,[[39,3,3,0,3,[[938,1,1,0,1],[947,1,1,1,2],[952,1,1,2,3]]],[40,1,1,3,4,[[969,1,1,3,4]]],[41,2,2,4,6,[[993,2,2,4,6]]],[42,1,1,6,7,[[1011,1,1,6,7]]],[43,1,1,7,8,[[1026,1,1,7,8]]],[45,4,3,8,11,[[1069,2,1,8,9],[1070,1,1,9,10],[1074,1,1,10,11]]],[54,1,1,11,12,[[1125,1,1,11,12]]],[65,1,1,12,13,[[1168,1,1,12,13]]]],[23439,23791,23966,24730,25838,25843,26720,27232,28540,28555,28668,29821,30720]]],["I",[10,10,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,2,2,2,4,[[975,1,1,2,3],[994,1,1,3,4]]],[42,1,1,4,5,[[1010,1,1,4,5]]],[43,3,3,5,8,[[1039,1,1,5,6],[1041,1,1,6,7],[1042,1,1,7,8]]],[45,1,1,8,9,[[1065,1,1,8,9]]],[57,1,1,9,10,[[1140,1,1,9,10]]]],[23203,24222,25041,25917,26696,27721,27789,27811,28451,30101]]],["My",[29,29,[[39,6,6,0,6,[[937,1,1,0,1],[949,1,1,1,2],[952,1,1,2,3],[954,2,2,3,5],[955,1,1,5,6]]],[40,4,4,6,10,[[961,1,1,6,7],[967,1,1,7,8],[970,1,1,8,9],[971,1,1,9,10]]],[41,5,5,10,15,[[973,1,1,10,11],[979,1,1,11,12],[980,1,1,12,13],[984,1,1,13,14],[991,1,1,14,15]]],[42,3,3,15,18,[[1001,1,1,15,16],[1006,1,1,16,17],[1016,1,1,17,18]]],[43,1,1,18,19,[[1043,1,1,18,19]]],[45,1,1,19,20,[[1077,1,1,19,20]]],[46,1,1,20,21,[[1089,1,1,20,21]]],[47,1,1,21,22,[[1094,1,1,21,22]]],[57,1,1,22,23,[[1144,1,1,22,23]]],[58,4,4,23,27,[[1146,1,1,23,24],[1147,1,1,24,25],[1148,2,2,25,27]]],[61,2,2,27,29,[[1160,1,1,27,28],[1161,1,1,28,29]]]],[23397,23839,24005,24072,24092,24175,24387,24657,24788,24860,24939,25241,25266,25504,25777,26227,26510,26895,27827,28800,29031,29150,30217,30268,30294,30320,30329,30551,30597]]],["face",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26974]]],["me",[52,42,[[39,9,6,0,6,[[931,1,1,0,1],[932,1,1,1,2],[938,4,2,2,4],[944,3,2,4,6]]],[40,6,6,6,12,[[957,2,2,6,8],[961,1,1,8,9],[963,1,1,9,10],[964,2,2,10,12]]],[41,9,8,12,20,[[976,2,2,12,14],[980,3,2,14,16],[981,1,1,16,17],[986,1,1,17,18],[991,1,1,18,19],[995,1,1,19,20]]],[42,11,6,20,26,[[997,8,3,20,23],[1007,2,2,23,25],[1016,1,1,25,26]]],[43,7,7,26,33,[[1018,1,1,26,27],[1027,1,1,27,28],[1032,1,1,28,29],[1041,1,1,29,30],[1042,1,1,30,31],[1043,2,2,31,33]]],[45,4,4,33,37,[[1065,1,1,33,34],[1072,2,2,34,36],[1075,1,1,36,37]]],[46,4,3,37,40,[[1088,4,3,37,40]]],[49,1,1,40,41,[[1105,1,1,40,41]]],[65,1,1,41,42,[[1167,1,1,41,42]]]],[23203,23228,23454,23455,23695,23696,24222,24232,24395,24477,24533,24534,25070,25071,25290,25291,25324,25580,25758,25977,26059,26071,26074,26564,26565,26884,26927,27289,27455,27782,27807,27826,27852,28449,28601,28602,28699,28990,28998,29017,29438,30707]]],["mine",[19,19,[[39,2,2,0,2,[[935,2,2,0,2]]],[40,1,1,2,3,[[965,1,1,2,3]]],[41,5,5,3,8,[[973,1,1,3,4],[974,1,1,4,5],[983,1,1,5,6],[990,1,1,6,7],[991,1,1,7,8]]],[42,4,4,8,12,[[998,1,1,8,9],[1005,3,3,9,12]]],[43,1,1,12,13,[[1038,1,1,12,13]]],[44,2,2,13,15,[[1056,1,1,13,14],[1061,1,1,14,15]]],[46,2,2,15,17,[[1088,1,1,15,16],[1089,1,1,16,17]]],[49,1,1,17,18,[[1103,1,1,17,18]]],[65,1,1,18,19,[[1188,1,1,18,19]]]],[23340,23342,24562,24937,25003,25411,25691,25758,26099,26451,26455,26470,27677,28222,28359,29019,29027,29365,31096]]],["my",[457,375,[[39,69,56,0,56,[[930,2,2,0,2],[931,1,1,2,3],[935,1,1,3,4],[936,5,4,4,8],[938,2,2,8,10],[939,5,4,10,14],[940,10,5,14,19],[941,2,2,19,21],[943,2,2,21,23],[944,2,2,23,25],[945,2,2,25,27],[946,5,5,27,32],[947,1,1,32,33],[948,5,2,33,35],[949,2,2,35,37],[950,4,2,37,39],[952,3,3,39,42],[953,3,3,42,45],[954,8,8,45,53],[955,3,2,53,55],[956,1,1,55,56]]],[40,29,24,56,80,[[957,2,2,56,58],[959,6,3,58,61],[961,1,1,61,62],[962,1,1,62,63],[965,5,5,63,68],[966,3,2,68,70],[968,3,2,70,72],[969,2,2,72,74],[970,4,4,74,78],[971,1,1,78,79],[972,1,1,79,80]]],[41,70,63,80,143,[[973,7,6,80,86],[974,1,1,86,87],[975,1,1,87,88],[978,1,1,88,89],[979,8,7,89,96],[980,1,1,96,97],[981,5,5,97,102],[982,3,3,102,105],[983,2,2,105,107],[984,7,5,107,112],[986,5,5,112,117],[987,5,5,117,122],[988,4,4,122,126],[990,1,1,126,127],[991,2,2,127,129],[992,3,2,129,131],[993,2,2,131,133],[994,8,7,133,140],[995,1,1,140,141],[996,3,2,141,143]]],[42,89,74,143,217,[[998,1,1,143,144],[1000,1,1,144,145],[1001,3,3,145,148],[1002,9,6,148,154],[1004,10,8,154,162],[1006,10,10,162,172],[1007,2,2,172,174],[1008,4,4,174,178],[1009,4,4,178,182],[1010,13,11,182,193],[1011,12,10,193,203],[1012,4,4,203,207],[1014,1,1,207,208],[1015,2,1,208,209],[1016,10,5,209,214],[1017,3,3,214,217]]],[43,33,26,217,243,[[1019,12,7,217,224],[1024,5,4,224,228],[1026,1,1,228,229],[1027,1,1,229,230],[1028,1,1,230,231],[1030,2,2,231,233],[1032,2,2,233,235],[1033,1,1,235,236],[1037,5,4,236,240],[1039,1,1,240,241],[1041,1,1,241,242],[1045,1,1,242,243]]],[44,35,26,243,269,[[1046,4,2,243,245],[1047,1,1,245,246],[1052,5,3,246,249],[1054,9,6,249,255],[1055,1,1,255,256],[1056,2,2,256,258],[1060,2,2,258,260],[1061,11,9,260,269]]],[45,20,17,269,286,[[1062,2,2,269,271],[1063,2,1,271,272],[1065,3,2,272,274],[1070,3,3,274,277],[1071,2,2,277,279],[1072,2,2,279,281],[1074,1,1,281,282],[1075,4,3,282,285],[1076,1,1,285,286]]],[46,5,3,286,289,[[1079,2,1,286,287],[1089,3,2,287,289]]],[47,6,5,289,294,[[1091,2,2,289,291],[1094,3,2,291,293],[1096,1,1,293,294]]],[48,6,6,294,300,[[1097,1,1,294,295],[1099,3,3,295,298],[1102,2,2,298,300]]],[49,22,16,300,316,[[1103,9,7,300,307],[1104,6,3,307,310],[1105,2,2,310,312],[1106,5,4,312,316]]],[50,5,4,316,320,[[1107,2,1,316,317],[1108,1,1,317,318],[1110,2,2,318,320]]],[54,7,7,320,327,[[1125,3,3,320,323],[1126,2,2,323,325],[1127,1,1,325,326],[1128,1,1,326,327]]],[56,6,5,327,332,[[1132,6,5,327,332]]],[57,16,14,332,346,[[1133,2,2,332,334],[1134,1,1,334,335],[1135,4,3,335,338],[1136,3,2,338,340],[1137,1,1,340,341],[1140,2,2,341,343],[1142,3,3,343,346]]],[58,10,9,346,355,[[1146,2,2,346,348],[1147,5,4,348,352],[1148,1,1,352,353],[1150,2,2,353,355]]],[59,1,1,355,356,[[1155,1,1,355,356]]],[60,2,2,356,358,[[1156,2,2,356,358]]],[61,1,1,358,359,[[1161,1,1,358,359]]],[65,25,16,359,375,[[1167,1,1,359,360],[1168,6,4,360,364],[1169,13,7,364,371],[1176,2,1,371,372],[1177,1,1,372,373],[1184,1,1,373,374],[1188,1,1,374,375]]]],[23175,23184,23209,23337,23351,23353,23354,23366,23449,23450,23469,23486,23488,23489,23507,23533,23537,23538,23539,23569,23574,23646,23655,23689,23690,23705,23715,23732,23737,23746,23748,23762,23782,23813,23815,23854,23863,23876,23916,23962,23992,23993,24035,24042,24048,24066,24072,24080,24082,24083,24093,24096,24107,24164,24175,24205,24217,24226,24321,24322,24323,24394,24430,24545,24555,24575,24577,24579,24608,24628,24679,24709,24723,24748,24762,24768,24776,24778,24860,24890,24911,24913,24918,24936,24937,24940,25022,25047,25193,25201,25202,25203,25222,25239,25240,25241,25266,25336,25339,25349,25360,25362,25385,25392,25403,25412,25429,25463,25472,25476,25477,25478,25576,25577,25579,25580,25586,25594,25605,25606,25612,25617,25623,25625,25644,25647,25709,25739,25754,25792,25821,25834,25859,25875,25883,25884,25892,25893,25894,25906,25981,26030,26040,26111,26205,26234,26241,26253,26289,26308,26311,26312,26313,26322,26395,26400,26409,26412,26419,26430,26433,26435,26496,26497,26498,26499,26506,26508,26509,26510,26513,26518,26544,26555,26587,26607,26627,26628,26636,26638,26639,26667,26670,26675,26680,26681,26682,26688,26689,26691,26692,26694,26696,26700,26706,26707,26709,26713,26714,26715,26719,26722,26723,26736,26749,26750,26752,26822,26849,26880,26884,26892,26894,26895,26913,26914,26915,26963,26966,26967,26974,26975,26976,26983,27150,27165,27166,27175,27231,27289,27315,27384,27395,27449,27459,27498,27650,27651,27655,27660,27705,27786,27918,27938,27939,27978,28095,28109,28114,28156,28157,28158,28172,28180,28181,28209,28212,28223,28317,28334,28339,28340,28341,28343,28344,28345,28347,28357,28361,28367,28374,28398,28447,28450,28541,28558,28567,28581,28596,28624,28633,28668,28692,28696,28697,28776,28837,29031,29043,29071,29072,29145,29151,29205,29222,29255,29264,29265,29347,29356,29364,29368,29369,29374,29375,29377,29381,29393,29403,29416,29422,29429,29443,29445,29456,29461,29489,29495,29552,29560,29812,29815,29825,29828,29835,29863,29886,29942,29948,29958,29961,29962,29968,29976,29989,30004,30005,30006,30017,30019,30035,30101,30102,30149,30167,30171,30282,30285,30296,30298,30307,30311,30331,30364,30366,30478,30493,30496,30592,30717,30730,30733,30743,30744,30751,30754,30756,30758,30762,30766,30767,30871,30875,30997,31092]]],["own",[4,4,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,2,2,1,3,[[1030,1,1,1,2],[1043,1,1,2,3]]],[47,1,1,3,4,[[1091,1,1,3,4]]]],[26431,27384,27827,29071]]]]},{"k":"G3451","v":[["musicians",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31015]]]]},{"k":"G3452","v":[["marrow",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30026]]]]},{"k":"G3453","v":[["instructed",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29454]]]]},{"k":"G3454","v":[["fables",[5,5,[[53,2,2,0,2,[[1119,1,1,0,1],[1122,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]],[55,1,1,3,4,[[1129,1,1,3,4]]],[60,1,1,4,5,[[1156,1,1,4,5]]]],[29700,29754,29874,29906,30495]]]]},{"k":"G3455","v":[["roareth",[1,1,[[65,1,1,0,1,[[1176,1,1,0,1]]]],[30864]]]]},{"k":"G3456","v":[["mocked",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29195]]]]},{"k":"G3457","v":[["+",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24580]]]]},{"k":"G3458","v":[["*",[4,4,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]],[65,2,2,2,4,[[1184,2,2,2,4]]]],[23733,25653,31014,31015]]],["+",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]]],[23733,25653]]],["millstone",[2,2,[[65,2,2,0,2,[[1184,2,2,0,2]]]],[31014,31015]]]]},{"k":"G3459","v":[["mill",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23998]]]]},{"k":"G3460","v":[["Myra",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27860]]]]},{"k":"G3461","v":[["*",[9,7,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,2,2,1,3,[[1036,1,1,1,2],[1038,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]],[65,4,2,5,7,[[1171,2,1,5,6],[1175,2,1,6,7]]]],[25460,27604,27684,30234,30686,30790,30856]]],["+",[5,3,[[43,1,1,0,1,[[1036,1,1,0,1]]],[65,4,2,1,3,[[1171,2,1,1,2],[1175,2,1,2,3]]]],[27604,30790,30856]]],["company",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30234]]],["multitude",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25460]]],["thousands",[2,2,[[43,1,1,0,1,[[1038,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[27684,30686]]]]},{"k":"G3462","v":[["anoint",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24762]]]]},{"k":"G3463","v":[["thousand",[3,3,[[39,1,1,0,1,[[946,1,1,0,1]]],[45,2,2,1,3,[[1065,1,1,1,2],[1075,1,1,2,3]]]],[23751,28448,28697]]]]},{"k":"G3464","v":[["*",[14,13,[[39,3,3,0,3,[[954,3,3,0,3]]],[40,2,2,3,5,[[970,2,2,3,5]]],[41,4,4,5,9,[[979,3,3,5,8],[995,1,1,8,9]]],[42,4,3,9,12,[[1007,1,1,9,10],[1008,3,2,10,12]]],[65,1,1,12,13,[[1184,1,1,12,13]]]],[24061,24063,24066,24757,24758,25232,25233,25241,25991,26525,26583,26585,31006]]],["ointment",[12,11,[[39,3,3,0,3,[[954,3,3,0,3]]],[40,2,2,3,5,[[970,2,2,3,5]]],[41,3,3,5,8,[[979,3,3,5,8]]],[42,4,3,8,11,[[1007,1,1,8,9],[1008,3,2,9,11]]]],[24061,24063,24066,24757,24758,25232,25233,25241,26525,26583,26585]]],["ointments",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[25991,31006]]]]},{"k":"G3465","v":[["Mysia",[2,2,[[43,2,2,0,2,[[1033,2,2,0,2]]]],[27490,27491]]]]},{"k":"G3466","v":[["*",[27,27,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[44,2,2,3,5,[[1056,1,1,3,4],[1061,1,1,4,5]]],[45,5,5,5,10,[[1063,1,1,5,6],[1065,1,1,6,7],[1074,1,1,7,8],[1075,1,1,8,9],[1076,1,1,9,10]]],[48,6,6,10,16,[[1097,1,1,10,11],[1099,3,3,11,14],[1101,1,1,14,15],[1102,1,1,15,16]]],[50,4,4,16,20,[[1107,2,2,16,18],[1108,1,1,18,19],[1110,1,1,19,20]]],[52,1,1,20,21,[[1117,1,1,20,21]]],[53,2,2,21,23,[[1121,2,2,21,23]]],[65,4,4,23,27,[[1167,1,1,23,24],[1176,1,1,24,25],[1183,2,2,25,27]]]],[23550,24334,25255,28234,28361,28401,28434,28667,28680,28769,29215,29254,29255,29260,29336,29356,29491,29492,29496,29545,29668,29740,29747,30717,30868,30980,30982]]],["MYSTERY",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30980]]],["mysteries",[5,5,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[45,3,3,2,5,[[1065,1,1,2,3],[1074,1,1,3,4],[1075,1,1,4,5]]]],[23550,25255,28434,28667,28680]]],["mystery",[21,21,[[40,1,1,0,1,[[960,1,1,0,1]]],[44,2,2,1,3,[[1056,1,1,1,2],[1061,1,1,2,3]]],[45,2,2,3,5,[[1063,1,1,3,4],[1076,1,1,4,5]]],[48,6,6,5,11,[[1097,1,1,5,6],[1099,3,3,6,9],[1101,1,1,9,10],[1102,1,1,10,11]]],[50,4,4,11,15,[[1107,2,2,11,13],[1108,1,1,13,14],[1110,1,1,14,15]]],[52,1,1,15,16,[[1117,1,1,15,16]]],[53,2,2,16,18,[[1121,2,2,16,18]]],[65,3,3,18,21,[[1167,1,1,18,19],[1176,1,1,19,20],[1183,1,1,20,21]]]],[24334,28234,28361,28401,28769,29215,29254,29255,29260,29336,29356,29491,29492,29496,29545,29668,29740,29747,30717,30868,30982]]]]},{"k":"G3467","v":[["off",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30488]]]]},{"k":"G3468","v":[["stripes",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30423]]]]},{"k":"G3469","v":[["*",[2,2,[[46,2,2,0,2,[[1083,1,1,0,1],[1085,1,1,1,2]]]],[28901,28952]]],["blame",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28952]]],["blamed",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28901]]]]},{"k":"G3470","v":[["blemishes",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30513]]]]},{"k":"G3471","v":[["*",[4,4,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[45,1,1,3,4,[[1062,1,1,3,4]]]],[23247,25587,27952,28383]]],["foolish",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28383]]],["fools",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27952]]],["savour",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]]],[23247,25587]]]]},{"k":"G3472","v":[["foolishness",[5,5,[[45,5,5,0,5,[[1062,3,3,0,3],[1063,1,1,3,4],[1064,1,1,4,5]]]],[28381,28384,28386,28408,28429]]]]},{"k":"G3473","v":[["talking",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29308]]]]},{"k":"G3474","v":[["*",[13,13,[[39,7,7,0,7,[[933,1,1,0,1],[935,1,1,1,2],[951,2,2,2,4],[953,3,3,4,7]]],[45,4,4,7,11,[[1062,2,2,7,9],[1064,1,1,9,10],[1065,1,1,10,11]]],[54,1,1,11,12,[[1126,1,1,11,12]]],[55,1,1,12,13,[[1131,1,1,12,13]]]],[23256,23342,23935,23937,24010,24011,24016,28388,28390,28428,28443,29850,29932]]],["fool",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]]],[23256,28428]]],["foolish",[6,6,[[39,4,4,0,4,[[935,1,1,0,1],[953,3,3,1,4]]],[54,1,1,4,5,[[1126,1,1,4,5]]],[55,1,1,5,6,[[1131,1,1,5,6]]]],[23342,24010,24011,24016,29850,29932]]],["foolishness",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28388]]],["fools",[3,3,[[39,2,2,0,2,[[951,2,2,0,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]]],[23935,23937,28443]]],["things",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28390]]]]},{"k":"G3475","v":[["*",[80,79,[[39,7,7,0,7,[[936,1,1,0,1],[945,2,2,1,3],[947,2,2,3,5],[950,1,1,5,6],[951,1,1,6,7]]],[40,8,8,7,15,[[957,1,1,7,8],[963,1,1,8,9],[965,2,2,9,11],[966,2,2,11,13],[968,2,2,13,15]]],[41,10,10,15,25,[[974,1,1,15,16],[977,1,1,16,17],[981,2,2,17,19],[988,2,2,19,21],[992,2,2,21,23],[996,2,2,23,25]]],[42,13,12,25,37,[[997,2,2,25,27],[999,1,1,27,28],[1001,2,2,28,30],[1002,1,1,30,31],[1003,4,3,31,34],[1004,1,1,34,35],[1005,2,2,35,37]]],[43,19,19,37,56,[[1020,1,1,37,38],[1023,2,2,38,40],[1024,9,9,40,49],[1030,1,1,49,50],[1032,3,3,50,53],[1038,1,1,53,54],[1043,1,1,54,55],[1045,1,1,55,56]]],[44,4,4,56,60,[[1050,1,1,56,57],[1054,1,1,57,58],[1055,2,2,58,60]]],[45,2,2,60,62,[[1070,1,1,60,61],[1071,1,1,61,62]]],[46,3,3,62,65,[[1080,3,3,62,65]]],[54,1,1,65,66,[[1127,1,1,65,66]]],[57,11,11,66,77,[[1135,4,4,66,70],[1139,1,1,70,71],[1140,1,1,71,72],[1141,1,1,72,73],[1142,1,1,73,74],[1143,2,2,74,76],[1144,1,1,76,77]]],[64,1,1,77,78,[[1166,1,1,77,78]]],[65,1,1,78,79,[[1181,1,1,78,79]]]],[23349,23703,23704,23769,23770,23896,23920,24259,24473,24542,24543,24591,24592,24692,24699,24995,25121,25331,25334,25649,25651,25807,25816,26018,26035,26061,26089,26134,26255,26256,26289,26347,26350,26351,26386,26468,26469,27018,27112,27115,27136,27138,27145,27147,27148,27151,27153,27156,27160,27401,27443,27447,27463,27685,27845,27922,28061,28170,28193,28207,28549,28569,28848,28854,28856,29861,29997,29998,30000,30011,30078,30097,30124,30161,30195,30196,30233,30681,30949]]],["Moses",[77,76,[[39,6,6,0,6,[[936,1,1,0,1],[945,2,2,1,3],[947,2,2,3,5],[950,1,1,5,6]]],[40,8,8,6,14,[[957,1,1,6,7],[963,1,1,7,8],[965,2,2,8,10],[966,2,2,10,12],[968,2,2,12,14]]],[41,10,10,14,24,[[974,1,1,14,15],[977,1,1,15,16],[981,2,2,16,18],[988,2,2,18,20],[992,2,2,20,22],[996,2,2,22,24]]],[42,12,11,24,35,[[997,2,2,24,26],[999,1,1,26,27],[1001,2,2,27,29],[1002,1,1,29,30],[1003,4,3,30,33],[1004,1,1,33,34],[1005,1,1,34,35]]],[43,19,19,35,54,[[1020,1,1,35,36],[1023,2,2,36,38],[1024,9,9,38,47],[1030,1,1,47,48],[1032,3,3,48,51],[1038,1,1,51,52],[1043,1,1,52,53],[1045,1,1,53,54]]],[44,4,4,54,58,[[1050,1,1,54,55],[1054,1,1,55,56],[1055,2,2,56,58]]],[45,2,2,58,60,[[1070,1,1,58,59],[1071,1,1,59,60]]],[46,3,3,60,63,[[1080,3,3,60,63]]],[54,1,1,63,64,[[1127,1,1,63,64]]],[57,10,10,64,74,[[1135,4,4,64,68],[1139,1,1,68,69],[1140,1,1,69,70],[1141,1,1,70,71],[1143,2,2,71,73],[1144,1,1,73,74]]],[64,1,1,74,75,[[1166,1,1,74,75]]],[65,1,1,75,76,[[1181,1,1,75,76]]]],[23349,23703,23704,23769,23770,23896,24259,24473,24542,24543,24591,24592,24692,24699,24995,25121,25331,25334,25649,25651,25807,25816,26018,26035,26061,26089,26134,26255,26256,26289,26347,26350,26351,26386,26469,27018,27112,27115,27136,27138,27145,27147,27148,27151,27153,27156,27160,27401,27443,27447,27463,27685,27845,27922,28061,28170,28193,28207,28549,28569,28848,28854,28856,29861,29997,29998,30000,30011,30078,30097,30124,30195,30196,30233,30681,30949]]],["Moses'",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[42,1,1,1,2,[[1005,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[23920,26468,30161]]]]},{"k":"G3476","v":[["Naasson",[3,2,[[39,2,1,0,1,[[929,2,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23148,25057]]]]},{"k":"G3477","v":[["Nagge",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25050]]]]},{"k":"G3478","v":[["Nazareth",[12,12,[[39,3,3,0,3,[[930,1,1,0,1],[932,1,1,1,2],[949,1,1,2,3]]],[40,1,1,3,4,[[957,1,1,3,4]]],[41,5,5,4,9,[[973,1,1,4,5],[974,3,3,5,8],[976,1,1,8,9]]],[42,2,2,9,11,[[997,2,2,9,11]]],[43,1,1,11,12,[[1027,1,1,11,12]]]],[23192,23222,23837,24224,24919,24977,25012,25024,25079,26089,26090,27297]]]]},{"k":"G3479","v":[["Nazareth",[4,4,[[40,3,3,0,3,[[957,1,1,0,1],[970,1,1,1,2],[972,1,1,2,3]]],[41,1,1,3,4,[[976,1,1,3,4]]]],[24239,24821,24879,25097]]]]},{"k":"G3480","v":[["*",[15,15,[[39,2,2,0,2,[[930,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[966,1,1,2,3]]],[41,2,2,3,5,[[990,1,1,3,4],[996,1,1,4,5]]],[42,3,3,5,8,[[1014,2,2,5,7],[1015,1,1,7,8]]],[43,7,7,8,15,[[1019,1,1,8,9],[1020,1,1,9,10],[1021,1,1,10,11],[1023,1,1,11,12],[1039,1,1,12,13],[1041,1,1,13,14],[1043,1,1,14,15]]]],[23192,24125,24635,25725,26010,26790,26792,26844,26971,27002,27032,27115,27712,27774,27832]]],["NAZARETH",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26844]]],["Nazarene",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23192]]],["Nazarenes",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27774]]],["Nazareth",[12,12,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,2,2,2,4,[[990,1,1,2,3],[996,1,1,3,4]]],[42,2,2,4,6,[[1014,2,2,4,6]]],[43,6,6,6,12,[[1019,1,1,6,7],[1020,1,1,7,8],[1021,1,1,8,9],[1023,1,1,9,10],[1039,1,1,10,11],[1043,1,1,11,12]]]],[24125,24635,25725,26010,26790,26792,26971,27002,27032,27115,27712,27832]]]]},{"k":"G3481","v":[["Nathan",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25056]]]]},{"k":"G3482","v":[["Nathanael",[6,6,[[42,6,6,0,6,[[997,5,5,0,5],[1017,1,1,5,6]]]],[26089,26090,26091,26092,26093,26900]]]]},{"k":"G3483","v":[["*",[34,29,[[39,9,8,0,8,[[933,2,1,0,1],[937,1,1,1,2],[939,2,2,2,4],[941,1,1,4,5],[943,1,1,5,6],[945,1,1,6,7],[949,1,1,7,8]]],[40,1,1,8,9,[[963,1,1,8,9]]],[41,4,4,9,13,[[979,1,1,9,10],[982,1,1,10,11],[983,1,1,11,12],[984,1,1,12,13]]],[42,3,3,13,16,[[1007,1,1,13,14],[1017,2,2,14,16]]],[43,2,2,16,18,[[1022,1,1,16,17],[1039,1,1,17,18]]],[44,1,1,18,19,[[1048,1,1,18,19]]],[46,6,4,19,23,[[1078,6,4,19,23]]],[56,1,1,23,24,[[1132,1,1,23,24]]],[58,2,1,24,25,[[1150,2,1,24,25]]],[65,5,4,25,29,[[1167,1,1,25,26],[1180,1,1,26,27],[1182,1,1,27,28],[1188,2,1,28,29]]]],[23271,23407,23468,23485,23590,23660,23725,23842,24491,25221,25384,25456,25464,26550,26913,26914,27067,27731,28020,28817,28818,28819,28820,29958,30366,30704,30939,30961,31100]]],["+",[2,2,[[46,2,2,0,2,[[1078,2,2,0,2]]]],[28818,28819]]],["Surely",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31100]]],["Truth",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23660]]],["Yea",[12,12,[[39,4,4,0,4,[[933,1,1,0,1],[937,1,1,1,2],[941,1,1,2,3],[949,1,1,3,4]]],[41,1,1,4,5,[[979,1,1,4,5]]],[42,3,3,5,8,[[1007,1,1,5,6],[1017,2,2,6,8]]],[43,2,2,8,10,[[1022,1,1,8,9],[1039,1,1,9,10]]],[56,1,1,10,11,[[1132,1,1,10,11]]],[65,1,1,11,12,[[1180,1,1,11,12]]]],[23271,23407,23590,23842,25221,26550,26913,26914,27067,27731,29958,30939]]],["Yes",[3,3,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]]],[23725,24491,28020]]],["so",[5,5,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[65,3,3,2,5,[[1167,1,1,2,3],[1182,1,1,3,4],[1188,1,1,4,5]]]],[23485,25384,30704,30961,31100]]],["verily",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25456]]],["yea",[9,7,[[39,2,2,0,2,[[933,1,1,0,1],[939,1,1,1,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[46,4,3,3,6,[[1078,4,3,3,6]]],[58,2,1,6,7,[[1150,2,1,6,7]]]],[23271,23468,25464,28817,28819,28820,30366]]]]},{"k":"G3484","v":[["Nain",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25206]]]]},{"k":"G3485","v":[["*",[46,40,[[39,9,8,0,8,[[951,5,4,0,4],[954,1,1,4,5],[955,3,3,5,8]]],[40,3,3,8,11,[[970,1,1,8,9],[971,2,2,9,11]]],[41,4,4,11,15,[[973,3,3,11,14],[995,1,1,14,15]]],[42,3,3,15,18,[[998,3,3,15,18]]],[43,3,3,18,21,[[1024,1,1,18,19],[1034,1,1,19,20],[1036,1,1,20,21]]],[45,4,3,21,24,[[1064,3,2,21,23],[1067,1,1,23,24]]],[46,2,1,24,25,[[1083,2,1,24,25]]],[48,1,1,25,26,[[1098,1,1,25,26]]],[52,1,1,26,27,[[1117,1,1,26,27]]],[65,16,13,27,40,[[1169,1,1,27,28],[1173,1,1,28,29],[1177,4,3,29,32],[1180,2,2,32,34],[1181,4,3,34,37],[1182,2,2,37,39],[1187,2,1,39,40]]]],[23934,23935,23939,23953,24115,24134,24169,24180,24812,24855,24864,24902,24914,24915,25980,26114,26115,26116,27164,27547,27609,28426,28427,28486,28914,29250,29665,30758,30825,30873,30874,30891,30941,30943,30951,30952,30954,30955,30971,31075]]],["+",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26115]]],["shrines",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27609]]],["temple",[42,36,[[39,9,8,0,8,[[951,5,4,0,4],[954,1,1,4,5],[955,3,3,5,8]]],[40,3,3,8,11,[[970,1,1,8,9],[971,2,2,9,11]]],[41,4,4,11,15,[[973,3,3,11,14],[995,1,1,14,15]]],[42,2,2,15,17,[[998,2,2,15,17]]],[45,4,3,17,20,[[1064,3,2,17,19],[1067,1,1,19,20]]],[46,2,1,20,21,[[1083,2,1,20,21]]],[48,1,1,21,22,[[1098,1,1,21,22]]],[52,1,1,22,23,[[1117,1,1,22,23]]],[65,16,13,23,36,[[1169,1,1,23,24],[1173,1,1,24,25],[1177,4,3,25,28],[1180,2,2,28,30],[1181,4,3,30,33],[1182,2,2,33,35],[1187,2,1,35,36]]]],[23934,23935,23939,23953,24115,24134,24169,24180,24812,24855,24864,24902,24914,24915,25980,26114,26116,28426,28427,28486,28914,29250,29665,30758,30825,30873,30874,30891,30941,30943,30951,30952,30954,30955,30971,31075]]],["temples",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1034,1,1,1,2]]]],[27164,27547]]]]},{"k":"G3486","v":[["Naum",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25050]]]]},{"k":"G3487","v":[["+",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]]],[24757,26583]]]]},{"k":"G3488","v":[["Narcissus",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28347]]]]},{"k":"G3489","v":[["shipwreck",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]]],[29014,29715]]]]},{"k":"G3490","v":[["ship",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27866]]]]},{"k":"G3491","v":[["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27896]]]]},{"k":"G3492","v":[["*",[3,3,[[43,2,2,0,2,[[1044,2,2,0,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[27882,27885,31010]]],["sailors",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31010]]],["shipmen",[2,2,[[43,2,2,0,2,[[1044,2,2,0,2]]]],[27882,27885]]]]},{"k":"G3493","v":[["Nachor",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25059]]]]},{"k":"G3494","v":[["*",[5,5,[[43,5,5,0,5,[[1024,1,1,0,1],[1037,1,1,1,2],[1040,3,3,2,5]]]],[27174,27635,27751,27752,27756]]],["+",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27756]]],["man",[3,3,[[43,3,3,0,3,[[1037,1,1,0,1],[1040,2,2,1,3]]]],[27635,27751,27752]]],["man's",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27174]]]]},{"k":"G3495","v":[["*",[10,9,[[39,2,2,0,2,[[947,2,2,0,2]]],[40,3,2,2,4,[[970,2,1,2,3],[972,1,1,3,4]]],[41,1,1,4,5,[[979,1,1,4,5]]],[43,2,2,5,7,[[1019,1,1,5,6],[1022,1,1,6,7]]],[61,2,2,7,9,[[1160,2,2,7,9]]]],[23782,23784,24805,24878,25209,26966,27069,30563,30564]]],["man",[5,5,[[39,2,2,0,2,[[947,2,2,0,2]]],[40,2,2,2,4,[[970,1,1,2,3],[972,1,1,3,4]]],[41,1,1,4,5,[[979,1,1,4,5]]]],[23782,23784,24805,24878,25209]]],["men",[5,5,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,2,2,1,3,[[1019,1,1,1,2],[1022,1,1,2,3]]],[61,2,2,3,5,[[1160,2,2,3,5]]]],[24805,26966,27069,30563,30564]]]]},{"k":"G3496","v":[["Neapolis",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27494]]]]},{"k":"G3497","v":[["Naaman",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25090]]]]},{"k":"G3498","v":[["*",[132,123,[[39,12,11,0,11,[[936,2,1,0,1],[938,1,1,1,2],[939,1,1,2,3],[942,1,1,3,4],[945,1,1,4,5],[950,2,2,5,7],[951,1,1,7,8],[955,1,1,8,9],[956,2,2,9,11]]],[40,8,8,11,19,[[962,2,2,11,13],[965,3,3,13,16],[968,3,3,16,19]]],[41,14,13,19,32,[[979,2,2,19,21],[981,3,2,21,23],[987,2,2,23,25],[988,2,2,25,27],[992,3,3,27,30],[996,2,2,30,32]]],[42,8,8,32,40,[[998,1,1,32,33],[1001,2,2,33,35],[1008,3,3,35,38],[1016,1,1,38,39],[1017,1,1,39,40]]],[43,18,18,40,58,[[1020,1,1,40,41],[1021,2,2,41,43],[1022,1,1,43,44],[1027,2,2,44,46],[1030,2,2,46,48],[1034,3,3,48,51],[1037,1,1,51,52],[1040,1,1,52,53],[1041,2,2,53,55],[1043,2,2,55,57],[1045,1,1,57,58]]],[44,16,15,58,73,[[1046,1,1,58,59],[1049,2,2,59,61],[1051,4,4,61,65],[1052,2,2,65,67],[1053,3,2,67,69],[1055,2,2,69,71],[1056,1,1,71,72],[1059,1,1,72,73]]],[45,14,11,73,84,[[1076,14,11,73,84]]],[46,1,1,84,85,[[1078,1,1,84,85]]],[47,1,1,85,86,[[1091,1,1,85,86]]],[48,4,4,86,90,[[1097,1,1,86,87],[1098,2,2,87,89],[1101,1,1,89,90]]],[49,1,1,90,91,[[1105,1,1,90,91]]],[50,3,3,91,94,[[1107,1,1,91,92],[1108,2,2,92,94]]],[51,2,2,94,96,[[1111,1,1,94,95],[1114,1,1,95,96]]],[54,2,2,96,98,[[1126,1,1,96,97],[1128,1,1,97,98]]],[57,7,7,98,105,[[1138,2,2,98,100],[1141,2,2,100,102],[1143,2,2,102,104],[1145,1,1,104,105]]],[58,4,3,105,108,[[1147,4,3,105,108]]],[59,4,4,108,112,[[1151,2,2,108,110],[1154,2,2,110,112]]],[65,13,11,112,123,[[1167,3,3,112,115],[1168,1,1,115,116],[1169,1,1,116,117],[1177,1,1,117,118],[1180,1,1,118,119],[1182,1,1,119,120],[1186,5,3,120,123]]]],[23367,23425,23464,23599,23709,23903,23904,23945,24193,24199,24202,24421,24423,24547,24548,24564,24698,24699,24700,25210,25217,25308,25361,25612,25620,25650,25651,25814,25816,25817,25996,26037,26117,26231,26235,26581,26589,26597,26876,26912,27011,27024,27032,27069,27300,27301,27392,27396,27526,27554,27555,27635,27740,27784,27790,27831,27846,27905,27934,28039,28046,28072,28077,28079,28081,28095,28099,28126,28127,28195,28197,28224,28289,28730,28731,28733,28734,28738,28739,28747,28750,28753,28760,28770,28809,29058,29226,29230,29234,29318,29432,29483,29506,29507,29570,29619,29835,29871,30045,30046,30119,30122,30191,30207,30261,30310,30313,30319,30377,30395,30451,30452,30702,30714,30715,30725,30747,30890,30939,30957,31043,31050,31051]]],["+",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30122]]],["dead",[131,122,[[39,12,11,0,11,[[936,2,1,0,1],[938,1,1,1,2],[939,1,1,2,3],[942,1,1,3,4],[945,1,1,4,5],[950,2,2,5,7],[951,1,1,7,8],[955,1,1,8,9],[956,2,2,9,11]]],[40,8,8,11,19,[[962,2,2,11,13],[965,3,3,13,16],[968,3,3,16,19]]],[41,14,13,19,32,[[979,2,2,19,21],[981,3,2,21,23],[987,2,2,23,25],[988,2,2,25,27],[992,3,3,27,30],[996,2,2,30,32]]],[42,8,8,32,40,[[998,1,1,32,33],[1001,2,2,33,35],[1008,3,3,35,38],[1016,1,1,38,39],[1017,1,1,39,40]]],[43,18,18,40,58,[[1020,1,1,40,41],[1021,2,2,41,43],[1022,1,1,43,44],[1027,2,2,44,46],[1030,2,2,46,48],[1034,3,3,48,51],[1037,1,1,51,52],[1040,1,1,52,53],[1041,2,2,53,55],[1043,2,2,55,57],[1045,1,1,57,58]]],[44,16,15,58,73,[[1046,1,1,58,59],[1049,2,2,59,61],[1051,4,4,61,65],[1052,2,2,65,67],[1053,3,2,67,69],[1055,2,2,69,71],[1056,1,1,71,72],[1059,1,1,72,73]]],[45,14,11,73,84,[[1076,14,11,73,84]]],[46,1,1,84,85,[[1078,1,1,84,85]]],[47,1,1,85,86,[[1091,1,1,85,86]]],[48,4,4,86,90,[[1097,1,1,86,87],[1098,2,2,87,89],[1101,1,1,89,90]]],[49,1,1,90,91,[[1105,1,1,90,91]]],[50,3,3,91,94,[[1107,1,1,91,92],[1108,2,2,92,94]]],[51,2,2,94,96,[[1111,1,1,94,95],[1114,1,1,95,96]]],[54,2,2,96,98,[[1126,1,1,96,97],[1128,1,1,97,98]]],[57,6,6,98,104,[[1138,2,2,98,100],[1141,1,1,100,101],[1143,2,2,101,103],[1145,1,1,103,104]]],[58,4,3,104,107,[[1147,4,3,104,107]]],[59,4,4,107,111,[[1151,2,2,107,109],[1154,2,2,109,111]]],[65,13,11,111,122,[[1167,3,3,111,114],[1168,1,1,114,115],[1169,1,1,115,116],[1177,1,1,116,117],[1180,1,1,117,118],[1182,1,1,118,119],[1186,5,3,119,122]]]],[23367,23425,23464,23599,23709,23903,23904,23945,24193,24199,24202,24421,24423,24547,24548,24564,24698,24699,24700,25210,25217,25308,25361,25612,25620,25650,25651,25814,25816,25817,25996,26037,26117,26231,26235,26581,26589,26597,26876,26912,27011,27024,27032,27069,27300,27301,27392,27396,27526,27554,27555,27635,27740,27784,27790,27831,27846,27905,27934,28039,28046,28072,28077,28079,28081,28095,28099,28126,28127,28195,28197,28224,28289,28730,28731,28733,28734,28738,28739,28747,28750,28753,28760,28770,28809,29058,29226,29230,29234,29318,29432,29483,29506,29507,29570,29619,29835,29871,30045,30046,30119,30191,30207,30261,30310,30313,30319,30377,30395,30451,30452,30702,30714,30715,30725,30747,30890,30939,30957,31043,31050,31051]]]]},{"k":"G3499","v":[["*",[3,3,[[44,1,1,0,1,[[1049,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[28041,29522,30184]]],["Mortify",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29522]]],["dead",[2,2,[[44,1,1,0,1,[[1049,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[28041,30184]]]]},{"k":"G3500","v":[["*",[2,2,[[44,1,1,0,1,[[1049,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]]],[28041,28869]]],["deadness",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28041]]],["dying",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28869]]]]},{"k":"G3501","v":[["*",[24,20,[[39,2,1,0,1,[[937,2,1,0,1]]],[40,3,1,1,2,[[958,3,1,1,2]]],[41,7,6,2,8,[[977,4,3,2,5],[987,2,2,5,7],[994,1,1,7,8]]],[42,1,1,8,9,[[1017,1,1,8,9]]],[43,1,1,9,10,[[1022,1,1,9,10]]],[45,1,1,10,11,[[1066,1,1,10,11]]],[50,1,1,11,12,[[1109,1,1,11,12]]],[53,4,4,12,16,[[1123,4,4,12,16]]],[55,2,2,16,18,[[1130,2,2,16,18]]],[57,1,1,18,19,[[1144,1,1,18,19]]],[59,1,1,19,20,[[1155,1,1,19,20]]]],[23396,24282,25144,25145,25146,25600,25601,25890,26916,27065,28461,29527,29764,29765,29774,29777,29912,29914,30236,30470]]],["+",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29912]]],["men",[3,3,[[43,1,1,0,1,[[1022,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]],[55,1,1,2,3,[[1130,1,1,2,3]]]],[27065,29764,29914]]],["new",[12,8,[[39,2,1,0,1,[[937,2,1,0,1]]],[40,3,1,1,2,[[958,3,1,1,2]]],[41,4,3,2,5,[[977,4,3,2,5]]],[45,1,1,5,6,[[1066,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[57,1,1,7,8,[[1144,1,1,7,8]]]],[23396,24282,25144,25145,25146,28461,29527,30236]]],["women",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29777]]],["young",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26916]]],["younger",[6,6,[[41,3,3,0,3,[[987,2,2,0,2],[994,1,1,2,3]]],[53,2,2,3,5,[[1123,2,2,3,5]]],[59,1,1,5,6,[[1155,1,1,5,6]]]],[25600,25601,25890,29765,29774,30470]]]]},{"k":"G3502","v":[["young",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24997]]]]},{"k":"G3503","v":[["youth",[5,5,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[43,1,1,3,4,[[1043,1,1,3,4]]],[53,1,1,4,5,[[1122,1,1,4,5]]]],[23782,24608,25709,27827,29759]]]]},{"k":"G3504","v":[["novice",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29737]]]]},{"k":"G3505","v":[]},{"k":"G3506","v":[["beckoned",[2,2,[[42,1,1,0,1,[[1009,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]]],[26654,27779]]]]},{"k":"G3507","v":[["*",[26,22,[[39,4,3,0,3,[[945,2,1,0,1],[952,1,1,1,2],[954,1,1,2,3]]],[40,4,3,3,6,[[965,2,1,3,4],[969,1,1,4,5],[970,1,1,5,6]]],[41,5,4,6,10,[[981,3,2,6,8],[984,1,1,8,9],[993,1,1,9,10]]],[43,1,1,10,11,[[1018,1,1,10,11]]],[45,2,2,11,13,[[1071,2,2,11,13]]],[51,1,1,13,14,[[1114,1,1,13,14]]],[60,1,1,14,15,[[1157,1,1,14,15]]],[64,1,1,15,16,[[1166,1,1,15,16]]],[65,7,6,16,22,[[1167,1,1,16,17],[1176,1,1,17,18],[1177,1,1,18,19],[1180,4,3,19,22]]]],[23705,23987,24118,24545,24743,24816,25335,25336,25513,25853,26932,28568,28569,29620,30517,30684,30704,30862,30884,30940,30941,30942]]],["cloud",[18,14,[[39,2,1,0,1,[[945,2,1,0,1]]],[40,2,1,1,2,[[965,2,1,1,2]]],[41,5,4,2,6,[[981,3,2,2,4],[984,1,1,4,5],[993,1,1,5,6]]],[43,1,1,6,7,[[1018,1,1,6,7]]],[45,2,2,7,9,[[1071,2,2,7,9]]],[65,6,5,9,14,[[1176,1,1,9,10],[1177,1,1,10,11],[1180,4,3,11,14]]]],[23705,24545,25335,25336,25513,25853,26932,28568,28569,30862,30884,30940,30941,30942]]],["clouds",[8,8,[[39,2,2,0,2,[[952,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[969,1,1,2,3],[970,1,1,3,4]]],[51,1,1,4,5,[[1114,1,1,4,5]]],[60,1,1,5,6,[[1157,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]],[65,1,1,7,8,[[1167,1,1,7,8]]]],[23987,24118,24743,24816,29620,30517,30684,30704]]]]},{"k":"G3508","v":[["*",[3,3,[[39,2,2,0,2,[[932,2,2,0,2]]],[65,1,1,2,3,[[1173,1,1,2,3]]]],[23222,23224,30816]]],["Nephthalim",[2,2,[[39,2,2,0,2,[[932,2,2,0,2]]]],[23222,23224]]],["Nepthalim",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30816]]]]},{"k":"G3509","v":[["cloud",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30213]]]]},{"k":"G3510","v":[["reins",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30740]]]]},{"k":"G3511","v":[["worshipper",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27620]]]]},{"k":"G3512","v":[["youthful",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29849]]]]},{"k":"G3513","v":[["protest",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28749]]]]},{"k":"G3514","v":[["spin",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23310,25486]]]]},{"k":"G3515","v":[["children",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28698]]]]},{"k":"G3516","v":[["*",[14,10,[[39,2,2,0,2,[[939,1,1,0,1],[949,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[44,1,1,3,4,[[1047,1,1,3,4]]],[45,6,2,4,6,[[1064,1,1,4,5],[1074,5,1,5,6]]],[47,2,2,6,8,[[1094,2,2,6,8]]],[48,1,1,8,9,[[1100,1,1,8,9]]],[57,1,1,9,10,[[1137,1,1,9,10]]]],[23484,23842,25384,27982,28411,28676,29132,29134,29286,30043]]],["+",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28676]]],["babe",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30043]]],["babes",[5,5,[[39,2,2,0,2,[[939,1,1,0,1],[949,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[44,1,1,3,4,[[1047,1,1,3,4]]],[45,1,1,4,5,[[1064,1,1,4,5]]]],[23484,23842,25384,27982,28411]]],["child",[5,2,[[45,4,1,0,1,[[1074,4,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]]],[28676,29132]]],["children",[2,2,[[47,1,1,0,1,[[1094,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[29134,29286]]]]},{"k":"G3517","v":[["Nereus",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28351]]]]},{"k":"G3518","v":[["Neri",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25052]]]]},{"k":"G3519","v":[["island",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27871]]]]},{"k":"G3520","v":[["*",[9,9,[[43,6,6,0,6,[[1030,1,1,0,1],[1044,1,1,1,2],[1045,4,4,2,6]]],[65,3,3,6,9,[[1167,1,1,6,7],[1172,1,1,7,8],[1182,1,1,8,9]]]],[27368,27881,27900,27906,27908,27910,30706,30807,30974]]],["island",[6,6,[[43,4,4,0,4,[[1044,1,1,0,1],[1045,3,3,1,4]]],[65,2,2,4,6,[[1172,1,1,4,5],[1182,1,1,5,6]]]],[27881,27900,27906,27908,30807,30974]]],["isle",[3,3,[[43,2,2,0,2,[[1030,1,1,0,1],[1045,1,1,1,2]]],[65,1,1,2,3,[[1167,1,1,2,3]]]],[27368,27910,30706]]]]},{"k":"G3521","v":[["*",[8,8,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,1,1,2,3,[[974,1,1,2,3]]],[43,2,2,3,5,[[1031,1,1,3,4],[1044,1,1,4,5]]],[45,1,1,5,6,[[1068,1,1,5,6]]],[46,2,2,6,8,[[1083,1,1,6,7],[1088,1,1,7,8]]]],[23721,24567,25010,27437,27864,28492,28903,29016]]],["fast",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27864]]],["fasting",[4,4,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[43,1,1,2,3,[[1031,1,1,2,3]]],[45,1,1,3,4,[[1068,1,1,3,4]]]],[23721,24567,27437,28492]]],["fastings",[3,3,[[41,1,1,0,1,[[974,1,1,0,1]]],[46,2,2,1,3,[[1083,1,1,1,2],[1088,1,1,2,3]]]],[25010,28903,29016]]]]},{"k":"G3522","v":[["*",[21,16,[[39,8,6,0,6,[[932,1,1,0,1],[934,4,3,1,4],[937,3,2,4,6]]],[40,6,3,6,9,[[958,6,3,6,9]]],[41,4,4,9,13,[[977,3,3,9,12],[990,1,1,12,13]]],[43,3,3,13,16,[[1027,1,1,13,14],[1030,2,2,14,16]]]],[23211,23298,23299,23300,23393,23394,24278,24279,24280,25140,25141,25142,25700,27289,27364,27365]]],["+",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24278]]],["fast",[15,11,[[39,6,4,0,4,[[934,3,2,0,2],[937,3,2,2,4]]],[40,5,3,4,7,[[958,5,3,4,7]]],[41,4,4,7,11,[[977,3,3,7,10],[990,1,1,10,11]]]],[23298,23300,23393,23394,24278,24279,24280,25140,25141,25142,25700]]],["fasted",[3,3,[[39,1,1,0,1,[[932,1,1,0,1]]],[43,2,2,1,3,[[1030,2,2,1,3]]]],[23211,27364,27365]]],["fastest",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23299]]],["fasting",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27289]]]]},{"k":"G3523","v":[["fasting",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]]],[23665,24503]]]]},{"k":"G3524","v":[["*",[3,3,[[53,2,2,0,2,[[1121,2,2,0,2]]],[55,1,1,2,3,[[1130,1,1,2,3]]]],[29733,29742,29910]]],["sober",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]]],[29742,29910]]],["vigilant",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29733]]]]},{"k":"G3525","v":[["*",[6,6,[[51,2,2,0,2,[[1115,2,2,0,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]],[59,3,3,3,6,[[1151,1,1,3,4],[1154,1,1,4,5],[1155,1,1,5,6]]]],[29627,29629,29875,30387,30453,30473]]],["sober",[4,4,[[51,2,2,0,2,[[1115,2,2,0,2]]],[59,2,2,2,4,[[1151,1,1,2,3],[1155,1,1,3,4]]]],[29627,29629,30387,30473]]],["watch",[2,2,[[54,1,1,0,1,[[1128,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[29875,30453]]]]},{"k":"G3526","v":[["Niger",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27363]]]]},{"k":"G3527","v":[["Nicanor",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27106]]]]},{"k":"G3528","v":[["*",[28,24,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,1,1,1,2,[[1012,1,1,1,2]]],[44,3,2,2,4,[[1048,1,1,2,3],[1057,2,1,3,4]]],[61,6,5,4,9,[[1160,2,2,4,6],[1162,1,1,6,7],[1163,3,2,7,9]]],[65,17,15,9,24,[[1168,4,4,9,13],[1169,4,3,13,16],[1171,1,1,16,17],[1172,2,1,17,18],[1177,1,1,18,19],[1178,1,1,19,20],[1179,1,1,20,21],[1181,1,1,21,22],[1183,1,1,22,23],[1187,1,1,23,24]]]],[25427,26759,27995,28266,30563,30564,30607,30628,30629,30724,30728,30734,30743,30751,30758,30767,30784,30795,30879,30902,30915,30948,30989,31060]]],["conquer",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30795]]],["conquering",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30795]]],["overcame",[2,2,[[65,2,2,0,2,[[1169,1,1,0,1],[1178,1,1,1,2]]]],[30767,30902]]],["overcome",[11,10,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,1,1,1,2,[[1012,1,1,1,2]]],[44,3,2,2,4,[[1048,1,1,2,3],[1057,2,1,3,4]]],[61,3,3,4,7,[[1160,2,2,4,6],[1162,1,1,6,7]]],[65,3,3,7,10,[[1177,1,1,7,8],[1179,1,1,8,9],[1183,1,1,9,10]]]],[25427,26759,27995,28266,30563,30564,30607,30879,30915,30989]]],["overcometh",[11,10,[[61,3,2,0,2,[[1163,3,2,0,2]]],[65,8,8,2,10,[[1168,4,4,2,6],[1169,3,3,6,9],[1187,1,1,9,10]]]],[30628,30629,30724,30728,30734,30743,30751,30758,30767,31060]]],["prevailed",[1,1,[[65,1,1,0,1,[[1171,1,1,0,1]]]],[30784]]],["victory",[1,1,[[65,1,1,0,1,[[1181,1,1,0,1]]]],[30948]]]]},{"k":"G3529","v":[["victory",[1,1,[[61,1,1,0,1,[[1163,1,1,0,1]]]],[30628]]]]},{"k":"G3530","v":[["Nicodemus",[5,5,[[42,5,5,0,5,[[999,3,3,0,3],[1003,1,1,3,4],[1015,1,1,4,5]]]],[26121,26124,26129,26378,26864]]]]},{"k":"G3531","v":[["Nicolaitans",[2,2,[[65,2,2,0,2,[[1168,2,2,0,2]]]],[30723,30732]]]]},{"k":"G3532","v":[["Nicolas",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27106]]]]},{"k":"G3533","v":[["Nicopolis",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29935]]]]},{"k":"G3534","v":[["victory",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[45,3,3,1,4,[[1076,3,3,1,4]]]],[23509,28772,28773,28775]]]]},{"k":"G3535","v":[["Nineve",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25437]]]]},{"k":"G3536","v":[["*",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23530,25435]]],["Nineveh",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23530]]],["Ninevites",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25435]]]]},{"k":"G3537","v":[["bason",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26635]]]]},{"k":"G3538","v":[["*",[17,13,[[39,2,2,0,2,[[934,1,1,0,1],[943,1,1,1,2]]],[40,1,1,2,3,[[963,1,1,2,3]]],[42,13,9,3,12,[[1005,5,3,3,6],[1009,8,6,6,12]]],[53,1,1,12,13,[[1123,1,1,12,13]]]],[23299,23635,24466,26447,26451,26455,26635,26636,26638,26640,26642,26644,29773]]],["wash",[11,10,[[39,2,2,0,2,[[934,1,1,0,1],[943,1,1,1,2]]],[40,1,1,2,3,[[963,1,1,2,3]]],[42,8,7,3,10,[[1005,2,2,3,5],[1009,6,5,5,10]]]],[23299,23635,24466,26447,26451,26635,26636,26638,26640,26644]]],["washed",[6,6,[[42,5,5,0,5,[[1005,3,3,0,3],[1009,2,2,3,5]]],[53,1,1,5,6,[[1123,1,1,5,6]]]],[26447,26451,26455,26642,26644,29773]]]]},{"k":"G3539","v":[["*",[14,14,[[39,4,4,0,4,[[943,1,1,0,1],[944,2,2,1,3],[952,1,1,3,4]]],[40,3,3,4,7,[[963,1,1,4,5],[964,1,1,5,6],[969,1,1,6,7]]],[42,1,1,7,8,[[1008,1,1,7,8]]],[44,1,1,8,9,[[1046,1,1,8,9]]],[48,2,2,9,11,[[1099,2,2,9,11]]],[53,1,1,11,12,[[1119,1,1,11,12]]],[54,1,1,12,13,[[1126,1,1,12,13]]],[57,1,1,13,14,[[1143,1,1,13,14]]]],[23650,23681,23683,23972,24481,24517,24731,26620,27950,29255,29271,29703,29834,30175]]],["Consider",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29834]]],["perceive",[2,2,[[40,2,2,0,2,[[963,1,1,0,1],[964,1,1,1,2]]]],[24481,24517]]],["think",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29271]]],["understand",[8,8,[[39,4,4,0,4,[[943,1,1,0,1],[944,2,2,1,3],[952,1,1,3,4]]],[40,1,1,4,5,[[969,1,1,4,5]]],[42,1,1,5,6,[[1008,1,1,5,6]]],[48,1,1,6,7,[[1099,1,1,6,7]]],[57,1,1,7,8,[[1143,1,1,7,8]]]],[23650,23681,23683,23972,24731,26620,29255,30175]]],["understanding",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29703]]],["understood",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27950]]]]},{"k":"G3540","v":[["*",[6,6,[[46,5,5,0,5,[[1079,1,1,0,1],[1080,1,1,1,2],[1081,1,1,2,3],[1087,1,1,3,4],[1088,1,1,4,5]]],[49,1,1,5,6,[[1106,1,1,5,6]]]],[28835,28855,28863,28976,28992,29449]]],["devices",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28835]]],["minds",[4,4,[[46,3,3,0,3,[[1080,1,1,0,1],[1081,1,1,1,2],[1088,1,1,2,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]]],[28855,28863,28992,29449]]],["thought",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28976]]]]},{"k":"G3541","v":[["bastards",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30220]]]]},{"k":"G3542","v":[["*",[2,2,[[42,1,1,0,1,[[1006,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[26490,29844]]],["+",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29844]]],["pasture",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26490]]]]},{"k":"G3543","v":[["*",[15,15,[[39,3,3,0,3,[[933,1,1,0,1],[938,1,1,1,2],[948,1,1,2,3]]],[41,2,2,3,5,[[974,1,1,3,4],[975,1,1,4,5]]],[43,7,7,5,12,[[1024,1,1,5,6],[1025,1,1,6,7],[1031,1,1,7,8],[1033,2,2,8,10],[1034,1,1,10,11],[1038,1,1,11,12]]],[45,2,2,12,14,[[1068,2,2,12,14]]],[53,1,1,14,15,[[1124,1,1,14,15]]]],[23251,23451,23802,25017,25048,27141,27196,27433,27496,27510,27552,27693,28513,28523,29793]]],["Think",[2,2,[[39,2,2,0,2,[[933,1,1,0,1],[938,1,1,1,2]]]],[23251,23451]]],["suppose",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28513]]],["supposed",[4,4,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[43,2,2,2,4,[[1024,1,1,2,3],[1038,1,1,3,4]]]],[23802,25048,27141,27693]]],["supposing",[4,4,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,2,2,1,3,[[1031,1,1,1,2],[1033,1,1,2,3]]],[53,1,1,3,4,[[1124,1,1,3,4]]]],[25017,27433,27510,29793]]],["think",[2,2,[[43,1,1,0,1,[[1034,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[27552,28523]]],["thought",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27196]]],["wont",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27496]]]]},{"k":"G3544","v":[["*",[9,9,[[39,1,1,0,1,[[950,1,1,0,1]]],[41,6,6,1,7,[[979,1,1,1,2],[982,1,1,2,3],[983,3,3,3,6],[986,1,1,6,7]]],[55,2,2,7,9,[[1131,2,2,7,9]]]],[23907,25225,25388,25450,25451,25457,25556,29932,29936]]],["+",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29936]]],["law",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29932]]],["lawyer",[2,2,[[39,1,1,0,1,[[950,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[23907,25388]]],["lawyers",[5,5,[[41,5,5,0,5,[[979,1,1,0,1],[983,3,3,1,4],[986,1,1,4,5]]]],[25225,25450,25451,25457,25556]]]]},{"k":"G3545","v":[["lawfully",[2,2,[[53,1,1,0,1,[[1119,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[29704,29832]]]]},{"k":"G3546","v":[["money",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23891]]]]},{"k":"G3547","v":[["law",[3,3,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]],[53,1,1,2,3,[[1119,1,1,2,3]]]],[25124,27093,29703]]]]},{"k":"G3548","v":[["law",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28159]]]]},{"k":"G3549","v":[["*",[2,2,[[57,2,2,0,2,[[1139,1,1,0,1],[1140,1,1,1,2]]]],[30075,30098]]],["established",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30098]]],["law",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30075]]]]},{"k":"G3550","v":[["lawgiver",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30349]]]]},{"k":"G3551","v":[["*",[197,158,[[39,8,8,0,8,[[933,2,2,0,2],[935,1,1,2,3],[939,1,1,3,4],[940,1,1,4,5],[950,2,2,5,7],[951,1,1,7,8]]],[41,9,9,8,17,[[974,5,5,8,13],[982,1,1,13,14],[988,2,2,14,16],[996,1,1,16,17]]],[42,15,13,17,30,[[997,2,2,17,19],[1003,5,4,19,23],[1004,2,2,23,25],[1006,1,1,25,26],[1008,1,1,26,27],[1011,1,1,27,28],[1014,1,1,28,29],[1015,2,1,29,30]]],[43,19,19,30,49,[[1023,1,1,30,31],[1024,1,1,31,32],[1030,2,2,32,34],[1032,2,2,34,36],[1035,2,2,36,38],[1038,3,3,38,41],[1039,2,2,41,43],[1040,2,2,43,45],[1041,2,2,45,47],[1042,1,1,47,48],[1045,1,1,48,49]]],[44,75,51,49,100,[[1047,19,11,49,60],[1048,11,6,60,66],[1049,5,4,66,70],[1050,3,2,70,72],[1051,2,2,72,74],[1052,23,16,74,90],[1053,5,4,90,94],[1054,3,2,94,96],[1055,2,2,96,98],[1058,2,2,98,100]]],[45,9,7,100,107,[[1068,1,1,100,101],[1070,5,3,101,104],[1075,2,2,104,106],[1076,1,1,106,107]]],[47,32,25,107,132,[[1092,6,3,107,110],[1093,15,12,110,122],[1094,4,3,122,125],[1095,5,5,125,130],[1096,2,2,130,132]]],[48,1,1,132,133,[[1098,1,1,132,133]]],[49,3,3,133,136,[[1105,3,3,133,136]]],[53,2,2,136,138,[[1119,2,2,136,138]]],[57,14,13,138,151,[[1139,6,5,138,143],[1140,2,2,143,145],[1141,2,2,145,147],[1142,4,4,147,151]]],[58,10,7,151,158,[[1146,1,1,151,152],[1147,5,5,152,157],[1149,4,1,157,158]]]],[23251,23252,23328,23472,23494,23908,23912,23941,24995,24996,24997,25000,25012,25389,25636,25637,26035,26061,26089,26347,26351,26377,26379,26386,26398,26515,26614,26724,26816,26832,27114,27169,27377,27401,27447,27466,27570,27572,27684,27688,27692,27707,27716,27737,27763,27775,27783,27804,27922,27974,27975,27976,27977,27979,27980,27982,27985,27987,27988,27989,28010,28011,28012,28018,28019,28022,28035,28036,28037,28038,28060,28067,28082,28083,28092,28093,28094,28095,28096,28097,28098,28099,28100,28103,28105,28107,28112,28113,28114,28116,28118,28119,28120,28123,28186,28187,28192,28193,28274,28276,28526,28548,28549,28560,28699,28712,28774,29097,29100,29102,29104,29107,29112,29113,29114,29115,29119,29120,29121,29123,29125,29126,29135,29136,29152,29165,29166,29176,29180,29185,29190,29201,29244,29426,29427,29430,29704,29705,30069,30076,30080,30083,30092,30096,30102,30124,30127,30134,30141,30149,30161,30291,30301,30302,30303,30304,30305,30348]]],["+",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26379]]],["law",[194,155,[[39,8,8,0,8,[[933,2,2,0,2],[935,1,1,2,3],[939,1,1,3,4],[940,1,1,4,5],[950,2,2,5,7],[951,1,1,7,8]]],[41,9,9,8,17,[[974,5,5,8,13],[982,1,1,13,14],[988,2,2,14,16],[996,1,1,16,17]]],[42,14,12,17,29,[[997,2,2,17,19],[1003,4,3,19,22],[1004,2,2,22,24],[1006,1,1,24,25],[1008,1,1,25,26],[1011,1,1,26,27],[1014,1,1,27,28],[1015,2,1,28,29]]],[43,19,19,29,48,[[1023,1,1,29,30],[1024,1,1,30,31],[1030,2,2,31,33],[1032,2,2,33,35],[1035,2,2,35,37],[1038,3,3,37,40],[1039,2,2,40,42],[1040,2,2,42,44],[1041,2,2,44,46],[1042,1,1,46,47],[1045,1,1,47,48]]],[44,75,51,48,99,[[1047,19,11,48,59],[1048,11,6,59,65],[1049,5,4,65,69],[1050,3,2,69,71],[1051,2,2,71,73],[1052,23,16,73,89],[1053,5,4,89,93],[1054,3,2,93,95],[1055,2,2,95,97],[1058,2,2,97,99]]],[45,9,7,99,106,[[1068,1,1,99,100],[1070,5,3,100,103],[1075,2,2,103,105],[1076,1,1,105,106]]],[47,32,25,106,131,[[1092,6,3,106,109],[1093,15,12,109,121],[1094,4,3,121,124],[1095,5,5,124,129],[1096,2,2,129,131]]],[48,1,1,131,132,[[1098,1,1,131,132]]],[49,3,3,132,135,[[1105,3,3,132,135]]],[53,2,2,135,137,[[1119,2,2,135,137]]],[57,12,11,137,148,[[1139,6,5,137,142],[1140,1,1,142,143],[1141,2,2,143,145],[1142,3,3,145,148]]],[58,10,7,148,155,[[1146,1,1,148,149],[1147,5,5,149,154],[1149,4,1,154,155]]]],[23251,23252,23328,23472,23494,23908,23912,23941,24995,24996,24997,25000,25012,25389,25636,25637,26035,26061,26089,26347,26351,26377,26386,26398,26515,26614,26724,26816,26832,27114,27169,27377,27401,27447,27466,27570,27572,27684,27688,27692,27707,27716,27737,27763,27775,27783,27804,27922,27974,27975,27976,27977,27979,27980,27982,27985,27987,27988,27989,28010,28011,28012,28018,28019,28022,28035,28036,28037,28038,28060,28067,28082,28083,28092,28093,28094,28095,28096,28097,28098,28099,28100,28103,28105,28107,28112,28113,28114,28116,28118,28119,28120,28123,28186,28187,28192,28193,28274,28276,28526,28548,28549,28560,28699,28712,28774,29097,29100,29102,29104,29107,29112,29113,29114,29115,29119,29120,29121,29123,29125,29126,29135,29136,29152,29165,29166,29176,29180,29185,29190,29201,29244,29426,29427,29430,29704,29705,30069,30076,30080,30083,30092,30096,30124,30127,30134,30141,30161,30291,30301,30302,30303,30304,30305,30348]]],["laws",[2,2,[[57,2,2,0,2,[[1140,1,1,0,1],[1142,1,1,1,2]]]],[30102,30149]]]]},{"k":"G3552","v":[["doting",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29792]]]]},{"k":"G3553","v":[["disease",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26214]]]]},{"k":"G3554","v":[["*",[12,12,[[39,5,5,0,5,[[932,2,2,0,2],[936,1,1,2,3],[937,1,1,3,4],[938,1,1,4,5]]],[40,2,2,5,7,[[957,1,1,5,6],[959,1,1,6,7]]],[41,4,4,7,11,[[976,1,1,7,8],[978,1,1,8,9],[979,1,1,9,10],[981,1,1,10,11]]],[43,1,1,11,12,[[1036,1,1,11,12]]]],[23232,23233,23362,23414,23418,24249,24303,25103,25163,25216,25302,27597]]],["diseases",[6,6,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,3,3,2,5,[[976,1,1,2,3],[978,1,1,3,4],[981,1,1,4,5]]],[43,1,1,5,6,[[1036,1,1,5,6]]]],[23233,24249,25103,25163,25302,27597]]],["infirmities",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25216]]],["sickness",[3,3,[[39,3,3,0,3,[[932,1,1,0,1],[937,1,1,1,2],[938,1,1,2,3]]]],[23232,23414,23418]]],["sicknesses",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]]],[23362,24303]]]]},{"k":"G3555","v":[["brood",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25552]]]]},{"k":"G3556","v":[["chickens",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23955]]]]},{"k":"G3557","v":[["*",[3,3,[[43,2,2,0,2,[[1022,2,2,0,2]]],[55,1,1,2,3,[[1130,1,1,2,3]]]],[27061,27062,29918]]],["back",[2,2,[[43,2,2,0,2,[[1022,2,2,0,2]]]],[27061,27062]]],["purloining",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29918]]]]},{"k":"G3558","v":[["*",[7,7,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,3,3,1,4,[[983,1,1,1,2],[984,1,1,2,3],[985,1,1,3,4]]],[43,2,2,4,6,[[1044,1,1,4,5],[1045,1,1,5,6]]],[65,1,1,6,7,[[1187,1,1,6,7]]]],[23531,25436,25514,25547,27868,27912,31066]]],["south",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[985,1,1,2,3]]],[65,1,1,3,4,[[1187,1,1,3,4]]]],[23531,25436,25547,31066]]],["wind",[3,3,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,2,2,1,3,[[1044,1,1,1,2],[1045,1,1,2,3]]]],[25514,27868,27912]]]]},{"k":"G3559","v":[["admonition",[3,3,[[45,1,1,0,1,[[1071,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]],[55,1,1,2,3,[[1131,1,1,2,3]]]],[28578,29341,29933]]]]},{"k":"G3560","v":[["*",[8,8,[[43,1,1,0,1,[[1037,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[50,2,2,3,5,[[1107,1,1,3,4],[1109,1,1,4,5]]],[51,2,2,5,7,[[1115,2,2,5,7]]],[52,1,1,7,8,[[1118,1,1,7,8]]]],[27657,28317,28447,29493,29533,29633,29635,29693]]],["admonish",[3,3,[[44,1,1,0,1,[[1060,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]],[52,1,1,2,3,[[1118,1,1,2,3]]]],[28317,29633,29693]]],["admonishing",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29533]]],["warn",[3,3,[[43,1,1,0,1,[[1037,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]],[51,1,1,2,3,[[1115,1,1,2,3]]]],[27657,28447,29635]]],["warning",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29493]]]]},{"k":"G3561","v":[["moon",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29510]]]]},{"k":"G3562","v":[["discreetly",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24707]]]]},{"k":"G3563","v":[["*",[24,22,[[41,1,1,0,1,[[996,1,1,0,1]]],[44,6,6,1,7,[[1046,1,1,1,2],[1052,2,2,2,4],[1056,1,1,4,5],[1057,1,1,5,6],[1059,1,1,6,7]]],[45,7,5,7,12,[[1062,1,1,7,8],[1063,2,1,8,9],[1075,4,3,9,12]]],[48,2,2,12,14,[[1100,2,2,12,14]]],[49,1,1,14,15,[[1106,1,1,14,15]]],[50,1,1,15,16,[[1108,1,1,15,16]]],[52,1,1,16,17,[[1117,1,1,16,17]]],[53,1,1,17,18,[[1124,1,1,17,18]]],[54,1,1,18,19,[[1127,1,1,18,19]]],[55,1,1,19,20,[[1129,1,1,19,20]]],[65,2,2,20,22,[[1179,1,1,20,21],[1183,1,1,21,22]]]],[26036,27958,28114,28116,28243,28247,28285,28373,28410,28692,28693,28697,29289,29295,29449,29512,29663,29793,29861,29907,30926,30984]]],["mind",[15,14,[[44,6,6,0,6,[[1046,1,1,0,1],[1052,2,2,1,3],[1056,1,1,3,4],[1057,1,1,4,5],[1059,1,1,5,6]]],[45,3,2,6,8,[[1062,1,1,6,7],[1063,2,1,7,8]]],[48,2,2,8,10,[[1100,2,2,8,10]]],[50,1,1,10,11,[[1108,1,1,10,11]]],[52,1,1,11,12,[[1117,1,1,11,12]]],[55,1,1,12,13,[[1129,1,1,12,13]]],[65,1,1,13,14,[[1183,1,1,13,14]]]],[27958,28114,28116,28243,28247,28285,28373,28410,29289,29295,29512,29663,29907,30984]]],["minds",[2,2,[[53,1,1,0,1,[[1124,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[29793,29861]]],["understanding",[7,6,[[41,1,1,0,1,[[996,1,1,0,1]]],[45,4,3,1,4,[[1075,4,3,1,4]]],[49,1,1,4,5,[[1106,1,1,4,5]]],[65,1,1,5,6,[[1179,1,1,5,6]]]],[26036,28692,28693,28697,29449,30926]]]]},{"k":"G3564","v":[["Nymphas",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29557]]]]},{"k":"G3565","v":[["*",[8,7,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,2,1,1,2,[[984,2,1,1,2]]],[42,1,1,2,3,[[999,1,1,2,3]]],[65,4,4,3,7,[[1184,1,1,3,4],[1187,2,2,4,6],[1188,1,1,6,7]]]],[23452,25512,26149,31016,31055,31062,31097]]],["bride",[5,5,[[42,1,1,0,1,[[999,1,1,0,1]]],[65,4,4,1,5,[[1184,1,1,1,2],[1187,2,2,2,4],[1188,1,1,4,5]]]],[26149,31016,31055,31062,31097]]],["law",[3,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,2,1,1,2,[[984,2,1,1,2]]]],[23452,25512]]]]},{"k":"G3566","v":[["*",[16,12,[[39,6,5,0,5,[[937,2,1,0,1],[953,4,4,1,5]]],[40,3,2,5,7,[[958,3,2,5,7]]],[41,2,2,7,9,[[977,2,2,7,9]]],[42,4,2,9,11,[[998,1,1,9,10],[999,3,1,10,11]]],[65,1,1,11,12,[[1184,1,1,11,12]]]],[23394,24009,24013,24014,24018,24279,24280,25141,25142,26104,26149,31016]]],["bridegroom",[15,12,[[39,6,5,0,5,[[937,2,1,0,1],[953,4,4,1,5]]],[40,3,2,5,7,[[958,3,2,5,7]]],[41,2,2,7,9,[[977,2,2,7,9]]],[42,3,2,9,11,[[998,1,1,9,10],[999,2,1,10,11]]],[65,1,1,11,12,[[1184,1,1,11,12]]]],[23394,24009,24013,24014,24018,24279,24280,25141,25142,26104,26149,31016]]],["bridegroom's",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26149]]]]},{"k":"G3567","v":[["bridechamber",[3,3,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,1,1,2,3,[[977,1,1,2,3]]]],[23394,24279,25141]]]]},{"k":"G3568","v":[["*",[138,133,[[39,4,4,0,4,[[952,1,1,0,1],[954,1,1,1,2],[955,2,2,2,4]]],[40,3,3,4,7,[[966,1,1,4,5],[969,1,1,5,6],[971,1,1,6,7]]],[41,12,11,7,18,[[973,1,1,7,8],[974,1,1,8,9],[977,1,1,9,10],[978,3,2,10,12],[983,1,1,12,13],[984,1,1,13,14],[988,1,1,14,15],[991,1,1,15,16],[994,2,2,16,18]]],[42,28,27,18,45,[[998,1,1,18,19],[1000,2,2,19,21],[1001,1,1,21,22],[1004,2,2,22,24],[1005,2,2,24,26],[1007,2,2,26,28],[1008,3,2,28,30],[1009,2,2,30,32],[1010,1,1,32,33],[1011,2,2,33,35],[1012,5,5,35,40],[1013,3,3,40,43],[1014,1,1,43,44],[1017,1,1,44,45]]],[43,23,23,45,68,[[1019,1,1,45,46],[1020,1,1,46,47],[1024,3,3,47,50],[1027,2,2,50,52],[1029,1,1,52,53],[1030,1,1,53,54],[1032,1,1,54,55],[1033,2,2,55,57],[1035,1,1,57,58],[1037,2,2,58,60],[1039,2,2,60,62],[1040,2,2,62,64],[1041,2,2,64,66],[1043,2,2,66,68]]],[44,13,13,68,81,[[1048,1,1,68,69],[1050,2,2,69,71],[1051,2,2,71,73],[1053,3,3,73,76],[1056,3,3,76,79],[1058,1,1,79,80],[1061,1,1,80,81]]],[45,4,4,81,85,[[1064,1,1,81,82],[1068,1,1,82,83],[1073,1,1,83,84],[1077,1,1,84,85]]],[46,7,5,85,90,[[1082,2,1,85,86],[1083,2,1,86,87],[1084,1,1,87,88],[1085,1,1,88,89],[1090,1,1,89,90]]],[47,6,6,90,96,[[1091,1,1,90,91],[1092,1,1,91,92],[1093,1,1,92,93],[1094,3,3,93,96]]],[48,4,4,96,100,[[1098,1,1,96,97],[1099,2,2,97,99],[1101,1,1,99,100]]],[49,5,5,100,105,[[1103,3,3,100,103],[1104,1,1,103,104],[1105,1,1,104,105]]],[50,1,1,105,106,[[1107,1,1,105,106]]],[51,1,1,106,107,[[1113,1,1,106,107]]],[52,1,1,107,108,[[1117,1,1,107,108]]],[53,2,2,108,110,[[1122,1,1,108,109],[1124,1,1,109,110]]],[54,2,2,110,112,[[1125,1,1,110,111],[1128,1,1,111,112]]],[55,1,1,112,113,[[1130,1,1,112,113]]],[57,5,5,113,118,[[1134,1,1,113,114],[1141,3,3,114,117],[1144,1,1,117,118]]],[58,3,3,118,121,[[1149,2,2,118,120],[1150,1,1,120,121]]],[59,5,4,121,125,[[1151,1,1,121,122],[1152,3,2,122,124],[1153,1,1,124,125]]],[60,2,2,125,127,[[1158,2,2,125,127]]],[61,4,4,127,131,[[1160,2,2,127,129],[1161,1,1,129,130],[1162,1,1,130,131]]],[62,1,1,131,132,[[1164,1,1,131,132]]],[64,1,1,132,133,[[1166,1,1,132,133]]]],[23978,24119,24171,24172,24618,24736,24858,24941,25002,25117,25167,25171,25444,25511,25645,25773,25900,25933,26103,26174,26179,26235,26421,26433,26461,26481,26531,26545,26607,26611,26661,26666,26697,26721,26723,26731,26748,26755,26756,26758,26764,26766,26772,26821,26908,26982,27013,27120,27150,27168,27264,27292,27348,27373,27452,27519,27520,27563,27648,27651,27705,27720,27749,27755,27782,27794,27829,27840,28017,28056,28058,28087,28089,28117,28134,28138,28214,28239,28240,28277,28362,28412,28501,28654,28788,28893,28900,28925,28946,29045,29080,29101,29105,29140,29156,29160,29231,29256,29261,29312,29366,29381,29391,29403,29439,29489,29598,29667,29755,29805,29819,29880,29920,29985,30110,30129,30131,30238,30350,30353,30355,30386,30409,30424,30445,30529,30540,30568,30578,30581,30606,30650,30697]]],["+",[7,7,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[43,1,1,2,3,[[1041,1,1,2,3]]],[44,1,1,3,4,[[1051,1,1,3,4]]],[46,1,1,4,5,[[1082,1,1,4,5]]],[48,1,1,5,6,[[1098,1,1,5,6]]],[53,1,1,6,7,[[1124,1,1,6,7]]]],[24736,25933,27794,28089,28893,29231,29805]]],["Now",[12,12,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,6,6,1,7,[[1004,1,1,1,2],[1008,2,2,2,4],[1009,1,1,4,5],[1012,1,1,5,6],[1013,1,1,6,7]]],[43,4,4,7,11,[[1027,1,1,7,8],[1029,1,1,8,9],[1032,1,1,9,10],[1040,1,1,10,11]]],[46,1,1,11,12,[[1084,1,1,11,12]]]],[25444,26433,26607,26611,26661,26756,26766,27292,27348,27452,27749,28925]]],["henceforth",[4,4,[[41,3,3,0,3,[[973,1,1,0,1],[977,1,1,1,2],[984,1,1,2,3]]],[43,1,1,3,4,[[1035,1,1,3,4]]]],[24941,25117,25511,27563]]],["is",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29755]]],["late",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26531]]],["now",[106,103,[[39,3,3,0,3,[[954,1,1,0,1],[955,2,2,1,3]]],[40,2,2,3,5,[[966,1,1,3,4],[971,1,1,4,5]]],[41,7,6,5,11,[[974,1,1,5,6],[978,3,2,6,8],[988,1,1,8,9],[991,1,1,9,10],[994,1,1,10,11]]],[42,21,21,11,32,[[998,1,1,11,12],[1000,2,2,12,14],[1001,1,1,14,15],[1004,1,1,15,16],[1005,2,2,16,18],[1007,1,1,18,19],[1008,1,1,19,20],[1009,1,1,20,21],[1010,1,1,21,22],[1011,2,2,22,24],[1012,4,4,24,28],[1013,2,2,28,30],[1014,1,1,30,31],[1017,1,1,31,32]]],[43,17,17,32,49,[[1019,1,1,32,33],[1020,1,1,33,34],[1024,3,3,34,37],[1027,1,1,37,38],[1030,1,1,38,39],[1033,2,2,39,41],[1037,2,2,41,43],[1039,2,2,43,45],[1040,1,1,45,46],[1041,1,1,46,47],[1043,2,2,47,49]]],[44,9,9,49,58,[[1050,2,2,49,51],[1051,1,1,51,52],[1053,2,2,52,54],[1056,2,2,54,56],[1058,1,1,56,57],[1061,1,1,57,58]]],[45,3,3,58,61,[[1064,1,1,58,59],[1068,1,1,59,60],[1073,1,1,60,61]]],[46,5,4,61,65,[[1082,1,1,61,62],[1083,2,1,62,63],[1085,1,1,63,64],[1090,1,1,64,65]]],[47,6,6,65,71,[[1091,1,1,65,66],[1092,1,1,66,67],[1093,1,1,67,68],[1094,3,3,68,71]]],[48,3,3,71,74,[[1099,2,2,71,73],[1101,1,1,73,74]]],[49,5,5,74,79,[[1103,3,3,74,77],[1104,1,1,77,78],[1105,1,1,78,79]]],[50,1,1,79,80,[[1107,1,1,79,80]]],[51,1,1,80,81,[[1113,1,1,80,81]]],[52,1,1,81,82,[[1117,1,1,81,82]]],[54,1,1,82,83,[[1125,1,1,82,83]]],[57,5,5,83,88,[[1134,1,1,83,84],[1141,3,3,84,87],[1144,1,1,87,88]]],[58,3,3,88,91,[[1149,2,2,88,90],[1150,1,1,90,91]]],[59,5,4,91,95,[[1151,1,1,91,92],[1152,3,2,92,94],[1153,1,1,94,95]]],[60,2,2,95,97,[[1158,2,2,95,97]]],[61,4,4,97,101,[[1160,2,2,97,99],[1161,1,1,99,100],[1162,1,1,100,101]]],[62,1,1,101,102,[[1164,1,1,101,102]]],[64,1,1,102,103,[[1166,1,1,102,103]]]],[24119,24171,24172,24618,24858,25002,25167,25171,25645,25773,25900,26103,26174,26179,26235,26421,26461,26481,26545,26611,26666,26697,26721,26723,26731,26748,26755,26758,26764,26772,26821,26908,26982,27013,27120,27150,27168,27264,27373,27519,27520,27648,27651,27705,27720,27755,27782,27829,27840,28056,28058,28087,28117,28138,28239,28240,28277,28362,28412,28501,28654,28893,28900,28946,29045,29080,29101,29105,29140,29156,29160,29256,29261,29312,29366,29381,29391,29403,29439,29489,29598,29667,29819,29985,30110,30129,30131,30238,30350,30353,30355,30386,30409,30424,30445,30529,30540,30568,30578,30581,30606,30650,30697]]],["present",[4,4,[[44,2,2,0,2,[[1053,1,1,0,1],[1056,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]],[55,1,1,3,4,[[1130,1,1,3,4]]]],[28134,28214,29880,29920]]],["this",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28017]]],["time",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[45,1,1,1,2,[[1077,1,1,1,2]]]],[23978,28788]]]]},{"k":"G3569","v":[["now",[5,5,[[43,5,5,0,5,[[1021,1,1,0,1],[1022,1,1,1,2],[1034,1,1,2,3],[1037,1,1,3,4],[1044,1,1,4,5]]]],[27051,27097,27553,27658,27877]]]]},{"k":"G3570","v":[["*",[21,21,[[44,6,6,0,6,[[1048,1,1,0,1],[1051,1,1,1,2],[1052,2,2,2,4],[1060,2,2,4,6]]],[45,5,5,6,11,[[1066,1,1,6,7],[1073,1,1,7,8],[1074,1,1,8,9],[1075,1,1,9,10],[1076,1,1,10,11]]],[46,2,2,11,13,[[1085,2,2,11,13]]],[48,1,1,13,14,[[1098,1,1,13,14]]],[50,3,3,14,17,[[1107,2,2,14,16],[1109,1,1,16,17]]],[56,2,2,17,19,[[1132,2,2,17,19]]],[57,2,2,19,21,[[1140,1,1,19,20],[1143,1,1,20,21]]]],[28012,28090,28097,28108,28326,28328,28465,28652,28678,28684,28738,28943,28954,29242,29486,29491,29525,29947,29949,30098,30188]]],["Now",[3,3,[[44,1,1,0,1,[[1052,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]]],[28108,28684,28943]]],["now",[18,18,[[44,5,5,0,5,[[1048,1,1,0,1],[1051,1,1,1,2],[1052,1,1,2,3],[1060,2,2,3,5]]],[45,4,4,5,9,[[1066,1,1,5,6],[1073,1,1,6,7],[1074,1,1,7,8],[1076,1,1,8,9]]],[46,1,1,9,10,[[1085,1,1,9,10]]],[48,1,1,10,11,[[1098,1,1,10,11]]],[50,3,3,11,14,[[1107,2,2,11,13],[1109,1,1,13,14]]],[56,2,2,14,16,[[1132,2,2,14,16]]],[57,2,2,16,18,[[1140,1,1,16,17],[1143,1,1,17,18]]]],[28012,28090,28097,28326,28328,28465,28652,28678,28738,28954,29242,29486,29491,29525,29947,29949,30098,30188]]]]},{"k":"G3571","v":[["*",[65,62,[[39,10,9,0,9,[[930,1,1,0,1],[932,1,1,1,2],[940,2,1,2,3],[942,1,1,3,4],[953,1,1,4,5],[954,2,2,5,7],[955,1,1,7,8],[956,1,1,8,9]]],[40,5,5,9,14,[[960,1,1,9,10],[961,1,1,10,11],[962,1,1,11,12],[970,2,2,12,14]]],[41,7,7,14,21,[[974,2,2,14,16],[977,1,1,16,17],[984,1,1,17,18],[989,1,1,18,19],[990,1,1,19,20],[993,1,1,20,21]]],[42,7,7,21,28,[[999,1,1,21,22],[1003,1,1,22,23],[1005,1,1,23,24],[1007,1,1,24,25],[1009,1,1,25,26],[1015,1,1,26,27],[1017,1,1,27,28]]],[43,16,15,28,43,[[1022,1,1,28,29],[1026,2,2,29,31],[1029,1,1,31,32],[1033,2,2,32,34],[1034,1,1,34,35],[1035,1,1,35,36],[1037,1,1,36,37],[1040,3,3,37,40],[1043,1,1,40,41],[1044,3,2,41,43]]],[44,1,1,43,44,[[1058,1,1,43,44]]],[45,1,1,44,45,[[1072,1,1,44,45]]],[51,6,5,45,50,[[1112,1,1,45,46],[1113,1,1,46,47],[1115,4,3,47,50]]],[52,1,1,50,51,[[1118,1,1,50,51]]],[53,1,1,51,52,[[1123,1,1,51,52]]],[54,1,1,52,53,[[1125,1,1,52,53]]],[60,1,1,53,54,[[1158,1,1,53,54]]],[65,8,8,54,62,[[1170,1,1,54,55],[1173,1,1,55,56],[1174,1,1,56,57],[1178,1,1,57,58],[1180,1,1,58,59],[1186,1,1,59,60],[1187,1,1,60,61],[1188,1,1,61,62]]]],[23183,23211,23529,23622,24014,24085,24088,24193,24208,24350,24369,24455,24781,24784,24981,25010,25112,25479,25685,25695,25863,26122,26378,26444,26533,26660,26864,26901,27078,27240,27241,27343,27492,27516,27533,27566,27657,27745,27757,27765,27830,27878,27882,28278,28623,29579,29600,29623,29626,29628,29686,29768,29812,30532,30776,30825,30839,30901,30937,31048,31078,31085]]],["+",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[24014,27882]]],["Night",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29600]]],["night",[59,58,[[39,6,6,0,6,[[930,1,1,0,1],[942,1,1,1,2],[954,2,2,2,4],[955,1,1,4,5],[956,1,1,5,6]]],[40,5,5,6,11,[[960,1,1,6,7],[961,1,1,7,8],[962,1,1,8,9],[970,2,2,9,11]]],[41,7,7,11,18,[[974,2,2,11,13],[977,1,1,13,14],[984,1,1,14,15],[989,1,1,15,16],[990,1,1,16,17],[993,1,1,17,18]]],[42,7,7,18,25,[[999,1,1,18,19],[1003,1,1,19,20],[1005,1,1,20,21],[1007,1,1,21,22],[1009,1,1,22,23],[1015,1,1,23,24],[1017,1,1,24,25]]],[43,15,15,25,40,[[1022,1,1,25,26],[1026,2,2,26,28],[1029,1,1,28,29],[1033,2,2,29,31],[1034,1,1,31,32],[1035,1,1,32,33],[1037,1,1,33,34],[1040,3,3,34,37],[1043,1,1,37,38],[1044,2,2,38,40]]],[44,1,1,40,41,[[1058,1,1,40,41]]],[45,1,1,41,42,[[1072,1,1,41,42]]],[51,5,4,42,46,[[1112,1,1,42,43],[1115,4,3,43,46]]],[52,1,1,46,47,[[1118,1,1,46,47]]],[53,1,1,47,48,[[1123,1,1,47,48]]],[54,1,1,48,49,[[1125,1,1,48,49]]],[60,1,1,49,50,[[1158,1,1,49,50]]],[65,8,8,50,58,[[1170,1,1,50,51],[1173,1,1,51,52],[1174,1,1,52,53],[1178,1,1,53,54],[1180,1,1,54,55],[1186,1,1,55,56],[1187,1,1,56,57],[1188,1,1,57,58]]]],[23183,23622,24085,24088,24193,24208,24350,24369,24455,24781,24784,24981,25010,25112,25479,25685,25695,25863,26122,26378,26444,26533,26660,26864,26901,27078,27240,27241,27343,27492,27516,27533,27566,27657,27745,27757,27765,27830,27878,27882,28278,28623,29579,29623,29626,29628,29686,29768,29812,30532,30776,30825,30839,30901,30937,31048,31078,31085]]],["nights",[3,2,[[39,3,2,0,2,[[932,1,1,0,1],[940,2,1,1,2]]]],[23211,23529]]]]},{"k":"G3572","v":[["pierced",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26859]]]]},{"k":"G3573","v":[["*",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[24013,30503]]],["slumbered",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24013]]],["slumbereth",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30503]]]]},{"k":"G3574","v":[["day",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29014]]]]},{"k":"G3575","v":[["*",[8,8,[[39,2,2,0,2,[[952,2,2,0,2]]],[41,3,3,2,5,[[975,1,1,2,3],[989,2,2,3,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]],[59,1,1,6,7,[[1153,1,1,6,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]]],[23994,23995,25061,25677,25678,30179,30444,30505]]],["Noah",[3,3,[[57,1,1,0,1,[[1143,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[30179,30444,30505]]],["Noe",[5,5,[[39,2,2,0,2,[[952,2,2,0,2]]],[41,3,3,2,5,[[975,1,1,2,3],[989,2,2,3,5]]]],[23994,23995,25061,25677,25678]]]]},{"k":"G3576","v":[["*",[2,2,[[57,2,2,0,2,[[1137,1,1,0,1],[1138,1,1,1,2]]]],[30041,30056]]],["dull",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30041]]],["slothful",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30056]]]]},{"k":"G3577","v":[["back",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28219]]]]},{"k":"G3578","v":[["lodging",[2,2,[[43,1,1,0,1,[[1045,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[27922,29960]]]]},{"k":"G3579","v":[["*",[10,10,[[43,7,7,0,7,[[1027,4,4,0,4],[1034,1,1,4,5],[1038,1,1,5,6],[1045,1,1,6,7]]],[57,1,1,7,8,[[1145,1,1,7,8]]],[59,2,2,8,10,[[1154,2,2,8,10]]]],[27265,27277,27282,27291,27543,27680,27906,30243,30450,30458]]],["+",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30458]]],["entertained",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30243]]],["lodge",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27680]]],["lodged",[4,4,[[43,4,4,0,4,[[1027,3,3,0,3],[1045,1,1,3,4]]]],[27277,27282,27291,27906]]],["lodgeth",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27265]]],["strange",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30450]]],["things",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27543]]]]},{"k":"G3580","v":[["strangers",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29773]]]]},{"k":"G3581","v":[["*",[14,14,[[39,5,5,0,5,[[953,4,4,0,4],[955,1,1,4,5]]],[43,2,2,5,7,[[1034,2,2,5,7]]],[44,1,1,7,8,[[1061,1,1,7,8]]],[48,2,2,8,10,[[1098,2,2,8,10]]],[57,2,2,10,12,[[1143,1,1,10,11],[1145,1,1,11,12]]],[59,1,1,12,13,[[1154,1,1,12,13]]],[63,1,1,13,14,[[1165,1,1,13,14]]]],[24043,24046,24051,24052,24136,27541,27544,28359,29241,29248,30185,30250,30458,30663]]],["+",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24136]]],["host",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28359]]],["strange",[2,2,[[43,1,1,0,1,[[1034,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[27541,30250]]],["stranger",[4,4,[[39,4,4,0,4,[[953,4,4,0,4]]]],[24043,24046,24051,24052]]],["strangers",[5,5,[[43,1,1,0,1,[[1034,1,1,0,1]]],[48,2,2,1,3,[[1098,2,2,1,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]],[63,1,1,4,5,[[1165,1,1,4,5]]]],[27544,29241,29248,30185,30663]]],["thing",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30458]]]]},{"k":"G3582","v":[["*",[2,2,[[40,2,2,0,2,[[963,2,2,0,2]]]],[24467,24471]]],["+",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24467]]],["pots",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24471]]]]},{"k":"G3583","v":[["*",[16,16,[[39,3,3,0,3,[[941,1,1,0,1],[949,2,2,1,3]]],[40,7,7,3,10,[[959,2,2,3,5],[960,1,1,5,6],[961,1,1,6,7],[965,1,1,7,8],[967,2,2,8,10]]],[41,1,1,10,11,[[980,1,1,10,11]]],[42,1,1,11,12,[[1011,1,1,11,12]]],[58,1,1,12,13,[[1146,1,1,12,13]]],[59,1,1,13,14,[[1151,1,1,13,14]]],[65,2,2,14,16,[[1180,1,1,14,15],[1182,1,1,15,16]]]],[23545,23845,23846,24289,24291,24329,24393,24556,24660,24661,25251,26705,30277,30398,30941,30966]]],["away",[7,7,[[39,3,3,0,3,[[941,1,1,0,1],[949,2,2,1,3]]],[40,3,3,3,6,[[960,1,1,3,4],[965,1,1,4,5],[967,1,1,5,6]]],[41,1,1,6,7,[[980,1,1,6,7]]]],[23545,23845,23846,24329,24556,24661,25251]]],["ripe",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30941]]],["up",[3,3,[[40,2,2,0,2,[[961,1,1,0,1],[967,1,1,1,2]]],[65,1,1,2,3,[[1182,1,1,2,3]]]],[24393,24660,30966]]],["withered",[3,3,[[40,2,2,0,2,[[959,2,2,0,2]]],[42,1,1,2,3,[[1011,1,1,2,3]]]],[24289,24291,26705]]],["withereth",[2,2,[[58,1,1,0,1,[[1146,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[30277,30398]]]]},{"k":"G3584","v":[["*",[7,7,[[39,2,2,0,2,[[940,1,1,0,1],[951,1,1,1,2]]],[41,3,3,2,5,[[978,2,2,2,4],[995,1,1,4,5]]],[42,1,1,5,6,[[1001,1,1,5,6]]],[57,1,1,6,7,[[1143,1,1,6,7]]]],[23499,23933,25152,25154,25966,26213,30201]]],["dry",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[25966,30201]]],["land",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23933]]],["withered",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,2,2,1,3,[[978,2,2,1,3]]],[42,1,1,3,4,[[1001,1,1,3,4]]]],[23499,25152,25154,26213]]]]},{"k":"G3585","v":[["wood",[2,2,[[54,1,1,0,1,[[1126,1,1,0,1]]],[65,1,1,1,2,[[1175,1,1,1,2]]]],[29847,30860]]]]},{"k":"G3586","v":[["*",[19,17,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,2,2,2,4,[[970,2,2,2,4]]],[41,2,2,4,6,[[994,1,1,4,5],[995,1,1,5,6]]],[43,4,4,6,10,[[1022,1,1,6,7],[1027,1,1,7,8],[1030,1,1,8,9],[1033,1,1,9,10]]],[45,1,1,10,11,[[1064,1,1,10,11]]],[47,1,1,11,12,[[1093,1,1,11,12]]],[59,1,1,12,13,[[1152,1,1,12,13]]],[65,6,4,13,17,[[1168,1,1,13,14],[1184,2,1,14,15],[1188,3,2,15,17]]]],[24101,24109,24797,24802,25916,25966,27089,27298,27391,27507,28422,29115,30423,30724,31005,31082,31094]]],["staves",[5,5,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,2,2,2,4,[[970,2,2,2,4]]],[41,1,1,4,5,[[994,1,1,4,5]]]],[24101,24109,24797,24802,25916]]],["stocks",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27507]]],["tree",[10,9,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,3,3,1,4,[[1022,1,1,1,2],[1027,1,1,2,3],[1030,1,1,3,4]]],[47,1,1,4,5,[[1093,1,1,4,5]]],[59,1,1,5,6,[[1152,1,1,5,6]]],[65,4,3,6,9,[[1168,1,1,6,7],[1188,3,2,7,9]]]],[25966,27089,27298,27391,29115,30423,30724,31082,31094]]],["wood",[3,2,[[45,1,1,0,1,[[1064,1,1,0,1]]],[65,2,1,1,2,[[1184,2,1,1,2]]]],[28422,31005]]]]},{"k":"G3587","v":[["*",[3,3,[[43,1,1,0,1,[[1038,1,1,0,1]]],[45,2,2,1,3,[[1072,2,2,1,3]]]],[27688,28605,28606]]],["shave",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27688]]],["shaven",[2,2,[[45,2,2,0,2,[[1072,2,2,0,2]]]],[28605,28606]]]]},{"k":"G3588","v":[["*",[8497,4721,[[39,1238,673,0,673,[[929,15,8,0,8],[930,41,20,8,28],[931,17,8,28,36],[932,27,15,36,51],[933,44,28,51,79],[934,39,19,79,98],[935,29,14,98,112],[936,39,20,112,132],[937,46,25,132,157],[938,24,17,157,174],[939,20,10,174,184],[940,69,36,184,220],[941,95,40,220,260],[942,49,28,260,288],[943,42,26,288,314],[944,44,22,314,336],[945,23,16,336,352],[946,26,18,352,370],[947,20,16,370,386],[948,42,25,386,411],[949,75,38,411,449],[950,48,30,449,479],[951,50,24,479,503],[952,65,29,503,532],[953,44,32,532,564],[954,87,49,564,613],[955,90,45,613,658],[956,28,15,658,673]]],[40,767,440,673,1113,[[957,49,30,673,703],[958,48,21,703,724],[959,26,17,724,741],[960,58,26,741,767],[961,56,32,767,799],[962,54,31,799,830],[963,45,25,830,855],[964,40,22,855,877],[965,37,30,877,907],[966,48,36,907,943],[967,37,23,943,966],[968,64,33,966,999],[969,34,20,999,1019],[970,94,48,1019,1067],[971,54,33,1067,1100],[972,23,13,1100,1113]]],[41,1098,659,1113,1772,[[973,59,41,1113,1154],[974,42,27,1154,1181],[975,27,18,1181,1199],[976,50,30,1199,1229],[977,48,20,1229,1249],[978,52,25,1249,1274],[979,47,30,1274,1304],[980,81,39,1304,1343],[981,58,39,1343,1382],[982,38,23,1382,1405],[983,59,32,1405,1437],[984,56,36,1437,1473],[985,34,21,1473,1494],[986,25,18,1494,1512],[987,23,18,1512,1530],[988,31,18,1530,1548],[989,41,20,1548,1568],[990,29,22,1568,1590],[991,41,27,1590,1617],[992,57,32,1617,1649],[993,29,17,1649,1666],[994,71,47,1666,1713],[995,52,32,1713,1745],[996,48,27,1745,1772]]],[42,891,524,1772,2296,[[997,50,30,1772,1802],[998,33,18,1802,1820],[999,39,20,1820,1840],[1000,50,34,1840,1874],[1001,54,28,1874,1902],[1002,76,45,1902,1947],[1003,52,33,1947,1980],[1004,49,35,1980,2015],[1005,28,19,2015,2034],[1006,45,27,2034,2061],[1007,53,33,2061,2094],[1008,46,30,2094,2124],[1009,20,12,2124,2136],[1010,35,19,2136,2155],[1011,23,13,2155,2168],[1012,25,18,2168,2186],[1013,29,19,2186,2205],[1014,51,28,2205,2233],[1015,58,29,2233,2262],[1016,48,20,2262,2282],[1017,27,14,2282,2296]]],[43,1270,703,2296,2999,[[1018,20,15,2296,2311],[1019,39,29,2311,2340],[1020,32,20,2340,2360],[1021,47,28,2360,2388],[1022,68,32,2388,2420],[1023,29,13,2420,2433],[1024,62,36,2433,2469],[1025,46,27,2469,2496],[1026,52,31,2496,2527],[1027,41,27,2527,2554],[1028,32,19,2554,2573],[1029,39,22,2573,2595],[1030,76,39,2595,2634],[1031,44,20,2634,2654],[1032,58,31,2654,2685],[1033,57,30,2685,2715],[1034,47,24,2715,2739],[1035,38,22,2739,2761],[1036,54,30,2761,2791],[1037,39,22,2791,2813],[1038,74,32,2813,2845],[1039,35,21,2845,2866],[1040,48,27,2866,2893],[1041,22,13,2893,2906],[1042,34,19,2906,2925],[1043,35,22,2925,2947],[1044,56,29,2947,2976],[1045,46,23,2976,2999]]],[44,375,223,2999,3222,[[1046,23,16,2999,3015],[1047,28,17,3015,3032],[1048,18,12,3032,3044],[1049,27,15,3044,3059],[1050,19,11,3059,3070],[1051,10,8,3070,3078],[1052,30,18,3078,3096],[1053,49,23,3096,3119],[1054,33,16,3119,3135],[1055,17,11,3135,3146],[1056,30,16,3146,3162],[1057,9,8,3162,3170],[1058,19,9,3170,3179],[1059,12,8,3179,3187],[1060,26,18,3187,3205],[1061,25,17,3205,3222]]],[45,370,211,3222,3433,[[1062,36,18,3222,3240],[1063,20,8,3240,3248],[1064,11,7,3248,3255],[1065,13,7,3255,3262],[1066,12,6,3262,3268],[1067,20,10,3268,3278],[1068,35,17,3278,3295],[1069,7,7,3295,3302],[1070,25,14,3302,3316],[1071,30,18,3316,3334],[1072,29,17,3334,3351],[1073,38,22,3351,3373],[1074,4,4,3373,3377],[1075,26,18,3377,3395],[1076,47,25,3395,3420],[1077,17,13,3420,3433]]],[46,195,119,3433,3552,[[1078,21,12,3433,3445],[1079,5,5,3445,3450],[1080,21,10,3450,3460],[1081,22,10,3460,3470],[1082,15,10,3470,3480],[1083,5,4,3480,3484],[1084,8,7,3484,3491],[1085,28,15,3491,3506],[1086,14,9,3506,3515],[1087,10,8,3515,3523],[1088,17,12,3523,3535],[1089,16,10,3535,3545],[1090,13,7,3545,3552]]],[47,128,79,3552,3631,[[1091,15,11,3552,3563],[1092,23,13,3563,3576],[1093,30,19,3576,3595],[1094,29,17,3595,3612],[1095,19,11,3612,3623],[1096,12,8,3623,3631]]],[48,177,101,3631,3732,[[1097,28,17,3631,3648],[1098,28,14,3648,3662],[1099,29,18,3662,3680],[1100,41,19,3680,3699],[1101,27,18,3699,3717],[1102,24,15,3717,3732]]],[49,61,43,3732,3775,[[1103,19,13,3732,3745],[1104,9,8,3745,3753],[1105,22,12,3753,3765],[1106,11,10,3765,3775]]],[50,106,58,3775,3833,[[1107,44,20,3775,3795],[1108,34,18,3795,3813],[1109,15,10,3813,3823],[1110,13,10,3823,3833]]],[51,42,31,3833,3864,[[1111,6,4,3833,3837],[1112,9,7,3837,3844],[1113,5,5,3844,3849],[1114,10,7,3849,3856],[1115,12,8,3856,3864]]],[52,34,24,3864,3888,[[1116,11,8,3864,3872],[1117,12,9,3872,3881],[1118,11,7,3881,3888]]],[53,52,40,3888,3928,[[1119,11,8,3888,3896],[1120,1,1,3896,3897],[1121,7,6,3897,3903],[1122,10,6,3903,3909],[1123,8,7,3909,3916],[1124,15,12,3916,3928]]],[54,59,40,3928,3968,[[1125,14,9,3928,3937],[1126,19,13,3937,3950],[1127,7,5,3950,3955],[1128,19,13,3955,3968]]],[55,18,15,3968,3983,[[1129,8,6,3968,3974],[1130,7,6,3974,3980],[1131,3,3,3980,3983]]],[56,10,7,3983,3990,[[1132,10,7,3983,3990]]],[57,300,178,3990,4168,[[1133,16,11,3990,4001],[1134,13,9,4001,4010],[1135,13,9,4010,4019],[1136,11,9,4019,4028],[1137,9,7,4028,4035],[1138,16,12,4035,4047],[1139,39,21,4047,4068],[1140,18,9,4068,4077],[1141,55,24,4077,4101],[1142,33,21,4101,4122],[1143,38,20,4122,4142],[1144,21,15,4142,4157],[1145,18,11,4157,4168]]],[58,94,57,4168,4225,[[1146,18,11,4168,4179],[1147,17,14,4179,4193],[1148,15,11,4193,4204],[1149,10,6,4204,4210],[1150,34,15,4210,4225]]],[59,75,56,4225,4281,[[1151,16,11,4225,4236],[1152,19,15,4236,4251],[1153,14,11,4251,4262],[1154,15,10,4262,4272],[1155,11,9,4272,4281]]],[60,51,28,4281,4309,[[1156,9,8,4281,4289],[1157,19,9,4289,4298],[1158,23,11,4298,4309]]],[61,134,67,4309,4376,[[1159,10,7,4309,4316],[1160,49,20,4316,4336],[1161,20,12,4336,4348],[1162,21,11,4348,4359],[1163,34,17,4359,4376]]],[62,13,8,4376,4384,[[1164,13,8,4376,4384]]],[63,11,9,4384,4393,[[1165,11,9,4384,4393]]],[64,20,10,4393,4403,[[1166,20,10,4393,4403]]],[65,908,318,4403,4721,[[1167,42,15,4403,4418],[1168,45,21,4418,4439],[1169,34,12,4439,4451],[1170,19,9,4451,4460],[1171,41,14,4460,4474],[1172,42,14,4474,4488],[1173,32,12,4488,4500],[1174,55,13,4500,4513],[1175,47,14,4513,4527],[1176,27,9,4527,4536],[1177,37,14,4536,4550],[1178,43,13,4550,4563],[1179,41,14,4563,4577],[1180,54,19,4577,4596],[1181,23,7,4596,4603],[1182,53,17,4603,4620],[1183,50,17,4620,4637],[1184,26,15,4637,4652],[1185,38,14,4652,4666],[1186,45,15,4666,4681],[1187,76,25,4681,4706],[1188,38,15,4706,4721]]]],[23150,23155,23156,23160,23161,23162,23166,23168,23170,23171,23172,23173,23174,23175,23176,23177,23178,23179,23180,23182,23183,23184,23185,23186,23189,23190,23191,23192,23193,23194,23195,23197,23199,23202,23204,23208,23210,23212,23213,23214,23217,23220,23223,23224,23225,23226,23227,23229,23230,23231,23232,23237,23239,23241,23242,23243,23244,23246,23247,23248,23249,23250,23251,23252,23253,23254,23255,23256,23257,23258,23259,23260,23267,23269,23273,23279,23280,23281,23282,23283,23284,23287,23288,23289,23291,23295,23298,23300,23304,23305,23306,23307,23308,23310,23312,23314,23315,23316,23319,23320,23321,23322,23327,23328,23329,23330,23337,23341,23342,23343,23344,23345,23346,23349,23353,23356,23357,23358,23360,23361,23362,23363,23365,23367,23369,23371,23372,23373,23376,23377,23378,23379,23381,23382,23385,23387,23388,23389,23390,23393,23394,23395,23396,23399,23401,23402,23403,23404,23405,23407,23410,23412,23413,23414,23415,23416,23417,23419,23420,23421,23424,23427,23430,23431,23435,23437,23440,23442,23444,23445,23446,23447,23449,23450,23461,23466,23470,23471,23472,23478,23479,23480,23482,23486,23490,23491,23492,23493,23494,23495,23496,23497,23499,23500,23501,23502,23503,23506,23507,23508,23511,23512,23513,23517,23518,23520,23521,23522,23523,23524,23527,23528,23529,23530,23531,23532,23534,23535,23537,23539,23540,23541,23543,23546,23549,23550,23553,23557,23558,23559,23560,23561,23562,23563,23564,23565,23566,23567,23568,23569,23570,23571,23572,23573,23574,23575,23576,23577,23578,23579,23580,23582,23583,23584,23586,23587,23588,23589,23591,23594,23598,23599,23602,23603,23605,23606,23607,23608,23609,23610,23612,23614,23615,23616,23617,23619,23620,23621,23622,23623,23625,23626,23627,23629,23630,23631,23632,23633,23634,23635,23636,23639,23643,23644,23645,23646,23650,23651,23652,23654,23655,23656,23657,23658,23659,23660,23662,23664,23665,23667,23668,23669,23670,23672,23673,23674,23675,23676,23677,23678,23679,23681,23682,23683,23684,23685,23686,23688,23689,23691,23692,23693,23695,23698,23699,23700,23702,23705,23706,23709,23710,23712,23713,23714,23715,23718,23719,23722,23723,23725,23726,23727,23728,23730,23731,23733,23734,23737,23738,23739,23740,23741,23744,23746,23750,23753,23754,23755,23757,23761,23763,23765,23766,23770,23772,23773,23774,23775,23776,23779,23780,23782,23784,23785,23786,23790,23793,23794,23795,23796,23798,23799,23800,23801,23802,23803,23804,23805,23808,23809,23810,23811,23812,23813,23814,23815,23816,23817,23820,23822,23823,23827,23828,23829,23830,23831,23832,23833,23834,23835,23836,23837,23838,23840,23841,23843,23844,23845,23846,23847,23849,23851,23852,23854,23855,23856,23857,23858,23860,23861,23862,23864,23865,23866,23867,23868,23869,23871,23872,23874,23875,23876,23877,23878,23879,23880,23881,23882,23883,23884,23885,23887,23888,23891,23893,23897,23898,23899,23900,23901,23902,23903,23904,23905,23906,23908,23912,23913,23916,23919,23920,23923,23924,23925,23927,23931,23934,23935,23936,23937,23938,23939,23940,23941,23943,23944,23947,23948,23949,23950,23951,23953,23955,23958,23960,23963,23969,23971,23972,23973,23974,23975,23979,23981,23983,23984,23985,23986,23987,23988,23989,23993,23994,23995,23996,23997,23998,24000,24001,24006,24007,24008,24009,24012,24013,24014,24016,24017,24018,24019,24020,24021,24024,24025,24026,24027,24028,24029,24031,24032,24033,24035,24036,24037,24038,24039,24040,24041,24042,24045,24048,24049,24053,24054,24056,24057,24059,24060,24064,24065,24067,24068,24069,24071,24072,24073,24074,24077,24078,24080,24081,24082,24083,24084,24085,24089,24090,24091,24094,24095,24098,24099,24101,24105,24108,24109,24110,24111,24112,24113,24115,24116,24117,24118,24119,24120,24121,24123,24124,24125,24126,24128,24129,24130,24131,24132,24133,24134,24135,24136,24138,24139,24140,24141,24143,24144,24148,24149,24150,24152,24153,24154,24156,24158,24159,24160,24164,24166,24169,24170,24171,24173,24174,24175,24178,24179,24180,24181,24182,24183,24185,24187,24188,24189,24190,24191,24193,24195,24196,24197,24199,24200,24201,24202,24203,24204,24206,24207,24210,24211,24212,24214,24215,24216,24217,24218,24219,24220,24222,24225,24227,24228,24229,24230,24231,24234,24235,24236,24237,24239,24241,24242,24243,24244,24246,24247,24248,24249,24251,24253,24257,24259,24260,24262,24264,24265,24266,24269,24270,24272,24273,24274,24276,24278,24279,24280,24281,24282,24283,24284,24285,24286,24287,24288,24289,24290,24291,24292,24293,24294,24295,24296,24297,24299,24305,24306,24310,24315,24316,24317,24323,24324,24327,24330,24333,24334,24337,24338,24339,24340,24341,24342,24343,24349,24350,24351,24352,24353,24354,24355,24356,24358,24359,24360,24361,24362,24364,24365,24366,24367,24368,24369,24371,24372,24374,24375,24376,24377,24378,24379,24380,24382,24383,24385,24386,24391,24393,24394,24395,24397,24398,24399,24400,24401,24402,24403,24404,24405,24406,24409,24410,24413,24414,24418,24421,24422,24429,24431,24432,24433,24434,24435,24437,24440,24443,24444,24445,24446,24448,24450,24451,24452,24454,24455,24456,24458,24459,24460,24461,24463,24464,24466,24468,24469,24471,24472,24476,24477,24478,24480,24481,24482,24483,24484,24486,24487,24489,24490,24491,24492,24493,24494,24496,24498,24500,24502,24503,24505,24506,24510,24511,24513,24514,24515,24519,24520,24523,24526,24527,24528,24529,24531,24533,24534,24535,24536,24538,24539,24545,24547,24548,24549,24550,24552,24553,24554,24555,24557,24558,24559,24562,24563,24565,24569,24570,24571,24572,24573,24574,24580,24581,24582,24583,24584,24585,24586,24588,24589,24590,24591,24592,24593,24598,24602,24603,24607,24608,24609,24610,24611,24612,24613,24614,24617,24618,24619,24620,24621,24622,24623,24624,24625,24626,24627,24629,24630,24633,24634,24636,24637,24638,24639,24640,24641,24642,24643,24644,24645,24646,24647,24648,24650,24651,24652,24655,24656,24658,24659,24660,24661,24663,24665,24666,24667,24670,24672,24675,24676,24678,24680,24681,24682,24683,24685,24686,24687,24688,24689,24690,24693,24694,24695,24696,24697,24698,24699,24700,24701,24702,24705,24706,24707,24708,24709,24710,24711,24712,24714,24716,24718,24720,24721,24724,24727,24728,24731,24732,24733,24737,24739,24741,24742,24743,24744,24745,24749,24750,24751,24752,24755,24756,24757,24758,24759,24761,24762,24763,24764,24765,24766,24767,24768,24770,24771,24773,24774,24775,24777,24778,24779,24780,24781,24785,24789,24792,24793,24795,24797,24800,24801,24803,24805,24806,24807,24808,24809,24814,24815,24816,24817,24818,24819,24820,24822,24824,24825,24826,24827,24828,24829,24833,24834,24835,24836,24837,24838,24839,24840,24841,24842,24844,24845,24846,24847,24849,24852,24854,24855,24856,24857,24858,24859,24860,24864,24865,24866,24869,24870,24871,24872,24874,24875,24876,24877,24878,24879,24881,24886,24887,24888,24890,24892,24893,24895,24897,24898,24899,24901,24902,24903,24904,24906,24908,24909,24911,24912,24914,24915,24916,24918,24919,24920,24921,24922,24923,24925,24926,24927,24928,24931,24932,24933,24934,24935,24936,24937,24939,24941,24952,24958,24962,24963,24968,24973,24974,24979,24980,24981,24983,24986,24988,24989,24990,24991,24993,24994,24995,24996,24999,25000,25010,25011,25012,25013,25014,25015,25016,25017,25019,25022,25023,25026,25027,25028,25029,25030,25031,25032,25034,25035,25038,25040,25041,25042,25043,25044,25046,25047,25048,25064,25065,25066,25068,25069,25072,25076,25077,25079,25080,25081,25083,25085,25088,25090,25091,25092,25094,25096,25097,25098,25099,25100,25101,25102,25103,25104,25105,25106,25107,25108,25109,25110,25111,25112,25114,25116,25120,25121,25123,25126,25128,25131,25134,25140,25141,25142,25143,25144,25146,25147,25148,25150,25151,25152,25153,25154,25155,25156,25161,25163,25165,25166,25168,25169,25172,25175,25179,25181,25184,25187,25188,25191,25194,25195,25196,25198,25199,25201,25204,25205,25206,25207,25208,25209,25212,25213,25215,25219,25220,25223,25224,25225,25226,25228,25229,25231,25232,25233,25234,25235,25236,25238,25239,25245,25246,25250,25252,25255,25256,25257,25258,25260,25261,25264,25266,25267,25268,25269,25270,25271,25272,25274,25275,25276,25277,25278,25279,25280,25282,25283,25284,25285,25286,25287,25289,25290,25292,25293,25294,25296,25297,25299,25301,25303,25306,25307,25308,25309,25311,25312,25313,25314,25315,25317,25319,25320,25321,25322,25323,25326,25327,25328,25330,25333,25335,25336,25337,25338,25339,25343,25344,25345,25346,25348,25352,25357,25358,25359,25360,25361,25362,25363,25364,25365,25367,25369,25370,25372,25373,25374,25376,25377,25379,25380,25382,25383,25385,25386,25389,25390,25392,25395,25398,25399,25400,25407,25412,25419,25420,25425,25429,25431,25432,25433,25434,25435,25436,25437,25438,25439,25440,25441,25443,25444,25445,25447,25448,25449,25450,25451,25452,25453,25454,25455,25456,25457,25458,25460,25462,25463,25466,25467,25468,25469,25470,25471,25472,25473,25475,25480,25481,25482,25483,25485,25486,25487,25489,25490,25491,25492,25495,25496,25497,25498,25499,25501,25504,25505,25508,25513,25515,25517,25518,25519,25520,25522,25525,25526,25528,25532,25533,25534,25535,25536,25537,25538,25541,25542,25543,25546,25547,25550,25551,25552,25554,25556,25557,25558,25560,25561,25562,25563,25567,25568,25569,25571,25574,25575,25576,25581,25585,25587,25589,25590,25592,25596,25597,25598,25600,25601,25604,25609,25610,25611,25613,25614,25615,25617,25618,25619,25623,25624,25625,25626,25627,25628,25629,25631,25633,25634,25636,25637,25641,25642,25644,25649,25650,25651,25652,25653,25656,25657,25658,25665,25668,25671,25672,25673,25675,25677,25678,25679,25681,25682,25685,25686,25687,25688,25694,25696,25698,25699,25700,25701,25704,25705,25708,25709,25711,25712,25713,25715,25717,25718,25719,25720,25721,25723,25729,25731,25734,25736,25739,25741,25742,25746,25747,25749,25754,25755,25760,25761,25762,25764,25765,25766,25767,25768,25769,25770,25771,25772,25773,25775,25776,25778,25779,25780,25783,25784,25785,25788,25789,25790,25791,25792,25793,25794,25795,25796,25798,25799,25800,25804,25805,25806,25808,25809,25810,25811,25812,25813,25814,25815,25816,25818,25821,25824,25825,25827,25830,25831,25834,25835,25846,25847,25849,25851,25852,25853,25855,25857,25861,25862,25863,25864,25865,25866,25867,25868,25871,25872,25873,25874,25875,25877,25878,25880,25882,25884,25885,25886,25889,25890,25894,25895,25897,25898,25899,25901,25902,25903,25904,25908,25911,25912,25913,25914,25916,25917,25918,25919,25920,25921,25924,25925,25927,25928,25930,25931,25933,25934,25935,25936,25937,25938,25939,25940,25941,25945,25948,25949,25954,25956,25957,25958,25961,25964,25965,25966,25968,25970,25971,25972,25973,25974,25975,25979,25980,25982,25983,25986,25987,25990,25991,25992,25993,25994,25996,25998,26000,26001,26003,26009,26010,26011,26013,26015,26016,26018,26019,26020,26023,26024,26025,26026,26033,26035,26036,26037,26040,26044,26045,26048,26049,26051,26053,26054,26058,26061,26062,26063,26064,26067,26068,26073,26076,26077,26078,26079,26080,26081,26084,26085,26086,26087,26088,26089,26092,26093,26094,26095,26096,26097,26098,26100,26101,26102,26103,26104,26105,26108,26109,26110,26112,26113,26115,26116,26117,26118,26121,26123,26125,26126,26128,26133,26134,26136,26137,26138,26139,26140,26141,26142,26148,26149,26151,26154,26155,26156,26157,26161,26162,26164,26165,26166,26167,26168,26170,26171,26173,26175,26176,26177,26178,26179,26181,26184,26185,26186,26187,26188,26189,26190,26191,26195,26196,26198,26201,26202,26205,26206,26208,26209,26211,26212,26213,26214,26217,26219,26220,26224,26225,26226,26228,26229,26230,26231,26232,26233,26235,26236,26238,26240,26242,26243,26246,26247,26249,26252,26254,26255,26258,26261,26267,26268,26269,26270,26271,26273,26274,26276,26277,26278,26279,26280,26281,26282,26283,26284,26285,26286,26288,26289,26290,26292,26294,26295,26296,26297,26298,26299,26301,26302,26303,26306,26307,26308,26309,26310,26311,26314,26319,26320,26324,26326,26328,26329,26330,26331,26332,26335,26338,26339,26340,26341,26342,26343,26345,26347,26348,26350,26351,26354,26356,26359,26360,26363,26365,26366,26367,26368,26369,26370,26371,26373,26374,26375,26376,26377,26382,26383,26384,26386,26387,26389,26390,26391,26392,26393,26394,26396,26397,26398,26399,26401,26403,26406,26407,26408,26409,26410,26413,26416,26417,26420,26421,26422,26425,26426,26429,26433,26434,26438,26440,26443,26444,26445,26446,26447,26448,26451,26453,26454,26455,26456,26457,26458,26462,26464,26470,26475,26478,26480,26482,26483,26484,26485,26486,26488,26489,26490,26491,26492,26493,26494,26495,26496,26500,26502,26503,26504,26505,26506,26512,26514,26516,26517,26518,26519,26521,26524,26525,26527,26531,26532,26533,26540,26542,26543,26547,26548,26550,26551,26553,26554,26556,26559,26560,26561,26562,26563,26564,26565,26568,26569,26570,26571,26573,26575,26577,26578,26579,26580,26581,26583,26586,26587,26588,26589,26590,26591,26592,26593,26597,26598,26599,26600,26601,26603,26604,26609,26611,26612,26614,26615,26616,26618,26622,26623,26626,26627,26628,26630,26631,26632,26633,26635,26648,26652,26656,26657,26659,26660,26661,26663,26672,26673,26674,26676,26677,26678,26679,26680,26681,26684,26685,26687,26690,26692,26694,26695,26696,26698,26699,26700,26702,26703,26704,26708,26714,26715,26717,26718,26719,26723,26724,26725,26729,26730,26733,26734,26737,26739,26741,26742,26743,26746,26747,26749,26751,26752,26753,26754,26758,26759,26760,26762,26763,26764,26765,26767,26768,26770,26771,26772,26773,26774,26775,26777,26780,26781,26782,26784,26785,26786,26787,26788,26792,26794,26795,26796,26797,26799,26800,26801,26802,26803,26804,26805,26807,26808,26809,26811,26813,26816,26817,26818,26820,26821,26822,26823,26824,26827,26828,26830,26831,26832,26834,26837,26838,26839,26840,26844,26845,26846,26848,26849,26850,26851,26852,26853,26854,26855,26856,26857,26859,26861,26863,26865,26866,26867,26868,26869,26870,26871,26872,26873,26874,26875,26876,26877,26878,26879,26882,26885,26886,26887,26891,26892,26893,26898,26899,26900,26902,26904,26905,26906,26908,26909,26910,26915,26918,26921,26922,26923,26924,26925,26926,26927,26929,26930,26931,26937,26938,26939,26941,26942,26944,26945,26949,26950,26951,26953,26955,26958,26959,26960,26963,26964,26965,26966,26968,26969,26970,26972,26973,26974,26978,26980,26982,26983,26986,26987,26988,26990,26991,26992,26995,26996,26997,26998,26999,27001,27002,27003,27004,27005,27006,27007,27008,27009,27010,27011,27012,27015,27018,27019,27020,27021,27023,27024,27025,27026,27027,27028,27029,27030,27032,27033,27035,27036,27037,27039,27040,27043,27044,27045,27046,27048,27052,27053,27054,27055,27056,27057,27058,27059,27061,27062,27065,27067,27068,27069,27070,27071,27072,27073,27074,27075,27076,27077,27078,27079,27080,27081,27082,27083,27084,27085,27086,27088,27089,27091,27092,27093,27096,27099,27100,27101,27102,27103,27105,27106,27107,27108,27109,27110,27111,27113,27114,27115,27116,27117,27118,27123,27124,27125,27127,27129,27132,27133,27139,27140,27141,27142,27144,27146,27147,27148,27149,27150,27151,27152,27153,27154,27157,27158,27159,27160,27161,27162,27164,27167,27168,27169,27170,27172,27174,27177,27179,27180,27182,27185,27186,27188,27190,27192,27194,27196,27198,27200,27201,27202,27204,27205,27206,27207,27208,27209,27210,27212,27213,27214,27215,27216,27217,27218,27220,27221,27222,27223,27224,27226,27227,27230,27231,27233,27235,27236,27237,27238,27239,27240,27241,27242,27243,27245,27246,27247,27248,27251,27254,27255,27256,27257,27258,27261,27262,27263,27266,27268,27270,27271,27275,27276,27278,27280,27281,27282,27283,27289,27295,27296,27297,27298,27299,27300,27301,27302,27303,27304,27306,27307,27308,27309,27313,27318,27319,27322,27323,27324,27325,27326,27327,27328,27329,27330,27331,27333,27335,27336,27337,27338,27339,27340,27341,27342,27343,27344,27345,27346,27347,27348,27349,27350,27351,27352,27354,27355,27356,27357,27359,27360,27361,27363,27364,27366,27367,27368,27369,27370,27371,27372,27373,27374,27376,27377,27379,27380,27382,27384,27386,27388,27389,27391,27393,27394,27395,27396,27398,27401,27402,27404,27405,27406,27407,27408,27409,27410,27411,27412,27413,27414,27415,27416,27417,27418,27419,27420,27425,27426,27427,27428,27429,27432,27433,27434,27436,27437,27439,27440,27441,27442,27443,27444,27445,27446,27447,27448,27449,27450,27452,27453,27454,27457,27458,27459,27461,27463,27464,27465,27466,27468,27469,27470,27472,27473,27474,27475,27477,27478,27480,27482,27483,27485,27486,27487,27488,27489,27490,27492,27493,27494,27496,27497,27498,27500,27501,27502,27503,27505,27506,27507,27508,27509,27510,27514,27515,27516,27518,27519,27521,27522,27523,27524,27525,27527,27528,27529,27530,27531,27532,27533,27534,27536,27537,27539,27540,27541,27542,27547,27549,27550,27552,27553,27554,27555,27557,27560,27561,27562,27563,27564,27565,27566,27568,27569,27570,27571,27573,27574,27575,27576,27579,27580,27581,27582,27583,27584,27585,27586,27587,27588,27589,27590,27591,27593,27594,27595,27596,27597,27598,27600,27601,27602,27604,27605,27606,27609,27610,27611,27612,27614,27615,27616,27617,27618,27620,27623,27626,27627,27629,27632,27633,27634,27635,27638,27641,27642,27643,27645,27648,27649,27650,27651,27652,27653,27654,27655,27658,27661,27664,27665,27667,27668,27669,27671,27672,27675,27677,27678,27680,27681,27682,27683,27684,27685,27688,27689,27690,27691,27692,27693,27694,27695,27696,27697,27698,27699,27700,27701,27702,27703,27704,27706,27707,27709,27711,27713,27714,27715,27716,27717,27718,27720,27721,27724,27726,27727,27728,27730,27731,27732,27733,27734,27735,27736,27737,27740,27741,27743,27744,27745,27746,27748,27749,27750,27751,27752,27753,27754,27756,27757,27758,27760,27761,27762,27764,27765,27766,27767,27768,27770,27774,27775,27776,27778,27779,27781,27783,27787,27789,27791,27793,27796,27797,27798,27799,27801,27802,27803,27804,27805,27808,27810,27811,27812,27813,27814,27817,27818,27819,27820,27823,27824,27827,27828,27829,27830,27832,27833,27835,27836,27837,27838,27840,27841,27842,27843,27844,27845,27846,27848,27849,27850,27853,27857,27858,27859,27860,27861,27862,27864,27865,27866,27867,27870,27871,27872,27873,27874,27877,27882,27885,27886,27887,27889,27892,27893,27894,27895,27896,27897,27898,27899,27900,27901,27902,27903,27904,27905,27906,27907,27908,27910,27914,27915,27916,27918,27919,27920,27922,27923,27924,27926,27927,27928,27930,27933,27938,27939,27940,27942,27945,27946,27947,27948,27950,27953,27954,27955,27956,27957,27962,27963,27964,27965,27966,27970,27975,27976,27977,27978,27979,27980,27981,27982,27985,27986,27988,27989,27992,27993,27994,27997,27998,28010,28012,28014,28015,28016,28017,28020,28025,28026,28027,28028,28031,28033,28034,28035,28036,28037,28038,28039,28041,28042,28046,28049,28052,28057,28058,28059,28061,28062,28063,28064,28066,28067,28072,28073,28074,28080,28087,28089,28090,28091,28092,28093,28095,28096,28097,28098,28099,28100,28101,28102,28103,28104,28105,28107,28113,28114,28115,28116,28117,28118,28119,28120,28121,28123,28126,28127,28128,28129,28132,28134,28135,28136,28137,28139,28142,28143,28144,28145,28151,28152,28155,28159,28160,28161,28163,28164,28166,28167,28172,28175,28176,28178,28180,28181,28182,28183,28185,28191,28193,28194,28195,28196,28199,28200,28201,28203,28204,28206,28211,28213,28216,28220,28221,28224,28225,28226,28227,28228,28230,28233,28234,28235,28237,28238,28246,28247,28248,28249,28251,28256,28258,28261,28267,28268,28269,28270,28273,28275,28277,28278,28280,28281,28282,28286,28288,28290,28297,28299,28300,28304,28306,28307,28308,28311,28312,28314,28316,28318,28319,28322,28328,28329,28330,28332,28333,28334,28336,28337,28340,28341,28343,28346,28347,28348,28350,28351,28352,28353,28354,28356,28359,28360,28361,28362,28365,28367,28369,28370,28371,28373,28374,28376,28379,28380,28381,28382,28383,28384,28388,28390,28391,28394,28395,28400,28401,28402,28404,28405,28406,28408,28415,28420,28423,28426,28427,28429,28430,28438,28442,28446,28448,28450,28452,28453,28455,28458,28459,28460,28461,28464,28468,28469,28471,28478,28480,28481,28482,28484,28485,28486,28490,28491,28495,28497,28499,28501,28502,28504,28507,28513,28515,28516,28518,28519,28520,28521,28522,28531,28533,28534,28537,28538,28539,28540,28542,28545,28547,28548,28549,28552,28553,28554,28558,28559,28560,28562,28563,28564,28568,28569,28570,28571,28572,28574,28577,28578,28580,28583,28585,28587,28589,28593,28595,28596,28599,28600,28602,28603,28606,28609,28610,28612,28616,28617,28618,28622,28623,28625,28626,28627,28629,28632,28634,28638,28639,28640,28641,28642,28643,28645,28646,28648,28649,28650,28651,28652,28653,28655,28656,28657,28658,28659,28660,28662,28665,28666,28671,28675,28676,28683,28685,28687,28689,28690,28693,28694,28695,28699,28701,28703,28705,28707,28708,28711,28712,28714,28715,28719,28721,28722,28723,28724,28725,28727,28728,28741,28742,28746,28747,28753,28757,28758,28760,28763,28765,28766,28767,28770,28772,28774,28775,28776,28777,28783,28786,28787,28788,28789,28791,28793,28795,28796,28797,28798,28799,28801,28803,28804,28805,28806,28807,28809,28812,28814,28819,28820,28822,28828,28830,28833,28838,28841,28847,28848,28849,28850,28851,28854,28855,28857,28858,28859,28861,28863,28865,28866,28869,28870,28872,28873,28874,28875,28878,28879,28882,28883,28885,28887,28888,28891,28895,28896,28899,28901,28905,28911,28922,28923,28924,28926,28929,28930,28931,28933,28934,28936,28937,28938,28940,28941,28943,28947,28948,28949,28950,28951,28954,28956,28957,28958,28959,28961,28965,28966,28968,28969,28970,28972,28975,28976,28978,28979,28984,28985,28989,28992,28994,28996,28998,28999,29007,29014,29017,29019,29020,29021,29022,29024,29025,29029,29030,29031,29033,29034,29036,29040,29043,29045,29048,29051,29053,29054,29056,29057,29059,29061,29064,29068,29070,29071,29073,29076,29078,29079,29080,29083,29084,29086,29087,29088,29089,29090,29091,29093,29094,29095,29101,29102,29103,29104,29107,29109,29110,29111,29112,29113,29114,29115,29116,29118,29119,29120,29121,29123,29124,29125,29126,29132,29133,29134,29135,29136,29137,29140,29144,29145,29146,29152,29154,29155,29158,29160,29161,29162,29163,29165,29169,29171,29173,29175,29176,29179,29181,29184,29186,29190,29194,29196,29200,29202,29204,29205,29206,29207,29209,29211,29212,29213,29215,29216,29217,29219,29220,29221,29223,29224,29225,29226,29228,29229,29231,29232,29236,29237,29240,29241,29242,29243,29244,29245,29247,29248,29249,29250,29252,29253,29254,29255,29256,29257,29258,29259,29260,29261,29262,29263,29265,29267,29269,29270,29271,29272,29273,29275,29278,29279,29281,29283,29284,29285,29286,29287,29288,29290,29294,29295,29296,29298,29299,29301,29302,29309,29310,29313,29314,29315,29317,29318,29320,29321,29323,29326,29327,29328,29329,29330,29333,29336,29337,29340,29343,29344,29345,29346,29347,29348,29349,29350,29351,29352,29353,29354,29356,29360,29362,29366,29368,29372,29373,29374,29375,29377,29378,29380,29385,29388,29391,29393,29400,29401,29408,29409,29412,29413,29421,29422,29423,29424,29427,29429,29430,29431,29432,29435,29437,29439,29442,29444,29445,29447,29449,29451,29457,29460,29463,29464,29465,29467,29469,29470,29471,29473,29474,29475,29477,29478,29479,29480,29481,29483,29485,29487,29488,29489,29490,29491,29492,29495,29496,29497,29499,29500,29501,29502,29503,29504,29505,29506,29507,29508,29511,29513,29514,29516,29517,29519,29522,29523,29526,29527,29532,29533,29537,29540,29541,29545,29547,29553,29554,29555,29556,29557,29558,29559,29560,29561,29566,29568,29570,29572,29574,29578,29579,29584,29585,29586,29592,29595,29599,29602,29603,29605,29608,29609,29613,29618,29619,29620,29622,29623,29635,29640,29644,29647,29648,29649,29650,29652,29653,29654,29656,29657,29658,29661,29662,29663,29664,29665,29668,29669,29671,29673,29676,29679,29681,29683,29684,29694,29695,29696,29700,29701,29704,29707,29710,29711,29713,29714,29730,29737,29738,29740,29744,29746,29747,29748,29750,29753,29759,29761,29763,29771,29777,29779,29780,29781,29784,29788,29789,29790,29791,29793,29798,29800,29802,29803,29804,29805,29807,29809,29810,29814,29815,29817,29819,29822,29824,29825,29827,29828,29831,29833,29834,29836,29837,29841,29842,29845,29846,29848,29849,29853,29858,29861,29864,29868,29870,29871,29872,29874,29876,29877,29878,29883,29884,29887,29888,29889,29891,29892,29893,29901,29902,29905,29906,29907,29912,29913,29916,29918,29919,29921,29927,29936,29938,29940,29943,29944,29945,29949,29951,29963,29964,29965,29966,29967,29968,29969,29970,29971,29973,29975,29976,29979,29980,29982,29984,29986,29987,29990,29991,29994,29996,29998,30001,30002,30003,30008,30009,30010,30012,30016,30017,30018,30023,30025,30026,30027,30028,30030,30031,30032,30033,30036,30037,30040,30042,30045,30048,30050,30051,30054,30055,30056,30059,30060,30061,30063,30064,30065,30067,30068,30069,30070,30071,30074,30075,30076,30077,30079,30081,30082,30083,30085,30087,30088,30089,30090,30091,30092,30093,30094,30096,30097,30100,30101,30102,30103,30105,30106,30107,30108,30109,30110,30111,30112,30113,30114,30117,30118,30119,30120,30121,30122,30123,30124,30125,30126,30127,30128,30129,30130,30131,30134,30135,30138,30141,30142,30143,30144,30148,30149,30152,30153,30154,30156,30158,30159,30160,30162,30165,30167,30169,30171,30174,30175,30179,30181,30184,30185,30189,30193,30194,30195,30197,30198,30199,30200,30201,30202,30203,30204,30210,30211,30213,30214,30217,30221,30222,30223,30224,30226,30227,30229,30232,30233,30237,30238,30239,30245,30248,30249,30250,30251,30252,30253,30254,30261,30263,30265,30267,30269,30273,30275,30276,30277,30278,30283,30287,30291,30293,30294,30296,30298,30299,30300,30301,30302,30303,30309,30312,30314,30316,30318,30319,30321,30322,30323,30324,30325,30327,30329,30330,30333,30336,30337,30341,30342,30344,30347,30351,30352,30357,30358,30359,30360,30361,30362,30363,30364,30365,30366,30368,30369,30371,30372,30373,30377,30381,30383,30384,30385,30387,30388,30391,30396,30398,30399,30401,30402,30405,30406,30407,30408,30409,30410,30411,30412,30414,30416,30417,30423,30424,30425,30427,30428,30429,30431,30436,30439,30441,30442,30443,30444,30447,30448,30449,30450,30453,30458,30460,30463,30464,30465,30466,30467,30468,30469,30471,30474,30475,30478,30479,30482,30483,30487,30490,30491,30495,30496,30497,30501,30502,30507,30515,30516,30517,30520,30521,30522,30524,30526,30527,30528,30529,30531,30532,30534,30537,30538,30539,30541,30542,30543,30545,30546,30547,30548,30551,30552,30554,30555,30557,30558,30559,30560,30563,30564,30565,30566,30567,30570,30571,30572,30573,30574,30575,30577,30580,30583,30587,30589,30590,30592,30593,30595,30596,30598,30602,30603,30604,30605,30606,30607,30608,30609,30612,30617,30618,30619,30620,30625,30626,30627,30628,30629,30630,30631,30632,30633,30634,30635,30636,30637,30638,30639,30643,30644,30646,30647,30648,30649,30651,30652,30654,30658,30659,30661,30663,30665,30666,30667,30668,30670,30672,30675,30676,30677,30679,30681,30683,30685,30689,30693,30695,30699,30700,30701,30702,30704,30705,30706,30707,30708,30709,30710,30713,30714,30715,30717,30718,30722,30723,30724,30725,30726,30727,30728,30729,30731,30732,30733,30734,30735,30736,30740,30741,30743,30744,30745,30746,30747,30751,30752,30753,30755,30756,30758,30759,30760,30764,30766,30768,30769,30770,30771,30772,30773,30774,30775,30777,30778,30780,30781,30782,30783,30784,30785,30786,30787,30788,30789,30790,30791,30792,30793,30794,30796,30797,30798,30799,30800,30801,30802,30803,30805,30806,30808,30809,30810,30811,30812,30813,30814,30819,30820,30821,30823,30824,30825,30826,30827,30828,30829,30830,30831,30832,30833,30834,30835,30836,30837,30838,30839,30840,30841,30842,30843,30844,30847,30849,30851,30853,30854,30855,30856,30857,30858,30860,30862,30863,30865,30866,30867,30868,30869,30870,30871,30873,30874,30876,30878,30879,30880,30881,30882,30885,30886,30887,30888,30890,30891,30892,30895,30897,30898,30900,30901,30902,30903,30904,30905,30906,30907,30908,30909,30910,30911,30912,30915,30916,30918,30919,30920,30921,30922,30923,30925,30926,30927,30929,30930,30931,30932,30933,30934,30935,30936,30937,30938,30939,30940,30941,30942,30943,30944,30945,30946,30947,30948,30949,30951,30952,30953,30954,30955,30956,30957,30958,30959,30961,30962,30963,30964,30965,30966,30967,30968,30971,30972,30973,30975,30976,30977,30979,30980,30981,30982,30983,30984,30985,30986,30987,30988,30989,30990,30991,30992,30993,30994,30995,30996,30999,31002,31003,31004,31007,31008,31010,31011,31012,31014,31016,31017,31019,31021,31022,31024,31025,31026,31027,31030,31031,31032,31034,31036,31037,31038,31039,31040,31041,31042,31043,31044,31045,31046,31047,31048,31049,31050,31051,31052,31053,31054,31055,31056,31057,31058,31059,31061,31062,31063,31064,31065,31067,31068,31069,31070,31071,31072,31073,31074,31075,31076,31077,31078,31079,31080,31081,31082,31083,31086,31087,31088,31089,31090,31093,31094,31096,31097,31098,31099,31101]]],["+",[96,90,[[39,16,15,0,15,[[941,2,2,0,2],[942,4,4,2,6],[943,1,1,6,7],[944,1,1,7,8],[947,1,1,8,9],[949,1,1,9,10],[950,3,2,10,12],[952,1,1,12,13],[953,1,1,13,14],[955,1,1,14,15]]],[40,4,4,15,19,[[960,1,1,15,16],[963,1,1,16,17],[968,1,1,17,18],[969,1,1,18,19]]],[41,9,9,19,28,[[974,1,1,19,20],[975,1,1,20,21],[978,2,2,21,23],[980,1,1,23,24],[981,1,1,24,25],[982,1,1,25,26],[990,1,1,26,27],[995,1,1,27,28]]],[42,5,5,28,33,[[1003,1,1,28,29],[1006,1,1,29,30],[1007,1,1,30,31],[1010,1,1,31,32],[1016,1,1,32,33]]],[43,19,18,33,51,[[1018,1,1,33,34],[1022,1,1,34,35],[1027,1,1,35,36],[1029,1,1,36,37],[1030,1,1,37,38],[1031,2,2,38,40],[1032,1,1,40,41],[1034,3,3,41,44],[1040,3,3,44,47],[1044,1,1,47,48],[1045,4,3,48,51]]],[44,4,4,51,55,[[1048,1,1,51,52],[1050,1,1,52,53],[1056,1,1,53,54],[1058,1,1,54,55]]],[45,7,7,55,62,[[1069,1,1,55,56],[1070,1,1,56,57],[1071,1,1,57,58],[1073,3,3,58,61],[1074,1,1,61,62]]],[46,3,3,62,65,[[1078,1,1,62,63],[1081,1,1,63,64],[1088,1,1,64,65]]],[47,2,2,65,67,[[1093,1,1,65,66],[1094,1,1,66,67]]],[48,1,1,67,68,[[1100,1,1,67,68]]],[49,2,2,68,70,[[1103,1,1,68,69],[1106,1,1,69,70]]],[53,1,1,70,71,[[1122,1,1,70,71]]],[54,2,2,71,73,[[1126,2,2,71,73]]],[55,2,2,73,75,[[1130,1,1,73,74],[1131,1,1,74,75]]],[57,7,7,75,82,[[1133,1,1,75,76],[1134,1,1,76,77],[1138,1,1,77,78],[1140,1,1,78,79],[1141,2,2,79,81],[1142,1,1,81,82]]],[58,1,1,82,83,[[1147,1,1,82,83]]],[59,1,1,83,84,[[1152,1,1,83,84]]],[62,1,1,84,85,[[1164,1,1,84,85]]],[65,9,5,85,90,[[1167,4,2,85,87],[1168,1,1,87,88],[1186,2,1,88,89],[1187,2,1,89,90]]]],[23562,23575,23606,23612,23619,23620,23639,23675,23774,23857,23877,23906,23979,24028,24195,24340,24476,24678,24737,25022,25040,25168,25195,25282,25313,25370,25717,25991,26340,26505,26578,26679,26887,26929,27080,27302,27357,27406,27418,27441,27472,27528,27529,27555,27751,27752,27756,27896,27904,27916,27923,27994,28063,28237,28275,28540,28563,28589,28648,28658,28659,28676,28820,28861,29021,29119,29154,29283,29377,29444,29753,29837,29848,29912,29936,29970,29987,30050,30105,30114,30128,30134,30300,30412,30647,30705,30708,30734,31047,31059]]],["He",[16,16,[[39,6,6,0,6,[[941,3,3,0,3],[942,1,1,3,4],[944,1,1,4,5],[949,1,1,5,6]]],[40,4,4,6,10,[[962,2,2,6,8],[963,1,1,8,9],[965,1,1,9,10]]],[41,1,1,10,11,[[982,1,1,10,11]]],[42,2,2,11,13,[[1005,2,2,11,13]]],[43,1,1,13,14,[[1039,1,1,13,14]]],[45,1,1,14,15,[[1062,1,1,14,15]]],[46,1,1,15,16,[[1085,1,1,15,16]]]],[23550,23567,23576,23615,23674,23855,24444,24445,24469,24557,25389,26455,26457,27731,28394,28947]]],["She",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26392]]],["Some",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23686]]],["THE",[11,5,[[39,2,1,0,1,[[955,2,1,0,1]]],[40,2,1,1,2,[[971,2,1,1,2]]],[41,2,1,2,3,[[995,2,1,2,3]]],[42,2,1,3,4,[[1015,2,1,3,4]]],[65,3,1,4,5,[[1183,3,1,4,5]]]],[24166,24852,25973,26844,30980]]],["The",[197,194,[[39,33,33,0,33,[[932,1,1,0,1],[934,1,1,1,2],[936,2,2,2,4],[937,1,1,4,5],[938,1,1,5,6],[939,1,1,6,7],[941,7,7,7,14],[944,1,1,14,15],[945,1,1,15,16],[946,1,1,16,17],[947,2,2,17,19],[949,4,4,19,23],[950,3,3,23,26],[951,1,1,26,27],[952,1,1,27,28],[954,2,2,28,30],[955,3,3,30,33]]],[40,12,12,33,45,[[957,1,1,33,34],[958,1,1,34,35],[960,1,1,35,36],[962,1,1,36,37],[963,1,1,37,38],[965,1,1,38,39],[966,1,1,39,40],[967,1,1,40,41],[968,1,1,41,42],[970,3,3,42,45]]],[41,24,24,45,69,[[977,1,1,45,46],[979,1,1,46,47],[980,1,1,47,48],[981,2,2,48,50],[982,2,2,50,52],[983,1,1,52,53],[984,3,3,53,56],[985,1,1,56,57],[986,1,1,57,58],[988,1,1,58,59],[989,1,1,59,60],[990,1,1,60,61],[991,1,1,61,62],[992,3,3,62,65],[994,2,2,65,67],[996,2,2,67,69]]],[42,46,45,69,114,[[997,2,2,69,71],[998,1,1,71,72],[999,2,2,72,74],[1000,7,7,74,81],[1001,4,4,81,85],[1002,3,3,85,88],[1003,4,4,88,92],[1004,1,1,92,93],[1005,2,2,93,95],[1006,3,3,95,98],[1007,2,2,98,100],[1008,6,5,100,105],[1014,3,3,105,108],[1015,4,4,108,112],[1016,2,2,112,114]]],[43,18,18,114,132,[[1018,1,1,114,115],[1019,2,2,115,117],[1020,1,1,117,118],[1021,1,1,118,119],[1022,2,2,119,121],[1024,1,1,121,122],[1025,1,1,122,123],[1027,1,1,123,124],[1030,1,1,124,125],[1031,1,1,125,126],[1032,1,1,126,127],[1033,1,1,127,128],[1038,1,1,128,129],[1039,2,2,129,131],[1040,1,1,131,132]]],[44,10,10,132,142,[[1046,1,1,132,133],[1053,1,1,133,134],[1054,1,1,134,135],[1055,1,1,135,136],[1056,1,1,136,137],[1058,1,1,137,138],[1060,1,1,138,139],[1061,3,3,139,142]]],[45,11,10,142,152,[[1068,2,2,142,144],[1071,3,2,144,146],[1076,3,3,146,149],[1077,3,3,149,152]]],[46,2,2,152,154,[[1088,1,1,152,153],[1090,1,1,153,154]]],[47,2,2,154,156,[[1093,2,2,154,156]]],[48,1,1,156,157,[[1097,1,1,156,157]]],[49,3,3,157,160,[[1106,3,3,157,160]]],[50,1,1,160,161,[[1110,1,1,160,161]]],[51,1,1,161,162,[[1115,1,1,161,162]]],[52,3,3,162,165,[[1118,3,3,162,165]]],[53,1,1,165,166,[[1123,1,1,165,166]]],[54,4,4,166,170,[[1125,2,2,166,168],[1128,2,2,168,170]]],[56,1,1,170,171,[[1132,1,1,170,171]]],[57,1,1,171,172,[[1141,1,1,171,172]]],[58,1,1,172,173,[[1149,1,1,172,173]]],[59,2,2,173,175,[[1151,1,1,173,174],[1155,1,1,174,175]]],[60,1,1,175,176,[[1158,1,1,175,176]]],[61,1,1,176,177,[[1160,1,1,176,177]]],[62,2,2,177,179,[[1164,2,2,177,179]]],[63,1,1,179,180,[[1165,1,1,179,180]]],[65,15,14,180,194,[[1167,2,1,180,181],[1170,1,1,181,182],[1174,1,1,182,183],[1177,2,2,183,185],[1183,3,3,185,188],[1184,1,1,188,189],[1185,1,1,189,190],[1187,3,3,190,193],[1188,1,1,193,194]]]],[23225,23304,23353,23365,23416,23424,23478,23563,23567,23570,23572,23577,23578,23580,23673,23722,23753,23765,23782,23829,23851,23857,23869,23874,23880,23916,23920,24007,24072,24078,24150,24173,24178,24230,24287,24337,24431,24489,24569,24639,24670,24709,24768,24775,24792,25146,25229,25256,25321,25323,25365,25372,25439,25475,25482,25505,25533,25571,25636,25671,25699,25765,25783,25813,25821,25875,25889,25998,26025,26073,26087,26112,26128,26155,26167,26171,26173,26175,26181,26184,26205,26217,26220,26225,26229,26279,26298,26309,26335,26348,26360,26374,26394,26448,26470,26491,26494,26514,26551,26554,26597,26599,26603,26609,26614,26795,26804,26816,26832,26840,26846,26856,26868,26892,26924,26969,26983,27009,27048,27082,27089,27118,27208,27295,27379,27425,27465,27519,27678,27718,27728,27754,27947,28132,28167,28196,28228,28278,28306,28352,28356,28360,28491,28521,28574,28583,28763,28765,28774,28795,28797,28799,29020,29057,29113,29114,29224,29447,29463,29465,29560,29649,29694,29695,29696,29781,29825,29827,29883,29892,29963,30113,30342,30398,30478,30531,30557,30646,30658,30659,30717,30778,30834,30886,30887,30983,30984,30990,31008,31030,31069,31072,31073,31101]]],["They",[6,6,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[966,1,1,2,3]]],[41,2,2,3,5,[[980,1,1,3,4],[981,1,1,4,5]]],[57,1,1,5,6,[[1145,1,1,5,6]]]],[24120,24150,24625,25258,25320,30265]]],["Those",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25257]]],["Which",[2,2,[[56,1,1,0,1,[[1132,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[29949,30409]]],["Who",[4,4,[[43,1,1,0,1,[[1038,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]],[50,1,1,2,3,[[1107,1,1,2,3]]],[53,1,1,3,4,[[1124,1,1,3,4]]]],[27701,28804,29473,29804]]],["according",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30522]]],["another",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28282]]],["are",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28820]]],["befallen",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23378]]],["conditions",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25585]]],["disciples",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25140]]],["for",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30091]]],["he",[127,126,[[39,29,29,0,29,[[930,2,2,0,2],[932,1,1,2,3],[940,4,4,3,7],[941,2,2,7,9],[942,1,1,9,10],[943,5,5,10,15],[944,1,1,15,16],[946,1,1,16,17],[947,3,3,17,20],[948,2,2,20,22],[949,1,1,22,23],[950,1,1,23,24],[953,2,2,24,26],[954,3,3,26,29]]],[40,25,25,29,54,[[957,1,1,29,30],[961,2,2,30,32],[962,1,1,32,33],[964,1,1,33,34],[965,2,2,34,36],[966,6,6,36,42],[968,1,1,42,43],[970,7,7,43,50],[971,3,3,50,53],[972,1,1,53,54]]],[41,52,52,54,106,[[975,1,1,54,55],[976,2,2,55,57],[977,1,1,57,58],[978,2,2,58,60],[979,2,2,60,62],[980,7,7,62,69],[981,3,3,69,72],[982,3,3,72,75],[983,1,1,75,76],[984,2,2,76,78],[985,2,2,78,80],[986,1,1,80,81],[987,3,3,81,84],[988,3,3,84,87],[989,2,2,87,89],[990,5,5,89,94],[992,2,2,94,96],[993,1,1,96,97],[994,7,7,97,104],[995,2,2,104,106]]],[42,6,6,106,112,[[1000,1,1,106,107],[1002,1,1,107,108],[1005,1,1,108,109],[1014,1,1,109,110],[1016,1,1,110,111],[1017,1,1,111,112]]],[43,9,9,112,121,[[1020,1,1,112,113],[1024,1,1,113,114],[1025,1,1,114,115],[1026,1,1,115,116],[1027,1,1,116,117],[1039,1,1,117,118],[1042,1,1,118,119],[1043,2,2,119,121]]],[46,1,1,121,122,[[1085,1,1,121,122]]],[47,1,1,122,123,[[1094,1,1,122,123]]],[55,1,1,123,124,[[1130,1,1,123,124]]],[57,1,1,124,125,[[1144,1,1,124,125]]],[61,2,1,125,126,[[1162,2,1,125,126]]]],[23183,23190,23213,23492,23500,23528,23537,23568,23591,23626,23636,23646,23656,23657,23659,23695,23757,23766,23773,23779,23805,23813,23856,23884,24020,24025,24072,24077,24124,24260,24398,24404,24434,24533,24550,24559,24591,24608,24610,24624,24636,24638,24688,24774,24785,24806,24815,24822,24824,24825,24828,24829,24849,24879,25038,25103,25106,25141,25154,25156,25235,25238,25255,25266,25269,25275,25293,25297,25301,25315,25322,25360,25390,25392,25400,25451,25473,25480,25526,25541,25569,25615,25617,25619,25626,25627,25650,25682,25688,25709,25711,25715,25717,25729,25796,25804,25834,25874,25889,25897,25898,25902,25921,25934,25938,25957,26188,26277,26478,26799,26892,26904,27001,27118,27207,27226,27263,27718,27818,27838,27848,28947,29154,29916,30222,30607]]],["her",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23150]]],["him",[12,12,[[39,3,3,0,3,[[952,2,2,0,2],[953,1,1,2,3]]],[40,1,1,3,4,[[969,1,1,3,4]]],[41,1,1,4,5,[[982,1,1,4,5]]],[44,2,2,5,7,[[1048,1,1,5,6],[1050,1,1,6,7]]],[47,1,1,7,8,[[1094,1,1,7,8]]],[57,1,1,8,9,[[1144,1,1,8,9]]],[59,1,1,9,10,[[1152,1,1,9,10]]],[61,2,2,10,12,[[1160,2,2,10,12]]]],[23974,23975,24037,24732,25379,28017,28061,29160,30237,30408,30563,30564]]],["it",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30008]]],["of",[8,7,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,3,2,1,3,[[958,2,1,1,2],[970,1,1,2,3]]],[45,2,2,3,5,[[1062,1,1,3,4],[1071,1,1,4,5]]],[47,1,1,5,6,[[1092,1,1,5,6]]],[58,1,1,6,7,[[1146,1,1,6,7]]]],[24082,24278,24778,28381,28596,29101,30291]]],["one",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]]],[24222,25675]]],["other",[3,3,[[41,1,1,0,1,[[989,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]]],[25675,27541,29378]]],["others",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]]],[24121,27555]]],["part",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27418]]],["same",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28507]]],["shalt",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23780]]],["she",[10,9,[[39,3,3,0,3,[[942,1,1,0,1],[943,2,2,1,3]]],[40,3,2,3,5,[[962,2,1,3,4],[963,1,1,4,5]]],[41,1,1,5,6,[[973,1,1,5,6]]],[43,3,3,6,9,[[1022,1,1,6,7],[1026,1,1,7,8],[1029,1,1,8,9]]]],[23605,23658,23660,24431,24491,24922,27067,27256,27352]]],["some",[8,5,[[39,3,2,0,2,[[941,2,1,0,1],[956,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[43,1,1,3,4,[[1045,1,1,3,4]]],[48,3,1,4,5,[[1100,3,1,4,5]]]],[23562,24212,24678,27923,29283]]],["that",[51,44,[[39,9,9,0,9,[[930,1,1,0,1],[933,1,1,1,2],[934,1,1,2,3],[935,1,1,3,4],[948,1,1,4,5],[951,2,2,5,7],[952,1,1,7,8],[955,1,1,8,9]]],[40,3,3,9,12,[[960,2,2,9,11],[969,1,1,11,12]]],[41,10,6,12,18,[[977,2,2,12,14],[978,5,2,14,16],[980,1,1,16,17],[983,2,1,17,18]]],[42,3,3,18,21,[[1001,2,2,18,20],[1004,1,1,20,21]]],[43,6,5,21,26,[[1019,1,1,21,22],[1021,1,1,22,23],[1031,1,1,23,24],[1033,1,1,24,25],[1043,2,1,25,26]]],[44,5,4,26,30,[[1046,2,2,26,28],[1048,1,1,28,29],[1049,2,1,29,30]]],[45,1,1,30,31,[[1074,1,1,30,31]]],[46,1,1,31,32,[[1088,1,1,31,32]]],[48,1,1,32,33,[[1100,1,1,32,33]]],[49,1,1,33,34,[[1105,1,1,33,34]]],[50,2,1,34,35,[[1107,2,1,34,35]]],[54,2,2,35,37,[[1125,1,1,35,36],[1126,1,1,36,37]]],[55,1,1,37,38,[[1131,1,1,37,38]]],[59,2,2,38,40,[[1153,1,1,38,39],[1155,1,1,39,40]]],[60,1,1,40,41,[[1156,1,1,40,41]]],[61,2,2,41,43,[[1160,1,1,41,42],[1162,1,1,42,43]]],[65,1,1,43,44,[[1171,1,1,43,44]]]],[23185,23249,23305,23319,23801,23936,23944,23995,24138,24334,24354,24742,25116,25143,25187,25188,25260,25445,26238,26254,26399,26988,27046,27429,27515,27841,27945,27956,28015,28038,28675,28992,29281,29430,29481,29814,29828,29938,30427,30479,30482,30566,30606,30792]]],["the",[7597,4362,[[39,1065,597,0,597,[[929,11,7,0,7],[930,35,20,7,27],[931,17,8,27,35],[932,22,12,35,47],[933,39,25,47,72],[934,32,15,72,87],[935,25,13,87,100],[936,36,19,100,119],[937,44,24,119,143],[938,21,14,143,157],[939,19,9,157,166],[940,62,34,166,200],[941,79,35,200,235],[942,40,24,235,259],[943,32,19,259,278],[944,34,18,278,296],[945,22,15,296,311],[946,21,15,311,326],[947,13,10,326,336],[948,37,23,336,359],[949,65,35,359,394],[950,37,24,394,418],[951,46,24,418,442],[952,59,27,442,469],[953,38,28,469,497],[954,76,45,497,542],[955,78,41,542,583],[956,25,14,583,597]]],[40,670,396,597,993,[[957,45,29,597,626],[958,44,20,626,646],[959,24,16,646,662],[960,52,25,662,687],[961,53,31,687,718],[962,47,29,718,747],[963,41,23,747,770],[964,34,20,770,790],[965,31,27,790,817],[966,37,26,817,843],[967,33,19,843,862],[968,53,27,862,889],[969,29,20,889,909],[970,79,42,909,951],[971,47,30,951,981],[972,21,12,981,993]]],[41,952,588,993,1581,[[973,57,39,993,1032],[974,41,26,1032,1058],[975,25,17,1058,1075],[976,48,30,1075,1105],[977,41,19,1105,1124],[978,42,24,1124,1148],[979,42,25,1148,1173],[980,68,35,1173,1208],[981,47,32,1208,1240],[982,30,19,1240,1259],[983,53,30,1259,1289],[984,51,33,1289,1322],[985,31,19,1322,1341],[986,21,14,1341,1355],[987,20,16,1355,1371],[988,27,15,1371,1386],[989,36,20,1386,1406],[990,22,16,1406,1422],[991,38,25,1422,1447],[992,47,25,1447,1472],[993,25,17,1472,1489],[994,56,38,1489,1527],[995,44,29,1527,1556],[996,40,25,1556,1581]]],[42,821,494,1581,2075,[[997,48,29,1581,1610],[998,32,17,1610,1627],[999,37,20,1627,1647],[1000,42,28,1647,1675],[1001,48,27,1675,1702],[1002,72,43,1702,1745],[1003,47,31,1745,1776],[1004,46,33,1776,1809],[1005,23,16,1809,1825],[1006,41,25,1825,1850],[1007,50,32,1850,1882],[1008,39,27,1882,1909],[1009,19,12,1909,1921],[1010,34,19,1921,1940],[1011,23,13,1940,1953],[1012,25,18,1953,1971],[1013,29,19,1971,1990],[1014,46,25,1990,2015],[1015,50,26,2015,2041],[1016,44,20,2041,2061],[1017,26,14,2061,2075]]],[43,1162,680,2075,2755,[[1018,17,14,2075,2089],[1019,36,29,2089,2118],[1020,29,19,2118,2137],[1021,42,28,2137,2165],[1022,60,30,2165,2195],[1023,28,13,2195,2208],[1024,58,34,2208,2242],[1025,40,26,2242,2268],[1026,49,31,2268,2299],[1027,37,25,2299,2324],[1028,30,18,2324,2342],[1029,35,21,2342,2363],[1030,72,38,2363,2401],[1031,38,20,2401,2421],[1032,53,31,2421,2452],[1033,53,30,2452,2482],[1034,40,22,2482,2504],[1035,37,22,2504,2526],[1036,50,27,2526,2553],[1037,39,22,2553,2575],[1038,69,32,2575,2607],[1039,31,20,2607,2627],[1040,43,27,2627,2654],[1041,22,13,2654,2667],[1042,32,18,2667,2685],[1043,29,20,2685,2705],[1044,55,29,2705,2734],[1045,38,21,2734,2755]]],[44,318,203,2755,2958,[[1046,19,13,2755,2768],[1047,26,16,2768,2784],[1048,14,10,2784,2794],[1049,21,14,2794,2808],[1050,16,11,2808,2819],[1051,10,8,2819,2827],[1052,28,18,2827,2845],[1053,43,21,2845,2866],[1054,28,14,2866,2880],[1055,15,11,2880,2891],[1056,27,15,2891,2906],[1057,9,8,2906,2914],[1058,12,7,2914,2921],[1059,9,6,2921,2927],[1060,23,17,2927,2944],[1061,18,14,2944,2958]]],[45,328,196,2958,3154,[[1062,31,16,2958,2974],[1063,14,8,2974,2982],[1064,11,7,2982,2989],[1065,12,6,2989,2995],[1066,12,6,2995,3001],[1067,20,10,3001,3011],[1068,28,16,3011,3027],[1069,6,6,3027,3033],[1070,22,13,3033,3046],[1071,25,16,3046,3062],[1072,29,17,3062,3079],[1073,35,20,3079,3099],[1074,2,2,3099,3101],[1075,26,18,3101,3119],[1076,41,24,3119,3143],[1077,14,11,3143,3154]]],[46,177,110,3154,3264,[[1078,17,11,3154,3165],[1079,4,4,3165,3169],[1080,21,10,3169,3179],[1081,21,10,3179,3189],[1082,13,9,3189,3198],[1083,5,4,3198,3202],[1084,7,6,3202,3208],[1085,25,13,3208,3221],[1086,14,9,3221,3230],[1087,9,7,3230,3237],[1088,13,10,3237,3247],[1089,16,10,3247,3257],[1090,12,7,3257,3264]]],[47,111,71,3264,3335,[[1091,14,11,3264,3275],[1092,19,11,3275,3286],[1093,25,16,3286,3302],[1094,24,15,3302,3317],[1095,17,10,3317,3327],[1096,12,8,3327,3335]]],[48,167,98,3335,3433,[[1097,25,17,3335,3352],[1098,27,13,3352,3365],[1099,29,18,3365,3383],[1100,35,17,3383,3400],[1101,27,18,3400,3418],[1102,24,15,3418,3433]]],[49,45,34,3433,3467,[[1103,15,11,3433,3444],[1104,7,6,3444,3450],[1105,18,12,3450,3462],[1106,5,5,3462,3467]]],[50,92,52,3467,3519,[[1107,37,18,3467,3485],[1108,33,17,3485,3502],[1109,13,10,3502,3512],[1110,9,7,3512,3519]]],[51,40,30,3519,3549,[[1111,6,4,3519,3523],[1112,9,7,3523,3530],[1113,5,5,3530,3535],[1114,9,7,3535,3542],[1115,11,7,3542,3549]]],[52,31,22,3549,3571,[[1116,11,8,3549,3557],[1117,12,9,3557,3566],[1118,8,5,3566,3571]]],[53,45,37,3571,3608,[[1119,9,7,3571,3578],[1120,1,1,3578,3579],[1121,6,5,3579,3584],[1122,9,6,3584,3590],[1123,7,7,3590,3597],[1124,13,11,3597,3608]]],[54,46,33,3608,3641,[[1125,8,5,3608,3613],[1126,15,11,3613,3624],[1127,6,5,3624,3629],[1128,17,12,3629,3641]]],[55,11,9,3641,3650,[[1129,5,4,3641,3645],[1130,5,4,3645,3649],[1131,1,1,3649,3650]]],[56,7,5,3650,3655,[[1132,7,5,3650,3655]]],[57,276,168,3655,3823,[[1133,15,10,3655,3665],[1134,12,8,3665,3673],[1135,12,8,3673,3681],[1136,11,9,3681,3690],[1137,8,6,3690,3696],[1138,15,11,3696,3707],[1139,33,19,3707,3726],[1140,17,8,3726,3734],[1141,51,24,3734,3758],[1142,32,21,3758,3779],[1143,37,20,3779,3799],[1144,16,13,3799,3812],[1145,17,11,3812,3823]]],[58,87,54,3823,3877,[[1146,16,10,3823,3833],[1147,16,13,3833,3846],[1148,14,10,3846,3856],[1149,8,6,3856,3862],[1150,33,15,3862,3877]]],[59,67,51,3877,3928,[[1151,15,11,3877,3888],[1152,16,13,3888,3901],[1153,13,10,3901,3911],[1154,15,10,3911,3921],[1155,8,7,3921,3928]]],[60,48,27,3928,3955,[[1156,8,8,3928,3936],[1157,18,9,3936,3945],[1158,22,10,3945,3955]]],[61,126,67,3955,4022,[[1159,10,7,3955,3962],[1160,44,20,3962,3982],[1161,20,12,3982,3994],[1162,18,11,3994,4005],[1163,34,17,4005,4022]]],[62,10,6,4022,4028,[[1164,10,6,4022,4028]]],[63,10,9,4028,4037,[[1165,10,9,4028,4037]]],[64,20,10,4037,4047,[[1166,20,10,4037,4047]]],[65,865,315,4047,4362,[[1167,34,15,4047,4062],[1168,44,21,4062,4083],[1169,32,12,4083,4095],[1170,18,9,4095,4104],[1171,40,14,4104,4118],[1172,42,14,4118,4132],[1173,31,12,4132,4144],[1174,52,13,4144,4157],[1175,46,14,4157,4171],[1176,24,9,4171,4180],[1177,35,14,4180,4194],[1178,43,13,4194,4207],[1179,41,14,4207,4221],[1180,53,19,4221,4240],[1181,23,7,4240,4247],[1182,53,17,4247,4264],[1183,43,16,4264,4280],[1184,25,15,4280,4295],[1185,37,13,4295,4308],[1186,42,15,4308,4323],[1187,71,25,4323,4348],[1188,36,14,4348,4362]]]],[23150,23155,23160,23161,23162,23166,23168,23170,23171,23172,23173,23174,23175,23176,23177,23178,23179,23180,23182,23183,23184,23185,23186,23189,23190,23191,23192,23193,23194,23195,23197,23199,23202,23204,23208,23210,23212,23214,23217,23220,23223,23224,23226,23227,23230,23231,23232,23237,23239,23241,23242,23243,23244,23246,23247,23248,23249,23251,23252,23253,23254,23255,23256,23257,23258,23259,23260,23267,23269,23273,23280,23281,23284,23287,23289,23295,23298,23304,23305,23306,23307,23308,23310,23312,23314,23315,23316,23319,23320,23321,23322,23328,23329,23330,23337,23341,23342,23343,23344,23345,23346,23349,23356,23357,23358,23360,23361,23362,23363,23365,23367,23369,23371,23372,23373,23376,23377,23378,23379,23381,23382,23385,23387,23388,23389,23390,23393,23394,23395,23396,23399,23401,23402,23403,23404,23405,23407,23412,23413,23414,23415,23416,23417,23419,23420,23421,23427,23430,23431,23435,23437,23440,23442,23444,23445,23446,23447,23461,23466,23470,23471,23472,23479,23480,23482,23486,23490,23491,23493,23494,23495,23496,23497,23499,23500,23501,23502,23503,23506,23507,23508,23511,23512,23513,23517,23518,23520,23521,23522,23523,23524,23527,23528,23529,23530,23531,23532,23534,23535,23539,23540,23541,23543,23546,23549,23550,23553,23557,23558,23559,23560,23561,23562,23564,23565,23566,23568,23569,23571,23573,23574,23575,23576,23577,23578,23579,23582,23583,23584,23586,23587,23588,23589,23591,23594,23598,23599,23602,23603,23606,23607,23608,23609,23610,23612,23616,23617,23619,23621,23622,23623,23625,23626,23627,23629,23630,23631,23632,23633,23635,23636,23643,23644,23645,23650,23651,23652,23654,23655,23659,23660,23662,23664,23665,23668,23669,23670,23672,23674,23675,23676,23677,23678,23681,23682,23683,23684,23685,23686,23688,23691,23692,23693,23698,23699,23700,23702,23705,23706,23709,23710,23712,23713,23714,23715,23718,23719,23723,23725,23726,23727,23728,23730,23731,23733,23734,23737,23738,23739,23740,23744,23750,23754,23755,23757,23761,23763,23770,23772,23775,23776,23779,23784,23785,23786,23790,23793,23794,23795,23796,23798,23799,23800,23801,23802,23803,23804,23808,23809,23810,23811,23812,23814,23815,23816,23817,23820,23822,23823,23827,23828,23830,23831,23832,23833,23834,23835,23836,23837,23838,23840,23841,23843,23844,23845,23846,23847,23849,23852,23854,23856,23857,23858,23860,23861,23862,23864,23865,23866,23867,23868,23869,23871,23872,23875,23876,23878,23879,23881,23882,23883,23885,23887,23888,23891,23897,23898,23899,23900,23901,23902,23903,23904,23905,23906,23908,23912,23913,23919,23920,23923,23924,23925,23927,23931,23934,23935,23936,23937,23938,23939,23940,23941,23943,23944,23947,23948,23949,23950,23951,23953,23955,23958,23960,23963,23969,23971,23972,23973,23974,23975,23981,23983,23984,23985,23986,23987,23988,23989,23993,23994,23995,23996,23997,23998,24000,24001,24006,24008,24009,24012,24013,24014,24016,24017,24018,24019,24021,24024,24026,24027,24029,24031,24032,24033,24035,24036,24038,24039,24040,24041,24042,24045,24048,24049,24053,24054,24056,24057,24059,24060,24064,24065,24067,24068,24071,24072,24073,24074,24077,24078,24080,24081,24082,24083,24084,24085,24089,24090,24091,24094,24095,24098,24099,24101,24105,24108,24109,24110,24111,24112,24113,24115,24116,24117,24118,24119,24123,24125,24126,24128,24129,24130,24131,24132,24134,24135,24136,24138,24139,24140,24141,24143,24144,24148,24149,24150,24152,24153,24154,24156,24158,24159,24160,24164,24169,24170,24171,24174,24175,24179,24180,24181,24182,24183,24185,24187,24188,24189,24190,24191,24193,24195,24196,24197,24199,24200,24201,24202,24203,24204,24206,24207,24210,24211,24214,24215,24216,24217,24218,24219,24220,24222,24225,24227,24228,24229,24230,24231,24234,24235,24236,24237,24239,24241,24242,24243,24244,24246,24247,24248,24249,24253,24257,24259,24260,24262,24264,24265,24266,24269,24270,24272,24273,24274,24276,24278,24279,24280,24281,24282,24283,24284,24286,24287,24288,24289,24290,24291,24292,24293,24294,24295,24297,24299,24305,24306,24310,24315,24316,24317,24323,24324,24327,24330,24333,24334,24337,24338,24339,24341,24342,24343,24349,24350,24351,24352,24353,24354,24355,24356,24358,24359,24360,24361,24362,24364,24365,24366,24367,24368,24369,24371,24372,24374,24375,24376,24377,24378,24379,24380,24382,24383,24385,24386,24391,24393,24394,24395,24397,24399,24400,24401,24402,24403,24404,24405,24406,24409,24410,24413,24414,24418,24421,24422,24429,24431,24432,24433,24434,24435,24437,24440,24443,24446,24448,24450,24451,24452,24454,24455,24456,24458,24459,24460,24461,24463,24464,24466,24468,24471,24472,24477,24478,24480,24481,24482,24483,24484,24486,24487,24489,24490,24491,24492,24493,24494,24496,24498,24500,24502,24503,24506,24510,24511,24513,24514,24515,24519,24520,24523,24526,24527,24528,24529,24531,24534,24535,24536,24538,24539,24545,24547,24548,24549,24550,24552,24553,24554,24555,24558,24562,24563,24565,24569,24571,24572,24573,24574,24580,24581,24582,24583,24584,24585,24586,24588,24589,24590,24593,24598,24602,24603,24607,24609,24611,24612,24613,24617,24618,24619,24620,24621,24622,24623,24626,24627,24629,24630,24633,24634,24637,24640,24641,24642,24643,24644,24645,24647,24648,24650,24651,24652,24655,24656,24658,24659,24660,24661,24663,24667,24672,24675,24680,24681,24682,24683,24685,24686,24687,24693,24694,24695,24696,24697,24699,24700,24701,24702,24705,24706,24707,24708,24709,24710,24711,24712,24714,24716,24718,24720,24721,24724,24727,24728,24731,24732,24733,24737,24739,24741,24742,24743,24744,24745,24749,24750,24751,24752,24755,24756,24757,24758,24759,24761,24762,24763,24764,24766,24767,24768,24770,24771,24774,24775,24777,24778,24779,24780,24781,24789,24792,24793,24795,24797,24801,24803,24805,24806,24807,24808,24809,24814,24815,24816,24817,24818,24819,24820,24822,24826,24827,24828,24829,24833,24834,24835,24836,24837,24838,24841,24842,24844,24845,24846,24847,24852,24854,24855,24856,24857,24858,24859,24860,24864,24865,24866,24869,24870,24871,24872,24874,24875,24876,24877,24878,24879,24881,24886,24887,24888,24892,24893,24895,24897,24898,24899,24901,24902,24903,24904,24906,24908,24909,24911,24912,24914,24915,24916,24918,24919,24920,24921,24923,24925,24926,24927,24928,24931,24932,24933,24934,24935,24936,24937,24939,24941,24952,24958,24962,24968,24973,24974,24979,24980,24981,24983,24986,24988,24989,24990,24991,24993,24994,24995,24996,24999,25000,25010,25011,25012,25013,25014,25015,25016,25017,25019,25023,25026,25027,25028,25029,25030,25031,25032,25034,25035,25040,25041,25042,25043,25044,25046,25047,25048,25064,25065,25066,25068,25069,25072,25076,25077,25079,25080,25081,25083,25085,25088,25090,25091,25092,25094,25096,25097,25098,25099,25100,25101,25102,25103,25104,25105,25106,25107,25108,25109,25110,25111,25112,25114,25116,25120,25121,25123,25126,25128,25131,25134,25140,25141,25142,25143,25144,25147,25148,25150,25151,25152,25153,25154,25155,25156,25161,25163,25165,25166,25169,25172,25175,25179,25181,25184,25187,25188,25191,25194,25195,25196,25198,25201,25204,25205,25206,25207,25208,25209,25212,25213,25215,25219,25223,25224,25225,25226,25228,25231,25232,25233,25234,25236,25239,25245,25246,25250,25252,25255,25256,25257,25258,25260,25261,25264,25266,25267,25268,25269,25270,25271,25272,25274,25276,25277,25278,25279,25280,25282,25283,25284,25285,25286,25287,25289,25290,25292,25294,25296,25299,25303,25306,25307,25308,25309,25311,25312,25313,25317,25319,25320,25323,25326,25327,25328,25330,25333,25335,25336,25337,25338,25339,25343,25344,25345,25348,25352,25357,25358,25359,25361,25363,25364,25365,25367,25369,25370,25372,25373,25374,25376,25377,25380,25382,25383,25385,25386,25389,25395,25398,25399,25412,25419,25420,25425,25429,25431,25432,25433,25434,25435,25436,25437,25438,25439,25440,25441,25443,25444,25447,25448,25449,25450,25451,25452,25453,25454,25455,25456,25457,25458,25460,25462,25463,25466,25467,25468,25469,25470,25471,25472,25481,25482,25483,25485,25486,25487,25489,25490,25491,25492,25495,25496,25497,25498,25499,25501,25504,25505,25508,25513,25515,25517,25518,25519,25520,25522,25525,25528,25532,25533,25534,25535,25536,25537,25538,25542,25543,25546,25547,25550,25551,25552,25554,25556,25558,25560,25561,25562,25563,25567,25568,25574,25575,25576,25581,25587,25589,25590,25592,25596,25597,25598,25600,25601,25604,25609,25610,25611,25613,25614,25615,25618,25623,25624,25625,25628,25629,25631,25633,25634,25636,25637,25641,25642,25644,25649,25651,25652,25653,25656,25657,25658,25665,25668,25671,25672,25673,25675,25677,25678,25679,25681,25682,25685,25686,25687,25688,25694,25696,25698,25700,25701,25704,25705,25708,25712,25713,25718,25719,25720,25721,25723,25731,25734,25736,25739,25741,25742,25746,25747,25749,25754,25755,25760,25761,25762,25764,25766,25767,25768,25769,25770,25771,25772,25775,25776,25778,25779,25780,25785,25788,25789,25792,25793,25794,25795,25796,25798,25799,25800,25805,25806,25808,25809,25810,25811,25812,25814,25815,25816,25818,25824,25825,25827,25830,25831,25834,25835,25846,25847,25849,25851,25852,25853,25855,25857,25861,25862,25863,25864,25865,25866,25867,25868,25871,25872,25874,25875,25877,25878,25880,25882,25884,25885,25886,25889,25890,25894,25895,25903,25904,25908,25911,25912,25914,25916,25917,25918,25919,25920,25924,25925,25927,25928,25930,25931,25933,25934,25936,25937,25938,25939,25940,25941,25945,25948,25949,25954,25958,25961,25964,25965,25966,25968,25970,25971,25972,25974,25975,25979,25980,25982,25983,25986,25987,25990,25991,25992,25993,25994,25996,25998,26000,26001,26003,26009,26010,26011,26013,26015,26016,26018,26019,26020,26023,26024,26026,26035,26036,26037,26040,26044,26045,26048,26049,26051,26053,26054,26058,26061,26062,26063,26064,26067,26068,26073,26076,26077,26078,26079,26080,26081,26084,26085,26086,26088,26089,26092,26093,26094,26095,26096,26097,26098,26100,26101,26102,26103,26104,26105,26108,26109,26110,26113,26115,26116,26117,26118,26121,26123,26125,26126,26128,26133,26134,26136,26137,26138,26139,26140,26141,26142,26148,26149,26151,26154,26155,26156,26157,26161,26162,26164,26165,26166,26167,26168,26170,26176,26177,26178,26179,26184,26185,26186,26187,26189,26190,26191,26195,26196,26198,26201,26202,26206,26208,26209,26211,26212,26213,26214,26217,26219,26224,26225,26226,26228,26229,26230,26231,26232,26233,26235,26236,26238,26240,26242,26243,26246,26247,26249,26252,26254,26255,26258,26261,26267,26268,26269,26270,26271,26273,26274,26276,26278,26279,26280,26281,26282,26283,26284,26285,26286,26288,26289,26290,26292,26294,26295,26296,26297,26298,26299,26301,26302,26303,26306,26307,26308,26310,26311,26314,26319,26320,26324,26326,26328,26329,26330,26331,26332,26335,26338,26339,26340,26341,26342,26343,26345,26347,26350,26351,26354,26356,26359,26360,26363,26365,26366,26367,26368,26369,26370,26371,26373,26375,26376,26377,26382,26383,26384,26386,26387,26389,26390,26391,26393,26396,26397,26398,26399,26401,26403,26406,26407,26408,26409,26410,26413,26416,26417,26420,26421,26422,26425,26426,26429,26433,26434,26438,26440,26443,26444,26445,26446,26447,26451,26453,26454,26455,26456,26457,26458,26462,26464,26475,26480,26482,26483,26484,26485,26486,26488,26489,26490,26492,26493,26494,26495,26496,26500,26502,26503,26504,26505,26506,26512,26516,26517,26518,26519,26521,26524,26525,26527,26531,26532,26533,26540,26542,26543,26547,26548,26550,26553,26554,26556,26559,26560,26561,26562,26563,26564,26565,26568,26569,26570,26571,26573,26575,26577,26578,26579,26580,26581,26583,26586,26587,26588,26589,26590,26591,26592,26593,26598,26599,26600,26603,26604,26611,26612,26614,26615,26616,26618,26622,26623,26626,26627,26628,26630,26631,26632,26633,26635,26648,26652,26656,26657,26659,26660,26661,26663,26672,26673,26674,26676,26677,26678,26679,26680,26681,26684,26685,26687,26690,26692,26694,26695,26696,26698,26699,26700,26702,26703,26704,26708,26714,26715,26717,26718,26719,26723,26724,26725,26729,26730,26733,26734,26737,26739,26741,26742,26743,26746,26747,26749,26751,26752,26753,26754,26758,26759,26760,26762,26763,26764,26765,26767,26768,26770,26771,26772,26773,26774,26775,26777,26780,26781,26782,26784,26785,26786,26787,26788,26794,26795,26796,26797,26799,26800,26801,26802,26803,26805,26807,26808,26809,26811,26813,26817,26818,26820,26821,26822,26823,26824,26827,26828,26830,26831,26834,26837,26838,26839,26844,26845,26846,26848,26849,26850,26851,26852,26853,26855,26856,26857,26859,26861,26863,26865,26866,26867,26868,26869,26870,26871,26872,26873,26874,26875,26876,26877,26878,26879,26882,26885,26886,26887,26891,26892,26893,26898,26899,26900,26902,26904,26905,26906,26908,26909,26910,26915,26918,26921,26922,26923,26925,26926,26927,26929,26930,26931,26937,26938,26939,26941,26942,26944,26945,26949,26950,26951,26953,26955,26958,26959,26960,26963,26964,26965,26966,26968,26969,26970,26972,26973,26974,26978,26980,26982,26983,26986,26987,26988,26990,26991,26992,26995,26996,26997,26998,26999,27002,27003,27004,27005,27006,27007,27008,27009,27010,27011,27012,27015,27018,27019,27020,27021,27023,27024,27025,27026,27027,27028,27029,27030,27032,27033,27035,27036,27037,27039,27040,27043,27044,27045,27046,27048,27052,27053,27054,27055,27056,27057,27058,27059,27061,27062,27065,27067,27068,27069,27070,27071,27072,27073,27074,27075,27076,27077,27078,27079,27080,27081,27082,27083,27084,27085,27086,27088,27091,27093,27096,27099,27100,27101,27102,27103,27105,27106,27107,27108,27109,27110,27111,27113,27114,27115,27116,27117,27123,27124,27125,27127,27129,27132,27133,27139,27140,27142,27144,27146,27147,27148,27149,27150,27151,27152,27153,27154,27157,27158,27159,27160,27161,27162,27164,27167,27168,27169,27170,27172,27174,27177,27179,27180,27182,27185,27186,27188,27190,27192,27194,27196,27198,27200,27201,27202,27204,27205,27206,27208,27209,27210,27212,27213,27214,27215,27216,27217,27218,27220,27221,27222,27223,27224,27226,27227,27230,27231,27233,27235,27236,27237,27238,27239,27240,27241,27242,27243,27245,27246,27247,27248,27251,27254,27255,27256,27257,27258,27261,27262,27266,27268,27270,27271,27275,27276,27278,27280,27281,27282,27283,27289,27295,27296,27297,27298,27299,27300,27301,27303,27304,27306,27307,27308,27313,27318,27319,27322,27323,27324,27325,27326,27327,27328,27329,27330,27331,27333,27335,27336,27337,27338,27339,27340,27341,27342,27343,27344,27345,27346,27347,27348,27349,27350,27351,27354,27355,27356,27357,27359,27360,27361,27363,27364,27366,27367,27368,27369,27370,27372,27373,27374,27376,27377,27379,27380,27382,27384,27386,27388,27389,27391,27393,27394,27395,27396,27398,27401,27402,27404,27405,27406,27407,27408,27409,27410,27411,27412,27413,27414,27415,27416,27417,27418,27419,27420,27425,27426,27427,27428,27429,27432,27433,27434,27436,27437,27439,27440,27441,27442,27443,27444,27445,27446,27447,27448,27449,27450,27452,27453,27454,27457,27458,27459,27461,27463,27464,27465,27466,27468,27469,27470,27472,27473,27474,27475,27477,27478,27480,27482,27483,27485,27486,27487,27488,27489,27490,27492,27493,27494,27496,27497,27498,27500,27501,27502,27503,27505,27506,27507,27508,27509,27510,27514,27515,27516,27518,27519,27521,27522,27523,27524,27525,27527,27528,27529,27530,27531,27532,27533,27534,27536,27537,27539,27540,27541,27547,27549,27550,27552,27553,27554,27557,27560,27561,27562,27563,27564,27565,27566,27568,27569,27570,27571,27573,27574,27575,27576,27579,27580,27581,27582,27583,27584,27585,27586,27589,27590,27591,27593,27594,27595,27596,27597,27598,27600,27601,27602,27604,27605,27606,27609,27610,27612,27614,27615,27616,27617,27618,27620,27623,27626,27627,27629,27632,27633,27634,27635,27638,27641,27642,27643,27645,27648,27649,27650,27651,27652,27653,27654,27655,27658,27661,27664,27665,27667,27668,27669,27671,27672,27675,27677,27678,27680,27681,27682,27683,27684,27685,27688,27689,27690,27691,27692,27693,27694,27695,27696,27697,27698,27699,27700,27701,27702,27703,27704,27706,27707,27709,27711,27713,27714,27715,27716,27717,27720,27721,27724,27726,27727,27728,27730,27731,27732,27733,27734,27735,27736,27737,27740,27741,27743,27744,27745,27746,27748,27749,27750,27751,27752,27753,27754,27756,27757,27758,27760,27761,27762,27764,27765,27766,27767,27768,27770,27774,27775,27776,27778,27779,27781,27783,27787,27789,27791,27793,27796,27797,27798,27799,27802,27803,27804,27805,27808,27810,27811,27812,27813,27814,27817,27818,27819,27820,27823,27824,27827,27828,27829,27830,27832,27833,27835,27836,27837,27840,27841,27842,27843,27844,27845,27846,27849,27850,27853,27857,27858,27859,27860,27861,27862,27864,27865,27866,27867,27870,27871,27872,27873,27874,27877,27882,27885,27886,27887,27889,27892,27893,27894,27895,27896,27897,27898,27899,27900,27901,27902,27903,27904,27906,27907,27908,27910,27914,27915,27916,27918,27919,27920,27922,27924,27926,27927,27928,27930,27938,27939,27940,27942,27946,27948,27950,27953,27954,27955,27956,27957,27962,27963,27964,27965,27966,27970,27975,27976,27977,27978,27979,27980,27982,27985,27986,27988,27989,27992,27993,27997,27998,28010,28012,28014,28015,28016,28020,28025,28026,28027,28028,28031,28033,28034,28035,28036,28037,28038,28039,28041,28042,28049,28052,28057,28058,28059,28061,28062,28063,28064,28066,28067,28072,28073,28074,28080,28087,28089,28090,28091,28092,28093,28095,28096,28097,28098,28099,28100,28101,28102,28103,28104,28105,28107,28113,28114,28115,28116,28118,28119,28120,28121,28123,28126,28127,28128,28129,28134,28135,28136,28137,28139,28142,28143,28144,28145,28151,28152,28155,28159,28160,28161,28163,28164,28166,28167,28172,28175,28176,28178,28181,28182,28183,28191,28193,28194,28195,28196,28199,28200,28201,28203,28204,28206,28211,28213,28216,28220,28221,28224,28225,28226,28227,28230,28233,28234,28235,28237,28238,28246,28247,28248,28249,28251,28256,28258,28261,28267,28268,28269,28270,28277,28278,28280,28281,28286,28288,28290,28297,28300,28304,28307,28308,28311,28312,28314,28316,28318,28319,28322,28328,28329,28330,28332,28333,28334,28336,28337,28340,28341,28343,28347,28348,28350,28351,28353,28354,28356,28359,28361,28362,28365,28367,28369,28370,28371,28373,28376,28379,28380,28381,28382,28383,28384,28388,28390,28391,28395,28400,28401,28402,28404,28405,28406,28408,28415,28420,28423,28426,28427,28429,28430,28438,28442,28446,28448,28452,28453,28455,28458,28459,28460,28461,28464,28468,28469,28471,28478,28480,28481,28482,28484,28485,28486,28490,28491,28495,28497,28499,28501,28502,28504,28513,28515,28516,28518,28519,28520,28521,28522,28531,28533,28534,28537,28538,28539,28542,28545,28547,28548,28549,28552,28553,28554,28558,28559,28560,28562,28564,28568,28569,28570,28571,28572,28577,28578,28580,28583,28585,28587,28593,28595,28596,28599,28600,28602,28603,28606,28609,28610,28612,28616,28617,28618,28622,28623,28625,28626,28627,28629,28632,28634,28638,28639,28640,28641,28642,28643,28645,28646,28649,28650,28651,28652,28653,28655,28656,28657,28659,28660,28662,28665,28666,28671,28683,28685,28687,28689,28690,28693,28694,28695,28699,28701,28703,28705,28707,28708,28711,28712,28714,28715,28719,28721,28722,28723,28724,28725,28727,28728,28742,28746,28747,28753,28757,28758,28760,28763,28765,28766,28767,28770,28772,28774,28775,28776,28777,28783,28786,28787,28788,28789,28791,28793,28795,28796,28798,28801,28803,28804,28805,28806,28807,28809,28812,28814,28819,28822,28828,28833,28838,28841,28847,28848,28849,28850,28851,28854,28855,28857,28858,28859,28861,28863,28865,28866,28869,28870,28872,28873,28874,28875,28878,28882,28883,28885,28887,28888,28891,28895,28896,28899,28901,28905,28911,28922,28923,28924,28926,28929,28931,28933,28934,28936,28937,28938,28940,28941,28943,28948,28949,28950,28951,28956,28957,28958,28959,28961,28965,28966,28968,28969,28970,28972,28975,28976,28979,28984,28985,28989,28992,28994,28996,28998,28999,29007,29014,29017,29021,29022,29024,29025,29029,29030,29031,29033,29034,29036,29040,29043,29045,29048,29051,29053,29054,29056,29057,29059,29061,29064,29068,29070,29071,29073,29076,29078,29079,29080,29083,29086,29088,29089,29090,29091,29093,29094,29095,29101,29102,29103,29104,29107,29110,29112,29114,29115,29116,29118,29119,29120,29121,29123,29124,29125,29126,29132,29133,29134,29135,29136,29137,29140,29144,29146,29152,29154,29155,29158,29161,29162,29163,29165,29169,29171,29173,29175,29179,29181,29184,29186,29190,29194,29196,29200,29202,29204,29205,29206,29207,29209,29211,29212,29213,29215,29216,29217,29219,29220,29221,29223,29224,29225,29226,29228,29229,29231,29232,29236,29237,29241,29242,29243,29244,29245,29247,29248,29249,29250,29252,29253,29254,29255,29256,29257,29258,29259,29260,29261,29262,29263,29265,29267,29269,29270,29271,29272,29273,29275,29279,29281,29284,29285,29286,29287,29288,29290,29294,29295,29296,29298,29299,29301,29302,29309,29310,29313,29314,29315,29317,29318,29320,29321,29323,29326,29327,29328,29329,29330,29333,29336,29337,29340,29343,29344,29345,29346,29347,29348,29349,29350,29351,29352,29353,29354,29356,29360,29362,29366,29368,29373,29374,29375,29378,29380,29385,29388,29391,29393,29401,29408,29409,29413,29421,29422,29423,29424,29427,29429,29430,29431,29432,29435,29437,29439,29442,29445,29449,29451,29457,29464,29467,29469,29470,29471,29474,29475,29477,29478,29479,29480,29483,29485,29487,29488,29489,29490,29491,29492,29496,29497,29499,29500,29501,29502,29503,29504,29505,29506,29507,29508,29511,29513,29514,29516,29517,29519,29522,29523,29526,29527,29532,29533,29537,29540,29541,29545,29547,29553,29556,29557,29558,29559,29561,29566,29568,29570,29572,29574,29578,29579,29584,29585,29586,29592,29595,29599,29602,29603,29605,29608,29609,29613,29618,29619,29620,29622,29623,29635,29640,29644,29647,29648,29650,29652,29653,29654,29656,29657,29658,29661,29662,29663,29664,29665,29668,29669,29671,29673,29676,29679,29681,29683,29684,29694,29701,29704,29707,29710,29711,29713,29714,29730,29737,29738,29740,29746,29747,29748,29750,29753,29759,29761,29763,29771,29777,29779,29780,29781,29784,29788,29789,29790,29791,29793,29798,29800,29802,29803,29805,29807,29809,29814,29815,29817,29819,29825,29828,29831,29833,29834,29836,29841,29842,29845,29846,29849,29853,29858,29861,29864,29868,29870,29871,29872,29874,29876,29877,29878,29883,29884,29887,29888,29889,29891,29901,29905,29906,29907,29913,29918,29919,29921,29927,29940,29943,29944,29945,29951,29964,29965,29966,29967,29968,29969,29971,29973,29975,29976,29979,29980,29982,29984,29986,29990,29991,29994,29996,29998,30001,30002,30003,30009,30010,30012,30016,30017,30018,30023,30025,30026,30027,30028,30030,30032,30033,30036,30037,30040,30042,30045,30048,30051,30054,30055,30056,30059,30060,30061,30063,30064,30065,30067,30068,30069,30070,30071,30074,30075,30076,30077,30079,30081,30082,30083,30085,30089,30090,30091,30092,30093,30094,30096,30097,30100,30101,30102,30103,30106,30107,30108,30109,30110,30111,30112,30113,30114,30117,30118,30119,30120,30121,30122,30123,30124,30125,30126,30127,30128,30129,30130,30131,30134,30135,30138,30141,30142,30143,30144,30148,30149,30152,30153,30154,30156,30158,30159,30160,30162,30165,30167,30169,30171,30174,30175,30179,30181,30184,30185,30189,30193,30194,30195,30197,30198,30199,30200,30201,30202,30203,30204,30210,30211,30213,30214,30217,30221,30223,30224,30226,30227,30229,30232,30233,30238,30239,30245,30248,30249,30250,30251,30252,30253,30254,30261,30263,30265,30267,30269,30273,30275,30276,30277,30278,30283,30287,30293,30294,30296,30298,30299,30301,30302,30303,30309,30312,30314,30316,30318,30319,30321,30322,30323,30324,30325,30327,30329,30330,30333,30336,30341,30342,30344,30347,30351,30352,30357,30358,30359,30360,30361,30362,30363,30364,30365,30366,30368,30369,30371,30372,30373,30377,30381,30383,30384,30385,30387,30388,30391,30396,30398,30399,30401,30402,30405,30406,30407,30408,30410,30411,30414,30416,30417,30423,30424,30425,30428,30429,30431,30436,30439,30441,30442,30443,30444,30447,30448,30449,30450,30453,30458,30460,30463,30464,30465,30466,30467,30468,30469,30471,30474,30475,30482,30483,30487,30490,30491,30495,30496,30497,30501,30502,30507,30515,30516,30517,30520,30521,30522,30524,30526,30527,30528,30529,30532,30534,30537,30538,30539,30541,30542,30543,30545,30546,30547,30548,30551,30552,30554,30555,30557,30558,30559,30560,30563,30564,30565,30566,30567,30570,30571,30572,30573,30574,30575,30577,30580,30583,30587,30589,30590,30592,30593,30595,30596,30598,30602,30603,30604,30605,30606,30607,30608,30609,30612,30617,30618,30619,30620,30625,30626,30627,30628,30629,30630,30631,30632,30633,30634,30635,30636,30637,30638,30639,30643,30644,30646,30648,30649,30651,30652,30654,30659,30661,30663,30665,30666,30667,30668,30670,30672,30675,30676,30677,30679,30681,30683,30685,30689,30693,30695,30699,30700,30701,30702,30704,30705,30706,30707,30708,30709,30710,30713,30714,30715,30717,30718,30722,30723,30724,30725,30726,30727,30728,30729,30731,30732,30733,30734,30735,30736,30740,30741,30743,30744,30745,30746,30747,30751,30752,30753,30755,30756,30758,30759,30760,30764,30766,30768,30769,30770,30771,30772,30773,30774,30775,30777,30778,30780,30781,30782,30783,30784,30785,30786,30787,30788,30789,30790,30791,30792,30793,30794,30796,30797,30798,30799,30800,30801,30802,30803,30805,30806,30808,30809,30810,30811,30812,30813,30814,30819,30820,30821,30823,30824,30825,30826,30827,30828,30829,30830,30831,30832,30833,30834,30835,30836,30837,30838,30839,30840,30841,30842,30843,30844,30847,30849,30851,30853,30854,30855,30856,30857,30858,30860,30862,30863,30865,30866,30867,30868,30869,30870,30871,30873,30874,30876,30878,30879,30880,30881,30882,30885,30886,30887,30888,30890,30891,30892,30895,30897,30898,30900,30901,30902,30903,30904,30905,30906,30907,30908,30909,30910,30911,30912,30915,30916,30918,30919,30920,30921,30922,30923,30925,30926,30927,30929,30930,30931,30932,30933,30934,30935,30936,30937,30938,30939,30940,30941,30942,30943,30944,30945,30946,30947,30948,30949,30951,30952,30953,30954,30955,30956,30957,30958,30959,30961,30962,30963,30964,30965,30966,30967,30968,30971,30972,30973,30975,30976,30977,30979,30981,30982,30983,30984,30985,30986,30987,30988,30989,30990,30991,30992,30993,30994,30995,30996,30999,31002,31003,31004,31007,31008,31010,31011,31012,31014,31016,31017,31019,31021,31022,31024,31025,31026,31027,31031,31032,31034,31036,31037,31038,31039,31040,31041,31042,31043,31044,31045,31046,31047,31048,31049,31050,31051,31052,31053,31054,31055,31056,31057,31058,31059,31061,31062,31063,31064,31065,31067,31068,31069,31070,31071,31072,31073,31074,31075,31076,31077,31078,31079,31080,31081,31082,31083,31086,31087,31088,31089,31090,31093,31094,31096,31097,31098,31099]]],["them",[39,35,[[39,7,7,0,7,[[940,1,1,0,1],[949,1,1,1,2],[952,1,1,2,3],[953,2,2,3,5],[954,2,2,5,7]]],[40,3,3,7,10,[[961,1,1,7,8],[969,1,1,8,9],[972,1,1,9,10]]],[41,6,4,10,14,[[978,1,1,10,11],[993,3,1,11,12],[996,2,2,12,14]]],[43,4,4,14,18,[[1023,1,1,14,15],[1042,1,1,15,16],[1043,2,2,16,18]]],[44,6,6,18,24,[[1047,1,1,18,19],[1048,1,1,19,20],[1049,1,1,20,21],[1053,1,1,21,22],[1061,2,2,22,24]]],[45,3,2,24,26,[[1062,1,1,24,25],[1070,2,1,25,26]]],[46,1,1,26,27,[[1078,1,1,26,27]]],[47,2,2,27,29,[[1092,1,1,27,28],[1094,1,1,28,29]]],[50,3,2,29,31,[[1108,1,1,29,30],[1110,2,1,30,31]]],[55,1,1,31,32,[[1129,1,1,31,32]]],[58,1,1,32,33,[[1148,1,1,32,33]]],[65,2,2,33,35,[[1169,2,2,33,35]]]],[23493,23857,23973,24042,24049,24105,24125,24404,24731,24890,25150,25847,26015,26024,27110,27801,27841,27843,27981,28010,28034,28117,28346,28347,28374,28560,28804,29093,29136,29495,29555,29907,30337,30755,30756]]],["these",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29087]]],["they",[109,107,[[39,23,23,0,23,[[929,1,1,0,1],[930,2,2,1,3],[932,1,1,3,4],[937,1,1,4,5],[940,1,1,5,6],[942,2,2,6,8],[943,1,1,8,9],[944,2,2,9,11],[948,2,2,11,13],[949,1,1,13,14],[950,2,2,14,16],[954,1,1,16,17],[955,4,4,17,21],[956,2,2,21,23]]],[40,26,25,23,48,[[957,1,1,23,24],[958,1,1,24,25],[959,2,2,25,27],[960,2,2,27,29],[962,1,1,29,30],[964,3,3,30,33],[965,2,2,33,35],[966,3,3,35,38],[967,1,1,38,39],[968,4,3,39,42],[970,4,4,42,46],[971,2,2,46,48]]],[41,22,22,48,70,[[977,1,1,48,49],[979,2,2,49,51],[980,1,1,51,52],[981,3,3,52,55],[986,1,1,55,56],[991,1,1,56,57],[992,3,3,57,60],[994,5,5,60,65],[995,3,3,65,68],[996,2,2,68,70]]],[42,3,3,70,73,[[1014,1,1,70,71],[1015,2,2,71,73]]],[43,23,22,73,95,[[1021,2,2,73,75],[1022,4,4,75,79],[1024,1,1,79,80],[1025,1,1,80,81],[1026,1,1,81,82],[1027,1,1,82,83],[1028,1,1,83,84],[1029,2,1,84,85],[1030,1,1,85,86],[1032,2,2,86,88],[1033,1,1,88,89],[1036,2,2,89,91],[1038,2,2,91,93],[1045,2,2,93,95]]],[44,2,2,95,97,[[1049,1,1,95,96],[1053,1,1,96,97]]],[45,1,1,97,98,[[1076,1,1,97,98]]],[47,3,3,98,101,[[1093,2,2,98,100],[1095,1,1,100,101]]],[49,1,1,101,102,[[1106,1,1,101,102]]],[55,1,1,102,103,[[1129,1,1,102,103]]],[57,3,3,103,106,[[1139,2,2,103,105],[1144,1,1,105,106]]],[65,1,1,106,107,[[1183,1,1,106,107]]]],[23156,23174,23178,23229,23410,23492,23614,23630,23667,23679,23686,23796,23823,23851,23877,23891,24069,24133,24152,24183,24195,24204,24210,24251,24285,24292,24296,24333,24338,24456,24505,24520,24528,24570,24572,24592,24614,24627,24646,24676,24687,24689,24765,24773,24800,24818,24839,24840,25140,25199,25220,25290,25314,25333,25346,25557,25765,25784,25790,25791,25873,25899,25902,25913,25935,25940,25956,25958,26010,26033,26792,26840,26854,27043,27046,27076,27080,27092,27100,27141,27201,27245,27281,27309,27352,27413,27445,27472,27514,27587,27588,27684,27696,27905,27920,28036,28121,28741,29109,29111,29186,29464,29902,30069,30087,30222,30989]]],["things",[48,37,[[39,4,3,0,3,[[934,1,1,0,1],[944,1,1,1,2],[950,2,1,2,3]]],[40,4,2,3,5,[[964,2,1,3,4],[968,2,1,4,5]]],[41,6,5,5,10,[[991,1,1,5,6],[992,2,1,6,7],[994,1,1,7,8],[996,2,2,8,10]]],[43,5,5,10,15,[[1018,1,1,10,11],[1025,1,1,11,12],[1035,1,1,12,13],[1036,1,1,13,14],[1045,1,1,14,15]]],[44,5,3,15,18,[[1047,1,1,15,16],[1053,2,1,16,17],[1059,2,1,17,18]]],[45,9,7,18,25,[[1062,1,1,18,19],[1063,4,3,19,22],[1068,4,3,22,25]]],[46,3,3,25,28,[[1082,1,1,25,26],[1087,1,1,26,27],[1088,1,1,27,28]]],[49,3,3,28,31,[[1103,1,1,28,29],[1104,1,1,29,30],[1106,1,1,30,31]]],[50,3,2,31,33,[[1107,2,1,31,32],[1109,1,1,32,33]]],[57,2,2,33,35,[[1137,1,1,33,34],[1141,1,1,34,35]]],[61,1,1,35,36,[[1160,1,1,35,36]]],[65,3,1,36,37,[[1176,3,1,36,37]]]],[23316,23695,23893,24533,24690,25773,25804,25901,26018,26026,26926,27188,27582,27593,27930,27976,28121,28299,28391,28405,28406,28408,28519,28520,28521,28887,28978,29019,29373,29412,29460,29485,29519,30031,30128,30565,30867]]],["this",[6,6,[[39,1,1,0,1,[[949,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]],[57,3,3,3,6,[[1139,2,2,3,5],[1144,1,1,5,6]]]],[23847,28275,29176,30085,30088,30239]]],["those",[2,2,[[39,1,1,0,1,[[944,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]]],[23695,27534]]],["we",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28046]]],["what",[2,2,[[43,1,1,0,1,[[1040,1,1,0,1]]],[58,1,1,1,2,[[1149,1,1,1,2]]]],[27764,30351]]],["whereby",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29442]]],["whereof",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27542]]],["which",[104,101,[[39,24,24,0,24,[[929,1,1,0,1],[930,1,1,1,2],[932,2,2,2,4],[933,4,4,4,8],[934,4,4,8,12],[935,3,3,12,15],[938,2,2,15,17],[940,1,1,17,18],[943,1,1,18,19],[944,1,1,19,20],[946,3,3,20,23],[951,1,1,23,24]]],[40,4,4,24,28,[[967,2,2,24,26],[968,1,1,26,27],[969,1,1,27,28]]],[41,5,5,28,33,[[973,1,1,28,29],[977,1,1,29,30],[981,1,1,30,31],[983,2,2,31,33]]],[42,2,2,33,35,[[1008,1,1,33,34],[1009,1,1,34,35]]],[43,10,10,35,45,[[1020,1,1,35,36],[1024,1,1,36,37],[1025,2,2,37,39],[1028,1,1,39,40],[1031,1,1,40,41],[1032,1,1,41,42],[1033,1,1,42,43],[1036,1,1,43,44],[1038,1,1,44,45]]],[44,15,14,45,59,[[1046,1,1,45,46],[1049,1,1,46,47],[1050,1,1,47,48],[1052,2,2,48,50],[1053,1,1,50,51],[1054,4,3,51,54],[1055,1,1,54,55],[1056,1,1,55,56],[1060,2,2,56,58],[1061,1,1,58,59]]],[45,6,5,59,64,[[1062,1,1,59,60],[1063,2,2,60,62],[1065,1,1,62,63],[1076,2,1,63,64]]],[46,4,4,64,68,[[1079,1,1,64,65],[1082,1,1,65,66],[1084,1,1,66,67],[1085,1,1,67,68]]],[47,2,2,68,70,[[1091,1,1,68,69],[1094,1,1,69,70]]],[48,2,1,70,71,[[1097,2,1,70,71]]],[49,4,4,71,75,[[1103,1,1,71,72],[1104,1,1,72,73],[1105,2,2,73,75]]],[50,2,2,75,77,[[1107,1,1,75,76],[1109,1,1,76,77]]],[51,1,1,77,78,[[1114,1,1,77,78]]],[53,3,3,78,81,[[1119,2,2,78,80],[1121,1,1,80,81]]],[54,5,5,81,86,[[1125,3,3,81,84],[1126,1,1,84,85],[1127,1,1,85,86]]],[55,1,1,86,87,[[1129,1,1,86,87]]],[56,1,1,87,88,[[1132,1,1,87,88]]],[57,3,3,88,91,[[1139,1,1,88,89],[1143,1,1,89,90],[1144,1,1,90,91]]],[58,1,1,91,92,[[1146,1,1,91,92]]],[59,1,1,92,93,[[1155,1,1,92,93]]],[65,8,8,93,101,[[1167,2,2,93,95],[1173,1,1,95,96],[1174,2,2,96,98],[1175,1,1,98,99],[1180,1,1,99,100],[1186,1,1,100,101]]]],[23166,23184,23223,23225,23246,23250,23279,23282,23283,23288,23291,23300,23327,23330,23337,23449,23450,23539,23634,23689,23737,23741,23746,23927,24665,24666,24698,24749,24963,25114,25362,25407,25440,26601,26631,27012,27150,27177,27190,27329,27417,27465,27487,27611,27685,27933,28033,28062,28096,28101,28155,28161,28180,28185,28193,28233,28329,28334,28337,28381,28405,28406,28450,28728,28830,28879,28930,28954,29079,29145,29216,29372,29400,29427,29430,29488,29522,29613,29700,29710,29744,29810,29822,29824,29837,29868,29893,29944,30092,30184,30224,30267,30466,30701,30708,30827,30830,30836,30853,30943,31046]]],["who",[8,8,[[39,1,1,0,1,[[929,1,1,0,1]]],[43,2,2,1,3,[[1021,1,1,1,2],[1030,1,1,2,3]]],[44,1,1,3,4,[[1061,1,1,3,4]]],[47,1,1,4,5,[[1092,1,1,4,5]]],[48,2,2,5,7,[[1098,1,1,5,6],[1100,1,1,6,7]]],[50,1,1,7,8,[[1110,1,1,7,8]]]],[23160,27058,27371,28348,29084,29240,29278,29554]]],["whom",[4,1,[[44,4,1,0,1,[[1058,4,1,0,1]]]],[28273]]],["whosoever",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31097]]],["words",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29791]]],["ye",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29469]]],["your",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30366]]]]},{"k":"G3589","v":[["*",[2,2,[[41,2,2,0,2,[[974,1,1,0,1],[988,1,1,1,2]]]],[25010,25627]]],["+",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25010]]],["fourscore",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25627]]]]},{"k":"G3590","v":[["eighth",[5,5,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]],[65,2,2,3,5,[[1183,1,1,3,4],[1187,1,1,4,5]]]],[24952,27124,30505,30986,31073]]]]},{"k":"G3591","v":[["weight",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30213]]]]},{"k":"G3592","v":[["*",[12,12,[[41,2,2,0,2,[[982,1,1,0,1],[988,1,1,1,2]]],[43,2,2,2,4,[[1032,1,1,2,3],[1038,1,1,3,4]]],[58,1,1,4,5,[[1149,1,1,4,5]]],[65,7,7,5,12,[[1168,4,4,5,9],[1169,3,3,9,12]]]],[25402,25645,27465,27675,30350,30718,30725,30729,30735,30747,30753,30760]]],["Thus",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27675]]],["he",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25645]]],["manner",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27465]]],["she",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25402]]],["such",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30350]]],["things",[7,7,[[65,7,7,0,7,[[1168,4,4,0,4],[1169,3,3,4,7]]]],[30718,30725,30729,30735,30747,30753,30760]]]]},{"k":"G3593","v":[["journeyed",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25396]]]]},{"k":"G3594","v":[["*",[5,5,[[39,1,1,0,1,[[943,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[42,1,1,2,3,[[1012,1,1,2,3]]],[43,1,1,3,4,[[1025,1,1,3,4]]],[65,1,1,4,5,[[1173,1,1,4,5]]]],[23647,25185,26739,27207,30827]]],["guide",[2,2,[[42,1,1,0,1,[[1012,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]]],[26739,27207]]],["lead",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[65,1,1,2,3,[[1173,1,1,2,3]]]],[23647,25185,30827]]]]},{"k":"G3595","v":[["*",[5,5,[[39,3,3,0,3,[[943,1,1,0,1],[951,2,2,1,3]]],[43,1,1,3,4,[[1018,1,1,3,4]]],[44,1,1,4,5,[[1047,1,1,4,5]]]],[23647,23934,23942,26939,27981]]],["guide",[2,2,[[43,1,1,0,1,[[1018,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]]],[26939,27981]]],["guides",[2,2,[[39,2,2,0,2,[[951,2,2,0,2]]]],[23934,23942]]],["leaders",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23647]]]]},{"k":"G3596","v":[["journey",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27268]]]]},{"k":"G3597","v":[["*",[2,2,[[42,1,1,0,1,[[1000,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[26162,29015]]],["journey",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26162]]],["journeyings",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29015]]]]},{"k":"G3598","v":[["*",[102,99,[[39,22,21,0,21,[[930,1,1,0,1],[931,1,1,1,2],[932,1,1,2,3],[933,1,1,3,4],[935,2,2,4,6],[936,1,1,6,7],[938,2,2,7,9],[939,1,1,9,10],[941,2,2,10,12],[943,1,1,12,13],[948,2,2,13,15],[949,4,3,15,18],[950,3,3,18,21]]],[40,17,16,21,37,[[957,2,2,21,23],[958,1,1,23,24],[960,2,2,24,26],[962,1,1,26,27],[964,2,2,27,29],[965,2,2,29,31],[966,4,4,31,35],[967,2,1,35,36],[968,1,1,36,37]]],[41,20,20,37,57,[[973,2,2,37,39],[974,1,1,39,40],[975,2,2,40,42],[979,1,1,42,43],[980,2,2,43,45],[981,2,2,45,47],[982,2,2,47,49],[983,1,1,49,50],[984,1,1,50,51],[986,1,1,51,52],[990,1,1,52,53],[991,1,1,53,54],[992,1,1,54,55],[996,2,2,55,57]]],[42,4,4,57,61,[[997,1,1,57,58],[1010,3,3,58,61]]],[43,20,20,61,81,[[1018,1,1,61,62],[1019,1,1,62,63],[1025,3,3,63,66],[1026,3,3,66,69],[1030,1,1,69,70],[1031,1,1,70,71],[1033,1,1,71,72],[1035,2,2,72,74],[1036,2,2,74,76],[1039,1,1,76,77],[1041,2,2,77,79],[1042,1,1,79,80],[1043,1,1,80,81]]],[44,3,3,81,84,[[1048,2,2,81,83],[1056,1,1,83,84]]],[45,2,2,84,86,[[1065,1,1,84,85],[1073,1,1,85,86]]],[51,1,1,86,87,[[1113,1,1,86,87]]],[57,3,3,87,90,[[1135,1,1,87,88],[1141,1,1,88,89],[1142,1,1,89,90]]],[58,3,3,90,93,[[1146,1,1,90,91],[1147,1,1,91,92],[1150,1,1,92,93]]],[60,4,3,93,96,[[1157,4,3,93,96]]],[64,1,1,96,97,[[1166,1,1,96,97]]],[65,2,2,97,99,[[1181,1,1,97,98],[1182,1,1,98,99]]]],[23181,23195,23224,23259,23329,23330,23373,23422,23427,23469,23543,23558,23665,23809,23822,23834,23845,23858,23881,23882,23888,24217,24218,24283,24327,24338,24415,24503,24527,24571,24572,24605,24620,24634,24640,24648,24687,24969,24972,25017,25029,25030,25222,25250,25257,25304,25358,25367,25394,25411,25517,25576,25723,25767,25800,26023,26026,26067,26672,26673,26674,26935,26977,27202,27212,27215,27218,27233,27243,27372,27430,27500,27582,27583,27594,27608,27708,27783,27791,27799,27836,28007,28008,28242,28450,28665,29601,30005,30113,30153,30274,30318,30374,30502,30515,30521,30683,30949,30966]]],["+",[4,4,[[39,2,2,0,2,[[949,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[958,1,1,2,3]]],[41,1,1,3,4,[[975,1,1,3,4]]]],[23834,23881,24283,25030]]],["highways",[2,2,[[39,1,1,0,1,[[950,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]]],[23882,25576]]],["journey",[6,6,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,3,3,2,5,[[974,1,1,2,3],[981,1,1,3,4],[983,1,1,4,5]]],[43,1,1,5,6,[[1018,1,1,5,6]]]],[23427,24415,25017,25304,25411,26935]]],["side",[9,9,[[39,3,3,0,3,[[941,2,2,0,2],[948,1,1,2,3]]],[40,3,3,3,6,[[960,2,2,3,5],[966,1,1,5,6]]],[41,3,3,6,9,[[980,2,2,6,8],[990,1,1,8,9]]]],[23543,23558,23822,24327,24338,24634,25250,25257,25723]]],["way",[71,69,[[39,15,15,0,15,[[930,1,1,0,1],[931,1,1,1,2],[932,1,1,2,3],[933,1,1,3,4],[935,2,2,4,6],[936,1,1,6,7],[938,1,1,7,8],[939,1,1,8,9],[943,1,1,9,10],[948,1,1,10,11],[949,3,3,11,14],[950,1,1,14,15]]],[40,12,11,15,26,[[957,2,2,15,17],[964,2,2,17,19],[965,2,2,19,21],[966,3,3,21,24],[967,2,1,24,25],[968,1,1,25,26]]],[41,11,11,26,37,[[973,1,1,26,27],[975,1,1,27,28],[979,1,1,28,29],[981,1,1,29,30],[982,2,2,30,32],[984,1,1,32,33],[991,1,1,33,34],[992,1,1,34,35],[996,2,2,35,37]]],[42,4,4,37,41,[[997,1,1,37,38],[1010,3,3,38,41]]],[43,16,16,41,57,[[1025,3,3,41,44],[1026,3,3,44,47],[1033,1,1,47,48],[1035,2,2,48,50],[1036,2,2,50,52],[1039,1,1,52,53],[1041,2,2,53,55],[1042,1,1,55,56],[1043,1,1,56,57]]],[44,1,1,57,58,[[1048,1,1,57,58]]],[45,1,1,58,59,[[1073,1,1,58,59]]],[51,1,1,59,60,[[1113,1,1,59,60]]],[57,2,2,60,62,[[1141,1,1,60,61],[1142,1,1,61,62]]],[58,2,2,62,64,[[1147,1,1,62,63],[1150,1,1,63,64]]],[60,4,3,64,67,[[1157,4,3,64,67]]],[64,1,1,67,68,[[1166,1,1,67,68]]],[65,1,1,68,69,[[1182,1,1,68,69]]]],[23181,23195,23224,23259,23329,23330,23373,23422,23469,23665,23809,23834,23845,23858,23888,24217,24218,24503,24527,24571,24572,24605,24620,24640,24648,24687,24972,25029,25222,25358,25367,25394,25517,25767,25800,26023,26026,26067,26672,26673,26674,27202,27212,27215,27218,27233,27243,27500,27582,27583,27594,27608,27708,27783,27791,27799,27836,28008,28665,29601,30113,30153,30318,30374,30502,30515,30521,30683,30966]]],["ways",[10,10,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,3,3,1,4,[[1019,1,1,1,2],[1030,1,1,2,3],[1031,1,1,3,4]]],[44,2,2,4,6,[[1048,1,1,4,5],[1056,1,1,5,6]]],[45,1,1,6,7,[[1065,1,1,6,7]]],[57,1,1,7,8,[[1135,1,1,7,8]]],[58,1,1,8,9,[[1146,1,1,8,9]]],[65,1,1,9,10,[[1181,1,1,9,10]]]],[24969,26977,27372,27430,28007,28242,28450,30005,30274,30949]]]]},{"k":"G3599","v":[["*",[12,11,[[39,8,7,0,7,[[933,2,1,0,1],[936,1,1,1,2],[941,2,2,2,4],[950,1,1,4,5],[952,1,1,5,6],[953,1,1,6,7]]],[40,1,1,7,8,[[965,1,1,7,8]]],[41,1,1,8,9,[[985,1,1,8,9]]],[43,1,1,9,10,[[1024,1,1,9,10]]],[65,1,1,10,11,[[1175,1,1,10,11]]]],[23272,23357,23581,23589,23885,24008,24038,24556,25546,27170,30848]]],["teeth",[10,10,[[39,6,6,0,6,[[936,1,1,0,1],[941,2,2,1,3],[950,1,1,3,4],[952,1,1,4,5],[953,1,1,5,6]]],[40,1,1,6,7,[[965,1,1,6,7]]],[41,1,1,7,8,[[985,1,1,7,8]]],[43,1,1,8,9,[[1024,1,1,8,9]]],[65,1,1,9,10,[[1175,1,1,9,10]]]],[23357,23581,23589,23885,24008,24038,24556,25546,27170,30848]]],["tooth",[2,1,[[39,2,1,0,1,[[933,2,1,0,1]]]],[23272]]]]},{"k":"G3600","v":[["*",[4,4,[[41,3,3,0,3,[[974,1,1,0,1],[988,2,2,1,3]]],[43,1,1,3,4,[[1037,1,1,3,4]]]],[25021,25644,25645,27664]]],["Sorrowing",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27664]]],["sorrowing",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25021]]],["tormented",[2,2,[[41,2,2,0,2,[[988,2,2,0,2]]]],[25644,25645]]]]},{"k":"G3601","v":[["*",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[28157,29798]]],["sorrow",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28157]]],["sorrows",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29798]]]]},{"k":"G3602","v":[["mourning",[2,2,[[39,1,1,0,1,[[930,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]]],[23187,28923]]]]},{"k":"G3603","v":[["*",[17,17,[[40,8,8,0,8,[[959,1,1,0,1],[963,2,2,1,3],[968,1,1,3,4],[971,4,4,4,8]]],[42,1,1,8,9,[[997,1,1,8,9]]],[43,2,2,9,11,[[1018,1,1,9,10],[1021,1,1,10,11]]],[48,1,1,11,12,[[1102,1,1,11,12]]],[50,1,1,12,13,[[1107,1,1,12,13]]],[57,1,1,13,14,[[1139,1,1,13,14]]],[65,3,3,14,17,[[1186,1,1,14,15],[1187,2,2,15,17]]]],[24305,24474,24497,24715,24842,24848,24860,24868,26085,26935,27058,29354,29489,30066,31050,31061,31070]]],["called",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24842]]],["is",[14,14,[[40,5,5,0,5,[[959,1,1,0,1],[963,1,1,1,2],[971,3,3,2,5]]],[42,1,1,5,6,[[997,1,1,5,6]]],[43,2,2,6,8,[[1018,1,1,6,7],[1021,1,1,7,8]]],[48,1,1,8,9,[[1102,1,1,8,9]]],[50,1,1,9,10,[[1107,1,1,9,10]]],[57,1,1,10,11,[[1139,1,1,10,11]]],[65,3,3,11,14,[[1186,1,1,11,12],[1187,2,2,12,14]]]],[24305,24497,24848,24860,24868,26085,26935,27058,29354,29489,30066,31050,31061,31070]]],["make",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24715]]],["say",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24474]]]]},{"k":"G3604","v":[["Ozias",[2,2,[[39,2,2,0,2,[[929,2,2,0,2]]]],[23152,23153]]]]},{"k":"G3605","v":[["stinketh",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26562]]]]},{"k":"G3606","v":[["*",[15,15,[[39,4,4,0,4,[[940,1,1,0,1],[942,1,1,1,2],[953,2,2,2,4]]],[41,1,1,4,5,[[983,1,1,4,5]]],[43,3,3,5,8,[[1031,1,1,5,6],[1043,1,1,6,7],[1045,1,1,7,8]]],[57,6,6,8,14,[[1134,1,1,8,9],[1135,1,1,9,10],[1139,1,1,10,11],[1140,1,1,11,12],[1141,1,1,12,13],[1143,1,1,13,14]]],[61,1,1,14,15,[[1160,1,1,14,15]]]],[23533,23604,24032,24034,25429,27440,27842,27912,29994,29996,30089,30095,30123,30191,30568]]],["Wherefore",[3,3,[[57,3,3,0,3,[[1134,1,1,0,1],[1135,1,1,1,2],[1139,1,1,2,3]]]],[29994,29996,30089]]],["Whereupon",[3,3,[[39,1,1,0,1,[[942,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[23604,27842,30123]]],["thence",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27912]]],["whence",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[43,1,1,2,3,[[1031,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[23533,25429,27440,30191]]],["where",[2,2,[[39,2,2,0,2,[[953,2,2,0,2]]]],[24032,24034]]],["whereby",[1,1,[[61,1,1,0,1,[[1160,1,1,0,1]]]],[30568]]],["wherefore",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30095]]]]},{"k":"G3607","v":[["sheet",[2,2,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]]],[27270,27312]]]]},{"k":"G3608","v":[["clothes",[5,5,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,4,4,1,5,[[1015,1,1,1,2],[1016,3,3,2,5]]]],[26003,26865,26872,26873,26874]]]]},{"k":"G3609","v":[["*",[3,3,[[47,1,1,0,1,[[1096,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]]],[29198,29248,29771]]],["house",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29771]]],["household",[2,2,[[47,1,1,0,1,[[1096,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]]],[29198,29248]]]]},{"k":"G3610","v":[["*",[4,4,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]],[44,1,1,2,3,[[1059,1,1,2,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[25633,27266,28284,30417]]],["Servants",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30417]]],["servant",[2,2,[[41,1,1,0,1,[[988,1,1,0,1]]],[44,1,1,1,2,[[1059,1,1,1,2]]]],[25633,28284]]],["servants",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27266]]]]},{"k":"G3611","v":[["*",[9,9,[[44,5,5,0,5,[[1052,3,3,0,3],[1053,2,2,3,5]]],[45,3,3,5,8,[[1064,1,1,5,6],[1068,2,2,6,8]]],[53,1,1,8,9,[[1124,1,1,8,9]]]],[28108,28109,28111,28125,28127,28426,28499,28500,29804]]],["dwell",[4,4,[[44,2,2,0,2,[[1053,2,2,0,2]]],[45,2,2,2,4,[[1068,2,2,2,4]]]],[28125,28127,28499,28500]]],["dwelleth",[4,4,[[44,3,3,0,3,[[1052,3,3,0,3]]],[45,1,1,3,4,[[1064,1,1,3,4]]]],[28108,28109,28111,28426]]],["dwelling",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29804]]]]},{"k":"G3612","v":[["prison",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27344]]]]},{"k":"G3613","v":[["*",[2,2,[[46,1,1,0,1,[[1082,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[28879,30678]]],["habitation",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30678]]],["house",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28879]]]]},{"k":"G3614","v":[["*",[95,85,[[39,26,25,0,25,[[930,1,1,0,1],[933,1,1,1,2],[935,4,4,2,6],[936,2,2,6,8],[937,3,3,8,11],[938,3,3,11,14],[940,3,2,14,16],[941,3,3,16,19],[945,1,1,19,20],[947,1,1,20,21],[951,1,1,21,22],[952,2,2,22,24],[954,1,1,24,25]]],[40,19,16,25,41,[[957,1,1,25,26],[958,1,1,26,27],[959,4,2,27,29],[962,2,2,29,31],[963,1,1,31,32],[965,1,1,32,33],[966,3,3,33,36],[968,1,1,36,37],[969,4,3,37,40],[970,1,1,40,41]]],[41,24,20,41,61,[[976,1,1,41,42],[977,1,1,42,43],[978,4,2,43,45],[979,4,4,45,49],[980,2,2,49,51],[981,1,1,51,52],[982,4,2,52,54],[987,2,2,54,56],[989,1,1,56,57],[990,1,1,57,58],[992,1,1,58,59],[994,2,2,59,61]]],[42,5,5,61,66,[[1000,1,1,61,62],[1004,1,1,62,63],[1007,1,1,63,64],[1008,1,1,64,65],[1010,1,1,65,66]]],[43,12,11,66,77,[[1021,1,1,66,67],[1026,2,2,67,69],[1027,3,3,69,72],[1028,1,1,72,73],[1029,1,1,73,74],[1033,1,1,74,75],[1034,1,1,75,76],[1035,2,1,76,77]]],[45,2,2,77,79,[[1072,1,1,77,78],[1077,1,1,78,79]]],[46,2,1,79,80,[[1082,2,1,79,80]]],[49,1,1,80,81,[[1106,1,1,80,81]]],[53,1,1,81,82,[[1123,1,1,81,82]]],[54,2,2,82,84,[[1126,1,1,82,83],[1127,1,1,83,84]]],[62,1,1,84,85,[[1164,1,1,84,85]]]],[23180,23249,23340,23341,23342,23343,23351,23359,23389,23402,23407,23429,23430,23431,23514,23518,23540,23575,23596,23725,23791,23932,23974,24000,24060,24244,24275,24313,24315,24411,24417,24487,24571,24598,24617,24618,24713,24732,24751,24752,24757,25101,25136,25194,25195,25201,25231,25232,25239,25272,25296,25305,25368,25370,25596,25613,25682,25717,25826,25874,25875,26209,26416,26554,26583,26670,27056,27227,27233,27265,27276,27291,27318,27349,27515,27528,27564,28622,28791,28878,29464,29776,29847,29859,30655]]],["+",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29776]]],["home",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23351]]],["house",[84,74,[[39,23,22,0,22,[[930,1,1,0,1],[933,1,1,1,2],[935,4,4,2,6],[936,1,1,6,7],[937,3,3,7,10],[938,3,3,10,13],[940,3,2,13,15],[941,3,3,15,18],[945,1,1,18,19],[952,2,2,19,21],[954,1,1,21,22]]],[40,17,14,22,36,[[957,1,1,22,23],[958,1,1,23,24],[959,4,2,24,26],[962,2,2,26,28],[963,1,1,28,29],[965,1,1,29,30],[966,2,2,30,32],[969,4,3,32,35],[970,1,1,35,36]]],[41,23,19,36,55,[[976,1,1,36,37],[977,1,1,37,38],[978,4,2,38,40],[979,4,4,40,44],[980,2,2,44,46],[981,1,1,46,47],[982,4,2,47,49],[987,2,2,49,51],[989,1,1,51,52],[990,1,1,52,53],[994,2,2,53,55]]],[42,5,5,55,60,[[1000,1,1,55,56],[1004,1,1,56,57],[1007,1,1,57,58],[1008,1,1,58,59],[1010,1,1,59,60]]],[43,11,10,60,70,[[1026,2,2,60,62],[1027,3,3,62,65],[1028,1,1,65,66],[1029,1,1,66,67],[1033,1,1,67,68],[1034,1,1,68,69],[1035,2,1,69,70]]],[45,1,1,70,71,[[1077,1,1,70,71]]],[46,2,1,71,72,[[1082,2,1,71,72]]],[54,1,1,72,73,[[1126,1,1,72,73]]],[62,1,1,73,74,[[1164,1,1,73,74]]]],[23180,23249,23340,23341,23342,23343,23359,23389,23402,23407,23429,23430,23431,23514,23518,23540,23575,23596,23725,23974,24000,24060,24244,24275,24313,24315,24411,24417,24487,24571,24598,24617,24732,24751,24752,24757,25101,25136,25194,25195,25201,25231,25232,25239,25272,25296,25305,25368,25370,25596,25613,25682,25717,25874,25875,26209,26416,26554,26583,26670,27227,27233,27265,27276,27291,27318,27349,27515,27528,27564,28791,28878,29847,30655]]],["household",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29464]]],["houses",[8,8,[[39,2,2,0,2,[[947,1,1,0,1],[951,1,1,1,2]]],[40,2,2,2,4,[[966,1,1,2,3],[968,1,1,3,4]]],[41,1,1,4,5,[[992,1,1,4,5]]],[43,1,1,5,6,[[1021,1,1,5,6]]],[45,1,1,6,7,[[1072,1,1,6,7]]],[54,1,1,7,8,[[1127,1,1,7,8]]]],[23791,23932,24618,24713,25826,27056,28622,29859]]]]},{"k":"G3615","v":[["+",[2,2,[[39,2,2,0,2,[[938,2,2,0,2]]]],[23442,23453]]]]},{"k":"G3616","v":[["house",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29777]]]]},{"k":"G3617","v":[["*",[12,12,[[39,7,7,0,7,[[938,1,1,0,1],[941,2,2,1,3],[948,2,2,3,5],[949,1,1,5,6],[952,1,1,6,7]]],[40,1,1,7,8,[[970,1,1,7,8]]],[41,4,4,8,12,[[984,1,1,8,9],[985,1,1,9,10],[986,1,1,10,11],[994,1,1,11,12]]]],[23442,23566,23591,23793,23803,23859,24000,24768,25498,25543,25574,25875]]],["goodman",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25875]]],["house",[7,7,[[39,3,3,0,3,[[938,1,1,0,1],[948,1,1,1,2],[952,1,1,2,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[41,3,3,4,7,[[984,1,1,4,5],[985,1,1,5,6],[986,1,1,6,7]]]],[23442,23803,24000,24768,25498,25543,25574]]],["householder",[4,4,[[39,4,4,0,4,[[941,2,2,0,2],[948,1,1,2,3],[949,1,1,3,4]]]],[23566,23591,23793,23859]]]]},{"k":"G3618","v":[["*",[39,38,[[39,8,8,0,8,[[935,2,2,0,2],[944,1,1,2,3],[949,2,2,3,5],[951,1,1,5,6],[954,1,1,6,7],[955,1,1,7,8]]],[40,4,4,8,12,[[968,2,2,8,10],[970,1,1,10,11],[971,1,1,11,12]]],[41,11,11,12,23,[[976,1,1,12,13],[978,2,2,13,15],[979,1,1,15,16],[983,2,2,16,18],[984,1,1,18,19],[986,2,2,19,21],[989,1,1,21,22],[992,1,1,22,23]]],[42,1,1,23,24,[[998,1,1,23,24]]],[43,4,4,24,28,[[1021,1,1,24,25],[1024,2,2,25,27],[1026,1,1,27,28]]],[44,1,1,28,29,[[1060,1,1,28,29]]],[45,6,5,29,34,[[1069,2,2,29,31],[1071,1,1,31,32],[1075,3,2,32,34]]],[47,1,1,34,35,[[1092,1,1,34,35]]],[51,1,1,35,36,[[1115,1,1,35,36]]],[59,2,2,36,38,[[1152,2,2,36,38]]]],[23340,23342,23690,23859,23868,23947,24115,24169,24674,24683,24812,24855,25092,25194,25195,25200,25452,25453,25477,25581,25583,25679,25796,26115,27033,27163,27165,27247,28323,28528,28537,28590,28682,28695,29099,29632,30404,30406]]],["+",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26115]]],["build",[12,12,[[39,3,3,0,3,[[944,1,1,0,1],[951,1,1,1,2],[954,1,1,2,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[41,5,5,4,9,[[983,2,2,4,6],[984,1,1,6,7],[986,2,2,7,9]]],[43,1,1,9,10,[[1024,1,1,9,10]]],[44,1,1,10,11,[[1060,1,1,10,11]]],[47,1,1,11,12,[[1092,1,1,11,12]]]],[23690,23947,24115,24812,25452,25453,25477,25581,25583,27165,28323,29099]]],["builded",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25679]]],["builders",[5,5,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[43,1,1,3,4,[[1021,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[23868,24683,25796,27033,30406]]],["buildest",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24169,24855]]],["built",[9,9,[[39,3,3,0,3,[[935,2,2,0,2],[949,1,1,2,3]]],[40,1,1,3,4,[[968,1,1,3,4]]],[41,4,4,4,8,[[976,1,1,4,5],[978,2,2,5,7],[979,1,1,7,8]]],[43,1,1,8,9,[[1024,1,1,8,9]]]],[23340,23342,23859,24674,25092,25194,25195,25200,27163]]],["edified",[2,2,[[43,1,1,0,1,[[1026,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[27247,28695]]],["edifieth",[3,2,[[45,3,2,0,2,[[1069,1,1,0,1],[1075,2,1,1,2]]]],[28528,28682]]],["edify",[2,2,[[45,1,1,0,1,[[1071,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]]],[28590,29632]]],["emboldened",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28537]]],["up",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30404]]]]},{"k":"G3619","v":[["*",[18,18,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,2,2,1,3,[[969,2,2,1,3]]],[44,2,2,3,5,[[1059,1,1,3,4],[1060,1,1,4,5]]],[45,5,5,5,10,[[1064,1,1,5,6],[1075,4,4,6,10]]],[46,4,4,10,14,[[1082,1,1,10,11],[1087,1,1,11,12],[1089,1,1,12,13],[1090,1,1,13,14]]],[48,4,4,14,18,[[1098,1,1,14,15],[1100,3,3,15,18]]]],[23958,24718,24719,28299,28305,28419,28681,28683,28690,28704,28878,28979,29041,29053,29250,29284,29288,29301]]],["+",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28299]]],["building",[3,3,[[45,1,1,0,1,[[1064,1,1,0,1]]],[46,1,1,1,2,[[1082,1,1,1,2]]],[48,1,1,2,3,[[1098,1,1,2,3]]]],[28419,28878,29250]]],["buildings",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,2,2,1,3,[[969,2,2,1,3]]]],[23958,24718,24719]]],["edification",[4,4,[[44,1,1,0,1,[[1060,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[46,2,2,2,4,[[1087,1,1,2,3],[1090,1,1,3,4]]]],[28305,28681,28979,29053]]],["edifying",[7,7,[[45,3,3,0,3,[[1075,3,3,0,3]]],[46,1,1,3,4,[[1089,1,1,3,4]]],[48,3,3,4,7,[[1100,3,3,4,7]]]],[28683,28690,28704,29041,29284,29288,29301]]]]},{"k":"G3620","v":[]},{"k":"G3621","v":[["+",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25622]]]]},{"k":"G3622","v":[["*",[8,8,[[41,3,3,0,3,[[988,3,3,0,3]]],[45,1,1,3,4,[[1070,1,1,3,4]]],[48,2,2,4,6,[[1097,1,1,4,5],[1099,1,1,5,6]]],[50,1,1,6,7,[[1107,1,1,6,7]]],[53,1,1,7,8,[[1119,1,1,7,8]]]],[25622,25623,25624,28557,29216,29253,29490,29700]]],["dispensation",[4,4,[[45,1,1,0,1,[[1070,1,1,0,1]]],[48,2,2,1,3,[[1097,1,1,1,2],[1099,1,1,2,3]]],[50,1,1,3,4,[[1107,1,1,3,4]]]],[28557,29216,29253,29490]]],["edifying",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29700]]],["stewardship",[3,3,[[41,3,3,0,3,[[988,3,3,0,3]]]],[25622,25623,25624]]]]},{"k":"G3623","v":[["*",[10,10,[[41,4,4,0,4,[[984,1,1,0,1],[988,3,3,1,4]]],[44,1,1,4,5,[[1061,1,1,4,5]]],[45,2,2,5,7,[[1065,2,2,5,7]]],[47,1,1,7,8,[[1094,1,1,7,8]]],[55,1,1,8,9,[[1129,1,1,8,9]]],[59,1,1,9,10,[[1154,1,1,9,10]]]],[25501,25621,25623,25628,28359,28434,28435,29133,29899,30456]]],["chamberlain",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28359]]],["governors",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29133]]],["steward",[5,5,[[41,4,4,0,4,[[984,1,1,0,1],[988,3,3,1,4]]],[55,1,1,4,5,[[1129,1,1,4,5]]]],[25501,25621,25623,25628,29899]]],["stewards",[3,3,[[45,2,2,0,2,[[1065,2,2,0,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[28434,28435,30456]]]]},{"k":"G3624","v":[["*",[114,106,[[39,10,9,0,9,[[937,2,2,0,2],[938,1,1,2,3],[939,1,1,3,4],[940,2,2,4,6],[943,1,1,6,7],[949,2,1,7,8],[951,1,1,8,9]]],[40,13,12,9,21,[[958,3,3,9,12],[959,1,1,12,13],[961,2,2,13,15],[963,2,2,15,17],[964,2,2,17,19],[965,1,1,19,20],[967,2,1,20,21]]],[41,34,32,21,53,[[973,6,6,21,27],[974,1,1,27,28],[977,2,2,28,30],[978,1,1,30,31],[979,1,1,31,32],[980,2,2,32,34],[981,1,1,34,35],[982,2,2,35,37],[983,4,3,37,40],[984,2,2,40,42],[985,1,1,42,43],[986,2,2,43,45],[987,1,1,45,46],[988,2,2,46,48],[990,1,1,48,49],[991,4,3,49,52],[994,1,1,52,53]]],[42,5,4,53,57,[[998,3,2,53,55],[1003,1,1,55,56],[1007,1,1,56,57]]],[43,24,23,57,80,[[1019,3,3,57,60],[1022,1,1,60,61],[1024,5,5,61,66],[1025,1,1,66,67],[1027,3,3,67,70],[1028,3,3,70,73],[1033,4,3,73,76],[1035,1,1,76,77],[1036,1,1,77,78],[1037,1,1,78,79],[1038,1,1,79,80]]],[44,1,1,80,81,[[1061,1,1,80,81]]],[45,4,4,81,85,[[1062,1,1,81,82],[1072,1,1,82,83],[1075,1,1,83,84],[1077,1,1,84,85]]],[50,1,1,85,86,[[1110,1,1,85,86]]],[53,5,5,86,91,[[1121,4,4,86,90],[1123,1,1,90,91]]],[54,2,2,91,93,[[1125,1,1,91,92],[1128,1,1,92,93]]],[55,1,1,93,94,[[1129,1,1,93,94]]],[56,1,1,94,95,[[1132,1,1,94,95]]],[57,11,9,95,104,[[1135,6,5,95,100],[1140,3,2,100,102],[1142,1,1,102,103],[1143,1,1,103,104]]],[59,2,2,104,106,[[1152,1,1,104,105],[1154,1,1,105,106]]]],[23385,23386,23423,23467,23493,23533,23657,23839,23956,24261,24271,24286,24307,24383,24402,24480,24493,24503,24526,24566,24657,24916,24920,24926,24933,24949,24962,24977,25131,25132,25150,25205,25284,25286,25362,25368,25401,25422,25429,25456,25498,25511,25553,25554,25576,25594,25624,25647,25702,25736,25740,25777,25918,26111,26112,26381,26543,26951,26985,26995,27101,27126,27136,27158,27163,27165,27179,27261,27281,27289,27319,27320,27321,27498,27514,27517,27565,27601,27646,27672,28341,28379,28634,28713,28795,29557,29735,29736,29743,29746,29767,29825,29889,29903,29940,29997,29998,29999,30000,30001,30100,30102,30154,30179,30404,30463]]],["+",[5,5,[[40,1,1,0,1,[[961,1,1,0,1]]],[43,4,4,1,5,[[1019,1,1,1,2],[1022,1,1,2,3],[1025,1,1,3,4],[1037,1,1,4,5]]]],[24383,26995,27101,27179,27646]]],["home",[4,4,[[41,1,1,0,1,[[987,1,1,0,1]]],[45,2,2,1,3,[[1072,1,1,1,2],[1075,1,1,2,3]]],[53,1,1,3,4,[[1123,1,1,3,4]]]],[25594,28634,28713,29767]]],["house",[96,89,[[39,9,8,0,8,[[937,2,2,0,2],[938,1,1,2,3],[940,2,2,3,5],[943,1,1,5,6],[949,2,1,6,7],[951,1,1,7,8]]],[40,11,10,8,18,[[958,3,3,8,11],[959,1,1,11,12],[961,1,1,12,13],[963,2,2,13,15],[964,1,1,15,16],[965,1,1,16,17],[967,2,1,17,18]]],[41,31,29,18,47,[[973,6,6,18,24],[974,1,1,24,25],[977,2,2,25,27],[978,1,1,27,28],[979,1,1,28,29],[980,2,2,29,31],[981,1,1,31,32],[982,2,2,32,34],[983,3,2,34,36],[984,2,2,36,38],[985,1,1,38,39],[986,2,2,39,41],[988,1,1,41,42],[990,1,1,42,43],[991,4,3,43,46],[994,1,1,46,47]]],[42,5,4,47,51,[[998,3,2,47,49],[1003,1,1,49,50],[1007,1,1,50,51]]],[43,19,19,51,70,[[1019,2,2,51,53],[1024,5,5,53,58],[1027,3,3,58,61],[1028,3,3,61,64],[1033,3,3,64,67],[1035,1,1,67,68],[1036,1,1,68,69],[1038,1,1,69,70]]],[44,1,1,70,71,[[1061,1,1,70,71]]],[45,1,1,71,72,[[1077,1,1,71,72]]],[50,1,1,72,73,[[1110,1,1,72,73]]],[53,3,3,73,76,[[1121,3,3,73,76]]],[54,1,1,76,77,[[1125,1,1,76,77]]],[56,1,1,77,78,[[1132,1,1,77,78]]],[57,11,9,78,87,[[1135,6,5,78,83],[1140,3,2,83,85],[1142,1,1,85,86],[1143,1,1,86,87]]],[59,2,2,87,89,[[1152,1,1,87,88],[1154,1,1,88,89]]]],[23385,23386,23423,23493,23533,23657,23839,23956,24261,24271,24286,24307,24402,24480,24493,24526,24566,24657,24916,24920,24926,24933,24949,24962,24977,25131,25132,25150,25205,25284,25286,25362,25368,25401,25422,25429,25498,25511,25553,25554,25576,25647,25702,25736,25740,25777,25918,26111,26112,26381,26543,26951,26985,27126,27136,27158,27163,27165,27261,27281,27289,27319,27320,27321,27498,27514,27517,27565,27601,27672,28341,28795,29557,29735,29736,29746,29825,29940,29997,29998,29999,30000,30001,30100,30102,30154,30179,30404,30463]]],["household",[3,3,[[43,1,1,0,1,[[1033,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[27498,28379,29889]]],["houses",[5,5,[[39,1,1,0,1,[[939,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[53,1,1,3,4,[[1121,1,1,3,4]]],[55,1,1,4,5,[[1129,1,1,4,5]]]],[23467,24503,25624,29743,29903]]],["temple",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25456]]]]},{"k":"G3625","v":[["*",[15,15,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,3,3,1,4,[[974,1,1,1,2],[976,1,1,2,3],[993,1,1,3,4]]],[43,5,5,4,9,[[1028,1,1,4,5],[1034,2,2,5,7],[1036,1,1,7,8],[1041,1,1,8,9]]],[44,1,1,9,10,[[1055,1,1,9,10]]],[57,2,2,10,12,[[1133,1,1,10,11],[1134,1,1,11,12]]],[65,3,3,12,15,[[1169,1,1,12,13],[1178,1,1,13,14],[1182,1,1,14,15]]]],[23971,24974,25068,25852,27335,27529,27554,27612,27774,28206,29969,29982,30756,30900,30968]]],["+",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27529]]],["earth",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25852]]],["world",[13,13,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[976,1,1,2,3]]],[43,4,4,3,7,[[1028,1,1,3,4],[1034,1,1,4,5],[1036,1,1,5,6],[1041,1,1,6,7]]],[44,1,1,7,8,[[1055,1,1,7,8]]],[57,2,2,8,10,[[1133,1,1,8,9],[1134,1,1,9,10]]],[65,3,3,10,13,[[1169,1,1,10,11],[1178,1,1,11,12],[1182,1,1,12,13]]]],[23971,24974,25068,27335,27554,27612,27774,28206,29969,29982,30756,30900,30968]]]]},{"k":"G3626","v":[["home",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29913]]]]},{"k":"G3627","v":[["compassion",[2,1,[[44,2,1,0,1,[[1054,2,1,0,1]]]],[28170]]]]},{"k":"G3628","v":[["*",[5,5,[[44,1,1,0,1,[[1057,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[50,1,1,3,4,[[1109,1,1,3,4]]],[57,1,1,4,5,[[1142,1,1,4,5]]]],[28246,28803,29392,29529,30161]]],["mercies",[4,4,[[44,1,1,0,1,[[1057,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[50,1,1,3,4,[[1109,1,1,3,4]]]],[28246,28803,29392,29529]]],["mercy",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30161]]]]},{"k":"G3629","v":[["*",[3,2,[[41,2,1,0,1,[[978,2,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[25182,30365]]],["merciful",[2,1,[[41,2,1,0,1,[[978,2,1,0,1]]]],[25182]]],["mercy",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30365]]]]},{"k":"G3630","v":[["winebibber",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]]],[23478,25229]]]]},{"k":"G3631","v":[["*",[33,25,[[39,3,1,0,1,[[937,3,1,0,1]]],[40,5,2,1,3,[[958,4,1,1,2],[971,1,1,2,3]]],[41,6,5,3,8,[[973,1,1,3,4],[977,3,2,4,6],[979,1,1,6,7],[982,1,1,7,8]]],[42,6,4,8,12,[[998,5,3,8,11],[1000,1,1,11,12]]],[44,1,1,12,13,[[1059,1,1,12,13]]],[48,1,1,13,14,[[1101,1,1,13,14]]],[53,2,2,14,16,[[1121,1,1,14,15],[1123,1,1,15,16]]],[55,1,1,16,17,[[1130,1,1,16,17]]],[65,8,8,17,25,[[1172,1,1,17,18],[1180,2,2,18,20],[1182,1,1,20,21],[1183,1,1,21,22],[1184,2,2,22,24],[1185,1,1,24,25]]]],[23396,24282,24849,24908,25144,25145,25228,25397,26098,26104,26105,26202,28301,29322,29739,29786,29911,30799,30934,30936,30973,30977,30996,31006,31032]]],["+",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31032]]],["wine",[32,24,[[39,3,1,0,1,[[937,3,1,0,1]]],[40,5,2,1,3,[[958,4,1,1,2],[971,1,1,2,3]]],[41,6,5,3,8,[[973,1,1,3,4],[977,3,2,4,6],[979,1,1,6,7],[982,1,1,7,8]]],[42,6,4,8,12,[[998,5,3,8,11],[1000,1,1,11,12]]],[44,1,1,12,13,[[1059,1,1,12,13]]],[48,1,1,13,14,[[1101,1,1,13,14]]],[53,2,2,14,16,[[1121,1,1,14,15],[1123,1,1,15,16]]],[55,1,1,16,17,[[1130,1,1,16,17]]],[65,7,7,17,24,[[1172,1,1,17,18],[1180,2,2,18,20],[1182,1,1,20,21],[1183,1,1,21,22],[1184,2,2,22,24]]]],[23396,24282,24849,24908,25144,25145,25228,25397,26098,26104,26105,26202,28301,29322,29739,29786,29911,30799,30934,30936,30973,30977,30996,31006]]]]},{"k":"G3632","v":[["wine",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30449]]]]},{"k":"G3633","v":[["*",[3,3,[[42,1,1,0,1,[[1017,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[26923,29377,30273]]],["suppose",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26923]]],["supposing",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29377]]],["think",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30273]]]]},{"k":"G3634","v":[["*",[15,12,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,2,2,1,3,[[965,1,1,1,2],[969,1,1,2,3]]],[41,1,1,3,4,[[981,1,1,3,4]]],[44,1,1,4,5,[[1054,1,1,4,5]]],[45,2,1,5,6,[[1076,2,1,5,6]]],[46,3,2,6,8,[[1087,1,1,6,7],[1089,2,1,7,8]]],[49,1,1,8,9,[[1103,1,1,8,9]]],[51,1,1,9,10,[[1111,1,1,9,10]]],[54,2,1,10,11,[[1127,2,1,10,11]]],[65,1,1,11,12,[[1182,1,1,11,12]]]],[23978,24541,24736,25356,28161,28766,28982,29042,29391,29565,29864,30972]]],["+",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28161]]],["As",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28766]]],["as",[6,6,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,2,2,1,3,[[965,1,1,1,2],[969,1,1,2,3]]],[45,1,1,3,4,[[1076,1,1,3,4]]],[46,1,1,4,5,[[1089,1,1,4,5]]],[65,1,1,5,6,[[1182,1,1,5,6]]]],[23978,24541,24736,28766,29042,30972]]],["manner",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25356]]],["men",[1,1,[[51,1,1,0,1,[[1111,1,1,0,1]]]],[29565]]],["such",[2,2,[[46,2,2,0,2,[[1087,1,1,0,1],[1089,1,1,1,2]]]],[28982,29042]]],["what",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29864]]],["which",[2,2,[[49,1,1,0,1,[[1103,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[29391,29864]]]]},{"k":"G3635","v":[["delay",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27254]]]]},{"k":"G3636","v":[["*",[3,3,[[39,1,1,0,1,[[953,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]]],[24034,28256,29422]]],["grievous",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29422]]],["slothful",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]]],[24034,28256]]]]},{"k":"G3637","v":[["day",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29426]]]]},{"k":"G3638","v":[["*",[9,9,[[41,5,5,0,5,[[974,1,1,0,1],[981,1,1,1,2],[985,3,3,2,5]]],[42,2,2,5,7,[[1001,1,1,5,6],[1016,1,1,6,7]]],[43,1,1,7,8,[[1026,1,1,7,8]]],[59,1,1,8,9,[[1153,1,1,8,9]]]],[24994,25329,25522,25529,25534,26215,26893,27249,30444]]],["+",[4,4,[[41,3,3,0,3,[[985,3,3,0,3]]],[42,1,1,3,4,[[1001,1,1,3,4]]]],[25522,25529,25534,26215]]],["eight",[5,5,[[41,2,2,0,2,[[974,1,1,0,1],[981,1,1,1,2]]],[42,1,1,2,3,[[1016,1,1,2,3]]],[43,1,1,3,4,[[1026,1,1,3,4]]],[59,1,1,4,5,[[1153,1,1,4,5]]]],[24994,25329,26893,27249,30444]]]]},{"k":"G3639","v":[["destruction",[4,4,[[45,1,1,0,1,[[1066,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]],[53,1,1,3,4,[[1124,1,1,3,4]]]],[28459,29624,29658,29797]]]]},{"k":"G3640","v":[["faith",[5,5,[[39,4,4,0,4,[[934,1,1,0,1],[936,1,1,1,2],[942,1,1,2,3],[944,1,1,3,4]]],[41,1,1,4,5,[[984,1,1,4,5]]]],[23312,23371,23628,23680,25487]]]]},{"k":"G3641","v":[["*",[43,42,[[39,7,7,0,7,[[935,1,1,0,1],[937,1,1,1,2],[943,1,1,2,3],[948,1,1,3,4],[950,1,1,4,5],[953,2,2,5,7]]],[40,4,4,7,11,[[957,1,1,7,8],[962,2,2,8,10],[964,1,1,10,11]]],[41,6,5,11,16,[[977,1,1,11,12],[979,2,1,12,13],[982,1,1,13,14],[984,1,1,14,15],[985,1,1,15,16]]],[43,10,10,16,26,[[1029,1,1,16,17],[1031,1,1,17,18],[1032,1,1,18,19],[1034,2,2,19,21],[1036,2,2,21,23],[1043,2,2,23,25],[1044,1,1,25,26]]],[46,1,1,26,27,[[1085,1,1,26,27]]],[48,1,1,27,28,[[1099,1,1,27,28]]],[53,2,2,28,30,[[1122,1,1,28,29],[1123,1,1,29,30]]],[57,1,1,30,31,[[1144,1,1,30,31]]],[58,2,2,31,33,[[1148,1,1,31,32],[1149,1,1,32,33]]],[59,4,4,33,37,[[1151,1,1,33,34],[1153,1,1,34,35],[1155,2,2,35,37]]],[65,5,5,37,42,[[1168,2,2,37,39],[1169,1,1,39,40],[1178,1,1,40,41],[1183,1,1,41,42]]]],[23330,23416,23667,23808,23886,24029,24031,24234,24412,24438,24507,25110,25242,25365,25507,25541,27355,27442,27444,27527,27535,27608,27609,27851,27852,27875,28947,29254,29755,29786,30222,30324,30351,30380,30444,30475,30477,30731,30737,30750,30903,30985]]],["+",[4,4,[[43,3,3,0,3,[[1031,1,1,0,1],[1043,2,2,1,3]]],[59,1,1,3,4,[[1155,1,1,3,4]]]],[27442,27851,27852,30477]]],["few",[15,15,[[39,5,5,0,5,[[935,1,1,0,1],[937,1,1,1,2],[943,1,1,2,3],[948,1,1,3,4],[950,1,1,4,5]]],[40,2,2,5,7,[[962,1,1,5,6],[964,1,1,6,7]]],[41,3,3,7,10,[[982,1,1,7,8],[984,1,1,8,9],[985,1,1,9,10]]],[43,2,2,10,12,[[1034,2,2,10,12]]],[57,1,1,12,13,[[1144,1,1,12,13]]],[59,1,1,13,14,[[1153,1,1,13,14]]],[65,1,1,14,15,[[1169,1,1,14,15]]]],[23330,23416,23667,23808,23886,24412,24507,25365,25507,25541,27527,27535,30222,30444,30750]]],["further",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24234]]],["little",[7,6,[[41,3,2,0,2,[[977,1,1,0,1],[979,2,1,1,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]],[53,2,2,3,5,[[1122,1,1,3,4],[1123,1,1,4,5]]],[58,1,1,5,6,[[1148,1,1,5,6]]]],[25110,25242,28947,29755,29786,30324]]],["season",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30380]]],["short",[1,1,[[65,1,1,0,1,[[1178,1,1,0,1]]]],[30903]]],["small",[5,5,[[43,5,5,0,5,[[1029,1,1,0,1],[1032,1,1,1,2],[1036,2,2,2,4],[1044,1,1,4,5]]]],[27355,27444,27608,27609,27875]]],["space",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30985]]],["things",[4,4,[[39,2,2,0,2,[[953,2,2,0,2]]],[65,2,2,2,4,[[1168,2,2,2,4]]]],[24029,24031,30731,30737]]],["time",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30351]]],["while",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[24438,30475]]],["words",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29254]]]]},{"k":"G3642","v":[["feebleminded",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29635]]]]},{"k":"G3643","v":[["despise",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30217]]]]},{"k":"G3644","v":[["destroyer",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28577]]]]},{"k":"G3645","v":[["destroyed",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30200]]]]},{"k":"G3646","v":[["offerings",[3,3,[[40,1,1,0,1,[[968,1,1,0,1]]],[57,2,2,1,3,[[1142,2,2,1,3]]]],[24706,30139,30141]]]]},{"k":"G3647","v":[["soundness",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27012]]]]},{"k":"G3648","v":[["*",[2,2,[[51,1,1,0,1,[[1115,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[29644,30270]]],["entire",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30270]]],["whole",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29644]]]]},{"k":"G3649","v":[["howl",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30355]]]]},{"k":"G3650","v":[["*",[112,99,[[39,23,21,0,21,[[929,1,1,0,1],[932,2,2,1,3],[933,2,2,3,5],[934,2,2,5,7],[937,2,2,7,9],[941,1,1,9,10],[942,1,1,10,11],[944,1,1,11,12],[948,1,1,12,13],[949,1,1,13,14],[950,4,2,14,16],[952,1,1,16,17],[954,3,3,17,20],[955,1,1,20,21]]],[40,19,13,21,34,[[957,3,3,21,24],[962,1,1,24,25],[964,1,1,25,26],[968,9,3,26,29],[970,2,2,29,31],[971,3,3,31,34]]],[41,17,13,34,47,[[973,1,1,34,35],[976,1,1,35,36],[977,1,1,36,37],[979,1,1,37,38],[980,2,2,38,40],[981,1,1,40,41],[982,4,1,41,42],[983,3,2,42,44],[985,1,1,44,45],[995,2,2,45,47]]],[42,6,6,47,53,[[1000,1,1,47,48],[1003,1,1,48,49],[1005,1,1,49,50],[1007,1,1,50,51],[1009,1,1,51,52],[1015,1,1,52,53]]],[43,21,21,53,74,[[1019,2,2,53,55],[1022,1,1,55,56],[1024,2,2,56,58],[1025,1,1,58,59],[1026,2,2,59,61],[1027,2,2,61,63],[1028,2,2,63,65],[1030,1,1,65,66],[1032,1,1,66,67],[1035,1,1,67,68],[1036,2,2,68,70],[1038,2,2,70,72],[1039,1,1,72,73],[1045,1,1,73,74]]],[44,4,4,74,78,[[1046,1,1,74,75],[1053,1,1,75,76],[1055,1,1,76,77],[1061,1,1,77,78]]],[45,4,3,78,81,[[1066,1,1,78,79],[1073,2,1,79,80],[1075,1,1,80,81]]],[46,1,1,81,82,[[1078,1,1,81,82]]],[47,2,2,82,84,[[1095,2,2,82,84]]],[49,1,1,84,85,[[1103,1,1,84,85]]],[51,1,1,85,86,[[1114,1,1,85,86]]],[55,1,1,86,87,[[1129,1,1,86,87]]],[57,2,2,87,89,[[1135,2,2,87,89]]],[58,4,4,89,93,[[1147,1,1,89,90],[1148,3,3,90,93]]],[61,2,2,93,95,[[1160,1,1,93,94],[1163,1,1,94,95]]],[65,4,4,95,99,[[1169,1,1,95,96],[1178,1,1,96,97],[1179,1,1,97,98],[1182,1,1,98,99]]]],[23166,23232,23233,23263,23264,23304,23305,23405,23410,23572,23632,23698,23798,23830,23909,23912,23971,24067,24110,24113,24156,24243,24248,24254,24462,24536,24703,24706,24717,24763,24809,24827,24842,24859,24958,25077,25112,25212,25284,25288,25326,25390,25439,25441,25539,25940,25979,26209,26351,26474,26573,26640,26848,26951,26996,27070,27126,27127,27213,27247,27258,27281,27296,27333,27335,27411,27464,27565,27612,27614,27694,27695,27734,27929,27938,28152,28209,28359,28460,28651,28701,28801,29165,29171,29374,29613,29903,29997,30000,30303,30321,30322,30325,30552,30643,30756,30900,30911,30968]]],["+",[2,2,[[42,1,1,0,1,[[1015,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]]],[26848,27929]]],["All",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]]],[23830,28209]]],["all",[63,52,[[39,14,12,0,12,[[929,1,1,0,1],[932,2,2,1,3],[937,2,2,3,5],[942,1,1,5,6],[948,1,1,6,7],[950,4,2,7,9],[952,1,1,9,10],[954,2,2,10,12]]],[40,13,7,12,19,[[957,3,3,12,15],[968,9,3,15,18],[970,1,1,18,19]]],[41,11,8,19,27,[[973,1,1,19,20],[976,1,1,20,21],[977,1,1,21,22],[979,1,1,22,23],[980,1,1,23,24],[982,4,1,24,25],[995,2,2,25,27]]],[43,17,17,27,44,[[1019,2,2,27,29],[1022,1,1,29,30],[1024,2,2,30,32],[1025,1,1,32,33],[1026,2,2,33,35],[1027,2,2,35,37],[1028,1,1,37,38],[1030,1,1,38,39],[1035,1,1,39,40],[1036,1,1,40,41],[1038,2,2,41,43],[1039,1,1,43,44]]],[44,1,1,44,45,[[1053,1,1,44,45]]],[46,1,1,45,46,[[1078,1,1,45,46]]],[49,1,1,46,47,[[1103,1,1,46,47]]],[51,1,1,47,48,[[1114,1,1,47,48]]],[57,2,2,48,50,[[1135,2,2,48,50]]],[65,2,2,50,52,[[1169,1,1,50,51],[1179,1,1,51,52]]]],[23166,23232,23233,23405,23410,23632,23798,23909,23912,23971,24110,24113,24243,24248,24254,24703,24706,24717,24809,24958,25077,25112,25212,25288,25390,25940,25979,26951,26996,27070,27126,27127,27213,27247,27258,27281,27296,27335,27411,27565,27612,27694,27695,27734,28152,28801,29374,29613,29997,30000,30756,30911]]],["altogether",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26474]]],["whit",[2,2,[[42,2,2,0,2,[[1003,1,1,0,1],[1009,1,1,1,2]]]],[26351,26640]]],["whole",[42,40,[[39,8,8,0,8,[[933,2,2,0,2],[934,2,2,2,4],[941,1,1,4,5],[944,1,1,5,6],[954,1,1,6,7],[955,1,1,7,8]]],[40,6,6,8,14,[[962,1,1,8,9],[964,1,1,9,10],[970,1,1,10,11],[971,3,3,11,14]]],[41,6,5,14,19,[[980,1,1,14,15],[981,1,1,15,16],[983,3,2,16,18],[985,1,1,18,19]]],[42,2,2,19,21,[[1000,1,1,19,20],[1007,1,1,20,21]]],[43,3,3,21,24,[[1028,1,1,21,22],[1032,1,1,22,23],[1036,1,1,23,24]]],[44,2,2,24,26,[[1046,1,1,24,25],[1061,1,1,25,26]]],[45,4,3,26,29,[[1066,1,1,26,27],[1073,2,1,27,28],[1075,1,1,28,29]]],[47,2,2,29,31,[[1095,2,2,29,31]]],[55,1,1,31,32,[[1129,1,1,31,32]]],[58,4,4,32,36,[[1147,1,1,32,33],[1148,3,3,33,36]]],[61,2,2,36,38,[[1160,1,1,36,37],[1163,1,1,37,38]]],[65,2,2,38,40,[[1178,1,1,38,39],[1182,1,1,39,40]]]],[23263,23264,23304,23305,23572,23698,24067,24156,24462,24536,24763,24827,24842,24859,25284,25326,25439,25441,25539,26209,26573,27333,27464,27614,27938,28359,28460,28651,28701,29165,29171,29903,30303,30321,30322,30325,30552,30643,30900,30968]]]]},{"k":"G3651","v":[["wholly",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29644]]]]},{"k":"G3652","v":[["Olympas",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28351]]]]},{"k":"G3653","v":[["figs",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30806]]]]},{"k":"G3654","v":[["*",[4,4,[[39,1,1,0,1,[[933,1,1,0,1]]],[45,3,3,1,4,[[1066,1,1,1,2],[1067,1,1,2,3],[1076,1,1,3,4]]]],[23268,28455,28474,28747]]],["all",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]]],[23268,28747]]],["commonly",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28455]]],["utterly",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28474]]]]},{"k":"G3655","v":[["shower",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25513]]]]},{"k":"G3656","v":[["*",[4,4,[[41,2,2,0,2,[[996,2,2,0,2]]],[43,2,2,2,4,[[1037,1,1,2,3],[1041,1,1,3,4]]]],[26005,26006,27637,27795]]],["communed",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]]],[26006,27795]]],["talked",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1037,1,1,1,2]]]],[26005,27637]]]]},{"k":"G3657","v":[["communications",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28751]]]]},{"k":"G3658","v":[["company",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31010]]]]},{"k":"G3659","v":[["eyes",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24523]]]]},{"k":"G3660","v":[["*",[27,21,[[39,13,8,0,8,[[933,2,2,0,2],[951,10,5,2,7],[954,1,1,7,8]]],[40,2,2,8,10,[[962,1,1,8,9],[970,1,1,9,10]]],[41,1,1,10,11,[[973,1,1,10,11]]],[43,2,2,11,13,[[1019,1,1,11,12],[1024,1,1,12,13]]],[57,7,6,13,19,[[1135,2,2,13,15],[1136,1,1,15,16],[1138,3,2,16,18],[1139,1,1,18,19]]],[58,1,1,19,20,[[1150,1,1,19,20]]],[65,1,1,20,21,[[1176,1,1,20,21]]]],[23268,23270,23934,23936,23938,23939,23940,24128,24430,24825,24966,26979,27133,30006,30013,30017,30057,30060,30085,30366,30867]]],["+",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23938]]],["Swear",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23268]]],["sware",[7,7,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[57,4,4,2,6,[[1135,2,2,2,4],[1138,1,1,4,5],[1139,1,1,5,6]]],[65,1,1,6,7,[[1176,1,1,6,7]]]],[24430,24966,30006,30013,30057,30085,30867]]],["swear",[11,10,[[39,7,6,0,6,[[933,1,1,0,1],[951,5,4,1,5],[954,1,1,5,6]]],[40,1,1,6,7,[[970,1,1,6,7]]],[57,2,2,7,9,[[1138,2,2,7,9]]],[58,1,1,9,10,[[1150,1,1,9,10]]]],[23270,23934,23936,23939,23940,24128,24825,30057,30060,30366]]],["sweareth",[4,4,[[39,4,4,0,4,[[951,4,4,0,4]]]],[23936,23938,23939,23940]]],["sworn",[3,3,[[43,2,2,0,2,[[1019,1,1,0,1],[1024,1,1,1,2]]],[57,1,1,2,3,[[1136,1,1,2,3]]]],[26979,27133,30017]]]]},{"k":"G3661","v":[["*",[12,12,[[43,11,11,0,11,[[1018,1,1,0,1],[1019,2,2,1,3],[1021,1,1,3,4],[1022,1,1,4,5],[1024,1,1,5,6],[1025,1,1,6,7],[1029,1,1,7,8],[1032,1,1,8,9],[1035,1,1,9,10],[1036,1,1,10,11]]],[44,1,1,11,12,[[1060,1,1,11,12]]]],[26937,26950,26995,27046,27071,27173,27182,27357,27467,27569,27614,28309]]],["+",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27569]]],["accord",[10,10,[[43,10,10,0,10,[[1018,1,1,0,1],[1019,2,2,1,3],[1021,1,1,3,4],[1022,1,1,4,5],[1024,1,1,5,6],[1025,1,1,6,7],[1029,1,1,7,8],[1032,1,1,8,9],[1036,1,1,9,10]]]],[26937,26950,26995,27046,27071,27173,27182,27357,27467,27614]]],["mind",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28309]]]]},{"k":"G3662","v":[["agreeth",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24824]]]]},{"k":"G3663","v":[["passions",[2,2,[[43,1,1,0,1,[[1031,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[27429,30371]]]]},{"k":"G3664","v":[["*",[47,43,[[39,9,9,0,9,[[939,1,1,0,1],[941,6,6,1,7],[948,1,1,7,8],[950,1,1,8,9]]],[40,1,1,9,10,[[968,1,1,9,10]]],[41,9,9,10,19,[[978,3,3,10,13],[979,2,2,13,15],[984,1,1,15,16],[985,3,3,16,19]]],[42,2,2,19,21,[[1004,1,1,19,20],[1005,1,1,20,21]]],[43,1,1,21,22,[[1034,1,1,21,22]]],[47,1,1,22,23,[[1095,1,1,22,23]]],[61,1,1,23,24,[[1161,1,1,23,24]]],[64,1,1,24,25,[[1166,1,1,24,25]]],[65,22,18,25,43,[[1167,2,2,25,27],[1168,1,1,27,28],[1170,6,3,28,31],[1175,4,3,31,34],[1177,1,1,34,35],[1179,3,3,35,38],[1180,1,1,38,39],[1182,1,1,39,40],[1184,1,1,40,41],[1187,2,2,41,43]]]],[23475,23570,23572,23583,23584,23586,23591,23793,23911,24704,25193,25194,25195,25226,25227,25495,25536,25537,25539,26436,26449,27552,29183,30581,30679,30710,30712,30735,30771,30774,30775,30847,30850,30859,30873,30910,30912,30919,30940,30967,31011,31064,31071]]],["+",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30679]]],["like",[19,17,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,7,7,1,8,[[978,3,3,1,4],[979,1,1,4,5],[985,3,3,5,8]]],[42,1,1,8,9,[[1005,1,1,8,9]]],[47,1,1,9,10,[[1095,1,1,9,10]]],[61,1,1,10,11,[[1161,1,1,10,11]]],[65,8,6,11,17,[[1168,1,1,11,12],[1170,4,2,12,14],[1175,1,1,14,15],[1179,1,1,15,16],[1182,1,1,16,17]]]],[24704,25193,25194,25195,25226,25536,25537,25539,26449,29183,30581,30735,30771,30775,30847,30919,30967]]],["to",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23570]]],["unto",[26,26,[[39,8,8,0,8,[[939,1,1,0,1],[941,5,5,1,6],[948,1,1,6,7],[950,1,1,7,8]]],[41,2,2,8,10,[[979,1,1,8,9],[984,1,1,9,10]]],[42,1,1,10,11,[[1004,1,1,10,11]]],[43,1,1,11,12,[[1034,1,1,11,12]]],[65,14,14,12,26,[[1167,2,2,12,14],[1170,2,2,14,16],[1175,3,3,16,19],[1177,1,1,19,20],[1179,2,2,20,22],[1180,1,1,22,23],[1184,1,1,23,24],[1187,2,2,24,26]]]],[23475,23572,23583,23584,23586,23591,23793,23911,25227,25495,26436,27552,30710,30712,30771,30774,30847,30850,30859,30873,30910,30912,30940,31011,31064,31071]]]]},{"k":"G3665","v":[["*",[2,2,[[57,2,2,0,2,[[1136,1,1,0,1],[1139,1,1,1,2]]]],[30029,30079]]],["+",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30029]]],["similitude",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30079]]]]},{"k":"G3666","v":[["*",[15,15,[[39,8,8,0,8,[[934,1,1,0,1],[935,2,2,1,3],[939,1,1,3,4],[941,1,1,4,5],[946,1,1,5,6],[950,1,1,6,7],[953,1,1,7,8]]],[40,1,1,8,9,[[960,1,1,8,9]]],[41,3,3,9,12,[[979,1,1,9,10],[985,2,2,10,12]]],[43,1,1,12,13,[[1031,1,1,12,13]]],[44,1,1,13,14,[[1054,1,1,13,14]]],[57,1,1,14,15,[[1134,1,1,14,15]]]],[23290,23340,23342,23475,23563,23750,23874,24009,24353,25226,25536,25538,27425,28184,29994]]],["+",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28184]]],["liken",[5,5,[[39,2,2,0,2,[[935,1,1,0,1],[939,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,2,2,3,5,[[979,1,1,3,4],[985,1,1,4,5]]]],[23340,23475,24353,25226,25538]]],["likened",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23342]]],["likeness",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27425]]],["resemble",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25536]]],["unto",[6,6,[[39,5,5,0,5,[[934,1,1,0,1],[941,1,1,1,2],[946,1,1,2,3],[950,1,1,3,4],[953,1,1,4,5]]],[57,1,1,5,6,[[1134,1,1,5,6]]]],[23290,23563,23750,23874,24009,29994]]]]},{"k":"G3667","v":[["*",[6,6,[[44,4,4,0,4,[[1046,1,1,0,1],[1050,1,1,1,2],[1051,1,1,2,3],[1053,1,1,3,4]]],[49,1,1,4,5,[[1104,1,1,4,5]]],[65,1,1,5,6,[[1175,1,1,5,6]]]],[27953,28061,28073,28119,29398,30847]]],["likeness",[3,3,[[44,2,2,0,2,[[1051,1,1,0,1],[1053,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[28073,28119,29398]]],["shapes",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30847]]],["similitude",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28061]]],["to",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27953]]]]},{"k":"G3668","v":[["*",[30,30,[[39,3,3,0,3,[[950,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[960,1,1,3,4],[971,1,1,4,5]]],[41,11,11,5,16,[[975,1,1,5,6],[977,2,2,6,8],[978,1,1,8,9],[982,2,2,9,11],[985,1,1,11,12],[988,1,1,12,13],[989,2,2,13,15],[994,1,1,15,16]]],[42,3,3,16,19,[[1001,1,1,16,17],[1002,1,1,17,18],[1017,1,1,18,19]]],[44,1,1,19,20,[[1046,1,1,19,20]]],[45,3,3,20,23,[[1068,3,3,20,23]]],[57,1,1,23,24,[[1141,1,1,23,24]]],[58,1,1,24,25,[[1147,1,1,24,25]]],[59,3,3,25,28,[[1153,2,2,25,27],[1155,1,1,27,28]]],[64,1,1,28,29,[[1166,1,1,28,29]]],[65,1,1,29,30,[[1174,1,1,29,30]]]],[23898,24089,24170,24339,24857,25036,25117,25140,25177,25395,25400,25523,25645,25679,25682,25900,26229,26268,26911,27957,28490,28491,28509,30126,30318,30425,30431,30470,30680,30839]]],["+",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24339]]],["Likewise",[10,10,[[39,3,3,0,3,[[950,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[40,1,1,3,4,[[971,1,1,3,4]]],[41,1,1,4,5,[[989,1,1,4,5]]],[58,1,1,5,6,[[1147,1,1,5,6]]],[59,3,3,6,9,[[1153,2,2,6,8],[1155,1,1,8,9]]],[64,1,1,9,10,[[1166,1,1,9,10]]]],[23898,24089,24170,24857,25679,30318,30425,30431,30470,30680]]],["Moreover",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30126]]],["likewise",[17,17,[[41,9,9,0,9,[[975,1,1,0,1],[977,1,1,1,2],[978,1,1,2,3],[982,2,2,3,5],[985,1,1,5,6],[988,1,1,6,7],[989,1,1,7,8],[994,1,1,8,9]]],[42,3,3,9,12,[[1001,1,1,9,10],[1002,1,1,10,11],[1017,1,1,11,12]]],[44,1,1,12,13,[[1046,1,1,12,13]]],[45,3,3,13,16,[[1068,3,3,13,16]]],[65,1,1,16,17,[[1174,1,1,16,17]]]],[25036,25140,25177,25395,25400,25523,25645,25682,25900,26229,26268,26911,27957,28490,28491,28509,30839]]],["so",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25117]]]]},{"k":"G3669","v":[["similitude",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30328]]]]},{"k":"G3670","v":[["*",[24,21,[[39,4,3,0,3,[[935,1,1,0,1],[938,2,1,1,2],[942,1,1,2,3]]],[41,2,1,3,4,[[984,2,1,3,4]]],[42,4,3,4,7,[[997,2,1,4,5],[1005,1,1,5,6],[1008,1,1,6,7]]],[43,2,2,7,9,[[1040,1,1,7,8],[1041,1,1,8,9]]],[44,2,2,9,11,[[1055,2,2,9,11]]],[53,1,1,11,12,[[1124,1,1,11,12]]],[55,1,1,12,13,[[1129,1,1,12,13]]],[57,2,2,13,15,[[1143,1,1,13,14],[1145,1,1,14,15]]],[61,5,5,15,20,[[1159,1,1,15,16],[1160,1,1,16,17],[1162,3,3,17,20]]],[62,1,1,20,21,[[1164,1,1,20,21]]]],[23339,23449,23604,25467,26064,26462,26622,27742,27783,28197,28198,29800,29908,30185,30256,30549,30573,30605,30606,30618,30652]]],["+",[2,1,[[39,2,1,0,1,[[938,2,1,0,1]]]],[23449]]],["acknowledgeth",[1,1,[[61,1,1,0,1,[[1160,1,1,0,1]]]],[30573]]],["confess",[10,9,[[41,2,1,0,1,[[984,2,1,0,1]]],[42,2,2,1,3,[[1005,1,1,1,2],[1008,1,1,2,3]]],[43,2,2,3,5,[[1040,1,1,3,4],[1041,1,1,4,5]]],[44,1,1,5,6,[[1055,1,1,5,6]]],[61,2,2,6,8,[[1159,1,1,6,7],[1162,1,1,7,8]]],[62,1,1,8,9,[[1164,1,1,8,9]]]],[25467,26462,26622,27742,27783,28197,30549,30618,30652]]],["confessed",[3,2,[[42,2,1,0,1,[[997,2,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[26064,30185]]],["confesseth",[2,2,[[61,2,2,0,2,[[1162,2,2,0,2]]]],[30605,30606]]],["made",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28198]]],["profess",[2,2,[[39,1,1,0,1,[[935,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[23339,29908]]],["professed",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29800]]],["promised",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23604]]],["thanks",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30256]]]]},{"k":"G3671","v":[["*",[6,6,[[46,1,1,0,1,[[1086,1,1,0,1]]],[53,2,2,1,3,[[1124,2,2,1,3]]],[57,3,3,3,6,[[1135,1,1,3,4],[1136,1,1,4,5],[1142,1,1,5,6]]]],[28969,29800,29801,29996,30028,30156]]],["confession",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29801]]],["professed",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28969]]],["profession",[4,4,[[53,1,1,0,1,[[1124,1,1,0,1]]],[57,3,3,1,4,[[1135,1,1,1,2],[1136,1,1,2,3],[1142,1,1,3,4]]]],[29800,29996,30028,30156]]]]},{"k":"G3672","v":[["controversy",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29747]]]]},{"k":"G3673","v":[["craft",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27560]]]]},{"k":"G3674","v":[["together",[3,3,[[42,3,3,0,3,[[1000,1,1,0,1],[1016,1,1,1,2],[1017,1,1,2,3]]]],[26192,26871,26900]]]]},{"k":"G3675","v":[["mind",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30432]]]]},{"k":"G3676","v":[["*",[3,3,[[42,1,1,0,1,[[1008,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[47,1,1,2,3,[[1093,1,1,2,3]]]],[26622,28685,29117]]],["+",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26622]]],["Though",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29117]]],["even",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28685]]]]},{"k":"G3677","v":[["dream",[6,6,[[39,6,6,0,6,[[929,1,1,0,1],[930,4,4,1,5],[955,1,1,5,6]]]],[23164,23181,23182,23188,23191,24148]]]]},{"k":"G3678","v":[["ass",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26594]]]]},{"k":"G3679","v":[["*",[10,10,[[39,3,3,0,3,[[933,1,1,0,1],[939,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[971,1,1,3,4],[972,1,1,4,5]]],[41,1,1,5,6,[[978,1,1,5,6]]],[44,1,1,6,7,[[1060,1,1,6,7]]],[53,1,1,7,8,[[1122,1,1,7,8]]],[58,1,1,8,9,[[1146,1,1,8,9]]],[59,1,1,9,10,[[1154,1,1,9,10]]]],[23245,23479,24173,24858,24887,25168,28306,29757,30271,30460]]],["+",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24173]]],["reproach",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[53,1,1,1,2,[[1122,1,1,1,2]]]],[25168,29757]]],["reproached",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[28306,30460]]],["revile",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23245]]],["reviled",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24858]]],["upbraid",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23479]]],["upbraided",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24887]]],["upbraideth",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30271]]]]},{"k":"G3680","v":[["*",[5,5,[[44,1,1,0,1,[[1060,1,1,0,1]]],[53,1,1,1,2,[[1121,1,1,1,2]]],[57,3,3,2,5,[[1142,1,1,2,3],[1143,1,1,3,4],[1145,1,1,4,5]]]],[28306,29738,30166,30198,30254]]],["reproach",[3,3,[[53,1,1,0,1,[[1121,1,1,0,1]]],[57,2,2,1,3,[[1143,1,1,1,2],[1145,1,1,2,3]]]],[29738,30198,30254]]],["reproaches",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[28306,30166]]]]},{"k":"G3681","v":[["reproach",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24918]]]]},{"k":"G3682","v":[["Onesimus",[2,2,[[50,1,1,0,1,[[1110,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[29551,29948]]]]},{"k":"G3683","v":[["Onesiphorus",[2,2,[[54,2,2,0,2,[[1125,1,1,0,1],[1128,1,1,1,2]]]],[29825,29889]]]]},{"k":"G3684","v":[["+",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]]],[23733,25653]]]]},{"k":"G3685","v":[["joy",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29958]]]]},{"k":"G3686","v":[["*",[229,214,[[39,22,19,0,19,[[929,3,3,0,3],[934,1,1,3,4],[935,3,1,4,5],[938,5,4,5,9],[940,1,1,9,10],[946,2,2,10,12],[947,1,1,12,13],[949,1,1,13,14],[951,1,1,14,15],[952,2,2,15,17],[955,1,1,17,18],[956,1,1,18,19]]],[40,16,15,19,34,[[959,2,2,19,21],[961,3,2,21,23],[962,1,1,23,24],[965,4,4,24,28],[967,2,2,28,30],[969,2,2,30,32],[970,1,1,32,33],[972,1,1,33,34]]],[41,34,32,34,66,[[973,11,9,34,43],[974,2,2,43,45],[977,1,1,45,46],[978,1,1,46,47],[980,2,2,47,49],[981,2,2,49,51],[982,3,3,51,54],[983,1,1,54,55],[985,1,1,55,56],[988,1,1,56,57],[991,2,2,57,59],[993,3,3,59,62],[995,1,1,62,63],[996,3,3,63,66]]],[42,25,24,66,90,[[997,2,2,66,68],[998,1,1,68,69],[999,2,2,69,71],[1001,2,1,71,72],[1006,2,2,72,74],[1008,2,2,74,76],[1010,3,3,76,79],[1011,2,2,79,81],[1012,3,3,81,84],[1013,4,4,84,88],[1014,1,1,88,89],[1016,1,1,89,90]]],[43,60,59,90,149,[[1018,1,1,90,91],[1019,2,2,91,93],[1020,3,2,93,95],[1021,6,6,95,101],[1022,5,5,101,106],[1025,3,3,106,109],[1026,11,11,109,120],[1027,3,3,120,123],[1028,1,1,123,124],[1029,1,1,124,125],[1030,2,2,125,127],[1032,3,3,127,130],[1033,3,3,130,133],[1034,1,1,133,134],[1035,4,4,134,138],[1036,4,4,138,142],[1037,1,1,142,143],[1038,2,2,143,145],[1039,1,1,145,146],[1043,1,1,146,147],[1044,1,1,147,148],[1045,1,1,148,149]]],[44,5,5,149,154,[[1046,1,1,149,150],[1047,1,1,150,151],[1054,1,1,151,152],[1055,1,1,152,153],[1060,1,1,153,154]]],[45,6,6,154,160,[[1062,4,4,154,158],[1066,1,1,158,159],[1067,1,1,159,160]]],[48,2,2,160,162,[[1097,1,1,160,161],[1101,1,1,161,162]]],[49,4,3,162,165,[[1104,3,2,162,164],[1106,1,1,164,165]]],[50,1,1,165,166,[[1109,1,1,165,166]]],[52,2,2,166,168,[[1116,1,1,166,167],[1118,1,1,167,168]]],[53,1,1,168,169,[[1124,1,1,168,169]]],[54,1,1,169,170,[[1126,1,1,169,170]]],[57,4,4,170,174,[[1133,1,1,170,171],[1134,1,1,171,172],[1138,1,1,172,173],[1145,1,1,173,174]]],[58,3,3,174,177,[[1147,1,1,174,175],[1150,2,2,175,177]]],[59,1,1,177,178,[[1154,1,1,177,178]]],[61,4,3,178,181,[[1160,1,1,178,179],[1161,1,1,179,180],[1163,2,1,180,181]]],[63,2,2,181,183,[[1165,2,2,181,183]]],[65,36,31,183,214,[[1168,3,3,183,186],[1169,8,5,186,191],[1172,1,1,191,192],[1174,1,1,192,193],[1175,2,1,193,194],[1177,2,2,194,196],[1179,5,4,196,200],[1180,2,2,200,202],[1181,2,2,202,204],[1182,1,1,204,205],[1183,3,3,205,208],[1185,3,3,208,211],[1187,2,2,211,213],[1188,1,1,213,214]]]],[23165,23167,23169,23291,23338,23419,23439,23458,23459,23510,23732,23747,23791,23835,23957,23962,23966,24161,24214,24304,24305,24373,24386,24421,24575,24576,24577,24579,24649,24650,24723,24730,24786,24890,24898,24906,24919,24920,24924,24942,24952,24954,24956,24994,24998,25134,25168,25275,25286,25349,25350,25380,25383,25401,25407,25553,25640,25733,25769,25834,25838,25843,25985,26004,26009,26038,26050,26056,26118,26121,26138,26253,26484,26506,26593,26608,26681,26682,26694,26715,26720,26749,26750,26752,26765,26770,26771,26785,26795,26898,26938,26970,26987,27002,27012,27029,27032,27034,27039,27040,27052,27060,27087,27093,27099,27100,27185,27188,27192,27226,27227,27228,27230,27231,27232,27237,27243,27245,27249,27252,27260,27302,27307,27335,27350,27368,27370,27456,27459,27468,27484,27497,27501,27557,27559,27564,27572,27581,27590,27598,27602,27609,27635,27674,27677,27720,27832,27856,27906,27935,27986,28172,28201,28312,28365,28373,28376,28378,28458,28478,29227,29324,29400,29401,29445,29534,29661,29684,29789,29846,29967,29989,30054,30256,30300,30364,30368,30460,30562,30602,30637,30665,30672,30720,30730,30734,30747,30750,30751,30754,30758,30801,30838,30851,30885,30890,30909,30914,30916,30925,30927,30937,30948,30950,30963,30978,30980,30983,31029,31030,31033,31065,31067,31084]]],["+",[15,15,[[39,3,3,0,3,[[938,1,1,0,1],[947,1,1,1,2],[952,1,1,2,3]]],[40,3,3,3,6,[[959,2,2,3,5],[969,1,1,5,6]]],[41,3,3,6,9,[[991,1,1,6,7],[993,2,2,7,9]]],[42,1,1,9,10,[[1011,1,1,9,10]]],[43,2,2,10,12,[[1026,1,1,10,11],[1030,1,1,11,12]]],[61,1,1,12,13,[[1160,1,1,12,13]]],[63,1,1,13,14,[[1165,1,1,13,14]]],[65,1,1,14,15,[[1168,1,1,14,15]]]],[23439,23791,23966,24304,24305,24730,25733,25838,25843,26720,27232,27370,30562,30665,30720]]],["called",[4,4,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,3,3,1,4,[[1025,1,1,1,2],[1026,1,1,2,3],[1027,1,1,3,4]]]],[26004,27185,27227,27260]]],["name",[171,157,[[39,18,15,0,15,[[929,3,3,0,3],[934,1,1,3,4],[935,3,1,4,5],[938,3,2,5,7],[940,1,1,7,8],[946,2,2,8,10],[949,1,1,10,11],[951,1,1,11,12],[952,1,1,12,13],[955,1,1,13,14],[956,1,1,14,15]]],[40,12,11,15,26,[[961,3,2,15,17],[962,1,1,17,18],[965,4,4,18,22],[967,2,2,22,24],[969,1,1,24,25],[972,1,1,25,26]]],[41,22,21,26,47,[[973,9,8,26,34],[974,2,2,34,36],[978,1,1,36,37],[980,1,1,37,38],[981,2,2,38,40],[982,1,1,40,41],[983,1,1,41,42],[985,1,1,42,43],[991,1,1,43,44],[993,1,1,44,45],[996,2,2,45,47]]],[42,23,22,47,69,[[997,2,2,47,49],[998,1,1,49,50],[999,1,1,50,51],[1001,2,1,51,52],[1006,2,2,52,54],[1008,2,2,54,56],[1010,3,3,56,59],[1011,1,1,59,60],[1012,3,3,60,63],[1013,4,4,63,67],[1014,1,1,67,68],[1016,1,1,68,69]]],[43,35,34,69,103,[[1019,2,2,69,71],[1020,3,2,71,73],[1021,6,6,73,79],[1022,3,3,79,82],[1025,2,2,82,84],[1026,5,5,84,89],[1027,2,2,89,91],[1030,1,1,91,92],[1032,3,3,92,95],[1033,1,1,95,96],[1036,3,3,96,99],[1038,1,1,99,100],[1039,1,1,100,101],[1043,1,1,101,102],[1045,1,1,102,103]]],[44,5,5,103,108,[[1046,1,1,103,104],[1047,1,1,104,105],[1054,1,1,105,106],[1055,1,1,106,107],[1060,1,1,107,108]]],[45,6,6,108,114,[[1062,4,4,108,112],[1066,1,1,112,113],[1067,1,1,113,114]]],[48,2,2,114,116,[[1097,1,1,114,115],[1101,1,1,115,116]]],[49,3,2,116,118,[[1104,3,2,116,118]]],[50,1,1,118,119,[[1109,1,1,118,119]]],[52,2,2,119,121,[[1116,1,1,119,120],[1118,1,1,120,121]]],[53,1,1,121,122,[[1124,1,1,121,122]]],[54,1,1,122,123,[[1126,1,1,122,123]]],[57,4,4,123,127,[[1133,1,1,123,124],[1134,1,1,124,125],[1138,1,1,125,126],[1145,1,1,126,127]]],[58,3,3,127,130,[[1147,1,1,127,128],[1150,2,2,128,130]]],[59,1,1,130,131,[[1154,1,1,130,131]]],[61,3,2,131,133,[[1161,1,1,131,132],[1163,2,1,132,133]]],[63,1,1,133,134,[[1165,1,1,133,134]]],[65,28,23,134,157,[[1168,2,2,134,136],[1169,7,4,136,140],[1172,1,1,140,141],[1174,1,1,141,142],[1175,2,1,142,143],[1177,1,1,143,144],[1179,4,3,144,147],[1180,2,2,147,149],[1181,2,2,149,151],[1182,1,1,151,152],[1183,1,1,152,153],[1185,3,3,153,156],[1188,1,1,156,157]]]],[23165,23167,23169,23291,23338,23458,23459,23510,23732,23747,23835,23957,23962,24161,24214,24373,24386,24421,24575,24576,24577,24579,24649,24650,24723,24890,24898,24906,24920,24924,24942,24952,24954,24956,24994,24998,25168,25275,25349,25350,25380,25407,25553,25769,25834,26009,26038,26050,26056,26118,26138,26253,26484,26506,26593,26608,26681,26682,26694,26715,26749,26750,26752,26765,26770,26771,26785,26795,26898,26970,26987,27002,27012,27029,27032,27034,27039,27040,27052,27087,27099,27100,27188,27192,27230,27231,27237,27243,27245,27302,27307,27368,27456,27459,27468,27501,27590,27598,27602,27677,27720,27832,27906,27935,27986,28172,28201,28312,28365,28373,28376,28378,28458,28478,29227,29324,29400,29401,29534,29661,29684,29789,29846,29967,29989,30054,30256,30300,30364,30368,30460,30602,30637,30672,30730,30734,30747,30751,30754,30758,30801,30838,30851,30890,30909,30914,30925,30927,30937,30948,30950,30963,30980,31029,31030,31033,31084]]],["named",[27,27,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,7,7,1,8,[[973,2,2,1,3],[977,1,1,3,4],[980,1,1,4,5],[982,1,1,5,6],[988,1,1,6,7],[995,1,1,7,8]]],[42,1,1,8,9,[[999,1,1,8,9]]],[43,18,18,9,27,[[1022,2,2,9,11],[1026,4,4,11,15],[1028,1,1,15,16],[1029,1,1,16,17],[1033,2,2,17,19],[1034,1,1,19,20],[1035,3,3,20,23],[1036,1,1,23,24],[1037,1,1,24,25],[1038,1,1,25,26],[1044,1,1,26,27]]]],[24786,24898,24919,25134,25286,25401,25640,25985,26121,27060,27093,27226,27228,27249,27252,27335,27350,27484,27497,27557,27559,27564,27581,27609,27635,27674,27856]]],["names",[11,11,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[43,2,2,2,4,[[1018,1,1,2,3],[1035,1,1,3,4]]],[49,1,1,4,5,[[1106,1,1,4,5]]],[65,6,6,5,11,[[1169,1,1,5,6],[1179,1,1,6,7],[1183,2,2,7,9],[1187,2,2,9,11]]]],[23419,25383,26938,27572,29445,30750,30916,30978,30983,31065,31067]]],["of",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30885]]]]},{"k":"G3687","v":[["*",[10,10,[[41,2,2,0,2,[[978,2,2,0,2]]],[43,1,1,2,3,[[1036,1,1,2,3]]],[44,1,1,3,4,[[1060,1,1,3,4]]],[45,2,2,4,6,[[1066,2,2,4,6]]],[48,3,3,6,9,[[1097,1,1,6,7],[1099,1,1,7,8],[1101,1,1,8,9]]],[54,1,1,9,10,[[1126,1,1,9,10]]]],[25159,25160,27598,28323,28455,28465,29227,29266,29307,29846]]],["+",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29307]]],["call",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27598]]],["called",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28465]]],["named",[6,6,[[41,2,2,0,2,[[978,2,2,0,2]]],[44,1,1,2,3,[[1060,1,1,2,3]]],[45,1,1,3,4,[[1066,1,1,3,4]]],[48,2,2,4,6,[[1097,1,1,4,5],[1099,1,1,5,6]]]],[25159,25160,28323,28455,29227,29266]]],["nameth",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29846]]]]},{"k":"G3688","v":[["*",[6,6,[[39,3,3,0,3,[[949,3,3,0,3]]],[41,2,2,3,5,[[985,1,1,3,4],[986,1,1,4,5]]],[42,1,1,5,6,[[1008,1,1,5,6]]]],[23828,23831,23833,25533,25558,26595]]],["ass",[5,5,[[39,3,3,0,3,[[949,3,3,0,3]]],[41,2,2,3,5,[[985,1,1,3,4],[986,1,1,4,5]]]],[23828,23831,23833,25533,25558]]],["ass's",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26595]]]]},{"k":"G3689","v":[["*",[10,10,[[40,1,1,0,1,[[967,1,1,0,1]]],[41,2,2,1,3,[[995,1,1,1,2],[996,1,1,2,3]]],[42,1,1,3,4,[[1004,1,1,3,4]]],[45,1,1,4,5,[[1075,1,1,4,5]]],[47,1,1,5,6,[[1093,1,1,5,6]]],[53,3,3,6,9,[[1123,3,3,6,9]]],[60,1,1,9,10,[[1157,1,1,9,10]]]],[24672,25982,26025,26417,28703,29123,29766,29768,29779,30518]]],["+",[2,2,[[47,1,1,0,1,[[1093,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[29123,30518]]],["Certainly",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25982]]],["indeed",[6,6,[[40,1,1,0,1,[[967,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]],[53,3,3,3,6,[[1123,3,3,3,6]]]],[24672,26025,26417,29766,29768,29779]]],["truth",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28703]]]]},{"k":"G3690","v":[["vinegar",[7,6,[[39,2,2,0,2,[[955,2,2,0,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[41,1,1,3,4,[[995,1,1,3,4]]],[42,3,2,4,6,[[1015,3,2,4,6]]]],[24163,24177,24862,25971,26854,26855]]]]},{"k":"G3691","v":[["*",[8,7,[[44,1,1,0,1,[[1048,1,1,0,1]]],[65,7,6,1,7,[[1167,1,1,1,2],[1168,1,1,2,3],[1180,4,3,3,6],[1185,1,1,6,7]]]],[28006,30713,30729,30940,30943,30944,31032]]],["sharp",[7,6,[[65,7,6,0,6,[[1167,1,1,0,1],[1168,1,1,1,2],[1180,4,3,2,5],[1185,1,1,5,6]]]],[30713,30729,30940,30943,30944,31032]]],["swift",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28006]]]]},{"k":"G3692","v":[["*",[2,2,[[57,1,1,0,1,[[1143,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[30210,30330]]],["caves",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30210]]],["place",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30330]]]]},{"k":"G3693","v":[["*",[7,7,[[39,2,2,0,2,[[937,1,1,0,1],[943,1,1,1,2]]],[40,1,1,2,3,[[961,1,1,2,3]]],[41,2,2,3,5,[[980,1,1,3,4],[995,1,1,4,5]]],[65,2,2,5,7,[[1170,1,1,5,6],[1171,1,1,6,7]]]],[23399,23656,24391,25289,25961,30774,30780]]],["after",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[23656,25961]]],["backside",[1,1,[[65,1,1,0,1,[[1171,1,1,0,1]]]],[30780]]],["behind",[4,4,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[65,1,1,3,4,[[1170,1,1,3,4]]]],[23399,24391,25289,30774]]]]},{"k":"G3694","v":[["*",[36,36,[[39,6,6,0,6,[[931,1,1,0,1],[932,1,1,1,2],[938,1,1,2,3],[944,2,2,3,5],[952,1,1,5,6]]],[40,6,6,6,12,[[957,3,3,6,9],[964,2,2,9,11],[969,1,1,11,12]]],[41,8,8,12,20,[[976,1,1,12,13],[979,1,1,13,14],[981,2,2,14,16],[986,1,1,16,17],[989,1,1,17,18],[991,1,1,18,19],[993,1,1,19,20]]],[42,7,7,20,27,[[997,3,3,20,23],[1002,1,1,23,24],[1008,1,1,24,25],[1014,1,1,25,26],[1016,1,1,26,27]]],[43,2,2,27,29,[[1022,1,1,27,28],[1037,1,1,28,29]]],[49,1,1,29,30,[[1105,1,1,29,30]]],[53,1,1,30,31,[[1123,1,1,30,31]]],[60,1,1,31,32,[[1157,1,1,31,32]]],[64,1,1,32,33,[[1166,1,1,32,33]]],[65,3,3,33,36,[[1167,1,1,33,34],[1178,1,1,34,35],[1179,1,1,35,36]]]],[23203,23228,23455,23695,23696,23975,24222,24232,24235,24533,24534,24733,25071,25233,25324,25363,25580,25682,25745,25834,26059,26071,26074,26323,26599,26791,26881,27096,27656,29434,29778,30510,30679,30707,30906,30911]]],["+",[8,8,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,2,2,2,4,[[981,1,1,2,3],[989,1,1,3,4]]],[42,3,3,4,7,[[1002,1,1,4,5],[1014,1,1,5,6],[1016,1,1,6,7]]],[49,1,1,7,8,[[1105,1,1,7,8]]]],[23228,24733,25363,25682,26323,26791,26881,29434]]],["After",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26074]]],["after",[21,21,[[39,3,3,0,3,[[931,1,1,0,1],[938,1,1,1,2],[944,1,1,2,3]]],[40,4,4,3,7,[[957,3,3,3,6],[964,1,1,6,7]]],[41,4,4,7,11,[[981,1,1,7,8],[986,1,1,8,9],[991,1,1,9,10],[993,1,1,10,11]]],[42,3,3,11,14,[[997,2,2,11,13],[1008,1,1,13,14]]],[43,2,2,14,16,[[1022,1,1,14,15],[1037,1,1,15,16]]],[53,1,1,16,17,[[1123,1,1,16,17]]],[60,1,1,17,18,[[1157,1,1,17,18]]],[64,1,1,18,19,[[1166,1,1,18,19]]],[65,2,2,19,21,[[1178,1,1,19,20],[1179,1,1,20,21]]]],[23203,23455,23696,24222,24232,24235,24534,25324,25580,25745,25834,26059,26071,26599,27096,27656,29778,30510,30679,30906,30911]]],["back",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23975]]],["behind",[5,5,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,2,2,2,4,[[976,1,1,2,3],[979,1,1,3,4]]],[65,1,1,4,5,[[1167,1,1,4,5]]]],[23695,24533,25071,25233,30707]]]]},{"k":"G3695","v":[["arm",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30447]]]]},{"k":"G3696","v":[["*",[6,5,[[42,1,1,0,1,[[1014,1,1,0,1]]],[44,3,2,1,3,[[1051,2,1,1,2],[1058,1,1,2,3]]],[46,2,2,3,5,[[1083,1,1,3,4],[1087,1,1,4,5]]]],[26788,28081,28278,28905,28975]]],["armour",[2,2,[[44,1,1,0,1,[[1058,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]]],[28278,28905]]],["instruments",[2,1,[[44,2,1,0,1,[[1051,2,1,0,1]]]],[28081]]],["weapons",[2,2,[[42,1,1,0,1,[[1014,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]]],[26788,28975]]]]},{"k":"G3697","v":[["*",[5,5,[[43,1,1,0,1,[[1043,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]],[51,1,1,3,4,[[1111,1,1,3,4]]],[58,1,1,4,5,[[1146,1,1,4,5]]]],[27852,28423,29087,29569,30290]]],["+",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29087]]],["as",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27852]]],["man",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30290]]],["manner",[1,1,[[51,1,1,0,1,[[1111,1,1,0,1]]]],[29569]]],["sort",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28423]]]]},{"k":"G3698","v":[["when",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25149]]]]},{"k":"G3699","v":[["*",[82,77,[[39,13,11,0,11,[[934,5,3,0,3],[936,1,1,3,4],[941,1,1,4,5],[952,1,1,5,6],[953,2,2,6,8],[954,2,2,8,10],[956,1,1,10,11]]],[40,16,15,11,26,[[958,1,1,11,12],[960,2,2,12,14],[961,1,1,14,15],[962,3,3,15,18],[965,4,4,18,22],[969,1,1,22,23],[970,3,2,23,25],[972,1,1,25,26]]],[41,5,5,26,31,[[981,1,1,26,27],[984,2,2,27,29],[989,1,1,29,30],[994,1,1,30,31]]],[42,30,29,31,60,[[997,1,1,31,32],[999,1,1,32,33],[1000,2,2,33,35],[1002,2,2,35,37],[1003,3,3,37,40],[1004,2,2,40,42],[1006,1,1,42,43],[1007,2,2,43,45],[1008,2,2,45,47],[1009,2,2,47,49],[1010,2,2,49,51],[1013,1,1,51,52],[1014,2,2,52,54],[1015,3,3,54,57],[1016,2,2,57,59],[1017,2,1,59,60]]],[43,1,1,60,61,[[1034,1,1,60,61]]],[44,1,1,61,62,[[1060,1,1,61,62]]],[45,1,1,62,63,[[1064,1,1,62,63]]],[50,1,1,63,64,[[1109,1,1,63,64]]],[57,3,3,64,67,[[1138,1,1,64,65],[1141,1,1,65,66],[1142,1,1,66,67]]],[58,2,2,67,69,[[1148,2,2,67,69]]],[60,1,1,69,70,[[1157,1,1,69,70]]],[65,8,7,70,77,[[1168,2,1,70,71],[1177,1,1,71,72],[1178,2,2,72,74],[1180,1,1,74,75],[1183,1,1,75,76],[1186,1,1,76,77]]]],[23301,23302,23303,23364,23544,23985,24032,24034,24067,24111,24201,24264,24328,24338,24404,24417,24462,24463,24556,24582,24584,24586,24731,24763,24768,24879,25358,25492,25493,25688,25875,26072,26128,26176,26202,26280,26319,26362,26364,26370,26402,26403,26521,26553,26555,26581,26606,26663,26666,26671,26672,26783,26786,26805,26843,26845,26866,26879,26886,26916,27524,28323,28413,29528,30064,30121,30151,30323,30335,30511,30730,30880,30897,30905,30930,30984,31048]]],["+",[12,12,[[39,3,3,0,3,[[936,1,1,0,1],[952,1,1,1,2],[954,1,1,2,3]]],[40,5,5,3,8,[[962,2,2,3,5],[965,1,1,5,6],[970,2,2,6,8]]],[41,1,1,8,9,[[981,1,1,8,9]]],[58,1,1,9,10,[[1148,1,1,9,10]]],[65,2,2,10,12,[[1180,1,1,10,11],[1183,1,1,11,12]]]],[23364,23985,24067,24417,24463,24556,24763,24768,25358,30323,30930,30984]]],["Where",[5,5,[[40,3,3,0,3,[[965,3,3,0,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]]],[24582,24584,24586,26843,29528]]],["Whereas",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30511]]],["Wheresoever",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25688]]],["Whither",[4,4,[[42,3,3,0,3,[[1004,1,1,0,1],[1009,2,2,1,3]]],[57,1,1,3,4,[[1138,1,1,3,4]]]],[26403,26663,26666,30064]]],["where",[53,50,[[39,10,8,0,8,[[934,5,3,0,3],[941,1,1,3,4],[953,2,2,4,6],[954,1,1,6,7],[956,1,1,7,8]]],[40,8,8,8,16,[[958,1,1,8,9],[960,2,2,9,11],[961,1,1,11,12],[962,1,1,12,13],[969,1,1,13,14],[970,1,1,14,15],[972,1,1,15,16]]],[41,3,3,16,19,[[984,2,2,16,18],[994,1,1,18,19]]],[42,21,21,19,40,[[997,1,1,19,20],[999,1,1,20,21],[1000,2,2,21,23],[1002,2,2,23,25],[1003,3,3,25,28],[1006,1,1,28,29],[1007,2,2,29,31],[1008,2,2,31,33],[1010,1,1,33,34],[1013,1,1,34,35],[1014,1,1,35,36],[1015,2,2,36,38],[1016,2,2,38,40]]],[43,1,1,40,41,[[1034,1,1,40,41]]],[44,1,1,41,42,[[1060,1,1,41,42]]],[57,2,2,42,44,[[1141,1,1,42,43],[1142,1,1,43,44]]],[58,1,1,44,45,[[1148,1,1,44,45]]],[65,6,5,45,50,[[1168,2,1,45,46],[1177,1,1,46,47],[1178,2,2,47,49],[1186,1,1,49,50]]]],[23301,23302,23303,23544,24032,24034,24111,24201,24264,24328,24338,24404,24462,24731,24768,24879,25492,25493,25875,26072,26128,26176,26202,26280,26319,26362,26364,26370,26521,26553,26555,26581,26606,26671,26783,26786,26845,26866,26879,26886,27524,28323,30121,30151,30335,30730,30880,30897,30905,31048]]],["whereas",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28413]]],["whither",[5,4,[[42,5,4,0,4,[[1004,1,1,0,1],[1010,1,1,1,2],[1014,1,1,2,3],[1017,2,1,3,4]]]],[26402,26672,26805,26916]]]]},{"k":"G3700","v":[["*",[58,57,[[39,8,8,0,8,[[933,1,1,0,1],[945,1,1,1,2],[952,1,1,2,3],[954,1,1,3,4],[955,2,2,4,6],[956,2,2,6,8]]],[40,4,4,8,12,[[965,1,1,8,9],[969,1,1,9,10],[970,1,1,10,11],[972,1,1,11,12]]],[41,8,8,12,20,[[973,1,1,12,13],[975,1,1,13,14],[981,1,1,14,15],[985,1,1,15,16],[989,1,1,16,17],[993,1,1,17,18],[994,1,1,18,19],[996,1,1,19,20]]],[42,9,9,20,29,[[997,2,2,20,22],[999,1,1,22,23],[1007,1,1,23,24],[1012,4,4,24,28],[1015,1,1,28,29]]],[43,14,13,29,42,[[1018,1,1,29,30],[1019,2,2,30,32],[1024,4,4,32,36],[1026,1,1,36,37],[1030,1,1,37,38],[1033,1,1,38,39],[1035,1,1,39,40],[1037,1,1,40,41],[1043,2,1,41,42]]],[44,1,1,42,43,[[1060,1,1,42,43]]],[45,4,4,43,47,[[1076,4,4,43,47]]],[53,1,1,47,48,[[1121,1,1,47,48]]],[57,3,3,48,51,[[1141,1,1,48,49],[1144,1,1,49,50],[1145,1,1,50,51]]],[61,1,1,51,52,[[1161,1,1,51,52]]],[65,5,5,52,57,[[1167,1,1,52,53],[1177,1,1,53,54],[1178,2,2,54,56],[1188,1,1,56,57]]]],[23242,23703,23987,24118,24133,24153,24202,24205,24542,24743,24816,24880,24904,25031,25332,25546,25673,25853,25907,26025,26094,26095,26156,26563,26742,26743,26745,26748,26862,26926,26952,26966,27118,27142,27146,27151,27233,27393,27492,27572,27651,27839,28324,28723,28724,28725,28726,29747,30133,30226,30264,30581,30704,30891,30892,30894,31084]]],["appear",[2,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[27839,30133]]],["appeared",[15,15,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,4,4,2,6,[[973,1,1,2,3],[981,1,1,3,4],[994,1,1,4,5],[996,1,1,5,6]]],[43,7,7,6,13,[[1019,1,1,6,7],[1024,3,3,7,10],[1026,1,1,10,11],[1033,1,1,11,12],[1043,1,1,12,13]]],[65,2,2,13,15,[[1178,2,2,13,15]]]],[23703,24542,24904,25332,25907,26025,26952,27118,27146,27151,27233,27492,27839,30892,30894]]],["himself",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27142]]],["look",[2,2,[[42,1,1,0,1,[[1015,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]]],[26862,27572]]],["see",[30,30,[[39,7,7,0,7,[[933,1,1,0,1],[952,1,1,1,2],[954,1,1,2,3],[955,2,2,3,5],[956,2,2,5,7]]],[40,3,3,7,10,[[969,1,1,7,8],[970,1,1,8,9],[972,1,1,9,10]]],[41,4,4,10,14,[[975,1,1,10,11],[985,1,1,11,12],[989,1,1,12,13],[993,1,1,13,14]]],[42,8,8,14,22,[[997,2,2,14,16],[999,1,1,16,17],[1007,1,1,17,18],[1012,4,4,18,22]]],[43,2,2,22,24,[[1019,1,1,22,23],[1037,1,1,23,24]]],[44,1,1,24,25,[[1060,1,1,24,25]]],[57,2,2,25,27,[[1144,1,1,25,26],[1145,1,1,26,27]]],[61,1,1,27,28,[[1161,1,1,27,28]]],[65,2,2,28,30,[[1167,1,1,28,29],[1188,1,1,29,30]]]],[23242,23987,24118,24133,24153,24202,24205,24743,24816,24880,25031,25546,25673,25853,26094,26095,26156,26563,26742,26743,26745,26748,26966,27651,28324,30226,30264,30581,30704,31084]]],["seen",[8,8,[[43,2,2,0,2,[[1018,1,1,0,1],[1030,1,1,1,2]]],[45,4,4,2,6,[[1076,4,4,2,6]]],[53,1,1,6,7,[[1121,1,1,6,7]]],[65,1,1,7,8,[[1177,1,1,7,8]]]],[26926,27393,28723,28724,28725,28726,29747,30891]]]]},{"k":"G3701","v":[["*",[4,4,[[41,2,2,0,2,[[973,1,1,0,1],[996,1,1,1,2]]],[43,1,1,2,3,[[1043,1,1,2,3]]],[46,1,1,3,4,[[1089,1,1,3,4]]]],[24915,26014,27842,29023]]],["vision",[3,3,[[41,2,2,0,2,[[973,1,1,0,1],[996,1,1,1,2]]],[43,1,1,2,3,[[1043,1,1,2,3]]]],[24915,26014,27842]]],["visions",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29023]]]]},{"k":"G3702","v":[["broiled",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26033]]]]},{"k":"G3703","v":[["fruits",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31007]]]]},{"k":"G3704","v":[["*",[56,55,[[39,18,18,0,18,[[930,2,2,0,2],[933,2,2,2,4],[934,5,5,4,9],[936,2,2,9,11],[937,1,1,11,12],[940,2,2,12,14],[941,1,1,14,15],[950,1,1,15,16],[951,1,1,16,17],[954,1,1,17,18]]],[40,2,2,18,20,[[959,1,1,18,19],[961,1,1,19,20]]],[41,7,7,20,27,[[974,1,1,20,21],[979,1,1,21,22],[982,1,1,22,23],[983,1,1,23,24],[988,2,2,24,26],[996,1,1,26,27]]],[42,1,1,27,28,[[1007,1,1,27,28]]],[43,15,15,28,43,[[1020,1,1,28,29],[1025,2,2,29,31],[1026,4,4,31,35],[1032,1,1,35,36],[1037,1,1,36,37],[1040,3,3,37,40],[1041,1,1,40,41],[1042,2,2,41,43]]],[44,3,2,43,45,[[1048,1,1,43,44],[1054,2,1,44,45]]],[45,1,1,45,46,[[1062,1,1,45,46]]],[46,2,2,46,48,[[1085,2,2,46,48]]],[47,1,1,48,49,[[1091,1,1,48,49]]],[52,1,1,49,50,[[1116,1,1,49,50]]],[56,1,1,50,51,[[1132,1,1,50,51]]],[57,2,2,51,53,[[1134,1,1,51,52],[1141,1,1,52,53]]],[58,1,1,53,54,[[1150,1,1,53,54]]],[59,1,1,54,55,[[1152,1,1,54,55]]]],[23177,23192,23250,23279,23284,23286,23287,23298,23300,23362,23379,23417,23503,23506,23574,23887,23953,24113,24294,24387,25008,25198,25365,25442,25646,25648,26011,26580,27015,27191,27200,27218,27228,27233,27240,27459,27642,27749,27754,27757,27795,27799,27822,27995,28172,28392,28943,28946,29061,29661,29944,29986,30120,30370,30408]]],["That",[12,12,[[39,7,7,0,7,[[933,1,1,0,1],[934,2,2,1,3],[936,1,1,3,4],[940,1,1,4,5],[941,1,1,5,6],[951,1,1,6,7]]],[43,1,1,7,8,[[1032,1,1,7,8]]],[44,1,1,8,9,[[1048,1,1,8,9]]],[45,1,1,9,10,[[1062,1,1,9,10]]],[52,1,1,10,11,[[1116,1,1,10,11]]],[56,1,1,11,12,[[1132,1,1,11,12]]]],[23279,23286,23300,23362,23506,23574,23953,27459,27995,28392,29661,29944]]],["because",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27642]]],["how",[4,4,[[39,2,2,0,2,[[940,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[959,1,1,2,3]]],[41,1,1,3,4,[[996,1,1,3,4]]]],[23503,23887,24294,26011]]],["that",[34,33,[[39,8,8,0,8,[[930,2,2,0,2],[933,1,1,2,3],[934,3,3,3,6],[936,1,1,6,7],[937,1,1,7,8]]],[40,1,1,8,9,[[961,1,1,8,9]]],[41,5,5,9,14,[[974,1,1,9,10],[979,1,1,10,11],[982,1,1,11,12],[988,2,2,12,14]]],[42,1,1,14,15,[[1007,1,1,14,15]]],[43,10,10,15,25,[[1025,2,2,15,17],[1026,3,3,17,20],[1040,2,2,20,22],[1041,1,1,22,23],[1042,2,2,23,25]]],[44,2,1,25,26,[[1054,2,1,25,26]]],[46,2,2,26,28,[[1085,2,2,26,28]]],[47,1,1,28,29,[[1091,1,1,28,29]]],[57,2,2,29,31,[[1134,1,1,29,30],[1141,1,1,30,31]]],[58,1,1,31,32,[[1150,1,1,31,32]]],[59,1,1,32,33,[[1152,1,1,32,33]]]],[23177,23192,23250,23284,23287,23298,23379,23417,24387,25008,25198,25365,25646,25648,26580,27191,27200,27218,27228,27233,27749,27754,27795,27799,27822,28172,28943,28946,29061,29986,30120,30370,30408]]],["to",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[43,2,2,2,4,[[1026,1,1,2,3],[1040,1,1,3,4]]]],[24113,25442,27240,27757]]],["when",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27015]]]]},{"k":"G3705","v":[["*",[12,12,[[39,1,1,0,1,[[945,1,1,0,1]]],[43,11,11,1,12,[[1024,1,1,1,2],[1026,2,2,2,4],[1027,3,3,4,7],[1028,1,1,7,8],[1029,1,1,8,9],[1033,2,2,9,11],[1035,1,1,11,12]]]],[23709,27147,27226,27228,27262,27276,27278,27312,27346,27492,27493,27566]]],["sight",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27147]]],["vision",[11,11,[[39,1,1,0,1,[[945,1,1,0,1]]],[43,10,10,1,11,[[1026,2,2,1,3],[1027,3,3,3,6],[1028,1,1,6,7],[1029,1,1,7,8],[1033,2,2,8,10],[1035,1,1,10,11]]]],[23709,27226,27228,27262,27276,27278,27312,27346,27492,27493,27566]]]]},{"k":"G3706","v":[["*",[4,3,[[43,1,1,0,1,[[1019,1,1,0,1]]],[65,3,2,1,3,[[1170,2,1,1,2],[1175,1,1,2,3]]]],[26966,30771,30857]]],["sight",[1,1,[[65,1,1,0,1,[[1170,1,1,0,1]]]],[30771]]],["upon",[1,1,[[65,1,1,0,1,[[1170,1,1,0,1]]]],[30771]]],["vision",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30857]]],["visions",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26966]]]]},{"k":"G3707","v":[["visible",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29481]]]]},{"k":"G3708","v":[["*",[58,54,[[39,5,5,0,5,[[936,1,1,0,1],[937,1,1,1,2],[944,1,1,2,3],[946,1,1,3,4],[952,1,1,4,5]]],[40,2,2,5,7,[[957,1,1,5,6],[964,1,1,6,7]]],[41,6,6,7,13,[[973,1,1,7,8],[981,1,1,8,9],[984,1,1,9,10],[988,1,1,10,11],[995,1,1,11,12],[996,1,1,12,13]]],[42,22,19,13,32,[[997,2,2,13,15],[999,2,2,15,17],[1000,1,1,17,18],[1001,1,1,18,19],[1002,4,3,19,22],[1004,3,2,22,24],[1005,1,1,24,25],[1010,3,2,25,27],[1011,1,1,27,28],[1015,1,1,28,29],[1016,3,3,29,32]]],[43,4,4,32,36,[[1024,1,1,32,33],[1025,1,1,33,34],[1039,2,2,34,36]]],[45,1,1,36,37,[[1070,1,1,36,37]]],[50,2,2,37,39,[[1108,2,2,37,39]]],[51,1,1,39,40,[[1115,1,1,39,40]]],[57,3,3,40,43,[[1134,1,1,40,41],[1140,1,1,41,42],[1143,1,1,42,43]]],[58,1,1,43,44,[[1147,1,1,43,44]]],[59,1,1,44,45,[[1151,1,1,44,45]]],[61,6,5,45,50,[[1159,3,3,45,48],[1161,1,1,48,49],[1162,2,1,49,50]]],[63,1,1,50,51,[[1165,1,1,50,51]]],[65,3,3,51,54,[[1184,1,1,51,52],[1185,1,1,52,53],[1188,1,1,53,54]]]],[23349,23409,23678,23737,23963,24259,24515,24915,25337,25474,25643,25984,26014,26062,26078,26131,26152,26201,26247,26259,26293,26303,26419,26438,26477,26675,26677,26723,26860,26885,26892,26896,27160,27199,27719,27730,28541,29495,29512,29636,29985,30097,30199,30317,30382,30541,30542,30543,30585,30623,30669,31011,31027,31089]]],["See",[7,7,[[39,2,2,0,2,[[936,1,1,0,1],[937,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[51,1,1,3,4,[[1115,1,1,3,4]]],[57,1,1,4,5,[[1140,1,1,4,5]]],[65,2,2,5,7,[[1185,1,1,5,6],[1188,1,1,6,7]]]],[23349,23409,24259,29636,30097,31027,31089]]],["beholding",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25984]]],["heed",[5,5,[[39,2,2,0,2,[[944,1,1,0,1],[946,1,1,1,2]]],[40,1,1,2,3,[[964,1,1,2,3]]],[41,1,1,3,4,[[984,1,1,3,4]]],[43,1,1,4,5,[[1039,1,1,4,5]]]],[23678,23737,24515,25474,27730]]],["perceive",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27199]]],["saw",[4,4,[[42,3,3,0,3,[[997,1,1,0,1],[1002,1,1,1,2],[1015,1,1,2,3]]],[65,1,1,3,4,[[1184,1,1,3,4]]]],[26078,26259,26860,31011]]],["see",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[23963,29985,30317,30382]]],["seeing",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30199]]],["seen",[34,30,[[41,3,3,0,3,[[973,1,1,0,1],[981,1,1,1,2],[996,1,1,2,3]]],[42,19,16,3,19,[[997,1,1,3,4],[999,2,2,4,6],[1000,1,1,6,7],[1001,1,1,7,8],[1002,3,2,8,10],[1004,3,2,10,12],[1005,1,1,12,13],[1010,3,2,13,15],[1011,1,1,15,16],[1016,3,3,16,19]]],[43,2,2,19,21,[[1024,1,1,19,20],[1039,1,1,20,21]]],[45,1,1,21,22,[[1070,1,1,21,22]]],[50,2,2,22,24,[[1108,2,2,22,24]]],[61,6,5,24,29,[[1159,3,3,24,27],[1161,1,1,27,28],[1162,2,1,28,29]]],[63,1,1,29,30,[[1165,1,1,29,30]]]],[24915,25337,26014,26062,26131,26152,26201,26247,26293,26303,26419,26438,26477,26675,26677,26723,26885,26892,26896,27160,27719,28541,29495,29512,30541,30542,30543,30585,30623,30669]]],["seeth",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25643]]]]},{"k":"G3709","v":[["*",[36,34,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[41,2,2,2,4,[[975,1,1,2,3],[993,1,1,3,4]]],[42,1,1,4,5,[[999,1,1,4,5]]],[44,12,10,5,15,[[1046,1,1,5,6],[1047,3,2,6,8],[1048,1,1,8,9],[1049,1,1,9,10],[1050,1,1,10,11],[1054,2,1,11,12],[1057,1,1,12,13],[1058,2,2,13,15]]],[48,3,3,15,18,[[1098,1,1,15,16],[1100,1,1,16,17],[1101,1,1,17,18]]],[50,2,2,18,20,[[1109,2,2,18,20]]],[51,3,3,20,23,[[1111,1,1,20,21],[1112,1,1,21,22],[1115,1,1,22,23]]],[53,1,1,23,24,[[1120,1,1,23,24]]],[57,2,2,24,26,[[1135,1,1,24,25],[1136,1,1,25,26]]],[58,2,2,26,28,[[1146,2,2,26,28]]],[65,6,6,28,34,[[1172,2,2,28,30],[1177,1,1,30,31],[1180,1,1,31,32],[1182,1,1,32,33],[1185,1,1,33,34]]]],[23199,24293,25032,25849,26156,27948,27967,27970,27996,28037,28056,28177,28264,28270,28271,29232,29303,29310,29523,29525,29570,29586,29630,29724,30006,30017,30285,30286,30809,30810,30890,30936,30973,31032]]],["I",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[27996]]],["anger",[3,3,[[40,1,1,0,1,[[959,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]]],[24293,29303,29525]]],["indignation",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30936]]],["wrath",[31,29,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,2,2,1,3,[[975,1,1,1,2],[993,1,1,2,3]]],[42,1,1,3,4,[[999,1,1,3,4]]],[44,11,9,4,13,[[1046,1,1,4,5],[1047,3,2,5,7],[1049,1,1,7,8],[1050,1,1,8,9],[1054,2,1,9,10],[1057,1,1,10,11],[1058,2,2,11,13]]],[48,2,2,13,15,[[1098,1,1,13,14],[1101,1,1,14,15]]],[50,1,1,15,16,[[1109,1,1,15,16]]],[51,3,3,16,19,[[1111,1,1,16,17],[1112,1,1,17,18],[1115,1,1,18,19]]],[53,1,1,19,20,[[1120,1,1,19,20]]],[57,2,2,20,22,[[1135,1,1,20,21],[1136,1,1,21,22]]],[58,2,2,22,24,[[1146,2,2,22,24]]],[65,5,5,24,29,[[1172,2,2,24,26],[1177,1,1,26,27],[1182,1,1,27,28],[1185,1,1,28,29]]]],[23199,25032,25849,26156,27948,27967,27970,28037,28056,28177,28264,28270,28271,29232,29310,29523,29570,29586,29630,29724,30006,30017,30285,30286,30809,30810,30890,30973,31032]]]]},{"k":"G3710","v":[["*",[8,8,[[39,3,3,0,3,[[933,1,1,0,1],[946,1,1,1,2],[950,1,1,2,3]]],[41,2,2,3,5,[[986,1,1,3,4],[987,1,1,4,5]]],[48,1,1,5,6,[[1100,1,1,5,6]]],[65,2,2,6,8,[[1177,1,1,6,7],[1178,1,1,7,8]]]],[23256,23761,23879,25574,25616,29298,30890,30908]]],["angry",[5,5,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,2,2,1,3,[[986,1,1,1,2],[987,1,1,2,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]],[65,1,1,4,5,[[1177,1,1,4,5]]]],[23256,25574,25616,29298,30890]]],["wroth",[3,3,[[39,2,2,0,2,[[946,1,1,0,1],[950,1,1,1,2]]],[65,1,1,2,3,[[1178,1,1,2,3]]]],[23761,23879,30908]]]]},{"k":"G3711","v":[["angry",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29899]]]]},{"k":"G3712","v":[["fathoms",[2,1,[[43,2,1,0,1,[[1044,2,1,0,1]]]],[27883]]]]},{"k":"G3713","v":[["*",[3,3,[[53,2,2,0,2,[[1121,1,1,0,1],[1124,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[29732,29798,30188]]],["after",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29798]]],["desire",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[29732,30188]]]]},{"k":"G3714","v":[["country",[2,2,[[41,2,2,0,2,[[973,2,2,0,2]]]],[24932,24958]]]]},{"k":"G3715","v":[["lust",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27957]]]]},{"k":"G3716","v":[["+",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29095]]]]},{"k":"G3717","v":[["*",[2,2,[[43,1,1,0,1,[[1031,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[27424,30225]]],["straight",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30225]]],["upright",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27424]]]]},{"k":"G3718","v":[["dividing",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29842]]]]},{"k":"G3719","v":[["morning",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25864]]]]},{"k":"G3720","v":[["morning",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31096]]]]},{"k":"G3721","v":[["early",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26013]]]]},{"k":"G3722","v":[["*",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]]],[25992,26383,27080]]],["+",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[25992,27080]]],["morning",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26383]]]]},{"k":"G3723","v":[["*",[4,4,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,3,3,1,4,[[979,1,1,1,2],[982,1,1,2,3],[992,1,1,3,4]]]],[24498,25238,25391,25800]]],["plain",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24498]]],["right",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25391]]],["rightly",[2,2,[[41,2,2,0,2,[[979,1,1,0,1],[992,1,1,1,2]]]],[25238,25800]]]]},{"k":"G3724","v":[["*",[8,8,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,5,5,1,6,[[1019,1,1,1,2],[1027,1,1,2,3],[1028,1,1,3,4],[1034,2,2,4,6]]],[44,1,1,6,7,[[1046,1,1,6,7]]],[57,1,1,7,8,[[1136,1,1,7,8]]]],[25886,26972,27301,27336,27549,27554,27934,30021]]],["declared",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27934]]],["determinate",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26972]]],["determined",[3,3,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,2,2,1,3,[[1028,1,1,1,2],[1034,1,1,2,3]]]],[25886,27336,27549]]],["limiteth",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30021]]],["ordained",[2,2,[[43,2,2,0,2,[[1027,1,1,0,1],[1034,1,1,1,2]]]],[27301,27554]]]]},{"k":"G3725","v":[["*",[11,10,[[39,6,6,0,6,[[930,1,1,0,1],[932,1,1,1,2],[936,1,1,2,3],[943,2,2,3,5],[947,1,1,5,6]]],[40,4,3,6,9,[[961,1,1,6,7],[963,2,1,7,8],[966,1,1,8,9]]],[43,1,1,9,10,[[1030,1,1,9,10]]]],[23185,23222,23379,23655,23672,23763,24381,24494,24589,27412]]],["borders",[1,1,[[39,1,1,0,1,[[932,1,1,0,1]]]],[23222]]],["coasts",[10,9,[[39,5,5,0,5,[[930,1,1,0,1],[936,1,1,1,2],[943,2,2,2,4],[947,1,1,4,5]]],[40,4,3,5,8,[[961,1,1,5,6],[963,2,1,6,7],[966,1,1,7,8]]],[43,1,1,8,9,[[1030,1,1,8,9]]]],[23185,23379,23655,23672,23763,24381,24494,24589,27412]]]]},{"k":"G3726","v":[["*",[3,3,[[40,1,1,0,1,[[961,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]],[51,1,1,2,3,[[1115,1,1,2,3]]]],[24371,27598,29648]]],["adjure",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[24371,27598]]],["charge",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29648]]]]},{"k":"G3727","v":[["*",[10,10,[[39,4,4,0,4,[[933,1,1,0,1],[942,2,2,1,3],[954,1,1,3,4]]],[40,1,1,4,5,[[962,1,1,4,5]]],[41,1,1,5,6,[[973,1,1,5,6]]],[43,1,1,6,7,[[1019,1,1,6,7]]],[57,2,2,7,9,[[1138,2,2,7,9]]],[58,1,1,9,10,[[1150,1,1,9,10]]]],[23267,23604,23606,24126,24433,24966,26979,30060,30061,30366]]],["+",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]]],[23606,24433]]],["oath",[7,7,[[39,2,2,0,2,[[942,1,1,0,1],[954,1,1,1,2]]],[41,1,1,2,3,[[973,1,1,2,3]]],[43,1,1,3,4,[[1019,1,1,3,4]]],[57,2,2,4,6,[[1138,2,2,4,6]]],[58,1,1,6,7,[[1150,1,1,6,7]]]],[23604,24126,24966,26979,30060,30061,30366]]],["oaths",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23267]]]]},{"k":"G3728","v":[["oath",[4,3,[[57,4,3,0,3,[[1139,4,3,0,3]]]],[30084,30085,30092]]]]},{"k":"G3729","v":[["*",[5,5,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[43,2,2,3,5,[[1024,1,1,3,4],[1036,1,1,4,5]]]],[23377,24377,25278,27173,27614]]],["ran",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27173]]],["rushed",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27614]]],["violently",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23377,24377,25278]]]]},{"k":"G3730","v":[["*",[2,2,[[43,1,1,0,1,[[1031,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[27419,30323]]],["+",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30323]]],["assault",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27419]]]]},{"k":"G3731","v":[["violence",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31014]]]]},{"k":"G3732","v":[["*",[3,3,[[65,3,3,0,3,[[1184,1,1,0,1],[1185,2,2,1,3]]]],[30995,31034,31038]]],["bird",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30995]]],["fowls",[2,2,[[65,2,2,0,2,[[1185,2,2,0,2]]]],[31034,31038]]]]},{"k":"G3733","v":[["hen",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23955,25552]]]]},{"k":"G3734","v":[["bounds",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27549]]]]},{"k":"G3735","v":[["*",[65,65,[[39,16,16,0,16,[[932,1,1,0,1],[933,2,2,1,3],[936,1,1,3,4],[942,1,1,4,5],[943,1,1,5,6],[945,3,3,6,9],[946,1,1,9,10],[949,2,2,10,12],[952,2,2,12,14],[954,1,1,14,15],[956,1,1,15,16]]],[40,11,11,16,27,[[959,1,1,16,17],[961,2,2,17,19],[962,1,1,19,20],[965,2,2,20,22],[967,2,2,22,24],[969,2,2,24,26],[970,1,1,26,27]]],[41,13,13,27,40,[[975,1,1,27,28],[976,2,2,28,30],[978,1,1,30,31],[980,1,1,31,32],[981,2,2,32,34],[991,2,2,34,36],[993,2,2,36,38],[994,1,1,38,39],[995,1,1,39,40]]],[42,5,5,40,45,[[1000,2,2,40,42],[1002,2,2,42,44],[1004,1,1,44,45]]],[43,3,3,45,48,[[1018,1,1,45,46],[1024,2,2,46,48]]],[45,1,1,48,49,[[1074,1,1,48,49]]],[47,2,2,49,51,[[1094,2,2,49,51]]],[57,5,5,51,56,[[1140,1,1,51,52],[1143,1,1,52,53],[1144,3,3,53,56]]],[60,1,1,56,57,[[1156,1,1,56,57]]],[65,8,8,57,65,[[1172,3,3,57,60],[1174,1,1,60,61],[1180,1,1,61,62],[1182,1,1,62,63],[1183,1,1,63,64],[1187,1,1,64,65]]]],[23217,23235,23248,23346,23620,23662,23701,23709,23720,23739,23827,23847,23960,23973,24084,24211,24301,24369,24375,24453,24540,24547,24641,24663,24720,24731,24780,25030,25068,25092,25158,25277,25329,25338,25760,25768,25847,25863,25903,25965,26176,26177,26260,26272,26382,26935,27146,27154,28667,29155,29156,30097,30210,30230,30232,30234,30497,30807,30808,30809,30835,30927,30974,30984,31063]]],["+",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30984]]],["hill",[3,3,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,2,2,1,3,[[976,1,1,1,2],[981,1,1,2,3]]]],[23248,25092,25338]]],["mount",[21,21,[[39,3,3,0,3,[[949,1,1,0,1],[952,1,1,1,2],[954,1,1,2,3]]],[40,3,3,3,6,[[967,1,1,3,4],[969,1,1,4,5],[970,1,1,5,6]]],[41,4,4,6,10,[[991,2,2,6,8],[993,1,1,8,9],[994,1,1,9,10]]],[42,1,1,10,11,[[1004,1,1,10,11]]],[43,3,3,11,14,[[1018,1,1,11,12],[1024,2,2,12,14]]],[47,2,2,14,16,[[1094,2,2,14,16]]],[57,3,3,16,19,[[1140,1,1,16,17],[1144,2,2,17,19]]],[60,1,1,19,20,[[1156,1,1,19,20]]],[65,1,1,20,21,[[1180,1,1,20,21]]]],[23827,23960,24084,24641,24720,24780,25760,25768,25863,25903,26382,26935,27146,27154,29155,29156,30097,30230,30234,30497,30927]]],["mountain",[28,28,[[39,10,10,0,10,[[932,1,1,0,1],[933,1,1,1,2],[936,1,1,2,3],[942,1,1,3,4],[943,1,1,4,5],[945,3,3,5,8],[949,1,1,8,9],[956,1,1,9,10]]],[40,5,5,10,15,[[959,1,1,10,11],[962,1,1,11,12],[965,2,2,12,14],[967,1,1,14,15]]],[41,5,5,15,20,[[975,1,1,15,16],[976,1,1,16,17],[978,1,1,17,18],[980,1,1,18,19],[981,1,1,19,20]]],[42,4,4,20,24,[[1000,2,2,20,22],[1002,2,2,22,24]]],[57,1,1,24,25,[[1144,1,1,24,25]]],[65,3,3,25,28,[[1172,1,1,25,26],[1174,1,1,26,27],[1187,1,1,27,28]]]],[23217,23235,23346,23620,23662,23701,23709,23720,23847,24211,24301,24453,24540,24547,24663,25030,25068,25158,25277,25329,26176,26177,26260,26272,30232,30807,30835,31063]]],["mountains",[12,12,[[39,2,2,0,2,[[946,1,1,0,1],[952,1,1,1,2]]],[40,3,3,2,5,[[961,2,2,2,4],[969,1,1,4,5]]],[41,2,2,5,7,[[993,1,1,5,6],[995,1,1,6,7]]],[45,1,1,7,8,[[1074,1,1,7,8]]],[57,1,1,8,9,[[1143,1,1,8,9]]],[65,3,3,9,12,[[1172,2,2,9,11],[1182,1,1,11,12]]]],[23739,23973,24369,24375,24731,25847,25965,28667,30210,30808,30809,30974]]]]},{"k":"G3736","v":[["digged",[3,3,[[39,2,2,0,2,[[949,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]]],[23859,24026,24674]]]]},{"k":"G3737","v":[["*",[2,2,[[42,1,1,0,1,[[1010,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[26686,30293]]],["comfortless",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26686]]],["fatherless",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30293]]]]},{"k":"G3738","v":[["danced",[4,4,[[39,2,2,0,2,[[939,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[41,1,1,3,4,[[979,1,1,3,4]]]],[23476,23603,24429,25227]]]]},{"k":"G3739","v":[["*",[1364,1189,[[39,123,98,0,98,[[929,2,2,0,2],[930,2,2,2,4],[931,3,3,4,7],[933,8,5,7,12],[934,1,1,12,13],[935,3,2,13,15],[936,1,1,15,16],[938,8,6,16,22],[939,6,5,22,27],[940,8,6,27,33],[941,15,11,33,44],[942,2,2,44,46],[943,3,2,46,48],[944,4,2,48,50],[945,1,1,50,51],[946,7,7,51,58],[947,4,4,58,62],[948,9,7,62,69],[949,7,5,69,74],[951,6,4,74,78],[952,7,6,78,84],[953,5,3,84,87],[954,5,5,87,92],[955,6,6,92,98]]],[40,77,69,98,167,[[957,4,4,98,102],[958,4,4,102,106],[959,4,4,106,110],[960,8,6,110,116],[961,3,3,116,119],[962,3,3,119,122],[963,5,5,122,127],[964,3,2,127,129],[965,8,7,129,136],[966,11,9,136,145],[967,5,3,145,148],[968,1,1,148,149],[969,5,5,149,154],[970,7,7,154,161],[971,5,5,161,166],[972,1,1,166,167]]],[41,181,155,167,322,[[973,8,7,167,174],[974,7,7,174,181],[975,3,3,181,184],[976,3,3,184,187],[977,9,9,187,196],[978,12,12,196,208],[979,11,9,208,217],[980,14,9,217,226],[981,14,11,226,237],[982,9,8,237,245],[983,3,3,245,248],[984,19,15,248,263],[985,10,9,263,272],[986,2,2,272,274],[987,2,2,274,276],[988,2,2,276,278],[989,9,8,278,286],[990,3,3,286,289],[991,11,8,289,297],[992,3,3,297,300],[993,5,3,300,303],[994,3,3,303,306],[995,10,7,306,313],[996,9,9,313,322]]],[42,155,140,322,462,[[997,13,12,322,334],[998,2,2,334,336],[999,7,5,336,341],[1000,16,13,341,354],[1001,11,10,354,364],[1002,16,15,364,379],[1003,6,6,379,385],[1004,6,4,385,389],[1005,3,3,389,392],[1006,7,7,392,399],[1007,5,5,399,404],[1008,5,5,404,409],[1009,8,8,409,417],[1010,6,5,417,422],[1011,7,6,422,428],[1012,2,2,428,430],[1013,13,12,430,442],[1014,9,8,442,450],[1015,5,5,450,455],[1016,4,4,455,459],[1017,4,3,459,462]]],[43,218,193,462,655,[[1018,14,12,462,474],[1019,7,7,474,481],[1020,11,9,481,490],[1021,7,6,490,496],[1022,6,5,496,501],[1023,4,4,501,505],[1024,20,18,505,523],[1025,8,7,523,530],[1026,6,5,530,535],[1027,14,11,535,546],[1028,7,6,546,552],[1029,2,2,552,554],[1030,11,10,554,564],[1031,7,7,564,571],[1032,6,6,571,577],[1033,4,4,577,581],[1034,7,5,581,586],[1035,2,2,586,588],[1036,6,6,588,594],[1037,6,5,594,599],[1038,7,7,599,606],[1039,6,6,606,612],[1040,3,3,612,615],[1041,11,9,615,624],[1042,9,8,624,632],[1043,11,9,632,641],[1044,9,7,641,648],[1045,7,7,648,655]]],[44,89,72,655,727,[[1046,8,8,655,663],[1047,4,4,663,667],[1048,4,4,667,671],[1049,10,9,671,680],[1050,5,4,680,684],[1051,6,4,684,688],[1052,8,5,688,693],[1053,11,8,693,701],[1054,11,7,701,708],[1055,4,3,708,711],[1056,2,2,711,713],[1057,1,1,713,714],[1059,7,6,714,720],[1060,3,2,720,722],[1061,5,5,722,727]]],[45,62,52,727,779,[[1062,3,3,727,730],[1063,6,5,730,735],[1064,3,3,735,738],[1065,6,5,738,743],[1067,3,3,743,746],[1068,8,7,746,753],[1069,3,2,753,755],[1071,8,6,755,761],[1072,5,3,761,764],[1073,3,3,764,767],[1075,1,1,767,768],[1076,12,10,768,778],[1077,1,1,778,779]]],[46,42,35,779,814,[[1078,6,5,779,784],[1079,6,4,784,788],[1080,1,1,788,789],[1081,3,2,789,791],[1082,2,2,791,793],[1084,1,1,793,794],[1085,2,2,794,796],[1086,1,1,796,797],[1087,5,5,797,802],[1088,8,5,802,807],[1089,5,5,807,812],[1090,2,2,812,814]]],[47,23,23,814,837,[[1091,6,6,814,820],[1092,6,6,820,826],[1093,4,4,826,830],[1094,2,2,830,832],[1095,3,3,832,835],[1096,2,2,835,837]]],[48,32,31,837,868,[[1097,9,8,837,845],[1098,6,6,845,851],[1099,7,7,851,858],[1100,4,4,858,862],[1101,2,2,862,864],[1102,4,4,864,868]]],[49,15,14,868,882,[[1104,3,3,868,871],[1105,8,7,871,878],[1106,4,4,878,882]]],[50,34,32,882,914,[[1107,16,14,882,896],[1108,9,9,896,905],[1109,4,4,905,909],[1110,5,5,909,914]]],[51,4,4,914,918,[[1111,1,1,914,915],[1112,1,1,915,916],[1113,1,1,916,917],[1115,1,1,917,918]]],[52,12,12,918,930,[[1116,3,3,918,921],[1117,5,5,921,926],[1118,4,4,926,930]]],[53,21,19,930,949,[[1119,7,6,930,936],[1120,3,3,936,939],[1122,4,4,939,943],[1124,7,6,943,949]]],[54,20,17,949,966,[[1125,8,6,949,955],[1126,6,5,955,960],[1127,2,2,960,962],[1128,4,4,962,966]]],[55,9,8,966,974,[[1129,5,4,966,970],[1130,2,2,970,972],[1131,2,2,972,974]]],[56,5,5,974,979,[[1132,5,5,974,979]]],[57,73,68,979,1047,[[1133,3,2,979,981],[1134,6,5,981,986],[1135,2,2,986,988],[1136,1,1,988,989],[1137,3,3,989,992],[1138,6,6,992,998],[1139,8,7,998,1005],[1140,5,5,1005,1010],[1141,8,7,1010,1017],[1142,6,6,1017,1023],[1143,9,9,1023,1032],[1144,10,9,1032,1041],[1145,6,6,1041,1047]]],[58,8,7,1047,1054,[[1146,3,2,1047,1049],[1147,1,1,1049,1050],[1149,3,3,1050,1053],[1150,1,1,1053,1054]]],[59,30,24,1054,1078,[[1151,7,4,1054,1058],[1152,9,7,1058,1065],[1153,8,8,1065,1073],[1154,4,3,1073,1076],[1155,2,2,1076,1078]]],[60,18,17,1078,1095,[[1156,4,4,1078,1082],[1157,6,6,1082,1088],[1158,8,7,1088,1095]]],[61,30,23,1095,1118,[[1159,6,3,1095,1098],[1160,7,6,1098,1104],[1161,4,4,1104,1108],[1162,8,6,1108,1114],[1163,5,4,1114,1118]]],[62,3,3,1118,1121,[[1164,3,3,1118,1121]]],[63,5,4,1121,1125,[[1165,5,4,1121,1125]]],[64,5,4,1125,1129,[[1166,5,4,1125,1129]]],[65,70,60,1129,1189,[[1167,10,6,1129,1135],[1168,10,9,1135,1144],[1169,4,4,1144,1148],[1170,3,2,1148,1150],[1171,4,3,1150,1153],[1172,1,1,1153,1154],[1173,2,2,1154,1156],[1174,1,1,1156,1157],[1175,3,2,1157,1159],[1176,4,4,1159,1163],[1178,2,2,1163,1165],[1179,6,5,1165,1170],[1180,1,1,1170,1171],[1182,2,2,1171,1173],[1183,8,7,1173,1180],[1184,2,2,1180,1182],[1185,2,2,1182,1184],[1186,3,3,1184,1187],[1187,1,1,1187,1188],[1188,1,1,1188,1189]]]],[23160,23167,23178,23185,23203,23204,23209,23253,23255,23256,23265,23266,23290,23318,23325,23349,23428,23431,23443,23444,23455,23459,23463,23465,23469,23479,23486,23491,23493,23500,23507,23521,23525,23543,23547,23551,23556,23562,23570,23571,23572,23583,23585,23587,23604,23619,23638,23646,23691,23697,23705,23732,23733,23734,23746,23750,23755,23761,23768,23771,23773,23791,23796,23799,23807,23814,23815,23818,23819,23841,23850,23861,23868,23870,23934,23936,23953,23955,23959,23995,24001,24002,24003,24007,24021,24023,24037,24067,24078,24090,24102,24104,24138,24144,24162,24185,24186,24189,24217,24222,24226,24259,24264,24279,24284,24286,24301,24307,24317,24323,24327,24339,24345,24347,24348,24354,24367,24397,24405,24423,24429,24430,24467,24474,24476,24478,24488,24535,24538,24547,24575,24576,24577,24578,24579,24580,24597,24599,24603,24623,24626,24627,24628,24631,24632,24642,24661,24663,24683,24719,24728,24736,24737,24754,24762,24763,24775,24786,24798,24825,24826,24838,24866,24867,24869,24872,24882,24897,24913,24918,24920,24954,24966,24971,24984,24988,24993,24998,25004,25010,25023,25041,25042,25044,25069,25081,25092,25110,25116,25117,25124,25125,25128,25132,25136,25141,25148,25149,25150,25159,25160,25162,25163,25180,25184,25192,25194,25195,25197,25199,25217,25218,25222,25238,25240,25242,25244,25247,25250,25258,25262,25263,25272,25280,25283,25292,25305,25310,25325,25327,25328,25332,25334,25337,25344,25349,25351,25368,25371,25373,25385,25386,25387,25393,25402,25411,25427,25432,25460,25461,25462,25467,25469,25471,25479,25483,25496,25499,25501,25502,25505,25507,25509,25519,25522,25532,25534,25537,25539,25543,25548,25552,25568,25586,25597,25604,25621,25640,25652,25661,25663,25678,25680,25681,25682,25684,25705,25717,25718,25746,25751,25752,25753,25757,25761,25768,25775,25796,25797,25826,25830,25832,25841,25871,25886,25924,25949,25960,25962,25964,25968,25976,25986,25992,26001,26008,26009,26010,26012,26014,26016,26035,26047,26053,26057,26059,26070,26071,26074,26077,26082,26086,26089,26091,26117,26118,26122,26131,26146,26152,26154,26161,26168,26170,26174,26178,26185,26188,26194,26201,26202,26206,26208,26209,26214,26217,26229,26230,26231,26238,26242,26246,26248,26255,26259,26266,26270,26271,26275,26278,26279,26284,26286,26294,26296,26299,26308,26320,26321,26331,26353,26356,26359,26364,26367,26407,26419,26421,26435,26447,26459,26464,26487,26493,26497,26506,26510,26516,26517,26525,26526,26529,26568,26569,26581,26589,26618,26628,26630,26635,26637,26648,26653,26654,26656,26657,26659,26678,26680,26685,26692,26694,26702,26706,26714,26719,26723,26725,26743,26744,26761,26762,26763,26764,26765,26767,26768,26770,26771,26781,26783,26785,26786,26794,26796,26798,26801,26806,26811,26817,26842,26847,26851,26862,26866,26869,26874,26883,26897,26905,26908,26918,26924,26925,26926,26927,26930,26934,26939,26944,26945,26946,26947,26948,26957,26970,26971,26973,26981,26982,26985,26998,26999,27002,27009,27011,27012,27014,27017,27021,27032,27034,27042,27044,27049,27053,27083,27084,27089,27091,27095,27104,27107,27111,27115,27119,27120,27123,27132,27133,27134,27136,27144,27149,27151,27154,27155,27156,27159,27160,27161,27162,27168,27182,27186,27195,27200,27203,27206,27208,27221,27233,27249,27252,27255,27264,27265,27271,27274,27276,27280,27291,27295,27296,27297,27298,27313,27316,27318,27321,27330,27337,27341,27360,27363,27364,27368,27369,27384,27387,27393,27399,27401,27403,27422,27423,27425,27429,27430,27437,27440,27452,27453,27459,27466,27471,27478,27485,27497,27504,27507,27526,27530,27546,27554,27557,27564,27584,27598,27601,27610,27612,27620,27625,27644,27650,27651,27654,27664,27675,27680,27683,27687,27688,27693,27696,27708,27709,27712,27714,27719,27728,27753,27762,27763,27775,27777,27780,27782,27783,27784,27787,27788,27790,27803,27807,27811,27812,27814,27815,27820,27822,27825,27830,27833,27835,27838,27839,27840,27845,27849,27863,27872,27878,27880,27888,27894,27899,27903,27906,27907,27909,27914,27921,27922,27932,27935,27936,27939,27950,27955,27956,27957,27963,27968,27985,27991,27999,28005,28016,28021,28028,28029,28030,28038,28039,28040,28043,28046,28047,28049,28058,28059,28061,28078,28084,28085,28089,28097,28106,28107,28110,28111,28119,28131,28140,28141,28145,28146,28148,28150,28159,28160,28170,28173,28176,28178,28179,28196,28201,28202,28211,28216,28248,28282,28285,28295,28301,28302,28303,28321,28324,28338,28340,28341,28343,28353,28371,28372,28393,28401,28402,28403,28407,28410,28415,28421,28424,28435,28438,28439,28440,28450,28472,28485,28486,28488,28494,28507,28511,28523,28524,28526,28533,28538,28578,28580,28582,28583,28587,28597,28621,28623,28627,28642,28657,28662,28715,28719,28720,28721,28724,28727,28728,28733,28749,28754,28755,28779,28804,28806,28810,28813,28817,28827,28828,28834,28840,28847,28863,28865,28881,28887,28923,28950,28954,28958,28972,28973,28979,28984,28989,28993,29001,29004,29006,29010,29026,29028,29035,29039,29043,29046,29053,29062,29064,29065,29066,29077,29080,29083,29085,29086,29091,29099,29101,29103,29112,29118,29121,29140,29150,29163,29179,29183,29195,29202,29212,29213,29214,29215,29217,29219,29220,29226,29231,29232,29233,29239,29250,29251,29255,29256,29258,29262,29263,29266,29271,29273,29287,29288,29302,29309,29322,29345,29353,29357,29359,29396,29397,29406,29429,29433,29437,29439,29440,29441,29442,29445,29451,29452,29453,29470,29471,29472,29474,29478,29479,29480,29483,29488,29489,29490,29492,29493,29494,29497,29504,29505,29506,29508,29511,29512,29513,29516,29523,29524,29532,29542,29545,29550,29551,29552,29559,29570,29583,29599,29645,29653,29654,29660,29669,29670,29671,29675,29676,29681,29682,29684,29695,29702,29703,29707,29711,29715,29716,29720,29723,29726,29750,29753,29757,29761,29792,29798,29800,29803,29804,29809,29812,29815,29820,29821,29822,29824,29829,29834,29836,29844,29847,29861,29867,29878,29883,29885,29888,29894,29895,29903,29905,29909,29922,29928,29929,29943,29948,29950,29951,29959,29965,29966,29982,29987,29988,29990,29995,30001,30012,30027,30037,30038,30041,30051,30052,30054,30061,30062,30063,30066,30068,30077,30078,30080,30083,30091,30093,30094,30095,30101,30102,30107,30109,30110,30112,30114,30119,30125,30134,30143,30149,30153,30162,30165,30176,30179,30180,30182,30187,30190,30201,30205,30210,30214,30218,30219,30220,30226,30228,30231,30238,30240,30248,30250,30251,30252,30262,30264,30278,30283,30298,30341,30342,30349,30364,30380,30382,30384,30386,30403,30406,30407,30411,30421,30422,30423,30427,30428,30430,30440,30443,30444,30445,30446,30450,30451,30457,30474,30477,30483,30488,30496,30498,30502,30503,30512,30515,30517,30519,30523,30526,30528,30532,30534,30535,30538,30541,30543,30545,30555,30557,30558,30574,30575,30577,30590,30596,30601,30603,30605,30606,30609,30618,30619,30623,30633,30634,30638,30639,30646,30650,30653,30659,30663,30664,30668,30685,30687,30694,30695,30698,30699,30701,30708,30716,30717,30723,30724,30725,30727,30730,30731,30732,30734,30742,30748,30750,30757,30758,30769,30773,30785,30787,30792,30802,30812,30819,30829,30854,30860,30865,30866,30867,30869,30896,30907,30910,30912,30916,30920,30922,30930,30968,30972,30977,30983,30986,30987,30990,30991,30993,30999,31012,31029,31037,31040,31046,31049,31065,31086]]],["+",[252,234,[[39,47,38,0,38,[[933,8,5,0,5],[938,3,3,5,8],[939,3,3,8,11],[940,3,2,11,13],[941,2,2,13,15],[942,2,2,15,17],[943,2,1,17,18],[944,4,2,18,20],[946,3,3,20,23],[947,1,1,23,24],[948,4,4,24,28],[949,2,2,28,30],[951,5,3,30,33],[953,2,2,33,35],[954,3,3,35,38]]],[40,26,23,38,61,[[958,2,2,38,40],[959,2,2,40,42],[960,2,2,42,44],[962,2,2,44,46],[963,1,1,46,47],[964,3,2,47,49],[965,4,3,49,52],[966,5,5,52,57],[967,3,2,57,59],[969,1,1,59,60],[970,1,1,60,61]]],[41,42,38,61,99,[[973,2,2,61,63],[976,3,3,63,66],[977,2,2,66,68],[978,1,1,68,69],[979,2,2,69,71],[980,3,2,71,73],[981,6,4,73,77],[982,5,5,77,82],[983,1,1,82,83],[984,5,5,83,88],[985,2,2,88,90],[989,2,1,90,91],[990,1,1,91,92],[991,2,2,92,94],[992,1,1,94,95],[994,1,1,95,96],[995,2,2,96,98],[996,1,1,98,99]]],[42,12,12,99,111,[[997,1,1,99,100],[1000,2,2,100,102],[1001,3,3,102,105],[1002,2,2,105,107],[1011,1,1,107,108],[1013,1,1,108,109],[1015,1,1,109,110],[1016,1,1,110,111]]],[43,34,34,111,145,[[1018,3,3,111,114],[1019,2,2,114,116],[1021,2,2,116,118],[1022,1,1,118,119],[1024,4,4,119,123],[1025,1,1,123,124],[1027,2,2,124,126],[1028,2,2,126,128],[1029,1,1,128,129],[1030,1,1,129,130],[1032,2,2,130,132],[1034,1,1,132,133],[1036,1,1,133,134],[1037,1,1,134,135],[1039,1,1,135,136],[1040,1,1,136,137],[1041,3,3,137,140],[1043,2,2,140,142],[1044,3,3,142,145]]],[44,17,16,145,161,[[1046,2,2,145,147],[1047,1,1,147,148],[1050,1,1,148,149],[1052,1,1,149,150],[1053,2,2,150,152],[1054,3,2,152,154],[1055,1,1,154,155],[1057,1,1,155,156],[1059,4,4,156,160],[1061,1,1,160,161]]],[45,10,10,161,171,[[1063,1,1,161,162],[1065,1,1,162,163],[1068,2,2,163,165],[1072,2,2,165,167],[1073,2,2,167,169],[1076,1,1,169,170],[1077,1,1,170,171]]],[46,4,4,171,175,[[1079,1,1,171,172],[1082,1,1,172,173],[1088,2,2,173,175]]],[47,2,2,175,177,[[1095,1,1,175,176],[1096,1,1,176,177]]],[48,7,7,177,184,[[1097,1,1,177,178],[1098,1,1,178,179],[1099,1,1,179,180],[1100,1,1,180,181],[1101,1,1,181,182],[1102,2,2,182,184]]],[49,2,2,184,186,[[1105,1,1,184,185],[1106,1,1,185,186]]],[50,4,4,186,190,[[1107,1,1,186,187],[1108,1,1,187,188],[1109,2,2,188,190]]],[52,3,3,190,193,[[1116,1,1,190,191],[1117,2,2,191,193]]],[53,3,3,193,196,[[1120,1,1,193,194],[1124,2,2,194,196]]],[54,5,5,196,201,[[1125,2,2,196,198],[1126,2,2,198,200],[1127,1,1,200,201]]],[55,1,1,201,202,[[1129,1,1,201,202]]],[56,1,1,202,203,[[1132,1,1,202,203]]],[57,9,8,203,211,[[1134,1,1,203,204],[1138,1,1,204,205],[1140,1,1,205,206],[1141,3,2,206,208],[1142,1,1,208,209],[1144,1,1,209,210],[1145,1,1,210,211]]],[58,1,1,211,212,[[1149,1,1,211,212]]],[59,7,7,212,219,[[1151,1,1,212,213],[1152,2,2,213,215],[1153,2,2,215,217],[1154,1,1,217,218],[1155,1,1,218,219]]],[60,5,5,219,224,[[1156,1,1,219,220],[1158,4,4,220,224]]],[61,5,5,224,229,[[1160,1,1,224,225],[1161,2,2,225,227],[1162,1,1,227,228],[1163,1,1,228,229]]],[63,1,1,229,230,[[1165,1,1,229,230]]],[64,1,1,230,231,[[1166,1,1,230,231]]],[65,3,3,231,234,[[1168,1,1,231,232],[1182,1,1,232,233],[1184,1,1,233,234]]]],[23253,23255,23256,23265,23266,23428,23431,23459,23465,23479,23486,23521,23525,23543,23547,23604,23619,23638,23691,23697,23732,23733,23746,23771,23796,23799,23818,23819,23861,23870,23934,23936,23955,24021,24023,24090,24102,24104,24264,24279,24317,24323,24327,24348,24429,24430,24474,24535,24538,24575,24579,24580,24599,24603,24623,24631,24632,24642,24663,24728,24798,24897,24971,25069,25081,25092,25132,25141,25195,25218,25242,25250,25263,25305,25325,25327,25349,25368,25371,25373,25385,25393,25427,25460,25462,25467,25469,25507,25543,25552,25684,25705,25761,25775,25797,25871,25968,25976,26012,26077,26170,26208,26214,26217,26229,26278,26279,26706,26761,26866,26883,26934,26944,26947,26957,26970,27034,27053,27083,27119,27120,27144,27149,27195,27271,27280,27318,27321,27360,27363,27453,27478,27546,27625,27644,27728,27762,27780,27782,27787,27835,27845,27880,27888,27899,27950,27956,27963,28049,28097,28131,28148,28170,28176,28201,28248,28282,28285,28301,28303,28338,28403,28435,28494,28511,28621,28627,28642,28662,28719,28779,28840,28881,29001,29010,29179,29195,29212,29231,29255,29302,29322,29345,29353,29437,29452,29494,29506,29523,29542,29660,29671,29675,29723,29792,29800,29815,29820,29836,29847,29861,29905,29959,29982,30061,30095,30107,30109,30162,30240,30251,30341,30380,30407,30411,30440,30444,30450,30477,30483,30526,30528,30534,30535,30555,30596,30601,30618,30639,30663,30694,30730,30972,31012]]],["I",[3,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[43,1,1,1,2,[[1039,1,1,1,2]]],[44,1,1,2,3,[[1052,1,1,2,3]]]],[24222,27708,28111]]],["That",[2,2,[[42,1,1,0,1,[[1009,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[26657,29006]]],["What",[8,8,[[39,2,2,0,2,[[938,1,1,0,1],[947,1,1,1,2]]],[40,1,1,2,3,[[966,1,1,2,3]]],[42,2,2,3,5,[[1009,1,1,3,4],[1015,1,1,4,5]]],[43,2,2,5,7,[[1027,1,1,5,6],[1028,1,1,6,7]]],[65,1,1,7,8,[[1167,1,1,7,8]]]],[23444,23768,24597,26637,26847,27274,27316,30708]]],["When",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27255]]],["Wherein",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29214]]],["Whereof",[2,2,[[48,1,1,0,1,[[1099,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[29258,29490]]],["Which",[24,24,[[39,2,2,0,2,[[941,2,2,0,2]]],[41,2,2,2,4,[[974,1,1,2,3],[992,1,1,3,4]]],[42,1,1,4,5,[[997,1,1,4,5]]],[43,6,6,5,11,[[1018,1,1,5,6],[1024,1,1,6,7],[1028,1,1,7,8],[1030,1,1,8,9],[1033,1,1,9,10],[1044,1,1,10,11]]],[44,1,1,11,12,[[1046,1,1,11,12]]],[45,1,1,12,13,[[1063,1,1,12,13]]],[47,1,1,13,14,[[1091,1,1,13,14]]],[48,3,3,14,17,[[1097,2,2,14,16],[1099,1,1,16,17]]],[50,2,2,17,19,[[1108,2,2,17,19]]],[53,2,2,19,21,[[1124,2,2,19,21]]],[55,1,1,21,22,[[1131,1,1,21,22]]],[57,1,1,22,23,[[1138,1,1,22,23]]],[63,1,1,23,24,[[1165,1,1,23,24]]]],[23571,23587,25004,25826,26057,26934,27161,27337,27369,27485,27872,27932,28402,29064,29220,29226,29256,29511,29516,29803,29809,29929,30063,30664]]],["Who",[39,39,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[971,1,1,2,3]]],[41,2,2,3,5,[[981,1,1,3,4],[990,1,1,4,5]]],[43,10,10,5,15,[[1020,1,1,5,6],[1024,1,1,6,7],[1028,2,2,7,9],[1031,1,1,9,10],[1033,1,1,10,11],[1038,1,1,11,12],[1041,2,2,12,14],[1045,1,1,14,15]]],[44,3,3,15,18,[[1047,1,1,15,16],[1049,2,2,16,18]]],[45,1,1,18,19,[[1062,1,1,18,19]]],[46,2,2,19,21,[[1078,1,1,19,20],[1080,1,1,20,21]]],[49,2,2,21,23,[[1104,1,1,21,22],[1105,1,1,22,23]]],[50,3,3,23,26,[[1107,3,3,23,26]]],[53,1,1,26,27,[[1120,1,1,26,27]]],[55,1,1,27,28,[[1130,1,1,27,28]]],[57,5,5,28,33,[[1133,1,1,28,29],[1137,1,1,29,30],[1139,2,2,30,32],[1143,1,1,32,33]]],[59,5,5,33,38,[[1152,3,3,33,36],[1153,1,1,36,37],[1154,1,1,37,38]]],[65,1,1,38,39,[[1167,1,1,38,39]]]],[23585,24367,24867,25332,25718,26999,27162,27321,27330,27430,27507,27696,27775,27788,27909,27968,28040,28047,28371,28810,28847,29397,29442,29478,29480,29489,29720,29922,29966,30037,30080,30091,30205,30421,30422,30423,30446,30451,30699]]],["Whom",[15,15,[[43,7,7,0,7,[[1019,1,1,0,1],[1020,1,1,1,2],[1023,1,1,2,3],[1034,2,2,3,5],[1036,1,1,5,6],[1040,1,1,6,7]]],[44,1,1,7,8,[[1048,1,1,7,8]]],[48,1,1,8,9,[[1102,1,1,8,9]]],[50,2,2,9,11,[[1107,1,1,9,10],[1110,1,1,10,11]]],[56,2,2,11,13,[[1132,2,2,11,13]]],[59,2,2,13,15,[[1151,1,1,13,14],[1155,1,1,14,15]]]],[26973,27017,27107,27530,27546,27610,27763,28016,29359,29493,29550,29950,29951,30382,30474]]],["Whose",[8,8,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[44,2,2,2,4,[[1048,1,1,2,3],[1054,1,1,3,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]],[55,1,1,5,6,[[1129,1,1,5,6]]],[57,1,1,6,7,[[1144,1,1,6,7]]],[59,1,1,7,8,[[1153,1,1,7,8]]]],[23204,25042,28005,28160,29440,29903,30238,30427]]],["and",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[25194,27249]]],["another",[8,6,[[39,4,2,0,2,[[949,2,1,0,1],[953,2,1,1,2]]],[44,2,2,2,4,[[1054,1,1,2,3],[1059,1,1,3,4]]],[45,2,2,4,6,[[1068,1,1,4,5],[1072,1,1,5,6]]]],[23861,24023,28176,28285,28494,28621]]],["as",[2,2,[[43,1,1,0,1,[[1026,1,1,0,1]]],[65,1,1,1,2,[[1171,1,1,1,2]]]],[27233,30792]]],["at",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25499]]],["had",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27203]]],["hath",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28865]]],["he",[11,11,[[39,2,2,0,2,[[938,1,1,0,1],[946,1,1,1,2]]],[40,3,3,2,5,[[960,1,1,2,3],[965,2,2,3,5]]],[41,2,2,5,7,[[981,1,1,5,6],[986,1,1,6,7]]],[43,2,2,7,9,[[1029,1,1,7,8],[1030,1,1,8,9]]],[45,1,1,9,10,[[1068,1,1,9,10]]],[60,1,1,10,11,[[1156,1,1,10,11]]]],[23455,23761,24348,24576,24578,25351,25568,27341,27393,28524,30488]]],["it",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25509]]],["other",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[46,1,1,1,2,[[1079,1,1,1,2]]]],[25968,28840]]],["others",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30695]]],["same",[2,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]]],[25680,26529]]],["some",[4,3,[[39,2,1,0,1,[[941,2,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]]],[23547,27899,29847]]],["state",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29453]]],["such",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[43,1,1,1,2,[[1020,1,1,1,2]]]],[24001,27002]]],["that",[134,123,[[39,14,12,0,12,[[936,1,1,0,1],[938,2,1,1,2],[940,1,1,2,3],[941,1,1,3,4],[947,1,1,4,5],[948,3,2,5,7],[949,1,1,7,8],[952,3,3,8,11],[955,1,1,11,12]]],[40,8,6,12,18,[[963,1,1,12,13],[966,4,2,13,15],[969,1,1,15,16],[970,2,2,16,18]]],[41,24,20,18,38,[[973,1,1,18,19],[974,1,1,19,20],[977,1,1,20,21],[978,1,1,21,22],[979,1,1,22,23],[980,2,1,23,24],[982,1,1,24,25],[984,2,1,25,26],[986,1,1,26,27],[987,1,1,27,28],[990,1,1,28,29],[991,6,4,29,33],[993,2,2,33,35],[995,1,1,35,36],[996,2,2,36,38]]],[42,33,31,38,69,[[997,1,1,38,39],[999,4,3,39,42],[1000,6,5,42,47],[1001,2,2,47,49],[1002,5,5,49,54],[1003,2,2,54,56],[1004,1,1,56,57],[1005,1,1,57,58],[1006,1,1,58,59],[1008,1,1,59,60],[1009,1,1,60,61],[1010,2,2,61,63],[1011,2,2,63,65],[1012,2,2,65,67],[1013,1,1,67,68],[1016,1,1,68,69]]],[43,9,9,69,78,[[1018,2,2,69,71],[1024,2,2,71,73],[1036,1,1,73,74],[1038,2,2,74,76],[1040,1,1,76,77],[1041,1,1,77,78]]],[44,7,6,78,84,[[1047,1,1,78,79],[1050,1,1,79,80],[1051,2,1,80,81],[1052,1,1,81,82],[1053,2,2,82,84]]],[45,8,8,84,92,[[1063,1,1,84,85],[1065,1,1,85,86],[1067,2,2,86,88],[1071,2,2,88,90],[1075,1,1,90,91],[1076,1,1,91,92]]],[46,3,3,92,95,[[1078,1,1,92,93],[1082,1,1,93,94],[1089,1,1,94,95]]],[47,3,3,95,98,[[1091,2,2,95,97],[1093,1,1,97,98]]],[48,1,1,98,99,[[1099,1,1,98,99]]],[52,1,1,99,100,[[1116,1,1,99,100]]],[54,2,2,100,102,[[1126,1,1,100,101],[1128,1,1,101,102]]],[57,4,4,102,106,[[1134,1,1,102,103],[1140,2,2,103,105],[1142,1,1,105,106]]],[58,3,3,106,109,[[1146,1,1,106,107],[1149,2,2,107,109]]],[60,1,1,109,110,[[1157,1,1,109,110]]],[61,9,9,110,119,[[1160,1,1,110,111],[1161,1,1,111,112],[1162,4,4,112,116],[1163,3,3,116,119]]],[65,4,4,119,123,[[1169,1,1,119,120],[1183,2,2,120,122],[1185,1,1,122,123]]]],[23349,23443,23500,23551,23791,23814,23815,23841,23959,23995,24007,24162,24478,24626,24627,24719,24763,24826,24954,24993,25136,25184,25244,25262,25386,25461,25586,25604,25717,25752,25753,25757,25768,25830,25832,25964,26008,26016,26047,26122,26131,26146,26161,26170,26188,26201,26206,26230,26246,26271,26294,26308,26320,26321,26331,26364,26421,26464,26506,26628,26659,26678,26680,26714,26719,26743,26744,26771,26874,26924,26945,27132,27160,27620,27675,27687,27753,27790,27985,28059,28078,28110,28119,28141,28410,28440,28472,28485,28580,28597,28715,28727,28817,28887,29028,29065,29066,29112,29271,29653,29829,29883,29995,30101,30102,30149,30278,30342,30349,30512,30575,30590,30605,30606,30609,30619,30634,30638,30639,30748,30983,30986,31029]]],["the",[7,7,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,3,3,1,4,[[973,1,1,1,2],[989,2,2,2,4]]],[42,1,1,4,5,[[1002,1,1,4,5]]],[50,2,2,5,7,[[1107,2,2,5,7]]]],[23572,24913,25678,25681,26275,29471,29474]]],["they",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28324]]],["thing",[3,3,[[43,1,1,0,1,[[1043,1,1,0,1]]],[61,1,1,1,2,[[1160,1,1,1,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[27833,30558,30732]]],["things",[12,12,[[39,2,2,0,2,[[934,1,1,0,1],[939,1,1,1,2]]],[40,1,1,2,3,[[965,1,1,2,3]]],[41,2,2,3,5,[[979,1,1,3,4],[984,1,1,4,5]]],[42,1,1,5,6,[[1007,1,1,5,6]]],[43,3,3,6,9,[[1020,1,1,6,7],[1038,1,1,7,8],[1042,1,1,8,9]]],[44,1,1,9,10,[[1060,1,1,9,10]]],[45,1,1,10,11,[[1063,1,1,10,11]]],[59,1,1,11,12,[[1151,1,1,11,12]]]],[23290,23463,24547,25217,25479,26569,27014,27683,27814,28321,28407,30386]]],["this",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24067]]],["thou",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24913]]],["time",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25240]]],["to",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[25411,27156]]],["what",[32,29,[[39,4,3,0,3,[[935,2,1,0,1],[938,1,1,1,2],[948,1,1,2,3]]],[40,4,4,3,7,[[960,1,1,3,4],[961,1,1,4,5],[969,1,1,5,6],[970,1,1,6,7]]],[41,5,5,7,12,[[978,1,1,7,8],[980,1,1,8,9],[981,1,1,9,10],[984,1,1,10,11],[994,1,1,11,12]]],[42,4,3,12,15,[[999,1,1,12,13],[1000,2,1,13,14],[1014,1,1,14,15]]],[43,4,4,15,19,[[1025,1,1,15,16],[1031,1,1,16,17],[1039,1,1,17,18],[1045,1,1,18,19]]],[44,4,3,19,22,[[1049,1,1,19,20],[1052,2,1,20,21],[1053,1,1,21,22]]],[45,3,3,22,25,[[1068,1,1,22,23],[1071,1,1,23,24],[1076,1,1,24,25]]],[46,2,2,25,27,[[1078,1,1,25,26],[1088,1,1,26,27]]],[53,1,1,27,28,[[1119,1,1,27,28]]],[54,1,1,28,29,[[1126,1,1,28,29]]]],[23318,23444,23807,24347,24397,24754,24762,25149,25292,25334,25471,25924,26152,26178,26806,27206,27425,27719,27921,28043,28106,28140,28523,28582,28728,28813,29001,29703,29834]]],["whatsoever",[2,2,[[42,2,2,0,2,[[1008,1,1,0,1],[1010,1,1,1,2]]]],[26630,26694]]],["when",[3,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,2,1,1,2,[[984,2,1,1,2]]]],[24007,25505]]],["whence",[2,2,[[49,1,1,0,1,[[1105,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[29441,30187]]],["wherein",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]],[46,1,1,2,3,[[1089,1,1,2,3]]]],[24918,28507,29035]]],["whereof",[13,13,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,6,6,1,7,[[1019,1,1,1,2],[1020,1,1,2,3],[1038,1,1,3,4],[1041,1,1,4,5],[1042,1,1,5,6],[1043,1,1,6,7]]],[44,1,1,7,8,[[1051,1,1,7,8]]],[45,1,1,8,9,[[1068,1,1,8,9]]],[50,2,2,9,11,[[1107,2,2,9,11]]],[57,1,1,11,12,[[1144,1,1,11,12]]],[61,1,1,12,13,[[1162,1,1,12,13]]]],[25949,26981,27011,27688,27777,27807,27825,28089,28488,29470,29488,30220,30606]]],["whereon",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26194]]],["whereunto",[6,6,[[43,2,2,0,2,[[1030,1,1,0,1],[1044,1,1,1,2]]],[47,1,1,2,3,[[1094,1,1,2,3]]],[53,1,1,3,4,[[1122,1,1,3,4]]],[59,1,1,4,5,[[1153,1,1,4,5]]],[60,1,1,5,6,[[1156,1,1,5,6]]]],[27364,27863,29140,29753,30445,30498]]],["wherewith",[9,9,[[42,2,2,0,2,[[1009,1,1,0,1],[1013,1,1,1,2]]],[46,3,3,2,5,[[1078,1,1,2,3],[1084,1,1,3,4],[1087,1,1,4,5]]],[47,1,1,5,6,[[1095,1,1,5,6]]],[48,2,2,6,8,[[1098,1,1,6,7],[1100,1,1,7,8]]],[51,1,1,8,9,[[1113,1,1,8,9]]]],[26635,26785,28804,28923,28973,29163,29233,29273,29599]]],["which",[394,365,[[39,20,19,0,19,[[929,1,1,0,1],[930,2,2,1,3],[939,1,1,3,4],[940,2,2,4,6],[941,6,5,6,11],[943,1,1,11,12],[946,2,2,12,14],[949,2,2,14,16],[953,1,1,16,17],[955,2,2,17,19]]],[40,19,19,19,38,[[957,2,2,19,21],[958,2,2,21,23],[959,1,1,23,24],[960,3,3,24,27],[961,1,1,27,28],[963,2,2,28,30],[965,1,1,30,31],[967,2,2,31,33],[968,1,1,33,34],[969,1,1,34,35],[970,1,1,35,36],[971,2,2,36,38]]],[41,58,53,38,91,[[973,1,1,38,39],[974,4,4,39,43],[975,1,1,43,44],[977,6,6,44,50],[978,5,5,50,55],[979,1,1,55,56],[980,5,4,56,60],[981,4,4,60,64],[982,3,2,64,66],[983,1,1,66,67],[984,2,2,67,69],[985,5,4,69,73],[987,1,1,73,74],[988,2,2,74,76],[989,3,3,76,79],[991,2,2,79,81],[992,1,1,81,82],[993,3,2,82,84],[995,3,2,84,86],[996,5,5,86,91]]],[42,52,50,91,141,[[997,4,4,91,95],[998,2,2,95,97],[1000,3,3,97,100],[1001,3,3,100,103],[1002,6,6,103,109],[1003,2,2,109,111],[1004,4,3,111,114],[1005,1,1,114,115],[1006,3,3,115,118],[1007,1,1,118,119],[1008,1,1,119,120],[1010,1,1,120,121],[1011,3,3,121,124],[1013,7,7,124,131],[1014,7,6,131,137],[1015,1,1,137,138],[1016,1,1,138,139],[1017,2,2,139,141]]],[43,50,46,141,187,[[1018,5,5,141,146],[1019,2,2,146,148],[1020,2,2,148,150],[1021,1,1,150,151],[1023,2,2,151,153],[1024,5,5,153,158],[1025,3,3,158,161],[1026,2,1,161,162],[1027,4,4,162,166],[1028,1,1,166,167],[1030,3,3,167,170],[1031,2,2,170,172],[1032,2,2,172,174],[1033,1,1,174,175],[1034,2,2,175,177],[1037,4,3,177,180],[1039,1,1,180,181],[1041,2,2,181,183],[1042,1,1,183,184],[1043,4,2,184,186],[1044,1,1,186,187]]],[44,12,12,187,199,[[1046,1,1,187,188],[1048,1,1,188,189],[1051,1,1,189,190],[1052,3,3,190,193],[1054,1,1,193,194],[1055,1,1,194,195],[1056,2,2,195,197],[1059,1,1,197,198],[1061,1,1,198,199]]],[45,19,16,199,215,[[1063,2,2,199,201],[1064,2,2,201,203],[1065,1,1,203,204],[1067,1,1,204,205],[1071,3,2,205,207],[1072,2,1,207,208],[1073,1,1,208,209],[1076,7,6,209,215]]],[46,11,10,215,225,[[1078,1,1,215,216],[1079,1,1,216,217],[1086,1,1,217,218],[1087,2,2,218,220],[1088,2,1,220,221],[1089,2,2,221,223],[1090,2,2,223,225]]],[47,9,9,225,234,[[1091,2,2,225,227],[1092,5,5,227,232],[1093,1,1,232,233],[1095,1,1,233,234]]],[48,5,5,234,239,[[1097,1,1,234,235],[1098,1,1,235,236],[1099,1,1,236,237],[1100,1,1,237,238],[1102,1,1,238,239]]],[49,3,3,239,242,[[1104,1,1,239,240],[1105,1,1,240,241],[1106,1,1,241,242]]],[50,10,10,242,252,[[1107,2,2,242,244],[1108,4,4,244,248],[1109,2,2,248,250],[1110,2,2,250,252]]],[51,1,1,252,253,[[1112,1,1,252,253]]],[52,5,5,253,258,[[1116,1,1,253,254],[1117,1,1,254,255],[1118,3,3,255,258]]],[53,7,7,258,265,[[1119,3,3,258,261],[1120,1,1,261,262],[1122,2,2,262,264],[1124,1,1,264,265]]],[54,5,5,265,270,[[1125,3,3,265,268],[1127,1,1,268,269],[1128,1,1,269,270]]],[55,5,5,270,275,[[1129,3,3,270,273],[1130,1,1,273,274],[1131,1,1,274,275]]],[56,1,1,275,276,[[1132,1,1,275,276]]],[57,24,24,276,300,[[1134,2,2,276,278],[1137,1,1,278,279],[1138,2,2,279,281],[1139,3,3,281,284],[1140,1,1,284,285],[1141,4,4,285,289],[1142,4,4,289,293],[1143,4,4,293,297],[1144,2,2,297,299],[1145,1,1,299,300]]],[58,2,2,300,302,[[1146,1,1,300,301],[1147,1,1,301,302]]],[59,7,7,302,309,[[1151,2,2,302,304],[1152,2,2,304,306],[1153,2,2,306,308],[1154,1,1,308,309]]],[60,4,3,309,312,[[1158,4,3,309,312]]],[61,12,8,312,320,[[1159,6,3,312,315],[1160,4,3,315,318],[1161,1,1,318,319],[1163,1,1,319,320]]],[62,2,2,320,322,[[1164,2,2,320,322]]],[63,1,1,322,323,[[1165,1,1,322,323]]],[64,2,1,323,324,[[1166,2,1,323,324]]],[65,48,41,324,365,[[1167,8,4,324,328],[1168,6,6,328,334],[1169,3,3,334,337],[1170,3,2,337,339],[1171,3,3,339,342],[1172,1,1,342,343],[1173,1,1,343,344],[1174,1,1,344,345],[1175,3,2,345,347],[1176,3,3,347,350],[1178,1,1,350,351],[1179,4,3,351,354],[1180,1,1,354,355],[1182,1,1,355,356],[1183,4,4,356,360],[1184,1,1,360,361],[1185,1,1,361,362],[1186,1,1,362,363],[1187,1,1,363,364],[1188,1,1,364,365]]]],[23167,23178,23185,23469,23491,23493,23556,23562,23570,23572,23583,23646,23750,23755,23850,23868,24037,24185,24189,24217,24259,24284,24286,24307,24345,24348,24354,24405,24467,24476,24577,24661,24663,24683,24736,24786,24869,24872,24966,24984,24988,25010,25023,25044,25110,25116,25117,25124,25125,25128,25148,25150,25162,25163,25192,25222,25247,25258,25263,25272,25328,25332,25337,25344,25387,25402,25432,25462,25483,25532,25537,25539,25548,25597,25621,25640,25661,25663,25682,25751,25761,25796,25832,25841,25962,25964,25992,26001,26010,26014,26035,26053,26074,26082,26086,26117,26118,26168,26185,26209,26238,26242,26246,26259,26266,26270,26284,26296,26308,26359,26367,26407,26419,26421,26447,26487,26497,26510,26568,26618,26692,26702,26723,26725,26763,26764,26765,26767,26768,26781,26783,26786,26794,26796,26798,26801,26817,26842,26897,26908,26918,26925,26927,26930,26939,26948,26971,26982,27017,27021,27042,27111,27115,27133,27134,27136,27156,27159,27182,27200,27208,27252,27276,27295,27296,27298,27313,27384,27401,27403,27429,27440,27452,27471,27504,27554,27557,27650,27654,27664,27714,27783,27784,27803,27830,27839,27894,27957,28021,28085,28106,28107,28110,28178,28196,28211,28216,28302,28353,28401,28403,28421,28424,28439,28486,28583,28587,28623,28657,28719,28720,28721,28749,28754,28755,28806,28828,28958,28979,28984,28993,29026,29043,29046,29053,29077,29080,29083,29085,29091,29099,29101,29118,29183,29215,29239,29262,29287,29357,29396,29433,29451,29488,29492,29504,29508,29512,29513,29524,29532,29545,29559,29583,29654,29676,29682,29684,29695,29702,29707,29715,29726,29750,29761,29798,29815,29821,29822,29867,29878,29894,29895,29903,29909,29928,29943,29988,29990,30038,30054,30062,30077,30078,30083,30094,30110,30112,30114,30125,30134,30143,30153,30165,30176,30179,30180,30201,30226,30231,30250,30278,30298,30384,30386,30406,30407,30428,30443,30457,30523,30532,30538,30541,30543,30545,30557,30574,30577,30603,30633,30650,30653,30668,30687,30698,30701,30716,30717,30723,30724,30725,30727,30734,30742,30750,30757,30758,30769,30773,30785,30787,30792,30802,30819,30829,30854,30860,30865,30866,30869,30907,30910,30912,30922,30930,30968,30987,30990,30991,30993,30999,31037,31040,31065,31086]]],["who",[46,44,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,2,2,2,4,[[979,1,1,2,3],[995,1,1,3,4]]],[42,1,1,4,5,[[1005,1,1,4,5]]],[43,10,10,5,15,[[1018,1,1,5,6],[1022,1,1,6,7],[1024,1,1,7,8],[1025,1,1,8,9],[1027,2,2,9,11],[1031,2,2,11,13],[1035,1,1,13,14],[1045,1,1,14,15]]],[44,7,6,15,21,[[1046,1,1,15,16],[1049,1,1,16,17],[1050,1,1,17,18],[1053,2,1,18,19],[1061,2,2,19,21]]],[45,5,4,21,25,[[1062,1,1,21,22],[1065,3,2,22,24],[1071,1,1,24,25]]],[46,2,2,25,27,[[1081,1,1,25,26],[1087,1,1,26,27]]],[48,1,1,27,28,[[1101,1,1,27,28]]],[50,3,3,28,31,[[1107,2,2,28,30],[1110,1,1,30,31]]],[51,1,1,31,32,[[1115,1,1,31,32]]],[52,1,1,32,33,[[1118,1,1,32,33]]],[53,1,1,33,34,[[1122,1,1,33,34]]],[57,4,4,34,38,[[1140,1,1,34,35],[1141,1,1,35,36],[1144,2,2,36,38]]],[58,1,1,38,39,[[1150,1,1,38,39]]],[60,1,1,39,40,[[1157,1,1,39,40]]],[65,4,4,40,44,[[1168,2,2,40,42],[1176,1,1,42,43],[1178,1,1,43,44]]]],[24186,24339,25197,25986,26459,26946,27095,27154,27203,27291,27297,27422,27423,27584,27906,27955,28038,28061,28150,28341,28343,28393,28438,28450,28580,28863,28972,29309,29472,29483,29551,29645,29681,29757,30093,30119,30214,30228,30364,30515,30730,30731,30867,30896]]],["whom",[253,237,[[39,16,15,0,15,[[929,1,1,0,1],[931,1,1,1,2],[935,1,1,2,3],[939,1,1,3,4],[940,2,1,4,5],[945,1,1,5,6],[946,1,1,6,7],[947,1,1,7,8],[948,1,1,8,9],[951,1,1,9,10],[952,2,2,10,12],[954,1,1,12,13],[955,2,2,13,15]]],[40,10,10,15,25,[[957,1,1,15,16],[959,1,1,16,17],[962,1,1,17,18],[966,1,1,18,19],[969,1,1,19,20],[970,2,2,20,22],[971,2,2,22,24],[972,1,1,24,25]]],[41,21,21,25,46,[[978,3,3,25,28],[979,4,4,28,32],[980,3,3,32,35],[981,1,1,35,36],[984,4,4,36,40],[985,2,2,40,42],[989,1,1,42,43],[991,1,1,43,44],[994,1,1,44,45],[995,1,1,45,46]]],[42,35,35,46,81,[[997,5,5,46,51],[999,2,2,51,53],[1000,1,1,53,54],[1001,3,3,54,57],[1002,1,1,57,58],[1003,2,2,58,60],[1004,1,1,60,61],[1006,2,2,61,63],[1007,1,1,63,64],[1008,2,2,64,66],[1009,4,4,66,70],[1010,2,2,70,72],[1011,1,1,72,73],[1013,3,3,73,76],[1015,2,2,76,78],[1016,1,1,78,79],[1017,2,2,79,81]]],[43,56,55,81,136,[[1018,2,2,81,83],[1019,1,1,83,84],[1020,4,4,84,88],[1021,4,3,88,91],[1022,4,4,91,95],[1023,1,1,95,96],[1024,5,5,96,101],[1025,1,1,101,102],[1026,1,1,102,103],[1027,2,2,103,105],[1030,2,2,105,107],[1031,1,1,107,108],[1032,2,2,108,110],[1034,2,2,110,112],[1036,3,3,112,115],[1037,1,1,115,116],[1038,2,2,116,118],[1039,2,2,118,120],[1041,2,2,120,122],[1042,6,6,122,128],[1043,3,3,128,131],[1044,1,1,131,132],[1045,4,4,132,136]]],[44,25,20,136,156,[[1046,3,3,136,139],[1049,4,4,139,143],[1050,2,2,143,145],[1051,2,1,145,146],[1053,4,2,146,148],[1054,5,4,148,152],[1055,2,1,152,153],[1059,1,1,153,154],[1060,1,1,154,155],[1061,1,1,155,156]]],[45,9,8,156,164,[[1062,1,1,156,157],[1064,1,1,157,158],[1068,1,1,158,159],[1069,3,2,159,161],[1071,1,1,161,162],[1076,2,2,162,164]]],[46,9,8,164,172,[[1078,1,1,164,165],[1079,3,2,165,167],[1081,1,1,167,168],[1085,1,1,168,169],[1087,1,1,169,170],[1088,1,1,170,171],[1089,1,1,171,172]]],[47,5,5,172,177,[[1091,1,1,172,173],[1092,1,1,173,174],[1093,1,1,174,175],[1094,1,1,175,176],[1096,1,1,176,177]]],[48,10,9,177,186,[[1097,4,3,177,180],[1098,3,3,180,183],[1099,2,2,183,185],[1100,1,1,185,186]]],[49,3,3,186,189,[[1104,1,1,186,187],[1105,2,2,187,189]]],[50,5,5,189,194,[[1107,2,2,189,191],[1108,2,2,191,193],[1110,1,1,193,194]]],[51,1,1,194,195,[[1111,1,1,194,195]]],[52,1,1,195,196,[[1117,1,1,195,196]]],[53,5,3,196,199,[[1119,3,2,196,198],[1124,2,1,198,199]]],[54,6,6,199,205,[[1125,3,3,199,202],[1126,1,1,202,203],[1128,2,2,203,205]]],[56,1,1,205,206,[[1132,1,1,205,206]]],[57,17,14,206,220,[[1133,2,1,206,207],[1134,2,1,207,208],[1136,1,1,208,209],[1137,1,1,209,210],[1138,1,1,210,211],[1139,3,3,211,214],[1143,2,2,214,216],[1144,3,2,216,218],[1145,2,2,218,220]]],[58,1,1,220,221,[[1146,1,1,220,221]]],[59,4,4,221,225,[[1151,2,2,221,223],[1152,1,1,223,224],[1154,1,1,224,225]]],[60,4,4,225,229,[[1156,1,1,225,226],[1157,3,3,226,229]]],[61,2,1,229,230,[[1162,2,1,229,230]]],[62,1,1,230,231,[[1164,1,1,230,231]]],[63,2,2,231,233,[[1165,2,2,231,233]]],[64,1,1,233,234,[[1166,1,1,233,234]]],[65,3,3,234,237,[[1173,1,1,234,235],[1183,1,1,235,236],[1186,1,1,236,237]]]],[23160,23209,23325,23469,23507,23705,23734,23773,23815,23953,24002,24003,24078,24138,24144,24226,24301,24423,24628,24737,24775,24825,24838,24866,24882,25159,25160,25180,25199,25222,25238,25242,25247,25280,25283,25310,25496,25501,25502,25507,25522,25534,25652,25746,25886,25960,26059,26070,26074,26089,26091,26146,26154,26174,26231,26248,26255,26286,26353,26356,26435,26516,26517,26526,26581,26589,26648,26653,26654,26656,26685,26694,26725,26762,26770,26783,26851,26862,26869,26905,26918,26925,26926,26985,26998,27009,27011,27012,27032,27044,27049,27084,27089,27091,27095,27104,27123,27151,27155,27161,27168,27186,27221,27280,27298,27384,27399,27437,27459,27466,27526,27554,27598,27601,27612,27651,27680,27693,27709,27712,27775,27777,27811,27812,27814,27815,27820,27822,27838,27840,27849,27878,27903,27907,27914,27922,27935,27936,27939,28028,28030,28039,28046,28049,28058,28084,28145,28146,28159,28160,28173,28179,28202,28295,28324,28340,28372,28415,28526,28533,28538,28578,28724,28733,28810,28827,28834,28863,28954,28989,28993,29039,29062,29086,29121,29150,29202,29213,29217,29219,29232,29250,29251,29263,29266,29288,29406,29429,29439,29479,29492,29497,29505,29552,29570,29669,29711,29716,29804,29812,29821,29824,29844,29885,29888,29948,29965,29987,30027,30041,30051,30066,30068,30077,30190,30210,30218,30219,30262,30264,30283,30382,30386,30403,30457,30496,30502,30517,30519,30623,30646,30659,30664,30685,30812,30977,31046]]],["whose",[44,43,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,5,5,2,7,[[973,1,1,2,3],[974,1,1,3,4],[975,1,1,4,5],[985,1,1,5,6],[996,1,1,6,7]]],[42,6,6,7,13,[[997,1,1,7,8],[1000,1,1,8,9],[1002,1,1,9,10],[1006,1,1,10,11],[1007,1,1,11,12],[1014,1,1,12,13]]],[43,8,8,13,21,[[1027,3,3,13,16],[1030,2,2,16,18],[1033,1,1,18,19],[1035,1,1,19,20],[1044,1,1,20,21]]],[44,4,3,21,24,[[1047,1,1,21,22],[1048,1,1,22,23],[1049,2,1,23,24]]],[46,2,2,24,26,[[1085,1,1,24,25],[1088,1,1,25,26]]],[47,1,1,26,27,[[1093,1,1,26,27]]],[49,2,2,27,29,[[1105,1,1,27,28],[1106,1,1,28,29]]],[52,1,1,29,30,[[1117,1,1,29,30]]],[57,6,6,30,36,[[1135,2,2,30,32],[1138,1,1,32,33],[1143,1,1,33,34],[1145,2,2,34,36]]],[59,2,2,36,38,[[1152,1,1,36,37],[1153,1,1,37,38]]],[60,1,1,38,39,[[1157,1,1,38,39]]],[65,4,4,39,43,[[1179,2,2,39,41],[1183,1,1,41,42],[1186,1,1,42,43]]]],[23203,24488,24920,24998,25041,25519,26009,26071,26202,26299,26493,26525,26811,27264,27265,27291,27368,27387,27497,27564,27878,27991,27999,28029,28950,29004,29103,29440,29445,29670,30001,30012,30052,30182,30248,30252,30423,30430,30503,30916,30920,30983,31049]]]]},{"k":"G3740","v":[["as",[3,3,[[45,2,2,0,2,[[1072,2,2,0,2]]],[65,1,1,2,3,[[1177,1,1,2,3]]]],[28625,28626,30878]]]]},{"k":"G3741","v":[["*",[7,7,[[43,3,3,0,3,[[1019,1,1,0,1],[1030,2,2,1,3]]],[53,1,1,3,4,[[1120,1,1,3,4]]],[55,1,1,4,5,[[1129,1,1,4,5]]],[57,1,1,5,6,[[1139,1,1,5,6]]],[65,1,1,6,7,[[1181,1,1,6,7]]]],[26976,27396,27397,29724,29900,30090,30950]]],["One",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1030,1,1,1,2]]]],[26976,27397]]],["holy",[4,4,[[53,1,1,0,1,[[1120,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]],[57,1,1,2,3,[[1139,1,1,2,3]]],[65,1,1,3,4,[[1181,1,1,3,4]]]],[29724,29900,30090,30950]]],["mercies",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27396]]]]},{"k":"G3742","v":[["holiness",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[24968,29296]]]]},{"k":"G3743","v":[["holily",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29580]]]]},{"k":"G3744","v":[["*",[6,5,[[42,1,1,0,1,[[1008,1,1,0,1]]],[46,3,2,1,3,[[1079,3,2,1,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]],[49,1,1,4,5,[[1106,1,1,4,5]]]],[26583,28838,28840,29306,29460]]],["odour",[2,2,[[42,1,1,0,1,[[1008,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]]],[26583,29460]]],["savour",[4,3,[[46,3,2,0,2,[[1079,3,2,0,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]]],[28838,28840,29306]]]]},{"k":"G3745","v":[["*",[115,104,[[39,16,15,0,15,[[935,1,1,0,1],[937,1,1,1,2],[941,2,2,2,4],[942,1,1,4,5],[945,1,1,5,6],[946,3,2,6,8],[949,1,1,8,9],[950,2,2,9,11],[951,1,1,11,12],[953,2,2,12,14],[956,1,1,14,15]]],[40,15,14,15,29,[[958,1,1,15,16],[959,3,3,16,19],[961,2,2,19,21],[962,4,3,21,24],[963,1,1,24,25],[965,1,1,25,26],[966,1,1,26,27],[967,1,1,27,28],[968,1,1,28,29]]],[41,10,9,29,38,[[976,2,2,29,31],[980,2,1,31,32],[981,2,2,32,34],[983,1,1,34,35],[984,1,1,35,36],[990,2,2,36,38]]],[42,13,13,38,51,[[997,1,1,38,39],[1000,2,2,39,41],[1002,1,1,41,42],[1006,2,2,42,44],[1007,1,1,44,45],[1011,1,1,45,46],[1012,3,3,46,49],[1013,1,1,49,50],[1017,1,1,50,51]]],[43,17,17,51,68,[[1019,1,1,51,52],[1020,2,2,52,54],[1021,4,4,54,58],[1022,2,2,58,60],[1026,3,3,60,63],[1027,1,1,63,64],[1030,1,1,64,65],[1031,1,1,65,66],[1032,2,2,66,68]]],[44,8,7,68,75,[[1047,2,1,68,69],[1048,1,1,69,70],[1051,1,1,70,71],[1052,1,1,71,72],[1053,1,1,72,73],[1056,1,1,73,74],[1060,1,1,74,75]]],[45,1,1,75,76,[[1068,1,1,75,76]]],[46,1,1,76,77,[[1078,1,1,76,77]]],[47,5,5,77,82,[[1093,2,2,77,79],[1094,1,1,79,80],[1096,2,2,80,82]]],[49,7,2,82,84,[[1105,1,1,82,83],[1106,6,1,83,84]]],[50,1,1,84,85,[[1108,1,1,84,85]]],[53,1,1,85,86,[[1124,1,1,85,86]]],[54,1,1,86,87,[[1125,1,1,86,87]]],[57,9,8,87,95,[[1133,1,1,87,88],[1134,1,1,88,89],[1135,1,1,89,90],[1139,1,1,90,91],[1140,1,1,91,92],[1141,1,1,92,93],[1142,3,2,93,95]]],[60,1,1,95,96,[[1156,1,1,95,96]]],[64,2,1,96,97,[[1166,2,1,96,97]]],[65,7,7,97,104,[[1167,1,1,97,98],[1168,1,1,98,99],[1169,1,1,99,100],[1179,1,1,100,101],[1184,2,2,101,103],[1187,1,1,103,104]]]],[23328,23394,23583,23585,23633,23712,23745,23752,23848,23881,23882,23921,24048,24053,24215,24279,24296,24298,24316,24383,24384,24418,24437,24463,24499,24551,24609,24664,24717,25086,25103,25284,25306,25311,25413,25462,25700,25710,26056,26185,26195,26268,26489,26522,26545,26713,26739,26741,26749,26766,26923,26988,27018,27020,27028,27045,27050,27056,27095,27096,27229,27232,27255,27304,27410,27441,27446,27454,27974,28010,28071,28092,28130,28222,28307,28526,28820,29112,29129,29132,29200,29204,29436,29450,29495,29789,29827,29967,29992,29998,30084,30098,30132,30158,30170,30492,30682,30699,30741,30765,30923,31000,31010,31069]]],["+",[29,27,[[39,9,8,0,8,[[935,1,1,0,1],[937,1,1,1,2],[946,2,1,2,3],[949,1,1,3,4],[950,1,1,4,5],[951,1,1,5,6],[953,2,2,6,8]]],[40,4,4,8,12,[[959,1,1,8,9],[962,2,2,9,11],[967,1,1,11,12]]],[41,1,1,12,13,[[981,1,1,12,13]]],[42,2,2,13,15,[[1012,2,2,13,15]]],[43,2,2,15,17,[[1019,1,1,15,16],[1020,1,1,16,17]]],[44,2,2,17,19,[[1052,1,1,17,18],[1056,1,1,18,19]]],[45,1,1,19,20,[[1068,1,1,19,20]]],[57,5,4,20,24,[[1135,1,1,20,21],[1139,1,1,21,22],[1141,1,1,22,23],[1142,2,1,23,24]]],[60,1,1,24,25,[[1156,1,1,24,25]]],[65,2,2,25,27,[[1169,1,1,25,26],[1179,1,1,26,27]]]],[23328,23394,23745,23848,23881,23921,24048,24053,24316,24418,24463,24664,25306,26739,26749,26988,27018,28092,28222,28526,29998,30084,30132,30170,30492,30765,30923]]],["all",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28820]]],["as",[29,28,[[39,2,2,0,2,[[942,1,1,0,1],[950,1,1,1,2]]],[40,2,2,2,4,[[958,1,1,2,3],[959,1,1,3,4]]],[41,1,1,4,5,[[983,1,1,4,5]]],[42,2,2,5,7,[[997,1,1,5,6],[1002,1,1,6,7]]],[43,7,7,7,14,[[1020,1,1,7,8],[1021,2,2,8,10],[1022,2,2,10,12],[1027,1,1,12,13],[1030,1,1,13,14]]],[44,4,3,14,17,[[1047,2,1,14,15],[1051,1,1,15,16],[1053,1,1,16,17]]],[47,4,4,17,21,[[1093,1,1,17,18],[1094,1,1,18,19],[1096,2,2,19,21]]],[49,1,1,21,22,[[1105,1,1,21,22]]],[50,1,1,22,23,[[1108,1,1,22,23]]],[57,2,2,23,25,[[1133,1,1,23,24],[1142,1,1,24,25]]],[65,3,3,25,28,[[1168,1,1,25,26],[1184,1,1,26,27],[1187,1,1,27,28]]]],[23633,23882,24279,24298,25413,26056,26268,27020,27028,27056,27095,27096,27304,27410,27974,28071,28130,29112,29132,29200,29204,29436,29495,29967,30158,30741,31010,31069]]],["ever",[2,2,[[42,2,2,0,2,[[1000,2,2,0,2]]]],[26185,26195]]],["he",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23752]]],["many",[2,2,[[47,1,1,0,1,[[1093,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[29129,29789]]],["more",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24499]]],["much",[3,3,[[43,1,1,0,1,[[1026,1,1,0,1]]],[57,1,1,1,2,[[1140,1,1,1,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[27229,30098,31000]]],["soever",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28010]]],["that",[13,13,[[39,2,2,0,2,[[941,2,2,0,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,3,3,3,6,[[981,1,1,3,4],[990,2,2,4,6]]],[42,3,3,6,9,[[1006,2,2,6,8],[1012,1,1,8,9]]],[43,3,3,9,12,[[1021,1,1,9,10],[1031,1,1,10,11],[1032,1,1,11,12]]],[65,1,1,12,13,[[1167,1,1,12,13]]]],[23583,23585,24717,25311,25700,25710,26489,26522,26741,27045,27441,27446,30699]]],["they",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25103]]],["things",[15,9,[[40,3,3,0,3,[[959,1,1,0,1],[961,2,2,1,3]]],[41,2,1,3,4,[[980,2,1,3,4]]],[43,1,1,4,5,[[1026,1,1,4,5]]],[44,1,1,5,6,[[1060,1,1,5,6]]],[49,6,1,6,7,[[1106,6,1,6,7]]],[54,1,1,7,8,[[1125,1,1,7,8]]],[64,1,1,8,9,[[1166,1,1,8,9]]]],[24296,24383,24384,25284,27232,28307,29450,29827,30682]]],["what",[4,3,[[40,2,1,0,1,[[962,2,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[24437,27454,30682]]],["whatsoever",[10,10,[[39,2,2,0,2,[[945,1,1,0,1],[956,1,1,1,2]]],[40,2,2,2,4,[[965,1,1,2,3],[966,1,1,3,4]]],[41,2,2,4,6,[[976,1,1,4,5],[984,1,1,5,6]]],[42,3,3,6,9,[[1007,1,1,6,7],[1011,1,1,7,8],[1013,1,1,8,9]]],[43,1,1,9,10,[[1021,1,1,9,10]]]],[23712,24215,24551,24609,25086,25462,26545,26713,26766,27050]]],["which",[2,2,[[42,1,1,0,1,[[1017,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[26923,27255]]],["who",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29992]]]]},{"k":"G3746","v":[["whomsoever",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24832]]]]},{"k":"G3747","v":[["*",[5,5,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]],[57,1,1,4,5,[[1143,1,1,4,5]]]],[23945,26030,26861,29334,30194]]],["bone",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26861]]],["bones",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[23945,26030,29334,30194]]]]},{"k":"G3748","v":[["*",[153,147,[[39,30,25,0,25,[[930,1,1,0,1],[933,2,2,1,3],[935,4,3,3,6],[938,2,2,6,8],[940,1,1,8,9],[941,3,2,9,11],[944,1,1,11,12],[946,2,2,12,14],[947,3,1,14,15],[948,1,1,15,16],[949,2,2,16,18],[950,1,1,18,19],[951,3,2,19,21],[953,2,2,21,23],[955,2,2,23,25]]],[40,5,5,25,30,[[960,1,1,25,26],[964,1,1,26,27],[965,1,1,27,28],[968,1,1,28,29],[971,1,1,29,30]]],[41,17,17,30,47,[[973,1,1,30,31],[974,2,2,31,33],[979,2,2,33,35],[980,4,4,35,39],[981,1,1,39,40],[982,2,2,40,42],[984,1,1,42,43],[986,1,1,43,44],[987,1,1,44,45],[995,2,2,45,47]]],[42,6,6,47,53,[[998,1,1,47,48],[1004,2,2,48,50],[1010,1,1,50,51],[1011,1,1,51,52],[1017,1,1,52,53]]],[43,23,23,53,76,[[1020,1,1,53,54],[1022,1,1,54,55],[1024,1,1,55,56],[1025,1,1,56,57],[1026,1,1,57,58],[1027,2,2,58,60],[1028,2,2,60,62],[1029,1,1,62,63],[1030,2,2,63,65],[1033,3,3,65,68],[1034,2,2,68,70],[1038,1,1,70,71],[1040,3,3,71,74],[1041,1,1,74,75],[1045,1,1,75,76]]],[44,10,10,76,86,[[1046,2,2,76,78],[1047,1,1,78,79],[1051,1,1,79,80],[1054,1,1,80,81],[1056,1,1,81,82],[1061,4,4,82,86]]],[45,5,5,86,91,[[1064,1,1,86,87],[1066,1,1,87,88],[1067,1,1,88,89],[1068,1,1,89,90],[1077,1,1,90,91]]],[46,3,3,91,94,[[1080,1,1,91,92],[1085,1,1,92,93],[1086,1,1,93,94]]],[47,7,6,94,100,[[1092,1,1,94,95],[1094,3,2,95,97],[1095,3,3,97,100]]],[48,4,4,100,104,[[1097,1,1,100,101],[1099,1,1,101,102],[1100,1,1,102,103],[1102,1,1,103,104]]],[49,4,4,104,108,[[1103,1,1,104,105],[1104,1,1,105,106],[1105,1,1,106,107],[1106,1,1,107,108]]],[50,6,6,108,114,[[1108,1,1,108,109],[1109,4,4,109,113],[1110,1,1,113,114]]],[52,1,1,114,115,[[1116,1,1,114,115]]],[53,3,3,115,118,[[1119,1,1,115,116],[1121,1,1,116,117],[1124,1,1,117,118]]],[54,3,3,118,121,[[1125,1,1,118,119],[1126,2,2,119,121]]],[55,1,1,121,122,[[1129,1,1,121,122]]],[57,10,10,122,132,[[1134,1,1,122,123],[1140,2,2,123,125],[1141,2,2,125,127],[1142,3,3,127,130],[1144,1,1,130,131],[1145,1,1,131,132]]],[58,2,2,132,134,[[1147,1,1,132,133],[1149,1,1,133,134]]],[59,1,1,134,135,[[1152,1,1,134,135]]],[60,1,1,135,136,[[1157,1,1,135,136]]],[61,1,1,136,137,[[1159,1,1,136,137]]],[65,10,10,137,147,[[1167,2,2,137,139],[1168,1,1,139,140],[1175,1,1,140,141],[1177,1,1,141,142],[1178,1,1,142,143],[1183,2,2,143,145],[1185,1,1,145,146],[1186,1,1,146,147]]]],[23175,23273,23275,23331,23340,23342,23449,23450,23539,23551,23591,23700,23731,23755,23774,23793,23859,23867,23874,23930,23945,24009,24011,24184,24191,24343,24534,24539,24691,24833,24913,24977,24983,25232,25234,25248,25260,25271,25288,25331,25398,25405,25460,25580,25595,25954,25990,26100,26406,26434,26681,26715,26923,27019,27075,27169,27191,27251,27300,27306,27327,27335,27347,27393,27405,27495,27499,27500,27533,27534,27668,27748,27755,27767,27770,27917,27955,27962,27977,28070,28159,28213,28340,28342,28343,28348,28427,28455,28487,28500,28778,28855,28942,28967,29085,29155,29157,29166,29172,29181,29229,29264,29291,29339,29389,29411,29428,29445,29517,29522,29531,29534,29540,29553,29658,29700,29746,29797,29814,29829,29845,29903,29980,30097,30098,30107,30114,30141,30144,30168,30217,30248,30303,30351,30410,30501,30542,30704,30709,30741,30844,30880,30904,30983,30987,31019,31042]]],["+",[12,12,[[39,3,3,0,3,[[935,1,1,0,1],[938,2,2,1,3]]],[41,1,1,3,4,[[982,1,1,3,4]]],[42,3,3,4,7,[[998,1,1,4,5],[1010,1,1,5,6],[1011,1,1,6,7]]],[43,1,1,7,8,[[1028,1,1,7,8]]],[45,1,1,8,9,[[1077,1,1,8,9]]],[47,1,1,9,10,[[1095,1,1,9,10]]],[50,2,2,10,12,[[1109,2,2,10,12]]]],[23340,23449,23450,25398,26100,26681,26715,27335,28778,29172,29534,29540]]],["Whereas",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30351]]],["Which",[3,3,[[44,1,1,0,1,[[1047,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[27977,29229,30114]]],["Who",[13,13,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,4,4,1,5,[[1024,1,1,1,2],[1025,1,1,2,3],[1040,1,1,3,4],[1045,1,1,4,5]]],[44,4,4,5,9,[[1046,2,2,5,7],[1054,1,1,7,8],[1061,1,1,8,9]]],[48,1,1,9,10,[[1100,1,1,9,10]]],[52,1,1,10,11,[[1116,1,1,10,11]]],[54,1,1,11,12,[[1126,1,1,11,12]]],[57,1,1,12,13,[[1140,1,1,12,13]]]],[25954,27169,27191,27767,27917,27955,27962,28159,28340,29291,29658,29845,30097]]],["Whosoever",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]]],[23731,24534]]],["and",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27251]]],["as",[2,2,[[40,1,1,0,1,[[960,1,1,0,1]]],[45,1,1,1,2,[[1066,1,1,1,2]]]],[24343,28455]]],["he",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23930]]],["that",[9,9,[[39,4,4,0,4,[[930,1,1,0,1],[946,1,1,1,2],[953,1,1,2,3],[955,1,1,3,4]]],[41,1,1,4,5,[[979,1,1,4,5]]],[42,1,1,5,6,[[1004,1,1,5,6]]],[44,1,1,6,7,[[1051,1,1,6,7]]],[65,2,2,7,9,[[1167,1,1,7,8],[1183,1,1,8,9]]]],[23175,23755,24011,24191,25234,26406,28070,30709,30983]]],["they",[4,4,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,3,3,1,4,[[1022,1,1,1,2],[1034,1,1,2,3],[1040,1,1,3,4]]]],[25260,27075,27534,27748]]],["things",[3,3,[[47,1,1,0,1,[[1094,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]]],[29155,29428,29517]]],["which",[76,74,[[39,15,13,0,13,[[935,3,3,0,3],[941,1,1,3,4],[944,1,1,4,5],[947,3,1,5,6],[948,1,1,6,7],[949,2,2,7,9],[950,1,1,9,10],[951,1,1,10,11],[953,1,1,11,12],[955,1,1,12,13]]],[40,2,2,13,15,[[965,1,1,13,14],[968,1,1,14,15]]],[41,12,12,15,27,[[973,1,1,15,16],[974,2,2,16,18],[979,1,1,18,19],[980,3,3,19,22],[981,1,1,22,23],[982,1,1,23,24],[984,1,1,24,25],[987,1,1,25,26],[995,1,1,26,27]]],[42,2,2,27,29,[[1004,1,1,27,28],[1017,1,1,28,29]]],[43,8,8,29,37,[[1020,1,1,29,30],[1027,1,1,30,31],[1028,1,1,31,32],[1029,1,1,32,33],[1033,3,3,33,36],[1040,1,1,36,37]]],[44,1,1,37,38,[[1061,1,1,37,38]]],[45,3,3,38,41,[[1064,1,1,38,39],[1067,1,1,39,40],[1068,1,1,40,41]]],[46,2,2,41,43,[[1080,1,1,41,42],[1086,1,1,42,43]]],[47,3,3,43,46,[[1094,2,2,43,45],[1095,1,1,45,46]]],[48,2,2,46,48,[[1099,1,1,46,47],[1102,1,1,47,48]]],[49,2,2,48,50,[[1103,1,1,48,49],[1106,1,1,49,50]]],[50,3,3,50,53,[[1109,2,2,50,52],[1110,1,1,52,53]]],[53,3,3,53,56,[[1119,1,1,53,54],[1121,1,1,54,55],[1124,1,1,55,56]]],[54,1,1,56,57,[[1125,1,1,56,57]]],[57,7,7,57,64,[[1134,1,1,57,58],[1140,1,1,58,59],[1141,1,1,59,60],[1142,3,3,60,63],[1144,1,1,63,64]]],[59,1,1,64,65,[[1152,1,1,64,65]]],[61,1,1,65,66,[[1159,1,1,65,66]]],[65,8,8,66,74,[[1167,1,1,66,67],[1168,1,1,67,68],[1175,1,1,68,69],[1177,1,1,69,70],[1178,1,1,70,71],[1183,1,1,71,72],[1185,1,1,72,73],[1186,1,1,73,74]]]],[23331,23340,23342,23591,23700,23774,23793,23859,23867,23874,23945,24009,24184,24539,24691,24913,24977,24983,25232,25248,25271,25288,25331,25405,25460,25595,25990,26434,26923,27019,27306,27327,27347,27495,27499,27500,27755,28348,28427,28487,28500,28855,28967,29155,29157,29181,29264,29339,29389,29445,29522,29531,29553,29700,29746,29797,29814,29980,30098,30107,30141,30144,30168,30217,30410,30542,30704,30741,30844,30880,30904,30987,31019,31042]]],["who",[17,17,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,6,6,1,7,[[1027,1,1,1,2],[1030,2,2,2,4],[1034,1,1,4,5],[1038,1,1,5,6],[1041,1,1,6,7]]],[44,3,3,7,10,[[1056,1,1,7,8],[1061,2,2,8,10]]],[46,1,1,10,11,[[1085,1,1,10,11]]],[47,1,1,11,12,[[1092,1,1,11,12]]],[49,1,1,12,13,[[1104,1,1,12,13]]],[54,1,1,13,14,[[1126,1,1,13,14]]],[55,1,1,14,15,[[1129,1,1,14,15]]],[57,1,1,15,16,[[1145,1,1,15,16]]],[60,1,1,16,17,[[1157,1,1,16,17]]]],[24833,27300,27393,27405,27533,27668,27770,28213,28342,28343,28942,29085,29411,29829,29903,30248,30501]]],["whosoever",[9,8,[[39,6,5,0,5,[[933,2,2,0,2],[940,1,1,2,3],[941,2,1,3,4],[951,1,1,4,5]]],[41,1,1,5,6,[[986,1,1,5,6]]],[47,1,1,6,7,[[1095,1,1,6,7]]],[58,1,1,7,8,[[1147,1,1,7,8]]]],[23273,23275,23539,23551,23930,25580,29166,30303]]]]},{"k":"G3749","v":[["*",[2,2,[[46,1,1,0,1,[[1081,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[28866,29847]]],["earth",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29847]]],["earthen",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28866]]]]},{"k":"G3750","v":[["smelling",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28651]]]]},{"k":"G3751","v":[["loins",[8,8,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[43,1,1,3,4,[[1019,1,1,3,4]]],[48,1,1,4,5,[[1102,1,1,4,5]]],[57,2,2,5,7,[[1139,2,2,5,7]]],[59,1,1,7,8,[[1151,1,1,7,8]]]],[23196,24221,25494,26979,29351,30069,30074,30387]]]]},{"k":"G3752","v":[["*",[124,120,[[39,20,20,0,20,[[933,1,1,0,1],[934,4,4,1,5],[937,1,1,5,6],[938,2,2,6,8],[940,1,1,8,9],[941,1,1,9,10],[943,1,1,10,11],[944,1,1,11,12],[947,1,1,12,13],[949,1,1,13,14],[951,1,1,14,15],[952,3,3,15,18],[953,1,1,18,19],[954,1,1,19,20]]],[40,20,20,20,40,[[958,1,1,20,21],[959,1,1,21,22],[960,5,5,22,27],[964,1,1,27,28],[965,1,1,28,29],[967,1,1,29,30],[968,2,2,30,32],[969,6,6,32,38],[970,2,2,38,40]]],[41,29,27,40,67,[[977,1,1,40,41],[978,3,2,41,43],[980,1,1,43,44],[981,1,1,44,45],[983,5,5,45,50],[984,3,3,50,53],[985,1,1,53,54],[986,5,4,54,58],[988,2,2,58,60],[989,1,1,60,61],[993,5,5,61,66],[995,1,1,66,67]]],[42,18,17,67,84,[[998,1,1,67,68],[1000,1,1,68,69],[1001,1,1,69,70],[1003,2,2,70,72],[1004,2,2,72,74],[1005,1,1,74,75],[1006,1,1,75,76],[1009,1,1,76,77],[1010,1,1,77,78],[1011,1,1,78,79],[1012,4,3,79,82],[1014,1,1,82,83],[1017,1,1,83,84]]],[43,2,2,84,86,[[1040,1,1,84,85],[1041,1,1,85,86]]],[44,2,2,86,88,[[1047,1,1,86,87],[1056,1,1,87,88]]],[45,12,11,88,99,[[1064,1,1,88,89],[1074,1,1,89,90],[1075,1,1,90,91],[1076,5,4,91,95],[1077,4,4,95,99]]],[46,3,3,99,102,[[1087,1,1,99,100],[1089,1,1,100,101],[1090,1,1,101,102]]],[50,2,2,102,104,[[1109,1,1,102,103],[1110,1,1,103,104]]],[51,1,1,104,105,[[1115,1,1,104,105]]],[52,1,1,105,106,[[1116,1,1,105,106]]],[53,1,1,106,107,[[1123,1,1,106,107]]],[55,1,1,107,108,[[1131,1,1,107,108]]],[57,1,1,108,109,[[1133,1,1,108,109]]],[58,1,1,109,110,[[1146,1,1,109,110]]],[61,2,2,110,112,[[1160,1,1,110,111],[1163,1,1,111,112]]],[65,8,8,112,120,[[1170,1,1,112,113],[1175,1,1,113,114],[1176,1,1,114,115],[1177,1,1,115,116],[1178,1,1,116,117],[1183,1,1,117,118],[1184,1,1,118,119],[1186,1,1,119,120]]]],[23245,23284,23287,23288,23298,23394,23436,23440,23532,23571,23635,23692,23790,23866,23933,23972,23989,23990,24039,24083,24280,24299,24338,24339,24352,24354,24355,24538,24547,24665,24696,24698,24721,24724,24728,24731,24745,24746,24761,24779,25142,25168,25172,25258,25327,25407,25426,25429,25439,25441,25470,25513,25514,25546,25561,25563,25565,25566,25624,25629,25661,25833,25835,25846,25856,25857,25977,26105,26181,26217,26355,26359,26409,26425,26445,26485,26649,26697,26725,26730,26739,26747,26805,26916,27769,27791,27976,28236,28414,28675,28704,28742,28745,28746,28772,28778,28779,28781,28788,28977,29032,29052,29521,29558,29624,29659,29774,29935,29969,30268,30578,30626,30777,30845,30868,30879,30895,30985,31002,31045]]],["+",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24547]]],["When",[20,20,[[39,5,5,0,5,[[940,1,1,0,1],[949,1,1,1,2],[952,2,2,2,4],[953,1,1,4,5]]],[40,1,1,5,6,[[969,1,1,5,6]]],[41,7,7,6,13,[[983,3,3,6,9],[984,1,1,9,10],[986,2,2,10,12],[993,1,1,12,13]]],[42,3,3,13,16,[[1003,1,1,13,14],[1004,2,2,14,16]]],[43,1,1,16,17,[[1041,1,1,16,17]]],[50,1,1,17,18,[[1109,1,1,17,18]]],[52,1,1,18,19,[[1116,1,1,18,19]]],[55,1,1,19,20,[[1131,1,1,19,20]]]],[23532,23866,23972,23989,24039,24745,25407,25426,25429,25513,25561,25565,25856,26359,26409,26425,27791,29521,29659,29935]]],["as",[3,3,[[42,2,2,0,2,[[1005,1,1,0,1],[1012,1,1,1,2]]],[65,1,1,2,3,[[1178,1,1,2,3]]]],[26445,26747,30895]]],["nothing",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26805]]],["that",[2,2,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[23692,24779]]],["when",[95,92,[[39,14,14,0,14,[[933,1,1,0,1],[934,4,4,1,5],[937,1,1,5,6],[938,2,2,6,8],[941,1,1,8,9],[943,1,1,9,10],[947,1,1,10,11],[951,1,1,11,12],[952,1,1,12,13],[954,1,1,13,14]]],[40,16,16,14,30,[[958,1,1,14,15],[959,1,1,15,16],[960,5,5,16,21],[964,1,1,21,22],[967,1,1,22,23],[968,2,2,23,25],[969,5,5,25,30]]],[41,22,20,30,50,[[977,1,1,30,31],[978,3,2,31,33],[980,1,1,33,34],[981,1,1,34,35],[983,2,2,35,37],[984,2,2,37,39],[985,1,1,39,40],[986,3,2,40,42],[988,2,2,42,44],[989,1,1,44,45],[993,4,4,45,49],[995,1,1,49,50]]],[42,12,12,50,62,[[998,1,1,50,51],[1000,1,1,51,52],[1001,1,1,52,53],[1003,1,1,53,54],[1006,1,1,54,55],[1009,1,1,55,56],[1010,1,1,56,57],[1011,1,1,57,58],[1012,3,3,58,61],[1017,1,1,61,62]]],[43,1,1,62,63,[[1040,1,1,62,63]]],[44,2,2,63,65,[[1047,1,1,63,64],[1056,1,1,64,65]]],[45,11,10,65,75,[[1074,1,1,65,66],[1075,1,1,66,67],[1076,5,4,67,71],[1077,4,4,71,75]]],[46,3,3,75,78,[[1087,1,1,75,76],[1089,1,1,76,77],[1090,1,1,77,78]]],[50,1,1,78,79,[[1110,1,1,78,79]]],[51,1,1,79,80,[[1115,1,1,79,80]]],[53,1,1,80,81,[[1123,1,1,80,81]]],[57,1,1,81,82,[[1133,1,1,81,82]]],[58,1,1,82,83,[[1146,1,1,82,83]]],[61,2,2,83,85,[[1160,1,1,83,84],[1163,1,1,84,85]]],[65,7,7,85,92,[[1170,1,1,85,86],[1175,1,1,86,87],[1176,1,1,87,88],[1177,1,1,88,89],[1183,1,1,89,90],[1184,1,1,90,91],[1186,1,1,91,92]]]],[23245,23284,23287,23288,23298,23394,23436,23440,23571,23635,23790,23933,23990,24083,24280,24299,24338,24339,24352,24354,24355,24538,24665,24696,24698,24721,24724,24728,24731,24746,25142,25168,25172,25258,25327,25439,25441,25470,25514,25546,25563,25566,25624,25629,25661,25833,25835,25846,25857,25977,26105,26181,26217,26355,26485,26649,26697,26725,26730,26739,26747,26916,27769,27976,28236,28675,28704,28742,28745,28746,28772,28778,28779,28781,28788,28977,29032,29052,29558,29624,29774,29969,30268,30578,30626,30777,30845,30868,30879,30985,31002,31045]]],["whensoever",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24761]]],["while",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28414]]]]},{"k":"G3753","v":[["*",[105,104,[[39,13,13,0,13,[[935,1,1,0,1],[937,1,1,1,2],[939,1,1,2,3],[940,1,1,3,4],[941,3,3,4,7],[945,1,1,7,8],[947,1,1,8,9],[949,2,2,9,11],[954,1,1,11,12],[955,1,1,12,13]]],[40,12,12,13,25,[[957,1,1,13,14],[958,1,1,14,15],[960,1,1,15,16],[962,1,1,16,17],[963,1,1,17,18],[964,2,2,18,20],[967,2,2,20,22],[970,1,1,22,23],[971,2,2,23,25]]],[41,11,11,25,36,[[974,3,3,25,28],[976,1,1,28,29],[978,1,1,29,30],[985,1,1,30,31],[987,1,1,31,32],[989,1,1,32,33],[994,2,2,33,35],[995,1,1,35,36]]],[42,23,23,36,59,[[997,1,1,36,37],[998,1,1,37,38],[1000,3,3,38,41],[1001,1,1,41,42],[1002,1,1,42,43],[1005,2,2,43,45],[1008,3,3,45,48],[1009,2,2,48,50],[1012,1,1,50,51],[1013,1,1,51,52],[1015,4,4,52,56],[1016,1,1,56,57],[1017,2,2,57,59]]],[43,10,10,59,69,[[1018,1,1,59,60],[1025,2,2,60,62],[1028,1,1,62,63],[1029,1,1,63,64],[1038,2,2,64,66],[1039,1,1,66,67],[1044,1,1,67,68],[1045,1,1,68,69]]],[44,4,4,69,73,[[1047,1,1,69,70],[1051,1,1,70,71],[1052,1,1,71,72],[1058,1,1,72,73]]],[45,2,1,73,74,[[1074,2,1,73,74]]],[47,6,6,74,80,[[1091,1,1,74,75],[1092,3,3,75,78],[1094,2,2,78,80]]],[49,1,1,80,81,[[1106,1,1,80,81]]],[50,1,1,81,82,[[1109,1,1,81,82]]],[51,1,1,82,83,[[1113,1,1,82,83]]],[52,1,1,83,84,[[1118,1,1,83,84]]],[54,1,1,84,85,[[1128,1,1,84,85]]],[55,1,1,85,86,[[1131,1,1,85,86]]],[57,2,2,86,88,[[1139,1,1,86,87],[1141,1,1,87,88]]],[59,1,1,88,89,[[1153,1,1,88,89]]],[64,1,1,89,90,[[1166,1,1,89,90]]],[65,14,14,90,104,[[1167,1,1,90,91],[1171,1,1,91,92],[1172,6,6,92,98],[1174,1,1,98,99],[1176,3,3,99,102],[1178,1,1,102,103],[1188,1,1,103,104]]]],[23344,23404,23460,23492,23565,23587,23592,23725,23763,23827,23860,24055,24160,24247,24285,24333,24428,24480,24519,24520,24641,24659,24766,24846,24867,24994,24995,25015,25088,25159,25553,25618,25673,25878,25899,25968,26063,26117,26177,26179,26201,26235,26281,26444,26454,26596,26597,26621,26642,26661,26751,26771,26831,26833,26848,26855,26891,26913,26916,26936,27188,27215,27309,27343,27669,27699,27724,27894,27915,27978,28088,28096,28277,28676,29072,29092,29093,29095,29134,29135,29457,29524,29594,29688,29873,29927,30074,30122,30444,30681,30714,30787,30794,30796,30798,30800,30802,30805,30828,30864,30865,30871,30904,31088]]],["Therefore",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26661]]],["When",[9,9,[[40,1,1,0,1,[[964,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[42,6,6,2,8,[[998,1,1,2,3],[1002,1,1,3,4],[1015,3,3,4,7],[1017,1,1,7,8]]],[45,1,1,8,9,[[1074,1,1,8,9]]]],[24519,25899,26117,26281,26831,26833,26855,26916,28676]]],["While",[1,1,[[42,1,1,0,1,[[1013,1,1,0,1]]]],[26771]]],["after",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,1,1,1,2,[[1009,1,1,1,2]]],[55,1,1,2,3,[[1131,1,1,2,3]]]],[24160,26642,29927]]],["as",[2,2,[[41,1,1,0,1,[[987,1,1,0,1]]],[65,1,1,1,2,[[1176,1,1,1,2]]]],[25618,30871]]],["that",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24428]]],["when",[87,87,[[39,12,12,0,12,[[935,1,1,0,1],[937,1,1,1,2],[939,1,1,2,3],[940,1,1,3,4],[941,3,3,4,7],[945,1,1,7,8],[947,1,1,8,9],[949,2,2,9,11],[954,1,1,11,12]]],[40,10,10,12,22,[[957,1,1,12,13],[958,1,1,13,14],[960,1,1,14,15],[963,1,1,15,16],[964,1,1,16,17],[967,2,2,17,19],[970,1,1,19,20],[971,2,2,20,22]]],[41,9,9,22,31,[[974,3,3,22,25],[976,1,1,25,26],[978,1,1,26,27],[985,1,1,27,28],[989,1,1,28,29],[994,1,1,29,30],[995,1,1,30,31]]],[42,14,14,31,45,[[997,1,1,31,32],[1000,3,3,32,35],[1001,1,1,35,36],[1005,2,2,36,38],[1008,3,3,38,41],[1012,1,1,41,42],[1015,1,1,42,43],[1016,1,1,43,44],[1017,1,1,44,45]]],[43,10,10,45,55,[[1018,1,1,45,46],[1025,2,2,46,48],[1028,1,1,48,49],[1029,1,1,49,50],[1038,2,2,50,52],[1039,1,1,52,53],[1044,1,1,53,54],[1045,1,1,54,55]]],[44,4,4,55,59,[[1047,1,1,55,56],[1051,1,1,56,57],[1052,1,1,57,58],[1058,1,1,58,59]]],[45,1,1,59,60,[[1074,1,1,59,60]]],[47,6,6,60,66,[[1091,1,1,60,61],[1092,3,3,61,64],[1094,2,2,64,66]]],[49,1,1,66,67,[[1106,1,1,66,67]]],[50,1,1,67,68,[[1109,1,1,67,68]]],[51,1,1,68,69,[[1113,1,1,68,69]]],[52,1,1,69,70,[[1118,1,1,69,70]]],[54,1,1,70,71,[[1128,1,1,70,71]]],[57,1,1,71,72,[[1139,1,1,71,72]]],[59,1,1,72,73,[[1153,1,1,72,73]]],[64,1,1,73,74,[[1166,1,1,73,74]]],[65,13,13,74,87,[[1167,1,1,74,75],[1171,1,1,75,76],[1172,6,6,76,82],[1174,1,1,82,83],[1176,2,2,83,85],[1178,1,1,85,86],[1188,1,1,86,87]]]],[23344,23404,23460,23492,23565,23587,23592,23725,23763,23827,23860,24055,24247,24285,24333,24480,24520,24641,24659,24766,24846,24867,24994,24995,25015,25088,25159,25553,25673,25878,25968,26063,26177,26179,26201,26235,26444,26454,26596,26597,26621,26751,26848,26891,26913,26936,27188,27215,27309,27343,27669,27699,27724,27894,27915,27978,28088,28096,28277,28676,29072,29092,29093,29095,29134,29135,29457,29524,29594,29688,29873,30074,30444,30681,30714,30787,30794,30796,30798,30800,30802,30805,30828,30864,30865,30904,31088]]],["while",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30122]]]]},{"k":"G3754","v":[["*",[1135,1052,[[39,121,119,0,119,[[930,3,3,0,3],[931,1,1,3,4],[932,1,1,4,5],[933,25,24,5,29],[934,6,6,29,35],[935,2,2,35,37],[936,2,2,37,39],[937,3,3,39,42],[938,1,1,42,43],[939,7,7,43,50],[940,5,5,50,55],[941,5,4,55,59],[942,1,1,59,60],[943,4,4,60,64],[944,8,8,64,72],[945,4,4,72,76],[946,3,3,76,79],[947,3,3,79,82],[948,5,5,82,87],[949,2,2,87,89],[950,2,2,89,91],[951,7,7,91,98],[952,6,6,98,104],[953,4,4,104,108],[954,5,5,108,113],[955,4,4,113,117],[956,2,2,117,119]]],[40,61,59,119,178,[[957,2,2,119,121],[958,4,4,121,125],[959,1,1,125,126],[960,3,3,126,129],[961,2,2,129,131],[962,7,6,131,137],[963,3,3,137,140],[964,5,5,140,145],[965,7,7,145,152],[966,2,2,152,154],[967,6,5,154,159],[968,8,8,159,167],[969,3,3,167,170],[970,2,2,170,172],[971,2,2,172,174],[972,4,4,174,178]]],[41,146,136,178,314,[[973,7,7,178,185],[974,4,3,185,188],[975,1,1,188,189],[976,6,6,189,195],[977,2,2,195,197],[978,9,7,197,204],[979,8,7,204,211],[980,6,6,211,217],[981,8,7,217,224],[982,9,7,224,231],[983,11,11,231,242],[984,10,10,242,252],[985,7,6,252,258],[986,4,4,258,262],[987,6,6,262,268],[988,6,5,268,273],[989,3,3,273,276],[990,5,5,276,281],[991,11,11,281,292],[992,3,3,292,295],[993,7,7,295,302],[994,4,4,302,306],[995,4,4,306,310],[996,5,4,310,314]]],[42,237,212,314,526,[[997,5,5,314,319],[998,4,4,319,323],[999,10,9,323,332],[1000,13,12,332,344],[1001,15,15,344,359],[1002,15,13,359,372],[1003,13,12,372,384],[1004,21,18,384,402],[1005,15,14,402,416],[1006,8,8,416,424],[1007,18,17,424,441],[1008,12,11,441,452],[1009,7,6,452,458],[1010,12,9,458,467],[1011,7,6,467,473],[1012,22,17,473,490],[1013,10,8,490,498],[1014,5,5,498,503],[1015,8,8,503,511],[1016,7,7,511,518],[1017,10,8,518,526]]],[43,105,99,526,625,[[1018,2,2,526,528],[1019,7,7,528,535],[1020,2,2,535,537],[1021,5,4,537,541],[1022,4,4,541,545],[1023,2,2,545,547],[1024,2,2,547,549],[1025,4,4,549,553],[1026,6,6,553,559],[1027,5,5,559,564],[1028,3,3,564,567],[1029,3,3,567,570],[1030,4,4,570,574],[1031,3,3,574,577],[1032,3,3,577,580],[1033,4,4,580,584],[1034,4,3,584,587],[1036,4,3,587,590],[1037,10,8,590,598],[1038,5,5,598,603],[1039,6,5,603,608],[1040,5,5,608,613],[1041,4,4,613,617],[1042,1,1,617,618],[1043,2,2,618,620],[1044,2,2,620,622],[1045,3,3,622,625]]],[44,52,51,625,676,[[1046,3,3,625,628],[1047,3,3,628,631],[1048,2,2,631,633],[1049,3,3,633,636],[1050,3,3,636,639],[1051,7,7,639,646],[1052,5,5,646,651],[1053,8,8,651,659],[1054,6,6,659,665],[1055,4,3,665,668],[1056,2,2,668,670],[1058,1,1,670,671],[1059,3,3,671,674],[1060,2,2,674,676]]],[45,59,52,676,728,[[1062,7,7,676,683],[1063,1,1,683,684],[1064,3,3,684,687],[1065,2,1,687,688],[1066,1,1,688,689],[1067,7,7,689,696],[1068,1,1,696,697],[1069,3,2,697,699],[1070,3,3,699,702],[1071,5,4,702,706],[1072,6,6,706,712],[1073,3,3,712,715],[1075,3,3,715,718],[1076,12,8,718,726],[1077,2,2,726,728]]],[46,49,46,728,774,[[1078,10,10,728,738],[1079,2,2,738,740],[1080,2,2,740,742],[1081,2,2,742,744],[1082,4,4,744,748],[1084,8,6,748,754],[1085,4,4,754,758],[1086,2,2,758,760],[1087,3,3,760,763],[1088,5,5,763,768],[1089,3,3,768,771],[1090,4,3,771,774]]],[47,24,23,774,797,[[1091,4,4,774,778],[1092,4,4,778,782],[1093,4,3,782,785],[1094,7,7,785,792],[1095,4,4,792,796],[1096,1,1,796,797]]],[48,13,13,797,810,[[1098,3,3,797,800],[1099,1,1,800,801],[1100,2,2,801,803],[1101,4,4,803,807],[1102,3,3,807,810]]],[49,21,20,810,830,[[1103,8,8,810,818],[1104,7,6,818,824],[1105,1,1,824,825],[1106,5,5,825,830]]],[50,6,6,830,836,[[1107,2,2,830,832],[1108,1,1,832,833],[1109,1,1,833,834],[1110,2,2,834,836]]],[51,13,13,836,849,[[1111,1,1,836,837],[1112,3,3,837,840],[1113,4,4,840,844],[1114,3,3,844,847],[1115,2,2,847,849]]],[52,11,11,849,860,[[1116,2,2,849,851],[1117,5,5,851,856],[1118,4,4,856,860]]],[53,12,11,860,871,[[1119,5,5,860,865],[1122,3,3,865,868],[1123,1,1,868,869],[1124,3,2,869,871]]],[54,7,7,871,878,[[1125,4,4,871,875],[1126,1,1,875,876],[1127,2,2,876,878]]],[55,1,1,878,879,[[1131,1,1,878,879]]],[56,4,4,879,883,[[1132,4,4,879,883]]],[57,16,15,883,898,[[1134,2,1,883,884],[1135,1,1,884,885],[1139,2,2,885,887],[1140,4,4,887,891],[1143,5,5,891,896],[1144,1,1,896,897],[1145,1,1,897,898]]],[58,15,15,898,913,[[1146,5,5,898,903],[1147,4,4,903,907],[1148,1,1,907,908],[1149,2,2,908,910],[1150,3,3,910,913]]],[59,16,16,913,929,[[1151,3,3,913,916],[1152,3,3,916,919],[1153,3,3,919,922],[1154,4,4,922,926],[1155,3,3,926,929]]],[60,5,5,929,934,[[1156,2,2,929,931],[1158,3,3,931,934]]],[61,73,59,934,993,[[1159,4,4,934,938],[1160,20,13,938,951],[1161,18,14,951,965],[1162,15,13,965,978],[1163,16,15,978,993]]],[62,2,2,993,995,[[1164,2,2,993,995]]],[63,1,1,995,996,[[1165,1,1,995,996]]],[64,4,3,996,999,[[1166,4,3,996,999]]],[65,61,53,999,1052,[[1168,6,6,999,1005],[1169,10,8,1005,1013],[1170,1,1,1013,1014],[1171,2,2,1014,1016],[1172,1,1,1016,1017],[1173,1,1,1017,1018],[1174,1,1,1018,1019],[1176,1,1,1019,1020],[1177,3,3,1020,1023],[1178,4,3,1023,1026],[1180,5,4,1026,1030],[1181,4,2,1030,1032],[1182,3,3,1032,1035],[1183,1,1,1035,1036],[1184,11,10,1036,1046],[1185,4,3,1046,1049],[1187,2,2,1049,1051],[1188,1,1,1051,1052]]]],[23185,23187,23191,23201,23221,23237,23238,23239,23240,23241,23242,23243,23244,23246,23251,23254,23255,23256,23257,23261,23262,23266,23267,23268,23269,23270,23272,23277,23279,23287,23289,23295,23308,23311,23314,23329,23330,23356,23372,23385,23407,23415,23451,23479,23480,23482,23483,23484,23485,23488,23494,23495,23525,23530,23531,23550,23552,23555,23556,23602,23645,23650,23656,23665,23679,23680,23683,23684,23689,23690,23693,23695,23710,23712,23713,23715,23737,23740,23746,23766,23785,23790,23799,23802,23807,23817,23822,23857,23871,23888,23906,23931,23932,23933,23943,23945,23947,23949,23989,23990,23999,24000,24001,24004,24016,24021,24032,24034,24056,24075,24088,24107,24108,24132,24147,24153,24192,24200,24202,24242,24249,24261,24268,24270,24276,24318,24352,24361,24364,24373,24393,24409,24421,24422,24424,24441,24462,24481,24482,24483,24502,24516,24517,24531,24533,24539,24549,24551,24563,24566,24576,24579,24630,24635,24643,24658,24663,24664,24672,24685,24687,24699,24701,24705,24707,24708,24716,24745,24746,24747,24781,24784,24836,24865,24877,24880,24884,24887,24915,24930,24938,24941,24942,24951,24961,24984,25003,25022,25033,25067,25069,25095,25099,25104,25106,25115,25131,25151,25165,25166,25167,25170,25171,25181,25199,25211,25217,25232,25234,25238,25242,25270,25275,25282,25287,25292,25298,25308,25309,25313,25320,25339,25350,25354,25374,25375,25376,25383,25384,25387,25403,25423,25436,25437,25443,25447,25448,25449,25451,25452,25453,25457,25474,25476,25483,25489,25491,25496,25498,25499,25503,25510,25520,25522,25532,25542,25549,25551,25564,25567,25570,25577,25594,25595,25597,25612,25615,25620,25623,25628,25635,25644,25645,25660,25661,25666,25696,25697,25699,25702,25725,25734,25735,25738,25742,25748,25752,25753,25757,25762,25771,25774,25798,25800,25816,25829,25831,25846,25848,25856,25857,25858,25880,25882,25901,25934,25942,25964,25966,25975,26012,26020,26030,26035,26059,26061,26074,26078,26094,26112,26113,26117,26120,26122,26127,26131,26138,26139,26141,26143,26148,26153,26157,26175,26176,26177,26178,26181,26183,26191,26198,26200,26203,26209,26216,26225,26226,26228,26234,26235,26237,26238,26240,26242,26246,26248,26249,26252,26255,26259,26262,26272,26279,26281,26283,26293,26295,26298,26303,26318,26322,26326,26329,26335,26336,26350,26351,26354,26357,26358,26363,26367,26370,26380,26395,26397,26398,26401,26403,26405,26408,26409,26410,26418,26424,26425,26426,26428,26429,26433,26435,26436,26448,26456,26457,26458,26459,26460,26462,26464,26465,26469,26470,26471,26472,26475,26485,26486,26488,26494,26498,26514,26517,26519,26529,26532,26533,26536,26538,26543,26545,26547,26550,26554,26563,26564,26565,26570,26573,26574,26579,26586,26589,26591,26592,26596,26598,26599,26614,26619,26629,26630,26631,26633,26649,26651,26659,26665,26678,26679,26680,26685,26687,26688,26690,26696,26699,26704,26714,26717,26718,26720,26726,26729,26730,26732,26735,26736,26737,26740,26741,26742,26743,26745,26746,26747,26752,26753,26756,26758,26766,26767,26768,26773,26780,26782,26783,26784,26787,26793,26799,26803,26822,26829,26832,26835,26845,26846,26853,26860,26867,26876,26880,26881,26882,26885,26896,26898,26902,26905,26910,26913,26914,26915,26921,26922,26928,26940,26955,26974,26976,26978,26979,26980,26985,27006,27013,27032,27035,27038,27043,27063,27068,27097,27100,27102,27115,27122,27141,27190,27194,27196,27209,27231,27236,27238,27242,27243,27254,27273,27293,27297,27301,27304,27308,27315,27331,27340,27346,27348,27395,27396,27400,27403,27423,27436,27441,27447,27449,27466,27486,27493,27502,27521,27526,27536,27541,27610,27611,27619,27649,27651,27652,27655,27657,27660,27661,27664,27685,27686,27688,27693,27695,27706,27719,27723,27725,27733,27739,27740,27756,27761,27768,27780,27783,27790,27795,27812,27828,27850,27865,27880,27900,27921,27927,27938,27943,27962,27964,27965,27966,27993,28010,28031,28043,28045,28050,28052,28055,28071,28074,28076,28077,28083,28084,28085,28092,28105,28107,28109,28112,28132,28134,28137,28138,28143,28144,28145,28154,28157,28161,28162,28183,28185,28187,28190,28193,28197,28234,28245,28277,28291,28294,28303,28317,28332,28368,28374,28375,28377,28378,28388,28389,28408,28423,28426,28430,28442,28460,28469,28470,28474,28476,28482,28483,28486,28513,28528,28531,28550,28553,28564,28568,28584,28586,28587,28602,28603,28614,28615,28617,28623,28636,28637,28650,28701,28703,28715,28721,28722,28723,28730,28733,28745,28768,28776,28791,28793,28805,28807,28808,28810,28812,28813,28814,28818,28823,28824,28827,28839,28844,28846,28865,28873,28878,28883,28891,28896,28919,28924,28925,28929,28930,28932,28934,28935,28941,28949,28958,28968,28978,28981,28982,28996,28999,29000,29010,29020,29026,29035,29041,29045,29048,29049,29063,29070,29077,29080,29088,29092,29095,29097,29109,29110,29113,29137,29143,29144,29146,29151,29153,29158,29164,29165,29172,29183,29196,29240,29241,29247,29254,29281,29297,29309,29320,29327,29334,29345,29346,29349,29367,29373,29378,29380,29381,29386,29388,29390,29402,29407,29413,29415,29417,29421,29433,29452,29453,29457,29458,29459,29481,29484,29503,29541,29543,29555,29565,29571,29583,29584,29593,29594,29596,29598,29617,29618,29619,29623,29630,29652,29659,29663,29664,29665,29666,29674,29682,29685,29687,29688,29704,29705,29708,29709,29711,29748,29751,29757,29775,29790,29795,29814,29821,29824,29825,29850,29854,29868,29934,29945,29957,29959,29960,29983,30014,30072,30078,30101,30102,30103,30104,30178,30185,30186,30190,30191,30229,30259,30269,30273,30276,30278,30289,30312,30313,30315,30317,30320,30341,30342,30362,30365,30374,30386,30390,30392,30402,30414,30420,30433,30436,30442,30447,30454,30460,30463,30470,30472,30473,30493,30499,30525,30527,30530,30545,30546,30548,30550,30553,30555,30558,30561,30562,30563,30564,30566,30568,30569,30571,30572,30579,30580,30581,30584,30587,30588,30590,30591,30593,30594,30595,30598,30599,30601,30603,30604,30606,30607,30610,30611,30612,30613,30616,30617,30618,30620,30621,30622,30625,30626,30628,30629,30630,30631,30633,30634,30635,30637,30638,30639,30642,30643,30644,30649,30652,30670,30677,30683,30690,30719,30721,30723,30731,30737,30740,30747,30750,30754,30755,30756,30761,30762,30763,30779,30783,30788,30810,30827,30838,30867,30874,30882,30889,30901,30903,30904,30933,30934,30941,30944,30947,30950,30959,30960,30975,30989,30996,30998,31000,31001,31003,31004,31010,31012,31013,31016,31019,31023,31024,31057,31058,31090]]],["+",[18,18,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]],[42,4,4,3,7,[[998,1,1,3,4],[1000,1,1,4,5],[1001,1,1,5,6],[1006,1,1,6,7]]],[43,2,2,7,9,[[1022,1,1,7,8],[1041,1,1,8,9]]],[44,3,3,9,12,[[1052,1,1,9,10],[1054,1,1,10,11],[1059,1,1,11,12]]],[45,2,2,12,14,[[1071,1,1,12,13],[1076,1,1,13,14]]],[46,2,2,14,16,[[1078,1,1,14,15],[1088,1,1,15,16]]],[47,1,1,16,17,[[1091,1,1,16,17]]],[53,1,1,17,18,[[1124,1,1,17,18]]]],[24088,24483,25858,26120,26177,26234,26488,27063,27790,28112,28161,28291,28586,28745,28818,28999,29077,29795]]],["-",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27395]]],["Because",[19,19,[[39,3,3,0,3,[[935,1,1,0,1],[941,1,1,1,2],[948,1,1,2,3]]],[40,2,2,3,5,[[959,1,1,3,4],[963,1,1,4,5]]],[41,1,1,5,6,[[991,1,1,5,6]]],[42,4,4,6,10,[[997,1,1,6,7],[1008,1,1,7,8],[1012,1,1,8,9],[1016,1,1,9,10]]],[43,1,1,10,11,[[1019,1,1,10,11]]],[44,2,2,11,13,[[1053,1,1,11,12],[1054,1,1,12,13]]],[45,2,2,13,15,[[1062,1,1,13,14],[1073,1,1,14,15]]],[49,1,1,15,16,[[1104,1,1,15,16]]],[61,1,1,16,17,[[1161,1,1,16,17]]],[65,2,2,17,19,[[1169,2,2,17,19]]]],[23330,23550,23799,24318,24482,25762,26094,26591,26743,26880,26976,28137,28187,28388,28650,29421,30591,30756,30763]]],["For",[68,68,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,12,12,1,13,[[973,3,3,1,4],[974,2,2,4,6],[980,1,1,6,7],[986,1,1,7,8],[987,1,1,8,9],[991,1,1,9,10],[993,1,1,10,11],[995,2,2,11,13]]],[42,4,4,13,17,[[997,1,1,13,14],[1002,1,1,14,15],[1008,1,1,15,16],[1013,1,1,16,17]]],[43,4,4,17,21,[[1018,2,2,17,19],[1028,1,1,19,20],[1039,1,1,20,21]]],[44,2,2,21,23,[[1053,1,1,21,22],[1056,1,1,22,23]]],[45,1,1,23,24,[[1071,1,1,23,24]]],[46,9,9,24,33,[[1078,1,1,24,25],[1079,1,1,25,26],[1081,1,1,26,27],[1084,2,2,27,29],[1085,2,2,29,31],[1086,1,1,31,32],[1087,1,1,32,33]]],[47,1,1,33,34,[[1096,1,1,33,34]]],[48,4,4,34,38,[[1098,1,1,34,35],[1101,2,2,35,37],[1102,1,1,37,38]]],[49,2,2,38,40,[[1103,1,1,38,39],[1106,1,1,39,40]]],[50,3,3,40,43,[[1107,2,2,40,42],[1108,1,1,42,43]]],[51,4,4,43,47,[[1111,1,1,43,44],[1113,1,1,44,45],[1114,1,1,45,46],[1115,1,1,46,47]]],[53,1,1,47,48,[[1122,1,1,47,48]]],[57,2,2,48,50,[[1140,2,2,48,50]]],[58,1,1,50,51,[[1146,1,1,50,51]]],[59,4,4,51,55,[[1152,1,1,51,52],[1153,2,2,52,54],[1154,1,1,54,55]]],[61,5,5,55,60,[[1160,1,1,55,56],[1161,2,2,56,58],[1163,2,2,58,60]]],[62,1,1,60,61,[[1164,1,1,60,61]]],[65,7,7,61,68,[[1172,1,1,61,62],[1173,1,1,62,63],[1182,1,1,63,64],[1184,3,3,64,67],[1185,1,1,67,68]]]],[23295,24930,24941,24942,24984,25003,25287,25564,25612,25774,25848,25964,25966,26061,26295,26629,26767,26928,26940,27331,27719,28145,28245,28584,28805,28839,28865,28924,28930,28935,28949,28968,28981,29196,29247,29327,29334,29349,29390,29458,29481,29484,29503,29565,29598,29619,29630,29751,30102,30104,30289,30414,30436,30442,30463,30566,30590,30599,30628,30631,30652,30810,30827,30960,30996,30998,31010,31019]]],["I",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26436]]],["It",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27812]]],["That",[49,47,[[39,18,18,0,18,[[933,4,4,0,4],[934,1,1,4,5],[936,1,1,5,6],[939,1,1,6,7],[940,2,2,7,9],[941,1,1,9,10],[944,1,1,10,11],[945,1,1,11,12],[946,2,2,12,14],[947,2,2,14,16],[949,1,1,16,17],[952,1,1,17,18]]],[40,8,7,18,25,[[962,3,2,18,20],[965,2,2,20,22],[967,1,1,22,23],[968,1,1,23,24],[970,1,1,24,25]]],[41,9,8,25,33,[[975,1,1,25,26],[976,1,1,26,27],[978,1,1,27,28],[979,3,2,28,30],[986,1,1,30,31],[991,2,2,31,33]]],[42,3,3,33,36,[[1002,1,1,33,34],[1003,1,1,34,35],[1012,1,1,35,36]]],[43,2,2,36,38,[[1024,1,1,36,37],[1032,1,1,37,38]]],[44,4,4,38,42,[[1054,2,2,38,40],[1055,2,2,40,42]]],[45,2,2,42,44,[[1062,1,1,42,43],[1072,1,1,43,44]]],[47,1,1,44,45,[[1091,1,1,44,45]]],[48,1,1,45,46,[[1098,1,1,45,46]]],[57,1,1,46,47,[[1143,1,1,46,47]]]],[23254,23256,23262,23266,23311,23356,23483,23495,23525,23556,23690,23712,23737,23746,23785,23790,23857,24004,24421,24422,24539,24551,24663,24716,24784,25033,25067,25151,25199,25211,25577,25738,25757,26293,26370,26746,27122,27447,28157,28185,28193,28197,28368,28623,29080,29241,30190]]],["The",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26235]]],["We",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26131]]],["Why",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24566]]],["a",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26262]]],["because",[161,155,[[39,13,13,0,13,[[930,1,1,0,1],[933,1,1,1,2],[937,1,1,2,3],[939,2,2,3,5],[940,1,1,5,6],[941,1,1,6,7],[942,1,1,7,8],[943,1,1,8,9],[944,2,2,9,11],[948,1,1,11,12],[951,1,1,12,13]]],[40,10,10,13,23,[[957,1,1,13,14],[960,1,1,14,15],[962,1,1,15,16],[964,3,3,16,19],[965,2,2,19,21],[967,1,1,21,22],[972,1,1,22,23]]],[41,14,14,23,37,[[980,1,1,23,24],[981,2,2,24,26],[982,1,1,26,27],[983,1,1,27,28],[984,1,1,28,29],[985,2,2,29,31],[987,1,1,31,32],[988,1,1,32,33],[989,1,1,33,34],[991,3,3,34,37]]],[42,53,52,37,89,[[999,2,2,37,39],[1001,4,4,39,43],[1002,4,3,43,46],[1003,6,6,46,52],[1004,6,6,52,58],[1005,2,2,58,60],[1006,4,4,60,64],[1007,2,2,64,66],[1008,2,2,66,68],[1010,4,4,68,72],[1011,3,3,72,75],[1012,10,10,75,85],[1013,1,1,85,86],[1015,1,1,86,87],[1016,1,1,87,88],[1017,1,1,88,89]]],[43,6,6,89,95,[[1019,1,1,89,90],[1023,1,1,90,91],[1025,1,1,91,92],[1027,1,1,92,93],[1034,1,1,93,94],[1039,1,1,94,95]]],[44,6,6,95,101,[[1050,1,1,95,96],[1051,1,1,96,97],[1053,1,1,97,98],[1054,2,2,98,100],[1059,1,1,100,101]]],[45,4,4,101,105,[[1063,1,1,101,102],[1064,1,1,102,103],[1067,1,1,103,104],[1076,1,1,104,105]]],[46,3,3,105,108,[[1084,1,1,105,106],[1088,2,2,106,108]]],[47,2,2,108,110,[[1092,1,1,108,109],[1094,1,1,109,110]]],[48,1,1,110,111,[[1101,1,1,110,111]]],[49,1,1,111,112,[[1106,1,1,111,112]]],[51,1,1,112,113,[[1112,1,1,112,113]]],[52,3,3,113,116,[[1116,1,1,113,114],[1117,1,1,114,115],[1118,1,1,115,116]]],[53,5,4,116,120,[[1119,1,1,116,117],[1122,1,1,117,118],[1123,1,1,118,119],[1124,2,1,119,120]]],[56,1,1,120,121,[[1132,1,1,120,121]]],[57,1,1,121,122,[[1140,1,1,121,122]]],[58,1,1,122,123,[[1146,1,1,122,123]]],[59,2,2,123,125,[[1152,1,1,123,124],[1155,1,1,124,125]]],[61,24,20,125,145,[[1160,10,6,125,131],[1161,5,5,131,136],[1162,7,7,136,143],[1163,2,2,143,145]]],[65,10,10,145,155,[[1168,3,3,145,148],[1169,1,1,148,149],[1171,1,1,149,150],[1174,1,1,150,151],[1177,2,2,151,153],[1180,1,1,153,154],[1182,1,1,154,155]]]],[23187,23270,23415,23479,23484,23530,23552,23602,23665,23679,23680,23807,23947,24249,24352,24441,24502,24516,24517,24576,24579,24658,24887,25275,25350,25354,25383,25423,25476,25520,25532,25615,25628,25660,25734,25748,25752,26138,26143,26226,26228,26237,26240,26259,26283,26298,26329,26335,26350,26351,26358,26367,26403,26418,26424,26425,26426,26428,26456,26462,26494,26498,26514,26517,26532,26533,26586,26619,26680,26685,26687,26696,26718,26720,26726,26729,26730,26732,26735,26736,26737,26742,26747,26753,26758,26773,26832,26896,26915,26955,27102,27196,27304,27541,27733,28052,28083,28143,28162,28183,28303,28408,28423,28474,28733,28929,28996,29000,29092,29137,29320,29459,29583,29659,29674,29687,29709,29757,29775,29790,29945,30101,30276,30420,30473,30558,30561,30562,30563,30564,30571,30580,30588,30593,30595,30601,30604,30607,30612,30616,30620,30621,30622,30630,30634,30721,30731,30737,30762,30783,30838,30882,30889,30934,30959]]],["for",[194,185,[[39,36,34,0,34,[[933,13,12,0,12],[934,2,2,12,14],[935,1,1,14,15],[939,4,4,15,19],[940,1,1,19,20],[941,2,1,20,21],[943,1,1,21,22],[944,2,2,22,24],[945,1,1,24,25],[951,5,5,25,30],[952,2,2,30,32],[953,2,2,32,34]]],[40,6,6,34,40,[[957,1,1,34,35],[961,1,1,35,36],[962,1,1,36,37],[964,1,1,37,38],[968,1,1,38,39],[970,1,1,39,40]]],[41,53,51,40,91,[[973,2,2,40,42],[976,5,5,42,47],[977,1,1,47,48],[978,8,6,48,54],[979,2,2,54,56],[980,2,2,56,58],[981,2,2,58,60],[982,2,2,60,62],[983,9,9,62,71],[984,4,4,71,75],[985,3,3,75,78],[986,2,2,78,80],[987,3,3,80,83],[988,4,4,83,87],[990,1,1,87,88],[991,1,1,88,89],[996,2,2,89,91]]],[42,30,29,91,120,[[997,1,1,91,92],[1000,2,2,92,94],[1001,3,3,94,97],[1003,3,3,97,100],[1004,5,5,100,105],[1006,2,2,105,107],[1007,1,1,107,108],[1008,1,1,108,109],[1010,2,2,109,111],[1011,3,2,111,113],[1012,1,1,113,114],[1013,2,2,114,116],[1014,2,2,116,118],[1015,2,2,118,120]]],[43,10,10,120,130,[[1019,1,1,120,121],[1021,1,1,121,122],[1022,1,1,122,123],[1025,1,1,123,124],[1026,1,1,124,125],[1027,2,2,125,127],[1028,1,1,127,128],[1030,1,1,128,129],[1039,1,1,129,130]]],[45,3,3,130,133,[[1065,1,1,130,131],[1072,1,1,131,132],[1077,1,1,132,133]]],[47,4,4,133,137,[[1093,1,1,133,134],[1094,3,3,134,137]]],[48,1,1,137,138,[[1100,1,1,137,138]]],[51,1,1,138,139,[[1112,1,1,138,139]]],[52,2,2,139,141,[[1117,1,1,139,140],[1118,1,1,140,141]]],[54,1,1,141,142,[[1125,1,1,141,142]]],[57,1,1,142,143,[[1140,1,1,142,143]]],[58,2,2,143,145,[[1146,1,1,143,144],[1150,1,1,144,145]]],[59,6,6,145,151,[[1151,1,1,145,146],[1154,3,3,146,149],[1155,2,2,149,151]]],[61,6,6,151,157,[[1161,3,3,151,154],[1162,2,2,154,156],[1163,1,1,156,157]]],[64,1,1,157,158,[[1166,1,1,157,158]]],[65,31,27,158,185,[[1169,2,2,158,160],[1170,1,1,160,161],[1171,1,1,161,162],[1177,1,1,162,163],[1178,2,2,163,165],[1180,4,3,165,168],[1181,4,2,168,170],[1182,1,1,170,171],[1183,1,1,171,172],[1184,8,7,172,179],[1185,3,3,179,182],[1187,2,2,182,184],[1188,1,1,184,185]]]],[23237,23238,23239,23240,23241,23242,23243,23244,23246,23268,23269,23279,23287,23308,23329,23480,23482,23485,23488,23531,23555,23656,23689,23695,23715,23931,23932,23933,23943,23945,23999,24001,24016,24021,24242,24373,24424,24533,24705,24781,24938,24961,25069,25095,25099,25104,25106,25115,25165,25166,25167,25170,25171,25181,25234,25242,25270,25282,25313,25339,25376,25384,25436,25437,25447,25448,25449,25451,25452,25453,25457,25474,25483,25491,25499,25542,25549,25551,25567,25570,25594,25597,25620,25623,25628,25635,25644,25702,25735,26020,26030,26074,26178,26191,26238,26248,26249,26336,26357,26380,26395,26397,26401,26410,26425,26485,26486,26570,26598,26685,26696,26704,26714,26740,26768,26783,26787,26803,26845,26867,26974,27043,27097,27209,27231,27273,27297,27315,27403,27725,28442,28615,28793,29113,29143,29151,29158,29297,29584,29664,29685,29825,30103,30278,30362,30390,30447,30454,30460,30470,30472,30581,30587,30588,30610,30611,30633,30683,30750,30754,30779,30788,30874,30901,30903,30933,30941,30944,30947,30950,30975,30989,31000,31001,31003,31004,31012,31013,31016,31019,31023,31024,31057,31058,31090]]],["he",[3,3,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[42,1,1,2,3,[[997,1,1,2,3]]]],[23740,24462,26059]]],["him",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26882]]],["how",[14,14,[[39,2,2,0,2,[[940,1,1,0,1],[944,1,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[993,1,1,3,4]]],[42,3,3,4,7,[[1000,1,1,4,5],[1008,1,1,5,6],[1010,1,1,6,7]]],[43,2,2,7,9,[[1031,1,1,7,8],[1037,1,1,8,9]]],[47,1,1,9,10,[[1094,1,1,9,10]]],[56,1,1,10,11,[[1132,1,1,10,11]]],[58,2,2,11,13,[[1147,2,2,11,13]]],[65,1,1,13,14,[[1168,1,1,13,14]]]],[23494,23684,24951,25831,26157,26599,26696,27441,27661,29144,29957,30315,30317,30719]]],["it",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27340]]],["seeing",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25975]]],["shall",[2,2,[[42,1,1,0,1,[[1017,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]]],[26921,28813]]],["should",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30690]]],["that",[587,560,[[39,46,46,0,46,[[930,2,2,0,2],[931,1,1,2,3],[932,1,1,3,4],[933,7,7,4,11],[934,2,2,11,13],[936,1,1,13,14],[937,2,2,14,16],[938,1,1,16,17],[943,2,2,17,19],[944,2,2,19,21],[945,2,2,21,23],[947,1,1,23,24],[948,3,3,24,27],[949,1,1,27,28],[950,2,2,28,30],[951,1,1,30,31],[952,3,3,31,34],[953,2,2,34,36],[954,4,4,36,40],[955,4,4,40,44],[956,2,2,44,46]]],[40,32,32,46,78,[[958,4,4,46,50],[960,2,2,50,52],[961,1,1,52,53],[962,1,1,53,54],[963,1,1,54,55],[964,1,1,55,56],[965,2,2,56,58],[966,2,2,58,60],[967,4,4,60,64],[968,6,6,64,70],[969,3,3,70,73],[971,2,2,73,75],[972,3,3,75,78]]],[41,50,48,78,126,[[973,1,1,78,79],[974,2,1,79,80],[977,1,1,80,81],[979,3,3,81,84],[980,2,2,84,86],[981,4,3,86,89],[982,6,6,89,95],[983,1,1,95,96],[984,5,5,96,101],[985,2,2,101,103],[987,1,1,103,104],[988,1,1,104,105],[989,1,1,105,106],[990,4,4,106,110],[991,3,3,110,113],[992,3,3,113,116],[993,4,4,116,120],[994,2,2,120,122],[995,1,1,122,123],[996,3,3,123,126]]],[42,128,119,126,245,[[997,1,1,126,127],[998,3,3,127,130],[999,7,6,130,136],[1000,9,9,136,145],[1001,6,6,145,151],[1002,8,7,151,158],[1003,3,3,158,161],[1004,9,8,161,169],[1005,12,11,169,180],[1006,1,1,180,181],[1007,15,14,181,195],[1008,6,6,195,201],[1009,7,6,201,207],[1010,5,5,207,212],[1011,1,1,212,213],[1012,9,7,213,220],[1013,6,5,220,225],[1014,3,3,225,228],[1015,5,5,228,233],[1016,4,4,233,237],[1017,8,8,237,245]]],[43,75,71,245,316,[[1019,4,4,245,249],[1020,2,2,249,251],[1021,4,3,251,254],[1022,2,2,254,256],[1023,1,1,256,257],[1024,1,1,257,258],[1025,2,2,258,260],[1026,5,5,260,265],[1027,2,2,265,267],[1028,1,1,267,268],[1029,2,2,268,270],[1030,2,2,270,272],[1031,2,2,272,274],[1032,2,2,274,276],[1033,4,4,276,280],[1034,3,2,280,282],[1036,4,3,282,285],[1037,9,8,285,293],[1038,5,5,293,298],[1039,3,3,298,301],[1040,5,5,301,306],[1041,3,3,306,309],[1043,2,2,309,311],[1044,2,2,311,313],[1045,3,3,313,316]]],[44,35,35,316,351,[[1046,3,3,316,319],[1047,3,3,319,322],[1048,2,2,322,324],[1049,3,3,324,327],[1050,2,2,327,329],[1051,6,6,329,335],[1052,4,4,335,339],[1053,5,5,339,344],[1055,2,2,344,346],[1056,1,1,346,347],[1058,1,1,347,348],[1059,1,1,348,349],[1060,2,2,349,351]]],[45,45,42,351,393,[[1062,5,5,351,356],[1064,2,2,356,358],[1065,1,1,358,359],[1066,1,1,359,360],[1067,6,6,360,366],[1068,1,1,366,367],[1069,3,2,367,369],[1070,3,3,369,372],[1071,3,3,372,375],[1072,4,4,375,379],[1073,2,2,379,381],[1075,3,3,381,384],[1076,10,8,384,392],[1077,1,1,392,393]]],[46,32,30,393,423,[[1078,7,7,393,400],[1079,1,1,400,401],[1080,1,1,401,402],[1081,1,1,402,403],[1082,4,4,403,407],[1084,5,4,407,411],[1085,2,2,411,413],[1086,1,1,413,414],[1087,2,2,414,416],[1088,1,1,416,417],[1089,3,3,417,420],[1090,4,3,420,423]]],[47,14,14,423,437,[[1091,2,2,423,425],[1092,3,3,425,428],[1093,3,3,428,431],[1094,2,2,431,433],[1095,4,4,433,437]]],[48,6,6,437,443,[[1098,1,1,437,438],[1099,1,1,438,439],[1100,1,1,439,440],[1101,1,1,440,441],[1102,2,2,441,443]]],[49,16,15,443,458,[[1103,7,7,443,450],[1104,6,5,450,455],[1106,3,3,455,458]]],[50,3,3,458,461,[[1109,1,1,458,459],[1110,2,2,459,461]]],[51,7,7,461,468,[[1112,1,1,461,462],[1113,3,3,462,465],[1114,2,2,465,467],[1115,1,1,467,468]]],[52,6,6,468,474,[[1116,1,1,468,469],[1117,3,3,469,472],[1118,2,2,472,474]]],[53,5,5,474,479,[[1119,4,4,474,478],[1122,1,1,478,479]]],[54,6,6,479,485,[[1125,3,3,479,482],[1126,1,1,482,483],[1127,2,2,483,485]]],[55,1,1,485,486,[[1131,1,1,485,486]]],[56,2,2,486,488,[[1132,2,2,486,488]]],[57,10,9,488,497,[[1134,2,1,488,489],[1135,1,1,489,490],[1139,2,2,490,492],[1143,4,4,492,496],[1144,1,1,496,497]]],[58,9,9,497,506,[[1146,2,2,497,499],[1147,2,2,499,501],[1148,1,1,501,502],[1149,2,2,502,504],[1150,2,2,504,506]]],[59,4,4,506,510,[[1151,2,2,506,508],[1152,1,1,508,509],[1153,1,1,509,510]]],[60,5,5,510,515,[[1156,2,2,510,512],[1158,3,3,512,515]]],[61,36,32,515,547,[[1159,4,4,515,519],[1160,9,7,519,526],[1161,6,6,526,532],[1162,6,5,532,537],[1163,11,10,537,547]]],[62,1,1,547,548,[[1164,1,1,547,548]]],[63,1,1,548,549,[[1165,1,1,548,549]]],[64,2,2,549,551,[[1166,2,2,549,551]]],[65,10,9,551,560,[[1168,2,2,551,553],[1169,5,4,553,557],[1176,1,1,557,558],[1178,2,2,558,560]]]],[23185,23191,23201,23221,23251,23255,23257,23261,23267,23272,23277,23289,23314,23372,23385,23407,23451,23645,23650,23683,23693,23710,23713,23766,23802,23817,23822,23871,23888,23906,23949,23989,23990,24000,24032,24034,24056,24075,24107,24108,24132,24147,24153,24192,24200,24202,24261,24268,24270,24276,24361,24364,24393,24409,24481,24531,24549,24563,24630,24635,24643,24663,24664,24672,24685,24687,24699,24701,24707,24708,24745,24746,24747,24836,24865,24877,24880,24884,24915,25022,25131,25217,25232,25238,25292,25298,25308,25309,25320,25374,25375,25383,25384,25387,25403,25443,25489,25496,25498,25503,25510,25520,25522,25595,25645,25666,25696,25697,25699,25725,25742,25753,25771,25798,25800,25816,25829,25846,25856,25857,25901,25934,25942,26012,26030,26035,26078,26112,26113,26117,26122,26127,26139,26141,26148,26153,26157,26175,26176,26181,26183,26198,26200,26203,26209,26216,26225,26242,26246,26252,26255,26272,26279,26281,26303,26318,26322,26326,26335,26354,26363,26398,26405,26408,26409,26418,26429,26433,26435,26448,26457,26458,26460,26464,26465,26469,26470,26471,26472,26475,26519,26529,26536,26538,26543,26545,26547,26550,26554,26563,26564,26565,26573,26574,26579,26586,26589,26592,26596,26614,26630,26631,26633,26649,26651,26659,26665,26678,26679,26688,26690,26699,26717,26730,26741,26745,26747,26752,26753,26756,26766,26767,26780,26782,26784,26793,26799,26822,26829,26835,26846,26853,26860,26876,26881,26885,26898,26902,26905,26910,26913,26914,26915,26921,26922,26978,26979,26980,26985,27006,27013,27032,27035,27038,27068,27100,27115,27141,27190,27194,27236,27238,27242,27243,27254,27293,27301,27308,27346,27348,27396,27400,27423,27436,27449,27466,27486,27493,27502,27521,27526,27536,27610,27611,27619,27649,27651,27652,27655,27657,27660,27661,27664,27685,27686,27688,27693,27695,27706,27723,27733,27739,27740,27756,27761,27768,27780,27783,27795,27828,27850,27865,27880,27900,27921,27927,27938,27943,27962,27964,27965,27966,27993,28010,28031,28043,28045,28050,28055,28071,28074,28076,28077,28084,28085,28092,28105,28107,28109,28132,28134,28138,28144,28154,28190,28197,28234,28277,28294,28317,28332,28374,28375,28377,28378,28389,28426,28430,28442,28460,28469,28470,28476,28482,28483,28486,28513,28528,28531,28550,28553,28564,28568,28586,28587,28602,28603,28614,28617,28636,28637,28701,28703,28715,28721,28722,28723,28730,28733,28745,28768,28776,28791,28807,28808,28810,28812,28814,28823,28824,28827,28846,28873,28878,28883,28891,28896,28919,28924,28925,28932,28934,28941,28958,28978,28982,29020,29026,29035,29041,29045,29048,29049,29063,29070,29088,29095,29097,29109,29110,29113,29146,29153,29164,29165,29172,29183,29240,29254,29281,29309,29345,29346,29367,29373,29378,29380,29381,29386,29388,29402,29407,29413,29415,29417,29452,29453,29457,29541,29543,29555,29571,29593,29594,29596,29617,29618,29623,29652,29663,29665,29666,29682,29688,29704,29705,29708,29711,29748,29814,29821,29824,29850,29854,29868,29934,29959,29960,29983,30014,30072,30078,30178,30185,30186,30191,30229,30269,30273,30312,30313,30320,30341,30342,30365,30374,30386,30392,30402,30433,30493,30499,30525,30527,30530,30545,30546,30548,30550,30553,30555,30568,30569,30571,30572,30579,30581,30584,30593,30594,30598,30603,30606,30613,30616,30617,30618,30625,30626,30629,30635,30637,30638,30639,30642,30643,30644,30649,30670,30677,30690,30723,30740,30747,30755,30761,30763,30867,30903,30904]]],["though",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[29010,29433]]],["to",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28844]]],["us",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30599]]],["was",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26459]]],["we",[2,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[25661,30259]]],["will",[2,2,[[41,2,2,0,2,[[994,2,2,0,2]]]],[25880,25882]]]]},{"k":"G3755","v":[["+",[6,6,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,4,4,1,5,[[985,1,1,1,2],[987,1,1,2,3],[994,2,2,3,5]]],[42,1,1,5,6,[[1005,1,1,5,6]]]],[23259,25526,25596,25880,25882,26458]]]]},{"k":"G3756","v":[["*",[1544,1333,[[39,183,159,0,159,[[929,1,1,0,1],[930,2,1,1,2],[931,1,1,2,3],[932,2,2,3,5],[933,8,7,5,12],[934,8,7,12,19],[935,6,6,19,25],[936,2,2,25,27],[937,5,4,27,31],[938,10,7,31,38],[939,4,3,38,41],[940,15,13,41,54],[941,13,11,54,65],[942,3,3,65,68],[943,9,8,68,76],[944,10,9,76,85],[945,5,5,85,90],[946,4,4,90,94],[947,7,5,94,99],[948,6,6,99,105],[949,7,6,105,111],[950,8,7,111,118],[951,5,5,118,123],[952,10,9,123,132],[953,14,10,132,142],[954,12,11,142,153],[955,5,5,153,158],[956,1,1,158,159]]],[40,115,104,159,263,[[957,3,3,159,162],[958,7,6,162,168],[959,5,5,168,173],[960,11,11,173,184],[961,2,2,184,186],[962,9,8,186,194],[963,8,7,194,201],[964,9,7,201,208],[965,15,11,208,219],[966,5,5,219,224],[967,6,6,224,230],[968,11,9,230,239],[969,7,7,239,246],[970,12,12,246,258],[971,3,3,258,261],[972,2,2,261,263]]],[41,162,141,263,404,[[973,6,6,263,269],[974,5,5,269,274],[975,1,1,274,275],[976,5,5,275,280],[977,3,3,280,283],[978,9,9,283,292],[979,8,5,292,297],[980,12,9,297,306],[981,8,8,306,314],[982,4,3,314,317],[983,9,9,317,326],[984,16,13,326,339],[985,9,9,339,348],[986,11,8,348,356],[987,4,4,356,360],[988,7,6,360,366],[989,4,4,366,370],[990,6,4,370,374],[991,10,7,374,381],[992,6,6,381,387],[993,4,3,387,390],[994,5,5,390,395],[995,5,4,395,399],[996,5,5,399,404]]],[42,274,244,404,648,[[997,15,13,404,417],[998,5,5,417,422],[999,13,13,422,435],[1000,10,9,435,444],[1001,19,17,444,461],[1002,16,15,461,476],[1003,18,15,476,491],[1004,25,21,491,512],[1005,15,13,512,525],[1006,17,15,525,540],[1007,12,12,540,552],[1008,15,14,552,566],[1009,9,8,566,574],[1010,14,10,574,584],[1011,10,9,584,593],[1012,18,18,593,611],[1013,9,7,611,618],[1014,9,8,618,626],[1015,9,8,626,634],[1016,7,7,634,641],[1017,9,7,641,648]]],[43,107,101,648,749,[[1018,2,2,648,650],[1019,6,6,650,656],[1020,1,1,656,657],[1021,3,3,657,660],[1022,6,6,660,666],[1023,3,3,666,669],[1024,11,10,669,679],[1025,4,3,679,682],[1026,2,2,682,684],[1027,2,2,684,686],[1029,5,5,686,691],[1030,7,6,691,697],[1031,2,2,697,699],[1032,3,3,699,702],[1033,3,3,702,705],[1034,5,5,705,710],[1035,2,2,710,712],[1036,9,8,712,720],[1037,3,3,720,723],[1038,3,3,723,726],[1039,4,4,726,730],[1040,2,1,730,731],[1041,2,2,731,733],[1042,4,4,733,737],[1043,5,4,737,741],[1044,5,5,741,746],[1045,3,3,746,749]]],[44,121,98,749,847,[[1046,5,5,749,754],[1047,6,5,754,759],[1048,10,8,759,767],[1049,10,10,767,777],[1050,6,6,777,783],[1051,4,3,783,786],[1052,12,7,786,793],[1053,14,12,793,805],[1054,15,13,805,818],[1055,8,7,818,825],[1056,7,6,825,831],[1057,1,1,831,832],[1058,10,6,832,838],[1059,5,3,838,841],[1060,6,4,841,845],[1061,2,2,845,847]]],[45,149,108,847,955,[[1062,7,4,847,851],[1063,12,9,851,860],[1064,3,3,860,863],[1065,6,6,863,869],[1066,3,2,869,871],[1067,15,10,871,881],[1068,12,10,881,891],[1069,2,2,891,893],[1070,16,11,893,904],[1071,10,6,904,910],[1072,11,9,910,919],[1073,14,6,919,925],[1074,8,3,925,928],[1075,8,7,928,935],[1076,19,17,935,952],[1077,3,3,952,955]]],[46,96,77,955,1032,[[1078,10,7,955,962],[1079,5,5,962,967],[1080,5,4,967,971],[1081,7,5,971,976],[1082,5,4,976,980],[1083,1,1,980,981],[1084,6,6,981,987],[1085,10,8,987,995],[1086,1,1,995,996],[1087,10,8,996,1004],[1088,13,10,1004,1014],[1089,16,11,1014,1025],[1090,7,7,1025,1032]]],[47,36,30,1032,1062,[[1091,7,7,1032,1039],[1092,8,5,1039,1044],[1093,8,6,1044,1050],[1094,7,6,1050,1056],[1095,4,4,1056,1060],[1096,2,2,1060,1062]]],[48,11,11,1062,1073,[[1097,2,2,1062,1064],[1098,2,2,1064,1066],[1099,1,1,1066,1067],[1100,1,1,1067,1068],[1101,2,2,1068,1070],[1102,3,3,1070,1073]]],[49,13,13,1073,1086,[[1103,3,3,1073,1076],[1104,4,4,1076,1080],[1105,4,4,1080,1084],[1106,2,2,1084,1086]]],[50,8,8,1086,1094,[[1107,1,1,1086,1087],[1108,4,4,1087,1091],[1109,3,3,1091,1094]]],[51,16,16,1094,1110,[[1111,2,2,1094,1096],[1112,6,6,1096,1102],[1114,4,4,1102,1106],[1115,4,4,1106,1110]]],[52,8,7,1110,1117,[[1117,2,2,1110,1112],[1118,6,5,1112,1117]]],[53,9,9,1117,1126,[[1119,1,1,1117,1118],[1120,3,3,1118,1121],[1121,1,1,1121,1122],[1123,4,4,1122,1126]]],[54,12,12,1126,1138,[[1125,4,4,1126,1130],[1126,5,5,1130,1135],[1127,1,1,1135,1136],[1128,2,2,1136,1138]]],[55,1,1,1138,1139,[[1131,1,1,1138,1139]]],[57,61,58,1139,1197,[[1133,1,1,1139,1140],[1134,3,3,1140,1143],[1135,3,3,1143,1146],[1136,5,5,1146,1151],[1137,3,3,1151,1154],[1138,1,1,1154,1155],[1139,5,5,1155,1160],[1140,4,3,1160,1163],[1141,6,5,1163,1168],[1142,8,8,1168,1176],[1143,8,8,1176,1184],[1144,9,9,1184,1193],[1145,5,4,1193,1197]]],[58,27,24,1197,1221,[[1146,4,4,1197,1201],[1147,8,8,1201,1209],[1148,3,3,1209,1212],[1149,8,6,1212,1218],[1150,4,3,1218,1221]]],[59,12,10,1221,1231,[[1151,4,4,1221,1225],[1152,6,4,1225,1229],[1153,2,2,1229,1231]]],[60,12,11,1231,1242,[[1156,5,5,1231,1236],[1157,6,5,1236,1241],[1158,1,1,1241,1242]]],[61,47,35,1242,1277,[[1159,6,4,1242,1246],[1160,15,11,1246,1257],[1161,10,7,1257,1264],[1162,8,6,1264,1270],[1163,8,7,1270,1277]]],[62,5,5,1277,1282,[[1164,5,5,1277,1282]]],[63,4,4,1282,1286,[[1165,4,4,1282,1286]]],[64,2,2,1286,1288,[[1166,2,2,1286,1288]]],[65,53,45,1288,1333,[[1168,9,6,1288,1294],[1169,5,5,1294,1299],[1170,1,1,1299,1300],[1172,1,1,1300,1301],[1173,1,1,1301,1302],[1175,4,4,1302,1306],[1176,1,1,1306,1307],[1177,1,1,1307,1308],[1178,2,2,1308,1310],[1179,1,1,1310,1311],[1180,3,3,1311,1314],[1182,4,4,1314,1318],[1183,4,2,1318,1320],[1184,1,1,1320,1321],[1186,6,5,1321,1326],[1187,6,5,1326,1331],[1188,3,2,1331,1333]]]],[23169,23187,23203,23213,23216,23248,23251,23255,23261,23267,23270,23271,23283,23287,23302,23306,23308,23310,23312,23319,23334,23337,23338,23341,23345,23353,23365,23391,23392,23393,23403,23437,23441,23443,23446,23451,23454,23455,23470,23476,23479,23491,23492,23493,23494,23496,23508,23509,23513,23514,23520,23521,23528,23532,23544,23550,23551,23552,23556,23560,23568,23573,23594,23596,23597,23601,23613,23614,23635,23644,23646,23653,23656,23657,23659,23665,23675,23676,23679,23680,23683,23684,23689,23690,23695,23712,23716,23719,23721,23724,23741,23749,23757,23760,23766,23770,23772,23773,23780,23805,23807,23814,23815,23818,23820,23847,23851,23853,23855,23856,23858,23875,23880,23883,23888,23889,23903,23904,23921,23922,23931,23948,23955,23959,23978,23979,23986,23996,23999,24000,24001,24007,24011,24017,24020,24021,24032,24034,24050,24051,24052,24053,24065,24078,24093,24094,24096,24107,24109,24114,24124,24126,24128,24135,24142,24143,24163,24171,24201,24222,24237,24249,24277,24278,24279,24284,24286,24287,24312,24313,24314,24315,24317,24328,24330,24336,24340,24344,24345,24348,24350,24357,24361,24363,24383,24403,24410,24411,24412,24425,24426,24433,24443,24459,24466,24467,24468,24481,24482,24487,24490,24502,24514,24516,24517,24518,24521,24533,24541,24544,24556,24566,24568,24575,24576,24578,24582,24584,24586,24615,24626,24628,24631,24633,24653,24656,24657,24666,24671,24673,24687,24693,24695,24697,24699,24700,24704,24705,24707,24728,24731,24736,24737,24741,24750,24752,24761,24775,24783,24790,24791,24794,24803,24809,24810,24814,24822,24825,24830,24849,24857,24879,24887,24900,24913,24915,24926,24927,24930,24980,25010,25016,25022,25023,25041,25065,25067,25075,25085,25104,25138,25139,25143,25148,25150,25186,25187,25188,25189,25190,25192,25194,25201,25227,25239,25240,25241,25258,25259,25262,25264,25272,25288,25292,25296,25297,25314,25341,25350,25351,25354,25356,25357,25359,25387,25403,25405,25411,25412,25413,25434,25443,25445,25449,25451,25457,25461,25465,25469,25474,25476,25483,25486,25492,25498,25499,25505,25515,25516,25524,25525,25533,25534,25542,25543,25545,25551,25552,25558,25559,25567,25573,25579,25580,25583,25586,25592,25595,25601,25616,25622,25623,25631,25632,25633,25651,25660,25669,25671,25673,25692,25699,25701,25722,25734,25745,25752,25753,25754,25775,25779,25784,25800,25801,25805,25810,25817,25832,25835,25841,25890,25917,25921,25922,25924,25964,25969,25986,25988,25994,25997,26009,26015,26030,26049,26052,26054,26055,26057,26064,26065,26069,26070,26071,26075,26077,26091,26098,26104,26107,26119,26120,26123,26125,26128,26130,26131,26132,26137,26138,26140,26147,26148,26154,26156,26158,26165,26173,26174,26178,26188,26191,26194,26200,26217,26220,26223,26228,26229,26233,26234,26240,26241,26244,26248,26250,26251,26252,26253,26254,26257,26264,26274,26279,26281,26283,26289,26293,26295,26299,26303,26310,26315,26320,26321,26327,26329,26335,26338,26340,26344,26346,26347,26350,26353,26356,26362,26363,26364,26373,26380,26394,26395,26397,26402,26403,26404,26408,26410,26416,26418,26421,26422,26424,26425,26426,26427,26428,26429,26430,26431,26436,26448,26452,26456,26458,26461,26465,26467,26469,26470,26471,26472,26473,26481,26486,26487,26489,26491,26493,26494,26497,26502,26506,26507,26509,26514,26515,26516,26518,26527,26532,26533,26538,26544,26555,26560,26563,26572,26574,26575,26577,26585,26586,26588,26589,26596,26599,26610,26615,26617,26619,26622,26624,26627,26629,26637,26638,26640,26646,26648,26663,26666,26667,26673,26677,26678,26685,26686,26687,26690,26692,26695,26698,26703,26704,26714,26715,26718,26719,26720,26721,26723,26729,26730,26733,26735,26736,26738,26739,26742,26743,26744,26745,26747,26749,26750,26751,26752,26756,26758,26768,26770,26773,26774,26775,26779,26784,26794,26802,26810,26811,26813,26815,26816,26821,26831,26834,26835,26836,26837,26840,26858,26861,26869,26872,26874,26880,26881,26891,26897,26902,26903,26904,26906,26909,26916,26921,26928,26930,26956,26964,26973,26976,26980,26983,27002,27034,27038,27042,27063,27081,27085,27087,27098,27101,27103,27111,27114,27121,27127,27134,27141,27148,27155,27156,27164,27168,27169,27197,27208,27215,27225,27237,27293,27300,27346,27351,27355,27359,27360,27372,27387,27397,27399,27401,27408,27431,27442,27443,27444,27466,27490,27504,27520,27527,27535,27547,27550,27552,27572,27577,27596,27608,27609,27611,27612,27615,27617,27620,27638,27653,27657,27677,27702,27703,27713,27715,27722,27726,27739,27780,27787,27803,27807,27812,27822,27842,27848,27849,27852,27865,27869,27875,27886,27894,27901,27903,27918,27943,27946,27951,27958,27962,27973,27975,27983,27990,27991,28000,28001,28002,28003,28008,28009,28011,28013,28024,28026,28032,28034,28035,28037,28038,28041,28042,28045,28050,28052,28058,28060,28062,28063,28082,28083,28084,28097,28098,28106,28107,28109,28110,28111,28123,28124,28125,28128,28131,28134,28136,28139,28140,28141,28142,28148,28156,28161,28163,28165,28166,28171,28176,28179,28180,28181,28186,28187,28188,28190,28191,28199,28200,28202,28204,28207,28211,28213,28216,28227,28230,28234,28249,28267,28269,28270,28271,28275,28276,28286,28297,28303,28306,28321,28323,28324,28340,28354,28379,28380,28384,28389,28395,28396,28398,28400,28402,28403,28406,28407,28408,28411,28412,28426,28437,28440,28447,28448,28452,28453,28460,28464,28469,28470,28472,28476,28477,28479,28480,28482,28483,28486,28491,28493,28496,28497,28499,28502,28512,28515,28522,28523,28534,28535,28541,28542,28546,28547,28549,28552,28553,28555,28556,28564,28566,28568,28572,28580,28587,28588,28590,28606,28607,28608,28609,28616,28617,28620,28622,28631,28635,28648,28649,28650,28655,28658,28669,28670,28671,28680,28694,28695,28700,28701,28711,28712,28727,28728,28730,28731,28732,28733,28734,28735,28747,28750,28754,28755,28757,28764,28768,28769,28776,28783,28788,28798,28808,28812,28813,28817,28818,28819,28824,28828,28829,28835,28837,28841,28844,28846,28847,28854,28860,28864,28867,28868,28875,28880,28881,28884,28889,28910,28919,28923,28924,28925,28928,28930,28937,28940,28942,28944,28945,28947,28951,28953,28968,28974,28975,28979,28983,28985,28986,28987,28989,28993,28995,28998,28999,29000,29003,29004,29006,29018,29020,29023,29024,29025,29026,29027,29028,29035,29036,29038,29040,29042,29045,29046,29048,29049,29050,29051,29053,29058,29064,29067,29068,29073,29076,29077,29087,29095,29096,29097,29102,29112,29114,29118,29119,29122,29130,29139,29145,29148,29152,29158,29162,29170,29180,29183,29185,29192,29195,29222,29227,29237,29238,29256,29292,29308,29309,29344,29346,29349,29377,29383,29390,29397,29407,29412,29418,29422,29424,29433,29434,29453,29459,29474,29495,29502,29513,29517,29528,29540,29542,29565,29568,29571,29573,29574,29578,29583,29587,29610,29611,29612,29616,29622,29625,29626,29630,29666,29671,29680,29685,29687,29688,29692,29705,29723,29728,29730,29736,29771,29776,29781,29788,29816,29818,29821,29825,29832,29836,29840,29847,29851,29862,29873,29878,29928,29975,29982,29988,29993,30005,30011,30014,30016,30020,30022,30027,30029,30034,30035,30042,30054,30075,30080,30084,30085,30091,30094,30099,30101,30110,30112,30116,30127,30129,30134,30135,30138,30139,30141,30170,30171,30172,30173,30177,30188,30195,30203,30207,30210,30211,30219,30220,30221,30223,30229,30230,30232,30237,30238,30247,30250,30251,30255,30283,30286,30289,30291,30297,30298,30299,30300,30304,30314,30317,30318,30321,30329,30334,30338,30339,30340,30341,30348,30351,30360,30366,30371,30382,30386,30392,30397,30409,30417,30421,30422,30427,30445,30487,30491,30495,30499,30500,30503,30504,30505,30510,30511,30531,30545,30546,30548,30550,30552,30554,30557,30560,30561,30565,30566,30569,30571,30572,30577,30580,30584,30585,30588,30589,30591,30594,30606,30609,30611,30613,30621,30623,30627,30630,30634,30636,30640,30641,30642,30646,30650,30654,30655,30657,30662,30667,30669,30671,30681,30682,30719,30720,30726,30730,30738,30741,30748,30750,30754,30755,30763,30776,30803,30826,30844,30846,30860,30861,30867,30881,30899,30902,30916,30930,30931,30937,30963,30965,30972,30974,30983,30986,31000,31042,31043,31044,31049,31053,31054,31057,31075,31076,31078,31083,31085]]],["+",[208,203,[[39,25,25,0,25,[[933,1,1,0,1],[934,2,2,1,3],[935,1,1,3,4],[937,1,1,4,5],[940,1,1,5,6],[942,2,2,6,8],[943,1,1,8,9],[945,1,1,9,10],[947,3,3,10,13],[948,2,2,13,15],[949,1,1,15,16],[950,2,2,16,18],[953,2,2,18,20],[954,2,2,20,22],[955,3,3,22,25]]],[40,22,22,25,47,[[958,3,3,25,28],[959,5,5,28,33],[960,1,1,33,34],[961,1,1,34,35],[962,2,2,35,37],[963,1,1,37,38],[964,1,1,38,39],[967,1,1,39,40],[968,1,1,40,41],[969,2,2,41,43],[970,3,3,43,46],[971,1,1,46,47]]],[41,29,28,47,75,[[973,1,1,47,48],[978,3,3,48,51],[980,4,4,51,55],[982,1,1,55,56],[983,3,3,56,59],[984,2,1,59,60],[985,1,1,60,61],[986,6,6,61,67],[988,3,3,67,70],[990,2,2,70,72],[991,2,2,72,74],[992,1,1,74,75]]],[42,37,37,75,112,[[999,5,5,75,80],[1000,2,2,80,82],[1001,3,3,82,85],[1002,3,3,85,88],[1003,3,3,88,91],[1004,5,5,91,96],[1006,2,2,96,98],[1007,1,1,98,99],[1008,1,1,99,100],[1009,2,2,100,102],[1010,2,2,102,104],[1011,2,2,104,106],[1012,2,2,106,108],[1013,1,1,108,109],[1014,1,1,109,110],[1016,1,1,110,111],[1017,1,1,111,112]]],[43,18,18,112,130,[[1021,3,3,112,115],[1022,2,2,115,117],[1023,1,1,117,118],[1025,1,1,118,119],[1030,1,1,119,120],[1031,1,1,120,121],[1032,2,2,121,123],[1033,1,1,123,124],[1036,1,1,124,125],[1039,1,1,125,126],[1041,1,1,126,127],[1043,2,2,127,129],[1044,1,1,129,130]]],[44,6,6,130,136,[[1048,2,2,130,132],[1050,1,1,132,133],[1053,2,2,133,135],[1054,1,1,135,136]]],[45,17,15,136,151,[[1063,2,2,136,138],[1067,1,1,138,139],[1068,3,2,139,141],[1070,1,1,141,142],[1071,4,3,142,145],[1072,1,1,145,146],[1073,1,1,146,147],[1074,1,1,147,148],[1076,2,2,148,150],[1077,1,1,150,151]]],[46,18,16,151,167,[[1078,2,2,151,153],[1079,1,1,153,154],[1084,1,1,154,155],[1085,2,1,155,156],[1087,2,2,156,158],[1088,2,2,158,160],[1089,6,5,160,165],[1090,2,2,165,167]]],[47,2,2,167,169,[[1092,1,1,167,168],[1093,1,1,168,169]]],[48,2,2,169,171,[[1101,1,1,169,170],[1102,1,1,170,171]]],[49,1,1,171,172,[[1105,1,1,171,172]]],[52,1,1,172,173,[[1118,1,1,172,173]]],[53,2,2,173,175,[[1123,2,2,173,175]]],[54,1,1,175,176,[[1126,1,1,175,176]]],[57,11,11,176,187,[[1134,1,1,176,177],[1136,3,3,177,180],[1137,1,1,180,181],[1140,1,1,181,182],[1141,1,1,182,183],[1142,2,2,183,185],[1143,1,1,185,186],[1144,1,1,186,187]]],[58,3,3,187,190,[[1147,2,2,187,189],[1149,1,1,189,190]]],[59,2,2,190,192,[[1152,2,2,190,192]]],[60,2,2,192,194,[[1156,1,1,192,193],[1158,1,1,193,194]]],[61,4,4,194,198,[[1160,2,2,194,196],[1161,2,2,196,198]]],[65,5,5,198,203,[[1175,1,1,198,199],[1186,2,2,199,201],[1187,1,1,201,202],[1188,1,1,202,203]]]],[23248,23306,23308,23334,23403,23491,23601,23614,23665,23721,23772,23773,23780,23805,23807,23853,23883,23888,24017,24051,24107,24109,24135,24143,24171,24279,24284,24286,24312,24313,24314,24315,24317,24345,24403,24425,24443,24481,24502,24673,24687,24736,24737,24794,24810,24814,24857,24930,25148,25150,25189,25259,25272,25296,25297,25403,25412,25449,25457,25505,25551,25567,25573,25579,25580,25583,25586,25622,25623,25633,25692,25722,25752,25753,25800,26123,26125,26128,26140,26147,26165,26194,26220,26229,26240,26264,26279,26320,26335,26362,26364,26395,26402,26403,26418,26424,26509,26516,26572,26599,26663,26667,26685,26698,26703,26704,26738,26744,26779,26816,26872,26904,27034,27038,27042,27085,27098,27111,27215,27408,27442,27443,27466,27504,27596,27726,27780,27848,27849,27886,28003,28011,28052,28123,28124,28180,28403,28408,28479,28491,28496,28555,28572,28588,28590,28609,28655,28669,28733,28768,28788,28818,28819,28835,28930,28947,28983,28985,28999,29018,29023,29024,29025,29026,29035,29046,29051,29095,29119,29308,29346,29424,29685,29771,29788,29840,29993,30020,30022,30027,30034,30099,30110,30139,30171,30195,30223,30297,30304,30339,30409,30422,30499,30531,30571,30572,30588,30594,30861,31042,31043,31057,31083]]],["I",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28998]]],["Nay",[3,3,[[39,2,2,0,2,[[933,1,1,0,1],[941,1,1,1,2]]],[42,1,1,2,3,[[1003,1,1,2,3]]]],[23271,23568,26340]]],["No",[3,3,[[42,2,2,0,2,[[997,1,1,0,1],[1017,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]]],[26065,26903,28000]]],["Not",[17,17,[[39,2,2,0,2,[[935,1,1,0,1],[943,1,1,1,2]]],[42,1,1,2,3,[[1002,1,1,2,3]]],[43,1,1,3,4,[[1027,1,1,3,4]]],[44,2,2,4,6,[[1049,1,1,4,5],[1054,1,1,5,6]]],[46,3,3,6,9,[[1078,1,1,6,7],[1080,1,1,7,8],[1087,1,1,8,9]]],[48,1,1,9,10,[[1098,1,1,9,10]]],[49,3,3,10,13,[[1105,1,1,10,11],[1106,2,2,11,13]]],[52,1,1,13,14,[[1118,1,1,13,14]]],[55,1,1,14,15,[[1131,1,1,14,15]]],[57,1,1,15,16,[[1140,1,1,15,16]]],[61,1,1,16,17,[[1161,1,1,16,17]]]],[23337,23644,26303,27300,28032,28161,28824,28846,28986,29238,29433,29453,29459,29687,29928,30101,30591]]],["Thou",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26836]]],["before",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25988]]],["did",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25065]]],["have",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26794]]],["it",[2,2,[[45,2,2,0,2,[[1073,2,2,0,2]]]],[28649,28650]]],["nay",[6,4,[[39,1,1,0,1,[[933,1,1,0,1]]],[43,1,1,1,2,[[1033,1,1,1,2]]],[46,2,1,2,3,[[1078,2,1,2,3]]],[58,2,1,3,4,[[1150,2,1,3,4]]]],[23271,27520,28817,30366]]],["neither",[15,12,[[39,2,2,0,2,[[951,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[964,1,1,2,3]]],[41,4,3,3,6,[[980,1,1,3,4],[984,2,1,4,5],[988,1,1,5,6]]],[43,3,3,6,9,[[1025,1,1,6,7],[1026,1,1,7,8],[1041,1,1,8,9]]],[47,3,1,9,10,[[1093,3,1,9,10]]],[50,1,1,10,11,[[1109,1,1,10,11]]],[60,1,1,11,12,[[1156,1,1,11,12]]]],[23931,24021,24514,25288,25483,25651,27197,27225,27787,29130,29528,30487]]],["never",[3,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,2,1,1,2,[[995,2,1,1,2]]]],[24775,25964]]],["no",[125,122,[[39,8,8,0,8,[[934,1,1,0,1],[940,1,1,1,2],[944,3,3,2,5],[952,1,1,5,6],[953,2,2,6,8]]],[40,10,10,8,18,[[958,1,1,8,9],[960,3,3,9,12],[962,1,1,12,13],[964,2,2,13,15],[965,1,1,15,16],[968,2,2,16,18]]],[41,15,15,18,33,[[973,2,2,18,20],[974,1,1,20,21],[979,2,2,21,23],[980,2,2,23,25],[981,1,1,25,26],[983,1,1,26,27],[984,2,2,27,29],[987,1,1,29,30],[992,2,2,30,32],[994,1,1,32,33]]],[42,23,22,33,55,[[997,1,1,33,34],[998,1,1,34,35],[1000,3,2,35,37],[1001,1,1,37,38],[1002,1,1,38,39],[1003,2,2,39,41],[1004,1,1,41,42],[1005,1,1,42,43],[1007,2,2,43,45],[1009,1,1,45,46],[1010,1,1,46,47],[1011,1,1,47,48],[1012,3,3,48,51],[1013,1,1,51,52],[1015,3,3,52,55]]],[43,14,14,55,69,[[1024,2,2,55,57],[1027,1,1,57,58],[1029,1,1,58,59],[1030,1,1,59,60],[1032,1,1,60,61],[1035,1,1,61,62],[1036,3,3,62,65],[1038,1,1,65,66],[1042,1,1,66,67],[1044,1,1,67,68],[1045,1,1,68,69]]],[44,9,9,69,78,[[1047,1,1,69,70],[1048,2,2,70,72],[1049,1,1,72,73],[1052,1,1,73,74],[1055,2,2,74,76],[1058,2,2,76,78]]],[45,9,8,78,86,[[1068,1,1,78,79],[1071,1,1,79,80],[1072,1,1,80,81],[1073,3,2,81,83],[1074,1,1,83,84],[1076,2,2,84,86]]],[46,3,3,86,89,[[1079,1,1,86,87],[1088,2,2,87,89]]],[47,3,3,89,92,[[1092,2,2,89,91],[1095,1,1,91,92]]],[48,1,1,92,93,[[1101,1,1,92,93]]],[50,1,1,93,94,[[1109,1,1,93,94]]],[51,1,1,94,95,[[1115,1,1,94,95]]],[54,1,1,95,96,[[1127,1,1,95,96]]],[57,4,4,96,100,[[1141,1,1,96,97],[1144,1,1,97,98],[1145,2,2,98,100]]],[58,1,1,100,101,[[1146,1,1,100,101]]],[59,1,1,101,102,[[1152,1,1,101,102]]],[61,6,6,102,108,[[1159,2,2,102,104],[1160,2,2,104,106],[1161,1,1,106,107],[1162,1,1,107,108]]],[63,1,1,108,109,[[1165,1,1,108,109]]],[65,14,13,109,122,[[1173,1,1,109,110],[1176,1,1,110,111],[1180,2,2,111,113],[1184,1,1,113,114],[1186,2,2,114,116],[1187,5,5,116,121],[1188,2,1,121,122]]]],[23283,23528,23676,23679,23680,23979,24011,24050,24277,24330,24340,24363,24412,24516,24517,24541,24693,24695,24900,24926,24980,25239,25240,25258,25272,25314,25434,25476,25492,25595,25801,25810,25917,26091,26098,26173,26200,26217,26310,26346,26380,26425,26481,26533,26577,26638,26687,26721,26736,26747,26751,26770,26831,26834,26840,27121,27127,27293,27355,27399,27444,27572,27608,27609,27611,27703,27822,27875,27901,27973,28009,28013,28037,28109,28200,28207,28267,28276,28512,28580,28616,28655,28658,28670,28730,28731,28837,29003,29004,29087,29097,29185,29309,29542,29622,29862,30127,30229,30251,30255,30283,30421,30545,30548,30557,30577,30584,30621,30662,30826,30867,30931,30937,31000,31044,31049,31054,31057,31075,31076,31078,31085]]],["none",[20,18,[[39,3,2,0,2,[[940,1,1,0,1],[954,2,1,1,2]]],[40,3,3,2,5,[[968,2,2,2,4],[970,1,1,4,5]]],[41,2,2,5,7,[[985,2,2,5,7]]],[42,1,1,7,8,[[1002,1,1,7,8]]],[43,2,2,8,10,[[1020,1,1,8,9],[1024,1,1,9,10]]],[44,5,4,10,14,[[1048,4,3,10,13],[1053,1,1,13,14]]],[46,1,1,14,15,[[1078,1,1,14,15]]],[47,1,1,15,16,[[1091,1,1,15,16]]],[61,1,1,16,17,[[1160,1,1,16,17]]],[65,1,1,17,18,[[1168,1,1,17,18]]]],[23532,24114,24704,24705,24809,25524,25525,26279,27002,27121,28001,28002,28003,28125,28813,29076,30560,30741]]],["nor",[3,2,[[45,3,2,0,2,[[1063,1,1,0,1],[1067,2,1,1,2]]]],[28403,28477]]],["not",[1127,1004,[[39,140,123,0,123,[[929,1,1,0,1],[930,2,1,1,2],[931,1,1,2,3],[932,2,2,3,5],[933,5,5,5,10],[934,5,5,10,15],[935,4,4,15,19],[936,2,2,19,21],[937,4,3,21,24],[938,10,7,24,31],[939,4,3,31,34],[940,12,10,34,44],[941,12,10,44,54],[942,1,1,54,55],[943,7,7,55,62],[944,7,6,62,68],[945,4,4,68,72],[946,4,4,72,76],[947,4,3,76,79],[948,4,4,79,83],[949,6,5,83,88],[950,6,6,88,94],[951,4,4,94,98],[952,9,8,98,106],[953,9,6,106,112],[954,8,8,112,120],[955,2,2,120,122],[956,1,1,122,123]]],[40,77,69,123,192,[[957,3,3,123,126],[958,3,3,126,129],[960,7,7,129,136],[961,1,1,136,137],[962,6,5,137,142],[963,7,7,142,149],[964,5,3,149,152],[965,14,10,152,162],[966,5,5,162,167],[967,5,5,167,172],[968,6,5,172,177],[969,5,5,177,182],[970,7,7,182,189],[971,1,1,189,190],[972,2,2,190,192]]],[41,106,98,192,290,[[973,3,3,192,195],[974,4,4,195,199],[975,1,1,199,200],[976,4,4,200,204],[977,3,3,204,207],[978,6,6,207,213],[979,6,4,213,217],[980,4,3,217,220],[981,7,7,220,227],[982,3,2,227,229],[983,4,4,229,233],[984,10,9,233,242],[985,6,6,242,248],[986,5,5,248,253],[987,3,3,253,256],[988,3,3,256,259],[989,4,4,259,263],[990,4,3,263,266],[991,8,7,266,273],[992,3,3,273,276],[993,4,3,276,279],[994,4,4,279,283],[995,2,2,283,285],[996,5,5,285,290]]],[42,205,187,290,477,[[997,13,12,290,302],[998,4,4,302,306],[999,8,8,306,314],[1000,5,5,314,319],[1001,15,14,319,333],[1002,10,10,333,343],[1003,12,11,343,354],[1004,19,17,354,371],[1005,14,12,371,383],[1006,15,13,383,396],[1007,9,9,396,405],[1008,14,13,405,418],[1009,6,6,418,424],[1010,11,9,424,433],[1011,7,7,433,440],[1012,11,11,440,451],[1013,7,5,451,456],[1014,7,6,456,462],[1015,5,4,462,466],[1016,6,6,466,472],[1017,7,5,472,477]]],[43,68,66,477,543,[[1018,2,2,477,479],[1019,6,6,479,485],[1022,4,4,485,489],[1023,2,2,489,491],[1024,8,8,491,499],[1025,2,2,499,501],[1026,1,1,501,502],[1029,4,4,502,506],[1030,5,4,506,510],[1031,1,1,510,511],[1033,1,1,511,512],[1034,5,5,512,517],[1035,1,1,517,518],[1036,5,5,518,523],[1037,3,3,523,526],[1038,2,2,526,528],[1039,3,3,528,531],[1040,2,1,531,532],[1042,3,3,532,535],[1043,3,3,535,538],[1044,3,3,538,541],[1045,2,2,541,543]]],[44,98,81,543,624,[[1046,5,5,543,548],[1047,5,4,548,552],[1048,1,1,552,553],[1049,8,8,553,561],[1050,5,5,561,566],[1051,4,3,566,569],[1052,11,7,569,576],[1053,11,10,576,586],[1054,13,13,586,599],[1055,6,5,599,604],[1056,7,6,604,610],[1057,1,1,610,611],[1058,8,4,611,615],[1059,5,3,615,618],[1060,6,4,618,622],[1061,2,2,622,624]]],[45,116,92,624,716,[[1062,7,4,624,628],[1063,9,9,628,637],[1064,3,3,637,640],[1065,6,6,640,646],[1066,3,2,646,648],[1067,11,9,648,657],[1068,8,7,657,664],[1069,2,2,664,666],[1070,14,9,666,675],[1071,5,4,675,679],[1072,9,7,679,686],[1073,8,4,686,690],[1074,6,3,690,693],[1075,8,7,693,700],[1076,15,14,700,714],[1077,2,2,714,716]]],[46,68,56,716,772,[[1078,4,4,716,720],[1079,3,3,720,723],[1080,4,3,723,726],[1081,7,5,726,731],[1082,5,4,731,735],[1083,1,1,735,736],[1084,5,5,736,741],[1085,8,7,741,748],[1086,1,1,748,749],[1087,7,6,749,755],[1088,8,6,755,761],[1089,10,6,761,767],[1090,5,5,767,772]]],[47,27,25,772,797,[[1091,6,6,772,778],[1092,5,4,778,782],[1093,4,4,782,786],[1094,7,6,786,792],[1095,3,3,792,795],[1096,2,2,795,797]]],[48,7,7,797,804,[[1097,2,2,797,799],[1098,1,1,799,800],[1099,1,1,800,801],[1100,1,1,801,802],[1102,2,2,802,804]]],[49,9,9,804,813,[[1103,3,3,804,807],[1104,4,4,807,811],[1105,2,2,811,813]]],[50,6,6,813,819,[[1107,1,1,813,814],[1108,4,4,814,818],[1109,1,1,818,819]]],[51,15,15,819,834,[[1111,2,2,819,821],[1112,6,6,821,827],[1114,4,4,827,831],[1115,3,3,831,834]]],[52,6,6,834,840,[[1117,2,2,834,836],[1118,4,4,836,840]]],[53,7,7,840,847,[[1119,1,1,840,841],[1120,3,3,841,844],[1121,1,1,844,845],[1123,2,2,845,847]]],[54,10,10,847,857,[[1125,4,4,847,851],[1126,4,4,851,855],[1128,2,2,855,857]]],[57,45,43,857,900,[[1133,1,1,857,858],[1134,2,2,858,860],[1135,3,3,860,863],[1136,2,2,863,865],[1137,2,2,865,867],[1138,1,1,867,868],[1139,5,5,868,873],[1140,2,2,873,875],[1141,4,3,875,878],[1142,6,6,878,884],[1143,7,7,884,891],[1144,7,7,891,898],[1145,3,2,898,900]]],[58,21,20,900,920,[[1146,3,3,900,903],[1147,6,6,903,909],[1148,3,3,909,912],[1149,7,6,912,918],[1150,2,2,918,920]]],[59,9,9,920,929,[[1151,4,4,920,924],[1152,3,3,924,927],[1153,2,2,927,929]]],[60,9,8,929,937,[[1156,3,3,929,932],[1157,6,5,932,937]]],[61,35,28,937,965,[[1159,4,3,937,940],[1160,10,8,940,948],[1161,6,4,948,952],[1162,7,6,952,958],[1163,8,7,958,965]]],[62,5,5,965,970,[[1164,5,5,965,970]]],[63,3,3,970,973,[[1165,3,3,970,973]]],[64,2,2,973,975,[[1166,2,2,973,975]]],[65,33,29,975,1004,[[1168,8,6,975,981],[1169,5,5,981,986],[1170,1,1,986,987],[1172,1,1,987,988],[1175,3,3,988,991],[1177,1,1,991,992],[1178,2,2,992,994],[1179,1,1,994,995],[1180,1,1,995,996],[1182,4,4,996,1000],[1183,4,2,1000,1002],[1186,2,2,1002,1004]]]],[23169,23187,23203,23213,23216,23251,23255,23261,23267,23270,23287,23302,23308,23310,23312,23319,23338,23341,23345,23353,23365,23391,23392,23393,23437,23441,23443,23446,23451,23454,23455,23470,23476,23479,23492,23493,23494,23496,23508,23509,23513,23514,23520,23521,23544,23550,23551,23552,23556,23560,23573,23594,23596,23597,23613,23635,23646,23653,23656,23657,23659,23665,23675,23683,23684,23689,23690,23695,23712,23716,23719,23724,23741,23749,23757,23760,23766,23770,23780,23814,23815,23818,23820,23847,23851,23855,23856,23858,23875,23880,23888,23889,23903,23904,23921,23922,23948,23955,23959,23978,23986,23996,23999,24000,24001,24007,24020,24032,24034,24051,24052,24053,24065,24078,24093,24094,24096,24124,24126,24128,24142,24163,24201,24222,24237,24249,24277,24278,24287,24328,24336,24344,24348,24350,24357,24361,24383,24410,24411,24426,24433,24459,24466,24467,24468,24481,24482,24487,24490,24518,24521,24533,24544,24556,24566,24568,24575,24576,24578,24582,24584,24586,24615,24626,24628,24631,24633,24653,24656,24657,24666,24671,24687,24697,24699,24700,24707,24728,24731,24741,24750,24752,24761,24783,24790,24791,24803,24822,24825,24849,24879,24887,24913,24915,24927,25010,25016,25022,25023,25041,25067,25075,25085,25104,25138,25139,25143,25186,25187,25188,25190,25192,25194,25201,25227,25240,25241,25262,25264,25292,25341,25350,25351,25354,25356,25357,25359,25387,25405,25413,25443,25445,25451,25461,25465,25469,25474,25486,25498,25499,25515,25516,25533,25534,25542,25543,25545,25552,25558,25559,25579,25580,25586,25592,25601,25616,25631,25632,25651,25660,25669,25671,25673,25692,25699,25701,25734,25745,25752,25753,25754,25775,25779,25784,25805,25817,25832,25835,25841,25890,25921,25922,25924,25969,25986,25994,25997,26009,26015,26030,26049,26052,26054,26055,26057,26064,26065,26069,26070,26071,26075,26077,26104,26107,26119,26120,26130,26131,26132,26137,26138,26148,26154,26156,26158,26174,26178,26188,26191,26223,26228,26233,26234,26240,26241,26244,26248,26250,26251,26252,26253,26254,26257,26274,26281,26283,26289,26293,26295,26299,26315,26321,26327,26329,26338,26344,26347,26350,26353,26356,26362,26363,26364,26373,26394,26397,26404,26408,26410,26416,26421,26422,26424,26425,26426,26427,26428,26429,26430,26431,26436,26448,26452,26456,26458,26461,26465,26467,26469,26470,26471,26472,26473,26486,26487,26489,26491,26493,26494,26497,26502,26506,26507,26514,26515,26518,26527,26532,26538,26544,26555,26560,26563,26574,26575,26585,26586,26588,26589,26596,26610,26615,26617,26619,26622,26624,26627,26629,26637,26638,26640,26646,26648,26666,26673,26677,26678,26685,26686,26690,26692,26695,26698,26714,26715,26718,26719,26720,26721,26723,26729,26730,26733,26735,26739,26742,26743,26745,26752,26756,26758,26768,26773,26774,26775,26784,26802,26810,26811,26813,26815,26821,26835,26837,26858,26861,26869,26874,26880,26881,26891,26897,26902,26906,26909,26916,26921,26928,26930,26956,26964,26973,26976,26980,26983,27063,27081,27087,27101,27103,27114,27134,27141,27148,27155,27156,27164,27168,27169,27197,27208,27237,27346,27351,27359,27360,27372,27387,27397,27401,27431,27490,27527,27535,27547,27550,27552,27577,27611,27612,27615,27617,27620,27638,27653,27657,27677,27702,27713,27715,27722,27739,27803,27807,27812,27842,27849,27852,27865,27869,27894,27903,27918,27943,27946,27951,27958,27962,27975,27983,27990,27991,28008,28024,28026,28034,28035,28038,28041,28042,28045,28050,28058,28060,28062,28063,28082,28083,28084,28097,28098,28106,28107,28109,28110,28111,28125,28128,28131,28134,28136,28139,28140,28141,28142,28148,28156,28161,28163,28165,28166,28171,28176,28179,28180,28181,28186,28187,28188,28190,28191,28199,28202,28204,28211,28213,28216,28227,28230,28234,28249,28269,28270,28271,28275,28286,28297,28303,28306,28321,28323,28324,28340,28354,28379,28380,28384,28389,28395,28396,28398,28400,28402,28403,28406,28407,28408,28411,28412,28426,28437,28440,28447,28448,28452,28453,28460,28464,28469,28470,28472,28476,28479,28480,28482,28483,28486,28493,28497,28499,28502,28515,28522,28523,28534,28535,28541,28542,28546,28547,28549,28552,28553,28564,28566,28568,28580,28587,28590,28606,28607,28608,28617,28620,28622,28631,28635,28648,28649,28650,28669,28670,28671,28680,28694,28695,28700,28701,28711,28712,28727,28728,28732,28733,28734,28735,28747,28750,28754,28755,28757,28764,28769,28776,28783,28798,28808,28812,28818,28819,28828,28829,28841,28844,28847,28854,28860,28864,28867,28868,28875,28880,28881,28884,28889,28910,28919,28923,28924,28925,28928,28937,28940,28942,28944,28945,28951,28953,28968,28974,28975,28979,28983,28987,28989,28993,28995,29000,29006,29018,29020,29027,29028,29036,29038,29040,29042,29045,29048,29049,29050,29053,29058,29064,29067,29068,29073,29077,29095,29096,29097,29102,29112,29114,29118,29122,29139,29145,29148,29152,29158,29162,29170,29180,29183,29192,29195,29222,29227,29237,29256,29292,29344,29349,29377,29383,29390,29397,29407,29412,29418,29422,29434,29474,29495,29502,29513,29517,29540,29565,29568,29571,29573,29574,29578,29583,29587,29610,29611,29612,29616,29625,29626,29630,29666,29671,29680,29687,29688,29692,29705,29723,29728,29730,29736,29776,29781,29816,29818,29821,29825,29832,29836,29847,29851,29873,29878,29975,29982,29988,30005,30011,30014,30016,30029,30035,30042,30054,30075,30080,30084,30085,30091,30094,30101,30112,30116,30129,30134,30135,30138,30141,30170,30172,30173,30177,30188,30203,30207,30210,30211,30219,30220,30221,30230,30232,30237,30238,30247,30250,30286,30289,30291,30298,30299,30300,30314,30317,30318,30321,30329,30334,30338,30339,30340,30341,30348,30351,30360,30371,30382,30386,30392,30397,30409,30417,30422,30427,30445,30491,30495,30500,30503,30504,30505,30510,30511,30546,30548,30550,30552,30554,30561,30565,30566,30569,30571,30577,30580,30585,30588,30589,30606,30609,30611,30613,30621,30623,30627,30630,30634,30636,30640,30641,30642,30646,30650,30654,30655,30657,30667,30669,30671,30681,30682,30719,30720,30726,30730,30738,30741,30748,30750,30754,30755,30763,30776,30803,30844,30846,30860,30881,30899,30902,30916,30930,30963,30965,30972,30974,30983,30986,31042,31053]]],["nothing",[3,3,[[41,2,2,0,2,[[980,1,1,0,1],[983,1,1,1,2]]],[45,1,1,2,3,[[1070,1,1,2,3]]]],[25262,25411,28556]]],["shall",[2,2,[[42,1,1,0,1,[[1012,1,1,0,1]]],[45,1,1,1,2,[[1067,1,1,1,2]]]],[26749,28477]]],["thou",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24830]]],["ye",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26750]]]]},{"k":"G3757","v":[["*",[47,47,[[39,3,3,0,3,[[930,1,1,0,1],[946,1,1,1,2],[956,1,1,2,3]]],[41,9,9,3,12,[[976,2,2,3,5],[982,1,1,5,6],[984,1,1,6,7],[985,1,1,7,8],[994,1,1,8,9],[995,1,1,9,10],[996,2,2,10,12]]],[42,2,2,12,14,[[1007,1,1,12,13],[1009,1,1,13,14]]],[43,15,15,14,29,[[1018,1,1,14,15],[1019,1,1,15,16],[1024,2,2,16,18],[1029,1,1,18,19],[1033,1,1,19,20],[1037,2,2,20,22],[1038,1,1,22,23],[1040,3,3,23,26],[1042,2,2,26,28],[1045,1,1,28,29]]],[44,4,4,29,33,[[1049,1,1,29,30],[1050,1,1,30,31],[1054,1,1,31,32],[1056,1,1,32,33]]],[45,3,3,33,36,[[1072,1,1,33,34],[1076,1,1,34,35],[1077,1,1,35,36]]],[46,1,1,36,37,[[1080,1,1,36,37]]],[47,2,2,37,39,[[1093,1,1,37,38],[1094,1,1,38,39]]],[50,1,1,39,40,[[1109,1,1,39,40]]],[57,2,2,40,42,[[1135,2,2,40,42]]],[60,1,1,42,43,[[1156,1,1,42,43]]],[65,4,4,43,47,[[1168,1,1,43,44],[1172,1,1,44,45],[1173,1,1,45,46],[1183,1,1,46,47]]]],[23178,23747,24211,25079,25080,25364,25518,25539,25874,25988,26019,26040,26564,26668,26936,26951,27134,27145,27349,27496,27632,27634,27690,27746,27748,27755,27806,27817,27913,28037,28067,28181,28234,28626,28743,28782,28858,29121,29150,29518,30004,30008,30498,30742,30804,30813,30990]]],["+",[21,21,[[41,3,3,0,3,[[984,1,1,0,1],[985,1,1,1,2],[996,1,1,2,3]]],[42,1,1,3,4,[[1009,1,1,3,4]]],[43,6,6,4,10,[[1024,1,1,4,5],[1038,1,1,5,6],[1040,3,3,6,9],[1042,1,1,9,10]]],[44,1,1,10,11,[[1056,1,1,10,11]]],[45,3,3,11,14,[[1072,1,1,11,12],[1076,1,1,12,13],[1077,1,1,13,14]]],[47,2,2,14,16,[[1093,1,1,14,15],[1094,1,1,15,16]]],[57,1,1,16,17,[[1135,1,1,16,17]]],[60,1,1,17,18,[[1156,1,1,17,18]]],[65,3,3,18,21,[[1168,1,1,18,19],[1172,1,1,19,20],[1173,1,1,20,21]]]],[25518,25539,26040,26668,27134,27690,27746,27748,27755,27817,28234,28626,28743,28782,29121,29150,30008,30498,30742,30804,30813]]],["When",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30004]]],["Where",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27913]]],["where",[21,21,[[39,3,3,0,3,[[930,1,1,0,1],[946,1,1,1,2],[956,1,1,2,3]]],[41,3,3,3,6,[[976,2,2,3,5],[994,1,1,5,6]]],[42,1,1,6,7,[[1007,1,1,6,7]]],[43,8,8,7,15,[[1018,1,1,7,8],[1019,1,1,8,9],[1024,1,1,9,10],[1029,1,1,10,11],[1033,1,1,11,12],[1037,2,2,12,14],[1042,1,1,14,15]]],[44,3,3,15,18,[[1049,1,1,15,16],[1050,1,1,16,17],[1054,1,1,17,18]]],[46,1,1,18,19,[[1080,1,1,18,19]]],[50,1,1,19,20,[[1109,1,1,19,20]]],[65,1,1,20,21,[[1183,1,1,20,21]]]],[23178,23747,24211,25079,25080,25874,26564,26936,26951,27145,27349,27496,27632,27634,27806,28037,28067,28181,28858,29518,30990]]],["wherein",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25988]]],["whither",[2,2,[[41,2,2,0,2,[[982,1,1,0,1],[996,1,1,1,2]]]],[25364,26019]]]]},{"k":"G3758","v":[["Ah",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24855]]]]},{"k":"G3759","v":[["*",[47,36,[[39,14,12,0,12,[[939,2,1,0,1],[946,2,1,1,2],[951,8,8,2,10],[952,1,1,10,11],[954,1,1,11,12]]],[40,2,2,12,14,[[969,1,1,12,13],[970,1,1,13,14]]],[41,15,13,14,27,[[978,4,3,14,17],[982,2,1,17,18],[983,6,6,18,24],[989,1,1,24,25],[993,1,1,25,26],[994,1,1,26,27]]],[45,1,1,27,28,[[1070,1,1,27,28]]],[64,1,1,28,29,[[1166,1,1,28,29]]],[65,14,7,29,36,[[1174,3,1,29,30],[1175,2,1,30,31],[1177,2,1,31,32],[1178,1,1,32,33],[1184,6,3,33,36]]]],[23480,23734,23931,23932,23933,23934,23941,23943,23945,23947,23976,24078,24734,24775,25170,25171,25172,25376,25447,25448,25449,25451,25452,25457,25652,25849,25886,28556,30683,30840,30852,30886,30903,31003,31009,31012]]],["Alas",[3,3,[[65,3,3,0,3,[[1184,3,3,0,3]]]],[31003,31009,31012]]],["Woe",[21,20,[[39,9,9,0,9,[[939,1,1,0,1],[946,1,1,1,2],[951,7,7,2,9]]],[41,9,8,9,17,[[978,3,2,9,11],[982,1,1,11,12],[983,5,5,12,17]]],[64,1,1,17,18,[[1166,1,1,17,18]]],[65,2,2,18,20,[[1174,1,1,18,19],[1178,1,1,19,20]]]],[23480,23734,23932,23933,23934,23941,23943,23945,23947,25171,25172,25376,25448,25449,25451,25452,25457,30683,30840,30903]]],["alas",[3,3,[[65,3,3,0,3,[[1184,3,3,0,3]]]],[31003,31009,31012]]],["woe",[19,17,[[39,5,5,0,5,[[939,1,1,0,1],[946,1,1,1,2],[951,1,1,2,3],[952,1,1,3,4],[954,1,1,4,5]]],[40,2,2,5,7,[[969,1,1,5,6],[970,1,1,6,7]]],[41,6,6,7,13,[[978,1,1,7,8],[982,1,1,8,9],[983,1,1,9,10],[989,1,1,10,11],[993,1,1,11,12],[994,1,1,12,13]]],[45,1,1,13,14,[[1070,1,1,13,14]]],[65,5,3,14,17,[[1174,2,1,14,15],[1175,1,1,15,16],[1177,2,1,16,17]]]],[23480,23734,23931,23976,24078,24734,24775,25170,25376,25447,25652,25849,25886,28556,30840,30852,30886]]],["woes",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30852]]]]},{"k":"G3760","v":[["not",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23175]]]]},{"k":"G3761","v":[["*",[137,125,[[39,26,24,0,24,[[933,1,1,0,1],[934,6,5,1,6],[935,1,1,6,7],[936,1,1,7,8],[937,1,1,8,9],[938,1,1,9,10],[939,1,1,10,11],[940,3,2,11,13],[941,1,1,13,14],[944,2,2,14,16],[949,1,1,16,17],[950,1,1,17,18],[951,1,1,18,19],[952,2,2,19,21],[953,2,2,21,23],[955,1,1,23,24]]],[40,12,11,24,35,[[960,1,1,24,25],[962,1,1,25,26],[964,1,1,26,27],[967,2,2,27,29],[968,2,2,29,31],[969,2,1,31,32],[970,2,2,32,34],[972,1,1,34,35]]],[41,19,17,35,52,[[978,3,3,35,38],[979,2,2,38,40],[980,1,1,40,41],[983,1,1,41,42],[984,5,3,42,45],[988,1,1,45,46],[989,1,1,46,47],[990,1,1,47,48],[992,1,1,48,49],[993,1,1,49,50],[995,2,2,50,52]]],[42,14,13,52,65,[[997,3,2,52,54],[1001,1,1,54,55],[1002,1,1,55,56],[1003,1,1,56,57],[1004,2,2,57,59],[1007,1,1,59,60],[1009,1,1,60,61],[1010,1,1,61,62],[1011,1,1,62,63],[1012,1,1,63,64],[1017,1,1,64,65]]],[43,12,12,65,77,[[1019,2,2,65,67],[1021,2,2,67,69],[1024,1,1,69,70],[1025,1,1,70,71],[1026,1,1,71,72],[1033,1,1,72,73],[1034,1,1,73,74],[1036,1,1,74,75],[1037,1,1,75,76],[1041,1,1,76,77]]],[44,7,7,77,84,[[1047,1,1,77,78],[1048,1,1,78,79],[1049,1,1,79,80],[1053,1,1,80,81],[1054,2,2,81,83],[1056,1,1,83,84]]],[45,10,10,84,94,[[1063,1,1,84,85],[1065,1,1,85,86],[1066,1,1,86,87],[1067,1,1,87,88],[1072,2,2,88,90],[1075,1,1,90,91],[1076,3,3,91,94]]],[46,2,2,94,96,[[1080,1,1,94,95],[1084,1,1,95,96]]],[47,9,8,96,104,[[1091,3,3,96,99],[1092,2,2,99,101],[1093,2,1,101,102],[1094,1,1,102,103],[1096,1,1,103,104]]],[49,1,1,104,105,[[1104,1,1,104,105]]],[51,2,2,105,107,[[1112,1,1,105,106],[1115,1,1,106,107]]],[52,1,1,107,108,[[1118,1,1,107,108]]],[53,3,3,108,111,[[1120,1,1,108,109],[1124,2,2,109,111]]],[57,6,6,111,117,[[1140,1,1,111,112],[1141,3,3,112,115],[1142,1,1,115,116],[1145,1,1,116,117]]],[59,1,1,117,118,[[1152,1,1,117,118]]],[60,1,1,118,119,[[1156,1,1,118,119]]],[61,2,2,119,121,[[1160,1,1,119,120],[1161,1,1,120,121]]],[65,9,4,121,125,[[1171,3,1,121,122],[1173,3,1,122,123],[1175,2,1,123,124],[1187,1,1,124,125]]]],[23249,23297,23302,23308,23310,23311,23334,23355,23396,23441,23486,23493,23508,23552,23681,23682,23853,23918,23931,23978,23993,24021,24053,24143,24345,24438,24517,24666,24673,24683,24694,24749,24813,24822,24886,25149,25189,25190,25202,25204,25262,25438,25483,25486,25492,25651,25672,25701,25787,25841,25950,25975,26047,26057,26232,26281,26333,26392,26423,26573,26646,26685,26703,26729,26923,26976,26980,27054,27056,27121,27197,27225,27504,27548,27587,27650,27787,27990,28001,28037,28123,28162,28171,28230,28400,28436,28455,28472,28614,28616,28699,28731,28734,28768,28851,28928,29058,29069,29074,29084,29086,29130,29145,29201,29407,29573,29626,29686,29728,29795,29804,30096,30117,30123,30130,30141,30246,30421,30487,30573,30585,30782,30826,30844,31076]]],["+",[8,8,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,2,2,1,3,[[978,1,1,1,2],[988,1,1,2,3]]],[42,1,1,3,4,[[1001,1,1,3,4]]],[43,2,2,4,6,[[1021,1,1,4,5],[1036,1,1,5,6]]],[46,1,1,6,7,[[1080,1,1,6,7]]],[65,1,1,7,8,[[1173,1,1,7,8]]]],[24438,25149,25651,26232,27054,27587,28851,30826]]],["Neither",[14,14,[[39,4,4,0,4,[[933,1,1,0,1],[937,1,1,1,2],[944,1,1,2,3],[949,1,1,3,4]]],[40,1,1,4,5,[[967,1,1,4,5]]],[41,2,2,5,7,[[989,1,1,5,6],[992,1,1,6,7]]],[42,1,1,7,8,[[1004,1,1,7,8]]],[43,2,2,8,10,[[1021,1,1,8,9],[1034,1,1,9,10]]],[44,1,1,10,11,[[1054,1,1,10,11]]],[47,1,1,11,12,[[1091,1,1,11,12]]],[52,1,1,12,13,[[1118,1,1,12,13]]],[57,1,1,13,14,[[1141,1,1,13,14]]]],[23249,23396,23682,23853,24673,25672,25787,26392,27056,27548,28162,29074,29686,30117]]],["Nor",[2,2,[[42,1,1,0,1,[[1007,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[26573,30130]]],["as",[2,2,[[41,1,1,0,1,[[990,1,1,0,1]]],[45,1,1,1,2,[[1066,1,1,1,2]]]],[25701,28455]]],["even",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[45,1,1,1,2,[[1072,1,1,1,2]]]],[23311,28614]]],["neither",[52,50,[[39,11,11,0,11,[[934,3,3,0,3],[935,1,1,3,4],[939,1,1,4,5],[940,2,2,5,7],[941,1,1,7,8],[944,1,1,8,9],[950,1,1,9,10],[951,1,1,10,11]]],[40,8,8,11,19,[[960,1,1,11,12],[964,1,1,12,13],[967,1,1,13,14],[968,1,1,14,15],[969,1,1,15,16],[970,2,2,16,18],[972,1,1,18,19]]],[41,5,5,19,24,[[978,1,1,19,20],[979,1,1,20,21],[980,1,1,21,22],[983,1,1,22,23],[984,1,1,23,24]]],[42,5,5,24,29,[[1002,1,1,24,25],[1003,1,1,25,26],[1004,1,1,26,27],[1009,1,1,27,28],[1010,1,1,28,29]]],[43,4,4,29,33,[[1019,2,2,29,31],[1033,1,1,31,32],[1037,1,1,32,33]]],[44,2,2,33,35,[[1047,1,1,33,34],[1053,1,1,34,35]]],[45,2,2,35,37,[[1072,1,1,35,36],[1076,1,1,36,37]]],[47,4,4,37,41,[[1091,2,2,37,39],[1092,1,1,39,40],[1096,1,1,40,41]]],[49,1,1,41,42,[[1104,1,1,41,42]]],[57,2,2,42,44,[[1141,1,1,42,43],[1142,1,1,43,44]]],[59,1,1,44,45,[[1152,1,1,44,45]]],[61,1,1,45,46,[[1161,1,1,45,46]]],[65,6,4,46,50,[[1171,2,1,46,47],[1173,1,1,47,48],[1175,2,1,48,49],[1187,1,1,49,50]]]],[23297,23308,23310,23334,23486,23493,23508,23552,23681,23918,23931,24345,24517,24666,24694,24749,24813,24822,24886,25189,25202,25262,25438,25492,26281,26333,26423,26646,26685,26976,26980,27504,27650,27990,28123,28616,28768,29058,29069,29084,29201,29407,30123,30141,30421,30585,30782,30826,30844,31076]]],["never",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24143]]],["no",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[42,1,1,1,2,[[1011,1,1,1,2]]],[44,1,1,2,3,[[1049,1,1,2,3]]]],[23978,26703,28037]]],["nor",[29,26,[[39,5,5,0,5,[[934,2,2,0,2],[938,1,1,2,3],[940,1,1,3,4],[953,1,1,4,5]]],[41,4,3,5,8,[[978,1,1,5,6],[984,2,1,6,7],[993,1,1,7,8]]],[42,3,2,8,10,[[997,2,1,8,9],[1012,1,1,9,10]]],[43,3,3,10,13,[[1025,1,1,10,11],[1026,1,1,11,12],[1041,1,1,12,13]]],[44,1,1,13,14,[[1054,1,1,13,14]]],[45,1,1,14,15,[[1063,1,1,14,15]]],[46,1,1,15,16,[[1084,1,1,15,16]]],[47,3,2,16,18,[[1093,2,1,16,17],[1094,1,1,17,18]]],[51,2,2,18,20,[[1112,1,1,18,19],[1115,1,1,19,20]]],[53,2,2,20,22,[[1120,1,1,20,21],[1124,1,1,21,22]]],[57,1,1,22,23,[[1145,1,1,22,23]]],[60,1,1,23,24,[[1156,1,1,23,24]]],[65,2,2,24,26,[[1171,1,1,24,25],[1173,1,1,25,26]]]],[23302,23308,23441,23508,24021,25190,25483,25841,26057,26729,27197,27225,27787,28171,28400,28928,29130,29145,29573,29626,29728,29804,30246,30487,30782,30826]]],["not",[22,21,[[39,3,3,0,3,[[936,1,1,0,1],[952,1,1,1,2],[953,1,1,2,3]]],[40,2,2,3,5,[[968,1,1,3,4],[969,1,1,4,5]]],[41,4,3,5,8,[[979,1,1,5,6],[984,2,1,6,7],[995,1,1,7,8]]],[42,2,2,8,10,[[997,1,1,8,9],[1017,1,1,9,10]]],[43,1,1,10,11,[[1024,1,1,10,11]]],[44,2,2,11,13,[[1048,1,1,11,12],[1056,1,1,12,13]]],[45,5,5,13,18,[[1065,1,1,13,14],[1067,1,1,14,15],[1075,1,1,15,16],[1076,2,2,16,18]]],[47,1,1,18,19,[[1092,1,1,18,19]]],[57,1,1,19,20,[[1140,1,1,19,20]]],[61,1,1,20,21,[[1160,1,1,20,21]]]],[23355,23993,24053,24683,24749,25204,25486,25975,26047,26923,27121,28001,28230,28436,28472,28699,28731,28734,29086,30096,30573]]],["we",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29795]]],["yet",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25950]]]]},{"k":"G3762","v":[["*",[233,221,[[39,18,18,0,18,[[933,1,1,0,1],[934,1,1,1,2],[937,1,1,2,3],[938,1,1,3,4],[939,1,1,4,5],[945,2,2,5,7],[947,1,1,7,8],[948,1,1,8,9],[949,1,1,9,10],[950,2,2,10,12],[951,2,2,12,14],[952,1,1,14,15],[954,1,1,15,16],[955,2,2,16,18]]],[40,26,25,18,43,[[958,2,2,18,20],[959,1,1,20,21],[961,3,3,21,24],[963,3,3,24,27],[965,3,3,27,30],[966,2,2,30,32],[967,2,2,32,34],[968,2,2,34,36],[969,1,1,36,37],[970,2,2,37,39],[971,3,3,39,42],[972,2,1,42,43]]],[41,36,35,43,78,[[973,1,1,43,44],[976,4,4,44,48],[977,4,4,48,52],[979,1,1,52,53],[980,3,3,53,56],[981,3,2,56,58],[982,2,2,58,60],[983,1,1,60,61],[984,1,1,61,62],[986,1,1,62,63],[987,1,1,63,64],[988,1,1,64,65],[990,3,3,65,68],[991,1,1,68,69],[992,1,1,69,70],[994,1,1,70,71],[995,7,7,71,78]]],[42,53,53,78,131,[[997,1,1,78,79],[999,4,4,79,83],[1000,1,1,83,84],[1001,3,3,84,87],[1002,3,3,87,90],[1003,7,7,90,97],[1004,7,7,97,104],[1005,2,2,104,106],[1006,3,3,106,109],[1007,1,1,109,110],[1008,1,1,110,111],[1009,1,1,111,112],[1010,2,2,112,114],[1011,3,3,114,117],[1012,5,5,117,122],[1013,1,1,122,123],[1014,3,3,123,126],[1015,3,3,126,129],[1017,2,2,129,131]]],[43,27,26,131,157,[[1021,2,2,131,133],[1022,3,3,133,136],[1025,1,1,136,137],[1026,1,1,137,138],[1032,1,1,138,139],[1034,1,1,139,140],[1035,2,2,140,142],[1036,1,1,142,143],[1037,3,3,143,146],[1038,1,1,146,147],[1040,1,1,147,148],[1042,4,3,148,151],[1043,2,2,151,153],[1044,2,2,153,155],[1045,2,2,155,157]]],[44,4,3,157,160,[[1053,1,1,157,158],[1059,3,2,158,160]]],[45,18,15,160,175,[[1062,1,1,160,161],[1063,3,3,161,164],[1064,1,1,164,165],[1065,1,1,165,166],[1068,2,1,166,167],[1069,3,2,167,169],[1070,1,1,169,170],[1073,2,1,170,171],[1074,2,2,171,173],[1075,2,2,173,175]]],[46,8,5,175,180,[[1082,1,1,175,176],[1084,4,2,176,178],[1088,1,1,178,179],[1089,2,1,179,180]]],[47,8,7,180,187,[[1092,2,1,180,181],[1093,2,2,181,183],[1094,2,2,183,185],[1095,2,2,185,187]]],[48,1,1,187,188,[[1101,1,1,187,188]]],[49,3,3,188,191,[[1103,1,1,188,189],[1104,1,1,189,190],[1106,1,1,190,191]]],[53,3,3,191,194,[[1122,1,1,191,192],[1124,2,2,192,194]]],[54,3,3,194,197,[[1126,2,2,194,196],[1128,1,1,196,197]]],[55,1,1,197,198,[[1129,1,1,197,198]]],[56,1,1,198,199,[[1132,1,1,198,199]]],[57,6,6,199,205,[[1134,1,1,199,200],[1138,1,1,200,201],[1139,3,3,201,204],[1144,1,1,204,205]]],[58,3,3,205,208,[[1146,1,1,205,206],[1148,2,2,206,208]]],[61,2,2,208,210,[[1159,1,1,208,209],[1162,1,1,209,210]]],[65,12,11,210,221,[[1168,1,1,210,211],[1169,4,3,211,214],[1171,2,2,214,216],[1173,1,1,216,217],[1180,1,1,217,218],[1181,1,1,218,219],[1184,1,1,219,220],[1185,1,1,220,221]]]],[23247,23306,23395,23443,23486,23708,23720,23779,23799,23845,23888,23918,23934,23936,23993,24116,24141,24153,24281,24282,24315,24367,24368,24401,24475,24478,24487,24546,24567,24577,24606,24617,24642,24653,24687,24707,24749,24814,24815,24829,24830,24831,24881,24954,25065,25087,25089,25090,25112,25143,25144,25146,25223,25261,25288,25296,25337,25363,25382,25385,25438,25461,25577,25604,25633,25707,25717,25722,25761,25819,25899,25939,25944,25949,25950,25957,25976,25988,26062,26122,26133,26147,26152,26183,26229,26232,26240,26301,26320,26322,26332,26341,26347,26354,26355,26358,26372,26391,26392,26396,26401,26409,26414,26435,26444,26473,26499,26510,26522,26572,26599,26658,26674,26698,26704,26712,26723,26731,26748,26749,26750,26755,26771,26794,26816,26823,26829,26836,26866,26901,26910,27034,27036,27072,27082,27095,27192,27224,27451,27544,27567,27574,27612,27646,27650,27659,27688,27743,27806,27807,27814,27845,27854,27877,27889,27904,27916,28117,28287,28294,28377,28402,28405,28409,28421,28437,28506,28529,28531,28555,28637,28667,28668,28680,28688,28893,28918,28921,28998,29033,29087,29113,29117,29132,29143,29164,29172,29333,29381,29411,29457,29751,29795,29804,29831,29841,29886,29907,29952,29985,30057,30077,30078,30083,30226,30279,30327,30331,30545,30615,30734,30753,30754,30763,30782,30783,30819,30929,30954,31004,31029]]],["+",[16,16,[[40,1,1,0,1,[[959,1,1,0,1]]],[41,3,3,1,4,[[980,1,1,1,2],[991,1,1,2,3],[995,1,1,3,4]]],[42,2,2,4,6,[[1014,1,1,4,5],[1015,1,1,5,6]]],[43,5,5,6,11,[[1021,1,1,6,7],[1032,1,1,7,8],[1036,1,1,8,9],[1037,1,1,9,10],[1042,1,1,10,11]]],[47,3,3,11,14,[[1092,1,1,11,12],[1094,1,1,12,13],[1095,1,1,13,14]]],[54,1,1,14,15,[[1126,1,1,14,15]]],[57,1,1,15,16,[[1139,1,1,15,16]]]],[24315,25296,25761,25988,26816,26866,27036,27451,27612,27650,27806,29087,29143,29172,29841,30083]]],["No",[2,2,[[41,2,2,0,2,[[976,1,1,0,1],[988,1,1,1,2]]]],[25087,25633]]],["Nothing",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25899]]],["all",[2,2,[[42,1,1,0,1,[[1007,1,1,0,1]]],[61,1,1,1,2,[[1159,1,1,1,2]]]],[26572,30545]]],["any",[7,7,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[972,1,1,2,3]]],[41,2,2,3,5,[[980,1,1,3,4],[992,1,1,4,5]]],[43,2,2,5,7,[[1021,1,1,5,6],[1044,1,1,6,7]]]],[23888,24368,24881,25288,25819,27034,27889]]],["man",[89,85,[[39,6,6,0,6,[[934,1,1,0,1],[937,1,1,1,2],[939,1,1,2,3],[945,1,1,3,4],[948,1,1,4,5],[950,1,1,5,6]]],[40,11,11,6,17,[[958,2,2,6,8],[961,2,2,8,10],[963,1,1,10,11],[965,2,2,11,13],[966,1,1,13,14],[968,2,2,14,16],[969,1,1,16,17]]],[41,10,10,17,27,[[977,3,3,17,20],[980,1,1,20,21],[981,2,2,21,23],[982,1,1,23,24],[983,1,1,24,25],[987,1,1,25,26],[990,1,1,26,27]]],[42,24,24,27,51,[[997,1,1,27,28],[999,3,3,28,31],[1000,1,1,31,32],[1001,1,1,32,33],[1002,2,2,33,35],[1003,5,5,35,40],[1004,5,5,40,45],[1005,1,1,45,46],[1006,1,1,46,47],[1009,1,1,47,48],[1010,1,1,48,49],[1011,1,1,49,50],[1012,1,1,50,51]]],[43,5,5,51,56,[[1022,2,2,51,53],[1026,1,1,53,54],[1035,1,1,54,55],[1042,1,1,55,56]]],[44,1,1,56,57,[[1059,1,1,56,57]]],[45,6,5,57,62,[[1063,2,2,57,59],[1064,1,1,59,60],[1073,2,1,60,61],[1075,1,1,61,62]]],[46,5,3,62,65,[[1082,1,1,62,63],[1084,3,1,63,64],[1088,1,1,64,65]]],[47,2,2,65,67,[[1093,2,2,65,67]]],[48,1,1,67,68,[[1101,1,1,67,68]]],[49,1,1,68,69,[[1104,1,1,68,69]]],[54,2,2,69,71,[[1126,1,1,69,70],[1128,1,1,70,71]]],[57,2,2,71,73,[[1139,1,1,71,72],[1144,1,1,72,73]]],[58,1,1,73,74,[[1146,1,1,73,74]]],[61,1,1,74,75,[[1162,1,1,74,75]]],[65,11,10,75,85,[[1168,1,1,75,76],[1169,3,2,76,78],[1171,2,2,78,80],[1173,1,1,80,81],[1180,1,1,81,82],[1181,1,1,82,83],[1184,1,1,83,84],[1185,1,1,84,85]]]],[23306,23395,23486,23708,23799,23918,24281,24282,24367,24401,24487,24546,24577,24617,24687,24707,24749,25143,25144,25146,25261,25337,25363,25385,25438,25604,25717,26062,26122,26133,26152,26183,26232,26301,26322,26332,26341,26355,26358,26372,26391,26392,26396,26401,26414,26444,26499,26658,26674,26712,26748,27072,27082,27224,27567,27807,28287,28405,28409,28421,28637,28680,28893,28918,28998,29113,29117,29333,29411,29831,29886,30077,30226,30279,30615,30734,30753,30754,30782,30783,30819,30929,30954,31004,31029]]],["man's",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27659]]],["never",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24642]]],["no",[20,20,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,3,3,1,4,[[995,3,3,1,4]]],[42,6,6,4,10,[[1006,2,2,4,6],[1012,1,1,6,7],[1014,1,1,7,8],[1015,2,2,8,10]]],[43,3,3,10,13,[[1040,1,1,10,11],[1044,1,1,11,12],[1045,1,1,12,13]]],[44,1,1,13,14,[[1053,1,1,13,14]]],[46,1,1,14,15,[[1084,1,1,14,15]]],[49,1,1,15,16,[[1106,1,1,15,16]]],[53,1,1,16,17,[[1124,1,1,16,17]]],[57,1,1,17,18,[[1138,1,1,17,18]]],[58,2,2,18,20,[[1148,2,2,18,20]]]],[23993,25939,25949,25957,26510,26522,26755,26823,26829,26836,27743,27877,27904,28117,28921,29457,29804,30057,30327,30331]]],["none",[25,25,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,6,6,2,8,[[973,1,1,2,3],[976,2,2,3,5],[986,1,1,5,6],[990,2,2,6,8]]],[42,6,6,8,14,[[1003,1,1,8,9],[1011,1,1,9,10],[1012,1,1,10,11],[1013,1,1,11,12],[1014,1,1,12,13],[1017,1,1,13,14]]],[43,5,5,14,19,[[1025,1,1,14,15],[1035,1,1,15,16],[1042,2,2,16,18],[1043,1,1,18,19]]],[44,1,1,19,20,[[1059,1,1,19,20]]],[45,5,5,20,25,[[1062,1,1,20,21],[1063,1,1,21,22],[1069,1,1,22,23],[1070,1,1,23,24],[1075,1,1,24,25]]]],[23779,24606,24954,25089,25090,25577,25707,25722,26347,26723,26731,26771,26794,26910,27192,27574,27807,27814,27845,28287,28377,28402,28531,28555,28688]]],["not",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25223]]],["nothing",[64,62,[[39,9,9,0,9,[[933,1,1,0,1],[938,1,1,1,2],[945,1,1,2,3],[949,1,1,3,4],[951,2,2,4,6],[954,1,1,6,7],[955,2,2,7,9]]],[40,8,8,9,17,[[963,1,1,9,10],[965,1,1,10,11],[967,1,1,11,12],[970,2,2,12,14],[971,3,3,14,17]]],[41,7,7,17,24,[[976,1,1,17,18],[977,1,1,18,19],[982,1,1,19,20],[984,1,1,20,21],[995,3,3,21,24]]],[42,14,14,24,38,[[999,1,1,24,25],[1001,2,2,25,27],[1002,1,1,27,28],[1003,1,1,28,29],[1004,2,2,29,31],[1005,1,1,31,32],[1008,1,1,32,33],[1010,1,1,33,34],[1011,1,1,34,35],[1012,2,2,35,37],[1017,1,1,37,38]]],[43,5,5,38,43,[[1034,1,1,38,39],[1037,1,1,39,40],[1038,1,1,40,41],[1043,1,1,41,42],[1045,1,1,42,43]]],[44,1,1,43,44,[[1059,1,1,43,44]]],[45,7,6,44,50,[[1065,1,1,44,45],[1068,2,1,45,46],[1069,2,2,46,48],[1074,2,2,48,50]]],[46,2,1,50,51,[[1089,2,1,50,51]]],[47,3,3,51,54,[[1092,1,1,51,52],[1094,1,1,52,53],[1095,1,1,53,54]]],[49,1,1,54,55,[[1103,1,1,54,55]]],[53,2,2,55,57,[[1122,1,1,55,56],[1124,1,1,56,57]]],[55,1,1,57,58,[[1129,1,1,57,58]]],[56,1,1,58,59,[[1132,1,1,58,59]]],[57,2,2,59,61,[[1134,1,1,59,60],[1139,1,1,60,61]]],[65,1,1,61,62,[[1169,1,1,61,62]]]],[23247,23443,23720,23845,23934,23936,24116,24141,24153,24478,24567,24653,24814,24815,24829,24830,24831,25065,25112,25382,25461,25944,25950,25976,26147,26229,26240,26320,26354,26409,26435,26473,26599,26698,26704,26749,26750,26901,27544,27646,27688,27854,27916,28294,28437,28506,28529,28531,28667,28668,29033,29087,29132,29164,29381,29751,29795,29907,29952,29985,30078,30763]]],["nought",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27095]]],["ought",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24475]]],["thing",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24881]]],["things",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25337]]]]},{"k":"G3763","v":[["*",[16,15,[[39,5,5,0,5,[[935,1,1,0,1],[937,1,1,1,2],[949,2,2,2,4],[954,1,1,4,5]]],[40,2,2,5,7,[[958,2,2,5,7]]],[41,2,1,7,8,[[987,2,1,7,8]]],[42,1,1,8,9,[[1003,1,1,8,9]]],[43,3,3,9,12,[[1027,1,1,9,10],[1028,1,1,10,11],[1031,1,1,11,12]]],[45,1,1,12,13,[[1074,1,1,12,13]]],[57,2,2,13,15,[[1142,2,2,13,15]]]],[23339,23412,23842,23868,24087,24272,24285,25617,26374,27273,27315,27422,28673,30134,30144]]],["Never",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26374]]],["never",[13,13,[[39,5,5,0,5,[[935,1,1,0,1],[937,1,1,1,2],[949,2,2,2,4],[954,1,1,4,5]]],[40,2,2,5,7,[[958,2,2,5,7]]],[41,1,1,7,8,[[987,1,1,7,8]]],[43,2,2,8,10,[[1027,1,1,8,9],[1031,1,1,9,10]]],[45,1,1,10,11,[[1074,1,1,10,11]]],[57,2,2,11,13,[[1142,2,2,11,13]]]],[23339,23412,23842,23868,24087,24272,24285,25617,27273,27422,28673,30134,30144]]],["time",[2,2,[[41,1,1,0,1,[[987,1,1,0,1]]],[43,1,1,1,2,[[1028,1,1,1,2]]]],[25617,27315]]]]},{"k":"G3764","v":[["*",[5,5,[[41,1,1,0,1,[[995,1,1,0,1]]],[42,3,3,1,4,[[1003,1,1,1,2],[1015,1,1,2,3],[1016,1,1,3,4]]],[45,1,1,4,5,[[1069,1,1,4,5]]]],[25988,26367,26866,26876,28529]]],["+",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[42,2,2,1,3,[[1015,1,1,1,2],[1016,1,1,2,3]]]],[25988,26866,26876]]],["yet",[2,2,[[42,1,1,0,1,[[1003,1,1,0,1]]],[45,1,1,1,2,[[1069,1,1,1,2]]]],[26367,28529]]]]},{"k":"G3765","v":[["*",[39,35,[[39,2,2,0,2,[[947,1,1,0,1],[950,1,1,1,2]]],[40,6,6,2,8,[[963,1,1,2,3],[965,1,1,3,4],[966,1,1,4,5],[968,1,1,5,6],[970,1,1,6,7],[971,1,1,7,8]]],[41,4,4,8,12,[[987,2,2,8,10],[992,1,1,10,11],[994,1,1,11,12]]],[42,3,3,12,15,[[1000,1,1,12,13],[1002,1,1,13,14],[1011,1,1,14,15]]],[43,3,3,15,18,[[1025,1,1,15,16],[1037,2,2,16,18]]],[44,9,5,18,23,[[1051,2,1,18,19],[1052,2,2,19,21],[1056,4,1,21,22],[1059,1,1,22,23]]],[46,2,2,23,25,[[1078,1,1,23,24],[1082,1,1,24,25]]],[47,4,4,25,29,[[1092,1,1,25,26],[1093,2,2,26,28],[1094,1,1,28,29]]],[48,1,1,29,30,[[1098,1,1,29,30]]],[56,1,1,30,31,[[1132,1,1,30,31]]],[57,2,2,31,33,[[1142,2,2,31,33]]],[65,2,2,33,35,[[1184,2,2,33,35]]]],[23768,23918,24475,24546,24596,24707,24779,24831,25607,25609,25819,25880,26198,26323,26714,27215,27651,27664,28077,28108,28111,28215,28295,28823,28893,29101,29120,29127,29138,29248,29954,30151,30159,31004,31007]]],["+",[4,4,[[42,1,1,0,1,[[1011,1,1,0,1]]],[44,2,2,1,3,[[1051,1,1,1,2],[1059,1,1,2,3]]],[65,1,1,3,4,[[1184,1,1,3,4]]]],[26714,28077,28295,31007]]],["Now",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26198]]],["longer",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29127]]],["more",[27,24,[[39,2,2,0,2,[[947,1,1,0,1],[950,1,1,1,2]]],[40,4,4,2,6,[[963,1,1,2,3],[965,1,1,3,4],[966,1,1,4,5],[970,1,1,5,6]]],[41,3,3,6,9,[[987,2,2,6,8],[994,1,1,8,9]]],[42,1,1,9,10,[[1002,1,1,9,10]]],[43,3,3,10,13,[[1025,1,1,10,11],[1037,2,2,11,13]]],[44,7,4,13,17,[[1051,1,1,13,14],[1052,2,2,14,16],[1056,4,1,16,17]]],[46,1,1,17,18,[[1082,1,1,17,18]]],[47,2,2,18,20,[[1093,1,1,18,19],[1094,1,1,19,20]]],[48,1,1,20,21,[[1098,1,1,20,21]]],[57,2,2,21,23,[[1142,2,2,21,23]]],[65,1,1,23,24,[[1184,1,1,23,24]]]],[23768,23918,24475,24546,24596,24779,25607,25609,25880,26323,27215,27651,27664,28077,28108,28111,28215,28893,29120,29138,29248,30151,30159,31004]]],["not",[2,2,[[41,1,1,0,1,[[992,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]]],[25819,29101]]],["now",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29954]]],["that",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24707]]],["yet",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]]],[24831,28823]]]]},{"k":"G3766","v":[["then",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26822]]]]},{"k":"G3767","v":[["*",[526,518,[[39,55,55,0,55,[[929,1,1,0,1],[931,2,2,1,3],[933,3,3,3,6],[934,7,7,6,13],[935,3,3,13,16],[937,1,1,16,17],[938,4,4,17,21],[940,2,2,21,23],[941,5,5,23,28],[945,1,1,28,29],[946,3,3,29,32],[947,2,2,32,34],[949,2,2,34,36],[950,6,6,36,42],[951,2,2,42,44],[952,3,3,44,47],[953,3,3,47,50],[954,1,1,50,51],[955,3,3,51,54],[956,1,1,54,55]]],[40,11,11,55,66,[[959,1,1,55,56],[966,1,1,56,57],[967,1,1,57,58],[968,5,5,58,63],[969,1,1,63,64],[971,1,1,64,65],[972,1,1,65,66]]],[41,45,44,66,110,[[975,5,5,66,71],[976,1,1,71,72],[978,2,2,72,74],[979,2,2,74,76],[980,1,1,76,77],[982,5,4,77,81],[983,4,4,81,85],[984,3,3,85,88],[985,2,2,88,90],[986,1,1,90,91],[987,1,1,91,92],[988,2,2,92,94],[991,1,1,94,95],[992,6,6,95,101],[993,4,4,101,105],[994,2,2,105,107],[995,3,3,107,110]]],[42,200,196,110,306,[[997,3,3,110,113],[998,3,3,113,116],[999,2,2,116,118],[1000,14,14,118,132],[1001,5,5,132,137],[1002,23,22,137,159],[1003,12,12,159,171],[1004,17,17,171,188],[1005,12,12,188,200],[1006,5,5,200,205],[1007,19,19,205,224],[1008,13,13,224,237],[1009,7,7,237,244],[1012,4,4,244,248],[1014,22,21,248,269],[1015,21,20,269,289],[1016,10,10,289,299],[1017,8,7,299,306]]],[43,68,66,306,372,[[1018,3,3,306,309],[1019,4,4,309,313],[1020,1,1,313,314],[1022,1,1,314,315],[1023,1,1,315,316],[1025,4,3,316,319],[1026,1,1,319,320],[1027,5,4,320,324],[1028,2,2,324,326],[1029,1,1,326,327],[1030,3,3,327,330],[1031,1,1,330,331],[1032,6,6,331,337],[1033,3,3,337,340],[1034,6,6,340,346],[1035,1,1,346,347],[1036,4,4,347,351],[1037,1,1,351,352],[1038,2,2,352,354],[1039,1,1,354,355],[1040,5,5,355,360],[1042,5,5,360,365],[1043,3,3,365,368],[1045,4,4,368,372]]],[44,49,49,372,421,[[1047,2,2,372,374],[1048,5,5,374,379],[1049,3,3,379,382],[1050,3,3,382,385],[1051,5,5,385,390],[1052,4,4,390,394],[1053,2,2,394,396],[1054,5,5,396,401],[1055,1,1,401,402],[1056,6,6,402,408],[1057,2,2,408,410],[1058,3,3,410,413],[1059,5,5,413,418],[1060,2,2,418,420],[1061,1,1,420,421]]],[45,20,20,421,441,[[1064,1,1,421,422],[1065,1,1,422,423],[1066,1,1,423,424],[1067,3,3,424,427],[1068,1,1,427,428],[1069,1,1,428,429],[1070,2,2,429,431],[1071,2,2,431,433],[1072,1,1,433,434],[1075,4,4,434,438],[1076,1,1,438,439],[1077,2,2,439,441]]],[46,11,11,441,452,[[1078,1,1,441,442],[1080,1,1,442,443],[1082,3,3,443,446],[1084,2,2,446,448],[1085,1,1,448,449],[1086,1,1,449,450],[1088,1,1,450,451],[1089,1,1,451,452]]],[47,6,6,452,458,[[1093,3,3,452,455],[1094,1,1,455,456],[1095,1,1,456,457],[1096,1,1,457,458]]],[48,7,7,458,465,[[1098,1,1,458,459],[1100,2,2,459,461],[1101,3,3,461,464],[1102,1,1,464,465]]],[49,5,5,465,470,[[1104,4,4,465,469],[1105,1,1,469,470]]],[50,6,6,470,476,[[1108,3,3,470,473],[1109,3,3,473,476]]],[51,2,2,476,478,[[1114,1,1,476,477],[1115,1,1,477,478]]],[52,1,1,478,479,[[1117,1,1,478,479]]],[53,4,4,479,483,[[1120,2,2,479,481],[1121,1,1,481,482],[1123,1,1,482,483]]],[54,5,5,483,488,[[1125,1,1,483,484],[1126,3,3,484,487],[1128,1,1,487,488]]],[56,1,1,488,489,[[1132,1,1,488,489]]],[57,12,12,489,501,[[1134,1,1,489,490],[1136,5,5,490,495],[1139,1,1,495,496],[1141,2,2,496,498],[1142,2,2,498,500],[1145,1,1,500,501]]],[58,4,4,501,505,[[1149,3,3,501,504],[1150,1,1,504,505]]],[59,6,6,505,511,[[1152,3,3,505,508],[1154,2,2,508,510],[1155,1,1,510,511]]],[60,2,2,511,513,[[1158,2,2,511,513]]],[61,1,1,513,514,[[1160,1,1,513,514]]],[63,1,1,514,515,[[1165,1,1,514,515]]],[65,4,3,515,518,[[1168,1,1,515,516],[1169,3,2,516,518]]]],[23161,23200,23202,23253,23257,23282,23284,23290,23291,23304,23305,23313,23316,23327,23328,23340,23417,23433,23443,23448,23449,23501,23515,23557,23566,23567,23579,23595,23710,23731,23753,23756,23768,23769,23851,23866,23881,23889,23893,23900,23915,23917,23921,23938,23972,23983,23999,24021,24035,24036,24108,24146,24151,24193,24214,24319,24597,24671,24679,24682,24696,24700,24710,24752,24838,24892,25032,25033,25034,25035,25043,25070,25155,25182,25226,25237,25263,25365,25399,25400,25403,25418,25439,25440,25441,25466,25485,25499,25532,25533,25586,25616,25631,25647,25743,25784,25794,25796,25808,25812,25823,25833,25834,25840,25862,25900,25934,25951,25955,25957,26065,26066,26069,26113,26115,26117,26145,26149,26157,26161,26162,26165,26167,26184,26186,26189,26196,26201,26202,26204,26208,26209,26214,26220,26222,26228,26229,26262,26267,26270,26271,26272,26276,26278,26281,26285,26287,26289,26291,26298,26299,26300,26302,26309,26310,26317,26319,26324,26325,26331,26334,26339,26353,26356,26358,26361,26363,26368,26371,26373,26375,26386,26393,26394,26400,26402,26403,26405,26406,26409,26412,26417,26419,26422,26429,26433,26438,26440,26447,26448,26450,26452,26455,26456,26458,26459,26464,26465,26468,26481,26488,26500,26505,26512,26520,26526,26529,26535,26537,26539,26540,26543,26544,26554,26555,26556,26559,26561,26564,26568,26570,26576,26577,26579,26581,26582,26583,26584,26587,26589,26597,26599,26601,26608,26609,26615,26630,26636,26642,26644,26652,26654,26657,26660,26743,26744,26745,26748,26788,26789,26791,26792,26793,26795,26796,26797,26801,26802,26804,26809,26810,26812,26813,26814,26816,26818,26822,26824,26825,26826,26829,26830,26831,26833,26835,26838,26841,26845,26846,26848,26849,26851,26854,26855,26856,26857,26863,26865,26867,26869,26870,26873,26875,26877,26878,26886,26887,26888,26892,26903,26904,26905,26907,26911,26913,26921,26929,26941,26944,26979,26982,26985,26990,27015,27100,27104,27180,27198,27201,27247,27282,27288,27291,27292,27324,27326,27342,27366,27400,27402,27417,27444,27445,27452,27469,27472,27481,27488,27494,27519,27535,27540,27543,27546,27552,27553,27571,27588,27617,27621,27623,27654,27686,27687,27733,27749,27752,27755,27756,27765,27797,27800,27801,27813,27819,27827,27832,27845,27904,27908,27919,27927,27983,27988,27992,28000,28018,28019,28022,28023,28031,28032,28048,28056,28065,28069,28072,28080,28083,28089,28094,28098,28104,28116,28128,28147,28169,28171,28173,28174,28185,28202,28210,28214,28216,28220,28228,28231,28246,28265,28273,28276,28278,28288,28292,28293,28296,28299,28320,28331,28355,28415,28449,28461,28471,28474,28482,28513,28531,28558,28565,28586,28598,28620,28689,28693,28701,28704,28729,28787,28794,28817,28853,28883,28888,28897,28917,28932,28956,28961,29004,29031,29107,29121,29123,29146,29163,29198,29248,29273,29289,29305,29311,29319,29351,29392,29414,29419,29420,29436,29500,29510,29514,29518,29522,29529,29604,29627,29676,29717,29724,29733,29777,29817,29828,29830,29848,29871,29955,29991,30015,30020,30025,30028,30030,30075,30106,30128,30152,30168,30256,30341,30344,30354,30361,30400,30406,30412,30447,30453,30471,30533,30539,30574,30666,30722,30749,30765]]],["+",[35,35,[[39,2,2,0,2,[[934,1,1,0,1],[951,1,1,1,2]]],[41,1,1,2,3,[[975,1,1,2,3]]],[42,7,7,3,10,[[1001,1,1,3,4],[1005,1,1,4,5],[1007,1,1,5,6],[1012,1,1,6,7],[1014,1,1,7,8],[1015,1,1,8,9],[1017,1,1,9,10]]],[43,11,11,10,21,[[1022,1,1,10,11],[1025,2,2,11,13],[1026,1,1,13,14],[1034,1,1,14,15],[1035,1,1,15,16],[1036,1,1,16,17],[1040,1,1,17,18],[1042,1,1,18,19],[1043,2,2,19,21]]],[44,7,7,21,28,[[1047,1,1,21,22],[1050,1,1,22,23],[1051,1,1,23,24],[1053,1,1,24,25],[1054,1,1,25,26],[1059,2,2,26,28]]],[45,1,1,28,29,[[1067,1,1,28,29]]],[47,2,2,29,31,[[1093,1,1,29,30],[1096,1,1,30,31]]],[49,1,1,31,32,[[1104,1,1,31,32]]],[51,1,1,32,33,[[1115,1,1,32,33]]],[52,1,1,33,34,[[1117,1,1,33,34]]],[59,1,1,34,35,[[1154,1,1,34,35]]]],[23316,23938,25043,26228,26465,26537,26748,26791,26849,26907,27100,27180,27201,27247,27553,27571,27617,27765,27800,27827,27832,27983,28065,28089,28128,28173,28293,28299,28474,29107,29198,29392,29627,29676,30453]]],["-",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26582]]],["And",[7,7,[[39,1,1,0,1,[[946,1,1,0,1]]],[43,6,6,1,7,[[1025,1,1,1,2],[1032,2,2,2,4],[1033,1,1,4,5],[1042,1,1,5,6],[1045,1,1,6,7]]]],[23756,27201,27445,27481,27488,27819,27904]]],["But",[2,2,[[42,1,1,0,1,[[1005,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[26458,27755]]],["Now",[8,8,[[42,4,4,0,4,[[1012,1,1,0,1],[1014,1,1,1,2],[1015,1,1,2,3],[1017,1,1,3,4]]],[43,3,3,4,7,[[1018,1,1,4,5],[1028,1,1,5,6],[1042,1,1,6,7]]],[45,1,1,7,8,[[1070,1,1,7,8]]]],[26745,26809,26854,26905,26941,27326,27797,28565]]],["So",[16,16,[[39,1,1,0,1,[[929,1,1,0,1]]],[40,1,1,1,2,[[972,1,1,1,2]]],[41,1,1,2,3,[[986,1,1,2,3]]],[42,8,8,3,11,[[1000,3,3,3,6],[1002,2,2,6,8],[1003,1,1,8,9],[1009,1,1,9,10],[1017,1,1,10,11]]],[43,5,5,11,16,[[1030,1,1,11,12],[1032,1,1,12,13],[1040,2,2,13,15],[1045,1,1,15,16]]]],[23161,24892,25586,26196,26202,26209,26267,26276,26371,26642,26913,27366,27472,27752,27756,27908]]],["Then",[102,102,[[41,4,4,0,4,[[975,1,1,0,1],[978,1,1,1,2],[982,1,1,2,3],[994,1,1,3,4]]],[42,94,94,4,98,[[997,1,1,4,5],[998,2,2,5,7],[999,1,1,7,8],[1000,6,6,8,14],[1001,2,2,14,16],[1002,8,8,16,24],[1003,9,9,24,33],[1004,12,12,33,45],[1005,4,4,45,49],[1006,3,3,49,52],[1007,12,12,52,64],[1008,6,6,64,70],[1009,3,3,70,73],[1012,1,1,73,74],[1014,10,10,74,84],[1015,6,6,84,90],[1016,6,6,90,96],[1017,2,2,96,98]]],[43,3,3,98,101,[[1019,1,1,98,99],[1027,1,1,99,100],[1039,1,1,100,101]]],[57,1,1,101,102,[[1141,1,1,101,102]]]],[25032,25155,25400,25900,26066,26113,26115,26145,26161,26165,26186,26201,26204,26208,26222,26229,26271,26278,26285,26289,26291,26310,26324,26325,26334,26339,26353,26356,26358,26361,26363,26373,26375,26393,26400,26402,26403,26406,26409,26412,26422,26429,26433,26438,26440,26452,26455,26464,26468,26488,26505,26512,26535,26539,26540,26543,26544,26555,26559,26564,26568,26570,26576,26579,26581,26583,26584,26587,26608,26615,26636,26652,26657,26743,26792,26795,26796,26797,26801,26802,26813,26816,26818,26825,26830,26835,26846,26848,26857,26865,26869,26873,26877,26886,26887,26888,26903,26921,26990,27282,27733,30106]]],["Therefore",[34,34,[[39,7,7,0,7,[[933,1,1,0,1],[934,2,2,1,3],[935,2,2,3,5],[950,1,1,5,6],[955,1,1,6,7]]],[41,2,2,7,9,[[982,1,1,7,8],[992,1,1,8,9]]],[42,7,7,9,16,[[1000,1,1,9,10],[1002,1,1,10,11],[1005,2,2,11,13],[1006,1,1,13,14],[1007,1,1,14,15],[1017,1,1,15,16]]],[43,7,7,16,23,[[1019,3,3,16,19],[1033,1,1,19,20],[1034,2,2,20,22],[1042,1,1,22,23]]],[44,5,5,23,28,[[1047,1,1,23,24],[1048,1,1,24,25],[1050,1,1,25,26],[1051,1,1,26,27],[1057,1,1,27,28]]],[45,2,2,28,30,[[1075,1,1,28,29],[1076,1,1,29,30]]],[46,3,3,30,33,[[1082,1,1,30,31],[1086,1,1,31,32],[1088,1,1,32,33]]],[58,1,1,33,34,[[1149,1,1,33,34]]]],[23257,23284,23313,23328,23340,23900,24146,25365,25812,26189,26270,26450,26456,26520,26526,26905,26979,26982,26985,27494,27535,27540,27813,27988,28019,28048,28072,28265,28689,28729,28883,28961,29004,30354]]],["Wherefore",[8,8,[[39,1,1,0,1,[[952,1,1,0,1]]],[43,3,3,1,4,[[1018,1,1,1,2],[1023,1,1,2,3],[1036,1,1,3,4]]],[45,1,1,4,5,[[1065,1,1,4,5]]],[46,1,1,5,6,[[1085,1,1,5,6]]],[50,1,1,6,7,[[1108,1,1,6,7]]],[59,1,1,7,8,[[1152,1,1,7,8]]]],[23983,26944,27104,27623,28449,28956,29514,30400]]],["and",[2,2,[[42,2,2,0,2,[[1002,1,1,0,1],[1016,1,1,1,2]]]],[26319,26878]]],["but",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26386]]],["have",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26419]]],["now",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25399]]],["shall",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25833]]],["that",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26875]]],["then",[94,94,[[39,13,13,0,13,[[935,1,1,0,1],[940,2,2,1,3],[941,3,3,3,6],[945,1,1,6,7],[947,1,1,7,8],[949,1,1,8,9],[950,2,2,9,11],[954,1,1,11,12],[955,1,1,12,13]]],[40,3,3,13,16,[[959,1,1,13,14],[967,1,1,14,15],[971,1,1,15,16]]],[41,8,8,16,24,[[975,1,1,16,17],[979,1,1,17,18],[983,1,1,18,19],[984,1,1,19,20],[985,1,1,20,21],[992,2,2,21,23],[994,1,1,23,24]]],[42,19,19,24,43,[[997,2,2,24,26],[1000,2,2,26,28],[1001,1,1,28,29],[1002,4,4,29,33],[1005,1,1,33,34],[1007,1,1,34,35],[1009,2,2,35,37],[1014,4,4,37,41],[1015,1,1,41,42],[1017,1,1,42,43]]],[43,4,4,43,47,[[1028,1,1,43,44],[1034,1,1,44,45],[1036,2,2,45,47]]],[44,27,27,47,74,[[1048,4,4,47,51],[1049,3,3,51,54],[1050,1,1,54,55],[1051,2,2,55,57],[1052,4,4,57,61],[1053,1,1,61,62],[1054,4,4,62,66],[1055,1,1,66,67],[1056,5,5,67,72],[1059,2,2,72,74]]],[45,7,7,74,81,[[1064,1,1,74,75],[1067,2,2,75,77],[1070,1,1,77,78],[1071,1,1,78,79],[1075,2,2,79,81]]],[46,2,2,81,83,[[1080,1,1,81,82],[1082,1,1,82,83]]],[47,3,3,83,86,[[1093,2,2,83,85],[1094,1,1,85,86]]],[48,1,1,86,87,[[1101,1,1,86,87]]],[50,1,1,87,88,[[1109,1,1,87,88]]],[51,1,1,88,89,[[1114,1,1,88,89]]],[53,1,1,89,90,[[1121,1,1,89,90]]],[57,2,2,90,92,[[1134,1,1,90,91],[1136,1,1,91,92]]],[59,1,1,92,93,[[1154,1,1,92,93]]],[60,1,1,93,94,[[1158,1,1,93,94]]]],[23327,23501,23515,23566,23567,23595,23710,23769,23851,23915,23917,24108,24151,24319,24671,24838,25035,25226,25418,25485,25533,25784,25796,25934,26065,26069,26167,26184,26214,26262,26287,26298,26299,26459,26554,26644,26660,26788,26804,26812,26814,26845,26911,27324,27552,27588,27621,27992,28000,28018,28022,28023,28031,28032,28056,28069,28083,28094,28098,28104,28116,28147,28169,28171,28174,28185,28202,28210,28214,28216,28220,28228,28292,28296,28415,28471,28482,28558,28586,28693,28704,28853,28897,29121,29123,29146,29319,29518,29604,29733,29991,30028,30447,30533]]],["therefore",[211,209,[[39,30,30,0,30,[[931,2,2,0,2],[933,2,2,2,4],[934,4,4,4,8],[937,1,1,8,9],[938,4,4,9,13],[941,2,2,13,15],[946,2,2,15,17],[947,1,1,17,18],[949,1,1,18,19],[950,3,3,19,22],[951,1,1,22,23],[952,2,2,23,25],[953,3,3,25,28],[955,1,1,28,29],[956,1,1,29,30]]],[40,7,7,30,37,[[966,1,1,30,31],[968,5,5,31,36],[969,1,1,36,37]]],[41,27,27,37,64,[[975,2,2,37,39],[976,1,1,39,40],[978,1,1,40,41],[979,1,1,41,42],[980,1,1,42,43],[982,2,2,43,45],[983,3,3,45,48],[984,2,2,48,50],[985,1,1,50,51],[987,1,1,51,52],[988,2,2,52,54],[991,1,1,54,55],[992,3,3,55,58],[993,3,3,58,61],[995,3,3,61,64]]],[42,54,54,64,118,[[998,1,1,64,65],[999,1,1,65,66],[1000,2,2,66,68],[1001,1,1,68,69],[1002,7,7,69,76],[1003,2,2,76,78],[1004,3,3,78,81],[1005,3,3,81,84],[1006,1,1,84,85],[1007,4,4,85,89],[1008,6,6,89,95],[1009,1,1,95,96],[1012,1,1,96,97],[1014,6,6,97,103],[1015,12,12,103,115],[1016,2,2,115,117],[1017,1,1,117,118]]],[43,25,24,118,142,[[1018,1,1,118,119],[1020,1,1,119,120],[1025,1,1,120,121],[1027,4,3,121,124],[1029,1,1,124,125],[1030,2,2,125,127],[1031,1,1,127,128],[1032,3,3,128,131],[1033,1,1,131,132],[1034,2,2,132,134],[1037,1,1,134,135],[1038,2,2,135,137],[1040,1,1,137,138],[1042,1,1,138,139],[1043,1,1,139,140],[1045,2,2,140,142]]],[44,10,10,142,152,[[1051,1,1,142,143],[1056,1,1,143,144],[1057,1,1,144,145],[1058,3,3,145,148],[1059,1,1,148,149],[1060,2,2,149,151],[1061,1,1,151,152]]],[45,8,8,152,160,[[1066,1,1,152,153],[1068,1,1,153,154],[1069,1,1,154,155],[1071,1,1,155,156],[1072,1,1,156,157],[1075,1,1,157,158],[1077,2,2,158,160]]],[46,5,5,160,165,[[1078,1,1,160,161],[1082,1,1,161,162],[1084,2,2,162,164],[1089,1,1,164,165]]],[47,1,1,165,166,[[1095,1,1,165,166]]],[48,6,6,166,172,[[1098,1,1,166,167],[1100,2,2,167,169],[1101,2,2,169,171],[1102,1,1,171,172]]],[49,4,4,172,176,[[1104,3,3,172,175],[1105,1,1,175,176]]],[50,4,4,176,180,[[1108,2,2,176,178],[1109,2,2,178,180]]],[53,3,3,180,183,[[1120,2,2,180,182],[1123,1,1,182,183]]],[54,5,5,183,188,[[1125,1,1,183,184],[1126,3,3,184,187],[1128,1,1,187,188]]],[56,1,1,188,189,[[1132,1,1,188,189]]],[57,9,9,189,198,[[1136,4,4,189,193],[1139,1,1,193,194],[1141,1,1,194,195],[1142,2,2,195,197],[1145,1,1,197,198]]],[58,3,3,198,201,[[1149,2,2,198,200],[1150,1,1,200,201]]],[59,2,2,201,203,[[1152,1,1,201,202],[1155,1,1,202,203]]],[60,1,1,203,204,[[1158,1,1,203,204]]],[61,1,1,204,205,[[1160,1,1,204,205]]],[63,1,1,205,206,[[1165,1,1,205,206]]],[65,4,3,206,209,[[1168,1,1,206,207],[1169,3,2,207,209]]]],[23200,23202,23253,23282,23290,23291,23304,23305,23417,23433,23443,23448,23449,23557,23579,23731,23753,23768,23866,23881,23889,23893,23921,23972,23999,24021,24035,24036,24193,24214,24597,24679,24682,24696,24700,24710,24752,25033,25034,25070,25182,25237,25263,25365,25403,25439,25440,25441,25466,25499,25532,25616,25631,25647,25743,25794,25808,25823,25834,25840,25862,25951,25955,25957,26117,26149,26157,26162,26220,26272,26281,26287,26300,26302,26309,26317,26331,26368,26394,26405,26417,26447,26448,26481,26500,26529,26556,26561,26577,26589,26597,26599,26601,26609,26630,26654,26744,26789,26793,26810,26816,26822,26824,26826,26829,26831,26833,26838,26841,26849,26851,26855,26856,26863,26867,26870,26892,26904,26929,27015,27198,27288,27291,27292,27342,27400,27402,27417,27444,27452,27469,27519,27543,27546,27654,27686,27687,27749,27801,27845,27919,27927,28080,28231,28246,28273,28276,28278,28288,28320,28331,28355,28461,28513,28531,28598,28620,28701,28787,28794,28817,28888,28917,28932,29031,29163,29248,29273,29289,29305,29311,29351,29414,29419,29420,29436,29500,29510,29522,29529,29717,29724,29777,29817,29828,29830,29848,29871,29955,30015,30020,30025,30030,30075,30128,30152,30168,30256,30341,30344,30361,30406,30471,30539,30574,30666,30722,30749,30765]]],["to",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30412]]]]},{"k":"G3768","v":[["*",[23,22,[[39,3,3,0,3,[[943,1,1,0,1],[944,1,1,1,2],[952,1,1,2,3]]],[40,2,2,3,5,[[964,1,1,3,4],[969,1,1,4,5]]],[42,11,10,5,15,[[998,1,1,5,6],[999,1,1,6,7],[1003,5,4,7,11],[1004,2,2,11,13],[1007,1,1,13,14],[1016,1,1,14,15]]],[43,1,1,15,16,[[1025,1,1,15,16]]],[45,1,1,16,17,[[1064,1,1,16,17]]],[57,2,2,17,19,[[1134,1,1,17,18],[1144,1,1,18,19]]],[61,1,1,19,20,[[1161,1,1,19,20]]],[65,2,2,20,22,[[1183,2,2,20,22]]]],[23650,23681,23963,24517,24724,26099,26144,26334,26336,26358,26367,26401,26438,26553,26884,27192,28412,29985,30216,30581,30985,30987]]],["+",[3,3,[[42,1,1,0,1,[[1003,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]],[65,1,1,2,3,[[1183,1,1,2,3]]]],[26336,28412,30987]]],["yet",[20,20,[[39,3,3,0,3,[[943,1,1,0,1],[944,1,1,1,2],[952,1,1,2,3]]],[40,2,2,3,5,[[964,1,1,3,4],[969,1,1,4,5]]],[42,10,10,5,15,[[998,1,1,5,6],[999,1,1,6,7],[1003,4,4,7,11],[1004,2,2,11,13],[1007,1,1,13,14],[1016,1,1,14,15]]],[43,1,1,15,16,[[1025,1,1,15,16]]],[57,2,2,16,18,[[1134,1,1,16,17],[1144,1,1,17,18]]],[61,1,1,18,19,[[1161,1,1,18,19]]],[65,1,1,19,20,[[1183,1,1,19,20]]]],[23650,23681,23963,24517,24724,26099,26144,26334,26336,26358,26367,26401,26438,26553,26884,27192,29985,30216,30581,30985]]]]},{"k":"G3769","v":[["*",[5,3,[[65,5,3,0,3,[[1175,4,2,0,2],[1178,1,1,2,3]]]],[30850,30859,30895]]],["tail",[1,1,[[65,1,1,0,1,[[1178,1,1,0,1]]]],[30895]]],["tails",[4,2,[[65,4,2,0,2,[[1175,4,2,0,2]]]],[30850,30859]]]]},{"k":"G3770","v":[["heavenly",[6,6,[[39,4,4,0,4,[[934,3,3,0,3],[943,1,1,3,4]]],[41,1,1,4,5,[[974,1,1,4,5]]],[43,1,1,5,6,[[1043,1,1,5,6]]]],[23296,23308,23314,23646,24986,27842]]]]},{"k":"G3771","v":[["heaven",[2,2,[[43,2,2,0,2,[[1031,1,1,0,1],[1043,1,1,1,2]]]],[27431,27836]]]]},{"k":"G3772","v":[["*",[284,264,[[39,84,74,0,74,[[931,3,3,0,3],[932,1,1,3,4],[933,11,10,4,14],[934,5,5,14,19],[935,3,2,19,21],[936,2,2,21,23],[938,3,3,23,26],[939,4,4,26,30],[940,1,1,30,31],[941,9,9,31,40],[942,1,1,40,41],[944,8,5,41,46],[946,10,8,46,54],[947,4,4,54,58],[948,1,1,58,59],[949,2,1,59,60],[950,2,2,60,62],[951,3,3,62,65],[952,7,5,65,70],[953,1,1,70,71],[954,1,1,71,72],[956,2,2,72,74]]],[40,20,19,74,93,[[957,2,2,74,76],[960,2,2,76,78],[962,1,1,78,79],[963,1,1,79,80],[964,1,1,80,81],[966,1,1,81,82],[967,4,4,82,86],[968,1,1,86,87],[969,5,4,87,91],[970,1,1,91,92],[972,1,1,92,93]]],[41,37,35,93,128,[[974,1,1,93,94],[975,2,2,94,96],[976,1,1,96,97],[978,1,1,97,98],[980,1,1,98,99],[981,3,3,99,102],[982,4,4,102,106],[983,4,3,106,109],[984,2,2,109,111],[985,1,1,111,112],[987,3,3,112,115],[988,1,1,115,116],[989,3,2,116,118],[990,2,2,118,120],[991,1,1,120,121],[992,2,2,121,123],[993,3,3,123,126],[994,1,1,126,127],[996,1,1,127,128]]],[42,19,16,128,144,[[997,2,2,128,130],[999,5,3,130,133],[1002,10,9,133,142],[1008,1,1,142,143],[1013,1,1,143,144]]],[43,26,24,144,168,[[1018,4,2,144,146],[1019,4,4,146,150],[1020,1,1,150,151],[1021,2,2,151,153],[1024,4,4,153,157],[1026,1,1,157,158],[1027,3,3,158,161],[1028,4,4,161,165],[1031,1,1,165,166],[1034,1,1,166,167],[1039,1,1,167,168]]],[44,2,2,168,170,[[1046,1,1,168,169],[1055,1,1,169,170]]],[45,2,2,170,172,[[1069,1,1,170,171],[1076,1,1,171,172]]],[46,3,3,172,175,[[1082,2,2,172,174],[1089,1,1,174,175]]],[47,1,1,175,176,[[1091,1,1,175,176]]],[48,4,4,176,180,[[1097,1,1,176,177],[1099,1,1,177,178],[1100,1,1,178,179],[1102,1,1,179,180]]],[49,1,1,180,181,[[1105,1,1,180,181]]],[50,5,5,181,186,[[1107,4,4,181,185],[1110,1,1,185,186]]],[51,2,2,186,188,[[1111,1,1,186,187],[1114,1,1,187,188]]],[52,1,1,188,189,[[1116,1,1,188,189]]],[57,11,11,189,200,[[1133,1,1,189,190],[1136,1,1,190,191],[1139,1,1,191,192],[1140,1,1,192,193],[1141,2,2,193,195],[1142,1,1,195,196],[1143,1,1,196,197],[1144,3,3,197,200]]],[58,2,2,200,202,[[1150,2,2,200,202]]],[59,3,3,202,205,[[1151,2,2,202,204],[1153,1,1,204,205]]],[60,6,6,205,211,[[1156,1,1,205,206],[1158,5,5,206,211]]],[61,1,1,211,212,[[1163,1,1,211,212]]],[65,54,52,212,264,[[1169,1,1,212,213],[1170,2,2,213,215],[1171,2,2,215,217],[1172,2,2,217,219],[1174,2,2,219,221],[1175,1,1,221,222],[1176,5,5,222,227],[1177,6,5,227,232],[1178,7,7,232,239],[1179,2,2,239,241],[1180,4,4,241,245],[1181,2,2,245,247],[1182,3,3,247,250],[1184,4,4,250,254],[1185,3,3,254,257],[1186,3,3,257,260],[1187,5,4,260,264]]]],[23194,23208,23209,23226,23237,23244,23246,23250,23252,23253,23254,23268,23279,23282,23283,23291,23292,23302,23308,23327,23337,23356,23365,23424,23449,23450,23470,23471,23482,23484,23539,23550,23563,23570,23571,23572,23583,23584,23586,23591,23616,23673,23674,23675,23689,23691,23728,23730,23731,23737,23741,23745,23746,23750,23774,23776,23783,23785,23793,23851,23874,23902,23927,23931,23940,23986,23987,23988,23992,23993,24009,24118,24197,24213,24225,24226,24327,24355,24448,24497,24511,24609,24665,24666,24670,24671,24698,24742,24744,24748,24749,24816,24892,24988,25046,25047,25088,25169,25250,25317,25355,25359,25378,25381,25383,25384,25407,25418,25421,25492,25515,25537,25595,25606,25609,25637,25675,25680,25701,25710,25769,25783,25784,25837,25852,25859,25907,26042,26076,26095,26133,26147,26151,26288,26289,26290,26295,26298,26299,26307,26308,26315,26608,26760,26933,26934,26951,26954,26968,26983,27017,27034,27046,27158,27165,27171,27172,27219,27270,27271,27275,27312,27313,27316,27317,27429,27547,27710,27948,28194,28532,28765,28878,28879,29024,29065,29216,29266,29282,29346,29441,29470,29481,29485,29488,29543,29570,29619,29656,29973,30028,30090,30093,30128,30129,30167,30184,30235,30237,30238,30366,30372,30378,30386,30446,30497,30527,30529,30532,30534,30535,30631,30758,30769,30770,30782,30792,30806,30807,30828,30837,30841,30862,30865,30866,30867,30869,30878,30884,30885,30887,30891,30892,30894,30895,30898,30899,30901,30903,30914,30921,30928,30933,30939,30943,30947,30951,30965,30971,30975,30994,30997,30998,31013,31018,31028,31031,31039,31047,31049,31054,31055,31056,31063]]],["+",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[983,1,1,2,3]]]],[23774,24988,25418]]],["Heaven",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]],[43,1,1,3,4,[[1024,1,1,3,4]]]],[23992,24748,25859,27165]]],["air",[10,10,[[39,3,3,0,3,[[934,1,1,0,1],[936,1,1,1,2],[941,1,1,2,3]]],[40,2,2,3,5,[[960,2,2,3,5]]],[41,3,3,5,8,[[980,1,1,5,6],[981,1,1,6,7],[985,1,1,7,8]]],[43,2,2,8,10,[[1027,1,1,8,9],[1028,1,1,9,10]]]],[23308,23365,23571,24327,24355,25250,25359,25537,27271,27313]]],["heaven",[243,225,[[39,74,66,0,66,[[931,2,2,0,2],[932,1,1,2,3],[933,11,10,3,13],[934,4,4,13,17],[935,3,2,17,19],[936,1,1,19,20],[938,3,3,20,23],[939,4,4,23,27],[940,1,1,27,28],[941,8,8,28,36],[942,1,1,36,37],[944,5,3,37,40],[946,10,8,40,48],[947,3,3,48,51],[948,1,1,51,52],[949,2,1,52,53],[950,2,2,53,55],[951,3,3,55,58],[952,5,4,58,62],[953,1,1,62,63],[954,1,1,63,64],[956,2,2,64,66]]],[40,16,15,66,81,[[957,1,1,66,67],[962,1,1,67,68],[963,1,1,68,69],[964,1,1,69,70],[966,1,1,70,71],[967,4,4,71,75],[968,1,1,75,76],[969,4,3,76,79],[970,1,1,79,80],[972,1,1,80,81]]],[41,29,27,81,108,[[975,2,2,81,83],[976,1,1,83,84],[978,1,1,84,85],[981,2,2,85,87],[982,4,4,87,91],[983,3,2,91,93],[987,3,3,93,96],[988,1,1,96,97],[989,3,2,97,99],[990,2,2,99,101],[991,1,1,101,102],[992,2,2,102,104],[993,2,2,104,106],[994,1,1,106,107],[996,1,1,107,108]]],[42,19,16,108,124,[[997,2,2,108,110],[999,5,3,110,113],[1002,10,9,113,122],[1008,1,1,122,123],[1013,1,1,123,124]]],[43,21,19,124,143,[[1018,4,2,124,126],[1019,3,3,126,129],[1020,1,1,129,130],[1021,2,2,130,132],[1024,2,2,132,134],[1026,1,1,134,135],[1027,2,2,135,137],[1028,3,3,137,140],[1031,1,1,140,141],[1034,1,1,141,142],[1039,1,1,142,143]]],[44,2,2,143,145,[[1046,1,1,143,144],[1055,1,1,144,145]]],[45,2,2,145,147,[[1069,1,1,145,146],[1076,1,1,146,147]]],[46,2,2,147,149,[[1082,1,1,147,148],[1089,1,1,148,149]]],[47,1,1,149,150,[[1091,1,1,149,150]]],[48,3,3,150,153,[[1097,1,1,150,151],[1099,1,1,151,152],[1102,1,1,152,153]]],[49,1,1,153,154,[[1105,1,1,153,154]]],[50,5,5,154,159,[[1107,4,4,154,158],[1110,1,1,158,159]]],[51,2,2,159,161,[[1111,1,1,159,160],[1114,1,1,160,161]]],[52,1,1,161,162,[[1116,1,1,161,162]]],[57,5,5,162,167,[[1141,1,1,162,163],[1142,1,1,163,164],[1144,3,3,164,167]]],[58,2,2,167,169,[[1150,2,2,167,169]]],[59,3,3,169,172,[[1151,2,2,169,171],[1153,1,1,171,172]]],[60,1,1,172,173,[[1156,1,1,172,173]]],[61,1,1,173,174,[[1163,1,1,173,174]]],[65,53,51,174,225,[[1169,1,1,174,175],[1170,2,2,175,177],[1171,2,2,177,179],[1172,2,2,179,181],[1174,2,2,181,183],[1175,1,1,183,184],[1176,5,5,184,189],[1177,6,5,189,194],[1178,6,6,194,200],[1179,2,2,200,202],[1180,4,4,202,206],[1181,2,2,206,208],[1182,3,3,208,211],[1184,4,4,211,215],[1185,3,3,215,218],[1186,3,3,218,221],[1187,5,4,221,225]]]],[23194,23209,23226,23237,23244,23246,23250,23252,23253,23254,23268,23279,23282,23283,23291,23292,23302,23327,23337,23356,23424,23449,23450,23470,23471,23482,23484,23539,23550,23563,23570,23572,23583,23584,23586,23591,23616,23673,23689,23691,23728,23730,23731,23737,23741,23745,23746,23750,23776,23783,23785,23793,23851,23874,23902,23927,23931,23940,23986,23987,23988,23993,24009,24118,24197,24213,24226,24448,24497,24511,24609,24665,24666,24670,24671,24698,24742,24744,24749,24816,24892,25046,25047,25088,25169,25317,25355,25378,25381,25383,25384,25407,25421,25595,25606,25609,25637,25675,25680,25701,25710,25769,25783,25784,25837,25852,25907,26042,26076,26095,26133,26147,26151,26288,26289,26290,26295,26298,26299,26307,26308,26315,26608,26760,26933,26934,26951,26954,26968,27017,27034,27046,27158,27171,27219,27270,27275,27312,27316,27317,27429,27547,27710,27948,28194,28532,28765,28879,29024,29065,29216,29266,29346,29441,29470,29481,29485,29488,29543,29570,29619,29656,30129,30167,30235,30237,30238,30366,30372,30378,30386,30446,30497,30631,30758,30769,30770,30782,30792,30806,30807,30828,30837,30841,30862,30865,30866,30867,30869,30878,30884,30885,30887,30891,30892,30894,30895,30898,30899,30901,30914,30921,30928,30933,30939,30943,30947,30951,30965,30971,30975,30994,30997,30998,31013,31018,31028,31031,31039,31047,31049,31054,31055,31056,31063]]],["heavens",[19,19,[[39,2,2,0,2,[[931,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,1,1,3,4,[[984,1,1,3,4]]],[43,2,2,4,6,[[1019,1,1,4,5],[1024,1,1,5,6]]],[46,1,1,6,7,[[1082,1,1,6,7]]],[48,1,1,7,8,[[1100,1,1,7,8]]],[57,5,5,8,13,[[1133,1,1,8,9],[1136,1,1,9,10],[1139,1,1,10,11],[1140,1,1,11,12],[1141,1,1,12,13]]],[60,5,5,13,18,[[1158,5,5,13,18]]],[65,1,1,18,19,[[1178,1,1,18,19]]]],[23208,23986,24225,25492,26983,27172,28878,29282,29973,30028,30090,30093,30128,30527,30529,30532,30534,30535,30903]]],["sky",[5,4,[[39,3,2,0,2,[[944,3,2,0,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[23674,23675,25515,30184]]]]},{"k":"G3773","v":[["Urbane",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28345]]]]},{"k":"G3774","v":[["Urias",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23150]]]]},{"k":"G3775","v":[["*",[37,35,[[39,7,6,0,6,[[938,1,1,0,1],[939,1,1,1,2],[941,5,4,2,6]]],[40,5,5,6,11,[[960,2,2,6,8],[963,2,2,8,10],[964,1,1,10,11]]],[41,7,7,11,18,[[973,1,1,11,12],[976,1,1,12,13],[980,1,1,13,14],[981,1,1,14,15],[984,1,1,15,16],[986,1,1,16,17],[994,1,1,17,18]]],[43,5,4,18,22,[[1024,2,2,18,20],[1028,1,1,20,21],[1045,2,1,21,22]]],[44,1,1,22,23,[[1056,1,1,22,23]]],[45,2,2,23,25,[[1063,1,1,23,24],[1073,1,1,24,25]]],[58,1,1,25,26,[[1150,1,1,25,26]]],[59,1,1,26,27,[[1153,1,1,26,27]]],[65,8,8,27,35,[[1168,4,4,27,31],[1169,3,3,31,34],[1179,1,1,34,35]]]],[23444,23474,23548,23554,23555,23582,24332,24346,24479,24496,24518,24937,25084,25253,25345,25462,25588,25914,27167,27173,27329,27926,28217,28403,28650,30358,30436,30724,30728,30734,30746,30752,30759,30768,30917]]],["ear",[13,13,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[994,1,1,2,3]]],[45,2,2,3,5,[[1063,1,1,3,4],[1073,1,1,4,5]]],[65,8,8,5,13,[[1168,4,4,5,9],[1169,3,3,9,12],[1179,1,1,12,13]]]],[23444,25462,25914,28403,28650,30724,30728,30734,30746,30752,30759,30768,30917]]],["ears",[24,22,[[39,6,5,0,5,[[939,1,1,0,1],[941,5,4,1,5]]],[40,5,5,5,10,[[960,2,2,5,7],[963,2,2,7,9],[964,1,1,9,10]]],[41,5,5,10,15,[[973,1,1,10,11],[976,1,1,11,12],[980,1,1,12,13],[981,1,1,13,14],[986,1,1,14,15]]],[43,5,4,15,19,[[1024,2,2,15,17],[1028,1,1,17,18],[1045,2,1,18,19]]],[44,1,1,19,20,[[1056,1,1,19,20]]],[58,1,1,20,21,[[1150,1,1,20,21]]],[59,1,1,21,22,[[1153,1,1,21,22]]]],[23474,23548,23554,23555,23582,24332,24346,24479,24496,24518,24937,25084,25253,25345,25588,27167,27173,27329,27926,28217,30358,30436]]]]},{"k":"G3776","v":[["*",[2,2,[[41,2,2,0,2,[[987,2,2,0,2]]]],[25600,25601]]],["goods",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25600]]],["substance",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25601]]]]},{"k":"G3777","v":[["*",[94,45,[[39,6,3,0,3,[[934,2,1,0,1],[940,2,1,1,2],[950,2,1,2,3]]],[40,3,2,3,5,[[961,1,1,3,4],[968,2,1,4,5]]],[41,6,4,5,9,[[984,1,1,5,6],[986,2,1,6,7],[992,3,2,7,9]]],[42,11,6,9,15,[[997,2,1,9,10],[1000,3,2,10,12],[1001,2,1,12,13],[1004,2,1,13,14],[1005,2,1,14,15]]],[43,14,7,15,22,[[1021,1,1,15,16],[1032,2,1,16,17],[1036,2,1,17,18],[1041,4,2,18,20],[1042,3,1,20,21],[1045,2,1,21,22]]],[44,10,2,22,24,[[1053,10,2,22,24]]],[45,15,6,24,30,[[1064,3,2,24,26],[1067,8,2,26,28],[1069,2,1,28,29],[1072,2,1,29,30]]],[47,5,3,30,33,[[1091,1,1,30,31],[1095,2,1,31,32],[1096,2,1,32,33]]],[51,6,3,33,36,[[1112,6,3,33,36]]],[63,1,1,36,37,[[1165,1,1,36,37]]],[65,17,8,37,45,[[1169,4,2,37,39],[1171,1,1,39,40],[1175,7,2,40,42],[1178,1,1,42,43],[1186,1,1,43,44],[1187,3,1,44,45]]]],[23302,23521,23902,24367,24698,25485,25588,25814,25815,26069,26167,26177,26247,26400,26443,27034,27452,27622,27781,27782,27804,27920,28154,28155,28412,28417,28476,28477,28535,28611,29069,29168,29203,29573,29575,29576,30668,30761,30762,30783,30860,30861,30899,31042,31057]]],["+",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[65,1,1,1,2,[[1175,1,1,1,2]]]],[25485,30860]]],["Neither",[4,4,[[41,1,1,0,1,[[992,1,1,0,1]]],[42,1,1,1,2,[[1005,1,1,1,2]]],[43,2,2,2,4,[[1041,1,1,2,3],[1042,1,1,3,4]]]],[25815,26443,27782,27804]]],["Nor",[3,3,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,1,1,1,2,[[1067,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]]],[28155,28477,29576]]],["neither",[41,34,[[39,4,3,0,3,[[934,1,1,0,1],[940,2,1,1,2],[950,1,1,2,3]]],[40,1,1,3,4,[[968,1,1,3,4]]],[41,2,2,4,6,[[986,1,1,4,5],[992,1,1,5,6]]],[42,4,4,6,10,[[997,1,1,6,7],[1000,1,1,7,8],[1001,1,1,8,9],[1004,1,1,9,10]]],[43,7,5,10,15,[[1032,1,1,10,11],[1036,1,1,11,12],[1041,2,1,12,13],[1042,1,1,13,14],[1045,2,1,14,15]]],[44,1,1,15,16,[[1053,1,1,15,16]]],[45,8,5,16,21,[[1064,3,2,16,18],[1067,1,1,18,19],[1069,2,1,19,20],[1072,2,1,20,21]]],[47,3,3,21,24,[[1091,1,1,21,22],[1095,1,1,22,23],[1096,1,1,23,24]]],[51,2,2,24,26,[[1112,2,2,24,26]]],[63,1,1,26,27,[[1165,1,1,26,27]]],[65,8,7,27,34,[[1169,2,2,27,29],[1171,1,1,29,30],[1175,1,1,30,31],[1178,1,1,31,32],[1186,1,1,32,33],[1187,2,1,33,34]]]],[23302,23521,23902,24698,25588,25814,26069,26177,26247,26400,27452,27622,27781,27804,27920,28154,28412,28417,28476,28535,28611,29069,29168,29203,29575,29576,30668,30761,30762,30783,30860,30899,31042,31057]]],["none",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27034]]],["nor",[39,26,[[39,2,2,0,2,[[934,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]],[42,4,4,4,8,[[997,1,1,4,5],[1001,1,1,5,6],[1004,1,1,6,7],[1005,1,1,7,8]]],[43,4,4,8,12,[[1032,1,1,8,9],[1036,1,1,9,10],[1041,1,1,10,11],[1042,1,1,11,12]]],[44,8,2,12,14,[[1053,8,2,12,14]]],[45,6,2,14,16,[[1067,6,2,14,16]]],[47,2,2,16,18,[[1095,1,1,16,17],[1096,1,1,17,18]]],[51,3,3,18,21,[[1112,3,3,18,21]]],[65,8,5,21,26,[[1169,2,2,21,23],[1175,5,2,23,25],[1187,1,1,25,26]]]],[23302,23902,24698,25814,26069,26247,26400,26443,27452,27622,27781,27804,28154,28155,28476,28477,29168,29203,29573,29575,29576,30761,30762,30860,30861,31057]]],["not",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24367]]],["nothing",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26167]]],["yet",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]]],[25588,26177]]]]},{"k":"G3778","v":[["*",[352,341,[[39,47,46,0,46,[[931,2,2,0,2],[932,1,1,2,3],[933,1,1,3,4],[935,1,1,4,5],[936,1,1,5,6],[937,2,2,6,8],[938,1,1,8,9],[939,1,1,9,10],[940,2,2,10,12],[941,6,6,12,18],[942,1,1,18,19],[943,1,1,19,20],[945,1,1,20,21],[946,1,1,21,22],[948,2,2,22,24],[949,6,5,24,29],[950,2,2,29,31],[952,2,2,31,33],[953,1,1,33,34],[954,7,7,34,41],[955,4,4,41,45],[956,1,1,45,46]]],[40,31,31,46,77,[[957,1,1,46,47],[958,1,1,47,48],[959,1,1,48,49],[960,5,5,49,54],[962,2,2,54,56],[963,1,1,56,57],[964,2,2,57,59],[965,1,1,59,60],[968,9,9,60,69],[969,2,2,69,71],[970,5,5,71,76],[971,1,1,76,77]]],[41,68,67,77,144,[[973,3,3,77,80],[974,6,6,80,86],[976,3,3,86,89],[977,1,1,89,90],[979,8,8,90,98],[980,7,7,98,105],[981,4,4,105,109],[983,1,1,109,110],[985,2,2,110,112],[986,1,1,112,113],[987,4,4,113,117],[988,1,1,117,118],[989,1,1,118,119],[990,2,2,119,121],[991,2,2,121,123],[992,5,5,123,128],[993,5,4,128,132],[994,3,3,132,135],[995,7,7,135,142],[996,2,2,142,144]]],[42,64,62,144,206,[[997,8,8,144,152],[998,1,1,152,153],[999,4,4,153,157],[1000,3,3,157,160],[1002,10,9,160,169],[1003,11,11,169,180],[1004,1,1,180,181],[1005,9,9,181,190],[1007,4,3,190,193],[1008,3,3,193,196],[1011,2,2,196,198],[1013,3,3,198,201],[1014,2,2,201,203],[1017,3,3,203,206]]],[43,59,57,206,263,[[1018,3,3,206,209],[1019,2,2,209,211],[1020,1,1,211,212],[1021,3,3,212,215],[1022,1,1,215,216],[1023,2,2,216,218],[1024,5,5,218,223],[1025,3,3,223,226],[1026,5,5,226,231],[1027,4,3,231,234],[1028,1,1,234,235],[1030,2,2,235,237],[1031,1,1,237,238],[1033,3,2,238,240],[1034,7,7,240,247],[1035,3,3,247,250],[1036,1,1,250,251],[1037,2,2,251,253],[1038,2,2,253,255],[1039,1,1,255,256],[1041,2,2,256,258],[1042,1,1,258,259],[1043,2,2,259,261],[1044,1,1,261,262],[1045,1,1,262,263]]],[44,11,11,263,274,[[1047,1,1,263,264],[1049,1,1,264,265],[1052,1,1,265,266],[1053,2,2,266,268],[1054,2,2,268,270],[1056,3,3,270,273],[1061,1,1,273,274]]],[45,4,4,274,278,[[1069,2,2,274,276],[1070,1,1,276,277],[1077,1,1,277,278]]],[46,3,3,278,281,[[1078,1,1,278,279],[1079,1,1,279,280],[1088,1,1,280,281]]],[47,3,3,281,284,[[1093,1,1,281,282],[1094,1,1,282,283],[1096,1,1,283,284]]],[48,1,1,284,285,[[1099,1,1,284,285]]],[50,1,1,285,286,[[1110,1,1,285,286]]],[53,1,1,286,287,[[1121,1,1,286,287]]],[54,1,1,287,288,[[1127,1,1,287,288]]],[55,1,1,288,289,[[1129,1,1,288,289]]],[57,7,7,289,296,[[1135,1,1,289,290],[1139,2,2,290,292],[1140,1,1,292,293],[1142,1,1,293,294],[1143,2,2,294,296]]],[58,6,5,296,301,[[1146,4,3,296,299],[1148,2,2,299,301]]],[59,1,1,301,302,[[1152,1,1,301,302]]],[60,3,3,302,305,[[1156,1,1,302,303],[1157,2,2,303,305]]],[61,14,13,305,318,[[1159,1,1,305,306],[1160,2,2,306,308],[1161,2,2,308,310],[1163,9,8,310,318]]],[62,4,3,318,321,[[1164,4,3,318,321]]],[64,5,5,321,326,[[1166,5,5,321,326]]],[65,17,15,326,341,[[1169,1,1,326,327],[1173,2,2,327,329],[1177,3,3,329,332],[1180,3,1,332,333],[1183,3,3,333,336],[1185,1,1,336,337],[1186,2,2,337,339],[1187,1,1,339,340],[1188,1,1,340,341]]]],[23195,23209,23212,23253,23328,23372,23382,23405,23439,23469,23512,23513,23558,23559,23561,23577,23593,23594,23599,23641,23705,23731,23804,23813,23836,23837,23842,23864,23868,23892,23910,23970,23991,24054,24062,24066,24067,24077,24115,24116,24125,24166,24176,24183,24187,24210,24242,24267,24323,24338,24339,24341,24343,24364,24410,24423,24469,24512,24535,24545,24680,24683,24684,24689,24703,24704,24713,24716,24717,24730,24747,24758,24762,24763,24814,24823,24865,24922,24925,24929,24975,24998,25007,25009,25010,25011,25084,25085,25099,25128,25207,25212,25222,25234,25239,25240,25241,25244,25253,25254,25256,25258,25266,25270,25287,25310,25325,25336,25349,25434,25520,25522,25583,25590,25612,25618,25620,25621,25669,25699,25702,25733,25771,25793,25796,25807,25809,25826,25829,25830,25848,25858,25917,25920,25923,25957,25970,25973,25976,25982,25986,25987,26008,26035,26046,26051,26059,26063,26074,26077,26078,26085,26115,26122,26139,26146,26149,26185,26198,26203,26262,26271,26299,26303,26307,26309,26315,26317,26328,26343,26346,26353,26354,26359,26363,26364,26368,26369,26374,26377,26385,26442,26443,26448,26449,26456,26459,26460,26464,26473,26527,26560,26570,26601,26610,26614,26704,26711,26762,26770,26784,26806,26815,26919,26921,26922,26934,26937,26941,26956,26964,27006,27031,27032,27033,27097,27114,27115,27135,27152,27153,27154,27156,27186,27202,27208,27231,27236,27237,27238,27252,27265,27291,27295,27319,27366,27369,27423,27500,27503,27526,27529,27530,27534,27541,27542,27547,27570,27582,27583,27611,27631,27660,27675,27692,27730,27784,27789,27807,27854,27855,27886,27903,27976,28031,28101,28125,28130,28161,28164,28233,28236,28240,28338,28530,28536,28543,28793,28812,28830,28999,29109,29155,29200,29259,29553,29741,29861,29905,29998,30065,30068,30102,30149,30185,30211,30289,30291,30293,30321,30334,30406,30496,30512,30517,30545,30572,30575,30590,30602,30627,30628,30630,30631,30633,30635,30638,30644,30651,30652,30654,30680,30682,30684,30688,30691,30751,30823,30824,30876,30878,30882,30930,30988,30989,30991,31026,31043,31052,31058,31086]]],["+",[5,5,[[39,2,2,0,2,[[941,2,2,0,2]]],[42,2,2,2,4,[[998,1,1,2,3],[1017,1,1,3,4]]],[43,1,1,4,5,[[1018,1,1,4,5]]]],[23561,23577,26115,26921,26941]]],["He",[6,6,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[42,1,1,2,3,[[997,1,1,2,3]]],[43,2,2,3,5,[[1024,1,1,3,4],[1027,1,1,4,5]]],[61,1,1,5,6,[[1160,1,1,5,6]]]],[24187,24925,26085,27152,27265,30572]]],["It",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24423]]],["THIS",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24166,25973]]],["These",[24,22,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[43,6,6,2,8,[[1018,1,1,2,3],[1033,2,2,3,5],[1034,2,2,5,7],[1037,1,1,7,8]]],[50,1,1,8,9,[[1110,1,1,8,9]]],[57,1,1,9,10,[[1143,1,1,9,10]]],[60,1,1,10,11,[[1157,1,1,10,11]]],[64,3,3,11,14,[[1166,3,3,11,14]]],[65,10,8,14,22,[[1173,1,1,14,15],[1177,2,2,15,17],[1180,3,1,17,18],[1183,2,2,18,20],[1185,1,1,20,21],[1188,1,1,21,22]]]],[23804,26035,26937,27500,27503,27529,27534,27631,29553,30185,30517,30684,30688,30691,30824,30876,30878,30930,30988,30989,31026,31086]]],["This",[58,58,[[39,14,14,0,14,[[931,1,1,0,1],[937,1,1,1,2],[940,1,1,2,3],[941,1,1,3,4],[942,1,1,4,5],[943,1,1,5,6],[945,1,1,6,7],[949,2,2,7,9],[950,1,1,9,10],[952,1,1,10,11],[954,2,2,11,13],[955,1,1,13,14]]],[40,5,5,14,19,[[963,1,1,14,15],[965,1,1,15,16],[968,2,2,16,18],[970,1,1,18,19]]],[41,7,7,19,26,[[979,1,1,19,20],[981,1,1,20,21],[983,1,1,21,22],[986,1,1,22,23],[992,1,1,23,24],[993,1,1,24,25],[995,1,1,25,26]]],[42,13,13,26,39,[[997,2,2,26,28],[1002,4,4,28,32],[1003,1,1,32,33],[1005,2,2,33,35],[1007,1,1,35,36],[1008,1,1,36,37],[1011,1,1,37,38],[1017,1,1,38,39]]],[43,8,8,39,47,[[1021,1,1,39,40],[1023,1,1,40,41],[1024,2,2,41,43],[1035,1,1,43,44],[1038,1,1,44,45],[1043,2,2,45,47]]],[55,1,1,47,48,[[1129,1,1,47,48]]],[57,1,1,48,49,[[1142,1,1,48,49]]],[58,1,1,49,50,[[1148,1,1,49,50]]],[60,1,1,50,51,[[1156,1,1,50,51]]],[61,3,3,51,54,[[1159,1,1,51,52],[1163,2,2,52,54]]],[62,2,2,54,56,[[1164,2,2,54,56]]],[65,2,2,56,58,[[1186,2,2,56,58]]]],[23209,23382,23513,23558,23599,23641,23705,23837,23864,23910,23991,24115,24125,24176,24469,24545,24680,24684,24823,25222,25336,25434,25583,25793,25858,25987,26059,26074,26271,26307,26315,26317,26369,26449,26456,26527,26610,26711,26922,27033,27114,27153,27154,27570,27692,27854,27855,29905,30149,30334,30496,30545,30630,30644,30651,30652,31043,31052]]],["be",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[44,1,1,1,2,[[1052,1,1,1,2]]]],[23439,28101]]],["he",[24,24,[[41,5,5,0,5,[[991,1,1,0,1],[992,2,2,1,3],[995,2,2,3,5]]],[42,6,6,5,11,[[1000,1,1,5,6],[1002,3,3,6,9],[1003,1,1,9,10],[1014,1,1,10,11]]],[43,9,9,11,20,[[1020,1,1,11,12],[1021,1,1,12,13],[1026,2,2,13,15],[1027,3,3,15,18],[1034,1,1,18,19],[1035,1,1,19,20]]],[44,1,1,20,21,[[1053,1,1,20,21]]],[58,2,2,21,23,[[1146,2,2,21,23]]],[62,1,1,23,24,[[1164,1,1,23,24]]]],[25733,25807,25809,25957,25970,26203,26299,26303,26328,26363,26815,27006,27031,27231,27236,27265,27291,27295,27547,27583,28125,30289,30291,30654]]],["hereof",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23405]]],["is",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24683]]],["man",[18,17,[[41,5,5,0,5,[[979,1,1,0,1],[987,1,1,1,2],[990,1,1,2,3],[994,1,1,3,4],[995,1,1,4,5]]],[42,8,7,5,12,[[1002,1,1,5,6],[1003,1,1,6,7],[1005,3,3,7,10],[1007,2,1,10,11],[1017,1,1,11,12]]],[43,3,3,12,15,[[1021,1,1,12,13],[1025,1,1,13,14],[1035,1,1,14,15]]],[57,1,1,15,16,[[1139,1,1,15,16]]],[58,1,1,16,17,[[1146,1,1,16,17]]]],[25234,25590,25702,25920,25976,26309,26343,26442,26443,26473,26560,26919,27032,27186,27582,30068,30291]]],["same",[33,33,[[39,6,6,0,6,[[933,1,1,0,1],[941,1,1,1,2],[946,1,1,2,3],[949,1,1,3,4],[952,1,1,4,5],[954,1,1,5,6]]],[40,3,3,6,9,[[959,1,1,6,7],[964,1,1,7,8],[969,1,1,8,9]]],[41,7,7,9,16,[[974,1,1,9,10],[981,2,2,10,12],[988,1,1,12,13],[992,2,2,13,15],[995,1,1,15,16]]],[42,8,8,16,24,[[997,3,3,16,19],[999,2,2,19,21],[1003,1,1,21,22],[1008,1,1,22,23],[1011,1,1,23,24]]],[43,4,4,24,28,[[1018,1,1,24,25],[1024,1,1,25,26],[1031,1,1,26,27],[1033,1,1,27,28]]],[45,1,1,28,29,[[1069,1,1,28,29]]],[47,1,1,29,30,[[1093,1,1,29,30]]],[58,1,1,30,31,[[1148,1,1,30,31]]],[59,1,1,31,32,[[1152,1,1,31,32]]],[65,1,1,32,33,[[1169,1,1,32,33]]]],[23253,23559,23731,23868,23970,24077,24323,24535,24730,24998,25325,25349,25621,25796,25826,25986,26046,26051,26077,26122,26146,26346,26601,26704,26934,27135,27423,27500,28530,29109,30321,30406,30751]]],["she",[11,11,[[40,3,3,0,3,[[968,1,1,0,1],[970,2,2,1,3]]],[41,7,7,3,10,[[974,3,3,3,6],[979,2,2,6,8],[980,1,1,8,9],[993,1,1,9,10]]],[44,1,1,10,11,[[1061,1,1,10,11]]]],[24717,24762,24763,25009,25010,25011,25207,25239,25287,25830,28338]]],["that",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24066]]],["these",[44,44,[[39,5,5,0,5,[[932,1,1,0,1],[948,1,1,1,2],[949,1,1,2,3],[953,1,1,3,4],[954,1,1,4,5]]],[40,6,6,5,11,[[960,4,4,5,9],[968,1,1,9,10],[970,1,1,10,11]]],[41,7,7,11,18,[[980,2,2,11,13],[985,1,1,13,14],[991,1,1,14,15],[993,2,2,15,17],[996,1,1,17,18]]],[42,3,3,18,21,[[1002,1,1,18,19],[1013,2,2,19,21]]],[43,8,8,21,29,[[1019,2,2,21,23],[1028,1,1,23,24],[1034,1,1,24,25],[1037,1,1,25,26],[1041,1,1,26,27],[1042,1,1,27,28],[1044,1,1,28,29]]],[44,3,3,29,32,[[1047,1,1,29,30],[1056,2,2,30,32]]],[47,1,1,32,33,[[1094,1,1,32,33]]],[53,1,1,33,34,[[1121,1,1,33,34]]],[54,1,1,34,35,[[1127,1,1,34,35]]],[57,1,1,35,36,[[1143,1,1,35,36]]],[60,1,1,36,37,[[1157,1,1,36,37]]],[61,1,1,37,38,[[1163,1,1,37,38]]],[64,2,2,38,40,[[1166,2,2,38,40]]],[65,4,4,40,44,[[1173,1,1,40,41],[1177,1,1,41,42],[1183,1,1,42,43],[1187,1,1,43,44]]]],[23212,23813,23842,24054,24116,24338,24339,24341,24343,24713,24814,25258,25266,25520,25771,25830,25848,26008,26262,26770,26784,26956,26964,27319,27530,27660,27789,27807,27886,27976,28233,28240,29155,29741,29861,30211,30512,30631,30680,30682,30823,30882,30991,31058]]],["they",[8,8,[[41,1,1,0,1,[[985,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[43,2,2,2,4,[[1030,1,1,2,3],[1041,1,1,3,4]]],[44,2,2,4,6,[[1053,1,1,4,5],[1054,1,1,5,6]]],[45,1,1,6,7,[[1077,1,1,6,7]]],[47,1,1,7,8,[[1096,1,1,7,8]]]],[25522,26806,27366,27784,28130,28161,28793,29200]]],["things",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25253]]],["this",[106,105,[[39,13,13,0,13,[[931,1,1,0,1],[935,1,1,1,2],[936,1,1,2,3],[939,1,1,3,4],[940,1,1,4,5],[941,2,2,5,7],[949,2,2,7,9],[950,1,1,9,10],[954,1,1,10,11],[955,1,1,11,12],[956,1,1,12,13]]],[40,12,12,13,25,[[957,1,1,13,14],[958,1,1,14,15],[960,1,1,15,16],[962,1,1,16,17],[964,1,1,17,18],[968,4,4,18,22],[969,1,1,22,23],[970,1,1,23,24],[971,1,1,24,25]]],[41,23,23,25,48,[[973,2,2,25,27],[974,2,2,27,29],[976,3,3,29,32],[977,1,1,32,33],[979,2,2,33,35],[980,3,3,35,38],[981,1,1,38,39],[987,3,3,39,42],[989,1,1,42,43],[990,1,1,43,44],[993,1,1,44,45],[994,2,2,45,47],[995,1,1,47,48]]],[42,22,22,48,70,[[997,2,2,48,50],[999,2,2,50,52],[1000,2,2,52,54],[1002,1,1,54,55],[1003,7,7,55,62],[1004,1,1,62,63],[1005,4,4,63,67],[1007,1,1,67,68],[1008,1,1,68,69],[1013,1,1,69,70]]],[43,13,13,70,83,[[1022,1,1,70,71],[1023,1,1,71,72],[1024,1,1,72,73],[1025,1,1,73,74],[1026,2,2,74,76],[1034,3,3,76,79],[1036,1,1,79,80],[1038,1,1,80,81],[1039,1,1,81,82],[1045,1,1,82,83]]],[44,3,3,83,86,[[1049,1,1,83,84],[1054,1,1,84,85],[1056,1,1,85,86]]],[45,2,2,86,88,[[1069,1,1,86,87],[1070,1,1,87,88]]],[46,3,3,88,91,[[1078,1,1,88,89],[1079,1,1,89,90],[1088,1,1,90,91]]],[48,1,1,91,92,[[1099,1,1,91,92]]],[57,3,3,92,95,[[1135,1,1,92,93],[1139,1,1,93,94],[1140,1,1,94,95]]],[58,1,1,95,96,[[1146,1,1,95,96]]],[61,9,8,96,104,[[1160,1,1,96,97],[1161,2,2,97,99],[1163,6,5,99,104]]],[62,1,1,104,105,[[1164,1,1,104,105]]]],[23195,23328,23372,23469,23512,23593,23594,23836,23868,23892,24062,24183,24210,24242,24267,24364,24410,24512,24689,24703,24704,24716,24747,24758,24865,24922,24929,24975,25007,25084,25085,25099,25128,25212,25244,25254,25256,25270,25310,25612,25618,25620,25669,25699,25829,25917,25923,25982,26063,26078,26139,26149,26185,26198,26299,26353,26354,26359,26364,26368,26374,26377,26385,26448,26459,26460,26464,26570,26614,26762,27097,27115,27156,27208,27237,27238,27526,27541,27542,27611,27675,27730,27903,28031,28164,28236,28536,28543,28812,28830,28999,29259,29998,30065,30102,30293,30575,30590,30602,30627,30628,30633,30635,30638,30651]]],["which",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27202]]],["who",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27369]]],["woman",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,2,2,1,3,[[979,2,2,1,3]]],[43,1,1,3,4,[[1026,1,1,3,4]]]],[24067,25240,25241,27252]]]]},{"k":"G3779","v":[["*",[212,205,[[39,33,33,0,33,[[929,1,1,0,1],[930,1,1,1,2],[931,1,1,2,3],[933,4,4,3,7],[934,2,2,7,9],[935,2,2,9,11],[937,1,1,11,12],[939,1,1,12,13],[940,2,2,13,15],[941,2,2,15,17],[945,1,1,17,18],[946,2,2,18,20],[947,3,3,20,23],[948,2,2,23,25],[951,1,1,25,26],[952,5,5,26,31],[954,2,2,31,33]]],[40,10,10,33,43,[[958,3,3,33,36],[960,2,2,36,38],[963,1,1,38,39],[966,1,1,39,40],[969,1,1,40,41],[970,1,1,41,42],[971,1,1,42,43]]],[41,23,22,43,65,[[973,1,1,43,44],[974,1,1,44,45],[978,1,1,45,46],[981,1,1,46,47],[982,1,1,47,48],[983,1,1,48,49],[984,5,5,49,54],[986,1,1,54,55],[987,2,2,55,57],[989,3,3,57,60],[991,1,1,60,61],[993,1,1,61,62],[994,1,1,62,63],[996,3,2,63,65]]],[42,13,13,65,78,[[999,3,3,65,68],[1000,1,1,68,69],[1001,2,2,69,71],[1004,1,1,71,72],[1007,1,1,72,73],[1008,1,1,73,74],[1010,1,1,74,75],[1011,1,1,75,76],[1014,1,1,76,77],[1017,1,1,77,78]]],[43,27,27,78,105,[[1018,1,1,78,79],[1020,1,1,79,80],[1024,3,3,80,83],[1025,1,1,83,84],[1029,2,2,84,86],[1030,3,3,86,89],[1031,1,1,89,90],[1034,2,2,90,92],[1036,1,1,92,93],[1037,3,3,93,96],[1038,1,1,96,97],[1039,1,1,97,98],[1040,1,1,98,99],[1041,2,2,99,101],[1044,3,3,101,104],[1045,1,1,104,105]]],[44,17,17,105,122,[[1046,1,1,105,106],[1049,1,1,106,107],[1050,5,5,107,112],[1051,3,3,112,115],[1054,1,1,115,116],[1055,1,1,116,117],[1056,3,3,117,120],[1057,1,1,120,121],[1060,1,1,121,122]]],[45,32,27,122,149,[[1063,1,1,122,123],[1064,1,1,123,124],[1065,1,1,124,125],[1066,1,1,125,126],[1067,1,1,126,127],[1068,7,5,127,132],[1069,1,1,132,133],[1070,5,4,133,137],[1072,2,2,137,139],[1073,1,1,139,140],[1075,5,4,140,144],[1076,5,4,144,148],[1077,1,1,148,149]]],[46,8,8,149,157,[[1078,2,2,149,151],[1084,1,1,151,152],[1085,2,2,152,154],[1086,1,1,154,155],[1087,1,1,155,156],[1088,1,1,156,157]]],[47,5,5,157,162,[[1091,1,1,157,158],[1093,1,1,158,159],[1094,2,2,159,161],[1096,1,1,161,162]]],[48,4,4,162,166,[[1100,1,1,162,163],[1101,3,3,163,166]]],[49,2,2,166,168,[[1105,1,1,166,167],[1106,1,1,167,168]]],[50,1,1,168,169,[[1109,1,1,168,169]]],[51,5,5,169,174,[[1112,2,2,169,171],[1114,2,2,171,173],[1115,1,1,173,174]]],[52,1,1,174,175,[[1118,1,1,174,175]]],[54,1,1,175,176,[[1127,1,1,175,176]]],[57,9,9,176,185,[[1136,1,1,176,177],[1137,2,2,177,179],[1138,2,2,179,181],[1141,2,2,181,183],[1142,1,1,183,184],[1144,1,1,184,185]]],[58,9,8,185,193,[[1146,1,1,185,186],[1147,4,3,186,189],[1148,4,4,189,193]]],[59,2,2,193,195,[[1152,1,1,193,194],[1153,1,1,194,195]]],[60,2,2,195,197,[[1156,1,1,195,196],[1158,1,1,196,197]]],[61,2,2,197,199,[[1160,1,1,197,198],[1162,1,1,198,199]]],[65,6,6,199,205,[[1168,1,1,199,200],[1169,1,1,200,201],[1175,1,1,201,202],[1177,1,1,202,203],[1182,1,1,203,204],[1184,1,1,204,205]]]],[23162,23174,23207,23246,23250,23253,23281,23291,23312,23328,23333,23412,23485,23529,23534,23579,23588,23712,23741,23762,23770,23772,23774,23808,23818,23946,23984,23990,23994,23996,24003,24094,24108,24267,24268,24272,24349,24363,24481,24631,24746,24813,24865,24918,25021,25156,25316,25384,25435,25480,25487,25497,25502,25513,25586,25595,25598,25661,25675,25677,25762,25857,25890,26015,26037,26128,26134,26136,26162,26231,26236,26440,26571,26630,26699,26703,26807,26899,26934,27014,27117,27122,27124,27208,27345,27352,27370,27396,27409,27415,27534,27556,27605,27637,27639,27661,27675,27728,27745,27778,27783,27872,27880,27899,27913,27945,28040,28059,28062,28065,28066,28068,28072,28079,28087,28175,28194,28214,28235,28240,28250,28323,28405,28425,28434,28457,28472,28494,28504,28513,28523,28527,28539,28554,28555,28564,28566,28612,28628,28646,28687,28690,28699,28703,28729,28740,28760,28763,28777,28805,28807,28930,28938,28943,28961,28978,28992,29063,29105,29134,29160,29190,29292,29328,29332,29337,29438,29443,29530,29574,29578,29617,29620,29623,29695,29861,30018,30033,30035,30053,30059,30111,30133,30166,30233,30277,30305,30310,30319,30324,30325,30329,30331,30414,30429,30490,30526,30556,30614,30732,30762,30857,30877,30972,31014]]],["+",[7,7,[[41,1,1,0,1,[[989,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]],[43,1,1,2,3,[[1039,1,1,2,3]]],[44,1,1,3,4,[[1050,1,1,3,4]]],[45,1,1,4,5,[[1066,1,1,4,5]]],[46,1,1,5,6,[[1086,1,1,5,6]]],[57,1,1,6,7,[[1142,1,1,6,7]]]],[25661,26571,27728,28066,28457,28961,30166]]],["Likewise",[3,3,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]],[44,1,1,2,3,[[1051,1,1,2,3]]]],[23712,25598,28079]]],["So",[21,21,[[39,3,3,0,3,[[941,1,1,0,1],[948,1,1,1,2],[952,1,1,2,3]]],[40,2,2,3,5,[[960,1,1,3,4],[969,1,1,4,5]]],[41,1,1,5,6,[[984,1,1,5,6]]],[43,3,3,6,9,[[1034,1,1,6,7],[1036,1,1,7,8],[1038,1,1,8,9]]],[44,3,3,9,12,[[1046,1,1,9,10],[1049,1,1,10,11],[1057,1,1,11,12]]],[45,3,3,12,15,[[1070,1,1,12,13],[1075,1,1,13,14],[1076,1,1,14,15]]],[48,1,1,15,16,[[1101,1,1,15,16]]],[51,1,1,16,17,[[1112,1,1,16,17]]],[57,2,2,17,19,[[1137,1,1,17,18],[1141,1,1,18,19]]],[58,1,1,19,20,[[1147,1,1,19,20]]],[65,1,1,20,21,[[1168,1,1,20,21]]]],[23588,23808,23990,24349,24746,25480,27556,27605,27675,27945,28040,28250,28564,28687,28760,29332,29578,30035,30133,30305,30732]]],["Thus",[3,3,[[41,2,2,0,2,[[973,1,1,0,1],[996,1,1,1,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[24918,26037,31014]]],["What",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24094]]],["as",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30526]]],["fashion",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24272]]],["it",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27880]]],["likewise",[4,4,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,3,3,1,4,[[986,1,1,1,2],[987,1,1,2,3],[993,1,1,3,4]]]],[23762,25586,25595,25857]]],["manner",[4,4,[[39,1,1,0,1,[[934,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]],[65,1,1,3,4,[[1177,1,1,3,4]]]],[23291,28494,30429,30877]]],["more",[1,1,[[42,1,1,0,1,[[1011,1,1,0,1]]]],[26703]]],["so",[143,140,[[39,22,22,0,22,[[933,4,4,0,4],[934,1,1,4,5],[935,2,2,5,7],[937,1,1,7,8],[939,1,1,8,9],[940,2,2,9,11],[941,1,1,11,12],[946,1,1,12,13],[947,3,3,13,16],[948,1,1,16,17],[951,1,1,17,18],[952,4,4,18,22]]],[40,6,6,22,28,[[958,1,1,22,23],[960,1,1,23,24],[963,1,1,24,25],[966,1,1,25,26],[970,1,1,26,27],[971,1,1,27,28]]],[41,12,12,28,40,[[978,1,1,28,29],[981,1,1,29,30],[982,1,1,30,31],[983,1,1,31,32],[984,4,4,32,36],[989,2,2,36,38],[994,1,1,38,39],[996,1,1,39,40]]],[42,9,9,40,49,[[999,3,3,40,43],[1001,2,2,43,45],[1004,1,1,45,46],[1008,1,1,46,47],[1010,1,1,47,48],[1014,1,1,48,49]]],[43,20,20,49,69,[[1018,1,1,49,50],[1020,1,1,50,51],[1024,2,2,51,53],[1025,1,1,53,54],[1029,2,2,54,56],[1030,2,2,56,58],[1031,1,1,58,59],[1034,1,1,59,60],[1037,3,3,60,63],[1040,1,1,63,64],[1041,2,2,64,66],[1044,2,2,66,68],[1045,1,1,68,69]]],[44,10,10,69,79,[[1050,4,4,69,73],[1051,2,2,73,75],[1056,3,3,75,78],[1060,1,1,78,79]]],[45,24,21,79,100,[[1063,1,1,79,80],[1064,1,1,80,81],[1065,1,1,81,82],[1067,1,1,82,83],[1068,5,4,83,87],[1069,1,1,87,88],[1070,4,3,88,91],[1072,2,2,91,93],[1073,1,1,93,94],[1075,2,2,94,96],[1076,4,3,96,99],[1077,1,1,99,100]]],[46,7,7,100,107,[[1078,2,2,100,102],[1084,1,1,102,103],[1085,2,2,103,105],[1087,1,1,105,106],[1088,1,1,106,107]]],[47,5,5,107,112,[[1091,1,1,107,108],[1093,1,1,108,109],[1094,2,2,109,111],[1096,1,1,111,112]]],[48,3,3,112,115,[[1100,1,1,112,113],[1101,2,2,113,115]]],[49,2,2,115,117,[[1105,1,1,115,116],[1106,1,1,116,117]]],[50,1,1,117,118,[[1109,1,1,117,118]]],[51,4,4,118,122,[[1112,1,1,118,119],[1114,2,2,119,121],[1115,1,1,121,122]]],[52,1,1,122,123,[[1118,1,1,122,123]]],[54,1,1,123,124,[[1127,1,1,123,124]]],[57,3,3,124,127,[[1137,1,1,124,125],[1138,1,1,125,126],[1144,1,1,126,127]]],[58,8,8,127,135,[[1146,1,1,127,128],[1147,3,3,128,131],[1148,4,4,131,135]]],[59,1,1,135,136,[[1152,1,1,135,136]]],[60,1,1,136,137,[[1156,1,1,136,137]]],[61,2,2,137,139,[[1160,1,1,137,138],[1162,1,1,138,139]]],[65,1,1,139,140,[[1182,1,1,139,140]]]],[23246,23250,23253,23281,23312,23328,23333,23412,23485,23529,23534,23579,23741,23770,23772,23774,23818,23946,23984,23994,23996,24003,24268,24363,24481,24631,24813,24865,25156,25316,25384,25435,25487,25497,25502,25513,25675,25677,25890,26015,26128,26134,26136,26231,26236,26440,26630,26699,26807,26934,27014,27117,27124,27208,27345,27352,27370,27409,27415,27534,27637,27639,27661,27745,27778,27783,27872,27899,27913,28059,28062,28065,28068,28072,28087,28214,28235,28240,28323,28405,28425,28434,28472,28504,28513,28523,28527,28539,28554,28555,28566,28612,28628,28646,28690,28703,28729,28740,28763,28777,28805,28807,28930,28938,28943,28978,28992,29063,29105,29134,29160,29190,29292,29328,29337,29438,29443,29530,29574,29617,29620,29623,29695,29861,30033,30059,30233,30277,30305,30310,30319,30324,30325,30329,30331,30414,30490,30556,30614,30972]]],["that",[2,2,[[45,2,2,0,2,[[1068,1,1,0,1],[1075,1,1,1,2]]]],[28494,28699]]],["then",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30762]]],["thus",[13,13,[[39,3,3,0,3,[[930,1,1,0,1],[931,1,1,1,2],[954,1,1,2,3]]],[40,1,1,3,4,[[958,1,1,3,4]]],[41,3,3,4,7,[[974,1,1,4,5],[991,1,1,5,6],[996,1,1,6,7]]],[42,1,1,7,8,[[1000,1,1,7,8]]],[44,1,1,8,9,[[1054,1,1,8,9]]],[45,1,1,9,10,[[1075,1,1,9,10]]],[57,2,2,10,12,[[1138,1,1,10,11],[1141,1,1,11,12]]],[65,1,1,12,13,[[1175,1,1,12,13]]]],[23174,23207,24108,24267,25021,25762,26037,26162,28175,28703,30053,30111,30857]]],["wise",[6,6,[[39,1,1,0,1,[[929,1,1,0,1]]],[42,1,1,1,2,[[1017,1,1,1,2]]],[43,2,2,2,4,[[1024,1,1,2,3],[1030,1,1,3,4]]],[44,1,1,4,5,[[1055,1,1,4,5]]],[57,1,1,5,6,[[1136,1,1,5,6]]]],[23162,26899,27122,27396,28194,30018]]]]},{"k":"G3780","v":[["*",[56,54,[[39,10,10,0,10,[[933,2,2,0,2],[934,1,1,2,3],[938,1,1,3,4],[940,1,1,4,5],[941,3,3,5,8],[946,1,1,8,9],[948,1,1,9,10]]],[41,15,15,10,25,[[973,1,1,10,11],[978,1,1,11,12],[984,2,2,12,14],[985,2,2,14,16],[986,2,2,16,18],[987,1,1,18,19],[988,1,1,19,20],[989,2,2,20,22],[994,1,1,22,23],[996,2,2,23,25]]],[42,5,5,25,30,[[1003,1,1,25,26],[1007,1,1,26,27],[1009,2,2,27,29],[1010,1,1,29,30]]],[43,2,2,30,32,[[1022,1,1,30,31],[1024,1,1,31,32]]],[44,4,4,32,36,[[1047,1,1,32,33],[1048,2,2,33,35],[1053,1,1,35,36]]],[45,15,13,36,49,[[1062,1,1,36,37],[1064,2,2,37,39],[1066,2,2,39,41],[1067,3,2,41,43],[1069,1,1,43,44],[1070,2,2,44,46],[1071,4,3,46,49]]],[46,2,2,49,51,[[1080,1,1,49,50],[1087,1,1,50,51]]],[51,1,1,51,52,[[1112,1,1,51,52]]],[57,2,2,52,54,[[1133,1,1,52,53],[1135,1,1,53,54]]]],[23280,23281,23307,23446,23500,23566,23594,23595,23739,23805,24953,25185,25465,25510,25521,25523,25581,25584,25596,25650,25659,25668,25891,26017,26023,26370,26532,26640,26641,26690,27063,27166,27988,28018,28020,28148,28383,28413,28414,28456,28466,28468,28474,28537,28541,28548,28583,28585,28596,28849,28984,29589,29977,30012]]],["+",[3,3,[[41,2,2,0,2,[[986,2,2,0,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]]],[25581,25584,27063]]],["Nay",[5,5,[[41,4,4,0,4,[[984,1,1,0,1],[985,2,2,1,3],[988,1,1,3,4]]],[44,1,1,4,5,[[1048,1,1,4,5]]]],[25510,25521,25523,25650,28018]]],["Not",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24953]]],["not",[47,45,[[39,10,10,0,10,[[933,2,2,0,2],[934,1,1,2,3],[938,1,1,3,4],[940,1,1,4,5],[941,3,3,5,8],[946,1,1,8,9],[948,1,1,9,10]]],[41,8,8,10,18,[[978,1,1,10,11],[984,1,1,11,12],[987,1,1,12,13],[989,2,2,13,15],[994,1,1,15,16],[996,2,2,16,18]]],[42,5,5,18,23,[[1003,1,1,18,19],[1007,1,1,19,20],[1009,2,2,20,22],[1010,1,1,22,23]]],[43,1,1,23,24,[[1024,1,1,23,24]]],[44,3,3,24,27,[[1047,1,1,24,25],[1048,1,1,25,26],[1053,1,1,26,27]]],[45,15,13,27,40,[[1062,1,1,27,28],[1064,2,2,28,30],[1066,2,2,30,32],[1067,3,2,32,34],[1069,1,1,34,35],[1070,2,2,35,37],[1071,4,3,37,40]]],[46,2,2,40,42,[[1080,1,1,40,41],[1087,1,1,41,42]]],[51,1,1,42,43,[[1112,1,1,42,43]]],[57,2,2,43,45,[[1133,1,1,43,44],[1135,1,1,44,45]]]],[23280,23281,23307,23446,23500,23566,23594,23595,23739,23805,25185,25465,25596,25659,25668,25891,26017,26023,26370,26532,26640,26641,26690,27166,27988,28020,28148,28383,28413,28414,28456,28466,28468,28474,28537,28541,28548,28583,28585,28596,28849,28984,29589,29977,30012]]]]},{"k":"G3781","v":[["*",[7,7,[[39,2,2,0,2,[[934,1,1,0,1],[946,1,1,1,2]]],[41,1,1,2,3,[[985,1,1,2,3]]],[44,3,3,3,6,[[1046,1,1,3,4],[1053,1,1,4,5],[1060,1,1,5,6]]],[47,1,1,6,7,[[1095,1,1,6,7]]]],[23294,23751,25522,27944,28128,28330,29165]]],["debtor",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]]],[27944,29165]]],["debtors",[3,3,[[39,1,1,0,1,[[934,1,1,0,1]]],[44,2,2,1,3,[[1053,1,1,1,2],[1060,1,1,2,3]]]],[23294,28128,28330]]],["owed",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23751]]],["sinners",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25522]]]]},{"k":"G3782","v":[["*",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]]],[23759,28273]]],["debt",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23759]]],["dues",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28273]]]]},{"k":"G3783","v":[["*",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[44,1,1,1,2,[[1049,1,1,1,2]]]],[23294,28026]]],["debt",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28026]]],["debts",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23294]]]]},{"k":"G3784","v":[["*",[36,35,[[39,6,5,0,5,[[946,4,3,0,3],[951,2,2,3,5]]],[41,5,5,5,10,[[979,1,1,5,6],[983,1,1,6,7],[988,2,2,7,9],[989,1,1,9,10]]],[42,2,2,10,12,[[1009,1,1,10,11],[1015,1,1,11,12]]],[43,1,1,12,13,[[1034,1,1,12,13]]],[44,3,3,13,16,[[1058,1,1,13,14],[1060,2,2,14,16]]],[45,6,6,16,22,[[1066,1,1,16,17],[1068,2,2,17,19],[1070,1,1,19,20],[1072,2,2,20,22]]],[46,2,2,22,24,[[1089,2,2,22,24]]],[48,1,1,24,25,[[1101,1,1,24,25]]],[52,2,2,25,27,[[1116,1,1,25,26],[1117,1,1,26,27]]],[56,1,1,27,28,[[1132,1,1,27,28]]],[57,3,3,28,31,[[1134,1,1,28,29],[1137,2,2,29,31]]],[61,3,3,31,34,[[1160,1,1,31,32],[1161,1,1,32,33],[1162,1,1,33,34]]],[63,1,1,34,35,[[1165,1,1,34,35]]]],[23755,23757,23761,23934,23936,25236,25409,25625,25627,25661,26644,26832,27552,28274,28304,28330,28464,28490,28523,28550,28607,28610,29033,29036,29332,29652,29674,29956,29994,30033,30042,30556,30595,30614,30666]]],["Owe",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28274]]],["behoved",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29994]]],["bound",[2,2,[[52,2,2,0,2,[[1116,1,1,0,1],[1117,1,1,1,2]]]],[29652,29674]]],["debt",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23757]]],["debtor",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23934]]],["due",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[23761,28490]]],["duty",[2,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]]],[25661,28330]]],["guilty",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23936]]],["indebted",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25409]]],["need",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28523]]],["needs",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28464]]],["ought",[15,15,[[42,2,2,0,2,[[1009,1,1,0,1],[1015,1,1,1,2]]],[43,1,1,2,3,[[1034,1,1,2,3]]],[44,1,1,3,4,[[1060,1,1,3,4]]],[45,2,2,4,6,[[1072,2,2,4,6]]],[46,2,2,6,8,[[1089,2,2,6,8]]],[48,1,1,8,9,[[1101,1,1,8,9]]],[57,2,2,9,11,[[1137,2,2,9,11]]],[61,3,3,11,14,[[1160,1,1,11,12],[1161,1,1,12,13],[1162,1,1,13,14]]],[63,1,1,14,15,[[1165,1,1,14,15]]]],[26644,26832,27552,28304,28607,28610,29033,29036,29332,30033,30042,30556,30595,30614,30666]]],["owed",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]]],[23755,25236]]],["owest",[3,3,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,2,2,1,3,[[988,2,2,1,3]]]],[23755,25625,25627]]],["oweth",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29956]]],["should",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28550]]]]},{"k":"G3785","v":[["*",[4,4,[[45,1,1,0,1,[[1065,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]],[65,1,1,3,4,[[1169,1,1,3,4]]]],[28441,28990,29174,30761]]],["+",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28441]]],["God",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28990]]],["would",[2,2,[[47,1,1,0,1,[[1095,1,1,0,1]]],[65,1,1,1,2,[[1169,1,1,1,2]]]],[29174,30761]]]]},{"k":"G3786","v":[["*",[3,3,[[45,1,1,0,1,[[1076,1,1,0,1]]],[58,2,2,1,3,[[1147,2,2,1,3]]]],[28750,30307,30309]]],["advantageth",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28750]]],["profit",[2,2,[[58,2,2,0,2,[[1147,2,2,0,2]]]],[30307,30309]]]]},{"k":"G3787","v":[["eyeservice",[2,2,[[48,1,1,0,1,[[1102,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29343,29539]]]]},{"k":"G3788","v":[["*",[102,86,[[39,26,18,0,18,[[933,3,2,0,2],[934,3,2,2,4],[935,6,3,4,7],[937,2,2,7,9],[941,3,2,9,11],[945,1,1,11,12],[946,2,1,12,13],[948,4,3,13,16],[949,1,1,16,17],[954,1,1,17,18]]],[40,7,6,18,24,[[963,1,1,18,19],[964,2,2,19,21],[965,2,1,21,22],[968,1,1,22,23],[970,1,1,23,24]]],[41,17,12,24,36,[[974,1,1,24,25],[976,1,1,25,26],[978,7,3,26,29],[982,1,1,29,30],[983,2,1,30,31],[988,1,1,31,32],[990,1,1,32,33],[991,1,1,33,34],[996,2,2,34,36]]],[42,18,17,36,53,[[1000,1,1,36,37],[1002,1,1,37,38],[1005,10,10,38,48],[1006,1,1,48,49],[1007,2,2,49,51],[1008,2,1,51,52],[1013,1,1,52,53]]],[43,7,6,53,59,[[1018,1,1,53,54],[1026,3,3,54,57],[1043,1,1,57,58],[1045,2,1,58,59]]],[44,3,3,59,62,[[1048,1,1,59,60],[1056,2,2,60,62]]],[45,5,5,62,67,[[1063,1,1,62,63],[1073,3,3,63,66],[1076,1,1,66,67]]],[47,2,2,67,69,[[1093,1,1,67,68],[1094,1,1,68,69]]],[48,1,1,69,70,[[1097,1,1,69,70]]],[57,1,1,70,71,[[1136,1,1,70,71]]],[59,1,1,71,72,[[1153,1,1,71,72]]],[60,1,1,72,73,[[1157,1,1,72,73]]],[61,3,3,73,76,[[1159,1,1,73,74],[1160,2,2,74,76]]],[65,10,10,76,86,[[1167,2,2,76,78],[1168,1,1,78,79],[1169,1,1,79,80],[1170,2,2,80,82],[1171,1,1,82,83],[1173,1,1,83,84],[1185,1,1,84,85],[1187,1,1,85,86]]]],[23263,23272,23304,23305,23319,23320,23321,23408,23409,23554,23555,23708,23736,23807,23825,23826,23868,24097,24485,24518,24525,24585,24684,24794,25003,25083,25166,25187,25188,25386,25439,25643,25701,25773,26007,26022,26191,26262,26446,26450,26451,26454,26455,26457,26461,26466,26470,26472,26502,26560,26564,26620,26760,26932,27224,27234,27256,27841,27926,28009,28217,28219,28403,28650,28651,28655,28770,29103,29146,29224,30027,30436,30514,30541,30561,30566,30704,30711,30735,30764,30774,30776,30785,30827,31029,31057]]],["+",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26457]]],["Eye",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28403]]],["eye",[29,19,[[39,14,9,0,9,[[933,3,2,0,2],[934,3,2,2,4],[935,6,3,4,7],[946,1,1,7,8],[948,1,1,8,9]]],[40,2,2,9,11,[[963,1,1,9,10],[965,1,1,10,11]]],[41,8,3,11,14,[[978,6,2,11,13],[983,2,1,13,14]]],[45,4,4,14,18,[[1073,3,3,14,17],[1076,1,1,17,18]]],[65,1,1,18,19,[[1167,1,1,18,19]]]],[23263,23272,23304,23305,23319,23320,23321,23736,23807,24485,24585,25187,25188,25439,28650,28651,28655,28770,30704]]],["eyes",[70,66,[[39,12,10,0,10,[[937,2,2,0,2],[941,3,2,2,4],[945,1,1,4,5],[946,1,1,5,6],[948,3,2,6,8],[949,1,1,8,9],[954,1,1,9,10]]],[40,5,5,10,15,[[964,2,2,10,12],[965,1,1,12,13],[968,1,1,13,14],[970,1,1,14,15]]],[41,9,9,15,24,[[974,1,1,15,16],[976,1,1,16,17],[978,1,1,17,18],[982,1,1,18,19],[988,1,1,19,20],[990,1,1,20,21],[991,1,1,21,22],[996,2,2,22,24]]],[42,17,16,24,40,[[1000,1,1,24,25],[1002,1,1,25,26],[1005,9,9,26,35],[1006,1,1,35,36],[1007,2,2,36,38],[1008,2,1,38,39],[1013,1,1,39,40]]],[43,6,5,40,45,[[1026,3,3,40,43],[1043,1,1,43,44],[1045,2,1,44,45]]],[44,3,3,45,48,[[1048,1,1,45,46],[1056,2,2,46,48]]],[47,2,2,48,50,[[1093,1,1,48,49],[1094,1,1,49,50]]],[48,1,1,50,51,[[1097,1,1,50,51]]],[57,1,1,51,52,[[1136,1,1,51,52]]],[59,1,1,52,53,[[1153,1,1,52,53]]],[60,1,1,53,54,[[1157,1,1,53,54]]],[61,3,3,54,57,[[1159,1,1,54,55],[1160,2,2,55,57]]],[65,9,9,57,66,[[1167,1,1,57,58],[1168,1,1,58,59],[1169,1,1,59,60],[1170,2,2,60,62],[1171,1,1,62,63],[1173,1,1,63,64],[1185,1,1,64,65],[1187,1,1,65,66]]]],[23408,23409,23554,23555,23708,23736,23825,23826,23868,24097,24518,24525,24585,24684,24794,25003,25083,25166,25386,25643,25701,25773,26007,26022,26191,26262,26446,26450,26451,26454,26455,26461,26466,26470,26472,26502,26560,26564,26620,26760,27224,27234,27256,27841,27926,28009,28217,28219,29103,29146,29224,30027,30436,30514,30541,30561,30566,30711,30735,30764,30774,30776,30785,30827,31029,31057]]],["sight",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26932]]]]},{"k":"G3789","v":[["*",[14,14,[[39,3,3,0,3,[[935,1,1,0,1],[938,1,1,1,2],[951,1,1,2,3]]],[40,1,1,3,4,[[972,1,1,3,4]]],[41,2,2,4,6,[[982,1,1,4,5],[983,1,1,5,6]]],[42,1,1,6,7,[[999,1,1,6,7]]],[45,1,1,7,8,[[1071,1,1,7,8]]],[46,1,1,8,9,[[1088,1,1,8,9]]],[65,5,5,9,14,[[1175,1,1,9,10],[1178,3,3,10,13],[1186,1,1,13,14]]]],[23326,23433,23951,24891,25382,25416,26134,28576,28992,30859,30900,30905,30906,31040]]],["serpent",[8,8,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,1,1,2,3,[[999,1,1,2,3]]],[46,1,1,3,4,[[1088,1,1,3,4]]],[65,4,4,4,8,[[1178,3,3,4,7],[1186,1,1,7,8]]]],[23326,25416,26134,28992,30900,30905,30906,31040]]],["serpents",[6,6,[[39,2,2,0,2,[[938,1,1,0,1],[951,1,1,1,2]]],[40,1,1,2,3,[[972,1,1,2,3]]],[41,1,1,3,4,[[982,1,1,3,4]]],[45,1,1,4,5,[[1071,1,1,4,5]]],[65,1,1,5,6,[[1175,1,1,5,6]]]],[23433,23951,24891,25382,28576,30859]]]]},{"k":"G3790","v":[["brow",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25092]]]]},{"k":"G3791","v":[["vexed",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[25164,27075]]]]},{"k":"G3792","v":[["company",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27528]]]]},{"k":"G3793","v":[["*",[176,170,[[39,51,48,0,48,[[932,1,1,0,1],[933,2,1,1,2],[935,1,1,2,3],[936,2,2,3,5],[937,5,5,5,10],[939,1,1,10,11],[940,3,3,11,14],[941,4,3,14,17],[942,8,7,17,24],[943,8,8,24,32],[945,1,1,32,33],[947,1,1,33,34],[948,2,2,34,36],[949,5,5,36,41],[950,1,1,41,42],[951,1,1,42,43],[954,2,2,43,45],[955,3,3,45,48]]],[40,38,36,48,84,[[958,2,2,48,50],[959,3,3,50,53],[960,3,2,53,55],[961,5,5,55,60],[962,3,3,60,63],[963,3,3,63,66],[964,5,4,66,70],[965,4,4,70,74],[966,2,2,74,76],[967,1,1,76,77],[968,3,3,77,80],[970,1,1,80,81],[971,3,3,81,84]]],[41,41,41,84,125,[[975,2,2,84,86],[976,1,1,86,87],[977,5,5,87,92],[978,2,2,92,94],[979,4,4,94,98],[980,5,5,98,103],[981,6,6,103,109],[983,3,3,109,112],[984,3,3,112,115],[985,2,2,115,117],[986,1,1,117,118],[990,1,1,118,119],[991,2,2,119,121],[994,2,2,121,123],[995,2,2,123,125]]],[42,20,19,125,144,[[1001,1,1,125,126],[1002,4,4,126,130],[1003,8,7,130,137],[1007,1,1,137,138],[1008,6,6,138,144]]],[43,22,22,144,166,[[1018,1,1,144,145],[1023,1,1,145,146],[1025,1,1,146,147],[1028,2,2,147,149],[1030,1,1,149,150],[1031,5,5,150,155],[1033,1,1,155,156],[1034,2,2,156,158],[1036,3,3,158,161],[1038,3,3,161,164],[1041,2,2,164,166]]],[65,4,4,166,170,[[1173,1,1,166,167],[1183,1,1,167,168],[1185,2,2,168,170]]]],[23234,23235,23344,23346,23363,23387,23402,23404,23412,23415,23466,23504,23512,23535,23541,23573,23575,23602,23610,23611,23612,23616,23619,23620,23643,23663,23664,23665,23666,23668,23669,23672,23714,23764,23821,23823,23834,23835,23837,23852,23872,23905,23919,24101,24109,24144,24149,24153,24264,24273,24297,24308,24320,24324,24359,24385,24388,24391,24394,24395,24440,24441,24452,24477,24480,24496,24501,24502,24506,24534,24552,24553,24555,24563,24589,24634,24658,24685,24710,24714,24797,24834,24837,24841,25032,25035,25105,25108,25110,25122,25126,25136,25163,25165,25204,25206,25207,25219,25249,25264,25285,25287,25290,25312,25313,25317,25319,25338,25339,25419,25432,25434,25460,25472,25513,25532,25535,25578,25724,25734,25770,25870,25911,25939,25983,26223,26259,26262,26279,26281,26340,26348,26359,26360,26368,26371,26377,26565,26589,26592,26597,26598,26609,26614,26938,27108,27182,27331,27333,27407,27425,27427,27428,27432,27433,27505,27531,27536,27611,27618,27620,27691,27698,27699,27781,27787,30819,30990,31018,31023]]],["+",[6,6,[[39,4,4,0,4,[[941,1,1,0,1],[942,3,3,1,4]]],[41,2,2,4,6,[[981,1,1,4,5],[986,1,1,5,6]]]],[23575,23612,23619,23620,25313,25578]]],["company",[7,7,[[41,5,5,0,5,[[977,1,1,0,1],[978,1,1,1,2],[981,1,1,2,3],[983,1,1,3,4],[984,1,1,4,5]]],[42,1,1,5,6,[[1002,1,1,5,6]]],[43,1,1,6,7,[[1023,1,1,6,7]]]],[25136,25163,25339,25432,25472,26262,27108]]],["multitude",[56,54,[[39,24,23,0,23,[[941,2,2,0,2],[942,4,3,2,5],[943,7,7,5,12],[945,1,1,12,13],[948,2,2,13,15],[949,3,3,15,18],[950,1,1,18,19],[951,1,1,19,20],[954,1,1,20,21],[955,2,2,21,23]]],[40,15,14,23,37,[[958,1,1,23,24],[959,3,3,24,27],[960,3,2,27,29],[961,1,1,29,30],[963,1,1,30,31],[964,2,2,31,33],[965,2,2,33,35],[970,1,1,35,36],[971,1,1,36,37]]],[41,9,9,37,46,[[975,1,1,37,38],[977,1,1,38,39],[978,1,1,39,40],[980,1,1,40,41],[981,1,1,41,42],[990,1,1,42,43],[991,1,1,43,44],[994,2,2,44,46]]],[42,2,2,46,48,[[1001,1,1,46,47],[1002,1,1,47,48]]],[43,4,4,48,52,[[1033,1,1,48,49],[1036,1,1,49,50],[1038,1,1,50,51],[1041,1,1,51,52]]],[65,2,2,52,54,[[1173,1,1,52,53],[1185,1,1,53,54]]]],[23541,23573,23602,23611,23616,23643,23664,23665,23666,23668,23669,23672,23714,23821,23823,23834,23837,23872,23905,23919,24101,24149,24153,24273,24297,24308,24320,24324,24359,24395,24496,24501,24502,24552,24555,24797,24834,25032,25126,25165,25290,25317,25724,25770,25870,25911,26223,26259,27505,27618,27698,27787,30819,31023]]],["multitudes",[16,16,[[39,13,13,0,13,[[933,1,1,0,1],[936,2,2,1,3],[937,3,3,3,6],[939,1,1,6,7],[940,1,1,7,8],[941,1,1,8,9],[943,1,1,9,10],[947,1,1,10,11],[949,1,1,11,12],[954,1,1,12,13]]],[41,1,1,13,14,[[977,1,1,13,14]]],[43,1,1,14,15,[[1030,1,1,14,15]]],[65,1,1,15,16,[[1183,1,1,15,16]]]],[23235,23346,23363,23387,23412,23415,23466,23504,23541,23663,23764,23835,24109,25122,27407,30990]]],["number",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26938]]],["people",[84,82,[[39,9,9,0,9,[[932,1,1,0,1],[935,1,1,1,2],[937,2,2,2,4],[940,2,2,4,6],[942,1,1,6,7],[949,1,1,7,8],[955,1,1,8,9]]],[40,20,19,9,28,[[961,2,2,9,11],[962,3,3,11,14],[963,2,2,14,16],[964,3,2,16,18],[965,2,2,18,20],[966,2,2,20,22],[967,1,1,22,23],[968,3,3,23,26],[971,2,2,26,28]]],[41,22,22,28,50,[[975,1,1,28,29],[976,1,1,29,30],[977,2,2,30,32],[979,4,4,32,36],[980,3,3,36,39],[981,3,3,39,42],[983,2,2,42,44],[984,2,2,44,46],[985,2,2,46,48],[995,2,2,48,50]]],[42,17,16,50,66,[[1002,2,2,50,52],[1003,8,7,52,59],[1007,1,1,59,60],[1008,6,6,60,66]]],[43,15,15,66,81,[[1025,1,1,66,67],[1028,2,2,67,69],[1031,5,5,69,74],[1034,2,2,74,76],[1036,2,2,76,78],[1038,2,2,78,80],[1041,1,1,80,81]]],[65,1,1,81,82,[[1185,1,1,81,82]]]],[23234,23344,23402,23404,23512,23535,23610,23852,24144,24385,24388,24440,24441,24452,24477,24480,24506,24534,24553,24563,24589,24634,24658,24685,24710,24714,24837,24841,25035,25105,25108,25110,25204,25206,25207,25219,25249,25285,25287,25312,25319,25338,25419,25434,25460,25513,25532,25535,25939,25983,26279,26281,26340,26348,26359,26360,26368,26371,26377,26565,26589,26592,26597,26598,26609,26614,27182,27331,27333,27425,27427,27428,27432,27433,27531,27536,27611,27620,27691,27699,27781,31018]]],["press",[5,5,[[40,3,3,0,3,[[958,1,1,0,1],[961,2,2,1,3]]],[41,2,2,3,5,[[980,1,1,3,4],[991,1,1,4,5]]]],[24264,24391,24394,25264,25734]]],["the",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23235]]]]},{"k":"G3794","v":[["holds",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28975]]]]},{"k":"G3795","v":[["*",[5,5,[[42,5,5,0,5,[[1002,2,2,0,2],[1017,3,3,2,5]]]],[26266,26268,26907,26908,26911]]],["fish",[3,3,[[42,3,3,0,3,[[1017,3,3,0,3]]]],[26907,26908,26911]]],["fishes",[2,2,[[42,2,2,0,2,[[1002,2,2,0,2]]]],[26266,26268]]]]},{"k":"G3796","v":[["*",[3,3,[[39,1,1,0,1,[[956,1,1,0,1]]],[40,2,2,1,3,[[967,1,1,1,2],[969,1,1,2,3]]]],[24196,24659,24752]]],["end",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24196]]],["even",[2,2,[[40,2,2,0,2,[[967,1,1,0,1],[969,1,1,1,2]]]],[24659,24752]]]]},{"k":"G3797","v":[["latter",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30361]]]]},{"k":"G3798","v":[["*",[15,15,[[39,7,7,0,7,[[936,1,1,0,1],[942,2,2,1,3],[944,1,1,3,4],[948,1,1,4,5],[954,1,1,5,6],[955,1,1,6,7]]],[40,6,6,7,13,[[957,1,1,7,8],[960,1,1,8,9],[962,1,1,9,10],[967,1,1,10,11],[970,1,1,11,12],[971,1,1,12,13]]],[42,2,2,13,15,[[1002,1,1,13,14],[1016,1,1,14,15]]]],[23361,23612,23620,23674,23800,24074,24186,24247,24358,24454,24651,24771,24868,26273,26886]]],["+",[2,2,[[40,2,2,0,2,[[957,1,1,0,1],[967,1,1,1,2]]]],[24247,24651]]],["even",[8,8,[[39,4,4,0,4,[[936,1,1,0,1],[948,1,1,1,2],[954,1,1,2,3],[955,1,1,3,4]]],[40,3,3,4,7,[[960,1,1,4,5],[962,1,1,5,6],[971,1,1,6,7]]],[42,1,1,7,8,[[1002,1,1,7,8]]]],[23361,23800,24074,24186,24358,24454,24868,26273]]],["evening",[5,5,[[39,3,3,0,3,[[942,2,2,0,2],[944,1,1,2,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[42,1,1,4,5,[[1016,1,1,4,5]]]],[23612,23620,23674,24771,26886]]]]},{"k":"G3799","v":[["*",[3,3,[[42,2,2,0,2,[[1003,1,1,0,1],[1007,1,1,1,2]]],[65,1,1,2,3,[[1167,1,1,2,3]]]],[26352,26567,30713]]],["appearance",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26352]]],["countenance",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30713]]],["face",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26567]]]]},{"k":"G3800","v":[["*",[4,4,[[41,1,1,0,1,[[975,1,1,0,1]]],[44,1,1,1,2,[[1051,1,1,1,2]]],[45,1,1,2,3,[[1070,1,1,2,3]]],[46,1,1,3,4,[[1088,1,1,3,4]]]],[25039,28091,28547,28997]]],["charges",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28547]]],["wages",[3,3,[[41,1,1,0,1,[[975,1,1,0,1]]],[44,1,1,1,2,[[1051,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]]],[25039,28091,28997]]]]},{"k":"G3801","v":[["come",[4,4,[[65,4,4,0,4,[[1167,2,2,0,2],[1170,1,1,2,3],[1177,1,1,3,4]]]],[30701,30705,30776,30889]]]]},{"k":"G3802","v":[["entangle",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23887]]]]},{"k":"G3803","v":[["snare",[5,5,[[41,1,1,0,1,[[993,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]],[53,2,2,2,4,[[1121,1,1,2,3],[1124,1,1,3,4]]],[54,1,1,4,5,[[1126,1,1,4,5]]]],[25861,28218,29738,29797,29853]]]]},{"k":"G3804","v":[["*",[16,16,[[44,2,2,0,2,[[1052,1,1,0,1],[1053,1,1,1,2]]],[46,3,3,2,5,[[1078,3,3,2,5]]],[47,1,1,5,6,[[1095,1,1,5,6]]],[49,1,1,6,7,[[1105,1,1,6,7]]],[50,1,1,7,8,[[1107,1,1,7,8]]],[54,1,1,8,9,[[1127,1,1,8,9]]],[57,3,3,9,12,[[1134,2,2,9,11],[1142,1,1,11,12]]],[59,4,4,12,16,[[1151,1,1,12,13],[1154,1,1,13,14],[1155,2,2,14,16]]]],[28096,28134,28805,28806,28807,29186,29431,29489,29864,29986,29987,30165,30385,30459,30466,30474]]],["affections",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29186]]],["afflictions",[3,3,[[54,1,1,0,1,[[1127,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]],[59,1,1,2,3,[[1155,1,1,2,3]]]],[29864,30165,30474]]],["motions",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28096]]],["suffering",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29986]]],["sufferings",[10,10,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,3,3,1,4,[[1078,3,3,1,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]],[50,1,1,5,6,[[1107,1,1,5,6]]],[57,1,1,6,7,[[1134,1,1,6,7]]],[59,3,3,7,10,[[1151,1,1,7,8],[1154,1,1,8,9],[1155,1,1,9,10]]]],[28134,28805,28806,28807,29431,29489,29987,30385,30459,30466]]]]},{"k":"G3805","v":[["suffer",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27846]]]]},{"k":"G3806","v":[["*",[3,3,[[44,1,1,0,1,[[1046,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]]],[27956,29522,29608]]],["affection",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29522]]],["affections",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27956]]],["lust",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29608]]]]},{"k":"G3807","v":[["*",[3,3,[[45,1,1,0,1,[[1065,1,1,0,1]]],[47,2,2,1,3,[[1093,2,2,1,3]]]],[28448,29126,29127]]],["instructors",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28448]]],["schoolmaster",[2,2,[[47,2,2,0,2,[[1093,2,2,0,2]]]],[29126,29127]]]]},{"k":"G3808","v":[["*",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]]],[23475,26266]]],["children",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23475]]],["lad",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26266]]]]},{"k":"G3809","v":[["*",[6,6,[[48,1,1,0,1,[[1102,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]],[57,4,4,2,6,[[1144,4,4,2,6]]]],[29341,29869,30217,30219,30220,30223]]],["chastening",[3,3,[[57,3,3,0,3,[[1144,3,3,0,3]]]],[30217,30219,30223]]],["chastisement",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30220]]],["instruction",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29869]]],["nurture",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29341]]]]},{"k":"G3810","v":[["*",[2,2,[[44,1,1,0,1,[[1047,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[27982,30221]]],["corrected",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30221]]],["instructor",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27982]]]]},{"k":"G3811","v":[["*",[13,13,[[41,2,2,0,2,[[995,2,2,0,2]]],[43,2,2,2,4,[[1024,1,1,2,3],[1039,1,1,3,4]]],[45,1,1,4,5,[[1072,1,1,4,5]]],[46,1,1,5,6,[[1083,1,1,5,6]]],[53,1,1,6,7,[[1119,1,1,6,7]]],[54,1,1,7,8,[[1126,1,1,7,8]]],[55,1,1,8,9,[[1130,1,1,8,9]]],[57,3,3,9,12,[[1144,3,3,9,12]]],[65,1,1,12,13,[[1169,1,1,12,13]]]],[25951,25957,27138,27707,28632,28907,29716,29852,29920,30218,30219,30222,30765]]],["Teaching",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29920]]],["chasten",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30765]]],["chastened",[3,3,[[45,1,1,0,1,[[1072,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[28632,28907,30222]]],["chasteneth",[2,2,[[57,2,2,0,2,[[1144,2,2,0,2]]]],[30218,30219]]],["chastise",[2,2,[[41,2,2,0,2,[[995,2,2,0,2]]]],[25951,25957]]],["instructing",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29852]]],["learn",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29716]]],["learned",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27138]]],["taught",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27707]]]]},{"k":"G3812","v":[["child",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24559]]]]},{"k":"G3813","v":[["*",[51,48,[[39,17,15,0,15,[[930,9,7,0,7],[942,1,1,7,8],[943,1,1,8,9],[946,4,4,9,13],[947,2,2,13,15]]],[40,11,10,15,25,[[961,4,3,15,18],[963,1,1,18,19],[965,3,3,19,22],[966,3,3,22,25]]],[41,14,14,25,39,[[973,4,4,25,29],[974,4,4,29,33],[979,1,1,33,34],[981,2,2,34,36],[983,1,1,36,37],[990,2,2,37,39]]],[42,3,3,39,42,[[1000,1,1,39,40],[1012,1,1,40,41],[1017,1,1,41,42]]],[45,1,1,42,43,[[1075,1,1,42,43]]],[57,3,3,43,46,[[1134,2,2,43,45],[1143,1,1,45,46]]],[61,2,2,46,48,[[1160,2,2,46,48]]]],[23177,23178,23180,23182,23183,23189,23190,23618,23671,23729,23730,23731,23732,23775,23776,24403,24404,24405,24491,24562,24574,24575,24601,24602,24603,24952,24959,24969,24973,24990,24994,25000,25013,25227,25348,25349,25412,25704,25705,26205,26747,26903,28698,29990,29991,30195,30563,30568]]],["+",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24994]]],["Children",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26903]]],["child",[27,26,[[39,11,10,0,10,[[930,8,7,0,7],[946,3,3,7,10]]],[40,3,3,10,13,[[965,2,2,10,12],[966,1,1,12,13]]],[41,10,10,13,23,[[973,4,4,13,17],[974,3,3,17,20],[981,2,2,20,22],[990,1,1,22,23]]],[42,2,2,23,25,[[1000,1,1,23,24],[1012,1,1,24,25]]],[57,1,1,25,26,[[1143,1,1,25,26]]]],[23177,23178,23180,23182,23183,23189,23190,23729,23731,23732,24562,24574,24603,24952,24959,24969,24973,24990,25000,25013,25348,25349,25705,26205,26747,30195]]],["child's",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23189]]],["children",[16,16,[[39,5,5,0,5,[[942,1,1,0,1],[943,1,1,1,2],[946,1,1,2,3],[947,2,2,3,5]]],[40,3,3,5,8,[[965,1,1,5,6],[966,2,2,6,8]]],[41,3,3,8,11,[[979,1,1,8,9],[983,1,1,9,10],[990,1,1,10,11]]],[45,1,1,11,12,[[1075,1,1,11,12]]],[57,2,2,12,14,[[1134,2,2,12,14]]],[61,2,2,14,16,[[1160,2,2,14,16]]]],[23618,23671,23730,23775,23776,24575,24601,24602,25227,25412,25704,28698,29990,29991,30563,30568]]],["children's",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24491]]],["damsel",[4,3,[[40,4,3,0,3,[[961,4,3,0,3]]]],[24403,24404,24405]]]]},{"k":"G3814","v":[["*",[13,12,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[970,2,2,1,3]]],[41,2,2,3,5,[[984,1,1,3,4],[994,1,1,4,5]]],[42,1,1,5,6,[[1014,1,1,5,6]]],[43,2,2,6,8,[[1029,1,1,6,7],[1033,1,1,7,8]]],[47,5,4,8,12,[[1094,5,4,8,12]]]],[24123,24820,24823,25504,25920,26802,27350,27499,29153,29154,29161,29162]]],["bondmaid",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29153]]],["bondwoman",[4,3,[[47,4,3,0,3,[[1094,4,3,0,3]]]],[29154,29161,29162]]],["damsel",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[43,2,2,2,4,[[1029,1,1,2,3],[1033,1,1,3,4]]]],[24123,26802,27350,27499]]],["maid",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24823,25920]]],["maidens",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25504]]],["maids",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24820]]]]},{"k":"G3815","v":[["play",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28574]]]]},{"k":"G3816","v":[["*",[24,24,[[39,8,8,0,8,[[930,1,1,0,1],[936,3,3,1,4],[940,1,1,4,5],[942,1,1,5,6],[945,1,1,6,7],[949,1,1,7,8]]],[41,9,9,8,17,[[973,2,2,8,10],[974,1,1,10,11],[979,1,1,11,12],[980,2,2,12,14],[981,1,1,14,15],[984,1,1,15,16],[987,1,1,16,17]]],[42,1,1,17,18,[[1000,1,1,17,18]]],[43,6,6,18,24,[[1020,2,2,18,20],[1021,3,3,20,23],[1037,1,1,23,24]]]],[23185,23351,23353,23358,23507,23599,23718,23841,24947,24962,25016,25202,25296,25299,25343,25504,25614,26207,27009,27022,27047,27049,27052,27638]]],["Maid",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25299]]],["Son",[2,2,[[43,2,2,0,2,[[1020,2,2,0,2]]]],[27009,27022]]],["child",[5,5,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[981,1,1,2,3]]],[43,2,2,3,5,[[1021,2,2,3,5]]]],[23718,25016,25343,27049,27052]]],["children",[2,2,[[39,2,2,0,2,[[930,1,1,0,1],[949,1,1,1,2]]]],[23185,23841]]],["maiden",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25296]]],["man",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27638]]],["menservants",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25504]]],["servant",[8,8,[[39,4,4,0,4,[[936,3,3,0,3],[940,1,1,3,4]]],[41,3,3,4,7,[[973,2,2,4,6],[979,1,1,6,7]]],[43,1,1,7,8,[[1021,1,1,7,8]]]],[23351,23353,23358,23507,24947,24962,25202,27047]]],["servants",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]]],[23599,25614]]],["son",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26207]]]]},{"k":"G3817","v":[["*",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]],[65,1,1,4,5,[[1175,1,1,4,5]]]],[24122,24801,25928,26795,30845]]],["smote",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]]],[24122,24801,25928,26795]]],["striketh",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30845]]]]},{"k":"G3818","v":[]},{"k":"G3819","v":[["*",[6,6,[[39,1,1,0,1,[[939,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[57,1,1,3,4,[[1133,1,1,3,4]]],[60,1,1,4,5,[[1156,1,1,4,5]]],[64,1,1,5,6,[[1166,1,1,5,6]]]],[23480,24870,25376,29964,30488,30676]]],["+",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[24870,30676]]],["ago",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[23480,25376]]],["old",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30488]]],["past",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29964]]]]},{"k":"G3820","v":[["old",[19,15,[[39,3,3,0,3,[[937,2,2,0,2],[941,1,1,2,3]]],[40,3,2,3,5,[[958,3,2,3,5]]],[41,5,3,5,8,[[977,5,3,5,8]]],[44,1,1,8,9,[[1051,1,1,8,9]]],[45,2,2,9,11,[[1066,2,2,9,11]]],[46,1,1,11,12,[[1080,1,1,11,12]]],[48,1,1,12,13,[[1100,1,1,12,13]]],[50,1,1,13,14,[[1109,1,1,13,14]]],[61,2,1,14,15,[[1160,2,1,14,15]]]],[23395,23396,23591,24281,24282,25143,25144,25146,28074,28461,28462,28855,29294,29526,30557]]]]},{"k":"G3821","v":[["oldness",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28097]]]]},{"k":"G3822","v":[["*",[4,3,[[41,1,1,0,1,[[984,1,1,0,1]]],[57,3,2,1,3,[[1133,1,1,1,2],[1140,2,1,2,3]]]],[25492,29974,30105]]],["+",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[57,1,1,1,2,[[1140,1,1,1,2]]]],[25492,30105]]],["decayeth",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30105]]],["old",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29974]]]]},{"k":"G3823","v":[["+",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29349]]]]},{"k":"G3824","v":[["regeneration",[2,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[23790,29928]]]]},{"k":"G3825","v":[["*",[142,138,[[39,17,17,0,17,[[932,2,2,0,2],[933,1,1,2,3],[941,3,3,3,6],[946,1,1,6,7],[947,1,1,7,8],[948,1,1,8,9],[949,1,1,9,10],[950,2,2,10,12],[954,4,4,12,16],[955,1,1,16,17]]],[40,26,24,17,41,[[958,2,2,17,19],[959,2,2,19,21],[960,1,1,21,22],[961,1,1,22,23],[963,1,1,23,24],[964,2,2,24,26],[966,5,4,26,30],[967,1,1,30,31],[968,2,2,31,33],[970,6,5,33,38],[971,3,3,38,41]]],[41,2,2,41,43,[[985,1,1,41,42],[995,1,1,42,43]]],[42,47,47,43,90,[[997,1,1,43,44],[1000,4,4,44,48],[1002,1,1,48,49],[1004,4,4,49,53],[1005,4,4,53,57],[1006,7,7,57,64],[1007,3,3,64,67],[1008,3,3,67,70],[1009,1,1,70,71],[1010,1,1,71,72],[1012,5,5,72,77],[1014,5,5,77,82],[1015,3,3,82,85],[1016,3,3,85,88],[1017,2,2,88,90]]],[43,6,6,90,96,[[1027,2,2,90,92],[1028,1,1,92,93],[1034,1,1,93,94],[1035,1,1,94,95],[1044,1,1,95,96]]],[44,5,5,96,101,[[1053,1,1,96,97],[1056,1,1,97,98],[1060,3,3,98,101]]],[45,3,3,101,104,[[1064,1,1,101,102],[1068,1,1,102,103],[1073,1,1,103,104]]],[46,9,9,104,113,[[1078,1,1,104,105],[1079,1,1,105,106],[1080,1,1,106,107],[1082,1,1,107,108],[1087,1,1,108,109],[1088,1,1,109,110],[1089,2,2,110,112],[1090,1,1,112,113]]],[47,9,8,113,121,[[1091,2,2,113,115],[1092,2,2,115,117],[1094,3,2,117,119],[1095,2,2,119,121]]],[49,3,3,121,124,[[1103,1,1,121,122],[1104,1,1,122,123],[1106,1,1,123,124]]],[57,10,9,124,133,[[1133,2,2,124,126],[1134,2,1,126,127],[1136,2,2,127,129],[1137,1,1,129,130],[1138,2,2,130,132],[1142,1,1,132,133]]],[58,1,1,133,134,[[1150,1,1,133,134]]],[60,1,1,134,135,[[1157,1,1,134,135]]],[61,1,1,135,136,[[1160,1,1,135,136]]],[65,2,2,136,138,[[1176,2,2,136,138]]]],[23216,23217,23267,23583,23584,23586,23746,23786,23797,23862,23873,23876,24096,24097,24098,24126,24179,24261,24273,24289,24308,24324,24385,24494,24513,24525,24589,24598,24612,24620,24667,24677,24678,24793,24794,24815,24823,24824,24830,24838,24839,25538,25955,26079,26159,26169,26202,26210,26272,26383,26389,26393,26402,26455,26457,26466,26467,26488,26498,26499,26500,26512,26520,26521,26530,26531,26561,26602,26608,26619,26642,26671,26742,26743,26745,26748,26754,26792,26812,26818,26823,26825,26829,26834,26862,26877,26888,26893,26899,26914,27274,27275,27317,27555,27578,27883,28131,28232,28313,28314,28315,28430,28492,28655,28816,28825,28842,28889,28978,29005,29041,29043,29045,29066,29074,29082,29099,29140,29150,29163,29165,29387,29419,29446,29968,29969,29990,30019,30021,30042,30045,30050,30163,30372,30520,30558,30869,30872]]],["+",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]]],[25955,29163]]],["Again",[14,14,[[39,9,9,0,9,[[932,1,1,0,1],[933,1,1,1,2],[941,3,3,2,5],[946,1,1,5,6],[948,1,1,6,7],[949,1,1,7,8],[950,1,1,8,9]]],[40,1,1,9,10,[[970,1,1,9,10]]],[42,1,1,10,11,[[997,1,1,10,11]]],[46,1,1,11,12,[[1089,1,1,11,12]]],[57,1,1,12,13,[[1136,1,1,12,13]]],[61,1,1,13,14,[[1160,1,1,13,14]]]],[23217,23267,23583,23584,23586,23746,23797,23862,23876,24815,26079,29041,30021,30558]]],["again",[125,122,[[39,8,8,0,8,[[932,1,1,0,1],[947,1,1,1,2],[950,1,1,2,3],[954,4,4,3,7],[955,1,1,7,8]]],[40,25,23,8,31,[[958,2,2,8,10],[959,2,2,10,12],[960,1,1,12,13],[961,1,1,13,14],[963,1,1,14,15],[964,2,2,15,17],[966,5,4,17,21],[967,1,1,21,22],[968,2,2,22,24],[970,5,4,24,28],[971,3,3,28,31]]],[41,1,1,31,32,[[985,1,1,31,32]]],[42,46,46,32,78,[[1000,4,4,32,36],[1002,1,1,36,37],[1004,4,4,37,41],[1005,4,4,41,45],[1006,7,7,45,52],[1007,3,3,52,55],[1008,3,3,55,58],[1009,1,1,58,59],[1010,1,1,59,60],[1012,5,5,60,65],[1014,5,5,65,70],[1015,3,3,70,73],[1016,3,3,73,76],[1017,2,2,76,78]]],[43,6,6,78,84,[[1027,2,2,78,80],[1028,1,1,80,81],[1034,1,1,81,82],[1035,1,1,82,83],[1044,1,1,83,84]]],[44,5,5,84,89,[[1053,1,1,84,85],[1056,1,1,85,86],[1060,3,3,86,89]]],[45,3,3,89,92,[[1064,1,1,89,90],[1068,1,1,90,91],[1073,1,1,91,92]]],[46,8,8,92,100,[[1078,1,1,92,93],[1079,1,1,93,94],[1080,1,1,94,95],[1082,1,1,95,96],[1087,1,1,96,97],[1088,1,1,97,98],[1089,1,1,98,99],[1090,1,1,99,100]]],[47,7,7,100,107,[[1091,2,2,100,102],[1092,2,2,102,104],[1094,2,2,104,106],[1095,1,1,106,107]]],[49,3,3,107,110,[[1103,1,1,107,108],[1104,1,1,108,109],[1106,1,1,109,110]]],[57,9,8,110,118,[[1133,2,2,110,112],[1134,2,1,112,113],[1136,1,1,113,114],[1137,1,1,114,115],[1138,2,2,115,117],[1142,1,1,117,118]]],[58,1,1,118,119,[[1150,1,1,118,119]]],[60,1,1,119,120,[[1157,1,1,119,120]]],[65,2,2,120,122,[[1176,2,2,120,122]]]],[23216,23786,23873,24096,24097,24098,24126,24179,24261,24273,24289,24308,24324,24385,24494,24513,24525,24589,24598,24612,24620,24667,24677,24678,24793,24794,24823,24824,24830,24838,24839,25538,26159,26169,26202,26210,26272,26383,26389,26393,26402,26455,26457,26466,26467,26488,26498,26499,26500,26512,26520,26521,26530,26531,26561,26602,26608,26619,26642,26671,26742,26743,26745,26748,26754,26792,26812,26818,26823,26825,26829,26834,26862,26877,26888,26893,26899,26914,27274,27275,27317,27555,27578,27883,28131,28232,28313,28314,28315,28430,28492,28655,28816,28825,28842,28889,28978,29005,29043,29045,29066,29074,29082,29099,29140,29150,29165,29387,29419,29446,29968,29969,29990,30019,30042,30045,30050,30163,30372,30520,30869,30872]]],["ye",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29140]]]]},{"k":"G3826","v":[["once",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25953]]]]},{"k":"G3827","v":[["great",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24501]]]]},{"k":"G3828","v":[["Pamphylia",[5,5,[[43,5,5,0,5,[[1019,1,1,0,1],[1030,1,1,1,2],[1031,1,1,2,3],[1032,1,1,3,4],[1044,1,1,4,5]]]],[26959,27375,27438,27480,27860]]]]},{"k":"G3829","v":[["inn",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25397]]]]},{"k":"G3830","v":[["host",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25398]]]]},{"k":"G3831","v":[["assembly",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30235]]]]},{"k":"G3832","v":[["house",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27517]]]]},{"k":"G3833","v":[["*",[3,3,[[41,1,1,0,1,[[983,1,1,0,1]]],[48,2,2,1,3,[[1102,2,2,1,3]]]],[25427,29348,29350]]],["+",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25427]]],["armour",[2,2,[[48,2,2,0,2,[[1102,2,2,0,2]]]],[29348,29350]]]]},{"k":"G3834","v":[["*",[5,5,[[41,1,1,0,1,[[992,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]],[46,2,2,2,4,[[1081,1,1,2,3],[1088,1,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]]],[25802,28429,28861,28992,29286]]],["craftiness",[4,4,[[41,1,1,0,1,[[992,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]],[46,1,1,2,3,[[1081,1,1,2,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]]],[25802,28429,28861,29286]]],["subtilty",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28992]]]]},{"k":"G3835","v":[["crafty",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29038]]]]},{"k":"G3836","v":[["quarter",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24260]]]]},{"k":"G3837","v":[["*",[7,7,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[43,4,4,2,6,[[1034,1,1,2,3],[1038,1,1,3,4],[1041,1,1,4,5],[1045,1,1,5,6]]],[45,1,1,6,7,[[1065,1,1,6,7]]]],[24893,25307,27553,27692,27772,27921,28450]]],["places",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27772]]],["where",[6,6,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[43,3,3,2,5,[[1034,1,1,2,3],[1038,1,1,3,4],[1045,1,1,4,5]]],[45,1,1,5,6,[[1065,1,1,5,6]]]],[24893,25307,27553,27692,27921,28450]]]]},{"k":"G3838","v":[["*",[2,2,[[41,1,1,0,1,[[985,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[25529,30089]]],["+",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25529]]],["uttermost",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30089]]]]},{"k":"G3839","v":[["always",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27772]]]]},{"k":"G3840","v":[["*",[2,2,[[41,1,1,0,1,[[991,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[25774,30109]]],["about",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30109]]],["side",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25774]]]]},{"k":"G3841","v":[["*",[10,10,[[46,1,1,0,1,[[1083,1,1,0,1]]],[65,9,9,1,10,[[1167,1,1,1,2],[1170,1,1,2,3],[1177,1,1,3,4],[1181,1,1,4,5],[1182,2,2,5,7],[1185,2,2,7,9],[1187,1,1,9,10]]]],[28916,30705,30776,30889,30949,30961,30968,31023,31032,31075]]],["Almighty",[9,9,[[46,1,1,0,1,[[1083,1,1,0,1]]],[65,8,8,1,9,[[1167,1,1,1,2],[1170,1,1,2,3],[1177,1,1,3,4],[1181,1,1,4,5],[1182,2,2,5,7],[1185,1,1,7,8],[1187,1,1,8,9]]]],[28916,30705,30776,30889,30949,30961,30968,31032,31075]]],["omnipotent",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31023]]]]},{"k":"G3842","v":[["*",[42,38,[[39,2,1,0,1,[[954,2,1,0,1]]],[40,2,1,1,2,[[970,2,1,1,2]]],[41,2,2,2,4,[[987,1,1,2,3],[990,1,1,3,4]]],[42,8,6,4,10,[[1002,1,1,4,5],[1003,1,1,5,6],[1004,1,1,6,7],[1007,1,1,7,8],[1008,2,1,8,9],[1014,2,1,9,10]]],[44,1,1,10,11,[[1046,1,1,10,11]]],[45,2,2,11,13,[[1062,1,1,11,12],[1076,1,1,12,13]]],[46,4,4,13,17,[[1079,1,1,13,14],[1081,1,1,14,15],[1082,1,1,15,16],[1086,1,1,16,17]]],[47,1,1,17,18,[[1094,1,1,17,18]]],[48,1,1,18,19,[[1101,1,1,18,19]]],[49,4,4,19,23,[[1103,2,2,19,21],[1104,1,1,21,22],[1106,1,1,22,23]]],[50,3,3,23,26,[[1107,1,1,23,24],[1110,2,2,24,26]]],[51,6,6,26,32,[[1111,1,1,26,27],[1112,1,1,27,28],[1113,1,1,28,29],[1114,1,1,29,30],[1115,2,2,30,32]]],[52,3,3,32,35,[[1116,2,2,32,34],[1117,1,1,34,35]]],[54,1,1,35,36,[[1127,1,1,35,36]]],[56,1,1,36,37,[[1132,1,1,36,37]]],[57,1,1,37,38,[[1139,1,1,37,38]]]],[24065,24761,25619,25689,26291,26334,26410,26565,26588,26805,27939,28367,28776,28838,28869,28883,28964,29149,29324,29365,29381,29403,29446,29468,29548,29554,29562,29586,29596,29620,29636,29637,29652,29660,29674,29860,29942,30089]]],["+",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28838]]],["Always",[2,2,[[46,1,1,0,1,[[1081,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[28869,29365]]],["Ever",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29860]]],["alway",[5,5,[[42,1,1,0,1,[[1003,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]],[50,1,1,2,3,[[1110,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]],[52,1,1,4,5,[[1117,1,1,4,5]]]],[26334,29446,29548,29586,29674]]],["always",[26,23,[[39,2,1,0,1,[[954,2,1,0,1]]],[40,2,1,1,2,[[970,2,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[42,5,4,3,7,[[1004,1,1,3,4],[1007,1,1,4,5],[1008,2,1,5,6],[1014,1,1,6,7]]],[44,1,1,7,8,[[1046,1,1,7,8]]],[45,2,2,8,10,[[1062,1,1,8,9],[1076,1,1,9,10]]],[46,2,2,10,12,[[1082,1,1,10,11],[1086,1,1,11,12]]],[47,1,1,12,13,[[1094,1,1,12,13]]],[48,1,1,13,14,[[1101,1,1,13,14]]],[49,2,2,14,16,[[1103,1,1,14,15],[1104,1,1,15,16]]],[50,2,2,16,18,[[1107,1,1,16,17],[1110,1,1,17,18]]],[51,2,2,18,20,[[1111,1,1,18,19],[1113,1,1,19,20]]],[52,2,2,20,22,[[1116,2,2,20,22]]],[56,1,1,22,23,[[1132,1,1,22,23]]]],[24065,24761,25689,26410,26565,26588,26805,27939,28367,28776,28883,28964,29149,29324,29381,29403,29468,29554,29562,29596,29652,29660,29942]]],["ever",[5,5,[[41,1,1,0,1,[[987,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[51,2,2,2,4,[[1114,1,1,2,3],[1115,1,1,3,4]]],[57,1,1,4,5,[[1139,1,1,4,5]]]],[25619,26805,29620,29636,30089]]],["evermore",[2,2,[[42,1,1,0,1,[[1002,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]]],[26291,29637]]]]},{"k":"G3843","v":[["*",[9,9,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,3,3,1,4,[[1035,1,1,1,2],[1038,1,1,2,3],[1045,1,1,3,4]]],[44,1,1,4,5,[[1048,1,1,4,5]]],[45,4,4,5,9,[[1066,1,1,5,6],[1070,2,2,6,8],[1077,1,1,8,9]]]],[25086,27578,27686,27903,28000,28464,28550,28562,28788]]],["+",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28788]]],["altogether",[2,2,[[45,2,2,0,2,[[1066,1,1,0,1],[1070,1,1,1,2]]]],[28464,28550]]],["doubt",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27903]]],["means",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]]],[27578,28562]]],["needs",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27686]]],["surely",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25086]]],["wise",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28000]]]]},{"k":"G3844","v":[["*",[198,187,[[39,19,18,0,18,[[930,3,3,0,3],[932,1,1,3,4],[934,1,1,4,5],[941,3,3,5,8],[943,2,2,8,10],[946,1,1,10,11],[947,2,1,11,12],[948,2,2,12,14],[949,2,2,14,16],[950,1,1,16,17],[956,1,1,17,18]]],[40,16,14,18,32,[[957,1,1,18,19],[958,1,1,19,20],[959,1,1,20,21],[960,3,3,21,24],[961,2,2,24,26],[964,1,1,26,27],[966,4,2,27,29],[968,2,2,29,31],[970,1,1,31,32]]],[41,29,28,32,60,[[973,3,3,32,35],[974,2,2,35,37],[975,1,1,37,38],[977,2,2,38,40],[978,2,2,40,42],[979,1,1,42,43],[980,5,5,43,48],[981,1,1,48,49],[982,2,2,49,51],[983,2,2,51,53],[984,1,1,53,54],[985,2,2,54,56],[989,1,1,56,57],[990,3,2,57,59],[991,1,1,59,60]]],[42,33,29,60,89,[[997,3,3,60,63],[1000,3,3,63,66],[1001,4,3,66,69],[1002,2,2,69,71],[1003,1,1,71,72],[1004,4,3,72,75],[1005,2,2,75,77],[1006,1,1,77,78],[1010,3,3,78,81],[1011,3,2,81,83],[1012,2,2,83,85],[1013,4,3,85,88],[1015,1,1,88,89]]],[43,34,33,89,122,[[1019,1,1,89,90],[1020,2,2,90,92],[1021,2,2,92,94],[1022,2,2,94,96],[1024,2,2,96,98],[1026,3,3,98,101],[1027,4,3,101,104],[1033,1,1,104,105],[1034,1,1,105,106],[1035,3,3,106,109],[1037,1,1,109,110],[1038,3,3,110,113],[1039,3,3,113,116],[1041,1,1,116,117],[1043,4,4,117,121],[1045,1,1,121,122]]],[44,13,13,122,135,[[1046,2,2,122,124],[1047,2,2,124,126],[1049,1,1,126,127],[1054,1,1,127,128],[1056,3,3,128,131],[1057,2,2,131,133],[1059,1,1,133,134],[1061,1,1,134,135]]],[45,6,6,135,141,[[1064,2,2,135,137],[1068,1,1,137,138],[1073,2,2,138,140],[1077,1,1,140,141]]],[46,2,2,141,143,[[1078,1,1,141,142],[1088,1,1,142,143]]],[47,4,4,143,147,[[1091,3,3,143,146],[1093,1,1,146,147]]],[48,2,2,147,149,[[1102,2,2,147,149]]],[49,2,1,149,150,[[1106,2,1,149,150]]],[50,1,1,150,151,[[1110,1,1,150,151]]],[51,2,2,151,153,[[1112,1,1,151,152],[1114,1,1,152,153]]],[52,3,3,153,156,[[1116,1,1,153,154],[1118,2,2,154,156]]],[54,5,5,156,161,[[1125,2,2,156,158],[1126,1,1,158,159],[1127,1,1,159,160],[1128,1,1,160,161]]],[57,10,10,161,171,[[1133,2,2,161,163],[1134,2,2,163,165],[1135,1,1,165,166],[1141,1,1,166,167],[1143,3,3,167,170],[1144,1,1,170,171]]],[58,4,4,171,175,[[1146,4,4,171,175]]],[59,2,2,175,177,[[1152,2,2,175,177]]],[60,3,3,177,180,[[1156,1,1,177,178],[1157,1,1,178,179],[1158,1,1,179,180]]],[61,2,2,180,182,[[1161,1,1,180,181],[1163,1,1,181,182]]],[62,3,2,182,184,[[1164,3,2,182,184]]],[65,3,3,184,187,[[1168,2,2,184,186],[1169,1,1,186,187]]]],[23173,23176,23185,23227,23283,23540,23543,23558,23662,23663,23746,23788,23812,23822,23851,23868,23897,24210,24231,24273,24309,24324,24327,24338,24385,24390,24511,24615,24634,24675,24684,24797,24923,24930,24938,24974,25025,25038,25108,25109,25165,25180,25233,25250,25257,25280,25286,25294,25348,25370,25402,25421,25442,25507,25520,25522,25667,25715,25723,25738,26050,26058,26083,26165,26196,26208,26244,26251,26254,26302,26303,26357,26407,26419,26421,26456,26473,26499,26685,26691,26693,26714,26725,26753,26754,26764,26766,26767,26850,26982,26998,27001,27057,27059,27061,27069,27132,27174,27218,27230,27259,27265,27281,27291,27496,27532,27560,27570,27577,27650,27671,27672,27680,27707,27709,27734,27777,27831,27833,27835,27845,27921,27955,27956,27973,27975,28040,28169,28233,28234,28236,28248,28261,28285,28353,28421,28429,28511,28649,28650,28778,28817,29013,29065,29066,29069,29113,29345,29346,29460,29558,29583,29604,29655,29684,29686,29822,29827,29829,29867,29883,29967,29972,29984,29986,29998,30128,30176,30183,30184,30236,30271,30273,30283,30293,30403,30419,30496,30511,30530,30601,30639,30648,30649,30730,30744,30764]]],["+",[12,12,[[39,2,2,0,2,[[930,1,1,0,1],[949,1,1,1,2]]],[40,3,3,2,5,[[959,1,1,2,3],[961,1,1,3,4],[968,1,1,4,5]]],[41,1,1,5,6,[[982,1,1,5,6]]],[42,1,1,6,7,[[1001,1,1,6,7]]],[44,2,2,7,9,[[1057,1,1,7,8],[1059,1,1,8,9]]],[45,2,2,9,11,[[1073,2,2,9,11]]],[57,1,1,11,12,[[1143,1,1,11,12]]]],[23176,23868,24309,24390,24684,25370,26254,28248,28285,28649,28650,30183]]],["With",[2,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]]],[23788,24615]]],["above",[3,3,[[41,2,2,0,2,[[985,2,2,0,2]]],[57,1,1,2,3,[[1133,1,1,2,3]]]],[25520,25522,29972]]],["against",[2,2,[[44,2,2,0,2,[[1046,1,1,0,1],[1049,1,1,1,2]]]],[27956,28040]]],["among",[3,3,[[39,1,1,0,1,[[956,1,1,0,1]]],[50,1,1,1,2,[[1110,1,1,1,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[24210,29558,30730]]],["any",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29686]]],["at",[12,12,[[39,1,1,0,1,[[943,1,1,0,1]]],[41,5,5,1,6,[[979,1,1,1,2],[980,2,2,2,4],[982,1,1,4,5],[989,1,1,5,6]]],[43,6,6,6,12,[[1021,2,2,6,8],[1022,2,2,8,10],[1024,1,1,10,11],[1039,1,1,11,12]]]],[23663,25233,25280,25286,25402,25667,27057,27059,27061,27069,27174,27707]]],["before",[3,3,[[44,1,1,0,1,[[1047,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[27975,30293,30511]]],["by",[23,23,[[39,5,5,0,5,[[932,1,1,0,1],[941,3,3,1,4],[948,1,1,4,5]]],[40,6,6,5,11,[[957,1,1,5,6],[958,1,1,6,7],[960,3,3,7,10],[966,1,1,10,11]]],[41,6,6,11,17,[[977,2,2,11,13],[980,2,2,13,15],[981,1,1,15,16],[990,1,1,16,17]]],[42,1,1,17,18,[[1015,1,1,17,18]]],[43,3,3,18,21,[[1027,2,2,18,20],[1033,1,1,20,21]]],[45,1,1,21,22,[[1077,1,1,21,22]]],[57,1,1,22,23,[[1143,1,1,22,23]]]],[23227,23540,23543,23558,23822,24231,24273,24324,24327,24338,24634,25108,25109,25250,25257,25348,25723,26850,27265,27291,27496,28778,30184]]],["contrary",[3,3,[[43,1,1,0,1,[[1035,1,1,0,1]]],[44,2,2,1,3,[[1056,1,1,1,2],[1061,1,1,2,3]]]],[27570,28233,28353]]],["from",[24,22,[[40,2,2,0,2,[[968,1,1,0,1],[970,1,1,1,2]]],[41,3,3,2,5,[[973,1,1,2,3],[974,1,1,3,4],[980,1,1,4,5]]],[42,10,9,5,14,[[997,1,1,5,6],[1001,3,3,6,9],[1003,1,1,9,10],[1011,2,1,10,11],[1012,2,2,11,13],[1013,1,1,13,14]]],[43,4,4,14,18,[[1026,1,1,14,15],[1039,1,1,15,16],[1043,2,2,16,18]]],[49,1,1,18,19,[[1106,1,1,18,19]]],[60,1,1,19,20,[[1156,1,1,19,20]]],[62,3,2,20,22,[[1164,3,2,20,22]]]],[24675,24797,24938,24974,25294,26050,26244,26251,26254,26357,26725,26753,26754,26767,27230,27709,27833,27835,29460,30496,30648,30649]]],["in",[2,2,[[44,2,2,0,2,[[1056,1,1,0,1],[1057,1,1,1,2]]]],[28234,28261]]],["is",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28236]]],["of",[51,51,[[39,5,5,0,5,[[930,2,2,0,2],[934,1,1,2,3],[946,1,1,3,4],[948,1,1,4,5]]],[40,1,1,5,6,[[964,1,1,5,6]]],[41,4,4,6,10,[[978,2,2,6,8],[983,1,1,8,9],[984,1,1,9,10]]],[42,12,12,10,22,[[997,1,1,10,11],[1000,2,2,11,13],[1002,2,2,13,15],[1004,2,2,15,17],[1005,2,2,17,19],[1006,1,1,19,20],[1011,1,1,20,21],[1013,1,1,21,22]]],[43,12,12,22,34,[[1019,1,1,22,23],[1020,2,2,23,25],[1024,1,1,25,26],[1026,1,1,26,27],[1027,1,1,27,28],[1034,1,1,28,29],[1037,1,1,29,30],[1039,1,1,30,31],[1041,1,1,31,32],[1043,1,1,32,33],[1045,1,1,33,34]]],[47,1,1,34,35,[[1091,1,1,34,35]]],[48,1,1,35,36,[[1102,1,1,35,36]]],[49,1,1,36,37,[[1106,1,1,36,37]]],[51,2,2,37,39,[[1112,1,1,37,38],[1114,1,1,38,39]]],[52,1,1,39,40,[[1118,1,1,39,40]]],[54,4,4,40,44,[[1125,2,2,40,42],[1126,1,1,42,43],[1127,1,1,43,44]]],[58,2,2,44,46,[[1146,2,2,44,46]]],[59,1,1,46,47,[[1152,1,1,46,47]]],[61,2,2,47,49,[[1161,1,1,47,48],[1163,1,1,48,49]]],[65,2,2,49,51,[[1168,1,1,49,50],[1169,1,1,50,51]]]],[23173,23185,23283,23746,23812,24511,25165,25180,25421,25507,26058,26165,26208,26302,26303,26407,26421,26456,26473,26499,26714,26766,26982,26998,27001,27132,27218,27281,27532,27650,27734,27777,27845,27921,29069,29345,29460,29583,29604,29684,29822,29827,29829,29867,30271,30273,30403,30601,30639,30744,30764]]],["save",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29013]]],["sight",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29113]]],["than",[12,12,[[41,1,1,0,1,[[975,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[45,1,1,2,3,[[1064,1,1,2,3]]],[47,2,2,3,5,[[1091,2,2,3,5]]],[57,7,7,5,12,[[1133,1,1,5,6],[1134,2,2,6,8],[1135,1,1,8,9],[1141,1,1,9,10],[1143,1,1,10,11],[1144,1,1,11,12]]]],[25038,27955,28421,29065,29066,29967,29984,29986,29998,30128,30176,30236]]],["unto",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]]],[23662,24385]]],["with",[40,36,[[39,3,3,0,3,[[947,1,1,0,1],[949,1,1,1,2],[950,1,1,2,3]]],[40,2,1,3,4,[[966,2,1,3,4]]],[41,7,6,4,10,[[973,2,2,4,6],[974,1,1,6,7],[983,1,1,7,8],[990,2,1,8,9],[991,1,1,9,10]]],[42,9,7,10,17,[[997,1,1,10,11],[1000,1,1,11,12],[1004,2,1,12,13],[1010,3,3,13,16],[1013,2,1,16,17]]],[43,8,8,17,25,[[1026,1,1,17,18],[1027,1,1,18,19],[1035,2,2,19,21],[1038,3,3,21,24],[1043,1,1,24,25]]],[44,2,2,25,27,[[1047,1,1,25,26],[1054,1,1,26,27]]],[45,2,2,27,29,[[1064,1,1,27,28],[1068,1,1,28,29]]],[46,1,1,29,30,[[1078,1,1,29,30]]],[48,1,1,30,31,[[1102,1,1,30,31]]],[52,1,1,31,32,[[1116,1,1,31,32]]],[54,1,1,32,33,[[1128,1,1,32,33]]],[58,1,1,33,34,[[1146,1,1,33,34]]],[59,1,1,34,35,[[1152,1,1,34,35]]],[60,1,1,35,36,[[1158,1,1,35,36]]]],[23788,23851,23897,24615,24923,24930,25025,25442,25715,25738,26083,26196,26419,26685,26691,26693,26764,27259,27265,27560,27577,27671,27672,27680,27831,27973,28169,28429,28511,28817,29346,29655,29883,30283,30419,30530]]]]},{"k":"G3845","v":[["*",[4,4,[[39,2,2,0,2,[[943,2,2,0,2]]],[43,1,1,2,3,[[1018,1,1,2,3]]],[62,1,1,3,4,[[1164,1,1,3,4]]]],[23635,23636,26948,30654]]],["fell",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26948]]],["transgress",[2,2,[[39,2,2,0,2,[[943,2,2,0,2]]]],[23635,23636]]],["transgresseth",[1,1,[[62,1,1,0,1,[[1164,1,1,0,1]]]],[30654]]]]},{"k":"G3846","v":[["*",[2,2,[[40,1,1,0,1,[[960,1,1,0,1]]],[43,1,1,1,2,[[1037,1,1,1,2]]]],[24353,27641]]],["arrived",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27641]]],["compare",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24353]]]]},{"k":"G3847","v":[["*",[7,7,[[44,3,3,0,3,[[1047,1,1,0,1],[1049,1,1,1,2],[1050,1,1,2,3]]],[47,1,1,3,4,[[1093,1,1,3,4]]],[53,1,1,4,5,[[1120,1,1,4,5]]],[57,2,2,5,7,[[1134,1,1,5,6],[1141,1,1,6,7]]]],[27985,28037,28061,29121,29730,29979,30120]]],["breaking",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27985]]],["transgression",[4,4,[[44,2,2,0,2,[[1049,1,1,0,1],[1050,1,1,1,2]]],[53,1,1,2,3,[[1120,1,1,2,3]]],[57,1,1,3,4,[[1134,1,1,3,4]]]],[28037,28061,29730,29979]]],["transgressions",[2,2,[[47,1,1,0,1,[[1093,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[29121,30120]]]]},{"k":"G3848","v":[["*",[5,5,[[44,2,2,0,2,[[1047,2,2,0,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]],[58,2,2,3,5,[[1147,2,2,3,5]]]],[27987,27989,29099,30302,30304]]],["breaker",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27987]]],["transgress",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27989]]],["transgressor",[2,2,[[47,1,1,0,1,[[1092,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[29099,30304]]],["transgressors",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30302]]]]},{"k":"G3849","v":[["constrained",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1033,1,1,1,2]]]],[26020,27498]]]]},{"k":"G3850","v":[["*",[50,48,[[39,17,16,0,16,[[941,12,11,0,11],[943,1,1,11,12],[949,2,2,12,14],[950,1,1,14,15],[952,1,1,15,16]]],[40,13,12,16,28,[[959,1,1,16,17],[960,8,7,17,24],[963,1,1,24,25],[968,2,2,25,27],[969,1,1,27,28]]],[41,18,18,28,46,[[976,1,1,28,29],[977,1,1,29,30],[978,1,1,30,31],[980,4,4,31,35],[984,2,2,35,37],[985,1,1,37,38],[986,1,1,38,39],[987,1,1,39,40],[990,2,2,40,42],[991,1,1,42,43],[992,2,2,43,45],[993,1,1,45,46]]],[57,2,2,46,48,[[1141,1,1,46,47],[1143,1,1,47,48]]]],[23542,23549,23552,23557,23563,23570,23572,23573,23574,23575,23592,23648,23859,23871,23873,23989,24311,24325,24333,24334,24336,24353,24356,24357,24480,24674,24685,24745,25086,25143,25185,25249,25254,25255,25256,25475,25500,25524,25560,25591,25689,25697,25742,25788,25798,25855,30114,30191]]],["comparison",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24353]]],["figure",[2,2,[[57,2,2,0,2,[[1141,1,1,0,1],[1143,1,1,1,2]]]],[30114,30191]]],["parable",[31,31,[[39,9,9,0,9,[[941,6,6,0,6],[943,1,1,6,7],[949,1,1,7,8],[952,1,1,8,9]]],[40,6,6,9,15,[[960,3,3,9,12],[963,1,1,12,13],[968,1,1,13,14],[969,1,1,14,15]]],[41,16,16,15,31,[[977,1,1,15,16],[978,1,1,16,17],[980,3,3,17,20],[984,2,2,20,22],[985,1,1,22,23],[986,1,1,23,24],[987,1,1,24,25],[990,2,2,25,27],[991,1,1,27,28],[992,2,2,28,30],[993,1,1,30,31]]]],[23557,23563,23570,23572,23573,23575,23648,23859,23989,24333,24336,24357,24480,24685,24745,25143,25185,25249,25254,25256,25475,25500,25524,25560,25591,25689,25697,25742,25788,25798,25855]]],["parables",[15,15,[[39,8,8,0,8,[[941,6,6,0,6],[949,1,1,6,7],[950,1,1,7,8]]],[40,6,6,8,14,[[959,1,1,8,9],[960,4,4,9,13],[968,1,1,13,14]]],[41,1,1,14,15,[[980,1,1,14,15]]]],[23542,23549,23552,23573,23574,23592,23871,23873,24311,24325,24334,24336,24356,24674,25255]]],["proverb",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25086]]]]},{"k":"G3851","v":[["regarding",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29421]]]]},{"k":"G3852","v":[["*",[5,5,[[43,2,2,0,2,[[1022,1,1,0,1],[1033,1,1,1,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]],[53,2,2,3,5,[[1119,2,2,3,5]]]],[27087,27507,29605,29701,29714]]],["+",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27087]]],["charge",[2,2,[[43,1,1,0,1,[[1033,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]]],[27507,29714]]],["commandment",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29701]]],["commandments",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29605]]]]},{"k":"G3853","v":[["*",[30,30,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[964,1,1,2,3]]],[41,4,4,3,7,[[977,1,1,3,4],[980,2,2,4,6],[981,1,1,6,7]]],[43,11,11,7,18,[[1018,1,1,7,8],[1021,1,1,8,9],[1022,2,2,9,11],[1027,1,1,11,12],[1032,1,1,12,13],[1033,2,2,13,15],[1034,1,1,15,16],[1040,2,2,16,18]]],[45,2,2,18,20,[[1068,1,1,18,19],[1072,1,1,19,20]]],[51,1,1,20,21,[[1114,1,1,20,21]]],[52,4,4,21,25,[[1118,4,4,21,25]]],[53,5,5,25,30,[[1119,1,1,25,26],[1122,1,1,26,27],[1123,1,1,27,28],[1124,2,2,28,30]]]],[23422,24415,24506,25121,25274,25301,25322,26927,27040,27087,27099,27301,27447,27501,27506,27553,27756,27764,28497,28617,29614,29682,29684,29688,29690,29699,29758,29770,29801,29805]]],["+",[2,2,[[43,1,1,0,1,[[1022,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[27087,29801]]],["Charge",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29805]]],["charge",[2,2,[[53,2,2,0,2,[[1119,1,1,0,1],[1123,1,1,1,2]]]],[29699,29770]]],["charged",[3,3,[[41,2,2,0,2,[[977,1,1,0,1],[980,1,1,1,2]]],[43,1,1,2,3,[[1040,1,1,2,3]]]],[25121,25301,27756]]],["charging",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27506]]],["command",[7,7,[[43,2,2,0,2,[[1032,1,1,0,1],[1033,1,1,1,2]]],[45,1,1,2,3,[[1068,1,1,2,3]]],[52,3,3,3,6,[[1118,3,3,3,6]]],[53,1,1,6,7,[[1122,1,1,6,7]]]],[27447,27501,28497,29682,29684,29690,29758]]],["commanded",[11,11,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[964,1,1,2,3]]],[41,2,2,3,5,[[980,1,1,3,4],[981,1,1,4,5]]],[43,4,4,5,9,[[1018,1,1,5,6],[1021,1,1,6,7],[1022,1,1,7,8],[1027,1,1,8,9]]],[51,1,1,9,10,[[1114,1,1,9,10]]],[52,1,1,10,11,[[1118,1,1,10,11]]]],[23422,24415,24506,25274,25322,26927,27040,27099,27301,29614,29688]]],["commandeth",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27553]]],["commandment",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27764]]],["declare",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28617]]]]},{"k":"G3854","v":[["*",[37,37,[[39,3,3,0,3,[[930,1,1,0,1],[931,2,2,1,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[41,8,8,4,12,[[979,2,2,4,6],[980,1,1,6,7],[983,1,1,7,8],[984,1,1,8,9],[986,1,1,9,10],[991,1,1,10,11],[994,1,1,11,12]]],[42,2,2,12,14,[[999,1,1,12,13],[1004,1,1,13,14]]],[43,21,21,14,35,[[1022,3,3,14,17],[1026,2,2,17,19],[1027,2,2,19,21],[1028,1,1,21,22],[1030,1,1,22,23],[1031,1,1,23,24],[1032,1,1,24,25],[1034,1,1,25,26],[1035,1,1,26,27],[1037,1,1,27,28],[1038,1,1,28,29],[1040,2,2,29,31],[1041,2,2,31,33],[1042,1,1,33,34],[1045,1,1,34,35]]],[45,1,1,35,36,[[1077,1,1,35,36]]],[57,1,1,36,37,[[1141,1,1,36,37]]]],[23170,23193,23205,24797,25199,25215,25264,25411,25510,25574,25747,25916,26143,26383,27080,27081,27084,27242,27255,27291,27292,27330,27376,27441,27446,27533,27584,27644,27682,27750,27769,27786,27793,27803,27920,28779,30116]]],["came",[16,16,[[39,2,2,0,2,[[930,1,1,0,1],[931,1,1,1,2]]],[41,4,4,2,6,[[979,1,1,2,3],[980,1,1,3,4],[986,1,1,4,5],[991,1,1,5,6]]],[42,2,2,6,8,[[999,1,1,6,7],[1004,1,1,7,8]]],[43,8,8,8,16,[[1022,3,3,8,11],[1028,1,1,11,12],[1030,1,1,12,13],[1041,2,2,13,15],[1045,1,1,15,16]]]],[23170,23193,25199,25264,25574,25747,26143,26383,27080,27081,27084,27330,27376,27786,27793,27920]]],["come",[15,15,[[41,4,4,0,4,[[979,1,1,0,1],[983,1,1,1,2],[984,1,1,2,3],[994,1,1,3,4]]],[43,9,9,4,13,[[1026,2,2,4,6],[1027,1,1,6,7],[1031,1,1,7,8],[1032,1,1,8,9],[1035,1,1,9,10],[1037,1,1,10,11],[1040,1,1,11,12],[1042,1,1,12,13]]],[45,1,1,13,14,[[1077,1,1,13,14]]],[57,1,1,14,15,[[1141,1,1,14,15]]]],[25215,25411,25510,25916,27242,27255,27292,27441,27446,27584,27644,27769,27803,28779,30116]]],["cometh",[3,3,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]]],[23205,24797,27291]]],["coming",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27533]]],["present",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27682]]],["went",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27750]]]]},{"k":"G3855","v":[["*",[10,10,[[39,3,3,0,3,[[937,2,2,0,2],[948,1,1,2,3]]],[40,2,2,3,5,[[958,1,1,3,4],[971,1,1,4,5]]],[42,2,2,5,7,[[1004,1,1,5,6],[1005,1,1,6,7]]],[45,1,1,7,8,[[1068,1,1,7,8]]],[61,2,2,8,10,[[1160,2,2,8,10]]]],[23388,23406,23822,24274,24847,26440,26441,28518,30558,30567]]],["away",[2,2,[[45,1,1,0,1,[[1068,1,1,0,1]]],[61,1,1,1,2,[[1160,1,1,1,2]]]],[28518,30567]]],["by",[5,5,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[971,1,1,2,3]]],[42,2,2,3,5,[[1004,1,1,3,4],[1005,1,1,4,5]]]],[23822,24274,24847,26440,26441]]],["departed",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23406]]],["forth",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23388]]],["past",[1,1,[[61,1,1,0,1,[[1160,1,1,0,1]]]],[30558]]]]},{"k":"G3856","v":[["*",[2,2,[[39,1,1,0,1,[[929,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[23163,30050]]],["+",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23163]]],["shame",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30050]]]]},{"k":"G3857","v":[["paradise",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[25978,29026,30724]]]]},{"k":"G3858","v":[["*",[5,5,[[40,1,1,0,1,[[960,1,1,0,1]]],[43,2,2,1,3,[[1033,1,1,1,2],[1039,1,1,2,3]]],[53,1,1,3,4,[[1123,1,1,3,4]]],[57,1,1,4,5,[[1144,1,1,4,5]]]],[24343,27504,27722,29782,30218]]],["receive",[4,4,[[40,1,1,0,1,[[960,1,1,0,1]]],[43,2,2,1,3,[[1033,1,1,1,2],[1039,1,1,2,3]]],[53,1,1,3,4,[[1123,1,1,3,4]]]],[24343,27504,27722,29782]]],["receiveth",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30218]]]]},{"k":"G3859","v":[["disputings",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29793]]]]},{"k":"G3860","v":[["*",[121,118,[[39,32,31,0,31,[[932,1,1,0,1],[933,2,1,1,2],[938,4,4,2,6],[939,1,1,6,7],[945,1,1,7,8],[946,1,1,8,9],[948,2,2,9,11],[952,2,2,11,13],[953,3,3,13,16],[954,10,10,16,26],[955,5,5,26,31]]],[40,20,19,31,50,[[957,1,1,31,32],[959,1,1,32,33],[960,1,1,33,34],[963,1,1,34,35],[965,1,1,35,36],[966,2,1,36,37],[969,3,3,37,40],[970,7,7,40,47],[971,3,3,47,50]]],[41,17,17,50,67,[[973,1,1,50,51],[976,1,1,51,52],[981,1,1,52,53],[982,1,1,53,54],[984,1,1,54,55],[990,1,1,55,56],[992,1,1,56,57],[993,2,2,57,59],[994,5,5,59,64],[995,1,1,64,65],[996,2,2,65,67]]],[42,15,15,67,82,[[1002,2,2,67,69],[1008,1,1,69,70],[1009,3,3,70,73],[1014,5,5,73,78],[1015,3,3,78,81],[1017,1,1,81,82]]],[43,14,14,82,96,[[1020,1,1,82,83],[1023,1,1,83,84],[1024,1,1,84,85],[1025,1,1,85,86],[1029,1,1,86,87],[1031,1,1,87,88],[1032,2,2,88,90],[1033,1,1,90,91],[1038,1,1,91,92],[1039,1,1,92,93],[1044,1,1,93,94],[1045,2,2,94,96]]],[44,6,6,96,102,[[1046,3,3,96,99],[1049,1,1,99,100],[1051,1,1,100,101],[1053,1,1,101,102]]],[45,7,6,102,108,[[1066,1,1,102,103],[1072,3,2,103,105],[1074,1,1,105,106],[1076,2,2,106,108]]],[46,1,1,108,109,[[1081,1,1,108,109]]],[47,1,1,109,110,[[1092,1,1,109,110]]],[48,3,3,110,113,[[1100,1,1,110,111],[1101,2,2,111,113]]],[53,1,1,113,114,[[1119,1,1,113,114]]],[59,1,1,114,115,[[1152,1,1,114,115]]],[60,2,2,115,117,[[1157,2,2,115,117]]],[64,1,1,117,118,[[1166,1,1,117,118]]]],[23221,23259,23421,23434,23436,23438,23486,23722,23761,23810,23811,23966,23967,24022,24028,24030,24056,24069,24070,24075,24077,24078,24079,24099,24100,24102,24131,24132,24133,24147,24155,24229,24307,24352,24476,24569,24621,24726,24728,24729,24764,24765,24772,24775,24795,24796,24798,24827,24836,24841,24895,25069,25345,25385,25517,25720,25799,25838,25842,25868,25870,25885,25886,25912,25960,25998,26011,26321,26328,26584,26632,26641,26651,26787,26790,26815,26820,26821,26836,26841,26855,26918,27009,27115,27158,27179,27341,27440,27468,27482,27487,27675,27708,27856,27915,27916,27954,27956,27958,28047,28085,28148,28459,28602,28623,28668,28721,28742,28870,29101,29291,29306,29329,29716,30422,30504,30521,30675]]],["+",[13,13,[[39,4,4,0,4,[[938,3,3,0,3],[952,1,1,3,4]]],[40,1,1,4,5,[[969,1,1,4,5]]],[42,1,1,5,6,[[1014,1,1,5,6]]],[43,2,2,6,8,[[1024,1,1,6,7],[1044,1,1,7,8]]],[44,4,4,8,12,[[1046,3,3,8,11],[1053,1,1,11,12]]],[48,1,1,12,13,[[1100,1,1,12,13]]]],[23421,23434,23436,23966,24726,26815,27158,27856,27954,27956,27958,28148,29291]]],["betray",[17,17,[[39,5,5,0,5,[[952,1,1,0,1],[954,4,4,1,5]]],[40,4,4,5,9,[[969,1,1,5,6],[970,3,3,6,9]]],[41,2,2,9,11,[[994,2,2,9,11]]],[42,6,6,11,17,[[1002,2,2,11,13],[1008,1,1,13,14],[1009,3,3,14,17]]]],[23967,24070,24075,24077,24100,24729,24764,24765,24772,25868,25870,26321,26328,26584,26632,26641,26651]]],["betrayed",[18,18,[[39,9,9,0,9,[[945,1,1,0,1],[948,1,1,1,2],[954,5,5,2,7],[955,2,2,7,9]]],[40,4,4,9,13,[[959,1,1,9,10],[970,3,3,10,13]]],[41,2,2,13,15,[[993,1,1,13,14],[994,1,1,14,15]]],[42,2,2,15,17,[[1014,2,2,15,17]]],[45,1,1,17,18,[[1072,1,1,17,18]]]],[23722,23810,24056,24078,24079,24099,24102,24132,24133,24307,24775,24795,24798,25842,25886,26787,26790,28623]]],["betrayest",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25912]]],["betrayeth",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]]],[24796,25885,26918]]],["committed",[2,2,[[43,1,1,0,1,[[1025,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[27179,30422]]],["deliver",[9,8,[[39,4,3,0,3,[[933,2,1,0,1],[948,1,1,1,2],[954,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,2,2,4,6,[[984,1,1,4,5],[992,1,1,5,6]]],[43,1,1,6,7,[[1038,1,1,6,7]]],[45,1,1,7,8,[[1066,1,1,7,8]]]],[23259,23811,24069,24621,25517,25799,27675,28459]]],["delivered",[39,39,[[39,6,6,0,6,[[939,1,1,0,1],[946,1,1,1,2],[953,1,1,2,3],[955,3,3,3,6]]],[40,6,6,6,12,[[963,1,1,6,7],[965,1,1,7,8],[966,1,1,8,9],[971,3,3,9,12]]],[41,8,8,12,20,[[973,1,1,12,13],[976,1,1,13,14],[981,1,1,14,15],[982,1,1,15,16],[990,1,1,16,17],[995,1,1,17,18],[996,2,2,18,20]]],[42,4,4,20,24,[[1014,2,2,20,22],[1015,2,2,22,24]]],[43,5,5,24,29,[[1023,1,1,24,25],[1029,1,1,25,26],[1033,1,1,26,27],[1045,2,2,27,29]]],[44,2,2,29,31,[[1049,1,1,29,30],[1051,1,1,30,31]]],[45,3,3,31,34,[[1072,2,2,31,33],[1076,1,1,33,34]]],[46,1,1,34,35,[[1081,1,1,34,35]]],[53,1,1,35,36,[[1119,1,1,35,36]]],[60,2,2,36,38,[[1157,2,2,36,38]]],[64,1,1,38,39,[[1166,1,1,38,39]]]],[23486,23761,24022,24131,24147,24155,24476,24569,24621,24827,24836,24841,24895,25069,25345,25385,25720,25960,25998,26011,26820,26821,26836,26841,27115,27341,27487,27915,27916,28047,28085,28602,28623,28721,28870,29716,30504,30521,30675]]],["deliveredst",[2,2,[[39,2,2,0,2,[[953,2,2,0,2]]]],[24028,24030]]],["delivering",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27708]]],["forth",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24352]]],["gave",[2,2,[[47,1,1,0,1,[[1092,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]]],[29101,29329]]],["give",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28668]]],["given",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29306]]],["hazarded",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27468]]],["prison",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23221,24229]]],["recommended",[2,2,[[43,2,2,0,2,[[1031,1,1,0,1],[1032,1,1,1,2]]]],[27440,27482]]],["up",[6,6,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[43,1,1,4,5,[[1020,1,1,4,5]]],[45,1,1,5,6,[[1076,1,1,5,6]]]],[23438,24728,25838,26855,27009,28742]]]]},{"k":"G3861","v":[["things",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25133]]]]},{"k":"G3862","v":[["*",[13,13,[[39,3,3,0,3,[[943,3,3,0,3]]],[40,5,5,3,8,[[963,5,5,3,8]]],[45,1,1,8,9,[[1072,1,1,8,9]]],[47,1,1,9,10,[[1091,1,1,9,10]]],[50,1,1,10,11,[[1108,1,1,10,11]]],[52,2,2,11,13,[[1117,1,1,11,12],[1118,1,1,12,13]]]],[23635,23636,23639,24466,24468,24471,24472,24476,28602,29071,29502,29676,29684]]],["ordinances",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28602]]],["tradition",[10,10,[[39,3,3,0,3,[[943,3,3,0,3]]],[40,5,5,3,8,[[963,5,5,3,8]]],[50,1,1,8,9,[[1108,1,1,8,9]]],[52,1,1,9,10,[[1118,1,1,9,10]]]],[23635,23636,23639,24466,24468,24471,24472,24476,29502,29684]]],["traditions",[2,2,[[47,1,1,0,1,[[1091,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]]],[29071,29676]]]]},{"k":"G3863","v":[["*",[4,4,[[44,3,3,0,3,[[1055,1,1,0,1],[1056,2,2,1,3]]],[45,1,1,3,4,[[1071,1,1,3,4]]]],[28207,28220,28223,28589]]],["+",[3,3,[[44,2,2,0,2,[[1055,1,1,0,1],[1056,1,1,1,2]]],[45,1,1,2,3,[[1071,1,1,2,3]]]],[28207,28220,28589]]],["emulation",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28223]]]]},{"k":"G3864","v":[["coast",[1,1,[[39,1,1,0,1,[[932,1,1,0,1]]]],[23222]]]]},{"k":"G3865","v":[["neglected",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27102]]]]},{"k":"G3866","v":[["+",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29821]]]]},{"k":"G3867","v":[["*",[2,2,[[43,2,2,0,2,[[1044,2,2,0,2]]]],[27864,27877]]],["admonished",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27864]]],["exhort",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27877]]]]},{"k":"G3868","v":[["*",[11,9,[[41,3,2,0,2,[[986,3,2,0,2]]],[43,1,1,2,3,[[1042,1,1,2,3]]],[53,2,2,3,5,[[1122,1,1,3,4],[1123,1,1,4,5]]],[54,1,1,5,6,[[1126,1,1,5,6]]],[55,1,1,6,7,[[1131,1,1,6,7]]],[57,3,2,7,9,[[1144,3,2,7,9]]]],[25571,25572,27807,29754,29774,29850,29933,30231,30237]]],["avoid",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29850]]],["excuse",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25571]]],["excused",[2,2,[[41,2,2,0,2,[[986,2,2,0,2]]]],[25571,25572]]],["intreated",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30231]]],["refuse",[4,4,[[43,1,1,0,1,[[1042,1,1,0,1]]],[53,2,2,1,3,[[1122,1,1,1,2],[1123,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]]],[27807,29754,29774,30237]]],["refused",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30237]]],["reject",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29933]]]]},{"k":"G3869","v":[["sat",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25402]]]]},{"k":"G3870","v":[["*",[108,104,[[39,9,9,0,9,[[930,1,1,0,1],[933,1,1,1,2],[936,3,3,2,5],[942,1,1,5,6],[946,2,2,6,8],[954,1,1,8,9]]],[40,9,9,9,18,[[957,1,1,9,10],[961,5,5,10,15],[962,1,1,15,16],[963,1,1,16,17],[964,1,1,17,18]]],[41,7,7,18,25,[[975,1,1,18,19],[979,1,1,19,20],[980,3,3,20,23],[987,1,1,23,24],[988,1,1,24,25]]],[43,21,21,25,46,[[1019,1,1,25,26],[1025,1,1,26,27],[1026,1,1,27,28],[1028,1,1,28,29],[1030,1,1,29,30],[1031,1,1,30,31],[1032,1,1,31,32],[1033,4,4,32,36],[1036,1,1,36,37],[1037,2,2,37,39],[1038,1,1,39,40],[1041,1,1,40,41],[1042,1,1,41,42],[1044,2,2,42,44],[1045,2,2,44,46]]],[44,4,4,46,50,[[1057,2,2,46,48],[1060,1,1,48,49],[1061,1,1,49,50]]],[45,6,6,50,56,[[1062,1,1,50,51],[1065,2,2,51,53],[1075,1,1,53,54],[1077,2,2,54,56]]],[46,18,15,56,71,[[1078,4,2,56,58],[1079,2,2,58,60],[1082,1,1,60,61],[1083,1,1,61,62],[1084,4,3,62,65],[1085,1,1,65,66],[1086,1,1,66,67],[1087,1,1,67,68],[1089,2,2,68,70],[1090,1,1,70,71]]],[48,2,2,71,73,[[1100,1,1,71,72],[1102,1,1,72,73]]],[49,2,1,73,74,[[1106,2,1,73,74]]],[50,2,2,74,76,[[1108,1,1,74,75],[1110,1,1,75,76]]],[51,8,8,76,84,[[1112,1,1,76,77],[1113,2,2,77,79],[1114,3,3,79,82],[1115,2,2,82,84]]],[52,2,2,84,86,[[1117,1,1,84,85],[1118,1,1,85,86]]],[53,4,4,86,90,[[1119,1,1,86,87],[1120,1,1,87,88],[1123,1,1,88,89],[1124,1,1,89,90]]],[54,1,1,90,91,[[1128,1,1,90,91]]],[55,3,3,91,94,[[1129,1,1,91,92],[1130,2,2,92,94]]],[56,2,2,94,96,[[1132,2,2,94,96]]],[57,4,4,96,100,[[1135,1,1,96,97],[1142,1,1,97,98],[1145,2,2,98,100]]],[59,3,3,100,103,[[1152,1,1,100,101],[1155,2,2,101,103]]],[64,1,1,103,104,[[1166,1,1,103,104]]]],[23187,23238,23350,23376,23379,23633,23756,23759,24107,24255,24374,24376,24381,24382,24387,24463,24495,24522,25043,25199,25276,25277,25286,25616,25645,26989,27207,27254,27330,27404,27436,27474,27492,27498,27522,27523,27616,27628,27638,27676,27773,27798,27888,27889,27913,27919,28246,28253,28333,28353,28373,28446,28449,28709,28788,28791,28804,28806,28831,28832,28897,28899,28922,28923,28929,28938,28961,28972,29030,29040,29054,29273,29359,29444,29496,29550,29581,29592,29597,29604,29613,29621,29632,29635,29678,29690,29699,29717,29764,29790,29872,29901,29914,29923,29947,29948,30008,30158,30260,30263,30410,30466,30477,30675]]],["+",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29581]]],["Comfort",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29678]]],["beseech",[20,19,[[40,1,1,0,1,[[963,1,1,0,1]]],[44,3,3,1,4,[[1057,1,1,1,2],[1060,1,1,2,3],[1061,1,1,3,4]]],[45,3,3,4,7,[[1062,1,1,4,5],[1065,1,1,5,6],[1077,1,1,6,7]]],[46,4,4,7,11,[[1079,1,1,7,8],[1082,1,1,8,9],[1083,1,1,9,10],[1087,1,1,10,11]]],[48,1,1,11,12,[[1100,1,1,11,12]]],[49,2,1,12,13,[[1106,2,1,12,13]]],[51,1,1,13,14,[[1114,1,1,13,14]]],[56,2,2,14,16,[[1132,2,2,14,16]]],[57,2,2,16,18,[[1145,2,2,16,18]]],[59,1,1,18,19,[[1152,1,1,18,19]]]],[24495,28246,28333,28353,28373,28449,28791,28832,28897,28899,28972,29273,29444,29613,29947,29948,30260,30263,30410]]],["beseeching",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23350,24255]]],["besought",[21,21,[[39,4,4,0,4,[[936,2,2,0,2],[942,1,1,2,3],[946,1,1,3,4]]],[40,5,5,4,9,[[961,3,3,4,7],[962,1,1,7,8],[964,1,1,8,9]]],[41,4,4,9,13,[[979,1,1,9,10],[980,3,3,10,13]]],[43,6,6,13,19,[[1030,1,1,13,14],[1033,2,2,14,16],[1038,1,1,16,17],[1042,1,1,17,18],[1044,1,1,18,19]]],[46,1,1,19,20,[[1089,1,1,19,20]]],[53,1,1,20,21,[[1119,1,1,20,21]]]],[23376,23379,23633,23756,24374,24376,24387,24463,24522,25199,25276,25277,25286,27404,27498,27522,27676,27798,27888,29030,29699]]],["called",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27919]]],["comfort",[8,8,[[46,3,3,0,3,[[1078,1,1,0,1],[1079,1,1,1,2],[1090,1,1,2,3]]],[48,1,1,3,4,[[1102,1,1,3,4]]],[50,1,1,4,5,[[1110,1,1,4,5]]],[51,3,3,5,8,[[1113,1,1,5,6],[1114,1,1,6,7],[1115,1,1,7,8]]]],[28804,28831,29054,29359,29550,29592,29621,29632]]],["comforted",[13,13,[[39,2,2,0,2,[[930,1,1,0,1],[933,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[43,2,2,3,5,[[1033,1,1,3,4],[1037,1,1,4,5]]],[45,1,1,5,6,[[1075,1,1,5,6]]],[46,5,5,6,11,[[1078,2,2,6,8],[1084,3,3,8,11]]],[50,1,1,11,12,[[1108,1,1,11,12]]],[51,1,1,12,13,[[1113,1,1,12,13]]]],[23187,23238,25645,27523,27638,28709,28804,28806,28922,28923,28929,29496,29597]]],["comforteth",[2,2,[[46,2,2,0,2,[[1078,1,1,0,1],[1084,1,1,1,2]]]],[28804,28922]]],["desired",[5,5,[[43,2,2,0,2,[[1025,1,1,0,1],[1045,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[46,2,2,3,5,[[1085,1,1,3,4],[1089,1,1,4,5]]]],[27207,27913,28788,28938,29040]]],["desiredst",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23759]]],["desiring",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1036,1,1,1,2]]]],[27254,27616]]],["exhort",[14,14,[[43,1,1,0,1,[[1019,1,1,0,1]]],[46,1,1,1,2,[[1086,1,1,1,2]]],[51,2,2,2,4,[[1114,1,1,2,3],[1115,1,1,3,4]]],[52,1,1,4,5,[[1118,1,1,4,5]]],[53,2,2,5,7,[[1120,1,1,5,6],[1124,1,1,6,7]]],[54,1,1,7,8,[[1128,1,1,7,8]]],[55,3,3,8,11,[[1129,1,1,8,9],[1130,2,2,9,11]]],[57,1,1,11,12,[[1135,1,1,11,12]]],[59,1,1,12,13,[[1155,1,1,12,13]]],[64,1,1,13,14,[[1166,1,1,13,14]]]],[26989,28961,29604,29635,29690,29717,29790,29872,29901,29914,29923,30008,30466,30675]]],["exhortation",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25043]]],["exhorted",[2,2,[[43,2,2,0,2,[[1028,1,1,0,1],[1032,1,1,1,2]]]],[27330,27474]]],["exhorteth",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28253]]],["exhorting",[3,3,[[43,1,1,0,1,[[1031,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]],[59,1,1,2,3,[[1155,1,1,2,3]]]],[27436,30158,30477]]],["given",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27628]]],["intreat",[2,2,[[45,1,1,0,1,[[1065,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[28446,29764]]],["intreated",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25616]]],["pray",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[43,2,2,2,4,[[1041,1,1,2,3],[1044,1,1,3,4]]]],[24107,24381,27773,27889]]],["prayed",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[43,1,1,1,2,[[1033,1,1,1,2]]]],[24382,27492]]]]},{"k":"G3871","v":[["hid",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25346]]]]},{"k":"G3872","v":[["*",[2,2,[[53,1,1,0,1,[[1124,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]]],[29808,29823]]],["thee",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29823]]],["trust",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29808]]]]},{"k":"G3873","v":[["present",[2,2,[[44,2,2,0,2,[[1052,2,2,0,2]]]],[28109,28112]]]]},{"k":"G3874","v":[["*",[29,28,[[41,2,2,0,2,[[974,1,1,0,1],[978,1,1,1,2]]],[43,4,4,2,6,[[1021,1,1,2,3],[1026,1,1,3,4],[1030,1,1,4,5],[1032,1,1,5,6]]],[44,3,3,6,9,[[1057,1,1,6,7],[1060,2,2,7,9]]],[45,1,1,9,10,[[1075,1,1,9,10]]],[46,11,10,10,20,[[1078,6,5,10,15],[1084,3,3,15,18],[1085,2,2,18,20]]],[49,1,1,20,21,[[1104,1,1,20,21]]],[51,1,1,21,22,[[1112,1,1,21,22]]],[52,1,1,22,23,[[1117,1,1,22,23]]],[53,1,1,23,24,[[1122,1,1,23,24]]],[56,1,1,24,25,[[1132,1,1,24,25]]],[57,3,3,25,28,[[1138,1,1,25,26],[1144,1,1,26,27],[1145,1,1,27,28]]]],[24998,25170,27058,27247,27377,27473,28253,28307,28308,28681,28803,28804,28805,28806,28807,28920,28923,28929,28936,28949,29392,29573,29677,29760,29945,30062,30217,30263]]],["a",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27058]]],["comfort",[6,6,[[43,1,1,0,1,[[1026,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[46,4,4,2,6,[[1078,2,2,2,4],[1084,2,2,4,6]]]],[27247,28307,28803,28804,28920,28929]]],["consolation",[13,12,[[41,2,2,0,2,[[974,1,1,0,1],[978,1,1,1,2]]],[43,1,1,2,3,[[1032,1,1,2,3]]],[44,1,1,3,4,[[1060,1,1,3,4]]],[46,5,4,4,8,[[1078,4,3,4,7],[1084,1,1,7,8]]],[49,1,1,8,9,[[1104,1,1,8,9]]],[52,1,1,9,10,[[1117,1,1,9,10]]],[56,1,1,10,11,[[1132,1,1,10,11]]],[57,1,1,11,12,[[1138,1,1,11,12]]]],[24998,25170,27473,28308,28805,28806,28807,28923,29392,29677,29945,30062]]],["exhortation",[8,8,[[43,1,1,0,1,[[1030,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]],[51,1,1,4,5,[[1112,1,1,4,5]]],[53,1,1,5,6,[[1122,1,1,5,6]]],[57,2,2,6,8,[[1144,1,1,6,7],[1145,1,1,7,8]]]],[27377,28253,28681,28949,29573,29760,30217,30263]]],["intreaty",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28936]]]]},{"k":"G3875","v":[["*",[5,5,[[42,4,4,0,4,[[1010,2,2,0,2],[1011,1,1,2,3],[1012,1,1,3,4]]],[61,1,1,4,5,[[1160,1,1,4,5]]]],[26684,26694,26725,26733,30551]]],["Comforter",[4,4,[[42,4,4,0,4,[[1010,2,2,0,2],[1011,1,1,2,3],[1012,1,1,3,4]]]],[26684,26694,26725,26733]]],["advocate",[1,1,[[61,1,1,0,1,[[1160,1,1,0,1]]]],[30551]]]]},{"k":"G3876","v":[["disobedience",[3,3,[[44,1,1,0,1,[[1050,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]],[57,1,1,2,3,[[1134,1,1,2,3]]]],[28066,28977,29979]]]]},{"k":"G3877","v":[["*",[4,4,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]],[54,1,1,3,4,[[1127,1,1,3,4]]]],[24890,24896,29753,29863]]],["attained",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29753]]],["follow",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24890]]],["known",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29863]]],["understanding",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24896]]]]},{"k":"G3878","v":[["hear",[2,1,[[39,2,1,0,1,[[946,2,1,0,1]]]],[23744]]]]},{"k":"G3879","v":[["*",[5,5,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,2,2,1,3,[[1016,2,2,1,3]]],[58,1,1,3,4,[[1146,1,1,3,4]]],[59,1,1,4,5,[[1151,1,1,4,5]]]],[26003,26872,26878,30291,30386]]],["down",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,2,2,1,3,[[1016,2,2,1,3]]]],[26003,26872,26878]]],["look",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30386]]],["looketh",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30291]]]]},{"k":"G3880","v":[["*",[50,50,[[39,16,16,0,16,[[929,2,2,0,2],[930,4,4,2,6],[932,2,2,6,8],[940,1,1,8,9],[945,1,1,9,10],[946,1,1,10,11],[948,1,1,11,12],[952,2,2,12,14],[954,1,1,14,15],[955,1,1,15,16]]],[40,6,6,16,22,[[960,1,1,16,17],[961,1,1,17,18],[963,1,1,18,19],[965,1,1,19,20],[966,1,1,20,21],[970,1,1,21,22]]],[41,7,7,22,29,[[981,2,2,22,24],[983,1,1,24,25],[989,3,3,25,28],[990,1,1,28,29]]],[42,3,3,29,32,[[997,1,1,29,30],[1010,1,1,30,31],[1015,1,1,31,32]]],[43,6,6,32,38,[[1032,1,1,32,33],[1033,1,1,33,34],[1038,3,3,34,37],[1040,1,1,37,38]]],[45,3,3,38,41,[[1072,1,1,38,39],[1076,2,2,39,41]]],[47,2,2,41,43,[[1091,2,2,41,43]]],[49,1,1,43,44,[[1106,1,1,43,44]]],[50,2,2,44,46,[[1108,1,1,44,45],[1110,1,1,45,46]]],[51,2,2,46,48,[[1112,1,1,46,47],[1114,1,1,47,48]]],[52,1,1,48,49,[[1118,1,1,48,49]]],[57,1,1,49,50,[[1144,1,1,49,50]]]],[23164,23168,23182,23183,23189,23190,23214,23217,23534,23701,23743,23809,23997,23998,24091,24156,24359,24404,24467,24540,24620,24787,25311,25329,25431,25685,25686,25687,25719,26055,26671,26841,27481,27516,27688,27690,27696,27752,28623,28719,28721,29066,29069,29451,29500,29559,29583,29604,29684,30240]]],["+",[2,2,[[39,2,2,0,2,[[932,2,2,0,2]]]],[23214,23217]]],["receive",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26671]]],["received",[13,13,[[40,1,1,0,1,[[963,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]],[45,3,3,2,5,[[1072,1,1,2,3],[1076,2,2,3,5]]],[47,2,2,5,7,[[1091,2,2,5,7]]],[49,1,1,7,8,[[1106,1,1,7,8]]],[50,2,2,8,10,[[1108,1,1,8,9],[1110,1,1,9,10]]],[51,2,2,10,12,[[1112,1,1,10,11],[1114,1,1,11,12]]],[52,1,1,12,13,[[1118,1,1,12,13]]]],[24467,26055,28623,28719,28721,29066,29069,29451,29500,29559,29583,29604,29684]]],["receiving",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30240]]],["take",[5,5,[[39,4,4,0,4,[[929,1,1,0,1],[930,2,2,1,3],[946,1,1,3,4]]],[43,1,1,4,5,[[1038,1,1,4,5]]]],[23164,23182,23189,23743,27688]]],["taken",[5,5,[[39,2,2,0,2,[[952,2,2,0,2]]],[41,3,3,2,5,[[989,3,3,2,5]]]],[23997,23998,25685,25686,25687]]],["taketh",[6,6,[[39,2,2,0,2,[[940,1,1,0,1],[945,1,1,1,2]]],[40,3,3,2,5,[[961,1,1,2,3],[965,1,1,3,4],[970,1,1,4,5]]],[41,1,1,5,6,[[983,1,1,5,6]]]],[23534,23701,24404,24540,24787,25431]]],["took",[16,16,[[39,5,5,0,5,[[929,1,1,0,1],[930,2,2,1,3],[948,1,1,3,4],[955,1,1,4,5]]],[40,2,2,5,7,[[960,1,1,5,6],[966,1,1,6,7]]],[41,3,3,7,10,[[981,2,2,7,9],[990,1,1,9,10]]],[42,1,1,10,11,[[1015,1,1,10,11]]],[43,5,5,11,16,[[1032,1,1,11,12],[1033,1,1,12,13],[1038,2,2,13,15],[1040,1,1,15,16]]]],[23168,23183,23190,23809,24156,24359,24620,25311,25329,25719,26841,27481,27516,27690,27696,27752]]],["with",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24091]]]]},{"k":"G3881","v":[["*",[2,2,[[43,2,2,0,2,[[1044,2,2,0,2]]]],[27863,27868]]],["by",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27868]]],["passing",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27863]]]]},{"k":"G3882","v":[["coast",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25163]]]]},{"k":"G3883","v":[["variableness",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30283]]]]},{"k":"G3884","v":[["*",[2,2,[[50,1,1,0,1,[[1108,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[29498,30288]]],["beguile",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29498]]],["deceiving",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30288]]]]},{"k":"G3885","v":[["palsy",[10,9,[[39,5,4,0,4,[[932,1,1,0,1],[936,1,1,1,2],[937,3,2,2,4]]],[40,5,5,4,9,[[958,5,5,4,9]]]],[23233,23351,23381,23385,24263,24264,24265,24269,24270]]]]},{"k":"G3886","v":[["*",[5,5,[[41,2,2,0,2,[[977,2,2,0,2]]],[43,2,2,2,4,[[1025,1,1,2,3],[1026,1,1,3,4]]],[57,1,1,4,5,[[1144,1,1,4,5]]]],[25125,25131,27183,27249,30224]]],["feeble",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30224]]],["palsies",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27183]]],["palsy",[3,3,[[41,2,2,0,2,[[977,2,2,0,2]]],[43,1,1,2,3,[[1026,1,1,2,3]]]],[25125,25131,27249]]]]},{"k":"G3887","v":[["*",[3,3,[[45,1,1,0,1,[[1077,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[28782,30087,30291]]],["abide",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28782]]],["continue",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30087]]],["continueth",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30291]]]]},{"k":"G3888","v":[["*",[4,4,[[42,2,2,0,2,[[1007,2,2,0,2]]],[51,2,2,2,4,[[1112,1,1,2,3],[1115,1,1,3,4]]]],[26542,26554,29581,29635]]],["comfort",[2,2,[[42,1,1,0,1,[[1007,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]]],[26542,29635]]],["comforted",[2,2,[[42,1,1,0,1,[[1007,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]]],[26554,29581]]]]},{"k":"G3889","v":[["comfort",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28681]]]]},{"k":"G3890","v":[["comfort",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29392]]]]},{"k":"G3891","v":[["law",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27737]]]]},{"k":"G3892","v":[["iniquity",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30516]]]]},{"k":"G3893","v":[["provoke",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30011]]]]},{"k":"G3894","v":[["provocation",[2,2,[[57,2,2,0,2,[[1135,2,2,0,2]]]],[30003,30010]]]]},{"k":"G3895","v":[["away",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30050]]]]},{"k":"G3896","v":[["by",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27642]]]]},{"k":"G3897","v":[["unto",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29418]]]]},{"k":"G3898","v":[["likewise",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29991]]]]},{"k":"G3899","v":[["*",[5,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,4,4,1,5,[[958,1,1,1,2],[965,1,1,2,3],[967,1,1,3,4],[971,1,1,4,5]]]],[24168,24283,24568,24660,24855]]],["by",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,2,2,1,3,[[967,1,1,1,2],[971,1,1,2,3]]]],[24168,24660,24855]]],["passed",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24568]]],["went",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24283]]]]},{"k":"G3900","v":[["*",[23,20,[[39,4,3,0,3,[[934,3,2,0,2],[946,1,1,2,3]]],[40,2,2,3,5,[[967,2,2,3,5]]],[44,9,8,5,13,[[1049,1,1,5,6],[1050,6,5,6,11],[1056,2,2,11,13]]],[46,1,1,13,14,[[1082,1,1,13,14]]],[47,1,1,14,15,[[1096,1,1,14,15]]],[48,3,3,15,18,[[1097,1,1,15,16],[1098,2,2,16,18]]],[50,2,1,18,19,[[1108,2,1,18,19]]],[58,1,1,19,20,[[1150,1,1,19,20]]]],[23296,23297,23762,24665,24666,28047,28062,28063,28064,28065,28067,28220,28221,28896,29189,29213,29230,29234,29507,30370]]],["fall",[2,2,[[44,2,2,0,2,[[1056,2,2,0,2]]]],[28220,28221]]],["fault",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29189]]],["faults",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30370]]],["offence",[5,4,[[44,5,4,0,4,[[1050,5,4,0,4]]]],[28062,28064,28065,28067]]],["offences",[2,2,[[44,2,2,0,2,[[1049,1,1,0,1],[1050,1,1,1,2]]]],[28047,28063]]],["sins",[3,3,[[48,2,2,0,2,[[1097,1,1,0,1],[1098,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]]],[29213,29234,29507]]],["trespasses",[9,8,[[39,4,3,0,3,[[934,3,2,0,2],[946,1,1,2,3]]],[40,2,2,3,5,[[967,2,2,3,5]]],[46,1,1,5,6,[[1082,1,1,5,6]]],[48,1,1,6,7,[[1098,1,1,6,7]]],[50,1,1,7,8,[[1108,1,1,7,8]]]],[23296,23297,23762,24665,24666,28896,29230,29507]]]]},{"k":"G3901","v":[["slip",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29978]]]]},{"k":"G3902","v":[["sign",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27910]]]]},{"k":"G3903","v":[["*",[4,4,[[43,1,1,0,1,[[1027,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[46,2,2,2,4,[[1086,2,2,2,4]]]],[27269,28686,28958,28959]]],["prepare",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28686]]],["ready",[3,3,[[43,1,1,0,1,[[1027,1,1,0,1]]],[46,2,2,1,3,[[1086,2,2,1,3]]]],[27269,28958,28959]]]]},{"k":"G3904","v":[["preparation",[6,6,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,3,3,3,6,[[1015,3,3,3,6]]]],[24191,24868,25989,26839,26856,26867]]]]},{"k":"G3905","v":[["continued",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27633]]]]},{"k":"G3906","v":[["*",[6,6,[[40,1,1,0,1,[[959,1,1,0,1]]],[41,3,3,1,4,[[978,1,1,1,2],[986,1,1,2,3],[992,1,1,3,4]]],[43,1,1,4,5,[[1026,1,1,4,5]]],[47,1,1,5,6,[[1094,1,1,5,6]]]],[24290,25153,25554,25799,27240,29141]]],["+",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25554]]],["observe",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29141]]],["watched",[4,4,[[40,1,1,0,1,[[959,1,1,0,1]]],[41,2,2,1,3,[[978,1,1,1,2],[992,1,1,2,3]]],[43,1,1,3,4,[[1026,1,1,3,4]]]],[24290,25153,25799,27240]]]]},{"k":"G3907","v":[["observation",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25671]]]]},{"k":"G3908","v":[["*",[19,18,[[39,2,2,0,2,[[941,2,2,0,2]]],[40,4,3,2,5,[[962,1,1,2,3],[964,3,2,3,5]]],[41,5,5,5,10,[[981,1,1,5,6],[982,1,1,6,7],[983,1,1,7,8],[984,1,1,8,9],[995,1,1,9,10]]],[43,4,4,10,14,[[1031,1,1,10,11],[1033,1,1,11,12],[1034,1,1,12,13],[1037,1,1,13,14]]],[45,1,1,14,15,[[1071,1,1,14,15]]],[53,1,1,15,16,[[1119,1,1,15,16]]],[54,1,1,16,17,[[1126,1,1,16,17]]],[59,1,1,17,18,[[1154,1,1,17,18]]]],[23563,23570,24448,24506,24507,25317,25371,25411,25507,25981,27437,27517,27526,27658,28594,29714,29829,30465]]],["+",[2,2,[[40,1,1,0,1,[[964,1,1,0,1]]],[43,1,1,1,2,[[1033,1,1,1,2]]]],[24507,27517]]],["alleging",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27526]]],["before",[7,6,[[40,3,2,0,2,[[962,1,1,0,1],[964,2,1,1,2]]],[41,3,3,2,5,[[981,1,1,2,3],[982,1,1,3,4],[983,1,1,4,5]]],[45,1,1,5,6,[[1071,1,1,5,6]]]],[24448,24506,25317,25371,25411,28594]]],["commend",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,1,1,1,2,[[1037,1,1,1,2]]]],[25981,27658]]],["commended",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27437]]],["commit",[2,2,[[53,1,1,0,1,[[1119,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[29714,29829]]],["committed",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25507]]],["forth",[2,2,[[39,2,2,0,2,[[941,2,2,0,2]]]],[23563,23570]]],["of",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30465]]]]},{"k":"G3909","v":[["with",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27540]]]]},{"k":"G3910","v":[["moment",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28876]]]]},{"k":"G3911","v":[["*",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24790,25906]]],["away",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24790]]],["remove",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25906]]]]},{"k":"G3912","v":[["fool",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29012]]]]},{"k":"G3913","v":[["madness",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30516]]]]},{"k":"G3914","v":[["*",[4,4,[[43,2,2,0,2,[[1044,1,1,0,1],[1045,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[55,1,1,3,4,[[1131,1,1,3,4]]]],[27867,27910,28782,29935]]],["winter",[3,3,[[43,1,1,0,1,[[1044,1,1,0,1]]],[45,1,1,1,2,[[1077,1,1,1,2]]],[55,1,1,2,3,[[1131,1,1,2,3]]]],[27867,28782,29935]]],["wintered",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27910]]]]},{"k":"G3915","v":[["in",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27867]]]]},{"k":"G3916","v":[["*",[19,19,[[39,2,2,0,2,[[949,2,2,0,2]]],[41,10,10,2,12,[[973,1,1,2,3],[976,1,1,3,4],[977,1,1,4,5],[980,3,3,5,8],[985,1,1,8,9],[990,1,1,9,10],[991,1,1,10,11],[994,1,1,11,12]]],[43,7,7,12,19,[[1020,1,1,12,13],[1022,1,1,13,14],[1026,1,1,14,15],[1029,1,1,15,16],[1030,1,1,16,17],[1033,2,2,17,19]]]],[23845,23846,24957,25102,25132,25289,25292,25300,25531,25731,25742,25924,27003,27069,27234,27360,27373,27509,27516]]],["forthwith",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27234]]],["immediately",[13,13,[[41,9,9,0,9,[[973,1,1,0,1],[976,1,1,1,2],[977,1,1,2,3],[980,2,2,3,5],[985,1,1,5,6],[990,1,1,6,7],[991,1,1,7,8],[994,1,1,8,9]]],[43,4,4,9,13,[[1020,1,1,9,10],[1029,1,1,10,11],[1030,1,1,11,12],[1033,1,1,12,13]]]],[24957,25102,25132,25289,25292,25531,25731,25742,25924,27003,27360,27373,27509]]],["presently",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23845]]],["soon",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23846]]],["straightway",[3,3,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,2,2,1,3,[[1022,1,1,1,2],[1033,1,1,2,3]]]],[25300,27069,27516]]]]},{"k":"G3917","v":[["leopard",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30910]]]]},{"k":"G3918","v":[["*",[23,22,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[42,2,2,2,4,[[1003,1,1,2,3],[1007,1,1,3,4]]],[43,5,5,4,9,[[1027,2,2,4,6],[1029,1,1,6,7],[1034,1,1,7,8],[1041,1,1,8,9]]],[45,2,1,9,10,[[1066,2,1,9,10]]],[46,5,5,10,15,[[1087,2,2,10,12],[1088,1,1,12,13],[1090,2,2,13,15]]],[47,2,2,15,17,[[1094,2,2,15,17]]],[50,1,1,17,18,[[1107,1,1,17,18]]],[57,2,2,18,20,[[1144,1,1,18,19],[1145,1,1,19,20]]],[60,2,2,20,22,[[1156,2,2,20,22]]]],[24104,25519,26334,26551,27280,27292,27357,27529,27788,28457,28973,28982,28998,29045,29053,29149,29151,29471,30223,30246,30488,30491]]],["+",[2,2,[[43,1,1,0,1,[[1027,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[27292,30488]]],["Then",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24104]]],["came",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27357]]],["come",[5,5,[[42,2,2,0,2,[[1003,1,1,0,1],[1007,1,1,1,2]]],[43,2,2,2,4,[[1027,1,1,2,3],[1034,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]]],[26334,26551,27280,27529,29471]]],["have",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30246]]],["here",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27788]]],["present",[12,11,[[41,1,1,0,1,[[985,1,1,0,1]]],[45,2,1,1,2,[[1066,2,1,1,2]]],[46,5,5,2,7,[[1087,2,2,2,4],[1088,1,1,4,5],[1090,2,2,5,7]]],[47,2,2,7,9,[[1094,2,2,7,9]]],[57,1,1,9,10,[[1144,1,1,9,10]]],[60,1,1,10,11,[[1156,1,1,10,11]]]],[25519,28457,28973,28982,28998,29045,29053,29149,29151,30223,30491]]]]},{"k":"G3919","v":[["in",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30501]]]]},{"k":"G3920","v":[["in",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29085]]]]},{"k":"G3921","v":[["unawares",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30676]]]]},{"k":"G3922","v":[["*",[2,2,[[44,1,1,0,1,[[1050,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]]],[28067,29085]]],["entered",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28067]]],["privily",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29085]]]]},{"k":"G3923","v":[["giving",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30484]]]]},{"k":"G3924","v":[["*",[3,3,[[39,1,1,0,1,[[933,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]]],[23266,27852,29017]]],["except",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27852]]],["for",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23266]]],["without",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29017]]]]},{"k":"G3925","v":[["*",[10,10,[[43,6,6,0,6,[[1038,2,2,0,2],[1039,1,1,2,3],[1040,3,3,3,6]]],[57,3,3,6,9,[[1143,1,1,6,7],[1145,2,2,7,9]]],[65,1,1,9,10,[[1186,1,1,9,10]]]],[27698,27701,27728,27744,27750,27766,30206,30252,30254,31047]]],["+",[1,1,[[65,1,1,0,1,[[1186,1,1,0,1]]]],[31047]]],["armies",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30206]]],["camp",[2,2,[[57,2,2,0,2,[[1145,2,2,0,2]]]],[30252,30254]]],["castle",[6,6,[[43,6,6,0,6,[[1038,2,2,0,2],[1039,1,1,2,3],[1040,3,3,3,6]]]],[27698,27701,27728,27744,27750,27766]]]]},{"k":"G3926","v":[["trouble",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27461]]]]},{"k":"G3927","v":[["*",[3,3,[[57,1,1,0,1,[[1143,1,1,0,1]]],[59,2,2,1,3,[[1151,1,1,1,2],[1152,1,1,2,3]]]],[30185,30375,30410]]],["pilgrims",[2,2,[[57,1,1,0,1,[[1143,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[30185,30410]]],["strangers",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30375]]]]},{"k":"G3928","v":[["*",[31,27,[[39,9,7,0,7,[[933,2,1,0,1],[936,1,1,1,2],[942,1,1,2,3],[952,3,2,3,5],[954,2,2,5,7]]],[40,5,4,7,11,[[962,1,1,7,8],[969,3,2,8,10],[970,1,1,10,11]]],[41,9,8,11,19,[[983,1,1,11,12],[984,1,1,12,13],[987,1,1,13,14],[988,1,1,14,15],[989,1,1,15,16],[990,1,1,16,17],[993,3,2,17,19]]],[43,3,3,19,22,[[1033,1,1,19,20],[1041,1,1,20,21],[1044,1,1,21,22]]],[46,1,1,22,23,[[1082,1,1,22,23]]],[58,1,1,23,24,[[1146,1,1,23,24]]],[59,1,1,24,25,[[1154,1,1,24,25]]],[60,1,1,25,26,[[1158,1,1,25,26]]],[65,1,1,26,27,[[1187,1,1,26,27]]]],[23252,23373,23612,23991,23992,24093,24096,24455,24747,24748,24789,25447,25496,25617,25637,25658,25725,25858,25859,27491,27776,27864,28894,30276,30449,30532,31054]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27864]]],["Go",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25658]]],["away",[12,9,[[39,3,2,0,2,[[952,2,1,0,1],[954,1,1,1,2]]],[40,2,1,2,3,[[969,2,1,2,3]]],[41,3,2,3,5,[[993,3,2,3,5]]],[46,1,1,5,6,[[1082,1,1,5,6]]],[58,1,1,6,7,[[1146,1,1,6,7]]],[60,1,1,7,8,[[1158,1,1,7,8]]],[65,1,1,8,9,[[1187,1,1,8,9]]]],[23992,24096,24748,25858,25859,28894,30276,30532,31054]]],["by",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]],[43,1,1,2,3,[[1033,1,1,2,3]]]],[24455,25725,27491]]],["came",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27776]]],["forth",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25496]]],["over",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25447]]],["pass",[8,7,[[39,5,4,0,4,[[933,2,1,0,1],[936,1,1,1,2],[952,1,1,2,3],[954,1,1,3,4]]],[40,2,2,4,6,[[969,1,1,4,5],[970,1,1,5,6]]],[41,1,1,6,7,[[988,1,1,6,7]]]],[23252,23373,23991,24093,24747,24789,25637]]],["past",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[23612,30449]]],["transgressed",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25617]]]]},{"k":"G3929","v":[["remission",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28016]]]]},{"k":"G3930","v":[["*",[16,16,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,4,4,2,6,[[978,1,1,2,3],[979,1,1,3,4],[983,1,1,4,5],[990,1,1,5,6]]],[43,5,5,6,11,[[1033,1,1,6,7],[1034,1,1,7,8],[1036,1,1,8,9],[1039,1,1,9,10],[1045,1,1,10,11]]],[47,1,1,11,12,[[1096,1,1,11,12]]],[50,1,1,12,13,[[1110,1,1,12,13]]],[53,2,2,13,15,[[1119,1,1,13,14],[1124,1,1,14,15]]],[55,1,1,15,16,[[1130,1,1,15,16]]]],[24064,24760,25175,25199,25412,25693,27499,27554,27609,27706,27901,29205,29543,29700,29805,29915]]],["+",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,2,2,2,4,[[983,1,1,2,3],[990,1,1,3,4]]],[47,1,1,4,5,[[1096,1,1,4,5]]]],[24064,24760,25412,25693,29205]]],["brought",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1036,1,1,1,2]]]],[27499,27609]]],["do",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25199]]],["give",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29543]]],["given",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27554]]],["giveth",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29805]]],["kept",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27706]]],["minister",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29700]]],["offer",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25175]]],["shewed",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27901]]],["shewing",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29915]]]]},{"k":"G3931","v":[["comfort",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29553]]]]},{"k":"G3932","v":[["virginity",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25009]]]]},{"k":"G3933","v":[["*",[14,13,[[39,4,4,0,4,[[929,1,1,0,1],[953,3,3,1,4]]],[41,2,1,4,5,[[973,2,1,4,5]]],[43,1,1,5,6,[[1038,1,1,5,6]]],[45,5,5,6,11,[[1068,5,5,6,11]]],[46,1,1,11,12,[[1088,1,1,11,12]]],[65,1,1,12,13,[[1180,1,1,12,13]]]],[23167,24009,24015,24019,24920,27673,28512,28515,28521,28523,28524,28991,30930]]],["virgin",[7,7,[[39,1,1,0,1,[[929,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[45,4,4,2,6,[[1068,4,4,2,6]]],[46,1,1,6,7,[[1088,1,1,6,7]]]],[23167,24920,28515,28521,28523,28524,28991]]],["virgin's",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24920]]],["virgins",[6,6,[[39,3,3,0,3,[[953,3,3,0,3]]],[43,1,1,3,4,[[1038,1,1,3,4]]],[45,1,1,4,5,[[1068,1,1,4,5]]],[65,1,1,5,6,[[1180,1,1,5,6]]]],[24009,24015,24019,27673,28512,30930]]]]},{"k":"G3934","v":[["Parthians",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26958]]]]},{"k":"G3935","v":[["down",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30224]]]]},{"k":"G3936","v":[["*",[41,39,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,6,6,1,7,[[960,1,1,1,2],[970,3,3,2,5],[971,2,2,5,7]]],[41,3,3,7,10,[[973,1,1,7,8],[974,1,1,8,9],[991,1,1,9,10]]],[42,2,2,10,12,[[1014,1,1,10,11],[1015,1,1,11,12]]],[43,13,13,12,25,[[1018,2,2,12,14],[1021,2,2,14,16],[1026,2,2,16,18],[1040,4,4,18,22],[1041,1,1,22,23],[1044,2,2,23,25]]],[44,8,6,25,31,[[1051,5,3,25,28],[1057,1,1,28,29],[1059,1,1,29,30],[1061,1,1,30,31]]],[45,1,1,31,32,[[1069,1,1,31,32]]],[46,2,2,32,34,[[1081,1,1,32,33],[1088,1,1,33,34]]],[48,1,1,34,35,[[1101,1,1,34,35]]],[50,2,2,35,37,[[1107,2,2,35,37]]],[54,2,2,37,39,[[1126,1,1,37,38],[1128,1,1,38,39]]]],[24107,24352,24801,24823,24824,24861,24865,24912,24995,25755,26807,26851,26926,26933,27032,27048,27255,27257,27736,27738,27758,27767,27782,27878,27879,28081,28084,28087,28246,28290,28338,28535,28873,28991,29331,29487,29493,29842,29887]]],["assist",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28338]]],["before",[2,2,[[43,1,1,0,1,[[1044,1,1,0,1]]],[44,1,1,1,2,[[1059,1,1,1,2]]]],[27879,28290]]],["by",[12,12,[[40,4,4,0,4,[[970,3,3,0,3],[971,1,1,3,4]]],[41,1,1,4,5,[[991,1,1,4,5]]],[42,2,2,5,7,[[1014,1,1,5,6],[1015,1,1,6,7]]],[43,5,5,7,12,[[1018,1,1,7,8],[1026,1,1,8,9],[1040,2,2,9,11],[1044,1,1,11,12]]]],[24801,24823,24824,24861,25755,26807,26851,26933,27255,27736,27738,27878]]],["come",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24352]]],["commendeth",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28535]]],["give",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24107]]],["present",[7,7,[[41,1,1,0,1,[[974,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]],[46,2,2,2,4,[[1081,1,1,2,3],[1088,1,1,3,4]]],[48,1,1,4,5,[[1101,1,1,4,5]]],[50,2,2,5,7,[[1107,2,2,5,7]]]],[24995,28246,28873,28991,29331,29487,29493]]],["presented",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1040,1,1,1,2]]]],[27257,27767]]],["prove",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27782]]],["provide",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27758]]],["shew",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29842]]],["shewed",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26926]]],["stand",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]]],[24912,27032]]],["stood",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24865]]],["up",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27048]]],["with",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29887]]],["yield",[4,3,[[44,4,3,0,3,[[1051,4,3,0,3]]]],[28081,28084,28087]]],["yielded",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28087]]]]},{"k":"G3937","v":[["Parmenas",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27106]]]]},{"k":"G3938","v":[["+",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28783]]]]},{"k":"G3939","v":[["*",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[26009,30181]]],["+",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26009]]],["sojourned",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30181]]]]},{"k":"G3940","v":[["*",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[27379,30391]]],["sojourning",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30391]]],["strangers",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27379]]]]},{"k":"G3941","v":[["*",[4,4,[[43,2,2,0,2,[[1024,2,2,0,2]]],[48,1,1,2,3,[[1098,1,1,2,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[27122,27145,29248,30410]]],["foreigners",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29248]]],["sojourn",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27122]]],["stranger",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27145]]],["strangers",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30410]]]]},{"k":"G3942","v":[["*",[5,4,[[42,4,3,0,3,[[1006,1,1,0,1],[1012,3,2,1,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]]],[26487,26751,26755,30522]]],["parable",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26487]]],["proverb",[2,2,[[42,1,1,0,1,[[1012,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[26755,30522]]],["proverbs",[2,1,[[42,2,1,0,1,[[1012,2,1,0,1]]]],[26751]]]]},{"k":"G3943","v":[["wine",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[29734,29899]]]]},{"k":"G3944","v":[["past",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27430]]]]},{"k":"G3945","v":[["unto",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23945]]]]},{"k":"G3946","v":[["things",[2,2,[[40,2,2,0,2,[[963,2,2,0,2]]]],[24471,24476]]]]},{"k":"G3947","v":[["*",[2,2,[[43,1,1,0,1,[[1034,1,1,0,1]]],[45,1,1,1,2,[[1074,1,1,1,2]]]],[27539,28670]]],["provoked",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28670]]],["stirred",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27539]]]]},{"k":"G3948","v":[["+",[2,2,[[43,1,1,0,1,[[1032,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[27481,30157]]]]},{"k":"G3949","v":[["*",[2,2,[[44,1,1,0,1,[[1055,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]]],[28207,29341]]],["+",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29341]]],["anger",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28207]]]]},{"k":"G3950","v":[["wrath",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29298]]]]},{"k":"G3951","v":[["up",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27412]]]]},{"k":"G3952","v":[["*",[24,24,[[39,4,4,0,4,[[952,4,4,0,4]]],[45,2,2,4,6,[[1076,1,1,4,5],[1077,1,1,5,6]]],[46,3,3,6,9,[[1084,2,2,6,8],[1087,1,1,8,9]]],[49,2,2,9,11,[[1103,1,1,9,10],[1104,1,1,10,11]]],[51,4,4,11,15,[[1112,1,1,11,12],[1113,1,1,12,13],[1114,1,1,13,14],[1115,1,1,14,15]]],[52,3,3,15,18,[[1117,3,3,15,18]]],[58,2,2,18,20,[[1150,2,2,18,20]]],[60,3,3,20,23,[[1156,1,1,20,21],[1158,2,2,21,23]]],[61,1,1,23,24,[[1160,1,1,23,24]]]],[23960,23984,23994,23996,28741,28793,28922,28923,28981,29387,29403,29589,29603,29618,29644,29662,29669,29670,30361,30362,30495,30526,30534,30578]]],["coming",[22,22,[[39,4,4,0,4,[[952,4,4,0,4]]],[45,2,2,4,6,[[1076,1,1,4,5],[1077,1,1,5,6]]],[46,2,2,6,8,[[1084,2,2,6,8]]],[49,1,1,8,9,[[1103,1,1,8,9]]],[51,4,4,9,13,[[1112,1,1,9,10],[1113,1,1,10,11],[1114,1,1,11,12],[1115,1,1,12,13]]],[52,3,3,13,16,[[1117,3,3,13,16]]],[58,2,2,16,18,[[1150,2,2,16,18]]],[60,3,3,18,21,[[1156,1,1,18,19],[1158,2,2,19,21]]],[61,1,1,21,22,[[1160,1,1,21,22]]]],[23960,23984,23994,23996,28741,28793,28922,28923,29387,29589,29603,29618,29644,29662,29669,29670,30361,30362,30495,30526,30534,30578]]],["presence",[2,2,[[46,1,1,0,1,[[1087,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[28981,29403]]]]},{"k":"G3953","v":[["platter",[2,2,[[39,2,2,0,2,[[951,2,2,0,2]]]],[23943,23944]]]]},{"k":"G3954","v":[["*",[31,31,[[40,1,1,0,1,[[964,1,1,0,1]]],[42,9,9,1,10,[[1003,3,3,1,4],[1006,1,1,4,5],[1007,2,2,5,7],[1012,2,2,7,9],[1014,1,1,9,10]]],[43,5,5,10,15,[[1019,1,1,10,11],[1021,3,3,11,14],[1045,1,1,14,15]]],[46,2,2,15,17,[[1080,1,1,15,16],[1084,1,1,16,17]]],[48,2,2,17,19,[[1099,1,1,17,18],[1102,1,1,18,19]]],[49,1,1,19,20,[[1103,1,1,19,20]]],[50,1,1,20,21,[[1108,1,1,20,21]]],[53,1,1,21,22,[[1121,1,1,21,22]]],[56,1,1,22,23,[[1132,1,1,22,23]]],[57,4,4,23,27,[[1135,1,1,23,24],[1136,1,1,24,25],[1142,2,2,25,27]]],[61,4,4,27,31,[[1160,1,1,27,28],[1161,1,1,28,29],[1162,1,1,29,30],[1163,1,1,30,31]]]],[24532,26332,26341,26354,26505,26537,26577,26751,26755,26805,26978,27035,27051,27053,27930,28853,28920,29263,29356,29381,29509,29744,29946,30001,30030,30152,30168,30578,30600,30620,30638]]],["+",[5,5,[[42,1,1,0,1,[[1003,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]],[50,1,1,3,4,[[1108,1,1,3,4]]],[57,1,1,4,5,[[1136,1,1,4,5]]]],[26332,26978,29356,29509,30030]]],["bold",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29946]]],["boldly",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26354]]],["boldness",[8,8,[[43,3,3,0,3,[[1021,3,3,0,3]]],[48,1,1,3,4,[[1099,1,1,3,4]]],[49,1,1,4,5,[[1103,1,1,4,5]]],[53,1,1,5,6,[[1121,1,1,5,6]]],[57,1,1,6,7,[[1142,1,1,6,7]]],[61,1,1,7,8,[[1162,1,1,7,8]]]],[27035,27051,27053,29263,29381,29744,30152,30620]]],["confidence",[6,6,[[43,1,1,0,1,[[1045,1,1,0,1]]],[57,2,2,1,3,[[1135,1,1,1,2],[1142,1,1,2,3]]],[61,3,3,3,6,[[1160,1,1,3,4],[1161,1,1,4,5],[1163,1,1,5,6]]]],[27930,30001,30168,30578,30600,30638]]],["openly",[4,4,[[40,1,1,0,1,[[964,1,1,0,1]]],[42,3,3,1,4,[[1003,1,1,1,2],[1007,1,1,2,3],[1014,1,1,3,4]]]],[24532,26341,26577,26805]]],["plainly",[4,4,[[42,4,4,0,4,[[1006,1,1,0,1],[1007,1,1,1,2],[1012,2,2,2,4]]]],[26505,26537,26751,26755]]],["speech",[2,2,[[46,2,2,0,2,[[1080,1,1,0,1],[1084,1,1,1,2]]]],[28853,28920]]]]},{"k":"G3955","v":[["*",[9,9,[[43,7,7,0,7,[[1026,2,2,0,2],[1030,1,1,2,3],[1031,1,1,3,4],[1035,1,1,4,5],[1036,1,1,5,6],[1043,1,1,6,7]]],[48,1,1,7,8,[[1102,1,1,7,8]]],[51,1,1,8,9,[[1112,1,1,8,9]]]],[27243,27245,27408,27417,27583,27593,27849,29357,29572]]],["bold",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]]],[27408,29572]]],["boldly",[6,6,[[43,5,5,0,5,[[1026,2,2,0,2],[1031,1,1,2,3],[1035,1,1,3,4],[1036,1,1,4,5]]],[48,1,1,5,6,[[1102,1,1,5,6]]]],[27243,27245,27417,27583,27593,29357]]],["freely",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27849]]]]},{"k":"G3956","v":[["*",[1238,1071,[[39,129,120,0,120,[[929,1,1,0,1],[930,4,3,1,4],[931,4,3,4,7],[932,6,5,7,12],[933,5,5,12,17],[934,3,3,17,20],[935,7,7,20,27],[936,4,4,27,31],[937,3,1,31,32],[938,5,4,32,36],[939,3,3,36,39],[940,6,5,39,44],[941,12,11,44,55],[942,2,2,55,57],[943,3,3,57,60],[945,1,1,60,61],[946,9,9,61,70],[947,6,6,70,76],[949,4,4,76,80],[950,4,4,80,84],[951,7,7,84,91],[952,9,9,91,100],[953,5,5,100,105],[954,8,8,105,113],[955,4,4,113,117],[956,4,3,117,120]]],[40,70,64,120,184,[[957,5,4,120,124],[958,3,2,124,126],[959,1,1,126,127],[960,6,6,127,133],[961,4,4,133,137],[962,6,6,137,143],[963,7,6,143,149],[965,7,5,149,154],[966,4,4,154,158],[967,4,4,158,162],[968,7,6,162,168],[969,7,7,168,175],[970,8,8,175,183],[972,1,1,183,184]]],[41,153,140,184,324,[[973,11,10,184,194],[974,11,11,194,205],[975,8,7,205,212],[976,12,12,212,224],[977,2,2,224,226],[978,8,7,226,233],[979,5,5,233,238],[980,5,5,238,243],[981,9,7,243,250],[982,3,3,250,253],[983,6,6,253,259],[984,10,10,259,269],[985,9,7,269,276],[986,6,5,276,281],[987,3,3,281,284],[988,5,4,284,288],[989,1,1,288,289],[990,7,7,289,296],[991,2,2,296,298],[992,5,5,298,303],[993,12,10,303,313],[994,1,1,313,314],[995,2,2,314,316],[996,10,8,316,324]]],[42,65,60,324,384,[[997,4,4,324,328],[998,3,3,328,331],[999,8,7,331,338],[1000,5,5,338,343],[1001,4,4,343,347],[1002,5,4,347,351],[1003,1,1,351,352],[1004,2,2,352,354],[1006,3,3,354,357],[1007,2,2,357,359],[1008,2,2,359,361],[1009,5,5,361,366],[1010,2,1,366,367],[1011,4,3,367,370],[1012,4,4,370,374],[1013,5,4,374,378],[1014,3,3,378,381],[1015,2,2,381,383],[1017,1,1,383,384]]],[43,170,156,384,540,[[1018,7,7,384,391],[1019,13,12,391,403],[1020,10,9,403,412],[1021,7,6,412,418],[1022,10,10,418,428],[1023,1,1,428,429],[1024,4,4,429,433],[1025,4,4,433,437],[1026,7,7,437,444],[1027,13,11,444,455],[1028,3,3,455,458],[1029,1,1,458,459],[1030,9,6,459,465],[1031,2,2,465,467],[1032,7,6,467,473],[1033,4,3,473,476],[1034,12,10,476,486],[1035,4,4,486,490],[1036,7,6,490,496],[1037,10,10,496,506],[1038,7,7,506,513],[1039,5,5,513,518],[1040,1,1,518,519],[1041,4,4,519,523],[1042,2,1,523,524],[1043,7,7,524,531],[1044,6,6,531,537],[1045,3,3,537,540]]],[44,71,61,540,601,[[1046,6,6,540,546],[1047,3,3,546,549],[1048,10,8,549,557],[1049,3,2,557,559],[1050,4,2,559,561],[1052,1,1,561,562],[1053,5,4,562,566],[1054,5,5,566,571],[1055,7,6,571,577],[1056,4,3,577,580],[1057,4,4,580,584],[1058,2,2,584,586],[1059,7,6,586,592],[1060,5,4,592,596],[1061,5,5,596,601]]],[45,112,73,601,674,[[1062,7,4,601,605],[1063,2,2,605,607],[1064,2,2,607,609],[1065,2,2,609,611],[1067,4,2,611,613],[1068,2,2,613,615],[1069,4,3,615,618],[1070,8,5,618,623],[1071,16,11,623,634],[1072,5,5,634,639],[1073,16,8,639,647],[1074,8,3,647,650],[1075,12,8,650,658],[1076,20,12,658,670],[1077,4,4,670,674]]],[46,53,43,674,717,[[1078,4,3,674,677],[1079,5,4,677,681],[1080,2,2,681,683],[1081,3,3,683,686],[1082,6,5,686,691],[1083,2,2,691,693],[1084,8,8,693,701],[1085,3,2,701,703],[1086,7,3,703,706],[1087,3,2,706,708],[1088,4,3,708,711],[1089,2,2,711,713],[1090,4,4,713,717]]],[47,15,14,717,731,[[1091,1,1,717,718],[1092,1,1,718,719],[1093,7,6,719,725],[1094,2,2,725,727],[1095,2,2,727,729],[1096,2,2,729,731]]],[48,52,37,731,768,[[1097,11,8,731,739],[1098,2,2,739,741],[1099,8,7,741,748],[1100,16,10,748,758],[1101,7,6,758,764],[1102,8,4,764,768]]],[49,34,30,768,798,[[1103,12,10,768,778],[1104,8,8,778,786],[1105,3,2,786,788],[1106,11,10,788,798]]],[50,38,30,798,828,[[1107,20,13,798,811],[1108,7,7,811,818],[1109,8,7,818,825],[1110,3,3,825,828]]],[51,18,18,828,846,[[1111,3,3,828,831],[1112,1,1,831,832],[1113,4,4,832,836],[1114,2,2,836,838],[1115,8,8,838,846]]],[52,16,14,846,860,[[1116,4,4,846,850],[1117,5,5,850,855],[1118,7,5,855,860]]],[53,24,22,860,882,[[1119,2,2,860,862],[1120,8,6,862,868],[1121,2,2,868,870],[1122,5,5,870,875],[1123,3,3,875,878],[1124,4,4,878,882]]],[54,18,18,882,900,[[1125,1,1,882,883],[1126,5,5,883,888],[1127,5,5,888,893],[1128,7,7,893,900]]],[55,14,11,900,911,[[1129,2,2,900,902],[1130,7,6,902,908],[1131,5,3,908,911]]],[56,2,2,911,913,[[1132,2,2,911,913]]],[57,51,44,913,957,[[1133,5,5,913,918],[1134,10,7,918,925],[1135,3,2,925,927],[1136,4,4,927,931],[1137,3,3,931,934],[1138,1,1,934,935],[1139,2,2,935,937],[1140,3,3,937,940],[1141,5,3,940,943],[1142,1,1,943,944],[1143,2,2,944,946],[1144,6,6,946,952],[1145,6,5,952,957]]],[58,12,11,957,968,[[1146,7,6,957,963],[1147,1,1,963,964],[1148,2,2,964,966],[1149,1,1,966,967],[1150,1,1,967,968]]],[59,18,15,968,983,[[1151,3,2,968,970],[1152,6,4,970,974],[1153,2,2,974,976],[1154,3,3,976,979],[1155,4,4,979,983]]],[60,7,7,983,990,[[1156,3,3,983,986],[1158,4,4,986,990]]],[61,27,24,990,1014,[[1159,2,2,990,992],[1160,7,7,992,999],[1161,9,7,999,1006],[1162,4,4,1006,1010],[1163,5,4,1010,1014]]],[62,2,2,1014,1016,[[1164,2,2,1014,1016]]],[63,2,2,1016,1018,[[1165,2,2,1016,1018]]],[64,6,3,1018,1021,[[1166,6,3,1018,1021]]],[65,59,50,1021,1071,[[1167,2,1,1021,1022],[1168,1,1,1022,1023],[1170,1,1,1023,1024],[1171,4,3,1024,1027],[1172,3,2,1027,1029],[1173,6,6,1029,1035],[1174,2,2,1035,1037],[1175,2,1,1037,1038],[1177,1,1,1038,1039],[1178,1,1,1039,1040],[1179,4,4,1040,1044],[1180,1,1,1044,1045],[1181,1,1,1045,1046],[1182,2,2,1046,1048],[1184,14,9,1048,1057],[1185,4,4,1057,1061],[1187,6,6,1061,1067],[1188,4,4,1067,1071]]]],[23161,23172,23173,23185,23197,23202,23207,23213,23217,23218,23232,23233,23245,23249,23252,23256,23262,23311,23314,23315,23324,23328,23333,23335,23337,23340,23342,23361,23377,23378,23379,23414,23418,23439,23447,23449,23472,23486,23487,23504,23512,23514,23520,23525,23541,23558,23571,23573,23580,23583,23585,23586,23590,23591,23595,23617,23632,23646,23650,23670,23711,23737,23743,23746,23752,23753,23756,23758,23759,23761,23765,23773,23782,23788,23789,23791,23836,23838,23848,23852,23876,23882,23899,23900,23921,23923,23926,23938,23945,23953,23954,23959,23963,23965,23966,23971,23987,23990,23991,24004,24013,24015,24037,24039,24040,24055,24081,24085,24087,24089,24106,24110,24124,24130,24151,24154,24174,24213,24214,24215,24220,24242,24247,24252,24272,24273,24316,24324,24334,24336,24354,24355,24357,24376,24384,24390,24397,24437,24440,24446,24448,24449,24457,24466,24477,24481,24482,24486,24500,24550,24553,24561,24573,24587,24608,24615,24616,24632,24651,24657,24658,24664,24695,24701,24702,24706,24716,24717,24721,24727,24730,24737,24740,24747,24754,24777,24781,24783,24785,24790,24804,24807,24818,24888,24896,24899,24903,24930,24941,24956,24958,24959,24964,24968,24974,24976,24983,24991,24992,24993,24996,25004,25011,25020,25024,25028,25030,25031,25034,25040,25044,25045,25067,25068,25070,25076,25078,25083,25085,25088,25091,25099,25100,25103,25116,25124,25156,25163,25165,25172,25176,25186,25193,25196,25212,25213,25224,25230,25285,25290,25292,25297,25299,25302,25308,25314,25318,25324,25344,25349,25364,25382,25385,25409,25415,25422,25446,25447,25455,25466,25467,25469,25477,25486,25489,25490,25500,25503,25507,25520,25521,25522,25523,25535,25545,25546,25564,25570,25571,25582,25586,25589,25602,25619,25634,25636,25638,25646,25661,25700,25702,25709,25710,25716,25719,25731,25757,25768,25785,25797,25811,25817,25824,25829,25841,25843,25848,25850,25855,25858,25861,25862,25864,25934,25983,25984,26000,26005,26010,26012,26016,26018,26035,26038,26047,26051,26053,26060,26105,26110,26119,26128,26135,26136,26140,26146,26151,26155,26169,26181,26185,26195,26201,26230,26232,26233,26238,26294,26296,26297,26302,26349,26383,26415,26489,26510,26522,26549,26571,26612,26626,26633,26640,26641,26648,26665,26694,26701,26714,26720,26728,26739,26741,26756,26761,26766,26769,26780,26789,26822,26825,26837,26853,26915,26924,26931,26937,26941,26942,26944,26947,26954,26956,26961,26966,26970,26974,26981,26985,26988,26992,26993,26994,27005,27007,27012,27014,27017,27018,27019,27020,27021,27032,27038,27043,27046,27051,27055,27064,27070,27076,27079,27080,27082,27093,27095,27096,27101,27106,27126,27130,27138,27166,27177,27186,27203,27216,27230,27237,27242,27248,27251,27255,27256,27261,27271,27273,27292,27294,27295,27297,27298,27300,27302,27303,27315,27321,27330,27348,27372,27384,27386,27389,27401,27406,27429,27430,27445,27454,27459,27460,27463,27478,27509,27515,27516,27530,27534,27540,27544,27545,27547,27548,27549,27553,27554,27559,27561,27574,27580,27592,27595,27602,27604,27611,27619,27644,27645,27651,27652,27653,27654,27658,27661,27662,27663,27669,27682,27684,27685,27688,27691,27692,27707,27709,27714,27716,27719,27735,27772,27774,27777,27783,27820,27825,27826,27827,27834,27837,27843,27852,27875,27879,27890,27891,27892,27899,27901,27929,27930,27935,27937,27938,27946,27948,27959,27963,27971,27972,27993,27995,28000,28003,28010,28011,28013,28014,28033,28038,28059,28065,28099,28138,28144,28148,28153,28160,28161,28162,28172,28188,28192,28199,28200,28201,28204,28206,28235,28241,28245,28248,28249,28262,28263,28267,28273,28282,28285,28290,28291,28300,28303,28314,28316,28317,28336,28340,28351,28355,28360,28362,28365,28368,28373,28392,28404,28409,28431,28432,28446,28450,28479,28485,28494,28504,28528,28533,28534,28552,28559,28562,28564,28565,28568,28569,28570,28571,28578,28584,28590,28592,28594,28598,28600,28602,28603,28604,28605,28612,28640,28645,28646,28647,28653,28660,28663,28664,28667,28668,28672,28683,28696,28701,28702,28704,28709,28711,28718,28725,28726,28728,28737,28740,28742,28743,28745,28746,28748,28757,28769,28790,28792,28796,28800,28801,28803,28804,28827,28829,28833,28838,28843,28859,28861,28867,28874,28887,28891,28892,28894,28895,28902,28908,28917,28920,28921,28927,28929,28930,28931,28932,28939,28950,28964,28967,28969,28976,28977,28995,28998,29017,29034,29041,29044,29045,29056,29057,29059,29095,29110,29112,29115,29124,29128,29130,29132,29157,29165,29176,29194,29198,29209,29214,29216,29217,29221,29227,29228,29229,29232,29250,29259,29260,29266,29269,29270,29271,29272,29274,29278,29282,29285,29286,29287,29288,29291,29301,29303,29307,29309,29313,29317,29324,29328,29353,29355,29358,29361,29362,29364,29365,29368,29369,29370,29374,29379,29381,29386,29400,29401,29402,29405,29408,29412,29417,29420,29429,29442,29447,29448,29449,29454,29455,29460,29461,29463,29464,29465,29469,29471,29474,29475,29476,29480,29481,29482,29483,29484,29485,29488,29493,29496,29497,29503,29504,29507,29513,29516,29525,29528,29531,29533,29534,29537,29539,29549,29551,29554,29562,29567,29568,29585,29597,29599,29602,29603,29609,29613,29626,29635,29636,29639,29642,29643,29647,29648,29652,29653,29659,29660,29665,29670,29671,29673,29678,29680,29684,29694,29695,29696,29711,29712,29717,29718,29720,29722,29724,29727,29735,29742,29751,29755,29756,29757,29762,29765,29773,29783,29789,29798,29801,29805,29824,29834,29837,29846,29848,29851,29862,29864,29865,29869,29870,29872,29875,29878,29886,29887,29888,29891,29907,29908,29915,29917,29918,29919,29922,29923,29924,29925,29938,29943,29944,29965,29966,29969,29974,29977,29979,29985,29986,29987,29988,29992,29994,29999,30011,30018,30026,30027,30029,30031,30039,30043,30060,30066,30071,30095,30097,30103,30124,30126,30127,30144,30185,30211,30213,30218,30220,30223,30226,30235,30245,30259,30262,30265,30266,30268,30271,30274,30283,30285,30287,30303,30326,30335,30353,30366,30389,30398,30400,30412,30416,30417,30432,30439,30453,30454,30457,30470,30472,30475,30479,30482,30484,30499,30526,30531,30533,30538,30547,30549,30566,30569,30570,30571,30573,30577,30579,30582,30583,30585,30588,30589,30594,30599,30604,30605,30606,30610,30625,30628,30641,30642,30646,30654,30660,30670,30675,30687,30697,30704,30740,30779,30785,30788,30792,30807,30808,30811,30814,30819,30821,30826,30827,30830,30834,30844,30878,30896,30915,30916,30920,30924,30932,30950,30957,30974,30995,30996,31005,31007,31010,31012,31015,31016,31017,31022,31034,31035,31038,31057,31058,31060,31061,31072,31080,31083,31095,31098,31101]]],["+",[59,58,[[39,5,5,0,5,[[933,1,1,0,1],[935,1,1,1,2],[938,1,1,2,3],[946,1,1,3,4],[956,1,1,4,5]]],[40,4,4,5,9,[[961,1,1,5,6],[962,1,1,6,7],[967,1,1,7,8],[969,1,1,8,9]]],[41,5,5,9,14,[[973,1,1,9,10],[984,3,3,10,13],[993,1,1,13,14]]],[42,2,2,14,16,[[1010,1,1,14,15],[1013,1,1,15,16]]],[43,16,16,16,32,[[1019,2,2,16,18],[1022,1,1,18,19],[1026,1,1,19,20],[1027,2,2,20,22],[1030,2,2,22,24],[1032,1,1,24,25],[1034,2,2,25,27],[1035,1,1,27,28],[1036,1,1,28,29],[1037,1,1,29,30],[1043,1,1,30,31],[1044,1,1,31,32]]],[44,4,4,32,36,[[1048,1,1,32,33],[1055,1,1,33,34],[1059,2,2,34,36]]],[45,7,7,36,43,[[1062,1,1,36,37],[1070,1,1,37,38],[1071,1,1,38,39],[1074,1,1,39,40],[1076,2,2,40,42],[1077,1,1,42,43]]],[46,3,3,43,46,[[1082,1,1,43,44],[1086,1,1,44,45],[1088,1,1,45,46]]],[48,3,3,46,49,[[1099,1,1,46,47],[1100,1,1,47,48],[1102,1,1,48,49]]],[52,1,1,49,50,[[1118,1,1,49,50]]],[57,4,3,50,53,[[1134,2,1,50,51],[1142,1,1,51,52],[1144,1,1,52,53]]],[60,1,1,53,54,[[1156,1,1,53,54]]],[61,2,2,54,56,[[1160,1,1,54,55],[1161,1,1,55,56]]],[64,1,1,56,57,[[1166,1,1,56,57]]],[65,1,1,57,58,[[1188,1,1,57,58]]]],[23245,23340,23449,23737,24215,24390,24446,24664,24737,24930,25467,25469,25507,25862,26694,26761,26970,26974,27101,27242,27292,27302,27389,27406,27463,27540,27548,27561,27619,27663,27834,27899,28011,28201,28282,28303,28392,28564,28584,28668,28745,28746,28790,28891,28964,28995,29260,29301,29355,29694,29985,30144,30223,30499,30571,30594,30697,31083]]],["All",[24,24,[[39,9,9,0,9,[[932,1,1,0,1],[941,1,1,1,2],[947,2,2,2,4],[951,2,2,4,6],[952,1,1,6,7],[954,1,1,7,8],[956,1,1,8,9]]],[40,4,4,9,13,[[957,1,1,9,10],[959,1,1,10,11],[963,1,1,11,12],[970,1,1,12,13]]],[41,1,1,13,14,[[990,1,1,13,14]]],[42,2,2,14,16,[[1002,1,1,14,15],[1006,1,1,15,16]]],[45,2,2,16,18,[[1076,1,1,16,17],[1077,1,1,17,18]]],[46,1,1,18,19,[[1090,1,1,18,19]]],[49,1,1,19,20,[[1106,1,1,19,20]]],[50,1,1,20,21,[[1110,1,1,20,21]]],[54,1,1,21,22,[[1127,1,1,21,22]]],[55,1,1,22,23,[[1131,1,1,22,23]]],[61,1,1,23,24,[[1163,1,1,23,24]]]],[23218,23573,23773,23782,23921,23954,23965,24085,24213,24252,24316,24486,24781,25709,26294,26489,28757,28796,29056,29464,29549,29869,29938,30641]]],["Every",[12,12,[[39,3,3,0,3,[[935,1,1,0,1],[940,1,1,1,2],[943,1,1,2,3]]],[41,3,3,3,6,[[974,1,1,3,4],[975,1,1,4,5],[983,1,1,5,6]]],[42,2,2,6,8,[[998,1,1,6,7],[1011,1,1,7,8]]],[45,2,2,8,10,[[1067,1,1,8,9],[1072,1,1,9,10]]],[58,1,1,10,11,[[1146,1,1,10,11]]],[61,1,1,11,12,[[1162,1,1,11,12]]]],[23335,23514,23646,24996,25030,25422,26105,26701,28485,28604,30283,30605]]],["Whatsoever",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28592]]],["Whosoever",[13,13,[[41,3,3,0,3,[[978,1,1,0,1],[988,1,1,1,2],[992,1,1,2,3]]],[42,2,2,3,5,[[1000,1,1,3,4],[1004,1,1,4,5]]],[44,1,1,5,6,[[1055,1,1,5,6]]],[61,6,6,6,12,[[1160,1,1,6,7],[1161,4,4,7,11],[1163,1,1,11,12]]],[62,1,1,12,13,[[1164,1,1,12,13]]]],[25193,25638,25797,26169,26415,28199,30573,30583,30585,30588,30594,30625,30654]]],["all",[762,686,[[39,73,70,0,70,[[929,1,1,0,1],[930,4,3,1,4],[931,3,2,4,6],[932,2,2,6,8],[933,2,2,8,10],[934,3,3,10,13],[936,1,1,13,14],[937,1,1,14,15],[938,2,2,15,17],[939,2,2,17,19],[940,2,2,19,21],[941,6,5,21,26],[942,2,2,26,28],[943,1,1,28,29],[946,6,6,29,35],[947,1,1,35,36],[949,3,3,36,39],[950,3,3,39,42],[951,4,4,42,46],[952,8,8,46,54],[953,4,4,54,58],[954,7,7,58,65],[955,4,4,65,69],[956,1,1,69,70]]],[40,46,42,70,112,[[957,4,3,70,73],[958,3,2,73,75],[960,3,3,75,78],[961,3,3,78,81],[962,4,4,81,85],[963,3,3,85,88],[965,3,2,88,90],[966,3,3,90,93],[967,2,2,93,95],[968,7,6,95,101],[969,5,5,101,106],[970,6,6,106,112]]],[41,111,106,112,218,[[973,8,7,112,119],[974,10,10,119,129],[975,4,4,129,133],[976,10,10,133,143],[977,1,1,143,144],[978,4,4,144,148],[979,5,5,148,153],[980,5,5,153,158],[981,7,7,158,165],[982,1,1,165,166],[983,1,1,166,167],[984,7,7,167,174],[985,9,7,174,181],[986,3,3,181,184],[987,3,3,184,187],[988,2,2,187,189],[989,1,1,189,190],[990,4,4,190,194],[991,1,1,194,195],[992,4,4,195,199],[993,9,9,199,208],[994,1,1,208,209],[995,2,2,209,211],[996,9,7,211,218]]],[42,28,27,218,245,[[997,2,2,218,220],[998,2,2,220,222],[999,3,2,222,224],[1000,1,1,224,225],[1001,3,3,225,228],[1002,2,2,228,230],[1003,1,1,230,231],[1004,1,1,231,232],[1006,1,1,232,233],[1007,1,1,233,234],[1008,1,1,234,235],[1009,4,4,235,239],[1011,1,1,239,240],[1012,1,1,240,241],[1013,3,3,241,244],[1014,1,1,244,245]]],[43,130,122,245,367,[[1018,7,7,245,252],[1019,9,8,252,260],[1020,7,7,260,267],[1021,7,6,267,273],[1022,8,8,273,281],[1024,4,4,281,285],[1025,4,4,285,289],[1026,6,6,289,295],[1027,5,5,295,300],[1028,2,2,300,302],[1029,1,1,302,303],[1030,6,4,303,307],[1031,1,1,307,308],[1032,5,4,308,312],[1033,3,3,312,315],[1034,8,7,315,322],[1035,3,3,322,325],[1036,6,5,325,330],[1037,8,8,330,338],[1038,7,7,338,345],[1039,4,4,345,349],[1040,1,1,349,350],[1041,3,3,350,353],[1042,2,1,353,354],[1043,6,6,354,360],[1044,5,5,360,365],[1045,2,2,365,367]]],[44,46,39,367,406,[[1046,5,5,367,372],[1048,6,5,372,377],[1049,3,2,377,379],[1050,4,2,379,381],[1053,2,2,381,383],[1054,4,4,383,387],[1055,4,3,387,390],[1056,3,2,390,392],[1057,3,3,392,395],[1058,1,1,395,396],[1059,1,1,396,397],[1060,5,4,397,401],[1061,5,5,401,406]]],[45,63,41,406,447,[[1062,4,3,406,409],[1064,1,1,409,410],[1068,2,2,410,412],[1069,1,1,412,413],[1070,3,2,413,415],[1071,9,7,415,422],[1073,16,8,422,430],[1074,3,1,430,431],[1075,10,6,431,437],[1076,13,9,437,446],[1077,1,1,446,447]]],[46,30,28,447,475,[[1078,3,3,447,450],[1079,3,2,450,452],[1080,2,2,452,454],[1082,3,3,454,457],[1083,1,1,457,458],[1084,6,6,458,464],[1085,2,2,464,466],[1086,4,3,466,469],[1087,1,1,469,470],[1088,2,2,470,472],[1089,1,1,472,473],[1090,2,2,473,475]]],[47,11,11,475,486,[[1091,1,1,475,476],[1092,1,1,476,477],[1093,4,4,477,481],[1094,2,2,481,483],[1095,1,1,483,484],[1096,2,2,484,486]]],[48,33,24,486,510,[[1097,8,6,486,492],[1098,2,2,492,494],[1099,5,5,494,499],[1100,10,6,499,505],[1101,2,2,505,507],[1102,6,3,507,510]]],[49,18,17,510,527,[[1103,9,8,510,518],[1104,4,4,518,522],[1106,5,5,522,527]]],[50,22,20,527,547,[[1107,9,8,527,535],[1108,7,7,535,542],[1109,5,4,542,546],[1110,1,1,546,547]]],[51,15,15,547,562,[[1111,2,2,547,549],[1112,1,1,549,550],[1113,4,4,550,554],[1114,2,2,554,556],[1115,6,6,556,562]]],[52,12,11,562,573,[[1116,4,4,562,566],[1117,4,4,566,570],[1118,4,3,570,573]]],[53,17,15,573,588,[[1119,2,2,573,575],[1120,7,5,575,580],[1121,1,1,580,581],[1122,3,3,581,584],[1123,2,2,584,586],[1124,2,2,586,588]]],[54,11,11,588,599,[[1125,1,1,588,589],[1126,1,1,589,590],[1127,4,4,590,594],[1128,5,5,594,599]]],[55,8,7,599,606,[[1130,5,5,599,604],[1131,3,2,604,606]]],[56,1,1,606,607,[[1132,1,1,606,607]]],[57,24,22,607,629,[[1133,3,3,607,610],[1134,2,2,610,612],[1135,1,1,612,613],[1136,1,1,613,614],[1137,1,1,614,615],[1138,1,1,615,616],[1139,2,2,616,618],[1140,1,1,618,619],[1141,3,2,619,621],[1143,2,2,621,623],[1144,3,3,623,626],[1145,4,3,626,629]]],[58,6,6,629,635,[[1146,4,4,629,633],[1147,1,1,633,634],[1149,1,1,634,635]]],[59,12,9,635,644,[[1151,2,1,635,636],[1152,5,3,636,639],[1153,1,1,639,640],[1155,4,4,640,644]]],[60,4,4,644,648,[[1156,1,1,644,645],[1158,3,3,645,648]]],[61,4,4,648,652,[[1159,2,2,648,650],[1160,2,2,650,652]]],[62,1,1,652,653,[[1164,1,1,652,653]]],[63,1,1,653,654,[[1165,1,1,653,654]]],[64,5,2,654,656,[[1166,5,2,654,656]]],[65,30,30,656,686,[[1167,1,1,656,657],[1168,1,1,657,658],[1171,2,2,658,660],[1173,4,4,660,664],[1174,2,2,664,666],[1177,1,1,666,667],[1178,1,1,667,668],[1179,4,4,668,672],[1181,1,1,672,673],[1184,6,6,673,679],[1185,4,4,679,683],[1187,2,2,683,685],[1188,1,1,685,686]]]],[23161,23172,23173,23185,23197,23207,23217,23233,23249,23252,23311,23314,23315,23361,23414,23439,23447,23472,23487,23504,23512,23571,23583,23585,23590,23595,23617,23632,23670,23752,23753,23756,23758,23759,23761,23789,23836,23838,23852,23882,23899,23900,23923,23926,23945,23953,23959,23963,23966,23971,23987,23990,23991,24004,24013,24015,24039,24040,24055,24081,24087,24089,24106,24110,24124,24130,24151,24154,24174,24214,24220,24242,24247,24272,24273,24336,24354,24355,24376,24384,24397,24440,24448,24449,24457,24466,24477,24482,24553,24573,24608,24616,24632,24657,24658,24695,24701,24702,24706,24716,24717,24721,24727,24730,24747,24754,24777,24783,24785,24804,24807,24818,24899,24941,24956,24958,24959,24964,24968,24974,24976,24983,24991,24992,24993,25004,25011,25020,25024,25028,25031,25044,25045,25068,25070,25076,25078,25083,25085,25088,25091,25099,25103,25116,25156,25163,25165,25172,25196,25212,25213,25224,25230,25285,25290,25292,25297,25299,25302,25308,25314,25318,25324,25344,25349,25382,25455,25466,25477,25486,25489,25490,25500,25503,25520,25521,25522,25523,25535,25545,25546,25571,25582,25586,25589,25602,25619,25634,25646,25661,25700,25710,25716,25731,25768,25785,25811,25817,25824,25829,25841,25843,25850,25855,25858,25861,25862,25864,25934,25983,25984,26000,26005,26010,26012,26016,26018,26038,26051,26060,26110,26119,26146,26151,26195,26232,26233,26238,26296,26302,26349,26383,26510,26571,26612,26640,26641,26648,26665,26720,26739,26761,26769,26780,26825,26924,26931,26937,26941,26942,26944,26947,26956,26961,26966,26981,26985,26988,26993,26994,27005,27007,27012,27014,27017,27020,27021,27032,27038,27043,27046,27051,27055,27064,27076,27079,27080,27082,27093,27095,27096,27126,27130,27138,27166,27177,27186,27203,27216,27230,27237,27248,27251,27255,27256,27261,27295,27297,27300,27303,27321,27330,27348,27372,27384,27386,27401,27430,27445,27454,27459,27460,27509,27515,27516,27530,27534,27544,27548,27549,27553,27554,27559,27574,27580,27592,27595,27602,27604,27611,27644,27645,27651,27652,27653,27654,27658,27662,27669,27682,27684,27685,27688,27691,27692,27707,27709,27716,27719,27735,27772,27774,27777,27820,27825,27826,27827,27837,27843,27852,27875,27879,27890,27891,27892,27929,27930,27935,27937,27938,27948,27959,28000,28003,28010,28013,28014,28033,28038,28059,28065,28148,28153,28160,28161,28162,28172,28200,28204,28206,28235,28241,28249,28262,28263,28273,28290,28314,28316,28317,28336,28340,28351,28355,28360,28362,28365,28368,28373,28432,28494,28504,28528,28559,28562,28568,28569,28570,28571,28578,28598,28600,28640,28645,28646,28647,28653,28660,28663,28664,28667,28683,28696,28701,28702,28709,28711,28725,28726,28728,28737,28740,28742,28743,28746,28769,28800,28801,28803,28804,28827,28829,28843,28859,28887,28891,28892,28902,28917,28920,28927,28929,28931,28932,28939,28950,28964,28967,28969,28977,28998,29017,29034,29045,29057,29059,29095,29110,29124,29128,29130,29132,29157,29176,29194,29198,29209,29214,29221,29227,29228,29229,29232,29250,29259,29269,29270,29271,29272,29274,29278,29282,29285,29291,29303,29307,29313,29353,29355,29361,29362,29365,29368,29369,29370,29374,29381,29386,29408,29412,29417,29420,29447,29449,29460,29461,29465,29469,29471,29474,29475,29476,29483,29484,29493,29496,29497,29503,29504,29507,29513,29516,29528,29531,29533,29534,29554,29562,29567,29585,29597,29599,29602,29603,29609,29613,29626,29635,29636,29643,29647,29648,29652,29653,29659,29660,29665,29670,29671,29673,29680,29694,29696,29711,29712,29717,29718,29720,29722,29727,29735,29756,29757,29762,29765,29783,29789,29798,29824,29851,29862,29864,29865,29870,29872,29878,29886,29887,29891,29917,29918,29919,29922,29923,29925,29938,29943,29969,29974,29977,29988,29992,30011,30018,30039,30060,30066,30071,30103,30124,30126,30185,30211,30220,30226,30235,30245,30265,30266,30268,30271,30274,30287,30303,30353,30398,30400,30416,30417,30432,30470,30472,30475,30479,30484,30531,30533,30538,30547,30549,30566,30569,30646,30670,30675,30687,30704,30740,30785,30792,30814,30819,30821,30827,30830,30834,30878,30896,30915,30916,30920,30924,30950,30996,31005,31010,31012,31016,31017,31022,31034,31035,31038,31057,31061,31101]]],["any",[8,7,[[39,1,1,0,1,[[946,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]],[57,1,1,3,4,[[1136,1,1,3,4]]],[65,4,3,4,7,[[1173,2,2,4,6],[1175,2,1,6,7]]]],[23746,28804,29309,30026,30811,30826,30844]]],["as",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27070]]],["every",[102,95,[[39,11,10,0,10,[[931,1,1,0,1],[932,1,1,1,2],[935,1,1,2,3],[937,2,1,3,4],[940,2,2,4,6],[941,2,2,6,8],[946,1,1,8,9],[947,1,1,9,10]]],[40,2,2,10,12,[[965,1,1,10,11],[972,1,1,11,12]]],[41,6,6,12,18,[[975,2,2,12,14],[976,2,2,14,16],[977,1,1,16,17],[982,1,1,17,18]]],[42,2,2,18,20,[[997,1,1,18,19],[1011,1,1,19,20]]],[43,5,5,20,25,[[1019,2,2,20,22],[1020,1,1,22,23],[1027,1,1,23,24],[1032,1,1,24,25]]],[44,8,7,25,32,[[1047,1,1,25,26],[1048,3,3,26,29],[1058,1,1,29,30],[1059,3,2,30,32]]],[45,5,5,32,37,[[1062,1,1,32,33],[1065,1,1,33,34],[1072,2,2,34,36],[1076,1,1,36,37]]],[46,7,6,37,43,[[1079,1,1,37,38],[1081,1,1,38,39],[1085,1,1,39,40],[1086,1,1,40,41],[1087,2,1,41,42],[1090,1,1,42,43]]],[47,1,1,43,44,[[1095,1,1,43,44]]],[48,3,3,44,47,[[1097,1,1,44,45],[1100,2,2,45,47]]],[49,7,7,47,54,[[1103,3,3,47,50],[1104,3,3,50,53],[1106,1,1,53,54]]],[50,6,4,54,58,[[1107,6,4,54,58]]],[51,1,1,58,59,[[1111,1,1,58,59]]],[52,3,3,59,62,[[1117,1,1,59,60],[1118,2,2,60,62]]],[53,3,3,62,65,[[1120,1,1,62,63],[1122,1,1,63,64],[1123,1,1,64,65]]],[54,2,2,65,67,[[1126,1,1,65,66],[1128,1,1,66,67]]],[55,2,2,67,69,[[1129,1,1,67,68],[1131,1,1,68,69]]],[56,1,1,69,70,[[1132,1,1,69,70]]],[57,8,8,70,78,[[1134,1,1,70,71],[1135,1,1,71,72],[1137,1,1,72,73],[1140,1,1,73,74],[1141,1,1,74,75],[1144,2,2,75,77],[1145,1,1,77,78]]],[58,4,4,78,82,[[1146,2,2,78,80],[1148,2,2,80,82]]],[59,1,1,82,83,[[1152,1,1,82,83]]],[61,2,2,83,85,[[1162,2,2,83,85]]],[65,12,10,85,95,[[1167,1,1,85,86],[1171,2,2,86,88],[1172,3,2,88,90],[1180,1,1,90,91],[1182,2,2,91,93],[1184,3,2,93,95]]]],[23202,23213,23333,23414,23514,23525,23586,23591,23743,23765,24587,24888,25030,25034,25067,25100,25124,25364,26053,26701,26954,26992,27019,27294,27478,27971,27993,27995,28010,28267,28285,28291,28365,28450,28603,28605,28748,28838,28861,28939,28964,28976,29044,29165,29227,29286,29288,29364,29365,29379,29400,29401,29402,29463,29475,29480,29488,29493,29568,29678,29684,29695,29724,29751,29773,29848,29888,29908,29924,29944,29979,29999,30031,30095,30124,30213,30218,30262,30283,30285,30326,30335,30412,30604,30606,30704,30788,30792,30807,30808,30932,30957,30974,30995,31010]]],["man",[11,11,[[41,2,2,0,2,[[978,1,1,0,1],[988,1,1,1,2]]],[42,1,1,2,3,[[1002,1,1,2,3]]],[44,2,2,3,5,[[1047,1,1,3,4],[1057,1,1,4,5]]],[45,2,2,5,7,[[1069,1,1,5,6],[1070,1,1,6,7]]],[57,1,1,7,8,[[1134,1,1,7,8]]],[59,1,1,8,9,[[1153,1,1,8,9]]],[61,1,1,9,10,[[1161,1,1,9,10]]],[65,1,1,10,11,[[1188,1,1,10,11]]]],[25176,25636,26302,27972,28248,28534,28565,29986,30439,30582,31098]]],["manner",[12,9,[[39,5,3,0,3,[[932,2,1,0,1],[938,2,1,1,2],[940,1,1,2,3]]],[41,1,1,3,4,[[983,1,1,3,4]]],[43,1,1,4,5,[[1027,1,1,4,5]]],[44,1,1,5,6,[[1052,1,1,5,6]]],[59,1,1,6,7,[[1151,1,1,6,7]]],[65,3,2,7,9,[[1184,2,1,7,8],[1187,1,1,8,9]]]],[23232,23418,23520,25447,27271,28099,30389,31005,31072]]],["men",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25040]]],["no",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31015]]],["nothing",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27315]]],["one",[29,29,[[39,6,6,0,6,[[935,3,3,0,3],[941,1,1,3,4],[947,1,1,4,5],[953,1,1,5,6]]],[40,2,2,6,8,[[963,1,1,6,7],[965,1,1,7,8]]],[41,6,6,8,14,[[978,1,1,8,9],[981,1,1,9,10],[983,2,2,10,12],[990,1,1,12,13],[991,1,1,13,14]]],[42,4,4,14,18,[[999,2,2,14,16],[1002,1,1,16,17],[1014,1,1,17,18]]],[43,1,1,18,19,[[1045,1,1,18,19]]],[44,2,2,19,21,[[1046,1,1,19,20],[1055,1,1,20,21]]],[45,1,1,21,22,[[1077,1,1,21,22]]],[47,2,2,22,24,[[1093,2,2,22,24]]],[54,1,1,24,25,[[1126,1,1,24,25]]],[57,1,1,25,26,[[1137,1,1,25,26]]],[61,3,3,26,29,[[1160,1,1,26,27],[1162,1,1,27,28],[1163,1,1,28,29]]]],[23324,23337,23342,23558,23791,24037,24477,24587,25186,25344,25409,25415,25702,25757,26128,26140,26297,26822,27901,27946,28192,28792,29112,29115,29846,30043,30579,30610,30625]]],["one's",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27509]]],["points",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30029]]],["side",[2,2,[[46,2,2,0,2,[[1081,1,1,0,1],[1084,1,1,1,2]]]],[28867,28921]]],["these",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29525]]],["thing",[9,9,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]],[45,1,1,3,4,[[1062,1,1,3,4]]],[46,1,1,4,5,[[1086,1,1,4,5]]],[48,1,1,5,6,[[1101,1,1,5,6]]],[49,1,1,6,7,[[1106,1,1,6,7]]],[51,1,1,7,8,[[1115,1,1,7,8]]],[65,1,1,8,9,[[1187,1,1,8,9]]]],[23378,24481,27273,28368,28967,29328,29448,29639,31080]]],["things",[152,138,[[39,9,9,0,9,[[935,1,1,0,1],[939,1,1,1,2],[941,1,1,2,3],[945,1,1,3,4],[947,1,1,4,5],[949,1,1,5,6],[950,1,1,6,7],[951,1,1,7,8],[956,1,1,8,9]]],[40,10,10,9,19,[[960,2,2,9,11],[962,1,1,11,12],[963,1,1,12,13],[965,2,2,13,15],[966,1,1,15,16],[967,1,1,16,17],[969,1,1,17,18],[970,1,1,18,19]]],[41,8,8,19,27,[[973,1,1,19,20],[981,1,1,20,21],[982,1,1,21,22],[983,1,1,22,23],[986,1,1,23,24],[990,1,1,24,25],[993,1,1,25,26],[996,1,1,26,27]]],[42,16,16,27,43,[[997,1,1,27,28],[999,1,1,28,29],[1000,3,3,29,32],[1001,1,1,32,33],[1006,1,1,33,34],[1009,1,1,34,35],[1010,1,1,35,36],[1011,1,1,36,37],[1012,2,2,37,39],[1013,1,1,39,40],[1014,1,1,40,41],[1015,1,1,41,42],[1017,1,1,42,43]]],[43,11,11,43,54,[[1020,2,2,43,45],[1027,2,2,45,47],[1030,1,1,47,48],[1031,1,1,48,49],[1034,2,2,49,51],[1037,1,1,51,52],[1039,1,1,52,53],[1041,1,1,53,54]]],[44,4,4,54,58,[[1053,2,2,54,56],[1056,1,1,56,57],[1059,1,1,57,58]]],[45,27,17,58,75,[[1063,2,2,58,60],[1064,1,1,60,61],[1065,1,1,61,62],[1067,3,1,62,63],[1069,2,1,63,64],[1070,3,3,64,67],[1071,4,1,67,68],[1072,2,2,68,70],[1074,4,1,70,71],[1075,2,2,71,73],[1076,3,2,73,75]]],[46,8,8,75,83,[[1079,1,1,75,76],[1081,1,1,76,77],[1082,2,2,77,79],[1083,1,1,79,80],[1084,1,1,80,81],[1088,1,1,81,82],[1089,1,1,82,83]]],[47,1,1,83,84,[[1093,1,1,83,84]]],[48,8,8,84,92,[[1097,2,2,84,86],[1099,1,1,86,87],[1100,2,2,87,89],[1101,2,2,89,91],[1102,1,1,91,92]]],[49,6,5,92,97,[[1104,1,1,92,93],[1105,3,2,93,95],[1106,2,2,95,97]]],[50,8,6,97,103,[[1107,5,3,97,100],[1109,2,2,100,102],[1110,1,1,102,103]]],[51,1,1,103,104,[[1115,1,1,103,104]]],[53,4,4,104,108,[[1121,1,1,104,105],[1122,1,1,105,106],[1124,2,2,106,108]]],[54,3,3,108,111,[[1126,2,2,108,110],[1128,1,1,110,111]]],[55,3,3,111,114,[[1129,1,1,111,112],[1130,2,2,112,114]]],[57,11,10,114,124,[[1133,2,2,114,116],[1134,4,3,116,119],[1135,1,1,119,120],[1136,1,1,120,121],[1140,1,1,121,122],[1141,1,1,122,123],[1145,1,1,123,124]]],[58,1,1,124,125,[[1150,1,1,124,125]]],[59,3,3,125,128,[[1154,3,3,125,128]]],[60,2,2,128,130,[[1156,1,1,128,129],[1158,1,1,129,130]]],[61,3,3,130,133,[[1160,2,2,130,132],[1161,1,1,132,133]]],[63,1,1,133,134,[[1165,1,1,133,134]]],[65,4,4,134,138,[[1170,1,1,134,135],[1184,1,1,135,136],[1187,2,2,136,138]]]],[23328,23486,23580,23711,23788,23848,23876,23938,24215,24334,24357,24437,24500,24550,24561,24615,24651,24740,24790,24896,25344,25385,25446,25570,25719,25848,26035,26047,26155,26181,26185,26201,26230,26522,26633,26694,26714,26741,26756,26766,26789,26853,26915,27017,27018,27292,27298,27401,27429,27545,27547,27661,27714,27783,28144,28148,28245,28300,28404,28409,28431,28446,28479,28533,28552,28562,28565,28590,28602,28612,28672,28704,28718,28745,28746,28833,28874,28894,28895,28908,28930,28995,29041,29112,29216,29217,29260,29282,29287,29317,29324,29358,29405,29429,29442,29454,29455,29481,29482,29485,29537,29539,29551,29642,29742,29755,29801,29805,29834,29837,29875,29907,29915,29918,29965,29966,29985,29987,29994,29999,30027,30097,30127,30259,30366,30453,30454,30457,30482,30526,30570,30577,30599,30660,30779,31007,31058,31060]]],["whatsoever",[5,5,[[39,1,1,0,1,[[943,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]],[61,1,1,3,4,[[1163,1,1,3,4]]],[65,1,1,4,5,[[1184,1,1,4,5]]]],[23650,28594,29317,30628,31015]]],["where",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29454]]],["whole",[11,11,[[39,3,3,0,3,[[936,2,2,0,2],[941,1,1,2,3]]],[40,1,1,3,4,[[960,1,1,3,4]]],[41,3,3,4,7,[[973,1,1,4,5],[978,1,1,5,6],[993,1,1,6,7]]],[43,1,1,7,8,[[1023,1,1,7,8]]],[44,1,1,8,9,[[1053,1,1,8,9]]],[48,2,2,9,11,[[1099,1,1,9,10],[1100,1,1,10,11]]]],[23377,23379,23541,24324,24903,25165,25861,27106,28138,29266,29288]]],["whosoever",[18,18,[[39,2,2,0,2,[[933,2,2,0,2]]],[41,3,3,2,5,[[986,2,2,2,4],[988,1,1,4,5]]],[42,6,6,5,11,[[999,2,2,5,7],[1007,1,1,7,8],[1008,1,1,8,9],[1012,1,1,9,10],[1015,1,1,10,11]]],[43,1,1,11,12,[[1027,1,1,11,12]]],[44,2,2,12,14,[[1047,1,1,12,13],[1054,1,1,13,14]]],[61,3,3,14,17,[[1161,2,2,14,16],[1163,1,1,16,17]]],[65,1,1,17,18,[[1188,1,1,17,18]]]],[23256,23262,25564,25586,25638,26135,26136,26549,26626,26728,26837,27302,27963,28188,30585,30589,30642,31095]]]]},{"k":"G3957","v":[["*",[29,27,[[39,4,4,0,4,[[954,4,4,0,4]]],[40,5,4,4,8,[[970,5,4,4,8]]],[41,7,7,8,15,[[974,1,1,8,9],[994,6,6,9,15]]],[42,10,9,15,24,[[998,2,2,15,17],[1002,1,1,17,18],[1007,2,1,18,19],[1008,1,1,19,20],[1009,1,1,20,21],[1014,2,2,21,23],[1015,1,1,23,24]]],[43,1,1,24,25,[[1029,1,1,24,25]]],[45,1,1,25,26,[[1066,1,1,25,26]]],[57,1,1,26,27,[[1143,1,1,26,27]]]],[24056,24071,24072,24073,24755,24766,24768,24770,25014,25865,25871,25872,25875,25877,25879,26108,26118,26261,26578,26581,26631,26813,26824,26839,27341,28461,30200]]],["Easter",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27341]]],["Passover",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25865]]],["passover",[27,25,[[39,4,4,0,4,[[954,4,4,0,4]]],[40,5,4,4,8,[[970,5,4,4,8]]],[41,6,6,8,14,[[974,1,1,8,9],[994,5,5,9,14]]],[42,10,9,14,23,[[998,2,2,14,16],[1002,1,1,16,17],[1007,2,1,17,18],[1008,1,1,18,19],[1009,1,1,19,20],[1014,2,2,20,22],[1015,1,1,22,23]]],[45,1,1,23,24,[[1066,1,1,23,24]]],[57,1,1,24,25,[[1143,1,1,24,25]]]],[24056,24071,24072,24073,24755,24766,24768,24770,25014,25871,25872,25875,25877,25879,26108,26118,26261,26578,26581,26631,26813,26824,26839,28461,30200]]]]},{"k":"G3958","v":[["*",[42,41,[[39,4,4,0,4,[[944,1,1,0,1],[945,2,2,1,3],[955,1,1,3,4]]],[40,3,3,4,7,[[961,1,1,4,5],[964,1,1,5,6],[965,1,1,6,7]]],[41,6,6,7,13,[[981,1,1,7,8],[985,1,1,8,9],[989,1,1,9,10],[994,1,1,10,11],[996,2,2,11,13]]],[43,5,5,13,18,[[1018,1,1,13,14],[1020,1,1,14,15],[1026,1,1,15,16],[1034,1,1,16,17],[1045,1,1,17,18]]],[45,1,1,18,19,[[1073,1,1,18,19]]],[46,1,1,19,20,[[1078,1,1,19,20]]],[47,1,1,20,21,[[1093,1,1,20,21]]],[49,1,1,21,22,[[1103,1,1,21,22]]],[51,1,1,22,23,[[1112,1,1,22,23]]],[52,1,1,23,24,[[1116,1,1,23,24]]],[54,1,1,24,25,[[1125,1,1,24,25]]],[57,4,4,25,29,[[1134,1,1,25,26],[1137,1,1,26,27],[1141,1,1,27,28],[1145,1,1,28,29]]],[59,12,11,29,40,[[1152,4,4,29,33],[1153,3,3,33,36],[1154,4,3,36,39],[1155,1,1,39,40]]],[65,1,1,40,41,[[1168,1,1,40,41]]]],[23693,23712,23715,24148,24390,24531,24550,25323,25520,25676,25879,26017,26037,26926,27014,27232,27526,27904,28660,28806,29106,29390,29584,29654,29821,29995,30038,30131,30253,30418,30419,30420,30422,30438,30441,30442,30447,30461,30465,30475,30727]]],["felt",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27904]]],["passion",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26926]]],["suffer",[21,21,[[39,2,2,0,2,[[944,1,1,0,1],[945,1,1,1,2]]],[40,2,2,2,4,[[964,1,1,2,3],[965,1,1,3,4]]],[41,4,4,4,8,[[981,1,1,4,5],[989,1,1,5,6],[994,1,1,6,7],[996,1,1,7,8]]],[43,2,2,8,10,[[1020,1,1,8,9],[1026,1,1,9,10]]],[45,1,1,10,11,[[1073,1,1,10,11]]],[46,1,1,11,12,[[1078,1,1,11,12]]],[49,1,1,12,13,[[1103,1,1,12,13]]],[52,1,1,13,14,[[1116,1,1,13,14]]],[54,1,1,14,15,[[1125,1,1,14,15]]],[59,5,5,15,20,[[1152,1,1,15,16],[1153,2,2,16,18],[1154,2,2,18,20]]],[65,1,1,20,21,[[1168,1,1,20,21]]]],[23693,23712,24531,24550,25323,25676,25879,26037,27014,27232,28660,28806,29390,29654,29821,30419,30438,30441,30461,30465,30727]]],["suffered",[17,16,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,2,2,2,4,[[985,1,1,2,3],[996,1,1,3,4]]],[43,1,1,4,5,[[1034,1,1,4,5]]],[47,1,1,5,6,[[1093,1,1,5,6]]],[51,1,1,6,7,[[1112,1,1,6,7]]],[57,4,4,7,11,[[1134,1,1,7,8],[1137,1,1,8,9],[1141,1,1,9,10],[1145,1,1,10,11]]],[59,6,5,11,16,[[1152,2,2,11,13],[1153,1,1,13,14],[1154,2,1,14,15],[1155,1,1,15,16]]]],[24148,24390,25520,26017,27526,29106,29584,29995,30038,30131,30253,30420,30422,30442,30447,30475]]],["suffering",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30418]]],["vexed",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23715]]]]},{"k":"G3959","v":[["Patara",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27665]]]]},{"k":"G3960","v":[["*",[10,10,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,2,2,3,5,[[994,2,2,3,5]]],[43,3,3,5,8,[[1024,1,1,5,6],[1029,2,2,6,8]]],[65,2,2,8,10,[[1177,1,1,8,9],[1185,1,1,9,10]]]],[24085,24105,24781,25913,25914,27140,27344,27360,30878,31032]]],["smite",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[65,2,2,3,5,[[1177,1,1,3,4],[1185,1,1,4,5]]]],[24085,24781,25913,30878,31032]]],["smote",[4,4,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,3,3,1,4,[[1024,1,1,1,2],[1029,2,2,2,4]]]],[25914,27140,27344,27360]]],["struck",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24105]]]]},{"k":"G3961","v":[["*",[5,5,[[41,2,2,0,2,[[982,1,1,0,1],[993,1,1,1,2]]],[65,3,3,2,5,[[1177,1,1,2,3],[1180,1,1,3,4],[1185,1,1,4,5]]]],[25382,25850,30874,30946,31032]]],["down",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25850]]],["foot",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30874]]],["tread",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25382]]],["treadeth",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31032]]],["trodden",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30946]]]]},{"k":"G3962","v":[["*",[419,372,[[39,63,57,0,57,[[930,1,1,0,1],[931,1,1,1,2],[932,2,2,2,4],[933,3,3,4,7],[934,12,10,7,17],[935,2,2,17,19],[936,1,1,19,20],[938,7,7,20,27],[939,5,3,27,30],[940,1,1,30,31],[941,1,1,31,32],[943,5,4,32,36],[944,2,2,36,38],[946,4,4,38,42],[947,3,3,42,45],[948,1,1,45,46],[949,1,1,46,47],[951,4,3,47,50],[952,1,1,50,51],[953,1,1,51,52],[954,4,4,52,56],[956,1,1,56,57]]],[40,19,18,57,75,[[957,1,1,57,58],[961,1,1,58,59],[963,4,3,59,62],[964,1,1,62,63],[965,2,2,63,65],[966,3,3,65,68],[967,3,3,68,71],[969,2,2,71,73],[970,1,1,73,74],[971,1,1,74,75]]],[41,55,47,75,122,[[973,8,8,75,83],[974,2,2,83,85],[975,1,1,85,86],[978,3,3,86,89],[980,1,1,89,90],[981,3,3,90,93],[982,5,2,93,95],[983,5,5,95,100],[984,4,3,100,103],[986,1,1,103,104],[987,12,9,104,113],[988,4,3,113,116],[990,1,1,116,117],[994,2,2,117,119],[995,2,2,119,121],[996,1,1,121,122]]],[42,138,115,122,237,[[997,2,2,122,124],[998,1,1,124,125],[999,1,1,125,126],[1000,6,5,126,131],[1001,15,13,131,144],[1002,15,13,144,157],[1003,1,1,157,158],[1004,21,15,158,173],[1006,12,10,173,183],[1007,1,1,183,184],[1008,5,5,184,189],[1009,2,2,189,191],[1010,23,17,191,208],[1011,10,9,208,217],[1012,12,11,217,228],[1013,6,6,228,234],[1014,1,1,234,235],[1016,4,2,235,237]]],[43,35,33,237,270,[[1018,2,2,237,239],[1019,1,1,239,240],[1020,3,3,240,243],[1022,1,1,243,244],[1024,17,15,244,259],[1030,3,3,259,262],[1032,1,1,262,263],[1033,2,2,263,265],[1039,2,2,265,267],[1043,1,1,267,268],[1045,2,2,268,270]]],[44,15,14,270,284,[[1046,1,1,270,271],[1049,7,6,271,277],[1051,1,1,277,278],[1053,1,1,278,279],[1054,2,2,279,281],[1056,1,1,281,282],[1060,2,2,282,284]]],[45,6,6,284,290,[[1062,1,1,284,285],[1065,1,1,285,286],[1066,1,1,286,287],[1069,1,1,287,288],[1071,1,1,288,289],[1076,1,1,289,290]]],[46,5,4,290,294,[[1078,3,2,290,292],[1083,1,1,292,293],[1088,1,1,293,294]]],[47,5,5,294,299,[[1091,3,3,294,297],[1094,2,2,297,299]]],[48,11,11,299,310,[[1097,3,3,299,302],[1098,1,1,302,303],[1099,1,1,303,304],[1100,1,1,304,305],[1101,2,2,305,307],[1102,3,3,307,310]]],[49,4,4,310,314,[[1103,1,1,310,311],[1104,2,2,311,313],[1106,1,1,313,314]]],[50,6,6,314,320,[[1107,3,3,314,317],[1108,1,1,317,318],[1109,2,2,318,320]]],[51,6,5,320,325,[[1111,3,2,320,322],[1112,1,1,322,323],[1113,2,2,323,325]]],[52,3,3,325,328,[[1116,2,2,325,327],[1117,1,1,327,328]]],[53,2,2,328,330,[[1119,1,1,328,329],[1123,1,1,329,330]]],[54,1,1,330,331,[[1125,1,1,330,331]]],[55,1,1,331,332,[[1129,1,1,331,332]]],[56,1,1,332,333,[[1132,1,1,332,333]]],[57,9,8,333,341,[[1133,2,2,333,335],[1135,1,1,335,336],[1139,1,1,336,337],[1140,1,1,337,338],[1143,1,1,338,339],[1144,3,2,339,341]]],[58,4,4,341,345,[[1146,2,2,341,343],[1147,1,1,343,344],[1148,1,1,344,345]]],[59,3,3,345,348,[[1151,3,3,345,348]]],[60,2,2,348,350,[[1156,1,1,348,349],[1158,1,1,349,350]]],[61,15,13,350,363,[[1159,2,2,350,352],[1160,10,8,352,360],[1161,1,1,360,361],[1162,1,1,361,362],[1163,1,1,362,363]]],[62,4,3,363,366,[[1164,4,3,363,366]]],[64,1,1,366,367,[[1166,1,1,366,367]]],[65,5,5,367,372,[[1167,1,1,367,368],[1168,1,1,368,369],[1169,2,2,369,371],[1180,1,1,371,372]]]],[23191,23201,23230,23231,23250,23279,23282,23283,23286,23288,23290,23291,23296,23297,23300,23308,23314,23327,23337,23366,23437,23438,23446,23449,23450,23452,23454,23484,23485,23486,23539,23582,23637,23638,23639,23646,23689,23699,23737,23741,23746,23762,23767,23781,23791,23815,23857,23927,23948,23950,23993,24042,24083,24093,24096,24107,24214,24235,24404,24473,24474,24475,24538,24559,24562,24595,24607,24617,24650,24665,24666,24729,24749,24790,24847,24910,24925,24948,24952,24955,24960,24965,24966,25021,25022,25033,25169,25172,25182,25296,25327,25343,25360,25384,25385,25407,25416,25418,25452,25453,25489,25491,25512,25579,25600,25605,25606,25608,25609,25610,25615,25616,25617,25644,25647,25650,25708,25893,25906,25969,25981,26040,26058,26062,26111,26155,26168,26176,26177,26179,26209,26227,26228,26229,26230,26231,26232,26233,26236,26240,26246,26247,26253,26255,26284,26288,26289,26294,26296,26299,26301,26302,26303,26306,26314,26315,26322,26350,26397,26399,26400,26408,26409,26410,26419,26420,26422,26423,26425,26430,26434,26435,26437,26496,26498,26499,26506,26510,26511,26513,26517,26518,26519,26564,26606,26607,26608,26629,26630,26631,26633,26670,26674,26675,26676,26677,26678,26679,26680,26681,26684,26688,26689,26691,26692,26694,26696,26699,26700,26707,26708,26709,26714,26715,26722,26723,26725,26729,26736,26741,26742,26743,26749,26751,26752,26753,26754,26758,26760,26764,26770,26780,26783,26784,26796,26884,26888,26927,26930,26982,27009,27018,27021,27089,27118,27120,27127,27128,27130,27131,27135,27136,27148,27154,27155,27160,27161,27167,27168,27379,27394,27398,27452,27484,27486,27705,27718,27829,27907,27924,27937,28023,28033,28034,28038,28039,28040,28072,28131,28160,28165,28237,28309,28311,28366,28448,28455,28533,28568,28742,28802,28803,28916,29020,29058,29060,29061,29133,29137,29208,29209,29223,29247,29265,29278,29324,29335,29339,29341,29360,29363,29402,29413,29462,29467,29468,29477,29496,29534,29538,29561,29563,29581,29601,29603,29650,29651,29677,29698,29764,29811,29896,29941,29964,29968,30004,30074,30101,30195,30219,30221,30283,30293,30314,30328,30376,30377,30391,30496,30526,30542,30543,30551,30563,30564,30565,30566,30572,30573,30574,30580,30617,30631,30648,30649,30654,30673,30703,30744,30751,30767,30927]]],["+",[6,6,[[41,3,3,0,3,[[974,1,1,0,1],[984,1,1,1,2],[987,1,1,2,3]]],[42,2,2,3,5,[[1000,1,1,3,4],[1013,1,1,4,5]]],[44,1,1,5,6,[[1056,1,1,5,6]]]],[25022,25491,25616,26179,26784,28237]]],["Father",[255,227,[[39,43,39,0,39,[[933,3,3,0,3],[934,12,10,3,13],[935,2,2,13,15],[938,4,4,15,19],[939,5,3,19,22],[940,1,1,22,23],[941,1,1,23,24],[943,1,1,24,25],[944,2,2,25,27],[946,4,4,27,31],[948,1,1,31,32],[951,1,1,32,33],[952,1,1,33,34],[953,1,1,34,35],[954,3,3,35,38],[956,1,1,38,39]]],[40,5,5,39,44,[[964,1,1,39,40],[967,2,2,40,42],[969,1,1,42,43],[970,1,1,43,44]]],[41,18,15,44,59,[[978,1,1,44,45],[982,5,2,45,47],[983,2,2,47,49],[984,1,1,49,50],[987,3,3,50,53],[988,1,1,53,54],[994,2,2,54,56],[995,2,2,56,58],[996,1,1,58,59]]],[42,111,94,59,153,[[997,2,2,59,61],[999,1,1,61,62],[1000,2,2,62,64],[1001,14,12,64,76],[1002,10,8,76,84],[1004,13,11,84,95],[1006,10,9,95,104],[1007,1,1,104,105],[1008,5,5,105,110],[1009,2,2,110,112],[1010,21,15,112,127],[1011,8,7,127,134],[1012,12,11,134,145],[1013,5,5,145,150],[1014,1,1,150,151],[1016,4,2,151,153]]],[43,3,3,153,156,[[1018,2,2,153,155],[1019,1,1,155,156]]],[44,4,4,156,160,[[1046,1,1,156,157],[1051,1,1,157,158],[1053,1,1,158,159],[1060,1,1,159,160]]],[45,3,3,160,163,[[1062,1,1,160,161],[1069,1,1,161,162],[1076,1,1,162,163]]],[46,5,4,163,167,[[1078,3,2,163,165],[1083,1,1,165,166],[1088,1,1,166,167]]],[47,4,4,167,171,[[1091,3,3,167,170],[1094,1,1,170,171]]],[48,8,8,171,179,[[1097,3,3,171,174],[1098,1,1,174,175],[1099,1,1,175,176],[1100,1,1,176,177],[1101,1,1,177,178],[1102,1,1,178,179]]],[49,3,3,179,182,[[1103,1,1,179,180],[1104,1,1,180,181],[1106,1,1,181,182]]],[50,5,5,182,187,[[1107,3,3,182,185],[1108,1,1,185,186],[1109,1,1,186,187]]],[51,5,4,187,191,[[1111,3,2,187,189],[1113,2,2,189,191]]],[52,3,3,191,194,[[1116,2,2,191,193],[1117,1,1,193,194]]],[53,1,1,194,195,[[1119,1,1,194,195]]],[54,1,1,195,196,[[1125,1,1,195,196]]],[55,1,1,196,197,[[1129,1,1,196,197]]],[56,1,1,197,198,[[1132,1,1,197,198]]],[57,2,2,198,200,[[1133,1,1,198,199],[1144,1,1,199,200]]],[58,3,3,200,203,[[1146,2,2,200,202],[1148,1,1,202,203]]],[59,3,3,203,206,[[1151,3,3,203,206]]],[60,1,1,206,207,[[1156,1,1,206,207]]],[61,13,12,207,219,[[1159,2,2,207,209],[1160,8,7,209,216],[1161,1,1,216,217],[1162,1,1,217,218],[1163,1,1,218,219]]],[62,4,3,219,222,[[1164,4,3,219,222]]],[64,1,1,222,223,[[1166,1,1,222,223]]],[65,4,4,223,227,[[1167,1,1,223,224],[1168,1,1,224,225],[1169,2,2,225,227]]]],[23250,23279,23282,23283,23286,23288,23290,23291,23296,23297,23300,23308,23314,23327,23337,23437,23446,23449,23450,23484,23485,23486,23539,23582,23646,23689,23699,23737,23741,23746,23762,23815,23927,23993,24042,24093,24096,24107,24214,24538,24665,24666,24749,24790,25182,25384,25385,25407,25418,25489,25600,25606,25609,25644,25893,25906,25969,25981,26040,26058,26062,26155,26177,26179,26227,26228,26229,26230,26231,26232,26233,26236,26240,26246,26247,26255,26284,26289,26294,26301,26302,26303,26314,26322,26397,26399,26400,26408,26409,26410,26419,26422,26423,26430,26435,26496,26498,26499,26510,26511,26513,26517,26518,26519,26564,26606,26607,26608,26629,26630,26631,26633,26674,26675,26676,26677,26678,26679,26680,26681,26684,26688,26689,26691,26694,26696,26699,26700,26707,26714,26715,26722,26723,26725,26729,26736,26741,26742,26743,26749,26751,26752,26753,26754,26758,26760,26764,26770,26780,26783,26796,26884,26888,26927,26930,26982,27937,28072,28131,28309,28366,28533,28742,28802,28803,28916,29020,29058,29060,29061,29137,29208,29209,29223,29247,29265,29278,29324,29360,29363,29402,29462,29467,29468,29477,29496,29534,29561,29563,29601,29603,29650,29651,29677,29698,29811,29896,29941,29968,30221,30283,30293,30328,30376,30377,30391,30496,30542,30543,30551,30563,30565,30566,30572,30573,30574,30580,30617,30631,30648,30649,30654,30673,30703,30744,30751,30767]]],["Father's",[11,11,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[42,8,8,2,10,[[998,1,1,2,3],[1001,1,1,3,4],[1002,1,1,4,5],[1006,2,2,5,7],[1010,2,2,7,9],[1011,1,1,9,10]]],[65,1,1,10,11,[[1180,1,1,10,11]]]],[24083,25327,26111,26253,26296,26506,26510,26670,26692,26709,30927]]],["Fathers",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29538]]],["They",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23857]]],["father",[88,81,[[39,16,15,0,15,[[930,1,1,0,1],[931,1,1,1,2],[932,2,2,2,4],[936,1,1,4,5],[938,3,3,5,8],[943,4,3,8,11],[947,3,3,11,14],[951,1,1,14,15]]],[40,14,13,15,28,[[957,1,1,15,16],[961,1,1,16,17],[963,4,3,17,20],[965,2,2,20,22],[966,3,3,22,25],[967,1,1,25,26],[969,1,1,26,27],[971,1,1,27,28]]],[41,24,22,28,50,[[973,5,5,28,33],[974,1,1,33,34],[975,1,1,34,35],[980,1,1,35,36],[981,2,2,36,38],[983,1,1,38,39],[984,2,1,39,40],[986,1,1,40,41],[987,7,6,41,47],[988,2,2,47,49],[990,1,1,49,50]]],[42,11,9,50,59,[[1000,2,2,50,52],[1002,1,1,52,53],[1004,8,6,53,59]]],[43,6,6,59,65,[[1024,3,3,59,62],[1033,2,2,62,64],[1045,1,1,64,65]]],[44,8,7,65,72,[[1049,7,6,65,71],[1054,1,1,71,72]]],[47,1,1,72,73,[[1094,1,1,72,73]]],[48,2,2,73,75,[[1101,1,1,73,74],[1102,1,1,74,75]]],[49,1,1,75,76,[[1104,1,1,75,76]]],[51,1,1,76,77,[[1112,1,1,76,77]]],[53,1,1,77,78,[[1123,1,1,77,78]]],[57,2,2,78,80,[[1139,1,1,78,79],[1144,1,1,79,80]]],[58,1,1,80,81,[[1147,1,1,80,81]]]],[23191,23201,23230,23231,23366,23438,23452,23454,23637,23638,23639,23767,23781,23791,23927,24235,24404,24473,24474,24475,24559,24562,24595,24607,24617,24650,24729,24847,24925,24952,24955,24960,24966,25021,25033,25296,25343,25360,25416,25512,25579,25600,25606,25608,25610,25615,25617,25647,25650,25708,26168,26209,26299,26419,26420,26422,26425,26434,26437,27118,27120,27130,27484,27486,27907,28023,28033,28034,28038,28039,28040,28165,29133,29335,29339,29413,29581,29764,30074,30219,30314]]],["father's",[4,4,[[41,2,2,0,2,[[987,1,1,0,1],[988,1,1,1,2]]],[43,1,1,2,3,[[1024,1,1,2,3]]],[45,1,1,3,4,[[1066,1,1,3,4]]]],[25605,25647,27136,28455]]],["fathers",[51,50,[[39,2,2,0,2,[[951,2,2,0,2]]],[41,7,7,2,9,[[973,3,3,2,5],[978,2,2,5,7],[983,2,2,7,9]]],[42,5,5,9,14,[[1000,1,1,9,10],[1002,3,3,10,13],[1003,1,1,13,14]]],[43,25,24,14,38,[[1020,3,3,14,17],[1022,1,1,17,18],[1024,13,12,18,30],[1030,3,3,30,33],[1032,1,1,33,34],[1039,2,2,34,36],[1043,1,1,36,37],[1045,1,1,37,38]]],[44,2,2,38,40,[[1054,1,1,38,39],[1060,1,1,39,40]]],[45,2,2,40,42,[[1065,1,1,40,41],[1071,1,1,41,42]]],[48,1,1,42,43,[[1102,1,1,42,43]]],[57,4,4,43,47,[[1133,1,1,43,44],[1135,1,1,44,45],[1140,1,1,45,46],[1144,1,1,46,47]]],[60,1,1,47,48,[[1158,1,1,47,48]]],[61,2,2,48,50,[[1160,2,2,48,50]]]],[23948,23950,24910,24948,24965,25169,25172,25452,25453,26176,26288,26306,26315,26350,27009,27018,27021,27089,27118,27127,27128,27131,27135,27148,27154,27155,27160,27161,27167,27168,27379,27394,27398,27452,27705,27718,27829,27924,28160,28311,28448,28568,29341,29964,30004,30101,30221,30526,30563,30564]]],["hath",[1,1,[[42,1,1,0,1,[[1011,1,1,0,1]]]],[26708]]],["parents",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30195]]]]},{"k":"G3963","v":[["Patmos",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30706]]]]},{"k":"G3964","v":[["fathers",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29705]]]]},{"k":"G3965","v":[["*",[3,3,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1020,1,1,1,2]]],[48,1,1,2,3,[[1099,1,1,2,3]]]],[24977,27021,29266]]],["family",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29266]]],["kindreds",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27021]]],["lineage",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24977]]]]},{"k":"G3966","v":[["*",[4,4,[[43,3,3,0,3,[[1019,1,1,0,1],[1024,2,2,1,3]]],[57,1,1,3,4,[[1139,1,1,3,4]]]],[26978,27124,27125,30068]]],["patriarch",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[26978,30068]]],["patriarchs",[2,2,[[43,2,2,0,2,[[1024,2,2,0,2]]]],[27124,27125]]]]},{"k":"G3967","v":[["fathers",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29071]]]]},{"k":"G3968","v":[["country",[8,8,[[39,2,2,0,2,[[941,2,2,0,2]]],[40,2,2,2,4,[[962,2,2,2,4]]],[41,2,2,4,6,[[976,2,2,4,6]]],[42,1,1,6,7,[[1000,1,1,6,7]]],[57,1,1,7,8,[[1143,1,1,7,8]]]],[23593,23596,24408,24411,25086,25087,26200,30186]]]]},{"k":"G3969","v":[["Patrobas",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28350]]]]},{"k":"G3970","v":[["fathers",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30392]]]]},{"k":"G3971","v":[["fathers",[3,3,[[43,3,3,0,3,[[1039,1,1,0,1],[1041,1,1,1,2],[1045,1,1,2,3]]]],[27707,27783,27916]]]]},{"k":"G3972","v":[["*",[163,159,[[43,133,130,0,130,[[1030,8,8,0,8],[1031,5,5,8,13],[1032,9,8,13,21],[1033,11,11,21,32],[1034,9,9,32,41],[1035,6,6,41,47],[1036,10,10,47,57],[1037,7,7,57,64],[1038,12,12,64,76],[1039,3,3,76,79],[1040,16,15,79,94],[1041,6,6,94,100],[1042,10,10,100,110],[1043,5,4,110,114],[1044,9,9,114,123],[1045,7,7,123,130]]],[44,1,1,130,131,[[1046,1,1,130,131]]],[45,8,7,131,138,[[1062,4,3,131,134],[1064,3,3,134,137],[1077,1,1,137,138]]],[46,2,2,138,140,[[1078,1,1,138,139],[1087,1,1,139,140]]],[47,2,2,140,142,[[1091,1,1,140,141],[1095,1,1,141,142]]],[48,2,2,142,144,[[1097,1,1,142,143],[1099,1,1,143,144]]],[49,1,1,144,145,[[1103,1,1,144,145]]],[50,3,3,145,148,[[1107,2,2,145,147],[1110,1,1,147,148]]],[51,2,2,148,150,[[1111,1,1,148,149],[1112,1,1,149,150]]],[52,2,2,150,152,[[1116,1,1,150,151],[1118,1,1,151,152]]],[53,1,1,152,153,[[1119,1,1,152,153]]],[54,1,1,153,154,[[1125,1,1,153,154]]],[55,1,1,154,155,[[1129,1,1,154,155]]],[56,3,3,155,158,[[1132,3,3,155,158]]],[60,1,1,158,159,[[1158,1,1,158,159]]]],[27369,27371,27375,27378,27405,27407,27408,27412,27423,27425,27426,27428,27433,27444,27454,27464,27467,27477,27478,27480,27482,27486,27492,27497,27500,27501,27502,27508,27511,27512,27519,27520,27525,27527,27533,27536,27537,27538,27539,27545,27556,27558,27562,27566,27569,27571,27575,27586,27589,27591,27596,27598,27600,27606,27611,27614,27615,27627,27633,27635,27636,27639,27642,27663,27668,27672,27675,27677,27682,27690,27693,27694,27696,27701,27703,27704,27729,27732,27734,27735,27737,27739,27740,27744,27745,27746,27748,27750,27751,27752,27754,27758,27765,27767,27770,27779,27792,27793,27795,27796,27798,27800,27802,27803,27805,27806,27810,27815,27817,27819,27824,27847,27851,27852,27856,27858,27864,27866,27876,27879,27886,27888,27898,27902,27907,27914,27915,27916,27924,27929,27931,28364,28375,28376,28414,28415,28432,28797,28801,28972,29058,29164,29207,29252,29362,29466,29488,29560,29561,29588,29650,29695,29697,29810,29893,29939,29947,29957,30537]]],["+",[4,4,[[43,3,3,0,3,[[1038,1,1,0,1],[1039,1,1,1,2],[1040,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]]],[27672,27734,27758,29588]]],["Paul",[153,150,[[43,124,122,0,122,[[1030,7,7,0,7],[1031,5,5,7,12],[1032,9,8,12,20],[1033,11,11,20,31],[1034,9,9,31,40],[1035,6,6,40,46],[1036,9,9,46,55],[1037,6,6,55,61],[1038,10,10,61,71],[1039,2,2,71,73],[1040,14,14,73,87],[1041,6,6,87,93],[1042,9,9,93,102],[1043,5,4,102,106],[1044,9,9,106,115],[1045,7,7,115,122]]],[44,1,1,122,123,[[1046,1,1,122,123]]],[45,8,7,123,130,[[1062,4,3,123,126],[1064,3,3,126,129],[1077,1,1,129,130]]],[46,2,2,130,132,[[1078,1,1,130,131],[1087,1,1,131,132]]],[47,2,2,132,134,[[1091,1,1,132,133],[1095,1,1,133,134]]],[48,2,2,134,136,[[1097,1,1,134,135],[1099,1,1,135,136]]],[49,1,1,136,137,[[1103,1,1,136,137]]],[50,3,3,137,140,[[1107,2,2,137,139],[1110,1,1,139,140]]],[51,1,1,140,141,[[1111,1,1,140,141]]],[52,2,2,141,143,[[1116,1,1,141,142],[1118,1,1,142,143]]],[53,1,1,143,144,[[1119,1,1,143,144]]],[54,1,1,144,145,[[1125,1,1,144,145]]],[55,1,1,145,146,[[1129,1,1,145,146]]],[56,3,3,146,149,[[1132,3,3,146,149]]],[60,1,1,149,150,[[1158,1,1,149,150]]]],[27371,27375,27378,27405,27407,27408,27412,27423,27425,27426,27428,27433,27444,27454,27464,27467,27477,27478,27480,27482,27486,27492,27497,27500,27501,27502,27508,27511,27512,27519,27520,27525,27527,27533,27536,27537,27538,27539,27545,27556,27558,27562,27566,27569,27571,27575,27586,27589,27591,27596,27598,27600,27606,27611,27615,27627,27633,27635,27636,27639,27642,27668,27677,27682,27690,27693,27694,27696,27701,27703,27704,27729,27732,27735,27737,27739,27740,27744,27745,27746,27748,27750,27751,27752,27754,27765,27767,27770,27779,27792,27793,27795,27796,27798,27800,27802,27803,27805,27806,27815,27817,27819,27824,27847,27851,27852,27856,27858,27864,27866,27876,27879,27886,27888,27898,27902,27907,27914,27915,27916,27924,27929,27931,28364,28375,28376,28414,28415,28432,28797,28801,28972,29058,29164,29207,29252,29362,29466,29488,29560,29561,29650,29695,29697,29810,29893,29939,29947,29957,30537]]],["Paul's",[5,5,[[43,5,5,0,5,[[1036,1,1,0,1],[1037,1,1,1,2],[1038,1,1,2,3],[1040,1,1,3,4],[1042,1,1,4,5]]]],[27614,27663,27675,27750,27810]]],["Paulus",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27369]]]]},{"k":"G3973","v":[["*",[15,15,[[41,3,3,0,3,[[977,1,1,0,1],[980,1,1,1,2],[983,1,1,2,3]]],[43,6,6,3,9,[[1022,1,1,3,4],[1023,1,1,4,5],[1030,1,1,5,6],[1037,2,2,6,8],[1038,1,1,8,9]]],[45,1,1,9,10,[[1074,1,1,9,10]]],[48,1,1,10,11,[[1097,1,1,10,11]]],[50,1,1,11,12,[[1107,1,1,11,12]]],[57,1,1,12,13,[[1142,1,1,12,13]]],[59,2,2,13,15,[[1153,1,1,13,14],[1154,1,1,14,15]]]],[25111,25269,25406,27101,27114,27372,27627,27657,27696,28673,29222,29474,30135,30434,30447]]],["+",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30135]]],["Cease",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29222]]],["cease",[3,3,[[43,1,1,0,1,[[1030,1,1,0,1]]],[45,1,1,1,2,[[1074,1,1,1,2]]],[50,1,1,2,3,[[1107,1,1,2,3]]]],[27372,28673,29474]]],["ceased",[6,6,[[41,2,2,0,2,[[980,1,1,0,1],[983,1,1,1,2]]],[43,3,3,2,5,[[1022,1,1,2,3],[1037,2,2,3,5]]],[59,1,1,5,6,[[1154,1,1,5,6]]]],[25269,25406,27101,27627,27657,30447]]],["ceaseth",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27114]]],["left",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[25111,27696]]],["refrain",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30434]]]]},{"k":"G3974","v":[["Paphos",[2,2,[[43,2,2,0,2,[[1030,2,2,0,2]]]],[27368,27375]]]]},{"k":"G3975","v":[["gross",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]]],[23554,27926]]]]},{"k":"G3976","v":[["fetters",[3,2,[[40,2,1,0,1,[[961,2,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24368,25274]]]]},{"k":"G3977","v":[["+",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25163]]]]},{"k":"G3978","v":[["afoot",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27639]]]]},{"k":"G3979","v":[["*",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]]],[23610,24440]]],["afoot",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24440]]],["foot",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23610]]]]},{"k":"G3980","v":[["*",[4,4,[[43,3,3,0,3,[[1022,2,2,0,2],[1044,1,1,2,3]]],[55,1,1,3,4,[[1131,1,1,3,4]]]],[27088,27091,27876,29924]]],["hearkened",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27876]]],["magistrates",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29924]]],["obey",[2,2,[[43,2,2,0,2,[[1022,2,2,0,2]]]],[27088,27091]]]]},{"k":"G3981","v":[["enticing",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28398]]]]},{"k":"G3982","v":[["*",[55,55,[[39,3,3,0,3,[[955,2,2,0,2],[956,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,4,4,4,8,[[983,1,1,4,5],[988,1,1,5,6],[990,1,1,6,7],[992,1,1,7,8]]],[43,17,17,8,25,[[1022,3,3,8,11],[1029,1,1,11,12],[1030,1,1,12,13],[1031,1,1,13,14],[1034,1,1,14,15],[1035,1,1,15,16],[1036,2,2,16,18],[1038,1,1,18,19],[1040,1,1,19,20],[1043,2,2,20,22],[1044,1,1,22,23],[1045,2,2,23,25]]],[44,5,5,25,30,[[1047,2,2,25,27],[1053,1,1,27,28],[1059,1,1,28,29],[1060,1,1,29,30]]],[46,4,4,30,34,[[1078,1,1,30,31],[1079,1,1,31,32],[1082,1,1,32,33],[1087,1,1,33,34]]],[47,4,4,34,38,[[1091,1,1,34,35],[1093,1,1,35,36],[1095,2,2,36,38]]],[49,6,6,38,44,[[1103,3,3,38,41],[1104,1,1,41,42],[1105,2,2,42,44]]],[52,1,1,44,45,[[1118,1,1,44,45]]],[54,2,2,45,47,[[1125,2,2,45,47]]],[56,1,1,47,48,[[1132,1,1,47,48]]],[57,5,5,48,53,[[1134,1,1,48,49],[1138,1,1,49,50],[1143,1,1,50,51],[1145,2,2,51,53]]],[58,1,1,53,54,[[1148,1,1,53,54]]],[61,1,1,54,55,[[1161,1,1,54,55]]]],[24149,24172,24209,24612,25427,25651,25697,25785,27095,27096,27099,27357,27405,27433,27527,27561,27593,27611,27678,27755,27849,27851,27866,27922,27923,27970,27981,28154,28294,28317,28809,28827,28888,28978,29067,29103,29169,29172,29367,29375,29386,29415,29424,29425,29682,29814,29821,29959,29990,30053,30185,30258,30259,30322,30598]]],["+",[4,4,[[43,1,1,0,1,[[1029,1,1,0,1]]],[49,2,2,1,3,[[1103,1,1,1,2],[1105,1,1,2,3]]],[57,1,1,3,4,[[1134,1,1,3,4]]]],[27357,29386,29424,29990]]],["Obey",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30258]]],["agreed",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27099]]],["assure",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30598]]],["believed",[3,3,[[43,3,3,0,3,[[1034,1,1,0,1],[1044,1,1,1,2],[1045,1,1,2,3]]]],[27527,27866,27923]]],["confidence",[4,4,[[46,1,1,0,1,[[1079,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[52,1,1,2,3,[[1118,1,1,2,3]]],[56,1,1,3,4,[[1132,1,1,3,4]]]],[28827,29172,29682,29959]]],["confident",[3,3,[[44,1,1,0,1,[[1047,1,1,0,1]]],[49,2,2,1,3,[[1103,2,2,1,3]]]],[27981,29367,29375]]],["obey",[4,4,[[44,1,1,0,1,[[1047,1,1,0,1]]],[47,2,2,1,3,[[1093,1,1,1,2],[1095,1,1,2,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]]],[27970,29103,29169,30322]]],["obeyed",[2,2,[[43,2,2,0,2,[[1022,2,2,0,2]]]],[27095,27096]]],["persuade",[3,3,[[39,1,1,0,1,[[956,1,1,0,1]]],[46,1,1,1,2,[[1082,1,1,1,2]]],[47,1,1,2,3,[[1091,1,1,2,3]]]],[24209,28888,29067]]],["persuaded",[16,16,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,2,2,1,3,[[988,1,1,1,2],[992,1,1,2,3]]],[43,6,6,3,9,[[1030,1,1,3,4],[1031,1,1,4,5],[1035,1,1,5,6],[1036,1,1,6,7],[1038,1,1,7,8],[1043,1,1,8,9]]],[44,3,3,9,12,[[1053,1,1,9,10],[1059,1,1,10,11],[1060,1,1,11,12]]],[54,2,2,12,14,[[1125,2,2,12,14]]],[57,2,2,14,16,[[1138,1,1,14,15],[1143,1,1,15,16]]]],[24149,25651,25785,27405,27433,27561,27611,27678,27849,28154,28294,28317,29814,29821,30053,30185]]],["persuadest",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27851]]],["persuading",[2,2,[[43,2,2,0,2,[[1036,1,1,0,1],[1045,1,1,1,2]]]],[27593,27922]]],["trust",[6,6,[[40,1,1,0,1,[[966,1,1,0,1]]],[46,2,2,1,3,[[1078,1,1,1,2],[1087,1,1,2,3]]],[49,2,2,3,5,[[1104,1,1,3,4],[1105,1,1,4,5]]],[57,1,1,5,6,[[1145,1,1,5,6]]]],[24612,28809,28978,29415,29425,30259]]],["trusted",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[990,1,1,2,3]]]],[24172,25427,25697]]],["yield",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27755]]]]},{"k":"G3983","v":[["*",[23,23,[[39,9,9,0,9,[[932,1,1,0,1],[933,1,1,1,2],[940,2,2,2,4],[949,1,1,4,5],[953,4,4,5,9]]],[40,2,2,9,11,[[958,1,1,9,10],[967,1,1,10,11]]],[41,5,5,11,16,[[973,1,1,11,12],[976,1,1,12,13],[978,3,3,13,16]]],[42,1,1,16,17,[[1002,1,1,16,17]]],[44,1,1,17,18,[[1057,1,1,17,18]]],[45,3,3,18,21,[[1065,1,1,18,19],[1072,2,2,19,21]]],[49,1,1,21,22,[[1106,1,1,21,22]]],[65,1,1,22,23,[[1173,1,1,22,23]]]],[23211,23240,23490,23492,23844,24043,24045,24050,24052,24285,24652,24946,25065,25149,25167,25171,26292,28265,28444,28621,28634,29454,30826]]],["+",[1,1,[[39,1,1,0,1,[[932,1,1,0,1]]]],[23211]]],["hunger",[8,8,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,2,2,1,3,[[978,2,2,1,3]]],[42,1,1,3,4,[[1002,1,1,3,4]]],[44,1,1,4,5,[[1057,1,1,4,5]]],[45,2,2,5,7,[[1065,1,1,5,6],[1072,1,1,6,7]]],[65,1,1,7,8,[[1173,1,1,7,8]]]],[23240,25167,25171,26292,28265,28444,28634,30826]]],["hungered",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]]],[23844,25065]]],["hungred",[8,8,[[39,6,6,0,6,[[940,2,2,0,2],[953,4,4,2,6]]],[40,1,1,6,7,[[958,1,1,6,7]]],[41,1,1,7,8,[[978,1,1,7,8]]]],[23490,23492,24043,24045,24050,24052,24285,25149]]],["hungry",[4,4,[[40,1,1,0,1,[[967,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]]],[24652,24946,28621,29454]]]]},{"k":"G3984","v":[["*",[2,2,[[57,2,2,0,2,[[1143,2,2,0,2]]]],[30201,30208]]],["+",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30201]]],["trial",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30208]]]]},{"k":"G3985","v":[["*",[39,35,[[39,6,6,0,6,[[932,2,2,0,2],[944,1,1,2,3],[947,1,1,3,4],[950,2,2,4,6]]],[40,4,4,6,10,[[957,1,1,6,7],[964,1,1,7,8],[966,1,1,8,9],[968,1,1,9,10]]],[41,3,3,10,13,[[976,1,1,10,11],[983,1,1,11,12],[992,1,1,12,13]]],[42,2,2,13,15,[[1002,1,1,13,14],[1004,1,1,14,15]]],[43,4,4,15,19,[[1022,1,1,15,16],[1032,1,1,16,17],[1033,1,1,17,18],[1041,1,1,18,19]]],[45,3,3,19,22,[[1068,1,1,19,20],[1071,2,2,20,22]]],[46,1,1,22,23,[[1090,1,1,22,23]]],[47,1,1,23,24,[[1096,1,1,23,24]]],[51,2,1,24,25,[[1113,2,1,24,25]]],[57,6,5,25,30,[[1134,2,1,25,26],[1135,1,1,26,27],[1136,1,1,27,28],[1143,2,2,28,30]]],[58,4,2,30,32,[[1146,4,2,30,32]]],[65,3,3,32,35,[[1168,2,2,32,34],[1169,1,1,34,35]]]],[23210,23212,23673,23765,23890,23907,24228,24511,24590,24688,25065,25421,25802,26263,26387,27068,27452,27490,27775,28492,28576,28580,29048,29189,29595,29995,30004,30029,30189,30209,30279,30280,30719,30727,30756]]],["Examine",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29048]]],["about",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27775]]],["assayed",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27490]]],["prove",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26263]]],["tempt",[6,6,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[43,2,2,3,5,[[1022,1,1,3,4],[1032,1,1,4,5]]],[45,1,1,5,6,[[1068,1,1,5,6]]]],[23890,24688,25802,27068,27452,28492]]],["tempted",[15,13,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]],[45,2,2,3,5,[[1071,2,2,3,5]]],[47,1,1,5,6,[[1096,1,1,5,6]]],[51,1,1,6,7,[[1113,1,1,6,7]]],[57,5,4,7,11,[[1134,2,1,7,8],[1135,1,1,8,9],[1136,1,1,9,10],[1143,1,1,10,11]]],[58,3,2,11,13,[[1146,3,2,11,13]]]],[23210,24228,25065,28576,28580,29189,29595,29995,30004,30029,30209,30279,30280]]],["tempter",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[51,1,1,1,2,[[1113,1,1,1,2]]]],[23212,29595]]],["tempteth",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30279]]],["tempting",[7,7,[[39,3,3,0,3,[[944,1,1,0,1],[947,1,1,1,2],[950,1,1,2,3]]],[40,2,2,3,5,[[964,1,1,3,4],[966,1,1,4,5]]],[41,1,1,5,6,[[983,1,1,5,6]]],[42,1,1,6,7,[[1004,1,1,6,7]]]],[23673,23765,23907,24511,24590,25421,26387]]],["tried",[3,3,[[57,1,1,0,1,[[1143,1,1,0,1]]],[65,2,2,1,3,[[1168,2,2,1,3]]]],[30189,30719,30727]]],["try",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30756]]]]},{"k":"G3986","v":[["*",[21,20,[[39,2,2,0,2,[[934,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,6,6,3,9,[[976,1,1,3,4],[980,1,1,4,5],[983,1,1,5,6],[994,3,3,6,9]]],[43,1,1,9,10,[[1037,1,1,9,10]]],[45,2,1,10,11,[[1071,2,1,10,11]]],[47,1,1,11,12,[[1094,1,1,11,12]]],[53,1,1,12,13,[[1124,1,1,12,13]]],[57,1,1,13,14,[[1135,1,1,13,14]]],[58,2,2,14,16,[[1146,2,2,14,16]]],[59,2,2,16,18,[[1151,1,1,16,17],[1154,1,1,17,18]]],[60,1,1,18,19,[[1157,1,1,18,19]]],[65,1,1,19,20,[[1169,1,1,19,20]]]],[23295,24095,24792,25076,25258,25409,25892,25904,25910,27645,28580,29145,29797,30003,30268,30278,30380,30458,30509,30756]]],["+",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30458]]],["temptation",[15,14,[[39,2,2,0,2,[[934,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,5,5,3,8,[[976,1,1,3,4],[980,1,1,4,5],[983,1,1,5,6],[994,2,2,6,8]]],[45,2,1,8,9,[[1071,2,1,8,9]]],[47,1,1,9,10,[[1094,1,1,9,10]]],[53,1,1,10,11,[[1124,1,1,10,11]]],[57,1,1,11,12,[[1135,1,1,11,12]]],[58,1,1,12,13,[[1146,1,1,12,13]]],[65,1,1,13,14,[[1169,1,1,13,14]]]],[23295,24095,24792,25076,25258,25409,25904,25910,28580,29145,29797,30003,30278,30756]]],["temptations",[5,5,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,1,1,1,2,[[1037,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]],[60,1,1,4,5,[[1157,1,1,4,5]]]],[25892,27645,30268,30380,30509]]]]},{"k":"G3987","v":[["*",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1043,1,1,1,2]]]],[27242,27844]]],["about",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27844]]],["assayed",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27242]]]]},{"k":"G3988","v":[["persuasion",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29170]]]]},{"k":"G3989","v":[["*",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[23733,27860]]],["depth",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23733]]],["sea",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27860]]]]},{"k":"G3990","v":[["beheaded",[1,1,[[65,1,1,0,1,[[1186,1,1,0,1]]]],[31042]]]]},{"k":"G3991","v":[["fifth",[4,4,[[65,4,4,0,4,[[1172,1,1,0,1],[1175,1,1,1,2],[1182,1,1,2,3],[1187,1,1,3,4]]]],[30802,30841,30964,31073]]]]},{"k":"G3992","v":[["*",[81,80,[[39,4,4,0,4,[[930,1,1,0,1],[939,1,1,1,2],[942,1,1,2,3],[950,1,1,3,4]]],[40,1,1,4,5,[[961,1,1,4,5]]],[41,10,10,5,15,[[976,1,1,5,6],[979,3,3,6,9],[987,1,1,9,10],[988,2,2,10,12],[992,3,3,12,15]]],[42,33,32,15,47,[[997,2,2,15,17],[1000,1,1,17,18],[1001,4,4,18,22],[1002,4,4,22,26],[1003,4,4,26,30],[1004,4,4,30,34],[1005,1,1,34,35],[1008,3,3,35,38],[1009,3,2,38,40],[1010,2,2,40,42],[1011,2,2,42,44],[1012,2,2,44,46],[1016,1,1,46,47]]],[43,12,12,47,59,[[1027,3,3,47,50],[1028,1,1,50,51],[1032,2,2,51,53],[1036,1,1,53,54],[1037,1,1,54,55],[1040,1,1,55,56],[1042,3,3,56,59]]],[44,1,1,59,60,[[1053,1,1,59,60]]],[45,2,2,60,62,[[1065,1,1,60,61],[1077,1,1,61,62]]],[46,1,1,62,63,[[1086,1,1,62,63]]],[48,1,1,63,64,[[1102,1,1,63,64]]],[49,5,5,64,69,[[1104,4,4,64,68],[1106,1,1,68,69]]],[50,1,1,69,70,[[1110,1,1,69,70]]],[51,2,2,70,72,[[1113,2,2,70,72]]],[52,1,1,72,73,[[1117,1,1,72,73]]],[55,1,1,73,74,[[1131,1,1,73,74]]],[59,1,1,74,75,[[1152,1,1,74,75]]],[65,5,5,75,80,[[1167,1,1,75,76],[1177,1,1,76,77],[1180,2,2,77,79],[1188,1,1,79,80]]]],[23177,23461,23607,23879,24376,25089,25201,25205,25214,25603,25644,25647,25790,25791,25792,26066,26077,26190,26233,26234,26240,26247,26295,26296,26297,26301,26344,26346,26356,26361,26397,26399,26407,26410,26444,26624,26625,26629,26646,26650,26692,26694,26720,26725,26731,26733,26888,27264,27291,27292,27336,27464,27467,27616,27643,27764,27817,27821,27823,28119,28450,28779,28959,29359,29410,29414,29416,29419,29458,29550,29592,29595,29672,29935,30413,30708,30882,30941,30944,31096]]],["+",[4,4,[[41,2,2,0,2,[[992,2,2,0,2]]],[42,1,1,2,3,[[1016,1,1,2,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]]],[25790,25791,26888,29458]]],["Send",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]]],[24376,27291]]],["forth",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23879]]],["in",[2,2,[[65,2,2,0,2,[[1180,2,2,0,2]]]],[30941,30944]]],["send",[22,22,[[41,3,3,0,3,[[988,2,2,0,2],[992,1,1,2,3]]],[42,4,4,3,7,[[1009,1,1,3,4],[1010,1,1,4,5],[1011,1,1,5,6],[1012,1,1,6,7]]],[43,7,7,7,14,[[1027,1,1,7,8],[1028,1,1,8,9],[1032,2,2,9,11],[1042,3,3,11,14]]],[45,1,1,14,15,[[1077,1,1,14,15]]],[49,3,3,15,18,[[1104,3,3,15,18]]],[52,1,1,18,19,[[1117,1,1,18,19]]],[55,1,1,19,20,[[1131,1,1,19,20]]],[65,2,2,20,22,[[1167,1,1,20,21],[1177,1,1,21,22]]]],[25644,25647,25792,26650,26694,26725,26733,27264,27336,27464,27467,27817,27821,27823,28779,29410,29414,29416,29672,29935,30708,30882]]],["sending",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28119]]],["sent",[49,49,[[39,3,3,0,3,[[930,1,1,0,1],[939,1,1,1,2],[942,1,1,2,3]]],[41,5,5,3,8,[[976,1,1,3,4],[979,3,3,4,7],[987,1,1,7,8]]],[42,28,28,8,36,[[997,2,2,8,10],[1000,1,1,10,11],[1001,4,4,11,15],[1002,4,4,15,19],[1003,4,4,19,23],[1004,4,4,23,27],[1005,1,1,27,28],[1008,3,3,28,31],[1009,2,2,31,33],[1010,1,1,33,34],[1011,1,1,34,35],[1012,1,1,35,36]]],[43,4,4,36,40,[[1027,1,1,36,37],[1036,1,1,37,38],[1037,1,1,38,39],[1040,1,1,39,40]]],[45,1,1,40,41,[[1065,1,1,40,41]]],[46,1,1,41,42,[[1086,1,1,41,42]]],[48,1,1,42,43,[[1102,1,1,42,43]]],[49,1,1,43,44,[[1104,1,1,43,44]]],[50,1,1,44,45,[[1110,1,1,44,45]]],[51,2,2,45,47,[[1113,2,2,45,47]]],[59,1,1,47,48,[[1152,1,1,47,48]]],[65,1,1,48,49,[[1188,1,1,48,49]]]],[23177,23461,23607,25089,25201,25205,25214,25603,26066,26077,26190,26233,26234,26240,26247,26295,26296,26297,26301,26344,26346,26356,26361,26397,26399,26407,26410,26444,26624,26625,26629,26646,26650,26692,26720,26731,27292,27616,27643,27764,28450,28959,29359,29419,29550,29592,29595,30413,31096]]]]},{"k":"G3993","v":[["poor",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28965]]]]},{"k":"G3994","v":[["*",[6,5,[[39,2,2,0,2,[[936,1,1,0,1],[938,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,3,2,3,5,[[976,1,1,3,4],[984,2,1,4,5]]]],[23359,23452,24245,25101,25512]]],["law",[3,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,2,1,1,2,[[984,2,1,1,2]]]],[23452,25512]]],["mother",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]]],[23359,24245,25101]]]]},{"k":"G3995","v":[["law",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26798]]]]},{"k":"G3996","v":[["*",[10,10,[[39,2,2,0,2,[[933,1,1,0,1],[937,1,1,1,2]]],[40,1,1,2,3,[[972,1,1,2,3]]],[41,1,1,3,4,[[978,1,1,3,4]]],[45,1,1,4,5,[[1066,1,1,4,5]]],[46,1,1,5,6,[[1089,1,1,5,6]]],[58,1,1,6,7,[[1149,1,1,6,7]]],[65,3,3,7,10,[[1184,3,3,7,10]]]],[23238,23394,24883,25171,28456,29043,30346,31004,31008,31012]]],["bewail",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29043]]],["mourn",[5,5,[[39,2,2,0,2,[[933,1,1,0,1],[937,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]],[65,1,1,4,5,[[1184,1,1,4,5]]]],[23238,23394,25171,30346,31004]]],["mourned",[2,2,[[40,1,1,0,1,[[972,1,1,0,1]]],[45,1,1,1,2,[[1066,1,1,1,2]]]],[24883,28456]]],["wailing",[2,2,[[65,2,2,0,2,[[1184,2,2,0,2]]]],[31008,31012]]]]},{"k":"G3997","v":[["*",[5,4,[[58,1,1,0,1,[[1149,1,1,0,1]]],[65,4,3,1,4,[[1184,3,2,1,3],[1187,1,1,3,4]]]],[30346,31000,31001,31057]]],["mourning",[2,2,[[58,1,1,0,1,[[1149,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[30346,31001]]],["sorrow",[3,2,[[65,3,2,0,2,[[1184,2,1,0,1],[1187,1,1,1,2]]]],[31000,31057]]]]},{"k":"G3998","v":[["poor",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25828]]]]},{"k":"G3999","v":[["times",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29013]]]]},{"k":"G4000","v":[["thousand",[6,6,[[39,2,2,0,2,[[942,1,1,0,1],[944,1,1,1,2]]],[40,2,2,2,4,[[962,1,1,2,3],[964,1,1,3,4]]],[41,1,1,4,5,[[981,1,1,4,5]]],[42,1,1,5,6,[[1002,1,1,5,6]]]],[23618,23681,24451,24519,25315,26267]]]]},{"k":"G4001","v":[["hundred",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]]],[25236,28724]]]]},{"k":"G4002","v":[["*",[38,33,[[39,12,7,0,7,[[942,2,2,0,2],[944,1,1,2,3],[953,9,4,3,7]]],[40,3,3,7,10,[[962,2,2,7,9],[964,1,1,9,10]]],[41,9,9,10,19,[[973,1,1,10,11],[981,2,2,11,13],[984,2,2,13,15],[986,1,1,15,16],[988,1,1,16,17],[991,2,2,17,19]]],[42,5,5,19,24,[[1000,1,1,19,20],[1001,1,1,20,21],[1002,3,3,21,24]]],[43,5,5,24,29,[[1021,1,1,24,25],[1024,1,1,25,26],[1036,1,1,26,27],[1037,1,1,27,28],[1041,1,1,28,29]]],[45,1,1,29,30,[[1075,1,1,29,30]]],[65,3,3,30,33,[[1175,2,2,30,32],[1183,1,1,32,33]]]],[23614,23616,23681,24010,24023,24024,24028,24445,24448,24519,24917,25314,25317,25465,25511,25572,25648,25749,25750,26174,26212,26266,26270,26276,27026,27130,27604,27632,27770,28697,30845,30850,30985]]],["+",[4,4,[[39,1,1,0,1,[[953,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[43,2,2,2,4,[[1024,1,1,2,3],[1036,1,1,3,4]]]],[24028,26276,27130,27604]]],["Five",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24445]]],["five",[33,29,[[39,11,7,0,7,[[942,2,2,0,2],[944,1,1,2,3],[953,8,4,3,7]]],[40,2,2,7,9,[[962,1,1,7,8],[964,1,1,8,9]]],[41,9,9,9,18,[[973,1,1,9,10],[981,2,2,10,12],[984,2,2,12,14],[986,1,1,14,15],[988,1,1,15,16],[991,2,2,16,18]]],[42,4,4,18,22,[[1000,1,1,18,19],[1001,1,1,19,20],[1002,2,2,20,22]]],[43,3,3,22,25,[[1021,1,1,22,23],[1037,1,1,23,24],[1041,1,1,24,25]]],[45,1,1,25,26,[[1075,1,1,25,26]]],[65,3,3,26,29,[[1175,2,2,26,28],[1183,1,1,28,29]]]],[23614,23616,23681,24010,24023,24024,24028,24448,24519,24917,25314,25317,25465,25511,25572,25648,25749,25750,26174,26212,26266,26270,27026,27632,27770,28697,30845,30850,30985]]]]},{"k":"G4003","v":[["fifteenth",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25026]]]]},{"k":"G4004","v":[["*",[7,7,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,3,3,1,4,[[979,1,1,1,2],[981,1,1,2,3],[988,1,1,3,4]]],[42,2,2,4,6,[[1004,1,1,4,5],[1017,1,1,5,6]]],[43,1,1,6,7,[[1030,1,1,6,7]]]],[24447,25236,25315,25626,26438,26909,27382]]],["+",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[42,1,1,1,2,[[1017,1,1,1,2]]]],[24447,26909]]],["fifties",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25315]]],["fifty",[4,4,[[41,2,2,0,2,[[979,1,1,0,1],[988,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]],[43,1,1,3,4,[[1030,1,1,3,4]]]],[25236,25626,26438,27382]]]]},{"k":"G4005","v":[["Pentecost",[3,3,[[43,2,2,0,2,[[1019,1,1,0,1],[1037,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]]],[26950,27642,28784]]]]},{"k":"G4006","v":[["*",[6,6,[[46,4,4,0,4,[[1078,1,1,0,1],[1080,1,1,1,2],[1085,1,1,2,3],[1087,1,1,3,4]]],[48,1,1,4,5,[[1099,1,1,4,5]]],[49,1,1,5,6,[[1105,1,1,5,6]]]],[28815,28845,28954,28973,29263,29425]]],["confidence",[5,5,[[46,3,3,0,3,[[1078,1,1,0,1],[1085,1,1,1,2],[1087,1,1,2,3]]],[48,1,1,3,4,[[1099,1,1,3,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]]],[28815,28954,28973,29263,29425]]],["trust",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28845]]]]},{"k":"G4007","v":[["+",[3,3,[[57,3,3,0,3,[[1135,2,2,0,2],[1138,1,1,2,3]]]],[30001,30009,30047]]]]},{"k":"G4008","v":[["*",[23,23,[[39,7,7,0,7,[[932,2,2,0,2],[936,2,2,2,4],[942,1,1,4,5],[944,1,1,5,6],[947,1,1,6,7]]],[40,7,7,7,14,[[959,1,1,7,8],[960,1,1,8,9],[961,2,2,9,11],[962,1,1,11,12],[964,1,1,12,13],[966,1,1,13,14]]],[41,1,1,14,15,[[980,1,1,14,15]]],[42,8,8,15,23,[[997,1,1,15,16],[999,1,1,16,17],[1002,4,4,17,21],[1006,1,1,21,22],[1014,1,1,22,23]]]],[23224,23234,23363,23373,23619,23677,23763,24296,24358,24365,24385,24452,24513,24589,25267,26072,26146,26258,26274,26279,26282,26521,26786]]],["+",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24452]]],["beyond",[7,7,[[39,3,3,0,3,[[932,2,2,0,2],[947,1,1,2,3]]],[40,1,1,3,4,[[959,1,1,3,4]]],[42,3,3,4,7,[[997,1,1,4,5],[999,1,1,5,6],[1006,1,1,6,7]]]],[23224,23234,23763,24296,26072,26146,26521]]],["over",[3,3,[[42,3,3,0,3,[[1002,2,2,0,2],[1014,1,1,2,3]]]],[26258,26274,26786]]],["side",[12,12,[[39,4,4,0,4,[[936,2,2,0,2],[942,1,1,2,3],[944,1,1,3,4]]],[40,5,5,4,9,[[960,1,1,4,5],[961,2,2,5,7],[964,1,1,7,8],[966,1,1,8,9]]],[41,1,1,9,10,[[980,1,1,9,10]]],[42,2,2,10,12,[[1002,2,2,10,12]]]],[23363,23373,23619,23677,24358,24365,24385,24513,24589,25267,26279,26282]]]]},{"k":"G4009","v":[["*",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[44,1,1,2,3,[[1055,1,1,2,3]]],[57,1,1,3,4,[[1138,1,1,3,4]]]],[23531,25436,28206,30060]]],["end",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30060]]],["ends",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28206]]],["parts",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23531,25436]]]]},{"k":"G4010","v":[["Pergamos",[2,2,[[65,2,2,0,2,[[1167,1,1,0,1],[1168,1,1,1,2]]]],[30708,30729]]]]},{"k":"G4011","v":[["Perga",[3,3,[[43,3,3,0,3,[[1030,2,2,0,2],[1031,1,1,2,3]]]],[27375,27376,27439]]]]},{"k":"G4012","v":[["*",[329,303,[[39,26,26,0,26,[[930,1,1,0,1],[931,1,1,1,2],[932,1,1,2,3],[934,1,1,3,4],[936,1,1,4,5],[937,1,1,5,6],[939,2,2,6,8],[940,1,1,8,9],[943,1,1,9,10],[944,1,1,10,11],[945,1,1,11,12],[946,1,1,12,13],[948,5,5,13,18],[949,1,1,18,19],[950,3,3,19,22],[952,1,1,22,23],[954,2,2,23,25],[955,1,1,25,26]]],[40,24,24,26,50,[[957,3,3,26,29],[959,3,3,29,32],[960,2,2,32,34],[961,2,2,34,36],[962,1,1,36,37],[963,3,3,37,40],[964,1,1,40,41],[965,2,2,41,43],[966,2,2,43,45],[968,2,2,45,47],[969,1,1,47,48],[970,2,2,48,50]]],[41,44,42,50,92,[[973,2,2,50,52],[974,6,5,52,57],[975,3,2,57,59],[976,4,4,59,63],[977,2,2,63,65],[979,5,5,65,70],[981,3,3,70,73],[982,2,2,73,75],[983,1,1,75,76],[984,1,1,76,77],[985,2,2,77,79],[988,1,1,79,80],[989,1,1,80,81],[991,1,1,81,82],[993,1,1,82,83],[994,3,3,83,86],[995,1,1,86,87],[996,5,5,87,92]]],[42,68,58,92,150,[[997,6,6,92,98],[998,2,2,98,100],[999,1,1,100,101],[1001,7,6,101,107],[1002,2,2,107,109],[1003,6,6,109,115],[1004,6,5,115,120],[1005,3,3,120,123],[1006,5,4,123,127],[1007,3,2,127,129],[1008,2,2,129,131],[1009,3,3,131,134],[1011,2,2,134,136],[1012,9,7,136,143],[1013,5,2,143,145],[1014,4,3,145,148],[1015,1,1,148,149],[1017,1,1,149,150]]],[43,70,62,150,212,[[1018,3,3,150,153],[1019,2,2,153,155],[1022,1,1,155,156],[1024,1,1,156,157],[1025,5,3,157,160],[1026,1,1,160,161],[1027,2,2,161,163],[1028,1,1,163,164],[1030,2,2,164,166],[1032,2,2,166,168],[1034,1,1,168,169],[1035,2,2,169,171],[1036,6,5,171,176],[1038,4,4,176,180],[1039,4,3,180,183],[1040,5,5,183,188],[1041,8,7,188,195],[1042,10,8,195,203],[1043,3,3,203,206],[1045,7,6,206,212]]],[44,5,5,212,217,[[1046,1,1,212,213],[1053,1,1,213,214],[1059,1,1,214,215],[1060,2,2,215,217]]],[45,10,10,217,227,[[1062,2,2,217,219],[1068,3,3,219,222],[1069,2,2,222,224],[1073,1,1,224,225],[1077,2,2,225,227]]],[46,2,2,227,229,[[1086,1,1,227,228],[1087,1,1,228,229]]],[48,2,2,229,231,[[1102,2,2,229,231]]],[49,4,4,231,235,[[1103,1,1,231,232],[1104,3,3,232,235]]],[50,5,5,235,240,[[1107,1,1,235,236],[1108,1,1,236,237],[1110,3,3,237,240]]],[51,9,9,240,249,[[1111,2,2,240,242],[1113,2,2,242,244],[1114,3,3,244,247],[1115,2,2,247,249]]],[52,4,4,249,253,[[1116,2,2,249,251],[1117,1,1,251,252],[1118,1,1,252,253]]],[53,4,4,253,257,[[1119,2,2,253,255],[1124,2,2,255,257]]],[54,3,3,257,260,[[1125,1,1,257,258],[1126,1,1,258,259],[1127,1,1,259,260]]],[55,2,2,260,262,[[1130,2,2,260,262]]],[56,1,1,262,263,[[1132,1,1,262,263]]],[57,22,20,263,283,[[1134,1,1,263,264],[1136,2,2,264,266],[1137,3,2,266,268],[1138,1,1,268,269],[1139,1,1,269,270],[1141,1,1,270,271],[1142,5,5,271,276],[1143,6,5,276,281],[1145,2,2,281,283]]],[59,5,4,283,287,[[1151,2,1,283,284],[1153,2,2,284,286],[1155,1,1,286,287]]],[60,2,2,287,289,[[1156,1,1,287,288],[1158,1,1,288,289]]],[61,10,8,289,297,[[1159,1,1,289,290],[1160,5,3,290,293],[1162,1,1,293,294],[1163,3,3,294,297]]],[63,1,1,297,298,[[1165,1,1,297,298]]],[64,5,4,298,302,[[1166,5,4,298,302]]],[65,1,1,302,303,[[1181,1,1,302,303]]]],[23177,23196,23215,23310,23363,23415,23466,23469,23525,23640,23683,23713,23746,23795,23797,23798,23801,23816,23871,23888,23903,23914,23993,24078,24082,24175,24221,24245,24259,24296,24320,24322,24333,24342,24380,24391,24455,24469,24480,24488,24530,24552,24580,24598,24629,24687,24699,24749,24775,24778,24894,24897,24990,24991,25000,25006,25011,25040,25044,25073,25077,25100,25101,25121,25122,25198,25212,25213,25219,25222,25310,25312,25346,25403,25404,25458,25485,25519,25526,25622,25653,25768,25831,25896,25901,25913,25943,25995,26005,26010,26018,26035,26051,26052,26059,26066,26074,26091,26116,26120,26145,26241,26242,26246,26247,26249,26256,26298,26318,26335,26340,26341,26345,26360,26367,26394,26395,26399,26407,26427,26457,26458,26461,26494,26506,26514,26522,26536,26542,26586,26621,26648,26652,26654,26721,26725,26734,26735,26736,26737,26745,26751,26752,26768,26779,26804,26808,26819,26849,26922,26924,26926,26939,26978,26980,27083,27168,27188,27191,27210,27229,27268,27278,27329,27375,27391,27444,27448,27555,27572,27582,27593,27608,27610,27624,27625,27672,27685,27688,27689,27710,27714,27722,27740,27745,27749,27754,27763,27777,27779,27782,27790,27791,27793,27794,27805,27811,27812,27814,27815,27816,27820,27822,27825,27830,27849,27906,27914,27920,27921,27922,27930,27933,28119,28292,28317,28324,28367,28374,28488,28512,28524,28528,28531,28635,28777,28788,28957,28979,29355,29359,29388,29410,29411,29414,29468,29495,29545,29550,29552,29562,29569,29592,29599,29609,29612,29616,29622,29646,29652,29660,29674,29679,29703,29715,29792,29809,29812,29845,29861,29915,29916,29948,29982,30018,30022,30033,30041,30053,30078,30110,30139,30140,30141,30151,30159,30179,30192,30194,30204,30212,30252,30259,30384,30439,30442,30472,30491,30538,30541,30552,30576,30577,30613,30633,30634,30640,30660,30675,30679,30681,30687,30952]]],["+",[18,18,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,2,2,1,3,[[973,1,1,1,2],[996,1,1,2,3]]],[43,6,6,3,9,[[1028,1,1,3,4],[1036,1,1,4,5],[1038,1,1,5,6],[1041,1,1,6,7],[1042,1,1,7,8],[1045,1,1,8,9]]],[45,1,1,9,10,[[1062,1,1,9,10]]],[46,1,1,10,11,[[1086,1,1,10,11]]],[48,1,1,11,12,[[1102,1,1,11,12]]],[49,3,3,12,15,[[1103,1,1,12,13],[1104,2,2,13,15]]],[50,1,1,15,16,[[1110,1,1,15,16]]],[53,1,1,16,17,[[1119,1,1,16,17]]],[57,1,1,17,18,[[1134,1,1,17,18]]]],[23525,24897,25995,27329,27625,27672,27782,27816,27906,28367,28957,29359,29388,29410,29411,29550,29703,29982]]],["About",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27811]]],["Against",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27814]]],["Concerning",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[26010,27933]]],["For",[2,2,[[42,1,1,0,1,[[1006,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]]],[26514,27830]]],["In",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29915]]],["Of",[6,6,[[42,3,3,0,3,[[1012,3,3,0,3]]],[43,1,1,3,4,[[1042,1,1,3,4]]],[57,1,1,4,5,[[1137,1,1,4,5]]],[59,1,1,5,6,[[1151,1,1,5,6]]]],[26735,26736,26737,27822,30041,30384]]],["Touching",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27790]]],["about",[30,29,[[39,7,7,0,7,[[931,1,1,0,1],[936,1,1,1,2],[948,4,4,2,6],[955,1,1,6,7]]],[40,8,8,7,15,[[957,1,1,7,8],[959,3,3,8,11],[960,1,1,11,12],[962,1,1,12,13],[965,2,2,13,15]]],[41,5,5,15,20,[[982,2,2,15,17],[985,1,1,17,18],[989,1,1,18,19],[994,1,1,19,20]]],[42,1,1,20,21,[[999,1,1,20,21]]],[43,6,5,21,26,[[1027,1,1,21,22],[1032,1,1,22,23],[1036,1,1,23,24],[1039,2,1,24,25],[1042,1,1,25,26]]],[53,1,1,26,27,[[1124,1,1,26,27]]],[64,2,2,27,29,[[1166,2,2,27,29]]]],[23196,23363,23795,23797,23798,23801,24175,24221,24296,24320,24322,24333,24455,24552,24580,25403,25404,25526,25653,25913,26145,27268,27444,27608,27710,27820,29792,30679,30681]]],["above",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30660]]],["abroad",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24990]]],["against",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23816]]],["at",[3,3,[[41,1,1,0,1,[[974,1,1,0,1]]],[42,2,2,1,3,[[1002,2,2,1,3]]]],[24991,26298,26318]]],["company",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27375]]],["concern",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27930]]],["concerning",[41,41,[[39,3,3,0,3,[[932,1,1,0,1],[939,1,1,1,2],[944,1,1,2,3]]],[40,2,2,3,5,[[961,1,1,3,4],[963,1,1,4,5]]],[41,5,5,5,10,[[974,1,1,5,6],[979,1,1,6,7],[994,1,1,7,8],[996,2,2,8,10]]],[42,4,4,10,14,[[1003,2,2,10,12],[1005,1,1,12,13],[1007,1,1,13,14]]],[43,12,12,14,26,[[1018,1,1,14,15],[1025,1,1,15,16],[1036,2,2,16,18],[1038,1,1,18,19],[1039,1,1,19,20],[1040,1,1,20,21],[1041,1,1,21,22],[1042,1,1,22,23],[1045,3,3,23,26]]],[45,5,5,26,31,[[1068,2,2,26,28],[1069,1,1,28,29],[1073,1,1,29,30],[1077,1,1,30,31]]],[51,2,2,31,33,[[1113,1,1,31,32],[1114,1,1,32,33]]],[53,2,2,33,35,[[1119,1,1,33,34],[1124,1,1,34,35]]],[54,2,2,35,37,[[1126,1,1,35,36],[1127,1,1,36,37]]],[57,3,3,37,40,[[1139,1,1,37,38],[1143,2,2,38,40]]],[61,1,1,40,41,[[1160,1,1,40,41]]]],[23215,23466,23683,24380,24480,24990,25219,25901,26018,26035,26340,26360,26458,26542,26939,27188,27593,27624,27688,27722,27749,27793,27812,27920,27921,27922,28488,28512,28531,28635,28777,29592,29616,29715,29809,29845,29861,30078,30192,30194,30576]]],["for",[60,53,[[39,4,4,0,4,[[930,1,1,0,1],[934,1,1,1,2],[950,1,1,2,3],[954,1,1,3,4]]],[40,3,3,4,7,[[957,1,1,4,5],[968,1,1,5,6],[970,1,1,6,7]]],[41,8,7,7,14,[[974,1,1,7,8],[975,2,1,8,9],[976,1,1,9,10],[977,1,1,10,11],[984,1,1,11,12],[991,1,1,12,13],[994,1,1,13,14]]],[42,12,9,14,23,[[1005,1,1,14,15],[1006,2,2,15,17],[1008,1,1,17,18],[1011,1,1,18,19],[1012,1,1,19,20],[1013,5,2,20,22],[1015,1,1,22,23]]],[43,4,4,23,27,[[1025,1,1,23,24],[1036,1,1,24,25],[1041,2,2,25,27]]],[44,1,1,27,28,[[1053,1,1,27,28]]],[48,1,1,28,29,[[1102,1,1,28,29]]],[50,3,3,29,32,[[1107,1,1,29,30],[1108,1,1,30,31],[1110,1,1,31,32]]],[51,3,3,32,35,[[1111,1,1,32,33],[1113,1,1,33,34],[1115,1,1,34,35]]],[52,4,4,35,39,[[1116,2,2,35,37],[1117,1,1,37,38],[1118,1,1,38,39]]],[56,1,1,39,40,[[1132,1,1,39,40]]],[57,9,8,40,48,[[1137,2,1,40,41],[1142,4,4,41,45],[1143,1,1,45,46],[1145,2,2,46,48]]],[59,2,2,48,50,[[1153,1,1,48,49],[1155,1,1,49,50]]],[61,5,3,50,53,[[1160,3,1,50,51],[1162,1,1,51,52],[1163,1,1,52,53]]]],[23177,23310,23888,24082,24259,24687,24778,25000,25044,25101,25121,25485,25768,25896,26461,26494,26514,26586,26721,26752,26768,26779,26849,27191,27625,27779,27790,28119,29355,29468,29495,29545,29562,29599,29646,29652,29660,29674,29679,29948,30033,30139,30141,30151,30159,30212,30252,30259,30442,30472,30552,30613,30640]]],["of",[141,131,[[39,7,7,0,7,[[939,1,1,0,1],[943,1,1,1,2],[945,1,1,2,3],[949,1,1,3,4],[950,1,1,4,5],[952,1,1,5,6],[954,1,1,6,7]]],[40,9,9,7,16,[[957,1,1,7,8],[960,1,1,8,9],[961,1,1,9,10],[963,2,2,10,12],[964,1,1,12,13],[966,1,1,13,14],[969,1,1,14,15],[970,1,1,15,16]]],[41,20,20,16,36,[[973,1,1,16,17],[974,2,2,17,19],[975,1,1,19,20],[976,2,2,20,22],[977,1,1,22,23],[979,4,4,23,27],[981,3,3,27,30],[983,1,1,30,31],[985,1,1,31,32],[988,1,1,32,33],[993,1,1,33,34],[995,1,1,34,35],[996,1,1,35,36]]],[42,45,39,36,75,[[997,6,6,36,42],[998,2,2,42,44],[1001,7,6,44,50],[1003,4,4,50,54],[1004,6,5,54,59],[1005,1,1,59,60],[1006,2,2,60,62],[1007,2,1,62,63],[1008,1,1,63,64],[1009,3,3,64,67],[1011,1,1,67,68],[1012,5,3,68,71],[1014,4,3,71,74],[1017,1,1,74,75]]],[43,31,28,75,103,[[1018,1,1,75,76],[1019,2,2,76,78],[1022,1,1,78,79],[1024,1,1,79,80],[1025,3,1,80,81],[1026,1,1,81,82],[1030,1,1,82,83],[1032,1,1,83,84],[1034,1,1,84,85],[1035,2,2,85,87],[1036,1,1,87,88],[1038,1,1,88,89],[1039,1,1,89,90],[1040,4,4,90,94],[1041,3,3,94,97],[1042,4,3,97,100],[1043,1,1,100,101],[1045,2,2,101,103]]],[44,3,3,103,106,[[1059,1,1,103,104],[1060,2,2,104,106]]],[45,1,1,106,107,[[1062,1,1,106,107]]],[46,1,1,107,108,[[1087,1,1,107,108]]],[51,3,3,108,111,[[1111,1,1,108,109],[1114,1,1,109,110],[1115,1,1,110,111]]],[54,1,1,111,112,[[1125,1,1,111,112]]],[55,1,1,112,113,[[1130,1,1,112,113]]],[57,8,8,113,121,[[1136,2,2,113,115],[1138,1,1,115,116],[1141,1,1,116,117],[1142,1,1,117,118],[1143,3,3,118,121]]],[59,2,2,121,123,[[1151,1,1,121,122],[1153,1,1,122,123]]],[60,2,2,123,125,[[1156,1,1,123,124],[1158,1,1,124,125]]],[61,4,4,125,129,[[1159,1,1,125,126],[1160,1,1,126,127],[1163,2,2,127,129]]],[64,3,2,129,131,[[1166,3,2,129,131]]]],[23469,23640,23713,23871,23914,23993,24078,24245,24342,24391,24469,24488,24530,24598,24749,24775,24894,25006,25011,25040,25077,25100,25122,25198,25212,25213,25222,25310,25312,25346,25458,25519,25622,25831,25943,26005,26051,26052,26059,26066,26074,26091,26116,26120,26241,26242,26246,26247,26249,26256,26335,26341,26345,26367,26394,26395,26399,26407,26427,26457,26506,26522,26536,26621,26648,26652,26654,26725,26734,26745,26751,26804,26808,26819,26922,26924,26978,26980,27083,27168,27210,27229,27391,27448,27555,27572,27582,27610,27685,27714,27740,27745,27754,27763,27777,27791,27794,27805,27815,27816,27849,27914,27920,28292,28317,28324,28374,28979,29569,29609,29622,29812,29916,30018,30022,30053,30110,30140,30179,30194,30204,30384,30439,30491,30538,30541,30577,30633,30634,30675,30687]]],["on",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]]],[23415,27278]]],["over",[2,2,[[41,1,1,0,1,[[976,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[25073,28524]]],["pertaining",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26926]]],["their",[1,1,[[65,1,1,0,1,[[1181,1,1,0,1]]]],[30952]]],["touching",[9,9,[[39,2,2,0,2,[[946,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[43,2,2,3,5,[[1038,1,1,3,4],[1043,1,1,4,5]]],[45,2,2,5,7,[[1069,1,1,5,6],[1077,1,1,6,7]]],[50,1,1,7,8,[[1110,1,1,7,8]]],[51,1,1,8,9,[[1114,1,1,8,9]]]],[23746,23903,24699,27689,27825,28528,28788,29552,29612]]],["with",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[24629,29414]]]]},{"k":"G4013","v":[["*",[6,6,[[39,3,3,0,3,[[932,1,1,0,1],[937,1,1,1,2],[951,1,1,2,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[43,1,1,4,5,[[1030,1,1,4,5]]],[45,1,1,5,6,[[1070,1,1,5,6]]]],[23232,23414,23933,24413,27373,28545]]],["about",[4,4,[[39,2,2,0,2,[[932,1,1,0,1],[937,1,1,1,2]]],[43,1,1,2,3,[[1030,1,1,2,3]]],[45,1,1,3,4,[[1070,1,1,3,4]]]],[23232,23414,27373,28545]]],["compass",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23933]]],["went",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24413]]]]},{"k":"G4014","v":[["*",[4,4,[[43,2,2,0,2,[[1044,2,2,0,2]]],[46,1,1,2,3,[[1080,1,1,2,3]]],[57,1,1,3,4,[[1142,1,1,3,4]]]],[27875,27895,28857,30144]]],["away",[3,3,[[43,1,1,0,1,[[1044,1,1,0,1]]],[46,1,1,1,2,[[1080,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[27875,28857,30144]]],["up",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27895]]]]},{"k":"G4015","v":[["*",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1039,1,1,1,2]]]],[27219,27710]]],["about",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27219]]],["shone",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27710]]]]},{"k":"G4016","v":[["*",[24,24,[[39,5,5,0,5,[[934,2,2,0,2],[953,3,3,2,5]]],[40,2,2,5,7,[[970,1,1,5,6],[972,1,1,6,7]]],[41,3,3,7,10,[[984,1,1,7,8],[991,1,1,8,9],[995,1,1,9,10]]],[42,1,1,10,11,[[1015,1,1,10,11]]],[43,1,1,11,12,[[1029,1,1,11,12]]],[65,12,12,12,24,[[1169,2,2,12,14],[1170,1,1,14,15],[1173,2,2,15,17],[1176,1,1,17,18],[1177,1,1,18,19],[1178,1,1,19,20],[1183,1,1,20,21],[1184,1,1,21,22],[1185,2,2,22,24]]]],[23311,23313,24044,24046,24051,24805,24878,25486,25774,25946,26827,27345,30751,30764,30772,30819,30823,30862,30875,30892,30979,31009,31025,31030]]],["+",[2,2,[[41,1,1,0,1,[[991,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]]],[25774,27345]]],["arrayed",[6,6,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[995,1,1,2,3]]],[65,3,3,3,6,[[1173,1,1,3,4],[1183,1,1,4,5],[1185,1,1,5,6]]]],[23311,25486,25946,30823,30979,31025]]],["clothed",[10,10,[[39,4,4,0,4,[[934,1,1,0,1],[953,3,3,1,4]]],[65,6,6,4,10,[[1169,2,2,4,6],[1170,1,1,6,7],[1173,1,1,7,8],[1177,1,1,8,9],[1184,1,1,9,10]]]],[23313,24044,24046,24051,30751,30764,30772,30819,30875,31009]]],["having",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24805]]],["in",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24878]]],["on",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26827]]],["with",[3,3,[[65,3,3,0,3,[[1176,1,1,0,1],[1178,1,1,1,2],[1185,1,1,2,3]]]],[30862,30892,31030]]]]},{"k":"G4017","v":[["*",[7,7,[[40,6,6,0,6,[[959,2,2,0,2],[961,1,1,2,3],[965,1,1,3,4],[966,1,1,4,5],[967,1,1,5,6]]],[41,1,1,6,7,[[978,1,1,6,7]]]],[24293,24322,24396,24546,24611,24651,25156]]],["about",[5,5,[[40,5,5,0,5,[[959,1,1,0,1],[961,1,1,1,2],[965,1,1,2,3],[966,1,1,3,4],[967,1,1,4,5]]]],[24293,24396,24546,24611,24651]]],["looked",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24322]]],["upon",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25156]]]]},{"k":"G4018","v":[["*",[2,2,[[45,1,1,0,1,[[1072,1,1,0,1]]],[57,1,1,1,2,[[1133,1,1,1,2]]]],[28615,29975]]],["covering",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28615]]],["vesture",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29975]]]]},{"k":"G4019","v":[["about",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26567]]]]},{"k":"G4020","v":[["busybodies",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29689]]]]},{"k":"G4021","v":[["*",[2,2,[[43,1,1,0,1,[[1036,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[27604,29776]]],["arts",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27604]]],["busybodies",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29776]]]]},{"k":"G4022","v":[["*",[4,4,[[43,2,2,0,2,[[1036,1,1,0,1],[1045,1,1,1,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[27598,27912,29776,30209]]],["+",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29776]]],["about",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30209]]],["compass",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27912]]],["vagabond",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27598]]]]},{"k":"G4023","v":[["*",[3,3,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]]],[25116,27759,30405]]],["+",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25116]]],["after",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27759]]],["contained",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30405]]]]},{"k":"G4024","v":[["*",[7,7,[[41,3,3,0,3,[[984,2,2,0,2],[989,1,1,2,3]]],[43,1,1,3,4,[[1029,1,1,3,4]]],[48,1,1,4,5,[[1102,1,1,4,5]]],[65,2,2,5,7,[[1167,1,1,5,6],[1181,1,1,6,7]]]],[25494,25496,25659,27345,29351,30710,30952]]],["+",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30710]]],["about",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]]],[25494,29351]]],["gird",[2,2,[[41,2,2,0,2,[[984,1,1,0,1],[989,1,1,1,2]]]],[25496,25659]]],["girded",[1,1,[[65,1,1,0,1,[[1181,1,1,0,1]]]],[30952]]],["thyself",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27345]]]]},{"k":"G4025","v":[["wearing",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30427]]]]},{"k":"G4026","v":[["*",[4,4,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[55,1,1,3,4,[[1131,1,1,3,4]]]],[26565,27803,29843,29932]]],["about",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27803]]],["avoid",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29932]]],["by",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26565]]],["shun",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29843]]]]},{"k":"G4027","v":[["filth",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28446]]]]},{"k":"G4028","v":[["*",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[24819,25928,30109]]],["blindfolded",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25928]]],["cover",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24819]]],["overlaid",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30109]]]]},{"k":"G4029","v":[["*",[5,5,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]],[57,2,2,3,5,[[1137,1,1,3,4],[1144,1,1,4,5]]]],[24580,25653,27919,30032,30213]]],["about",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30213]]],["bound",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27919]]],["hanged",[2,2,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]]],[24580,25653]]],["with",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30032]]]]},{"k":"G4030","v":[["helmet",[2,2,[[48,1,1,0,1,[[1102,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]]],[29354,29629]]]]},{"k":"G4031","v":[["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27871]]]]},{"k":"G4032","v":[["hid",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24917]]]]},{"k":"G4033","v":[["+",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25774]]]]},{"k":"G4034","v":[["about",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]]],[24982,27836]]]]},{"k":"G4035","v":[["remain",[2,2,[[51,2,2,0,2,[[1114,2,2,0,2]]]],[29618,29620]]]]},{"k":"G4036","v":[["*",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[970,1,1,2,3]]],[41,2,2,3,5,[[990,2,2,3,5]]]],[24092,24433,24788,25711,25712]]],["sorrowful",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,2,2,2,4,[[990,2,2,2,4]]]],[24092,24788,25711,25712]]],["sorry",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24433]]]]},{"k":"G4037","v":[["for",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26927]]]]},{"k":"G4038","v":[["about",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27075]]]]},{"k":"G4039","v":[["about",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24958]]]]},{"k":"G4040","v":[["neighbours",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24951]]]]},{"k":"G4041","v":[["peculiar",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29922]]]]},{"k":"G4042","v":[["place",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27208]]]]},{"k":"G4043","v":[["*",[96,90,[[39,7,7,0,7,[[932,1,1,0,1],[937,1,1,1,2],[939,1,1,2,3],[942,3,3,3,6],[943,1,1,6,7]]],[40,10,10,7,17,[[957,1,1,7,8],[958,1,1,8,9],[961,1,1,9,10],[962,2,2,10,12],[963,1,1,12,13],[964,1,1,13,14],[967,1,1,14,15],[968,1,1,15,16],[972,1,1,16,17]]],[41,5,5,17,22,[[977,1,1,17,18],[979,1,1,18,19],[983,1,1,19,20],[992,1,1,20,21],[996,1,1,21,22]]],[42,17,15,22,37,[[997,1,1,22,23],[1001,4,4,23,27],[1002,2,2,27,29],[1003,2,1,29,30],[1004,1,1,30,31],[1006,1,1,31,32],[1007,3,3,32,35],[1008,2,1,35,36],[1017,1,1,36,37]]],[43,8,7,37,44,[[1020,5,4,37,41],[1031,2,2,41,43],[1038,1,1,43,44]]],[44,5,5,44,49,[[1051,1,1,44,45],[1053,2,2,45,47],[1058,1,1,47,48],[1059,1,1,48,49]]],[45,2,2,49,51,[[1064,1,1,49,50],[1068,1,1,50,51]]],[46,5,5,51,56,[[1081,1,1,51,52],[1082,1,1,52,53],[1087,2,2,53,55],[1089,1,1,55,56]]],[47,1,1,56,57,[[1095,1,1,56,57]]],[48,8,7,57,64,[[1098,2,2,57,59],[1100,3,2,59,61],[1101,3,3,61,64]]],[49,2,2,64,66,[[1105,2,2,64,66]]],[50,4,4,66,70,[[1107,1,1,66,67],[1108,1,1,67,68],[1109,1,1,68,69],[1110,1,1,69,70]]],[51,3,3,70,73,[[1112,1,1,70,71],[1114,2,2,71,73]]],[52,2,2,73,75,[[1118,2,2,73,75]]],[57,1,1,75,76,[[1145,1,1,75,76]]],[59,1,1,76,77,[[1155,1,1,76,77]]],[61,5,4,77,81,[[1159,2,2,77,79],[1160,3,2,79,81]]],[62,3,2,81,83,[[1164,3,2,81,83]]],[63,2,2,83,85,[[1165,2,2,83,85]]],[65,5,5,85,90,[[1168,1,1,85,86],[1169,1,1,86,87],[1175,1,1,87,88],[1182,1,1,88,89],[1187,1,1,89,90]]]],[23227,23384,23464,23622,23623,23626,23664,24231,24269,24406,24455,24456,24468,24524,24667,24711,24885,25130,25217,25449,25825,26008,26080,26218,26219,26221,26222,26276,26323,26329,26393,26504,26532,26533,26577,26615,26916,27002,27004,27005,27008,27422,27424,27685,28072,28117,28120,28279,28295,28413,28504,28861,28884,28973,28974,29040,29178,29231,29239,29273,29289,29306,29312,29319,29438,29439,29475,29500,29524,29547,29582,29604,29615,29684,29689,30250,30473,30546,30547,30556,30561,30649,30651,30661,30662,30718,30750,30860,30969,31077]]],["+",[2,2,[[44,1,1,0,1,[[1059,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[28295,29289]]],["Walk",[3,3,[[42,1,1,0,1,[[1008,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[50,1,1,2,3,[[1110,1,1,2,3]]]],[26615,29178,29547]]],["about",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30473]]],["go",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24711]]],["therein",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30250]]],["walk",[52,51,[[39,3,3,0,3,[[937,1,1,0,1],[939,1,1,1,2],[943,1,1,2,3]]],[40,2,2,3,5,[[958,1,1,3,4],[963,1,1,4,5]]],[41,5,5,5,10,[[977,1,1,5,6],[979,1,1,6,7],[983,1,1,7,8],[992,1,1,8,9],[996,1,1,9,10]]],[42,7,7,10,17,[[1001,3,3,10,13],[1003,1,1,13,14],[1004,1,1,14,15],[1007,2,2,15,17]]],[43,3,3,17,20,[[1020,2,2,17,19],[1038,1,1,19,20]]],[44,4,4,20,24,[[1051,1,1,20,21],[1053,2,2,21,23],[1058,1,1,23,24]]],[45,2,2,24,26,[[1064,1,1,24,25],[1068,1,1,25,26]]],[46,2,2,26,28,[[1082,1,1,26,27],[1087,1,1,27,28]]],[48,6,6,28,34,[[1098,1,1,28,29],[1100,2,2,29,31],[1101,3,3,31,34]]],[49,2,2,34,36,[[1105,2,2,34,36]]],[50,2,2,36,38,[[1107,1,1,36,37],[1108,1,1,37,38]]],[51,3,3,38,41,[[1112,1,1,38,39],[1114,2,2,39,41]]],[52,1,1,41,42,[[1118,1,1,41,42]]],[61,3,3,42,45,[[1159,2,2,42,44],[1160,1,1,44,45]]],[62,2,1,45,46,[[1164,2,1,45,46]]],[63,1,1,46,47,[[1165,1,1,46,47]]],[65,4,4,47,51,[[1169,1,1,47,48],[1175,1,1,48,49],[1182,1,1,49,50],[1187,1,1,50,51]]]],[23384,23464,23664,24269,24468,25130,25217,25449,25825,26008,26218,26221,26222,26329,26393,26532,26533,27002,27008,27685,28072,28117,28120,28279,28413,28504,28884,28974,29239,29273,29289,29306,29312,29319,29438,29439,29475,29500,29582,29604,29615,29689,30546,30547,30556,30651,30662,30750,30860,30969,31077]]],["walked",[18,18,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,3,3,1,4,[[957,1,1,1,2],[961,1,1,2,3],[972,1,1,3,4]]],[42,6,6,4,10,[[997,1,1,4,5],[1001,1,1,5,6],[1002,1,1,6,7],[1003,1,1,7,8],[1006,1,1,8,9],[1007,1,1,9,10]]],[43,3,3,10,13,[[1020,1,1,10,11],[1031,2,2,11,13]]],[46,2,2,13,15,[[1087,1,1,13,14],[1089,1,1,14,15]]],[48,1,1,15,16,[[1098,1,1,15,16]]],[50,1,1,16,17,[[1109,1,1,16,17]]],[61,1,1,17,18,[[1160,1,1,17,18]]]],[23626,24231,24406,24885,26080,26219,26323,26329,26504,26577,27004,27422,27424,28973,29040,29231,29524,30556]]],["walkedst",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26916]]],["walkest",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30661]]],["walketh",[4,4,[[42,1,1,0,1,[[1008,1,1,0,1]]],[52,1,1,1,2,[[1118,1,1,1,2]]],[61,1,1,2,3,[[1160,1,1,2,3]]],[65,1,1,3,4,[[1168,1,1,3,4]]]],[26615,29684,30561,30718]]],["walking",[12,12,[[39,3,3,0,3,[[932,1,1,0,1],[942,2,2,1,3]]],[40,4,4,3,7,[[962,2,2,3,5],[964,1,1,5,6],[967,1,1,6,7]]],[42,1,1,7,8,[[1002,1,1,7,8]]],[43,2,2,8,10,[[1020,2,2,8,10]]],[46,1,1,10,11,[[1081,1,1,10,11]]],[62,1,1,11,12,[[1164,1,1,11,12]]]],[23227,23622,23623,24455,24456,24524,24667,26276,27004,27005,28861,30649]]]]},{"k":"G4044","v":[["+",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29798]]]]},{"k":"G4045","v":[["*",[3,3,[[41,1,1,0,1,[[982,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[25393,27896,30268]]],["among",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25393]]],["falling",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27896]]],["into",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30268]]]]},{"k":"G4046","v":[["*",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[53,1,1,1,2,[[1121,1,1,1,2]]]],[27654,29744]]],["purchase",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29744]]],["purchased",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27654]]]]},{"k":"G4047","v":[["*",[5,5,[[48,1,1,0,1,[[1097,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]],[57,1,1,3,4,[[1142,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[29220,29630,29675,30172,30408]]],["+",[3,3,[[51,1,1,0,1,[[1115,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]]],[29630,30172,30408]]],["obtaining",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29675]]],["possession",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29220]]]]},{"k":"G4048","v":[["off",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27505]]]]},{"k":"G4049","v":[["cumbered",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25403]]]]},{"k":"G4050","v":[["*",[4,4,[[44,1,1,0,1,[[1050,1,1,0,1]]],[46,2,2,1,3,[[1085,1,1,1,2],[1087,1,1,2,3]]],[58,1,1,3,4,[[1146,1,1,3,4]]]],[28064,28934,28986,30287]]],["+",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28986]]],["abundance",[2,2,[[44,1,1,0,1,[[1050,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]]],[28064,28934]]],["superfluity",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30287]]]]},{"k":"G4051","v":[["*",[5,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[46,2,1,3,4,[[1085,2,1,3,4]]]],[23523,24508,25191,28946]]],["abundance",[4,3,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[46,2,1,2,3,[[1085,2,1,2,3]]]],[23523,25191,28946]]],["left",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24508]]]]},{"k":"G4052","v":[["*",[39,35,[[39,5,5,0,5,[[933,1,1,0,1],[941,1,1,1,2],[942,1,1,2,3],[943,1,1,3,4],[953,1,1,4,5]]],[40,1,1,5,6,[[968,1,1,5,6]]],[41,4,4,6,10,[[981,1,1,6,7],[984,1,1,7,8],[987,1,1,8,9],[993,1,1,9,10]]],[42,2,2,10,12,[[1002,2,2,10,12]]],[43,1,1,12,13,[[1033,1,1,12,13]]],[44,3,3,13,16,[[1048,1,1,13,14],[1050,1,1,14,15],[1060,1,1,15,16]]],[45,3,3,16,19,[[1069,1,1,16,17],[1075,1,1,17,18],[1076,1,1,18,19]]],[46,10,7,19,26,[[1078,2,1,19,20],[1080,1,1,20,21],[1081,1,1,21,22],[1085,3,2,22,24],[1086,3,2,24,26]]],[48,1,1,26,27,[[1097,1,1,26,27]]],[49,5,4,27,31,[[1103,2,2,27,29],[1106,3,2,29,31]]],[50,1,1,31,32,[[1108,1,1,31,32]]],[51,3,3,32,35,[[1113,1,1,32,33],[1114,2,2,33,35]]]],[23254,23551,23617,23670,24037,24717,25318,25474,25605,25830,26269,26270,27488,27998,28062,28316,28535,28690,28776,28805,28850,28874,28934,28939,28964,28968,29214,29370,29387,29454,29460,29501,29602,29604,29613]]],["+",[4,4,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]],[46,1,1,2,3,[[1086,1,1,2,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]]],[23254,25605,28964,29454]]],["abound",[10,9,[[44,1,1,0,1,[[1060,1,1,0,1]]],[46,4,3,1,4,[[1078,1,1,1,2],[1085,2,1,2,3],[1086,1,1,3,4]]],[49,3,3,4,7,[[1103,1,1,4,5],[1106,2,2,5,7]]],[51,2,2,7,9,[[1113,1,1,7,8],[1114,1,1,8,9]]]],[28316,28805,28939,28964,29370,29454,29460,29602,29604]]],["abounded",[4,4,[[44,2,2,0,2,[[1048,1,1,0,1],[1050,1,1,1,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]],[48,1,1,3,4,[[1097,1,1,3,4]]]],[27998,28062,28934,29214]]],["aboundeth",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28805]]],["abounding",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[28776,29501]]],["above",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26270]]],["abundance",[5,5,[[39,2,2,0,2,[[941,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,2,2,3,5,[[984,1,1,3,4],[993,1,1,4,5]]]],[23551,24037,24717,25474,25830]]],["abundant",[2,2,[[46,1,1,0,1,[[1086,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[28968,29387]]],["better",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28535]]],["exceed",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28850]]],["excel",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28690]]],["increase",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29613]]],["increased",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27488]]],["left",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23670]]],["redound",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28874]]],["remain",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26269]]],["remained",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[23617,25318]]]]},{"k":"G4053","v":[["*",[10,10,[[39,2,2,0,2,[[933,2,2,0,2]]],[40,2,2,2,4,[[962,1,1,2,3],[970,1,1,3,4]]],[42,1,1,4,5,[[1006,1,1,4,5]]],[44,1,1,5,6,[[1048,1,1,5,6]]],[46,1,1,6,7,[[1086,1,1,6,7]]],[48,1,1,7,8,[[1099,1,1,7,8]]],[51,2,2,8,10,[[1113,1,1,8,9],[1115,1,1,9,10]]]],[23271,23281,24458,24785,26491,27992,28957,29271,29600,29634]]],["+",[4,4,[[40,1,1,0,1,[[970,1,1,0,1]]],[48,1,1,1,2,[[1099,1,1,1,2]]],[51,2,2,2,4,[[1113,1,1,2,3],[1115,1,1,3,4]]]],[24785,29271,29600,29634]]],["abundantly",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26491]]],["advantage",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[27992]]],["measure",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24458]]],["more",[2,2,[[39,2,2,0,2,[[933,2,2,0,2]]]],[23271,23281]]],["superfluous",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28957]]]]},{"k":"G4054","v":[["*",[4,4,[[40,1,1,0,1,[[963,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[57,2,2,2,4,[[1138,1,1,2,3],[1139,1,1,3,4]]]],[24499,28728,30061,30079]]],["abundantly",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[28728,30061]]],["deal",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24499]]],["more",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30079]]]]},{"k":"G4055","v":[["*",[11,10,[[39,1,1,0,1,[[939,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,4,4,2,6,[[979,1,1,2,3],[984,2,2,3,5],[992,1,1,5,6]]],[45,3,2,6,8,[[1073,3,2,6,8]]],[46,2,2,8,10,[[1079,1,1,8,9],[1087,1,1,9,10]]]],[23468,24713,25221,25463,25507,25826,28657,28658,28831,28979]]],["+",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25463]]],["abundant",[3,2,[[45,3,2,0,2,[[1073,3,2,0,2]]]],[28657,28658]]],["greater",[2,2,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[992,1,1,1,2]]]],[24713,25826]]],["more",[4,4,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,2,2,1,3,[[979,1,1,1,2],[984,1,1,2,3]]],[46,1,1,3,4,[[1087,1,1,3,4]]]],[23468,25221,25507,28979]]],["overmuch",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28831]]]]},{"k":"G4056","v":[["*",[14,13,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[46,7,6,2,8,[[1078,1,1,2,3],[1079,1,1,3,4],[1084,2,2,4,6],[1088,2,1,6,7],[1089,1,1,7,8]]],[47,1,1,8,9,[[1091,1,1,8,9]]],[49,1,1,9,10,[[1103,1,1,9,10]]],[51,1,1,10,11,[[1112,1,1,10,11]]],[57,2,2,11,13,[[1134,1,1,11,12],[1145,1,1,12,13]]]],[23932,24840,28812,28828,28929,28931,29012,29037,29071,29375,29587,29978,30260]]],["+",[2,2,[[49,1,1,0,1,[[1103,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]]],[29375,29978]]],["abundant",[2,2,[[46,2,2,0,2,[[1084,1,1,0,1],[1088,1,1,1,2]]]],[28931,29012]]],["abundantly",[4,4,[[46,3,3,0,3,[[1078,1,1,0,1],[1079,1,1,1,2],[1089,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]]],[28812,28828,29037,29587]]],["exceedingly",[3,3,[[40,1,1,0,1,[[971,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]],[47,1,1,2,3,[[1091,1,1,2,3]]]],[24840,28929,29071]]],["frequent",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29012]]],["greater",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23932]]],["rather",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30260]]]]},{"k":"G4057","v":[["*",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[43,1,1,2,3,[[1043,1,1,2,3]]]],[24152,24614,27834]]],["+",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27834]]],["measure",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24614]]],["more",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24152]]]]},{"k":"G4058","v":[["*",[10,10,[[39,3,3,0,3,[[931,1,1,0,1],[938,1,1,1,2],[949,1,1,2,3]]],[40,2,2,3,5,[[957,1,1,3,4],[967,1,1,4,5]]],[41,2,2,5,7,[[974,1,1,5,6],[975,1,1,6,7]]],[42,3,3,7,10,[[997,1,1,7,8],[998,2,2,8,10]]]],[23208,23433,23838,24225,24655,24997,25047,26076,26109,26111]]],["dove",[4,4,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[975,1,1,2,3]]],[42,1,1,3,4,[[997,1,1,3,4]]]],[23208,24225,25047,26076]]],["doves",[5,5,[[39,2,2,0,2,[[938,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[967,1,1,2,3]]],[42,2,2,3,5,[[998,2,2,3,5]]]],[23433,23838,24655,26109,26111]]],["pigeons",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24997]]]]},{"k":"G4059","v":[["*",[18,16,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]],[42,1,1,2,3,[[1003,1,1,2,3]]],[43,6,6,3,9,[[1024,1,1,3,4],[1032,3,3,4,7],[1033,1,1,7,8],[1038,1,1,8,9]]],[45,2,1,9,10,[[1068,2,1,9,10]]],[47,6,5,10,15,[[1092,1,1,10,11],[1095,2,2,11,13],[1096,3,2,13,15]]],[50,1,1,15,16,[[1108,1,1,15,16]]]],[24952,24994,26350,27124,27443,27447,27466,27486,27685,28505,29084,29164,29165,29200,29201,29505]]],["circumcise",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[42,1,1,1,2,[[1003,1,1,1,2]]],[43,2,2,2,4,[[1032,1,1,2,3],[1038,1,1,3,4]]]],[24952,26350,27447,27685]]],["circumcised",[13,11,[[43,4,4,0,4,[[1024,1,1,0,1],[1032,2,2,1,3],[1033,1,1,3,4]]],[45,2,1,4,5,[[1068,2,1,4,5]]],[47,6,5,5,10,[[1092,1,1,5,6],[1095,2,2,6,8],[1096,3,2,8,10]]],[50,1,1,10,11,[[1108,1,1,10,11]]]],[27124,27443,27466,27486,28505,29084,29164,29165,29200,29201,29505]]],["circumcising",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24994]]]]},{"k":"G4060","v":[["*",[8,8,[[39,3,3,0,3,[[949,1,1,0,1],[955,2,2,1,3]]],[40,3,3,3,6,[[968,1,1,3,4],[971,2,2,4,6]]],[42,1,1,6,7,[[1015,1,1,6,7]]],[45,1,1,7,8,[[1073,1,1,7,8]]]],[23859,24157,24177,24674,24843,24862,26854,28657]]],["+",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]]],[23859,24674]]],["about",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24843]]],["bestow",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28657]]],["on",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24157,24862]]],["put",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24177]]],["upon",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26854]]]]},{"k":"G4061","v":[["*",[36,32,[[42,2,2,0,2,[[1003,2,2,0,2]]],[43,3,3,2,5,[[1024,1,1,2,3],[1027,1,1,3,4],[1028,1,1,4,5]]],[44,15,12,5,17,[[1047,6,5,5,10],[1048,2,2,10,12],[1049,6,4,12,16],[1060,1,1,16,17]]],[45,1,1,17,18,[[1068,1,1,17,18]]],[47,7,7,18,25,[[1092,4,4,18,22],[1095,2,2,22,24],[1096,1,1,24,25]]],[48,1,1,25,26,[[1098,1,1,25,26]]],[49,2,2,26,28,[[1105,2,2,26,28]]],[50,4,3,28,31,[[1108,2,1,28,29],[1109,1,1,29,30],[1110,1,1,30,31]]],[55,1,1,31,32,[[1129,1,1,31,32]]]],[26350,26351,27124,27304,27309,27987,27988,27989,27990,27991,27992,28021,28031,28032,28033,28034,28311,28506,29088,29089,29090,29093,29168,29173,29203,29240,29424,29426,29505,29528,29553,29902]]],["+",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27304]]],["Circumcised",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29426]]],["Circumcision",[2,2,[[45,1,1,0,1,[[1068,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]]],[28506,29240]]],["circumcision",[32,28,[[42,2,2,0,2,[[1003,2,2,0,2]]],[43,2,2,2,4,[[1024,1,1,2,3],[1028,1,1,3,4]]],[44,15,12,4,16,[[1047,6,5,4,9],[1048,2,2,9,11],[1049,6,4,11,15],[1060,1,1,15,16]]],[47,7,7,16,23,[[1092,4,4,16,20],[1095,2,2,20,22],[1096,1,1,22,23]]],[49,1,1,23,24,[[1105,1,1,23,24]]],[50,4,3,24,27,[[1108,2,1,24,25],[1109,1,1,25,26],[1110,1,1,26,27]]],[55,1,1,27,28,[[1129,1,1,27,28]]]],[26350,26351,27124,27309,27987,27988,27989,27990,27991,27992,28021,28031,28032,28033,28034,28311,29088,29089,29090,29093,29168,29173,29203,29424,29505,29528,29553,29902]]]]},{"k":"G4062","v":[["make",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27847]]]]},{"k":"G4063","v":[["through",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24462]]]]},{"k":"G4064","v":[["about",[5,5,[[40,1,1,0,1,[[962,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[24462,28869,29286,30250,30684]]]]},{"k":"G4065","v":[["despise",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29923]]]]},{"k":"G4066","v":[["*",[10,10,[[39,2,2,0,2,[[931,1,1,0,1],[942,1,1,1,2]]],[40,2,2,2,4,[[957,1,1,2,3],[962,1,1,3,4]]],[41,5,5,4,9,[[975,1,1,4,5],[976,2,2,5,7],[979,1,1,7,8],[980,1,1,8,9]]],[43,1,1,9,10,[[1031,1,1,9,10]]]],[23197,23632,24243,24462,25028,25077,25100,25212,25282,27420]]],["+",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25282]]],["about",[9,9,[[39,2,2,0,2,[[931,1,1,0,1],[942,1,1,1,2]]],[40,2,2,2,4,[[957,1,1,2,3],[962,1,1,3,4]]],[41,4,4,4,8,[[975,1,1,4,5],[976,2,2,5,7],[979,1,1,7,8]]],[43,1,1,8,9,[[1031,1,1,8,9]]]],[23197,23632,24243,24462,25028,25077,25100,25212,27420]]]]},{"k":"G4067","v":[["offscouring",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28446]]]]},{"k":"G4068","v":[["+",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28669]]]]},{"k":"G4069","v":[["Persis",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28348]]]]},{"k":"G4070","v":[["+",[2,2,[[46,2,2,0,2,[[1085,1,1,0,1],[1086,1,1,1,2]]]],[28942,28958]]]]},{"k":"G4071","v":[["*",[14,14,[[39,4,4,0,4,[[934,1,1,0,1],[936,1,1,1,2],[941,2,2,2,4]]],[40,2,2,4,6,[[960,2,2,4,6]]],[41,4,4,6,10,[[980,1,1,6,7],[981,1,1,7,8],[984,1,1,8,9],[985,1,1,9,10]]],[43,2,2,10,12,[[1027,1,1,10,11],[1028,1,1,11,12]]],[44,1,1,12,13,[[1046,1,1,12,13]]],[58,1,1,13,14,[[1148,1,1,13,14]]]],[23308,23365,23543,23571,24327,24355,25250,25359,25483,25537,27271,27313,27953,30326]]],["birds",[5,5,[[39,2,2,0,2,[[936,1,1,0,1],[941,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[44,1,1,3,4,[[1046,1,1,3,4]]],[58,1,1,4,5,[[1148,1,1,4,5]]]],[23365,23571,25359,27953,30326]]],["fowls",[9,9,[[39,2,2,0,2,[[934,1,1,0,1],[941,1,1,1,2]]],[40,2,2,2,4,[[960,2,2,2,4]]],[41,3,3,4,7,[[980,1,1,4,5],[984,1,1,5,6],[985,1,1,6,7]]],[43,2,2,7,9,[[1027,1,1,7,8],[1028,1,1,8,9]]]],[23308,23543,24327,24355,25250,25483,25537,27271,27313]]]]},{"k":"G4072","v":[["*",[5,5,[[65,5,5,0,5,[[1170,1,1,0,1],[1174,1,1,1,2],[1178,1,1,2,3],[1180,1,1,3,4],[1185,1,1,4,5]]]],[30775,30840,30905,30932,31034]]],["fly",[3,3,[[65,3,3,0,3,[[1178,1,1,0,1],[1180,1,1,1,2],[1185,1,1,2,3]]]],[30905,30932,31034]]],["flying",[2,2,[[65,2,2,0,2,[[1170,1,1,0,1],[1174,1,1,1,2]]]],[30775,30840]]]]},{"k":"G4073","v":[["*",[16,14,[[39,5,5,0,5,[[935,2,2,0,2],[944,1,1,2,3],[955,2,2,3,5]]],[40,1,1,5,6,[[971,1,1,5,6]]],[41,4,3,6,9,[[978,2,1,6,7],[980,2,2,7,9]]],[44,1,1,9,10,[[1054,1,1,9,10]]],[45,2,1,10,11,[[1071,2,1,10,11]]],[59,1,1,11,12,[[1152,1,1,11,12]]],[65,2,2,12,14,[[1172,2,2,12,14]]]],[23340,23341,23690,24180,24189,24872,25194,25251,25258,28188,28571,30407,30808,30809]]],["Rock",[2,1,[[45,2,1,0,1,[[1071,2,1,0,1]]]],[28571]]],["rock",[11,10,[[39,4,4,0,4,[[935,2,2,0,2],[944,1,1,2,3],[955,1,1,3,4]]],[40,1,1,4,5,[[971,1,1,4,5]]],[41,4,3,5,8,[[978,2,1,5,6],[980,2,2,6,8]]],[44,1,1,8,9,[[1054,1,1,8,9]]],[59,1,1,9,10,[[1152,1,1,9,10]]]],[23340,23341,23690,24189,24872,25194,25251,25258,28188,30407]]],["rocks",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[65,2,2,1,3,[[1172,2,2,1,3]]]],[24180,30808,30809]]]]},{"k":"G4074","v":[["*",[162,157,[[39,24,24,0,24,[[932,1,1,0,1],[936,1,1,1,2],[938,1,1,2,3],[942,2,2,3,5],[943,1,1,5,6],[944,4,4,6,10],[945,4,4,10,14],[946,1,1,14,15],[947,1,1,15,16],[954,8,8,16,24]]],[40,19,19,24,43,[[959,1,1,24,25],[961,1,1,25,26],[964,3,3,26,29],[965,2,2,29,31],[966,1,1,31,32],[967,1,1,32,33],[969,1,1,33,34],[970,8,8,34,42],[972,1,1,42,43]]],[41,20,19,43,62,[[977,1,1,43,44],[978,1,1,44,45],[980,2,2,45,47],[981,4,4,47,51],[984,1,1,51,52],[990,1,1,52,53],[994,9,8,53,61],[996,1,1,61,62]]],[42,34,32,62,94,[[997,3,3,62,65],[1002,2,2,65,67],[1009,6,6,67,73],[1014,10,9,73,82],[1016,4,4,82,86],[1017,9,8,86,94]]],[43,58,56,94,150,[[1018,2,2,94,96],[1019,3,3,96,99],[1020,6,6,99,105],[1021,3,3,105,108],[1022,5,5,108,113],[1025,2,2,113,115],[1026,6,5,115,120],[1027,16,16,120,136],[1028,4,4,136,140],[1029,10,9,140,149],[1032,1,1,149,150]]],[47,5,5,150,155,[[1091,1,1,150,151],[1092,4,4,151,155]]],[59,1,1,155,156,[[1151,1,1,155,156]]],[60,1,1,156,157,[[1156,1,1,156,157]]]],[23227,23359,23419,23625,23626,23648,23688,23690,23694,23695,23701,23704,23724,23726,23748,23789,24087,24089,24091,24094,24112,24123,24127,24129,24304,24401,24529,24532,24533,24540,24543,24616,24661,24720,24783,24787,24791,24808,24820,24821,24824,24826,24880,25115,25160,25290,25296,25321,25329,25333,25334,25500,25716,25872,25898,25918,25919,25922,25924,25925,25926,26003,26084,26086,26088,26265,26325,26636,26638,26639,26654,26666,26667,26795,26796,26800,26801,26802,26803,26810,26811,26812,26869,26870,26871,26873,26900,26901,26905,26909,26913,26915,26918,26919,26936,26938,26963,26986,26987,26997,26999,27000,27002,27007,27008,27030,27035,27041,27062,27067,27068,27074,27088,27190,27196,27248,27250,27254,27255,27256,27264,27268,27272,27273,27276,27277,27278,27280,27282,27284,27285,27291,27293,27303,27304,27305,27309,27311,27314,27320,27340,27342,27343,27344,27348,27350,27351,27353,27355,27449,29075,29088,29089,29092,29095,30375,30480]]],["+",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23701]]],["Peter",[156,152,[[39,22,22,0,22,[[932,1,1,0,1],[938,1,1,1,2],[942,2,2,2,4],[943,1,1,4,5],[944,4,4,5,9],[945,3,3,9,12],[946,1,1,12,13],[947,1,1,13,14],[954,8,8,14,22]]],[40,19,19,22,41,[[959,1,1,22,23],[961,1,1,23,24],[964,3,3,24,27],[965,2,2,27,29],[966,1,1,29,30],[967,1,1,30,31],[969,1,1,31,32],[970,8,8,32,40],[972,1,1,40,41]]],[41,20,19,41,60,[[977,1,1,41,42],[978,1,1,42,43],[980,2,2,43,45],[981,4,4,45,49],[984,1,1,49,50],[990,1,1,50,51],[994,9,8,51,59],[996,1,1,59,60]]],[42,31,29,60,89,[[997,1,1,60,61],[1002,1,1,61,62],[1009,6,6,62,68],[1014,10,9,68,77],[1016,4,4,77,81],[1017,9,8,81,89]]],[43,57,56,89,145,[[1018,2,2,89,91],[1019,3,3,91,94],[1020,6,6,94,100],[1021,3,3,100,103],[1022,5,5,103,108],[1025,2,2,108,110],[1026,6,5,110,115],[1027,16,16,115,131],[1028,4,4,131,135],[1029,9,9,135,144],[1032,1,1,144,145]]],[47,5,5,145,150,[[1091,1,1,145,146],[1092,4,4,146,150]]],[59,1,1,150,151,[[1151,1,1,150,151]]],[60,1,1,151,152,[[1156,1,1,151,152]]]],[23227,23419,23625,23626,23648,23688,23690,23694,23695,23704,23724,23726,23748,23789,24087,24089,24091,24094,24112,24123,24127,24129,24304,24401,24529,24532,24533,24540,24543,24616,24661,24720,24783,24787,24791,24808,24820,24821,24824,24826,24880,25115,25160,25290,25296,25321,25329,25333,25334,25500,25716,25872,25898,25918,25919,25922,25924,25925,25926,26003,26088,26325,26636,26638,26639,26654,26666,26667,26795,26796,26800,26801,26802,26803,26810,26811,26812,26869,26870,26871,26873,26900,26901,26905,26909,26913,26915,26918,26919,26936,26938,26963,26986,26987,26997,26999,27000,27002,27007,27008,27030,27035,27041,27062,27067,27068,27074,27088,27190,27196,27248,27250,27254,27255,27256,27264,27268,27272,27273,27276,27277,27278,27280,27282,27284,27285,27291,27293,27303,27304,27305,27309,27311,27314,27320,27340,27342,27343,27344,27348,27350,27351,27353,27355,27449,29075,29088,29089,29092,29095,30375,30480]]],["Peter's",[4,4,[[39,1,1,0,1,[[936,1,1,0,1]]],[42,2,2,1,3,[[997,1,1,1,2],[1002,1,1,2,3]]],[43,1,1,3,4,[[1029,1,1,3,4]]]],[23359,26084,26265,27351]]],["stone",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26086]]]]},{"k":"G4075","v":[["*",[4,4,[[39,2,2,0,2,[[941,2,2,0,2]]],[40,2,2,2,4,[[960,2,2,2,4]]]],[23544,23559,24328,24339]]],["ground",[2,2,[[40,2,2,0,2,[[960,2,2,0,2]]]],[24328,24339]]],["places",[2,2,[[39,2,2,0,2,[[941,2,2,0,2]]]],[23544,23559]]]]},{"k":"G4076","v":[["rue",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25447]]]]},{"k":"G4077","v":[["*",[12,11,[[40,1,1,0,1,[[961,1,1,0,1]]],[42,3,2,1,3,[[1000,3,2,1,3]]],[58,2,2,3,5,[[1148,2,2,3,5]]],[60,1,1,5,6,[[1157,1,1,5,6]]],[65,5,5,6,11,[[1173,1,1,6,7],[1174,1,1,7,8],[1180,1,1,8,9],[1182,1,1,9,10],[1187,1,1,10,11]]]],[24393,26162,26170,30330,30331,30517,30827,30837,30933,30958,31059]]],["fountain",[4,4,[[40,1,1,0,1,[[961,1,1,0,1]]],[58,2,2,1,3,[[1148,2,2,1,3]]],[65,1,1,3,4,[[1187,1,1,3,4]]]],[24393,30330,30331,31059]]],["fountains",[4,4,[[65,4,4,0,4,[[1173,1,1,0,1],[1174,1,1,1,2],[1180,1,1,2,3],[1182,1,1,3,4]]]],[30827,30837,30933,30958]]],["well",[3,2,[[42,3,2,0,2,[[1000,3,2,0,2]]]],[26162,26170]]],["wells",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30517]]]]},{"k":"G4078","v":[["pitched",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30094]]]]},{"k":"G4079","v":[["*",[2,2,[[43,1,1,0,1,[[1044,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[27895,30323]]],["helm",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30323]]],["rudder",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27895]]]]},{"k":"G4080","v":[["*",[2,2,[[47,1,1,0,1,[[1096,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[29199,30068]]],["great",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30068]]],["large",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29199]]]]},{"k":"G4081","v":[["clay",[6,5,[[42,5,4,0,4,[[1005,5,4,0,4]]],[44,1,1,4,5,[[1054,1,1,4,5]]]],[26446,26451,26454,26455,28176]]]]},{"k":"G4082","v":[["scrip",[6,6,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,4,4,2,6,[[981,1,1,2,3],[982,1,1,3,4],[994,2,2,4,6]]]],[23427,24415,25304,25367,25899,25900]]]]},{"k":"G4083","v":[["*",[4,4,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]],[65,1,1,3,4,[[1187,1,1,3,4]]]],[23309,25484,26906,31070]]],["cubit",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23309,25484]]],["cubits",[2,2,[[42,1,1,0,1,[[1017,1,1,0,1]]],[65,1,1,1,2,[[1187,1,1,1,2]]]],[26906,31070]]]]},{"k":"G4084","v":[["*",[12,12,[[42,8,8,0,8,[[1003,3,3,0,3],[1004,1,1,3,4],[1006,1,1,4,5],[1007,1,1,5,6],[1017,2,2,6,8]]],[43,2,2,8,10,[[1020,1,1,8,9],[1029,1,1,9,10]]],[46,1,1,10,11,[[1088,1,1,10,11]]],[65,1,1,11,12,[[1185,1,1,11,12]]]],[26358,26360,26372,26401,26520,26580,26901,26908,27003,27341,29021,31037]]],["apprehend",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29021]]],["apprehended",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27341]]],["caught",[2,2,[[42,2,2,0,2,[[1017,2,2,0,2]]]],[26901,26908]]],["on",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26401]]],["take",[4,4,[[42,4,4,0,4,[[1003,2,2,0,2],[1006,1,1,2,3],[1007,1,1,3,4]]]],[26358,26360,26520,26580]]],["taken",[2,2,[[42,1,1,0,1,[[1003,1,1,0,1]]],[65,1,1,1,2,[[1185,1,1,1,2]]]],[26372,31037]]],["took",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27003]]]]},{"k":"G4085","v":[["down",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25184]]]]},{"k":"G4086","v":[["words",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29498]]]]},{"k":"G4087","v":[["*",[4,4,[[50,1,1,0,1,[[1109,1,1,0,1]]],[65,3,3,1,4,[[1174,1,1,1,2],[1176,2,2,2,4]]]],[29536,30838,30870,30871]]],["+",[2,2,[[50,1,1,0,1,[[1109,1,1,0,1]]],[65,1,1,1,2,[[1176,1,1,1,2]]]],[29536,30870]]],["bitter",[2,2,[[65,2,2,0,2,[[1174,1,1,0,1],[1176,1,1,1,2]]]],[30838,30871]]]]},{"k":"G4088","v":[["bitterness",[4,4,[[43,1,1,0,1,[[1025,1,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]]],[27199,28005,29303,30227]]]]},{"k":"G4089","v":[["bitter",[2,2,[[58,2,2,0,2,[[1148,2,2,0,2]]]],[30330,30333]]]]},{"k":"G4090","v":[["bitterly",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24129,25926]]]]},{"k":"G4091","v":[["Pilate",[55,53,[[39,9,8,0,8,[[955,9,8,0,8]]],[40,10,10,8,18,[[971,10,10,8,18]]],[41,12,12,18,30,[[975,1,1,18,19],[985,1,1,19,20],[995,10,10,20,30]]],[42,20,19,30,49,[[1014,6,6,30,36],[1015,14,13,36,49]]],[43,3,3,49,52,[[1020,1,1,49,50],[1021,1,1,50,51],[1030,1,1,51,52]]],[53,1,1,52,53,[[1124,1,1,52,53]]]],[24131,24142,24146,24151,24153,24187,24191,24194,24827,24828,24830,24831,24835,24838,24840,24841,24869,24870,25026,25519,25936,25938,25939,25941,25946,25947,25948,25955,25959,25987,26814,26816,26818,26820,26822,26823,26826,26829,26831,26833,26835,26837,26838,26840,26844,26846,26847,26856,26863,27009,27049,27390,29801]]]]},{"k":"G4092","v":[["swollen",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27905]]]]},{"k":"G4093","v":[["table",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24956]]]]},{"k":"G4094","v":[["*",[5,5,[[39,2,2,0,2,[[942,2,2,0,2]]],[40,2,2,2,4,[[962,2,2,2,4]]],[41,1,1,4,5,[[983,1,1,4,5]]]],[23605,23608,24432,24435,25444]]],["charger",[4,4,[[39,2,2,0,2,[[942,2,2,0,2]]],[40,2,2,2,4,[[962,2,2,2,4]]]],[23605,23608,24432,24435]]],["platter",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25444]]]]},{"k":"G4095","v":[["*",[75,66,[[39,15,12,0,12,[[934,2,2,0,2],[939,2,2,2,4],[948,3,2,4,6],[952,2,2,6,8],[954,4,3,8,11],[955,2,1,11,12]]],[40,10,7,12,19,[[958,1,1,12,13],[966,4,2,13,15],[970,3,2,15,17],[971,1,1,17,18],[972,1,1,18,19]]],[41,17,16,19,35,[[973,1,1,19,20],[977,3,3,20,23],[979,2,2,23,25],[982,1,1,25,26],[984,3,3,26,29],[985,1,1,29,30],[989,4,3,30,33],[994,2,2,33,35]]],[42,11,11,35,46,[[1000,6,6,35,41],[1002,3,3,41,44],[1003,1,1,44,45],[1014,1,1,45,46]]],[43,3,3,46,49,[[1026,1,1,46,47],[1040,2,2,47,49]]],[44,1,1,49,50,[[1059,1,1,49,50]]],[45,14,12,50,62,[[1070,1,1,50,51],[1071,5,4,51,55],[1072,7,6,55,61],[1076,1,1,61,62]]],[57,1,1,62,63,[[1138,1,1,62,63]]],[65,3,3,63,66,[[1180,1,1,63,64],[1182,1,1,64,65],[1184,1,1,65,66]]]],[23307,23313,23477,23478,23814,23815,23995,24006,24081,24083,24096,24163,24276,24626,24627,24777,24779,24849,24891,24908,25137,25140,25146,25228,25229,25370,25478,25488,25504,25544,25659,25678,25679,25882,25894,26163,26165,26166,26168,26169,26170,26310,26311,26313,26365,26796,27225,27746,27755,28301,28544,28571,28574,28588,28598,28622,28625,28626,28627,28628,28629,28750,30051,30936,30960,30996]]],["+",[2,2,[[45,2,2,0,2,[[1072,2,2,0,2]]]],[28625,28626]]],["Drink",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24081]]],["drank",[5,5,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,2,2,1,3,[[989,2,2,1,3]]],[42,1,1,3,4,[[1000,1,1,3,4]]],[45,1,1,4,5,[[1071,1,1,4,5]]]],[24777,25678,25679,26168,28571]]],["drink",[49,43,[[39,11,8,0,8,[[934,2,2,0,2],[948,3,2,2,4],[952,1,1,4,5],[954,3,2,5,7],[955,2,1,7,8]]],[40,8,5,8,13,[[966,4,2,8,10],[970,2,1,10,11],[971,1,1,11,12],[972,1,1,12,13]]],[41,9,9,13,22,[[973,1,1,13,14],[977,2,2,14,16],[984,3,3,16,19],[989,1,1,19,20],[994,2,2,20,22]]],[42,6,6,22,28,[[1000,3,3,22,25],[1002,1,1,25,26],[1003,1,1,26,27],[1014,1,1,27,28]]],[43,3,3,28,31,[[1026,1,1,28,29],[1040,2,2,29,31]]],[44,1,1,31,32,[[1059,1,1,31,32]]],[45,9,9,32,41,[[1070,1,1,32,33],[1071,4,4,33,37],[1072,3,3,37,40],[1076,1,1,40,41]]],[65,2,2,41,43,[[1180,1,1,41,42],[1182,1,1,42,43]]]],[23307,23313,23814,23815,24006,24083,24096,24163,24626,24627,24779,24849,24891,24908,25137,25140,25478,25488,25504,25659,25882,25894,26163,26165,26166,26310,26365,26796,27225,27746,27755,28301,28544,28571,28574,28588,28598,28622,28627,28628,28750,30936,30960]]],["drinketh",[7,6,[[40,1,1,0,1,[[958,1,1,0,1]]],[42,4,4,1,5,[[1000,2,2,1,3],[1002,2,2,3,5]]],[45,2,1,5,6,[[1072,2,1,5,6]]]],[24276,26169,26170,26311,26313,28629]]],["drinking",[6,6,[[39,3,3,0,3,[[939,2,2,0,2],[952,1,1,2,3]]],[41,3,3,3,6,[[979,2,2,3,5],[982,1,1,5,6]]]],[23477,23478,23995,25228,25229,25370]]],["drunk",[3,3,[[41,2,2,0,2,[[977,1,1,0,1],[985,1,1,1,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[25146,25544,30996]]],["drunken",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25659]]],["in",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30051]]]]},{"k":"G4096","v":[["fatness",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28226]]]]},{"k":"G4097","v":[["sold",[9,9,[[39,3,3,0,3,[[941,1,1,0,1],[946,1,1,1,2],[954,1,1,2,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[42,1,1,4,5,[[1008,1,1,4,5]]],[43,3,3,5,8,[[1019,1,1,5,6],[1021,1,1,6,7],[1022,1,1,7,8]]],[44,1,1,8,9,[[1052,1,1,8,9]]]],[23585,23752,24063,24759,26585,26994,27056,27063,28105]]]]},{"k":"G4098","v":[["*",[90,85,[[39,19,18,0,18,[[930,1,1,0,1],[932,1,1,1,2],[935,2,2,2,4],[938,1,1,4,5],[941,4,4,5,9],[943,2,2,9,11],[945,2,2,11,13],[946,2,2,13,15],[949,2,1,15,16],[952,1,1,16,17],[954,1,1,17,18]]],[40,7,7,18,25,[[960,4,4,18,22],[961,1,1,22,23],[965,1,1,23,24],[970,1,1,24,25]]],[41,19,18,25,43,[[977,1,1,25,26],[978,2,2,26,28],[980,6,6,28,34],[982,1,1,34,35],[983,1,1,35,36],[985,1,1,36,37],[988,2,2,37,39],[989,1,1,39,40],[992,2,1,40,41],[993,1,1,41,42],[995,1,1,42,43]]],[42,3,3,43,46,[[1007,1,1,43,44],[1008,1,1,44,45],[1014,1,1,45,46]]],[43,9,9,46,55,[[1018,1,1,46,47],[1022,2,2,47,49],[1026,1,1,49,50],[1027,1,1,50,51],[1032,1,1,51,52],[1037,1,1,52,53],[1039,1,1,53,54],[1044,1,1,54,55]]],[44,3,3,55,58,[[1056,2,2,55,57],[1059,1,1,57,58]]],[45,3,3,58,61,[[1071,2,2,58,60],[1075,1,1,60,61]]],[57,3,3,61,64,[[1135,1,1,61,62],[1136,1,1,62,63],[1143,1,1,63,64]]],[58,1,1,64,65,[[1150,1,1,64,65]]],[65,23,20,65,85,[[1167,1,1,65,66],[1170,1,1,66,67],[1171,2,2,67,69],[1172,2,2,69,71],[1173,2,2,71,73],[1174,2,1,73,74],[1175,1,1,74,75],[1177,3,3,75,78],[1180,2,1,78,79],[1182,1,1,79,80],[1183,1,1,80,81],[1184,2,1,81,82],[1185,2,2,82,84],[1188,1,1,84,85]]]],[23180,23218,23341,23343,23446,23543,23544,23546,23547,23647,23660,23706,23715,23753,23756,23870,23986,24093,24327,24328,24330,24331,24386,24558,24789,25119,25185,25195,25250,25251,25252,25253,25259,25286,25381,25422,25522,25637,25641,25667,25797,25850,25965,26555,26604,26791,26949,27064,27069,27220,27284,27458,27635,27711,27889,28220,28231,28284,28575,28579,28703,30012,30025,30202,30366,30714,30778,30787,30793,30806,30809,30821,30826,30837,30841,30883,30885,30888,30934,30973,30985,30995,31021,31027,31088]]],["Fall",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[65,1,1,1,2,[[1172,1,1,1,2]]]],[25965,30809]]],["down",[18,18,[[39,4,4,0,4,[[930,1,1,0,1],[932,1,1,1,2],[946,2,2,2,4]]],[41,2,2,4,6,[[980,1,1,4,5],[989,1,1,5,6]]],[42,1,1,6,7,[[1007,1,1,6,7]]],[43,4,4,7,11,[[1022,2,2,7,9],[1027,1,1,9,10],[1032,1,1,10,11]]],[45,1,1,11,12,[[1075,1,1,11,12]]],[57,1,1,12,13,[[1143,1,1,12,13]]],[65,5,5,13,18,[[1170,1,1,13,14],[1171,2,2,14,16],[1185,1,1,16,17],[1188,1,1,17,18]]]],[23180,23218,23753,23756,25286,25667,26555,27064,27069,27284,27458,28703,30202,30778,30787,30793,31021,31088]]],["fail",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25637]]],["fall",[18,16,[[39,6,5,0,5,[[938,1,1,0,1],[943,2,2,1,3],[949,2,1,3,4],[952,1,1,4,5]]],[41,5,4,5,9,[[978,1,1,5,6],[982,1,1,6,7],[992,2,1,7,8],[993,1,1,8,9]]],[42,1,1,9,10,[[1008,1,1,9,10]]],[43,1,1,10,11,[[1044,1,1,10,11]]],[44,1,1,11,12,[[1056,1,1,11,12]]],[45,1,1,12,13,[[1071,1,1,12,13]]],[57,1,1,13,14,[[1136,1,1,13,14]]],[58,1,1,14,15,[[1150,1,1,14,15]]],[65,1,1,15,16,[[1175,1,1,15,16]]]],[23446,23647,23660,23870,23986,25185,25381,25797,25850,26604,27889,28220,28579,30025,30366,30841]]],["fallen",[5,3,[[65,5,3,0,3,[[1180,2,1,0,1],[1183,1,1,1,2],[1184,2,1,2,3]]]],[30934,30985,30995]]],["falleth",[3,3,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[44,1,1,2,3,[[1059,1,1,2,3]]]],[23715,25422,28284]]],["fell",[42,41,[[39,8,8,0,8,[[935,2,2,0,2],[941,4,4,2,6],[945,1,1,6,7],[954,1,1,7,8]]],[40,7,7,8,15,[[960,4,4,8,12],[961,1,1,12,13],[965,1,1,13,14],[970,1,1,14,15]]],[41,9,9,15,24,[[977,1,1,15,16],[978,1,1,16,17],[980,5,5,17,22],[985,1,1,22,23],[988,1,1,23,24]]],[42,1,1,24,25,[[1014,1,1,24,25]]],[43,4,4,25,29,[[1018,1,1,25,26],[1026,1,1,26,27],[1037,1,1,27,28],[1039,1,1,28,29]]],[44,1,1,29,30,[[1056,1,1,29,30]]],[45,1,1,30,31,[[1071,1,1,30,31]]],[57,1,1,31,32,[[1135,1,1,31,32]]],[65,10,9,32,41,[[1167,1,1,32,33],[1172,1,1,33,34],[1173,1,1,34,35],[1174,2,1,35,36],[1177,3,3,36,39],[1182,1,1,39,40],[1185,1,1,40,41]]]],[23341,23343,23543,23544,23546,23547,23706,24093,24327,24328,24330,24331,24386,24558,24789,25119,25195,25250,25251,25252,25253,25259,25522,25641,26791,26949,27220,27635,27711,28231,28575,30012,30714,30806,30821,30837,30883,30885,30888,30973,31027]]],["light",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30826]]]]},{"k":"G4099","v":[["Pisidia",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1031,1,1,1,2]]]],[27376,27438]]]]},{"k":"G4100","v":[["*",[248,220,[[39,11,9,0,9,[[936,1,1,0,1],[937,1,1,1,2],[946,1,1,2,3],[949,5,3,3,6],[952,2,2,6,8],[955,1,1,8,9]]],[40,15,14,9,23,[[957,1,1,9,10],[961,1,1,10,11],[965,4,3,11,14],[967,3,3,14,17],[969,1,1,17,18],[971,1,1,18,19],[972,4,4,19,23]]],[41,9,9,23,32,[[973,2,2,23,25],[980,3,3,25,28],[988,1,1,28,29],[992,1,1,29,30],[994,1,1,30,31],[996,1,1,31,32]]],[42,100,86,32,118,[[997,3,3,32,35],[998,4,4,35,39],[999,8,5,39,44],[1000,7,7,44,51],[1001,7,5,51,56],[1002,9,8,56,64],[1003,5,5,64,69],[1004,5,5,69,74],[1005,4,4,74,78],[1006,7,5,78,83],[1007,9,8,83,91],[1008,10,9,91,100],[1009,1,1,100,101],[1010,7,5,101,106],[1012,4,4,106,110],[1013,3,3,110,113],[1015,1,1,113,114],[1016,6,4,114,118]]],[43,39,36,118,154,[[1019,1,1,118,119],[1021,2,2,119,121],[1022,1,1,121,122],[1025,4,3,122,125],[1026,2,2,125,127],[1027,1,1,127,128],[1028,2,2,128,130],[1030,4,4,130,134],[1031,2,2,134,136],[1032,3,3,136,139],[1033,2,2,139,141],[1034,2,2,141,143],[1035,3,2,143,145],[1036,3,3,145,148],[1038,2,2,148,150],[1039,1,1,150,151],[1041,1,1,151,152],[1043,2,1,152,153],[1044,1,1,153,154]]],[44,21,20,154,174,[[1046,1,1,154,155],[1048,2,2,155,157],[1049,6,6,157,163],[1051,1,1,163,164],[1054,1,1,164,165],[1055,7,6,165,171],[1058,1,1,171,172],[1059,1,1,172,173],[1060,1,1,173,174]]],[45,9,8,174,182,[[1062,1,1,174,175],[1064,1,1,175,176],[1070,1,1,176,177],[1072,1,1,177,178],[1074,1,1,178,179],[1075,2,1,179,180],[1076,2,2,180,182]]],[46,2,1,182,183,[[1081,2,1,182,183]]],[47,4,4,183,187,[[1092,2,2,183,185],[1093,2,2,185,187]]],[48,2,2,187,189,[[1097,2,2,187,189]]],[49,1,1,189,190,[[1103,1,1,189,190]]],[51,5,5,190,195,[[1111,1,1,190,191],[1112,3,3,191,194],[1114,1,1,194,195]]],[52,4,3,195,198,[[1116,2,1,195,196],[1117,2,2,196,198]]],[53,3,3,198,201,[[1119,2,2,198,200],[1121,1,1,200,201]]],[54,1,1,201,202,[[1125,1,1,201,202]]],[55,2,2,202,204,[[1129,1,1,202,203],[1131,1,1,203,204]]],[57,2,2,204,206,[[1136,1,1,204,205],[1143,1,1,205,206]]],[58,3,2,206,208,[[1147,3,2,206,208]]],[59,4,4,208,212,[[1151,2,2,208,210],[1152,2,2,210,212]]],[61,10,7,212,219,[[1161,1,1,212,213],[1162,2,2,213,215],[1163,7,4,215,219]]],[64,1,1,219,220,[[1166,1,1,219,220]]]],[23358,23407,23733,23848,23851,23858,23980,23983,24171,24230,24400,24561,24562,24580,24663,24664,24671,24738,24858,24886,24887,24889,24890,24913,24938,25257,25258,25295,25631,25784,25931,26016,26051,26056,26094,26106,26117,26118,26119,26132,26135,26136,26138,26156,26177,26195,26197,26198,26204,26206,26209,26234,26248,26254,26256,26257,26286,26287,26292,26293,26297,26304,26321,26326,26333,26359,26366,26367,26376,26405,26411,26412,26426,26427,26458,26475,26476,26478,26506,26507,26518,26519,26523,26538,26548,26549,26550,26563,26565,26568,26571,26591,26616,26617,26618,26619,26622,26624,26626,26627,26649,26669,26678,26679,26680,26697,26735,26753,26756,26757,26767,26779,26780,26860,26875,26892,26896,26898,26993,27026,27054,27073,27188,27189,27213,27242,27258,27302,27324,27328,27374,27401,27403,27410,27415,27437,27447,27449,27453,27514,27517,27535,27557,27565,27584,27587,27589,27603,27684,27689,27723,27783,27850,27880,27946,27993,28013,28025,28027,28033,28039,28040,28046,28076,28188,28192,28197,28198,28199,28202,28204,28277,28282,28316,28384,28415,28557,28618,28672,28700,28720,28729,28872,29088,29097,29108,29124,29219,29225,29390,29567,29574,29580,29583,29617,29659,29672,29673,29707,29712,29747,29821,29895,29931,30017,30178,30312,30316,30382,30395,30405,30406,30602,30604,30619,30625,30629,30634,30637,30677]]],["+",[3,3,[[41,1,1,0,1,[[988,1,1,0,1]]],[42,2,2,1,3,[[1001,1,1,1,2],[1013,1,1,2,3]]]],[25631,26256,26779]]],["Believe",[3,3,[[39,1,1,0,1,[[937,1,1,0,1]]],[42,1,1,1,2,[[1010,1,1,1,2]]],[43,1,1,2,3,[[1033,1,1,2,3]]]],[23407,26679,27514]]],["Believest",[2,2,[[42,2,2,0,2,[[1007,1,1,0,1],[1010,1,1,1,2]]]],[26549,26678]]],["believe",[110,103,[[39,6,6,0,6,[[946,1,1,0,1],[949,2,2,1,3],[952,2,2,3,5],[955,1,1,5,6]]],[40,11,11,6,17,[[957,1,1,6,7],[961,1,1,7,8],[965,3,3,8,11],[967,3,3,11,14],[969,1,1,14,15],[971,1,1,15,16],[972,1,1,16,17]]],[41,5,5,17,22,[[980,3,3,17,20],[994,1,1,20,21],[996,1,1,21,22]]],[42,50,45,22,67,[[997,2,2,22,24],[999,2,1,24,25],[1000,3,3,25,28],[1001,4,3,28,31],[1002,5,5,31,36],[1003,2,2,36,38],[1004,3,3,38,41],[1005,4,4,41,45],[1006,5,3,45,48],[1007,5,5,48,53],[1008,3,3,53,56],[1009,1,1,56,57],[1010,4,3,57,60],[1012,3,3,60,63],[1013,1,1,63,64],[1015,1,1,64,65],[1016,2,2,65,67]]],[43,9,9,67,76,[[1025,1,1,67,68],[1030,2,2,68,70],[1032,2,2,70,72],[1036,1,1,72,73],[1038,2,2,73,75],[1044,1,1,75,76]]],[44,6,6,76,82,[[1048,1,1,76,77],[1049,2,2,77,79],[1051,1,1,79,80],[1055,2,2,80,82]]],[45,4,3,82,85,[[1062,1,1,82,83],[1072,1,1,83,84],[1075,2,1,84,85]]],[46,1,1,85,86,[[1081,1,1,85,86]]],[47,1,1,86,87,[[1093,1,1,86,87]]],[48,1,1,87,88,[[1097,1,1,87,88]]],[49,1,1,88,89,[[1103,1,1,88,89]]],[51,4,4,89,93,[[1111,1,1,89,90],[1112,2,2,90,92],[1114,1,1,92,93]]],[52,2,2,93,95,[[1116,1,1,93,94],[1117,1,1,94,95]]],[53,1,1,95,96,[[1119,1,1,95,96]]],[57,1,1,96,97,[[1143,1,1,96,97]]],[58,1,1,97,98,[[1147,1,1,97,98]]],[59,2,2,98,100,[[1151,1,1,98,99],[1152,1,1,99,100]]],[61,4,3,100,103,[[1161,1,1,100,101],[1162,1,1,101,102],[1163,2,1,102,103]]]],[23733,23851,23858,23980,23983,24171,24230,24400,24561,24562,24580,24663,24664,24671,24738,24858,24890,25257,25258,25295,25931,26016,26051,26056,26132,26177,26198,26204,26248,26254,26257,26286,26287,26293,26321,26326,26333,26367,26405,26426,26427,26458,26475,26476,26478,26507,26518,26519,26538,26550,26563,26565,26571,26616,26619,26627,26649,26669,26679,26697,26735,26756,26757,26780,26860,26892,26898,27213,27401,27403,27449,27453,27589,27684,27689,27880,28013,28033,28046,28076,28197,28202,28384,28618,28700,28872,29124,29225,29390,29567,29580,29583,29617,29659,29672,29712,30178,30312,30395,30406,30602,30604,30637]]],["believed",[76,73,[[39,3,2,0,2,[[936,1,1,0,1],[949,2,1,1,2]]],[40,2,2,2,4,[[972,2,2,2,4]]],[41,2,2,4,6,[[973,1,1,4,5],[992,1,1,5,6]]],[42,26,25,6,31,[[998,3,3,6,9],[999,1,1,9,10],[1000,4,4,10,14],[1001,1,1,14,15],[1002,1,1,15,16],[1003,2,2,16,18],[1004,2,2,18,20],[1006,2,2,20,22],[1007,1,1,22,23],[1008,4,4,23,27],[1012,1,1,27,28],[1013,1,1,28,29],[1016,3,2,29,31]]],[43,22,21,31,52,[[1019,1,1,31,32],[1021,2,2,32,34],[1025,2,2,34,36],[1026,2,2,36,38],[1028,2,2,38,40],[1030,2,2,40,42],[1031,2,2,42,44],[1032,1,1,44,45],[1034,2,2,45,47],[1035,3,2,47,49],[1036,2,2,49,51],[1039,1,1,51,52]]],[44,6,6,52,58,[[1049,3,3,52,55],[1055,2,2,55,57],[1058,1,1,57,58]]],[45,3,3,58,61,[[1064,1,1,58,59],[1076,2,2,59,61]]],[46,1,1,61,62,[[1081,1,1,61,62]]],[47,2,2,62,64,[[1092,1,1,62,63],[1093,1,1,63,64]]],[48,1,1,64,65,[[1097,1,1,64,65]]],[52,2,2,65,67,[[1116,1,1,65,66],[1117,1,1,66,67]]],[54,1,1,67,68,[[1125,1,1,67,68]]],[55,1,1,68,69,[[1131,1,1,68,69]]],[57,1,1,69,70,[[1136,1,1,69,70]]],[58,1,1,70,71,[[1147,1,1,70,71]]],[61,1,1,71,72,[[1162,1,1,71,72]]],[64,1,1,72,73,[[1166,1,1,72,73]]]],[23358,23858,24886,24887,24938,25784,26106,26117,26118,26138,26195,26197,26206,26209,26256,26321,26359,26376,26411,26412,26506,26523,26568,26591,26617,26618,26622,26753,26767,26875,26896,26993,27026,27054,27188,27189,27242,27258,27324,27328,27374,27410,27415,27437,27447,27535,27557,27565,27584,27587,27603,27723,28025,28039,28040,28202,28204,28277,28415,28720,28729,28872,29097,29108,29219,29659,29673,29821,29931,30017,30316,30619,30677]]],["believers",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27073]]],["believest",[6,5,[[41,1,1,0,1,[[973,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]],[43,3,2,2,4,[[1025,1,1,2,3],[1043,2,1,3,4]]],[58,1,1,4,5,[[1147,1,1,4,5]]]],[24913,26094,27213,27850,30312]]],["believeth",[33,29,[[40,2,2,0,2,[[965,1,1,0,1],[972,1,1,1,2]]],[42,16,14,2,16,[[999,5,4,2,6],[1001,1,1,6,7],[1002,3,3,7,10],[1003,1,1,10,11],[1007,2,2,11,13],[1008,3,2,13,15],[1010,1,1,15,16]]],[43,1,1,16,17,[[1027,1,1,16,17]]],[44,7,7,17,24,[[1046,1,1,17,18],[1049,1,1,18,19],[1054,1,1,19,20],[1055,3,3,20,23],[1059,1,1,23,24]]],[45,1,1,24,25,[[1074,1,1,24,25]]],[59,1,1,25,26,[[1152,1,1,25,26]]],[61,5,3,26,29,[[1163,5,3,26,29]]]],[24561,24889,26135,26136,26138,26156,26234,26292,26297,26304,26366,26548,26549,26624,26626,26680,27302,27946,28027,28188,28192,28198,28199,28282,28672,30405,30625,30629,30634]]],["believing",[6,6,[[39,1,1,0,1,[[949,1,1,0,1]]],[42,1,1,1,2,[[1016,1,1,1,2]]],[43,2,2,2,4,[[1033,1,1,2,3],[1041,1,1,3,4]]],[44,1,1,4,5,[[1060,1,1,4,5]]],[59,1,1,5,6,[[1151,1,1,5,6]]]],[23848,26898,27517,27783,28316,30382]]],["commit",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26119]]],["committed",[5,5,[[44,1,1,0,1,[[1048,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]],[55,1,1,4,5,[[1129,1,1,4,5]]]],[27993,28557,29088,29707,29895]]],["on",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29747]]],["trust",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29574]]]]},{"k":"G4101","v":[["+",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]]],[24757,26583]]]]},{"k":"G4102","v":[["*",[244,228,[[39,8,8,0,8,[[936,1,1,0,1],[937,3,3,1,4],[943,1,1,4,5],[945,1,1,5,6],[949,1,1,6,7],[951,1,1,7,8]]],[40,5,5,8,13,[[958,1,1,8,9],[960,1,1,9,10],[961,1,1,10,11],[966,1,1,11,12],[967,1,1,12,13]]],[41,11,11,13,24,[[977,1,1,13,14],[979,2,2,14,16],[980,2,2,16,18],[989,3,3,18,21],[990,2,2,21,23],[994,1,1,23,24]]],[43,16,15,24,39,[[1020,2,1,24,25],[1023,3,3,25,28],[1028,1,1,28,29],[1030,1,1,29,30],[1031,3,3,30,33],[1032,1,1,33,34],[1033,1,1,34,35],[1034,1,1,35,36],[1037,1,1,36,37],[1041,1,1,37,38],[1043,1,1,38,39]]],[44,40,35,39,74,[[1046,6,4,39,43],[1048,9,8,43,51],[1049,10,9,51,60],[1050,2,2,60,62],[1054,2,2,62,64],[1055,3,3,64,67],[1056,1,1,67,68],[1057,2,2,68,70],[1059,4,3,70,73],[1061,1,1,73,74]]],[45,7,7,74,81,[[1063,1,1,74,75],[1073,1,1,75,76],[1074,2,2,76,78],[1076,2,2,78,80],[1077,1,1,80,81]]],[46,7,6,81,87,[[1078,2,1,81,82],[1081,1,1,82,83],[1082,1,1,83,84],[1085,1,1,84,85],[1087,1,1,85,86],[1090,1,1,86,87]]],[47,22,20,87,107,[[1091,1,1,87,88],[1092,3,2,88,90],[1093,14,13,90,103],[1095,3,3,103,106],[1096,1,1,106,107]]],[48,8,8,107,115,[[1097,1,1,107,108],[1098,1,1,108,109],[1099,2,2,109,111],[1100,2,2,111,113],[1102,2,2,113,115]]],[49,5,4,115,119,[[1103,2,2,115,117],[1104,1,1,117,118],[1105,2,1,118,119]]],[50,5,5,119,124,[[1107,2,2,119,121],[1108,3,3,121,124]]],[51,8,8,124,132,[[1111,2,2,124,126],[1113,5,5,126,131],[1115,1,1,131,132]]],[52,5,5,132,137,[[1116,3,3,132,135],[1117,1,1,135,136],[1118,1,1,136,137]]],[53,19,18,137,155,[[1119,6,5,137,142],[1120,2,2,142,144],[1121,2,2,144,146],[1122,3,3,146,149],[1123,2,2,149,151],[1124,4,4,151,155]]],[54,8,8,155,163,[[1125,2,2,155,157],[1126,2,2,157,159],[1127,3,3,159,162],[1128,1,1,162,163]]],[55,6,6,163,169,[[1129,3,3,163,166],[1130,2,2,166,168],[1131,1,1,168,169]]],[56,2,2,169,171,[[1132,2,2,169,171]]],[57,32,31,171,202,[[1136,1,1,171,172],[1138,2,2,172,174],[1142,3,3,174,177],[1143,24,23,177,200],[1144,1,1,200,201],[1145,1,1,201,202]]],[58,16,12,202,214,[[1146,2,2,202,204],[1147,13,9,204,213],[1150,1,1,213,214]]],[59,5,5,214,219,[[1151,4,4,214,218],[1155,1,1,218,219]]],[60,2,2,219,221,[[1156,2,2,219,221]]],[61,1,1,221,222,[[1163,1,1,221,222]]],[64,2,2,222,224,[[1166,2,2,222,224]]],[65,4,4,224,228,[[1168,2,2,224,226],[1179,1,1,226,227],[1180,1,1,227,228]]]],[23355,23381,23401,23408,23661,23720,23847,23941,24265,24363,24398,24640,24662,25127,25204,25245,25270,25293,25656,25657,25670,25696,25730,25896,27012,27106,27108,27109,27331,27370,27423,27436,27441,27451,27488,27554,27647,27793,27841,27935,27938,27942,27947,27994,28013,28016,28017,28018,28019,28021,28022,28027,28031,28033,28034,28035,28036,28038,28041,28042,28048,28049,28185,28187,28194,28196,28205,28229,28248,28251,28281,28302,28303,28362,28399,28643,28667,28678,28732,28735,28789,28824,28872,28884,28939,28986,29048,29080,29097,29101,29104,29107,29109,29110,29111,29113,29114,29116,29124,29125,29126,29127,29128,29167,29168,29184,29198,29221,29237,29263,29268,29277,29285,29353,29360,29386,29388,29408,29430,29469,29488,29499,29501,29506,29563,29568,29592,29595,29596,29597,29600,29629,29652,29653,29660,29674,29680,29698,29700,29701,29710,29715,29723,29731,29740,29744,29748,29753,29759,29771,29775,29798,29799,29800,29809,29814,29822,29845,29849,29861,29863,29868,29877,29893,29896,29905,29910,29918,29938,29943,29944,30016,30045,30056,30155,30171,30172,30173,30175,30176,30177,30178,30179,30180,30181,30183,30185,30189,30192,30193,30194,30195,30196,30199,30200,30201,30202,30203,30205,30211,30214,30248,30269,30272,30294,30298,30307,30310,30311,30313,30315,30317,30319,30369,30379,30381,30383,30395,30474,30480,30484,30628,30675,30692,30730,30736,30918,30938]]],["+",[2,2,[[44,2,2,0,2,[[1048,2,2,0,2]]]],[27994,28017]]],["assurance",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27554]]],["belief",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29674]]],["believe",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30172]]],["faith",[238,222,[[39,8,8,0,8,[[936,1,1,0,1],[937,3,3,1,4],[943,1,1,4,5],[945,1,1,5,6],[949,1,1,6,7],[951,1,1,7,8]]],[40,5,5,8,13,[[958,1,1,8,9],[960,1,1,9,10],[961,1,1,10,11],[966,1,1,11,12],[967,1,1,12,13]]],[41,11,11,13,24,[[977,1,1,13,14],[979,2,2,14,16],[980,2,2,16,18],[989,3,3,18,21],[990,2,2,21,23],[994,1,1,23,24]]],[43,15,14,24,38,[[1020,2,1,24,25],[1023,3,3,25,28],[1028,1,1,28,29],[1030,1,1,29,30],[1031,3,3,30,33],[1032,1,1,33,34],[1033,1,1,34,35],[1037,1,1,35,36],[1041,1,1,36,37],[1043,1,1,37,38]]],[44,38,33,38,71,[[1046,6,4,38,42],[1048,7,6,42,48],[1049,10,9,48,57],[1050,2,2,57,59],[1054,2,2,59,61],[1055,3,3,61,64],[1056,1,1,64,65],[1057,2,2,65,67],[1059,4,3,67,70],[1061,1,1,70,71]]],[45,7,7,71,78,[[1063,1,1,71,72],[1073,1,1,72,73],[1074,2,2,73,75],[1076,2,2,75,77],[1077,1,1,77,78]]],[46,7,6,78,84,[[1078,2,1,78,79],[1081,1,1,79,80],[1082,1,1,80,81],[1085,1,1,81,82],[1087,1,1,82,83],[1090,1,1,83,84]]],[47,22,20,84,104,[[1091,1,1,84,85],[1092,3,2,85,87],[1093,14,13,87,100],[1095,3,3,100,103],[1096,1,1,103,104]]],[48,8,8,104,112,[[1097,1,1,104,105],[1098,1,1,105,106],[1099,2,2,106,108],[1100,2,2,108,110],[1102,2,2,110,112]]],[49,5,4,112,116,[[1103,2,2,112,114],[1104,1,1,114,115],[1105,2,1,115,116]]],[50,5,5,116,121,[[1107,2,2,116,118],[1108,3,3,118,121]]],[51,8,8,121,129,[[1111,2,2,121,123],[1113,5,5,123,128],[1115,1,1,128,129]]],[52,4,4,129,133,[[1116,3,3,129,132],[1118,1,1,132,133]]],[53,19,18,133,151,[[1119,6,5,133,138],[1120,2,2,138,140],[1121,2,2,140,142],[1122,3,3,142,145],[1123,2,2,145,147],[1124,4,4,147,151]]],[54,8,8,151,159,[[1125,2,2,151,153],[1126,2,2,153,155],[1127,3,3,155,158],[1128,1,1,158,159]]],[55,5,5,159,164,[[1129,3,3,159,162],[1130,1,1,162,163],[1131,1,1,163,164]]],[56,2,2,164,166,[[1132,2,2,164,166]]],[57,31,30,166,196,[[1136,1,1,166,167],[1138,2,2,167,169],[1142,2,2,169,171],[1143,24,23,171,194],[1144,1,1,194,195],[1145,1,1,195,196]]],[58,16,12,196,208,[[1146,2,2,196,198],[1147,13,9,198,207],[1150,1,1,207,208]]],[59,5,5,208,213,[[1151,4,4,208,212],[1155,1,1,212,213]]],[60,2,2,213,215,[[1156,2,2,213,215]]],[61,1,1,215,216,[[1163,1,1,215,216]]],[64,2,2,216,218,[[1166,2,2,216,218]]],[65,4,4,218,222,[[1168,2,2,218,220],[1179,1,1,220,221],[1180,1,1,221,222]]]],[23355,23381,23401,23408,23661,23720,23847,23941,24265,24363,24398,24640,24662,25127,25204,25245,25270,25293,25656,25657,25670,25696,25730,25896,27012,27106,27108,27109,27331,27370,27423,27436,27441,27451,27488,27647,27793,27841,27935,27938,27942,27947,28013,28016,28018,28019,28021,28022,28027,28031,28033,28034,28035,28036,28038,28041,28042,28048,28049,28185,28187,28194,28196,28205,28229,28248,28251,28281,28302,28303,28362,28399,28643,28667,28678,28732,28735,28789,28824,28872,28884,28939,28986,29048,29080,29097,29101,29104,29107,29109,29110,29111,29113,29114,29116,29124,29125,29126,29127,29128,29167,29168,29184,29198,29221,29237,29263,29268,29277,29285,29353,29360,29386,29388,29408,29430,29469,29488,29499,29501,29506,29563,29568,29592,29595,29596,29597,29600,29629,29652,29653,29660,29680,29698,29700,29701,29710,29715,29723,29731,29740,29744,29748,29753,29759,29771,29775,29798,29799,29800,29809,29814,29822,29845,29849,29861,29863,29868,29877,29893,29896,29905,29910,29938,29943,29944,30016,30045,30056,30155,30171,30173,30175,30176,30177,30178,30179,30180,30181,30183,30185,30189,30192,30193,30194,30195,30196,30199,30200,30201,30202,30203,30205,30211,30214,30248,30269,30272,30294,30298,30307,30310,30311,30313,30315,30317,30319,30369,30379,30381,30383,30395,30474,30480,30484,30628,30675,30692,30730,30736,30918,30938]]],["fidelity",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29918]]]]},{"k":"G4103","v":[["*",[67,62,[[39,5,3,0,3,[[952,1,1,0,1],[953,4,2,1,3]]],[41,6,5,3,8,[[984,1,1,3,4],[988,4,3,4,7],[991,1,1,7,8]]],[42,1,1,8,9,[[1016,1,1,8,9]]],[43,4,4,9,13,[[1027,1,1,9,10],[1030,1,1,10,11],[1033,2,2,11,13]]],[45,5,5,13,18,[[1062,1,1,13,14],[1065,2,2,14,16],[1068,1,1,16,17],[1071,1,1,17,18]]],[46,2,2,18,20,[[1078,1,1,18,19],[1083,1,1,19,20]]],[47,1,1,20,21,[[1093,1,1,20,21]]],[48,2,2,21,23,[[1097,1,1,21,22],[1102,1,1,22,23]]],[50,4,4,23,27,[[1107,2,2,23,25],[1110,2,2,25,27]]],[51,1,1,27,28,[[1115,1,1,27,28]]],[52,1,1,28,29,[[1118,1,1,28,29]]],[53,12,10,29,39,[[1119,2,2,29,31],[1121,2,2,31,33],[1122,4,4,33,37],[1123,2,1,37,38],[1124,2,1,38,39]]],[54,3,3,39,42,[[1126,3,3,39,42]]],[55,3,3,42,45,[[1129,2,2,42,44],[1131,1,1,44,45]]],[57,5,5,45,50,[[1134,1,1,45,46],[1135,2,2,46,48],[1142,1,1,48,49],[1143,1,1,49,50]]],[59,2,2,50,52,[[1154,1,1,50,51],[1155,1,1,51,52]]],[61,1,1,52,53,[[1159,1,1,52,53]]],[63,1,1,53,54,[[1165,1,1,53,54]]],[65,8,8,54,62,[[1167,1,1,54,55],[1168,2,2,55,57],[1169,1,1,57,58],[1183,1,1,58,59],[1185,1,1,59,60],[1187,1,1,60,61],[1188,1,1,61,62]]]],[24002,24029,24031,25501,25630,25631,25632,25748,26894,27304,27396,27484,27498,28372,28435,28450,28512,28580,28818,28913,29111,29207,29358,29467,29472,29549,29551,29645,29681,29708,29711,29732,29742,29750,29756,29757,29759,29779,29790,29829,29838,29840,29898,29901,29931,29994,29997,30000,30156,30183,30465,30477,30549,30663,30702,30727,30730,30760,30989,31028,31058,31086]]],["+",[2,2,[[43,1,1,0,1,[[1027,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]]],[27304,28818]]],["Faithful",[2,2,[[51,1,1,0,1,[[1115,1,1,0,1]]],[65,1,1,1,2,[[1185,1,1,1,2]]]],[29645,31028]]],["believe",[2,2,[[53,2,2,0,2,[[1122,2,2,0,2]]]],[29750,29757]]],["believed",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27484]]],["believers",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29759]]],["believeth",[2,2,[[46,1,1,0,1,[[1083,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[28913,29779]]],["believing",[2,2,[[42,1,1,0,1,[[1016,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[26894,29790]]],["faithful",[51,48,[[39,5,3,0,3,[[952,1,1,0,1],[953,4,2,1,3]]],[41,6,5,3,8,[[984,1,1,3,4],[988,4,3,4,7],[991,1,1,7,8]]],[43,1,1,8,9,[[1033,1,1,8,9]]],[45,5,5,9,14,[[1062,1,1,9,10],[1065,2,2,10,12],[1068,1,1,12,13],[1071,1,1,13,14]]],[47,1,1,14,15,[[1093,1,1,14,15]]],[48,2,2,15,17,[[1097,1,1,15,16],[1102,1,1,16,17]]],[50,4,4,17,21,[[1107,2,2,17,19],[1110,2,2,19,21]]],[52,1,1,21,22,[[1118,1,1,21,22]]],[53,5,5,22,27,[[1119,2,2,22,24],[1121,1,1,24,25],[1122,1,1,25,26],[1124,1,1,26,27]]],[54,3,3,27,30,[[1126,3,3,27,30]]],[55,3,3,30,33,[[1129,2,2,30,32],[1131,1,1,32,33]]],[57,5,5,33,38,[[1134,1,1,33,34],[1135,2,2,34,36],[1142,1,1,36,37],[1143,1,1,37,38]]],[59,2,2,38,40,[[1154,1,1,38,39],[1155,1,1,39,40]]],[61,1,1,40,41,[[1159,1,1,40,41]]],[65,7,7,41,48,[[1167,1,1,41,42],[1168,2,2,42,44],[1169,1,1,44,45],[1183,1,1,45,46],[1187,1,1,46,47],[1188,1,1,47,48]]]],[24002,24029,24031,25501,25630,25631,25632,25748,27498,28372,28435,28450,28512,28580,29111,29207,29358,29467,29472,29549,29551,29681,29708,29711,29742,29756,29790,29829,29838,29840,29898,29901,29931,29994,29997,30000,30156,30183,30465,30477,30549,30702,30727,30730,30760,30989,31058,31086]]],["faithfully",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30663]]],["man",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29779]]],["sure",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27396]]],["true",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29732]]]]},{"k":"G4104","v":[["of",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29867]]]]},{"k":"G4105","v":[["*",[39,37,[[39,8,7,0,7,[[946,3,2,0,2],[950,1,1,2,3],[952,4,4,3,7]]],[40,4,4,7,11,[[968,2,2,7,9],[969,2,2,9,11]]],[41,1,1,11,12,[[993,1,1,11,12]]],[42,2,2,12,14,[[1003,2,2,12,14]]],[45,2,2,14,16,[[1067,1,1,14,15],[1076,1,1,15,16]]],[47,1,1,16,17,[[1096,1,1,16,17]]],[54,2,1,17,18,[[1127,2,1,17,18]]],[55,1,1,18,19,[[1131,1,1,18,19]]],[57,3,3,19,22,[[1135,1,1,19,20],[1137,1,1,20,21],[1143,1,1,21,22]]],[58,2,2,22,24,[[1146,1,1,22,23],[1150,1,1,23,24]]],[59,1,1,24,25,[[1152,1,1,24,25]]],[60,1,1,25,26,[[1157,1,1,25,26]]],[61,3,3,26,29,[[1159,1,1,26,27],[1160,1,1,27,28],[1161,1,1,28,29]]],[65,8,8,29,37,[[1168,1,1,29,30],[1178,1,1,30,31],[1179,1,1,31,32],[1184,1,1,32,33],[1185,1,1,33,34],[1186,3,3,34,37]]]],[23739,23740,23901,23961,23962,23968,23981,24697,24700,24722,24723,25834,26340,26375,28476,28751,29195,29866,29926,30005,30032,30210,30282,30373,30424,30515,30548,30576,30586,30737,30900,30922,31016,31037,31041,31046,31048]]],["+",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23740]]],["astray",[4,3,[[39,2,1,0,1,[[946,2,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[23739,30424,30515]]],["deceive",[10,10,[[39,4,4,0,4,[[952,4,4,0,4]]],[40,2,2,4,6,[[969,2,2,4,6]]],[61,2,2,6,8,[[1159,1,1,6,7],[1161,1,1,7,8]]],[65,2,2,8,10,[[1186,2,2,8,10]]]],[23961,23962,23968,23981,24722,24723,30548,30586,31041,31046]]],["deceived",[10,10,[[41,1,1,0,1,[[993,1,1,0,1]]],[42,1,1,1,2,[[1003,1,1,1,2]]],[45,2,2,2,4,[[1067,1,1,2,3],[1076,1,1,3,4]]],[47,1,1,4,5,[[1096,1,1,4,5]]],[54,1,1,5,6,[[1127,1,1,5,6]]],[55,1,1,6,7,[[1131,1,1,6,7]]],[65,3,3,7,10,[[1184,1,1,7,8],[1185,1,1,8,9],[1186,1,1,9,10]]]],[25834,26375,28476,28751,29195,29866,29926,31016,31037,31048]]],["deceiveth",[3,3,[[42,1,1,0,1,[[1003,1,1,0,1]]],[65,2,2,1,3,[[1178,1,1,1,2],[1179,1,1,2,3]]]],[26340,30900,30922]]],["deceiving",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29866]]],["err",[6,6,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,2,2,1,3,[[968,2,2,1,3]]],[57,1,1,3,4,[[1135,1,1,3,4]]],[58,2,2,4,6,[[1146,1,1,4,5],[1150,1,1,5,6]]]],[23901,24697,24700,30005,30282,30373]]],["seduce",[2,2,[[61,1,1,0,1,[[1160,1,1,0,1]]],[65,1,1,1,2,[[1168,1,1,1,2]]]],[30576,30737]]],["wandered",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30210]]],["way",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30032]]]]},{"k":"G4106","v":[["*",[10,10,[[39,1,1,0,1,[[955,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]],[52,1,1,4,5,[[1117,1,1,4,5]]],[58,1,1,5,6,[[1150,1,1,5,6]]],[60,2,2,6,8,[[1157,1,1,6,7],[1158,1,1,7,8]]],[61,1,1,8,9,[[1162,1,1,8,9]]],[64,1,1,9,10,[[1166,1,1,9,10]]]],[24193,27957,29286,29573,29672,30374,30518,30539,30609,30683]]],["+",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]]],[29286,29672]]],["deceit",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29573]]],["error",[7,7,[[39,1,1,0,1,[[955,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[58,1,1,2,3,[[1150,1,1,2,3]]],[60,2,2,3,5,[[1157,1,1,3,4],[1158,1,1,4,5]]],[61,1,1,5,6,[[1162,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[24193,27957,30374,30518,30539,30609,30683]]]]},{"k":"G4107","v":[["wandering",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30685]]]]},{"k":"G4108","v":[["*",[5,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]],[62,2,1,3,4,[[1164,2,1,3,4]]]],[24192,28906,29748,30652]]],["deceiver",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[62,1,1,1,2,[[1164,1,1,1,2]]]],[24192,30652]]],["deceivers",[2,2,[[46,1,1,0,1,[[1083,1,1,0,1]]],[62,1,1,1,2,[[1164,1,1,1,2]]]],[28906,30652]]],["seducing",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29748]]]]},{"k":"G4109","v":[["tables",[3,2,[[46,2,1,0,1,[[1080,2,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[28844,30109]]]]},{"k":"G4110","v":[["formed",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28175]]]]},{"k":"G4111","v":[["formed",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[53,1,1,1,2,[[1120,1,1,1,2]]]],[28175,29729]]]]},{"k":"G4112","v":[["feigned",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30503]]]]},{"k":"G4113","v":[["*",[9,9,[[39,2,2,0,2,[[934,1,1,0,1],[940,1,1,1,2]]],[41,3,3,2,5,[[982,1,1,2,3],[985,1,1,3,4],[986,1,1,4,5]]],[43,1,1,5,6,[[1022,1,1,5,6]]],[65,3,3,6,9,[[1177,1,1,6,7],[1187,1,1,7,8],[1188,1,1,8,9]]]],[23287,23508,25373,25544,25574,27074,30880,31074,31082]]],["street",[3,3,[[65,3,3,0,3,[[1177,1,1,0,1],[1187,1,1,1,2],[1188,1,1,2,3]]]],[30880,31074,31082]]],["streets",[6,6,[[39,2,2,0,2,[[934,1,1,0,1],[940,1,1,1,2]]],[41,3,3,2,5,[[982,1,1,2,3],[985,1,1,3,4],[986,1,1,4,5]]],[43,1,1,5,6,[[1022,1,1,5,6]]]],[23287,23508,25373,25544,25574,27074]]]]},{"k":"G4114","v":[["breadth",[4,3,[[48,1,1,0,1,[[1099,1,1,0,1]]],[65,3,2,1,3,[[1186,1,1,1,2],[1187,2,1,2,3]]]],[29269,31047,31069]]]]},{"k":"G4115","v":[["*",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[46,2,2,1,3,[[1083,2,2,1,3]]]],[23923,28909,28911]]],["broad",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23923]]],["enlarged",[2,2,[[46,2,2,0,2,[[1083,2,2,0,2]]]],[28909,28911]]]]},{"k":"G4116","v":[["wide",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23329]]]]},{"k":"G4117","v":[["hair",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29725]]]]},{"k":"G4118","v":[["*",[3,3,[[39,2,2,0,2,[[939,1,1,0,1],[949,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]]],[23479,23834,28705]]],["great",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23834]]],["most",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[23479,28705]]]]},{"k":"G4119","v":[["*",[56,55,[[39,7,7,0,7,[[933,1,1,0,1],[934,1,1,1,2],[940,2,2,2,4],[948,1,1,4,5],[949,1,1,5,6],[954,1,1,6,7]]],[40,2,2,7,9,[[968,2,2,7,9]]],[41,9,9,9,18,[[975,1,1,9,10],[979,2,2,10,12],[981,1,1,12,13],[983,3,3,13,16],[984,1,1,16,17],[993,1,1,17,18]]],[42,5,5,18,23,[[1000,2,2,18,20],[1003,1,1,20,21],[1011,1,1,21,22],[1017,1,1,22,23]]],[43,19,19,23,42,[[1019,1,1,23,24],[1021,2,2,24,26],[1030,1,1,26,27],[1032,1,1,27,28],[1035,1,1,28,29],[1036,1,1,29,30],[1037,1,1,30,31],[1038,1,1,31,32],[1040,2,2,32,34],[1041,3,3,34,37],[1042,2,2,37,39],[1044,2,2,39,41],[1045,1,1,41,42]]],[45,3,3,42,45,[[1070,1,1,42,43],[1071,1,1,43,44],[1076,1,1,44,45]]],[46,3,3,45,48,[[1079,1,1,45,46],[1081,1,1,46,47],[1086,1,1,47,48]]],[49,1,1,48,49,[[1103,1,1,48,49]]],[54,2,2,49,51,[[1126,1,1,49,50],[1127,1,1,50,51]]],[57,4,3,51,54,[[1135,2,1,51,52],[1139,1,1,52,53],[1143,1,1,53,54]]],[65,1,1,54,55,[[1168,1,1,54,55]]]],[23254,23307,23530,23531,23802,23862,24107,24706,24716,25038,25237,25238,25314,25436,25437,25458,25482,25829,26157,26197,26359,26701,26913,26989,27039,27044,27393,27470,27577,27617,27635,27674,27747,27755,27773,27780,27786,27802,27810,27867,27875,27922,28559,28572,28724,28830,28874,28958,29375,29843,29862,29998,30087,30176,30736]]],["+",[6,6,[[39,1,1,0,1,[[933,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[43,3,3,2,5,[[1021,1,1,2,3],[1041,2,2,3,5]]],[54,1,1,5,6,[[1127,1,1,5,6]]]],[23254,24716,27039,27773,27780,29862]]],["above",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27044]]],["excellent",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30176]]],["greater",[5,5,[[39,2,2,0,2,[[940,2,2,0,2]]],[41,2,2,2,4,[[983,2,2,2,4]]],[43,1,1,4,5,[[1032,1,1,4,5]]]],[23530,23531,25436,25437,27470]]],["long",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27635]]],["longer",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27577]]],["many",[13,13,[[43,7,7,0,7,[[1019,1,1,0,1],[1030,1,1,1,2],[1038,1,1,2,3],[1041,1,1,3,4],[1042,1,1,4,5],[1044,1,1,5,6],[1045,1,1,6,7]]],[45,1,1,7,8,[[1071,1,1,7,8]]],[46,3,3,8,11,[[1079,1,1,8,9],[1081,1,1,9,10],[1086,1,1,10,11]]],[49,1,1,11,12,[[1103,1,1,11,12]]],[57,1,1,12,13,[[1139,1,1,12,13]]]],[26989,27393,27674,27786,27810,27875,27922,28572,28830,28874,28958,29375,30087]]],["more",[22,21,[[39,4,4,0,4,[[934,1,1,0,1],[948,1,1,1,2],[949,1,1,2,3],[954,1,1,3,4]]],[40,1,1,4,5,[[968,1,1,4,5]]],[41,4,4,5,9,[[975,1,1,5,6],[981,1,1,6,7],[984,1,1,7,8],[993,1,1,8,9]]],[42,5,5,9,14,[[1000,2,2,9,11],[1003,1,1,11,12],[1011,1,1,12,13],[1017,1,1,13,14]]],[43,3,3,14,17,[[1040,2,2,14,16],[1042,1,1,16,17]]],[45,1,1,17,18,[[1070,1,1,17,18]]],[54,1,1,18,19,[[1126,1,1,18,19]]],[57,2,1,19,20,[[1135,2,1,19,20]]],[65,1,1,20,21,[[1168,1,1,20,21]]]],[23307,23802,23862,24107,24706,25038,25314,25482,25829,26157,26197,26359,26701,26913,27747,27755,27802,28559,29843,29998,30736]]],["most",[2,2,[[41,2,2,0,2,[[979,2,2,0,2]]]],[25237,25238]]],["part",[3,3,[[43,2,2,0,2,[[1036,1,1,0,1],[1044,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]]],[27617,27867,28724]]],["things",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25458]]]]},{"k":"G4120","v":[["platted",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]]],[24158,24843,26827]]]]},{"k":"G4121","v":[["*",[9,8,[[44,3,2,0,2,[[1050,2,1,0,1],[1051,1,1,1,2]]],[46,2,2,2,4,[[1081,1,1,2,3],[1085,1,1,3,4]]],[49,1,1,4,5,[[1106,1,1,4,5]]],[51,1,1,5,6,[[1113,1,1,5,6]]],[52,1,1,6,7,[[1116,1,1,6,7]]],[60,1,1,7,8,[[1156,1,1,7,8]]]],[28067,28069,28874,28947,29459,29602,29652,30487]]],["+",[2,2,[[46,1,1,0,1,[[1085,1,1,0,1]]],[51,1,1,1,2,[[1113,1,1,1,2]]]],[28947,29602]]],["abound",[4,4,[[44,2,2,0,2,[[1050,1,1,0,1],[1051,1,1,1,2]]],[49,1,1,2,3,[[1106,1,1,2,3]]],[60,1,1,3,4,[[1156,1,1,3,4]]]],[28067,28069,29459,30487]]],["abounded",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28067]]],["aboundeth",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29652]]],["abundant",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28874]]]]},{"k":"G4122","v":[["*",[5,5,[[46,4,4,0,4,[[1079,1,1,0,1],[1084,1,1,1,2],[1089,2,2,2,4]]],[51,1,1,4,5,[[1114,1,1,4,5]]]],[28835,28918,29039,29040,29609]]],["advantage",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28835]]],["defraud",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29609]]],["defrauded",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28918]]],["gain",[2,2,[[46,2,2,0,2,[[1089,2,2,0,2]]]],[29039,29040]]]]},{"k":"G4123","v":[["*",[4,4,[[45,3,3,0,3,[[1066,2,2,0,2],[1067,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]]],[28464,28465,28477,29309]]],["covetous",[3,3,[[45,3,3,0,3,[[1066,2,2,0,2],[1067,1,1,2,3]]]],[28464,28465,28477]]],["man",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29309]]]]},{"k":"G4124","v":[["*",[10,10,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[46,1,1,3,4,[[1086,1,1,3,4]]],[48,2,2,4,6,[[1100,1,1,4,5],[1101,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[51,1,1,7,8,[[1112,1,1,7,8]]],[60,2,2,8,10,[[1157,2,2,8,10]]]],[24485,25474,27959,28961,29291,29307,29522,29575,30503,30514]]],["covetousness",[8,8,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[46,1,1,3,4,[[1086,1,1,3,4]]],[48,1,1,4,5,[[1101,1,1,4,5]]],[50,1,1,5,6,[[1109,1,1,5,6]]],[51,1,1,6,7,[[1112,1,1,6,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]]],[24485,25474,27959,28961,29307,29522,29575,30503]]],["greediness",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29291]]],["practices",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30514]]]]},{"k":"G4125","v":[["side",[5,5,[[42,4,4,0,4,[[1015,1,1,0,1],[1016,3,3,1,4]]],[43,1,1,4,5,[[1029,1,1,4,5]]]],[26859,26887,26892,26894,27344]]]]},{"k":"G4126","v":[["*",[5,5,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,4,4,1,5,[[1038,1,1,1,2],[1044,3,3,2,5]]]],[25268,27667,27857,27861,27879]]],["sail",[2,2,[[43,2,2,0,2,[[1044,2,2,0,2]]]],[27857,27879]]],["sailed",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[25268,27667]]],["sailing",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27861]]]]},{"k":"G4127","v":[["*",[21,20,[[41,2,2,0,2,[[982,1,1,0,1],[984,1,1,1,2]]],[43,2,2,2,4,[[1033,2,2,2,4]]],[46,2,2,4,6,[[1083,1,1,4,5],[1088,1,1,5,6]]],[65,15,14,6,20,[[1175,1,1,6,7],[1177,1,1,7,8],[1179,3,3,8,11],[1181,3,3,11,14],[1182,3,2,14,16],[1184,2,2,16,18],[1187,1,1,18,19],[1188,1,1,19,20]]]],[25393,25507,27506,27516,28903,29012,30860,30878,30911,30920,30922,30947,30952,30954,30963,30975,30997,31001,31062,31098]]],["+",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[65,1,1,1,2,[[1179,1,1,1,2]]]],[25393,30920]]],["plague",[2,1,[[65,2,1,0,1,[[1182,2,1,0,1]]]],[30975]]],["plagues",[10,10,[[65,10,10,0,10,[[1175,1,1,0,1],[1177,1,1,1,2],[1181,3,3,2,5],[1182,1,1,5,6],[1184,2,2,6,8],[1187,1,1,8,9],[1188,1,1,9,10]]]],[30860,30878,30947,30952,30954,30963,30997,31001,31062,31098]]],["stripes",[5,5,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,2,2,1,3,[[1033,2,2,1,3]]],[46,2,2,3,5,[[1083,1,1,3,4],[1088,1,1,4,5]]]],[25507,27506,27516,28903,29012]]],["wound",[2,2,[[65,2,2,0,2,[[1179,2,2,0,2]]]],[30911,30922]]]]},{"k":"G4128","v":[["*",[32,32,[[40,2,2,0,2,[[959,2,2,0,2]]],[41,8,8,2,10,[[973,1,1,2,3],[974,1,1,3,4],[977,1,1,4,5],[978,1,1,5,6],[980,1,1,6,7],[991,1,1,7,8],[995,2,2,8,10]]],[42,2,2,10,12,[[1001,1,1,10,11],[1017,1,1,11,12]]],[43,17,17,12,29,[[1019,1,1,12,13],[1021,1,1,13,14],[1022,2,2,14,16],[1023,2,2,16,18],[1031,2,2,18,20],[1032,2,2,20,22],[1034,1,1,22,23],[1036,1,1,23,24],[1038,2,2,24,26],[1040,1,1,26,27],[1042,1,1,27,28],[1045,1,1,28,29]]],[57,1,1,29,30,[[1143,1,1,29,30]]],[58,1,1,30,31,[[1150,1,1,30,31]]],[59,1,1,31,32,[[1154,1,1,31,32]]]],[24295,24296,24903,24986,25113,25163,25282,25768,25936,25962,26213,26904,26955,27054,27073,27075,27103,27106,27415,27418,27454,27472,27527,27594,27686,27700,27741,27820,27902,30184,30374,30454]]],["+",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27472]]],["bundle",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27902]]],["company",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25962]]],["multitude",[28,28,[[40,2,2,0,2,[[959,2,2,0,2]]],[41,7,7,2,9,[[973,1,1,2,3],[974,1,1,3,4],[977,1,1,4,5],[978,1,1,5,6],[980,1,1,6,7],[991,1,1,7,8],[995,1,1,8,9]]],[42,2,2,9,11,[[1001,1,1,9,10],[1017,1,1,10,11]]],[43,14,14,11,25,[[1019,1,1,11,12],[1021,1,1,12,13],[1022,1,1,13,14],[1023,2,2,14,16],[1031,2,2,16,18],[1032,1,1,18,19],[1034,1,1,19,20],[1036,1,1,20,21],[1038,2,2,21,23],[1040,1,1,23,24],[1042,1,1,24,25]]],[57,1,1,25,26,[[1143,1,1,25,26]]],[58,1,1,26,27,[[1150,1,1,26,27]]],[59,1,1,27,28,[[1154,1,1,27,28]]]],[24295,24296,24903,24986,25113,25163,25282,25768,25936,26213,26904,26955,27054,27075,27103,27106,27415,27418,27454,27527,27594,27686,27700,27741,27820,30184,30374,30454]]],["multitudes",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27073]]]]},{"k":"G4129","v":[["*",[12,11,[[39,1,1,0,1,[[952,1,1,0,1]]],[43,5,5,1,6,[[1023,2,2,1,3],[1024,1,1,3,4],[1026,1,1,4,5],[1029,1,1,5,6]]],[46,1,1,6,7,[[1086,1,1,6,7]]],[57,2,1,7,8,[[1138,2,1,7,8]]],[59,1,1,8,9,[[1151,1,1,8,9]]],[60,1,1,9,10,[[1156,1,1,9,10]]],[64,1,1,10,11,[[1166,1,1,10,11]]]],[23969,27102,27108,27133,27247,27361,28966,30058,30376,30481,30674]]],["abound",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23969]]],["multiplied",[8,8,[[43,5,5,0,5,[[1023,2,2,0,2],[1024,1,1,2,3],[1026,1,1,3,4],[1029,1,1,4,5]]],[59,1,1,5,6,[[1151,1,1,5,6]]],[60,1,1,6,7,[[1156,1,1,6,7]]],[64,1,1,7,8,[[1166,1,1,7,8]]]],[27102,27108,27133,27247,27361,30376,30481,30674]]],["multiply",[2,2,[[46,1,1,0,1,[[1086,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[28966,30058]]],["multiplying",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30058]]]]},{"k":"G4130","v":[["*",[24,24,[[39,2,2,0,2,[[950,1,1,0,1],[955,1,1,1,2]]],[41,12,12,2,14,[[973,5,5,2,7],[974,3,3,7,10],[976,1,1,10,11],[977,2,2,11,13],[978,1,1,13,14]]],[42,1,1,14,15,[[1015,1,1,14,15]]],[43,9,9,15,24,[[1019,1,1,15,16],[1020,1,1,16,17],[1021,2,2,17,19],[1022,1,1,19,20],[1026,1,1,20,21],[1030,2,2,21,23],[1036,1,1,23,24]]]],[23882,24177,24908,24916,24934,24950,24960,24979,24994,24995,25091,25114,25133,25157,26854,26953,27006,27030,27053,27076,27233,27371,27407,27614]]],["accomplished",[4,4,[[41,4,4,0,4,[[973,1,1,0,1],[974,3,3,1,4]]]],[24916,24979,24994,24995]]],["came",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24950]]],["filled",[18,18,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,7,7,1,8,[[973,3,3,1,4],[976,1,1,4,5],[977,2,2,5,7],[978,1,1,7,8]]],[42,1,1,8,9,[[1015,1,1,8,9]]],[43,9,9,9,18,[[1019,1,1,9,10],[1020,1,1,10,11],[1021,2,2,11,13],[1022,1,1,13,14],[1026,1,1,14,15],[1030,2,2,15,17],[1036,1,1,17,18]]]],[24177,24908,24934,24960,25091,25114,25133,25157,26854,26953,27006,27030,27053,27076,27233,27371,27407,27614]]],["furnished",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23882]]]]},{"k":"G4131","v":[["striker",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[29734,29899]]]]},{"k":"G4132","v":[["flood",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25194]]]]},{"k":"G4133","v":[["*",[31,31,[[39,5,5,0,5,[[939,2,2,0,2],[946,1,1,2,3],[954,2,2,3,5]]],[40,1,1,5,6,[[968,1,1,5,6]]],[41,14,14,6,20,[[978,2,2,6,8],[982,3,3,8,11],[983,1,1,11,12],[984,1,1,12,13],[985,1,1,13,14],[990,1,1,14,15],[991,1,1,15,16],[994,3,3,16,19],[995,1,1,19,20]]],[42,1,1,20,21,[[1004,1,1,20,21]]],[43,4,4,21,25,[[1025,1,1,21,22],[1032,1,1,22,23],[1037,1,1,23,24],[1044,1,1,24,25]]],[45,1,1,25,26,[[1072,1,1,25,26]]],[48,1,1,26,27,[[1101,1,1,26,27]]],[49,3,3,27,30,[[1103,1,1,27,28],[1105,1,1,28,29],[1106,1,1,29,30]]],[65,1,1,30,31,[[1168,1,1,30,31]]]],[23481,23483,23734,24093,24118,24705,25170,25181,25374,25377,25383,25446,25490,25551,25696,25758,25885,25886,25906,25963,26391,27177,27470,27649,27877,28611,29337,29379,29437,29456,30742]]],["But",[10,10,[[39,2,2,0,2,[[939,2,2,0,2]]],[41,7,7,2,9,[[978,2,2,2,4],[982,1,1,4,5],[983,1,1,5,6],[984,1,1,6,7],[991,1,1,7,8],[994,1,1,8,9]]],[65,1,1,9,10,[[1168,1,1,9,10]]]],[23481,23483,25170,25181,25377,25446,25490,25758,25885,30742]]],["Nevertheless",[5,5,[[41,2,2,0,2,[[985,1,1,0,1],[990,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]]],[25551,25696,28611,29337,29437]]],["Notwithstanding",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]]],[25383,29456]]],["Save",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27649]]],["but",[6,6,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,2,2,4,[[994,1,1,2,3],[995,1,1,3,4]]],[42,1,1,4,5,[[1004,1,1,4,5]]],[43,1,1,5,6,[[1044,1,1,5,6]]]],[23734,24705,25886,25963,26391,27877]]],["except",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27177]]],["nevertheless",[3,3,[[39,2,2,0,2,[[954,2,2,0,2]]],[41,1,1,2,3,[[994,1,1,2,3]]]],[24093,24118,25906]]],["notwithstanding",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[25374,29379]]],["than",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27470]]]]},{"k":"G4134","v":[["full",[17,17,[[39,2,2,0,2,[[942,1,1,0,1],[943,1,1,1,2]]],[40,3,3,2,5,[[960,1,1,2,3],[962,1,1,3,4],[964,1,1,4,5]]],[41,2,2,5,7,[[976,1,1,5,6],[977,1,1,6,7]]],[42,1,1,7,8,[[997,1,1,7,8]]],[43,8,8,8,16,[[1023,3,3,8,11],[1024,1,1,11,12],[1026,1,1,12,13],[1028,1,1,13,14],[1030,1,1,14,15],[1036,1,1,15,16]]],[62,1,1,16,17,[[1164,1,1,16,17]]]],[23617,23670,24351,24450,24519,25064,25119,26058,27104,27106,27109,27171,27252,27331,27372,27613,30653]]]]},{"k":"G4135","v":[["*",[5,5,[[41,1,1,0,1,[[973,1,1,0,1]]],[44,2,2,1,3,[[1049,1,1,1,2],[1059,1,1,2,3]]],[54,2,2,3,5,[[1128,2,2,3,5]]]],[24894,28043,28285,29875,29887]]],["believed",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24894]]],["known",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29887]]],["persuaded",[2,2,[[44,2,2,0,2,[[1049,1,1,0,1],[1059,1,1,1,2]]]],[28043,28285]]],["proof",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29875]]]]},{"k":"G4136","v":[["assurance",[4,4,[[50,1,1,0,1,[[1108,1,1,0,1]]],[51,1,1,1,2,[[1111,1,1,1,2]]],[57,2,2,2,4,[[1138,1,1,2,3],[1142,1,1,3,4]]]],[29496,29565,30055,30155]]]]},{"k":"G4137","v":[["*",[90,90,[[39,17,17,0,17,[[929,1,1,0,1],[930,3,3,1,4],[931,1,1,4,5],[932,1,1,5,6],[933,1,1,6,7],[936,1,1,7,8],[940,1,1,8,9],[941,2,2,9,11],[949,1,1,11,12],[951,1,1,12,13],[954,2,2,13,15],[955,2,2,15,17]]],[40,3,3,17,20,[[957,1,1,17,18],[970,1,1,18,19],[971,1,1,19,20]]],[41,10,10,20,30,[[973,1,1,20,21],[974,1,1,21,22],[975,1,1,22,23],[976,1,1,23,24],[979,1,1,24,25],[981,1,1,25,26],[993,2,2,26,28],[994,1,1,28,29],[996,1,1,29,30]]],[42,15,15,30,45,[[999,1,1,30,31],[1003,1,1,31,32],[1008,2,2,32,34],[1009,1,1,34,35],[1011,2,2,35,37],[1012,2,2,37,39],[1013,2,2,39,41],[1014,2,2,41,43],[1015,2,2,43,45]]],[43,16,16,45,61,[[1018,1,1,45,46],[1019,2,2,46,48],[1020,1,1,48,49],[1022,2,2,49,51],[1024,2,2,51,53],[1026,1,1,53,54],[1029,1,1,54,55],[1030,3,3,55,58],[1031,1,1,58,59],[1036,1,1,59,60],[1041,1,1,60,61]]],[44,6,6,61,67,[[1046,1,1,61,62],[1053,1,1,62,63],[1058,1,1,63,64],[1060,3,3,64,67]]],[46,2,2,67,69,[[1084,1,1,67,68],[1087,1,1,68,69]]],[47,1,1,69,70,[[1095,1,1,69,70]]],[48,4,4,70,74,[[1097,1,1,70,71],[1099,1,1,71,72],[1100,1,1,72,73],[1101,1,1,73,74]]],[49,4,4,74,78,[[1103,1,1,74,75],[1104,1,1,75,76],[1106,2,2,76,78]]],[50,5,5,78,83,[[1107,2,2,78,80],[1108,1,1,80,81],[1110,2,2,81,83]]],[52,1,1,83,84,[[1116,1,1,83,84]]],[54,1,1,84,85,[[1125,1,1,84,85]]],[58,1,1,85,86,[[1147,1,1,85,86]]],[61,1,1,86,87,[[1159,1,1,86,87]]],[62,1,1,87,88,[[1164,1,1,87,88]]],[65,2,2,88,90,[[1169,1,1,88,89],[1172,1,1,89,90]]]],[23166,23184,23186,23192,23207,23223,23251,23362,23506,23574,23587,23830,23950,24108,24110,24138,24164,24230,24803,24854,24913,25013,25030,25084,25196,25332,25848,25850,25880,26035,26149,26336,26583,26618,26648,26710,26724,26732,26750,26771,26772,26794,26817,26849,26861,26939,26951,26977,27014,27062,27087,27139,27146,27239,27362,27387,27389,27414,27440,27606,27796,27959,28120,28274,28316,28317,28322,28920,28977,29176,29229,29270,29282,29322,29372,29393,29460,29461,29474,29490,29504,29554,29559,29660,29813,30316,30544,30657,30748,30804]]],["+",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[43,2,2,1,3,[[1019,1,1,1,2],[1041,1,1,2,3]]]],[23950,26977,27796]]],["Fulfil",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29393]]],["accomplish",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25332]]],["come",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26336]]],["complete",[2,2,[[50,2,2,0,2,[[1108,1,1,0,1],[1110,1,1,1,2]]]],[29504,29554]]],["ended",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[25196,27606]]],["expired",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27146]]],["fill",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[28316,29282]]],["filled",[16,16,[[41,2,2,0,2,[[974,1,1,0,1],[975,1,1,1,2]]],[42,2,2,2,4,[[1008,1,1,2,3],[1012,1,1,3,4]]],[43,4,4,4,8,[[1019,1,1,4,5],[1022,2,2,5,7],[1030,1,1,7,8]]],[44,2,2,8,10,[[1046,1,1,8,9],[1060,1,1,9,10]]],[46,1,1,10,11,[[1084,1,1,10,11]]],[48,2,2,11,13,[[1099,1,1,11,12],[1101,1,1,12,13]]],[49,1,1,13,14,[[1103,1,1,13,14]]],[50,1,1,14,15,[[1107,1,1,14,15]]],[54,1,1,15,16,[[1125,1,1,15,16]]]],[25013,25030,26583,26732,26951,27062,27087,27414,27959,28317,28920,29270,29322,29372,29474,29813]]],["filleth",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29229]]],["fulfil",[5,5,[[39,2,2,0,2,[[931,1,1,0,1],[933,1,1,1,2]]],[50,2,2,2,4,[[1107,1,1,2,3],[1110,1,1,3,4]]],[52,1,1,4,5,[[1116,1,1,4,5]]]],[23207,23251,29490,29559,29660]]],["fulfilled",[45,45,[[39,13,13,0,13,[[929,1,1,0,1],[930,3,3,1,4],[932,1,1,4,5],[936,1,1,5,6],[940,1,1,6,7],[941,1,1,7,8],[949,1,1,8,9],[954,2,2,9,11],[955,2,2,11,13]]],[40,3,3,13,16,[[957,1,1,13,14],[970,1,1,14,15],[971,1,1,15,16]]],[41,6,6,16,22,[[973,1,1,16,17],[976,1,1,17,18],[993,2,2,18,20],[994,1,1,20,21],[996,1,1,21,22]]],[42,10,10,22,32,[[999,1,1,22,23],[1008,1,1,23,24],[1009,1,1,24,25],[1011,1,1,25,26],[1013,2,2,26,28],[1014,2,2,28,30],[1015,2,2,30,32]]],[43,7,7,32,39,[[1018,1,1,32,33],[1020,1,1,33,34],[1026,1,1,34,35],[1029,1,1,35,36],[1030,2,2,36,38],[1031,1,1,38,39]]],[44,2,2,39,41,[[1053,1,1,39,40],[1058,1,1,40,41]]],[46,1,1,41,42,[[1087,1,1,41,42]]],[47,1,1,42,43,[[1095,1,1,42,43]]],[58,1,1,43,44,[[1147,1,1,43,44]]],[65,1,1,44,45,[[1172,1,1,44,45]]]],[23166,23184,23186,23192,23223,23362,23506,23574,23830,24108,24110,24138,24164,24230,24803,24854,24913,25084,25848,25850,25880,26035,26149,26618,26648,26724,26771,26772,26794,26817,26849,26861,26939,27014,27239,27362,27387,27389,27440,28120,28274,28977,29176,30316,30804]]],["full",[7,7,[[39,1,1,0,1,[[941,1,1,0,1]]],[42,2,2,1,3,[[1011,1,1,1,2],[1012,1,1,2,3]]],[43,1,1,3,4,[[1024,1,1,3,4]]],[49,1,1,4,5,[[1106,1,1,4,5]]],[61,1,1,5,6,[[1159,1,1,5,6]]],[62,1,1,6,7,[[1164,1,1,6,7]]]],[23587,26710,26750,27139,29460,30544,30657]]],["perfect",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30748]]],["preached",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28322]]],["supply",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29461]]]]},{"k":"G4138","v":[["*",[17,17,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[964,1,1,2,3]]],[42,1,1,3,4,[[997,1,1,3,4]]],[44,4,4,4,8,[[1056,2,2,4,6],[1058,1,1,6,7],[1060,1,1,7,8]]],[45,2,2,8,10,[[1071,2,2,8,10]]],[47,1,1,10,11,[[1094,1,1,10,11]]],[48,4,4,11,15,[[1097,2,2,11,13],[1099,1,1,13,14],[1100,1,1,14,15]]],[50,2,2,15,17,[[1107,1,1,15,16],[1108,1,1,16,17]]]],[23395,24281,24520,26060,28221,28234,28276,28332,28593,28595,29135,29216,29229,29270,29285,29484,29503]]],["+",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]]],[23395,24281]]],["fulfilling",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28276]]],["full",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24520]]],["fulness",[13,13,[[42,1,1,0,1,[[997,1,1,0,1]]],[44,3,3,1,4,[[1056,2,2,1,3],[1060,1,1,3,4]]],[45,2,2,4,6,[[1071,2,2,4,6]]],[47,1,1,6,7,[[1094,1,1,6,7]]],[48,4,4,7,11,[[1097,2,2,7,9],[1099,1,1,9,10],[1100,1,1,10,11]]],[50,2,2,11,13,[[1107,1,1,11,12],[1108,1,1,12,13]]]],[26060,28221,28234,28332,28593,28595,29135,29216,29229,29270,29285,29484,29503]]]]},{"k":"G4139","v":[["*",[17,17,[[39,3,3,0,3,[[933,1,1,0,1],[947,1,1,1,2],[950,1,1,2,3]]],[40,2,2,3,5,[[968,2,2,3,5]]],[41,3,3,5,8,[[982,3,3,5,8]]],[42,1,1,8,9,[[1000,1,1,8,9]]],[43,1,1,9,10,[[1024,1,1,9,10]]],[44,3,3,10,13,[[1058,2,2,10,12],[1060,1,1,12,13]]],[47,1,1,13,14,[[1095,1,1,13,14]]],[48,1,1,14,15,[[1100,1,1,14,15]]],[57,1,1,15,16,[[1140,1,1,15,16]]],[58,1,1,16,17,[[1147,1,1,16,17]]]],[23277,23781,23911,24704,24706,25390,25392,25399,26161,27143,28275,28276,28305,29176,29297,30103,30301]]],["+",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27143]]],["near",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26161]]],["neighbour",[15,15,[[39,3,3,0,3,[[933,1,1,0,1],[947,1,1,1,2],[950,1,1,2,3]]],[40,2,2,3,5,[[968,2,2,3,5]]],[41,3,3,5,8,[[982,3,3,5,8]]],[44,3,3,8,11,[[1058,2,2,8,10],[1060,1,1,10,11]]],[47,1,1,11,12,[[1095,1,1,11,12]]],[48,1,1,12,13,[[1100,1,1,12,13]]],[57,1,1,13,14,[[1140,1,1,13,14]]],[58,1,1,14,15,[[1147,1,1,14,15]]]],[23277,23781,23911,24704,24706,25390,25392,25399,28275,28276,28305,29176,29297,30103,30301]]]]},{"k":"G4140","v":[["satisfying",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29517]]]]},{"k":"G4141","v":[["smitten",[1,1,[[65,1,1,0,1,[[1174,1,1,0,1]]]],[30839]]]]},{"k":"G4142","v":[["*",[6,5,[[40,2,2,0,2,[[959,1,1,0,1],[960,1,1,1,2]]],[42,4,3,2,5,[[1002,3,2,2,4],[1017,1,1,4,5]]]],[24297,24359,26279,26280,26906]]],["boat",[2,1,[[42,2,1,0,1,[[1002,2,1,0,1]]]],[26279]]],["boats",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26280]]],["ship",[2,2,[[40,1,1,0,1,[[959,1,1,0,1]]],[42,1,1,1,2,[[1017,1,1,1,2]]]],[24297,26906]]],["ships",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24359]]]]},{"k":"G4143","v":[["*",[67,64,[[39,13,13,0,13,[[932,2,2,0,2],[936,2,2,2,4],[937,1,1,4,5],[941,1,1,5,6],[942,6,6,6,12],[943,1,1,12,13]]],[40,16,16,13,29,[[957,2,2,13,15],[960,3,3,15,18],[961,3,3,18,21],[962,5,5,21,26],[964,3,3,26,29]]],[41,8,6,29,35,[[977,6,4,29,33],[980,2,2,33,35]]],[42,7,6,35,41,[[1002,5,4,35,39],[1017,2,2,39,41]]],[43,19,19,41,60,[[1037,2,2,41,43],[1038,3,3,43,46],[1044,13,13,46,59],[1045,1,1,59,60]]],[58,1,1,60,61,[[1148,1,1,60,61]]],[65,3,3,61,64,[[1174,1,1,61,62],[1184,2,2,62,64]]]],[23230,23231,23368,23369,23380,23541,23610,23619,23621,23626,23629,23630,23672,24234,24235,24324,24359,24360,24366,24382,24385,24439,24452,24454,24458,24461,24510,24513,24514,25109,25110,25114,25118,25267,25282,26274,26276,26278,26281,26901,26904,27639,27664,27666,27667,27670,27857,27861,27865,27870,27872,27874,27877,27885,27886,27892,27893,27894,27899,27910,30323,30836,31010,31012]]],["+",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[43,1,1,2,3,[[1038,1,1,2,3]]]],[23672,26281,27670]]],["ship",[56,55,[[39,12,12,0,12,[[932,2,2,0,2],[936,2,2,2,4],[937,1,1,4,5],[941,1,1,5,6],[942,6,6,6,12]]],[40,16,16,12,28,[[957,2,2,12,14],[960,3,3,14,17],[961,3,3,17,20],[962,5,5,20,25],[964,3,3,25,28]]],[41,4,4,28,32,[[977,2,2,28,30],[980,2,2,30,32]]],[42,6,5,32,37,[[1002,4,3,32,35],[1017,2,2,35,37]]],[43,18,18,37,55,[[1037,2,2,37,39],[1038,2,2,39,41],[1044,13,13,41,54],[1045,1,1,54,55]]]],[23230,23231,23368,23369,23380,23541,23610,23619,23621,23626,23629,23630,24234,24235,24324,24359,24360,24366,24382,24385,24439,24452,24454,24458,24461,24510,24513,24514,25110,25114,25267,25282,26274,26276,26278,26901,26904,27639,27664,27666,27667,27857,27861,27865,27870,27872,27874,27877,27885,27886,27892,27893,27894,27899,27910]]],["ships",[8,8,[[41,4,4,0,4,[[977,4,4,0,4]]],[58,1,1,4,5,[[1148,1,1,4,5]]],[65,3,3,5,8,[[1174,1,1,5,6],[1184,2,2,6,8]]]],[25109,25110,25114,25118,30323,30836,31010,31012]]]]},{"k":"G4144","v":[["*",[3,3,[[43,3,3,0,3,[[1038,1,1,0,1],[1044,2,2,1,3]]]],[27671,27864,27865]]],["course",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27671]]],["sailing",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27864]]],["voyage",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27865]]]]},{"k":"G4145","v":[["*",[28,28,[[39,3,3,0,3,[[947,2,2,0,2],[955,1,1,2,3]]],[40,2,2,3,5,[[966,1,1,3,4],[968,1,1,4,5]]],[41,11,11,5,16,[[978,1,1,5,6],[984,1,1,6,7],[986,1,1,7,8],[988,4,4,8,12],[990,2,2,12,14],[991,1,1,14,15],[993,1,1,15,16]]],[46,1,1,16,17,[[1085,1,1,16,17]]],[48,1,1,17,18,[[1098,1,1,17,18]]],[53,1,1,18,19,[[1124,1,1,18,19]]],[58,5,5,19,24,[[1146,2,2,19,21],[1147,2,2,21,23],[1150,1,1,23,24]]],[65,4,4,24,28,[[1168,1,1,24,25],[1169,1,1,25,26],[1172,1,1,26,27],[1179,1,1,27,28]]]],[23785,23786,24186,24613,24714,25170,25475,25565,25621,25639,25641,25642,25711,25713,25733,25827,28941,29233,29805,30276,30277,30298,30299,30355,30726,30763,30808,30924]]],["man",[6,6,[[39,2,2,0,2,[[947,2,2,0,2]]],[40,1,1,2,3,[[966,1,1,2,3]]],[41,2,2,3,5,[[988,1,1,3,4],[990,1,1,4,5]]],[58,1,1,5,6,[[1146,1,1,5,6]]]],[23785,23786,24613,25642,25713,30277]]],["man's",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25641]]],["men",[4,4,[[41,1,1,0,1,[[993,1,1,0,1]]],[58,2,2,1,3,[[1147,1,1,1,2],[1150,1,1,2,3]]],[65,1,1,3,4,[[1172,1,1,3,4]]]],[25827,30299,30355,30808]]],["rich",[17,17,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,7,7,2,9,[[978,1,1,2,3],[984,1,1,3,4],[986,1,1,4,5],[988,2,2,5,7],[990,1,1,7,8],[991,1,1,8,9]]],[46,1,1,9,10,[[1085,1,1,9,10]]],[48,1,1,10,11,[[1098,1,1,10,11]]],[53,1,1,11,12,[[1124,1,1,11,12]]],[58,2,2,12,14,[[1146,1,1,12,13],[1147,1,1,13,14]]],[65,3,3,14,17,[[1168,1,1,14,15],[1169,1,1,15,16],[1179,1,1,16,17]]]],[24186,24714,25170,25475,25565,25621,25639,25711,25733,28941,29233,29805,30276,30298,30726,30763,30924]]]]},{"k":"G4146","v":[["*",[4,4,[[50,1,1,0,1,[[1109,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]],[55,1,1,2,3,[[1131,1,1,2,3]]],[60,1,1,3,4,[[1156,1,1,3,4]]]],[29533,29805,29929,30490]]],["abundantly",[2,2,[[55,1,1,0,1,[[1131,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[29929,30490]]],["richly",[2,2,[[50,1,1,0,1,[[1109,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[29533,29805]]]]},{"k":"G4147","v":[["*",[12,12,[[41,2,2,0,2,[[973,1,1,0,1],[984,1,1,1,2]]],[44,1,1,2,3,[[1055,1,1,2,3]]],[45,1,1,3,4,[[1065,1,1,3,4]]],[46,1,1,4,5,[[1085,1,1,4,5]]],[53,2,2,5,7,[[1124,2,2,5,7]]],[65,5,5,7,12,[[1169,2,2,7,9],[1184,3,3,9,12]]]],[24946,25480,28200,28441,28941,29797,29806,30763,30764,30996,31008,31012]]],["+",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25480]]],["goods",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30763]]],["rich",[10,10,[[41,1,1,0,1,[[973,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]],[53,2,2,4,6,[[1124,2,2,4,6]]],[65,4,4,6,10,[[1169,1,1,6,7],[1184,3,3,7,10]]]],[24946,28200,28441,28941,29797,29806,30764,30996,31008,31012]]]]},{"k":"G4148","v":[["*",[3,3,[[45,1,1,0,1,[[1062,1,1,0,1]]],[46,2,2,1,3,[[1083,1,1,1,2],[1086,1,1,2,3]]]],[28368,28908,28967]]],["+",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28908]]],["enriched",[2,2,[[45,1,1,0,1,[[1062,1,1,0,1]]],[46,1,1,1,2,[[1086,1,1,1,2]]]],[28368,28967]]]]},{"k":"G4149","v":[["riches",[22,21,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[44,5,4,3,7,[[1047,1,1,3,4],[1054,1,1,4,5],[1056,3,2,5,7]]],[46,1,1,7,8,[[1085,1,1,7,8]]],[48,5,5,8,13,[[1097,2,2,8,10],[1098,1,1,10,11],[1099,2,2,11,13]]],[49,1,1,13,14,[[1106,1,1,13,14]]],[50,2,2,14,16,[[1107,1,1,14,15],[1108,1,1,15,16]]],[53,1,1,16,17,[[1124,1,1,16,17]]],[57,1,1,17,18,[[1143,1,1,17,18]]],[58,1,1,18,19,[[1150,1,1,18,19]]],[65,2,2,19,21,[[1171,1,1,19,20],[1184,1,1,20,21]]]],[23561,24342,25259,27966,28178,28221,28242,28934,29213,29224,29236,29259,29267,29461,29492,29496,29805,30198,30356,30791,31010]]]]},{"k":"G4150","v":[["washed",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30824]]]]},{"k":"G4151","v":[["*",[385,350,[[39,19,19,0,19,[[929,2,2,0,2],[931,2,2,2,4],[932,1,1,4,5],[933,1,1,5,6],[936,1,1,6,7],[938,2,2,7,9],[940,6,6,9,15],[950,1,1,15,16],[954,1,1,16,17],[955,1,1,17,18],[956,1,1,18,19]]],[40,23,22,19,41,[[957,6,6,19,25],[958,1,1,25,26],[959,3,3,26,29],[961,3,3,29,32],[962,1,1,32,33],[963,1,1,33,34],[964,1,1,34,35],[965,4,3,35,38],[968,1,1,38,39],[969,1,1,39,40],[970,1,1,40,41]]],[41,38,37,41,78,[[973,7,7,41,48],[974,4,4,48,52],[975,2,2,52,54],[976,6,5,54,59],[978,1,1,59,60],[979,1,1,60,61],[980,3,3,61,64],[981,3,3,64,67],[982,2,2,67,69],[983,3,3,69,72],[984,2,2,72,74],[985,1,1,74,75],[995,1,1,75,76],[996,2,2,76,78]]],[42,24,18,78,96,[[997,3,2,78,80],[999,6,4,80,84],[1000,3,2,84,86],[1002,2,1,86,87],[1003,2,1,87,88],[1007,1,1,88,89],[1009,1,1,89,90],[1010,2,2,90,92],[1011,1,1,92,93],[1012,1,1,93,94],[1015,1,1,94,95],[1016,1,1,95,96]]],[43,70,68,96,164,[[1018,4,4,96,100],[1019,6,5,100,105],[1021,2,2,105,107],[1022,4,4,107,111],[1023,3,3,111,114],[1024,3,3,114,117],[1025,7,7,117,124],[1026,2,2,124,126],[1027,5,5,126,131],[1028,5,5,131,136],[1030,4,4,136,140],[1032,2,2,140,142],[1033,4,4,142,146],[1034,1,1,146,147],[1035,2,2,147,149],[1036,8,7,149,156],[1037,3,3,156,159],[1038,2,2,159,161],[1040,2,2,161,163],[1045,1,1,163,164]]],[44,35,28,164,192,[[1046,2,2,164,166],[1047,1,1,166,167],[1050,1,1,167,168],[1052,1,1,168,169],[1053,22,15,169,184],[1054,1,1,184,185],[1056,1,1,185,186],[1057,1,1,186,187],[1059,1,1,187,188],[1060,4,4,188,192]]],[45,41,33,192,225,[[1063,9,6,192,198],[1064,1,1,198,199],[1065,1,1,199,200],[1066,3,3,200,203],[1067,4,4,203,207],[1068,2,2,207,209],[1073,12,8,209,217],[1075,7,6,217,223],[1076,1,1,223,224],[1077,1,1,224,225]]],[46,17,15,225,240,[[1078,1,1,225,226],[1079,1,1,226,227],[1080,7,5,227,232],[1081,1,1,232,233],[1082,1,1,233,234],[1083,1,1,234,235],[1084,2,2,235,237],[1088,1,1,237,238],[1089,1,1,238,239],[1090,1,1,239,240]]],[47,18,15,240,255,[[1093,4,4,240,244],[1094,2,2,244,246],[1095,8,6,246,252],[1096,4,3,252,255]]],[48,15,15,255,270,[[1097,2,2,255,257],[1098,3,3,257,260],[1099,2,2,260,262],[1100,4,4,262,266],[1101,2,2,266,268],[1102,2,2,268,270]]],[49,4,4,270,274,[[1103,2,2,270,272],[1104,1,1,272,273],[1105,1,1,273,274]]],[50,2,2,274,276,[[1107,1,1,274,275],[1108,1,1,275,276]]],[51,5,5,276,281,[[1111,2,2,276,278],[1114,1,1,278,279],[1115,2,2,279,281]]],[52,3,3,281,284,[[1117,3,3,281,284]]],[53,4,3,284,287,[[1121,1,1,284,285],[1122,3,2,285,287]]],[54,3,3,287,290,[[1125,2,2,287,289],[1128,1,1,289,290]]],[55,1,1,290,291,[[1131,1,1,290,291]]],[56,1,1,291,292,[[1132,1,1,291,292]]],[57,12,12,292,304,[[1133,2,2,292,294],[1134,1,1,294,295],[1135,1,1,295,296],[1136,1,1,296,297],[1138,1,1,297,298],[1141,2,2,298,300],[1142,2,2,300,302],[1144,2,2,302,304]]],[58,2,2,304,306,[[1147,1,1,304,305],[1149,1,1,305,306]]],[59,9,9,306,315,[[1151,4,4,306,310],[1153,3,3,310,313],[1154,2,2,313,315]]],[60,1,1,315,316,[[1156,1,1,315,316]]],[61,13,9,316,325,[[1161,1,1,316,317],[1162,8,5,317,322],[1163,4,3,322,325]]],[64,2,2,325,327,[[1166,2,2,325,327]]],[65,23,23,327,350,[[1167,2,2,327,329],[1168,4,4,329,333],[1169,4,4,333,337],[1170,2,2,337,339],[1171,1,1,339,340],[1177,1,1,340,341],[1179,1,1,341,342],[1180,1,1,342,343],[1182,2,2,343,345],[1183,1,1,345,346],[1184,1,1,346,347],[1185,1,1,347,348],[1187,1,1,348,349],[1188,1,1,349,350]]]],[23162,23164,23203,23208,23210,23237,23361,23418,23437,23507,23517,23520,23521,23532,23534,23915,24095,24179,24214,24223,24225,24227,24238,24241,24242,24268,24299,24317,24318,24366,24372,24377,24414,24488,24512,24555,24558,24563,24709,24728,24792,24908,24910,24928,24934,24940,24960,24973,24998,24999,25000,25013,25041,25047,25064,25077,25081,25096,25099,25164,25216,25247,25274,25300,25340,25343,25356,25383,25384,25418,25429,25431,25469,25471,25529,25981,26028,26030,26076,26077,26125,26126,26128,26154,26179,26180,26320,26367,26556,26651,26685,26694,26725,26739,26855,26889,26925,26928,26931,26939,26953,26966,26967,26982,26987,27030,27053,27062,27068,27075,27091,27104,27106,27111,27167,27171,27175,27183,27191,27193,27194,27195,27205,27215,27233,27247,27278,27297,27303,27304,27306,27319,27322,27323,27331,27335,27364,27366,27371,27414,27450,27470,27489,27490,27499,27501,27539,27562,27582,27587,27591,27597,27598,27600,27601,27606,27648,27649,27654,27668,27675,27742,27743,27924,27934,27939,27991,28052,28097,28117,28118,28120,28121,28122,28125,28126,28127,28129,28130,28131,28132,28139,28142,28143,28156,28217,28256,28297,28316,28319,28322,28333,28398,28404,28405,28406,28407,28408,28426,28454,28457,28458,28459,28478,28484,28486,28487,28521,28527,28637,28638,28641,28642,28643,28644,28645,28647,28680,28690,28692,28693,28694,28710,28763,28794,28822,28837,28844,28847,28849,28858,28859,28872,28882,28904,28917,28929,28993,29040,29057,29104,29105,29107,29116,29137,29160,29167,29178,29179,29180,29184,29187,29189,29196,29206,29219,29223,29231,29247,29251,29256,29267,29275,29276,29295,29302,29313,29322,29354,29355,29380,29388,29392,29424,29473,29499,29565,29566,29611,29640,29644,29663,29669,29674,29747,29748,29759,29816,29823,29892,29928,29963,29970,29977,29981,30002,30026,30048,30113,30119,30148,30162,30221,30235,30319,30342,30376,30385,30386,30396,30428,30442,30443,30452,30460,30500,30603,30604,30605,30606,30609,30616,30630,30631,30632,30691,30692,30701,30707,30724,30728,30734,30746,30747,30752,30759,30768,30770,30773,30785,30883,30923,30939,30967,30968,30978,30995,31027,31063,31097]]],["+",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27371]]],["Ghost",[89,88,[[39,6,6,0,6,[[929,2,2,0,2],[931,1,1,2,3],[940,2,2,3,5],[956,1,1,5,6]]],[40,4,4,6,10,[[957,1,1,6,7],[959,1,1,7,8],[968,1,1,8,9],[969,1,1,9,10]]],[41,11,11,10,21,[[973,4,4,10,14],[974,2,2,14,16],[975,2,2,16,18],[976,1,1,18,19],[984,2,2,19,21]]],[42,4,4,21,25,[[997,1,1,21,22],[1003,1,1,22,23],[1010,1,1,23,24],[1016,1,1,24,25]]],[43,41,40,25,65,[[1018,4,4,25,29],[1019,3,3,29,32],[1021,2,2,32,34],[1022,2,2,34,36],[1023,2,2,36,38],[1024,2,2,38,40],[1025,4,4,40,44],[1026,2,2,44,46],[1027,4,4,46,50],[1028,3,3,50,53],[1030,3,3,53,56],[1032,2,2,56,58],[1033,1,1,58,59],[1036,3,2,59,61],[1037,2,2,61,63],[1038,1,1,63,64],[1045,1,1,64,65]]],[44,5,5,65,70,[[1050,1,1,65,66],[1054,1,1,66,67],[1059,1,1,67,68],[1060,2,2,68,70]]],[45,3,3,70,73,[[1063,1,1,70,71],[1067,1,1,71,72],[1073,1,1,72,73]]],[46,2,2,73,75,[[1083,1,1,73,74],[1090,1,1,74,75]]],[51,2,2,75,77,[[1111,2,2,75,77]]],[54,1,1,77,78,[[1125,1,1,77,78]]],[55,1,1,78,79,[[1131,1,1,78,79]]],[57,5,5,79,84,[[1134,1,1,79,80],[1135,1,1,80,81],[1138,1,1,81,82],[1141,1,1,82,83],[1142,1,1,83,84]]],[59,1,1,84,85,[[1151,1,1,84,85]]],[60,1,1,85,86,[[1156,1,1,85,86]]],[61,1,1,86,87,[[1163,1,1,86,87]]],[64,1,1,87,88,[[1166,1,1,87,88]]]],[23162,23164,23203,23520,23521,24214,24223,24317,24709,24728,24908,24928,24934,24960,24998,24999,25041,25047,25064,25469,25471,26077,26367,26694,26889,26925,26928,26931,26939,26953,26982,26987,27030,27053,27062,27091,27104,27106,27167,27171,27191,27193,27194,27195,27233,27247,27297,27303,27304,27306,27322,27323,27331,27364,27366,27414,27450,27470,27489,27587,27591,27649,27654,27675,27924,28052,28156,28297,28316,28319,28407,28486,28637,28904,29057,29565,29566,29823,29928,29981,30002,30048,30113,30148,30386,30500,30631,30692]]],["Spirit",[138,124,[[39,4,4,0,4,[[931,1,1,0,1],[932,1,1,1,2],[938,1,1,2,3],[940,1,1,3,4]]],[40,2,2,4,6,[[957,2,2,4,6]]],[41,5,5,6,11,[[974,1,1,6,7],[976,3,3,7,10],[983,1,1,10,11]]],[42,11,11,11,22,[[997,2,2,11,13],[999,4,4,13,17],[1000,1,1,17,18],[1003,1,1,18,19],[1010,1,1,19,20],[1011,1,1,20,21],[1012,1,1,21,22]]],[43,11,11,22,33,[[1019,3,3,22,25],[1022,1,1,25,26],[1025,2,2,26,28],[1027,1,1,28,29],[1028,2,2,29,31],[1033,1,1,31,32],[1038,1,1,32,33]]],[44,21,16,33,49,[[1053,19,14,33,47],[1060,2,2,47,49]]],[45,18,14,49,63,[[1063,5,4,49,53],[1064,1,1,53,54],[1067,1,1,54,55],[1068,1,1,55,56],[1073,10,7,56,63]]],[46,6,5,63,68,[[1078,1,1,63,64],[1080,4,3,64,67],[1082,1,1,67,68]]],[47,16,13,68,81,[[1093,4,4,68,72],[1094,2,2,72,74],[1095,8,6,74,80],[1096,2,1,80,81]]],[48,12,12,81,93,[[1097,1,1,81,82],[1098,2,2,82,84],[1099,2,2,84,86],[1100,3,3,86,89],[1101,2,2,89,91],[1102,2,2,91,93]]],[49,2,2,93,95,[[1103,1,1,93,94],[1104,1,1,94,95]]],[50,1,1,95,96,[[1107,1,1,95,96]]],[51,2,2,96,98,[[1114,1,1,96,97],[1115,1,1,97,98]]],[52,1,1,98,99,[[1117,1,1,98,99]]],[53,2,2,99,101,[[1121,1,1,99,100],[1122,1,1,100,101]]],[57,2,2,101,103,[[1141,1,1,101,102],[1142,1,1,102,103]]],[59,4,4,103,107,[[1151,3,3,103,106],[1153,1,1,106,107]]],[61,6,5,107,112,[[1161,1,1,107,108],[1162,2,2,108,110],[1163,3,2,110,112]]],[64,1,1,112,113,[[1166,1,1,112,113]]],[65,11,11,113,124,[[1167,1,1,113,114],[1168,4,4,114,118],[1169,3,3,118,121],[1177,1,1,121,122],[1180,1,1,122,123],[1188,1,1,123,124]]]],[23208,23210,23437,23517,24225,24227,25000,25064,25077,25081,25418,26076,26077,26125,26126,26128,26154,26180,26367,26685,26725,26739,26953,26966,26967,27068,27205,27215,27278,27319,27335,27490,27668,28117,28118,28120,28121,28125,28126,28127,28129,28130,28131,28132,28139,28142,28143,28322,28333,28398,28404,28405,28408,28426,28478,28527,28637,28638,28641,28642,28643,28645,28647,28822,28844,28858,28859,28882,29104,29105,29107,29116,29137,29160,29167,29178,29179,29180,29184,29187,29196,29219,29247,29251,29256,29267,29275,29276,29302,29313,29322,29354,29355,29380,29392,29473,29611,29640,29674,29747,29748,30119,30162,30376,30385,30396,30442,30603,30605,30616,30630,30632,30691,30707,30724,30728,30734,30746,30752,30759,30768,30883,30939,31097]]],["Spirits",[4,4,[[65,4,4,0,4,[[1167,1,1,0,1],[1169,1,1,1,2],[1170,1,1,2,3],[1171,1,1,3,4]]]],[30701,30747,30773,30785]]],["ghost",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]]],[24179,26855]]],["life",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30923]]],["spirit",[119,113,[[39,5,5,0,5,[[933,1,1,0,1],[940,2,2,1,3],[950,1,1,3,4],[954,1,1,4,5]]],[40,13,12,5,17,[[957,2,2,5,7],[958,1,1,7,8],[959,1,1,8,9],[961,2,2,9,11],[963,1,1,11,12],[964,1,1,12,13],[965,4,3,13,16],[970,1,1,16,17]]],[41,16,16,17,33,[[973,3,3,17,20],[974,1,1,20,21],[976,1,1,21,22],[980,2,2,22,24],[981,3,3,24,27],[982,1,1,27,28],[983,1,1,28,29],[985,1,1,29,30],[995,1,1,30,31],[996,2,2,31,33]]],[42,7,6,33,39,[[999,1,1,33,34],[1000,2,2,34,36],[1002,2,1,36,37],[1007,1,1,37,38],[1009,1,1,38,39]]],[43,13,13,39,52,[[1023,1,1,39,40],[1024,1,1,40,41],[1033,2,2,41,43],[1034,1,1,43,44],[1035,2,2,44,46],[1036,3,3,46,49],[1037,1,1,49,50],[1040,2,2,50,52]]],[44,8,8,52,60,[[1046,2,2,52,54],[1047,1,1,54,55],[1052,1,1,55,56],[1053,2,2,56,58],[1056,1,1,58,59],[1057,1,1,59,60]]],[45,17,15,60,75,[[1063,3,2,60,62],[1065,1,1,62,63],[1066,3,3,63,66],[1067,2,2,66,68],[1068,1,1,68,69],[1075,5,4,69,73],[1076,1,1,73,74],[1077,1,1,74,75]]],[46,9,8,75,83,[[1079,1,1,75,76],[1080,3,2,76,78],[1081,1,1,78,79],[1084,2,2,79,81],[1088,1,1,81,82],[1089,1,1,82,83]]],[47,2,2,83,85,[[1096,2,2,83,85]]],[48,3,3,85,88,[[1097,1,1,85,86],[1098,1,1,86,87],[1100,1,1,87,88]]],[49,2,2,88,90,[[1103,1,1,88,89],[1105,1,1,89,90]]],[50,1,1,90,91,[[1108,1,1,90,91]]],[51,1,1,91,92,[[1115,1,1,91,92]]],[52,2,2,92,94,[[1117,2,2,92,94]]],[53,1,1,94,95,[[1122,1,1,94,95]]],[54,2,2,95,97,[[1125,1,1,95,96],[1128,1,1,96,97]]],[56,1,1,97,98,[[1132,1,1,97,98]]],[57,1,1,98,99,[[1136,1,1,98,99]]],[58,2,2,99,101,[[1147,1,1,99,100],[1149,1,1,100,101]]],[59,3,3,101,104,[[1153,1,1,101,102],[1154,2,2,102,104]]],[61,5,4,104,108,[[1162,5,4,104,108]]],[65,5,5,108,113,[[1170,1,1,108,109],[1183,1,1,109,110],[1184,1,1,110,111],[1185,1,1,111,112],[1187,1,1,112,113]]]],[23237,23507,23532,23915,24095,24238,24241,24268,24318,24366,24372,24488,24512,24555,24558,24563,24792,24910,24940,24973,25013,25096,25274,25300,25340,25343,25356,25384,25429,25529,25981,26028,26030,26126,26179,26180,26320,26556,26651,27111,27175,27499,27501,27539,27562,27582,27600,27601,27606,27648,27742,27743,27934,27939,27991,28097,28131,28132,28217,28256,28405,28406,28454,28457,28458,28459,28484,28487,28521,28680,28692,28693,28694,28763,28794,28837,28847,28849,28872,28917,28929,28993,29040,29189,29206,29223,29231,29295,29388,29424,29499,29644,29663,29669,29759,29816,29892,29963,30026,30319,30342,30428,30452,30460,30604,30605,30606,30609,30770,30978,30995,31027,31063]]],["spirits",[28,28,[[39,3,3,0,3,[[936,1,1,0,1],[938,1,1,1,2],[940,1,1,2,3]]],[40,4,4,3,7,[[957,1,1,3,4],[959,1,1,4,5],[961,1,1,5,6],[962,1,1,6,7]]],[41,6,6,7,13,[[976,1,1,7,8],[978,1,1,8,9],[979,1,1,9,10],[980,1,1,10,11],[982,1,1,11,12],[983,1,1,12,13]]],[43,4,4,13,17,[[1022,1,1,13,14],[1025,1,1,14,15],[1036,2,2,15,17]]],[45,2,2,17,19,[[1073,1,1,17,18],[1075,1,1,18,19]]],[53,1,1,19,20,[[1122,1,1,19,20]]],[57,4,4,20,24,[[1133,2,2,20,22],[1144,2,2,22,24]]],[59,1,1,24,25,[[1153,1,1,24,25]]],[61,1,1,25,26,[[1162,1,1,25,26]]],[65,2,2,26,28,[[1182,2,2,26,28]]]],[23361,23418,23534,24242,24299,24377,24414,25099,25164,25216,25247,25383,25431,27075,27183,27597,27598,28644,28710,29748,29970,29977,30221,30235,30443,30604,30967,30968]]],["spiritual",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28690]]],["spiritually",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28122]]],["wind",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26128]]]]},{"k":"G4152","v":[["*",[26,21,[[44,3,3,0,3,[[1046,1,1,0,1],[1052,1,1,1,2],[1060,1,1,2,3]]],[45,15,11,3,14,[[1063,3,2,3,5],[1064,1,1,5,6],[1070,1,1,6,7],[1071,3,2,7,9],[1073,1,1,9,10],[1075,2,2,10,12],[1076,4,2,12,14]]],[47,1,1,14,15,[[1096,1,1,14,15]]],[48,3,3,15,18,[[1097,1,1,15,16],[1101,1,1,16,17],[1102,1,1,17,18]]],[50,2,2,18,20,[[1107,1,1,18,19],[1109,1,1,19,20]]],[59,2,1,20,21,[[1152,2,1,20,21]]]],[27941,28105,28330,28407,28409,28411,28551,28570,28571,28635,28679,28715,28762,28764,29189,29209,29323,29349,29474,29533,30404]]],["+",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28409]]],["spiritual",[22,18,[[44,2,2,0,2,[[1046,1,1,0,1],[1052,1,1,1,2]]],[45,12,9,2,11,[[1063,1,1,2,3],[1064,1,1,3,4],[1071,3,2,4,6],[1073,1,1,6,7],[1075,2,2,7,9],[1076,4,2,9,11]]],[47,1,1,11,12,[[1096,1,1,11,12]]],[48,3,3,12,15,[[1097,1,1,12,13],[1101,1,1,13,14],[1102,1,1,14,15]]],[50,2,2,15,17,[[1107,1,1,15,16],[1109,1,1,16,17]]],[59,2,1,17,18,[[1152,2,1,17,18]]]],[27941,28105,28407,28411,28570,28571,28635,28679,28715,28762,28764,29189,29209,29323,29349,29474,29533,30404]]],["things",[3,3,[[44,1,1,0,1,[[1060,1,1,0,1]]],[45,2,2,1,3,[[1063,1,1,1,2],[1070,1,1,2,3]]]],[28330,28407,28551]]]]},{"k":"G4153","v":[["spiritually",[2,2,[[45,1,1,0,1,[[1063,1,1,0,1]]],[65,1,1,1,2,[[1177,1,1,1,2]]]],[28408,30880]]]]},{"k":"G4154","v":[["*",[7,7,[[39,2,2,0,2,[[935,2,2,0,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[42,2,2,3,5,[[999,1,1,3,4],[1002,1,1,4,5]]],[43,1,1,5,6,[[1044,1,1,5,6]]],[65,1,1,6,7,[[1173,1,1,6,7]]]],[23341,23343,25514,26128,26275,27895,30811]]],["blew",[3,3,[[39,2,2,0,2,[[935,2,2,0,2]]],[42,1,1,2,3,[[1002,1,1,2,3]]]],[23341,23343,26275]]],["blow",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[65,1,1,1,2,[[1173,1,1,1,2]]]],[25514,30811]]],["bloweth",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26128]]],["wind",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27895]]]]},{"k":"G4155","v":[["*",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]]],[23755,24377]]],["choked",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24377]]],["throat",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23755]]]]},{"k":"G4156","v":[["strangled",[3,3,[[43,3,3,0,3,[[1032,2,2,0,2],[1038,1,1,2,3]]]],[27462,27471,27689]]]]},{"k":"G4157","v":[["*",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1034,1,1,1,2]]]],[26951,27548]]],["breath",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27548]]],["wind",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26951]]]]},{"k":"G4158","v":[["foot",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30710]]]]},{"k":"G4159","v":[["*",[28,26,[[39,5,5,0,5,[[941,3,3,0,3],[943,1,1,3,4],[949,1,1,4,5]]],[40,3,3,5,8,[[962,1,1,5,6],[964,1,1,6,7],[968,1,1,7,8]]],[41,4,4,8,12,[[973,1,1,8,9],[985,2,2,9,11],[992,1,1,11,12]]],[42,13,11,12,23,[[997,1,1,12,13],[998,1,1,13,14],[999,1,1,14,15],[1000,1,1,15,16],[1002,1,1,16,17],[1003,3,2,17,19],[1004,2,1,19,20],[1005,2,2,20,22],[1015,1,1,22,23]]],[58,1,1,23,24,[[1149,1,1,23,24]]],[65,2,2,24,26,[[1168,1,1,24,25],[1173,1,1,25,26]]]],[23566,23593,23595,23666,23851,24409,24504,24710,24936,25543,25545,25786,26092,26104,26128,26167,26262,26355,26356,26395,26469,26470,26834,30338,30722,30823]]],["Whence",[6,6,[[39,3,3,0,3,[[941,2,2,0,2],[943,1,1,2,3]]],[42,3,3,3,6,[[997,1,1,3,4],[1002,1,1,4,5],[1015,1,1,5,6]]]],[23593,23595,23666,26092,26262,26834]]],["whence",[22,20,[[39,2,2,0,2,[[941,1,1,0,1],[949,1,1,1,2]]],[40,3,3,2,5,[[962,1,1,2,3],[964,1,1,3,4],[968,1,1,4,5]]],[41,4,4,5,9,[[973,1,1,5,6],[985,2,2,6,8],[992,1,1,8,9]]],[42,10,8,9,17,[[998,1,1,9,10],[999,1,1,10,11],[1000,1,1,11,12],[1003,3,2,12,14],[1004,2,1,14,15],[1005,2,2,15,17]]],[58,1,1,17,18,[[1149,1,1,17,18]]],[65,2,2,18,20,[[1168,1,1,18,19],[1173,1,1,19,20]]]],[23566,23851,24409,24504,24710,24936,25543,25545,25786,26104,26128,26167,26355,26356,26395,26469,26470,30338,30722,30823]]]]},{"k":"G4160","v":[["*",[576,518,[[39,89,73,0,73,[[929,1,1,0,1],[931,3,3,1,4],[932,1,1,4,5],[933,7,6,5,11],[934,5,3,11,14],[935,11,8,14,22],[936,2,1,22,23],[937,1,1,23,24],[940,8,6,24,30],[941,5,5,30,35],[945,2,2,35,37],[946,1,1,37,38],[947,3,2,38,40],[948,5,4,40,44],[949,11,11,44,55],[950,1,1,55,56],[951,7,4,56,60],[952,1,1,60,61],[953,5,3,61,64],[954,5,5,64,69],[955,2,2,69,71],[956,2,2,71,73]]],[40,49,47,73,120,[[957,2,2,73,75],[958,3,3,75,78],[959,5,5,78,83],[960,1,1,83,84],[961,3,3,84,87],[962,4,4,87,91],[963,5,4,91,95],[964,1,1,95,96],[965,3,3,96,99],[966,5,5,99,104],[967,7,6,104,110],[968,1,1,110,111],[970,3,3,111,114],[971,6,6,114,120]]],[41,90,81,120,201,[[973,5,5,120,125],[974,2,2,125,127],[975,8,8,127,135],[976,1,1,135,136],[977,4,4,136,140],[978,16,13,140,153],[979,2,1,153,154],[980,4,3,154,157],[981,5,5,157,162],[982,4,3,162,165],[983,3,2,165,167],[984,7,7,167,174],[985,2,2,174,176],[986,3,3,176,179],[987,1,1,179,180],[988,4,4,180,184],[989,4,2,184,186],[990,4,4,186,190],[991,3,3,190,193],[992,4,4,193,197],[994,1,1,197,198],[995,3,3,198,201]]],[42,110,97,201,298,[[998,6,6,201,207],[999,3,2,207,209],[1000,7,7,209,216],[1001,13,10,216,226],[1002,8,8,226,234],[1003,10,8,234,242],[1004,9,9,242,251],[1005,7,7,251,258],[1006,5,5,258,263],[1007,5,4,263,267],[1008,5,4,267,271],[1009,7,5,271,276],[1010,8,6,276,282],[1011,6,5,282,287],[1012,2,2,287,289],[1013,1,1,289,290],[1014,2,2,290,292],[1015,4,4,292,296],[1016,1,1,296,297],[1017,1,1,297,298]]],[43,69,65,298,363,[[1018,2,1,298,299],[1019,3,3,299,302],[1020,1,1,302,303],[1021,4,4,303,307],[1022,1,1,307,308],[1023,1,1,308,309],[1024,7,7,309,316],[1025,2,2,316,318],[1026,5,4,318,322],[1027,4,4,322,326],[1028,1,1,326,327],[1029,1,1,327,328],[1030,1,1,328,329],[1031,4,3,329,332],[1032,5,5,332,337],[1033,3,3,337,340],[1034,2,2,340,342],[1035,2,2,342,344],[1036,3,3,344,347],[1037,2,2,347,349],[1038,4,4,349,353],[1039,3,2,353,355],[1040,2,2,355,357],[1041,2,2,357,359],[1042,1,1,359,360],[1043,1,1,360,361],[1044,1,1,361,362],[1045,1,1,362,363]]],[44,23,23,363,386,[[1046,3,3,363,366],[1047,2,2,366,368],[1048,2,2,368,370],[1049,1,1,370,371],[1052,5,5,371,376],[1054,3,3,376,379],[1055,1,1,379,380],[1057,1,1,380,381],[1058,3,3,381,384],[1060,1,1,384,385],[1061,1,1,385,386]]],[45,15,13,386,399,[[1066,1,1,386,387],[1067,2,2,387,389],[1068,4,3,389,392],[1070,1,1,392,393],[1071,3,2,393,395],[1072,2,2,395,397],[1076,1,1,397,398],[1077,1,1,398,399]]],[46,9,7,399,406,[[1082,1,1,399,400],[1085,2,2,400,402],[1088,4,3,402,405],[1090,2,1,405,406]]],[47,6,6,406,412,[[1092,1,1,406,407],[1093,2,2,407,409],[1095,2,2,409,411],[1096,1,1,411,412]]],[48,10,10,412,422,[[1097,1,1,412,413],[1098,3,3,413,416],[1099,2,2,416,418],[1100,1,1,418,419],[1102,3,3,419,422]]],[49,3,3,422,425,[[1103,1,1,422,423],[1104,1,1,423,424],[1106,1,1,424,425]]],[50,3,3,425,428,[[1109,2,2,425,427],[1110,1,1,427,428]]],[51,4,4,428,432,[[1111,1,1,428,429],[1114,1,1,429,430],[1115,2,2,430,432]]],[52,2,1,432,433,[[1118,2,1,432,433]]],[53,4,4,433,437,[[1119,1,1,433,434],[1120,1,1,434,435],[1122,1,1,435,436],[1123,1,1,436,437]]],[54,1,1,437,438,[[1128,1,1,437,438]]],[55,1,1,438,439,[[1131,1,1,438,439]]],[56,3,3,439,442,[[1132,3,3,439,442]]],[57,19,18,442,460,[[1133,3,3,442,445],[1135,1,1,445,446],[1138,1,1,446,447],[1139,1,1,447,448],[1140,2,2,448,450],[1142,3,3,450,453],[1143,1,1,453,454],[1144,2,2,454,456],[1145,5,4,456,460]]],[58,12,10,460,470,[[1147,4,4,460,464],[1148,3,2,464,466],[1149,4,3,466,469],[1150,1,1,469,470]]],[59,3,3,470,473,[[1152,1,1,470,471],[1153,2,2,471,473]]],[60,4,3,473,476,[[1156,4,3,473,476]]],[61,12,11,476,487,[[1159,2,2,476,478],[1160,2,2,478,480],[1161,7,6,480,486],[1163,1,1,486,487]]],[63,3,3,487,490,[[1165,3,3,487,490]]],[64,2,2,490,492,[[1166,2,2,490,492]]],[65,30,26,492,518,[[1167,1,1,492,493],[1168,1,1,493,494],[1169,2,2,494,496],[1171,1,1,496,497],[1177,1,1,497,498],[1178,2,2,498,500],[1179,10,7,500,507],[1180,1,1,507,508],[1182,1,1,508,509],[1183,3,2,509,511],[1185,2,2,511,513],[1187,2,2,513,515],[1188,3,3,515,518]]]],[23168,23195,23200,23202,23228,23253,23266,23270,23278,23280,23281,23283,23284,23285,23328,23333,23334,23335,23337,23338,23340,23342,23354,23407,23491,23492,23501,23505,23522,23539,23562,23565,23567,23580,23597,23704,23712,23762,23766,23778,23797,23804,23807,23824,23832,23839,23841,23847,23849,23850,23853,23857,23862,23866,23869,23874,23921,23923,23933,23941,24003,24024,24048,24053,24066,24067,24072,24073,24127,24151,24152,24209,24210,24218,24232,24283,24284,24285,24294,24296,24300,24302,24323,24355,24383,24384,24396,24412,24427,24428,24437,24471,24475,24476,24500,24525,24543,24551,24577,24594,24605,24623,24624,24639,24643,24645,24657,24668,24669,24673,24682,24761,24762,24763,24827,24833,24834,24838,24840,24841,24918,24942,24944,24961,24965,25000,25021,25029,25033,25034,25035,25036,25037,25039,25044,25086,25113,25136,25140,25141,25148,25149,25156,25157,25169,25172,25173,25177,25179,25189,25192,25193,25195,25203,25253,25266,25284,25311,25316,25334,25344,25355,25388,25391,25400,25445,25447,25463,25476,25477,25492,25502,25506,25507,25527,25540,25565,25566,25569,25607,25623,25624,25628,25629,25660,25661,25695,25696,25706,25729,25749,25777,25779,25781,25787,25792,25794,25883,25957,25966,25969,26100,26106,26110,26111,26113,26118,26122,26141,26157,26185,26190,26195,26201,26202,26210,26221,26225,26226,26228,26229,26230,26237,26239,26240,26246,26259,26263,26267,26271,26272,26285,26287,26295,26331,26332,26345,26347,26349,26351,26359,26379,26409,26410,26415,26419,26420,26421,26422,26425,26434,26446,26451,26454,26456,26466,26471,26473,26506,26514,26518,26519,26522,26560,26568,26569,26570,26582,26596,26598,26617,26637,26642,26645,26647,26657,26678,26680,26681,26682,26691,26699,26704,26713,26714,26720,26723,26728,26729,26763,26803,26820,26832,26837,26848,26849,26897,26923,26924,26971,26985,26986,27008,27029,27038,27046,27050,27093,27109,27135,27140,27152,27156,27159,27160,27166,27178,27182,27222,27229,27252,27255,27261,27265,27292,27298,27337,27345,27384,27425,27429,27441,27445,27446,27454,27459,27475,27501,27504,27513,27547,27549,27578,27580,27596,27599,27609,27629,27650,27677,27683,27687,27697,27714,27730,27746,27747,27781,27786,27799,27833,27873,27916,27939,27958,27962,27965,27976,27999,28003,28043,28106,28107,28110,28111,28112,28175,28176,28183,28193,28265,28269,28270,28280,28329,28353,28456,28482,28485,28523,28524,28525,28563,28580,28598,28624,28625,28747,28777,28898,28942,28943,28996,29001,29014,29050,29091,29112,29114,29165,29179,29197,29222,29232,29243,29244,29262,29271,29288,29343,29345,29346,29365,29405,29456,29534,29540,29558,29562,29613,29632,29645,29682,29709,29717,29763,29784,29875,29928,29942,29952,29959,29965,29966,29970,29997,30047,30091,30097,30101,30140,30142,30169,30200,30225,30239,30247,30258,30260,30262,30301,30305,30306,30312,30331,30337,30350,30352,30354,30369,30421,30435,30436,30489,30494,30498,30546,30550,30567,30579,30583,30586,30587,30588,30589,30601,30634,30663,30664,30668,30675,30687,30703,30722,30755,30758,30789,30879,30906,30908,30913,30915,30920,30921,30922,30923,30924,30933,30968,30991,30992,31036,31037,31058,31080,31082,31094,31095]]],["+",[28,28,[[39,4,4,0,4,[[931,1,1,0,1],[935,1,1,1,2],[954,1,1,2,3],[956,1,1,3,4]]],[40,3,3,4,7,[[958,1,1,4,5],[959,1,1,5,6],[971,1,1,6,7]]],[41,7,7,7,14,[[973,1,1,7,8],[975,1,1,8,9],[978,2,2,9,11],[985,1,1,11,12],[990,2,2,12,14]]],[42,2,2,14,16,[[1004,1,1,14,15],[1010,1,1,15,16]]],[43,7,7,16,23,[[1024,2,2,16,18],[1037,1,1,18,19],[1040,1,1,19,20],[1041,1,1,20,21],[1042,1,1,21,22],[1044,1,1,22,23]]],[45,1,1,23,24,[[1067,1,1,23,24]]],[57,1,1,24,25,[[1133,1,1,24,25]]],[60,1,1,25,26,[[1156,1,1,25,26]]],[61,1,1,26,27,[[1161,1,1,26,27]]],[65,1,1,27,28,[[1183,1,1,27,28]]]],[23202,23335,24127,24209,24283,24294,24841,24961,25034,25157,25189,25540,25695,25696,26420,26680,27135,27140,27650,27746,27781,27799,27873,28485,29966,30494,30583,30992]]],["Do",[4,4,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[43,1,1,2,3,[[1038,1,1,2,3]]],[49,1,1,3,4,[[1104,1,1,3,4]]]],[23354,25203,27687,29405]]],["Make",[3,3,[[41,1,1,0,1,[[988,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[43,1,1,2,3,[[1024,1,1,2,3]]]],[25629,26267,27156]]],["abode",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27629]]],["appointed",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[29997]]],["bare",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[65,1,1,1,2,[[1188,1,1,1,2]]]],[25253,31082]]],["bear",[2,2,[[41,1,1,0,1,[[985,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[25527,30331]]],["been",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29014]]],["bring",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27786]]],["cause",[4,4,[[44,1,1,0,1,[[1061,1,1,0,1]]],[50,1,1,1,2,[[1110,1,1,1,2]]],[65,2,2,2,4,[[1178,1,1,2,3],[1179,1,1,3,4]]]],[28353,29558,30906,30923]]],["caused",[2,2,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]]],[26560,27445]]],["causeth",[3,3,[[39,1,1,0,1,[[933,1,1,0,1]]],[65,2,2,1,3,[[1179,2,2,1,3]]]],[23266,30920,30924]]],["commit",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[61,1,1,1,2,[[1161,1,1,1,2]]]],[25507,30588]]],["committed",[4,4,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]]],[24833,27916,28996,30369]]],["committeth",[3,3,[[42,1,1,0,1,[[1004,1,1,0,1]]],[61,2,2,1,3,[[1161,2,2,1,3]]]],[26415,30583,30587]]],["continue",[2,2,[[58,1,1,0,1,[[1149,1,1,0,1]]],[65,1,1,1,2,[[1179,1,1,1,2]]]],[30350,30913]]],["dealt",[2,2,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]]],[24918,25021]]],["did",[54,53,[[39,13,12,0,12,[[929,1,1,0,1],[940,1,1,1,2],[941,1,1,2,3],[948,1,1,3,4],[949,4,4,4,8],[953,2,1,8,9],[954,2,2,9,11],[956,1,1,11,12]]],[40,3,3,12,15,[[958,1,1,12,13],[959,1,1,13,14],[962,1,1,14,15]]],[41,9,9,15,24,[[978,4,4,15,19],[981,3,3,19,22],[984,1,1,22,23],[989,1,1,23,24]]],[42,16,16,24,40,[[998,2,2,24,26],[1000,4,4,26,30],[1002,2,2,30,32],[1004,1,1,32,33],[1005,1,1,33,34],[1006,1,1,34,35],[1007,1,1,35,36],[1011,1,1,36,37],[1015,1,1,37,38],[1016,1,1,38,39],[1017,1,1,39,40]]],[43,10,10,40,50,[[1019,1,1,40,41],[1023,1,1,41,42],[1025,1,1,42,43],[1026,1,1,43,44],[1027,1,1,44,45],[1028,1,1,45,46],[1029,1,1,46,47],[1033,1,1,47,48],[1036,1,1,48,49],[1043,1,1,49,50]]],[53,1,1,50,51,[[1119,1,1,50,51]]],[57,1,1,51,52,[[1139,1,1,51,52]]],[59,1,1,52,53,[[1152,1,1,52,53]]]],[23168,23492,23597,23797,23832,23841,23857,23862,24053,24066,24073,24210,24285,24296,24427,25149,25156,25169,25172,25316,25344,25355,25506,25660,26106,26118,26185,26195,26201,26210,26259,26271,26421,26466,26522,26568,26723,26849,26897,26923,26971,27109,27182,27252,27298,27337,27345,27501,27599,27833,29709,30091,30421]]],["do",[189,174,[[39,28,23,0,23,[[933,5,4,0,4],[934,2,2,4,6],[935,2,1,6,7],[937,1,1,7,8],[940,4,3,8,11],[941,1,1,11,12],[946,1,1,12,13],[947,1,1,13,14],[948,2,2,14,16],[949,4,4,16,20],[951,4,2,20,22],[955,1,1,22,23]]],[40,19,19,23,42,[[958,1,1,23,24],[959,1,1,24,25],[962,1,1,25,26],[963,3,3,26,29],[965,1,1,29,30],[966,4,4,30,34],[967,5,5,34,39],[968,1,1,39,40],[970,1,1,40,41],[971,1,1,41,42]]],[41,32,30,42,72,[[974,1,1,42,43],[975,4,4,43,47],[976,1,1,47,48],[978,7,5,48,53],[980,1,1,53,54],[982,3,3,54,57],[984,3,3,57,60],[988,2,2,60,62],[989,1,1,62,63],[990,2,2,63,65],[991,1,1,65,66],[992,3,3,66,69],[994,1,1,69,70],[995,2,2,70,72]]],[42,38,36,72,108,[[998,1,1,72,73],[999,1,1,73,74],[1000,1,1,74,75],[1001,4,3,75,78],[1002,3,3,78,81],[1003,3,3,81,84],[1004,5,5,84,89],[1005,2,2,89,91],[1006,3,3,91,94],[1007,1,1,94,95],[1009,4,4,95,99],[1010,5,4,99,103],[1011,3,3,103,106],[1012,1,1,106,107],[1013,1,1,107,108]]],[43,11,9,108,117,[[1018,1,1,108,109],[1019,1,1,109,110],[1021,2,2,110,112],[1026,2,1,112,113],[1027,1,1,113,114],[1031,1,1,114,115],[1033,1,1,115,116],[1039,2,1,116,117]]],[44,11,11,117,128,[[1046,2,2,117,119],[1047,1,1,119,120],[1048,1,1,120,121],[1052,5,5,121,126],[1058,2,2,126,128]]],[45,8,7,128,135,[[1068,1,1,128,129],[1070,1,1,129,130],[1071,2,1,130,131],[1072,2,2,131,133],[1076,1,1,133,134],[1077,1,1,134,135]]],[46,5,3,135,138,[[1085,1,1,135,136],[1088,2,1,136,137],[1090,2,1,137,138]]],[47,4,4,138,142,[[1092,1,1,138,139],[1093,1,1,139,140],[1095,2,2,140,142]]],[48,2,2,142,144,[[1099,1,1,142,143],[1102,1,1,143,144]]],[50,2,2,144,146,[[1109,2,2,144,146]]],[51,3,3,146,149,[[1114,1,1,146,147],[1115,2,2,147,149]]],[52,2,1,149,150,[[1118,2,1,149,150]]],[54,1,1,150,151,[[1128,1,1,150,151]]],[56,2,2,151,153,[[1132,2,2,151,153]]],[57,7,7,153,160,[[1138,1,1,153,154],[1142,2,2,154,156],[1145,4,4,156,160]]],[58,4,4,160,164,[[1147,2,2,160,162],[1149,2,2,162,164]]],[59,2,2,164,166,[[1153,2,2,164,166]]],[60,2,2,166,168,[[1156,2,2,166,168]]],[61,2,2,168,170,[[1159,1,1,168,169],[1161,1,1,169,170]]],[63,1,1,170,171,[[1165,1,1,170,171]]],[65,3,3,171,174,[[1168,1,1,171,172],[1179,1,1,172,173],[1188,1,1,173,174]]]],[23253,23278,23280,23281,23283,23284,23328,23407,23491,23501,23539,23580,23762,23778,23807,23824,23847,23850,23853,23866,23921,23923,24151,24284,24323,24412,24471,24475,24476,24577,24605,24623,24624,24639,24643,24645,24668,24669,24673,24682,24761,24838,25000,25035,25036,25037,25039,25086,25148,25173,25177,25179,25192,25266,25388,25391,25400,25463,25476,25477,25623,25624,25661,25706,25729,25779,25787,25792,25794,25883,25966,25969,26100,26122,26190,26229,26240,26246,26263,26285,26295,26332,26345,26359,26409,26410,26419,26422,26425,26456,26473,26506,26518,26519,26570,26637,26645,26647,26657,26680,26681,26682,26699,26704,26713,26720,26729,26763,26924,26986,27038,27050,27222,27265,27429,27513,27714,27958,27962,27976,27999,28106,28107,28110,28111,28112,28269,28270,28523,28563,28598,28624,28625,28747,28777,28942,29001,29050,29091,29112,29165,29179,29271,29346,29534,29540,29613,29632,29645,29682,29875,29952,29959,30047,30140,30142,30247,30258,30260,30262,30301,30305,30352,30354,30435,30436,30489,30498,30546,30601,30664,30722,30922,31094]]],["doest",[13,13,[[39,3,3,0,3,[[934,2,2,0,2],[949,1,1,2,3]]],[40,1,1,3,4,[[967,1,1,3,4]]],[41,1,1,4,5,[[992,1,1,4,5]]],[42,4,4,5,9,[[998,1,1,5,6],[999,1,1,6,7],[1003,1,1,7,8],[1009,1,1,8,9]]],[43,1,1,9,10,[[1039,1,1,9,10]]],[44,1,1,10,11,[[1047,1,1,10,11]]],[58,1,1,11,12,[[1147,1,1,11,12]]],[63,1,1,12,13,[[1165,1,1,12,13]]]],[23284,23285,23849,24668,25781,26113,26122,26331,26657,27730,27965,30312,30663]]],["doeth",[33,31,[[39,5,5,0,5,[[934,1,1,0,1],[935,3,3,1,4],[936,1,1,4,5]]],[41,3,3,5,8,[[978,2,2,5,7],[979,1,1,7,8]]],[42,10,9,8,17,[[999,1,1,8,9],[1001,3,2,9,11],[1003,2,2,11,13],[1005,1,1,13,14],[1007,1,1,14,15],[1010,1,1,15,16],[1011,1,1,16,17]]],[43,1,1,17,18,[[1032,1,1,17,18]]],[44,2,2,18,20,[[1048,1,1,18,19],[1055,1,1,19,20]]],[45,3,2,20,22,[[1068,3,2,20,22]]],[47,1,1,22,23,[[1093,1,1,22,23]]],[48,1,1,23,24,[[1102,1,1,23,24]]],[58,1,1,24,25,[[1149,1,1,24,25]]],[61,4,4,25,29,[[1160,2,2,25,27],[1161,2,2,27,29]]],[63,1,1,29,30,[[1165,1,1,29,30]]],[65,1,1,30,31,[[1179,1,1,30,31]]]],[23285,23337,23340,23342,23354,25193,25195,25203,26141,26229,26230,26332,26379,26471,26570,26678,26714,27459,28003,28193,28524,28525,29114,29345,30354,30567,30579,30586,30589,30668,30921]]],["doing",[8,8,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]],[47,1,1,4,5,[[1096,1,1,4,5]]],[48,1,1,5,6,[[1102,1,1,5,6]]],[53,2,2,6,8,[[1122,1,1,6,7],[1123,1,1,7,8]]]],[24003,25502,28265,28943,29197,29343,29763,29784]]],["done",[52,49,[[39,8,7,0,7,[[935,1,1,0,1],[941,1,1,1,2],[945,1,1,2,3],[951,1,1,3,4],[953,2,1,4,5],[954,1,1,5,6],[955,1,1,6,7]]],[40,10,10,7,17,[[961,3,3,7,10],[962,1,1,10,11],[963,1,1,11,12],[965,1,1,12,13],[970,2,2,13,15],[971,2,2,15,17]]],[41,11,9,17,26,[[973,1,1,17,18],[975,1,1,18,19],[977,1,1,19,20],[980,2,1,20,21],[981,1,1,21,22],[983,1,1,22,23],[988,1,1,23,24],[989,2,1,24,25],[995,1,1,25,26]]],[42,12,12,26,38,[[1001,2,2,26,28],[1003,2,2,28,30],[1007,1,1,30,31],[1008,3,3,31,34],[1009,2,2,34,36],[1011,1,1,36,37],[1014,1,1,37,38]]],[43,7,7,38,45,[[1021,1,1,38,39],[1026,1,1,39,40],[1027,1,1,40,41],[1031,2,2,41,43],[1032,1,1,43,44],[1038,1,1,44,45]]],[45,1,1,45,46,[[1066,1,1,45,46]]],[49,1,1,46,47,[[1106,1,1,46,47]]],[55,1,1,47,48,[[1131,1,1,47,48]]],[57,1,1,48,49,[[1142,1,1,48,49]]]],[23338,23567,23712,23941,24048,24067,24152,24383,24384,24396,24437,24500,24551,24762,24763,24834,24840,24942,25044,25113,25284,25311,25447,25628,25661,25957,26226,26239,26349,26359,26569,26596,26598,26617,26642,26645,26723,26820,27029,27229,27292,27425,27441,27446,27697,28456,29456,29928,30169]]],["execute",[2,2,[[42,1,1,0,1,[[1001,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[26237,30687]]],["exerciseth",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30920]]],["forth",[10,8,[[39,8,6,0,6,[[931,1,1,0,1],[935,4,2,1,3],[941,2,2,3,5],[949,1,1,5,6]]],[41,2,2,6,8,[[975,1,1,6,7],[978,1,1,7,8]]]],[23200,23333,23334,23562,23565,23869,25033,25189]]],["fulfil",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[65,1,1,1,2,[[1183,1,1,1,2]]]],[27384,30992]]],["fulfilling",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29232]]],["gained",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25749]]],["gave",[2,2,[[43,1,1,0,1,[[1027,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[27261,30675]]],["held",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24827]]],["him",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26582]]],["keep",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]]],[24072,27578]]],["keepeth",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26347]]],["kept",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30200]]],["made",[51,50,[[39,6,5,0,5,[[947,2,1,0,1],[948,1,1,1,2],[949,1,1,2,3],[950,1,1,3,4],[953,1,1,4,5]]],[40,4,4,5,9,[[962,1,1,5,6],[964,1,1,6,7],[966,1,1,7,8],[967,1,1,8,9]]],[41,4,4,9,13,[[977,1,1,9,10],[983,1,1,10,11],[986,1,1,11,12],[991,1,1,12,13]]],[42,13,13,13,26,[[998,1,1,13,14],[1000,2,2,14,16],[1001,2,2,16,18],[1003,1,1,18,19],[1005,3,3,19,22],[1008,1,1,22,23],[1014,1,1,23,24],[1015,2,2,24,26]]],[43,13,13,26,39,[[1018,1,1,26,27],[1019,1,1,27,28],[1020,1,1,28,29],[1021,1,1,29,30],[1024,2,2,30,32],[1025,1,1,32,33],[1026,1,1,33,34],[1031,1,1,34,35],[1034,2,2,35,37],[1036,1,1,37,38],[1040,1,1,38,39]]],[44,1,1,39,40,[[1054,1,1,39,40]]],[46,1,1,40,41,[[1082,1,1,40,41]]],[48,1,1,41,42,[[1098,1,1,41,42]]],[53,1,1,42,43,[[1120,1,1,42,43]]],[57,3,3,43,46,[[1133,1,1,43,44],[1140,1,1,44,45],[1144,1,1,45,46]]],[61,1,1,46,47,[[1163,1,1,46,47]]],[65,3,3,47,50,[[1167,1,1,47,48],[1171,1,1,48,49],[1180,1,1,49,50]]]],[23766,23804,23839,23874,24024,24428,24525,24594,24657,25136,25445,25569,25777,26110,26157,26202,26221,26225,26351,26446,26451,26454,26582,26803,26832,26848,26924,26985,27008,27046,27159,27166,27178,27255,27429,27547,27549,27609,27747,28175,28898,29243,29717,29965,30101,30239,30634,30703,30789,30933]]],["make",[44,42,[[39,9,7,0,7,[[931,1,1,0,1],[932,1,1,1,2],[933,1,1,2,3],[940,3,2,3,5],[945,1,1,5,6],[951,2,1,6,7]]],[40,4,4,7,11,[[957,2,2,7,9],[959,1,1,9,10],[965,1,1,10,11]]],[41,6,6,11,17,[[975,1,1,11,12],[977,2,2,12,14],[981,1,1,14,15],[983,1,1,15,16],[987,1,1,16,17]]],[42,3,3,17,20,[[998,1,1,17,18],[1002,1,1,18,19],[1010,1,1,19,20]]],[43,1,1,20,21,[[1024,1,1,20,21]]],[44,5,5,21,26,[[1046,1,1,21,22],[1054,2,2,22,24],[1058,1,1,24,25],[1060,1,1,25,26]]],[45,2,2,26,28,[[1067,1,1,26,27],[1071,1,1,27,28]]],[57,2,2,28,30,[[1140,1,1,28,29],[1144,1,1,29,30]]],[58,1,1,30,31,[[1148,1,1,30,31]]],[60,1,1,31,32,[[1156,1,1,31,32]]],[61,1,1,32,33,[[1159,1,1,32,33]]],[65,9,9,33,42,[[1169,2,2,33,35],[1177,1,1,35,36],[1178,1,1,36,37],[1179,2,2,37,39],[1183,1,1,39,40],[1185,1,1,40,41],[1187,1,1,41,42]]]],[23195,23228,23270,23505,23522,23704,23933,24218,24232,24300,24543,25029,25140,25141,25334,25445,25607,26111,26272,26691,27160,27939,28176,28183,28280,28329,28482,28580,30097,30225,30337,30489,30550,30755,30758,30879,30908,30915,30922,30991,31036,31058]]],["makest",[4,4,[[41,2,2,0,2,[[986,2,2,0,2]]],[42,2,2,2,4,[[1004,1,1,2,3],[1006,1,1,3,4]]]],[25565,25566,26434,26514]]],["maketh",[6,6,[[40,1,1,0,1,[[963,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]],[57,1,1,3,4,[[1133,1,1,3,4]]],[65,2,2,4,6,[[1179,1,1,4,5],[1188,1,1,5,6]]]],[24500,26837,29288,29970,30921,31095]]],["making",[6,6,[[42,1,1,0,1,[[1001,1,1,0,1]]],[48,2,2,1,3,[[1097,1,1,1,2],[1098,1,1,2,3]]],[49,1,1,3,4,[[1103,1,1,3,4]]],[51,1,1,4,5,[[1111,1,1,4,5]]],[56,1,1,5,6,[[1132,1,1,5,6]]]],[26228,29222,29244,29365,29562,29942]]],["mean",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27677]]],["observe",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27504]]],["ordained",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24302]]],["out",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24355]]],["perform",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[44,1,1,1,2,[[1049,1,1,1,2]]]],[24965,28043]]],["provide",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25492]]],["purposed",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29262]]],["put",[2,2,[[42,1,1,0,1,[[1012,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[26728,27093]]],["shewed",[4,4,[[41,2,2,0,2,[[973,1,1,0,1],[982,1,1,1,2]]],[43,1,1,2,3,[[1024,1,1,2,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[24944,25400,27152,30306]]],["shewest",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26287]]],["spent",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27580]]],["tarried",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27475]]],["worketh",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31080]]],["working",[2,2,[[57,1,1,0,1,[[1145,1,1,0,1]]],[65,1,1,1,2,[[1182,1,1,1,2]]]],[30262,30968]]],["wrought",[5,5,[[39,1,1,0,1,[[948,1,1,0,1]]],[43,3,3,1,4,[[1032,1,1,1,2],[1036,1,1,2,3],[1038,1,1,3,4]]],[65,1,1,4,5,[[1185,1,1,4,5]]]],[23804,27454,27596,27683,31037]]],["yield",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30331]]]]},{"k":"G4161","v":[["*",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]]],[27950,29239]]],["are",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27950]]],["workmanship",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29239]]]]},{"k":"G4162","v":[["deed",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30291]]]]},{"k":"G4163","v":[["*",[6,6,[[43,1,1,0,1,[[1034,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]],[58,4,4,2,6,[[1146,3,3,2,5],[1149,1,1,5,6]]]],[27551,27975,30288,30289,30291,30348]]],["doer",[3,3,[[58,3,3,0,3,[[1146,2,2,0,2],[1149,1,1,2,3]]]],[30289,30291,30348]]],["doers",[2,2,[[44,1,1,0,1,[[1047,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[27975,30288]]],["poets",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27551]]]]},{"k":"G4164","v":[["*",[10,10,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]],[54,1,1,3,4,[[1127,1,1,3,4]]],[55,1,1,4,5,[[1131,1,1,4,5]]],[57,2,2,5,7,[[1134,1,1,5,6],[1145,1,1,6,7]]],[58,1,1,7,8,[[1146,1,1,7,8]]],[59,2,2,8,10,[[1151,1,1,8,9],[1154,1,1,9,10]]]],[23233,24249,25103,29859,29926,29981,30250,30268,30380,30456]]],["divers",[8,8,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]],[54,1,1,3,4,[[1127,1,1,3,4]]],[55,1,1,4,5,[[1131,1,1,4,5]]],[57,2,2,5,7,[[1134,1,1,5,6],[1145,1,1,6,7]]],[58,1,1,7,8,[[1146,1,1,7,8]]]],[23233,24249,25103,29859,29926,29981,30250,30268]]],["manifold",[2,2,[[59,2,2,0,2,[[1151,1,1,0,1],[1154,1,1,1,2]]]],[30380,30456]]]]},{"k":"G4165","v":[["*",[11,11,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]],[43,1,1,3,4,[[1037,1,1,3,4]]],[45,1,1,4,5,[[1070,1,1,4,5]]],[59,1,1,5,6,[[1155,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]],[65,4,4,7,11,[[1168,1,1,7,8],[1173,1,1,8,9],[1178,1,1,9,10],[1185,1,1,10,11]]]],[23175,25658,26914,27654,28547,30467,30684,30744,30827,30896,31032]]],["Feed",[2,2,[[42,1,1,0,1,[[1017,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[26914,30467]]],["cattle",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25658]]],["feed",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[65,1,1,1,2,[[1173,1,1,1,2]]]],[27654,30827]]],["feedeth",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28547]]],["feeding",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30684]]],["rule",[4,4,[[39,1,1,0,1,[[930,1,1,0,1]]],[65,3,3,1,4,[[1168,1,1,1,2],[1178,1,1,2,3],[1185,1,1,3,4]]]],[23175,30744,30896,31032]]]]},{"k":"G4166","v":[["*",[18,17,[[39,3,3,0,3,[[937,1,1,0,1],[953,1,1,1,2],[954,1,1,2,3]]],[40,2,2,3,5,[[962,1,1,3,4],[970,1,1,4,5]]],[41,4,4,5,9,[[974,4,4,5,9]]],[42,6,5,9,14,[[1006,6,5,9,14]]],[48,1,1,14,15,[[1100,1,1,14,15]]],[57,1,1,15,16,[[1145,1,1,15,16]]],[59,1,1,16,17,[[1152,1,1,16,17]]]],[23415,24040,24085,24441,24781,24981,24988,24991,24993,26483,26492,26493,26495,26497,29283,30261,30424]]],["Shepherd",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30424]]],["pastors",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29283]]],["shepherd",[12,11,[[39,3,3,0,3,[[937,1,1,0,1],[953,1,1,1,2],[954,1,1,2,3]]],[40,2,2,3,5,[[962,1,1,3,4],[970,1,1,4,5]]],[42,6,5,5,10,[[1006,6,5,5,10]]],[57,1,1,10,11,[[1145,1,1,10,11]]]],[23415,24040,24085,24441,24781,26483,26492,26493,26495,26497,30261]]],["shepherds",[4,4,[[41,4,4,0,4,[[974,4,4,0,4]]]],[24981,24988,24991,24993]]]]},{"k":"G4167","v":[["*",[5,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[42,1,1,2,3,[[1006,1,1,2,3]]],[45,2,1,3,4,[[1070,2,1,3,4]]]],[24085,24981,26497,28547]]],["flock",[4,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[45,2,1,2,3,[[1070,2,1,2,3]]]],[24085,24981,28547]]],["fold",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26497]]]]},{"k":"G4168","v":[["flock",[5,5,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,2,2,1,3,[[1037,2,2,1,3]]],[59,2,2,3,5,[[1155,2,2,3,5]]]],[25491,27654,27655,30467,30468]]]]},{"k":"G4169","v":[["*",[34,33,[[39,7,7,0,7,[[947,1,1,0,1],[949,3,3,1,4],[950,1,1,4,5],[952,2,2,5,7]]],[40,5,5,7,12,[[960,1,1,7,8],[967,3,3,8,11],[968,1,1,11,12]]],[41,8,8,12,20,[[977,1,1,12,13],[978,3,3,13,16],[984,1,1,16,17],[992,2,2,17,19],[996,1,1,19,20]]],[42,4,4,20,24,[[1006,1,1,20,21],[1008,1,1,21,22],[1014,1,1,22,23],[1017,1,1,23,24]]],[43,4,3,24,27,[[1021,2,1,24,25],[1024,1,1,25,26],[1040,1,1,26,27]]],[44,1,1,27,28,[[1048,1,1,27,28]]],[45,1,1,28,29,[[1076,1,1,28,29]]],[58,1,1,29,30,[[1149,1,1,29,30]]],[59,2,2,30,32,[[1151,1,1,30,31],[1152,1,1,31,32]]],[65,1,1,32,33,[[1169,1,1,32,33]]]],[23780,23849,23850,23853,23908,23999,24000,24353,24668,24669,24673,24701,25126,25178,25179,25180,25498,25781,25787,26010,26513,26613,26817,26917,27029,27165,27768,28018,28753,30351,30385,30419,30749]]],["Which",[2,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]]],[23780,24701]]],["manner",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30385]]],["things",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26010]]],["what",[28,27,[[39,5,5,0,5,[[949,3,3,0,3],[952,2,2,3,5]]],[40,4,4,5,9,[[960,1,1,5,6],[967,3,3,6,9]]],[41,7,7,9,16,[[977,1,1,9,10],[978,3,3,10,13],[984,1,1,13,14],[992,2,2,14,16]]],[42,3,3,16,19,[[1008,1,1,16,17],[1014,1,1,17,18],[1017,1,1,18,19]]],[43,4,3,19,22,[[1021,2,1,19,20],[1024,1,1,20,21],[1040,1,1,21,22]]],[44,1,1,22,23,[[1048,1,1,22,23]]],[45,1,1,23,24,[[1076,1,1,23,24]]],[58,1,1,24,25,[[1149,1,1,24,25]]],[59,1,1,25,26,[[1152,1,1,25,26]]],[65,1,1,26,27,[[1169,1,1,26,27]]]],[23849,23850,23853,23999,24000,24353,24668,24669,24673,25126,25178,25179,25180,25498,25781,25787,26613,26817,26917,27029,27165,27768,28018,28753,30351,30419,30749]]],["which",[2,2,[[39,1,1,0,1,[[950,1,1,0,1]]],[42,1,1,1,2,[[1006,1,1,1,2]]]],[23908,26513]]]]},{"k":"G4170","v":[["*",[7,6,[[58,1,1,0,1,[[1149,1,1,0,1]]],[65,6,5,1,6,[[1168,1,1,1,2],[1178,2,1,2,3],[1179,1,1,3,4],[1183,1,1,4,5],[1185,1,1,5,6]]]],[30339,30733,30898,30912,30989,31028]]],["fight",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30733]]],["fought",[2,1,[[65,2,1,0,1,[[1178,2,1,0,1]]]],[30898]]],["war",[4,4,[[58,1,1,0,1,[[1149,1,1,0,1]]],[65,3,3,1,4,[[1179,1,1,1,2],[1183,1,1,2,3],[1185,1,1,3,4]]]],[30339,30912,30989,31028]]]]},{"k":"G4171","v":[["*",[18,16,[[39,2,1,0,1,[[952,2,1,0,1]]],[40,2,1,1,2,[[969,2,1,1,2]]],[41,2,2,2,4,[[986,1,1,2,3],[993,1,1,3,4]]],[45,1,1,4,5,[[1075,1,1,4,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]],[58,1,1,6,7,[[1149,1,1,6,7]]],[65,9,9,7,16,[[1175,2,2,7,9],[1177,1,1,9,10],[1178,2,2,10,12],[1179,1,1,12,13],[1182,1,1,13,14],[1185,1,1,14,15],[1186,1,1,15,16]]]],[23963,24724,25584,25835,28686,30206,30338,30847,30849,30879,30898,30908,30915,30968,31036,31046]]],["+",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25584]]],["battle",[5,5,[[45,1,1,0,1,[[1075,1,1,0,1]]],[65,4,4,1,5,[[1175,2,2,1,3],[1182,1,1,3,4],[1186,1,1,4,5]]]],[28686,30847,30849,30968,31046]]],["fight",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30206]]],["war",[5,5,[[65,5,5,0,5,[[1177,1,1,0,1],[1178,2,2,1,3],[1179,1,1,3,4],[1185,1,1,4,5]]]],[30879,30898,30908,30915,31036]]],["wars",[6,4,[[39,2,1,0,1,[[952,2,1,0,1]]],[40,2,1,1,2,[[969,2,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]]],[23963,24724,25835,30338]]]]},{"k":"G4172","v":[["*",[164,155,[[39,27,25,0,25,[[930,1,1,0,1],[932,1,1,1,2],[933,2,2,2,4],[936,2,2,4,6],[937,2,2,6,8],[938,6,5,8,13],[939,2,2,13,15],[940,1,1,15,16],[942,1,1,16,17],[949,3,3,17,20],[950,1,1,20,21],[951,2,1,21,22],[954,1,1,22,23],[955,1,1,23,24],[956,1,1,24,25]]],[40,9,9,25,34,[[957,2,2,25,27],[961,1,1,27,28],[962,3,3,28,31],[967,1,1,31,32],[970,2,2,32,34]]],[41,39,36,34,70,[[973,2,2,34,36],[974,5,4,36,40],[976,4,3,40,43],[977,1,1,43,44],[979,4,3,44,47],[980,5,5,47,52],[981,2,2,52,54],[982,5,5,54,59],[985,1,1,59,60],[986,1,1,60,61],[990,2,2,61,63],[991,3,3,63,66],[994,1,1,66,67],[995,2,2,67,69],[996,1,1,69,70]]],[42,8,8,70,78,[[997,1,1,70,71],[1000,5,5,71,76],[1007,1,1,76,77],[1015,1,1,77,78]]],[43,42,41,78,119,[[1022,1,1,78,79],[1024,1,1,79,80],[1025,4,4,80,84],[1026,1,1,84,85],[1027,1,1,85,86],[1028,1,1,86,87],[1029,1,1,87,88],[1030,2,2,88,90],[1031,6,6,90,96],[1032,2,2,96,98],[1033,7,6,98,104],[1034,2,2,104,106],[1035,1,1,106,107],[1036,2,2,107,109],[1037,1,1,109,110],[1038,4,4,110,114],[1039,1,1,114,115],[1041,1,1,115,116],[1042,1,1,116,117],[1043,1,1,117,118],[1044,1,1,118,119]]],[44,1,1,119,120,[[1061,1,1,119,120]]],[46,2,2,120,122,[[1088,2,2,120,122]]],[55,1,1,122,123,[[1129,1,1,122,123]]],[57,4,4,123,127,[[1143,2,2,123,125],[1144,1,1,125,126],[1145,1,1,126,127]]],[58,1,1,127,128,[[1149,1,1,127,128]]],[60,1,1,128,129,[[1157,1,1,128,129]]],[64,1,1,129,130,[[1166,1,1,129,130]]],[65,28,25,130,155,[[1169,1,1,130,131],[1177,3,3,131,134],[1180,2,2,134,136],[1182,2,1,136,137],[1183,1,1,137,138],[1184,6,5,138,143],[1186,1,1,143,144],[1187,10,9,144,153],[1188,2,2,153,155]]]],[23192,23214,23248,23269,23378,23379,23380,23414,23422,23428,23431,23432,23440,23460,23479,23514,23610,23836,23843,23844,23879,23952,24072,24182,24206,24248,24260,24378,24418,24440,24463,24659,24767,24770,24919,24932,24976,24977,24984,25012,25092,25094,25106,25119,25206,25207,25232,25246,25249,25272,25279,25284,25306,25311,25364,25371,25373,25374,25375,25540,25574,25690,25691,25748,25750,25772,25874,25954,25986,26040,26088,26161,26164,26184,26186,26195,26577,26845,27075,27174,27181,27184,27185,27216,27222,27268,27312,27347,27406,27412,27418,27420,27427,27433,27434,27435,27463,27478,27487,27495,27496,27497,27503,27522,27528,27539,27567,27614,27620,27649,27669,27693,27694,27703,27707,27781,27819,27834,27863,28359,29015,29021,29897,30182,30188,30234,30255,30350,30506,30679,30758,30874,30880,30885,30934,30946,30973,30993,31003,31009,31011,31012,31014,31047,31055,31063,31067,31068,31069,31071,31072,31074,31076,31094,31099]]],["+",[11,11,[[41,4,4,0,4,[[977,1,1,0,1],[979,1,1,1,2],[980,2,2,2,4]]],[43,4,4,4,8,[[1030,1,1,4,5],[1032,1,1,5,6],[1034,1,1,6,7],[1037,1,1,7,8]]],[46,1,1,8,9,[[1088,1,1,8,9]]],[55,1,1,9,10,[[1129,1,1,9,10]]],[60,1,1,10,11,[[1157,1,1,10,11]]]],[25119,25207,25246,25249,27406,27463,27528,27649,29021,29897,30506]]],["cities",[18,18,[[39,5,5,0,5,[[937,1,1,0,1],[938,1,1,1,2],[939,2,2,2,4],[942,1,1,4,5]]],[40,2,2,5,7,[[962,2,2,5,7]]],[41,4,4,7,11,[[976,1,1,7,8],[985,1,1,8,9],[991,2,2,9,11]]],[43,5,5,11,16,[[1022,1,1,11,12],[1025,1,1,12,13],[1031,1,1,13,14],[1033,1,1,14,15],[1043,1,1,15,16]]],[64,1,1,16,17,[[1166,1,1,16,17]]],[65,1,1,17,18,[[1182,1,1,17,18]]]],[23414,23440,23460,23479,23610,24440,24463,25106,25540,25748,25750,27075,27216,27420,27487,27834,30679,30973]]],["city",[135,129,[[39,22,21,0,21,[[930,1,1,0,1],[932,1,1,1,2],[933,2,2,2,4],[936,2,2,4,6],[937,1,1,6,7],[938,5,5,7,12],[940,1,1,12,13],[949,3,3,13,16],[950,1,1,16,17],[951,2,1,17,18],[954,1,1,18,19],[955,1,1,19,20],[956,1,1,20,21]]],[40,7,7,21,28,[[957,2,2,21,23],[961,1,1,23,24],[962,1,1,24,25],[967,1,1,25,26],[970,2,2,26,28]]],[41,31,29,28,57,[[973,2,2,28,30],[974,5,4,30,34],[976,3,2,34,36],[979,3,3,36,39],[980,3,3,39,42],[981,2,2,42,44],[982,5,5,44,49],[986,1,1,49,50],[990,2,2,50,52],[991,1,1,52,53],[994,1,1,53,54],[995,2,2,54,56],[996,1,1,56,57]]],[42,8,8,57,65,[[997,1,1,57,58],[1000,5,5,58,63],[1007,1,1,63,64],[1015,1,1,64,65]]],[43,33,32,65,97,[[1024,1,1,65,66],[1025,3,3,66,69],[1026,1,1,69,70],[1027,1,1,70,71],[1028,1,1,71,72],[1029,1,1,72,73],[1030,1,1,73,74],[1031,5,5,74,79],[1032,1,1,79,80],[1033,6,5,80,85],[1034,1,1,85,86],[1035,1,1,86,87],[1036,2,2,87,89],[1038,4,4,89,93],[1039,1,1,93,94],[1041,1,1,94,95],[1042,1,1,95,96],[1044,1,1,96,97]]],[44,1,1,97,98,[[1061,1,1,97,98]]],[46,1,1,98,99,[[1088,1,1,98,99]]],[57,4,4,99,103,[[1143,2,2,99,101],[1144,1,1,101,102],[1145,1,1,102,103]]],[58,1,1,103,104,[[1149,1,1,103,104]]],[65,27,25,104,129,[[1169,1,1,104,105],[1177,3,3,105,108],[1180,2,2,108,110],[1182,1,1,110,111],[1183,1,1,111,112],[1184,6,5,112,117],[1186,1,1,117,118],[1187,10,9,118,127],[1188,2,2,127,129]]]],[23192,23214,23248,23269,23378,23379,23380,23422,23428,23431,23432,23440,23514,23836,23843,23844,23879,23952,24072,24182,24206,24248,24260,24378,24418,24659,24767,24770,24919,24932,24976,24977,24984,25012,25092,25094,25206,25207,25232,25272,25279,25284,25306,25311,25364,25371,25373,25374,25375,25574,25690,25691,25772,25874,25954,25986,26040,26088,26161,26164,26184,26186,26195,26577,26845,27174,27181,27184,27185,27222,27268,27312,27347,27412,27418,27427,27433,27434,27435,27478,27495,27496,27497,27503,27522,27539,27567,27614,27620,27669,27693,27694,27703,27707,27781,27819,27863,28359,29015,30182,30188,30234,30255,30350,30758,30874,30880,30885,30934,30946,30973,30993,31003,31009,31011,31012,31014,31047,31055,31063,31067,31068,31069,31071,31072,31074,31076,31094,31099]]]]},{"k":"G4173","v":[["city",[2,2,[[43,2,2,0,2,[[1034,2,2,0,2]]]],[27529,27531]]]]},{"k":"G4174","v":[["*",[2,2,[[43,1,1,0,1,[[1039,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]]],[27732,29241]]],["commonwealth",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29241]]],["freedom",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27732]]]]},{"k":"G4175","v":[["conversation",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29441]]]]},{"k":"G4176","v":[["*",[2,2,[[43,1,1,0,1,[[1040,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[27735,29388]]],["be",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29388]]],["lived",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27735]]]]},{"k":"G4177","v":[["*",[3,3,[[41,2,2,0,2,[[987,1,1,0,1],[991,1,1,1,2]]],[43,1,1,2,3,[[1038,1,1,2,3]]]],[25603,25745,27703]]],["citizen",[2,2,[[41,1,1,0,1,[[987,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[25603,27703]]],["citizens",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25745]]]]},{"k":"G4178","v":[["*",[18,16,[[39,2,1,0,1,[[945,2,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[965,1,1,2,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]],[43,1,1,4,5,[[1043,1,1,4,5]]],[44,1,1,5,6,[[1046,1,1,5,6]]],[46,5,4,6,10,[[1085,1,1,6,7],[1088,4,3,7,10]]],[49,1,1,10,11,[[1105,1,1,10,11]]],[54,1,1,11,12,[[1125,1,1,11,12]]],[57,4,4,12,16,[[1138,1,1,12,13],[1141,2,2,13,15],[1142,1,1,15,16]]]],[23715,24368,24560,26787,27834,27943,28954,29012,29015,29016,29439,29825,30051,30130,30131,30144]]],["oft",[5,5,[[39,1,1,0,1,[[945,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]],[54,1,1,3,4,[[1125,1,1,3,4]]],[57,1,1,4,5,[[1138,1,1,4,5]]]],[23715,27834,29012,29825,30051]]],["often",[7,6,[[40,1,1,0,1,[[961,1,1,0,1]]],[46,3,2,1,3,[[1088,3,2,1,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]],[57,2,2,4,6,[[1141,2,2,4,6]]]],[24368,29015,29016,29439,30130,30131]]],["oftentimes",[3,3,[[44,1,1,0,1,[[1046,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[27943,28954,30144]]],["ofttimes",[3,3,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[42,1,1,2,3,[[1014,1,1,2,3]]]],[23715,24560,26787]]]]},{"k":"G4179","v":[["more",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25718]]]]},{"k":"G4180","v":[["speaking",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23289]]]]},{"k":"G4181","v":[["times",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29964]]]]},{"k":"G4182","v":[["manifold",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29261]]]]},{"k":"G4183","v":[["*",[365,331,[[39,52,48,0,48,[[930,1,1,0,1],[931,1,1,1,2],[932,1,1,2,3],[933,1,1,3,4],[934,1,1,4,5],[935,3,2,5,7],[936,5,5,7,12],[937,3,3,12,15],[938,1,1,15,16],[940,1,1,16,17],[941,5,5,17,22],[942,1,1,22,23],[943,2,1,23,24],[944,1,1,24,25],[947,3,3,25,28],[948,3,3,28,31],[950,1,1,31,32],[952,7,5,32,37],[953,3,3,37,40],[954,4,4,40,44],[955,4,4,44,48]]],[40,60,50,48,98,[[957,3,2,48,50],[958,3,2,50,52],[959,4,4,52,56],[960,4,4,56,60],[961,9,8,60,68],[962,10,7,68,75],[963,3,3,75,78],[964,1,1,78,79],[965,4,3,79,82],[966,5,4,82,86],[967,1,1,86,87],[968,5,4,87,91],[969,3,2,91,93],[970,3,3,93,96],[971,2,2,96,98]]],[41,51,45,98,143,[[973,3,3,98,101],[974,3,3,101,104],[975,1,1,104,105],[976,3,3,105,108],[977,3,3,108,111],[978,3,3,111,114],[979,5,3,114,117],[980,4,4,117,121],[981,2,2,121,123],[982,4,4,123,127],[984,7,4,127,131],[985,1,1,131,132],[986,2,2,132,134],[987,1,1,134,135],[988,2,1,135,136],[989,1,1,136,137],[990,1,1,137,138],[993,2,2,138,140],[994,1,1,140,141],[995,2,2,141,143]]],[42,38,38,143,181,[[998,2,2,143,145],[999,1,1,145,146],[1000,2,2,146,148],[1001,2,2,148,150],[1002,5,5,150,155],[1003,3,3,155,158],[1004,2,2,158,160],[1006,4,4,160,164],[1007,4,4,164,168],[1008,5,5,168,173],[1010,2,2,173,175],[1011,2,2,175,177],[1012,1,1,177,178],[1015,1,1,178,179],[1016,1,1,179,180],[1017,1,1,180,181]]],[43,49,48,181,229,[[1018,2,2,181,183],[1019,1,1,183,184],[1021,1,1,184,185],[1022,1,1,185,186],[1023,1,1,186,187],[1025,3,2,187,189],[1026,2,2,189,191],[1027,2,2,191,193],[1028,1,1,193,194],[1030,1,1,194,195],[1031,2,2,195,197],[1032,3,3,197,200],[1033,3,3,200,203],[1034,2,2,203,205],[1035,3,3,205,208],[1036,1,1,208,209],[1037,2,2,209,211],[1038,1,1,211,212],[1039,1,1,212,213],[1040,1,1,213,214],[1041,3,3,214,217],[1042,2,2,217,219],[1043,4,4,219,223],[1044,3,3,223,226],[1045,3,3,226,229]]],[44,21,18,229,247,[[1048,1,1,229,230],[1049,2,2,230,232],[1050,9,6,232,238],[1053,1,1,238,239],[1054,1,1,239,240],[1057,2,2,240,242],[1060,2,2,242,244],[1061,3,3,244,247]]],[45,18,14,247,261,[[1062,3,1,247,248],[1063,1,1,248,249],[1065,1,1,249,250],[1069,2,1,250,251],[1071,2,2,251,253],[1072,1,1,253,254],[1073,5,4,254,258],[1077,3,3,258,261]]],[46,21,16,261,277,[[1078,2,1,261,262],[1079,3,2,262,264],[1080,3,3,264,267],[1083,2,2,267,269],[1084,2,1,269,270],[1085,6,4,270,274],[1086,1,1,274,275],[1088,1,1,275,276],[1089,1,1,276,277]]],[47,3,3,277,280,[[1091,1,1,277,278],[1093,1,1,278,279],[1094,1,1,279,280]]],[48,1,1,280,281,[[1098,1,1,280,281]]],[49,3,3,281,284,[[1103,1,1,281,282],[1104,1,1,282,283],[1105,1,1,283,284]]],[50,1,1,284,285,[[1110,1,1,284,285]]],[51,4,4,285,289,[[1111,2,2,285,287],[1112,2,2,287,289]]],[53,5,5,289,294,[[1121,2,2,289,291],[1124,3,3,291,294]]],[54,2,2,294,296,[[1126,1,1,294,295],[1128,1,1,295,296]]],[55,2,2,296,298,[[1129,1,1,296,297],[1130,1,1,297,298]]],[56,2,2,298,300,[[1132,2,2,298,300]]],[57,7,7,300,307,[[1134,1,1,300,301],[1137,1,1,301,302],[1141,1,1,302,303],[1142,1,1,303,304],[1144,3,3,304,307]]],[58,3,3,307,310,[[1148,2,2,307,309],[1150,1,1,309,310]]],[59,2,2,310,312,[[1151,2,2,310,312]]],[60,1,1,312,313,[[1157,1,1,312,313]]],[61,2,2,313,315,[[1160,1,1,313,314],[1162,1,1,314,315]]],[62,2,2,315,317,[[1164,2,2,315,317]]],[63,1,1,317,318,[[1165,1,1,317,318]]],[65,14,13,318,331,[[1167,1,1,318,319],[1171,2,2,319,321],[1173,1,1,321,322],[1174,2,2,322,324],[1175,1,1,324,325],[1176,1,1,325,326],[1180,1,1,326,327],[1183,1,1,327,328],[1185,4,3,328,331]]]],[23187,23199,23234,23246,23312,23329,23338,23346,23356,23361,23363,23375,23389,23393,23416,23448,23504,23541,23542,23544,23556,23597,23611,23663,23693,23764,23784,23792,23808,23820,23821,23886,23962,23967,23968,23969,23987,24027,24029,24031,24063,24082,24101,24114,24148,24181,24182,24184,24249,24260,24262,24275,24295,24296,24298,24300,24324,24325,24328,24356,24373,24374,24385,24387,24388,24390,24402,24407,24409,24420,24427,24438,24440,24441,24442,24467,24471,24476,24531,24550,24552,24564,24610,24619,24633,24636,24648,24678,24700,24710,24714,24723,24743,24778,24797,24810,24829,24867,24894,24907,24909,25007,25008,25009,25043,25088,25090,25104,25113,25122,25136,25163,25169,25181,25206,25216,25242,25248,25249,25274,25275,25323,25338,25365,25387,25403,25404,25466,25478,25506,25507,25542,25569,25578,25601,25630,25676,25727,25834,25853,25929,25943,25962,26107,26118,26143,26195,26197,26213,26216,26259,26262,26267,26317,26323,26340,26359,26368,26407,26411,26501,26513,26522,26523,26542,26568,26570,26578,26589,26591,26592,26604,26622,26670,26698,26704,26707,26738,26845,26897,26923,26926,26928,26992,27026,27071,27108,27183,27201,27229,27258,27261,27286,27328,27405,27415,27436,27449,27474,27477,27499,27501,27506,27527,27535,27565,27567,27584,27603,27628,27645,27704,27732,27744,27771,27776,27779,27803,27819,27832,27833,27847,27852,27865,27869,27876,27905,27909,27928,27993,28039,28040,28056,28057,28062,28063,28064,28066,28145,28177,28249,28250,28325,28326,28338,28342,28348,28389,28397,28448,28532,28584,28600,28630,28646,28648,28654,28656,28785,28788,28795,28811,28828,28841,28850,28852,28853,28902,28908,28920,28934,28936,28947,28954,28968,29007,29043,29071,29118,29158,29233,29384,29403,29439,29555,29565,29566,29572,29587,29739,29744,29797,29798,29800,29829,29884,29902,29911,29945,29946,29987,30041,30133,30165,30221,30227,30237,30320,30321,30370,30377,30381,30502,30568,30604,30652,30657,30671,30712,30783,30790,30819,30830,30838,30849,30872,30928,30976,31018,31023,31029]]],["+",[12,11,[[40,2,1,0,1,[[962,2,1,0,1]]],[41,3,3,1,4,[[974,1,1,1,2],[980,1,1,2,3],[986,1,1,3,4]]],[43,3,3,4,7,[[1034,1,1,4,5],[1043,1,1,5,6],[1045,1,1,6,7]]],[44,1,1,7,8,[[1061,1,1,7,8]]],[46,1,1,8,9,[[1083,1,1,8,9]]],[49,1,1,9,10,[[1103,1,1,9,10]]],[57,1,1,10,11,[[1137,1,1,10,11]]]],[24442,25009,25274,25578,27535,27852,27905,28342,28908,29384,30041]]],["Great",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28920]]],["Many",[4,4,[[39,1,1,0,1,[[935,1,1,0,1]]],[42,3,3,1,4,[[1002,1,1,1,2],[1003,1,1,2,3],[1006,1,1,3,4]]]],[23338,26317,26368,26513]]],["Much",[3,3,[[42,1,1,0,1,[[1008,1,1,0,1]]],[44,2,2,1,3,[[1048,1,1,1,2],[1050,1,1,2,3]]]],[26589,27993,28056]]],["abundant",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30377]]],["common",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24710]]],["great",[56,56,[[39,14,14,0,14,[[930,1,1,0,1],[932,1,1,1,2],[933,1,1,2,3],[936,2,2,3,5],[940,1,1,5,6],[941,1,1,6,7],[942,1,1,7,8],[943,1,1,8,9],[947,2,2,9,11],[948,1,1,11,12],[952,1,1,12,13],[954,1,1,13,14]]],[40,7,7,14,21,[[959,2,2,14,16],[960,1,1,16,17],[965,1,1,17,18],[966,1,1,18,19],[969,1,1,19,20],[970,1,1,20,21]]],[41,9,9,21,30,[[977,3,3,21,24],[978,3,3,24,27],[982,1,1,27,28],[993,1,1,28,29],[995,1,1,29,30]]],[42,3,3,30,33,[[1001,1,1,30,31],[1002,2,2,31,33]]],[43,11,11,33,44,[[1023,1,1,33,34],[1028,1,1,34,35],[1031,1,1,35,36],[1034,1,1,36,37],[1038,1,1,37,38],[1039,1,1,38,39],[1040,1,1,39,40],[1041,2,2,40,42],[1042,1,1,42,43],[1045,1,1,43,44]]],[46,4,4,44,48,[[1080,1,1,44,45],[1084,1,1,45,46],[1085,2,2,46,48]]],[48,1,1,48,49,[[1098,1,1,48,49]]],[50,1,1,49,50,[[1110,1,1,49,50]]],[51,1,1,50,51,[[1112,1,1,50,51]]],[53,1,1,51,52,[[1121,1,1,51,52]]],[56,1,1,52,53,[[1132,1,1,52,53]]],[57,1,1,53,54,[[1142,1,1,53,54]]],[65,2,2,54,56,[[1173,1,1,54,55],[1185,1,1,55,56]]]],[23187,23234,23246,23346,23363,23504,23541,23611,23663,23764,23784,23821,23987,24101,24295,24296,24324,24552,24610,24743,24797,25113,25122,25136,25163,25169,25181,25365,25853,25962,26213,26259,26262,27108,27328,27415,27527,27704,27732,27744,27771,27776,27819,27928,28853,28920,28934,28954,29233,29555,29587,29744,29945,30165,30819,31023]]],["greatly",[4,4,[[40,3,3,0,3,[[961,2,2,0,2],[968,1,1,2,3]]],[45,1,1,3,4,[[1077,1,1,3,4]]]],[24387,24402,24700,28788]]],["long",[4,4,[[39,1,1,0,1,[[953,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[43,2,2,2,4,[[1044,2,2,2,4]]]],[24027,26216,27869,27876]]],["many",[180,165,[[39,26,24,0,24,[[931,1,1,0,1],[935,2,2,1,3],[936,3,3,3,6],[937,1,1,6,7],[938,1,1,7,8],[941,2,2,8,10],[943,1,1,10,11],[947,1,1,11,12],[948,2,2,12,14],[950,1,1,14,15],[952,6,4,15,19],[954,2,2,19,21],[955,3,3,21,24]]],[40,29,25,24,49,[[957,2,1,24,25],[958,3,2,25,27],[959,1,1,27,28],[960,1,1,28,29],[961,2,2,29,31],[962,5,4,31,35],[963,3,3,35,38],[965,1,1,38,39],[966,3,3,39,42],[967,1,1,42,43],[968,2,2,43,45],[969,2,1,45,46],[970,2,2,46,48],[971,1,1,48,49]]],[41,23,22,49,71,[[973,3,3,49,52],[974,2,2,52,54],[975,1,1,54,55],[976,3,3,55,58],[979,3,2,58,60],[980,2,2,60,62],[982,1,1,62,63],[984,3,3,63,66],[985,1,1,66,67],[986,1,1,67,68],[987,1,1,68,69],[993,1,1,69,70],[994,1,1,70,71]]],[42,20,20,71,91,[[998,2,2,71,73],[1000,2,2,73,75],[1002,1,1,75,76],[1003,1,1,76,77],[1004,1,1,77,78],[1006,3,3,78,81],[1007,4,4,81,85],[1008,2,2,85,87],[1010,1,1,87,88],[1015,1,1,88,89],[1016,1,1,89,90],[1017,1,1,90,91]]],[43,23,22,91,113,[[1018,2,2,91,93],[1019,1,1,93,94],[1021,1,1,94,95],[1022,1,1,95,96],[1025,3,2,96,98],[1026,2,2,98,100],[1027,1,1,100,101],[1030,1,1,101,102],[1032,2,2,102,104],[1033,2,2,104,106],[1035,1,1,106,107],[1036,1,1,107,108],[1037,1,1,108,109],[1041,1,1,109,110],[1042,1,1,110,111],[1043,1,1,111,112],[1045,1,1,112,113]]],[44,12,10,113,123,[[1049,2,2,113,115],[1050,5,3,115,118],[1053,1,1,118,119],[1057,2,2,119,121],[1060,1,1,121,122],[1061,1,1,122,123]]],[45,14,10,123,133,[[1062,3,1,123,124],[1065,1,1,124,125],[1069,2,1,125,126],[1071,2,2,126,128],[1072,1,1,128,129],[1073,4,3,129,132],[1077,1,1,132,133]]],[46,7,6,133,139,[[1078,2,1,133,134],[1079,2,2,134,136],[1086,1,1,136,137],[1088,1,1,137,138],[1089,1,1,138,139]]],[47,3,3,139,142,[[1091,1,1,139,140],[1093,1,1,140,141],[1094,1,1,141,142]]],[49,1,1,142,143,[[1105,1,1,142,143]]],[53,3,3,143,146,[[1124,3,3,143,146]]],[54,1,1,146,147,[[1126,1,1,146,147]]],[55,1,1,147,148,[[1129,1,1,147,148]]],[57,3,3,148,151,[[1134,1,1,148,149],[1141,1,1,149,150],[1144,1,1,150,151]]],[58,1,1,151,152,[[1148,1,1,151,152]]],[60,1,1,152,153,[[1157,1,1,152,153]]],[61,2,2,153,155,[[1160,1,1,153,154],[1162,1,1,154,155]]],[62,1,1,155,156,[[1164,1,1,155,156]]],[65,9,9,156,165,[[1167,1,1,156,157],[1171,1,1,157,158],[1174,1,1,158,159],[1175,1,1,159,160],[1176,1,1,160,161],[1180,1,1,161,162],[1183,1,1,162,163],[1185,2,2,163,165]]]],[23199,23329,23338,23356,23361,23375,23389,23448,23556,23597,23663,23792,23808,23820,23886,23962,23967,23968,23969,24082,24114,24181,24182,24184,24249,24262,24275,24298,24356,24373,24390,24409,24420,24438,24440,24467,24471,24476,24564,24619,24633,24636,24648,24678,24714,24723,24778,24810,24867,24894,24907,24909,25007,25008,25043,25088,25090,25104,25216,25242,25248,25275,25387,25466,25478,25506,25542,25569,25601,25834,25929,26107,26118,26195,26197,26323,26359,26411,26501,26522,26523,26542,26568,26570,26578,26591,26622,26670,26845,26897,26923,26926,26928,26992,27026,27071,27183,27201,27229,27258,27286,27405,27474,27477,27501,27506,27565,27603,27645,27779,27803,27833,27909,28039,28040,28062,28063,28066,28145,28249,28250,28326,28338,28389,28448,28532,28584,28600,28630,28646,28648,28654,28785,28811,28828,28841,28968,29007,29043,29071,29118,29158,29439,29797,29798,29800,29829,29902,29987,30133,30227,30320,30502,30568,30604,30652,30712,30790,30838,30849,30872,30928,30976,31023,31029]]],["more",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24636]]],["much",[70,67,[[39,3,3,0,3,[[934,1,1,0,1],[941,1,1,1,2],[954,1,1,2,3]]],[40,7,7,3,10,[[957,1,1,3,4],[960,1,1,4,5],[961,3,3,5,8],[962,1,1,8,9],[968,1,1,9,10]]],[41,12,9,10,19,[[979,2,2,10,12],[980,1,1,12,13],[981,1,1,13,14],[982,1,1,14,15],[984,4,2,15,17],[988,2,1,17,18],[990,1,1,18,19]]],[42,8,8,19,27,[[999,1,1,19,20],[1002,1,1,20,21],[1003,1,1,21,22],[1008,2,2,22,24],[1010,1,1,24,25],[1011,2,2,25,27]]],[43,9,9,27,36,[[1027,1,1,27,28],[1031,1,1,28,29],[1032,1,1,29,30],[1033,1,1,30,31],[1035,2,2,31,33],[1037,1,1,33,34],[1043,1,1,34,35],[1044,1,1,35,36]]],[44,6,6,36,42,[[1050,3,3,36,39],[1054,1,1,39,40],[1060,1,1,40,41],[1061,1,1,41,42]]],[45,3,3,42,45,[[1063,1,1,42,43],[1073,1,1,43,44],[1077,1,1,44,45]]],[46,7,7,45,52,[[1079,1,1,45,46],[1080,2,2,46,48],[1083,1,1,48,49],[1085,3,3,49,52]]],[49,1,1,52,53,[[1104,1,1,52,53]]],[51,3,3,53,56,[[1111,2,2,53,55],[1112,1,1,55,56]]],[53,1,1,56,57,[[1121,1,1,56,57]]],[54,1,1,57,58,[[1128,1,1,57,58]]],[55,1,1,58,59,[[1130,1,1,58,59]]],[56,1,1,59,60,[[1132,1,1,59,60]]],[57,2,2,60,62,[[1144,2,2,60,62]]],[58,1,1,62,63,[[1150,1,1,62,63]]],[59,1,1,63,64,[[1151,1,1,63,64]]],[65,3,3,64,67,[[1171,1,1,64,65],[1174,1,1,65,66],[1185,1,1,66,67]]]],[23312,23544,24063,24260,24328,24374,24385,24388,24441,24714,25206,25242,25249,25338,25403,25478,25507,25630,25727,26143,26267,26340,26592,26604,26698,26704,26707,27261,27436,27449,27499,27567,27584,27628,27847,27865,28057,28062,28064,28177,28325,28348,28397,28656,28795,28828,28850,28852,28902,28936,28947,28954,29403,29565,29566,29572,29739,29884,29911,29946,30221,30237,30370,30381,30783,30830,31018]]],["oft",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23393]]],["plenteous",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23416]]],["sore",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24564]]],["straitly",[2,2,[[40,2,2,0,2,[[959,1,1,0,1],[961,1,1,1,2]]]],[24300,24407]]],["things",[23,23,[[39,5,5,0,5,[[941,1,1,0,1],[944,1,1,1,2],[953,2,2,2,4],[955,1,1,4,5]]],[40,7,7,5,12,[[960,1,1,5,6],[961,1,1,6,7],[962,2,2,7,9],[964,1,1,9,10],[965,1,1,10,11],[971,1,1,11,12]]],[41,4,4,12,16,[[981,1,1,12,13],[982,1,1,13,14],[989,1,1,14,15],[995,1,1,15,16]]],[42,2,2,16,18,[[1004,1,1,16,17],[1012,1,1,17,18]]],[43,1,1,18,19,[[1043,1,1,18,19]]],[46,1,1,19,20,[[1085,1,1,19,20]]],[58,1,1,20,21,[[1148,1,1,20,21]]],[62,1,1,21,22,[[1164,1,1,21,22]]],[63,1,1,22,23,[[1165,1,1,22,23]]]],[23542,23693,24029,24031,24148,24325,24390,24427,24441,24531,24550,24829,25323,25404,25676,25943,26407,26738,27832,28954,30321,30657,30671]]]]},{"k":"G4184","v":[["pitiful",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30365]]]]},{"k":"G4185","v":[["*",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[53,1,1,1,2,[[1120,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[24757,29725,30428]]],["costly",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29725]]],["precious",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24757]]],["price",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30428]]]]},{"k":"G4186","v":[["*",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]]],[23585,26583]]],["costly",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26583]]],["price",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23585]]]]},{"k":"G4187","v":[["manners",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29964]]]]},{"k":"G4188","v":[["*",[2,2,[[45,1,1,0,1,[[1071,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[28571,30115]]],["drink",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28571]]],["drinks",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30115]]]]},{"k":"G4189","v":[["*",[7,7,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[43,1,1,3,4,[[1020,1,1,3,4]]],[44,1,1,4,5,[[1046,1,1,4,5]]],[45,1,1,5,6,[[1066,1,1,5,6]]],[48,1,1,6,7,[[1102,1,1,6,7]]]],[23890,24485,25444,27022,27959,28462,29349]]],["iniquities",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27022]]],["wickedness",[6,6,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[44,1,1,3,4,[[1046,1,1,3,4]]],[45,1,1,4,5,[[1066,1,1,4,5]]],[48,1,1,5,6,[[1102,1,1,5,6]]]],[23890,24485,25444,27959,28462,29349]]]]},{"k":"G4190","v":[["*",[76,71,[[39,25,23,0,23,[[933,4,4,0,4],[934,2,2,4,6],[935,3,3,6,9],[937,1,1,9,10],[940,6,4,10,14],[941,3,3,14,17],[943,1,1,17,18],[944,1,1,18,19],[946,1,1,19,20],[948,1,1,20,21],[950,1,1,21,22],[953,1,1,22,23]]],[40,2,2,23,25,[[963,2,2,23,25]]],[41,13,11,25,36,[[975,1,1,25,26],[978,5,3,26,29],[979,1,1,29,30],[980,1,1,30,31],[983,4,4,31,35],[991,1,1,35,36]]],[42,3,3,36,39,[[999,1,1,36,37],[1003,1,1,37,38],[1013,1,1,38,39]]],[43,7,7,39,46,[[1034,1,1,39,40],[1035,1,1,40,41],[1036,4,4,41,45],[1045,1,1,45,46]]],[44,1,1,46,47,[[1057,1,1,46,47]]],[45,1,1,47,48,[[1066,1,1,47,48]]],[47,1,1,48,49,[[1091,1,1,48,49]]],[48,3,3,49,52,[[1101,1,1,49,50],[1102,2,2,50,52]]],[50,1,1,52,53,[[1107,1,1,52,53]]],[51,1,1,53,54,[[1115,1,1,53,54]]],[52,2,2,54,56,[[1118,2,2,54,56]]],[53,1,1,56,57,[[1124,1,1,56,57]]],[54,2,2,57,59,[[1127,1,1,57,58],[1128,1,1,58,59]]],[57,2,2,59,61,[[1135,1,1,59,60],[1142,1,1,60,61]]],[58,2,2,61,63,[[1147,1,1,61,62],[1149,1,1,62,63]]],[61,6,5,63,68,[[1160,2,2,63,65],[1161,2,1,65,66],[1163,2,2,66,68]]],[62,1,1,68,69,[[1164,1,1,68,69]]],[63,1,1,69,70,[[1165,1,1,69,70]]],[65,1,1,70,71,[[1182,1,1,70,71]]]],[23245,23271,23273,23279,23295,23305,23327,23333,23334,23383,23523,23524,23528,23534,23558,23577,23588,23652,23676,23759,23807,23882,24034,24485,24486,25044,25168,25181,25191,25216,25247,25409,25418,25434,25439,25753,26139,26335,26774,27528,27571,27597,27598,27600,27601,27920,28254,28467,29061,29320,29350,29353,29486,29643,29680,29681,29792,29866,29888,30007,30155,30297,30353,30563,30564,30591,30642,30643,30656,30668,30956]]],["+",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23245]]],["bad",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23882]]],["evil",[49,46,[[39,15,14,0,14,[[933,3,3,0,3],[934,2,2,3,5],[935,3,3,5,8],[937,1,1,8,9],[940,4,3,9,12],[943,1,1,12,13],[948,1,1,13,14]]],[40,1,1,14,15,[[963,1,1,14,15]]],[41,11,9,15,24,[[978,5,3,15,18],[979,1,1,18,19],[980,1,1,19,20],[983,4,4,20,24]]],[42,3,3,24,27,[[999,1,1,24,25],[1003,1,1,25,26],[1013,1,1,26,27]]],[43,4,4,27,31,[[1036,4,4,27,31]]],[44,1,1,31,32,[[1057,1,1,31,32]]],[47,1,1,32,33,[[1091,1,1,32,33]]],[48,2,2,33,35,[[1101,1,1,33,34],[1102,1,1,34,35]]],[51,1,1,35,36,[[1115,1,1,35,36]]],[52,1,1,36,37,[[1118,1,1,36,37]]],[53,1,1,37,38,[[1124,1,1,37,38]]],[54,2,2,38,40,[[1127,1,1,38,39],[1128,1,1,39,40]]],[57,2,2,40,42,[[1135,1,1,40,41],[1142,1,1,41,42]]],[58,2,2,42,44,[[1147,1,1,42,43],[1149,1,1,43,44]]],[61,1,1,44,45,[[1161,1,1,44,45]]],[62,1,1,45,46,[[1164,1,1,45,46]]]],[23271,23273,23279,23295,23305,23327,23333,23334,23383,23523,23524,23528,23652,23807,24485,25168,25181,25191,25216,25247,25409,25418,25434,25439,26139,26335,26774,27597,27598,27600,27601,28254,29061,29320,29350,29643,29681,29792,29866,29888,30007,30155,30297,30353,30591,30656]]],["evils",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25044]]],["grievous",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30956]]],["harm",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27920]]],["lewd",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27528]]],["malicious",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30668]]],["one",[4,4,[[61,4,4,0,4,[[1160,2,2,0,2],[1161,1,1,2,3],[1163,1,1,3,4]]]],[30563,30564,30591,30642]]],["person",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28467]]],["things",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[23524,24486]]],["wicked",[12,12,[[39,7,7,0,7,[[940,1,1,0,1],[941,3,3,1,4],[944,1,1,4,5],[946,1,1,5,6],[953,1,1,6,7]]],[41,1,1,7,8,[[991,1,1,7,8]]],[43,1,1,8,9,[[1035,1,1,8,9]]],[48,1,1,9,10,[[1102,1,1,9,10]]],[50,1,1,10,11,[[1107,1,1,10,11]]],[52,1,1,11,12,[[1118,1,1,11,12]]]],[23534,23558,23577,23588,23676,23759,24034,25753,27571,29353,29486,29680]]],["wickedness",[1,1,[[61,1,1,0,1,[[1163,1,1,0,1]]]],[30643]]]]},{"k":"G4191","v":[["wicked",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23534,25431]]]]},{"k":"G4192","v":[["*",[3,3,[[65,3,3,0,3,[[1182,2,2,0,2],[1187,1,1,2,3]]]],[30964,30965,31057]]],["pain",[2,2,[[65,2,2,0,2,[[1182,1,1,0,1],[1187,1,1,1,2]]]],[30964,31057]]],["pains",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30965]]]]},{"k":"G4193","v":[["Pontus",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27559]]]]},{"k":"G4194","v":[["Pontius",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[43,1,1,2,3,[[1021,1,1,2,3]]],[53,1,1,3,4,[[1124,1,1,3,4]]]],[24131,25026,27049,29801]]]]},{"k":"G4195","v":[["Pontus",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[26958,30375]]]]},{"k":"G4196","v":[["Publius",[2,2,[[43,2,2,0,2,[[1045,2,2,0,2]]]],[27906,27907]]]]},{"k":"G4197","v":[["*",[2,2,[[41,1,1,0,1,[[985,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[25540,30277]]],["+",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25540]]],["ways",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30277]]]]},{"k":"G4198","v":[["*",[154,147,[[39,30,29,0,29,[[930,3,3,0,3],[936,2,1,3,4],[937,1,1,4,5],[938,2,2,5,7],[939,2,2,7,9],[940,2,2,9,11],[945,1,1,11,12],[946,1,1,12,13],[947,1,1,13,14],[949,2,2,14,16],[950,2,2,16,18],[952,1,1,18,19],[953,3,3,19,22],[954,1,1,22,23],[955,1,1,23,24],[956,5,5,24,29]]],[40,3,3,29,32,[[972,3,3,29,32]]],[41,50,47,32,79,[[973,2,2,32,34],[974,2,2,34,36],[976,3,2,36,38],[977,1,1,38,39],[979,6,5,39,44],[980,2,2,44,46],[981,6,6,46,52],[982,2,2,52,54],[983,2,2,54,56],[985,3,3,56,59],[986,3,3,59,62],[987,3,3,62,65],[988,1,1,65,66],[989,3,3,66,69],[991,3,3,69,72],[993,1,1,72,73],[994,4,4,73,77],[996,3,2,77,79]]],[42,16,14,79,93,[[1000,2,1,79,80],[1003,3,2,80,82],[1004,2,2,82,84],[1006,1,1,84,85],[1007,1,1,85,86],[1010,4,4,86,90],[1012,2,2,90,92],[1016,1,1,92,93]]],[43,38,38,93,131,[[1018,3,3,93,96],[1022,2,2,96,98],[1025,4,4,98,102],[1026,4,4,102,106],[1027,1,1,106,107],[1029,1,1,107,108],[1031,1,1,108,109],[1033,3,3,109,112],[1034,1,1,112,113],[1035,1,1,113,114],[1036,1,1,114,115],[1037,2,2,115,117],[1038,1,1,117,118],[1039,4,4,118,122],[1040,2,2,122,124],[1041,1,1,124,125],[1042,2,2,125,127],[1043,2,2,127,129],[1044,1,1,129,130],[1045,1,1,130,131]]],[44,2,2,131,133,[[1060,2,2,131,133]]],[45,4,3,133,136,[[1071,1,1,133,134],[1077,3,2,134,136]]],[53,1,1,136,137,[[1119,1,1,136,137]]],[54,1,1,137,138,[[1128,1,1,137,138]]],[58,1,1,138,139,[[1149,1,1,138,139]]],[59,3,3,139,142,[[1153,2,2,139,141],[1154,1,1,141,142]]],[60,2,2,142,144,[[1157,1,1,142,143],[1158,1,1,143,144]]],[64,3,3,144,147,[[1166,3,3,144,147]]]],[23177,23178,23189,23354,23392,23423,23424,23463,23466,23490,23534,23727,23739,23777,23828,23832,23881,23887,23958,24017,24024,24049,24068,24195,24202,24204,24206,24211,24214,24883,24885,24888,24899,24932,24976,25014,25093,25105,25131,25201,25203,25206,25217,25245,25259,25293,25314,25352,25353,25354,25357,25358,25400,25401,25410,25431,25549,25550,25551,25563,25572,25584,25592,25603,25606,25650,25662,25665,25670,25743,25759,25767,25834,25872,25886,25897,25903,26004,26019,26206,26363,26381,26382,26392,26485,26534,26670,26671,26680,26696,26733,26754,26884,26933,26934,26948,27079,27100,27202,27203,27212,27215,27219,27227,27231,27247,27279,27354,27430,27490,27499,27519,27537,27563,27606,27627,27648,27669,27709,27710,27714,27725,27757,27766,27794,27808,27816,27835,27836,27858,27925,28327,28328,28594,28780,28782,29699,29880,30350,30443,30446,30449,30510,30525,30683,30688,30690]]],["+",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]]],[26004,27079,28780]]],["Depart",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[43,1,1,1,2,[[1039,1,1,1,2]]]],[24049,27725]]],["Go",[13,13,[[39,6,6,0,6,[[930,1,1,0,1],[936,1,1,1,2],[939,1,1,2,3],[949,1,1,3,4],[950,1,1,4,5],[956,1,1,5,6]]],[40,1,1,6,7,[[972,1,1,6,7]]],[41,5,5,7,12,[[979,1,1,7,8],[982,1,1,8,9],[985,1,1,9,10],[989,1,1,10,11],[994,1,1,11,12]]],[43,1,1,12,13,[[1045,1,1,12,13]]]],[23177,23354,23463,23828,23881,24214,24888,25203,25400,25550,25665,25872,27925]]],["away",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24211]]],["depart",[3,3,[[41,2,2,0,2,[[976,1,1,0,1],[985,1,1,1,2]]],[42,1,1,2,3,[[1012,1,1,2,3]]]],[25105,25549,26733]]],["departed",[6,6,[[39,4,4,0,4,[[930,1,1,0,1],[939,1,1,1,2],[947,1,1,2,3],[952,1,1,3,4]]],[43,1,1,4,5,[[1022,1,1,4,5]]],[54,1,1,5,6,[[1128,1,1,5,6]]]],[23178,23466,23777,23958,27100,29880]]],["forth",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25259]]],["go",[53,52,[[39,7,7,0,7,[[930,1,1,0,1],[937,1,1,1,2],[938,2,2,2,4],[945,1,1,4,5],[953,1,1,5,6],[956,1,1,6,7]]],[41,13,13,7,20,[[977,1,1,7,8],[979,1,1,8,9],[980,1,1,9,10],[981,3,3,10,13],[983,1,1,13,14],[986,2,2,14,16],[987,2,2,16,18],[993,1,1,18,19],[994,1,1,19,20]]],[42,10,9,20,29,[[1003,2,1,20,21],[1004,1,1,21,22],[1007,1,1,22,23],[1010,4,4,23,27],[1012,1,1,27,28],[1016,1,1,28,29]]],[43,18,18,29,47,[[1018,2,2,29,31],[1025,1,1,31,32],[1026,1,1,32,33],[1027,1,1,33,34],[1033,2,2,34,36],[1034,1,1,36,37],[1035,1,1,37,38],[1036,1,1,38,39],[1037,2,2,39,41],[1039,1,1,41,42],[1040,2,2,42,44],[1042,2,2,44,46],[1044,1,1,46,47]]],[44,1,1,47,48,[[1060,1,1,47,48]]],[45,3,3,48,51,[[1071,1,1,48,49],[1077,2,2,49,51]]],[58,1,1,51,52,[[1149,1,1,51,52]]]],[23189,23392,23423,23424,23727,24017,24202,25131,25245,25293,25314,25352,25354,25410,25563,25572,25592,25606,25834,25897,26363,26392,26534,26670,26671,26680,26696,26754,26884,26934,26948,27202,27227,27279,27490,27519,27537,27563,27606,27627,27648,27714,27757,27766,27808,27816,27858,28328,28594,28780,28782,30350]]],["goeth",[7,7,[[39,3,3,0,3,[[936,1,1,0,1],[940,1,1,1,2],[946,1,1,2,3]]],[41,3,3,3,6,[[979,1,1,3,4],[983,1,1,4,5],[994,1,1,5,6]]],[42,1,1,6,7,[[1006,1,1,6,7]]]],[23354,23534,23739,25203,25431,25886,26485]]],["going",[2,2,[[39,1,1,0,1,[[956,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]]],[24206,25584]]],["gone",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[26019,30446,30683]]],["journey",[2,2,[[43,1,1,0,1,[[1039,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]]],[27710,28327]]],["journeyed",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1043,1,1,1,2]]]],[27219,27836]]],["up",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26933]]],["walk",[4,4,[[41,1,1,0,1,[[985,1,1,0,1]]],[43,1,1,1,2,[[1031,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[25551,27430,30510,30690]]],["walked",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30449]]],["walking",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]],[60,1,1,2,3,[[1158,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[24899,27247,30525,30688]]],["way",[8,7,[[41,3,3,0,3,[[976,1,1,0,1],[979,1,1,1,2],[989,1,1,2,3]]],[42,2,1,3,4,[[1000,2,1,3,4]]],[43,3,3,4,7,[[1026,1,1,4,5],[1038,1,1,5,6],[1041,1,1,6,7]]]],[25093,25217,25670,26206,27231,27669,27794]]],["went",[38,38,[[39,7,7,0,7,[[940,1,1,0,1],[949,1,1,1,2],[950,1,1,2,3],[953,1,1,3,4],[954,1,1,4,5],[955,1,1,5,6],[956,1,1,6,7]]],[40,2,2,7,9,[[972,2,2,7,9]]],[41,18,18,9,27,[[973,1,1,9,10],[974,2,2,10,12],[976,1,1,12,13],[979,2,2,13,15],[981,3,3,15,18],[982,1,1,18,19],[987,1,1,19,20],[988,1,1,20,21],[989,1,1,21,22],[991,3,3,22,25],[994,1,1,25,26],[996,1,1,26,27]]],[42,2,2,27,29,[[1003,1,1,27,28],[1004,1,1,28,29]]],[43,7,7,29,36,[[1025,3,3,29,32],[1029,1,1,32,33],[1033,1,1,33,34],[1039,1,1,34,35],[1043,1,1,35,36]]],[53,1,1,36,37,[[1119,1,1,36,37]]],[59,1,1,37,38,[[1153,1,1,37,38]]]],[23490,23832,23887,24024,24068,24195,24204,24883,24885,24932,24976,25014,25105,25201,25206,25353,25357,25358,25401,25603,25650,25662,25743,25759,25767,25903,26019,26381,26382,27203,27212,27215,27354,27499,27709,27835,29699,30443]]]]},{"k":"G4199","v":[["*",[3,3,[[43,1,1,0,1,[[1026,1,1,0,1]]],[47,2,2,1,3,[[1091,2,2,1,3]]]],[27237,29070,29080]]],["destroyed",[2,2,[[43,1,1,0,1,[[1026,1,1,0,1]]],[47,1,1,1,2,[[1091,1,1,1,2]]]],[27237,29080]]],["wasted",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29070]]]]},{"k":"G4200","v":[["gain",[2,2,[[53,2,2,0,2,[[1124,2,2,0,2]]]],[29793,29794]]]]},{"k":"G4201","v":[["Porcius",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27796]]]]},{"k":"G4202","v":[["*",[26,25,[[39,3,3,0,3,[[933,1,1,0,1],[943,1,1,1,2],[947,1,1,2,3]]],[40,1,1,3,4,[[963,1,1,3,4]]],[42,1,1,4,5,[[1004,1,1,4,5]]],[43,3,3,5,8,[[1032,2,2,5,7],[1038,1,1,7,8]]],[44,1,1,8,9,[[1046,1,1,8,9]]],[45,5,4,9,13,[[1066,2,1,9,10],[1067,2,2,10,12],[1068,1,1,12,13]]],[46,1,1,13,14,[[1089,1,1,13,14]]],[47,1,1,14,15,[[1095,1,1,14,15]]],[48,1,1,15,16,[[1101,1,1,15,16]]],[50,1,1,16,17,[[1109,1,1,16,17]]],[51,1,1,17,18,[[1114,1,1,17,18]]],[65,7,7,18,25,[[1168,1,1,18,19],[1175,1,1,19,20],[1180,1,1,20,21],[1183,2,2,21,23],[1184,1,1,23,24],[1185,1,1,24,25]]]],[23266,23652,23771,24484,26422,27462,27471,27689,27959,28455,28480,28485,28489,29043,29181,29307,29522,29606,30738,30861,30934,30977,30979,30996,31019]]],["fornication",[24,23,[[39,2,2,0,2,[[933,1,1,0,1],[947,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]],[43,3,3,3,6,[[1032,2,2,3,5],[1038,1,1,5,6]]],[44,1,1,6,7,[[1046,1,1,6,7]]],[45,5,4,7,11,[[1066,2,1,7,8],[1067,2,2,8,10],[1068,1,1,10,11]]],[46,1,1,11,12,[[1089,1,1,11,12]]],[47,1,1,12,13,[[1095,1,1,12,13]]],[48,1,1,13,14,[[1101,1,1,13,14]]],[50,1,1,14,15,[[1109,1,1,14,15]]],[51,1,1,15,16,[[1114,1,1,15,16]]],[65,7,7,16,23,[[1168,1,1,16,17],[1175,1,1,17,18],[1180,1,1,18,19],[1183,2,2,19,21],[1184,1,1,21,22],[1185,1,1,22,23]]]],[23266,23771,26422,27462,27471,27689,27959,28455,28480,28485,28489,29043,29181,29307,29522,29606,30738,30861,30934,30977,30979,30996,31019]]],["fornications",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[23652,24484]]]]},{"k":"G4203","v":[["*",[8,7,[[45,3,2,0,2,[[1067,1,1,0,1],[1071,2,1,1,2]]],[65,5,5,2,7,[[1168,2,2,2,4],[1183,1,1,4,5],[1184,2,2,5,7]]]],[28485,28575,30731,30737,30977,30996,31002]]],["committed",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28575]]],["fornication",[7,7,[[45,2,2,0,2,[[1067,1,1,0,1],[1071,1,1,1,2]]],[65,5,5,2,7,[[1168,2,2,2,4],[1183,1,1,4,5],[1184,2,2,5,7]]]],[28485,28575,30731,30737,30977,30996,31002]]]]},{"k":"G4204","v":[["*",[12,12,[[39,2,2,0,2,[[949,2,2,0,2]]],[41,1,1,2,3,[[987,1,1,2,3]]],[45,2,2,3,5,[[1067,2,2,3,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]],[58,1,1,6,7,[[1147,1,1,6,7]]],[65,5,5,7,12,[[1183,4,4,7,11],[1185,1,1,11,12]]]],[23857,23858,25618,28482,28483,30203,30318,30976,30980,30990,30991,31019]]],["HARLOTS",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30980]]],["harlot",[4,4,[[45,2,2,0,2,[[1067,2,2,0,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[28482,28483,30203,30318]]],["harlots",[3,3,[[39,2,2,0,2,[[949,2,2,0,2]]],[41,1,1,2,3,[[987,1,1,2,3]]]],[23857,23858,25618]]],["whore",[4,4,[[65,4,4,0,4,[[1183,3,3,0,3],[1185,1,1,3,4]]]],[30976,30990,30991,31019]]]]},{"k":"G4205","v":[["*",[10,10,[[45,4,4,0,4,[[1066,3,3,0,3],[1067,1,1,3,4]]],[48,1,1,4,5,[[1101,1,1,4,5]]],[53,1,1,5,6,[[1119,1,1,5,6]]],[57,2,2,6,8,[[1144,1,1,6,7],[1145,1,1,7,8]]],[65,2,2,8,10,[[1187,1,1,8,9],[1188,1,1,9,10]]]],[28463,28464,28465,28476,29309,29706,30228,30245,31061,31095]]],["fornicator",[2,2,[[45,1,1,0,1,[[1066,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[28465,30228]]],["fornicators",[3,3,[[45,3,3,0,3,[[1066,2,2,0,2],[1067,1,1,2,3]]]],[28463,28464,28476]]],["whoremonger",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29309]]],["whoremongers",[4,4,[[53,1,1,0,1,[[1119,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]],[65,2,2,2,4,[[1187,1,1,2,3],[1188,1,1,3,4]]]],[29706,30245,31061,31095]]]]},{"k":"G4206","v":[["*",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,1,1,2,3,[[986,1,1,2,3]]]],[23641,24469,25585]]],["+",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24469]]],["far",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23641]]],["off",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25585]]]]},{"k":"G4207","v":[["off",[2,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[25663,30185]]]]},{"k":"G4208","v":[["further",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26019]]]]},{"k":"G4209","v":[["purple",[5,5,[[40,2,2,0,2,[[971,2,2,0,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[65,2,2,3,5,[[1183,1,1,3,4],[1184,1,1,4,5]]]],[24843,24846,25639,30979,31005]]]]},{"k":"G4210","v":[["purple",[3,3,[[42,2,2,0,2,[[1015,2,2,0,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[26827,26830,31009]]]]},{"k":"G4211","v":[["purple",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27497]]]]},{"k":"G4212","v":[["*",[3,3,[[39,2,2,0,2,[[946,1,1,0,1],[951,1,1,1,2]]],[41,1,1,2,3,[[985,1,1,2,3]]]],[23748,23955,25552]]],["oft",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23748]]],["often",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23955,25552]]]]},{"k":"G4213","v":[["drink",[3,3,[[42,1,1,0,1,[[1002,1,1,0,1]]],[44,1,1,1,2,[[1059,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]]],[26312,28297,29510]]]]},{"k":"G4214","v":[["*",[27,27,[[39,8,8,0,8,[[934,1,1,0,1],[935,1,1,1,2],[938,1,1,2,3],[940,1,1,3,4],[943,1,1,4,5],[944,2,2,5,7],[955,1,1,7,8]]],[40,6,6,8,14,[[962,1,1,8,9],[964,3,3,9,12],[965,1,1,12,13],[971,1,1,13,14]]],[41,6,6,14,20,[[983,1,1,14,15],[984,2,2,15,17],[987,1,1,17,18],[988,2,2,18,20]]],[43,1,1,20,21,[[1038,1,1,20,21]]],[44,2,2,21,23,[[1056,2,2,21,23]]],[46,1,1,23,24,[[1084,1,1,23,24]]],[56,1,1,24,25,[[1132,1,1,24,25]]],[57,2,2,25,27,[[1141,1,1,25,26],[1142,1,1,26,27]]]],[23305,23327,23442,23501,23667,23681,23682,24142,24445,24505,24519,24520,24559,24830,25418,25483,25487,25605,25625,25627,27684,28221,28233,28927,29954,30119,30162]]],["+",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24559]]],["great",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23305]]],["many",[9,9,[[39,3,3,0,3,[[943,1,1,0,1],[944,2,2,1,3]]],[40,4,4,3,7,[[962,1,1,3,4],[964,3,3,4,7]]],[41,1,1,7,8,[[987,1,1,7,8]]],[43,1,1,8,9,[[1038,1,1,8,9]]]],[23667,23681,23682,24445,24505,24519,24520,25605,27684]]],["much",[13,13,[[39,3,3,0,3,[[935,1,1,0,1],[938,1,1,1,2],[940,1,1,2,3]]],[41,5,5,3,8,[[983,1,1,3,4],[984,2,2,4,6],[988,2,2,6,8]]],[44,2,2,8,10,[[1056,2,2,8,10]]],[56,1,1,10,11,[[1132,1,1,10,11]]],[57,2,2,11,13,[[1141,1,1,11,12],[1142,1,1,12,13]]]],[23327,23442,23501,25418,25483,25487,25625,25627,28221,28233,29954,30119,30162]]],["things",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24142,24830]]],["what",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28927]]]]},{"k":"G4215","v":[["*",[16,16,[[39,2,2,0,2,[[935,2,2,0,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,2,2,3,5,[[978,2,2,3,5]]],[42,1,1,5,6,[[1003,1,1,5,6]]],[43,1,1,6,7,[[1033,1,1,6,7]]],[46,1,1,7,8,[[1088,1,1,7,8]]],[65,8,8,8,16,[[1174,1,1,8,9],[1175,1,1,9,10],[1178,2,2,10,12],[1182,2,2,12,14],[1188,2,2,14,16]]]],[23341,23343,24220,25194,25195,26366,27496,29015,30837,30854,30906,30907,30958,30966,31081,31082]]],["+",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25195]]],["flood",[2,2,[[65,2,2,0,2,[[1178,2,2,0,2]]]],[30906,30907]]],["floods",[2,2,[[39,2,2,0,2,[[935,2,2,0,2]]]],[23341,23343]]],["river",[5,5,[[40,1,1,0,1,[[957,1,1,0,1]]],[65,4,4,1,5,[[1175,1,1,1,2],[1182,1,1,2,3],[1188,2,2,3,5]]]],[24220,30854,30966,31081,31082]]],["rivers",[3,3,[[42,1,1,0,1,[[1003,1,1,0,1]]],[65,2,2,1,3,[[1174,1,1,1,2],[1182,1,1,2,3]]]],[26366,30837,30958]]],["side",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27496]]],["stream",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25194]]],["waters",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29015]]]]},{"k":"G4216","v":[["flood",[1,1,[[65,1,1,0,1,[[1178,1,1,0,1]]]],[30906]]]]},{"k":"G4217","v":[["*",[7,6,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,2,1,1,2,[[969,2,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[979,1,1,3,4]]],[60,1,1,4,5,[[1158,1,1,4,5]]],[61,1,1,5,6,[[1161,1,1,5,6]]]],[23372,24718,24922,25234,30533,30580]]],["man",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23372]]],["manner",[5,5,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,2,2,1,3,[[973,1,1,1,2],[979,1,1,2,3]]],[60,1,1,3,4,[[1158,1,1,3,4]]],[61,1,1,4,5,[[1161,1,1,4,5]]]],[24718,24922,25234,30533,30580]]],["what",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24718]]]]},{"k":"G4218","v":[["*",[29,28,[[41,1,1,0,1,[[994,1,1,0,1]]],[42,1,1,1,2,[[1005,1,1,1,2]]],[44,3,3,2,5,[[1046,1,1,2,3],[1052,1,1,3,4],[1056,1,1,4,5]]],[45,1,1,5,6,[[1070,1,1,5,6]]],[47,4,3,6,9,[[1091,3,2,6,8],[1092,1,1,8,9]]],[48,6,6,9,15,[[1098,4,4,9,13],[1101,2,2,13,15]]],[49,1,1,15,16,[[1106,1,1,15,16]]],[50,2,2,16,18,[[1107,1,1,16,17],[1109,1,1,17,18]]],[51,1,1,18,19,[[1112,1,1,18,19]]],[55,1,1,19,20,[[1131,1,1,19,20]]],[56,1,1,20,21,[[1132,1,1,20,21]]],[57,2,2,21,23,[[1133,2,2,21,23]]],[59,3,3,23,26,[[1152,1,1,23,24],[1153,2,2,24,26]]],[60,2,2,26,28,[[1156,2,2,26,28]]]],[25896,26453,27940,28100,28239,28547,29070,29080,29087,29231,29232,29240,29242,29312,29333,29452,29486,29524,29575,29926,29949,29968,29976,30409,30429,30444,30489,30500]]],["+",[3,3,[[47,1,1,0,1,[[1092,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]],[60,1,1,2,3,[[1156,1,1,2,3]]]],[29087,29242,30489]]],["aforetime",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26453]]],["last",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29452]]],["length",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27940]]],["once",[2,2,[[44,1,1,0,1,[[1052,1,1,0,1]]],[47,1,1,1,2,[[1091,1,1,1,2]]]],[28100,29080]]],["past",[8,8,[[44,1,1,0,1,[[1056,1,1,0,1]]],[47,2,2,1,3,[[1091,2,2,1,3]]],[48,3,3,3,6,[[1098,3,3,3,6]]],[56,1,1,6,7,[[1132,1,1,6,7]]],[59,1,1,7,8,[[1152,1,1,7,8]]]],[28239,29070,29080,29231,29232,29240,29949,30409]]],["sometime",[2,2,[[50,1,1,0,1,[[1107,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[29486,30444]]],["sometimes",[2,2,[[48,1,1,0,1,[[1101,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[29312,29926]]],["time",[7,7,[[45,1,1,0,1,[[1070,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]],[57,2,2,3,5,[[1133,2,2,3,5]]],[59,1,1,5,6,[[1153,1,1,5,6]]],[60,1,1,6,7,[[1156,1,1,6,7]]]],[28547,29524,29575,29968,29976,30429,30500]]],["when",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25896]]],["yet",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29333]]]]},{"k":"G4219","v":[["*",[19,17,[[39,7,6,0,6,[[945,2,1,0,1],[952,1,1,1,2],[953,4,4,2,6]]],[40,5,4,6,10,[[965,2,1,6,7],[969,3,3,7,10]]],[41,4,4,10,14,[[981,1,1,10,11],[984,1,1,11,12],[989,1,1,12,13],[993,1,1,13,14]]],[42,2,2,14,16,[[1002,1,1,14,15],[1006,1,1,15,16]]],[65,1,1,16,17,[[1172,1,1,16,17]]]],[23717,23960,24045,24046,24047,24052,24557,24721,24750,24752,25342,25495,25671,25833,26282,26505,30803]]],["+",[7,5,[[39,2,1,0,1,[[945,2,1,0,1]]],[40,2,1,1,2,[[965,2,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[42,1,1,3,4,[[1006,1,1,3,4]]],[65,1,1,4,5,[[1172,1,1,4,5]]]],[23717,24557,25342,26505,30803]]],["When",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24046]]],["when",[11,11,[[39,4,4,0,4,[[952,1,1,0,1],[953,3,3,1,4]]],[40,3,3,4,7,[[969,3,3,4,7]]],[41,3,3,7,10,[[984,1,1,7,8],[989,1,1,8,9],[993,1,1,9,10]]],[42,1,1,10,11,[[1002,1,1,10,11]]]],[23960,24045,24047,24052,24721,24750,24752,25495,25671,25833,26282]]]]},{"k":"G4220","v":[["whether",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26345]]]]},{"k":"G4221","v":[["*",[33,30,[[39,8,8,0,8,[[938,1,1,0,1],[948,2,2,1,3],[951,2,2,3,5],[954,3,3,5,8]]],[40,7,7,8,15,[[963,2,2,8,10],[965,1,1,10,11],[966,2,2,11,13],[970,2,2,13,15]]],[41,5,4,15,19,[[983,1,1,15,16],[994,4,3,16,19]]],[42,1,1,19,20,[[1014,1,1,19,20]]],[45,8,6,20,26,[[1071,3,2,20,22],[1072,5,4,22,26]]],[65,4,4,26,30,[[1180,1,1,26,27],[1182,1,1,27,28],[1183,1,1,28,29],[1184,1,1,29,30]]]],[23459,23814,23815,23943,23944,24081,24093,24096,24467,24471,24579,24626,24627,24777,24790,25444,25881,25884,25906,26796,28583,28588,28625,28626,28627,28628,30936,30973,30979,30999]]],["+",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24579]]],["cup",[29,27,[[39,8,8,0,8,[[938,1,1,0,1],[948,2,2,1,3],[951,2,2,3,5],[954,3,3,5,8]]],[40,4,4,8,12,[[966,2,2,8,10],[970,2,2,10,12]]],[41,4,4,12,16,[[983,1,1,12,13],[994,3,3,13,16]]],[42,1,1,16,17,[[1014,1,1,16,17]]],[45,8,6,17,23,[[1071,3,2,17,19],[1072,5,4,19,23]]],[65,4,4,23,27,[[1180,1,1,23,24],[1182,1,1,24,25],[1183,1,1,25,26],[1184,1,1,26,27]]]],[23459,23814,23815,23943,23944,24081,24093,24096,24626,24627,24777,24790,25444,25881,25884,25906,26796,28583,28588,28625,28626,28627,28628,30936,30973,30979,30999]]],["cups",[2,2,[[40,2,2,0,2,[[963,2,2,0,2]]]],[24467,24471]]],["is",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25884]]]]},{"k":"G4222","v":[["*",[15,15,[[39,5,5,0,5,[[938,1,1,0,1],[953,3,3,1,4],[955,1,1,4,5]]],[40,2,2,5,7,[[965,1,1,5,6],[971,1,1,6,7]]],[41,1,1,7,8,[[985,1,1,7,8]]],[44,1,1,8,9,[[1057,1,1,8,9]]],[45,5,5,9,14,[[1064,4,4,9,13],[1073,1,1,13,14]]],[65,1,1,14,15,[[1180,1,1,14,15]]]],[23459,24043,24045,24050,24177,24579,24862,25533,28265,28412,28416,28417,28418,28647,30934]]],["+",[7,7,[[39,3,3,0,3,[[953,2,2,0,2],[955,1,1,2,3]]],[40,2,2,3,5,[[965,1,1,3,4],[971,1,1,4,5]]],[44,1,1,5,6,[[1057,1,1,5,6]]],[65,1,1,6,7,[[1180,1,1,6,7]]]],[24043,24050,24177,24579,24862,28265,30934]]],["drink",[3,3,[[39,2,2,0,2,[[938,1,1,0,1],[953,1,1,1,2]]],[45,1,1,2,3,[[1073,1,1,2,3]]]],[23459,24045,28647]]],["fed",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28412]]],["watered",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28416]]],["watereth",[2,2,[[45,2,2,0,2,[[1064,2,2,0,2]]]],[28417,28418]]],["watering",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25533]]]]},{"k":"G4223","v":[["Puteoli",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27912]]]]},{"k":"G4224","v":[["banquetings",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30449]]]]},{"k":"G4225","v":[["*",[3,3,[[44,1,1,0,1,[[1049,1,1,0,1]]],[57,2,2,1,3,[[1134,1,1,1,2],[1136,1,1,2,3]]]],[28041,29983,30018]]],["about",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28041]]],["place",[2,2,[[57,2,2,0,2,[[1134,1,1,0,1],[1136,1,1,1,2]]]],[29983,30018]]]]},{"k":"G4226","v":[["*",[47,42,[[39,4,4,0,4,[[930,2,2,0,2],[936,1,1,2,3],[954,1,1,3,4]]],[40,3,3,4,7,[[970,2,2,4,6],[971,1,1,6,7]]],[41,7,7,7,14,[[980,1,1,7,8],[981,1,1,8,9],[984,1,1,9,10],[989,2,2,10,12],[994,2,2,12,14]]],[42,19,18,14,32,[[997,2,2,14,16],[999,1,1,16,17],[1003,2,2,17,19],[1004,4,3,19,22],[1005,1,1,22,23],[1007,2,2,23,25],[1008,1,1,25,26],[1009,1,1,26,27],[1010,1,1,27,28],[1012,1,1,28,29],[1016,3,3,29,32]]],[44,1,1,32,33,[[1048,1,1,32,33]]],[45,8,4,33,37,[[1062,3,1,33,34],[1073,3,2,34,36],[1076,2,1,36,37]]],[57,1,1,37,38,[[1143,1,1,37,38]]],[59,1,1,38,39,[[1154,1,1,38,39]]],[60,1,1,39,40,[[1158,1,1,39,40]]],[61,1,1,40,41,[[1160,1,1,40,41]]],[65,1,1,41,42,[[1168,1,1,41,42]]]],[23171,23173,23365,24071,24766,24768,24873,25270,25359,25476,25668,25688,25873,25875,26082,26083,26128,26339,26363,26391,26395,26400,26452,26557,26580,26615,26666,26673,26731,26869,26880,26882,28018,28383,28651,28653,28773,30180,30464,30526,30561,30730]]],["Where",[15,15,[[39,2,2,0,2,[[930,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[970,2,2,2,4]]],[41,4,4,4,8,[[980,1,1,4,5],[989,1,1,5,6],[994,2,2,6,8]]],[42,4,4,8,12,[[1003,1,1,8,9],[1004,1,1,9,10],[1005,1,1,10,11],[1007,1,1,11,12]]],[44,1,1,12,13,[[1048,1,1,12,13]]],[45,1,1,13,14,[[1062,1,1,13,14]]],[60,1,1,14,15,[[1158,1,1,14,15]]]],[23171,24071,24766,24768,25270,25688,25873,25875,26339,26400,26452,26557,28018,28383,30526]]],["Whither",[2,2,[[42,2,2,0,2,[[1003,1,1,0,1],[1012,1,1,1,2]]]],[26363,26731]]],["where",[22,19,[[39,2,2,0,2,[[930,1,1,0,1],[936,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[41,3,3,3,6,[[981,1,1,3,4],[984,1,1,4,5],[989,1,1,5,6]]],[42,7,7,6,13,[[997,2,2,6,8],[1004,1,1,8,9],[1007,1,1,9,10],[1016,3,3,10,13]]],[45,7,4,13,17,[[1062,2,1,13,14],[1073,3,2,14,16],[1076,2,1,16,17]]],[59,1,1,17,18,[[1154,1,1,17,18]]],[65,1,1,18,19,[[1168,1,1,18,19]]]],[23173,23365,24873,25359,25476,25668,26082,26083,26391,26580,26869,26880,26882,28383,28651,28653,28773,30464,30730]]],["whither",[8,7,[[42,6,5,0,5,[[999,1,1,0,1],[1004,2,1,1,2],[1008,1,1,2,3],[1009,1,1,3,4],[1010,1,1,4,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]],[61,1,1,6,7,[[1160,1,1,6,7]]]],[26128,26395,26615,26666,26673,30180,30561]]]]},{"k":"G4227","v":[["Pudens",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29891]]]]},{"k":"G4228","v":[["*",[93,86,[[39,11,10,0,10,[[932,1,1,0,1],[933,1,1,1,2],[935,1,1,2,3],[938,1,1,3,4],[943,1,1,4,5],[946,3,2,5,7],[950,2,2,7,9],[956,1,1,9,10]]],[40,6,5,10,15,[[961,1,1,10,11],[962,1,1,11,12],[963,1,1,12,13],[965,2,1,13,14],[968,1,1,14,15]]],[41,18,15,15,30,[[973,1,1,15,16],[976,1,1,16,17],[979,7,4,17,21],[980,2,2,21,23],[981,1,1,23,24],[982,1,1,24,25],[987,1,1,25,26],[989,1,1,26,27],[992,1,1,27,28],[996,2,2,28,30]]],[42,14,12,30,42,[[1007,3,3,30,33],[1008,2,1,33,34],[1009,8,7,34,41],[1016,1,1,41,42]]],[43,19,19,42,61,[[1019,1,1,42,43],[1021,2,2,43,45],[1022,3,3,45,48],[1024,4,4,48,52],[1027,1,1,52,53],[1030,2,2,53,55],[1031,2,2,55,57],[1033,1,1,57,58],[1038,1,1,58,59],[1039,1,1,59,60],[1043,1,1,60,61]]],[44,3,3,61,64,[[1048,1,1,61,62],[1055,1,1,62,63],[1061,1,1,63,64]]],[45,4,4,64,68,[[1073,2,2,64,66],[1076,2,2,66,68]]],[48,2,2,68,70,[[1097,1,1,68,69],[1102,1,1,69,70]]],[53,1,1,70,71,[[1123,1,1,70,71]]],[57,4,4,71,75,[[1133,1,1,71,72],[1134,1,1,72,73],[1142,1,1,73,74],[1144,1,1,74,75]]],[65,11,11,75,86,[[1167,2,2,75,77],[1168,1,1,77,78],[1169,1,1,78,79],[1176,2,2,79,81],[1177,1,1,81,82],[1178,1,1,82,83],[1179,1,1,83,84],[1185,1,1,84,85],[1188,1,1,85,86]]]],[23215,23269,23322,23431,23663,23735,23756,23885,23916,24204,24386,24418,24488,24583,24709,24972,25074,25233,25239,25240,25241,25280,25286,25306,25402,25610,25667,25822,26030,26031,26525,26555,26567,26583,26635,26636,26638,26639,26640,26642,26644,26879,26984,27057,27059,27061,27068,27069,27121,27149,27165,27174,27284,27387,27413,27422,27424,27507,27675,27707,27839,28006,28203,28356,28649,28655,28743,28745,29228,29352,29773,29976,29985,30146,30225,30712,30714,30735,30755,30862,30863,30883,30892,30910,31027,31088]]],["+",[10,10,[[39,2,2,0,2,[[933,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]],[43,4,4,4,8,[[1019,1,1,4,5],[1024,2,2,5,7],[1033,1,1,7,8]]],[57,2,2,8,10,[[1133,1,1,8,9],[1142,1,1,9,10]]]],[23269,23916,24709,25822,26984,27121,27165,27507,29976,30146]]],["feet",[75,70,[[39,6,6,0,6,[[935,1,1,0,1],[938,1,1,1,2],[943,1,1,2,3],[946,2,2,3,5],[956,1,1,5,6]]],[40,4,4,6,10,[[961,1,1,6,7],[962,1,1,7,8],[963,1,1,8,9],[965,1,1,9,10]]],[41,16,13,10,23,[[973,1,1,10,11],[979,7,4,11,15],[980,2,2,15,17],[981,1,1,17,18],[982,1,1,18,19],[987,1,1,19,20],[989,1,1,20,21],[996,2,2,21,23]]],[42,13,11,23,34,[[1007,2,2,23,25],[1008,2,1,25,26],[1009,8,7,26,33],[1016,1,1,33,34]]],[43,15,15,34,49,[[1021,2,2,34,36],[1022,3,3,36,39],[1024,2,2,39,41],[1027,1,1,41,42],[1030,2,2,42,44],[1031,2,2,44,46],[1038,1,1,46,47],[1039,1,1,47,48],[1043,1,1,48,49]]],[44,3,3,49,52,[[1048,1,1,49,50],[1055,1,1,50,51],[1061,1,1,51,52]]],[45,3,3,52,55,[[1073,1,1,52,53],[1076,2,2,53,55]]],[48,2,2,55,57,[[1097,1,1,55,56],[1102,1,1,56,57]]],[53,1,1,57,58,[[1123,1,1,57,58]]],[57,2,2,58,60,[[1134,1,1,58,59],[1144,1,1,59,60]]],[65,10,10,60,70,[[1167,2,2,60,62],[1168,1,1,62,63],[1169,1,1,63,64],[1176,1,1,64,65],[1177,1,1,65,66],[1178,1,1,66,67],[1179,1,1,67,68],[1185,1,1,68,69],[1188,1,1,69,70]]]],[23322,23431,23663,23735,23756,24204,24386,24418,24488,24583,24972,25233,25239,25240,25241,25280,25286,25306,25402,25610,25667,26030,26031,26525,26555,26583,26635,26636,26638,26639,26640,26642,26644,26879,27057,27059,27061,27068,27069,27149,27174,27284,27387,27413,27422,27424,27675,27707,27839,28006,28203,28356,28655,28743,28745,29228,29352,29773,29985,30225,30712,30714,30735,30755,30862,30883,30892,30910,31027,31088]]],["foot",[8,8,[[39,3,3,0,3,[[932,1,1,0,1],[946,1,1,1,2],[950,1,1,2,3]]],[40,1,1,3,4,[[965,1,1,3,4]]],[41,1,1,4,5,[[976,1,1,4,5]]],[42,1,1,5,6,[[1007,1,1,5,6]]],[45,1,1,6,7,[[1073,1,1,6,7]]],[65,1,1,7,8,[[1176,1,1,7,8]]]],[23215,23735,23885,24583,25074,26567,28649,30863]]]]},{"k":"G4229","v":[["*",[11,11,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]],[44,1,1,3,4,[[1061,1,1,3,4]]],[45,1,1,4,5,[[1067,1,1,4,5]]],[46,1,1,5,6,[[1084,1,1,5,6]]],[51,1,1,6,7,[[1114,1,1,6,7]]],[57,3,3,7,10,[[1138,1,1,7,8],[1142,1,1,8,9],[1143,1,1,9,10]]],[58,1,1,10,11,[[1148,1,1,10,11]]]],[23746,24894,27063,28338,28468,28927,29609,30062,30134,30173,30335]]],["business",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28338]]],["matter",[3,3,[[45,1,1,0,1,[[1067,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]]],[28468,28927,29609]]],["thing",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[23746,27063]]],["things",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[57,3,3,1,4,[[1138,1,1,1,2],[1142,1,1,2,3],[1143,1,1,3,4]]]],[24894,30062,30134,30173]]],["work",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30335]]]]},{"k":"G4230","v":[["affairs",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29831]]]]},{"k":"G4231","v":[["Occupy",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25744]]]]},{"k":"G4232","v":[["*",[8,7,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,4,3,2,5,[[1014,3,2,2,4],[1015,1,1,4,5]]],[43,1,1,5,6,[[1040,1,1,5,6]]],[49,1,1,6,7,[[1103,1,1,6,7]]]],[24156,24842,26813,26818,26834,27769,29374]]],["Praetorium",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24842]]],["hall",[5,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,3,3,1,4,[[1014,2,2,1,3],[1015,1,1,3,4]]],[43,1,1,4,5,[[1040,1,1,4,5]]]],[24156,26813,26818,26834,27769]]],["judgment",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26813]]],["palace",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29374]]]]},{"k":"G4233","v":[["officer",[2,1,[[41,2,1,0,1,[[984,2,1,0,1]]]],[25517]]]]},{"k":"G4234","v":[["*",[6,6,[[39,1,1,0,1,[[944,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]],[43,1,1,2,3,[[1036,1,1,2,3]]],[44,2,2,3,5,[[1053,1,1,3,4],[1057,1,1,4,5]]],[50,1,1,5,6,[[1109,1,1,5,6]]]],[23699,25986,27603,28129,28249,29526]]],["deed",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25986]]],["deeds",[3,3,[[43,1,1,0,1,[[1036,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]]],[27603,28129,29526]]],["office",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28249]]],["works",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23699]]]]},{"k":"G4235","v":[["meek",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23488]]]]},{"k":"G4236","v":[["*",[9,9,[[45,1,1,0,1,[[1065,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]],[47,2,2,2,4,[[1095,1,1,2,3],[1096,1,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]],[50,1,1,5,6,[[1109,1,1,5,6]]],[53,1,1,6,7,[[1124,1,1,6,7]]],[54,1,1,7,8,[[1126,1,1,7,8]]],[55,1,1,8,9,[[1131,1,1,8,9]]]],[28454,28972,29185,29189,29274,29529,29799,29852,29925]]],["Meekness",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29185]]],["meekness",[8,8,[[45,1,1,0,1,[[1065,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]],[47,1,1,2,3,[[1096,1,1,2,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]],[53,1,1,5,6,[[1124,1,1,5,6]]],[54,1,1,6,7,[[1126,1,1,6,7]]],[55,1,1,7,8,[[1131,1,1,7,8]]]],[28454,28972,29189,29274,29529,29799,29852,29925]]]]},{"k":"G4237","v":[["+",[2,1,[[40,2,1,0,1,[[962,2,1,0,1]]]],[24447]]]]},{"k":"G4238","v":[["*",[38,36,[[41,6,5,0,5,[[975,1,1,0,1],[991,1,1,1,2],[994,1,1,2,3],[995,3,2,3,5]]],[42,2,2,5,7,[[999,1,1,5,6],[1001,1,1,6,7]]],[43,13,13,7,20,[[1020,1,1,7,8],[1022,1,1,8,9],[1032,1,1,9,10],[1033,1,1,10,11],[1034,1,1,11,12],[1036,2,2,12,14],[1042,2,2,14,16],[1043,4,4,16,20]]],[44,10,9,20,29,[[1046,2,1,20,21],[1047,4,4,21,25],[1052,2,2,25,27],[1054,1,1,27,28],[1058,1,1,28,29]]],[45,1,1,29,30,[[1070,1,1,29,30]]],[46,2,2,30,32,[[1082,1,1,30,31],[1089,1,1,31,32]]],[47,1,1,32,33,[[1095,1,1,32,33]]],[48,1,1,33,34,[[1102,1,1,33,34]]],[49,1,1,34,35,[[1106,1,1,34,35]]],[51,1,1,35,36,[[1114,1,1,35,36]]]],[25038,25754,25887,25950,25976,26140,26239,27013,27094,27471,27511,27530,27604,27621,27807,27821,27832,27843,27849,27854,27962,27963,27964,27965,27987,28106,28110,28166,28270,28557,28887,29043,29183,29358,29451,29614]]],["+",[3,3,[[41,2,2,0,2,[[991,1,1,0,1],[995,1,1,1,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]]],[25754,25976,29614]]],["Do",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27511]]],["Exact",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25038]]],["commit",[2,2,[[44,2,2,0,2,[[1046,1,1,0,1],[1047,1,1,1,2]]]],[27962,27964]]],["committed",[3,3,[[43,2,2,0,2,[[1042,2,2,0,2]]],[46,1,1,2,3,[[1089,1,1,2,3]]]],[27807,27821,29043]]],["did",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27013]]],["do",[15,15,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,6,6,1,7,[[1022,1,1,1,2],[1032,1,1,2,3],[1034,1,1,3,4],[1036,1,1,4,5],[1043,2,2,5,7]]],[44,4,4,7,11,[[1046,1,1,7,8],[1047,1,1,8,9],[1052,2,2,9,11]]],[45,1,1,11,12,[[1070,1,1,11,12]]],[47,1,1,12,13,[[1095,1,1,12,13]]],[48,1,1,13,14,[[1102,1,1,13,14]]],[49,1,1,14,15,[[1106,1,1,14,15]]]],[25887,27094,27471,27530,27621,27832,27843,27962,27965,28106,28110,28557,29183,29358,29451]]],["doest",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27963]]],["doeth",[3,3,[[42,1,1,0,1,[[999,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[44,1,1,2,3,[[1058,1,1,2,3]]]],[26140,27854,28270]]],["done",[6,6,[[41,2,2,0,2,[[995,2,2,0,2]]],[42,1,1,2,3,[[1001,1,1,2,3]]],[43,1,1,3,4,[[1043,1,1,3,4]]],[44,1,1,4,5,[[1054,1,1,4,5]]],[46,1,1,5,6,[[1082,1,1,5,6]]]],[25950,25976,26239,27849,28166,28887]]],["keep",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27987]]],["used",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27604]]]]},{"k":"G4239","v":[["meek",[3,3,[[39,2,2,0,2,[[933,1,1,0,1],[949,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[23239,23831,30428]]]]},{"k":"G4240","v":[["meekness",[3,3,[[58,2,2,0,2,[[1146,1,1,0,1],[1148,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[30287,30332,30439]]]]},{"k":"G4241","v":[["*",[7,7,[[39,1,1,0,1,[[931,1,1,0,1]]],[45,1,1,1,2,[[1072,1,1,1,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]],[53,1,1,3,4,[[1120,1,1,3,4]]],[55,1,1,4,5,[[1130,1,1,4,5]]],[57,2,2,5,7,[[1134,1,1,5,6],[1139,1,1,6,7]]]],[23207,28613,29307,29726,29909,29987,30090]]],["became",[2,2,[[57,2,2,0,2,[[1134,1,1,0,1],[1139,1,1,1,2]]]],[29987,30090]]],["become",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29909]]],["becometh",[3,3,[[39,1,1,0,1,[[931,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]],[53,1,1,2,3,[[1120,1,1,2,3]]]],[23207,29307,29726]]],["comely",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28613]]]]},{"k":"G4242","v":[["*",[2,2,[[41,2,2,0,2,[[986,1,1,0,1],[991,1,1,1,2]]]],[25585,25745]]],["ambassage",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25585]]],["message",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25745]]]]},{"k":"G4243","v":[["*",[2,2,[[46,1,1,0,1,[[1082,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]]],[28897,29357]]],["ambassador",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29357]]],["ambassadors",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28897]]]]},{"k":"G4244","v":[["*",[3,3,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,1,1,1,2,[[1039,1,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]]],[25930,27709,29761]]],["elders",[2,2,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,1,1,1,2,[[1039,1,1,1,2]]]],[25930,27709]]],["presbytery",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29761]]]]},{"k":"G4245","v":[["*",[67,67,[[39,13,13,0,13,[[943,1,1,0,1],[944,1,1,1,2],[949,1,1,2,3],[954,4,4,3,7],[955,5,5,7,12],[956,1,1,12,13]]],[40,7,7,13,20,[[963,2,2,13,15],[964,1,1,15,16],[967,1,1,16,17],[970,2,2,17,19],[971,1,1,19,20]]],[41,5,5,20,25,[[979,1,1,20,21],[981,1,1,21,22],[987,1,1,22,23],[992,1,1,23,24],[994,1,1,24,25]]],[42,1,1,25,26,[[1004,1,1,25,26]]],[43,18,18,26,44,[[1019,1,1,26,27],[1021,3,3,27,30],[1023,1,1,30,31],[1028,1,1,31,32],[1031,1,1,32,33],[1032,5,5,33,38],[1033,1,1,38,39],[1037,1,1,39,40],[1038,1,1,40,41],[1040,1,1,41,42],[1041,1,1,42,43],[1042,1,1,43,44]]],[53,4,4,44,48,[[1123,4,4,44,48]]],[55,1,1,48,49,[[1129,1,1,48,49]]],[57,1,1,49,50,[[1143,1,1,49,50]]],[58,1,1,50,51,[[1150,1,1,50,51]]],[59,2,2,51,53,[[1155,2,2,51,53]]],[62,1,1,53,54,[[1164,1,1,53,54]]],[63,1,1,54,55,[[1165,1,1,54,55]]],[65,12,12,55,67,[[1170,2,2,55,57],[1171,5,5,57,62],[1173,2,2,62,64],[1177,1,1,64,65],[1180,1,1,65,66],[1185,1,1,66,67]]]],[23635,23693,23849,24057,24101,24111,24113,24130,24132,24141,24149,24170,24207,24466,24468,24531,24667,24797,24807,24827,25198,25323,25613,25780,25916,26390,26966,27027,27030,27045,27113,27337,27437,27444,27446,27448,27464,27465,27487,27643,27682,27748,27770,27811,29764,29765,29780,29782,29897,30174,30368,30466,30470,30646,30659,30772,30778,30784,30785,30787,30790,30793,30821,30823,30888,30929,31021]]],["elder",[6,6,[[41,1,1,0,1,[[987,1,1,0,1]]],[53,2,2,1,3,[[1123,2,2,1,3]]],[59,1,1,3,4,[[1155,1,1,3,4]]],[62,1,1,4,5,[[1164,1,1,4,5]]],[63,1,1,5,6,[[1165,1,1,5,6]]]],[25613,29764,29782,30470,30646,30659]]],["elders",[58,58,[[39,13,13,0,13,[[943,1,1,0,1],[944,1,1,1,2],[949,1,1,2,3],[954,4,4,3,7],[955,5,5,7,12],[956,1,1,12,13]]],[40,7,7,13,20,[[963,2,2,13,15],[964,1,1,15,16],[967,1,1,16,17],[970,2,2,17,19],[971,1,1,19,20]]],[41,4,4,20,24,[[979,1,1,20,21],[981,1,1,21,22],[992,1,1,22,23],[994,1,1,23,24]]],[43,17,17,24,41,[[1021,3,3,24,27],[1023,1,1,27,28],[1028,1,1,28,29],[1031,1,1,29,30],[1032,5,5,30,35],[1033,1,1,35,36],[1037,1,1,36,37],[1038,1,1,37,38],[1040,1,1,38,39],[1041,1,1,39,40],[1042,1,1,40,41]]],[53,1,1,41,42,[[1123,1,1,41,42]]],[55,1,1,42,43,[[1129,1,1,42,43]]],[57,1,1,43,44,[[1143,1,1,43,44]]],[58,1,1,44,45,[[1150,1,1,44,45]]],[59,1,1,45,46,[[1155,1,1,45,46]]],[65,12,12,46,58,[[1170,2,2,46,48],[1171,5,5,48,53],[1173,2,2,53,55],[1177,1,1,55,56],[1180,1,1,56,57],[1185,1,1,57,58]]]],[23635,23693,23849,24057,24101,24111,24113,24130,24132,24141,24149,24170,24207,24466,24468,24531,24667,24797,24807,24827,25198,25323,25780,25916,27027,27030,27045,27113,27337,27437,27444,27446,27448,27464,27465,27487,27643,27682,27748,27770,27811,29780,29897,30174,30368,30466,30772,30778,30784,30785,30787,30790,30793,30821,30823,30888,30929,31021]]],["eldest",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26390]]],["men",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26966]]],["women",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29765]]]]},{"k":"G4246","v":[["*",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]]],[24911,29910,29947]]],["aged",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29947]]],["man",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24911]]],["men",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29910]]]]},{"k":"G4247","v":[["women",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29911]]]]},{"k":"G4248","v":[["headlong",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26941]]]]},{"k":"G4249","v":[["asunder",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30209]]]]},{"k":"G4250","v":[["*",[14,14,[[39,3,3,0,3,[[929,1,1,0,1],[954,2,2,1,3]]],[40,2,2,3,5,[[970,2,2,3,5]]],[41,3,3,5,8,[[974,1,1,5,6],[994,2,2,6,8]]],[42,3,3,8,11,[[1000,1,1,8,9],[1004,1,1,9,10],[1010,1,1,10,11]]],[43,3,3,11,14,[[1019,1,1,11,12],[1024,1,1,12,13],[1042,1,1,13,14]]]],[23162,24088,24129,24784,24826,24999,25898,25925,26205,26439,26697,26969,27118,27812]]],["+",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27118]]],["Before",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,1,1,3,4,[[1004,1,1,3,4]]]],[24129,24826,25925,26439]]],["before",[8,8,[[39,2,2,0,2,[[929,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,2,2,3,5,[[974,1,1,3,4],[994,1,1,4,5]]],[42,1,1,5,6,[[1010,1,1,5,6]]],[43,2,2,6,8,[[1019,1,1,6,7],[1042,1,1,7,8]]]],[23162,24088,24784,24999,25898,26697,26969,27812]]],["ere",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26205]]]]},{"k":"G4251","v":[["Prisca",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29889]]]]},{"k":"G4252","v":[["Priscilla",[5,5,[[43,3,3,0,3,[[1035,3,3,0,3]]],[44,1,1,3,4,[[1061,1,1,3,4]]],[45,1,1,4,5,[[1077,1,1,4,5]]]],[27559,27575,27583,28339,28795]]]]},{"k":"G4253","v":[["*",[46,46,[[39,5,5,0,5,[[933,1,1,0,1],[934,1,1,1,2],[936,1,1,2,3],[939,1,1,3,4],[952,1,1,4,5]]],[40,1,1,5,6,[[957,1,1,5,6]]],[41,8,8,6,14,[[973,1,1,6,7],[974,1,1,7,8],[979,1,1,8,9],[981,1,1,9,10],[982,1,1,10,11],[983,1,1,11,12],[993,1,1,12,13],[994,1,1,13,14]]],[42,9,9,14,23,[[997,1,1,14,15],[1001,1,1,15,16],[1006,1,1,16,17],[1007,1,1,17,18],[1008,1,1,18,19],[1009,2,2,19,21],[1013,2,2,21,23]]],[43,8,8,23,31,[[1022,2,2,23,25],[1029,2,2,25,27],[1030,1,1,27,28],[1031,1,1,28,29],[1038,1,1,29,30],[1040,1,1,30,31]]],[44,1,1,31,32,[[1061,1,1,31,32]]],[45,2,2,32,34,[[1063,1,1,32,33],[1065,1,1,33,34]]],[46,1,1,34,35,[[1089,1,1,34,35]]],[47,1,1,35,36,[[1091,1,1,35,36]]],[48,1,1,36,37,[[1097,1,1,36,37]]],[50,1,1,37,38,[[1107,1,1,37,38]]],[54,2,2,38,40,[[1125,1,1,38,39],[1128,1,1,39,40]]],[55,1,1,40,41,[[1129,1,1,40,41]]],[57,1,1,41,42,[[1143,1,1,41,42]]],[58,2,2,42,44,[[1150,2,2,42,44]]],[59,2,2,44,46,[[1151,1,1,44,45],[1154,1,1,45,46]]]],[23246,23290,23374,23469,23995,24217,24969,24994,25222,25353,25364,25443,25838,25879,26092,26217,26489,26578,26581,26631,26649,26764,26783,27082,27095,27343,27351,27386,27427,27702,27749,28343,28401,28438,29024,29074,29210,29482,29818,29891,29894,30177,30363,30366,30394,30454]]],["Before",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26092]]],["above",[3,3,[[46,1,1,0,1,[[1089,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[29024,30366,30454]]],["before",[41,41,[[39,5,5,0,5,[[933,1,1,0,1],[934,1,1,1,2],[936,1,1,2,3],[939,1,1,3,4],[952,1,1,4,5]]],[40,1,1,5,6,[[957,1,1,5,6]]],[41,8,8,6,14,[[973,1,1,6,7],[974,1,1,7,8],[979,1,1,8,9],[981,1,1,9,10],[982,1,1,10,11],[983,1,1,11,12],[993,1,1,12,13],[994,1,1,13,14]]],[42,8,8,14,22,[[1001,1,1,14,15],[1006,1,1,15,16],[1007,1,1,16,17],[1008,1,1,17,18],[1009,2,2,18,20],[1013,2,2,20,22]]],[43,7,7,22,29,[[1022,2,2,22,24],[1029,2,2,24,26],[1030,1,1,26,27],[1031,1,1,27,28],[1038,1,1,28,29]]],[44,1,1,29,30,[[1061,1,1,29,30]]],[45,2,2,30,32,[[1063,1,1,30,31],[1065,1,1,31,32]]],[47,1,1,32,33,[[1091,1,1,32,33]]],[48,1,1,33,34,[[1097,1,1,33,34]]],[50,1,1,34,35,[[1107,1,1,34,35]]],[54,2,2,35,37,[[1125,1,1,35,36],[1128,1,1,36,37]]],[55,1,1,37,38,[[1129,1,1,37,38]]],[57,1,1,38,39,[[1143,1,1,38,39]]],[58,1,1,39,40,[[1150,1,1,39,40]]],[59,1,1,40,41,[[1151,1,1,40,41]]]],[23246,23290,23374,23469,23995,24217,24969,24994,25222,25353,25364,25443,25838,25879,26217,26489,26578,26581,26631,26649,26764,26783,27082,27095,27343,27351,27386,27427,27702,28343,28401,28438,29074,29210,29482,29818,29891,29894,30177,30363,30394]]],["ever",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27749]]]]},{"k":"G4254","v":[["*",[18,18,[[39,6,6,0,6,[[930,1,1,0,1],[942,1,1,1,2],[949,2,2,2,4],[954,1,1,4,5],[956,1,1,5,6]]],[40,5,5,6,11,[[962,1,1,6,7],[966,1,1,7,8],[967,1,1,8,9],[970,1,1,9,10],[972,1,1,10,11]]],[41,1,1,11,12,[[990,1,1,11,12]]],[43,3,3,12,15,[[1029,1,1,12,13],[1033,1,1,13,14],[1042,1,1,14,15]]],[53,2,2,15,17,[[1119,1,1,15,16],[1123,1,1,16,17]]],[57,1,1,17,18,[[1139,1,1,17,18]]]],[23178,23619,23835,23857,24086,24202,24452,24620,24649,24782,24880,25727,27343,27513,27822,29714,29787,30082]]],["+",[5,5,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[966,1,1,2,3]]],[43,2,2,3,5,[[1029,1,1,3,4],[1042,1,1,4,5]]]],[23857,24452,24620,27343,27822]]],["before",[12,12,[[39,5,5,0,5,[[930,1,1,0,1],[942,1,1,1,2],[949,1,1,2,3],[954,1,1,3,4],[956,1,1,4,5]]],[40,3,3,5,8,[[967,1,1,5,6],[970,1,1,6,7],[972,1,1,7,8]]],[41,1,1,8,9,[[990,1,1,8,9]]],[53,2,2,9,11,[[1119,1,1,9,10],[1123,1,1,10,11]]],[57,1,1,11,12,[[1139,1,1,11,12]]]],[23178,23619,23835,24086,24202,24649,24782,24880,25727,29714,29787,30082]]],["brought",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27513]]]]},{"k":"G4255","v":[["purposeth",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28963]]]]},{"k":"G4256","v":[["proved",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28000]]]]},{"k":"G4257","v":[["before",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29470]]]]},{"k":"G4258","v":[["*",[2,2,[[46,2,2,0,2,[[1089,1,1,0,1],[1090,1,1,1,2]]]],[29043,29045]]],["already",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29043]]],["sinned",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29045]]]]},{"k":"G4259","v":[["porch",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24822]]]]},{"k":"G4260","v":[["*",[5,5,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,3,3,2,5,[[973,2,2,2,4],[974,1,1,4,5]]]],[23230,24234,24900,24911,25009]]],["+",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25009]]],["gone",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24234]]],["on",[1,1,[[39,1,1,0,1,[[932,1,1,0,1]]]],[23230]]],["stricken",[2,2,[[41,2,2,0,2,[[973,2,2,0,2]]]],[24900,24911]]]]},{"k":"G4261","v":[["*",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[25856,27618]]],["+",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27618]]],["forth",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25856]]]]},{"k":"G4262","v":[["sheep",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26212]]]]},{"k":"G4263","v":[["*",[41,37,[[39,11,11,0,11,[[935,1,1,0,1],[937,1,1,1,2],[938,2,2,2,4],[940,2,2,4,6],[943,1,1,6,7],[946,1,1,7,8],[953,2,2,8,10],[954,1,1,10,11]]],[40,2,2,11,13,[[962,1,1,11,12],[970,1,1,12,13]]],[41,2,2,13,15,[[987,2,2,13,15]]],[42,21,17,15,32,[[998,2,2,15,17],[1006,17,13,17,30],[1017,2,2,30,32]]],[43,1,1,32,33,[[1025,1,1,32,33]]],[44,1,1,33,34,[[1053,1,1,33,34]]],[57,1,1,34,35,[[1145,1,1,34,35]]],[59,1,1,35,36,[[1152,1,1,35,36]]],[65,1,1,36,37,[[1184,1,1,36,37]]]],[23331,23415,23423,23433,23500,23501,23657,23739,24040,24041,24085,24441,24781,25592,25594,26109,26110,26482,26483,26484,26485,26488,26489,26492,26493,26494,26496,26497,26507,26508,26914,26915,27208,28152,30261,30424,31006]]],["+",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26482]]],["sheep",[39,35,[[39,10,10,0,10,[[937,1,1,0,1],[938,2,2,1,3],[940,2,2,3,5],[943,1,1,5,6],[946,1,1,6,7],[953,2,2,7,9],[954,1,1,9,10]]],[40,2,2,10,12,[[962,1,1,10,11],[970,1,1,11,12]]],[41,2,2,12,14,[[987,2,2,12,14]]],[42,20,16,14,30,[[998,2,2,14,16],[1006,16,12,16,28],[1017,2,2,28,30]]],[43,1,1,30,31,[[1025,1,1,30,31]]],[44,1,1,31,32,[[1053,1,1,31,32]]],[57,1,1,32,33,[[1145,1,1,32,33]]],[59,1,1,33,34,[[1152,1,1,33,34]]],[65,1,1,34,35,[[1184,1,1,34,35]]]],[23415,23423,23433,23500,23501,23657,23739,24040,24041,24085,24441,24781,25592,25594,26109,26110,26483,26484,26485,26488,26489,26492,26493,26494,26496,26497,26507,26508,26914,26915,27208,28152,30261,30424,31006]]],["sheep's",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23331]]]]},{"k":"G4264","v":[["*",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[23605,27618]]],["drew",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27618]]],["instructed",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23605]]]]},{"k":"G4265","v":[["provided",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30212]]]]},{"k":"G4266","v":[["past",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28016]]]]},{"k":"G4267","v":[["*",[5,5,[[43,1,1,0,1,[[1043,1,1,0,1]]],[44,2,2,1,3,[[1053,1,1,1,2],[1056,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]],[60,1,1,4,5,[[1158,1,1,4,5]]]],[27828,28145,28211,30394,30539]]],["+",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28211]]],["before",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30539]]],["foreknow",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28145]]],["foreordained",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30394]]],["knew",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27828]]]]},{"k":"G4268","v":[["foreknowledge",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[26972,30376]]]]},{"k":"G4269","v":[["*",[2,2,[[53,1,1,0,1,[[1123,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]]],[29767,29812]]],["forefathers",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29812]]],["parents",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29767]]]]},{"k":"G4270","v":[["*",[5,4,[[44,2,1,0,1,[[1060,2,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]],[48,1,1,2,3,[[1099,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[28307,29103,29254,30676]]],["+",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30676]]],["afore",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29254]]],["aforetime",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28307]]],["forth",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29103]]],["written",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28307]]]]},{"k":"G4271","v":[["*",[3,3,[[53,2,2,0,2,[[1123,2,2,0,2]]],[57,1,1,2,3,[[1139,1,1,2,3]]]],[29787,29788,30078]]],["beforehand",[2,2,[[53,2,2,0,2,[[1123,2,2,0,2]]]],[29787,29788]]],["evident",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30078]]]]},{"k":"G4272","v":[["given",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28244]]]]},{"k":"G4273","v":[["*",[3,3,[[41,1,1,0,1,[[978,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[54,1,1,2,3,[[1127,1,1,2,3]]]],[25162,27168,29857]]],["Traitors",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29857]]],["betrayers",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27168]]],["traitor",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25162]]]]},{"k":"G4274","v":[["forerunner",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30064]]]]},{"k":"G4275","v":[["*",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]]],[26980,29110]]],["before",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26980]]],["foreseeing",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29110]]]]},{"k":"G4276","v":[["trusted",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29218]]]]},{"k":"G4277","v":[["*",[3,3,[[43,1,1,0,1,[[1018,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]]],[26939,29183,29609]]],["before",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26939]]],["forewarned",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29609]]],["past",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29183]]]]},{"k":"G4278","v":[["*",[2,2,[[46,2,2,0,2,[[1085,2,2,0,2]]]],[28938,28942]]],["before",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28942]]],["begun",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28938]]]]},{"k":"G4279","v":[["afore",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27932]]]]},{"k":"G4280","v":[["*",[9,9,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]],[46,2,2,3,5,[[1084,1,1,3,4],[1090,1,1,4,5]]],[47,1,1,5,6,[[1091,1,1,5,6]]],[57,1,1,6,7,[[1142,1,1,6,7]]],[60,1,1,7,8,[[1158,1,1,7,8]]],[64,1,1,8,9,[[1166,1,1,8,9]]]],[23982,24740,28184,28919,29045,29066,30148,30524,30689]]],["+",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23982]]],["before",[7,7,[[44,1,1,0,1,[[1054,1,1,0,1]]],[46,2,2,1,3,[[1084,1,1,1,2],[1090,1,1,2,3]]],[47,1,1,3,4,[[1091,1,1,3,4]]],[57,1,1,4,5,[[1142,1,1,4,5]]],[60,1,1,5,6,[[1158,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[28184,28919,29045,29066,30148,30524,30689]]],["foretold",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24740]]]]},{"k":"G4281","v":[["*",[9,9,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[970,1,1,2,3]]],[41,2,2,3,5,[[973,1,1,3,4],[994,1,1,4,5]]],[43,3,3,5,8,[[1029,1,1,5,6],[1037,2,2,6,8]]],[46,1,1,8,9,[[1086,1,1,8,9]]]],[24093,24440,24789,24910,25911,27347,27631,27639,28961]]],["before",[4,4,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,2,2,1,3,[[1037,2,2,1,3]]],[46,1,1,3,4,[[1086,1,1,3,4]]]],[25911,27631,27639,28961]]],["forward",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24789]]],["go",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24910]]],["on",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27347]]],["outwent",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24440]]],["went",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24093]]]]},{"k":"G4282","v":[["*",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]]],[28178,29239]]],["ordained",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29239]]],["prepared",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28178]]]]},{"k":"G4283","v":[["gospel",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29110]]]]},{"k":"G4284","v":[["better",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28000]]]]},{"k":"G4285","v":[["preferring",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28255]]]]},{"k":"G4286","v":[["*",[12,12,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[43,2,2,3,5,[[1028,1,1,3,4],[1044,1,1,4,5]]],[44,2,2,5,7,[[1053,1,1,5,6],[1054,1,1,6,7]]],[48,2,2,7,9,[[1097,1,1,7,8],[1099,1,1,8,9]]],[54,2,2,9,11,[[1125,1,1,9,10],[1127,1,1,10,11]]],[57,1,1,11,12,[[1141,1,1,11,12]]]],[23493,24286,25150,27330,27868,28144,28166,29217,29262,29818,29863,30107]]],["+",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[57,1,1,3,4,[[1141,1,1,3,4]]]],[23493,24286,25150,30107]]],["purpose",[8,8,[[43,2,2,0,2,[[1028,1,1,0,1],[1044,1,1,1,2]]],[44,2,2,2,4,[[1053,1,1,2,3],[1054,1,1,3,4]]],[48,2,2,4,6,[[1097,1,1,4,5],[1099,1,1,5,6]]],[54,2,2,6,8,[[1125,1,1,6,7],[1127,1,1,7,8]]]],[27330,27868,28144,28166,29217,29262,29818,29863]]]]},{"k":"G4287","v":[["appointed",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29133]]]]},{"k":"G4288","v":[["*",[5,5,[[43,1,1,0,1,[[1034,1,1,0,1]]],[46,4,4,1,5,[[1085,3,3,1,4],[1086,1,1,4,5]]]],[27534,28943,28944,28951,28958]]],["+",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28958]]],["mind",[3,3,[[43,1,1,0,1,[[1034,1,1,0,1]]],[46,2,2,1,3,[[1085,2,2,1,3]]]],[27534,28944,28951]]],["readiness",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28943]]]]},{"k":"G4289","v":[["*",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]]],[24095,24792,27945]]],["ready",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[24792,27945]]],["willing",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24095]]]]},{"k":"G4290","v":[["mind",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30467]]]]},{"k":"G4291","v":[["*",[8,8,[[44,1,1,0,1,[[1057,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]],[53,4,4,2,6,[[1121,3,3,2,5],[1123,1,1,5,6]]],[55,2,2,6,8,[[1131,2,2,6,8]]]],[28253,29633,29735,29736,29743,29780,29931,29937]]],["maintain",[2,2,[[55,2,2,0,2,[[1131,2,2,0,2]]]],[29931,29937]]],["over",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29633]]],["rule",[2,2,[[53,2,2,0,2,[[1121,1,1,0,1],[1123,1,1,1,2]]]],[29736,29780]]],["ruleth",[2,2,[[44,1,1,0,1,[[1057,1,1,0,1]]],[53,1,1,1,2,[[1121,1,1,1,2]]]],[28253,29735]]],["ruling",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29743]]]]},{"k":"G4292","v":[["provoking",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29188]]]]},{"k":"G4293","v":[["*",[4,4,[[43,3,3,0,3,[[1020,2,2,0,2],[1024,1,1,2,3]]],[46,1,1,3,4,[[1086,1,1,3,4]]]],[27014,27020,27168,28961]]],["before",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[46,1,1,1,2,[[1086,1,1,1,2]]]],[27168,28961]]],["foretold",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27020]]],["shewed",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27014]]]]},{"k":"G4294","v":[["beforehand",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28961]]]]},{"k":"G4295","v":[["*",[5,5,[[46,1,1,0,1,[[1085,1,1,0,1]]],[57,3,3,1,4,[[1138,1,1,1,2],[1144,2,2,2,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[28944,30062,30213,30214,30679]]],["before",[3,3,[[57,3,3,0,3,[[1138,1,1,0,1],[1144,2,2,1,3]]]],[30062,30213,30214]]],["first",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28944]]],["forth",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30679]]]]},{"k":"G4296","v":[["preached",[2,2,[[43,2,2,0,2,[[1020,1,1,0,1],[1030,1,1,1,2]]]],[27016,27386]]]]},{"k":"G4297","v":[["*",[3,3,[[49,2,2,0,2,[[1103,2,2,0,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]]],[29373,29386,29762]]],["furtherance",[2,2,[[49,2,2,0,2,[[1103,2,2,0,2]]]],[29373,29386]]],["profiting",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29762]]]]},{"k":"G4298","v":[["*",[6,6,[[41,1,1,0,1,[[974,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]],[47,1,1,2,3,[[1091,1,1,2,3]]],[54,3,3,3,6,[[1126,1,1,3,4],[1127,2,2,4,6]]]],[25025,28278,29071,29843,29862,29866]]],["+",[2,2,[[44,1,1,0,1,[[1058,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[28278,29866]]],["increase",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29843]]],["increased",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25025]]],["proceed",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29862]]],["profited",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29071]]]]},{"k":"G4299","v":[["another",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29784]]]]},{"k":"G4300","v":[["before",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29119]]]]},{"k":"G4301","v":[["*",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[45,1,1,1,2,[[1072,1,1,1,2]]],[47,1,1,2,3,[[1096,1,1,2,3]]]],[24762,28621,29189]]],["aforehand",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24762]]],["before",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28621]]],["overtaken",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29189]]]]},{"k":"G4302","v":[["*",[3,3,[[46,1,1,0,1,[[1090,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[51,1,1,2,3,[[1113,1,1,2,3]]]],[29045,29183,29594]]],["+",[2,2,[[47,1,1,0,1,[[1095,1,1,0,1]]],[51,1,1,1,2,[[1113,1,1,1,2]]]],[29183,29594]]],["foretell",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29045]]]]},{"k":"G4303","v":[["beforehand",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30385]]]]},{"k":"G4304","v":[["before",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25840]]]]},{"k":"G4305","v":[["+",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24728]]]]},{"k":"G4306","v":[["*",[3,3,[[44,1,1,0,1,[[1057,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]]],[28262,28953,29771]]],["+",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29771]]],["Provide",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28262]]],["for",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28953]]]]},{"k":"G4307","v":[["*",[2,2,[[43,1,1,0,1,[[1041,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]]],[27771,28280]]],["providence",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27771]]],["provision",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28280]]]]},{"k":"G4308","v":[["*",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1038,1,1,1,2]]]],[26974,27693]]],["before",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27693]]],["foresaw",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26974]]]]},{"k":"G4309","v":[["*",[6,6,[[43,1,1,0,1,[[1021,1,1,0,1]]],[44,2,2,1,3,[[1053,2,2,1,3]]],[45,1,1,3,4,[[1063,1,1,3,4]]],[48,2,2,4,6,[[1097,2,2,4,6]]]],[27050,28145,28146,28401,29211,29217]]],["before",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27050]]],["ordained",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28401]]],["predestinate",[2,2,[[44,2,2,0,2,[[1053,2,2,0,2]]]],[28145,28146]]],["predestinated",[2,2,[[48,2,2,0,2,[[1097,2,2,0,2]]]],[29211,29217]]]]},{"k":"G4310","v":[["before",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29572]]]]},{"k":"G4311","v":[["*",[9,9,[[43,3,3,0,3,[[1032,1,1,0,1],[1037,1,1,1,2],[1038,1,1,2,3]]],[44,1,1,3,4,[[1060,1,1,3,4]]],[45,2,2,4,6,[[1077,2,2,4,6]]],[46,1,1,6,7,[[1078,1,1,6,7]]],[55,1,1,7,8,[[1131,1,1,7,8]]],[63,1,1,8,9,[[1165,1,1,8,9]]]],[27445,27664,27669,28327,28782,28787,28816,29936,30664]]],["+",[4,4,[[43,1,1,0,1,[[1038,1,1,0,1]]],[45,2,2,1,3,[[1077,2,2,1,3]]],[55,1,1,3,4,[[1131,1,1,3,4]]]],[27669,28782,28787,29936]]],["accompanied",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27664]]],["journey",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30664]]],["way",[3,3,[[43,1,1,0,1,[[1032,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[46,1,1,2,3,[[1078,1,1,2,3]]]],[27445,28327,28816]]]]},{"k":"G4312","v":[["*",[2,2,[[43,1,1,0,1,[[1036,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[27621,29857]]],["heady",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29857]]],["rashly",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27621]]]]},{"k":"G4313","v":[["*",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[24969,27156]]],["before",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27156]]],["go",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24969]]]]},{"k":"G4314","v":[["*",[695,646,[[39,39,38,0,38,[[930,1,1,0,1],[931,5,5,1,6],[932,1,1,6,7],[935,1,1,7,8],[938,2,2,8,10],[939,1,1,10,11],[941,2,2,11,13],[942,3,3,13,16],[945,1,1,16,17],[947,2,2,17,19],[949,4,4,19,23],[951,2,2,23,25],[953,3,3,25,28],[954,7,6,28,34],[955,4,4,34,38]]],[40,66,64,38,102,[[957,6,6,38,44],[958,3,3,44,47],[959,4,4,47,51],[960,3,2,51,53],[961,4,4,53,57],[962,7,7,57,64],[963,3,3,64,67],[964,1,1,67,68],[965,9,8,68,76],[966,6,6,76,82],[967,5,5,82,87],[968,7,7,87,94],[970,5,5,94,99],[971,2,2,99,101],[972,1,1,101,102]]],[41,163,156,102,258,[[973,11,11,102,113],[974,5,5,113,118],[975,4,4,118,122],[976,9,8,122,130],[977,8,8,130,138],[978,4,4,138,142],[979,11,10,142,152],[980,7,7,152,159],[981,11,11,159,170],[982,4,4,170,174],[983,6,5,174,179],[984,9,8,179,187],[985,3,3,187,190],[986,9,8,190,198],[987,4,4,198,202],[988,5,4,202,206],[989,2,2,206,208],[990,7,7,208,215],[991,10,10,215,225],[992,9,9,225,234],[993,1,1,234,235],[994,6,6,235,241],[995,7,7,241,248],[996,11,10,248,258]]],[42,101,90,258,348,[[997,5,5,258,263],[998,1,1,263,264],[999,6,5,264,269],[1000,8,8,269,277],[1001,4,4,277,281],[1002,13,11,281,292],[1003,7,6,292,298],[1004,5,5,298,303],[1005,1,1,303,304],[1006,2,2,304,306],[1007,8,8,306,314],[1008,2,2,314,316],[1009,4,4,316,320],[1010,7,6,320,326],[1012,8,6,326,332],[1013,2,2,332,334],[1014,5,5,334,339],[1015,2,2,339,341],[1016,9,5,341,346],[1017,2,2,346,348]]],[43,137,125,348,473,[[1018,1,1,348,349],[1019,6,6,349,355],[1020,8,6,355,361],[1021,7,6,361,367],[1022,3,3,367,370],[1023,1,1,370,371],[1024,2,2,371,373],[1025,4,4,373,377],[1026,11,11,377,388],[1027,7,6,388,394],[1028,5,5,394,399],[1029,5,5,399,404],[1030,5,4,404,408],[1031,1,1,408,409],[1032,6,5,409,414],[1033,2,2,414,416],[1034,4,3,416,419],[1035,3,3,419,422],[1036,5,4,422,426],[1037,2,2,426,428],[1038,4,4,428,432],[1039,8,8,432,440],[1040,9,7,440,447],[1041,3,3,447,450],[1042,4,4,450,454],[1043,8,7,454,461],[1044,3,3,461,464],[1045,10,9,464,473]]],[44,18,17,473,490,[[1046,2,2,473,475],[1048,1,1,475,476],[1049,1,1,476,477],[1050,1,1,477,478],[1053,2,2,478,480],[1055,3,2,480,482],[1060,8,8,482,490]]],[45,24,23,490,513,[[1063,2,2,490,492],[1065,3,3,492,495],[1067,2,2,495,497],[1068,3,2,497,499],[1071,1,1,499,500],[1073,2,2,500,502],[1074,1,1,502,503],[1075,3,3,503,506],[1076,1,1,506,507],[1077,6,6,507,513]]],[46,32,32,513,545,[[1078,5,5,513,518],[1079,2,2,518,520],[1080,3,3,520,523],[1081,2,2,523,525],[1082,3,3,525,528],[1083,3,3,528,531],[1084,4,4,531,535],[1085,2,2,535,537],[1087,1,1,537,538],[1088,2,2,538,540],[1089,3,3,540,543],[1090,2,2,543,545]]],[47,9,7,545,552,[[1091,2,2,545,547],[1092,3,2,547,549],[1094,2,2,549,551],[1096,2,1,551,552]]],[48,15,11,552,563,[[1098,1,1,552,553],[1099,2,2,553,555],[1100,3,3,555,558],[1101,1,1,558,559],[1102,8,4,559,563]]],[49,4,4,563,567,[[1103,1,1,563,564],[1104,2,2,564,566],[1106,1,1,566,567]]],[50,6,6,567,573,[[1108,1,1,567,568],[1109,2,2,568,570],[1110,3,3,570,573]]],[51,12,11,573,584,[[1111,3,2,573,575],[1112,4,4,575,579],[1113,3,3,579,582],[1114,1,1,582,583],[1115,1,1,583,584]]],[52,3,3,584,587,[[1117,1,1,584,585],[1118,2,2,585,587]]],[53,4,4,587,591,[[1119,1,1,587,588],[1121,1,1,588,589],[1122,2,2,589,591]]],[54,7,4,591,595,[[1126,1,1,591,592],[1127,5,2,592,594],[1128,1,1,594,595]]],[55,5,4,595,599,[[1129,1,1,595,596],[1131,4,3,596,599]]],[56,3,3,599,602,[[1132,3,3,599,602]]],[57,19,19,602,621,[[1133,3,3,602,605],[1134,1,1,605,606],[1136,1,1,606,607],[1137,4,4,607,611],[1138,1,1,611,612],[1139,1,1,612,613],[1141,2,2,613,615],[1142,1,1,615,616],[1143,1,1,616,617],[1144,3,3,617,620],[1145,1,1,620,621]]],[58,2,2,621,623,[[1149,2,2,621,623]]],[59,3,3,623,626,[[1152,1,1,623,624],[1153,1,1,624,625],[1154,1,1,625,626]]],[60,2,2,626,628,[[1156,1,1,626,627],[1158,1,1,627,628]]],[61,8,6,628,634,[[1159,1,1,628,629],[1160,1,1,629,630],[1161,1,1,630,631],[1163,5,3,631,634]]],[62,3,2,634,636,[[1164,3,2,634,636]]],[63,1,1,636,637,[[1165,1,1,636,637]]],[65,9,9,637,646,[[1167,2,2,637,639],[1169,1,1,639,640],[1176,1,1,640,641],[1178,2,2,641,643],[1179,1,1,643,644],[1187,1,1,644,645],[1188,1,1,645,646]]]],[23181,23197,23202,23205,23206,23207,23215,23331,23423,23430,23487,23541,23595,23622,23625,23626,23714,23770,23776,23827,23858,23860,23863,23952,23955,24017,24044,24047,24068,24072,24094,24099,24109,24111,24133,24143,24148,24191,24220,24242,24247,24248,24255,24260,24262,24263,24273,24295,24296,24301,24319,24324,24364,24375,24379,24383,24386,24410,24432,24437,24440,24452,24455,24458,24464,24488,24494,24516,24548,24552,24554,24555,24557,24558,24571,24572,24589,24593,24595,24602,24614,24638,24641,24644,24647,24667,24671,24675,24677,24679,24680,24685,24686,24691,24758,24764,24803,24807,24808,24857,24869,24876,24906,24911,24912,24920,24921,24927,24936,24948,24954,24966,24973,24988,24993,25007,25021,25022,25034,25037,25038,25039,25067,25074,25084,25086,25089,25099,25103,25106,25111,25117,25129,25137,25138,25140,25141,25143,25149,25155,25157,25193,25198,25199,25201,25202,25214,25215,25219,25235,25239,25245,25249,25258,25264,25266,25267,25270,25280,25304,25314,25315,25324,25334,25342,25344,25351,25358,25360,25363,25365,25386,25389,25392,25406,25410,25411,25444,25458,25460,25462,25474,25475,25481,25500,25506,25517,25525,25541,25552,25556,25559,25560,25576,25578,25579,25581,25585,25591,25606,25608,25610,25621,25640,25646,25650,25652,25673,25691,25695,25697,25699,25704,25719,25728,25736,25739,25740,25744,25760,25764,25766,25768,25770,25773,25781,25782,25784,25788,25789,25793,25798,25802,25820,25864,25879,25887,25909,25916,25920,25934,25939,25942,25947,25949,25950,25957,25963,25996,26001,26003,26005,26008,26009,26016,26020,26023,26035,26045,26046,26073,26086,26091,26098,26122,26124,26140,26141,26146,26171,26186,26189,26191,26196,26203,26204,26205,26243,26245,26250,26255,26262,26274,26285,26291,26292,26294,26301,26302,26309,26322,26325,26331,26361,26363,26365,26373,26378,26383,26384,26388,26412,26438,26453,26516,26522,26526,26527,26538,26542,26544,26552,26568,26569,26599,26612,26631,26633,26636,26658,26671,26674,26680,26686,26691,26696,26731,26733,26736,26742,26743,26754,26770,26772,26798,26801,26809,26814,26823,26849,26864,26869,26877,26878,26879,26884,26920,26921,26930,26956,26961,26978,26986,26987,26996,26998,27006,27007,27008,27018,27021,27023,27030,27037,27041,27045,27046,27068,27069,27094,27102,27119,27147,27190,27196,27200,27202,27218,27221,27222,27226,27227,27231,27243,27245,27248,27254,27256,27262,27272,27274,27280,27287,27292,27309,27310,27318,27327,27337,27342,27345,27352,27357,27358,27377,27393,27394,27398,27425,27444,27449,27467,27475,27478,27519,27520,27525,27538,27540,27563,27571,27578,27587,27588,27616,27623,27632,27644,27675,27682,27701,27703,27705,27709,27712,27714,27717,27719,27725,27729,27737,27749,27751,27752,27756,27758,27764,27781,27785,27788,27812,27815,27817,27818,27824,27829,27832,27837,27849,27851,27854,27858,27867,27889,27903,27907,27909,27916,27920,27922,27924,27925,27929,27940,27943,28017,28024,28048,28134,28147,28189,28209,28305,28320,28325,28326,28327,28332,28333,28335,28395,28397,28451,28452,28454,28468,28472,28492,28522,28578,28636,28641,28677,28684,28690,28704,28752,28781,28782,28783,28786,28787,28788,28812,28815,28816,28818,28820,28825,28840,28842,28845,28857,28861,28865,28885,28887,28889,28909,28912,28913,28919,28920,28924,28928,28949,28951,28975,28997,28998,29036,29039,29043,29044,29050,29074,29075,29086,29095,29149,29151,29198,29247,29255,29265,29284,29286,29301,29335,29346,29348,29349,29359,29387,29416,29421,29448,29517,29530,29536,29547,29550,29552,29568,29569,29571,29572,29587,29588,29594,29596,29601,29615,29635,29666,29679,29688,29712,29745,29754,29755,29851,29869,29870,29879,29908,29924,29925,29935,29943,29951,29953,29970,29971,29976,29994,30027,30031,30035,30037,30044,30055,30085,30118,30125,30149,30190,30216,30222,30223,30254,30342,30351,30403,30439,30458,30482,30538,30542,30551,30600,30638,30640,30641,30655,30657,30672,30710,30714,30766,30870,30896,30903,30914,31062,31098]]],["+",[24,24,[[40,3,3,0,3,[[960,1,1,0,1],[961,1,1,1,2],[964,1,1,2,3]]],[41,9,9,3,12,[[974,1,1,3,4],[976,1,1,4,5],[978,2,2,5,7],[980,1,1,7,8],[986,1,1,8,9],[996,3,3,9,12]]],[42,1,1,12,13,[[1000,1,1,12,13]]],[43,4,4,13,17,[[1019,2,2,13,15],[1043,1,1,15,16],[1045,1,1,16,17]]],[48,1,1,17,18,[[1099,1,1,17,18]]],[57,1,1,18,19,[[1133,1,1,18,19]]],[59,2,2,19,21,[[1153,1,1,19,20],[1154,1,1,20,21]]],[62,1,1,21,22,[[1164,1,1,21,22]]],[63,1,1,22,23,[[1165,1,1,22,23]]],[65,1,1,23,24,[[1167,1,1,23,24]]]],[24364,24383,24516,24988,25067,25149,25157,25270,25581,26005,26008,26023,26189,26956,26961,27854,27909,29255,29970,30439,30458,30657,30672,30710]]],["For",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[24593,29284]]],["Of",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30190]]],["To",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[24920,27812,28017,30403]]],["about",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24262]]],["according",[2,2,[[46,1,1,0,1,[[1082,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]]],[28887,29095]]],["against",[24,20,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,3,3,2,5,[[976,1,1,2,3],[977,1,1,3,4],[992,1,1,4,5]]],[43,8,8,5,13,[[1023,1,1,5,6],[1026,2,2,6,8],[1036,1,1,8,9],[1040,1,1,9,10],[1041,1,1,10,11],[1042,1,1,11,12],[1043,1,1,12,13]]],[45,1,1,13,14,[[1067,1,1,13,14]]],[48,6,2,14,16,[[1102,6,2,14,16]]],[50,2,2,16,18,[[1109,2,2,16,18]]],[57,1,1,18,19,[[1144,1,1,18,19]]],[65,1,1,19,20,[[1179,1,1,19,20]]]],[23215,24685,25074,25137,25798,27102,27221,27245,27623,27764,27788,27815,27837,28468,29348,29349,29530,29536,30216,30914]]],["among",[19,19,[[40,7,7,0,7,[[957,1,1,0,1],[965,2,2,1,3],[966,1,1,3,4],[968,1,1,4,5],[971,1,1,5,6],[972,1,1,6,7]]],[41,3,3,7,10,[[976,1,1,7,8],[992,1,1,8,9],[994,1,1,9,10]]],[42,5,5,10,15,[[1002,1,1,10,11],[1003,1,1,11,12],[1008,1,1,12,13],[1012,1,1,13,14],[1015,1,1,14,15]]],[43,3,3,15,18,[[1021,1,1,15,16],[1045,2,2,16,18]]],[46,1,1,18,19,[[1089,1,1,18,19]]]],[24242,24571,24572,24614,24680,24857,24876,25099,25793,25887,26309,26363,26599,26743,26849,27037,27903,27924,29043]]],["at",[15,14,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,5,5,1,6,[[957,1,1,1,2],[961,1,1,2,3],[963,1,1,3,4],[967,1,1,4,5],[970,1,1,5,6]]],[41,3,3,6,9,[[988,1,1,6,7],[991,2,2,7,9]]],[42,4,3,9,12,[[1014,1,1,9,10],[1016,3,2,10,12]]],[43,1,1,12,13,[[1020,1,1,12,13]]],[65,1,1,13,14,[[1167,1,1,13,14]]]],[24072,24248,24386,24488,24641,24808,25640,25760,25768,26801,26878,26879,26998,30714]]],["because",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23770]]],["before",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[44,1,1,2,3,[[1049,1,1,2,3]]]],[24452,27849,28024]]],["between",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25947]]],["by",[4,4,[[40,2,2,0,2,[[960,1,1,0,1],[967,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[43,1,1,3,4,[[1022,1,1,3,4]]]],[24324,24644,25920,27069]]],["for",[23,19,[[41,1,1,0,1,[[980,1,1,0,1]]],[42,2,2,1,3,[[1001,1,1,1,2],[1009,1,1,2,3]]],[43,3,3,3,6,[[1020,1,1,3,4],[1030,1,1,4,5],[1044,1,1,5,6]]],[45,4,3,6,9,[[1068,3,2,6,8],[1071,1,1,8,9]]],[46,2,2,9,11,[[1079,1,1,9,10],[1084,1,1,10,11]]],[47,1,1,11,12,[[1092,1,1,11,12]]],[51,1,1,12,13,[[1112,1,1,12,13]]],[53,1,1,13,14,[[1119,1,1,13,14]]],[54,4,1,14,15,[[1127,4,1,14,15]]],[56,1,1,15,16,[[1132,1,1,15,16]]],[57,2,2,16,18,[[1144,2,2,16,18]]],[58,1,1,18,19,[[1149,1,1,18,19]]]],[25258,26245,26658,27006,27377,27889,28492,28522,28578,28840,28924,29086,29587,29712,29869,29953,30222,30223,30351]]],["in",[3,3,[[41,2,2,0,2,[[984,1,1,0,1],[996,1,1,1,2]]],[61,1,1,2,3,[[1163,1,1,2,3]]]],[25462,26003,30638]]],["of",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25585]]],["pertain",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28320]]],["things",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29994]]],["to",[172,168,[[39,15,15,0,15,[[930,1,1,0,1],[931,2,2,1,3],[935,1,1,3,4],[938,2,2,4,6],[942,1,1,6,7],[945,1,1,7,8],[949,1,1,8,9],[953,1,1,9,10],[954,3,3,10,13],[955,2,2,13,15]]],[40,11,11,15,26,[[957,2,2,15,17],[959,1,1,17,18],[961,1,1,18,19],[965,1,1,19,20],[966,2,2,20,22],[967,2,2,22,24],[968,1,1,24,25],[970,1,1,25,26]]],[41,34,33,26,59,[[973,3,3,26,29],[978,1,1,29,30],[979,5,5,30,35],[980,3,3,35,38],[981,2,2,38,40],[983,1,1,40,41],[984,3,3,41,44],[986,3,3,44,47],[987,3,3,47,50],[988,2,1,50,51],[991,1,1,51,52],[992,2,2,52,54],[993,1,1,54,55],[994,1,1,55,56],[995,3,3,56,59]]],[42,40,37,59,96,[[997,2,2,59,61],[999,4,4,61,65],[1000,1,1,65,66],[1001,2,2,66,68],[1002,6,5,68,73],[1003,2,2,73,75],[1004,1,1,75,76],[1005,1,1,76,77],[1007,3,3,77,80],[1009,2,2,80,82],[1010,1,1,82,83],[1012,5,5,83,88],[1013,2,2,88,90],[1014,1,1,90,91],[1015,1,1,91,92],[1016,4,2,92,94],[1017,2,2,94,96]]],[43,27,27,96,123,[[1021,2,2,96,98],[1025,1,1,98,99],[1026,5,5,99,104],[1027,4,4,104,108],[1028,2,2,108,110],[1029,1,1,110,111],[1031,1,1,111,112],[1033,1,1,112,113],[1034,1,1,113,114],[1037,1,1,114,115],[1040,3,3,115,118],[1042,1,1,118,119],[1043,1,1,119,120],[1044,1,1,120,121],[1045,2,2,121,123]]],[44,7,7,123,130,[[1053,1,1,123,124],[1055,2,2,124,126],[1060,4,4,126,130]]],[45,8,8,130,138,[[1063,1,1,130,131],[1065,2,2,131,133],[1067,1,1,133,134],[1073,1,1,134,135],[1074,1,1,135,136],[1075,1,1,136,137],[1076,1,1,137,138]]],[46,15,15,138,153,[[1078,1,1,138,139],[1079,1,1,139,140],[1080,3,3,140,143],[1081,2,2,143,145],[1082,1,1,145,146],[1084,1,1,146,147],[1085,1,1,147,148],[1087,1,1,148,149],[1088,1,1,149,150],[1089,1,1,150,151],[1090,2,2,151,153]]],[47,1,1,153,154,[[1091,1,1,153,154]]],[48,1,1,154,155,[[1100,1,1,154,155]]],[49,2,2,155,157,[[1103,1,1,155,156],[1104,1,1,156,157]]],[50,1,1,157,158,[[1108,1,1,157,158]]],[51,2,2,158,160,[[1111,2,2,158,160]]],[55,1,1,160,161,[[1131,1,1,160,161]]],[57,5,5,161,166,[[1133,1,1,161,162],[1137,2,2,162,164],[1138,1,1,164,165],[1141,1,1,165,166]]],[58,1,1,166,167,[[1149,1,1,166,167]]],[65,1,1,167,168,[[1169,1,1,167,168]]]],[23181,23197,23206,23331,23423,23430,23626,23714,23860,24017,24072,24099,24111,24133,24143,24255,24260,24295,24379,24552,24595,24638,24647,24667,24675,24807,24936,24948,24966,25193,25199,25201,25214,25239,25245,25249,25264,25280,25315,25324,25411,25500,25506,25517,25559,25560,25579,25606,25608,25610,25646,25766,25788,25789,25864,25909,25939,25942,25950,26086,26091,26122,26140,26141,26146,26191,26250,26255,26274,26292,26294,26301,26325,26373,26378,26412,26453,26542,26568,26569,26633,26636,26686,26731,26736,26742,26743,26754,26770,26772,26798,26864,26869,26884,26920,26921,27045,27046,27200,27218,27226,27243,27248,27256,27262,27272,27280,27292,27310,27337,27357,27425,27519,27538,27644,27752,27756,27764,27817,27832,27867,27907,27922,28147,28189,28209,28305,28325,28327,28333,28395,28451,28452,28472,28641,28677,28690,28752,28812,28825,28842,28845,28857,28861,28865,28889,28919,28951,28975,28997,29036,29044,29050,29074,29301,29387,29416,29517,29568,29569,29924,29976,30031,30044,30055,30118,30342,30766]]],["toward",[10,10,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]],[46,2,2,2,4,[[1078,1,1,2,3],[1084,1,1,3,4]]],[49,1,1,4,5,[[1104,1,1,4,5]]],[50,1,1,5,6,[[1110,1,1,5,6]]],[51,2,2,6,8,[[1114,1,1,6,7],[1115,1,1,7,8]]],[56,1,1,8,9,[[1132,1,1,8,9]]],[61,1,1,9,10,[[1161,1,1,9,10]]]],[26020,27785,28818,28920,29421,29547,29615,29635,29943,30600]]],["unto",[339,327,[[39,19,19,0,19,[[931,3,3,0,3],[939,1,1,3,4],[941,1,1,4,5],[942,2,2,5,7],[947,1,1,7,8],[949,3,3,8,11],[951,2,2,11,13],[953,2,2,13,15],[954,2,2,15,17],[955,2,2,17,19]]],[40,27,27,19,46,[[957,2,2,19,21],[958,2,2,21,23],[959,3,3,23,26],[960,1,1,26,27],[961,1,1,27,28],[962,5,5,28,33],[963,2,2,33,35],[965,3,3,35,38],[966,2,2,38,40],[968,4,4,40,44],[970,1,1,44,45],[971,1,1,45,46]]],[41,100,97,46,143,[[973,7,7,46,53],[974,4,4,53,57],[975,4,4,57,61],[976,6,5,61,66],[977,7,7,66,73],[978,1,1,73,74],[979,6,5,74,79],[980,2,2,79,81],[981,8,8,81,89],[982,4,4,89,93],[983,5,4,93,97],[984,5,5,97,102],[985,3,3,102,105],[986,4,4,105,109],[987,1,1,109,110],[988,2,2,110,112],[989,2,2,112,114],[990,6,6,114,120],[991,7,7,120,127],[992,4,4,127,131],[994,3,3,131,134],[995,3,3,134,137],[996,6,6,137,143]]],[42,47,44,143,187,[[997,1,1,143,144],[998,1,1,144,145],[999,2,2,145,147],[1000,6,6,147,153],[1001,1,1,153,154],[1002,6,5,154,159],[1003,4,4,159,163],[1004,4,4,163,167],[1006,2,2,167,169],[1007,5,5,169,174],[1008,1,1,174,175],[1009,1,1,175,176],[1010,6,5,176,181],[1012,2,1,181,182],[1014,3,3,182,185],[1016,2,2,185,187]]],[43,81,79,187,266,[[1018,1,1,187,188],[1019,3,3,188,191],[1020,5,4,191,195],[1021,4,4,195,199],[1022,2,2,199,201],[1024,2,2,201,203],[1025,3,3,203,206],[1026,4,4,206,210],[1027,3,3,210,213],[1028,2,2,213,215],[1029,4,4,215,219],[1030,4,4,219,223],[1032,5,5,223,228],[1033,1,1,228,229],[1034,2,2,229,231],[1035,3,3,231,234],[1036,4,3,234,237],[1037,1,1,237,238],[1038,4,4,238,242],[1039,8,8,242,250],[1040,5,5,250,255],[1042,1,1,255,256],[1043,4,4,256,260],[1044,1,1,260,261],[1045,5,5,261,266]]],[44,6,6,266,272,[[1046,2,2,266,268],[1055,1,1,268,269],[1060,3,3,269,272]]],[45,7,7,272,279,[[1065,1,1,272,273],[1073,1,1,273,274],[1075,2,2,274,276],[1077,3,3,276,279]]],[46,7,7,279,286,[[1078,3,3,279,282],[1083,1,1,282,283],[1084,1,1,283,284],[1085,1,1,284,285],[1089,1,1,285,286]]],[47,2,1,286,287,[[1096,2,1,286,287]]],[48,5,5,287,292,[[1098,1,1,287,288],[1099,1,1,288,289],[1101,1,1,289,290],[1102,2,2,290,292]]],[49,1,1,292,293,[[1106,1,1,292,293]]],[50,2,2,293,295,[[1110,2,2,293,295]]],[51,6,6,295,301,[[1111,1,1,295,296],[1112,3,3,296,299],[1113,2,2,299,301]]],[53,3,3,301,304,[[1121,1,1,301,302],[1122,2,2,302,304]]],[54,3,3,304,307,[[1126,1,1,304,305],[1127,1,1,305,306],[1128,1,1,306,307]]],[55,4,3,307,310,[[1129,1,1,307,308],[1131,3,2,308,310]]],[57,6,6,310,316,[[1133,1,1,310,311],[1137,2,2,311,313],[1139,1,1,313,314],[1141,1,1,314,315],[1145,1,1,315,316]]],[60,2,2,316,318,[[1156,1,1,316,317],[1158,1,1,317,318]]],[61,4,2,318,320,[[1163,4,2,318,320]]],[62,2,2,320,322,[[1164,2,2,320,322]]],[65,5,5,322,327,[[1176,1,1,322,323],[1178,2,2,323,325],[1187,1,1,325,326],[1188,1,1,326,327]]]],[23202,23205,23207,23487,23541,23622,23625,23776,23827,23858,23863,23952,23955,24044,24047,24068,24094,24148,24191,24220,24247,24263,24273,24296,24301,24319,24324,24375,24432,24437,24440,24455,24458,24464,24494,24555,24557,24558,24589,24602,24677,24679,24686,24691,24764,24869,24906,24911,24912,24921,24927,24954,24973,24993,25007,25021,25022,25034,25037,25038,25039,25084,25086,25089,25103,25106,25111,25117,25129,25138,25140,25141,25143,25155,25198,25202,25215,25219,25235,25266,25267,25304,25314,25334,25344,25351,25358,25360,25363,25365,25386,25389,25392,25406,25410,25444,25458,25460,25474,25475,25481,25500,25525,25541,25552,25556,25560,25576,25578,25591,25621,25650,25652,25673,25691,25695,25697,25704,25719,25728,25736,25739,25740,25744,25764,25770,25773,25781,25782,25802,25820,25879,25916,25934,25949,25957,25963,25996,26001,26008,26009,26016,26035,26073,26098,26124,26146,26171,26186,26196,26203,26204,26205,26243,26262,26285,26291,26302,26322,26331,26361,26365,26378,26383,26384,26388,26438,26516,26522,26526,26527,26538,26544,26552,26612,26631,26671,26674,26680,26691,26696,26733,26809,26814,26823,26877,26884,26930,26978,26986,26987,27007,27008,27018,27021,27023,27030,27041,27045,27068,27094,27119,27147,27190,27196,27202,27222,27227,27231,27254,27274,27280,27287,27318,27327,27342,27345,27352,27358,27377,27393,27394,27398,27444,27449,27467,27475,27478,27520,27525,27538,27563,27571,27578,27587,27588,27616,27632,27675,27682,27701,27703,27705,27709,27712,27714,27717,27719,27725,27729,27737,27749,27751,27752,27758,27818,27824,27829,27837,27851,27858,27916,27920,27924,27925,27929,27940,27943,28209,28326,28332,28335,28454,28636,28684,28704,28781,28787,28788,28815,28816,28820,28909,28928,28949,29039,29198,29247,29265,29335,29346,29359,29448,29550,29552,29569,29571,29572,29588,29596,29601,29745,29754,29755,29851,29870,29879,29908,29925,29935,29971,30035,30037,30085,30125,30254,30482,30538,30640,30641,30655,30657,30870,30896,30903,31062,31098]]],["whereby",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29286]]],["with",[42,42,[[39,2,2,0,2,[[941,1,1,0,1],[954,1,1,1,2]]],[40,6,6,2,8,[[962,1,1,2,3],[965,3,3,3,6],[967,1,1,6,7],[970,1,1,7,8]]],[41,3,3,8,11,[[981,1,1,8,9],[990,1,1,9,10],[992,1,1,10,11]]],[42,2,2,11,13,[[997,2,2,11,13]]],[43,6,6,13,19,[[1019,1,1,13,14],[1020,1,1,14,15],[1028,1,1,15,16],[1032,1,1,16,17],[1034,1,1,17,18],[1041,1,1,18,19]]],[44,2,2,19,21,[[1050,1,1,19,20],[1053,1,1,20,21]]],[45,4,4,21,25,[[1063,1,1,21,22],[1077,3,3,22,25]]],[46,4,4,25,29,[[1082,1,1,25,26],[1083,2,2,26,28],[1088,1,1,28,29]]],[47,4,4,29,33,[[1091,1,1,29,30],[1092,1,1,30,31],[1094,2,2,31,33]]],[51,1,1,33,34,[[1113,1,1,33,34]]],[52,3,3,34,37,[[1117,1,1,34,35],[1118,2,2,35,37]]],[56,1,1,37,38,[[1132,1,1,37,38]]],[57,2,2,38,40,[[1136,1,1,38,39],[1142,1,1,39,40]]],[61,2,2,40,42,[[1159,1,1,40,41],[1160,1,1,41,42]]]],[23595,24109,24410,24548,24554,24557,24671,24803,25342,25699,25784,26045,26046,26996,27021,27309,27444,27540,27781,28048,28134,28397,28782,28783,28786,28885,28912,28913,28998,29075,29086,29149,29151,29594,29666,29679,29688,29951,30027,30149,30542,30551]]],["within",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24758]]]]},{"k":"G4315","v":[["sabbath",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24868]]]]},{"k":"G4316","v":[["Called",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30040]]]]},{"k":"G4317","v":[["*",[4,4,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,2,2,1,3,[[1033,1,1,1,2],[1044,1,1,2,3]]],[59,1,1,3,4,[[1153,1,1,3,4]]]],[25342,27503,27882,30442]]],["Bring",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25342]]],["bring",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30442]]],["brought",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27503]]],["near",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27882]]]]},{"k":"G4318","v":[["access",[3,3,[[44,1,1,0,1,[[1050,1,1,0,1]]],[48,2,2,1,3,[[1098,1,1,1,2],[1099,1,1,2,3]]]],[28049,29247,29263]]]]},{"k":"G4319","v":[["*",[3,3,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]],[42,1,1,2,3,[[1005,1,1,2,3]]]],[24634,25723,26448]]],["begged",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26448]]],["begging",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]]],[24634,25723]]]]},{"k":"G4320","v":[["up",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25563]]]]},{"k":"G4321","v":[["spent",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25288]]]]},{"k":"G4322","v":[["*",[2,2,[[46,2,2,0,2,[[1086,1,1,0,1],[1088,1,1,1,2]]]],[28968,28998]]],["+",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28968]]],["supplied",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28998]]]]},{"k":"G4323","v":[["*",[2,2,[[47,2,2,0,2,[[1091,1,1,0,1],[1092,1,1,1,2]]]],[29073,29087]]],["added",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29087]]],["conferred",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29073]]]]},{"k":"G4324","v":[["threatened",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27043]]]]},{"k":"G4325","v":[["more",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25398]]]]},{"k":"G4326","v":[["needed",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27548]]]]},{"k":"G4327","v":[["*",[14,14,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,5,5,1,6,[[974,2,2,1,3],[984,1,1,3,4],[987,1,1,4,5],[995,1,1,5,6]]],[43,2,2,6,8,[[1040,1,1,6,7],[1041,1,1,7,8]]],[44,1,1,8,9,[[1061,1,1,8,9]]],[49,1,1,9,10,[[1104,1,1,9,10]]],[55,1,1,10,11,[[1130,1,1,10,11]]],[57,2,2,11,13,[[1142,1,1,11,12],[1143,1,1,12,13]]],[64,1,1,13,14,[[1166,1,1,13,14]]]],[24869,24998,25011,25495,25590,25986,27755,27784,28338,29420,29921,30167,30207,30693]]],["+",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24869]]],["Receive",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29420]]],["accepting",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30207]]],["allow",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27784]]],["for",[7,7,[[41,4,4,0,4,[[974,2,2,0,2],[984,1,1,2,3],[995,1,1,3,4]]],[43,1,1,4,5,[[1040,1,1,4,5]]],[55,1,1,5,6,[[1130,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[24998,25011,25495,25986,27755,29921,30693]]],["receive",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28338]]],["receiveth",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25590]]],["took",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30167]]]]},{"k":"G4328","v":[["*",[16,15,[[39,2,2,0,2,[[939,1,1,0,1],[952,1,1,1,2]]],[41,6,6,2,8,[[973,1,1,2,3],[975,1,1,3,4],[979,2,2,4,6],[980,1,1,6,7],[984,1,1,7,8]]],[43,5,4,8,12,[[1020,1,1,8,9],[1027,1,1,9,10],[1044,1,1,10,11],[1045,2,1,11,12]]],[60,3,3,12,15,[[1158,3,3,12,15]]]],[23462,24007,24914,25040,25214,25215,25285,25505,27001,27283,27888,27905,30534,30535,30536]]],["+",[3,3,[[41,2,2,0,2,[[973,1,1,0,1],[984,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]]],[24914,25505,27283]]],["expectation",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25040]]],["expecting",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27001]]],["for",[6,6,[[41,3,3,0,3,[[979,2,2,0,2],[980,1,1,2,3]]],[60,3,3,3,6,[[1158,3,3,3,6]]]],[25214,25215,25285,30534,30535,30536]]],["look",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23462]]],["looked",[2,1,[[43,2,1,0,1,[[1045,2,1,0,1]]]],[27905]]],["looketh",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[24007]]],["tarried",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27888]]]]},{"k":"G4329","v":[["*",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]]],[25852,27348]]],["after",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25852]]],["expectation",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27348]]]]},{"k":"G4330","v":[["suffering",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27862]]]]},{"k":"G4331","v":[["nigh",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24264]]]]},{"k":"G4332","v":[["wait",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28553]]]]},{"k":"G4333","v":[["gained",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25747]]]]},{"k":"G4334","v":[["*",[86,85,[[39,50,49,0,49,[[932,2,2,0,2],[933,1,1,2,3],[936,3,3,3,6],[937,3,3,6,9],[941,3,3,9,12],[942,2,2,12,14],[943,4,4,14,18],[944,1,1,18,19],[945,4,4,19,23],[946,2,2,23,25],[947,2,2,25,27],[948,1,1,27,28],[949,4,4,28,32],[950,1,1,32,33],[952,2,2,33,35],[953,3,3,35,38],[954,8,7,38,45],[955,1,1,45,46],[956,3,3,46,49]]],[40,5,5,49,54,[[957,1,1,49,50],[962,1,1,50,51],[966,1,1,51,52],[968,1,1,52,53],[970,1,1,53,54]]],[41,10,10,54,64,[[979,1,1,54,55],[980,2,2,55,57],[981,2,2,57,59],[982,1,1,59,60],[985,1,1,60,61],[992,1,1,61,62],[995,2,2,62,64]]],[42,1,1,64,65,[[1008,1,1,64,65]]],[43,11,11,65,76,[[1024,1,1,65,66],[1025,1,1,66,67],[1026,1,1,67,68],[1027,1,1,68,69],[1029,1,1,69,70],[1035,1,1,70,71],[1039,2,2,71,73],[1040,1,1,73,74],[1041,1,1,74,75],[1045,1,1,75,76]]],[53,1,1,76,77,[[1124,1,1,76,77]]],[57,7,7,77,84,[[1136,1,1,77,78],[1139,1,1,78,79],[1142,2,2,79,81],[1143,1,1,81,82],[1144,2,2,82,84]]],[59,1,1,84,85,[[1152,1,1,84,85]]]],[23212,23220,23235,23350,23364,23370,23393,23399,23407,23549,23566,23575,23609,23612,23634,23645,23656,23663,23673,23707,23714,23719,23724,23728,23748,23765,23778,23812,23840,23849,23854,23856,23895,23958,23960,24028,24030,24032,24061,24071,24103,24104,24114,24123,24127,24187,24197,24204,24213,24246,24442,24590,24701,24799,25209,25269,25289,25313,25343,25397,25549,25806,25971,25987,26601,27147,27205,27217,27287,27350,27559,27730,27731,27748,27792,27908,29791,30030,30089,30134,30155,30178,30230,30234,30403]]],["+",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[24032,30134]]],["Came",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25289]]],["came",[62,61,[[39,48,47,0,47,[[932,2,2,0,2],[933,1,1,2,3],[936,3,3,3,6],[937,3,3,6,9],[941,3,3,9,12],[942,2,2,12,14],[943,4,4,14,18],[944,1,1,18,19],[945,4,4,19,23],[946,2,2,23,25],[947,2,2,25,27],[948,1,1,27,28],[949,4,4,28,32],[950,1,1,32,33],[952,2,2,33,35],[953,2,2,35,37],[954,8,7,37,44],[956,3,3,44,47]]],[40,3,3,47,50,[[957,1,1,47,48],[962,1,1,48,49],[968,1,1,49,50]]],[41,5,5,50,55,[[979,1,1,50,51],[980,1,1,51,52],[981,1,1,52,53],[985,1,1,53,54],[992,1,1,54,55]]],[42,1,1,55,56,[[1008,1,1,55,56]]],[43,5,5,56,61,[[1029,1,1,56,57],[1035,1,1,57,58],[1039,1,1,58,59],[1040,1,1,59,60],[1045,1,1,60,61]]]],[23212,23220,23235,23350,23364,23370,23393,23399,23407,23549,23566,23575,23609,23612,23634,23645,23656,23663,23673,23707,23714,23719,23724,23728,23748,23765,23778,23812,23840,23849,23854,23856,23895,23958,23960,24028,24030,24061,24071,24103,24104,24114,24123,24127,24197,24204,24213,24246,24442,24701,25209,25269,25313,25549,25806,26601,27350,27559,27731,27748,27908]]],["come",[3,3,[[57,3,3,0,3,[[1136,1,1,0,1],[1139,1,1,1,2],[1144,1,1,2,3]]]],[30030,30089,30230]]],["cometh",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30178]]],["coming",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[25343,30403]]],["consent",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29791]]],["goeth",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24799]]],["near",[3,3,[[43,2,2,0,2,[[1024,1,1,0,1],[1025,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[27147,27205,30155]]],["to",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24590,25971]]],["unto",[3,3,[[43,2,2,0,2,[[1027,1,1,0,1],[1041,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[27287,27792,30234]]],["went",[5,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,2,2,1,3,[[982,1,1,1,2],[995,1,1,2,3]]],[43,2,2,3,5,[[1026,1,1,3,4],[1039,1,1,4,5]]]],[24187,25397,25987,27217,27730]]]]},{"k":"G4335","v":[["*",[37,37,[[39,3,3,0,3,[[945,1,1,0,1],[949,2,2,1,3]]],[40,2,2,3,5,[[965,1,1,3,4],[967,1,1,4,5]]],[41,3,3,5,8,[[978,1,1,5,6],[991,1,1,6,7],[994,1,1,7,8]]],[43,9,9,8,17,[[1018,1,1,8,9],[1019,1,1,9,10],[1020,1,1,10,11],[1023,1,1,11,12],[1027,2,2,12,14],[1029,1,1,14,15],[1033,2,2,15,17]]],[44,3,3,17,20,[[1046,1,1,17,18],[1057,1,1,18,19],[1060,1,1,19,20]]],[45,1,1,20,21,[[1068,1,1,20,21]]],[48,2,2,21,23,[[1097,1,1,21,22],[1102,1,1,22,23]]],[49,1,1,23,24,[[1106,1,1,23,24]]],[50,2,2,24,26,[[1110,2,2,24,26]]],[51,1,1,26,27,[[1111,1,1,26,27]]],[53,2,2,27,29,[[1120,1,1,27,28],[1123,1,1,28,29]]],[56,2,2,29,31,[[1132,2,2,29,31]]],[58,1,1,31,32,[[1150,1,1,31,32]]],[59,2,2,32,34,[[1153,1,1,32,33],[1154,1,1,33,34]]],[65,3,3,34,37,[[1171,1,1,34,35],[1174,2,2,35,37]]]],[23721,23839,23848,24567,24657,25158,25777,25909,26937,26991,26997,27105,27263,27290,27342,27496,27499,27939,28257,28333,28492,29222,29355,29448,29544,29554,29562,29717,29768,29942,29960,30371,30431,30453,30787,30830,30831]]],["+",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30371]]],["prayer",[21,21,[[39,3,3,0,3,[[945,1,1,0,1],[949,2,2,1,3]]],[40,2,2,3,5,[[965,1,1,3,4],[967,1,1,4,5]]],[41,3,3,5,8,[[978,1,1,5,6],[991,1,1,6,7],[994,1,1,7,8]]],[43,7,7,8,15,[[1018,1,1,8,9],[1020,1,1,9,10],[1023,1,1,10,11],[1027,1,1,11,12],[1029,1,1,12,13],[1033,2,2,13,15]]],[44,1,1,15,16,[[1057,1,1,15,16]]],[45,1,1,16,17,[[1068,1,1,16,17]]],[48,1,1,17,18,[[1102,1,1,17,18]]],[49,1,1,18,19,[[1106,1,1,18,19]]],[50,1,1,19,20,[[1110,1,1,19,20]]],[59,1,1,20,21,[[1154,1,1,20,21]]]],[23721,23839,23848,24567,24657,25158,25777,25909,26937,26997,27105,27290,27342,27496,27499,28257,28492,29355,29448,29544,30453]]],["prayers",[15,15,[[43,2,2,0,2,[[1019,1,1,0,1],[1027,1,1,1,2]]],[44,2,2,2,4,[[1046,1,1,2,3],[1060,1,1,3,4]]],[48,1,1,4,5,[[1097,1,1,4,5]]],[50,1,1,5,6,[[1110,1,1,5,6]]],[51,1,1,6,7,[[1111,1,1,6,7]]],[53,2,2,7,9,[[1120,1,1,7,8],[1123,1,1,8,9]]],[56,2,2,9,11,[[1132,2,2,9,11]]],[59,1,1,11,12,[[1153,1,1,11,12]]],[65,3,3,12,15,[[1171,1,1,12,13],[1174,2,2,13,15]]]],[26991,27263,27939,28333,29222,29554,29562,29717,29768,29942,29960,30431,30787,30830,30831]]]]},{"k":"G4336","v":[["*",[87,82,[[39,16,14,0,14,[[933,1,1,0,1],[934,6,4,1,5],[942,1,1,5,6],[947,1,1,6,7],[951,1,1,7,8],[952,1,1,8,9],[954,5,5,9,14]]],[40,11,11,14,25,[[957,1,1,14,15],[962,1,1,15,16],[967,2,2,16,18],[968,1,1,18,19],[969,2,2,19,21],[970,4,4,21,25]]],[41,19,18,25,43,[[973,1,1,25,26],[975,1,1,26,27],[977,1,1,27,28],[978,2,2,28,30],[981,3,3,30,33],[983,3,2,33,35],[990,3,3,35,38],[992,1,1,38,39],[994,4,4,39,43]]],[43,16,16,43,59,[[1018,1,1,43,44],[1023,1,1,44,45],[1025,1,1,45,46],[1026,2,2,46,48],[1027,2,2,48,50],[1028,1,1,50,51],[1029,1,1,51,52],[1030,1,1,52,53],[1031,1,1,53,54],[1033,1,1,54,55],[1037,1,1,55,56],[1038,1,1,56,57],[1039,1,1,57,58],[1045,1,1,58,59]]],[44,1,1,59,60,[[1053,1,1,59,60]]],[45,8,6,60,66,[[1072,3,3,60,63],[1075,5,3,63,66]]],[48,1,1,66,67,[[1102,1,1,66,67]]],[49,1,1,67,68,[[1103,1,1,67,68]]],[50,3,3,68,71,[[1107,2,2,68,70],[1110,1,1,70,71]]],[51,2,2,71,73,[[1115,2,2,71,73]]],[52,2,2,73,75,[[1116,1,1,73,74],[1118,1,1,74,75]]],[53,1,1,75,76,[[1120,1,1,75,76]]],[57,1,1,76,77,[[1145,1,1,76,77]]],[58,4,4,77,81,[[1150,4,4,77,81]]],[64,1,1,81,82,[[1166,1,1,81,82]]]],[23278,23287,23288,23289,23291,23620,23775,23932,23977,24090,24093,24095,24096,24098,24250,24453,24664,24665,24713,24735,24750,24786,24789,24792,24793,24903,25046,25123,25158,25174,25319,25329,25330,25406,25407,25689,25698,25699,25826,25904,25905,25908,25910,26947,27107,27191,27227,27256,27268,27289,27312,27349,27365,27437,27508,27662,27669,27721,27907,28142,28604,28605,28613,28691,28692,28693,29355,29370,29468,29474,29545,29638,29646,29660,29679,29724,30259,30367,30368,30371,30372,30692]]],["+",[5,5,[[39,2,2,0,2,[[951,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]],[58,1,1,4,5,[[1150,1,1,4,5]]]],[23932,24093,24713,25826,30371]]],["Pray",[3,3,[[41,1,1,0,1,[[994,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]]],[25904,29638,30259]]],["Praying",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29355]]],["for",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28142]]],["pray",[38,37,[[39,10,10,0,10,[[933,1,1,0,1],[934,4,4,1,5],[942,1,1,5,6],[947,1,1,6,7],[952,1,1,7,8],[954,2,2,8,10]]],[40,6,6,10,16,[[962,1,1,10,11],[967,1,1,11,12],[969,2,2,12,14],[970,2,2,14,16]]],[41,8,8,16,24,[[978,2,2,16,18],[981,1,1,18,19],[983,2,2,19,21],[990,2,2,21,23],[994,1,1,23,24]]],[43,1,1,24,25,[[1027,1,1,24,25]]],[45,5,4,25,29,[[1072,1,1,25,26],[1075,4,3,26,29]]],[49,1,1,29,30,[[1103,1,1,29,30]]],[50,1,1,30,31,[[1107,1,1,30,31]]],[51,1,1,31,32,[[1115,1,1,31,32]]],[52,2,2,32,34,[[1116,1,1,32,33],[1118,1,1,33,34]]],[53,1,1,34,35,[[1120,1,1,34,35]]],[58,2,2,35,37,[[1150,2,2,35,37]]]],[23278,23287,23288,23289,23291,23620,23775,23977,24090,24095,24453,24664,24735,24750,24786,24792,25158,25174,25329,25406,25407,25689,25698,25910,27268,28613,28691,28692,28693,29370,29474,29646,29660,29679,29724,30367,30368]]],["prayed",[23,23,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,3,3,2,5,[[957,1,1,2,3],[970,2,2,3,5]]],[41,5,5,5,10,[[977,1,1,5,6],[981,1,1,6,7],[990,1,1,7,8],[994,2,2,8,10]]],[43,12,12,10,22,[[1018,1,1,10,11],[1023,1,1,11,12],[1025,1,1,12,13],[1026,1,1,13,14],[1027,1,1,14,15],[1030,1,1,15,16],[1031,1,1,16,17],[1033,1,1,17,18],[1037,1,1,18,19],[1038,1,1,19,20],[1039,1,1,20,21],[1045,1,1,21,22]]],[58,1,1,22,23,[[1150,1,1,22,23]]]],[24096,24098,24250,24789,24793,25123,25330,25699,25905,25908,26947,27107,27191,27256,27289,27365,27437,27508,27662,27669,27721,27907,30372]]],["prayest",[2,2,[[39,2,2,0,2,[[934,2,2,0,2]]]],[23287,23288]]],["prayeth",[3,3,[[43,1,1,0,1,[[1026,1,1,0,1]]],[45,2,2,1,3,[[1072,1,1,1,2],[1075,1,1,2,3]]]],[27227,28605,28692]]],["praying",[11,11,[[40,1,1,0,1,[[967,1,1,0,1]]],[41,4,4,1,5,[[973,1,1,1,2],[975,1,1,2,3],[981,1,1,3,4],[983,1,1,4,5]]],[43,2,2,5,7,[[1028,1,1,5,6],[1029,1,1,6,7]]],[45,1,1,7,8,[[1072,1,1,7,8]]],[50,2,2,8,10,[[1107,1,1,8,9],[1110,1,1,9,10]]],[64,1,1,10,11,[[1166,1,1,10,11]]]],[24665,24903,25046,25319,25406,27312,27349,28604,29468,29545,30692]]]]},{"k":"G4337","v":[["*",[24,24,[[39,6,6,0,6,[[934,1,1,0,1],[935,1,1,1,2],[938,1,1,2,3],[944,3,3,3,6]]],[41,4,4,6,10,[[984,1,1,6,7],[989,1,1,7,8],[992,1,1,8,9],[993,1,1,9,10]]],[43,6,6,10,16,[[1022,1,1,10,11],[1025,3,3,11,14],[1033,1,1,14,15],[1037,1,1,15,16]]],[53,4,4,16,20,[[1119,1,1,16,17],[1121,1,1,17,18],[1122,2,2,18,20]]],[55,1,1,20,21,[[1129,1,1,20,21]]],[57,2,2,21,23,[[1134,1,1,21,22],[1139,1,1,22,23]]],[60,1,1,23,24,[[1156,1,1,23,24]]]],[23283,23331,23434,23678,23683,23684,25460,25654,25825,25860,27094,27182,27186,27187,27497,27654,29700,29739,29748,29760,29906,29978,30077,30498]]],["+",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29978]]],["Beware",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[992,1,1,2,3]]]],[23331,25460,25825]]],["attendance",[2,2,[[53,1,1,0,1,[[1122,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[29760,30077]]],["attended",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27497]]],["beware",[4,4,[[39,4,4,0,4,[[938,1,1,0,1],[944,3,3,1,4]]]],[23434,23678,23683,23684]]],["given",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29739]]],["heed",[11,11,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,2,2,1,3,[[989,1,1,1,2],[993,1,1,2,3]]],[43,4,4,3,7,[[1022,1,1,3,4],[1025,2,2,4,6],[1037,1,1,6,7]]],[53,2,2,7,9,[[1119,1,1,7,8],[1122,1,1,8,9]]],[55,1,1,9,10,[[1129,1,1,9,10]]],[60,1,1,10,11,[[1156,1,1,10,11]]]],[23283,25654,25860,27094,27182,27186,27654,29700,29748,29906,30498]]],["regard",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27187]]]]},{"k":"G4338","v":[["nailing",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29508]]]]},{"k":"G4339","v":[["*",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[43,3,3,1,4,[[1019,1,1,1,2],[1023,1,1,2,3],[1030,1,1,3,4]]]],[23933,26959,27106,27405]]],["proselyte",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[43,1,1,1,2,[[1023,1,1,1,2]]]],[23933,27106]]],["proselytes",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1030,1,1,1,2]]]],[26959,27405]]]]},{"k":"G4340","v":[["*",[4,4,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[46,1,1,2,3,[[1081,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[23560,24340,28877,30197]]],["+",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23560]]],["season",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30197]]],["temporal",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28877]]],["time",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24340]]]]},{"k":"G4341","v":[["*",[30,30,[[39,6,6,0,6,[[938,1,1,0,1],[943,2,2,1,3],[946,2,2,3,5],[948,1,1,5,6]]],[40,9,9,6,15,[[959,2,2,6,8],[962,1,1,8,9],[963,1,1,9,10],[964,2,2,10,12],[966,1,1,12,13],[968,1,1,13,14],[971,1,1,14,15]]],[41,4,4,15,19,[[979,1,1,15,16],[987,1,1,16,17],[988,1,1,17,18],[990,1,1,18,19]]],[43,10,10,19,29,[[1019,1,1,19,20],[1022,1,1,20,21],[1023,1,1,21,22],[1030,2,2,22,24],[1033,1,1,24,25],[1037,1,1,25,26],[1040,3,3,26,29]]],[58,1,1,29,30,[[1150,1,1,29,30]]]],[23418,23643,23665,23729,23759,23817,24301,24311,24414,24477,24501,24534,24630,24716,24870,25214,25614,25625,25704,26988,27099,27103,27364,27369,27493,27627,27751,27752,27757,30368]]],["+",[2,2,[[43,2,2,0,2,[[1040,2,2,0,2]]]],[27751,27752]]],["call",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26988]]],["called",[19,19,[[39,5,5,0,5,[[943,2,2,0,2],[946,2,2,2,4],[948,1,1,4,5]]],[40,7,7,5,12,[[959,1,1,5,6],[962,1,1,6,7],[963,1,1,7,8],[964,2,2,8,10],[966,1,1,10,11],[968,1,1,11,12]]],[41,3,3,12,15,[[987,1,1,12,13],[988,1,1,13,14],[990,1,1,14,15]]],[43,4,4,15,19,[[1022,1,1,15,16],[1023,1,1,16,17],[1030,1,1,17,18],[1033,1,1,18,19]]]],[23643,23665,23729,23759,23817,24311,24414,24477,24501,24534,24630,24716,25614,25625,25704,27099,27103,27364,27493]]],["calleth",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24301]]],["calling",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]]],[24870,25214]]],["for",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[27369,30368]]],["unto",[3,3,[[39,1,1,0,1,[[938,1,1,0,1]]],[43,2,2,1,3,[[1037,1,1,1,2],[1040,1,1,2,3]]]],[23418,27627,27757]]]]},{"k":"G4342","v":[["*",[10,10,[[40,1,1,0,1,[[959,1,1,0,1]]],[43,6,6,1,7,[[1018,1,1,1,2],[1019,2,2,2,4],[1023,1,1,4,5],[1025,1,1,5,6],[1027,1,1,6,7]]],[44,2,2,7,9,[[1057,1,1,7,8],[1058,1,1,8,9]]],[50,1,1,9,10,[[1110,1,1,9,10]]]],[24297,26937,26991,26995,27105,27189,27266,28257,28272,29544]]],["+",[4,4,[[43,4,4,0,4,[[1018,1,1,0,1],[1019,1,1,1,2],[1025,1,1,2,3],[1027,1,1,3,4]]]],[26937,26991,27189,27266]]],["Continue",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29544]]],["continually",[2,2,[[43,1,1,0,1,[[1023,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]]],[27105,28272]]],["continuing",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26995]]],["instant",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28257]]],["on",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24297]]]]},{"k":"G4343","v":[["perseverance",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29355]]]]},{"k":"G4344","v":[["pillow",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24361]]]]},{"k":"G4345","v":[["with",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27527]]]]},{"k":"G4346","v":[["partiality",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29784]]]]},{"k":"G4347","v":[["*",[4,4,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]]],[23767,24595,27095,29335]]],["cleave",[2,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]]],[23767,24595]]],["joined",[2,2,[[43,1,1,0,1,[[1022,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]]],[27095,29335]]]]},{"k":"G4348","v":[["*",[6,6,[[44,4,4,0,4,[[1054,2,2,0,2],[1059,2,2,2,4]]],[45,1,1,4,5,[[1069,1,1,4,5]]],[59,1,1,5,6,[[1152,1,1,5,6]]]],[28187,28188,28293,28300,28536,30407]]],["+",[2,2,[[44,2,2,0,2,[[1054,2,2,0,2]]]],[28187,28188]]],["offence",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28300]]],["stumbling",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30407]]],["stumblingblock",[2,2,[[44,1,1,0,1,[[1059,1,1,0,1]]],[45,1,1,1,2,[[1069,1,1,1,2]]]],[28293,28536]]]]},{"k":"G4349","v":[["offence",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28901]]]]},{"k":"G4350","v":[["*",[8,8,[[39,2,2,0,2,[[932,1,1,0,1],[935,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]],[42,2,2,3,5,[[1007,2,2,3,5]]],[44,2,2,5,7,[[1054,1,1,5,6],[1059,1,1,6,7]]],[59,1,1,7,8,[[1152,1,1,7,8]]]],[23215,23343,25074,26532,26533,28187,28301,30407]]],["dash",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]]],[23215,25074]]],["stumble",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30407]]],["stumbled",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28187]]],["stumbleth",[3,3,[[42,2,2,0,2,[[1007,2,2,0,2]]],[44,1,1,2,3,[[1059,1,1,2,3]]]],[26532,26533,28301]]],["upon",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23343]]]]},{"k":"G4351","v":[["rolled",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24189,24872]]]]},{"k":"G4352","v":[["*",[60,54,[[39,13,13,0,13,[[930,3,3,0,3],[932,2,2,3,5],[936,1,1,5,6],[937,1,1,6,7],[942,1,1,7,8],[943,1,1,8,9],[946,1,1,9,10],[948,1,1,10,11],[956,2,2,11,13]]],[40,2,2,13,15,[[961,1,1,13,14],[971,1,1,14,15]]],[41,3,3,15,18,[[976,2,2,15,17],[996,1,1,17,18]]],[42,11,7,18,25,[[1000,9,5,18,23],[1005,1,1,23,24],[1008,1,1,24,25]]],[43,4,4,25,29,[[1024,1,1,25,26],[1025,1,1,26,27],[1027,1,1,27,28],[1041,1,1,28,29]]],[45,1,1,29,30,[[1075,1,1,29,30]]],[57,2,2,30,32,[[1133,1,1,30,31],[1143,1,1,31,32]]],[65,24,22,32,54,[[1169,1,1,32,33],[1170,1,1,33,34],[1171,1,1,34,35],[1173,1,1,35,36],[1175,1,1,36,37],[1177,2,2,37,39],[1179,5,4,39,43],[1180,3,3,43,46],[1181,1,1,46,47],[1182,1,1,47,48],[1185,4,3,48,51],[1186,1,1,51,52],[1188,2,2,52,54]]]],[23171,23177,23180,23218,23219,23347,23397,23630,23658,23753,23812,24204,24212,24370,24845,25070,25071,26043,26176,26177,26178,26179,26180,26478,26600,27159,27203,27284,27780,28703,29969,30193,30755,30778,30793,30821,30860,30873,30888,30912,30916,30920,30923,30933,30935,30937,30950,30956,31021,31027,31037,31042,31088,31089]]],["worship",[35,31,[[39,4,4,0,4,[[930,2,2,0,2],[932,2,2,2,4]]],[41,2,2,4,6,[[976,2,2,4,6]]],[42,9,6,6,12,[[1000,8,5,6,11],[1008,1,1,11,12]]],[43,3,3,12,15,[[1024,1,1,12,13],[1025,1,1,13,14],[1041,1,1,14,15]]],[45,1,1,15,16,[[1075,1,1,15,16]]],[57,1,1,16,17,[[1133,1,1,16,17]]],[65,15,14,17,31,[[1169,1,1,17,18],[1170,1,1,18,19],[1175,1,1,19,20],[1177,1,1,20,21],[1179,3,3,21,24],[1180,3,3,24,27],[1181,1,1,27,28],[1185,2,1,28,29],[1188,2,2,29,31]]]],[23171,23177,23218,23219,25070,25071,26176,26177,26178,26179,26180,26600,27159,27203,27780,28703,29969,30755,30778,30860,30873,30916,30920,30923,30933,30935,30937,30950,31027,31088,31089]]],["worshipped",[24,23,[[39,8,8,0,8,[[930,1,1,0,1],[936,1,1,1,2],[937,1,1,2,3],[942,1,1,3,4],[943,1,1,4,5],[946,1,1,5,6],[956,2,2,6,8]]],[40,2,2,8,10,[[961,1,1,8,9],[971,1,1,9,10]]],[41,1,1,10,11,[[996,1,1,10,11]]],[42,2,2,11,13,[[1000,1,1,11,12],[1005,1,1,12,13]]],[43,1,1,13,14,[[1027,1,1,13,14]]],[57,1,1,14,15,[[1143,1,1,14,15]]],[65,9,8,15,23,[[1171,1,1,15,16],[1173,1,1,16,17],[1177,1,1,17,18],[1179,2,1,18,19],[1182,1,1,19,20],[1185,2,2,20,22],[1186,1,1,22,23]]]],[23180,23347,23397,23630,23658,23753,24204,24212,24370,24845,26043,26176,26478,27284,30193,30793,30821,30888,30912,30956,31021,31037,31042]]],["worshipping",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23812]]]]},{"k":"G4353","v":[["worshippers",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26179]]]]},{"k":"G4354","v":[["*",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1045,1,1,1,2]]]],[27405,27919]]],["to",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27405]]],["with",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27919]]]]},{"k":"G4355","v":[["*",[14,13,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[43,6,6,2,8,[[1034,1,1,2,3],[1035,1,1,3,4],[1044,3,3,4,7],[1045,1,1,7,8]]],[44,4,3,8,11,[[1059,2,2,8,10],[1060,2,1,10,11]]],[56,2,2,11,13,[[1132,2,2,11,13]]]],[23694,24532,27528,27583,27888,27889,27891,27901,28281,28283,28310,29950,29955]]],["+",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27583]]],["receive",[4,4,[[44,2,2,0,2,[[1059,1,1,0,1],[1060,1,1,1,2]]],[56,2,2,2,4,[[1132,2,2,2,4]]]],[28281,28310,29950,29955]]],["received",[3,3,[[43,1,1,0,1,[[1045,1,1,0,1]]],[44,2,2,1,3,[[1059,1,1,1,2],[1060,1,1,2,3]]]],[27901,28283,28310]]],["take",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27889]]],["taken",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27888]]],["took",[3,3,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[43,1,1,2,3,[[1044,1,1,2,3]]]],[23694,24532,27891]]],["unto",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27528]]]]},{"k":"G4356","v":[["receiving",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28224]]]]},{"k":"G4357","v":[["*",[6,6,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[43,2,2,2,4,[[1028,1,1,2,3],[1035,1,1,3,4]]],[53,2,2,4,6,[[1119,1,1,4,5],[1123,1,1,5,6]]]],[23665,24502,27330,27575,29699,29768]]],["been",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24502]]],["continueth",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29768]]],["still",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29699]]],["tarried",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27575]]],["unto",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27330]]],["with",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23665]]]]},{"k":"G4358","v":[["shore",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24460]]]]},{"k":"G4359","v":[["owest",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29957]]]]},{"k":"G4360","v":[["grieved",[2,2,[[57,2,2,0,2,[[1135,2,2,0,2]]]],[30005,30012]]]]},{"k":"G4361","v":[["hungry",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27269]]]]},{"k":"G4362","v":[["crucified",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26972]]]]},{"k":"G4363","v":[["*",[8,8,[[39,1,1,0,1,[[935,1,1,0,1]]],[40,3,3,1,4,[[959,1,1,1,2],[961,1,1,2,3],[963,1,1,3,4]]],[41,3,3,4,7,[[977,1,1,4,5],[980,2,2,5,7]]],[43,1,1,7,8,[[1033,1,1,7,8]]]],[23341,24299,24397,24488,25115,25273,25292,27512]]],["before",[5,5,[[40,2,2,0,2,[[959,1,1,0,1],[961,1,1,1,2]]],[41,2,2,2,4,[[980,2,2,2,4]]],[43,1,1,4,5,[[1033,1,1,4,5]]]],[24299,24397,25273,25292,27512]]],["down",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25115]]],["fell",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24488]]],["upon",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23341]]]]},{"k":"G4364","v":[["though",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26019]]]]},{"k":"G4365","v":[["come",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24623]]]]},{"k":"G4366","v":[["*",[2,2,[[41,2,2,0,2,[[978,2,2,0,2]]]],[25194,25195]]],["+",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25195]]],["upon",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25194]]]]},{"k":"G4367","v":[["*",[7,7,[[39,3,3,0,3,[[929,1,1,0,1],[936,1,1,1,2],[949,1,1,2,3]]],[40,1,1,3,4,[[957,1,1,3,4]]],[41,1,1,4,5,[[977,1,1,4,5]]],[43,2,2,5,7,[[1027,2,2,5,7]]]],[23168,23349,23832,24259,25121,27292,27307]]],["bidden",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23168]]],["commanded",[6,6,[[39,2,2,0,2,[[936,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,1,1,3,4,[[977,1,1,3,4]]],[43,2,2,4,6,[[1027,2,2,4,6]]]],[23349,23832,24259,25121,27292,27307]]]]},{"k":"G4368","v":[["succourer",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28338]]]]},{"k":"G4369","v":[["*",[18,18,[[39,2,2,0,2,[[934,2,2,0,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,7,7,3,10,[[975,1,1,3,4],[984,2,2,4,6],[989,1,1,6,7],[991,1,1,7,8],[992,2,2,8,10]]],[43,6,6,10,16,[[1019,2,2,10,12],[1022,1,1,12,13],[1028,1,1,13,14],[1029,1,1,14,15],[1030,1,1,15,16]]],[47,1,1,16,17,[[1093,1,1,16,17]]],[57,1,1,17,18,[[1144,1,1,17,18]]]],[23309,23315,24347,25045,25484,25490,25656,25742,25790,25791,26990,26996,27073,27331,27340,27398,29121,30231]]],["+",[3,3,[[41,2,2,0,2,[[992,2,2,0,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[25790,25791,30231]]],["Added",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25045]]],["Increase",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25656]]],["add",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23309,25484]]],["added",[8,8,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[991,1,1,2,3]]],[43,4,4,3,7,[[1019,2,2,3,5],[1022,1,1,5,6],[1028,1,1,6,7]]],[47,1,1,7,8,[[1093,1,1,7,8]]]],[23315,25490,25742,26990,26996,27073,27331,29121]]],["further",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27340]]],["given",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24347]]],["laid",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27398]]]]},{"k":"G4370","v":[["*",[3,3,[[40,2,2,0,2,[[965,1,1,0,1],[966,1,1,1,2]]],[43,1,1,2,3,[[1025,1,1,2,3]]]],[24553,24605,27206]]],["him",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24553]]],["running",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24605]]],["thither",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27206]]]]},{"k":"G4371","v":[["meat",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26903]]]]},{"k":"G4372","v":[["new",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30153]]]]},{"k":"G4373","v":[["lately",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27559]]]]},{"k":"G4374","v":[["*",[48,45,[[39,15,15,0,15,[[930,1,1,0,1],[932,1,1,1,2],[933,2,2,2,4],[936,2,2,4,6],[937,2,2,6,8],[940,1,1,8,9],[942,1,1,9,10],[945,1,1,10,11],[946,1,1,11,12],[947,1,1,12,13],[950,1,1,13,14],[953,1,1,14,15]]],[40,3,2,15,17,[[957,1,1,15,16],[966,2,1,16,17]]],[41,5,5,17,22,[[977,1,1,17,18],[984,1,1,18,19],[990,1,1,19,20],[995,2,2,20,22]]],[42,2,2,22,24,[[1012,1,1,22,23],[1015,1,1,23,24]]],[43,3,3,24,27,[[1024,1,1,24,25],[1025,1,1,25,26],[1038,1,1,26,27]]],[57,20,18,27,45,[[1137,3,3,27,30],[1140,3,2,30,32],[1141,5,5,32,37],[1142,5,5,37,42],[1143,3,2,42,44],[1144,1,1,44,45]]]],[23180,23233,23257,23258,23349,23361,23381,23411,23511,23632,23716,23751,23775,23891,24028,24259,24601,25121,25470,25703,25949,25971,26728,26854,27158,27194,27690,30031,30033,30037,30095,30096,30112,30114,30119,30130,30133,30134,30135,30141,30144,30145,30176,30189,30219]]],["+",[2,2,[[57,2,2,0,2,[[1137,1,1,0,1],[1140,1,1,1,2]]]],[30037,30095]]],["bring",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23257,25470]]],["brought",[15,14,[[39,11,11,0,11,[[932,1,1,0,1],[936,1,1,1,2],[937,2,2,2,4],[940,1,1,4,5],[942,1,1,5,6],[945,1,1,6,7],[946,1,1,7,8],[947,1,1,8,9],[950,1,1,9,10],[953,1,1,10,11]]],[40,2,1,11,12,[[966,2,1,11,12]]],[41,2,2,12,14,[[990,1,1,12,13],[995,1,1,13,14]]]],[23233,23361,23381,23411,23511,23632,23716,23751,23775,23891,24028,24601,25703,25949]]],["dealeth",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30219]]],["doeth",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26728]]],["it",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26854]]],["offer",[9,9,[[39,2,2,0,2,[[933,1,1,0,1],[936,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,1,1,3,4,[[977,1,1,3,4]]],[57,5,5,4,9,[[1137,2,2,4,6],[1140,2,2,6,8],[1141,1,1,8,9]]]],[23258,23349,24259,25121,30031,30033,30095,30096,30130]]],["offered",[11,11,[[43,3,3,0,3,[[1024,1,1,0,1],[1025,1,1,1,2],[1038,1,1,2,3]]],[57,8,8,3,11,[[1141,4,4,3,7],[1142,3,3,7,10],[1143,1,1,10,11]]]],[27158,27194,27690,30112,30114,30119,30133,30134,30135,30145,30176]]],["offering",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[57,2,2,1,3,[[1142,2,2,1,3]]]],[25971,30141,30144]]],["presented",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23180]]],["up",[2,1,[[57,2,1,0,1,[[1143,2,1,0,1]]]],[30189]]]]},{"k":"G4375","v":[["lovely",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29450]]]]},{"k":"G4376","v":[["*",[9,9,[[43,2,2,0,2,[[1038,1,1,0,1],[1041,1,1,1,2]]],[44,1,1,2,3,[[1060,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]],[57,5,5,4,9,[[1142,5,5,4,9]]]],[27690,27786,28319,29306,30138,30141,30143,30147,30151]]],["offered",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30141]]],["offering",[6,6,[[43,1,1,0,1,[[1038,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]],[57,4,4,2,6,[[1142,4,4,2,6]]]],[27690,29306,30138,30143,30147,30151]]],["offerings",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27786]]],["up",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28319]]]]},{"k":"G4377","v":[["*",[7,7,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,4,4,1,5,[[978,1,1,1,2],[979,1,1,2,3],[985,1,1,3,4],[995,1,1,4,5]]],[43,2,2,5,7,[[1038,1,1,5,6],[1039,1,1,6,7]]]],[23475,25159,25227,25530,25955,27704,27706]]],["+",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25955]]],["called",[2,2,[[41,2,2,0,2,[[978,1,1,0,1],[985,1,1,1,2]]]],[25159,25530]]],["calling",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]]],[23475,25227]]],["spake",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27706]]],["unto",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27704]]]]},{"k":"G4378","v":[["sprinkling",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30200]]]]},{"k":"G4379","v":[["touch",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25451]]]]},{"k":"G4380","v":[["persons",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30302]]]]},{"k":"G4381","v":[["persons",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27293]]]]},{"k":"G4382","v":[["persons",[4,4,[[44,1,1,0,1,[[1047,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[27973,29346,29542,30294]]]]},{"k":"G4383","v":[["*",[78,73,[[39,10,10,0,10,[[934,2,2,0,2],[939,1,1,2,3],[944,1,1,3,4],[945,2,2,4,6],[946,1,1,6,7],[950,1,1,7,8],[954,2,2,8,10]]],[40,3,3,10,13,[[957,1,1,10,11],[968,1,1,11,12],[970,1,1,12,13]]],[41,15,15,13,28,[[973,1,1,13,14],[974,1,1,14,15],[977,1,1,15,16],[979,1,1,16,17],[981,4,4,17,21],[982,1,1,21,22],[984,1,1,22,23],[989,1,1,23,24],[992,1,1,24,25],[993,1,1,25,26],[994,1,1,26,27],[996,1,1,27,28]]],[43,12,11,28,39,[[1019,1,1,28,29],[1020,2,2,29,31],[1022,1,1,31,32],[1023,2,1,32,33],[1024,1,1,33,34],[1030,1,1,34,35],[1034,1,1,35,36],[1037,2,2,36,38],[1042,1,1,38,39]]],[45,3,2,39,41,[[1074,2,1,39,40],[1075,1,1,40,41]]],[46,12,11,41,52,[[1078,1,1,41,42],[1079,1,1,42,43],[1080,4,3,43,46],[1081,1,1,46,47],[1082,1,1,47,48],[1085,1,1,48,49],[1087,2,2,49,51],[1088,1,1,51,52]]],[47,3,3,52,55,[[1091,1,1,52,53],[1092,2,2,53,55]]],[50,1,1,55,56,[[1108,1,1,55,56]]],[51,3,2,56,58,[[1112,2,1,56,57],[1113,1,1,57,58]]],[52,1,1,58,59,[[1116,1,1,58,59]]],[57,1,1,59,60,[[1141,1,1,59,60]]],[58,2,2,60,62,[[1146,2,2,60,62]]],[59,1,1,62,63,[[1153,1,1,62,63]]],[64,1,1,63,64,[[1166,1,1,63,64]]],[65,10,9,64,73,[[1170,1,1,64,65],[1172,1,1,65,66],[1173,1,1,66,67],[1175,2,1,67,68],[1176,1,1,68,69],[1177,1,1,69,70],[1178,1,1,70,71],[1186,1,1,71,72],[1188,1,1,72,73]]]],[23298,23299,23469,23675,23702,23706,23737,23888,24093,24121,24217,24687,24819,24969,25004,25119,25222,25330,25352,25353,25354,25364,25515,25667,25800,25861,25928,25996,26977,27009,27015,27100,27116,27161,27386,27549,27651,27664,27812,28677,28703,28811,28834,28848,28854,28859,28865,28889,28956,28972,28978,29009,29079,29087,29092,29495,29587,29600,29658,30129,30277,30289,30436,30688,30775,30809,30821,30847,30862,30888,30905,31049,31084]]],["+",[5,5,[[43,3,3,0,3,[[1020,1,1,0,1],[1030,1,1,1,2],[1042,1,1,2,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[27009,27386,27812,28956,30688]]],["appearance",[2,2,[[46,2,2,0,2,[[1082,1,1,0,1],[1087,1,1,1,2]]]],[28889,28978]]],["countenance",[3,3,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]],[46,1,1,2,3,[[1080,1,1,2,3]]]],[25330,26977,28848]]],["face",[49,47,[[39,8,8,0,8,[[934,1,1,0,1],[939,1,1,1,2],[944,1,1,2,3],[945,2,2,3,5],[946,1,1,5,6],[954,2,2,6,8]]],[40,2,2,8,10,[[957,1,1,8,9],[970,1,1,9,10]]],[41,12,12,10,22,[[973,1,1,10,11],[974,1,1,11,12],[977,1,1,12,13],[979,1,1,13,14],[981,3,3,14,17],[982,1,1,17,18],[984,1,1,18,19],[989,1,1,19,20],[993,1,1,20,21],[994,1,1,21,22]]],[43,6,5,22,27,[[1023,2,1,22,23],[1024,1,1,23,24],[1034,1,1,24,25],[1037,2,2,25,27]]],[45,3,2,27,29,[[1074,2,1,27,28],[1075,1,1,28,29]]],[46,5,5,29,34,[[1080,3,3,29,32],[1081,1,1,32,33],[1088,1,1,33,34]]],[47,2,2,34,36,[[1091,1,1,34,35],[1092,1,1,35,36]]],[50,1,1,36,37,[[1108,1,1,36,37]]],[51,2,2,37,39,[[1112,1,1,37,38],[1113,1,1,38,39]]],[58,1,1,39,40,[[1146,1,1,39,40]]],[59,1,1,40,41,[[1153,1,1,40,41]]],[65,6,6,41,47,[[1170,1,1,41,42],[1172,1,1,42,43],[1176,1,1,43,44],[1178,1,1,44,45],[1186,1,1,45,46],[1188,1,1,46,47]]]],[23299,23469,23675,23702,23706,23737,24093,24121,24217,24819,24969,25004,25119,25222,25352,25353,25354,25364,25515,25667,25861,25928,27116,27161,27549,27651,27664,28677,28703,28848,28854,28859,28865,29009,29079,29092,29495,29587,29600,30289,30436,30775,30809,30862,30905,31049,31084]]],["faces",[6,5,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[65,4,3,2,5,[[1173,1,1,2,3],[1175,2,1,3,4],[1177,1,1,4,5]]]],[23298,25996,30821,30847,30888]]],["fashion",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30277]]],["person",[5,5,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[46,1,1,3,4,[[1079,1,1,3,4]]],[47,1,1,4,5,[[1092,1,1,4,5]]]],[23888,24687,25800,28834,29087]]],["persons",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28811]]],["presence",[6,6,[[43,2,2,0,2,[[1020,1,1,0,1],[1022,1,1,1,2]]],[46,1,1,2,3,[[1087,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]],[52,1,1,4,5,[[1116,1,1,4,5]]],[57,1,1,5,6,[[1141,1,1,5,6]]]],[27015,27100,28972,29587,29658,30129]]]]},{"k":"G4384","v":[["appointed",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27549]]]]},{"k":"G4385","v":[["bound",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27729]]]]},{"k":"G4386","v":[["*",[10,10,[[42,3,3,0,3,[[1002,1,1,0,1],[1003,1,1,1,2],[1005,1,1,2,3]]],[46,1,1,3,4,[[1078,1,1,3,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]],[53,1,1,5,6,[[1119,1,1,5,6]]],[57,3,3,6,9,[[1136,1,1,6,7],[1139,1,1,7,8],[1142,1,1,8,9]]],[59,1,1,9,10,[[1151,1,1,9,10]]]],[26319,26379,26448,28815,29144,29709,30020,30091,30165,30388]]],["+",[2,2,[[42,1,1,0,1,[[1003,1,1,0,1]]],[57,1,1,1,2,[[1136,1,1,1,2]]]],[26379,30020]]],["before",[4,4,[[42,2,2,0,2,[[1002,1,1,0,1],[1005,1,1,1,2]]],[46,1,1,2,3,[[1078,1,1,2,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]]],[26319,26448,28815,29709]]],["first",[2,2,[[47,1,1,0,1,[[1094,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[29144,30091]]],["former",[2,2,[[57,1,1,0,1,[[1142,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[30165,30388]]]]},{"k":"G4387","v":[["former",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29294]]]]},{"k":"G4388","v":[["*",[3,3,[[44,2,2,0,2,[[1046,1,1,0,1],[1048,1,1,1,2]]],[48,1,1,2,3,[[1097,1,1,2,3]]]],[27943,28016,29215]]],["forth",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28016]]],["purposed",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]]],[27943,29215]]]]},{"k":"G4389","v":[["exhorting",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27584]]]]},{"k":"G4390","v":[["*",[2,2,[[41,1,1,0,1,[[991,1,1,0,1]]],[42,1,1,1,2,[[1016,1,1,1,2]]]],[25735,26871]]],["+",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26871]]],["ran",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25735]]]]},{"k":"G4391","v":[["*",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]]],[25947,27185]]],["before",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25947]]],["beforetime",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27185]]]]},{"k":"G4392","v":[["*",[7,7,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[42,1,1,3,4,[[1011,1,1,3,4]]],[43,1,1,4,5,[[1044,1,1,4,5]]],[49,1,1,5,6,[[1103,1,1,5,6]]],[51,1,1,6,7,[[1112,1,1,6,7]]]],[23932,24713,25826,26721,27885,29379,29575]]],["cloke",[2,2,[[42,1,1,0,1,[[1011,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]]],[26721,29575]]],["colour",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27885]]],["pretence",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]]],[23932,24713,29379]]],["shew",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25826]]]]},{"k":"G4393","v":[["forth",[2,1,[[41,2,1,0,1,[[978,2,1,0,1]]]],[25191]]]]},{"k":"G4394","v":[["*",[19,19,[[39,1,1,0,1,[[941,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]],[45,5,5,2,7,[[1073,1,1,2,3],[1074,2,2,3,5],[1075,2,2,5,7]]],[51,1,1,7,8,[[1115,1,1,7,8]]],[53,2,2,8,10,[[1119,1,1,8,9],[1122,1,1,9,10]]],[60,2,2,10,12,[[1156,2,2,10,12]]],[65,7,7,12,19,[[1167,1,1,12,13],[1177,1,1,13,14],[1185,1,1,14,15],[1188,4,4,15,19]]]],[23553,28251,28644,28667,28673,28684,28700,29641,29714,29761,30499,30500,30700,30878,31027,31087,31090,31098,31099]]],["prophecies",[2,2,[[45,1,1,0,1,[[1074,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]]],[28673,29714]]],["prophecy",[14,14,[[39,1,1,0,1,[[941,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]],[45,2,2,2,4,[[1073,1,1,2,3],[1074,1,1,3,4]]],[53,1,1,4,5,[[1122,1,1,4,5]]],[60,2,2,5,7,[[1156,2,2,5,7]]],[65,7,7,7,14,[[1167,1,1,7,8],[1177,1,1,8,9],[1185,1,1,9,10],[1188,4,4,10,14]]]],[23553,28251,28644,28667,29761,30499,30500,30700,30878,31027,31087,31090,31098,31099]]],["prophesying",[2,2,[[45,2,2,0,2,[[1075,2,2,0,2]]]],[28684,28700]]],["prophesyings",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29641]]]]},{"k":"G4395","v":[["*",[28,27,[[39,4,4,0,4,[[935,1,1,0,1],[939,1,1,1,2],[943,1,1,2,3],[954,1,1,3,4]]],[40,2,2,4,6,[[963,1,1,4,5],[970,1,1,5,6]]],[41,2,2,6,8,[[973,1,1,6,7],[994,1,1,7,8]]],[42,1,1,8,9,[[1007,1,1,8,9]]],[43,4,4,9,13,[[1019,2,2,9,11],[1036,1,1,11,12],[1038,1,1,12,13]]],[45,11,10,13,23,[[1072,2,2,13,15],[1074,1,1,15,16],[1075,8,7,16,23]]],[59,1,1,23,24,[[1151,1,1,23,24]]],[64,1,1,24,25,[[1166,1,1,24,25]]],[65,2,2,25,27,[[1176,1,1,25,26],[1177,1,1,26,27]]]],[23338,23472,23640,24122,24469,24819,24960,25928,26574,26966,26967,27591,27673,28604,28605,28674,28679,28681,28682,28683,28702,28709,28717,30384,30686,30872,30875]]],["Prophesy",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]]],[24122,24819,25928]]],["prophesied",[9,9,[[39,2,2,0,2,[[935,1,1,0,1],[939,1,1,1,2]]],[40,1,1,2,3,[[963,1,1,2,3]]],[41,1,1,3,4,[[973,1,1,3,4]]],[42,1,1,4,5,[[1007,1,1,4,5]]],[43,1,1,5,6,[[1036,1,1,5,6]]],[45,1,1,6,7,[[1075,1,1,6,7]]],[59,1,1,7,8,[[1151,1,1,7,8]]],[64,1,1,8,9,[[1166,1,1,8,9]]]],[23338,23472,24469,24960,26574,27591,28683,30384,30686]]],["prophesieth",[4,4,[[45,4,4,0,4,[[1072,1,1,0,1],[1075,3,3,1,4]]]],[28605,28681,28682,28683]]],["prophesy",[11,11,[[39,1,1,0,1,[[943,1,1,0,1]]],[43,3,3,1,4,[[1019,2,2,1,3],[1038,1,1,3,4]]],[45,5,5,4,9,[[1074,1,1,4,5],[1075,4,4,5,9]]],[65,2,2,9,11,[[1176,1,1,9,10],[1177,1,1,10,11]]]],[23640,26966,26967,27673,28674,28679,28702,28709,28717,30872,30875]]],["prophesying",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28604]]]]},{"k":"G4396","v":[["*",[149,143,[[39,39,36,0,36,[[929,1,1,0,1],[930,4,4,1,5],[931,1,1,5,6],[932,1,1,6,7],[933,2,2,7,9],[935,1,1,9,10],[936,1,1,10,11],[938,3,1,11,12],[939,3,2,12,14],[940,2,2,14,16],[941,3,3,16,19],[942,1,1,19,20],[944,2,2,20,22],[949,4,4,22,26],[950,1,1,26,27],[951,5,5,27,32],[952,1,1,32,33],[954,1,1,33,34],[955,2,2,34,36]]],[40,7,6,36,42,[[957,1,1,36,37],[962,3,2,37,39],[964,1,1,39,40],[967,1,1,40,41],[969,1,1,41,42]]],[41,31,30,42,72,[[973,2,2,42,44],[975,1,1,44,45],[976,3,3,45,48],[978,1,1,48,49],[979,5,4,49,53],[981,2,2,53,55],[982,1,1,55,56],[983,4,4,56,60],[985,3,3,60,63],[988,3,3,63,66],[990,1,1,66,67],[992,1,1,67,68],[996,4,4,68,72]]],[42,14,14,72,86,[[997,4,4,72,76],[1000,2,2,76,78],[1002,2,2,78,80],[1003,2,2,80,82],[1004,2,2,82,84],[1005,1,1,84,85],[1008,1,1,85,86]]],[43,30,30,86,116,[[1019,2,2,86,88],[1020,6,6,88,94],[1024,4,4,94,98],[1025,3,3,98,101],[1027,1,1,101,102],[1028,1,1,102,103],[1030,5,5,103,108],[1032,2,2,108,110],[1038,1,1,110,111],[1041,1,1,111,112],[1043,2,2,112,114],[1045,2,2,114,116]]],[44,3,3,116,119,[[1046,1,1,116,117],[1048,1,1,117,118],[1056,1,1,118,119]]],[45,6,5,119,124,[[1073,2,2,119,121],[1075,4,3,121,124]]],[48,3,3,124,127,[[1098,1,1,124,125],[1099,1,1,125,126],[1100,1,1,126,127]]],[51,1,1,127,128,[[1112,1,1,127,128]]],[55,1,1,128,129,[[1129,1,1,128,129]]],[57,2,2,129,131,[[1133,1,1,129,130],[1143,1,1,130,131]]],[58,1,1,131,132,[[1150,1,1,131,132]]],[59,1,1,132,133,[[1151,1,1,132,133]]],[60,2,2,133,135,[[1157,1,1,133,134],[1158,1,1,134,135]]],[65,8,8,135,143,[[1176,1,1,135,136],[1177,2,2,136,138],[1182,1,1,138,139],[1184,2,2,139,141],[1188,2,2,141,143]]]],[23166,23174,23184,23186,23192,23195,23223,23246,23251,23328,23362,23458,23468,23472,23506,23528,23556,23574,23596,23602,23676,23686,23830,23837,23852,23872,23912,23947,23948,23949,23952,23955,23972,24110,24138,24164,24217,24411,24422,24528,24672,24731,24963,24969,25029,25080,25087,25090,25169,25211,25221,25223,25234,25309,25320,25387,25434,25452,25454,25455,25546,25551,25552,25636,25649,25651,25719,25785,26010,26016,26018,26035,26065,26067,26069,26089,26175,26200,26271,26302,26368,26380,26433,26434,26457,26618,26965,26979,27014,27017,27018,27019,27020,27021,27153,27158,27164,27168,27204,27206,27210,27302,27334,27363,27377,27382,27389,27402,27457,27474,27674,27783,27845,27850,27922,27924,27932,28012,28212,28662,28663,28707,28710,28715,29249,29256,29283,29585,29904,29964,30204,30364,30384,30516,30524,30868,30882,30890,30960,31013,31017,31086,31089]]],["+",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27302]]],["Prophet",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26368]]],["prophet",[66,63,[[39,24,22,0,22,[[929,1,1,0,1],[930,3,3,1,4],[931,1,1,4,5],[932,1,1,5,6],[936,1,1,6,7],[938,2,1,7,8],[939,2,1,8,9],[940,2,2,9,11],[941,2,2,11,13],[942,1,1,13,14],[944,1,1,14,15],[949,4,4,15,19],[952,1,1,19,20],[955,2,2,20,22]]],[40,4,4,22,26,[[962,2,2,22,24],[967,1,1,24,25],[969,1,1,25,26]]],[41,14,13,26,39,[[973,1,1,26,27],[975,1,1,27,28],[976,3,3,28,31],[979,5,4,31,35],[983,1,1,35,36],[985,1,1,36,37],[992,1,1,37,38],[996,1,1,38,39]]],[42,9,9,39,48,[[997,3,3,39,42],[1000,2,2,42,44],[1002,1,1,44,45],[1003,1,1,45,46],[1005,1,1,46,47],[1008,1,1,47,48]]],[43,12,12,48,60,[[1019,2,2,48,50],[1020,2,2,50,52],[1024,2,2,52,54],[1025,3,3,54,57],[1030,1,1,57,58],[1038,1,1,58,59],[1045,1,1,59,60]]],[45,1,1,60,61,[[1075,1,1,60,61]]],[55,1,1,61,62,[[1129,1,1,61,62]]],[60,1,1,62,63,[[1157,1,1,62,63]]]],[23166,23174,23184,23186,23195,23223,23362,23458,23468,23506,23528,23574,23596,23602,23676,23830,23837,23852,23872,23972,24138,24164,24411,24422,24672,24731,24969,25029,25080,25087,25090,25211,25221,25223,25234,25434,25551,25785,26010,26065,26067,26069,26175,26200,26271,26380,26457,26618,26965,26979,27018,27019,27153,27164,27204,27206,27210,27382,27674,27924,28715,29904,30516]]],["prophet's",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23458]]],["prophets",[80,79,[[39,14,14,0,14,[[930,1,1,0,1],[933,2,2,1,3],[935,1,1,3,4],[939,1,1,4,5],[941,1,1,5,6],[944,1,1,6,7],[950,1,1,7,8],[951,5,5,8,13],[954,1,1,13,14]]],[40,3,3,14,17,[[957,1,1,14,15],[962,1,1,15,16],[964,1,1,16,17]]],[41,17,17,17,34,[[973,1,1,17,18],[978,1,1,18,19],[981,2,2,19,21],[982,1,1,21,22],[983,3,3,22,25],[985,2,2,25,27],[988,3,3,27,30],[990,1,1,30,31],[996,3,3,31,34]]],[42,4,4,34,38,[[997,1,1,34,35],[1002,1,1,35,36],[1004,2,2,36,38]]],[43,17,17,38,55,[[1020,4,4,38,42],[1024,2,2,42,44],[1028,1,1,44,45],[1030,4,4,45,49],[1032,2,2,49,51],[1041,1,1,51,52],[1043,2,2,52,54],[1045,1,1,54,55]]],[44,3,3,55,58,[[1046,1,1,55,56],[1048,1,1,56,57],[1056,1,1,57,58]]],[45,5,4,58,62,[[1073,2,2,58,60],[1075,3,2,60,62]]],[48,3,3,62,65,[[1098,1,1,62,63],[1099,1,1,63,64],[1100,1,1,64,65]]],[51,1,1,65,66,[[1112,1,1,65,66]]],[57,2,2,66,68,[[1133,1,1,66,67],[1143,1,1,67,68]]],[58,1,1,68,69,[[1150,1,1,68,69]]],[59,1,1,69,70,[[1151,1,1,69,70]]],[60,1,1,70,71,[[1158,1,1,70,71]]],[65,8,8,71,79,[[1176,1,1,71,72],[1177,2,2,72,74],[1182,1,1,74,75],[1184,2,2,75,77],[1188,2,2,77,79]]]],[23192,23246,23251,23328,23472,23556,23686,23912,23947,23948,23949,23952,23955,24110,24217,24422,24528,24963,25169,25309,25320,25387,25452,25454,25455,25546,25552,25636,25649,25651,25719,26016,26018,26035,26089,26302,26433,26434,27014,27017,27020,27021,27158,27168,27334,27363,27377,27389,27402,27457,27474,27783,27845,27850,27922,27932,28012,28212,28662,28663,28707,28710,29249,29256,29283,29585,29964,30204,30364,30384,30524,30868,30882,30890,30960,31013,31017,31086,31089]]]]},{"k":"G4397","v":[["*",[2,2,[[44,1,1,0,1,[[1061,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[28362,30498]]],["prophecy",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30498]]],["prophets",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28362]]]]},{"k":"G4398","v":[["prophetess",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[65,1,1,1,2,[[1168,1,1,1,2]]]],[25009,30737]]]]},{"k":"G4399","v":[["prevented",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23725]]]]},{"k":"G4400","v":[["*",[2,2,[[43,2,2,0,2,[[1039,1,1,0,1],[1043,1,1,1,2]]]],[27718,27839]]],["chosen",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27718]]],["make",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27839]]]]},{"k":"G4401","v":[["before",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27300]]]]},{"k":"G4402","v":[["Prochorus",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27106]]]]},{"k":"G4403","v":[["*",[3,3,[[40,1,1,0,1,[[960,1,1,0,1]]],[43,2,2,1,3,[[1044,2,2,1,3]]]],[24361,27884,27896]]],["part",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27896]]],["ship",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24361]]],["stern",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27884]]]]},{"k":"G4404","v":[["*",[10,10,[[39,2,2,0,2,[[944,1,1,0,1],[948,1,1,1,2]]],[40,6,6,2,8,[[957,1,1,2,3],[967,1,1,3,4],[969,1,1,4,5],[971,1,1,5,6],[972,2,2,6,8]]],[42,1,1,8,9,[[1016,1,1,8,9]]],[43,1,1,9,10,[[1045,1,1,9,10]]]],[23675,23793,24250,24660,24752,24827,24875,24882,26868,27922]]],["+",[2,2,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23793,24250]]],["early",[2,2,[[40,1,1,0,1,[[972,1,1,0,1]]],[42,1,1,1,2,[[1016,1,1,1,2]]]],[24882,26868]]],["morning",[6,6,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,4,4,1,5,[[967,1,1,1,2],[969,1,1,2,3],[971,1,1,3,4],[972,1,1,4,5]]],[43,1,1,5,6,[[1045,1,1,5,6]]]],[23675,24660,24752,24827,24875,27922]]]]},{"k":"G4405","v":[["*",[4,4,[[39,2,2,0,2,[[949,1,1,0,1],[955,1,1,1,2]]],[42,2,2,2,4,[[1014,1,1,2,3],[1017,1,1,3,4]]]],[23844,24130,26813,26902]]],["early",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26813]]],["morning",[3,3,[[39,2,2,0,2,[[949,1,1,0,1],[955,1,1,1,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]]],[23844,24130,26902]]]]},{"k":"G4406","v":[["early",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30361]]]]},{"k":"G4407","v":[["morning",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30745]]]]},{"k":"G4408","v":[["*",[2,2,[[43,2,2,0,2,[[1044,2,2,0,2]]]],[27885,27896]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27896]]],["foreship",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27885]]]]},{"k":"G4409","v":[["preeminence",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29483]]]]},{"k":"G4410","v":[["seats",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,2,2,4,[[983,1,1,2,3],[992,1,1,3,4]]]],[23924,24712,25448,25825]]]]},{"k":"G4411","v":[["*",[5,5,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,3,3,2,5,[[986,2,2,2,4],[992,1,1,4,5]]]],[23924,24712,25560,25561,25825]]],["room",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25561]]],["rooms",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,2,2,4,[[986,1,1,2,3],[992,1,1,3,4]]]],[23924,24712,25560,25825]]]]},{"k":"G4412","v":[["*",[60,60,[[39,9,9,0,9,[[933,1,1,0,1],[934,1,1,1,2],[935,1,1,2,3],[936,1,1,3,4],[940,1,1,4,5],[941,1,1,5,6],[945,2,2,6,8],[951,1,1,8,9]]],[40,7,7,9,16,[[959,1,1,9,10],[960,1,1,10,11],[963,1,1,11,12],[965,2,2,12,14],[969,1,1,14,15],[972,1,1,15,16]]],[41,10,10,16,26,[[978,1,1,16,17],[981,2,2,17,19],[982,1,1,19,20],[983,1,1,20,21],[984,1,1,21,22],[986,2,2,22,24],[989,1,1,24,25],[993,1,1,25,26]]],[42,6,6,26,32,[[998,1,1,26,27],[1006,1,1,27,28],[1008,1,1,28,29],[1011,1,1,29,30],[1014,1,1,30,31],[1015,1,1,31,32]]],[43,6,6,32,38,[[1020,1,1,32,33],[1024,1,1,33,34],[1028,1,1,34,35],[1030,1,1,35,36],[1032,1,1,36,37],[1043,1,1,37,38]]],[44,6,6,38,44,[[1046,2,2,38,40],[1047,2,2,40,42],[1048,1,1,42,43],[1060,1,1,43,44]]],[45,3,3,44,47,[[1072,1,1,44,45],[1073,1,1,45,46],[1076,1,1,46,47]]],[46,1,1,47,48,[[1085,1,1,47,48]]],[48,1,1,48,49,[[1100,1,1,48,49]]],[51,1,1,49,50,[[1114,1,1,49,50]]],[52,1,1,50,51,[[1117,1,1,50,51]]],[53,3,3,51,54,[[1120,1,1,51,52],[1121,1,1,52,53],[1123,1,1,53,54]]],[54,1,1,54,55,[[1125,1,1,54,55]]],[57,1,1,55,56,[[1139,1,1,55,56]]],[58,1,1,56,57,[[1148,1,1,56,57]]],[59,1,1,57,58,[[1154,1,1,57,58]]],[60,2,2,58,60,[[1156,1,1,58,59],[1158,1,1,59,60]]]],[23258,23315,23321,23366,23518,23569,23710,23711,23944,24315,24351,24490,24549,24550,24727,24882,25188,25360,25362,25368,25443,25460,25581,25584,25676,25835,26105,26521,26596,26717,26798,26864,27022,27128,27333,27408,27456,27843,27938,27946,27971,27972,27993,28327,28618,28662,28764,28937,29281,29619,29664,29717,29741,29767,29814,30066,30336,30463,30499,30525]]],["+",[4,4,[[42,1,1,0,1,[[1015,1,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]],[57,1,1,2,3,[[1139,1,1,2,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]]],[26864,27993,30066,30336]]],["First",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27938]]],["all",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[45,1,1,1,2,[[1072,1,1,1,2]]]],[25460,28618]]],["before",[1,1,[[42,1,1,0,1,[[1011,1,1,0,1]]]],[26717]]],["beginning",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26105]]],["first",[51,51,[[39,9,9,0,9,[[933,1,1,0,1],[934,1,1,1,2],[935,1,1,2,3],[936,1,1,3,4],[940,1,1,4,5],[941,1,1,5,6],[945,2,2,6,8],[951,1,1,8,9]]],[40,7,7,9,16,[[959,1,1,9,10],[960,1,1,10,11],[963,1,1,11,12],[965,2,2,12,14],[969,1,1,14,15],[972,1,1,15,16]]],[41,9,9,16,25,[[978,1,1,16,17],[981,2,2,17,19],[982,1,1,19,20],[983,1,1,20,21],[986,2,2,21,23],[989,1,1,23,24],[993,1,1,24,25]]],[42,3,3,25,28,[[1006,1,1,25,26],[1008,1,1,26,27],[1014,1,1,27,28]]],[43,6,6,28,34,[[1020,1,1,28,29],[1024,1,1,29,30],[1028,1,1,30,31],[1030,1,1,31,32],[1032,1,1,32,33],[1043,1,1,33,34]]],[44,4,4,34,38,[[1046,1,1,34,35],[1047,2,2,35,37],[1060,1,1,37,38]]],[45,2,2,38,40,[[1073,1,1,38,39],[1076,1,1,39,40]]],[46,1,1,40,41,[[1085,1,1,40,41]]],[48,1,1,41,42,[[1100,1,1,41,42]]],[51,1,1,42,43,[[1114,1,1,42,43]]],[52,1,1,43,44,[[1117,1,1,43,44]]],[53,3,3,44,47,[[1120,1,1,44,45],[1121,1,1,45,46],[1123,1,1,46,47]]],[54,1,1,47,48,[[1125,1,1,47,48]]],[59,1,1,48,49,[[1154,1,1,48,49]]],[60,2,2,49,51,[[1156,1,1,49,50],[1158,1,1,50,51]]]],[23258,23315,23321,23366,23518,23569,23710,23711,23944,24315,24351,24490,24549,24550,24727,24882,25188,25360,25362,25368,25443,25581,25584,25676,25835,26521,26596,26798,27022,27128,27333,27408,27456,27843,27946,27971,27972,28327,28662,28764,28937,29281,29619,29664,29717,29741,29767,29814,30463,30499,30525]]]]},{"k":"G4413","v":[["*",[100,94,[[39,17,15,0,15,[[938,1,1,0,1],[940,1,1,1,2],[945,1,1,2,3],[947,2,1,3,4],[948,5,4,4,8],[949,3,3,8,11],[950,2,2,11,13],[954,1,1,13,14],[955,1,1,14,15]]],[40,11,10,15,25,[[962,1,1,15,16],[965,1,1,16,17],[966,3,2,17,19],[968,4,4,19,23],[970,1,1,23,24],[972,1,1,24,25]]],[41,10,9,25,34,[[974,1,1,25,26],[983,1,1,26,27],[985,2,1,27,28],[986,1,1,28,29],[987,1,1,29,30],[988,1,1,30,31],[991,2,2,31,33],[992,1,1,33,34]]],[42,8,8,34,42,[[997,3,3,34,37],[1001,1,1,37,38],[1004,1,1,38,39],[1015,1,1,39,40],[1016,2,2,40,42]]],[43,11,11,42,53,[[1018,1,1,42,43],[1029,1,1,43,44],[1030,1,1,44,45],[1033,1,1,45,46],[1034,1,1,46,47],[1037,1,1,47,48],[1042,1,1,48,49],[1043,1,1,49,50],[1044,1,1,50,51],[1045,2,2,51,53]]],[44,1,1,53,54,[[1055,1,1,53,54]]],[45,4,4,54,58,[[1075,1,1,54,55],[1076,3,3,55,58]]],[48,1,1,58,59,[[1102,1,1,58,59]]],[49,1,1,59,60,[[1103,1,1,59,60]]],[53,4,4,60,64,[[1119,2,2,60,62],[1120,1,1,62,63],[1123,1,1,63,64]]],[54,2,2,64,66,[[1126,1,1,64,65],[1128,1,1,65,66]]],[57,9,9,66,75,[[1140,2,2,66,68],[1141,6,6,68,74],[1142,1,1,74,75]]],[60,1,1,75,76,[[1157,1,1,75,76]]],[61,1,1,76,77,[[1162,1,1,76,77]]],[65,19,17,77,94,[[1167,2,2,77,79],[1168,4,4,79,83],[1170,2,2,83,85],[1174,1,1,85,86],[1179,2,1,86,87],[1182,1,1,87,88],[1186,2,2,88,90],[1187,4,3,90,93],[1188,1,1,93,94]]]],[23419,23534,23727,23792,23800,23802,23808,23819,23854,23857,23862,23897,23910,24071,24193,24428,24573,24619,24632,24693,24701,24702,24703,24766,24882,24975,25431,25548,25571,25610,25625,25747,25778,25808,26059,26074,26085,26214,26388,26857,26871,26875,26924,27347,27412,27495,27527,27644,27798,27846,27898,27906,27916,28207,28708,28721,28763,28765,29339,29366,29711,29712,29729,29775,29833,29886,30099,30105,30106,30107,30111,30113,30120,30123,30142,30520,30622,30708,30714,30721,30722,30725,30736,30769,30775,30834,30920,30956,31043,31044,31054,31057,31072,31093]]],["+",[4,4,[[43,1,1,0,1,[[1045,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[57,1,1,3,4,[[1140,1,1,3,4]]]],[27916,28721,29833,30105]]],["First",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28207]]],["before",[2,2,[[42,2,2,0,2,[[997,2,2,0,2]]]],[26059,26074]]],["beginning",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30520]]],["best",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25610]]],["chief",[7,7,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,1,1,2,3,[[991,1,1,2,3]]],[43,3,3,3,6,[[1033,1,1,3,4],[1034,1,1,4,5],[1042,1,1,5,6]]],[53,1,1,6,7,[[1119,1,1,6,7]]]],[23819,24428,25778,27495,27527,27798,29711]]],["chiefest",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24632]]],["first",[79,73,[[39,16,14,0,14,[[938,1,1,0,1],[940,1,1,1,2],[945,1,1,2,3],[947,2,1,3,4],[948,4,3,4,7],[949,3,3,7,10],[950,2,2,10,12],[954,1,1,12,13],[955,1,1,13,14]]],[40,9,8,14,22,[[965,1,1,14,15],[966,2,1,15,16],[968,4,4,16,20],[970,1,1,20,21],[972,1,1,21,22]]],[41,8,7,22,29,[[974,1,1,22,23],[983,1,1,23,24],[985,2,1,24,25],[986,1,1,25,26],[988,1,1,26,27],[991,1,1,27,28],[992,1,1,28,29]]],[42,6,6,29,35,[[997,1,1,29,30],[1001,1,1,30,31],[1004,1,1,31,32],[1015,1,1,32,33],[1016,2,2,33,35]]],[43,4,4,35,39,[[1029,1,1,35,36],[1037,1,1,36,37],[1043,1,1,37,38],[1044,1,1,38,39]]],[45,3,3,39,42,[[1075,1,1,39,40],[1076,2,2,40,42]]],[48,1,1,42,43,[[1102,1,1,42,43]]],[49,1,1,43,44,[[1103,1,1,43,44]]],[53,3,3,44,47,[[1119,1,1,44,45],[1120,1,1,45,46],[1123,1,1,46,47]]],[54,1,1,47,48,[[1128,1,1,47,48]]],[57,8,8,48,56,[[1140,1,1,48,49],[1141,6,6,49,55],[1142,1,1,55,56]]],[61,1,1,56,57,[[1162,1,1,56,57]]],[65,18,16,57,73,[[1167,2,2,57,59],[1168,4,4,59,63],[1170,2,2,63,65],[1174,1,1,65,66],[1179,2,1,66,67],[1182,1,1,67,68],[1186,2,2,68,70],[1187,3,2,70,72],[1188,1,1,72,73]]]],[23419,23534,23727,23792,23800,23802,23808,23854,23857,23862,23897,23910,24071,24193,24573,24619,24693,24701,24702,24703,24766,24882,24975,25431,25548,25571,25625,25747,25808,26085,26214,26388,26857,26871,26875,27347,27644,27846,27898,28708,28763,28765,29339,29366,29712,29729,29775,29886,30099,30106,30107,30111,30113,30120,30123,30142,30622,30708,30714,30721,30722,30725,30736,30769,30775,30834,30920,30956,31043,31044,31054,31072,31093]]],["former",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26924]]],["man",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27906]]],["men",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27412]]],["things",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31057]]]]},{"k":"G4414","v":[["ringleader",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27774]]]]},{"k":"G4415","v":[["birthright",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30228]]]]},{"k":"G4416","v":[["*",[9,9,[[39,1,1,0,1,[[929,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[44,1,1,2,3,[[1053,1,1,2,3]]],[50,2,2,3,5,[[1107,2,2,3,5]]],[57,3,3,5,8,[[1133,1,1,5,6],[1143,1,1,6,7],[1144,1,1,7,8]]],[65,1,1,8,9,[[1167,1,1,8,9]]]],[23169,24980,28145,29480,29483,29969,30200,30235,30702]]],["begotten",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30702]]],["firstbegotten",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29969]]],["firstborn",[7,7,[[39,1,1,0,1,[[929,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[44,1,1,2,3,[[1053,1,1,2,3]]],[50,2,2,3,5,[[1107,2,2,3,5]]],[57,2,2,5,7,[[1143,1,1,5,6],[1144,1,1,6,7]]]],[23169,24980,28145,29480,29483,30200,30235]]]]},{"k":"G4417","v":[["*",[5,4,[[44,1,1,0,1,[[1056,1,1,0,1]]],[58,3,2,1,3,[[1147,1,1,1,2],[1148,2,1,2,3]]],[60,1,1,3,4,[[1156,1,1,3,4]]]],[28220,30303,30321,30489]]],["fall",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30489]]],["offend",[3,2,[[58,3,2,0,2,[[1147,1,1,0,1],[1148,2,1,1,2]]]],[30303,30321]]],["stumbled",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28220]]]]},{"k":"G4418","v":[["heel",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26648]]]]},{"k":"G4419","v":[["pinnacle",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]]],[23214,25072]]]]},{"k":"G4420","v":[["wings",[5,5,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[65,3,3,2,5,[[1170,1,1,2,3],[1175,1,1,3,4],[1178,1,1,4,5]]]],[23955,25552,30776,30849,30905]]]]},{"k":"G4421","v":[["birds",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28757]]]]},{"k":"G4422","v":[["terrified",[2,2,[[41,2,2,0,2,[[993,1,1,0,1],[996,1,1,1,2]]]],[25835,26028]]]]},{"k":"G4423","v":[["amazement",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30430]]]]},{"k":"G4424","v":[["Ptolemais",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27671]]]]},{"k":"G4425","v":[["fan",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23204,25042]]]]},{"k":"G4426","v":[["+",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29389]]]]},{"k":"G4427","v":[["spittle",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26446]]]]},{"k":"G4428","v":[["closed",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25083]]]]},{"k":"G4429","v":[["*",[3,3,[[40,2,2,0,2,[[963,1,1,0,1],[964,1,1,1,2]]],[42,1,1,2,3,[[1005,1,1,2,3]]]],[24496,24523,26446]]],["spat",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26446]]],["spit",[2,2,[[40,2,2,0,2,[[963,1,1,0,1],[964,1,1,1,2]]]],[24496,24523]]]]},{"k":"G4430","v":[["*",[5,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[65,3,2,2,4,[[1177,3,2,2,4]]]],[23985,24436,30880,30881]]],["bodies",[3,2,[[65,3,2,0,2,[[1177,3,2,0,2]]]],[30880,30881]]],["carcase",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23985]]],["corpse",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24436]]]]},{"k":"G4431","v":[["fall",[2,2,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]]],[23343,25007]]]]},{"k":"G4432","v":[["poverty",[3,3,[[46,2,2,0,2,[[1085,2,2,0,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[28934,28941,30726]]]]},{"k":"G4433","v":[["poor",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28941]]]]},{"k":"G4434","v":[["*",[34,34,[[39,5,5,0,5,[[933,1,1,0,1],[939,1,1,1,2],[947,1,1,2,3],[954,2,2,3,5]]],[40,5,5,5,10,[[966,1,1,5,6],[968,2,2,6,8],[970,2,2,8,10]]],[41,10,10,10,20,[[976,1,1,10,11],[978,1,1,11,12],[979,1,1,12,13],[986,2,2,13,15],[988,2,2,15,17],[990,1,1,17,18],[991,1,1,18,19],[993,1,1,19,20]]],[42,4,4,20,24,[[1008,3,3,20,23],[1009,1,1,23,24]]],[44,1,1,24,25,[[1060,1,1,24,25]]],[46,1,1,25,26,[[1083,1,1,25,26]]],[47,2,2,26,28,[[1092,1,1,26,27],[1094,1,1,27,28]]],[58,4,4,28,32,[[1147,4,4,28,32]]],[65,2,2,32,34,[[1169,1,1,32,33],[1179,1,1,33,34]]]],[23237,23464,23783,24063,24065,24609,24715,24716,24759,24761,25081,25166,25217,25566,25574,25640,25642,25710,25739,25829,26585,26586,26588,26659,28329,28908,29091,29140,30295,30296,30298,30299,30763,30924]]],["+",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30924]]],["beggar",[2,2,[[41,2,2,0,2,[[988,2,2,0,2]]]],[25640,25642]]],["beggarly",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29140]]],["man",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30295]]],["poor",[29,29,[[39,5,5,0,5,[[933,1,1,0,1],[939,1,1,1,2],[947,1,1,2,3],[954,2,2,3,5]]],[40,5,5,5,10,[[966,1,1,5,6],[968,2,2,6,8],[970,2,2,8,10]]],[41,8,8,10,18,[[976,1,1,10,11],[978,1,1,11,12],[979,1,1,12,13],[986,2,2,13,15],[990,1,1,15,16],[991,1,1,16,17],[993,1,1,17,18]]],[42,4,4,18,22,[[1008,3,3,18,21],[1009,1,1,21,22]]],[44,1,1,22,23,[[1060,1,1,22,23]]],[46,1,1,23,24,[[1083,1,1,23,24]]],[47,1,1,24,25,[[1092,1,1,24,25]]],[58,3,3,25,28,[[1147,3,3,25,28]]],[65,1,1,28,29,[[1169,1,1,28,29]]]],[23237,23464,23783,24063,24065,24609,24715,24716,24759,24761,25081,25166,25217,25566,25574,25710,25739,25829,26585,26586,26588,26659,28329,28908,29091,30296,30298,30299,30763]]]]},{"k":"G4435","v":[["oft",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24466]]]]},{"k":"G4436","v":[["divination",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27499]]]]},{"k":"G4437","v":[["*",[3,3,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]]],[25140,27795,29786]]],["often",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[25140,29786]]],["oftener",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27795]]]]},{"k":"G4438","v":[["fight",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28566]]]]},{"k":"G4439","v":[["*",[10,9,[[39,4,3,0,3,[[935,3,2,0,2],[944,1,1,2,3]]],[41,2,2,3,5,[[979,1,1,3,4],[985,1,1,4,5]]],[43,3,3,5,8,[[1020,1,1,5,6],[1026,1,1,6,7],[1029,1,1,7,8]]],[57,1,1,8,9,[[1145,1,1,8,9]]]],[23329,23330,23690,25207,25542,27006,27240,27347,30253]]],["+",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27240]]],["gate",[8,7,[[39,3,2,0,2,[[935,3,2,0,2]]],[41,2,2,2,4,[[979,1,1,2,3],[985,1,1,3,4]]],[43,2,2,4,6,[[1020,1,1,4,5],[1029,1,1,5,6]]],[57,1,1,6,7,[[1145,1,1,6,7]]]],[23329,23330,25207,25542,27006,27347,30253]]],["gates",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23690]]]]},{"k":"G4440","v":[["*",[18,12,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[43,5,4,2,6,[[1027,1,1,2,3],[1029,3,2,3,5],[1031,1,1,5,6]]],[65,11,6,6,12,[[1187,10,5,6,11],[1188,1,1,11,12]]]],[24125,25640,27276,27350,27351,27427,31065,31066,31068,31074,31078,31094]]],["gate",[6,5,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,4,3,1,4,[[1027,1,1,1,2],[1029,3,2,2,4]]],[65,1,1,4,5,[[1187,1,1,4,5]]]],[25640,27276,27350,27351,31074]]],["gates",[11,7,[[43,1,1,0,1,[[1031,1,1,0,1]]],[65,10,6,1,7,[[1187,9,5,1,6],[1188,1,1,6,7]]]],[27427,31065,31066,31068,31074,31078,31094]]],["porch",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24125]]]]},{"k":"G4441","v":[["*",[12,12,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,2,2,1,3,[[987,1,1,1,2],[990,1,1,2,3]]],[42,2,2,3,5,[[1000,1,1,3,4],[1009,1,1,4,5]]],[43,7,7,5,12,[[1021,1,1,5,6],[1027,2,2,6,8],[1038,1,1,8,9],[1040,3,3,9,12]]]],[23173,25614,25724,26208,26654,27029,27277,27288,27697,27753,27754,27768]]],["ask",[2,2,[[42,1,1,0,1,[[1009,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]]],[26654,27288]]],["asked",[5,5,[[41,2,2,0,2,[[987,1,1,0,1],[990,1,1,1,2]]],[43,3,3,2,5,[[1021,1,1,2,3],[1027,1,1,3,4],[1040,1,1,4,5]]]],[25614,25724,27029,27277,27753]]],["demanded",[2,2,[[39,1,1,0,1,[[930,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[23173,27697]]],["enquire",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27754]]],["enquired",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26208]]],["understood",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27768]]]]},{"k":"G4442","v":[["*",[74,73,[[39,12,12,0,12,[[931,3,3,0,3],[933,1,1,3,4],[935,1,1,4,5],[941,3,3,5,8],[945,1,1,8,9],[946,2,2,9,11],[953,1,1,11,12]]],[40,8,8,12,20,[[965,8,8,12,20]]],[41,7,7,20,27,[[975,3,3,20,23],[981,1,1,23,24],[984,1,1,24,25],[989,1,1,25,26],[994,1,1,26,27]]],[42,1,1,27,28,[[1011,1,1,27,28]]],[43,4,4,28,32,[[1019,2,2,28,30],[1024,1,1,30,31],[1045,1,1,31,32]]],[44,1,1,32,33,[[1057,1,1,32,33]]],[45,3,2,33,35,[[1064,3,2,33,35]]],[52,1,1,35,36,[[1116,1,1,35,36]]],[57,5,5,36,41,[[1133,1,1,36,37],[1142,1,1,37,38],[1143,1,1,38,39],[1144,2,2,39,41]]],[58,3,3,41,44,[[1148,2,2,41,43],[1150,1,1,43,44]]],[59,1,1,44,45,[[1151,1,1,44,45]]],[60,1,1,45,46,[[1158,1,1,45,46]]],[64,2,2,46,48,[[1166,2,2,46,48]]],[65,25,25,48,73,[[1167,1,1,48,49],[1168,1,1,49,50],[1169,1,1,50,51],[1170,1,1,51,52],[1174,3,3,52,55],[1175,2,2,55,57],[1176,1,1,57,58],[1177,1,1,58,59],[1179,1,1,59,60],[1180,2,2,60,62],[1181,1,1,62,63],[1182,1,1,63,64],[1183,1,1,64,65],[1184,1,1,65,66],[1185,2,2,66,68],[1186,4,4,68,72],[1187,1,1,72,73]]]],[23202,23203,23204,23256,23335,23579,23581,23589,23715,23735,23736,24049,24560,24581,24582,24583,24584,24585,24586,24587,25034,25041,25042,25355,25508,25680,25919,26705,26952,26968,27146,27904,28265,28423,28425,29657,29970,30160,30206,30230,30241,30324,30325,30357,30381,30529,30679,30695,30711,30735,30764,30773,30832,30834,30835,30857,30858,30862,30877,30921,30936,30944,30948,30962,30991,31001,31029,31037,31047,31048,31052,31053,31061]]],["fiery",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30160]]],["fire",[73,72,[[39,12,12,0,12,[[931,3,3,0,3],[933,1,1,3,4],[935,1,1,4,5],[941,3,3,5,8],[945,1,1,8,9],[946,2,2,9,11],[953,1,1,11,12]]],[40,8,8,12,20,[[965,8,8,12,20]]],[41,7,7,20,27,[[975,3,3,20,23],[981,1,1,23,24],[984,1,1,24,25],[989,1,1,25,26],[994,1,1,26,27]]],[42,1,1,27,28,[[1011,1,1,27,28]]],[43,4,4,28,32,[[1019,2,2,28,30],[1024,1,1,30,31],[1045,1,1,31,32]]],[44,1,1,32,33,[[1057,1,1,32,33]]],[45,3,2,33,35,[[1064,3,2,33,35]]],[52,1,1,35,36,[[1116,1,1,35,36]]],[57,4,4,36,40,[[1133,1,1,36,37],[1143,1,1,37,38],[1144,2,2,38,40]]],[58,3,3,40,43,[[1148,2,2,40,42],[1150,1,1,42,43]]],[59,1,1,43,44,[[1151,1,1,43,44]]],[60,1,1,44,45,[[1158,1,1,44,45]]],[64,2,2,45,47,[[1166,2,2,45,47]]],[65,25,25,47,72,[[1167,1,1,47,48],[1168,1,1,48,49],[1169,1,1,49,50],[1170,1,1,50,51],[1174,3,3,51,54],[1175,2,2,54,56],[1176,1,1,56,57],[1177,1,1,57,58],[1179,1,1,58,59],[1180,2,2,59,61],[1181,1,1,61,62],[1182,1,1,62,63],[1183,1,1,63,64],[1184,1,1,64,65],[1185,2,2,65,67],[1186,4,4,67,71],[1187,1,1,71,72]]]],[23202,23203,23204,23256,23335,23579,23581,23589,23715,23735,23736,24049,24560,24581,24582,24583,24584,24585,24586,24587,25034,25041,25042,25355,25508,25680,25919,26705,26952,26968,27146,27904,28265,28423,28425,29657,29970,30206,30230,30241,30324,30325,30357,30381,30529,30679,30695,30711,30735,30764,30773,30832,30834,30835,30857,30858,30862,30877,30921,30936,30944,30948,30962,30991,31001,31029,31037,31047,31048,31052,31053,31061]]]]},{"k":"G4443","v":[["fire",[2,2,[[43,2,2,0,2,[[1045,2,2,0,2]]]],[27901,27902]]]]},{"k":"G4444","v":[["tower",[4,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,2,2,4,[[985,1,1,2,3],[986,1,1,3,4]]]],[23859,24674,25522,25581]]]]},{"k":"G4445","v":[["fever",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23359,24245]]]]},{"k":"G4446","v":[["fever",[6,6,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,2,2,2,4,[[976,2,2,2,4]]],[42,1,1,4,5,[[1000,1,1,4,5]]],[43,1,1,5,6,[[1045,1,1,5,6]]]],[23360,24246,25101,25102,26208,27907]]]]},{"k":"G4447","v":[["fire",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30857]]]]},{"k":"G4448","v":[["*",[6,6,[[45,1,1,0,1,[[1068,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]],[60,1,1,3,4,[[1158,1,1,3,4]]],[65,2,2,4,6,[[1167,1,1,4,5],[1169,1,1,5,6]]]],[28496,29018,29353,30534,30712,30764]]],["burn",[2,2,[[45,1,1,0,1,[[1068,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[28496,29018]]],["burned",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30712]]],["fiery",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29353]]],["fire",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30534]]],["tried",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30764]]]]},{"k":"G4449","v":[["red",[2,2,[[39,2,2,0,2,[[944,2,2,0,2]]]],[23674,23675]]]]},{"k":"G4450","v":[["red",[2,2,[[65,2,2,0,2,[[1172,1,1,0,1],[1178,1,1,1,2]]]],[30797,30894]]]]},{"k":"G4451","v":[["*",[3,3,[[59,1,1,0,1,[[1154,1,1,0,1]]],[65,2,2,1,3,[[1184,2,2,1,3]]]],[30458,31002,31011]]],["burning",[2,2,[[65,2,2,0,2,[[1184,2,2,0,2]]]],[31002,31011]]],["trial",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30458]]]]},{"k":"G4452","v":[]},{"k":"G4453","v":[["*",[22,20,[[39,6,5,0,5,[[938,1,1,0,1],[941,1,1,1,2],[947,1,1,2,3],[949,2,1,3,4],[953,1,1,4,5]]],[40,3,2,5,7,[[966,1,1,5,6],[967,2,1,6,7]]],[41,6,6,7,13,[[984,2,2,7,9],[989,1,1,9,10],[990,1,1,10,11],[991,1,1,11,12],[994,1,1,12,13]]],[42,2,2,13,15,[[998,2,2,13,15]]],[43,3,3,15,18,[[1021,2,2,15,17],[1022,1,1,17,18]]],[45,1,1,18,19,[[1071,1,1,18,19]]],[65,1,1,19,20,[[1179,1,1,19,20]]]],[23446,23583,23783,23838,24017,24609,24655,25465,25492,25679,25710,25776,25900,26109,26111,27056,27059,27060,28592,30925]]],["Sell",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25492]]],["sell",[6,6,[[39,2,2,0,2,[[947,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[966,1,1,2,3]]],[41,2,2,3,5,[[990,1,1,3,4],[994,1,1,4,5]]],[65,1,1,5,6,[[1179,1,1,5,6]]]],[23783,24017,24609,25710,25900,30925]]],["selleth",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23583]]],["sold",[14,12,[[39,3,2,0,2,[[938,1,1,0,1],[949,2,1,1,2]]],[40,2,1,2,3,[[967,2,1,2,3]]],[41,3,3,3,6,[[984,1,1,3,4],[989,1,1,4,5],[991,1,1,5,6]]],[42,2,2,6,8,[[998,2,2,6,8]]],[43,3,3,8,11,[[1021,2,2,8,10],[1022,1,1,10,11]]],[45,1,1,11,12,[[1071,1,1,11,12]]]],[23446,23838,24655,25465,25679,25776,26109,26111,27056,27059,27060,28592]]]]},{"k":"G4454","v":[["colt",[12,11,[[39,3,3,0,3,[[949,3,3,0,3]]],[40,4,4,3,7,[[967,4,4,3,7]]],[41,4,3,7,10,[[991,4,3,7,10]]],[42,1,1,10,11,[[1008,1,1,10,11]]]],[23828,23831,23833,24642,24644,24645,24647,25761,25764,25766,26595]]]]},{"k":"G4455","v":[["*",[6,6,[[41,1,1,0,1,[[991,1,1,0,1]]],[42,4,4,1,5,[[997,1,1,1,2],[1001,1,1,2,3],[1002,1,1,3,4],[1004,1,1,4,5]]],[61,1,1,5,6,[[1162,1,1,5,6]]]],[25761,26062,26247,26292,26414,30615]]],["+",[3,3,[[41,1,1,0,1,[[991,1,1,0,1]]],[42,2,2,1,3,[[1002,1,1,1,2],[1004,1,1,2,3]]]],[25761,26292,26414]]],["time",[3,3,[[42,2,2,0,2,[[997,1,1,0,1],[1001,1,1,1,2]]],[61,1,1,2,3,[[1162,1,1,2,3]]]],[26062,26247,30615]]]]},{"k":"G4456","v":[["*",[5,5,[[40,2,2,0,2,[[962,1,1,0,1],[964,1,1,1,2]]],[42,1,1,2,3,[[1008,1,1,2,3]]],[44,1,1,3,4,[[1056,1,1,3,4]]],[46,1,1,4,5,[[1080,1,1,4,5]]]],[24459,24517,26620,28216,28855]]],["blinded",[2,2,[[44,1,1,0,1,[[1056,1,1,0,1]]],[46,1,1,1,2,[[1080,1,1,1,2]]]],[28216,28855]]],["hardened",[3,3,[[40,2,2,0,2,[[962,1,1,0,1],[964,1,1,1,2]]],[42,1,1,2,3,[[1008,1,1,2,3]]]],[24459,24517,26620]]]]},{"k":"G4457","v":[["*",[3,3,[[40,1,1,0,1,[[959,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]]],[24293,28234,29290]]],["blindness",[2,2,[[44,1,1,0,1,[[1056,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[28234,29290]]],["hardness",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24293]]]]},{"k":"G4458","v":[]},{"k":"G4459","v":[["*",[105,102,[[39,14,14,0,14,[[934,1,1,0,1],[935,1,1,1,2],[938,1,1,2,3],[940,4,4,3,7],[944,1,1,7,8],[949,1,1,8,9],[950,3,3,9,12],[951,1,1,12,13],[954,1,1,13,14]]],[40,14,14,14,28,[[958,1,1,14,15],[959,1,1,15,16],[960,2,2,16,18],[961,1,1,18,19],[964,1,1,19,20],[965,1,1,20,21],[966,2,2,21,23],[967,1,1,23,24],[968,2,2,24,26],[970,2,2,26,28]]],[41,16,16,28,44,[[973,1,1,28,29],[978,1,1,29,30],[980,2,2,30,32],[982,1,1,32,33],[983,1,1,33,34],[984,4,4,34,38],[986,1,1,38,39],[990,1,1,39,40],[992,2,2,40,42],[994,2,2,42,44]]],[42,20,20,44,64,[[999,3,3,44,47],[1000,1,1,47,48],[1001,2,2,48,50],[1002,2,2,50,52],[1003,1,1,52,53],[1004,1,1,53,54],[1005,6,6,54,60],[1007,1,1,60,61],[1008,1,1,61,62],[1010,2,2,62,64]]],[43,9,8,64,72,[[1019,1,1,64,65],[1021,1,1,65,66],[1025,1,1,66,67],[1026,2,1,67,68],[1028,1,1,68,69],[1029,1,1,69,70],[1032,1,1,70,71],[1037,1,1,71,72]]],[44,9,7,72,79,[[1048,1,1,72,73],[1049,1,1,73,74],[1051,1,1,74,75],[1053,1,1,75,76],[1055,4,2,76,78],[1056,1,1,78,79]]],[45,9,9,79,88,[[1064,1,1,79,80],[1068,3,3,80,83],[1075,3,3,83,86],[1076,2,2,86,88]]],[46,1,1,88,89,[[1080,1,1,88,89]]],[47,1,1,89,90,[[1094,1,1,89,90]]],[48,1,1,90,91,[[1101,1,1,90,91]]],[49,1,1,91,92,[[1105,1,1,91,92]]],[50,1,1,92,93,[[1110,1,1,92,93]]],[51,2,2,93,95,[[1111,1,1,93,94],[1114,1,1,94,95]]],[52,1,1,95,96,[[1118,1,1,95,96]]],[53,2,2,96,98,[[1121,2,2,96,98]]],[57,1,1,98,99,[[1134,1,1,98,99]]],[61,2,2,99,101,[[1161,1,1,99,100],[1162,1,1,100,101]]],[65,1,1,101,102,[[1169,1,1,101,102]]]],[23310,23320,23436,23493,23515,23518,23523,23683,23846,23884,23915,23917,23951,24108,24286,24311,24336,24363,24380,24521,24550,24611,24612,24658,24708,24714,24755,24765,24927,25188,25263,25281,25389,25423,25470,25486,25509,25515,25560,25712,25820,25823,25866,25868,26124,26129,26132,26165,26254,26257,26299,26309,26343,26414,26450,26455,26456,26459,26461,26466,26559,26614,26673,26677,26957,27043,27207,27243,27320,27354,27478,27644,27997,28032,28070,28148,28202,28203,28223,28420,28519,28520,28521,28685,28687,28694,28730,28753,28849,29140,29319,29432,29548,29569,29604,29685,29736,29746,29980,30596,30623,30749]]],["How",[27,27,[[39,4,4,0,4,[[940,1,1,0,1],[944,1,1,1,2],[949,1,1,2,3],[950,1,1,3,4]]],[40,5,5,4,9,[[958,1,1,4,5],[959,1,1,5,6],[964,1,1,6,7],[966,1,1,7,8],[968,1,1,8,9]]],[41,3,3,9,12,[[973,1,1,9,10],[990,1,1,10,11],[992,1,1,11,12]]],[42,8,8,12,20,[[999,2,2,12,14],[1000,1,1,14,15],[1001,1,1,15,16],[1002,1,1,16,17],[1003,1,1,17,18],[1005,2,2,18,20]]],[43,1,1,20,21,[[1025,1,1,20,21]]],[44,3,3,21,24,[[1049,1,1,21,22],[1051,1,1,22,23],[1055,1,1,23,24]]],[45,1,1,24,25,[[1076,1,1,24,25]]],[46,1,1,25,26,[[1080,1,1,25,26]]],[57,1,1,26,27,[[1134,1,1,26,27]]]],[23493,23683,23846,23915,24286,24311,24521,24611,24708,24927,25712,25820,26124,26129,26165,26254,26309,26343,26450,26456,27207,28032,28070,28202,28753,28849,29980]]],["how",[72,70,[[39,10,10,0,10,[[934,1,1,0,1],[935,1,1,1,2],[938,1,1,2,3],[940,3,3,3,6],[950,2,2,6,8],[951,1,1,8,9],[954,1,1,9,10]]],[40,9,9,10,19,[[960,2,2,10,12],[961,1,1,12,13],[965,1,1,13,14],[966,1,1,14,15],[967,1,1,15,16],[968,1,1,16,17],[970,2,2,17,19]]],[41,12,12,19,31,[[978,1,1,19,20],[980,1,1,20,21],[982,1,1,21,22],[983,1,1,22,23],[984,4,4,23,27],[986,1,1,27,28],[992,1,1,28,29],[994,2,2,29,31]]],[42,11,11,31,42,[[999,1,1,31,32],[1001,1,1,32,33],[1002,1,1,33,34],[1004,1,1,34,35],[1005,3,3,35,38],[1007,1,1,38,39],[1008,1,1,39,40],[1010,2,2,40,42]]],[43,7,6,42,48,[[1019,1,1,42,43],[1021,1,1,43,44],[1026,2,1,44,45],[1028,1,1,45,46],[1029,1,1,46,47],[1032,1,1,47,48]]],[44,5,4,48,52,[[1048,1,1,48,49],[1053,1,1,49,50],[1055,3,2,50,52]]],[45,8,8,52,60,[[1064,1,1,52,53],[1068,3,3,53,56],[1075,3,3,56,59],[1076,1,1,59,60]]],[47,1,1,60,61,[[1094,1,1,60,61]]],[50,1,1,61,62,[[1110,1,1,61,62]]],[51,2,2,62,64,[[1111,1,1,62,63],[1114,1,1,63,64]]],[52,1,1,64,65,[[1118,1,1,64,65]]],[53,2,2,65,67,[[1121,2,2,65,67]]],[61,2,2,67,69,[[1161,1,1,67,68],[1162,1,1,68,69]]],[65,1,1,69,70,[[1169,1,1,69,70]]]],[23310,23320,23436,23515,23518,23523,23884,23917,23951,24108,24336,24363,24380,24550,24612,24658,24714,24755,24765,25188,25263,25389,25423,25470,25486,25509,25515,25560,25823,25866,25868,26132,26257,26299,26414,26455,26459,26466,26559,26614,26673,26677,26957,27043,27243,27320,27354,27478,27997,28148,28202,28203,28420,28519,28520,28521,28685,28687,28694,28730,29140,29548,29569,29604,29685,29736,29746,30596,30623,30749]]],["manner",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27644]]],["means",[4,4,[[41,1,1,0,1,[[980,1,1,0,1]]],[42,1,1,1,2,[[1005,1,1,1,2]]],[44,1,1,2,3,[[1056,1,1,2,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]]],[25281,26461,28223,29432]]],["that",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29319]]]]},{"k":"G4460","v":[["Rahab",[2,2,[[57,1,1,0,1,[[1143,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[30203,30318]]]]},{"k":"G4461","v":[["*",[17,15,[[39,5,4,0,4,[[951,3,2,0,2],[954,2,2,2,4]]],[40,4,3,4,7,[[965,1,1,4,5],[967,1,1,5,6],[970,2,1,6,7]]],[42,8,8,7,15,[[997,2,2,7,9],[999,2,2,9,11],[1000,1,1,11,12],[1002,1,1,12,13],[1005,1,1,13,14],[1007,1,1,14,15]]]],[23925,23926,24079,24103,24543,24661,24799,26082,26093,26122,26146,26187,26282,26442,26531]]],["+",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24079]]],["Master",[6,6,[[40,3,3,0,3,[[965,1,1,0,1],[967,1,1,1,2],[970,1,1,2,3]]],[42,3,3,3,6,[[1000,1,1,3,4],[1005,1,1,4,5],[1007,1,1,5,6]]]],[24543,24661,24799,26187,26442,26531]]],["Rabbi",[8,7,[[39,3,2,0,2,[[951,3,2,0,2]]],[42,5,5,2,7,[[997,2,2,2,4],[999,2,2,4,6],[1002,1,1,6,7]]]],[23925,23926,26082,26093,26122,26146,26282]]],["master",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24103,24799]]]]},{"k":"G4462","v":[["*",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[42,1,1,1,2,[[1016,1,1,1,2]]]],[24639,26883]]],["Lord",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24639]]],["Rabboni",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26883]]]]},{"k":"G4463","v":[["*",[2,2,[[43,1,1,0,1,[[1033,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[27505,29014]]],["beat",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27505]]],["rods",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29014]]]]},{"k":"G4464","v":[["*",[12,11,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[45,1,1,3,4,[[1065,1,1,3,4]]],[57,4,3,4,7,[[1133,2,1,4,5],[1141,1,1,5,6],[1143,1,1,6,7]]],[65,4,4,7,11,[[1168,1,1,7,8],[1177,1,1,8,9],[1178,1,1,9,10],[1185,1,1,10,11]]]],[23427,24415,25304,28454,29971,30109,30193,30744,30873,30896,31032]]],["rod",[6,6,[[45,1,1,0,1,[[1065,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]],[65,4,4,2,6,[[1168,1,1,2,3],[1177,1,1,3,4],[1178,1,1,4,5],[1185,1,1,5,6]]]],[28454,30109,30744,30873,30896,31032]]],["sceptre",[2,1,[[57,2,1,0,1,[[1133,2,1,0,1]]]],[29971]]],["staff",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[24415,30193]]],["staves",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[23427,25304]]]]},{"k":"G4465","v":[["serjeants",[2,2,[[43,2,2,0,2,[[1033,2,2,0,2]]]],[27518,27521]]]]},{"k":"G4466","v":[["Ragau",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25060]]]]},{"k":"G4467","v":[["lewdness",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27571]]]]},{"k":"G4468","v":[["mischief",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27372]]]]},{"k":"G4469","v":[["Raca",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23256]]]]},{"k":"G4470","v":[["cloth",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]]],[23395,24281]]]]},{"k":"G4471","v":[["Rama",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23187]]]]},{"k":"G4472","v":[["*",[4,4,[[57,4,4,0,4,[[1141,3,3,0,3],[1142,1,1,3,4]]]],[30118,30124,30126,30155]]],["sprinkled",[3,3,[[57,3,3,0,3,[[1141,2,2,0,2],[1142,1,1,2,3]]]],[30124,30126,30155]]],["sprinkling",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30118]]]]},{"k":"G4473","v":[["sprinkling",[2,2,[[57,1,1,0,1,[[1144,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[30236,30376]]]]},{"k":"G4474","v":[["*",[2,2,[[39,2,2,0,2,[[933,1,1,0,1],[954,1,1,1,2]]]],[23273,24121]]],["hands",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24121]]],["smite",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23273]]]]},{"k":"G4475","v":[["*",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,2,2,1,3,[[1014,1,1,1,2],[1015,1,1,2,3]]]],[24819,26807,26828]]],["+",[2,2,[[42,2,2,0,2,[[1014,1,1,0,1],[1015,1,1,1,2]]]],[26807,26828]]],["hands",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24819]]]]},{"k":"G4476","v":[["*",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]]],[23786,24613,25713]]],["needle",[2,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]]],[23786,24613]]],["needle's",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25713]]]]},{"k":"G4477","v":[["Rachab",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23149]]]]},{"k":"G4478","v":[["Rachel",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23187]]]]},{"k":"G4479","v":[["Rebecca",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28165]]]]},{"k":"G4480","v":[["chariots",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31006]]]]},{"k":"G4481","v":[["Remphan",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27159]]]]},{"k":"G4482","v":[["flow",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26366]]]]},{"k":"G4483","v":[["*",[26,26,[[39,20,20,0,20,[[929,1,1,0,1],[930,3,3,1,4],[931,1,1,4,5],[932,1,1,5,6],[933,6,6,6,12],[936,1,1,12,13],[940,1,1,13,14],[941,1,1,14,15],[949,1,1,15,16],[950,1,1,16,17],[952,1,1,17,18],[955,2,2,18,20]]],[40,1,1,20,21,[[969,1,1,20,21]]],[44,2,2,21,23,[[1054,2,2,21,23]]],[47,1,1,23,24,[[1093,1,1,23,24]]],[65,2,2,24,26,[[1172,1,1,24,25],[1175,1,1,25,26]]]],[23166,23184,23186,23192,23195,23223,23255,23261,23265,23267,23272,23277,23362,23506,23574,23830,23903,23972,24138,24164,24731,28167,28181,29118,30804,30844]]],["commanded",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30844]]],["made",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29118]]],["of",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23195,24731]]],["said",[9,9,[[39,6,6,0,6,[[933,6,6,0,6]]],[44,2,2,6,8,[[1054,2,2,6,8]]],[65,1,1,8,9,[[1172,1,1,8,9]]]],[23255,23261,23265,23267,23272,23277,28167,28181,30804]]],["spoken",[13,13,[[39,13,13,0,13,[[929,1,1,0,1],[930,3,3,1,4],[932,1,1,4,5],[936,1,1,5,6],[940,1,1,6,7],[941,1,1,7,8],[949,1,1,8,9],[950,1,1,9,10],[952,1,1,10,11],[955,2,2,11,13]]]],[23166,23184,23186,23192,23223,23362,23506,23574,23830,23903,23972,24138,24164]]]]},{"k":"G4484","v":[["Rhegium",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27912]]]]},{"k":"G4485","v":[["ruin",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25195]]]]},{"k":"G4486","v":[["*",[7,7,[[39,2,2,0,2,[[935,1,1,0,1],[937,1,1,1,2]]],[40,2,2,2,4,[[958,1,1,2,3],[965,1,1,3,4]]],[41,2,2,4,6,[[977,1,1,4,5],[981,1,1,5,6]]],[47,1,1,6,7,[[1094,1,1,6,7]]]],[23322,23396,24282,24556,25144,25343,29158]]],["+",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25343]]],["break",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23396]]],["burst",[2,2,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]]],[24282,25144]]],["forth",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29158]]],["rend",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23322]]],["teareth",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24556]]]]},{"k":"G4487","v":[["*",[70,67,[[39,6,6,0,6,[[932,1,1,0,1],[933,1,1,1,2],[940,1,1,2,3],[946,1,1,3,4],[954,1,1,4,5],[955,1,1,5,6]]],[40,2,2,6,8,[[965,1,1,6,7],[970,1,1,7,8]]],[41,19,18,8,26,[[973,3,3,8,11],[974,6,6,11,17],[975,1,1,17,18],[976,1,1,18,19],[977,1,1,19,20],[979,1,1,20,21],[981,2,1,21,22],[990,1,1,22,23],[992,1,1,23,24],[996,2,2,24,26]]],[42,12,12,26,38,[[999,1,1,26,27],[1001,1,1,27,28],[1002,2,2,28,30],[1004,2,2,30,32],[1006,1,1,32,33],[1008,2,2,33,35],[1010,1,1,35,36],[1011,1,1,36,37],[1013,1,1,37,38]]],[43,14,14,38,52,[[1019,1,1,38,39],[1022,2,2,39,41],[1023,2,2,41,43],[1027,3,3,43,46],[1028,2,2,46,48],[1030,1,1,48,49],[1033,1,1,49,50],[1043,1,1,50,51],[1045,1,1,51,52]]],[44,4,3,52,55,[[1055,4,3,52,55]]],[46,2,2,55,57,[[1089,1,1,55,56],[1090,1,1,56,57]]],[48,2,2,57,59,[[1101,1,1,57,58],[1102,1,1,58,59]]],[57,4,4,59,63,[[1133,1,1,59,60],[1138,1,1,60,61],[1143,1,1,61,62],[1144,1,1,62,63]]],[59,2,1,63,64,[[1151,2,1,63,64]]],[60,1,1,64,65,[[1158,1,1,64,65]]],[64,1,1,65,66,[[1166,1,1,65,66]]],[65,1,1,66,67,[[1183,1,1,66,67]]]],[23213,23245,23525,23743,24129,24143,24570,24826,24930,24931,24958,24988,24990,24992,25002,25023,25024,25027,25067,25112,25196,25346,25722,25805,25999,26002,26154,26257,26320,26325,26401,26428,26502,26627,26628,26678,26706,26767,26963,27079,27091,27112,27114,27281,27296,27303,27321,27323,27404,27521,27848,27924,28196,28205,28206,29026,29044,29330,29354,29966,30049,30175,30231,30399,30524,30689,30992]]],["+",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]]],[23245,24930]]],["saying",[6,5,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,5,4,1,5,[[974,2,2,1,3],[981,2,1,3,4],[990,1,1,4,5]]]],[24570,24990,25023,25346,25722]]],["sayings",[3,3,[[41,3,3,0,3,[[973,1,1,0,1],[974,1,1,1,2],[979,1,1,2,3]]]],[24958,25024,25196]]],["thing",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24988]]],["things",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[24992,27091]]],["word",[25,23,[[39,5,5,0,5,[[932,1,1,0,1],[940,1,1,1,2],[946,1,1,2,3],[954,1,1,3,4],[955,1,1,4,5]]],[40,1,1,5,6,[[970,1,1,5,6]]],[41,5,5,6,11,[[973,1,1,6,7],[974,1,1,7,8],[975,1,1,8,9],[976,1,1,9,10],[977,1,1,10,11]]],[43,3,3,11,14,[[1027,1,1,11,12],[1028,1,1,12,13],[1045,1,1,13,14]]],[44,3,2,14,16,[[1055,3,2,14,16]]],[46,1,1,16,17,[[1090,1,1,16,17]]],[48,2,2,17,19,[[1101,1,1,17,18],[1102,1,1,18,19]]],[57,3,3,19,22,[[1133,1,1,19,20],[1138,1,1,20,21],[1143,1,1,21,22]]],[59,2,1,22,23,[[1151,2,1,22,23]]]],[23213,23525,23743,24129,24143,24826,24931,25002,25027,25067,25112,27296,27323,27924,28196,28205,29044,29330,29354,29966,30049,30175,30399]]],["words",[31,31,[[41,3,3,0,3,[[992,1,1,0,1],[996,2,2,1,3]]],[42,12,12,3,15,[[999,1,1,3,4],[1001,1,1,4,5],[1002,2,2,5,7],[1004,2,2,7,9],[1006,1,1,9,10],[1008,2,2,10,12],[1010,1,1,12,13],[1011,1,1,13,14],[1013,1,1,14,15]]],[43,10,10,15,25,[[1019,1,1,15,16],[1022,1,1,16,17],[1023,2,2,17,19],[1027,2,2,19,21],[1028,1,1,21,22],[1030,1,1,22,23],[1033,1,1,23,24],[1043,1,1,24,25]]],[44,1,1,25,26,[[1055,1,1,25,26]]],[46,1,1,26,27,[[1089,1,1,26,27]]],[57,1,1,27,28,[[1144,1,1,27,28]]],[60,1,1,28,29,[[1158,1,1,28,29]]],[64,1,1,29,30,[[1166,1,1,29,30]]],[65,1,1,30,31,[[1183,1,1,30,31]]]],[25805,25999,26002,26154,26257,26320,26325,26401,26428,26502,26627,26628,26678,26706,26767,26963,27079,27112,27114,27281,27303,27321,27404,27521,27848,28206,29026,30231,30524,30689,30992]]]]},{"k":"G4488","v":[["Rhesa",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25052]]]]},{"k":"G4489","v":[["orator",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27770]]]]},{"k":"G4490","v":[["expressly",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29748]]]]},{"k":"G4491","v":[["*",[17,16,[[39,3,3,0,3,[[931,1,1,0,1],[941,2,2,1,3]]],[40,3,3,3,6,[[960,2,2,3,5],[967,1,1,5,6]]],[41,2,2,6,8,[[975,1,1,6,7],[980,1,1,7,8]]],[44,5,4,8,12,[[1056,4,3,8,11],[1060,1,1,11,12]]],[53,1,1,12,13,[[1124,1,1,12,13]]],[57,1,1,13,14,[[1144,1,1,13,14]]],[65,2,2,14,16,[[1171,1,1,14,15],[1188,1,1,15,16]]]],[23202,23545,23560,24329,24340,24660,25034,25258,28225,28226,28227,28315,29798,30227,30784,31096]]],["Root",[1,1,[[65,1,1,0,1,[[1171,1,1,0,1]]]],[30784]]],["root",[15,14,[[39,3,3,0,3,[[931,1,1,0,1],[941,2,2,1,3]]],[40,2,2,3,5,[[960,2,2,3,5]]],[41,2,2,5,7,[[975,1,1,5,6],[980,1,1,6,7]]],[44,5,4,7,11,[[1056,4,3,7,10],[1060,1,1,10,11]]],[53,1,1,11,12,[[1124,1,1,11,12]]],[57,1,1,12,13,[[1144,1,1,12,13]]],[65,1,1,13,14,[[1188,1,1,13,14]]]],[23202,23545,23560,24329,24340,25034,25258,28225,28226,28227,28315,29798,30227,31096]]],["roots",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24660]]]]},{"k":"G4492","v":[["*",[2,2,[[48,1,1,0,1,[[1099,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[29268,29501]]],["Rooted",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29501]]],["rooted",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29268]]]]},{"k":"G4493","v":[["twinkling",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28770]]]]},{"k":"G4494","v":[["tossed",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30272]]]]},{"k":"G4495","v":[["off",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27727]]]]},{"k":"G4496","v":[["*",[7,7,[[39,3,3,0,3,[[937,1,1,0,1],[943,1,1,1,2],[955,1,1,2,3]]],[41,2,2,3,5,[[976,1,1,3,4],[989,1,1,4,5]]],[43,2,2,5,7,[[1044,2,2,5,7]]]],[23415,23663,24134,25098,25653,27874,27884]]],["+",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23663]]],["abroad",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23415]]],["cast",[2,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[25653,27884]]],["down",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24134]]],["out",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27874]]],["thrown",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25098]]]]},{"k":"G4497","v":[["Roboam",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23151]]]]},{"k":"G4498","v":[["Rhoda",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27350]]]]},{"k":"G4499","v":[["Rhodes",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27665]]]]},{"k":"G4500","v":[["noise",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30532]]]]},{"k":"G4501","v":[["sword",[7,7,[[41,1,1,0,1,[[974,1,1,0,1]]],[65,6,6,1,7,[[1167,1,1,1,2],[1168,2,2,2,4],[1172,1,1,4,5],[1185,2,2,5,7]]]],[25008,30713,30729,30733,30801,31032,31038]]]]},{"k":"G4502","v":[["Reuben",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30815]]]]},{"k":"G4503","v":[["Ruth",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23149]]]]},{"k":"G4504","v":[["Rufus",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]]],[24847,28349]]]]},{"k":"G4505","v":[["*",[4,4,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]],[43,2,2,2,4,[[1026,1,1,2,3],[1029,1,1,3,4]]]],[23284,25574,27227,27347]]],["lanes",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25574]]],["street",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1029,1,1,1,2]]]],[27227,27347]]],["streets",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23284]]]]},{"k":"G4506","v":[["*",[18,16,[[39,2,2,0,2,[[934,1,1,0,1],[955,1,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[983,1,1,3,4]]],[44,3,3,4,7,[[1052,1,1,4,5],[1056,1,1,5,6],[1060,1,1,6,7]]],[46,3,1,7,8,[[1078,3,1,7,8]]],[50,1,1,8,9,[[1107,1,1,8,9]]],[51,1,1,9,10,[[1111,1,1,9,10]]],[52,1,1,10,11,[[1118,1,1,10,11]]],[54,3,3,11,14,[[1127,1,1,11,12],[1128,2,2,12,14]]],[60,2,2,14,16,[[1157,2,2,14,16]]]],[23295,24172,24967,25409,28115,28235,28334,28810,29478,29570,29680,29864,29887,29888,30507,30509]]],["Deliverer",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28235]]],["deliver",[8,7,[[39,2,2,0,2,[[934,1,1,0,1],[955,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[44,1,1,3,4,[[1052,1,1,3,4]]],[46,2,1,4,5,[[1078,2,1,4,5]]],[54,1,1,5,6,[[1128,1,1,5,6]]],[60,1,1,6,7,[[1157,1,1,6,7]]]],[23295,24172,25409,28115,28810,29888,30509]]],["delivered",[9,9,[[41,1,1,0,1,[[973,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[46,1,1,2,3,[[1078,1,1,2,3]]],[50,1,1,3,4,[[1107,1,1,3,4]]],[51,1,1,4,5,[[1111,1,1,4,5]]],[52,1,1,5,6,[[1118,1,1,5,6]]],[54,2,2,6,8,[[1127,1,1,6,7],[1128,1,1,7,8]]],[60,1,1,8,9,[[1157,1,1,8,9]]]],[24967,28334,28810,29478,29570,29680,29864,29887,30507]]]]},{"k":"G4507","v":[["filthiness",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30287]]]]},{"k":"G4508","v":[["vile",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30295]]]]},{"k":"G4509","v":[["filth",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30445]]]]},{"k":"G4510","v":[["filthy",[2,1,[[65,2,1,0,1,[[1188,2,1,0,1]]]],[31091]]]]},{"k":"G4511","v":[["issue",[3,3,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,2,2,1,3,[[980,2,2,1,3]]]],[24389,25288,25289]]]]},{"k":"G4512","v":[["wrinkle",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29331]]]]},{"k":"G4513","v":[["Latin",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25973]]]]},{"k":"G4514","v":[["*",[12,12,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,11,11,1,12,[[1019,1,1,1,2],[1033,3,3,2,5],[1039,4,4,5,9],[1040,1,1,9,10],[1042,1,1,10,11],[1045,1,1,11,12]]]],[26571,26959,27504,27520,27521,27729,27730,27731,27733,27761,27812,27916]]],["+",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1039,1,1,1,2]]]],[26959,27731]]],["Roman",[4,4,[[43,4,4,0,4,[[1039,3,3,0,3],[1040,1,1,3,4]]]],[27729,27730,27733,27761]]],["Romans",[6,6,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,5,5,1,6,[[1033,3,3,1,4],[1042,1,1,4,5],[1045,1,1,5,6]]]],[26571,27504,27520,27521,27812,27916]]]]},{"k":"G4515","v":[["Latin",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26845]]]]},{"k":"G4516","v":[["Rome",[8,8,[[43,5,5,0,5,[[1035,1,1,0,1],[1036,1,1,1,2],[1040,1,1,2,3],[1045,2,2,3,5]]],[44,2,2,5,7,[[1046,2,2,5,7]]],[54,1,1,7,8,[[1125,1,1,7,8]]]],[27559,27606,27745,27913,27915,27937,27945,29826]]]]},{"k":"G4517","v":[["*",[2,2,[[43,2,2,0,2,[[1032,1,1,0,1],[1040,1,1,1,2]]]],[27471,27764]]],["Farewell",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27764]]],["well",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27471]]]]},{"k":"G4518","v":[["sabachthani",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24175,24860]]]]},{"k":"G4519","v":[["*",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[28184,30358]]],["Sabaoth",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28184]]],["sabaoth",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30358]]]]},{"k":"G4520","v":[["rest",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30023]]]]},{"k":"G4521","v":[["*",[68,62,[[39,11,9,0,9,[[940,8,7,0,7],[952,1,1,7,8],[956,2,1,8,9]]],[40,12,11,9,20,[[957,1,1,9,10],[958,5,4,10,14],[959,2,2,14,16],[962,1,1,16,17],[972,3,3,17,20]]],[41,20,19,20,39,[[976,2,2,20,22],[978,6,6,22,28],[985,5,4,28,32],[986,3,3,32,35],[990,1,1,35,36],[995,2,2,36,38],[996,1,1,38,39]]],[42,13,11,39,50,[[1001,4,4,39,43],[1003,3,2,43,45],[1005,2,2,45,47],[1015,2,1,47,48],[1016,2,2,48,50]]],[43,10,10,50,60,[[1018,1,1,50,51],[1030,4,4,51,55],[1032,1,1,55,56],[1033,1,1,56,57],[1034,1,1,57,58],[1035,1,1,58,59],[1037,1,1,59,60]]],[45,1,1,60,61,[[1077,1,1,60,61]]],[50,1,1,61,62,[[1108,1,1,61,62]]]],[23490,23491,23494,23497,23499,23500,23501,23977,24196,24236,24283,24284,24287,24288,24290,24292,24409,24874,24875,24882,25079,25094,25147,25148,25151,25152,25153,25155,25528,25532,25533,25534,25554,25556,25558,25700,25989,25991,25992,26219,26220,26226,26228,26350,26351,26454,26456,26856,26868,26886,26935,27376,27389,27404,27406,27463,27496,27525,27561,27633,28778,29510]]],["+",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25147]]],["day",[25,24,[[39,5,5,0,5,[[940,4,4,0,4],[952,1,1,4,5]]],[40,4,4,5,9,[[957,1,1,5,6],[958,1,1,6,7],[959,1,1,7,8],[962,1,1,8,9]]],[41,5,5,9,14,[[978,1,1,9,10],[985,1,1,10,11],[986,2,2,11,13],[995,1,1,13,14]]],[42,8,7,14,21,[[1001,2,2,14,16],[1003,3,2,16,18],[1005,2,2,18,20],[1015,1,1,20,21]]],[43,3,3,21,24,[[1030,2,2,21,23],[1032,1,1,23,24]]]],[23490,23491,23497,23500,23977,24236,24283,24290,24409,25153,25532,25554,25556,25991,26220,26226,26350,26351,26454,26456,26856,27389,27406,27463]]],["day's",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26935]]],["days",[8,8,[[39,3,3,0,3,[[940,3,3,0,3]]],[40,1,1,3,4,[[959,1,1,3,4]]],[41,3,3,4,7,[[976,1,1,4,5],[978,2,2,5,7]]],[43,1,1,7,8,[[1034,1,1,7,8]]]],[23494,23499,23501,24292,25094,25148,25155,27525]]],["sabbath",[24,23,[[39,2,2,0,2,[[940,1,1,0,1],[956,1,1,1,2]]],[40,5,4,2,6,[[958,4,3,2,5],[972,1,1,5,6]]],[41,9,9,6,15,[[976,1,1,6,7],[978,2,2,7,9],[985,4,4,9,13],[986,1,1,13,14],[995,1,1,14,15]]],[42,3,3,15,18,[[1001,2,2,15,17],[1015,1,1,17,18]]],[43,4,4,18,22,[[1030,2,2,18,20],[1033,1,1,20,21],[1035,1,1,21,22]]],[50,1,1,22,23,[[1108,1,1,22,23]]]],[23494,24196,24284,24287,24288,24874,25079,25151,25152,25528,25532,25533,25534,25558,25989,26219,26228,26856,27376,27404,27496,27561,29510]]],["week",[9,9,[[39,1,1,0,1,[[956,1,1,0,1]]],[40,2,2,1,3,[[972,2,2,1,3]]],[41,2,2,3,5,[[990,1,1,3,4],[996,1,1,4,5]]],[42,2,2,5,7,[[1016,2,2,5,7]]],[43,1,1,7,8,[[1037,1,1,7,8]]],[45,1,1,8,9,[[1077,1,1,8,9]]]],[24196,24875,24882,25700,25992,26868,26886,27633,28778]]]]},{"k":"G4522","v":[["net",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23586]]]]},{"k":"G4523","v":[["*",[14,14,[[39,7,7,0,7,[[931,1,1,0,1],[944,4,4,1,5],[950,2,2,5,7]]],[40,1,1,7,8,[[968,1,1,7,8]]],[41,1,1,8,9,[[992,1,1,8,9]]],[43,5,5,9,14,[[1021,1,1,9,10],[1022,1,1,10,11],[1040,3,3,11,14]]]],[23199,23673,23678,23683,23684,23895,23906,24691,25806,27023,27076,27740,27741,27742]]],["+",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23906]]],["Sadducees",[13,13,[[39,6,6,0,6,[[931,1,1,0,1],[944,4,4,1,5],[950,1,1,5,6]]],[40,1,1,6,7,[[968,1,1,6,7]]],[41,1,1,7,8,[[992,1,1,7,8]]],[43,5,5,8,13,[[1021,1,1,8,9],[1022,1,1,9,10],[1040,3,3,10,13]]]],[23199,23673,23678,23683,23684,23895,24691,25806,27023,27076,27740,27741,27742]]]]},{"k":"G4524","v":[["Sadoc",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23158]]]]},{"k":"G4525","v":[["moved",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29593]]]]},{"k":"G4526","v":[["sackcloth",[4,4,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[65,2,2,2,4,[[1172,1,1,2,3],[1177,1,1,3,4]]]],[23480,25376,30805,30875]]]]},{"k":"G4527","v":[["Sala",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25060]]]]},{"k":"G4528","v":[["Salathiel",[3,2,[[39,2,1,0,1,[[929,2,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23156,25052]]]]},{"k":"G4529","v":[["Salamis",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27367]]]]},{"k":"G4530","v":[["Salim",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26143]]]]},{"k":"G4531","v":[["*",[15,14,[[39,2,2,0,2,[[939,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,4,4,3,7,[[978,2,2,3,5],[979,1,1,5,6],[993,1,1,6,7]]],[43,4,4,7,11,[[1019,1,1,7,8],[1021,1,1,8,9],[1033,1,1,9,10],[1034,1,1,10,11]]],[52,1,1,11,12,[[1117,1,1,11,12]]],[57,3,2,12,14,[[1144,3,2,12,14]]]],[23466,23986,24742,25184,25194,25219,25852,26974,27053,27509,27536,29663,30238,30239]]],["+",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30239]]],["moved",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26974]]],["shake",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25194]]],["shaken",[9,9,[[39,2,2,0,2,[[939,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,2,2,3,5,[[979,1,1,3,4],[993,1,1,4,5]]],[43,2,2,5,7,[[1021,1,1,5,6],[1033,1,1,6,7]]],[52,1,1,7,8,[[1117,1,1,7,8]]],[57,1,1,8,9,[[1144,1,1,8,9]]]],[23466,23986,24742,25219,25852,27053,27509,29663,30239]]],["shook",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30238]]],["together",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25184]]],["up",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27536]]]]},{"k":"G4532","v":[["Salem",[2,2,[[57,2,2,0,2,[[1139,2,2,0,2]]]],[30065,30066]]]]},{"k":"G4533","v":[["Salmon",[3,3,[[39,2,2,0,2,[[929,2,2,0,2]]],[41,1,1,2,3,[[975,1,1,2,3]]]],[23148,23149,25057]]]]},{"k":"G4534","v":[["Salmone",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27862]]]]},{"k":"G4535","v":[["waves",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25851]]]]},{"k":"G4536","v":[["*",[11,11,[[39,1,1,0,1,[[952,1,1,0,1]]],[45,2,2,1,3,[[1075,1,1,1,2],[1076,1,1,2,3]]],[51,1,1,3,4,[[1114,1,1,3,4]]],[57,1,1,4,5,[[1144,1,1,4,5]]],[65,6,6,5,11,[[1167,1,1,5,6],[1170,1,1,6,7],[1174,3,3,7,10],[1175,1,1,10,11]]]],[23988,28686,28770,29619,30231,30707,30769,30829,30833,30840,30854]]],["trump",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[51,1,1,1,2,[[1114,1,1,1,2]]]],[28770,29619]]],["trumpet",[7,7,[[39,1,1,0,1,[[952,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]],[65,4,4,3,7,[[1167,1,1,3,4],[1170,1,1,4,5],[1174,1,1,5,6],[1175,1,1,6,7]]]],[23988,28686,30231,30707,30769,30840,30854]]],["trumpets",[2,2,[[65,2,2,0,2,[[1174,2,2,0,2]]]],[30829,30833]]]]},{"k":"G4537","v":[["*",[12,12,[[39,1,1,0,1,[[934,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[65,10,10,2,12,[[1174,6,6,2,8],[1175,2,2,8,10],[1176,1,1,10,11],[1177,1,1,11,12]]]],[23284,28770,30833,30834,30835,30837,30839,30840,30841,30853,30868,30887]]],["sound",[4,4,[[45,1,1,0,1,[[1076,1,1,0,1]]],[65,3,3,1,4,[[1174,2,2,1,3],[1176,1,1,3,4]]]],[28770,30833,30840,30868]]],["sounded",[7,7,[[65,7,7,0,7,[[1174,4,4,0,4],[1175,2,2,4,6],[1177,1,1,6,7]]]],[30834,30835,30837,30839,30841,30853,30887]]],["trumpet",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23284]]]]},{"k":"G4538","v":[["trumpeters",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31015]]]]},{"k":"G4539","v":[["Salome",[2,2,[[40,2,2,0,2,[[971,1,1,0,1],[972,1,1,1,2]]]],[24866,24874]]]]},{"k":"G4540","v":[["Samaria",[11,11,[[41,1,1,0,1,[[989,1,1,0,1]]],[42,3,3,1,4,[[1000,3,3,1,4]]],[43,7,7,4,11,[[1018,1,1,4,5],[1025,4,4,5,9],[1026,1,1,9,10],[1032,1,1,10,11]]]],[25662,26160,26161,26163,26931,27177,27181,27185,27190,27247,27445]]]]},{"k":"G4541","v":[["*",[9,9,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,3,3,1,4,[[981,1,1,1,2],[982,1,1,2,3],[989,1,1,3,4]]],[42,4,4,4,8,[[1000,3,3,4,7],[1004,1,1,7,8]]],[43,1,1,8,9,[[1025,1,1,8,9]]]],[23422,25353,25396,25667,26165,26195,26196,26429,27201]]],["Samaritan",[3,3,[[41,2,2,0,2,[[982,1,1,0,1],[989,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]]],[25396,25667,26429]]],["Samaritans",[6,6,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[42,3,3,2,5,[[1000,3,3,2,5]]],[43,1,1,5,6,[[1025,1,1,5,6]]]],[23422,25353,26165,26195,26196,27201]]]]},{"k":"G4542","v":[["Samaria",[2,1,[[42,2,1,0,1,[[1000,2,1,0,1]]]],[26165]]]]},{"k":"G4543","v":[["Samothracia",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27494]]]]},{"k":"G4544","v":[["Samos",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27641]]]]},{"k":"G4545","v":[["Samuel",[3,3,[[43,2,2,0,2,[[1020,1,1,0,1],[1030,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[27020,27382,30204]]]]},{"k":"G4546","v":[["Samson",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30204]]]]},{"k":"G4547","v":[["sandals",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]]],[24416,27345]]]]},{"k":"G4548","v":[["boards",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27899]]]]},{"k":"G4549","v":[["Saul",[9,6,[[43,9,6,0,6,[[1026,3,2,0,2],[1030,1,1,2,3],[1039,3,2,3,5],[1043,2,1,5,6]]]],[27220,27233,27383,27711,27717,27837]]]]},{"k":"G4550","v":[["*",[8,6,[[39,5,4,0,4,[[935,2,2,0,2],[940,2,1,2,3],[941,1,1,3,4]]],[41,2,1,4,5,[[978,2,1,4,5]]],[48,1,1,5,6,[[1100,1,1,5,6]]]],[23333,23334,23522,23587,25189,29301]]],["bad",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23587]]],["corrupt",[7,5,[[39,4,3,0,3,[[935,2,2,0,2],[940,2,1,2,3]]],[41,2,1,3,4,[[978,2,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]]],[23333,23334,23522,25189,29301]]]]},{"k":"G4551","v":[["Sapphira",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27060]]]]},{"k":"G4552","v":[["sapphire",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31072]]]]},{"k":"G4553","v":[["basket",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29022]]]]},{"k":"G4554","v":[["Sardis",[3,3,[[65,3,3,0,3,[[1167,1,1,0,1],[1169,2,2,1,3]]]],[30708,30747,30750]]]]},{"k":"G4555","v":[["sardine",[1,1,[[65,1,1,0,1,[[1170,1,1,0,1]]]],[30771]]]]},{"k":"G4556","v":[["sardius",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31073]]]]},{"k":"G4557","v":[["sardonyx",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31073]]]]},{"k":"G4558","v":[["Sarepta",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25089]]]]},{"k":"G4559","v":[["*",[11,10,[[44,2,2,0,2,[[1052,1,1,0,1],[1060,1,1,1,2]]],[45,5,4,2,6,[[1064,4,3,2,5],[1070,1,1,5,6]]],[46,2,2,6,8,[[1078,1,1,6,7],[1087,1,1,7,8]]],[57,1,1,8,9,[[1139,1,1,8,9]]],[59,1,1,9,10,[[1152,1,1,9,10]]]],[28105,28330,28411,28413,28414,28551,28812,28975,30080,30410]]],["carnal",[7,6,[[44,1,1,0,1,[[1052,1,1,0,1]]],[45,4,3,1,4,[[1064,4,3,1,4]]],[46,1,1,4,5,[[1087,1,1,4,5]]],[57,1,1,5,6,[[1139,1,1,5,6]]]],[28105,28411,28413,28414,28975,30080]]],["fleshly",[2,2,[[46,1,1,0,1,[[1078,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[28812,30410]]],["things",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]]],[28330,28551]]]]},{"k":"G4560","v":[["fleshy",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28844]]]]},{"k":"G4561","v":[["*",[151,130,[[39,5,5,0,5,[[944,1,1,0,1],[947,2,2,1,3],[952,1,1,3,4],[954,1,1,4,5]]],[40,4,3,5,8,[[966,2,1,5,6],[969,1,1,6,7],[970,1,1,7,8]]],[41,2,2,8,10,[[975,1,1,8,9],[996,1,1,9,10]]],[42,13,12,10,22,[[997,2,2,10,12],[999,2,1,12,13],[1002,7,7,13,20],[1004,1,1,20,21],[1013,1,1,21,22]]],[43,4,4,22,26,[[1019,4,4,22,26]]],[44,27,23,26,49,[[1046,1,1,26,27],[1047,1,1,27,28],[1048,1,1,28,29],[1049,1,1,29,30],[1051,1,1,30,31],[1052,3,3,31,34],[1053,14,10,34,44],[1054,3,3,44,47],[1056,1,1,47,48],[1058,1,1,48,49]]],[45,11,8,49,57,[[1062,2,2,49,51],[1066,1,1,51,52],[1067,1,1,52,53],[1068,1,1,53,54],[1071,1,1,54,55],[1076,5,2,55,57]]],[46,11,9,57,66,[[1078,1,1,57,58],[1081,1,1,58,59],[1082,2,1,59,60],[1084,2,2,60,62],[1087,3,2,62,64],[1088,1,1,64,65],[1089,1,1,65,66]]],[47,18,16,66,82,[[1091,1,1,66,67],[1092,2,2,67,69],[1093,1,1,69,70],[1094,4,4,70,74],[1095,6,5,74,79],[1096,4,3,79,82]]],[48,10,8,82,90,[[1098,5,3,82,85],[1101,3,3,85,88],[1102,2,2,88,90]]],[49,5,4,90,94,[[1103,2,2,90,92],[1105,3,2,92,94]]],[50,9,9,94,103,[[1107,2,2,94,96],[1108,6,6,96,102],[1109,1,1,102,103]]],[53,1,1,103,104,[[1121,1,1,103,104]]],[56,1,1,104,105,[[1132,1,1,104,105]]],[57,6,6,105,111,[[1134,1,1,105,106],[1137,1,1,106,107],[1141,2,2,107,109],[1142,1,1,109,110],[1144,1,1,110,111]]],[58,1,1,111,112,[[1150,1,1,111,112]]],[59,7,6,112,118,[[1151,1,1,112,113],[1153,2,2,113,115],[1154,4,3,115,118]]],[60,2,2,118,120,[[1157,2,2,118,120]]],[61,3,3,120,123,[[1160,1,1,120,121],[1162,2,2,121,123]]],[62,1,1,123,124,[[1164,1,1,123,124]]],[64,3,3,124,127,[[1166,3,3,124,127]]],[65,7,3,127,130,[[1183,1,1,127,128],[1185,6,2,128,130]]]],[23689,23767,23768,23979,24095,24596,24737,24792,25031,26030,26057,26058,26126,26308,26309,26310,26311,26312,26313,26320,26396,26761,26966,26975,26979,26980,27933,27990,28011,28023,28087,28096,28109,28116,28117,28119,28120,28121,28122,28123,28124,28125,28128,28129,28158,28160,28163,28223,28280,28389,28392,28459,28483,28515,28585,28757,28768,28817,28870,28893,28917,28921,28973,28974,29007,29029,29073,29097,29101,29105,29144,29145,29154,29160,29175,29178,29179,29181,29186,29196,29200,29201,29232,29240,29244,29333,29334,29335,29342,29349,29383,29385,29424,29425,29487,29489,29495,29499,29505,29507,29512,29517,29539,29747,29954,29991,30037,30115,30118,30153,30221,30357,30398,30442,30445,30447,30448,30452,30510,30518,30566,30605,30606,30652,30679,30680,30695,30991,31035,31038]]],["+",[2,2,[[42,1,1,0,1,[[1002,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[26320,30680]]],["carnal",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[28123,30115]]],["carnally",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28122]]],["flesh",[145,124,[[39,5,5,0,5,[[944,1,1,0,1],[947,2,2,1,3],[952,1,1,3,4],[954,1,1,4,5]]],[40,4,3,5,8,[[966,2,1,5,6],[969,1,1,6,7],[970,1,1,7,8]]],[41,2,2,8,10,[[975,1,1,8,9],[996,1,1,9,10]]],[42,12,11,10,21,[[997,2,2,10,12],[999,2,1,12,13],[1002,6,6,13,19],[1004,1,1,19,20],[1013,1,1,20,21]]],[43,4,4,21,25,[[1019,4,4,21,25]]],[44,25,21,25,46,[[1046,1,1,25,26],[1047,1,1,26,27],[1048,1,1,27,28],[1049,1,1,28,29],[1051,1,1,29,30],[1052,3,3,30,33],[1053,12,8,33,41],[1054,3,3,41,44],[1056,1,1,44,45],[1058,1,1,45,46]]],[45,11,8,46,54,[[1062,2,2,46,48],[1066,1,1,48,49],[1067,1,1,49,50],[1068,1,1,50,51],[1071,1,1,51,52],[1076,5,2,52,54]]],[46,11,9,54,63,[[1078,1,1,54,55],[1081,1,1,55,56],[1082,2,1,56,57],[1084,2,2,57,59],[1087,3,2,59,61],[1088,1,1,61,62],[1089,1,1,62,63]]],[47,18,16,63,79,[[1091,1,1,63,64],[1092,2,2,64,66],[1093,1,1,66,67],[1094,4,4,67,71],[1095,6,5,71,76],[1096,4,3,76,79]]],[48,10,8,79,87,[[1098,5,3,79,82],[1101,3,3,82,85],[1102,2,2,85,87]]],[49,5,4,87,91,[[1103,2,2,87,89],[1105,3,2,89,91]]],[50,8,8,91,99,[[1107,2,2,91,93],[1108,5,5,93,98],[1109,1,1,98,99]]],[53,1,1,99,100,[[1121,1,1,99,100]]],[56,1,1,100,101,[[1132,1,1,100,101]]],[57,5,5,101,106,[[1134,1,1,101,102],[1137,1,1,102,103],[1141,1,1,103,104],[1142,1,1,104,105],[1144,1,1,105,106]]],[58,1,1,106,107,[[1150,1,1,106,107]]],[59,7,6,107,113,[[1151,1,1,107,108],[1153,2,2,108,110],[1154,4,3,110,113]]],[60,2,2,113,115,[[1157,2,2,113,115]]],[61,3,3,115,118,[[1160,1,1,115,116],[1162,2,2,116,118]]],[62,1,1,118,119,[[1164,1,1,118,119]]],[64,2,2,119,121,[[1166,2,2,119,121]]],[65,7,3,121,124,[[1183,1,1,121,122],[1185,6,2,122,124]]]],[23689,23767,23768,23979,24095,24596,24737,24792,25031,26030,26057,26058,26126,26308,26309,26310,26311,26312,26313,26396,26761,26966,26975,26979,26980,27933,27990,28011,28023,28087,28096,28109,28116,28117,28119,28120,28121,28124,28125,28128,28129,28158,28160,28163,28223,28280,28389,28392,28459,28483,28515,28585,28757,28768,28817,28870,28893,28917,28921,28973,28974,29007,29029,29073,29097,29101,29105,29144,29145,29154,29160,29175,29178,29179,29181,29186,29196,29200,29201,29232,29240,29244,29333,29334,29335,29342,29349,29383,29385,29424,29425,29487,29489,29495,29499,29505,29507,29517,29539,29747,29954,29991,30037,30118,30153,30221,30357,30398,30442,30445,30447,30448,30452,30510,30518,30566,30605,30606,30652,30679,30695,30991,31035,31038]]],["fleshly",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29512]]]]},{"k":"G4562","v":[["Saruch",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25060]]]]},{"k":"G4563","v":[["*",[3,3,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[987,1,1,2,3]]]],[23533,25430,25596]]],["sweep",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25596]]],["swept",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23533,25430]]]]},{"k":"G4564","v":[["*",[4,4,[[44,2,2,0,2,[[1049,1,1,0,1],[1054,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]],[59,1,1,3,4,[[1153,1,1,3,4]]]],[28041,28164,30183,30430]]],["Sara",[3,3,[[44,1,1,0,1,[[1054,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[28164,30183,30430]]],["Sara's",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28041]]]]},{"k":"G4565","v":[["Saron",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27251]]]]},{"k":"G4566","v":[["Satan",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29029]]]]},{"k":"G4567","v":[["*",[36,33,[[39,4,3,0,3,[[932,1,1,0,1],[940,2,1,1,2],[944,1,1,2,3]]],[40,6,5,3,8,[[957,1,1,3,4],[959,3,2,4,6],[960,1,1,6,7],[964,1,1,7,8]]],[41,6,6,8,14,[[976,1,1,8,9],[982,1,1,9,10],[983,1,1,10,11],[985,1,1,11,12],[994,2,2,12,14]]],[42,1,1,14,15,[[1009,1,1,14,15]]],[43,2,2,15,17,[[1022,1,1,15,16],[1043,1,1,16,17]]],[44,1,1,17,18,[[1061,1,1,17,18]]],[45,2,2,18,20,[[1066,1,1,18,19],[1068,1,1,19,20]]],[46,2,2,20,22,[[1079,1,1,20,21],[1088,1,1,21,22]]],[51,1,1,22,23,[[1112,1,1,22,23]]],[52,1,1,23,24,[[1117,1,1,23,24]]],[53,2,2,24,26,[[1119,1,1,24,25],[1123,1,1,25,26]]],[65,8,7,26,33,[[1168,4,3,26,29],[1169,1,1,29,30],[1178,1,1,30,31],[1186,2,2,31,33]]]],[23219,23515,23695,24228,24311,24314,24338,24533,25071,25381,25423,25534,25867,25895,26657,27062,27841,28356,28459,28492,28835,29003,29588,29670,29716,29778,30726,30730,30741,30755,30900,31040,31045]]],["Satan",[35,33,[[39,4,3,0,3,[[932,1,1,0,1],[940,2,1,1,2],[944,1,1,2,3]]],[40,6,5,3,8,[[957,1,1,3,4],[959,3,2,4,6],[960,1,1,6,7],[964,1,1,7,8]]],[41,6,6,8,14,[[976,1,1,8,9],[982,1,1,9,10],[983,1,1,10,11],[985,1,1,11,12],[994,2,2,12,14]]],[42,1,1,14,15,[[1009,1,1,14,15]]],[43,2,2,15,17,[[1022,1,1,15,16],[1043,1,1,16,17]]],[44,1,1,17,18,[[1061,1,1,17,18]]],[45,2,2,18,20,[[1066,1,1,18,19],[1068,1,1,19,20]]],[46,2,2,20,22,[[1079,1,1,20,21],[1088,1,1,21,22]]],[51,1,1,22,23,[[1112,1,1,22,23]]],[52,1,1,23,24,[[1117,1,1,23,24]]],[53,2,2,24,26,[[1119,1,1,24,25],[1123,1,1,25,26]]],[65,7,7,26,33,[[1168,3,3,26,29],[1169,1,1,29,30],[1178,1,1,30,31],[1186,2,2,31,33]]]],[23219,23515,23695,24228,24311,24314,24338,24533,25071,25381,25423,25534,25867,25895,26657,27062,27841,28356,28459,28492,28835,29003,29588,29670,29716,29778,30726,30730,30741,30755,30900,31040,31045]]],["Satan's",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30730]]]]},{"k":"G4568","v":[["measures",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23572,25539]]]]},{"k":"G4569","v":[["Saul",[17,17,[[43,17,17,0,17,[[1024,1,1,0,1],[1025,2,2,1,3],[1026,7,7,3,10],[1028,2,2,10,12],[1029,1,1,12,13],[1030,4,4,13,17]]]],[27174,27177,27179,27217,27224,27227,27235,27238,27240,27242,27332,27337,27362,27363,27364,27369,27371]]]]},{"k":"G4570","v":[["*",[8,8,[[39,2,2,0,2,[[940,1,1,0,1],[953,1,1,1,2]]],[40,3,3,2,5,[[965,3,3,2,5]]],[48,1,1,5,6,[[1102,1,1,5,6]]],[51,1,1,6,7,[[1115,1,1,6,7]]],[57,1,1,7,8,[[1143,1,1,7,8]]]],[23509,24016,24582,24584,24586,29353,29640,30206]]],["Quench",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29640]]],["Quenched",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30206]]],["out",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24016]]],["quench",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]]],[23509,29353]]],["quenched",[3,3,[[40,3,3,0,3,[[965,3,3,0,3]]]],[24582,24584,24586]]]]},{"k":"G4571","v":[["*",[197,177,[[39,30,27,0,27,[[932,1,1,0,1],[933,7,6,1,7],[937,1,1,7,8],[942,1,1,8,9],[946,5,4,9,13],[948,1,1,13,14],[953,9,8,14,22],[954,5,5,22,27]]],[40,14,14,27,41,[[957,2,2,27,29],[959,1,1,29,30],[961,4,4,30,34],[965,4,4,34,38],[966,2,2,38,40],[970,1,1,40,41]]],[41,39,33,41,74,[[973,2,2,41,43],[974,1,1,43,44],[976,3,3,44,47],[978,2,2,47,49],[979,3,3,49,52],[980,3,3,52,55],[983,2,2,55,57],[984,3,1,57,58],[985,1,1,58,59],[986,5,5,59,64],[988,1,1,64,65],[989,4,3,65,68],[990,1,1,68,69],[991,7,4,69,73],[994,1,1,73,74]]],[42,31,27,74,101,[[997,3,2,74,76],[1003,1,1,76,77],[1004,2,2,77,79],[1006,1,1,79,80],[1007,2,2,80,82],[1009,1,1,82,83],[1012,1,1,83,84],[1013,7,6,84,90],[1014,2,2,90,92],[1015,4,2,92,94],[1017,7,7,94,101]]],[43,38,35,101,136,[[1021,1,1,101,102],[1022,1,1,102,103],[1024,3,3,103,106],[1025,1,1,106,107],[1026,1,1,107,108],[1027,4,4,108,112],[1028,1,1,112,113],[1030,4,3,113,116],[1035,1,1,116,117],[1038,1,1,117,118],[1039,3,3,118,121],[1040,5,5,121,126],[1041,5,4,126,130],[1043,6,5,130,135],[1044,1,1,135,136]]],[44,8,8,136,144,[[1047,2,2,136,138],[1048,1,1,138,139],[1049,1,1,139,140],[1054,1,1,140,141],[1056,2,2,141,143],[1060,1,1,143,144]]],[45,2,2,144,146,[[1065,1,1,144,145],[1069,1,1,145,146]]],[49,1,1,146,147,[[1106,1,1,146,147]]],[53,4,4,147,151,[[1119,2,2,147,149],[1121,1,1,149,150],[1124,1,1,150,151]]],[54,3,3,151,154,[[1125,1,1,151,152],[1127,1,1,152,153],[1128,1,1,153,154]]],[55,4,4,154,158,[[1129,1,1,154,155],[1131,3,3,155,158]]],[56,3,3,158,161,[[1132,3,3,158,161]]],[57,8,6,161,167,[[1133,2,2,161,163],[1134,1,1,163,164],[1137,1,1,164,165],[1138,2,1,165,166],[1145,2,1,166,167]]],[62,2,2,167,169,[[1164,2,2,167,169]]],[63,3,2,169,171,[[1165,3,2,169,171]]],[65,7,6,171,177,[[1169,5,4,171,175],[1176,1,1,175,176],[1181,1,1,176,177]]]],[23215,23259,23263,23264,23273,23275,23276,23401,23625,23735,23736,23742,23760,23805,24029,24031,24032,24035,24045,24046,24047,24052,24072,24089,24117,24122,24127,24239,24252,24320,24371,24383,24395,24398,24555,24581,24583,24585,24637,24640,24785,24912,24928,25021,25073,25074,25097,25175,25176,25202,25215,25245,25265,25290,25293,25432,25441,25517,25549,25562,25563,25565,25571,25572,25647,25654,25655,25670,25730,25752,25753,25774,25775,25928,26092,26094,26348,26391,26392,26514,26531,26551,26638,26756,26760,26762,26763,26770,26772,26784,26811,26820,26835,26836,26913,26914,26915,26916,26918,26920,26921,27052,27068,27143,27150,27151,27199,27250,27265,27278,27281,27292,27321,27373,27395,27409,27567,27701,27718,27723,27725,27737,27745,27752,27754,27764,27773,27777,27779,27794,27826,27839,27840,27847,27852,27879,27966,27989,27995,28039,28172,28227,28231,28306,28440,28537,29445,29699,29714,29745,29802,29813,29868,29891,29897,29931,29935,29938,29948,29956,29961,29968,29972,29989,30035,30058,30246,30650,30658,30660,30672,30749,30755,30756,30762,30872,30950]]],["+",[23,22,[[39,6,6,0,6,[[932,1,1,0,1],[933,1,1,1,2],[937,1,1,2,3],[948,1,1,3,4],[953,2,2,4,6]]],[40,3,3,6,9,[[961,1,1,6,7],[966,1,1,7,8],[970,1,1,8,9]]],[41,8,7,9,16,[[976,1,1,9,10],[980,1,1,10,11],[983,1,1,11,12],[986,1,1,12,13],[989,1,1,13,14],[991,3,2,14,16]]],[43,3,3,16,19,[[1022,1,1,16,17],[1026,1,1,17,18],[1038,1,1,18,19]]],[44,1,1,19,20,[[1054,1,1,19,20]]],[45,1,1,20,21,[[1065,1,1,20,21]]],[54,1,1,21,22,[[1127,1,1,21,22]]]],[23215,23275,23401,23805,24029,24031,24398,24640,24785,25074,25293,25441,25565,25670,25774,25775,27068,27250,27701,28172,28440,29868]]],["By",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27052]]],["Thou",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[65,1,1,1,2,[[1176,1,1,1,2]]]],[24035,30872]]],["house",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24072]]],["thee",[157,142,[[39,21,19,0,19,[[933,6,5,0,5],[942,1,1,5,6],[946,4,4,6,10],[953,6,5,10,15],[954,4,4,15,19]]],[40,11,11,19,30,[[957,2,2,19,21],[959,1,1,21,22],[961,3,3,22,25],[965,4,4,25,29],[966,1,1,29,30]]],[41,31,27,30,57,[[973,2,2,30,32],[974,1,1,32,33],[976,2,2,33,35],[978,2,2,35,37],[979,3,3,37,40],[980,2,2,40,42],[983,1,1,42,43],[984,3,1,43,44],[985,1,1,44,45],[986,4,4,45,49],[988,1,1,49,50],[989,3,2,50,52],[990,1,1,52,53],[991,4,3,53,56],[994,1,1,56,57]]],[42,31,27,57,84,[[997,3,2,57,59],[1003,1,1,59,60],[1004,2,2,60,62],[1006,1,1,62,63],[1007,2,2,63,65],[1009,1,1,65,66],[1012,1,1,66,67],[1013,7,6,67,73],[1014,2,2,73,75],[1015,4,2,75,77],[1017,7,7,77,84]]],[43,26,25,84,109,[[1024,3,3,84,87],[1027,3,3,87,90],[1028,1,1,90,91],[1030,3,3,91,94],[1035,1,1,94,95],[1039,3,3,95,98],[1040,4,4,98,102],[1041,3,3,102,105],[1043,5,4,105,109]]],[44,6,6,109,115,[[1047,2,2,109,111],[1049,1,1,111,112],[1056,2,2,112,114],[1060,1,1,114,115]]],[45,1,1,115,116,[[1069,1,1,115,116]]],[49,1,1,116,117,[[1106,1,1,116,117]]],[53,3,3,117,120,[[1119,2,2,117,119],[1121,1,1,119,120]]],[54,2,2,120,122,[[1125,1,1,120,121],[1128,1,1,121,122]]],[55,3,3,122,125,[[1129,1,1,122,123],[1131,2,2,123,125]]],[56,3,3,125,128,[[1132,3,3,125,128]]],[57,8,6,128,134,[[1133,2,2,128,130],[1134,1,1,130,131],[1137,1,1,131,132],[1138,2,1,132,133],[1145,2,1,133,134]]],[62,2,2,134,136,[[1164,2,2,134,136]]],[63,2,1,136,137,[[1165,2,1,136,137]]],[65,6,5,137,142,[[1169,5,4,137,141],[1181,1,1,141,142]]]],[23259,23263,23264,23273,23276,23625,23735,23736,23742,23760,24032,24045,24046,24047,24052,24089,24117,24122,24127,24239,24252,24320,24371,24383,24395,24555,24581,24583,24585,24637,24912,24928,25021,25073,25097,25175,25176,25202,25215,25245,25265,25290,25432,25517,25549,25562,25563,25571,25572,25647,25654,25655,25730,25752,25753,25774,25928,26092,26094,26348,26391,26392,26514,26531,26551,26638,26756,26760,26762,26763,26770,26772,26784,26811,26820,26835,26836,26913,26914,26915,26916,26918,26920,26921,27143,27150,27151,27278,27281,27292,27321,27373,27395,27409,27567,27718,27723,27725,27737,27752,27754,27764,27773,27777,27794,27826,27839,27840,27847,27966,27989,28039,28227,28231,28306,28537,29445,29699,29714,29745,29813,29891,29897,29935,29938,29948,29956,29961,29968,29972,29989,30035,30058,30246,30650,30658,30672,30749,30755,30756,30762,30950]]],["thou",[13,13,[[39,1,1,0,1,[[946,1,1,0,1]]],[43,8,8,1,9,[[1025,1,1,1,2],[1027,1,1,2,3],[1030,1,1,3,4],[1040,1,1,4,5],[1041,2,2,5,7],[1043,1,1,7,8],[1044,1,1,8,9]]],[44,1,1,9,10,[[1048,1,1,9,10]]],[53,1,1,10,11,[[1124,1,1,10,11]]],[55,1,1,11,12,[[1131,1,1,11,12]]],[63,1,1,12,13,[[1165,1,1,12,13]]]],[23760,27199,27265,27409,27745,27773,27779,27852,27879,27995,29802,29931,30660]]]]},{"k":"G4572","v":[["*",[40,39,[[39,5,5,0,5,[[932,1,1,0,1],[936,1,1,1,2],[947,1,1,2,3],[950,1,1,3,4],[955,1,1,4,5]]],[40,3,3,5,8,[[957,1,1,5,6],[968,1,1,6,7],[971,1,1,7,8]]],[41,6,6,8,14,[[976,2,2,8,10],[977,1,1,10,11],[982,1,1,11,12],[995,2,2,12,14]]],[42,8,8,14,22,[[997,1,1,14,15],[1003,1,1,15,16],[1004,2,2,16,18],[1006,1,1,18,19],[1010,1,1,19,20],[1013,1,1,20,21],[1017,1,1,21,22]]],[43,3,3,22,25,[[1026,1,1,22,23],[1033,1,1,23,24],[1043,1,1,24,25]]],[44,5,5,25,30,[[1047,4,4,25,29],[1059,1,1,29,30]]],[47,1,1,30,31,[[1096,1,1,30,31]]],[53,4,3,31,34,[[1122,3,2,31,33],[1123,1,1,33,34]]],[54,2,2,34,36,[[1126,1,1,34,35],[1128,1,1,35,36]]],[55,1,1,36,37,[[1130,1,1,36,37]]],[56,1,1,37,38,[[1132,1,1,37,38]]],[58,1,1,38,39,[[1147,1,1,38,39]]]],[23215,23349,23781,23911,24169,24259,24704,24856,25072,25086,25121,25390,25972,25974,26066,26332,26394,26434,26514,26690,26764,26916,27250,27511,27824,27963,27967,27981,27983,28302,29189,29754,29763,29785,29842,29881,29915,29957,30301]]],["+",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27250]]],["self",[2,2,[[42,1,1,0,1,[[1013,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[26764,29957]]],["thee",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29881]]],["thyself",[36,35,[[39,5,5,0,5,[[932,1,1,0,1],[936,1,1,1,2],[947,1,1,2,3],[950,1,1,3,4],[955,1,1,4,5]]],[40,3,3,5,8,[[957,1,1,5,6],[968,1,1,6,7],[971,1,1,7,8]]],[41,6,6,8,14,[[976,2,2,8,10],[977,1,1,10,11],[982,1,1,11,12],[995,2,2,12,14]]],[42,7,7,14,21,[[997,1,1,14,15],[1003,1,1,15,16],[1004,2,2,16,18],[1006,1,1,18,19],[1010,1,1,19,20],[1017,1,1,20,21]]],[43,2,2,21,23,[[1033,1,1,21,22],[1043,1,1,22,23]]],[44,5,5,23,28,[[1047,4,4,23,27],[1059,1,1,27,28]]],[47,1,1,28,29,[[1096,1,1,28,29]]],[53,4,3,29,32,[[1122,3,2,29,31],[1123,1,1,31,32]]],[54,1,1,32,33,[[1126,1,1,32,33]]],[55,1,1,33,34,[[1130,1,1,33,34]]],[58,1,1,34,35,[[1147,1,1,34,35]]]],[23215,23349,23781,23911,24169,24259,24704,24856,25072,25086,25121,25390,25972,25974,26066,26332,26394,26434,26514,26690,26916,27511,27824,27963,27967,27981,27983,28302,29189,29754,29763,29785,29842,29915,30301]]]]},{"k":"G4573","v":[["worshipped",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27955]]]]},{"k":"G4574","v":[["*",[2,2,[[43,1,1,0,1,[[1034,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]]],[27546,29665]]],["devotions",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27546]]],["worshipped",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29665]]]]},{"k":"G4575","v":[["*",[3,3,[[43,3,3,0,3,[[1042,2,2,0,2],[1044,1,1,2,3]]]],[27817,27821,27856]]],["Augustus",[2,2,[[43,2,2,0,2,[[1042,2,2,0,2]]]],[27817,27821]]],["Augustus'",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27856]]]]},{"k":"G4576","v":[["*",[10,10,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[43,8,8,2,10,[[1030,2,2,2,4],[1033,1,1,4,5],[1034,2,2,5,7],[1035,2,2,7,9],[1036,1,1,9,10]]]],[23642,24470,27405,27412,27497,27527,27540,27564,27570,27612]]],["devout",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1034,1,1,1,2]]]],[27412,27527]]],["persons",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27540]]],["religious",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27405]]],["worship",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[43,1,1,2,3,[[1035,1,1,2,3]]]],[23642,24470,27570]]],["worshipped",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1035,1,1,1,2]]]],[27497,27564]]],["worshippeth",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27612]]]]},{"k":"G4577","v":[["chains",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30504]]]]},{"k":"G4578","v":[["*",[14,12,[[39,4,4,0,4,[[936,1,1,0,1],[952,1,1,1,2],[955,1,1,2,3],[956,1,1,3,4]]],[40,1,1,4,5,[[969,1,1,4,5]]],[41,1,1,5,6,[[993,1,1,5,6]]],[43,1,1,6,7,[[1033,1,1,6,7]]],[65,7,5,7,12,[[1172,1,1,7,8],[1174,1,1,8,9],[1177,3,2,9,11],[1182,2,1,11,12]]]],[23369,23964,24183,24197,24725,25837,27509,30805,30832,30885,30891,30972]]],["earthquake",[10,8,[[39,2,2,0,2,[[955,1,1,0,1],[956,1,1,1,2]]],[43,1,1,2,3,[[1033,1,1,2,3]]],[65,7,5,3,8,[[1172,1,1,3,4],[1174,1,1,4,5],[1177,3,2,5,7],[1182,2,1,7,8]]]],[24183,24197,27509,30805,30832,30885,30891,30972]]],["earthquakes",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]]],[23964,24725,25837]]],["tempest",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23369]]]]},{"k":"G4579","v":[["*",[5,5,[[39,3,3,0,3,[[949,1,1,0,1],[955,1,1,1,2],[956,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]],[65,1,1,4,5,[[1172,1,1,4,5]]]],[23836,24180,24199,30238,30806]]],["moved",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23836]]],["quake",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24180]]],["shake",[2,2,[[39,1,1,0,1,[[956,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[24199,30238]]],["shaken",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30806]]]]},{"k":"G4580","v":[["Secundus",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27630]]]]},{"k":"G4581","v":[["Seleucia",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27366]]]]},{"k":"G4582","v":[["moon",[9,9,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]],[43,1,1,3,4,[[1019,1,1,3,4]]],[45,1,1,4,5,[[1076,1,1,4,5]]],[65,4,4,5,9,[[1172,1,1,5,6],[1174,1,1,6,7],[1178,1,1,7,8],[1187,1,1,8,9]]]],[23986,24741,25851,26969,28759,30805,30839,30892,31076]]]]},{"k":"G4583","v":[["lunatick",[2,2,[[39,2,2,0,2,[[932,1,1,0,1],[945,1,1,1,2]]]],[23233,23715]]]]},{"k":"G4584","v":[["Semei",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25051]]]]},{"k":"G4585","v":[["flour",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31006]]]]},{"k":"G4586","v":[["*",[4,4,[[49,1,1,0,1,[[1106,1,1,0,1]]],[53,2,2,1,3,[[1121,2,2,1,3]]],[55,1,1,3,4,[[1130,1,1,3,4]]]],[29450,29739,29742,29910]]],["grave",[3,3,[[53,2,2,0,2,[[1121,2,2,0,2]]],[55,1,1,2,3,[[1130,1,1,2,3]]]],[29739,29742,29910]]],["honest",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29450]]]]},{"k":"G4587","v":[["*",[3,3,[[53,2,2,0,2,[[1120,1,1,0,1],[1121,1,1,1,2]]],[55,1,1,2,3,[[1130,1,1,2,3]]]],[29718,29735,29915]]],["gravity",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]]],[29735,29915]]],["honesty",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29718]]]]},{"k":"G4588","v":[["Sergius",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27369]]]]},{"k":"G4589","v":[["Seth",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25063]]]]},{"k":"G4590","v":[["Sem",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25061]]]]},{"k":"G4591","v":[["*",[6,6,[[42,3,3,0,3,[[1008,1,1,0,1],[1014,1,1,1,2],[1017,1,1,2,3]]],[43,2,2,3,5,[[1028,1,1,3,4],[1042,1,1,4,5]]],[65,1,1,5,6,[[1167,1,1,5,6]]]],[26613,26817,26917,27335,27823,30698]]],["signified",[2,2,[[43,1,1,0,1,[[1028,1,1,0,1]]],[65,1,1,1,2,[[1167,1,1,1,2]]]],[27335,30698]]],["signify",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27823]]],["signifying",[3,3,[[42,3,3,0,3,[[1008,1,1,0,1],[1014,1,1,1,2],[1017,1,1,2,3]]]],[26613,26817,26917]]]]},{"k":"G4592","v":[["*",[77,69,[[39,13,9,0,9,[[940,4,2,0,2],[944,5,3,2,5],[952,3,3,5,8],[954,1,1,8,9]]],[40,7,6,9,15,[[964,3,2,9,11],[969,2,2,11,13],[972,2,2,13,15]]],[41,11,9,15,24,[[974,2,2,15,17],[983,5,3,17,20],[993,3,3,20,23],[995,1,1,23,24]]],[42,17,17,24,41,[[998,3,3,24,27],[999,1,1,27,28],[1000,2,2,28,30],[1002,4,4,30,34],[1003,1,1,34,35],[1005,1,1,35,36],[1006,1,1,36,37],[1007,1,1,37,38],[1008,2,2,38,40],[1016,1,1,40,41]]],[43,13,13,41,54,[[1019,3,3,41,44],[1021,3,3,44,47],[1022,1,1,47,48],[1023,1,1,48,49],[1024,1,1,49,50],[1025,2,2,50,52],[1031,1,1,52,53],[1032,1,1,53,54]]],[44,2,2,54,56,[[1049,1,1,54,55],[1060,1,1,55,56]]],[45,2,2,56,58,[[1062,1,1,56,57],[1075,1,1,57,58]]],[46,2,1,58,59,[[1089,2,1,58,59]]],[52,2,2,59,61,[[1117,1,1,59,60],[1118,1,1,60,61]]],[57,1,1,61,62,[[1134,1,1,61,62]]],[65,7,7,62,69,[[1178,2,2,62,64],[1179,2,2,64,66],[1181,1,1,66,67],[1182,1,1,67,68],[1185,1,1,68,69]]]],[23527,23528,23673,23675,23676,23960,23981,23987,24102,24511,24512,24721,24739,24890,24893,24985,25007,25421,25434,25435,25833,25837,25851,25943,26106,26113,26118,26122,26204,26210,26259,26271,26283,26287,26359,26456,26522,26570,26598,26617,26897,26968,26971,26992,27038,27044,27052,27071,27109,27152,27182,27189,27417,27454,28033,28322,28385,28700,29034,29670,29695,29981,30892,30894,30921,30922,30947,30968,31037]]],["miracle",[7,7,[[41,1,1,0,1,[[995,1,1,0,1]]],[42,4,4,1,5,[[1000,1,1,1,2],[1002,1,1,2,3],[1006,1,1,3,4],[1008,1,1,4,5]]],[43,2,2,5,7,[[1021,2,2,5,7]]]],[25943,26210,26271,26522,26598,27038,27044]]],["miracles",[15,15,[[42,9,9,0,9,[[998,2,2,0,2],[999,1,1,2,3],[1002,2,2,3,5],[1003,1,1,5,6],[1005,1,1,6,7],[1007,1,1,7,8],[1008,1,1,8,9]]],[43,3,3,9,12,[[1023,1,1,9,10],[1025,1,1,10,11],[1032,1,1,11,12]]],[65,3,3,12,15,[[1179,1,1,12,13],[1182,1,1,13,14],[1185,1,1,14,15]]]],[26106,26118,26122,26259,26283,26359,26456,26570,26617,27109,27182,27454,30922,30968,31037]]],["sign",[29,22,[[39,11,7,0,7,[[940,4,2,0,2],[944,4,2,2,4],[952,2,2,4,6],[954,1,1,6,7]]],[40,4,3,7,10,[[964,3,2,7,9],[969,1,1,9,10]]],[41,8,6,10,16,[[974,2,2,10,12],[983,5,3,12,15],[993,1,1,15,16]]],[42,2,2,16,18,[[998,1,1,16,17],[1002,1,1,17,18]]],[44,1,1,18,19,[[1049,1,1,18,19]]],[45,2,2,19,21,[[1062,1,1,19,20],[1075,1,1,20,21]]],[65,1,1,21,22,[[1181,1,1,21,22]]]],[23527,23528,23673,23676,23960,23987,24102,24511,24512,24721,24985,25007,25421,25434,25435,25833,26113,26287,28033,28385,28700,30947]]],["signs",[22,21,[[39,2,2,0,2,[[944,1,1,0,1],[952,1,1,1,2]]],[40,3,3,2,5,[[969,1,1,2,3],[972,2,2,3,5]]],[41,2,2,5,7,[[993,2,2,5,7]]],[42,2,2,7,9,[[1000,1,1,7,8],[1016,1,1,8,9]]],[43,8,8,9,17,[[1019,3,3,9,12],[1021,1,1,12,13],[1022,1,1,13,14],[1024,1,1,14,15],[1025,1,1,15,16],[1031,1,1,16,17]]],[44,1,1,17,18,[[1060,1,1,17,18]]],[46,2,1,18,19,[[1089,2,1,18,19]]],[52,1,1,19,20,[[1117,1,1,19,20]]],[57,1,1,20,21,[[1134,1,1,20,21]]]],[23675,23981,24739,24890,24893,25837,25851,26204,26897,26968,26971,26992,27052,27071,27152,27189,27417,28322,29034,29670,29981]]],["token",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29695]]],["wonder",[2,2,[[65,2,2,0,2,[[1178,2,2,0,2]]]],[30892,30894]]],["wonders",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30921]]]]},{"k":"G4593","v":[["note",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29692]]]]},{"k":"G4594","v":[["*",[41,40,[[39,8,8,0,8,[[934,2,2,0,2],[939,1,1,2,3],[944,1,1,3,4],[949,1,1,4,5],[955,2,2,5,7],[956,1,1,7,8]]],[40,1,1,8,9,[[970,1,1,8,9]]],[41,11,11,9,20,[[974,1,1,9,10],[976,1,1,10,11],[977,1,1,11,12],[984,1,1,12,13],[985,2,2,13,15],[991,2,2,15,17],[994,1,1,17,18],[995,1,1,18,19],[996,1,1,19,20]]],[43,9,9,20,29,[[1021,1,1,20,21],[1030,1,1,21,22],[1036,1,1,22,23],[1037,1,1,23,24],[1039,1,1,24,25],[1041,1,1,25,26],[1043,2,2,26,28],[1044,1,1,28,29]]],[44,1,1,29,30,[[1056,1,1,29,30]]],[46,2,2,30,32,[[1080,2,2,30,32]]],[57,8,7,32,39,[[1133,1,1,32,33],[1135,3,3,33,36],[1136,2,1,36,37],[1137,1,1,37,38],[1145,1,1,38,39]]],[58,1,1,39,40,[[1149,1,1,39,40]]]],[23293,23312,23482,23675,23854,24137,24148,24210,24784,24984,25084,25133,25487,25550,25551,25736,25740,25898,25978,26012,27031,27395,27625,27652,27707,27790,27825,27852,27888,28217,28855,28856,29968,30002,30008,30010,30021,30035,30249,30350]]],["day",[38,37,[[39,8,8,0,8,[[934,2,2,0,2],[939,1,1,2,3],[944,1,1,3,4],[949,1,1,4,5],[955,2,2,5,7],[956,1,1,7,8]]],[40,1,1,8,9,[[970,1,1,8,9]]],[41,11,11,9,20,[[974,1,1,9,10],[976,1,1,10,11],[977,1,1,11,12],[984,1,1,12,13],[985,2,2,13,15],[991,2,2,15,17],[994,1,1,17,18],[995,1,1,18,19],[996,1,1,19,20]]],[43,7,7,20,27,[[1021,1,1,20,21],[1030,1,1,21,22],[1039,1,1,22,23],[1041,1,1,23,24],[1043,2,2,24,26],[1044,1,1,26,27]]],[46,2,2,27,29,[[1080,2,2,27,29]]],[57,8,7,29,36,[[1133,1,1,29,30],[1135,3,3,30,33],[1136,2,1,33,34],[1137,1,1,34,35],[1145,1,1,35,36]]],[58,1,1,36,37,[[1149,1,1,36,37]]]],[23293,23312,23482,23675,23854,24137,24148,24210,24784,24984,25084,25133,25487,25550,25551,25736,25740,25898,25978,26012,27031,27395,27707,27790,27825,27852,27888,28855,28856,29968,30002,30008,30010,30021,30035,30249,30350]]],["day's",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27625]]],["this",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]]],[27652,28217]]]]},{"k":"G4595","v":[["corrupted",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30356]]]]},{"k":"G4596","v":[["silk",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31005]]]]},{"k":"G4597","v":[["moth",[3,3,[[39,2,2,0,2,[[934,2,2,0,2]]],[41,1,1,2,3,[[984,1,1,2,3]]]],[23301,23302,25492]]]]},{"k":"G4598","v":[["motheaten",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30356]]]]},{"k":"G4599","v":[["strengthen",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30475]]]]},{"k":"G4600","v":[["cheek",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]]],[23273,25175]]]]},{"k":"G4601","v":[["*",[9,9,[[41,2,2,0,2,[[981,1,1,0,1],[992,1,1,1,2]]],[43,3,3,2,5,[[1029,1,1,2,3],[1032,2,2,3,5]]],[44,1,1,5,6,[[1061,1,1,5,6]]],[45,3,3,6,9,[[1075,3,3,6,9]]]],[25337,25805,27354,27454,27455,28361,28706,28708,28712]]],["close",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25337]]],["peace",[4,4,[[41,1,1,0,1,[[992,1,1,0,1]]],[43,2,2,1,3,[[1029,1,1,1,2],[1032,1,1,2,3]]],[45,1,1,3,4,[[1075,1,1,3,4]]]],[25805,27354,27455,28708]]],["secret",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28361]]],["silence",[3,3,[[43,1,1,0,1,[[1032,1,1,0,1]]],[45,2,2,1,3,[[1075,2,2,1,3]]]],[27454,28706,28712]]]]},{"k":"G4602","v":[["silence",[2,2,[[43,1,1,0,1,[[1038,1,1,0,1]]],[65,1,1,1,2,[[1174,1,1,1,2]]]],[27704,30828]]]]},{"k":"G4603","v":[["iron",[5,5,[[43,1,1,0,1,[[1029,1,1,0,1]]],[65,4,4,1,5,[[1168,1,1,1,2],[1175,1,1,2,3],[1178,1,1,3,4],[1185,1,1,4,5]]]],[27347,30744,30849,30896,31032]]]]},{"k":"G4604","v":[["iron",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31005]]]]},{"k":"G4605","v":[["Sidon",[11,11,[[39,3,3,0,3,[[939,2,2,0,2],[943,1,1,2,3]]],[40,3,3,3,6,[[959,1,1,3,4],[963,2,2,4,6]]],[41,4,4,6,10,[[976,1,1,6,7],[978,1,1,7,8],[982,2,2,8,10]]],[43,1,1,10,11,[[1044,1,1,10,11]]]],[23480,23481,23654,24296,24487,24494,25089,25163,25376,25377,27858]]]]},{"k":"G4606","v":[["Sidon",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27357]]]]},{"k":"G4607","v":[["murderers",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27702]]]]},{"k":"G4608","v":[["drink",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24908]]]]},{"k":"G4609","v":[["Silas",[13,13,[[43,13,13,0,13,[[1032,5,5,0,5],[1033,3,3,5,8],[1034,4,4,8,12],[1035,1,1,12,13]]]],[27464,27469,27474,27476,27482,27502,27508,27512,27527,27533,27537,27538,27562]]]]},{"k":"G4610","v":[["Silvanus",[4,4,[[46,1,1,0,1,[[1078,1,1,0,1]]],[51,1,1,1,2,[[1111,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]],[59,1,1,3,4,[[1155,1,1,3,4]]]],[28819,29561,29650,30477]]]]},{"k":"G4611","v":[["Siloam",[3,3,[[41,1,1,0,1,[[985,1,1,0,1]]],[42,2,2,1,3,[[1005,2,2,1,3]]]],[25522,26447,26451]]]]},{"k":"G4612","v":[["aprons",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27597]]]]},{"k":"G4613","v":[["*",[75,70,[[39,9,9,0,9,[[932,1,1,0,1],[938,2,2,1,3],[941,1,1,3,4],[944,2,2,4,6],[945,1,1,6,7],[954,1,1,7,8],[955,1,1,8,9]]],[40,10,10,9,19,[[957,4,4,9,13],[959,2,2,13,15],[962,1,1,15,16],[970,2,2,16,18],[971,1,1,18,19]]],[41,17,14,19,33,[[976,2,1,19,20],[977,6,5,20,25],[978,2,2,25,27],[979,3,3,27,30],[994,2,1,30,31],[995,1,1,31,32],[996,1,1,32,33]]],[42,26,25,33,58,[[997,3,3,33,36],[1002,3,3,36,39],[1008,1,1,39,40],[1009,6,6,40,46],[1014,3,3,46,49],[1016,2,2,49,51],[1017,8,7,51,58]]],[43,13,12,58,70,[[1018,1,1,58,59],[1025,4,4,59,63],[1026,1,1,63,64],[1027,6,5,64,69],[1028,1,1,69,70]]]],[23227,23419,23421,23594,23688,23689,23725,24060,24161,24231,24244,24245,24251,24304,24306,24410,24757,24791,24847,25101,25110,25111,25112,25115,25117,25160,25161,25235,25238,25239,25895,25961,26025,26084,26085,26086,26265,26325,26328,26584,26632,26636,26639,26654,26656,26666,26795,26800,26810,26869,26873,26900,26901,26905,26909,26913,26914,26915,26936,27185,27189,27194,27200,27259,27264,27265,27276,27277,27291,27320]]],["Simon",[68,64,[[39,9,9,0,9,[[932,1,1,0,1],[938,2,2,1,3],[941,1,1,3,4],[944,2,2,4,6],[945,1,1,6,7],[954,1,1,7,8],[955,1,1,8,9]]],[40,9,9,9,18,[[957,3,3,9,12],[959,2,2,12,14],[962,1,1,14,15],[970,2,2,15,17],[971,1,1,17,18]]],[41,14,12,18,30,[[977,5,4,18,22],[978,2,2,22,24],[979,3,3,24,27],[994,2,1,27,28],[995,1,1,28,29],[996,1,1,29,30]]],[42,24,23,30,53,[[997,3,3,30,33],[1002,3,3,33,36],[1009,5,5,36,41],[1014,3,3,41,44],[1016,2,2,44,46],[1017,8,7,46,53]]],[43,12,11,53,64,[[1018,1,1,53,54],[1025,4,4,54,58],[1026,1,1,58,59],[1027,5,4,59,63],[1028,1,1,63,64]]]],[23227,23419,23421,23594,23688,23689,23725,24060,24161,24231,24244,24251,24304,24306,24410,24757,24791,24847,25111,25112,25115,25117,25160,25161,25235,25238,25239,25895,25961,26025,26084,26085,26086,26265,26325,26328,26636,26639,26654,26656,26666,26795,26800,26810,26869,26873,26900,26901,26905,26909,26913,26914,26915,26936,27185,27189,27194,27200,27259,27264,27265,27277,27291,27320]]],["Simon's",[7,6,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,3,2,1,3,[[976,2,1,1,2],[977,1,1,2,3]]],[42,2,2,3,5,[[1008,1,1,3,4],[1009,1,1,4,5]]],[43,1,1,5,6,[[1027,1,1,5,6]]]],[24245,25101,25110,26584,26632,27276]]]]},{"k":"G4614","v":[["*",[4,4,[[43,2,2,0,2,[[1024,2,2,0,2]]],[47,2,2,2,4,[[1094,2,2,2,4]]]],[27146,27154,29155,29156]]],["Sina",[2,2,[[43,2,2,0,2,[[1024,2,2,0,2]]]],[27146,27154]]],["Sinai",[2,2,[[47,2,2,0,2,[[1094,2,2,0,2]]]],[29155,29156]]]]},{"k":"G4615","v":[["seed",[5,5,[[39,2,2,0,2,[[941,1,1,0,1],[945,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,2,2,3,5,[[985,1,1,3,4],[989,1,1,4,5]]]],[23570,23720,24354,25537,25657]]]]},{"k":"G4616","v":[["*",[6,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,4,3,1,4,[[970,2,2,1,3],[971,2,1,3,4]]],[41,1,1,4,5,[[995,1,1,4,5]]]],[24188,24805,24806,24872,25988]]],["cloth",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,2,2,1,3,[[970,2,2,1,3]]]],[24188,24805,24806]]],["linen",[3,2,[[40,2,1,0,1,[[971,2,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24872,25988]]]]},{"k":"G4617","v":[["sift",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25895]]]]},{"k":"G4618","v":[["fatted",[3,3,[[41,3,3,0,3,[[987,3,3,0,3]]]],[25611,25615,25618]]]]},{"k":"G4619","v":[["fatlings",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23876]]]]},{"k":"G4620","v":[["meat",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25501]]]]},{"k":"G4621","v":[["*",[14,14,[[39,4,4,0,4,[[931,1,1,0,1],[941,3,3,1,4]]],[40,1,1,4,5,[[960,1,1,4,5]]],[41,3,3,5,8,[[975,1,1,5,6],[988,1,1,6,7],[994,1,1,7,8]]],[42,1,1,8,9,[[1008,1,1,8,9]]],[43,2,2,9,11,[[1024,1,1,9,10],[1044,1,1,10,11]]],[45,1,1,11,12,[[1076,1,1,11,12]]],[65,2,2,12,14,[[1172,1,1,12,13],[1184,1,1,13,14]]]],[23204,23564,23568,23569,24351,25042,25627,25895,26604,27128,27893,28755,30799,31006]]],["corn",[2,2,[[40,1,1,0,1,[[960,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[24351,27128]]],["wheat",[12,12,[[39,4,4,0,4,[[931,1,1,0,1],[941,3,3,1,4]]],[41,3,3,4,7,[[975,1,1,4,5],[988,1,1,5,6],[994,1,1,6,7]]],[42,1,1,7,8,[[1008,1,1,7,8]]],[43,1,1,8,9,[[1044,1,1,8,9]]],[45,1,1,9,10,[[1076,1,1,9,10]]],[65,2,2,10,12,[[1172,1,1,10,11],[1184,1,1,11,12]]]],[23204,23564,23568,23569,25042,25627,25895,26604,27893,28755,30799,31006]]]]},{"k":"G4622","v":[["Sion",[7,7,[[39,1,1,0,1,[[949,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]],[44,2,2,2,4,[[1054,1,1,2,3],[1056,1,1,3,4]]],[57,1,1,4,5,[[1144,1,1,4,5]]],[59,1,1,5,6,[[1152,1,1,5,6]]],[65,1,1,6,7,[[1180,1,1,6,7]]]],[23831,26595,28188,28235,30234,30405,30927]]]]},{"k":"G4623","v":[["*",[11,11,[[39,2,2,0,2,[[948,1,1,0,1],[954,1,1,1,2]]],[40,5,5,2,7,[[959,1,1,2,3],[960,1,1,3,4],[965,1,1,4,5],[966,1,1,5,6],[970,1,1,6,7]]],[41,3,3,7,10,[[973,1,1,7,8],[990,1,1,8,9],[991,1,1,9,10]]],[43,1,1,10,11,[[1035,1,1,10,11]]]],[23823,24117,24292,24362,24572,24636,24815,24913,25727,25771,27566]]],["+",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27566]]],["Peace",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24362]]],["dumb",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24913]]],["peace",[8,8,[[39,2,2,0,2,[[948,1,1,0,1],[954,1,1,1,2]]],[40,4,4,2,6,[[959,1,1,2,3],[965,1,1,3,4],[966,1,1,4,5],[970,1,1,5,6]]],[41,2,2,6,8,[[990,1,1,6,7],[991,1,1,7,8]]]],[23823,24117,24292,24572,24636,24815,25727,25771]]]]},{"k":"G4624","v":[["*",[30,28,[[39,14,13,0,13,[[933,2,2,0,2],[939,1,1,2,3],[941,2,2,3,5],[943,1,1,5,6],[945,1,1,6,7],[946,3,3,7,10],[952,1,1,10,11],[954,3,2,11,13]]],[40,8,8,13,21,[[960,1,1,13,14],[962,1,1,14,15],[965,4,4,15,19],[970,2,2,19,21]]],[41,2,2,21,23,[[979,1,1,21,22],[989,1,1,22,23]]],[42,2,2,23,25,[[1002,1,1,23,24],[1012,1,1,24,25]]],[44,1,1,25,26,[[1059,1,1,25,26]]],[45,2,1,26,27,[[1069,2,1,26,27]]],[46,1,1,27,28,[[1088,1,1,27,28]]]],[23263,23264,23465,23560,23596,23645,23727,23733,23735,23736,23967,24085,24087,24340,24410,24580,24581,24583,24585,24781,24783,25218,25653,26318,26727,28301,28540,29018]]],["+",[2,1,[[45,2,1,0,1,[[1069,2,1,0,1]]]],[28540]]],["offend",[12,12,[[39,6,6,0,6,[[933,2,2,0,2],[945,1,1,2,3],[946,3,3,3,6]]],[40,4,4,6,10,[[965,4,4,6,10]]],[41,1,1,10,11,[[989,1,1,10,11]]],[42,1,1,11,12,[[1002,1,1,11,12]]]],[23263,23264,23727,23733,23735,23736,24580,24581,24583,24585,25653,26318]]],["offended",[16,15,[[39,8,7,0,7,[[939,1,1,0,1],[941,2,2,1,3],[943,1,1,3,4],[952,1,1,4,5],[954,3,2,5,7]]],[40,4,4,7,11,[[960,1,1,7,8],[962,1,1,8,9],[970,2,2,9,11]]],[41,1,1,11,12,[[979,1,1,11,12]]],[42,1,1,12,13,[[1012,1,1,12,13]]],[44,1,1,13,14,[[1059,1,1,13,14]]],[46,1,1,14,15,[[1088,1,1,14,15]]]],[23465,23560,23596,23645,23967,24085,24087,24340,24410,24781,24783,25218,26727,28301,29018]]]]},{"k":"G4625","v":[["*",[15,13,[[39,5,3,0,3,[[941,1,1,0,1],[944,1,1,1,2],[946,3,1,2,3]]],[41,1,1,3,4,[[989,1,1,3,4]]],[44,4,4,4,8,[[1054,1,1,4,5],[1056,1,1,5,6],[1059,1,1,6,7],[1061,1,1,7,8]]],[45,1,1,8,9,[[1062,1,1,8,9]]],[47,1,1,9,10,[[1095,1,1,9,10]]],[59,1,1,10,11,[[1152,1,1,10,11]]],[61,1,1,11,12,[[1160,1,1,11,12]]],[65,1,1,12,13,[[1168,1,1,12,13]]]],[23580,23695,23734,25652,28188,28218,28293,28353,28386,29173,30407,30560,30731]]],["fall",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28293]]],["offence",[5,5,[[39,2,2,0,2,[[944,1,1,0,1],[946,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[23695,23734,28188,29173,30407]]],["offences",[4,3,[[39,2,1,0,1,[[946,2,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]],[44,1,1,2,3,[[1061,1,1,2,3]]]],[23734,25652,28353]]],["offend",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23580]]],["stumbling",[1,1,[[61,1,1,0,1,[[1160,1,1,0,1]]]],[30560]]],["stumblingblock",[3,3,[[44,1,1,0,1,[[1056,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[28218,28386,30731]]]]},{"k":"G4626","v":[["*",[3,3,[[41,3,3,0,3,[[978,1,1,0,1],[985,1,1,1,2],[988,1,1,2,3]]]],[25194,25526,25623]]],["dig",[2,2,[[41,2,2,0,2,[[985,1,1,0,1],[988,1,1,1,2]]]],[25526,25623]]],["digged",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25194]]]]},{"k":"G4627","v":[["boat",[3,3,[[43,3,3,0,3,[[1044,3,3,0,3]]]],[27871,27885,27887]]]]},{"k":"G4628","v":[["legs",[3,3,[[42,3,3,0,3,[[1015,3,3,0,3]]]],[26856,26857,26858]]]]},{"k":"G4629","v":[["raiment",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29796]]]]},{"k":"G4630","v":[["Sceva",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27599]]]]},{"k":"G4631","v":[["tackling",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27874]]]]},{"k":"G4632","v":[["*",[23,22,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,2,2,1,3,[[959,1,1,1,2],[967,1,1,2,3]]],[41,2,2,3,5,[[980,1,1,3,4],[989,1,1,4,5]]],[42,1,1,5,6,[[1015,1,1,5,6]]],[43,5,5,6,11,[[1026,1,1,6,7],[1027,2,2,7,9],[1028,1,1,9,10],[1044,1,1,10,11]]],[44,3,3,11,14,[[1054,3,3,11,14]]],[46,1,1,14,15,[[1081,1,1,14,15]]],[51,1,1,15,16,[[1114,1,1,15,16]]],[54,2,2,16,18,[[1126,2,2,16,18]]],[57,1,1,18,19,[[1141,1,1,18,19]]],[59,1,1,19,20,[[1153,1,1,19,20]]],[65,3,2,20,22,[[1168,1,1,20,21],[1184,2,1,21,22]]]],[23518,24315,24656,25261,25682,26854,27231,27270,27275,27312,27872,28176,28177,28178,28866,29607,29847,29848,30126,30431,30744,31005]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27872]]],["goods",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]]],[23518,24315]]],["stuff",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25682]]],["vessel",[11,11,[[40,1,1,0,1,[[967,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]],[43,4,4,3,7,[[1026,1,1,3,4],[1027,2,2,4,6],[1028,1,1,6,7]]],[44,1,1,7,8,[[1054,1,1,7,8]]],[51,1,1,8,9,[[1114,1,1,8,9]]],[54,1,1,9,10,[[1126,1,1,9,10]]],[59,1,1,10,11,[[1153,1,1,10,11]]]],[24656,25261,26854,27231,27270,27275,27312,28176,29607,29848,30431]]],["vessels",[8,7,[[44,2,2,0,2,[[1054,2,2,0,2]]],[46,1,1,2,3,[[1081,1,1,2,3]]],[54,1,1,3,4,[[1126,1,1,3,4]]],[57,1,1,4,5,[[1141,1,1,4,5]]],[65,3,2,5,7,[[1168,1,1,5,6],[1184,2,1,6,7]]]],[28177,28178,28866,29847,30126,30744,31005]]]]},{"k":"G4633","v":[["*",[20,20,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,2,2,2,4,[[981,1,1,2,3],[988,1,1,3,4]]],[43,3,3,4,7,[[1024,2,2,4,6],[1032,1,1,6,7]]],[57,10,10,7,17,[[1140,2,2,7,9],[1141,6,6,9,15],[1143,1,1,15,16],[1145,1,1,16,17]]],[65,3,3,17,20,[[1179,1,1,17,18],[1181,1,1,18,19],[1187,1,1,19,20]]]],[23704,24543,25334,25629,27159,27160,27458,30094,30097,30107,30108,30111,30113,30116,30126,30181,30251,30914,30951,31056]]],["habitations",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25629]]],["tabernacle",[15,15,[[43,3,3,0,3,[[1024,2,2,0,2],[1032,1,1,2,3]]],[57,9,9,3,12,[[1140,2,2,3,5],[1141,6,6,5,11],[1145,1,1,11,12]]],[65,3,3,12,15,[[1179,1,1,12,13],[1181,1,1,13,14],[1187,1,1,14,15]]]],[27159,27160,27458,30094,30097,30107,30108,30111,30113,30116,30126,30251,30914,30951,31056]]],["tabernacles",[4,4,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[23704,24543,25334,30181]]]]},{"k":"G4634","v":[["tabernacles",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26330]]]]},{"k":"G4635","v":[["tentmakers",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27560]]]]},{"k":"G4636","v":[["tabernacle",[2,2,[[46,2,2,0,2,[[1082,2,2,0,2]]]],[28878,28881]]]]},{"k":"G4637","v":[["*",[5,5,[[42,1,1,0,1,[[997,1,1,0,1]]],[65,4,4,1,5,[[1173,1,1,1,2],[1178,1,1,2,3],[1179,1,1,3,4],[1187,1,1,4,5]]]],[26058,30825,30903,30914,31056]]],["dwell",[4,4,[[65,4,4,0,4,[[1173,1,1,0,1],[1178,1,1,1,2],[1179,1,1,2,3],[1187,1,1,3,4]]]],[30825,30903,30914,31056]]],["dwelt",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26058]]]]},{"k":"G4638","v":[["tabernacle",[3,3,[[43,1,1,0,1,[[1024,1,1,0,1]]],[60,2,2,1,3,[[1156,2,2,1,3]]]],[27162,30492,30493]]]]},{"k":"G4639","v":[["shadow",[7,7,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[973,1,1,2,3]]],[43,1,1,3,4,[[1022,1,1,3,4]]],[50,1,1,4,5,[[1108,1,1,4,5]]],[57,2,2,5,7,[[1140,1,1,5,6],[1142,1,1,6,7]]]],[23225,24355,24972,27074,29511,30097,30134]]]]},{"k":"G4640","v":[["*",[3,3,[[41,3,3,0,3,[[973,2,2,0,2],[978,1,1,2,3]]]],[24934,24937,25169]]],["joy",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25169]]],["leaped",[2,2,[[41,2,2,0,2,[[973,2,2,0,2]]]],[24934,24937]]]]},{"k":"G4641","v":[["*",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,2,2,1,3,[[966,1,1,1,2],[972,1,1,2,3]]]],[23770,24593,24887]]],["+",[2,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]]],[23770,24593]]],["heart",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24887]]]]},{"k":"G4642","v":[["*",[6,6,[[39,1,1,0,1,[[953,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[43,2,2,2,4,[[1026,1,1,2,3],[1043,1,1,3,4]]],[58,1,1,4,5,[[1148,1,1,4,5]]],[64,1,1,5,6,[[1166,1,1,5,6]]]],[24032,26317,27221,27837,30323,30687]]],["fierce",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30323]]],["hard",[5,5,[[39,1,1,0,1,[[953,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[43,2,2,2,4,[[1026,1,1,2,3],[1043,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[24032,26317,27221,27837,30687]]]]},{"k":"G4643","v":[["hardness",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27967]]]]},{"k":"G4644","v":[["stiffnecked",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27167]]]]},{"k":"G4645","v":[["*",[6,6,[[43,1,1,0,1,[[1036,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]],[57,4,4,2,6,[[1135,3,3,2,5],[1136,1,1,5,6]]]],[27594,28173,30003,30008,30010,30021]]],["Harden",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30003]]],["harden",[2,2,[[57,2,2,0,2,[[1135,1,1,0,1],[1136,1,1,1,2]]]],[30010,30021]]],["hardened",[2,2,[[43,1,1,0,1,[[1036,1,1,0,1]]],[57,1,1,1,2,[[1135,1,1,1,2]]]],[27594,30008]]],["hardeneth",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28173]]]]},{"k":"G4646","v":[["*",[4,4,[[41,1,1,0,1,[[975,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[25030,26989,29406,30417]]],["crooked",[2,2,[[41,1,1,0,1,[[975,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[25030,29406]]],["froward",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30417]]],["untoward",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26989]]]]},{"k":"G4647","v":[["thorn",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29029]]]]},{"k":"G4648","v":[["*",[6,6,[[41,1,1,0,1,[[983,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]],[46,1,1,2,3,[[1081,1,1,2,3]]],[47,1,1,3,4,[[1096,1,1,3,4]]],[49,2,2,4,6,[[1104,1,1,4,5],[1105,1,1,5,6]]]],[25440,28353,28877,29189,29395,29438]]],["+",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28877]]],["Look",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29395]]],["considering",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29189]]],["heed",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25440]]],["mark",[2,2,[[44,1,1,0,1,[[1061,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[28353,29438]]]]},{"k":"G4649","v":[["mark",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29435]]]]},{"k":"G4650","v":[["*",[5,5,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,2,2,2,4,[[1006,1,1,2,3],[1012,1,1,3,4]]],[46,1,1,4,5,[[1086,1,1,4,5]]]],[23519,25428,26493,26758,28965]]],["abroad",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[46,1,1,1,2,[[1086,1,1,1,2]]]],[23519,28965]]],["scattered",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26758]]],["scattereth",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,1,1,1,2,[[1006,1,1,1,2]]]],[25428,26493]]]]},{"k":"G4651","v":[["*",[5,5,[[41,2,2,0,2,[[982,1,1,0,1],[983,1,1,1,2]]],[65,3,3,2,5,[[1175,3,3,2,5]]]],[25382,25417,30843,30845,30850]]],["scorpion",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[65,1,1,1,2,[[1175,1,1,1,2]]]],[25417,30845]]],["scorpions",[3,3,[[41,1,1,0,1,[[982,1,1,0,1]]],[65,2,2,1,3,[[1175,2,2,1,3]]]],[25382,30843,30850]]]]},{"k":"G4652","v":[["*",[3,3,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,2,2,1,3,[[983,2,2,1,3]]]],[23305,25439,25441]]],["dark",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25441]]],["darkness",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23305,25439]]]]},{"k":"G4653","v":[["*",[16,12,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[42,8,6,2,8,[[997,2,1,2,3],[1002,1,1,3,4],[1004,1,1,4,5],[1008,3,2,5,7],[1016,1,1,7,8]]],[61,6,4,8,12,[[1159,1,1,8,9],[1160,5,3,9,12]]]],[23444,25462,26049,26274,26393,26615,26626,26868,30545,30558,30559,30561]]],["dark",[2,2,[[42,2,2,0,2,[[1002,1,1,0,1],[1016,1,1,1,2]]]],[26274,26868]]],["darkness",[14,10,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[42,6,4,2,6,[[997,2,1,2,3],[1004,1,1,3,4],[1008,3,2,4,6]]],[61,6,4,6,10,[[1159,1,1,6,7],[1160,5,3,7,10]]]],[23444,25462,26049,26393,26615,26626,30545,30558,30559,30561]]]]},{"k":"G4654","v":[["darkened",[8,8,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[44,2,2,3,5,[[1046,1,1,3,4],[1056,1,1,4,5]]],[48,1,1,5,6,[[1100,1,1,5,6]]],[65,2,2,6,8,[[1174,1,1,6,7],[1175,1,1,7,8]]]],[23986,24741,25980,27951,28219,29290,30839,30842]]]]},{"k":"G4655","v":[["darkness",[32,31,[[39,7,6,0,6,[[932,1,1,0,1],[934,2,1,1,2],[936,1,1,2,3],[950,1,1,3,4],[953,1,1,4,5],[955,1,1,5,6]]],[40,1,1,6,7,[[971,1,1,6,7]]],[41,4,4,7,11,[[973,1,1,7,8],[983,1,1,8,9],[994,1,1,9,10],[995,1,1,10,11]]],[42,1,1,11,12,[[999,1,1,11,12]]],[43,3,3,12,15,[[1019,1,1,12,13],[1030,1,1,13,14],[1043,1,1,14,15]]],[44,2,2,15,17,[[1047,1,1,15,16],[1058,1,1,16,17]]],[45,1,1,17,18,[[1065,1,1,17,18]]],[46,2,2,18,20,[[1081,1,1,18,19],[1083,1,1,19,20]]],[48,3,3,20,23,[[1101,2,2,20,22],[1102,1,1,22,23]]],[50,1,1,23,24,[[1107,1,1,23,24]]],[51,2,2,24,26,[[1115,2,2,24,26]]],[57,1,1,26,27,[[1144,1,1,26,27]]],[59,1,1,27,28,[[1152,1,1,27,28]]],[60,1,1,28,29,[[1157,1,1,28,29]]],[61,1,1,29,30,[[1159,1,1,29,30]]],[64,1,1,30,31,[[1166,1,1,30,31]]]],[23225,23305,23357,23885,24038,24174,24859,24972,25440,25917,25979,26139,26969,27373,27841,27981,28278,28438,28865,28912,29312,29315,29349,29478,29625,29626,30230,30408,30517,30546,30685]]]]},{"k":"G4656","v":[["darkness",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30964]]]]},{"k":"G4657","v":[["dung",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29429]]]]},{"k":"G4658","v":[["Scythian",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29528]]]]},{"k":"G4659","v":[["*",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]]],[23298,26008]]],["countenance",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23298]]],["sad",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26008]]]]},{"k":"G4660","v":[["*",[3,3,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,2,2,1,3,[[979,1,1,1,2],[980,1,1,2,3]]]],[24399,25201,25294]]],["trouble",[2,2,[[41,2,2,0,2,[[979,1,1,0,1],[980,1,1,1,2]]]],[25201,25294]]],["troublest",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24399]]]]},{"k":"G4661","v":[["spoils",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25427]]]]},{"k":"G4662","v":[["worms",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27360]]]]},{"k":"G4663","v":[["worm",[3,3,[[40,3,3,0,3,[[965,3,3,0,3]]]],[24582,24584,24586]]]]},{"k":"G4664","v":[["emerald",[1,1,[[65,1,1,0,1,[[1170,1,1,0,1]]]],[30771]]]]},{"k":"G4665","v":[["emerald",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31072]]]]},{"k":"G4666","v":[["myrrh",[2,2,[[39,1,1,0,1,[[930,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]]],[23180,26864]]]]},{"k":"G4667","v":[["Smyrna",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30708]]]]},{"k":"G4668","v":[["Smyrna",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30725]]]]},{"k":"G4669","v":[["myrrh",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24849]]]]},{"k":"G4670","v":[["*",[10,10,[[39,3,3,0,3,[[938,1,1,0,1],[939,2,2,1,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[41,2,2,4,6,[[982,1,1,4,5],[989,1,1,5,6]]],[44,1,1,6,7,[[1054,1,1,6,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]],[64,1,1,8,9,[[1166,1,1,8,9]]],[65,1,1,9,10,[[1177,1,1,9,10]]]],[23432,23482,23483,24418,25375,25680,28184,30506,30679,30880]]],["+",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30506]]],["Sodom",[8,8,[[39,3,3,0,3,[[938,1,1,0,1],[939,2,2,1,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[41,2,2,4,6,[[982,1,1,4,5],[989,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]],[65,1,1,7,8,[[1177,1,1,7,8]]]],[23432,23482,23483,24418,25375,25680,30679,30880]]],["Sodoma",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28184]]]]},{"k":"G4671","v":[["*",[220,203,[[39,49,47,0,47,[[930,1,1,0,1],[932,1,1,1,2],[933,4,4,2,6],[934,4,4,6,10],[936,3,3,10,13],[937,2,2,13,15],[939,5,4,15,19],[940,1,1,19,20],[942,1,1,20,21],[943,1,1,21,22],[944,5,4,22,26],[945,2,2,26,28],[946,7,7,28,35],[947,1,1,35,36],[948,1,1,36,37],[949,2,2,37,39],[950,2,2,39,41],[953,1,1,41,42],[954,4,4,42,46],[955,1,1,46,47]]],[40,26,26,47,73,[[957,1,1,47,48],[958,4,4,48,52],[960,1,1,52,53],[961,4,4,53,57],[962,3,3,57,60],[965,5,5,60,65],[966,3,3,65,68],[967,1,1,68,69],[968,1,1,69,70],[970,3,3,70,73]]],[41,46,41,73,114,[[973,5,5,73,78],[975,1,1,78,79],[976,2,2,79,81],[977,3,3,81,84],[979,2,2,84,86],[980,3,3,86,89],[981,3,3,89,92],[982,6,5,92,97],[983,2,2,97,99],[984,1,1,99,100],[986,7,4,100,104],[987,1,1,104,105],[990,4,4,105,109],[991,2,1,109,110],[992,1,1,110,111],[994,2,2,111,113],[995,1,1,113,114]]],[42,26,25,114,139,[[997,1,1,114,115],[998,1,1,115,116],[999,4,4,116,120],[1000,3,2,120,122],[1001,3,3,122,125],[1002,1,1,125,126],[1005,1,1,126,127],[1007,3,3,127,130],[1009,2,2,130,132],[1013,3,3,132,135],[1014,2,2,135,137],[1017,2,2,137,139]]],[43,24,22,139,161,[[1020,1,1,139,140],[1022,1,1,140,141],[1024,1,1,141,142],[1025,3,3,142,145],[1026,3,3,145,148],[1027,3,3,148,151],[1033,1,1,151,152],[1035,1,1,152,153],[1038,1,1,153,154],[1039,2,1,154,155],[1040,1,1,155,156],[1041,1,1,156,157],[1043,4,3,157,160],[1044,1,1,160,161]]],[44,4,4,161,165,[[1054,2,2,161,163],[1058,1,1,163,164],[1060,1,1,164,165]]],[45,1,1,165,166,[[1068,1,1,165,166]]],[46,2,2,166,168,[[1083,1,1,166,167],[1089,1,1,167,168]]],[47,1,1,168,169,[[1093,1,1,168,169]]],[48,2,2,169,171,[[1101,1,1,169,170],[1102,1,1,170,171]]],[53,5,4,171,175,[[1119,1,1,171,172],[1121,1,1,172,173],[1122,2,1,173,174],[1124,1,1,174,175]]],[54,5,3,175,178,[[1125,4,2,175,177],[1126,1,1,177,178]]],[55,1,1,178,179,[[1129,1,1,178,179]]],[56,6,5,179,184,[[1132,6,5,179,184]]],[57,2,2,184,186,[[1140,1,1,184,185],[1143,1,1,185,186]]],[58,1,1,186,187,[[1147,1,1,186,187]]],[62,1,1,187,188,[[1164,1,1,187,188]]],[63,2,2,188,190,[[1165,2,2,188,190]]],[64,1,1,190,191,[[1166,1,1,190,191]]],[65,15,12,191,203,[[1168,3,3,191,194],[1169,1,1,194,195],[1170,1,1,195,196],[1177,1,1,196,197],[1180,1,1,197,198],[1183,2,2,198,200],[1184,5,2,200,202],[1187,1,1,202,203]]]],[23182,23218,23260,23263,23264,23274,23286,23288,23300,23305,23358,23364,23374,23381,23384,23480,23482,23483,23484,23536,23601,23661,23689,23690,23691,23694,23704,23725,23735,23736,23744,23749,23753,23756,23759,23789,23806,23831,23849,23888,23889,24052,24071,24087,24088,24089,24148,24239,24265,24269,24271,24278,24361,24371,24373,24383,24405,24425,24429,24430,24543,24563,24581,24583,24585,24609,24616,24639,24668,24687,24784,24785,24790,24896,24906,24907,24912,24928,25047,25069,25097,25127,25130,25131,25209,25235,25273,25275,25284,25334,25358,25362,25376,25384,25398,25399,25403,25412,25440,25518,25562,25563,25565,25567,25617,25699,25710,25716,25729,25775,25781,25875,25898,25978,26094,26099,26123,26125,26127,26131,26166,26182,26220,26222,26224,26287,26466,26545,26563,26564,26667,26668,26764,26768,26780,26815,26819,26901,26916,27002,27063,27119,27196,27197,27198,27221,27222,27233,27265,27291,27292,27501,27567,27687,27714,27752,27783,27824,27837,27839,27879,28162,28172,28270,28312,28508,28900,29031,29110,29318,29340,29714,29745,29761,29801,29814,29815,29834,29897,29946,29949,29954,29957,29959,30097,30190,30311,30650,30671,30672,30681,30722,30727,30733,30764,30769,30889,30941,30976,30982,31015,31016,31062]]],["+",[18,18,[[39,4,4,0,4,[[930,1,1,0,1],[933,1,1,1,2],[936,1,1,2,3],[955,1,1,3,4]]],[40,4,4,4,8,[[957,1,1,4,5],[961,1,1,5,6],[966,1,1,6,7],[968,1,1,7,8]]],[41,4,4,8,12,[[973,1,1,8,9],[976,1,1,9,10],[980,1,1,10,11],[982,1,1,11,12]]],[42,1,1,12,13,[[998,1,1,12,13]]],[43,1,1,13,14,[[1022,1,1,13,14]]],[48,1,1,14,15,[[1101,1,1,14,15]]],[53,1,1,15,16,[[1124,1,1,15,16]]],[54,1,1,16,17,[[1125,1,1,16,17]]],[65,1,1,17,18,[[1177,1,1,17,18]]]],[23182,23274,23374,24148,24239,24371,24639,24687,24912,25097,25273,25403,26099,27063,29318,29801,29815,30889]]],["Thou",[2,2,[[43,2,2,0,2,[[1025,1,1,0,1],[1043,1,1,1,2]]]],[27197,27824]]],["for",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28508]]],["thee",[183,169,[[39,42,40,0,40,[[932,1,1,0,1],[933,3,3,1,4],[934,4,4,4,8],[936,2,2,8,10],[937,2,2,10,12],[939,5,4,12,16],[940,1,1,16,17],[942,1,1,17,18],[943,1,1,18,19],[944,5,4,19,23],[945,1,1,23,24],[946,7,7,24,31],[947,1,1,31,32],[948,1,1,32,33],[949,2,2,33,35],[953,1,1,35,36],[954,4,4,36,40]]],[40,18,18,40,58,[[958,3,3,40,43],[961,2,2,43,45],[962,3,3,45,48],[965,5,5,48,53],[966,1,1,53,54],[967,1,1,54,55],[970,3,3,55,58]]],[41,36,33,58,91,[[973,3,3,58,61],[975,1,1,61,62],[976,1,1,62,63],[977,3,3,63,66],[979,2,2,66,68],[980,1,1,68,69],[981,3,3,69,72],[982,4,3,72,75],[983,2,2,75,77],[984,1,1,77,78],[986,5,4,78,82],[987,1,1,82,83],[990,3,3,83,86],[991,2,1,86,87],[992,1,1,87,88],[994,2,2,88,90],[995,1,1,90,91]]],[42,24,23,91,114,[[997,1,1,91,92],[999,4,4,92,96],[1000,3,2,96,98],[1001,3,3,98,101],[1002,1,1,101,102],[1005,1,1,102,103],[1007,3,3,103,106],[1009,2,2,106,108],[1013,2,2,108,110],[1014,2,2,110,112],[1017,2,2,112,114]]],[43,21,19,114,133,[[1020,1,1,114,115],[1024,1,1,115,116],[1025,2,2,116,118],[1026,3,3,118,121],[1027,3,3,121,124],[1033,1,1,124,125],[1035,1,1,125,126],[1038,1,1,126,127],[1039,2,1,127,128],[1040,1,1,128,129],[1041,1,1,129,130],[1043,3,2,130,132],[1044,1,1,132,133]]],[44,3,3,133,136,[[1054,1,1,133,134],[1058,1,1,134,135],[1060,1,1,135,136]]],[46,2,2,136,138,[[1083,1,1,136,137],[1089,1,1,137,138]]],[47,1,1,138,139,[[1093,1,1,138,139]]],[48,1,1,139,140,[[1102,1,1,139,140]]],[53,4,3,140,143,[[1119,1,1,140,141],[1121,1,1,141,142],[1122,2,1,142,143]]],[54,4,3,143,146,[[1125,3,2,143,145],[1126,1,1,145,146]]],[55,1,1,146,147,[[1129,1,1,146,147]]],[56,6,5,147,152,[[1132,6,5,147,152]]],[57,1,1,152,153,[[1140,1,1,152,153]]],[58,1,1,153,154,[[1147,1,1,153,154]]],[62,1,1,154,155,[[1164,1,1,154,155]]],[63,2,2,155,157,[[1165,2,2,155,157]]],[64,1,1,157,158,[[1166,1,1,157,158]]],[65,14,11,158,169,[[1168,3,3,158,161],[1169,1,1,161,162],[1170,1,1,162,163],[1180,1,1,163,164],[1183,2,2,164,166],[1184,5,2,166,168],[1187,1,1,168,169]]]],[23218,23260,23263,23264,23286,23288,23300,23305,23358,23364,23381,23384,23480,23482,23483,23484,23536,23601,23661,23689,23690,23691,23694,23704,23735,23736,23744,23749,23753,23756,23759,23789,23806,23831,23849,24052,24071,24087,24088,24089,24265,24269,24271,24383,24405,24425,24429,24430,24543,24563,24581,24583,24585,24616,24668,24784,24785,24790,24896,24906,24928,25047,25069,25127,25130,25131,25209,25235,25284,25334,25358,25362,25376,25384,25398,25412,25440,25518,25562,25563,25565,25567,25617,25699,25716,25729,25775,25781,25875,25898,25978,26094,26123,26125,26127,26131,26166,26182,26220,26222,26224,26287,26466,26545,26563,26564,26667,26668,26764,26780,26815,26819,26901,26916,27002,27119,27196,27198,27221,27222,27233,27265,27291,27292,27501,27567,27687,27714,27752,27783,27837,27839,27879,28172,28270,28312,28900,29031,29110,29340,29714,29745,29761,29814,29815,29834,29897,29946,29949,29954,29957,29959,30097,30311,30650,30671,30672,30681,30722,30727,30733,30764,30769,30941,30976,30982,31015,31016,31062]]],["thine",[1,1,[[42,1,1,0,1,[[1013,1,1,0,1]]]],[26768]]],["thou",[10,10,[[39,3,3,0,3,[[945,1,1,0,1],[950,2,2,1,3]]],[40,2,2,3,5,[[960,1,1,3,4],[966,1,1,4,5]]],[41,5,5,5,10,[[973,1,1,5,6],[982,1,1,6,7],[986,2,2,7,9],[990,1,1,9,10]]]],[23725,23888,23889,24361,24609,24907,25399,25563,25567,25710]]],["thy",[5,5,[[40,2,2,0,2,[[958,1,1,0,1],[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[44,1,1,3,4,[[1054,1,1,3,4]]],[57,1,1,4,5,[[1143,1,1,4,5]]]],[24278,24373,25275,28162,30190]]]]},{"k":"G4672","v":[["*",[12,10,[[39,5,4,0,4,[[929,2,2,0,2],[934,1,1,2,3],[940,2,1,3,4]]],[41,3,2,4,6,[[983,2,1,4,5],[984,1,1,5,6]]],[42,1,1,6,7,[[1006,1,1,6,7]]],[43,3,3,7,10,[[1020,1,1,7,8],[1022,1,1,8,9],[1024,1,1,9,10]]]],[23150,23151,23311,23531,25436,25486,26504,27007,27071,27163]]],["Solomon",[9,7,[[39,5,4,0,4,[[929,2,2,0,2],[934,1,1,2,3],[940,2,1,3,4]]],[41,3,2,4,6,[[983,2,1,4,5],[984,1,1,5,6]]],[43,1,1,6,7,[[1024,1,1,6,7]]]],[23150,23151,23311,23531,25436,25486,27163]]],["Solomon's",[3,3,[[42,1,1,0,1,[[1006,1,1,0,1]]],[43,2,2,1,3,[[1020,1,1,1,2],[1022,1,1,2,3]]]],[26504,27007,27071]]]]},{"k":"G4673","v":[["bier",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25209]]]]},{"k":"G4674","v":[["*",[25,22,[[39,8,6,0,6,[[935,4,2,0,2],[941,1,1,2,3],[948,1,1,3,4],[952,1,1,4,5],[953,1,1,5,6]]],[40,1,1,6,7,[[961,1,1,6,7]]],[41,4,4,7,11,[[977,1,1,7,8],[978,1,1,8,9],[987,1,1,9,10],[994,1,1,10,11]]],[42,6,5,11,16,[[1000,1,1,11,12],[1013,4,3,12,15],[1014,1,1,15,16]]],[43,3,3,16,19,[[1022,1,1,16,17],[1041,2,2,17,19]]],[45,2,2,19,21,[[1069,1,1,19,20],[1075,1,1,20,21]]],[56,1,1,21,22,[[1132,1,1,21,22]]]],[23319,23338,23566,23806,23960,24033,24383,25140,25176,25619,25906,26198,26765,26769,26776,26820,27063,27771,27773,28538,28694,29952]]],["+",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24383]]],["goods",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25176]]],["own",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]]],[23319,26820,27063]]],["thine",[8,7,[[39,2,2,0,2,[[948,1,1,0,1],[953,1,1,1,2]]],[41,3,3,2,5,[[977,1,1,2,3],[987,1,1,3,4],[994,1,1,4,5]]],[42,3,2,5,7,[[1013,3,2,5,7]]]],[23806,24033,25140,25619,25906,26765,26769]]],["thy",[12,10,[[39,5,3,0,3,[[935,3,1,0,1],[941,1,1,1,2],[952,1,1,2,3]]],[42,2,2,3,5,[[1000,1,1,3,4],[1013,1,1,4,5]]],[43,2,2,5,7,[[1041,2,2,5,7]]],[45,2,2,7,9,[[1069,1,1,7,8],[1075,1,1,8,9]]],[56,1,1,9,10,[[1132,1,1,9,10]]]],[23338,23566,23960,26198,26776,27771,27773,28538,28694,29952]]]]},{"k":"G4675","v":[["*",[495,359,[[39,114,71,0,71,[[929,1,1,0,1],[930,1,1,1,2],[931,1,1,2,3],[932,4,3,3,6],[933,22,11,6,17],[934,22,11,17,28],[935,6,3,28,31],[937,6,5,31,36],[939,4,2,36,38],[940,7,5,38,43],[943,3,3,43,46],[945,2,2,46,48],[946,11,5,48,53],[947,3,2,53,55],[948,3,2,55,57],[949,2,2,57,59],[950,7,3,59,62],[951,1,1,62,63],[953,3,3,63,66],[954,4,4,66,70],[955,1,1,70,71]]],[40,42,29,71,100,[[957,4,2,71,73],[958,4,3,73,76],[959,3,2,76,78],[961,4,3,78,81],[962,1,1,81,82],[963,4,3,82,85],[965,5,5,85,90],[966,5,3,90,93],[967,1,1,93,94],[968,8,3,94,97],[970,2,2,97,99],[971,1,1,99,100]]],[41,116,82,100,182,[[973,9,8,100,108],[974,5,4,108,112],[976,6,6,112,118],[977,6,5,118,123],[978,8,4,123,127],[979,6,4,127,131],[980,6,5,131,136],[981,4,4,136,140],[982,8,3,140,143],[983,7,3,143,146],[984,3,2,146,148],[985,3,3,148,151],[986,4,2,151,153],[987,10,7,153,160],[988,6,4,160,164],[989,2,2,164,166],[990,3,2,166,168],[991,12,9,168,177],[992,2,1,177,178],[994,4,2,178,180],[995,2,2,180,182]]],[42,40,37,182,219,[[998,1,1,182,183],[999,1,1,183,184],[1000,5,5,184,189],[1001,3,3,189,192],[1003,1,1,192,193],[1004,3,3,193,196],[1005,4,4,196,200],[1007,1,1,200,201],[1008,2,2,201,203],[1009,2,2,203,205],[1013,11,9,205,214],[1014,1,1,214,215],[1015,2,2,215,217],[1016,2,1,217,218],[1017,1,1,218,219]]],[43,63,52,219,271,[[1019,4,3,219,222],[1020,1,1,222,223],[1021,8,5,223,228],[1022,3,3,228,231],[1024,4,3,231,234],[1025,5,4,234,238],[1026,2,2,238,240],[1027,5,3,240,243],[1028,1,1,243,244],[1029,2,1,244,245],[1030,1,1,245,246],[1031,1,1,246,247],[1033,1,1,247,248],[1034,2,2,248,250],[1035,1,1,250,251],[1038,3,3,251,254],[1039,3,3,254,257],[1040,5,4,257,261],[1041,3,3,261,264],[1042,1,1,264,265],[1043,3,3,265,268],[1044,1,1,268,269],[1045,3,2,269,271]]],[44,22,16,271,287,[[1047,2,2,271,273],[1048,1,1,273,274],[1049,1,1,274,275],[1053,1,1,275,276],[1055,6,3,276,279],[1056,3,2,279,281],[1057,1,1,281,282],[1058,1,1,282,283],[1059,5,3,283,286],[1060,1,1,286,287]]],[45,3,2,287,289,[[1073,1,1,287,288],[1076,2,1,288,289]]],[46,1,1,289,290,[[1083,1,1,289,290]]],[47,2,2,290,292,[[1093,1,1,290,291],[1095,1,1,291,292]]],[48,1,1,292,293,[[1102,1,1,292,293]]],[53,6,5,293,298,[[1122,3,3,293,296],[1123,2,1,296,297],[1124,1,1,297,298]]],[54,6,5,298,303,[[1125,4,3,298,301],[1128,2,2,301,303]]],[55,1,1,303,304,[[1130,1,1,303,304]]],[56,10,9,304,313,[[1132,10,9,304,313]]],[57,12,9,313,322,[[1133,8,5,313,318],[1134,2,2,318,320],[1142,2,2,320,322]]],[58,3,2,322,324,[[1147,3,2,322,324]]],[62,2,2,324,326,[[1164,2,2,324,326]]],[63,3,3,326,329,[[1165,3,3,326,329]]],[65,48,30,329,359,[[1168,13,8,329,337],[1169,9,7,337,344],[1170,1,1,344,345],[1171,1,1,345,346],[1176,2,1,346,347],[1177,4,2,347,349],[1180,2,2,349,351],[1181,5,2,351,353],[1182,1,1,353,354],[1184,6,3,354,357],[1185,2,1,357,358],[1188,2,1,358,359]]]],[23164,23175,23206,23215,23216,23219,23257,23258,23259,23263,23264,23267,23270,23273,23274,23276,23277,23284,23285,23286,23288,23291,23292,23295,23299,23300,23304,23305,23319,23320,23321,23381,23385,23393,23397,23401,23469,23485,23491,23502,23526,23527,23536,23635,23637,23661,23716,23727,23735,23736,23742,23743,23760,23781,23783,23807,23813,23831,23845,23909,23911,23916,23955,24029,24031,24033,24096,24106,24116,24127,24142,24217,24259,24265,24269,24271,24293,24320,24383,24398,24399,24425,24468,24473,24492,24556,24576,24581,24583,24585,24607,24625,24640,24654,24703,24704,24709,24814,24824,24830,24906,24921,24928,24929,24931,24935,24937,24954,25002,25003,25005,25021,25070,25071,25073,25074,25075,25086,25112,25121,25127,25130,25131,25156,25175,25187,25188,25222,25239,25243,25245,25265,25273,25284,25293,25294,25339,25341,25342,25350,25380,25384,25390,25407,25439,25441,25479,25517,25530,25544,25552,25561,25565,25606,25607,25609,25615,25617,25618,25620,25622,25626,25627,25645,25654,25670,25708,25730,25736,25747,25749,25751,25753,25770,25773,25774,25775,25822,25896,25897,25977,25981,26112,26146,26172,26174,26206,26207,26209,26218,26221,26222,26331,26391,26394,26400,26450,26457,26466,26477,26546,26595,26608,26667,26668,26760,26765,26766,26767,26770,26771,26773,26776,26785,26796,26851,26852,26894,26916,26976,26977,26984,27021,27047,27049,27050,27051,27052,27062,27063,27068,27119,27148,27149,27196,27197,27198,27210,27229,27230,27263,27281,27290,27321,27345,27397,27424,27514,27542,27555,27567,27685,27688,27703,27720,27722,27724,27739,27755,27764,27769,27771,27780,27788,27822,27825,27826,27839,27879,27920,27921,27967,27987,27995,28040,28152,28194,28196,28197,28212,28230,28265,28275,28290,28295,28301,28312,28655,28773,28900,29118,29176,29339,29759,29762,29763,29786,29809,29812,29813,29814,29875,29892,29923,29940,29942,29943,29944,29945,29951,29952,29958,29959,29971,29972,29973,29975,29976,29984,29989,30140,30142,30301,30311,30649,30658,30660,30661,30664,30719,30721,30722,30726,30730,30731,30736,30737,30747,30748,30754,30755,30757,30761,30764,30779,30788,30870,30889,30890,30941,30944,30949,30950,30961,31003,31007,31016,31027,31089]]],["+",[17,17,[[39,3,3,0,3,[[939,1,1,0,1],[947,1,1,1,2],[951,1,1,2,3]]],[40,2,2,3,5,[[961,1,1,3,4],[968,1,1,4,5]]],[41,4,4,5,9,[[982,1,1,5,6],[985,2,2,6,8],[987,1,1,8,9]]],[42,1,1,9,10,[[1009,1,1,9,10]]],[43,2,2,10,12,[[1019,1,1,10,11],[1029,1,1,11,12]]],[44,1,1,12,13,[[1053,1,1,12,13]]],[53,1,1,13,14,[[1123,1,1,13,14]]],[56,1,1,14,15,[[1132,1,1,14,15]]],[57,1,1,15,16,[[1133,1,1,15,16]]],[65,1,1,16,17,[[1176,1,1,16,17]]]],[23485,23783,23955,24383,24709,25384,25544,25552,25609,26667,26984,27345,28152,29786,29951,29976,30870]]],["Thy",[17,15,[[39,2,1,0,1,[[934,2,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,8,7,2,9,[[977,1,1,2,3],[979,2,2,3,5],[980,2,2,5,7],[983,2,1,7,8],[987,1,1,8,9]]],[42,3,3,9,12,[[1000,2,2,9,11],[1007,1,1,11,12]]],[43,2,2,12,14,[[1025,1,1,12,13],[1027,1,1,13,14]]],[57,1,1,14,15,[[1133,1,1,14,15]]]],[23292,24399,25130,25243,25245,25265,25294,25407,25615,26207,26209,26546,27196,27263,29971]]],["own",[6,5,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,4,3,1,4,[[978,2,1,1,2],[980,1,1,2,3],[991,1,1,3,4]]],[42,1,1,4,5,[[1013,1,1,4,5]]]],[23321,25188,25284,25753,26770]]],["thee",[76,73,[[39,19,18,0,18,[[930,1,1,0,1],[931,1,1,1,2],[932,1,1,2,3],[933,4,4,3,7],[934,1,1,7,8],[939,1,1,8,9],[940,1,1,9,10],[945,1,1,10,11],[946,5,4,11,15],[949,1,1,15,16],[954,1,1,16,17],[955,1,1,17,18]]],[40,4,4,18,22,[[957,1,1,18,19],[967,1,1,19,20],[970,1,1,20,21],[971,1,1,21,22]]],[41,11,11,22,33,[[973,2,2,22,24],[976,1,1,24,25],[979,1,1,25,26],[980,1,1,26,27],[981,1,1,27,28],[984,1,1,28,29],[987,1,1,29,30],[988,1,1,30,31],[994,2,2,31,33]]],[42,4,4,33,37,[[999,1,1,33,34],[1005,1,1,34,35],[1013,2,2,35,37]]],[43,19,18,37,55,[[1025,1,1,37,38],[1027,1,1,38,39],[1034,1,1,39,40],[1035,1,1,40,41],[1038,3,3,41,44],[1040,3,3,44,47],[1041,2,2,47,49],[1042,1,1,49,50],[1043,2,2,50,52],[1044,1,1,52,53],[1045,3,2,53,55]]],[44,2,2,55,57,[[1055,1,1,55,56],[1056,1,1,56,57]]],[45,1,1,57,58,[[1073,1,1,57,58]]],[46,1,1,58,59,[[1083,1,1,58,59]]],[53,2,2,59,61,[[1122,1,1,59,60],[1124,1,1,60,61]]],[54,1,1,61,62,[[1125,1,1,61,62]]],[55,1,1,62,63,[[1130,1,1,62,63]]],[56,3,3,63,66,[[1132,3,3,63,66]]],[63,1,1,66,67,[[1165,1,1,66,67]]],[65,7,6,67,73,[[1168,3,3,67,70],[1169,1,1,70,71],[1181,1,1,71,72],[1184,2,1,72,73]]]],[23175,23206,23215,23257,23263,23264,23276,23284,23469,23527,23727,23735,23736,23742,23743,23845,24116,24142,24217,24654,24814,24830,24921,24928,25073,25222,25273,25339,25479,25606,25622,25896,25897,26146,26477,26766,26767,27210,27281,27555,27567,27685,27688,27703,27755,27764,27769,27771,27788,27822,27825,27826,27879,27920,27921,28196,28230,28655,28900,29763,29809,29812,29923,29942,29945,29958,30661,30721,30731,30737,30754,30950,31007]]],["thine",[51,50,[[39,15,14,0,14,[[933,3,3,0,3],[934,5,5,3,8],[935,2,1,8,9],[937,1,1,9,10],[940,1,1,10,11],[946,1,1,11,12],[948,1,1,12,13],[950,1,1,13,14]]],[40,4,4,14,18,[[958,1,1,14,15],[959,1,1,15,16],[965,1,1,16,17],[968,1,1,17,18]]],[41,10,10,18,28,[[976,1,1,18,19],[977,1,1,19,20],[978,1,1,20,21],[979,1,1,21,22],[983,1,1,22,23],[984,1,1,23,24],[985,1,1,24,25],[991,2,2,25,27],[992,1,1,27,28]]],[42,5,5,28,33,[[998,1,1,28,29],[1004,1,1,29,30],[1005,3,3,30,33]]],[43,9,9,33,42,[[1019,1,1,33,34],[1021,1,1,34,35],[1022,2,2,35,37],[1025,1,1,37,38],[1027,2,2,38,40],[1030,1,1,40,41],[1040,1,1,41,42]]],[44,4,4,42,46,[[1055,2,2,42,44],[1056,1,1,44,45],[1057,1,1,45,46]]],[53,1,1,46,47,[[1123,1,1,46,47]]],[57,2,2,47,49,[[1133,2,2,47,49]]],[65,1,1,49,50,[[1169,1,1,49,50]]]],[23259,23267,23277,23286,23295,23299,23304,23305,23320,23385,23502,23736,23807,23916,24271,24293,24585,24709,25070,25131,25188,25239,25439,25517,25530,25773,25774,25822,26112,26391,26450,26457,26466,26976,27052,27062,27063,27198,27263,27290,27397,27769,28194,28197,28212,28265,29786,29973,29976,30764]]],["thou",[4,4,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]],[43,2,2,2,4,[[1034,1,1,2,3],[1041,1,1,3,4]]]],[23285,25561,27542,27780]]],["thy",[324,250,[[39,73,51,0,51,[[929,1,1,0,1],[932,3,3,1,4],[933,15,8,4,12],[934,13,8,12,20],[935,3,3,20,23],[937,5,5,23,28],[939,2,1,28,29],[940,5,3,29,32],[943,3,3,32,35],[945,1,1,35,36],[946,5,3,36,39],[947,2,1,39,40],[948,2,1,40,41],[949,1,1,41,42],[950,6,3,42,45],[953,3,3,45,48],[954,3,3,48,51]]],[40,31,21,51,72,[[957,3,2,51,53],[958,3,3,53,56],[959,2,1,56,57],[961,2,1,57,58],[962,1,1,58,59],[963,4,3,59,62],[965,4,4,62,66],[966,5,3,66,69],[968,6,2,69,71],[970,1,1,71,72]]],[41,78,60,72,132,[[973,7,6,72,78],[974,5,4,78,82],[976,4,4,82,86],[977,4,4,86,90],[978,5,4,90,94],[979,2,1,94,95],[980,2,2,95,97],[981,3,3,97,100],[982,7,2,100,102],[983,4,3,102,105],[984,1,1,105,106],[986,3,1,106,107],[987,7,6,107,113],[988,5,4,113,117],[989,2,2,117,119],[990,3,2,119,121],[991,9,7,121,128],[992,1,1,128,129],[994,2,1,129,130],[995,2,2,130,132]]],[42,26,23,132,155,[[1000,3,3,132,135],[1001,3,3,135,138],[1003,1,1,138,139],[1004,2,2,139,141],[1008,2,2,141,143],[1009,1,1,143,144],[1013,8,6,144,150],[1014,1,1,150,151],[1015,2,2,151,153],[1016,2,1,153,154],[1017,1,1,154,155]]],[43,29,26,155,181,[[1019,2,2,155,157],[1020,1,1,157,158],[1021,7,5,158,163],[1022,1,1,163,164],[1024,4,3,164,167],[1025,2,2,167,169],[1026,2,2,169,171],[1027,1,1,171,172],[1028,1,1,172,173],[1029,1,1,173,174],[1031,1,1,174,175],[1033,1,1,175,176],[1039,3,3,176,179],[1040,1,1,179,180],[1043,1,1,180,181]]],[44,15,12,181,193,[[1047,2,2,181,183],[1048,1,1,183,184],[1049,1,1,184,185],[1055,3,2,185,187],[1056,1,1,187,188],[1058,1,1,188,189],[1059,5,3,189,192],[1060,1,1,192,193]]],[45,2,1,193,194,[[1076,2,1,193,194]]],[47,2,2,194,196,[[1093,1,1,194,195],[1095,1,1,195,196]]],[48,1,1,196,197,[[1102,1,1,196,197]]],[53,2,2,197,199,[[1122,2,2,197,199]]],[54,5,4,199,203,[[1125,3,2,199,201],[1128,2,2,201,203]]],[56,6,6,203,209,[[1132,6,6,203,209]]],[57,8,7,209,216,[[1133,4,3,209,212],[1134,2,2,212,214],[1142,2,2,214,216]]],[58,3,2,216,218,[[1147,3,2,216,218]]],[62,2,2,218,220,[[1164,2,2,218,220]]],[63,2,2,220,222,[[1165,2,2,220,222]]],[65,39,28,222,250,[[1168,10,6,222,228],[1169,7,7,228,235],[1170,1,1,235,236],[1171,1,1,236,237],[1176,1,1,237,238],[1177,4,2,238,240],[1180,2,2,240,242],[1181,4,2,242,244],[1182,1,1,244,245],[1184,4,3,245,248],[1185,2,1,248,249],[1188,2,1,249,250]]]],[23164,23215,23216,23219,23257,23258,23263,23264,23270,23273,23274,23277,23285,23286,23288,23291,23299,23300,23304,23305,23319,23320,23321,23381,23385,23393,23397,23401,23469,23491,23526,23536,23635,23637,23661,23716,23735,23742,23760,23781,23813,23831,23909,23911,23916,24029,24031,24033,24096,24106,24127,24217,24259,24265,24269,24271,24320,24398,24425,24468,24473,24492,24556,24576,24581,24583,24607,24625,24640,24703,24704,24824,24906,24929,24931,24935,24937,24954,25002,25003,25005,25021,25071,25074,25075,25086,25112,25121,25127,25131,25156,25175,25187,25188,25222,25265,25293,25341,25342,25350,25380,25390,25407,25439,25441,25479,25565,25607,25609,25615,25617,25618,25620,25622,25626,25627,25645,25654,25670,25708,25730,25736,25747,25749,25751,25770,25773,25775,25822,25896,25977,25981,26172,26174,26206,26218,26221,26222,26331,26394,26400,26595,26608,26668,26760,26765,26771,26773,26776,26785,26796,26851,26852,26894,26916,26977,26984,27021,27047,27049,27050,27051,27052,27068,27119,27148,27149,27197,27198,27229,27230,27290,27321,27345,27424,27514,27720,27722,27724,27739,27839,27967,27987,27995,28040,28196,28197,28212,28275,28290,28295,28301,28312,28773,29118,29176,29339,29759,29762,29813,29814,29875,29892,29940,29943,29944,29945,29952,29959,29971,29972,29975,29984,29989,30140,30142,30301,30311,30649,30658,30660,30664,30719,30721,30722,30726,30730,30736,30747,30748,30754,30755,30757,30761,30764,30779,30788,30870,30889,30890,30941,30944,30949,30950,30961,31003,31007,31016,31027,31089]]]]},{"k":"G4676","v":[["*",[4,4,[[41,1,1,0,1,[[991,1,1,0,1]]],[42,2,2,1,3,[[1007,1,1,1,2],[1016,1,1,2,3]]],[43,1,1,3,4,[[1036,1,1,3,4]]]],[25751,26567,26874,27597]]],["handkerchiefs",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27597]]],["napkin",[3,3,[[41,1,1,0,1,[[991,1,1,0,1]]],[42,2,2,1,3,[[1007,1,1,1,2],[1016,1,1,2,3]]]],[25751,26567,26874]]]]},{"k":"G4677","v":[["Susanna",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25248]]]]},{"k":"G4678","v":[["wisdom",[51,49,[[39,3,3,0,3,[[939,1,1,0,1],[940,1,1,1,2],[941,1,1,2,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[41,6,6,4,10,[[974,2,2,4,6],[979,1,1,6,7],[983,2,2,7,9],[993,1,1,9,10]]],[43,4,4,10,14,[[1023,2,2,10,12],[1024,2,2,12,14]]],[44,1,1,14,15,[[1056,1,1,14,15]]],[45,17,15,15,30,[[1062,8,7,15,22],[1063,7,6,22,28],[1064,1,1,28,29],[1073,1,1,29,30]]],[46,1,1,30,31,[[1078,1,1,30,31]]],[48,3,3,31,34,[[1097,2,2,31,33],[1099,1,1,33,34]]],[50,6,6,34,40,[[1107,2,2,34,36],[1108,2,2,36,38],[1109,1,1,38,39],[1110,1,1,39,40]]],[58,4,4,40,44,[[1146,1,1,40,41],[1148,3,3,41,44]]],[60,1,1,44,45,[[1158,1,1,44,45]]],[65,4,4,45,49,[[1171,1,1,45,46],[1173,1,1,46,47],[1179,1,1,47,48],[1183,1,1,48,49]]]],[23478,23531,23593,24409,25013,25025,25230,25436,25454,25841,27104,27111,27126,27138,28242,28380,28382,28383,28384,28385,28387,28393,28395,28398,28399,28400,28401,28407,28429,28642,28812,29214,29223,29261,29474,29493,29497,29517,29533,29547,30271,30332,30334,30336,30537,30791,30822,30926,30984]]]]},{"k":"G4679","v":[["*",[2,2,[[54,1,1,0,1,[[1127,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[29868,30495]]],["+",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29868]]],["devised",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30495]]]]},{"k":"G4680","v":[["*",[22,21,[[39,2,2,0,2,[[939,1,1,0,1],[951,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[44,4,4,3,7,[[1046,2,2,3,5],[1061,2,2,5,7]]],[45,11,10,7,17,[[1062,5,5,7,12],[1064,5,4,12,16],[1067,1,1,16,17]]],[48,1,1,17,18,[[1101,1,1,17,18]]],[53,1,1,18,19,[[1119,1,1,18,19]]],[58,1,1,19,20,[[1148,1,1,19,20]]],[64,1,1,20,21,[[1166,1,1,20,21]]]],[23484,23952,25384,27944,27952,28355,28363,28382,28383,28388,28389,28390,28420,28428,28429,28430,28472,29319,29713,30332,30697]]],["+",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28355]]],["man",[2,2,[[45,1,1,0,1,[[1067,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[28472,30332]]],["men",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]]],[23952,28389]]],["wise",[16,15,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[44,3,3,2,5,[[1046,2,2,2,4],[1061,1,1,4,5]]],[45,8,7,5,12,[[1062,3,3,5,8],[1064,5,4,8,12]]],[48,1,1,12,13,[[1101,1,1,12,13]]],[53,1,1,13,14,[[1119,1,1,13,14]]],[64,1,1,14,15,[[1166,1,1,14,15]]]],[23484,25384,27944,27952,28363,28382,28383,28390,28420,28428,28429,28430,29319,29713,30697]]],["wiser",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28388]]]]},{"k":"G4681","v":[["Spain",[2,2,[[44,2,2,0,2,[[1060,2,2,0,2]]]],[28327,28331]]]]},{"k":"G4682","v":[["*",[4,4,[[40,3,3,0,3,[[957,1,1,0,1],[965,2,2,1,3]]],[41,1,1,3,4,[[981,1,1,3,4]]]],[24241,24558,24564,25340]]],["rent",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24564]]],["tare",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24558]]],["teareth",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25340]]],["torn",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24241]]]]},{"k":"G4683","v":[["*",[2,2,[[41,2,2,0,2,[[974,2,2,0,2]]]],[24980,24985]]],["+",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24980]]],["clothes",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24985]]]]},{"k":"G4684","v":[["*",[2,2,[[53,1,1,0,1,[[1123,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[29769,30359]]],["pleasure",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29769]]],["wanton",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30359]]]]},{"k":"G4685","v":[["*",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,1,1,1,2,[[1033,1,1,1,2]]]],[24801,27510]]],["drew",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24801]]],["out",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27510]]]]},{"k":"G4686","v":[["band",[7,7,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,2,2,2,4,[[1014,2,2,2,4]]],[43,3,3,4,7,[[1027,1,1,4,5],[1038,1,1,5,6],[1044,1,1,6,7]]]],[24156,24842,26788,26797,27260,27695,27856]]]]},{"k":"G4687","v":[["*",[53,42,[[39,18,16,0,16,[[934,1,1,0,1],[941,15,13,1,14],[953,2,2,14,16]]],[40,12,9,16,25,[[960,12,9,16,25]]],[41,6,4,25,29,[[980,3,1,25,26],[984,1,1,26,27],[991,2,2,27,29]]],[42,2,2,29,31,[[1000,2,2,29,31]]],[45,8,6,31,37,[[1070,1,1,31,32],[1076,7,5,32,37]]],[46,3,2,37,39,[[1086,3,2,37,39]]],[47,3,2,39,41,[[1096,3,2,39,41]]],[58,1,1,41,42,[[1148,1,1,41,42]]]],[23308,23542,23543,23557,23558,23559,23561,23562,23563,23564,23566,23570,23576,23578,24032,24034,24326,24327,24337,24338,24339,24341,24343,24354,24355,25250,25483,25752,25753,26192,26193,28551,28754,28755,28760,28761,28762,28962,28966,29195,29196,30337]]],["+",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]]],[23561,24339]]],["seed",[3,3,[[39,3,3,0,3,[[941,3,3,0,3]]]],[23558,23559,23562]]],["sow",[8,8,[[39,3,3,0,3,[[934,1,1,0,1],[941,2,2,1,3]]],[40,1,1,3,4,[[960,1,1,3,4]]],[41,4,4,4,8,[[980,1,1,4,5],[984,1,1,5,6],[991,2,2,6,8]]]],[23308,23542,23566,24326,25250,25483,25752,25753]]],["sowed",[8,8,[[39,6,6,0,6,[[941,5,5,0,5],[953,1,1,5,6]]],[40,1,1,6,7,[[960,1,1,6,7]]],[41,1,1,7,8,[[980,1,1,7,8]]]],[23543,23563,23564,23570,23578,24034,24327,25250]]],["sower",[6,6,[[39,2,2,0,2,[[941,2,2,0,2]]],[40,2,2,2,4,[[960,2,2,2,4]]],[41,1,1,4,5,[[980,1,1,4,5]]],[46,1,1,5,6,[[1086,1,1,5,6]]]],[23542,23557,24326,24337,25250,28966]]],["sowest",[3,2,[[45,3,2,0,2,[[1076,3,2,0,2]]]],[28754,28755]]],["soweth",[9,7,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[42,2,2,2,4,[[1000,2,2,2,4]]],[46,2,1,4,5,[[1086,2,1,4,5]]],[47,3,2,5,7,[[1096,3,2,5,7]]]],[23576,24337,26192,26193,28962,29195,29196]]],["sown",[14,12,[[39,2,2,0,2,[[941,1,1,0,1],[953,1,1,1,2]]],[40,6,5,2,7,[[960,6,5,2,7]]],[45,5,4,7,11,[[1070,1,1,7,8],[1076,4,3,8,11]]],[58,1,1,11,12,[[1148,1,1,11,12]]]],[23558,24032,24338,24341,24343,24354,24355,28551,28760,28761,28762,30337]]]]},{"k":"G4688","v":[["executioner",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24434]]]]},{"k":"G4689","v":[["*",[2,2,[[49,1,1,0,1,[[1104,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]]],[29408,29876]]],["+",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29876]]],["offered",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29408]]]]},{"k":"G4690","v":[["*",[44,41,[[39,7,7,0,7,[[941,5,5,0,5],[950,2,2,5,7]]],[40,5,5,7,12,[[960,1,1,7,8],[968,4,4,8,12]]],[41,2,2,12,14,[[973,1,1,12,13],[992,1,1,13,14]]],[42,3,3,14,17,[[1003,1,1,14,15],[1004,2,2,15,17]]],[43,4,4,17,21,[[1020,1,1,17,18],[1024,2,2,18,20],[1030,1,1,20,21]]],[44,9,8,21,29,[[1046,1,1,21,22],[1049,3,3,22,25],[1054,4,3,25,28],[1056,1,1,28,29]]],[45,1,1,29,30,[[1076,1,1,29,30]]],[46,2,2,30,32,[[1086,1,1,30,31],[1088,1,1,31,32]]],[47,5,3,32,35,[[1093,5,3,32,35]]],[54,1,1,35,36,[[1126,1,1,35,36]]],[57,3,3,36,39,[[1134,1,1,36,37],[1143,2,2,37,39]]],[61,1,1,39,40,[[1161,1,1,39,40]]],[65,1,1,40,41,[[1178,1,1,40,41]]]],[23563,23566,23571,23576,23577,23896,23897,24354,24692,24693,24694,24695,24948,25807,26370,26414,26418,27021,27121,27122,27385,27933,28035,28038,28040,28162,28163,28184,28210,28756,28966,29011,29118,29121,29131,29835,29993,30183,30190,30588,30908]]],["issue",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23897]]],["seed",[40,38,[[39,5,5,0,5,[[941,4,4,0,4],[950,1,1,4,5]]],[40,4,4,5,9,[[968,4,4,5,9]]],[41,2,2,9,11,[[973,1,1,9,10],[992,1,1,10,11]]],[42,3,3,11,14,[[1003,1,1,11,12],[1004,2,2,12,14]]],[43,4,4,14,18,[[1020,1,1,14,15],[1024,2,2,15,17],[1030,1,1,17,18]]],[44,9,8,18,26,[[1046,1,1,18,19],[1049,3,3,19,22],[1054,4,3,22,25],[1056,1,1,25,26]]],[45,1,1,26,27,[[1076,1,1,26,27]]],[46,2,2,27,29,[[1086,1,1,27,28],[1088,1,1,28,29]]],[47,4,3,29,32,[[1093,4,3,29,32]]],[54,1,1,32,33,[[1126,1,1,32,33]]],[57,3,3,33,36,[[1134,1,1,33,34],[1143,2,2,34,36]]],[61,1,1,36,37,[[1161,1,1,36,37]]],[65,1,1,37,38,[[1178,1,1,37,38]]]],[23563,23566,23576,23577,23896,24692,24693,24694,24695,24948,25807,26370,26414,26418,27021,27121,27122,27385,27933,28035,28038,28040,28162,28163,28184,28210,28756,28966,29011,29118,29121,29131,29835,29993,30183,30190,30588,30908]]],["seeds",[3,3,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[47,1,1,2,3,[[1093,1,1,2,3]]]],[23571,24354,29118]]]]},{"k":"G4691","v":[["babbler",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27541]]]]},{"k":"G4692","v":[["*",[6,6,[[41,3,3,0,3,[[974,1,1,0,1],[991,2,2,1,3]]],[43,2,2,3,5,[[1037,1,1,3,4],[1039,1,1,4,5]]],[60,1,1,5,6,[[1158,1,1,5,6]]]],[24989,25736,25737,27642,27722,30534]]],["haste",[4,4,[[41,3,3,0,3,[[974,1,1,0,1],[991,2,2,1,3]]],[43,1,1,3,4,[[1039,1,1,3,4]]]],[24989,25736,25737,27722]]],["hasted",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27642]]],["hasting",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30534]]]]},{"k":"G4693","v":[["*",[6,6,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,1,1,2,3,[[991,1,1,2,3]]],[42,1,1,3,4,[[1007,1,1,3,4]]],[57,1,1,4,5,[[1143,1,1,4,5]]],[65,1,1,5,6,[[1172,1,1,5,6]]]],[23839,24657,25777,26561,30210,30808]]],["cave",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26561]]],["den",[3,3,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,1,1,2,3,[[991,1,1,2,3]]]],[23839,24657,25777]]],["dens",[2,2,[[57,1,1,0,1,[[1143,1,1,0,1]]],[65,1,1,1,2,[[1172,1,1,1,2]]]],[30210,30808]]]]},{"k":"G4694","v":[["spots",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30684]]]]},{"k":"G4695","v":[["*",[3,3,[[48,1,1,0,1,[[1101,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[29331,30325,30513]]],["Spots",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30513]]],["defileth",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30325]]],["spot",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29331]]]]},{"k":"G4696","v":[["spotted",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30695]]]]},{"k":"G4697","v":[["compassion",[12,12,[[39,5,5,0,5,[[937,1,1,0,1],[942,1,1,1,2],[943,1,1,2,3],[946,1,1,3,4],[948,1,1,4,5]]],[40,4,4,5,9,[[957,1,1,5,6],[962,1,1,6,7],[964,1,1,7,8],[965,1,1,8,9]]],[41,3,3,9,12,[[979,1,1,9,10],[982,1,1,10,11],[987,1,1,11,12]]]],[23415,23611,23665,23754,23826,24256,24441,24502,24560,25208,25396,25608]]]]},{"k":"G4698","v":[["*",[11,11,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]],[46,2,2,2,4,[[1083,1,1,2,3],[1084,1,1,3,4]]],[49,2,2,4,6,[[1103,1,1,4,5],[1104,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[56,3,3,7,10,[[1132,3,3,7,10]]],[61,1,1,10,11,[[1161,1,1,10,11]]]],[24971,26941,28910,28931,29369,29392,29529,29945,29950,29958,30596]]],["+",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24971]]],["affection",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28931]]],["bowels",[9,9,[[43,1,1,0,1,[[1018,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]],[49,2,2,2,4,[[1103,1,1,2,3],[1104,1,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]],[56,3,3,5,8,[[1132,3,3,5,8]]],[61,1,1,8,9,[[1161,1,1,8,9]]]],[26941,28910,29369,29392,29529,29945,29950,29958,30596]]]]},{"k":"G4699","v":[["*",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]]],[24177,24862,26854]]],["+",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24862]]],["spunge",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]]],[24177,26854]]]]},{"k":"G4700","v":[["ashes",[3,3,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[23480,25376,30118]]]]},{"k":"G4701","v":[["seed",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30397]]]]},{"k":"G4702","v":[["*",[3,3,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]]],[23490,24283,25147]]],["corn",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23490]]],["fields",[2,2,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]]],[24283,25147]]]]},{"k":"G4703","v":[["*",[5,5,[[40,2,2,0,2,[[960,2,2,0,2]]],[41,2,2,2,4,[[980,2,2,2,4]]],[46,1,1,4,5,[[1086,1,1,4,5]]]],[24349,24350,25250,25256,28966]]],["seed",[4,4,[[40,2,2,0,2,[[960,2,2,0,2]]],[41,2,2,2,4,[[980,2,2,2,4]]]],[24349,24350,25250,25256]]],["sown",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28966]]]]},{"k":"G4704","v":[["*",[11,11,[[47,1,1,0,1,[[1092,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]],[54,3,3,3,6,[[1126,1,1,3,4],[1128,2,2,4,6]]],[55,1,1,6,7,[[1131,1,1,6,7]]],[57,1,1,7,8,[[1136,1,1,7,8]]],[60,3,3,8,11,[[1156,2,2,8,10],[1158,1,1,10,11]]]],[29091,29275,29587,29842,29879,29891,29935,30025,30489,30494,30536]]],["Endeavouring",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29275]]],["Study",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29842]]],["diligence",[3,3,[[54,2,2,0,2,[[1128,2,2,0,2]]],[60,1,1,2,3,[[1156,1,1,2,3]]]],[29879,29891,30489]]],["diligent",[2,2,[[55,1,1,0,1,[[1131,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[29935,30536]]],["endeavour",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30494]]],["endeavoured",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29587]]],["forward",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29091]]],["labour",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30025]]]]},{"k":"G4705","v":[["diligent",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28954]]]]},{"k":"G4706","v":[["*",[2,2,[[46,1,1,0,1,[[1085,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]]],[28954,29826]]],["diligent",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28954]]],["diligently",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29826]]]]},{"k":"G4707","v":[["forward",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28949]]]]},{"k":"G4708","v":[["carefully",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29419]]]]},{"k":"G4709","v":[["*",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[25199,29936]]],["diligently",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29936]]],["instantly",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25199]]]]},{"k":"G4710","v":[["*",[12,12,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[44,2,2,2,4,[[1057,2,2,2,4]]],[46,5,5,4,9,[[1084,2,2,4,6],[1085,3,3,6,9]]],[57,1,1,9,10,[[1138,1,1,9,10]]],[60,1,1,10,11,[[1156,1,1,10,11]]],[64,1,1,11,12,[[1166,1,1,11,12]]]],[24432,24932,28253,28256,28927,28928,28939,28940,28948,30055,30484,30675]]],["business",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28256]]],["care",[2,2,[[46,2,2,0,2,[[1084,1,1,0,1],[1085,1,1,1,2]]]],[28928,28948]]],["carefulness",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28927]]],["diligence",[5,5,[[44,1,1,0,1,[[1057,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]],[60,1,1,3,4,[[1156,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[28253,28939,30055,30484,30675]]],["forwardness",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28940]]],["haste",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]]],[24432,24932]]]]},{"k":"G4711","v":[["*",[5,5,[[39,2,2,0,2,[[943,1,1,0,1],[944,1,1,1,2]]],[40,2,2,2,4,[[964,2,2,2,4]]],[43,1,1,4,5,[[1026,1,1,4,5]]]],[23670,23682,24508,24520,27241]]],["basket",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27241]]],["baskets",[4,4,[[39,2,2,0,2,[[943,1,1,0,1],[944,1,1,1,2]]],[40,2,2,2,4,[[964,2,2,2,4]]]],[23670,23682,24508,24520]]]]},{"k":"G4712","v":[["*",[6,6,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,2,2,1,3,[[1002,1,1,1,2],[1007,1,1,2,3]]],[45,1,1,3,4,[[1070,1,1,3,4]]],[65,2,2,4,6,[[1180,1,1,4,5],[1187,1,1,5,6]]]],[26004,26276,26541,28564,30946,31069]]],["furlongs",[5,5,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,2,2,1,3,[[1002,1,1,1,2],[1007,1,1,2,3]]],[65,2,2,3,5,[[1180,1,1,3,4],[1187,1,1,4,5]]]],[26004,26276,26541,30946,31069]]],["race",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28564]]]]},{"k":"G4713","v":[["pot",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30109]]]]},{"k":"G4714","v":[["*",[9,9,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,2,2,1,3,[[995,2,2,1,3]]],[43,5,5,3,8,[[1032,1,1,3,4],[1036,1,1,4,5],[1040,2,2,5,7],[1041,1,1,7,8]]],[57,1,1,8,9,[[1141,1,1,8,9]]]],[24833,25954,25960,27444,27625,27741,27744,27774,30113]]],["dissension",[3,3,[[43,3,3,0,3,[[1032,1,1,0,1],[1040,2,2,1,3]]]],[27444,27741,27744]]],["insurrection",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24833]]],["sedition",[3,3,[[41,2,2,0,2,[[995,2,2,0,2]]],[43,1,1,2,3,[[1041,1,1,2,3]]]],[25954,25960,27774]]],["standing",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30113]]],["uproar",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27625]]]]},{"k":"G4715","v":[["money",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23727]]]]},{"k":"G4716","v":[["cross",[28,28,[[39,5,5,0,5,[[938,1,1,0,1],[944,1,1,1,2],[955,3,3,2,5]]],[40,5,5,5,10,[[964,1,1,5,6],[966,1,1,6,7],[971,3,3,7,10]]],[41,3,3,10,13,[[981,1,1,10,11],[986,1,1,11,12],[995,1,1,12,13]]],[42,4,4,13,17,[[1015,4,4,13,17]]],[45,2,2,17,19,[[1062,2,2,17,19]]],[47,3,3,19,22,[[1095,1,1,19,20],[1096,2,2,20,22]]],[48,1,1,22,23,[[1098,1,1,22,23]]],[49,2,2,23,25,[[1104,1,1,23,24],[1105,1,1,24,25]]],[50,2,2,25,27,[[1107,1,1,25,26],[1108,1,1,26,27]]],[57,1,1,27,28,[[1144,1,1,27,28]]]],[23455,23696,24161,24169,24171,24534,24609,24847,24856,24858,25324,25580,25961,26842,26844,26850,26856,28380,28381,29173,29200,29202,29245,29399,29439,29485,29508,30214]]]]},{"k":"G4717","v":[["*",[46,42,[[39,10,10,0,10,[[948,1,1,0,1],[951,1,1,1,2],[954,1,1,2,3],[955,6,6,3,9],[956,1,1,9,10]]],[40,8,8,10,18,[[971,7,7,10,17],[972,1,1,17,18]]],[41,6,5,18,23,[[995,4,3,18,21],[996,2,2,21,23]]],[42,11,8,23,31,[[1015,11,8,23,31]]],[43,2,2,31,33,[[1019,1,1,31,32],[1021,1,1,32,33]]],[45,4,4,33,37,[[1062,2,2,33,35],[1063,2,2,35,37]]],[46,1,1,37,38,[[1090,1,1,37,38]]],[47,3,3,38,41,[[1093,1,1,38,39],[1095,1,1,39,40],[1096,1,1,40,41]]],[65,1,1,41,42,[[1177,1,1,41,42]]]],[23811,23952,24056,24151,24152,24155,24160,24164,24167,24200,24839,24840,24841,24846,24850,24851,24853,24879,25956,25958,25968,25998,26011,26831,26835,26840,26841,26843,26845,26848,26866,26985,27032,28376,28386,28396,28402,29047,29103,29186,29202,30880]]],["Crucify",[4,4,[[40,2,2,0,2,[[971,2,2,0,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]]],[24839,24840,25956,26831]]],["crucified",[31,31,[[39,7,7,0,7,[[954,1,1,0,1],[955,5,5,1,6],[956,1,1,6,7]]],[40,4,4,7,11,[[971,3,3,7,10],[972,1,1,10,11]]],[41,4,4,11,15,[[995,2,2,11,13],[996,2,2,13,15]]],[42,5,5,15,20,[[1015,5,5,15,20]]],[43,2,2,20,22,[[1019,1,1,20,21],[1021,1,1,21,22]]],[45,4,4,22,26,[[1062,2,2,22,24],[1063,2,2,24,26]]],[46,1,1,26,27,[[1090,1,1,26,27]]],[47,3,3,27,30,[[1093,1,1,27,28],[1095,1,1,28,29],[1096,1,1,29,30]]],[65,1,1,30,31,[[1177,1,1,30,31]]]],[24056,24151,24152,24155,24164,24167,24200,24841,24850,24851,24879,25958,25968,25998,26011,26841,26843,26845,26848,26866,26985,27032,28376,28386,28396,28402,29047,29103,29186,29202,30880]]],["crucify",[11,9,[[39,3,3,0,3,[[948,1,1,0,1],[951,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[971,2,2,3,5]]],[41,1,1,5,6,[[995,1,1,5,6]]],[42,5,3,6,9,[[1015,5,3,6,9]]]],[23811,23952,24160,24846,24853,25956,26831,26835,26840]]]]},{"k":"G4718","v":[["grapes",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[65,1,1,2,3,[[1180,1,1,2,3]]]],[23332,25190,30944]]]]},{"k":"G4719","v":[["*",[5,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,3,2,1,3,[[958,1,1,1,2],[960,2,1,2,3]]],[41,1,1,3,4,[[978,1,1,3,4]]]],[23490,24283,24351,25147]]],["corn",[3,3,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]]],[23490,24283,25147]]],["ear",[2,1,[[40,2,1,0,1,[[960,2,1,0,1]]]],[24351]]]]},{"k":"G4720","v":[["Stachys",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28345]]]]},{"k":"G4721","v":[["roof",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,1,1,2,3,[[979,1,1,2,3]]]],[23353,24264,25201]]]]},{"k":"G4722","v":[["*",[4,4,[[45,2,2,0,2,[[1070,1,1,0,1],[1074,1,1,1,2]]],[51,2,2,2,4,[[1113,2,2,2,4]]]],[28552,28672,29591,29595]]],["Beareth",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28672]]],["forbear",[2,2,[[51,2,2,0,2,[[1113,2,2,0,2]]]],[29591,29595]]],["suffer",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28552]]]]},{"k":"G4723","v":[["barren",[4,4,[[41,3,3,0,3,[[973,2,2,0,2],[995,1,1,2,3]]],[47,1,1,3,4,[[1094,1,1,3,4]]]],[24900,24929,25964,29158]]]]},{"k":"G4724","v":[["*",[2,2,[[46,1,1,0,1,[[1085,1,1,0,1]]],[52,1,1,1,2,[[1118,1,1,1,2]]]],[28952,29684]]],["Avoiding",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28952]]],["yourselves",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29684]]]]},{"k":"G4725","v":[["garlands",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27427]]]]},{"k":"G4726","v":[["*",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]]],[27150,28142]]],["groaning",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27150]]],["groanings",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28142]]]]},{"k":"G4727","v":[["*",[6,6,[[40,1,1,0,1,[[963,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]],[46,2,2,2,4,[[1082,2,2,2,4]]],[57,1,1,4,5,[[1145,1,1,4,5]]],[58,1,1,5,6,[[1150,1,1,5,6]]]],[24497,28139,28879,28881,30258,30363]]],["Grudge",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30363]]],["grief",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30258]]],["groan",[3,3,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,2,2,1,3,[[1082,2,2,1,3]]]],[28139,28879,28881]]],["sighed",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24497]]]]},{"k":"G4728","v":[["strait",[3,3,[[39,2,2,0,2,[[935,2,2,0,2]]],[41,1,1,2,3,[[985,1,1,2,3]]]],[23329,23330,25542]]]]},{"k":"G4729","v":[["*",[3,2,[[46,3,2,0,2,[[1081,1,1,0,1],[1083,2,1,1,2]]]],[28867,28910]]],["distressed",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28867]]],["straitened",[2,1,[[46,2,1,0,1,[[1083,2,1,0,1]]]],[28910]]]]},{"k":"G4730","v":[["*",[4,4,[[44,2,2,0,2,[[1047,1,1,0,1],[1053,1,1,1,2]]],[46,2,2,2,4,[[1083,1,1,2,3],[1089,1,1,3,4]]]],[27971,28151,28902,29032]]],["anguish",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27971]]],["distress",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28151]]],["distresses",[2,2,[[46,2,2,0,2,[[1083,1,1,0,1],[1089,1,1,1,2]]]],[28902,29032]]]]},{"k":"G4731","v":[["*",[4,4,[[54,1,1,0,1,[[1126,1,1,0,1]]],[57,2,2,1,3,[[1137,2,2,1,3]]],[59,1,1,3,4,[[1155,1,1,3,4]]]],[29846,30042,30044,30474]]],["+",[2,2,[[57,2,2,0,2,[[1137,2,2,0,2]]]],[30042,30044]]],["stedfast",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30474]]],["sure",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29846]]]]},{"k":"G4732","v":[["*",[3,3,[[43,3,3,0,3,[[1020,2,2,0,2],[1033,1,1,2,3]]]],[27003,27012,27488]]],["+",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27012]]],["established",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27488]]],["strength",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27003]]]]},{"k":"G4733","v":[["stedfastness",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29499]]]]},{"k":"G4734","v":[["Stephanas",[3,3,[[45,3,3,0,3,[[1062,1,1,0,1],[1077,2,2,1,3]]]],[28379,28791,28793]]]]},{"k":"G4735","v":[["*",[18,18,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,2,2,2,4,[[1015,2,2,2,4]]],[45,1,1,4,5,[[1070,1,1,4,5]]],[49,1,1,5,6,[[1106,1,1,5,6]]],[51,1,1,6,7,[[1112,1,1,6,7]]],[54,1,1,7,8,[[1128,1,1,7,8]]],[58,1,1,8,9,[[1146,1,1,8,9]]],[59,1,1,9,10,[[1155,1,1,9,10]]],[65,8,8,10,18,[[1168,1,1,10,11],[1169,1,1,11,12],[1170,2,2,12,14],[1172,1,1,14,15],[1175,1,1,15,16],[1178,1,1,16,17],[1180,1,1,17,18]]]],[24158,24843,26827,26830,28565,29443,29589,29878,30278,30469,30727,30757,30772,30778,30795,30847,30892,30940]]],["crown",[15,15,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,2,2,2,4,[[1015,2,2,2,4]]],[45,1,1,4,5,[[1070,1,1,4,5]]],[49,1,1,5,6,[[1106,1,1,5,6]]],[51,1,1,6,7,[[1112,1,1,6,7]]],[54,1,1,7,8,[[1128,1,1,7,8]]],[58,1,1,8,9,[[1146,1,1,8,9]]],[59,1,1,9,10,[[1155,1,1,9,10]]],[65,5,5,10,15,[[1168,1,1,10,11],[1169,1,1,11,12],[1172,1,1,12,13],[1178,1,1,13,14],[1180,1,1,14,15]]]],[24158,24843,26827,26830,28565,29443,29589,29878,30278,30469,30727,30757,30795,30892,30940]]],["crowns",[3,3,[[65,3,3,0,3,[[1170,2,2,0,2],[1175,1,1,2,3]]]],[30772,30778,30847]]]]},{"k":"G4736","v":[["Stephen",[7,7,[[43,7,7,0,7,[[1023,3,3,0,3],[1024,1,1,3,4],[1025,1,1,4,5],[1028,1,1,5,6],[1039,1,1,6,7]]]],[27106,27109,27110,27175,27178,27326,27724]]]]},{"k":"G4737","v":[["*",[3,3,[[54,1,1,0,1,[[1126,1,1,0,1]]],[57,2,2,1,3,[[1134,2,2,1,3]]]],[29832,29984,29986]]],["crowned",[2,2,[[54,1,1,0,1,[[1126,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]]],[29832,29986]]],["crownedst",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29984]]]]},{"k":"G4738","v":[["*",[5,5,[[41,2,2,0,2,[[990,1,1,0,1],[995,1,1,1,2]]],[42,2,2,2,4,[[1009,1,1,2,3],[1017,1,1,3,4]]],[65,1,1,4,5,[[1181,1,1,4,5]]]],[25701,25983,26655,26918,30952]]],["breast",[3,3,[[41,1,1,0,1,[[990,1,1,0,1]]],[42,2,2,1,3,[[1009,1,1,1,2],[1017,1,1,2,3]]]],[25701,26655,26918]]],["breasts",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[65,1,1,1,2,[[1181,1,1,1,2]]]],[25983,30952]]]]},{"k":"G4739","v":[["*",[8,8,[[40,1,1,0,1,[[967,1,1,0,1]]],[44,1,1,1,2,[[1059,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]],[49,2,2,4,6,[[1103,1,1,4,5],[1106,1,1,5,6]]],[51,1,1,6,7,[[1113,1,1,6,7]]],[52,1,1,7,8,[[1117,1,1,7,8]]]],[24665,28284,28789,29163,29388,29443,29598,29676]]],["fast",[6,6,[[45,1,1,0,1,[[1077,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[49,2,2,2,4,[[1103,1,1,2,3],[1106,1,1,3,4]]],[51,1,1,4,5,[[1113,1,1,4,5]]],[52,1,1,5,6,[[1117,1,1,5,6]]]],[28789,29163,29388,29443,29598,29676]]],["stand",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24665]]],["standeth",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28284]]]]},{"k":"G4740","v":[["stedfastness",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30539]]]]},{"k":"G4741","v":[["*",[13,13,[[41,3,3,0,3,[[981,1,1,0,1],[988,1,1,1,2],[994,1,1,2,3]]],[44,2,2,3,5,[[1046,1,1,3,4],[1061,1,1,4,5]]],[51,2,2,5,7,[[1113,2,2,5,7]]],[52,2,2,7,9,[[1117,1,1,7,8],[1118,1,1,8,9]]],[58,1,1,9,10,[[1150,1,1,9,10]]],[59,1,1,10,11,[[1155,1,1,10,11]]],[60,1,1,11,12,[[1156,1,1,11,12]]],[65,1,1,12,13,[[1169,1,1,12,13]]]],[25352,25646,25896,27941,28361,29592,29603,29678,29681,30362,30475,30491,30748]]],["establish",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29592]]],["established",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[27941,30491]]],["fixed",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25646]]],["set",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25352]]],["stablish",[6,6,[[44,1,1,0,1,[[1061,1,1,0,1]]],[51,1,1,1,2,[[1113,1,1,1,2]]],[52,2,2,2,4,[[1117,1,1,2,3],[1118,1,1,3,4]]],[58,1,1,4,5,[[1150,1,1,4,5]]],[59,1,1,5,6,[[1155,1,1,5,6]]]],[28361,29603,29678,29681,30362,30475]]],["strengthen",[2,2,[[41,1,1,0,1,[[994,1,1,0,1]]],[65,1,1,1,2,[[1169,1,1,1,2]]]],[25896,30748]]]]},{"k":"G4742","v":[["marks",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29205]]]]},{"k":"G4743","v":[["moment",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25068]]]]},{"k":"G4744","v":[["shining",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24541]]]]},{"k":"G4745","v":[["*",[4,4,[[42,2,2,0,2,[[1001,1,1,0,1],[1006,1,1,1,2]]],[43,2,2,2,4,[[1020,1,1,2,3],[1022,1,1,3,4]]]],[26212,26504,27007,27071]]],["porch",[3,3,[[42,1,1,0,1,[[1006,1,1,0,1]]],[43,2,2,1,3,[[1020,1,1,1,2],[1022,1,1,2,3]]]],[26504,27007,27071]]],["porches",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26212]]]]},{"k":"G4746","v":[["branches",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24648]]]]},{"k":"G4747","v":[["*",[7,7,[[47,2,2,0,2,[[1094,2,2,0,2]]],[50,2,2,2,4,[[1108,2,2,2,4]]],[57,1,1,4,5,[[1137,1,1,4,5]]],[60,2,2,5,7,[[1158,2,2,5,7]]]],[29134,29140,29502,29514,30042,30532,30534]]],["elements",[4,4,[[47,2,2,0,2,[[1094,2,2,0,2]]],[60,2,2,2,4,[[1158,2,2,2,4]]]],[29134,29140,30532,30534]]],["principles",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30042]]],["rudiments",[2,2,[[50,2,2,0,2,[[1108,2,2,0,2]]]],[29502,29514]]]]},{"k":"G4748","v":[["*",[5,5,[[43,1,1,0,1,[[1038,1,1,0,1]]],[44,1,1,1,2,[[1049,1,1,1,2]]],[47,2,2,2,4,[[1095,1,1,2,3],[1096,1,1,3,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]]],[27688,28034,29187,29204,29437]]],["+",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28034]]],["orderly",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27688]]],["walk",[3,3,[[47,2,2,0,2,[[1095,1,1,0,1],[1096,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]]],[29187,29204,29437]]]]},{"k":"G4749","v":[["*",[8,8,[[40,2,2,0,2,[[968,1,1,0,1],[972,1,1,1,2]]],[41,2,2,2,4,[[987,1,1,2,3],[992,1,1,3,4]]],[65,4,4,4,8,[[1172,1,1,4,5],[1173,3,3,5,8]]]],[24711,24878,25610,25825,30804,30819,30823,30824]]],["+",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24878]]],["clothing",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24711]]],["robe",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25610]]],["robes",[5,5,[[41,1,1,0,1,[[992,1,1,0,1]]],[65,4,4,1,5,[[1172,1,1,1,2],[1173,3,3,2,5]]]],[25825,30804,30819,30823,30824]]]]},{"k":"G4750","v":[["*",[79,72,[[39,12,11,0,11,[[932,1,1,0,1],[933,1,1,1,2],[940,1,1,2,3],[941,1,1,3,4],[943,5,4,4,8],[945,1,1,8,9],[946,1,1,9,10],[949,1,1,10,11]]],[41,9,9,11,20,[[973,2,2,11,13],[976,1,1,13,14],[978,1,1,14,15],[983,1,1,15,16],[991,1,1,16,17],[993,2,2,17,19],[994,1,1,19,20]]],[42,1,1,20,21,[[1015,1,1,20,21]]],[43,12,12,21,33,[[1018,1,1,21,22],[1020,2,2,22,24],[1021,1,1,24,25],[1025,2,2,25,27],[1027,1,1,27,28],[1028,1,1,28,29],[1032,1,1,29,30],[1035,1,1,30,31],[1039,1,1,31,32],[1040,1,1,32,33]]],[44,6,6,33,39,[[1048,2,2,33,35],[1055,3,3,35,38],[1060,1,1,38,39]]],[46,2,2,39,41,[[1083,1,1,39,40],[1090,1,1,40,41]]],[48,2,2,41,43,[[1100,1,1,41,42],[1102,1,1,42,43]]],[50,1,1,43,44,[[1109,1,1,43,44]]],[52,1,1,44,45,[[1117,1,1,44,45]]],[54,1,1,45,46,[[1128,1,1,45,46]]],[57,2,2,46,48,[[1143,2,2,46,48]]],[58,2,2,48,50,[[1148,2,2,48,50]]],[59,1,1,50,51,[[1152,1,1,50,51]]],[62,2,1,51,52,[[1164,2,1,51,52]]],[63,2,1,52,53,[[1165,2,1,52,53]]],[64,1,1,53,54,[[1166,1,1,53,54]]],[65,22,18,54,72,[[1167,1,1,54,55],[1168,1,1,55,56],[1169,1,1,56,57],[1175,3,3,57,60],[1176,2,2,60,62],[1177,1,1,62,63],[1178,3,2,63,65],[1179,4,3,65,68],[1180,1,1,68,69],[1182,3,1,69,70],[1185,2,2,70,72]]]],[23213,23236,23523,23574,23641,23644,23650,23651,23727,23743,23842,24957,24963,25085,25191,25459,25753,25841,25850,25935,26854,26939,27014,27017,27047,27208,27211,27293,27315,27449,27571,27718,27736,28005,28010,28196,28197,28198,28309,28909,29044,29301,29356,29525,29669,29887,30205,30206,30322,30329,30421,30657,30672,30688,30713,30733,30762,30857,30858,30859,30870,30871,30877,30906,30907,30910,30913,30914,30931,30967,31032,31038]]],["+",[4,2,[[62,2,1,0,1,[[1164,2,1,0,1]]],[63,2,1,1,2,[[1165,2,1,1,2]]]],[30657,30672]]],["edge",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[25850,30206]]],["mouth",[69,64,[[39,12,11,0,11,[[932,1,1,0,1],[933,1,1,1,2],[940,1,1,2,3],[941,1,1,3,4],[943,5,4,4,8],[945,1,1,8,9],[946,1,1,9,10],[949,1,1,10,11]]],[41,8,8,11,19,[[973,2,2,11,13],[976,1,1,13,14],[978,1,1,14,15],[983,1,1,15,16],[991,1,1,16,17],[993,1,1,17,18],[994,1,1,18,19]]],[42,1,1,19,20,[[1015,1,1,19,20]]],[43,12,12,20,32,[[1018,1,1,20,21],[1020,2,2,21,23],[1021,1,1,23,24],[1025,2,2,24,26],[1027,1,1,26,27],[1028,1,1,27,28],[1032,1,1,28,29],[1035,1,1,29,30],[1039,1,1,30,31],[1040,1,1,31,32]]],[44,6,6,32,38,[[1048,2,2,32,34],[1055,3,3,34,37],[1060,1,1,37,38]]],[46,2,2,38,40,[[1083,1,1,38,39],[1090,1,1,39,40]]],[48,2,2,40,42,[[1100,1,1,40,41],[1102,1,1,41,42]]],[50,1,1,42,43,[[1109,1,1,42,43]]],[52,1,1,43,44,[[1117,1,1,43,44]]],[54,1,1,44,45,[[1128,1,1,44,45]]],[58,1,1,45,46,[[1148,1,1,45,46]]],[59,1,1,46,47,[[1152,1,1,46,47]]],[64,1,1,47,48,[[1166,1,1,47,48]]],[65,20,16,48,64,[[1167,1,1,48,49],[1168,1,1,49,50],[1169,1,1,50,51],[1175,1,1,51,52],[1176,2,2,52,54],[1177,1,1,54,55],[1178,3,2,55,57],[1179,4,3,57,60],[1180,1,1,60,61],[1182,3,1,61,62],[1185,2,2,62,64]]]],[23213,23236,23523,23574,23641,23644,23650,23651,23727,23743,23842,24957,24963,25085,25191,25459,25753,25841,25935,26854,26939,27014,27017,27047,27208,27211,27293,27315,27449,27571,27718,27736,28005,28010,28196,28197,28198,28309,28909,29044,29301,29356,29525,29669,29887,30329,30421,30688,30713,30733,30762,30859,30870,30871,30877,30906,30907,30910,30913,30914,30931,30967,31032,31038]]],["mouths",[4,4,[[57,1,1,0,1,[[1143,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]],[65,2,2,2,4,[[1175,2,2,2,4]]]],[30205,30322,30857,30858]]]]},{"k":"G4751","v":[["+",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29786]]]]},{"k":"G4752","v":[["warfare",[2,2,[[46,1,1,0,1,[[1087,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]]],[28975,29714]]]]},{"k":"G4753","v":[["*",[8,7,[[39,1,1,0,1,[[950,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]],[43,2,2,2,4,[[1040,2,2,2,4]]],[65,4,3,4,7,[[1175,1,1,4,5],[1185,3,2,5,7]]]],[23879,25946,27744,27761,30856,31031,31036]]],["armies",[3,3,[[39,1,1,0,1,[[950,1,1,0,1]]],[65,2,2,1,3,[[1185,2,2,1,3]]]],[23879,31031,31036]]],["army",[3,3,[[43,1,1,0,1,[[1040,1,1,0,1]]],[65,2,2,1,3,[[1175,1,1,1,2],[1185,1,1,2,3]]]],[27761,30856,31036]]],["soldiers",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27744]]],["war",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25946]]]]},{"k":"G4754","v":[["*",[7,7,[[41,1,1,0,1,[[975,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[46,1,1,2,3,[[1087,1,1,2,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]],[54,1,1,4,5,[[1126,1,1,4,5]]],[58,1,1,5,6,[[1149,1,1,5,6]]],[59,1,1,6,7,[[1152,1,1,6,7]]]],[25039,28547,28974,29714,29831,30338,30410]]],["soldiers",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25039]]],["war",[4,4,[[46,1,1,0,1,[[1087,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]],[58,1,1,2,3,[[1149,1,1,2,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[28974,29714,30338,30410]]],["warfare",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28547]]],["warreth",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29831]]]]},{"k":"G4755","v":[["*",[10,10,[[41,2,2,0,2,[[994,2,2,0,2]]],[43,8,8,2,10,[[1021,1,1,2,3],[1022,2,2,3,5],[1033,5,5,5,10]]]],[25868,25916,27023,27083,27085,27503,27505,27518,27519,27521]]],["captain",[3,3,[[43,3,3,0,3,[[1021,1,1,0,1],[1022,2,2,1,3]]]],[27023,27083,27085]]],["captains",[2,2,[[41,2,2,0,2,[[994,2,2,0,2]]]],[25868,25916]]],["magistrates",[5,5,[[43,5,5,0,5,[[1033,5,5,0,5]]]],[27503,27505,27518,27519,27521]]]]},{"k":"G4756","v":[["host",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[24986,27158]]]]},{"k":"G4757","v":[["*",[26,24,[[39,3,3,0,3,[[936,1,1,0,1],[955,1,1,1,2],[956,1,1,2,3]]],[40,1,1,3,4,[[971,1,1,3,4]]],[41,2,2,4,6,[[979,1,1,4,5],[995,1,1,5,6]]],[42,6,5,6,11,[[1015,6,5,6,11]]],[43,13,12,11,23,[[1027,1,1,11,12],[1029,3,3,12,15],[1038,3,2,15,17],[1040,2,2,17,19],[1044,3,3,19,22],[1045,1,1,22,23]]],[54,1,1,23,24,[[1126,1,1,23,24]]]],[23354,24156,24207,24842,25203,25971,26827,26848,26849,26857,26859,27266,27341,27343,27355,27696,27699,27757,27765,27886,27887,27897,27915,29830]]],["soldier",[4,4,[[42,1,1,0,1,[[1015,1,1,0,1]]],[43,2,2,1,3,[[1027,1,1,1,2],[1045,1,1,2,3]]],[54,1,1,3,4,[[1126,1,1,3,4]]]],[26848,27266,27915,29830]]],["soldiers",[21,20,[[39,3,3,0,3,[[936,1,1,0,1],[955,1,1,1,2],[956,1,1,2,3]]],[40,1,1,3,4,[[971,1,1,3,4]]],[41,2,2,4,6,[[979,1,1,4,5],[995,1,1,5,6]]],[42,5,5,6,11,[[1015,5,5,6,11]]],[43,10,9,11,20,[[1029,3,3,11,14],[1038,3,2,14,16],[1040,2,2,16,18],[1044,2,2,18,20]]]],[23354,24156,24207,24842,25203,25971,26827,26848,26849,26857,26859,27341,27343,27355,27696,27699,27757,27765,27886,27887]]],["soldiers'",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27897]]]]},{"k":"G4758","v":[["soldier",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29831]]]]},{"k":"G4759","v":[["guard",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27915]]]]},{"k":"G4760","v":[["armies",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25846]]]]},{"k":"G4761","v":[["wrest",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30538]]]]},{"k":"G4762","v":[["*",[18,18,[[39,4,4,0,4,[[933,1,1,0,1],[935,1,1,1,2],[944,1,1,2,3],[946,1,1,3,4]]],[41,7,7,4,11,[[979,2,2,4,6],[981,1,1,6,7],[982,1,1,7,8],[986,1,1,8,9],[994,1,1,9,10],[995,1,1,10,11]]],[42,3,3,11,14,[[997,1,1,11,12],[1016,2,2,12,14]]],[43,3,3,14,17,[[1024,2,2,14,16],[1030,1,1,16,17]]],[65,1,1,17,18,[[1177,1,1,17,18]]]],[23273,23322,23695,23730,25204,25239,25356,25386,25578,25925,25963,26082,26881,26883,27155,27158,27408,30878]]],["about",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25204]]],["again",[2,2,[[39,1,1,0,1,[[935,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[23322,27155]]],["converted",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23730]]],["turn",[3,3,[[39,1,1,0,1,[[933,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]],[65,1,1,2,3,[[1177,1,1,2,3]]]],[23273,27408,30878]]],["turned",[10,10,[[39,1,1,0,1,[[944,1,1,0,1]]],[41,5,5,1,6,[[979,1,1,1,2],[981,1,1,2,3],[982,1,1,3,4],[986,1,1,4,5],[994,1,1,5,6]]],[42,3,3,6,9,[[997,1,1,6,7],[1016,2,2,7,9]]],[43,1,1,9,10,[[1024,1,1,9,10]]]],[23695,25239,25356,25386,25578,25925,26082,26881,26883,27158]]],["turning",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25963]]]]},{"k":"G4763","v":[["deliciously",[2,2,[[65,2,2,0,2,[[1184,2,2,0,2]]]],[31000,31002]]]]},{"k":"G4764","v":[["delicacies",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30996]]]]},{"k":"G4765","v":[["sparrows",[4,4,[[39,2,2,0,2,[[938,2,2,0,2]]],[41,2,2,2,4,[[984,2,2,2,4]]]],[23446,23448,25465,25466]]]]},{"k":"G4766","v":[["*",[7,5,[[39,2,1,0,1,[[949,2,1,0,1]]],[40,3,2,1,3,[[967,2,1,1,2],[970,1,1,2,3]]],[41,1,1,3,4,[[994,1,1,3,4]]],[43,1,1,4,5,[[1026,1,1,4,5]]]],[23834,24648,24769,25876,27250]]],["+",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27250]]],["furnished",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24769,25876]]],["spread",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]]],[23834,24648]]],["strawed",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]]],[23834,24648]]]]},{"k":"G4767","v":[["hateful",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29926]]]]},{"k":"G4768","v":[["*",[2,2,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]]],[23675,24610]]],["lowring",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23675]]],["sad",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24610]]]]},{"k":"G4769","v":[["*",[4,4,[[47,1,1,0,1,[[1092,1,1,0,1]]],[53,1,1,1,2,[[1121,1,1,1,2]]],[65,2,2,2,4,[[1169,1,1,2,3],[1176,1,1,3,4]]]],[29090,29746,30758,30862]]],["pillar",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[65,1,1,1,2,[[1169,1,1,1,2]]]],[29746,30758]]],["pillars",[2,2,[[47,1,1,0,1,[[1092,1,1,0,1]]],[65,1,1,1,2,[[1176,1,1,1,2]]]],[29090,30862]]]]},{"k":"G4770","v":[["Stoicks",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27541]]]]},{"k":"G4771","v":[["*",[178,163,[[39,18,17,0,17,[[930,1,1,0,1],[931,1,1,1,2],[934,2,2,2,4],[939,2,2,4,6],[942,1,1,6,7],[944,2,2,7,9],[954,6,6,9,15],[955,3,2,15,17]]],[40,9,8,17,25,[[957,1,1,17,18],[959,1,1,18,19],[964,1,1,19,20],[970,4,4,20,24],[971,2,1,24,25]]],[41,28,26,25,51,[[973,3,3,25,28],[975,1,1,28,29],[976,2,2,29,31],[979,2,2,31,33],[981,1,1,33,34],[982,2,2,34,36],[987,1,1,36,37],[988,3,2,37,39],[989,1,1,39,40],[991,2,2,40,42],[994,4,4,42,46],[995,5,4,46,50],[996,1,1,50,51]]],[42,62,53,51,104,[[997,8,5,51,56],[998,2,2,56,58],[999,3,3,58,61],[1000,4,4,61,65],[1002,2,2,65,67],[1003,1,1,67,68],[1004,8,7,68,75],[1005,5,4,75,79],[1006,2,2,79,81],[1007,2,2,81,83],[1008,1,1,83,84],[1009,2,2,84,86],[1010,1,1,86,87],[1013,7,5,87,92],[1014,6,5,92,97],[1015,1,1,97,98],[1016,1,1,98,99],[1017,6,5,99,104]]],[43,17,17,104,121,[[1018,1,1,104,105],[1021,1,1,105,106],[1024,1,1,106,107],[1026,1,1,107,108],[1027,2,2,108,110],[1028,2,2,110,112],[1030,1,1,112,113],[1033,1,1,113,114],[1038,1,1,114,115],[1039,2,2,115,117],[1040,2,2,117,119],[1042,1,1,119,120],[1043,1,1,120,121]]],[44,12,11,121,132,[[1047,2,2,121,123],[1054,1,1,123,124],[1056,5,5,124,129],[1059,4,3,129,132]]],[45,2,2,132,134,[[1075,1,1,132,133],[1076,1,1,133,134]]],[47,2,2,134,136,[[1092,1,1,134,135],[1096,1,1,135,136]]],[53,1,1,136,137,[[1124,1,1,136,137]]],[54,7,7,137,144,[[1125,1,1,137,138],[1126,2,2,138,140],[1127,2,2,140,142],[1128,2,2,142,144]]],[55,1,1,144,145,[[1130,1,1,144,145]]],[56,1,1,145,146,[[1132,1,1,145,146]]],[57,8,8,146,154,[[1133,4,4,146,150],[1137,2,2,150,152],[1139,2,2,152,154]]],[58,5,4,154,158,[[1147,4,3,154,157],[1149,1,1,157,158]]],[63,1,1,158,159,[[1165,1,1,158,159]]],[65,4,4,159,163,[[1168,1,1,159,160],[1169,1,1,160,161],[1170,1,1,161,162],[1173,1,1,162,163]]]],[23175,23206,23288,23299,23462,23482,23625,23688,23690,24079,24093,24117,24118,24123,24127,24133,24140,24226,24299,24529,24790,24815,24821,24822,24828,24921,24935,24969,25047,25070,25104,25214,25215,25361,25378,25400,25619,25627,25645,25659,25750,25773,25896,25922,25931,25934,25938,25972,25974,25975,26009,26063,26065,26069,26086,26093,26105,26115,26122,26130,26146,26165,26166,26168,26175,26287,26326,26380,26386,26394,26406,26414,26429,26433,26434,26457,26468,26474,26475,26505,26514,26550,26565,26614,26636,26637,26677,26764,26767,26780,26782,26784,26802,26810,26818,26819,26822,26834,26882,26910,26913,26914,26915,26920,26947,27046,27144,27221,27274,27292,27316,27321,27395,27514,27702,27712,27731,27737,27755,27806,27838,27965,27979,28175,28226,28227,28229,28231,28233,28284,28290,28302,28695,28754,29095,29189,29799,29827,29828,29830,29863,29867,29875,29885,29909,29950,29968,29973,29974,29975,30035,30036,30081,30085,30296,30311,30312,30349,30661,30732,30763,30779,30824]]],["+",[5,5,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]],[43,2,2,2,4,[[1027,1,1,2,3],[1028,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]]],[26009,26168,27274,27316,29885]]],["Thou",[30,30,[[39,5,5,0,5,[[944,1,1,0,1],[954,3,3,1,4],[955,1,1,4,5]]],[40,4,4,5,9,[[957,1,1,5,6],[959,1,1,6,7],[964,1,1,7,8],[971,1,1,8,9]]],[41,4,4,9,13,[[975,1,1,9,10],[976,1,1,10,11],[994,1,1,11,12],[995,1,1,12,13]]],[42,5,5,13,18,[[997,1,1,13,14],[1004,1,1,14,15],[1005,2,2,15,17],[1014,1,1,17,18]]],[43,2,2,18,20,[[1018,1,1,18,19],[1030,1,1,19,20]]],[54,2,2,20,22,[[1126,2,2,20,22]]],[57,6,6,22,28,[[1133,2,2,22,24],[1137,2,2,24,26],[1139,2,2,26,28]]],[58,2,2,28,30,[[1147,2,2,28,30]]]],[23688,24079,24118,24123,24140,24226,24299,24529,24828,25047,25104,25922,25938,26086,26394,26468,26474,26822,26947,27395,29828,29830,29968,29973,30035,30036,30081,30085,30311,30312]]],["thou",[143,134,[[39,13,13,0,13,[[930,1,1,0,1],[931,1,1,1,2],[934,2,2,2,4],[939,2,2,4,6],[942,1,1,6,7],[944,1,1,7,8],[954,3,3,8,11],[955,2,2,11,13]]],[40,5,5,13,18,[[970,4,4,13,17],[971,1,1,17,18]]],[41,23,22,18,40,[[973,3,3,18,21],[976,1,1,21,22],[979,2,2,22,24],[981,1,1,24,25],[982,2,2,25,27],[987,1,1,27,28],[988,3,2,28,30],[989,1,1,30,31],[991,2,2,31,33],[994,3,3,33,36],[995,4,4,36,40]]],[42,56,50,40,90,[[997,7,5,40,45],[998,2,2,45,47],[999,3,3,47,50],[1000,3,3,50,53],[1002,2,2,53,55],[1003,1,1,55,56],[1004,7,6,56,62],[1005,3,3,62,65],[1006,2,2,65,67],[1007,2,2,67,69],[1008,1,1,69,70],[1009,2,2,70,72],[1010,1,1,72,73],[1013,7,5,73,78],[1014,5,5,78,83],[1015,1,1,83,84],[1016,1,1,84,85],[1017,6,5,85,90]]],[43,13,13,90,103,[[1021,1,1,90,91],[1024,1,1,91,92],[1026,1,1,92,93],[1027,1,1,93,94],[1028,1,1,94,95],[1033,1,1,95,96],[1038,1,1,96,97],[1039,2,2,97,99],[1040,2,2,99,101],[1042,1,1,101,102],[1043,1,1,102,103]]],[44,12,11,103,114,[[1047,2,2,103,105],[1054,1,1,105,106],[1056,5,5,106,111],[1059,4,3,111,114]]],[45,2,2,114,116,[[1075,1,1,114,115],[1076,1,1,115,116]]],[47,2,2,116,118,[[1092,1,1,116,117],[1096,1,1,117,118]]],[53,1,1,118,119,[[1124,1,1,118,119]]],[54,4,4,119,123,[[1125,1,1,119,120],[1127,2,2,120,122],[1128,1,1,122,123]]],[55,1,1,123,124,[[1130,1,1,123,124]]],[56,1,1,124,125,[[1132,1,1,124,125]]],[57,2,2,125,127,[[1133,2,2,125,127]]],[58,3,2,127,129,[[1147,2,1,127,128],[1149,1,1,128,129]]],[63,1,1,129,130,[[1165,1,1,129,130]]],[65,4,4,130,134,[[1168,1,1,130,131],[1169,1,1,131,132],[1170,1,1,132,133],[1173,1,1,133,134]]]],[23175,23206,23288,23299,23462,23482,23625,23690,24093,24117,24127,24133,24140,24790,24815,24821,24822,24828,24921,24935,24969,25070,25214,25215,25361,25378,25400,25619,25627,25645,25659,25750,25773,25896,25931,25934,25938,25972,25974,25975,26063,26065,26069,26086,26093,26105,26115,26122,26130,26146,26165,26166,26175,26287,26326,26380,26386,26406,26414,26429,26433,26434,26457,26474,26475,26505,26514,26550,26565,26614,26636,26637,26677,26764,26767,26780,26782,26784,26802,26810,26818,26819,26822,26834,26882,26910,26913,26914,26915,26920,27046,27144,27221,27292,27321,27514,27702,27712,27731,27737,27755,27806,27838,27965,27979,28175,28226,28227,28229,28231,28233,28284,28290,28302,28695,28754,29095,29189,29799,29827,29863,29867,29875,29909,29950,29974,29975,30296,30349,30661,30732,30763,30779,30824]]]]},{"k":"G4772","v":[["kindred",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,2,2,1,3,[[1024,2,2,1,3]]]],[24954,27119,27130]]]]},{"k":"G4773","v":[["*",[12,12,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,5,5,1,6,[[973,2,2,1,3],[974,1,1,3,4],[986,1,1,4,5],[993,1,1,5,6]]],[42,1,1,6,7,[[1014,1,1,6,7]]],[43,1,1,7,8,[[1027,1,1,7,8]]],[44,4,4,8,12,[[1054,1,1,8,9],[1061,3,3,9,12]]]],[24411,24929,24951,25017,25565,25842,26811,27283,28158,28343,28347,28357]]],["cousin",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24929]]],["cousins",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24951]]],["kin",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24411]]],["kinsfolk",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25017]]],["kinsfolks",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25842]]],["kinsman",[2,2,[[42,1,1,0,1,[[1014,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]]],[26811,28347]]],["kinsmen",[5,5,[[41,1,1,0,1,[[986,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]],[44,3,3,2,5,[[1054,1,1,2,3],[1061,2,2,3,5]]]],[25565,27283,28158,28343,28357]]]]},{"k":"G4774","v":[["permission",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28493]]]]},{"k":"G4775","v":[["*",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]]],[24808,27853]]],["+",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24808]]],["with",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27853]]]]},{"k":"G4776","v":[["together",[2,2,[[41,1,1,0,1,[[994,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]]],[25919,29235]]]]},{"k":"G4777","v":[["afflictions",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29817]]]]},{"k":"G4778","v":[["with",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30197]]]]},{"k":"G4779","v":[["*",[8,8,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,4,4,1,5,[[981,1,1,1,2],[987,2,2,2,4],[995,1,1,4,5]]],[43,3,3,5,8,[[1022,1,1,5,6],[1027,1,1,6,7],[1045,1,1,7,8]]]],[24842,25302,25594,25597,25948,27080,27283,27916]]],["+",[4,4,[[41,2,2,0,2,[[981,1,1,0,1],[987,1,1,1,2]]],[43,2,2,2,4,[[1022,1,1,2,3],[1045,1,1,3,4]]]],[25302,25597,27080,27916]]],["together",[4,4,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,2,2,1,3,[[987,1,1,1,2],[995,1,1,2,3]]],[43,1,1,3,4,[[1027,1,1,3,4]]]],[24842,25594,25948,27283]]]]},{"k":"G4780","v":[["covered",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25461]]]]},{"k":"G4781","v":[["down",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28219]]]]},{"k":"G4782","v":[["with",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27801]]]]},{"k":"G4783","v":[["agreement",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28914]]]]},{"k":"G4784","v":[["consented",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25986]]]]},{"k":"G4785","v":[["numbered",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26949]]]]},{"k":"G4786","v":[["*",[2,2,[[45,1,1,0,1,[[1073,1,1,0,1]]],[57,1,1,1,2,[[1136,1,1,1,2]]]],[28658,30016]]],["+",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28658]]],["with",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30016]]]]},{"k":"G4787","v":[["up",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27113]]]]},{"k":"G4788","v":[["*",[4,4,[[41,1,1,0,1,[[977,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]],[47,2,2,2,4,[[1093,2,2,2,4]]]],[25113,28241,29124,29125]]],["concluded",[2,2,[[44,1,1,0,1,[[1056,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]]],[28241,29124]]],["inclosed",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25113]]],["up",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29125]]]]},{"k":"G4789","v":[["*",[4,4,[[44,1,1,0,1,[[1053,1,1,0,1]]],[48,1,1,1,2,[[1099,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]],[59,1,1,3,4,[[1153,1,1,3,4]]]],[28133,29257,30181,30431]]],["fellowheirs",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29257]]],["him",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30181]]],["jointheirs",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28133]]],["together",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30431]]]]},{"k":"G4790","v":[["*",[3,3,[[48,1,1,0,1,[[1101,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[29315,29456,30997]]],["+",[2,2,[[48,1,1,0,1,[[1101,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[29315,30997]]],["with",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29456]]]]},{"k":"G4791","v":[["*",[4,4,[[44,1,1,0,1,[[1056,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[65,1,1,3,4,[[1167,1,1,3,4]]]],[28226,28563,29368,30706]]],["+",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28563]]],["companion",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30706]]],["partakers",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29368]]],["partakest",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28226]]]]},{"k":"G4792","v":[["carried",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27178]]]]},{"k":"G4793","v":[["*",[3,2,[[45,1,1,0,1,[[1063,1,1,0,1]]],[46,2,1,1,2,[[1087,2,1,1,2]]]],[28407,28983]]],["compare",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28983]]],["comparing",[2,2,[[45,1,1,0,1,[[1063,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]]],[28407,28983]]]]},{"k":"G4794","v":[["together",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25529]]]]},{"k":"G4795","v":[["chance",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25394]]]]},{"k":"G4796","v":[["*",[7,7,[[41,3,3,0,3,[[973,1,1,0,1],[987,2,2,1,3]]],[45,2,2,3,5,[[1073,1,1,3,4],[1074,1,1,4,5]]],[49,2,2,5,7,[[1104,2,2,5,7]]]],[24951,25594,25597,28660,28671,29408,29409]]],["rejoiceth",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28671]]],["with",[6,6,[[41,3,3,0,3,[[973,1,1,0,1],[987,2,2,1,3]]],[45,1,1,3,4,[[1073,1,1,3,4]]],[49,2,2,4,6,[[1104,2,2,4,6]]]],[24951,25594,25597,28660,29408,29409]]]]},{"k":"G4797","v":[["*",[5,5,[[43,5,5,0,5,[[1019,1,1,0,1],[1026,1,1,1,2],[1036,1,1,2,3],[1038,2,2,3,5]]]],[26955,27238,27617,27691,27695]]],["confounded",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1026,1,1,1,2]]]],[26955,27238]]],["confused",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27617]]],["up",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27691]]],["uproar",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27695]]]]},{"k":"G4798","v":[["+",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26165]]]]},{"k":"G4799","v":[["confusion",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27614]]]]},{"k":"G4800","v":[["with",[3,3,[[44,1,1,0,1,[[1051,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]]],[28076,28919,29838]]]]},{"k":"G4801","v":[["together",[2,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]]],[23768,24597]]]]},{"k":"G4802","v":[["*",[10,10,[[40,6,6,0,6,[[957,1,1,0,1],[964,1,1,1,2],[965,3,3,2,5],[968,1,1,5,6]]],[41,2,2,6,8,[[994,1,1,6,7],[996,1,1,7,8]]],[43,2,2,8,10,[[1023,1,1,8,9],[1026,1,1,9,10]]]],[24242,24511,24548,24552,24554,24701,25887,26006,27110,27245]]],["+",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[26006,27245]]],["another",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24548]]],["enquire",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25887]]],["question",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24554]]],["questioned",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24242]]],["questioning",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24552]]],["together",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24701]]],["with",[2,2,[[40,1,1,0,1,[[964,1,1,0,1]]],[43,1,1,1,2,[[1023,1,1,1,2]]]],[24511,27110]]]]},{"k":"G4803","v":[["*",[3,3,[[43,3,3,0,3,[[1032,2,2,0,2],[1045,1,1,2,3]]]],[27444,27449,27928]]],["disputation",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27444]]],["disputing",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27449]]],["reasoning",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27928]]]]},{"k":"G4804","v":[["disputer",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28383]]]]},{"k":"G4805","v":[["yokefellow",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29445]]]]},{"k":"G4806","v":[["together",[2,2,[[48,1,1,0,1,[[1098,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[29234,29507]]]]},{"k":"G4807","v":[["tree",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25657]]]]},{"k":"G4808","v":[["tree",[16,15,[[39,5,4,0,4,[[949,4,3,0,3],[952,1,1,3,4]]],[40,4,4,4,8,[[967,3,3,4,7],[969,1,1,7,8]]],[41,3,3,8,11,[[985,2,2,8,10],[993,1,1,10,11]]],[42,2,2,11,13,[[997,2,2,11,13]]],[58,1,1,13,14,[[1148,1,1,13,14]]],[65,1,1,14,15,[[1172,1,1,14,15]]]],[23845,23846,23847,23989,24653,24660,24661,24745,25524,25525,25855,26092,26094,30331,30806]]]]},{"k":"G4809","v":[["tree",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25735]]]]},{"k":"G4810","v":[["figs",[4,4,[[39,1,1,0,1,[[935,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]]],[23332,24653,25190,30331]]]]},{"k":"G4811","v":[["*",[2,2,[[41,2,2,0,2,[[975,1,1,0,1],[991,1,1,1,2]]]],[25039,25739]]],["+",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25739]]],["falsely",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25039]]]]},{"k":"G4812","v":[["spoil",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29502]]]]},{"k":"G4813","v":[["robbed",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28997]]]]},{"k":"G4814","v":[["*",[6,6,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,3,3,2,5,[[976,1,1,2,3],[981,1,1,3,4],[994,1,1,4,5]]],[43,1,1,5,6,[[1042,1,1,5,6]]]],[23703,24542,25099,25331,25868,27808]]],["conferred",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27808]]],["spake",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25099]]],["talking",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23703]]],["with",[3,3,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[994,1,1,2,3]]]],[24542,25331,25868]]]]},{"k":"G4815","v":[["*",[16,16,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,7,7,2,9,[[973,3,3,2,5],[974,1,1,5,6],[977,2,2,6,8],[994,1,1,8,9]]],[42,1,1,9,10,[[1014,1,1,9,10]]],[43,4,4,10,14,[[1018,1,1,10,11],[1029,1,1,11,12],[1040,1,1,12,13],[1043,1,1,13,14]]],[49,1,1,14,15,[[1106,1,1,14,15]]],[58,1,1,15,16,[[1146,1,1,15,16]]]],[24109,24802,24917,24924,24929,24994,25114,25116,25918,26797,26939,27340,27761,27844,29445,30281]]],["caught",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27844]]],["conceive",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24924]]],["conceived",[4,4,[[41,3,3,0,3,[[973,2,2,0,2],[974,1,1,2,3]]],[58,1,1,3,4,[[1146,1,1,3,4]]]],[24917,24929,24994,30281]]],["help",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]]],[25114,29445]]],["take",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[43,1,1,2,3,[[1029,1,1,2,3]]]],[24109,24802,27340]]],["taken",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[25116,27761]]],["took",[3,3,[[41,1,1,0,1,[[994,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[43,1,1,2,3,[[1018,1,1,2,3]]]],[25918,26797,26939]]]]},{"k":"G4816","v":[["*",[8,8,[[39,7,7,0,7,[[935,1,1,0,1],[941,6,6,1,7]]],[41,1,1,7,8,[[978,1,1,7,8]]]],[23332,23567,23568,23569,23579,23580,23587,25190]]],["+",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23567]]],["gather",[3,3,[[39,2,2,0,2,[[935,1,1,0,1],[941,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]]],[23332,23580,25190]]],["gathered",[2,2,[[39,2,2,0,2,[[941,2,2,0,2]]]],[23579,23587]]],["together",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23569]]],["up",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23568]]]]},{"k":"G4817","v":[["reasoned",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25784]]]]},{"k":"G4818","v":[["grieved",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24293]]]]},{"k":"G4819","v":[["*",[8,8,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[43,3,3,2,5,[[1020,1,1,2,3],[1037,1,1,3,4],[1038,1,1,4,5]]],[45,1,1,5,6,[[1071,1,1,5,6]]],[59,1,1,6,7,[[1154,1,1,6,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]]],[24620,26005,27006,27645,27699,28578,30458,30522]]],["befell",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27645]]],["happen",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24620]]],["happened",[5,5,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1020,1,1,1,2]]],[45,1,1,2,3,[[1071,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]],[60,1,1,4,5,[[1157,1,1,4,5]]]],[26005,27006,28578,30458,30522]]],["was",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27699]]]]},{"k":"G4820","v":[["*",[6,6,[[41,2,2,0,2,[[974,1,1,0,1],[986,1,1,1,2]]],[43,4,4,2,6,[[1021,1,1,2,3],[1034,1,1,3,4],[1035,1,1,4,5],[1037,1,1,5,6]]]],[24992,25584,27037,27541,27584,27640]]],["+",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25584]]],["conferred",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27037]]],["encountered",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27541]]],["helped",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27584]]],["met",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27640]]],["pondered",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24992]]]]},{"k":"G4821","v":[["with",[2,2,[[45,1,1,0,1,[[1065,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[28441,29839]]]]},{"k":"G4822","v":[["*",[6,6,[[43,2,2,0,2,[[1026,1,1,0,1],[1033,1,1,1,2]]],[45,1,1,2,3,[[1063,1,1,2,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]],[50,2,2,4,6,[[1108,2,2,4,6]]]],[27238,27493,28410,29288,29496,29513]]],["compacted",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29288]]],["gathering",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27493]]],["instruct",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28410]]],["proving",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27238]]],["together",[2,2,[[50,2,2,0,2,[[1108,2,2,0,2]]]],[29496,29513]]]]},{"k":"G4823","v":[["*",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,2,2,1,3,[[1007,1,1,1,2],[1014,1,1,2,3]]],[43,1,1,3,4,[[1026,1,1,3,4]]],[65,1,1,4,5,[[1169,1,1,4,5]]]],[24058,26576,26799,27239,30764]]],["consulted",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24058]]],["counsel",[3,3,[[42,1,1,0,1,[[1014,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]],[65,1,1,2,3,[[1169,1,1,2,3]]]],[26799,27239,30764]]],["together",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26576]]]]},{"k":"G4824","v":[["*",[8,8,[[39,5,5,0,5,[[940,1,1,0,1],[950,1,1,1,2],[955,2,2,2,4],[956,1,1,4,5]]],[40,2,2,5,7,[[959,1,1,5,6],[971,1,1,6,7]]],[43,1,1,7,8,[[1042,1,1,7,8]]]],[23503,23887,24130,24136,24207,24294,24827,27808]]],["+",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24294]]],["consultation",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24827]]],["council",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]]],[23503,27808]]],["counsel",[4,4,[[39,4,4,0,4,[[950,1,1,0,1],[955,2,2,1,3],[956,1,1,3,4]]]],[23887,24130,24136,24207]]]]},{"k":"G4825","v":[["counsellor",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28243]]]]},{"k":"G4826","v":[["*",[7,7,[[41,3,3,0,3,[[974,2,2,0,2],[975,1,1,2,3]]],[43,2,2,3,5,[[1030,1,1,3,4],[1032,1,1,4,5]]],[60,1,1,5,6,[[1156,1,1,5,6]]],[65,1,1,6,7,[[1173,1,1,6,7]]]],[24998,25007,25055,27363,27456,30480,30817]]],["Simeon",[6,6,[[41,3,3,0,3,[[974,2,2,0,2],[975,1,1,2,3]]],[43,2,2,3,5,[[1030,1,1,3,4],[1032,1,1,4,5]]],[65,1,1,5,6,[[1173,1,1,5,6]]]],[24998,25007,25055,27363,27456,30817]]],["Simon",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30480]]]]},{"k":"G4827","v":[["fellowdisciples",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26539]]]]},{"k":"G4828","v":[["*",[4,4,[[44,3,3,0,3,[[1047,1,1,0,1],[1053,1,1,1,2],[1054,1,1,2,3]]],[65,1,1,3,4,[[1188,1,1,3,4]]]],[27977,28132,28156,31098]]],["+",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28156]]],["testify",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31098]]],["with",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28132]]],["witness",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27977]]]]},{"k":"G4829","v":[["with",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28553]]]]},{"k":"G4830","v":[["partakers",[2,2,[[48,2,2,0,2,[[1099,1,1,0,1],[1101,1,1,1,2]]]],[29257,29311]]]]},{"k":"G4831","v":[["together",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29438]]]]},{"k":"G4832","v":[["*",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[28145,29442]]],["to",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28145]]],["unto",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29442]]]]},{"k":"G4833","v":[["conformable",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29431]]]]},{"k":"G4834","v":[["*",[2,2,[[57,2,2,0,2,[[1136,1,1,0,1],[1142,1,1,1,2]]]],[30029,30167]]],["+",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30167]]],["of",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30029]]]]},{"k":"G4835","v":[["another",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30432]]]]},{"k":"G4836","v":[["*",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]]],[25983,29886]]],["together",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25983]]],["with",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29886]]]]},{"k":"G4837","v":[["together",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27942]]]]},{"k":"G4838","v":[["*",[4,4,[[43,3,3,0,3,[[1029,1,1,0,1],[1032,2,2,1,3]]],[47,1,1,3,4,[[1092,1,1,3,4]]]],[27362,27479,27480,29082]]],["+",[2,2,[[43,1,1,0,1,[[1032,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]]],[27480,29082]]],["with",[2,2,[[43,2,2,0,2,[[1029,1,1,0,1],[1032,1,1,1,2]]]],[27362,27479]]]]},{"k":"G4839","v":[["with",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29386]]]]},{"k":"G4840","v":[["present",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27820]]]]},{"k":"G4841","v":[["with",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]]],[28133,28660]]]]},{"k":"G4842","v":[["*",[2,2,[[46,2,2,0,2,[[1085,2,2,0,2]]]],[28950,28954]]],["sent",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28950]]],["with",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28954]]]]},{"k":"G4843","v":[["embracing",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27636]]]]},{"k":"G4844","v":[["with",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27300]]]]},{"k":"G4845","v":[["*",[3,3,[[41,2,2,0,2,[[980,1,1,0,1],[981,1,1,1,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]]],[25268,25352,26950]]],["come",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[25352,26950]]],["filled",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25268]]]]},{"k":"G4846","v":[["*",[5,5,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,2,2,1,3,[[960,2,2,1,3]]],[41,2,2,3,5,[[980,2,2,3,5]]]],[23561,24330,24342,25259,25287]]],["choke",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]]],[23561,24342]]],["choked",[2,2,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24330,25259]]],["thronged",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25287]]]]},{"k":"G4847","v":[["fellowcitizens",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29248]]]]},{"k":"G4848","v":[["*",[4,4,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,3,3,1,4,[[979,1,1,1,2],[986,1,1,2,3],[996,1,1,3,4]]]],[24589,25206,25578,26006]]],["+",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25578]]],["resort",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24589]]],["with",[2,2,[[41,2,2,0,2,[[979,1,1,0,1],[996,1,1,1,2]]]],[25206,26006]]]]},{"k":"G4849","v":[["+",[2,1,[[40,2,1,0,1,[[962,2,1,0,1]]]],[24446]]]]},{"k":"G4850","v":[["elder",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30466]]]]},{"k":"G4851","v":[["*",[17,17,[[39,4,4,0,4,[[933,2,2,0,2],[946,1,1,2,3],[947,1,1,3,4]]],[42,3,3,4,7,[[1007,1,1,4,5],[1012,1,1,5,6],[1014,1,1,6,7]]],[43,2,2,7,9,[[1036,1,1,7,8],[1037,1,1,8,9]]],[45,5,5,9,14,[[1067,1,1,9,10],[1068,1,1,10,11],[1071,2,2,11,13],[1073,1,1,13,14]]],[46,2,2,14,16,[[1085,1,1,14,15],[1089,1,1,15,16]]],[57,1,1,16,17,[[1144,1,1,16,17]]]],[23263,23264,23733,23772,26573,26733,26799,27604,27646,28479,28522,28590,28600,28641,28942,29023,30222]]],["+",[5,5,[[39,1,1,0,1,[[947,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]],[45,2,2,2,4,[[1067,1,1,2,3],[1071,1,1,3,4]]],[46,1,1,4,5,[[1089,1,1,4,5]]]],[23772,27604,28479,28590,29023]]],["better",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23733]]],["expedient",[4,4,[[42,3,3,0,3,[[1007,1,1,0,1],[1012,1,1,1,2],[1014,1,1,2,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]]],[26573,26733,26799,28942]]],["profit",[4,4,[[45,3,3,0,3,[[1068,1,1,0,1],[1071,1,1,1,2],[1073,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]]],[28522,28600,28641,30222]]],["profitable",[3,3,[[39,2,2,0,2,[[933,2,2,0,2]]],[43,1,1,2,3,[[1037,1,1,2,3]]]],[23263,23264,27646]]]]},{"k":"G4852","v":[["consent",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28107]]]]},{"k":"G4853","v":[["countrymen",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29584]]]]},{"k":"G4854","v":[["together",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28073]]]]},{"k":"G4855","v":[["with",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25252]]]]},{"k":"G4856","v":[["*",[6,6,[[39,3,3,0,3,[[946,1,1,0,1],[948,2,2,1,3]]],[41,1,1,3,4,[[977,1,1,3,4]]],[43,2,2,4,6,[[1022,1,1,4,5],[1032,1,1,5,6]]]],[23746,23794,23805,25143,27068,27457]]],["agree",[3,3,[[39,2,2,0,2,[[946,1,1,0,1],[948,1,1,1,2]]],[43,1,1,2,3,[[1032,1,1,2,3]]]],[23746,23805,27457]]],["agreed",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23794]]],["agreeth",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25143]]],["together",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27068]]]]},{"k":"G4857","v":[["concord",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28913]]]]},{"k":"G4858","v":[["musick",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25613]]]]},{"k":"G4859","v":[["consent",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28492]]]]},{"k":"G4860","v":[["counted",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27604]]]]},{"k":"G4861","v":[["accord",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29393]]]]},{"k":"G4862","v":[["*",[125,121,[[39,3,3,0,3,[[953,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[40,5,5,3,8,[[958,1,1,3,4],[960,1,1,4,5],[964,1,1,5,6],[965,1,1,6,7],[971,1,1,7,8]]],[41,24,24,8,32,[[973,1,1,8,9],[974,2,2,9,11],[977,2,2,11,13],[979,2,2,13,15],[980,2,2,15,17],[981,1,1,17,18],[991,1,1,18,19],[992,1,1,19,20],[994,2,2,20,22],[995,3,3,22,25],[996,7,7,25,32]]],[42,2,2,32,34,[[1014,1,1,32,33],[1017,1,1,33,34]]],[43,51,48,34,82,[[1018,4,3,34,37],[1019,1,1,37,38],[1020,2,2,38,40],[1021,3,3,40,43],[1022,4,4,43,47],[1025,2,2,47,49],[1027,3,3,49,52],[1028,1,1,52,53],[1030,1,1,53,54],[1031,6,5,54,59],[1032,3,2,59,61],[1033,1,1,61,62],[1034,1,1,62,63],[1035,2,2,63,65],[1036,1,1,65,66],[1037,1,1,66,67],[1038,6,6,67,73],[1039,1,1,73,74],[1040,3,3,74,77],[1041,1,1,77,78],[1042,1,1,78,79],[1043,1,1,79,80],[1044,1,1,80,81],[1045,1,1,81,82]]],[44,4,4,82,86,[[1051,1,1,82,83],[1053,1,1,83,84],[1061,2,2,84,86]]],[45,7,7,86,93,[[1062,1,1,86,87],[1066,1,1,87,88],[1071,1,1,88,89],[1072,1,1,89,90],[1076,1,1,90,91],[1077,2,2,91,93]]],[46,6,6,93,99,[[1078,2,2,93,95],[1081,1,1,95,96],[1085,1,1,96,97],[1086,1,1,97,98],[1090,1,1,98,99]]],[47,4,4,99,103,[[1091,1,1,99,100],[1092,1,1,100,101],[1093,1,1,101,102],[1095,1,1,102,103]]],[48,2,2,103,105,[[1099,1,1,103,104],[1100,1,1,104,105]]],[49,4,4,105,109,[[1103,2,2,105,107],[1104,1,1,107,108],[1106,1,1,108,109]]],[50,7,7,109,116,[[1108,3,3,109,112],[1109,3,3,112,115],[1110,1,1,115,116]]],[51,4,3,116,119,[[1114,3,2,116,118],[1115,1,1,118,119]]],[58,1,1,119,120,[[1146,1,1,119,120]]],[60,1,1,120,121,[[1156,1,1,120,121]]]],[24035,24089,24167,24286,24333,24534,24542,24853,24949,24978,24986,25116,25126,25201,25207,25246,25283,25333,25754,25780,25878,25920,25946,25967,25970,25992,26001,26012,26015,26020,26024,26035,26786,26901,26937,26940,26945,26963,27000,27004,27035,27036,27049,27060,27076,27080,27085,27196,27207,27261,27279,27282,27319,27369,27418,27419,27427,27434,27442,27464,27467,27486,27557,27565,27575,27623,27662,27669,27680,27682,27688,27690,27693,27713,27749,27761,27766,27793,27819,27836,27857,27915,28076,28148,28350,28351,28365,28458,28580,28632,28728,28780,28795,28801,28821,28873,28951,28960,29047,29059,29084,29111,29186,29269,29303,29362,29384,29413,29463,29499,29507,29514,29520,29521,29526,29551,29617,29620,29631,30277,30497]]],["+",[2,2,[[43,2,2,0,2,[[1028,1,1,0,1],[1042,1,1,1,2]]]],[27319,27819]]],["With",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29551]]],["beside",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26012]]],["with",[121,117,[[39,3,3,0,3,[[953,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[40,5,5,3,8,[[958,1,1,3,4],[960,1,1,4,5],[964,1,1,5,6],[965,1,1,6,7],[971,1,1,7,8]]],[41,23,23,8,31,[[973,1,1,8,9],[974,2,2,9,11],[977,2,2,11,13],[979,2,2,13,15],[980,2,2,15,17],[981,1,1,17,18],[991,1,1,18,19],[992,1,1,19,20],[994,2,2,20,22],[995,3,3,22,25],[996,6,6,25,31]]],[42,2,2,31,33,[[1014,1,1,31,32],[1017,1,1,32,33]]],[43,49,46,33,79,[[1018,4,3,33,36],[1019,1,1,36,37],[1020,2,2,37,39],[1021,3,3,39,42],[1022,4,4,42,46],[1025,2,2,46,48],[1027,3,3,48,51],[1030,1,1,51,52],[1031,6,5,52,57],[1032,3,2,57,59],[1033,1,1,59,60],[1034,1,1,60,61],[1035,2,2,61,63],[1036,1,1,63,64],[1037,1,1,64,65],[1038,6,6,65,71],[1039,1,1,71,72],[1040,3,3,72,75],[1041,1,1,75,76],[1043,1,1,76,77],[1044,1,1,77,78],[1045,1,1,78,79]]],[44,4,4,79,83,[[1051,1,1,79,80],[1053,1,1,80,81],[1061,2,2,81,83]]],[45,7,7,83,90,[[1062,1,1,83,84],[1066,1,1,84,85],[1071,1,1,85,86],[1072,1,1,86,87],[1076,1,1,87,88],[1077,2,2,88,90]]],[46,6,6,90,96,[[1078,2,2,90,92],[1081,1,1,92,93],[1085,1,1,93,94],[1086,1,1,94,95],[1090,1,1,95,96]]],[47,4,4,96,100,[[1091,1,1,96,97],[1092,1,1,97,98],[1093,1,1,98,99],[1095,1,1,99,100]]],[48,2,2,100,102,[[1099,1,1,100,101],[1100,1,1,101,102]]],[49,4,4,102,106,[[1103,2,2,102,104],[1104,1,1,104,105],[1106,1,1,105,106]]],[50,6,6,106,112,[[1108,3,3,106,109],[1109,3,3,109,112]]],[51,4,3,112,115,[[1114,3,2,112,114],[1115,1,1,114,115]]],[58,1,1,115,116,[[1146,1,1,115,116]]],[60,1,1,116,117,[[1156,1,1,116,117]]]],[24035,24089,24167,24286,24333,24534,24542,24853,24949,24978,24986,25116,25126,25201,25207,25246,25283,25333,25754,25780,25878,25920,25946,25967,25970,25992,26001,26015,26020,26024,26035,26786,26901,26937,26940,26945,26963,27000,27004,27035,27036,27049,27060,27076,27080,27085,27196,27207,27261,27279,27282,27369,27418,27419,27427,27434,27442,27464,27467,27486,27557,27565,27575,27623,27662,27669,27680,27682,27688,27690,27693,27713,27749,27761,27766,27793,27836,27857,27915,28076,28148,28350,28351,28365,28458,28580,28632,28728,28780,28795,28801,28821,28873,28951,28960,29047,29059,29084,29111,29186,29269,29303,29362,29384,29413,29463,29499,29507,29514,29520,29521,29526,29617,29620,29631,30277,30497]]]]},{"k":"G4863","v":[["*",[62,62,[[39,24,24,0,24,[[930,1,1,0,1],[931,1,1,1,2],[934,1,1,2,3],[940,1,1,3,4],[941,3,3,4,7],[946,1,1,7,8],[950,3,3,8,11],[952,1,1,11,12],[953,6,6,12,18],[954,2,2,18,20],[955,3,3,20,23],[956,1,1,23,24]]],[40,5,5,24,29,[[958,1,1,24,25],[960,1,1,25,26],[961,1,1,26,27],[962,1,1,27,28],[963,1,1,28,29]]],[41,7,7,29,36,[[975,1,1,29,30],[983,1,1,30,31],[984,2,2,31,33],[987,1,1,33,34],[989,1,1,34,35],[994,1,1,35,36]]],[42,8,8,36,44,[[1000,1,1,36,37],[1002,2,2,37,39],[1007,2,2,39,41],[1011,1,1,41,42],[1014,1,1,42,43],[1016,1,1,43,44]]],[43,11,11,44,55,[[1021,4,4,44,48],[1028,1,1,48,49],[1030,1,1,49,50],[1031,1,1,50,51],[1032,2,2,51,53],[1037,2,2,53,55]]],[45,1,1,55,56,[[1066,1,1,55,56]]],[65,6,6,56,62,[[1179,1,1,56,57],[1182,2,2,57,59],[1185,2,2,59,61],[1186,1,1,61,62]]]],[23173,23204,23308,23519,23541,23569,23586,23747,23882,23906,23913,23985,24032,24034,24040,24043,24046,24051,24057,24111,24146,24156,24191,24207,24262,24324,24385,24437,24464,25042,25428,25476,25477,25601,25688,25930,26192,26269,26270,26570,26575,26705,26787,26886,27028,27048,27049,27053,27333,27406,27441,27448,27472,27633,27634,28458,30918,30968,30970,31034,31036,31046]]],["+",[8,8,[[39,2,2,0,2,[[953,2,2,0,2]]],[41,1,1,2,3,[[987,1,1,2,3]]],[43,3,3,3,6,[[1030,1,1,3,4],[1031,1,1,4,5],[1032,1,1,5,6]]],[65,2,2,6,8,[[1182,1,1,6,7],[1186,1,1,7,8]]]],[24043,24051,25601,27406,27441,27472,30970,31046]]],["assembled",[3,3,[[39,2,2,0,2,[[954,1,1,0,1],[956,1,1,1,2]]],[42,1,1,2,3,[[1016,1,1,2,3]]]],[24111,24207,26886]]],["bestow",[2,2,[[41,2,2,0,2,[[984,2,2,0,2]]]],[25476,25477]]],["gather",[7,7,[[39,4,4,0,4,[[931,1,1,0,1],[934,1,1,1,2],[941,1,1,2,3],[953,1,1,3,4]]],[41,1,1,4,5,[[975,1,1,4,5]]],[42,1,1,5,6,[[1011,1,1,5,6]]],[65,1,1,6,7,[[1182,1,1,6,7]]]],[23204,23308,23569,24034,25042,26705,30968]]],["gathered",[9,9,[[39,5,5,0,5,[[930,1,1,0,1],[941,1,1,1,2],[950,1,1,2,3],[953,1,1,3,4],[955,1,1,4,5]]],[40,2,2,5,7,[[960,1,1,5,6],[961,1,1,6,7]]],[42,1,1,7,8,[[1007,1,1,7,8]]],[43,1,1,8,9,[[1021,1,1,8,9]]]],[23173,23586,23906,24040,24156,24324,24385,26570,27048]]],["gathereth",[3,3,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,1,1,2,3,[[1000,1,1,2,3]]]],[23519,25428,26192]]],["gathering",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24032]]],["in",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24046]]],["into",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30918]]],["resorted",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26787]]],["themselves",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27333]]],["together",[24,24,[[39,8,8,0,8,[[941,1,1,0,1],[946,1,1,1,2],[950,2,2,2,4],[952,1,1,4,5],[954,1,1,5,6],[955,2,2,6,8]]],[40,3,3,8,11,[[958,1,1,8,9],[962,1,1,9,10],[963,1,1,10,11]]],[41,2,2,11,13,[[989,1,1,11,12],[994,1,1,12,13]]],[42,2,2,13,15,[[1002,1,1,13,14],[1007,1,1,14,15]]],[43,6,6,15,21,[[1021,3,3,15,18],[1032,1,1,18,19],[1037,2,2,19,21]]],[45,1,1,21,22,[[1066,1,1,21,22]]],[65,2,2,22,24,[[1185,2,2,22,24]]]],[23541,23747,23882,23913,23985,24057,24146,24191,24262,24437,24464,25688,25930,26270,26575,27028,27049,27053,27448,27633,27634,28458,31034,31036]]],["up",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26269]]]]},{"k":"G4864","v":[["*",[57,57,[[39,9,9,0,9,[[932,1,1,0,1],[934,2,2,1,3],[937,1,1,3,4],[938,1,1,4,5],[940,1,1,5,6],[941,1,1,6,7],[951,2,2,7,9]]],[40,8,8,9,17,[[957,4,4,9,13],[959,1,1,13,14],[962,1,1,14,15],[968,1,1,15,16],[969,1,1,16,17]]],[41,15,15,17,32,[[976,7,7,17,24],[978,1,1,24,25],[979,1,1,25,26],[980,1,1,26,27],[983,1,1,27,28],[984,1,1,28,29],[985,1,1,29,30],[992,1,1,30,31],[993,1,1,31,32]]],[42,2,2,32,34,[[1002,1,1,32,33],[1014,1,1,33,34]]],[43,20,20,34,54,[[1023,1,1,34,35],[1026,2,2,35,37],[1030,4,4,37,41],[1031,1,1,41,42],[1032,1,1,42,43],[1034,3,3,43,46],[1035,4,4,46,50],[1036,1,1,50,51],[1039,1,1,51,52],[1041,1,1,52,53],[1043,1,1,53,54]]],[58,1,1,54,55,[[1147,1,1,54,55]]],[65,2,2,55,57,[[1168,1,1,55,56],[1169,1,1,56,57]]]],[23232,23284,23287,23414,23434,23498,23593,23924,23952,24236,24238,24244,24254,24289,24409,24712,24726,25078,25079,25083,25091,25096,25101,25107,25152,25200,25286,25448,25470,25528,25825,25838,26316,26805,27110,27218,27236,27367,27376,27404,27405,27415,27463,27524,27533,27540,27561,27564,27576,27583,27593,27723,27781,27834,30295,30726,30755]]],["+",[2,2,[[43,2,2,0,2,[[1035,1,1,0,1],[1039,1,1,1,2]]]],[27583,27723]]],["assembly",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30295]]],["congregation",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27405]]],["synagogue",[31,31,[[39,2,2,0,2,[[940,1,1,0,1],[941,1,1,1,2]]],[40,5,5,2,7,[[957,3,3,2,5],[959,1,1,5,6],[962,1,1,6,7]]],[41,8,8,7,15,[[976,5,5,7,12],[978,1,1,12,13],[979,1,1,13,14],[980,1,1,14,15]]],[42,2,2,15,17,[[1002,1,1,15,16],[1014,1,1,16,17]]],[43,12,12,17,29,[[1023,1,1,17,18],[1030,2,2,18,20],[1031,1,1,20,21],[1034,3,3,21,24],[1035,3,3,24,27],[1036,1,1,27,28],[1043,1,1,28,29]]],[65,2,2,29,31,[[1168,1,1,29,30],[1169,1,1,30,31]]]],[23498,23593,24236,24238,24244,24289,24409,25079,25083,25091,25096,25101,25152,25200,25286,26316,26805,27110,27376,27404,27415,27524,27533,27540,27561,27564,27576,27593,27834,30726,30755]]],["synagogues",[22,22,[[39,7,7,0,7,[[932,1,1,0,1],[934,2,2,1,3],[937,1,1,3,4],[938,1,1,4,5],[951,2,2,5,7]]],[40,3,3,7,10,[[957,1,1,7,8],[968,1,1,8,9],[969,1,1,9,10]]],[41,7,7,10,17,[[976,2,2,10,12],[983,1,1,12,13],[984,1,1,13,14],[985,1,1,14,15],[992,1,1,15,16],[993,1,1,16,17]]],[43,5,5,17,22,[[1026,2,2,17,19],[1030,1,1,19,20],[1032,1,1,20,21],[1041,1,1,21,22]]]],[23232,23284,23287,23414,23434,23924,23952,24254,24712,24726,25078,25107,25448,25470,25528,25825,25838,27218,27236,27367,27463,27781]]]]},{"k":"G4865","v":[["with",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28333]]]]},{"k":"G4866","v":[["*",[2,2,[[49,2,2,0,2,[[1103,1,1,0,1],[1106,1,1,1,2]]]],[29388,29445]]],["together",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29388]]],["with",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29445]]]]},{"k":"G4867","v":[["*",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,2,2,1,3,[[1029,1,1,1,2],[1036,1,1,2,3]]]],[26024,27349,27610]]],["+",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27349]]],["together",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[26024,27610]]]]},{"k":"G4868","v":[["*",[3,3,[[39,3,3,0,3,[[946,2,2,0,2],[953,1,1,2,3]]]],[23750,23751,24027]]],["+",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24027]]],["reckon",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23751]]],["take",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23750]]]]},{"k":"G4869","v":[["*",[3,3,[[44,1,1,0,1,[[1061,1,1,0,1]]],[50,1,1,1,2,[[1110,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]]],[28343,29552,29961]]],["fellowprisoner",[2,2,[[50,1,1,0,1,[[1110,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[29552,29961]]],["fellowprisoners",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28343]]]]},{"k":"G4870","v":[["*",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24401,25984]]],["follow",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24401]]],["followed",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25984]]]]},{"k":"G4871","v":[["with",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26927]]]]},{"k":"G4872","v":[["with",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]]],[24867,27393]]]]},{"k":"G4873","v":[["*",[9,9,[[39,2,2,0,2,[[937,1,1,0,1],[942,1,1,1,2]]],[40,3,3,2,5,[[958,1,1,2,3],[962,2,2,3,5]]],[41,3,3,5,8,[[979,1,1,5,6],[986,2,2,6,8]]],[42,1,1,8,9,[[1008,1,1,8,9]]]],[23389,23606,24275,24429,24433,25244,25563,25568,26582]]],["+",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24275]]],["down",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23389]]],["meat",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23606]]],["with",[6,6,[[40,2,2,0,2,[[962,2,2,0,2]]],[41,3,3,2,5,[[979,1,1,2,3],[986,2,2,3,5]]],[42,1,1,5,6,[[1008,1,1,5,6]]]],[24429,24433,25244,25563,25568,26582]]]]},{"k":"G4874","v":[["*",[3,3,[[45,2,2,0,2,[[1066,2,2,0,2]]],[52,1,1,2,3,[[1118,1,1,2,3]]]],[28463,28465,29692]]],["+",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29692]]],["company",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28465]]],["with",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28463]]]]},{"k":"G4875","v":[["refreshed",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28335]]]]},{"k":"G4876","v":[["*",[6,6,[[41,2,2,0,2,[[981,1,1,0,1],[994,1,1,1,2]]],[43,2,2,2,4,[[1027,1,1,2,3],[1037,1,1,3,4]]],[57,2,2,4,6,[[1139,2,2,4,6]]]],[25338,25874,27284,27648,30065,30074]]],["befall",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27648]]],["meet",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25874]]],["met",[4,4,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]],[57,2,2,2,4,[[1139,2,2,2,4]]]],[25338,27284,30065,30074]]]]},{"k":"G4877","v":[["+",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23379]]]]},{"k":"G4878","v":[["*",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]]],[25403,28142]]],["help",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25403]]],["helpeth",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28142]]]]},{"k":"G4879","v":[["*",[3,3,[[44,1,1,0,1,[[1057,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]],[60,1,1,2,3,[[1158,1,1,2,3]]]],[28261,29094,30539]]],["condescend",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28261]]],["with",[2,2,[[47,1,1,0,1,[[1092,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[29094,30539]]]]},{"k":"G4880","v":[["*",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]]],[24785,28919,29838]]],["die",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28919]]],["with",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[24785,29838]]]]},{"k":"G4881","v":[["perished",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30203]]]]},{"k":"G4882","v":[["sent",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29040]]]]},{"k":"G4883","v":[["together",[2,2,[[48,2,2,0,2,[[1098,1,1,0,1],[1100,1,1,1,2]]]],[29250,29288]]]]},{"k":"G4884","v":[["caught",[4,4,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,3,3,1,4,[[1023,1,1,1,2],[1036,1,1,2,3],[1044,1,1,3,4]]]],[25274,27113,27614,27870]]]]},{"k":"G4885","v":[["together",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23569]]]]},{"k":"G4886","v":[["*",[4,4,[[43,1,1,0,1,[[1025,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[50,2,2,2,4,[[1108,1,1,2,3],[1109,1,1,3,4]]]],[27199,29275,29513,29531]]],["bands",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29513]]],["bond",[3,3,[[43,1,1,0,1,[[1025,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]]],[27199,29275,29531]]]]},{"k":"G4887","v":[["with",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30244]]]]},{"k":"G4888","v":[["together",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28133]]]]},{"k":"G4889","v":[["*",[10,10,[[39,5,5,0,5,[[946,4,4,0,4],[952,1,1,4,5]]],[50,2,2,5,7,[[1107,1,1,5,6],[1110,1,1,6,7]]],[65,3,3,7,10,[[1172,1,1,7,8],[1185,1,1,8,9],[1188,1,1,9,10]]]],[23755,23756,23758,23760,24006,29472,29549,30804,31027,31089]]],["fellowservant",[6,6,[[39,2,2,0,2,[[946,2,2,0,2]]],[50,2,2,2,4,[[1107,1,1,2,3],[1110,1,1,3,4]]],[65,2,2,4,6,[[1185,1,1,4,5],[1188,1,1,5,6]]]],[23756,23760,29472,29549,31027,31089]]],["fellowservants",[4,4,[[39,3,3,0,3,[[946,2,2,0,2],[952,1,1,2,3]]],[65,1,1,3,4,[[1172,1,1,3,4]]]],[23755,23758,24006,30804]]]]},{"k":"G4890","v":[["+",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27694]]]]},{"k":"G4891","v":[["*",[3,3,[[48,1,1,0,1,[[1098,1,1,0,1]]],[50,2,2,1,3,[[1108,1,1,1,2],[1109,1,1,2,3]]]],[29235,29506,29518]]],["together",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29235]]],["with",[2,2,[[50,2,2,0,2,[[1108,1,1,0,1],[1109,1,1,1,2]]]],[29506,29518]]]]},{"k":"G4892","v":[["*",[22,22,[[39,3,3,0,3,[[933,1,1,0,1],[938,1,1,1,2],[954,1,1,2,3]]],[40,3,3,3,6,[[969,1,1,3,4],[970,1,1,4,5],[971,1,1,5,6]]],[41,1,1,6,7,[[994,1,1,6,7]]],[42,1,1,7,8,[[1007,1,1,7,8]]],[43,14,14,8,22,[[1021,1,1,8,9],[1022,4,4,9,13],[1023,2,2,13,15],[1039,1,1,15,16],[1040,5,5,16,21],[1041,1,1,21,22]]]],[23256,23434,24113,24726,24809,24827,25930,26570,27037,27080,27086,27093,27100,27113,27116,27734,27735,27740,27749,27754,27762,27789]]],["+",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27080]]],["council",[19,19,[[39,2,2,0,2,[[933,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[970,1,1,2,3],[971,1,1,3,4]]],[41,1,1,4,5,[[994,1,1,4,5]]],[42,1,1,5,6,[[1007,1,1,5,6]]],[43,13,13,6,19,[[1021,1,1,6,7],[1022,3,3,7,10],[1023,2,2,10,12],[1039,1,1,12,13],[1040,5,5,13,18],[1041,1,1,18,19]]]],[23256,24113,24809,24827,25930,26570,27037,27086,27093,27100,27113,27116,27734,27735,27740,27749,27754,27762,27789]]],["councils",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23434,24726]]]]},{"k":"G4893","v":[["*",[32,30,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,2,2,1,3,[[1040,1,1,1,2],[1041,1,1,2,3]]],[44,3,3,3,6,[[1047,1,1,3,4],[1054,1,1,4,5],[1058,1,1,5,6]]],[45,9,7,6,13,[[1069,4,3,6,9],[1071,5,4,9,13]]],[46,3,3,13,16,[[1078,1,1,13,14],[1081,1,1,14,15],[1082,1,1,15,16]]],[53,4,4,16,20,[[1119,2,2,16,18],[1121,1,1,18,19],[1122,1,1,19,20]]],[54,1,1,20,21,[[1125,1,1,20,21]]],[55,1,1,21,22,[[1129,1,1,21,22]]],[57,5,5,22,27,[[1141,2,2,22,24],[1142,2,2,24,26],[1145,1,1,26,27]]],[59,3,3,27,30,[[1152,1,1,27,28],[1153,2,2,28,30]]]],[26390,27735,27785,27977,28156,28271,28534,28537,28539,28592,28594,28595,28596,28812,28861,28888,29701,29715,29740,29749,29812,29907,30114,30119,30135,30155,30259,30418,30440,30445]]],["+",[3,3,[[44,1,1,0,1,[[1058,1,1,0,1]]],[45,2,2,1,3,[[1071,2,2,1,3]]]],[28271,28592,28594]]],["Conscience",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28596]]],["conscience",[27,26,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,2,2,1,3,[[1040,1,1,1,2],[1041,1,1,2,3]]],[44,2,2,3,5,[[1047,1,1,3,4],[1054,1,1,4,5]]],[45,6,5,5,10,[[1069,4,3,5,8],[1071,2,2,8,10]]],[46,2,2,10,12,[[1078,1,1,10,11],[1081,1,1,11,12]]],[53,4,4,12,16,[[1119,2,2,12,14],[1121,1,1,14,15],[1122,1,1,15,16]]],[54,1,1,16,17,[[1125,1,1,16,17]]],[55,1,1,17,18,[[1129,1,1,17,18]]],[57,5,5,18,23,[[1141,2,2,18,20],[1142,2,2,20,22],[1145,1,1,22,23]]],[59,3,3,23,26,[[1152,1,1,23,24],[1153,2,2,24,26]]]],[26390,27735,27785,27977,28156,28534,28537,28539,28595,28596,28812,28861,29701,29715,29740,29749,29812,29907,30114,30119,30135,30155,30259,30418,30440,30445]]],["consciences",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28888]]]]},{"k":"G4894","v":[["*",[4,4,[[43,3,3,0,3,[[1022,1,1,0,1],[1029,1,1,1,2],[1031,1,1,2,3]]],[45,1,1,3,4,[[1065,1,1,3,4]]]],[27061,27349,27420,28437]]],["considered",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27349]]],["know",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28437]]],["of",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27420]]],["privy",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27061]]]]},{"k":"G4895","v":[["with",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1039,1,1,1,2]]]],[25319,27715]]]]},{"k":"G4896","v":[["together",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25249]]]]},{"k":"G4897","v":[["*",[2,2,[[42,2,2,0,2,[[1002,1,1,0,1],[1014,1,1,1,2]]]],[26279,26800]]],["+",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26279]]],["with",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26800]]]]},{"k":"G4898","v":[["*",[2,2,[[43,1,1,0,1,[[1036,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]]],[27614,28951]]],["travel",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27614]]],["with",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28951]]]]},{"k":"G4899","v":[["with",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30478]]]]},{"k":"G4900","v":[["+",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27142]]]]},{"k":"G4901","v":[["witness",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29981]]]]},{"k":"G4902","v":[["accompanied",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27630]]]]},{"k":"G4903","v":[["*",[5,5,[[40,1,1,0,1,[[972,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]],[58,1,1,4,5,[[1147,1,1,4,5]]]],[24893,28144,28792,28899,30315]]],["together",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]]],[28144,28899]]],["with",[3,3,[[40,1,1,0,1,[[972,1,1,0,1]]],[45,1,1,1,2,[[1077,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[24893,28792,30315]]]]},{"k":"G4904","v":[["*",[13,13,[[44,3,3,0,3,[[1061,3,3,0,3]]],[45,1,1,3,4,[[1064,1,1,3,4]]],[46,2,2,4,6,[[1078,1,1,4,5],[1085,1,1,5,6]]],[49,2,2,6,8,[[1104,1,1,6,7],[1106,1,1,7,8]]],[50,1,1,8,9,[[1110,1,1,8,9]]],[51,1,1,9,10,[[1113,1,1,9,10]]],[56,2,2,10,12,[[1132,2,2,10,12]]],[63,1,1,12,13,[[1165,1,1,12,13]]]],[28339,28345,28357,28419,28824,28955,29416,29445,29553,29592,29939,29962,30666]]],["fellowhelper",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28955]]],["fellowhelpers",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30666]]],["fellowlabourer",[2,2,[[51,1,1,0,1,[[1113,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[29592,29939]]],["fellowlabourers",[2,2,[[49,1,1,0,1,[[1106,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[29445,29962]]],["fellowworkers",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29553]]],["helper",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28345]]],["helpers",[2,2,[[44,1,1,0,1,[[1061,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]]],[28339,28824]]],["labour",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29416]]],["with",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28419]]],["workfellow",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28357]]]]},{"k":"G4905","v":[["*",[32,32,[[39,1,1,0,1,[[929,1,1,0,1]]],[40,3,3,1,4,[[959,1,1,1,2],[962,1,1,2,3],[970,1,1,3,4]]],[41,2,2,4,6,[[977,1,1,4,5],[995,1,1,5,6]]],[42,2,2,6,8,[[1007,1,1,6,7],[1014,1,1,7,8]]],[43,16,16,8,24,[[1018,2,2,8,10],[1019,1,1,10,11],[1022,1,1,11,12],[1026,1,1,12,13],[1027,3,3,13,16],[1028,1,1,16,17],[1032,1,1,17,18],[1033,1,1,18,19],[1036,1,1,19,20],[1038,2,2,20,22],[1042,1,1,22,23],[1045,1,1,23,24]]],[45,8,8,24,32,[[1068,1,1,24,25],[1072,5,5,25,30],[1075,2,2,30,32]]]],[23162,24308,24440,24807,25122,25990,26556,26805,26929,26944,26955,27075,27255,27282,27286,27304,27319,27480,27496,27617,27680,27686,27813,27916,28492,28617,28618,28620,28633,28634,28701,28704]]],["+",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]]],[25990,27480,28634]]],["accompanied",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27282]]],["assembled",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24807]]],["came",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27075]]],["come",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27813]]],["companied",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26944]]],["resort",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26805]]],["resorted",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27496]]],["together",[17,17,[[39,1,1,0,1,[[929,1,1,0,1]]],[40,2,2,1,3,[[959,1,1,1,2],[962,1,1,2,3]]],[41,1,1,3,4,[[977,1,1,3,4]]],[43,6,6,4,10,[[1018,1,1,4,5],[1019,1,1,5,6],[1027,1,1,6,7],[1036,1,1,7,8],[1038,1,1,8,9],[1045,1,1,9,10]]],[45,7,7,10,17,[[1068,1,1,10,11],[1072,4,4,11,15],[1075,2,2,15,17]]]],[23162,24308,24440,25122,26929,26955,27286,27617,27686,27916,28492,28617,28618,28620,28633,28701,28704]]],["went",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27680]]],["with",[4,4,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,3,3,1,4,[[1026,1,1,1,2],[1027,1,1,2,3],[1028,1,1,3,4]]]],[26556,27255,27304,27319]]]]},{"k":"G4906","v":[["*",[5,5,[[41,1,1,0,1,[[987,1,1,0,1]]],[43,2,2,1,3,[[1027,1,1,1,2],[1028,1,1,2,3]]],[45,1,1,3,4,[[1066,1,1,3,4]]],[47,1,1,4,5,[[1092,1,1,4,5]]]],[25590,27300,27310,28465,29093]]],["eat",[3,3,[[43,1,1,0,1,[[1027,1,1,0,1]]],[45,1,1,1,2,[[1066,1,1,1,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]]],[27300,28465,29093]]],["with",[2,2,[[41,1,1,0,1,[[987,1,1,0,1]]],[43,1,1,1,2,[[1028,1,1,1,2]]]],[25590,27310]]]]},{"k":"G4907","v":[["*",[7,7,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[45,1,1,2,3,[[1062,1,1,2,3]]],[48,1,1,3,4,[[1099,1,1,3,4]]],[50,2,2,4,6,[[1107,1,1,4,5],[1108,1,1,5,6]]],[54,1,1,6,7,[[1126,1,1,6,7]]]],[24706,25020,28382,29255,29474,29496,29834]]],["knowledge",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29255]]],["understanding",[6,6,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[45,1,1,2,3,[[1062,1,1,2,3]]],[50,2,2,3,5,[[1107,1,1,3,4],[1108,1,1,4,5]]],[54,1,1,5,6,[[1126,1,1,5,6]]]],[24706,25020,28382,29474,29496,29834]]]]},{"k":"G4908","v":[["prudent",[4,4,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[43,1,1,2,3,[[1030,1,1,2,3]]],[45,1,1,3,4,[[1062,1,1,3,4]]]],[23484,25384,27369,28382]]]]},{"k":"G4909","v":[["*",[6,6,[[41,1,1,0,1,[[983,1,1,0,1]]],[43,2,2,1,3,[[1025,1,1,1,2],[1039,1,1,2,3]]],[44,1,1,3,4,[[1046,1,1,3,4]]],[45,2,2,4,6,[[1068,2,2,4,6]]]],[25453,27177,27724,27962,28499,28500]]],["allow",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25453]]],["consenting",[2,2,[[43,2,2,0,2,[[1025,1,1,0,1],[1039,1,1,1,2]]]],[27177,27724]]],["pleased",[2,2,[[45,2,2,0,2,[[1068,2,2,0,2]]]],[28499,28500]]],["pleasure",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27962]]]]},{"k":"G4910","v":[["*",[2,2,[[60,1,1,0,1,[[1157,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[30513,30684]]],["feast",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30513]]],["with",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30684]]]]},{"k":"G4911","v":[["together",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27505]]]]},{"k":"G4912","v":[["*",[12,12,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,6,6,1,7,[[976,1,1,1,2],[980,2,2,2,4],[984,1,1,4,5],[991,1,1,5,6],[994,1,1,6,7]]],[43,3,3,7,10,[[1024,1,1,7,8],[1035,1,1,8,9],[1045,1,1,9,10]]],[46,1,1,10,11,[[1082,1,1,10,11]]],[49,1,1,11,12,[[1103,1,1,11,12]]]],[23233,25101,25282,25290,25509,25774,25927,27173,27562,27907,28891,29384]]],["+",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25774]]],["constraineth",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28891]]],["held",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25927]]],["pressed",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27562]]],["sick",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27907]]],["stopped",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27173]]],["strait",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29384]]],["straitened",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25509]]],["taken",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[23233,25282]]],["throng",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25290]]],["with",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25101]]]]},{"k":"G4913","v":[["delight",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28113]]]]},{"k":"G4914","v":[["custom",[2,2,[[42,1,1,0,1,[[1014,1,1,0,1]]],[45,1,1,1,2,[[1072,1,1,1,2]]]],[26824,28616]]]]},{"k":"G4915","v":[["equals",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29071]]]]},{"k":"G4916","v":[["*",[2,2,[[44,1,1,0,1,[[1051,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[28072,29506]]],["buried",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28072]]],["with",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29506]]]]},{"k":"G4917","v":[["broken",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,1,1,1,2,[[992,1,1,1,2]]]],[23870,25797]]]]},{"k":"G4918","v":[["*",[2,2,[[40,2,2,0,2,[[961,2,2,0,2]]]],[24388,24395]]],["thronged",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24388]]],["thronging",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24395]]]]},{"k":"G4919","v":[["break",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27677]]]]},{"k":"G4920","v":[["*",[26,25,[[39,9,9,0,9,[[941,6,6,0,6],[943,1,1,6,7],[944,1,1,7,8],[945,1,1,8,9]]],[40,5,5,9,14,[[960,1,1,9,10],[962,1,1,10,11],[963,1,1,11,12],[964,2,2,12,14]]],[41,4,4,14,18,[[974,1,1,14,15],[980,1,1,15,16],[990,1,1,16,17],[996,1,1,17,18]]],[43,4,3,18,21,[[1024,2,1,18,19],[1045,2,2,19,21]]],[44,2,2,21,23,[[1048,1,1,21,22],[1060,1,1,22,23]]],[46,1,1,23,24,[[1087,1,1,23,24]]],[48,1,1,24,25,[[1101,1,1,24,25]]]],[23552,23553,23554,23558,23562,23590,23643,23684,23713,24335,24459,24477,24517,24521,25023,25255,25722,26036,27141,27925,27926,28002,28324,28983,29321]]],["+",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28983]]],["considered",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24459]]],["understand",[13,13,[[39,4,4,0,4,[[941,3,3,0,3],[943,1,1,3,4]]],[40,4,4,4,8,[[960,1,1,4,5],[963,1,1,5,6],[964,2,2,6,8]]],[41,2,2,8,10,[[980,1,1,8,9],[996,1,1,9,10]]],[43,2,2,10,12,[[1045,2,2,10,12]]],[44,1,1,12,13,[[1060,1,1,12,13]]]],[23552,23553,23554,23643,24335,24477,24517,24521,25255,26036,27925,27926,28324]]],["understandeth",[3,3,[[39,2,2,0,2,[[941,2,2,0,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]]],[23558,23562,28002]]],["understanding",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29321]]],["understood",[7,6,[[39,3,3,0,3,[[941,1,1,0,1],[944,1,1,1,2],[945,1,1,2,3]]],[41,2,2,3,5,[[974,1,1,3,4],[990,1,1,4,5]]],[43,2,1,5,6,[[1024,2,1,5,6]]]],[23590,23684,23713,25023,25722,27141]]]]},{"k":"G4921","v":[["*",[16,15,[[41,1,1,0,1,[[981,1,1,0,1]]],[44,3,3,1,4,[[1048,1,1,1,2],[1050,1,1,2,3],[1061,1,1,3,4]]],[46,9,8,4,12,[[1080,1,1,4,5],[1081,1,1,5,6],[1082,1,1,6,7],[1083,1,1,7,8],[1084,1,1,8,9],[1087,3,2,9,11],[1089,1,1,11,12]]],[47,1,1,12,13,[[1092,1,1,12,13]]],[50,1,1,13,14,[[1107,1,1,13,14]]],[60,1,1,14,15,[[1158,1,1,14,15]]]],[25333,27996,28055,28337,28842,28861,28889,28902,28927,28983,28989,29033,29099,29482,30527]]],["approved",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28927]]],["approving",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28902]]],["commend",[5,5,[[44,2,2,0,2,[[1048,1,1,0,1],[1061,1,1,1,2]]],[46,3,3,2,5,[[1080,1,1,2,3],[1082,1,1,3,4],[1087,1,1,4,5]]]],[27996,28337,28842,28889,28983]]],["commended",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29033]]],["commendeth",[3,2,[[44,1,1,0,1,[[1050,1,1,0,1]]],[46,2,1,1,2,[[1087,2,1,1,2]]]],[28055,28989]]],["commending",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28861]]],["consist",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29482]]],["make",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29099]]],["standing",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30527]]],["with",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25333]]]]},{"k":"G4922","v":[["with",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27223]]]]},{"k":"G4923","v":[["company",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25017]]]]},{"k":"G4924","v":[["with",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30431]]]]},{"k":"G4925","v":[["together",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29251]]]]},{"k":"G4926","v":[["with",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27286]]]]},{"k":"G4927","v":[["+",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27564]]]]},{"k":"G4928","v":[["*",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[46,1,1,1,2,[[1079,1,1,1,2]]]],[25851,28828]]],["anguish",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28828]]],["distress",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25851]]]]},{"k":"G4929","v":[["appointed",[2,2,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]]],[24073,24139]]]]},{"k":"G4930","v":[["end",[6,6,[[39,5,5,0,5,[[941,3,3,0,3],[952,1,1,3,4],[956,1,1,4,5]]],[57,1,1,5,6,[[1141,1,1,5,6]]]],[23578,23579,23588,23960,24215,30131]]]]},{"k":"G4931","v":[["*",[7,7,[[39,1,1,0,1,[[935,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,2,2,2,4,[[976,2,2,2,4]]],[43,1,1,4,5,[[1038,1,1,4,5]]],[44,1,1,5,6,[[1054,1,1,5,6]]],[57,1,1,6,7,[[1140,1,1,6,7]]]],[23344,24721,25065,25076,27691,28183,30100]]],["ended",[4,4,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,2,2,1,3,[[976,2,2,1,3]]],[43,1,1,3,4,[[1038,1,1,3,4]]]],[23344,25065,25076,27691]]],["finish",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28183]]],["fulfilled",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24721]]],["make",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30100]]]]},{"k":"G4932","v":[["short",[2,1,[[44,2,1,0,1,[[1054,2,1,0,1]]]],[28183]]]]},{"k":"G4933","v":[["*",[4,4,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,2,2,2,4,[[974,1,1,2,3],[977,1,1,3,4]]]],[23396,24427,24992,25145]]],["kept",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24992]]],["observed",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24427]]],["preserved",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]]],[23396,25145]]]]},{"k":"G4934","v":[["*",[4,4,[[41,1,1,0,1,[[994,1,1,0,1]]],[42,1,1,1,2,[[1005,1,1,1,2]]],[43,2,2,2,4,[[1040,1,1,2,3],[1041,1,1,3,4]]]],[25869,26462,27754,27778]]],["agreed",[2,2,[[42,1,1,0,1,[[1005,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[26462,27754]]],["assented",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27778]]],["covenanted",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25869]]]]},{"k":"G4935","v":[["words",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27773]]]]},{"k":"G4936","v":[["*",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[43,1,1,1,2,[[1020,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[24440,27007,30450]]],["+",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30450]]],["ran",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24440]]],["together",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27007]]]]},{"k":"G4937","v":[["*",[8,8,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[970,1,1,2,3]]],[41,2,2,3,5,[[976,1,1,3,4],[981,1,1,4,5]]],[42,1,1,5,6,[[1015,1,1,5,6]]],[44,1,1,6,7,[[1061,1,1,6,7]]],[65,1,1,7,8,[[1168,1,1,7,8]]]],[23509,24368,24757,25081,25340,26861,28356,30744]]],["+",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25081]]],["brake",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24757]]],["broken",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26861]]],["bruise",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28356]]],["bruised",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23509]]],["bruising",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25340]]],["pieces",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24368]]],["shivers",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30744]]]]},{"k":"G4938","v":[["Destruction",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28007]]]]},{"k":"G4939","v":[["with",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27363]]]]},{"k":"G4940","v":[["at",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25264]]]]},{"k":"G4941","v":[["Syntyche",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29444]]]]},{"k":"G4942","v":[["+",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29094]]]]},{"k":"G4943","v":[["together",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28811]]]]},{"k":"G4944","v":[["together",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28138]]]]},{"k":"G4945","v":[["conspiracy",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27747]]]]},{"k":"G4946","v":[["Syracuse",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27911]]]]},{"k":"G4947","v":[["Syria",[8,8,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[43,5,5,2,7,[[1032,2,2,2,4],[1035,1,1,4,5],[1037,1,1,5,6],[1038,1,1,6,7]]],[47,1,1,7,8,[[1091,1,1,7,8]]]],[23233,24975,27465,27483,27575,27629,27667,29078]]]]},{"k":"G4948","v":[["Syrian",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25090]]]]},{"k":"G4949","v":[["Syrophenician",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24489]]]]},{"k":"G4950","v":[["quicksands",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27872]]]]},{"k":"G4951","v":[["*",[5,5,[[42,1,1,0,1,[[1017,1,1,0,1]]],[43,3,3,1,4,[[1025,1,1,1,2],[1031,1,1,2,3],[1034,1,1,3,4]]],[65,1,1,4,5,[[1178,1,1,4,5]]]],[26906,27179,27433,27529,30895]]],["dragging",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26906]]],["drew",[3,3,[[43,2,2,0,2,[[1031,1,1,0,1],[1034,1,1,1,2]]],[65,1,1,2,3,[[1178,1,1,2,3]]]],[27433,27529,30895]]],["haling",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27179]]]]},{"k":"G4952","v":[["tare",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25343]]]]},{"k":"G4953","v":[["token",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24798]]]]},{"k":"G4954","v":[["body",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29257]]]]},{"k":"G4955","v":[["him",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24833]]]]},{"k":"G4956","v":[["commendation",[2,1,[[46,2,1,0,1,[[1080,2,1,0,1]]]],[28842]]]]},{"k":"G4957","v":[["with",[5,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]],[44,1,1,3,4,[[1051,1,1,3,4]]],[47,1,1,4,5,[[1092,1,1,4,5]]]],[24173,24858,26857,28074,29101]]]]},{"k":"G4958","v":[["*",[2,2,[[43,1,1,0,1,[[1022,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[27065,28516]]],["+",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27065]]],["short",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28516]]]]},{"k":"G4959","v":[["groaneth",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28138]]]]},{"k":"G4960","v":[["to",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29156]]]]},{"k":"G4961","v":[["fellowsoldier",[2,2,[[49,1,1,0,1,[[1104,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[29416,29940]]]]},{"k":"G4962","v":[["gathered",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27902]]]]},{"k":"G4963","v":[["*",[2,2,[[43,2,2,0,2,[[1036,1,1,0,1],[1040,1,1,1,2]]]],[27625,27746]]],["+",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27746]]],["concourse",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27625]]]]},{"k":"G4964","v":[["*",[2,2,[[44,1,1,0,1,[[1057,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[28247,30388]]],["conformed",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28247]]],["yourselves",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30388]]]]},{"k":"G4965","v":[["Sychar",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26161]]]]},{"k":"G4966","v":[["Sychem",[2,1,[[43,2,1,0,1,[[1024,2,1,0,1]]]],[27132]]]]},{"k":"G4967","v":[["slaughter",[3,3,[[43,1,1,0,1,[[1025,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]],[58,1,1,2,3,[[1150,1,1,2,3]]]],[27208,28152,30359]]]]},{"k":"G4968","v":[["beasts",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27158]]]]},{"k":"G4969","v":[["*",[10,9,[[61,2,1,0,1,[[1161,2,1,0,1]]],[65,8,8,1,9,[[1171,3,3,1,4],[1172,2,2,4,6],[1179,2,2,6,8],[1184,1,1,8,9]]]],[30591,30785,30788,30791,30797,30802,30911,30916,31017]]],["kill",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30797]]],["slain",[6,6,[[65,6,6,0,6,[[1171,3,3,0,3],[1172,1,1,3,4],[1179,1,1,4,5],[1184,1,1,5,6]]]],[30785,30788,30791,30802,30916,31017]]],["slew",[2,1,[[61,2,1,0,1,[[1161,2,1,0,1]]]],[30591]]],["wounded",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30911]]]]},{"k":"G4970","v":[["*",[11,11,[[39,7,7,0,7,[[930,1,1,0,1],[945,2,2,1,3],[946,1,1,3,4],[947,1,1,4,5],[954,1,1,5,6],[955,1,1,6,7]]],[40,1,1,7,8,[[972,1,1,7,8]]],[41,1,1,8,9,[[990,1,1,8,9]]],[43,1,1,9,10,[[1023,1,1,9,10]]],[65,1,1,10,11,[[1182,1,1,10,11]]]],[23179,23706,23723,23758,23787,24076,24183,24877,25711,27108,30975]]],["+",[4,4,[[39,4,4,0,4,[[945,2,2,0,2],[946,1,1,2,3],[954,1,1,3,4]]]],[23706,23723,23758,24076]]],["exceeding",[2,2,[[39,1,1,0,1,[[930,1,1,0,1]]],[65,1,1,1,2,[[1182,1,1,1,2]]]],[23179,30975]]],["exceedingly",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23787]]],["greatly",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[43,1,1,1,2,[[1023,1,1,1,2]]]],[24183,27108]]],["very",[2,2,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]]],[24877,25711]]]]},{"k":"G4971","v":[["exceedingly",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27873]]]]},{"k":"G4972","v":[["*",[26,17,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,2,2,1,3,[[999,1,1,1,2],[1002,1,1,2,3]]],[44,1,1,3,4,[[1060,1,1,3,4]]],[46,2,2,4,6,[[1078,1,1,4,5],[1088,1,1,5,6]]],[48,2,2,6,8,[[1097,1,1,6,7],[1100,1,1,7,8]]],[65,18,9,8,17,[[1173,15,6,8,14],[1176,1,1,14,15],[1186,1,1,15,16],[1188,1,1,16,17]]]],[24195,26153,26284,28331,28822,28999,29219,29302,30813,30814,30815,30816,30817,30818,30865,31041,31090]]],["+",[2,2,[[46,2,2,0,2,[[1078,1,1,0,1],[1088,1,1,1,2]]]],[28822,28999]]],["Seal",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31090]]],["seal",[2,2,[[42,1,1,0,1,[[999,1,1,0,1]]],[65,1,1,1,2,[[1186,1,1,1,2]]]],[26153,31041]]],["sealed",[19,10,[[42,1,1,0,1,[[1002,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[48,2,2,2,4,[[1097,1,1,2,3],[1100,1,1,3,4]]],[65,15,6,4,10,[[1173,15,6,4,10]]]],[26284,28331,29219,29302,30813,30814,30815,30816,30817,30818]]],["sealing",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24195]]],["up",[1,1,[[65,1,1,0,1,[[1176,1,1,0,1]]]],[30865]]]]},{"k":"G4973","v":[["*",[16,16,[[44,1,1,0,1,[[1049,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[65,13,13,3,16,[[1171,4,4,3,7],[1172,6,6,7,13],[1173,1,1,13,14],[1174,1,1,14,15],[1175,1,1,15,16]]]],[28033,28542,29846,30780,30781,30784,30788,30794,30796,30798,30800,30802,30805,30812,30828,30844]]],["seal",[11,11,[[44,1,1,0,1,[[1049,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[65,8,8,3,11,[[1172,5,5,3,8],[1173,1,1,8,9],[1174,1,1,9,10],[1175,1,1,10,11]]]],[28033,28542,29846,30796,30798,30800,30802,30805,30812,30828,30844]]],["seals",[5,5,[[65,5,5,0,5,[[1171,4,4,0,4],[1172,1,1,4,5]]]],[30780,30781,30784,30788,30794]]]]},{"k":"G4974","v":[["bones",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27003]]]]},{"k":"G4975","v":[["*",[3,3,[[43,2,2,0,2,[[1030,1,1,0,1],[1036,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[27406,27611,30127]]],["+",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27406]]],["almost",[2,2,[[43,1,1,0,1,[[1036,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[27611,30127]]]]},{"k":"G4976","v":[["fashion",[2,2,[[45,1,1,0,1,[[1068,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[28518,29399]]]]},{"k":"G4977","v":[["*",[10,9,[[39,2,1,0,1,[[955,2,1,0,1]]],[40,2,2,1,3,[[957,1,1,1,2],[971,1,1,2,3]]],[41,2,2,3,5,[[977,1,1,3,4],[995,1,1,4,5]]],[42,2,2,5,7,[[1015,1,1,5,6],[1017,1,1,6,7]]],[43,2,2,7,9,[[1031,1,1,7,8],[1040,1,1,8,9]]]],[24180,24225,24864,25143,25980,26849,26909,27418,27741]]],["broken",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26909]]],["divided",[2,2,[[43,2,2,0,2,[[1031,1,1,0,1],[1040,1,1,1,2]]]],[27418,27741]]],["opened",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24225]]],["rend",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26849]]],["rent",[5,4,[[39,2,1,0,1,[[955,2,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,2,2,2,4,[[977,1,1,2,3],[995,1,1,3,4]]]],[24180,24864,25143,25980]]]]},{"k":"G4978","v":[["*",[8,8,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[42,3,3,2,5,[[1003,1,1,2,3],[1005,1,1,3,4],[1006,1,1,4,5]]],[45,3,3,5,8,[[1062,1,1,5,6],[1072,1,1,6,7],[1073,1,1,7,8]]]],[23395,24281,26371,26456,26500,28373,28618,28659]]],["division",[3,3,[[42,3,3,0,3,[[1003,1,1,0,1],[1005,1,1,1,2],[1006,1,1,2,3]]]],[26371,26456,26500]]],["divisions",[2,2,[[45,2,2,0,2,[[1062,1,1,0,1],[1072,1,1,1,2]]]],[28373,28618]]],["rent",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]]],[23395,24281]]],["schism",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28659]]]]},{"k":"G4979","v":[["*",[2,2,[[42,1,1,0,1,[[998,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[26110,27887]]],["cords",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26110]]],["ropes",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27887]]]]},{"k":"G4980","v":[["*",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[23533,28492]]],["empty",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23533]]],["yourselves",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28492]]]]},{"k":"G4981","v":[["school",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27594]]]]},{"k":"G4982","v":[["*",[110,103,[[39,16,14,0,14,[[929,1,1,0,1],[936,1,1,1,2],[937,3,2,2,4],[938,1,1,4,5],[942,1,1,5,6],[944,1,1,6,7],[946,1,1,7,8],[947,1,1,8,9],[952,2,2,9,11],[955,4,3,11,14]]],[40,15,13,14,27,[[959,1,1,14,15],[961,3,3,15,18],[962,1,1,18,19],[964,2,1,19,20],[966,2,2,20,22],[969,2,2,22,24],[971,3,2,24,26],[972,1,1,26,27]]],[41,19,17,27,44,[[978,1,1,27,28],[979,1,1,28,29],[980,4,4,29,33],[981,3,2,33,35],[985,1,1,35,36],[989,2,2,36,38],[990,2,2,38,40],[991,1,1,40,41],[995,4,3,41,44]]],[42,6,6,44,50,[[999,1,1,44,45],[1001,1,1,45,46],[1006,1,1,46,47],[1007,1,1,47,48],[1008,2,2,48,50]]],[43,13,13,50,63,[[1019,3,3,50,53],[1021,2,2,53,55],[1028,1,1,55,56],[1031,1,1,56,57],[1032,2,2,57,59],[1033,2,2,59,61],[1044,2,2,61,63]]],[44,8,8,63,71,[[1050,2,2,63,65],[1053,1,1,65,66],[1054,1,1,66,67],[1055,2,2,67,69],[1056,2,2,69,71]]],[45,9,8,71,79,[[1062,2,2,71,73],[1064,1,1,73,74],[1066,1,1,74,75],[1068,2,1,75,76],[1070,1,1,76,77],[1071,1,1,77,78],[1076,1,1,78,79]]],[46,1,1,79,80,[[1079,1,1,79,80]]],[48,2,2,80,82,[[1098,2,2,80,82]]],[51,1,1,82,83,[[1112,1,1,82,83]]],[52,1,1,83,84,[[1117,1,1,83,84]]],[53,4,4,84,88,[[1119,1,1,84,85],[1120,2,2,85,87],[1122,1,1,87,88]]],[54,2,2,88,90,[[1125,1,1,88,89],[1128,1,1,89,90]]],[55,1,1,90,91,[[1131,1,1,90,91]]],[57,2,2,91,93,[[1137,1,1,91,92],[1139,1,1,92,93]]],[58,5,5,93,98,[[1146,1,1,93,94],[1147,1,1,94,95],[1149,1,1,95,96],[1150,2,2,96,98]]],[59,2,2,98,100,[[1153,1,1,98,99],[1154,1,1,99,100]]],[64,2,2,100,102,[[1166,2,2,100,102]]],[65,1,1,102,103,[[1187,1,1,102,103]]]],[23165,23370,23400,23401,23439,23627,23697,23738,23787,23970,23979,24169,24171,24178,24292,24387,24392,24398,24463,24535,24614,24640,24730,24737,24856,24857,24889,25155,25245,25257,25281,25293,25295,25325,25357,25541,25670,25684,25714,25730,25741,25970,25972,25974,26137,26244,26490,26535,26607,26627,26970,26989,26996,27031,27034,27321,27423,27443,27453,27513,27514,27875,27886,28056,28057,28140,28182,28197,28201,28223,28235,28381,28384,28425,28459,28503,28562,28600,28720,28839,29234,29237,29586,29671,29711,29720,29731,29763,29818,29888,29928,30037,30089,30287,30307,30349,30369,30374,30445,30464,30677,30695,31077]]],["+",[7,7,[[39,2,2,0,2,[[937,1,1,0,1],[952,1,1,1,2]]],[40,3,3,2,5,[[961,1,1,2,3],[966,1,1,3,4],[969,1,1,4,5]]],[41,2,2,5,7,[[980,1,1,5,6],[989,1,1,6,7]]]],[23401,23979,24398,24640,24737,25293,25670]]],["Save",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[24856,26989]]],["healed",[3,3,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[43,1,1,2,3,[[1031,1,1,2,3]]]],[24387,25281,27423]]],["preserve",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29888]]],["save",[39,36,[[39,8,8,0,8,[[929,1,1,0,1],[936,1,1,1,2],[942,1,1,2,3],[944,1,1,3,4],[946,1,1,4,5],[955,3,3,5,8]]],[40,4,3,8,11,[[959,1,1,8,9],[964,2,1,9,10],[971,1,1,10,11]]],[41,9,8,11,19,[[978,1,1,11,12],[981,3,2,12,14],[989,1,1,14,15],[991,1,1,15,16],[995,3,3,16,19]]],[42,2,2,19,21,[[1008,2,2,19,21]]],[44,1,1,21,22,[[1056,1,1,21,22]]],[45,4,3,22,25,[[1062,1,1,22,23],[1068,2,1,23,24],[1070,1,1,24,25]]],[53,2,2,25,27,[[1119,1,1,25,26],[1122,1,1,26,27]]],[57,2,2,27,29,[[1137,1,1,27,28],[1139,1,1,28,29]]],[58,5,5,29,34,[[1146,1,1,29,30],[1147,1,1,30,31],[1149,1,1,31,32],[1150,2,2,32,34]]],[59,1,1,34,35,[[1153,1,1,34,35]]],[64,1,1,35,36,[[1166,1,1,35,36]]]],[23165,23370,23627,23697,23738,24169,24171,24178,24292,24535,24857,25155,25325,25357,25684,25741,25970,25972,25974,26607,26627,28223,28384,28503,28562,29711,29763,30037,30089,30287,30307,30349,30369,30374,30445,30695]]],["saved",[51,51,[[39,4,4,0,4,[[938,1,1,0,1],[947,1,1,1,2],[952,1,1,2,3],[955,1,1,3,4]]],[40,4,4,4,8,[[966,1,1,4,5],[969,1,1,5,6],[971,1,1,6,7],[972,1,1,7,8]]],[41,6,6,8,14,[[979,1,1,8,9],[980,1,1,9,10],[985,1,1,10,11],[990,2,2,11,13],[995,1,1,13,14]]],[42,3,3,14,17,[[999,1,1,14,15],[1001,1,1,15,16],[1006,1,1,16,17]]],[43,10,10,17,27,[[1019,2,2,17,19],[1021,1,1,19,20],[1028,1,1,20,21],[1032,2,2,21,23],[1033,2,2,23,25],[1044,2,2,25,27]]],[44,7,7,27,34,[[1050,2,2,27,29],[1053,1,1,29,30],[1054,1,1,30,31],[1055,2,2,31,33],[1056,1,1,33,34]]],[45,5,5,34,39,[[1062,1,1,34,35],[1064,1,1,35,36],[1066,1,1,36,37],[1071,1,1,37,38],[1076,1,1,38,39]]],[46,1,1,39,40,[[1079,1,1,39,40]]],[48,2,2,40,42,[[1098,2,2,40,42]]],[51,1,1,42,43,[[1112,1,1,42,43]]],[52,1,1,43,44,[[1117,1,1,43,44]]],[53,2,2,44,46,[[1120,2,2,44,46]]],[54,1,1,46,47,[[1125,1,1,46,47]]],[55,1,1,47,48,[[1131,1,1,47,48]]],[59,1,1,48,49,[[1154,1,1,48,49]]],[64,1,1,49,50,[[1166,1,1,49,50]]],[65,1,1,50,51,[[1187,1,1,50,51]]]],[23439,23787,23970,24171,24614,24730,24857,24889,25245,25257,25541,25714,25730,25970,26137,26244,26490,26970,26996,27034,27321,27443,27453,27513,27514,27875,27886,28056,28057,28140,28182,28197,28201,28235,28381,28425,28459,28600,28720,28839,29234,29237,29586,29671,29720,29731,29818,29928,30464,30677,31077]]],["well",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26535]]],["whole",[6,6,[[39,2,2,0,2,[[937,2,2,0,2]]],[40,2,2,2,4,[[961,1,1,2,3],[962,1,1,3,4]]],[41,1,1,4,5,[[980,1,1,4,5]]],[43,1,1,5,6,[[1021,1,1,5,6]]]],[23400,23401,24392,24463,25295,27031]]]]},{"k":"G4983","v":[["*",[146,122,[[39,16,12,0,12,[[933,2,2,0,2],[934,5,3,2,5],[938,2,1,5,6],[942,1,1,6,7],[954,2,2,7,9],[955,4,3,9,12]]],[40,5,5,12,17,[[961,1,1,12,13],[970,2,2,13,15],[971,2,2,15,17]]],[41,13,11,17,28,[[983,4,2,17,19],[984,3,3,19,22],[989,1,1,22,23],[994,1,1,23,24],[995,2,2,24,26],[996,2,2,26,28]]],[42,6,5,28,33,[[998,1,1,28,29],[1015,4,3,29,32],[1016,1,1,32,33]]],[43,1,1,33,34,[[1026,1,1,33,34]]],[44,13,13,34,47,[[1046,1,1,34,35],[1049,1,1,35,36],[1051,2,2,36,38],[1052,2,2,38,40],[1053,4,4,40,44],[1057,3,3,44,47]]],[45,47,35,47,82,[[1066,1,1,47,48],[1067,8,6,48,54],[1068,3,2,54,56],[1070,1,1,56,57],[1071,2,2,57,59],[1072,3,3,59,62],[1073,18,14,62,76],[1074,1,1,76,77],[1076,10,5,77,82]]],[46,10,7,82,89,[[1081,2,1,82,83],[1082,3,3,83,86],[1087,1,1,86,87],[1089,4,2,87,89]]],[47,1,1,89,90,[[1096,1,1,89,90]]],[48,9,8,90,98,[[1097,1,1,90,91],[1098,1,1,91,92],[1100,4,3,92,95],[1101,3,3,95,98]]],[49,3,2,98,100,[[1103,1,1,98,99],[1105,2,1,99,100]]],[50,8,8,100,108,[[1107,3,3,100,103],[1108,4,4,103,107],[1109,1,1,107,108]]],[51,1,1,108,109,[[1115,1,1,108,109]]],[57,5,5,109,114,[[1142,3,3,109,112],[1145,2,2,112,114]]],[58,5,5,114,119,[[1147,2,2,114,116],[1148,3,3,116,119]]],[59,1,1,119,120,[[1152,1,1,119,120]]],[64,1,1,120,121,[[1166,1,1,120,121]]],[65,1,1,121,122,[[1184,1,1,121,122]]]],[23263,23264,23304,23305,23307,23445,23609,24066,24080,24181,24187,24188,24393,24762,24776,24869,24871,25439,25441,25463,25481,25482,25688,25883,25987,25990,25994,26014,26116,26856,26863,26865,26879,27256,27954,28041,28074,28080,28095,28115,28126,28127,28129,28139,28246,28249,28250,28457,28480,28482,28483,28485,28486,28487,28491,28521,28567,28583,28584,28624,28627,28629,28646,28647,28648,28649,28650,28651,28652,28653,28654,28656,28657,28658,28659,28661,28668,28753,28755,28756,28758,28762,28869,28883,28885,28887,28981,29024,29025,29205,29229,29245,29276,29284,29288,29327,29332,29334,29381,29442,29483,29487,29489,29505,29511,29513,29517,29532,29644,30138,30143,30155,30244,30252,30309,30319,30321,30322,30325,30423,30681,31006]]],["+",[2,2,[[45,1,1,0,1,[[1073,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[28658,29489]]],["bodies",[11,10,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]],[44,3,3,2,5,[[1046,1,1,2,3],[1053,1,1,3,4],[1057,1,1,4,5]]],[45,3,2,5,7,[[1067,1,1,5,6],[1076,2,1,6,7]]],[48,1,1,7,8,[[1101,1,1,7,8]]],[57,2,2,8,10,[[1142,1,1,8,9],[1145,1,1,9,10]]]],[24181,26856,27954,28127,28246,28482,28758,29332,30155,30252]]],["bodily",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28981]]],["body",[131,108,[[39,15,11,0,11,[[933,2,2,0,2],[934,5,3,2,5],[938,2,1,5,6],[942,1,1,6,7],[954,2,2,7,9],[955,3,2,9,11]]],[40,5,5,11,16,[[961,1,1,11,12],[970,2,2,12,14],[971,2,2,14,16]]],[41,13,11,16,27,[[983,4,2,16,18],[984,3,3,18,21],[989,1,1,21,22],[994,1,1,22,23],[995,2,2,23,25],[996,2,2,25,27]]],[42,5,4,27,31,[[998,1,1,27,28],[1015,3,2,28,30],[1016,1,1,30,31]]],[43,1,1,31,32,[[1026,1,1,31,32]]],[44,10,10,32,42,[[1049,1,1,32,33],[1051,2,2,33,35],[1052,2,2,35,37],[1053,3,3,37,40],[1057,2,2,40,42]]],[45,43,32,42,74,[[1066,1,1,42,43],[1067,7,5,43,48],[1068,3,2,48,50],[1070,1,1,50,51],[1071,2,2,51,53],[1072,3,3,53,56],[1073,17,13,56,69],[1074,1,1,69,70],[1076,8,4,70,74]]],[46,9,6,74,80,[[1081,2,1,74,75],[1082,3,3,75,78],[1089,4,2,78,80]]],[47,1,1,80,81,[[1096,1,1,80,81]]],[48,8,7,81,88,[[1097,1,1,81,82],[1098,1,1,82,83],[1100,4,3,83,86],[1101,2,2,86,88]]],[49,3,2,88,90,[[1103,1,1,88,89],[1105,2,1,89,90]]],[50,7,7,90,97,[[1107,2,2,90,92],[1108,4,4,92,96],[1109,1,1,96,97]]],[51,1,1,97,98,[[1115,1,1,97,98]]],[57,3,3,98,101,[[1142,2,2,98,100],[1145,1,1,100,101]]],[58,5,5,101,106,[[1147,2,2,101,103],[1148,3,3,103,106]]],[59,1,1,106,107,[[1152,1,1,106,107]]],[64,1,1,107,108,[[1166,1,1,107,108]]]],[23263,23264,23304,23305,23307,23445,23609,24066,24080,24187,24188,24393,24762,24776,24869,24871,25439,25441,25463,25481,25482,25688,25883,25987,25990,25994,26014,26116,26863,26865,26879,27256,28041,28074,28080,28095,28115,28126,28129,28139,28249,28250,28457,28480,28483,28485,28486,28487,28491,28521,28567,28583,28584,28624,28627,28629,28646,28647,28648,28649,28650,28651,28652,28653,28654,28656,28657,28659,28661,28668,28753,28755,28756,28762,28869,28883,28885,28887,29024,29025,29205,29229,29245,29276,29284,29288,29327,29334,29381,29442,29483,29487,29505,29511,29513,29517,29532,29644,30138,30143,30244,30309,30319,30321,30322,30325,30423,30681]]],["slaves",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31006]]]]},{"k":"G4984","v":[["bodily",[2,2,[[41,1,1,0,1,[[975,1,1,0,1]]],[53,1,1,1,2,[[1122,1,1,1,2]]]],[25047,29755]]]]},{"k":"G4985","v":[["bodily",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29503]]]]},{"k":"G4986","v":[["Sopater",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27630]]]]},{"k":"G4987","v":[["*",[2,2,[[44,1,1,0,1,[[1057,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[28265,29859]]],["heap",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28265]]],["laden",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29859]]]]},{"k":"G4988","v":[["Sosthenes",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]]],[27574,28364]]]]},{"k":"G4989","v":[["Sosipater",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28357]]]]},{"k":"G4990","v":[["*",[24,24,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]],[42,1,1,2,3,[[1000,1,1,2,3]]],[43,2,2,3,5,[[1022,1,1,3,4],[1030,1,1,4,5]]],[48,1,1,5,6,[[1101,1,1,5,6]]],[49,1,1,6,7,[[1105,1,1,6,7]]],[53,3,3,7,10,[[1119,1,1,7,8],[1120,1,1,8,9],[1122,1,1,9,10]]],[54,1,1,10,11,[[1125,1,1,10,11]]],[55,6,6,11,17,[[1129,2,2,11,13],[1130,2,2,13,15],[1131,2,2,15,17]]],[60,5,5,17,22,[[1156,2,2,17,19],[1157,1,1,19,20],[1158,2,2,20,22]]],[61,1,1,22,23,[[1162,1,1,22,23]]],[64,1,1,23,24,[[1166,1,1,23,24]]]],[24940,24984,26198,27090,27385,29327,29441,29697,29719,29757,29819,29895,29896,29918,29921,29927,29929,30480,30490,30520,30524,30540,30617,30697]]],["+",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29927]]],["Saviour",[22,22,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]],[42,1,1,2,3,[[1000,1,1,2,3]]],[43,2,2,3,5,[[1022,1,1,3,4],[1030,1,1,4,5]]],[49,1,1,5,6,[[1105,1,1,5,6]]],[53,3,3,6,9,[[1119,1,1,6,7],[1120,1,1,7,8],[1122,1,1,8,9]]],[54,1,1,9,10,[[1125,1,1,9,10]]],[55,5,5,10,15,[[1129,2,2,10,12],[1130,2,2,12,14],[1131,1,1,14,15]]],[60,5,5,15,20,[[1156,2,2,15,17],[1157,1,1,17,18],[1158,2,2,18,20]]],[61,1,1,20,21,[[1162,1,1,20,21]]],[64,1,1,21,22,[[1166,1,1,21,22]]]],[24940,24984,26198,27090,27385,29441,29697,29719,29757,29819,29895,29896,29918,29921,29929,30480,30490,30520,30524,30540,30617,30697]]],["saviour",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29327]]]]},{"k":"G4991","v":[["*",[45,43,[[41,4,4,0,4,[[973,3,3,0,3],[991,1,1,3,4]]],[42,1,1,4,5,[[1000,1,1,4,5]]],[43,6,6,5,11,[[1021,1,1,5,6],[1024,1,1,6,7],[1030,2,2,7,9],[1033,1,1,9,10],[1044,1,1,10,11]]],[44,5,5,11,16,[[1046,1,1,11,12],[1055,2,2,12,14],[1056,1,1,14,15],[1058,1,1,15,16]]],[46,5,3,16,19,[[1078,2,1,16,17],[1083,2,1,17,18],[1084,1,1,18,19]]],[48,1,1,19,20,[[1097,1,1,19,20]]],[49,3,3,20,23,[[1103,2,2,20,22],[1104,1,1,22,23]]],[51,2,2,23,25,[[1115,2,2,23,25]]],[52,1,1,25,26,[[1117,1,1,25,26]]],[54,2,2,26,28,[[1126,1,1,26,27],[1127,1,1,27,28]]],[57,7,7,28,35,[[1133,1,1,28,29],[1134,2,2,29,31],[1137,1,1,31,32],[1138,1,1,32,33],[1141,1,1,33,34],[1143,1,1,34,35]]],[59,3,3,35,38,[[1151,3,3,35,38]]],[60,1,1,38,39,[[1158,1,1,38,39]]],[64,1,1,39,40,[[1166,1,1,39,40]]],[65,3,3,40,43,[[1173,1,1,40,41],[1178,1,1,41,42],[1185,1,1,42,43]]]],[24962,24964,24970,25740,26178,27034,27141,27388,27409,27500,27889,27946,28189,28198,28220,28277,28806,28900,28926,29219,29380,29389,29403,29629,29630,29674,29837,29868,29977,29980,29987,30039,30053,30133,30179,30379,30383,30384,30537,30675,30820,30901,31018]]],["+",[4,4,[[43,1,1,0,1,[[1024,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]],[57,2,2,2,4,[[1134,1,1,2,3],[1143,1,1,3,4]]]],[27141,28189,29987,30179]]],["Salvation",[2,2,[[65,2,2,0,2,[[1173,1,1,0,1],[1185,1,1,1,2]]]],[30820,31018]]],["health",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27889]]],["salvation",[37,35,[[41,3,3,0,3,[[973,2,2,0,2],[991,1,1,2,3]]],[42,1,1,3,4,[[1000,1,1,3,4]]],[43,4,4,4,8,[[1021,1,1,4,5],[1030,2,2,5,7],[1033,1,1,7,8]]],[44,4,4,8,12,[[1046,1,1,8,9],[1055,1,1,9,10],[1056,1,1,10,11],[1058,1,1,11,12]]],[46,5,3,12,15,[[1078,2,1,12,13],[1083,2,1,13,14],[1084,1,1,14,15]]],[48,1,1,15,16,[[1097,1,1,15,16]]],[49,3,3,16,19,[[1103,2,2,16,18],[1104,1,1,18,19]]],[51,2,2,19,21,[[1115,2,2,19,21]]],[52,1,1,21,22,[[1117,1,1,21,22]]],[54,2,2,22,24,[[1126,1,1,22,23],[1127,1,1,23,24]]],[57,5,5,24,29,[[1133,1,1,24,25],[1134,1,1,25,26],[1137,1,1,26,27],[1138,1,1,27,28],[1141,1,1,28,29]]],[59,3,3,29,32,[[1151,3,3,29,32]]],[60,1,1,32,33,[[1158,1,1,32,33]]],[64,1,1,33,34,[[1166,1,1,33,34]]],[65,1,1,34,35,[[1178,1,1,34,35]]]],[24962,24970,25740,26178,27034,27388,27409,27500,27946,28198,28220,28277,28806,28900,28926,29219,29380,29389,29403,29629,29630,29674,29837,29868,29977,29980,30039,30053,30133,30379,30383,30384,30537,30675,30901]]],["saved",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24964]]]]},{"k":"G4992","v":[["salvation",[5,5,[[41,2,2,0,2,[[974,1,1,0,1],[975,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]],[48,1,1,3,4,[[1102,1,1,3,4]]],[55,1,1,4,5,[[1130,1,1,4,5]]]],[25003,25031,27927,29354,29919]]]]},{"k":"G4993","v":[["*",[6,6,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[46,1,1,3,4,[[1082,1,1,3,4]]],[55,1,1,4,5,[[1130,1,1,4,5]]],[59,1,1,5,6,[[1154,1,1,5,6]]]],[24379,25280,28248,28890,29914,30453]]],["+",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30453]]],["mind",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24379,25280]]],["minded",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29914]]],["sober",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28890]]],["soberly",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28248]]]]},{"k":"G4994","v":[["+",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29912]]]]},{"k":"G4995","v":[["mind",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29816]]]]},{"k":"G4996","v":[["+",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29920]]]]},{"k":"G4997","v":[["*",[3,3,[[43,1,1,0,1,[[1043,1,1,0,1]]],[53,2,2,1,3,[[1120,2,2,1,3]]]],[27848,29725,29731]]],["soberness",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27848]]],["sobriety",[2,2,[[53,2,2,0,2,[[1120,2,2,0,2]]]],[29725,29731]]]]},{"k":"G4998","v":[["*",[4,4,[[53,1,1,0,1,[[1121,1,1,0,1]]],[55,3,3,1,4,[[1129,1,1,1,2],[1130,2,2,2,4]]]],[29733,29900,29910,29913]]],["discreet",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29913]]],["sober",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[29733,29900]]],["temperate",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29910]]]]},{"k":"G4999","v":[["taverns",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27914]]]]},{"k":"G5000","v":[["Tabitha",[2,2,[[43,2,2,0,2,[[1026,2,2,0,2]]]],[27252,27256]]]]},{"k":"G5001","v":[["order",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28741]]]]},{"k":"G5002","v":[["set",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27358]]]]},{"k":"G5003","v":[["afflicted",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30346]]]]},{"k":"G5004","v":[["*",[2,2,[[44,1,1,0,1,[[1048,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[28007,30355]]],["miseries",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30355]]],["misery",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28007]]]]},{"k":"G5005","v":[["wretched",[2,2,[[44,1,1,0,1,[[1052,1,1,0,1]]],[65,1,1,1,2,[[1169,1,1,1,2]]]],[28115,30763]]]]},{"k":"G5006","v":[["talent",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30975]]]]},{"k":"G5007","v":[["*",[15,8,[[39,15,8,0,8,[[946,1,1,0,1],[953,14,7,1,8]]]],[23751,24023,24024,24028,24030,24032,24033,24036]]],["talent",[3,3,[[39,3,3,0,3,[[953,3,3,0,3]]]],[24032,24033,24036]]],["talents",[12,6,[[39,12,6,0,6,[[946,1,1,0,1],[953,11,5,1,6]]]],[23751,24023,24024,24028,24030,24036]]]]},{"k":"G5008","v":[["Talitha",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24405]]]]},{"k":"G5009","v":[["*",[4,4,[[39,2,2,0,2,[[934,1,1,0,1],[952,1,1,1,2]]],[41,2,2,2,4,[[984,2,2,2,4]]]],[23288,23983,25462,25483]]],["chambers",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23983]]],["closet",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23288]]],["closets",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25462]]],["storehouse",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25483]]]]},{"k":"G5010","v":[["order",[10,9,[[41,1,1,0,1,[[973,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]],[57,7,6,3,9,[[1137,2,2,3,5],[1138,1,1,5,6],[1139,4,3,6,9]]]],[24901,28718,29499,30036,30040,30064,30075,30081,30085]]]]},{"k":"G5011","v":[["*",[8,8,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[46,2,2,3,5,[[1084,1,1,3,4],[1087,1,1,4,5]]],[58,2,2,5,7,[[1146,1,1,5,6],[1149,1,1,6,7]]],[59,1,1,7,8,[[1155,1,1,7,8]]]],[23488,24945,28261,28922,28972,30275,30343,30470]]],["base",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28972]]],["degree",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[24945,30275]]],["down",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28922]]],["estate",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28261]]],["humble",[2,2,[[58,1,1,0,1,[[1149,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[30343,30470]]],["lowly",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23488]]]]},{"k":"G5012","v":[["*",[7,7,[[43,1,1,0,1,[[1037,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[50,3,3,3,6,[[1108,2,2,3,5],[1109,1,1,5,6]]],[59,1,1,6,7,[[1155,1,1,6,7]]]],[27645,29274,29394,29512,29517,29529,30470]]],["+",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29512]]],["humility",[2,2,[[50,1,1,0,1,[[1108,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[29517,30470]]],["lowliness",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29274]]],["mind",[3,3,[[43,1,1,0,1,[[1037,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]]],[27645,29394,29529]]]]},{"k":"G5013","v":[["*",[14,11,[[39,3,2,0,2,[[946,1,1,0,1],[951,2,1,1,2]]],[41,5,3,2,5,[[975,1,1,2,3],[986,2,1,3,4],[990,2,1,4,5]]],[46,2,2,5,7,[[1088,1,1,5,6],[1089,1,1,6,7]]],[49,2,2,7,9,[[1104,1,1,7,8],[1106,1,1,8,9]]],[58,1,1,9,10,[[1149,1,1,9,10]]],[59,1,1,10,11,[[1155,1,1,10,11]]]],[23731,23930,25030,25564,25702,28996,29043,29399,29454,30347,30471]]],["abased",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,2,2,1,3,[[986,1,1,1,2],[990,1,1,2,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]]],[23930,25564,25702,29454]]],["abasing",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28996]]],["humble",[3,3,[[39,2,2,0,2,[[946,1,1,0,1],[951,1,1,1,2]]],[46,1,1,2,3,[[1089,1,1,2,3]]]],[23731,23930,29043]]],["humbled",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29399]]],["humbleth",[2,2,[[41,2,2,0,2,[[986,1,1,0,1],[990,1,1,1,2]]]],[25564,25702]]],["low",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25030]]],["yourselves",[2,2,[[58,1,1,0,1,[[1149,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[30347,30471]]]]},{"k":"G5014","v":[["*",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]],[58,1,1,3,4,[[1146,1,1,3,4]]]],[24941,27209,29442,30276]]],["estate",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24941]]],["humiliation",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27209]]],["low",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30276]]],["vile",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29442]]]]},{"k":"G5015","v":[["*",[17,17,[[39,2,2,0,2,[[930,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[41,2,2,3,5,[[973,1,1,3,4],[996,1,1,4,5]]],[42,7,7,5,12,[[1001,2,2,5,7],[1007,1,1,7,8],[1008,1,1,8,9],[1009,1,1,9,10],[1010,2,2,10,12]]],[43,2,2,12,14,[[1032,1,1,12,13],[1034,1,1,13,14]]],[47,2,2,14,16,[[1091,1,1,14,15],[1095,1,1,15,16]]],[59,1,1,16,17,[[1153,1,1,16,17]]]],[23172,23623,24457,24905,26029,26214,26217,26556,26607,26651,26669,26695,27466,27531,29064,29172,30438]]],["+",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26556]]],["trouble",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29064]]],["troubled",[14,14,[[39,2,2,0,2,[[930,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[41,2,2,3,5,[[973,1,1,3,4],[996,1,1,4,5]]],[42,6,6,5,11,[[1001,2,2,5,7],[1008,1,1,7,8],[1009,1,1,8,9],[1010,2,2,9,11]]],[43,2,2,11,13,[[1032,1,1,11,12],[1034,1,1,12,13]]],[59,1,1,13,14,[[1153,1,1,13,14]]]],[23172,23623,24457,24905,26029,26214,26217,26607,26651,26669,26695,27466,27531,30438]]],["troubleth",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29172]]]]},{"k":"G5016","v":[["*",[2,2,[[40,1,1,0,1,[[969,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]]],[24725,26214]]],["troubles",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24725]]],["troubling",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26214]]]]},{"k":"G5017","v":[["stir",[2,2,[[43,2,2,0,2,[[1029,1,1,0,1],[1036,1,1,1,2]]]],[27355,27608]]]]},{"k":"G5018","v":[["Tarsus",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1038,1,1,1,2]]]],[27227,27703]]]]},{"k":"G5019","v":[["Tarsus",[3,3,[[43,3,3,0,3,[[1026,1,1,0,1],[1028,1,1,1,2],[1039,1,1,2,3]]]],[27246,27332,27707]]]]},{"k":"G5020","v":[["hell",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30504]]]]},{"k":"G5021","v":[["*",[8,8,[[39,1,1,0,1,[[956,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[43,4,4,2,6,[[1030,1,1,2,3],[1032,1,1,3,4],[1039,1,1,4,5],[1045,1,1,5,6]]],[44,1,1,6,7,[[1058,1,1,6,7]]],[45,1,1,7,8,[[1077,1,1,7,8]]]],[24211,25203,27410,27444,27714,27922,28267,28791]]],["addicted",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28791]]],["appointed",[3,3,[[39,1,1,0,1,[[956,1,1,0,1]]],[43,2,2,1,3,[[1039,1,1,1,2],[1045,1,1,2,3]]]],[24211,27714,27922]]],["determined",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27444]]],["ordained",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]]],[27410,28267]]],["set",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25203]]]]},{"k":"G5022","v":[["*",[4,4,[[39,1,1,0,1,[[950,1,1,0,1]]],[43,1,1,1,2,[[1031,1,1,1,2]]],[57,2,2,2,4,[[1141,1,1,2,3],[1142,1,1,3,4]]]],[23876,27427,30118,30137]]],["bulls",[2,2,[[57,2,2,0,2,[[1141,1,1,0,1],[1142,1,1,1,2]]]],[30118,30137]]],["oxen",[2,2,[[39,1,1,0,1,[[950,1,1,0,1]]],[43,1,1,1,2,[[1031,1,1,1,2]]]],[23876,27427]]]]},{"k":"G5023","v":[["*",[247,236,[[39,22,22,0,22,[[929,1,1,0,1],[932,1,1,1,2],[934,2,2,2,4],[937,1,1,4,5],[938,1,1,5,6],[939,1,1,6,7],[941,3,3,7,10],[943,1,1,10,11],[947,1,1,11,12],[949,3,3,12,15],[951,2,2,15,17],[952,5,5,17,22]]],[40,15,13,22,35,[[958,1,1,22,23],[962,1,1,23,24],[963,1,1,24,25],[966,1,1,25,26],[967,4,3,26,29],[969,5,4,29,33],[972,2,2,33,35]]],[41,48,47,35,82,[[973,3,3,35,38],[974,2,2,38,40],[976,1,1,40,41],[977,1,1,41,42],[979,1,1,42,43],[981,1,1,43,44],[982,2,2,44,46],[983,4,4,46,50],[984,3,3,50,53],[985,1,1,53,54],[986,3,3,54,57],[987,1,1,57,58],[988,1,1,58,59],[989,1,1,59,60],[990,5,5,60,65],[991,2,2,65,67],[992,2,2,67,69],[993,6,5,69,74],[995,3,3,74,77],[996,5,5,77,82]]],[42,63,59,82,141,[[997,1,1,82,83],[998,2,2,83,85],[999,4,4,85,89],[1001,5,5,89,94],[1002,3,3,94,97],[1003,4,4,97,101],[1004,4,4,101,105],[1005,3,3,105,108],[1006,2,2,108,110],[1007,3,3,110,113],[1008,5,3,113,116],[1009,3,3,116,119],[1010,1,1,119,120],[1011,3,3,120,123],[1012,7,6,123,129],[1013,2,2,129,131],[1014,2,2,131,133],[1015,3,3,133,136],[1016,3,3,136,139],[1017,3,2,139,141]]],[43,32,32,141,173,[[1018,1,1,141,142],[1022,2,2,142,144],[1024,4,4,144,148],[1027,1,1,148,149],[1028,1,1,149,150],[1029,1,1,150,151],[1030,2,2,151,153],[1031,2,2,153,155],[1032,2,2,155,157],[1033,1,1,157,158],[1034,3,3,158,161],[1035,1,1,161,162],[1036,2,2,162,164],[1037,1,1,164,165],[1038,1,1,165,166],[1040,1,1,166,167],[1041,2,2,167,169],[1043,2,2,169,171],[1044,1,1,171,172],[1045,1,1,172,173]]],[44,2,2,173,175,[[1053,1,1,173,174],[1054,1,1,174,175]]],[45,12,11,175,186,[[1065,2,2,175,177],[1067,3,3,177,180],[1070,3,2,180,182],[1071,2,2,182,184],[1073,1,1,184,185],[1074,1,1,185,186]]],[46,2,2,186,188,[[1079,1,1,186,187],[1090,1,1,187,188]]],[47,3,2,188,190,[[1092,1,1,188,189],[1095,2,1,189,190]]],[48,1,1,190,191,[[1101,1,1,190,191]]],[49,3,3,191,194,[[1105,1,1,191,192],[1106,2,2,192,194]]],[52,1,1,194,195,[[1117,1,1,194,195]]],[53,8,8,195,203,[[1121,1,1,195,196],[1122,3,3,196,199],[1123,2,2,199,201],[1124,2,2,201,203]]],[54,3,3,203,206,[[1125,1,1,203,204],[1126,2,2,204,206]]],[55,2,2,206,208,[[1130,1,1,206,207],[1131,1,1,207,208]]],[57,3,3,208,211,[[1136,1,1,208,209],[1139,1,1,209,210],[1143,1,1,210,211]]],[58,1,1,211,212,[[1148,1,1,211,212]]],[59,1,1,212,213,[[1151,1,1,212,213]]],[60,4,4,213,217,[[1156,3,3,213,216],[1158,1,1,216,217]]],[61,4,4,217,221,[[1159,1,1,217,218],[1160,2,2,218,220],[1163,1,1,220,221]]],[65,17,15,221,236,[[1167,1,1,221,222],[1170,2,1,222,223],[1173,2,2,223,225],[1175,1,1,225,226],[1176,1,1,226,227],[1181,1,1,227,228],[1182,1,1,228,229],[1184,1,1,229,230],[1185,1,1,230,231],[1186,1,1,231,232],[1188,5,4,232,236]]]],[23164,23218,23314,23315,23397,23419,23484,23573,23590,23595,23653,23782,23849,23850,23853,23941,23954,23959,23960,23965,23990,23991,24268,24409,24486,24608,24668,24669,24673,24721,24725,24746,24747,24885,24890,24912,24913,24958,24992,25024,25091,25134,25204,25335,25364,25384,25432,25447,25450,25458,25463,25489,25490,25535,25559,25568,25574,25614,25634,25659,25692,25699,25709,25710,25711,25742,25759,25781,25787,25832,25833,25835,25857,25862,25966,25981,25984,26000,26001,26012,26017,26027,26072,26111,26113,26122,26129,26130,26142,26211,26224,26226,26229,26244,26258,26266,26316,26329,26332,26337,26360,26401,26407,26409,26411,26446,26462,26480,26502,26506,26534,26551,26566,26596,26616,26621,26637,26647,26651,26693,26710,26716,26720,26727,26729,26730,26732,26751,26759,26760,26772,26786,26807,26849,26861,26863,26881,26885,26898,26899,26922,26932,27064,27070,27117,27123,27166,27170,27303,27325,27354,27382,27404,27429,27432,27458,27459,27521,27531,27534,27543,27558,27606,27626,27662,27676,27756,27778,27791,27847,27853,27890,27928,28147,28163,28439,28447,28475,28478,28480,28548,28555,28573,28578,28645,28678,28840,29053,29099,29179,29310,29428,29450,29451,29666,29745,29753,29758,29762,29770,29784,29790,29799,29821,29829,29841,29923,29931,30022,30077,30184,30329,30385,30487,30488,30489,30536,30544,30551,30576,30637,30716,30769,30811,30819,30852,30865,30951,30959,30994,31018,31041,31088,31096,31098,31100]]],["+",[11,11,[[41,3,3,0,3,[[973,1,1,0,1],[989,1,1,1,2],[990,1,1,2,3]]],[42,2,2,3,5,[[1001,1,1,3,4],[1009,1,1,4,5]]],[45,1,1,5,6,[[1070,1,1,5,6]]],[57,1,1,6,7,[[1136,1,1,6,7]]],[59,1,1,7,8,[[1151,1,1,7,8]]],[65,3,3,8,11,[[1167,1,1,8,9],[1170,1,1,9,10],[1175,1,1,10,11]]]],[24912,25659,25692,26224,26637,28548,30022,30385,30716,30769,30852]]],["These",[5,5,[[39,1,1,0,1,[[943,1,1,0,1]]],[42,3,3,1,4,[[1004,1,1,1,2],[1005,1,1,2,3],[1006,1,1,3,4]]],[61,1,1,4,5,[[1160,1,1,4,5]]]],[23653,26401,26462,26502,30576]]],["They",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23590]]],["him",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30184]]],["same",[2,2,[[45,1,1,0,1,[[1070,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[28548,29829]]],["so",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26551]]],["such",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28478]]],["that",[7,7,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[43,2,2,2,4,[[1024,1,1,2,3],[1030,1,1,3,4]]],[45,1,1,4,5,[[1067,1,1,4,5]]],[65,2,2,5,7,[[1181,1,1,5,6],[1186,1,1,6,7]]]],[24885,25463,27123,27382,28475,30951,31041]]],["them",[2,2,[[45,1,1,0,1,[[1067,1,1,0,1]]],[65,1,1,1,2,[[1176,1,1,1,2]]]],[28480,30865]]],["these",[25,25,[[39,3,3,0,3,[[938,1,1,0,1],[951,1,1,1,2],[952,1,1,2,3]]],[40,4,4,3,7,[[963,1,1,3,4],[966,1,1,4,5],[969,1,1,5,6],[972,1,1,6,7]]],[41,5,5,7,12,[[973,1,1,7,8],[974,2,2,8,10],[983,1,1,10,11],[990,1,1,11,12]]],[42,3,3,12,15,[[999,1,1,12,13],[1001,1,1,13,14],[1016,1,1,14,15]]],[43,5,5,15,20,[[1024,1,1,15,16],[1027,1,1,16,17],[1030,1,1,17,18],[1031,1,1,18,19],[1033,1,1,19,20]]],[44,2,2,20,22,[[1053,1,1,20,21],[1054,1,1,21,22]]],[45,2,2,22,24,[[1073,1,1,22,23],[1074,1,1,23,24]]],[47,1,1,24,25,[[1095,1,1,24,25]]]],[23419,23941,23965,24486,24608,24725,24890,24958,24992,25024,25447,25709,26122,26229,26898,27117,27303,27404,27432,27521,28147,28163,28645,28678,29179]]],["they",[2,2,[[42,2,2,0,2,[[1002,1,1,0,1],[1006,1,1,1,2]]]],[26266,26506]]],["things",[159,151,[[39,17,17,0,17,[[929,1,1,0,1],[932,1,1,1,2],[934,2,2,2,4],[937,1,1,4,5],[939,1,1,5,6],[941,2,2,6,8],[947,1,1,8,9],[949,3,3,9,12],[951,1,1,12,13],[952,4,4,13,17]]],[40,10,8,17,25,[[958,1,1,17,18],[962,1,1,18,19],[967,4,3,19,22],[969,4,3,22,25]]],[41,32,31,25,56,[[973,1,1,25,26],[976,1,1,26,27],[977,1,1,27,28],[979,1,1,28,29],[982,2,2,29,31],[983,2,2,31,33],[984,2,2,33,35],[985,1,1,35,36],[986,3,3,36,39],[987,1,1,39,40],[988,1,1,40,41],[990,1,1,41,42],[991,1,1,42,43],[992,2,2,43,45],[993,6,5,45,50],[995,2,2,50,52],[996,4,4,52,56]]],[42,40,36,56,92,[[997,1,1,56,57],[998,2,2,57,59],[999,3,3,59,62],[1001,2,2,62,64],[1002,2,2,64,66],[1003,3,3,66,69],[1004,2,2,69,71],[1007,1,1,71,72],[1008,5,3,72,75],[1009,1,1,75,76],[1010,1,1,76,77],[1011,3,3,77,80],[1012,7,6,80,86],[1013,1,1,86,87],[1015,2,2,87,89],[1016,1,1,89,90],[1017,3,2,90,92]]],[43,18,18,92,110,[[1018,1,1,92,93],[1022,2,2,93,95],[1024,2,2,95,97],[1028,1,1,97,98],[1029,1,1,98,99],[1031,1,1,99,100],[1032,1,1,100,101],[1034,3,3,101,104],[1035,1,1,104,105],[1036,1,1,105,106],[1038,1,1,106,107],[1040,1,1,107,108],[1041,2,2,108,110]]],[45,5,5,110,115,[[1065,2,2,110,112],[1070,1,1,112,113],[1071,2,2,113,115]]],[46,2,2,115,117,[[1079,1,1,115,116],[1090,1,1,116,117]]],[47,2,2,117,119,[[1092,1,1,117,118],[1095,1,1,118,119]]],[48,1,1,119,120,[[1101,1,1,119,120]]],[49,2,2,120,122,[[1106,2,2,120,122]]],[52,1,1,122,123,[[1117,1,1,122,123]]],[53,8,8,123,131,[[1121,1,1,123,124],[1122,3,3,124,127],[1123,2,2,127,129],[1124,2,2,129,131]]],[54,2,2,131,133,[[1125,1,1,131,132],[1126,1,1,132,133]]],[55,2,2,133,135,[[1130,1,1,133,134],[1131,1,1,134,135]]],[57,1,1,135,136,[[1139,1,1,135,136]]],[58,1,1,136,137,[[1148,1,1,136,137]]],[60,4,4,137,141,[[1156,3,3,137,140],[1158,1,1,140,141]]],[61,3,3,141,144,[[1159,1,1,141,142],[1160,1,1,142,143],[1163,1,1,143,144]]],[65,8,7,144,151,[[1173,1,1,144,145],[1184,1,1,145,146],[1185,1,1,146,147],[1188,5,4,147,151]]]],[23164,23218,23314,23315,23397,23484,23573,23595,23782,23849,23850,23853,23954,23959,23960,23990,23991,24268,24409,24668,24669,24673,24721,24746,24747,24913,25091,25134,25204,25364,25384,25432,25458,25489,25490,25535,25559,25568,25574,25614,25634,25710,25742,25781,25787,25832,25833,25835,25857,25862,25966,25984,26000,26001,26012,26017,26072,26111,26113,26129,26130,26142,26226,26244,26258,26316,26329,26332,26360,26407,26409,26534,26596,26616,26621,26647,26693,26710,26716,26720,26727,26729,26730,26732,26751,26759,26772,26849,26861,26885,26899,26922,26932,27064,27070,27166,27170,27325,27354,27429,27459,27531,27534,27543,27558,27606,27676,27756,27778,27791,28439,28447,28555,28573,28578,28840,29053,29099,29179,29310,29450,29451,29666,29745,29753,29758,29762,29770,29784,29790,29799,29821,29841,29923,29931,30077,30329,30487,30488,30489,30536,30544,30551,30637,30811,30994,31018,31088,31096,31098,31100]]],["this",[6,6,[[41,1,1,0,1,[[990,1,1,0,1]]],[42,2,2,1,3,[[1001,1,1,1,2],[1015,1,1,2,3]]],[43,1,1,3,4,[[1032,1,1,3,4]]],[65,2,2,4,6,[[1170,1,1,4,5],[1173,1,1,5,6]]]],[25711,26211,26863,27458,30769,30819]]],["those",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29428]]],["thus",[17,17,[[41,6,6,0,6,[[981,1,1,0,1],[983,1,1,1,2],[990,1,1,2,3],[991,1,1,3,4],[995,1,1,4,5],[996,1,1,5,6]]],[42,5,5,6,11,[[1005,1,1,6,7],[1007,1,1,7,8],[1009,1,1,8,9],[1014,1,1,9,10],[1016,1,1,10,11]]],[43,5,5,11,16,[[1036,1,1,11,12],[1037,1,1,12,13],[1043,2,2,13,15],[1044,1,1,15,16]]],[65,1,1,16,17,[[1182,1,1,16,17]]]],[25335,25450,25699,25759,25981,26027,26446,26566,26651,26807,26881,27626,27662,27847,27853,27890,30959]]],["words",[6,6,[[42,5,5,0,5,[[1003,1,1,0,1],[1004,1,1,1,2],[1005,1,1,2,3],[1013,1,1,3,4],[1014,1,1,4,5]]],[43,1,1,5,6,[[1045,1,1,5,6]]]],[26337,26411,26480,26760,26786,27928]]]]},{"k":"G5024","v":[["*",[4,4,[[41,3,3,0,3,[[978,2,2,0,2],[989,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]]],[25169,25172,25681,29584]]],["+",[3,3,[[41,3,3,0,3,[[978,2,2,0,2],[989,1,1,2,3]]]],[25169,25172,25681]]],["things",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29584]]]]},{"k":"G5025","v":[["*",[21,21,[[39,2,2,0,2,[[941,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,6,6,3,9,[[973,2,2,3,5],[978,1,1,5,6],[985,1,1,6,7],[995,1,1,7,8],[996,1,1,8,9]]],[42,1,1,9,10,[[1001,1,1,9,10]]],[43,6,6,10,16,[[1018,2,2,10,12],[1020,1,1,12,13],[1023,1,1,13,14],[1028,1,1,14,15],[1038,1,1,15,16]]],[46,1,1,16,17,[[1084,1,1,16,17]]],[51,1,1,17,18,[[1113,1,1,17,18]]],[57,1,1,18,19,[[1141,1,1,18,19]]],[65,2,2,19,21,[[1175,1,1,19,20],[1182,1,1,20,21]]]],[23592,23912,24719,24917,24932,25158,25532,25942,26009,26213,26928,26938,27020,27102,27334,27679,28917,29593,30128,30860,30963]]],["hence",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26928]]],["that",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25942]]],["them",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25532]]],["these",[12,12,[[39,2,2,0,2,[[941,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,1,1,3,4,[[996,1,1,3,4]]],[42,1,1,4,5,[[1001,1,1,4,5]]],[43,2,2,5,7,[[1020,1,1,5,6],[1028,1,1,6,7]]],[46,1,1,7,8,[[1084,1,1,7,8]]],[51,1,1,8,9,[[1113,1,1,8,9]]],[57,1,1,9,10,[[1141,1,1,9,10]]],[65,2,2,10,12,[[1175,1,1,10,11],[1182,1,1,11,12]]]],[23592,23912,24719,26009,26213,27020,27334,28917,29593,30128,30860,30963]]],["those",[6,6,[[41,3,3,0,3,[[973,2,2,0,2],[978,1,1,2,3]]],[43,3,3,3,6,[[1018,1,1,3,4],[1023,1,1,4,5],[1038,1,1,5,6]]]],[24917,24932,25158,26938,27102,27679]]]]},{"k":"G5026","v":[["*",[122,119,[[39,11,11,0,11,[[938,1,1,0,1],[939,1,1,1,2],[940,3,3,2,5],[943,1,1,5,6],[944,1,1,6,7],[949,1,1,7,8],[951,1,1,8,9],[954,2,2,9,11]]],[40,8,8,11,19,[[960,1,1,11,12],[964,2,2,12,14],[966,1,1,14,15],[967,1,1,15,16],[968,1,1,16,17],[970,2,2,17,19]]],[41,28,28,19,47,[[976,2,2,19,21],[979,2,2,21,23],[983,5,5,23,28],[984,2,2,28,30],[985,4,4,30,34],[987,1,1,34,35],[988,1,1,35,36],[989,3,3,36,39],[990,2,2,39,41],[991,1,1,41,42],[992,3,3,42,45],[995,1,1,45,46],[996,1,1,46,47]]],[42,9,7,47,54,[[998,1,1,47,48],[1003,2,1,48,49],[1006,3,3,49,52],[1008,2,1,52,53],[1011,1,1,53,54]]],[43,33,32,54,86,[[1018,3,3,54,57],[1019,3,3,57,60],[1020,1,1,60,61],[1022,1,1,61,62],[1023,1,1,62,63],[1024,2,2,63,65],[1025,3,3,65,68],[1027,1,1,68,69],[1030,2,2,69,71],[1033,1,1,71,72],[1035,1,1,72,73],[1036,2,2,73,75],[1039,3,3,75,78],[1040,2,2,78,80],[1041,1,1,80,81],[1043,1,1,81,82],[1044,2,2,82,84],[1045,3,2,84,86]]],[44,1,1,86,87,[[1050,1,1,86,87]]],[45,4,4,87,91,[[1067,1,1,87,88],[1068,1,1,88,89],[1070,1,1,89,90],[1076,1,1,90,91]]],[46,12,12,91,103,[[1078,1,1,91,92],[1081,1,1,92,93],[1085,4,4,93,97],[1086,4,4,97,101],[1088,1,1,101,102],[1089,1,1,102,103]]],[53,1,1,103,104,[[1119,1,1,103,104]]],[54,1,1,104,105,[[1126,1,1,104,105]]],[57,5,5,105,110,[[1137,1,1,105,106],[1141,1,1,106,107],[1143,1,1,107,108],[1144,1,1,108,109],[1145,1,1,109,110]]],[59,1,1,110,111,[[1155,1,1,110,111]]],[60,2,2,111,113,[[1156,1,1,111,112],[1158,1,1,112,113]]],[61,2,2,113,115,[[1161,1,1,113,114],[1162,1,1,114,115]]],[62,1,1,115,116,[[1164,1,1,115,116]]],[65,3,3,116,119,[[1168,1,1,116,117],[1178,1,1,117,118],[1188,1,1,118,119]]]],[23440,23475,23530,23531,23534,23648,23690,23849,23954,24085,24088,24336,24512,24538,24593,24668,24683,24781,24784,25069,25086,25226,25239,25435,25436,25437,25455,25456,25479,25500,25524,25525,25534,25550,25591,25644,25657,25676,25685,25693,25697,25773,25781,25788,25798,25983,26012,26106,26336,26487,26497,26499,26607,26712,26939,26940,26948,26955,26978,26989,27012,27079,27104,27120,27176,27195,27198,27211,27289,27388,27395,27495,27567,27610,27625,27707,27708,27732,27735,27747,27790,27845,27876,27878,27919,27921,28049,28480,28507,28552,28737,28815,28860,28938,28939,28951,28952,28960,28961,28968,28969,29006,29035,29714,29846,30033,30116,30174,30227,30243,30477,30497,30523,30582,30624,30655,30741,30906,31099]]],["+",[4,4,[[45,1,1,0,1,[[1068,1,1,0,1]]],[57,3,3,1,4,[[1137,1,1,1,2],[1144,1,1,2,3],[1145,1,1,3,4]]]],[28507,30033,30227,30243]]],["This",[5,5,[[42,3,3,0,3,[[998,1,1,0,1],[1006,2,2,1,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]],[60,1,1,4,5,[[1158,1,1,4,5]]]],[26106,26487,26499,29714,30523]]],["her",[1,1,[[65,1,1,0,1,[[1178,1,1,0,1]]]],[30906]]],["it",[2,2,[[45,1,1,0,1,[[1067,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[28480,30174]]],["same",[5,5,[[43,2,2,0,2,[[1025,1,1,0,1],[1030,1,1,1,2]]],[46,3,3,2,5,[[1085,1,1,2,3],[1086,2,2,3,5]]]],[27211,27395,28938,28960,28961]]],["that",[4,4,[[41,3,3,0,3,[[985,1,1,0,1],[989,1,1,1,2],[995,1,1,2,3]]],[43,1,1,3,4,[[1033,1,1,3,4]]]],[25550,25685,25983,27495]]],["the",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26012]]],["this",[99,96,[[39,11,11,0,11,[[938,1,1,0,1],[939,1,1,1,2],[940,3,3,2,5],[943,1,1,5,6],[944,1,1,6,7],[949,1,1,7,8],[951,1,1,8,9],[954,2,2,9,11]]],[40,8,8,11,19,[[960,1,1,11,12],[964,2,2,12,14],[966,1,1,14,15],[967,1,1,15,16],[968,1,1,16,17],[970,2,2,17,19]]],[41,23,23,19,42,[[976,2,2,19,21],[979,2,2,21,23],[983,5,5,23,28],[984,2,2,28,30],[985,2,2,30,32],[987,1,1,32,33],[988,1,1,33,34],[989,2,2,34,36],[990,2,2,36,38],[991,1,1,38,39],[992,3,3,39,42]]],[42,6,4,42,46,[[1003,2,1,42,43],[1006,1,1,43,44],[1008,2,1,44,45],[1011,1,1,45,46]]],[43,30,29,46,75,[[1018,3,3,46,49],[1019,3,3,49,52],[1020,1,1,52,53],[1022,1,1,53,54],[1023,1,1,54,55],[1024,2,2,55,57],[1025,2,2,57,59],[1027,1,1,59,60],[1030,1,1,60,61],[1035,1,1,61,62],[1036,2,2,62,64],[1039,3,3,64,67],[1040,2,2,67,69],[1041,1,1,69,70],[1043,1,1,70,71],[1044,2,2,71,73],[1045,3,2,73,75]]],[44,1,1,75,76,[[1050,1,1,75,76]]],[45,2,2,76,78,[[1070,1,1,76,77],[1076,1,1,77,78]]],[46,9,9,78,87,[[1078,1,1,78,79],[1081,1,1,79,80],[1085,3,3,80,83],[1086,2,2,83,85],[1088,1,1,85,86],[1089,1,1,86,87]]],[54,1,1,87,88,[[1126,1,1,87,88]]],[57,1,1,88,89,[[1141,1,1,88,89]]],[59,1,1,89,90,[[1155,1,1,89,90]]],[60,1,1,90,91,[[1156,1,1,90,91]]],[61,2,2,91,93,[[1161,1,1,91,92],[1162,1,1,92,93]]],[62,1,1,93,94,[[1164,1,1,93,94]]],[65,2,2,94,96,[[1168,1,1,94,95],[1188,1,1,95,96]]]],[23440,23475,23530,23531,23534,23648,23690,23849,23954,24085,24088,24336,24512,24538,24593,24668,24683,24781,24784,25069,25086,25226,25239,25435,25436,25437,25455,25456,25479,25500,25524,25525,25591,25644,25657,25676,25693,25697,25773,25781,25788,25798,26336,26497,26607,26712,26939,26940,26948,26955,26978,26989,27012,27079,27104,27120,27176,27195,27198,27289,27388,27567,27610,27625,27707,27708,27732,27735,27747,27790,27845,27876,27878,27919,27921,28049,28552,28737,28815,28860,28939,28951,28952,28968,28969,29006,29035,29846,30116,30477,30497,30582,30624,30655,30741,31099]]],["woman",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25534]]]]},{"k":"G5027","v":[["+",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24136]]]]},{"k":"G5028","v":[["*",[7,7,[[39,6,6,0,6,[[951,2,2,0,2],[955,3,3,2,5],[956,1,1,5,6]]],[44,1,1,6,7,[[1048,1,1,6,7]]]],[23945,23947,24190,24193,24195,24196,28004]]],["+",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24195]]],["sepulchre",[4,4,[[39,3,3,0,3,[[955,2,2,0,2],[956,1,1,2,3]]],[44,1,1,3,4,[[1048,1,1,3,4]]]],[24190,24193,24196,28004]]],["sepulchres",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23945]]],["tombs",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23947]]]]},{"k":"G5029","v":[["*",[2,2,[[44,1,1,0,1,[[1050,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[28054,29953]]],["peradventure",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28054]]],["perhaps",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29953]]]]},{"k":"G5030","v":[["*",[10,10,[[41,2,2,0,2,[[986,1,1,0,1],[988,1,1,1,2]]],[42,1,1,2,3,[[1007,1,1,2,3]]],[45,1,1,3,4,[[1065,1,1,3,4]]],[47,1,1,4,5,[[1091,1,1,4,5]]],[49,2,2,5,7,[[1104,2,2,5,7]]],[52,1,1,7,8,[[1117,1,1,7,8]]],[53,1,1,8,9,[[1123,1,1,8,9]]],[54,1,1,9,10,[[1128,1,1,9,10]]]],[25574,25626,26554,28452,29063,29410,29415,29663,29785,29879]]],["hastily",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26554]]],["quickly",[2,2,[[41,2,2,0,2,[[986,1,1,0,1],[988,1,1,1,2]]]],[25574,25626]]],["shortly",[4,4,[[45,1,1,0,1,[[1065,1,1,0,1]]],[49,2,2,1,3,[[1104,2,2,1,3]]],[54,1,1,3,4,[[1128,1,1,3,4]]]],[28452,29410,29415,29879]]],["soon",[2,2,[[47,1,1,0,1,[[1091,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]]],[29063,29663]]],["suddenly",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29785]]]]},{"k":"G5031","v":[["*",[2,2,[[60,2,2,0,2,[[1156,1,1,0,1],[1157,1,1,1,2]]]],[30493,30501]]],["shortly",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30493]]],["swift",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30501]]]]},{"k":"G5032","v":[["*",[5,5,[[42,2,2,0,2,[[1009,1,1,0,1],[1016,1,1,1,2]]],[53,1,1,2,3,[[1121,1,1,2,3]]],[57,2,2,3,5,[[1145,2,2,3,5]]]],[26657,26871,29745,30260,30264]]],["+",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26871]]],["quickly",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26657]]],["shortly",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[29745,30264]]],["sooner",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30260]]]]},{"k":"G5033","v":[["+",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27538]]]]},{"k":"G5034","v":[["*",[8,8,[[41,1,1,0,1,[[990,1,1,0,1]]],[43,3,3,1,4,[[1029,1,1,1,2],[1039,1,1,2,3],[1042,1,1,3,4]]],[44,1,1,4,5,[[1061,1,1,4,5]]],[65,3,3,5,8,[[1167,1,1,5,6],[1168,1,1,6,7],[1188,1,1,7,8]]]],[25696,27344,27722,27800,28356,30698,30722,31086]]],["+",[7,7,[[41,1,1,0,1,[[990,1,1,0,1]]],[43,3,3,1,4,[[1029,1,1,1,2],[1039,1,1,2,3],[1042,1,1,3,4]]],[44,1,1,4,5,[[1061,1,1,4,5]]],[65,2,2,5,7,[[1167,1,1,5,6],[1188,1,1,6,7]]]],[25696,27344,27722,27800,28356,30698,31086]]],["quickly",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30722]]]]},{"k":"G5035","v":[["*",[12,12,[[39,3,3,0,3,[[933,1,1,0,1],[956,2,2,1,3]]],[40,2,2,3,5,[[965,1,1,3,4],[972,1,1,4,5]]],[42,1,1,5,6,[[1007,1,1,5,6]]],[65,6,6,6,12,[[1168,1,1,6,7],[1169,1,1,7,8],[1177,1,1,8,9],[1188,3,3,9,12]]]],[23259,24202,24203,24577,24881,26552,30733,30757,30886,31087,31092,31100]]],["lightly",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24577]]],["quickly",[11,11,[[39,3,3,0,3,[[933,1,1,0,1],[956,2,2,1,3]]],[40,1,1,3,4,[[972,1,1,3,4]]],[42,1,1,4,5,[[1007,1,1,4,5]]],[65,6,6,5,11,[[1168,1,1,5,6],[1169,1,1,6,7],[1177,1,1,7,8],[1188,3,3,8,11]]]],[23259,24202,24203,24881,26552,30733,30757,30886,31087,31092,31100]]]]},{"k":"G5036","v":[["swift",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30285]]]]},{"k":"G5037","v":[["*",[210,192,[[39,4,4,0,4,[[950,1,1,0,1],[951,1,1,1,2],[955,1,1,2,3],[956,1,1,3,4]]],[40,1,1,4,5,[[971,1,1,4,5]]],[41,6,5,5,10,[[974,1,1,5,6],[984,1,1,6,7],[993,2,1,7,8],[994,1,1,8,9],[996,1,1,9,10]]],[42,3,3,10,13,[[998,1,1,10,11],[1000,1,1,11,12],[1002,1,1,12,13]]],[43,144,134,13,147,[[1018,4,4,13,17],[1019,10,8,17,25],[1020,1,1,25,26],[1021,3,3,26,29],[1022,5,5,29,34],[1023,3,3,34,37],[1024,1,1,37,38],[1025,9,9,38,47],[1026,7,6,47,53],[1027,6,6,53,59],[1028,3,3,59,62],[1029,3,3,62,65],[1030,4,3,65,68],[1031,4,4,68,72],[1032,5,5,72,77],[1033,6,6,77,83],[1034,7,6,83,89],[1035,4,4,89,93],[1036,8,8,93,101],[1037,5,5,101,106],[1038,8,8,106,114],[1039,4,4,114,118],[1040,4,4,118,122],[1041,6,5,122,127],[1042,3,3,127,130],[1043,9,7,130,137],[1044,10,9,137,146],[1045,2,1,146,147]]],[44,18,14,147,161,[[1046,7,6,147,153],[1047,3,3,153,156],[1048,1,1,156,157],[1052,1,1,157,158],[1055,1,1,158,159],[1059,4,1,159,160],[1061,1,1,160,161]]],[45,4,4,161,165,[[1062,3,3,161,164],[1065,1,1,164,165]]],[46,1,1,165,166,[[1087,1,1,165,166]]],[48,2,2,166,168,[[1097,1,1,166,167],[1099,1,1,167,168]]],[49,1,1,168,169,[[1103,1,1,168,169]]],[57,22,19,169,188,[[1133,1,1,169,170],[1134,2,2,170,172],[1136,2,1,172,173],[1137,3,3,173,176],[1138,5,4,176,180],[1140,1,1,180,181],[1141,4,4,181,185],[1142,1,1,185,186],[1143,2,1,186,187],[1144,1,1,187,188]]],[58,1,1,188,189,[[1148,1,1,188,189]]],[64,1,1,189,190,[[1166,1,1,189,190]]],[65,2,2,190,192,[[1167,1,1,190,191],[1187,1,1,191,192]]]],[23882,23924,24177,24207,24862,24989,25504,25837,25930,26011,26110,26198,26275,26924,26931,26936,26938,26952,26958,26959,26982,26986,26989,26992,26995,27006,27035,27049,27055,27073,27078,27083,27094,27101,27108,27113,27114,27142,27177,27179,27182,27188,27189,27201,27204,27207,27214,27218,27222,27231,27234,27240,27245,27261,27281,27287,27292,27298,27307,27320,27328,27333,27343,27345,27349,27363,27364,27366,27415,27419,27426,27435,27446,27447,27451,27474,27481,27494,27495,27496,27506,27509,27517,27527,27528,27533,27537,27542,27549,27561,27562,27568,27583,27588,27591,27595,27596,27597,27602,27603,27614,27629,27633,27637,27647,27661,27675,27676,27682,27684,27689,27692,27694,27701,27708,27711,27712,27732,27739,27744,27758,27769,27772,27774,27784,27792,27796,27812,27819,27820,27826,27833,27834,27839,27843,27845,27853,27856,27858,27860,27863,27872,27875,27876,27884,27898,27922,27942,27944,27946,27950,27956,27957,27971,27972,27981,28000,28098,28200,28288,28362,28365,28387,28393,28454,28979,29216,29270,29368,29966,29981,29988,30026,30031,30037,30044,30046,30048,30049,30063,30095,30106,30107,30114,30124,30166,30204,30214,30326,30678,30699,31065]]],["+",[23,22,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,14,14,1,15,[[1019,1,1,1,2],[1022,1,1,2,3],[1026,1,1,3,4],[1030,2,2,4,6],[1032,1,1,6,7],[1034,2,2,7,9],[1035,1,1,9,10],[1042,1,1,10,11],[1043,2,2,11,13],[1044,1,1,13,14],[1045,1,1,14,15]]],[44,4,3,15,18,[[1046,2,2,15,17],[1059,2,1,17,18]]],[46,1,1,18,19,[[1087,1,1,18,19]]],[57,3,3,19,22,[[1137,1,1,19,20],[1140,1,1,20,21],[1141,1,1,21,22]]]],[24989,26959,27083,27240,27363,27364,27451,27533,27537,27562,27819,27826,27845,27856,27922,27950,27956,28288,28979,30037,30095,30107]]],["-",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1025,1,1,1,2]]]],[26959,27204]]],["And",[55,54,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,2,2,1,3,[[993,1,1,1,2],[996,1,1,2,3]]],[42,2,2,3,5,[[1000,1,1,3,4],[1002,1,1,4,5]]],[43,45,44,5,49,[[1019,2,2,5,7],[1020,1,1,7,8],[1022,2,2,8,10],[1023,2,2,10,12],[1024,1,1,12,13],[1025,2,2,13,15],[1026,2,2,15,17],[1027,2,2,17,19],[1028,2,2,19,21],[1029,2,2,21,23],[1031,2,2,23,25],[1032,1,1,25,26],[1033,4,4,26,30],[1034,2,2,30,32],[1035,2,2,32,34],[1036,3,3,34,37],[1037,1,1,37,38],[1038,2,2,38,40],[1039,3,3,40,43],[1040,2,2,43,45],[1041,1,1,45,46],[1044,4,3,46,49]]],[44,2,2,49,51,[[1046,1,1,49,50],[1047,1,1,50,51]]],[48,1,1,51,52,[[1099,1,1,51,52]]],[64,1,1,52,53,[[1166,1,1,52,53]]],[65,1,1,53,54,[[1187,1,1,53,54]]]],[23924,25837,26011,26198,26275,26989,26995,27006,27094,27101,27113,27114,27142,27182,27207,27222,27240,27287,27307,27320,27333,27345,27349,27426,27435,27474,27495,27496,27506,27517,27542,27549,27568,27583,27588,27596,27603,27629,27694,27701,27711,27712,27732,27758,27769,27792,27858,27860,27863,27957,27981,29270,30678,31065]]],["Then",[2,2,[[43,2,2,0,2,[[1040,1,1,0,1],[1044,1,1,1,2]]]],[27739,27884]]],["also",[3,3,[[43,1,1,0,1,[[1036,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[27602,27946,30204]]],["and",[78,76,[[39,2,2,0,2,[[955,1,1,0,1],[956,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[41,3,3,3,6,[[984,1,1,3,4],[993,1,1,4,5],[994,1,1,5,6]]],[42,1,1,6,7,[[998,1,1,6,7]]],[43,56,55,7,62,[[1019,6,6,7,13],[1021,2,2,13,15],[1022,1,1,15,16],[1023,1,1,16,17],[1025,4,4,17,21],[1026,3,3,21,24],[1027,2,2,24,26],[1028,1,1,26,27],[1029,1,1,27,28],[1030,2,2,28,30],[1032,3,3,30,33],[1033,2,2,33,35],[1034,3,2,35,37],[1035,1,1,37,38],[1036,3,3,38,41],[1037,3,3,41,44],[1038,4,4,44,48],[1040,1,1,48,49],[1041,3,3,49,52],[1042,1,1,52,53],[1043,5,5,53,58],[1044,4,4,58,62]]],[44,2,2,62,64,[[1059,1,1,62,63],[1061,1,1,63,64]]],[45,2,2,64,66,[[1062,1,1,64,65],[1065,1,1,65,66]]],[57,9,8,66,74,[[1133,1,1,66,67],[1136,1,1,67,68],[1138,4,3,68,71],[1141,1,1,71,72],[1143,1,1,72,73],[1144,1,1,73,74]]],[58,1,1,74,75,[[1148,1,1,74,75]]],[65,1,1,75,76,[[1167,1,1,75,76]]]],[24177,24207,24862,25504,25837,25930,26110,26952,26958,26982,26986,26992,26995,27035,27055,27078,27108,27177,27179,27189,27201,27231,27234,27245,27281,27292,27328,27343,27363,27366,27446,27447,27481,27494,27509,27527,27528,27561,27591,27597,27614,27633,27637,27661,27675,27682,27684,27692,27744,27774,27792,27796,27812,27833,27834,27839,27843,27853,27872,27875,27876,27898,28288,28362,28393,28454,29966,30026,30046,30048,30049,30106,30204,30214,30326,30699]]],["between",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28200]]],["both",[36,35,[[39,1,1,0,1,[[950,1,1,0,1]]],[43,19,19,1,20,[[1018,3,3,1,4],[1021,1,1,4,5],[1022,1,1,5,6],[1025,2,2,6,8],[1027,1,1,8,9],[1031,2,2,9,11],[1036,1,1,11,12],[1037,1,1,12,13],[1038,1,1,13,14],[1039,1,1,14,15],[1041,1,1,15,16],[1042,1,1,16,17],[1043,2,2,17,19],[1045,1,1,19,20]]],[44,4,3,20,23,[[1046,3,2,20,22],[1048,1,1,22,23]]],[45,2,2,23,25,[[1062,2,2,23,25]]],[48,1,1,25,26,[[1097,1,1,25,26]]],[49,1,1,26,27,[[1103,1,1,26,27]]],[57,8,8,27,35,[[1134,2,2,27,29],[1137,2,2,29,31],[1138,1,1,31,32],[1141,2,2,32,34],[1142,1,1,34,35]]]],[23882,26924,26931,26936,27049,27073,27188,27214,27298,27415,27419,27595,27647,27676,27708,27784,27820,27839,27845,27922,27942,27944,28000,28365,28387,29216,29368,29981,29988,30031,30044,30063,30114,30124,30166]]],["from",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27689]]],["had",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28098]]],["it",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27772]]],["of",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30026]]],["the",[3,3,[[43,1,1,0,1,[[1018,1,1,0,1]]],[44,2,2,1,3,[[1047,2,2,1,3]]]],[26938,27971,27972]]],["we",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28288]]],["whether",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27218]]],["which",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27261]]]]},{"k":"G5038","v":[["*",[9,9,[[43,1,1,0,1,[[1026,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]],[65,6,6,3,9,[[1187,6,6,3,9]]]],[27241,29022,30202,31065,31067,31068,31070,31071,31072]]],["wall",[8,8,[[43,1,1,0,1,[[1026,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[65,6,6,2,8,[[1187,6,6,2,8]]]],[27241,29022,31065,31067,31068,31070,31071,31072]]],["walls",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30202]]]]},{"k":"G5039","v":[["proofs",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26926]]]]},{"k":"G5040","v":[["children",[9,9,[[42,1,1,0,1,[[1009,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]],[61,7,7,2,9,[[1160,3,3,2,5],[1161,2,2,5,7],[1162,1,1,7,8],[1163,1,1,8,9]]]],[26663,29150,30551,30562,30578,30586,30597,30607,30645]]]]},{"k":"G5041","v":[["children",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29777]]]]},{"k":"G5042","v":[["childbearing",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29731]]]]},{"k":"G5043","v":[["*",[99,91,[[39,15,13,0,13,[[930,1,1,0,1],[931,1,1,1,2],[935,1,1,2,3],[937,1,1,3,4],[938,2,1,4,5],[939,1,1,5,6],[943,1,1,6,7],[946,1,1,7,8],[947,1,1,8,9],[949,2,1,9,10],[950,1,1,10,11],[951,1,1,11,12],[955,1,1,12,13]]],[40,9,7,13,20,[[958,1,1,13,14],[963,2,1,14,15],[966,3,3,15,18],[968,1,1,18,19],[969,2,1,19,20]]],[41,14,14,20,34,[[973,2,2,20,22],[974,1,1,22,23],[975,1,1,23,24],[979,1,1,24,25],[983,1,1,25,26],[985,1,1,26,27],[986,1,1,27,28],[987,1,1,28,29],[988,1,1,29,30],[990,1,1,30,31],[991,1,1,31,32],[992,1,1,32,33],[995,1,1,33,34]]],[42,3,3,34,37,[[997,1,1,34,35],[1004,1,1,35,36],[1007,1,1,36,37]]],[43,5,5,37,42,[[1019,1,1,37,38],[1024,1,1,38,39],[1030,1,1,39,40],[1038,2,2,40,42]]],[44,7,5,42,47,[[1053,3,3,42,45],[1054,4,2,45,47]]],[45,3,3,47,50,[[1065,2,2,47,49],[1068,1,1,49,50]]],[46,3,2,50,52,[[1083,1,1,50,51],[1089,2,1,51,52]]],[47,4,4,52,56,[[1094,4,4,52,56]]],[48,5,5,56,61,[[1098,1,1,56,57],[1101,2,2,57,59],[1102,2,2,59,61]]],[49,2,2,61,63,[[1104,2,2,61,63]]],[50,2,2,63,65,[[1109,2,2,63,65]]],[51,2,2,65,67,[[1112,2,2,65,67]]],[53,5,5,67,72,[[1119,2,2,67,69],[1121,2,2,69,71],[1123,1,1,71,72]]],[54,2,2,72,74,[[1125,1,1,72,73],[1126,1,1,73,74]]],[55,2,2,74,76,[[1129,2,2,74,76]]],[56,1,1,76,77,[[1132,1,1,76,77]]],[59,2,2,77,79,[[1151,1,1,77,78],[1153,1,1,78,79]]],[60,1,1,79,80,[[1157,1,1,79,80]]],[61,5,4,80,84,[[1161,4,3,80,83],[1163,1,1,83,84]]],[62,3,3,84,87,[[1164,3,3,84,87]]],[63,1,1,87,88,[[1165,1,1,87,88]]],[65,3,3,88,91,[[1168,1,1,88,89],[1178,2,2,89,91]]]],[23187,23201,23327,23381,23438,23478,23659,23752,23791,23854,23896,23955,24154,24265,24490,24612,24617,24618,24692,24729,24900,24910,25021,25033,25230,25418,25552,25579,25619,25645,25717,25775,25810,25963,26056,26420,26575,26988,27121,27395,27669,27685,28132,28133,28137,28162,28163,28447,28450,28501,28911,29036,29156,29158,29159,29162,29232,29305,29312,29338,29341,29406,29413,29537,29538,29577,29581,29698,29714,29735,29743,29767,29811,29828,29896,29898,29948,30388,30430,30514,30580,30581,30589,30626,30646,30649,30658,30662,30740,30895,30896]]],["+",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]]],[23955,25552,29341]]],["Children",[3,3,[[40,1,1,0,1,[[966,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]]],[24612,29338,29537]]],["Son",[6,6,[[39,2,2,0,2,[[937,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[958,1,1,2,3]]],[41,3,3,3,6,[[974,1,1,3,4],[987,1,1,4,5],[988,1,1,5,6]]]],[23381,23854,24265,25021,25619,25645]]],["child",[5,5,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[43,1,1,2,3,[[1024,1,1,2,3]]],[65,2,2,3,5,[[1178,2,2,3,5]]]],[23438,24900,27121,30895,30896]]],["children",[64,60,[[39,9,9,0,9,[[930,1,1,0,1],[931,1,1,1,2],[935,1,1,2,3],[938,1,1,3,4],[939,1,1,4,5],[946,1,1,5,6],[947,1,1,6,7],[950,1,1,7,8],[955,1,1,8,9]]],[40,5,5,9,14,[[963,1,1,9,10],[966,2,2,10,12],[968,1,1,12,13],[969,1,1,13,14]]],[41,9,9,14,23,[[973,1,1,14,15],[975,1,1,15,16],[979,1,1,16,17],[983,1,1,17,18],[986,1,1,18,19],[990,1,1,19,20],[991,1,1,20,21],[992,1,1,21,22],[995,1,1,22,23]]],[42,2,2,23,25,[[1004,1,1,23,24],[1007,1,1,24,25]]],[43,4,4,25,29,[[1019,1,1,25,26],[1030,1,1,26,27],[1038,2,2,27,29]]],[44,7,5,29,34,[[1053,3,3,29,32],[1054,4,2,32,34]]],[45,1,1,34,35,[[1068,1,1,34,35]]],[46,3,2,35,37,[[1083,1,1,35,36],[1089,2,1,36,37]]],[47,4,4,37,41,[[1094,4,4,37,41]]],[48,3,3,41,44,[[1098,1,1,41,42],[1101,2,2,42,44]]],[50,1,1,44,45,[[1109,1,1,44,45]]],[51,2,2,45,47,[[1112,2,2,45,47]]],[53,3,3,47,50,[[1121,2,2,47,49],[1123,1,1,49,50]]],[55,1,1,50,51,[[1129,1,1,50,51]]],[59,1,1,51,52,[[1151,1,1,51,52]]],[60,1,1,52,53,[[1157,1,1,52,53]]],[61,3,2,53,55,[[1161,2,1,53,54],[1163,1,1,54,55]]],[62,3,3,55,58,[[1164,3,3,55,58]]],[63,1,1,58,59,[[1165,1,1,58,59]]],[65,1,1,59,60,[[1168,1,1,59,60]]]],[23187,23201,23327,23438,23478,23752,23791,23896,24154,24490,24617,24618,24692,24729,24910,25033,25230,25418,25579,25717,25775,25810,25963,26420,26575,26988,27395,27669,27685,28132,28133,28137,28162,28163,28501,28911,29036,29156,29158,29159,29162,29232,29305,29312,29538,29577,29581,29735,29743,29767,29898,30388,30514,30589,30626,30646,30649,30658,30662,30740]]],["children's",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[23659,24490]]],["daughters",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30430]]],["son",[9,9,[[40,1,1,0,1,[[969,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[53,2,2,3,5,[[1119,2,2,3,5]]],[54,2,2,5,7,[[1125,1,1,5,6],[1126,1,1,6,7]]],[55,1,1,7,8,[[1129,1,1,7,8]]],[56,1,1,8,9,[[1132,1,1,8,9]]]],[24729,28450,29413,29698,29714,29811,29828,29896,29948]]],["sons",[6,6,[[39,1,1,0,1,[[949,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[49,1,1,3,4,[[1104,1,1,3,4]]],[61,2,2,4,6,[[1161,2,2,4,6]]]],[23854,26056,28447,29406,30580,30581]]]]},{"k":"G5044","v":[["children",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29773]]]]},{"k":"G5045","v":[["*",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]]],[23594,24410]]],["carpenter",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24410]]],["carpenter's",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23594]]]]},{"k":"G5046","v":[["*",[19,17,[[39,3,2,0,2,[[933,2,1,0,1],[947,1,1,1,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[45,3,3,3,6,[[1063,1,1,3,4],[1074,1,1,4,5],[1075,1,1,5,6]]],[48,1,1,6,7,[[1100,1,1,6,7]]],[49,1,1,7,8,[[1105,1,1,7,8]]],[50,2,2,8,10,[[1107,1,1,8,9],[1110,1,1,9,10]]],[57,2,2,10,12,[[1137,1,1,10,11],[1141,1,1,11,12]]],[58,5,4,12,16,[[1146,4,3,12,15],[1148,1,1,15,16]]],[61,1,1,16,17,[[1162,1,1,16,17]]]],[23282,23783,28247,28400,28675,28698,29285,29436,29493,29554,30044,30116,30270,30283,30291,30321,30621]]],["age",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30044]]],["men",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28698]]],["perfect",[17,15,[[39,3,2,0,2,[[933,2,1,0,1],[947,1,1,1,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[45,2,2,3,5,[[1063,1,1,3,4],[1074,1,1,4,5]]],[48,1,1,5,6,[[1100,1,1,5,6]]],[49,1,1,6,7,[[1105,1,1,6,7]]],[50,2,2,7,9,[[1107,1,1,7,8],[1110,1,1,8,9]]],[57,1,1,9,10,[[1141,1,1,9,10]]],[58,5,4,10,14,[[1146,4,3,10,13],[1148,1,1,13,14]]],[61,1,1,14,15,[[1162,1,1,14,15]]]],[23282,23783,28247,28400,28675,29285,29436,29493,29554,30116,30270,30283,30291,30321,30621]]]]},{"k":"G5047","v":[["*",[2,2,[[50,1,1,0,1,[[1109,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[29531,30045]]],["perfection",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30045]]],["perfectness",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29531]]]]},{"k":"G5048","v":[["*",[24,24,[[41,2,2,0,2,[[974,1,1,0,1],[985,1,1,1,2]]],[42,5,5,2,7,[[1000,1,1,2,3],[1001,1,1,3,4],[1013,2,2,4,6],[1015,1,1,6,7]]],[43,1,1,7,8,[[1037,1,1,7,8]]],[46,1,1,8,9,[[1089,1,1,8,9]]],[49,1,1,9,10,[[1105,1,1,9,10]]],[57,9,9,10,19,[[1134,1,1,10,11],[1137,1,1,11,12],[1139,2,2,12,14],[1141,1,1,14,15],[1142,2,2,15,17],[1143,1,1,17,18],[1144,1,1,18,19]]],[58,1,1,19,20,[[1147,1,1,19,20]]],[61,4,4,20,24,[[1160,1,1,20,21],[1162,3,3,21,24]]]],[25016,25550,26190,26246,26763,26782,26853,27650,29031,29433,29987,30039,30083,30092,30114,30134,30147,30212,30235,30315,30555,30615,30620,30621]]],["+",[5,5,[[49,1,1,0,1,[[1105,1,1,0,1]]],[57,4,4,1,5,[[1134,1,1,1,2],[1139,1,1,2,3],[1141,1,1,3,4],[1142,1,1,4,5]]]],[29433,29987,30083,30114,30134]]],["consecrated",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30092]]],["finish",[3,3,[[42,2,2,0,2,[[1000,1,1,0,1],[1001,1,1,1,2]]],[43,1,1,2,3,[[1037,1,1,2,3]]]],[26190,26246,27650]]],["finished",[1,1,[[42,1,1,0,1,[[1013,1,1,0,1]]]],[26763]]],["fulfilled",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]]],[25016,26853]]],["perfect",[8,8,[[42,1,1,0,1,[[1013,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[57,3,3,2,5,[[1137,1,1,2,3],[1143,1,1,3,4],[1144,1,1,4,5]]],[58,1,1,5,6,[[1147,1,1,5,6]]],[61,2,2,6,8,[[1162,2,2,6,8]]]],[26782,29031,30039,30212,30235,30315,30620,30621]]],["perfected",[4,4,[[41,1,1,0,1,[[985,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]],[61,2,2,2,4,[[1160,1,1,2,3],[1162,1,1,3,4]]]],[25550,30147,30555,30615]]]]},{"k":"G5049","v":[["end",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30387]]]]},{"k":"G5050","v":[["*",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[24938,30075]]],["perfection",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30075]]],["performance",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24938]]]]},{"k":"G5051","v":[["finisher",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30214]]]]},{"k":"G5052","v":[["+",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25259]]]]},{"k":"G5053","v":[["*",[12,12,[[39,4,4,0,4,[[930,1,1,0,1],[937,1,1,1,2],[943,1,1,2,3],[950,1,1,3,4]]],[40,4,4,4,8,[[963,1,1,4,5],[965,3,3,5,8]]],[41,1,1,8,9,[[979,1,1,8,9]]],[43,2,2,9,11,[[1019,1,1,9,10],[1024,1,1,10,11]]],[57,1,1,11,12,[[1143,1,1,11,12]]]],[23188,23397,23637,23897,24473,24582,24584,24586,25197,26978,27131,30194]]],["+",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[23397,26978]]],["dead",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23188]]],["deceased",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23897]]],["die",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,1,1,2,3,[[979,1,1,2,3]]]],[23637,24473,25197]]],["died",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[27131,30194]]],["dieth",[3,3,[[40,3,3,0,3,[[965,3,3,0,3]]]],[24582,24584,24586]]]]},{"k":"G5054","v":[["death",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23184]]]]},{"k":"G5055","v":[["*",[26,26,[[39,6,6,0,6,[[938,1,1,0,1],[939,1,1,1,2],[941,1,1,2,3],[945,1,1,3,4],[947,1,1,4,5],[954,1,1,5,6]]],[41,4,4,6,10,[[974,1,1,6,7],[984,1,1,7,8],[990,1,1,8,9],[994,1,1,9,10]]],[42,2,2,10,12,[[1015,2,2,10,12]]],[43,1,1,12,13,[[1030,1,1,12,13]]],[44,2,2,13,15,[[1047,1,1,13,14],[1058,1,1,14,15]]],[47,1,1,15,16,[[1095,1,1,15,16]]],[54,1,1,16,17,[[1128,1,1,16,17]]],[58,1,1,17,18,[[1147,1,1,17,18]]],[65,8,8,18,26,[[1176,1,1,18,19],[1177,1,1,19,20],[1181,2,2,20,22],[1183,1,1,22,23],[1186,3,3,23,26]]]],[23440,23460,23592,23724,23763,24055,25012,25509,25719,25901,26853,26855,27391,27989,28272,29178,29877,30301,30868,30879,30947,30954,30992,31041,31043,31045]]],["accomplished",[4,4,[[41,3,3,0,3,[[984,1,1,0,1],[990,1,1,1,2],[994,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]]],[25509,25719,25901,26853]]],["end",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23460]]],["expired",[1,1,[[65,1,1,0,1,[[1186,1,1,0,1]]]],[31045]]],["finished",[8,8,[[39,3,3,0,3,[[941,1,1,0,1],[947,1,1,1,2],[954,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]],[65,3,3,5,8,[[1176,1,1,5,6],[1177,1,1,6,7],[1186,1,1,7,8]]]],[23592,23763,24055,26855,29877,30868,30879,31043]]],["fulfil",[3,3,[[44,1,1,0,1,[[1047,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[27989,29178,30301]]],["fulfilled",[4,4,[[43,1,1,0,1,[[1030,1,1,0,1]]],[65,3,3,1,4,[[1181,1,1,1,2],[1183,1,1,2,3],[1186,1,1,3,4]]]],[27391,30954,30992,31041]]],["over",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23440]]],["pay",[2,2,[[39,1,1,0,1,[[945,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]]],[23724,28272]]],["performed",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25012]]],["up",[1,1,[[65,1,1,0,1,[[1181,1,1,0,1]]]],[30947]]]]},{"k":"G5056","v":[["*",[42,41,[[39,6,6,0,6,[[938,1,1,0,1],[945,1,1,1,2],[952,3,3,2,5],[954,1,1,5,6]]],[40,3,3,6,9,[[959,1,1,6,7],[969,2,2,7,9]]],[41,4,4,9,13,[[973,1,1,9,10],[990,1,1,10,11],[993,1,1,11,12],[994,1,1,12,13]]],[42,1,1,13,14,[[1009,1,1,13,14]]],[44,5,4,14,18,[[1051,2,2,14,16],[1055,1,1,16,17],[1058,2,1,17,18]]],[45,3,3,18,21,[[1062,1,1,18,19],[1071,1,1,19,20],[1076,1,1,20,21]]],[46,3,3,21,24,[[1078,1,1,21,22],[1080,1,1,22,23],[1088,1,1,23,24]]],[49,1,1,24,25,[[1105,1,1,24,25]]],[51,1,1,25,26,[[1112,1,1,25,26]]],[53,1,1,26,27,[[1119,1,1,26,27]]],[57,5,5,27,32,[[1135,2,2,27,29],[1138,2,2,29,31],[1139,1,1,31,32]]],[58,1,1,32,33,[[1150,1,1,32,33]]],[59,4,4,33,37,[[1151,1,1,33,34],[1153,1,1,34,35],[1154,2,2,35,37]]],[65,4,4,37,41,[[1167,1,1,37,38],[1168,1,1,38,39],[1187,1,1,39,40],[1188,1,1,40,41]]]],[23439,23725,23963,23970,23971,24112,24314,24724,24730,24926,25693,25835,25901,26631,28089,28090,28192,28273,28371,28578,28742,28813,28854,29004,29440,29586,29701,30001,30009,30052,30055,30067,30365,30383,30432,30453,30463,30705,30743,31059,31093]]],["+",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25693]]],["Finally",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30432]]],["custom",[3,2,[[39,1,1,0,1,[[945,1,1,0,1]]],[44,2,1,1,2,[[1058,2,1,1,2]]]],[23725,28273]]],["end",[34,34,[[39,5,5,0,5,[[938,1,1,0,1],[952,3,3,1,4],[954,1,1,4,5]]],[40,3,3,5,8,[[959,1,1,5,6],[969,2,2,6,8]]],[41,3,3,8,11,[[973,1,1,8,9],[993,1,1,9,10],[994,1,1,10,11]]],[42,1,1,11,12,[[1009,1,1,11,12]]],[44,3,3,12,15,[[1051,2,2,12,14],[1055,1,1,14,15]]],[45,2,2,15,17,[[1062,1,1,15,16],[1076,1,1,16,17]]],[46,3,3,17,20,[[1078,1,1,17,18],[1080,1,1,18,19],[1088,1,1,19,20]]],[49,1,1,20,21,[[1105,1,1,20,21]]],[53,1,1,21,22,[[1119,1,1,21,22]]],[57,5,5,22,27,[[1135,2,2,22,24],[1138,2,2,24,26],[1139,1,1,26,27]]],[58,1,1,27,28,[[1150,1,1,27,28]]],[59,3,3,28,31,[[1151,1,1,28,29],[1154,2,2,29,31]]],[65,3,3,31,34,[[1168,1,1,31,32],[1187,1,1,32,33],[1188,1,1,33,34]]]],[23439,23963,23970,23971,24112,24314,24724,24730,24926,25835,25901,26631,28089,28090,28192,28371,28742,28813,28854,29004,29440,29701,30001,30009,30052,30055,30067,30365,30383,30453,30463,30743,31059,31093]]],["ending",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30705]]],["ends",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28578]]],["uttermost",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29586]]]]},{"k":"G5057","v":[["*",[22,21,[[39,9,9,0,9,[[933,2,2,0,2],[937,2,2,2,4],[938,1,1,4,5],[939,1,1,5,6],[946,1,1,6,7],[949,2,2,7,9]]],[40,3,2,9,11,[[958,3,2,9,11]]],[41,10,10,11,21,[[975,1,1,11,12],[977,3,3,12,15],[979,2,2,15,17],[987,1,1,17,18],[990,3,3,18,21]]]],[23280,23281,23389,23390,23420,23478,23744,23857,23858,24275,24276,25037,25134,25136,25137,25224,25229,25589,25698,25699,25701]]],["publican",[6,6,[[39,2,2,0,2,[[938,1,1,0,1],[946,1,1,1,2]]],[41,4,4,2,6,[[977,1,1,2,3],[990,3,3,3,6]]]],[23420,23744,25134,25698,25699,25701]]],["publicans",[16,15,[[39,7,7,0,7,[[933,2,2,0,2],[937,2,2,2,4],[939,1,1,4,5],[949,2,2,5,7]]],[40,3,2,7,9,[[958,3,2,7,9]]],[41,6,6,9,15,[[975,1,1,9,10],[977,2,2,10,12],[979,2,2,12,14],[987,1,1,14,15]]]],[23280,23281,23389,23390,23478,23857,23858,24275,24276,25037,25136,25137,25224,25229,25589]]]]},{"k":"G5058","v":[["custom",[3,3,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,1,1,2,3,[[977,1,1,2,3]]]],[23388,24274,25134]]]]},{"k":"G5059","v":[["wonders",[16,16,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[42,1,1,2,3,[[1000,1,1,2,3]]],[43,9,9,3,12,[[1019,3,3,3,6],[1021,1,1,6,7],[1022,1,1,7,8],[1023,1,1,8,9],[1024,1,1,9,10],[1031,1,1,10,11],[1032,1,1,11,12]]],[44,1,1,12,13,[[1060,1,1,12,13]]],[46,1,1,13,14,[[1089,1,1,13,14]]],[52,1,1,14,15,[[1117,1,1,14,15]]],[57,1,1,15,16,[[1134,1,1,15,16]]]],[23981,24739,26204,26968,26971,26992,27052,27071,27109,27152,27417,27454,28322,29034,29670,29981]]]]},{"k":"G5060","v":[["Tertius",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28358]]]]},{"k":"G5061","v":[["Tertullus",[2,2,[[43,2,2,0,2,[[1041,2,2,0,2]]]],[27770,27771]]]]},{"k":"G5062","v":[["*",[22,21,[[39,2,1,0,1,[[932,2,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]],[42,1,1,3,4,[[998,1,1,3,4]]],[43,8,8,4,12,[[1018,1,1,4,5],[1021,1,1,5,6],[1024,3,3,6,9],[1030,1,1,9,10],[1040,2,2,10,12]]],[46,1,1,12,13,[[1088,1,1,12,13]]],[57,2,2,13,15,[[1135,2,2,13,15]]],[65,6,6,15,21,[[1173,1,1,15,16],[1177,1,1,16,17],[1179,1,1,17,18],[1180,2,2,18,20],[1187,1,1,20,21]]]],[23211,24228,25065,26115,26926,27044,27146,27152,27158,27383,27747,27755,29013,30004,30012,30814,30874,30913,30927,30929,31070]]],["+",[7,7,[[42,1,1,0,1,[[998,1,1,0,1]]],[65,6,6,1,7,[[1173,1,1,1,2],[1177,1,1,2,3],[1179,1,1,3,4],[1180,2,2,4,6],[1187,1,1,6,7]]]],[26115,30814,30874,30913,30927,30929,31070]]],["forty",[15,14,[[39,2,1,0,1,[[932,2,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]],[43,8,8,3,11,[[1018,1,1,3,4],[1021,1,1,4,5],[1024,3,3,5,8],[1030,1,1,8,9],[1040,2,2,9,11]]],[46,1,1,11,12,[[1088,1,1,11,12]]],[57,2,2,12,14,[[1135,2,2,12,14]]]],[23211,24228,25065,26926,27044,27146,27152,27158,27383,27747,27755,29013,30004,30012]]]]},{"k":"G5063","v":[["*",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1030,1,1,1,2]]]],[27139,27380]]],["forty",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27139]]],["years",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27380]]]]},{"k":"G5064","v":[["*",[42,35,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[969,1,1,2,3]]],[41,1,1,3,4,[[974,1,1,3,4]]],[42,2,2,4,6,[[1007,1,1,4,5],[1015,1,1,5,6]]],[43,6,6,6,12,[[1027,1,1,6,7],[1028,1,1,7,8],[1029,1,1,8,9],[1038,2,2,9,11],[1044,1,1,11,12]]],[65,30,23,12,35,[[1170,5,4,12,16],[1171,5,3,16,19],[1172,2,2,19,21],[1173,6,4,21,25],[1175,3,3,25,28],[1177,1,1,28,29],[1180,3,2,29,31],[1181,1,1,31,32],[1185,2,1,32,33],[1186,1,1,33,34],[1187,1,1,34,35]]]],[23988,24263,24744,25010,26540,26848,27270,27312,27341,27673,27687,27884,30772,30774,30776,30778,30785,30787,30793,30794,30799,30811,30812,30814,30821,30853,30854,30855,30888,30927,30929,30953,31021,31046,31070]]],["+",[12,11,[[41,1,1,0,1,[[974,1,1,0,1]]],[65,11,10,1,11,[[1170,3,2,1,3],[1171,2,2,3,5],[1173,1,1,5,6],[1177,1,1,6,7],[1180,2,2,7,9],[1185,1,1,9,10],[1187,1,1,10,11]]]],[25010,30772,30778,30787,30793,30814,30888,30927,30929,31021,31070]]],["four",[30,28,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[969,1,1,2,3]]],[42,2,2,3,5,[[1007,1,1,3,4],[1015,1,1,4,5]]],[43,6,6,5,11,[[1027,1,1,5,6],[1028,1,1,6,7],[1029,1,1,7,8],[1038,2,2,8,10],[1044,1,1,10,11]]],[65,19,17,11,28,[[1170,2,2,11,13],[1171,3,3,13,16],[1172,2,2,16,18],[1173,5,3,18,21],[1175,3,3,21,24],[1180,1,1,24,25],[1181,1,1,25,26],[1185,1,1,26,27],[1186,1,1,27,28]]]],[23988,24263,24744,26540,26848,27270,27312,27341,27673,27687,27884,30774,30776,30785,30787,30793,30794,30799,30811,30812,30821,30853,30854,30855,30929,30953,31021,31046]]]]},{"k":"G5065","v":[["fourteenth",[2,2,[[43,2,2,0,2,[[1044,2,2,0,2]]]],[27882,27888]]]]},{"k":"G5066","v":[["days",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26562]]]]},{"k":"G5067","v":[["*",[10,9,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]],[65,7,6,3,9,[[1170,1,1,3,4],[1172,3,2,4,6],[1174,1,1,6,7],[1182,1,1,7,8],[1187,1,1,8,9]]]],[23622,24455,27289,30775,30800,30801,30839,30962,31072]]],["Four",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27289]]],["fourth",[8,7,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[65,6,5,2,7,[[1170,1,1,2,3],[1172,2,1,3,4],[1174,1,1,4,5],[1182,1,1,5,6],[1187,1,1,6,7]]]],[23622,24455,30775,30800,30839,30962,31072]]],["part",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30801]]]]},{"k":"G5068","v":[["foursquare",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31069]]]]},{"k":"G5069","v":[["quaternions",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27341]]]]},{"k":"G5070","v":[["thousand",[5,5,[[39,2,2,0,2,[[943,1,1,0,1],[944,1,1,1,2]]],[40,2,2,2,4,[[964,2,2,2,4]]],[43,1,1,4,5,[[1038,1,1,4,5]]]],[23671,23682,24509,24520,27702]]]]},{"k":"G5071","v":[["hundred",[4,4,[[43,3,3,0,3,[[1022,1,1,0,1],[1024,1,1,1,2],[1030,1,1,2,3]]],[47,1,1,3,4,[[1093,1,1,3,4]]]],[27095,27122,27382,29119]]]]},{"k":"G5072","v":[["months",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26191]]]]},{"k":"G5073","v":[["fourfold",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25739]]]]},{"k":"G5074","v":[["beasts",[3,3,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]]],[27271,27313,27953]]]]},{"k":"G5075","v":[["tetrarch",[3,1,[[41,3,1,0,1,[[975,3,1,0,1]]]],[25026]]]]},{"k":"G5076","v":[["tetrarch",[4,4,[[39,1,1,0,1,[[942,1,1,0,1]]],[41,2,2,1,3,[[975,1,1,1,2],[981,1,1,2,3]]],[43,1,1,3,4,[[1030,1,1,3,4]]]],[23598,25044,25308,27363]]]]},{"k":"G5077","v":[["+",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30506]]]]},{"k":"G5078","v":[["*",[3,3,[[43,2,2,0,2,[[1034,1,1,0,1],[1035,1,1,1,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[27552,27560,31015]]],["art",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27552]]],["craft",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31015]]],["occupation",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27560]]]]},{"k":"G5079","v":[["*",[4,4,[[43,2,2,0,2,[[1036,2,2,0,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]],[65,1,1,3,4,[[1184,1,1,3,4]]]],[27609,27623,30182,31015]]],["builder",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30182]]],["craftsman",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31015]]],["craftsmen",[2,2,[[43,2,2,0,2,[[1036,2,2,0,2]]]],[27609,27623]]]]},{"k":"G5080","v":[["melt",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30534]]]]},{"k":"G5081","v":[["clearly",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24525]]]]},{"k":"G5082","v":[["*",[4,4,[[46,1,1,0,1,[[1078,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]],[58,1,1,2,3,[[1148,1,1,2,3]]],[65,1,1,3,4,[[1182,1,1,3,4]]]],[28810,29980,30323,30972]]],["great",[3,3,[[46,1,1,0,1,[[1078,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]],[58,1,1,2,3,[[1148,1,1,2,3]]]],[28810,29980,30323]]],["mighty",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30972]]]]},{"k":"G5083","v":[["*",[75,68,[[39,7,6,0,6,[[947,1,1,0,1],[951,2,1,1,2],[955,2,2,2,4],[956,2,2,4,6]]],[40,1,1,6,7,[[963,1,1,6,7]]],[42,18,16,7,23,[[998,1,1,7,8],[1004,3,3,8,11],[1005,1,1,11,12],[1008,1,1,12,13],[1010,4,4,13,17],[1011,4,2,17,19],[1013,4,4,19,23]]],[43,10,9,23,32,[[1029,2,2,23,25],[1032,2,2,25,27],[1033,1,1,27,28],[1038,1,1,28,29],[1041,1,1,29,30],[1042,3,2,30,32]]],[45,1,1,32,33,[[1068,1,1,32,33]]],[46,2,1,33,34,[[1088,2,1,33,34]]],[48,1,1,34,35,[[1100,1,1,34,35]]],[51,1,1,35,36,[[1115,1,1,35,36]]],[53,2,2,36,38,[[1123,1,1,36,37],[1124,1,1,37,38]]],[54,1,1,38,39,[[1128,1,1,38,39]]],[58,2,2,39,41,[[1146,1,1,39,40],[1147,1,1,40,41]]],[59,1,1,41,42,[[1151,1,1,41,42]]],[60,4,4,42,46,[[1157,3,3,42,45],[1158,1,1,45,46]]],[61,8,8,46,54,[[1160,3,3,46,49],[1161,2,2,49,51],[1163,3,3,51,54]]],[64,5,4,54,58,[[1166,5,4,54,58]]],[65,11,10,58,68,[[1167,1,1,58,59],[1168,1,1,59,60],[1169,4,3,60,63],[1178,1,1,63,64],[1180,1,1,64,65],[1182,1,1,65,66],[1188,2,2,66,68]]]],[23779,23921,24165,24183,24199,24215,24472,26105,26432,26433,26436,26456,26587,26683,26689,26691,26692,26709,26719,26765,26770,26771,26774,27342,27343,27447,27466,27506,27689,27792,27800,27817,28524,28998,29275,29644,29785,29802,29877,30293,30303,30378,30504,30509,30517,30529,30553,30554,30555,30601,30603,30626,30627,30642,30673,30678,30685,30693,30700,30743,30749,30754,30756,30908,30938,30969,31087,31089]]],["Keep",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30693]]],["fast",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30749]]],["keep",[31,31,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[42,9,9,2,11,[[1004,3,3,2,5],[1010,2,2,5,7],[1011,2,2,7,9],[1013,2,2,9,11]]],[43,4,4,11,15,[[1032,2,2,11,13],[1033,1,1,13,14],[1041,1,1,14,15]]],[45,1,1,15,16,[[1068,1,1,15,16]]],[46,1,1,16,17,[[1088,1,1,16,17]]],[48,1,1,17,18,[[1100,1,1,17,18]]],[53,2,2,18,20,[[1123,1,1,18,19],[1124,1,1,19,20]]],[58,2,2,20,22,[[1146,1,1,20,21],[1147,1,1,21,22]]],[61,4,4,22,26,[[1160,1,1,22,23],[1161,1,1,23,24],[1163,2,2,24,26]]],[65,5,5,26,31,[[1167,1,1,26,27],[1169,1,1,27,28],[1178,1,1,28,29],[1180,1,1,29,30],[1188,1,1,30,31]]]],[23779,24472,26432,26433,26436,26683,26691,26709,26719,26770,26774,27447,27466,27506,27792,28524,28998,29275,29785,29802,30293,30303,30553,30601,30626,30627,30700,30756,30908,30938,31089]]],["keepers",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24199]]],["keepeth",[10,10,[[42,3,3,0,3,[[1005,1,1,0,1],[1010,2,2,1,3]]],[61,4,4,3,7,[[1160,2,2,3,5],[1161,1,1,5,6],[1163,1,1,6,7]]],[65,3,3,7,10,[[1168,1,1,7,8],[1182,1,1,8,9],[1188,1,1,9,10]]]],[26456,26689,26692,30554,30555,30603,30642,30743,30969,31087]]],["kept",[15,15,[[42,6,6,0,6,[[998,1,1,0,1],[1008,1,1,1,2],[1011,2,2,2,4],[1013,2,2,4,6]]],[43,4,4,6,10,[[1029,2,2,6,8],[1042,2,2,8,10]]],[46,1,1,10,11,[[1088,1,1,10,11]]],[54,1,1,11,12,[[1128,1,1,11,12]]],[64,1,1,12,13,[[1166,1,1,12,13]]],[65,2,2,13,15,[[1169,2,2,13,15]]]],[26105,26587,26709,26719,26765,26771,27342,27343,27800,27817,28998,29877,30678,30754,30756]]],["observe",[4,3,[[39,3,2,0,2,[[951,2,1,0,1],[956,1,1,1,2]]],[43,1,1,2,3,[[1038,1,1,2,3]]]],[23921,24215,27689]]],["preserved",[2,2,[[51,1,1,0,1,[[1115,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[29644,30673]]],["reserve",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30509]]],["reserved",[7,7,[[43,1,1,0,1,[[1042,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]],[60,3,3,2,5,[[1157,2,2,2,4],[1158,1,1,4,5]]],[64,2,2,5,7,[[1166,2,2,5,7]]]],[27817,30378,30504,30517,30529,30678,30685]]],["watched",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24165]]],["watching",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24183]]]]},{"k":"G5084","v":[["*",[3,3,[[43,2,2,0,2,[[1021,1,1,0,1],[1022,1,1,1,2]]],[45,1,1,2,3,[[1068,1,1,2,3]]]],[27025,27077,28506]]],["hold",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27025]]],["keeping",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28506]]],["prison",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27077]]]]},{"k":"G5085","v":[["Tiberias",[3,3,[[42,3,3,0,3,[[1002,2,2,0,2],[1017,1,1,2,3]]]],[26258,26280,26899]]]]},{"k":"G5086","v":[["Tiberius",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25026]]]]},{"k":"G5087","v":[["*",[96,94,[[39,6,6,0,6,[[933,1,1,0,1],[940,1,1,1,2],[942,1,1,2,3],[950,1,1,3,4],[952,1,1,4,5],[955,1,1,5,6]]],[40,8,8,6,14,[[960,1,1,6,7],[962,2,2,7,9],[966,1,1,9,10],[968,1,1,10,11],[971,2,2,11,13],[972,1,1,13,14]]],[41,15,15,14,29,[[973,1,1,14,15],[977,1,1,15,16],[978,1,1,16,17],[980,1,1,17,18],[981,1,1,18,19],[983,1,1,19,20],[984,1,1,20,21],[986,1,1,21,22],[991,2,2,22,24],[992,1,1,24,25],[993,1,1,25,26],[994,1,1,26,27],[995,2,2,27,29]]],[42,18,17,29,46,[[998,1,1,29,30],[1006,5,4,30,34],[1007,1,1,34,35],[1009,3,3,35,38],[1011,2,2,38,40],[1015,3,3,40,43],[1016,3,3,43,46]]],[43,23,23,46,69,[[1018,1,1,46,47],[1019,1,1,47,48],[1020,1,1,48,49],[1021,3,3,49,52],[1022,5,5,52,57],[1024,2,2,57,59],[1026,2,2,59,61],[1029,1,1,61,62],[1030,2,2,62,64],[1036,1,1,64,65],[1037,2,2,65,67],[1038,1,1,67,68],[1044,1,1,68,69]]],[44,3,3,69,72,[[1049,1,1,69,70],[1054,1,1,70,71],[1059,1,1,71,72]]],[45,7,7,72,79,[[1064,2,2,72,74],[1070,1,1,74,75],[1073,2,2,75,77],[1076,1,1,77,78],[1077,1,1,78,79]]],[46,2,2,79,81,[[1080,1,1,79,80],[1082,1,1,80,81]]],[51,1,1,81,82,[[1115,1,1,81,82]]],[53,2,2,82,84,[[1119,1,1,82,83],[1120,1,1,83,84]]],[54,1,1,84,85,[[1125,1,1,84,85]]],[57,3,3,85,88,[[1133,2,2,85,87],[1142,1,1,87,88]]],[59,2,2,88,90,[[1152,2,2,88,90]]],[60,1,1,90,91,[[1157,1,1,90,91]]],[61,2,1,91,92,[[1161,2,1,91,92]]],[65,2,2,92,94,[[1176,1,1,92,93],[1177,1,1,93,94]]]],[23249,23507,23600,23916,24008,24189,24344,24436,24463,24604,24709,24845,24873,24879,24959,25125,25194,25261,25345,25438,25505,25582,25752,25753,25822,25840,25905,25988,25990,26105,26492,26496,26498,26499,26557,26634,26667,26668,26712,26715,26844,26866,26867,26869,26880,26882,26930,26984,26998,27025,27057,27059,27061,27063,27074,27077,27084,27132,27176,27253,27256,27341,27391,27409,27606,27654,27662,27669,27867,28039,28188,28293,28420,28421,28558,28652,28662,28743,28778,28854,28896,29630,29708,29723,29820,29965,29976,30146,30405,30407,30506,30595,30863,30881]]],["+",[11,10,[[41,3,3,0,3,[[991,2,2,0,2],[994,1,1,2,3]]],[42,2,1,3,4,[[1006,2,1,3,4]]],[43,6,6,4,10,[[1019,1,1,4,5],[1024,1,1,5,6],[1026,1,1,6,7],[1037,1,1,7,8],[1038,1,1,8,9],[1044,1,1,9,10]]]],[25752,25753,25905,26499,26984,27176,27256,27662,27669,27867]]],["Settle",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25840]]],["appoint",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[24008,25505]]],["appointed",[4,4,[[51,1,1,0,1,[[1115,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]],[57,1,1,2,3,[[1133,1,1,2,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[29630,29820,29965,30407]]],["aside",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26634]]],["bowing",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24845]]],["committed",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28896]]],["conceived",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27063]]],["down",[9,8,[[41,1,1,0,1,[[981,1,1,0,1]]],[42,5,5,1,6,[[1006,2,2,1,3],[1009,2,2,3,5],[1011,1,1,5,6]]],[43,1,1,6,7,[[1021,1,1,6,7]]],[61,2,1,7,8,[[1161,2,1,7,8]]]],[25345,26496,26498,26667,26668,26712,27057,30595]]],["forth",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26105]]],["giveth",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26492]]],["laid",[23,23,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,4,4,1,5,[[962,2,2,1,3],[971,1,1,3,4],[972,1,1,4,5]]],[41,4,4,5,9,[[978,1,1,5,6],[986,1,1,6,7],[995,2,2,7,9]]],[42,6,6,9,15,[[1007,1,1,9,10],[1015,2,2,10,12],[1016,3,3,12,15]]],[43,7,7,15,22,[[1020,1,1,15,16],[1021,1,1,16,17],[1022,2,2,17,19],[1024,1,1,19,20],[1026,1,1,20,21],[1030,1,1,21,22]]],[45,1,1,22,23,[[1064,1,1,22,23]]]],[24189,24436,24463,24873,24879,25194,25582,25988,25990,26557,26866,26867,26869,26880,26882,26998,27059,27061,27074,27132,27253,27391,28420]]],["lay",[5,5,[[41,1,1,0,1,[[977,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]],[45,2,2,2,4,[[1064,1,1,2,3],[1077,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[25125,28188,28421,28778,30405]]],["made",[3,3,[[43,1,1,0,1,[[1037,1,1,0,1]]],[44,1,1,1,2,[[1049,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[27654,28039,30146]]],["make",[5,5,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[45,1,1,3,4,[[1070,1,1,3,4]]],[57,1,1,4,5,[[1133,1,1,4,5]]]],[23916,24709,25822,28558,29976]]],["making",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30506]]],["ordained",[2,2,[[42,1,1,0,1,[[1011,1,1,0,1]]],[53,1,1,1,2,[[1120,1,1,1,2]]]],[26715,29723]]],["purposed",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27606]]],["put",[15,15,[[39,3,3,0,3,[[933,1,1,0,1],[940,1,1,1,2],[942,1,1,2,3]]],[40,2,2,3,5,[[960,1,1,3,4],[966,1,1,4,5]]],[42,1,1,5,6,[[1015,1,1,5,6]]],[43,5,5,6,11,[[1018,1,1,6,7],[1021,1,1,7,8],[1022,2,2,8,10],[1029,1,1,10,11]]],[44,1,1,11,12,[[1059,1,1,11,12]]],[45,1,1,12,13,[[1076,1,1,12,13]]],[46,1,1,13,14,[[1080,1,1,13,14]]],[65,1,1,14,15,[[1177,1,1,14,15]]]],[23249,23507,23600,24344,24604,26844,26930,27025,27077,27084,27341,28293,28743,28854,30881]]],["putteth",[2,2,[[41,2,2,0,2,[[980,1,1,0,1],[983,1,1,1,2]]]],[25261,25438]]],["putting",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29708]]],["set",[4,4,[[43,1,1,0,1,[[1030,1,1,0,1]]],[45,2,2,1,3,[[1073,2,2,1,3]]],[65,1,1,3,4,[[1176,1,1,3,4]]]],[27409,28652,28662,30863]]],["up",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24959]]]]},{"k":"G5088","v":[["*",[19,18,[[39,4,4,0,4,[[929,3,3,0,3],[930,1,1,3,4]]],[41,5,5,4,9,[[973,2,2,4,6],[974,3,3,6,9]]],[42,1,1,9,10,[[1012,1,1,9,10]]],[47,1,1,10,11,[[1094,1,1,10,11]]],[57,2,2,11,13,[[1138,1,1,11,12],[1143,1,1,12,13]]],[58,1,1,13,14,[[1146,1,1,13,14]]],[65,5,4,14,18,[[1178,5,4,14,18]]]],[23165,23167,23169,23171,24924,24950,24979,24980,24984,26747,29158,30051,30183,30281,30893,30895,30896,30904]]],["bearest",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29158]]],["born",[3,3,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[65,1,1,2,3,[[1178,1,1,2,3]]]],[23171,24984,30895]]],["child",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30183]]],["delivered",[4,4,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]],[65,2,2,2,4,[[1178,2,2,2,4]]]],[24950,24979,30893,30895]]],["forth",[9,9,[[39,3,3,0,3,[[929,3,3,0,3]]],[41,2,2,3,5,[[973,1,1,3,4],[974,1,1,4,5]]],[57,1,1,5,6,[[1138,1,1,5,6]]],[58,1,1,6,7,[[1146,1,1,6,7]]],[65,2,2,7,9,[[1178,2,2,7,9]]]],[23165,23167,23169,24924,24980,30051,30281,30896,30904]]],["travail",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26747]]]]},{"k":"G5089","v":[["*",[3,3,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]]],[23490,24283,25147]]],["pluck",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]]],[23490,24283]]],["plucked",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25147]]]]},{"k":"G5090","v":[["Timaeus",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24634]]]]},{"k":"G5091","v":[["*",[21,16,[[39,6,5,0,5,[[943,3,3,0,3],[947,1,1,3,4],[955,2,1,4,5]]],[40,3,3,5,8,[[963,2,2,5,7],[966,1,1,7,8]]],[41,1,1,8,9,[[990,1,1,8,9]]],[42,6,3,9,12,[[1001,4,1,9,10],[1004,1,1,10,11],[1008,1,1,11,12]]],[43,1,1,12,13,[[1045,1,1,12,13]]],[48,1,1,13,14,[[1102,1,1,13,14]]],[53,1,1,14,15,[[1123,1,1,14,15]]],[59,2,1,15,16,[[1152,2,1,15,16]]]],[23637,23639,23641,23781,24138,24469,24473,24607,25708,26233,26430,26606,27909,29339,29766,30416]]],["Honour",[9,8,[[39,2,2,0,2,[[943,1,1,0,1],[947,1,1,1,2]]],[40,2,2,2,4,[[963,1,1,2,3],[966,1,1,3,4]]],[41,1,1,4,5,[[990,1,1,4,5]]],[48,1,1,5,6,[[1102,1,1,5,6]]],[53,1,1,6,7,[[1123,1,1,6,7]]],[59,2,1,7,8,[[1152,2,1,7,8]]]],[23637,23781,24473,24607,25708,29339,29766,30416]]],["honour",[5,4,[[39,1,1,0,1,[[943,1,1,0,1]]],[42,4,3,1,4,[[1001,2,1,1,2],[1004,1,1,2,3],[1008,1,1,3,4]]]],[23639,26233,26430,26606]]],["honoureth",[4,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[42,2,1,2,3,[[1001,2,1,2,3]]]],[23641,24469,26233]]],["honours",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27909]]],["value",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24138]]],["valued",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24138]]]]},{"k":"G5092","v":[["*",[43,42,[[39,2,2,0,2,[[955,2,2,0,2]]],[42,1,1,2,3,[[1000,1,1,2,3]]],[43,6,6,3,9,[[1021,1,1,3,4],[1022,2,2,4,6],[1024,1,1,6,7],[1036,1,1,7,8],[1045,1,1,8,9]]],[44,6,5,9,14,[[1047,2,2,9,11],[1054,1,1,11,12],[1057,1,1,12,13],[1058,2,1,13,14]]],[45,4,4,14,18,[[1067,1,1,14,15],[1068,1,1,15,16],[1073,2,2,16,18]]],[50,1,1,18,19,[[1108,1,1,18,19]]],[51,1,1,19,20,[[1114,1,1,19,20]]],[53,4,4,20,24,[[1119,1,1,20,21],[1123,1,1,21,22],[1124,2,2,22,24]]],[54,2,2,24,26,[[1126,2,2,24,26]]],[57,4,4,26,30,[[1134,2,2,26,28],[1135,1,1,28,29],[1137,1,1,29,30]]],[59,3,3,30,33,[[1151,1,1,30,31],[1152,1,1,31,32],[1153,1,1,32,33]]],[60,1,1,33,34,[[1156,1,1,33,34]]],[65,8,8,34,42,[[1170,2,2,34,36],[1171,2,2,36,38],[1173,1,1,38,39],[1185,1,1,39,40],[1187,2,2,40,42]]]],[24135,24138,26200,27056,27061,27062,27132,27604,27909,27969,27972,28176,28255,28273,28487,28510,28657,28658,29517,29607,29713,29780,29789,29804,29847,29848,29984,29986,29998,30034,30381,30406,30431,30496,30777,30779,30791,30792,30822,31018,31077,31079]]],["honour",[32,31,[[42,1,1,0,1,[[1000,1,1,0,1]]],[44,6,5,1,6,[[1047,2,2,1,3],[1054,1,1,3,4],[1057,1,1,4,5],[1058,2,1,5,6]]],[45,2,2,6,8,[[1073,2,2,6,8]]],[50,1,1,8,9,[[1108,1,1,8,9]]],[51,1,1,9,10,[[1114,1,1,9,10]]],[53,4,4,10,14,[[1119,1,1,10,11],[1123,1,1,11,12],[1124,2,2,12,14]]],[54,2,2,14,16,[[1126,2,2,14,16]]],[57,4,4,16,20,[[1134,2,2,16,18],[1135,1,1,18,19],[1137,1,1,19,20]]],[59,2,2,20,22,[[1151,1,1,20,21],[1153,1,1,21,22]]],[60,1,1,22,23,[[1156,1,1,22,23]]],[65,8,8,23,31,[[1170,2,2,23,25],[1171,2,2,25,27],[1173,1,1,27,28],[1185,1,1,28,29],[1187,2,2,29,31]]]],[26200,27969,27972,28176,28255,28273,28657,28658,29517,29607,29713,29780,29789,29804,29847,29848,29984,29986,29998,30034,30381,30431,30496,30777,30779,30791,30792,30822,31018,31077,31079]]],["honoured",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27909]]],["precious",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30406]]],["price",[7,7,[[39,2,2,0,2,[[955,2,2,0,2]]],[43,3,3,2,5,[[1022,2,2,2,4],[1036,1,1,4,5]]],[45,2,2,5,7,[[1067,1,1,5,6],[1068,1,1,6,7]]]],[24135,24138,27061,27062,27604,28487,28510]]],["prices",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27056]]],["sum",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27132]]]]},{"k":"G5093","v":[["*",[14,13,[[43,2,2,0,2,[[1022,1,1,0,1],[1037,1,1,1,2]]],[45,1,1,2,3,[[1064,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]],[58,1,1,4,5,[[1150,1,1,4,5]]],[59,2,2,5,7,[[1151,2,2,5,7]]],[60,1,1,7,8,[[1156,1,1,7,8]]],[65,6,5,8,13,[[1183,1,1,8,9],[1184,3,2,9,11],[1187,2,2,11,13]]]],[27093,27650,28422,30245,30361,30381,30393,30483,30979,31005,31009,31064,31072]]],["dear",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27650]]],["honourable",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30245]]],["precious",[11,10,[[45,1,1,0,1,[[1064,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]],[59,2,2,2,4,[[1151,2,2,2,4]]],[60,1,1,4,5,[[1156,1,1,4,5]]],[65,6,5,5,10,[[1183,1,1,5,6],[1184,3,2,6,8],[1187,2,2,8,10]]]],[28422,30361,30381,30393,30483,30979,31005,31009,31064,31072]]],["reputation",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27093]]]]},{"k":"G5094","v":[["costliness",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31012]]]]},{"k":"G5095","v":[["*",[24,24,[[43,6,6,0,6,[[1033,1,1,0,1],[1034,2,2,1,3],[1035,1,1,3,4],[1036,1,1,4,5],[1037,1,1,5,6]]],[44,1,1,6,7,[[1061,1,1,6,7]]],[45,2,2,7,9,[[1065,1,1,7,8],[1077,1,1,8,9]]],[46,2,2,9,11,[[1078,2,2,9,11]]],[49,2,2,11,13,[[1103,1,1,11,12],[1104,1,1,12,13]]],[50,1,1,13,14,[[1107,1,1,13,14]]],[51,3,3,14,17,[[1111,1,1,14,15],[1113,2,2,15,17]]],[52,1,1,17,18,[[1116,1,1,17,18]]],[53,3,3,18,21,[[1119,2,2,18,20],[1124,1,1,20,21]]],[54,1,1,21,22,[[1125,1,1,21,22]]],[56,1,1,22,23,[[1132,1,1,22,23]]],[57,1,1,23,24,[[1145,1,1,23,24]]]],[27484,27537,27538,27562,27607,27630,28357,28450,28786,28801,28819,29362,29410,29466,29561,29592,29596,29650,29698,29714,29808,29811,29939,30264]]],["Timotheus",[17,17,[[43,6,6,0,6,[[1033,1,1,0,1],[1034,2,2,1,3],[1035,1,1,3,4],[1036,1,1,4,5],[1037,1,1,5,6]]],[44,1,1,6,7,[[1061,1,1,6,7]]],[45,2,2,7,9,[[1065,1,1,7,8],[1077,1,1,8,9]]],[46,1,1,9,10,[[1078,1,1,9,10]]],[49,2,2,10,12,[[1103,1,1,10,11],[1104,1,1,11,12]]],[50,1,1,12,13,[[1107,1,1,12,13]]],[51,3,3,13,16,[[1111,1,1,13,14],[1113,2,2,14,16]]],[52,1,1,16,17,[[1116,1,1,16,17]]]],[27484,27537,27538,27562,27607,27630,28357,28450,28786,28819,29362,29410,29466,29561,29592,29596,29650]]],["Timothy",[7,7,[[46,1,1,0,1,[[1078,1,1,0,1]]],[53,3,3,1,4,[[1119,2,2,1,3],[1124,1,1,3,4]]],[54,1,1,4,5,[[1125,1,1,4,5]]],[56,1,1,5,6,[[1132,1,1,5,6]]],[57,1,1,6,7,[[1145,1,1,6,7]]]],[28801,29698,29714,29808,29811,29939,30264]]]]},{"k":"G5096","v":[["Timon",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27106]]]]},{"k":"G5097","v":[["punished",[2,2,[[43,2,2,0,2,[[1039,1,1,0,1],[1043,1,1,1,2]]]],[27709,27834]]]]},{"k":"G5098","v":[["punishment",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30162]]]]},{"k":"G5099","v":[["+",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29658]]]]},{"k":"G5100","v":[["*",[457,424,[[39,21,20,0,20,[[933,1,1,0,1],[936,1,1,1,2],[937,1,1,2,3],[939,1,1,3,4],[940,4,4,4,8],[944,1,1,8,9],[946,1,1,9,10],[948,1,1,10,11],[949,3,2,11,13],[950,2,2,13,15],[952,3,3,15,18],[955,1,1,18,19],[956,1,1,19,20]]],[40,29,28,20,48,[[958,1,1,20,21],[960,1,1,21,22],[961,1,1,22,23],[963,2,2,23,25],[964,3,3,25,28],[965,3,3,28,31],[967,6,5,31,36],[968,2,2,36,38],[969,3,3,38,41],[970,4,4,41,45],[971,2,2,45,47],[972,1,1,47,48]]],[41,79,75,48,123,[[973,1,1,48,49],[978,1,1,49,50],[979,5,5,50,55],[980,4,4,55,59],[981,7,7,59,66],[982,6,5,66,71],[983,8,7,71,78],[984,4,4,78,82],[985,4,4,82,86],[986,5,5,86,91],[987,1,1,91,92],[988,5,5,92,97],[989,1,1,97,98],[990,5,4,98,102],[991,6,5,102,107],[992,4,4,107,111],[993,2,2,111,113],[994,3,3,113,116],[995,3,3,116,119],[996,4,4,119,123]]],[42,48,45,123,168,[[997,1,1,123,124],[998,1,1,124,125],[999,2,2,125,127],[1000,1,1,127,128],[1001,3,3,128,131],[1002,6,6,131,137],[1003,5,5,137,142],[1004,2,2,142,144],[1005,4,4,144,148],[1006,2,2,148,150],[1007,7,7,150,157],[1008,4,3,157,160],[1009,3,2,160,162],[1010,2,2,162,164],[1011,2,2,164,166],[1012,1,1,166,167],[1016,2,1,167,168]]],[43,107,99,168,267,[[1019,1,1,168,169],[1020,2,2,169,171],[1021,3,3,171,174],[1022,7,6,174,180],[1023,1,1,180,181],[1024,1,1,181,182],[1025,4,3,182,185],[1026,6,6,185,191],[1027,6,6,191,197],[1028,3,3,197,200],[1029,1,1,200,201],[1030,3,3,201,204],[1031,1,1,204,205],[1032,5,5,205,210],[1033,5,4,210,214],[1034,10,9,214,223],[1035,5,5,223,228],[1036,9,8,228,236],[1037,1,1,236,237],[1038,3,3,237,240],[1039,1,1,240,241],[1040,4,4,241,245],[1041,4,4,245,249],[1042,9,7,249,256],[1043,1,1,256,257],[1044,8,8,257,265],[1045,3,2,265,267]]],[44,14,13,267,280,[[1046,2,2,267,269],[1048,2,2,269,271],[1050,2,1,271,272],[1053,2,2,272,274],[1054,1,1,274,275],[1056,2,2,275,277],[1059,1,1,277,278],[1060,2,2,278,280]]],[45,46,43,280,323,[[1062,1,1,280,281],[1063,1,1,281,282],[1064,2,2,282,284],[1065,3,3,284,287],[1066,2,2,287,289],[1067,3,3,289,292],[1068,3,2,292,294],[1069,5,4,294,298],[1070,3,3,298,301],[1071,9,8,301,309],[1072,3,3,309,312],[1075,4,4,312,316],[1076,5,5,316,321],[1077,2,2,321,323]]],[46,16,14,323,337,[[1079,2,2,323,325],[1080,2,2,325,327],[1085,2,2,327,329],[1087,3,3,329,332],[1088,3,2,332,334],[1089,3,2,334,336],[1090,1,1,336,337]]],[47,8,7,337,344,[[1091,1,1,337,338],[1092,2,2,338,340],[1095,1,1,340,341],[1096,4,3,341,344]]],[48,3,3,344,347,[[1098,1,1,344,345],[1101,1,1,345,346],[1102,1,1,346,347]]],[49,2,1,347,348,[[1103,2,1,347,348]]],[50,6,5,348,353,[[1108,4,4,348,352],[1109,2,1,352,353]]],[51,4,3,353,356,[[1111,1,1,353,354],[1112,1,1,354,355],[1115,2,1,355,356]]],[52,5,4,356,360,[[1117,1,1,356,357],[1118,4,3,357,360]]],[53,14,13,360,373,[[1119,4,4,360,364],[1121,1,1,364,365],[1122,1,1,365,366],[1123,5,4,366,370],[1124,3,3,370,373]]],[54,3,3,373,376,[[1126,3,3,373,376]]],[55,1,1,376,377,[[1129,1,1,376,377]]],[56,1,1,377,378,[[1132,1,1,377,378]]],[57,21,20,378,398,[[1134,3,3,378,381],[1135,4,4,381,385],[1136,4,4,385,389],[1137,1,1,389,390],[1140,1,1,390,391],[1142,3,3,391,394],[1143,1,1,394,395],[1144,3,2,395,397],[1145,1,1,397,398]]],[58,12,10,398,408,[[1146,3,3,398,401],[1147,3,3,401,404],[1150,6,4,404,408]]],[59,2,2,408,410,[[1152,1,1,408,409],[1154,1,1,409,410]]],[60,4,3,410,413,[[1157,1,1,410,411],[1158,3,2,411,413]]],[61,6,6,413,419,[[1160,3,3,413,416],[1162,1,1,416,417],[1163,2,2,417,419]]],[64,1,1,419,420,[[1166,1,1,419,420]]],[65,4,4,420,424,[[1169,1,1,420,421],[1179,1,1,421,422],[1188,2,2,422,424]]]],[23257,23373,23382,23486,23508,23518,23527,23536,23700,23739,23812,23829,23859,23896,23918,23961,23974,23980,24176,24206,24266,24345,24389,24464,24465,24503,24504,24526,24539,24568,24576,24643,24645,24653,24656,24665,24686,24692,24722,24732,24738,24758,24805,24811,24819,24847,24861,24891,24898,25148,25197,25214,25231,25235,25236,25247,25272,25291,25294,25308,25309,25320,25324,25328,25350,25358,25388,25393,25394,25396,25401,25406,25420,25432,25441,25442,25450,25459,25463,25472,25474,25475,25519,25524,25541,25549,25554,25555,25561,25568,25569,25599,25621,25639,25640,25650,25651,25663,25690,25697,25706,25723,25739,25743,25746,25762,25770,25788,25806,25807,25818,25828,25831,25899,25914,25920,25943,25954,25961,25992,26013,26015,26032,26090,26120,26123,26125,26202,26215,26224,26229,26264,26269,26303,26307,26308,26321,26332,26345,26353,26365,26372,26432,26433,26456,26462,26471,26472,26490,26509,26524,26532,26533,26560,26569,26572,26580,26600,26606,26627,26650,26659,26682,26691,26705,26712,26756,26890,26994,26998,27001,27054,27056,27057,27060,27061,27074,27084,27093,27095,27110,27140,27185,27207,27212,27218,27226,27235,27249,27252,27259,27260,27265,27270,27282,27306,27307,27312,27327,27336,27338,27363,27368,27403,27422,27443,27444,27447,27466,27478,27484,27495,27497,27499,27527,27528,27529,27541,27543,27544,27548,27551,27557,27559,27564,27571,27580,27581,27586,27594,27598,27609,27616,27617,27623,27624,27635,27674,27680,27698,27716,27746,27751,27752,27754,27770,27781,27787,27793,27804,27807,27809,27810,27812,27815,27822,27849,27856,27863,27871,27881,27882,27894,27897,27899,27918,27920,27941,27943,27994,27999,28054,28140,28155,28166,28223,28226,28294,28321,28329,28378,28396,28414,28417,28435,28438,28451,28455,28465,28468,28478,28479,28505,28523,28529,28530,28534,28537,28552,28555,28562,28574,28575,28576,28577,28586,28594,28595,28598,28616,28618,28634,28702,28705,28713,28716,28724,28730,28752,28753,28755,28783,28787,28829,28834,28842,28846,28944,28952,28973,28979,28983,29005,29010,29028,29039,29051,29064,29087,29093,29168,29189,29191,29203,29238,29331,29345,29376,29498,29502,29510,29517,29530,29568,29579,29636,29664,29686,29689,29692,29699,29702,29704,29715,29736,29748,29767,29771,29778,29787,29795,29798,29809,29832,29845,29848,29904,29956,29983,29984,29986,29999,30007,30008,30011,30015,30020,30021,30025,30034,30095,30158,30160,30161,30212,30227,30228,30243,30271,30273,30284,30307,30309,30311,30366,30367,30368,30373,30418,30461,30519,30531,30538,30551,30565,30577,30623,30638,30640,30676,30766,30925,31098,31099]]],["+",[38,35,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,5,4,1,5,[[983,1,1,1,2],[984,1,1,2,3],[991,2,1,3,4],[994,1,1,4,5]]],[42,7,6,5,11,[[1002,2,2,5,7],[1007,1,1,7,8],[1009,1,1,8,9],[1011,1,1,9,10],[1016,2,1,10,11]]],[43,7,7,11,18,[[1019,1,1,11,12],[1022,1,1,12,13],[1028,1,1,13,14],[1038,1,1,14,15],[1042,1,1,15,16],[1043,1,1,16,17],[1044,1,1,17,18]]],[45,4,4,18,22,[[1065,1,1,18,19],[1070,1,1,19,20],[1072,1,1,20,21],[1077,1,1,21,22]]],[46,3,3,22,25,[[1088,1,1,22,23],[1089,1,1,23,24],[1090,1,1,24,25]]],[48,1,1,25,26,[[1102,1,1,25,26]]],[51,1,1,26,27,[[1115,1,1,26,27]]],[53,1,1,27,28,[[1124,1,1,27,28]]],[57,4,4,28,32,[[1134,2,2,28,30],[1137,1,1,30,31],[1140,1,1,31,32]]],[58,3,2,32,34,[[1150,3,2,32,34]]],[59,1,1,34,35,[[1154,1,1,34,35]]]],[24345,25441,25463,25739,25914,26264,26269,26572,26650,26705,26890,26994,27093,27336,27698,27822,27849,27897,28438,28552,28618,28783,29005,29028,29051,29345,29636,29795,29984,29986,30034,30095,30367,30368,30461]]],["He",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30161]]],["One",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29904]]],["Some",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]]],[24176,29376,29787]]],["Somebody",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25291]]],["a",[6,5,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,2,1,1,2,[[990,2,1,1,2]]],[43,2,2,2,4,[[1035,1,1,2,3],[1044,1,1,3,4]]],[47,1,1,4,5,[[1096,1,1,4,5]]]],[23739,25690,27571,27863,29189]]],["another",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27617]]],["any",[44,43,[[39,2,2,0,2,[[949,1,1,0,1],[950,1,1,1,2]]],[40,4,4,2,6,[[964,1,1,2,3],[967,1,1,3,4],[969,1,1,4,5],[972,1,1,5,6]]],[41,3,3,6,9,[[981,1,1,6,7],[986,1,1,7,8],[996,1,1,8,9]]],[42,3,3,9,12,[[997,1,1,9,10],[998,1,1,10,11],[1006,1,1,11,12]]],[43,5,4,12,16,[[1021,1,1,12,13],[1026,1,1,13,14],[1042,1,1,14,15],[1045,2,1,15,16]]],[44,3,3,16,19,[[1053,1,1,16,17],[1054,1,1,17,18],[1060,1,1,18,19]]],[45,5,5,19,24,[[1062,1,1,19,20],[1067,2,2,20,22],[1068,1,1,22,23],[1071,1,1,23,24]]],[46,3,3,24,27,[[1079,1,1,24,25],[1088,1,1,25,26],[1089,1,1,26,27]]],[48,1,1,27,28,[[1101,1,1,27,28]]],[50,2,2,28,30,[[1108,1,1,28,29],[1109,1,1,29,30]]],[51,2,2,30,32,[[1112,1,1,30,31],[1115,1,1,31,32]]],[52,1,1,32,33,[[1118,1,1,32,33]]],[53,2,2,33,35,[[1123,2,2,33,35]]],[57,5,5,35,40,[[1135,2,2,35,37],[1136,1,1,37,38],[1144,2,2,38,40]]],[58,2,2,40,42,[[1146,1,1,40,41],[1150,1,1,41,42]]],[60,1,1,42,43,[[1158,1,1,42,43]]]],[23829,23918,24526,24665,24722,24891,25324,25561,26032,26090,26120,26509,27056,27218,27812,27920,28155,28166,28321,28378,28468,28479,28505,28594,28829,29010,29039,29331,29517,29530,29579,29636,29686,29767,29771,30007,30008,30015,30227,30228,30271,30373,30531]]],["certain",[111,109,[[39,3,3,0,3,[[937,1,1,0,1],[940,1,1,1,2],[949,1,1,2,3]]],[40,7,7,3,10,[[958,1,1,3,4],[961,1,1,4,5],[963,1,1,5,6],[967,1,1,6,7],[968,1,1,7,8],[970,2,2,8,10]]],[41,39,38,10,48,[[973,1,1,10,11],[978,1,1,11,12],[979,2,2,12,14],[980,2,2,14,16],[981,1,1,16,17],[982,6,5,17,22],[983,3,3,22,25],[984,1,1,25,26],[985,2,2,26,28],[986,2,2,28,30],[987,1,1,30,31],[988,3,3,31,34],[989,1,1,34,35],[990,3,3,35,38],[991,1,1,38,39],[992,3,3,39,42],[993,1,1,42,43],[994,1,1,43,44],[995,1,1,44,45],[996,3,3,45,48]]],[42,4,4,48,52,[[1000,1,1,48,49],[1001,1,1,49,50],[1007,1,1,50,51],[1008,1,1,51,52]]],[43,53,52,52,104,[[1020,1,1,52,53],[1022,2,2,53,55],[1023,1,1,55,56],[1025,2,2,56,58],[1026,4,4,58,62],[1027,4,4,62,66],[1028,1,1,66,67],[1029,1,1,67,68],[1030,2,2,68,70],[1031,1,1,70,71],[1032,3,3,71,74],[1033,5,4,74,78],[1034,6,6,78,84],[1035,3,3,84,87],[1036,4,4,87,91],[1037,1,1,91,92],[1038,1,1,92,93],[1040,1,1,93,94],[1041,3,3,94,97],[1042,3,3,97,100],[1044,4,4,100,104]]],[44,1,1,104,105,[[1060,1,1,104,105]]],[47,1,1,105,106,[[1092,1,1,105,106]]],[57,2,2,106,108,[[1136,1,1,106,107],[1142,1,1,107,108]]],[64,1,1,108,109,[[1166,1,1,108,109]]]],[23382,23527,23859,24266,24389,24464,24645,24686,24805,24811,24898,25148,25197,25236,25247,25272,25358,25388,25393,25394,25396,25401,25406,25432,25442,25475,25524,25549,25555,25569,25599,25621,25639,25640,25663,25697,25706,25723,25743,25788,25806,25818,25828,25920,25954,25992,26013,26015,26202,26215,26524,26600,26998,27060,27061,27110,27185,27212,27226,27235,27249,27252,27260,27270,27282,27307,27312,27338,27363,27368,27422,27444,27447,27466,27484,27495,27497,27499,27528,27529,27541,27543,27551,27557,27559,27564,27581,27586,27598,27609,27616,27635,27674,27746,27770,27787,27793,27809,27810,27815,27856,27871,27881,27894,28329,29093,30021,30160,30676]]],["divers",[2,2,[[40,1,1,0,1,[[964,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[24503,27594]]],["he",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27057]]],["him",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25214]]],["kind",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30284]]],["man",[86,85,[[39,6,6,0,6,[[936,1,1,0,1],[939,1,1,1,2],[940,1,1,2,3],[950,1,1,3,4],[952,2,2,4,6]]],[40,5,5,6,11,[[964,1,1,6,7],[965,1,1,7,8],[967,2,2,8,10],[969,1,1,10,11]]],[41,2,2,11,13,[[991,2,2,11,13]]],[42,22,21,13,34,[[999,2,2,13,15],[1002,3,3,15,18],[1003,2,2,18,20],[1004,2,2,20,22],[1005,3,3,22,25],[1006,1,1,25,26],[1007,3,3,26,29],[1008,3,2,29,31],[1010,1,1,31,32],[1011,1,1,32,33],[1012,1,1,33,34]]],[43,5,5,34,39,[[1025,1,1,34,35],[1027,1,1,35,36],[1030,1,1,36,37],[1036,1,1,37,38],[1041,1,1,38,39]]],[44,1,1,39,40,[[1053,1,1,39,40]]],[45,14,14,40,54,[[1065,1,1,40,41],[1066,1,1,41,42],[1068,2,2,42,44],[1069,3,3,44,47],[1070,1,1,47,48],[1071,1,1,48,49],[1072,2,2,49,51],[1075,2,2,51,53],[1077,1,1,53,54]]],[46,4,4,54,58,[[1085,2,2,54,56],[1088,1,1,56,57],[1089,1,1,57,58]]],[47,1,1,58,59,[[1096,1,1,58,59]]],[48,1,1,59,60,[[1098,1,1,59,60]]],[50,4,4,60,64,[[1108,3,3,60,63],[1109,1,1,63,64]]],[52,2,2,64,66,[[1117,1,1,64,65],[1118,1,1,65,66]]],[53,2,2,66,68,[[1119,1,1,66,67],[1121,1,1,67,68]]],[54,2,2,68,70,[[1126,2,2,68,70]]],[57,2,2,70,72,[[1136,1,1,70,71],[1144,1,1,71,72]]],[58,2,2,72,74,[[1147,2,2,72,74]]],[59,1,1,74,75,[[1152,1,1,74,75]]],[60,1,1,75,76,[[1157,1,1,75,76]]],[61,5,5,76,81,[[1160,3,3,76,79],[1162,1,1,79,80],[1163,1,1,80,81]]],[65,4,4,81,85,[[1169,1,1,81,82],[1179,1,1,82,83],[1188,2,2,83,85]]]],[23373,23486,23508,23896,23961,23980,24504,24568,24643,24656,24738,25746,25762,26123,26125,26303,26307,26308,26345,26365,26432,26433,26462,26471,26472,26490,26532,26533,26580,26606,26627,26691,26712,26756,27207,27306,27403,27623,27781,28140,28435,28465,28505,28523,28529,28530,28537,28555,28595,28616,28634,28705,28716,28787,28944,28952,29005,29028,29191,29238,29498,29502,29510,29530,29664,29692,29704,29736,29832,29848,30025,30227,30307,30311,30418,30519,30551,30565,30577,30623,30640,30766,30925,31098,31099]]],["man's",[4,4,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[992,1,1,2,3]]],[52,1,1,3,4,[[1118,1,1,3,4]]]],[24692,25474,25807,29686]]],["men",[2,2,[[43,1,1,0,1,[[1032,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[27443,30531]]],["one",[33,33,[[39,2,2,0,2,[[940,2,2,0,2]]],[40,2,2,2,4,[[965,1,1,2,3],[971,1,1,3,4]]],[41,13,13,4,17,[[979,1,1,4,5],[980,1,1,5,6],[981,2,2,6,8],[983,2,2,8,10],[984,1,1,10,11],[985,1,1,11,12],[986,2,2,12,14],[988,2,2,14,16],[995,1,1,16,17]]],[43,9,9,17,26,[[1022,2,2,17,19],[1024,1,1,19,20],[1026,1,1,20,21],[1027,1,1,21,22],[1036,1,1,22,23],[1038,1,1,23,24],[1039,1,1,24,25],[1042,1,1,25,26]]],[44,1,1,26,27,[[1050,1,1,26,27]]],[45,3,3,27,30,[[1064,1,1,27,28],[1066,1,1,28,29],[1075,1,1,29,30]]],[57,1,1,30,31,[[1134,1,1,30,31]]],[58,2,2,31,33,[[1147,1,1,31,32],[1150,1,1,32,33]]]],[23518,23536,24576,24847,25231,25294,25320,25350,25406,25450,25472,25541,25554,25568,25650,25651,25961,27084,27093,27140,27259,27265,27594,27680,27716,27815,28054,28414,28455,28702,29983,30309,30373]]],["other",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30366]]],["ought",[6,6,[[39,2,2,0,2,[[933,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[967,1,1,2,3]]],[43,2,2,3,5,[[1021,1,1,3,4],[1045,1,1,4,5]]],[56,1,1,5,6,[[1132,1,1,5,6]]]],[23257,23829,24665,27054,27918,29956]]],["pieces",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27899]]],["some",[72,72,[[39,2,2,0,2,[[944,1,1,0,1],[956,1,1,1,2]]],[40,5,5,2,7,[[963,1,1,2,3],[965,1,1,3,4],[970,2,2,4,6],[971,1,1,6,7]]],[41,8,8,7,15,[[981,3,3,7,10],[983,1,1,10,11],[985,1,1,11,12],[991,1,1,12,13],[993,1,1,13,14],[995,1,1,14,15]]],[42,7,7,15,22,[[1002,1,1,15,16],[1003,2,2,16,18],[1005,1,1,18,19],[1007,2,2,19,21],[1009,1,1,21,22]]],[43,9,9,22,31,[[1022,1,1,22,23],[1025,1,1,23,24],[1028,1,1,24,25],[1032,1,1,25,26],[1034,3,3,26,29],[1035,1,1,29,30],[1044,1,1,30,31]]],[44,7,7,31,38,[[1046,2,2,31,33],[1048,2,2,33,35],[1050,1,1,35,36],[1056,2,2,36,38]]],[45,13,13,38,51,[[1065,1,1,38,39],[1067,1,1,39,40],[1069,1,1,40,41],[1070,1,1,41,42],[1071,4,4,42,46],[1076,5,5,46,51]]],[46,3,3,51,54,[[1080,1,1,51,52],[1087,2,2,52,54]]],[47,1,1,54,55,[[1091,1,1,54,55]]],[49,1,1,55,56,[[1103,1,1,55,56]]],[52,1,1,56,57,[[1118,1,1,56,57]]],[53,8,8,57,65,[[1119,3,3,57,60],[1122,1,1,60,61],[1123,2,2,61,63],[1124,2,2,63,65]]],[54,1,1,65,66,[[1126,1,1,65,66]]],[57,6,6,66,72,[[1135,2,2,66,68],[1136,1,1,68,69],[1142,1,1,69,70],[1143,1,1,70,71],[1145,1,1,71,72]]]],[23700,24206,24465,24539,24758,24819,24861,25308,25309,25328,25420,25519,25770,25831,25943,26321,26353,26372,26456,26560,26569,26659,27074,27185,27327,27478,27527,27541,27544,27580,27882,27941,27943,27994,27999,28054,28223,28226,28451,28478,28534,28562,28574,28575,28576,28577,28724,28730,28752,28753,28755,28842,28973,28983,29064,29376,29689,29699,29702,29715,29748,29778,29787,29798,29809,29845,29999,30011,30020,30158,30212,30243]]],["somebody",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27095]]],["something",[5,5,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,1,1,1,2,[[1009,1,1,1,2]]],[43,2,2,2,4,[[1020,1,1,2,3],[1040,1,1,3,4]]],[47,1,1,4,5,[[1096,1,1,4,5]]]],[25459,26659,27001,27752,29191]]],["somewhat",[5,5,[[41,1,1,0,1,[[979,1,1,0,1]]],[43,2,2,1,3,[[1040,1,1,1,2],[1042,1,1,2,3]]],[46,1,1,3,4,[[1087,1,1,3,4]]],[47,1,1,4,5,[[1092,1,1,4,5]]]],[25235,27754,27822,28979,29087]]],["thing",[27,26,[[39,2,2,0,2,[[948,1,1,0,1],[952,1,1,1,2]]],[40,2,2,2,4,[[967,1,1,2,3],[969,1,1,3,4]]],[41,1,1,4,5,[[994,1,1,4,5]]],[42,3,3,5,8,[[1001,1,1,5,6],[1003,1,1,6,7],[1010,1,1,7,8]]],[43,5,5,8,13,[[1034,1,1,8,9],[1036,1,1,9,10],[1040,1,1,10,11],[1042,2,2,11,13]]],[44,1,1,13,14,[[1059,1,1,13,14]]],[45,6,5,14,19,[[1063,1,1,14,15],[1064,1,1,15,16],[1069,1,1,16,17],[1071,2,1,17,18],[1075,1,1,18,19]]],[46,2,2,19,21,[[1079,1,1,19,20],[1080,1,1,20,21]]],[47,2,2,21,23,[[1095,1,1,21,22],[1096,1,1,22,23]]],[51,1,1,23,24,[[1111,1,1,23,24]]],[58,1,1,24,25,[[1146,1,1,24,25]]],[61,1,1,25,26,[[1163,1,1,25,26]]]],[23812,23974,24653,24732,25899,26224,26332,26682,27548,27624,27751,27804,27807,28294,28396,28417,28529,28586,28713,28834,28846,29168,29203,29568,30273,30638]]],["things",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30538]]],["what",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26229]]],["whatsoever",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28598]]]]},{"k":"G5101","v":[["*",[536,483,[[39,83,74,0,74,[[931,1,1,0,1],[933,3,3,1,4],[934,9,5,4,9],[935,2,2,9,11],[936,2,2,11,13],[937,2,2,13,15],[938,3,2,15,17],[939,4,4,17,21],[940,6,5,21,26],[942,1,1,26,27],[943,1,1,27,28],[944,5,4,28,32],[945,3,2,32,34],[946,2,2,34,36],[947,6,6,36,42],[948,4,4,42,46],[949,6,6,46,52],[950,6,5,52,57],[951,2,2,57,59],[952,2,2,59,61],[954,8,8,61,69],[955,5,5,69,74]]],[40,71,66,74,140,[[957,4,2,74,76],[958,7,6,76,82],[959,1,1,82,83],[960,4,4,83,87],[961,7,7,87,94],[962,3,3,94,97],[964,8,8,97,105],[965,6,6,105,111],[966,7,7,111,118],[967,3,3,118,121],[968,4,4,121,125],[969,2,2,125,127],[970,9,8,127,135],[971,5,4,135,139],[972,1,1,139,140]]],[41,112,103,140,243,[[973,3,3,140,143],[974,2,2,143,145],[975,4,4,145,149],[976,3,2,149,151],[977,4,3,151,154],[978,6,6,154,160],[979,8,7,160,167],[980,6,5,167,172],[981,5,5,172,177],[982,6,5,177,182],[983,3,3,182,185],[984,15,12,185,197],[985,3,2,197,199],[986,4,4,199,203],[987,3,3,203,206],[988,5,5,206,211],[989,2,2,211,213],[990,6,6,213,219],[991,4,4,219,223],[992,7,7,223,230],[993,1,1,230,231],[994,6,6,231,237],[995,3,3,237,240],[996,3,3,240,243]]],[42,74,65,243,308,[[997,6,5,243,248],[998,3,3,248,251],[1000,3,2,251,253],[1001,2,2,253,255],[1002,9,7,255,262],[1003,4,4,262,266],[1004,4,4,266,270],[1005,6,6,270,276],[1006,2,2,276,278],[1007,2,2,278,280],[1008,6,4,280,284],[1009,5,5,284,289],[1010,1,1,289,290],[1011,1,1,290,291],[1012,3,2,291,293],[1014,8,7,293,300],[1015,1,1,300,301],[1016,3,2,301,303],[1017,5,5,303,308]]],[43,56,52,308,360,[[1018,1,1,308,309],[1019,2,2,309,311],[1020,2,1,311,312],[1021,2,2,312,314],[1022,4,4,314,318],[1024,5,5,318,323],[1025,4,3,323,326],[1026,4,3,326,329],[1027,5,5,329,334],[1028,1,1,334,335],[1029,1,1,335,336],[1030,1,1,336,337],[1031,1,1,337,338],[1032,1,1,338,339],[1033,1,1,339,340],[1034,3,3,340,343],[1036,4,4,343,347],[1038,4,3,347,350],[1039,6,6,350,356],[1040,1,1,356,357],[1043,3,3,357,360]]],[44,42,36,360,396,[[1048,6,5,360,365],[1049,2,2,365,367],[1051,3,3,367,370],[1052,2,2,370,372],[1053,8,7,372,379],[1054,6,4,379,383],[1055,4,4,383,387],[1056,7,6,387,393],[1057,1,1,393,394],[1059,3,2,394,396]]],[45,28,21,396,417,[[1063,2,2,396,398],[1064,2,1,398,399],[1065,4,2,399,401],[1066,1,1,401,402],[1068,2,1,402,403],[1070,4,2,403,405],[1071,2,2,405,407],[1072,1,1,407,408],[1075,5,5,408,413],[1076,5,4,413,417]]],[46,9,7,417,424,[[1079,2,2,417,419],[1083,4,3,419,422],[1088,2,1,422,423],[1089,1,1,423,424]]],[47,7,7,424,431,[[1092,1,1,424,425],[1093,2,2,425,427],[1094,2,2,427,429],[1095,2,2,429,431]]],[48,9,8,431,439,[[1097,3,2,431,433],[1099,2,2,433,435],[1100,1,1,435,436],[1101,2,2,436,438],[1102,1,1,438,439]]],[49,2,2,439,441,[[1103,2,2,439,441]]],[50,2,2,441,443,[[1107,1,1,441,442],[1108,1,1,442,443]]],[51,3,3,443,446,[[1112,1,1,443,444],[1113,1,1,444,445],[1114,1,1,445,446]]],[53,1,1,446,447,[[1119,1,1,446,447]]],[54,1,1,447,448,[[1127,1,1,447,448]]],[57,10,10,448,458,[[1133,2,2,448,450],[1134,1,1,450,451],[1135,2,2,451,453],[1137,1,1,453,454],[1139,1,1,454,455],[1143,1,1,455,456],[1144,1,1,456,457],[1145,1,1,457,458]]],[58,4,4,458,462,[[1147,2,2,458,460],[1148,1,1,460,461],[1149,1,1,461,462]]],[59,4,4,462,466,[[1151,1,1,462,463],[1153,1,1,463,464],[1154,1,1,464,465],[1155,1,1,465,466]]],[61,4,4,466,470,[[1160,1,1,466,467],[1161,2,2,467,469],[1163,1,1,469,470]]],[65,14,13,470,483,[[1168,4,4,470,474],[1169,3,3,474,477],[1171,1,1,477,478],[1172,1,1,478,479],[1173,1,1,479,480],[1179,2,1,480,481],[1181,1,1,481,482],[1184,1,1,482,483]]]],[23199,23247,23280,23281,23285,23307,23309,23310,23313,23319,23325,23371,23374,23384,23392,23428,23436,23466,23467,23468,23475,23492,23496,23500,23516,23537,23628,23665,23680,23685,23687,23698,23710,23725,23728,23739,23769,23778,23779,23782,23787,23789,23798,23813,23814,23824,23836,23842,23849,23854,23857,23866,23889,23890,23892,23900,23914,23935,23937,23960,24002,24062,24064,24069,24116,24119,24120,24122,24124,24133,24146,24150,24151,24152,24239,24242,24267,24268,24269,24276,24284,24285,24321,24347,24353,24363,24364,24371,24373,24378,24394,24395,24399,24403,24409,24431,24443,24501,24502,24512,24517,24527,24529,24536,24537,24544,24548,24554,24571,24572,24588,24591,24605,24606,24614,24624,24626,24639,24643,24645,24668,24682,24688,24689,24696,24721,24728,24758,24760,24790,24794,24814,24817,24818,24822,24838,24840,24850,24860,24876,24911,24955,24959,25021,25022,25032,25035,25037,25039,25097,25099,25128,25129,25130,25148,25155,25157,25187,25192,25193,25219,25220,25221,25226,25234,25237,25244,25254,25270,25273,25275,25290,25310,25319,25321,25326,25347,25385,25388,25389,25392,25399,25410,25416,25424,25464,25470,25473,25476,25479,25481,25484,25485,25488,25501,25508,25516,25536,25538,25558,25581,25584,25587,25592,25596,25614,25622,25623,25624,25631,25632,25658,25659,25694,25706,25707,25714,25724,25729,25734,25746,25764,25779,25781,25792,25794,25796,25802,25803,25812,25833,25887,25888,25891,25910,25928,25935,25957,25966,25969,25996,26008,26029,26063,26065,26066,26069,26082,26099,26113,26120,26166,26183,26222,26223,26263,26266,26285,26287,26317,26321,26325,26347,26348,26364,26379,26386,26406,26427,26434,26442,26457,26461,26466,26467,26476,26487,26501,26570,26579,26607,26614,26618,26629,26642,26652,26654,26655,26658,26690,26714,26743,26744,26789,26792,26806,26808,26814,26820,26823,26849,26880,26882,26910,26918,26919,26920,26921,26934,26961,26986,27008,27031,27038,27063,27068,27083,27094,27143,27151,27156,27165,27168,27209,27210,27212,27220,27221,27222,27263,27265,27276,27280,27288,27324,27355,27387,27429,27452,27513,27541,27542,27543,27588,27600,27617,27620,27677,27686,27697,27711,27712,27714,27720,27730,27734,27753,27831,27837,27838,27992,27994,27996,27998,28000,28023,28025,28069,28083,28089,28098,28115,28140,28142,28143,28147,28149,28150,28151,28169,28174,28175,28185,28194,28195,28196,28204,28211,28213,28216,28224,28243,28244,28247,28284,28290,28405,28410,28415,28440,28454,28466,28503,28547,28558,28586,28597,28622,28684,28686,28693,28694,28704,28720,28747,28748,28750,28826,28840,28912,28913,28914,29018,29035,29095,29103,29121,29146,29161,29169,29173,29224,29225,29260,29269,29281,29314,29321,29358,29379,29383,29492,29514,29589,29599,29605,29703,29867,29968,29976,29983,30012,30013,30042,30075,30204,30219,30247,30307,30309,30332,30349,30385,30437,30463,30473,30572,30581,30591,30629,30724,30728,30734,30746,30752,30759,30768,30781,30810,30823,30912,30950,31011]]],["+",[27,26,[[39,5,5,0,5,[[933,1,1,0,1],[936,1,1,1,2],[942,1,1,2,3],[943,1,1,3,4],[946,1,1,4,5]]],[40,9,8,5,13,[[957,1,1,5,6],[960,1,1,6,7],[961,1,1,7,8],[962,1,1,8,9],[964,2,2,9,11],[965,1,1,11,12],[971,2,1,12,13]]],[41,6,6,13,19,[[973,1,1,13,14],[976,1,1,14,15],[980,2,2,15,17],[986,1,1,17,18],[994,1,1,18,19]]],[42,1,1,19,20,[[998,1,1,19,20]]],[43,2,2,20,22,[[1025,1,1,20,21],[1036,1,1,21,22]]],[45,1,1,22,23,[[1066,1,1,22,23]]],[46,1,1,23,24,[[1079,1,1,23,24]]],[53,1,1,24,25,[[1119,1,1,24,25]]],[61,1,1,25,26,[[1161,1,1,25,26]]]],[23247,23374,23628,23665,23728,24239,24364,24371,24443,24501,24502,24588,24850,24911,25097,25270,25273,25587,25887,26099,27210,27617,28466,28826,29703,30591]]],["How",[5,5,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[988,1,1,2,3]]],[43,1,1,3,4,[[1022,1,1,3,4]]],[45,1,1,4,5,[[1075,1,1,4,5]]]],[23739,25022,25622,27068,28704]]],["What",[85,84,[[39,13,12,0,12,[[934,2,1,0,1],[939,1,1,1,2],[940,1,1,2,3],[945,1,1,3,4],[948,2,2,4,6],[950,2,2,6,8],[954,2,2,8,10],[955,2,2,10,12]]],[40,11,11,12,23,[[961,1,1,12,13],[962,1,1,13,14],[965,2,2,14,16],[966,3,3,16,19],[967,1,1,19,20],[968,1,1,20,21],[970,1,1,21,22],[971,1,1,22,23]]],[41,15,15,23,38,[[975,1,1,23,24],[976,1,1,24,25],[977,1,1,25,26],[979,1,1,26,27],[980,2,2,27,29],[982,1,1,29,30],[984,1,1,30,31],[987,1,1,31,32],[988,1,1,32,33],[990,1,1,33,34],[992,3,3,34,37],[994,1,1,37,38]]],[42,17,17,38,55,[[997,3,3,38,41],[998,1,1,41,42],[1000,1,1,42,43],[1001,1,1,43,44],[1002,2,2,44,46],[1003,1,1,46,47],[1005,2,2,47,49],[1007,2,2,49,51],[1012,2,2,51,53],[1014,2,2,53,55]]],[43,8,8,55,63,[[1019,1,1,55,56],[1021,1,1,56,57],[1027,1,1,57,58],[1034,1,1,58,59],[1038,2,2,59,61],[1039,1,1,61,62],[1040,1,1,62,63]]],[44,11,11,63,74,[[1048,2,2,63,65],[1049,1,1,65,66],[1051,3,3,66,69],[1052,1,1,69,70],[1053,1,1,70,71],[1054,2,2,71,73],[1056,1,1,73,74]]],[45,5,5,74,79,[[1065,1,1,74,75],[1070,1,1,75,76],[1071,1,1,76,77],[1072,1,1,77,78],[1075,1,1,78,79]]],[49,1,1,79,80,[[1103,1,1,79,80]]],[57,1,1,80,81,[[1134,1,1,80,81]]],[58,1,1,81,82,[[1147,1,1,81,82]]],[65,2,2,82,84,[[1173,1,1,82,83],[1184,1,1,83,84]]]],[23313,23466,23500,23725,23813,23824,23889,23914,24069,24120,24133,24151,24373,24431,24554,24571,24591,24624,24639,24645,24682,24817,24838,25035,25099,25129,25219,25254,25275,25389,25476,25592,25623,25729,25792,25794,25796,25935,26065,26066,26082,26113,26183,26222,26285,26287,26364,26457,26466,26570,26579,26743,26744,26814,26823,26961,27038,27263,27541,27677,27686,27714,27753,27992,28000,28023,28069,28083,28089,28098,28147,28169,28185,28216,28454,28558,28586,28622,28693,29379,29983,30307,30823,31011]]],["Where",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29146]]],["Wherefore",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29121]]],["Whereunto",[3,3,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,2,2,1,3,[[979,1,1,1,2],[985,1,1,2,3]]]],[24353,25226,25538]]],["Wherewithal",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23313]]],["Whether",[4,4,[[39,2,2,0,2,[[949,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[958,1,1,2,3]]],[41,1,1,3,4,[[977,1,1,3,4]]]],[23857,24150,24269,25130]]],["Which",[6,6,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,3,3,1,4,[[982,1,1,1,2],[983,1,1,2,3],[986,1,1,3,4]]],[42,1,1,4,5,[[1004,1,1,4,5]]],[43,1,1,5,6,[[1024,1,1,5,6]]]],[23309,25399,25410,25558,26427,27168]]],["Who",[42,40,[[39,5,5,0,5,[[940,1,1,0,1],[947,1,1,1,2],[949,1,1,2,3],[952,1,1,3,4],[954,1,1,4,5]]],[40,5,5,5,10,[[959,1,1,5,6],[961,2,2,6,8],[966,1,1,8,9],[972,1,1,9,10]]],[41,7,5,10,15,[[977,2,1,10,11],[979,1,1,11,12],[980,2,1,12,13],[984,1,1,13,14],[990,1,1,14,15]]],[42,5,5,15,20,[[997,2,2,15,17],[1004,1,1,17,18],[1005,1,1,18,19],[1017,1,1,19,20]]],[43,5,5,20,25,[[1024,2,2,20,22],[1026,1,1,22,23],[1039,1,1,23,24],[1043,1,1,24,25]]],[44,6,6,25,31,[[1053,3,3,25,28],[1055,2,2,28,30],[1059,1,1,30,31]]],[45,2,2,31,33,[[1064,1,1,31,32],[1070,1,1,32,33]]],[46,1,1,33,34,[[1088,1,1,33,34]]],[58,1,1,34,35,[[1148,1,1,34,35]]],[61,2,2,35,37,[[1160,1,1,35,36],[1163,1,1,36,37]]],[65,3,3,37,40,[[1171,1,1,37,38],[1179,1,1,38,39],[1181,1,1,39,40]]]],[23537,23787,23836,24002,24122,24321,24394,24395,24614,24876,25128,25244,25290,25501,25714,26063,26066,26406,26476,26910,27143,27151,27221,27712,27838,28149,28150,28151,28194,28195,28284,28415,28547,29018,30332,30572,30629,30781,30912,30950]]],["Whom",[7,7,[[39,2,2,0,2,[[944,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[964,1,1,2,3]]],[41,1,1,3,4,[[981,1,1,3,4]]],[42,2,2,4,6,[[1014,2,2,4,6]]],[43,1,1,6,7,[[1030,1,1,6,7]]]],[23685,24146,24527,25319,26789,26792,27387]]],["Whose",[3,3,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]]],[23892,24689,25803]]],["Why",[31,31,[[39,7,7,0,7,[[936,1,1,0,1],[945,1,1,1,2],[947,2,2,2,4],[948,1,1,4,5],[950,1,1,5,6],[954,1,1,6,7]]],[40,10,10,7,17,[[958,2,2,7,9],[960,1,1,9,10],[961,1,1,10,11],[964,2,2,11,13],[966,1,1,13,14],[967,1,1,14,15],[968,1,1,15,16],[970,1,1,16,17]]],[41,7,7,17,24,[[978,1,1,17,18],[990,1,1,18,19],[991,1,1,19,20],[992,1,1,20,21],[994,1,1,21,22],[996,2,2,22,24]]],[42,4,4,24,28,[[997,1,1,24,25],[1000,1,1,25,26],[1003,1,1,26,27],[1014,1,1,27,28]]],[43,1,1,28,29,[[1043,1,1,28,29]]],[44,2,2,29,31,[[1054,2,2,29,31]]]],[23371,23710,23769,23779,23798,23890,24064,24267,24268,24363,24403,24512,24517,24606,24643,24688,24758,25148,25707,25764,25802,25910,25996,26029,26069,26183,26347,26806,27831,28174,28175]]],["any",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25416]]],["how",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[42,1,1,1,2,[[1010,1,1,1,2]]],[45,1,1,2,3,[[1068,1,1,2,3]]],[48,1,1,3,4,[[1102,1,1,3,4]]]],[24955,26690,28503,29358]]],["intent",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26658]]],["it",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24276]]],["manner",[2,2,[[41,2,2,0,2,[[973,1,1,0,1],[996,1,1,1,2]]]],[24959,26008]]],["means",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27031]]],["much",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25746]]],["purpose",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24062]]],["thing",[3,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,2,2,1,3,[[978,1,1,1,2],[984,1,1,2,3]]]],[24242,25155,25470]]],["things",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26487]]],["what",[165,154,[[39,28,24,0,24,[[933,2,2,0,2],[934,4,2,2,4],[935,1,1,4,5],[937,1,1,5,6],[938,2,1,6,7],[939,2,2,7,9],[940,2,2,9,11],[944,2,1,11,12],[947,3,3,12,15],[948,1,1,15,16],[949,3,3,16,19],[952,1,1,19,20],[954,3,3,20,23],[955,1,1,23,24]]],[40,20,19,24,43,[[957,1,1,24,25],[958,1,1,25,26],[960,1,1,26,27],[961,1,1,27,28],[962,1,1,28,29],[964,2,2,29,31],[965,2,2,31,33],[966,2,2,33,35],[969,2,2,35,37],[970,6,5,37,42],[971,1,1,42,43]]],[41,27,25,43,68,[[975,2,2,43,45],[978,1,1,45,46],[979,3,3,46,49],[981,1,1,49,50],[982,1,1,50,51],[984,6,4,51,55],[985,1,1,55,56],[986,1,1,56,57],[987,2,2,57,59],[988,1,1,59,60],[990,3,3,60,63],[991,1,1,63,64],[993,1,1,64,65],[995,3,3,65,68]]],[42,17,16,68,84,[[998,1,1,68,69],[1002,3,3,69,72],[1003,1,1,72,73],[1004,1,1,73,74],[1008,3,2,74,76],[1009,1,1,76,77],[1011,1,1,77,78],[1012,1,1,78,79],[1014,2,2,79,81],[1017,3,3,81,84]]],[43,20,19,84,103,[[1019,1,1,84,85],[1022,1,1,85,86],[1024,2,2,86,88],[1025,1,1,88,89],[1026,2,1,89,90],[1027,4,4,90,94],[1028,1,1,94,95],[1029,1,1,95,96],[1033,1,1,96,97],[1034,2,2,97,99],[1036,2,2,99,101],[1038,1,1,101,102],[1039,1,1,102,103]]],[44,11,11,103,114,[[1048,3,3,103,106],[1049,1,1,106,107],[1053,2,2,107,109],[1055,1,1,109,110],[1056,3,3,110,113],[1057,1,1,113,114]]],[45,8,8,114,122,[[1063,1,1,114,115],[1065,1,1,115,116],[1068,1,1,116,117],[1075,2,2,117,119],[1076,3,3,119,122]]],[46,5,4,122,126,[[1083,4,3,122,125],[1089,1,1,125,126]]],[47,1,1,126,127,[[1094,1,1,126,127]]],[48,8,7,127,134,[[1097,3,2,127,129],[1099,2,2,129,131],[1100,1,1,131,132],[1101,2,2,132,134]]],[49,1,1,134,135,[[1103,1,1,134,135]]],[50,1,1,135,136,[[1107,1,1,135,136]]],[51,3,3,136,139,[[1112,1,1,136,137],[1113,1,1,137,138],[1114,1,1,138,139]]],[57,4,4,139,143,[[1139,1,1,139,140],[1143,1,1,140,141],[1144,1,1,141,142],[1145,1,1,142,143]]],[58,1,1,143,144,[[1147,1,1,143,144]]],[59,2,2,144,146,[[1151,1,1,144,145],[1154,1,1,145,146]]],[61,1,1,146,147,[[1161,1,1,146,147]]],[65,7,7,147,154,[[1168,4,4,147,151],[1169,3,3,151,154]]]],[23280,23281,23285,23307,23325,23392,23436,23467,23468,23492,23496,23698,23778,23782,23789,23814,23842,23854,23866,23960,24116,24119,24124,24152,24242,24285,24347,24378,24409,24536,24537,24544,24548,24605,24626,24721,24728,24790,24794,24814,24818,24822,24840,25037,25039,25157,25220,25221,25226,25326,25388,25470,25481,25488,25508,25536,25584,25596,25614,25624,25694,25706,25724,25779,25833,25957,25966,25969,26120,26263,26266,26287,26379,26386,26607,26629,26642,26714,26744,26806,26820,26919,26920,26921,26986,27094,27156,27165,27212,27222,27265,27276,27280,27288,27324,27355,27513,27542,27543,27588,27620,27697,27730,27992,27994,27996,28025,28142,28143,28196,28211,28213,28224,28247,28405,28440,28503,28684,28694,28720,28747,28750,28912,28913,28914,29035,29161,29224,29225,29260,29269,29281,29314,29321,29383,29492,29589,29599,29605,30075,30204,30219,30247,30309,30385,30463,30581,30724,30728,30734,30746,30752,30759,30768]]],["wherefore",[2,2,[[42,1,1,0,1,[[1005,1,1,0,1]]],[43,1,1,1,2,[[1039,1,1,1,2]]]],[26467,27734]]],["whereunto",[3,3,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]]],[23475,25536,27083]]],["wherewith",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25659]]],["whether",[4,4,[[39,3,3,0,3,[[937,1,1,0,1],[951,2,2,1,3]]],[41,1,1,3,4,[[994,1,1,3,4]]]],[23384,23935,23937,25891]]],["which",[10,10,[[41,6,6,0,6,[[979,1,1,0,1],[981,1,1,1,2],[984,1,1,2,3],[986,1,1,3,4],[989,1,1,4,5],[994,1,1,5,6]]],[42,1,1,6,7,[[1017,1,1,6,7]]],[57,3,3,7,10,[[1133,2,2,7,9],[1137,1,1,9,10]]]],[25237,25347,25484,25581,25658,25888,26918,29968,29976,30042]]],["who",[58,54,[[39,4,4,0,4,[[931,1,1,0,1],[938,1,1,1,2],[940,1,1,2,3],[949,1,1,3,4]]],[40,4,4,4,8,[[957,1,1,4,5],[958,1,1,5,6],[965,1,1,6,7],[967,1,1,7,8]]],[41,13,12,8,20,[[975,1,1,8,9],[976,1,1,9,10],[979,1,1,10,11],[981,1,1,11,12],[982,3,2,12,14],[984,1,1,14,15],[988,2,2,15,17],[991,1,1,17,18],[992,1,1,18,19],[994,1,1,19,20]]],[42,12,11,20,31,[[1000,1,1,20,21],[1001,1,1,21,22],[1002,3,2,22,24],[1003,1,1,24,25],[1005,2,2,25,27],[1008,2,2,27,29],[1009,2,2,29,31]]],[43,3,3,31,34,[[1025,1,1,31,32],[1036,1,1,32,33],[1038,1,1,33,34]]],[44,8,7,34,41,[[1052,1,1,34,35],[1053,1,1,35,36],[1054,2,2,36,38],[1055,1,1,38,39],[1056,3,2,39,41]]],[45,6,5,41,46,[[1063,1,1,41,42],[1064,1,1,42,43],[1065,1,1,43,44],[1070,2,1,44,45],[1075,1,1,45,46]]],[46,2,2,46,48,[[1079,1,1,46,47],[1088,1,1,47,48]]],[47,2,2,48,50,[[1093,1,1,48,49],[1095,1,1,49,50]]],[58,1,1,50,51,[[1149,1,1,50,51]]],[59,1,1,51,52,[[1153,1,1,51,52]]],[65,2,2,52,54,[[1172,1,1,52,53],[1179,1,1,53,54]]]],[23199,23428,23537,23849,24239,24267,24572,24668,25032,25097,25234,25310,25385,25392,25473,25631,25632,25734,25781,25928,26166,26223,26317,26321,26348,26442,26461,26614,26618,26654,26655,27209,27600,27697,28115,28147,28174,28175,28204,28243,28244,28410,28415,28440,28547,28686,28840,29018,29103,29169,30349,30437,30810,30912]]],["whom",[18,18,[[39,3,3,0,3,[[940,1,1,0,1],[944,1,1,1,2],[945,1,1,2,3]]],[40,1,1,3,4,[[964,1,1,3,4]]],[41,4,4,4,8,[[978,1,1,4,5],[981,1,1,5,6],[983,1,1,6,7],[984,1,1,7,8]]],[42,5,5,8,13,[[1002,1,1,8,9],[1004,1,1,9,10],[1008,1,1,10,11],[1009,1,1,11,12],[1016,1,1,12,13]]],[43,1,1,13,14,[[1025,1,1,13,14]]],[54,1,1,14,15,[[1127,1,1,14,15]]],[57,2,2,15,17,[[1135,2,2,15,17]]],[59,1,1,17,18,[[1155,1,1,17,18]]]],[23516,23687,23725,24529,25193,25321,25424,25464,26325,26434,26618,26652,26882,27210,29867,30012,30013,30473]]],["whose",[6,6,[[39,2,2,0,2,[[950,2,2,0,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,2,2,3,5,[[984,1,1,3,4],[992,1,1,4,5]]],[42,1,1,5,6,[[1015,1,1,5,6]]]],[23900,23914,24696,25479,25812,26849]]],["why",[37,35,[[39,3,3,0,3,[[934,1,1,0,1],[935,1,1,1,2],[944,1,1,2,3]]],[40,4,4,3,7,[[958,1,1,3,4],[961,1,1,4,5],[970,1,1,5,6],[971,1,1,6,7]]],[41,5,5,7,12,[[974,1,1,7,8],[978,2,2,8,10],[984,2,2,10,12]]],[42,4,4,12,16,[[1006,1,1,12,13],[1014,1,1,13,14],[1016,2,2,14,16]]],[43,10,9,16,25,[[1018,1,1,16,17],[1020,2,1,17,18],[1022,1,1,18,19],[1026,1,1,19,20],[1031,1,1,20,21],[1032,1,1,21,22],[1039,2,2,22,24],[1043,1,1,24,25]]],[44,4,3,25,28,[[1048,1,1,25,26],[1053,1,1,26,27],[1059,2,1,27,28]]],[45,4,4,28,32,[[1065,1,1,28,29],[1071,1,1,29,30],[1076,2,2,30,32]]],[47,2,2,32,34,[[1092,1,1,32,33],[1095,1,1,33,34]]],[50,1,1,34,35,[[1108,1,1,34,35]]]],[23310,23319,23680,24284,24399,24760,24860,25021,25187,25192,25485,25516,26501,26808,26880,26882,26934,27008,27063,27220,27429,27452,27711,27720,27837,27998,28140,28290,28440,28597,28747,28748,29095,29173,29514]]]]},{"k":"G5102","v":[["title",[2,2,[[42,2,2,0,2,[[1015,2,2,0,2]]]],[26844,26845]]]]},{"k":"G5103","v":[["*",[13,12,[[46,9,8,0,8,[[1079,1,1,0,1],[1084,3,3,1,4],[1085,3,3,4,7],[1089,2,1,7,8]]],[47,2,2,8,10,[[1092,2,2,8,10]]],[54,1,1,10,11,[[1128,1,1,10,11]]],[55,1,1,11,12,[[1129,1,1,11,12]]]],[28837,28922,28929,28930,28938,28948,28955,29040,29082,29084,29880,29896]]],["+",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29082]]],["Titus",[12,11,[[46,9,8,0,8,[[1079,1,1,0,1],[1084,3,3,1,4],[1085,3,3,4,7],[1089,2,1,7,8]]],[47,1,1,8,9,[[1092,1,1,8,9]]],[54,1,1,9,10,[[1128,1,1,9,10]]],[55,1,1,10,11,[[1129,1,1,10,11]]]],[28837,28922,28929,28930,28938,28948,28955,29040,29084,29880,29896]]]]},{"k":"G5104","v":[]},{"k":"G5105","v":[["*",[2,2,[[51,1,1,0,1,[[1114,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[29611,30213]]],["+",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29611]]],["Wherefore",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30213]]]]},{"k":"G5106","v":[["*",[4,4,[[41,1,1,0,1,[[992,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[25804,28566,30254,30317]]],["then",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30317]]],["therefore",[3,3,[[41,1,1,0,1,[[992,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]]],[25804,28566,30254]]]]},{"k":"G5107","v":[["such",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30496]]]]},{"k":"G5108","v":[["*",[61,59,[[39,3,3,0,3,[[937,1,1,0,1],[946,1,1,1,2],[947,1,1,2,3]]],[40,7,7,3,10,[[960,1,1,3,4],[962,1,1,4,5],[963,2,2,5,7],[965,1,1,7,8],[966,1,1,8,9],[969,1,1,9,10]]],[41,3,3,10,13,[[981,1,1,10,11],[985,1,1,11,12],[990,1,1,12,13]]],[42,3,3,13,16,[[1000,1,1,13,14],[1004,1,1,14,15],[1005,1,1,15,16]]],[43,5,5,16,21,[[1033,1,1,16,17],[1036,1,1,17,18],[1038,1,1,18,19],[1039,1,1,19,20],[1043,1,1,20,21]]],[44,4,4,21,25,[[1046,1,1,21,22],[1047,2,2,22,24],[1061,1,1,24,25]]],[45,10,9,25,34,[[1066,3,3,25,28],[1068,2,2,28,30],[1072,1,1,30,31],[1076,2,1,31,32],[1077,2,2,32,34]]],[46,10,9,34,43,[[1079,2,2,34,36],[1080,2,2,36,38],[1087,2,1,38,39],[1088,1,1,39,40],[1089,3,3,40,43]]],[47,3,3,43,46,[[1095,2,2,43,45],[1096,1,1,45,46]]],[48,1,1,46,47,[[1101,1,1,46,47]]],[49,1,1,47,48,[[1104,1,1,47,48]]],[52,1,1,48,49,[[1118,1,1,48,49]]],[53,1,1,49,50,[[1124,1,1,49,50]]],[55,1,1,50,51,[[1131,1,1,50,51]]],[56,1,1,51,52,[[1132,1,1,51,52]]],[57,5,5,52,57,[[1139,1,1,52,53],[1140,1,1,53,54],[1143,1,1,54,55],[1144,1,1,55,56],[1145,1,1,56,57]]],[58,1,1,57,58,[[1149,1,1,57,58]]],[63,1,1,58,59,[[1165,1,1,58,59]]]],[23387,23732,23776,24356,24409,24471,24476,24575,24602,24736,25310,25520,25704,26179,26386,26456,27507,27610,27689,27726,27852,27962,27964,27965,28354,28455,28459,28465,28502,28515,28616,28766,28792,28794,28830,28831,28845,28853,28982,29002,29024,29025,29027,29183,29185,29189,29331,29420,29690,29793,29934,29947,30090,30093,30186,30215,30257,30353,30666]]],["+",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24736]]],["man",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28830]]],["occupation",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27610]]],["one",[8,8,[[45,2,2,0,2,[[1066,2,2,0,2]]],[46,4,4,2,6,[[1079,1,1,2,3],[1087,1,1,3,4],[1089,2,2,4,6]]],[47,1,1,6,7,[[1096,1,1,6,7]]],[56,1,1,7,8,[[1132,1,1,7,8]]]],[28459,28465,28831,28982,29024,29027,29189,29947]]],["such",[41,40,[[39,3,3,0,3,[[937,1,1,0,1],[946,1,1,1,2],[947,1,1,2,3]]],[40,6,6,3,9,[[960,1,1,3,4],[962,1,1,4,5],[963,2,2,5,7],[965,1,1,7,8],[966,1,1,8,9]]],[41,1,1,9,10,[[990,1,1,9,10]]],[42,3,3,10,13,[[1000,1,1,10,11],[1004,1,1,11,12],[1005,1,1,12,13]]],[43,3,3,13,16,[[1033,1,1,13,14],[1039,1,1,14,15],[1043,1,1,15,16]]],[44,1,1,16,17,[[1061,1,1,16,17]]],[45,8,7,17,24,[[1066,1,1,17,18],[1068,2,2,18,20],[1072,1,1,20,21],[1076,2,1,21,22],[1077,2,2,22,24]]],[46,5,5,24,29,[[1080,2,2,24,26],[1087,1,1,26,27],[1088,1,1,27,28],[1089,1,1,28,29]]],[47,1,1,29,30,[[1095,1,1,29,30]]],[49,1,1,30,31,[[1104,1,1,30,31]]],[52,1,1,31,32,[[1118,1,1,31,32]]],[53,1,1,32,33,[[1124,1,1,32,33]]],[55,1,1,33,34,[[1131,1,1,33,34]]],[57,4,4,34,38,[[1139,1,1,34,35],[1140,1,1,35,36],[1144,1,1,36,37],[1145,1,1,37,38]]],[58,1,1,38,39,[[1149,1,1,38,39]]],[63,1,1,39,40,[[1165,1,1,39,40]]]],[23387,23732,23776,24356,24409,24471,24476,24575,24602,25704,26179,26386,26456,27507,27726,27852,28354,28455,28502,28515,28616,28766,28792,28794,28845,28853,28982,29002,29025,29185,29420,29690,29793,29934,30090,30093,30215,30257,30353,30666]]],["thing",[2,2,[[43,1,1,0,1,[[1038,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]]],[27689,29331]]],["things",[7,7,[[41,2,2,0,2,[[981,1,1,0,1],[985,1,1,1,2]]],[44,3,3,2,5,[[1046,1,1,2,3],[1047,2,2,3,5]]],[47,1,1,5,6,[[1095,1,1,5,6]]],[57,1,1,6,7,[[1143,1,1,6,7]]]],[25310,25520,27962,27964,27965,29183,30186]]]]},{"k":"G5109","v":[["wall",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27737]]]]},{"k":"G5110","v":[["usury",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,1,1,1,2,[[991,1,1,1,2]]]],[24035,25754]]]]},{"k":"G5111","v":[["*",[16,15,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,2,2,1,3,[[968,1,1,1,2],[971,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]],[42,1,1,4,5,[[1017,1,1,4,5]]],[43,2,2,5,7,[[1022,1,1,5,6],[1024,1,1,6,7]]],[44,2,2,7,9,[[1050,1,1,7,8],[1060,1,1,8,9]]],[45,1,1,9,10,[[1067,1,1,9,10]]],[46,4,3,10,13,[[1087,2,2,10,12],[1088,2,1,12,13]]],[49,1,1,13,14,[[1103,1,1,13,14]]],[64,1,1,14,15,[[1166,1,1,14,15]]]],[23918,24707,24869,25819,26910,27072,27148,28054,28321,28468,28973,28983,29010,29375,30681]]],["+",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[29010,29375]]],["Dare",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28468]]],["I",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29010]]],["bold",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28973]]],["boldly",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24869]]],["dare",[3,3,[[44,2,2,0,2,[[1050,1,1,0,1],[1060,1,1,1,2]]],[46,1,1,2,3,[[1087,1,1,2,3]]]],[28054,28321,28983]]],["durst",[7,7,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[42,1,1,3,4,[[1017,1,1,3,4]]],[43,2,2,4,6,[[1022,1,1,4,5],[1024,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[23918,24707,25819,26910,27072,27148,30681]]]]},{"k":"G5112","v":[["boldly",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28318]]]]},{"k":"G5113","v":[["Presumptuous",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30510]]]]},{"k":"G5114","v":[["sharper",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30026]]]]},{"k":"G5115","v":[["bow",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30795]]]]},{"k":"G5116","v":[["topaz",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31073]]]]},{"k":"G5117","v":[["*",[92,88,[[39,10,9,0,9,[[940,1,1,0,1],[942,3,3,1,4],[952,2,2,4,6],[954,1,1,6,7],[955,2,1,7,8],[956,1,1,8,9]]],[40,9,8,9,17,[[957,2,2,9,11],[962,3,3,11,14],[969,1,1,14,15],[971,2,1,15,16],[972,1,1,16,17]]],[41,20,19,17,36,[[974,1,1,17,18],[976,3,3,18,21],[978,1,1,21,22],[981,2,2,22,24],[982,2,2,24,26],[983,2,2,26,28],[986,4,3,28,31],[988,1,1,31,32],[991,1,1,32,33],[993,1,1,33,34],[994,1,1,34,35],[995,1,1,35,36]]],[42,16,16,36,52,[[1000,1,1,36,37],[1001,1,1,37,38],[1002,2,2,38,40],[1006,1,1,40,41],[1007,3,3,41,44],[1010,2,2,44,46],[1014,1,1,46,47],[1015,4,4,47,51],[1016,1,1,51,52]]],[43,17,16,52,68,[[1018,1,1,52,53],[1021,1,1,53,54],[1023,2,2,54,56],[1024,3,3,56,59],[1029,1,1,59,60],[1033,1,1,60,61],[1038,2,1,61,62],[1042,1,1,62,63],[1044,4,4,63,67],[1045,1,1,67,68]]],[44,3,3,68,71,[[1054,1,1,68,69],[1057,1,1,69,70],[1060,1,1,70,71]]],[45,2,2,71,73,[[1062,1,1,71,72],[1075,1,1,72,73]]],[46,1,1,73,74,[[1079,1,1,73,74]]],[48,1,1,74,75,[[1100,1,1,74,75]]],[51,1,1,75,76,[[1111,1,1,75,76]]],[53,1,1,76,77,[[1120,1,1,76,77]]],[57,3,3,77,80,[[1140,1,1,77,78],[1143,1,1,78,79],[1144,1,1,79,80]]],[60,1,1,80,81,[[1156,1,1,80,81]]],[65,7,7,81,88,[[1168,1,1,81,82],[1172,1,1,82,83],[1178,3,3,83,86],[1182,1,1,86,87],[1186,1,1,87,88]]]],[23532,23610,23612,23632,23964,23972,24106,24162,24201,24250,24260,24438,24439,24442,24725,24848,24879,24980,25080,25100,25105,25163,25311,25313,25364,25395,25406,25429,25562,25563,25575,25648,25736,25837,25904,25968,26176,26223,26267,26280,26521,26529,26553,26571,26670,26671,26787,26838,26842,26845,26866,26874,26948,27053,27114,27115,27123,27149,27165,27354,27486,27692,27812,27857,27863,27884,27896,27906,28181,28264,28326,28365,28694,28838,29299,29568,29724,30099,30180,30229,30498,30722,30807,30897,30899,30905,30970,31049]]],["+",[6,6,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,2,2,1,3,[[978,1,1,1,2],[993,1,1,2,3]]],[43,3,3,3,6,[[1042,1,1,3,4],[1044,1,1,4,5],[1045,1,1,5,6]]]],[24725,25163,25837,27812,27884,27906]]],["coasts",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27857]]],["place",[73,70,[[39,8,7,0,7,[[942,3,3,0,3],[952,1,1,3,4],[954,1,1,4,5],[955,2,1,5,6],[956,1,1,6,7]]],[40,7,6,7,13,[[957,1,1,7,8],[962,3,3,8,11],[971,2,1,11,12],[972,1,1,12,13]]],[41,13,13,13,26,[[976,3,3,13,16],[981,2,2,16,18],[982,2,2,18,20],[983,1,1,20,21],[986,1,1,21,22],[988,1,1,22,23],[991,1,1,23,24],[994,1,1,24,25],[995,1,1,25,26]]],[42,16,16,26,42,[[1000,1,1,26,27],[1001,1,1,27,28],[1002,2,2,28,30],[1006,1,1,30,31],[1007,3,3,31,34],[1010,2,2,34,36],[1014,1,1,36,37],[1015,4,4,37,41],[1016,1,1,41,42]]],[43,12,11,42,53,[[1018,1,1,42,43],[1021,1,1,43,44],[1023,2,2,44,46],[1024,3,3,46,49],[1029,1,1,49,50],[1038,2,1,50,51],[1044,2,2,51,53]]],[44,3,3,53,56,[[1054,1,1,53,54],[1057,1,1,54,55],[1060,1,1,55,56]]],[45,1,1,56,57,[[1062,1,1,56,57]]],[46,1,1,57,58,[[1079,1,1,57,58]]],[48,1,1,58,59,[[1100,1,1,58,59]]],[51,1,1,59,60,[[1111,1,1,59,60]]],[57,3,3,60,63,[[1140,1,1,60,61],[1143,1,1,61,62],[1144,1,1,62,63]]],[60,1,1,63,64,[[1156,1,1,63,64]]],[65,6,6,64,70,[[1168,1,1,64,65],[1178,3,3,65,68],[1182,1,1,68,69],[1186,1,1,69,70]]]],[23610,23612,23632,23972,24106,24162,24201,24250,24438,24439,24442,24848,24879,25080,25100,25105,25311,25313,25364,25395,25406,25562,25648,25736,25904,25968,26176,26223,26267,26280,26521,26529,26553,26571,26670,26671,26787,26838,26842,26845,26866,26874,26948,27053,27114,27115,27123,27149,27165,27354,27692,27863,27896,28181,28264,28326,28365,28838,29299,29568,30099,30180,30229,30498,30722,30897,30899,30905,30970,31049]]],["places",[5,5,[[39,2,2,0,2,[[940,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,1,1,3,4,[[983,1,1,3,4]]],[65,1,1,4,5,[[1172,1,1,4,5]]]],[23532,23964,24260,25429,30807]]],["quarters",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27486]]],["room",[5,5,[[41,4,4,0,4,[[974,1,1,0,1],[986,3,3,1,4]]],[45,1,1,4,5,[[1075,1,1,4,5]]]],[24980,25562,25563,25575,28694]]],["where",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29724]]]]},{"k":"G5118","v":[["*",[21,19,[[39,3,2,0,2,[[936,1,1,0,1],[943,2,1,1,2]]],[41,2,2,2,4,[[979,1,1,2,3],[987,1,1,3,4]]],[42,4,4,4,8,[[1002,1,1,4,5],[1008,1,1,5,6],[1010,1,1,6,7],[1017,1,1,7,8]]],[43,2,1,8,9,[[1022,2,1,8,9]]],[45,1,1,9,10,[[1075,1,1,9,10]]],[47,1,1,10,11,[[1093,1,1,10,11]]],[57,5,5,11,16,[[1133,1,1,11,12],[1136,1,1,12,13],[1139,1,1,13,14],[1142,1,1,14,15],[1144,1,1,15,16]]],[65,3,3,16,19,[[1184,2,2,16,18],[1187,1,1,18,19]]]],[23355,23666,25204,25617,26266,26617,26677,26909,27067,28688,29106,29967,30021,30086,30158,30213,31000,31010,31069]]],["great",[5,5,[[39,2,2,0,2,[[936,1,1,0,1],[943,1,1,1,2]]],[41,1,1,2,3,[[979,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]],[65,1,1,4,5,[[1184,1,1,4,5]]]],[23355,23666,25204,30213,31010]]],["large",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31069]]],["long",[2,2,[[42,1,1,0,1,[[1010,1,1,0,1]]],[57,1,1,1,2,[[1136,1,1,1,2]]]],[26677,30021]]],["many",[5,5,[[41,1,1,0,1,[[987,1,1,0,1]]],[42,3,3,1,4,[[1002,1,1,1,2],[1008,1,1,2,3],[1017,1,1,3,4]]],[45,1,1,4,5,[[1075,1,1,4,5]]]],[25617,26266,26617,26909,28688]]],["much",[7,6,[[39,1,1,0,1,[[943,1,1,0,1]]],[43,2,1,1,2,[[1022,2,1,1,2]]],[57,3,3,2,5,[[1133,1,1,2,3],[1139,1,1,3,4],[1142,1,1,4,5]]],[65,1,1,5,6,[[1184,1,1,5,6]]]],[23666,27067,29967,30086,30158,31000]]],["things",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29106]]]]},{"k":"G5119","v":[["*",[155,153,[[39,89,88,0,88,[[930,3,3,0,3],[931,3,3,3,6],[932,5,5,6,11],[933,1,1,11,12],[935,2,2,12,14],[936,1,1,14,15],[937,5,5,15,20],[939,1,1,20,21],[940,6,6,21,27],[941,3,3,27,30],[943,3,3,30,33],[944,5,5,33,38],[945,2,2,38,40],[946,2,2,40,42],[947,2,2,42,44],[948,1,1,44,45],[949,1,1,45,46],[950,4,4,46,50],[951,1,1,50,51],[952,9,8,51,59],[953,8,8,59,67],[954,12,12,67,79],[955,8,8,79,87],[956,1,1,87,88]]],[40,6,6,88,94,[[958,1,1,88,89],[959,1,1,89,90],[969,4,4,90,94]]],[41,14,14,94,108,[[977,1,1,94,95],[978,1,1,95,96],[983,1,1,96,97],[985,1,1,97,98],[986,3,3,98,101],[988,1,1,101,102],[993,4,4,102,106],[995,1,1,106,107],[996,1,1,107,108]]],[42,9,9,108,117,[[998,1,1,108,109],[1003,1,1,109,110],[1004,1,1,110,111],[1007,2,2,111,113],[1008,1,1,113,114],[1015,2,2,114,116],[1016,1,1,116,117]]],[43,19,19,117,136,[[1018,1,1,117,118],[1021,1,1,118,119],[1022,1,1,119,120],[1023,1,1,120,121],[1024,1,1,121,122],[1025,1,1,122,123],[1027,2,2,123,125],[1030,2,2,125,127],[1032,1,1,127,128],[1034,1,1,128,129],[1038,2,2,129,131],[1040,1,1,131,132],[1042,1,1,132,133],[1043,1,1,133,134],[1044,1,1,134,135],[1045,1,1,135,136]]],[44,1,1,136,137,[[1051,1,1,136,137]]],[45,6,5,137,142,[[1065,1,1,137,138],[1074,3,2,138,140],[1076,2,2,140,142]]],[46,1,1,142,143,[[1089,1,1,142,143]]],[47,3,3,143,146,[[1094,2,2,143,145],[1096,1,1,145,146]]],[50,1,1,146,147,[[1109,1,1,146,147]]],[51,1,1,147,148,[[1115,1,1,147,148]]],[52,1,1,148,149,[[1117,1,1,148,149]]],[57,3,3,149,152,[[1142,2,2,149,151],[1144,1,1,151,152]]],[60,1,1,152,153,[[1158,1,1,152,153]]]],[23176,23185,23186,23197,23205,23207,23210,23214,23219,23220,23226,23258,23321,23339,23371,23385,23393,23394,23408,23416,23479,23502,23511,23518,23527,23533,23534,23565,23575,23582,23634,23645,23661,23684,23692,23693,23696,23699,23713,23719,23748,23759,23775,23789,23812,23827,23880,23885,23887,23893,23919,23966,23967,23971,23973,23978,23980,23987,23997,24009,24015,24039,24042,24045,24049,24052,24053,24057,24068,24070,24085,24090,24092,24099,24106,24110,24119,24121,24128,24132,24138,24142,24145,24155,24156,24167,24187,24205,24280,24315,24731,24738,24743,24744,25142,25188,25431,25544,25562,25563,25574,25636,25836,25846,25847,25853,25965,26036,26105,26338,26409,26529,26537,26596,26826,26841,26875,26935,27030,27085,27112,27120,27193,27305,27307,27365,27374,27464,27537,27690,27697,27737,27808,27824,27887,27900,28089,28438,28675,28677,28746,28772,29032,29139,29160,29192,29521,29624,29669,30140,30142,30238,30528]]],["+",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26537]]],["Then",[98,98,[[39,70,70,0,70,[[930,3,3,0,3],[931,3,3,3,6],[932,4,4,6,10],[936,1,1,10,11],[937,3,3,11,14],[939,1,1,14,15],[940,5,5,15,20],[941,2,2,20,22],[943,3,3,22,25],[944,3,3,25,28],[945,2,2,28,30],[946,2,2,30,32],[947,2,2,32,34],[948,1,1,34,35],[950,4,4,35,39],[951,1,1,39,40],[952,4,4,40,44],[953,7,7,44,51],[954,11,11,51,62],[955,7,7,62,69],[956,1,1,69,70]]],[41,7,7,70,77,[[983,1,1,70,71],[985,1,1,71,72],[986,1,1,72,73],[993,2,2,73,75],[995,1,1,75,76],[996,1,1,76,77]]],[42,3,3,77,80,[[1015,2,2,77,79],[1016,1,1,79,80]]],[43,16,16,80,96,[[1018,1,1,80,81],[1021,1,1,81,82],[1022,1,1,82,83],[1023,1,1,83,84],[1024,1,1,84,85],[1025,1,1,85,86],[1027,2,2,86,88],[1030,1,1,88,89],[1032,1,1,89,90],[1038,2,2,90,92],[1040,1,1,92,93],[1042,1,1,93,94],[1043,1,1,94,95],[1044,1,1,95,96]]],[57,2,2,96,98,[[1142,2,2,96,98]]]],[23176,23185,23186,23197,23205,23207,23210,23214,23219,23220,23371,23393,23408,23416,23479,23502,23511,23527,23533,23534,23575,23582,23634,23645,23661,23684,23692,23696,23713,23719,23748,23759,23775,23789,23812,23880,23885,23887,23893,23919,23966,23973,23980,23997,24009,24015,24042,24045,24049,24052,24053,24057,24068,24085,24090,24092,24099,24106,24110,24119,24121,24128,24132,24138,24142,24155,24156,24167,24187,24205,25431,25544,25574,25836,25847,25965,26036,26826,26841,26875,26935,27030,27085,27112,27120,27193,27305,27307,27374,27464,27690,27697,27737,27808,27824,27887,30140,30142]]],["forth",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23693]]],["still",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26529]]],["then",[49,47,[[39,16,15,0,15,[[933,1,1,0,1],[935,2,2,1,3],[937,2,2,3,5],[940,1,1,5,6],[941,1,1,6,7],[944,1,1,7,8],[949,1,1,8,9],[952,5,4,9,13],[953,1,1,13,14],[955,1,1,14,15]]],[40,6,6,15,21,[[958,1,1,15,16],[959,1,1,16,17],[969,4,4,17,21]]],[41,5,5,21,26,[[977,1,1,21,22],[978,1,1,22,23],[986,1,1,23,24],[993,2,2,24,26]]],[42,4,4,26,30,[[998,1,1,26,27],[1003,1,1,27,28],[1004,1,1,28,29],[1008,1,1,29,30]]],[43,2,2,30,32,[[1034,1,1,30,31],[1045,1,1,31,32]]],[44,1,1,32,33,[[1051,1,1,32,33]]],[45,6,5,33,38,[[1065,1,1,33,34],[1074,3,2,34,36],[1076,2,2,36,38]]],[46,1,1,38,39,[[1089,1,1,38,39]]],[47,3,3,39,42,[[1094,2,2,39,41],[1096,1,1,41,42]]],[50,1,1,42,43,[[1109,1,1,42,43]]],[51,1,1,43,44,[[1115,1,1,43,44]]],[52,1,1,44,45,[[1117,1,1,44,45]]],[57,1,1,45,46,[[1144,1,1,45,46]]],[60,1,1,46,47,[[1158,1,1,46,47]]]],[23258,23321,23339,23385,23394,23518,23565,23699,23827,23967,23971,23978,23987,24039,24145,24280,24315,24731,24738,24743,24744,25142,25188,25563,25846,25853,26105,26338,26409,26596,27537,27900,28089,28438,28675,28677,28746,28772,29032,29139,29160,29192,29521,29624,29669,30238,30528]]],["thou",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25562]]],["time",[3,3,[[39,2,2,0,2,[[932,1,1,0,1],[954,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]]],[23226,24070,25636]]],["when",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27365]]]]},{"k":"G5120","v":[["his",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27551]]]]},{"k":"G5121","v":[["contrariwise",[3,3,[[46,1,1,0,1,[[1079,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[28831,29088,30433]]]]},{"k":"G5122","v":[["named",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24186]]]]},{"k":"G5123","v":[["*",[17,17,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[43,2,2,2,4,[[1018,1,1,2,3],[1036,1,1,3,4]]],[44,5,5,4,9,[[1052,1,1,4,5],[1054,1,1,5,6],[1055,3,3,6,9]]],[56,1,1,9,10,[[1132,1,1,9,10]]],[57,6,6,10,16,[[1134,1,1,10,11],[1139,1,1,11,12],[1141,1,1,12,13],[1142,1,1,13,14],[1143,1,1,14,15],[1145,1,1,15,16]]],[59,1,1,16,17,[[1153,1,1,16,17]]]],[24175,24465,26942,27589,28109,28163,28194,28195,28196,29950,29991,30069,30116,30153,30188,30256,30444]]],["is",[12,12,[[43,1,1,0,1,[[1036,1,1,0,1]]],[44,5,5,1,6,[[1052,1,1,1,2],[1054,1,1,2,3],[1055,3,3,3,6]]],[56,1,1,6,7,[[1132,1,1,6,7]]],[57,4,4,7,11,[[1134,1,1,7,8],[1139,1,1,8,9],[1143,1,1,9,10],[1145,1,1,10,11]]],[59,1,1,11,12,[[1153,1,1,11,12]]]],[27589,28109,28163,28194,28195,28196,29950,29991,30069,30188,30256,30444]]],["say",[5,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[43,1,1,2,3,[[1018,1,1,2,3]]],[57,2,2,3,5,[[1141,1,1,3,4],[1142,1,1,4,5]]]],[24175,24465,26942,30116,30153]]]]},{"k":"G5124","v":[["*",[316,302,[[39,32,32,0,32,[[929,1,1,0,1],[934,1,1,1,2],[936,1,1,2,3],[937,1,1,3,4],[940,3,3,4,7],[941,3,3,7,10],[942,1,1,10,11],[943,1,1,11,12],[944,1,1,12,13],[945,1,1,13,14],[946,2,2,14,16],[947,1,1,16,17],[949,2,2,17,19],[951,2,2,19,21],[952,2,2,21,23],[954,8,8,23,31],[956,1,1,31,32]]],[40,16,16,32,48,[[957,2,2,32,34],[961,2,2,34,36],[962,1,1,36,37],[965,2,2,37,39],[967,2,2,39,41],[968,1,1,41,42],[969,1,1,42,43],[970,5,5,43,48]]],[41,37,36,48,84,[[973,4,4,48,52],[974,2,2,52,54],[975,1,1,54,55],[976,1,1,55,56],[977,1,1,56,57],[978,1,1,57,58],[979,2,2,58,60],[981,3,3,60,63],[982,2,2,63,65],[983,2,2,65,67],[984,3,3,67,70],[985,1,1,70,71],[986,1,1,71,72],[988,1,1,72,73],[990,2,2,73,75],[992,1,1,75,76],[994,8,7,76,83],[996,1,1,83,84]]],[42,52,49,84,133,[[997,1,1,84,85],[998,2,2,85,87],[999,1,1,87,88],[1000,3,3,88,91],[1001,3,3,91,94],[1002,6,6,94,100],[1003,2,2,100,102],[1004,3,3,102,105],[1005,1,1,105,106],[1006,1,1,106,107],[1007,4,4,107,111],[1008,7,6,111,117],[1009,2,2,117,119],[1010,1,1,119,120],[1011,1,1,120,121],[1012,3,3,121,124],[1014,4,3,124,127],[1015,2,2,127,129],[1016,2,2,129,131],[1017,3,2,131,133]]],[43,28,27,133,160,[[1019,5,5,133,138],[1021,2,2,138,140],[1022,3,3,140,143],[1024,1,1,143,144],[1025,1,1,144,145],[1026,2,1,145,146],[1027,1,1,146,147],[1028,1,1,147,148],[1033,1,1,148,149],[1036,4,4,149,153],[1037,1,1,153,154],[1038,1,1,154,155],[1040,1,1,155,156],[1041,1,1,156,157],[1043,2,2,157,159],[1044,1,1,159,160]]],[44,21,19,160,179,[[1046,2,2,160,162],[1047,1,1,162,163],[1049,1,1,163,164],[1050,1,1,164,165],[1051,1,1,165,166],[1052,5,4,166,170],[1054,1,1,170,171],[1056,1,1,171,172],[1057,1,1,172,173],[1058,3,2,173,175],[1059,2,2,175,177],[1060,2,2,177,179]]],[45,28,24,179,203,[[1062,1,1,179,180],[1065,1,1,180,181],[1066,2,2,181,183],[1067,1,1,183,184],[1068,5,5,184,189],[1070,2,2,189,191],[1071,1,1,191,192],[1072,8,6,192,198],[1073,2,2,198,200],[1076,5,3,200,203]]],[46,17,17,203,220,[[1078,1,1,203,204],[1079,3,3,204,207],[1081,1,1,207,208],[1082,2,2,208,210],[1084,2,2,210,212],[1085,2,2,212,214],[1086,1,1,214,215],[1087,2,2,215,217],[1090,3,3,217,220]]],[47,4,4,220,224,[[1092,1,1,220,221],[1093,2,2,221,223],[1096,1,1,223,224]]],[48,11,11,224,235,[[1097,1,1,224,225],[1098,1,1,225,226],[1100,1,1,226,227],[1101,3,3,227,230],[1102,5,5,230,235]]],[49,10,9,235,244,[[1103,7,7,235,242],[1104,1,1,242,243],[1105,2,1,243,244]]],[50,4,4,244,248,[[1107,1,1,244,245],[1108,1,1,245,246],[1109,1,1,246,247],[1110,1,1,247,248]]],[51,7,7,248,255,[[1112,1,1,248,249],[1113,3,3,249,252],[1114,2,2,252,254],[1115,1,1,254,255]]],[52,2,2,255,257,[[1117,1,1,255,256],[1118,1,1,256,257]]],[53,6,6,257,263,[[1119,2,2,257,259],[1120,1,1,259,260],[1122,2,2,260,262],[1123,1,1,262,263]]],[54,3,3,263,266,[[1125,1,1,263,264],[1126,1,1,264,265],[1127,1,1,265,266]]],[56,2,2,266,268,[[1132,2,2,266,268]]],[57,13,11,268,279,[[1133,1,1,268,269],[1134,1,1,269,270],[1138,1,1,270,271],[1139,1,1,271,272],[1141,4,4,272,276],[1142,2,1,276,277],[1145,3,2,277,279]]],[58,1,1,279,280,[[1149,1,1,279,280]]],[59,6,6,280,286,[[1151,1,1,280,281],[1152,3,3,281,284],[1153,1,1,284,285],[1154,1,1,285,286]]],[60,5,5,286,291,[[1156,2,2,286,288],[1158,3,3,288,291]]],[61,4,4,291,295,[[1161,2,2,291,293],[1162,2,2,293,295]]],[63,1,1,295,296,[[1165,1,1,295,296]]],[64,2,2,296,298,[[1166,2,2,296,298]]],[65,4,4,298,302,[[1168,1,1,298,299],[1173,1,1,299,300],[1178,1,1,300,301],[1184,1,1,301,302]]]],[23166,23307,23354,23407,23500,23516,23520,23552,23567,23591,23599,23644,23694,23721,23731,23750,23788,23830,23869,23932,23952,23971,24001,24063,24066,24067,24080,24082,24093,24096,24110,24209,24242,24253,24396,24407,24421,24559,24567,24643,24664,24697,24728,24759,24763,24776,24778,24790,24911,24927,24936,24959,24985,24988,25045,25106,25113,25149,25199,25203,25322,25346,25349,25374,25391,25424,25454,25477,25481,25498,25526,25573,25622,25722,25724,25796,25879,25881,25883,25884,25887,25901,25906,26031,26075,26107,26117,26152,26171,26174,26210,26226,26228,26238,26263,26286,26296,26297,26318,26322,26350,26367,26387,26421,26428,26463,26498,26530,26534,26549,26574,26585,26586,26598,26607,26613,26619,26641,26658,26681,26718,26741,26743,26744,26819,26822,26823,26836,26853,26887,26889,26912,26917,26961,26963,26965,26975,26982,27029,27044,27063,27083,27097,27176,27210,27237,27275,27317,27501,27595,27599,27602,27612,27655,27687,27741,27783,27839,27849,27889,27942,27956,27965,28038,28059,28074,28106,28107,28110,28111,28172,28234,28265,28272,28277,28289,28293,28312,28331,28375,28450,28456,28457,28473,28493,28513,28516,28522,28524,28557,28563,28595,28610,28617,28624,28625,28626,28630,28649,28650,28768,28771,28772,28817,28825,28827,28833,28860,28882,28891,28927,28929,28942,28952,28962,28978,28982,29044,29052,29053,29091,29104,29119,29195,29221,29237,29289,29309,29321,29336,29338,29345,29350,29355,29359,29367,29368,29370,29380,29383,29386,29389,29396,29436,29474,29498,29537,29550,29583,29593,29595,29597,29606,29618,29639,29672,29688,29705,29712,29719,29757,29763,29767,29824,29837,29854,29953,29956,29972,29978,30047,30091,30113,30120,30125,30132,30166,30258,30260,30352,30399,30418,30419,30420,30433,30452,30484,30499,30525,30527,30530,30580,30587,30606,30608,30668,30676,30677,30723,30825,30903,31001]]],["+",[87,86,[[39,11,11,0,11,[[934,1,1,0,1],[940,2,2,1,3],[941,2,2,3,5],[942,1,1,5,6],[946,1,1,6,7],[949,1,1,7,8],[951,2,2,8,10],[952,1,1,10,11]]],[40,4,4,11,15,[[957,1,1,11,12],[962,1,1,12,13],[967,1,1,13,14],[968,1,1,14,15]]],[41,5,5,15,20,[[976,1,1,15,16],[983,2,2,16,18],[984,1,1,18,19],[986,1,1,19,20]]],[42,15,15,20,35,[[997,1,1,20,21],[1001,2,2,21,23],[1002,1,1,23,24],[1003,1,1,24,25],[1004,1,1,25,26],[1005,1,1,26,27],[1006,1,1,27,28],[1008,3,3,28,31],[1009,1,1,31,32],[1011,1,1,32,33],[1012,1,1,33,34],[1015,1,1,34,35]]],[43,1,1,35,36,[[1019,1,1,35,36]]],[44,7,6,36,42,[[1046,1,1,36,37],[1049,1,1,37,38],[1050,1,1,38,39],[1054,1,1,39,40],[1058,2,1,40,41],[1060,1,1,41,42]]],[45,5,5,42,47,[[1065,1,1,42,43],[1072,2,2,43,45],[1073,2,2,45,47]]],[46,5,5,47,52,[[1078,1,1,47,48],[1081,1,1,48,49],[1082,1,1,49,50],[1084,1,1,50,51],[1090,1,1,51,52]]],[47,1,1,52,53,[[1092,1,1,52,53]]],[48,5,5,53,58,[[1097,1,1,53,54],[1101,1,1,54,55],[1102,3,3,55,58]]],[49,4,4,58,62,[[1103,2,2,58,60],[1104,1,1,60,61],[1105,1,1,61,62]]],[50,1,1,62,63,[[1110,1,1,62,63]]],[51,4,4,63,67,[[1112,1,1,63,64],[1113,3,3,64,67]]],[52,1,1,67,68,[[1117,1,1,67,68]]],[53,2,2,68,70,[[1119,1,1,68,69],[1122,1,1,69,70]]],[54,1,1,70,71,[[1126,1,1,70,71]]],[56,2,2,71,73,[[1132,2,2,71,73]]],[57,4,4,73,77,[[1133,1,1,73,74],[1134,1,1,74,75],[1141,1,1,75,76],[1142,1,1,76,77]]],[59,2,2,77,79,[[1152,1,1,77,78],[1153,1,1,78,79]]],[60,1,1,79,80,[[1156,1,1,79,80]]],[61,2,2,80,82,[[1161,1,1,80,81],[1162,1,1,81,82]]],[63,1,1,82,83,[[1165,1,1,82,83]]],[65,3,3,83,86,[[1173,1,1,83,84],[1178,1,1,84,85],[1184,1,1,85,86]]]],[23307,23516,23520,23552,23591,23599,23750,23869,23932,23952,24001,24253,24421,24664,24697,25106,25424,25454,25481,25573,26075,26226,26228,26322,26350,26428,26463,26498,26598,26607,26619,26641,26718,26741,26836,26975,27956,28038,28059,28172,28272,28312,28450,28610,28630,28649,28650,28817,28860,28882,28929,29053,29091,29221,29321,29350,29355,29359,29367,29386,29396,29436,29550,29583,29593,29595,29597,29672,29712,29757,29837,29953,29956,29972,29978,30120,30166,30420,30433,30484,30580,30608,30668,30825,30903,31001]]],["That",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27942]]],["They",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23407]]],["This",[22,22,[[40,2,2,0,2,[[965,1,1,0,1],[970,1,1,1,2]]],[41,3,3,2,5,[[984,1,1,2,3],[994,2,2,3,5]]],[42,7,7,5,12,[[1000,1,1,5,6],[1002,1,1,6,7],[1004,1,1,7,8],[1008,2,2,8,10],[1017,2,2,10,12]]],[43,1,1,12,13,[[1027,1,1,12,13]]],[45,2,2,13,15,[[1071,1,1,13,14],[1072,1,1,14,15]]],[46,1,1,15,16,[[1090,1,1,15,16]]],[47,1,1,16,17,[[1093,1,1,16,17]]],[48,2,2,17,19,[[1100,1,1,17,18],[1101,1,1,18,19]]],[54,2,2,19,21,[[1125,1,1,19,20],[1127,1,1,20,21]]],[57,1,1,21,22,[[1141,1,1,21,22]]]],[24567,24778,25477,25883,25884,26210,26286,26387,26586,26613,26912,26917,27275,28595,28625,29044,29104,29289,29336,29824,29854,30125]]],["cause",[3,3,[[42,1,1,0,1,[[1014,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[26822,29474,30452]]],["deed",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28457]]],["end",[3,3,[[42,1,1,0,1,[[1014,1,1,0,1]]],[44,1,1,1,2,[[1059,1,1,1,2]]],[46,1,1,2,3,[[1079,1,1,2,3]]]],[26822,28289,28833]]],["intent",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27237]]],["it",[5,5,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[970,1,1,2,3]]],[41,1,1,3,4,[[990,1,1,3,4]]],[57,1,1,4,5,[[1145,1,1,4,5]]]],[23500,24407,24759,25724,30258]]],["partly",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30166]]],["purpose",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30587]]],["same",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29345]]],["so",[5,5,[[42,1,1,0,1,[[1016,1,1,0,1]]],[43,2,2,1,3,[[1036,1,1,1,2],[1040,1,1,2,3]]],[44,1,1,3,4,[[1057,1,1,3,4]]],[45,1,1,4,5,[[1068,1,1,4,5]]]],[26887,27599,27741,28265,28524]]],["that",[18,17,[[40,1,1,0,1,[[969,1,1,0,1]]],[42,5,5,1,6,[[999,1,1,1,2],[1000,1,1,2,3],[1007,2,2,3,5],[1010,1,1,5,6]]],[44,6,5,6,11,[[1052,5,4,6,10],[1058,1,1,10,11]]],[45,1,1,11,12,[[1067,1,1,11,12]]],[47,1,1,12,13,[[1096,1,1,12,13]]],[48,1,1,13,14,[[1098,1,1,13,14]]],[49,1,1,14,15,[[1103,1,1,14,15]]],[53,1,1,15,16,[[1123,1,1,15,16]]],[57,1,1,16,17,[[1145,1,1,16,17]]]],[24728,26152,26174,26530,26534,26681,28106,28107,28110,28111,28277,28473,29195,29237,29389,29767,30258]]],["thing",[6,6,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[994,1,1,2,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]],[43,1,1,4,5,[[1043,1,1,4,5]]],[45,1,1,5,6,[[1070,1,1,5,6]]]],[24396,25322,25887,26819,27849,28557]]],["this",[158,155,[[39,19,19,0,19,[[929,1,1,0,1],[936,1,1,1,2],[941,1,1,2,3],[943,1,1,3,4],[944,1,1,4,5],[945,1,1,5,6],[946,1,1,6,7],[947,1,1,7,8],[949,1,1,8,9],[952,1,1,9,10],[954,8,8,10,18],[956,1,1,18,19]]],[40,6,6,19,25,[[957,1,1,19,20],[965,1,1,20,21],[967,1,1,21,22],[970,3,3,22,25]]],[41,25,25,25,50,[[973,4,4,25,29],[974,2,2,29,31],[975,1,1,31,32],[977,1,1,32,33],[978,1,1,33,34],[979,2,2,34,36],[981,2,2,36,38],[982,2,2,38,40],[984,1,1,40,41],[985,1,1,41,42],[988,1,1,42,43],[990,1,1,43,44],[992,1,1,44,45],[994,5,5,45,50]]],[42,21,21,50,71,[[998,2,2,50,52],[1000,1,1,52,53],[1001,1,1,53,54],[1002,4,4,54,58],[1003,1,1,58,59],[1004,1,1,59,60],[1007,2,2,60,62],[1008,2,2,62,64],[1009,1,1,64,65],[1012,2,2,65,67],[1014,1,1,67,68],[1015,1,1,68,69],[1016,1,1,69,70],[1017,1,1,70,71]]],[43,22,22,71,93,[[1019,4,4,71,75],[1021,2,2,75,77],[1022,3,3,77,80],[1024,1,1,80,81],[1025,1,1,81,82],[1026,1,1,82,83],[1028,1,1,83,84],[1033,1,1,84,85],[1036,3,3,85,88],[1037,1,1,88,89],[1038,1,1,89,90],[1041,1,1,90,91],[1043,1,1,91,92],[1044,1,1,92,93]]],[44,5,5,93,98,[[1047,1,1,93,94],[1051,1,1,94,95],[1056,1,1,95,96],[1059,1,1,96,97],[1060,1,1,97,98]]],[45,17,14,98,112,[[1062,1,1,98,99],[1066,1,1,99,100],[1068,4,4,100,104],[1070,1,1,104,105],[1072,5,4,105,109],[1076,5,3,109,112]]],[46,9,9,112,121,[[1079,2,2,112,114],[1084,1,1,114,115],[1085,2,2,115,117],[1086,1,1,117,118],[1087,2,2,118,120],[1090,1,1,120,121]]],[47,1,1,121,122,[[1093,1,1,121,122]]],[48,2,2,122,124,[[1101,1,1,122,123],[1102,1,1,123,124]]],[49,5,5,124,129,[[1103,4,4,124,128],[1105,1,1,128,129]]],[50,2,2,129,131,[[1108,1,1,129,130],[1109,1,1,130,131]]],[51,3,3,131,134,[[1114,2,2,131,133],[1115,1,1,133,134]]],[52,1,1,134,135,[[1118,1,1,134,135]]],[53,3,3,135,138,[[1119,1,1,135,136],[1120,1,1,136,137],[1122,1,1,137,138]]],[57,5,5,138,143,[[1138,1,1,138,139],[1139,1,1,139,140],[1141,2,2,140,142],[1145,1,1,142,143]]],[58,1,1,143,144,[[1149,1,1,143,144]]],[59,3,3,144,147,[[1151,1,1,144,145],[1152,2,2,145,147]]],[60,4,4,147,151,[[1156,1,1,147,148],[1158,3,3,148,151]]],[61,1,1,151,152,[[1162,1,1,151,152]]],[64,2,2,152,154,[[1166,2,2,152,154]]],[65,1,1,154,155,[[1168,1,1,154,155]]]],[23166,23354,23567,23644,23694,23721,23731,23788,23830,23971,24063,24066,24067,24080,24082,24093,24096,24110,24209,24242,24559,24643,24763,24776,24790,24911,24927,24936,24959,24985,24988,25045,25113,25149,25199,25203,25346,25349,25374,25391,25498,25526,25622,25722,25796,25879,25881,25883,25901,25906,26107,26117,26171,26238,26263,26296,26297,26318,26367,26421,26549,26574,26585,26598,26658,26743,26744,26823,26853,26889,26917,26961,26963,26965,26982,27029,27044,27063,27083,27097,27176,27210,27237,27317,27501,27595,27602,27612,27655,27687,27783,27839,27889,27965,28074,28234,28293,28331,28375,28456,28493,28513,28516,28522,28563,28617,28624,28625,28626,28768,28771,28772,28825,28827,28927,28942,28952,28962,28978,28982,29052,29119,29309,29338,29368,29370,29380,29383,29436,29498,29537,29606,29618,29639,29688,29705,29719,29763,30047,30091,30113,30132,30260,30352,30399,30418,30419,30499,30525,30527,30530,30606,30676,30677,30723]]],["thus",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[46,1,1,1,2,[[1082,1,1,1,2]]]],[26031,28891]]]]},{"k":"G5125","v":[["*",[18,18,[[41,2,2,0,2,[[988,1,1,0,1],[996,1,1,1,2]]],[43,2,2,2,4,[[1021,1,1,2,3],[1022,1,1,3,4]]],[44,3,3,4,7,[[1053,1,1,4,5],[1059,1,1,5,6],[1060,1,1,6,7]]],[45,1,1,7,8,[[1073,1,1,7,8]]],[47,1,1,8,9,[[1095,1,1,8,9]]],[50,1,1,9,10,[[1109,1,1,9,10]]],[51,1,1,10,11,[[1114,1,1,10,11]]],[53,2,2,11,13,[[1122,1,1,11,12],[1124,1,1,12,13]]],[57,1,1,13,14,[[1141,1,1,13,14]]],[60,1,1,14,15,[[1157,1,1,14,15]]],[63,1,1,15,16,[[1165,1,1,15,16]]],[64,2,2,16,18,[[1166,2,2,16,18]]]],[25646,26012,27038,27094,28153,28298,28326,28657,29183,29531,29621,29762,29796,30128,30520,30668,30682,30686]]],["+",[2,2,[[53,1,1,0,1,[[1124,1,1,0,1]]],[63,1,1,1,2,[[1165,1,1,1,2]]]],[29796,30668]]],["such",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29183]]],["them",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29762]]],["therein",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30520]]],["these",[7,7,[[43,2,2,0,2,[[1021,1,1,0,1],[1022,1,1,1,2]]],[44,1,1,2,3,[[1060,1,1,2,3]]],[45,1,1,3,4,[[1073,1,1,3,4]]],[51,1,1,4,5,[[1114,1,1,4,5]]],[57,1,1,5,6,[[1141,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[27038,27094,28326,28657,29621,30128,30686]]],["things",[4,4,[[44,2,2,0,2,[[1053,1,1,0,1],[1059,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[28153,28298,29531,30682]]],["this",[2,2,[[41,2,2,0,2,[[988,1,1,0,1],[996,1,1,1,2]]]],[25646,26012]]]]},{"k":"G5126","v":[["*",[64,63,[[39,3,3,0,3,[[947,1,1,0,1],[949,1,1,1,2],[955,1,1,2,3]]],[40,3,3,3,6,[[963,1,1,3,4],[970,2,2,4,6]]],[41,11,11,6,17,[[981,2,2,6,8],[984,2,2,8,10],[988,1,1,10,11],[991,1,1,11,12],[992,2,2,12,14],[995,3,3,14,17]]],[42,14,14,17,31,[[998,1,1,17,18],[1001,1,1,18,19],[1002,3,3,19,22],[1003,1,1,22,23],[1005,2,2,23,25],[1014,1,1,25,26],[1015,4,4,26,30],[1017,1,1,30,31]]],[43,22,21,31,52,[[1019,3,3,31,34],[1020,1,1,34,35],[1022,2,2,35,37],[1023,1,1,37,38],[1024,2,1,38,39],[1027,1,1,39,40],[1030,1,1,40,41],[1032,1,1,41,42],[1033,1,1,42,43],[1034,1,1,43,44],[1038,1,1,44,45],[1040,4,4,45,49],[1041,1,1,49,50],[1042,1,1,50,51],[1045,1,1,51,52]]],[44,2,2,52,54,[[1054,1,1,52,53],[1060,1,1,53,54]]],[45,5,5,54,59,[[1063,1,1,54,55],[1064,2,2,55,57],[1072,2,2,57,59]]],[46,1,1,59,60,[[1081,1,1,59,60]]],[49,1,1,60,61,[[1104,1,1,60,61]]],[52,1,1,61,62,[[1118,1,1,61,62]]],[57,1,1,62,63,[[1140,1,1,62,63]]]],[23773,23870,24161,24492,24812,24825,25314,25327,25464,25515,25648,25745,25791,25792,25937,25949,25953,26114,26216,26284,26291,26315,26355,26469,26479,26825,26833,26837,26838,26845,26919,26972,26981,26985,27012,27090,27096,27115,27151,27299,27389,27480,27486,27546,27692,27751,27752,27759,27761,27774,27820,27925,28164,28331,28396,28422,28427,28626,28627,28866,29414,29692,30095]]],["+",[4,4,[[42,1,1,0,1,[[1015,1,1,0,1]]],[43,3,3,1,4,[[1020,1,1,1,2],[1030,1,1,2,3],[1032,1,1,3,4]]]],[26837,27012,27389,27480]]],["Him",[5,5,[[43,4,4,0,4,[[1019,1,1,0,1],[1022,1,1,1,2],[1027,1,1,2,3],[1033,1,1,3,4]]],[49,1,1,4,5,[[1104,1,1,4,5]]]],[26972,27090,27299,27486,29414]]],["This",[4,4,[[42,1,1,0,1,[[1015,1,1,0,1]]],[43,3,3,1,4,[[1019,1,1,1,2],[1024,1,1,2,3],[1040,1,1,3,4]]]],[26845,26981,27151,27761]]],["him",[11,11,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,4,4,1,5,[[981,1,1,1,2],[984,1,1,2,3],[992,2,2,3,5]]],[42,3,3,5,8,[[1001,1,1,5,6],[1002,1,1,6,7],[1017,1,1,7,8]]],[43,1,1,8,9,[[1034,1,1,8,9]]],[45,2,2,9,11,[[1063,1,1,9,10],[1064,1,1,10,11]]]],[24161,25327,25464,25791,25792,26216,26284,26919,27546,28396,28427]]],["man",[6,6,[[42,2,2,0,2,[[1003,1,1,0,1],[1014,1,1,1,2]]],[43,2,2,2,4,[[1022,1,1,2,3],[1042,1,1,3,4]]],[52,1,1,4,5,[[1118,1,1,4,5]]],[57,1,1,5,6,[[1140,1,1,5,6]]]],[26355,26825,27096,27820,29692,30095]]],["same",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1024,1,1,1,2]]]],[26985,27151]]],["that",[2,2,[[42,2,2,0,2,[[1015,2,2,0,2]]]],[26833,26838]]],["this",[30,30,[[39,2,2,0,2,[[947,1,1,0,1],[949,1,1,1,2]]],[40,3,3,2,5,[[963,1,1,2,3],[970,2,2,3,5]]],[41,7,7,5,12,[[981,1,1,5,6],[984,1,1,6,7],[988,1,1,7,8],[991,1,1,8,9],[995,3,3,9,12]]],[42,5,5,12,17,[[998,1,1,12,13],[1002,2,2,13,15],[1005,2,2,15,17]]],[43,7,7,17,24,[[1023,1,1,17,18],[1038,1,1,18,19],[1040,3,3,19,22],[1041,1,1,22,23],[1045,1,1,23,24]]],[44,2,2,24,26,[[1054,1,1,24,25],[1060,1,1,25,26]]],[45,3,3,26,29,[[1064,1,1,26,27],[1072,2,2,27,29]]],[46,1,1,29,30,[[1081,1,1,29,30]]]],[23773,23870,24492,24812,24825,25314,25515,25648,25745,25937,25949,25953,26114,26291,26315,26469,26479,27115,27692,27751,27752,27759,27774,27925,28164,28331,28422,28626,28627,28866]]]]},{"k":"G5127","v":[["*",[77,72,[[39,6,6,0,6,[[941,3,3,0,3],[947,1,1,3,4],[954,1,1,4,5],[955,1,1,5,6]]],[40,2,2,6,8,[[960,1,1,6,7],[966,1,1,7,8]]],[41,7,7,8,15,[[974,1,1,8,9],[981,1,1,9,10],[985,1,1,10,11],[988,1,1,11,12],[992,1,1,12,13],[994,1,1,13,14],[996,1,1,14,15]]],[42,19,16,15,31,[[1000,1,1,15,16],[1002,3,3,16,19],[1004,2,1,19,20],[1005,1,1,20,21],[1006,1,1,21,22],[1007,1,1,22,23],[1008,2,1,23,24],[1009,1,1,24,25],[1010,1,1,25,26],[1012,1,1,26,27],[1014,4,3,27,30],[1015,1,1,30,31]]],[43,16,16,31,47,[[1021,1,1,31,32],[1022,1,1,32,33],[1023,1,1,33,34],[1026,1,1,34,35],[1030,3,3,35,38],[1032,2,2,38,40],[1034,1,1,40,41],[1038,1,1,41,42],[1039,1,1,42,43],[1042,2,2,43,45],[1045,2,2,45,47]]],[44,2,2,47,49,[[1052,1,1,47,48],[1056,1,1,48,49]]],[45,8,6,49,55,[[1062,2,1,49,50],[1063,3,2,50,52],[1064,1,1,52,53],[1066,1,1,53,54],[1068,1,1,54,55]]],[46,2,2,55,57,[[1081,1,1,55,56],[1089,1,1,56,57]]],[48,5,5,57,62,[[1098,1,1,57,58],[1099,2,2,58,60],[1101,1,1,60,61],[1102,1,1,61,62]]],[50,1,1,62,63,[[1107,1,1,62,63]]],[55,1,1,63,64,[[1129,1,1,63,64]]],[58,2,2,64,66,[[1146,1,1,64,65],[1147,1,1,65,66]]],[61,1,1,66,67,[[1162,1,1,66,67]]],[65,5,5,67,72,[[1185,1,1,67,68],[1188,4,4,68,72]]]],[23554,23561,23579,23767,24083,24153,24342,24595,24990,25346,25534,25628,25813,25915,25995,26169,26308,26318,26323,26404,26471,26522,26532,26611,26631,26698,26737,26802,26814,26821,26837,27039,27087,27114,27229,27379,27385,27400,27444,27448,27555,27692,27726,27816,27821,27908,27926,28115,28216,28383,28400,28402,28429,28464,28518,28863,29030,29231,29252,29265,29335,29349,29492,29897,30292,30298,30609,31037,31087,31089,31090,31098]]],["+",[10,10,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,2,2,2,4,[[994,1,1,2,3],[996,1,1,3,4]]],[43,1,1,4,5,[[1042,1,1,4,5]]],[48,3,3,5,8,[[1099,2,2,5,7],[1101,1,1,7,8]]],[55,1,1,8,9,[[1129,1,1,8,9]]],[61,1,1,9,10,[[1162,1,1,9,10]]]],[23767,24595,25915,25995,27816,29252,29265,29335,29897,30609]]],["hath",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28216]]],["he",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27821]]],["him",[2,2,[[42,1,1,0,1,[[1005,1,1,0,1]]],[65,1,1,1,2,[[1185,1,1,1,2]]]],[26471,31037]]],["it",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26318]]],["man",[2,2,[[42,1,1,0,1,[[1006,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]]],[26522,27400]]],["man's",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[27385,30292]]],["that",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]]],[25346,26323]]],["thenceforth",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26837]]],["thing",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29030]]],["this",[54,49,[[39,5,5,0,5,[[941,3,3,0,3],[954,1,1,3,4],[955,1,1,4,5]]],[40,1,1,5,6,[[960,1,1,5,6]]],[41,4,4,6,10,[[974,1,1,6,7],[985,1,1,7,8],[988,1,1,8,9],[992,1,1,9,10]]],[42,14,11,10,21,[[1000,1,1,10,11],[1002,1,1,11,12],[1004,2,1,12,13],[1007,1,1,13,14],[1008,2,1,14,15],[1009,1,1,15,16],[1010,1,1,16,17],[1012,1,1,17,18],[1014,4,3,18,21]]],[43,12,12,21,33,[[1021,1,1,21,22],[1022,1,1,22,23],[1023,1,1,23,24],[1026,1,1,24,25],[1030,1,1,25,26],[1032,2,2,26,28],[1034,1,1,28,29],[1038,1,1,29,30],[1039,1,1,30,31],[1045,2,2,31,33]]],[44,1,1,33,34,[[1052,1,1,33,34]]],[45,8,6,34,40,[[1062,2,1,34,35],[1063,3,2,35,37],[1064,1,1,37,38],[1066,1,1,38,39],[1068,1,1,39,40]]],[46,1,1,40,41,[[1081,1,1,40,41]]],[48,2,2,41,43,[[1098,1,1,41,42],[1102,1,1,42,43]]],[50,1,1,43,44,[[1107,1,1,43,44]]],[58,1,1,44,45,[[1147,1,1,44,45]]],[65,4,4,45,49,[[1188,4,4,45,49]]]],[23554,23561,23579,24083,24153,24342,24990,25534,25628,25813,26169,26308,26404,26532,26611,26631,26698,26737,26802,26814,26821,27039,27087,27114,27229,27379,27444,27448,27555,27692,27726,27908,27926,28115,28383,28400,28402,28429,28464,28518,28863,29231,29349,29492,30298,31087,31089,31090,31098]]]]},{"k":"G5128","v":[["*",[27,25,[[39,6,6,0,6,[[935,3,3,0,3],[938,1,1,3,4],[947,1,1,4,5],[954,1,1,5,6]]],[40,1,1,6,7,[[964,1,1,6,7]]],[41,4,4,7,11,[[981,2,2,7,9],[991,1,1,9,10],[992,1,1,10,11]]],[42,2,2,11,13,[[1006,1,1,11,12],[1014,1,1,12,13]]],[43,7,7,13,20,[[1019,1,1,13,14],[1022,2,2,14,16],[1027,1,1,16,17],[1033,1,1,17,18],[1036,1,1,18,19],[1038,1,1,19,20]]],[44,3,1,20,21,[[1053,3,1,20,21]]],[45,2,2,21,23,[[1067,1,1,21,22],[1077,1,1,22,23]]],[54,1,1,23,24,[[1127,1,1,23,24]]],[57,1,1,24,25,[[1134,1,1,24,25]]]],[23340,23342,23344,23422,23763,24055,24504,25329,25345,25746,25795,26500,26793,26971,27064,27083,27306,27519,27622,27688,28146,28471,28779,29858,29992]]],["+",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29858]]],["Them",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27688]]],["These",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23422]]],["them",[6,4,[[44,3,1,0,1,[[1053,3,1,0,1]]],[45,2,2,1,3,[[1067,1,1,1,2],[1077,1,1,2,3]]],[57,1,1,3,4,[[1134,1,1,3,4]]]],[28146,28471,28779,29992]]],["these",[17,17,[[39,5,5,0,5,[[935,3,3,0,3],[947,1,1,3,4],[954,1,1,4,5]]],[40,1,1,5,6,[[964,1,1,5,6]]],[41,4,4,6,10,[[981,2,2,6,8],[991,1,1,8,9],[992,1,1,9,10]]],[42,2,2,10,12,[[1006,1,1,10,11],[1014,1,1,11,12]]],[43,5,5,12,17,[[1019,1,1,12,13],[1022,2,2,13,15],[1027,1,1,15,16],[1036,1,1,16,17]]]],[23340,23342,23344,23763,24055,24504,25329,25345,25746,25795,26500,26793,26971,27064,27083,27306,27622]]],["this",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27519]]]]},{"k":"G5129","v":[["*",[88,86,[[39,7,7,0,7,[[936,1,1,0,1],[940,1,1,1,2],[941,2,2,2,4],[945,1,1,4,5],[948,1,1,5,6],[949,1,1,6,7]]],[40,3,3,7,10,[[962,1,1,7,8],[966,1,1,8,9],[967,1,1,9,10]]],[41,12,12,10,22,[[973,1,1,10,11],[976,1,1,11,12],[979,1,1,12,13],[982,2,2,13,15],[986,1,1,15,16],[990,1,1,16,17],[991,2,2,17,19],[993,1,1,19,20],[995,2,2,20,22]]],[42,13,13,22,35,[[1000,4,4,22,26],[1001,1,1,26,27],[1005,1,1,27,28],[1006,1,1,28,29],[1008,1,1,29,30],[1009,2,2,30,32],[1011,1,1,32,33],[1012,1,1,33,34],[1016,1,1,34,35]]],[43,17,17,35,52,[[1018,1,1,35,36],[1020,1,1,36,37],[1021,1,1,37,38],[1022,1,1,38,39],[1024,2,2,39,41],[1025,2,2,41,43],[1027,1,1,43,44],[1030,1,1,44,45],[1032,1,1,45,46],[1038,1,1,46,47],[1040,1,1,47,48],[1041,3,3,48,51],[1042,1,1,51,52]]],[44,2,2,52,54,[[1057,1,1,52,53],[1058,1,1,53,54]]],[45,6,6,54,60,[[1064,1,1,54,55],[1065,1,1,55,56],[1068,2,2,56,58],[1072,1,1,58,59],[1075,1,1,59,60]]],[46,4,4,60,64,[[1080,1,1,60,61],[1082,1,1,61,62],[1085,1,1,62,63],[1086,1,1,63,64]]],[47,1,1,64,65,[[1096,1,1,64,65]]],[48,1,1,65,66,[[1097,1,1,65,66]]],[49,1,1,66,67,[[1103,1,1,66,67]]],[57,1,1,67,68,[[1136,1,1,67,68]]],[59,1,1,68,69,[[1154,1,1,68,69]]],[60,2,2,69,71,[[1156,1,1,69,70],[1157,1,1,70,71]]],[61,15,13,71,84,[[1160,4,3,71,74],[1161,4,4,74,78],[1162,6,5,78,83],[1163,1,1,83,84]]],[65,2,2,84,86,[[1188,2,2,84,86]]]],[23354,23521,23593,23595,23720,23806,23847,24409,24618,24663,24954,25066,25203,25368,25383,25562,25718,25740,25750,25849,25939,25949,26176,26177,26183,26193,26248,26470,26484,26605,26654,26665,26707,26756,26897,26929,27008,27032,27087,27123,27145,27197,27205,27302,27401,27457,27673,27743,27771,27779,27785,27801,28247,28275,28428,28437,28511,28518,28622,28699,28851,28879,28942,28959,29204,29227,29379,30019,30462,30492,30519,30553,30554,30555,30589,30595,30598,30603,30605,30612,30613,30616,30620,30626,31098,31099]]],["+",[17,17,[[42,3,3,0,3,[[1000,1,1,0,1],[1005,1,1,1,2],[1011,1,1,2,3]]],[43,1,1,3,4,[[1041,1,1,3,4]]],[45,2,2,4,6,[[1065,1,1,4,5],[1068,1,1,5,6]]],[46,1,1,6,7,[[1085,1,1,6,7]]],[49,1,1,7,8,[[1103,1,1,7,8]]],[61,9,9,8,17,[[1160,2,2,8,10],[1161,3,3,10,13],[1162,4,4,13,17]]]],[26193,26470,26707,27785,28437,28511,28942,29379,30553,30555,30595,30598,30603,30605,30613,30616,30620]]],["him",[9,9,[[41,1,1,0,1,[[991,1,1,0,1]]],[42,3,3,1,4,[[1001,1,1,1,2],[1006,1,1,2,3],[1009,1,1,3,4]]],[43,3,3,4,7,[[1021,1,1,4,5],[1027,1,1,5,6],[1030,1,1,6,7]]],[61,2,2,7,9,[[1160,2,2,7,9]]]],[25750,26248,26484,26654,27032,27302,27401,30554,30555]]],["man",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[25562,27673]]],["one",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25203]]],["same",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30519]]],["this",[58,58,[[39,7,7,0,7,[[936,1,1,0,1],[940,1,1,1,2],[941,2,2,2,4],[945,1,1,4,5],[948,1,1,5,6],[949,1,1,6,7]]],[40,3,3,7,10,[[962,1,1,7,8],[966,1,1,8,9],[967,1,1,9,10]]],[41,9,9,10,19,[[973,1,1,10,11],[976,1,1,11,12],[982,2,2,12,14],[990,1,1,14,15],[991,1,1,15,16],[993,1,1,16,17],[995,2,2,17,19]]],[42,7,7,19,26,[[1000,3,3,19,22],[1008,1,1,22,23],[1009,1,1,23,24],[1012,1,1,24,25],[1016,1,1,25,26]]],[43,12,12,26,38,[[1018,1,1,26,27],[1020,1,1,27,28],[1022,1,1,28,29],[1024,2,2,29,31],[1025,2,2,31,33],[1032,1,1,33,34],[1040,1,1,34,35],[1041,2,2,35,37],[1042,1,1,37,38]]],[44,2,2,38,40,[[1057,1,1,38,39],[1058,1,1,39,40]]],[45,4,4,40,44,[[1064,1,1,40,41],[1068,1,1,41,42],[1072,1,1,42,43],[1075,1,1,43,44]]],[46,3,3,44,47,[[1080,1,1,44,45],[1082,1,1,45,46],[1086,1,1,46,47]]],[47,1,1,47,48,[[1096,1,1,47,48]]],[48,1,1,48,49,[[1097,1,1,48,49]]],[57,1,1,49,50,[[1136,1,1,49,50]]],[59,1,1,50,51,[[1154,1,1,50,51]]],[60,1,1,51,52,[[1156,1,1,51,52]]],[61,4,4,52,56,[[1161,1,1,52,53],[1162,2,2,53,55],[1163,1,1,55,56]]],[65,2,2,56,58,[[1188,2,2,56,58]]]],[23354,23521,23593,23595,23720,23806,23847,24409,24618,24663,24954,25066,25368,25383,25718,25740,25849,25939,25949,26176,26177,26183,26605,26665,26756,26897,26929,27008,27087,27123,27145,27197,27205,27457,27743,27771,27779,27801,28247,28275,28428,28518,28622,28699,28851,28879,28959,29204,29227,30019,30462,30492,30589,30612,30620,30626,31098,31099]]]]},{"k":"G5130","v":[["*",[68,67,[[39,12,12,0,12,[[931,1,1,0,1],[933,2,2,1,3],[934,2,2,3,5],[938,1,1,5,6],[939,1,1,6,7],[946,3,3,7,10],[953,2,2,10,12]]],[40,1,1,12,13,[[968,1,1,12,13]]],[41,11,11,13,24,[[975,1,1,13,14],[979,1,1,14,15],[982,1,1,15,16],[984,2,2,16,18],[989,1,1,18,19],[990,1,1,19,20],[993,2,2,20,22],[996,2,2,22,24]]],[42,6,6,24,30,[[997,1,1,24,25],[1001,1,1,25,26],[1003,1,1,26,27],[1010,1,1,27,28],[1013,1,1,28,29],[1017,1,1,29,30]]],[43,18,17,30,47,[[1018,2,2,30,32],[1022,3,3,32,35],[1031,1,1,35,36],[1032,1,1,36,37],[1035,2,2,37,39],[1036,1,1,39,40],[1038,1,1,40,41],[1041,1,1,41,42],[1042,2,2,42,44],[1043,4,3,44,47]]],[44,1,1,47,48,[[1056,1,1,47,48]]],[45,2,2,48,50,[[1070,1,1,48,49],[1074,1,1,49,50]]],[51,1,1,50,51,[[1114,1,1,50,51]]],[54,2,2,51,53,[[1126,1,1,51,52],[1127,1,1,52,53]]],[55,1,1,53,54,[[1131,1,1,53,54]]],[57,4,4,54,58,[[1133,1,1,54,55],[1141,1,1,55,56],[1142,1,1,56,57],[1145,1,1,57,58]]],[60,5,5,58,63,[[1156,3,3,58,61],[1158,2,2,61,63]]],[63,1,1,63,64,[[1165,1,1,63,64]]],[65,3,3,64,67,[[1175,1,1,64,65],[1184,1,1,65,66],[1186,1,1,66,67]]]],[23201,23253,23271,23311,23314,23459,23466,23733,23737,23741,24048,24053,24704,25033,25213,25399,25486,25489,25653,25722,25838,25854,26005,26039,26094,26230,26359,26680,26779,26913,26945,26947,27091,27095,27097,27429,27470,27572,27574,27621,27702,27777,27805,27816,27844,27849,27852,28239,28555,28678,29609,29848,29859,29931,29965,30111,30151,30252,30483,30491,30494,30533,30538,30662,30858,31008,31044]]],["+",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27844]]],["He",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26913]]],["be",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26945]]],["matters",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27816]]],["sort",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29859]]],["such",[3,3,[[43,1,1,0,1,[[1035,1,1,0,1]]],[51,1,1,1,2,[[1114,1,1,1,2]]],[65,1,1,2,3,[[1186,1,1,2,3]]]],[27572,29609,31044]]],["than",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30662]]],["their",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28239]]],["these",[35,35,[[39,10,10,0,10,[[931,1,1,0,1],[933,2,2,1,3],[934,1,1,3,4],[938,1,1,4,5],[946,3,3,5,8],[953,2,2,8,10]]],[40,1,1,10,11,[[968,1,1,10,11]]],[41,5,5,11,16,[[975,1,1,11,12],[982,1,1,12,13],[984,1,1,13,14],[989,1,1,14,15],[993,1,1,15,16]]],[42,5,5,16,21,[[997,1,1,16,17],[1001,1,1,17,18],[1003,1,1,18,19],[1010,1,1,19,20],[1013,1,1,20,21]]],[43,8,8,21,29,[[1018,1,1,21,22],[1022,3,3,22,25],[1031,1,1,25,26],[1032,1,1,26,27],[1038,1,1,27,28],[1043,1,1,28,29]]],[45,1,1,29,30,[[1074,1,1,29,30]]],[54,1,1,30,31,[[1126,1,1,30,31]]],[57,2,2,31,33,[[1133,1,1,31,32],[1142,1,1,32,33]]],[60,1,1,33,34,[[1156,1,1,33,34]]],[65,1,1,34,35,[[1175,1,1,34,35]]]],[23201,23253,23271,23311,23459,23733,23737,23741,24048,24053,24704,25033,25399,25486,25653,25838,26094,26230,26359,26680,26779,26947,27091,27095,27097,27429,27470,27702,27852,28678,29848,29965,30151,30483,30858]]],["they",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23466]]],["things",[21,20,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,6,6,1,7,[[979,1,1,1,2],[984,1,1,2,3],[990,1,1,3,4],[993,1,1,4,5],[996,2,2,5,7]]],[43,6,5,7,12,[[1035,1,1,7,8],[1036,1,1,8,9],[1041,1,1,9,10],[1042,1,1,10,11],[1043,2,1,11,12]]],[45,1,1,12,13,[[1070,1,1,12,13]]],[55,1,1,13,14,[[1131,1,1,13,14]]],[57,1,1,14,15,[[1141,1,1,14,15]]],[60,4,4,15,19,[[1156,2,2,15,17],[1158,2,2,17,19]]],[65,1,1,19,20,[[1184,1,1,19,20]]]],[23314,25213,25489,25722,25854,26005,26039,27574,27621,27777,27805,27849,28555,29931,30111,30491,30494,30533,30538,31008]]],["those",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30252]]]]},{"k":"G5131","v":[["goats",[4,4,[[57,4,4,0,4,[[1141,3,3,0,3],[1142,1,1,3,4]]]],[30117,30118,30124,30137]]]]},{"k":"G5132","v":[["*",[15,14,[[39,2,2,0,2,[[943,1,1,0,1],[949,1,1,1,2]]],[40,2,2,2,4,[[963,1,1,2,3],[967,1,1,3,4]]],[41,4,4,4,8,[[988,1,1,4,5],[991,1,1,5,6],[994,2,2,6,8]]],[42,1,1,8,9,[[998,1,1,8,9]]],[43,2,2,9,11,[[1023,1,1,9,10],[1033,1,1,10,11]]],[44,1,1,11,12,[[1056,1,1,11,12]]],[45,2,1,12,13,[[1071,2,1,12,13]]],[57,1,1,13,14,[[1141,1,1,13,14]]]],[23660,23838,24491,24655,25641,25754,25885,25894,26110,27103,27517,28218,28588,30107]]],["+",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27517]]],["bank",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25754]]],["table",[9,8,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,3,3,2,5,[[988,1,1,2,3],[994,2,2,3,5]]],[44,1,1,5,6,[[1056,1,1,5,6]]],[45,2,1,6,7,[[1071,2,1,6,7]]],[57,1,1,7,8,[[1141,1,1,7,8]]]],[23660,24491,25641,25885,25894,28218,28588,30107]]],["tables",[4,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[42,1,1,2,3,[[998,1,1,2,3]]],[43,1,1,3,4,[[1023,1,1,3,4]]]],[23838,24655,26110,27103]]]]},{"k":"G5133","v":[["exchangers",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24035]]]]},{"k":"G5134","v":[["wounds",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25397]]]]},{"k":"G5135","v":[["wounded",[2,2,[[41,1,1,0,1,[[992,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[25791,27601]]]]},{"k":"G5136","v":[["opened",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30027]]]]},{"k":"G5137","v":[["*",[7,7,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,2,2,2,4,[[987,1,1,2,3],[989,1,1,3,4]]],[43,2,2,4,6,[[1032,1,1,4,5],[1037,1,1,5,6]]],[44,1,1,6,7,[[1061,1,1,6,7]]]],[23733,24580,25608,25653,27452,27663,28340]]],["neck",[6,6,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,2,2,2,4,[[987,1,1,2,3],[989,1,1,3,4]]],[43,2,2,4,6,[[1032,1,1,4,5],[1037,1,1,5,6]]]],[23733,24580,25608,25653,27452,27663]]],["necks",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28340]]]]},{"k":"G5138","v":[["*",[2,2,[[41,1,1,0,1,[[975,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[25030,27884]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27884]]],["ways",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25030]]]]},{"k":"G5139","v":[["Trachonitis",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25026]]]]},{"k":"G5140","v":[["*",[69,60,[[39,12,9,0,9,[[940,4,1,0,1],[941,1,1,1,2],[943,1,1,2,3],[945,1,1,3,4],[946,2,2,4,6],[954,1,1,6,7],[955,2,2,7,9]]],[40,5,5,9,14,[[964,2,2,9,11],[965,1,1,11,12],[970,1,1,12,13],[971,1,1,13,14]]],[41,10,9,14,23,[[973,1,1,14,15],[974,1,1,15,16],[976,1,1,16,17],[981,1,1,17,18],[982,1,1,18,19],[983,1,1,19,20],[984,2,1,20,21],[985,2,2,21,23]]],[42,4,4,23,27,[[998,3,3,23,26],[1017,1,1,26,27]]],[43,14,14,27,41,[[1022,1,1,27,28],[1024,1,1,28,29],[1026,1,1,29,30],[1027,1,1,30,31],[1028,1,1,31,32],[1034,1,1,32,33],[1036,1,1,33,34],[1037,1,1,34,35],[1042,1,1,35,36],[1045,5,5,36,41]]],[45,4,4,41,45,[[1071,1,1,41,42],[1074,1,1,42,43],[1075,2,2,43,45]]],[46,1,1,45,46,[[1090,1,1,45,46]]],[47,1,1,46,47,[[1091,1,1,46,47]]],[53,1,1,47,48,[[1123,1,1,47,48]]],[57,1,1,48,49,[[1142,1,1,48,49]]],[58,1,1,49,50,[[1150,1,1,49,50]]],[61,4,2,50,52,[[1163,4,2,50,52]]],[65,11,8,52,60,[[1172,1,1,52,53],[1174,1,1,53,54],[1175,1,1,54,55],[1177,2,2,55,57],[1182,2,2,57,59],[1187,4,1,59,60]]]],[23529,23572,23665,23704,23743,23747,24115,24169,24192,24502,24531,24543,24812,24855,24949,25019,25088,25334,25399,25410,25511,25525,25539,26101,26114,26115,26909,27066,27136,27225,27278,27318,27525,27593,27629,27797,27906,27910,27911,27914,27916,28575,28678,28705,28707,29044,29075,29782,30161,30371,30631,30632,30799,30840,30858,30881,30883,30967,30973,31066]]],["+",[2,2,[[42,1,1,0,1,[[1017,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]]],[26909,28575]]],["three",[67,58,[[39,12,9,0,9,[[940,4,1,0,1],[941,1,1,1,2],[943,1,1,2,3],[945,1,1,3,4],[946,2,2,4,6],[954,1,1,6,7],[955,2,2,7,9]]],[40,5,5,9,14,[[964,2,2,9,11],[965,1,1,11,12],[970,1,1,12,13],[971,1,1,13,14]]],[41,10,9,14,23,[[973,1,1,14,15],[974,1,1,15,16],[976,1,1,16,17],[981,1,1,17,18],[982,1,1,18,19],[983,1,1,19,20],[984,2,1,20,21],[985,2,2,21,23]]],[42,3,3,23,26,[[998,3,3,23,26]]],[43,14,14,26,40,[[1022,1,1,26,27],[1024,1,1,27,28],[1026,1,1,28,29],[1027,1,1,29,30],[1028,1,1,30,31],[1034,1,1,31,32],[1036,1,1,32,33],[1037,1,1,33,34],[1042,1,1,34,35],[1045,5,5,35,40]]],[45,3,3,40,43,[[1074,1,1,40,41],[1075,2,2,41,43]]],[46,1,1,43,44,[[1090,1,1,43,44]]],[47,1,1,44,45,[[1091,1,1,44,45]]],[53,1,1,45,46,[[1123,1,1,45,46]]],[57,1,1,46,47,[[1142,1,1,46,47]]],[58,1,1,47,48,[[1150,1,1,47,48]]],[61,4,2,48,50,[[1163,4,2,48,50]]],[65,11,8,50,58,[[1172,1,1,50,51],[1174,1,1,51,52],[1175,1,1,52,53],[1177,2,2,53,55],[1182,2,2,55,57],[1187,4,1,57,58]]]],[23529,23572,23665,23704,23743,23747,24115,24169,24192,24502,24531,24543,24812,24855,24949,25019,25088,25334,25399,25410,25511,25525,25539,26101,26114,26115,27066,27136,27225,27278,27318,27525,27593,27629,27797,27906,27910,27911,27914,27916,28678,28705,28707,29044,29075,29782,30161,30371,30631,30632,30799,30840,30858,30881,30883,30967,30973,31066]]]]},{"k":"G5141","v":[["*",[4,4,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[43,1,1,2,3,[[1026,1,1,2,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]]],[24397,25292,27222,30510]]],["afraid",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30510]]],["trembling",[3,3,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[43,1,1,2,3,[[1026,1,1,2,3]]]],[24397,25292,27222]]]]},{"k":"G5142","v":[["*",[8,8,[[39,2,2,0,2,[[934,1,1,0,1],[953,1,1,1,2]]],[41,2,2,2,4,[[976,1,1,2,3],[984,1,1,3,4]]],[43,1,1,4,5,[[1029,1,1,4,5]]],[58,1,1,5,6,[[1150,1,1,5,6]]],[65,2,2,6,8,[[1178,2,2,6,8]]]],[23308,24045,25079,25483,27357,30359,30897,30905]]],["fed",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24045]]],["feed",[1,1,[[65,1,1,0,1,[[1178,1,1,0,1]]]],[30897]]],["feedeth",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23308,25483]]],["nourished",[3,3,[[43,1,1,0,1,[[1029,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]],[65,1,1,2,3,[[1178,1,1,2,3]]]],[27357,30359,30905]]],["up",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25079]]]]},{"k":"G5143","v":[["*",[20,17,[[39,2,2,0,2,[[955,1,1,0,1],[956,1,1,1,2]]],[40,2,2,2,4,[[961,1,1,2,3],[971,1,1,3,4]]],[41,2,2,4,6,[[987,1,1,4,5],[996,1,1,5,6]]],[42,2,2,6,8,[[1016,2,2,6,8]]],[44,1,1,8,9,[[1054,1,1,8,9]]],[45,4,2,9,11,[[1070,4,2,9,11]]],[47,3,2,11,13,[[1092,2,1,11,12],[1095,1,1,12,13]]],[49,1,1,13,14,[[1104,1,1,13,14]]],[52,1,1,14,15,[[1118,1,1,14,15]]],[57,1,1,15,16,[[1144,1,1,15,16]]],[65,1,1,16,17,[[1175,1,1,16,17]]]],[24177,24203,24370,24862,25608,26003,26869,26871,28171,28564,28566,29083,29169,29407,29679,30213,30849]]],["course",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29679]]],["ran",[6,6,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[971,1,1,2,3]]],[41,2,2,3,5,[[987,1,1,3,4],[996,1,1,4,5]]],[42,1,1,5,6,[[1016,1,1,5,6]]]],[24177,24370,24862,25608,26003,26871]]],["run",[10,7,[[39,1,1,0,1,[[956,1,1,0,1]]],[45,4,2,1,3,[[1070,4,2,1,3]]],[47,3,2,3,5,[[1092,2,1,3,4],[1095,1,1,4,5]]],[49,1,1,5,6,[[1104,1,1,5,6]]],[57,1,1,6,7,[[1144,1,1,6,7]]]],[24203,28564,28566,29083,29169,29407,30213]]],["runneth",[2,2,[[42,1,1,0,1,[[1016,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]]],[26869,28171]]],["running",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30849]]]]},{"k":"G5144","v":[["*",[11,11,[[39,5,5,0,5,[[941,2,2,0,2],[954,1,1,2,3],[955,2,2,3,5]]],[40,2,2,5,7,[[960,2,2,5,7]]],[41,1,1,7,8,[[975,1,1,7,8]]],[42,2,2,8,10,[[1001,1,1,8,9],[1002,1,1,9,10]]],[47,1,1,10,11,[[1093,1,1,10,11]]]],[23547,23562,24069,24132,24138,24331,24343,25048,26215,26276,29119]]],["+",[3,3,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[42,1,1,2,3,[[1001,1,1,2,3]]]],[24343,25048,26215]]],["thirty",[7,7,[[39,4,4,0,4,[[941,1,1,0,1],[954,1,1,1,2],[955,2,2,2,4]]],[40,1,1,4,5,[[960,1,1,4,5]]],[42,1,1,5,6,[[1002,1,1,5,6]]],[47,1,1,6,7,[[1093,1,1,6,7]]]],[23562,24069,24132,24138,24331,26276,29119]]],["thirtyfold",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23547]]]]},{"k":"G5145","v":[["hundred",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]]],[24759,26585]]]]},{"k":"G5146","v":[["*",[2,2,[[39,1,1,0,1,[[935,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[23332,30052]]],["briers",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30052]]],["thistles",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23332]]]]},{"k":"G5147","v":[["paths",[3,3,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[975,1,1,2,3]]]],[23195,24218,25029]]]]},{"k":"G5148","v":[["years",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27657]]]]},{"k":"G5149","v":[["gnasheth",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24556]]]]},{"k":"G5150","v":[["months",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30195]]]]},{"k":"G5151","v":[["*",[12,11,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,2,2,2,4,[[970,2,2,2,4]]],[41,2,2,4,6,[[994,2,2,4,6]]],[42,1,1,6,7,[[1009,1,1,6,7]]],[43,2,2,7,9,[[1027,1,1,7,8],[1028,1,1,8,9]]],[46,3,2,9,11,[[1088,2,1,9,10],[1089,1,1,10,11]]]],[24088,24129,24784,24826,25898,25925,26668,27275,27317,29014,29030]]],["Thrice",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29014]]],["thrice",[10,10,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,2,2,2,4,[[970,2,2,2,4]]],[41,2,2,4,6,[[994,2,2,4,6]]],[42,1,1,6,7,[[1009,1,1,6,7]]],[43,1,1,7,8,[[1027,1,1,7,8]]],[46,2,2,8,10,[[1088,1,1,8,9],[1089,1,1,9,10]]]],[24088,24129,24784,24826,25898,25925,26668,27275,29014,29030]]],["times",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27317]]]]},{"k":"G5152","v":[["loft",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27635]]]]},{"k":"G5153","v":[["thousand",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26990]]]]},{"k":"G5154","v":[["*",[57,49,[[39,7,7,0,7,[[944,1,1,0,1],[945,1,1,1,2],[948,2,2,2,4],[950,1,1,4,5],[954,1,1,5,6],[955,1,1,6,7]]],[40,5,5,7,12,[[965,1,1,7,8],[966,1,1,8,9],[968,1,1,9,10],[970,1,1,10,11],[971,1,1,11,12]]],[41,10,10,12,22,[[981,1,1,12,13],[984,1,1,13,14],[985,1,1,14,15],[990,1,1,15,16],[992,2,2,16,18],[995,1,1,18,19],[996,3,3,19,22]]],[42,4,3,22,25,[[998,1,1,22,23],[1017,3,2,23,25]]],[43,4,4,25,29,[[1019,1,1,25,26],[1027,1,1,26,27],[1040,1,1,27,28],[1044,1,1,28,29]]],[45,2,2,29,31,[[1073,1,1,29,30],[1076,1,1,30,31]]],[46,3,3,31,34,[[1089,2,2,31,33],[1090,1,1,33,34]]],[65,22,15,34,49,[[1170,1,1,34,35],[1172,2,1,35,36],[1174,12,6,36,42],[1175,2,2,42,44],[1177,1,1,44,45],[1178,1,1,45,46],[1180,1,1,46,47],[1182,1,1,47,48],[1187,1,1,48,49]]]],[23693,23723,23795,23811,23898,24098,24193,24569,24622,24694,24795,24851,25323,25497,25550,25721,25791,25810,25957,25998,26012,26037,26096,26912,26915,26964,27299,27757,27874,28662,28722,29024,29036,29044,30775,30798,30834,30835,30836,30837,30838,30839,30855,30858,30886,30895,30935,30958,31072]]],["part",[14,9,[[65,14,9,0,9,[[1174,11,6,0,6],[1175,2,2,6,8],[1178,1,1,8,9]]]],[30834,30835,30836,30837,30838,30839,30855,30858,30895]]],["third",[34,33,[[39,6,6,0,6,[[944,1,1,0,1],[945,1,1,1,2],[948,2,2,2,4],[950,1,1,4,5],[955,1,1,5,6]]],[40,4,4,6,10,[[965,1,1,6,7],[966,1,1,7,8],[968,1,1,8,9],[971,1,1,9,10]]],[41,9,9,10,19,[[981,1,1,10,11],[984,1,1,11,12],[985,1,1,12,13],[990,1,1,13,14],[992,2,2,14,16],[996,3,3,16,19]]],[42,1,1,19,20,[[998,1,1,19,20]]],[43,4,4,20,24,[[1019,1,1,20,21],[1027,1,1,21,22],[1040,1,1,22,23],[1044,1,1,23,24]]],[45,1,1,24,25,[[1076,1,1,24,25]]],[46,1,1,25,26,[[1089,1,1,25,26]]],[65,8,7,26,33,[[1170,1,1,26,27],[1172,2,1,27,28],[1174,1,1,28,29],[1177,1,1,29,30],[1180,1,1,30,31],[1182,1,1,31,32],[1187,1,1,32,33]]]],[23693,23723,23795,23811,23898,24193,24569,24622,24694,24851,25323,25497,25550,25721,25791,25810,25998,26012,26037,26096,26964,27299,27757,27874,28722,29024,30775,30798,30837,30886,30935,30958,31072]]],["thirdly",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28662]]],["time",[8,7,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,3,2,3,5,[[1017,3,2,3,5]]],[46,2,2,5,7,[[1089,1,1,5,6],[1090,1,1,6,7]]]],[24098,24795,25957,26912,26915,29036,29044]]]]},{"k":"G5155","v":[["hair",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30805]]]]},{"k":"G5156","v":[["*",[5,5,[[40,1,1,0,1,[[972,1,1,0,1]]],[45,1,1,1,2,[[1063,1,1,1,2]]],[46,1,1,2,3,[[1084,1,1,2,3]]],[48,1,1,3,4,[[1102,1,1,3,4]]],[49,1,1,4,5,[[1104,1,1,4,5]]]],[24881,28397,28931,29342,29403]]],["+",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24881]]],["trembling",[4,4,[[45,1,1,0,1,[[1063,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]],[49,1,1,3,4,[[1104,1,1,3,4]]]],[28397,28931,29342,29403]]]]},{"k":"G5157","v":[["turning",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30283]]]]},{"k":"G5158","v":[["*",[13,13,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[43,4,4,2,6,[[1018,1,1,2,3],[1024,1,1,3,4],[1032,1,1,4,5],[1044,1,1,5,6]]],[44,1,1,6,7,[[1048,1,1,6,7]]],[49,1,1,7,8,[[1103,1,1,7,8]]],[52,2,2,8,10,[[1117,1,1,8,9],[1118,1,1,9,10]]],[54,1,1,10,11,[[1127,1,1,10,11]]],[57,1,1,11,12,[[1145,1,1,11,12]]],[64,1,1,12,13,[[1166,1,1,12,13]]]],[23955,25552,26934,27144,27453,27880,27993,29379,29664,29694,29861,30246,30679]]],["+",[8,8,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[43,4,4,2,6,[[1018,1,1,2,3],[1024,1,1,3,4],[1032,1,1,4,5],[1044,1,1,5,6]]],[54,1,1,6,7,[[1127,1,1,6,7]]],[64,1,1,7,8,[[1166,1,1,7,8]]]],[23955,25552,26934,27144,27453,27880,29861,30679]]],["conversation",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30246]]],["means",[2,2,[[52,2,2,0,2,[[1117,1,1,0,1],[1118,1,1,1,2]]]],[29664,29694]]],["way",[2,2,[[44,1,1,0,1,[[1048,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[27993,29379]]]]},{"k":"G5159","v":[["+",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27380]]]]},{"k":"G5160","v":[["*",[16,16,[[39,4,4,0,4,[[931,1,1,0,1],[934,1,1,1,2],[938,1,1,2,3],[952,1,1,3,4]]],[41,1,1,4,5,[[984,1,1,4,5]]],[42,1,1,5,6,[[1000,1,1,5,6]]],[43,7,7,6,13,[[1019,1,1,6,7],[1026,1,1,7,8],[1031,1,1,8,9],[1044,4,4,9,13]]],[57,2,2,13,15,[[1137,2,2,13,15]]],[58,1,1,15,16,[[1147,1,1,15,16]]]],[23196,23307,23427,24002,25482,26164,26995,27235,27431,27888,27889,27891,27893,30042,30044,30308]]],["+",[3,3,[[43,1,1,0,1,[[1044,1,1,0,1]]],[57,2,2,1,3,[[1137,2,2,1,3]]]],[27893,30042,30044]]],["food",[2,2,[[43,1,1,0,1,[[1031,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[27431,30308]]],["meat",[11,11,[[39,4,4,0,4,[[931,1,1,0,1],[934,1,1,1,2],[938,1,1,2,3],[952,1,1,3,4]]],[41,1,1,4,5,[[984,1,1,4,5]]],[42,1,1,5,6,[[1000,1,1,5,6]]],[43,5,5,6,11,[[1019,1,1,6,7],[1026,1,1,7,8],[1044,3,3,8,11]]]],[23196,23307,23427,24002,25482,26164,26995,27235,27888,27889,27891]]]]},{"k":"G5161","v":[["Trophimus",[3,3,[[43,2,2,0,2,[[1037,1,1,0,1],[1038,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[27630,27693,29890]]]]},{"k":"G5162","v":[["nurse",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29577]]]]},{"k":"G5163","v":[["paths",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30225]]]]},{"k":"G5164","v":[["course",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30325]]]]},{"k":"G5165","v":[["dish",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24077,24774]]]]},{"k":"G5166","v":[["*",[3,3,[[41,1,1,0,1,[[978,1,1,0,1]]],[65,2,2,1,3,[[1180,2,2,1,3]]]],[25190,30944,30945]]],["gather",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[65,1,1,1,2,[[1180,1,1,1,2]]]],[25190,30944]]],["gathered",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30945]]]]},{"k":"G5167","v":[["turtledoves",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24997]]]]},{"k":"G5168","v":[["eye",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]]],[24613,25713]]]]},{"k":"G5169","v":[["eye",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23786]]]]},{"k":"G5170","v":[["Tryphena",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28348]]]]},{"k":"G5171","v":[["pleasure",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30359]]]]},{"k":"G5172","v":[["*",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[25220,30513]]],["delicately",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25220]]],["riot",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30513]]]]},{"k":"G5173","v":[["Tryphosa",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28348]]]]},{"k":"G5174","v":[["Troas",[6,6,[[43,4,4,0,4,[[1033,2,2,0,2],[1037,2,2,2,4]]],[46,1,1,4,5,[[1079,1,1,4,5]]],[54,1,1,5,6,[[1128,1,1,5,6]]]],[27491,27494,27631,27632,28836,29883]]]]},{"k":"G5175","v":[["Trogyllium",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27641]]]]},{"k":"G5176","v":[["*",[6,6,[[39,1,1,0,1,[[952,1,1,0,1]]],[42,5,5,1,6,[[1002,4,4,1,5],[1009,1,1,5,6]]]],[23995,26311,26313,26314,26315,26648]]],["eateth",[5,5,[[42,5,5,0,5,[[1002,4,4,0,4],[1009,1,1,4,5]]]],[26311,26313,26314,26315,26648]]],["eating",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23995]]]]},{"k":"G5177","v":[["*",[13,13,[[41,2,2,0,2,[[982,1,1,0,1],[992,1,1,1,2]]],[43,5,5,2,7,[[1036,1,1,2,3],[1041,1,1,3,4],[1043,1,1,4,5],[1044,1,1,5,6],[1045,1,1,6,7]]],[45,3,3,7,10,[[1075,1,1,7,8],[1076,1,1,8,9],[1077,1,1,9,10]]],[54,1,1,10,11,[[1126,1,1,10,11]]],[57,2,2,11,13,[[1140,1,1,11,12],[1143,1,1,12,13]]]],[25393,25814,27596,27771,27845,27858,27901,28688,28755,28782,29837,30098,30207]]],["+",[3,3,[[43,2,2,0,2,[[1036,1,1,0,1],[1044,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]]],[27596,27858,28688]]],["be",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28782]]],["chance",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28755]]],["enjoy",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27771]]],["him",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25393]]],["little",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27901]]],["obtain",[3,3,[[41,1,1,0,1,[[992,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[25814,29837,30207]]],["obtained",[2,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[57,1,1,1,2,[[1140,1,1,1,2]]]],[27845,30098]]]]},{"k":"G5178","v":[["tortured",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30207]]]]},{"k":"G5179","v":[["*",[16,15,[[42,2,1,0,1,[[1016,2,1,0,1]]],[43,3,3,1,4,[[1024,2,2,1,3],[1040,1,1,3,4]]],[44,2,2,4,6,[[1050,1,1,4,5],[1051,1,1,5,6]]],[45,2,2,6,8,[[1071,2,2,6,8]]],[49,1,1,8,9,[[1105,1,1,8,9]]],[51,1,1,9,10,[[1111,1,1,9,10]]],[52,1,1,10,11,[[1118,1,1,10,11]]],[53,1,1,11,12,[[1122,1,1,11,12]]],[55,1,1,12,13,[[1130,1,1,12,13]]],[57,1,1,13,14,[[1140,1,1,13,14]]],[59,1,1,14,15,[[1155,1,1,14,15]]]],[26892,27159,27160,27759,28061,28085,28573,28578,29438,29567,29687,29759,29915,30097,30468]]],["ensample",[2,2,[[49,1,1,0,1,[[1105,1,1,0,1]]],[52,1,1,1,2,[[1118,1,1,1,2]]]],[29438,29687]]],["ensamples",[3,3,[[45,1,1,0,1,[[1071,1,1,0,1]]],[51,1,1,1,2,[[1111,1,1,1,2]]],[59,1,1,2,3,[[1155,1,1,2,3]]]],[28578,29567,30468]]],["example",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29759]]],["examples",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28573]]],["fashion",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27160]]],["figure",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28061]]],["figures",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27159]]],["form",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28085]]],["manner",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27759]]],["pattern",[2,2,[[55,1,1,0,1,[[1130,1,1,0,1]]],[57,1,1,1,2,[[1140,1,1,1,2]]]],[29915,30097]]],["print",[2,1,[[42,2,1,0,1,[[1016,2,1,0,1]]]],[26892]]]]},{"k":"G5180","v":[["*",[14,13,[[39,2,2,0,2,[[952,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[41,5,5,3,8,[[978,1,1,3,4],[984,1,1,4,5],[990,1,1,5,6],[994,1,1,6,7],[995,1,1,7,8]]],[43,5,4,8,12,[[1035,1,1,8,9],[1038,1,1,9,10],[1040,3,2,10,12]]],[45,1,1,12,13,[[1069,1,1,12,13]]]],[24006,24159,24845,25175,25504,25701,25928,25983,27574,27696,27736,27737,28539]]],["beat",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]]],[25504,27574]]],["beating",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27696]]],["smite",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[43,2,2,1,3,[[1040,2,2,1,3]]]],[24006,27736,27737]]],["smiteth",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25175]]],["smitten",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27737]]],["smote",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,2,2,2,4,[[990,1,1,2,3],[995,1,1,3,4]]]],[24159,24845,25701,25983]]],["struck",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25928]]],["wound",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28539]]]]},{"k":"G5181","v":[["Tyrannus",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27594]]]]},{"k":"G5182","v":[["troubled",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25404]]]]},{"k":"G5183","v":[["Tyre",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27357]]]]},{"k":"G5184","v":[["Tyre",[11,11,[[39,3,3,0,3,[[939,2,2,0,2],[943,1,1,2,3]]],[40,3,3,3,6,[[959,1,1,3,4],[963,2,2,4,6]]],[41,3,3,6,9,[[978,1,1,6,7],[982,2,2,7,9]]],[43,2,2,9,11,[[1038,2,2,9,11]]]],[23480,23481,23654,24296,24487,24494,25163,25376,25377,27667,27671]]]]},{"k":"G5185","v":[["*",[53,48,[[39,18,14,0,14,[[937,2,2,0,2],[939,1,1,2,3],[940,2,1,3,4],[943,6,3,4,7],[948,1,1,7,8],[949,1,1,8,9],[951,5,5,9,14]]],[40,5,5,14,19,[[964,2,2,14,16],[966,3,3,16,19]]],[41,8,7,19,26,[[976,1,1,19,20],[978,2,1,20,21],[979,2,2,21,23],[986,2,2,23,25],[990,1,1,25,26]]],[42,18,18,26,44,[[1001,1,1,26,27],[1005,15,15,27,42],[1006,1,1,42,43],[1007,1,1,43,44]]],[43,1,1,44,45,[[1030,1,1,44,45]]],[44,1,1,45,46,[[1047,1,1,45,46]]],[60,1,1,46,47,[[1156,1,1,46,47]]],[65,1,1,47,48,[[1169,1,1,47,48]]]],[23406,23407,23464,23511,23647,23663,23664,23822,23840,23934,23935,23937,23942,23944,24522,24523,24634,24637,24639,25081,25185,25216,25217,25566,25574,25723,26213,26441,26442,26446,26448,26453,26457,26458,26459,26460,26464,26465,26472,26479,26480,26481,26502,26560,27373,27981,30488,30763]]],["blind",[43,38,[[39,15,11,0,11,[[939,1,1,0,1],[940,2,1,1,2],[943,6,3,2,5],[949,1,1,5,6],[951,5,5,6,11]]],[40,1,1,11,12,[[966,1,1,11,12]]],[41,7,6,12,18,[[976,1,1,12,13],[978,2,1,13,14],[979,2,2,14,16],[986,2,2,16,18]]],[42,16,16,18,34,[[1001,1,1,18,19],[1005,13,13,19,32],[1006,1,1,32,33],[1007,1,1,33,34]]],[43,1,1,34,35,[[1030,1,1,34,35]]],[44,1,1,35,36,[[1047,1,1,35,36]]],[60,1,1,36,37,[[1156,1,1,36,37]]],[65,1,1,37,38,[[1169,1,1,37,38]]]],[23464,23511,23647,23663,23664,23840,23934,23935,23937,23942,23944,24634,25081,25185,25216,25217,25566,25574,26213,26441,26442,26448,26453,26458,26459,26460,26464,26465,26472,26479,26480,26481,26502,26560,27373,27981,30488,30763]]],["man",[7,7,[[40,4,4,0,4,[[964,2,2,0,2],[966,2,2,2,4]]],[41,1,1,4,5,[[990,1,1,4,5]]],[42,2,2,5,7,[[1005,2,2,5,7]]]],[24522,24523,24637,24639,25723,26446,26457]]],["men",[3,3,[[39,3,3,0,3,[[937,2,2,0,2],[948,1,1,2,3]]]],[23406,23407,23822]]]]},{"k":"G5186","v":[["blinded",[3,3,[[42,1,1,0,1,[[1008,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]],[61,1,1,2,3,[[1160,1,1,2,3]]]],[26620,28863,30561]]]]},{"k":"G5187","v":[["*",[3,3,[[53,2,2,0,2,[[1121,1,1,0,1],[1124,1,1,1,2]]],[54,1,1,2,3,[[1127,1,1,2,3]]]],[29737,29792,29857]]],["highminded",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29857]]],["pride",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29737]]],["proud",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29792]]]]},{"k":"G5188","v":[["smoking",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23509]]]]},{"k":"G5189","v":[["tempestuous",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27869]]]]},{"k":"G5190","v":[["Tychicus",[5,5,[[43,1,1,0,1,[[1037,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]],[50,1,1,2,3,[[1110,1,1,2,3]]],[54,1,1,3,4,[[1128,1,1,3,4]]],[55,1,1,4,5,[[1131,1,1,4,5]]]],[27630,29358,29549,29882,29935]]]]},{"k":"G5191","v":[["jacinth",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30857]]]]},{"k":"G5192","v":[["jacinth",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31073]]]]},{"k":"G5193","v":[["glass",[3,2,[[65,3,2,0,2,[[1170,1,1,0,1],[1181,2,1,1,2]]]],[30774,30948]]]]},{"k":"G5194","v":[["glass",[2,2,[[65,2,2,0,2,[[1187,2,2,0,2]]]],[31071,31074]]]]},{"k":"G5195","v":[["*",[5,5,[[39,1,1,0,1,[[950,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[990,1,1,2,3]]],[43,1,1,3,4,[[1031,1,1,3,4]]],[51,1,1,4,5,[[1112,1,1,4,5]]]],[23878,25450,25720,27419,29572]]],["despitefully",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27419]]],["entreated",[2,2,[[41,1,1,0,1,[[990,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]]],[25720,29572]]],["reproachest",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25450]]],["spitefully",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23878]]]]},{"k":"G5196","v":[["*",[3,3,[[43,2,2,0,2,[[1044,2,2,0,2]]],[46,1,1,2,3,[[1089,1,1,2,3]]]],[27865,27876,29032]]],["harm",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27876]]],["hurt",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27865]]],["reproaches",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29032]]]]},{"k":"G5197","v":[["*",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]]],[27960,29709]]],["despiteful",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27960]]],["injurious",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29709]]]]},{"k":"G5198","v":[["*",[12,12,[[41,3,3,0,3,[[977,1,1,0,1],[979,1,1,1,2],[987,1,1,2,3]]],[53,2,2,3,5,[[1119,1,1,3,4],[1124,1,1,4,5]]],[54,2,2,5,7,[[1125,1,1,5,6],[1128,1,1,6,7]]],[55,4,4,7,11,[[1129,2,2,7,9],[1130,2,2,9,11]]],[63,1,1,11,12,[[1165,1,1,11,12]]]],[25138,25205,25615,29706,29791,29822,29873,29901,29905,29909,29910,30660]]],["health",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30660]]],["sound",[8,8,[[41,1,1,0,1,[[987,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]],[54,2,2,2,4,[[1125,1,1,2,3],[1128,1,1,3,4]]],[55,4,4,4,8,[[1129,2,2,4,6],[1130,2,2,6,8]]]],[25615,29706,29822,29873,29901,29905,29909,29910]]],["whole",[2,2,[[41,2,2,0,2,[[977,1,1,0,1],[979,1,1,1,2]]]],[25138,25205]]],["wholesome",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29791]]]]},{"k":"G5199","v":[["*",[14,14,[[39,2,2,0,2,[[940,1,1,0,1],[943,1,1,1,2]]],[40,2,2,2,4,[[959,1,1,2,3],[961,1,1,3,4]]],[41,1,1,4,5,[[978,1,1,4,5]]],[42,7,7,5,12,[[1001,6,6,5,11],[1003,1,1,11,12]]],[43,1,1,12,13,[[1021,1,1,12,13]]],[55,1,1,13,14,[[1130,1,1,13,14]]]],[23502,23664,24293,24398,25156,26214,26216,26219,26221,26224,26225,26351,27032,29916]]],["Sound",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29916]]],["whole",[13,13,[[39,2,2,0,2,[[940,1,1,0,1],[943,1,1,1,2]]],[40,2,2,2,4,[[959,1,1,2,3],[961,1,1,3,4]]],[41,1,1,4,5,[[978,1,1,4,5]]],[42,7,7,5,12,[[1001,6,6,5,11],[1003,1,1,11,12]]],[43,1,1,12,13,[[1021,1,1,12,13]]]],[23502,23664,24293,24398,25156,26214,26216,26219,26221,26224,26225,26351,27032]]]]},{"k":"G5200","v":[["green",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25966]]]]},{"k":"G5201","v":[["*",[3,3,[[42,3,3,0,3,[[998,2,2,0,2],[1000,1,1,2,3]]]],[26101,26102,26184]]],["waterpot",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26184]]],["waterpots",[2,2,[[42,2,2,0,2,[[998,2,2,0,2]]]],[26101,26102]]]]},{"k":"G5202","v":[["+",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29786]]]]},{"k":"G5203","v":[["dropsy",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25555]]]]},{"k":"G5204","v":[["*",[79,70,[[39,7,7,0,7,[[931,2,2,0,2],[936,1,1,2,3],[942,2,2,3,5],[945,1,1,5,6],[955,1,1,6,7]]],[40,5,5,7,12,[[957,2,2,7,9],[965,2,2,9,11],[970,1,1,11,12]]],[41,6,6,12,18,[[975,1,1,12,13],[979,1,1,13,14],[980,2,2,14,16],[988,1,1,16,17],[994,1,1,17,18]]],[42,24,20,18,38,[[997,3,3,18,21],[998,3,2,21,23],[999,2,2,23,25],[1000,9,7,25,32],[1001,4,3,32,35],[1003,1,1,35,36],[1009,1,1,36,37],[1015,1,1,37,38]]],[43,7,6,38,44,[[1018,1,1,38,39],[1025,4,3,39,42],[1027,1,1,42,43],[1028,1,1,43,44]]],[48,1,1,44,45,[[1101,1,1,44,45]]],[57,2,2,45,47,[[1141,1,1,45,46],[1142,1,1,46,47]]],[58,1,1,47,48,[[1148,1,1,47,48]]],[59,1,1,48,49,[[1153,1,1,48,49]]],[60,3,2,49,51,[[1158,3,2,49,51]]],[61,4,2,51,53,[[1163,4,2,51,53]]],[65,18,17,53,70,[[1167,1,1,53,54],[1173,1,1,54,55],[1174,3,2,55,57],[1177,1,1,57,58],[1178,1,1,58,59],[1180,2,2,59,61],[1182,3,3,61,64],[1183,2,2,64,66],[1185,1,1,66,67],[1187,1,1,67,68],[1188,2,2,68,70]]]],[23203,23208,23377,23625,23626,23715,24153,24223,24225,24560,24579,24767,25041,25239,25269,25270,25644,25874,26070,26075,26077,26102,26104,26125,26143,26163,26166,26167,26169,26170,26171,26202,26213,26214,26217,26366,26635,26859,26928,27212,27214,27215,27306,27323,29330,30124,30155,30331,30444,30527,30528,30630,30632,30712,30827,30837,30838,30878,30906,30928,30933,30958,30959,30966,30976,30990,31023,31059,31081,31097]]],["+",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24579]]],["water",[63,55,[[39,6,6,0,6,[[931,2,2,0,2],[942,2,2,2,4],[945,1,1,4,5],[955,1,1,5,6]]],[40,3,3,6,9,[[957,2,2,6,8],[970,1,1,8,9]]],[41,6,6,9,15,[[975,1,1,9,10],[979,1,1,10,11],[980,2,2,11,13],[988,1,1,13,14],[994,1,1,14,15]]],[42,24,20,15,35,[[997,3,3,15,18],[998,3,2,18,20],[999,2,2,20,22],[1000,9,7,22,29],[1001,4,3,29,32],[1003,1,1,32,33],[1009,1,1,33,34],[1015,1,1,34,35]]],[43,7,6,35,41,[[1018,1,1,35,36],[1025,4,3,36,39],[1027,1,1,39,40],[1028,1,1,40,41]]],[48,1,1,41,42,[[1101,1,1,41,42]]],[57,2,2,42,44,[[1141,1,1,42,43],[1142,1,1,43,44]]],[58,1,1,44,45,[[1148,1,1,44,45]]],[59,1,1,45,46,[[1153,1,1,45,46]]],[60,3,2,46,48,[[1158,3,2,46,48]]],[61,4,2,48,50,[[1163,4,2,48,50]]],[65,5,5,50,55,[[1178,1,1,50,51],[1182,1,1,51,52],[1187,1,1,52,53],[1188,2,2,53,55]]]],[23203,23208,23625,23626,23715,24153,24223,24225,24767,25041,25239,25269,25270,25644,25874,26070,26075,26077,26102,26104,26125,26143,26163,26166,26167,26169,26170,26171,26202,26213,26214,26217,26366,26635,26859,26928,27212,27214,27215,27306,27323,29330,30124,30155,30331,30444,30527,30528,30630,30632,30906,30966,31059,31081,31097]]],["waters",[15,14,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[65,13,12,2,14,[[1167,1,1,2,3],[1173,1,1,3,4],[1174,3,2,4,6],[1177,1,1,6,7],[1180,2,2,7,9],[1182,2,2,9,11],[1183,2,2,11,13],[1185,1,1,13,14]]]],[23377,24560,30712,30827,30837,30838,30878,30928,30933,30958,30959,30976,30990,31023]]]]},{"k":"G5205","v":[["*",[6,6,[[43,2,2,0,2,[[1031,1,1,0,1],[1045,1,1,1,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]],[58,2,2,3,5,[[1150,2,2,3,5]]],[65,1,1,5,6,[[1177,1,1,5,6]]]],[27431,27901,30051,30361,30372,30878]]],["+",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30878]]],["rain",[5,5,[[43,2,2,0,2,[[1031,1,1,0,1],[1045,1,1,1,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]],[58,2,2,3,5,[[1150,2,2,3,5]]]],[27431,27901,30051,30361,30372]]]]},{"k":"G5206","v":[["*",[5,5,[[44,3,3,0,3,[[1053,2,2,0,2],[1054,1,1,2,3]]],[47,1,1,3,4,[[1094,1,1,3,4]]],[48,1,1,4,5,[[1097,1,1,4,5]]]],[28131,28139,28159,29136,29211]]],["adoption",[3,3,[[44,3,3,0,3,[[1053,2,2,0,2],[1054,1,1,2,3]]]],[28131,28139,28159]]],["children",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29211]]],["sons",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29136]]]]},{"k":"G5207","v":[["*",[382,348,[[39,90,82,0,82,[[929,6,5,0,5],[930,1,1,5,6],[931,1,1,6,7],[932,2,2,7,9],[933,2,2,9,11],[935,1,1,11,12],[936,3,3,12,15],[937,3,3,15,18],[938,2,2,18,20],[939,4,2,20,22],[940,5,5,22,27],[941,5,4,27,31],[942,1,1,31,32],[943,1,1,32,33],[944,4,4,33,37],[945,7,7,37,44],[946,1,1,44,45],[947,1,1,45,46],[948,7,6,46,52],[949,6,5,52,57],[950,3,3,57,60],[951,3,3,60,63],[952,6,5,63,68],[953,2,2,68,70],[954,7,6,70,76],[955,5,5,76,81],[956,1,1,81,82]]],[40,35,33,82,115,[[957,2,2,82,84],[958,3,3,84,87],[959,3,3,87,90],[961,1,1,90,91],[962,1,1,91,92],[964,2,2,92,94],[965,5,5,94,99],[966,6,6,99,105],[968,4,3,105,108],[969,2,2,108,110],[970,5,4,110,114],[971,1,1,114,115]]],[41,77,71,115,186,[[973,7,7,115,122],[974,1,1,122,123],[975,3,3,123,126],[976,4,4,126,130],[977,3,3,130,133],[978,3,3,133,136],[979,2,2,136,138],[980,1,1,138,139],[981,8,8,139,147],[982,4,2,147,149],[983,3,3,149,152],[984,5,4,152,156],[987,8,7,156,163],[988,2,1,163,164],[989,4,4,164,168],[990,4,4,168,172],[991,2,2,172,174],[992,6,5,174,179],[993,2,2,179,181],[994,4,4,181,185],[996,1,1,185,186]]],[42,57,52,186,238,[[997,6,6,186,192],[999,8,7,192,199],[1000,6,6,199,205],[1001,10,8,205,213],[1002,6,6,213,219],[1004,3,3,219,222],[1005,3,3,222,225],[1006,1,1,225,226],[1007,2,2,226,228],[1008,4,3,228,231],[1009,1,1,231,232],[1010,1,1,232,233],[1013,3,2,233,235],[1015,2,2,235,237],[1016,1,1,237,238]]],[43,22,22,238,260,[[1019,1,1,238,239],[1020,1,1,239,240],[1021,1,1,240,241],[1022,1,1,241,242],[1024,6,6,242,248],[1025,1,1,248,249],[1026,2,2,249,251],[1027,1,1,251,252],[1030,4,4,252,256],[1033,1,1,256,257],[1036,1,1,257,258],[1040,2,2,258,260]]],[44,12,12,260,272,[[1046,3,3,260,263],[1050,1,1,263,264],[1053,5,5,264,269],[1054,3,3,269,272]]],[45,2,2,272,274,[[1062,1,1,272,273],[1076,1,1,273,274]]],[46,4,4,274,278,[[1078,1,1,274,275],[1080,2,2,275,277],[1083,1,1,277,278]]],[47,13,9,278,287,[[1091,1,1,278,279],[1092,1,1,279,280],[1093,2,2,280,282],[1094,9,5,282,287]]],[48,4,4,287,291,[[1098,1,1,287,288],[1099,1,1,288,289],[1100,1,1,289,290],[1101,1,1,290,291]]],[50,2,2,291,293,[[1107,1,1,291,292],[1109,1,1,292,293]]],[51,3,2,293,295,[[1111,1,1,293,294],[1115,2,1,294,295]]],[52,1,1,295,296,[[1117,1,1,295,296]]],[57,24,21,296,317,[[1133,4,3,296,299],[1134,2,2,299,301],[1135,1,1,301,302],[1136,1,1,302,303],[1137,2,2,303,305],[1138,1,1,305,306],[1139,3,3,306,309],[1142,1,1,309,310],[1143,3,3,310,313],[1144,6,4,313,317]]],[58,1,1,317,318,[[1147,1,1,317,318]]],[59,1,1,318,319,[[1155,1,1,318,319]]],[60,1,1,319,320,[[1156,1,1,319,320]]],[61,23,18,320,338,[[1159,2,2,320,322],[1160,4,3,322,325],[1161,2,2,325,327],[1162,4,4,327,331],[1163,11,7,331,338]]],[62,2,2,338,340,[[1164,2,2,338,340]]],[65,8,8,340,348,[[1167,1,1,340,341],[1168,2,2,341,343],[1173,1,1,343,344],[1178,1,1,344,345],[1180,1,1,345,346],[1187,2,2,346,348]]]],[23145,23164,23165,23167,23169,23184,23209,23212,23215,23243,23279,23325,23357,23365,23374,23385,23394,23406,23440,23454,23478,23486,23497,23512,23516,23521,23529,23576,23577,23580,23594,23630,23655,23685,23688,23699,23700,23705,23709,23712,23715,23722,23725,23726,23738,23790,23810,23812,23813,23820,23822,23823,23831,23835,23841,23863,23864,23874,23914,23917,23933,23949,23953,23984,23987,23994,23996,24001,24021,24039,24056,24078,24091,24099,24117,24118,24138,24169,24172,24183,24185,24214,24216,24226,24270,24279,24288,24299,24305,24316,24371,24410,24531,24538,24545,24547,24550,24555,24569,24621,24623,24633,24634,24635,24636,24679,24708,24710,24743,24749,24775,24795,24815,24816,24865,24906,24909,24924,24925,24928,24929,24950,24980,25027,25047,25048,25066,25072,25085,25104,25117,25131,25141,25151,25168,25181,25207,25229,25273,25323,25327,25336,25339,25342,25345,25357,25359,25369,25385,25416,25424,25435,25467,25469,25499,25512,25599,25601,25607,25609,25612,25613,25618,25628,25673,25675,25677,25681,25696,25719,25726,25727,25740,25741,25792,25813,25815,25820,25823,25853,25862,25886,25912,25933,25934,25998,26062,26078,26086,26089,26093,26095,26133,26134,26136,26137,26138,26155,26156,26161,26168,26202,26203,26206,26209,26229,26230,26231,26232,26233,26235,26236,26237,26284,26297,26299,26310,26319,26326,26409,26416,26417,26459,26460,26475,26517,26527,26550,26603,26614,26616,26661,26681,26760,26771,26832,26851,26898,26966,27021,27058,27080,27132,27137,27139,27145,27153,27172,27213,27231,27236,27295,27372,27383,27388,27395,27484,27599,27740,27750,27933,27934,27939,28057,28119,28130,28135,28145,28148,28164,28181,28182,28372,28746,28819,28848,28854,28916,29073,29101,29109,29128,29135,29137,29138,29153,29161,29231,29256,29285,29310,29478,29523,29570,29626,29664,29965,29968,29971,29983,29987,30001,30028,30035,30038,30050,30067,30069,30092,30162,30193,30194,30196,30217,30218,30219,30220,30314,30478,30496,30543,30547,30572,30573,30574,30587,30602,30612,30613,30617,30618,30629,30633,30634,30635,30636,30637,30644,30648,30654,30710,30731,30735,30814,30896,30940,31060,31065]]],["+",[3,3,[[41,1,1,0,1,[[978,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]]],[25168,26231,30050]]],["Son",[218,200,[[39,52,48,0,48,[[931,1,1,0,1],[932,1,1,1,2],[936,2,2,2,4],[937,2,2,4,6],[938,1,1,6,7],[939,4,2,7,9],[940,3,3,9,12],[941,2,2,12,14],[942,1,1,14,15],[943,1,1,15,16],[944,4,4,16,20],[945,4,4,20,24],[946,1,1,24,25],[947,1,1,25,26],[948,4,4,26,30],[949,2,2,30,32],[952,6,5,32,37],[953,2,2,37,39],[954,6,5,39,44],[955,3,3,44,47],[956,1,1,47,48]]],[40,25,24,48,72,[[957,2,2,48,50],[958,2,2,50,52],[959,1,1,52,53],[961,1,1,53,54],[964,2,2,54,56],[965,4,4,56,60],[966,4,4,60,64],[968,1,1,64,65],[969,2,2,65,67],[970,5,4,67,71],[971,1,1,71,72]]],[41,39,37,72,109,[[973,2,2,72,74],[975,1,1,74,75],[976,3,3,75,78],[977,1,1,78,79],[978,1,1,79,80],[979,1,1,80,81],[980,1,1,81,82],[981,6,6,82,88],[982,3,1,88,89],[983,1,1,89,90],[984,3,3,90,93],[989,4,4,93,97],[990,4,4,97,101],[991,1,1,101,102],[993,2,2,102,104],[994,4,4,104,108],[996,1,1,108,109]]],[42,42,37,109,146,[[997,4,4,109,113],[999,8,7,113,120],[1001,9,7,120,127],[1002,5,5,127,132],[1004,3,3,132,135],[1005,1,1,135,136],[1006,1,1,136,137],[1007,2,2,137,139],[1008,3,2,139,141],[1009,1,1,141,142],[1010,1,1,142,143],[1013,2,1,143,144],[1015,1,1,144,145],[1016,1,1,145,146]]],[43,4,4,146,150,[[1024,1,1,146,147],[1025,1,1,147,148],[1026,1,1,148,149],[1030,1,1,149,150]]],[44,7,7,150,157,[[1046,3,3,150,153],[1050,1,1,153,154],[1053,3,3,154,157]]],[45,2,2,157,159,[[1062,1,1,157,158],[1076,1,1,158,159]]],[46,1,1,159,160,[[1078,1,1,159,160]]],[47,4,4,160,164,[[1091,1,1,160,161],[1092,1,1,161,162],[1094,2,2,162,164]]],[48,1,1,164,165,[[1100,1,1,164,165]]],[50,1,1,165,166,[[1107,1,1,165,166]]],[51,1,1,166,167,[[1111,1,1,166,167]]],[57,10,9,167,176,[[1133,4,3,167,170],[1136,1,1,170,171],[1137,2,2,171,173],[1139,2,2,173,175],[1142,1,1,175,176]]],[60,1,1,176,177,[[1156,1,1,176,177]]],[61,23,18,177,195,[[1159,2,2,177,179],[1160,4,3,179,182],[1161,2,2,182,184],[1162,4,4,184,188],[1163,11,7,188,195]]],[62,2,2,195,197,[[1164,2,2,195,197]]],[65,3,3,197,200,[[1167,1,1,197,198],[1168,1,1,198,199],[1180,1,1,199,200]]]],[23209,23215,23365,23374,23385,23406,23440,23478,23486,23497,23521,23529,23576,23580,23630,23655,23685,23688,23699,23700,23705,23709,23712,23722,23738,23790,23810,23820,23822,23823,23835,23841,23984,23987,23994,23996,24001,24021,24039,24056,24078,24099,24117,24118,24169,24172,24183,24214,24216,24226,24270,24288,24299,24371,24531,24538,24545,24547,24550,24569,24621,24633,24635,24636,24708,24743,24749,24775,24795,24815,24816,24865,24925,24928,25047,25066,25072,25104,25131,25151,25229,25273,25323,25327,25336,25345,25357,25359,25385,25435,25467,25469,25499,25673,25675,25677,25681,25696,25719,25726,25727,25741,25853,25862,25886,25912,25933,25934,25998,26062,26078,26093,26095,26133,26134,26136,26137,26138,26155,26156,26229,26230,26232,26233,26235,26236,26237,26284,26297,26310,26319,26326,26409,26416,26417,26475,26517,26527,26550,26603,26614,26661,26681,26760,26832,26898,27172,27213,27236,27395,27933,27934,27939,28057,28119,28145,28148,28372,28746,28819,29073,29101,29135,29137,29285,29478,29570,29965,29968,29971,30028,30035,30038,30067,30092,30162,30496,30543,30547,30572,30573,30574,30587,30602,30612,30613,30617,30618,30629,30633,30634,30635,30636,30637,30644,30648,30654,30710,30735,30940]]],["child",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]],[65,1,1,2,3,[[1178,1,1,2,3]]]],[23933,27372,30896]]],["children",[47,43,[[39,13,12,0,12,[[933,2,2,0,2],[936,1,1,2,3],[937,1,1,3,4],[940,1,1,4,5],[941,2,1,5,6],[945,2,2,6,8],[948,1,1,8,9],[951,1,1,9,10],[955,2,2,10,12]]],[40,1,1,12,13,[[958,1,1,12,13]]],[41,8,6,13,19,[[973,1,1,13,14],[977,1,1,14,15],[978,1,1,15,16],[988,2,1,16,17],[992,3,2,17,19]]],[42,2,2,19,21,[[1000,1,1,19,20],[1008,1,1,20,21]]],[43,7,7,21,28,[[1020,1,1,21,22],[1022,1,1,22,23],[1024,2,2,23,25],[1026,1,1,25,26],[1027,1,1,26,27],[1030,1,1,27,28]]],[44,2,2,28,30,[[1054,2,2,28,30]]],[46,2,2,30,32,[[1080,2,2,30,32]]],[47,2,2,32,34,[[1093,2,2,32,34]]],[48,2,2,34,36,[[1098,1,1,34,35],[1101,1,1,35,36]]],[50,1,1,36,37,[[1109,1,1,36,37]]],[51,2,1,37,38,[[1115,2,1,37,38]]],[57,2,2,38,40,[[1143,1,1,38,39],[1144,1,1,39,40]]],[65,3,3,40,43,[[1168,1,1,40,41],[1173,1,1,41,42],[1187,1,1,42,43]]]],[23243,23279,23357,23394,23516,23577,23725,23726,23812,23949,24138,24185,24279,24909,25141,25181,25628,25813,25815,26168,26616,27021,27080,27139,27153,27231,27295,27388,28181,28182,28848,28854,29109,29128,29231,29310,29523,29626,30194,30217,30731,30814,31065]]],["foal",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23831]]],["of",[1,1,[[39,1,1,0,1,[[932,1,1,0,1]]]],[23212]]],["son",[85,77,[[39,19,17,0,17,[[929,6,5,0,5],[930,1,1,5,6],[935,1,1,6,7],[938,1,1,7,8],[940,1,1,8,9],[941,1,1,9,10],[945,1,1,10,11],[949,3,2,11,13],[950,3,3,13,16],[951,1,1,16,17]]],[40,6,5,17,22,[[962,1,1,17,18],[965,1,1,18,19],[966,1,1,19,20],[968,3,2,20,22]]],[41,26,24,22,46,[[973,4,4,22,26],[974,1,1,26,27],[975,2,2,27,29],[976,1,1,29,30],[979,1,1,30,31],[981,2,2,31,33],[982,1,1,33,34],[983,1,1,34,35],[984,2,1,35,36],[987,7,6,36,42],[991,1,1,42,43],[992,3,3,43,46]]],[42,12,12,46,58,[[997,2,2,46,48],[1000,5,5,48,53],[1002,1,1,53,54],[1005,2,2,54,56],[1013,1,1,56,57],[1015,1,1,57,58]]],[43,6,6,58,64,[[1021,1,1,58,59],[1024,1,1,59,60],[1030,1,1,60,61],[1033,1,1,61,62],[1040,2,2,62,64]]],[44,1,1,64,65,[[1054,1,1,64,65]]],[47,5,2,65,67,[[1094,5,2,65,67]]],[52,1,1,67,68,[[1117,1,1,67,68]]],[57,6,6,68,74,[[1134,1,1,68,69],[1135,1,1,69,70],[1143,1,1,70,71],[1144,3,3,71,74]]],[58,1,1,74,75,[[1147,1,1,74,75]]],[59,1,1,75,76,[[1155,1,1,75,76]]],[65,1,1,76,77,[[1187,1,1,76,77]]]],[23145,23164,23165,23167,23169,23184,23325,23454,23512,23594,23715,23863,23864,23874,23914,23917,23953,24410,24555,24634,24679,24710,24906,24924,24929,24950,24980,25027,25048,25085,25207,25339,25342,25369,25416,25512,25601,25607,25609,25612,25613,25618,25740,25792,25820,25823,26086,26089,26161,26202,26203,26206,26209,26299,26459,26460,26771,26851,27058,27137,27383,27484,27740,27750,28164,29138,29161,29664,29983,30001,30196,30217,30218,30219,30314,30478,31060]]],["sons",[24,24,[[39,3,3,0,3,[[948,2,2,0,2],[954,1,1,2,3]]],[40,3,3,3,6,[[959,2,2,3,5],[966,1,1,5,6]]],[41,3,3,6,9,[[977,1,1,6,7],[983,1,1,7,8],[987,1,1,8,9]]],[43,4,4,9,13,[[1019,1,1,9,10],[1024,2,2,10,12],[1036,1,1,12,13]]],[44,2,2,13,15,[[1053,2,2,13,15]]],[46,1,1,15,16,[[1083,1,1,15,16]]],[47,2,2,16,18,[[1094,2,2,16,18]]],[48,1,1,18,19,[[1099,1,1,18,19]]],[57,5,5,19,24,[[1134,1,1,19,20],[1139,1,1,20,21],[1143,1,1,21,22],[1144,2,2,22,24]]]],[23812,23813,24091,24305,24316,24623,25117,25424,25599,26966,27132,27145,27599,28130,28135,28916,29137,29153,29256,29987,30069,30193,30219,30220]]]]},{"k":"G5208","v":[["matter",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30324]]]]},{"k":"G5209","v":[["*",[435,386,[[39,38,32,0,32,[[931,2,1,0,1],[932,1,1,1,2],[933,6,3,2,5],[934,2,2,5,7],[935,3,3,7,10],[938,8,7,10,17],[939,2,2,17,19],[940,1,1,19,20],[949,3,3,20,23],[951,2,2,23,25],[952,3,2,25,27],[953,1,1,27,28],[954,2,2,28,30],[956,2,2,30,32]]],[40,14,13,32,45,[[957,3,2,32,34],[962,1,1,34,35],[965,2,2,35,37],[967,1,1,37,38],[969,4,4,38,42],[970,2,2,42,44],[972,1,1,44,45]]],[41,39,37,45,82,[[975,2,1,45,46],[978,8,7,46,53],[981,2,2,53,55],[982,8,8,55,63],[983,1,1,63,64],[984,4,4,64,68],[985,3,3,68,71],[988,2,2,71,73],[991,1,1,73,74],[992,1,1,74,75],[993,2,2,75,77],[994,2,2,77,79],[995,1,1,79,80],[996,2,2,80,82]]],[42,36,29,82,111,[[999,1,1,82,83],[1000,1,1,83,84],[1001,1,1,84,85],[1002,2,2,85,87],[1003,1,1,87,88],[1004,2,2,88,90],[1007,1,1,90,91],[1008,2,2,91,93],[1009,1,1,93,94],[1010,6,4,94,98],[1011,10,7,98,105],[1012,7,5,105,110],[1016,1,1,110,111]]],[43,27,27,111,138,[[1018,1,1,111,112],[1019,2,2,112,114],[1020,2,2,114,116],[1024,1,1,116,117],[1030,2,2,117,119],[1031,1,1,119,120],[1032,2,2,120,122],[1034,2,2,122,124],[1035,2,2,124,126],[1036,2,2,126,128],[1037,4,4,128,132],[1039,1,1,132,133],[1040,1,1,133,134],[1041,1,1,134,135],[1044,2,2,135,137],[1045,1,1,137,138]]],[44,32,26,138,164,[[1046,5,3,138,141],[1047,1,1,141,142],[1052,1,1,142,143],[1055,2,1,143,144],[1056,2,2,144,146],[1057,3,3,146,149],[1060,10,8,149,157],[1061,8,7,157,164]]],[45,41,36,164,200,[[1062,3,3,164,167],[1063,2,2,167,169],[1064,1,1,169,170],[1065,8,8,170,178],[1068,2,2,178,180],[1071,6,4,180,184],[1072,4,4,184,188],[1073,1,1,188,189],[1075,4,3,189,192],[1077,10,8,192,200]]],[46,59,52,200,252,[[1078,5,5,200,205],[1079,8,8,205,213],[1080,1,1,213,214],[1081,1,1,214,215],[1083,3,3,215,218],[1084,6,5,218,223],[1085,5,5,223,228],[1086,4,4,228,232],[1087,4,3,232,235],[1088,7,5,235,240],[1089,10,7,240,247],[1090,5,5,247,252]]],[47,19,16,252,268,[[1091,3,3,252,255],[1092,1,1,255,256],[1093,1,1,256,257],[1094,6,4,257,261],[1095,6,5,261,266],[1096,2,2,266,268]]],[48,10,10,268,278,[[1097,2,2,268,270],[1098,1,1,270,271],[1099,1,1,271,272],[1100,3,3,272,275],[1101,1,1,275,276],[1102,2,2,276,278]]],[49,12,11,278,289,[[1103,8,7,278,285],[1104,2,2,285,287],[1106,2,2,287,289]]],[50,17,16,289,305,[[1107,5,5,289,294],[1108,6,6,294,300],[1110,6,5,300,305]]],[51,33,27,305,332,[[1111,4,3,305,308],[1112,7,6,308,314],[1113,9,7,314,321],[1114,5,4,321,325],[1115,8,7,325,332]]],[52,16,16,332,348,[[1116,4,4,332,336],[1117,7,7,336,343],[1118,5,5,343,348]]],[57,6,6,348,354,[[1137,1,1,348,349],[1141,1,1,349,350],[1145,4,4,350,354]]],[58,5,5,354,359,[[1147,2,2,354,356],[1149,3,3,356,359]]],[59,13,12,359,371,[[1151,5,5,359,364],[1152,1,1,364,365],[1153,2,2,365,367],[1154,2,1,367,368],[1155,3,3,368,371]]],[60,5,5,371,376,[[1156,3,3,371,374],[1157,1,1,374,375],[1158,1,1,375,376]]],[61,6,4,376,380,[[1160,4,2,376,378],[1161,2,2,378,380]]],[62,2,2,380,382,[[1164,2,2,380,382]]],[64,3,2,382,384,[[1166,3,2,382,384]]],[65,2,2,384,386,[[1168,1,1,384,385],[1178,1,1,385,386]]]],[23203,23228,23245,23278,23280,23290,23312,23322,23331,23339,23430,23431,23433,23434,23436,23440,23457,23487,23488,23517,23850,23857,23858,23952,23953,23961,23966,24020,24086,24109,24202,24209,24223,24232,24418,24557,24579,24669,24722,24726,24728,24753,24782,24803,24880,25041,25155,25168,25172,25173,25174,25178,25179,25306,25342,25366,25369,25371,25372,25373,25374,25379,25382,25425,25470,25471,25473,25487,25543,25545,25546,25629,25646,25762,25782,25838,25860,25895,25899,25950,26035,26040,26127,26194,26252,26318,26327,26335,26413,26417,26538,26610,26615,26664,26671,26686,26694,26696,26708,26711,26714,26715,26717,26718,26719,26728,26733,26739,26748,26753,26888,26931,26971,26978,27018,27022,27159,27394,27402,27429,27466,27467,27545,27551,27572,27578,27598,27621,27646,27654,27655,27658,27705,27749,27791,27877,27889,27919,27940,27941,27943,27986,28095,28207,28234,28237,28246,28247,28259,28316,28318,28325,28326,28327,28332,28333,28335,28352,28353,28355,28357,28358,28359,28361,28370,28371,28373,28395,28397,28412,28439,28447,28448,28449,28450,28451,28452,28454,28492,28519,28568,28580,28587,28594,28602,28603,28614,28622,28635,28683,28684,28714,28781,28782,28783,28786,28788,28791,28795,28796,28808,28812,28815,28816,28818,28825,28826,28827,28828,28829,28831,28832,28834,28842,28874,28899,28909,28915,28920,28924,28927,28928,28931,28938,28941,28949,28954,28955,28960,28961,28964,28970,28972,28980,28985,28991,28995,28998,29000,29009,29036,29037,29038,29039,29040,29042,29043,29044,29046,29047,29050,29056,29063,29064,29066,29086,29103,29142,29148,29149,29151,29164,29169,29170,29172,29174,29200,29201,29221,29224,29230,29253,29273,29289,29294,29310,29348,29359,29368,29369,29371,29373,29385,29387,29388,29416,29417,29463,29464,29471,29475,29486,29487,29490,29495,29498,29502,29507,29510,29512,29548,29550,29552,29554,29556,29565,29567,29569,29571,29572,29579,29581,29582,29588,29592,29594,29595,29596,29599,29601,29602,29604,29606,29613,29616,29625,29633,29635,29639,29644,29645,29648,29654,29655,29659,29660,29662,29663,29664,29666,29674,29675,29678,29679,29681,29682,29684,29688,30042,30125,30262,30263,30264,30265,30299,30300,30339,30347,30352,30384,30386,30389,30394,30399,30408,30437,30439,30460,30471,30475,30478,30491,30492,30494,30503,30533,30576,30577,30586,30592,30655,30657,30677,30696,30741,30903]]],["+",[51,50,[[39,5,5,0,5,[[938,3,3,0,3],[939,1,1,3,4],[952,1,1,4,5]]],[40,2,2,5,7,[[965,1,1,5,6],[969,1,1,6,7]]],[41,2,2,7,9,[[982,2,2,7,9]]],[42,6,6,9,15,[[1004,2,2,9,11],[1007,1,1,11,12],[1008,1,1,12,13],[1010,1,1,13,14],[1011,1,1,14,15]]],[43,5,5,15,20,[[1024,1,1,15,16],[1030,1,1,16,17],[1034,1,1,17,18],[1036,1,1,18,19],[1041,1,1,19,20]]],[44,4,4,20,24,[[1046,1,1,20,21],[1055,1,1,21,22],[1056,1,1,22,23],[1060,1,1,23,24]]],[45,3,3,24,27,[[1062,1,1,24,25],[1065,2,2,25,27]]],[46,9,8,27,35,[[1078,1,1,27,28],[1079,2,2,28,30],[1081,1,1,30,31],[1084,2,1,31,32],[1085,1,1,32,33],[1088,1,1,33,34],[1090,1,1,34,35]]],[47,1,1,35,36,[[1094,1,1,35,36]]],[49,1,1,36,37,[[1106,1,1,36,37]]],[50,1,1,37,38,[[1108,1,1,37,38]]],[51,4,4,38,42,[[1111,1,1,38,39],[1112,1,1,39,40],[1113,2,2,40,42]]],[52,1,1,42,43,[[1116,1,1,42,43]]],[57,1,1,43,44,[[1145,1,1,43,44]]],[58,1,1,44,45,[[1149,1,1,44,45]]],[59,2,2,45,47,[[1154,1,1,45,46],[1155,1,1,46,47]]],[60,2,2,47,49,[[1156,2,2,47,49]]],[64,1,1,49,50,[[1166,1,1,49,50]]]],[23433,23434,23436,23487,23966,24579,24726,25366,25369,26413,26417,26538,26610,26694,26714,27159,27394,27551,27621,27791,27943,28207,28237,28318,28370,28439,28450,28808,28826,28834,28874,28924,28941,29009,29050,29142,29464,29512,29565,29581,29599,29602,29660,30262,30347,30460,30475,30491,30492,30677]]],["Ye",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26127]]],["ye",[37,37,[[39,1,1,0,1,[[934,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[44,5,5,2,7,[[1046,1,1,2,3],[1052,1,1,3,4],[1056,1,1,4,5],[1057,1,1,5,6],[1060,1,1,6,7]]],[45,4,4,7,11,[[1071,3,3,7,10],[1075,1,1,10,11]]],[46,3,3,11,14,[[1079,1,1,11,12],[1083,1,1,12,13],[1084,1,1,13,14]]],[48,4,4,14,18,[[1097,1,1,14,15],[1100,2,2,15,17],[1102,1,1,17,18]]],[49,3,3,18,21,[[1103,3,3,18,21]]],[50,3,3,21,24,[[1107,1,1,21,22],[1108,1,1,22,23],[1110,1,1,23,24]]],[51,4,4,24,28,[[1111,1,1,24,25],[1112,1,1,25,26],[1114,2,2,26,28]]],[52,3,3,28,31,[[1116,1,1,28,29],[1117,1,1,29,30],[1118,1,1,30,31]]],[58,3,3,31,34,[[1147,1,1,31,32],[1149,2,2,32,34]]],[60,2,2,34,36,[[1156,1,1,34,35],[1158,1,1,35,36]]],[64,1,1,36,37,[[1166,1,1,36,37]]]],[23290,27545,27941,28095,28234,28247,28316,28568,28580,28587,28683,28831,28899,28927,29224,29289,29294,29348,29368,29371,29373,29475,29495,29548,29567,29582,29604,29606,29654,29663,29684,30300,30339,30352,30494,30533,30677]]],["you",[341,311,[[39,32,28,0,28,[[931,2,1,0,1],[932,1,1,1,2],[933,6,3,2,5],[934,1,1,5,6],[935,3,3,6,9],[938,5,5,9,14],[939,1,1,14,15],[940,1,1,15,16],[949,3,3,16,19],[951,2,2,19,21],[952,2,2,21,23],[953,1,1,23,24],[954,2,2,24,26],[956,2,2,26,28]]],[40,12,11,28,39,[[957,3,2,28,30],[962,1,1,30,31],[965,1,1,31,32],[967,1,1,32,33],[969,3,3,33,36],[970,2,2,36,38],[972,1,1,38,39]]],[41,37,35,39,74,[[975,2,1,39,40],[978,8,7,40,47],[981,2,2,47,49],[982,6,6,49,55],[983,1,1,55,56],[984,4,4,56,60],[985,3,3,60,63],[988,2,2,63,65],[991,1,1,65,66],[992,1,1,66,67],[993,2,2,67,69],[994,2,2,69,71],[995,1,1,71,72],[996,2,2,72,74]]],[42,29,24,74,98,[[1000,1,1,74,75],[1001,1,1,75,76],[1002,2,2,76,78],[1003,1,1,78,79],[1008,1,1,79,80],[1009,1,1,80,81],[1010,5,4,81,85],[1011,9,7,85,92],[1012,7,5,92,97],[1016,1,1,97,98]]],[43,20,20,98,118,[[1018,1,1,98,99],[1019,2,2,99,101],[1020,2,2,101,103],[1030,1,1,103,104],[1031,1,1,104,105],[1032,2,2,105,107],[1035,1,1,107,108],[1036,1,1,108,109],[1037,4,4,109,113],[1039,1,1,113,114],[1040,1,1,114,115],[1044,2,2,115,117],[1045,1,1,117,118]]],[44,23,21,118,139,[[1046,3,3,118,121],[1047,1,1,121,122],[1055,1,1,122,123],[1057,2,2,123,125],[1060,8,7,125,132],[1061,8,7,132,139]]],[45,34,30,139,169,[[1062,2,2,139,141],[1063,2,2,141,143],[1064,1,1,143,144],[1065,6,6,144,150],[1068,2,2,150,152],[1071,3,2,152,154],[1072,4,4,154,158],[1073,1,1,158,159],[1075,3,2,159,161],[1077,10,8,161,169]]],[46,45,40,169,209,[[1078,3,3,169,172],[1079,5,5,172,177],[1080,1,1,177,178],[1083,2,2,178,180],[1084,3,3,180,183],[1085,4,4,183,187],[1086,4,4,187,191],[1087,4,3,191,194],[1088,6,5,194,199],[1089,10,7,199,206],[1090,3,3,206,209]]],[47,18,16,209,225,[[1091,3,3,209,212],[1092,1,1,212,213],[1093,1,1,213,214],[1094,5,4,214,218],[1095,6,5,218,223],[1096,2,2,223,225]]],[48,4,4,225,229,[[1098,1,1,225,226],[1100,1,1,226,227],[1101,1,1,227,228],[1102,1,1,228,229]]],[49,8,8,229,237,[[1103,5,5,229,234],[1104,2,2,234,236],[1106,1,1,236,237]]],[50,13,12,237,249,[[1107,4,4,237,241],[1108,4,4,241,245],[1110,5,4,245,249]]],[51,25,23,249,272,[[1111,2,2,249,251],[1112,5,5,251,256],[1113,7,6,256,262],[1114,3,3,262,265],[1115,8,7,265,272]]],[52,12,12,272,284,[[1116,2,2,272,274],[1117,6,6,274,280],[1118,4,4,280,284]]],[57,5,5,284,289,[[1137,1,1,284,285],[1141,1,1,285,286],[1145,3,3,286,289]]],[58,1,1,289,290,[[1147,1,1,289,290]]],[59,11,11,290,301,[[1151,5,5,290,295],[1152,1,1,295,296],[1153,2,2,296,298],[1154,1,1,298,299],[1155,2,2,299,301]]],[60,1,1,301,302,[[1157,1,1,301,302]]],[61,6,4,302,306,[[1160,4,2,302,304],[1161,2,2,304,306]]],[62,2,2,306,308,[[1164,2,2,306,308]]],[64,1,1,308,309,[[1166,1,1,308,309]]],[65,2,2,309,311,[[1168,1,1,309,310],[1178,1,1,310,311]]]],[23203,23228,23245,23278,23280,23312,23322,23331,23339,23430,23431,23434,23440,23457,23488,23517,23850,23857,23858,23952,23953,23961,23966,24020,24086,24109,24202,24209,24223,24232,24418,24557,24669,24722,24728,24753,24782,24803,24880,25041,25155,25168,25172,25173,25174,25178,25179,25306,25342,25371,25372,25373,25374,25379,25382,25425,25470,25471,25473,25487,25543,25545,25546,25629,25646,25762,25782,25838,25860,25895,25899,25950,26035,26040,26194,26252,26318,26327,26335,26615,26664,26671,26686,26694,26696,26708,26711,26714,26715,26717,26718,26719,26728,26733,26739,26748,26753,26888,26931,26971,26978,27018,27022,27402,27429,27466,27467,27578,27598,27646,27654,27655,27658,27705,27749,27877,27889,27919,27940,27941,27943,27986,28207,28246,28259,28316,28325,28326,28327,28332,28333,28335,28352,28353,28355,28357,28358,28359,28361,28371,28373,28395,28397,28412,28447,28448,28449,28451,28452,28454,28492,28519,28580,28594,28602,28603,28614,28622,28635,28684,28714,28781,28782,28783,28786,28788,28791,28795,28796,28815,28816,28818,28825,28827,28828,28829,28832,28842,28909,28915,28920,28928,28931,28938,28949,28954,28955,28960,28961,28964,28970,28972,28980,28985,28991,28995,28998,29000,29009,29036,29037,29038,29039,29040,29042,29043,29044,29047,29056,29063,29064,29066,29086,29103,29142,29148,29149,29151,29164,29169,29170,29172,29174,29200,29201,29230,29273,29310,29359,29368,29369,29385,29387,29388,29416,29417,29463,29471,29486,29487,29490,29498,29502,29507,29510,29550,29552,29554,29556,29565,29569,29571,29572,29579,29582,29588,29592,29594,29595,29596,29601,29602,29604,29613,29616,29625,29633,29635,29639,29644,29645,29648,29655,29659,29662,29664,29666,29674,29675,29678,29679,29681,29682,29688,30042,30125,30263,30264,30265,30299,30384,30386,30389,30394,30399,30408,30437,30439,30460,30471,30478,30503,30576,30577,30586,30592,30655,30657,30696,30741,30903]]],["your",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]]],[27572,29221]]],["youward",[3,3,[[46,2,2,0,2,[[1078,1,1,0,1],[1090,1,1,1,2]]],[48,1,1,2,3,[[1099,1,1,2,3]]]],[28812,29046,29253]]]]},{"k":"G5210","v":[["*",[241,227,[[39,32,30,0,30,[[933,3,3,0,3],[934,2,2,3,5],[935,2,2,5,7],[937,1,1,7,8],[938,2,2,8,10],[941,1,1,10,11],[942,1,1,11,12],[943,3,3,12,15],[944,1,1,15,16],[947,2,1,16,17],[948,2,2,17,19],[949,2,2,19,21],[951,5,4,21,25],[952,2,2,25,27],[954,1,1,27,28],[955,1,1,28,29],[956,1,1,29,30]]],[40,11,11,30,41,[[962,2,2,30,32],[963,2,2,32,34],[964,1,1,34,35],[967,2,2,35,37],[968,1,1,37,38],[969,3,3,38,41]]],[41,22,22,41,63,[[978,1,1,41,42],[981,4,4,42,46],[982,1,1,46,47],[983,3,3,47,50],[984,4,4,50,54],[988,1,1,54,55],[989,1,1,55,56],[991,1,1,56,57],[993,1,1,57,58],[994,3,3,58,61],[996,2,2,61,63]]],[42,68,62,63,125,[[997,1,1,63,64],[999,1,1,64,65],[1000,6,5,65,70],[1001,8,8,70,78],[1002,1,1,78,79],[1003,5,5,79,84],[1004,14,13,84,97],[1005,3,3,97,100],[1006,2,2,100,102],[1007,1,1,102,103],[1009,6,6,103,109],[1010,6,4,109,113],[1011,7,6,113,119],[1012,4,3,119,122],[1014,1,1,122,123],[1015,2,2,123,125]]],[43,26,25,125,150,[[1018,1,1,125,126],[1019,3,3,126,129],[1020,3,3,129,132],[1021,2,2,132,134],[1022,1,1,134,135],[1024,5,4,135,139],[1025,1,1,139,140],[1027,2,2,140,142],[1028,1,1,142,143],[1032,1,1,143,144],[1036,1,1,144,145],[1037,2,2,145,147],[1039,1,1,147,148],[1040,1,1,148,149],[1044,1,1,149,150]]],[44,7,7,150,157,[[1046,1,1,150,151],[1051,1,1,151,152],[1052,1,1,152,153],[1053,1,1,153,154],[1054,1,1,154,155],[1056,1,1,155,156],[1061,1,1,156,157]]],[45,18,16,157,173,[[1062,1,1,157,158],[1064,2,2,158,160],[1065,3,1,160,161],[1066,2,2,161,163],[1067,1,1,163,164],[1070,2,2,164,166],[1071,1,1,166,167],[1073,1,1,167,168],[1075,2,2,168,170],[1077,3,3,170,173]]],[46,11,11,173,184,[[1078,1,1,173,174],[1080,1,1,174,175],[1083,3,3,175,178],[1085,1,1,178,179],[1086,1,1,179,180],[1088,1,1,180,181],[1089,1,1,181,182],[1090,2,2,182,184]]],[47,5,5,184,189,[[1093,2,2,184,186],[1094,1,1,186,187],[1095,1,1,187,188],[1096,1,1,188,189]]],[48,7,7,189,196,[[1097,1,1,189,190],[1098,3,3,190,193],[1100,1,1,193,194],[1101,1,1,194,195],[1102,1,1,195,196]]],[49,3,2,196,198,[[1104,1,1,196,197],[1106,2,1,197,198]]],[50,6,6,198,204,[[1109,4,4,198,202],[1110,2,2,202,204]]],[51,10,9,204,213,[[1111,1,1,204,205],[1112,5,4,205,209],[1113,1,1,209,210],[1114,1,1,210,211],[1115,2,2,211,213]]],[52,2,2,213,215,[[1116,1,1,213,214],[1118,1,1,214,215]]],[58,2,2,215,217,[[1147,1,1,215,216],[1150,1,1,216,217]]],[59,2,2,217,219,[[1152,1,1,217,218],[1154,1,1,218,219]]],[60,1,1,219,220,[[1158,1,1,219,220]]],[61,6,5,220,225,[[1159,1,1,220,221],[1160,4,3,221,224],[1162,1,1,224,225]]],[64,2,2,225,227,[[1166,2,2,225,227]]]],[23247,23248,23282,23291,23308,23327,23328,23383,23437,23448,23557,23613,23636,23638,23649,23687,23790,23796,23799,23839,23858,23926,23931,23946,23950,23990,24001,24085,24153,24200,24438,24444,24474,24481,24529,24657,24666,24700,24728,24740,24746,25177,25314,25321,25345,25356,25387,25418,25444,25453,25483,25488,25495,25499,25635,25661,25777,25857,25890,25892,25934,26039,26040,26070,26148,26176,26178,26188,26191,26194,26230,26243,26244,26245,26248,26249,26254,26255,26324,26336,26356,26362,26364,26375,26395,26396,26402,26403,26404,26412,26419,26422,26425,26427,26428,26430,26435,26459,26467,26470,26507,26517,26572,26640,26643,26644,26645,26663,26664,26671,26685,26687,26688,26702,26703,26704,26713,26715,26726,26746,26748,26753,26816,26831,26860,26928,26964,26982,26985,27009,27010,27021,27029,27032,27089,27120,27142,27167,27168,27200,27287,27296,27323,27449,27600,27644,27651,27707,27749,27886,27936,28079,28095,28125,28181,28239,28353,28393,28427,28433,28443,28456,28466,28475,28541,28542,28582,28661,28687,28690,28777,28782,28792,28814,28843,28911,28914,28916,28941,28960,28996,29033,29050,29052,29130,29131,29143,29175,29189,29219,29240,29242,29251,29292,29337,29358,29409,29457,29521,29524,29525,29530,29543,29558,29566,29580,29584,29589,29590,29598,29612,29625,29626,29661,29691,30299,30362,30408,30447,30539,30543,30570,30574,30577,30607,30689,30692]]],["+",[7,7,[[39,2,2,0,2,[[934,1,1,0,1],[951,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,1,1,3,4,[[984,1,1,3,4]]],[42,1,1,4,5,[[1003,1,1,4,5]]],[48,1,1,5,6,[[1101,1,1,5,6]]],[58,1,1,6,7,[[1150,1,1,6,7]]]],[23308,23950,24740,25483,26336,29337,30362]]],["Let",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25345]]],["Ye",[25,25,[[39,2,2,0,2,[[933,2,2,0,2]]],[41,3,3,2,5,[[988,1,1,2,3],[994,2,2,3,5]]],[42,11,11,5,16,[[999,1,1,5,6],[1000,1,1,6,7],[1001,1,1,7,8],[1004,4,4,8,12],[1007,1,1,12,13],[1009,1,1,13,14],[1011,2,2,14,16]]],[43,3,3,16,19,[[1020,1,1,16,17],[1027,1,1,17,18],[1037,1,1,18,19]]],[44,1,1,19,20,[[1054,1,1,19,20]]],[46,1,1,20,21,[[1080,1,1,20,21]]],[51,2,2,21,23,[[1112,1,1,21,22],[1115,1,1,22,23]]],[60,1,1,23,24,[[1158,1,1,23,24]]],[61,1,1,24,25,[[1162,1,1,24,25]]]],[23247,23248,25635,25892,25934,26148,26178,26243,26396,26404,26422,26425,26572,26643,26713,26715,27021,27287,27644,28181,28843,29580,29626,30539,30607]]],["be",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28960]]],["ye",[205,193,[[39,28,26,0,26,[[933,1,1,0,1],[934,1,1,1,2],[935,2,2,2,4],[937,1,1,4,5],[938,2,2,5,7],[941,1,1,7,8],[942,1,1,8,9],[943,3,3,9,12],[944,1,1,12,13],[947,2,1,13,14],[948,2,2,14,16],[949,2,2,16,18],[951,4,3,18,21],[952,2,2,21,23],[954,1,1,23,24],[955,1,1,24,25],[956,1,1,25,26]]],[40,10,10,26,36,[[962,2,2,26,28],[963,2,2,28,30],[964,1,1,30,31],[967,2,2,31,33],[968,1,1,33,34],[969,2,2,34,36]]],[41,16,16,36,52,[[978,1,1,36,37],[981,3,3,37,40],[982,1,1,40,41],[983,3,3,41,44],[984,2,2,44,46],[989,1,1,46,47],[991,1,1,47,48],[993,1,1,48,49],[994,1,1,49,50],[996,2,2,50,52]]],[42,56,52,52,104,[[997,1,1,52,53],[1000,5,4,53,57],[1001,7,7,57,64],[1002,1,1,64,65],[1003,4,4,65,69],[1004,10,10,69,79],[1005,3,3,79,82],[1006,2,2,82,84],[1009,5,5,84,89],[1010,6,4,89,93],[1011,5,5,93,98],[1012,4,3,98,101],[1014,1,1,101,102],[1015,2,2,102,104]]],[43,23,22,104,126,[[1018,1,1,104,105],[1019,3,3,105,108],[1020,2,2,108,110],[1021,2,2,110,112],[1022,1,1,112,113],[1024,5,4,113,117],[1025,1,1,117,118],[1027,1,1,118,119],[1028,1,1,119,120],[1032,1,1,120,121],[1036,1,1,121,122],[1037,1,1,122,123],[1039,1,1,123,124],[1040,1,1,124,125],[1044,1,1,125,126]]],[44,6,6,126,132,[[1046,1,1,126,127],[1051,1,1,127,128],[1052,1,1,128,129],[1053,1,1,129,130],[1056,1,1,130,131],[1061,1,1,131,132]]],[45,18,16,132,148,[[1062,1,1,132,133],[1064,2,2,133,135],[1065,3,1,135,136],[1066,2,2,136,138],[1067,1,1,138,139],[1070,2,2,139,141],[1071,1,1,141,142],[1073,1,1,142,143],[1075,2,2,143,145],[1077,3,3,145,148]]],[46,9,9,148,157,[[1078,1,1,148,149],[1083,3,3,149,152],[1085,1,1,152,153],[1088,1,1,153,154],[1089,1,1,154,155],[1090,2,2,155,157]]],[47,5,5,157,162,[[1093,2,2,157,159],[1094,1,1,159,160],[1095,1,1,160,161],[1096,1,1,161,162]]],[48,6,6,162,168,[[1097,1,1,162,163],[1098,3,3,163,166],[1100,1,1,166,167],[1102,1,1,167,168]]],[49,3,2,168,170,[[1104,1,1,168,169],[1106,2,1,169,170]]],[50,6,6,170,176,[[1109,4,4,170,174],[1110,2,2,174,176]]],[51,8,7,176,183,[[1111,1,1,176,177],[1112,4,3,177,180],[1113,1,1,180,181],[1114,1,1,181,182],[1115,1,1,182,183]]],[52,2,2,183,185,[[1116,1,1,183,184],[1118,1,1,184,185]]],[58,1,1,185,186,[[1147,1,1,185,186]]],[59,1,1,186,187,[[1152,1,1,186,187]]],[61,5,4,187,191,[[1159,1,1,187,188],[1160,4,3,188,191]]],[64,2,2,191,193,[[1166,2,2,191,193]]]],[23282,23291,23327,23328,23383,23437,23448,23557,23613,23636,23638,23649,23687,23790,23796,23799,23839,23858,23926,23931,23946,23990,24001,24085,24153,24200,24438,24444,24474,24481,24529,24657,24666,24700,24728,24746,25177,25314,25321,25356,25387,25418,25444,25453,25488,25499,25661,25777,25857,25890,26039,26040,26070,26176,26188,26191,26194,26230,26244,26245,26248,26249,26254,26255,26324,26356,26362,26364,26375,26395,26402,26403,26404,26412,26419,26427,26428,26430,26435,26459,26467,26470,26507,26517,26640,26644,26645,26663,26664,26671,26685,26687,26688,26702,26703,26704,26715,26726,26746,26748,26753,26816,26831,26860,26928,26964,26982,26985,27009,27010,27029,27032,27089,27120,27142,27167,27168,27200,27296,27323,27449,27600,27651,27707,27749,27886,27936,28079,28095,28125,28239,28353,28393,28427,28433,28443,28456,28466,28475,28541,28542,28582,28661,28687,28690,28777,28782,28792,28814,28911,28914,28916,28941,28996,29033,29050,29052,29130,29131,29143,29175,29189,29219,29240,29242,29251,29292,29358,29409,29457,29521,29524,29525,29530,29543,29558,29566,29584,29589,29590,29598,29612,29625,29661,29691,30299,30408,30543,30570,30574,30577,30689,30692]]],["yourselves",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[25495,30447]]]]},{"k":"G5211","v":[["Hymenaeus",[2,2,[[53,1,1,0,1,[[1119,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[29716,29844]]]]},{"k":"G5212","v":[["*",[9,9,[[41,2,2,0,2,[[978,1,1,0,1],[988,1,1,1,2]]],[42,3,3,2,5,[[1003,1,1,2,3],[1004,1,1,3,4],[1011,1,1,4,5]]],[43,1,1,5,6,[[1044,1,1,5,6]]],[44,1,1,6,7,[[1056,1,1,6,7]]],[46,1,1,7,8,[[1085,1,1,7,8]]],[47,1,1,8,9,[[1096,1,1,8,9]]]],[25166,25632,26334,26398,26719,27889,28240,28940,29201]]],["own",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25632]]],["your",[6,6,[[42,2,2,0,2,[[1003,1,1,0,1],[1004,1,1,1,2]]],[43,1,1,2,3,[[1044,1,1,2,3]]],[44,1,1,3,4,[[1056,1,1,3,4]]],[46,1,1,4,5,[[1085,1,1,4,5]]],[47,1,1,5,6,[[1096,1,1,5,6]]]],[26334,26398,27889,28240,28940,29201]]],["yours",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[42,1,1,1,2,[[1011,1,1,1,2]]]],[25166,26719]]]]},{"k":"G5213","v":[["*",[623,568,[[39,109,104,0,104,[[931,2,2,0,2],[933,8,8,2,10],[934,9,9,10,19],[935,4,3,19,22],[936,2,2,22,24],[937,1,1,24,25],[938,6,6,25,31],[939,8,6,31,37],[940,3,3,37,40],[941,2,2,40,42],[944,2,2,42,44],[945,3,2,44,46],[946,7,7,46,53],[947,5,5,53,58],[948,5,4,58,62],[949,7,7,62,69],[950,2,2,69,71],[951,12,12,71,83],[952,6,6,83,89],[953,5,5,89,94],[954,6,6,94,100],[955,2,2,100,102],[956,2,2,102,104]]],[40,37,34,104,138,[[959,1,1,104,105],[960,3,2,105,107],[962,1,1,107,108],[964,1,1,108,109],[965,3,3,109,112],[966,7,6,112,118],[967,7,6,118,124],[968,1,1,124,125],[969,5,5,125,130],[970,6,6,130,136],[971,1,1,136,137],[972,1,1,137,138]]],[41,101,93,138,231,[[974,3,3,138,141],[975,3,3,141,144],[976,2,2,144,146],[978,13,11,146,157],[979,6,5,157,162],[980,1,1,162,163],[981,2,2,163,165],[982,8,8,165,173],[983,12,10,173,183],[984,11,10,183,193],[985,7,6,193,199],[986,1,1,199,200],[987,2,2,200,202],[988,3,3,202,205],[989,4,4,205,209],[990,4,4,209,213],[991,2,2,213,215],[992,1,1,215,216],[993,5,4,216,220],[994,8,8,220,228],[996,3,3,228,231]]],[42,103,84,231,315,[[997,1,1,231,232],[998,1,1,232,233],[999,2,1,233,234],[1000,1,1,234,235],[1001,4,4,235,239],[1002,10,8,239,247],[1003,2,2,247,249],[1004,7,7,249,256],[1005,1,1,256,257],[1006,5,5,257,262],[1007,1,1,262,263],[1008,1,1,263,264],[1009,9,8,264,272],[1010,17,12,272,284],[1011,13,11,284,295],[1012,20,14,295,309],[1014,4,2,309,311],[1015,1,1,311,312],[1016,3,3,312,315]]],[43,32,30,315,345,[[1019,2,2,315,317],[1020,4,4,317,321],[1021,1,1,321,322],[1022,3,3,322,325],[1024,1,1,325,326],[1030,8,6,326,332],[1031,1,1,332,333],[1032,1,1,333,334],[1034,2,2,334,336],[1037,5,5,336,341],[1039,1,1,341,342],[1042,1,1,342,343],[1043,1,1,343,344],[1045,1,1,344,345]]],[44,16,15,345,360,[[1046,5,5,345,350],[1053,4,3,350,353],[1056,1,1,353,354],[1057,1,1,354,355],[1060,3,3,355,358],[1061,2,2,358,360]]],[45,46,43,360,403,[[1062,5,5,360,365],[1063,2,2,365,367],[1064,4,4,367,371],[1065,2,2,371,373],[1066,3,3,373,376],[1067,5,4,376,380],[1068,1,1,380,381],[1070,2,2,381,383],[1071,2,2,383,385],[1072,8,7,385,392],[1073,2,2,392,394],[1075,3,3,394,397],[1076,7,6,397,403]]],[46,31,30,403,433,[[1078,4,4,403,407],[1079,2,2,407,409],[1081,2,2,409,411],[1082,3,2,411,413],[1083,1,1,413,414],[1084,5,5,414,419],[1085,3,3,419,422],[1086,2,2,422,424],[1087,2,2,424,426],[1088,2,2,426,428],[1089,3,3,428,431],[1090,2,2,431,433]]],[47,16,14,433,447,[[1091,5,4,433,437],[1093,3,2,437,439],[1094,5,5,439,444],[1095,2,2,444,446],[1096,1,1,446,447]]],[48,8,8,447,455,[[1097,2,2,447,449],[1098,1,1,449,450],[1099,1,1,450,451],[1100,2,2,451,453],[1101,1,1,453,454],[1102,1,1,454,455]]],[49,13,12,455,467,[[1103,5,5,455,460],[1104,4,4,460,464],[1105,4,3,464,467]]],[50,11,11,467,478,[[1107,4,4,467,471],[1108,2,2,471,473],[1109,2,2,473,475],[1110,3,3,475,478]]],[51,14,14,478,492,[[1111,2,2,478,480],[1112,3,3,480,483],[1113,2,2,483,485],[1114,5,5,485,490],[1115,2,2,490,492]]],[52,12,12,492,504,[[1116,4,4,492,496],[1117,1,1,496,497],[1118,7,7,497,504]]],[56,3,3,504,507,[[1132,3,3,504,507]]],[57,7,7,507,514,[[1144,2,2,507,509],[1145,5,5,509,514]]],[58,9,9,514,523,[[1146,1,1,514,515],[1148,1,1,515,516],[1149,2,2,516,518],[1150,5,5,518,523]]],[59,12,10,523,533,[[1151,3,3,523,526],[1152,1,1,526,527],[1153,1,1,527,528],[1154,3,1,528,529],[1155,4,4,529,533]]],[60,8,8,533,541,[[1156,4,4,533,537],[1157,2,2,537,539],[1158,2,2,539,541]]],[61,23,16,541,557,[[1159,4,4,541,545],[1160,17,10,545,555],[1162,1,1,555,556],[1163,1,1,556,557]]],[62,1,1,557,558,[[1164,1,1,557,558]]],[64,5,4,558,562,[[1166,5,4,558,562]]],[65,6,6,562,568,[[1167,1,1,562,563],[1168,3,3,563,566],[1184,1,1,566,567],[1188,1,1,567,568]]]],[23199,23201,23252,23254,23256,23262,23266,23268,23273,23278,23284,23287,23296,23298,23301,23302,23307,23311,23315,23318,23323,23328,23355,23356,23408,23432,23436,23437,23440,23444,23459,23468,23470,23476,23480,23481,23483,23495,23520,23525,23550,23556,23683,23700,23712,23720,23730,23737,23739,23740,23745,23746,23762,23770,23771,23785,23786,23790,23796,23818,23819,23824,23829,23847,23850,23853,23854,23857,23869,23903,23914,23921,23931,23932,23933,23934,23941,23943,23945,23947,23954,23956,23957,23959,23980,23982,23983,23991,24004,24017,24020,24042,24048,24053,24067,24069,24075,24083,24118,24120,24146,24150,24202,24215,24316,24334,24347,24418,24512,24539,24551,24579,24591,24593,24603,24617,24624,24631,24643,24663,24664,24665,24669,24673,24716,24728,24738,24740,24747,24754,24763,24767,24769,24772,24779,24818,24835,24880,24983,24984,24985,25032,25033,25038,25087,25088,25170,25171,25172,25173,25174,25177,25178,25179,25180,25184,25193,25204,25221,25223,25227,25242,25255,25328,25349,25371,25374,25375,25376,25377,25382,25383,25387,25413,25414,25446,25447,25448,25449,25451,25452,25456,25457,25463,25464,25467,25481,25486,25490,25491,25496,25503,25510,25521,25523,25542,25543,25545,25553,25577,25595,25598,25629,25631,25632,25657,25661,25674,25685,25696,25702,25705,25717,25757,25771,25787,25829,25839,25841,25858,25874,25876,25880,25882,25890,25893,25901,25931,25997,26027,26035,26095,26100,26132,26191,26229,26234,26235,26248,26283,26284,26289,26293,26304,26310,26320,26322,26347,26350,26405,26406,26415,26418,26421,26432,26439,26467,26482,26488,26506,26507,26513,26579,26604,26642,26645,26646,26649,26650,26651,26663,26664,26670,26671,26678,26680,26684,26685,26688,26693,26694,26695,26696,26697,26702,26703,26706,26710,26713,26714,26715,26716,26719,26720,26725,26727,26729,26730,26732,26733,26738,26739,26740,26741,26746,26749,26751,26752,26759,26793,26824,26829,26886,26888,26893,26963,26988,27010,27016,27018,27022,27032,27068,27087,27097,27153,27377,27388,27396,27400,27403,27408,27429,27470,27526,27546,27646,27652,27653,27658,27661,27729,27801,27831,27927,27937,27941,27942,27943,27945,28125,28126,28127,28222,28248,28308,28318,28335,28337,28355,28366,28367,28369,28373,28374,28395,28396,28411,28413,28426,28428,28441,28450,28455,28463,28465,28469,28472,28474,28486,28522,28542,28551,28594,28595,28602,28613,28618,28619,28622,28623,28630,28637,28665,28684,28703,28715,28719,28720,28721,28730,28752,28769,28802,28813,28819,28821,28827,28828,28871,28873,28889,28890,28916,28923,28927,28928,28930,28932,28933,28942,28945,28957,28970,28972,28986,28996,28998,29034,29041,29042,29046,29048,29060,29065,29068,29077,29103,29107,29144,29146,29147,29150,29151,29164,29183,29199,29208,29223,29246,29267,29278,29304,29307,29358,29363,29367,29386,29389,29390,29396,29404,29408,29410,29422,29436,29439,29467,29470,29471,29492,29499,29507,29530,29533,29549,29551,29558,29561,29565,29578,29580,29583,29594,29597,29605,29609,29612,29614,29618,29622,29633,29651,29653,29656,29661,29666,29682,29684,29685,29687,29688,29689,29694,29941,29944,29960,30217,30219,30248,30258,30260,30262,30263,30292,30332,30338,30345,30357,30360,30367,30368,30373,30376,30386,30387,30406,30439,30458,30466,30467,30477,30479,30481,30487,30490,30495,30501,30513,30523,30537,30542,30543,30544,30545,30551,30557,30558,30562,30563,30564,30571,30574,30576,30577,30607,30637,30657,30674,30675,30684,30690,30701,30730,30740,30741,30999,31096]]],["+",[22,22,[[39,4,4,0,4,[[935,1,1,0,1],[952,1,1,1,2],[954,1,1,2,3],[955,1,1,3,4]]],[41,4,4,4,8,[[974,1,1,4,5],[978,1,1,5,6],[988,1,1,6,7],[993,1,1,7,8]]],[42,2,2,8,10,[[1001,1,1,8,9],[1006,1,1,9,10]]],[43,2,2,10,12,[[1030,1,1,10,11],[1037,1,1,11,12]]],[44,1,1,12,13,[[1061,1,1,12,13]]],[45,2,2,13,15,[[1072,1,1,13,14],[1073,1,1,14,15]]],[46,1,1,15,16,[[1085,1,1,15,16]]],[47,3,3,16,19,[[1094,2,2,16,18],[1095,1,1,18,19]]],[51,1,1,19,20,[[1113,1,1,19,20]]],[58,1,1,20,21,[[1150,1,1,20,21]]],[59,1,1,21,22,[[1154,1,1,21,22]]]],[23318,23982,24120,24150,24983,25184,25631,25858,26234,26488,27377,27652,28355,28613,28637,28933,29146,29147,29183,29594,30367,30458]]],["cause",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28890]]],["thee",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25242]]],["ye",[12,12,[[39,3,3,0,3,[[946,1,1,0,1],[949,1,1,1,2],[950,1,1,2,3]]],[40,2,2,3,5,[[967,1,1,3,4],[970,1,1,4,5]]],[41,3,3,5,8,[[978,3,3,5,8]]],[42,2,2,8,10,[[1007,1,1,8,9],[1014,1,1,9,10]]],[43,1,1,10,11,[[1022,1,1,10,11]]],[46,1,1,11,12,[[1085,1,1,11,12]]]],[23739,23854,23914,24664,24818,25178,25179,25180,26579,26824,27068,28945]]],["you",[582,533,[[39,100,95,0,95,[[931,2,2,0,2],[933,8,8,2,10],[934,7,7,10,17],[935,3,2,17,19],[936,2,2,19,21],[937,1,1,21,22],[938,6,6,22,28],[939,8,6,28,34],[940,3,3,34,37],[941,2,2,37,39],[944,2,2,39,41],[945,3,2,41,43],[946,6,6,43,49],[947,5,5,49,54],[948,5,4,54,58],[949,6,6,58,64],[950,1,1,64,65],[951,12,12,65,77],[952,5,5,77,82],[953,5,5,82,87],[954,5,5,87,92],[955,1,1,92,93],[956,2,2,93,95]]],[40,35,33,95,128,[[959,1,1,95,96],[960,3,2,96,98],[962,1,1,98,99],[964,1,1,99,100],[965,3,3,100,103],[966,7,6,103,109],[967,6,6,109,115],[968,1,1,115,116],[969,5,5,116,121],[970,5,5,121,126],[971,1,1,126,127],[972,1,1,127,128]]],[41,92,86,128,214,[[974,2,2,128,130],[975,3,3,130,133],[976,2,2,133,135],[978,9,8,135,143],[979,5,4,143,147],[980,1,1,147,148],[981,2,2,148,150],[982,8,8,150,158],[983,12,10,158,168],[984,11,10,168,178],[985,7,6,178,184],[986,1,1,184,185],[987,2,2,185,187],[988,2,2,187,189],[989,4,4,189,193],[990,4,4,193,197],[991,2,2,197,199],[992,1,1,199,200],[993,3,3,200,203],[994,8,8,203,211],[996,3,3,211,214]]],[42,99,81,214,295,[[997,1,1,214,215],[998,1,1,215,216],[999,2,1,216,217],[1000,1,1,217,218],[1001,3,3,218,221],[1002,10,8,221,229],[1003,2,2,229,231],[1004,7,7,231,238],[1005,1,1,238,239],[1006,4,4,239,243],[1008,1,1,243,244],[1009,9,8,244,252],[1010,17,12,252,264],[1011,13,11,264,275],[1012,20,14,275,289],[1014,3,2,289,291],[1015,1,1,291,292],[1016,3,3,292,295]]],[43,29,27,295,322,[[1019,2,2,295,297],[1020,4,4,297,301],[1021,1,1,301,302],[1022,2,2,302,304],[1024,1,1,304,305],[1030,7,5,305,310],[1031,1,1,310,311],[1032,1,1,311,312],[1034,2,2,312,314],[1037,4,4,314,318],[1039,1,1,318,319],[1042,1,1,319,320],[1043,1,1,320,321],[1045,1,1,321,322]]],[44,15,14,322,336,[[1046,5,5,322,327],[1053,4,3,327,330],[1056,1,1,330,331],[1057,1,1,331,332],[1060,3,3,332,335],[1061,1,1,335,336]]],[45,42,40,336,376,[[1062,5,5,336,341],[1063,2,2,341,343],[1064,4,4,343,347],[1065,2,2,347,349],[1066,3,3,349,352],[1067,4,4,352,356],[1068,1,1,356,357],[1070,2,2,357,359],[1071,2,2,359,361],[1072,7,6,361,367],[1073,1,1,367,368],[1075,3,3,368,371],[1076,6,5,371,376]]],[46,28,27,376,403,[[1078,4,4,376,380],[1079,2,2,380,382],[1081,2,2,382,384],[1082,2,1,384,385],[1083,1,1,385,386],[1084,5,5,386,391],[1085,1,1,391,392],[1086,2,2,392,394],[1087,2,2,394,396],[1088,2,2,396,398],[1089,3,3,398,401],[1090,2,2,401,403]]],[47,13,11,403,414,[[1091,5,4,403,407],[1093,3,2,407,409],[1094,3,3,409,412],[1095,1,1,412,413],[1096,1,1,413,414]]],[48,8,8,414,422,[[1097,2,2,414,416],[1098,1,1,416,417],[1099,1,1,417,418],[1100,2,2,418,420],[1101,1,1,420,421],[1102,1,1,421,422]]],[49,13,12,422,434,[[1103,5,5,422,427],[1104,4,4,427,431],[1105,4,3,431,434]]],[50,11,11,434,445,[[1107,4,4,434,438],[1108,2,2,438,440],[1109,2,2,440,442],[1110,3,3,442,445]]],[51,13,13,445,458,[[1111,2,2,445,447],[1112,3,3,447,450],[1113,1,1,450,451],[1114,5,5,451,456],[1115,2,2,456,458]]],[52,12,12,458,470,[[1116,4,4,458,462],[1117,1,1,462,463],[1118,7,7,463,470]]],[56,3,3,470,473,[[1132,3,3,470,473]]],[57,7,7,473,480,[[1144,2,2,473,475],[1145,5,5,475,480]]],[58,8,8,480,488,[[1146,1,1,480,481],[1148,1,1,481,482],[1149,2,2,482,484],[1150,4,4,484,488]]],[59,11,10,488,498,[[1151,3,3,488,491],[1152,1,1,491,492],[1153,1,1,492,493],[1154,2,1,493,494],[1155,4,4,494,498]]],[60,8,8,498,506,[[1156,4,4,498,502],[1157,2,2,502,504],[1158,2,2,504,506]]],[61,23,16,506,522,[[1159,4,4,506,510],[1160,17,10,510,520],[1162,1,1,520,521],[1163,1,1,521,522]]],[62,1,1,522,523,[[1164,1,1,522,523]]],[64,5,4,523,527,[[1166,5,4,523,527]]],[65,6,6,527,533,[[1167,1,1,527,528],[1168,3,3,528,531],[1184,1,1,531,532],[1188,1,1,532,533]]]],[23199,23201,23252,23254,23256,23262,23266,23268,23273,23278,23284,23287,23296,23298,23307,23311,23315,23323,23328,23355,23356,23408,23432,23436,23437,23440,23444,23459,23468,23470,23476,23480,23481,23483,23495,23520,23525,23550,23556,23683,23700,23712,23720,23730,23737,23740,23745,23746,23762,23770,23771,23785,23786,23790,23796,23818,23819,23824,23829,23847,23850,23853,23857,23869,23903,23921,23931,23932,23933,23934,23941,23943,23945,23947,23954,23956,23957,23959,23980,23983,23991,24004,24017,24020,24042,24048,24053,24067,24069,24075,24083,24118,24146,24202,24215,24316,24334,24347,24418,24512,24539,24551,24579,24591,24593,24603,24617,24624,24631,24643,24663,24664,24665,24669,24673,24716,24728,24738,24740,24747,24754,24763,24767,24769,24772,24779,24835,24880,24984,24985,25032,25033,25038,25087,25088,25170,25171,25172,25173,25174,25177,25184,25193,25204,25221,25223,25227,25255,25328,25349,25371,25374,25375,25376,25377,25382,25383,25387,25413,25414,25446,25447,25448,25449,25451,25452,25456,25457,25463,25464,25467,25481,25486,25490,25491,25496,25503,25510,25521,25523,25542,25543,25545,25553,25577,25595,25598,25629,25632,25657,25661,25674,25685,25696,25702,25705,25717,25757,25771,25787,25829,25839,25841,25874,25876,25880,25882,25890,25893,25901,25931,25997,26027,26035,26095,26100,26132,26191,26229,26235,26248,26283,26284,26289,26293,26304,26310,26320,26322,26347,26350,26405,26406,26415,26418,26421,26432,26439,26467,26482,26506,26507,26513,26604,26642,26645,26646,26649,26650,26651,26663,26664,26670,26671,26678,26680,26684,26685,26688,26693,26694,26695,26696,26697,26702,26703,26706,26710,26713,26714,26715,26716,26719,26720,26725,26727,26729,26730,26732,26733,26738,26739,26740,26741,26746,26749,26751,26752,26759,26793,26824,26829,26886,26888,26893,26963,26988,27010,27016,27018,27022,27032,27087,27097,27153,27388,27396,27400,27403,27408,27429,27470,27526,27546,27646,27653,27658,27661,27729,27801,27831,27927,27937,27941,27942,27943,27945,28125,28126,28127,28222,28248,28308,28318,28335,28337,28366,28367,28369,28373,28374,28395,28396,28411,28413,28426,28428,28441,28450,28455,28463,28465,28469,28472,28474,28486,28522,28542,28551,28594,28595,28602,28618,28619,28622,28623,28630,28665,28684,28703,28715,28719,28720,28721,28730,28769,28802,28813,28819,28821,28827,28828,28871,28873,28889,28916,28923,28927,28928,28930,28932,28942,28957,28970,28972,28986,28996,28998,29034,29041,29042,29046,29048,29060,29065,29068,29077,29103,29107,29144,29150,29151,29164,29199,29208,29223,29246,29267,29278,29304,29307,29358,29363,29367,29386,29389,29390,29396,29404,29408,29410,29422,29436,29439,29467,29470,29471,29492,29499,29507,29530,29533,29549,29551,29558,29561,29565,29578,29580,29583,29597,29605,29609,29612,29614,29618,29622,29633,29651,29653,29656,29661,29666,29682,29684,29685,29687,29688,29689,29694,29941,29944,29960,30217,30219,30248,30258,30260,30262,30263,30292,30332,30338,30345,30357,30360,30368,30373,30376,30386,30387,30406,30439,30458,30466,30467,30477,30479,30481,30487,30490,30495,30501,30513,30523,30537,30542,30543,30544,30545,30551,30557,30558,30562,30563,30564,30571,30574,30576,30577,30607,30637,30657,30674,30675,30684,30690,30701,30730,30740,30741,30999,31096]]],["your",[3,3,[[41,1,1,0,1,[[993,1,1,0,1]]],[45,2,2,1,3,[[1067,1,1,1,2],[1076,1,1,2,3]]]],[25841,28472,28752]]],["yourselves",[2,2,[[39,2,2,0,2,[[934,2,2,0,2]]]],[23301,23302]]]]},{"k":"G5214","v":[["*",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[43,1,1,2,3,[[1033,1,1,2,3]]],[57,1,1,3,4,[[1134,1,1,3,4]]]],[24084,24780,27508,29989]]],["hymn",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24084,24780]]],["praise",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29989]]],["praises",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27508]]]]},{"k":"G5215","v":[["hymns",[2,2,[[48,1,1,0,1,[[1101,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29323,29533]]]]},{"k":"G5216","v":[["*",[583,504,[[39,78,62,0,62,[[933,12,9,0,9],[934,13,9,9,18],[935,4,3,18,21],[937,3,3,21,24],[938,8,6,24,30],[939,1,1,30,31],[940,3,2,31,33],[941,2,1,33,34],[943,3,3,34,37],[945,4,3,37,40],[946,3,3,40,43],[947,2,1,43,44],[948,2,2,44,46],[949,2,2,46,48],[951,10,8,48,56],[952,2,2,56,58],[953,1,1,58,59],[954,2,2,59,61],[956,1,1,61,62]]],[40,20,16,62,78,[[958,1,1,62,63],[962,2,1,63,64],[963,3,3,64,67],[964,1,1,67,68],[965,3,2,68,70],[966,3,3,70,73],[967,5,3,73,76],[969,1,1,76,77],[970,1,1,77,78]]],[41,66,60,78,138,[[975,1,1,78,79],[976,1,1,79,80],[977,2,2,80,82],[978,8,7,82,89],[980,1,1,89,90],[981,3,3,90,93],[982,4,4,93,97],[983,9,8,97,105],[984,9,8,105,113],[985,2,2,113,115],[986,3,3,115,118],[987,1,1,118,119],[988,2,2,119,121],[989,2,2,121,123],[993,8,6,123,129],[994,7,6,129,135],[995,2,2,135,137],[996,1,1,137,138]]],[42,53,48,138,186,[[997,1,1,138,139],[1000,1,1,139,140],[1001,2,1,140,141],[1002,4,4,141,145],[1003,2,2,145,147],[1004,13,12,147,159],[1005,2,2,159,161],[1006,1,1,161,162],[1008,1,1,162,163],[1009,4,4,163,167],[1010,5,5,167,172],[1011,3,3,172,175],[1012,9,7,175,182],[1014,1,1,182,183],[1015,2,2,183,185],[1016,2,1,185,186]]],[43,38,32,186,218,[[1018,2,2,186,188],[1019,7,4,188,192],[1020,6,5,192,197],[1021,3,3,197,200],[1022,1,1,200,201],[1023,1,1,201,202],[1024,5,4,202,206],[1030,1,1,206,207],[1032,1,1,207,208],[1034,1,1,208,209],[1035,3,2,209,211],[1036,1,1,211,212],[1037,2,2,212,214],[1041,1,1,214,215],[1042,1,1,215,216],[1044,2,2,216,218]]],[44,27,21,218,239,[[1046,4,3,218,221],[1051,8,5,221,226],[1053,1,1,226,227],[1057,4,3,227,230],[1059,1,1,230,231],[1060,5,4,231,235],[1061,4,4,235,239]]],[45,45,43,239,282,[[1062,6,6,239,245],[1063,1,1,245,246],[1064,2,2,246,248],[1065,1,1,248,249],[1066,4,4,249,253],[1067,5,4,253,257],[1068,4,4,257,261],[1069,1,1,261,262],[1070,2,2,262,264],[1072,3,3,264,267],[1073,1,1,267,268],[1075,4,4,268,272],[1076,4,3,272,275],[1077,7,7,275,282]]],[46,58,46,282,328,[[1078,10,7,282,289],[1079,2,2,289,291],[1080,1,1,291,292],[1081,1,1,292,293],[1082,1,1,293,294],[1083,1,1,294,295],[1084,9,6,295,301],[1085,7,5,301,306],[1086,9,6,306,312],[1087,6,6,312,318],[1088,2,2,318,320],[1089,6,5,320,325],[1090,3,3,325,328]]],[47,7,6,328,334,[[1093,1,1,328,329],[1094,5,4,329,333],[1096,1,1,333,334]]],[48,21,19,334,353,[[1097,4,3,334,337],[1098,1,1,337,338],[1099,4,3,338,341],[1100,5,5,341,346],[1101,1,1,346,347],[1102,6,6,347,353]]],[49,22,22,353,375,[[1103,9,9,353,362],[1104,5,5,362,367],[1106,8,8,367,375]]],[50,24,21,375,396,[[1107,6,6,375,381],[1108,4,3,381,384],[1109,6,6,384,390],[1110,8,6,390,396]]],[51,28,23,396,419,[[1111,6,4,396,400],[1112,7,6,400,406],[1113,9,7,406,413],[1114,3,3,413,416],[1115,3,3,416,419]]],[52,12,9,419,428,[[1116,6,3,419,422],[1117,2,2,422,424],[1118,4,4,424,428]]],[54,1,1,428,429,[[1128,1,1,428,429]]],[55,2,2,429,431,[[1130,1,1,429,430],[1131,1,1,430,431]]],[56,2,2,431,433,[[1132,2,2,431,433]]],[57,20,19,433,452,[[1135,5,5,433,438],[1136,2,2,438,440],[1138,3,3,440,443],[1141,1,1,443,444],[1142,2,2,444,446],[1144,2,2,446,448],[1145,5,4,448,452]]],[58,24,20,452,472,[[1146,3,3,452,455],[1147,3,3,455,458],[1148,1,1,458,459],[1149,7,6,459,465],[1150,10,7,465,472]]],[59,22,19,472,491,[[1151,8,8,472,480],[1152,3,2,480,482],[1153,5,4,482,486],[1154,2,2,486,488],[1155,4,3,488,491]]],[60,4,4,491,495,[[1156,3,3,491,494],[1158,1,1,494,495]]],[61,1,1,495,496,[[1159,1,1,495,496]]],[62,1,1,496,497,[[1164,1,1,496,497]]],[64,2,2,497,499,[[1166,2,2,497,499]]],[65,5,5,499,504,[[1167,1,1,499,500],[1168,2,2,500,502],[1184,1,1,502,503],[1188,1,1,503,504]]]],[23245,23246,23250,23254,23271,23278,23279,23281,23282,23283,23290,23296,23297,23303,23307,23308,23309,23314,23322,23325,23327,23383,23390,23408,23426,23430,23431,23437,23446,23447,23488,23500,23516,23555,23636,23639,23640,23717,23720,23724,23741,23746,23762,23770,23818,23819,23828,23869,23926,23927,23928,23929,23933,23950,23952,23956,23977,23999,24016,24075,24083,24215,24268,24418,24469,24472,24476,24517,24557,24578,24593,24631,24632,24642,24665,24666,24735,24772,25039,25084,25111,25129,25168,25169,25170,25173,25181,25182,25184,25270,25306,25342,25345,25369,25374,25379,25383,25410,25416,25418,25424,25444,25451,25452,25453,25466,25481,25484,25489,25491,25492,25493,25494,25533,25553,25558,25581,25586,25592,25635,25646,25658,25672,25840,25842,25844,25845,25854,25860,25874,25879,25883,25884,25891,25917,25949,25963,26029,26070,26191,26255,26306,26315,26321,26327,26347,26361,26388,26402,26405,26407,26419,26422,26423,26425,26427,26435,26436,26437,26459,26481,26515,26615,26644,26648,26651,26663,26669,26677,26684,26695,26698,26710,26715,26717,26730,26731,26732,26746,26748,26750,26752,26816,26839,26840,26884,26930,26934,26966,26971,26987,26988,27012,27013,27015,27018,27022,27032,27033,27041,27087,27104,27153,27159,27167,27168,27403,27466,27546,27563,27571,27622,27644,27656,27790,27822,27877,27889,27938,27939,27942,28080,28081,28082,28087,28090,28127,28246,28247,28263,28296,28317,28327,28331,28336,28338,28355,28356,28360,28367,28374,28375,28376,28377,28389,28399,28431,28432,28436,28456,28458,28460,28467,28468,28482,28486,28487,28492,28501,28515,28522,28536,28551,28552,28618,28620,28624,28655,28696,28704,28712,28714,28732,28735,28776,28778,28779,28790,28793,28794,28799,28800,28806,28807,28811,28814,28816,28823,28824,28827,28833,28842,28864,28888,28910,28920,28923,28928,28929,28930,28931,28939,28946,28948,28951,28956,28958,28959,28961,28966,28969,28970,28977,28979,28984,28985,28986,28987,28992,28997,29033,29035,29036,29037,29041,29052,29054,29057,29104,29137,29143,29146,29147,29206,29219,29222,29224,29237,29252,29264,29268,29276,29295,29298,29301,29303,29323,29338,29341,29342,29346,29351,29359,29364,29365,29366,29368,29370,29380,29386,29387,29388,29408,29410,29411,29416,29421,29447,29448,29449,29451,29459,29460,29461,29465,29468,29469,29472,29473,29474,29489,29495,29499,29507,29520,29522,29525,29532,29533,29538,29548,29550,29551,29554,29555,29560,29562,29563,29564,29568,29576,29577,29578,29579,29581,29587,29592,29595,29596,29597,29599,29600,29603,29606,29607,29614,29633,29644,29649,29652,29653,29660,29674,29678,29683,29686,29694,29696,29892,29916,29938,29960,29963,30003,30004,30007,30008,30010,30015,30021,30053,30054,30055,30119,30167,30168,30215,30225,30248,30258,30265,30266,30269,30271,30287,30295,30299,30309,30333,30338,30340,30344,30346,30351,30353,30355,30356,30357,30358,30359,30362,30366,30381,30383,30387,30388,30391,30392,30395,30396,30411,30424,30426,30431,30439,30440,30450,30461,30472,30473,30474,30484,30489,30498,30523,30544,30648,30684,30692,30706,30727,30740,31013,31101]]],["+",[18,18,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,2,2,1,3,[[965,1,1,1,2],[966,1,1,2,3]]],[41,2,2,3,5,[[984,2,2,3,5]]],[43,1,1,5,6,[[1037,1,1,5,6]]],[44,1,1,6,7,[[1057,1,1,6,7]]],[45,4,4,7,11,[[1062,1,1,7,8],[1066,1,1,8,9],[1068,1,1,9,10],[1077,1,1,10,11]]],[46,2,2,11,13,[[1085,1,1,11,12],[1086,1,1,12,13]]],[48,1,1,13,14,[[1102,1,1,13,14]]],[49,3,3,14,17,[[1103,1,1,14,15],[1104,2,2,15,17]]],[50,1,1,17,18,[[1110,1,1,17,18]]]],[23770,24578,24593,25491,25492,27656,28263,28367,28467,28522,28790,28956,28958,29341,29388,29410,29411,29550]]],["Ye",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28811]]],["Your",[6,6,[[42,2,2,0,2,[[1002,1,1,0,1],[1004,1,1,1,2]]],[43,1,1,2,3,[[1035,1,1,2,3]]],[45,1,1,3,4,[[1066,1,1,3,4]]],[58,2,2,4,6,[[1150,2,2,4,6]]]],[26306,26437,27563,28460,30356,30357]]],["his",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27022]]],["own",[4,4,[[40,1,1,0,1,[[963,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]],[46,1,1,2,3,[[1083,1,1,2,3]]],[47,1,1,3,4,[[1094,1,1,3,4]]]],[24472,27563,28910,29146]]],["part",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28793]]],["us",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24578]]],["ye",[7,7,[[41,1,1,0,1,[[994,1,1,0,1]]],[45,4,4,1,5,[[1066,1,1,1,2],[1072,2,2,2,4],[1075,1,1,4,5]]],[47,1,1,5,6,[[1094,1,1,5,6]]],[59,1,1,6,7,[[1154,1,1,6,7]]]],[25874,28458,28618,28620,28696,29146,30450]]],["you",[201,194,[[39,15,14,0,14,[[933,2,2,0,2],[934,1,1,2,3],[935,1,1,3,4],[940,1,1,4,5],[943,1,1,5,6],[945,2,1,6,7],[946,1,1,7,8],[949,2,2,8,10],[951,1,1,10,11],[954,2,2,11,13],[956,1,1,13,14]]],[40,6,6,14,20,[[962,1,1,14,15],[963,1,1,15,16],[965,1,1,16,17],[966,1,1,17,18],[967,1,1,18,19],[970,1,1,19,20]]],[41,20,20,20,40,[[981,1,1,20,21],[982,1,1,21,22],[983,2,2,22,24],[984,1,1,24,25],[985,1,1,25,26],[986,3,3,26,29],[987,1,1,29,30],[988,1,1,30,31],[989,2,2,31,33],[993,1,1,33,34],[994,5,5,34,39],[995,1,1,39,40]]],[42,23,22,40,62,[[997,1,1,40,41],[1001,2,1,41,42],[1002,2,2,42,44],[1003,2,2,44,46],[1004,4,4,46,50],[1008,1,1,50,51],[1009,3,3,51,54],[1010,3,3,54,57],[1011,1,1,57,58],[1012,4,4,58,62]]],[43,15,15,62,77,[[1018,2,2,62,64],[1019,2,2,64,66],[1020,1,1,66,67],[1021,3,3,67,70],[1023,1,1,70,71],[1035,1,1,71,72],[1037,1,1,72,73],[1041,1,1,73,74],[1042,1,1,74,75],[1044,2,2,75,77]]],[44,11,11,77,88,[[1046,3,3,77,80],[1051,1,1,80,81],[1060,4,4,81,85],[1061,3,3,85,88]]],[45,16,16,88,104,[[1062,4,4,88,92],[1065,1,1,92,93],[1066,1,1,93,94],[1067,1,1,94,95],[1068,1,1,95,96],[1070,1,1,96,97],[1072,1,1,97,98],[1073,1,1,98,99],[1075,2,2,99,101],[1077,3,3,101,104]]],[46,26,25,104,129,[[1078,4,3,104,107],[1079,2,2,107,109],[1080,1,1,109,110],[1084,5,5,110,115],[1085,1,1,115,116],[1086,3,3,116,119],[1087,3,3,119,122],[1088,1,1,122,123],[1089,4,4,123,127],[1090,2,2,127,129]]],[47,2,2,129,131,[[1093,1,1,129,130],[1094,1,1,130,131]]],[48,5,4,131,135,[[1097,2,1,131,132],[1099,2,2,132,134],[1100,1,1,134,135]]],[49,6,6,135,141,[[1103,3,3,135,138],[1106,3,3,138,141]]],[50,10,9,141,150,[[1107,4,4,141,145],[1108,1,1,145,146],[1110,5,4,146,150]]],[51,14,13,150,163,[[1111,3,2,150,152],[1112,6,6,152,158],[1113,2,2,158,160],[1114,1,1,160,161],[1115,2,2,161,163]]],[52,7,6,163,169,[[1116,3,2,163,165],[1117,1,1,165,166],[1118,3,3,166,169]]],[54,1,1,169,170,[[1128,1,1,169,170]]],[55,2,2,170,172,[[1130,1,1,170,171],[1131,1,1,171,172]]],[57,9,9,172,181,[[1135,2,2,172,174],[1136,1,1,174,175],[1138,2,2,175,177],[1145,4,4,177,181]]],[58,5,5,181,186,[[1146,1,1,181,182],[1147,2,2,182,184],[1149,1,1,184,185],[1150,1,1,185,186]]],[59,4,4,186,190,[[1152,1,1,186,187],[1153,1,1,187,188],[1154,1,1,188,189],[1155,1,1,189,190]]],[62,1,1,190,191,[[1164,1,1,190,191]]],[65,3,3,191,194,[[1168,1,1,191,192],[1184,1,1,192,193],[1188,1,1,193,194]]]],[23245,23246,23309,23325,23500,23640,23717,23746,23828,23869,23929,24075,24083,24215,24418,24469,24557,24632,24642,24772,25342,25379,25410,25416,25484,25533,25558,25581,25586,25592,25646,25658,25672,25842,25879,25883,25884,25891,25917,25949,26070,26255,26321,26327,26347,26361,26388,26407,26427,26436,26615,26648,26651,26663,26677,26684,26698,26717,26730,26731,26748,26752,26930,26934,26971,26987,27012,27032,27033,27041,27104,27571,27644,27790,27822,27877,27889,27938,27939,27942,28082,28317,28327,28331,28336,28338,28356,28360,28374,28375,28376,28377,28436,28456,28468,28515,28552,28624,28655,28704,28714,28778,28799,28800,28807,28816,28823,28827,28833,28842,28920,28928,28929,28930,28931,28948,28958,28959,28970,28984,28985,28987,28997,29033,29035,29036,29037,29054,29057,29104,29143,29222,29252,29264,29303,29364,29365,29368,29451,29460,29465,29468,29472,29474,29489,29495,29551,29554,29555,29560,29562,29568,29576,29577,29578,29579,29581,29587,29596,29599,29607,29633,29649,29652,29660,29674,29686,29694,29696,29892,29916,29938,30007,30008,30015,30053,30055,30248,30258,30265,30266,30271,30299,30309,30344,30358,30411,30440,30461,30472,30648,30727,31013,31101]]],["your",[336,293,[[39,61,49,0,49,[[933,10,8,0,8],[934,12,8,8,16],[935,3,2,16,18],[937,3,3,18,21],[938,8,6,21,27],[939,1,1,27,28],[940,2,1,28,29],[941,2,1,29,30],[943,2,2,30,32],[945,2,2,32,34],[946,2,2,34,36],[947,1,1,36,37],[948,2,2,37,39],[951,8,7,39,46],[952,2,2,46,48],[953,1,1,48,49]]],[40,10,8,49,57,[[958,1,1,49,50],[962,1,1,50,51],[963,1,1,51,52],[964,1,1,52,53],[966,1,1,53,54],[967,4,2,54,56],[969,1,1,56,57]]],[41,43,38,57,95,[[975,1,1,57,58],[976,1,1,58,59],[977,2,2,59,61],[978,8,7,61,68],[980,1,1,68,69],[981,2,2,69,71],[982,3,3,71,74],[983,7,6,74,80],[984,6,5,80,85],[985,1,1,85,86],[988,1,1,86,87],[993,7,5,87,92],[994,1,1,92,93],[995,1,1,93,94],[996,1,1,94,95]]],[42,28,25,95,120,[[1000,1,1,95,96],[1002,1,1,96,97],[1004,8,7,97,104],[1005,2,2,104,106],[1006,1,1,106,107],[1009,1,1,107,108],[1010,2,2,108,110],[1011,2,2,110,112],[1012,5,4,112,116],[1014,1,1,116,117],[1015,2,2,117,119],[1016,2,1,119,120]]],[43,19,14,120,134,[[1019,5,2,120,122],[1020,4,3,122,125],[1022,1,1,125,126],[1024,5,4,126,130],[1030,1,1,130,131],[1032,1,1,131,132],[1034,1,1,132,133],[1036,1,1,133,134]]],[44,15,11,134,145,[[1046,1,1,134,135],[1051,7,4,135,139],[1053,1,1,139,140],[1057,3,2,140,142],[1059,1,1,142,143],[1060,1,1,143,144],[1061,1,1,144,145]]],[45,15,13,145,158,[[1062,1,1,145,146],[1063,1,1,146,147],[1067,4,3,147,150],[1068,2,2,150,152],[1070,1,1,152,153],[1075,1,1,153,154],[1076,4,3,154,157],[1077,1,1,157,158]]],[46,27,21,158,179,[[1078,5,3,158,161],[1081,1,1,161,162],[1082,1,1,162,163],[1084,4,2,163,165],[1085,5,4,165,169],[1086,5,4,169,173],[1087,3,3,173,176],[1088,1,1,176,177],[1089,1,1,177,178],[1090,1,1,178,179]]],[47,3,3,179,182,[[1094,2,2,179,181],[1096,1,1,181,182]]],[48,14,14,182,196,[[1097,2,2,182,184],[1099,2,2,184,186],[1100,4,4,186,190],[1101,1,1,190,191],[1102,5,5,191,196]]],[49,13,13,196,209,[[1103,5,5,196,201],[1104,3,3,201,204],[1106,5,5,204,209]]],[50,13,12,209,221,[[1107,2,2,209,211],[1108,3,2,211,213],[1109,6,6,213,219],[1110,2,2,219,221]]],[51,14,13,221,234,[[1111,3,3,221,224],[1112,1,1,224,225],[1113,7,6,225,231],[1114,2,2,231,233],[1115,1,1,233,234]]],[52,5,4,234,238,[[1116,3,2,234,236],[1117,1,1,236,237],[1118,1,1,237,238]]],[56,2,2,238,240,[[1132,2,2,238,240]]],[57,11,11,240,251,[[1135,3,3,240,243],[1136,1,1,243,244],[1138,1,1,244,245],[1141,1,1,245,246],[1142,2,2,246,248],[1144,2,2,248,250],[1145,1,1,250,251]]],[58,17,16,251,267,[[1146,2,2,251,253],[1147,1,1,253,254],[1148,1,1,254,255],[1149,6,5,255,260],[1150,7,7,260,267]]],[59,17,17,267,284,[[1151,8,8,267,275],[1152,2,2,275,277],[1153,4,4,277,281],[1155,3,3,281,284]]],[60,4,4,284,288,[[1156,3,3,284,287],[1158,1,1,287,288]]],[61,1,1,288,289,[[1159,1,1,288,289]]],[64,2,2,289,291,[[1166,2,2,289,291]]],[65,2,2,291,293,[[1167,1,1,291,292],[1168,1,1,292,293]]]],[23246,23250,23254,23271,23278,23279,23281,23282,23283,23290,23296,23297,23303,23307,23308,23314,23322,23327,23383,23390,23408,23426,23430,23431,23437,23446,23447,23488,23516,23555,23636,23639,23720,23724,23741,23762,23770,23818,23819,23926,23927,23928,23929,23950,23952,23956,23977,23999,24016,24268,24418,24476,24517,24631,24665,24666,24735,25039,25084,25111,25129,25168,25169,25170,25173,25181,25182,25184,25270,25306,25345,25369,25374,25383,25418,25424,25444,25451,25452,25453,25466,25481,25489,25493,25494,25553,25635,25840,25844,25845,25854,25860,25917,25963,26029,26191,26315,26402,26405,26419,26422,26423,26425,26435,26459,26481,26515,26644,26669,26695,26710,26715,26732,26746,26748,26750,26816,26839,26840,26884,26966,26988,27013,27015,27018,27087,27153,27159,27167,27168,27403,27466,27546,27622,27938,28080,28081,28087,28090,28127,28246,28247,28296,28327,28355,28389,28399,28482,28486,28487,28492,28501,28551,28712,28732,28735,28776,28779,28806,28814,28824,28864,28888,28923,28929,28939,28946,28951,28956,28958,28961,28966,28969,28977,28979,28986,28992,29041,29052,29137,29147,29206,29219,29224,29264,29268,29276,29295,29298,29301,29323,29338,29342,29346,29351,29359,29366,29370,29380,29386,29387,29408,29416,29421,29447,29448,29449,29459,29461,29469,29473,29499,29507,29520,29522,29525,29532,29533,29538,29548,29550,29563,29564,29568,29587,29592,29595,29596,29597,29600,29603,29606,29614,29644,29652,29653,29678,29683,29960,29963,30003,30004,30010,30021,30054,30119,30167,30168,30215,30225,30258,30269,30287,30295,30333,30338,30340,30346,30351,30353,30355,30356,30357,30358,30359,30362,30366,30381,30383,30387,30388,30391,30392,30395,30396,30411,30424,30426,30431,30439,30440,30472,30473,30474,30484,30489,30498,30523,30544,30684,30692,30706,30740]]],["yours",[5,5,[[45,4,4,0,4,[[1064,2,2,0,2],[1069,1,1,2,3],[1077,1,1,3,4]]],[46,1,1,4,5,[[1089,1,1,4,5]]]],[28431,28432,28536,28794,29036]]],["yourselves",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]]],[23933,29237]]]]},{"k":"G5217","v":[["*",[81,77,[[39,19,19,0,19,[[932,1,1,0,1],[933,2,2,1,3],[936,3,3,3,6],[937,1,1,6,7],[941,1,1,7,8],[944,1,1,8,9],[946,1,1,9,10],[947,1,1,10,11],[948,3,3,11,14],[949,1,1,14,15],[954,2,2,15,17],[955,1,1,17,18],[956,1,1,18,19]]],[40,15,15,19,34,[[957,1,1,19,20],[958,1,1,20,21],[961,2,2,21,23],[962,3,3,23,26],[963,1,1,26,27],[964,1,1,27,28],[966,2,2,28,30],[967,1,1,30,31],[970,2,2,31,33],[972,1,1,33,34]]],[41,6,6,34,40,[[976,1,1,34,35],[980,1,1,35,36],[982,1,1,36,37],[984,1,1,37,38],[989,1,1,38,39],[991,1,1,39,40]]],[42,33,29,40,69,[[999,1,1,40,41],[1000,1,1,41,42],[1002,2,2,42,44],[1003,2,2,44,46],[1004,5,3,46,49],[1005,2,2,49,51],[1007,3,3,51,54],[1008,2,2,54,56],[1009,4,3,56,59],[1010,3,3,59,62],[1011,1,1,62,63],[1012,5,4,63,67],[1014,1,1,67,68],[1017,1,1,68,69]]],[58,1,1,69,70,[[1147,1,1,69,70]]],[61,1,1,70,71,[[1160,1,1,70,71]]],[65,6,6,71,77,[[1176,1,1,71,72],[1179,1,1,72,73],[1180,1,1,73,74],[1182,1,1,74,75],[1183,2,2,75,77]]]],[23219,23258,23275,23349,23358,23377,23385,23583,23695,23742,23783,23796,23799,23806,23854,24072,24078,24194,24205,24259,24271,24383,24398,24438,24440,24445,24492,24533,24609,24640,24642,24767,24775,24880,25071,25287,25366,25517,25665,25761,26128,26172,26278,26324,26331,26361,26395,26402,26403,26447,26451,26531,26554,26567,26591,26615,26633,26663,26666,26672,26673,26696,26715,26731,26736,26742,26743,26793,26901,30309,30561,30869,30918,30930,30955,30983,30986]]],["Depart",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30309]]],["Get",[3,3,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]]],[23695,24533,25071]]],["Go",[11,11,[[39,4,4,0,4,[[936,1,1,0,1],[948,2,2,1,3],[954,1,1,3,4]]],[40,2,2,4,6,[[961,1,1,4,5],[970,1,1,5,6]]],[41,1,1,6,7,[[991,1,1,6,7]]],[42,3,3,7,10,[[1000,1,1,7,8],[1005,2,2,8,10]]],[65,1,1,10,11,[[1176,1,1,10,11]]]],[23377,23796,23799,24072,24383,24767,25761,26172,26447,26451,30869]]],["away",[3,3,[[42,3,3,0,3,[[1002,1,1,0,1],[1008,1,1,1,2],[1010,1,1,2,3]]]],[26324,26591,26696]]],["departing",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24440]]],["go",[25,24,[[39,6,6,0,6,[[933,1,1,0,1],[937,1,1,1,2],[946,1,1,2,3],[947,1,1,3,4],[949,1,1,4,5],[956,1,1,5,6]]],[40,2,2,6,8,[[961,1,1,6,7],[962,1,1,7,8]]],[42,15,14,8,22,[[1003,2,2,8,10],[1004,4,3,10,13],[1007,1,1,13,14],[1009,2,2,14,16],[1010,1,1,16,17],[1011,1,1,17,18],[1012,3,3,18,21],[1017,1,1,21,22]]],[65,2,2,22,24,[[1179,1,1,22,23],[1183,1,1,23,24]]]],[23275,23385,23742,23783,23854,24205,24398,24445,26331,26361,26395,26402,26403,26567,26663,26666,26672,26715,26736,26742,26743,26901,30918,30983]]],["goest",[5,5,[[41,1,1,0,1,[[984,1,1,0,1]]],[42,4,4,1,5,[[1007,1,1,1,2],[1009,1,1,2,3],[1010,1,1,3,4],[1012,1,1,4,5]]]],[25517,26531,26666,26673,26731]]],["goeth",[9,9,[[39,2,2,0,2,[[941,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[42,3,3,3,6,[[999,1,1,3,4],[1007,1,1,4,5],[1008,1,1,5,6]]],[61,1,1,6,7,[[1160,1,1,6,7]]],[65,2,2,7,9,[[1180,1,1,7,8],[1183,1,1,8,9]]]],[23583,24078,24775,26128,26554,26615,30561,30930,30986]]],["going",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24438]]],["hence",[1,1,[[39,1,1,0,1,[[932,1,1,0,1]]]],[23219]]],["way",[15,15,[[39,5,5,0,5,[[933,1,1,0,1],[936,2,2,1,3],[948,1,1,3,4],[955,1,1,4,5]]],[40,7,7,5,12,[[957,1,1,5,6],[958,1,1,6,7],[963,1,1,7,8],[966,2,2,8,10],[967,1,1,10,11],[972,1,1,11,12]]],[42,3,3,12,15,[[1004,1,1,12,13],[1012,1,1,13,14],[1014,1,1,14,15]]]],[23258,23349,23358,23806,24194,24259,24271,24492,24609,24640,24642,24880,26402,26731,26793]]],["ways",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[65,1,1,1,2,[[1182,1,1,1,2]]]],[25366,30955]]],["went",[4,4,[[41,2,2,0,2,[[980,1,1,0,1],[989,1,1,1,2]]],[42,2,2,2,4,[[1002,1,1,2,3],[1009,1,1,3,4]]]],[25287,25665,26278,26633]]]]},{"k":"G5218","v":[["*",[15,14,[[44,7,6,0,6,[[1046,1,1,0,1],[1050,1,1,1,2],[1051,2,1,2,3],[1060,1,1,3,4],[1061,2,2,4,6]]],[46,3,3,6,9,[[1084,1,1,6,7],[1087,2,2,7,9]]],[56,1,1,9,10,[[1132,1,1,9,10]]],[57,1,1,10,11,[[1137,1,1,10,11]]],[59,3,3,11,14,[[1151,3,3,11,14]]]],[27935,28066,28084,28321,28355,28362,28931,28976,28977,29959,30038,30376,30388,30396]]],["+",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28321]]],["obedience",[11,11,[[44,5,5,0,5,[[1046,1,1,0,1],[1050,1,1,1,2],[1051,1,1,2,3],[1061,2,2,3,5]]],[46,3,3,5,8,[[1084,1,1,5,6],[1087,2,2,6,8]]],[56,1,1,8,9,[[1132,1,1,8,9]]],[57,1,1,9,10,[[1137,1,1,9,10]]],[59,1,1,10,11,[[1151,1,1,10,11]]]],[27935,28066,28084,28355,28362,28931,28976,28977,29959,30038,30376]]],["obedient",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30388]]],["obey",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28084]]],["obeying",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30396]]]]},{"k":"G5219","v":[["*",[21,21,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,2,2,1,3,[[957,1,1,1,2],[960,1,1,2,3]]],[41,2,2,3,5,[[980,1,1,3,4],[989,1,1,4,5]]],[43,2,2,5,7,[[1023,1,1,5,6],[1029,1,1,6,7]]],[44,4,4,7,11,[[1051,3,3,7,10],[1055,1,1,10,11]]],[48,2,2,11,13,[[1102,2,2,11,13]]],[49,1,1,13,14,[[1104,1,1,13,14]]],[50,2,2,14,16,[[1109,2,2,14,16]]],[52,2,2,16,18,[[1116,1,1,16,17],[1118,1,1,17,18]]],[57,2,2,18,20,[[1137,1,1,18,19],[1143,1,1,19,20]]],[59,1,1,20,21,[[1153,1,1,20,21]]]],[23372,24242,24364,25270,25657,27108,27350,28080,28084,28085,28204,29338,29342,29403,29537,29539,29657,29692,30039,30180,30430]]],["+",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25657]]],["hearken",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27350]]],["obedient",[2,2,[[43,1,1,0,1,[[1023,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]]],[27108,29342]]],["obey",[12,12,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,2,2,1,3,[[957,1,1,1,2],[960,1,1,2,3]]],[41,1,1,3,4,[[980,1,1,3,4]]],[44,2,2,4,6,[[1051,2,2,4,6]]],[48,1,1,6,7,[[1102,1,1,6,7]]],[50,2,2,7,9,[[1109,2,2,7,9]]],[52,2,2,9,11,[[1116,1,1,9,10],[1118,1,1,10,11]]],[57,1,1,11,12,[[1137,1,1,11,12]]]],[23372,24242,24364,25270,28080,28084,29338,29537,29539,29657,29692,30039]]],["obeyed",[5,5,[[44,2,2,0,2,[[1051,1,1,0,1],[1055,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]],[59,1,1,4,5,[[1153,1,1,4,5]]]],[28085,28204,29403,30180,30430]]]]},{"k":"G5220","v":[["husband",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28093]]]]},{"k":"G5221","v":[["met",[5,5,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[42,3,3,2,5,[[1007,2,2,2,4],[1008,1,1,4,5]]]],[23373,25272,26543,26553,26598]]]]},{"k":"G5222","v":[["meet",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26593]]]]},{"k":"G5223","v":[["*",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[26994,30167]]],["goods",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26994]]],["substance",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30167]]]]},{"k":"G5224","v":[["*",[14,14,[[39,3,3,0,3,[[947,1,1,0,1],[952,1,1,1,2],[953,1,1,2,3]]],[41,8,8,3,11,[[980,1,1,3,4],[983,1,1,4,5],[984,3,3,5,8],[986,1,1,8,9],[988,1,1,9,10],[991,1,1,10,11]]],[43,1,1,11,12,[[1021,1,1,11,12]]],[45,1,1,12,13,[[1074,1,1,12,13]]],[57,1,1,13,14,[[1142,1,1,13,14]]]],[23783,24004,24022,25248,25426,25474,25492,25503,25586,25621,25739,27054,28668,30167]]],["+",[7,7,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,4,4,1,5,[[984,3,3,1,4],[986,1,1,4,5]]],[43,1,1,5,6,[[1021,1,1,5,6]]],[45,1,1,6,7,[[1074,1,1,6,7]]]],[23783,25474,25492,25503,25586,27054,28668]]],["goods",[6,6,[[39,2,2,0,2,[[952,1,1,0,1],[953,1,1,1,2]]],[41,3,3,2,5,[[983,1,1,2,3],[988,1,1,3,4],[991,1,1,4,5]]],[57,1,1,5,6,[[1142,1,1,5,6]]]],[24004,24022,25426,25621,25739,30167]]],["substance",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25248]]]]},{"k":"G5225","v":[["*",[47,46,[[41,7,7,0,7,[[979,1,1,0,1],[980,1,1,1,2],[981,1,1,2,3],[983,1,1,3,4],[988,2,2,4,6],[995,1,1,6,7]]],[43,25,24,7,31,[[1019,1,1,7,8],[1020,1,1,8,9],[1021,3,2,9,11],[1022,1,1,11,12],[1024,1,1,12,13],[1025,1,1,13,14],[1027,1,1,14,15],[1031,1,1,15,16],[1033,3,3,16,19],[1034,3,3,19,22],[1036,2,2,22,24],[1038,1,1,24,25],[1039,1,1,25,26],[1044,3,3,26,29],[1045,2,2,29,31]]],[44,1,1,31,32,[[1049,1,1,31,32]]],[45,4,4,32,36,[[1068,1,1,32,33],[1072,2,2,33,35],[1073,1,1,35,36]]],[46,2,2,36,38,[[1085,1,1,36,37],[1089,1,1,37,38]]],[47,2,2,38,40,[[1091,1,1,38,39],[1092,1,1,39,40]]],[49,2,2,40,42,[[1104,1,1,40,41],[1105,1,1,41,42]]],[58,1,1,42,43,[[1147,1,1,42,43]]],[60,3,3,43,46,[[1156,1,1,43,44],[1157,1,1,44,45],[1158,1,1,45,46]]]],[25220,25286,25349,25418,25634,25643,25985,26979,27002,27056,27059,27063,27171,27192,27271,27422,27486,27503,27520,27547,27550,27552,27621,27625,27684,27707,27867,27876,27889,27906,27917,28041,28513,28607,28618,28656,28949,29038,29071,29095,29397,29441,30308,30487,30519,30533]]],["Having",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27059]]],["a",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25985]]],["after",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27876]]],["are",[3,3,[[43,2,2,0,2,[[1034,1,1,0,1],[1038,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[27552,27684,30519]]],["be",[7,7,[[43,2,2,0,2,[[1034,1,1,0,1],[1036,1,1,1,2]]],[45,2,2,2,4,[[1072,1,1,2,3],[1073,1,1,3,4]]],[58,1,1,4,5,[[1147,1,1,4,5]]],[60,2,2,5,7,[[1156,1,1,5,6],[1158,1,1,6,7]]]],[27550,27621,28618,28656,30308,30487,30533]]],["being",[13,13,[[41,2,2,0,2,[[983,1,1,0,1],[988,1,1,1,2]]],[43,6,6,2,8,[[1019,1,1,2,3],[1024,1,1,3,4],[1031,1,1,4,5],[1033,2,2,5,7],[1036,1,1,7,8]]],[46,2,2,8,10,[[1085,1,1,8,9],[1089,1,1,9,10]]],[47,2,2,10,12,[[1091,1,1,10,11],[1092,1,1,11,12]]],[49,1,1,12,13,[[1104,1,1,12,13]]]],[25418,25643,26979,27171,27422,27503,27520,27625,28949,29038,29071,29095,29397]]],["have",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27002]]],["is",[6,6,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,2,2,1,3,[[1034,1,1,1,2],[1044,1,1,2,3]]],[45,2,2,3,5,[[1068,1,1,3,4],[1072,1,1,4,5]]],[49,1,1,5,6,[[1105,1,1,5,6]]]],[25349,27547,27889,28513,28607,29441]]],["live",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25220]]],["was",[8,8,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,6,6,1,7,[[1021,1,1,1,2],[1022,1,1,2,3],[1033,1,1,3,4],[1039,1,1,4,5],[1044,1,1,5,6],[1045,1,1,6,7]]],[44,1,1,7,8,[[1049,1,1,7,8]]]],[25286,27056,27063,27486,27707,27867,27917,28041]]],["were",[5,5,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,4,4,1,5,[[1021,1,1,1,2],[1025,1,1,2,3],[1027,1,1,3,4],[1045,1,1,4,5]]]],[25634,27056,27192,27271,27906]]]]},{"k":"G5226","v":[["submit",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30258]]]]},{"k":"G5227","v":[["*",[2,2,[[50,1,1,0,1,[[1108,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[29508,30160]]],["adversaries",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30160]]],["contrary",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29508]]]]},{"k":"G5228","v":[["*",[160,144,[[39,5,3,0,3,[[933,1,1,0,1],[938,4,2,1,3]]],[40,1,1,3,4,[[965,1,1,3,4]]],[41,6,6,4,10,[[978,2,2,4,6],[981,1,1,6,7],[988,1,1,7,8],[994,2,2,8,10]]],[42,12,12,10,22,[[1002,1,1,10,11],[1006,2,2,11,13],[1007,4,4,13,17],[1009,2,2,17,19],[1011,1,1,19,20],[1013,1,1,20,21],[1014,1,1,21,22]]],[43,9,9,22,31,[[1022,1,1,22,23],[1025,1,1,23,24],[1026,1,1,24,25],[1029,1,1,25,26],[1032,1,1,26,27],[1038,2,2,27,29],[1043,2,2,29,31]]],[44,19,18,31,49,[[1046,2,2,31,33],[1050,4,3,33,36],[1053,5,5,36,41],[1054,2,2,41,43],[1055,1,1,43,44],[1059,1,1,44,45],[1060,3,3,45,48],[1061,1,1,48,49]]],[45,11,9,49,58,[[1062,1,1,49,50],[1065,2,1,50,51],[1066,1,1,51,52],[1071,2,2,52,54],[1072,1,1,54,55],[1073,1,1,55,56],[1076,3,2,56,58]]],[46,37,31,58,89,[[1078,7,4,58,62],[1082,7,5,62,67],[1084,4,4,67,71],[1085,4,4,71,75],[1086,3,3,75,78],[1088,2,2,78,80],[1089,9,8,80,88],[1090,1,1,88,89]]],[47,4,4,89,93,[[1091,2,2,89,91],[1092,1,1,91,92],[1093,1,1,92,93]]],[48,11,10,93,103,[[1097,2,2,93,95],[1099,4,3,95,98],[1101,3,3,98,101],[1102,2,2,101,103]]],[49,7,6,103,109,[[1103,4,3,103,106],[1104,2,2,106,108],[1106,1,1,108,109]]],[50,6,5,109,114,[[1107,4,3,109,112],[1110,2,2,112,114]]],[51,3,3,114,117,[[1113,1,1,114,115],[1115,2,2,115,117]]],[52,3,3,117,120,[[1116,2,2,117,119],[1117,1,1,119,120]]],[53,3,3,120,123,[[1120,3,3,120,123]]],[55,1,1,123,124,[[1130,1,1,123,124]]],[56,3,3,124,127,[[1132,3,3,124,127]]],[57,12,11,127,138,[[1134,1,1,127,128],[1136,1,1,128,129],[1137,3,2,129,131],[1138,1,1,131,132],[1139,2,2,132,134],[1141,2,2,134,136],[1142,1,1,136,137],[1145,1,1,137,138]]],[58,1,1,138,139,[[1150,1,1,138,139]]],[59,3,3,139,142,[[1152,1,1,139,140],[1153,1,1,140,141],[1154,1,1,141,142]]],[61,2,1,142,143,[[1161,2,1,142,143]]],[63,1,1,143,144,[[1165,1,1,143,144]]]],[23278,23441,23454,24578,25174,25186,25351,25628,25883,25884,26308,26492,26496,26527,26573,26574,26575,26667,26668,26712,26778,26799,27100,27200,27232,27342,27468,27677,27690,27824,27836,27935,27938,28053,28054,28055,28142,28143,28147,28148,28150,28158,28182,28189,28295,28311,28312,28333,28340,28376,28439,28461,28580,28597,28624,28659,28721,28747,28806,28807,28808,28811,28889,28891,28892,28897,28898,28920,28923,28928,28930,28935,28948,28955,28956,28958,28959,28970,28994,29012,29027,29028,29030,29032,29033,29035,29037,29041,29051,29061,29071,29101,29115,29222,29228,29252,29264,29271,29306,29324,29329,29356,29357,29365,29368,29390,29400,29404,29452,29472,29474,29489,29554,29555,29600,29631,29634,29653,29654,29662,29717,29718,29722,29922,29951,29954,29959,29986,30026,30031,30033,30064,30089,30091,30112,30129,30145,30258,30370,30420,30442,30447,30595,30665]]],["+",[21,21,[[40,1,1,0,1,[[965,1,1,0,1]]],[42,3,3,1,4,[[1009,2,2,1,3],[1013,1,1,3,4]]],[45,1,1,4,5,[[1073,1,1,4,5]]],[46,7,7,5,12,[[1078,1,1,5,6],[1082,2,2,6,8],[1085,1,1,8,9],[1088,1,1,9,10],[1089,2,2,10,12]]],[48,1,1,12,13,[[1099,1,1,12,13]]],[49,1,1,13,14,[[1103,1,1,13,14]]],[50,1,1,14,15,[[1107,1,1,14,15]]],[51,2,2,15,17,[[1113,1,1,15,16],[1115,1,1,16,17]]],[56,2,2,17,19,[[1132,2,2,17,19]]],[58,1,1,19,20,[[1150,1,1,19,20]]],[63,1,1,20,21,[[1165,1,1,20,21]]]],[24578,26667,26668,26778,28659,28811,28889,28897,28956,28994,29032,29033,29271,29390,29489,29600,29634,29951,29959,30370,30665]]],["For",[3,3,[[46,1,1,0,1,[[1089,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]],[53,1,1,2,3,[[1120,1,1,2,3]]]],[29030,29357,29718]]],["Of",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29027]]],["above",[12,11,[[39,2,1,0,1,[[938,2,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[43,1,1,2,3,[[1043,1,1,2,3]]],[45,2,2,3,5,[[1065,1,1,3,4],[1071,1,1,4,5]]],[46,2,2,5,7,[[1078,1,1,5,6],[1089,1,1,6,7]]],[47,1,1,7,8,[[1091,1,1,7,8]]],[48,1,1,8,9,[[1099,1,1,8,9]]],[49,1,1,9,10,[[1104,1,1,9,10]]],[56,1,1,10,11,[[1132,1,1,10,11]]]],[23441,25186,27836,28439,28580,28808,29028,29071,29271,29400,29954]]],["behalf",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29390]]],["beyond",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28935]]],["by",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29662]]],["concerning",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28182]]],["for",[100,94,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,4,4,1,5,[[978,1,1,1,2],[981,1,1,2,3],[994,2,2,3,5]]],[42,9,9,5,14,[[1002,1,1,5,6],[1006,2,2,6,8],[1007,4,4,8,12],[1011,1,1,12,13],[1014,1,1,13,14]]],[43,8,8,14,22,[[1022,1,1,14,15],[1025,1,1,15,16],[1026,1,1,16,17],[1029,1,1,17,18],[1032,1,1,18,19],[1038,2,2,19,21],[1043,1,1,21,22]]],[44,18,17,22,39,[[1046,2,2,22,24],[1050,4,3,24,27],[1053,5,5,27,32],[1054,1,1,32,33],[1055,1,1,33,34],[1059,1,1,34,35],[1060,3,3,35,38],[1061,1,1,38,39]]],[45,8,7,39,46,[[1062,1,1,39,40],[1065,1,1,40,41],[1066,1,1,41,42],[1071,1,1,42,43],[1072,1,1,43,44],[1076,3,2,44,46]]],[46,14,12,46,58,[[1078,3,2,46,48],[1082,5,4,48,52],[1084,1,1,52,53],[1085,1,1,53,54],[1086,1,1,54,55],[1089,2,2,55,57],[1090,1,1,57,58]]],[47,3,3,58,61,[[1091,1,1,58,59],[1092,1,1,59,60],[1093,1,1,60,61]]],[48,7,7,61,68,[[1097,1,1,61,62],[1099,2,2,62,64],[1101,3,3,64,67],[1102,1,1,67,68]]],[49,1,1,68,69,[[1103,1,1,68,69]]],[50,5,5,69,74,[[1107,3,3,69,72],[1110,2,2,72,74]]],[51,1,1,74,75,[[1115,1,1,74,75]]],[52,2,2,75,77,[[1116,2,2,75,77]]],[53,2,2,77,79,[[1120,2,2,77,79]]],[55,1,1,79,80,[[1130,1,1,79,80]]],[57,11,10,80,90,[[1134,1,1,80,81],[1137,3,2,81,83],[1138,1,1,83,84],[1139,2,2,84,86],[1141,2,2,86,88],[1142,1,1,88,89],[1145,1,1,89,90]]],[59,3,3,90,93,[[1152,1,1,90,91],[1153,1,1,91,92],[1154,1,1,92,93]]],[61,2,1,93,94,[[1161,2,1,93,94]]]],[23278,25174,25351,25883,25884,26308,26492,26496,26527,26573,26574,26575,26712,26799,27100,27200,27232,27342,27468,27677,27690,27824,27935,27938,28053,28054,28055,28142,28143,28147,28148,28150,28158,28189,28295,28311,28312,28333,28340,28376,28439,28461,28597,28624,28721,28747,28806,28811,28891,28892,28897,28898,28928,28948,28970,29037,29041,29051,29061,29101,29115,29222,29252,29264,29306,29324,29329,29356,29365,29472,29474,29489,29554,29555,29631,29653,29654,29717,29722,29922,29986,30031,30033,30064,30089,30091,30112,30129,30145,30258,30420,30442,30447,30595]]],["his",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29404]]],["more",[3,2,[[39,2,1,0,1,[[938,2,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[23454,29012]]],["of",[10,10,[[46,8,8,0,8,[[1078,2,2,0,2],[1084,2,2,2,4],[1085,1,1,4,5],[1086,2,2,5,7],[1089,1,1,7,8]]],[49,2,2,8,10,[[1103,1,1,8,9],[1106,1,1,9,10]]]],[28807,28808,28920,28930,28955,28958,28959,29027,29368,29452]]],["over",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29228]]],["than",[2,2,[[41,1,1,0,1,[[988,1,1,0,1]]],[57,1,1,1,2,[[1136,1,1,1,2]]]],[25628,30026]]],["to",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29035]]],["toward",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28923]]]]},{"k":"G5229","v":[["*",[3,2,[[46,2,1,0,1,[[1089,2,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]]],[29029,29665]]],["himself",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29665]]],["measure",[2,1,[[46,2,1,0,1,[[1089,2,1,0,1]]]],[29029]]]]},{"k":"G5230","v":[["+",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28523]]]]},{"k":"G5231","v":[["*",[3,3,[[48,2,2,0,2,[[1097,1,1,0,1],[1100,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[29227,29282,30110]]],["above",[2,2,[[48,2,2,0,2,[[1097,1,1,0,1],[1100,1,1,1,2]]]],[29227,29282]]],["over",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30110]]]]},{"k":"G5232","v":[["exceedingly",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29652]]]]},{"k":"G5233","v":[["beyond",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29609]]]]},{"k":"G5234","v":[["measure",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29012]]]]},{"k":"G5235","v":[["*",[5,5,[[46,2,2,0,2,[[1080,1,1,0,1],[1086,1,1,1,2]]],[48,3,3,2,5,[[1097,1,1,2,3],[1098,1,1,3,4],[1099,1,1,4,5]]]],[28851,28970,29225,29236,29270]]],["exceeding",[3,3,[[46,1,1,0,1,[[1086,1,1,0,1]]],[48,2,2,1,3,[[1097,1,1,1,2],[1098,1,1,2,3]]]],[28970,29225,29236]]],["excelleth",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28851]]],["passeth",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29270]]]]},{"k":"G5236","v":[["*",[8,7,[[44,1,1,0,1,[[1052,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]],[46,5,4,2,6,[[1078,1,1,2,3],[1081,3,2,3,5],[1089,1,1,5,6]]],[47,1,1,6,7,[[1091,1,1,6,7]]]],[28104,28665,28808,28866,28876,29029,29070]]],["+",[6,5,[[44,1,1,0,1,[[1052,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]],[46,3,2,2,4,[[1078,1,1,2,3],[1081,2,1,3,4]]],[47,1,1,4,5,[[1091,1,1,4,5]]]],[28104,28665,28808,28876,29070]]],["abundance",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29029]]],["excellency",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28866]]]]},{"k":"G5237","v":[["winked",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27553]]]]},{"k":"G5238","v":[["beyond",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28987]]]]},{"k":"G5239","v":[["+",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28985]]]]},{"k":"G5240","v":[["over",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25184]]]]},{"k":"G5241","v":[["intercession",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28142]]]]},{"k":"G5242","v":[["*",[5,5,[[44,1,1,0,1,[[1058,1,1,0,1]]],[49,3,3,1,4,[[1104,1,1,1,2],[1105,1,1,2,3],[1106,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[28267,29394,29429,29449,30412]]],["better",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29394]]],["excellency",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29429]]],["higher",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28267]]],["passeth",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29449]]],["supreme",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30412]]]]},{"k":"G5243","v":[["pride",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24485]]]]},{"k":"G5244","v":[["proud",[5,5,[[41,1,1,0,1,[[973,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[54,1,1,2,3,[[1127,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]],[59,1,1,4,5,[[1155,1,1,4,5]]]],[24944,27960,29855,30343,30470]]]]},{"k":"G5245","v":[["conquerors",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28153]]]]},{"k":"G5246","v":[["swelling",[2,2,[[60,1,1,0,1,[[1157,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[30518,30688]]]]},{"k":"G5247","v":[["*",[2,2,[[45,1,1,0,1,[[1063,1,1,0,1]]],[53,1,1,1,2,[[1120,1,1,1,2]]]],[28395,29718]]],["authority",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29718]]],["excellency",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28395]]]]},{"k":"G5248","v":[["*",[2,2,[[44,1,1,0,1,[[1050,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]]],[28067,28920]]],["abound",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28067]]],["exceeding",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28920]]]]},{"k":"G5249","v":[["measure",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24500]]]]},{"k":"G5250","v":[["abundant",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29710]]]]},{"k":"G5251","v":[["exalted",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29400]]]]},{"k":"G5252","v":[["+",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28248]]]]},{"k":"G5253","v":[["*",[4,4,[[43,4,4,0,4,[[1018,1,1,0,1],[1026,2,2,1,3],[1037,1,1,3,4]]]],[26936,27253,27255,27634]]],["chamber",[3,3,[[43,3,3,0,3,[[1026,2,2,0,2],[1037,1,1,2,3]]]],[27253,27255,27634]]],["room",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26936]]]]},{"k":"G5254","v":[["suffering",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30679]]]]},{"k":"G5255","v":[["*",[3,3,[[43,1,1,0,1,[[1024,1,1,0,1]]],[46,1,1,1,2,[[1079,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[27155,28833,29399]]],["+",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27155]]],["obedient",[2,2,[[46,1,1,0,1,[[1079,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[28833,29399]]]]},{"k":"G5256","v":[["*",[3,3,[[43,3,3,0,3,[[1030,1,1,0,1],[1037,1,1,1,2],[1041,1,1,2,3]]]],[27398,27660,27792]]],["minister",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27792]]],["ministered",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27660]]],["served",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27398]]]]},{"k":"G5257","v":[["*",[20,20,[[39,2,2,0,2,[[933,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[970,2,2,2,4]]],[41,2,2,4,6,[[973,1,1,4,5],[976,1,1,5,6]]],[42,9,9,6,15,[[1003,3,3,6,9],[1014,5,5,9,14],[1015,1,1,14,15]]],[43,4,4,15,19,[[1022,2,2,15,17],[1030,1,1,17,18],[1043,1,1,18,19]]],[45,1,1,19,20,[[1065,1,1,19,20]]]],[23259,24112,24808,24819,24895,25083,26360,26373,26374,26788,26797,26803,26807,26821,26831,27081,27085,27367,27839,28434]]],["minister",[3,3,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,2,2,1,3,[[1030,1,1,1,2],[1043,1,1,2,3]]]],[25083,27367,27839]]],["ministers",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]]],[24895,28434]]],["officer",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23259]]],["officers",[10,10,[[42,8,8,0,8,[[1003,3,3,0,3],[1014,4,4,3,7],[1015,1,1,7,8]]],[43,2,2,8,10,[[1022,2,2,8,10]]]],[26360,26373,26374,26788,26797,26803,26807,26831,27081,27085]]],["servants",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[970,2,2,1,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]]],[24112,24808,24819,26821]]]]},{"k":"G5258","v":[["sleep",[6,5,[[39,1,1,0,1,[[929,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[42,1,1,2,3,[[1007,1,1,2,3]]],[43,2,1,3,4,[[1037,2,1,3,4]]],[44,1,1,4,5,[[1058,1,1,4,5]]]],[23168,25333,26536,27635,28277]]]]},{"k":"G5259","v":[["*",[227,208,[[39,31,29,0,29,[[929,1,1,0,1],[930,3,3,1,4],[931,4,4,4,8],[932,2,1,8,9],[933,2,2,9,11],[934,1,1,11,12],[936,4,3,12,15],[938,1,1,15,16],[939,2,2,16,18],[942,2,2,18,20],[945,1,1,20,21],[947,1,1,21,22],[948,1,1,22,23],[950,1,1,23,24],[951,2,2,24,26],[952,1,1,26,27],[955,2,2,27,29]]],[40,12,11,29,40,[[957,3,3,29,32],[958,1,1,32,33],[960,3,2,33,35],[961,2,2,35,37],[969,2,2,37,39],[972,1,1,39,40]]],[41,36,32,40,72,[[973,1,1,40,41],[974,3,3,41,44],[975,2,2,44,46],[976,2,2,46,48],[977,1,1,48,49],[978,1,1,49,50],[979,5,4,50,54],[980,3,3,54,57],[981,3,2,57,59],[982,1,1,59,60],[983,1,1,60,61],[985,2,2,61,63],[986,2,1,63,64],[988,1,1,64,65],[989,3,2,65,67],[993,4,4,67,71],[995,1,1,71,72]]],[42,4,4,72,76,[[997,1,1,72,73],[1004,1,1,73,74],[1006,1,1,74,75],[1010,1,1,75,76]]],[43,42,40,76,116,[[1019,2,2,76,78],[1021,3,3,78,81],[1022,2,2,81,83],[1025,1,1,83,84],[1027,6,5,84,89],[1029,1,1,89,90],[1030,2,2,90,92],[1032,3,3,92,95],[1033,4,4,95,99],[1034,2,2,99,101],[1037,1,1,101,102],[1038,1,1,102,103],[1039,2,2,103,105],[1040,4,3,105,108],[1041,2,2,108,110],[1042,1,1,110,111],[1043,3,3,111,114],[1044,2,2,114,116]]],[44,13,11,116,127,[[1048,3,3,116,119],[1051,4,2,119,121],[1052,1,1,121,122],[1057,1,1,122,123],[1058,1,1,123,124],[1060,2,2,124,126],[1061,1,1,126,127]]],[45,20,16,127,143,[[1062,1,1,127,128],[1063,2,2,128,130],[1065,2,1,130,131],[1067,1,1,131,132],[1068,1,1,132,133],[1069,1,1,133,134],[1070,3,1,134,135],[1071,4,4,135,139],[1072,1,1,139,140],[1075,2,1,140,141],[1076,2,2,141,143]]],[46,11,10,143,153,[[1078,2,2,143,145],[1079,1,1,145,146],[1080,2,2,146,148],[1082,1,1,148,149],[1085,3,2,149,151],[1088,1,1,151,152],[1089,1,1,152,153]]],[47,13,13,153,166,[[1091,1,1,153,154],[1093,5,5,154,159],[1094,6,6,159,165],[1095,1,1,165,166]]],[48,4,4,166,170,[[1097,1,1,166,167],[1098,1,1,167,168],[1101,2,2,168,170]]],[49,2,2,170,172,[[1103,1,1,170,171],[1105,1,1,171,172]]],[50,2,2,172,174,[[1107,1,1,172,173],[1108,1,1,173,174]]],[51,4,3,174,177,[[1111,1,1,174,175],[1112,3,2,175,177]]],[52,1,1,177,178,[[1117,1,1,177,178]]],[53,1,1,178,179,[[1124,1,1,178,179]]],[54,1,1,179,180,[[1126,1,1,179,180]]],[57,9,9,180,189,[[1134,1,1,180,181],[1135,1,1,181,182],[1137,2,2,182,184],[1139,1,1,184,185],[1141,1,1,185,186],[1143,1,1,186,187],[1144,2,2,187,189]]],[58,6,5,189,194,[[1146,1,1,189,190],[1147,2,2,190,192],[1148,3,2,192,194]]],[59,2,2,194,196,[[1152,1,1,194,195],[1155,1,1,195,196]]],[60,5,5,196,201,[[1156,2,2,196,198],[1157,2,2,198,200],[1158,1,1,200,201]]],[63,2,1,201,202,[[1165,2,1,201,202]]],[64,3,3,202,205,[[1166,3,3,202,205]]],[65,3,3,205,208,[[1172,2,2,205,207],[1175,1,1,207,208]]]],[23166,23184,23185,23186,23195,23198,23205,23206,23210,23247,23249,23284,23353,23354,23369,23439,23466,23486,23605,23621,23712,23774,23815,23903,23925,23955,23966,24141,24164,24220,24224,24228,24263,24344,24355,24368,24390,24730,24731,24884,24919,24991,24994,24999,25032,25044,25065,25078,25122,25164,25201,25203,25219,25225,25259,25274,25288,25308,25309,25385,25438,25535,25552,25561,25642,25671,25675,25842,25843,25846,25850,25943,26092,26390,26495,26689,26954,26973,27033,27034,27058,27075,27080,27182,27281,27292,27297,27300,27301,27342,27366,27407,27445,27446,27482,27485,27487,27489,27497,27536,27548,27629,27699,27715,27716,27744,27761,27764,27790,27795,27810,27825,27829,27830,27866,27896,28000,28004,28012,28082,28083,28105,28266,28267,28318,28327,28356,28374,28406,28409,28436,28479,28512,28530,28560,28568,28576,28577,28596,28632,28702,28743,28745,28804,28816,28830,28843,28844,28881,28951,28952,29013,29033,29068,29112,29119,29124,29125,29127,29133,29134,29135,29136,29140,29152,29180,29228,29240,29316,29317,29389,29433,29488,29512,29564,29574,29584,29674,29789,29853,29980,29999,30034,30040,30071,30124,30195,30215,30217,30280,30296,30302,30323,30325,30403,30471,30496,30500,30507,30517,30524,30670,30678,30684,30689,30801,30806,30858]]],["+",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27080]]],["By",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30858]]],["Of",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29013]]],["among",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27281]]],["by",[41,41,[[39,4,4,0,4,[[930,1,1,0,1],[931,1,1,1,2],[950,1,1,2,3],[955,1,1,3,4]]],[40,2,2,4,6,[[961,1,1,4,5],[969,1,1,5,6]]],[41,9,9,6,15,[[974,2,2,6,8],[975,1,1,8,9],[977,1,1,9,10],[981,1,1,10,11],[985,1,1,11,12],[988,1,1,12,13],[993,1,1,13,14],[995,1,1,14,15]]],[42,1,1,15,16,[[1004,1,1,15,16]]],[43,10,10,16,26,[[1021,1,1,16,17],[1027,1,1,17,18],[1030,2,2,18,20],[1032,2,2,20,22],[1033,1,1,22,23],[1041,1,1,23,24],[1042,1,1,24,25],[1044,1,1,25,26]]],[44,2,2,26,28,[[1048,1,1,26,27],[1060,1,1,27,28]]],[45,1,1,28,29,[[1062,1,1,28,29]]],[46,3,3,29,32,[[1080,1,1,29,30],[1085,2,2,30,32]]],[48,2,2,32,34,[[1098,1,1,32,33],[1101,1,1,33,34]]],[49,1,1,34,35,[[1103,1,1,34,35]]],[50,1,1,35,36,[[1108,1,1,35,36]]],[54,1,1,36,37,[[1126,1,1,36,37]]],[57,2,2,37,39,[[1134,1,1,37,38],[1135,1,1,38,39]]],[60,2,2,39,41,[[1156,1,1,39,40],[1158,1,1,40,41]]]],[23186,23195,23903,24164,24368,24731,24991,24999,25044,25122,25308,25535,25642,25842,25943,26390,27058,27281,27366,27407,27445,27482,27485,27790,27810,27866,28012,28327,28374,28844,28951,28952,29240,29317,29389,29512,29853,29980,29999,30500,30524]]],["from",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[24919,30496]]],["of",[114,107,[[39,19,18,0,18,[[929,1,1,0,1],[930,2,2,1,3],[931,3,3,3,6],[932,2,1,6,7],[933,1,1,7,8],[934,1,1,8,9],[938,1,1,9,10],[939,1,1,10,11],[942,1,1,11,12],[945,1,1,12,13],[947,1,1,13,14],[948,1,1,14,15],[951,1,1,15,16],[952,1,1,16,17],[955,1,1,17,18]]],[40,7,7,18,25,[[957,3,3,18,21],[958,1,1,21,22],[961,1,1,22,23],[969,1,1,23,24],[972,1,1,24,25]]],[41,15,14,25,39,[[974,1,1,25,26],[975,1,1,26,27],[976,2,2,27,29],[979,1,1,29,30],[980,2,2,30,32],[981,2,2,32,34],[982,1,1,34,35],[986,2,1,35,36],[989,1,1,36,37],[993,2,2,37,39]]],[42,2,2,39,41,[[1006,1,1,39,40],[1010,1,1,40,41]]],[43,22,21,41,62,[[1019,1,1,41,42],[1021,1,1,42,43],[1027,4,4,43,47],[1029,1,1,47,48],[1032,1,1,48,49],[1033,3,3,49,52],[1034,1,1,52,53],[1038,1,1,53,54],[1039,2,2,54,56],[1040,3,2,56,58],[1041,1,1,58,59],[1043,3,3,59,62]]],[44,3,3,62,65,[[1057,1,1,62,63],[1058,1,1,63,64],[1060,1,1,64,65]]],[45,13,11,65,76,[[1063,2,2,65,67],[1065,2,1,67,68],[1067,1,1,68,69],[1068,1,1,69,70],[1069,1,1,70,71],[1071,3,3,71,74],[1072,1,1,74,75],[1075,2,1,75,76]]],[46,7,7,76,83,[[1078,2,2,76,78],[1079,1,1,78,79],[1080,1,1,79,80],[1082,1,1,80,81],[1085,1,1,81,82],[1089,1,1,82,83]]],[47,3,3,83,86,[[1091,1,1,83,84],[1093,1,1,84,85],[1094,1,1,85,86]]],[48,1,1,86,87,[[1101,1,1,86,87]]],[49,1,1,87,88,[[1105,1,1,87,88]]],[51,4,3,88,91,[[1111,1,1,88,89],[1112,3,2,89,91]]],[52,1,1,91,92,[[1117,1,1,91,92]]],[57,6,6,92,98,[[1137,2,2,92,94],[1139,1,1,94,95],[1143,1,1,95,96],[1144,2,2,96,98]]],[58,4,4,98,102,[[1146,1,1,98,99],[1147,1,1,99,100],[1148,2,2,100,102]]],[59,1,1,102,103,[[1152,1,1,102,103]]],[63,2,1,103,104,[[1165,2,1,103,104]]],[64,2,2,104,106,[[1166,2,2,104,106]]],[65,1,1,106,107,[[1172,1,1,106,107]]]],[23166,23184,23185,23198,23205,23206,23210,23247,23284,23439,23486,23605,23712,23774,23815,23925,23966,24141,24220,24224,24228,24263,24390,24730,24884,24994,25032,25065,25078,25225,25274,25288,25308,25309,25385,25561,25671,25843,25850,26495,26689,26973,27033,27292,27297,27300,27301,27342,27446,27487,27489,27497,27536,27699,27715,27716,27744,27761,27795,27825,27829,27830,28266,28267,28318,28406,28409,28436,28479,28512,28530,28576,28577,28596,28632,28702,28804,28816,28830,28843,28881,28951,29033,29068,29119,29140,29316,29433,29564,29574,29584,29674,30034,30040,30071,30195,30215,30217,30280,30302,30323,30325,30403,30670,30684,30689,30806]]],["that",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27764]]],["under",[48,40,[[39,5,4,0,4,[[933,1,1,0,1],[936,3,2,1,3],[951,1,1,3,4]]],[40,3,2,4,6,[[960,3,2,4,6]]],[41,7,5,6,11,[[979,3,2,6,8],[983,1,1,8,9],[985,1,1,9,10],[989,2,1,10,11]]],[42,1,1,11,12,[[997,1,1,11,12]]],[43,2,2,12,14,[[1019,1,1,12,13],[1021,1,1,13,14]]],[44,8,6,14,20,[[1048,2,2,14,16],[1051,4,2,16,18],[1052,1,1,18,19],[1061,1,1,19,20]]],[45,6,4,20,24,[[1070,3,1,20,21],[1071,1,1,21,22],[1076,2,2,22,24]]],[47,10,10,24,34,[[1093,4,4,24,28],[1094,5,5,28,33],[1095,1,1,33,34]]],[48,1,1,34,35,[[1097,1,1,34,35]]],[50,1,1,35,36,[[1107,1,1,35,36]]],[53,1,1,36,37,[[1124,1,1,36,37]]],[58,1,1,37,38,[[1147,1,1,37,38]]],[59,1,1,38,39,[[1155,1,1,38,39]]],[64,1,1,39,40,[[1166,1,1,39,40]]]],[23249,23353,23354,23955,24344,24355,25201,25203,25438,25552,25675,26092,26954,27034,28000,28004,28082,28083,28105,28356,28560,28568,28743,28745,29112,29124,29125,29127,29133,29134,29135,29136,29152,29180,29228,29488,29789,30296,30471,30678]]],["when",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[27629,30124]]],["which",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27182]]],["with",[14,14,[[39,3,3,0,3,[[936,1,1,0,1],[939,1,1,1,2],[942,1,1,2,3]]],[41,4,4,3,7,[[978,1,1,3,4],[979,1,1,4,5],[980,1,1,5,6],[993,1,1,6,7]]],[43,3,3,7,10,[[1022,1,1,7,8],[1034,1,1,8,9],[1044,1,1,9,10]]],[58,1,1,10,11,[[1148,1,1,10,11]]],[60,2,2,11,13,[[1157,2,2,11,13]]],[65,1,1,13,14,[[1172,1,1,13,14]]]],[23369,23466,23621,25164,25219,25259,25846,27075,27548,27896,30323,30507,30517,30801]]]]},{"k":"G5260","v":[["suborned",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27112]]]]},{"k":"G5261","v":[["example",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30420]]]]},{"k":"G5262","v":[["*",[6,6,[[42,1,1,0,1,[[1009,1,1,0,1]]],[57,3,3,1,4,[[1136,1,1,1,2],[1140,1,1,2,3],[1141,1,1,3,4]]],[58,1,1,4,5,[[1150,1,1,4,5]]],[60,1,1,5,6,[[1157,1,1,5,6]]]],[26645,30025,30097,30128,30364,30506]]],["ensample",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30506]]],["example",[4,4,[[42,1,1,0,1,[[1009,1,1,0,1]]],[57,2,2,1,3,[[1136,1,1,1,2],[1140,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]]],[26645,30025,30097,30364]]],["patterns",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30128]]]]},{"k":"G5263","v":[["*",[6,6,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,3,3,1,4,[[975,1,1,1,2],[978,1,1,2,3],[984,1,1,3,4]]],[43,2,2,4,6,[[1026,1,1,4,5],[1037,1,1,5,6]]]],[23199,25032,25193,25464,27232,27661]]],["forewarn",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25464]]],["shew",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[25193,27232]]],["shewed",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27661]]],["warned",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23199,25032]]]]},{"k":"G5264","v":[["received",[4,4,[[41,2,2,0,2,[[982,1,1,0,1],[991,1,1,1,2]]],[43,1,1,2,3,[[1034,1,1,2,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[25401,25737,27530,30318]]]]},{"k":"G5265","v":[["*",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]]],[24416,27345,29352]]],["bind",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27345]]],["shod",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]]],[24416,29352]]]]},{"k":"G5266","v":[["*",[10,10,[[39,2,2,0,2,[[931,1,1,0,1],[938,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,4,4,3,7,[[975,1,1,3,4],[982,1,1,4,5],[987,1,1,5,6],[994,1,1,6,7]]],[42,1,1,7,8,[[997,1,1,7,8]]],[43,2,2,8,10,[[1024,1,1,8,9],[1030,1,1,9,10]]]],[23203,23427,24222,25041,25367,25610,25899,26071,27149,27387]]],["+",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25899]]],["shoe's",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26071]]],["shoes",[8,8,[[39,2,2,0,2,[[931,1,1,0,1],[938,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,3,3,3,6,[[975,1,1,3,4],[982,1,1,4,5],[987,1,1,5,6]]],[43,2,2,6,8,[[1024,1,1,6,7],[1030,1,1,7,8]]]],[23203,23427,24222,25041,25367,25610,27149,27387]]]]},{"k":"G5267","v":[["guilty",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28010]]]]},{"k":"G5268","v":[["ass",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[23831,30516]]]]},{"k":"G5269","v":[["undergirding",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27872]]]]},{"k":"G5270","v":[["under",[9,9,[[40,2,2,0,2,[[962,1,1,0,1],[963,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[42,1,1,3,4,[[997,1,1,3,4]]],[57,1,1,4,5,[[1134,1,1,4,5]]],[65,4,4,5,9,[[1171,2,2,5,7],[1172,1,1,7,8],[1178,1,1,8,9]]]],[24418,24491,25261,26094,29985,30782,30792,30802,30892]]]]},{"k":"G5271","v":[["feign",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25799]]]]},{"k":"G5272","v":[["*",[7,7,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[47,1,1,3,4,[[1092,1,1,3,4]]],[53,1,1,4,5,[[1122,1,1,4,5]]],[58,1,1,5,6,[[1150,1,1,5,6]]],[59,1,1,6,7,[[1152,1,1,6,7]]]],[23946,24688,25460,29094,29749,30366,30400]]],["condemnation",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30366]]],["dissimulation",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29094]]],["hypocrisies",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30400]]],["hypocrisy",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[53,1,1,3,4,[[1122,1,1,3,4]]]],[23946,24688,25460,29749]]]]},{"k":"G5273","v":[["*",[20,20,[[39,15,15,0,15,[[934,3,3,0,3],[935,1,1,3,4],[943,1,1,4,5],[944,1,1,5,6],[950,1,1,6,7],[951,7,7,7,14],[952,1,1,14,15]]],[40,1,1,15,16,[[963,1,1,15,16]]],[41,4,4,16,20,[[978,1,1,16,17],[983,1,1,17,18],[984,1,1,18,19],[985,1,1,19,20]]]],[23284,23287,23298,23321,23640,23675,23890,23931,23932,23933,23941,23943,23945,23947,24008,24469,25188,25449,25515,25533]]],["hypocrite",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,2,2,1,3,[[978,1,1,1,2],[985,1,1,2,3]]]],[23321,25188,25533]]],["hypocrites",[17,17,[[39,14,14,0,14,[[934,3,3,0,3],[943,1,1,3,4],[944,1,1,4,5],[950,1,1,5,6],[951,7,7,6,13],[952,1,1,13,14]]],[40,1,1,14,15,[[963,1,1,14,15]]],[41,2,2,15,17,[[983,1,1,15,16],[984,1,1,16,17]]]],[23284,23287,23298,23640,23675,23890,23931,23932,23933,23941,23943,23945,23947,24008,24469,25449,25515]]]]},{"k":"G5274","v":[["*",[4,4,[[41,2,2,0,2,[[979,1,1,0,1],[982,1,1,1,2]]],[43,2,2,2,4,[[1018,1,1,2,3],[1019,1,1,3,4]]]],[25238,25393,26932,26964]]],["answering",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25393]]],["received",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26932]]],["suppose",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[25238,26964]]]]},{"k":"G5275","v":[["left",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28212]]]]},{"k":"G5276","v":[["winefat",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24674]]]]},{"k":"G5277","v":[["leaving",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30420]]]]},{"k":"G5278","v":[["*",[17,16,[[39,2,2,0,2,[[938,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,1,1,3,4,[[974,1,1,3,4]]],[43,1,1,4,5,[[1034,1,1,4,5]]],[44,1,1,5,6,[[1057,1,1,5,6]]],[45,1,1,6,7,[[1074,1,1,6,7]]],[54,2,2,7,9,[[1126,2,2,7,9]]],[57,4,4,9,13,[[1142,1,1,9,10],[1144,3,3,10,13]]],[58,2,2,13,15,[[1146,1,1,13,14],[1150,1,1,14,15]]],[59,2,1,15,16,[[1152,2,1,15,16]]]],[23439,23970,24730,25016,27537,28257,28672,29837,29839,30165,30214,30215,30219,30278,30365,30419]]],["abode",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27537]]],["behind",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25016]]],["endure",[5,5,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]],[58,1,1,4,5,[[1150,1,1,4,5]]]],[23970,24730,29837,30219,30365]]],["endured",[3,3,[[57,3,3,0,3,[[1142,1,1,0,1],[1144,2,2,1,3]]]],[30165,30214,30215]]],["endureth",[3,3,[[39,1,1,0,1,[[938,1,1,0,1]]],[45,1,1,1,2,[[1074,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[23439,28672,30278]]],["patient",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28257]]],["patiently",[2,1,[[59,2,1,0,1,[[1152,2,1,0,1]]]],[30419]]],["suffer",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29839]]]]},{"k":"G5279","v":[["*",[7,7,[[41,1,1,0,1,[[994,1,1,0,1]]],[42,1,1,1,2,[[1010,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[55,1,1,3,4,[[1131,1,1,3,4]]],[60,1,1,4,5,[[1156,1,1,4,5]]],[63,1,1,5,6,[[1165,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[25925,26694,29841,29924,30491,30668,30677]]],["+",[4,4,[[42,1,1,0,1,[[1010,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]],[60,1,1,2,3,[[1156,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[26694,29924,30491,30677]]],["remember",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30668]]],["remembered",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25925]]],["remembrance",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29841]]]]},{"k":"G5280","v":[["*",[3,3,[[54,1,1,0,1,[[1125,1,1,0,1]]],[60,2,2,1,3,[[1156,1,1,1,2],[1158,1,1,2,3]]]],[29814,30492,30523]]],["+",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30492]]],["remembrance",[2,2,[[54,1,1,0,1,[[1125,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[29814,30523]]]]},{"k":"G5281","v":[["*",[32,31,[[41,2,2,0,2,[[980,1,1,0,1],[993,1,1,1,2]]],[44,6,6,2,8,[[1047,1,1,2,3],[1050,2,2,3,5],[1053,1,1,5,6],[1060,2,2,6,8]]],[46,3,3,8,11,[[1078,1,1,8,9],[1083,1,1,9,10],[1089,1,1,10,11]]],[50,1,1,11,12,[[1107,1,1,11,12]]],[51,1,1,12,13,[[1111,1,1,12,13]]],[52,2,2,13,15,[[1116,1,1,13,14],[1118,1,1,14,15]]],[53,1,1,15,16,[[1124,1,1,15,16]]],[54,1,1,16,17,[[1127,1,1,16,17]]],[55,1,1,17,18,[[1130,1,1,17,18]]],[57,2,2,18,20,[[1142,1,1,18,19],[1144,1,1,19,20]]],[58,3,3,20,23,[[1146,2,2,20,22],[1150,1,1,22,23]]],[60,2,1,23,24,[[1156,2,1,23,24]]],[65,7,7,24,31,[[1167,1,1,24,25],[1168,3,3,25,28],[1169,1,1,28,29],[1179,1,1,29,30],[1180,1,1,30,31]]]],[25260,25845,27969,28050,28051,28141,28307,28308,28806,28902,29034,29476,29563,29653,29683,29799,29863,29910,30169,30213,30269,30270,30365,30485,30706,30719,30720,30736,30756,30918,30938]]],["continuance",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27969]]],["enduring",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28806]]],["patience",[29,28,[[41,2,2,0,2,[[980,1,1,0,1],[993,1,1,1,2]]],[44,5,5,2,7,[[1050,2,2,2,4],[1053,1,1,4,5],[1060,2,2,5,7]]],[46,2,2,7,9,[[1083,1,1,7,8],[1089,1,1,8,9]]],[50,1,1,9,10,[[1107,1,1,9,10]]],[51,1,1,10,11,[[1111,1,1,10,11]]],[52,1,1,11,12,[[1116,1,1,11,12]]],[53,1,1,12,13,[[1124,1,1,12,13]]],[54,1,1,13,14,[[1127,1,1,13,14]]],[55,1,1,14,15,[[1130,1,1,14,15]]],[57,2,2,15,17,[[1142,1,1,15,16],[1144,1,1,16,17]]],[58,3,3,17,20,[[1146,2,2,17,19],[1150,1,1,19,20]]],[60,2,1,20,21,[[1156,2,1,20,21]]],[65,7,7,21,28,[[1167,1,1,21,22],[1168,3,3,22,25],[1169,1,1,25,26],[1179,1,1,26,27],[1180,1,1,27,28]]]],[25260,25845,28050,28051,28141,28307,28308,28902,29034,29476,29563,29653,29799,29863,29910,30169,30213,30269,30270,30365,30485,30706,30719,30720,30736,30756,30918,30938]]],["waiting",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29683]]]]},{"k":"G5282","v":[["*",[3,3,[[43,3,3,0,3,[[1030,1,1,0,1],[1042,1,1,1,2],[1044,1,1,2,3]]]],[27387,27814,27882]]],["deemed",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27882]]],["supposed",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27814]]],["think",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27387]]]]},{"k":"G5283","v":[["surmisings",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29792]]]]},{"k":"G5284","v":[["under",[2,2,[[43,2,2,0,2,[[1044,2,2,0,2]]]],[27859,27862]]]]},{"k":"G5285","v":[["softly",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27868]]]]},{"k":"G5286","v":[["*",[9,9,[[39,2,2,0,2,[[933,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]],[43,2,2,4,6,[[1019,1,1,4,5],[1024,1,1,5,6]]],[57,2,2,6,8,[[1133,1,1,6,7],[1142,1,1,7,8]]],[58,1,1,8,9,[[1147,1,1,8,9]]]],[23269,23916,24709,25822,26984,27165,29976,30146,30296]]],["+",[8,8,[[39,2,2,0,2,[[933,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]],[43,2,2,4,6,[[1019,1,1,4,5],[1024,1,1,5,6]]],[57,2,2,6,8,[[1133,1,1,6,7],[1142,1,1,7,8]]]],[23269,23916,24709,25822,26984,27165,29976,30146]]],["footstool",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30296]]]]},{"k":"G5287","v":[["*",[5,5,[[46,2,2,0,2,[[1086,1,1,0,1],[1088,1,1,1,2]]],[57,3,3,2,5,[[1133,1,1,2,3],[1135,1,1,3,4],[1143,1,1,4,5]]]],[28960,29006,29966,30009,30173]]],["confidence",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[57,1,1,1,2,[[1135,1,1,1,2]]]],[29006,30009]]],["confident",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28960]]],["person",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29966]]],["substance",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30173]]]]},{"k":"G5288","v":[["*",[4,4,[[43,2,2,0,2,[[1037,2,2,0,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]],[57,1,1,3,4,[[1142,1,1,3,4]]]],[27646,27653,29093,30171]]],["back",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[27646,30171]]],["shunned",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27653]]],["withdrew",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29093]]]]},{"k":"G5289","v":[["back",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30172]]]]},{"k":"G5290","v":[["*",[35,35,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,21,21,1,22,[[973,1,1,1,2],[974,3,3,2,5],[976,2,2,5,7],[979,1,1,7,8],[980,3,3,8,11],[981,1,1,11,12],[982,1,1,12,13],[983,1,1,13,14],[989,2,2,14,16],[991,1,1,16,17],[995,2,2,17,19],[996,3,3,19,22]]],[43,11,11,22,33,[[1018,1,1,22,23],[1025,2,2,23,25],[1029,1,1,25,26],[1030,2,2,26,28],[1031,1,1,28,29],[1037,1,1,29,30],[1038,1,1,30,31],[1039,1,1,31,32],[1040,1,1,32,33]]],[47,1,1,33,34,[[1091,1,1,33,34]]],[57,1,1,34,35,[[1139,1,1,34,35]]]],[24794,24949,25012,25016,25018,25064,25077,25205,25282,25284,25285,25311,25380,25429,25666,25669,25743,25983,25991,26000,26024,26043,26935,27201,27204,27362,27375,27396,27435,27629,27670,27721,27766,29074,30065]]],["Return",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25284]]],["again",[5,5,[[41,3,3,0,3,[[974,1,1,0,1],[980,1,1,1,2],[982,1,1,2,3]]],[43,2,2,3,5,[[1031,1,1,3,4],[1039,1,1,4,5]]]],[25018,25282,25380,27435,27721]]],["back",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25666]]],["return",[4,4,[[41,2,2,0,2,[[983,1,1,0,1],[991,1,1,1,2]]],[43,2,2,2,4,[[1030,1,1,2,3],[1037,1,1,3,4]]]],[25429,25743,27396,27629]]],["returned",[21,21,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,13,13,1,14,[[973,1,1,1,2],[974,2,2,2,4],[976,2,2,4,6],[980,1,1,6,7],[981,1,1,7,8],[989,1,1,8,9],[995,2,2,9,11],[996,3,3,11,14]]],[43,6,6,14,20,[[1018,1,1,14,15],[1025,1,1,15,16],[1029,1,1,16,17],[1030,1,1,17,18],[1038,1,1,18,19],[1040,1,1,19,20]]],[47,1,1,20,21,[[1091,1,1,20,21]]]],[24794,24949,25012,25016,25064,25077,25285,25311,25669,25983,25991,26000,26024,26043,26935,27201,27362,27375,27670,27766,29074]]],["returning",[3,3,[[41,1,1,0,1,[[979,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]],[57,1,1,2,3,[[1139,1,1,2,3]]]],[25205,27204,30065]]]]},{"k":"G5291","v":[["spread",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25767]]]]},{"k":"G5292","v":[["subjection",[4,4,[[46,1,1,0,1,[[1086,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]],[53,2,2,2,4,[[1120,1,1,2,3],[1121,1,1,3,4]]]],[28969,29086,29727,29735]]]]},{"k":"G5293","v":[["*",[40,32,[[41,3,3,0,3,[[974,1,1,0,1],[982,2,2,1,3]]],[44,6,5,3,8,[[1053,3,2,3,5],[1055,1,1,5,6],[1058,2,2,6,8]]],[45,9,5,8,13,[[1075,2,2,8,10],[1076,6,2,10,12],[1077,1,1,12,13]]],[48,4,4,13,17,[[1097,1,1,13,14],[1101,3,3,14,17]]],[49,1,1,17,18,[[1105,1,1,17,18]]],[50,1,1,18,19,[[1109,1,1,18,19]]],[55,3,3,19,22,[[1130,2,2,19,21],[1131,1,1,21,22]]],[57,5,3,22,25,[[1134,4,2,22,24],[1144,1,1,24,25]]],[58,1,1,25,26,[[1149,1,1,25,26]]],[59,7,6,26,32,[[1152,2,2,26,28],[1153,3,3,28,31],[1155,2,1,31,32]]]],[25024,25380,25383,28123,28136,28191,28267,28271,28710,28712,28745,28746,28792,29228,29325,29326,29328,29442,29535,29913,29917,29924,29982,29985,30221,30344,30412,30417,30425,30429,30446,30470]]],["+",[5,4,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,2,2,1,3,[[1076,2,2,1,3]]],[57,2,1,3,4,[[1134,2,1,3,4]]]],[28123,28745,28746,29985]]],["Submit",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30344]]],["obedience",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28712]]],["obedient",[2,2,[[55,2,2,0,2,[[1130,2,2,0,2]]]],[29913,29917]]],["put",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]]],[28745,29228]]],["subdue",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29442]]],["subject",[8,8,[[41,1,1,0,1,[[982,1,1,0,1]]],[44,3,3,1,4,[[1053,1,1,1,2],[1058,2,2,2,4]]],[45,2,2,4,6,[[1075,1,1,4,5],[1076,1,1,5,6]]],[55,1,1,6,7,[[1131,1,1,6,7]]],[59,1,1,7,8,[[1155,1,1,7,8]]]],[25383,28136,28267,28271,28710,28746,29924,30470]]],["subjected",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28136]]],["subjection",[4,4,[[57,2,2,0,2,[[1134,1,1,0,1],[1144,1,1,1,2]]],[59,2,2,2,4,[[1153,2,2,2,4]]]],[29982,30221,30425,30429]]],["themselves",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28191]]],["to",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30417]]],["under",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]]],[28745,29985]]],["unto",[6,6,[[41,2,2,0,2,[[974,1,1,0,1],[982,1,1,1,2]]],[45,2,2,2,4,[[1076,1,1,2,3],[1077,1,1,3,4]]],[48,1,1,4,5,[[1101,1,1,4,5]]],[59,1,1,5,6,[[1153,1,1,5,6]]]],[25024,25380,28746,28792,29328,30446]]],["yourselves",[5,5,[[48,2,2,0,2,[[1101,2,2,0,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]],[59,2,2,3,5,[[1152,1,1,3,4],[1155,1,1,4,5]]]],[29325,29326,29535,30412,30470]]]]},{"k":"G5294","v":[["*",[2,2,[[44,1,1,0,1,[[1061,1,1,0,1]]],[53,1,1,1,2,[[1122,1,1,1,2]]]],[28340,29753]]],["+",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29753]]],["down",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28340]]]]},{"k":"G5295","v":[["under",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27871]]]]},{"k":"G5296","v":[["*",[2,2,[[53,1,1,0,1,[[1119,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]]],[29712,29822]]],["form",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29822]]],["pattern",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29712]]]]},{"k":"G5297","v":[["*",[3,3,[[45,1,1,0,1,[[1071,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]]],[28580,29864,30418]]],["bear",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28580]]],["endure",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30418]]],["endured",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29864]]]]},{"k":"G5298","v":[["*",[2,2,[[41,2,2,0,2,[[977,1,1,0,1],[981,1,1,1,2]]]],[25123,25311]]],["+",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25123]]],["aside",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25311]]]]},{"k":"G5299","v":[["*",[2,2,[[41,1,1,0,1,[[990,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]]],[25693,28567]]],["under",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28567]]],["weary",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25693]]]]},{"k":"G5300","v":[["sow",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30522]]]]},{"k":"G5301","v":[["hyssop",[2,2,[[42,1,1,0,1,[[1015,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[26854,30124]]]]},{"k":"G5302","v":[["*",[16,16,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,2,2,2,4,[[987,1,1,2,3],[994,1,1,3,4]]],[42,1,1,4,5,[[998,1,1,4,5]]],[44,1,1,5,6,[[1048,1,1,5,6]]],[45,3,3,6,9,[[1062,1,1,6,7],[1069,1,1,7,8],[1073,1,1,8,9]]],[46,3,3,9,12,[[1088,2,2,9,11],[1089,1,1,11,12]]],[49,1,1,12,13,[[1106,1,1,12,13]]],[57,3,3,13,16,[[1136,1,1,13,14],[1143,1,1,14,15],[1144,1,1,15,16]]]],[23782,24609,25602,25899,26098,28014,28370,28535,28658,28994,28998,29033,29454,30015,30209,30227]]],["+",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28994]]],["behind",[2,2,[[45,1,1,0,1,[[1062,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]]],[28370,29033]]],["destitute",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30209]]],["fail",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30227]]],["lack",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23782]]],["lacked",[2,2,[[41,1,1,0,1,[[994,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]]],[25899,28658]]],["lackest",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24609]]],["need",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29454]]],["short",[2,2,[[44,1,1,0,1,[[1048,1,1,0,1]]],[57,1,1,1,2,[[1136,1,1,1,2]]]],[28014,30015]]],["want",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25602]]],["wanted",[2,2,[[42,1,1,0,1,[[998,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[26098,28998]]],["worse",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28535]]]]},{"k":"G5303","v":[["*",[9,8,[[41,1,1,0,1,[[993,1,1,0,1]]],[45,1,1,1,2,[[1077,1,1,1,2]]],[46,4,3,2,5,[[1085,2,1,2,3],[1086,1,1,3,4],[1088,1,1,4,5]]],[49,1,1,5,6,[[1104,1,1,5,6]]],[50,1,1,6,7,[[1107,1,1,6,7]]],[51,1,1,7,8,[[1113,1,1,7,8]]]],[25830,28793,28946,28968,28998,29421,29489,29600]]],["behind",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29489]]],["lack",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29421]]],["lacking",[3,3,[[45,1,1,0,1,[[1077,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[51,1,1,2,3,[[1113,1,1,2,3]]]],[28793,28998,29600]]],["penury",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25830]]],["want",[3,2,[[46,3,2,0,2,[[1085,2,1,0,1],[1086,1,1,1,2]]]],[28946,28968]]]]},{"k":"G5304","v":[["want",[2,2,[[40,1,1,0,1,[[968,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]]],[24717,29453]]]]},{"k":"G5305","v":[["*",[12,12,[[39,7,7,0,7,[[932,1,1,0,1],[949,3,3,1,4],[950,1,1,4,5],[953,1,1,5,6],[954,1,1,6,7]]],[40,1,1,7,8,[[972,1,1,7,8]]],[41,2,2,8,10,[[976,1,1,8,9],[992,1,1,9,10]]],[42,1,1,10,11,[[1009,1,1,10,11]]],[57,1,1,11,12,[[1144,1,1,11,12]]]],[23211,23855,23858,23863,23899,24019,24114,24887,25065,25811,26666,30223]]],["+",[2,2,[[39,2,2,0,2,[[932,1,1,0,1],[954,1,1,1,2]]]],[23211,24114]]],["Afterward",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[40,1,1,1,2,[[972,1,1,1,2]]]],[24019,24887]]],["Last",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25811]]],["afterward",[4,4,[[39,2,2,0,2,[[949,2,2,0,2]]],[41,1,1,2,3,[[976,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]]],[23855,23858,25065,30223]]],["afterwards",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26666]]],["last",[2,2,[[39,2,2,0,2,[[949,1,1,0,1],[950,1,1,1,2]]]],[23863,23899]]]]},{"k":"G5306","v":[["latter",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29748]]]]},{"k":"G5307","v":[["woven",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26848]]]]},{"k":"G5308","v":[["*",[11,11,[[39,2,2,0,2,[[932,1,1,0,1],[945,1,1,1,2]]],[40,1,1,2,3,[[965,1,1,2,3]]],[41,2,2,3,5,[[976,1,1,3,4],[988,1,1,4,5]]],[43,1,1,5,6,[[1030,1,1,5,6]]],[44,1,1,6,7,[[1057,1,1,6,7]]],[57,2,2,7,9,[[1133,1,1,7,8],[1139,1,1,8,9]]],[65,2,2,9,11,[[1187,2,2,9,11]]]],[23217,23701,24540,25068,25635,27379,28261,29966,30090,31063,31065]]],["esteemed",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25635]]],["high",[8,8,[[39,2,2,0,2,[[932,1,1,0,1],[945,1,1,1,2]]],[40,1,1,2,3,[[965,1,1,2,3]]],[41,1,1,3,4,[[976,1,1,3,4]]],[43,1,1,4,5,[[1030,1,1,4,5]]],[57,1,1,5,6,[[1133,1,1,5,6]]],[65,2,2,6,8,[[1187,2,2,6,8]]]],[23217,23701,24540,25068,27379,29966,31063,31065]]],["higher",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30090]]],["things",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28261]]]]},{"k":"G5309","v":[["+",[2,2,[[44,1,1,0,1,[[1056,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[28229,29805]]]]},{"k":"G5310","v":[["*",[13,13,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[967,1,1,2,3]]],[41,7,7,3,10,[[973,3,3,3,6],[974,1,1,6,7],[978,1,1,7,8],[980,1,1,8,9],[991,1,1,9,10]]],[43,2,2,10,12,[[1024,1,1,10,11],[1033,1,1,11,12]]],[57,1,1,12,13,[[1139,1,1,12,13]]]],[23835,24371,24650,24925,24928,24969,24987,25181,25273,25769,27164,27500,30065]]],["High",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27164]]],["Highest",[4,4,[[41,4,4,0,4,[[973,3,3,0,3],[978,1,1,3,4]]]],[24925,24928,24969,25181]]],["high",[4,4,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[43,1,1,2,3,[[1033,1,1,2,3]]],[57,1,1,3,4,[[1139,1,1,3,4]]]],[24371,25273,27500,30065]]],["highest",[4,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,2,2,2,4,[[974,1,1,2,3],[991,1,1,3,4]]]],[23835,24650,24987,25769]]]]},{"k":"G5311","v":[["*",[6,6,[[41,2,2,0,2,[[973,1,1,0,1],[996,1,1,1,2]]],[48,2,2,2,4,[[1099,1,1,2,3],[1100,1,1,3,4]]],[58,1,1,4,5,[[1146,1,1,4,5]]],[65,1,1,5,6,[[1187,1,1,5,6]]]],[24971,26040,29269,29280,30275,31069]]],["exalted",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30275]]],["height",[2,2,[[48,1,1,0,1,[[1099,1,1,0,1]]],[65,1,1,1,2,[[1187,1,1,1,2]]]],[29269,31069]]],["high",[3,3,[[41,2,2,0,2,[[973,1,1,0,1],[996,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]]],[24971,26040,29280]]]]},{"k":"G5312","v":[["*",[20,16,[[39,3,2,0,2,[[939,1,1,0,1],[951,2,1,1,2]]],[41,6,4,2,6,[[973,1,1,2,3],[982,1,1,3,4],[986,2,1,4,5],[990,2,1,5,6]]],[42,5,4,6,10,[[999,2,1,6,7],[1004,1,1,7,8],[1008,2,2,8,10]]],[43,3,3,10,13,[[1019,1,1,10,11],[1022,1,1,11,12],[1030,1,1,12,13]]],[46,1,1,13,14,[[1088,1,1,13,14]]],[58,1,1,14,15,[[1149,1,1,14,15]]],[59,1,1,15,16,[[1155,1,1,15,16]]]],[23482,23930,24945,25378,25564,25702,26134,26409,26612,26614,26982,27090,27379,28996,30347,30471]]],["+",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30347]]],["exalt",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[23930,30471]]],["exalted",[10,10,[[39,2,2,0,2,[[939,1,1,0,1],[951,1,1,1,2]]],[41,4,4,2,6,[[973,1,1,2,3],[982,1,1,3,4],[986,1,1,4,5],[990,1,1,5,6]]],[43,3,3,6,9,[[1019,1,1,6,7],[1022,1,1,7,8],[1030,1,1,8,9]]],[46,1,1,9,10,[[1088,1,1,9,10]]]],[23482,23930,24945,25378,25564,25702,26982,27090,27379,28996]]],["exalteth",[2,2,[[41,2,2,0,2,[[986,1,1,0,1],[990,1,1,1,2]]]],[25564,25702]]],["up",[5,4,[[42,5,4,0,4,[[999,2,1,0,1],[1004,1,1,1,2],[1008,2,2,2,4]]]],[26134,26409,26612,26614]]]]},{"k":"G5313","v":[["*",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]]],[28155,28976]]],["height",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28155]]],["thing",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28976]]]]},{"k":"G5314","v":[["gluttonous",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]]],[23478,25229]]]]},{"k":"G5315","v":[["*",[97,90,[[39,13,12,0,12,[[934,2,2,0,2],[940,2,1,2,3],[942,2,2,3,5],[943,3,3,5,8],[953,2,2,8,10],[954,2,2,10,12]]],[40,18,16,12,28,[[958,2,1,12,13],[959,1,1,13,14],[961,1,1,14,15],[962,6,5,15,20],[964,4,4,20,24],[967,1,1,24,25],[970,3,3,25,28]]],[41,21,19,28,47,[[976,1,1,28,29],[978,2,1,29,30],[979,1,1,30,31],[980,1,1,31,32],[981,2,2,32,34],[984,3,3,34,37],[985,1,1,37,38],[986,2,2,38,40],[987,1,1,40,41],[989,2,1,41,42],[994,4,4,42,46],[996,1,1,46,47]]],[42,15,14,47,61,[[1000,3,3,47,50],[1002,11,10,50,60],[1014,1,1,60,61]]],[43,6,6,61,67,[[1026,1,1,61,62],[1027,2,2,62,64],[1028,1,1,64,65],[1040,2,2,65,67]]],[44,3,3,67,70,[[1059,3,3,67,70]]],[45,11,10,70,80,[[1069,3,2,70,72],[1070,1,1,72,73],[1071,2,2,73,75],[1072,4,4,75,79],[1076,1,1,79,80]]],[52,1,1,80,81,[[1118,1,1,80,81]]],[57,1,1,81,82,[[1145,1,1,81,82]]],[58,1,1,82,83,[[1150,1,1,82,83]]],[65,7,7,83,90,[[1168,4,4,83,87],[1176,1,1,87,88],[1183,1,1,88,89],[1185,1,1,89,90]]]],[23307,23313,23493,23613,23617,23653,23665,23670,24043,24050,24071,24080,24286,24308,24407,24438,24443,24444,24449,24451,24501,24502,24508,24509,24654,24766,24768,24776,25065,25150,25231,25300,25314,25318,25478,25481,25488,25544,25554,25568,25611,25659,25872,25875,25879,25880,26034,26187,26188,26189,26262,26280,26283,26288,26306,26307,26308,26309,26310,26315,26813,27225,27272,27273,27314,27746,27755,28282,28301,28303,28535,28540,28544,28570,28574,28620,28621,28624,28633,28750,29686,30251,30357,30724,30731,30734,30737,30871,30991,31035]]],["And",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24444]]],["eat",[87,82,[[39,11,10,0,10,[[934,2,2,0,2],[940,2,1,2,3],[942,2,2,3,5],[943,3,3,5,8],[954,2,2,8,10]]],[40,16,15,10,25,[[958,2,1,10,11],[959,1,1,11,12],[961,1,1,12,13],[962,5,5,13,18],[964,3,3,18,21],[967,1,1,21,22],[970,3,3,22,25]]],[41,18,17,25,42,[[976,1,1,25,26],[978,2,1,26,27],[979,1,1,27,28],[981,2,2,28,30],[984,3,3,30,33],[986,2,2,33,35],[987,1,1,35,36],[989,1,1,36,37],[994,4,4,37,41],[996,1,1,41,42]]],[42,15,14,42,56,[[1000,3,3,42,45],[1002,11,10,45,55],[1014,1,1,55,56]]],[43,5,5,56,61,[[1026,1,1,56,57],[1027,1,1,57,58],[1028,1,1,58,59],[1040,2,2,59,61]]],[44,3,3,61,64,[[1059,3,3,61,64]]],[45,10,9,64,73,[[1069,3,2,64,66],[1070,1,1,66,67],[1071,2,2,67,69],[1072,3,3,69,72],[1076,1,1,72,73]]],[52,1,1,73,74,[[1118,1,1,73,74]]],[57,1,1,74,75,[[1145,1,1,74,75]]],[58,1,1,75,76,[[1150,1,1,75,76]]],[65,6,6,76,82,[[1168,4,4,76,80],[1183,1,1,80,81],[1185,1,1,81,82]]]],[23307,23313,23493,23613,23617,23653,23665,23670,24071,24080,24286,24308,24407,24438,24443,24444,24449,24451,24501,24502,24508,24654,24766,24768,24776,25065,25150,25231,25314,25318,25478,25481,25488,25554,25568,25611,25659,25872,25875,25879,25880,26034,26187,26188,26189,26262,26280,26283,26288,26306,26307,26308,26309,26310,26315,26813,27225,27272,27314,27746,27755,28282,28301,28303,28535,28540,28544,28570,28574,28620,28624,28633,28750,29686,30251,30357,30724,30731,30734,30737,30991,31035]]],["eaten",[5,5,[[40,1,1,0,1,[[964,1,1,0,1]]],[41,2,2,1,3,[[985,1,1,1,2],[989,1,1,2,3]]],[43,1,1,3,4,[[1027,1,1,3,4]]],[65,1,1,4,5,[[1176,1,1,4,5]]]],[24509,25544,25659,27273,30871]]],["eating",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28621]]],["meat",[3,3,[[39,2,2,0,2,[[953,2,2,0,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[24043,24050,25300]]]]},{"k":"G5316","v":[["*",[31,31,[[39,13,13,0,13,[[929,1,1,0,1],[930,3,3,1,4],[934,3,3,4,7],[937,1,1,7,8],[941,1,1,8,9],[951,2,2,9,11],[952,2,2,11,13]]],[40,2,2,13,15,[[970,1,1,13,14],[972,1,1,14,15]]],[41,2,2,15,17,[[981,1,1,15,16],[996,1,1,16,17]]],[42,2,2,17,19,[[997,1,1,17,18],[1001,1,1,18,19]]],[44,1,1,19,20,[[1052,1,1,19,20]]],[46,1,1,20,21,[[1090,1,1,20,21]]],[49,1,1,21,22,[[1104,1,1,21,22]]],[57,1,1,22,23,[[1143,1,1,22,23]]],[58,1,1,23,24,[[1149,1,1,23,24]]],[59,1,1,24,25,[[1154,1,1,24,25]]],[60,1,1,25,26,[[1156,1,1,25,26]]],[61,1,1,26,27,[[1160,1,1,26,27]]],[65,4,4,27,31,[[1167,1,1,27,28],[1174,1,1,28,29],[1184,1,1,29,30],[1187,1,1,30,31]]]],[23164,23176,23182,23188,23287,23298,23300,23412,23565,23945,23946,23984,23987,24818,24882,25309,26002,26049,26245,28104,29050,29406,30175,30351,30464,30498,30558,30713,30839,31016,31076]]],["+",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23287]]],["appear",[9,9,[[39,5,5,0,5,[[934,2,2,0,2],[951,2,2,2,4],[952,1,1,4,5]]],[44,1,1,5,6,[[1052,1,1,5,6]]],[46,1,1,6,7,[[1090,1,1,6,7]]],[57,1,1,7,8,[[1143,1,1,7,8]]],[59,1,1,8,9,[[1154,1,1,8,9]]]],[23298,23300,23945,23946,23987,28104,29050,30175,30464]]],["appeared",[5,5,[[39,3,3,0,3,[[929,1,1,0,1],[930,1,1,1,2],[941,1,1,2,3]]],[40,1,1,3,4,[[972,1,1,3,4]]],[41,1,1,4,5,[[981,1,1,4,5]]]],[23164,23176,23565,24882,25309]]],["appeareth",[3,3,[[39,2,2,0,2,[[930,2,2,0,2]]],[58,1,1,2,3,[[1149,1,1,2,3]]]],[23182,23188,30351]]],["seemed",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26002]]],["seen",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23412]]],["shine",[3,3,[[49,1,1,0,1,[[1104,1,1,0,1]]],[65,2,2,1,3,[[1184,1,1,1,2],[1187,1,1,2,3]]]],[29406,31016,31076]]],["shineth",[5,5,[[39,1,1,0,1,[[952,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]],[60,1,1,2,3,[[1156,1,1,2,3]]],[61,1,1,3,4,[[1160,1,1,3,4]]],[65,1,1,4,5,[[1167,1,1,4,5]]]],[23984,26049,30498,30558,30713]]],["shining",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26245]]],["shone",[1,1,[[65,1,1,0,1,[[1174,1,1,0,1]]]],[30839]]],["think",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24818]]]]},{"k":"G5317","v":[["Phalec",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25060]]]]},{"k":"G5318","v":[["*",[21,19,[[39,4,4,0,4,[[934,3,3,0,3],[940,1,1,3,4]]],[40,3,3,4,7,[[959,1,1,4,5],[960,1,1,5,6],[962,1,1,6,7]]],[41,2,1,7,8,[[980,2,1,7,8]]],[43,2,2,8,10,[[1021,1,1,8,9],[1024,1,1,9,10]]],[44,3,2,10,12,[[1046,1,1,10,11],[1047,2,1,11,12]]],[45,3,3,12,15,[[1064,1,1,12,13],[1072,1,1,13,14],[1075,1,1,14,15]]],[47,1,1,15,16,[[1095,1,1,15,16]]],[49,1,1,16,17,[[1103,1,1,16,17]]],[53,1,1,17,18,[[1122,1,1,17,18]]],[61,1,1,18,19,[[1161,1,1,18,19]]]],[23286,23288,23300,23505,24300,24345,24421,25262,27038,27129,27949,27990,28423,28619,28703,29181,29374,29762,30589]]],["+",[9,8,[[39,3,3,0,3,[[934,3,3,0,3]]],[40,2,2,3,5,[[960,1,1,3,4],[962,1,1,4,5]]],[41,1,1,5,6,[[980,1,1,5,6]]],[44,2,1,6,7,[[1047,2,1,6,7]]],[53,1,1,7,8,[[1122,1,1,7,8]]]],[23286,23288,23300,24345,24421,25262,27990,29762]]],["known",[3,3,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[43,1,1,2,3,[[1024,1,1,2,3]]]],[23505,24300,27129]]],["manifest",[9,9,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[45,3,3,3,6,[[1064,1,1,3,4],[1072,1,1,4,5],[1075,1,1,5,6]]],[47,1,1,6,7,[[1095,1,1,6,7]]],[49,1,1,7,8,[[1103,1,1,7,8]]],[61,1,1,8,9,[[1161,1,1,8,9]]]],[25262,27038,27949,28423,28619,28703,29181,29374,30589]]]]},{"k":"G5319","v":[["*",[49,43,[[40,3,3,0,3,[[960,1,1,0,1],[972,2,2,1,3]]],[42,9,8,3,11,[[997,1,1,3,4],[998,1,1,4,5],[999,1,1,5,6],[1003,1,1,6,7],[1005,1,1,7,8],[1013,1,1,8,9],[1017,3,2,9,11]]],[44,3,3,11,14,[[1046,1,1,11,12],[1048,1,1,12,13],[1061,1,1,13,14]]],[45,1,1,14,15,[[1065,1,1,14,15]]],[46,9,8,15,23,[[1079,1,1,15,16],[1080,1,1,16,17],[1081,2,2,17,19],[1082,3,2,19,21],[1084,1,1,21,22],[1088,1,1,22,23]]],[48,2,1,23,24,[[1101,2,1,23,24]]],[50,4,3,24,27,[[1107,1,1,24,25],[1109,2,1,25,26],[1110,1,1,26,27]]],[53,1,1,27,28,[[1121,1,1,27,28]]],[54,1,1,28,29,[[1125,1,1,28,29]]],[55,1,1,29,30,[[1129,1,1,29,30]]],[57,2,2,30,32,[[1141,2,2,30,32]]],[59,2,2,32,34,[[1151,1,1,32,33],[1155,1,1,33,34]]],[61,9,7,34,41,[[1159,2,1,34,35],[1160,2,2,35,37],[1161,4,3,37,40],[1162,1,1,40,41]]],[65,2,2,41,43,[[1169,1,1,41,42],[1181,1,1,42,43]]]],[24345,24885,24887,26075,26106,26141,26332,26443,26765,26899,26912,27949,28012,28362,28438,28838,28844,28869,28870,28887,28888,28928,28995,29317,29491,29521,29546,29747,29819,29895,30113,30131,30394,30469,30542,30569,30578,30581,30584,30587,30612,30764,30950]]],["+",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29546]]],["appear",[9,7,[[46,2,2,0,2,[[1082,1,1,0,1],[1084,1,1,1,2]]],[50,2,1,2,3,[[1109,2,1,2,3]]],[59,1,1,3,4,[[1155,1,1,3,4]]],[61,3,2,4,6,[[1160,1,1,4,5],[1161,2,1,5,6]]],[65,1,1,6,7,[[1169,1,1,6,7]]]],[28887,28928,29521,30469,30578,30581,30764]]],["appeared",[3,3,[[40,2,2,0,2,[[972,2,2,0,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[24885,24887,30131]]],["declared",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28844]]],["forth",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26106]]],["manifest",[20,18,[[42,3,3,0,3,[[997,1,1,0,1],[999,1,1,1,2],[1005,1,1,2,3]]],[44,1,1,3,4,[[1061,1,1,3,4]]],[45,1,1,4,5,[[1065,1,1,4,5]]],[46,6,5,5,10,[[1079,1,1,5,6],[1081,2,2,6,8],[1082,2,1,8,9],[1088,1,1,9,10]]],[48,2,1,10,11,[[1101,2,1,10,11]]],[50,1,1,11,12,[[1107,1,1,11,12]]],[53,1,1,12,13,[[1121,1,1,12,13]]],[54,1,1,13,14,[[1125,1,1,13,14]]],[57,1,1,14,15,[[1141,1,1,14,15]]],[59,1,1,15,16,[[1151,1,1,15,16]]],[61,1,1,16,17,[[1160,1,1,16,17]]],[65,1,1,17,18,[[1181,1,1,17,18]]]],[26075,26141,26443,28362,28438,28838,28869,28870,28888,28995,29317,29491,29747,29819,30113,30394,30569,30950]]],["manifested",[9,8,[[40,1,1,0,1,[[960,1,1,0,1]]],[42,1,1,1,2,[[1013,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[55,1,1,3,4,[[1129,1,1,3,4]]],[61,5,4,4,8,[[1159,2,1,4,5],[1161,2,2,5,7],[1162,1,1,7,8]]]],[24345,26765,28012,29895,30542,30584,30587,30612]]],["shew",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26332]]],["shewed",[4,3,[[42,3,2,0,2,[[1017,3,2,0,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]]],[26899,26912,27949]]]]},{"k":"G5320","v":[["*",[3,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[42,1,1,1,2,[[1003,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]]],[24260,26338,27262]]],["evidently",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27262]]],["openly",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[42,1,1,1,2,[[1003,1,1,1,2]]]],[24260,26338]]]]},{"k":"G5321","v":[["manifestation",[2,2,[[45,1,1,0,1,[[1073,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]]],[28641,28861]]]]},{"k":"G5322","v":[["lanterns",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26788]]]]},{"k":"G5323","v":[["Phanuel",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25009]]]]},{"k":"G5324","v":[["sight",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30233]]]]},{"k":"G5325","v":[["pomp",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27819]]]]},{"k":"G5326","v":[["spirit",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]]],[23623,24456]]]]},{"k":"G5327","v":[["valley",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25030]]]]},{"k":"G5328","v":[["*",[5,5,[[43,3,3,0,3,[[1024,3,3,0,3]]],[44,1,1,3,4,[[1054,1,1,3,4]]],[57,1,1,4,5,[[1143,1,1,4,5]]]],[27126,27129,27137,28172,30196]]],["Pharaoh",[3,3,[[43,2,2,0,2,[[1024,2,2,0,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]]],[27126,27129,28172]]],["Pharaoh's",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[27137,30196]]]]},{"k":"G5329","v":[["Phares",[3,2,[[39,2,1,0,1,[[929,2,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23147,25058]]]]},{"k":"G5330","v":[["*",[100,95,[[39,30,30,0,30,[[931,1,1,0,1],[933,1,1,1,2],[937,3,3,2,5],[940,4,4,5,9],[943,2,2,9,11],[944,4,4,11,15],[947,1,1,15,16],[949,1,1,16,17],[950,3,3,17,20],[951,9,9,20,29],[955,1,1,29,30]]],[40,12,11,30,41,[[958,4,3,30,33],[959,1,1,33,34],[963,3,3,34,37],[964,2,2,37,39],[966,1,1,39,40],[968,1,1,40,41]]],[41,28,27,41,68,[[977,4,4,41,45],[978,2,2,45,47],[979,5,4,47,51],[983,7,7,51,58],[984,1,1,58,59],[985,1,1,59,60],[986,2,2,60,62],[987,1,1,62,63],[988,1,1,63,64],[989,1,1,64,65],[990,2,2,65,67],[991,1,1,67,68]]],[42,20,19,68,87,[[997,1,1,68,69],[999,1,1,69,70],[1000,1,1,70,71],[1003,5,4,71,75],[1004,2,2,75,77],[1005,4,4,77,81],[1007,3,3,81,84],[1008,2,2,84,86],[1014,1,1,86,87]]],[43,9,7,87,94,[[1022,1,1,87,88],[1032,1,1,88,89],[1040,6,4,89,93],[1043,1,1,93,94]]],[49,1,1,94,95,[[1105,1,1,94,95]]]],[23199,23254,23390,23393,23413,23491,23503,23513,23527,23634,23645,23673,23678,23683,23684,23765,23871,23887,23906,23913,23920,23931,23932,23933,23941,23943,23944,23945,23947,24191,24276,24278,24284,24294,24464,24466,24468,24511,24515,24590,24686,25124,25128,25137,25140,25148,25153,25225,25231,25232,25234,25442,25443,25444,25447,25448,25449,25458,25460,25549,25554,25556,25590,25634,25671,25698,25699,25770,26068,26121,26157,26360,26373,26375,26376,26384,26394,26453,26455,26456,26480,26569,26570,26580,26599,26622,26788,27093,27447,27740,27741,27742,27743,27828,29426]]],["Pharisee",[11,10,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,5,5,1,6,[[979,1,1,1,2],[983,2,2,2,4],[990,2,2,4,6]]],[43,4,3,6,9,[[1022,1,1,6,7],[1040,2,1,7,8],[1043,1,1,8,9]]],[49,1,1,9,10,[[1105,1,1,9,10]]]],[23944,25234,25442,25443,25698,25699,27093,27740,27828,29426]]],["Pharisee's",[2,2,[[41,2,2,0,2,[[979,2,2,0,2]]]],[25231,25232]]],["Pharisees",[86,84,[[39,29,29,0,29,[[931,1,1,0,1],[933,1,1,1,2],[937,3,3,2,5],[940,4,4,5,9],[943,2,2,9,11],[944,4,4,11,15],[947,1,1,15,16],[949,1,1,16,17],[950,3,3,17,20],[951,8,8,20,28],[955,1,1,28,29]]],[40,12,11,29,40,[[958,4,3,29,32],[959,1,1,32,33],[963,3,3,33,36],[964,2,2,36,38],[966,1,1,38,39],[968,1,1,39,40]]],[41,21,21,40,61,[[977,4,4,40,44],[978,2,2,44,46],[979,2,2,46,48],[983,5,5,48,53],[984,1,1,53,54],[985,1,1,54,55],[986,2,2,55,57],[987,1,1,57,58],[988,1,1,58,59],[989,1,1,59,60],[991,1,1,60,61]]],[42,20,19,61,80,[[997,1,1,61,62],[999,1,1,62,63],[1000,1,1,63,64],[1003,5,4,64,68],[1004,2,2,68,70],[1005,4,4,70,74],[1007,3,3,74,77],[1008,2,2,77,79],[1014,1,1,79,80]]],[43,4,4,80,84,[[1032,1,1,80,81],[1040,3,3,81,84]]]],[23199,23254,23390,23393,23413,23491,23503,23513,23527,23634,23645,23673,23678,23683,23684,23765,23871,23887,23906,23913,23920,23931,23932,23933,23941,23943,23945,23947,24191,24276,24278,24284,24294,24464,24466,24468,24511,24515,24590,24686,25124,25128,25137,25140,25148,25153,25225,25231,25444,25447,25448,25449,25458,25460,25549,25554,25556,25590,25634,25671,25770,26068,26121,26157,26360,26373,26375,26376,26384,26394,26453,26455,26456,26480,26569,26570,26580,26599,26622,26788,27447,27740,27741,27742]]],["Pharisees'",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27743]]]]},{"k":"G5331","v":[["*",[3,3,[[47,1,1,0,1,[[1095,1,1,0,1]]],[65,2,2,1,3,[[1175,1,1,1,2],[1184,1,1,2,3]]]],[29182,30861,31016]]],["sorceries",[2,2,[[65,2,2,0,2,[[1175,1,1,0,1],[1184,1,1,1,2]]]],[30861,31016]]],["witchcraft",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29182]]]]},{"k":"G5332","v":[["sorcerers",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31061]]]]},{"k":"G5333","v":[["sorcerers",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31095]]]]},{"k":"G5334","v":[["tidings",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27695]]]]},{"k":"G5335","v":[["*",[4,4,[[43,2,2,0,2,[[1041,1,1,0,1],[1042,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[65,1,1,3,4,[[1168,1,1,3,4]]]],[27778,27815,27952,30719]]],["Professing",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27952]]],["affirmed",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27815]]],["say",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30719]]],["saying",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27778]]]]},{"k":"G5336","v":[["*",[4,4,[[41,4,4,0,4,[[974,3,3,0,3],[985,1,1,3,4]]]],[24980,24985,24989,25533]]],["manger",[3,3,[[41,3,3,0,3,[[974,3,3,0,3]]]],[24980,24985,24989]]],["stall",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25533]]]]},{"k":"G5337","v":[["*",[4,4,[[42,2,2,0,2,[[999,1,1,0,1],[1001,1,1,1,2]]],[55,1,1,2,3,[[1130,1,1,2,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]]],[26140,26239,29916,30335]]],["evil",[3,3,[[42,2,2,0,2,[[999,1,1,0,1],[1001,1,1,1,2]]],[58,1,1,2,3,[[1148,1,1,2,3]]]],[26140,26239,30335]]],["thing",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29916]]]]},{"k":"G5338","v":[["light",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]]],[23986,24741,25438]]]]},{"k":"G5339","v":[["*",[10,9,[[43,1,1,0,1,[[1037,1,1,0,1]]],[44,3,2,1,3,[[1053,1,1,1,2],[1056,2,1,2,3]]],[45,1,1,3,4,[[1068,1,1,3,4]]],[46,3,3,4,7,[[1078,1,1,4,5],[1089,1,1,5,6],[1090,1,1,6,7]]],[60,2,2,7,9,[[1157,2,2,7,9]]]],[27655,28148,28230,28515,28823,29028,29045,30504,30505]]],["forbear",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29028]]],["spare",[4,4,[[44,1,1,0,1,[[1056,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]],[46,2,2,2,4,[[1078,1,1,2,3],[1090,1,1,3,4]]]],[28230,28515,28823,29045]]],["spared",[4,4,[[44,2,2,0,2,[[1053,1,1,0,1],[1056,1,1,1,2]]],[60,2,2,2,4,[[1157,2,2,2,4]]]],[28148,28230,30504,30505]]],["sparing",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27655]]]]},{"k":"G5340","v":[["sparingly",[2,1,[[46,2,1,0,1,[[1086,2,1,0,1]]]],[28962]]]]},{"k":"G5341","v":[["cloke",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29883]]]]},{"k":"G5342","v":[["*",[64,58,[[39,4,3,0,3,[[942,3,2,0,2],[945,1,1,2,3]]],[40,13,13,3,16,[[957,1,1,3,4],[958,1,1,4,5],[960,1,1,5,6],[962,2,2,6,8],[963,1,1,8,9],[964,1,1,9,10],[965,3,3,10,13],[968,2,2,13,15],[971,1,1,15,16]]],[41,4,4,16,20,[[977,1,1,16,17],[987,1,1,17,18],[995,1,1,18,19],[996,1,1,19,20]]],[42,17,13,20,33,[[998,2,1,20,21],[1000,1,1,21,22],[1008,1,1,22,23],[1011,7,5,23,28],[1014,1,1,28,29],[1015,1,1,29,30],[1016,2,1,30,31],[1017,2,2,31,33]]],[43,10,10,33,43,[[1019,1,1,33,34],[1021,2,2,34,36],[1022,2,2,36,38],[1029,1,1,38,39],[1031,1,1,39,40],[1042,1,1,40,41],[1044,2,2,41,43]]],[44,1,1,43,44,[[1054,1,1,43,44]]],[54,1,1,44,45,[[1128,1,1,44,45]]],[57,5,5,45,50,[[1133,1,1,45,46],[1138,1,1,46,47],[1141,1,1,47,48],[1144,1,1,48,49],[1145,1,1,49,50]]],[59,1,1,50,51,[[1151,1,1,50,51]]],[60,5,4,51,55,[[1156,4,3,51,54],[1157,1,1,54,55]]],[62,1,1,55,56,[[1164,1,1,55,56]]],[65,2,2,56,58,[[1187,2,2,56,58]]]],[23608,23615,23717,24247,24263,24331,24434,24435,24495,24522,24555,24557,24558,24688,24689,24848,25125,25611,25961,25992,26103,26189,26604,26701,26703,26704,26707,26715,26814,26864,26894,26908,26916,26951,27056,27059,27061,27075,27347,27427,27803,27870,27872,28177,29883,29966,30045,30121,30232,30254,30387,30496,30497,30500,30511,30655,31077,31079]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27870]]],["Bring",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[42,1,1,1,2,[[1017,1,1,1,2]]]],[23615,26908]]],["Reach",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26894]]],["bare",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26103]]],["be",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30121]]],["bear",[4,4,[[41,1,1,0,1,[[995,1,1,0,1]]],[42,3,3,1,4,[[998,1,1,1,2],[1011,2,2,2,4]]]],[25961,26103,26703,26707]]],["beareth",[2,1,[[42,2,1,0,1,[[1011,2,1,0,1]]]],[26701]]],["bearing",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30254]]],["bring",[12,12,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,5,5,1,6,[[963,1,1,1,2],[964,1,1,2,3],[965,1,1,3,4],[968,1,1,4,5],[971,1,1,5,6]]],[42,1,1,6,7,[[1014,1,1,6,7]]],[54,1,1,7,8,[[1128,1,1,7,8]]],[60,1,1,8,9,[[1157,1,1,8,9]]],[62,1,1,9,10,[[1164,1,1,9,10]]],[65,2,2,10,12,[[1187,2,2,10,12]]]],[23717,24495,24522,24557,24688,24848,26814,29883,30511,30655,31077,31079]]],["bringing",[3,3,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]]],[24263,25992,27075]]],["brought",[16,15,[[39,2,1,0,1,[[942,2,1,0,1]]],[40,6,6,1,7,[[957,1,1,1,2],[962,2,2,2,4],[965,2,2,4,6],[968,1,1,6,7]]],[41,1,1,7,8,[[977,1,1,7,8]]],[42,2,2,8,10,[[1000,1,1,8,9],[1015,1,1,9,10]]],[43,4,4,10,14,[[1021,2,2,10,12],[1022,1,1,12,13],[1031,1,1,13,14]]],[59,1,1,14,15,[[1151,1,1,14,15]]]],[23608,24247,24434,24435,24555,24558,24689,25125,26189,26864,27056,27059,27061,27427,30387]]],["came",[3,3,[[60,3,3,0,3,[[1156,3,3,0,3]]]],[30496,30497,30500]]],["carry",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26916]]],["driven",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27872]]],["endure",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30232]]],["endured",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28177]]],["forth",[5,5,[[40,1,1,0,1,[[960,1,1,0,1]]],[42,4,4,1,5,[[1008,1,1,1,2],[1011,3,3,2,5]]]],[24331,26604,26701,26704,26715]]],["hither",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25611]]],["laid",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27803]]],["leadeth",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27347]]],["moved",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30500]]],["on",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30045]]],["reach",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26894]]],["rushing",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26951]]],["upholding",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29966]]]]},{"k":"G5343","v":[["*",[31,31,[[39,7,7,0,7,[[930,1,1,0,1],[931,1,1,1,2],[936,1,1,2,3],[938,1,1,3,4],[951,1,1,4,5],[952,1,1,5,6],[954,1,1,6,7]]],[40,5,5,7,12,[[961,1,1,7,8],[969,1,1,8,9],[970,2,2,9,11],[972,1,1,11,12]]],[41,3,3,12,15,[[975,1,1,12,13],[980,1,1,13,14],[993,1,1,14,15]]],[42,3,3,15,18,[[1006,3,3,15,18]]],[43,2,2,18,20,[[1024,1,1,18,19],[1044,1,1,19,20]]],[45,2,2,20,22,[[1067,1,1,20,21],[1071,1,1,21,22]]],[53,1,1,22,23,[[1124,1,1,22,23]]],[54,1,1,23,24,[[1126,1,1,23,24]]],[57,2,2,24,26,[[1143,1,1,24,25],[1144,1,1,25,26]]],[58,1,1,26,27,[[1149,1,1,26,27]]],[65,4,4,27,31,[[1175,1,1,27,28],[1178,1,1,28,29],[1182,1,1,29,30],[1186,1,1,30,31]]]],[23182,23199,23378,23440,23951,23973,24110,24378,24731,24804,24806,24881,25032,25279,25847,26486,26493,26494,27145,27885,28485,28581,29799,29849,30206,30237,30344,30846,30897,30974,31049]]],["+",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23951]]],["Flee",[2,2,[[45,1,1,0,1,[[1067,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[28485,29849]]],["away",[2,2,[[65,2,2,0,2,[[1182,1,1,0,1],[1186,1,1,1,2]]]],[30974,31049]]],["escaped",[2,2,[[57,2,2,0,2,[[1143,1,1,0,1],[1144,1,1,1,2]]]],[30206,30237]]],["fled",[9,9,[[39,2,2,0,2,[[936,1,1,0,1],[954,1,1,1,2]]],[40,4,4,2,6,[[961,1,1,2,3],[970,2,2,3,5],[972,1,1,5,6]]],[41,1,1,6,7,[[980,1,1,6,7]]],[43,1,1,7,8,[[1024,1,1,7,8]]],[65,1,1,8,9,[[1178,1,1,8,9]]]],[23378,24110,24378,24804,24806,24881,25279,27145,30897]]],["flee",[13,13,[[39,4,4,0,4,[[930,1,1,0,1],[931,1,1,1,2],[938,1,1,2,3],[952,1,1,3,4]]],[40,1,1,4,5,[[969,1,1,4,5]]],[41,2,2,5,7,[[975,1,1,5,6],[993,1,1,6,7]]],[42,1,1,7,8,[[1006,1,1,7,8]]],[43,1,1,8,9,[[1044,1,1,8,9]]],[45,1,1,9,10,[[1071,1,1,9,10]]],[53,1,1,10,11,[[1124,1,1,10,11]]],[58,1,1,11,12,[[1149,1,1,11,12]]],[65,1,1,12,13,[[1175,1,1,12,13]]]],[23182,23199,23440,23973,24731,25032,25847,26486,27885,28581,29799,30344,30846]]],["fleeth",[2,2,[[42,2,2,0,2,[[1006,2,2,0,2]]]],[26493,26494]]]]},{"k":"G5344","v":[["*",[9,8,[[43,9,8,0,8,[[1040,2,2,0,2],[1041,6,5,2,7],[1042,1,1,7,8]]]],[27758,27760,27772,27791,27793,27794,27796,27810]]],["+",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27796]]],["Felix",[8,8,[[43,8,8,0,8,[[1040,2,2,0,2],[1041,5,5,2,7],[1042,1,1,7,8]]]],[27758,27760,27772,27791,27793,27794,27796,27810]]]]},{"k":"G5345","v":[["fame",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]]],[23405,25077]]]]},{"k":"G5346","v":[["*",[58,57,[[39,15,15,0,15,[[932,1,1,0,1],[936,1,1,1,2],[941,2,2,2,4],[942,1,1,4,5],[945,1,1,5,6],[947,1,1,6,7],[949,1,1,7,8],[953,2,2,8,10],[954,2,2,10,12],[955,3,3,12,15]]],[40,1,1,15,16,[[970,1,1,15,16]]],[41,5,5,16,21,[[979,2,2,16,18],[994,2,2,18,20],[995,1,1,20,21]]],[42,2,2,21,23,[[997,1,1,21,22],[1005,1,1,22,23]]],[43,27,26,23,49,[[1019,1,1,23,24],[1024,1,1,24,25],[1025,1,1,25,26],[1027,3,3,26,29],[1033,2,2,29,31],[1034,1,1,31,32],[1036,1,1,32,33],[1038,1,1,33,34],[1039,3,3,34,37],[1040,4,4,37,41],[1042,4,3,41,44],[1043,5,5,44,49]]],[44,1,1,49,50,[[1048,1,1,49,50]]],[45,5,5,50,55,[[1067,1,1,50,51],[1068,1,1,51,52],[1071,2,2,52,54],[1076,1,1,54,55]]],[46,1,1,55,56,[[1087,1,1,55,56]]],[57,1,1,56,57,[[1140,1,1,56,57]]]],[23216,23353,23567,23568,23605,23726,23783,23853,24029,24031,24088,24115,24140,24152,24194,24783,25235,25239,25922,25934,25938,26067,26478,26987,27118,27212,27287,27289,27290,27513,27520,27545,27620,27701,27706,27731,27732,27739,27751,27752,27769,27801,27818,27820,27824,27847,27848,27851,27855,27999,28483,28516,28582,28586,28768,28981,30097]]],["affirm",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[27999]]],["said",[47,46,[[39,14,14,0,14,[[932,1,1,0,1],[936,1,1,1,2],[941,2,2,2,4],[942,1,1,4,5],[947,1,1,5,6],[949,1,1,6,7],[953,2,2,7,9],[954,2,2,9,11],[955,3,3,11,14]]],[40,1,1,14,15,[[970,1,1,14,15]]],[41,4,4,15,19,[[979,1,1,15,16],[994,2,2,16,18],[995,1,1,18,19]]],[42,2,2,19,21,[[997,1,1,19,20],[1005,1,1,20,21]]],[43,26,25,21,46,[[1019,1,1,21,22],[1024,1,1,22,23],[1025,1,1,23,24],[1027,3,3,24,27],[1033,2,2,27,29],[1034,1,1,29,30],[1036,1,1,30,31],[1038,1,1,31,32],[1039,2,2,32,34],[1040,4,4,34,38],[1042,4,3,38,41],[1043,5,5,41,46]]]],[23216,23353,23567,23568,23605,23783,23853,24029,24031,24088,24115,24140,24152,24194,24783,25239,25922,25934,25938,26067,26478,26987,27118,27212,27287,27289,27290,27513,27520,27545,27620,27701,27731,27732,27739,27751,27752,27769,27801,27818,27820,27824,27847,27848,27851,27855]]],["saith",[5,5,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[43,1,1,2,3,[[1039,1,1,2,3]]],[45,1,1,3,4,[[1067,1,1,3,4]]],[57,1,1,4,5,[[1140,1,1,4,5]]]],[23726,25235,27706,28483,30097]]],["say",[5,5,[[45,4,4,0,4,[[1068,1,1,0,1],[1071,2,2,1,3],[1076,1,1,3,4]]],[46,1,1,4,5,[[1087,1,1,4,5]]]],[28516,28582,28586,28768,28981]]]]},{"k":"G5347","v":[["*",[13,13,[[43,13,13,0,13,[[1041,1,1,0,1],[1042,9,9,1,10],[1043,3,3,10,13]]]],[27796,27797,27800,27805,27808,27809,27810,27818,27819,27820,27847,27848,27855]]],["Festus",[12,12,[[43,12,12,0,12,[[1041,1,1,0,1],[1042,8,8,1,9],[1043,3,3,9,12]]]],[27796,27797,27800,27805,27808,27809,27810,27818,27820,27847,27848,27855]]],["Festus'",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27819]]]]},{"k":"G5348","v":[["*",[7,7,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]],[46,1,1,3,4,[[1087,1,1,3,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]],[51,2,2,5,7,[[1112,1,1,5,6],[1114,1,1,6,7]]]],[23517,25425,28186,28985,29437,29586,29618]]],["attained",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[28186,29437]]],["come",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[46,1,1,2,3,[[1087,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]]],[23517,25425,28985,29586]]],["prevent",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29618]]]]},{"k":"G5349","v":[["*",[6,6,[[44,1,1,0,1,[[1046,1,1,0,1]]],[45,3,3,1,4,[[1070,1,1,1,2],[1076,2,2,2,4]]],[59,2,2,4,6,[[1151,2,2,4,6]]]],[27953,28565,28771,28772,30392,30397]]],["corruptible",[5,5,[[44,1,1,0,1,[[1046,1,1,0,1]]],[45,3,3,1,4,[[1070,1,1,1,2],[1076,2,2,2,4]]],[59,1,1,4,5,[[1151,1,1,4,5]]]],[27953,28565,28771,28772,30397]]],["things",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30392]]]]},{"k":"G5350","v":[["*",[3,3,[[43,1,1,0,1,[[1021,1,1,0,1]]],[60,2,2,1,3,[[1157,2,2,1,3]]]],[27040,30516,30518]]],["speak",[2,2,[[43,1,1,0,1,[[1021,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[27040,30518]]],["speaking",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30516]]]]},{"k":"G5351","v":[["*",[8,7,[[45,3,2,0,2,[[1064,2,1,0,1],[1076,1,1,1,2]]],[46,2,2,2,4,[[1084,1,1,2,3],[1088,1,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]],[64,1,1,5,6,[[1166,1,1,5,6]]],[65,1,1,6,7,[[1185,1,1,6,7]]]],[28427,28751,28918,28992,29294,30682,31019]]],["corrupt",[3,3,[[45,1,1,0,1,[[1076,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[65,1,1,2,3,[[1185,1,1,2,3]]]],[28751,29294,31019]]],["corrupted",[2,2,[[46,2,2,0,2,[[1084,1,1,0,1],[1088,1,1,1,2]]]],[28918,28992]]],["defile",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28427]]],["destroy",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28427]]],["themselves",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30682]]]]},{"k":"G5352","v":[["withereth",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30684]]]]},{"k":"G5353","v":[["*",[2,2,[[44,1,1,0,1,[[1055,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[28206,28685]]],["sound",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28206]]],["sounds",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28685]]]]},{"k":"G5354","v":[["envying",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29188]]]]},{"k":"G5355","v":[["*",[9,9,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]],[49,1,1,4,5,[[1103,1,1,4,5]]],[53,1,1,5,6,[[1124,1,1,5,6]]],[55,1,1,6,7,[[1131,1,1,6,7]]],[58,1,1,7,8,[[1149,1,1,7,8]]],[59,1,1,8,9,[[1152,1,1,8,9]]]],[24147,24836,27959,29183,29376,29792,29926,30342,30400]]],["Envyings",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29183]]],["envies",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30400]]],["envy",[7,7,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[49,1,1,3,4,[[1103,1,1,3,4]]],[53,1,1,4,5,[[1124,1,1,4,5]]],[55,1,1,5,6,[[1131,1,1,5,6]]],[58,1,1,6,7,[[1149,1,1,6,7]]]],[24147,24836,27959,29376,29792,29926,30342]]]]},{"k":"G5356","v":[["*",[9,8,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,2,2,1,3,[[1076,2,2,1,3]]],[47,1,1,3,4,[[1096,1,1,3,4]]],[50,1,1,4,5,[[1108,1,1,4,5]]],[60,4,3,5,8,[[1156,1,1,5,6],[1157,3,2,6,8]]]],[28137,28760,28768,29196,29516,30483,30512,30519]]],["+",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29516]]],["corruption",[7,7,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,2,2,1,3,[[1076,2,2,1,3]]],[47,1,1,3,4,[[1096,1,1,3,4]]],[60,3,3,4,7,[[1156,1,1,4,5],[1157,2,2,5,7]]]],[28137,28760,28768,29196,30483,30512,30519]]],["destroyed",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30512]]]]},{"k":"G5357","v":[["*",[12,12,[[65,12,12,0,12,[[1171,1,1,0,1],[1181,1,1,1,2],[1182,8,8,2,10],[1183,1,1,10,11],[1187,1,1,11,12]]]],[30787,30953,30955,30956,30957,30958,30962,30964,30966,30971,30976,31062]]],["vial",[7,7,[[65,7,7,0,7,[[1182,7,7,0,7]]]],[30956,30957,30958,30962,30964,30966,30971]]],["vials",[5,5,[[65,5,5,0,5,[[1171,1,1,0,1],[1181,1,1,1,2],[1182,1,1,2,3],[1183,1,1,3,4],[1187,1,1,4,5]]]],[30787,30953,30955,30976,31062]]]]},{"k":"G5358","v":[["men",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29900]]]]},{"k":"G5359","v":[["Philadelphia",[2,2,[[65,2,2,0,2,[[1167,1,1,0,1],[1169,1,1,1,2]]]],[30708,30753]]]]},{"k":"G5360","v":[["*",[6,5,[[44,1,1,0,1,[[1057,1,1,0,1]]],[51,1,1,1,2,[[1114,1,1,1,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]],[60,2,1,4,5,[[1156,2,1,4,5]]]],[28255,29612,30242,30396,30486]]],["brethren",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30396]]],["kindness",[2,1,[[60,2,1,0,1,[[1156,2,1,0,1]]]],[30486]]],["love",[3,3,[[44,1,1,0,1,[[1057,1,1,0,1]]],[51,1,1,1,2,[[1114,1,1,1,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]]],[28255,29612,30242]]]]},{"k":"G5361","v":[["brethren",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30432]]]]},{"k":"G5362","v":[["husbands",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29912]]]]},{"k":"G5363","v":[["*",[2,2,[[43,1,1,0,1,[[1045,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[27901,29927]]],["+",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29927]]],["kindness",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27901]]]]},{"k":"G5364","v":[["courteously",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27858]]]]},{"k":"G5365","v":[["money",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29798]]]]},{"k":"G5366","v":[["covetous",[2,2,[[41,1,1,0,1,[[988,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[25634,29855]]]]},{"k":"G5367","v":[["selves",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29855]]]]},{"k":"G5368","v":[["*",[25,21,[[39,5,4,0,4,[[934,1,1,0,1],[938,2,1,1,2],[951,1,1,2,3],[954,1,1,3,4]]],[40,1,1,4,5,[[970,1,1,4,5]]],[41,2,2,5,7,[[992,1,1,5,6],[994,1,1,6,7]]],[42,13,10,7,17,[[1001,1,1,7,8],[1007,2,2,8,10],[1008,1,1,10,11],[1011,1,1,11,12],[1012,2,1,12,13],[1016,1,1,13,14],[1017,5,3,14,17]]],[45,1,1,17,18,[[1077,1,1,17,18]]],[55,1,1,18,19,[[1131,1,1,18,19]]],[65,2,2,19,21,[[1169,1,1,19,20],[1188,1,1,20,21]]]],[23287,23454,23924,24102,24798,25825,25911,26230,26526,26559,26605,26718,26753,26869,26913,26914,26915,28798,29938,30765,31095]]],["+",[1,1,[[42,1,1,0,1,[[1011,1,1,0,1]]]],[26718]]],["Lovest",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26915]]],["kiss",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]]],[24102,24798,25911]]],["love",[9,9,[[39,2,2,0,2,[[934,1,1,0,1],[951,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[42,3,3,3,6,[[1017,3,3,3,6]]],[45,1,1,6,7,[[1077,1,1,6,7]]],[55,1,1,7,8,[[1131,1,1,7,8]]],[65,1,1,8,9,[[1169,1,1,8,9]]]],[23287,23924,25825,26913,26914,26915,28798,29938,30765]]],["loved",[3,3,[[42,3,3,0,3,[[1007,1,1,0,1],[1012,1,1,1,2],[1016,1,1,2,3]]]],[26559,26753,26869]]],["lovest",[2,2,[[42,2,2,0,2,[[1007,1,1,0,1],[1017,1,1,1,2]]]],[26526,26915]]],["loveth",[6,5,[[39,2,1,0,1,[[938,2,1,0,1]]],[42,3,3,1,4,[[1001,1,1,1,2],[1008,1,1,2,3],[1012,1,1,3,4]]],[65,1,1,4,5,[[1188,1,1,4,5]]]],[23454,26230,26605,26753,31095]]]]},{"k":"G5369","v":[["pleasures",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29857]]]]},{"k":"G5370","v":[["kiss",[7,7,[[41,2,2,0,2,[[979,1,1,0,1],[994,1,1,1,2]]],[44,1,1,2,3,[[1061,1,1,2,3]]],[45,1,1,3,4,[[1077,1,1,3,4]]],[46,1,1,4,5,[[1090,1,1,4,5]]],[51,1,1,5,6,[[1115,1,1,5,6]]],[59,1,1,6,7,[[1155,1,1,6,7]]]],[25240,25912,28352,28796,29055,29647,30479]]]]},{"k":"G5371","v":[["Philemon",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29939]]]]},{"k":"G5372","v":[["Philetus",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29844]]]]},{"k":"G5373","v":[["friendship",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30341]]]]},{"k":"G5374","v":[["Philippians",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29457]]]]},{"k":"G5375","v":[["Philippi",[4,4,[[43,2,2,0,2,[[1033,1,1,0,1],[1037,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]]],[27495,27632,29362,29572]]]]},{"k":"G5376","v":[["*",[38,37,[[39,3,3,0,3,[[938,1,1,0,1],[942,1,1,1,2],[944,1,1,2,3]]],[40,3,3,3,6,[[959,1,1,3,4],[962,1,1,4,5],[964,1,1,5,6]]],[41,3,3,6,9,[[975,2,2,6,8],[978,1,1,8,9]]],[42,12,11,9,20,[[997,5,5,9,14],[1002,2,2,14,16],[1008,3,2,16,18],[1010,2,2,18,20]]],[43,17,17,20,37,[[1018,1,1,20,21],[1023,1,1,21,22],[1025,14,14,22,36],[1038,1,1,36,37]]]],[23420,23600,23685,24306,24424,24527,25026,25044,25160,26087,26088,26089,26090,26092,26262,26264,26601,26602,26676,26677,26936,27106,27181,27182,27188,27189,27202,27205,27206,27207,27210,27211,27213,27214,27215,27216,27672]]],["Philip",[33,32,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[41,2,2,2,4,[[975,1,1,2,3],[978,1,1,3,4]]],[42,12,11,4,15,[[997,5,5,4,9],[1002,2,2,9,11],[1008,3,2,11,13],[1010,2,2,13,15]]],[43,17,17,15,32,[[1018,1,1,15,16],[1023,1,1,16,17],[1025,14,14,17,31],[1038,1,1,31,32]]]],[23420,24306,25026,25160,26087,26088,26089,26090,26092,26262,26264,26601,26602,26676,26677,26936,27106,27181,27182,27188,27189,27202,27205,27206,27207,27210,27211,27213,27214,27215,27216,27672]]],["Philip's",[3,3,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,1,1,2,3,[[975,1,1,2,3]]]],[23600,24424,25044]]],["Philippi",[2,2,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]]],[23685,24527]]]]},{"k":"G5377","v":[["God",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29857]]]]},{"k":"G5378","v":[["Philologus",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28351]]]]},{"k":"G5379","v":[["strife",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25888]]]]},{"k":"G5380","v":[["contentious",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28616]]]]},{"k":"G5381","v":[["*",[2,2,[[44,1,1,0,1,[[1057,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[28258,30243]]],["hospitality",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28258]]],["strangers",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30243]]]]},{"k":"G5382","v":[["hospitality",[3,3,[[53,1,1,0,1,[[1121,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[29733,29900,30455]]]]},{"k":"G5383","v":[["preeminence",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30667]]]]},{"k":"G5384","v":[["*",[29,27,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,15,14,1,15,[[979,2,2,1,3],[983,4,3,3,6],[984,1,1,6,7],[986,2,2,7,9],[987,3,3,9,12],[988,1,1,12,13],[993,1,1,13,14],[995,1,1,14,15]]],[42,6,6,15,21,[[999,1,1,15,16],[1007,1,1,16,17],[1011,3,3,17,20],[1015,1,1,20,21]]],[43,3,3,21,24,[[1027,1,1,21,22],[1036,1,1,22,23],[1044,1,1,23,24]]],[58,2,2,24,26,[[1147,1,1,24,25],[1149,1,1,25,26]]],[63,2,1,26,27,[[1165,2,1,26,27]]]],[23478,25201,25229,25410,25411,25413,25463,25563,25565,25594,25597,25617,25629,25842,25947,26149,26534,26712,26713,26714,26837,27283,27616,27858,30316,30341,30672]]],["+",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25597]]],["Friend",[3,3,[[41,2,2,0,2,[[983,1,1,0,1],[986,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[25410,25563,30316]]],["friend",[9,9,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,4,4,1,5,[[979,1,1,1,2],[983,3,3,2,5]]],[42,3,3,5,8,[[999,1,1,5,6],[1007,1,1,6,7],[1015,1,1,7,8]]],[58,1,1,8,9,[[1149,1,1,8,9]]]],[23478,25229,25410,25411,25413,26149,26534,26837,30341]]],["friends",[16,15,[[41,8,8,0,8,[[979,1,1,0,1],[984,1,1,1,2],[986,1,1,2,3],[987,2,2,3,5],[988,1,1,5,6],[993,1,1,6,7],[995,1,1,7,8]]],[42,3,3,8,11,[[1011,3,3,8,11]]],[43,3,3,11,14,[[1027,1,1,11,12],[1036,1,1,12,13],[1044,1,1,13,14]]],[63,2,1,14,15,[[1165,2,1,14,15]]]],[25201,25463,25565,25594,25617,25629,25842,25947,26712,26713,26714,27283,27616,27858,30672]]]]},{"k":"G5385","v":[["philosophy",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29502]]]]},{"k":"G5386","v":[["philosophers",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27541]]]]},{"k":"G5387","v":[["affectioned",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28255]]]]},{"k":"G5388","v":[["children",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29912]]]]},{"k":"G5389","v":[["*",[3,3,[[44,1,1,0,1,[[1060,1,1,0,1]]],[46,1,1,1,2,[[1082,1,1,1,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]]],[28323,28886,29614]]],["labour",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28886]]],["strived",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28323]]],["study",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29614]]]]},{"k":"G5390","v":[["courteously",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27906]]]]},{"k":"G5391","v":[["courteous",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30432]]]]},{"k":"G5392","v":[["*",[8,8,[[39,2,2,0,2,[[950,2,2,0,2]]],[40,2,2,2,4,[[957,1,1,2,3],[960,1,1,3,4]]],[41,1,1,4,5,[[976,1,1,4,5]]],[45,1,1,5,6,[[1070,1,1,5,6]]],[53,1,1,6,7,[[1123,1,1,6,7]]],[59,1,1,7,8,[[1152,1,1,7,8]]]],[23884,23906,24240,24362,25098,28549,29781,30414]]],["+",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23906]]],["muzzle",[2,2,[[45,1,1,0,1,[[1070,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[28549,29781]]],["peace",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]]],[24240,25098]]],["silence",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30414]]],["speechless",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23884]]],["still",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24362]]]]},{"k":"G5393","v":[["Phlegon",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28350]]]]},{"k":"G5394","v":[["fire",[2,1,[[58,2,1,0,1,[[1148,2,1,0,1]]]],[30325]]]]},{"k":"G5395","v":[["*",[7,7,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]],[57,1,1,3,4,[[1133,1,1,3,4]]],[65,3,3,4,7,[[1167,1,1,4,5],[1168,1,1,5,6],[1185,1,1,6,7]]]],[25644,27146,29657,29970,30711,30735,31029]]],["flame",[6,6,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[57,1,1,2,3,[[1133,1,1,2,3]]],[65,3,3,3,6,[[1167,1,1,3,4],[1168,1,1,4,5],[1185,1,1,5,6]]]],[25644,27146,29970,30711,30735,31029]]],["flaming",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29657]]]]},{"k":"G5396","v":[["against",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30668]]]]},{"k":"G5397","v":[["tattlers",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29776]]]]},{"k":"G5398","v":[["*",[3,3,[[57,3,3,0,3,[[1142,2,2,0,2],[1144,1,1,2,3]]]],[30160,30164,30233]]],["fearful",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30160]]],["terrible",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30233]]],["thing",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30164]]]]},{"k":"G5399","v":[["*",[93,90,[[39,17,16,0,16,[[929,1,1,0,1],[930,1,1,1,2],[938,4,3,2,5],[942,3,3,5,8],[945,2,2,8,10],[949,2,2,10,12],[953,1,1,12,13],[955,1,1,13,14],[956,2,2,14,16]]],[40,12,12,16,28,[[960,1,1,16,17],[961,3,3,17,20],[962,2,2,20,22],[965,1,1,22,23],[966,1,1,23,24],[967,2,2,24,26],[968,1,1,26,27],[972,1,1,27,28]]],[41,23,21,28,49,[[973,3,3,28,31],[974,2,2,31,33],[977,1,1,33,34],[980,3,3,34,37],[981,2,2,37,39],[984,6,4,39,43],[990,2,2,43,45],[991,1,1,45,46],[992,1,1,46,47],[994,1,1,47,48],[995,1,1,48,49]]],[42,5,5,49,54,[[1002,2,2,49,51],[1005,1,1,51,52],[1008,1,1,52,53],[1015,1,1,53,54]]],[43,13,13,54,67,[[1022,1,1,54,55],[1026,1,1,55,56],[1027,3,3,56,59],[1030,2,2,59,61],[1033,1,1,61,62],[1035,1,1,62,63],[1039,1,1,63,64],[1044,3,3,64,67]]],[44,3,3,67,70,[[1056,1,1,67,68],[1058,2,2,68,70]]],[46,2,2,70,72,[[1088,1,1,70,71],[1089,1,1,71,72]]],[47,2,2,72,74,[[1092,1,1,72,73],[1094,1,1,73,74]]],[48,1,1,74,75,[[1101,1,1,74,75]]],[50,1,1,75,76,[[1109,1,1,75,76]]],[57,4,4,76,80,[[1136,1,1,76,77],[1143,2,2,77,79],[1145,1,1,79,80]]],[59,3,3,80,83,[[1152,1,1,80,81],[1153,2,2,81,83]]],[61,1,1,83,84,[[1162,1,1,83,84]]],[65,6,6,84,90,[[1167,1,1,84,85],[1168,1,1,85,86],[1177,1,1,86,87],[1180,1,1,87,88],[1181,1,1,88,89],[1185,1,1,89,90]]]],[23164,23191,23443,23445,23448,23602,23624,23627,23706,23707,23852,23872,24033,24183,24200,24205,24364,24379,24397,24400,24427,24457,24570,24620,24658,24672,24685,24881,24906,24923,24943,24982,24983,25117,25270,25280,25295,25335,25346,25463,25464,25466,25491,25690,25692,25752,25798,25866,25975,26276,26277,26462,26595,26833,27085,27242,27261,27281,27294,27378,27388,27521,27566,27733,27872,27879,27884,28229,28269,28270,28992,29042,29093,29142,29337,29539,30015,30195,30199,30247,30416,30430,30438,30621,30714,30727,30890,30933,30950,31022]]],["+",[15,15,[[39,4,4,0,4,[[942,1,1,0,1],[945,2,2,1,3],[956,1,1,3,4]]],[40,2,2,4,6,[[961,1,1,4,5],[962,1,1,5,6]]],[41,2,2,6,8,[[974,1,1,6,7],[984,1,1,7,8]]],[42,2,2,8,10,[[1002,1,1,8,9],[1015,1,1,9,10]]],[43,2,2,10,12,[[1026,1,1,10,11],[1035,1,1,11,12]]],[57,1,1,12,13,[[1143,1,1,12,13]]],[59,2,2,13,15,[[1153,2,2,13,15]]]],[23624,23706,23707,24205,24400,24457,24982,25463,26277,26833,27242,27566,30195,30430,30438]]],["Fear",[18,17,[[39,3,3,0,3,[[938,2,2,0,2],[956,1,1,2,3]]],[41,9,8,3,11,[[973,2,2,3,5],[974,1,1,5,6],[977,1,1,6,7],[980,1,1,7,8],[984,4,3,8,11]]],[42,1,1,11,12,[[1008,1,1,11,12]]],[43,1,1,12,13,[[1044,1,1,12,13]]],[59,1,1,13,14,[[1152,1,1,13,14]]],[65,3,3,14,17,[[1167,1,1,14,15],[1168,1,1,15,16],[1180,1,1,16,17]]]],[23443,23448,24200,24906,24923,24983,25117,25295,25464,25466,25491,26595,27879,30416,30714,30727,30933]]],["afraid",[14,14,[[39,3,3,0,3,[[930,1,1,0,1],[942,1,1,1,2],[953,1,1,2,3]]],[40,4,4,3,7,[[961,1,1,3,4],[965,1,1,4,5],[966,1,1,5,6],[972,1,1,6,7]]],[41,2,2,7,9,[[980,2,2,7,9]]],[42,1,1,9,10,[[1002,1,1,9,10]]],[43,1,1,10,11,[[1039,1,1,10,11]]],[44,2,2,11,13,[[1058,2,2,11,13]]],[47,1,1,13,14,[[1094,1,1,13,14]]]],[23191,23627,24033,24379,24570,24620,24881,25270,25280,26276,27733,28269,28270,29142]]],["fear",[17,16,[[39,4,3,0,3,[[929,1,1,0,1],[938,2,1,1,2],[949,1,1,2,3]]],[41,4,4,3,7,[[973,1,1,3,4],[984,1,1,4,5],[990,1,1,5,6],[995,1,1,6,7]]],[43,1,1,7,8,[[1030,1,1,7,8]]],[44,1,1,8,9,[[1056,1,1,8,9]]],[46,2,2,9,11,[[1088,1,1,9,10],[1089,1,1,10,11]]],[57,2,2,11,13,[[1136,1,1,11,12],[1145,1,1,12,13]]],[65,3,3,13,16,[[1177,1,1,13,14],[1181,1,1,14,15],[1185,1,1,15,16]]]],[23164,23445,23852,24943,25464,25692,25975,27378,28229,28992,29042,30015,30247,30890,30950,31022]]],["feared",[18,18,[[39,3,3,0,3,[[942,1,1,0,1],[949,1,1,1,2],[955,1,1,2,3]]],[40,5,5,3,8,[[960,1,1,3,4],[962,1,1,4,5],[967,2,2,5,7],[968,1,1,7,8]]],[41,6,6,8,14,[[981,2,2,8,10],[990,1,1,10,11],[991,1,1,11,12],[992,1,1,12,13],[994,1,1,13,14]]],[42,1,1,14,15,[[1005,1,1,14,15]]],[43,3,3,15,18,[[1022,1,1,15,16],[1027,1,1,16,17],[1033,1,1,17,18]]]],[23602,23872,24183,24364,24427,24658,24672,24685,25335,25346,25690,25752,25798,25866,26462,27085,27261,27521]]],["feareth",[4,4,[[43,3,3,0,3,[[1027,2,2,0,2],[1030,1,1,2,3]]],[61,1,1,3,4,[[1162,1,1,3,4]]]],[27281,27294,27388,30621]]],["fearing",[6,6,[[40,1,1,0,1,[[961,1,1,0,1]]],[43,2,2,1,3,[[1044,2,2,1,3]]],[47,1,1,3,4,[[1092,1,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]]],[24397,27872,27884,29093,29539,30199]]],["reverence",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29337]]]]},{"k":"G5400","v":[["sights",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25837]]]]},{"k":"G5401","v":[["*",[47,44,[[39,3,3,0,3,[[942,1,1,0,1],[956,2,2,1,3]]],[40,1,1,3,4,[[960,1,1,3,4]]],[41,7,7,4,11,[[973,2,2,4,6],[974,1,1,6,7],[977,1,1,7,8],[979,1,1,8,9],[980,1,1,9,10],[993,1,1,10,11]]],[42,3,3,11,14,[[1003,1,1,11,12],[1015,1,1,12,13],[1016,1,1,13,14]]],[43,5,5,14,19,[[1019,1,1,14,15],[1022,2,2,15,17],[1026,1,1,17,18],[1036,1,1,18,19]]],[44,5,4,19,23,[[1048,1,1,19,20],[1053,1,1,20,21],[1058,3,2,21,23]]],[45,1,1,23,24,[[1063,1,1,23,24]]],[46,5,5,24,29,[[1082,1,1,24,25],[1084,4,4,25,29]]],[48,2,2,29,31,[[1101,1,1,29,30],[1102,1,1,30,31]]],[49,1,1,31,32,[[1104,1,1,31,32]]],[53,1,1,32,33,[[1123,1,1,32,33]]],[57,1,1,33,34,[[1134,1,1,33,34]]],[59,5,5,34,39,[[1151,1,1,34,35],[1152,1,1,35,36],[1153,3,3,36,39]]],[61,3,1,39,40,[[1162,3,1,39,40]]],[64,1,1,40,41,[[1166,1,1,40,41]]],[65,3,3,41,44,[[1177,1,1,41,42],[1184,2,2,42,44]]]],[23623,24199,24203,24364,24905,24958,24982,25133,25211,25282,25852,26341,26863,26886,26992,27064,27070,27247,27602,28009,28131,28269,28273,28397,28888,28917,28921,28927,28931,29325,29342,29403,29783,29992,30391,30417,30426,30438,30439,30621,30695,30883,31003,31008]]],["+",[4,4,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[979,1,1,2,3]]],[53,1,1,3,4,[[1123,1,1,3,4]]]],[24364,24982,25211,29783]]],["fear",[39,36,[[39,3,3,0,3,[[942,1,1,0,1],[956,2,2,1,3]]],[41,5,5,3,8,[[973,2,2,3,5],[977,1,1,5,6],[980,1,1,6,7],[993,1,1,7,8]]],[42,3,3,8,11,[[1003,1,1,8,9],[1015,1,1,9,10],[1016,1,1,10,11]]],[43,5,5,11,16,[[1019,1,1,11,12],[1022,2,2,12,14],[1026,1,1,14,15],[1036,1,1,15,16]]],[44,4,3,16,19,[[1048,1,1,16,17],[1053,1,1,17,18],[1058,2,1,18,19]]],[45,1,1,19,20,[[1063,1,1,19,20]]],[46,3,3,20,23,[[1084,3,3,20,23]]],[48,2,2,23,25,[[1101,1,1,23,24],[1102,1,1,24,25]]],[49,1,1,25,26,[[1104,1,1,25,26]]],[57,1,1,26,27,[[1134,1,1,26,27]]],[59,4,4,27,31,[[1151,1,1,27,28],[1152,1,1,28,29],[1153,2,2,29,31]]],[61,3,1,31,32,[[1162,3,1,31,32]]],[64,1,1,32,33,[[1166,1,1,32,33]]],[65,3,3,33,36,[[1177,1,1,33,34],[1184,2,2,34,36]]]],[23623,24199,24203,24905,24958,25133,25282,25852,26341,26863,26886,26992,27064,27070,27247,27602,28009,28131,28273,28397,28917,28927,28931,29325,29342,29403,29992,30391,30417,30426,30439,30621,30695,30883,31003,31008]]],["fears",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28921]]],["terror",[3,3,[[44,1,1,0,1,[[1058,1,1,0,1]]],[46,1,1,1,2,[[1082,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[28269,28888,30438]]]]},{"k":"G5402","v":[["Phebe",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28337]]]]},{"k":"G5403","v":[["*",[3,3,[[43,3,3,0,3,[[1028,1,1,0,1],[1032,1,1,1,2],[1038,1,1,2,3]]]],[27326,27445,27666]]],["Phenice",[2,2,[[43,2,2,0,2,[[1028,1,1,0,1],[1032,1,1,1,2]]]],[27326,27445]]],["Phenicia",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27666]]]]},{"k":"G5404","v":[["*",[2,2,[[42,1,1,0,1,[[1008,1,1,0,1]]],[65,1,1,1,2,[[1173,1,1,1,2]]]],[26593,30819]]],["palms",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30819]]],["trees",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26593]]]]},{"k":"G5405","v":[["Phenice",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27867]]]]},{"k":"G5406","v":[["*",[7,7,[[39,1,1,0,1,[[950,1,1,0,1]]],[43,3,3,1,4,[[1020,1,1,1,2],[1024,1,1,2,3],[1045,1,1,3,4]]],[59,1,1,4,5,[[1154,1,1,4,5]]],[65,2,2,5,7,[[1187,1,1,5,6],[1188,1,1,6,7]]]],[23879,27010,27168,27903,30461,31061,31095]]],["murderer",[3,3,[[43,2,2,0,2,[[1020,1,1,0,1],[1045,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[27010,27903,30461]]],["murderers",[4,4,[[39,1,1,0,1,[[950,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[65,2,2,2,4,[[1187,1,1,2,3],[1188,1,1,3,4]]]],[23879,27168,31061,31095]]]]},{"k":"G5407","v":[["*",[12,10,[[39,5,4,0,4,[[933,2,1,0,1],[947,1,1,1,2],[951,2,2,2,4]]],[40,1,1,4,5,[[966,1,1,4,5]]],[41,1,1,5,6,[[990,1,1,5,6]]],[44,1,1,6,7,[[1058,1,1,6,7]]],[58,4,3,7,10,[[1147,2,1,7,8],[1149,1,1,8,9],[1150,1,1,9,10]]]],[23255,23780,23949,23953,24607,25708,28275,30304,30339,30360]]],["+",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23780]]],["kill",[8,6,[[39,2,1,0,1,[[933,2,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[44,1,1,3,4,[[1058,1,1,3,4]]],[58,3,2,4,6,[[1147,2,1,4,5],[1149,1,1,5,6]]]],[23255,24607,25708,28275,30304,30339]]],["killed",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[23949,30360]]],["slew",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23953]]]]},{"k":"G5408","v":[["*",[10,10,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[963,1,1,1,2],[971,1,1,2,3]]],[41,2,2,3,5,[[995,2,2,3,5]]],[43,1,1,5,6,[[1026,1,1,5,6]]],[44,1,1,6,7,[[1046,1,1,6,7]]],[47,1,1,7,8,[[1095,1,1,7,8]]],[57,1,1,8,9,[[1143,1,1,8,9]]],[65,1,1,9,10,[[1175,1,1,9,10]]]],[23652,24484,24833,25954,25960,27217,27959,29183,30209,30861]]],["murder",[4,4,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,2,2,1,3,[[995,2,2,1,3]]],[44,1,1,3,4,[[1046,1,1,3,4]]]],[24833,25954,25960,27959]]],["murders",[4,4,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]],[65,1,1,3,4,[[1175,1,1,3,4]]]],[23652,24484,29183,30861]]],["slaughter",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27217]]],["the",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30209]]]]},{"k":"G5409","v":[["*",[6,5,[[39,1,1,0,1,[[939,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]],[44,1,1,2,3,[[1058,1,1,2,3]]],[45,2,1,3,4,[[1076,2,1,3,4]]],[58,1,1,4,5,[[1147,1,1,4,5]]]],[23467,26830,28270,28767,30296]]],["bear",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28767]]],["beareth",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28270]]],["borne",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28767]]],["wear",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23467]]],["weareth",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30296]]],["wearing",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26830]]]]},{"k":"G5410","v":[["forum",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27914]]]]},{"k":"G5411","v":[["tribute",[5,4,[[41,2,2,0,2,[[992,1,1,0,1],[995,1,1,1,2]]],[44,3,2,2,4,[[1058,3,2,2,4]]]],[25801,25937,28272,28273]]]]},{"k":"G5412","v":[["*",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23487,25451]]],["lade",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25451]]],["laden",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23487]]]]},{"k":"G5413","v":[["*",[5,4,[[39,2,2,0,2,[[939,1,1,0,1],[951,1,1,1,2]]],[41,2,1,2,3,[[983,2,1,2,3]]],[47,1,1,3,4,[[1096,1,1,3,4]]]],[23489,23922,25451,29193]]],["burden",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[47,1,1,1,2,[[1096,1,1,1,2]]]],[23489,29193]]],["burdens",[3,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,2,1,1,2,[[983,2,1,1,2]]]],[23922,25451]]]]},{"k":"G5414","v":[["lading",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27865]]]]},{"k":"G5415","v":[["Fortunatus",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28793]]]]},{"k":"G5416","v":[["scourge",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26110]]]]},{"k":"G5417","v":[["scourged",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24155,24841]]]]},{"k":"G5418","v":[["*",[4,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[986,1,1,2,3]]],[48,1,1,3,4,[[1098,1,1,3,4]]]],[23859,24674,25576,29243]]],["+",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]]],[23859,24674]]],["hedges",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25576]]],["partition",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29243]]]]},{"k":"G5419","v":[["Declare",[2,2,[[39,2,2,0,2,[[941,1,1,0,1],[943,1,1,1,2]]]],[23575,23648]]]]},{"k":"G5420","v":[["stopped",[2,2,[[44,1,1,0,1,[[1048,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[28010,30205]]]]},{"k":"G5421","v":[["*",[7,5,[[41,1,1,0,1,[[986,1,1,0,1]]],[42,2,2,1,3,[[1000,2,2,1,3]]],[65,4,2,3,5,[[1175,4,2,3,5]]]],[25558,26167,26168,30841,30842]]],["pit",[5,3,[[41,1,1,0,1,[[986,1,1,0,1]]],[65,4,2,1,3,[[1175,4,2,1,3]]]],[25558,30841,30842]]],["well",[2,2,[[42,2,2,0,2,[[1000,2,2,0,2]]]],[26167,26168]]]]},{"k":"G5422","v":[["deceiveth",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29191]]]]},{"k":"G5423","v":[["deceivers",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29902]]]]},{"k":"G5424","v":[["understanding",[2,1,[[45,2,1,0,1,[[1075,2,1,0,1]]]],[28698]]]]},{"k":"G5425","v":[["tremble",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30312]]]]},{"k":"G5426","v":[["*",[29,21,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]],[44,10,5,3,8,[[1053,1,1,3,4],[1057,4,2,4,6],[1059,4,1,6,7],[1060,1,1,7,8]]],[45,2,2,8,10,[[1065,1,1,8,9],[1074,1,1,9,10]]],[46,1,1,10,11,[[1090,1,1,10,11]]],[47,1,1,11,12,[[1095,1,1,11,12]]],[49,11,8,12,20,[[1103,1,1,12,13],[1104,3,2,13,15],[1105,4,3,15,18],[1106,3,2,18,20]]],[50,1,1,20,21,[[1109,1,1,20,21]]]],[23695,24533,27921,28121,28248,28261,28286,28308,28439,28676,29054,29172,29368,29393,29396,29436,29437,29440,29444,29452,29519]]],["+",[9,8,[[44,2,2,0,2,[[1059,1,1,0,1],[1060,1,1,1,2]]],[46,1,1,2,3,[[1090,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]],[49,5,4,4,8,[[1104,2,2,4,6],[1105,2,1,6,7],[1106,1,1,7,8]]]],[28286,28308,29054,29172,29393,29396,29436,29444]]],["Mind",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28261]]],["care",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29452]]],["careful",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29452]]],["mind",[5,5,[[44,2,2,0,2,[[1053,1,1,0,1],[1057,1,1,1,2]]],[49,3,3,2,5,[[1104,1,1,2,3],[1105,2,2,3,5]]]],[28121,28261,29393,29437,29440]]],["on",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29519]]],["regard",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28286]]],["regardeth",[2,1,[[44,2,1,0,1,[[1059,2,1,0,1]]]],[28286]]],["savourest",[2,2,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]]],[23695,24533]]],["think",[4,3,[[44,2,1,0,1,[[1057,2,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]]],[28248,28439,29368]]],["thinkest",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27921]]],["understood",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28676]]]]},{"k":"G5427","v":[["*",[4,3,[[44,4,3,0,3,[[1053,4,3,0,3]]]],[28122,28123,28143]]],["mind",[2,2,[[44,2,2,0,2,[[1053,2,2,0,2]]]],[28123,28143]]],["minded",[2,1,[[44,2,1,0,1,[[1053,2,1,0,1]]]],[28122]]]]},{"k":"G5428","v":[["*",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]]],[24910,29214]]],["prudence",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29214]]],["wisdom",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24910]]]]},{"k":"G5429","v":[["*",[14,14,[[39,7,7,0,7,[[935,1,1,0,1],[938,1,1,1,2],[952,1,1,2,3],[953,4,4,3,7]]],[41,2,2,7,9,[[984,1,1,7,8],[988,1,1,8,9]]],[44,2,2,9,11,[[1056,1,1,9,10],[1057,1,1,10,11]]],[45,2,2,11,13,[[1065,1,1,11,12],[1071,1,1,12,13]]],[46,1,1,13,14,[[1088,1,1,13,14]]]],[23340,23433,24002,24010,24012,24016,24017,25501,25628,28234,28261,28443,28582,29008]]],["men",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28582]]],["wise",[12,12,[[39,7,7,0,7,[[935,1,1,0,1],[938,1,1,1,2],[952,1,1,2,3],[953,4,4,3,7]]],[41,1,1,7,8,[[984,1,1,7,8]]],[44,2,2,8,10,[[1056,1,1,8,9],[1057,1,1,9,10]]],[45,1,1,10,11,[[1065,1,1,10,11]]],[46,1,1,11,12,[[1088,1,1,11,12]]]],[23340,23433,24002,24010,24012,24016,24017,25501,28234,28261,28443,29008]]],["wiser",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25628]]]]},{"k":"G5430","v":[["wisely",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25628]]]]},{"k":"G5431","v":[["careful",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29931]]]]},{"k":"G5432","v":[["*",[4,4,[[46,1,1,0,1,[[1088,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]],[49,1,1,2,3,[[1106,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[29021,29125,29449,30379]]],["+",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29021]]],["keep",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29449]]],["kept",[2,2,[[47,1,1,0,1,[[1093,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[29125,30379]]]]},{"k":"G5433","v":[["rage",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27047]]]]},{"k":"G5434","v":[["sticks",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27902]]]]},{"k":"G5435","v":[["Phrygia",[3,3,[[43,3,3,0,3,[[1019,1,1,0,1],[1033,1,1,1,2],[1035,1,1,2,3]]]],[26959,27489,27580]]]]},{"k":"G5436","v":[["Phygellus",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29824]]]]},{"k":"G5437","v":[["flight",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23977,24735]]]]},{"k":"G5438","v":[["*",[47,45,[[39,10,10,0,10,[[933,1,1,0,1],[942,3,3,1,4],[946,1,1,4,5],[952,1,1,5,6],[953,4,4,6,10]]],[40,3,3,10,13,[[962,3,3,10,13]]],[41,9,8,13,21,[[974,1,1,13,14],[975,1,1,14,15],[984,3,2,15,17],[993,1,1,17,18],[994,1,1,18,19],[995,2,2,19,21]]],[42,1,1,21,22,[[999,1,1,21,22]]],[43,16,16,22,38,[[1022,3,3,22,25],[1025,1,1,25,26],[1029,5,5,26,31],[1033,5,5,31,36],[1039,1,1,36,37],[1043,1,1,37,38]]],[46,2,2,38,40,[[1083,1,1,38,39],[1088,1,1,39,40]]],[57,1,1,40,41,[[1143,1,1,40,41]]],[59,1,1,41,42,[[1153,1,1,41,42]]],[65,4,3,42,45,[[1168,1,1,42,43],[1184,2,1,43,44],[1186,1,1,44,45]]]],[23259,23600,23607,23622,23757,24000,24044,24047,24051,24052,24424,24434,24455,24981,25045,25497,25517,25838,25897,25954,25960,26144,27078,27081,27084,27179,27341,27342,27343,27347,27354,27506,27507,27510,27520,27523,27708,27833,28903,29012,30208,30443,30727,30995,31045]]],["cage",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30995]]],["hold",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30995]]],["imprisonment",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30208]]],["imprisonments",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28903]]],["prison",[33,33,[[39,8,8,0,8,[[933,1,1,0,1],[942,2,2,1,3],[946,1,1,3,4],[953,4,4,4,8]]],[40,2,2,8,10,[[962,2,2,8,10]]],[41,5,5,10,15,[[975,1,1,10,11],[984,1,1,11,12],[994,1,1,12,13],[995,2,2,13,15]]],[42,1,1,15,16,[[999,1,1,15,16]]],[43,14,14,16,30,[[1022,3,3,16,19],[1025,1,1,19,20],[1029,4,4,20,24],[1033,5,5,24,29],[1043,1,1,29,30]]],[59,1,1,30,31,[[1153,1,1,30,31]]],[65,2,2,31,33,[[1168,1,1,31,32],[1186,1,1,32,33]]]],[23259,23600,23607,23757,24044,24047,24051,24052,24424,24434,25045,25517,25897,25954,25960,26144,27078,27081,27084,27179,27341,27342,27343,27354,27506,27507,27510,27520,27523,27833,30443,30727,31045]]],["prisons",[3,3,[[41,1,1,0,1,[[993,1,1,0,1]]],[43,1,1,1,2,[[1039,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]]],[25838,27708,29012]]],["ward",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27347]]],["watch",[6,5,[[39,2,2,0,2,[[942,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[41,3,2,3,5,[[974,1,1,3,4],[984,2,1,4,5]]]],[23622,24000,24455,24981,25497]]]]},{"k":"G5439","v":[["+",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27723]]]]},{"k":"G5440","v":[["phylacteries",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23923]]]]},{"k":"G5441","v":[["keepers",[3,3,[[43,3,3,0,3,[[1022,1,1,0,1],[1029,2,2,1,3]]]],[27082,27343,27356]]]]},{"k":"G5442","v":[["*",[30,30,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,6,6,2,8,[[974,1,1,2,3],[980,1,1,3,4],[983,2,2,4,6],[984,1,1,6,7],[990,1,1,7,8]]],[42,2,2,8,10,[[1008,1,1,8,9],[1013,1,1,9,10]]],[43,8,8,10,18,[[1024,1,1,10,11],[1029,1,1,11,12],[1033,1,1,12,13],[1038,2,2,13,15],[1039,1,1,15,16],[1040,1,1,16,17],[1045,1,1,17,18]]],[44,1,1,18,19,[[1047,1,1,18,19]]],[47,1,1,19,20,[[1096,1,1,19,20]]],[52,1,1,20,21,[[1118,1,1,20,21]]],[53,2,2,21,23,[[1123,1,1,21,22],[1124,1,1,22,23]]],[54,3,3,23,26,[[1125,2,2,23,25],[1128,1,1,25,26]]],[60,2,2,26,28,[[1157,1,1,26,27],[1158,1,1,27,28]]],[61,1,1,28,29,[[1163,1,1,28,29]]],[64,1,1,29,30,[[1166,1,1,29,30]]]],[23782,24608,24981,25274,25426,25433,25474,25709,26605,26771,27169,27341,27487,27688,27689,27724,27769,27915,27988,29201,29681,29784,29808,29821,29823,29885,30505,30539,30645,30696]]],["+",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29885]]],["beware",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[25474,30539]]],["keep",[13,13,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]],[43,3,3,2,5,[[1029,1,1,2,3],[1033,1,1,3,4],[1038,1,1,4,5]]],[44,1,1,5,6,[[1047,1,1,5,6]]],[47,1,1,6,7,[[1096,1,1,6,7]]],[52,1,1,7,8,[[1118,1,1,7,8]]],[53,1,1,8,9,[[1124,1,1,8,9]]],[54,2,2,9,11,[[1125,2,2,9,11]]],[61,1,1,11,12,[[1163,1,1,11,12]]],[64,1,1,12,13,[[1166,1,1,12,13]]]],[25433,26605,27341,27487,27689,27988,29201,29681,29808,29821,29823,30645,30696]]],["keepest",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27688]]],["keepeth",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25426]]],["keeping",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24981]]],["kept",[8,8,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,2,2,1,3,[[980,1,1,1,2],[990,1,1,2,3]]],[42,1,1,3,4,[[1013,1,1,3,4]]],[43,4,4,4,8,[[1024,1,1,4,5],[1039,1,1,5,6],[1040,1,1,6,7],[1045,1,1,7,8]]]],[23782,25274,25709,26771,27169,27724,27769,27915]]],["observe",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29784]]],["observed",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24608]]],["saved",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30505]]]]},{"k":"G5443","v":[["*",[31,23,[[39,2,2,0,2,[[947,1,1,0,1],[952,1,1,1,2]]],[41,2,2,2,4,[[974,1,1,2,3],[994,1,1,3,4]]],[43,1,1,4,5,[[1030,1,1,4,5]]],[44,1,1,5,6,[[1056,1,1,5,6]]],[49,1,1,6,7,[[1105,1,1,6,7]]],[57,2,2,7,9,[[1139,2,2,7,9]]],[58,1,1,9,10,[[1146,1,1,9,10]]],[65,21,13,10,23,[[1167,1,1,10,11],[1171,2,2,11,13],[1173,14,6,13,19],[1177,1,1,19,20],[1179,1,1,20,21],[1180,1,1,21,22],[1187,1,1,22,23]]]],[23790,23987,25009,25894,27383,28210,29426,30077,30078,30267,30704,30784,30788,30814,30815,30816,30817,30818,30819,30881,30915,30932,31065]]],["kindred",[2,2,[[65,2,2,0,2,[[1171,1,1,0,1],[1180,1,1,1,2]]]],[30788,30932]]],["kindreds",[4,4,[[65,4,4,0,4,[[1167,1,1,0,1],[1173,1,1,1,2],[1177,1,1,2,3],[1179,1,1,3,4]]]],[30704,30819,30881,30915]]],["tribe",[19,11,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]],[44,1,1,2,3,[[1056,1,1,2,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]],[57,2,2,4,6,[[1139,2,2,4,6]]],[65,13,5,6,11,[[1171,1,1,6,7],[1173,12,4,7,11]]]],[25009,27383,28210,29426,30077,30078,30784,30815,30816,30817,30818]]],["tribes",[6,6,[[39,2,2,0,2,[[947,1,1,0,1],[952,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[58,1,1,3,4,[[1146,1,1,3,4]]],[65,2,2,4,6,[[1173,1,1,4,5],[1187,1,1,5,6]]]],[23790,23987,25894,30267,30814,31065]]]]},{"k":"G5444","v":[["leaves",[6,5,[[39,2,2,0,2,[[949,1,1,0,1],[952,1,1,1,2]]],[40,3,2,2,4,[[967,2,1,2,3],[969,1,1,3,4]]],[65,1,1,4,5,[[1188,1,1,4,5]]]],[23845,23989,24653,24745,31082]]]]},{"k":"G5445","v":[["lump",[5,5,[[44,2,2,0,2,[[1054,1,1,0,1],[1056,1,1,1,2]]],[45,2,2,2,4,[[1066,2,2,2,4]]],[47,1,1,4,5,[[1095,1,1,4,5]]]],[28176,28225,28460,28461,29171]]]]},{"k":"G5446","v":[["natural",[3,3,[[44,2,2,0,2,[[1046,2,2,0,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[27956,27957,30512]]]]},{"k":"G5447","v":[["naturally",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30682]]]]},{"k":"G5448","v":[["up",[7,7,[[45,6,6,0,6,[[1065,3,3,0,3],[1066,1,1,3,4],[1069,1,1,4,5],[1074,1,1,5,6]]],[50,1,1,6,7,[[1108,1,1,6,7]]]],[28439,28451,28452,28456,28528,28669,29512]]]]},{"k":"G5449","v":[["*",[14,11,[[44,7,5,0,5,[[1046,1,1,0,1],[1047,2,2,1,3],[1056,4,2,3,5]]],[45,1,1,5,6,[[1072,1,1,5,6]]],[47,2,2,6,8,[[1092,1,1,6,7],[1094,1,1,7,8]]],[48,1,1,8,9,[[1098,1,1,8,9]]],[58,2,1,9,10,[[1148,2,1,9,10]]],[60,1,1,10,11,[[1156,1,1,10,11]]]],[27956,27976,27989,28230,28233,28614,29096,29139,29232,30326,30483]]],["+",[3,3,[[44,2,2,0,2,[[1056,2,2,0,2]]],[58,1,1,2,3,[[1148,1,1,2,3]]]],[28230,28233,30326]]],["kind",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30326]]],["nature",[10,9,[[44,5,4,0,4,[[1046,1,1,0,1],[1047,2,2,1,3],[1056,2,1,3,4]]],[45,1,1,4,5,[[1072,1,1,4,5]]],[47,2,2,5,7,[[1092,1,1,5,6],[1094,1,1,6,7]]],[48,1,1,7,8,[[1098,1,1,7,8]]],[60,1,1,8,9,[[1156,1,1,8,9]]]],[27956,27976,27989,28233,28614,29096,29139,29232,30483]]]]},{"k":"G5450","v":[["swellings",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29042]]]]},{"k":"G5451","v":[["plant",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23646]]]]},{"k":"G5452","v":[["*",[11,11,[[39,2,2,0,2,[[943,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,4,4,3,7,[[985,1,1,3,4],[989,2,2,4,6],[992,1,1,6,7]]],[45,4,4,7,11,[[1064,3,3,7,10],[1070,1,1,10,11]]]],[23646,23859,24674,25524,25657,25679,25788,28416,28417,28418,28547]]],["planted",[8,8,[[39,2,2,0,2,[[943,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,4,4,3,7,[[985,1,1,3,4],[989,2,2,4,6],[992,1,1,6,7]]],[45,1,1,7,8,[[1064,1,1,7,8]]]],[23646,23859,24674,25524,25657,25679,25788,28416]]],["planteth",[3,3,[[45,3,3,0,3,[[1064,2,2,0,2],[1070,1,1,2,3]]]],[28417,28418,28547]]]]},{"k":"G5453","v":[["*",[3,3,[[41,2,2,0,2,[[980,2,2,0,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[25251,25253,30227]]],["springing",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30227]]],["up",[2,2,[[41,2,2,0,2,[[980,2,2,0,2]]]],[25251,25253]]]]},{"k":"G5454","v":[["holes",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[23365,25359]]]]},{"k":"G5455","v":[["*",[42,38,[[39,5,5,0,5,[[948,1,1,0,1],[954,3,3,1,4],[955,1,1,4,5]]],[40,10,7,5,12,[[959,1,1,5,6],[965,1,1,6,7],[966,3,1,7,8],[970,4,3,8,11],[971,1,1,11,12]]],[41,10,10,12,22,[[980,2,2,12,14],[986,1,1,14,15],[988,2,2,15,17],[991,1,1,17,18],[994,3,3,18,21],[995,1,1,21,22]]],[42,12,11,22,33,[[997,1,1,22,23],[998,1,1,23,24],[1000,1,1,24,25],[1005,2,2,25,27],[1007,2,1,27,28],[1008,1,1,28,29],[1009,2,2,29,31],[1014,2,2,31,33]]],[43,4,4,33,37,[[1026,1,1,33,34],[1027,2,2,34,36],[1033,1,1,36,37]]],[65,1,1,37,38,[[1180,1,1,37,38]]]],[23824,24088,24128,24129,24176,24319,24573,24637,24784,24822,24826,24861,25253,25299,25565,25622,25644,25746,25898,25924,25925,25981,26092,26104,26172,26458,26464,26551,26597,26643,26668,26812,26818,27257,27266,27277,27511,30944]]],["call",[4,4,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]],[42,2,2,2,4,[[1000,1,1,2,3],[1009,1,1,3,4]]]],[24637,25565,26172,26643]]],["called",[16,16,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,2,2,1,3,[[965,1,1,1,2],[966,1,1,2,3]]],[41,3,3,3,6,[[980,1,1,3,4],[988,1,1,4,5],[991,1,1,5,6]]],[42,7,7,6,13,[[997,1,1,6,7],[998,1,1,7,8],[1005,2,2,8,10],[1007,1,1,10,11],[1008,1,1,11,12],[1014,1,1,12,13]]],[43,3,3,13,16,[[1026,1,1,13,14],[1027,2,2,14,16]]]],[23824,24573,24637,25299,25622,25746,26092,26104,26458,26464,26551,26597,26818,27257,27266,27277]]],["calleth",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,2,2,1,3,[[966,1,1,1,2],[971,1,1,2,3]]],[42,1,1,3,4,[[1007,1,1,3,4]]]],[24176,24637,24861,26551]]],["calling",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24319]]],["crew",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[970,2,2,1,3]]],[41,1,1,3,4,[[994,1,1,3,4]]],[42,1,1,4,5,[[1014,1,1,4,5]]]],[24128,24822,24826,25924,26812]]],["cried",[5,5,[[41,3,3,0,3,[[980,1,1,0,1],[988,1,1,1,2],[995,1,1,2,3]]],[43,1,1,3,4,[[1033,1,1,3,4]]],[65,1,1,4,5,[[1180,1,1,4,5]]]],[25253,25644,25981,27511,30944]]],["crow",[7,7,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,2,2,2,4,[[970,2,2,2,4]]],[41,2,2,4,6,[[994,2,2,4,6]]],[42,1,1,6,7,[[1009,1,1,6,7]]]],[24088,24129,24784,24826,25898,25925,26668]]]]},{"k":"G5456","v":[["*",[141,129,[[39,8,8,0,8,[[930,1,1,0,1],[931,2,2,1,3],[940,1,1,3,4],[945,1,1,4,5],[952,1,1,5,6],[955,2,2,6,8]]],[40,7,7,8,15,[[957,3,3,8,11],[961,1,1,11,12],[965,1,1,12,13],[971,2,2,13,15]]],[41,15,14,15,29,[[973,2,2,15,17],[975,2,2,17,19],[976,1,1,19,20],[980,1,1,20,21],[981,2,2,21,23],[983,1,1,23,24],[989,2,2,24,26],[991,1,1,26,27],[995,3,2,27,29]]],[42,15,15,29,44,[[997,1,1,29,30],[999,2,2,30,32],[1001,3,3,32,35],[1006,5,5,35,40],[1007,1,1,40,41],[1008,2,2,41,43],[1014,1,1,43,44]]],[43,27,27,44,71,[[1019,2,2,44,46],[1021,1,1,46,47],[1024,3,3,47,50],[1025,1,1,50,51],[1026,2,2,51,53],[1027,2,2,53,55],[1028,2,2,55,57],[1029,2,2,57,59],[1030,1,1,59,60],[1031,2,2,60,62],[1033,1,1,62,63],[1036,1,1,63,64],[1039,4,4,64,68],[1041,1,1,68,69],[1043,2,2,69,71]]],[45,4,4,71,75,[[1075,4,4,71,75]]],[47,1,1,75,76,[[1094,1,1,75,76]]],[51,1,1,76,77,[[1114,1,1,76,77]]],[57,5,5,77,82,[[1135,2,2,77,79],[1136,1,1,79,80],[1144,2,2,80,82]]],[60,3,3,82,85,[[1156,2,2,82,84],[1157,1,1,84,85]]],[65,55,44,85,129,[[1167,4,3,85,88],[1169,1,1,88,89],[1170,2,2,89,91],[1171,3,3,91,94],[1172,4,4,94,98],[1173,2,2,98,100],[1174,3,2,100,102],[1175,3,2,102,104],[1176,6,4,104,108],[1177,3,3,108,111],[1178,1,1,111,112],[1180,8,5,112,117],[1182,3,3,117,120],[1184,5,4,120,124],[1185,6,4,124,128],[1187,1,1,128,129]]]],[23187,23195,23209,23508,23705,23988,24175,24179,24218,24226,24241,24371,24545,24860,24863,24935,24937,25029,25047,25096,25273,25336,25337,25432,25664,25666,25768,25958,25981,26067,26128,26149,26235,26238,26247,26484,26485,26486,26497,26508,26566,26608,26610,26822,26955,26963,27046,27147,27173,27176,27183,27220,27223,27272,27274,27314,27316,27351,27359,27389,27424,27425,27511,27619,27711,27713,27718,27726,27790,27837,27847,28685,28686,28688,28689,29151,29619,30002,30010,30021,30231,30238,30496,30497,30516,30707,30709,30712,30766,30769,30773,30781,30790,30791,30794,30799,30800,30803,30812,30820,30832,30840,30849,30853,30864,30865,30868,30869,30884,30887,30891,30901,30928,30933,30935,30939,30941,30955,30971,30972,30995,30997,31015,31016,31018,31022,31023,31034,31056]]],["+",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1036,1,1,1,2]]]],[26955,27619]]],["noise",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30794]]],["sound",[8,7,[[39,1,1,0,1,[[952,1,1,0,1]]],[42,1,1,1,2,[[999,1,1,1,2]]],[45,2,2,2,4,[[1075,2,2,2,4]]],[65,4,3,4,7,[[1167,1,1,4,5],[1175,2,1,5,6],[1184,1,1,6,7]]]],[23988,26128,28685,28686,30712,30849,31015]]],["voice",[115,110,[[39,7,7,0,7,[[930,1,1,0,1],[931,2,2,1,3],[940,1,1,3,4],[945,1,1,4,5],[955,2,2,5,7]]],[40,7,7,7,14,[[957,3,3,7,10],[961,1,1,10,11],[965,1,1,11,12],[971,2,2,12,14]]],[41,12,12,14,26,[[973,2,2,14,16],[975,2,2,16,18],[976,1,1,18,19],[980,1,1,19,20],[981,2,2,20,22],[983,1,1,22,23],[989,1,1,23,24],[991,1,1,24,25],[995,1,1,25,26]]],[42,14,14,26,40,[[997,1,1,26,27],[999,1,1,27,28],[1001,3,3,28,31],[1006,5,5,31,36],[1007,1,1,36,37],[1008,2,2,37,39],[1014,1,1,39,40]]],[43,22,22,40,62,[[1019,1,1,40,41],[1021,1,1,41,42],[1024,3,3,42,45],[1025,1,1,45,46],[1026,2,2,46,48],[1027,2,2,48,50],[1028,2,2,50,52],[1029,2,2,52,54],[1031,1,1,54,55],[1033,1,1,55,56],[1039,3,3,56,59],[1041,1,1,59,60],[1043,2,2,60,62]]],[45,1,1,62,63,[[1075,1,1,62,63]]],[47,1,1,63,64,[[1094,1,1,63,64]]],[51,1,1,64,65,[[1114,1,1,64,65]]],[57,5,5,65,70,[[1135,2,2,65,67],[1136,1,1,67,68],[1144,2,2,68,70]]],[60,3,3,70,73,[[1156,2,2,70,72],[1157,1,1,72,73]]],[65,42,37,73,110,[[1167,3,3,73,76],[1169,1,1,76,77],[1170,1,1,77,78],[1171,3,3,78,81],[1172,3,3,81,84],[1173,2,2,84,86],[1174,1,1,86,87],[1175,1,1,87,88],[1176,4,4,88,92],[1177,1,1,92,93],[1178,1,1,93,94],[1180,8,5,94,99],[1182,2,2,99,101],[1184,4,4,101,105],[1185,6,4,105,109],[1187,1,1,109,110]]]],[23187,23195,23209,23508,23705,24175,24179,24218,24226,24241,24371,24545,24860,24863,24935,24937,25029,25047,25096,25273,25336,25337,25432,25666,25768,25981,26067,26149,26235,26238,26247,26484,26485,26486,26497,26508,26566,26608,26610,26822,26963,27046,27147,27173,27176,27183,27220,27223,27272,27274,27314,27316,27351,27359,27424,27511,27711,27713,27718,27790,27837,27847,28689,29151,29619,30002,30010,30021,30231,30238,30496,30497,30516,30707,30709,30712,30766,30769,30781,30790,30791,30799,30800,30803,30812,30820,30840,30853,30864,30865,30868,30869,30884,30901,30928,30933,30935,30939,30941,30955,30971,30995,30997,31015,31016,31018,31022,31023,31034,31056]]],["voices",[15,14,[[41,3,2,0,2,[[989,1,1,0,1],[995,2,1,1,2]]],[43,3,3,2,5,[[1030,1,1,2,3],[1031,1,1,3,4],[1039,1,1,4,5]]],[45,1,1,5,6,[[1075,1,1,5,6]]],[65,8,8,6,14,[[1170,1,1,6,7],[1174,2,2,7,9],[1176,2,2,9,11],[1177,2,2,11,13],[1182,1,1,13,14]]]],[25664,25958,27389,27425,27726,28688,30773,30832,30840,30864,30865,30887,30891,30972]]]]},{"k":"G5457","v":[["*",[70,59,[[39,7,6,0,6,[[932,2,1,0,1],[933,2,2,1,3],[934,1,1,3,4],[938,1,1,4,5],[945,1,1,5,6]]],[40,1,1,6,7,[[970,1,1,6,7]]],[41,6,6,7,13,[[974,1,1,7,8],[980,1,1,8,9],[983,1,1,9,10],[984,1,1,10,11],[988,1,1,11,12],[994,1,1,12,13]]],[42,23,16,13,29,[[997,6,5,13,18],[999,5,3,18,21],[1001,1,1,21,22],[1004,2,1,22,23],[1005,1,1,23,24],[1007,2,2,24,26],[1008,6,3,26,29]]],[43,10,10,29,39,[[1026,1,1,29,30],[1029,1,1,30,31],[1030,1,1,31,32],[1033,1,1,32,33],[1039,3,3,33,36],[1043,3,3,36,39]]],[44,2,2,39,41,[[1047,1,1,39,40],[1058,1,1,40,41]]],[46,3,3,41,44,[[1081,1,1,41,42],[1083,1,1,42,43],[1088,1,1,43,44]]],[48,4,2,44,46,[[1101,4,2,44,46]]],[50,1,1,46,47,[[1107,1,1,46,47]]],[51,1,1,47,48,[[1115,1,1,47,48]]],[53,1,1,48,49,[[1124,1,1,48,49]]],[58,1,1,49,50,[[1146,1,1,49,50]]],[59,1,1,50,51,[[1152,1,1,50,51]]],[61,6,5,51,56,[[1159,3,2,51,53],[1160,3,3,53,56]]],[65,3,3,56,59,[[1184,1,1,56,57],[1187,1,1,57,58],[1188,1,1,58,59]]]],[23225,23248,23250,23305,23444,23702,24808,25005,25261,25440,25462,25628,25920,26048,26049,26051,26052,26053,26139,26140,26141,26245,26393,26445,26532,26533,26615,26616,26626,27219,27344,27409,27512,27710,27713,27715,27836,27841,27846,27981,28278,28865,28912,29003,29312,29317,29477,29626,29804,30283,30408,30545,30547,30558,30559,30560,31016,31077,31085]]],["+",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27409]]],["Light",[4,3,[[42,4,3,0,3,[[997,4,3,0,3]]]],[26051,26052,26053]]],["fire",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24808,25920]]],["light",[62,52,[[39,7,6,0,6,[[932,2,1,0,1],[933,2,2,1,3],[934,1,1,3,4],[938,1,1,4,5],[945,1,1,5,6]]],[41,5,5,6,11,[[974,1,1,6,7],[980,1,1,7,8],[983,1,1,8,9],[984,1,1,9,10],[988,1,1,10,11]]],[42,19,13,11,24,[[997,2,2,11,13],[999,5,3,13,16],[1001,1,1,16,17],[1004,2,1,17,18],[1005,1,1,18,19],[1007,2,2,19,21],[1008,6,3,21,24]]],[43,9,9,24,33,[[1026,1,1,24,25],[1029,1,1,25,26],[1033,1,1,26,27],[1039,3,3,27,30],[1043,3,3,30,33]]],[44,2,2,33,35,[[1047,1,1,33,34],[1058,1,1,34,35]]],[46,3,3,35,38,[[1081,1,1,35,36],[1083,1,1,36,37],[1088,1,1,37,38]]],[48,4,2,38,40,[[1101,4,2,38,40]]],[50,1,1,40,41,[[1107,1,1,40,41]]],[51,1,1,41,42,[[1115,1,1,41,42]]],[53,1,1,42,43,[[1124,1,1,42,43]]],[59,1,1,43,44,[[1152,1,1,43,44]]],[61,6,5,44,49,[[1159,3,2,44,46],[1160,3,3,46,49]]],[65,3,3,49,52,[[1184,1,1,49,50],[1187,1,1,50,51],[1188,1,1,51,52]]]],[23225,23248,23250,23305,23444,23702,25005,25261,25440,25462,25628,26048,26049,26139,26140,26141,26245,26393,26445,26532,26533,26615,26616,26626,27219,27344,27512,27710,27713,27715,27836,27841,27846,27981,28278,28865,28912,29003,29312,29317,29477,29626,29804,30408,30545,30547,30558,30559,30560,31016,31077,31085]]],["lights",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30283]]]]},{"k":"G5458","v":[["*",[2,2,[[49,1,1,0,1,[[1104,1,1,0,1]]],[65,1,1,1,2,[[1187,1,1,1,2]]]],[29406,31064]]],["light",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31064]]],["lights",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29406]]]]},{"k":"G5459","v":[["star",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30498]]]]},{"k":"G5460","v":[["*",[5,4,[[39,2,2,0,2,[[934,1,1,0,1],[945,1,1,1,2]]],[41,3,2,2,4,[[983,3,2,2,4]]]],[23304,23705,25439,25441]]],["bright",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23705]]],["light",[4,3,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,3,2,1,3,[[983,3,2,1,3]]]],[23304,25439,25441]]]]},{"k":"G5461","v":[["*",[11,11,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[48,2,2,3,5,[[1097,1,1,3,4],[1099,1,1,4,5]]],[54,1,1,5,6,[[1125,1,1,5,6]]],[57,2,2,6,8,[[1138,1,1,6,7],[1142,1,1,7,8]]],[65,3,3,8,11,[[1184,1,1,8,9],[1187,1,1,9,10],[1188,1,1,10,11]]]],[25441,26053,28438,29224,29260,29819,30048,30165,30994,31076,31085]]],["+",[5,5,[[41,1,1,0,1,[[983,1,1,0,1]]],[48,1,1,1,2,[[1099,1,1,1,2]]],[54,1,1,2,3,[[1125,1,1,2,3]]],[57,1,1,3,4,[[1138,1,1,3,4]]],[65,1,1,4,5,[[1188,1,1,4,5]]]],[25441,29260,29819,30048,31085]]],["enlightened",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29224]]],["illuminated",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30165]]],["light",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28438]]],["lighten",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31076]]],["lightened",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30994]]],["lighteth",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26053]]]]},{"k":"G5462","v":[["light",[2,2,[[46,2,2,0,2,[[1081,2,2,0,2]]]],[28863,28865]]]]},{"k":"G5463","v":[["*",[74,68,[[39,6,6,0,6,[[930,1,1,0,1],[933,1,1,1,2],[946,1,1,2,3],[954,1,1,3,4],[955,1,1,4,5],[956,1,1,5,6]]],[40,2,2,6,8,[[970,1,1,6,7],[971,1,1,7,8]]],[41,12,11,8,19,[[973,2,2,8,10],[978,1,1,10,11],[982,2,1,11,12],[985,1,1,12,13],[987,2,2,13,15],[991,2,2,15,17],[994,1,1,17,18],[995,1,1,18,19]]],[42,9,9,19,28,[[999,1,1,19,20],[1000,1,1,20,21],[1004,1,1,21,22],[1007,1,1,22,23],[1010,1,1,23,24],[1012,2,2,24,26],[1015,1,1,26,27],[1016,1,1,27,28]]],[43,7,7,28,35,[[1022,1,1,28,29],[1025,1,1,29,30],[1028,1,1,30,31],[1030,1,1,31,32],[1032,2,2,32,34],[1040,1,1,34,35]]],[44,4,3,35,38,[[1057,3,2,35,37],[1061,1,1,37,38]]],[45,4,3,38,41,[[1068,2,1,38,39],[1074,1,1,39,40],[1077,1,1,40,41]]],[46,8,8,41,49,[[1079,1,1,41,42],[1083,1,1,42,43],[1084,4,4,43,47],[1090,2,2,47,49]]],[49,9,7,49,56,[[1103,2,1,49,50],[1104,3,3,50,53],[1105,1,1,53,54],[1106,3,2,54,56]]],[50,2,2,56,58,[[1107,1,1,56,57],[1108,1,1,57,58]]],[51,2,2,58,60,[[1113,1,1,58,59],[1115,1,1,59,60]]],[58,1,1,60,61,[[1146,1,1,60,61]]],[59,2,1,61,62,[[1154,2,1,61,62]]],[62,3,3,62,65,[[1164,3,3,62,65]]],[63,1,1,65,66,[[1165,1,1,65,66]]],[65,2,2,66,68,[[1177,1,1,66,67],[1185,1,1,67,68]]]],[23179,23246,23740,24103,24158,24204,24765,24844,24907,24921,25169,25383,25535,25593,25620,25737,25768,25869,25943,26149,26192,26437,26538,26696,26746,26748,26828,26887,27100,27215,27330,27410,27465,27473,27760,28257,28260,28355,28517,28671,28793,28827,28908,28923,28925,28929,28932,29052,29054,29379,29408,29409,29419,29422,29446,29452,29489,29499,29599,29637,30267,30459,30649,30655,30656,30661,30882,31024]]],["+",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[42,2,2,1,3,[[1010,1,1,1,2],[1016,1,1,2,3]]]],[25943,26696,26887]]],["Hail",[5,5,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[41,1,1,3,4,[[973,1,1,3,4]]],[42,1,1,4,5,[[1015,1,1,4,5]]]],[24103,24158,24844,24921,26828]]],["Rejoice",[6,5,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[49,2,1,3,4,[[1106,2,1,3,4]]],[51,1,1,4,5,[[1115,1,1,4,5]]]],[23246,25169,28260,29446,29637]]],["Rejoiceth",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28671]]],["Rejoicing",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28257]]],["farewell",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29054]]],["glad",[12,12,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,2,2,1,3,[[987,1,1,1,2],[994,1,1,2,3]]],[42,2,2,3,5,[[1004,1,1,3,4],[1007,1,1,4,5]]],[43,2,2,5,7,[[1028,1,1,5,6],[1030,1,1,6,7]]],[44,1,1,7,8,[[1061,1,1,7,8]]],[45,1,1,8,9,[[1077,1,1,8,9]]],[46,1,1,9,10,[[1090,1,1,9,10]]],[59,1,1,10,11,[[1154,1,1,10,11]]],[65,1,1,11,12,[[1185,1,1,11,12]]]],[24765,25620,25869,26437,26538,27330,27410,28355,28793,29052,30459,31024]]],["greeting",[3,3,[[43,2,2,0,2,[[1032,1,1,0,1],[1040,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[27465,27760,30267]]],["hail",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24204]]],["joy",[3,3,[[49,2,2,0,2,[[1104,2,2,0,2]]],[51,1,1,2,3,[[1113,1,1,2,3]]]],[29408,29409,29599]]],["joyed",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28929]]],["joyfully",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25737]]],["joying",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29499]]],["rejoice",[19,17,[[41,4,3,0,3,[[973,1,1,0,1],[982,2,1,1,2],[991,1,1,2,3]]],[42,3,3,3,6,[[1000,1,1,3,4],[1012,2,2,4,6]]],[44,1,1,6,7,[[1057,1,1,6,7]]],[45,1,1,7,8,[[1068,1,1,7,8]]],[46,3,3,8,11,[[1079,1,1,8,9],[1084,2,2,9,11]]],[49,4,3,11,14,[[1103,2,1,11,12],[1104,1,1,12,13],[1105,1,1,13,14]]],[50,1,1,14,15,[[1107,1,1,14,15]]],[59,1,1,15,16,[[1154,1,1,15,16]]],[65,1,1,16,17,[[1177,1,1,16,17]]]],[24907,25383,25768,26192,26746,26748,28260,28517,28827,28925,28932,29379,29419,29422,29489,30459,30882]]],["rejoiced",[8,8,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[43,1,1,2,3,[[1032,1,1,2,3]]],[45,1,1,3,4,[[1068,1,1,3,4]]],[46,1,1,4,5,[[1084,1,1,4,5]]],[49,1,1,5,6,[[1106,1,1,5,6]]],[62,1,1,6,7,[[1164,1,1,6,7]]],[63,1,1,7,8,[[1165,1,1,7,8]]]],[23179,25535,27473,28517,28923,29452,30649,30661]]],["rejoiceth",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[42,1,1,1,2,[[999,1,1,1,2]]]],[23740,26149]]],["rejoicing",[4,4,[[41,1,1,0,1,[[987,1,1,0,1]]],[43,2,2,1,3,[[1022,1,1,1,2],[1025,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]]],[25593,27100,27215,28908]]],["speed",[2,2,[[62,2,2,0,2,[[1164,2,2,0,2]]]],[30655,30656]]]]},{"k":"G5464","v":[["hail",[4,3,[[65,4,3,0,3,[[1174,1,1,0,1],[1177,1,1,1,2],[1182,2,1,2,3]]]],[30834,30891,30975]]]]},{"k":"G5465","v":[["*",[7,7,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,2,2,1,3,[[977,2,2,1,3]]],[43,3,3,3,6,[[1026,1,1,3,4],[1044,2,2,4,6]]],[46,1,1,6,7,[[1088,1,1,6,7]]]],[24264,25111,25112,27241,27872,27885,29022]]],["+",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1044,1,1,1,2]]]],[27241,27872]]],["down",[5,5,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,2,2,1,3,[[977,2,2,1,3]]],[43,1,1,3,4,[[1044,1,1,3,4]]],[46,1,1,4,5,[[1088,1,1,4,5]]]],[24264,25111,25112,27885,29022]]]]},{"k":"G5466","v":[["Chaldaeans",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27120]]]]},{"k":"G5467","v":[["*",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[23373,29854]]],["fierce",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23373]]],["perilous",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29854]]]]},{"k":"G5468","v":[["*",[2,2,[[58,2,2,0,2,[[1146,1,1,0,1],[1148,1,1,1,2]]]],[30292,30321]]],["bridle",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30321]]],["bridleth",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30292]]]]},{"k":"G5469","v":[["*",[2,2,[[58,1,1,0,1,[[1148,1,1,0,1]]],[65,1,1,1,2,[[1180,1,1,1,2]]]],[30322,30946]]],["bits",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30322]]],["bridles",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30946]]]]},{"k":"G5470","v":[["brass",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30860]]]]},{"k":"G5471","v":[["coppersmith",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29884]]]]},{"k":"G5472","v":[["chalcedony",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31072]]]]},{"k":"G5473","v":[["vessels",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24467]]]]},{"k":"G5474","v":[["brass",[2,2,[[65,2,2,0,2,[[1167,1,1,0,1],[1168,1,1,1,2]]]],[30712,30735]]]]},{"k":"G5475","v":[["*",[5,5,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[968,1,1,2,3]]],[45,1,1,3,4,[[1074,1,1,3,4]]],[65,1,1,4,5,[[1184,1,1,4,5]]]],[23426,24415,24714,28666,31005]]],["brass",[3,3,[[39,1,1,0,1,[[938,1,1,0,1]]],[45,1,1,1,2,[[1074,1,1,1,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[23426,28666,31005]]],["money",[2,2,[[40,2,2,0,2,[[962,1,1,0,1],[968,1,1,1,2]]]],[24415,24714]]]]},{"k":"G5476","v":[["ground",[2,2,[[42,2,2,0,2,[[1005,1,1,0,1],[1014,1,1,1,2]]]],[26446,26791]]]]},{"k":"G5477","v":[["Chanaan",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1030,1,1,1,2]]]],[27127,27381]]]]},{"k":"G5478","v":[["Canaan",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23655]]]]},{"k":"G5479","v":[["*",[59,57,[[39,6,6,0,6,[[930,1,1,0,1],[941,2,2,1,3],[953,2,2,3,5],[956,1,1,5,6]]],[40,1,1,6,7,[[960,1,1,6,7]]],[41,8,8,7,15,[[973,1,1,7,8],[974,1,1,8,9],[980,1,1,9,10],[982,1,1,10,11],[987,2,2,11,13],[996,2,2,13,15]]],[42,9,7,15,22,[[999,2,1,15,16],[1011,2,1,16,17],[1012,4,4,17,21],[1013,1,1,21,22]]],[43,5,5,22,27,[[1025,1,1,22,23],[1029,1,1,23,24],[1030,1,1,24,25],[1032,1,1,25,26],[1037,1,1,26,27]]],[44,3,3,27,30,[[1059,1,1,27,28],[1060,2,2,28,30]]],[46,5,5,30,35,[[1078,1,1,30,31],[1079,1,1,31,32],[1084,2,2,32,34],[1085,1,1,34,35]]],[47,1,1,35,36,[[1095,1,1,35,36]]],[49,5,5,36,41,[[1103,2,2,36,38],[1104,2,2,38,40],[1106,1,1,40,41]]],[50,1,1,41,42,[[1107,1,1,41,42]]],[51,4,4,42,46,[[1111,1,1,42,43],[1112,2,2,43,45],[1113,1,1,45,46]]],[54,1,1,46,47,[[1125,1,1,46,47]]],[57,4,4,47,51,[[1142,1,1,47,48],[1144,2,2,48,50],[1145,1,1,50,51]]],[58,2,2,51,53,[[1146,1,1,51,52],[1149,1,1,52,53]]],[59,1,1,53,54,[[1151,1,1,53,54]]],[61,1,1,54,55,[[1159,1,1,54,55]]],[62,1,1,55,56,[[1164,1,1,55,56]]],[63,1,1,56,57,[[1165,1,1,56,57]]]],[23179,23559,23583,24029,24031,24203,24339,24907,24983,25258,25380,25595,25598,26032,26043,26149,26710,26746,26747,26748,26750,26772,27184,27351,27414,27445,27650,28297,28316,28335,28824,28827,28920,28929,28934,29184,29365,29386,29393,29420,29443,29476,29566,29589,29590,29599,29813,30167,30214,30223,30258,30268,30346,30382,30544,30657,30662]]],["+",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30167]]],["gladness",[3,3,[[40,1,1,0,1,[[960,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[24339,27351,29420]]],["greatly",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26149]]],["joy",[51,50,[[39,6,6,0,6,[[930,1,1,0,1],[941,2,2,1,3],[953,2,2,3,5],[956,1,1,5,6]]],[41,8,8,6,14,[[973,1,1,6,7],[974,1,1,7,8],[980,1,1,8,9],[982,1,1,9,10],[987,2,2,10,12],[996,2,2,12,14]]],[42,8,7,14,21,[[999,1,1,14,15],[1011,2,1,15,16],[1012,4,4,16,20],[1013,1,1,20,21]]],[43,4,4,21,25,[[1025,1,1,21,22],[1030,1,1,22,23],[1032,1,1,23,24],[1037,1,1,24,25]]],[44,3,3,25,28,[[1059,1,1,25,26],[1060,2,2,26,28]]],[46,4,4,28,32,[[1078,1,1,28,29],[1079,1,1,29,30],[1084,1,1,30,31],[1085,1,1,31,32]]],[47,1,1,32,33,[[1095,1,1,32,33]]],[49,4,4,33,37,[[1103,2,2,33,35],[1104,1,1,35,36],[1106,1,1,36,37]]],[51,4,4,37,41,[[1111,1,1,37,38],[1112,2,2,38,40],[1113,1,1,40,41]]],[54,1,1,41,42,[[1125,1,1,41,42]]],[57,2,2,42,44,[[1144,1,1,42,43],[1145,1,1,43,44]]],[58,2,2,44,46,[[1146,1,1,44,45],[1149,1,1,45,46]]],[59,1,1,46,47,[[1151,1,1,46,47]]],[61,1,1,47,48,[[1159,1,1,47,48]]],[62,1,1,48,49,[[1164,1,1,48,49]]],[63,1,1,49,50,[[1165,1,1,49,50]]]],[23179,23559,23583,24029,24031,24203,24907,24983,25258,25380,25595,25598,26032,26043,26149,26710,26746,26747,26748,26750,26772,27184,27414,27445,27650,28297,28316,28335,28824,28827,28929,28934,29184,29365,29386,29393,29443,29566,29589,29590,29599,29813,30214,30258,30268,30346,30382,30544,30657,30662]]],["joyful",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28920]]],["joyfulness",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29476]]],["joyous",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30223]]]]},{"k":"G5480","v":[["*",[9,9,[[43,1,1,0,1,[[1034,1,1,0,1]]],[65,8,8,1,9,[[1179,2,2,1,3],[1180,2,2,3,5],[1181,1,1,5,6],[1182,1,1,6,7],[1185,1,1,7,8],[1186,1,1,8,9]]]],[27552,30924,30925,30935,30937,30948,30956,31037,31042]]],["graven",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27552]]],["mark",[8,8,[[65,8,8,0,8,[[1179,2,2,0,2],[1180,2,2,2,4],[1181,1,1,4,5],[1182,1,1,5,6],[1185,1,1,6,7],[1186,1,1,7,8]]]],[30924,30925,30935,30937,30948,30956,31037,31042]]]]},{"k":"G5481","v":[["image",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29966]]]]},{"k":"G5482","v":[["+",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25774]]]]},{"k":"G5483","v":[["*",[23,19,[[41,3,3,0,3,[[979,3,3,0,3]]],[43,4,4,3,7,[[1020,1,1,3,4],[1042,2,2,4,6],[1044,1,1,6,7]]],[44,1,1,7,8,[[1053,1,1,7,8]]],[45,1,1,8,9,[[1063,1,1,8,9]]],[46,5,3,9,12,[[1079,4,2,9,11],[1089,1,1,11,12]]],[47,1,1,12,13,[[1093,1,1,12,13]]],[48,2,1,13,14,[[1100,2,1,13,14]]],[49,2,2,14,16,[[1103,1,1,14,15],[1104,1,1,15,16]]],[50,3,2,16,18,[[1108,1,1,16,17],[1109,2,1,17,18]]],[56,1,1,18,19,[[1132,1,1,18,19]]]],[25216,25237,25238,27010,27807,27812,27879,28148,28406,28831,28834,29035,29120,29304,29390,29400,29507,29530,29960]]],["+",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28834]]],["deliver",[2,2,[[43,2,2,0,2,[[1042,2,2,0,2]]]],[27807,27812]]],["forgave",[4,4,[[41,2,2,0,2,[[979,2,2,0,2]]],[46,1,1,2,3,[[1079,1,1,2,3]]],[50,1,1,3,4,[[1109,1,1,3,4]]]],[25237,25238,28834,29530]]],["forgive",[3,3,[[46,3,3,0,3,[[1079,2,2,0,2],[1089,1,1,2,3]]]],[28831,28834,29035]]],["forgiven",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[29304,29507]]],["forgiving",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29304,29530]]],["gave",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]]],[25216,29120]]],["give",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28148]]],["given",[5,5,[[43,1,1,0,1,[[1044,1,1,0,1]]],[45,1,1,1,2,[[1063,1,1,1,2]]],[49,2,2,2,4,[[1103,1,1,2,3],[1104,1,1,3,4]]],[56,1,1,4,5,[[1132,1,1,4,5]]]],[27879,28406,29390,29400,29960]]],["granted",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27010]]]]},{"k":"G5484","v":[["*",[9,9,[[41,1,1,0,1,[[979,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]],[48,2,2,2,4,[[1099,2,2,2,4]]],[53,1,1,4,5,[[1123,1,1,4,5]]],[55,2,2,5,7,[[1129,2,2,5,7]]],[61,1,1,7,8,[[1161,1,1,7,8]]],[64,1,1,8,9,[[1166,1,1,8,9]]]],[25242,29121,29252,29265,29777,29897,29903,30591,30688]]],["+",[7,7,[[41,1,1,0,1,[[979,1,1,0,1]]],[48,2,2,1,3,[[1099,2,2,1,3]]],[53,1,1,3,4,[[1123,1,1,3,4]]],[55,2,2,4,6,[[1129,2,2,4,6]]],[61,1,1,6,7,[[1161,1,1,6,7]]]],[25242,29252,29265,29777,29897,29903,30591]]],["because",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29121]]],["of",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30688]]]]},{"k":"G5485","v":[["*",[156,147,[[41,8,8,0,8,[[973,1,1,0,1],[974,2,2,1,3],[976,1,1,3,4],[978,3,3,4,7],[989,1,1,7,8]]],[42,4,3,8,11,[[997,4,3,8,11]]],[43,16,16,11,27,[[1019,1,1,11,12],[1021,1,1,12,13],[1024,2,2,13,15],[1028,1,1,15,16],[1030,1,1,16,17],[1031,2,2,17,19],[1032,2,2,19,21],[1035,1,1,21,22],[1037,2,2,22,24],[1041,1,1,24,25],[1042,2,2,25,27]]],[44,25,21,27,48,[[1046,2,2,27,29],[1048,1,1,29,30],[1049,2,2,30,32],[1050,6,5,32,37],[1051,4,4,37,41],[1056,5,2,41,43],[1057,2,2,43,45],[1060,1,1,45,46],[1061,2,2,46,48]]],[45,10,8,48,56,[[1062,2,2,48,50],[1064,1,1,50,51],[1071,1,1,51,52],[1076,4,2,52,54],[1077,2,2,54,56]]],[46,18,18,56,74,[[1078,3,3,56,59],[1079,1,1,59,60],[1081,1,1,60,61],[1083,1,1,61,62],[1085,7,7,62,69],[1086,3,3,69,72],[1089,1,1,72,73],[1090,1,1,73,74]]],[47,7,7,74,81,[[1091,3,3,74,77],[1092,2,2,77,79],[1095,1,1,79,80],[1096,1,1,80,81]]],[48,12,12,81,93,[[1097,3,3,81,84],[1098,3,3,84,87],[1099,3,3,87,90],[1100,2,2,90,92],[1102,1,1,92,93]]],[49,3,3,93,96,[[1103,2,2,93,95],[1106,1,1,95,96]]],[50,5,5,96,101,[[1107,2,2,96,98],[1109,1,1,98,99],[1110,2,2,99,101]]],[51,2,2,101,103,[[1111,1,1,101,102],[1115,1,1,102,103]]],[52,4,4,103,107,[[1116,2,2,103,105],[1117,1,1,105,106],[1118,1,1,106,107]]],[53,4,4,107,111,[[1119,3,3,107,110],[1124,1,1,110,111]]],[54,5,5,111,116,[[1125,3,3,111,114],[1126,1,1,114,115],[1128,1,1,115,116]]],[55,4,4,116,120,[[1129,1,1,116,117],[1130,1,1,117,118],[1131,2,2,118,120]]],[56,3,3,120,123,[[1132,3,3,120,123]]],[57,8,7,123,130,[[1134,1,1,123,124],[1136,2,1,124,125],[1142,1,1,125,126],[1144,2,2,126,128],[1145,2,2,128,130]]],[58,2,1,130,131,[[1149,2,1,130,131]]],[59,10,10,131,141,[[1151,3,3,131,134],[1152,2,2,134,136],[1153,1,1,136,137],[1154,1,1,137,138],[1155,3,3,138,141]]],[60,2,2,141,143,[[1156,1,1,141,142],[1158,1,1,142,143]]],[62,1,1,143,144,[[1164,1,1,143,144]]],[64,1,1,144,145,[[1166,1,1,144,145]]],[65,2,2,145,147,[[1167,1,1,145,146],[1188,1,1,146,147]]]],[24923,25013,25025,25085,25178,25179,25180,25660,26058,26060,26061,26996,27055,27126,27162,27330,27405,27417,27440,27453,27482,27584,27650,27658,27796,27799,27805,27935,27937,28015,28026,28038,28049,28062,28064,28067,28068,28069,28082,28083,28085,28214,28215,28248,28251,28318,28356,28360,28366,28367,28420,28597,28728,28775,28779,28799,28802,28812,28815,28838,28874,28899,28933,28936,28938,28939,28941,28948,28951,28964,28970,28971,29031,29057,29060,29063,29072,29090,29102,29166,29206,29208,29212,29213,29234,29236,29237,29253,29258,29259,29279,29301,29361,29363,29368,29465,29467,29471,29533,29548,29560,29561,29649,29651,29661,29677,29696,29698,29708,29710,29809,29811,29812,29818,29828,29892,29896,29919,29930,29938,29941,29945,29963,29986,30030,30162,30227,30240,30250,30266,30343,30376,30384,30387,30418,30419,30431,30456,30470,30475,30477,30481,30540,30648,30676,30701,31101]]],["+",[5,5,[[41,1,1,0,1,[[989,1,1,0,1]]],[44,1,1,1,2,[[1051,1,1,1,2]]],[46,1,1,2,3,[[1086,1,1,2,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]],[54,1,1,4,5,[[1125,1,1,4,5]]]],[25660,28085,28964,29708,29812]]],["Grace",[23,23,[[44,1,1,0,1,[[1046,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]],[46,1,1,2,3,[[1078,1,1,2,3]]],[47,1,1,3,4,[[1091,1,1,3,4]]],[48,2,2,4,6,[[1097,1,1,4,5],[1102,1,1,5,6]]],[49,1,1,6,7,[[1103,1,1,6,7]]],[50,2,2,7,9,[[1107,1,1,7,8],[1110,1,1,8,9]]],[51,1,1,9,10,[[1111,1,1,9,10]]],[52,1,1,10,11,[[1116,1,1,10,11]]],[53,2,2,11,13,[[1119,1,1,11,12],[1124,1,1,12,13]]],[54,2,2,13,15,[[1125,1,1,13,14],[1128,1,1,14,15]]],[55,2,2,15,17,[[1129,1,1,15,16],[1131,1,1,16,17]]],[56,1,1,17,18,[[1132,1,1,17,18]]],[57,1,1,18,19,[[1145,1,1,18,19]]],[59,1,1,19,20,[[1151,1,1,19,20]]],[60,1,1,20,21,[[1156,1,1,20,21]]],[62,1,1,21,22,[[1164,1,1,21,22]]],[65,1,1,22,23,[[1167,1,1,22,23]]]],[27937,28366,28802,29060,29208,29361,29363,29467,29560,29561,29651,29698,29809,29811,29892,29896,29938,29941,30266,30376,30481,30648,30701]]],["Thanks",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28971]]],["acceptable",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30419]]],["benefit",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28815]]],["favour",[6,6,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]],[43,4,4,2,6,[[1019,1,1,2,3],[1024,2,2,3,5],[1042,1,1,5,6]]]],[24923,25025,26996,27126,27162,27799]]],["gift",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28936]]],["grace",[106,97,[[41,1,1,0,1,[[974,1,1,0,1]]],[42,4,3,1,4,[[997,4,3,1,4]]],[43,10,10,4,14,[[1021,1,1,4,5],[1028,1,1,5,6],[1030,1,1,6,7],[1031,2,2,7,9],[1032,2,2,9,11],[1035,1,1,11,12],[1037,2,2,12,14]]],[44,23,19,14,33,[[1046,1,1,14,15],[1048,1,1,15,16],[1049,2,2,16,18],[1050,6,5,18,23],[1051,3,3,23,26],[1056,5,2,26,28],[1057,2,2,28,30],[1060,1,1,30,31],[1061,2,2,31,33]]],[45,7,5,33,38,[[1062,1,1,33,34],[1064,1,1,34,35],[1071,1,1,35,36],[1076,3,1,36,37],[1077,1,1,37,38]]],[46,11,11,38,49,[[1078,1,1,38,39],[1081,1,1,39,40],[1083,1,1,40,41],[1085,5,5,41,46],[1086,1,1,46,47],[1089,1,1,47,48],[1090,1,1,48,49]]],[47,6,6,49,55,[[1091,2,2,49,51],[1092,2,2,51,53],[1095,1,1,53,54],[1096,1,1,54,55]]],[48,10,10,55,65,[[1097,2,2,55,57],[1098,3,3,57,60],[1099,3,3,60,63],[1100,2,2,63,65]]],[49,2,2,65,67,[[1103,1,1,65,66],[1106,1,1,66,67]]],[50,3,3,67,70,[[1107,1,1,67,68],[1109,1,1,68,69],[1110,1,1,69,70]]],[51,1,1,70,71,[[1115,1,1,70,71]]],[52,3,3,71,74,[[1116,1,1,71,72],[1117,1,1,72,73],[1118,1,1,73,74]]],[53,1,1,74,75,[[1119,1,1,74,75]]],[54,2,2,75,77,[[1125,1,1,75,76],[1126,1,1,76,77]]],[55,2,2,77,79,[[1130,1,1,77,78],[1131,1,1,78,79]]],[56,1,1,79,80,[[1132,1,1,79,80]]],[57,7,6,80,86,[[1134,1,1,80,81],[1136,2,1,81,82],[1142,1,1,82,83],[1144,2,2,83,85],[1145,1,1,85,86]]],[58,2,1,86,87,[[1149,2,1,86,87]]],[59,7,7,87,94,[[1151,2,2,87,89],[1153,1,1,89,90],[1154,1,1,90,91],[1155,3,3,91,94]]],[60,1,1,94,95,[[1158,1,1,94,95]]],[64,1,1,95,96,[[1166,1,1,95,96]]],[65,1,1,96,97,[[1188,1,1,96,97]]]],[25013,26058,26060,26061,27055,27330,27405,27417,27440,27453,27482,27584,27650,27658,27935,28015,28026,28038,28049,28062,28064,28067,28068,28069,28082,28083,28214,28215,28248,28251,28318,28356,28360,28367,28420,28597,28728,28799,28812,28874,28899,28933,28938,28939,28941,28951,28970,29031,29057,29063,29072,29090,29102,29166,29206,29212,29213,29234,29236,29237,29253,29258,29259,29279,29301,29368,29465,29471,29533,29548,29649,29661,29677,29696,29710,29818,29828,29919,29930,29963,29986,30030,30162,30227,30240,30250,30343,30384,30387,30431,30456,30470,30475,30477,30540,30676,31101]]],["gracious",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25085]]],["joy",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29945]]],["liberality",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28779]]],["pleasure",[2,2,[[43,2,2,0,2,[[1041,1,1,0,1],[1042,1,1,1,2]]]],[27796,27805]]],["thank",[3,3,[[41,3,3,0,3,[[978,3,3,0,3]]]],[25178,25179,25180]]],["thanks",[3,3,[[45,1,1,0,1,[[1076,1,1,0,1]]],[46,2,2,1,3,[[1079,1,1,1,2],[1085,1,1,2,3]]]],[28775,28838,28948]]],["thankworthy",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30418]]]]},{"k":"G5486","v":[["*",[17,17,[[44,6,6,0,6,[[1046,1,1,0,1],[1050,2,2,1,3],[1051,1,1,3,4],[1056,1,1,4,5],[1057,1,1,5,6]]],[45,7,7,6,13,[[1062,1,1,6,7],[1068,1,1,7,8],[1073,5,5,8,13]]],[46,1,1,13,14,[[1078,1,1,13,14]]],[53,1,1,14,15,[[1122,1,1,14,15]]],[54,1,1,15,16,[[1125,1,1,15,16]]],[59,1,1,16,17,[[1154,1,1,16,17]]]],[27941,28062,28063,28091,28238,28251,28370,28494,28638,28643,28662,28664,28665,28811,29761,29815,30456]]],["gift",[10,10,[[44,4,4,0,4,[[1046,1,1,0,1],[1050,2,2,1,3],[1051,1,1,3,4]]],[45,2,2,4,6,[[1062,1,1,4,5],[1068,1,1,5,6]]],[46,1,1,6,7,[[1078,1,1,6,7]]],[53,1,1,7,8,[[1122,1,1,7,8]]],[54,1,1,8,9,[[1125,1,1,8,9]]],[59,1,1,9,10,[[1154,1,1,9,10]]]],[27941,28062,28063,28091,28370,28494,28811,29761,29815,30456]]],["gifts",[7,7,[[44,2,2,0,2,[[1056,1,1,0,1],[1057,1,1,1,2]]],[45,5,5,2,7,[[1073,5,5,2,7]]]],[28238,28251,28638,28643,28662,28664,28665]]]]},{"k":"G5487","v":[["*",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]]],[24921,29212]]],["+",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29212]]],["favoured",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24921]]]]},{"k":"G5488","v":[["Charran",[2,2,[[43,2,2,0,2,[[1024,2,2,0,2]]]],[27118,27120]]]]},{"k":"G5489","v":[["paper",[1,1,[[62,1,1,0,1,[[1164,1,1,0,1]]]],[30657]]]]},{"k":"G5490","v":[["gulf",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25646]]]]},{"k":"G5491","v":[["*",[7,7,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[45,1,1,3,4,[[1075,1,1,3,4]]],[57,2,2,4,6,[[1143,1,1,4,5],[1145,1,1,5,6]]],[59,1,1,6,7,[[1153,1,1,6,7]]]],[23641,24469,28004,28699,30184,30256,30434]]],["+",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30184]]],["lips",[6,6,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[45,1,1,3,4,[[1075,1,1,3,4]]],[57,1,1,4,5,[[1145,1,1,4,5]]],[59,1,1,5,6,[[1153,1,1,5,6]]]],[23641,24469,28004,28699,30256,30434]]]]},{"k":"G5492","v":[["tempest",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27873]]]]},{"k":"G5493","v":[["brook",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26786]]]]},{"k":"G5494","v":[["*",[6,6,[[39,2,2,0,2,[[944,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[42,1,1,3,4,[[1006,1,1,3,4]]],[43,1,1,4,5,[[1044,1,1,4,5]]],[54,1,1,5,6,[[1128,1,1,5,6]]]],[23675,23977,24735,26503,27875,29891]]],["tempest",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27875]]],["weather",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23675]]],["winter",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[42,1,1,2,3,[[1006,1,1,2,3]]],[54,1,1,3,4,[[1128,1,1,3,4]]]],[23977,24735,26503,29891]]]]},{"k":"G5495","v":[["*",[178,170,[[39,24,23,0,23,[[931,1,1,0,1],[932,1,1,1,2],[933,1,1,2,3],[936,2,2,3,5],[937,2,2,5,7],[940,3,3,7,10],[942,1,1,10,11],[943,2,2,11,13],[945,1,1,13,14],[946,2,1,14,15],[947,2,2,15,17],[950,1,1,17,18],[954,4,4,18,22],[955,1,1,22,23]]],[40,25,22,23,45,[[957,2,2,23,25],[959,4,3,25,28],[961,2,2,28,30],[962,2,2,30,32],[963,4,4,32,36],[964,3,2,36,38],[965,4,3,38,41],[966,1,1,41,42],[970,2,2,42,44],[972,1,1,44,45]]],[41,26,25,45,70,[[973,3,3,45,48],[975,1,1,48,49],[976,2,2,49,51],[977,1,1,51,52],[978,5,4,52,56],[980,1,1,56,57],[981,2,2,57,59],[985,1,1,59,60],[987,1,1,60,61],[992,1,1,61,62],[993,1,1,62,63],[994,2,2,63,65],[995,1,1,65,66],[996,4,4,66,70]]],[42,15,13,70,83,[[999,1,1,70,71],[1003,2,2,71,73],[1006,3,3,73,76],[1007,1,1,76,77],[1009,2,2,77,79],[1016,5,3,79,82],[1017,1,1,82,83]]],[43,45,44,83,127,[[1019,1,1,83,84],[1020,1,1,84,85],[1021,3,3,85,88],[1022,2,2,88,90],[1023,1,1,90,91],[1024,4,4,91,95],[1025,3,3,95,98],[1026,3,3,98,101],[1028,2,2,101,103],[1029,4,4,103,107],[1030,3,3,107,110],[1031,1,1,110,111],[1034,1,1,111,112],[1036,4,4,112,116],[1037,1,1,116,117],[1038,4,3,117,120],[1040,1,1,120,121],[1041,1,1,121,122],[1043,1,1,122,123],[1045,4,4,123,127]]],[44,1,1,127,128,[[1055,1,1,127,128]]],[45,4,4,128,132,[[1065,1,1,128,129],[1073,2,2,129,131],[1077,1,1,131,132]]],[46,1,1,132,133,[[1088,1,1,132,133]]],[47,2,2,133,135,[[1093,1,1,133,134],[1096,1,1,134,135]]],[48,1,1,135,136,[[1100,1,1,135,136]]],[50,1,1,136,137,[[1110,1,1,136,137]]],[51,1,1,137,138,[[1114,1,1,137,138]]],[52,1,1,138,139,[[1118,1,1,138,139]]],[53,3,3,139,142,[[1120,1,1,139,140],[1122,1,1,140,141],[1123,1,1,141,142]]],[54,1,1,142,143,[[1125,1,1,142,143]]],[56,1,1,143,144,[[1132,1,1,143,144]]],[57,6,6,144,150,[[1133,1,1,144,145],[1134,1,1,145,146],[1138,1,1,146,147],[1140,1,1,147,148],[1142,1,1,148,149],[1144,1,1,149,150]]],[58,1,1,150,151,[[1149,1,1,150,151]]],[59,1,1,151,152,[[1155,1,1,151,152]]],[61,1,1,152,153,[[1159,1,1,152,153]]],[65,17,17,153,170,[[1167,2,2,153,155],[1172,1,1,155,156],[1173,1,1,156,157],[1174,1,1,157,158],[1175,1,1,158,159],[1176,4,4,159,163],[1179,1,1,163,164],[1180,2,2,164,166],[1183,1,1,166,167],[1185,1,1,167,168],[1186,2,2,168,170]]]],[23204,23215,23264,23348,23360,23397,23404,23499,23502,23538,23628,23635,23653,23722,23735,23775,23777,23885,24077,24099,24104,24105,24153,24246,24256,24289,24291,24293,24387,24405,24409,24412,24465,24466,24468,24495,24523,24525,24565,24569,24581,24604,24795,24800,24891,24959,24964,24967,25042,25074,25103,25120,25147,25152,25154,25156,25299,25345,25363,25531,25610,25798,25838,25885,25917,25981,25998,26030,26031,26041,26155,26358,26372,26509,26510,26520,26567,26633,26639,26887,26892,26894,26916,26972,27003,27025,27050,27052,27071,27077,27107,27141,27151,27157,27166,27193,27194,27195,27228,27233,27257,27328,27337,27338,27344,27348,27354,27365,27373,27378,27417,27548,27591,27596,27611,27618,27660,27675,27691,27704,27753,27776,27824,27902,27903,27907,27916,28209,28445,28649,28655,28797,29022,29121,29199,29300,29560,29614,29695,29724,29761,29785,29815,29957,29973,29984,30046,30101,30164,30224,30345,30471,30541,30713,30714,30798,30819,30831,30860,30863,30866,30869,30871,30924,30935,30940,30979,31019,31039,31042]]],["+",[6,6,[[40,3,3,0,3,[[962,1,1,0,1],[963,1,1,1,2],[964,1,1,2,3]]],[41,1,1,3,4,[[976,1,1,3,4]]],[43,2,2,4,6,[[1021,1,1,4,5],[1023,1,1,5,6]]]],[24412,24495,24523,25103,27025,27107]]],["hand",[87,85,[[39,14,14,0,14,[[931,1,1,0,1],[933,1,1,1,2],[936,2,2,2,4],[937,2,2,4,6],[940,3,3,6,9],[942,1,1,9,10],[946,1,1,10,11],[950,1,1,11,12],[954,2,2,12,14]]],[40,10,9,14,23,[[957,2,2,14,16],[959,4,3,16,19],[961,1,1,19,20],[964,1,1,20,21],[965,2,2,21,23]]],[41,13,12,23,35,[[973,3,3,23,26],[975,1,1,26,27],[977,1,1,27,28],[978,4,3,28,31],[980,1,1,31,32],[981,1,1,32,33],[987,1,1,33,34],[994,1,1,34,35]]],[42,7,7,35,42,[[999,1,1,35,36],[1006,3,3,36,39],[1007,1,1,39,40],[1016,2,2,40,42]]],[43,19,19,42,61,[[1020,1,1,42,43],[1021,2,2,43,45],[1024,3,3,45,48],[1026,2,2,48,50],[1028,1,1,50,51],[1029,2,2,51,53],[1030,2,2,53,55],[1036,1,1,55,56],[1038,1,1,56,57],[1040,1,1,57,58],[1043,1,1,58,59],[1045,2,2,59,61]]],[45,3,3,61,64,[[1073,2,2,61,63],[1077,1,1,63,64]]],[47,2,2,64,66,[[1093,1,1,64,65],[1096,1,1,65,66]]],[50,1,1,66,67,[[1110,1,1,66,67]]],[52,1,1,67,68,[[1118,1,1,67,68]]],[56,1,1,68,69,[[1132,1,1,68,69]]],[57,1,1,69,70,[[1140,1,1,69,70]]],[59,1,1,70,71,[[1155,1,1,70,71]]],[65,14,14,71,85,[[1167,2,2,71,73],[1172,1,1,73,74],[1174,1,1,74,75],[1176,4,4,75,79],[1179,1,1,79,80],[1180,2,2,80,82],[1183,1,1,82,83],[1185,1,1,83,84],[1186,1,1,84,85]]]],[23204,23264,23348,23360,23397,23404,23499,23502,23538,23628,23735,23885,24077,24105,24246,24256,24289,24291,24293,24405,24523,24565,24581,24959,24964,24967,25042,25120,25152,25154,25156,25299,25363,25610,25885,26155,26509,26510,26520,26567,26892,26894,27003,27050,27052,27141,27151,27166,27228,27257,27328,27348,27354,27373,27378,27618,27704,27753,27824,27902,27903,28649,28655,28797,29121,29199,29560,29695,29957,30101,30471,30713,30714,30798,30831,30863,30866,30869,30871,30924,30935,30940,30979,31019,31039]]],["hands",[85,84,[[39,10,10,0,10,[[932,1,1,0,1],[943,2,2,1,3],[945,1,1,3,4],[946,1,1,4,5],[947,2,2,5,7],[954,2,2,7,9],[955,1,1,9,10]]],[40,12,12,10,22,[[961,1,1,10,11],[962,1,1,11,12],[963,3,3,12,15],[964,1,1,15,16],[965,2,2,16,18],[966,1,1,18,19],[970,2,2,19,21],[972,1,1,21,22]]],[41,12,12,22,34,[[976,1,1,22,23],[978,1,1,23,24],[981,1,1,24,25],[985,1,1,25,26],[992,1,1,26,27],[993,1,1,27,28],[994,1,1,28,29],[995,1,1,29,30],[996,4,4,30,34]]],[42,8,8,34,42,[[1003,2,2,34,36],[1009,2,2,36,38],[1016,3,3,38,41],[1017,1,1,41,42]]],[43,24,23,42,65,[[1019,1,1,42,43],[1022,2,2,43,45],[1024,1,1,45,46],[1025,3,3,46,49],[1026,1,1,49,50],[1028,1,1,50,51],[1029,2,2,51,53],[1030,1,1,53,54],[1031,1,1,54,55],[1034,1,1,55,56],[1036,3,3,56,59],[1037,1,1,59,60],[1038,3,2,60,62],[1041,1,1,62,63],[1045,2,2,63,65]]],[44,1,1,65,66,[[1055,1,1,65,66]]],[45,1,1,66,67,[[1065,1,1,66,67]]],[46,1,1,67,68,[[1088,1,1,67,68]]],[48,1,1,68,69,[[1100,1,1,68,69]]],[51,1,1,69,70,[[1114,1,1,69,70]]],[53,3,3,70,73,[[1120,1,1,70,71],[1122,1,1,71,72],[1123,1,1,72,73]]],[54,1,1,73,74,[[1125,1,1,73,74]]],[57,5,5,74,79,[[1133,1,1,74,75],[1134,1,1,75,76],[1138,1,1,76,77],[1142,1,1,77,78],[1144,1,1,78,79]]],[58,1,1,79,80,[[1149,1,1,79,80]]],[61,1,1,80,81,[[1159,1,1,80,81]]],[65,3,3,81,84,[[1173,1,1,81,82],[1175,1,1,82,83],[1186,1,1,83,84]]]],[23215,23635,23653,23722,23735,23775,23777,24099,24104,24153,24387,24409,24465,24466,24468,24525,24569,24581,24604,24795,24800,24891,25074,25147,25345,25531,25798,25838,25917,25981,25998,26030,26031,26041,26358,26372,26633,26639,26887,26892,26894,26916,26972,27071,27077,27157,27193,27194,27195,27233,27337,27338,27344,27365,27417,27548,27591,27596,27611,27660,27675,27691,27776,27907,27916,28209,28445,29022,29300,29614,29724,29761,29785,29815,29973,29984,30046,30164,30224,30345,30541,30819,30860,31042]]]]},{"k":"G5496","v":[["*",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1039,1,1,1,2]]]],[27224,27715]]],["+",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27224]]],["hand",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27715]]]]},{"k":"G5497","v":[["hand",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27373]]]]},{"k":"G5498","v":[["handwriting",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29508]]]]},{"k":"G5499","v":[["hands",[6,6,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,2,2,1,3,[[1024,1,1,1,2],[1034,1,1,2,3]]],[48,1,1,3,4,[[1098,1,1,3,4]]],[57,2,2,4,6,[[1141,2,2,4,6]]]],[24812,27164,27547,29240,30116,30129]]]]},{"k":"G5500","v":[["*",[2,2,[[43,1,1,0,1,[[1031,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]]],[27437,28951]]],["chosen",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28951]]],["ordained",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27437]]]]},{"k":"G5501","v":[["*",[11,11,[[39,3,3,0,3,[[937,1,1,0,1],[940,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[958,1,1,3,4],[961,1,1,4,5]]],[41,1,1,5,6,[[983,1,1,5,6]]],[42,1,1,6,7,[[1001,1,1,6,7]]],[53,1,1,7,8,[[1123,1,1,7,8]]],[54,1,1,8,9,[[1127,1,1,8,9]]],[57,1,1,9,10,[[1142,1,1,9,10]]],[60,1,1,10,11,[[1157,1,1,10,11]]]],[23395,23534,24193,24281,24390,25431,26224,29771,29866,30162,30520]]],["+",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[24390,29866]]],["sorer",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30162]]],["worse",[8,8,[[39,3,3,0,3,[[937,1,1,0,1],[940,1,1,1,2],[955,1,1,2,3]]],[40,1,1,3,4,[[958,1,1,3,4]]],[41,1,1,4,5,[[983,1,1,4,5]]],[42,1,1,5,6,[[1001,1,1,5,6]]],[53,1,1,6,7,[[1123,1,1,6,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]]],[23395,23534,24193,24281,25431,26224,29771,30520]]]]},{"k":"G5502","v":[["cherubims",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30110]]]]},{"k":"G5503","v":[["*",[27,25,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,3,3,1,4,[[968,3,3,1,4]]],[41,9,9,4,13,[[974,1,1,4,5],[976,2,2,5,7],[979,1,1,7,8],[990,2,2,8,10],[992,1,1,10,11],[993,2,2,11,13]]],[43,3,3,13,16,[[1023,1,1,13,14],[1026,2,2,14,16]]],[45,1,1,16,17,[[1068,1,1,16,17]]],[53,8,6,17,23,[[1123,8,6,17,23]]],[58,1,1,23,24,[[1146,1,1,23,24]]],[65,1,1,24,25,[[1184,1,1,24,25]]]],[23932,24713,24715,24716,25010,25088,25089,25207,25691,25693,25826,25828,25829,27102,27255,27257,28495,29766,29767,29768,29772,29774,29779,30293,31000]]],["widow",[13,13,[[40,2,2,0,2,[[968,2,2,0,2]]],[41,7,7,2,9,[[974,1,1,2,3],[976,1,1,3,4],[979,1,1,4,5],[990,2,2,5,7],[993,2,2,7,9]]],[53,3,3,9,12,[[1123,3,3,9,12]]],[65,1,1,12,13,[[1184,1,1,12,13]]]],[24715,24716,25010,25089,25207,25691,25693,25828,25829,29767,29768,29772,31000]]],["widows",[11,9,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,3,3,1,4,[[1023,1,1,1,2],[1026,2,2,2,4]]],[45,1,1,4,5,[[1068,1,1,4,5]]],[53,5,3,5,8,[[1123,5,3,5,8]]],[58,1,1,8,9,[[1146,1,1,8,9]]]],[25088,27102,27255,27257,28495,29766,29774,29779,30293]]],["widows'",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]]],[23932,24713,25826]]]]},{"k":"G5504","v":[["*",[3,3,[[42,1,1,0,1,[[1000,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]]],[26208,27144,30249]]],["Yesterday",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26208]]],["yesterday",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[27144,30249]]]]},{"k":"G5505","v":[["*",[23,13,[[41,2,1,0,1,[[986,2,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]],[45,1,1,2,3,[[1071,1,1,2,3]]],[65,19,10,3,13,[[1171,2,1,3,4],[1173,13,5,4,9],[1177,1,1,9,10],[1180,2,2,10,12],[1187,1,1,12,13]]]],[25584,27026,28575,30790,30814,30815,30816,30817,30818,30885,30927,30929,31069]]],["+",[7,6,[[45,1,1,0,1,[[1071,1,1,0,1]]],[65,6,5,1,6,[[1171,2,1,1,2],[1173,1,1,2,3],[1180,2,2,3,5],[1187,1,1,5,6]]]],[28575,30790,30814,30927,30929,31069]]],["thousand",[16,7,[[41,2,1,0,1,[[986,2,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]],[65,13,5,2,7,[[1173,12,4,2,6],[1177,1,1,6,7]]]],[25584,27026,30815,30816,30817,30818,30885]]]]},{"k":"G5506","v":[["*",[22,22,[[40,1,1,0,1,[[962,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[43,18,18,2,20,[[1038,4,4,2,6],[1039,5,5,6,11],[1040,6,6,11,17],[1041,2,2,17,19],[1042,1,1,19,20]]],[65,2,2,20,22,[[1172,1,1,20,21],[1185,1,1,21,22]]]],[24428,26797,27695,27696,27697,27701,27728,27730,27731,27732,27733,27744,27749,27751,27752,27753,27756,27776,27791,27819,30808,31035]]],["+",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27701]]],["captain",[17,17,[[42,1,1,0,1,[[1014,1,1,0,1]]],[43,16,16,1,17,[[1038,3,3,1,4],[1039,5,5,4,9],[1040,6,6,9,15],[1041,2,2,15,17]]]],[26797,27695,27696,27697,27728,27730,27731,27732,27733,27744,27749,27751,27752,27753,27756,27776,27791]]],["captains",[4,4,[[40,1,1,0,1,[[962,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]],[65,2,2,2,4,[[1172,1,1,2,3],[1185,1,1,3,4]]]],[24428,27819,30808,31035]]]]},{"k":"G5507","v":[["*",[11,10,[[60,2,1,0,1,[[1158,2,1,0,1]]],[65,9,9,1,10,[[1177,1,1,1,2],[1178,1,1,2,3],[1180,1,1,3,4],[1186,6,6,4,10]]]],[30530,30875,30897,30946,31040,31041,31042,31043,31044,31045]]],["+",[3,3,[[65,3,3,0,3,[[1177,1,1,0,1],[1178,1,1,1,2],[1180,1,1,2,3]]]],[30875,30897,30946]]],["thousand",[8,7,[[60,2,1,0,1,[[1158,2,1,0,1]]],[65,6,6,1,7,[[1186,6,6,1,7]]]],[30530,31040,31041,31042,31043,31044,31045]]]]},{"k":"G5508","v":[["Chios",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27641]]]]},{"k":"G5509","v":[["*",[11,10,[[39,2,2,0,2,[[933,1,1,0,1],[938,1,1,1,2]]],[40,2,2,2,4,[[962,1,1,2,3],[970,1,1,3,4]]],[41,3,3,4,7,[[975,1,1,4,5],[978,1,1,5,6],[981,1,1,6,7]]],[42,2,1,7,8,[[1015,2,1,7,8]]],[43,1,1,8,9,[[1026,1,1,8,9]]],[64,1,1,9,10,[[1166,1,1,9,10]]]],[23274,23427,24416,24817,25036,25175,25304,26848,27255,30695]]],["clothes",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24817]]],["coat",[4,3,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[42,2,1,2,3,[[1015,2,1,2,3]]]],[23274,25175,26848]]],["coats",[5,5,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,2,2,2,4,[[975,1,1,2,3],[981,1,1,3,4]]],[43,1,1,4,5,[[1026,1,1,4,5]]]],[23427,24416,25036,25304,27255]]],["garment",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30695]]]]},{"k":"G5510","v":[["snow",[3,3,[[39,1,1,0,1,[[956,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[65,1,1,2,3,[[1167,1,1,2,3]]]],[24198,24541,30711]]]]},{"k":"G5511","v":[["robe",[2,2,[[39,2,2,0,2,[[955,2,2,0,2]]]],[24157,24160]]]]},{"k":"G5512","v":[["*",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1034,1,1,1,2]]]],[26962,27555]]],["mocked",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27555]]],["mocking",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26962]]]]},{"k":"G5513","v":[["lukewarm",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30762]]]]},{"k":"G5514","v":[["Chloe",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28374]]]]},{"k":"G5515","v":[["*",[4,4,[[40,1,1,0,1,[[962,1,1,0,1]]],[65,3,3,1,4,[[1172,1,1,1,2],[1174,1,1,2,3],[1175,1,1,3,4]]]],[24446,30801,30834,30844]]],["green",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[65,1,1,1,2,[[1174,1,1,1,2]]]],[24446,30834]]],["pale",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30801]]],["thing",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30844]]]]},{"k":"G5516","v":[["six",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30926]]]]},{"k":"G5517","v":[["*",[4,3,[[45,4,3,0,3,[[1076,4,3,0,3]]]],[28765,28766,28767]]],["+",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28766]]],["earthy",[3,3,[[45,3,3,0,3,[[1076,3,3,0,3]]]],[28765,28766,28767]]]]},{"k":"G5518","v":[["*",[2,1,[[65,2,1,0,1,[[1172,2,1,0,1]]]],[30799]]],["measure",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30799]]],["measures",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30799]]]]},{"k":"G5519","v":[["swine",[14,13,[[39,5,4,0,4,[[935,1,1,0,1],[936,4,3,1,4]]],[40,5,5,4,9,[[961,5,5,4,9]]],[41,4,4,9,13,[[980,2,2,9,11],[987,2,2,11,13]]]],[23322,23375,23376,23377,24375,24376,24377,24378,24380,25277,25278,25603,25604]]]]},{"k":"G5520","v":[["angry",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26351]]]]},{"k":"G5521","v":[["gall",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]]],[24163,27199]]]]},{"k":"G5522","v":[["dust",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[24418,31012]]]]},{"k":"G5523","v":[["Chorazin",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[23480,25376]]]]},{"k":"G5524","v":[["*",[2,2,[[46,1,1,0,1,[[1086,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[28966,30457]]],["giveth",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30457]]],["minister",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28966]]]]},{"k":"G5525","v":[["dancing",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25613]]]]},{"k":"G5526","v":[["*",[15,15,[[39,4,4,0,4,[[933,1,1,0,1],[942,1,1,1,2],[943,2,2,2,4]]],[40,4,4,4,8,[[962,1,1,4,5],[963,1,1,5,6],[964,2,2,6,8]]],[41,3,3,8,11,[[978,1,1,8,9],[981,1,1,9,10],[988,1,1,10,11]]],[42,1,1,11,12,[[1002,1,1,11,12]]],[49,1,1,12,13,[[1106,1,1,12,13]]],[58,1,1,13,14,[[1147,1,1,13,14]]],[65,1,1,14,15,[[1185,1,1,14,15]]]],[23240,23617,23666,23670,24449,24490,24504,24508,25167,25318,25641,26283,29454,30309,31038]]],["fed",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25641]]],["fill",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23666]]],["filled",[11,11,[[39,3,3,0,3,[[933,1,1,0,1],[942,1,1,1,2],[943,1,1,2,3]]],[40,3,3,3,6,[[962,1,1,3,4],[963,1,1,4,5],[964,1,1,5,6]]],[41,2,2,6,8,[[978,1,1,6,7],[981,1,1,7,8]]],[42,1,1,8,9,[[1002,1,1,8,9]]],[58,1,1,9,10,[[1147,1,1,9,10]]],[65,1,1,10,11,[[1185,1,1,10,11]]]],[23240,23617,23670,24449,24490,24508,25167,25318,26283,30309,31038]]],["full",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29454]]],["satisfy",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24504]]]]},{"k":"G5527","v":[["sustenance",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27127]]]]},{"k":"G5528","v":[["*",[15,13,[[39,3,3,0,3,[[934,1,1,0,1],[941,1,1,1,2],[942,1,1,2,3]]],[40,2,2,3,5,[[960,1,1,3,4],[962,1,1,4,5]]],[41,1,1,5,6,[[984,1,1,5,6]]],[42,1,1,6,7,[[1002,1,1,6,7]]],[45,1,1,7,8,[[1064,1,1,7,8]]],[58,2,2,8,10,[[1146,2,2,8,10]]],[59,3,1,10,11,[[1151,3,1,10,11]]],[65,2,2,11,13,[[1174,1,1,11,12],[1175,1,1,12,13]]]],[23312,23565,23616,24351,24446,25487,26267,28422,30276,30277,30398,30834,30844]]],["blade",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]]],[23565,24351]]],["grass",[12,10,[[39,2,2,0,2,[[934,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[41,1,1,3,4,[[984,1,1,3,4]]],[42,1,1,4,5,[[1002,1,1,4,5]]],[58,2,2,5,7,[[1146,2,2,5,7]]],[59,3,1,7,8,[[1151,3,1,7,8]]],[65,2,2,8,10,[[1174,1,1,8,9],[1175,1,1,9,10]]]],[23312,23616,24446,25487,26267,30276,30277,30398,30834,30844]]],["hay",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28422]]]]},{"k":"G5529","v":[["Chuza",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25248]]]]},{"k":"G5530","v":[["*",[11,11,[[43,2,2,0,2,[[1044,2,2,0,2]]],[45,4,4,2,6,[[1068,2,2,2,4],[1070,2,2,4,6]]],[46,3,3,6,9,[[1078,1,1,6,7],[1080,1,1,7,8],[1090,1,1,8,9]]],[53,2,2,9,11,[[1119,1,1,9,10],[1123,1,1,10,11]]]],[27858,27872,28508,28518,28552,28555,28817,28853,29053,29704,29786]]],["entreated",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27858]]],["use",[7,7,[[45,2,2,0,2,[[1068,2,2,0,2]]],[46,3,3,2,5,[[1078,1,1,2,3],[1080,1,1,3,4],[1090,1,1,4,5]]],[53,2,2,5,7,[[1119,1,1,5,6],[1123,1,1,6,7]]]],[28508,28518,28817,28853,29053,29704,29786]]],["used",[3,3,[[43,1,1,0,1,[[1044,1,1,0,1]]],[45,2,2,1,3,[[1070,2,2,1,3]]]],[27872,28552,28555]]]]},{"k":"G5531","v":[["lend",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25410]]]]},{"k":"G5532","v":[["*",[49,47,[[39,6,6,0,6,[[931,1,1,0,1],[934,1,1,1,2],[937,1,1,2,3],[942,1,1,3,4],[949,1,1,4,5],[954,1,1,5,6]]],[40,4,4,6,10,[[958,2,2,6,8],[967,1,1,8,9],[970,1,1,9,10]]],[41,7,7,10,17,[[977,1,1,10,11],[981,1,1,11,12],[982,1,1,12,13],[987,1,1,13,14],[991,2,2,14,16],[994,1,1,16,17]]],[42,4,4,17,21,[[998,1,1,17,18],[1009,2,2,18,20],[1012,1,1,20,21]]],[43,5,5,21,26,[[1019,1,1,21,22],[1021,1,1,22,23],[1023,1,1,23,24],[1037,1,1,24,25],[1045,1,1,25,26]]],[44,1,1,26,27,[[1057,1,1,26,27]]],[45,3,2,27,29,[[1073,3,2,27,29]]],[48,2,2,29,31,[[1100,2,2,29,31]]],[49,3,3,31,34,[[1104,1,1,31,32],[1106,2,2,32,34]]],[51,4,4,34,38,[[1111,1,1,34,35],[1114,2,2,35,37],[1115,1,1,37,38]]],[55,1,1,38,39,[[1131,1,1,38,39]]],[57,4,3,39,42,[[1137,2,1,39,40],[1139,1,1,40,41],[1142,1,1,41,42]]],[61,2,2,42,44,[[1160,1,1,42,43],[1161,1,1,43,44]]],[65,3,3,44,47,[[1169,1,1,44,45],[1187,1,1,45,46],[1188,1,1,46,47]]]],[23206,23290,23391,23613,23829,24119,24277,24285,24643,24817,25138,25312,25405,25595,25762,25765,25935,26120,26640,26659,26756,26994,27057,27104,27660,27909,28258,28655,28658,29300,29301,29416,29458,29461,29568,29612,29615,29622,29937,30042,30075,30169,30577,30596,30763,31076,31085]]],["+",[15,15,[[39,2,2,0,2,[[937,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,3,3,3,6,[[977,1,1,3,4],[987,1,1,4,5],[994,1,1,5,6]]],[42,3,3,6,9,[[998,1,1,6,7],[1009,1,1,7,8],[1012,1,1,8,9]]],[43,1,1,9,10,[[1045,1,1,9,10]]],[48,1,1,10,11,[[1100,1,1,10,11]]],[51,2,2,11,13,[[1111,1,1,11,12],[1114,1,1,12,13]]],[61,1,1,13,14,[[1160,1,1,13,14]]],[65,1,1,14,15,[[1188,1,1,14,15]]]],[23391,23613,24817,25138,25595,25935,26120,26640,26756,27909,29300,29568,29612,30577,31085]]],["business",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27104]]],["lack",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29615]]],["necessities",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27660]]],["necessity",[2,2,[[44,1,1,0,1,[[1057,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]]],[28258,29458]]],["need",[25,23,[[39,4,4,0,4,[[931,1,1,0,1],[934,1,1,1,2],[949,1,1,2,3],[954,1,1,3,4]]],[40,3,3,4,7,[[958,2,2,4,6],[967,1,1,6,7]]],[41,3,3,7,10,[[981,1,1,7,8],[991,2,2,8,10]]],[42,1,1,10,11,[[1009,1,1,10,11]]],[43,2,2,11,13,[[1019,1,1,11,12],[1021,1,1,12,13]]],[45,3,2,13,15,[[1073,3,2,13,15]]],[49,1,1,15,16,[[1106,1,1,15,16]]],[51,1,1,16,17,[[1115,1,1,16,17]]],[57,4,3,17,20,[[1137,2,1,17,18],[1139,1,1,18,19],[1142,1,1,19,20]]],[61,1,1,20,21,[[1161,1,1,20,21]]],[65,2,2,21,23,[[1169,1,1,21,22],[1187,1,1,22,23]]]],[23206,23290,23829,24119,24277,24285,24643,25312,25762,25765,26659,26994,27057,28655,28658,29461,29622,30042,30075,30169,30596,30763,31076]]],["needful",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25405]]],["use",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29301]]],["uses",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29937]]],["wants",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29416]]]]},{"k":"G5533","v":[["debtors",[2,2,[[41,2,2,0,2,[[979,1,1,0,1],[988,1,1,1,2]]]],[25236,25625]]]]},{"k":"G5534","v":[["ought",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30329]]]]},{"k":"G5535","v":[["*",[5,5,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[984,1,1,2,3]]],[44,1,1,3,4,[[1061,1,1,3,4]]],[46,1,1,4,5,[[1080,1,1,4,5]]]],[23314,25413,25489,28338,28842]]],["need",[4,4,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[44,1,1,2,3,[[1061,1,1,2,3]]],[46,1,1,3,4,[[1080,1,1,3,4]]]],[23314,25489,28338,28842]]],["needeth",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25413]]]]},{"k":"G5536","v":[["*",[7,7,[[40,2,2,0,2,[[966,2,2,0,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[43,4,4,3,7,[[1021,1,1,3,4],[1025,2,2,4,6],[1041,1,1,6,7]]]],[24611,24612,25712,27059,27194,27196,27795]]],["money",[4,4,[[43,4,4,0,4,[[1021,1,1,0,1],[1025,2,2,1,3],[1041,1,1,3,4]]]],[27059,27194,27196,27795]]],["riches",[3,3,[[40,2,2,0,2,[[966,2,2,0,2]]],[41,1,1,2,3,[[990,1,1,2,3]]]],[24611,24612,25712]]]]},{"k":"G5537","v":[["*",[9,9,[[39,2,2,0,2,[[930,2,2,0,2]]],[41,1,1,2,3,[[974,1,1,2,3]]],[43,2,2,3,5,[[1027,1,1,3,4],[1028,1,1,4,5]]],[44,1,1,5,6,[[1052,1,1,5,6]]],[57,3,3,6,9,[[1140,1,1,6,7],[1143,1,1,7,8],[1144,1,1,8,9]]]],[23181,23191,24999,27281,27333,28094,30097,30179,30237]]],["God",[5,5,[[39,2,2,0,2,[[930,2,2,0,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]],[57,2,2,3,5,[[1140,1,1,3,4],[1143,1,1,4,5]]]],[23181,23191,27281,30097,30179]]],["called",[2,2,[[43,1,1,0,1,[[1028,1,1,0,1]]],[44,1,1,1,2,[[1052,1,1,1,2]]]],[27333,28094]]],["revealed",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24999]]],["spake",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30237]]]]},{"k":"G5538","v":[["God",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28213]]]]},{"k":"G5539","v":[["+",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29841]]]]},{"k":"G5540","v":[["use",[2,2,[[44,2,2,0,2,[[1046,2,2,0,2]]]],[27956,27957]]]]},{"k":"G5541","v":[["kind",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28669]]]]},{"k":"G5542","v":[["words",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28354]]]]},{"k":"G5543","v":[["*",[7,7,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,2,2,1,3,[[977,1,1,1,2],[978,1,1,2,3]]],[44,1,1,3,4,[[1047,1,1,3,4]]],[45,1,1,4,5,[[1076,1,1,4,5]]],[48,1,1,5,6,[[1100,1,1,5,6]]],[59,1,1,6,7,[[1152,1,1,6,7]]]],[23489,25146,25181,27966,28751,29304,30402]]],["better",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25146]]],["easy",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23489]]],["good",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28751]]],["goodness",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27966]]],["gracious",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30402]]],["kind",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[25181,29304]]]]},{"k":"G5544","v":[["*",[10,8,[[44,5,3,0,3,[[1047,1,1,0,1],[1048,1,1,1,2],[1056,3,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]],[47,1,1,4,5,[[1095,1,1,4,5]]],[48,1,1,5,6,[[1098,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[55,1,1,7,8,[[1131,1,1,7,8]]]],[27966,28003,28231,28904,29184,29236,29529,29927]]],["gentleness",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29184]]],["good",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28003]]],["goodness",[4,2,[[44,4,2,0,2,[[1047,1,1,0,1],[1056,3,1,1,2]]]],[27966,28231]]],["kindness",[4,4,[[46,1,1,0,1,[[1083,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]],[55,1,1,3,4,[[1131,1,1,3,4]]]],[28904,29236,29529,29927]]]]},{"k":"G5545","v":[["*",[3,2,[[61,3,2,0,2,[[1160,3,2,0,2]]]],[30570,30577]]],["anointing",[2,1,[[61,2,1,0,1,[[1160,2,1,0,1]]]],[30577]]],["unction",[1,1,[[61,1,1,0,1,[[1160,1,1,0,1]]]],[30570]]]]},{"k":"G5546","v":[["*",[3,3,[[43,2,2,0,2,[[1028,1,1,0,1],[1043,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[27333,27851,30462]]],["Christian",[2,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[27851,30462]]],["Christians",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27333]]]]},{"k":"G5547","v":[["*",[569,530,[[39,17,17,0,17,[[929,4,4,0,4],[930,1,1,4,5],[939,1,1,5,6],[944,2,2,6,8],[950,1,1,8,9],[951,2,2,9,11],[952,2,2,11,13],[954,2,2,13,15],[955,2,2,15,17]]],[40,7,7,17,24,[[957,1,1,17,18],[964,1,1,18,19],[965,1,1,19,20],[968,1,1,20,21],[969,1,1,21,22],[970,1,1,22,23],[971,1,1,23,24]]],[41,13,12,24,36,[[974,2,2,24,26],[975,1,1,26,27],[976,2,1,27,28],[981,1,1,28,29],[992,1,1,29,30],[994,1,1,30,31],[995,3,3,31,34],[996,2,2,34,36]]],[42,21,20,36,56,[[997,4,4,36,40],[999,1,1,40,41],[1000,3,3,41,44],[1002,1,1,44,45],[1003,6,5,45,50],[1005,1,1,50,51],[1006,1,1,51,52],[1007,1,1,52,53],[1008,1,1,53,54],[1013,1,1,54,55],[1016,1,1,55,56]]],[43,31,30,56,86,[[1019,4,4,56,60],[1020,3,3,60,63],[1021,2,2,63,65],[1022,1,1,65,66],[1025,3,3,66,69],[1026,3,3,69,72],[1027,1,1,72,73],[1028,1,1,73,74],[1032,2,2,74,76],[1033,2,2,76,78],[1034,2,1,78,79],[1035,2,2,79,81],[1036,1,1,81,82],[1037,1,1,82,83],[1041,1,1,83,84],[1043,1,1,84,85],[1045,1,1,85,86]]],[44,68,68,86,154,[[1046,6,6,86,92],[1047,1,1,92,93],[1048,2,2,93,95],[1050,7,7,95,102],[1051,6,6,102,108],[1052,2,2,108,110],[1053,9,9,110,119],[1054,3,3,119,122],[1055,3,3,122,125],[1057,1,1,125,126],[1058,1,1,126,127],[1059,4,4,127,131],[1060,12,12,131,143],[1061,11,11,143,154]]],[45,69,59,154,213,[[1062,17,15,154,169],[1063,2,2,169,171],[1064,4,3,171,174],[1065,6,4,174,178],[1066,3,2,178,180],[1067,2,1,180,181],[1068,1,1,181,182],[1069,3,3,182,185],[1070,4,4,185,189],[1071,4,3,189,192],[1072,3,2,192,194],[1073,2,2,194,196],[1076,15,14,196,210],[1077,3,3,210,213]]],[46,49,45,213,258,[[1078,7,6,213,219],[1079,5,5,219,224],[1080,3,3,224,227],[1081,3,3,227,230],[1082,8,7,230,237],[1083,1,1,237,238],[1085,2,2,238,240],[1086,1,1,240,241],[1087,6,4,241,245],[1088,6,6,245,251],[1089,4,4,251,255],[1090,3,3,255,258]]],[47,41,36,258,294,[[1091,7,7,258,265],[1092,9,5,265,270],[1093,12,11,270,281],[1094,3,3,281,284],[1095,5,5,284,289],[1096,5,5,289,294]]],[48,46,43,294,337,[[1097,10,8,294,302],[1098,8,7,302,309],[1099,10,10,309,319],[1100,6,6,319,325],[1101,8,8,325,333],[1102,4,4,333,337]]],[49,38,36,337,373,[[1103,18,17,337,354],[1104,6,6,354,360],[1105,9,8,360,368],[1106,5,5,368,373]]],[50,26,24,373,397,[[1107,9,8,373,381],[1108,7,7,381,388],[1109,8,7,388,395],[1110,2,2,395,397]]],[51,14,13,397,410,[[1111,3,2,397,399],[1112,3,3,399,402],[1113,3,3,402,405],[1114,1,1,405,406],[1115,4,4,406,410]]],[52,13,12,410,422,[[1116,5,4,410,414],[1117,4,4,414,418],[1118,4,4,418,422]]],[53,16,15,422,437,[[1119,7,6,422,428],[1120,2,2,428,430],[1121,1,1,430,431],[1122,1,1,431,432],[1123,2,2,432,434],[1124,3,3,434,437]]],[54,15,14,437,451,[[1125,6,5,437,442],[1126,5,5,442,447],[1127,2,2,447,449],[1128,2,2,449,451]]],[55,4,4,451,455,[[1129,2,2,451,453],[1130,1,1,453,454],[1131,1,1,454,455]]],[56,7,7,455,462,[[1132,7,7,455,462]]],[57,13,13,462,475,[[1135,3,3,462,465],[1137,1,1,465,466],[1138,1,1,466,467],[1141,4,4,467,471],[1142,1,1,471,472],[1143,1,1,472,473],[1145,2,2,473,475]]],[58,2,2,475,477,[[1146,1,1,475,476],[1147,1,1,476,477]]],[59,21,19,477,496,[[1151,9,7,477,484],[1152,2,2,484,486],[1153,3,3,486,489],[1154,4,4,489,493],[1155,3,3,493,496]]],[60,8,7,496,503,[[1156,6,5,496,501],[1157,1,1,501,502],[1158,1,1,502,503]]],[61,10,10,503,513,[[1159,2,2,503,505],[1160,2,2,505,507],[1161,1,1,507,508],[1162,2,2,508,510],[1163,3,3,510,513]]],[62,4,3,513,516,[[1164,4,3,513,516]]],[64,5,4,516,520,[[1166,5,4,516,520]]],[65,11,10,520,530,[[1167,5,4,520,524],[1177,1,1,524,525],[1178,2,2,525,527],[1186,2,2,527,529],[1188,1,1,529,530]]]],[23145,23160,23161,23162,23173,23461,23688,23692,23914,23926,23928,23962,23980,24117,24122,24146,24151,24216,24529,24579,24708,24738,24815,24858,24984,24999,25040,25104,25321,25820,25931,25937,25970,25974,26017,26037,26061,26064,26069,26085,26148,26181,26185,26198,26326,26354,26355,26359,26369,26370,26462,26505,26550,26614,26762,26898,26979,26980,26985,26987,27002,27014,27016,27032,27048,27101,27181,27188,27213,27236,27238,27250,27295,27324,27453,27468,27501,27514,27526,27562,27585,27589,27647,27793,27846,27930,27931,27933,27936,27937,27938,27946,27978,28013,28015,28048,28053,28055,28058,28062,28064,28068,28071,28072,28076,28077,28079,28091,28095,28116,28117,28118,28125,28126,28127,28133,28150,28151,28155,28156,28158,28160,28192,28194,28195,28250,28280,28289,28290,28295,28298,28306,28308,28309,28310,28311,28319,28320,28321,28322,28323,28332,28333,28339,28341,28343,28345,28346,28352,28354,28356,28360,28361,28363,28364,28365,28366,28367,28369,28370,28371,28372,28373,28375,28376,28380,28386,28387,28393,28396,28410,28411,28421,28433,28434,28443,28448,28450,28458,28461,28482,28509,28533,28538,28539,28541,28552,28558,28561,28571,28576,28583,28601,28603,28646,28661,28721,28730,28731,28732,28733,28734,28735,28736,28737,28738,28740,28741,28749,28775,28798,28799,28800,28801,28802,28803,28805,28819,28821,28834,28836,28838,28839,28841,28844,28845,28855,28863,28864,28865,28887,28891,28893,28894,28895,28896,28897,28913,28941,28955,28969,28972,28976,28978,28985,28991,28992,28999,29002,29012,29020,29024,29031,29032,29041,29046,29048,29057,29058,29060,29063,29064,29067,29069,29079,29085,29097,29098,29101,29102,29103,29115,29116,29118,29119,29124,29126,29128,29129,29130,29131,29138,29145,29150,29163,29164,29166,29168,29186,29190,29200,29202,29203,29206,29207,29208,29209,29211,29216,29218,29223,29226,29234,29235,29236,29239,29241,29242,29249,29252,29255,29257,29259,29260,29262,29265,29268,29270,29272,29279,29284,29285,29287,29292,29304,29306,29309,29318,29324,29327,29328,29329,29336,29342,29343,29360,29361,29362,29363,29367,29369,29371,29372,29374,29376,29377,29379,29380,29381,29382,29384,29387,29388,29390,29392,29396,29402,29407,29412,29421,29424,29428,29429,29430,29433,29435,29439,29441,29449,29455,29461,29463,29465,29466,29467,29468,29469,29472,29489,29492,29493,29496,29499,29500,29502,29505,29511,29514,29518,29520,29521,29528,29530,29533,29541,29545,29554,29561,29563,29576,29584,29589,29592,29601,29603,29619,29630,29639,29644,29649,29650,29651,29657,29661,29662,29663,29675,29677,29683,29684,29690,29696,29697,29698,29708,29710,29711,29712,29721,29723,29744,29753,29774,29784,29791,29801,29802,29810,29811,29818,29819,29822,29828,29830,29835,29837,29846,29865,29868,29871,29892,29893,29896,29921,29929,29939,29941,29944,29946,29947,29961,29963,29996,30001,30009,30035,30045,30116,30119,30129,30133,30143,30198,30249,30262,30267,30294,30375,30376,30377,30381,30385,30387,30393,30404,30420,30440,30442,30445,30447,30457,30459,30460,30466,30475,30479,30480,30487,30490,30493,30495,30520,30540,30543,30547,30551,30572,30602,30605,30606,30625,30630,30644,30648,30652,30654,30673,30676,30689,30693,30698,30699,30702,30706,30887,30901,30908,31042,31044,31101]]],["+",[8,8,[[41,1,1,0,1,[[975,1,1,0,1]]],[44,3,3,1,4,[[1055,2,2,1,3],[1060,1,1,3,4]]],[45,1,1,4,5,[[1065,1,1,4,5]]],[46,2,2,5,7,[[1082,1,1,5,6],[1089,1,1,6,7]]],[48,1,1,7,8,[[1100,1,1,7,8]]]],[25040,28194,28195,28333,28443,28897,29032,29304]]],["Christ",[548,515,[[39,17,17,0,17,[[929,4,4,0,4],[930,1,1,4,5],[939,1,1,5,6],[944,2,2,6,8],[950,1,1,8,9],[951,2,2,9,11],[952,2,2,11,13],[954,2,2,13,15],[955,2,2,15,17]]],[40,7,7,17,24,[[957,1,1,17,18],[964,1,1,18,19],[965,1,1,19,20],[968,1,1,20,21],[969,1,1,21,22],[970,1,1,22,23],[971,1,1,23,24]]],[41,12,11,24,35,[[974,2,2,24,26],[976,2,1,26,27],[981,1,1,27,28],[992,1,1,28,29],[994,1,1,29,30],[995,3,3,30,33],[996,2,2,33,35]]],[42,21,20,35,55,[[997,4,4,35,39],[999,1,1,39,40],[1000,3,3,40,43],[1002,1,1,43,44],[1003,6,5,44,49],[1005,1,1,49,50],[1006,1,1,50,51],[1007,1,1,51,52],[1008,1,1,52,53],[1013,1,1,53,54],[1016,1,1,54,55]]],[43,31,30,55,85,[[1019,4,4,55,59],[1020,3,3,59,62],[1021,2,2,62,64],[1022,1,1,64,65],[1025,3,3,65,68],[1026,3,3,68,71],[1027,1,1,71,72],[1028,1,1,72,73],[1032,2,2,73,75],[1033,2,2,75,77],[1034,2,1,77,78],[1035,2,2,78,80],[1036,1,1,80,81],[1037,1,1,81,82],[1041,1,1,82,83],[1043,1,1,83,84],[1045,1,1,84,85]]],[44,65,65,85,150,[[1046,6,6,85,91],[1047,1,1,91,92],[1048,2,2,92,94],[1050,7,7,94,101],[1051,6,6,101,107],[1052,2,2,107,109],[1053,9,9,109,118],[1054,3,3,118,121],[1055,1,1,121,122],[1057,1,1,122,123],[1058,1,1,123,124],[1059,4,4,124,128],[1060,11,11,128,139],[1061,11,11,139,150]]],[45,65,58,150,208,[[1062,17,15,150,165],[1063,2,2,165,167],[1064,3,3,167,170],[1065,5,4,170,174],[1066,3,2,174,176],[1067,2,1,176,177],[1069,3,3,177,180],[1070,4,4,180,184],[1071,4,3,184,187],[1072,3,2,187,189],[1073,2,2,189,191],[1076,14,14,191,205],[1077,3,3,205,208]]],[46,42,41,208,249,[[1078,7,6,208,214],[1079,4,4,214,218],[1080,3,3,218,221],[1081,3,3,221,224],[1082,7,7,224,231],[1083,1,1,231,232],[1085,2,2,232,234],[1086,1,1,234,235],[1087,3,3,235,238],[1088,5,5,238,243],[1089,3,3,243,246],[1090,3,3,246,249]]],[47,39,34,249,283,[[1091,7,7,249,256],[1092,9,5,256,261],[1093,11,10,261,271],[1094,3,3,271,274],[1095,4,4,274,278],[1096,5,5,278,283]]],[48,44,41,283,324,[[1097,10,8,283,291],[1098,7,6,291,297],[1099,10,10,297,307],[1100,5,5,307,312],[1101,8,8,312,320],[1102,4,4,320,324]]],[49,37,35,324,359,[[1103,18,17,324,341],[1104,5,5,341,346],[1105,9,8,346,354],[1106,5,5,354,359]]],[50,26,24,359,383,[[1107,9,8,359,367],[1108,7,7,367,374],[1109,8,7,374,381],[1110,2,2,381,383]]],[51,14,13,383,396,[[1111,3,2,383,385],[1112,3,3,385,388],[1113,3,3,388,391],[1114,1,1,391,392],[1115,4,4,392,396]]],[52,13,12,396,408,[[1116,5,4,396,400],[1117,4,4,400,404],[1118,4,4,404,408]]],[53,16,15,408,423,[[1119,7,6,408,414],[1120,2,2,414,416],[1121,1,1,416,417],[1122,1,1,417,418],[1123,2,2,418,420],[1124,3,3,420,423]]],[54,15,14,423,437,[[1125,6,5,423,428],[1126,5,5,428,433],[1127,2,2,433,435],[1128,2,2,435,437]]],[55,4,4,437,441,[[1129,2,2,437,439],[1130,1,1,439,440],[1131,1,1,440,441]]],[56,7,7,441,448,[[1132,7,7,441,448]]],[57,13,13,448,461,[[1135,3,3,448,451],[1137,1,1,451,452],[1138,1,1,452,453],[1141,4,4,453,457],[1142,1,1,457,458],[1143,1,1,458,459],[1145,2,2,459,461]]],[58,2,2,461,463,[[1146,1,1,461,462],[1147,1,1,462,463]]],[59,20,18,463,481,[[1151,9,7,463,470],[1152,2,2,470,472],[1153,3,3,472,475],[1154,3,3,475,478],[1155,3,3,478,481]]],[60,8,7,481,488,[[1156,6,5,481,486],[1157,1,1,486,487],[1158,1,1,487,488]]],[61,10,10,488,498,[[1159,2,2,488,490],[1160,2,2,490,492],[1161,1,1,492,493],[1162,2,2,493,495],[1163,3,3,495,498]]],[62,4,3,498,501,[[1164,4,3,498,501]]],[64,5,4,501,505,[[1166,5,4,501,505]]],[65,11,10,505,515,[[1167,5,4,505,509],[1177,1,1,509,510],[1178,2,2,510,512],[1186,2,2,512,514],[1188,1,1,514,515]]]],[23145,23160,23161,23162,23173,23461,23688,23692,23914,23926,23928,23962,23980,24117,24122,24146,24151,24216,24529,24579,24708,24738,24815,24858,24984,24999,25104,25321,25820,25931,25937,25970,25974,26017,26037,26061,26064,26069,26085,26148,26181,26185,26198,26326,26354,26355,26359,26369,26370,26462,26505,26550,26614,26762,26898,26979,26980,26985,26987,27002,27014,27016,27032,27048,27101,27181,27188,27213,27236,27238,27250,27295,27324,27453,27468,27501,27514,27526,27562,27585,27589,27647,27793,27846,27930,27931,27933,27936,27937,27938,27946,27978,28013,28015,28048,28053,28055,28058,28062,28064,28068,28071,28072,28076,28077,28079,28091,28095,28116,28117,28118,28125,28126,28127,28133,28150,28151,28155,28156,28158,28160,28192,28250,28280,28289,28290,28295,28298,28306,28308,28309,28310,28311,28319,28320,28321,28322,28323,28332,28339,28341,28343,28345,28346,28352,28354,28356,28360,28361,28363,28364,28365,28366,28367,28369,28370,28371,28372,28373,28375,28376,28380,28386,28387,28393,28396,28410,28411,28421,28433,28434,28443,28448,28450,28458,28461,28482,28533,28538,28539,28541,28552,28558,28561,28571,28576,28583,28601,28603,28646,28661,28721,28730,28731,28732,28733,28734,28735,28736,28737,28738,28740,28741,28749,28775,28798,28799,28800,28801,28802,28803,28805,28819,28821,28834,28838,28839,28841,28844,28845,28855,28863,28864,28865,28887,28891,28893,28894,28895,28896,28897,28913,28941,28955,28969,28972,28976,28985,28991,28992,28999,29002,29020,29024,29031,29041,29046,29048,29057,29058,29060,29063,29064,29067,29069,29079,29085,29097,29098,29101,29102,29103,29115,29116,29118,29119,29124,29126,29128,29129,29130,29138,29145,29150,29163,29164,29166,29168,29190,29200,29202,29203,29206,29207,29208,29209,29211,29216,29218,29223,29226,29235,29236,29239,29241,29242,29249,29252,29255,29257,29259,29260,29262,29265,29268,29270,29272,29279,29284,29285,29287,29292,29306,29309,29318,29324,29327,29328,29329,29336,29342,29343,29360,29361,29362,29363,29367,29369,29371,29372,29374,29376,29377,29379,29380,29381,29382,29384,29387,29388,29390,29392,29396,29402,29407,29421,29424,29428,29429,29430,29433,29435,29439,29441,29449,29455,29461,29463,29465,29466,29467,29468,29469,29472,29489,29492,29493,29496,29499,29500,29502,29505,29511,29514,29518,29520,29521,29528,29530,29533,29541,29545,29554,29561,29563,29576,29584,29589,29592,29601,29603,29619,29630,29639,29644,29649,29650,29651,29657,29661,29662,29663,29675,29677,29683,29684,29690,29696,29697,29698,29708,29710,29711,29712,29721,29723,29744,29753,29774,29784,29791,29801,29802,29810,29811,29818,29819,29822,29828,29830,29835,29837,29846,29865,29868,29871,29892,29893,29896,29921,29929,29939,29941,29944,29946,29947,29961,29963,29996,30001,30009,30035,30045,30116,30119,30129,30133,30143,30198,30249,30262,30267,30294,30375,30376,30377,30381,30385,30387,30393,30404,30420,30440,30442,30445,30447,30457,30460,30466,30475,30479,30480,30487,30490,30493,30495,30520,30540,30543,30547,30551,30572,30602,30605,30606,30625,30630,30644,30648,30652,30654,30673,30676,30689,30693,30698,30699,30702,30706,30887,30901,30908,31042,31044,31101]]],["Christ's",[11,9,[[45,3,3,0,3,[[1064,1,1,0,1],[1068,1,1,1,2],[1076,1,1,2,3]]],[46,4,2,3,5,[[1079,1,1,3,4],[1087,3,1,4,5]]],[47,2,2,5,7,[[1093,1,1,5,6],[1095,1,1,6,7]]],[49,1,1,7,8,[[1104,1,1,7,8]]],[59,1,1,8,9,[[1154,1,1,8,9]]]],[28433,28509,28741,28836,28978,29131,29186,29412,30459]]],["I",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29012]]],["by",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29234]]]]},{"k":"G5548","v":[["anointed",[5,5,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,2,2,1,3,[[1021,1,1,1,2],[1027,1,1,2,3]]],[46,1,1,3,4,[[1078,1,1,3,4]]],[57,1,1,4,5,[[1133,1,1,4,5]]]],[25081,27049,27297,28821,29972]]]]},{"k":"G5549","v":[["*",[5,5,[[39,2,2,0,2,[[952,1,1,0,1],[953,1,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[984,1,1,3,4]]],[57,1,1,4,5,[[1142,1,1,4,5]]]],[24005,24013,24914,25504,30170]]],["delayeth",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[24005,25504]]],["long",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24914]]],["tarried",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24013]]],["tarry",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30170]]]]},{"k":"G5550","v":[["*",[53,53,[[39,3,3,0,3,[[930,2,2,0,2],[953,1,1,2,3]]],[40,2,2,3,5,[[958,1,1,3,4],[965,1,1,4,5]]],[41,6,6,5,11,[[973,1,1,5,6],[976,1,1,6,7],[980,2,2,7,9],[990,1,1,9,10],[992,1,1,10,11]]],[42,4,4,11,15,[[1001,1,1,11,12],[1003,1,1,12,13],[1008,1,1,13,14],[1010,1,1,14,15]]],[43,17,17,15,32,[[1018,3,3,15,18],[1020,1,1,18,19],[1024,2,2,19,21],[1025,1,1,21,22],[1030,1,1,22,23],[1031,2,2,23,25],[1032,1,1,25,26],[1034,1,1,26,27],[1035,2,2,27,29],[1036,1,1,29,30],[1037,1,1,30,31],[1044,1,1,31,32]]],[44,2,2,32,34,[[1052,1,1,32,33],[1061,1,1,33,34]]],[45,2,2,34,36,[[1068,1,1,34,35],[1077,1,1,35,36]]],[47,2,2,36,38,[[1094,2,2,36,38]]],[51,1,1,38,39,[[1115,1,1,38,39]]],[54,1,1,39,40,[[1125,1,1,39,40]]],[55,1,1,40,41,[[1129,1,1,40,41]]],[57,3,3,41,44,[[1136,1,1,41,42],[1137,1,1,42,43],[1143,1,1,43,44]]],[59,4,4,44,48,[[1151,2,2,44,46],[1154,2,2,46,48]]],[64,1,1,48,49,[[1166,1,1,48,49]]],[65,4,4,49,53,[[1168,1,1,49,50],[1172,1,1,50,51],[1176,1,1,51,52],[1186,1,1,52,53]]]],[23176,23185,24027,24279,24559,24950,25068,25272,25274,25692,25788,26216,26361,26615,26677,26929,26930,26944,27017,27133,27139,27187,27380,27417,27442,27475,27553,27577,27580,27607,27644,27864,28092,28361,28526,28783,29132,29135,29622,29818,29894,30021,30042,30204,30391,30394,30448,30449,30690,30738,30804,30867,31041]]],["+",[11,11,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,3,3,1,4,[[980,2,2,1,3],[990,1,1,3,4]]],[43,1,1,4,5,[[1031,1,1,4,5]]],[44,2,2,5,7,[[1052,1,1,5,6],[1061,1,1,6,7]]],[45,2,2,7,9,[[1068,1,1,7,8],[1077,1,1,8,9]]],[54,1,1,9,10,[[1125,1,1,9,10]]],[55,1,1,10,11,[[1129,1,1,10,11]]]],[24559,25272,25274,25692,27417,28092,28361,28526,28783,29818,29894]]],["he",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29132]]],["old",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27139]]],["season",[3,3,[[43,1,1,0,1,[[1036,1,1,0,1]]],[65,2,2,1,3,[[1172,1,1,1,2],[1186,1,1,2,3]]]],[27607,30804,31041]]],["seasons",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27644]]],["space",[2,2,[[43,1,1,0,1,[[1032,1,1,0,1]]],[65,1,1,1,2,[[1168,1,1,1,2]]]],[27475,30738]]],["they",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24279]]],["time",[26,26,[[39,3,3,0,3,[[930,2,2,0,2],[953,1,1,2,3]]],[41,3,3,3,6,[[973,1,1,3,4],[976,1,1,4,5],[992,1,1,5,6]]],[42,2,2,6,8,[[1001,1,1,6,7],[1010,1,1,7,8]]],[43,9,9,8,17,[[1018,2,2,8,10],[1024,1,1,10,11],[1025,1,1,11,12],[1030,1,1,12,13],[1031,1,1,13,14],[1035,2,2,14,16],[1044,1,1,16,17]]],[47,1,1,17,18,[[1094,1,1,17,18]]],[57,3,3,18,21,[[1136,1,1,18,19],[1137,1,1,19,20],[1143,1,1,20,21]]],[59,3,3,21,24,[[1151,1,1,21,22],[1154,2,2,22,24]]],[64,1,1,24,25,[[1166,1,1,24,25]]],[65,1,1,25,26,[[1176,1,1,25,26]]]],[23176,23185,24027,24950,25068,25788,26216,26677,26929,26944,27133,27187,27380,27442,27577,27580,27864,29135,30021,30042,30204,30391,30448,30449,30690,30867]]],["times",[5,5,[[43,3,3,0,3,[[1018,1,1,0,1],[1020,1,1,1,2],[1034,1,1,2,3]]],[51,1,1,3,4,[[1115,1,1,3,4]]],[59,1,1,4,5,[[1151,1,1,4,5]]]],[26930,27017,27553,29622,30394]]],["while",[2,2,[[42,2,2,0,2,[[1003,1,1,0,1],[1008,1,1,1,2]]]],[26361,26615]]]]},{"k":"G5551","v":[["time",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27642]]]]},{"k":"G5552","v":[["*",[18,16,[[54,1,1,0,1,[[1126,1,1,0,1]]],[57,2,1,1,2,[[1141,2,1,1,2]]],[65,15,14,2,16,[[1167,3,3,2,5],[1168,1,1,5,6],[1170,1,1,6,7],[1171,1,1,7,8],[1174,2,1,8,9],[1175,2,2,9,11],[1180,1,1,11,12],[1181,2,2,12,14],[1183,1,1,14,15],[1187,1,1,15,16]]]],[29847,30109,30709,30710,30717,30718,30772,30787,30830,30853,30860,30940,30952,30953,30979,31068]]],["gold",[4,4,[[54,1,1,0,1,[[1126,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]],[65,2,2,2,4,[[1170,1,1,2,3],[1175,1,1,3,4]]]],[29847,30109,30772,30860]]],["golden",[14,13,[[57,1,1,0,1,[[1141,1,1,0,1]]],[65,13,12,1,13,[[1167,3,3,1,4],[1168,1,1,4,5],[1171,1,1,5,6],[1174,2,1,6,7],[1175,1,1,7,8],[1180,1,1,8,9],[1181,2,2,9,11],[1183,1,1,11,12],[1187,1,1,12,13]]]],[30109,30709,30710,30717,30718,30787,30830,30853,30940,30952,30953,30979,31068]]]]},{"k":"G5553","v":[["*",[9,9,[[43,2,2,0,2,[[1020,1,1,0,1],[1037,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]],[59,3,3,3,6,[[1151,2,2,3,5],[1153,1,1,5,6]]],[65,3,3,6,9,[[1169,1,1,6,7],[1187,2,2,7,9]]]],[27002,27659,30109,30381,30392,30427,30764,31071,31074]]],["gold",[8,8,[[43,2,2,0,2,[[1020,1,1,0,1],[1037,1,1,1,2]]],[59,3,3,2,5,[[1151,2,2,2,4],[1153,1,1,4,5]]],[65,3,3,5,8,[[1169,1,1,5,6],[1187,2,2,6,8]]]],[27002,27659,30381,30392,30427,30764,31071,31074]]],["golden",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30109]]]]},{"k":"G5554","v":[["ring",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30295]]]]},{"k":"G5555","v":[["chrysolite",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31073]]]]},{"k":"G5556","v":[["chrysoprasus",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31073]]]]},{"k":"G5557","v":[["gold",[13,12,[[39,5,4,0,4,[[930,1,1,0,1],[938,1,1,1,2],[951,3,2,2,4]]],[43,1,1,4,5,[[1034,1,1,4,5]]],[45,1,1,5,6,[[1064,1,1,5,6]]],[53,1,1,6,7,[[1120,1,1,6,7]]],[58,1,1,7,8,[[1150,1,1,7,8]]],[65,4,4,8,12,[[1175,1,1,8,9],[1183,1,1,9,10],[1184,2,2,10,12]]]],[23180,23426,23934,23935,27552,28422,29725,30357,30847,30979,31005,31009]]]]},{"k":"G5558","v":[["decked",[2,2,[[65,2,2,0,2,[[1183,1,1,0,1],[1184,1,1,1,2]]]],[30979,31009]]]]},{"k":"G5559","v":[["body",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27597]]]]},{"k":"G5560","v":[["*",[15,15,[[39,5,5,0,5,[[939,1,1,0,1],[943,2,2,1,3],[946,1,1,3,4],[949,1,1,4,5]]],[40,1,1,5,6,[[965,1,1,5,6]]],[41,3,3,6,9,[[979,1,1,6,7],[986,2,2,7,9]]],[42,1,1,9,10,[[1001,1,1,9,10]]],[43,4,4,10,14,[[1020,2,2,10,12],[1025,1,1,12,13],[1031,1,1,13,14]]],[57,1,1,14,15,[[1144,1,1,14,15]]]],[23464,23663,23664,23735,23840,24583,25217,25566,25574,26213,26998,27007,27183,27422,30225]]],["cripple",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27422]]],["halt",[4,4,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,1,1,2,3,[[986,1,1,2,3]]],[42,1,1,3,4,[[1001,1,1,3,4]]]],[23735,24583,25574,26213]]],["lame",[9,9,[[39,4,4,0,4,[[939,1,1,0,1],[943,2,2,1,3],[949,1,1,3,4]]],[41,2,2,4,6,[[979,1,1,4,5],[986,1,1,5,6]]],[43,2,2,6,8,[[1020,1,1,6,7],[1025,1,1,7,8]]],[57,1,1,8,9,[[1144,1,1,8,9]]]],[23464,23663,23664,23840,25217,25566,26998,27183,30225]]],["man",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27007]]]]},{"k":"G5561","v":[["*",[27,27,[[39,3,3,0,3,[[930,1,1,0,1],[932,1,1,1,2],[936,1,1,2,3]]],[40,3,3,3,6,[[957,1,1,3,4],[961,2,2,4,6]]],[41,9,9,6,15,[[974,1,1,6,7],[975,1,1,7,8],[980,1,1,8,9],[984,1,1,9,10],[987,3,3,10,13],[991,1,1,13,14],[993,1,1,14,15]]],[42,3,3,15,18,[[1000,1,1,15,16],[1007,2,2,16,18]]],[43,8,8,18,26,[[1025,1,1,18,19],[1027,1,1,19,20],[1029,1,1,20,21],[1030,1,1,21,22],[1033,1,1,22,23],[1035,1,1,23,24],[1043,1,1,24,25],[1044,1,1,25,26]]],[58,1,1,26,27,[[1150,1,1,26,27]]]],[23181,23225,23373,24220,24365,24374,24981,25026,25271,25475,25601,25602,25603,25743,25847,26191,26577,26578,27177,27298,27357,27411,27489,27580,27843,27882,30358]]],["+",[2,2,[[39,1,1,0,1,[[930,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]]],[23181,26578]]],["coasts",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27843]]],["countries",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25847]]],["country",[12,12,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,2,2,1,3,[[961,2,2,1,3]]],[41,5,5,3,8,[[974,1,1,3,4],[980,1,1,4,5],[987,2,2,5,7],[991,1,1,7,8]]],[42,1,1,8,9,[[1007,1,1,8,9]]],[43,3,3,9,12,[[1029,1,1,9,10],[1035,1,1,10,11],[1044,1,1,11,12]]]],[23373,24365,24374,24981,25271,25601,25603,25743,26577,27357,27580,27882]]],["fields",[2,2,[[42,1,1,0,1,[[1000,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[26191,30358]]],["ground",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25475]]],["land",[3,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]]],[24220,25602,27298]]],["region",[4,4,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[43,2,2,2,4,[[1030,1,1,2,3],[1033,1,1,3,4]]]],[23225,25026,27411,27489]]],["regions",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27177]]]]},{"k":"G5562","v":[["*",[10,9,[[39,4,3,0,3,[[943,1,1,0,1],[947,3,2,1,3]]],[40,1,1,3,4,[[958,1,1,3,4]]],[42,3,3,4,7,[[998,1,1,4,5],[1004,1,1,5,6],[1017,1,1,6,7]]],[46,1,1,7,8,[[1084,1,1,7,8]]],[60,1,1,8,9,[[1158,1,1,8,9]]]],[23650,23773,23774,24262,26101,26418,26923,28918,30531]]],["+",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]]],[23773,24262,26418]]],["Receive",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28918]]],["come",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30531]]],["contain",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26923]]],["containing",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26101]]],["goeth",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23650]]],["receive",[2,1,[[39,2,1,0,1,[[947,2,1,0,1]]]],[23774]]]]},{"k":"G5563","v":[["*",[13,12,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[43,3,3,2,5,[[1018,1,1,2,3],[1035,2,2,3,5]]],[44,2,2,5,7,[[1053,2,2,5,7]]],[45,4,3,7,10,[[1068,4,3,7,10]]],[56,1,1,10,11,[[1132,1,1,10,11]]],[57,1,1,11,12,[[1139,1,1,11,12]]]],[23768,24597,26927,27558,27559,28151,28155,28497,28498,28502,29953,30090]]],["asunder",[2,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]]],[23768,24597]]],["depart",[6,5,[[43,2,2,0,2,[[1018,1,1,0,1],[1035,1,1,1,2]]],[45,4,3,2,5,[[1068,4,3,2,5]]]],[26927,27559,28497,28498,28502]]],["departed",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[27558,29953]]],["separate",[3,3,[[44,2,2,0,2,[[1053,2,2,0,2]]],[57,1,1,2,3,[[1139,1,1,2,3]]]],[28151,28155,30090]]]]},{"k":"G5564","v":[["*",[10,9,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,1,1,2,3,[[1000,1,1,2,3]]],[43,7,6,3,9,[[1018,3,2,3,5],[1021,1,1,5,6],[1022,2,2,6,8],[1045,1,1,8,9]]]],[24090,24786,26161,26941,26942,27056,27062,27067,27906]]],["field",[3,2,[[43,3,2,0,2,[[1018,3,2,0,2]]]],[26941,26942]]],["ground",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26161]]],["land",[2,2,[[43,2,2,0,2,[[1022,2,2,0,2]]]],[27062,27067]]],["lands",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27056]]],["place",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24090,24786]]],["possessions",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27906]]]]},{"k":"G5565","v":[["*",[40,38,[[39,3,3,0,3,[[941,1,1,0,1],[942,1,1,1,2],[943,1,1,2,3]]],[40,1,1,3,4,[[960,1,1,3,4]]],[41,1,1,4,5,[[978,1,1,4,5]]],[42,3,3,5,8,[[997,1,1,5,6],[1011,1,1,6,7],[1016,1,1,7,8]]],[44,6,6,8,14,[[1048,2,2,8,10],[1049,1,1,10,11],[1052,2,2,11,13],[1055,1,1,13,14]]],[45,3,2,14,16,[[1065,1,1,14,15],[1072,2,1,15,16]]],[46,1,1,16,17,[[1088,1,1,16,17]]],[48,1,1,17,18,[[1098,1,1,17,18]]],[49,1,1,18,19,[[1104,1,1,18,19]]],[53,2,2,19,21,[[1120,1,1,19,20],[1123,1,1,20,21]]],[56,1,1,21,22,[[1132,1,1,21,22]]],[57,13,13,22,35,[[1136,1,1,22,23],[1139,3,3,23,26],[1141,4,4,26,30],[1142,1,1,30,31],[1143,2,2,31,33],[1144,2,2,33,35]]],[58,4,3,35,38,[[1147,4,3,35,38]]]],[23573,23618,23671,24357,25195,26047,26704,26874,28012,28019,28028,28099,28100,28202,28441,28611,29017,29241,29405,29724,29784,29952,30029,30071,30084,30085,30112,30123,30127,30133,30161,30178,30212,30220,30226,30311,30313,30319]]],["Beside",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29017]]],["beside",[2,2,[[39,2,2,0,2,[[942,1,1,0,1],[943,1,1,1,2]]]],[23618,23671]]],["itself",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26874]]],["without",[36,34,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[42,2,2,3,5,[[997,1,1,3,4],[1011,1,1,4,5]]],[44,6,6,5,11,[[1048,2,2,5,7],[1049,1,1,7,8],[1052,2,2,8,10],[1055,1,1,10,11]]],[45,3,2,11,13,[[1065,1,1,11,12],[1072,2,1,12,13]]],[48,1,1,13,14,[[1098,1,1,13,14]]],[49,1,1,14,15,[[1104,1,1,14,15]]],[53,2,2,15,17,[[1120,1,1,15,16],[1123,1,1,16,17]]],[56,1,1,17,18,[[1132,1,1,17,18]]],[57,13,13,18,31,[[1136,1,1,18,19],[1139,3,3,19,22],[1141,4,4,22,26],[1142,1,1,26,27],[1143,2,2,27,29],[1144,2,2,29,31]]],[58,4,3,31,34,[[1147,4,3,31,34]]]],[23573,24357,25195,26047,26704,28012,28019,28028,28099,28100,28202,28441,28611,29241,29405,29724,29784,29952,30029,30071,30084,30085,30112,30123,30127,30133,30161,30178,30212,30220,30226,30311,30313,30319]]]]},{"k":"G5566","v":[["west",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27867]]]]},{"k":"G5567","v":[["*",[5,4,[[44,1,1,0,1,[[1060,1,1,0,1]]],[45,2,1,1,2,[[1075,2,1,1,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]]],[28312,28693,29323,30367]]],["melody",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29323]]],["psalms",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30367]]],["sing",[3,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[45,2,1,1,2,[[1075,2,1,1,2]]]],[28312,28693]]]]},{"k":"G5568","v":[["*",[7,7,[[41,2,2,0,2,[[992,1,1,0,1],[996,1,1,1,2]]],[43,2,2,2,4,[[1018,1,1,2,3],[1030,1,1,3,4]]],[45,1,1,4,5,[[1075,1,1,4,5]]],[48,1,1,5,6,[[1101,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]]],[25821,26035,26943,27395,28704,29323,29533]]],["Psalms",[2,2,[[41,1,1,0,1,[[992,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]]],[25821,26943]]],["psalm",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[27395,28704]]],["psalms",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]]],[26035,29323,29533]]]]},{"k":"G5569","v":[["brethren",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]]],[29015,29085]]]]},{"k":"G5570","v":[["apostles",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29002]]]]},{"k":"G5571","v":[["*",[3,3,[[43,1,1,0,1,[[1023,1,1,0,1]]],[65,2,2,1,3,[[1168,1,1,1,2],[1187,1,1,2,3]]]],[27114,30719,31061]]],["false",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27114]]],["liars",[2,2,[[65,2,2,0,2,[[1168,1,1,0,1],[1187,1,1,1,2]]]],[30719,31061]]]]},{"k":"G5572","v":[["teachers",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30501]]]]},{"k":"G5573","v":[["lies",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29749]]]]},{"k":"G5574","v":[["*",[12,12,[[39,1,1,0,1,[[933,1,1,0,1]]],[43,2,2,1,3,[[1022,2,2,1,3]]],[44,1,1,3,4,[[1054,1,1,3,4]]],[46,1,1,4,5,[[1088,1,1,4,5]]],[47,1,1,5,6,[[1091,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[53,1,1,7,8,[[1120,1,1,7,8]]],[57,1,1,8,9,[[1138,1,1,8,9]]],[58,1,1,9,10,[[1148,1,1,9,10]]],[61,1,1,10,11,[[1159,1,1,10,11]]],[65,1,1,11,12,[[1169,1,1,11,12]]]],[23245,27062,27063,28156,29020,29077,29526,29723,30062,30333,30546,30755]]],["Lie",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29526]]],["falsely",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23245]]],["lie",[9,9,[[43,1,1,0,1,[[1022,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]],[47,1,1,3,4,[[1091,1,1,3,4]]],[53,1,1,4,5,[[1120,1,1,4,5]]],[57,1,1,5,6,[[1138,1,1,5,6]]],[58,1,1,6,7,[[1148,1,1,6,7]]],[61,1,1,7,8,[[1159,1,1,7,8]]],[65,1,1,8,9,[[1169,1,1,8,9]]]],[27062,28156,29020,29077,29723,30062,30333,30546,30755]]],["lied",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27063]]]]},{"k":"G5575","v":[["witnesses",[3,2,[[39,2,1,0,1,[[954,2,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]]],[24114,28733]]]]},{"k":"G5576","v":[["witness",[6,6,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,3,3,1,4,[[966,1,1,1,2],[970,2,2,2,4]]],[41,1,1,4,5,[[990,1,1,4,5]]],[44,1,1,5,6,[[1058,1,1,5,6]]]],[23780,24607,24810,24811,25708,28275]]]]},{"k":"G5577","v":[["witness",[2,2,[[39,2,2,0,2,[[943,1,1,0,1],[954,1,1,1,2]]]],[23652,24113]]]]},{"k":"G5578","v":[["*",[11,11,[[39,3,3,0,3,[[935,1,1,0,1],[952,2,2,1,3]]],[40,1,1,3,4,[[969,1,1,3,4]]],[41,1,1,4,5,[[978,1,1,4,5]]],[43,1,1,5,6,[[1030,1,1,5,6]]],[60,1,1,6,7,[[1157,1,1,6,7]]],[61,1,1,7,8,[[1162,1,1,7,8]]],[65,3,3,8,11,[[1182,1,1,8,9],[1185,1,1,9,10],[1186,1,1,10,11]]]],[23331,23968,23981,24739,25172,27368,30501,30604,30967,31037,31048]]],["prophet",[4,4,[[43,1,1,0,1,[[1030,1,1,0,1]]],[65,3,3,1,4,[[1182,1,1,1,2],[1185,1,1,2,3],[1186,1,1,3,4]]]],[27368,30967,31037,31048]]],["prophets",[7,7,[[39,3,3,0,3,[[935,1,1,0,1],[952,2,2,1,3]]],[40,1,1,3,4,[[969,1,1,3,4]]],[41,1,1,4,5,[[978,1,1,4,5]]],[60,1,1,5,6,[[1157,1,1,5,6]]],[61,1,1,6,7,[[1162,1,1,6,7]]]],[23331,23968,23981,24739,25172,30501,30604]]]]},{"k":"G5579","v":[["*",[9,9,[[42,1,1,0,1,[[1004,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]],[52,2,2,3,5,[[1117,2,2,3,5]]],[61,2,2,5,7,[[1160,2,2,5,7]]],[65,2,2,7,9,[[1187,1,1,7,8],[1188,1,1,8,9]]]],[26425,27955,29297,29670,29672,30571,30577,31080,31095]]],["lie",[7,7,[[42,1,1,0,1,[[1004,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]],[61,2,2,3,5,[[1160,2,2,3,5]]],[65,2,2,5,7,[[1187,1,1,5,6],[1188,1,1,6,7]]]],[26425,27955,29672,30571,30577,31080,31095]]],["lying",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]]],[29297,29670]]]]},{"k":"G5580","v":[["Christs",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23981,24739]]]]},{"k":"G5581","v":[["called",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29808]]]]},{"k":"G5582","v":[["lie",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[27998]]]]},{"k":"G5583","v":[["*",[10,10,[[42,2,2,0,2,[[1004,2,2,0,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]],[55,1,1,4,5,[[1129,1,1,4,5]]],[61,5,5,5,10,[[1159,1,1,5,6],[1160,2,2,6,8],[1162,1,1,8,9],[1163,1,1,9,10]]]],[26425,26436,27995,29706,29904,30550,30554,30572,30623,30634]]],["liar",[8,8,[[42,2,2,0,2,[[1004,2,2,0,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[61,5,5,3,8,[[1159,1,1,3,4],[1160,2,2,4,6],[1162,1,1,6,7],[1163,1,1,7,8]]]],[26425,26436,27995,30550,30554,30572,30623,30634]]],["liars",[2,2,[[53,1,1,0,1,[[1119,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[29706,29904]]]]},{"k":"G5584","v":[["*",[4,4,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]],[61,1,1,3,4,[[1159,1,1,3,4]]]],[26030,27550,30230,30541]]],["after",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27550]]],["handle",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26030]]],["handled",[1,1,[[61,1,1,0,1,[[1159,1,1,0,1]]]],[30541]]],["touched",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30230]]]]},{"k":"G5585","v":[["*",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[65,1,1,1,2,[[1179,1,1,1,2]]]],[25581,30926]]],["count",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30926]]],["counteth",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25581]]]]},{"k":"G5586","v":[["*",[3,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[65,2,1,1,2,[[1168,2,1,1,2]]]],[27833,30734]]],["+",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27833]]],["stone",[2,1,[[65,2,1,0,1,[[1168,2,1,0,1]]]],[30734]]]]},{"k":"G5587","v":[["whisperings",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29042]]]]},{"k":"G5588","v":[["whisperers",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27959]]]]},{"k":"G5589","v":[["crumbs",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]]],[23660,24491,25641]]]]},{"k":"G5590","v":[["*",[104,94,[[39,16,11,0,11,[[930,1,1,0,1],[934,2,1,1,2],[938,4,2,2,4],[939,1,1,4,5],[940,1,1,5,6],[944,4,2,6,8],[948,1,1,8,9],[950,1,1,9,10],[954,1,1,10,11]]],[40,9,8,11,19,[[959,1,1,11,12],[964,4,3,12,15],[966,1,1,15,16],[968,2,2,16,18],[970,1,1,18,19]]],[41,15,13,19,32,[[973,1,1,19,20],[974,1,1,20,21],[978,1,1,21,22],[981,3,2,22,24],[982,1,1,24,25],[984,5,4,25,29],[986,1,1,29,30],[989,1,1,30,31],[993,1,1,31,32]]],[42,10,9,32,41,[[1006,4,4,32,36],[1008,3,2,36,38],[1009,2,2,38,40],[1011,1,1,40,41]]],[43,16,16,41,57,[[1019,4,4,41,45],[1020,1,1,45,46],[1021,1,1,46,47],[1024,1,1,47,48],[1031,2,2,48,50],[1032,2,2,50,52],[1037,2,2,52,54],[1044,3,3,54,57]]],[44,4,4,57,61,[[1047,1,1,57,58],[1056,1,1,58,59],[1058,1,1,59,60],[1061,1,1,60,61]]],[45,1,1,61,62,[[1076,1,1,61,62]]],[46,1,1,62,63,[[1078,1,1,62,63]]],[48,1,1,63,64,[[1102,1,1,63,64]]],[49,2,2,64,66,[[1103,1,1,64,65],[1104,1,1,65,66]]],[50,1,1,66,67,[[1109,1,1,66,67]]],[51,2,2,67,69,[[1112,1,1,67,68],[1115,1,1,68,69]]],[57,6,6,69,75,[[1136,1,1,69,70],[1138,1,1,70,71],[1142,2,2,71,73],[1144,1,1,73,74],[1145,1,1,74,75]]],[58,2,2,75,77,[[1146,1,1,75,76],[1150,1,1,76,77]]],[59,6,6,77,83,[[1151,2,2,77,79],[1152,2,2,79,81],[1153,1,1,81,82],[1154,1,1,82,83]]],[60,2,2,83,85,[[1157,2,2,83,85]]],[61,2,1,85,86,[[1161,2,1,85,86]]],[63,1,1,86,87,[[1165,1,1,86,87]]],[65,7,7,87,94,[[1172,1,1,87,88],[1174,1,1,88,89],[1178,1,1,89,90],[1182,1,1,90,91],[1184,2,2,91,93],[1186,1,1,93,94]]]],[23189,23307,23445,23456,23488,23507,23697,23698,23820,23909,24092,24292,24535,24536,24537,24633,24703,24706,24788,24939,25008,25155,25325,25357,25390,25478,25479,25481,25482,25579,25684,25845,26492,26496,26498,26505,26605,26607,26667,26668,26712,26976,26980,26990,26992,27019,27054,27130,27416,27436,27466,27468,27636,27650,27865,27877,27892,27971,28212,28267,28340,28763,28823,29343,29388,29421,29540,29578,29644,30026,30063,30171,30172,30215,30258,30287,30374,30383,30396,30410,30424,30444,30465,30508,30514,30595,30660,30802,30836,30902,30957,31006,31007,31042]]],["+",[3,3,[[42,1,1,0,1,[[1006,1,1,0,1]]],[43,1,1,1,2,[[1031,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]]],[26505,27416,29540]]],["Soul",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25478]]],["heart",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29343]]],["life",[35,29,[[39,8,5,0,5,[[930,1,1,0,1],[934,2,1,1,2],[938,2,1,2,3],[944,2,1,3,4],[948,1,1,4,5]]],[40,4,3,5,8,[[959,1,1,5,6],[964,2,1,6,7],[966,1,1,7,8]]],[41,7,6,8,14,[[978,1,1,8,9],[981,2,1,9,10],[984,2,2,10,12],[986,1,1,12,13],[989,1,1,13,14]]],[42,8,7,14,21,[[1006,3,3,14,17],[1008,2,1,17,18],[1009,2,2,18,20],[1011,1,1,20,21]]],[43,3,3,21,24,[[1037,2,2,21,23],[1044,1,1,23,24]]],[44,2,2,24,26,[[1056,1,1,24,25],[1061,1,1,25,26]]],[49,1,1,26,27,[[1104,1,1,26,27]]],[61,1,1,27,28,[[1161,1,1,27,28]]],[65,1,1,28,29,[[1174,1,1,28,29]]]],[23189,23307,23456,23697,23820,24292,24535,24633,25155,25325,25481,25482,25579,25684,26492,26496,26498,26605,26667,26668,26712,27636,27650,27877,28212,28340,29421,30595,30836]]],["lives",[5,5,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,2,2,1,3,[[1032,1,1,1,2],[1044,1,1,2,3]]],[61,1,1,3,4,[[1161,1,1,3,4]]],[65,1,1,4,5,[[1178,1,1,4,5]]]],[25357,27468,27865,30595,30902]]],["mind",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29388]]],["minds",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30215]]],["soul",[38,36,[[39,7,5,0,5,[[938,2,1,0,1],[940,1,1,1,2],[944,2,1,2,3],[950,1,1,3,4],[954,1,1,4,5]]],[40,5,5,5,10,[[964,2,2,5,7],[968,2,2,7,9],[970,1,1,9,10]]],[41,5,5,10,15,[[973,1,1,10,11],[974,1,1,11,12],[982,1,1,12,13],[984,2,2,13,15]]],[42,1,1,15,16,[[1008,1,1,15,16]]],[43,5,5,16,21,[[1019,3,3,16,19],[1020,1,1,19,20],[1021,1,1,20,21]]],[44,2,2,21,23,[[1047,1,1,21,22],[1058,1,1,22,23]]],[45,1,1,23,24,[[1076,1,1,23,24]]],[46,1,1,24,25,[[1078,1,1,24,25]]],[51,1,1,25,26,[[1115,1,1,25,26]]],[57,4,4,26,30,[[1136,1,1,26,27],[1138,1,1,27,28],[1142,2,2,28,30]]],[58,1,1,30,31,[[1150,1,1,30,31]]],[59,1,1,31,32,[[1152,1,1,31,32]]],[60,1,1,32,33,[[1157,1,1,32,33]]],[63,1,1,33,34,[[1165,1,1,33,34]]],[65,2,2,34,36,[[1182,1,1,34,35],[1184,1,1,35,36]]]],[23445,23507,23698,23909,24092,24536,24537,24703,24706,24788,24939,25008,25390,25478,25479,26607,26976,26980,26992,27019,27054,27971,28267,28763,28823,29644,30026,30063,30171,30172,30374,30410,30508,30660,30957,31007]]],["souls",[19,19,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]],[43,5,5,2,7,[[1019,1,1,2,3],[1024,1,1,3,4],[1031,1,1,4,5],[1032,1,1,5,6],[1044,1,1,6,7]]],[51,1,1,7,8,[[1112,1,1,7,8]]],[57,1,1,8,9,[[1145,1,1,8,9]]],[58,1,1,9,10,[[1146,1,1,9,10]]],[59,5,5,10,15,[[1151,2,2,10,12],[1152,1,1,12,13],[1153,1,1,13,14],[1154,1,1,14,15]]],[60,1,1,15,16,[[1157,1,1,15,16]]],[65,3,3,16,19,[[1172,1,1,16,17],[1184,1,1,17,18],[1186,1,1,18,19]]]],[23488,25845,26990,27130,27436,27466,27892,29578,30258,30287,30383,30396,30424,30444,30465,30514,30802,31006,31042]]]]},{"k":"G5591","v":[["*",[6,5,[[45,4,3,0,3,[[1063,1,1,0,1],[1076,3,2,1,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[28408,28762,28764,30334,30691]]],["natural",[4,3,[[45,4,3,0,3,[[1063,1,1,0,1],[1076,3,2,1,3]]]],[28408,28762,28764]]],["sensual",[2,2,[[58,1,1,0,1,[[1148,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[30334,30691]]]]},{"k":"G5592","v":[["cold",[3,3,[[42,1,1,0,1,[[1014,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]]],[26803,27901,29016]]]]},{"k":"G5593","v":[["cold",[4,3,[[39,1,1,0,1,[[938,1,1,0,1]]],[65,3,2,1,3,[[1169,3,2,1,3]]]],[23459,30761,30762]]]]},{"k":"G5594","v":[["cold",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23969]]]]},{"k":"G5595","v":[["*",[2,2,[[44,1,1,0,1,[[1057,1,1,0,1]]],[45,1,1,1,2,[[1074,1,1,1,2]]]],[28265,28668]]],["+",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28668]]],["feed",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28265]]]]},{"k":"G5596","v":[["sop",[4,3,[[42,4,3,0,3,[[1009,4,3,0,3]]]],[26656,26657,26660]]]]},{"k":"G5597","v":[["rubbing",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25147]]]]},{"k":"G5598","v":[["Omega",[4,4,[[65,4,4,0,4,[[1167,2,2,0,2],[1187,1,1,2,3],[1188,1,1,3,4]]]],[30705,30708,31059,31093]]]]},{"k":"G5599","v":[["*",[17,17,[[39,2,2,0,2,[[943,1,1,0,1],[945,1,1,1,2]]],[40,1,1,2,3,[[965,1,1,2,3]]],[41,2,2,3,5,[[981,1,1,3,4],[996,1,1,4,5]]],[43,4,4,5,9,[[1018,1,1,5,6],[1030,1,1,6,7],[1035,1,1,7,8],[1044,1,1,8,9]]],[44,4,4,9,13,[[1047,2,2,9,11],[1054,1,1,11,12],[1056,1,1,12,13]]],[47,1,1,13,14,[[1093,1,1,13,14]]],[53,2,2,14,16,[[1124,2,2,14,16]]],[58,1,1,16,17,[[1147,1,1,16,17]]]],[23661,23717,24557,25342,26016,26924,27372,27571,27876,27963,27965,28175,28242,29103,29799,29808,30313]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27876]]],["O",[16,16,[[39,2,2,0,2,[[943,1,1,0,1],[945,1,1,1,2]]],[40,1,1,2,3,[[965,1,1,2,3]]],[41,2,2,3,5,[[981,1,1,3,4],[996,1,1,4,5]]],[43,3,3,5,8,[[1018,1,1,5,6],[1030,1,1,6,7],[1035,1,1,7,8]]],[44,4,4,8,12,[[1047,2,2,8,10],[1054,1,1,10,11],[1056,1,1,11,12]]],[47,1,1,12,13,[[1093,1,1,12,13]]],[53,2,2,13,15,[[1124,2,2,13,15]]],[58,1,1,15,16,[[1147,1,1,15,16]]]],[23661,23717,24557,25342,26016,26924,27372,27571,27963,27965,28175,28242,29103,29799,29808,30313]]]]},{"k":"G5600","v":[["*",[65,61,[[39,8,7,0,7,[[934,3,3,0,3],[938,2,1,3,4],[948,2,2,4,6],[952,1,1,6,7]]],[40,2,2,7,9,[[959,1,1,7,8],[961,1,1,8,9]]],[41,4,3,9,12,[[982,1,1,9,10],[983,2,1,10,11],[986,1,1,11,12]]],[42,15,14,12,26,[[999,2,2,12,14],[1002,1,1,14,15],[1005,2,2,15,17],[1010,1,1,17,18],[1012,1,1,18,19],[1013,8,7,19,26]]],[43,1,1,26,27,[[1022,1,1,26,27]]],[44,2,2,27,29,[[1054,1,1,27,28],[1056,1,1,28,29]]],[45,11,10,29,39,[[1062,2,1,29,30],[1063,1,1,30,31],[1066,1,1,31,32],[1068,3,3,32,35],[1073,1,1,35,36],[1075,1,1,36,37],[1076,1,1,37,38],[1077,1,1,38,39]]],[46,6,6,39,45,[[1078,2,2,39,41],[1081,1,1,41,42],[1086,1,1,42,43],[1090,2,2,43,45]]],[47,1,1,45,46,[[1095,1,1,45,46]]],[48,2,2,46,48,[[1100,1,1,46,47],[1101,1,1,47,48]]],[49,2,2,48,50,[[1103,1,1,48,49],[1104,1,1,49,50]]],[53,2,2,50,52,[[1122,1,1,50,51],[1123,1,1,51,52]]],[54,1,1,52,53,[[1127,1,1,52,53]]],[55,2,2,53,55,[[1129,1,1,53,54],[1131,1,1,54,55]]],[56,1,1,55,56,[[1132,1,1,55,56]]],[58,3,3,56,59,[[1146,1,1,56,57],[1147,1,1,57,58],[1150,1,1,58,59]]],[61,1,1,59,60,[[1159,1,1,59,60]]],[62,1,1,60,61,[[1164,1,1,60,61]]]],[23286,23304,23305,23430,23796,23799,23985,24302,24382,25369,25439,25561,26122,26147,26322,26445,26471,26671,26750,26770,26778,26780,26781,26782,26783,26785,27097,28182,28234,28373,28399,28461,28516,28521,28523,28659,28706,28746,28780,28809,28817,28866,28959,29050,29052,29172,29286,29331,29371,29419,29762,29770,29870,29901,29937,29952,30270,30308,30369,30544,30657]]],["+",[4,4,[[39,1,1,0,1,[[938,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[23430,28523,29762,30308]]],["am",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26445]]],["are",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29052]]],["be",[50,48,[[39,4,4,0,4,[[934,3,3,0,3],[938,1,1,3,4]]],[40,2,2,4,6,[[959,1,1,4,5],[961,1,1,5,6]]],[41,2,2,6,8,[[982,1,1,6,7],[986,1,1,7,8]]],[42,13,12,8,20,[[999,2,2,8,10],[1005,1,1,10,11],[1010,1,1,11,12],[1012,1,1,12,13],[1013,8,7,13,20]]],[43,1,1,20,21,[[1022,1,1,20,21]]],[44,2,2,21,23,[[1054,1,1,21,22],[1056,1,1,22,23]]],[45,9,8,23,31,[[1062,2,1,23,24],[1066,1,1,24,25],[1068,2,2,25,27],[1073,1,1,27,28],[1075,1,1,28,29],[1076,1,1,29,30],[1077,1,1,30,31]]],[46,4,4,31,35,[[1078,1,1,31,32],[1081,1,1,32,33],[1086,1,1,33,34],[1090,1,1,34,35]]],[47,1,1,35,36,[[1095,1,1,35,36]]],[48,2,2,36,38,[[1100,1,1,36,37],[1101,1,1,37,38]]],[49,2,2,38,40,[[1103,1,1,38,39],[1104,1,1,39,40]]],[53,1,1,40,41,[[1123,1,1,40,41]]],[54,1,1,41,42,[[1127,1,1,41,42]]],[55,2,2,42,44,[[1129,1,1,42,43],[1131,1,1,43,44]]],[56,1,1,44,45,[[1132,1,1,44,45]]],[58,1,1,45,46,[[1146,1,1,45,46]]],[61,1,1,46,47,[[1159,1,1,46,47]]],[62,1,1,47,48,[[1164,1,1,47,48]]]],[23286,23304,23305,23430,24302,24382,25369,25561,26122,26147,26471,26671,26750,26770,26778,26780,26781,26782,26783,26785,27097,28182,28234,28373,28461,28516,28521,28659,28706,28746,28780,28817,28866,28959,29050,29172,29286,29331,29371,29419,29770,29870,29901,29937,29952,30270,30544,30657]]],["have",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30369]]],["is",[5,4,[[39,3,3,0,3,[[948,2,2,0,2],[952,1,1,2,3]]],[41,2,1,3,4,[[983,2,1,3,4]]]],[23796,23799,23985,25439]]],["should",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28809]]],["stand",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28399]]],["were",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26322]]]]},{"k":"G5601","v":[["Obed",[3,2,[[39,2,1,0,1,[[929,2,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23149,25057]]]]},{"k":"G5602","v":[["*",[60,56,[[39,18,16,0,16,[[936,1,1,0,1],[940,3,3,1,4],[942,3,3,4,7],[944,1,1,7,8],[945,3,2,8,10],[948,1,1,10,11],[950,1,1,11,12],[952,3,2,12,14],[954,1,1,14,15],[956,1,1,15,16]]],[40,9,9,16,25,[[962,1,1,16,17],[964,1,1,17,18],[965,2,2,18,20],[967,1,1,20,21],[969,1,1,21,22],[970,2,2,22,24],[972,1,1,24,25]]],[41,14,14,25,39,[[976,1,1,25,26],[981,4,4,26,30],[983,2,2,30,32],[986,1,1,32,33],[989,2,2,33,35],[991,1,1,35,36],[994,1,1,36,37],[995,1,1,37,38],[996,1,1,38,39]]],[42,5,5,39,44,[[1002,2,2,39,41],[1007,2,2,41,43],[1016,1,1,43,44]]],[43,2,2,44,46,[[1026,2,2,44,46]]],[50,1,1,46,47,[[1110,1,1,46,47]]],[57,2,2,47,49,[[1139,1,1,47,48],[1145,1,1,48,49]]],[58,2,1,49,50,[[1147,2,1,49,50]]],[65,7,6,50,56,[[1170,1,1,50,51],[1177,1,1,51,52],[1179,2,2,52,54],[1180,2,1,54,55],[1183,1,1,55,56]]]],[23374,23495,23530,23531,23605,23614,23615,23700,23704,23717,23798,23884,23959,23980,24092,24201,24410,24504,24539,24543,24643,24738,24786,24788,24879,25086,25313,25328,25334,25342,25436,25437,25574,25672,25674,25758,25902,25940,25997,26266,26282,26544,26555,26894,27230,27237,29551,30072,30255,30296,30769,30884,30918,30926,30938,30984]]],["+",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30072]]],["Here",[3,3,[[65,3,3,0,3,[[1179,2,2,0,2],[1180,1,1,2,3]]]],[30918,30926,30938]]],["here",[40,38,[[39,12,11,0,11,[[940,2,2,0,2],[942,2,2,2,4],[944,1,1,4,5],[945,2,1,5,6],[948,1,1,6,7],[952,2,2,7,9],[954,1,1,9,10],[956,1,1,10,11]]],[40,8,8,11,19,[[962,1,1,11,12],[964,1,1,12,13],[965,2,2,13,15],[969,1,1,15,16],[970,2,2,16,18],[972,1,1,18,19]]],[41,10,10,19,29,[[976,1,1,19,20],[981,3,3,20,23],[983,2,2,23,25],[989,2,2,25,27],[994,1,1,27,28],[996,1,1,28,29]]],[42,3,3,29,32,[[1002,1,1,29,30],[1007,2,2,30,32]]],[43,1,1,32,33,[[1026,1,1,32,33]]],[50,1,1,33,34,[[1110,1,1,33,34]]],[57,1,1,34,35,[[1145,1,1,34,35]]],[58,2,1,35,36,[[1147,2,1,35,36]]],[65,2,2,36,38,[[1180,1,1,36,37],[1183,1,1,37,38]]]],[23530,23531,23605,23614,23700,23704,23798,23959,23980,24092,24201,24410,24504,24539,24543,24738,24786,24788,24879,25086,25313,25328,25334,25436,25437,25672,25674,25902,25997,26266,26544,26555,27230,29551,30255,30296,30938,30984]]],["hither",[13,13,[[39,4,4,0,4,[[936,1,1,0,1],[942,1,1,1,2],[945,1,1,2,3],[950,1,1,3,4]]],[40,1,1,4,5,[[967,1,1,4,5]]],[41,3,3,5,8,[[981,1,1,5,6],[986,1,1,6,7],[991,1,1,7,8]]],[42,2,2,8,10,[[1002,1,1,8,9],[1016,1,1,9,10]]],[43,1,1,10,11,[[1026,1,1,10,11]]],[65,2,2,11,13,[[1170,1,1,11,12],[1177,1,1,12,13]]]],[23374,23615,23717,23884,24643,25342,25574,25758,26282,26894,27237,30769,30884]]],["place",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[23495,25940]]],["there",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23980]]]]},{"k":"G5603","v":[["*",[7,5,[[48,1,1,0,1,[[1101,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]],[65,5,3,2,5,[[1171,1,1,2,3],[1180,2,1,3,4],[1181,2,1,4,5]]]],[29323,29533,30788,30929,30949]]],["song",[5,3,[[65,5,3,0,3,[[1171,1,1,0,1],[1180,2,1,1,2],[1181,2,1,2,3]]]],[30788,30929,30949]]],["songs",[2,2,[[48,1,1,0,1,[[1101,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29323,29533]]]]},{"k":"G5604","v":[["*",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]],[51,1,1,3,4,[[1115,1,1,3,4]]]],[23965,24725,26973,29624]]],["pains",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26973]]],["sorrows",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23965,24725]]],["travail",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29624]]]]},{"k":"G5605","v":[["*",[3,3,[[47,2,2,0,2,[[1094,2,2,0,2]]],[65,1,1,2,3,[[1178,1,1,2,3]]]],[29150,29158,30893]]],["birth",[2,2,[[47,1,1,0,1,[[1094,1,1,0,1]]],[65,1,1,1,2,[[1178,1,1,1,2]]]],[29150,30893]]],["travailest",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29158]]]]},{"k":"G5606","v":[["shoulders",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]]],[23922,25593]]]]},{"k":"G5607","v":[["*",[153,148,[[39,5,5,0,5,[[929,1,1,0,1],[934,1,1,1,2],[935,1,1,2,3],[940,2,2,3,5]]],[40,7,7,5,12,[[958,1,1,5,6],[961,1,1,6,7],[964,1,1,7,8],[967,1,1,8,9],[969,1,1,9,10],[970,2,2,10,12]]],[41,15,15,12,27,[[974,1,1,12,13],[975,1,1,13,14],[978,1,1,14,15],[980,1,1,15,16],[983,1,1,16,17],[984,1,1,17,18],[985,1,1,18,19],[986,1,1,19,20],[992,1,1,20,21],[994,2,2,21,23],[995,2,2,23,25],[996,2,2,25,27]]],[42,26,25,27,52,[[997,2,2,27,29],[999,3,3,29,32],[1000,2,1,32,33],[1001,1,1,33,34],[1002,2,2,34,36],[1003,1,1,36,37],[1004,1,1,37,38],[1005,2,2,38,40],[1006,2,2,40,42],[1007,3,3,42,45],[1008,1,1,45,46],[1014,2,2,46,48],[1015,1,1,48,49],[1016,2,2,49,51],[1017,1,1,51,52]]],[43,30,30,52,82,[[1022,1,1,52,53],[1024,3,3,53,56],[1025,1,1,56,57],[1026,3,3,57,60],[1028,1,1,60,61],[1030,1,1,61,62],[1031,1,1,62,63],[1032,1,1,63,64],[1033,2,2,64,66],[1035,1,1,66,67],[1036,3,3,67,70],[1037,1,1,70,71],[1038,1,1,71,72],[1039,2,2,72,74],[1041,2,2,74,76],[1042,1,1,76,77],[1043,1,1,77,78],[1044,2,2,78,80],[1045,2,2,80,82]]],[44,18,17,82,99,[[1046,1,1,82,83],[1049,3,2,83,85],[1050,4,4,85,89],[1052,1,1,89,90],[1053,3,3,90,93],[1054,1,1,93,94],[1056,1,1,94,95],[1057,1,1,95,96],[1058,1,1,96,97],[1061,2,2,97,99]]],[45,8,7,99,106,[[1062,3,2,99,101],[1069,2,2,101,103],[1070,2,2,103,105],[1073,1,1,105,106]]],[46,7,6,106,112,[[1078,2,1,106,107],[1082,1,1,107,108],[1085,2,2,108,110],[1088,2,2,110,112]]],[47,4,4,112,116,[[1092,1,1,112,113],[1094,2,2,113,115],[1096,1,1,115,116]]],[48,8,7,116,123,[[1097,1,1,116,117],[1098,5,5,117,122],[1100,2,1,122,123]]],[49,2,2,123,125,[[1103,2,2,123,125]]],[50,3,3,125,128,[[1107,1,1,125,126],[1108,1,1,126,127],[1110,1,1,127,128]]],[51,2,2,128,130,[[1112,1,1,128,129],[1115,1,1,129,130]]],[52,1,1,130,131,[[1117,1,1,130,131]]],[53,3,3,131,134,[[1119,1,1,131,132],[1120,1,1,132,133],[1121,1,1,133,134]]],[54,1,1,134,135,[[1126,1,1,134,135]]],[55,2,2,135,137,[[1129,1,1,135,136],[1131,1,1,136,137]]],[56,1,1,137,138,[[1132,1,1,137,138]]],[57,5,5,138,143,[[1133,1,1,138,139],[1135,1,1,139,140],[1137,1,1,140,141],[1140,1,1,141,142],[1145,1,1,142,143]]],[58,1,1,143,144,[[1148,1,1,143,144]]],[60,2,2,144,146,[[1156,1,1,144,145],[1157,1,1,145,146]]],[65,2,2,146,148,[[1171,1,1,146,147],[1182,1,1,147,148]]]],[23163,23312,23327,23519,23523,24286,24389,24501,24651,24733,24757,24820,24978,25048,25149,25288,25428,25487,25534,25585,25815,25867,25917,25942,25947,25997,26035,26062,26092,26124,26133,26151,26165,26223,26303,26328,26378,26428,26465,26480,26493,26514,26554,26572,26574,26597,26811,26822,26863,26868,26886,26909,27076,27118,27121,27128,27199,27218,27254,27255,27308,27363,27427,27474,27486,27504,27581,27616,27620,27621,27660,27672,27709,27713,27779,27793,27819,27826,27857,27864,27916,27924,27937,28032,28039,28053,28055,28057,28060,28114,28121,28124,28144,28160,28226,28248,28267,28337,28347,28365,28391,28534,28537,28559,28561,28646,28801,28881,28941,28954,29008,29020,29084,29132,29139,29191,29207,29230,29233,29234,29242,29249,29290,29362,29368,29486,29507,29553,29584,29629,29666,29709,29718,29741,29846,29908,29934,29947,29966,29997,30038,30096,30244,30323,30497,30511,30784,30959]]],["+",[7,7,[[40,1,1,0,1,[[967,1,1,0,1]]],[43,3,3,1,4,[[1036,1,1,1,2],[1045,2,2,2,4]]],[46,1,1,4,5,[[1085,1,1,4,5]]],[48,1,1,5,6,[[1098,1,1,5,6]]],[65,1,1,6,7,[[1171,1,1,6,7]]]],[24651,27621,27916,27924,28954,29242,30784]]],["am",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26165]]],["and",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27581]]],["are",[20,19,[[44,4,4,0,4,[[1053,3,3,0,3],[1061,1,1,3,4]]],[45,2,1,4,5,[[1062,2,1,4,5]]],[46,3,3,5,8,[[1078,1,1,5,6],[1082,1,1,6,7],[1088,1,1,7,8]]],[47,1,1,8,9,[[1094,1,1,8,9]]],[48,1,1,9,10,[[1097,1,1,9,10]]],[49,2,2,10,12,[[1103,2,2,10,12]]],[50,1,1,12,13,[[1110,1,1,12,13]]],[51,2,2,13,15,[[1112,1,1,13,14],[1115,1,1,14,15]]],[53,1,1,15,16,[[1120,1,1,15,16]]],[54,1,1,16,17,[[1126,1,1,16,17]]],[57,1,1,17,18,[[1140,1,1,17,18]]],[60,1,1,18,19,[[1157,1,1,18,19]]]],[28121,28124,28144,28347,28391,28801,28881,29008,29139,29207,29362,29368,29553,29584,29629,29718,29846,30096,30511]]],["art",[2,2,[[43,1,1,0,1,[[1025,1,1,0,1]]],[65,1,1,1,2,[[1182,1,1,1,2]]]],[27199,30959]]],["be",[7,7,[[43,1,1,0,1,[[1043,1,1,0,1]]],[44,3,3,1,4,[[1046,1,1,1,2],[1049,1,1,2,3],[1058,1,1,3,4]]],[45,1,1,4,5,[[1070,1,1,4,5]]],[47,1,1,5,6,[[1094,1,1,5,6]]],[58,1,1,6,7,[[1148,1,1,6,7]]]],[27826,27937,28039,28267,28559,29132,30323]]],["been",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27779]]],["being",[37,37,[[39,3,3,0,3,[[929,1,1,0,1],[935,1,1,1,2],[940,1,1,2,3]]],[40,2,2,3,5,[[964,1,1,3,4],[970,1,1,4,5]]],[41,5,5,5,10,[[974,1,1,5,6],[975,1,1,6,7],[985,1,1,7,8],[992,1,1,8,9],[994,1,1,9,10]]],[42,10,10,10,20,[[1000,1,1,10,11],[1001,1,1,11,12],[1002,1,1,12,13],[1003,1,1,13,14],[1006,1,1,14,15],[1007,2,2,15,17],[1014,1,1,17,18],[1015,1,1,18,19],[1016,1,1,19,20]]],[43,3,3,20,23,[[1032,1,1,20,21],[1033,1,1,21,22],[1044,1,1,22,23]]],[44,1,1,23,24,[[1056,1,1,23,24]]],[45,3,3,24,27,[[1069,1,1,24,25],[1070,1,1,25,26],[1073,1,1,26,27]]],[47,1,1,27,28,[[1092,1,1,27,28]]],[48,2,2,28,30,[[1098,1,1,28,29],[1100,1,1,29,30]]],[50,1,1,30,31,[[1108,1,1,30,31]]],[53,1,1,31,32,[[1121,1,1,31,32]]],[55,2,2,32,34,[[1129,1,1,32,33],[1131,1,1,33,34]]],[56,1,1,34,35,[[1132,1,1,34,35]]],[57,2,2,35,37,[[1133,1,1,35,36],[1145,1,1,36,37]]]],[23163,23327,23523,24501,24757,24978,25048,25534,25815,25867,26165,26223,26328,26378,26514,26572,26574,26811,26863,26886,27474,27504,27857,28226,28534,28561,28646,29084,29249,29290,29507,29741,29908,29934,29947,29966,30244]]],["had",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[24389,27121]]],["having",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25288]]],["is",[27,27,[[39,2,2,0,2,[[934,1,1,0,1],[940,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,3,3,3,6,[[983,1,1,3,4],[984,1,1,4,5],[986,1,1,5,6]]],[42,7,7,6,13,[[997,1,1,6,7],[999,3,3,7,10],[1002,1,1,10,11],[1004,1,1,11,12],[1014,1,1,12,13]]],[43,2,2,13,15,[[1022,1,1,13,14],[1036,1,1,14,15]]],[44,5,5,15,20,[[1050,1,1,15,16],[1052,1,1,16,17],[1054,1,1,17,18],[1057,1,1,18,19],[1061,1,1,19,20]]],[45,2,2,20,22,[[1062,1,1,20,21],[1069,1,1,21,22]]],[46,2,2,22,24,[[1078,1,1,22,23],[1088,1,1,23,24]]],[47,1,1,24,25,[[1096,1,1,24,25]]],[48,2,2,25,27,[[1098,1,1,25,26],[1100,1,1,26,27]]]],[23312,23519,24733,25428,25487,25585,26062,26124,26133,26151,26303,26428,26822,27076,27620,28060,28114,28160,28248,28337,28365,28537,28801,29020,29191,29233,29290]]],["of",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27819]]],["the",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26493]]],["this",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27218]]],["was",[22,22,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,4,4,1,5,[[994,1,1,1,2],[995,1,1,2,3],[996,2,2,3,5]]],[42,3,3,5,8,[[1005,1,1,5,6],[1008,1,1,6,7],[1016,1,1,7,8]]],[43,9,9,8,17,[[1024,2,2,8,10],[1026,2,2,10,12],[1030,1,1,12,13],[1031,1,1,13,14],[1038,1,1,14,15],[1041,1,1,15,16],[1044,1,1,16,17]]],[44,1,1,17,18,[[1049,1,1,17,18]]],[46,1,1,18,19,[[1085,1,1,18,19]]],[52,1,1,19,20,[[1117,1,1,19,20]]],[53,1,1,20,21,[[1119,1,1,20,21]]],[57,1,1,21,22,[[1135,1,1,21,22]]]],[24820,25917,25942,25997,26035,26465,26597,26868,27118,27128,27254,27255,27363,27427,27672,27793,27864,28032,28941,29666,29709,29997]]],["wast",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26092]]],["were",[21,21,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,2,2,1,3,[[978,1,1,1,2],[995,1,1,2,3]]],[42,3,3,3,6,[[1005,1,1,3,4],[1007,1,1,4,5],[1017,1,1,5,6]]],[43,6,6,6,12,[[1028,1,1,6,7],[1033,1,1,7,8],[1036,1,1,8,9],[1037,1,1,9,10],[1039,2,2,10,12]]],[44,4,4,12,16,[[1049,1,1,12,13],[1050,3,3,13,16]]],[48,2,2,16,18,[[1098,2,2,16,18]]],[50,1,1,18,19,[[1107,1,1,18,19]]],[57,1,1,19,20,[[1137,1,1,19,20]]],[60,1,1,20,21,[[1156,1,1,20,21]]]],[24286,25149,25947,26480,26554,26909,27308,27486,27616,27660,27709,27713,28039,28053,28055,28057,29230,29234,29486,30038,30497]]]]},{"k":"G5608","v":[["bought",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27132]]]]},{"k":"G5609","v":[["egg",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25417]]]]},{"k":"G5610","v":[["*",[108,100,[[39,23,22,0,22,[[936,1,1,0,1],[937,1,1,1,2],[938,1,1,2,3],[942,1,1,3,4],[943,1,1,4,5],[945,1,1,5,6],[946,1,1,6,7],[948,5,5,7,12],[952,4,4,12,16],[953,1,1,16,17],[954,3,3,17,20],[955,3,2,20,22]]],[40,12,10,22,32,[[962,2,1,22,23],[967,1,1,23,24],[969,2,2,24,26],[970,3,3,26,29],[971,4,3,29,32]]],[41,16,15,32,47,[[973,1,1,32,33],[974,1,1,33,34],[979,1,1,34,35],[982,1,1,35,36],[984,4,4,36,40],[986,1,1,40,41],[992,1,1,41,42],[994,3,3,42,45],[995,2,1,45,46],[996,1,1,46,47]]],[42,26,24,47,71,[[997,1,1,47,48],[998,1,1,48,49],[1000,6,5,49,54],[1001,3,3,54,57],[1003,1,1,57,58],[1004,1,1,58,59],[1007,1,1,59,60],[1008,3,2,60,62],[1009,1,1,62,63],[1012,5,5,63,68],[1013,1,1,68,69],[1015,2,2,69,71]]],[43,12,11,71,82,[[1019,1,1,71,72],[1020,1,1,72,73],[1022,1,1,73,74],[1027,4,3,74,77],[1033,2,2,77,79],[1036,1,1,79,80],[1039,1,1,80,81],[1040,1,1,81,82]]],[44,1,1,82,83,[[1058,1,1,82,83]]],[45,2,2,83,85,[[1065,1,1,83,84],[1076,1,1,84,85]]],[46,1,1,85,86,[[1084,1,1,85,86]]],[47,1,1,86,87,[[1092,1,1,86,87]]],[51,1,1,87,88,[[1112,1,1,87,88]]],[56,1,1,88,89,[[1132,1,1,88,89]]],[61,2,1,89,90,[[1160,2,1,89,90]]],[65,10,10,90,100,[[1169,2,2,90,92],[1175,1,1,92,93],[1177,1,1,93,94],[1180,2,2,94,96],[1183,1,1,96,97],[1184,3,3,97,100]]]],[23358,23401,23436,23612,23661,23718,23728,23795,23797,23798,23801,23804,23993,23999,24001,24007,24021,24094,24099,24109,24174,24175,24442,24651,24728,24749,24789,24791,24795,24851,24859,24860,24903,25011,25216,25384,25471,25498,25499,25505,25570,25798,25878,25917,25923,25979,26024,26083,26099,26162,26177,26179,26208,26209,26235,26238,26245,26358,26401,26532,26603,26607,26631,26728,26730,26747,26751,26758,26760,26839,26852,26964,26997,27066,27262,27268,27289,27501,27516,27619,27717,27757,28277,28444,28748,28924,29086,29587,29953,30568,30749,30756,30855,30885,30933,30941,30987,31003,31010,31012]]],["+",[5,4,[[40,2,1,0,1,[[962,2,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[994,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]]],[24442,25011,25923,29587]]],["eventide",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24651]]],["hour",[85,79,[[39,21,20,0,20,[[936,1,1,0,1],[937,1,1,1,2],[938,1,1,2,3],[943,1,1,3,4],[945,1,1,4,5],[948,5,5,5,10],[952,4,4,10,14],[953,1,1,14,15],[954,3,3,15,18],[955,3,2,18,20]]],[40,9,8,20,28,[[969,2,2,20,22],[970,3,3,22,25],[971,4,3,25,28]]],[41,12,11,28,39,[[979,1,1,28,29],[982,1,1,29,30],[984,4,4,30,34],[992,1,1,34,35],[994,2,2,35,37],[995,2,1,37,38],[996,1,1,38,39]]],[42,21,19,39,58,[[997,1,1,39,40],[998,1,1,40,41],[1000,6,5,41,46],[1001,2,2,46,48],[1003,1,1,48,49],[1004,1,1,49,50],[1008,3,2,50,52],[1009,1,1,52,53],[1012,2,2,53,55],[1013,1,1,55,56],[1015,2,2,56,58]]],[43,10,9,58,67,[[1019,1,1,58,59],[1020,1,1,59,60],[1027,4,3,60,63],[1033,2,2,63,65],[1039,1,1,65,66],[1040,1,1,66,67]]],[45,2,2,67,69,[[1065,1,1,67,68],[1076,1,1,68,69]]],[47,1,1,69,70,[[1092,1,1,69,70]]],[65,9,9,70,79,[[1169,2,2,70,72],[1175,1,1,72,73],[1177,1,1,73,74],[1180,1,1,74,75],[1183,1,1,75,76],[1184,3,3,76,79]]]],[23358,23401,23436,23661,23718,23795,23797,23798,23801,23804,23993,23999,24001,24007,24021,24094,24099,24109,24174,24175,24728,24749,24789,24791,24795,24851,24859,24860,25216,25384,25471,25498,25499,25505,25798,25878,25917,25979,26024,26083,26099,26162,26177,26179,26208,26209,26235,26238,26358,26401,26603,26607,26631,26747,26758,26760,26839,26852,26964,26997,27262,27268,27289,27501,27516,27717,27757,28444,28748,29086,30749,30756,30855,30885,30933,30987,31003,31010,31012]]],["hours",[3,3,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,2,2,1,3,[[1022,1,1,1,2],[1036,1,1,2,3]]]],[26532,27066,27619]]],["season",[3,3,[[42,1,1,0,1,[[1001,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]]],[26245,28924,29953]]],["time",[11,10,[[39,2,2,0,2,[[942,1,1,0,1],[946,1,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[986,1,1,3,4]]],[42,3,3,4,7,[[1012,3,3,4,7]]],[44,1,1,7,8,[[1058,1,1,7,8]]],[61,2,1,8,9,[[1160,2,1,8,9]]],[65,1,1,9,10,[[1180,1,1,9,10]]]],[23612,23728,24903,25570,26728,26730,26751,28277,30568,30941]]]]},{"k":"G5611","v":[["*",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[43,2,2,1,3,[[1020,2,2,1,3]]],[44,1,1,3,4,[[1055,1,1,3,4]]]],[23945,26998,27006,28203]]],["Beautiful",[2,2,[[43,2,2,0,2,[[1020,2,2,0,2]]]],[26998,27006]]],["beautiful",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]]],[23945,28203]]]]},{"k":"G5612","v":[["roaring",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30473]]]]},{"k":"G5613","v":[["*",[491,433,[[39,36,30,0,30,[[929,1,1,0,1],[934,3,3,1,4],[935,2,1,4,5],[936,1,1,5,6],[938,5,2,6,8],[940,1,1,8,9],[941,1,1,9,10],[942,1,1,10,11],[943,1,1,11,12],[945,3,2,12,14],[946,3,3,14,17],[947,1,1,17,18],[948,1,1,18,19],[949,2,2,19,21],[950,2,2,21,23],[954,4,3,23,26],[955,1,1,26,27],[956,3,3,27,30]]],[40,24,23,30,53,[[957,3,2,30,32],[959,1,1,32,33],[960,4,4,33,37],[961,1,1,37,38],[962,2,2,38,40],[963,1,1,40,41],[964,2,2,41,43],[965,2,2,43,45],[966,2,2,45,47],[968,4,4,47,51],[969,1,1,51,52],[970,1,1,52,53]]],[41,54,52,53,105,[[973,3,3,53,56],[974,3,3,56,59],[975,2,2,59,61],[976,1,1,61,62],[977,1,1,62,63],[978,4,4,63,67],[979,1,1,67,68],[980,2,2,68,70],[981,1,1,70,71],[982,3,3,71,74],[983,4,4,74,78],[984,2,2,78,80],[986,1,1,80,81],[987,2,2,81,83],[988,1,1,83,84],[989,2,2,84,86],[990,2,2,86,88],[991,3,3,88,91],[992,1,1,91,92],[993,1,1,92,93],[994,7,6,93,99],[995,3,3,99,102],[996,4,3,102,105]]],[42,25,24,105,129,[[997,2,2,105,107],[998,2,2,107,109],[1000,2,2,109,111],[1002,3,3,111,114],[1003,3,2,114,116],[1004,1,1,116,117],[1007,6,6,117,123],[1011,1,1,123,124],[1014,1,1,124,125],[1015,1,1,125,126],[1016,1,1,126,127],[1017,2,2,127,129]]],[43,61,60,129,189,[[1018,2,2,129,131],[1019,1,1,131,132],[1020,2,2,132,134],[1022,2,2,134,136],[1024,3,3,136,139],[1025,3,2,139,141],[1026,1,1,141,142],[1027,6,6,142,148],[1028,3,3,148,151],[1030,5,5,151,156],[1031,1,1,156,157],[1033,3,3,157,160],[1034,5,5,160,165],[1035,1,1,165,166],[1036,3,3,166,169],[1037,4,4,169,173],[1038,3,3,173,176],[1039,3,3,176,179],[1040,3,3,179,182],[1042,2,2,182,184],[1044,3,3,184,187],[1045,2,2,187,189]]],[44,22,21,189,210,[[1046,2,2,189,191],[1048,1,1,191,192],[1049,1,1,192,193],[1050,3,3,193,196],[1051,1,1,196,197],[1053,1,1,197,198],[1054,5,4,198,202],[1055,1,1,202,203],[1056,2,2,203,205],[1057,1,1,205,206],[1058,2,2,206,208],[1060,2,2,208,210]]],[45,41,31,210,241,[[1064,6,4,210,214],[1065,6,6,214,220],[1066,2,1,220,221],[1068,10,7,221,228],[1069,1,1,228,229],[1070,7,5,229,234],[1071,2,2,234,236],[1072,1,1,236,237],[1073,1,1,237,238],[1074,3,1,238,239],[1075,1,1,239,240],[1077,1,1,240,241]]],[46,29,23,241,264,[[1079,3,1,241,242],[1080,2,2,242,244],[1082,2,2,244,246],[1083,9,5,246,251],[1084,2,2,251,253],[1086,1,1,253,254],[1087,3,3,254,257],[1088,5,5,257,262],[1090,2,2,262,264]]],[47,9,6,264,270,[[1091,1,1,264,265],[1093,2,1,265,266],[1094,4,2,266,268],[1095,1,1,268,269],[1096,1,1,269,270]]],[48,15,13,270,283,[[1098,1,1,270,271],[1099,1,1,271,272],[1101,8,7,272,279],[1102,5,4,279,283]]],[49,7,7,283,290,[[1103,2,2,283,285],[1104,5,5,285,290]]],[50,7,7,290,297,[[1108,2,2,290,292],[1109,4,4,292,296],[1110,1,1,296,297]]],[51,9,8,297,305,[[1112,6,5,297,302],[1115,3,3,302,305]]],[52,4,3,305,308,[[1117,2,2,305,307],[1118,2,1,307,308]]],[53,4,2,308,310,[[1123,4,2,308,310]]],[54,5,5,310,315,[[1125,1,1,310,311],[1126,3,3,311,314],[1127,1,1,314,315]]],[55,2,2,315,317,[[1129,2,2,315,317]]],[56,4,4,317,321,[[1132,4,4,317,321]]],[57,20,19,321,340,[[1133,1,1,321,322],[1135,6,6,322,328],[1136,1,1,328,329],[1138,1,1,329,330],[1139,1,1,330,331],[1143,3,3,331,334],[1144,4,4,334,338],[1145,3,2,338,340]]],[58,5,5,340,345,[[1146,1,1,340,341],[1147,3,3,341,344],[1150,1,1,344,345]]],[59,29,23,345,368,[[1151,4,3,345,348],[1152,10,8,348,356],[1153,4,3,356,359],[1154,8,6,359,365],[1155,3,3,365,368]]],[60,10,8,368,376,[[1156,2,2,368,370],[1157,2,2,370,372],[1158,6,4,372,376]]],[61,2,2,376,378,[[1159,1,1,376,377],[1160,1,1,377,378]]],[62,1,1,378,379,[[1164,1,1,378,379]]],[64,2,2,379,381,[[1166,2,2,379,381]]],[65,64,52,381,433,[[1167,7,5,381,386],[1168,4,3,386,389],[1169,2,2,389,391],[1170,2,2,391,393],[1171,1,1,393,394],[1172,6,5,394,399],[1174,3,3,399,402],[1175,9,6,402,408],[1176,5,4,408,412],[1178,1,1,412,413],[1179,4,3,413,416],[1180,3,2,416,418],[1181,1,1,418,419],[1182,3,3,419,422],[1183,1,1,422,423],[1184,2,2,423,425],[1185,4,2,425,427],[1186,1,1,427,428],[1187,3,3,428,431],[1188,2,2,431,433]]]],[23168,23292,23294,23311,23345,23358,23433,23442,23502,23582,23602,23661,23702,23720,23730,23731,23760,23781,23806,23852,23872,23902,23911,24073,24093,24109,24194,24198,24204,24210,24217,24237,24293,24349,24350,24354,24359,24377,24422,24441,24469,24509,24524,24541,24559,24589,24603,24698,24699,24704,24706,24751,24802,24916,24934,24937,24988,25010,25012,25029,25048,25088,25111,25150,25156,25168,25186,25207,25287,25292,25355,25366,25381,25390,25406,25407,25441,25449,25486,25517,25575,25607,25613,25621,25657,25679,25699,25705,25736,25760,25772,25816,25861,25890,25891,25895,25916,25925,25930,25949,25961,25990,25997,26023,26026,26058,26083,26104,26118,26157,26196,26269,26273,26276,26338,26374,26388,26529,26541,26543,26552,26555,26556,26705,26791,26858,26878,26906,26907,26933,26938,26964,27008,27018,27066,27083,27139,27153,27167,27208,27212,27239,27266,27270,27276,27284,27287,27297,27312,27323,27324,27380,27382,27387,27391,27395,27419,27487,27493,27498,27536,27537,27538,27545,27551,27562,27594,27606,27619,27640,27644,27646,27650,27665,27676,27691,27709,27715,27729,27745,27749,27754,27806,27810,27856,27882,27885,27903,27918,27939,27951,27998,28039,28062,28063,28065,28081,28152,28180,28182,28184,28187,28203,28211,28242,28248,28275,28279,28318,28327,28411,28415,28420,28425,28434,28440,28442,28446,28447,28451,28457,28494,28495,28504,28512,28516,28517,28518,28534,28545,28560,28561,28562,28566,28574,28582,28634,28636,28676,28711,28786,28841,28842,28846,28896,28897,28902,28906,28907,28908,28911,28930,28931,28961,28973,28980,28985,28992,29004,29005,29006,29010,29045,29050,29066,29118,29143,29145,29176,29198,29232,29256,29305,29312,29319,29326,29327,29332,29337,29342,29343,29344,29357,29369,29381,29399,29403,29406,29413,29414,29500,29514,29529,29535,29539,29540,29546,29574,29576,29577,29580,29581,29623,29625,29627,29663,29665,29693,29764,29765,29812,29830,29836,29844,29862,29897,29899,29947,29952,29954,29955,29974,29997,30000,30001,30003,30006,30010,30017,30063,30073,30181,30199,30201,30217,30219,30228,30239,30244,30258,30276,30301,30302,30305,30357,30388,30393,30398,30401,30404,30410,30411,30412,30413,30415,30424,30430,30431,30440,30456,30457,30458,30461,30462,30465,30468,30473,30477,30482,30498,30501,30512,30530,30531,30532,30538,30547,30577,30650,30679,30682,30707,30711,30712,30713,30714,30735,30741,30744,30749,30767,30769,30775,30785,30794,30804,30805,30806,30807,30828,30835,30837,30842,30843,30847,30848,30849,30857,30862,30868,30870,30871,30906,30910,30911,30919,30928,30929,30948,30957,30969,30975,30987,30999,31014,31023,31029,31046,31055,31064,31074,31081,31092]]],["+",[14,14,[[42,2,2,0,2,[[1014,1,1,0,1],[1017,1,1,1,2]]],[43,4,4,2,6,[[1034,1,1,2,3],[1035,1,1,3,4],[1036,1,1,4,5],[1042,1,1,5,6]]],[44,1,1,6,7,[[1060,1,1,6,7]]],[45,4,4,7,11,[[1068,2,2,7,9],[1070,1,1,9,10],[1072,1,1,10,11]]],[46,1,1,11,12,[[1087,1,1,11,12]]],[51,1,1,12,13,[[1112,1,1,12,13]]],[57,1,1,13,14,[[1139,1,1,13,14]]]],[26791,26907,27538,27562,27619,27806,28327,28494,28495,28545,28634,28980,29577,30073]]],["After",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27606]]],["As",[14,14,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[43,1,1,2,3,[[1039,1,1,2,3]]],[44,1,1,3,4,[[1054,1,1,3,4]]],[46,2,2,4,6,[[1083,2,2,4,6]]],[47,2,2,6,8,[[1091,1,1,6,7],[1096,1,1,7,8]]],[50,1,1,8,9,[[1108,1,1,8,9]]],[57,1,1,9,10,[[1136,1,1,9,10]]],[59,3,3,10,13,[[1151,1,1,10,11],[1152,2,2,11,13]]],[60,1,1,13,14,[[1158,1,1,13,14]]]],[24217,25029,27709,28180,28907,28908,29066,29198,29500,30017,30388,30401,30415,30538]]],["How",[3,3,[[41,1,1,0,1,[[978,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]],[44,1,1,2,3,[[1055,1,1,2,3]]]],[25150,27297,28203]]],["So",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30006]]],["When",[6,6,[[41,1,1,0,1,[[984,1,1,0,1]]],[42,5,5,1,6,[[998,1,1,1,2],[1000,1,1,2,3],[1002,1,1,3,4],[1007,2,2,4,6]]]],[25517,26104,26157,26269,26529,26556]]],["about",[12,12,[[40,2,2,0,2,[[961,1,1,0,1],[964,1,1,1,2]]],[41,2,2,2,4,[[974,1,1,2,3],[980,1,1,3,4]]],[42,3,3,4,7,[[997,1,1,4,5],[1002,1,1,5,6],[1007,1,1,6,7]]],[43,3,3,7,10,[[1018,1,1,7,8],[1022,1,1,8,9],[1030,1,1,9,10]]],[65,2,2,10,12,[[1174,1,1,10,11],[1182,1,1,11,12]]]],[24377,24509,25010,25287,26083,26276,26541,26938,27066,27380,30828,30975]]],["after",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27493]]],["and",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26858]]],["are",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27545]]],["as",[321,280,[[39,33,27,0,27,[[929,1,1,0,1],[934,2,2,1,3],[935,2,1,3,4],[936,1,1,4,5],[938,5,2,5,7],[940,1,1,7,8],[941,1,1,8,9],[942,1,1,9,10],[943,1,1,10,11],[945,3,2,11,13],[946,3,3,13,16],[947,1,1,16,17],[948,1,1,17,18],[949,1,1,18,19],[950,2,2,19,21],[954,4,3,21,24],[955,1,1,24,25],[956,2,2,25,27]]],[40,17,16,27,43,[[957,2,1,27,28],[959,1,1,28,29],[960,2,2,29,31],[962,2,2,31,33],[963,1,1,33,34],[964,1,1,34,35],[965,1,1,35,36],[966,2,2,36,38],[968,3,3,38,41],[969,1,1,41,42],[970,1,1,42,43]]],[41,30,29,43,72,[[973,2,2,43,45],[974,1,1,45,46],[975,1,1,46,47],[978,3,3,47,50],[981,1,1,50,51],[982,3,3,51,54],[983,3,3,54,57],[986,1,1,57,58],[987,2,2,58,60],[989,2,2,60,62],[990,2,2,62,64],[993,1,1,64,65],[994,6,5,65,70],[995,2,2,70,72]]],[42,5,5,72,77,[[997,1,1,72,73],[1007,2,2,73,75],[1011,1,1,75,76],[1016,1,1,76,77]]],[43,12,12,77,89,[[1019,1,1,77,78],[1024,1,1,78,79],[1025,2,2,79,81],[1027,1,1,81,82],[1028,1,1,82,83],[1030,2,2,83,85],[1033,1,1,85,86],[1034,1,1,86,87],[1039,1,1,87,88],[1040,1,1,88,89]]],[44,13,13,89,102,[[1046,1,1,89,90],[1048,1,1,90,91],[1050,3,3,91,94],[1051,1,1,94,95],[1053,1,1,95,96],[1054,2,2,96,98],[1057,1,1,98,99],[1058,2,2,99,101],[1060,1,1,101,102]]],[45,30,23,102,125,[[1064,6,4,102,106],[1065,4,4,106,110],[1066,1,1,110,111],[1068,4,3,111,114],[1069,1,1,114,115],[1070,6,4,115,119],[1071,2,2,119,121],[1073,1,1,121,122],[1074,3,1,122,123],[1075,1,1,123,124],[1077,1,1,124,125]]],[46,20,16,125,141,[[1079,3,1,125,126],[1080,2,2,126,128],[1083,7,5,128,133],[1084,1,1,133,134],[1086,1,1,134,135],[1087,1,1,135,136],[1088,4,4,136,140],[1090,1,1,140,141]]],[47,7,4,141,145,[[1093,2,1,141,142],[1094,4,2,142,144],[1095,1,1,144,145]]],[48,15,13,145,158,[[1098,1,1,145,146],[1099,1,1,146,147],[1101,8,7,147,154],[1102,5,4,154,158]]],[49,6,6,158,164,[[1103,1,1,158,159],[1104,5,5,159,164]]],[50,5,5,164,169,[[1109,4,4,164,168],[1110,1,1,168,169]]],[51,6,6,169,175,[[1112,3,3,169,172],[1115,3,3,172,175]]],[52,4,3,175,178,[[1117,2,2,175,177],[1118,2,1,177,178]]],[53,4,2,178,180,[[1123,4,2,178,180]]],[54,4,4,180,184,[[1126,3,3,180,183],[1127,1,1,183,184]]],[55,2,2,184,186,[[1129,2,2,184,186]]],[56,3,3,186,189,[[1132,3,3,186,189]]],[57,16,15,189,204,[[1133,1,1,189,190],[1135,5,5,190,195],[1138,1,1,195,196],[1143,2,2,196,198],[1144,4,4,198,202],[1145,3,2,202,204]]],[58,4,4,204,208,[[1146,1,1,204,205],[1147,3,3,205,208]]],[59,25,21,208,229,[[1151,3,2,208,210],[1152,7,7,210,217],[1153,4,3,217,220],[1154,8,6,220,226],[1155,3,3,226,229]]],[60,9,8,229,237,[[1156,2,2,229,231],[1157,2,2,231,233],[1158,5,4,233,237]]],[61,2,2,237,239,[[1159,1,1,237,238],[1160,1,1,238,239]]],[64,2,2,239,241,[[1166,2,2,239,241]]],[65,47,39,241,280,[[1167,7,5,241,246],[1168,3,2,246,248],[1169,2,2,248,250],[1170,1,1,250,251],[1171,1,1,251,252],[1172,5,4,252,256],[1175,7,6,256,262],[1176,4,4,262,266],[1178,1,1,266,267],[1179,3,2,267,269],[1180,2,1,269,270],[1182,2,2,270,272],[1183,1,1,272,273],[1184,1,1,273,274],[1185,3,2,274,276],[1186,1,1,276,277],[1187,1,1,277,278],[1188,2,2,278,280]]]],[23168,23292,23294,23345,23358,23433,23442,23502,23582,23602,23661,23702,23720,23730,23731,23760,23781,23806,23852,23902,23911,24073,24093,24109,24194,24204,24210,24237,24293,24349,24359,24422,24441,24469,24524,24541,24589,24603,24698,24704,24706,24751,24802,24916,24937,24988,25048,25156,25168,25186,25355,25366,25381,25390,25407,25441,25449,25575,25607,25613,25657,25679,25699,25705,25861,25890,25891,25895,25916,25930,25949,25961,26058,26543,26552,26705,26878,26964,27167,27208,27212,27284,27324,27387,27395,27487,27551,27729,27745,27951,27998,28062,28063,28065,28081,28152,28182,28184,28248,28275,28279,28318,28411,28415,28420,28425,28434,28440,28446,28447,28457,28504,28512,28518,28534,28560,28561,28562,28566,28574,28582,28636,28676,28711,28786,28841,28842,28846,28902,28906,28907,28908,28911,28930,28961,28973,28992,29004,29005,29010,29050,29118,29143,29145,29176,29232,29256,29305,29312,29319,29326,29327,29332,29337,29342,29343,29344,29357,29381,29399,29403,29406,29413,29414,29529,29535,29539,29540,29546,29574,29576,29581,29623,29625,29627,29663,29665,29693,29764,29765,29830,29836,29844,29862,29897,29899,29947,29954,29955,29974,29997,30000,30001,30003,30010,30063,30199,30201,30217,30219,30228,30239,30244,30258,30276,30301,30302,30305,30393,30398,30404,30410,30411,30412,30413,30415,30424,30430,30431,30440,30456,30457,30458,30461,30462,30465,30468,30473,30477,30482,30498,30501,30512,30530,30531,30532,30538,30547,30577,30679,30682,30707,30711,30712,30713,30714,30741,30744,30749,30767,30775,30785,30804,30805,30806,30807,30842,30843,30847,30848,30849,30857,30862,30868,30870,30871,30906,30910,30919,30928,30957,30969,30987,30999,31023,31029,31046,31055,31081,31092]]],["been",[2,2,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]]],[27270,27312]]],["for",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[23872,30415]]],["how",[16,16,[[40,2,2,0,2,[[960,1,1,0,1],[968,1,1,1,2]]],[41,5,5,2,7,[[980,1,1,2,3],[994,1,1,3,4],[995,1,1,4,5],[996,2,2,5,7]]],[43,3,3,7,10,[[1027,1,1,7,8],[1028,1,1,8,9],[1037,1,1,9,10]]],[44,2,2,10,12,[[1056,2,2,10,12]]],[46,1,1,12,13,[[1084,1,1,12,13]]],[49,1,1,13,14,[[1103,1,1,13,14]]],[51,2,2,14,16,[[1112,2,2,14,16]]]],[24350,24699,25292,25925,25990,25997,26026,27287,27323,27646,28211,28242,28931,29369,29580,29581]]],["if",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29045]]],["in",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30181]]],["it",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27665]]],["like",[8,8,[[39,2,2,0,2,[[934,1,1,0,1],[956,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,1,1,3,4,[[984,1,1,3,4]]],[42,1,1,4,5,[[1003,1,1,4,5]]],[43,1,1,5,6,[[1025,1,1,5,6]]],[65,2,2,6,8,[[1184,1,1,6,7],[1187,1,1,7,8]]]],[23311,24198,24354,25486,26374,27208,31014,31064]]],["of",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27382]]],["since",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24559]]],["that",[6,6,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,3,3,1,4,[[1026,1,1,1,2],[1037,1,1,2,3],[1045,1,1,3,4]]],[44,1,1,4,5,[[1046,1,1,4,5]]],[54,1,1,5,6,[[1125,1,1,5,6]]]],[25621,27239,27650,27918,27939,29812]]],["though",[15,13,[[43,4,4,0,4,[[1020,1,1,0,1],[1040,2,2,1,3],[1044,1,1,3,4]]],[44,1,1,4,5,[[1049,1,1,4,5]]],[45,6,4,5,9,[[1065,1,1,5,6],[1066,1,1,6,7],[1068,4,2,7,9]]],[46,2,2,9,11,[[1082,1,1,9,10],[1087,1,1,10,11]]],[50,1,1,11,12,[[1108,1,1,11,12]]],[62,1,1,12,13,[[1164,1,1,12,13]]]],[27008,27749,27754,27885,28039,28451,28457,28516,28517,28897,28985,29514,30650]]],["unto",[4,4,[[43,2,2,0,2,[[1020,1,1,0,1],[1024,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]],[65,1,1,3,4,[[1168,1,1,3,4]]]],[27018,27153,28184,30735]]],["were",[20,20,[[42,2,2,0,2,[[1003,1,1,0,1],[1017,1,1,1,2]]],[43,1,1,2,3,[[1034,1,1,2,3]]],[44,1,1,3,4,[[1054,1,1,3,4]]],[45,1,1,4,5,[[1065,1,1,4,5]]],[46,1,1,5,6,[[1088,1,1,5,6]]],[56,1,1,6,7,[[1132,1,1,6,7]]],[58,1,1,7,8,[[1150,1,1,7,8]]],[65,12,12,8,20,[[1170,1,1,8,9],[1172,1,1,9,10],[1174,2,2,10,12],[1175,2,2,12,14],[1176,1,1,14,15],[1179,1,1,15,16],[1180,1,1,16,17],[1181,1,1,17,18],[1185,1,1,18,19],[1187,1,1,19,20]]]],[26338,26906,27537,28187,28442,29006,29952,30357,30769,30794,30835,30837,30847,30849,30862,30911,30929,30948,31023,31074]]],["when",[33,33,[[41,10,10,0,10,[[973,1,1,0,1],[974,1,1,1,2],[976,1,1,2,3],[977,1,1,3,4],[979,1,1,4,5],[983,1,1,5,6],[991,3,3,6,9],[992,1,1,9,10]]],[42,6,6,10,16,[[998,1,1,10,11],[1000,1,1,11,12],[1002,1,1,12,13],[1003,1,1,13,14],[1004,1,1,14,15],[1007,1,1,15,16]]],[43,17,17,16,33,[[1022,1,1,16,17],[1024,1,1,17,18],[1027,1,1,18,19],[1030,1,1,19,20],[1031,1,1,20,21],[1033,1,1,21,22],[1034,1,1,22,23],[1036,1,1,23,24],[1037,2,2,24,26],[1038,2,2,26,28],[1039,1,1,28,29],[1042,1,1,29,30],[1044,2,2,30,32],[1045,1,1,32,33]]]],[24934,25012,25088,25111,25207,25406,25736,25760,25772,25816,26118,26196,26273,26338,26388,26555,27083,27139,27266,27391,27419,27498,27536,27594,27640,27644,27676,27691,27715,27810,27856,27882,27903]]],["while",[4,3,[[41,2,1,0,1,[[996,2,1,0,1]]],[43,2,2,1,3,[[1018,1,1,1,2],[1027,1,1,2,3]]]],[26023,26933,27276]]],["wit",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28896]]]]},{"k":"G5614","v":[["Hosanna",[6,5,[[39,3,2,0,2,[[949,3,2,0,2]]],[40,2,2,2,4,[[967,2,2,2,4]]],[42,1,1,4,5,[[1008,1,1,4,5]]]],[23835,23841,24649,24650,26593]]]]},{"k":"G5615","v":[["*",[17,17,[[39,4,4,0,4,[[948,1,1,0,1],[949,2,2,1,3],[953,1,1,3,4]]],[40,2,2,4,6,[[968,1,1,4,5],[970,1,1,5,6]]],[41,3,3,6,9,[[985,1,1,6,7],[992,1,1,7,8],[994,1,1,8,9]]],[44,1,1,9,10,[[1053,1,1,9,10]]],[45,1,1,10,11,[[1072,1,1,10,11]]],[53,4,4,11,15,[[1120,1,1,11,12],[1121,2,2,12,14],[1123,1,1,14,15]]],[55,2,2,15,17,[[1130,2,2,15,17]]]],[23797,23856,23862,24025,24694,24785,25521,25810,25884,28142,28625,29725,29739,29742,29788,29911,29914]]],["Likewise",[5,5,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[44,1,1,2,3,[[1053,1,1,2,3]]],[53,2,2,3,5,[[1121,1,1,3,4],[1123,1,1,4,5]]]],[24785,25884,28142,29739,29788]]],["likewise",[8,8,[[39,4,4,0,4,[[948,1,1,0,1],[949,2,2,1,3],[953,1,1,3,4]]],[40,1,1,4,5,[[968,1,1,4,5]]],[41,1,1,5,6,[[985,1,1,5,6]]],[55,2,2,6,8,[[1130,2,2,6,8]]]],[23797,23856,23862,24025,24694,25521,29911,29914]]],["manner",[3,3,[[41,1,1,0,1,[[992,1,1,0,1]]],[45,1,1,1,2,[[1072,1,1,1,2]]],[53,1,1,2,3,[[1120,1,1,2,3]]]],[25810,28625,29725]]],["so",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29742]]]]},{"k":"G5616","v":[["*",[34,34,[[39,5,5,0,5,[[931,1,1,0,1],[937,1,1,1,2],[942,1,1,2,3],[956,2,2,3,5]]],[40,3,3,5,8,[[957,1,1,5,6],[962,1,1,6,7],[965,1,1,7,8]]],[41,10,10,8,18,[[973,1,1,8,9],[975,2,2,9,11],[981,2,2,11,13],[994,3,3,13,16],[995,1,1,16,17],[996,1,1,17,18]]],[42,5,5,18,23,[[997,1,1,18,19],[1000,1,1,19,20],[1002,1,1,20,21],[1015,2,2,21,23]]],[43,8,8,23,31,[[1019,2,2,23,25],[1021,1,1,25,26],[1022,1,1,26,27],[1023,1,1,27,28],[1026,1,1,28,29],[1027,1,1,29,30],[1036,1,1,30,31]]],[57,2,2,31,33,[[1133,1,1,31,32],[1143,1,1,32,33]]],[65,1,1,33,34,[[1167,1,1,33,34]]]],[23208,23415,23618,24198,24199,24225,24451,24564,24949,25047,25048,25315,25329,25905,25908,25923,25979,26002,26076,26162,26267,26839,26864,26952,26990,27026,27095,27116,27234,27262,27592,29975,30184,30711]]],["about",[18,18,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,7,7,2,9,[[973,1,1,2,3],[975,1,1,3,4],[981,2,2,4,6],[994,2,2,6,8],[995,1,1,8,9]]],[42,4,4,9,13,[[1000,1,1,9,10],[1002,1,1,10,11],[1015,2,2,11,13]]],[43,5,5,13,18,[[1019,1,1,13,14],[1021,1,1,14,15],[1022,1,1,15,16],[1027,1,1,16,17],[1036,1,1,17,18]]]],[23618,24451,24949,25048,25315,25329,25905,25923,25979,26162,26267,26839,26864,26990,27026,27095,27262,27592]]],["as",[8,8,[[39,3,3,0,3,[[937,1,1,0,1],[956,2,2,1,3]]],[40,1,1,3,4,[[965,1,1,3,4]]],[41,1,1,4,5,[[996,1,1,4,5]]],[43,1,1,5,6,[[1019,1,1,5,6]]],[57,2,2,6,8,[[1133,1,1,6,7],[1143,1,1,7,8]]]],[23415,24198,24199,24564,26002,26952,29975,30184]]],["been",[2,2,[[43,2,2,0,2,[[1023,1,1,0,1],[1026,1,1,1,2]]]],[27116,27234]]],["like",[5,5,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[975,1,1,2,3]]],[42,1,1,3,4,[[997,1,1,3,4]]],[65,1,1,4,5,[[1167,1,1,4,5]]]],[23208,24225,25047,26076,30711]]],["were",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25908]]]]},{"k":"G5617","v":[["Osee",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28180]]]]},{"k":"G5618","v":[["*",[42,42,[[39,14,14,0,14,[[933,1,1,0,1],[934,4,4,1,5],[940,1,1,5,6],[941,1,1,6,7],[946,1,1,7,8],[948,1,1,8,9],[952,3,3,9,12],[953,2,2,12,14]]],[41,2,2,14,16,[[989,1,1,14,15],[990,1,1,15,16]]],[42,2,2,16,18,[[1001,2,2,16,18]]],[43,3,3,18,21,[[1019,1,1,18,19],[1020,1,1,19,20],[1028,1,1,20,21]]],[44,6,6,21,27,[[1050,3,3,21,24],[1051,2,2,24,26],[1056,1,1,26,27]]],[45,4,4,27,31,[[1069,1,1,27,28],[1072,1,1,28,29],[1076,1,1,29,30],[1077,1,1,30,31]]],[46,3,3,31,34,[[1078,1,1,31,32],[1085,1,1,32,33],[1086,1,1,33,34]]],[47,1,1,34,35,[[1094,1,1,34,35]]],[48,1,1,35,36,[[1101,1,1,35,36]]],[51,1,1,36,37,[[1115,1,1,36,37]]],[57,3,3,37,40,[[1136,1,1,37,38],[1139,1,1,38,39],[1141,1,1,39,40]]],[58,1,1,40,41,[[1147,1,1,40,41]]],[65,1,1,41,42,[[1176,1,1,41,42]]]],[23282,23284,23287,23289,23298,23529,23579,23744,23820,23984,23994,23995,24022,24040,25675,25699,26231,26236,26951,27013,27322,28059,28066,28068,28072,28087,28239,28532,28612,28740,28777,28807,28939,28961,29160,29328,29624,30024,30091,30130,30319,30864]]],["+",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27322]]],["As",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23579]]],["as",[40,40,[[39,13,13,0,13,[[933,1,1,0,1],[934,4,4,1,5],[940,1,1,5,6],[946,1,1,6,7],[948,1,1,7,8],[952,3,3,8,11],[953,2,2,11,13]]],[41,2,2,13,15,[[989,1,1,13,14],[990,1,1,14,15]]],[42,2,2,15,17,[[1001,2,2,15,17]]],[43,2,2,17,19,[[1019,1,1,17,18],[1020,1,1,18,19]]],[44,6,6,19,25,[[1050,3,3,19,22],[1051,2,2,22,24],[1056,1,1,24,25]]],[45,4,4,25,29,[[1069,1,1,25,26],[1072,1,1,26,27],[1076,1,1,27,28],[1077,1,1,28,29]]],[46,3,3,29,32,[[1078,1,1,29,30],[1085,1,1,30,31],[1086,1,1,31,32]]],[47,1,1,32,33,[[1094,1,1,32,33]]],[48,1,1,33,34,[[1101,1,1,33,34]]],[51,1,1,34,35,[[1115,1,1,34,35]]],[57,3,3,35,38,[[1136,1,1,35,36],[1139,1,1,36,37],[1141,1,1,37,38]]],[58,1,1,38,39,[[1147,1,1,38,39]]],[65,1,1,39,40,[[1176,1,1,39,40]]]],[23282,23284,23287,23289,23298,23529,23744,23820,23984,23994,23995,24022,24040,25675,25699,26231,26236,26951,27013,28059,28066,28068,28072,28087,28239,28532,28612,28740,28777,28807,28939,28961,29160,29328,29624,30024,30091,30130,30319,30864]]]]},{"k":"G5619","v":[["as",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28726]]]]},{"k":"G5620","v":[["*",[83,83,[[39,15,15,0,15,[[936,2,2,0,2],[938,1,1,2,3],[940,2,2,3,5],[941,3,3,5,8],[943,2,2,8,10],[947,1,1,10,11],[951,1,1,11,12],[952,1,1,12,13],[955,2,2,13,15]]],[40,13,13,15,28,[[957,2,2,15,17],[958,3,3,17,20],[959,2,2,20,22],[960,3,3,22,25],[965,1,1,25,26],[966,1,1,26,27],[971,1,1,27,28]]],[41,3,3,28,31,[[977,1,1,28,29],[981,1,1,29,30],[984,1,1,30,31]]],[42,1,1,31,32,[[999,1,1,31,32]]],[43,8,8,32,40,[[1018,1,1,32,33],[1022,1,1,33,34],[1031,1,1,34,35],[1032,1,1,35,36],[1033,1,1,36,37],[1036,3,3,37,40]]],[44,5,5,40,45,[[1052,3,3,40,43],[1058,1,1,43,44],[1060,1,1,44,45]]],[45,14,14,45,59,[[1062,1,1,45,46],[1064,2,2,46,48],[1065,1,1,48,49],[1066,2,2,49,51],[1068,1,1,51,52],[1071,1,1,52,53],[1072,2,2,53,55],[1074,1,1,55,56],[1075,2,2,56,58],[1076,1,1,58,59]]],[46,7,7,59,66,[[1078,1,1,59,60],[1079,1,1,60,61],[1080,1,1,61,62],[1081,1,1,62,63],[1082,2,2,63,65],[1084,1,1,65,66]]],[47,5,5,66,71,[[1092,1,1,66,67],[1093,2,2,67,69],[1094,2,2,69,71]]],[49,3,3,71,74,[[1103,1,1,71,72],[1104,1,1,72,73],[1106,1,1,73,74]]],[51,3,3,74,77,[[1111,2,2,74,76],[1114,1,1,76,77]]],[52,2,2,77,79,[[1116,1,1,77,78],[1117,1,1,78,79]]],[57,1,1,79,80,[[1145,1,1,79,80]]],[58,1,1,80,81,[[1146,1,1,80,81]]],[59,2,2,81,83,[[1151,1,1,81,82],[1154,1,1,82,83]]]],[23369,23373,23418,23501,23511,23541,23571,23593,23664,23666,23768,23949,23981,24130,24143,24242,24260,24262,24272,24288,24298,24308,24324,24355,24360,24564,24596,24831,25114,25353,25460,26136,26942,27074,27415,27481,27509,27595,27597,27601,28095,28097,28103,28268,28322,28370,28417,28431,28438,28455,28462,28525,28579,28627,28633,28667,28700,28717,28776,28808,28831,28848,28871,28893,28894,28923,29094,29111,29126,29138,29147,29374,29403,29443,29567,29568,29621,29653,29665,30247,30285,30395,30465]]],["+",[4,4,[[43,1,1,0,1,[[1036,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]],[45,1,1,2,3,[[1068,1,1,2,3]]],[46,1,1,3,4,[[1081,1,1,3,4]]]],[27597,28268,28525,28871]]],["Therefore",[7,7,[[40,1,1,0,1,[[958,1,1,0,1]]],[45,4,4,1,5,[[1064,1,1,1,2],[1065,1,1,2,3],[1066,1,1,3,4],[1076,1,1,4,5]]],[46,1,1,5,6,[[1082,1,1,5,6]]],[49,1,1,6,7,[[1106,1,1,6,7]]]],[24288,28431,28438,28462,28776,28894,29443]]],["Wherefore",[17,17,[[39,3,3,0,3,[[940,1,1,0,1],[947,1,1,1,2],[951,1,1,2,3]]],[44,2,2,3,5,[[1052,2,2,3,5]]],[45,5,5,5,10,[[1071,1,1,5,6],[1072,2,2,6,8],[1075,2,2,8,10]]],[46,1,1,10,11,[[1082,1,1,10,11]]],[47,2,2,11,13,[[1093,1,1,11,12],[1094,1,1,12,13]]],[49,1,1,13,14,[[1104,1,1,13,14]]],[51,1,1,14,15,[[1114,1,1,14,15]]],[58,1,1,15,16,[[1146,1,1,15,16]]],[59,1,1,16,17,[[1154,1,1,16,17]]]],[23501,23768,23949,28095,28103,28579,28627,28633,28700,28717,28893,29126,29138,29403,29621,30285,30465]]],["as",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]]],[23666,26942]]],["insomuch",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24143]]],["that",[45,45,[[39,8,8,0,8,[[936,2,2,0,2],[940,1,1,2,3],[941,3,3,3,6],[943,1,1,6,7],[952,1,1,7,8]]],[40,11,11,8,19,[[957,2,2,8,10],[958,2,2,10,12],[959,2,2,12,14],[960,3,3,14,17],[965,1,1,17,18],[971,1,1,18,19]]],[41,2,2,19,21,[[977,1,1,19,20],[984,1,1,20,21]]],[42,1,1,21,22,[[999,1,1,21,22]]],[43,6,6,22,28,[[1022,1,1,22,23],[1031,1,1,23,24],[1032,1,1,24,25],[1033,1,1,25,26],[1036,2,2,26,28]]],[44,2,2,28,30,[[1052,1,1,28,29],[1060,1,1,29,30]]],[45,3,3,30,33,[[1062,1,1,30,31],[1066,1,1,31,32],[1074,1,1,32,33]]],[46,4,4,33,37,[[1078,1,1,33,34],[1079,1,1,34,35],[1080,1,1,35,36],[1084,1,1,36,37]]],[47,1,1,37,38,[[1092,1,1,37,38]]],[49,1,1,38,39,[[1103,1,1,38,39]]],[51,2,2,39,41,[[1111,2,2,39,41]]],[52,2,2,41,43,[[1116,1,1,41,42],[1117,1,1,42,43]]],[57,1,1,43,44,[[1145,1,1,43,44]]],[59,1,1,44,45,[[1151,1,1,44,45]]]],[23369,23373,23511,23541,23571,23593,23664,23981,24242,24260,24262,24272,24298,24308,24324,24355,24360,24564,24831,25114,25460,26136,27074,27415,27481,27509,27595,27601,28097,28322,28370,28455,28667,28808,28831,28848,28923,29094,29374,29567,29568,29653,29665,30247,30395]]],["then",[3,3,[[40,1,1,0,1,[[966,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]],[47,1,1,2,3,[[1093,1,1,2,3]]]],[24596,28417,29111]]],["therefore",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29147]]],["to",[3,3,[[39,2,2,0,2,[[938,1,1,0,1],[955,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]]],[23418,24130,25353]]]]},{"k":"G5621","v":[["*",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,2,2,3,5,[[1014,2,2,3,5]]]],[24105,24801,25915,26795,26811]]],["+",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26795]]],["ear",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]]],[24105,24801,25915,26811]]]]},{"k":"G5622","v":[["*",[2,2,[[44,1,1,0,1,[[1048,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[27992,30688]]],["advantage",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30688]]],["profit",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[27992]]]]},{"k":"G5623","v":[["*",[15,15,[[39,3,3,0,3,[[943,1,1,0,1],[944,1,1,1,2],[955,1,1,2,3]]],[40,3,3,3,6,[[961,1,1,3,4],[963,1,1,4,5],[964,1,1,5,6]]],[41,1,1,6,7,[[981,1,1,6,7]]],[42,2,2,7,9,[[1002,1,1,7,8],[1008,1,1,8,9]]],[44,1,1,9,10,[[1047,1,1,9,10]]],[45,2,2,10,12,[[1074,1,1,10,11],[1075,1,1,11,12]]],[47,1,1,12,13,[[1095,1,1,12,13]]],[57,2,2,13,15,[[1136,1,1,13,14],[1145,1,1,14,15]]]],[23638,23698,24153,24390,24474,24536,25326,26320,26599,27987,28668,28684,29164,30016,30250]]],["+",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26599]]],["advantaged",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25326]]],["bettered",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24390]]],["prevail",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24153]]],["profit",[4,4,[[40,1,1,0,1,[[964,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]],[57,1,1,3,4,[[1136,1,1,3,4]]]],[24536,28684,29164,30016]]],["profited",[4,4,[[39,2,2,0,2,[[943,1,1,0,1],[944,1,1,1,2]]],[40,1,1,2,3,[[963,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]]],[23638,23698,24474,30250]]],["profiteth",[3,3,[[42,1,1,0,1,[[1002,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]],[45,1,1,2,3,[[1074,1,1,2,3]]]],[26320,27987,28668]]]]},{"k":"G5624","v":[["*",[4,3,[[53,2,1,0,1,[[1122,2,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]],[55,1,1,2,3,[[1131,1,1,2,3]]]],[29755,29869,29931]]],["+",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29755]]],["profitable",[3,3,[[53,1,1,0,1,[[1122,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]],[55,1,1,2,3,[[1131,1,1,2,3]]]],[29755,29869,29931]]]]}]} +{"defs":[{"k":"H1","v":["אָב","'âb","awb","A primitive word; father in a literal and immediate, or figurative and remote application: - chief, (fore-) father ([-less]), X patrimony, principal. Compare names in “Abi-”"]},{"k":"H2","v":["אַב","'ab","ab","(Chaldee); corresponding to H1: - father."]},{"k":"H3","v":["אֵב","'êb","abe","From the same as H24; a green plant: - greenness, fruit."]},{"k":"H4","v":["אֵב","'êb","abe","(Chaldee); corresponding to H3: - fruit."]},{"k":"H5","v":["אֲבַגְתָא","'ăbagthâ'","ab-ag-thaw'","Of foreign origin; Abagtha, a eunuch of Xerxes: - Abagtha."]},{"k":"H6","v":["אָבַד","'âbad","aw-bad'","A primitive root; properly to wander away, that is lose oneself; by implication to perish (causatively, destroy): - break, destroy (-uction), + not escape, fail, lose, (cause to, make) perish, spend, X and surely, take, be undone, X utterly, be void of, have no way to flee."]},{"k":"H7","v":["אֲבַד","'ăbad","ab-ad'","(Chaldee); corresponding to H6: - destroy, perish."]},{"k":"H8","v":["אֹבֵד","'ôbêd","o-bade'","Active participle of H6; (concretely) wretched or (abstractly) destruction: - perish."]},{"k":"H9","v":["אֲבֵדָה","'ăbêdâh","ab-ay-daw'","From H6; concretely something lost; abstractly destruction, that is Hades: - lost. Compare H10."]},{"k":"H10","v":["אֲבַדֳּה","'ăbaddôh","ab-ad-do'","The same as H9, miswritten for H11; a perishing: - destruction."]},{"k":"H11","v":["אֲבַדּוֹן","'ăbaddôn","ab-ad-done'","Intensively from H6; abstractly a perishing; concretely Hades: - destruction."]},{"k":"H12","v":["אַבְדָן","'abdân","ab-dawn'","From H6; a perishing: - destruction."]},{"k":"H13","v":["אָבְדָן","'obdân","ob-dawn'","From H6; a perishing: - destruction."]},{"k":"H14","v":["אָבָה","'âbâh","aw-baw'","A primitive root; to breathe after, that is (figuratively) to be acquiescent: - consent, rest content, will, be willing."]},{"k":"H15","v":["אָבֶה","'âbeh","aw-beh'","From H14; longing: - desire."]},{"k":"H16","v":["אֵבֶה","'êbeh","ay-beh'","From H14 (in the sense of bending towards); the papyrus: - swift."]},{"k":"H17","v":["אֲבוֹי","'ăbôy","ab-o'ee","From H14 (in the sense of desiring); want: - sorrow."]},{"k":"H18","v":["אֵבוּס","'êbûs","ay-booce'","From H75; a manger or stall: - crib."]},{"k":"H19","v":["אִבְחָה","'ibchâh","ib-khaw'","From an unused root (apparently meaning to turn); brandishing of a sword: - point."]},{"k":"H20","v":["אֲבַטִּיחַ","'ăbaṭṭı̂yach","ab-at-tee'-akh","Of uncertain derivation; a melon (only plural): - melon."]},{"k":"H21","v":["אֲבִי","'ăbı̂y","ab-ee'","From H1; fatherly; Abi, Hezekiah’s mother: - Abi."]},{"k":"H22","v":["אֲבִיאֵל","'ăbı̂y'êl","ab-ee-ale'","From H1 and H410; father (that is possessor) of God; Abiel, the name of two Israelites: - Abiel."]},{"k":"H23","v":["אֲבִיאָסָף","'ăbı̂y'âsâph","ab-ee-aw-sawf'","From H1 and H622; father of gathering (that is gatherer); Abiasaph, an Israelite: - Abiasaph."]},{"k":"H24","v":["אָבִיב","'âbı̂yb","aw-beeb'","From an unused root (meaning to be tender); green, that is a young ear of grain; hence the name of the month Abib or Nisan: - Abib, ear, green ears of corn."]},{"k":"H25","v":["אֲבִי גִבְעוֹן","'ăbı̂y gib‛ôn","ab-ee' ghib-one'","From H1 and H1391; father (that is founder) of Gibon; Abi-Gibon, perhaps an Israelite: - father of Gibeon."]},{"k":"H26","v":["אֲבִיגַל    אֲבִיגַיִל","'ăbı̂ygayil    'ăbı̂ygal","ab-ee-gah'yil, ab-ee-gal'","From H1 and H1524; father (that is source) of joy; Abigail or Abigal, the name of two Israelitesses: - Abigal."]},{"k":"H27","v":["אֲבִידָן","'ăbı̂ydân","ab-ee-dawn'","From H1 and H1777; father of judgment (that is judge); Abidan, an Israelite: - Abidan."]},{"k":"H28","v":["אֲבִידָע","'ăbı̂ydâ‛","ab-ee-daw'","From H1 and H3045; father of knowledge (that is knowing); Abida, a son of Abraham by Keturah: - Abida, Abidah."]},{"k":"H29","v":["אֲבִיָּהוּ    אֲבִיָּה","'ăbı̂yâh    'ăbı̂yâhû","ab-ee-yaw', ab-ee-yaw'-hoo","From H1 and H3050; father (that is worshipper) of Jah; Abijah, the name of several Israelite men and two Israelitesses: - Abiah, Abijah."]},{"k":"H30","v":["אֲבִיהוּא","'ăbı̂yhû'","ab-ee-hoo'","From H1 and H1931; father (that is worshipper) of Him (that is God); Abihu, a son of Aaron: - Abihu."]},{"k":"H31","v":["אֲבִיהוּד","'ăbı̂yhûd","ab-ee-hood'","From H1 and H1935; father (that is, possessor) of renown; Abihud, the name of two Israelites: - Abihud."]},{"k":"H32","v":["אֲבִיחַיִל    אֲבִיהַיִל","'ăbı̂yhayil    'ăbı̂ychayil","ab-ee-hah'-yil, ab-ee-khah'-yil","(More correct in its second form); from H1 and H2428; father (that is, possessor) of might; Abihail or Abichail, the name of three Israelites and two Israelitesses: - Abihail."]},{"k":"H33","v":["אֲבִי הָעֶזְרִי","'ăbı̂y hâ‛ezrı̂y","ab-ee'-haw-ez-ree'","From H44 with the article inserted; father of the Ezrite; and Abiezrite or descendant of Abiezer: - Abiezrite."]},{"k":"H34","v":["אֶבְיוֹן","'ebyôn","eb-yone'","From H14, in the sense of want (especially in feeling); destitute: - beggar, needy, poor (man)."]},{"k":"H35","v":["אֲבִיּוֹנָה","'ăbı̂yônâh","ab-ee-yo-naw'","From H14; provocative of desire; the caper berry (from its stimulative taste): - desire."]},{"k":"H36","v":["אֲבִיטוּב","'ăbı̂yṭûb","ab-ee-toob'","From H1 and H2898; father of goodness (that is, good); Abitub, an Israelite: - Abitub."]},{"k":"H37","v":["אֲבִיטַל","'ăbı̂yṭal","ab-ee-tal'","From H1 and H2919; father of dew (that is, fresh); Abital, a wife of King David: - Abital."]},{"k":"H38","v":["אֲבִיָּם","'ăbı̂yâm","ab-ee-yawm'","From H1 and H3220; father of (the) sea (that is, seaman); Abijam (or Abijah), a king of Judah: - Abijam."]},{"k":"H39","v":["אֲבִימָאֵל","'ăbı̂ymâ'êl","ab-ee-maw-ale'","From H1 and an elsewhere unused (probably foreign) word; father of Mael (apparently some Arab tribe); Abimael, a son of Joktan: - Abimael."]},{"k":"H40","v":["אֲבִימֶלֶךְ","'ăbı̂ymelek","ab-ee-mel'-ek","From H1 and H4428; father of (the) king; Abimelek, the name of two Philistine kings and of two Israelites: - Abimelech."]},{"k":"H41","v":["אֲבִינָדָב","'ăbı̂ynâdâb","ab-ee-naw-dawb'","From H1 and H5068; father of generosity (that is, liberal); Abinadab, the name of four Israelites: - Abinadab."]},{"k":"H42","v":["אֲבִינֹעַם","'ăbı̂ynô‛am","ab-ee-no'-am","From H1 and H5278; father of pleasantness (that is, gracious); Abinoam, an Israelite: - Abinoam."]},{"k":"H43","v":["אֶבְיָסָף","'ebyâsâph","eb-yaw-sawf'","Construction from H23; Ebjasaph, an Israelite: - Ebiasaph."]},{"k":"H44","v":["אֲבִיעֶזֶר","'ăbı̂y‛ezer","ab-ee-ay'-zer","From H1 and H5829; father of help (that is, helpful); Abiezer, the name of two Israelites: - Abiezer."]},{"k":"H45","v":["אֲבִי־עַלבוֹן","'ăbı̂y-‛albôn","ab-ee al-bone'","From H1 and an unused root of uncertain derivation; probably father of strength (that is, valiant); Abialbon, an Israelite: - Abialbon."]},{"k":"H46","v":["אָבִיר","'âbı̂yr","aw-beer'","From H82; mighty (spoken of God): - mighty (one)."]},{"k":"H47","v":["אַבִּיר","'abbı̂yr","ab-beer'","For H46: - angel, bull, chiefest, mighty (one), stout [-hearted], strong (one), valiant."]},{"k":"H48","v":["אֲבִירָם","'ăbı̂yrâm","ab-ee-rawm'","From H1 and H7311; father of height (that is, lofty); Abiram, the name of two Israelites: - Abiram."]},{"k":"H49","v":["אֲבִישַׁג","'ăbı̂yshag","ab-ee-shag'","From H1 and H7686; father of error (that is, blundering); Abishag, a concubine of David: - Abishag."]},{"k":"H50","v":["אֲבִישׁוּעַ","'ăbı̂yshûa‛","ab-ee-shoo'-ah","From H1 and H7171; father of plenty (that is, prosperous); Abishua, the name of two Israelites: - Abishua."]},{"k":"H51","v":["אֲבִישׁוּר","'ăbı̂yshûr","ab-ee-shoor'","From H1 and H7791; father of (the) wall (that is, perhaps mason), Abishur, an Israelites: - Abishur."]},{"k":"H52","v":["אַבְשַׁי    אֲבִישַׁי","'ăbı̂yshay    'abshay","ab-ee-shah'ee, ab-shah'ee","From H1 and H7862; father of a gift (that is, probably generous); Abishai, an Israelite: - Abishai."]},{"k":"H53","v":["אַבְשָׁלוֹם    אֲבִישָׁלוֹם","'ăbı̂yshâlôm    'abshâlôm","ab-ee-shaw-lome', ab-shaw-lome'","From H1 and H7965; father of peace (that is, friendly); Abshalom, a son of David; also (the fuller form) a later Israelite: - Abishalom, Absalom."]},{"k":"H54","v":["אֶבְיָתָר","'ebyâthâr","eb-yaw-thawr'","Contracted from H1 and H3498; father of abundance (that is, liberal); Ebjathar, an Israelite: - Abiathar."]},{"k":"H55","v":["אָבַךְ","'âbak","aw-bak'","A primitive root; probably to coil upward: - mount up."]},{"k":"H56","v":["אָבַל","'âbal","aw-bal'","A primitive root; to bewail: - lament, mourn."]},{"k":"H57","v":["אָבֵל","'âbêl","aw-bale'","From H56; lamenting: - mourn (er, -ing)."]},{"k":"H58","v":["אָבֵל","'âbêl","aw-bale'","From an unused root (meaning to be grassy); a meadow: - plain. Compare also the proper names beginning with Abel-."]},{"k":"H59","v":["אָבֵל","'âbêl","aw-bale'","From H58; a meadow; Abel, the name of two places in Palestine: - Abel."]},{"k":"H60","v":["אֵבֶל","'êbel","ay'-bel","From H56; lamentation: - mourning."]},{"k":"H61","v":["אֲבָל","'ăbâl","ab-awl'","Apparently from H56 through the idea of negation; nay, that is, truly or yet: - but, indeed, nevertheless, verily."]},{"k":"H62","v":["אָבֵל בֵּית־מֲעַכָה","'âbêl bêyth mă‛akâh","aw-bale' bayth ma-a-kaw'","From H58 and H1004 and H4601; meadow of Beth-Maakah; Abel of Beth-Maakah, a place in Palestine: - Abel-beth-maachah, Abel of Beth-maachah."]},{"k":"H63","v":["אָבֵל הַשִּׁטִּים","'âbêl hashshiṭṭı̂ym","aw-bale' hash-shit-teem'","From H58 and the plural of H7848, with the article inserted; meadow of the acacias; Abel hash-Shittim, a place in Palestine: - Abel-shittim."]},{"k":"H64","v":["אָבֵל כְּרָמִים","'âbêl kerâmı̂ym","aw-bale' ker-aw-meem'","From H58 and the plural of H3754; meadow of vineyards; Abel-Keramim, a place in Palestine: - plain of the vineyards."]},{"k":"H65","v":["אָבֵל מְחוֹלָה","'âbêl mechôlâh","aw-bale' mekh-o-law'","From H58 and H4246; meadow of dancing; Abel-Mecholah, a place in Palestine: - Abel-meholah."]},{"k":"H66","v":["אַבֵל מַיִם","'abêl mayim","aw-bale' mah'-yim","From H58 and H4325; meadow of water; Abel-Majim, a place in Palestine: - Abel-maim."]},{"k":"H67","v":["אָבֵל מִצְרַיִם","'âbêl mitsrayim","aw-bale' mits-rah'-yim","From H58 and H4714; meadow of Egypt; Abel-Mitsrajim, a place in Palestine: - Abel-mizraim."]},{"k":"H68","v":["אֶבֶן","'eben","eh'-ben","From the root of H1129 through the meaning, to build; a stone: - + carbuncle, + mason, + plummet, [chalk-, hail-, bead-, sling-] stone (-ny), (divers) weight (-s)."]},{"k":"H69","v":["אֶבֶן","'eben","eh'-ben","(Chaldee); corresponding to H68: - stone."]},{"k":"H70","v":["אֹבֶן","'ôben","o'-ben","From the same as H68; a pair of stones (only dual); a potter’s wheel or a midwife’s stool (consisting alike of two horizontal disks with a support between): - wheel, stool."]},{"k":"H71","v":["אֲבָנָה","'ăbânâh","ab-aw-naw'","Perhaps feminine of H68; stony; Abanah, a river near Damascus: - Abana. Compare H549."]},{"k":"H72","v":["אֶבֶן הָעֵזֶר","'eben hâ‛êzer","eh'-ben haw-e'-zer","From H68 and H5828 with the article inserted; stone of the help; Eben ha-Ezer, a place in Palestine: - Ebenezer."]},{"k":"H73","v":["אַבְנֵט","'abnêṭ","ab-nate'","Of uncertain derivation; a belt: - girdle."]},{"k":"H74","v":["אֲבִינֵר    אַבְנֵר","'abnêr    'ăbı̂ynêr","ab-nare', ab-ee-nare'","From H1 and H5216; father of light (that is, enlightening); Abner, an Israelite: - Abner."]},{"k":"H75","v":["אָבַס","'âbas","aw-bas'","A primitive root; to fodder: - fatted, stalled."]},{"k":"H76","v":["אֲבַעְבֻּעָה","'ăba‛bû‛âh","ab-ah-boo-aw'","(By reduplication) from an unused root (meaning to belch forth); an inflammatory pustule (as eruption): - blains."]},{"k":"H77","v":["אֶבֶץ","'ebets","eh'-bets","From an unused root, probably means to gleam; conspicuous; Ebets, a place in Palestine: - Abez."]},{"k":"H78","v":["אִבְצָן","'ibtsân","ib-tsawn'","From the same as H76; splendid; Ibtsan, an Israelite: - Ibzan."]},{"k":"H79","v":["אָבַק","'âbaq","aw-bak'","A primitive root; probably to float away (as vapor), but used only as denominative from H80; to bedust, that is, grapple: - wrestle."]},{"k":"H80","v":["אָבָק","'âbâq","aw-bawk'","From root of H79; light particles (as volatile): - (small) dust, powder."]},{"k":"H81","v":["אֲבָקָה","'ăbâqâh","ab-aw-kaw'","Feminine of H80: - powder."]},{"k":"H82","v":["אָבַר","'âbar","aw-bar'","A primitive root; to soar: - fly."]},{"k":"H83","v":["אֵבֶר","'êber","ay-ber'","From H82; a pinion: - [long-] wing (-ed)."]},{"k":"H84","v":["אֶבְרָה","'ebrâh","eb-raw'","Feminine of H83: - feather, wing."]},{"k":"H85","v":["אַבְרָהָם","'abrâhâm","ab-raw-hawm'","Contracted from H1 and an unused root (probably meaning to be populous); father of a multitude; Abraham, the later name of Abram: - Abraham."]},{"k":"H86","v":["אַבְרֵךְ","'abrêk","ab-rake'","Probably an Egyptian word meaning kneel: - bow the knee."]},{"k":"H87","v":["אַבְרָם","'abrâm","ab-rawm'","Contracted from H48; high father; Abram, the original name of Abraham: - Abram."]},{"k":"H88","v":["אֹבֹת","'ôbôth","o-both'","Plural of H178; water skins; oboth, a place in the Desert: - Oboth."]},{"k":"H89","v":["אָגֵא","'âgê'","aw-gay'","Of uncertain derivation (compare H90); Age, an Israelite: - Agee."]},{"k":"H90","v":["אֲגַג","'ăgag","ag-ag'","Of uncertain derivation (compare H89); flame; Agag, a title of Amalekitish kings: - Agag."]},{"k":"H91","v":["אֲגָגִי","'ăgâgı̂y","ag-aw-ghee'","Patrial or patronymic from H90; an Agagite or descendant (subject) of Agag: - Agagite."]},{"k":"H92","v":["אֲגֻדָּה","'ăgûddâh","ag-ood-daw'","Feminine passive participle of an unused root (meaning to bind); a band, bundle, knot, or arch: - bunch, burden, troop."]},{"k":"H93","v":["אֱגוֹז","'ĕgôz","eg-oze'","Probably of Persian origin; a nut: - nut."]},{"k":"H94","v":["אָגוּר","'âgûr","aw-goor'","Passive participle of H103; gathered (that is, received among the sages); Agur, a fanciful name of Solomon: - Agur."]},{"k":"H95","v":["אֲגוֹרָה","'ăgôrâh","ag-o-raw'","From the same as H94; properly something gathered, that is, perhaps a grain or berry; used only of a small (silver) coin: - piece [of] silver."]},{"k":"H96","v":["אֶגֶל","'egel","eh'-ghel","From an unused root (meaning to flow down or together as drops); a reservoir: - drop."]},{"k":"H97","v":["אֶגְלַיִם","'eglayim","eg-lah'-yim","Dual of H96; a double pond; Eglajim, a place in Moab: - Eglaim."]},{"k":"H98","v":["אֲגַם","'ăgam","ag-am'","From an unused root (meaning to collect as water); a marsh; hence a rush (as growing in swamps); hence a stockade of reeds: - pond, pool, standing [water]."]},{"k":"H99","v":["אָגֵם","'âgêm","aw-game'","Probably from the same as H98 (in the sense of stagnant water); figuratively sad: - pond."]},{"k":"H100","v":["אַגְמוֹן","'agmôn","ag-mone'","From the same as H98; a marshy pool (others from a different root, a kettle); by implication a rush (as growing there); collectively a rope of rushes: - bulrush, caldron, hook, rush."]},{"k":"H101","v":["אַגָּן","'aggân","ag-gawn'","Probably from H5059; a bowl (as pounded out hollow): - basin, cup, goblet."]},{"k":"H102","v":["אַגָּף","'aggâph","ag-gawf'","Probably from H5062 (through the idea of impending); a cover or heap; that is, (only plural) wings of an army, or crowds of troops: - bands."]},{"k":"H103","v":["אָגַר","'âgar","aw-gar'","A primitive root; to harvest: - gather."]},{"k":"H104","v":["אִגְּרָא","'iggerâ'","ig-er-aw'","(Chaldee); of Persian origin; an epistle (as carried by a state courier or postman): - letter."]},{"k":"H105","v":["אֲגַרְטָל","'ăgarṭâl","ag-ar-tawl'","Of uncertain derivation; a basin: - charger."]},{"k":"H106","v":["אֶגְרֹף","'egrôph","eg-rofe'","From H1640 (in the sense of grasping); the clenched hand: - fist."]},{"k":"H107","v":["אִגֶּרֶת","'iggereth","ig-eh'-reth","Feminine of H104; an epistle: - letter."]},{"k":"H108","v":["אֵד","'êd","ade","From the same as H181 (in the sense of enveloping); a fog: - mist, vapor."]},{"k":"H109","v":["אָדַב","'âdab","aw-dab'","A primitive root; to languish: - grieve."]},{"k":"H110","v":["אַדְבְּאֵל","'adbe'êl","ad-beh-ale'","Probably from H109 (in the sense of chastisement) and H410; disciplined of God; Adbeel, a son of Ishmael: - Adbeel."]},{"k":"H111","v":["אֲדַד","'ădad","ad-ad'","Probably an orthographical variation for H2301; Adad (or Hadad), an Edomite: - Hadad."]},{"k":"H112","v":["אִדּוֹ","'iddô","id-do","Of uncertain derivation; Iddo, an Israelite: - Iddo."]},{"k":"H113","v":["אָדֹן    אָדוֹן","'âdôn    'âdôn","aw-done', aw-done'","From an unused root (meaning to rule); sovereign, that is, controller (human or divine): - lord, master, owner. Compare also names beginning with “Adoni-”."]},{"k":"H114","v":["אַדּוֹן","'addôn","ad-done'","Probably intensive for H113; powerful; Addon, apparently an Israelite: - Addon."]},{"k":"H115","v":["אֲדוֹרַיִם","'ădôrayim","ad-o-rah'-yim","Dual from H142 (in the sense of eminence); double mound; Adorajim, a place in Palestine: - Adoraim."]},{"k":"H116","v":["אֱדַיִן","'ĕdayin","ed-ah'-yin","(Chaldee); of uncertain derivation; then (of time): - now, that time, then."]},{"k":"H117","v":["אַדִּיר","'addı̂yr","ad-deer'","From H142; wide or (generally) large; figuratively powerful: - excellent, famous, gallant, glorious, goodly, lordly, mighty (-ier, one), noble, principal, worthy."]},{"k":"H118","v":["אֲדַלְיָא","'ădalyâ'","ad-al-yaw'","Of Persian derivation; Adalja, a son of Haman: - Adalia."]},{"k":"H119","v":["אָדַם","'âdam","aw-dam'","To show blood (in the face), that is, flush or turn rosy: - be (dyed, made) red (ruddy)."]},{"k":"H120","v":["אָדָם","'âdâm","aw-dawm'","From H119; ruddy, that is, a human being (an individual or the species, mankind, etc.): - X another, + hypocrite, + common sort, X low, man (mean, of low degree), person."]},{"k":"H121","v":["אָדָם","'âdâm","aw-dawm'","The same as H120; Adam, the name of the first man, also of a place in Palestine: - Adam."]},{"k":"H122","v":["אָדֹם","'âdôm","aw-dome'","From H119; rosy: - red, ruddy."]},{"k":"H123","v":["אֱדוֹם    אֱדֹם","'ĕdôm    'ĕdôm","ed-ome', ed-ome'","From H122; red (see Gen_25:25); Edom, the elder twin-brother of Jacob; hence the region (Idumaea) occuped by him: - Edom, Edomites, Idumea."]},{"k":"H124","v":["אֹדֶם","'ôdem","o'-dem","From H119; redness, that is, the ruby, garnet, or some other red gem: - sardius."]},{"k":"H125","v":["אֲדַמְדָּם","'ădamdâm","ad-am-dawm'","Reduplicated from H119; reddish: - (somewhat) reddish."]},{"k":"H126","v":["אַדְמָה","'admâh","ad-maw'","Contracted for H127; earthy; Admah, a place near the Dead Sea: - Admah."]},{"k":"H127","v":["אֲדָמָה","'ădâmâh","ad-aw-maw'","From H119; soil (from its general redness): - country, earth, ground, husband [-man] (-ry), land."]},{"k":"H128","v":["אֲדָמָה","'ădâmâh","ad-aw-maw'","The same as H127; Adamah, a place in Palestine: - Adamah."]},{"k":"H129","v":["אֲדָמִי","'ădâmı̂y","ad-aw-mee'","From H127; earthy; Adami, a place in Palestine: - Adami."]},{"k":"H130","v":["אֱדֹמִי","'ĕdômı̂y","ed-o-mee'","Patronymic from H123; an Edomite, or descendant from (or inhabitant of) Edom: - Edomite. See H726."]},{"k":"H131","v":["אֲדֻמִּים","'ădûmmı̂ym","ad-oom-meem'","Plural of H121; red spots; Adummim, a pass in Palestine: - Adummim."]},{"k":"H132","v":["אַדְמוֹנִי    אַדְמֹנִי","'admônı̂y    'admônı̂y","ad-mo-nee', ad-mo-nee'","From H119; reddish (of the hair or the complexion): - red, ruddy."]},{"k":"H133","v":["אַדְמָתָא","'admâthâ'","ad-maw-thaw'","Probably of Persian derivation; Admatha, a Persian nobleman: - Admatha."]},{"k":"H134","v":["אֶדֶן","'eden","eh'-den","From the same as H113 (in the sense of strength); a basis (of a building, a column, etc.): - foundation, socket."]},{"k":"H135","v":["אַדָּן","'addân","ad-dawn'","Intensive from the same as H134; firm; Addan, an Israelite: - Addan."]},{"k":"H136","v":["אֲדֹנָי","'ădônây","ad-o-noy'","An emphatic form of H113; the Lord (used as a proper name of God only): - (my) Lord."]},{"k":"H137","v":["אֲדֹנִי־בֶזֶק","'ădônı̂y-bezeq","ad-o''-nee-beh'-zek","From H113 and H966; lord of Bezek; Adoni-Bezek, a Canaanitish king: - Adoni-bezek."]},{"k":"H138","v":["אֲדֹנִיָּהוּ    אֲדֹנִיָּה","'ădônı̂yâh    'ădônı̂yâhû","ad-o-nee-yaw', ad-o-nee-yaw'-hoo","From H113 and H3050; lord (that is, worshipper) of Jah; Adonijah, the name of three Israelites: - Adonijah."]},{"k":"H139","v":["אֲדֹנִי־צֶדֶק","'ădônı̂y-tsedeq","ad-o''-nee-tseh'-dek","From H113 and H6664; lord of justice; Adoni-Tsedek, a Canaanitish king: - Adonizedec."]},{"k":"H140","v":["אֲדֹנִיקָם","'ădônı̂yqâm","ad-o-nee-kawm'","From H113 and H6965; lord of rising (that is, high); Adonikam, the name of one or two Israelites: - Adonikam"]},{"k":"H141","v":["אֲדֹנִירָם","'ădônı̂yrâm","ad-o-nee-rawm'","From H113 and H7311; lord of height; Adoniram, an Israelite: - Adoniram."]},{"k":"H142","v":["אָדַר","'âdar","aw-dar","A primitive root; to expand, that is, be great or (figuratively) magnificent: - (become) glorious, honourable."]},{"k":"H143","v":["אֲדָר","'ădâr","ad-awr'","Probably of foreign derivation; perhaps meaning fire; Adar, the H12 th Hebrew month: - Adar."]},{"k":"H144","v":["אֲדָר","'ădâr","ad-awr'","(Chaldee); corresponding to H143: - Adar."]},{"k":"H145","v":["אֶדֶר","'eder","eh'-der","From H142; amplitude, that is, (concretely) a mantle; also (figuratively) splendor: - goodly, robe."]},{"k":"H146","v":["אַדָּר","'addâr","ad-dawr'","Intensive from H142; ample; Addar, a place in Palestine; also an Israelite: - Addar."]},{"k":"H147","v":["אִדַּר","'iddar","id-dar'","(Chaldee); intensive from a root corresponding to H142; ample, that is, a threshing-floor: - threshingfloor."]},{"k":"H148","v":["אֲדַרְגָּזֵר","'ădargâzêr","ad-ar''-gaw-zare'","(Chaldee); from the same as H147, and H1505; a chief diviner, or astrologer: - judge."]},{"k":"H149","v":["אַדְרַזְדָּא","'adrazdâ'","ad-raz-daw'","(Chaldee); probably of Persian origin; quickly or carefully: - dilligently."]},{"k":"H150","v":["אֲדַרְכֹּן","'ădarkôn","ad-ar-kone'","Of Persian origin; a daric or Persian coin: - dram."]},{"k":"H151","v":["אֲדֹרָם","'ădôrâm","ad-o-rawm'","Contracted for H141; Adoram (or Adoniram), an Israelite: - Adoram."]},{"k":"H152","v":["אַדְרַמֶּלֶךְ","'adrammelek","ad-ram-meh'-lek","From H142 and H4428; splendor of (the) king; Adrammelek, the name of an Assyrian idol, also of a son of Sennacherib: - Adrammelech."]},{"k":"H153","v":["אֶדְרָע","'edrâ‛","ed-raw'","(Chaldee); an orthographical variation for H1872; an arm, that is, (figuratively) power: - force."]},{"k":"H154","v":["אֶדְרֶעִי","'edre‛ı̂y","ed-reh'-ee","From the equivalent of H153; mighty; Edrei, the name of two places in Palestine: - Edrei."]},{"k":"H155","v":["אַדֶּרֶת","'addereth","ad-deh'-reth","Feminine of H117; something ample (as a large vine, a wide dress); also the same as H145: - garment, glory, goodly, mantle, robe."]},{"k":"H156","v":["אָדַשׁ","'âdash","aw-dash'","A primitive root; to tread out (grain): - thresh."]},{"k":"H157","v":["אָהֵב    אָהַב","'âhab    'âhêb","aw-hab', aw-habe'","A primitive root; to have affection for (sexually or otherwise): - (be-) love (-d, -ly, -r), like, friend."]},{"k":"H158","v":["אַהַב","'ahab","ah'-hab","From H157; affection (in a good or a bad sense): - love (-r)."]},{"k":"H159","v":["אֹהַב","'ôhab","o'-hab","From H156; meaning the same as H158: - love."]},{"k":"H160","v":["אַהֲבָה","'ahăbâh","a-hab-aw'","Feminine of H158 and meaning the same: - love."]},{"k":"H161","v":["אֹהַד","'ôhad","o'-had","From an unused root meaning to be united; unity; Ohad, an Israelite: - Ohad."]},{"k":"H162","v":["אֲהָהּ","'ăhâhh","a-haw'","Apparently a primitive word expressing pain exclamatorily; Oh!: - ah, alas."]},{"k":"H163","v":["אַהֲוָא","'ahăvâ'","a-hav-aw'","Probably of foreign origin; Ahava, a river of Babylonia: - Ahava."]},{"k":"H164","v":["אֵהוּד","'êhûd","ay-hood'","From the same as H161; united; Ehud, the name of two or three Israelite: - Ehud."]},{"k":"H165","v":["אֱהִי","'ĕhı̂y","e-hee'","Apparently an orthographical variation for H346; where. (Used in Hos_13:10, Hos_13:14). “I will be” is often the rendering of the same Hebrew form from H1961: - I will be (Hos_13:10, Hos_13:14) [which is often the rendering of the same Hebrew form from H1961]."]},{"k":"H166","v":["אָהַל","'âhal","aw-hal'","A primitive root; to be clear: - shine."]},{"k":"H167","v":["אָהַל","'âhal","aw-hal'","A denominative from H168; to tent: - pitch (remove) a tent."]},{"k":"H168","v":["אֹהֶל","'ôhel","o'-hel","From H166; a tent (as clearly conspicuous from a distance): - covering, (dwelling) (place), home, tabernacle, tent."]},{"k":"H169","v":["אֹהֶל","'ôhel","o'-hel","The same as H168; Ohel, an Israelite: - Ohel."]},{"k":"H170","v":["אָהֳלָהּ    אָהֳלָה","'ohŏlâh    'ohŏlâhh","o-hol-aw', o-hol-aw'","The first form is in form a feminine of H168, but is in fact for the second form; from H168; her tent (that is, idolatrous sanctuary); Oholah, a symbolic name for Samaria: - Aholah."]},{"k":"H171","v":["אָהֳלִיאָב","'ohŏlı̂y'âb","o''-hol-e-awb'","From H168 and H1; tent of (his) father; Oholiab, an Israelite: - Aholiab."]},{"k":"H172","v":["אָהֳלִיבָהּ    אָהֳלִיבָה","'ohŏlı̂ybâh    'ohŏlı̂ybâhh","o''-hol-ee-baw', o''-hol-e-baw'","(As with H170 the first form is in form a feminine of H168, but is in fact for the second form); from H168; my tent (is) in her; Oholibah, a symbolic name for Judah: - Aholibah."]},{"k":"H173","v":["אָהֳלִיבָמָה","'ohŏlı̂ybâmâh","o''-hol-e-baw-maw'","From H168 and H1116; tent of (the) height; Oholibamah, a wife of Esau: - Aholibamah."]},{"k":"H174","v":["אֲהָלוֹת    אֲהָלִים","'ăhâlı̂ym    'ăhâlôth","a-haw-leem', a-haw-loth'","(The second form, which is feminine, is used only in the plural); of foreign origin; aloe wood (that is, sticks): - (tree of lign-) aloes."]},{"k":"H175","v":["אַהֲרוֹן","'ahărôn","a-har-one'","Of uncertain derivation; Aharon, the brother of Moses: - Aaron."]},{"k":"H176","v":["אַו    אוֹ","'ô    'av","o, av","The first form is presumed to be the “constructive” or genitival form of the second form which is short for H185; desire (and so probably in Pro_31:4); hence (by way of alternative) or, also if: - also, and, either, if, at the least, X nor, or, otherwise, then, whether."]},{"k":"H177","v":["אוּאֵל","'û'êl","oo-ale'","From H176 and H410; wish of God; Uel, an Israelite: - Uel."]},{"k":"H178","v":["אוֹב","'ôb","obe","From the same as H1 (apparently through the idea of prattling a father’s name); properly a mumble, that is, a water skin (from its hollow sound); hence a necromancer (ventriloquist, as from a jar): - bottle, familiar spirit."]},{"k":"H179","v":["אוֹבִיל","'ôbı̂yl","o-beel'","Probably from H56; mournful; Obil, an Ishmaelite: - Obil."]},{"k":"H180","v":["אֻבָל    אוּבָל","'ûbâl    'ûbâl","oo-bawl', oo-bawl'","From H2986 (in the sense of H2988); a stream: - river."]},{"k":"H181","v":["אוּד","'ûd","ood","From an unused root meaning to rake together; a poker (for turning or gathering embers): - (fire-) brand."]},{"k":"H182","v":["אֹדוֹת    אוֹדוֹת","'ôdôth    'ôdôth","o-doth', o-doth'","From the same as H181; turnings (that is, occasions); (adverbially) on account of: - (be-) cause, concerning, sake."]},{"k":"H183","v":["אָוָה","'âvâh","aw-vaw'","A primitive root; to wish for: - covet, (greatly) desire, be desirous, long, lust (after)."]},{"k":"H184","v":["אָוָה","'âvâh","aw-vaw'","A primitive root; to extend or mark out: - point out."]},{"k":"H185","v":["אַוָּה","'avvâh","av-vaw'","From H183; longing: - desire, lust after, pleasure."]},{"k":"H186","v":["אוּזַי","'ûzay","oo-zah'ee","Perhaps by permutation for H5813, strong; Uzai, an Israelite: - Uzai."]},{"k":"H187","v":["אוּזָל","'ûzâl","oo-zawl'","Of uncertain derivation; Uzal, a son of Joktan: - Uzal."]},{"k":"H188","v":["אוֹי","'ôy","o'-ee","Probably from H183 (in the sense of crying out after); lamentation; also interjectionally, Oh!: - alas, woe."]},{"k":"H189","v":["אֱוִי","'ĕvı̂y","ev-ee'","Probably from H183; desirous; Evi, a Midianitish chief: - Evi."]},{"k":"H190","v":["אוֹיָה","'ôyâh","o-yaw'","Feminine of H188: - woe."]},{"k":"H191","v":["אֱוִיל","'ĕvı̂yl","ev-eel'","From an unused root (meaning to be perverse); (figuratively) silly: - fool (-ish) (man)."]},{"k":"H192","v":["אֱוִיל מְרֹדַךְ","'ĕvı̂yl merôdak","ev-eel' mer-o-dak'","Of Chaldee derivation and probably meaning soldier of Merodak; Evil-Merodak, a Babylonian king: - Evil-merodach."]},{"k":"H193","v":["אוּל","'ûl","ool","From an unused root meaning to twist, that is, (by implication) be strong; the body (as being rolled together) also powerful: - mighty, strength."]},{"k":"H194","v":["אֻלַי    אוּלַי","'ûlay    'ûlay","oo-lah'ee, oo-lah'ee","From H176; if not; hence perhaps: - if so be, may be, peradventure, unless."]},{"k":"H195","v":["אוּלַי","'ûlay","oo-lah'ee","Of Persian derivation; the Ulai (or Eulaeus), a river of Persia: - Ulai."]},{"k":"H196","v":["אֱוִלִי","'ĕvilı̂y","ev-ee-lee'","From H191; silly, foolish; hence (morally) impious: - foolish."]},{"k":"H197","v":["אֻלָם    אוּלָם","'ûlâm    'ûlâm","oo-lawm', oo-lawm'","From H481 (in the sense of tying); a vestibule (as bound to the building): - porch."]},{"k":"H198","v":["אוּלָם","'ûlâm","oo-lawm'","Apparently from H481 (in the sense of dumbness); solitary; Ulam, the name of two Israelites: - Ulam."]},{"k":"H199","v":["אוּלָם","'ûlâm","oo-lawm'","Apparently a variation of H194; however or on the contrary: - as for, but, howbeit, in very deed, surely, truly, wherefore."]},{"k":"H200","v":["אִוֶּלֶת","'ivveleth","iv-veh'-leth","From the same as H191; silliness: - folly, foolishly (-ness)."]},{"k":"H201","v":["אוֹמָר","'ômâr","o-mawr'","From H559; talkative; Omar, a grandson of Esau: - Omar."]},{"k":"H202","v":["אוֹן","'ôn","one","Probably from the same as H205 (in the sense of effort, but successful); ability, power, (figuratively) wealth: - force, goods, might, strength, substance."]},{"k":"H203","v":["אוֹן","'ôn","one","The same as H202; On, an Israelite: - On."]},{"k":"H204","v":["אֹן    אוֹן","'ôn    'ôn","one, one","Of Egyptian derivation; On, a city of Egypt: - On."]},{"k":"H205","v":["אָוֶן","'âven","aw'-ven","From an unused root perhaps meaning properly to pant (hence to exert oneself, usually in vain; to come to naught); strictly nothingness; also trouble, vanity, wickedness; specifically an idol: - affliction, evil, false, idol, iniquity, mischief, mourners (-ing), naught, sorrow, unjust, unrighteous, vain, vanity, wicked (-ness.) Compare H369."]},{"k":"H206","v":["אָוֶן","'âven","aw'-ven","The same as H205; idolatry; Aven, the contemptuous synonym of three places, one in Coele Syria, one in Egypt (On), and one in Palestine (Bethel): - Aven. See also H204, H1007."]},{"k":"H207","v":["אֹנוֹ    אוֹנוֹ","'ônô    'ônô","o-no', o-no'","From H202; strong; Ono, a place in Palestine: - Ono."]},{"k":"H208","v":["אוֹנָם","'ônâm","o-nawm'","A variation of H209; strong; Onam, the name of an Edomite and of an Israelite: - Onam."]},{"k":"H209","v":["אוֹנָן","'ônân","o-nawn'","A variation of H207; strong; Onan, a son of Judah: - Onan."]},{"k":"H210","v":["אוּפָז","'ûphâz","oo-fawz'","Perhaps a corruption of H211; Uphaz, a famous gold region: - Uphaz."]},{"k":"H211","v":["אוֹפִר    אֹפִיר    אוֹפִיר","'ôphı̂yr    'ôphı̂yr    'ôphir","o-feer', o-feer', o-feer'","Of uncertain derivation; Ophir, the name of a son of Joktan, and of a gold region in the East: - Ophir."]},{"k":"H212","v":["אֹפָן    אוֹפָן","'ôphân    'ôphân","o-fawn', o-fawn'","From an unused root meaning to revolve; a wheel: - wheel."]},{"k":"H213","v":["אוּץ","'ûts","oots","A primitive root; to press; (by implication) to be close, hurry, withdraw: - (make) haste (-n, -y), labor, be narrow."]},{"k":"H214","v":["אוֹצָר","'ôtsâr","o-tsaw'","From H686; a depository: - armory, cellar, garner, store(-house), treasure (-house) (-y)."]},{"k":"H215","v":["אוֹר","'ôr","ore","A primitive root; to be (causatively make) luminous (literally and metaphorically): - X break of day, glorious, kindle, (be, en-, give, show) light (-en, -ened), set on fire, shine."]},{"k":"H216","v":["אוֹר","'ôr","ore","From H215; illumination or (concretely) luminary (in every sense, including lightning, happiness, etc.): - bright, clear, + day, light (-ning), morning, sun."]},{"k":"H217","v":["אוּר","'ûr","oor","From H215; flame, hence (in the plural) the East (as being the region of light): - fire, light. See also H224."]},{"k":"H218","v":["אוּר","'ûr","oor","The same as H217; Ur, a place in Chaldaea; also an Israelite: - Ur."]},{"k":"H219","v":["אוֹרָה","'ôrâh","o-raw'","Feminine of H216; luminousness, that is, (figuratively) prosperity; also a plant (as being bright): - herb light."]},{"k":"H220","v":["אֲוֵרָה","'ăvêrâh","av-ay-raw'","By transposition for H723; a stall: - cote."]},{"k":"H221","v":["אוּרִי","'ûrı̂y","oo-ree'","From H217; fiery; Uri, the name of three Israelites: - Uri."]},{"k":"H222","v":["אוּרִיאֵל","'ûrı̂y'êl","oo-ree-ale'","From H217 and H410; flame of God; Uriel, the name of two Israelites: - Uriel."]},{"k":"H223","v":["אוּרִיָּהוּ    אוּרִיָּה","'ûrı̂yâh    'ûrı̂yâhû","oo-ree-yaw', oo-ree-yaw'-hoo","From H217 and H3050; flame of Jah; Urijah, the name of one Hittite and five Israelites: - Uriah, Urijah."]},{"k":"H224","v":["אוּרִים","'ûrı̂ym","oo-reem'","Plural of H217; lights; Urim, the oracular brilliancy of the figures in the high priest’s breastplate: - Urim."]},{"k":"H225","v":["אוּת","'ûth","ooth","A primitive root; properly to come, that is, (impliedly) to assent: - consent."]},{"k":"H226","v":["אוֹת","'ôth","oth","Probably from H225 (in the sense of appearing); a signal (literally or figuratively), as a flag, beacon, monument, omen, prodigy, evidence, etc.: - mark, miracle, (en-) sign, token."]},{"k":"H227","v":["אָז","'âz","awz","A demonstrative adverb; at that time or place; also as a conjugation, therefore: - beginning, for, from, hitherto, now, of old, once, since, then, at which time, yet."]},{"k":"H228","v":["אֲזָה    אֲזָא","'ăzâ'    'ăzâh","az-aw', az-aw'","(Chaldee); to kindle; (by implication) to heat: - heat, hot."]},{"k":"H229","v":["אֶזְבַּי","'ezbay","ez-bah'ee","Probably from H231; hyssop like; Ezbai, an Israelite: - Ezbai."]},{"k":"H230","v":["אֲזָד","'ăzâd","az-awd'","(Chaldee); of uncertain derivation; firm: - be gone."]},{"k":"H231","v":["אֵזוֹב","'êzôb","ay-zobe'","Probably of foreign derivation; hyssop: - hyssop."]},{"k":"H232","v":["אֵזוֹר","'êzôr","ay-zore'","From H246; something girt; a belt, also a band: - girdle."]},{"k":"H233","v":["אֲזַי","'ăzay","az-ah'ee","Probably from H227; at that time: - then."]},{"k":"H234","v":["אַזְכָּרָה","'azkârâh","az-kaw-raw'","From H2142; a reminder; specifically remembrance offering: - memorial."]},{"k":"H235","v":["אָזַל","'âzal","aw-zal'","A primitive root; to go away, hence to disappear: - fail, gad about, go to and fro [but in Eze_27:19 the word is rendered by many “from Uzal,” by others “yarn”], be gone (spent)."]},{"k":"H236","v":["אֲזַל","'ăzal","az-al'","(Chaldee); the same as H235; to depart: - go (up)."]},{"k":"H237","v":["אֶזֶל","'ezel","eh'-zel","From H235; departure; ezel, a memorial stone in Palestine: - Ezel."]},{"k":"H238","v":["אָזַן","'âzan","aw-zan'","A primitive root; probably to expand; but used only as a denominative from H241; to broaden out the ear (with the hand), that is, (by implication) to listen: - give (perceive by the) ear, hear (-ken). See H239."]},{"k":"H239","v":["אָזַן","'âzan","aw-zan'","A primitive root (rather identical with H238 through the idea of scales as if two ears); to weigh, that is, (figuratively) ponder: - give good heed."]},{"k":"H240","v":["אָזֵן","'âzên","aw-zane'","From H238; a spade or paddle (as having a broad end): - weapon."]},{"k":"H241","v":["אֹזֶן","'ôzen","o'-zen","From H238; broadness, that is, (concretely) the ear (from its form in man): - + advertise, audience, + displease, ear, hearing, + show."]},{"k":"H242","v":["אֻזֵּן שֶׁאֱרָה","'ûzzên she'ĕrâh","ooz-zane' sheh-er-aw'","From H238 and H7609; plat of Sheerah (that is, settled by him); Uzzen Sheerah, a place in Palestine: - Uzzen-sherah."]},{"k":"H243","v":["אַזְנוֹת תָּבוֹר","'aznôth tâbôr","az-noth' taw-bore'","From H238 and H8396; flats (that is, tops) of Tabor (that is, situated on it); aznoth Tabor, a place in Palestine: - Aznoth-tabor."]},{"k":"H244","v":["אָזְנִי","'oznı̂y","oz-nee'","From H241; having (quick) ears; Ozni, an Israelite; also an Oznite (collectively), his descendants: - Ozni, Oznites."]},{"k":"H245","v":["אֲזַנְיָה","'ăzanyâh","az-an-yaw'","From H238 and H3050; heard by Jah; Azanjah, an Israelite: - Azaniah."]},{"k":"H246","v":["אֲזִקִּים","'ăziqqı̂ym","az-ik-keem'","A variation for H2131; manacles: - chains."]},{"k":"H247","v":["אָזַר","'âzar","aw-zar'","A primitive root; to belt: - bind (compass) about, gird (up, with)."]},{"k":"H248","v":["אֶזְרוֹעַ","'ezrôa‛","ez-ro'-a","A variation for H2220; the arm: - arm."]},{"k":"H249","v":["אֶזְרָח","'ezrâch","ez-rawkh'","From H2224 (in the sense of springing up); a spontaneous growth, that is, native (tree or persons): - bay tree, (home-) born (in the land), of the (one’s own) country (nation)."]},{"k":"H250","v":["אֶזְרָחִי","'ezrâchı̂y","ez-raw-khee'","Patronymic from H2246; an Ezrachite or descendants of Zerach: - Ezrahite."]},{"k":"H251","v":["אָח","'âch","awkh","A primitive word; a brother (used in the widest sense of literal relationship and metaphorical affinity or resemblance (like H1)): - another, brother (-ly), kindred, like, other. Compare also the proper names beginning with “Ah-” or “Ahi-”."]},{"k":"H252","v":["אַח","'ach","akh","(Chaldee); corresponding to H251: - brother."]},{"k":"H253","v":["אָח","'âch","awkh","A variation for H162; Oh! (expressive of grief or surprise): - ah, alas."]},{"k":"H254","v":["אָח","'âch","awkh","Of uncertain derivation; a fire pot or chafing dish: - hearth."]},{"k":"H255","v":["אֹחַ","'ôach","o'-akh","Probably from H253; a howler or lonesome wild animal: - doleful creature."]},{"k":"H256","v":["אֶחָב    אַחְאָב","'ach'âb    'echâb","akh-awb', ekh-awb'","The second form used once (by contraction) in Jer_29:22; from H251 and H1; brother (that is, friend) of (his) father; Achab, the name of a king of Israel and of a prophet at Babylon: - Ahab."]},{"k":"H257","v":["אַחְבָּן","'achbân","akh-bawn'","From H251 and H995; brother (that is, possessor) of understanding; Achban, an Israelite: - Ahban."]},{"k":"H258","v":["אָחַד","'âchad","aw-khad'","Perhaps a primitive root; to unify, that is, (figuratively) collect (one’s thoughts): - go one way or other."]},{"k":"H259","v":["אֶחָד","'echâd","ekh-awd'","A numeral from H258; properly united, that is, one; or (as an ordinal) first: - a, alike, alone, altogether, and, any (-thing), apiece, a certain [dai-] ly, each (one), + eleven, every, few, first, + highway, a man, once, one, only, other, some, together."]},{"k":"H260","v":["אָחוּ","'âchû","aw'-khoo","Of uncertain (perhaps Egyptian) derivation; a bulrush or any marshy grass (particularly that along the Nile): - flag, meadow."]},{"k":"H261","v":["אֵחוּד","'êchûd","ay-khood'","From H258; united; Echud, the name of three Israelites: - Ehud."]},{"k":"H262","v":["אַחְוָה","'achvâh","akh-vaw'","From H2331 (in the sense of H2324); an utterance: - declaration."]},{"k":"H263","v":["אַחֲוָה","'achăvâh","akh-av-aw'","(Chaldee); corresponding to H262; solution (of riddles): - showing."]},{"k":"H264","v":["אַחֲוָה","'achăvâh","akh-av-aw'","From H251; fraternity: - brotherhood."]},{"k":"H265","v":["אֲחוֹחַ","'ăchôach","akh-o'-akh","By reduplication from H251; brotherly; Achoach, an Israelite: - Ahoah."]},{"k":"H266","v":["אֲחוֹחִי","'ăchôchı̂y","akh-o-khee'","Patronymic from H264; an Achochite or descendants of Achoach: - Ahohite."]},{"k":"H267","v":["אֲחוּמַי","'ăchûmay","akh-oo-mah'ee","Perhaps from H251 and H4325; brother (that is, neighbour) of water; Achumai, an Israelite: - Ahumai."]},{"k":"H268","v":["אָחֹר    אָחוֹר","'âchôr    'âchôr","aw-khore', aw-khore'","From H299; the hinder part; hence (adverbially) behind, backward; also (as facing north) the West: - after (-ward), back (part, -side, -ward), hereafter, (be-) hind (-er part), time to come, without."]},{"k":"H269","v":["אָחוֹת","'âchôth","aw-khoth'","Irregular feminine of H251; a sister (used very widely (like H250), literally and figuratively): - (an-) other, sister, together."]},{"k":"H270","v":["אָחַז","'âchaz","aw-khaz'","A primitive root; to seize (often with the accessory idea of holding in possession): -    + be affrighted, bar, (catch, lay, take) hold (back), come upon, fasten, handle, portion, (get, have or take) possess (-ion)."]},{"k":"H271","v":["אָחָז","'âchâz","aw-khawz'","From H270; possessor; Achaz, the name of a Jewish king and of an Israelite: - Ahaz."]},{"k":"H272","v":["אֲחֻזָּה","'ăchûzzâh","akh-ooz-zaw'","Feminine passive participle of H270; something seized, that is, a possession (especially of land): - possession."]},{"k":"H273","v":["אַחְזַי","'achzay","akh-zah'ee","From H270; seizer; Achzai, an Israelite: - Ahasai."]},{"k":"H274","v":["אֲחַזְיָהוּ    אֲחַזְיָה","'ăchazyâh    'ăchazyâhû","akh-az-yaw', akh-az-yaw'-hoo","From H270 and H3050; Jah has seized; Achazjah, the name of a Jewish and an Israelitish king: - Ahaziah."]},{"k":"H275","v":["אֲחֻזָּם","'ăchûzzâm","akh-ooz-zawm'","From H270; seizure; Achuzzam, an Israelite: - Ahuzam."]},{"k":"H276","v":["אֲחֻזַּת","'ăchûzzath","akh-ooz-zath'","A variation of H272; possession; Achuzzath, a Philistine: - Ahuzzath."]},{"k":"H277","v":["אֲחִי","'ăchı̂y","akh-ee'","From H251; brotherly; Achi, the name of two Israelites: - Ahi."]},{"k":"H278","v":["אֵחִי","'êchı̂y","ay-khee'","Probably the same as H277; Echi, an Israelite: - Ehi."]},{"k":"H279","v":["אֲחִיאָם","'ăchı̂y'âm","akh-ee-awm'","From H251 and H517; brother of the mother (that is, uncle); Achiam, an Israelite: - Ahiam."]},{"k":"H280","v":["אֲחִידָה","'ăchı̂ydâh","akh-ee-daw'","(Chaldee); corresponding to H2420, an enigma: - hard sentence."]},{"k":"H281","v":["אֲחִיָּהוּ    אֲחִיָּה","'ăchı̂yâh    'ăchı̂yâhû","akh-ee-yaw', akh-ee-yaw'-hoo","From H251 and H3050; brother (that is, worshipper) of Jah; Achijah, the name of nine Israelites: - Ahiah, Ahijah."]},{"k":"H282","v":["אֲחִיהוּד","'ăchı̂yhûd","akh-ee-hood'","From H251 and H1935; brother (that is, possessor) of renown; Achihud, an Israelite: - Ahihud."]},{"k":"H283","v":["אַחְיוֹ","'achyô","akh-yo'","Prolonged from H251; brotherly; Achio, the name of three Israelites: - Ahio."]},{"k":"H284","v":["אֲחִיחֻד","'ăchı̂ychûd","akh-ee-khood'","From H251 and H2330; brother of a riddle (that is, mysterious); Achichud, an Israelite: - Ahihud."]},{"k":"H285","v":["אֲחִיטוּב","'ăchı̂yṭûb","akh-ee-toob'","From H251 and H2898; brother of goodness; Achitub, the name of several priests: - Ahitub."]},{"k":"H286","v":["אֲחִילוּד","'ăchı̂ylûd","akh-ee-lood'","From H251 and H3205; brother of one born; Achilud, an Israelite: - Ahilud."]},{"k":"H287","v":["אֲחִימוֹת","'ăchı̂ymôth","akh-ee-moth'","From H251 and H4191; brother of death; Achimoth, an Israelite: - Ahimoth."]},{"k":"H288","v":["אֲחִימֶלֶךְ","'ăchı̂ymelek","akh-ee-meh'-lek","From H251 and H4428; brother of (the) king; Achimelek, the name of an Israelite and of a Hittite: - Ahimelech."]},{"k":"H289","v":["אֲחִימָן    אֲחִימַן","'ăchı̂yman    'ăchı̂ymân","akh-ee-man', akh-ee-mawn'","From H251 and H4480; brother of a portion (that is, gift); Achiman, the name of an Anakite and of an Israelite: - Ahiman."]},{"k":"H290","v":["אֲחִימַעַץ","'ăchı̂yma‛ats","akh-ee-mah'-ats","From H251 and the equivalent of H4619; brother of anger; Achimaats, the name of three Israelites: - Ahimaaz."]},{"k":"H291","v":["אַחְיָן","'achyân","akh-yawn'","From H251; brotherly; Achjan, an Israelite: - Ahian."]},{"k":"H292","v":["אֲחִינָדָב","'ăchı̂ynâdâb","akh-ee-naw-dawb'","From H251 and H5068; brother of liberality; Achinadab, an Israelite: - Ahinadab."]},{"k":"H293","v":["אֲחִינֹעַם","'ăchı̂ynô‛am","akh-ee-no'-am","From H251 and H5278; brother of pleasantness; Achinoam, the name of two Israelitesses: - Ahinoam."]},{"k":"H294","v":["אֲחִיסָמָךְ","'ăchı̂ysâmâk","akh-ee-saw-mawk'","From H251 and H5564; brother of support; Achisamak, an Israelite: - Ahisamach."]},{"k":"H295","v":["אֲחִיעֶזֶר","'ăchı̂y‛ezer","akh-ee-eh'-zer","From H251 and H5828; brother of help; Achiezer, the name of two Israelites: - Ahiezer."]},{"k":"H296","v":["אֲחִיקָם","'ăchı̂yqâm","akh-ee-kawm'","From H251 and H6965; brother of rising (that is, high); Achikam, an Israelite: - Ahikam."]},{"k":"H297","v":["אֲחִירָם","'ăchı̂yrâm","akh-ee-rawm'","From H251 and H7311; brother of height (that is, high); Achiram, an Israelite: - Ahiram."]},{"k":"H298","v":["אֲחִירָמִי","'ăchı̂yrâmı̂y","akh-ee-raw-mee'","Patronymic from H297; an Achiramite or descendants (collectively) of Achiram: - Ahiramites."]},{"k":"H299","v":["אֲחִירַע","'ăchı̂yra‛","akh-ee-rah'","From H251 and H7451; brother of wrong; Achira, an Israelite: - Ahira."]},{"k":"H300","v":["אֲחִישַׁחַר","'ăchı̂yshachar","akh-ee-shakh'-ar","From H251 and H7837; brother of (the) dawn; Achishachar, an Israelite: - Ahishar."]},{"k":"H301","v":["אֲחִישָׁר","'ăchı̂yshâr","akh-ee-shawr'","From H251 and H7891; brother of (the) singer; Achishar, an Israelite: - Ahishar."]},{"k":"H302","v":["אֲחִיתֹפֶל","'ăchı̂ythôphel","akh-ee-tho'-fel","From H251 and H8602; brother of folly; Achithophel, an Israelite: - Ahithophel."]},{"k":"H303","v":["אַחְלָב","'achlâb","akh-lawb'","From the same root as H2459; fatness (that is, fertile); Achlab, a place in Palestine: - Ahlab."]},{"k":"H304","v":["אַחְלַי","'achlay","akh-lah'ee","The same as H305; wishful; Achlai, the name of an Israelitess and of an Israelite: - Ahlai."]},{"k":"H305","v":["אַחֲלֵי    אַחֲלַי","'achălay    'achălêy","ak-al-ah'ee, akh-al-ay'","Probably from H253 and a variation of H3863; would that!: - O that, would God."]},{"k":"H306","v":["אַחְלָמָה","'achlâmâh","akh-law'-maw","Perhaps from H2492 (and thus dream stone); a gem, probably the amethyst: - amethyst."]},{"k":"H307","v":["אַחְמְתָא","'achmethâ'","akh-me-thaw'","Of Persian derivation; Achmetha (that is, Ecbatana), the summer capital of Persia: - Achmetha."]},{"k":"H308","v":["אֲחַסְבַּי","'ăchasbay","akh-as-bah'ee","Of uncertain derivation; Achasbai, an Israelite: - Ahasbai."]},{"k":"H309","v":["אָחַר","'âchar","aw-khar'","A primitive root; to loiter (that is, be behind); by implication to procrastinate: - continue, defer, delay, hinder, be late (slack), stay (there), tarry (longer)."]},{"k":"H310","v":["אַחַר","'achar","akh-ar'","From H309; properly the hind part; generally used as an adverb or conjugation, after (in various senses): - after (that, -ward), again, at, away from, back (from, -side), behind, beside, by, follow (after, -ing), forasmuch, from, hereafter, hinder end, + out (over) live, + persecute, posterity, pursuing, remnant, seeing, since, thence [-forth], when, with."]},{"k":"H311","v":["אַחַר","'achar","akh-ar'","(Chaldee); corresponding to H310; after: - [here-] after."]},{"k":"H312","v":["אַחֵר","'achêr","akh-air'","From H309; properly hinder; generally next, other, etc.: - (an-) other (man), following, next, strange."]},{"k":"H313","v":["אַחֵר","'achêr","akh-air'","The same as H312; Acher, an Israelite: - Aher."]},{"k":"H314","v":["אַחֲרֹן    אַחֲריֹן","'achăryôn    'achărôn","akh-ar-one', akh-ar-one'","From H309; hinder; generally late or last; specifically (as facing the east) western: - after (-ward), to come, following, hind (-er, -ermost, -most), last, latter, rereward, ut(ter)most."]},{"k":"H315","v":["אַחְרַח","'achrach","akh-rakh","From H310 and H251; after (his) brother; Achrach, an Israelite: - Aharah."]},{"k":"H316","v":["אֲחַרְחֵל","'ăcharchêl","akh-ar-kale'","From H310 and H2426; behind (the) intrenchment (that is, safe); Acharchel, an Israelite: - Aharhel."]},{"k":"H317","v":["אָחֳרִי","'ochŏrı̂y","okh-or-ee'","(Chaldee); from H311; other: - (an-) other."]},{"k":"H318","v":["אָחֳרֵן    אָחֳרֵין","'ochŏrêyn    'ochŏrên","okh-or-ane', okh-or-ane'","(Chaldee); from H317; last: - at last."]},{"k":"H319","v":["אַחֲרִית","'achărı̂yth","akh-ar-eeth'","From H310; the last or end, hence the future; also posterity: - (last, latter) end (time), hinder (utter) -most, length, posterity, remnant, residue, reward."]},{"k":"H320","v":["אַחֲרִית","'achărı̂yth","akh-ar-eeth'","(Chaldee); from H311; the same as H319; later: - latter."]},{"k":"H321","v":["אָחֳרָן","'ochŏrân","okh-or-awn'","(Chaldee); from H311; the same as H317; other: - (an-) other."]},{"k":"H322","v":["אֲחֹרַנִּית","'ăchôrannı̂yth","akh-o-ran-neeth'","Prolonged from H268; backwards: - back(-ward, again)."]},{"k":"H323","v":["אֲחַשְׁדַּרְפַּן","'ăchashdarpan","akh-ash-dar-pan'","Of Persian derivation; a satrap or governor of a main province (of Persia): - lieutenant."]},{"k":"H324","v":["אֲחַשְׁדַּרְפַּן","'ăchashdarpan","akh-ash-dar-pan'","(Chaldee); corresponding to H323: - prince."]},{"k":"H325","v":["אַחַשְׁרשׁ    אֲחַשְׁוֵרוֹשׁ","'ăchashvêrôsh    'achashrôsh","akh-ash-vay-rosh', akh-ash-rosh'","Of Persian origin; Achashverosh (that is, Ahasuerus or Artaxerxes, but in this case Xerxes), the title (rather than name) of a Persian king: - Ahasuerus."]},{"k":"H326","v":["אֲחַשְׁתָּרִי","'ăchashtârı̂y","akh-ash-taw-ree'","Probably of Persian derivation; an achastarite (that is, courier); the designation (rather than name) of an Israelite: - Haakashtari [includ. the article.]"]},{"k":"H327","v":["אֲחַשְׁתָּרָן","'ăchashtârân","akh-ash-taw-rawn'","Of Persian origin; a mule: - camel."]},{"k":"H328","v":["אַט","'aṭ","at","From an unused root perhaps meaning to move softly; (as a noun) a necromancer (from their soft incantations), (as an adverb) gently: - charmer, gently, secret, softly."]},{"k":"H329","v":["אָטָד","'âṭâd","aw-tawd","From an unused root probably meaning to pierce or make fast; a thorn tree (especially the buckthorn): - Atad, bramble, thorn."]},{"k":"H330","v":["אֵטוּן","'êṭûn","ay-toon'","From an unused root (probably meaning to bind); properly twisted (yarn), that is, tapestry: - fine linen."]},{"k":"H331","v":["אָטַם","'âṭam","aw-tam'","A primitive root; to close (the lips or ears); by analogy to contract (a window by bevelled jambs): - narrow, shut, stop."]},{"k":"H332","v":["אָטַר","'âṭar","aw-tar'","A primitive root; to close up: - shut."]},{"k":"H333","v":["אָטֵר","'âṭêr","aw-tare'","From H332; maimed; Ater, the name of three Israelites: - Ater."]},{"k":"H334","v":["אִטֵּר","'iṭṭêr","it-tare","From H332; shut up, the is, impeded (as to the use of the right hand): -    + left-handed."]},{"k":"H335","v":["אַי","'ay","ah'ee","Perhaps from H370; where? hence how?: - how, what, whence, where, whether, which (way)."]},{"k":"H336","v":["אִי","'ı̂y","ee","Probably identical with H335 (through the idea of a query); not. (Job_22:30): - island (Job_22:30)."]},{"k":"H337","v":["אִי","'ı̂y","ee","Shortened from H188; alas!: - woe."]},{"k":"H338","v":["אִי","'ı̂y","ee","Probably identical with H337 (through the idea of a doleful sound); a howler (used only in the plural), that is, any solitary wild creature: - wild beast of the islands."]},{"k":"H339","v":["אִי","'ı̂y","ee","From H183; properly a habitable spot (as desirable); dry land, a coast, an island: - country, isle, island."]},{"k":"H340","v":["אָיַב","'âyab","aw-yab'","A primitive root; to hate (as one of an opposite tribe or party); hence to be hostile: - be an enemy."]},{"k":"H341","v":["אוֹיֵב    אֹיֵב","'ôyêb    'ôyêb","o-yabe', o-yabe'","Active participle of H340; hating; an adversary: - enemy, foe."]},{"k":"H342","v":["אֵיבָה","'êybâh","ay-baw'","From H340; hostility: - enmity, hatred."]},{"k":"H343","v":["אֵיד","'êyd","ade","From the same as H181 (in the sense of bending down); oppression; by implication misfortune, ruin: - calamity, destruction."]},{"k":"H344","v":["אַיָּה","'ayâh","ah-yaw'","Perhaps from H337; the screamer, that is, a hawk: - kite, vulture."]},{"k":"H345","v":["אַיָּה","'ayâh","ah-yaw'","The same as H344; Ajah, the name of two Israelites: - Aiah, Ajah."]},{"k":"H346","v":["אַיֵּה","'ayêh","ah-yay'","Prolonged from H335; where?: - where."]},{"k":"H347","v":["אִיּוֹב","'ı̂yôb","ee-yobe'","From H340; hated (that is, persecuted); Ijob, the patriarch famous for his patience: - Job."]},{"k":"H348","v":["אִיזֶבֶל","'ı̂yzebel","ee-zeh'-bel","From H336 and H2083; chaste, Izebel, the wife of king Ahab: - Jezebel."]},{"k":"H349","v":["אֵיכָכָה    אֵיכָה    אֵיךְ","'êyk    'êykâh    'êykâkâh","ake, ay-kaw', ay-kaw'-kah","Prolonged from H335; how? or how!; also where: - how, what."]},{"k":"H350","v":["אִי־כָבוֹד","'ı̂y-kâbôd","ee-kaw-bode'","From H336 and H3519; (there is) no glory, that is, inglorious; Ikabod, a son of Phineas: - I-chabod."]},{"k":"H351","v":["אֵיכֹה","'êykôh","ay-ko","Probably a variation for H349, but not as an interrogative; where: - where."]},{"k":"H352","v":["אַיִל","'ayil","ah'-yil","From the same as H193; properly strength; hence anything strong; specifically a chief (politically); also a ram (from his strength); a pilaster (as a strong support); an oak or other strong tree: - mighty (man), lintel, oak, post, ram, tree."]},{"k":"H353","v":["אֱיָל","'ĕyâl","eh-yawl'","A variation of H352; strength: - strength."]},{"k":"H354","v":["אַיָּל","'ayâl","ah-yawl'","An intensive form of H352 (in the sense of ram); a stag or male deer: - hart."]},{"k":"H355","v":["אַיָּלָה","'ayâlâh","ah-yaw-law'","Feminine of H354; a doe or female deer: - hind."]},{"k":"H356","v":["אֵילֹן    אֵלוֹן    אֵילוֹן","'êylôn    'êlôn    'êylôn","ay-lone', ay-lone', ay-lone'","From H352; oakgrove; Elon, the name of a place in Palestine, and also of one Hittite, two Israelite: - Elon."]},{"k":"H357","v":["אַיָּלוֹן","'ayâlôn","ah-yaw-lone'","From H354; deerfield; Ajalon, the name of five places in Palestine: - Aijalon, Ajalon."]},{"k":"H358","v":["אֵילוֹן בֵּית חָנָן","'êylôn bêyth chânân","ay-lone' bayth-khaw-nawn'","From H356, H1004, and H2603; oakgrove of (the) house of favor; Elon of Bethchanan, a place in Palestine: - Elon-beth-hanan."]},{"k":"H359","v":["אֵילַת     אֵילוֹת","'êylôth    'êylath","ay-loth', ay-lath'","From H352; trees or a grove (that is, palms); Eloth or Elath, a place on the Red Sea: - Elath, Eloth."]},{"k":"H360","v":["אֱיָלוּת","'ĕyâlûth","eh-yaw-looth'","Feminine of H353; power; by implication protection: - strength."]},{"k":"H361","v":["אֵלַמָּה     אֵלָם     אֵילָם","'êylâm    'êlâm    'êlammâh","ay-lawm', ay-lawm', ay-lam-maw'","Probably from H352; a pillar space (or colonnade), that is, a pale (or portico): - arch."]},{"k":"H362","v":["אֵילִם","'êylim","ay-leem'","Plural of H352; palm trees; Elim, a place in the Desert: - Elim."]},{"k":"H363","v":["אִילָן","'ı̂ylân","ee-lawn'","(Chaldee); corresponding to H356; a tree: - tree."]},{"k":"H364","v":["אֵיל פָּארָן","'êyl pâ'rân","ale paw-rawn'","From H352 and H6290; oak of Paran; El Paran, a portion of the district of Paran: - El-paran."]},{"k":"H365","v":["אַיֱּלֱת","'ayĕlĕth","ay-yeh'-leth","The same as H355; a doe: - hind, Aijeleth."]},{"k":"H366","v":["אָיֹם","'âyôm","aw-yome'","From an unused root (meaning to frighten); frightful: - terrible."]},{"k":"H367","v":["אֵמָה     אֵימָה","'êymâh    'êmâh","ay-maw', ay-maw'","From the same as H366; fright; concretely an idol (as a bugbear): - dread. fear, horror, idol, terrible, terror."]},{"k":"H368","v":["אֵימִים","'êymı̂ym","ay-meem'","Plural of H367; terrors; Emim, an early Canaanitish (or Moabitish) tribe: - Emims."]},{"k":"H369","v":["אַיִן","'ayin","ay'-yin","As if from a primitive root meaning to be nothing or not exist; a non-entity; generally used as a negative particle: - else, except, fail [father-] less, be gone, in [-curable], neither, never, no (where), none, nor (any, thing), not, nothing, to nought, past, un [-searchable], well-nigh, without, Compare H370."]},{"k":"H370","v":["אַיִן","'ayin","ah-yin'","Probably identical with H369 in the sense of query (compare H336); where? (only in connection with prepositional prefix, whence): - whence, where."]},{"k":"H371","v":["אִין","'ı̂yn","een","Apparently a shortened form of H369; but (like H370) interrogitive; is it not?: - not"]},{"k":"H372","v":["אִיעֶזֵר","'ı̂y‛ezêr","ee-eh'-zer","From H336 and H5828; helpless; Iezer, an Israelite: - Jeezer."]},{"k":"H373","v":["אִיעֶזְרִי","'ı̂y‛ezrı̂y","ee-ez-ree'","Patronymic from H372; an Iezrite or descendant of Iezer: - Jezerite."]},{"k":"H374","v":["אֵפָה     אֵיפָה","'êyphâh    'êphâh","ay-faw', ay-faw'","Of Egyptian derivation; an ephah or measure for grain; hence a measure in general: - ephah, (divers) measure (-s)."]},{"k":"H375","v":["אֵיפֹה","'êyphôh","ay-fo'","From H335 and H6311; what place?; also (of time) when?; or (of means) how?: - what manner, where."]},{"k":"H376","v":["אִישׁ","'ı̂ysh","eesh","Contracted for H582 (or perhaps rather from an unused root meaning to be extant); a man as an individual or a male person; often used as an adjunct to a more definite term (and in such cases frequently not expressed in translation.) : - also, another, any (man), a certain, + champion, consent, each, every (one), fellow, [foot-, husband-] man, (good-, great, mighty) man, he, high (degree), him (that is), husband, man [-kind], + none, one, people, person, + steward, what (man) soever, whoso (-ever), worthy. Compare H802."]},{"k":"H377","v":["אִישׁ","'ı̂ysh","eesh","Denominative from H376; to be a man, that is, act in a manly way: - show (one) self a man."]},{"k":"H378","v":["אִישׁ־בּשֶׁת","'ı̂ysh-bôsheth","eesh-bo'-sheth","From H376 and H1322; man of shame; IshBosheth, a son of King Saul: - Ish-bosheth."]},{"k":"H379","v":["אִישְׁהוֹד","'ı̂yshhôd","eesh-hode'","From H376 and H1935; man of renown; Ishod, an Israelite: - Ishod."]},{"k":"H380","v":["אִישׁוֹן","'ı̂yshôn","ee-shone'","Diminutive from H376; the little man of the eye; the pupil or ball; hence the middle (of night): - apple [of the eye], black, obscure."]},{"k":"H381","v":["אִישׁ־חַי     אִישׁ־חַיִל","'ı̂ysh-chayil    'ı̂ysh-chay","eesh-khah'-yil, eesh-khah'ee","From H376 and H2428; man of might; (The second form is by defective transcription used in 2Sa_23:20); as if from H376 and H2416; living man; Ishchail (or Ishchai), an Israelite: - a valiant man."]},{"k":"H382","v":["אִישׁ־טוֹב","'ı̂ysh-ṭôb","eesh-tobe'","From H376 and H2897; man of Tob; Ish-Tob, a place in Palestine: - Ish-tob."]},{"k":"H383","v":["אִיתַי","'ı̂ythay","ee-thah'ee","(Chaldee); corresponding to H3426; properly entity; used only as a particle of affirmation, there is: - art thou, can, do ye, have it be, there is (are), X we will not."]},{"k":"H384","v":["אִיתִיאֵל","'ı̂ythı̂y'êl","eeth-ee-ale'","Perhaps from H837 and H410; God has arrived; Ithiel, the name of an Israelite, also of a symbolic person: - Ithiel."]},{"k":"H385","v":["אִיתָמָר","'ı̂ythâmâr","eeth-aw-mawr'","From H339 and H8558; coast of the palm tree; Ithamar, a son of Aaron: - Ithamar."]},{"k":"H386","v":["אֵיתָן","'êythân","ay-thawn'","From an unused root (meaning to continue); permanence; hence (concretely) permanent; specifically a chieftain: - hard, mighty, rough, strength, strong."]},{"k":"H387","v":["אֵיתָן","'êythân","ay-thawn'","The same as H386; permanent; Ethan, the name of four Israelites: - Ethan."]},{"k":"H388","v":["אֵיתָנִים","'êythânı̂ym","ay-thaw-neem'","Plural of H386; always with the article; the permanent brooks; Ethanim, the name of a month: - Ethanim."]},{"k":"H389","v":["אַךְ","'ak","ak","Akin to H403; a particle of affirmation, surely; hence (by limitation) only: - also, in any wise, at least, but, certainly, even, howbeit, nevertheless, notwithstanding, only, save, surely of a surety, truly, verily, + wherefore, yet (but)."]},{"k":"H390","v":["אַכַּד","'akkad","ak-kad'","From an unused root probably meaning to strengthen; a fortress; Accad, a place in Babylon: - Accad."]},{"k":"H391","v":["אַכְזָב","'akzâb","ak-zawb'","From H3576; falsehood; by implication treachery: - liar, lie."]},{"k":"H392","v":["אַכְזִיב","'akzı̂yb","ak-zeeb'","From H391; deceitful (in the sense of a winter torrent which fails in summer); Akzib, the name of two places in Palestine: - Achzib."]},{"k":"H393","v":["אַכְזָר","'akzâr","ak-zawr'","From an unused root (apparently meaning to act harshly); violent; by implication deadly; also (in a good sense) brave: - cruel, fierce."]},{"k":"H394","v":["אַכְזָרִי","'akzârı̂y","ak-zaw-ree'","From H393; terrible: - cruel (one)."]},{"k":"H395","v":["אַכְזְרִיּוּת","'akzerı̂yûth","ak-ze-ree-ooth'","From H394; fierceness: - cruel."]},{"k":"H396","v":["אֲכִילָה","'ăkı̂ylâh","ak-ee-law'","Feminine from H398; something eatable, that is, food: - meat."]},{"k":"H397","v":["אָכִישׁ","'âkı̂ysh","aw-keesh'","Of uncertain derivation; Akish, a Philistine king: - Achish."]},{"k":"H398","v":["אָכַל","'âkal","aw-kal'","A primitive root; to eat (literally or figuratively): - X at all, burn up, consume, devour (-er, up), dine, eat (-er, up), feed (with), food, X freely, X in . . . wise (-deed, plenty), (lay) meat, X quite."]},{"k":"H399","v":["אֲכַל","'ăkal","ak-al'","(Chaldee); corresponding to H398: - + accuse, devour, eat."]},{"k":"H400","v":["אֹכֶל","'ôkel","o'-kel","From H398; food: - eating, food, meal [-time], meat, prey, victuals."]},{"k":"H401","v":["אֻכָּל     אֻכָל","'ûkâl    'ûkkâl","oo-kawl', ook-kawl'","Apparently from H398; devoured; Ucal, a fancy name: - Ucal."]},{"k":"H402","v":["אָכְלָה","'ôklâh","ok-law'","Feminine of H401; food: - consume, devour, eat, food, meat."]},{"k":"H403","v":["אָכֵן","'âkên","aw-kane'","From H3559 (compare H3651); firmly; figuratively surely; also (adversely) but: - but, certainly, nevertheless, surely, truly, verily."]},{"k":"H404","v":["אָכַף","'âkaph","aw-kaf'","A primitive root; apparent meaning to curve (as with a burden); to urge: - crave."]},{"k":"H405","v":["אֶכֶף","'ekeph","eh'-kef","From H404; a load; by implication a stroke (others dignity): - hand."]},{"k":"H406","v":["אִכָּר","'ikkâr","ik-kawr'","From an unused root meaning to dig; a farmer: - husbandman, ploughman."]},{"k":"H407","v":["אַכְשָׁף","'akshâph","ak-shawf'","From H3784; fascination; Acshaph, a place in Palestine: - Achshaph."]},{"k":"H408","v":["אַל","'al","al","A negative particle (akin to H3808); not (the qualified negation, used as a deprecative); once (Job_24:25) as a noun, nothing: - nay, neither, + never, no, nor, not, nothing [worth], rather than."]},{"k":"H409","v":["אַל","'al","al","(Chaldee); corresponding to H408: - not."]},{"k":"H410","v":["אֵל","'êl","ale","Shortened from H352; strength; as adjective mighty; especially the Almighty (but used also of any deity): - God (god), X goodly, X great, idol, might (-y one), power, strong. Compare names in “-el.”"]},{"k":"H411","v":["אֵל","'êl","ale","A demonstrative particle (but only in a plural sense) these or those: - these, those, Compare H428."]},{"k":"H412","v":["אֵל","'êl","ale","(Chaldee); corresponding to H411: - these."]},{"k":"H413","v":["אֶל     אֵל","'êl    'el","ale, el","(Used only in the shortened constructive form (the second form)); a primitive particle, properly denoting motion towards, but occasionally used of a quiescent position, that is, near, with or among; often in general, to: - about, according to, after, against, among, as for, at, because (-fore, -side), both . . . and, by, concerning, for, from, X hath, in (-to), near, (out) of, over, through,to (-ward), under, unto, upon, whether, with(-in)."]},{"k":"H414","v":["אֵלָא","'êlâ'","ay-law'","A variation of H424; oak; Ela, an Israelite: - Elah."]},{"k":"H415","v":["אֵל אֱלֹהֵי יִשְׂרָאֵל","'êl 'ĕlôhêy yiśrâ'êl","ale el-o-hay' yis-raw-ale'","From H410 and H430 and H3478; the mighty God of Jisrael; El Elohi Jisrael, the title given to a consecrated spot by Jacob: - El-elohe-israel."]},{"k":"H416","v":["אֵל בֵּית־אֵל","'êl bêyth-'êl","ale bayth-ale'","From H410 and H1008; the God of Bethel; El-Bethel, the title given to a consecrated spot by Jacob: - El-beth-el."]},{"k":"H417","v":["אֶלְגָּבִישׁ","'elgâbı̂ysh","el-gaw-beesh'","From H410 and H1378; hail (as if a great pearl): - great hail [-stones]."]},{"k":"H418","v":["אַלְגּוּמִּים","'algûmmı̂ym","al-goom-meem'","By transposition for H484; sticks of algum wood: - algum [trees]."]},{"k":"H419","v":["אֶלְדָּד","'eldâd","el-dad'","From H410 and H1780; God has loved; Eldad, an Israelite: - Eldad."]},{"k":"H420","v":["אֶלְדָּעָה","'eldâ‛âh","el-daw-aw'","From H410 and H3045; God of knowledge; Eldaah, a son of Midian: - Eldaah."]},{"k":"H421","v":["אָלָה","'âlâh","aw-law'","A primitive root (rather identical with H422 through the idea of invocation); to bewail: - lament."]},{"k":"H422","v":["אָלָה","'âlâh","aw-law'","A primitive root; properly to adjure, that is, (usually in a bad sense) imprecate: - adjure, curse, swear."]},{"k":"H423","v":["אָלָה","'âlâh","aw-law'","From H422; an imprecation: - curse, cursing, execration, oath, swearing."]},{"k":"H424","v":["אֵלָה","'êlâh","ay-law'","Feminine of H352; an oak or other strong tree: - elm, oak, teil tree"]},{"k":"H425","v":["אֵלָה","'êlâh","ay-law'","The same as H424; Elah, the name of an Edomite, or four Israelites, and also of a place in Palestine: - Elah."]},{"k":"H426","v":["אֱלָהּ","'ĕlâhh","el-aw'","(Chaldee); corresponding to H433; God: - God, god."]},{"k":"H427","v":["אַלָּה","'allâh","al-law'","A variation of H424: - oak."]},{"k":"H428","v":["אֵלֶּה","'êlleh","ale'-leh","Prolonged from H411; these or those: - an- (the) other; one sort, so, some, such, them, these (same), they, this, those, thus, which, who (-m)."]},{"k":"H429","v":["אֵלֶּה","'êlleh","ale'-leh","(Chaldee); corresponding to H428: - these."]},{"k":"H430","v":["אֱלֹהִים","'ĕlôhı̂ym","el-o-heem'","Plural of H433; gods in the ordinary sense; but specifically used (in the plural thus, especially with the article) of the supreme God; occasionally applied by way of deference to magistrates; and sometimes as a superlative: - angels, X exceeding, God (gods) (-dess, -ly), X (very) great, judges, X mighty."]},{"k":"H431","v":["אֲלוּ","'ălû","al-oo'","(Chaldee); probably prolonged from H412; lo!: - behold."]},{"k":"H432","v":["אִלּוּ","'illû","il-loo'","Probably from H408; nay, that is, (softened) if: - but if, yea though."]},{"k":"H433","v":["אֱלֹהַּ    אֱלוֹהַּ","'ĕlôahh    'ĕlôahh","el-o'-ah, el-o'-ah","(The second form is rare); probably prolonged (emphatically) from H410; a deity or the deity: - God, god. See H430."]},{"k":"H434","v":["אֱלוּל","'ĕlûl","el-ool'","For H457; good for nothing: - thing of nought."]},{"k":"H435","v":["אֱלוּל","'ĕlûl","el-ool'","Probably of foreign derivation; Elul, the sixth Jewish month: - Elul."]},{"k":"H436","v":["אֵלוֹן","'êlôn","ay-lone'","Prolonged from H352; an oak or other strong tree: - plain. See also H356."]},{"k":"H437","v":["אַלּוֹן","'allôn","al-lone'","A variation of H436: - oak."]},{"k":"H438","v":["אַלּוֹן","'allôn","al-lone'","The same as H437; Allon, an Israelite, also a place in Palestine: - Allon."]},{"k":"H439","v":["אַלּוֹן בָּכוּת","'allôn bâkûth","al-lone' baw-kooth'","From H437 and a variation of H1068; oak of weeping; Allon-Bakuth, a monumental tree: - Allon-bachuth."]},{"k":"H440","v":["אֵלֹנִי    אֵלוֹנִי","'êlônı̂y    'êlônı̂y","ay-lo-nee', ay-lo-nee'","Patronymic from H438; an Elonite or descendant (collectively) of Elon: - Elonites."]},{"k":"H441","v":["אַלֻּף    אַלּוּף","'alûph    'allûph","al-loof', al-loof'","From H502; familiar; a friend, also gentle; hence a bullock (as being tame; applied, although masculine, to a cow); and so a chieftain (as notable like neat cattle): - captain, duke, (chief) friend, governor, guide, ox."]},{"k":"H442","v":["אָלוּשׁ","'âlûsh","aw-loosh'","Of uncertain derivation; Alush, a place in the Desert: - Alush."]},{"k":"H443","v":["אֶלְזָבָד","'elzâbâd","el-zaw-bawd'","From H410 and H2064; God has bestowed; Elzabad, the name of two Israelites: - Elzabad."]},{"k":"H444","v":["אָלַח","'âlach","aw-lakh'","A primitive root; to muddle, that is, (figuratively and intransitively) to turn (morally) corrupt: - become filthy."]},{"k":"H445","v":["אֶלְחָנָן","'elchânân","el-khaw-nawn'","From H410 and H2603; God (is) gracious; Elchanan, an Israelite: - Elkanan."]},{"k":"H446","v":["אֱלִיאָב","'ĕlı̂y'âb","el-ee-awb'","From H410 and H1; God of (his) father; Eliab, the name of six Israelites: - Eliab."]},{"k":"H447","v":["אֱלִיאֵל","'ĕlı̂y'êl","el-ee-ale'","From H410 repeated; God of (his) God; Eliel, the name of nine Israelites: - Eliel."]},{"k":"H448","v":["אֱלִיָּתָה    אֱלִיאָתָה","'ĕlı̂y'âthâh    'ĕlı̂yâthâh","el-ee-aw-thaw'    el-ee-yaw-thaw'","From H410 and H225; God of (his) consent; Eliathah, an Israelite: - Eliathah."]},{"k":"H449","v":["אֱלִידָד","'ĕlı̂ydâd","el-ee-dawd'","From the same as H419; God of (his) love; Elidad, an Israelite: - Elidad."]},{"k":"H450","v":["אֶלְיָדָע","'elyâdâ‛","el-yaw-daw'","From H410 and H3045; God (is) knowing; Eljada, the name of two Israelites and of an Aramaean: - Eliada."]},{"k":"H451","v":["אַלְיָה","'alyâh","al-yaw'","From H422 (in the original sense of strength); the stout part, that is, the fat tail of the Oriental sheep: - rump."]},{"k":"H452","v":["אֵלִיָּהוּ    אֵלִיָּה","'êlı̂yâh    'êlı̂yâhû","ay-lee-yaw', ay-lee-yaw'-hoo","From H410 and H3050; God of Jehovah; Elijah, the name of the famous prophet and of two other Israelites: - Elijah, Eliah."]},{"k":"H453","v":["אֱלִיהוּא    אֱלִיהוּ","'ĕlı̂yhû    'ĕlı̂yhû'","el-ee-hoo', el-ee-hoo'","From H410 and H1931; God of him; Elihu, the name of one of Job’s friends, and of three Israelites: - Elihu."]},{"k":"H454","v":["אֶלְיוֹעֵינַי    אֶלְיְהוֹעֵינַי","'elyehô‛êynay    'elyô‛êynay","el-ye-ho-ay-nah'ee, el-yo-ay-nah'ee","From H413 and H3068 and H5869; towards Jehovah (are) my eyes; Eljehoenai or Eljoenai, the name of seven Israelites: - Elihoenai, Elionai."]},{"k":"H455","v":["אֶלְיַחְבָּא","'elyachbâ'","el-yakh-baw'","From H410 and H2244; God will hide; Eljachba, an Israelite: - Eliahbah."]},{"k":"H456","v":["אֱלִיחֹרֶף","'ĕlı̂ychôreph","el-ee-kho'-ref","From H410 and H2779; God of autumn; Elichoreph, an Israelite: - Elihoreph."]},{"k":"H457","v":["אֱלִיל","'ĕlı̂yl","el-eel'","Apparently from H408; good for nothing, by analogy vain or vanity; specifically an idol: - idol, no value, thing of nought."]},{"k":"H458","v":["אֱלִימֶלֶךְ","'ĕlı̂ymelek","el-ee-meh'-lek","From H410 and H4428; God of (the) king; Elimelek, an Israelite: - Elimelech."]},{"k":"H459","v":["אִלֵּן    אִלֵּין","'illêyn    'illên","il-lane', il-lane'","(Chaldee); prolonged from H412; these: - the, these."]},{"k":"H460","v":["אֶלְיָסָף","'elyâsâph","el-yaw-sawf'","From H410 and H3254; God (is) gatherer; Eljasaph, the name of two Israelites: - Eliasaph."]},{"k":"H461","v":["אֱלִיעֶזֶר","'ĕlı̂y‛ezer","el-ee-eh'-zer","From H410 and H5828; God of help; Eliezer, the name of a Damascene and of ten Israelites: - Eliezer."]},{"k":"H462","v":["אֱלִיעֵנַי","'ĕlı̂y‛êynay","el-ee-ay-nah'ee","Probably contracted for H454; Elienai, an Israelite: - Elienai."]},{"k":"H463","v":["אֱלִיעָם","'ĕlı̂y‛âm","el-ee-awm'","From H410 and H5971; God of (the) people; Eliam, an Israelite: - Eliam."]},{"k":"H464","v":["אֱלִיפַז","'ĕlı̂yphaz","el-ee-faz'","From H410 and H6337; God of gold; Eliphaz, the name of one of Job’s friends, and of a son of Esau: - Eliphaz."]},{"k":"H465","v":["אֱלִיפָל","'ĕlı̂yphâl","el-ee-fawl'","From H410 and H6419; God of judgment; Eliphal, an Israelite: - Eliphal."]},{"k":"H466","v":["אֱלִיפְלֵהוּ","'ĕlı̂yphelêhû","el-ee-fe-lay'-hoo","From H410 and H6395; God of his distinction; Eliphelehu, an Israelite: - Elipheleh."]},{"k":"H467","v":["אֱלְפֶּלֶט    אֱלִיפֶלֶט","'ĕlı̂ypheleṭ    'ĕlpeleṭ","el-ee-feh'-let, el-peh'-let","From H410 and H6405; God of deliverance; Eliphelet or Elpelet, the name of six Israelites: - Eliphalet, Eliphelet, Elpalet."]},{"k":"H468","v":["אֱלִיצוּר","'ĕlı̂ytsûr","el-ee-tsoor'","From H410 and H6697; God of (the) rock; Elitsur, an Israelite: - Elizur."]},{"k":"H469","v":["אֶלְצָפָן    אֱלִיצָפָן","'ĕlı̂ytsâphân    'eltsâphân","el-ee-tsaw-fawn', el-tsaw-fawn'","From H410 and H6845; God of treasure; Elitsaphan or Eltsaphan, an Israelite: - Elizaphan, Elzaphan."]},{"k":"H470","v":["אֱלִיקָא","'ĕlı̂yqâ'","el-ee-kaw'","From H410 and H6958; God of rejection; Elika, an Israelite: - Elika."]},{"k":"H471","v":["אֶלְיָקִים","'elyâqı̂ym","el-yaw-keem'","From H410 and H6965; God of raising; Eljakim, the name of four Israelites: - Eliakim."]},{"k":"H472","v":["אֱלִישֶׁבַע","'ĕlı̂ysheba‛","el-ee-sheh'-bah","From H410 and H7651 (in the sense of H7650); God of (the) oath; Elisheba, the wife of Aaron: - Elisheba."]},{"k":"H473","v":["אֱלִישָׁה","'ĕlı̂yshâh","el-ee-shaw'","Probably of foreign derivation; Elishah, a son of Javan: - Elishah."]},{"k":"H474","v":["אֱלִישׁוּעַ","'ĕlı̂yshûa‛","el-ee-shoo'-ah","From H410 and H7769; God of supplication (or of riches); Elishua, a son of King David: - Elishua."]},{"k":"H475","v":["אֶלְיָשִׁיב","'elyâshı̂yb","el-yaw-sheeb'","From H410 and H7725; God will restore; Eljashib, the name of six Israelites: - Eliashib."]},{"k":"H476","v":["אֱלִישָׁמָע","'ĕlı̂yshâmâ‛","el-ee-shaw-maw'","From H410 and H8085; God of hearing; Elishama, the name of seven Israelites: - Elishama."]},{"k":"H477","v":["אֱלִישָׁע","'ĕlı̂yshâ‛","el-ee-shaw'","Contracted for H474; Elisha, the famous prophet: - Elisha."]},{"k":"H478","v":["אֱלִישָׁפָט","'ĕlı̂yshâphâṭ","el-ee-shaw-fawt'","From H410 and H8199; God of judgment; Elishaphat, an Israelite: - Elishaphat."]},{"k":"H479","v":["אִלֵּךְ","'illêk","il-lake'","(Chaldee); prolonged from H412; these: - these, those."]},{"k":"H480","v":["אַלְלַי","'alelay","al-le-lah'ee","By reduplication from H421; alas!: - woe."]},{"k":"H481","v":["אָלַם","'âlam","aw-lam'","A primitive root; to tie fast; hence (of the mouth) to be tongue tied: - bind, be dumb, put to silence."]},{"k":"H482","v":["אֵלֶם","'êlem","ay'-lem","From H481; silence (that is, mute justice): - congregation. Compare H3128."]},{"k":"H483","v":["אִלֵּם","'illêm","il-lame'","From H481; speechless: - dumb (man)."]},{"k":"H484","v":["אַלְמֻגִּים","'almuggiym","al-moog-gheem'","Probably of foreign derivation (used thus only in the plural); almug (that is, probably sandalwood) sticks: - almug trees. Compare H418."]},{"k":"H485","v":["אָלֻם    אֲלֻמָּה","'ălûmmâh    'âlûm","al-oom-maw', aw-loom'","Second form is masculine form; passive participle of H481; something bound; a sheaf: - sheaf."]},{"k":"H486","v":["אַלְמוֹדָד","'almôdâd","al-mo-dawd'","Probably of foreign derivation; Almodad, a son of Joktan: - Almodad."]},{"k":"H487","v":["אַלַּמֶּלֶךְ","'allammelek","al-lam-meh'-lek","From H427 and H4428; oak of (the) king; Allammelek, a place in Palestine: - Alammelech."]},{"k":"H488","v":["אַלְמָן","'almân","al-mawn'","Prolonged from H481 in the sense of bereavement; discarded (as a divorced person): - forsaken."]},{"k":"H489","v":["אַלְמֹן","'almôn","al-mone'","From H481 as in H488; bereavement: - widowhood."]},{"k":"H490","v":["אַלְמָנָה","'almânâh","al-maw-naw'","Feminine of H488; a widow; also a desolate place: - desolate house (palace), widow."]},{"k":"H491","v":["אַלְמָנוּת","'almânûth","al-maw-nooth'","Feminine of H488; concretely a widow; abstractly widowhood: - widow, widowhood."]},{"k":"H492","v":["אַלְמֹנִי","'almônı̂y","al-mo-nee'","From H489 in the sense of concealment; some one (that is, so and so, without giving the name of the person or place): - one, and such."]},{"k":"H493","v":["אֶלְנַעַם","'elna‛am","el-nah'-am","From H410 and H5276; God (is his) delight; Elnaam, an Israelite: - Elnaam."]},{"k":"H494","v":["אֶלְנָתָן","'elnâthân","el-naw-thawn'","From H410 and H5414; God (is the) giver; Elnathan, the name of four Israelites: - Elnathan."]},{"k":"H495","v":["אֶלָּסָר","'ellâsâr","el-law-sawr'","Probably of foreign derivation; Ellasar, an early country of Asia: - Ellasar."]},{"k":"H496","v":["אֶלְעָד","'el‛âd","el-awd'","From H410 and H5749; God has testified; Elad, an Israelite: - Elead."]},{"k":"H497","v":["אֶלְעָדָה","'el‛âdâh","el-aw-daw'","From H410 and H5710; God has decked; Eladah, an Israelite: - Eladah."]},{"k":"H498","v":["אֶלְעוּזַי","'el‛ûzay","el-oo-zah'ee","From H410 and H5756 (in the sense of H5797); God (is) defensive; Eluzai, an Israelite: - Eluzai."]},{"k":"H499","v":["אֶלְעָזָר","'el‛âzâr","el-aw-zawr'","From H410 and H5826; God (is) helper; Elazar, the name of seven Israelites: - Eleazar."]},{"k":"H500","v":["אֶלְעָלֵה    אֶלְעָלֵא","'el‛âlê'    'el‛âlêh","el-aw-lay', el-aw-lay'","From H410 and H5927; God (is) going up; Elale or Elaleh, a place east of the Jordan: - Elealeh."]},{"k":"H501","v":["אֶלְעָשָׂה","'el‛âśâh","el-aw-saw'","From H410 and H6213; God has made; Elasah, the name of four Israelites: - Elasah, Eleasah."]},{"k":"H502","v":["אָלַף","'âlaph","aw-lof'","A primitive root, to associate with; hence to learn (and causatively to teach): - learn, teach, utter."]},{"k":"H503","v":["אָלַף","'âlaph","aw-laf'","Denominative from H505; causatively to make a thousandfold: - bring forth thousands."]},{"k":"H504","v":["אֶלֶף","'eleph","eh'-lef","From H502; a family; also (from the sense of yoking or taming) an ox or cow: - family, kine, oxen."]},{"k":"H505","v":["אֶלֶף","'eleph","eh'-lef","Properly the same as H504; hence (an ox’s head being the first letter of the alphabet, and this eventually used as a numeral) a thousand: - thousand."]},{"k":"H506","v":["אֶלֶף    אֲלַף","'ălaph    'eleph","al-af', eh'-lef","(Chaldee); corresponding to H505: - thousand."]},{"k":"H507","v":["אֶלֶף","'eleph","eh'-lef","The same as H505; Eleph, a place in Palestine: - Eleph."]},{"k":"H508","v":["אֶלְפַּעַל","'elpa‛al","el-pah'-al","From H410 and H6466; God (is) act; Elpaal, an Israelite: - Elpaal."]},{"k":"H509","v":["אָלַץ","'âlats","aw-lats'","A primitive root; to press: - urge."]},{"k":"H510","v":["אַלְקוּם","'alqûm","al-koom'","Probably from H408 and H6965; a non-rising (that is, resistlessness): - no rising up."]},{"k":"H511","v":["אֶלְקָנָה","'elqânâh","el-kaw-naw'","From H410 and H7069; God has obtained; Elkanah, the name of seven Israelites: - Elkanah."]},{"k":"H512","v":["אֶלְקֹשִׁי","'elqôshı̂y","el-ko-shee'","Patrial from a name of uncertain derivation; an Elkoshite or native of Elkosh: - Elkoshite."]},{"k":"H513","v":["אֶלְתּוֹלַד","'eltôlad","el-to-lad'","Probably from H410 and a masculine form of H8435 (compare H8434); God (is) generator; Eltolad, a place in Palestine: - Eltolad."]},{"k":"H514","v":["אֶלְתְּקֵה    אֶלְתְּקֵא","'elteqê'    'elteqêh","el-te-kay', el-te-kay'","Of uncertain derivation; Eltekeh or Elteke, a place in Palestine: - Eltekeh."]},{"k":"H515","v":["אֶלְתְּקֹן","'elteqôn","el-te-kone'","From H410 and H8626; God (is) straight; Eltekon, a place in Palestine: - Eltekon."]},{"k":"H516","v":["אַל תַּשְׁחֵת","'al tashchêth","al tash-kayth'","From H408 and H7843; Thou must not destroy; probably the opening words of a popular song: - Al-taschith."]},{"k":"H517","v":["אֵם","'êm","ame","A primitive word; a mother (as the bond of the family); in a wide sense (both literally and figuratively); (like H1): - dam, mother, X parting."]},{"k":"H518","v":["אִם","'im","eem","A primitive particle; used very widely as demonstrative, lo!; interrogitive, whether?; or conditional, if, although; also Oh that!, when; hence as a negative, not: - (and, can-, doubtless, if, that) (not), + but, either, + except, + more (-over if, than), neither, nevertheless, nor, oh that, or, + save (only, -ing), seeing, since, sith, + surely (no more, none, not), though, + of a truth, + unless, + verily, when, whereas, whether, while, + yet."]},{"k":"H519","v":["אָמָה","'âmâh","aw-maw'","Apparently a primitive word; a maidservant or female slave: - (hand-) bondmaid (-woman,) maid (-servant)."]},{"k":"H520","v":["אַמָּה","'ammâh","am-maw'","Prolonged from H517; properly a mother (that is, unit) of measure, or the forearm (below the elbow), that is, a cubit; also a door base (as a bond of the entrance): - cubit, + hundred [by exchange for H3967], measure, post."]},{"k":"H521","v":["אַמָּה","'ammâh","am-maw'","(Chaldee); corresponding to H520: - cubit."]},{"k":"H522","v":["אַמָּה","'ammâh","am-maw'","The same as H520; Ammah, a hill in Palestine: - Ammah."]},{"k":"H523","v":["אֻמַּה","'ûmmah","oom-maw'","From the same as H517; a collection, that is, community of persons: - nation, people."]},{"k":"H524","v":["אֻמָּה","'ûmmâh","oom-maw'","(Chaldee); corresponding to H523: - nation."]},{"k":"H525","v":["אָמוֹן","'âmôn","aw-mone'","From H539, probably in the sense of training; skilled, that is, an architect (like H542): - one brought up."]},{"k":"H526","v":["אָמוֹן","'âmôn","aw-mone'","The same as H525; Amon, the name of three Israelites: - Amon."]},{"k":"H527","v":["אָמוֹן","'âmôn","aw-mone'","A variation for H1995; a throng of people: - multitude."]},{"k":"H528","v":["אָמוֹן","'âmôn","aw-mone'","Of Egyptian derivation; Amon (that is, Ammon or Amn), a deity of Egypt (used only as an adjunct of H4996): - multitude, populous."]},{"k":"H529","v":["אֵמוּן","'êmûn","ay-moon'","From H539; established, that is, (figuratively) trusty; also (abstractly) trustworthiness: - faith (-ful), truth."]},{"k":"H530","v":["אֱמֻנָה    אֱמוּנָה","'ĕmûnâh    'ĕmûnâh","em-oo-naw', em-oo-naw'","Feminine of H529; literally firmness; figuratively security; moral fidelity: - faith (-ful, -ly, -ness, [man]), set office, stability, steady, truly, truth, verily."]},{"k":"H531","v":["אָמוֹץ","'âmôts","aw-mohts'","From H553; strong; Amots, an Israelite: - Amoz."]},{"k":"H532","v":["אָמִי","'âmı̂y","aw-mee'","An abbreviated for H526; Ami, an Israelite: - Ami."]},{"k":"H533","v":["אַמִּץ    אַמִּיץ","'ammı̂yts  'ammits","am-meets', am-meets'","From H553; strong or (abstractly) strength: - courageous, mighty, strong (one)."]},{"k":"H534","v":["אָמִיר","'âmı̂yr","aw-meer'","Apparently from H559 (in the sense of self exaltation); a summit (of a tree or mountain): - bough, branch."]},{"k":"H535","v":["אָמַל","'âmal","aw-mal'","A primitive root; to droop; by implication to be sick, to mourn: - languish, be weak, wax feeble."]},{"k":"H536","v":["אֻמְלַל","'ûmlal","oom-lal'","From H535; sick: - weak."]},{"k":"H537","v":["אֲמֵלָל","'ămêlâl","am-ay-lawl'","From H535; languid: - feeble."]},{"k":"H538","v":["אֲמָם","'ămâm","am-awm'","From H517; gathering spot; Amam, a place in Palestine: - Amam."]},{"k":"H539","v":["אָמַן","'âman","aw-man'","A primitive root; properly to build up or support; to foster as a parent or nurse; figuratively to render (or be) firm or faithful, to trust or believe, to be permanent or quiet; morally to be true or certain; once (in Isa_30:21; by interchange for H541) to go to the right hand: - hence assurance, believe, bring up, establish, + fail, be faithful (of long continuance, stedfast, sure, surely, trusty, verified), nurse, (-ing father), (put), trust, turn to the right."]},{"k":"H540","v":["אֲמַן","'ăman","am-an'","(Chaldee); corresponding to H539: - believe, faithful, sure."]},{"k":"H541","v":["אָמַן","'âman","aw-man'","Denominative from H3225; to take the right hand road: - turn to the right. See H539."]},{"k":"H542","v":["אָמָן","'âmân","aw-mawn'","From H539 (in the sense of training); an expert: - cunning workman."]},{"k":"H543","v":["אָמֵן","'âmên","aw-mane'","From H539; sure; abstractly faithfulness; adverbially truly: - Amen, so be it, truth."]},{"k":"H544","v":["אֹמֶן","'ômen","oh-men'","From H539; verity: - truth."]},{"k":"H545","v":["אָמְנָה","'omnâh","om-naw'","Feminine of H544 (in the specific sense of training); tutelage: - brought up."]},{"k":"H546","v":["אָמְנָה","'omnâh","om-naw'","Feminine of H544 (in its usual sense); adverbially surely: - indeed."]},{"k":"H547","v":["אֹמְנָה","'ômenâh","o-me-naw'","Feminine active participle of H544 (in the original sense of supporting); a column: - pillar."]},{"k":"H548","v":["אֲמָנָה","'ămânâh","am-aw-naw'","Feminine of H543; something fixed, that is, a covenant, an allowance: - certain portion, sure."]},{"k":"H549","v":["אֲמָנָה","'ămânâh","am-aw-naw'","The same as H548; Amanah, a mountain near Damascus: - Amana."]},{"k":"H550","v":["אֲמִינוֹן    אַמְנוֹן","'amnôn    'ămı̂ynôn","am-nohn', am-ee-nohn'","From H539; faithful; Amnon (or Aminon), a son of David: - Amnon."]},{"k":"H551","v":["אָמְנָם","'omnâm","om-nawm'","Adverb from H544; verily: - indeed, no doubt, surely, (it is, of a) true (-ly, -th)."]},{"k":"H552","v":["אֻמְנָם","'ûmnâm","oom-nawm'","An orthographical variation of H551: - in (very) deed; of a surety."]},{"k":"H553","v":["אָמַץ","'âmats","aw-mats'","A primitive root; to be alert, physically (on foot) or mentally (in courage): - confirm, be courageous (of good courage, stedfastly minded, strong, stronger), establish, fortify, harden, increase, prevail, strengthen (self), make strong (obstinate, speed)."]},{"k":"H554","v":["אָמֹץ","'âmôts","aw-mohts'","Probably from H553; of a strong color, that is, red (others fleet): - bay."]},{"k":"H555","v":["אֹמֶץ","'ômets","o'-mets","From H553; strength: - stronger."]},{"k":"H556","v":["אַמְצָה","'amtsâh","am-tsaw'","From H553; force: - strength."]},{"k":"H557","v":["אַמְצִי","'amtsı̂y","am-tsee'","From H553; strong; Amtsi, an Israelite: - Amzi."]},{"k":"H558","v":["אֲמַצְיָהוּ    אֲמַצְיָה","'ămatsyâh    'ămatsyâhû","am-ats-yaw', am-ats-yaw'-hoo","From H553 and H3050; strength of Jah; Amatsjah, the name of four Israelites: - Amaziah."]},{"k":"H559","v":["אָמַר","'âmar","aw-mar'","A primitive root; to say (used with great latitude): - answer, appoint, avouch, bid, boast self, call, certify, challenge, charge, + (at the, give) command (ment), commune, consider, declare, demand, X desire, determine, X expressly, X indeed, X intend, name, X plainly, promise, publish, report, require, say, speak (against, of), X still, X suppose, talk, tell, term, X that is, X think, use [speech], utter, X verily, X yet."]},{"k":"H560","v":["אֲמַר","'ămar","am-ar'","(Chaldee); corresponding to H559: - command, declare, say, speak, tell."]},{"k":"H561","v":["אֵמֶר","'êmer","ay'-mer","From H559; something said: - answer, X appointed unto him, saying, speech, word."]},{"k":"H562","v":["אֹמֶר","'ômer","o'-mer","The same as H561: - promise, speech, thing, word."]},{"k":"H563","v":["אִמַּר","'immar","im-mar'","(Chaldee); perhaps from H560 (in the sense of bringing forth); a lamb: - lamb."]},{"k":"H564","v":["אִמֵּר","'immêr","im-mare'","From H559; talkative; Immer, the name of five Israelites: - Immer."]},{"k":"H565","v":["אֶמְרָה    אִמְרָה","'imrâh    'emrâh","im-raw', em-raw'","The second form is the feminine of H561, and meaning the same: - commandment, speech, word."]},{"k":"H566","v":["אִמְרִי","'imrı̂y","im-ree'","From H564; wordy; Imri, the name of two Israelites: - Imri."]},{"k":"H567","v":["אֱמֹרִי","'ĕmôrı̂y","em-o-ree'","Probably a patronymic from an unused name derived from H559 in the sense of publicity, that is, prominence; thus a mountaineer; an Emorite, one of the Canaanitish tribes: - Amorite."]},{"k":"H568","v":["אֲמַרְיָהוּ    אֲמַרְיָה","'ămaryâh    'ămaryâhû","am-ar-yaw', am-ar-yaw'-hoo","From H559 and H3050; Jah has said (that is, promised); Amarjah, the name of nine Israelites: - Amariah."]},{"k":"H569","v":["אַמְרָפֶל","'amrâphel","am-raw-fel'","Of uncertain (perhaps foreign) derivation; Amraphel, a king of Shinar: - Amraphel."]},{"k":"H570","v":["אֶמֶשׁ","'emesh","eh'-mesh","Time past, that is, yesterday or last night: - former time, yesterday (-night)."]},{"k":"H571","v":["אֶמֶת","'emeth","eh'-meth","Contracted from H539; stability; figuratively certainty, truth, trustworthiness: - assured (-ly), establishment, faithful, right, sure, true (-ly, -th), verity."]},{"k":"H572","v":["אַמְתַּחַת","'amtachath","am-takh'-ath","From H4969; properly something expansive, that is, a bag: - sack."]},{"k":"H573","v":["אֲמִתַּי","'ămittay","am-it-tah'ee","From H571; veracious; Amittai, an Israelite: - Amittai."]},{"k":"H574","v":["אֵמְתָּנִי","'êmtânı̂y","em-taw-nee'","(Chaldee); from a root corresponding to that of H4975; well loined (that is, burly) or mighty: - terrible."]},{"k":"H575","v":["אָנָה    אָן","'ân    'ânâh","awn, aw'-naw","Contracted from H370; where?; hence whither?, when?; also hither and thither: -  + any (no) whither, now, where, whither (-soever)."]},{"k":"H576","v":["אֲנָה    אֲנָא","'ănâ'    'ănâh","an-aw', an-aw'","(Chaldee); corresponding to H589; I: - I, as for me."]},{"k":"H577","v":["אָנָּה    אָנּאָ","'ân'â    'ânnâh","awn'-naw, awn'-naw","Apparently contracted from H160 and H4994: oh now!: - I (me) beseech (pray) thee, O."]},{"k":"H578","v":["אָנָה","'ânâh","aw-naw'","A primitive root; to groan: - lament, mourn."]},{"k":"H579","v":["אָנָה","'ânâh","aw-naw'","A primitive root (perhaps rather identical with H578 through the idea of contraction in anguish); to approach; hence to meet in various senses: - befall, deliver, happen, seek a quarrel."]},{"k":"H580","v":["אֲנוּ","'ănû","an-oo'","Contracted for H587; we: - we."]},{"k":"H581","v":["אִנִּין    אִנּוּן","'innûn    'innı̂yn","in-noon', in-neen'","(Chaldee); the second form is the feminine of the first form; corresponding to H1992; they: -  X are, them, these."]},{"k":"H582","v":["אֱנוֹשׁ","'ĕnôsh","en-oshe'","From H605; properly a mortal (and thus differeing from the more dignified H120); hence a man in general (singly or collectively). It is often unexpressed in the English Version, especially when used in apposition with another word: - another, X [blood-] thirsty, certain, chap [-man], divers, fellow, X in the flower of their age, husband, (certain, mortal) man, people, person, servant, some (X of them), + stranger, those, + their trade. It is often unexpressed in the Engl. version, especially when used in apposition with another word. Compare H376."]},{"k":"H583","v":["אֱנוֹשׁ","'ĕnôsh","en-ohsh'","The same as H582; Enosh, a son of Seth: - Enos."]},{"k":"H584","v":["אָנַח","'ânach","aw-nakh'","A primitive root; to sigh: - groan, mourn, sigh."]},{"k":"H585","v":["אֲנָחָה","'ănâchâh","an-aw-khaw'","From H584; sighing: - groaning, mourn, sigh."]},{"k":"H586","v":["אֲנַחְנָה     אֲנַחְנָא","'ănachnâ'    'ănachnâh","an-akh'-naw, an-akh-naw'","(Chaldee); corresponding to H587; we: - we."]},{"k":"H587","v":["אֲנַחְנוּ","'ănachnû","an-akh'-noo","Apparently from H595; we: - ourselves, us, we."]},{"k":"H588","v":["אֲנָחֲרָת","'ănâchărâth","an-aw-kha-rawth'","Probably from the same root as H5170; a gorge or narrow pass; Anacharath, a place in Palestine: - Anaharath."]},{"k":"H589","v":["אֲנִי","'ănı̂y","an-ee'","Contracted from H595; I: - I, (as for) me, mine, myself, we, X which, X who."]},{"k":"H590","v":["אֳנִי","'onı̂y","on-ee'","Probably from H479 (in the sense of conveyance); a ship or (collectively) a fleet: - galley, navy (of ships)."]},{"k":"H591","v":["אֳנִיָּה","'onı̂yâh","on-ee-yaw'","Feminine of H590; a ship: - ship ([-men])."]},{"k":"H592","v":["אֲנִיָּה","'ănı̂yâh","an-ee-yaw'","From H578; groaning: - lamentation, sorrow."]},{"k":"H593","v":["אֲנִיעָם","'ănı̂y‛âm","an-ee-awm'","From H578 and H5971; groaning of (the) people; Aniam, an Israelite: - Aniam."]},{"k":"H594","v":["אֲנָךְ","'ănâk","an-awk'","Probably from an unused root meaning to be narrow; according to most a plumb line, and to others a hook: - plumb-line."]},{"k":"H595","v":["אָנֹכִי","'ânôkı̂y","aw-no-kee'","A primitive pronoun; I: - I, me, X which."]},{"k":"H596","v":["אָנַן","'ânan","aw-nan'","A primitive root; to mourn, that is, complain: - complain."]},{"k":"H597","v":["אָנַס","'ânas","aw-nas'","To insist: - compel."]},{"k":"H598","v":["אֲנַס","'ănas","an-as'","(Chaldee); corresponding to H597; figuratively to distress: - trouble."]},{"k":"H599","v":["אָנַף","'ânaph","aw-naf'","A primitive root; to breathe hard, that is, be enraged: - be angry (displeased)."]},{"k":"H600","v":["אֲנַף","'ănaph","an-af'","(Chaldee); corresponding to H639 (only in the plural as a singular); the face: - face, visage."]},{"k":"H601","v":["אֲנָפָה","'ănâphâh","an-aw-faw'","From H599; an unclean bird, perhaps the parrot (from its irascibility): - heron."]},{"k":"H602","v":["אָנַק","'ânaq","aw-nak'","A primitive root; to shriek: - cry, groan."]},{"k":"H603","v":["אֲנָקָה","'ănâqâh","an-aw-kaw'","From H602; shrieking: - crying out, groaning, sighing."]},{"k":"H604","v":["אֲנָקָה","'ănâqâh","an-aw-kaw'","The same as H603; some kind of lizard, probably the gecko (from its wail): - ferret."]},{"k":"H605","v":["אָנַשׁ","'ânash","aw-nash'","A primitive root; to be frail, feeble, or (figuratively) melancholy: - desperate (-ly wicked), incurable, sick, woeful."]},{"k":"H606","v":["אֱנַשׁ    אֱנָשׁ","'ĕnâsh    'ĕnash","en-awsh', en-ash'","(Chaldee); corresponding to H582; a man: - man, + whosoever."]},{"k":"H607","v":["אַנְתָּה","'antâh","an-taw'","(Chaldee); corresponding to H859; thou: - as for thee, thou."]},{"k":"H608","v":["אַנְתּוּן","'antûn","an-toon'","(Chaldee); plural of H607; ye: - ye."]},{"k":"H609","v":["אָסָא","'âsâ'","aw-saw'","Of uncertain derivation; Asa, the name of a king and of a Levite: - Asa."]},{"k":"H610","v":["אָסוּךְ","'âsûk","aw-sook'","From H5480; anointed, that is, an oil flask: - pot."]},{"k":"H611","v":["אָסוֹן","'âsôn","aw-sone'","Of uncertain derivation; hurt: - mischief."]},{"k":"H612","v":["אֵסוּר","'êsûr","ay-soor'","From H631; a bond (especially manacles of a prisoner): - band, + prison."]},{"k":"H613","v":["אֱסוּר","'ĕsûr","es-oor'","(Chaldee); corresponding to H612: - band, imprisonment."]},{"k":"H614","v":["אָסִף    אָסִיף","'âsı̂yph    'âsiph","aw-seef', aw-seef'","From H622; gathered, that is, (abstractly) a gathering in of crops: - ingathering."]},{"k":"H615","v":["אָסִיר","'âsı̂yr","aw-sere'","From H631; bound, that is, a captive: - (those which are) bound, prisoner."]},{"k":"H616","v":["אַסִּיר","'assı̂yr","as-sere'","For H615: - prisoner."]},{"k":"H617","v":["אַסִּיר","'assı̂yr","as-sere'","The same as H616; prisoner; Assir, the name of two Israelites: - Assir."]},{"k":"H618","v":["אָסָם","'âsâm","aw-sawm'","From an unused root meaning to heap together; a storehouse (only in the plural): - barn, storehouse."]},{"k":"H619","v":["אַסְנָה","'asnâh","as-naw'","Of uncertain derivation; Asnah, one of the Nethinim: - Asnah."]},{"k":"H620","v":["אָסְנַפַּר","'ôsnappar","os-nap-par'","Of foreign derivation; Osnappar, an Assyrian king: - Asnapper."]},{"k":"H621","v":["אָסְנַת","'âsnath","aw-se-nath'","Of Egyptian derivation; Asenath, the wife of Joseph: - Asenath."]},{"k":"H622","v":["אָסַף","'âsaph","aw-saf'","A primitive root; to gather for any purpose; hence to receive, take away, that is, remove (destroy, leave behind, put up, restore, etc.): - assemble, bring, consume, destroy, fetch, gather (in, together, up again), X generally, get (him), lose, put all together, receive, recover [another from leprosy], (be) rereward, X surely, take (away, into, up), X utterly, withdraw."]},{"k":"H623","v":["אָסָף","'âsâph","aw-sawf'","From H622; collector; Asaph, the name of three Israelites, and of the family of the first: - Asaph."]},{"k":"H624","v":["אָסֻף","'âsûph","aw-soof'","Passive participle of H622; collected (only in the plural), that is, a collection (of offerings): - threshold, Asuppim."]},{"k":"H625","v":["אֹסֶף","'ôseph","o'-sef","From H622; a collection (of fruits): - gathering."]},{"k":"H626","v":["אֲסֵפָה","'ăsêphâh","as-ay-faw'","From H622; a collection of people (only adverbially): -    X together."]},{"k":"H627","v":["אֲסֻפָּה","'ăsûppâh","as-up-paw'","Feminine of H624; a collection of (learned) men (only in the plural): - assembly."]},{"k":"H628","v":["אַסְפְּסֻף","'aspesûph","as-pes-oof'","By reduplication from H624; gathered up together, that is, a promiscuous assemblage (of people): - mixt multitude."]},{"k":"H629","v":["אָסְפַּרְנָא","'osparnâ'","os-par-naw'","(Chaldee); of Persian derivation; diligently: - fast, forthwith, speed (-ily)"]},{"k":"H630","v":["אַסְפָּתָא","'aspâthâ'","as-paw-thaw'","Of Persian derivation; Aspatha, a son of Haman: - Aspatha."]},{"k":"H631","v":["אָסַר","'âsar","aw-sar'","A primitive root; to yoke or hitch; by analogy to fasten in any sense, to join battle: - bind, fast, gird, harness, hold, keep, make ready, order, prepare, prison (-er), put in bonds, set in array, tie."]},{"k":"H632","v":["אִסָּר    אֱסָר","'ĕsâr    'issâr","es-awr', is-sawr'","From H631; an obligation or vow (of abstinence): - binding, bond."]},{"k":"H633","v":["אֱסָר","'ĕsâr","es-awr'","(Chaldee); corresponding to H632 in a legal sense; an interdict: - decree."]},{"k":"H634","v":["אֵסַר־חַדּוֹן","'êsar-chaddôn","ay-sar' chad-dohn'","Of foreign derivation; Esarchaddon, an Assyrian king: - Esar-haddon."]},{"k":"H635","v":["אֶסְתֵּר","'estêr","es-tare'","Of Persian derivation; Ester, the Jewish heroine: - Esther."]},{"k":"H636","v":["אָע","'â‛","aw","(Chaldee); corresponding to H6086; a tree or wood: - timber, wood."]},{"k":"H637","v":["אַף","'aph","af","A primitive particle; meaning accession (used as an adverb or conjugation); also or yea; adversatively though: - also, + although, and (furthermore, yet), but, even, + how much less (more, rather than), moreover, with, yea."]},{"k":"H638","v":["אַף","'aph","af","(Chaldee); corresponding to H637: - also."]},{"k":"H639","v":["אַף","'aph","af","From H599; properly the nose or nostril; hence the face, and occasionally a person; also (from the rapid breathing in passion) ire: - anger (-gry), + before, countenance, face, + forbearing, forehead, + [long-] suffering, nose, nostril, snout, X worthy, wrath."]},{"k":"H640","v":["אָפַד","'âphad","aw-fad'","A primitive root (rather a denominative from H636); to gird on (the ephod): - bind, gird."]},{"k":"H641","v":["אֵפֹד","'êphôd","ay-fode'","The same as H646 shortened; Ephod, an Israelite: - Ephod."]},{"k":"H642","v":["אֵפֻדָּה","'êphûddâh","ay-food-daw'","Feminine of H646; a girding on (of the ephod); hence generally a plating (of metal): - ephod, ornament."]},{"k":"H643","v":["אַפֶּדֶן","'appeden","ap-peh'-den","Apparently of foreign derivation; a pavilion or palace tent: - palace."]},{"k":"H644","v":["אָפָה","'âphâh","aw-faw'","A primitive root; to cook, especially to bake: - bake, (-r, [-meats])."]},{"k":"H645","v":["אֵפוֹא    אֵפוֹ","'êphô    'êphô'","ay-fo', ay-fo'","From H6311; strictly a demonstrative particle, here; but used of time, now or then: - here, now, where?"]},{"k":"H646","v":["אֵפֹד    אֵפוֹד","'êphôd    'êphôd","ay-fode', ay-fode'","Second form is a rare form; probably of foreign derivation; a girdle; specifically the ephod or high priest’s shoulder piece; also generally an image: - ephod."]},{"k":"H647","v":["אֲפִיחַ","'ăphı̂yach","af-ee'-akh","Perhaps from H6315; breeze; Aphiach, an Israelite: - Aphiah."]},{"k":"H648","v":["אָפִיל","'âphı̂yl","aw-feel'","From the same as H651 (in the sense of weakness); unripe: - not grown up."]},{"k":"H649","v":["אַפַּיִם","'appayim","ap-pah'-yim","Dual of H639; two nostrils; Appajim, an Israelite: - Appaim."]},{"k":"H650","v":["אָפִיק","'âphı̂yq","aw-feek'","From H622; properly containing, that is, a tube; also a bed or valley of a stream; also a strong thing or a hero: - brook, channel, mighty, river, + scale, stream, strong piece."]},{"k":"H651","v":["אַפֵל","'aphêl","aw-fale'","From an unused root meaning to set as the sun; dusky: - very dark."]},{"k":"H652","v":["אֹפֶל","'ôphel","o'-fel","From the same as H651; dusk: - darkness, obscurity, privily."]},{"k":"H653","v":["אֲפֵלָה","'ăphêlâh","af-ay-law'","Feminine of H651; duskiness, figuratively misfortune; concretely concealment: - dark, darkness, gloominess, X thick."]},{"k":"H654","v":["אֶפְלָל","'ephlâl","ef-lawl'","From H6419; judge; Ephlal, an Israelite: - Ephlal."]},{"k":"H655","v":["אֹפֶן","'ôphen","o'-fen","From an unused root meaning to revolve; a turn, that is, a season: -  + fitly."]},{"k":"H656","v":["אָפֵס","'âphês","aw-face'","A primitive root; to disappear, that is, cease: - be clean gone (at an end, brought to nought), fail."]},{"k":"H657","v":["אֶפֶס","'ephes","eh'-fes","From H656; cessation, that is, an end (especially of the earth); often used adverbially no further; also (like H6466) the ankle (in the dual), as being the extremity of the leg or foot: - ankle, but (only), end, howbeit, less than nothing, nevertheless (where), no, none (beside), not (any, -withstanding), thing of nought, save (-ing), there, uttermost part, want, without (cause)."]},{"k":"H658","v":["אֶפֶס דַּמִּים","'ephes dammı̂ym","eh'-fes dam-meem'","From H657 and the plural of H1818; boundary of blood drops; Ephes-Dammim, a place in Palestine: - Ephes-dammim."]},{"k":"H659","v":["אֵפַע","'êpha‛","eh'-fah","From an unused root probably meaning to breathe; properly a breath, that is, nothing: - of nought."]},{"k":"H660","v":["אֶפְעֶה","'eph‛eh","ef-eh'","From H659 (in the sense of hissing); an asp or other venomous serpent: - viper."]},{"k":"H661","v":["אָפַף","'âphaph","aw-faf'","A primitive root; to surround: - compassive"]},{"k":"H662","v":["אָפַק","'âphaq","aw-fak'","A primitive root; to contain, that is, (reflexively) abstain: - force (oneself), restrain."]},{"k":"H663","v":["אֲפִיקִ    אֲפֵק","'ăphêq    'ăphı̂yq","af-ake', af-eek'","From H662 (in the sense of strength); fortress; Aphek (or Aphik), the name of three places in Palestine: - Aphek, Aphik."]},{"k":"H664","v":["אֲפֵקָה","'ăphêqâh","af-ay-kaw'","Feminine of H663; fortress; Aphekah, a place in Palestine: - Aphekah."]},{"k":"H665","v":["אֵפֶר","'êpher","ay'-fer","From an unused root meaning to bestrew; ashes: - ashes."]},{"k":"H666","v":["אֲפֵר","'ăphêr","af-ayr'","From the same as H665 (in the sense of covering); a turban: - ashes."]},{"k":"H667","v":["אֶפְרֹחַ","'ephrôach","ef-ro'-akh","From H6524 (in the sense of bursting the shell); the brood of a bird: - young (one)."]},{"k":"H668","v":["אַפִּרְיוֹן","'appiryôn","ap-pir-yone'","Probably of Egyptian derivation; a palanquin: - chariot."]},{"k":"H669","v":["אֶפְרַיִם","'ephrayim","ef-rah'-yim","Dual of a masculine form of H672; double fruit; Ephrajim, a son of Joseph; also the tribe descended from him, and its territory: - Ephraim Ephraimites"]},{"k":"H670","v":["אֲפָרְסַי","'ăphâresay","af-aw-re-sah'","(Chaldee); of foreign origin (only in the plural); an Apharesite or inhabitant of an unknown region of Assyria: - Apharsite."]},{"k":"H671","v":["אֲפַרְסַתְכַי    אֲפַרְסְכַי","'ăpharsekay    'ăpharsathkay","af-ar-sek-ah'ee, af-ar-sath-kah'ee","(Chaldee); of foreign origin (only in the plural); an Apharsekite or Apharsathkite, an unknown Assyrian tribe: - Apharsachites, Apharsathchites."]},{"k":"H672","v":["אֶפְרָתָה    אֶפְרָת","'ephrâth    'ephrâthâh","ef-rawth', ef-raw'-thaw","From H6509; fruitfulness; Ephrath, another name for Bethlehem; once used in Psa_132:6 perhaps for Ephraim; also of an Israelitish woman: - Ephrath, Ephratah."]},{"k":"H673","v":["אֶפְרָתִי","'ephrâthı̂y","ef-rawth-ee'","Patrial from H672; an Ephrathite or an Ephraimite: - Ephraimite, Ephrathite."]},{"k":"H674","v":["אַפְּתֹם","'appethôm","ap-pe-thome'","(Chaldee); of Persian origin; revenue; others at the last: - revenue."]},{"k":"H675","v":["אֶצְבֹּן    אֶצְבּוֹן","'etsbôn    'etsbôn","ets-bone', ets-bone'","Of uncertain derivation; Etsbon, the name of two Israelites: - Ezbon."]},{"k":"H676","v":["אֶצְבַּע","'etsba‛","ets-bah'","From the same as H6648 (in the sense of grasping); some thing to seize with, that is, a finger; by analogy a toe: - finger, toe."]},{"k":"H677","v":["אֶצְבַּע","'etsba‛","ets-bah'","(Chaldee); corresponding to H676: - finger, toe."]},{"k":"H678","v":["אָצִיל","'âtsı̂yl","aw-tseel'","From H680 (in its secondary sense of separation); an extremity (Isa_41:9), also a noble: - chief man, noble."]},{"k":"H679","v":["אַצִּיל","'atstsı̂yl","ats-tseel'","From H680 (in its primary sense of uniting); a joint of the hand (that is, knuckle); also (according to some) a partywall (Eze_41:8): - [arm] hole, great."]},{"k":"H680","v":["אָצַל","'âtsal","aw-tsal'","A primitive root; properly to join; used only as a denominative from H681; to separate; hence to select, refuse, contract: - keep, reserve, straiten, take."]},{"k":"H681","v":["אֵצֶל","'êtsel","ay'-tsel","From H680 (in the sense of joining); a side; (as a preposition) near: - at, (hard) by, (from) (beside), near (unto), toward, with. See also H1018."]},{"k":"H682","v":["אַצֵל","'atsêl","aw-tsale'","From H680; noble; Atsel, the name of an Israelite, and of a place in Palestine: - Azal, Azel."]},{"k":"H683","v":["אֲצַלְיָהוּ","'ătsalyâhû","ats-al-yaw'-hoo","From H680 and H3050 prolonged; Jah has reserved; Atsaljah, an Israelite: - Azaliah."]},{"k":"H684","v":["אֹצֶם","'ôtsem","o'-tsem","From an unused root probably meaning to be strong; strength (that is, strong); Otsem, the name of two Israelites: - Ozem."]},{"k":"H685","v":["אֶצְעָדָה","'ets‛âdâh","ets-aw-daw'","A variation from H6807; properly a step chain; by analogy a bracelet: - bracelet, chain."]},{"k":"H686","v":["אָצַר","'âtsar","aw-tsar","A primitive root; to store up: - (lay up in ) store, (make) treasure (-r)."]},{"k":"H687","v":["אֶצֶר","'etser","ay'-tser","From H686; treasure; Etser, an Idumaean: - Ezer."]},{"k":"H688","v":["אֶקְדָּח","'eqdâch","ek-dawkh'","From H6916; burning, that is, a carbuncle or other fiery gem: - carbuncle."]},{"k":"H689","v":["אַקּוֹ","'aqqô","ak-ko'","Probably from H602; slender, that is, the ibex: - wild goat."]},{"k":"H690","v":["אֲרָא","'ărâ'","ar-aw'","Probably for H738; lion; Ara, an Israelite: - Ara."]},{"k":"H691","v":["אֶרְאֵל","'er'êl","er-ale'","Probably for H739; a hero (collectively): - valiant one."]},{"k":"H692","v":["אַרְאֵלִי","'ar'êlı̂y","ar-ay-lee'","From H691; heroic; Areli (or an Arelite, collectively), an Israelite and his descendants: - Areli, Arelites."]},{"k":"H693","v":["אָרַב","'ârab","aw-rab'","A primitive root; to lurk: - (lie in) ambush (-ment), lay (lie in) wait."]},{"k":"H694","v":["אֲרָב","'ărâb","ar-awb'","From H693; ambush; Arab, a place in Palestine: - Arab."]},{"k":"H695","v":["אֶרֶב","'ereb","eh'-reb","From H693; ambuscade: - den, lie in wait."]},{"k":"H696","v":["אֹרֶב","'ôreb","o'-reb","The same as H695: - wait."]},{"k":"H697","v":["אַרְבֶּה","'arbeh","ar-beh'","From H7235; a locust (from its rapid increase): - grasshopper, locust."]},{"k":"H698","v":["אָרֳבָה","'orŏbâh","or-ob-aw'","Feminine of H696 (only in the plural); ambuscades: - spoils."]},{"k":"H699","v":["אֲרֻבָּה","'ărubbâh","ar-oob-baw'","Feminine participle passive of H693 (as if for lurking); a lattice; (by implication) a window, dove cot (because of the pigeon holes), chimney (with its apertures for smoke), sluice (with openings for water): - chimney, window."]},{"k":"H700","v":["אֲרֻבּוֹת","'ărubbôth","ar-oob-both","Plural of H699; Arubboth, a place in Palestine: - Aruboth."]},{"k":"H701","v":["אַרְבִּי","'arbı̂y","ar-bee'","Patrial from H694; an Arbite or native of Arab: - Arbite."]},{"k":"H702","v":["אַרְבָּעָה     אַרְבַּע","'arba‛    'arbâ‛âh","ar-bah', ar-baw-aw'","The second form is the masculine form; from H7251; four: - four."]},{"k":"H703","v":["אַרְבַּע","'arba‛","ar-bah'","(Chaldee); corresponding to H702: - four."]},{"k":"H704","v":["אַרְבַּע","'arba‛","ar-bah'","The same as H702; Arba, one of the Anakim: - Arba."]},{"k":"H705","v":["אַרְבָּעִים","'arbâ‛ı̂ym","ar-baw-eem'","Multiple of H702; forty: - forty."]},{"k":"H706","v":["אַרְבַּעְתַּיִם","'arba‛tayim","ar-bah-tah'-yim","Dual of H702; fourfold: - fourfold."]},{"k":"H707","v":["אָרַג","'ârag","aw-rag'","A primitive root; to plait or weave: - weaver (-r)."]},{"k":"H708","v":["אֶרֶג","'ereg","eh'-reg","From H707; a weaving; a braid; also a shuttle: - beam, weaver’s shuttle."]},{"k":"H709","v":["אַרְגֹּב","'argôb","ar-gobe'","From the same as H7263; stony; Argob, a district of Palestine: - Argob."]},{"k":"H710","v":["אַרְגְּוָן","'argevân","arg-ev-awn'","A variation for H713; purple: - purple."]},{"k":"H711","v":["אַרְגְּוָן","'argevân","arg-ev-awn'","(Chaldee); corresponding to H710: - scarlet."]},{"k":"H712","v":["אַרְגָּז","'argâz","ar-gawz'","Perhaps from H7264 (in the sense of being suspended); a box (as a pannier): - coffer."]},{"k":"H713","v":["אַרְגָּמָן","'argâmân","ar-gaw-mawn'","Of foreign origin; purple (the color or the dyed stuff): - purple."]},{"k":"H714","v":["אַרְדְּ","'ard","ard","From an unused root probably meaning to wander; fugitive; Ard, the name of two Israelites: - Ard."]},{"k":"H715","v":["אַרְדּוֹן","'ardôn","ar-dohn'","From the same as H714; roaming; Ardon, an Israelite: - Ardon."]},{"k":"H716","v":["אַרְדִּי","'ardı̂y","ar-dee'","Patronymic from H714; an Ardite (collectively) or descendant of Ard: - Ardites."]},{"k":"H717","v":["אָרָה","'ârâh","aw-raw'","A primitive root; to pluck: - gather, pluck."]},{"k":"H718","v":["אֲרוּ","'ărû","ar-oo'","(Chaldee); probably akin to H431; lo!: - behold, lo."]},{"k":"H719","v":["אַרְוַד","'arvad","ar-vad'","Probably from H7300; a refuge for the roving; Arvad, an island city of Palestine: - Arvad."]},{"k":"H720","v":["אֲרוֹד","'ărôd","ar-ode'","An orthographical variation of H719; fugitive; Arod, an Israelite: - Arod."]},{"k":"H721","v":["אַרְוָדִי","'arvâdı̂y","ar-vaw-dee'","Patrial from H719; an Arvadite or citizen of Arvad: - Arvadite."]},{"k":"H722","v":["אֲרוֹדִי","'ărôdı̂y","ar-o-dee'","Patronymic from H721; an Arodite or descendant of Arod: - Arodi, Arodites."]},{"k":"H723","v":["אֲרָיָה    אֻרְוָה","'ûrvâh    'ărâyâh","oor-vaw', ar-aw-yah'","From H717 (in the sense of feeding); a herding place for an animal: - stall."]},{"k":"H724","v":["אֲרֻכָה    אֲרוּכָה","'ărûkâh    'ărûkâh","ar-oo-kaw', ar-oo-kaw'","Feminine passive participle of H748 (in the sense of restoring to soundness); wholeness (literally or figuratively): - health, made up, perfected."]},{"k":"H725","v":["אֲרוּמָה","'ărûmâh","ar-oo-maw'","A variation of H7316; height; Arumah, a place in Palestine: - Arumah."]},{"k":"H726","v":["אֲרוֹמִי","'ărômı̂y","ar-o-mee'","A clerical error for H130; an Edomite: - Syrian."]},{"k":"H727","v":["אָרֹן    אָרוֹן","'ârôn    'ârôn","aw-rone', aw-rone'","From H717 (in the sense of gathering); a box: - ark, chest, coffin."]},{"k":"H728","v":["אַנִיָּה    אוֹרְנָה    אֲרַוְנָה","'ăravnâh    'ôrnâh    'anı̂yâh","ar-av-naw', ore-naw', ar-nee-yaw'","All forms by orthographical variation for H711; Aravnah (or Arnijah or Ornah), a Jebusite: - Araunah."]},{"k":"H729","v":["אָרַז","'âraz","aw-raz'","A primitive root; to be firm; used only in the passive participle as a denominative from H730; of cedar: - made of cedar."]},{"k":"H730","v":["אֶרֶז","'erez","eh'-rez","From H729; a cedar tree (from the tenacity of its roots): - cedar (tree)."]},{"k":"H731","v":["אַרְזָה","'arzâh","ar-zaw'","Feminine of H730; cedar wainscoting: - cedar work."]},{"k":"H732","v":["אָרַח","'ârach","aw-rakh'","A primitive root; to travel: - go, wayfaring (man)."]},{"k":"H733","v":["אָרַח","'ârach","aw-rakh'","From H732; wayfaring; Arach, the name of three Israelites: - Arah."]},{"k":"H734","v":["אֹרַח","'ôrach","o'-rakh","From H732; a well trodden road (literally or figuratively); also a caravan: - manner, path, race, rank, traveller, troop, [by-, high-] way."]},{"k":"H735","v":["אֹרַח","'ôrach","o'-rakh","(Chaldee); corresponding to H734; a road: - way."]},{"k":"H736","v":["אֹרְחָה","'ôrchâh","o-rekh-aw'","Feminine active participle of H732; a caravan: - (travelling) company."]},{"k":"H737","v":["אֲרֻחָה","'ărûchâh","ar-oo-khaw'","Feminine passive participle of H732 (in the sense of appointing); a ration of food: - allowance, diet, dinner, victuals."]},{"k":"H738","v":["אַרְיֵה    אֲרִי","'ărı̂y    'aryêh","ar-ee', ar-yay'","From H717 (in the sense of violence); a lion: - (young) lion, + pierce [from the margin]."]},{"k":"H739","v":["אֲרִאֵל    אֲרִיאֵל","'ărı̂y'êl    'ări'êl","ar-ee-ale', ar-ee-ale'","From H738 and H410; lion of God, that is, heroic: - lionlike men."]},{"k":"H740","v":["אֲרִיאֵל","'ărı̂y'êl","ar-ee-ale'","The same as H739; Ariel, a symbolical name for Jerusalem, also the name of an Israelite: - Ariel."]},{"k":"H741","v":["אֲרִאֵיל","'ări'êyl","ar-ee-ale'","Either by transposition for H739 or more probable, an orthographical variation for H2025; the altar of the Temple: - altar."]},{"k":"H742","v":["אֲרִידַי","'ărı̂yday","ar-ee-dah'-ee","Of Persian origin; Aridai, a son of Haman: - Aridai."]},{"k":"H743","v":["אֲרִידָתָא","'ărı̂ydâthâ'","ar-ee-daw-thaw'","Of Persian origin; Aridatha, a son of Haman: - Aridatha."]},{"k":"H744","v":["אַרְיֵה","'aryêh","ar-yay'","(Chaldee); corresponding to H738: - lion."]},{"k":"H745","v":["אַרְיֵה","'aryêh","ar-yay'","The same as H738; lion; Arjeh, an Israelite: - Arieh."]},{"k":"H746","v":["אֲרְיוֹךְ","'ăryôk","ar-yoke'","Of foreign origin; Arjok, the name of two Babylonians: - Arioch."]},{"k":"H747","v":["אֲרִיסַי","'ărı̂ysay","ar-ee-sah'-ee","Of Persian origin; Arisai, a son of Haman: - Arisai."]},{"k":"H748","v":["אָרַךְ","'ârak","aw-rak'","A primitive root; to be (causatively make) long (literally or figuratively): - defer, draw out, lengthen, (be, become, make, pro-) long, + (out-, over-) live, tarry (long)."]},{"k":"H749","v":["אֲרַךְ","'ărak","ar-ak'","(Chaldee); properly corresponding to H748, but used only in the sense of reaching to a given point; to suit: - be meet."]},{"k":"H750","v":["אָרֵךְ","'ârêk","aw-rake'","From H748; long: - long [-suffering, -winged], patient, slow [to anger]."]},{"k":"H751","v":["אֶרֶךְ","'erek","eh'-rek","From H748; length; Erek, a place in Babylon: - Erech."]},{"k":"H752","v":["אָרֹךְ","'ârôk","aw-roke'","From H748; long: - long."]},{"k":"H753","v":["אֹרֶךְ","'ôrek","o'-rek","From H748; length: -  + for ever, length, long."]},{"k":"H754","v":["אַרְכָּה    אַרְכָּא","'arkâ'    'arkâh","ar-kaw', ar-kaw'","(Chaldee); from H749; length: - lengthening, prolonged."]},{"k":"H755","v":["אַרְכֻבָה","'arkûbâh","ar-koo-baw'","(Chaldee); from an unused root corresponding to H7392 (in the sense of bending the knee); the knee: - knee."]},{"k":"H756","v":["אַרְכְּוַי","'arkevay","ar-kev-ah'ee","(Chaldee); patrial from H751; an Arkevite (collectively) or native of Erek: - Archevite."]},{"k":"H757","v":["אַרְכִּי","'arkı̂y","ar-kee'","Patrial from another place (in Palestine) of similar name with H751; an Arkite or native of Erek: - Archi, Archite."]},{"k":"H758","v":["אֲרָם","'ărâm","arawm'","From the same as H759; the highland; Aram or Syria, and its inhabitants; also the name of a son of Shem, a grandson of Nahor, and of an Israelite: - Aram, Mesopotamia, Syria, Syrians."]},{"k":"H759","v":["אַרְמוֹן","'armôn","ar-mone'","From an unused root (meaning to be elevated); a citadel (from its height): - castle, palace. Compare H2038."]},{"k":"H760","v":["אֲרַם צוֹבָה","'ăram tsôbâh","ar-am' tso-baw'","From H758 and H6678; Aram of Tsoba (or Coele-syria): - Aram-zobah."]},{"k":"H761","v":["אֲרַמִּי","'ărammı̂y","ar-am-mee'","Patrial from H758; an Aramite or Aramaean: - Syrian, Aramitess."]},{"k":"H762","v":["אֲרָמִית","'ărâmı̂yth","ar-aw-meeth'","Feminine of H761; (only adverbially) in Aramaean: - in the Syrian language (tongue), in Syriack."]},{"k":"H763","v":["אֲרַם נַהֲרַיִם","'ăram nahărayim","ar-am' nah-har-ah'-yim","From H758 and the dual of H5104; Aram of (the) two rivers (Euphrates and Tigris) or Mesopotamia: - Aham-naharaim, Mesopotamia."]},{"k":"H764","v":["אַרְמֹנִי","'armônı̂y","ar-mo-nee'","From H759; palatial; Armoni, an Israelite: - Armoni."]},{"k":"H765","v":["אֲרָן","'ărân","ar-awn'","From H7442; stridulous; Aran, an Edomite: - Aran."]},{"k":"H766","v":["אֹרֶן","'ôren","o'-ren","From the same as H765 (in the sense of strength); the ash tree (from its toughness): - ash."]},{"k":"H767","v":["אֹרֶן","'ôren","o'-ren","The same as H766; Oren, an Israelite: - Oren."]},{"k":"H768","v":["אַרְנֶבֶת","'arnebeth","ar-neh'-beth","Of uncertain derivation; the hare: - hare."]},{"k":"H769","v":["אַרְנֹן    אַרְנוֹן","'arnôn    'arnôn","ar-nohn', ar-nohn'","From H7442; a brawling stream; the Arnon, a river east of the Jordan; also its territory: - Arnon."]},{"k":"H770","v":["אַרְנָן","'arnân","ar-nawn'","Probably from the same as H769; noisy; Arnan, an Israelite: - Arnan."]},{"k":"H771","v":["אָרְנָן","'ornân","or-nawn'","Probably from H766; strong; Ornan, a Jebusite: - Ornan. See H728."]},{"k":"H772","v":["אֲרַע","'ăra‛","ar-ah'","(Chaldee); corresponding to H776; the earth; by implication (figuratively) low: - earth, inferior."]},{"k":"H773","v":["אַרְעִית","'ar‛ı̂yth","arh-eeth'","(Chaldee); feminine of H772; the bottom: - bottom."]},{"k":"H774","v":["אַרְפָּד","'arpâd","ar-pawd'","From H7502; spread out; Arpad, a place in Syria: - Arpad, Arphad."]},{"k":"H775","v":["אַרְפַּכְשַׁד","'arpakshad","ar-pak-shad'","Probably of foreign origin; Arpakshad, a son of Noah; also the region settled by him: - Arphaxad."]},{"k":"H776","v":["אֶרֶץ","'erets","eh'-rets","From an unused root probably meaning to be firm; the earth (at large, or partitively a land): -    X common, country, earth, field, ground, land, X nations, way, + wilderness, world."]},{"k":"H777","v":["אַרְצָא","'artsâ'","ar-tsaw'","From H776; earthiness; Artsa, an Israelite: - Arza."]},{"k":"H778","v":["אֲרַק","'ăraq","ar-ak'","(Chaldee); by transmutation for H772; the earth: - earth."]},{"k":"H779","v":["אָרַר","'ârar","aw-rar'","A primitive root; to execrate: -  X bitterly curse."]},{"k":"H780","v":["אֲרָרַט","'ărâraṭ","ar-aw-rat'","Of foreign origin; Ararat (or rather Armenia): - Ararat, Armenia."]},{"k":"H781","v":["אָרַשׂ","'âraś","aw-ras'","A primitive root; to engage for matrimony: - betroth, espouse."]},{"k":"H782","v":["אֲרֶשֶׁת","'ăresheth","ar-eh'-sheth","From H781 (in the sense of desiring to possess); a longing for: - request."]},{"k":"H783","v":["אַרְתַּחְשַׁשְׁתְּא    אַרְתַּחְשַׁשְׁתָּא","'artachshashtâ'    'artachshasht'","ar-takh-shash-taw', ar-takh-shasht'","Of foreign origin; Artachshasta (or Artaxerxes), a title (rather than name) of several Persian kings: - Artaxerxes."]},{"k":"H784","v":["אֵשׁ","'êsh","aysh","A primitive word; fire (literally or figuratively): - burning, fiery, fire, flaming, hot."]},{"k":"H785","v":["אֵשׁ","'êsh","aysh","(Chaldee); corresponding to H784: - flame."]},{"k":"H786","v":["אִשׁ","'ish","eesh","Identical (in origin and formation) with H784; entity; used only adverbially, there is or are: - are there, none can. Compare H3426."]},{"k":"H787","v":["אשׁ","'ôsh","ohsh","(Chaldee); corresponding (by transposition and abbreviation) to H803; a foundation: - foundation."]},{"k":"H788","v":["אַשְׁבֵּל","'ashbêl","ash-bale'","Probably from the same as H7640; flowing; Ashbel, an Israelite: - Ashbel."]},{"k":"H789","v":["אַשְׁבֵּלִי","'ashbêlı̂y","ash-bay-lee'","Patronymic from H788; an Ashbelite (collectively) or descendant of Ashbel: - Ashbelites."]},{"k":"H790","v":["אֶשְּׁבָּן","'eshbân","esh-bawn'","Probably from the same as H7644; vigorous; Eshban, an Idumaean: - Eshban."]},{"k":"H791","v":["אַשְׁבֵּעַ","'ashbêa‛","ash-bay'-ah","From H7650; adjurer; Asbea, an Israelite: - Ashbea."]},{"k":"H792","v":["אֶשְׁבַּעַל","'eshba‛al","esh-bah'-al","From H376 and H1168; man of Baal; Eshbaal (or Ishbosheth), a son of King Saul: - Eshbaal."]},{"k":"H793","v":["אֶשֶׁד","'eshed","eh'-shed","From an unused root meaning to pour; an outpouring: - stream."]},{"k":"H794","v":["אֲשֵׁדָה","'ăshêdâh","ash-ay-daw'","Feminine of H793; a ravine: - springs."]},{"k":"H795","v":["אַשְׁדּוֹד","'ashdôd","ash-dode'","From H7703; ravager; Ashdod, a place in Palestine: - Ashdod."]},{"k":"H796","v":["אַשְׁדּוֹדִי","'ashdôdı̂y","ash-do-dee'","Patrial from H795; an Ashdodite (often collectively) or inhabitant of Ashdod: - Ashdodites, of Ashdod."]},{"k":"H797","v":["אַשְׁדּוֹדִית","'ashdôdı̂yth","ash-do-deeth'","Feminine of H796; (only adverbially) in the language of Ashdod: - in the speech of Ashdod."]},{"k":"H798","v":["אַשְׁדּוֹת הַפִּסְגָּה","'ashdôth happisgâh","ash-doth' hap-pis-gaw'","From the plural of H794 and H6449 with the article interposed; ravines of the Pisgah; Ashdoth-Pisgah, a place east of the Jordan: - Ashdoth-pisgah."]},{"k":"H799","v":["אֶשְׁדָּת","'eshdâth","esh-dawth'","From H784 and H1881; a fire law: - fiery law."]},{"k":"H800","v":["אֶשָּׁה","'eshshâh","esh-shaw'","Feminine of H784; fire: - fire."]},{"k":"H801","v":["אִשָּׁה","'ishshâh","ish-shaw'","The same as H800, but used in a liturgical sense; properly a burnt offering; but occasionally of any sacrifice: - (offering, sacrifice), (made) by fire."]},{"k":"H802","v":["נָשִׁים    אִשָּׁה","'ishshâh    nâshı̂ym","ish-shaw', naw-sheem'","The first form is the feminine of H376 or H582; the second form is an irregular plural; a woman (used in the same wide sense as H582).: - [adulter]ess, each, every, female, X many, + none, one, + together, wife, woman. Often unexpressed in English."]},{"k":"H803","v":["אֲשׁוּיָה","'ăshûyâh","ash-oo-yah'","Feminine passive participle from an unused root meaning to found; foundation: - foundation."]},{"k":"H804","v":["אַשֻּׁר    אַשּׁוּר","'ashshûr    'ashshûr","ash-shoor', ash-shoor'","Apparently from H833 (in the sense of successful); Ashshur, the second son of Shem; also his descendants and the country occupied by them (that is, Assyria), its region and its empire: - Asshur, Assur, Assyria, Assyrians. See H838."]},{"k":"H805","v":["אַשּׁוּרִי    אֲשׁוּרִי","'ăshûrı̂y    'ashshûrı̂y","ash-oo-ree', ash-shoo-ree'","From a patrial word of the same form as H804; an Ashurite (collectively) or inhabitant of Ashur, a district in Palestine: - Asshurim, Ashurites."]},{"k":"H806","v":["אַשְׁחוּר","'ashchûr","ash-khoor'","Probably from H7835; black; Ashchur, an Israelite: - Ashur."]},{"k":"H807","v":["אֲשִׁימָא","'ăshı̂ymâ'","ash-ee-maw'","Of foreign origin; Ashima, a deity of Hamath: - Ashima."]},{"k":"H808","v":["אָשִׁישׁ","'âshı̂ysh","aw-sheesh'","From the same as H784 (in the sense of pressing down firmly; compare H803); a (ruined) foundation: - foundation."]},{"k":"H809","v":["אֲשִׁישָׁה","'ăshı̂yshâh","ash-ee-shaw'","Feminine of H808; something closely pressed together, that is, a cake of raisins or other comfits: - flagon."]},{"k":"H810","v":["אֶשֶׁךְ","'eshek","eh'-shek","From an unused root (probably meaning to bunch together); a testicle (as a lump): - stone."]},{"k":"H811","v":["אֶשְׁכֹּל    אֶשְׁכּוֹל","'eshkôl    'eshkôl","esh-kole', esh-kole'","Probably prolonged from H810; a bunch of grapes or other fruit: - cluster (of grapes)."]},{"k":"H812","v":["אֶשְׁכֹּל","'eshkôl","esh-kole'","The same as H811; Eshcol, the name of an Amorite, also of a valley in Palestine: - Eshcol."]},{"k":"H813","v":["אַשְׁכְּנַז","'ashkenaz","ash-ken-az'","Of foreign origin; Ashkenaz, a Japhethite, also his descendants: - Ashkenaz."]},{"k":"H814","v":["אֶשְׁכָּר","'eshkâr","esh-cawr'","For H7939; a gratuity: - gift, present."]},{"k":"H815","v":["אֵשֶׁל","'êshel","ay'-shel","From a root of uncertain signification; a tamarisk tree; by extension a grove of any kind: - grove, tree."]},{"k":"H816","v":["אָשֵׁם    אָשַׁם","'âsham    'âshêm","aw-sham', aw-shame'","A primitive root; to be guilty; by implication to be punished or perish: -  X certainly, be (-come, made) desolate, destroy, X greatly, be (-come, found, hold) guilty, offend (acknowledge offence), trespassive"]},{"k":"H817","v":["אָשָׁם","'âshâm","aw-shawm'","From H816; guilt; by implication a fault; also a sin offering: - guiltiness, (offering for) sin, trespass (offering)."]},{"k":"H818","v":["אָשֵׁם","'âshêm","aw-shame'","From H816; guilty; hence presenting a sin offering: - one which is faulty, guilty."]},{"k":"H819","v":["אַשְׁמָה","'ashmâh","ash-maw'","Feminine of H817; guiltiness, a fault, the presentation of a sin offering: - offend, sin, (cause of) trespass (-ing, offering)."]},{"k":"H820","v":["אַשְׁמָן","'ashmân","ash-mawn'","Probably from H8081; a fat field: - desolate place."]},{"k":"H821","v":["אַשְׁמֹרֶת    אַשְׁמוּרָה    אַשְׁמֻרָה","'ashmûrâh    'ashmûrâh    'ashmôreth","ash-moo-raw', ash-moo-raw', ash-mo'-reth","(Feminine) from H8104; a night watch: - watch."]},{"k":"H822","v":["אֶשְׁנָב","'eshnâb","esh-nawb'","Apparently from an unused root (Probably meaning to leave interstices); a latticed window: - casement, lattice."]},{"k":"H823","v":["אַשְׁנָה","'ashnâh","ash-naw'","Probably a variation for H3466; Ashnah, the name of two places in Palestine: - Ashnah."]},{"k":"H824","v":["אֶשְׁעָן","'esh‛ân","esh-awn'","From H8172; support; Eshan, a place in Palestine: - Eshean."]},{"k":"H825","v":["אַשָּׁף","'ashshâph","ash-shawf'","From an unused root (probably meaning to lisp, that is, practice enchantment); a conjurer: - astrologer."]},{"k":"H826","v":["אַשָּׁף","'ashshâph","ash-shawf'","(Chaldee); corresponding to H825: - astrologer."]},{"k":"H827","v":["אַשְׁפָּה","'ashpâh","ash-paw'","Perhaps (feminine) from the same as H825 (in the sense of covering); a quiver or arrow case: - quiver."]},{"k":"H828","v":["אַשְׁפְּנַז","'ashpenaz","ash-pen-az'","Of foreign origin; Ashpenaz, a Babylonian eunuch: - Ashpenaz."]},{"k":"H829","v":["אֶשְׁפָּר","'eshpâr","esh-pawr'","Of uncertain derivation; a measured portion: - good piece (of flesh)."]},{"k":"H830","v":["שְׁפֹת    אַשְׁפּוֹת    אַשְׁפֹּת","'ashpôth    'ashpôth    shephôth","ash-pohth', ash-pohth', shef-ohth'","Plural of a noun of the same form as H827, from H8192 (in the sense of scraping); a heap of rubbish or filth: - dung (hill)."]},{"k":"H831","v":["אַשְׁקְלוֹן","'ashqelôn","ash-kel-one'","Probably from H8254 in the sense of weighing place (that is, mart); Ashkelon, a place in Palestine: - Ashkelon, Askalon."]},{"k":"H832","v":["אֶשְׁקְלוֹנִי","'eshqelônı̂y","esh-kel-o-nee'","Patrial from H831; an Ashkelonite (collectively) or inhabitant of Ashkelon: - Eshkalonites."]},{"k":"H833","v":["אָשֵׁר    אָשַׁר","'âshar    'âshêr","aw-shar', aw-share'","A primitive root; to be straight (used in the widest sense, especially to be level, right, happy); figuratively to go forward, be honest, prosper: - (call, be) bless (-ed, happy), go, guide, lead, relieve."]},{"k":"H834","v":["אֲשֶׁר","'ăsher","ash-er'","A primitive relative pronoun (of every gender and number); who, which, what, that; also (as adverb and conjunction) when, where, how, because, in order that, etc.: - X after, X alike, as (soon as), because, X every, for, + forasmuch, + from whence, + how (-soever), X if, (so) that ([thing] which, wherein), X though, + until, + whatsoever, when, where (+ -as, -in, -of, -on, -soever, -with), which, whilst, + whither (-soever), who (-m, -soever, -se). As it is indeclinable, it is often accompanied by the personal pronoun expletively, used to show the connection."]},{"k":"H835","v":["אֶשֶׁר","'esher","eh'-sher","From H833; happiness; only in masculine plural construction as interjection, how happy!: - blessed, happy."]},{"k":"H836","v":["אָשֵׁר","'âshêr","aw-share'","From H833; happy; Asher, a son of Jacob, and the tribe descended from him, with its territory; also a place in Palestine: - Asher."]},{"k":"H837","v":["אֹשֶׁר","'ôsher","o'-sher","From H833; happiness: - happy."]},{"k":"H838","v":["אַשֻּׁר    אָשֻׁר","'âshûr    'ashshûr","aw-shoor', ash-shoor'","From H833 in the sense of going; a step: - going, step."]},{"k":"H839","v":["אֲשֻׁר","'ăshûr","ash-oor'","Contracted for H8391; the cedar tree or some other light elastic wood: - Ashurite."]},{"k":"H840","v":["אֲשַׂרְאֵל","'ăśar'êl","as-ar-ale'","By orthographical variation from H833 and H410; right of God; Asarelah, an Israelite: - Asareel."]},{"k":"H841","v":["אֲשַׂרְאֵלָה","'ăśar'êlâh","as-ar-ale'-aw","From the same as H840; right towards God; Asarelah, an Israelite: - Asarelah. Compare H3840."]},{"k":"H842","v":["אֲשֵׁירָה    אֲשֵׁרָה","'ăshêrâh    'ăshêyrâh","ash-ay-raw', ash-ay-raw'","From H833; happy; asherah (or Astarte) a Phoenician goddess; also an image of the same: - grove. Compare H6253."]},{"k":"H843","v":["אָשֵׁרִי","'âshêrı̂y","aw-shay-ree'","Patronymic from H836; an Asherite (collectively) or descendant of Asher: - Asherites."]},{"k":"H844","v":["אַשְׂרִיאֵל","'aśrı̂y'êl","as-ree-ale'","An orthographical variation for H840; Asriel, the name of two Israelites: - Ashriel, Asriel."]},{"k":"H845","v":["אַשְׂרִאֵלִי","'aśri'êlı̂y","as-ree-ale-ee'","Patronymic from H844; an Asrielite (collectively) or descendant of Asriel: - Asrielites."]},{"k":"H846","v":["אֻשַּׁרְנָא","'ûshsharnâ'","oosh-ar-naw'","(Chaldee); from a root corresponding to H833; a wall (from its uprightness): - wall."]},{"k":"H847","v":["אֶשְׁתָּאוֹל    אֶשְׁתָּאֹל","'eshtâ'ôl    'eshtâ'ôl","esh-taw-ole', esh-taw-ole'","Probably from H7592; intreaty; Eshtaol, a place in Palestine: - Eshtaol."]},{"k":"H848","v":["אֶשְׁתָּאֻלִי","'eshtâ'ûlı̂y","esh-taw-oo-lee'","Patrial from H847; an Eshtaolite (collectively) or inhabitant of Eshtaol: - Eshtaulites."]},{"k":"H849","v":["אֶשְׁתַּדּוּר","'eshtaddûr","esh-tad-dure'","(Chaldee); from H7712 (in a bad sense); rebellion: - sedition."]},{"k":"H850","v":["אֶשְׁתּוֹן","'eshtôn","esh-tone'","Probably from the same as H7764; restful; Eshton, an Israelite: - Eshton."]},{"k":"H851","v":["אֶשְׁתְּמֹה    אֶשְׁתְּמוֹעַ    אֶשְׁתְּמֹעַ","'eshtemôa‛    'eshtemôa‛    'eshtemôh","esh-tem-o'-ah, esh-tem-o'-ah, esh-tem-o'","From H8085 (in the sense of obedience); Eshtemoa or Eshtemoh, a place in Palestine: - Eshtemoa, Eshtemoh."]},{"k":"H852","v":["אָת","'âth","awth","(Chaldee); corresponding to H226; a portent: - sign."]},{"k":"H853","v":["אֵת","'êth","ayth","Apparently contracted from H226 in the demonstrative sense of entity; properly self (but generally used to point out more definitely the object of a verb or preposition, even or namely): - (As such unrepresented in English.)"]},{"k":"H854","v":["אֵת","'êth","ayth","Probably from H579; properly nearness (used only as a preposition or adverb), near; hence generally with, by, at, among, etc.: - against, among, before, by, for, from, in (-to), (out) of, with. Often with another preposition prefixed."]},{"k":"H855","v":["אֵת","'êth","ayth","Of uncertain derivation; a hoe or other digging implement: - coulter, plowshare."]},{"k":"H856","v":["אֶתְבַּעַל","'ethba‛al","eth-bah'-al","From H854 and H1168; with Baal; Ethbaal, a Phoenician king: - Ethbaal."]},{"k":"H857","v":["אָתָא    אָתָה","'âthâh    'âthâ'","aw-thaw', aw-thaw'","A primitive root (collateral to H225 contracted); to arrive: - (be-, things to) come (upon), bring."]},{"k":"H858","v":["אָתָא אָתָה","'âthâh    'âthâ'","aw-thaw', aw-thaw'","(Chaldee); corresponding to H857: -    (be-) come, bring."]},{"k":"H859","v":["אַתֵּנָּה    אַתֵּנָה    אַתֶּן    אַתֶּם    אַתִּי    אַת    אַתָּ    אַתָּה","'attâh    'attâ    'ath    'attı̂y    'attem    'atten    'attênâh    'attênnâh","at-taw' at-taw' at-tee' at-tem' at-ten'","A primitive pronoun of the second person; thou and thee, or (plural) ye and you: - thee, thou, ye, you."]},{"k":"H860","v":["אָתוֹן","'âthôn","aw-thone'","Probably from the same as H386 (in the sense of patience); a female ass (from its docility): - (she) ass."]},{"k":"H861","v":["אַתּוּן","'attûn","at-toon'","(Chaldee); probably corresponding to H784; probably a fireplace, that is, furnace: - furnace."]},{"k":"H862","v":["אַתִּיק    אַתּוּק","'attûq    'attı̂yq","at-tooke', at-teek'","From H5423 in the sense of decreasing; a ledge or offset in a building: - gallery."]},{"k":"H863","v":["אִיתַי    אִתַּי","'ittay    'ı̂ythay","it-tah'ee, ee-thah'ee","From H854; near; Ittai or Ithai, the name of a Gittite and of an Israelite: - Ithai, Ittai."]},{"k":"H864","v":["אֵתָם","'êthâm","ay-thawm'","Of Egyptian derivation; Etham, a place in the Desert: - Etham."]},{"k":"H865","v":["אֶתְמוּל    אִתְמוֹל    אֶתְמוֹל","'ethmôl    'ithmôl    'ethmûl","eth-mole', ith-mole', eth-mool'","Probably from H853 or H854 and H4136; heretofore; definitely yesterday: -  + before (that) time, + heretofore, of late (old), + times past, yester[day]."]},{"k":"H866","v":["אֶתְנָה","'ethnâh","eth-naw'","From H8566; a present (as the price of harlotry): - reward."]},{"k":"H867","v":["אֶתְנִי","'ethnı̂y","eth-nee'","Perhaps from H866; munificence; Ethni, an Israelite: - Ethni."]},{"k":"H868","v":["אֶתְנַן","'ethnan","eth-nan'","The same as H866; a gift (as the price of harlotry or idolatry): - hire, reward."]},{"k":"H869","v":["אֶתְנַן","'ethnan","eth-nan'","The same as H868 in the sense of H867; Ethnan, an Israelite: - Ethnan."]},{"k":"H870","v":["אֲתַר","'ăthar","ath-ar'","(Chaldee); from a root corresponding to that of H871; a place; (adverbially) after: - after, place."]},{"k":"H871","v":["אֲתָרִים","'ăthârı̂ym","ath-aw-reem'","Plural from an unused root (probably meaning to step); places; Atharim, a place near Palestine: - spies."]},{"k":"H872","v":["בְּאָה","be'âh","be-aw'","From H935; an entrance to a building: - entry."]},{"k":"H873","v":["בִּאוּשׁ","bi'ûsh","be-oosh'","(Chaldee); from H888; wicked: - bad."]},{"k":"H874","v":["בָּאַר","bâ'ar","baw-ar'","A primitive root; to dig; by analogy to engrave; figuratively to explain: - declare, (make) plain (-ly)."]},{"k":"H875","v":["בְּאֵר","be'êr","be-ayr'","From H874; a pit; especially a well: - pit, well."]},{"k":"H876","v":["בְּאֵר","be'êr","be-ayr'","The same as H875; Beer, a place in the Desert, also one in Palestine: - Beer."]},{"k":"H877","v":["בֹּאר","bô'r","bore","From H874; a cistern: - cistern."]},{"k":"H878","v":["בְּאֵרָא","be'êrâ'","be-ay-raw'","From H875; a well; Beera, an Israelite: - Beera."]},{"k":"H879","v":["בְּאֵר אֵלִים","be'êr 'êlı̂ym","be-ayr' ay-leem'","From H875 and the plural of H410; well of heroes; Beer-elim, a place in the Desert: - Beer-elim."]},{"k":"H880","v":["בְּאֵרָה","be'êrâh","be-ay-raw'","The same as H878; Berrah, an Israelite: - Beerah."]},{"k":"H881","v":["בְּאֵרוֹת","be'êrôth","be-ay-rohth'","Feminine plural of H875; wells; Beeroth, a place in Palestine: - Beeroth."]},{"k":"H882","v":["בְּאֵרִי","be'êrı̂y","be-ay-ree'","From H875; fountained; Beeri, the name of a Hittite and of an Israelite: - Beeri."]},{"k":"H883","v":["בְּאֵר לַחַי רֹאִי","be'êr lachay rô'ı̂y","be-ayr' lakh-ah'ee ro-ee'","From H875 and H2416 (with prefix) and H7208; well of a living (One) my Seer; Beer-lachai-roi, a place in the Desert: - Beer-lahai-roi."]},{"k":"H884","v":["בְּאֵר שֶׁבַע","be'êr sheba‛","be-ayr' sheh'-bah","From H875 and H7651 (in the sense of H7650); well of an oath; Beer Sheba, a place in Palestine: - Beer-shebah."]},{"k":"H885","v":["בְּאֵרֹת בּנֵי־יַעֲקַן","be'êrôth benêy-ya‛ăqan","be-ay-roth' be-nay' yah-a-can'","From the feminine plural of H875, and the plural contraction of H1121, and H3292; wells of (the) sons of Jaakan; Beeroth Bene-Jaakan, a place in the Desert: - Beeroth of the children of Jaakan."]},{"k":"H886","v":["בְּאֵרֹתִי","be'êrôthı̂y","be-ay-ro-thee'","Patrial from H881; a Beerothite or inhabitant of Beeroth: - Beerothite."]},{"k":"H887","v":["בָּאַשׁ","bâ'ash","baw-ash'","A primitive root; to smell bad; figuratively to be offensive morally: - (make to) be abhorred (had in abomination, loathsome, odious), (cause a, make to) stink (-ing savour), X utterly."]},{"k":"H888","v":["בְּאֵשׁ","be'êsh","be-aysh'","(Chaldee); corresponding to H887: - displease."]},{"k":"H889","v":["בְּאשׁ","be'ôsh","be-oshe'","From H887; a stench: - stink."]},{"k":"H890","v":["בָּאְשָׁה","bo'shâh","bosh-aw'","Feminine of H889; stink weed or any other noxious or useless plant: - cockle."]},{"k":"H891","v":["בְּאֻשִׁים","be'ûshı̂ym","be-oo-sheem'","Plural of H889; poison berries: - wild grapes."]},{"k":"H892","v":["בָּבָה","bâbâh","baw-baw'","Feminine active participle of an unused root meaning to hollow out; something hollowed (as a gate), that is, the pupil of the eye: - apple [of the eye]."]},{"k":"H893","v":["בֵּבַי","bêbay","bay-bah'ee","Probably of foreign origin; Bebai, an Israelite: - Bebai."]},{"k":"H894","v":["בָּבֶל","bâbel","baw-bel'","From H1101; confusion; Babel (that is, Babylon), including Babylonia and the Babylonian empire: - Babel, Babylon."]},{"k":"H895","v":["בָּבֶל","bâbel","baw-bel'","(Chaldee); corresponding to H894: - Babylon."]},{"k":"H896","v":["בַּבְלִי","bablı̂y","bab-lee'","(Chaldee); patrial from H895; a Babylonian: - Babylonia."]},{"k":"H897","v":["בַּג","bag","bag","A Persian word; food. For H957: - spoil [from the margin for H957.]"]},{"k":"H898","v":["בָּגַד","bâgad","baw-gad'","A primitive root; to cover (with a garment); figuratively to act covertly; by implication to pillage: - deal deceitfully (treacherously, unfaithfully), offend, transgress (-or), (depart), treacherous (dealer, -ly, man), unfaithful (-ly, man), X very."]},{"k":"H899","v":["בֶּגֶד","beged","behg'-ed","From H898; a covering, that is, clothing; also treachery or pillage: - apparel, cloth (-es, -ing), garment, lap, rag, raiment, robe, X very [treacherously], vesture, wardrobe."]},{"k":"H900","v":["בֹּגְדוֹת","bôgedôth","bohg-ed-ohth","Feminine plural active participle of H898; treacheries: - treacherous."]},{"k":"H901","v":["בָּגוֹד","bâgôd","baw-gode'","From H898; treacherous: - treacherous."]},{"k":"H902","v":["בִּגְוַי","bigvay","big-vah'ee","Probably of foreign origin; Bigvai, an Israelite: - Bigvai."]},{"k":"H903","v":["בִּגְתָא","bigthâ'","big-thaw'","Of Persian derivation; Bigtha, a eunuch of Xerxes: - Bigtha."]},{"k":"H904","v":["בִּגְתָנָא    בִּגְתָן","bigthân    bigthânâ'","big-thawn', big-thaw'-naw","Of similar derivation to H903; Bigthan or Bigthana, a eunuch of Xerxes: - Bigthan, Bigthana."]},{"k":"H905","v":["בַּד","bad","bad","From H909; properly separation; by implication a part of the body, branch of a tree, bar for carrying; figuratively chief of a city; especially (with prepositional prefix) as adverb, apart, only, besides: - alone, apart, bar, besides, branch, by self, of each alike, except, only, part, staff, strength."]},{"k":"H906","v":["בַּד","bad","bad","Perhaps from H909 (in the sense of divided fibres); flaxen thread or yarn; hence a linen garment: - linen."]},{"k":"H907","v":["בַּד","bad","bad","From H908; a brag or lie; also a liar: - liar, lie."]},{"k":"H908","v":["בָּדָא","bâdâ'","baw-daw'","A primitive root; (figuratively) to invent: - devise, feign."]},{"k":"H909","v":["בָּדַד","bâdad","baw-dad'","A primitive root; to divide, that is, (reflexively) be solitary: - alone."]},{"k":"H910","v":["בָּדָד","bâdâd","baw-dawd'","From H909; separate; adverbially separately: - alone, desolate, only, solitary."]},{"k":"H911","v":["בְּדַד","bedad","bed-ad'","From H909; separation; Bedad, an Edomite: - Bedad."]},{"k":"H912","v":["בֵּדְיָה","bêdeyâh","bay-de-yaw'","Probably shortened for H5662; servant of Jehovah; Bedejah, an Israelite: - Bedeiah."]},{"k":"H913","v":["בְּדִיל","bedı̂yl","bed-eel'","From H914; alloy (because removed by smelting); by analogy tin: -  + plummet, tin."]},{"k":"H914","v":["בָּדַל","bâdal","baw-dal'","A primitive root; to divide (in various senses literally or figuratively, separate, distinguish, differ, select, etc.): - (make, put) difference, divide (asunder), (make) separate (self, -ation), sever (out), X utterly."]},{"k":"H915","v":["בָּדָל","bâdâl","baw-dawl'","From H914; a part: - piece."]},{"k":"H916","v":["בְּדֹלַח","bedôlach","bed-o'-lakh","Probably from H914; something in pieces, that is, bdellium, a (fragrant) gum (perhaps amber); others a pearl: - bdellium."]},{"k":"H917","v":["בְּדָן","bedân","bed-awn'","Probably shortened for H5658; servile; Bedan, the name of two Israelite: - Bedan."]},{"k":"H918","v":["בָּדַק","bâdaq","baw-dak'","A primitive root; to gap open; used only as a denominative from H919; to mend a breach: - repair."]},{"k":"H919","v":["בֶּדֶק","bedeq","beh'-dek","From H918; a gap or leak (in a building or a ship): - breach, + calker."]},{"k":"H920","v":["בִּדְקַר","bidqar","bid-car'","Probably from H1856 with prepositional prefix; by stabbing, that is, assassin; Bidkar, an Israelite: - Bidkar."]},{"k":"H921","v":["בְּדַר","bedar","bed-ar'","(Chaldee); corresponding (by transposition) to H6504: to scatter: - scatter."]},{"k":"H922","v":["בֹּהוּ","bôhû","bo'-hoo","From an unused root (meaning to be empty); a vacuity, that is, (superficially) an undistinguishable ruin: - emptiness, void."]},{"k":"H923","v":["בַּהַט","bahaṭ","bah'-hat","From an unused root (probably meaning to glisten); white marble or perhaps alabaster: - red [marble]."]},{"k":"H924","v":["בְּהִילוּ","behı̂ylû","be-hee-loo'","(Chaldee); from H927; a hurry; only adverbially hastily: - in haste."]},{"k":"H925","v":["בָּהִיר","bâhı̂yr","baw-here'","From an unused root (meaning to be bright); shining: - bright."]},{"k":"H926","v":["בָּהַל","bâhal","baw-hal'","A primitive root; to tremble inwardly (or palpitate), that is, (figuratively) be (causatively make) (suddenly) alarmed or agitated; by implication to hasten anxiously: - be (make) affrighted (afraid, amazed, dismayed, rash), (be, get, make) haste (-n, -y, -ily), (give) speedy (-ily), thrust out, trouble, vex."]},{"k":"H927","v":["בְּהַל","behal","be-hal'","(Chaldee); corresponding to H926; to terrify, hasten: - in haste, trouble."]},{"k":"H928","v":["בֶּהָלָה","behâlâh","beh-haw-law'","From H926; panic, destruction: - terror, trouble."]},{"k":"H929","v":["בְּהֵמָה","behêmâh","be-hay-maw'","From an unused root (probably meaning to be mute); properly a dumb beast; especially any large quadruped or animal (often collectively): - beast, cattle."]},{"k":"H930","v":["בְּהֵמוֹת","behêmôth","be-hay-mohth'","In form a plural of H929, but really a singular of Egyptian derivation: a water ox, that is, the hippopotamus or Nile horse: - Behemoth."]},{"k":"H931","v":["בֹּהֶן","bôhen","bo'-hen","From an unused root apparently meaning to be thick; the thumb of the hand or great toe of the foot: - thumb, great toe."]},{"k":"H932","v":["בֹּהַן","bôhan","bo'-han","An orthographical variation of H931; thumb; Bohan, an Israelite: - Bohan."]},{"k":"H933","v":["בֹּהַק","bôhaq","bo'-hak","From an unused root meaning to be pale; white scurf: - freckled spot."]},{"k":"H934","v":["בֹּהֶרֶת","bôhereth","bo-heh'-reth","Feminine active participle of the same as H925; a whitish spot on the skin: - bright spot."]},{"k":"H935","v":["בּוֹא","bô'","bo","A primitive root; to go or come (in a wide variety of applications): - abide, apply, attain, X be, befall, + besiege, bring (forth, in, into, to pass), call, carry, X certainly, (cause, let, thing for) to come (against, in, out, upon, to pass), depart, X doubtless again, + eat, + employ, (cause to) enter (in, into, -tering, -trance, -try), be fallen, fetch, + follow, get, give, go (down, in, to war), grant, + have, X indeed, [in-]vade, lead, lift [up], mention, pull in, put, resort, run (down), send, set, X (well) stricken [in age], X surely, take (in), way."]},{"k":"H936","v":["בּוּז","bûz","booz","A primitive root; to disrespect: - contemn, despise, X utterly."]},{"k":"H937","v":["בּוּז","bûz","booz","From H936; disrespect: - contempt (-uously), despised, shamed."]},{"k":"H938","v":["בּוּז","bûz","booz","The same as H937; Buz, the name of a son of Nahor, and of an Israelite: - Buz."]},{"k":"H939","v":["בּוּזָה","bûzâh","boo-zaw'","Feminine passive participle of H936; something scorned; an object of contempt: - despised."]},{"k":"H940","v":["בּוּזִי","bûzı̂y","boo-zee'","Patronymic from H938; a Buzite or descendant of Buz: - Buzite."]},{"k":"H941","v":["בּוּזִי","bûzı̂y","boo-zee'","The same as H940, Buzi, an Israelite: - Buzi."]},{"k":"H942","v":["בַּוַּי","bavvay","bav-vah'ee","Probably of Persian origin; Bavvai, an Israelite: - Bavai."]},{"k":"H943","v":["בּוּךְ","bûk","book","A primitive root; to involve (literally or figuratively): - be entangled (perplexed)."]},{"k":"H944","v":["בּוּל","bûl","bool","For H2981; produce (of the earth, etc.): - food, stock."]},{"k":"H945","v":["בּוּל","bûl","bool","The same as H944 (in the sense of rain); Bul, the eight Hebrew month: - Bul."]},{"k":"H946","v":["בּוּנָה","bûnâh","boo-naw'","From H995; discretion; Bunah, an Israelite: - Bunah."]},{"k":"H947","v":["בּוּס","bûs","boos","A primitive root; to trample (literally or figuratively): - loath, tread (down, under [foot]), be polluted."]},{"k":"H948","v":["בּוּץ","bûts","boots","From an unused root (of the same form) meaning to bleach, that is, (intransitively) be white; probably cotton (of some sort): - fine (white) linen."]},{"k":"H949","v":["בּוֹצֵץ","bôtsêts","bo-tsates'","From the same as H948; shining; Botsets, a rock near Michmash: - Bozez."]},{"k":"H950","v":["בּוּקָה","bûqâh","boo-kaw'","Feminine passive participle of an unused root (meaning to be hollow); emptiness (as adjective): - empty."]},{"k":"H951","v":["בּוֹקֵר","bôqêr","bo-kare'","Properly active participle from H1239 as denominative from H1241; a cattletender: - herdman."]},{"k":"H952","v":["בּוּר","bûr","boor","A primitive root; to bore, that is, (figuratively) examine: - declare."]},{"k":"H953","v":["בּוֹר","bôr","bore","From H952 (in the sense of H877); a pit hole (especially one used as a cistern or prison): - cistern, dungeon, fountain, pit, well."]},{"k":"H954","v":["בּוּשׁ","bûsh","boosh","A primitive root; properly to pale, that is, by implication to be ashamed; also (by implication) to be disappointed, or delayed: - (be, make, bring to, cause, put to, with, a-) shame (-d), be (put to) confounded (-fusion), become dry, delay, be long."]},{"k":"H955","v":["בּוּשָׁה","bûshâh","boo-shaw'","Feminine participle passive of H954; shame: - shame."]},{"k":"H956","v":["בּוּת","bûth","booth","(Chaldee); apparently denominative from H1005; to lodge over night: - pass the night."]},{"k":"H957","v":["בַּז","baz","baz","From H962; plunder: - booty, prey, spoil (-ed)."]},{"k":"H958","v":["בָּזָא","bâzâ'","baw-zaw'","A primitive root; probably to cleave: - spoil."]},{"k":"H959","v":["בָּזָה","bâzâh","baw-zaw'","A primitive root; to disesteem: - despise, disdain, contemn (-ptible), + think to scorn, vile person."]},{"k":"H960","v":["בָּזֹה","bâzôh","baw-zo'","From H959; scorned: - despise."]},{"k":"H961","v":["בִּזָּה","bizzâh","biz-zaw'","Feminine of H957; booty: - prey, spoil."]},{"k":"H962","v":["בָּזַז","bâzaz","baw-zaz'","A primitive root; to plunder: - catch, gather, (take) for a prey, rob (-ber), spoil, take (away, spoil), X utterly."]},{"k":"H963","v":["בִּזָּיוֹן","bizzâyôn","biz-zaw-yone'","From H959; disesteem: - disesteem: - contempt."]},{"k":"H964","v":["בִּזְיוֹתְיָה","bizyôthyâh","biz-yo-the-yaw'","From H959 and H3050; contempts of Jah; Bizjothjah, a place in Palestine: - Bizjothjah."]},{"k":"H965","v":["בָּזָק","bâzâq","baw-zawk'","From an unused root meaning to lighten; a flash of lighting: - flash of lightning."]},{"k":"H966","v":["בֶּזֶק","bezeq","beh'-zek","From H965; lightning; Bezek, a place in Palestine: - Bezek."]},{"k":"H967","v":["בָּזַר","bâzar","baw-zar'","A primitive root; to disperse: - scatter."]},{"k":"H968","v":["בִּזְתָא","bizthâ'","biz-thaw'","Of Persian origin; Biztha, a eunuch of Xerxes: - Biztha."]},{"k":"H969","v":["בָּחוֹן","bâchôn","baw-khone'","From H974; an assayer of metals: - tower."]},{"k":"H970","v":["בָּחֻר    בָּחוּר","bâchûr    bâchûr","baw-khoor', baw-khoor'","Participle passive of H977; properly selected, that is, a youth (often collectively): - (choice) young (man), chosen, X hole."]},{"k":"H971","v":["בַּחִין","bachı̂yn","bakh-een'","Another form of H975; a watch tower of besiegers: - tower."]},{"k":"H972","v":["בָּחִיר","bâchı̂yr","baw-kheer'","From H977; select: - choose, chosen one, elect."]},{"k":"H973","v":["בָּחַל","bâchal","baw-khal'","A primitive root; to loathe. For H926: - abhor, get hastily [from the margin for H926]."]},{"k":"H974","v":["בָּחַן","bâchan","baw-khan'","A primitive root; to test (especially metals); generally and figuratively to investigate: - examine, prove, tempt, try (trial)."]},{"k":"H975","v":["בַּחַן","bachan","bakh'-an","From H974 (in the sense of keeping a lookout); a watch tower: - tower."]},{"k":"H976","v":["בֹּחַן","bôchan","bo'-khan","From H974; trial: - tried."]},{"k":"H977","v":["בָּחַר","bâchar","baw-khar'","A primitive root; properly to try, that is, (by implication) select: - acceptable, appoint, choose (choice), excellent, join, be rather, require."]},{"k":"H978","v":["בַּחֲרוּמִי","bachărûmı̂y","bakh-ar-oo-mee'","Patrial from H980 (by transposition) a Bacharumite or inhabitant of Bachurim: - Baharumite."]},{"k":"H979","v":["בְּחֻרִים    בְּחוּרוֹת    בְּחֻרוֹת","bechûrôth    bechûrôth    bechûrı̂ym","(1,2) bekh-oo-rothe', (3) bekh-oo-reem'","Feminine plural of H970; also (masculine plural); youth (collectively and abstractly): - young men, youth."]},{"k":"H980","v":["בַּחוּרִים    בַּחֻרִים","bachûrı̂ym    bachûrı̂ym","bakh-oo-reem', bakh-oo-reem'","Masculine plural of H970; young men; Bachurim, a place in Palestine: - Bahurim."]},{"k":"H981","v":["בָּטָה    בָּטָא","bâṭâ'    bâṭâh","baw-taw', baw-taw'","A primitive root; to babble; hence to vociferate angrily: - pronounce, speak (unadvisedly)."]},{"k":"H982","v":["בָּטַח","bâṭach","baw-takh'","A primitive root; properly to hie for refuge (but not so precipitately as H2620); figuratively to trust, be confident or sure: - be bold (confident, secure, sure), careless (one, woman), put confidence, (make to) hope, (put, make to) trust."]},{"k":"H983","v":["בֶּטַח","beṭach","beh'-takh","From H982; properly a place of refuge; abstractly safety, both the fact (security) and the feeling (trust); often (adverbially with or without preposition) safely: - assurance, boldly, (without) care (-less), confidence, hope, safe (-ly, -ty), secure, surely."]},{"k":"H984","v":["בֶּטַח","beṭach","beh'-takh","The same as H983; Betach, a place in Syria: - Betah."]},{"k":"H985","v":["בִּטְחָה","biṭchâh","bit-khaw'","Feminine of H984; trust: - confidence."]},{"k":"H986","v":["בִּטָּחוֹן","biṭṭâchôn","bit-taw-khone'","From H982; trust: - confidence, hope."]},{"k":"H987","v":["בַּטֻּחוֹת","baṭṭûchôth","bat-too-khoth'","Feminine plural from H982; security: - secure."]},{"k":"H988","v":["בָּטֵל","bâṭêl","baw-tale'","A primitive root; to desist from labor: - cease."]},{"k":"H989","v":["בְּטֵל","beṭêl","bet-ale'","(Chaldee); corresponding to H988; to stop: - (cause, make to), cease, hinder."]},{"k":"H990","v":["בֶּטֶן","beṭen","beh'-ten","From an unused root probably meaning to be hollow; the belly, especially the womb; also the bosom or body of anything: - belly, body, + as they be born, + within, womb."]},{"k":"H991","v":["בֶּטֶן","beṭen","beh'-ten","The same as H990; Beten, a place in Palestine: - Beten."]},{"k":"H992","v":["בֹּטֶן","bôṭen","bo'-ten","From H990; (only in plural) a pistachio nut (from its form): - nut."]},{"k":"H993","v":["בְּטֹנִים","beṭônı̂ym","bet-o-neem'","Probably plural from H992; hollows; Betonim, a place in Palestine: - Betonim."]},{"k":"H994","v":["בִּי","bı̂y","bee","Perhaps from H1158 (in the sense of asking); properly a request; used only adverbially (always with “my Lord”); Oh that!; with leave, or if it please: - alas, O, oh."]},{"k":"H995","v":["בִּין","bı̂yn","bene","A primitive root; to separate mentally (or distinguish), that is, (generally) understand: - attend, consider, be cunning, diligently, direct, discern, eloquent, feel, inform, instruct, have intelligence, know, look well to, mark, perceive, be prudent, regard, (can) skill (-ful), teach, think, (cause, make to, get, give, have) understand (-ing), view, (deal) wise (-ly, man)."]},{"k":"H996","v":["בֵּין","bêyn","bane","(Sometimes in the plural masculine or feminine); properly the constructively contracted form of an otherwise unused noun from H995; a distinction; but used only as a preposition, between (repeated before each noun, often with other particles); also as a conjugation, either... or: - among, asunder, at, between (-twixt . . . and), + from (the widest), X in, out of, whether (it be... or), within."]},{"k":"H997","v":["בֵּין","bêyn","bane","(Chaldee); corresponding to H996: - among, between."]},{"k":"H998","v":["בִּינָה","bı̂ynâh","bee-naw'","From H995; understanding: - knowledge, meaning, X perfectly, understanding, wisdom."]},{"k":"H999","v":["בִּינָה","bı̂ynâh","bee-naw'","(Chaldee); corresponding to H998: - knowledge."]},{"k":"H1000","v":["בֵּיצָה","bêytsâh","bay-tsaw'","From the same as H948; an egg (from its whiteness): - egg."]},{"k":"H1001","v":["בִּירָא","bı̂yrâ'","bee-raw'","(Chaldee); corresponding to H1002; a palace: - palace."]},{"k":"H1002","v":["בִּירָה","bı̂yrâh","bee-raw'","Of foreign origin; a castle or palace: - palace."]},{"k":"H1003","v":["בִּירָנִית","bı̂yrânı̂yth","bee-raw-neeth'","From H1002; a fortress: - castle."]},{"k":"H1004","v":["בַּיִת","bayith","bah'-yith","Probably from H1129 abbreviated; a house (in the greatest variation of applications, especially family, etc.): - court, daughter, door, + dungeon, family, + forth of, X great as would contain, hangings. home[born], [winter]house (-hold), inside(-ward), palace, place, + prison, + steward, + tablet, temple, web, + within (-out)."]},{"k":"H1005","v":["בַּיִת","bayith","bah-yith","(Chaldee); corresponding to H1004: - house."]},{"k":"H1006","v":["בַּיִת","bayith","bah'-yith","The same as H1004; Bajith, a place in Palestine: - Bajith."]},{"k":"H1007","v":["בֵּית אָוֶן","bêyth 'âven","bayth aw'-ven","From H1004 and H205; house of vanity; Beth-Aven, a place in Palestine: - Beth-aven."]},{"k":"H1008","v":["בֵּית־אֵל","bêyth-'êl","bayth-ale'","From H1004 and H410; house of God; Beth-El, a place in Palestine: - Beth-el."]},{"k":"H1009","v":["בֵּית אַרְבֵּאל","bêyth 'arbê'l","bayth ar-bale'","From H1004 and H695 and H410; house of God's ambush; Beth Arbel, a place in Palestine: - Beth-Arbel."]},{"k":"H1010","v":["בֵּית מְעוֹן     בֵּית בַּעַל מְעוֹן","bêyth ba‛al me‛ôn    bêyth me‛ôn","bayth bah'-al me-own', bayth me-own'","From H1004 and H1168 and H4583; The first form meaning house of Baal of (the) habitation of (apparently by transposition). The second form meaning house of habitation of (Baal); Beth-Baal-Meon, a palce in Palestine: - Beth-baal-meon. Compare H1186 and H1194."]},{"k":"H1011","v":["בֵּית בִּרְאִי","bêyth bir'ı̂y","bayth bir-ee'","From H1004 and H1254; house of a creative one; Beth-Biri, a place in Palestine: - Beth-birei."]},{"k":"H1012","v":["בֵּית בָּרָה","bêyth bârâh","bayth baw-raw'","Probably from H1004 and H5679; house of (the) ford; Beth Barah, a place in Palestine: - Beth-barah."]},{"k":"H1013","v":["בֵּית־גָּדֵר","bêyth-gâdêr","bayth-gaw-dare'","From H1004 and H1447; house of (the) wall; Beth Gader, a place in Palestine: - Beth-gader."]},{"k":"H1014","v":["בֵּית גָּמוּל","bêyth gâmûl","bayth gaw-mool'","From H1004 and the passive participle of H1576; house of (the) weaned; Beth-Gamul, a place East of the Jordan: - Beth-gamul."]},{"k":"H1015","v":["בֵּית דִּבְלָתַיִם","bêyth diblâthayim","bayth dib-law-thah'-yim","From H1004 and the dual of H1690; house of (the) two fig cakes; Beth-Diblathajim, a place East of the Jordan: - Beth-diblathaim."]},{"k":"H1016","v":["בֵּית־דָּגוֹן","bêyth-dâgôn","bayth-daw-gohn'","From H1004 and H1712; house of Dagon; Beth-Dagon, the name of two places in Palestine: - Beth-dagon."]},{"k":"H1017","v":["בֵּית הָאֱלִי","bêyth hâ'ĕlı̂y","bayth haw-el-ee'","Patrial from H1008 with the article interposed; a Bethelite, or inhabitant of Bethel: - Bethelite."]},{"k":"H1018","v":["בֵּית הָאֵצֶל","bêyth hâ'êtsel","bayth haw-ay'-tsel","From H1004 and H681 with the article interposed; house of the side; Beth-ha-Etsel, a place in Palestine: - Beth-ezel."]},{"k":"H1019","v":["בֵּית הַגִּלְגָּל","bêyth haggilgâl","bayth hag-gil-gawl'","From H1004 and H1537 with the article interposed; house of the Gilgal (or rolling); Beth-hag-Gilgal, a place in Palestine: - Beth-gilgal."]},{"k":"H1020","v":["בֵּית הַיְשִׁימוֹת","bêyth hayeshı̂ymôth","bayth hah-yesh-ee-moth'","From H1004 and the plural of H8451 with the article interposed; house of the deserts; Beth-ha-Jeshimoth, a town East of the Jordan: - Beth-jeshimoth."]},{"k":"H1021","v":["בֵּית הַכֶּרֶם","bêyth hak-kerem","bayth hak-keh'-rem","From H1004 and H3754 with the article interposed; house of the vineyard; Beth-hak-Kerem, a place in Palestine: - Beth-haccerem."]},{"k":"H1022","v":["בֵּית הַלַּחְמִי","bêyth hallachmı̂y","bayth hal-lakh-mee'","Patrial from H1035 with the article inserted; a Beth lechemite, or native of Bethlechem: - Bethlehemite."]},{"k":"H1023","v":["בֵּית הַמֶּרְחָק","bêyth hammerchâq","bayth ham-mer-khawk'","From H1004 and H4801 with the article interposed; house of the breadth; Beth-ham-Merchak, a place in Palestine: - place that was far off."]},{"k":"H1024","v":["בֵּית מַרְכָּבוֹת    בֵּית הַמַּרְכָּבוֹת","bêyth hammarkâbôth    bêyth markâbôth","bayth ham-mar-kaw-both', mar-kaw-both'","From H1004 and the plural of H4818 (with or without the article interposed); place of (the chariots; Beth-ham-Markaboth or Beth-Markaboth, a place in Palestine: - Beth-marcaboth."]},{"k":"H1025","v":["בֵּית הָעֵמֶק","bêyth hâ‛êmeq","bayth haw-ay'-mek","From H1004 and H6010 with the article interposed; house of the valley; Beth-ha-Emek, a place in Palestine: - Beth-emek."]},{"k":"H1026","v":["בֵּית הָעֲרָבָה","bêyth hâ‛ărâbâh","bayth haw-ar-aw-baw'","From H1004 and H6160 with the article interposed; house of the Desert; Beth-ha-Arabah, a place in Palestine: - Beth-arabah."]},{"k":"H1027","v":["בֵּית הָרָם","bêyth hârâm","bayth haw-rawm'","From H1004 and H7311 with the article interposed; house of the height; Beth-ha-Ram, a place East of the Jordan: - Beth-aram."]},{"k":"H1028","v":["בֵּית הָרָן","bêyth hârân","bayth haw-rawn'","Probably for H1027; Beth-ha-ran, a place East of the Jordan: - Beth-haran."]},{"k":"H1029","v":["בֵּית הַשִּׁטָּה","bêyth hashshiṭṭâh","bayth hash-shit-taw'","From H1004 and H7848 with the article interposed; house of the acacia; Beth-hash-Shittah, a place in Palestine: - Beth-shittah."]},{"k":"H1030","v":["בֵּית הַשִּׁמְשִׁי","bêyth hashshimshı̂y","bayth hash-shim-shee'","Patrial from H1053 with the article inserted; a Beth shimshite, or inhabitant of Bethshemesh: - Bethshemite."]},{"k":"H1031","v":["בֵּית חָגְלָה","bêyth choglâh","bayth chog-law'","From H1004 and the same as H2295; house of a partridge; Beth-Choglah, a place in Palestine: - Beth-hoglah."]},{"k":"H1032","v":["בֵּית חוֹרוֹן","bêyth chôrôn","bayth kho-rone'","From H1004 and H2356; house of hollowness; Beth-Choron, the name of two adjoining places in Palestine: - Beth-horon."]},{"k":"H1033","v":["בֵּית כַּר","bêyth kar","bayth kar","From H1004 and H3733; house of pasture; Beth-Car, a place in Palestine: - Beth-car."]},{"k":"H1034","v":["בֵּית לְבָאוֹת","bêyth lebâ'ôth","bayth leb-aw-oth'","From H1004 and the plural of H3833; house of lionesses; Beth-Lebaoth, a place in Palestine: - Beth-lebaoth. Compare H3822."]},{"k":"H1035","v":["בֵּית לֶחֶם","bêyth lechem","bayth leh'-khem","From H1004 and H3899; house of bread; Beth-Lechem, a place in Palestine: - Beth-lehem."]},{"k":"H1036","v":["בֵּית לְעַפְרָה","bêyth le‛aphrâh","bayth le-af-raw'","From H1004 and the feminine of H6083 (with preposition interposed); house to (that is, of) dust; Beth-le-Aphrah, a place in Palestine: - house of Aphrah."]},{"k":"H1037","v":["בֵּית מִלֹּא    בֵּית מִלּוֹא","bêyth millô'    bêyth millô'","bayth mil-lo, bayth mil-lo'","From H1004 and H4407; house of (the) rampart; Beth-Millo, the name of two citadels: - house of Millo."]},{"k":"H1038","v":["בֵּית מַעֲכָה","bêyth ma‛ăkâh","bayth mah-ak-aw'","From H1004 and H4601; house of Maakah; Beth-Maakah, a place in Palestine: - Beth-maachah."]},{"k":"H1039","v":["בֵּית נִמְרָה","bêyth nimrâh","bayth nim-raw'","From H1004 and the feminine of H5246; house of (the) leopard; Beth-Nimrah, a place east of the Jordan: - Beth-nimrah. Compare H5247."]},{"k":"H1040","v":["בֵּית עֵדֶן","bêyth ‛êden","bayth ay'-den","From H1004 and H5730; house of pleasure; Beth-Eden, a place in Syria: - Beth-eden."]},{"k":"H1041","v":["בֵּית עַזְמָוֶת","bêyth ‛azmâveth","bayth az-maw'-veth","From H1004 and H5820; house of Azmaveth, a place in Palestine: - Beth-az-maveth. Compare H5820."]},{"k":"H1042","v":["בֵּית עֲנוֹת","bêyth ‛ănôth","bayth an-oth'","From H1004 and a plural from H6030; house of replies; Beth-Anoth, a place in Palestine: - Beth-anoth."]},{"k":"H1043","v":["בֵּית עֲנָת","bêyth ‛ănâth","bayth an-awth'","An orthographical variation for H1042; Beth-Anath, a place in Palestine: - Beth-anath."]},{"k":"H1044","v":["בֵּית עֵקֶד","bêyth ‛êqed","bayth ay'-ked","From H1004 and a derivative of H6123; house of (the) binding (for sheep shearing); Beth-Eked, a place in Palestine: - shearing-house."]},{"k":"H1045","v":["בֵּית עַשְׁתָּרוֹת","bêyth ‛ashtârôth","bayth ash-taw-roth'","From H1004 and H6252; house of Ashtoreths; Beth-Ashtaroth, a place in Palestine: - house of Ashtaroth. Compare H1203, H6252."]},{"k":"H1046","v":["בֵּית פֶּלֶט","bêyth peleṭ","bayth peh'-let","From H1004 and H6412; house of escape; Beth-Palet, a place in Palestine: - Beth-palet."]},{"k":"H1047","v":["בֵּית פְּעוֹר","bêyth pe‛ôr","bayth pe-ore'","From H1004 and H6465; house of Peor; Beth-Peor, a place East of the Jordan: - Beth-peor."]},{"k":"H1048","v":["בֵּית פַּצֵּץ","bêyth patstsêts","bayth pats-tsates'","From H1004 and a derivative from H6327; house of dispersion; Beth-Patstsets, a place in Palestine: - Beth-pazzez."]},{"k":"H1049","v":["בֵּית צוּר","bêyth tsûr","bayth tsoor'","From H1004 and H6697; house of (the) rock; Beth-Tsur, a place in Palestine: - Beth-zur."]},{"k":"H1050","v":["בֵּית רְחוֹב","bêyth rechôb","bayth re-khobe'","From H1004 and H7339; house of (the) street; Beth-Rechob, a place in Palestine: - Beth-rehob."]},{"k":"H1051","v":["בֵּית רָפָא","bêyth râphâ'","bayth raw-faw'","From H1004 and H7497; house of (the) giant; Beth-Rapha, an Israelite: - Beth-rapha."]},{"k":"H1052","v":["בֵּית    שָׁן    בֵּית שְׁאָן","bêyth she'ân    bêyth shân","bayth she-awn', bayth shawn'","From H1004 and H7599; house of ease; Beth-Shean or Beth-Shan, a place in Palestine: - Beth-shean, Beth-Shan."]},{"k":"H1053","v":["בֵּית שֶׁמֶשׁ","bêyth shemesh","bayth sheh'-mesh","From H1004 and H8121; house of (the) sun; Beth-Shemesh, a place in Palestine: - Beth-shemesh."]},{"k":"H1054","v":["בַּית תַּפּוּחַ","bayth tappûach","bayth tap-poo'-akh","From H1004 and H8598; house of (the) apple; Beth-Tappuach, a place in Palestine: - Beth-tappuah."]},{"k":"H1055","v":["בִּיתָן","bı̂ythân","bee-thawn'","Probably from H1004; a palace (that is, large house): - palace."]},{"k":"H1056","v":["בָּכָא","bâkâ'","baw-kaw'","From H1058; weeping; Baca, a valley in Palestine: - Baca."]},{"k":"H1057","v":["בָּכָא","bâkâ'","baw-kaw'","The same as H1056; the weeping tree (some gum distilling tree, perhaps the balsam): - mulberry tree."]},{"k":"H1058","v":["בָּכָה","bâkâh","baw-kaw'","A primitive root; to weep; generally to bemoan: -  X at all, bewail, complain, make lamentation, X more, mourn, X sore, X with tears, weep."]},{"k":"H1059","v":["בֶּכֶה","bekeh","beh'-keh","From H1058; a weeping: -  X sore."]},{"k":"H1060","v":["בְּכוֹר","bekôr","bek-ore'","From H1069; firstborn; hence chief: - eldest (son), first-born (-ling)."]},{"k":"H1061","v":["בִּכּוּר","bikkûr","bik-koor'","From H1069; the first fruits of the crop: - first fruit (-ripe [figuratively), hasty fruit."]},{"k":"H1062","v":["בְּכֹרָה    בְּכוֹרָה","bekôrâh    bekôrâh","bek-o-raw', bek-o-raw'","Feminine of H1060; the firstling of man or beast; abstractly primogeniture: - birthright, firstborn (-ling)."]},{"k":"H1063","v":["בִּכּוּרָה","bikkûrâh","bik-koo-raw'","Feminine of H1061; the early fig: - firstripe (fruit)."]},{"k":"H1064","v":["בְּכוֹרַת","bekôrath","bek-o-rath'","Feminine of H1062; primogeniture; Bekorath, an Israelite: - Bechorath."]},{"k":"H1065","v":["בְּכִי","bekı̂y","bek-ee'","From H1058; a weeping; by analogy, a dripping: - overflowing, X sore, (continual) weeping, wept."]},{"k":"H1066","v":["בֹּכִים","bôkkı̂ym","bo-keem'","Plural active participle of H1058; (with the article) the weepers; Bokim, a place in Palestine: - Bochim."]},{"k":"H1067","v":["בְּכִּירָה","bekı̂yrâh","bek-ee-raw'","Feminine from H1069; the eldest daughter: - firstborn."]},{"k":"H1068","v":["בְּכִית","bekı̂yth","bek-eeth'","From H1058; a weeping: - mourning."]},{"k":"H1069","v":["בָּכַר","bâkar","baw-kar'","A primitive root; properly to burst the womb, that is, (causatively) bear or make early fruit (of woman or tree); also (as denominatively from H1061) to give the birthright: - make firstborn, be firstling, bring forth first child (new fruit)."]},{"k":"H1070","v":["בֶּכֶר","beker","beh'-ker","From H1069 (in the sense of youth); a young camel: - dromedary."]},{"k":"H1071","v":["בֶּכֶר","beker","beh'-ker","The same as H1070; Beker, the name of two Israelites: - Becher."]},{"k":"H1072","v":["בִּכְרָה","bikrâh","bik-raw'","Feminine of H1070; a young she camel: - dromedary."]},{"k":"H1073","v":["בַּכֻּרָה","bakkûrâh","bak-koo-raw'","By orthographical variation for H1063; a first ripe fig: - first-ripe."]},{"k":"H1074","v":["בֹּכְרוּ","bôkerû","bo-ker-oo'","From H1069; first born; Bokeru, an Israelite: - Bocheru."]},{"k":"H1075","v":["בִּכְרִי","bikrı̂y","bik-ree'","From H1069; youthful; Bikri, an Israelite: - Bichri."]},{"k":"H1076","v":["בַּכְרִי","bakrı̂y","bak-ree'","Patronymic from H1071; a Bakrite (collectively) or descendant of Beker: - Bachrites."]},{"k":"H1077","v":["בַּל","bal","bal","From H1086; properly a failure; by implication nothing; usually (adverbially) not at all; also lest: - lest, neither, no, none (that . . . ), not (any), nothing."]},{"k":"H1078","v":["בֵּל","bêl","bale","By contraction for H1168; Bel, the Baal of the Babylonians: - Bel."]},{"k":"H1079","v":["בָּל","bâl","bawl","(Chaldee); from H1080; properly anxiety, that is, (by implication) the heart (as its seat): - heart."]},{"k":"H1080","v":["בְּלָא","belâ'","bel-aw'","(Chaldee); corresponding to H1086 (but used only in a mental sense); to afflict: - wear out."]},{"k":"H1081","v":["בַּלְאֲדָן","bal'ădân","bal-ad-awn'","From H1078 and H113 (contracted); Bel (is his) lord; Baladan, the name of a Babylonian prince: - Baladan."]},{"k":"H1082","v":["בָּלַג","bâlag","baw-lag'","A primitive root; to break off or loose (in a favorable or unfavorable sense), that is, desist (from grief) or invade (with destruction): - comfort, (recover) strength(-en)."]},{"k":"H1083","v":["בִּלְגָּה","bilgâh","bil-gaw'","From H1082; desistance; Bilgah, the name of two Israelites: - Bilgah."]},{"k":"H1084","v":["בִּלְגַּי","bilgay","bil-gah'ee","From H1082; desistant; Bilgai, an Israelite: - Bilgai."]},{"k":"H1085","v":["בִּלְדַּד","bildad","bil-dad'","Of uncertain derivation; Bildad, one of Job’s friends: - Bildad."]},{"k":"H1086","v":["בָּלָה","bâlâh","baw-law'","A primitive root; to fail; by implication to wear out, decay (causatively consume, spend): - consume, enjoy long, become (make, wax) old, spend, waste."]},{"k":"H1087","v":["בָּלֶה","bâleh","baw-leh'","From H1086; worn out: - old."]},{"k":"H1088","v":["בָּלָה","bâlâh","baw-law'","Feminine of H1087; failure; Balah, a place in Palestine: - Balah."]},{"k":"H1089","v":["בָּלַהּ","bâlah","baw-lah","A primitive root (rather by transposition for H926); to palpitate; hence (causatively) to terrify: - trouble."]},{"k":"H1090","v":["בִּלְהָה","bilhâh","bil-haw'","From H1089; timid; Bilhah, the name of one of Jacob’s concubines; also of a place in Palestine: - Bilhah."]},{"k":"H1091","v":["בַּלָּהָה","ballâhâh","bal-law-haw'","From H1089; alarm; hence destruction: - terror, trouble."]},{"k":"H1092","v":["בִּלְהָן","bilhân","bil-hawn'","From H1089; timid; Bilhan, the name of an Edomite and of an Israelite: - Bilhan."]},{"k":"H1093","v":["בְּלוֹ","belô","bel-o'","(Chaldee); from a root coresponding to H1086; excise (on articles consumed): - tribute."]},{"k":"H1094","v":["בְּלוֹי    בְּלוֹא","belô'    belôy","bel-o', bel-o'ee","From H1086; (only in plural construction) rags: - old."]},{"k":"H1095","v":["בֵּלְטְשַׁאצַּר","bêlṭesha'tstsar","bale-tesh-ats-tsar'","Of foreign derivation; Belteshatstsar, the Babylonian name of Daniel: - Belteshazzar."]},{"k":"H1096","v":["בֵּלְטְשַׁאצַּר","bêlṭesha'tstsar","bale-tesh-ats-tsar'","(Chaldee); corresponding to H1095: - Belteshazzar."]},{"k":"H1097","v":["בְּלִי","belı̂y","bel-ee'","From H1086; properly failure, that is, nothing or destruction; usually (with preposition) without, not yet, because not, as long as, etc.: - corruption, ig[norantly], for lack of, where no . . . is, so that no, none, not, un[awares], without."]},{"k":"H1098","v":["בְּלִיל","belı̂yl","bel-eel'","From H1101; mixed, that is, (specifically) feed (for cattle): - corn, fodder, provender."]},{"k":"H1099","v":["בְּלִימָה","belı̂ymâh","bel-ee-mah'","From H1097 and H4100; (as indefinite) nothing whatever: - nothing."]},{"k":"H1100","v":["בְּלִיַּעַל","belı̂ya‛al","bel-e-yah'-al","From H1097 and H3276; without profit, worthlessness; by extension destruction, wickedness (often in connection with H376, H802, H1121, etc.): - Belial, evil, naughty, ungodly (men), wicked."]},{"k":"H1101","v":["בָּלַל","bâlal","baw-lal'","A primitive root; to overflow (specifically with oil); by implication to mix; also (denominative from H1098) to fodder: - anoint, confound, X fade, mingle, mix (self), give provender, temper."]},{"k":"H1102","v":["בָּלַם","bâlam","baw-lam'","A primitive root; to muzzle: - be held in."]},{"k":"H1103","v":["בָּלַס","bâlas","baw-las'","A primitive root; to pinch sycamore figs (a process necessary to ripen them): - gatherer."]},{"k":"H1104","v":["בָּלַע","bâla‛","baw-lah'","A primitive root; to make away with (specifically by swallowing); generally to destroy: - cover, destroy, devour, eat up, be at end, spend up, swallow down (up)."]},{"k":"H1105","v":["בֶּלַע","bela‛","beh'-lah","From H1104; a gulp; figuratively destruction: - devouring, that which he hath swallowed up."]},{"k":"H1106","v":["בֶּלַע","bela‛","beh'-lah","The same as H1105; Bela, the name of a place, also of an Edomite and of two Israelites: - Bela."]},{"k":"H1107","v":["בַּלְעֲדֵי    בִּלְעֲדֵי","bil‛ădêy    bal‛ădêy","bil-ad-ay', bal-ad-ay'","Constructive plural from H1077 and H5703; not till, that is, (as preposition or adverb) except, without, besides: - beside, not (in), save, without."]},{"k":"H1108","v":["בַּלְעִי","bal‛ı̂y","bel-ee'","Patronymic from H1106; a Belaite (collectively) or descendant of Bela: - Belaites."]},{"k":"H1109","v":["בִּלְעָם","bil‛âm","bil-awm'","Probably from H1077 and H5971; not (of the) people, that is, foreigner; Bilam, a Mesopotamian prophet; also a place in Palestine: - Balaam, Bileam."]},{"k":"H1110","v":["בָּלַק","bâlaq","baw-lak'","A primitive root; to annihilate: - (make) waste."]},{"k":"H1111","v":["בָּלָק","bâlâq","baw-lawk'","From H1110; waster; Balak, a Moabitish king: - Balak."]},{"k":"H1112","v":["בֵּלְאשַׁצּר    בֵּלְשַׁאצַּר","bêlsha'tstsar    bêl'shatsar","bale-shats-tsar', bale-shats-tsar'","Of foreign origin (compare H1095); Belshatstsar, a Babylonian king: - Belshazzar."]},{"k":"H1113","v":["בֵּלְשַׁאצַּר","bêlsha'tstsar","bale-shats-tsar'","(Chaldee); corresponding to H1112: - Belshazzar."]},{"k":"H1114","v":["בִּלְשָׁן","bilshân","bil-shawn'","Of uncertain derivation; Bilshan, an Israelite: - Bilshan."]},{"k":"H1115","v":["בִּלְתִּי","biltı̂y","bil-tee'","Constructive feminine of H1086 (equivalent to H1097); properly a failure of, that is, (used only as a negative particle, usually with prepositional prefix) not, except, without, unless, besides, because not, until, etc.: - because un[satiable], beside, but, + continual, except, from, lest, neither, no more, none, not, nothing, save, that no, without."]},{"k":"H1116","v":["בָּמָה","bâmâh","baw-maw'","From an unused root (meaning to be high); an elevation: - height, high place, wave."]},{"k":"H1117","v":["בָּמָה","bâmâh","baw-maw'","The same as H1116; Bamah, a place in Palestine: - Bamah. See also H1120."]},{"k":"H1118","v":["בִּמְהָל","bimhâl","bim-hawl'","Probably from H4107 with prepositional prefix; with pruning; Bimhal, an Israelite: - Bimhal."]},{"k":"H1119","v":["בְּמוֹ","bemô","bem-o'","Prolonged for prepositional prefix; in, with, by, etc.: - for, in, into, through."]},{"k":"H1120","v":["בָּמוֹת בַּעַל    בָּמוֹת","bâmôth    bâmôth ba‛al","baw-moth', baw-moth' bah'-al","Plural of H1116; heights; the second form is a more complete form of the first form; from the same and H1168; heights of Baal; Bamoth or Bamoth Baal, a place East of the Jordan: - Bamoth, Bamoth-baal."]},{"k":"H1121","v":["בֵּן","bên","bane","From H1129; a son (as a builder of the family name), in the widest sense (of literal and figurative relationship, including grandson, subject, nation, quality or condition, etc., (like H1, H251, etc.): -    + afflicted, age, [Ahoh-] [Ammon-] [Hachmon-] [Lev-]ite, [anoint-]ed one, appointed to, (+) arrow, [Assyr-] [Babylon-] [Egypt-] [Grec-]ian, one born, bough, branch, breed, + (young) bullock, + (young) calf, X came up in, child, colt, X common, X corn, daughter, X of first, + firstborn, foal, + very fruitful, + postage, X in, + kid, + lamb, (+) man, meet, + mighty, + nephew, old, (+) people, + rebel, + robber, X servant born, X soldier, son, + spark, + steward, + stranger, X surely, them of, + tumultuous one, + valiant[-est], whelp, worthy, young (one), youth."]},{"k":"H1122","v":["בֵּן","bên","bane","The same as H1121; Ben, an Israelite: - Ben."]},{"k":"H1123","v":["בֵּן","bên","bane","(Chaldee); corresponding to H1121: - child, son, young."]},{"k":"H1124","v":["בְּנָה    בְּנָא","benâ'    benâh","ben-aw', ben-aw'","(Chaldee); corresponding to H1129; to build: - build, make."]},{"k":"H1125","v":["בֶּן־אֲבִינָדָב","ben-'ăbı̂ynâdâb","ben-ab-ee''-naw-dawb'","From H1121 and H40; (the) son of Abinadab; Ben Abinadab, an Israelite: - the son of Abinadab."]},{"k":"H1126","v":["בֶּן־אוֹנִי","ben-'ônı̂y","ben-o-nee'","From H1121 and H205; son of my sorrow; Ben Oni, the original name of Benjamin: - Ben-oni."]},{"k":"H1127","v":["בֶּן־גֶּבֶר","ben-geber","ben-gheh'-ber","From H1121 and H1397; son of (the) hero; Ben Geber, an Israelite: - the son of Geber."]},{"k":"H1128","v":["בֶּן־דֶּקֶר","ben-deqer","ben-deh'-ker","From H1121 and a derivative of H1856; son of piercing (or of a lance); Ben Deker, an Israelite: - the son of Dekar."]},{"k":"H1129","v":["בָּנָה","bânâh","baw-naw'","A primitive root; to build (literally and figuratively): - (begin to) build (-er), obtain children, make, repair, set (up), X surely."]},{"k":"H1130","v":["בֶּן־הֲדַד","ben-hădad","ben-had-ad'","From H1121 and H1908; son of Hadad; Ben Hadad, the name of several Syrian kings: - Ben-hadad."]},{"k":"H1131","v":["בִּנּוּי","binnûy","bin-noo'ee","From H1129; built up; Binnui, an Israelite: - Binnui."]},{"k":"H1132","v":["בֶּן־זוֹחֵת","ben-zôchêth","ben-zo-khayth'","From H1121 and H2105; son of Zocheth; Ben Zocheth, an Israelite: - Ben-zoketh."]},{"k":"H1133","v":["בֶּן־חוּר","ben-chûr","ben-khoor'","From H1121 and H2354; son of Chur; Ben Chur, an Israelite: - the son of Hur."]},{"k":"H1134","v":["בֶּן־חַיִל","ben-chayil","ben-khah'-yil","From H1121 and H2428; son of might; Ben Chail, an Israelite: - Ben-hail."]},{"k":"H1135","v":["בֶּן־חָנָן","ben-chânân","ben-khaw-nawn'","From H1121 and H2605; son of Chanan; Ben Chanan, an Israelite: - Ben-hanan."]},{"k":"H1136","v":["בֶּן־חֶסֶד","ben-chesed","ben-kheh'-sed","From H1121 and H2617; son of kindness; Ben Chesed, an Israelite: - the son of Hesed."]},{"k":"H1137","v":["בָּנִי","bânı̂y","baw-nee'","From H1129; built; Bani, the name of five Israelites: - Bani."]},{"k":"H1138","v":["בּוּנִי    בֻּנִּי","bûnnı̂y    bûnı̂y","boon-nee', boo-nee'","From H1129; built; Bunni or Buni, an Israelite: - Bunni."]},{"k":"H1139","v":["בְּנֵי־בְּרַק","benêy-beraq","ben-ay'-ber-ak'","From the plural construction of H1121 and H1300; sons of lightning, Beneberak, a place in Palestine: - Bene-barak."]},{"k":"H1140","v":["בִּנְיָה","binyâh","bin-yaw'","Feminine of H1129; a structure: - building."]},{"k":"H1141","v":["בְּנָיָהוּ    בְּנָיָה","benâyâh    benâyâhû","ben-aw-yaw', ben-aw-yaw'-hoo","From H1129 and H3050; Jah has built; Benajah, the name of twelve Israelites: - Benaiah."]},{"k":"H1142","v":["בְּנֵי יַעֲקָן","benêy ya‛ăqân","ben-ay' yah-ak-awn'","From the plural of H1121 and H3292; sons of Yaakan, Bene Jaakan, a place in the Desert: - Bene-jaakan."]},{"k":"H1143","v":["בֵּנַיִם","bênayim","bay-nah'-yim","Dual of H996; a double interval, that is, the space between two armies: -    + champion."]},{"k":"H1144","v":["בִּנְיָמִין","binyâmı̂yn","bin-yaw-mene'","From H1121 and H3225; son of (the) right hand; Binjamin, youngest son of Jacob; also the tribe descended from him, and its territory: - Benjamin."]},{"k":"H1145","v":["בֶּן־אִישׁ יְמִינִי    בֶּן־הַיְּמִינִי    בֶּן־יְמִינִי","ben-yemı̂ynı̂y    ben-ha-yemı̂nı̂y    ben-'ı̂ysh yemı̂ynı̂y","ben-yem-ee-nee', ben-eesh' yem-ee-nee'","Multiple forms. Sometimes (with the article inserted); with H376 inserted (1Sa_9:1); son of a man of Jemini; or shorter (1Sa_9:4; Est_2:5); a man of Jemini; or (1Sa_20:1); more simply: a Jeminite; (plural patronymic from H1144; a Benjaminite, or descendant of Benjamin: - Benjamite, of Benjamin."]},{"k":"H1146","v":["בִּנְיָן","binyân","bin-yawn'","From H1129; an edifice: - building."]},{"k":"H1147","v":["בִּנְיָן","binyân","bin-yawn'","(Chaldee); corresponding to H1146: - building."]},{"k":"H1148","v":["בְּנִינוּ","benı̂ynû","ben-ee-noo'","Probably from H1121 with pronominal suffix; our son; Beninu, an Israelite: - Beninu."]},{"k":"H1149","v":["בְּנַס","benas","ben-as'","(Chaldee); of uncertain affinity; to be enraged: - be angry."]},{"k":"H1150","v":["בִּנְעָה    בִּנְעָא","bin‛â'    bin‛âh","bin-aw', bin-aw'","Of uncertain derivation; Bina or Binah, an Israelite: - Binea, Bineah."]},{"k":"H1151","v":["בֶּן־עַמִּי","ben-‛ammı̂y","ben-am-mee'","From H1121 and H5971 with pronominal suffix; son of my people; Ben Ammi, a son of Lot: - Ben-ammi."]},{"k":"H1152","v":["בְּסוֹדְיָה","besôdeyâh","bes-o-deh-yaw'","From H5475 and H3050 with prepositional prefix; in (the) counsel of Jehovah; Besodejah, an Israelite: - Besodeiah."]},{"k":"H1153","v":["בְּסַי","besay","bes-ah'-ee","From H947; domineering; Besai, one of the Nethinim: - Besai."]},{"k":"H1154","v":["בֶּסֶר","beser","beh'-ser","From an unused root meaning to be sour; an immature grape: - unripe grape."]},{"k":"H1155","v":["בֹּסֶר","bôser","bo'-ser","From the same as H1154: - sour grape."]},{"k":"H1156","v":["בְּעָה    בְּעָא","be‛â'    be‛âh","beh-aw', beh-aw'","(Chaldee); corresponding to H1158; to seek or ask: - ask, desire, make [petition], pray, request, seek."]},{"k":"H1157","v":["בְּעַד","be‛ad","beh-ad'","From H5704 with prepositional prefix; in up to or over against; generally at, beside, among, behind, for, etc.: - about, at, by (means of), for, over, through, up (-on), within."]},{"k":"H1158","v":["בָּעָה","bâ‛âh","baw-aw","A primitive root; to gush over, that is, to swell; (figuratively) to desire earnestly; by implication to ask: - cause, inquire, seek up, swell out, boil."]},{"k":"H1159","v":["בָּעוּ","bâ‛û","baw-oo'","(Chaldee); from H1156; a request: - petition."]},{"k":"H1160","v":["בְּעוֹר","be‛ôr","beh-ore'","From H1197 (in the sense of burning); a lamp; Beor, the name of the father of an Edomitish king; also of that of Balaam: - Beor."]},{"k":"H1161","v":["בִּעוּתִים","bi‛ûthı̂ym","be-oo-theme'","Masculine plural from H1204; alarms: - terrors."]},{"k":"H1162","v":["בֹּעַז","bô‛az","bo'-az","From an unused root of uncertain meaning; Boaz, the ancestor of David; also the name of a pillar in front of the temple: - Boaz."]},{"k":"H1163","v":["בָּעַט","bâ‛aṭ","baw-at'","A primitive root; to trample down, that is, (figuratively) despise: - kick."]},{"k":"H1164","v":["בְּעִי","be‛ı̂y","beh-ee'","From H1158; a prayer: - grave."]},{"k":"H1165","v":["בְּעִיר","be‛ı̂yr","beh-ere'","From H1197 (in the sense of eating): cattle: - beast, cattle."]},{"k":"H1166","v":["בָּעַל","bâ‛al","baw-al'","A primitive root; to be master; hence (as denominative from H1167) to marry: - Beulah have dominion (over), be husband, marry (-ried, X wife)."]},{"k":"H1167","v":["בַּעַל","ba‛al","bah'-al","From H1166; a master; hence a husband, or (figuratively) owner (often used with another noun in modifications of this latter sense: -    + archer, + babbler, + bird, captain, chief man, + confederate, + have to do, + dreamer, those to whom it is due, + furious, those that are given to it, great, + hairy, he that hath it, have, + horseman, husband, lord, man, + married, master, person, + sworn, they of."]},{"k":"H1168","v":["בַּעַל","ba‛al","bah'-al","The same as H1167; Baal, a Phoenician deity: - Baal, [plural] Baalim."]},{"k":"H1169","v":["בְּעֵל","be‛êl","beh-ale'","(Chaldee); corresponding to H1167: -    + chancellor."]},{"k":"H1170","v":["בַּעַל בְּרִית","ba‛al berı̂yth","bah'-al ber-eeth'","From H1168 and H1285; Baal of (the) covenant; Baal Berith, a special deity of the Shechemites: - Baal-berith."]},{"k":"H1171","v":["בַּעַל גָּד","ba‛al gâd","bah'-al gawd","From H1168 and H1409; Baal of Fortune; Baal Gad, a place in Syria: - Baal-gad."]},{"k":"H1172","v":["בַּעֲלָה","ba‛ălâh","bah-al-aw'","Feminine of H1167; a mistress: - that hath, mistress."]},{"k":"H1173","v":["בַּעֲלָה","ba‛ălâh","bah-al-aw'","The same as H1172; Baalah, the name of three places in Palestine: - Baalah."]},{"k":"H1174","v":["בַּעַל הָמוֹן","ba‛al hâmôn","bah'-al haw-mone'","From H1167 and H1995; possessor of a multitude; Baal Hamon, a place in Palestine: - Baal-hamon."]},{"k":"H1175","v":["בְּעָלוֹת","be‛âlôth","beh-aw-loth'","Plural of H1172; mistresses; Bealoth, a place in Palestine: - Bealoth, in Aloth [by mistake for a plural from H5927 with preposition prefix]."]},{"k":"H1176","v":["בַּעַל זְבוּב","ba‛al zebûb","bah'-al zeb-oob'","From H1168 and H2070; Baal of (the) Fly; Baal Zebub, a special deity of the Ekronites: - Baal-zebub."]},{"k":"H1177","v":["בַּעַל חָנָן","ba‛al chânân","bah'-al khaw-nawn'","From H1167 and H2608; possessor of grace; Baal Chanan, the name of an Edomite, also of an Israelite: - Baal-hanan."]},{"k":"H1178","v":["בַּעַל חָצוֹר","ba‛al châtsôr","bah'-al khaw-tsore'","From H1167 and a modification of H2691; possessor of a village; Baal Chatsor, a place in Palestine: - Baal-hazor."]},{"k":"H1179","v":["בַּעַל חֶרְמוֹן","ba‛al chermôn","bah'-al kher-mone'","From H1167 and H2768; possessor of Hermon; Baal Chermon, a place in Palestine: - Baal-hermon."]},{"k":"H1180","v":["בַּעֲלִי","ba‛ălı̂y","bah-al-ee'","From H1167 with pronominal suffix; my master; Baali, a symbolical name of Jehovah: - Baali."]},{"k":"H1181","v":["בַּעֲלֵי בָּמוֹת","ba‛ălêy bâmôth","bah-al-ay' baw-moth","From the plural of H1168 and the plural of H1116; Baals of (the) heights; Baale Bamoth, a place East of the Jordan: - lords of the high places."]},{"k":"H1182","v":["בְּעֶלְיָדָע","be‛elyâdâ‛","beh-el-yaw-daw'","From H1168 and H3045; Baal has known; Beeljada, an Israelite: - Beeliada."]},{"k":"H1183","v":["בְּעַלְיָה","be‛alyâh","beh-al-yaw'","From H1167 and H3050; Jah (is) master; Bealjah, an Israelite: - Bealiah."]},{"k":"H1184","v":["בַּעֲלֵי יְהוּדָה","ba‛ălêy yehûdâh","bah-al-ay' yeh-hoo-daw'","From the plural of H1167 and H3063; masters of Judah; Baale Jehudah, a place in Palestine: - Baale of Judah."]},{"k":"H1185","v":["בַּעֲלִיס","ba‛ălı̂ys","bah-al-ece'","Probably from a derivative of H5965 with prepositional prefix; in exultation; Baalis, an Ammonitish king: - Baalis."]},{"k":"H1186","v":["בַּעַל מְעוֹן","ba‛al me‛ôn","bah'-al meh-one'","From H1168 and H4583; Baal of (the) habitation (of) (compare H1010); Baal Meon, a place East of the Jordan: - Baal-meon."]},{"k":"H1187","v":["בַּעַל פְּעוֹר","ba‛al pe‛ôr","bah'-al peh-ore'","From H1168 and H6465; Baal of Peor; Baal Peor, a Moabitish deity: - Baal-peor."]},{"k":"H1188","v":["בַּעַל פְּרָצִים","ba‛al perâtsı̂ym","bah'-al per-aw-tseem'","From H1167 and the plural of H6556; possessor of breaches; Baal peratsim, a place in Palestine: - Baal-perazim."]},{"k":"H1189","v":["בַּעַל צְפוֹן","ba‛al tsephôn","bah'-al tsef-one'","From H1168 and H6828 (in the sense of cold) (according to others as Egyptian form of Typhon, the destroyer); Baal of winter; Baal Tsephon, a place in Egypt: - Baal-zephon."]},{"k":"H1190","v":["בַּעַל שָׁלִשָׁה","ba‛al shâlishâh","bah'-al shaw-lee-shaw'","From H1168 and H8031; Baal of Shalishah; Baal Shalishah, a place in Palestine: - Baal-shalisha."]},{"k":"H1191","v":["בַּעֲלָת","ba‛ălâth","bah-al-awth'","A modification of H1172; mistresship; Baalath, a place in Palestine: - Baalath."]},{"k":"H1192","v":["בַּעֲלַת בְּאֵר","ba‛ălath be'êr","bah-al-ath' beh-ayr'","From H1172 and H875; mistress of a well; Baalath Beer, a place in Palestine: - Baalath-beer."]},{"k":"H1193","v":["בַּעַל תָּמָר","ba‛al tâmâr","bah'-al taw-mawr'","From H1167 and H8558; possessor of (the) palm tree; Baal Tamar, a place in Palestine: - Baal-tamar."]},{"k":"H1194","v":["בְּעֹן","be‛ôn","beh-ohn'","Probably a contraction of H1010; Beon, a place East of the Jordan: - Beon."]},{"k":"H1195","v":["בַּעֲנָא","ba‛ănâ'","bah-an-aw'","The same as H1196; Baana, the name of four Israelites: - Baana, Baanah."]},{"k":"H1196","v":["בַּעֲנָה","ba‛ănâh","bah-an-aw'","From a derivative of H6031 with prepositional prefix; in affliction: - Baanah, the name of four Isr: - Baanah."]},{"k":"H1197","v":["בָּעַר","bâ‛ar","baw-ar'","A primitive root; to kindle, that is, consume (by fire or by eating); also (as denominative from H1198) to be (become) brutish: - be brutish, bring (put, take) away, burn, (cause to) eat (up), feed, heat, kindle, set ([on fire]), waste."]},{"k":"H1198","v":["בַּעַר","ba‛ar","bah'-ar","From H1197; properly food (as consumed); that is, (be extension) of cattle brutishness; (concretely) stupid: - brutish (person), foolish."]},{"k":"H1199","v":["בָּעֲרָא","bâ‛ărâ'","bah-ar-aw'","From H1198; brutish; Baara, an Israelitish woman: - Baara."]},{"k":"H1200","v":["בְּעֵרָה","be‛êrâh","be-ay-raw'","From H1197; a burning: - fire."]},{"k":"H1201","v":["בַּעְשָׁא","ba‛shâ'","bah-shaw'","From an unused root meaning to stink; offensiveness; Basha, a king of Israel: - Baasha."]},{"k":"H1202","v":["בַּעֲשֵׂיָה","ba‛ăśêyâh","bah-as-ay-yaw'","From H6213 and H3050 with prepositional prefix; in (the) work of Jah; Baasejah, an Israelite: - Baaseiah."]},{"k":"H1203","v":["בְּעֶשְׁתְּרָה","be‛eshterâh","beh-esh-ter-aw'","From H6251 (as singular of H6252) with prepositional prefix; with Ashtoreth; Beeshterah, a place East of the Jordan: - Beeshterah."]},{"k":"H1204","v":["בָּעַת","bâ‛ath","baw-ath'","A primitive root; to fear: - affright, be (make) afraid, terrify, trouble."]},{"k":"H1205","v":["בְּעָתָה","be‛âthâh","beh-aw-thaw'","From H1204; fear: - trouble."]},{"k":"H1206","v":["בֹּץ","bôts","botse","Probably the same as H948; mud (as whitish clay): - mire."]},{"k":"H1207","v":["בִּצָּה","bitstsâh","bits-tsaw'","Intensive from H1206; a swamp: - fen. mire (-ry place)."]},{"k":"H1208","v":["בָּצוֹר","bâtsôr","baw-tsore'","From H1219; inaccessible, that is, lofty: - vintage [by confusion with H1210]."]},{"k":"H1209","v":["בֵּצַי","bêtsay","bay-tsah'ee","Perhaps the same as H1153; Betsai, the name of two Israelites: - Bezai."]},{"k":"H1210","v":["בָּצִיר","bâtsı̂yr","baw-tseer'","From H1219; clipped, that is, the grape crop: - vintage."]},{"k":"H1211","v":["בֶּצֶל","betsel","beh'-tsel","From an unused root apparently meaning to peel; an onion: - onion."]},{"k":"H1212","v":["בְּצַלְאֵל","betsal'êl","bets-al-ale'","Probably from H6738 and H410 with prepositional prefix; in (the) shadow (that is, protection) of God; Betsalel; the name of two Israelites: - Bezaleel."]},{"k":"H1213","v":["בַּצְלִית    בַּצְלוּת","batslûth    batslı̂yth","bats-looth', bats-leeth'","From the same as H1211; a peeling; Batsluth or Batslith; an Israelite: - Bazlith, Bazluth."]},{"k":"H1214","v":["בָּצַע","bâtsa‛","baw-tsah'","A primitive root to break off, that is, (usually) plunder; figuratively to finish, or (intransitively) stop: - (be) covet (-ous), cut (off), finish, fulfill, gain (greedily), get, be given to [covetousness], greedy, perform, be wounded."]},{"k":"H1215","v":["בֶּצַע","betsa‛","beh'-tsah","From H1214; plunder; by extension gain (usually unjust): - covetousness, (dishonest) gain, lucre, profit."]},{"k":"H1216","v":["בָּצֵק","bâtsêq","baw-tsake'","A primitive root; perhaps to swell up, that is, blister: - swell."]},{"k":"H1217","v":["בָּצֵק","bâtsêq","baw-tsake'","From H1216; dough (as swelling by fermentation): - dough, flour."]},{"k":"H1218","v":["בָּצְקַת","botsqath","bots-cath'","From H1216; a swell of ground; Botscath, a place in Palestine: - Bozcath, Boskath."]},{"k":"H1219","v":["בָּצַר","bâtsar","baw-tsar'","A primitive root; to clip off; specifically (as denominative from H1210) to gather grapes; also to be isolated (that is, inaccessible by height or fortification): - cut off, (de-) fenced, fortify, (grape) gather (-er), mighty things, restrain, strong, wall (up), withhold."]},{"k":"H1220","v":["בֶּצֶר","betser","beh'-tser","From H1219; strictly a clipping, that is, gold (as dug out): - gold defence."]},{"k":"H1221","v":["בֶּצֶר","betser","beh'-tser","The same as H1220; an inaccessible spot; Betser, a place in Palestine: - Bezer."]},{"k":"H1222","v":["בְּצַר","betsar","bets-ar'","Another form for H1220; gold: - gold."]},{"k":"H1223","v":["בָּצְרָה","botsrâh","bots-raw'","Feminine from H1219; an enclosure, that is, sheepfold: - Bozrah."]},{"k":"H1224","v":["בָּצְרָה","botsrâh","bots-raw'","The same as H1223; Botsrah, a place in Edom: - Bozrah."]},{"k":"H1225","v":["בִּצָּרוֹן","bitstsârôn","bits-tsaw-rone'","Masculine intensive from H1219; a fortress: - stronghold."]},{"k":"H1226","v":["בַּצֹּרֶת","batstsôreth","bats-tso'-reth","Feminine intensive from H1219; restraint (of rain), that is, drought: - dearth, drought."]},{"k":"H1227","v":["בַּקְבּוּק","baqbûq","bak-book'","The same as H1228; Bakbuk, one of the Nethinim: - Bakbuk."]},{"k":"H1228","v":["בַּקְבֻּק","baqbûq","bak-book'","From H1238; a bottle (from the gurgling in emptying): - bottle, cruse."]},{"k":"H1229","v":["בַּקְבֻּקְיָה","baqbûqyâh","bak-book-yaw'","From H1228 and H3050; emptying (that is, wasting) of Jah; Bakbukjah, an Israelite: - Bakbukiah."]},{"k":"H1230","v":["בַּקְבַּקַּר","baqbaqqar","bak-bak-kar'","Reduplicated from H1239; searcher; Bakbakkar, an Israelite: - Bakbakkar."]},{"k":"H1231","v":["בֻּקִּי","bûqqı̂y","book-kee'","From H1238; wasteful; Bukki, the name of two Israelites: - Bukki."]},{"k":"H1232","v":["בֻּקִּיָּה","bûqqı̂yâh","book-kee-yaw'","From H1238 and H3050; wasting of Jah; Bukkijah, an Israelite: - Bukkiah."]},{"k":"H1233","v":["בְּקִיעַ","beqı̂ya‛","bek-ee'-ah","From H1234; a fissure: - breach, cleft."]},{"k":"H1234","v":["בָּקַע","bâqa‛","baw-kah'","A primitive root; to cleave; generally to rend, break, rip or open: - make a breach, break forth (into, out, in pieces, through, up), be ready to burst, cleave (asunder), cut out, divide, hatch, rend (asunder), rip up, tear, win."]},{"k":"H1235","v":["בֶּקַע","beqa‛","beh'-kah","From H1234; a section (half) of a shekel, that is, a beka (a weight and a coin): - bekah, half a shekel."]},{"k":"H1236","v":["בִּקְעָא","biq‛â'","bik-aw'","(Chaldee); corresponding to H1237: - plain."]},{"k":"H1237","v":["בִּקְעָה","biq‛âh","bik-aw'","From H1234; properly a split, that is, a wide level valley between mountains: - plain, valley."]},{"k":"H1238","v":["בָּקַק","bâqaq","baw-kah'","A primitive root; to pour out, that is, to empty, figuratively to depopulate; by analogy to spread out (as a fruitful vine): - (make) empty (out), fail, X utterly, make void."]},{"k":"H1239","v":["בָּקַר","bâqar","baw-kar'","A primitive root; properly to plough, or (generally) break forth, that is, (figuratively) to inspect, admire, care for, consider: - (make) inquire (-ry), (make) search, seek out."]},{"k":"H1240","v":["בְּקַר","beqar","bek-ar'","(Chaldee); corresponding to H1239: - inquire, make search."]},{"k":"H1241","v":["בָּקָר","bâqâr","baw-kawr'","From H1239; a beeve or animal of the ox kind of either gender (as used for ploughing); collectively a herd: - beeve, bull (+ -ock), + calf, + cow, great [cattle], + heifer, herd, kine, ox."]},{"k":"H1242","v":["בֹּקֶר","bôqer","bo'-ker","From H1239; properly dawn (as the break of day); generally morning: -  (+) day, early, morning, morrow."]},{"k":"H1243","v":["בַּקָּרָה","baqqârâh","bak-kaw-raw'","Intensive from H1239; a looking after: - seek out."]},{"k":"H1244","v":["בִּקֹּרֶת","biqqôreth","bik-ko'-reth","From H1239; properly examination, that is, (by implication) punishment: - scourged."]},{"k":"H1245","v":["בָּקַשׁ","bâqash","baw-kash'","A primitive root; to search out (by any method; specifically in worship or prayer); by implication to strive after: - ask, beg, beseech, desire, enquire, get, make inquisition, procure, (make) request, require, seek (for)."]},{"k":"H1246","v":["בַּקָּשָׁה","baqqâshâh","bak-kaw-shaw'","From H1245; a petition: - request."]},{"k":"H1247","v":["בַּר","bar","bar","(Chaldee); corresponding to H1121; a son, grandson, etc.: -    X old, son."]},{"k":"H1248","v":["בַּר","bar","bar","Borrowed (as a title) from H1247; the heir (apparent to the throne): - son."]},{"k":"H1249","v":["בַּר","bar","bar","From H1305 (in its various senses); beloved; also pure, empty: - choice, clean, clear, pure."]},{"k":"H1250","v":["בַּר    בָּר","bâr    bar","bawr, bar","From H1305 (in the sense of winnowing); grain of any kind (even while standing in the field); by extension the open country: - corn, wheat."]},{"k":"H1251","v":["בַּר","bar","bar","(Chaldee); corresponding to H1250; a field: - field."]},{"k":"H1252","v":["בֹּר","bôr","bore","From H1305; purity: - cleanness, pureness."]},{"k":"H1253","v":["בֹּר","bôr","bore","The same as H1252; vegetable lye (from its cleansing); used as a soap for washing, or a flux for metals: -    X never so, purely."]},{"k":"H1254","v":["בָּרָא","bârâ'","baw-raw'","A primitive root; (absolutely) to create; (qualified) to cut down (a wood), select, feed (as formative processes): - choose, create (creator), cut down, dispatch, do, make (fat)."]},{"k":"H1255","v":["בְּרֹאדַךְ בַּלְאֲדָן","berô'dak bal'ădân","ber-o-dak' bal-ad-awn'","A variation of H4757; Berodak Baladan, a Babylonian king: - Berodach-baladan."]},{"k":"H1256","v":["בְּרָאיָה","berâ'yâh","ber-aw-yaw'","From H1254 and H3050; Jah has created; Berajah, an Israelite: - Beraiah."]},{"k":"H1257","v":["בַּרְבֻּר","barbûr","bar-boor'","By reduplication from H1250; a fowl (as fattened on grain): - fowl."]},{"k":"H1258","v":["בָּרַד","bârad","baw-rad","A primitive root, to hail: - hail."]},{"k":"H1259","v":["בָּרָד","bârâd","baw-rawd'","From H1258; hail: - hail ([stones])."]},{"k":"H1260","v":["בֶּרֶד","bered","beh'-red","From H1258; hail; Bered, the name of a place south of Palestine, also of an Israelite: - Bered."]},{"k":"H1261","v":["בָּרֹד","bârôd","baw-rode'","From H1258; spotted (as if with hail): - grisled."]},{"k":"H1262","v":["בָּרָה","bârâh","baw-raw'","A primitive root; to select; also (as denominative from H1250) to feed; also (as equivalent to H1305) to render clear (Ecc_3:18): - choose, (cause to) eat, manifest, (give) meat."]},{"k":"H1263","v":["בָּרוּךְ","bârûk","baw-rook'","Passive participle from H1288; blessed; Baruk, the name of three Israelites: - Baruch."]},{"k":"H1264","v":["בְּרוֹם","berôm","ber-ome'","Probably of foreign origin; damask (stuff of variegated thread): - rich apparel."]},{"k":"H1265","v":["בְּרוֹשׁ","berôsh","ber-osh'","Of uncertain derivation; a cypress tree (perhaps); hence a lance or a musical instrument (as made of that wood): - fir (tree)."]},{"k":"H1266","v":["בְּרוֹת","berôth","ber-oth'","A variation of H1265; the cypress (or some elastic tree): - fir."]},{"k":"H1267","v":["בָּרוּת","bârûth","baw-rooth'","From H1262; food: - meat."]},{"k":"H1268","v":["בֵּרֹתַי    בֵּרוֹתָה","bêrôthâh    bêrôthay","bay-ro-thaw', bay-ro-thah'ee","Probably from H1266; cypress or cypresslike; Berothah or Berothai, a place north of Palestine: - Berothah, Berothai."]},{"k":"H1269","v":["בִּרְזוֹת","birzôth","beer-zoth'","Probably feminine plural from an unused root (apparently meaning to pierce); holes; Birzoth, an Israelite: - Birzavith [from the margin]."]},{"k":"H1270","v":["בַּרְזֶל","barzel","bar-zel'","Perhaps from the root of H1269; iron (as cutting); by extension an iron implement: - (ax) head, iron."]},{"k":"H1271","v":["בַּרְזִלַּי","barzillay","bar-zil-lah'ee","From H1270; iron hearted; Barzillai, the name of three Israelites: - Barzillai."]},{"k":"H1272","v":["בָּרַח","bârach","baw-rakh'","A primitive root; to bolt, that is, figuratively to flee suddenly: - chase (away); drive away, fain, flee (away), put to flight, make haste, reach, run away, shoot."]},{"k":"H1273","v":["בַּרְחֻמִי","barchûmı̂y","bar-khoo-mee'","By transposition for H978; a Barchumite, or native of Bachurim: - Barhumite."]},{"k":"H1274","v":["בְּרִי","berı̂y","ber-ee'","From H1262; fat: - fat."]},{"k":"H1275","v":["בֵּרִי","bêrı̂y","bay-ree'","Probably by contraction from H882; Beri, an Israelite: - Beri."]},{"k":"H1276","v":["בֵּרִי","bêrı̂y","bay-ree'","Of uncertain derivation; (only in the plural and with the article) the Berites, a place in Palestine: - Berites."]},{"k":"H1277","v":["בָּרִיא","bârı̂y'","baw-ree'","From H1254 (in the sense of H1262): fatted or plump: - fat ([fleshed], -ter), fed, firm, plenteous, rank."]},{"k":"H1278","v":["בְּרִיאָה","berı̂y'âh","ber-ee-aw'","Feminine from H1254; a creation, that is, a novelty: - new thing."]},{"k":"H1279","v":["בִּרְיָה","biryâh","beer-yaw'","Feminine from H1262; food: - meat."]},{"k":"H1280","v":["בְּרִיחַ","berı̂yach","ber-ee'-akh","From H1272; a bolt: - bar, fugitive."]},{"k":"H1281","v":["בָּרִחַ    בָּרִיחַ","bârı̂yach    bâriach","baw-ree'-akh, baw-ree'-akh","From H1272; a fugitive, that is, the serpent (as fleeing), and the constellation by that name: - crooked, noble, piercing."]},{"k":"H1282","v":["בָּרִיחַ","bârı̂yach","baw-ree'-akh","The same as H1281; Bariach, an Israelite: - Bariah."]},{"k":"H1283","v":["בְּרִיעָה","berı̂y‛âh","ber-ee'-aw","Apparently from the feminine of H7451 with prepositional prefix; in trouble; Beriah, the name of four Israelites: - Beriah."]},{"k":"H1284","v":["בְּרִיעִי","berı̂y‛ı̂y","ber-ee-ee'","Patronymic from H1283; a Beriite (collectively) or descendant of Beriah: - Beerites."]},{"k":"H1285","v":["בְּרִית","berı̂yth","ber-eeth'","From H1262 (in the sense of cutting (like H1254)); a compact (because made by passing between pieces of flesh): - confederacy, [con-]feder[-ate], covenant, league."]},{"k":"H1286","v":["בְּרִית","berı̂yth","ber-eeth'","The same as H1285; Berith, a Schechemitish deity: - Berith."]},{"k":"H1287","v":["בֹּרִית","bôrı̂yth","bo-reeth'","Feminine of H1253; vegetable alkali: - sope."]},{"k":"H1288","v":["בָּרַךְ","bârak","baw-rak'","A primitive root; to kneel; by implication to bless God (as an act of adoration), and (vice-versa) man (as a benefit); also (by euphemism) to curse (God or the king, as treason): -    X abundantly, X altogether, X at all, blaspheme, bless, congratulate, curse, X greatly, X indeed, kneel (down), praise, salute, X still, thank."]},{"k":"H1289","v":["בְּרַךְ","berak","ber-ak'","(Chaldee); corresponding to H1288: - bless, kneel."]},{"k":"H1290","v":["בֶּרֶךְ","berek","beh'-rek","From H1288; a knee: - knee."]},{"k":"H1291","v":["בֶּרֶךְ","berek","beh'-rek","(Chaldee); corresponding to H1290: - knee."]},{"k":"H1292","v":["בָּרַכְאֵל","bârak'êl","baw-rak-ale'","From H1288 and H410, God has blessed; Barakel, the father of one of Job’s friends: - Barachel."]},{"k":"H1293","v":["בְּרָכָה","berâkâh","ber-aw-kaw'","From H1288; benediction; by implication prosperity: - blessing, liberal, pool, present."]},{"k":"H1294","v":["בְּרָכָה","berâkâh","ber-aw-kaw'","The same as H1293; Berakah, the name of an Israelite, and also of a valley in Palestine: - Berachah."]},{"k":"H1295","v":["בְּרֵכָה","berêkâh","ber-ay-kaw'","From H1288; a reservoir (at which camels kneel as a resting place): - (fish-) pool."]},{"k":"H1296","v":["בֶּרֶכְיָהוּ    בֶּרֶכְיָה","berekyâh    berekyâhû","beh-rek-yaw', beh-rek-yaw'-hoo","From H1290 and H3050; knee (that is, blessing) of Jah; Berekjah, the name of six Israelites: - Berachiah, Berechiah."]},{"k":"H1297","v":["בְּרַם","beram","ber-am'","(Chaldee); perhaps from H7313 with prepositional prefix; properly highly, that is, surely; but used adversatively, however: - but, nevertheless, yet."]},{"k":"H1298","v":["בֶּרַע","bera‛","beh'-rah","Of uncertain derivation; Bera, a Sodomitish king: - Bera."]},{"k":"H1299","v":["בָּרַק","bâraq","baw-rak'","A primitive root; to lighten (lightning): - cast forth."]},{"k":"H1300","v":["בָּרָק","bârâq","baw-rawk'","From H1299; lightning; by analogy a gleam; concretely a flashing sword: - bright, glitter (-ing, sword), lightning."]},{"k":"H1301","v":["בָּרָק","bârâq","baw-rawk'","The same as H1300; Barak, an Israelite: - Barak."]},{"k":"H1302","v":["בַּרְקוֹס","barqôs","bar-kose'","Of uncertain derivation; Barkos, one of the Nethimim: - Barkos."]},{"k":"H1303","v":["בַּרְקָן","barqân","bar-kawn'","From H1300; a thorn (perhaps as burning brightly): - brier."]},{"k":"H1304","v":["בָּרְקַת    בָּרְקַת","bâreqath    bâreqath","baw-reh'-keth, baw-rek-ath'","From H1300; a gem (as flashing), perhaps the emerald: - carbuncle."]},{"k":"H1305","v":["בָּרַר","bârar","baw-rar'","A primitive root; to clarify (that is, brighten), examine, select: - make bright, choice, chosen, cleanse (be clean), clearly, polished, (shew self) pure (-ify), purge (out)."]},{"k":"H1306","v":["בִּרְשַׁע","birsha‛","beer-shah'","Probably from H7562 with prepositional prefix; with wickedness; Birsha, a king of Gomorrah: - Birsha."]},{"k":"H1307","v":["בֵּרֹתִי","bêrôthı̂y","bay-ro-thee'","Patrial from H1268; a Berothite, or inhabitant of Berothai: - Berothite."]},{"k":"H1308","v":["בְּשׂוֹר","beśôr","bes-ore'","From H1319; cheerful; Besor, a stream of Palestine: - Besor."]},{"k":"H1309","v":["בְּשׂרָה    בְּשׂוֹרָה","beśôrâh    beśôrâh","bes-o-raw', bes-o-raw'","Feminine from H1319; glad tidings; by implication reward for good news: - reward for tidings."]},{"k":"H1310","v":["בָּשַׁל","bâshal","baw-shal'","A primitive root; properly to boil up; hence to be done in cooking; figuratively to ripen: - bake, boil, bring forth, is ripe, roast, seethe, sod (be sodden)."]},{"k":"H1311","v":["בָּשֵׁל","bâshêl","baw-shale'","From H1310; boiled: -  X at all, sodden."]},{"k":"H1312","v":["בִּשְׁלָם","bishlâm","bish-lawm'","Of foreign derivation; Bishlam, a Persian: - Bishlam."]},{"k":"H1313","v":["בָּשָׂם","bâśâm","baw-sawm'","From an unused root meaning to be fragrant; (compare H5561) the balsam plant: - spice."]},{"k":"H1314","v":["בֹּשֶׂם    בֶּשֶׂם","beśem    bôśem","beh'-sem, bo'-sem","From the same as H1313; fragrance; by implication spicery; also the balsam plant: - smell, spice, sweet (odour)."]},{"k":"H1315","v":["בָּשְׂמַת","bośmath","bos-math'","Feminine of the second form of H1314; fragrance; Bosmath, the name of a wife of Esau, and of a dughter of Solomon: - Bashemath, Basmath."]},{"k":"H1316","v":["בָּשָׁן","bâshân","baw-shawn'","Of uncertain derivation; Bashan (often with the article), a region East of the Jordan: - Bashan."]},{"k":"H1317","v":["בָּשְׁנָה","boshnâh","bosh-naw'","Feminine from H954; shamefulness: - shame."]},{"k":"H1318","v":["בָּשַׁס","bâshas","baw-shas'","A primitive root; to trample down: - tread."]},{"k":"H1319","v":["בָּשַׂר","bâśar","baw-sar'","A primitive root; properly to be fresh, that is, full (rosy, figuratively cheerful); to announce (glad news): - messenger, preach, publish, shew forth, (bear, bring, carry, preach, good, tell good) tidings."]},{"k":"H1320","v":["בָּשָׂר","bâśâr","baw-sawr'","From H1319; flesh (from its freshness); by extension body, person; also (by euphemism) the pudenda of a man: - body, [fat, lean] flesh [-ed], kin, [man-] kind, + nakedness, self, skin."]},{"k":"H1321","v":["בְּשַׂר","beśar","bes-ar'","(Chaldee); corresponding to H1320: - flesh."]},{"k":"H1322","v":["בֹּשֶׁת","bôsheth","bo'-sheth","From H954; shame (the feeling and the condition, as well as its cause); by implication (specifically) an idol: - ashamed, confusion, + greatly, (put to) shame (-ful thing)."]},{"k":"H1323","v":["בַּת","bath","bath","From H1129 (as feminine of H1121); a daughter (used in the same wide sense as other terms of relationship, literally and figuratively): - apple [of the eye], branch, company, daughter, X first, X old, + owl, town, village."]},{"k":"H1324","v":["בַּת","bath","bath","Probably from the same as H1327; a bath or Hebrew measure (as a means of division) of liquids: - bath."]},{"k":"H1325","v":["בַּת","bath","bath","(Chaldee); corresponding to H1324: - bath."]},{"k":"H1326","v":["בָּתָה","bâthâh","baw-thaw'","Probably an orthographical variation for H1327; desolation: - waste."]},{"k":"H1327","v":["בַּתָּה","battâh","bat-taw'","Feminine from an unused root (meaning to break in pieces); desolation: - desolate."]},{"k":"H1328","v":["בְּתוּאֵל","bethû'êl","beth-oo-ale'","Apparently from the same as H1326 and H410; destroyed of God; Bethuel, the name of a nephew of Abraham, and of a place in Palestine: - Bethuel. Compare H1329."]},{"k":"H1329","v":["בְּתוּל","bethûl","beth-ool'","For H1328; Bethul (that is, Bethuel), a place in Palestine: - Bethuel."]},{"k":"H1330","v":["בְּתוּלָה","bethûlâh","beth-oo-law'","Feminine passive participle of an unused root meaning to separate; a virgin (from her privacy); sometimes (by continuation) a bride; also (figuratively) a city or state: - maid, virgin."]},{"k":"H1331","v":["בְּתוּלִים","bethûlı̂ym","beth-oo-leem'","Masculine plural of the same as H1330; (collectively and abstractly) virginity; by implication and concretely the tokens of it: -    X maid, virginity."]},{"k":"H1332","v":["בִּתְיָה","bithyâh","bith-yaw'","From H1323 and H3050; daughter (that is, worshipper) of Jah; Bithjah, an Egyptian woman: - Bithiah."]},{"k":"H1333","v":["בָּתַק","bâthaq","baw-thak'","A primitive root; to cut in pieces: - thrust through."]},{"k":"H1334","v":["בָּתַר","bâthar","baw-thar'","A primitive root, to chop up: - divide."]},{"k":"H1335","v":["בֶּתֶר","bether","beh'-ther","From H1334; a section: - part, piece."]},{"k":"H1336","v":["בֶּתֶר","bether","beh'-ther","The same as H1335; Bether, a (craggy) place in Palestine: - Bether."]},{"k":"H1337","v":["בַּת רַבִּים","bath rabbı̂ym","bath rab-beem'","From H1323 and a masculine plural from H7227; the daughter (that is, city) of Rabbah: - Bath-rabbim."]},{"k":"H1338","v":["בִּתְרוֹן","bithrôn","bith-rone'","From H1334; (with the article) the craggy spot; Bithron, a place East of the Jordan: - Bithron."]},{"k":"H1339","v":["בַּת־שֶׁבַע","bath-sheba‛","bath-sheh'-bah","From H1323 and H7651 (in the sense of H7650); daughter of an oath; BathSheba, the mother of Solomon: - Bath-sheba."]},{"k":"H1340","v":["בַּת־שׁוּעַ","bath-shûa‛","bath-shoo'-ah","From H1323 and H7771; daughter of wealth; Bath shua, the same as H1339: - Bath-shua."]},{"k":"H1341","v":["גֵּא","gê'","gay'","For H1343; haughty: - proud."]},{"k":"H1342","v":["גָּאָה","gâ'âh","gaw-aw'","A primitive root; to mount up; hence in general to rise, (figuratively) be majestic: - gloriously, grow up, increase, be risen, triumph."]},{"k":"H1343","v":["גֵּאֶה","ge'eh","gay-eh'","From H1342; lofty; figuratively arrogant: - proud."]},{"k":"H1344","v":["גֵּאָה","gê'âh","gay-aw'","Feminine from H1342; arrogance: - pride."]},{"k":"H1345","v":["גְּאוּאֵל","ge'û'êl","gheh-oo-ale'","From H1342 and H410; majesty of God; Geuel, an Israelite: - Geuel."]},{"k":"H1346","v":["גַּאֲוָה","ga'ăvâh","gah-av-aw'","From H1342; arrogance or majesty; by implication (concretely) ornament: - excellency, haughtiness, highness, pride, proudly, swelling."]},{"k":"H1347","v":["גָּאוֹן","gâ'ôn","gaw-ohn'","From H1342; the same as H1346: - arrogancy, excellency (-lent), majesty, pomp, pride, proud, swelling."]},{"k":"H1348","v":["גֵּאוּת","gê'ûth","gay-ooth'","From H1342; the same as H1346: - excellent things, lifting up, majesty, pride, proudly, raging."]},{"k":"H1349","v":["גַּאֲיוֹן","ga'ăyôn","gah-ah-yone'","From H1342; haughty: - proud."]},{"k":"H1350","v":["גָּאַל","gâ'al","gaw-al'","A primitive root, to redeem (according to the Oriental law of kinship), that is, to be the next of kin (and as such to buy back a relative’s property, marry his widow, etc.): -    X in any wise, X at all, avenger, deliver, (do, perform the part of near, next) kinsfolk (-man), purchase, ransom, redeem (-er), revenger."]},{"k":"H1351","v":["גָּאַל","gâ'al","gaw-al'","A primitive root, (rather identical with H1350, through the idea of freeing, that is, repudiating); to soil or (figuratively) desecrate: - defile, pollute, stain."]},{"k":"H1352","v":["גֹּאֶל","gô'el","go'-el","From H1351; profanation: - defile."]},{"k":"H1353","v":["גְּאֻלָּה","ge'ûllâh","gheh-ool-law'","Feminine passive participle of H1350; redemption (including the right and the object); by implication relationship: - kindred, redeem, redemption, right."]},{"k":"H1354","v":["גַב","gab","gab","From an unused root meaning to hollow or curve; the back (as rounded (compare H1460 and H1479); by analogy the top or rim, a boss, a vault, arch of eye, bulwarks, etc.: - back, body, boss, eminent (higher) place, [eye] brows, nave, ring."]},{"k":"H1355","v":["גַּב","gab","gab","(Chaldee); corresponding to H1354: - back."]},{"k":"H1356","v":["גֵּב","gêb","gabe","From H1461; a log (as cut out); also well or cistern (as dug): - beam, ditch, pit."]},{"k":"H1357","v":["גֵּב","gêb","gabe","Probably from H1461 (compare H1462); a locust (from its cutting): - locust."]},{"k":"H1358","v":["גֹּב","gôb","gobe","From a root corresponding to H1461; a pit (for wild animals) (as cut out): - den."]},{"k":"H1359","v":["גּוֹב    גֹּב","gôb    gôb","gobe, gobe'","From H1461; pit; Gob, a place in Palestine: - Gob."]},{"k":"H1360","v":["גֶּבֶא","gebe'","geh'-beh","From an unused root meaning probably to collect; a reservoir; by analogy a marsh: - marsh, pit."]},{"k":"H1361","v":["גָּבַהּ","gâbahh","gaw-bah'","A primitive root; to soar, that is, be lofty; figuratively to be haughty: - exalt, be haughty, be (make) high (-er), lift up, mount up, be proud, raise up great height, upward."]},{"k":"H1362","v":["גָּבָהּ","gâbâhh","gaw-bawh'","From H1361; lofty (literally or figuratively): - high, proud."]},{"k":"H1363","v":["גֹּבַהּ","gôbahh","go'-bah","From H1361; elation, grandeur, arrogance: - excellency, haughty, height, high, loftiness, pride."]},{"k":"H1364","v":["גָּבוֹהַּ    גָּבֹהַּ","gâbôhha    gâbôhha","gaw-bo'-ah, gaw-bo'-ah","From H1361; elevated (or elated), powerful, arrogant: - haughty, height, high (-er), lofty, proud, X exceeding proudly."]},{"k":"H1365","v":["גַּבְהוּת","gabhûth","gab-hooth'","From H1361; pride: - loftiness, lofty."]},{"k":"H1366","v":["גְּבֻל    גְּבוּל","gebûl    gebûl","gheb-ool', gheb-ool'","From H1379; properly a cord (as twisted), that is, (by implication) a boundary; by extension the territory inclosed: - border, bound, coast, X great, landmark, limit, quarter, space."]},{"k":"H1367","v":["גְּבֻלָה    גְּבוּלָה","gebûlâh    gebûlâh","gheb-oo-law', gheb-oo-law'","Feminine of H1366; a boundary, region: - border, bound, coast, landmark, place."]},{"k":"H1368","v":["גִּבֹּר    גִּבּוֹר","gibbôr    gibbôr","ghib-bore', ghib-bore'","Intensive from the same as H1397; powerful; by implication warrior, tyrant: - champion, chief, X excel, giant, man, mighty (man, one), strong (man), valiant man."]},{"k":"H1369","v":["גְּבוּרָה","gebûrâh","gheb-oo-raw'","Feminine passive participle from the same as H1368; force (literally or figuratively); by implication valor, victory: - force, mastery, might, mighty (act, power), power, strength."]},{"k":"H1370","v":["גְּבוּרָה","gebûrâh","gheb-oo-raw'","(Chaldee); corresponding to H1369; power: - might."]},{"k":"H1371","v":["גִּבֵּחַ","gibbêach","ghib-bay'-akh","From an unused root meaning to be high (in the forehead); bald in the forehead: - forehead bald."]},{"k":"H1372","v":["גַּבַּחַת","gabbachath","gab-bakh'-ath","From the same as H1371; baldness in the forehead; by analogy a bare spot on the right side of cloth: - bald forehead, X without."]},{"k":"H1373","v":["גַּבַּי","gabbay","gab-bah'ee","From the same as H1354; collective: - Gabbai, an Isr: - Gabbai."]},{"k":"H1374","v":["גֵּבִים","gêbı̂ym","gay-beem'","Plural of H1356; cisterns; Gebim, a place in Palestine: - Gebim."]},{"k":"H1375","v":["גְּבִיעַ","gebı̂ya‛","gheb-ee'-ah","From an unused root (meaning to be convex); a goblet; by analogy the calyx of a flower: - house, cup, pot."]},{"k":"H1376","v":["גְּבִיר","gebı̂yr","gheb-eer'","From H1396; a master: - lord."]},{"k":"H1377","v":["גְּבִירָה","gebı̂yrâh","gheb-ee-raw'","Feminine of H1376; a mistress: - queen."]},{"k":"H1378","v":["גָּבִישׁ","gâbı̂ysh","gaw-beesh'","From an unused root (probably meaning to freeze); crystal (from its resemblance to ice): - pearl."]},{"k":"H1379","v":["גָּבַל","gâbal","gaw-bal'","A primitive root; properly to twist as a rope; only (as a denominative from H1366) to bound (as by a line): - be border, set (bounds about)."]},{"k":"H1380","v":["גְּבַל","gebal","gheb-al'","From H1379 (in the sense of a chain of hills); a mountain; Gebal, a place in Phoenicia: - Gebal."]},{"k":"H1381","v":["גְּבָל","gebâl","gheb-awl'","The same as H1380; Gebal, a region in Idumaea: - Gebal."]},{"k":"H1382","v":["גִּבְלִי","giblı̂y","ghib-lee'","Patrial from H1380; a Gebalite, or inhabitant of Gebal: - Giblites, stone-squarer."]},{"k":"H1383","v":["גַּבְלֻת","gablûth","gab-looth'","From H1379; a twisted chain or lace: - end."]},{"k":"H1384","v":["גִּבֵּן","gibbên","gib-bane'","From an unused root meaning to be arched or contracted; hunch backed: - crookbackt."]},{"k":"H1385","v":["גְּבִנָה","gebinâh","gheb-ee-naw'","Feminine from the same as H1384; curdled milk: - cheese."]},{"k":"H1386","v":["גַּבְנֹן","gabnôn","gab-nohn'","From the same as H1384; a hump or peak of hills: - high."]},{"k":"H1387","v":["גֶּבַע","geba‛","gheh'-bah","From the same as H1375, a hillock; Geba, a place in Palestine: - Gaba, Geba, Gibeah."]},{"k":"H1388","v":["גִּבְעָא","gib‛â'","ghib-aw'","By permutation for H1389; a hill; Giba, a place in Palestine: - Gibeah."]},{"k":"H1389","v":["גִּבְעָה","gib‛âh","ghib-aw'","Feminine from the same as H1387; a hillock: - hill, little hill."]},{"k":"H1390","v":["גִּבְעָה","gib‛âh","ghib-aw'","The same as H1389; Gibah; the name of three places in Palestine: - Gibeah, the hill."]},{"k":"H1391","v":["גִּבְעוֹן","gib‛ôn","ghib-ohn'","From the same as H1387; hilly; Gibon, a place in Palestine: - Gibeon."]},{"k":"H1392","v":["גִּבְעֹל","gib‛ôl","ghib-ole'","Prolonged H1375; the calyx of a flower: - bolled."]},{"k":"H1393","v":["גִּבְעֹנִי","gib‛ônı̂y","ghib-o-nee'","Patrial from H1391; a Gibonite, or inhabitant of Gibon: - Gibeonite."]},{"k":"H1394","v":["גִּבְעַת","gib‛ath","ghib-ath'","From the same as H1375; hilliness; Gibath: - Gibeath."]},{"k":"H1395","v":["גִּבְעָתִי","gib‛âthı̂y","ghib-aw-thee'","Patrial from H1390; a Gibathite, or inhabitant of Gibath: - Gibeathite."]},{"k":"H1396","v":["גָּבַר","gâbar","gaw-bar'","A primitive root; to be strong; by implication to prevail, act insolently: - exceed, confirm, be great, be mighty, prevail, put to more [strength], strengthen, be stronger, be valiant."]},{"k":"H1397","v":["גֶּבֶר","geber","gheh'-ber","From H1396; properly a valiant man or warrior; generally a person simply: - every one, man, X mighty."]},{"k":"H1398","v":["גֶּבֶר","geber","gheh'-ber","The same as H1397; Geber, the name of two Israelites: - Geber."]},{"k":"H1399","v":["גְּבַר","gebar","gheb-ar'","From H1396; the same as H1397; a person: - man."]},{"k":"H1400","v":["גְּבַר","gebar","gheb-ar'","(Chaldee); corresponding to H1399: - certain, man."]},{"k":"H1401","v":["גִּבָּר","gibbâr","ghib-bawr'","(Chaldee); intensive of H1400; valiant, or warrior: - mighty."]},{"k":"H1402","v":["גִּבָּר","gibbâr","ghib-bawr'","Intensive of H1399; Gibbar, an Israelite: - Gibbar."]},{"k":"H1403","v":["גַּבְרִיאֵל","gabrı̂y'êl","gab-ree-ale'","From H1397 and H410; man of God; Gabriel, an archangel: - Gabriel."]},{"k":"H1404","v":["גְּבֶרֶת","gebereth","gheb-eh'-reth","Feminine of H1376; mistress: - lady, mistress."]},{"k":"H1405","v":["גִּבְּתוֹן","gibbethôn","ghib-beth-one'","Intensive of H1389; a hilly spot; Gibbethon, a place in Palestine: - Gibbethon."]},{"k":"H1406","v":["גָּג","gâg","gawg","Probably by reduplication from H1342; a roof; by analogy the top of an altar: - roof (of the house), (house) top (of the house)."]},{"k":"H1407","v":["גַּד","gad","gad","From H1413 (in the sense of cutting); coriander seed (from its furrows): - coriander."]},{"k":"H1408","v":["גַּד","gad","gad","A variation of H1409; Fortune, a Babylonian deity: - that troop."]},{"k":"H1409","v":["גָּד","gâd","gawd","From H1464 (in the sense of distributing); fortune: - troop."]},{"k":"H1410","v":["גָּד","gâd","gawd","From H1464; Gad, a son of Jacob, including his tribe and its territory; also a prophet: - Gad."]},{"k":"H1411","v":["גְּדָבָר","gedâbâr","ghed-aw-bawr'","(Chaldee); corresponding to H1489; a treasurer: - treasurer."]},{"k":"H1412","v":["גֻּדְגֹּדָה","gûdgôdâh","gud-go'-daw","By reduplication from H1413 (in the sense of cutting) cleft; Gudgodah, a place in the Desert: - Gudgodah."]},{"k":"H1413","v":["גָּדַד","gâdad","gaw-dad'","A primitive root (compare H1461); to crowd; also to gash (as if by pressing into): - assemble (selves by troops), gather (selves together, self in troops), cut selves."]},{"k":"H1414","v":["גְּדַד","gedad","ghed-ad'","(Chaldee); corresponding to H1413; to cut down: - hew down."]},{"k":"H1415","v":["גָּדָה","gâdâh","gaw-daw'","From an unused root (meaning to cut off); a border of a river (as cut into by the stream): - bank."]},{"k":"H1416","v":["גְּדוּד","gedûd","ghed-ood'","From H1413; a crowd (especially of soldiers): - army, band (of men), company, troop (of robbers)."]},{"k":"H1417","v":["גְּדֻדָה    גְּדוּד","gedûd    gedûdâh","ghed-ood', ghed-oo-daw'","From H1413; a furrow (as cut): - furrow."]},{"k":"H1418","v":["גְּדוּדָה","gedûdâh","ghed-oo-daw'","Feminine participle passive of H1413; an incision: - cutting."]},{"k":"H1419","v":["גָּדֹל    גָּדוֹל","gâdôl    gâdôl","gaw-dole', gaw-dole'","From H1431; great (in any sense); hence older; also insolent: -  + aloud, elder (-est), + exceeding (-ly), + far, (man of) great (man, matter, thing, -er, -ness), high, long, loud, mighty, more, much, noble, proud thing, X sore, (´) very."]},{"k":"H1420","v":["גְּדוּלָּה    גְּדֻלָּה    גְּדוּלָה","gedûlâh    gedûllâh    gedûllâh","ghed-oo-law' (all three forms)","Feminine of H1419; greatness; (concretely) mighty acts: - dignity, great things (-ness), majesty."]},{"k":"H1421","v":["גִּדֻּפָה    גִּדּוּפָה    גִּדֻּף    גִּדּוּף","giddûph    giddûph    giddûphâh    giddûphâh","ghid-doof' (1,2), ghid-doo-faw' (3,4)","From H1422; vilification: - reproach, reviling."]},{"k":"H1422","v":["גְּדּוּפָה","gedûphâh","ghed-oo-faw'","Feminine passive participle of H1442; a revilement: - taunt."]},{"k":"H1423","v":["גְּדִי","gedı̂y","ghed-ee'","From the same as H1415; a young goat (from browsing): - kid."]},{"k":"H1424","v":["גָּדִי","gâdı̂y","gaw-dee'","From H1409; fortunate; Gadi, an Israelite: - Gadi."]},{"k":"H1425","v":["גָּדִי","gâdı̂y","gaw-dee'","Patronymic from H1410; a Gadite (collectively) or descendant of Gad: - Gadites, children of Gad."]},{"k":"H1426","v":["גַּדִּי","gaddı̂y","gad-dee'","Intensive for H1424; Gaddi, an Israelite: - Gaddi."]},{"k":"H1427","v":["גַּדִּיאֵל","gaddı̂y'êl","gad-dee-ale'","From H1409 and H410; fortune of God; Gaddiel, an Israelite: - Gaddiel."]},{"k":"H1428","v":["גַּדְיָה    גִּדְיָה","gidyâh    gadyâh","ghid-yaw', gad-yaw'","The same as H1415; a river brink: - bank."]},{"k":"H1429","v":["גְּדִיָּה","gedı̂yâh","ghed-ee-yaw'","Feminine of H1423; a young female goat: - kid."]},{"k":"H1430","v":["גָּדִישׁ","gâdı̂ysh","gaw-deesh'","From an unused root (meaning to heap up); a stack of sheaves; by analogy a tomb: - shock (stack) (of corn), tomb."]},{"k":"H1431","v":["גָּדַל","gâdal","gaw-dal'","A primitive root; properly to twist (compare H1434), that is, to be (causatively make) large (in various senses, as in body, mind, estate or honor, also in pride): - advance, boast, bring up, exceed, excellent, be (-come, do, give, make, wax), great (-er, come to . . estate, + things), grow (up), increase, lift up, magnify (-ifical), be much set by, nourish (up), pass, promote, proudly [spoken], tower."]},{"k":"H1432","v":["גָּדֵל","gâdêl","gaw-dale'","From H1431; large (literally or figuratively): - great, grew."]},{"k":"H1433","v":["גֹּדֶל","gôdel","go'-del","From H1431; magnitude (literally or figuratively): - greatness, stout (-ness)."]},{"k":"H1434","v":["גְּדִל","gedil","ghed-eel'","From H1431 (in the sense of twisting); thread, that is, a tassel or festoon: - fringe, wreath."]},{"k":"H1435","v":["גִּדֵּל","giddêl","ghid-dale'","From H1431; stout; Giddel, the name of one of the Nethinim, also of one of Solomon’s servants: - Giddel."]},{"k":"H1436","v":["גְּדַלְיָהוּ    גְּדַלְיָה","gedalyâh    gedalyâhû","ghed-al-yaw', ghed-al-yaw'-hoo","From H1431 and H3050; Jah has become great; Gedaljah, the name of five Israelites: - Gedaliah."]},{"k":"H1437","v":["גִּדַּלְתִּי","giddaltı̂y","ghid-dal'-tee","From H1431; I have made great; Giddalti, an Israelite: - Giddalti."]},{"k":"H1438","v":["גָּדַע","gâda‛","gaw-dah'","A primitive root; to fell a tree; generally to destroy anything: - cut (asunder, in sunder, down, off), hew down."]},{"k":"H1439","v":["גִּדְעוֹן","gid‛ôn","ghid-ohn'","From H1438; feller (that is, warrior); Gidon, an Israelite: - Gideon."]},{"k":"H1440","v":["גִּדְעֹם","gid‛ôm","ghid-ohm'","From H1438; a cutting (that is, desolation); Gidom, a place in Palestine: - Gidom."]},{"k":"H1441","v":["גִּדְעֹני","gid‛ônı̂y","ghid-o-nee'","From H1438; warlike (compare H1439); Gidoni, an Israelite: - Gideoni."]},{"k":"H1442","v":["גָּדַף","gâdaph","gaw-daf'","A primitive root; to hack (with words), that is, revile: - blaspheme, reproach."]},{"k":"H1443","v":["גָּדַר","gâdar","gaw-dar'","A primitive root; to wall in or around: - close up, fence up, hedge, inclose, make up [a wall], mason, repairer."]},{"k":"H1444","v":["גֶּדֶר","geder","gheh'-der","From H1443; a circumvallation: - wall."]},{"k":"H1445","v":["גֶּדֶר","geder","gheh'-der","The same as H1444; Geder, a place in Palestine: - Geder."]},{"k":"H1446","v":["גְּדוֹר    גְּדֹר","gedôr    gedôr","ghed-ore', ghed-ore'","From H1443; inclosure; Gedor, a place in Palestine; also the name of three Israelites: - Gedor."]},{"k":"H1447","v":["גָּדֵר","gâdêr","gaw-dare'","From H1443; a circumvallation; by implication an inclosure: - fence, hedge, wall."]},{"k":"H1448","v":["גְּדֵרָה","gedêrâh","ghed-ay-raw'","Feminine of H1447; inclosure (especially for flocks): -    [sheep-]cote (fold) hedge, wall."]},{"k":"H1449","v":["גְּדֵרָה","gedêrâh","ghed-ay-raw'","The same as H1448; (with the article) Gederah, a place in Palestine: - Gederah, hedges."]},{"k":"H1450","v":["גְּדֵרוֹת","gedêrôth","ghed-ay-rohth'","Plural of H1448; walls; Gederoth, a place in Palestine: - Gederoth."]},{"k":"H1451","v":["גְּדֵרִי","gedêrı̂y","ghed-ay-ree'","Patrial from H1445; a Gederite, or inhabitant of Geder: - Gederite."]},{"k":"H1452","v":["גְּדֵרָתִי","gedêrâthı̂y","ghed-ay-raw-thee'","Patrial from H1449; a Gederathite, or inhabitant of Gederah: - Gederathite."]},{"k":"H1453","v":["גְּדֵרֹתַיִם","gedêrôthayim","ghed-ay-ro-thah'-yim","Dual of H1448; double wall; Gederothajim, a place in Palestine: - Gederothaim."]},{"k":"H1454","v":["גֵּה","gêh","gay","Probably a clerical error for H2088; this: - this."]},{"k":"H1455","v":["גָּהָה","gâhâh","gaw-haw'","A primitive root; to remove (a bandage from a wound, that is, heal it): - cure."]},{"k":"H1456","v":["גֵּהָה","gêhâh","gay-haw'","From H1455; a cure: - medicine."]},{"k":"H1457","v":["גָּהַר","gâhar","gaw-har'","A primitive root; to prostrate oneself: - cast self down, stretch self."]},{"k":"H1458","v":["גַּו","gav","gav","Another form for H1460; the back: - back."]},{"k":"H1459","v":["גַּו","gav","gav","(Chaldee); corresponding to H1460; the middle: - midst, same, there- (where-) in."]},{"k":"H1460","v":["גֵּו","gêv","gave","From H1342 (corresponding to H1354); the back; by analogy the middle: -  + among, back, body."]},{"k":"H1461","v":["גּוּב","gûb","goob","A primitive root; to dig: - husbandman."]},{"k":"H1462","v":["גּוֹב","gôb","gobe","From H1461; the locust (from its grubbing as a larve): - grasshopper, X great."]},{"k":"H1463","v":["גּוֹג","gôg","gohg","Of uncertain derivation; Gog, the name of an Israelite, also of some northern nation: - Gog."]},{"k":"H1464","v":["גּוּד","gûd","goode","A primitive root (akin to H1413); to crowd upon, that is, attack: - invade, overcome."]},{"k":"H1465","v":["גֵּוָה","gêvâh","gay-vaw'","Feminine of H1460; the back, that is, (by extension) the person: - body."]},{"k":"H1466","v":["גֵּוָה","gêvâh","gay-vaw'","The same as H1465; exaltation; (figuratively) arrogance: - lifting up, pride."]},{"k":"H1467","v":["גֵּוָה","gêvâh","gay-vaw'","(Chaldee); corresponding to H1466: - pride."]},{"k":"H1468","v":["גּוּז","gûz","gooz","A primitive root (compare H1494); properly to shear off; but used only in the (figurative) sense of passing rapidly: - bring, cutoff."]},{"k":"H1469","v":["גֹּזָל    גּוֹזָל","gôzâl    gôzâl","go-zawl', go-zawl'","From H1497; a nestling (as being comparatively nude of feathers): - young (pigeon)."]},{"k":"H1470","v":["גּוֹזָן","gôzân","go-zawn'","Probably from H1468; a quarry (as a place of cutting stones); Gozan, a province of Assyria: - Gozan."]},{"k":"H1471","v":["גֹּי    גּוֹי","gôy    gôy","go'ee, go'-ee","Apparently from the same root as H1465 (in the sense of massing); a foreign nation; hence a Gentile; also (figuratively) a troop of animals, or a flight of locusts: - Gentile, heathen, nation, people."]},{"k":"H1472","v":["גְּוִיָּה","gevı̂yâh","ghev-ee-yaw'","Prolonged for H1465; a body, whether alive or dead: - (dead) body, carcase, corpse."]},{"k":"H1473","v":["גֹּלָה    גּוֹלָה","gôlâh    gôlâh","go-law', go-law'","Active participle feminine of H1540; exile; concretely and collectively, exiles: - (carried away), captive (-ity), removing."]},{"k":"H1474","v":["גּוֹלָן","gôlân","go-lawn'","From H1473; captive; Golan, a place East of the Jordan: - Golan."]},{"k":"H1475","v":["גּוּמָּץ","gûmmâts","goom-mawts'","Of uncertain derivation; a pit: - pit."]},{"k":"H1476","v":["גּוּנִי","gûnı̂y","goo-nee'","Probably from H1598; protected; Guni, the name of two Israelites: - Guni."]},{"k":"H1477","v":["גּוּנִי","gûnı̂y","goo-nee'","Patronymic from H1476; a Gunite (collectively with article prefixed) or descendant of Guni: - Gunites."]},{"k":"H1478","v":["גָּוַע","gâva‛","gaw-vah'","A primitive root; to breathe out, that is, (by implication) expire: - die, be dead, give up the ghost, perish."]},{"k":"H1479","v":["גּוּף","gûph","goof","A primitive root; properly to hollow or arch, that is, (figuratively) close; to shut: - shut."]},{"k":"H1480","v":["גּוּפָה","gûphâh","goo-faw'","From H1479; a corpse (as closed to sense): - body."]},{"k":"H1481","v":["גּוּר","gûr","goor","A primitive root; properly to turn aside from the road (for a lodging or any other purpose), that is, sojourn (as a guest); also to shrink, fear (as in a strange place); also to gather for hostility (as afraid): - abide, assemble, be afraid, dwell, fear, gather (together), inhabitant, remain, sojourn, stand in awe, (be) stranger, X surely."]},{"k":"H1482","v":["גֻּר    גּוּר","gûr    gûr","goor, goor","Perhaps from H1481; a cub (as still abiding in the lair), especially of the lion: - whelp, young one."]},{"k":"H1483","v":["גּוּר","gûr","goor","The same as H1482; Gur, a place in Palestine: - Gur."]},{"k":"H1484","v":["גֹּרָה    גּוֹר","gôr    gôrâh","gore, go-raw'","A variation of H1482: - whelp."]},{"k":"H1485","v":["גּוּר־בַּעַל","gûr-ba‛al","goor-bah'-al","From H1481 and H1168; dwelling of Baal; Gur Baal, a place in Arabia: - Gur-baal."]},{"k":"H1486","v":["גֹּרָל    גּוֹרָל","gôrâl    gôrâl","go-rawl', go-ral'","From an unused root meaning to be rough (as stone); properly a pebble, that is, a lot (small stones being used for that purpose); figuratively a portion or destiny (as if determined by lot): - lot."]},{"k":"H1487","v":["גִּישׁ    גּוּשׁ","gûsh    gı̂ysh","goosh, gheesh","Of uncertainly derivation; a mass of earth: - clod."]},{"k":"H1488","v":["גֵּז","gêz","gaze","From H1494; a fleece (as shorn); also mown grass: - fleece, mowing, mown grass."]},{"k":"H1489","v":["גִּזְבָּר","gizbâr","ghiz-bawr'","Of foreign derivation; treasurer: - treasurer."]},{"k":"H1490","v":["גִּזְבָּר","gizbâr","ghiz-bawr'","(Chaldee); corresponding to H1489: - treasurer."]},{"k":"H1491","v":["גָּזָה","gâzâh","gaw-zaw'","A primitive root (akin to H1468); to cut off, that is, portion out: - take."]},{"k":"H1492","v":["גָּזַּה","gâzzah","gaz-zaw'","Feminine from H1494; a fleece: - fleece."]},{"k":"H1493","v":["גִּזוֹנִי","gizônı̂y","ghee-zo-nee'","Patrial from the unused name of a place apparently in Palestine; a Gizonite or inhabitant of Gizoh: - Gizonite."]},{"k":"H1494","v":["גָּזַז","gâzaz","gaw-zaz'","A primitive root (akin to H1468); to cut off; specifically to shear a flock, or shave the hair; figuratively to destroy an enemy: - cut off (down), poll, shave, ([sheep-]) shear (-er)."]},{"k":"H1495","v":["גָּזֵז","gâzêz","gaw-zaze'","From H1494; shearer; Gazez, the name of two Israelites: - Gazez."]},{"k":"H1496","v":["גָּזִית","gâzı̂yth","gaw-zeeth'","From H1491; something cut, that is, dressed stone: - hewed, hewn stone, wrought."]},{"k":"H1497","v":["גָּזַל","gâzal","gaw-zal'","A primitive root; to pluck off; specifically to flay, strip or rob: - catch, consume, exercise [robbery], pluck (off), rob, spoil, take away (by force, violence), tear."]},{"k":"H1498","v":["גָּזֵל","gâzêl","gaw-zale'","From H1497; robbery, or (concretely) plunder: - robbery, thing taken away by violence."]},{"k":"H1499","v":["גֵּזֶל","gêzel","ghe'-zel","From H1497; plunder, that is, violence: - violence, violent preverting."]},{"k":"H1500","v":["גְּזֵלָה","gezêlâh","ghez-ay-law'","Feminine of H1498 and meaning the same: - that (he had robbed) [which he took violently away], spoil, violence."]},{"k":"H1501","v":["גָּזָם","gâzâm","gaw-zawm'","From an unused root meaning to devour; a kind of locust: - palmer-worm."]},{"k":"H1502","v":["גַּזָּם","gazzâm","gaz-zawm'","From the same as H1501; devourer: - Gazzam, one of the Nethinim: - Gazzam."]},{"k":"H1503","v":["גֶּזַע","geza‛","geh'-zah","From an unused root meaning to cut down (trees); the trunk or stump of a tree (as felled or as planted): - stem, stock."]},{"k":"H1504","v":["גָּזַר","gâzar","gaw-zar'","A primitive root; to cut down or off; (figuratively) to destroy, divide, exclude or decide: - cut down (off), decree, divide, snatch."]},{"k":"H1505","v":["גְּזַר","gezar","ghez-ar'","(Chaldee); corresponding to H1504; to quarry; determine: - cut out, soothsayer."]},{"k":"H1506","v":["גֶּזֶר","gezer","gheh'-zer","From H1504; something cut off; a portion: - part, piece."]},{"k":"H1507","v":["גֶּזֶר","gezer","gheh'-zer","The same as H1506; Gezer, a place in Palestine: - Gazer, Gezer."]},{"k":"H1508","v":["גִּזְרָה","gizrâh","ghiz-raw'","Feminine of H1506; the figure or person (as if cut out); also an inclosure (as separated): - polishing, separate place."]},{"k":"H1509","v":["גְּזֵרָה","gezêrâh","ghez-ay-raw'","From H1504; a desert (as separated): - not inhabited."]},{"k":"H1510","v":["גְּזֵרָה","gezêrâh","ghez-ay-raw'","(Chaldee); From H1505 (as H1504); a decree: - decree."]},{"k":"H1511","v":["גִּרְזִי    גִּזְרִי","gizrı̂y    girzı̂y","ghiz-ree', gher-zee'","The first form is patrial from H1507; a Gezerite (collectively) or inhabitant of Gezer; but the second form is better (as in the text) by transposition and is patrial of H1630; a Girzite (collectively) or member of a native tribe in Palestine: - Gezrites."]},{"k":"H1512","v":["גָּחוֹן","gâchôn","gaw-khone'","Probably from H1518; the external abdomen, belly (as the source of the foetus (compare H1521)): - belly."]},{"k":"H1513","v":["גַּחֶלֶת    גֶּחֶל","gechel    gacheleth","ghe'-khel, gah-kheh'-leth","From an unused root meaning to glow or kindle; an ember: - (burning) coal."]},{"k":"H1514","v":["גַּחַם","gacham","gah'-kham","From an unused root meaning to burn; flame; Gacham, a son of Nahor: - Gaham."]},{"k":"H1515","v":["גַּחַר","gachar","gah'-khar","From an unused root meaning to hide; lurker; Gachar, one of the Nethinim: - Gahar."]},{"k":"H1516","v":["גַּי    גַּיְא","gay'    gay","gah'ee, gah'ee","Probably (by transmutation) from the same root as H1466 (abbreviated); a gorge (from its lofty sides; hence narrow, but not a gully or winter torrent): - valley."]},{"k":"H1517","v":["גִּיד","gı̂yd","gheed","Probably from H1464; a thong (as compressing); by analogy a tendon: - sinew."]},{"k":"H1518","v":["גֹּחַ    גִּיחַ","gı̂yach    gôach","ghee'-akh, go'-akh","A primitive root; to gush forth (as water), generally to issue: - break forth, labor to bring forth, come forth, draw up, take out."]},{"k":"H1519","v":["גּוּחַ    גִּיחַ","gı̂yach    gûach","ghee'-akh, goo'-akh","(Chaldee); corresponding to H1518; to rush forth: - strive."]},{"k":"H1520","v":["גִּיחַ","gı̂yach","ghee'-akh","From H1518; a fountain; Giach, a place in Palestine: - Giah."]},{"k":"H1521","v":["גִּחוֹן    גִּיחוֹן","gı̂ychôn    gichôn","ghee-khone', ghee-khone'","From H1518; stream; Gichon, a river of Paradise; also a valley (or pool) near Jerusalem: - Gihon."]},{"k":"H1522","v":["גֵּחֲזִי    גֵּיחֲזִי","gêychăzı̂y    gêchăzı̂y","gay-khah-zee', gay-khah-zee'","Apparently from H1516 and H2372; valley of a visionary; Gechazi, the servant of Elisha: - Gehazi."]},{"k":"H1523","v":["גּוּל    גִּיל","gı̂yl    gûl","gheel, gool","A primitive root; properly to spin around (under the influence of any violent emotion), that is, usually rejoice, or (as cringing) fear: - be glad, joy, be joyful, rejoice."]},{"k":"H1524","v":["גִּיל","gı̂yl","gheel","From H1523; a revolution (of time, that is, an age); also joy: -  X exceedingly, gladness, X greatly, joy, rejoice (-ing), sort."]},{"k":"H1525","v":["גִּילַת    גִּילָה","gı̂ylâh    gı̂ylath","ghee-law', ghee-lath'","Feminine of H1524; joy: - joy, rejoicing."]},{"k":"H1526","v":["גִּילֹנִי","gı̂ylônı̂y","ghee-lo-nee'","Patrial from H1542; a Gilonite or inhabitant of Giloh: - Gilonite."]},{"k":"H1527","v":["גִּינַת","gı̂ynath","ghee-nath'","Of uncertain derivation; Ginath, an Israelite: - Ginath."]},{"k":"H1528","v":["גִּיר","gı̂yr","gheer","(Chaldee); corresponding to H1615; lime: - plaster."]},{"k":"H1529","v":["גֵּישָׁן","gêyshân","gay-shawn'","From the same as H1487; lumpish; Geshan, an Israelite: - Geshan."]},{"k":"H1530","v":["גַּל","gal","gal","From H1556; something rolled, that is, a heap of stone or dung (plural ruins); by analogy a spring of water (plural waves): - billow, heap, spring, wave."]},{"k":"H1531","v":["גֹּל","gôl","gole","From H1556; a cup for oil (as round): - bowl."]},{"k":"H1532","v":["גַּלָּב","gallâb","gal-lawb'","From an unused root meaning to shave; a barber: - barber."]},{"k":"H1533","v":["גִּלְבֹּעַ","gilbôa‛","gil-bo'-ah","From H1530 and H1158; fountain of ebullition; Gilboa, a mountain of Palestine: - Gilboa."]},{"k":"H1534","v":["גַּלְגַּל","galgal","gal-gal'","By reduplication from H1556; a wheel; by analogy a whirlwind; also dust (as whirled): - heaven, rolling thing, wheel."]},{"k":"H1535","v":["גַּלְגַּל","galgal","gal-gal'","(Chaldee); corresponding to H1534; a wheel: - wheel."]},{"k":"H1536","v":["גִּלְגָּל","gilgâl","ghil-gawl'","A variation of H1534: - wheel."]},{"k":"H1537","v":["גִּלְגָּל","gilgâl","ghil-gawl'","The same as H1536 (with the article as a properly noun); Gilgal, the name of three places in Palestine: - Gilgal. See also H1019."]},{"k":"H1538","v":["גֻּלְגֹּלֶת","gûlgôleth","gul-go'-leth","By reduplication from H1556; a skull (as round); by implication a head (in enumeration of persons): - head, every man, poll, skull."]},{"k":"H1539","v":["גֶּלֶר","geler","ghe'-led","From an unused root probably meaning to polish; the (human) skin (as smooth): - skin."]},{"k":"H1540","v":["גָּלָה","gâlâh","gaw-law'","A primitive root; to denude (especially in a disgraceful sense); by implication to exile (captives being usually stripped); figuratively to reveal: -  + advertise, appear, bewray, bring, (carry, lead, go) captive (into captivity), depart, disclose, discover, exile, be gone, open, X plainly, publish, remove, reveal, X shamelessly, shew, X surely, tell, uncover."]},{"k":"H1541","v":["גְּלָא    גְּלָה","gelâh    gelâ'","ghel-aw', ghel-aw'","(Chaldee); corresponding to H1540: - bring over, carry away, reveal."]},{"k":"H1542","v":["גִּילֹה    גִּלֹה","gilôh    gı̂ylôh","ghee-lo', ghee-lo'","From H1540; open; Giloh, a place in Palestine: - Giloh."]},{"k":"H1543","v":["גֻּלָּה","gûllâh","gool-law'","Feminine from H1556; a fountain, bowl or globe (all as round): - bowl, pommel, spring."]},{"k":"H1544","v":["גִּלֻּל    גִּלּוּל","gillûl    gillûl","ghil-lool', ghil-lool'","From H1556; properly a log (as round); by implication an idol: - idol."]},{"k":"H1545","v":["גְּלוֹם","gelôm","ghel-ome'","From H1563; clothing (as wrapped): - clothes."]},{"k":"H1546","v":["גָּלוּת","gâlûth","gaw-looth'","Feminine from H1540; captivity; concretely exiles (collectively): - (they that are carried away) captives (-ity.)"]},{"k":"H1547","v":["גָּלוּת","gâlûth","gaw-looth'","(Chaldee); corresponding to H1546: - captivity."]},{"k":"H1548","v":["גָּלַח","gâlach","gaw-lakh'","A primitive root; properly to be bald, that is, (causatively) to shave; figuratively to lay waste: - poll, shave (off)."]},{"k":"H1549","v":["גִּלְיוֹן    גִּלָּיוֹן","gillâyôn    gilyôn","ghil-law-yone', ghil-yone'","From H1540; a tablet for writing (as bare); by analogy a mirror (as a plate): - glass, roll."]},{"k":"H1550","v":["גָּלִיל","gâlı̂yl","gaw-leel'","From H1556; a valve of a folding door (as turning); also a ring (as round): - folding, ring."]},{"k":"H1551","v":["גָּלִילָה    גָּלִיל","gâlı̂yl    gâlı̂ylâh","gaw-leel', gaw-lee-law'","The same as H1550; a circle (with the article); Galil (as a special circuit) in the North of Palestine: - Galilee."]},{"k":"H1552","v":["גְּלִילָה","gelı̂ylâh","ghel-ee-law'","Feminine of H1550; a circuit or region: - border, coast, country."]},{"k":"H1553","v":["גְּלִילוֹת","gelı̂ylôth","ghel-ee-lowth'","Plural of H1552; circles; Geliloth, a place in Palestine: - Geliloth."]},{"k":"H1554","v":["גַּלִּים","gallı̂ym","gal-leem'","Plural of H1530; springs, Gallim, a place in Palestine: - Gal-lim."]},{"k":"H1555","v":["גָּלְיַת","golyath","gol-yath'","Perhaps from H1540; exile; Goljath, a Philistine: - Goliath."]},{"k":"H1556","v":["גָּלַל","gâlal","gaw-lal'","A primitive root; to roll (literally or figuratively): - commit, remove, roll (away, down, together), run down, seek occasion, trust, wallow."]},{"k":"H1557","v":["גָּלָל","gâlâl","gaw-lawl'","From H1556; dung (as in balls): - dung."]},{"k":"H1558","v":["גָּלָל","gâlâl","gaw-lawl'","From H1556; a circumstance (as rolled around); only used adverbially, on account of: - because of, for (sake)."]},{"k":"H1559","v":["גָּלָל","gâlâl","gaw-lawl'","From H1556, in the sense of H1560; great; Galal, the name of two Israelites: - Galal."]},{"k":"H1560","v":["גְּלָל","gelâl","ghel-awl'","(Chaldee); from a root corresponding to H1556; weight or size (as if rolled): - great."]},{"k":"H1561","v":["גֵּלֶל","gêlel","gay'-lel","(Chaldee); A variation of H1557; dung (plural balls of dung): - dung."]},{"k":"H1562","v":["גִּלֲלַי","gilălay","ghe-lal-ah'ee","From H1561; dungy; Gilalai, an Israelite: - Gilalai."]},{"k":"H1563","v":["גָּלַם","gâlam","gaw-lam'","A primitive root; to fold: - wrap together."]},{"k":"H1564","v":["גֹּלֶם","gôlem","go'-lem","From H1563; a wrapped (and unformed mass, that is, as the embryo): - substance yet being unperfect."]},{"k":"H1565","v":["גַּלְמוּד","galmûd","gal-mood'","Probably by prolongation from H1563; sterile (as wrapped up too hard); figuratively desolate: - desolate, solitary."]},{"k":"H1566","v":["גָּלַע","gâla‛","gaw-lah'","A primitive root; to be obstinate: - (inter-) meddle (with)."]},{"k":"H1567","v":["גַּלְעֵד","galyêd","gal-ade'","From H1530 and H5707; heap of testimony; Galed, a memorial cairn East of the Jordan: - Galeed."]},{"k":"H1568","v":["גִּלְעָד","gil‛âd","ghil-awd'","Probably from H1567; Gilad, a region East of the Jordan; also the name of three Israelites: - Gilead, Gileadite."]},{"k":"H1569","v":["גִּלְעָדִי","gil‛âdı̂y","ghil-aw-dee'","Patronymic from H1568; a Giladite or descendant of Gilad: - Gileadite."]},{"k":"H1570","v":["גָּלַשׁ","gâlash","gaw-lash'","A primitive root; probably to caper (as a goat): - appear."]},{"k":"H1571","v":["גַּם","gam","gam","By contraction from an unused root meaning to gather; properly assemblage; used only adverbially also, even, yea, though; often repeated as correlation both... and: - again, alike, also, (so much) as (soon), both (so) . . . and, but, either . . . or, even, for all, (in) likewise (manner), moreover, nay . . . neither, one, then (-refore), though, what, with, yea."]},{"k":"H1572","v":["גָּמָא","gâmâ'","gaw-maw'","A primitive root (literally or figuratively) to absorb: - swallow, drink."]},{"k":"H1573","v":["גֹּמֶא","gôme'","go'-meh","From H1572; properly an absorbent, that is, the bulrush (from its porosity); specifically the papyrus: - (bul-) rush."]},{"k":"H1574","v":["גֹּמֶד","gômed","go'-med","From an unused root apparently meaning to grasp; properly a span: - cubit."]},{"k":"H1575","v":["גַּמָּד","gammâd","gam-mawd'","From the same as H1574; a warrior (as grasping weapons): - Grammadims."]},{"k":"H1576","v":["גְּמוּל","gemûl","ghem-ool'","From H1580; treatment, that is, an act (of good or ill); by implication service or requital: - + as hast served, benefit, desert, deserving, that which he hath given, recompence, reward."]},{"k":"H1577","v":["גָּמוּל","gâmûl","gaw-mool'","Passive participle of H1580; rewarded; Gamul, an Israelite: - Gamul. See also H1014."]},{"k":"H1578","v":["גְּמוּלָה","gemûlâh","ghem-oo-law'","Feminine of H1576; meaning the same: - deed, recompence, such a reward."]},{"k":"H1579","v":["גִּמְזוֹ","gimzô","ghim-zo'","Of uncertain derivation; Gimzo, a place in Palestine: - Gimzo."]},{"k":"H1580","v":["גָּמַל","gâmal","gaw-mal'","A primitive root; to treat a person (well or ill), that is, benefit or requite; by implication (of toil) to ripen, that is, (specifically) to wean: - bestow on, deal bountifully, do (good), recompense, requite, reward, ripen, + serve, wean, yield."]},{"k":"H1581","v":["גָּמָל","gâmâl","gaw-mawl'","Apparently from H1580 (in the sense of labor or burden bearing): - camel."]},{"k":"H1582","v":["גְּמַלִּי","gemallı̂y","ghem-al-lee'","Probably from H1581; camel driver; Gemalli, an Israelite: - Gemalli."]},{"k":"H1583","v":["גַּמְלִיאֵל","gamlı̂y'êl","gam-lee-ale'","From H1580 and H410; reward of God; Gamliel, an Israelite: - Gamaliel."]},{"k":"H1584","v":["גָּמַר","gâmar","gaw-mar'","A primitive root; to end (in the sense of completion or failure): - cease, come to an end, fail, perfect, perform."]},{"k":"H1585","v":["גְּמַר","gemar","ghem-ar'","(Chaldee); corresponding to H1584: - perfect."]},{"k":"H1586","v":["גֹּמֶר","gômer","go'-mer","From H1584; completion; Gomer, the name of a son of Japheth and of his descendants; also of a Hebrewess: - Gomer."]},{"k":"H1587","v":["גְּמַרְיָהוּ    גְּמַרְיָה","gemaryâh    gemaryâhû","ghem-ar-yaw', ghem-ar-yaw'-hoo","From H1584 and H3050; Jah has perfected; Gemarjah, the name of two Israelites: - Gemariah."]},{"k":"H1588","v":["גַּן","gan","gan","From H1598; a garden (as fenced): - garden."]},{"k":"H1589","v":["גָּנַב","gânab","gaw-nab'","A primitive root; to thieve (literally or figuratively); by implication to deceive: - carry away, X indeed, secretly bring, steal (away), get by stealth."]},{"k":"H1590","v":["גַּנָּב","gannâb","gan-nawb'","From H1589; a stealer: - thief."]},{"k":"H1591","v":["גְּנֵבָה","genêbâh","ghen-ay-baw'","From H1589; stealing, that is, (concretely) something stolen: - theft."]},{"k":"H1592","v":["גְּנֻבַת","genûbath","ghen-oo-bath'","From H1589; theft; Genubath, an Edomitish prince: - Genubath."]},{"k":"H1593","v":["גַּנָּה","gannâh","gan-naw'","Feminine of H1588; a garden: - garden."]},{"k":"H1594","v":["גִּנָּה","ginnâh","ghin-naw'","Another form for H1593: - garden."]},{"k":"H1595","v":["גֶּנֶז","genez","gheh'-nez","From an unused root meaning to store; treasure; by implication a coffer: - chest, treasury."]},{"k":"H1596","v":["גְּנַז","genaz","ghen-az'","(Chaldee); corresponding to H1595; treasure: - treasure."]},{"k":"H1597","v":["גִּנְזַךְ","ginzak","ghin-zak'","Prolonged from H1595; a treasury: - treasury."]},{"k":"H1598","v":["גָּנַן","gânan","gaw-nan'","A primitive root; to hedge about, that is, (generally) protect: - defend."]},{"k":"H1599","v":["גִּנְּתוֹ    גִּנְּתוֹן","ginnethôn    ginnethô","ghin-neth-one', ghin-neth-o'","From H1598; gardener; Ginnethon or Ginnetho, an Israelite: - Ginnetho, Ginnethon."]},{"k":"H1600","v":["גָּעָה","gâ‛âh","gaw-aw'","A primitive root; to bellow (as cattle): - low."]},{"k":"H1601","v":["גֹּעָה","gô‛âh","go-aw'","Feminine active participle of H1600; lowing; Goah, a place near Jerusalem: - Goath."]},{"k":"H1602","v":["גָּעַל","gâ‛al","gaw-al'","A primitive root; to detest; by implication to reject: - abhor, fail, lothe, vilely cast away."]},{"k":"H1603","v":["גַּעַל","ga‛al","gah'-al","From H1602; loathing; Gaal, an Israelite: - Gaal."]},{"k":"H1604","v":["גֹּעַל","gô‛al","go'-al","From H1602; abhorrence: - loathing."]},{"k":"H1605","v":["גָּעַר","gâ‛ar","gaw-ar'","A primitive root; to chide: - corrupt, rebuke, reprove."]},{"k":"H1606","v":["גְּעָרָה","ge‛ârâh","gheh-aw-raw'","From H1605; a chiding: - rebuke (-ing), reproof."]},{"k":"H1607","v":["גָּעַשׁ","gâ‛ash","gaw-ash'","A primitive root to agitate violently: - move, shake, toss, trouble."]},{"k":"H1608","v":["גַּעַשׁ","ga‛ash","ga'-ash","From H1607; a quaking; Gaash, a hill in Palestine: - Gaash."]},{"k":"H1609","v":["גַּעְתָּם","ga‛tâm","gah-tawm'","Of uncertain derivation; Gatam, an Edomite: - Gatam."]},{"k":"H1610","v":["גַּף","gaph","gaf","From an unused root meaning to arch; the back; by extension the body or self: -    + highest places, himself."]},{"k":"H1611","v":["גַּף","gaph","gaf","(Chaldee); corresponding to H1610: - a wing: - wing."]},{"k":"H1612","v":["גֶּפֶן","gephen","gheh'-fen","From an unused root meaning to bend; a vine (as twining), especially the grape: - vine, tree."]},{"k":"H1613","v":["גֹּפֶר","gôpher","go'-fer","From an unused root, probably meaning to house in; a kind of tree or wood (as used for building), apparently the cypress: - gopher."]},{"k":"H1614","v":["גָּפְרִית","gophrı̂yth","gof-reeth'","Probably feminine of H1613; properly cypress resin; by analogy sulphur (as equally inflammable): - brimstone."]},{"k":"H1615","v":["גִּר","gir","gheer","Perhaps from H3564; lime (from being burned in a kiln): - chalk [-stone]."]},{"k":"H1616","v":["גֵּיר    גֵּר","gêr    gêyr","gare, gare","From H1481; properly a guest; by implication a foreigner: - alien, sojourner, stranger."]},{"k":"H1617","v":["גֵּרָא","gêrâ'","gay-raw'","Perhaps from H1626; a grain; Gera, the name of six Israelites: - Gera."]},{"k":"H1618","v":["גָּרָב","gârâb","gaw-rawb'","From an unused root meaning to scratch; scurf (from itching): - scab, scurvy."]},{"k":"H1619","v":["גָּרֵב","gârêb","gaw-rabe'","From the same as H1618; scabby; Gareb, the name of an Israelite, also of a hill near Jerusalem: - Gareb."]},{"k":"H1620","v":["גַּרְגַּר","gargar","gar-gar'","By reduplication from H1641; a berry (as if a pellet of rumination): - berry."]},{"k":"H1621","v":["גַּרְגְּרוֹת","gargerôth","gar-gher-owth'","Feminine plural from H1641; the throat (as used in rumination): - neck."]},{"k":"H1622","v":["גִּרְגָּשִׁי","girgâshı̂y","ghir-gaw-shee'","Patrial from an unused name (of uncertain derivation); a Girgashite, one of the native tribes of Canaan: - Girgashite, Girgasite."]},{"k":"H1623","v":["גָּרַד","gârad","gaw-rad'","A primitive root; to abrade: - scrape."]},{"k":"H1624","v":["גָּרָה","gârâh","gaw-raw'","A primitive root; properly to grate, that is, (figuratively) to anger: - contend, meddle, stir up, strive."]},{"k":"H1625","v":["גֵּרָה","gêrâh","gay-raw'","From H1641; the cud (as scraping the throat): - cud."]},{"k":"H1626","v":["גֵּרָה","gêrâh","gay-raw'","From H1641 (as in H1625); properly (like H1620) a kernel (round as if scraped), that is, a gerah or small weight (and coin): - gerah."]},{"k":"H1627","v":["גָּרֹן    גָּרוֹן","gârôn    gârôn","gaw-rone', gaw-rone'","From H1641; the throat (compare H1621) (as roughened by swallowing): -    X aloud, mouth, neck, throat."]},{"k":"H1628","v":["גֵּרוּת","gêrûth","gay-rooth'","From H1481; a (temporary) residence: - habitation."]},{"k":"H1629","v":["גָּרַז","gâraz","gaw-raz'","A primitive root; to cut off: - cut off."]},{"k":"H1630","v":["גְּרִזִים","gerizı̂ym","gher-ee-zeem'","Plural of an unused noun from H1629 (compare H1511), cut up (that is, rocky); Gerizim, a mountain of Palestine: - Gerizim."]},{"k":"H1631","v":["גַּרְזֶן","garzen","gar-zen'","From H1629; an axe: - ax."]},{"k":"H1632","v":["גָּרֹל","gârôl","gaw-role'","From the same as H1486; harsh: - man of great [as in the margin which reads H1419]."]},{"k":"H1633","v":["גָּרַם","gâram","gaw-ram'","A primitive root; to be spare or skeleton like; used only as a denominative from H1634; (causatively) to bone, that is, denude (by extension craunch) the bones: - gnaw the bones, break."]},{"k":"H1634","v":["גֶּרֶם","gerem","gheh'-rem","From H1633; a bone (as the skeleton of the body); hence self, that is, (figuratively) very: - bone, strong, top."]},{"k":"H1635","v":["גֶּרֶם","gerem","gheh'-rem","(Chaldee); corresponding to H1634; a bone: - bone."]},{"k":"H1636","v":["גַּרְמִי","garmı̂y","gar-mee'","From H1634; bony, that is, strong: - Garmite."]},{"k":"H1637","v":["גֹּרֶן","gôren","go'-ren","From an unused root meaning to smooth; a threshing floor (as made even); by analogy any open area: - (barn, corn, threshing-) floor, (threshing-, void) place."]},{"k":"H1638","v":["גָּרַס","gâras","gaw-ras'","A primitive root; to crush; also (intransitively and figuratively) to dissolve: - break."]},{"k":"H1639","v":["גָּרַע","gâra‛","gaw-rah'","A primitive root; to scrape off; by implication to shave, remove, lessen or withhold: - abate, clip, (di-) minish, do (take) away, keep back, restrain, make small, withdraw."]},{"k":"H1640","v":["גָּרַף","gâraph","gaw-raf'","A primitive root; to bear off violently: - sweep away."]},{"k":"H1641","v":["גָּרַר","gârar","gaw-rar'","A primitive root; to drag off roughly; by implication to bring up the cud (that is, ruminate); by analogy to saw: - catch, chew, X continuing, destroy, saw."]},{"k":"H1642","v":["גְּרָר","gerâr","gher-awr'","Probably from H1641; a rolling country; Gerar, a Philistine city: - Gerar."]},{"k":"H1643","v":["גֶּרֶשׂ","gereś","gheh'-res","From an unused root meaning to husk; a kernel (collectively), that is, grain: - beaten corn."]},{"k":"H1644","v":["גָּרַשׁ","gârash","gaw-rash'","A primitive root; to drive out from a possession; especially to expatriate or divorce: - cast up (out), divorced (woman), drive away (forth, out), expel, X surely put away, trouble, thrust out."]},{"k":"H1645","v":["גֶּרֶשׁ","geresh","gheh'-resh","From H1644; produce (as if expelled): - put forth."]},{"k":"H1646","v":["גְּרֻשָׁה","gerûshâh","gher-oo-shaw'","Feminine passive participle of H1644; (abstractly) dispossession: - exaction."]},{"k":"H1647","v":["גֵּרְשֹׁם","gêreshôm","gay-resh-ome'","For H1648; Gereshom, the name of four Israelites: - Gershom."]},{"k":"H1648","v":["גֵּרְשׁוֹם    גֵּרְשׁוֹן","gêreshôn    gêreshôm","gay-resh-one', gay-resh-ome'","From H1644; a refugee; Gereshon or Gereshom, an Israelite: - Gershon, Gershom."]},{"k":"H1649","v":["גֵּרְשֻׁנִּי","gêreshûnnı̂y","gay-resh-oon-nee'","Patronymic from H1648; a Gereshonite or descendant of Gereshon: - Gershonite, sons of Gershon."]},{"k":"H1650","v":["גְּשׁוּר","geshûr","ghesh-oor'","From an unused root (meaning to join); bridge; Geshur, a district of Syria: - Geshur, Geshurite."]},{"k":"H1651","v":["גְּשׁוּרִי","geshûrı̂y","ghe-shoo-ree'","Patrial from H1650; a Geshurite (also collectively) or inhabitant of Geshur: - Geshuri, Geshurites."]},{"k":"H1652","v":["גָּשַׁם","gâsham","gaw-sham'","A primitive root; to shower violently: - (cause to) rain."]},{"k":"H1653","v":["גֶּשֶׁם","geshem","gheh'-shem","From H1652; a shower: - rain, shower."]},{"k":"H1654","v":["גַּשְׁמוּ    גֶּשֶׁם","geshem    gashmû","gheh'-shem, gash-moo'","The same as H1653; Geshem or Gashmu, an Arabian: - Geshem, Gashmu."]},{"k":"H1655","v":["גֶּשֶׁם","geshem","gheh'-shem","(Chaldee); apparently the same as H1653; used in a peculiar sense, the body (probably for the (figurative) idea of a hard rain): - body."]},{"k":"H1656","v":["גֹּשֶׁם","gôshem","go'-shem","From H1652; equivalent to H1653: - rained upon."]},{"k":"H1657","v":["גֹּשֶׁן","gôshen","go'-shen","Probably of Egyptian origin; Goshen, the residence of the Israelites in Egypt; also a place in Palestine: - Goshen."]},{"k":"H1658","v":["גִּשְׁפָּא","gishpâ'","ghish-paw'","Of uncertain derivation; Gishpa, an Israelite: - Gispa."]},{"k":"H1659","v":["גָּשַׁשׁ","gâshash","gaw-shash'","A primitive root; apparently to feel about: - grope."]},{"k":"H1660","v":["גַּת","gath","gath","Probably from H5059 (in the sense of treading out grapes); a wine press (or vat for holding the grapes in pressing them): - (wine-) press (fat)."]},{"k":"H1661","v":["גַּת","gath","gath","The same as H1660; Gath, a Philistine city: - Gath."]},{"k":"H1662","v":["גִּתָּה־חֵפֶר    גַּת־הַחֵפֶר","gath-hachêpher    gittâh-chêpher","gath-hah-khay'-fer, ghit-taw-khay'-fer","From H1660 and H2658 with the article inserted; wine press of (the) well; Gath Chepher, a place in Palestine: - Gath-kephr, Gittah-kephr."]},{"k":"H1663","v":["גִּתִּי","gittı̂y","ghit-tee'","Patrial from H1661; a Gittite or inhabitant of Gath: - Gittite."]},{"k":"H1664","v":["גִּתַּיִם","gittayim","ghit-tah'-yim","Dual of H1660; double wine press; Gittajim, a place in Palestine: - Gittaim."]},{"k":"H1665","v":["גִּתִּית","gittı̂yth","ghit-teeth'","Feminine of H1663; a Gittite harp: - Gittith."]},{"k":"H1666","v":["גֶּתֶר","gether","gheh'-ther","Of uncertain derivation; Gether, a son of Aram, and the region settled by him: - Gether."]},{"k":"H1667","v":["גַּת־רִמּוֹן","gath-rimmôn","gath-rim-mone'","From H1660 and H7416; wine press of (the) pomegranate; Gath Rimmon, a place in Palestine: - Gath-rimmon."]},{"k":"H1668","v":["דָּא","dâ'","daw","(Chaldee); corresponding to H2088; this: - one . . . another, this."]},{"k":"H1669","v":["דָּאַב","dâ'ab","daw-ab'","A primitive root; to pine: - mourn, sorrow (-ful)."]},{"k":"H1670","v":["דְּאָבָה","de'âbâh","deh-aw-baw'","From H1669; properly pining; by analogy fear: - sorrow."]},{"k":"H1671","v":["דְּאָבוֹן","de'âbôn","deh-aw-bone'","From H1669; pining: - sorrow."]},{"k":"H1672","v":["דָּאַג","dâ'ag","daw-ag'","A primitive root; be anxious: - be afraid (careful, sorry), sorrow, take thought."]},{"k":"H1673","v":["דּוֹאֵג    דֹּאֵג","dô'êg    dô'êg","do-ayg', do-ayg'","Active participle of H1672; anxious; Doeg, an Edomite: - Doeg."]},{"k":"H1674","v":["דְּאָגָה","de'âgâh","deh-aw-gaw'","From H1672; anxiety: - care (-fulness), fear, heaviness, sorrow."]},{"k":"H1675","v":["דָּאָה","dâ'âh","daw-aw'","A primitive root; to dart, that is, fly rapidly: - fly."]},{"k":"H1676","v":["דָּאָה","dâ'âh","daw-aw'","From H1675; the kite (from its rapid flight): - vulture. See H7201."]},{"k":"H1677","v":["דּוֹב    דֹּב","dôb    dôb","dobe, dobe","From H1680; the bear (as slow): - bear."]},{"k":"H1678","v":["דֹּב","dôb","dobe","(Chaldee); corresponding to H1677: - bear."]},{"k":"H1679","v":["דֹּבֶא","dôbe'","do'-beh","From an unused root (compare H1680) (probably meaning to be sluggish, that is, restful); quiet: - strength."]},{"k":"H1680","v":["דָּבַב","dâbab","daw-bab'","A primitive root (compare H1679); to move slowly, that is, glide: - cause to speak."]},{"k":"H1681","v":["דִּבָּה","dibbâh","dib-baw'","From H1680 (in the sense of furtive motion); slander: - defaming, evil report, infamy, slander."]},{"k":"H1682","v":["דְּבֹרָה    דְּבוֹרָה","debôrâh    debôrâh","deb-o-raw', deb-o-raw'","From H1696 (in the sense of orderly motion); the bee (from its systematic instincts): - bee."]},{"k":"H1683","v":["דְּבֹרָה    דְּבוֹרָה","debôrâh    debôrâh","deb-o-raw', deb-o-raw'","The same as H1682; Deborah, the name of two Hebrewesses: - Deborah."]},{"k":"H1684","v":["דְּבַח","debach","deb-akh'","(Chaldee); corresponding to H2076; to sacrifice (an animal): - offer [sacrifice]."]},{"k":"H1685","v":["דְּבַח","debach","deb-akh'","(Chaldee); from H1684; a sacrifice: - sacrifice."]},{"k":"H1686","v":["חֶרְיוֹן    דִּבְיוֹן","dibyôn    cheryôn","dib-yone', kher-yone'","Both (in the plural only and) of uncertain derivation; probably some cheap vegetable, perhaps a bulbous root: - dove’s dung."]},{"k":"H1687","v":["דְּבִר    דְּבִיר","debı̂yr    debir","deb-eer', deb-eer'","From H1696 (apparently in the sense of oracle); the shrine or innermost part of the sanctuary: - oracle."]},{"k":"H1688","v":["דְּבִר    דְּבִיר","debı̂yr    debir","deb-eer', deb-eer'","The second form used in Jos_13:26 (but see H3810); the same as H1687; Debir, the name of an Amoritish king and of two places in Palestine: - Debir."]},{"k":"H1689","v":["דִּבְלָה","diblâh","dib-law'","Probably an orthographical error for H7247; Diblah, a place in Syria: - Diblath."]},{"k":"H1690","v":["דְּבֵלָה","debêlâh","deb-ay-law'","From an unused root (akin to H2082) probably meaning to press together; a cake of pressed figs: - cake (lump) of figs."]},{"k":"H1691","v":["דִּבְלַיִם","diblayim","dib-lah'-yim","Dual from the masculine of H1690; two cakes; Diblajim, a symbolical name: - Diblaim."]},{"k":"H1692","v":["דָּבַק","dâbaq","daw-bak'","A primitive root; properly to impinge, that is, cling or adhere; figuratively to catch by pursuit: - abide, fast, cleave (fast together), follow close (hard, after), be joined (together), keep (fast), overtake, pursue hard, stick, take."]},{"k":"H1693","v":["דְּבַק","debaq","deb-ak'","(Chaldee); corresponding to H1692; to stick to: - cleave."]},{"k":"H1694","v":["דֶּבֶק","debeq","deh'-bek","From H1692; a joint; by implication solder: - joint, solder."]},{"k":"H1695","v":["דָּבֵק","dâbêq","daw-bake'","From H1692; adhering: - cleave, joining, stick closer."]},{"k":"H1696","v":["דָּבַר","dâbar","daw-bar'","A primitive root; perhaps properly to arrange; but used figuratively (of words) to speak; rarely (in a destructive sense) to subdue: - answer, appoint, bid, command, commune, declare, destroy, give, name, promise, pronounce, rehearse, say, speak, be spokesman, subdue, talk, teach, tell, think, use [entreaties], utter, X well, X work."]},{"k":"H1697","v":["דָּבָר","dâbâr","daw-bawr'","From H1696; a word; by implication a matter (as spoken of) of thing; adverbially a cause: - act, advice, affair, answer, X any such (thing), + because of, book, business, care, case, cause, certain rate, + chronicles, commandment, X commune (-ication), + concern [-ing], + confer, counsel, + dearth, decree, deed, X disease, due, duty, effect, + eloquent, errand, [evil favoured-] ness, + glory, + harm, hurt, + iniquity, + judgment, language, + lying, manner, matter, message, [no] thing, oracle, X ought, X parts, + pertaining, + please, portion, + power, promise, provision, purpose, question, rate, reason, report, request, X (as hast) said, sake, saying, sentence, + sign, + so, some [uncleanness], somewhat to say, + song, speech, X spoken, talk, task, + that, X there done, thing (concerning), thought, + thus, tidings, what [-soever], + wherewith, which, word, work."]},{"k":"H1698","v":["דֶּבֶר","deber","deh'-ber","From H1696 (in the sense of destroying); a pestilence: - murrain, pestilence, plague."]},{"k":"H1699","v":["דִּבֵּר    דֹּבֶר","dôber    dibbêr","do'-ber, dib-bare'","The first form is from H1696 (in its original sense); a pasture (from its arrangement of the flock); translated fold or manner. The second form is for H1697; translated word: - fold, manner."]},{"k":"H1700","v":["דִּבְרָה","dibrâh","dib-raw'","Feminine of H1697; a reason, suit or style: - cause, end, estate, order, regard."]},{"k":"H1701","v":["דִּבְרָה","dibrâh","dib-raw'","(Chaldee); corresponding to H1700: - intent, sake."]},{"k":"H1702","v":["דֹּבְרָה","dôberâh","do-ber-aw'","Feminine active participle of H1696 in the sense of driving (compare H1699); a raft: - float."]},{"k":"H1703","v":["דַּבָּרָה","dabbârâh","dab-baw-raw'","Intensive from H1696; a word: - word."]},{"k":"H1704","v":["דִּבְרִי","dibrı̂y","dib-ree'","From H1697; wordy; Dibri, an Israelite: - Dibri."]},{"k":"H1705","v":["דָּבְרַת","dâberath","daw-ber-ath'","From H1697 (perhaps in the sense of H1699); Daberath, a place in Palestine: - Dabareh, Daberath."]},{"k":"H1706","v":["דְּבַשׁ","debash","deb-ash'","From an unused root meaning to be gummy; honey (from its stickiness); by analogy syrup: - honey ([-comb])."]},{"k":"H1707","v":["דַּבֶּשֶׁת","dabbesheth","dab-beh'-sheth","Intensive from the same as H1706; a sticky mass, that is, the hump of a camel: - hunch [of a camel]."]},{"k":"H1708","v":["דַּבֶּשֶׁת","dabbesheth","dab-beh'-sheth","The same as H1707; Dabbesheth, a place in Palestine: - Dabbesheth."]},{"k":"H1709","v":["דָּאג    דָּג","dâg    dâ'g","dawg,    dawg","From H1711; a fish (as prolific); or perhaps rather from H1672 (as timid); but still better from H1672 (in the sense of squirming, that is, moving by the vibratory action of the tail); a fish (often used collectively): - fish."]},{"k":"H1710","v":["דָּגָה","dâgâh","daw-gaw'","Feminine of H1709, and meaning the same: - fish."]},{"k":"H1711","v":["דָּגָה","dâgâh","daw-gaw'","A primitive root; to move rapidly; used only as a denominative from H1709; to spawn, that is, become numerous: - grow."]},{"k":"H1712","v":["דָּגוֹן","dâgôn","daw-gohn'","From H1709; the fish god; Dagon, a Philistine deity: - Dagon."]},{"k":"H1713","v":["דָּגַל","dâgal","daw-gal'","A primitive root; to flaunt, that is, raise a flag; figuratively to be conspicuous: - (set up, with) banners, chiefest."]},{"k":"H1714","v":["דֶּגֶל","degel","deh'-gel","From H1713; a flag: - banner, standard."]},{"k":"H1715","v":["דָּגָן","dâgân","daw-gawn'","From H1711; properly increase, that is, grain: - corn ([floor]), wheat."]},{"k":"H1716","v":["דָּגַר","dâgar","daw-gar'","A primitive root; to brood over eggs or young: - gather, sit."]},{"k":"H1717","v":["דַּד","dad","dad","Apparently from the same as H1730; the breast (as the seat of love, or from its shape): - breast, teat."]},{"k":"H1718","v":["דָּדָה","dâdâh","daw-daw'","A doubtful root; to walk gently: - go (softly, with)."]},{"k":"H1719","v":["דְּדָנֶה    דְּדָן","dedân    dedâneh","ded-awn', deh-daw'-neh","Of uncertain derivation; Dedan, the name of two Cushites and of their territory. The second form used in Eze_25:13 : - Dedan."]},{"k":"H1720","v":["דְּדָנִים","dedânı̂ym","ded-aw-neem'","Plural of H1719 (as patrial); Dedanites, the descendants or inhabitants of Dedan: - Dedanim."]},{"k":"H1721","v":["רֹדָנִים    דֹּדָנִים","dôdânı̂ym    rôdânı̂ym","do-daw-neem', ro-daw-neem'","The second form is used by orthographical error in 1Ch_1:7. A plural of uncertain derivation; Dodanites, or descendants of a son of Javan: - Dodanim."]},{"k":"H1722","v":["דְּהַב","dehab","deh-hab'","(Chaldee); corresponding to H2091; gold: - gold (-en)."]},{"k":"H1723","v":["דַּהֲוָא","dahăvâ'","dah-hav-aw'","(Chaldee); of uncertain derivation; Dahava, a people colonized in Samaria: - Dehavites."]},{"k":"H1724","v":["דָּהַם","dâham","daw-ham'","A primitive root (compare H1740); to be dumb, that is, (figuratively) dumbfounded: - be astonished."]},{"k":"H1725","v":["דָּהַר","dâhar","daw-har'","A primitive root; to curvet or move irregularly: - pranse."]},{"k":"H1726","v":["דַּהֲהַר","dahăhar","dah-hah-har'","By reduplication from H1725; a gallop: - pransing."]},{"k":"H1727","v":["דּוּב","dûb","doob","A primitive root; to mope, that is, (figuratively) pine: - sorrow."]},{"k":"H1728","v":["דַּוָּג","davvâg","dav-vawg'","An orthographical variation of H1709 as a denominative (H1771); a fisherman: - fisher."]},{"k":"H1729","v":["דּוּגָה","dûgâh","doo-gaw'","Feminine from the same as H1728; properly fishery, that is, a hook for fishing: - fish [hook]."]},{"k":"H1730","v":["דֹּד    דּוֹד","dôd    dôd","dode, dode","From an unused root meaning properly to boil, that is, (figuratively) to love; by implication a love token, lover, friend; specifically an uncle: - (well-) beloved, father’s brother, love, uncle."]},{"k":"H1731","v":["דּוּד","dûd","dood","From the same as H1730; a pot (for boiling); also (by resemblance of shape) a basket: - basket, caldron, kettle, (seething) pot."]},{"k":"H1732","v":["דָּוִיד    דָּוִד","dâvid    dâvı̂yd","daw-veed', daw-veed'","From the same as H1730; loving; David, the youngest son of Jesse: - David."]},{"k":"H1733","v":["דּוֹדָה","dôdâh","do-daw'","Feminine of H1730; an aunt: - aunt, father’s sister, uncle’s wife."]},{"k":"H1734","v":["דּוֹדוֹ","dôdô","do-do'","From H1730; loving; Dodo, the name of three Israelites: - Dodo."]},{"k":"H1735","v":["דּוֹדָוָהוּ","dôdâvâhû","do-daw-vaw'-hoo","From H1730 and H3050; love of Jah; Dodavah, an Israelite: - Dodavah."]},{"k":"H1736","v":["דּוּדַי","dûday","doo-dah'-ee","From H1731; a boiler or basket; also the mandrake (as aphrodisiac): - basket, mandrake."]},{"k":"H1737","v":["דּוֹדַי","dôday","do-dah'ee","Formed like H1736; amatory; Dodai, an Israelite: - Dodai."]},{"k":"H1738","v":["דָּוָה","dâvâh","daw-vaw'","A primitive root; to be sick (as if in menstruation): - infirmity."]},{"k":"H1739","v":["דָּוֶה","dâveh","daw-veh'","From H1738; sick (especially in menstruation): - faint, menstruous cloth, she that is sick, having sickness."]},{"k":"H1740","v":["דּוּחַ","dûach","doo'-akh","A primitive root; to thrust away; figuratively to cleanse: - cast out, purge, wash."]},{"k":"H1741","v":["דְּוַי","devay","dev-ah'ee","From H1739; sickness; figuratively loathing: - languishing, sorrowful."]},{"k":"H1742","v":["דַּוָּי","davvây","dav-voy'","From H1739; sick; figuratively troubled: - faint."]},{"k":"H1743","v":["דּוּךְ","dûk","dook","A primitive root; to bruise in a mortar: - beat."]},{"k":"H1744","v":["דּוּכִּיפַת","dûkı̂yphath","doo-kee-fath'","Of uncertain derivation; the hoopoe or else the grouse: - lapwing."]},{"k":"H1745","v":["דּוּמָה","dûmâh","doo-maw'","From an unused root meaning to be dumb (compare H1820); silence; figuratively death: - silence."]},{"k":"H1746","v":["דּוּמָה","dûmâh","doo-maw'","The same as H1745; Dumah, a tribe and region of Arabia: - Dumah."]},{"k":"H1747","v":["דּוּמִיָּה","dûmı̂yâh","doo-me-yaw'","From H1820; stillness; adverbially silently; abstractly quiet, trust: - silence, silent, waiteth."]},{"k":"H1748","v":["דּוּמָם","dûmâm","doo-mawm'","From H1826; still; adverbially silently: - dumb, silent, quietly wait."]},{"k":"H1749","v":["דּוֹנַג","dônag","do-nag'","Of uncertain derivation; wax: - wax."]},{"k":"H1750","v":["דּוּץ","dûts","doots","A primitive root; to leap: - be turned."]},{"k":"H1751","v":["דּוּק","dûq","dook","(Chaldee); corresponding to H1854; to crumble: - be broken to pieces."]},{"k":"H1752","v":["דּוּר","dûr","dure","A primitive root; properly to gyrate (or move in a circle), that is, to remain: - dwell."]},{"k":"H1753","v":["דּוּר","dûr","dure","(Chaldee); corresponding to H1752; to reside: - dwell."]},{"k":"H1754","v":["דּוּר","dûr","dure","From H1752; a circle, ball or pile: - ball, turn, round about."]},{"k":"H1755","v":["דֹּר    דּוֹר","dôr    dôr","dore, dore","From H1752; properly a revolution of time, that is, an age or generation; also a dwelling: - age, X evermore, generation, [n-]ever, posterity."]},{"k":"H1756","v":["דֹּאר    דּוֹר","dôr    dô'r","dore, dore","From H1755; dwelling; Dor, a place in Palestine: - Dor."]},{"k":"H1757","v":["דּוּרָא","dûrâ'","doo-raw'","(Chaldee); probably from H1753; circle or dwelling; Dura, a place in Babylon: - Dura."]},{"k":"H1758","v":["דִּישׁ    דּוֹשׁ    דּוּשׁ","dûsh    dôsh    dı̂ysh","doosh, dosh, deesh","A primitive root; to trample or thresh: - break, tear, thresh, tread out (down), at grass [Jer. H50 : H11, by mistake for H1877]."]},{"k":"H1759","v":["דּוּשׁ","dûsh","doosh","(Chaldee); corresponding to H1758; to trample: - tread down."]},{"k":"H1760","v":["דָּחַח    דָּחָה","dâchâh    dâchach","daw-khaw', daw-khakh'","A primitive root; to push down: - chase, drive away (on), overthrow, outcast, X sore, thrust, totter."]},{"k":"H1761","v":["דַּחֲוָה","dachăvâh","dakh-av-aw'","(Chaldee); from the equivalent of H1760; probably a musical instrument (as being struck): - instrument of music."]},{"k":"H1762","v":["דְּחִי","dechı̂y","deh-khee'","From H1760; a push, that is, (by implication) a fall: - falling."]},{"k":"H1763","v":["דְּחַל","dechal","deh-khal'","(Chaldee); corresponding to H2119; to slink, that is, (by implication) to fear, or (causatively) be formidable: - make afraid, dreadful, fear, terrible."]},{"k":"H1764","v":["דֹּחַן","dôchan","do'-khan","Of uncertain derivation; millet: - millet."]},{"k":"H1765","v":["דָּחַף","dâchaph","daw-khaf'","A primitive root; to urge, that is, hasten: - (be) haste (-ned), pressed on."]},{"k":"H1766","v":["דָּחַק","dâchaq","daw-khak'","A primitive root; to press, that is, oppress: - thrust, vex."]},{"k":"H1767","v":["דַּי","day","dahee","Of uncertain derivation; enough (as noun or adverb), used chiefly with preposition in phrases: - able, according to, after (ability), among, as (oft as), (more than) enough, from, in, since, (much as is) sufficient (-ly), too much, very, when."]},{"k":"H1768","v":["דִּי","dı̂y","dee","(Chaldee); apparently for H1668; that, used as relative, conjugational, and especially (with preposition) in adverbial phrases; also as a preposition of: -  X as, but, for (-asmuch +), + now, of, seeing, than, that, therefore, until, + what (-soever), when, which, whom, whose."]},{"k":"H1769","v":["דִּיבֹן    דִּיבוֹן","dı̂ybôn    dı̂ybôn","dee-bone', dee-bone'","From H1727; pining; Dibon, the name of three places in Palestine. Also, with H1410 added, Dibon-gad: - Dibon, the name of three places in Palestine - Dibon. [Also, with H1410 added, Dibon-gad.]"]},{"k":"H1770","v":["דִּיג","dı̂yg","deeg","Denominative from H1709; to fish: - fish."]},{"k":"H1771","v":["דַּיָּג","dayâg","dah-yawg'","From H1770; a fisherman: - fisher."]},{"k":"H1772","v":["דַּיָּה","dayâh","dah-yaw'","Intensive from H1675; a falcon (from its rapid flight): - vulture."]},{"k":"H1773","v":["דְּיוֹ","deyô","deh-yo'","Of uncertain derivation; ink: - ink."]},{"k":"H1774","v":["דִּי זָהָב","dı̂y zâhâb","dee zaw-hawb'","As if from H1768 and H2091; of gold; Dizahab, a place in the Desert: - Dizahab."]},{"k":"H1775","v":["דִּימוֹן","dı̂ymôn","dee-mne'","Perhaps for H1769; Dimon, a place in Palestine: - Dimon."]},{"k":"H1776","v":["דִּימוֹנָה","dı̂ymônâh","dee-mo-naw'","Feminine of H1775; Dimonah, a place in Palestine: - Dimonah."]},{"k":"H1777","v":["דּוּן    דִּין","dı̂yn    dûn","deen, doon","A primitive root (compare H113); to rule; by implication to judge (as umpire); also to strive (as at law): - contend, execute (judgment), judge, minister judgment, plead (the cause), at strife, strive."]},{"k":"H1778","v":["דִּין","dı̂yn","deen","(Chaldee); corresponding to H1777; to judge: - judge."]},{"k":"H1779","v":["דּוּן    דִּין","dı̂yn    dûn","deen, doon","From H1777; judgment (the suit, justice, sentence or tribunal); by implication also strife: - cause, judgment, plea, strife."]},{"k":"H1780","v":["דִּין","dı̂yn","deen","(Chaldee); corresponding to H1779: - judgment."]},{"k":"H1781","v":["דַּיָּן","dayân","dah-yawn'","From H1777; a judge or advocate: - judge."]},{"k":"H1782","v":["דַּיָּן","dayân","dah-yawn'","(Chaldee); corresponding to H1781: - judge."]},{"k":"H1783","v":["דִּינָה","dı̂ynâh","dee-naw'","Feminine of H1779; justice; Dinah, the daughter of Jacob: - Dinah."]},{"k":"H1784","v":["דִּינַי","dı̂ynay","dee-nah'ee","(Chaldee); patrial from an uncertain primitive; a Dinaite or inhabitant of some unknown Assyrian province: - Dinaite."]},{"k":"H1785","v":["דָּיֵק","dâyêq","daw-yake'","From a root corresponding to H1751; a battering tower: - fort."]},{"k":"H1786","v":["דַּיִשׁ","dayish","dah'-yish","From H1758; threshing time: - threshing."]},{"k":"H1787","v":["דִּשֹׁן    דִּשׁוֹן    דִּישֹׁן    דִּישׁוֹן","dı̂yshôn    dı̂yshôn    dishôn    dishôn","dee-shone' (all)","The same as H1788; Dishon, the name of two Edomites: - Dishon."]},{"k":"H1788","v":["דִּישֹׁן","dı̂yshôn","dee-shone'","From H1758; the leaper, that is, an antelope: - pygarg."]},{"k":"H1789","v":["דִּישָׁן","dı̂yshân","dee-shawn'","Another form of H1787; Dishan, an Edomite: - Dishan, Dishon."]},{"k":"H1790","v":["דַּךְ","dak","dak","From an unused root (compare H1794); crushed, that is, (figuratively) injured: - afflicted, oppressed."]},{"k":"H1791","v":["דָּךְ    דֵּךְ","dêk    dâk","dake, dawk","(Chaldee); prolonged from H1668; this: - the same, this."]},{"k":"H1792","v":["דָּכָא","dâkâ'","daw-kaw'","A primitive root (compare H1794) to crumble; transitively to bruise (literally or figuratively): - beat to pieces, break (in pieces), bruise, contrite, crush, destroy, humble, oppress, smite."]},{"k":"H1793","v":["דַּכָּא","dakkâ'","dak-kaw'","From H1792; crushed (literally powder, or figuratively contrite): - contrite, destruction."]},{"k":"H1794","v":["דָּכָה","dâkâh","daw-kaw'","A primitive root (compare H1790, H1792); to collapse (physically or mentally): - break (sore), contrite, crouch."]},{"k":"H1795","v":["דַּכָּה","dakkâh","dak-kaw'","From H1794 like H1793; mutilated: -  + wounded."]},{"k":"H1796","v":["דֳּכִי","dŏkı̂y","dok-ee'","From H1794; a dashing of surf: - wave."]},{"k":"H1797","v":["דִּכֵּן","dikkên","dik-kane'","(Chaldee); prolonged from H1791; this: - same, that, this."]},{"k":"H1798","v":["דְּכַר","dekar","dek-ar'","(Chaldee); corresponding to H2145; properly a male, i. e of sheep: - ram."]},{"k":"H1799","v":["דָּכְרָן    דִּכְרוֹן","dikrôn    dokrân","dik-rone', dok-rawn'","(Chaldee); corresponding to H2146; a register: - record."]},{"k":"H1800","v":["דַּל","dal","dal","From H1809; properly dangling, that is, (by implication) weak or thin: - lean, needy, poor (man), weaker."]},{"k":"H1801","v":["דָּלַג","dâlag","daw-lag'","A primitive root; to spring: - leap."]},{"k":"H1802","v":["דָּלָה","dâlâh","daw-law'","A primitive root (compare H1809); properly to dangle, that is, to let down a bucket (for drawing out water); figuratively to deliver: - draw (out), X enough, lift up."]},{"k":"H1803","v":["דַּלָּה","dallâh","dal-law'","From H1802; properly something dangling, that is, a loose thread or hair; figuratively indigent: - hair, pining sickness, poor (-est sort)."]},{"k":"H1804","v":["דָּלַח","dâlach","daw-lakh'","A primitive root; to roil water: - trouble."]},{"k":"H1805","v":["דֳּלִי    דְּלִי","delı̂y    dŏlı̂y","del-ee', dol-ee'","From H1802; a pail or jar (for drawing water): - bucket."]},{"k":"H1806","v":["דְּלָיָהוּ    דְּלָיָה","delâyâh    delâyâhû","del-aw-yaw', del-aw-yaw'-hoo","From H1802 adn H3050; Jah has delivered; Delajah, the name of five Israelites: - Dalaiah, Delaiah."]},{"k":"H1807","v":["דְּלִילָה","delı̂ylâh","del-ee-law'","From H1809; languishing: - Delilah, a Philistine woman: - Delilah."]},{"k":"H1808","v":["דָּלִיָּה","dâlı̂yâh","daw-lee-yaw'","From H1802; something dangling, that is, a bough: - branch."]},{"k":"H1809","v":["דָּלַל","dâlal","daw-lal'","A primitive root (compare H1802); to slacken or be feeble; figuratively to be oppressed: - bring low, dry up, be emptied, be not equal, fail, be impoverished, be made thin."]},{"k":"H1810","v":["דִּלְעָן","dil‛ân","dil-awn'","Of uncertain derivation; Dilan, a place in Palestine: - Dilean."]},{"k":"H1811","v":["דָּלַף","dâlaph","daw-laf'","A primitive root; to drip; by implication to weep: - drop through, melt, pour out."]},{"k":"H1812","v":["דֶּלֶף","deleph","deh'-lef","From H1811; a dripping: - dropping."]},{"k":"H1813","v":["דַּלְפוֹן","dalphôn","dal-fone'","From H1811; dripping; Dalphon, a son of Haman: - Dalphon."]},{"k":"H1814","v":["דָּלַק","dâlaq","daw-lak'","A primitive root; to flame (literally or figuratively): - burning, chase, inflame, kindle, persecute (-or), pursue hotly."]},{"k":"H1815","v":["דְּלַק","delaq","del-ak'","(Chaldee); corresponding to H1814: - burn."]},{"k":"H1816","v":["דַּלֶּקֶת","dalleqeth","dal-lek'-keth","From H1814; a burning fever: - inflammation."]},{"k":"H1817","v":["דֶּלֶת","deleth","deh'-leth","From H1802; something swinging, that is, the valve of a door: - door (two-leaved), gate, leaf, lid. [In Psa_141:3, dal, irreg.]"]},{"k":"H1818","v":["דָּם","dâm","dawm","From H1826 (compare H119); blood (as that which when shed causes death) of man or an animal; by analogy the juice of the grape; figuratively (especially in the plural) bloodshed (that is, drops of blood): - blood (-y, -guiltiness, [-thirsty]), + innocent."]},{"k":"H1819","v":["דָּמָה","dâmâh","daw-maw'","A primitive root; to compare; by implication to resemble, liken, consider: - compare, devise, (be) like (-n), mean, think, use similitudes."]},{"k":"H1820","v":["דָּמָה","dâmâh","daw-maw'","A primitive root; to be dumb or silent; hence to fail or perish; transitively to destroy: - cease, be cut down (off), destroy, be brought to silence, be undone, X utterly."]},{"k":"H1821","v":["דְּמָה","demâh","dem-aw'","(Chaldee); corresponding to H1819; to resemble: - be like."]},{"k":"H1822","v":["דֻּמָּה","dûmmâh","doom-maw'","From H1820; desolation; concretely desolate: - destroy."]},{"k":"H1823","v":["דְּמוּת","demûth","dem-ooth'","From H1819; resemblance; concretely model, shape; adverbially like: - fashion, like (-ness, as), manner, similitude."]},{"k":"H1824","v":["דֳּמִי    דְּמִי","demı̂y    dŏmı̂y","dem-ee', dom-ee'","From H1820; quiet: - cutting off, rest, silence."]},{"k":"H1825","v":["דִּמְיוֹן","dimyôn","dim-yone'","From H1819; resemblance: -  X like."]},{"k":"H1826","v":["דָּמַם","dâmam","daw-mam'","A primitive root (compare H1724, H1820); to be dumb; by implication to be astonished, to stop; also to perish: - cease, be cut down (off), forbear, hold peace, quiet self, rest, be silent, keep (put to) silence, be (stand), still, tarry, wait."]},{"k":"H1827","v":["דְּמָמָה","demâmâh","dem-aw-maw'","Feminine from H1826; quiet: - calm, silence, still."]},{"k":"H1828","v":["דֹּמֶן","dômen","do'-men","Of uncertain derivation; manure: - dung."]},{"k":"H1829","v":["דִּמְנָה","dimnâh","dim-naw'","Feminine from the same as H1828; a dung heap; Dimnah, a place in Palestine: - Dimnah."]},{"k":"H1830","v":["דָּמַע","dâma‛","daw-mah'","A primitive root; to weep: -  X sore, weep."]},{"k":"H1831","v":["דֶּמַע","dema‛","deh'-mah","From H1830; a tear; figuratively juice: - liquor."]},{"k":"H1832","v":["דִּמְעָה","dim‛âh","dim-aw'","Feminine of H1831; weeping: - tears."]},{"k":"H1833","v":["דְּמֶשֶׁק","demesheq","dem-eh'-shek","By orthographical variation from H1834; damask (as a fabric of Damascus): - in Damascus."]},{"k":"H1834","v":["דַּרְמֶשֶׂק    דּוּמֶשֶׂק    דַּמֶּשֶׂק","dammeśeq    dûmeśeq    darmeśeq","dam-meh'-sek, doo-meh'-sek, dar-meh'-sek","Of foreign origin; Damascus, a city of Syria: - Damascus."]},{"k":"H1835","v":["דָּן","dân","dawn","From H1777; judge; Dan, one of the sons of Jacob; also the tribe descended from him, and its territory; likewise a place in Palestine colonized by them: - Dan."]},{"k":"H1836","v":["דֵּן","dên","dane","(Chaldee); an orthographical variation of H1791; this: - [afore-] time, + after this manner, here [-after], one . . . another, such, there [-fore], these, this (matter), + thus, where [-fore], which."]},{"k":"H1837","v":["דַּנָּה","dannâh","dan-naw'","Of uncertain derivation; Dannah, a place in Palestine: - Dannah."]},{"k":"H1838","v":["דִּנְהָבָה","dinhâbâh","din-haw-baw'","Of uncertain derivation; Dinhabah, an Edomitish town: - Dinhaban."]},{"k":"H1839","v":["דָּנִי","dânı̂y","daw-nee'","Patronymic from H1835; a Danite (often collectively) or descendant (or inhabitant) of Dan: - Danites, of Dan."]},{"k":"H1840","v":["דָּנִאֵל    דָנִיֵּאל","dânı̂yê'l    dâni'êl","daw-nee-yale', daw-nee-ale'","From H1835 and H410; judge of God; Daniel or Danijel, the name of two Israelites: - Daniel."]},{"k":"H1841","v":["דָּנִיֵּאל","dânı̂yê'l","daw-nee-yale'","(Chaldee); corresponding to H1840; Danijel, the Hebrew prophet: - Daniel."]},{"k":"H1842","v":["דָּן יַעַן","dân ya‛an","dawn yah'-an","From H1835 and (apparently) H3282; judge of purpose; Dan Jaan, a place in Palestine: - Dan-jaan."]},{"k":"H1843","v":["דֵּעַ","dêa‛","day'-ah","From H3045; knowledge: - knowledge, opinion."]},{"k":"H1844","v":["דֵּעָה","dê‛âh","day-aw'","Feminine of H1843; knowledge: - knowledge."]},{"k":"H1845","v":["דְּעוּאֵל","de‛û'êl","deh-oo-ale'","From H3045 and H410; known of God; Deuel, an Israelite: - Deuel."]},{"k":"H1846","v":["דָּעַךְ","dâ‛ak","daw-ak'","A primitive root; to be extinguished; figuratively to expire or be dried up: - be extinct, consumed, put out, quenched."]},{"k":"H1847","v":["דַּעַת","da‛ath","dah'-ath","From H3045; knowledge: - cunning, [ig-] norantly, know(-ledge), [un-] awares (wittingly)."]},{"k":"H1848","v":["דָּפִי","dophı̂y","dof'-ee","From an unused root (meaning to push over); a stumbling block: - slanderest."]},{"k":"H1849","v":["דָּפַק","dâphaq","daw-fak'","A primitive root; to knock; by analogy to press severely: - beat, knock, overdrive."]},{"k":"H1850","v":["דָּפְקָה","dophqâh","dof-kaw'","From H1849; a knock; Dophkah, a place in the Desert: - Dophkah."]},{"k":"H1851","v":["דַּק","daq","dak","From H1854; crushed, that is, (by implication) small or thin: - dwarf, lean [-fleshed], very little thing, small, thin."]},{"k":"H1852","v":["דֹּק","dôq","doke","From H1854; something crumbling, that is, fine (as a thin cloth): - curtain."]},{"k":"H1853","v":["דִּקְלָה","diqlâh","dik-law'","Of foreign origin; Diklah, a region of Arabia: - Diklah."]},{"k":"H1854","v":["דָּקַק","dâqaq","daw-kak'","A primitive root (compare H1915); to crush (or intransitively) crumble: - beat in pieces (small), bruise, make dust, (into) X powder, (be, very) small, stamp (small)."]},{"k":"H1855","v":["דְּקַק","deqaq","dek-ak'","(Chaldee); corresponding to H1854; to crumble or (transitively) crush: - break to pieces."]},{"k":"H1856","v":["דָּקַר","dâqar","daw-kar'","A primitive root; to stab; by analogy to starve; figuratively to revile: - pierce, strike (thrust) through, wound."]},{"k":"H1857","v":["דֶּקֶר","deqer","deh'-ker","From H1856; a stab; Deker, an Israelite: - Dekar."]},{"k":"H1858","v":["דַּר","dar","dar","Apparently from the same as H1865; properly a pearl (from its sheen as rapidly turned); by analogy pearl stone, that is, mother of pearl or alabaster: -    X white."]},{"k":"H1859","v":["דָּר","dâr","dawr","(Chaldee); corresponding to H1755; an age: - generation."]},{"k":"H1860","v":["דֵּרָאוֹן    דְּרָאוֹן","derâ'ôn    dêrâ'ôn","der-aw-one', day-raw-one'","From an unused root (meaning to repulse); an object of aversion: - abhorring, contempt."]},{"k":"H1861","v":["דָּרְבוֹן","dorbôn","dor-bone'","Of uncertain derivation; a goad: - goad."]},{"k":"H1862","v":["דַּרְדַּע","darda‛","dar-dah'","Apparently from H1858 and H1843; pearl of knowledge; Darda, an Israelite: - Darda."]},{"k":"H1863","v":["דַּרְדַּר","dardar","dar-dar'","Of uncertain derivation; a thorn: - thistle."]},{"k":"H1864","v":["דָּרוֹם","dârôm","daw-rome'","Of uncertain derivation; the south; poet, the south wind: - south."]},{"k":"H1865","v":["דְּרוֹר","derôr","der-ore'","From an unused root (meaning to move rapidly); freedom; hence spontaneity of outflow, and so clear: - liberty, pure."]},{"k":"H1866","v":["דְּרוֹר","derôr","der-ore'","The same as H1865, applied to a bird; the swift, a kind of swallow: - swallow."]},{"k":"H1867","v":["דָּרְיָוֵשׁ","dâreyâvêsh","daw-reh-yaw-vaysh'","Of Persian origin; Darejavesh, a title (rather than name) of several Persian kings: - Darius."]},{"k":"H1868","v":["דָּרְיָוֵשׁ","dâreyâvêsh","daw-reh-yaw-vaysh'","(Chaldee); corresponding to H1867: - Darius."]},{"k":"H1869","v":["דָּרַךְ","dârak","daw-rak'","A primitive root; to tread; by implication to walk; also to string a bow (by treading on it in bending): - archer, bend, come, draw, go (over), guide, lead (forth), thresh, tread (down), walk."]},{"k":"H1870","v":["דֶּרֶךְ","derek","deh'-rek","From H1869; a road (as trodden); figuratively a course of life or mode of action, often adverbially: - along, away, because of, + by, conversation, custom, [east-] ward, journey, manner, passenger, through, toward, [high-] [path-] way [-side], whither [-soever]."]},{"k":"H1871","v":["דַּרְכְּמוֹן","darkemôn","dar-kem-one'","Of Persian origin; a “drachma” or coin: - dram."]},{"k":"H1872","v":["דְּרַע","dera‛","der-aw'","(Chaldee); corresponding to H2220; an arm: - arm."]},{"k":"H1873","v":["דָּרַע","dâra‛","daw-rah'","Probably contracted from H1862; Dara, an Israelite: - Dara."]},{"k":"H1874","v":["דַּרְקוֹן","darqôn","dar-kone'","Of uncertain derivation; Darkon, one of Solomon’s servants: - Darkon."]},{"k":"H1875","v":["דָּרַשׁ","dârash","daw-rash'","A primitive root; properly to tread or frequent; usually to follow (for pursuit or search); by implication to seek or ask; specifically to worship: - ask, X at all, care for, X diligently, inquire, make inquisition, [necro-] mancer, question, require, search, seek [for, out], X surely."]},{"k":"H1876","v":["דָּשָׁא","dâshâ'","daw-shaw'","A primitive root; to sprout: - bring forth, spring."]},{"k":"H1877","v":["דֶּשֶׁא","deshe'","deh'-sheh","From H1876; a sprout; by analogy grass: - (tender) grass, green, (tender) herb."]},{"k":"H1878","v":["דָּשֵׁן","dâshên","daw-shane'","A primitive root; to be fat; transitively to fatten (or regard as fat); specifically to anoint; figuratively to satisfy; denominatively (from H1880) to remove (fat) ashes (of sacrifices): - accept, anoint, take away the (receive) ashes (from), make (wax) fat."]},{"k":"H1879","v":["דָּשֵׁן","dâshên","daw-shane'","From H1878; fat; figuratively rich, fertile: - fat."]},{"k":"H1880","v":["דֶּשֶׁן","deshen","deh'-shen","From H1878; the fat; abstractly fatness, that is, (figuratively) abundance; specifically the (fatty) ashes of sacrifices: - ashes, fatness."]},{"k":"H1881","v":["דָּת","dâth","dawth","Of uncertain (perhaps foreign) derivation; a royal edict or statute: - commandment, commission, decree, law, manner."]},{"k":"H1882","v":["דָּת","dâth","dawth","(Chaldee); corresponding to H1881; decree, law."]},{"k":"H1883","v":["דֶּתֶא","dethe'","deh'-thay","(Chaldee); corresponding to H1877: - tender grass."]},{"k":"H1884","v":["דְּתָבָר","dethâbâr","deth-aw-bawr'","(Chaldee); of Persian origin,; meaning one skilled in law; a judge: - counsellor."]},{"k":"H1885","v":["דָּתָן","dâthân","daw-thawn'","Of uncertain derivation; Dathan, an Israelite: - Dathan."]},{"k":"H1886","v":["דֹּתַיִן דֹּתָן","dôthân    dôthayin","do'-thawn, do-thah'-yin","Of uncertain derivation; Dothan, a place in Palestine: - Dothan."]},{"k":"H1887","v":["הֵא","hê'","hay","A primitive particle; lo!: - behold, lo."]},{"k":"H1888","v":["הָא    הֵא","hê'    hâ'","hay, haw","(Chaldee); corresponding to H1887: - even, lo."]},{"k":"H1889","v":["הֶאָח","he'âch","heh-awkh'","From H1887 and H253; aha!: - ah, aha, ha."]},{"k":"H1890","v":["הַבְהָב","habhâb","hab-hawb'","By reduplication from H3051; gift (in sacrifice), that is, holocaust: - offering."]},{"k":"H1891","v":["הָבַל","hâbal","haw-bal'","A primitive root; to be vain in act, word, or expectation; specifically to lead astray: - be (become, make) vain."]},{"k":"H1892","v":["הֲבֵל    הֶבֶל","hebel    hăbêl","heh'-bel, hab-ale'","From H1891; emptiness or vanity; figuratively something transitory and unsatisfactory; often used as an adverb: -    X altogether, vain, vanity."]},{"k":"H1893","v":["הֶבֶל","hebel","heh'-bel","The same as H1892; Hebel, the son of Adam: - Abel."]},{"k":"H1894","v":["הֹבֶן","hôben","ho'-ben","Only in plural, from an unused root meaning to be hard; ebony: - ebony."]},{"k":"H1895","v":["הָבַר","hâbar","haw-bar'","A primitive root of uncertain (perhaps foreign) derivation; to be a horoscopist: -  + (astro-) loger."]},{"k":"H1896","v":["הֵגַי    הֵגֵא","hêgê'    hêgay","hay-gay', hay-gah'ee","Probably of Persian origin; Hege or Hegai, a eunuch of Xerxes: - Hegai, Hege."]},{"k":"H1897","v":["הָגָה","hâgâh","haw-gaw'","A primitive root (compare H1901); to murmur (in pleasure or anger); by implication to ponder: - imagine, meditate, mourn, mutter, roar, X sore, speak, study, talk, utter."]},{"k":"H1898","v":["הָגָה","hâgâh","haw-gaw'","A primitive root; to remove: - stay, take away."]},{"k":"H1899","v":["הֶגֶה","hegeh","heh'-geh","From H1897; a muttering (in sighing, thought, or as thunder): - mourning, sound, tale."]},{"k":"H1900","v":["הָגוּת","hâgûth","haw-gooth'","From H1897; musing: - meditation."]},{"k":"H1901","v":["הָגִיג","hâgı̂yg","haw-gheeg'","From an unused root akin to H1897; properly a murmur, that is, complaint: - meditation, musing."]},{"k":"H1902","v":["הִגָּיוֹן","higgâyôn","hig-gaw-yone'","Intensive from H1897; a murmuring sound, that is, a musical notation (probably similar to the moder affettuoso to indicate solemnity of movement); by implication a machination: - device, Higgaion, meditation, solemn sound."]},{"k":"H1903","v":["הָגִין","hâgı̂yn","haw-gheen'","Of uncertain derivation; perhaps suitable or turning: - directly."]},{"k":"H1904","v":["הָגָר","hâgâr","haw-gawr'","Of uncertain (perhaps foreign) derivation; Hagar, the mother of Ishmael: - Hagar."]},{"k":"H1905","v":["הַגְרִיא    הַגְרִי","hagrı̂y    hagrı̂y'","hag-ree', hag-ree'","Perhaps patronymic from H1904; a Hagrite or member of a certain Arabian clan: - Hagarene, Hagarite, Haggeri."]},{"k":"H1906","v":["הֵד","hêd","hade'","For H1959; a shout: - sounding again."]},{"k":"H1907","v":["הַדָּבָר","haddâbâr","had-daw-bawr'","(Chaldee); probably of foreign origin; a vizier: - counsellor."]},{"k":"H1908","v":["הֲדַד","hădad","had-ad'","Probably of foreign origin (compare H111); Hadad, the name of an idol, and of several kings of Edom: - Hadad."]},{"k":"H1909","v":["הֲדַדְעֶזֶר","hădad‛ezer","had-ad-eh'-zer","From H1908 and H5828; Hadad (is his) help; Hadadezer, a Syrian king: - Hadadezer. Compare H1928."]},{"k":"H1910","v":["הֲדַדְרִמּוֹן","hădadrimmôn","had-ad-rim-mone'","From H1908 and H7417; Hadad Rimmon, a place in Palestine: - Hadad-rimmon."]},{"k":"H1911","v":["הָדָה","hâdâh","haw-daw'","A primitive root (compare H3034); to stretch forth the hand: - put."]},{"k":"H1912","v":["הֹדוּ","hôdû","ho'-doo","Of foreign origin; Hodu (that is, Hindustan): - India."]},{"k":"H1913","v":["הֲדֹרָם    הֲדוֹרָם","hădôrâm    hădôrâm","had-o-rawm', had-o-rawm'","Probably of foreign derivation; Hadoram, a son of Joktan, and the tribe descended from him: - Hadoram."]},{"k":"H1914","v":["הִדַּי","hidday","hid-dah'ee","Of uncertain derivation; Hiddai, an Israelite: - Hiddai."]},{"k":"H1915","v":["הָדַךְ","hâdak","haw-dak'","A primitive root (compare H1854); to crush with the foot: - tread down."]},{"k":"H1916","v":["הֲדֹם","hădôm","had-ome'","From an unused root meaning to stamp upon; a foot stool: - [foot-] stool."]},{"k":"H1917","v":["הַדָּם","haddâm","had-dawm'","(Chaldee); from a root corresponding to that of H1916; something stamped to pieces, that is, a bit: - piece."]},{"k":"H1918","v":["הֲדַס","hădas","had-as'","Of uncertain derivation; the myrtle: - myrtle (tree)."]},{"k":"H1919","v":["הֲדַסָּה","hădassâh","had-as-saw'","Feminine of H1918; Hadassah (or Esther): - Hadassah."]},{"k":"H1920","v":["הָדַף","hâdaph","haw-daf'","A primitive root; to push away or down: - cast away (out), drive, expel, thrust (away)."]},{"k":"H1921","v":["הָדַר","hâdar","haw-dar'","A primitive root; to swell up (literally or figuratively, actively or passively); by implication to favor or honour, be high or proud: - countenance, crooked place, glorious, honour, put forth."]},{"k":"H1922","v":["הֲדַּר","hădar","had-ar'","(Chaldee); corresponding to H1921; to magnify (figuratively): - glorify, honour."]},{"k":"H1923","v":["הֲדַר","hădar","had-ar'","(Chaldee); from H1922; magnificence: - honour, majesty."]},{"k":"H1924","v":["הֲדַר","hădar","had-ar'","The same as H1926; Hadar, an Edomite: - Hadar."]},{"k":"H1925","v":["הֶדֶר","heder","heh'-der","From H1921; honour; used (figuratively) for the capital city (Jerusalem): - glory."]},{"k":"H1926","v":["הָדָר","hâdâr","haw-dawr'","From H1921; magnificence, that is, ornament or splendor: - beauty, comeliness, excellency, glorious, glory, goodly, honour, majesty."]},{"k":"H1927","v":["הֲדָרָה","hădârâh","had-aw-raw'","Feminine of H1926; decoration: - beauty, honour."]},{"k":"H1928","v":["הֲדַרְעֶזֶר","hădar‛ezer","had-ar-eh'-zer","From H1924 and H5828; Hadar (that is, Hadad, H1908) is his help; Hadarezer (that is, Hadadezer, H1909), a Syrian king: - Hadarezer."]},{"k":"H1929","v":["הָהּ","hâhh","haw","A shortened form of H162; ah! expressing grief: - woe worth."]},{"k":"H1930","v":["הוֹ","hô","ho","By permutation from H1929; oh!: - alas."]},{"k":"H1931","v":["הִיא    הוּא","hû'    hı̂y'","hoo, he","The second form is the feminine beyond the Pentateuch; a primitive word, the third person pronoun singular, he (she or it); only expressed when emphatic or without a verb; also (intensively) self, or (especially with the article) the same; sometimes (as demonstrative) this or that; occasionally (instead of copula) as or are: - he, as for her, him (-self), it, the same, she (herself), such, that (. . . it), these, they, this, those, which (is), who."]},{"k":"H1932","v":["הִיא    הוּא","hû'    hı̂y'","hoo, he","(Chaldee); corresponding to H1931: -    X are, it, this."]},{"k":"H1933","v":["הָוָה    הָוָא","hâvâ'    hâvâh","haw-vaw', haw-vaw'","A primitive root (compare H183, H1961) supposed to mean properly to breathe; to be (in the sense of existence): - be, X have."]},{"k":"H1934","v":["הָוָה    הָוָא","hâvâ'    hâvâh","hav-aw', hav-aw'","(Chaldee); corresponding to H1933; to exist; used in a great variety of applications (especially in connection with other words): - be, become, + behold, + came (to pass), + cease, + cleave, + consider, + do, + give, + have + judge, + keep, + labour, + mingle (self), + put, + see, + seek, + set, + slay, + take heed, tremble, + walk, + would."]},{"k":"H1935","v":["הוֹד","hôd","hode","From an unused root; grandeur (that is, an imposing form and appearance): - beauty, comeliness, excellency, glorious, glory, goodly, honour, majesty."]},{"k":"H1936","v":["הוֹד","hôd","hode","The same as H1935; Hod, an Israelite: - Hod."]},{"k":"H1937","v":["הוֹדְוָה","hôdevâh","ho-dev-aw'","A form of H1938; Hodevah (or Hodevjah), an Israelite: - Hodevah."]},{"k":"H1938","v":["הוֹדַוְיָה","hôdavyâh","ho-dav-yaw'","From H1935 and H3050; majesty of Jah; Hodavjah, the name of three Israelites: - Hodaviah."]},{"k":"H1939","v":["הוֹדַיְוָהוּ","hôdayevâhû","ho-dah-yeh-vaw'-hoo","A form of H1938; Hodajvah, an Israelite: - Hodaiah."]},{"k":"H1940","v":["הוֹדִיָּה","hôdı̂yâh","ho-dee-yaw'","A form for the feminine of H3064; a Jewess: - Hodiah."]},{"k":"H1941","v":["הוֹדִיָּה","hôdı̂yâh","ho-dee-yaw'","A form of H1938; Hodijah, the name of three Israelites: - Hodijah."]},{"k":"H1942","v":["הַוָּה","havvâh","hav-vaw'","From H1933 (in the sense of eagerly coveting and rushing upon; by implication of falling); desire; also ruin: - calamity, iniquity, mischief, mischievous (thing), naughtiness, naughty, noisome, perverse thing, substance, very wickedness."]},{"k":"H1943","v":["הֹוָה","hôvâh","ho-vaw'","Another form for H1942; ruin: - mischief."]},{"k":"H1944","v":["הוֹהָם","hôhâm","ho-hawm'","Of uncertain derivation; Hoham, a Canaanitish king: - Hoham."]},{"k":"H1945","v":["הוֹי","hôy","hoh'ee","A prolonged form of H1930 (akin to H188); oh!: - ah, alas, ho, O, woe."]},{"k":"H1946","v":["הוּךְ","hûk","hook","(Chaldee); corresponding to H1981; to go; causatively to bring: - bring again, come, go (up)."]},{"k":"H1947","v":["הוֹלֵלָה","hôlêlâh","ho-lay-law'","Feminine active participle of H1984; folly: - madness."]},{"k":"H1948","v":["הוֹלֵלוּת","hôlêlûth","ho-lay-looth'","From active participle of H1984; folly: - madness."]},{"k":"H1949","v":["הוּם","hûm","hoom","A primitive root (compare H2000); to make an uproar, or agitate greatly: - destroy, move, make a noise, put, ring again."]},{"k":"H1950","v":["הוֹמָם","hômâm","ho-mawm'","From H2000; raging; Homam, an Edomitish chieftain: - Homam. Compare H1967."]},{"k":"H1951","v":["הוּן","hûn","hoon","A primitive root; properly to be naught, that is, (figuratively) to be (causatively act) light: - be ready."]},{"k":"H1952","v":["הוֹן","hôn","hone","From the same as H1951 in the sense of H202; wealth; by implication enough: - enough, + for nought, riches, substance, wealth."]},{"k":"H1953","v":["הוֹשָׁמָע","hôshâmâ‛","ho-shaw-maw'","From H3068 and H8085; Jehovah has heard; Hoshama, an Israelite: - Hoshama."]},{"k":"H1954","v":["הוֹשֵׁעַ","hôshêa‛","ho-shay'-ah","From H3467; deliverer; Hoshea, the name of five Israelites: - Hosea, Hoshea, Oshea."]},{"k":"H1955","v":["הוֹשַׁעְיָה","hôsha‛yâh","ho-shah-yaw'","From H3467 and H3050; Jah has saved; Hoshajah, the name of two Israelites: - Hoshaiah."]},{"k":"H1956","v":["הוֹתִיר","hôthı̂yr","ho-theer'","From H3498; he has caused to remain; Hothir, an Israelite: - Hothir."]},{"k":"H1957","v":["הָזָה","hâzâh","haw-zaw'","A primitive root (compare H2372); to dream: - sleep."]},{"k":"H1958","v":["הִי","hı̂y","he","For H5092; lamentation: - woe."]},{"k":"H1959","v":["הֵידָד","hêydâd","hay-dawd'","From an unused root (meaning to shout); acclamation: - shout (-ing)."]},{"k":"H1960","v":["הֻיְּדָה","hûyedâh","hoo-yed-aw'","From the same as H1959; properly an acclaim, that is, a choir of singers: - thanksgiving."]},{"k":"H1961","v":["הָיָה","hâyâh","haw-yaw'","A primitive root (compare H1933); to exist, that is, be or become, come to pass (always emphatic, and not a mere copula or auxiliary): - beacon, X altogether, be (-come, accomplished, committed, like), break, cause, come (to pass), continue, do, faint, fall, + follow, happen, X have, last, pertain, quit (one-) self, require, X use."]},{"k":"H1962","v":["הַיָּה","hayâh","hah-yaw'","Another form for H1943; ruin: - calamity."]},{"k":"H1963","v":["הֵיךְ","hêyk","hake","Another form for H349; how?: - how."]},{"k":"H1964","v":["הֵיכָל","hêykâl","hay-kawl'","Probably from H3201 (in the sense of capacity); a large public building, such as a palace or temple: - palace, temple."]},{"k":"H1965","v":["הֵיכַל","hêykal","hay-kal'","(Chaldee); corresponding to H1964: - palace, temple."]},{"k":"H1966","v":["הֵילֵל","hêylêl","hay-lale'","From H1984 (in the sense of brightness); the morning star: - lucifer."]},{"k":"H1967","v":["הֵימָם","hêymâm","hey-mawm'","Another form for H1950; Hemam, an Idumaean: - Hemam."]},{"k":"H1968","v":["הֵימָן","hêymân","hay-mawn'","Probably from H530; faithful; Heman, the name of at least two Israelites: - Heman."]},{"k":"H1969","v":["הִין","hı̂yn","heen","Probably of Egyptian, origin; a hin or liquid measure: - hin."]},{"k":"H1970","v":["הָכַר","hâkar","haw-kar'","A primitive root; apparently to injure: - make self strange."]},{"k":"H1971","v":["הַכָּרָה","hakkârâh","hak-kaw-raw'","From H5234; respect, that is, partiality: - shew."]},{"k":"H1972","v":["הָלָא","hâlâ'","haw-law'","Probably denominative from H1973; to remove or be remote: - cast far off."]},{"k":"H1973","v":["הָלְאָה","hâle'âh","haw-leh-aw'","From the primitive form of the article; to the distance, that is, far away; also (of time) thus far: - back, beyond, (hence-) forward, hitherto, thenceforth, yonder."]},{"k":"H1974","v":["הִלּוּל","hillûl","hil-lool'","From H1984 (in the sense of rejoicing); a celebration of thanksgiving for harvest: - merry, praise."]},{"k":"H1975","v":["הַלָּז","hallâz","hal-lawz'","From H1976; this or that: - side, that, this."]},{"k":"H1976","v":["הַלָּזֶה","hallâzeh","hal-law-zeh'","From the article (see H1973) and H2088; this very: - this."]},{"k":"H1977","v":["הַלֵּזוּ","hallêzû","hal-lay-zoo'","Another form of H1976; that: - this."]},{"k":"H1978","v":["הָלִיךְ","hâlı̂yk","haw-leek'","From H1980; a walk, that is, (by implication) a step: - step."]},{"k":"H1979","v":["הֲלִיכָה","hălı̂ykâh","hal-ee-kaw'","Feminine of H1978; a walking; by implication a procession or march, a caravan: - company, going, walk, way."]},{"k":"H1980","v":["הָלַךְ","hâlak","haw-lak'","Akin to H3212; a primitive root; to walk (in a great variety of applications, literally and figuratively): - (all) along, apace, behave (self), come, (on) continually, be conversant, depart, + be eased, enter, exercise (self), + follow, forth, forward, get, go (about, abroad, along, away, forward, on, out, up and down), + greater, grow, be wont to haunt, lead, march, X more and more, move (self), needs, on, pass (away), be at the point, quite, run (along), + send, speedily, spread, still, surely, + tale-bearer, + travel (-ler), walk (abroad, on, to and fro, up and down, to places), wander, wax, [way-] faring man, X be weak, whirl."]},{"k":"H1981","v":["הֲלַךְ","hălak","hal-ak'","(Chaldee); corresponding to H1980 (compare H1946); to walk: - walk."]},{"k":"H1982","v":["הֵלֶךְ","hêlek","hay'-lek","From H1980; properly a journey, that is, (by implication) a wayfarer; also a flowing: -  X dropped, traveller."]},{"k":"H1983","v":["הֲלָךְ","hălâk","hal-awk'","(Chaldee); from H1981; properly a journey, that is, (by implication) toll on goods at a road: - custom."]},{"k":"H1984","v":["הָלַל","hâlal","haw-lal'","A primitive root; to be clear (originally of sound, but usually of color); to shine; hence to make a show; to boast; and thus to be (clamorously) foolish; to rave; causatively to celebrate; also to stultify: - (make) boast (self), celebrate, commend, (deal, make), fool (-ish, -ly), glory, give [light], be (make, feign self) mad (against), give in marriage, [sing, be worthy of] praise, rage, renowned, shine."]},{"k":"H1985","v":["הִלֵּל","hillêl","hil-layl'","From H1984; praising (namely God); Hillel, an Israelite: - Hillel."]},{"k":"H1986","v":["הָלַם","hâlam","haw-lam'","A primitive root; to strike down; by implication to hammer, stamp, conquer, disband: - beat (down), break (down), overcome, smite (with the hammer)."]},{"k":"H1987","v":["הֶלֶם","helem","hay'-lem","From H1986; smiter; Helem, the name of two Israelites: - Helem."]},{"k":"H1988","v":["הֲלֹם","hălôm","hal-ome'","From the article (see H1973); hither: - here, hither (-[to]), thither."]},{"k":"H1989","v":["הַלְמוּת","halmûth","hal-mooth'","From H1986; a hammer (or mallet): - hammer."]},{"k":"H1990","v":["הָם","hâm","hawm","Of uncertainly derivation; Ham, a region of Palestine: - Ham."]},{"k":"H1991","v":["הֵם","hêm","haym","From H1993; abundance, that is, wealth: - any of theirs."]},{"k":"H1992","v":["הֵמָּה    הֵם","hêm    hêmmâh","haym, haym'-maw","Masculine plural from H1931; they (only used when emphatic): - it, like, X (how, so) many (soever, more as) they (be), (the) same, X so, X such, their, them, these, they, those, which, who, whom, withal, ye."]},{"k":"H1993","v":["הָמָה","hâmâh","haw-maw'","A primitive root (compare H1949); to make a loud sound (like English “hum”); by implication to be in great commotion or tumult, to rage, war, moan, clamor: - clamorous, concourse, cry aloud, be disquieted, loud, mourn, be moved, make a noise, rage, roar, sound, be troubled, make in tumult, tumultuous, be in an uproar."]},{"k":"H1994","v":["הִמּוֹן    הִמּוֹ","himmô    himmôn","him-mo', him-mone'","(Chaldee); corresponding to H1992; they: -  X are, them, those."]},{"k":"H1995","v":["הָמֹן    הָמוֹן","hâmôn    hâmôn","haw-mone', haw-mone'","From H1993; a noise, tumult, crowd; also disquietude, wealth: - abundance, company, many, multitude, multiply, noise, riches, rumbling, sounding, store, tumult."]},{"k":"H1996","v":["הֲמוֹן גּוֹג","hămôn gôg","ham-one' gohg","From H1995 and H1463; the multitude of Gog; the fanciful name of an emblematic place in Palestine: - Hamon-gog."]},{"k":"H1997","v":["הֲמוֹנָה","hămônâh","ham-o-naw'","Feminine of H1995; multitude; Hamonah, the same as H1996: - Hamonah."]},{"k":"H1998","v":["הֶמְיָה","hemyâh","hem-yaw'","From H1993; sound: - noise."]},{"k":"H1999","v":["הֲמוּלָּה    הֲמֻלָּה","hămûlâh    hămûllâh","ham-ool-law', ham-ool-law'","Feminine passive participle of an unused root meaning to rush (as rain with a windy roar); a sound: - speech, tumult."]},{"k":"H2000","v":["הָמַם","hâmam","haw-mam'","A primitive root (compare H1949, H1993); properly to put in commotion; by implication to disturb, drive, destroy: - break, consume, crush, destroy, discomfit, trouble, vex."]},{"k":"H2001","v":["הָמָן","hâmân","haw-mawn'","Of foreign derivation; Haman, a Persian vizier: - Haman."]},{"k":"H2002","v":["הֲמוּנֵךְ    הַמְנִיךְ","hamnı̂yk    hămûnêk","ham-neek', ham-oo-nayk'","(Chaldee); but the text is; of foreign origin; a necklace: - chain."]},{"k":"H2003","v":["הָמָס","hâmâs","haw-mawce'","From an unused root apparently meaning to crackle; a dry twig or brushwood: - melting."]},{"k":"H2004","v":["הֵן","hên","hane","Feminine plural from H1931; they (only used when emphatic): -    X in, such like, (with) them, thereby, therein, (more than) they, wherein, in which, whom, withal."]},{"k":"H2005","v":["הֵן","hên","hane","A primitive particle; lo! also (as expressing surprise) if: - behold, if, lo, though."]},{"k":"H2006","v":["הֵן","hên","hane","(Chaldee); corresponding to H2005; lo! also there, therefore, unless, less, whether, but, if: - (that) if, or, whether."]},{"k":"H2007","v":["הֵנָּה","hênnâh","hane'-naw","Prolonged for H2004; themselves (often used emphatically for the copula, also in indirect relation): -    X in, X such (and such things), their, (into) them, thence, therein, these, they (had), on this side, those, wherein."]},{"k":"H2008","v":["הֵנָּה","hênnâh","hane'-naw","From H2004; hither or thither (but used both of place and time): - here, hither [-to], now, on this (that) side, + since, this (that) way, thitherward, + thus far, to . . . fro, + yet."]},{"k":"H2009","v":["הִנֵּה","hinnêh","hin-nay'","Prolonged for H2005; lo!: - behold, lo, see."]},{"k":"H2010","v":["הֲנָחָה","hănâchâh","han-aw-khaw'","From H5117; permission of rest, that is, quiet: - release."]},{"k":"H2011","v":["הִנֹּם","hinnôm","hin-nome'","Probably of foreign origin; Hinnom, apparently a Jebusite: - Hinnom."]},{"k":"H2012","v":["הֵנַע","hêna‛","hay-nah'","Probably of foreigner derivation Hena, a place apparently in Mesopotamia: - Hena."]},{"k":"H2013","v":["הָסָה","hâsâh","haw-saw'","A primitive root; to hush: - hold peace (tongue), (keep) silence, be silent, still."]},{"k":"H2014","v":["הֲפֻגָה","hăphûgâh","haf-oo-gaw'","From H6313; relaxation: - intermission."]},{"k":"H2015","v":["הָפַךְ","hâphak","haw-vak'","A primitive root; to turn about or over; by implication to change, overturn, return, pervert: -  X become, change, come, be converted, give, make [a bed], overthrow (-turn), perverse, retire, tumble, turn (again, aside, back, to the contrary, every way)."]},{"k":"H2016","v":["הֵפֶךְ    הֶפֶךְ","hephek    hêphek","heh'-fek, hay'-fek","From H2015; a turn, that is, the reverse: - contrary."]},{"k":"H2017","v":["הֹפֶךְ","hôphek","ho'-fek","From H2015; an upset, that is, (abstractly) perversity: - turning of things upside down."]},{"k":"H2018","v":["הֲפֵכָה","hăphêkâh","haf-ay-kaw'","Feminine of H2016; destruction: - overthrow."]},{"k":"H2019","v":["הֲפַכְפַּךְ","hăphakpak","haf-ak-pak'","By reduplication from H2015; very perverse: - froward."]},{"k":"H2020","v":["הַצָּלָה","hatstsâlâh","hats-tsaw-loaw'","From H5337; rescue: - deliverance."]},{"k":"H2021","v":["הֹצֶן","hôtsen","ho'-tsen","From an unused root meaning apparently to be sharp or strong; a weapon of war: - chariot."]},{"k":"H2022","v":["הַר","har","har","A shortened form of H2042; a mountain or range of hills (sometimes used figuratively): - hill (country), mount (-ain), X promotion."]},{"k":"H2023","v":["הֹר","hôr","hore","Another form for H2022; mountain; Hor, the name of a peak in Idumaea and of one in Syria: - Hor."]},{"k":"H2024","v":["הָרָא","hârâ'","haw-raw'","Perhaps from H2022; mountainousness; Hara, a region of Media: - Hara."]},{"k":"H2025","v":["הַרְאֵל","har'êl","har-ale'","From H2022 and H410; mount of God; figuratively the altar of burnt offering: - altar. Compare H739."]},{"k":"H2026","v":["הָרַג","hârag","haw-rag'","A primitive root; to smite with deadly intent: - destroy, out of hand, kill, murder (-er), put to [death], make [slaughter], slay (-er), X surely."]},{"k":"H2027","v":["הֶרֶג","hereg","heh'-reg","From H2026; slaughter: - be slain, slaughter."]},{"k":"H2028","v":["הֲרֵגָה","hărêgâh","har-ay-gaw'","Feminine of H2027; slaughter: - slaughter."]},{"k":"H2029","v":["הָרָה","hârâh","haw-raw'","A primitive root; to be (or become) pregnant, conceive (literally of figuratively): - been, be with child, conceive, progenitor."]},{"k":"H2030","v":["הָרִי    הָרֶה","hâreh    hârı̂y","haw-reh', haw-ree'","From H2029; pregnant: - (be, woman) with child, conceive, X great."]},{"k":"H2031","v":["הַרְהֹר","harhôr","har-hor'","(Chaldee); from a root corresponding to H2029; a mental conception: - thought."]},{"k":"H2032","v":["הֵרָיוֹן    הֵרוֹן","hêrôn    hêrâyôn","hay-rone', hay-raw-yone'","From H2029; pregnancy: - conception."]},{"k":"H2033","v":["הֲרוֹרִי","hărôrı̂y","har-o-ree'","Another form for H2043; a Harorite or mountaineer: - Harorite."]},{"k":"H2034","v":["הֲרִיסָה","hărı̂ysâh","har-ee-saw'","From H2040; something demolished: - ruin."]},{"k":"H2035","v":["הֲרִיסוּת","hărı̂ysûth","har-ee-sooth'","From H2040; demolition: - destruction."]},{"k":"H2036","v":["הֹרָם","hôrâm","ho-rawm'","From an unused root (meaning to tower up); high; Horam, a Canaanitish king: - Horam."]},{"k":"H2037","v":["הָרֻם","hârûm","haw-room'","Passive participle of the same as H2036; high; Harum, an Israelite: - Harum."]},{"k":"H2038","v":["הַרְמוֹן","harmôn","har-mone'","From the same as H2036; a castle (from its height): - palace."]},{"k":"H2039","v":["הָרָן","hârân","haw-rawn'","Perhaps from H2022; mountaineer; Haran, the name of two men: - Haran."]},{"k":"H2040","v":["הָרַס","hâras","haw-ras'","A primitive root; to pull down or in pieces, break, destroy: - beat down, break (down, through), destroy, overthrow, pluck down, pull down, ruin, throw down, X utterly."]},{"k":"H2041","v":["הֶרֶס","heres","heh'-res","From H2040; demolition: - destruction."]},{"k":"H2042","v":["הָרָר","hârâr","haw-rawr'","From an unused root meaning to loom up; a mountain: - hill, mount (-ain)."]},{"k":"H2043","v":["הָארָרִי    הָרָרִי    הֲרָרִי","hărârı̂y    hârârı̂y    hâ'rârı̂y","hah-raw-ree', haw-raw-ree', haw-raw-ree'","Apparently from H2042; a mountaineer: - Hararite."]},{"k":"H2044","v":["הָשֵׁם","hâshêm","haw-shame'","Perhaps from the same as H2828; wealthy; Hashem, an Israelite: - Hashem."]},{"k":"H2045","v":["הַשְׁמָעוּת","hashmâ‛ûth","hashmaw-ooth'","From H8085; announcement: - to cause to hear."]},{"k":"H2046","v":["הִתּוּךְ","hittûk","hit-took'","From H5413; a melting: - is melted."]},{"k":"H2047","v":["הֲתָךְ","hăthâk","hath-awk'","Probably of foreign origin; Hathak, a Persian eunuch: - Hatach."]},{"k":"H2048","v":["הָתַל","hâthal","haw-thal'","A primitive root; to deride; by implication to cheat: - deal deceitfully, deceive, mock."]},{"k":"H2049","v":["הָתֹל","hâthôl","haw-thole'","From H2048 (only in plural collectively); a derision: - mocker."]},{"k":"H2050","v":["הָתַת","hâthath","haw-thath'","A primitive root; properly to break in upon, that is, to assail: - imagine mischief."]},{"k":"H2051","v":["וְדָן","vedân","ved-awn'","Perhaps for H5730; Vedan (or Aden), a place in Arabia: - Dan also."]},{"k":"H2052","v":["וָהֵב","vâhêb","vaw-habe'","Of uncertain derivation; Vaheb, a place in Moab: - what he did."]},{"k":"H2053","v":["וָו","vâv","vaw","Probably a hook (the name of the sixth Hebrew letter): - hook."]},{"k":"H2054","v":["וָזָר","vâzâr","vaw-zawr'","Presumed to be from an unused root meaning to bear guilt; crime: -  X strange."]},{"k":"H2055","v":["וַיְזָתָא","vayezâthâ'","vah-yez-aw'-thaw","Of foreign origin; Vajezatha, a son of Haman: - Vajez-atha."]},{"k":"H2056","v":["וָלָד","vâlâd","vaw-lawd'","For H3206; a boy: - child."]},{"k":"H2057","v":["וַנְיָה","vanyâh","van-yaw'","Perhaps for H6043; Vanjah, an Israelite: - Vaniah."]},{"k":"H2058","v":["וָפְסִי","vophsı̂y","vof-see'","Probably from H3254; additional; Vophsi, an Israelite: - Vophsi."]},{"k":"H2059","v":["וַשְׁנִי","vashnı̂y","vash-nee'","Probably from H3461; weak; Vashni, an Israelite: - Vashni."]},{"k":"H2060","v":["וַשְׁתִּי","vashtı̂y","vash-tee'","Of Persian origin; Vashti, the queen of Xerxes: - Vashti."]},{"k":"H2061","v":["זְאֵב","ze'êb","zeh-abe'","From an unused root meaning to be yellow; a wolf: - wolf."]},{"k":"H2062","v":["זְאֵב","ze'êb","zeh-abe'","The same as H2061; Zeeb, a Midianitish prince: - Zeeb."]},{"k":"H2063","v":["זֹאת","zô'th","zothe'","Irregular feminine of H2089; this (often used adverbially): - hereby (-in, -with), it, likewise, the one (other, same), she, so (much), such (deed), that, therefore, these, this (thing), thus."]},{"k":"H2064","v":["זָבַד","zâbad","zaw-bad'","A primitive root; to confer: - endure."]},{"k":"H2065","v":["זֶבֶד","zebed","zeh'-bed","From H2064; a gift: - dowry."]},{"k":"H2066","v":["זָבָד","zâbâd","zaw-bawd'","From H2064; giver; Zabad, the name of seven Israelites: - Zabad."]},{"k":"H2067","v":["זַבְדִּי","zabdı̂y","zab-dee'","From H2065; giving; Zabdi, the name of four Israelites: - Zabdi."]},{"k":"H2068","v":["זַבְדִּיאֵל","zabdı̂y'êl","zab-dee-ale'","From H2065 and H410; gift of God; Zabdiel, the name of two Israelites: - Zabdiel."]},{"k":"H2069","v":["זְבַדְיָהוּ    זְבַדְיָה","zebadyâh    zebadyâhû","zeb-ad-yaw', zeb-ad-yaw'-hoo","From H2064 and H3050; Jah has given; Zebadjah, the name of nine Israelites: - Zebadiah."]},{"k":"H2070","v":["זְבוּב","zebûb","zeb-oob'","From an unused root (meaning to flit); a fly (especially one of a stinging nature): - fly."]},{"k":"H2071","v":["זָבוּד","zâbûd","zaw-bood'","From H2054; given; Zabud, an Israelite: - Zabud."]},{"k":"H2072","v":["זַבּוּד","zabbûd","zab-bood'","A form of H2071; given; Zabbud, an Israelites: - Zabbud."]},{"k":"H2073","v":["זְבֻל    זְבוּל","zebûl    zebûl","ze-bool', zeb-ool'","From H2082; a residence: - dwell in, dwelling, habitation."]},{"k":"H2074","v":["זְבוּלֻן    זְבֻלוּן    זְבוּלוּן","zebûlûn    zebûlûn    zebûlûn","zeb-oo-loon', zeb-oo-loon', zeb-oo-loon'","From H2082; habitation; Zebulon, a son of Jacob; also his territory and tribe: - Zebulun."]},{"k":"H2075","v":["זְבוּלֹנִי","zebûlônı̂y","zeb-oo-lo-nee'","Patronymic from H2074; a Zebulonite or descendant of Zebulun: - Zebulonite."]},{"k":"H2076","v":["זָבַח","zâbach","zaw-bakh'","A primitive root; to slaughter an animal (usually in sacrifice): - kill, offer, (do) sacrifice, slay."]},{"k":"H2077","v":["זֶבַח","zebach","zeh'-bakh","From H2076; properly a slaughter, that is, the flesh of an animal; by implication a sacrifice (the victim or the act): - offer (-ing), sacrifice."]},{"k":"H2078","v":["זֶבַח","zebach","zeh'-bakh","The same as H2077; sacrifice; Zebach, a Midianitish prince: - Zebah."]},{"k":"H2079","v":["זַבַּי","zabbay","zab-bah'ee","Probably by orthography error for H2140; Zabbai (or Zaccai), an Israelite: - Zabbai."]},{"k":"H2080","v":["זְבִידָה","zebı̂ydâh","zeb-ee-daw'","Feminine from H2064; giving; Zebidah, an Israelitess: - Zebudah."]},{"k":"H2081","v":["זְבִינָא","zebı̂ynâ'","zeb-ee-naw'","From an unused root (meaning to purchase); gainfulness; Zebina, an Israelite: - Zebina."]},{"k":"H2082","v":["זָבַל","zâbal","zaw-bal'","A primitive root; apparently properly to inclose, that is, to reside: - dwell with."]},{"k":"H2083","v":["זְבֻל","zebûl","zeb-ool'","The same as H2074; dwelling; Zebul, an Israelite: - Zebul. Compare H2073."]},{"k":"H2084","v":["זְבַן","zeban","zeb-an'","(Chaldee); corresponding to the root of H2081; to acquire by purchase: - gain."]},{"k":"H2085","v":["זָג","zâg","zawg","From an unused root probably meaning to inclose; the skin of a grape: - husk."]},{"k":"H2086","v":["זֵד","zêd","zade'","From H2102; arrogant: - presumptuous, proud."]},{"k":"H2087","v":["זָדוֹן","zâdôn","zaw-done'","From H2102; arrogance: - presumptuously, pride, proud (man)."]},{"k":"H2088","v":["זֶה","zeh","zeh","A primitive word; the masculine demonstrative pronoun, this or that: - he, X hence, X here, it (-self), X now, X of him, the one . . . the other, X than the other, (X out of) the (self) same, such (an one) that, these, this (hath, man), on this side . . . on that side, X thus, very, which. Compare H2063, H2090, H2097, H2098."]},{"k":"H2089","v":["זֶה","zeh","zeh","By permutation for H7716; a sheep: - lamb."]},{"k":"H2090","v":["זֹה","zôh","zo","For H2088; this or that: - as well as another, it, this, that, thus and thus."]},{"k":"H2091","v":["זָהָב","zâhâb","zaw-hawb'","From an unused root meaning to shimmer; gold; figuratively something gold colored (that is, yellow), as oil, a clear sky: - gold (-en), fair weather."]},{"k":"H2092","v":["זָהַם","zâham","zaw-ham'","A primitive root; to be rancid, that is, (transitively) to loathe: - abhor."]},{"k":"H2093","v":["זַהַם","zaham","zah'-ham","From H2092; loathing; Zaham, an Israelite: - Zaham."]},{"k":"H2094","v":["זָהַר","zâhar","zaw-har'","A primitive root; to gleam; figuratively to enlighten (by caution): - admonish, shine, teach, (give) warn (-ing)."]},{"k":"H2095","v":["זְהַר","zehar","zeh-har'","(Chaldee); corresponding to H2094; (passively) be admonished: - take heed."]},{"k":"H2096","v":["זֹהַר","zôhar","zo'-har","From H2094; brilliancy: - brightness."]},{"k":"H2097","v":["זוֹ","zô","zo","For H2088; this or that: - that, this."]},{"k":"H2098","v":["זוּ","zû","zoo","For H2088; this or that: - that this, X wherein, which, whom."]},{"k":"H2099","v":["זִו","ziv","zeev'","Probably from an unused root meaning to be prominent; properly brightness (compare H2111), that is, (figuratively) the month of flowers; Ziv (corresponding to Ijar or May): - Zif."]},{"k":"H2100","v":["זוּב","zûb","zoob","A primitive root; to flow freely (as water), that is, (specifically) to have a (sexual) flux; figuratively to waste away; also to overflow: - flow, gush out, have a (running) issue, pine away, run."]},{"k":"H2101","v":["זוֹב","zôb","zobe","From H2100; a seminal or menstrual flux: - issue."]},{"k":"H2102","v":["זִיד    זוּד","zûd    zı̂yd","zood, zeed","A primitive root; to seethe; figuratively to be insolent: - be proud, deal proudly, presume, (come) presumptuously, sod."]},{"k":"H2103","v":["זוּד","zûd","zood","(Chaldee); corresponding to H2102; to be proud: - in pride."]},{"k":"H2104","v":["זוּזִים","zûzı̂ym","zoo-zeem'","Plural probably from the same as H2123; prominent; Zuzites, an aboriginal tribe of Palestine: - Zuzims."]},{"k":"H2105","v":["זוֹחֵת","zôchêth","zo-khayth'","Of uncertain origin; Zocheth, an Israelite: - Zoheth."]},{"k":"H2106","v":["זָוִית","zâvı̂yth","zaw-veeth'","Apparently from the same root as H2099 (in the sense of prominence); an angle (as projecting), that is, (by implication) a corner column (or anta): - corner (stone)."]},{"k":"H2107","v":["זוּל","zûl","zool","A primitive root (compare H2151); probably to shake out, that is, (by implication) to scatter profusely; figuratively to treat lightly: - lavish, despise."]},{"k":"H2108","v":["זוּלָה","zûlâh","zoo-law'","From H2107; properly scattering, that is, removal; used adverbially except: - beside, but, only, save."]},{"k":"H2109","v":["זוּן","zûn","zoon","A primitive root; perhaps properly to be plump, that is, (transitively) to nourish: - feed."]},{"k":"H2110","v":["זוּן","zûn","zoon","(Chaldee); corresponding to H2109: - feed."]},{"k":"H2111","v":["זוּעַ","zûa‛","zoo'-ah","A primitive root; properly to shake off, that is, (figuratively) to agitate (as with fear): - move, tremble, vex."]},{"k":"H2112","v":["זוּעַ","zûa‛","zoo'-ah","(Chaldee); corresponding to H2111; to shake (with fear): - tremble."]},{"k":"H2113","v":["זְוָעָה","zevâ‛âh","zev-aw-aw'","From H2111; agitation, fear: - be removed, trouble, vexation. Compare H2189."]},{"k":"H2114","v":["זוּר","zûr","zoor","A primitive root; to turn aside (especially for lodging); hence to be a foreigner, strange, profane; specifically (active participle) to commit adultery: - (come from) another (man, place), fanner, go away, (e-) strange (-r, thing, woman)."]},{"k":"H2115","v":["זוּר","zûr","zoor","A primitive root (compare H6695); to press together, tighten: - close, crush, thrust together."]},{"k":"H2116","v":["זוּרֶה","zûreh","zoo-reh'","From H2115; trodden on: - that which is crushed."]},{"k":"H2117","v":["זָזָא","zâzâ'","zaw-zaw","Probably from the root of H2123; prominent; Zaza, an Israelite: - Zaza."]},{"k":"H2118","v":["זָחַח","zâchach","zaw-khakh'","A primitive root; to shove or displace: - loose."]},{"k":"H2119","v":["זָחַל","zâchal","zaw-khal'","A primitive root; to crawl; by implication to fear: - be afraid, serpent, worm."]},{"k":"H2120","v":["זֹחֶלֶת","zôcheleth","zo-kheh'-leth","Feminine active participle of H2119; crawling (that is, serpent); Zocheleth, a boundary stone in Palestine: - Zoheleth."]},{"k":"H2121","v":["זֵידוֹן","zêydôn","zay-dohn'","From H2102; boiling of water, that is, wave: - proud."]},{"k":"H2122","v":["זִיו","zı̂yv","zeev","(Chaldee); corresponding to H2099; (figuratively) cheerfulness: - brightness, countenance."]},{"k":"H2123","v":["זִיז","zı̂yz","zeez","From an unused root apparently meaning to be conspicuous; fulness of the breast; also a moving creature: - abundance, wild beast."]},{"k":"H2124","v":["זִיזָא","zı̂yzâ'","zee-zaw'","Apparently from the same as H2123; prominence; Ziza, the name of two Israelites: - Ziza."]},{"k":"H2125","v":["זִיזָה","zı̂yzâh","zee-zaw'","Another form for H2124; Zizah, an Israelite: - Zizah."]},{"k":"H2126","v":["זִינָא","zı̂ynâ'","zee-naw'","From H2109; well fed; or perhaps an orthographical error for H2124; Zina, an Israelite: - Zina."]},{"k":"H2127","v":["זִיעַ","zı̂ya‛","zee'-ah","From H2111; agitation; Zia, an Israelite: - Zia."]},{"k":"H2128","v":["זִיף","zı̂yph","zeef","From the same as H2203; flowing; Ziph, the name of a place in Palestine; also of an Israelite: - Ziph."]},{"k":"H2129","v":["זִיפָה","zı̂yphâh","zee-faw'","Feminine of H2128; a flowing; Ziphah, an Israelite: - Ziphah."]},{"k":"H2130","v":["זִיפִי","zı̂yphı̂y","zee-fee'","Patrial from H2128; a Ziphite or inhabitant of Ziph: - Ziphim, Ziphite."]},{"k":"H2131","v":["זֵק    זִק    זִיקָה","zı̂yqâh    ziq    zêq","zee-kaw', zeek, zake","From H2187; properly what leaps forth, that is, flash of fire, or a burning arrow; also (from the original sense of the root) a bond: - chain, fetter, firebrand, spark."]},{"k":"H2132","v":["זַיִת","zayith","zah'-yith","Probably from an unused root (akin to H2099); an olive (as yielding illuminating oil), the tree, the branch or the berry: - olive (tree, -yard), Olivet."]},{"k":"H2133","v":["זֵיתָן","zêythân","zay-thawn'","From H2132; olive grove; Zethan, an Israelite: - Zethan."]},{"k":"H2134","v":["זַךְ","zak","zak","From H2141; clear: - clean, pure."]},{"k":"H2135","v":["זָכָה","zâkâh","zaw-kaw'","A primitive root (compare H2141); to be translucent; figuratively to be innocent: - be (make) clean, cleanse, be clear, count pure."]},{"k":"H2136","v":["זָכוּ","zâkû","zaw-koo'","(Chaldee); from a root corresponding to H2135; purity: - innocency."]},{"k":"H2137","v":["זְכוּכִית","zekûkı̂yth","zek-oo-keeth'","From H2135; properly transparency, that is, glass: - crystal."]},{"k":"H2138","v":["זָכוּר","zâkûr","zaw-koor'","Properly passive participle of H2142; but used for H2145; a male (of man or animals): - males, men-children."]},{"k":"H2139","v":["זַכּוּר","zakkûr","zak-koor'","From H2142; mindful; Zakkur, the name of seven Israelites: - Zaccur, Zacchur."]},{"k":"H2140","v":["זַכַּי","zakkay","zak-kah'ee","From H2141; pure; Zakkai, an Israelite: - Zaccai."]},{"k":"H2141","v":["זָכַךְ","zâkak","zaw-kak'","A primitive root (compare H2135); to be transparent or clean (physically or morally): - be (make) clean, be pure (-r)."]},{"k":"H2142","v":["זָכַר","zâkar","zaw-kar'","A primitive root; properly to mark (so as to be recognized), that is, to remember; by implication to mention; also (as denominative from H2145) to be male: -  X burn [incense], X earnestly, be male, (make) mention (of), be mindful, recount, record (-er), remember, make to be remembered, bring (call, come, keep, put) to (in) remembrance, X still, think on, X well."]},{"k":"H2143","v":["זֶכֶר    זֵכֶר","zêker    zeker","zay'-ker, zeh'-ker","From H2142; a memento, abstractly recollection (rarely if ever); by implication commemoration: - memorial, memory, remembrance, scent."]},{"k":"H2144","v":["זֶכֶר","zeker","zeh'-ker","The same as H2143; Zeker, an Israelite: - Zeker."]},{"k":"H2145","v":["זָכָר","zâkâr","zaw-kawr'","From H2142; properly remembered, that is, a male (of man or animals, as being the most noteworthy sex): -    X him, male, man (child, -kind)."]},{"k":"H2146","v":["זִכְרוֹן","zikrôn","zik-rone'","From H2142; a memento (or memorable thing, day or writing): - memorial, record."]},{"k":"H2147","v":["זִכְרִי","zikrı̂y","zik-ree'","From H2142; memorable; Zicri, the name of twelve Israelites: - Zichri."]},{"k":"H2148","v":["זְכַרְיָהוּ    זְכַרְיָה","zekaryâh    zekaryâhû","zek-ar-yaw', zek-ar-yaw'-hoo","From H2142 and H3050; Jah has remembered; Zecarjah, the name of twenty nine Israelites: - Zachariah, Zechariah."]},{"k":"H2149","v":["זֻלּוּת","zûllûth","zool-looth'","From H2151; properly a shaking, that is, perhaps a tempest: - vilest."]},{"k":"H2150","v":["זַלְזַל","zalzal","zal-zal'","By reduplication from H2151; tremulous, that is, a twig: - sprig."]},{"k":"H2151","v":["זָלַל","zâlal","zaw-lal'","A primitive root (compare H2107); to shake (as in the wind), that is, to quake; figuratively to be loose morally, worthless or prodigal: - blow down, glutton, riotous (eater), vile."]},{"k":"H2152","v":["זִלְעָפָה    זַלְעָפָה","zal‛âphâh    zil‛âphâh","zal-aw-faw', zil-aw-faw'","From H2196; a glow (of wind or anger); also a famine (as consuming): - horrible, horror, terrible."]},{"k":"H2153","v":["זִלְפָּה","zilpâh","zil-paw","From an unused root apparently meaning to trickle, as myrrh; fragrant dropping; Zilpah, Leah’s maid: - Zilpah."]},{"k":"H2154","v":["זַמָּה    זִמָּה","zimmâh    zammâh","zim-maw', zam-maw'","From H2161; a plan, especially a bad one: - heinous crime, lewd (-ly, -ness), mischief, purpose, thought, wicked (device, mind, -ness)."]},{"k":"H2155","v":["זִמָּה","zimmâh","zim-maw'","The same as H2154; Zimmah, the name of two Israelites: - Zimmah."]},{"k":"H2156","v":["זְמֹר    זְמֹרָה    זְמוֹרָה","zemôrâh    zemôrâh    zemôr","zem-o-raw', zem-o-raw', zem-ore'","(Feminine) and (masculine): from H2168; a twig (as pruned): - vine, branch, slip."]},{"k":"H2157","v":["זַמְזֹם","zamzôm","zam-zome'","From H2161; intriguing; a Zamzumite, or native tribe of Palestine: - Zamzummim."]},{"k":"H2158","v":["זְמִרָה    זָמִר    זָמִיר","zâmı̂yr    zâmir    zemirâh","zaw-meer', zaw-meer', zem-ee-raw'","(Feminine): from H2167; a song to be accompanied with instrumental music: - psalm (-ist), singing, song."]},{"k":"H2159","v":["זָמִיר","zâmı̂yr","zaw-meer'","From H2168; a twig (as pruned): - branch."]},{"k":"H2160","v":["זְמִירָה","zemı̂yrâh","zem-ee-raw'","Feminine of H2158; song; Zemirah, an Israelite: - Zemira."]},{"k":"H2161","v":["זָמַם","zâmam","zaw-mam'","A primitive root; to plan, usually in a bad sense: - consider, devise, imagine, plot, purpose, think (evil)."]},{"k":"H2162","v":["זָמָם","zâmâm","zaw-mawm'","From H2161; a plot: - wicked device."]},{"k":"H2163","v":["זָמַן","zâman","zaw-man'","A primitive root; to fix (a time): - appoint."]},{"k":"H2164","v":["זְמַן","zeman","zem-an'","(Chaldee); corresponding to H2163; to agree (on a time and place): - prepare."]},{"k":"H2165","v":["זְמָן","zemân","zem-awn'","From H2163; an appointed occasion: - season, time."]},{"k":"H2166","v":["זְמָן","zemân","zem-awn'","(Chaldee); from H2165; the same as H2165: - season, time."]},{"k":"H2167","v":["זָמַר","zâmar","zaw-mar'","A primitive root (perhaps identical with H2168 through the idea of striking with the fingers); properly to touch the strings or parts of a musical instrument, that is, play upon it; to make music, accompanied by the voice; hence to celebrate in song and music: - give praise, sing forth praises, psalms."]},{"k":"H2168","v":["זָמַר","zâmar","zaw-mar'","A primitive root (compare H2167, H5568, H6785); to trim (a vine): - prune."]},{"k":"H2169","v":["זֶמֶר","zemer","zeh'-mer","Apparently from H2167 or H2168; a gazelle (from its lightly touching the ground): - chamois."]},{"k":"H2170","v":["זְמָר","zemâr","zem-awr'","(Chaldee); from a root corresponding to H2167; instrumental music: - musick."]},{"k":"H2171","v":["זַמָּר","zammâr","zam-mawr'","(Chaldee); from the same as H2170; an instrumental musician: - singer."]},{"k":"H2172","v":["זִמְרָה","zimrâh","zim-raw'","From H2167; a musical piece or song to be accompanied by an instrument: - melody, psalm."]},{"k":"H2173","v":["זִמְרָה","zimrâh","zim-raw'","From H2168; pruned (that is, choice) fruit: - best fruit."]},{"k":"H2174","v":["זִמְרִי","zimrı̂y","zim-ree'","From H2167; musical; Zimri, the name of five Israelites, and of an Arabian tribe: - Zimri."]},{"k":"H2175","v":["זִמְרָן","zimrân","zim-rawn'","From H2167; musical; Zimran, a son of Abraham by Keturah: - Zimran."]},{"k":"H2176","v":["זִמְרָת","zimrâth","zim-rawth'","From H2167; instrumental music; by implication praise: - song."]},{"k":"H2177","v":["זַן","zan","zan","From H2109; properly nourished (or fully developed), that is, a form or sort: - divers kinds, X all manner of store."]},{"k":"H2178","v":["זַן","zan","zan","(Chaldee); corresponding to H2177; sort: - kind."]},{"k":"H2179","v":["זָנַב","zânab","zaw-nab'","A primitive root meaning to wag; used only as a denominative from H2180; to curtail, that is, cut off the rear: - smite the hindmost."]},{"k":"H2180","v":["זָנָב","zânâb","zaw-nawb'","From H2179 (in the original sense of flapping); the tail (literally or figuratively): - tail."]},{"k":"H2181","v":["זָנָה","zânâh","zaw-naw'","A primitive root (highly fed and therefore wanton); to commit adultery (usually of the female, and less often of simple forniciation, rarely of involuntary ravishment); figuratively to commit idolatry (the Jewish people being regarded as the spouse of Jehovah): - (cause to) commit fornication, X continually, X great, (be an, play the) harlot, (cause to be, play the) whore, (commit, fall to) whoredom, (cause to) go a-whoring, whorish."]},{"k":"H2182","v":["זָנוֹחַ","zânôach","zaw-no'-akh","From H2186; rejected; Zanoach, the name of two places in Palestine: - Zanoah."]},{"k":"H2183","v":["זָנוּן","zânûn","zaw-noon'","From H2181; adultery; figuratively idolatry: - whoredom."]},{"k":"H2184","v":["זְנוּת","zenûth","zen-ooth'","From H2181; adultery, that is, (figuratively) infidelity, idolatry: - whoredom."]},{"k":"H2185","v":["זֹנוֹת","zônôth","zo-noth'","Regarded by some as if from H2109 or an unused root, and applied to military equipments; but evidently the feminine plural active participle of H2181; harlots: - armour."]},{"k":"H2186","v":["זָנַח","zânach","zaw-nakh'","A primitive root meaning to push aside, that is, reject, forsake, fail: - cast away (off), remove far away (off)."]},{"k":"H2187","v":["זָנַק","zânaq","zaw-nak'","A primitive root; properly to draw together the feet (as an animal about to dart upon its prey), that is, to spring forward: - leap."]},{"k":"H2188","v":["זֵעָה","zê‛âh","zay-aw'","From H2111 (in the sense of H3154); perspiration: - sweat."]},{"k":"H2189","v":["זַעֲוָה","za‛ăvâh","zah-av-aw'","By transposition for H2113; agitation, maltreatment: -  X removed, trouble."]},{"k":"H2190","v":["זַעֲוָן","za‛ăvân","zah-av-awn'","From H2111; disquiet; Zaavan, an Idumaean: - Zaavan."]},{"k":"H2191","v":["זְעֵיר","ze‛êyr","zeh-ayr'","From an unused root (akin (by permutation) to H6819), meaning to dwindle; small: - little."]},{"k":"H2192","v":["זְעֵיר","ze‛êyr","zeh-ayr'","(Chaldee); corresponding to H2191: - little."]},{"k":"H2193","v":["זָעַךְ","zâ‛ak","zaw-ak'","A primitive root; to extinguish: - be extinct."]},{"k":"H2194","v":["זָעַם","zâ‛am","zaw-am'","A primitive root; properly to foam at the mouth, that is, to be enraged: - abhor, abominable, (be) angry, defy, (have) indignation."]},{"k":"H2195","v":["זַעַם","za‛am","zah'-am","From H2194; strictly froth at the mouth, that is, (figuratively) fury (especially of God’s displeasure with sin): - angry, indignation, rage."]},{"k":"H2196","v":["זָעַף","zâ‛aph","zaw-af'","A primitive root; properly to boil up, that is, (figuratively) to be peevish or angry: - fret, sad, worse liking, be wroth."]},{"k":"H2197","v":["זַעַף","za‛aph","zah'-af","From H2196; anger: - indignation, rage (-ing), wrath."]},{"k":"H2198","v":["זָעֵף","zâ‛êph","zaw-afe'","From H2196; angry: - displeased."]},{"k":"H2199","v":["זָעַק","zâ‛aq","zaw-ak'","A primitive root; to shriek (from anguish or danger); by analogy (as a herald) to announce or convene publicly: - assemble, call (together), (make a) cry (out), come with such a company, gather (together), cause to be proclaimed."]},{"k":"H2200","v":["זְעִק","ze‛iq","zeh'-eek","(Chaldee); corresponding to H2199; to make an outcry: - cry."]},{"k":"H2201","v":["זְעָקָה    זַעַק","za‛aq    ze‛âqâh","zah'-ak, zeh-aw-kaw'","(Feminine): from H2199; a shriek or outcry: - cry (-ing)."]},{"k":"H2202","v":["זִפְרֹן","ziphrôn","zi-fron'","From an unused root (meaning to be fragrant); Ziphron, a place in Palestine: - Ziphron."]},{"k":"H2203","v":["זֶפֶת","zepheth","zeh'-feth","From an unused root (meaning to liquify); asphalt (from its tendency to soften in the sun): - pitch."]},{"k":"H2204","v":["זָקֵן","zâqên","zaw-kane'","A primitive root; to be old: - aged man, be (wax) old (man)."]},{"k":"H2205","v":["זָקֵן","zâqên","zaw-kane'","From H2204; old: - aged, ancient (man), elder (-est), old (man, men and . . . women), senator."]},{"k":"H2206","v":["זָקָן","zâqân","zaw-kawn'","From H2204; the beard (as indicating age): - beard."]},{"k":"H2207","v":["זֹקֶן","zôqen","zo'-ken","From H2204; old age: - age."]},{"k":"H2208","v":["זָקֻן","zâqûn","zaw-koon'","Properly passive participle of H2204 (used only in the plural as a noun); old age: - old age."]},{"k":"H2209","v":["זִקְנָה","ziqnâh","zik-naw'","Feminine of H2205; old age: - old (age)."]},{"k":"H2210","v":["זָקַף","zâqaph","zaw-kaf'","A primitive root; to lift, that is, (figuratively) comfort: - raise (up)."]},{"k":"H2211","v":["זְקַף","zeqaph","zek-af'","(Chaldee); corresponding to H2210; to hang, that is, impale: - set up."]},{"k":"H2212","v":["זָקַק","zâqaq","zaw-kak'","A primitive root; to strain, (figuratively) extract, clarify: - fine, pour down, purge, purify, refine."]},{"k":"H2213","v":["זֵר","zêr","zare","From H2237 (in the sense of scattering); a chaplet (as spread around the top), that is, (specifically) a border moulding: - crown."]},{"k":"H2214","v":["זָרָא","zârâ'","zaw-raw'","From H2114 (in the sense of estrangement) (compare H2219); disgust: - loathsome."]},{"k":"H2215","v":["זָרַב","zârab","zaw-rab'","A primitive root; to flow away: - wax warm."]},{"k":"H2216","v":["זְרֻבָּבֶל","zerûbbâbel","zer-oob-baw-bel'","From H2215 and H894; descended of (that is, from) Babylon, that is, born there; Zerubbabel, an Israelite: - Zerubbabel."]},{"k":"H2217","v":["זְרֻבָּבֶל","zerûbbâbel","zer-oob-baw-bel'","(Chaldee); corresponding to H2216: - Zerubbabel."]},{"k":"H2218","v":["זֶרֶד","zered","zeh'-red","From an unused root meaning to be exuberant in growth; lined with shrubbery; Zered, a brook East of the Dead Sea: - Zared, Zered."]},{"k":"H2219","v":["זָרָה","zârâh","zaw-raw'","A primitive root (compare H2114); to toss about; by implication to diffuse, winnow: - cast away, compass, disperse, fan, scatter (away), spread, strew, winnow."]},{"k":"H2220","v":["זְרֹעָה    זְרוֹעָה    זְרֹעַ    זְרוֹעַ","zerôa‛    zerôa‛    zerô‛âh    zerô‛âh","zer-o'-ah (1,2), zer-o-aw' (3,4)","From H2232; the arm (as stretched out), or (of animals) the foreleg; figuratively force: - arm, + help, mighty, power, shoulder, strength."]},{"k":"H2221","v":["זֵרוּעַ","zêrûa‛","zay-roo'-ah","From H2232; something sown, that is, a plant: - sowing, thing that is sown."]},{"k":"H2222","v":["זַרְזִיף","zarzı̂yph","zar-zeef'","By reduplication from an unused root meaning to flow; a pouring rain: - water."]},{"k":"H2223","v":["זַרְזִיר","zarzı̂yr","zar-zeer'","By reduplication from H2115; properly tightly girt, that is, probably a racer, or some fleet animal (as being slender in the waist): -    + greyhound."]},{"k":"H2224","v":["זָרַח","zârach","zaw-rakh'","A primitive root; properly to irradiate (or shoot forth beams), that is, to rise (as the sun); specifically to appear (as a symptom of leprosy): - arise, rise (up), as soon as it is up."]},{"k":"H2225","v":["זֶרַח","zerach","zeh'-rakh","From H2224; a rising of light: - rising."]},{"k":"H2226","v":["זֶרַח","zerach","zeh'-rakh","The same as H2225; Zerach, the name of three Israelites, also of an Idumaean and an Ethiopian prince: - Zarah, Zerah."]},{"k":"H2227","v":["זַרְחִי","zarchı̂y","zar-khee'","Patronymic from H2226; a Zarchite or descendant of Zerach: - Zarchite."]},{"k":"H2228","v":["זְרַחְיָה","zerachyâh","zer-akh-yaw'","From H2225 and H3050; Jah has risen; Zerachjah, the name of two Israelites: - Zerahiah."]},{"k":"H2229","v":["זָרַם","zâram","zaw-ram'","A primitive root; to gush (as water): - carry away as with a flood, pour out."]},{"k":"H2230","v":["זֶרֶם","zerem","zeh'-rem","From H2229; a gush of water: - flood, overflowing, shower, storm, tempest."]},{"k":"H2231","v":["זִרְמָה","zirmâh","zir-maw'","Feminine of H2230; a gushing of fluid (semen): - issue."]},{"k":"H2232","v":["זָרַע","zâra‛","zaw-rah'","A primitive root; to sow; figuratively to disseminate, plant, fructify: - bear, conceive seed, set with, sow (-er), yield."]},{"k":"H2233","v":["זֶרַע","zera‛","zeh'-rah","From H2232; seed; figuratively fruit, plant, sowing time, posterity: -  X carnally, child, fruitful, seed (-time), sowing-time."]},{"k":"H2234","v":["זְרַע","zera‛","zer-ah'","(Chaldee); corresponding to H2233; posterity: - seed."]},{"k":"H2235","v":["זֵרָעֹן    זֵרֹעַ","zêrôa‛    zêrâ‛ôn","zay-ro'-ah, zay-raw-ohn'","From H2232; something sown (only in the plural), that is, a vegetable (as food): - pulse."]},{"k":"H2236","v":["זָרַק","zâraq","zaw-rak'","A primitive root; to sprinkle (fluid or solid particles): - be here and there, scatter, sprinkle, strew."]},{"k":"H2237","v":["זָרַר","zârar","zaw-rar'","A primitive root (compare H2114); perhaps to diffuse, that is, (specifically) to sneeze: - sneeze."]},{"k":"H2238","v":["זֶרֶשׁ","zeresh","zeh'-resh","Of Persian origin; Zeresh, Haman’s wife: - Zeresh."]},{"k":"H2239","v":["זֶרֶת","zereth","zeh'-reth","From H2219; the spread of the fingers, that is, a span: - span."]},{"k":"H2240","v":["זַתּוּא","zattû'","zat-too'","Of uncertain derivation; Zattu, an Israelite: - Zattu."]},{"k":"H2241","v":["זֵתָם","zêthâm","zay-thawm'","Apparently a variation for H2133; Zetham, an Israelite: - Zetham."]},{"k":"H2242","v":["זֵתַר","zêthar","zay-thar'","Of Persian origin; Zethar, a eunuch of Xerxes: - Zethar."]},{"k":"H2243","v":["חֹב","chôb","khobe","By contraction from H2245; properly a cherisher, that is, the bosom: - bosom."]},{"k":"H2244","v":["חָבָא","châbâ'","khaw-baw'","A primitive root (compare H2245); to secrete: -  X held, hide (self), do secretly."]},{"k":"H2245","v":["חָבַב","châbab","khaw-bab'","A primitive root (compare H2244, H2247); properly to hide (as in the bosom), that is, to cherish (with affection): - love."]},{"k":"H2246","v":["חֹבָב","chôbâb","kho-bawb'","From H2245; cherished; Chobab, father in law of Moses: - Hobab."]},{"k":"H2247","v":["חָבָה","châbâh","khaw-bah'","A primitive root (compare H2245); to secrete: - hide (self)."]},{"k":"H2248","v":["חֲבוּלָה","chăbûlâh","khab-oo-law'","(Chaldee); from H2255; properly overthrown, that is, (morally) crime: - hurt."]},{"k":"H2249","v":["חָבוֹר","châbôr","khaw-bore'","From H2266; united; Chabor, a river of Assyria: - Habor."]},{"k":"H2250","v":["חֲבֻרָה    חַבֻּרָה    חַבּוּרָה","chabbûrâh    chabbûrâh    chăbûrâh","(1,2) khab-boo-raw', (3) khab-oo-raw'","From H2266; properly bound (with stripes), that is, a weal (or black and blue mark itself): - blueness, bruise, hurt, stripe, wound."]},{"k":"H2251","v":["חָבַט","châbaṭ","khaw-bat'","A primitive root; to knock out or off: - beat (off, out), thresh."]},{"k":"H2252","v":["חֲבָיָה    חֲבַיָּה","chăbayyâh    chăbâyâh","khab-ah-yaw', khab-aw-yaw'","From H2247 and H3050; Jah has hidden; Chabajah, an Israelite: - Habaiah."]},{"k":"H2253","v":["חֶבְיוֹן","chebyôn","kheb-yone'","From H2247; a concealment: - hiding."]},{"k":"H2254","v":["חָבַל","châbal","khaw-bal'","A primitive root; to wind tightly (as a rope), that is, to bind; specifically by a pledge; figuratively to pervert, destroy; also to writhe in pain (especially of parturition): -    X at all, band, bring forth, (deal) corrupt (-ly) destroy, offend, lay to (take a) pledge, spoil, travail, X very, withhold."]},{"k":"H2255","v":["חֲבַל","chăbal","khab-al'","(Chaldee); corresponding to H2254; to ruin: - destroy, hurt."]},{"k":"H2256","v":["חֵבֶל    חֶבֶל","chebel    chêbel","kheh'-bel, khay'-bel","From H2254; a rope (as twisted), especially a measuring line; by implication a district or inheritance (as measured); or a noose (as of cords); figuratively a company (as if tied together); also a throe (especially of parturition); also ruin: - band, coast, company, cord, country, destruction, line, lot, pain, pang, portion, region, rope, snare, sorrow, tackling."]},{"k":"H2257","v":["חֲבַל","chăbal","khab-al'","(Chaldee); from H2255; harm (personal or pecuniary): - damage, hurt."]},{"k":"H2258","v":["חֲבֹלָה    חֲבֹל","chăbôl    chăbôlâh","khab-ole', khab-o-law'","From H2254; a pawn (as security for debt): - pledge."]},{"k":"H2259","v":["חֹבֵל","chôbêl","kho-bale'","Active participle from H2254 (in the sense of handling ropes); a sailor: - pilot, shipmaster."]},{"k":"H2260","v":["חִבֵּל","chibbêl","khib-bale'","From H2254 (in the sense of furnished with ropes); a mast: - mast."]},{"k":"H2261","v":["חֲבַצֶּלֶת","chăbatstseleth","khab-ats-tseh'-leth","Of uncertain derivation; probably meadow saffron: - rose."]},{"k":"H2262","v":["חֲבַצַּנְיָה","chăbatstsanyâh","khab-ats-tsan-yaw'","Of uncertain derivation; Chabatstsanjah, a Rechabite: - Habazaniah."]},{"k":"H2263","v":["חָבַק","châbaq","khaw-bak'","A primitive root; to clasp (the hands or in embrace): - embrace, fold."]},{"k":"H2264","v":["חִבֻּק","chibbûq","khib-book'","From H2263; a clasping of the hands (in idleness): - fold."]},{"k":"H2265","v":["חֲבַקּוּק","chăbaqqûq","khab-ak-kook'","By reduplication from H2263; embrace; Chabakkuk, the prophet: - Habakkuk."]},{"k":"H2266","v":["חָבַר","châbar","khaw-bar'","A primitive root; to join (literally or figuratively); specifically (by means of spells) to fascinate: - charm (-er), be compact, couple (together), have fellowship with, heap up, join (self, together), league."]},{"k":"H2267","v":["חֶבֶר","cheber","kheh'-ber","From H2266; a society; also a spell: -  + charmer (-ing), company, enchantment, X wide."]},{"k":"H2268","v":["חֶבֶר","cheber","kheh'-ber","The same as H2267; community; Cheber, the name of a Kenite and of three Israelites: - Heber."]},{"k":"H2269","v":["חֲבַר","chăbar","khab-ar'","(Chaldee); from a root corresponding to H2266; an associate: - companion, fellow."]},{"k":"H2270","v":["חָבֵר","châbêr","khaw-bare'","From H2266; an associate: - companion, fellow, knit together."]},{"k":"H2271","v":["חַבָּר","chabbâr","khab-bawr'","From H2266; a partner: - companion."]},{"k":"H2272","v":["חֲבַרְבֻּרָה","chăbarbûrâh","khab-ar-boo-raw'","By reduplication from H2266; a streak (like a line), as on the tiger: - spot."]},{"k":"H2273","v":["חַבְרָה","chabrâh","khab-raw'","(Chaldee); feminine of H2269; an associate: - other."]},{"k":"H2274","v":["חֶבְרָה","chebrâh","kheb-raw'","Feminine of H2267; association: - company."]},{"k":"H2275","v":["חֶבְרוֹן","chebrôn","kheb-rone'","From H2267; seat of association; Chebron, a place in Palestine, also the name of two Israelites: - Hebron."]},{"k":"H2276","v":["חֶבְרֹנִי    חֶבְרוֹנִי","chebrônı̂y    chebrônı̂y","kheb-ro-nee', kheb-ro-nee'","Patronymic from H2275; Chebronite (collectively), an inhabitant of Chebron: - Hebronites."]},{"k":"H2277","v":["חֶבְרִי","chebrı̂y","kheb-ree'","Patronymic from H2268; a Chebrite (collectively) or descendant of Cheber: - Heberites."]},{"k":"H2278","v":["חֲבֶרֶת","chăbereth","khab-eh'-reth","Feminine of H2270; a consort: - companion."]},{"k":"H2279","v":["חֹבֶרֶת","chôbereth","kho-beh'-reth","Feminine active participle of H2266; a joint: - which coupleth, coupling."]},{"k":"H2280","v":["חָבַשׁ","châbash","khaw-bash'","A primitive root; to wrap firmly (especially a turban, compress, or saddle); figuratively to stop, to rule: - bind (up), gird about, govern, healer, put, saddle, wrap about."]},{"k":"H2281","v":["חָבֵת","châbêth","khaw-bayth'","From an unused root probably meaning to cook (compare H4227); something fried, probably a griddle cake: - pan."]},{"k":"H2282","v":["חָג    חַג","chag    châg","khag, khawg","A festival, or a victim therefor: - (solemn) feast (day), sacrifice, solemnity."]},{"k":"H2283","v":["חָגָא","châgâ'","khaw-gaw'","From an unused root meaning to revolve (compare H2287); properly vertigo, that is, (figuratively) fear: - terror."]},{"k":"H2284","v":["חָגָב","châgâb","khaw-gawb'","Of uncertain derivation; a locust: - locust."]},{"k":"H2285","v":["חָגָב","châgâb","khaw-gawb'","The same as H2284; locust; Chagab, one of the Nethinim: - Hagab."]},{"k":"H2286","v":["חֲגָבָה    חֲגָבָא","chăgâbâ'    chăgâbâh","khag-aw-baw', khag-aw-baw'","Feminine of H2285; locust; Chagaba or Chagabah, one of the Nethinim: - Hagaba, Hagabah."]},{"k":"H2287","v":["חָגַג","châgag","khaw-gag'","A primitive root (compare H2283, H2328); properly to move in a circle, that is, (specifically) to march in a sacred procession, to observe a festival; by implication to be giddy: - celebrate, dance, (keep, hold) a (solemn) feast (holiday), reel to and fro."]},{"k":"H2288","v":["חֲגָו","chăgâv","khag-awv'","From an unused root meaning to take refuge; a rift in rocks: - cleft."]},{"k":"H2289","v":["חֲגוֹר","chăgôr","khaw-gore'","From H2296; belted: - girded with."]},{"k":"H2290","v":["חֲגֹרָה    חֲגוֹרָה    חֲגֹר    חֲגוֹר","chăgôr    chăgôr    chăgôrâh    chăgôrâh","(1,2) khag-ore', (3,4) khag-o-raw'","From H2296; a belt (for the waist): - apron, armour, gird (-le)."]},{"k":"H2291","v":["חַגִּי","chaggı̂y","khag-ghee'","From H2287; festive; Chaggi, an Israelite; also (patronymically) a Chaggite, or descendant of the same: - Haggi, Haggites."]},{"k":"H2292","v":["חַגַּי","chaggay","khag-gah'ee","From H2282; festive; Chaggai, a Hebrew prophet: - Haggai."]},{"k":"H2293","v":["חַגִּיָּה","chaggı̂yâh","khag-ghee-yaw'","From H2282 and H3050; festival of Jah; Chaggijah, an Israelite: - Haggiah."]},{"k":"H2294","v":["חַגִּית","chaggı̂yth","khag-gheeth'","Feminine of H2291; festive; Chaggith, a wife of David: - Haggith."]},{"k":"H2295","v":["חָגְלָה","choglâh","khog-law'","Of uncertain derivation; probably a partridge; Choglah, an Israelitess: - Hoglah. See also H1031."]},{"k":"H2296","v":["חָגַר","châgar","khaw-gar'","A primitive root; to gird on (as a belt, armor, etc.): - be able to put on, be afraid, appointed, gird, restrain, X on every side."]},{"k":"H2297","v":["חַד","chad","khad","Abridged from H259; one: - one."]},{"k":"H2298","v":["חַד","chad","khad","(Chaldee); corresponding to H2297; as cardinal one; as article single; as ordinal first; adverbially at once: - a, first, one, together."]},{"k":"H2299","v":["חַד","chad","khad","From H2300; sharp: - sharp."]},{"k":"H2300","v":["חָדַד","châdad","khaw-dad'","A primitive root; to be (causatively make) sharp or (figuratively) severe: - be fierce, sharpen."]},{"k":"H2301","v":["חֲדַד","chădad","khad-ad'","From H2300; fierce; Chadad, an Ishmaelite: - Hadad."]},{"k":"H2302","v":["חָדָה","châdâh","khaw-daw'","A primitive root; to rejoice: - make glad, be joined, rejoice."]},{"k":"H2303","v":["חַדּוּד","chaddûd","khad-dood'","From H2300; a point: - sharp."]},{"k":"H2304","v":["חֶדְוָה","chedvâh","khed-vaw'","From H2302; rejoicing: - gladness, joy."]},{"k":"H2305","v":["חֶדְוָה","chedvâh","khed-vaw'","(Chaldee); corresponding to H2304: - joy."]},{"k":"H2306","v":["חֲדִי","chădı̂y","khad-ee'","(Chaldee); corresponding to H2373; a breast: - breast."]},{"k":"H2307","v":["חָדִיד","châdı̂yd","khaw-deed'","From H2300; a peak; Chadid, a place in Palestine: - Hadid."]},{"k":"H2308","v":["חָדַל","châdal","khaw-dal'","A primitive root; properly to be flabby, that is, (by implication) desist; (figuratively) be lacking or idle: - cease, end, fail, forbear, forsake, leave (off), let alone, rest, be unoccupied, want."]},{"k":"H2309","v":["חֶדֶל","chedel","kheh'-del","From H2308; rest, that is, the state of the dead: - world."]},{"k":"H2310","v":["חָדֵל","châdêl","khaw-dale'","From H2308; vacant, that is, ceasing or destitute: - he that forbeareth, frail, rejected."]},{"k":"H2311","v":["חַדְלַי","chadlay","khad-lah'ee","From H2309; idle; Chadlai, an Israelite: - Hadlai."]},{"k":"H2312","v":["חֵדֶק","chêdeq","khay'-dek","From an unused root meaning to sting; a prickly plant: - brier, thorn."]},{"k":"H2313","v":["חִדֶּקֶל","chiddeqel","khid-deh'-kel","Probably of foreign origin; the Chiddekel (or Tigris) river: - Hiddekel."]},{"k":"H2314","v":["חָדַר","châdar","khaw-dar'","A primitive root; properly to inclose (as a room), that is, (by analogy) to beset (as in a siege): - enter a privy chamber."]},{"k":"H2315","v":["חֶדֶר","cheder","kheh'-der","From H2314; an apartment (usually literally): - ([bed] inner) chamber, innermost (-ward) part, parlour, + south, X within."]},{"k":"H2316","v":["חֲדַר","chădar","khad-ar'","Another form for H2315; chamber; Chadar, an Ishmaelite: - Hadar."]},{"k":"H2317","v":["חַדְרָךְ","chadrâk","khad-rawk'","Of uncertain derivation; Chadrak, a Syrian deity: - Hadrach."]},{"k":"H2318","v":["חָדַשׁ","châdash","khaw-dash'","A primitive root; to be new; causatively to rebuild: - renew, repair."]},{"k":"H2319","v":["חָדָשׁ","châdâsh","khaw-dawsh'","From H2318; new: - fresh, new thing."]},{"k":"H2320","v":["חֹדֶשׁ","chôdesh","kho'-desh","From H2318; the new moon; by implication a month: - month (-ly), new moon."]},{"k":"H2321","v":["חֹדֶשׁ","chôdesh","kho'-desh","The same as H2320; Chodesh, an Israelitess: - Hodesh."]},{"k":"H2322","v":["חֲדָשָׁה","chădâshâh","khad-aw-shaw'","Feminine of H2319; new; Chadashah, a place in Palestine: - Hadashah."]},{"k":"H2323","v":["חֲדָת","chădâth","khad-ath'","(Chaldee); corresponding to H2319; new: - new."]},{"k":"H2324","v":["חֲוָא","chăvâ'","khav-aw'","(Chaldee); corresponding to H2331; to show: - shew."]},{"k":"H2325","v":["חָיַב    חוּב","chûb    châyab","khoob, khaw-yab'","A primitive root; properly perhaps to tie, that is, (figuratively and reflexively) to owe, or (by implication) to forfeit: - make endanger."]},{"k":"H2326","v":["חוֹב","chôb","khobe","From H2235; debt: - debtor."]},{"k":"H2327","v":["חוֹבָה","chôbâh","kho-baw'","Feminine active participle of H2247; hiding place; Chobah, a place in Syria: - Hobah."]},{"k":"H2328","v":["חוּג","chûg","khoog","A primitive root (compare H2287); to describe a circle: - compassive"]},{"k":"H2329","v":["חוּג","chûg","khoog","From H2328; a circle: - circle, circuit, compassive"]},{"k":"H2330","v":["חוּד","chûd","khood","A primitive root; properly to tie a knot, that is, (figuratively) to propound a riddle: - put forth."]},{"k":"H2331","v":["חָוָה","châvâh","khaw-vah'","A primitive root; (compare H2324, H2421); properly to live; by implication (intensively) to declare or show: - show."]},{"k":"H2332","v":["חַוָּה","chavvâh","khav-vaw'","Causative from H2331; lifegiver; Chavvah (or Eve), the first woman: - Eve."]},{"k":"H2333","v":["חַוָּה","chavvâh","khav-vaw'","Properly the same as H2332 (lifegiving, that is, living place); by implication an encampment or village: - (small) town."]},{"k":"H2334","v":["חַוּוֹת יָעִיר","chavvôth yâ‛ı̂yr","khav-vothe' yaw-eer'","From the plural of H2333 and a modification of H3265; hamlets of Jair, a region of Palestine: - [Bashan-] Havoth-jair."]},{"k":"H2335","v":["חוֹזַי","chôzay","kho-zah'ee","From H2374; visionary; Chozai, an Israelite: - the seers."]},{"k":"H2336","v":["חוֹחַ","chôach","kho'-akh","From an unused root apparently meaning to pierce; a thorn; by analogy a ring for the nose: - bramble, thistle, thorn."]},{"k":"H2337","v":["חָוָח","châvâch","khaw-vawkh'","Perhaps the same as H2336; a dell or crevice (as if pierced in the earth): - thicket."]},{"k":"H2338","v":["חוּט","chûṭ","khoot","(Chaldee); corresponding to the root of H2339, perhaps as a denominative; to string together, that is, (figuratively) to repair: - join."]},{"k":"H2339","v":["חוּט","chûṭ","khoot","From an unused root probably meaning to sew; a string; by implication a measuring tape: - cord, fillet, line, thread."]},{"k":"H2340","v":["חִוִּי","chivvı̂y","khiv-vee'","Perhaps from H2333; a villager; a Chivvite, one of the aboriginal tribes of Palestine: - Hivite."]},{"k":"H2341","v":["חֲוִילָה","chăvı̂ylâh","khav-ee-law'","Probably from H2342; circular; Chavilah, the name of two or three eastern regions; also perhaps of two men: - Havilah."]},{"k":"H2342","v":["חִיל    חוּל","chûl    chı̂yl","khool, kheel","A primitive root; properly to twist or whirl (in a circular or spiral manner), that is, (specifically) to dance, to writhe in pain (especially of parturition) or fear; figuratively to wait, to pervert: - bear, (make to) bring forth, (make to) calve, dance, drive away, fall grievously (with pain), fear, form, great, grieve, (be) grievous, hope, look, make, be in pain, be much (sore) pained, rest, shake, shapen, (be) sorrow (-ful), stay, tarry, travail (with pain), tremble, trust, wait carefully (patiently), be wounded."]},{"k":"H2343","v":["חוּל","chûl","khool","From H2342; a circle; Chul, a son of Aram; also the region settled by him: - Hul."]},{"k":"H2344","v":["חוֹל","chôl","khole","From H2342; sand (as round or whirling particles): - sand."]},{"k":"H2345","v":["חוּם","chûm","khoom","From an unused root meaning to be warm, that is, (by implication) sunburnt or swarthy (blackish): - brown."]},{"k":"H2346","v":["חוֹמָה","chômâh","kho-maw'","Feminine active participle of an unused root apparently meaning to join; a wall of protection: - wall, walled."]},{"k":"H2347","v":["חוּס","chûs","khoos","A primitive root; properly to cover, that is, (figuratively) to compassionate: - pity, regard, spare."]},{"k":"H2348","v":["חוֹף","chôph","khofe","From an unused root meaning to cover; a cove (as a sheltered bay): - coast [of the sea], haven, shore, [sea-] side."]},{"k":"H2349","v":["חוּפָם","chûphâm","khoo-fawm'","From the same as H2348; protection; Chupham, an Israelite: - Hupham."]},{"k":"H2350","v":["חוּפָמִי","chûphâmı̂y","khoo-faw-mee'","Patronymic from H2349; a Chuphamite or descendant of Chupham: - Huphamites."]},{"k":"H2351","v":["חֻץ    חוּץ","chûts    chûts","khoots, khoots","(Both forms feminine in the plural); from an unused root meaning to sever; properly separate by a wall, that is, outside, outdoors: - abroad, field, forth, highway, more, out (-side, -ward), street, without."]},{"k":"H2352","v":["חֻר    חוּר","chûr    chûr","khoor, khoor","From an unused root probably meaning to bore; the crevice of a serpent; the cell of a prison: - hole."]},{"k":"H2353","v":["חוּר","chûr","khoor","From H2357; white linen: - white."]},{"k":"H2354","v":["חוּר","chûr","khoor","The same as H2353 or H2352; Chur, the name of four Israelites and one Midianite: - Hur."]},{"k":"H2355","v":["חוֹר","chôr","khore","The same as H2353; white linen: - network. Compare H2715."]},{"k":"H2356","v":["חֹר    חוֹר","chôr    chôr","khore, khore","The same as H2352; a cavity, socket, den: - cave, hole."]},{"k":"H2357","v":["חָרַר","chârar","khaw-var'","A primitive root; to blanch (as with shame): - wax pale."]},{"k":"H2358","v":["חִוָּר","chivvâr","khiv-vawr'","(Chaldee); from a root corresponding to H2357; white: - white."]},{"k":"H2359","v":["חוּרִי","chûrı̂y","khoo-ree'","Probably from H2353; linen worker; Churi, an Israelite: - Huri."]},{"k":"H2360","v":["חוּרַי","chûray","khoo-rah'ee","Probably an orthographical variation for H2359; Churai, an Israelite: - Hurai."]},{"k":"H2361","v":["חוּרָם","chûrâm","khoo-rawm'","Probably from H2353; whiteness, that is, noble; Churam, the name of an Israelite and two Syrians: - Huram. Compare H2438."]},{"k":"H2362","v":["חַוְרָן","chavrân","khav-rawn'","Apparently from H2357 (in the sense of H2352); cavernous; Chavran, a region East of the Jordan: - Hauran."]},{"k":"H2363","v":["חוּשׁ","chûsh","koosh","A primitive root; to hurry; figuratively to be eager with excitement or enjoyment: - (make) haste (-n), ready."]},{"k":"H2364","v":["חוּשָׁה","chûshâh","khoo-shaw'","From H2363; haste; Chushah, an Israelite: - Hushah."]},{"k":"H2365","v":["חוּשַׁי","chûshay","khoo-shah'ee","From H2363; hasty; Chushai, an Israelite: - Hushai."]},{"k":"H2366","v":["חֻשִׁם    חֻשִׁים    חוּשִׁים","chûshı̂ym    chûshı̂ym    chûshim","khoo-sheem' (all forms)","Plural from H2363; hasters; Chushim, the name of three Israelites: - Hushim."]},{"k":"H2367","v":["חֻשָׁם    חוּשָׁם","chûshâm    chûshâm","khoo-shawm', khoo-shawm'","From H2363; hastily; Chusham, an Idumaean: - Husham."]},{"k":"H2368","v":["חֹתָם    חוֹתָם","chôthâm    chôthâm","kho-thawm', kho-thawm'","From H2856; a signature ring: - seal, signet."]},{"k":"H2369","v":["חוֹתָם","chôthâm","kho-thawm'","The same as H2368; seal; Chotham, the name of two Israelites: - Hotham, Hothan."]},{"k":"H2370","v":["חֲזָה    חֲזָא","chăzâ'    chăzâh","khaz-aw', khaz-aw'","(Chaldee); corresponding to H2372; to gaze upon; mentally to dream, be usual (that is, seem): - behold, have [a dream], see, be wont."]},{"k":"H2371","v":["חֲזָהאֵל    חֲזָאֵל","chăzâ'êl    chăzâh'êl","khaz-aw-ale', khaz-aw-ale'","From H2372 and H410; God has seen; Chazael, a king of Syria: - Hazael."]},{"k":"H2372","v":["חָזָה","châzâh","khaw-zaw","A primitive root; to gaze at; mentally to perceive, contemplate (with pleasure); specifically to have a vision of: - behold, look, prophesy, provide, see."]},{"k":"H2373","v":["חָזֶה","châzeh","khaw-zeh'","From H2372; the breast (as most seen in front): - breast."]},{"k":"H2374","v":["חֹזֶה","chôzeh","kho-zeh'","Active participle of H2372; a beholder in vision; also a compact (as looked upon with approval): - agreement, prophet, see that, seer, [star-] gazer."]},{"k":"H2375","v":["חֲזוֹ","chăzô","khaz-o'","From H2372; seer; Chazo, a nephew of Abraham: - Hazo."]},{"k":"H2376","v":["חֵזֶו","chêzev","khay'-zev","(Chaldee); from H2370; a sight: - look, vision."]},{"k":"H2377","v":["חָזוֹן","châzôn","khaw-zone'","From H2372; a sight (mentally), that is, a dream, revelation, or oracle: - vision."]},{"k":"H2378","v":["חָזוֹת","châzôth","khaw-zooth'","From H2372; a revelation: - vision."]},{"k":"H2379","v":["חֲזוֹת","chăzôth","khaz-oth'","(Chaldee); from H2370; a view: - sight."]},{"k":"H2380","v":["חָזוּת","châzûth","khaw-zooth'","From H2372; a look; hence (figuratively) striking appearance, revelation or (by implication) compact: - agreement, notable (one), vision."]},{"k":"H2381","v":["חֲזִיאֵל","chăzı̂y'êl","khaz-ee-ale'","From H2371 and H410; seen of God; Chaziel, a Levite: - Haziel."]},{"k":"H2382","v":["חֲזָיָה","chăzâyâh","khaz-aw-yaw'","From H2372 and H3050; Jah has seen; Chazajah, an Israelite: - Hazaiah."]},{"k":"H2383","v":["חֶזְיוֹן","chezyôn","khez-yone'","From H2372; vision; Chezjon, a Syrian: - Hezion."]},{"k":"H2384","v":["חִזָּיוֹן","chizzâyôn","khiz-zaw-yone'","From H2372; a revelation, especially by dream: - vision."]},{"k":"H2385","v":["חֲזִיז","chăzı̂yz","khaw-zeez'","From an unused root meaning to glare; a flash of lightning: - bright cloud, lightning."]},{"k":"H2386","v":["חֲזִיר","chăzı̂yr","khaz-eer'","From an unused root probably meaning to inclose; a hog (perhaps as penned): - boar, swine."]},{"k":"H2387","v":["חֵזִיר","chêzı̂yr","khay-zeer'","From the same as H2386; perhaps protected; Chezir, the name of two Israelites: - Hezir."]},{"k":"H2388","v":["חָזַק","châzaq","khaw-zak'","A primitive root; to fasten upon; hence to seize, be strong (figuratively courageous, causatively strengthen, cure, help, repair, fortify), obstinate; to bind, restrain, conquer: - aid, amend, X calker, catch, cleave, confirm, be constant, constrain, continue, be of good (take) courage (-ous, -ly), encourage (self), be established, fasten, force, fortify, make hard, harden, help, (lay) hold (fast), lean, maintain, play the man, mend, become (wax) mighty, prevail, be recovered, repair, retain, seize, be (wax) sore, strengten (self), be stout, be (make, shew, wax) strong (-er), be sure, take (hold), be urgent, behave self valiantly, withstand."]},{"k":"H2389","v":["חָזָק","châzâq","khaw-zawk'","From H2388; strong (usually in a bad sense, hard, bold, violent): - harder, hottest, + impudent, loud, mighty, sore, stiff [-hearted], strong (-er)."]},{"k":"H2390","v":["חָזֵק","châzêq","khaw-zake'","From H2388; powerful: -  X wax louder- stronger."]},{"k":"H2391","v":["חֵזֶק","chêzeq","khay'-zek","From H2388; help: - strength."]},{"k":"H2392","v":["חֹזֶק","chôzeq","kho'-zek","From H2388; power: - strength."]},{"k":"H2393","v":["חֶזְקָה","chezqâh","khez-kaw'","Feminine of H2391; prevailing power: - strength (-en self), (was) strong."]},{"k":"H2394","v":["חָזְקָה","chozqâh","khoz-kaw'","Feminine of H2392; vehemence (usually in a bad sense): - force, mightily, repair, sharply."]},{"k":"H2395","v":["חִזְקִי","chizqı̂y","khiz-kee'","From H2388; strong; Chizki, an Israelite: - Hezeki."]},{"k":"H2396","v":["יְחִזְקִיָּהוּ    יְחִזְקִיָּה    חִזְקִיָּהוּ    חִזְקִיָּה","chizqı̂yâh    chizqı̂yâhû    yechizqı̂yâh    yechizqı̂yâhû","khiz-kee-yaw', khiz-kee-yaw'-hoo, yekh-iz-kee-yaw', yekh-iz-kee-yaw'-hoo","From H2388 and H3050; strengthened of Jah; Chizkijah, a king of Judah, also the name of two other Israelites: - Hezekiah, Hizkiah, Hizkijah. Compare H3169."]},{"k":"H2397","v":["חָחִי    חָח","châch    châchı̂y","khawkh, khakh-ee'","From the same as H2336; a ring for the nose (or lips): - bracelet, chain, hook."]},{"k":"H2398","v":["חָטָא","châṭâ'","khaw-taw'","A primitive root; properly to miss; hence (figuratively and generally) to sin; by inference to forfeit, lack, expiate, repent, (causatively) lead astray, condemn: - bear the blame, cleanse, commit [sin], by fault, harm he hath done, loss, miss, (make) offend (-er), offer for sin, purge, purify (self), make reconciliation, (cause, make) sin (-ful, -ness), trespassive"]},{"k":"H2399","v":["חֵטְא","chêṭ'","khate","From H2398; a crime or its penalty: - fault, X grievously, offence, (punishment of) sin."]},{"k":"H2400","v":["חַטָּא","chaṭṭâ'","khat-taw'","Intensive from H2398; a criminal, or one accounted guilty: - offender, sinful, sinner."]},{"k":"H2401","v":["חֲטָאָה","chăṭâ'âh","khat-aw-aw'","Feminine of H2399; an offence, or a sacrifice for it: - sin (offering), sinful."]},{"k":"H2402","v":["חַטָּאָה","chaṭṭâ'âh","khat-taw-aw'","(Chaldee); corresponding to H2401; an offence, and the penalty or sacrifice for it: - sin (offering)."]},{"k":"H2403","v":["חַטָּאת    חַטָּאָה","chaṭṭâ'âh    chaṭṭâ'th","khat-taw-aw', khat-tawth'","From H2398; an offence (sometimes habitual sinfulness), and its penalty, occasion, sacrifice, or expiation; also (concretely) an offender: - punishment (of sin), purifying (-fication for sin), sin (-ner, offering)."]},{"k":"H2404","v":["חָטַב","châṭab","khaw-tab'","A primitive root; to chop or carve wood: - cut down, hew (-er), polish."]},{"k":"H2405","v":["חֲטֻבָה","chăṭûbâh","khat-oo-baw'","Feminine passive participle of H2404; properly a carving; hence a tapestry (as figured): - carved."]},{"k":"H2406","v":["חִטָּה","chiṭṭâh","khit-taw'","Of uncertain derivation; wheat, whether the grain or the plant: - wheat (-en)."]},{"k":"H2407","v":["חַטּוּשׁ","chaṭṭûsh","khat-toosh'","From an unused root of uncertain signification; Chattush, the name of four or five Israelites: - Hattush."]},{"k":"H2408","v":["חֲטִי","chăṭı̂y","khat-ee'","(Chaldee); from a root corresponding to H2398; an offence: - sin."]},{"k":"H2409","v":["חַטָּיָא","chaṭṭâyâ'","khat-taw-yaw'","(Chaldee); from the same as H2408; an expiation: - sin offering."]},{"k":"H2410","v":["חֲטִיטָא","chăṭı̂yṭâ'","khat-ee-taw'","From an unused root apparently meaning to dig out; explorer; Chatita, a temple porter: - Hatita."]},{"k":"H2411","v":["חַטִּיל","chaṭṭı̂yl","khat-teel'","From an unused root apparently meaning to wave; fluctuating; Chattil, one of Solomon’s servants: - Hattil."]},{"k":"H2412","v":["חֲטִיפָא","chăṭı̂yphâ'","khat-ee-faw'","From H2414; robber; Chatipha, one of the Nethinim: - Hatipha."]},{"k":"H2413","v":["חָטַם","châṭam","khaw-tam'","A primitive root; to stop: - refrain."]},{"k":"H2414","v":["חָטַף","châṭaph","khaw-taf'","A primitive root; to clutch; hence to seize as a prisoner: - catch."]},{"k":"H2415","v":["חֹטֵר","chôṭêr","kho'-ter","From an unused root of uncertain signification; a twig: - rod."]},{"k":"H2416","v":["חַי","chay","khah'ee","From H2421; alive; hence raw (flesh); fresh (plant, water, year), strong; also (as noun, especially in the feminine singular and masculine plural) life (or living thing), whether literally or figuratively: -    + age, alive, appetite, (wild) beast, company, congregation, life (-time), live (-ly), living (creature, thing), maintenance, + merry, multitude, + (be) old, quick, raw, running, springing, troop."]},{"k":"H2417","v":["חַי","chay","khah'ee","(Chaldee); from H2418; alive; also (as noun in plural) life: - life, that liveth, living."]},{"k":"H2418","v":["חֲיָה    חֲיָא","chăyâ'    chăyâh","khah-yaw', khah-yaw'","(Chaldee); corresponding to H2421; to live: - live, keep alive."]},{"k":"H2419","v":["חִיאֵל","chı̂y'êl","khee-ale'","From H2416 and H410; living of God; Chiel, an Israelite: - Hiel."]},{"k":"H2420","v":["חִידָה","chı̂ydâh","khee-daw'","From H2330; a puzzle; hence a trick, conundrum, sententious maxim: - dark saying (sentence, speech), hard question, proverb, riddle."]},{"k":"H2421","v":["חָיָה","châyâh","khaw-yaw'","A prim root (compare H2331, H2424); to live, whether literally or figuratively; causatively to revive: - keep (leave, make) alive, X certainly, give (promise) life, (let, suffer to) live, nourish up, preserve (alive), quicken, recover, repair, restore (to life), revive, (X God) save (alive, life, lives), X surely, be whole."]},{"k":"H2422","v":["חָיֶה","châyeh","khaw-yeh'","From H2421; vigorous: - lively."]},{"k":"H2423","v":["חֵיוָא","chêyvâ'","khay-vaw'","(Chaldee); from H2418; an animal: - beast."]},{"k":"H2424","v":["חַיּוּת","chayûth","khah-yooth'","From H2421; life: -  X living."]},{"k":"H2425","v":["חָיַי","châyay","khaw-yah'ee","A primitive root (compare H2421); to live; causatively to revive: - live, save life."]},{"k":"H2426","v":["חֵל    חֵיל","chêyl    chêl","khale, khale","A collateral form of H2428; an army; also (by analogy) an intrenchment: - army, bulwark, host, + poor, rampart, trench, wall."]},{"k":"H2427","v":["חִילָה    חִיל","chı̂yl    chı̂ylâh","kheel, khee-law'","From H2342; a throe (especially of childbirth): - pain, pang, sorrow."]},{"k":"H2428","v":["חַיִל","chayil","khah'-yil","From H2342; probably a force, whether of men, means or other resources; an army, wealth, virtue, valor, strength: - able, activity, (+) army, band of men (soldiers), company, (great) forces, goods, host, might, power, riches, strength, strong, substance, train, (+) valiant (-ly), valour, virtuous (-ly), war, worthy (-ily)."]},{"k":"H2429","v":["חַיִל","chayil","khah'-yil","(Chaldee); corresponding to H2428; an army, or strength: - aloud, army, X most [mighty], power."]},{"k":"H2430","v":["חֵילָה","chêylâh","khay-law'","Feminine of H2428; an intrenchment: - bulwark."]},{"k":"H2431","v":["חֵלְאָם    חֵילָם","chêylâm    chêl'âm","khay-lawm', khay-lawm'","From H2428; fortress; Chelam, a place East of Palestine: - Helam."]},{"k":"H2432","v":["חִילֵן","chı̂ylên","khee-lane","From H2428; fortress; Chilen, a place in Palestine: - Hilen."]},{"k":"H2433","v":["חִין","chı̂yn","kheen","Another form of H2580; beauty: - comely."]},{"k":"H2434","v":["חַיִץ","chayits","khah'-yits","Another form for H2351; a wall: - wall."]},{"k":"H2435","v":["חִיצוֹן","chı̂ytsôn","khee-tsone'","From H2434; properly the (outer) wall side; hence exterior; figuratively secular (as opposed to sacred): - outer, outward, utter, without."]},{"k":"H2436","v":["חוֹק    חֵק    חֵיק","chêyq    chêq    chôq","khake, khake, khoke","From an unused root, apparently meaning to inclose; the bosom (literally or figuratively): - bosom, bottom, lap, midst, within."]},{"k":"H2437","v":["חִירָה","chı̂yrâh","khee-raw'","From H2357 in the sense of splendor; Chirah, an Adullamite: - Hirah."]},{"k":"H2438","v":["חִירֹם    חִירָם","chı̂yrâm    chı̂yrôm","khee-rawm', khee-rome'","Another form of H2361; Chiram or Chirom, the name of two Tyrians: - Hiram, Huram."]},{"k":"H2439","v":["חִישׁ","chı̂ysh","kheesh","Another form of H2363; to hurry: - make haste."]},{"k":"H2440","v":["חִישׁ","chı̂ysh","kheesh","From H2439; properly a hurry; hence (adverbially) quickly: - soon."]},{"k":"H2441","v":["חֵךְ","chêk","khake","Probably from H2496 in the sense of tasting; properly the palate or inside of the mouth; hence the mouth itself (as the organ of speech, taste and kissing): - (roof of the) mouth, taste."]},{"k":"H2442","v":["חָכָה","châkâh","khaw-kaw'","A primitive root (apparently akin to H2707 through the idea of piercing); properly to adhere to; hence to await: - long, tarry, wait."]},{"k":"H2443","v":["חַכָּה","chakkâh","khak-kaw'","Probably from H2442; a hook (as adhering): - angle, hook."]},{"k":"H2444","v":["חֲכִילָה","chăkı̂ylâh","khak-ee-law'","From the same as H2447; dark; Chakilah, a hill in Palestine: - Hachilah."]},{"k":"H2445","v":["חַכִּים","chakkı̂ym","khak-keem'","(Chaldee); from a root corresponding to H2449; wise, that is, a Magian: - wise."]},{"k":"H2446","v":["חֲכַלְיָה","chăkalyâh","khak-al-yaw'","From the base of H2447 and H3050; darkness of Jah; Chakaljah, an Israelite: - Hachaliah."]},{"k":"H2447","v":["חַכְלִיל","chaklı̂yl","khak-leel'","By reduplication from an unused root apparently meaning to be dark; darkly flashing (only of the eyes); in a good sense, brilliant (as stimulated by wine): - red."]},{"k":"H2448","v":["חַכְלִלוּת","chaklilûth","khak-lee-looth'","From H2447; flash (of the eyes); in a bad sense, blearedness: - redness."]},{"k":"H2449","v":["חָכַם","châkam","khaw-kam'","A primitive root, to be wise (in mind, word or act): -    X exceeding, teach wisdom, be (make self, shew self) wise, deal (never so) wisely, make wiser."]},{"k":"H2450","v":["חָכָם","châkâm","khaw-kawm'","From H2449; wise, (that is, intelligent, skilful or artful): - cunning (man), subtil, ([un-]), wise ([hearted], man)."]},{"k":"H2451","v":["חָכְמָה","chokmâh","khok-maw'","From H2449; wisdom (in a good sense): - skillful, wisdom, wisely, wit."]},{"k":"H2452","v":["חָכְמָה","chokmâh","khok-maw'","(Chaldee); corresponding to H2451; wisdom: - wisdom."]},{"k":"H2453","v":["חַכְמוֹנִי","chakmônı̂y","khak-mo-nee'","From H2449; skilful; Chakmoni, an Israelite: - Hachmoni, Hachmonite."]},{"k":"H2454","v":["חַכְמוֹת    חָכְמוֹת","chokmôth    chakmôth","khok-moth', khak-moth'","Collateral forms of H2451; wisdom: - wisdom, every wise [woman]."]},{"k":"H2455","v":["חֹל","chôl","khole","From H2490; properly exposed; hence profane: - common, profane (place), unholy."]},{"k":"H2456","v":["חָלָא","châlâ'","khaw-law'","A primitive root (compare H2470); to be sick: - be diseased."]},{"k":"H2457","v":["חֶלְאָה","chel'âh","khel-aw'","From H2456; properly disease; hence rust: - scum."]},{"k":"H2458","v":["חֶלְאָה","chel'âh","khel-aw'","The same as H2457; Chelah, an Israelitess: - Helah."]},{"k":"H2459","v":["חֵלֶב    חֶלֶב","cheleb    chêleb","kheh'-leb, khay'-leb","From an unused root meaning to be fat; fat, whether literally or figuratively; hence the richest or choice part: -    X best, fat (-ness), X finest, grease, marrow."]},{"k":"H2460","v":["חֵלֶב","chêleb","khay'-leb","The same as H2459; fatness; Cheleb, an Israelite: - Heleb."]},{"k":"H2461","v":["חָלָב","châlâb","khaw-lawb'","From the same as H2459; milk (as the richness of kine): -    + cheese, milk, sucking,"]},{"k":"H2462","v":["חֶלְבָּה","chelbâh","khel-baw'","Feminine of H2459; fertility: Chelbah, a place in Palestine: - Helbah."]},{"k":"H2463","v":["חֶלְבּוֹן","chelbôn","khel-bone'","From H2459; fruitful; Chelbon, a place in Syria: - Helbon."]},{"k":"H2464","v":["חֶלְבְּנָה","chelbenâh","khel-ben-aw'","From H2459; galbanam, an odorous gum (as if fatty): - galbanum."]},{"k":"H2465","v":["חֶלֶד","cheled","kheh'-led","From an unused root apparently meaning to glide swiftly; life (as a fleeting portion of time); hence the world (as transient): - age, short time, world."]},{"k":"H2466","v":["חֵלֶד","chêled","khay'-led","The same as H2465; cheled, an Israelite: - Heled."]},{"k":"H2467","v":["חֹלֶד","chôled","kho'-led","From the same as H2465; a weasel (from its gliding motion): - weasel."]},{"k":"H2468","v":["חֻלְדָּה","chûldâh","khool-daw'","Feminine of H2467; Chuldah, an Israelitess: - Huldah."]},{"k":"H2469","v":["חֶלְדַּי","chelday","khel-dah'-ee","From H2466; worldliness; Cheldai, the name of two Israelites: - Heldai."]},{"k":"H2470","v":["חָלָה","châlâh","khaw-law'","A primitive root (compare H2342, H2490); properly to be rubbed or worn; hence (figuratively) to be weak, sick, afflicted; or (causatively) to grieve, make sick; also to stroke (in flattering), entreat: - beseech, (be) diseased, (put to) grief, be grieved, (be) grievous, infirmity, intreat, lay to, put to pain, X pray, make prayer, be (fall, make) sick, sore, be sorry, make suit (X supplication), woman in travail, be (become) weak, be wounded."]},{"k":"H2471","v":["חַלָּה","challâh","khal-law'","From H2490; a cake (as usually punctured): - cake."]},{"k":"H2472","v":["חֲלֹם    חֲלוֹם","chălôm    chălôm","khal-ome', khal-ome'","From H2492; a dream: - dream (-er)."]},{"k":"H2473","v":["חֹלֹן    חֹלוֹן","chôlôn    chôlôn","kho-lone', kho-lone'","Probably from H2344; sandy; Cholon, the name of two places in Palestine: - Holon."]},{"k":"H2474","v":["חַלּוֹן","challôn","khal-lone'","A window (as perforated): - window."]},{"k":"H2475","v":["חֲלוֹף","chălôph","khal-ofe'","From H2498; properly surviving; by implication (collectively) orphans: -  X destruction."]},{"k":"H2476","v":["חֲלוּשָׁה","chălûshâh","khal-oo-shaw'","Feminine passive participle of H2522; defeat: - being overcome."]},{"k":"H2477","v":["חֲלַח","chălach","khal-akh'","Probably of foreign origin; Chalach, a region of Assyria: - Halah."]},{"k":"H2478","v":["חַלְחוּל","chalchûl","khal-khool'","By reduplication from H2342; contorted; Chalchul, a place in Palestine: - Halhul."]},{"k":"H2479","v":["חַלְחָלָה","chalchâlâh","khal-khaw-law'","Feminine from the same as H2478; writhing (in childbirth); by implication terror: - (great, much) pain."]},{"k":"H2480","v":["חָלַט","châlaṭ","khaw-lat'","A primitive root; to snatch at: - catch."]},{"k":"H2481","v":["חֲלִי","chălı̂y","khal-ee'","From H2470; a trinket (as polished): - jewel, ornament."]},{"k":"H2482","v":["חֲלִי","chălı̂y","khal-ee'","The same as H2481; Chali, a place in Palestine: - Hali."]},{"k":"H2483","v":["חֳלִי","chŏlı̂y","khol-ee'","From H2470; malady, anxiety, calamity: - disease, grief, (is) sick (-ness)."]},{"k":"H2484","v":["חֶלְיָה","chelyâh","khel-yaw'","Feminine of H2481; a trinket: - jewel."]},{"k":"H2485","v":["חָלִיל","châlı̂yl","khaw-leel'","From H2490; a flute (as perforated): - pipe."]},{"k":"H2486","v":["חָלִלָה    חָלִילָה","châlı̂ylâh    châlilâh","khaw-lee'-law, khaw-lee'-law","A directive from H2490; literally for a profaned thing; used (interjectionally) far be it!: - be far, (X God) forbid."]},{"k":"H2487","v":["חֲלִיפָה","chălı̂yphâh","khal-ee-faw'","From H2498; alternation: - change, course."]},{"k":"H2488","v":["חֲלִיצָה","chălı̂ytsâh","khal-ee-tsaw'","From H2503; spoil: - armour."]},{"k":"H2489","v":["חֵלְכָה    חֵלְכָא","chêlekâ'    chêlekâh","khay-lek-aw', khay-lek-aw'","Apparently from an unused root probably meaning to be dark or (figuratively) unhappy; a wretch, that is, unfortunate: - poor."]},{"k":"H2490","v":["חָלַל","châlal","khaw-lal'","A primitive root (compare H2470); properly to bore, that is, (by implication) to wound, to dissolve; figuratively to profane (a person, place or thing), to break (one’s word), to begin (as if by an opening-wedge); denominatively (from H2485) to play (the flute): - begin (X men began), defile, X break, defile, X eat (as common things), X first, X gather the grape thereof, X take inheritance, pipe, player on instruments, pollute, (cast as) profane (self), prostitute, slay (slain), sorrow, stain, wound."]},{"k":"H2491","v":["חָלָל","châlâl","khaw-lawl'","From H2490; pierced (especially to death); figuratively polluted: - kill, profane, slain (man), X slew, (deadly) wounded."]},{"k":"H2492","v":["חָלַם","châlam","khaw-lam'","A primitive root; properly to bind firmly, that is, (by implication) to be (causatively to make) plump; also (through the figurative sense of dumbness) to dream: - (cause to) dream (-er), be in good liking, recover."]},{"k":"H2493","v":["חֵלֶם","chêlem","khay'-lem","(Chaldee); from a root corresponding to H2492; a dream: - dream."]},{"k":"H2494","v":["חֵלֶם","chêlem","khay'-lem","From H2492; a dream; Chelem, an Israelite: - Helem. Compare H2469."]},{"k":"H2495","v":["חַלָּמוּת","challâmûth","khal-law-mooth'","From H2492 (in the sense of insipidity); probably purslain: - egg."]},{"k":"H2496","v":["חַלָּמִישׁ","challâmı̂ysh","khal-law-meesh'","Probably from H2492 (in the sense of hardness); flint: - flint (-y), rock."]},{"k":"H2497","v":["חֵלֹן","chêlôn","khay-lone'","From H2428; strong; Chelon, an Israelite: - Helon"]},{"k":"H2498","v":["חָלַף","châlaph","khaw-laf'","A primitive root; properly to slide by, that is, (by implication) to hasten away, pass on, spring up, pierce or change: - abolish, alter change, cut off, go on forward, grow up, be over, pass (away, on, through), renew, sprout, strike through."]},{"k":"H2499","v":["חֲלַף","chălaph","khal-af'","(Chaldee); corresponding to H2498; to pass on (of time): - pass."]},{"k":"H2500","v":["חֵלֶף","chêleph","khay'-lef","From H2498; properly exchange; hence (as preposition) instead of: -    X for."]},{"k":"H2501","v":["חֶלֶף","cheleph","kheh'-lef","The same as H2500; change; Cheleph, a place in Palestine: - Heleph."]},{"k":"H2502","v":["חָלַץ","châlats","khaw-lats'","A primitive root; to pull off; hence (intensively) to strip, (reflexively) to depart; by implication to deliver, equip (for fight); present, strengthen: - arm (self), (go, ready) armed (X man, soldier), deliver, draw out, make fat, loose, (ready) prepared, put off, take away, withdraw self."]},{"k":"H2503","v":["חֵלֶץ    חֶלֶץ","chelets    chêlets","kheh'-lets, khay'-lets","From H2502; perhaps strength; Chelets, the name of two Israelites: - Helez."]},{"k":"H2504","v":["חָלָץ","châlâts","khaw-lawts'","From H2502 (in the sense of strength); only in the dual; the loins (as the seat of vigor): - loins, reins."]},{"k":"H2505","v":["חָלַק","châlaq","khaw-lak'","A primitive root; to be smooth (figuratively); by implication (as smooth stones were used for lots) to apportion or separate: - deal, distribute, divide, flatter, give, (have, im-) part (-ner), take away a portion, receive, separate self, (be) smooth (-er)."]},{"k":"H2506","v":["חֵלֶק","chêleq","khay'-lek","From H2505; properly smoothness (of the tongue); also an allotment: - flattery, inheritance, part, X partake, portion."]},{"k":"H2507","v":["חֵלֶק","chêleq","khay'-lek","The same as H2506; portion; Chelek, an Israelite: - Helek."]},{"k":"H2508","v":["חֲלָק","chălâq","khal-awk'","(Chaldee); from a root corresponding to H2505; a part: - portion."]},{"k":"H2509","v":["חָלָק","châlâq","khaw-lawk'","From H2505; smooth (especially of tongue): - flattering, smooth."]},{"k":"H2510","v":["חָלָק","châlâq","khaw-lawk'","The same as H2500; bare; Chalak, a mountain of Idumaea: -    Halak."]},{"k":"H2511","v":["חַלָּק","challâq","khal-lawk'","From H2505; smooth: - smooth."]},{"k":"H2512","v":["חַלֻּק","challûq","khal-look'","From H2505; smooth: - smooth."]},{"k":"H2513","v":["חֶלְקָה","chelqâh","khel-kaw'","Feminine of H2506; properly smoothness; figuratively flattery; also an allotment: - field, flattering (-ry), ground, parcel, part, piece of land ([ground]), plat, portion, slippery place, smooth (thing)."]},{"k":"H2514","v":["חֲלַקָּה","chălaqqâh","kal-ak-kaw'","Feminine from H2505; flattery: - flattery."]},{"k":"H2515","v":["חֲלֻקָּה","chălûqqâh","khal-ook-kaw","Feminine of H2512; a distribution: - division."]},{"k":"H2516","v":["חֶלְקִי","chelqı̂y","khel-kee'","Patronymic from H2507; a Chelkite or descendant of Chelek: - Helkites."]},{"k":"H2517","v":["חֶלְקַי","chelqay","khel-kah'ee","From H2505; apportioned; Chelkai, an Israelite: - Helkai."]},{"k":"H2518","v":["חִלְקִיָּהוּ    חִלְקִיָּה","chilqı̂yâh    chilqı̂yâhû","khil-kee-yaw', khil-kee-yaw'-hoo","From H2506 and H3050; portion of Jah; Chilhijah, the name of eight Israelites: - Hilkiah."]},{"k":"H2519","v":["חֲלַקְלַקָּה","chălaqlaqqâh","khal-ak-lak-kaw'","By reduplication from H2505; properly something very smooth; that is, a treacherous spot; figuratively blandishment: - flattery, slippery."]},{"k":"H2520","v":["חֶלְקַת","chelqath","khel-kath'","A form of H2513; smoothness; Chelkath, a place in Palestine: - Helkath."]},{"k":"H2521","v":["חֶלְקַת הַצֻּרִים","chelqath hatstsûrı̂ym","khel-kath' hats-tsoo-reem'","From H2520 and the plural of H6697; with the article inserted; smoothness of the rocks; Chelkath Hatstsurim, a place in Palestine: - Helkath-hazzurim."]},{"k":"H2522","v":["חָלַשׁ","châlash","khaw-lash'","A primitive root; to prostrate; by implication to overthrow, decay: - discomfit, waste away, weaken."]},{"k":"H2523","v":["חַלָּשׁ","challâsh","khal-lawsh'","From H2322; frail: - weak."]},{"k":"H2524","v":["חָם","châm","khawm","From the same as H2346; a father in law (as in affinity): - father in law."]},{"k":"H2525","v":["חָם","châm","khawm","From H2552; hot: - hot, warm."]},{"k":"H2526","v":["חָם","châm","khawm","The same as H2525; hot (from the tropical habitat); Cham, a son of Noah; also (as a patronymic) his descendants or their country: - Ham."]},{"k":"H2527","v":["חֹם","chôm","khome","From H2552; heat: - heat, to be hot (warm)."]},{"k":"H2528","v":["חֲמָה    חֱמָא","chĕmâ'    chămâh","khem-aw', kham-aw'","(Chaldee); corresponding to H2534; anger: - fury."]},{"k":"H2529","v":["חֵמָה    חֶמְאָה","chem'âh    chêmâh","khem-aw', khay-maw'","From the same root as H2346; curdled milk or cheese: - butter."]},{"k":"H2530","v":["חָמַד","châmad","khaw-mad'","A primitive root; to delight in: - beauty, greatly beloved, covet, delectable thing, ( X great) delight, desire, goodly, lust, (be) pleasant (thing), precious (thing)."]},{"k":"H2531","v":["חֶמֶד","chemed","kheh'-med","A primitive root; to delight in: - desirable, pleasant."]},{"k":"H2532","v":["חֶמְדָּה","chemdâh","khem-daw'","Feminine of H2531; delight: - desire, goodly, pleasant, precious."]},{"k":"H2533","v":["חֶמְדָּן","chemdân","khem-dawn'","From H2531; pleasant; Chemdan, an Idumaean: - Hemdan."]},{"k":"H2534","v":["חֵמָא    חֵמָה","chêmâh    chêmâ'","khay-maw', khay-maw'","From H3179; heat; figuratively anger, poison (from its fever): - anger, bottles, hot displeasure, furious (-ly, -ry), heat, indignation, poison, rage, wrath (-ful). See H2529."]},{"k":"H2535","v":["חַמָּה","chammâh","kham-maw'","From H2525; heat; by implication the sun: - heat, sun."]},{"k":"H2536","v":["חַמּוּאֵל","chammû'êl","kham-moo-ale'","From H2535 and H410; anger of God; Chammuel, an Israelite: - Hamuel."]},{"k":"H2537","v":["חֲמִיטַל    חֲמוּטַל","chămûṭal    chămı̂yṭal","kham-oo-tal', kham-ee-tal'","From H2524 and H2919; father in law of dew; Chamutal or Chamital, an Israelitess: - Hamutal."]},{"k":"H2538","v":["חָמוּל","châmûl","khaw-mool'","From H2550; pitied; Chamul, an Israelite: - Hamul."]},{"k":"H2539","v":["חָמוּלִי","châmûlı̂y","khaw-moo-lee'","Patronymic from H2538; a Chamulite (collectively) or descendant of Chamul: - Hamulites."]},{"k":"H2540","v":["חַמּוֹן","chammôn","kham-mone'","From H2552; warm spring; Chammon, the name of two places in Palestine: - Hammon."]},{"k":"H2541","v":["חָמוֹץ","châmôts","khaw-motse'","From H2556; properly violent; by implication a robber: - oppressed."]},{"k":"H2542","v":["חַמּוּק","chammûq","kham-mook'","From H2559; a wrapping, that is, drawers: - joints."]},{"k":"H2543","v":["חֲמֹר    חֲמוֹר","chămôr    chămôr","kham-ore', kham-ore'","From H2560; a male ass (from its dun red): - (he) ass."]},{"k":"H2544","v":["חֲמוֹר","chămôr","kham-ore'","The same as H2543; ass; Chamor, a Canaanite: - Hamor."]},{"k":"H2545","v":["חֲמֹת    חֲמוֹת","chămôth    chămôth","kham-oth', kham-oth'","Feminine of H2524; a mother in law: - mother in law."]},{"k":"H2546","v":["חֹמֶט","chômeṭ","kho'-met","From an unused root probably meaning to lie low; a lizard (as creeping): - snail."]},{"k":"H2547","v":["חֻמְטָה","chûmṭâh","khoom-taw'","Feminine of H2546; low; Chumtah, a place in Palestine: - Humtah."]},{"k":"H2548","v":["חָמִיץ","châmı̂yts","khaw-meets'","From H2556; seasoned, that is, salt provender: - clean."]},{"k":"H2549","v":["חֲמִשִּׁי    חֲמִישִׁי","chămı̂yshı̂y    chămishshı̂y","kham-ee-shee', kham-ish-shee'","Ordinal from H2568; fifth; also a fifth: - fifth (part)."]},{"k":"H2550","v":["חָמַל","châmal","khaw-mal'","A primitive root; to commiserate; by implication to spare: - have compassion, (have) pity, spare."]},{"k":"H2551","v":["חֶמְלָה","chemlâh","khem-law'","From H2550; commiseration: - merciful, pity."]},{"k":"H2552","v":["חָמַם","châmam","khaw-mam'","A primitive root; to be hot (literally or figuratively): - enflame self, get (have) heat, be (wax) hot, (be, wax) warm (self, at)."]},{"k":"H2553","v":["חַמָּן","chammân","kham-mawn'","From H2535; a sun pillar: - idol, image."]},{"k":"H2554","v":["חָמַס","châmas","khaw-mas'","A primitive root; to be violent; by implication to maltreat: - make bare, shake off, violate, do violence, take away violently, wrong, imagine wrongfully."]},{"k":"H2555","v":["חָמָס","châmâs","khaw-mawce'","From H2554; violence; by implication wrong; by metonymy unjust gain: - cruel (-ty), damage, false, injustice, X oppressor, unrighteous, violence (against, done), violent (dealing), wrong."]},{"k":"H2556","v":["חָמֵץ","châmêts","khaw-mates'","A primitive root; to be pungent; that is, in taste (sour, that is, literally fermented, or figuratively harsh), in color (dazzling): - cruel (man), dyed, be grieved, leavened."]},{"k":"H2557","v":["חָמֵץ","châmêts","khaw-mates'","From H2556; ferment, (figuratively) extortion: - leaven, leavened (bread)."]},{"k":"H2558","v":["חֹמֶץ","chômets","kho'-mets","From H2566; vinegar: - vinegar."]},{"k":"H2559","v":["חָמַק","châmaq","khaw-mak'","A primitive root; properly to enwrap; hence to depart (that is, turn about): - go about, withdraw self."]},{"k":"H2560","v":["חָמַר","châmar","khaw-mar'","A primitive root; properly to boil up; hence to ferment (with scum); to glow (with redness); as denominative (from H2564) to smear with pitch: - daub, foul, be red, trouble."]},{"k":"H2561","v":["חֶמֶר","chemer","kheh'-mer","From H2560; wine (as fermenting): -    X pure, red wine."]},{"k":"H2562","v":["חֲמַר","chămar","kham-ar'","(Chaldee); corresponding to H2561; wine: - wine."]},{"k":"H2563","v":["חֹמֶר","chômer","kho'-mer","From H2560; properly a bubbling up, that is, of water, a wave; of earth, mire or clay (cement); also a heap; hence a chomer or dry measure: - clay, heap, homer, mire, motion, mortar."]},{"k":"H2564","v":["חֵמָר","chêmâr","khay-mawr'","From H2560; bitumen (as rising to the surface): - slime (-pit)."]},{"k":"H2565","v":["חֲמֹרָה","chămôrâh","kham-o-raw'","From H2560 (compare H2563); a heap: - heap."]},{"k":"H2566","v":["חַמְרָן","chamrân","kham-rawn'","From H2560; red; Chamran, an Idumaean: - Amran."]},{"k":"H2567","v":["חָמַשׁ","châmash","khaw-mash'","A denominative from H2568; to tax a fifth: - take up the fifth part."]},{"k":"H2568","v":["חֲמִשָּׁה    חָמֵשׁ","châmêsh    chămishshâh","khaw-maysh', kham-ish-shaw'","A primitive numeral; five: - fif [-teen], fifth, five (X apiece)."]},{"k":"H2569","v":["חֹמֶשׁ","chômesh","kho'-mesh","From H2567; a fifth tax: - fifth part."]},{"k":"H2570","v":["חֹמֶשׁ","chômesh","kho'-mesh","From an unused root probably meaning to be stout; the abdomen (as obese): - fifth [rib]."]},{"k":"H2571","v":["חָמֻשׁ","châmûsh","khaw-moosh'","Passive participle of the same as H2570; staunch, that is, able bodied soldiers: - armed (men), harnessed."]},{"k":"H2572","v":["חֲמִשִּׁים","chămishshı̂ym","kham-ish-sheem'","Multiple of H2568; fifty: - fifty."]},{"k":"H2573","v":["חֵמֶת","chêmeth","khay'-meth","From the same as H2346; a skin bottle (as tied up): - bottle."]},{"k":"H2574","v":["חֲמָת","chămâth","kham-awth'","From the same as H2346; walled; Chamath, a place in Syria: - Hamath, Hemath."]},{"k":"H2575","v":["חַמַּת","chammath","kham-math'","A variation for the first part of H2576; hot springs; Chammath, a place in Palestine: - Hammath."]},{"k":"H2576","v":["חַמֹּת דֹּאר","chammôth dô'r","kham-moth' dore","From the plural of H2535 and H1756; hot springs of Dor; Chammath Dor, a place in Palestine: - Hamath-Dor."]},{"k":"H2577","v":["חֲמָתִי","chămâthı̂y","kham-aw-thee'","Patrial from H2574; a Chamathite or native of Chamath: - Hamathite."]},{"k":"H2578","v":["חֲמַת צוֹבָה","chămath tsôbâh","kham-ath' tso-baw'","From H2574 and H6678; Chamath of Tsobah; Chamath Tsobah; probably the same as H2574: - Hamath-Zobah."]},{"k":"H2579","v":["חֲמַת רַבָּה","chămath rabbâh","kham-ath' rab-baw'","From H2574 and H7237; Chamath of Rabbah; Chamath Rabbah, probably the same as H2574."]},{"k":"H2580","v":["חֵן","chên","khane","From H2603; graciousness, that is, subjectively (kindness, favor) or objectively (beauty): - favour, grace (-ious), pleasant, precious, [well-] favoured."]},{"k":"H2581","v":["חֵן","chên","khane","The same as H2580; grace; Chen, a figurative name for an Israelite: - Hen."]},{"k":"H2582","v":["חֵנָדָד","chênâdâd","khay-naw-dawd'","Probably from H2580 and H1908; favor of Hadad; Chenadad, an Israelite: - Henadad."]},{"k":"H2583","v":["חָנָה","chânâh","khaw-naw'","A primitive root (compare H2603); properly to incline; by implication to decline (of the slanting rays of evening); specifically to pitch a tent; generally to encamp (for abode or siege): - abide (in tents), camp, dwell, encamp, grow to an end, lie, pitch (tent), rest in tent."]},{"k":"H2584","v":["חַנָּה","channâh","khan-naw'","From H2603; favored; Channah, an Israelitess: - Hannah."]},{"k":"H2585","v":["חֲנוֹךְ","chănôk","khan-oke'","From H2596; initiated; Chanok, an antediluvian patriarch: - Enoch."]},{"k":"H2586","v":["חָנוּן","chânûn","khaw-noon'","From H2603; favored; Chanun, the name of an Ammonite and of two Israelites: - Hanun."]},{"k":"H2587","v":["חַנּוּן","channûn","khan-noon'","From H2603; gracious: - gracious."]},{"k":"H2588","v":["חָנוּת","chânûth","khaw-nooth'","From H2583; properly a vault or cell (with an arch); by implication a prison: - cabin."]},{"k":"H2589","v":["חַנּוֹת","channôth","khan-noth'","From H2603 (in the sense of prayer); supplication: - be gracious, intreated."]},{"k":"H2590","v":["חָנַט","chânaṭ","khaw-nat'","A primitive root; to spice; by implication to embalm; also to ripen: - embalm, put forth."]},{"k":"H2591","v":["חִנְטָא","chinṭâ'","khint-taw'","(Chaldee); corresponding to H2406; wheat: - wheat."]},{"k":"H2592","v":["חַנִּיאֵל","channı̂y'êl","khan-nee-ale'","From H2603 and H410; favor of God; Channiel, the name of two Israelites: - Hanniel."]},{"k":"H2593","v":["חָנִיךְ","chânı̂yk","kaw-neek'","From H2396; initiated; that is, practised: - trained."]},{"k":"H2594","v":["חֲנִינָה","chănı̂ynâh","khan-ee-naw'","From H2603; graciousness: - favour."]},{"k":"H2595","v":["חֲנִית","chănı̂yth","khan-eeth'","From H2583; a lance (for thrusting, like pitching a tent): - javelin, spear."]},{"k":"H2596","v":["חָנַךְ","chânak","khaw-nak'","A primitive root; properly to narrow (compare H2614); figuratively to initiate or discipline: - dedicate, train up."]},{"k":"H2597","v":["חֲנֻכָּא","chănûkkâ'","khan-ook-kaw'","(Chaldee); corresponding to H2598; consecration: - dedication."]},{"k":"H2598","v":["חֲנֻכָּה","chănûkkâh","khan-ook-kaw'","From H2596; initiation, that is, consecration: - dedicating (-tion)."]},{"k":"H2599","v":["חֲנֹכִי","chănôkı̂y","khan-o-kee'","Patronymic from H2585; a Chanokite (collectively) or descendant of Chanok: - Hanochites."]},{"k":"H2600","v":["חִנָּם","chinnâm","khin-nawm'","From H2580; gratis, that is, devoid of cost, reason or advantage: - without a cause (cost, wages), causeless, to cost nothing, free (-ly), innocent, for nothing (nought), in vain."]},{"k":"H2601","v":["חֲנַמְאֵל","chănam'êl","khan-am-ale'","Probably by orthographical variation for H2606; Chanamel, an Israelite: - Hanameel."]},{"k":"H2602","v":["חֲנָמָל","chănâmâl","khan-aw-mawl'","Of uncertain derivation; perhaps the aphis or plant louse: - frost."]},{"k":"H2603","v":["חָנַן","chânan","khaw-nan'","A primitive root (compare H2583); properly to bend or stoop in kindness to an inferior; to favor, bestow; causatively to implore (that is, move to favor by petition): - beseech, X fair, (be, find, shew) favour (-able), be (deal, give, grant (gracious (-ly), intreat, (be) merciful, have (shew) mercy (on, upon), have pity upon, pray, make supplication, X very."]},{"k":"H2604","v":["חֲנַן","chănan","khan-an'","(Chaldee); corresponding to H2603; to favor or (causatively) to entreat: - shew mercy, make supplication."]},{"k":"H2605","v":["חָנָן","chânân","khaw-nawn'","From H2603; favor; Chanan, the name of seven Israelites: - Canan."]},{"k":"H2606","v":["חֲנַנְאֵל","chănan'êl","khan-an-ale'","From H2603 and H410; God has favored; Chananel, probably an Israelite, from whom a tower of Jerusalem was named: - Hananeel."]},{"k":"H2607","v":["חֲנָנִי","chănânı̂y","khan-aw-nee'","From H2603; gracious; Chanani, the name of six Israelites: - Hanani."]},{"k":"H2608","v":["חֲנַנְיָהוּ    חֲנַנְיָה","chănanyâh    chănanyâhû","khan-an-yaw', khan-an-yaw'-hoo","From H2603 and H3050; Jah has favored; Chananjah, the name of thirteen Israelites: - Hananiah."]},{"k":"H2609","v":["חָנֵס","chânês","khaw-nace'","Of Egyptian derivation; Chanes, a place in Egypt: - Hanes."]},{"k":"H2610","v":["חָנֵף","chânêph","khaw-nafe'","A primitive root; to soil, especially in a moral sense: - corrupt, defile, X greatly, pollute, profane."]},{"k":"H2611","v":["חָנֵף","chânêph","khaw-nafe'","From H2610; soiled (that is, with sin), impious: - hypocrite (-ical)."]},{"k":"H2612","v":["חֹנֶף","chôneph","kho'-nef","From H2610; moral filth, that is, wickedness: - hypocrisy."]},{"k":"H2613","v":["חֲנֻפָה","chănûphâh","khan-oo-faw'","Feminine from H2610; impiety: - profaneness."]},{"k":"H2614","v":["חָנַק","chânaq","khaw-nak'","A primitive root (compare H2596); to be narrow; by implication to throttle, or (reflexively) to choke oneself to death (by a rope): - hang self, strangle."]},{"k":"H2615","v":["חַנָּתֹן","channâthôn","khan-naw-thone'","Probably from H2603; favored; Channathon, a place in Palestine: - Hannathon."]},{"k":"H2616","v":["חָסַד","châsad","khaw-sad'","A primitive root; properly perhaps to bow (the neck only (compare H2603) in courtesy to an equal), that is, to be kind; also (by euphemism (compare H1288), but rarely) to reprove: - shew self merciful, put to shame."]},{"k":"H2617","v":["חֵסֵד","chêsêd","kheh'-sed","From H2616; kindness; by implication (towards God) piety; rarely (by opprobrium) reproof, or (subjectively) beauty: - favour, good deed (-liness, -ness), kindly, (loving-) kindness, merciful (kindness), mercy, pity, reproach, wicked thing."]},{"k":"H2618","v":["חֶסֶד","chesed","kheh'-sed","The same as H2617; favor; Chesed, an Israelite: - Hesed."]},{"k":"H2619","v":["חֲסַדְיָה","chăsadyâh","khas-ad-yaw'","From H2617 and H3050; Jah has favored; Chasadjah, an Israelite: - Hasadiah."]},{"k":"H2620","v":["חָסָה","châsâh","khaw-saw'","A primitive root; to flee for protection (compare H982); figuratively to confide in: - have hope, make refuge, (put) trust."]},{"k":"H2621","v":["חֹסָה","chôsâh","kho-saw'","From H2620; hopeful; Chosah, an Israelite: - Hosah."]},{"k":"H2622","v":["חָסוּת","châsûth","khaw-sooth'","From H2620; confidence: - trust."]},{"k":"H2623","v":["חָסִיד","châsı̂yd","khaw-seed'","From H2616; properly kind, that is, (religiously) pious (a saint): - godly (man), good, holy (one), merciful, saint, [un-] godly."]},{"k":"H2624","v":["חֲסִידָה","chăsı̂ydâh","khas-ee-daw'","Feminine of H2623; the kind (maternal) bird, that is, a stork: -  X feather, stork."]},{"k":"H2625","v":["חָסִיל","châsı̂yl","khaw-seel'","From H2628; the ravager, that is, a locust: - caterpillar."]},{"k":"H2626","v":["חֲסִין","chăsı̂yn","khas-een'","From H2630; properly firm, that is, (by implication) mighty: - strong."]},{"k":"H2627","v":["חַסִּיר","chassı̂yr","khas-seer'","(Chaldee); from a root corresponding to H2637; deficient: - wanting."]},{"k":"H2628","v":["חָסַל","châsal","khaw-sal'","A primitive root; to eat off: - consume."]},{"k":"H2629","v":["חָסַם","châsam","khaw-sam'","A primitive root; to muzzle; by analogy to stop the nose: - muzzle, stop."]},{"k":"H2630","v":["חָסַן","châsan","khaw-san'","A primitive root; properly to (be) compact; by implication to hoard: - lay up."]},{"k":"H2631","v":["חֲסַן","chăsan","khas-an'","(Chaldee); corresponding to H2630; to hold in occupancy: - possess."]},{"k":"H2632","v":["חֵסֶן","chêsen","khay'-sen","(Chaldee); from H2631; strength: - power."]},{"k":"H2633","v":["חֹסֶן","chôsen","kho'-sen","From H2630; wealth: - riches, strength, treasure."]},{"k":"H2634","v":["חָסֹן","châsôn","khaw-sone'","From H2630; powerful: - strong."]},{"k":"H2635","v":["חֲסַף","chăsaph","khas-af'","(Chaldee); from a root corresponding to that of H2636; a clod: - clay."]},{"k":"H2636","v":["חַסְפַּס","chaspas","khas-pas'","Reduplicated from an unused root meaning apparently to peel; a shred or scale: - round thing."]},{"k":"H2637","v":["חָסֵר","châsêr","khaw-sare'","A primitive root; to lack; by implication to fail, want, lessen: - be abated, bereave, decrease, (cause to) fail, (have) lack, make lower, want."]},{"k":"H2638","v":["חָסֵר","châsêr","khaw-sare'","From H2637; lacking; hence without: - destitute, fail, lack, have need, void, want."]},{"k":"H2639","v":["חֶסֶר","cheser","kheh'-ser","From H2637; lack; hence destitution: - poverty, want."]},{"k":"H2640","v":["חֹסֶר","chôser","kho'-ser","From H2637; poverty: - in want of."]},{"k":"H2641","v":["חַסְרָה","chasrâh","khas-raw'","From H2637; want: - Chasrah, an Isr: - Hasrah."]},{"k":"H2642","v":["חֶסְרוֹן","chesrôn","khes-rone'","From H2637; deficiency: - wanting."]},{"k":"H2643","v":["חַף","chaph","khaf","From H2653 (in the moral sense of covered from soil); pure: - innocent."]},{"k":"H2644","v":["חָפָא","châphâ'","khaw-faw'","An orthographical variation of H2645; properly to cover, that is, (in a sinister sense) to act covertly: - do secretly."]},{"k":"H2645","v":["חָפָה","châphâh","khaw-faw'","A primitive root (compare H2644, H2653); to cover; by implication to veil, to incase, protect: - ceil, cover, overlay."]},{"k":"H2646","v":["חֻפָּה","chûppâh","khoop-paw'","From H2645; a canopy: - chamber, closet, defence."]},{"k":"H2647","v":["חֻפָּה","chûppâh","khoop-paw'","The same as H2646; Chuppah, an Israelite: - Huppah."]},{"k":"H2648","v":["חָפַז","châphaz","khaw-faz'","A primitive root; properly to start up suddenly, that is, (by implication) to hasten away, to fear: - (make) haste (away), tremble."]},{"k":"H2649","v":["חִפָּזוֹן","chippâzôn","khip-paw-zone'","From H2468; hasty flight: - haste."]},{"k":"H2650","v":["חֻפִּים","chûppı̂ym","khoop-peem'","Plural of H2646 (compare H2349); Chuppim, an Israelite: - Huppim."]},{"k":"H2651","v":["חֹפֶן","chôphen","kho'-fen","From an unused root of uncertain signification; a fist (only in the dual): - fists, (both) hands, hand [-full]."]},{"k":"H2652","v":["חָפְנִי","chophnı̂y","khof-nee'","From H2651; perhaps pugilist; Chophni, an Israelite: - Hophni."]},{"k":"H2653","v":["חָפַף","chophaph","khaw-faf'","A primitive root (compare H2645, H3182); to cover (in protection): - cover."]},{"k":"H2654","v":["חָפֵץ","châphêts","khaw-fates'","A primitive root; properly to incline to; by implication (literally but rarely) to bend; figuratively to be pleased with, desire: -  X any at all, (have, take) delight, desire, favour, like, move, be (well) pleased, have pleasure, will, would."]},{"k":"H2655","v":["חָפֵץ","châphêts","khaw-fates'","From H2654; pleased with: - delight in, desire, favour, please, have pleasure, whosoever would, willing, wish."]},{"k":"H2656","v":["חֵפֶץ","chêphets","khay'-fets","From H2654; pleasure; hence (abstractly) desire; concretely a valuable thing; hence (by extension) a matter (as something in mind): - acceptable, delight (-some), desire, things desired, matter, pleasant (-ure), purpose, willingly."]},{"k":"H2657","v":["חֶפְצִי בָּהּ","chephtsı̂y bâhh","khef-tsee' baw","From H2656 with suffixes; my delight (is) in her; Cheptsibah, a fanciful name for Palestine: - Hephzi-bah."]},{"k":"H2658","v":["חָפַר","châphar","khaw-far'","A primitive root; properly to pry into; by implication to delve, to explore: - dig, paw, search out, seek."]},{"k":"H2659","v":["חָפֵר","châphêr","khaw-fare'","A primitive root (perhaps rather the same as H2658 through the idea of detection): to blush; figuratively to be ashamed, disappointed; causatively to shame, reproach: - be ashamed, be confounded, be brought to confusion (unto shame), come (be put to) shame, bring reproach."]},{"k":"H2660","v":["חֵפֶר","chêpher","khay'-fer","From H2658 or H2659; a pit or shame; Chepher, a place in Palestine; also the name of three Israelites: - Hepher."]},{"k":"H2661","v":["חַפַרְפֵּרָה    חֲפֹר","chăphôr    chapharpêrâh","khaf-ore', khaf-ar-pay-raw'","From H2658; a hole; only in connection with H6512, which ought rather to be joined as one word (shown as second form; by reduplication from H2658; a burrower, that is, probably a rat): -    + mole."]},{"k":"H2662","v":["חֶפְרִי","chephrı̂y","khef-ree'","Patronymic from H2660; a Chephrite (collectively) or descendant of Chepher: - Hepherites."]},{"k":"H2663","v":["חֲפָרַיִם","chăphârayim","khaf-aw-rah'-yim","Dual of H2660; double pit; Chapharajim, a place in Palestine: - Haphraim."]},{"k":"H2664","v":["חָפַשׂ","châphaś","khaw-fas'","A primitive root; to seek; causatively to conceal oneself (that is, let be sought), or mask: - change, (make) diligent (search), disguise self, hide, search (for, out)."]},{"k":"H2665","v":["חֵפֶשׂ","chêpheś","khay'-fes","From H2664; something covert, that is, a trick: - search."]},{"k":"H2666","v":["חָפַשׁ","châphash","khaw-fash'","A primitive root; to spread loose, figuratively to manumit: - be free."]},{"k":"H2667","v":["חֹפֶשׁ","chôphesh","kho'-fesh","From H2666; something spread loosely, that is, a carpet: - precious."]},{"k":"H2668","v":["חֻפְשָׁה","chûphshâh","khoof-shaw'","From H2666; liberty (from slavery): - freedom."]},{"k":"H2669","v":["חָפְשִׁית    חָפְשׁוּת","chophshûth    chophshı̂yth","khof-shooth', khof-sheeth'","From H2666; prostration by sickness (with H1004, a hospital): - several."]},{"k":"H2670","v":["חָפְשִׁי","chophshı̂y","khof-shee'","From H2666; exempt (from bondage, tax or care): - free, liberty."]},{"k":"H2671","v":["חֵץ","chêts","khayts","From H2686; properly a piercer, that is, an arrow; by implication a wound; figuratively (of God) thunder bolt; (by interchange for H6086) the shaft of a spear: -    + archer, arrow, dart, shaft, staff, wound."]},{"k":"H2672","v":["חָצֵב    חָצַב","châtsab    châtsêb","khaw-tsab', khaw-tsabe'","A primitive root; to cut or carve (wood, stone or other material); by implication to hew, split, square, quarry, engrave: - cut, dig, divide, grave, hew (out, -er), make, mason."]},{"k":"H2673","v":["חָצָה","châtsâh","khaw-tsaw'","A primitive root (compare H2686); to cut or split in two; to halve: - divide, X live out half, reach to the midst, part."]},{"k":"H2674","v":["חָצוֹר","châtsôr","khaw-tsore'","A collective form of H2691; village; Chatsor, the name (thus simply) of two places in Palestine and of one in Arabia: - Hazor."]},{"k":"H2675","v":["חָצוֹר חֲדַתָּה","châtsôr chădattâh","khaw-tsore' khad-at-taw'","From H2674 and a Chaldaizing form of the feminine of H2319 (compare H2323); new Chatsor, a place in Palestine: - Hazor, Hadattah [as if two places]."]},{"k":"H2676","v":["חָצוֹת","châtsôth","khaw-tsoth'","From H2673; the middle (of the night): - mid [-night]."]},{"k":"H2677","v":["חֵצִי","chêtsı̂y","khay-tsee'","From H2673; the half or middle: - half, middle, mid [-night], midst, part, two parts."]},{"k":"H2678","v":["חֵצִי    חִצִּי","chitstsı̂y    chêtsı̂y","khits-tsee', khay-tsee'","Prolonged from H2671; an arrow: - arrow."]},{"k":"H2679","v":["חֲצִי הַמְּנֻחוֹת","chătsı̂y hamnûchôth","khat-tsee' ham-men-oo-khoth'","From H2677 and the plural of H4496, with the article interposed; midst of the resting places; Chatsi ham-Menuchoth, an Israelite: - half of the Manahethites."]},{"k":"H2680","v":["חֲצִי הַמְּנַחְתִּי","chătsı̂y hammenachtı̂y","khat-see' ham-men-akh-tee'","Patronymic from H2679; a Chatsi ham-Menachtite or descendant of Chatsi ham-menuchoth: - half of the Manahethites."]},{"k":"H2681","v":["חָצִיר","châtsı̂yr","khaw-tseer'","A collateral form of H2691; a court or abode: - court."]},{"k":"H2682","v":["חָצִיר","châtsı̂yr","khaw-tseer'","Perhaps originally the same as H2681, from the greenness of a courtyard; grass; also a leek (collectively): - grass, hay, herb, leek."]},{"k":"H2683","v":["חֵצֶן","chêtsen","khay'-tsen","From an unused root meaning to hold firmly; the bosom (as comprised between the arms): - bosom."]},{"k":"H2684","v":["חֹצֶן","chôtsen","kho'-tsen","A collateral form of H2683, and meaning the same: - arm, lap."]},{"k":"H2685","v":["חֲצַף","chătsaph","khats-af'","(Chaldee); a primitive root; properly to shear or cut close; figuratively to be severe: - hasty, be urgent."]},{"k":"H2686","v":["חָצַץ","châtsats","khaw-tsats'","A primitive root (compare H2673); properly to chop into, pierce or sever; hence to curtail, to distribute (into ranks); as denominative from H2671; to shoot an arrow: - archer, X bands, cut off in the midst."]},{"k":"H2687","v":["חָצָץ","châtsâts","khaw-tsawts'","From H2686; properly something cutting; hence gravel (as grit); also (like H2671) an arrow: - arrow, gravel (stone)."]},{"k":"H2688","v":["חַצֲצֹן תָּמָר      חַצְצוֹן תָּמָר","chatstsôn tâmâr    chatsătsôn tâmâr","khats-ets-one' taw-mawr', khats-ats-one'","From H2686 and H8558; division (that is, perhaps row) of (the palm tree; Chatsetson tamar, a place in Palestine: - Hazezon-tamar."]},{"k":"H2689","v":["חֲצֹצְרָה","chătsôtserâh","khats-o-tser-aw'","By reduplication from H2690; a trumpet (from its sundered or quavering note): - trumpet (-er)."]},{"k":"H2690","v":["חֲצֹרֵר    חֲצֹצֵר    חָצַר","châtsar    chătsôtsêr    chătsôrêr","khaw-tsar' khast-o-tsare' khats-o-rare'","A primitive root; properly to surround with a stockade, and thus separate from the open country; but used only in the reduplicated form (the second and third forms; to trumpet, that is, blow on that instrument): - blow, sound, trumpeter."]},{"k":"H2691","v":["חָצֵר","châtsêr","khaw-tsare'","From H2690 in its original sense; a yard (as inclosed by a fence); also a hamlet (as similarly surrounded with walls): - court, tower, village."]},{"k":"H2692","v":["חֲצַר אַדָּר","chătsar 'addâr","khats-ar' ad-dawr'","From H269 and H146: (the) village of Addar; Chatsar Addar, a place in Palestine: - Hazar-addar."]},{"k":"H2693","v":["חֲצַר גַּדָּה","chătsar gaddâh","khats-ar' gad-daw'","From H2691 and a feminine of H1408; (the) village of (female) Fortune; Chatsar Gaddah, a place in Palestine: - Hazar-gaddah."]},{"k":"H2694","v":["חֲצַר הַתִּיכוֹן","chătsar hattı̂ykôn","khats-ar' hat-tee-kone'","From H2691 and H8484 with the article interposed; village of the middle; Chatsar-hat-Tikon, a place in Palestine: - Hazar-hatticon."]},{"k":"H2695","v":["חֶצְרוֹ","chetsrô","khets-ro'","By an orthographical variation for H2696; inclosure; Chetsro, an Israelite: - Hezro, Hezrai."]},{"k":"H2696","v":["חֶצְרוֹן","chetsrôn","khets-rone'","From H2691; courtyard; Chetsron, the name of a place in Palestine; also fo two Israelites: - Hezron."]},{"k":"H2697","v":["חֶצְרוֹנִי","chetsrônı̂y","khets-ro-nee'","Patron from H2696; a Chetsronite or (collectively) descendant of Chetsron: - Hezronites."]},{"k":"H2698","v":["חֲצֵרוֹת","chătsêrôth","khats-ay-roth'","Feminine plural of H2691; yards; Chatseroth, a place in Palestine: - Hazeroth."]},{"k":"H2699","v":["חֲצֵרִים","chătsêrı̂ym","khats-ay-reem'","Plural masculine of H2691; yards; Chatserim, a place in Palestine: - Hazerim."]},{"k":"H2700","v":["חֲצַרְמָוֶת","chătsarmâveth","khats-ar-maw'-veth","From H2691 and H4194; village of death; Chatsarmaveth, a place in Arabia: - Hazarmaveth."]},{"k":"H2701","v":["חֲצַר סוּסָה","chătsar sûsâh","khats-ar' soo-saw'","From H2691 and H5484; village of cavalry; Chatsar Susah, a place in Palestine: - Hazar-susah."]},{"k":"H2702","v":["חֲצַר סוּסִים","chătsar sûsı̂ym","khats-ar' soo-seem'","From H2691 and the plural of H5483; village of horses; Chatsar Susim, a place in Palestine: - Hazar-susim."]},{"k":"H2703","v":["חֲצַר עֵינוֹן","chătsar ‛êynôn","khats-ar' ay-none'","From H2691 and a derivative of H5869; village of springs; Chatsar Enon, a place in Palestine: - Hazar-enon."]},{"k":"H2704","v":["חֲצַר עֵינָן","chătsar ‛êynân","khats-ar' ay-nawn'","From H2691 and the same as H5881; village of springs; Chatsar Enan, a place in Palestine: - Hazar-enan."]},{"k":"H2705","v":["חֲצַר שׁוּעָל","chătsar shû‛âl","khats-ar' shoo-awl'","From H2691 and H7776; village of (the) fox; Chatsar Shual, a place in Palestine: - Hazar-shual."]},{"k":"H2706","v":["חֹק","chôq","khoke","From H2710; an enactment; hence an appointment (of time, space, quantity, labor or usage): - appointed, bound, commandment, convenient, custom, decree (-d), due, law, measure, X necessary, ordinance (-nary), portion, set time, statute, task."]},{"k":"H2707","v":["חָקָה","châqâh","khaw-kaw'","A primitive root; to carve; by implication to delineate; also to intrench: - carved work, portrayed, set a print."]},{"k":"H2708","v":["חֻקָּה","chûqqâh","khook-kaw'","Feminine of H2706, and meaning substantially the same: - appointed, custom, manner, ordinance, site, statute."]},{"k":"H2709","v":["חֲקוּפָא","chăqûphâ'","khah-oo-faw'","From an unused root probably meaning to bend; crooked; Chakupha, one of the Nethinim: - Hakupha."]},{"k":"H2710","v":["חָקַק","châqaq","khaw-kak'","A primitive root; properly to hack, that is, engrave (Jdg_5:14, to be a scribe simply); by implication to enact (laws being cut in stone or metal tablets in primitive times) or (generally) prescribe: - appoint, decree, governor, grave, lawgiver, note, pourtray, print, set."]},{"k":"H2711","v":["חֵקֶק","chêqeq","khay'-kek","From H2710; an enactment, a resolution: - decree, thought."]},{"k":"H2712","v":["חוּקֹק    חֻקֹּק","chûqqôq    chûqôq","khook-koke', khoo-koke'","From H2710; appointed; Chukkok or Chukok, a place in Palestine: - Hukkok, Hukok."]},{"k":"H2713","v":["חָקַר","châqar","khaw-kar'","A primitive root; properly to penetrate; hence to examine intimately: - find out, (make) search (out), seek (out), sound, try."]},{"k":"H2714","v":["חֵקֶר","chêqer","khay'-ker","From H2713; examination, enumeration, deliberation: - finding out, number, [un-] search (-able, -ed out, -ing)."]},{"k":"H2715","v":["חוֹר     חֹר","chôr    chôr","khore, khore","From H2787; properly white or pure (from the cleansing or shining power of fire (compare H2751); hence (figuratively) noble (in rank): - noble."]},{"k":"H2716","v":["חֲרִי    חֶרֶא","chere'    chărı̂y","kheh'-reh, khar-ee'","From an unused (and vulger) root probably meaning to evacuate the bowels; excrement: - dung. Also ` chary, khar-ee."]},{"k":"H2717","v":["חָרֵב    חָרַב","chârab    chârêb","khaw-rab', khaw-rabe'","A primitive root; to parch (through drought), that is, (by analogy) to desolate, destroy, kill: - decay, (be) desolate, destroy (-er), (be) dry (up), slay, X surely, (lay, lie, make) waste."]},{"k":"H2718","v":["חֲרַב","chărab","khar-ab'","(Chaldee); a root corresponding to H2717; to demolish: - destroy."]},{"k":"H2719","v":["חֶרֶב","chereb","kheh'-reb","From H2717; drought; also a cutting instrument (from its destructive effect), as a knife, sword, or other sharp implement: - axe, dagger, knife, mattock, sword, tool."]},{"k":"H2720","v":["חָרֵב","chârêb","khaw-rabe'","From H2717; parched or ruined: - desolate, dry, waste."]},{"k":"H2721","v":["חֹרֶב","chôreb","kho'-reb","A collateral form of H2719; drought or desolation: - desolation, drought, dry, heat, X utterly, waste."]},{"k":"H2722","v":["חֹרֵב","chôrêb","kho-rabe'","From H2717; desolate; Choreb, a (generic) name for the Sinaitic mountains: - Horeb."]},{"k":"H2723","v":["חָרְבָּה","chorbâh","khor-baw'","Feminine of H2721; properly drought, that is, (by implication) a desolation: - decayed place, desolate (place, -tion), destruction, (laid) waste (place)."]},{"k":"H2724","v":["חָרָבָה","chârâbâh","khaw-raw-baw'","Feminine of H2720; a desert: - dry (ground, land)."]},{"k":"H2725","v":["חֲרָבוֹן","chărâbôn","khar-aw-bone'","From H2717; parching heat: - drought."]},{"k":"H2726","v":["חַרְבוֹנָה    חַרְבוֹנָא","charbônâ'    charbônâh","khar-bo-naw', khar-bo-naw'","Of Persian origin; a eunuch of Xerxes: - Harbona, Harbonah."]},{"k":"H2727","v":["חָרַג","chârag","khaw-rag'","A primitive root; properly to leap suddenly, that is, (by implication) to be dismayed: - be afraid."]},{"k":"H2728","v":["חָרְגֹּל","chârgôl","khar-gole'","From H2727; the leaping insect, that is, a locust: - beetle."]},{"k":"H2729","v":["חָרַד","chârad","khaw-rad'","A primitive root; to shudder with terror; hence to fear; also to hasten (with anxiety): - be (make) afraid, be careful, discomfit, fray (away), quake, tremble."]},{"k":"H2730","v":["חָרֵד","chârêd","khaw-rade'","From H2729; fearful; also reverential: - afraid, trembling."]},{"k":"H2731","v":["חֲרָדָה","chărâdâh","khar-aw-daw'","Feminine of H2730; fear, anxiety: - care, X exceedingly, fear, quaking, trembling."]},{"k":"H2732","v":["חֲרָדָה","chărâdâh","khar-aw-daw'","The same as H2731; Charadah, a place in the Desert: - Haradah."]},{"k":"H2733","v":["חֲרֹדִי","chărôdı̂y","khar-o-dee'","Patrial from a derivative of H2729 (compare H5878); a Charodite, or inhabitant of Charod: - Harodite."]},{"k":"H2734","v":["חָרָה","chârâh","khaw-raw'","A primitive root (compare H2787); to glow or grow warm; figuratively (usually) to blaze up, of anger, zeal, jealousy: - be angry, burn, be displeased, X earnestly, fret self, grieve, be (wax) hot, be incensed, kindle, X very, be wroth. See H8474."]},{"k":"H2735","v":["חֹר הַגִּדְגָּד","chôr haggidgâd","khore hag-ghid-gawd'","From H2356 and a collateral (masculine) form of H1412, with the article interposed; hole of the cleft; Chor hag Gidgad, a place in the Desert: - Hor-hagidgad."]},{"k":"H2736","v":["חַרְהֲיָה","charhăyâh","khar-hah-yaw'","From H2734 and H3050; fearing Jah; Charhajah, an Israelite: - Harhaiah."]},{"k":"H2737","v":["חָרוּז","chârûz","khaw-rooz'","From an unused root meaning to perforate; properly pierced, that is, a bead of pearl, gems or jewels (as strung): - chain."]},{"k":"H2738","v":["חָרֻל    חָרוּל","chârûl    chârûl","khaw-rool', khaw-rool'","Apparently passive participle of an unused root probably meaning to be prickly; properly pointed, that is, a bramble or other thorny weed: - nettle."]},{"k":"H2739","v":["חֲרוּמַף","chărûmaph","khar-oo-maf'","From passive participle of H2763 and H639; snubnosed; Charumaph, an Israelite: - Harumaph."]},{"k":"H2740","v":["חָרֹן    חָרוֹן","chârôn    chârôn","khaw-rone', khaw-rone'","From H2734; a burning of anger: - sore displeasure, fierce (-ness), fury, (fierce) wrath (-ful)."]},{"k":"H2741","v":["חֲרוּפִי","chărûphı̂y","khar-oo-fee'","A patrial from (probably) a collateral form of H2756; a Charuphite or inhabitant of Charuph (or Chariph): - Haruphite."]},{"k":"H2742","v":["חָרֻץ    חָרוּץ","chârûts    chârûts","khaw-roots', khaw-roots'","Passive participle of H2782; properly incised or (active) incisive; hence (as noun masculine or feminine) a trench (as dug), gold (as mined), a threshing sledge (having sharp teeth); (figuratively) determination; also eager: - decision, diligent, (fine) gold, pointed things, sharp, threshing instrument, wall."]},{"k":"H2743","v":["חָרוּץ","chârûts","khaw-roots'","The same as H2742; earnest; Charuts, an Israelite: - Haruz."]},{"k":"H2744","v":["חַרְחוּר","charchûr","khar-khoor'","A fuller form of H2746; inflammation; Charchur, one of the Nethinim: - Harhur."]},{"k":"H2745","v":["חַרְחַס","charchas","khar-khas'","From the same as H2775; perhaps shining; Charchas, an Israelite: - Harbas."]},{"k":"H2746","v":["חַרְחֻר","charchûr","khar-khoor'","From H2787; fever (as hot): - extreme burning."]},{"k":"H2747","v":["חֶרֶט","chereṭ","kheh'-ret","From a primitive root meaning to engrave; a chisel or graver; also a style for writing: - graving tool, pen."]},{"k":"H2748","v":["חַרְטֹם","charṭôm","khar-tome'","From the same as H2747; a horoscopist (as drawing magical lines or circles): - magician."]},{"k":"H2749","v":["חַרְטֹם","charṭôm","khar-tome'","(Chaldee); the same as H2748: - magician."]},{"k":"H2750","v":["חֳרִי","chŏrı̂y","khor-ee'","From H2734; a burning (that is, intense) anger: - fierce, X great, heat."]},{"k":"H2751","v":["חֹרִי","chôrı̂y","kho-ree'","From the same as H2353; white bread: - white."]},{"k":"H2752","v":["חֹרִי","chôrı̂y","kho-ree'","From H2356; cave dweller or troglodyte; a Chorite or aboriginal Idumaean: - Horims, Horites."]},{"k":"H2753","v":["חוֹרִי    חֹרִי","chôrı̂y    chôrı̂y","kho-ree', kho-ree'","The same as H2752; Chori, the name of two men: - Hori."]},{"k":"H2754","v":["חָרִט    חָרִיט","chârı̂yṭ    châriṭ","khaw-reet', khaw-reet'","From the same as H2747; properly cut out (or hollow), that is, (by implication) a pocket: - bag, crisping pin."]},{"k":"H2755","v":["חֲרָאיוֹן    חֲרֵי־יוֹנִים","chărêy-yônı̂ym    chărâ'yôn","khar-ay'-yo-neem', khar-aw-yone'","From the plural of H2716 and the plural of H3123; excrements of doves (or perhaps rather the plural of a single word, the second form; of similar or uncertain derivation); probably a kind of vegetable: - doves’ dung."]},{"k":"H2756","v":["חָרִיף","chârı̂yph","khaw-reef'","From H2778; autumnal; the name of two Israelites: - Hariph."]},{"k":"H2757","v":["חָרִץ    חָרִיץ","chârı̂yts    chârits","khaw-reets', khaw-reets'","From H2782; properly incisure or (passive) incised (compare H2742); hence a threshing sledge (with sharp teeth); also a slice (as cut): -    + cheese, harrow."]},{"k":"H2758","v":["חָרִישׁ","chârı̂ysh","khaw-reesh'","From H2790; ploughing or its season: - earing (time), ground."]},{"k":"H2759","v":["חֲרִישִׁי","chărı̂yshı̂y","khar-ee-shee'","From H2790 in the sense of silence; quiet, that is, sultry (as noun feminine the sirocco or hot east wind): - vehement."]},{"k":"H2760","v":["חָרַךְ","chârak","khaw-rak'","A primitive root; to braid (that is, to entangle or snare) or catch (game) in a net: - roast."]},{"k":"H2761","v":["חֲרַךְ","chărak","khar-ak'","(Chaldee); a root probably allied to the equivalent of H2787; to scorch: - singe."]},{"k":"H2762","v":["חֶרֶךְ","cherek","kheh'-rek","From H2760; properly a net, that is, (by analogy) lattice: - lattice."]},{"k":"H2763","v":["חָרַם","châram","khaw-ram'","A primitive root; to seclude; specifically (by a ban) to devote to religious uses (especially destruction); physically and reflexively to be blunt as to the nose: - make accursed, consecrate, (utterly) destroy, devote, forfeit, have a flat nose, utterly (slay, make away)."]},{"k":"H2764","v":["חֶרֶם    חֵרֶם","chêrem    cherem","khay'-rem, kheh'-rem","From H2763; physically (as shutting in) a net (either literally or figuratively); usually a doomed object; abstractly extermination: - (ac-)curse (-d, -d thing), dedicated thing, things which should have been utterly destroyed, (appointed to) utter destruction, devoted (thing), net."]},{"k":"H2765","v":["חֳרֵם","chŏrêm","khor-ame'","From H2763; devoted; Chorem, a place in Palestine: - Horem."]},{"k":"H2766","v":["חָרִם","chârim","khaw-reem'","From H2763; snubnosed; Charim, an Israelite: - Harim."]},{"k":"H2767","v":["חָרְמָה","chormâh","khor-maw'","From H2763; devoted; Chormah, a place in Palestine: - Hormah."]},{"k":"H2768","v":["חֶרְמוֹן","chermôn","kher-mone'","From H2763; abrupt; Chermon, a mount of Palestine: - Hermon."]},{"k":"H2769","v":["חֶרְמוֹנִים","chermônı̂ym","kher-mo-neem'","Plural of H2768; Hermons, that is, its peaks: - the Hermonites."]},{"k":"H2770","v":["חֶרְמֵשׁ","chermêsh","kher-mashe'","From H2763; a sickle (as cutting): - sickle."]},{"k":"H2771","v":["חָרָן","chârân","khaw-rawn'","From H2787; parched; Charan, the name of a man and also of a place: - Haran."]},{"k":"H2772","v":["חֹרֹנִי","chôrônı̂y","kho-ro-nee'","Patrial from H2773; a Choronite or inhabitant of Choronaim: - Horonite."]},{"k":"H2773","v":["חֹרֹנַיִם","chôrônayim","kho-ro-nah'-yim","Dual of a derivative from H2356; double cave town; Choronajim, a place in Moab: - Horonaim."]},{"k":"H2774","v":["חַרְנֶפֶר","charnepher","khar-neh'-fer","Of uncertain derivation; Charnepher, an Israelite: - Harnepher."]},{"k":"H2775","v":["חַרְסָה    חֶרֶס","cheres    charsâh","kheh'-res, khar'-saw","From an unused root meaning to scrape; the itch; also (perhaps from the mediating idea of H2777) the sun: - itch, sun."]},{"k":"H2776","v":["חֶרֶס","cheres","kheh'-res","The same as H2775; shining; Cheres, a mount in Palestine: - Heres."]},{"k":"H2777","v":["חַרְסוּת","charsûth","khar-sooth'","From H2775 (Apparently in the sense of a red tile used for scraping); a potsherd, that is, (by implication) a pottery; the name of a gate at Jerusalem: - east."]},{"k":"H2778","v":["חָרַף","châraph","khaw-raf'","A primitive root; to pull off, that is, (by implication) to expose (as by stripping); specifically to betroth (as if a surrender); figuratively to carp at, that is, defame; denominatively (from H2779) to spend the winter: - betroth, blaspheme, defy, jeopard, rail, reproach, upbraid."]},{"k":"H2779","v":["חֹרֶף","chôreph","kho'-ref","From H2778; properly the crop gathered, that is, (by implication) the autumn (and winter) season; figuratively ripeness of age: - cold, winter ([-house]), youth."]},{"k":"H2780","v":["חָרֵף","chârêph","khaw-rafe'","From H2778; reproachful; an Israelite: - Hareph."]},{"k":"H2781","v":["חֶרְפָּה","cherpâh","kher-paw'","From H2778; contumely, disgrace, the pudenda: - rebuke, reproach (-fully), shame."]},{"k":"H2782","v":["חָרַץ","chârats","khw-rats'","A prim root; properly to point sharply, that is, (literally) to wound; figuratively to be alert, to decide: - bestir self, decide, decree, determine, maim, move."]},{"k":"H2783","v":["חֲרַץ","chărats","khar-ats'","(Chaldee) from a root corresponding to H2782 in the sense of vigor; the loin (as the seat of strength): - loin."]},{"k":"H2784","v":["חַרְצֻבָּה","chartsûbbâh","khar-tsoob-baw'","Of uncertain derivation; a fetter; figuratively a pain: - band."]},{"k":"H2785","v":["חַרְצַן","chartsan","khar-tsan'","From H2782; a sour grape (as sharp in taste): - kernel."]},{"k":"H2786","v":["חָרַק","châraq","khaw-rak","A primitive root; to grate the teeth: - gnash."]},{"k":"H2787","v":["חָרַר","chârar","khaw-rar'","A primitive root; to glow, that is, literally (to melt, burn, dry up) or figuratively (to show or incite passion): - be angry, burn, dry, kindle."]},{"k":"H2788","v":["חָרֵר","chârêr","khaw-rare'","From H2787; arid: - parched place."]},{"k":"H2789","v":["חֶרֶשׂ","chereś","kheh'-res","A collateral form mediating between H2775 and H2791; a piece of pottery: - earth (-en), (pot-) sherd, + stone."]},{"k":"H2790","v":["חָרַשׁ","chârash","khaw-rash'","A primitive root; to scratch, that is, (by implication) to engrave, plough; hence (from the use of tools) to fabricate (of any material); figuratively to devise (in a bad sense); hence (from the idea of secrecy) to be silent, to let alone; hence (by implication) to be deaf (as an accompaniment of dumbness): -    X altogether, cease, conceal, be deaf, devise, ear, graven, imagine, leave off speaking, hold peace, plow (-er, -man), be quiet, rest, practise secretly, keep silence, be silent, speak not a word, be still, hold tongue, worker."]},{"k":"H2791","v":["חֶרֶשׁ","cheresh","kheh'-resh","From H2790; magical craft; also silence: - cunning, secretly."]},{"k":"H2792","v":["חֶרֶשׁ","cheresh","kheh'-resh","The same as H2791; Cheresh, a Levite: - Cheresh, a Levite: - Heresh."]},{"k":"H2793","v":["חֹרֶשׁ","chôresh","kho'-resh","From H2790; a forest (perhaps as furnishing the material for fabric): - bough, forest, shroud, wood."]},{"k":"H2794","v":["חֹרֵשׁ","chôrêsh","kho-rashe'","Active participle of H2790; a fabricator or mechanic: - artificer."]},{"k":"H2795","v":["חֵרֵשׁ","chêrêsh","khay-rashe","From H2790; deaf (whether literal or spiritual): - deaf."]},{"k":"H2796","v":["חָרָשׁ","chârâsh","khaw-rawsh'","From H2790; a fabricator of any material: - artificer, (+) carpenter, craftsman, engraver, maker, + mason, skilful, (+) smith, worker, workman, such as wrought."]},{"k":"H2797","v":["חַרְשָׁא","charshâ'","khar-shaw'","From H2792; magician; Charsha, one of the Nethinim: - Harsha."]},{"k":"H2798","v":["חֲרָשִׁים","chărâshı̂ym","khar-aw-sheem'","Plural of H2796; mechanics, the name of a valley in Jerusalem: - Charashim, craftsmen."]},{"k":"H2799","v":["חֲרֹשֶׁת","chărôsheth","khar-o'-sheth","From H2790; mechanical work: - carving, cutting."]},{"k":"H2800","v":["חֲרֹשֶׁת","chărôsheth","khar-o'-sheth","The same as H2799; Charosheth, a place in Palestine: - Harosheth."]},{"k":"H2801","v":["חָרַת","chârath","khaw-rath'","A primitive root; to engrave: - graven."]},{"k":"H2802","v":["חֶרֶת","chereth","kheh'-reth","From H2801 (but equivalent to H2793); forest; Chereth, a thicket in Palestine: - Hereth."]},{"k":"H2803","v":["חָשַׁב","châshab","khaw-shab'","A primitive root; properly to plait or interpenetrate, that is, (literally) to weave or (generally) to fabricate; figuratively to plot or contrive (usually in a malicious sense); hence (from the mental effort) to think, regard, value, compute: - (make) account (of), conceive, consider, count, cunning (man, work, workman), devise, esteem, find out, forecast, hold, imagine, impute, invent, be like, mean, purpose, reckon (-ing be made), regard, think."]},{"k":"H2804","v":["חֲשַׁב","chăshab","khash-ab'","(Chaldee); corresponding to H2803; to regard: - repute."]},{"k":"H2805","v":["חֵשֶׁב","chêsheb","khay'-sheb","From H2803; a belt or strap (as being interlaced): - curious girdle."]},{"k":"H2806","v":["חַשְׁבַּדָּנָה","chashbaddânâh","khash-bad-daw'-naw","From H2803 and H1777; considerate judge; Chasbaddanah, an Israelite: - Hasbadana."]},{"k":"H2807","v":["חֲשֻׁבָה","chăshûbâh","khash-oo-baw'","From H2803; estimation; Chashubah, an Israelite: - Hashubah."]},{"k":"H2808","v":["חֶשְׁבּוֹן","cheshbôn","khesh-bone'","From H2803; properly contrivance; by implication intelligence: - account, device, reason."]},{"k":"H2809","v":["חֶשְׁבּוֹן","cheshbôn","khesh-bone'","The same as H2808; Cheshbon, a place East of the Jordan: - Heshbon."]},{"k":"H2810","v":["חִשָּׁבוֹן","chishshâbôn","khish-shaw-bone'","From H2803; a contrivance, that is, actual (a warlike machine) or mental (a machination): - engine, invention."]},{"k":"H2811","v":["חֲשַׁבְיָהוּ    חֲשַׁבְיָה","chăshabyâh    chăshabyâhû","khash-ab-yaw', khash-ab-yaw'-hoo","From H2803 and H3050; Jah has regarded; Chashabjah, the name of nine Israelites: - Hashabiah."]},{"k":"H2812","v":["חֲשַׁבְנָה","chăshabnâh","khash-ab-naw'","Feminine of H2808; inventiveness; Chashnah, an Israelite: - Hashabnah."]},{"k":"H2813","v":["חֲשַׁבְנְיָה","chăshabneyâh","khash-ab-neh-yaw'","From H2808 and H3050; thought of Jah; Chashabnejah, the name of two Israelites: - Hashabniah."]},{"k":"H2814","v":["חָשָׁה","châshâh","khaw-shaw'","A primitive root; to hush or keep quiet: - hold peace, keep silence, be silent, (be) still."]},{"k":"H2815","v":["חַשּׁוּב","chashshûb","khash-shoob'","From H2803; intelligent; Chashshub, the name of two or three Israelites: - Hashub, Hasshub."]},{"k":"H2816","v":["חֲשׁוֹךְ","chăshôk","khash-oke'","(Chaldee) from a root corresponding to H2821; the dark: - darkness."]},{"k":"H2817","v":["חֲשֻׂפָא    חֲשׂוּפָא","chăśûphâ'    chăśûphâ'","khas-oo-faw', khas-oo-faw'","From H2834; nakedness; Chasupha, one of the Nethinim: - Hashupha, Hasupha."]},{"k":"H2818","v":["חֲשַׁח","chăshach","khash-akh'","(Chaldee); a collateral root to one corresponding to H2363 in the sense of readiness; to be necessary (from the idea of convenience) or (transitively) to need: - careful, have need of."]},{"k":"H2819","v":["חַשְׁחוּת","chashchûth","khash-khooth'","From a root corresponding to H2818; necessity: - be needful."]},{"k":"H2820","v":["חָשַׂךְ","châśak","khaw-sak'","A prim root; to restrain or (reflexively) refrain; by implication to refuse, spare, preserve; also (by interchange with H2821) to observe: - assuage, X darken, forbear, hinder, hold back, keep (back), punish, refrain, reserve, spare, withhold."]},{"k":"H2821","v":["חָשַׁךְ","châshak","khaw-shak'","A primitive root; to be dark (as withholding light); transitively to darken: - be black, be (make) dark, darken, cause darkness, be dim, hide."]},{"k":"H2822","v":["חֹשֶׁךְ","chôshek","kho-shek'","From H2821; the dark; hence (literally) darkness; figuratively misery, destruction, death, ignorance, sorrow, wickedness: - dark (-ness), night, obscurity."]},{"k":"H2823","v":["חָשֹׁךְ","châshôk","khaw-shoke'","From H2821; dark (figuratively that is, obscure): - mean."]},{"k":"H2824","v":["חֶשְׁכָה","cheshkâh","khesh-kaw'","From H2821; darkness: - dark."]},{"k":"H2825","v":["חֲשֵׁיכָה    חֲשֵׁכָה","chăshêkâh    chăshêykâh","khash-ay-kaw', khash-ay-kaw'","From H2821; darkness; figuratively misery: - darkness."]},{"k":"H2826","v":["חָשַׁל","châshal","khaw-shal'","A primitive root; to make (intransitively be) unsteady, that is, weak: - feeble."]},{"k":"H2827","v":["חֲשַׁל","chăshal","khash-al'","(Chaldee) a root corresponding to H2826; to weaken, that is, crush: - subdue."]},{"k":"H2828","v":["חָשֻׁם","châshûm","khaw-shoom'","From the same as H2831; enriched; Chashum, the name of two or three Israelites: - Hashum."]},{"k":"H2829","v":["חֶשְׁמוֹן","cheshmôn","khesh-mone'","The same as H2831; opulent; Cheshmon, a place in Palestine: - Heshmon."]},{"k":"H2830","v":["חַשְׁמַל","chashmal","khash-mal'","Of uncertain derivation; probably bronze or polished spectrum metal: - amber."]},{"k":"H2831","v":["חַשְׁמַן","chashman","khash-man'","From an unused root (probably meaning firm or capacious in resources); apparently wealthy: - princes."]},{"k":"H2832","v":["חַשְׁמֹנָה","chashmônâh","khash-mo-naw'","Feminine of H2831; fertile; Chasmonah, a place in the Desert: - Hashmonah."]},{"k":"H2833","v":["חֹשֶׁן","chôshen","kho'-shen","From an unused root probably meaning to contain or sparkle; perhaps a pocket (as holding the Urim and Thummim), or rich (as containing gems), used only of the gorget of the highpriest: - breastplate."]},{"k":"H2834","v":["חָשַׂף","châśaph","khaw-saf'","A primitive root; to strip off, that is, generally to make naked (for exertion or in disgrace), to drain away or bail up (a liquid): - make bare, clean, discover, draw out, take, uncover."]},{"k":"H2835","v":["חָשִׂף","châśiph","khaw-seef'","From H2834; properly drawn off, that is, separated; hence a small company (as divided from the rest): - little flock."]},{"k":"H2836","v":["חָשַׁק","châshaq","khaw-shak'","A primitive root; to cling, that is, join (figuratively) to love, delight in; elliptically (or by interchange for H2820) to deliver: - have a delight, (have a) desire, fillet, long, set (in) love."]},{"k":"H2837","v":["חֵשֶׁק","chêsheq","khay'-shek","From H2836; delight: - desire, pleasure."]},{"k":"H2838","v":["חָשׁוּק    חָשֻׁק","châshûq    châshûq","khaw-shook', khaw-shook'","Passive participle of H2836; attached, that is, a fence rail or rod connecting the posts or pillars: - fillet."]},{"k":"H2839","v":["חִשֻּׁק","chishshûq","khish-shook'","From H2836; conjoined, that is, a wheel spoke or rod connecting the hub with the rim: - felloe."]},{"k":"H2840","v":["חִשֻּׁר","chishshûr","khish-shoor'","From an unused root meaning to bind together; combined, that is, the nave or hub of a wheel (as holding the spokes together): - spoke."]},{"k":"H2841","v":["חַשְׁרָה","chashrâh","khash-raw'","From the same as H2840; properly a combination or gathering, that is, of watery clouds: - dark."]},{"k":"H2842","v":["חָשַׁשׁ","châshash","khaw-shash'","By variation for H7179; dry grass: - chaff."]},{"k":"H2843","v":["חֻשָׁתִי","chûshâthı̂y","khoo-shaw-thee'","Patronymic from H2364; a Chushathite or descendant of Chushah: - Hushathite."]},{"k":"H2844","v":["חַת","chath","khath","From H2865; concretely crushed; also afraid; abstractly terror: - broken, dismayed, dread, fear."]},{"k":"H2845","v":["חֵת","chêth","khayth","From H2865; terror; Cheth, an aboriginal Canaanite: - Heth."]},{"k":"H2846","v":["חָתָה","châthâh","khaw-thaw'","A primitive root; to lay hold of; especially to pick up fire: - heap, take (away)."]},{"k":"H2847","v":["חִתָּה","chittâh","khit-taw'","From H2865; fear: - terror."]},{"k":"H2848","v":["חִתּוּל","chittûl","khit-tool'","From H2853; swathed, that is, a bandage: - roller."]},{"k":"H2849","v":["חַתְחַת","chathchath","khath-khath'","From H2844; terror: - fear."]},{"k":"H2850","v":["חִתִּי","chittı̂y","khit-tee'","Patronymic from H2845; a Chittite, or descendant of Cheth: - Hittite, Hittites."]},{"k":"H2851","v":["חִתִּית","chittı̂yth","khit-teeth'","From H2865; fear: - terror."]},{"k":"H2852","v":["חָתַךְ","châthak","khaw-thak'","A primitive root; properly to cut off, that is, (figuratively) to decree: - determine."]},{"k":"H2853","v":["חָתַל","châthal","khaw-thal'","A primitive root; to swathe: -  X at all, swaddle."]},{"k":"H2854","v":["חֲתֻלָּה","chăthûllâh","khath-ool-law'","From H2853; a swathing cloth (figuratively): - swaddling band."]},{"k":"H2855","v":["חֶתְלֹן","chethlôn","kheth-lone'","From H2853; enswathed; Chethlon, a place in Palestine: - Hethlon."]},{"k":"H2856","v":["חָתַם","châtham","khaw-tham'","A primitive root; to close up; especially to seal: - make an end, mark, seal (up), stop."]},{"k":"H2857","v":["חֲתַם","chătham","khath-am'","(Chaldee); a root corresponding to H2856; to seal: - seal."]},{"k":"H2858","v":["חֹתֶמֶת","chôthemeth","kho-the-meth","Feminine active participle of H2856; a seal: - signet."]},{"k":"H2859","v":["חָתַן","châthan","khaw-than'","A primitive root; to give (a daughter) away in marriage; hence (generally) to contract affinity by marriage: - join in affinity, father in law, make marriages, mother in law, son in law."]},{"k":"H2860","v":["חָתָן","châthân","khaw-thawn'","From H2859; a relative by marriage (especially through the bride); figuratively a circumcised child (as a species of religious espousal): - bridegroom, husband, son in law."]},{"k":"H2861","v":["חֲתֻנָּה","chăthûnnâh","khath-oon-naw'","From H2859; a wedding: - espousal."]},{"k":"H2862","v":["חָתַף","châthaph","khaw-thaf'","A primitive root; to clutch: - take away."]},{"k":"H2863","v":["חֶתֶף","chetheph","kheh'-thef","From H2862; properly rapine; figuratively robbery: - prey."]},{"k":"H2864","v":["חָתַר","châthar","khaw-thar'","A primitive root; to force a passage, as by burglary; figuratively with oars: - dig (through), row."]},{"k":"H2865","v":["חָתַת","châthath","khaw-thath'","A primitive root; properly to prostrate; hence to break down, either (literally) by violence, or (figuratively) by confusion and fear: - abolish, affright, be (make) afraid, amaze, beat down, discourage, (cause to) dismay, go down, scare, terrify."]},{"k":"H2866","v":["חֲתַת","chăthath","khath-ath'","From H2865; dismay: - casting down."]},{"k":"H2867","v":["חֲתַת","chăthath","khath-ath'","The same as H2866; Chathath, an Israelite: - Hathath."]},{"k":"H2868","v":["טְאֵב","ṭe'êb","teh-abe'","(Chaldee); a primitive root; to rejoice: - be glad."]},{"k":"H2869","v":["טָב","ṭâb","tawb","(Chaldee); from H2868; the same as H2896; good: - fine, good."]},{"k":"H2870","v":["טָבְאֵל","ṭâb'êl","taw-beh-ale'","From H2895 and H410; pleasing (to) God; Tabeel, the name of a Syrian and of a Persian: - Tabeal, Tabeel."]},{"k":"H2871","v":["טָבוּל","ṭâbûl","taw-bool'","Passive participle of H2881; properly dyed, that is, a turban (probably as of colored stuff): - dyed attire."]},{"k":"H2872","v":["טַבּוּר","ṭabbûr","tab-boor'","From an unused root meaning to pile up; properly accumulated; that is, (by implication) a summit: - middle, midst."]},{"k":"H2873","v":["טָבַח","ṭâbach","taw-bakh'","A primitive root; to slaughter (animals or men): - kill, (make) slaughter, slay."]},{"k":"H2874","v":["טֶבַח","ṭebach","teh'-bakh","From H2873; properly something slaughtered; hence a beast (or meat, as butchered); abstractly butchery (or concretely a place of slaughter): -    X beast, slaughter, X slay, X sore."]},{"k":"H2875","v":["טֶבַח","ṭebach","teh'-bakh","The same as H2874; massacre; Tebach, the name of a Mesopotamian and of an Israelite: - Tebah."]},{"k":"H2876","v":["טַבָּח","ṭabbâch","tab-bawkh'","From H2873; properly a butcher; hence a lifeguardsman (because acting as executioner); also a cook (as usually slaughtering the animal for food): - cook, guard."]},{"k":"H2877","v":["טַבָּח","ṭabbâch","tab-bawkh'","(Chaldee); the same as H2876; a lifeguardsman: - guard."]},{"k":"H2878","v":["טִבְחָה","ṭibchâh","tib-khaw'","Feminine of H2874 and meaning the same: - flesh, slaughter."]},{"k":"H2879","v":["טַבָּחָה","ṭabbâchâh","tab-baw-khaw'","Feminine of H2876; a female cook: - cook."]},{"k":"H2880","v":["טִבְחַת","ṭibchath","tib-khath'","From H2878; slaughter; Tibchath, a place in Syria: - Tibhath."]},{"k":"H2881","v":["טָבַל","ṭâbal","taw-bal'","A primitive root; to dip: - dip, plunge."]},{"k":"H2882","v":["טְבַלְיָהוּ","ṭebalyâhû","teb-al-yaw'-hoo","From H2881 and H3050; Jah has dipped; Tebaljah, an Israelite: - Tebaliah."]},{"k":"H2883","v":["טָבַע","ṭâba‛","taw-bah'","A primitive root; to sink: - drown, fasten, settle, sink."]},{"k":"H2884","v":["טַבָּעוֹת","ṭabbâ‛ôth","tab-baw-othe'","Plural of H2885; rings; Tabbaoth, one of the Nethinim: - Tabbaoth."]},{"k":"H2885","v":["טַבַּעַת","ṭabba‛ath","tab-bah'-ath","From H2883; properly a seal (as sunk into the wax), that is, signet (for sealing); hence (generically) a ring of any kind: - ring."]},{"k":"H2886","v":["טַבְרִמּוֹן","ṭabrimmôn","tab-rim-mone'","From H2895 and H7417; pleasing (to) Rimmon; Tabrimmon, a Syrian: - Tabrimmon."]},{"k":"H2887","v":["טֵבֶת","ṭêbeth","tay'-beth","Probably of foreign derivation; Tebeth, the tenth Hebrew month: - Tebeth."]},{"k":"H2888","v":["טַבַּת","ṭabbath","tab-bath'","Of uncertain derivation; Tabbath, a place East of the Jordan: - Tabbath."]},{"k":"H2889","v":["טָהֹר    טָהוֹר","ṭâhôr    ṭâhôr","haw-hore', taw-hore'","From H2891; pure (in a physical, chemical, ceremonial or moral sense): - clean, fair, pure (-ness)."]},{"k":"H2890","v":["טְהוֹר","ṭehôr","teh-hore'","From H2891; purity: - pureness."]},{"k":"H2891","v":["טָהֵר","ṭâhêr","taw-hare'","A primitive root; properly to be bright; that is, (by implication) to be pure (physically sound, clear, unadulterated; Levitically uncontaminated; morally innocent or holy): - be (make, make self, pronounce) clean, cleanse (self), purge, purify (-ier, self)."]},{"k":"H2892","v":["טֹהַר","ṭôhar","to'-har","From H2891; literally brightness; ceremonially purification: - clearness, glory, purifying."]},{"k":"H2893","v":["טָהֳרָה","ṭohŏrâh","toh-or-aw'","Feminine of H2892; ceremonial purification; moral purity: -  X is cleansed, cleansing, purification (-fying)."]},{"k":"H2894","v":["טוּא","ṭû'","too","A primitive root; to sweep away: - sweep."]},{"k":"H2895","v":["טוֹב","ṭôb","tobe","A primitive root, to be (transitively do or make) good (or well) in the widest sense: - be (do) better, cheer, be (do, seem) good, (make), goodly, X please, (be, do, go, play) well."]},{"k":"H2896","v":["טוֹב","ṭôb","tobe","From H2895; good (as an adjective) in the widest sense; used likewise as a noun, both in the masculine and the feminine, the singular and the plural (good, a good or good thing, a good man or woman; the good, goods or good things, good men or women), also as an adverb (well): - beautiful, best, better, bountiful, cheerful, at ease, X fair (word), (be in) favour, fine, glad, good (deed, -lier, liest, -ly, -ness, -s), graciously, joyful, kindly, kindness, liketh (best), loving, merry, X most, pleasant, + pleaseth, pleasure, precious, prosperity, ready, sweet, wealth, welfare, (be) well ([-favoured])."]},{"k":"H2897","v":["טוֹב","ṭôb","tobe","The same as H2896; good; Tob, a region apparently East of the Jordan: - Tob."]},{"k":"H2898","v":["טוּב","ṭûb","toob","From H2895; good (as a noun), in the widest sense, especially goodness (superlatively concrete, the best), beauty, gladness, welfare: - fair, gladness, good (-ness, thing, -s), joy, go well with."]},{"k":"H2899","v":["טוֹב אֲדֹנִיָּהוּ","ṭôb 'ădônı̂yâhû","tobe ado-nee-yah'-hoo","From H2896 and H138; pleasing (to) Adonijah; Tob-Adonijah, an Israelite: - Tob-adonijah."]},{"k":"H2900","v":["טוֹבִיָּהוּ    טוֹבִיָּה","ṭôbı̂yâh    ṭôbı̂yâhû","to-bee-yaw', to-bee-yaw'-hoo","From H2896 and H3050; goodness of Jehovah; Tobijah, the name of three Israelites and of one Samaritan: - Tobiah, Tobijah."]},{"k":"H2901","v":["טָוָה","ṭâvâh","taw-vaw'","A primitive root; to spin: - spin."]},{"k":"H2902","v":["טוּחַ","ṭûach","too'-akh","A primitive root; to smear, especially with lime: - daub, overlay, plaister, smut."]},{"k":"H2903","v":["טוֹפָפָה","ṭôphâphâh","to-faw-faw'","From an unused root meaning to go around or bind; a fillet for the forehead: - frontlet."]},{"k":"H2904","v":["טוּל","ṭûl","tool","A primitive root; to pitch over or reel; hence (transitively) to cast down or out: - carry away, (utterly) cast (down, forth, out), send out."]},{"k":"H2905","v":["טוּר","ṭûr","toor","From an unused root meaning to range in a regular manner; a row; hence a wall: - row."]},{"k":"H2906","v":["טוּר","ṭûr","toor","(Chaldee); corresponding to H6697; a rock or hill: - mountain."]},{"k":"H2907","v":["טוּשׂ","ṭûś","toos","A primitive root; to pounce as a bird of prey: - haste."]},{"k":"H2908","v":["טְוָת","ṭevâth","tev-awth'","(Chaldee); from a root corresponding to H2901; hunger (as twisting): - fasting."]},{"k":"H2909","v":["טָחָה","ṭâchâh","taw-khaw'","A primitive root; to stretch a bow, as an archer: - [bow-] shot."]},{"k":"H2910","v":["טֻחָה","ṭûchâh","too-khaw'","From H2909 (or H2902) in the sense of overlaying; (in the plural only) the kidneys (as being covered); hence (figuratively) the inmost thought: - inward parts."]},{"k":"H2911","v":["טְחוֹן","ṭechôn","tekh-one'","From H2912; a hand mill; hence a millstone: - to grind."]},{"k":"H2912","v":["טָחַן","ṭâchan","taw-khan'","A primitive root; to grind meal; hence to be a concubine (that being their employment): - grind (-er)."]},{"k":"H2913","v":["טַחֲנָה","ṭachănâh","takh-an-aw'","From H2912; a hand mill; hence (figuratively) chewing: - grinding."]},{"k":"H2914","v":["טְחֹר","ṭechôr","tekh-ore'","From an unused root meaning to burn; a boil or ulcer (from the inflammation), especially a tumor in the anus or pudenda (the piles): - emerod."]},{"k":"H2915","v":["טִיחַ","ṭı̂yach","tee'-akh","From (the equivalent of) H2902; mortar or plaster: - daubing."]},{"k":"H2916","v":["טִיט","ṭı̂yṭ","teet","From an unused root meaning apparently to be sticky (rather perhaps a denominative from H2894, through the idea of dirt to be swept away); mud or clay; figuratively calamity: - clay, dirt, mire."]},{"k":"H2917","v":["טִין","ṭı̂yn","teen","(Chaldee); perhaps by interchange for a word corresponding to H2916; clay: - miry."]},{"k":"H2918","v":["טִירָה","ṭı̂yrâh","tee-raw'","Feminine of (an equivalent to) H2905; a wall; hence a fortress or a hamlet: - (goodly) castle, habitation, palace, row."]},{"k":"H2919","v":["טַל","ṭal","tal","From H2926; dew (as covering vegetation): - dew."]},{"k":"H2920","v":["טַל","ṭal","tal","(Chaldee); the same as H2919: - dew."]},{"k":"H2921","v":["טָלָא","ṭâlâ'","taw-law'","A primitive root; properly to cover with pieces; that is, (by implication) to spot or variegate (as tapestry): - clouted, with divers colours, spotted."]},{"k":"H2922","v":["טְלָא","ṭelâ'","tel-aw'","Apparently from H2921 in the (original) sense of covering (for protection); a lamb (compare H2924): - lamb."]},{"k":"H2923","v":["טְלָאִים","ṭelâ'ı̂ym","tel-aw-eem'","From the plural of H2922; lambs; Telaim, a place in Palestine: - Telaim."]},{"k":"H2924","v":["טָלֶה","ṭâleh","taw-leh'","By variation for H2922; a lamb: - lamb."]},{"k":"H2925","v":["טַלְטֵלָה","ṭalṭêlâh","tal-tay-law'","From H2904; overthrow or rejection: - captivity."]},{"k":"H2926","v":["טָלַל","ṭâlal","taw-lal'","A primitive root; properly to strew over, that is, (by implication) to cover in or plate (with beams): - cover."]},{"k":"H2927","v":["טְלַל","ṭelal","tel-al'","(Chaldee); corresponding to H2926; to cover with shade: - have a shadow."]},{"k":"H2928","v":["טֶלֶם","ṭelem","teh'-lem","From an unused root meaning to break up or treat violently; oppression; Telem, the name of a place in Idumaea, also of a temple doorkeeper: - Telem."]},{"k":"H2929","v":["טַלְמוֹן","ṭalmôn","tal-mone'","From the same as H2728; oppressive; Talmon, a temple doorkeeper: - Talmon."]},{"k":"H2930","v":["טָמֵא","ṭâmê'","taw-may'","A primitive root; to be foul, especially in a ceremonial or moral sense (contaminated): - defile (self), pollute (self), be (make, make self, pronounce) unclean, X utterly."]},{"k":"H2931","v":["טָמֵא","ṭâmê'","taw-may'","From H2930; foul in a religious sense: - defiled, + infamous, polluted (-tion), unclean."]},{"k":"H2932","v":["טֻמְאָה","ṭûm'âh","toom-aw'","From H2980; religious impurity: - filthiness, unclean (-ness)."]},{"k":"H2933","v":["טָמָה","ṭâmâh","taw-maw'","A collateral form of H2930; to be impure in a religious sense: - be defiled, be reputed vile."]},{"k":"H2934","v":["טָמַן","ṭâman","taw-man'","A primitive root; to hide (by covering over): - hide, lay privily, in secret."]},{"k":"H2935","v":["טֶנֶא","ṭene'","teh'-neh","From an unused root probably meaning to weave; a basket (of interlaced osiers): - basket."]},{"k":"H2936","v":["טָנַף","ṭânaph","taw-naf'","A primitive root; to soil: - defile."]},{"k":"H2937","v":["טָעָה","ṭâ‛âh","taw-aw'","A primitive root; to wander; causatively to lead astray: - seduce."]},{"k":"H2938","v":["טָעַם","ṭâ‛am","taw-am'","A primitive root; to taste; figuratively to perceive: -  X but, perceive, taste."]},{"k":"H2939","v":["טְעַם","ṭe‛am","teh-am'","(Chaldee); corresponding to H2938; to taste; causatively to feed: - make to eat, feed."]},{"k":"H2940","v":["טַעַם","ṭa‛am","tah'-am","From H2938; properly a taste, that is, (figuratively) perception; by implication intelligence; transitively a mandate: - advice, behaviour, decree, discretion, judgment, reason, taste, understanding."]},{"k":"H2941","v":["טַעַם","ṭa‛am","tah'-am","(Chaldee); from H2939; properly a taste, that is, (as in H2940) a judicial sentence: - account, X to be commanded, commandment, matter."]},{"k":"H2942","v":["טְעֵם","ṭe‛êm","teh-ame'","(Chaldee); from H2939, and equivalent to H2941; properly flavor; figuratively judgment (both subjectively and objectively); hence account (both subjectively and objectively): -    + chancellor, + command, commandment, decree, + regard, taste, wisdom."]},{"k":"H2943","v":["טָעַן","ṭâ‛an","taw-an'","A primitive root; to load a beast: - lade."]},{"k":"H2944","v":["טָעַן","ṭâ‛an","taw-an'","A primitive root; to stab: - thrust through."]},{"k":"H2945","v":["טַף","ṭaph","taf","From H2952 (perhaps referring to the tripping gait of children); a family (mostly used collectively in the singular): - (little) children (ones), families."]},{"k":"H2946","v":["טָפַח","ṭâphach","taw-fakh'","A primitive root; to flatten out or extend (as a tent); figuratively to nurse a child (as promotive of growth); or perhaps a denominative from H2947, from dandling on the palms: - span, swaddle."]},{"k":"H2947","v":["טֵפַח","ṭêphach","tay'-fakh","From H2946; a spread of the hand, that is, a palm breadth (not “span” of the fingers); architecturally a corbel (as a supporting palm): - coping, hand-breadth."]},{"k":"H2948","v":["טֹפַח","ṭôphach","to'-fakh","From H2946 (the same as H2947): - hand-breadth (broad)."]},{"k":"H2949","v":["טִפֻּח","ṭippûch","tip-pookh'","From H2946; nursing: - span long."]},{"k":"H2950","v":["טָפַל","ṭâphal","taw-fal'","A primitive root; properly to stick on as a patch; figuratively to impute falsely: - forge (-r), sew up."]},{"k":"H2951","v":["טִפְסַר","ṭiphsar","tif-sar'","Of foreign derivation; a military governor: - captain."]},{"k":"H2952","v":["טָפַף","ṭâphaph","taw-faf'","A primitive root; apparently to trip (with short steps) coquettishly: - mince."]},{"k":"H2953","v":["טְפַר","ṭephar","tef-ar'","(Chaldee); from a root corresponding to H6852, and meaning the same as H6856; a finger nail; also a hoof or claw: - nail."]},{"k":"H2954","v":["טָפַשׁ","ṭâphash","taw-fash'","A primitive root; properly apparently to be thick; figuratively to be stupid: - be fat."]},{"k":"H2955","v":["טָפַת","ṭâphath","taw-fath'","Probably from H5197; a dropping (of ointment); Taphath, an Israelitess: - Taphath."]},{"k":"H2956","v":["טָרַד","ṭârad","taw-rad'","A primitive root; to drive on; figuratively to follow close: - continual."]},{"k":"H2957","v":["טְרַד","ṭerad","ter-ad'","(Chaldee); corresponding to H2956; to expel: - drive."]},{"k":"H2958","v":["טְרוֹם","ṭerôm","ter-ome'","A variation of H2962; not yet: - before."]},{"k":"H2959","v":["טָרַח","ṭârach","taw-rakh'","A primitive root; to overburden: - weary."]},{"k":"H2960","v":["טֹרַח","ṭôrach","to'-rakh","From H2959; a burden: - cumbrance, trouble."]},{"k":"H2961","v":["טָרִי","ṭârı̂y","taw-ree'","From an unused root apparently meaning to be moist; properly dripping; hence fresh (that is, recently made such): - new, putrefying."]},{"k":"H2962","v":["טֶרֶם","ṭerem","teh'-rem","From an unused root apparently meaning to interrupt or suspend; properly non-occurrence; used adverbially not yet or before: - before, ere, not yet."]},{"k":"H2963","v":["טָרַף","ṭâraph","taw-raf'","A primitive root; to pluck off or pull to pieces; causatively to supply with food (as in morsels): - catch, X without doubt, feed, ravin, rend in pieces, X surely, tear (in pieces)."]},{"k":"H2964","v":["טֶרֶף","ṭereph","teh'-ref","From H2963; something torn, that is, a fragment, for example a fresh leaf, prey, food: - leaf, meat, prey, spoil."]},{"k":"H2965","v":["טָרָף","ṭârâph","taw-rawf'","From H2963; recently torn off, that is, fresh: - pluckt off."]},{"k":"H2966","v":["טְרֵפָה","ṭerêphâh","ter-ay-faw'","Feminine (collectively) of H2964; prey, that is, flocks devoured by animals: - ravin, (that which was) torn (of beasts, in pieces)."]},{"k":"H2967","v":["טַרְפְּלַי","ṭarpelay","tar-pel-ah'ee","(Chaldee); from a name of foreign derivation; a Tarpelite (collectively) or inhabitant of Tarpel, a place in Assyria: - Tarpelites."]},{"k":"H2968","v":["יָאַב","yâ'ab","yaw-ab'","A primitive root; to desire: - long."]},{"k":"H2969","v":["יָאָה","yâ'âh","yaw-aw'","A primitive root; to be suitable: - appertain."]},{"k":"H2970","v":["יַאֲזַנְיָהוּ    יַאֲזַנְיָה","ya'ăzanyâh    ya'ăzanyâhû","yah-az-an-yaw', yah-az-an-yaw'-hoo","From H238 and H3050; heard of Jah; Jaazanjah, the name of four Israelites: - Jaazaniah. Compare H3153."]},{"k":"H2971","v":["יָאִיר","yâ'ı̂yr","yaw-ere'","From H215; enlightener; Jair, the name of four Israelites: - Jair."]},{"k":"H2972","v":["יָאִרִי","yâ'irı̂y","yaw-ee-ree'","Patronymic from H2971; a Jairite or descendant of Jair: - Jairite."]},{"k":"H2973","v":["יָאַל","yâ'al","yaw-al'","A primitive root; properly to be slack, that is, (figuratively) to be foolish: - dote, be (become, do) foolish (-ly)."]},{"k":"H2974","v":["יָאַל","yâ'al","yaw-al'","A primitive root (probably rather the same as H2973 through the idea of mental weakness); properly to yield, especially assent; hence (positively) to undertake as an act of volition: - assay, begin, be content, please, take upon, X willingly, would."]},{"k":"H2975","v":["יְאֹר","ye'ôr","yeh-ore'","Of Egyptian origin; a channel, for example a fosse, canal, shaft; specifically the Nile, as the one river of Egypt, including its collateral trenches; also the Tigris, as the main river of Assyria: - brook, flood, river, stream."]},{"k":"H2976","v":["יָאַשׁ","yâ'ash","yaw-ash'","A primitive root; to desist, that is, (figuratively) to despond: - (cause to) despair, one that is desperate, be no hope."]},{"k":"H2977","v":["יֹאשִׁיָּהוּ    יֹאשִׁיָּה","yô'shı̂yâh    yô'shı̂yâhû","yo-she-yaw', yo-she-yaw'-hoo","From the same root as H803 and H3050; founded of Jah; Joshijah, the name of two Israelites: - Josiah."]},{"k":"H2978","v":["יְאִתוֹן","ye'ithôn","yeh-ee-thone'","From H857; an entry: - entrance."]},{"k":"H2979","v":["יְאָתְרַי","ye'âtheray","yeh-aw-ther-ah'ee","From the same as H871; stepping; Jeatherai, an Israelite: - Jeaterai."]},{"k":"H2980","v":["יָבַב","yâbab","yaw-bab","A primitive root; to bawl: - cry out."]},{"k":"H2981","v":["יְבוּל","yebûl","yeb-ool'","From H2986; produce, that is, a crop or (figuratively) wealth: - fruit, increase."]},{"k":"H2982","v":["יְבוּס","yebûs","yeb-oos'","From H947; trodden, that is, threshing place; Jebus, the aboriginal name of Jerusalem: - Jebus."]},{"k":"H2983","v":["יְבוּסִי","yebûsı̂y","yeb-oo-see'","Patrial from H2982; a Jebusite or inhabitant of Jebus: - Jebusite(-s)."]},{"k":"H2984","v":["יִבְחַר","yibchar","yib-khar'","From H977; choice; Jibchar, an Israelite: - Ibhar."]},{"k":"H2985","v":["יָבִין","yâbı̂yn","yaw-bene'","From H995; intelligent; Jabin, the name of two Canaanitish kings: - Jabin."]},{"k":"H2986","v":["יָבַל","yâbal","yaw-bal'","A primitive root; properly to flow; causatively to bring (especially with pomp): - bring (forth), carry, lead (forth)."]},{"k":"H2987","v":["יְבַל","yebal","yeb-al'","(Chaldee); corresponding to H2986; to bring: - bring, carry."]},{"k":"H2988","v":["יָבָל","yâbâl","yaw-bawl","From H2986; a stream: - [water-] course, stream."]},{"k":"H2989","v":["יָבָל","yâbâl","yaw-bawl'","The same as H2988; Jabal, an antediluvian: - Jabal."]},{"k":"H2990","v":["יַבֵּל","yabbêl","yab-bale'","From H2986; having running sores: - wen."]},{"k":"H2991","v":["יִבְלְעָם","yible‛âm","yib-leh-awm'","From H1104 and H5971; devouring people; Jibleam, a place in Palestine: - Ibleam."]},{"k":"H2992","v":["יָבַם","yâbam","yaw-bam'","A primitive root of doubtful meaning; used only as a denominative from H2993; to marry a (deceased) brother’s widow: - perform the duty of a husband’s brother, marry."]},{"k":"H2993","v":["יָבָם","yâbâm","yaw-bawm'","From (the original of) H2992; a brother-in-law: - husband’sbrother."]},{"k":"H2994","v":["יְבֵמֶת","yebêmeth","yeb-ay'-meth","Feminine participle of H2992; a sister-in-law: - brother’s wife, sister in law."]},{"k":"H2995","v":["יַבְנְאֵל","yabne'êl","yab-neh-ale'","From H1129 and H410; built of God; Jabneel, the name of two places in Palestine: - Jabneel."]},{"k":"H2996","v":["יַבְנֶה","yabneh","yab-neh'","From H1129; a building; Jabneh, a place in Palestine: - Jabneh."]},{"k":"H2997","v":["יִבְנְיָה","yibneyâh","yib-neh-yaw'","From H1129 and H3050; built of Jah; Jibnejah, an Israelite: - Ibneiah."]},{"k":"H2998","v":["יִבְנִיָּה","yibnı̂yâh","yib-nee-yaw'","From H1129 and H3050; building of Jah; Jibnijah, an Israelite: - Ibnijah."]},{"k":"H2999","v":["יַבֹּק","yabbôq","yab-boke'","Probably from H1238; pouring forth; Jabbok, a river East of the Jordan: - Jabbok."]},{"k":"H3000","v":["יְבֶרֶכְיָהוּ","yeberekyâhû","yeb-eh-rek-yaw'-hoo","From H1288 and H3050; blessed of Jah; Jeberekjah, an Israelite: - Jeberechiah."]},{"k":"H3001","v":["יָבֵשׁ","yâbêsh","yaw-bashe'","A primitive root; to be ashamed, confused or disappointed; also (as failing) to dry up (as water) or wither (as herbage): - be ashamed, clean, be confounded, (make) dry (up), (do) shame (-fully), X utterly, wither (away)."]},{"k":"H3002","v":["יָבֵשׁ","yâbêsh","yaw-bashe'","From H3001; dry: - dried (away), dry."]},{"k":"H3003","v":["יָבֵישׁ    יָבֵשׁ","yâbêsh    yâbêysh","yaw-bashe', yaw-bashe'","The same as H3002.    (Also, often with the addition of H1568, i.e. Jabesh of Gilad); Jabesh,    the name of an Israelite and of a place in Palestine: - Jabesh ([-Gilead])."]},{"k":"H3004","v":["יַבָּשָׂה","yabbâśâh","yab-baw-shaw'","From H3001; dry ground: - dry (ground, land)."]},{"k":"H3005","v":["יִבְשָׂם","yibśâm","yib-sawm'","From the same as H1314; fragrant; Jibsam, an Israelite: - Jibsam."]},{"k":"H3006","v":["יַבֶּשֶׁת","yabbesheth","yab-beh'-sheth","A variation of H3004; dry ground: - dry land."]},{"k":"H3007","v":["יַבֶּשֶׁת","yabbesheth","yab-beh'-sheth","(Chaldee); corresponding to H3006; dry land: - earth."]},{"k":"H3008","v":["יִגְאָל","yig'âl","yig-awl'","From H1350; avenger; Jigal, the name of three Israelite: - Igal, Igeal."]},{"k":"H3009","v":["יָגַב","yâgab","yaw-gab'","A primitive root; to dig or plough: - husbandman."]},{"k":"H3010","v":["יָגֵב","yâgêb","yaw-gabe'","From H3009; a ploughed field: - field."]},{"k":"H3011","v":["יָגְבְּהָה","yogbehâh","yog-beh-haw'","Feminine from H1361; hillock; Jogbehah, a place East of the Jordan: - Jogbehah."]},{"k":"H3012","v":["יִגְדַּלְיָהוּ","yigdalyâhû","yig-dal-yaw'-hoo","From H1431 and H3050; magnified of Jah; Jigdaljah, an Israelite: - Igdaliah."]},{"k":"H3013","v":["יָגָה","yâgâh","yaw-gaw'","A primitive root; to grieve: - afflict, cause grief, grieve, sorrowful, vex."]},{"k":"H3014","v":["יָגָה","yâgâh","yaw-gaw'","A primitive root (probably rather the same as H3013 through the common idea of dissatisfaction); to push away: - be removed."]},{"k":"H3015","v":["יָגוֹן","yâgôn","yaw-gohn'","From H3013; affliction: - grief, sorrow."]},{"k":"H3016","v":["יָגוֹר","yâgôr","yaw-gore'","From H3025; fearful: - afraid, fearest."]},{"k":"H3017","v":["יָגוּר","yâgûr","yaw-goor'","Probably from H1481; a lodging; Jagur, a place in Palestine: - Jagur."]},{"k":"H3018","v":["יְגִיעַ","yegı̂ya‛","yeg-ee'-ah","From H3021; toil; hence a work, produce, property (as the result of labor): - labour, work."]},{"k":"H3019","v":["יָגִיעַ","yâgı̂ya‛","haw-ghee'-ah","From H3021; tired: - weary."]},{"k":"H3020","v":["יָגְלִי","yoglı̂y","yog-lee'","From H1540; exiled; Jogli, an Israelite: - Jogli."]},{"k":"H3021","v":["יָגַע","yâga‛","yaw-gah'","A primitive root; properly to gasp; hence to be exhausted, to tire, to toil: - faint, (make to) labour, (be) weary."]},{"k":"H3022","v":["יָגָע","yâgâ‛","yaw-gaw'","From H3021; earnings (as the product of toil): - that which he laboured for."]},{"k":"H3023","v":["יָגֵעַ","yâgêa‛","yaw-gay'-ah","From H3021; tired; hence (transitively) tiresome: - full of labour, weary."]},{"k":"H3024","v":["יְגִעָה","yegi‛âh","yeg-ee-aw'","Feminine of H3019; fatigue: - weariness."]},{"k":"H3025","v":["יָגֹר","yâgôr","yaw-gore'","A primitive root; to fear: - be afraid, fear."]},{"k":"H3026","v":["יְגַר שַׂהֲדוּתָא","yegar śahădûthâ'","yegar' sah-had-oo-thaw'","(Chaldee); from a word derived from an unused root (meaning to gather) and a derivative of a root corresponding to H7717; heap of the testimony; Jegar-Sahadutha, a cairn East of the Jordan: - Jegar-Sahadutha."]},{"k":"H3027","v":["יָד","yâd","yawd","A primitive word; a hand (the open one (indicating power, means, direction, etc.), in distinction from H3709, the closed one); used (as noun, adverb, etc.) in a great variety of applications, both literally and figuratively, both proximate and remote: -    (+ be) able, X about, + armholes, at, axletree, because of, beside, border, X bounty, + broad, [broken-] handed, X by, charge, coast, + consecrate, + creditor, custody, debt, dominion, X enough, + fellowship, force, X from, hand [-staves, -y work], X he, himself, X in, labour, + large, ledge, [left-] handed, means, X mine, ministry, near, X of, X order, ordinance, X our, parts, pain, power, X presumptuously, service, side, sore, state, stay, draw with strength, stroke, + swear, terror, X thee, X by them, X them-selves, X thine own, X thou, through, X throwing, + thumb, times, X to, X under, X us, X wait on, [way-] side, where, + wide, X with (him, me, you), work, + yield, X your-selves."]},{"k":"H3028","v":["יַד","yad","yad","(Chaldee); corresponding to H3027: - hand, power."]},{"k":"H3029","v":["יְדָא","yedâ'","yed-aw'","(Chaldee); corresponding to H3034; to praise: - (give) thank (-s)."]},{"k":"H3030","v":["יִדְאֲלָה","yid'ălâh","yid-al-aw'","Of uncertain derivation Jidalah, a place in Palestine: - Idalah."]},{"k":"H3031","v":["יִדְבָּשׁ","yidbâsh","yid-bawsh'","From the same as H1706; perhaps honeyed; Jidbash, an Israelite: - Idbash."]},{"k":"H3032","v":["יָדַד","yâdad","yaw-dad'","A primitive root; properly to handle (compare H3034), that is, to throw, for example lots: - cast."]},{"k":"H3033","v":["יְדִדוּת","yedidûth","yed-ee-dooth'","From H3039; properly affection; concretely a darling object: - dearly beloved."]},{"k":"H3034","v":["יָדָה","yâdâh","yaw-daw'","A primitive root; used only as denominative from H3027; literally to use (that is, hold out) the hand; physically to throw (a stone, an arrow) at or away; especially to revere or worship (with extended hands); intensively to bemoan (by wringing the hands): - cast (out), (make) confess (-ion), praise, shoot, (give) thank (-ful, -s, -sgiving)."]},{"k":"H3035","v":["יִדּוֹ","yiddô","yid-do'","From H3034; praised; Jiddo, an Israelite: - Iddo."]},{"k":"H3036","v":["יָדוֹן","yâdôn","yaw-done'","From H3034; thankful; Jadon, an Israelite: - Jadon."]},{"k":"H3037","v":["יַדּוּעַ","yaddûa‛","yad-doo'-ah","From H3045; knowing; Jaddua, the name of two Israelite: - Jaddua."]},{"k":"H3038","v":["יְדִיתוּן    יְדֻתוּן    יְדוּתוּן","yedûthûn    yedûthûn    yedı̂ythûn","(1,2) yed-oo-thoon', (3) yed-ee-thoon'","Probably from H3034; laudatory; Jeduthun, an Israelite: - Jeduthun."]},{"k":"H3039","v":["יְדִיד","yedı̂yd","yed-eed'","From the same as H1730; loved: - amiable, (well-) beloved, loves."]},{"k":"H3040","v":["יְדִידָה","yedı̂ydâh","yed-ee-daw'","Feminine of H3039; beloved; Jedidah, an Israelitess: - Jedidah."]},{"k":"H3041","v":["יְדִידְיָה","yedı̂ydeyâh","yed-ee-deh-yaw'","From H3089 and H3050; beloved of Jah; Jedidejah, a name of Solomon: - Jedidiah."]},{"k":"H3042","v":["יְדָיָה","yedâyâh","yed-aw-yaw'","From H3034 and H3050; praised of Jah; Jedajah, the name of two Israelites: - Jedaiah."]},{"k":"H3043","v":["יְדִיעֲאֵל","yedı̂y‛ă'êl","yed-ee-ah-ale'","From H3045 and H410; knowing God; Jediael, the name of three Israelites: - Jediael."]},{"k":"H3044","v":["יִדְלָף","yidlâph","yid-lawf'","From H1811; tearful; Jidlaph, a Mesopotamian: - Jidlaph."]},{"k":"H3045","v":["יָדַע","yâda‛","yaw-dah'","A primitive root; to know (properly to ascertain by seeing); used in a great variety of senses, figuratively, literally, euphemistically and inferentially (including observation, care, recognition; and causatively instruction, designation, punishment, etc.): - acknowledge, acquaintance (-ted with), advise, answer, appoint, assuredly, be aware, [un-] awares, can [-not], certainly, for a certainty, comprehend, consider, X could they, cunning, declare, be diligent, (can, cause to) discern, discover, endued with, familiar friend, famous, feel, can have, be [ig-] norant, instruct, kinsfolk, kinsman, (cause to, let, make) know, (come to give, have, take) knowledge, have [knowledge], (be, make, make to be, make self) known, + be learned, + lie by man, mark, perceive, privy to, X prognosticator, regard, have respect, skilful, shew, can (man of) skill, be sure, of a surety, teach, (can) tell, understand, have [understanding], X will be, wist, wit, wot."]},{"k":"H3046","v":["יְדַע","yeda‛","yed-ah'","(Chaldee); corresponding to H3045: - certify, know, make known, teach."]},{"k":"H3047","v":["יָדָע","yâdâ‛","yaw-daw'","From H3045; knowing; Jada, an Israelite: - Jada."]},{"k":"H3048","v":["יְדַעְיָה","yeda‛yâh","yed-ah-yaw'","From H3045 and H3050; Jah has known; Jedajah, the name of two Israelites: - Jedaiah."]},{"k":"H3049","v":["יִדְּעֹנִי","yidde‛ônı̂y","yid-deh-o-nee'","From H3045; properly a knowing one; specifically a conjurer; (by implication) a ghost: - wizard."]},{"k":"H3050","v":["יָהּ","yâhh","yaw","Contracted for H3068, and meaning the same; Jah, the sacred name: - Jah, the Lord, most vehement. Cp. names in “-iah,” “-jah.”"]},{"k":"H3051","v":["יָהַב","yâhab","yaw-hab'","A primitive root; to give (whether literally or figuratively); generally to put; imperatively (reflexively) come: - ascribe, bring, come on, give, go, set, take."]},{"k":"H3052","v":["יְהַב","yehab","yeh-hab'","(Chaldee); corresponding to H3051: - deliver, give, lay, + prolong, pay, yield."]},{"k":"H3053","v":["יְהָב","yehâb","yeh-hawb'","From H3051; properly what is given (by Providence), that is, a lot: - burden."]},{"k":"H3054","v":["יָהַד","yâhad","yaw-had'","Denominative from a form corresponding to H3061; to Judaize, that is, become Jewish: - become Jews."]},{"k":"H3055","v":["יְהֻד","yehûd","yeh-hood'","A briefer form of one corresponding to H3061; Jehud, a place in Palestine: - Jehud."]},{"k":"H3056","v":["יֶהְדַי","yehday","yeh-dah'ee","Perhaps from a form corresponding to H3061; Judaistic; Jehdai, an Israelite: - Jehdai."]},{"k":"H3057","v":["יְהֻדִיָּה","yehûdı̂yâh","yeh-hoo-dee-yaw'","Feminine of H3064; Jehudijah, a Jewess: - Jehudijah."]},{"k":"H3058","v":["יֵהוּא","yêhû'","yay-hoo'","From H3068 and H1931; Jehovah (is) He; Jehu, the name of five Israelites: - Jehu."]},{"k":"H3059","v":["יְהוֹאָחָז","yehô'âchâz","yeh-ho-aw-khawz'","From H3068 and H270; Jehovah seized; Jehoachaz, the name of three Israelites: - Jehoahaz. Compare H3099."]},{"k":"H3060","v":["יְהוֹאָשׁ","yehô'âsh","yeh-ho-awsh'","From H3068 and (perhaps) H784; Jehovah fired; Jehoash, the name of two Israelite kings: - Jehoash Compare H3101."]},{"k":"H3061","v":["יְהוּד","yehûd","yeh-hood'","(Chaldee); contracted from a form. corresponding to H3063; properly Judah, hence Judaea: - Jewry, Judah, Judea."]},{"k":"H3062","v":["יְהוּדָאִי","yehûdâ'ı̂y","yeh-hoo-daw-ee'","(Chaldee); patrial from H3061; a Jehudaite (or Judaite), that is, Jew: - Jew."]},{"k":"H3063","v":["יְהוּדָה","yehûdâh","yeh-hoo-daw'","From H3034; celebrated; Jehudah (or Judah), the name of five Israelites; also of the tribe descended from the first, and of its territory: - Judah."]},{"k":"H3064","v":["יְהוּדִי","yehûdı̂y","yeh-hoo-dee'","Patronymic from H3063; a Jehudite (that is, Judaite or Jew), or descendant of Jehudah (that is, Judah): - Jew."]},{"k":"H3065","v":["יְהוּדִי","yehûdı̂y","yeh-hoo-dee'","The same as H3064; Jehudi, an Israelite: - Jehudi."]},{"k":"H3066","v":["יְהוּדִית","yehûdı̂yth","yeh-hoo-deeth'","Feminine of H3064; the Jewish (used adverbially) language: - in the Jews’ language."]},{"k":"H3067","v":["יְהוּדִית","yehûdı̂yth","yeh-hoo-deeth'","The same as H3066; Jewess; Jehudith, a Canaanitess: - Judith."]},{"k":"H3068","v":["יְהֹוָה","yehôvâh","yeh-ho-vaw'","From H1961; (the) self Existent or eternal; Jehovah, Jewish national name of God: - Jehovah, the Lord. Compare H3050, H3069."]},{"k":"H3069","v":["יְהֹוִה","yehôvih","yeh-ho-vee'","A variation of H3068 (used after H136, and pronounced by Jews as H430, in order to prevent the repetition of the same sound, since they elsewhere pronounce H3068 as H136): - God."]},{"k":"H3070","v":["יְהֹוָה יִרְאֶה","yehôvâh yir'eh","yeh-ho-vaw' yir-eh'","From H3068 and H7200; Jehovah will see (to it); Jehovah-Jireh, a symbolical name for Mt. Moriah: - Jehovah-jireh."]},{"k":"H3071","v":["יְהֹוָה נִסִּי","yehôvâh nissı̂y","yeh-ho-vaw' nis-see'","From H3068 and H5251 with pronominal suffix.; Jehovah (is) my banner; Jehovah-Nissi, a symbolical name of an altar in the Desert: - Jehovah-nissi."]},{"k":"H3072","v":["יְהֹוָה צִדְקֵנוּ","yehôvâh tsidqênû","yeh-ho-vaw' tsid-kay'-noo","From H3068 and H6664 with pronominal suffix.; Jehovah (is) our right; Jehovah-Tsidkenu, a symbolical epithet of the Messiah and of Jerusalem: - the Lord our righteousness."]},{"k":"H3073","v":["יְהֹוָה שָׁלוֹם","yehôvâh shâlôm","yeh-ho-vaw' shaw-lome'","From H3068 and H7965; Jehovah (is) peace; Jehovah-Shalom, a symbolical name of an altar in Palestine: - Jehovah-shalom."]},{"k":"H3074","v":["יְהֹוָה שָׁמָּה","yehôvâh shâmmâh","yeh-ho-vaw' shawm'-maw","From H3068 and H8038 with directive enclitic; Jehovah (is) thither; Jehovah-Shammah, a symbolical title of Jerusalem: - Jehovah-shammah."]},{"k":"H3075","v":["יְהוֹזָבָד","yehôzâbâd","yeh-ho-zaw-bawd'","From H3068 and H2064; Jehovah-endowed; Jehozabad, the name of three Israelites: - Jehozabad. Compare H3107."]},{"k":"H3076","v":["יְהוֹחָנָן","yehôchânân","yeh-ho-khaw-nawn'","From H3068 and H2603; Jehovah-favored; Jehochanan, the name of eight Israelites: - Jehohanan, Johanan. Compare H3110."]},{"k":"H3077","v":["יְהוֹיָדָע","yehôyâdâ‛","yeh-ho-yaw-daw'","From H3068 and H3045; Jehovah-known; Jehojada, the name of three Israelites: - Jehoiada. Compare H3111."]},{"k":"H3078","v":["יְהוֹיָכִין","yehôyâkı̂yn","yeh-ho-yaw-keen'","From H3068 and H3559; Jehovah will establish; Jehojakin, a Jewish king: - Jehoiachin. Compare H3112."]},{"k":"H3079","v":["יְהוֹיָקִים","yehôyâqı̂ym","yeh-ho-yaw-keem'","From H3068 abbreviated and H6965; Jehovah will raise; Jehojakim, a Jewish king: - Jehoiakim. Compare H3113."]},{"k":"H3080","v":["יְהוֹיָרִיב","yehôyârı̂yb","yeh-ho-yaw-reeb'","From H3068 and H7378; Jehovah will contend; Jehojarib, the name of two Israelites: - Jehoiarib. Compare H3114."]},{"k":"H3081","v":["יְהוּכַל","yehûkal","yeh-hoo-kal'","From H3201; potent; Jehukal, an Israelite: - Jehucal. Compare H3116."]},{"k":"H3082","v":["יְהוֹנָדָב","yehônâdâb","yeh-ho-naw-dawb'","From H3068 and H5068; Jehovah-largessed; Jehonadab, the name of an Israelite and of an Arab: - Jehonadab, Jonadab. Compare H3122."]},{"k":"H3083","v":["יְהוֹנָתָן","yehônâthân","yeh-ho-naw-thawn'","From H3068 and H5414; Jehovah-given; Jehonathan, the name of four Israelites: - Jonathan. Compare H3129."]},{"k":"H3084","v":["יְהוֹסֵף","yehôsêph","yeh-ho-safe'","A fuller form of H3130; Jehoseph (that is, Joseph), a son of Jacob: - Joseph."]},{"k":"H3085","v":["יְהוֹעַדָּה","yehô‛addâh","yeh-ho-ad-daw'","From H3068 and H5710; Jehovah-adorned; Jehoaddah, an Israelite: - Jehoada."]},{"k":"H3086","v":["יְהוֹעַדָּן    יְהוֹעַדִּין","yehô‛addı̂yn    yehô‛addân","yeh-ho-ad-deen', yeh-ho-ad-dawn'","From H3068 and H5727; Jehovah-pleased; Jehoaddin or Jehoaddan, an Israelitess: - Jehoaddan."]},{"k":"H3087","v":["יְהוֹצָדָק","yehôtsâdâq","yeh-ho-tsaw-dawk'","From H3068 and H6663; Jehovah-righted; Jehotsadak, an Israelite: - Jehozadek, Josedech. Compare H3136."]},{"k":"H3088","v":["יְהוֹרָם","yehôrâm","yeh-ho-rawm'","From H3068 and H7311; Jehovah-raised; Jehoram, the name of a Syrian and of three Israelites: - Jehoram, Joram. Compare H3141."]},{"k":"H3089","v":["יְהוֹשֶׁבַע","yehôsheba‛","yeh-ho-sheh'-bah","From H3068 and H7650; Jehovah-sworn; Jehosheba, an Israelitess: - Jehosheba. Compare H3090."]},{"k":"H3090","v":["יְהוֹשַׁבְעַת","yehôshab‛ath","yeh-ho-shab-ath'","A form of H3089; Jehoshabath, an Israelitess: - Jehoshabeath."]},{"k":"H3091","v":["יְהוֹשֻׁעַ    יְהוֹשׁוּעַ","yehôshûa‛    yehôshûa‛","yeh-ho-shoo'-ah, yeh-ho-shoo'-ah","From H3068 and H3467; Jehovah-saved; Jehoshua (that is, Joshua), the Jewish leader: - Jehoshua, Jehoshuah, Joshua. Compare H1954, H3442."]},{"k":"H3092","v":["יְהוֹשָׁפָט","yehôshâphâṭ","yeh-ho-shaw-fawt'","From H3068 and H8199; Jehovah-judged; Jehoshaphat, the name of six Israelites; also of a valley near Jerusalem : - Jehoshaphat. Compare H3146."]},{"k":"H3093","v":["יָהִיר","yâhı̂yr","yaw-here'","Probably from the same as H2022; elated; hence arrogant: - haughty, proud."]},{"k":"H3094","v":["יְהַלֶּלְאֵל","yehallel'êl","yeh-hal-lel-ale'","From H1984 and H410; praising God; Jehallelel, the name of two Israelites: - Jehaleleel, Jehalelel."]},{"k":"H3095","v":["יַהֲלֹם","yahălôm","yah-hal-ome'","From H1986 (in the sense of hardness); a precious stone, probably onyx: - diamond."]},{"k":"H3096","v":["יַהְצָה    יַהְצָה    יַהַץ","yahats    yahtsâh    yahtsâh","yah'-hats, yah'-tsaw, yah-tsaw'","From an unused root meaning to stamp; perhaps threshing floor; Jahats or Jahtsah, a place East of the Jordan: - Jahaz, Jahazah, Jahzah."]},{"k":"H3097","v":["יוֹאָב","yô'âb","yo-awb'","From H3068 and H1; Jehovah-fathered; Joab, the name of three Israelites: - Joab."]},{"k":"H3098","v":["יוֹאָח","yô'âch","yo-awkh'","From H3068 and H251; Jehovah-brothered; Joach, the name of four Israelites: - Joah."]},{"k":"H3099","v":["יוֹאָחָז","yô'âchâz","yo-aw-khawz'","A form of H3059; Joachaz, the name of two Israelites: - Jehoahaz, Joahaz."]},{"k":"H3100","v":["יוֹאֵל","yô'êl","yo-ale'","From H3068 and H410; Jehovah (is his) God; Joel, the name of twelve Israelites: - Joel."]},{"k":"H3101","v":["יֹאָשׁ    יוֹאָשׁ","yô'âsh    yô'âsh","yo-awsh', yo-awsh'","A form of H3060; Joash, the name of six Israelites: - Joash."]},{"k":"H3102","v":["יוֹב","yôb","yobe","Perhaps a form of H3103, but more probably by erroneous transcription for H3437; Job, an Israelite: - Job."]},{"k":"H3103","v":["יוֹבָב","yôbâb","yo-bawb'","From H2980; howler; Jobab, the name of two Israelites and of three foreigners: - Jobab."]},{"k":"H3104","v":["יֹבֵל    יוֹבֵל","yôbêl    yôbêl","yo-bale', yo-bale'","Apparently from H2986; the blast of a horn (from its continuous sound); specifically the signal of the silver trumpets; hence the instrument itself and the festival thus introduced: - jubile, ram’s horn, trumpet."]},{"k":"H3105","v":["יוּבַל","yûbal","yoo-bal'","From H2986; a stream: - river."]},{"k":"H3106","v":["יוּבָל","yûbâl","yoo-bawl'","From H2986; stream; Jubal, an antediluvian: - Jubal."]},{"k":"H3107","v":["יוֹזָבָד","yôzâbâd","yo-zaw-bawd'","A form of H3075; Jozabad, the name of ten Israelites: - Josabad, Jozabad."]},{"k":"H3108","v":["יוֹזָכָר","yôzâkâr","yo-zaw-kawr'","From H3068 and H2142; Jehovah-remembered; Jozacar, an Israelite: - Jozacar."]},{"k":"H3109","v":["יוֹחָא","yôchâ'","yo-khaw'","Probably from H3068 and a variation of H2421; Jehovah-revived; Jocha, the name of two Israelites: - Joha."]},{"k":"H3110","v":["יוֹחָנָן","yôchânân","yo-khaw-nawn'","A form of H3076; Jochanan, the name of nine Israelites: - Johanan."]},{"k":"H3111","v":["יוֹיָדָע","yôyâdâ‛","yo-yaw-daw'","A form of H3077; Jojada, the name of two Israelites: - Jehoiada, Joiada."]},{"k":"H3112","v":["יוֹיָכִין","yôyâkı̂yn","yo-yaw-keen'","A form of H3078; Jojakin, an Israelite king: - Jehoiachin."]},{"k":"H3113","v":["יוֹיָקִים","yôyâqı̂ym","yo-yaw-keem'","A form of H3079; Jojakim, an Israelite: - Joiakim. Compare H3137."]},{"k":"H3114","v":["יוֹיָרִיב","yôyârı̂yb","yo-yaw-reeb'","A form of H3080; Jojarib, the name of four Israelites: - Joiarib."]},{"k":"H3115","v":["יוֹכֶבֶד","yôkebed","yo-keh'-bed","From H3068 contracted and H3513; Jehovah-gloried; Jokebed, the mother of Moses: - Jochebed."]},{"k":"H3116","v":["יוּכַל","yûkal","yoo-kal'","A form of H3081; Jukal, an Israelite: - Jucal."]},{"k":"H3117","v":["יוֹם","yôm","yome","From an unused root meaning to be hot; a day (as the warm hours), whether literally (from sunrise to sunset, or from one sunset to the next), or figuratively (a space of time defined by an associated term), (often used adverbially): - age, + always, + chronicles, continually (-ance), daily, ([birth-], each, to) day, (now a, two) days (agone), + elder, X end, + evening, + (for) ever (-lasting, -more), X full, life, as (so) long as (. . . live), (even) now, + old, + outlived, + perpetually, presently, + remaineth, X required, season, X since, space, then, (process of) time, + as at other times, + in trouble, weather, (as) when, (a, the, within a) while (that), X whole (+ age), (full) year (-ly), + younger."]},{"k":"H3118","v":["יוֹם","yôm","yome","(Chaldee); corresponding to H3117; a day: - day (by day), time."]},{"k":"H3119","v":["יוֹמָם","yômâm","yo-mawm'","From H3117; daily: - daily, (by, in the) day (-time)."]},{"k":"H3120","v":["יָוָן","yâvân","yaw-vawn'","Probably from the same as H3196; effervescing (that is, hot and active); Javan, the name of a son of Joktan, and of the race (Ionians, that is, Greeks) descended from him, with their territory; also of a place in Arabia: - Javan."]},{"k":"H3121","v":["יָוֵן","yâvên","yaw-ven'","From the same as H3196; properly dregs (as effervescing); hence mud: - mire, miry."]},{"k":"H3122","v":["יוֹנָדָב","yônâdâb","yo-naw-dawb'","A form of H3082; Jonadab, the name of an Israelite and of a Rechabite: - Jonadab."]},{"k":"H3123","v":["יוֹנָה","yônâh","yo-naw'","Probably from the same as H3196; a dove (apparently from the warmth of their mating): - dove, pigeon."]},{"k":"H3124","v":["יוֹנָה","yônâh","yo-naw'","The same as H3123; Jonah, an Israelite: - Jonah."]},{"k":"H3125","v":["יְוָנִי","yevânı̂y","yev-aw-nee'","Patronymic from H3121; a Jevanite, or descendant of Javan: - Grecian."]},{"k":"H3126","v":["יוֹנֵק","yônêq","yo-nake'","Active participle of H3243; a sucker; hence a twig (of a tree felled and sprouting): - tender plant."]},{"k":"H3127","v":["יוֹנֶקֶת","yôneqeth","yo-neh'-keth","Feminine of H3126; a sprout: - (tender) branch, young twig."]},{"k":"H3128","v":["יוֹנַת אֵלֶם רְחֹקִים","yônath 'êlem rechôqı̂ym","yo-nath' ay'-lem rekh-o-keem'","From H3123 and H482 and the plural of H7350; dove of (the) silence (that is, dumb Israel) of (that is, among) distances (that is, strangers); the title of a ditty (used for a name of its melody): - Jonath-elem-rechokim."]},{"k":"H3129","v":["יוֹנָתָן","yônâthân","yo-naw-thawn'","A form of H3083; Jonathan, the name of ten Israelites: - Jonathan."]},{"k":"H3130","v":["יוֹסֵף","yôsêph","yo-safe'","Future of H3254; let him add (or perhaps simply active participle adding); Joseph, the name of seven Israelites: - Joseph. Compare H3084."]},{"k":"H3131","v":["יוֹסִפְיָה","yôsiphyâh","yo-sif-yaw'","From active participle of H3254 and H3050; Jah (is) adding; Josiphjah, an Israelite: - Josiphiah."]},{"k":"H3132","v":["יוֹעֵאלָה","yô‛ê'lâh","yo-ay-law'","Perhaps feminine active participle of H3276; furthermore; Joelah, an Israelite: - Joelah."]},{"k":"H3133","v":["יוֹעֵד","yô‛êd","yo-ade'","Apparently active participle of H3259; appointer; Joed, an Israelite: - Joed."]},{"k":"H3134","v":["יוֹעֶזֶר","yô‛ezer","ho-eh'-zer","From H3068 and H5828; Jehovah (is his) help; Joezer, an Israelite: - Joezer."]},{"k":"H3135","v":["יוֹעָשׁ","yô‛âsh","yo-awsh'","From H3068 and H5789; Jehovah-hastened; Joash, the name of two Israelites: - Joash."]},{"k":"H3136","v":["יוֹצָדָק","yôtsâdâq","yo-tsaw-dawk'","A form of H3087; Jotsadak, an Israelite: - Jozadak."]},{"k":"H3137","v":["יוֹקִים","yôqı̂ym","yo-keem'","A form of H3113; Jokim, an Israelite: - Jokim."]},{"k":"H3138","v":["יוֹרֶה","yôreh","yo-reh'","Active participle of H3384; sprinkling; hence a sprinkling (or autumnal showers): - first rain, former [rain]."]},{"k":"H3139","v":["יוֹרָה","yôrâh","yo-raw'","From H3384; rainy; Jorah, an Israelite: - Jorah."]},{"k":"H3140","v":["יוֹרַי","yôray","yo-rah'-ee","From H3384; rainy; Jorai, an Israelite: - Jorai."]},{"k":"H3141","v":["יוֹרָם","yôrâm","yo-rawm'","A form of H3088; Joram, the name of three Israelites and one Syrian: - Joram."]},{"k":"H3142","v":["יוּשַׁב חֶסֶד","yûshab chesed","yoo-shab' kheh'-sed","From H7725 and H2617; kindness will be returned; Jushab-Chesed, an Israelites: - Jushab-heshed."]},{"k":"H3143","v":["יוֹשִׁבְיָה","yôshibyâh","yo-shib-yaw'","From H3427 and H3050; Jehovah will cause to dwell; Joshibjah, an Israelite: - Josibiah."]},{"k":"H3144","v":["יוֹשָׁה","yôshâh","yo-shaw'","Probably a form of H3145; Joshah, an Israelite: - Joshah."]},{"k":"H3145","v":["יוֹשַׁוְיָה","yôshavyâh","yo-shav-yaw'","From H3068 and H7737; Jehovah-set; Joshavjah, an Israelite: - Joshaviah. Compare H3144."]},{"k":"H3146","v":["יוֹשָׁפָט","yôshâphâṭ","yo-shaw-fawt'","A form of H3092; Joshaphat, an Israelite: - Joshaphat."]},{"k":"H3147","v":["יוֹתָם","yôthâm","yo-thawm'","From H3068 and H8535; Jehovah (is) perfect; Jotham, the name of three Israelites: - Jotham."]},{"k":"H3148","v":["יוֹתֵר","yôthêr","yo-thare'","Active participle of H8498; properly redundant; hence over and above, as adjective, noun, adverb or conjugation: - better, more (-over), over, profit."]},{"k":"H3149","v":["יְזַוְאֵל","yezav'êl","yez-av-ale'","From an unused root (meaning to sprinkle) and H410; sprinkled of God; Jezavel, an Israelite: - Jeziel [from the margin]."]},{"k":"H3150","v":["יִזִּיָּה","yizzı̂yâh","yiz-zee-yaw'","From the same as the first part of H3149 and H3050; sprinkled of Jah; Jizzijah, an Israelite: - Jeziah."]},{"k":"H3151","v":["יָזִיז","yâzı̂yz","yaw-zeez'","From the same as H2123; he will make prominent; Jaziz, an Israelite: - Jaziz."]},{"k":"H3152","v":["יִזְלִיאָה","yizlı̂y'âh","yiz-lee-aw'","Perhaps from an unused root (meaning to draw up); he will draw out; Jizliah, an Israelite: - Jezliah."]},{"k":"H3153","v":["יְזַנְיָהוּ    יְזַנְיָה","yezanyâh    yezanyâhû","yez-an-yaw', yez-an-yaw'-hoo","Probably for H2970; Jezanjah, an Israelite: - Jezaniah."]},{"k":"H3154","v":["יֶזַע","yeza‛","yeh'-zah","From an unused root mean to ooze; sweat, that is, (by implication) a sweating dress: - any thing that causeth sweat."]},{"k":"H3155","v":["יִזְרָח","yizrâch","yiz-rawkh'","A variation for H250; a Jizrach (that is, Ezrachite or Zarchite) or descendant of Zerach: - Izrahite."]},{"k":"H3156","v":["יִזְרַחְיָה","yizrachyâh","yiz-rakh-yaw'","From H2224 and H3050; Jah will shine; Jizrachjah, the name of two Israelites: - Izrahiah, Jezrahiah."]},{"k":"H3157","v":["יִזְרְעֵאל","yizre‛ê'l","yiz-reh-ale'","From H2232 and H410; God will sow; Jizreel, the name of two places in Palestine and of two Israelites: - Jezreel."]},{"k":"H3158","v":["יִזְרְעֵאלִי","yizre‛ê'lı̂y","yiz-reh-ay-lee'","Patronymic from H3157; a Jizreelite or native of Jizreel: - Jezreelite."]},{"k":"H3159","v":["יִזְרְעֵאלִית","yizre‛ê'lı̂yth","yiz-reh-ay-leeth'","Feminine of H3158; a Jezreelitess: - Jezreelitess."]},{"k":"H3160","v":["יְחֻבָּה","yechûbbâh","yekh-oob-baw'","From H2247; hidden; Jechubbah, an Israelite: - Jehubbah."]},{"k":"H3161","v":["יָחַד","yâchad","yaw-khad'","A primitive root; to be (or become) one: - join, unite."]},{"k":"H3162","v":["יַחַד","yachad","yakh'-ad","From H3161; properly a unit, that is, (adverbially) unitedly: - alike, at all (once), both, likewise, only, (al-) together, withal."]},{"k":"H3163","v":["יַחְדוֹ","yachdô","yakh-doe'","From H3162 with pronominal suffix; his unity, that is, (adverbially) together; Jachdo, an Israelite: - Jahdo."]},{"k":"H3164","v":["יַחְדִּיאֵל","yachdı̂y'êl","yakh-dee-ale'","From H3162 and H410; unity of God; Jachdiel, an Israelite: - Jahdiel."]},{"k":"H3165","v":["יֶחְדִּיָּהוּ","yechdı̂yâhû","yekh-dee-yaw'-hoo","From H3162 and H3050; unity of Jah; Jechdijah, the name of two Israelites: - Jehdeiah."]},{"k":"H3166","v":["יַחֲזִיאֵל","yachăzı̂y'êl","yakh-az-ee-ale'","From H2372 and H410; beheld of God; Jachaziel, the name of five Israelites: - Jahaziel, Jahziel."]},{"k":"H3167","v":["יַחְזְיָה","yachzeyâh","yakh-zeh-yaw'","From H2371 and H3050; Jah will behold; Jachzejah, an Israelite: - Jahaziah."]},{"k":"H3168","v":["יְחֶזְקֵאל","yechezqê'l","yekh-ez-kale'","From H2388 and H410; God will strengthen; Jechezkel, the name of two Israelites: - Ezekiel, Jehezekel."]},{"k":"H3169","v":["יְחִזְקִיָּהוּ    יְחִזְקִיָּה","yechizqı̂yâh    yechizqı̂yâhû","yekh-iz-kee-yaw', yekh-iz-kee-yaw'-hoo","From H3388 and H3050; strengthened of Jah; Jechizkijah, the name of five Israelites: - Hezekiah, Jehizkiah. Compare H2396."]},{"k":"H3170","v":["יַחְזֵרָה","yachzêrâh","yakh-zay-raw'","From the same as H2386; perhaps protection; Jachzerah, an Israelite: - Jahzerah."]},{"k":"H3171","v":["יְחַוְאֵל    יְחִיאֵל","yechı̂y'êl    yechav'êl","yekh-ee-ale', yekh-av-ale'","From H2421 and H410; God will live; Jechiel (or Jechavel), the name of eight Israelites: - Jehiel."]},{"k":"H3172","v":["יְחִיאֵלִי","yechı̂y'êlı̂y","yekh-ee-ay-lee'","Patronymic from H3171; a Jechielite or descendant of Jechiel: - Jehieli."]},{"k":"H3173","v":["יָחִיד","yâchı̂yd","yaw-kheed'","From H3161; properly united, that is, sole; by implication beloved; also lonely; (feminine) the life (as not to be replace): - darling, desolate, only (child, son), solitary."]},{"k":"H3174","v":["יְחִיָּה","yechı̂yâh","yekh-ee-yaw'","From H2421 and H3050; Jah will live; Jechijah, an Israelite: - Jehiah."]},{"k":"H3175","v":["יָחִיל","yâchı̂yl","yaw-kheel'","From H3176; expectant: - should hope."]},{"k":"H3176","v":["יָחַל","yâchal","yaw-chal'","A primitive root; to wait; by implication to be patient, hope: - (cause to, have, make to) hope, be pained, stay, tarry, trust, wait."]},{"k":"H3177","v":["יַחְלְאֵל","yachle'êl","yakh-leh-ale'","From H3176 and H410; expectant of God; Jachleel, an Israelite: - Jahleel."]},{"k":"H3178","v":["יַחְלְאֵלִי","yachle'êlı̂y","yakh-leh-ay-lee'","Patronymic from H3177; a Jachleelite or descendant of Jachleel: - Jahleelites."]},{"k":"H3179","v":["יָחַם","yâcham","yaw-kham'","A primitive root; Probably to be hot; figuratively to conceive: - get heat, be hot, conceive, be warm."]},{"k":"H3180","v":["יַחְמוּר","yachmûr","yakh-moor'","From H2560; a kind of deer (from the color; compare H2548): - fallow deer."]},{"k":"H3181","v":["יַחְמַי","yachmay","yakh-mah'-ee","Probably from H3179; hot; Jachmai, an Israelite: - Jahmai."]},{"k":"H3182","v":["יָחֵף","yâchêph","yaw-khafe'","From an unused root meaning to take off the shoes; unsandalled: - barefoot, being unshod."]},{"k":"H3183","v":["יַחְצְאֵל","yachtse'êl","yakh-tseh-ale'","From H2673 and H410; God will allot; Jachtseel, an Israelite: - Jahzeel. Compare H3185."]},{"k":"H3184","v":["יַחְצְאֵלִי","yachtse'êlı̂y","yakh-tseh-ay-lee'","Patronymic from H3183; a Jachtseelite (collectively) or descendant of Jachtseel: - Jahzeelites."]},{"k":"H3185","v":["יַחְצִיאֵל","yachtsı̂y'êl","yakh-tsee-ale'","From H2673 and H410; allotted of God; Jachtsiel, an Israelite: - Jahziel. Compare H3183."]},{"k":"H3186","v":["יָחַר","yâchar","yaw-khar'","A primitive root; to delay: - tarry longer."]},{"k":"H3187","v":["יָחַשׂ","yâchaś","yaw-khas'","A primitive root; to sprout; used only as denominative from H3188; to enroll by pedigree: - (number after, number throughout the) genealogy (to be reckoned), be reckoned by genealogies."]},{"k":"H3188","v":["יַחַשׂ","yachaś","yakh'-as","From H3187; a pedigree or family list (as growing spontaneously): - genealogy."]},{"k":"H3189","v":["יַחַת","yachath","yakh'-ath","From H3161; unity; Jachath, the name of four Israelites: - Jahath."]},{"k":"H3190","v":["יָטַב","yâṭab","yaw-tab'","A primitive root; to be (causatively) make well, literally (sound, beautiful) or figuratively (happy, successful, right): - be accepted, amend, use aright, benefit, be (make) better, seem best, make cheerful, be comely, + be content, diligent (-ly), dress, earnestly, find favour, give, be glad, do (be, make) good ([-ness]), be (make) merry, please (+ well), shew more [kindness], skilfully, X very small, surely, make sweet, thoroughly, tire, trim, very, be (can, deal, entreat, go, have) well [said, seen ]."]},{"k":"H3191","v":["יְטַב","yeṭab","yet-ab'","(Chaldee); corresponding to H3190: - seem good."]},{"k":"H3192","v":["יָטְבָה","yoṭbâh","yot-baw'","From H3190; pleasantness; Jotbah, a place in Palestine: - Jotbah."]},{"k":"H3193","v":["יָטְבָתָה","yoṭbâthâh","yot-baw'-thaw","From H3192; Jotbathah, a place in the Desert: - Jotbath, Jotbathah."]},{"k":"H3194","v":["יוּטָה    יֻטָּה","yûṭṭâh    yûṭâh","yoot-taw', yoo-taw'","From H5186; extended; Juttah (or Jutah), a place in Palestine: - Juttah."]},{"k":"H3195","v":["יְטוּר","yeṭûr","yet-oor'","Probably from the same as H2905; encircled (that is, inclosed); Jetur, a son of Ishmael: - Jetur."]},{"k":"H3196","v":["יַיִן","yayin","yah'-yin","From an unused root meaning to effervesce; wine (as fermented); by implication intoxication: - banqueting, wine, wine [-bibber]."]},{"k":"H3197","v":["יַךְ","yak","yak","By erroneous transcription for H3027; a hand or side: - [way-] side."]},{"k":"H3198","v":["יָכַח","yâkach","yaw-kakh'","A primitive root; to be right (that is, correct); reciprocally to argue; causatively to decide, justify or convict: - appoint, argue, chasten, convince, correct (-ion), daysman, dispute, judge, maintain, plead, reason (together), rebuke, reprove (-r), surely, in any wise."]},{"k":"H3199","v":["יָכִין","yâkı̂yn","yaw-keen'","From H3559; he (or it) will establish; Jakin, the name of three Israelites and of a temple pillar: - Jachin."]},{"k":"H3200","v":["יָכִינִי","yâkı̂ynı̂y","yaw-kee-nee'","Patronymic from H3199; a Jakinite (collectively) or descendant of Jakin: - Jachinites."]},{"k":"H3201","v":["יָכוֹל    יָכֹל","yâkôl    yâkôl","yaw-kole', yaw-kole'","A primitive root; to be able, literally (can, could) or morally (may, might): - be able, any at all (ways), attain, can (away with, [-not]), could, endure, might, overcome, have power, prevail, still, suffer."]},{"k":"H3202","v":["יְכִיל    יְכֵל","yekêl    yekı̂yl","yek-ale', yek-eel'","(Chaldee); corresponding to H3201: - be able, can, couldest, prevail."]},{"k":"H3203","v":["יְכִילְיָה    יְכָלְיָהוּ    יְכָלְיָה","yekolyâh    yekolyâhû    yekı̂yleyâh","yek-ol-yaw'(-hoo), yek-ee-leh-yaw'","From H3201 and H3050; Jah will enable; Jekoljah or Jekiljah, an Israelitess: - Jecholiah, Jecoliah."]},{"k":"H3204","v":["יְכוֹנְיָה    יְכָנְיָהוּ    יְכָנְיָה","yekonyâh    yekonyâhû    yekôneyâh","yek-on-yaw'(-hoo), yek-o-neh-yaw'","From H3559 and H3050; Jah will establish; Jekonjah, a Jewish king: - Jeconiah. Compare H3659."]},{"k":"H3205","v":["יָלַד","yâlad","yaw-lad'","A primitive root; to bear young; causatively to beget; medically to act as midwife; specifically to show lineage: - bear, beget, birth ([-day]), born, (make to) bring forth (children, young), bring up, calve, child, come, be delivered (of a child), time of delivery, gender, hatch, labour, (do the office of a) midwife, declare pedigrees, be the son of, (woman in, woman that) travail (-eth, -ing woman)."]},{"k":"H3206","v":["יֶלֶד","yeled","yeh'-led","From H3205; something born, that is, a lad or offspring: - boy, child, fruit, son, young man (one)."]},{"k":"H3207","v":["יַלְדָּה","yaldâh","yal-daw'","Feminine of H3206; a lass: - damsel, girl."]},{"k":"H3208","v":["יַלְדוּת","yaldûth","yal-dooth'","Abstract from H3206; boyhood (or girlhood): - childhood, youth."]},{"k":"H3209","v":["יִלּוֹד","yillôd","yil-lode'","Passive from H3205; born: - born."]},{"k":"H3210","v":["יָלוֹן","yâlôn","yaw-lone'","From H3885; lodging; Jalon, an Israelite: - Jalon."]},{"k":"H3211","v":["יָלִיד","yâlı̂yd","yaw-leed'","From H3205; born: - ([home-]) born, child, son."]},{"k":"H3212","v":["יָלַךְ","yâlak","yaw-lak'","A primitive root (compare H1980); to walk (literally or figuratively); causatively to carry (in various senses): -    X again, away, bear, bring, carry (away), come (away), depart, flow, + follow (-ing), get (away, hence, him), (cause to, make) go (away, -ing, -ne, one’s way, out), grow, lead (forth), let down, march, prosper, + pursue, cause to run, spread, take away ([-journey]), vanish, (cause to) walk (-ing), wax, X be weak."]},{"k":"H3213","v":["יָלַל","yâlal","yaw-lal'","A primitive root; to howl (with a wailing tone) or yell (with a boisterous one): - (make to) howl, be howling."]},{"k":"H3214","v":["יְלֵל","yelêl","yel-ale'","From H3213; a howl: - howling."]},{"k":"H3215","v":["יְלָלָה","yelâlâh","yel-aw-law'","Feminine of H3214; a howling: - howling."]},{"k":"H3216","v":["יָלַע","yâla‛","yaw-lah'","A primitive root; to blurt or utter inconsiderately: - devour."]},{"k":"H3217","v":["יַלֶּפֶת","yallepheth","yal-leh'-feth","From an unused root apparently meaning to stick or scrape; scurf or tetter: - scabbed."]},{"k":"H3218","v":["יֶלֶק","yeleq","yeh'-lek","From an unused root meaning to lick up; a devourer; specifically the young locust: - cankerworm, caterpillar."]},{"k":"H3219","v":["יַלְקוּט","yalqûṭ","yal-koot'","From H3950; a travelling pouch (as if for gleanings): - scrip."]},{"k":"H3220","v":["יָם","yâm","yawm","From an unused root meaning to roar; a sea (as breaking in noisy surf) or large body of water; specifically (with the article) the Mediterranean; sometimes a large river, or an artificial basin; locally, the west, or (rarely) the south: - sea (X -faring man, [-shore]), south, west (-ern, side, -ward)."]},{"k":"H3221","v":["יָם","yâm","yawm","(Chaldee); corresponding to H3220: - sea."]},{"k":"H3222","v":["יֵם","yêm","yame","From the same as H3117; a warm spring: - mule."]},{"k":"H3223","v":["יְמוּאֵל","yemû'êl","yem-oo-ale'","From H3117 and H410; day of God; Jemuel, an Israelite: - Jemuel."]},{"k":"H3224","v":["יְמִימָה","yemı̂ymâh","yem-ee-maw'","Perhaps from the same as H3117; properly warm, that is, affectionate; hence dove (compare H3123); Jemimah, one of Job’s daughters: - Jemimah."]},{"k":"H3225","v":["יָמִין","yâmı̂yn","yaw-meen'","From H3231; the right hand or side (leg, eye) of a person or other object (as the stronger and more dexterous); locally, the south: -  + left-handed, right (hand, side), south."]},{"k":"H3226","v":["יָמִין","yâmı̂yn","yaw-meen'","The same as H3225; Jamin, the name of three Israelites: - Jamin. See also H1144."]},{"k":"H3227","v":["יְמִינִי","yemı̂ynı̂y","yem-ee-nee'","For H3225; right: - (on the) right (hand)."]},{"k":"H3228","v":["יְמִינִי","yemı̂ynı̂y","yem-ee-nee'","Patronymic from H3226; a Jeminite (collectively) or descendant of Jamin: - Jaminites. See also H1145."]},{"k":"H3229","v":["יִמְלָה    יִמְלָא","yimlâ'    yimlâh","yeem-law', yim-law'","From H4390; full; Jimla or Jimlah, an Israelite: - Imla, Imlah."]},{"k":"H3230","v":["יַמְלֵךְ","yamlêk","yam-lake'","From H4427; he will make king; Jamlek, an Israelite: - Jamlech."]},{"k":"H3231","v":["יָמַן","yâman","yaw-man'","A primitive root; to be (physically) right (that is, firm); but used only as denominative from H3225 and transitively, to be right handed or take the right hand side: - go (turn) to (on, use) the right hand."]},{"k":"H3232","v":["יִמְנָה","yimnâh","yim-naw'","From H3231; prosperity (as betokened by the right hand); Jimnah, the name of two Israelites; also (with the article) of the posterity of one of them: - Imna, Imnah, Jimnah, Jimnites."]},{"k":"H3233","v":["יְמָנִי","yemânı̂y","yem-aw-nee'","From H3231; right (that is, at the right hand): - (on the) right (hand)."]},{"k":"H3234","v":["יִמְנָע","yimnâ‛","yim-naw'","From H4513; he will restrain; Jimna, an Israelite: - Imna."]},{"k":"H3235","v":["יָמַר","yâmar","yaw-mar'","A primitive root; to exchange; by implication to change places: - boast selves, change."]},{"k":"H3236","v":["יִמְרָה","yimrâh","yim-raw'","Probably from H3235; interchange; Jimrah, an Israelite: - Imrah."]},{"k":"H3237","v":["יָמַשׁ","yâmash","yaw-mash'","A primitive root; to touch: - feel."]},{"k":"H3238","v":["יָנָה","yânâh","yaw-naw'","A primitive root; to rage or be violent; by implication to suppress, to maltreat: - destroy, (thrust out by) oppress (-ing, -ion, -or), proud, vex, do violence."]},{"k":"H3239","v":["יָנוֹחָה    יָנוֹחַ","yânôach    yânôchâh","yaw-no'-akh, yaw-no'-khaw","From H3240; quiet; Janoach or Janochah, a place in Palestine: - Janoah, Janohah."]},{"k":"H3240","v":["יָנַח","yânach","yaw-nakh'","A primitive root; to deposit; by implication to allow to stay. (The Hiphil forms with the dagesh are here referred to, in accordance with the older grammarians; but if any distinction of the kind is to be made, these should rather be referred to H5117, and the others here): - bestow, cast down, lay (down, up), leave (off), let alone (remain), pacify, place, put, set (down), suffer, withdraw, withhold. (The Hiphil forms with the dagesh are here referred to, in accordance with the older grammarians; but if any distinction of the kind is to be made, these should rather be referred to H5117, and the others here.)"]},{"k":"H3241","v":["יָנִים","yânı̂ym","yaw-neem'","From H5123; asleep; Janim, a place in Palestine: - Janum [from the margin]."]},{"k":"H3242","v":["יְנִיקָה","yenı̂yqâh","yen-ee-kaw'","From H3243; a sucker or sapling: - young twig."]},{"k":"H3243","v":["יָנַק","yânaq","yaw-nak'","A primitive root; to suck; causatively to give milk: - milch, nurse (-ing mother), give, make to) suck (-ing child, -ling)."]},{"k":"H3244","v":["יַנְשׁוֹף    יַנְשׁוּף","yanshûph    yanshôph","yan-shoof', yan-shofe'","Apparently from H4398; an unclean (aquatic) bird; probably the heron (perhaps from its blowing cry, or because the night heron is meant (compare H5399)): - (great) owl."]},{"k":"H3245","v":["יָסַד","yâsad","yaw-sad'","A primitive root; to set (literally or figuratively); intensively to found; reflexively to sit down together, that is, settle, consult: - appoint, take counsel, establish, (lay the, lay for a) found (-ation), instruct, lay, ordain, set, X sure."]},{"k":"H3246","v":["יְסֻד","yesûd","yes-ood'","From H3245; a foundation (figuratively that is, beginning): -    X began."]},{"k":"H3247","v":["יְסוֹד","yesôd","yes-ode'","From H3245; a foundation (literally or figuratively): - bottom, foundation, repairing."]},{"k":"H3248","v":["יְסוּדָה","yesûdâh","yes-oo-daw'","Feminine of H3246; a foundation: - foundation."]},{"k":"H3249","v":["יָסוּר","yâsûr","yaw-soor'","From H5493; departing: - they that depart."]},{"k":"H3250","v":["יִסּוֹר","yissôr","yis-sore'","From H3256; a reprover: - instruct."]},{"k":"H3251","v":["יָסַךְ","yâsak","yaw-sak'","A primitive root; to pour (intransitively): - be poured."]},{"k":"H3252","v":["יִסְכָּה","yiskâh","yis-kaw'","From an unused root meaning to watch; observant; Jiskah, sister of Lot: - Iscah."]},{"k":"H3253","v":["יִסְמַכְיָהוּ","yismakyâhû","yis-mak-yaw-hoo'","From H5564 and H3050; Jah will sustain; Jismakjah, an Israelite: - Ismachiah."]},{"k":"H3254","v":["יָסַף","yâsaph","yaw-saf'","A primitive root; to add or augment (often adverbially to continue to do a thing): -    add, X again, X any more, X cease, X come more, + conceive again, continue, exceed, X further, X gather together, get more, give moreover, X henceforth, increase (more and more), join, X longer (bring, do, make, much, put), X (the, much, yet) more (and more), proceed (further), prolong, put, be [strong-] er, X yet, yield."]},{"k":"H3255","v":["יְסַף","yesaph","yes-af'","(Chaldee); corresponding to H3254: - add."]},{"k":"H3256","v":["יָסַר","yâsar","yaw-sar'","A primitive root; to chastise, literally (with blows) or figuratively (with words); hence to instruct: - bind, chasten, chastise, correct, instruct, punish, reform, reprove, sore, teach."]},{"k":"H3257","v":["יָע","yâ‛","yaw","From H3261; a shovel: - shovel."]},{"k":"H3258","v":["יַעְבֵּץ","ya‛bêts","yah-bates'","From an unused root probably meaning to grieve; sorrowful; Jabets, the name of an Israelite, and also of a place in Palestine: - Jabez."]},{"k":"H3259","v":["יָעַד","yâ‛ad","yaw-ad'","A primitive root; to fix upon (by agreement or appointment); by implication to meet (at a stated time), to summon (to trial), to direct (in a certain quarter or position), to engage (for marriage): - agree, (make an) appoint (-ment, a time), assemble (selves), betroth, gather (selves, together), meet (together), set (a time)."]},{"k":"H3260","v":["יֶעְדִּי","ye‛dı̂y","yed-ee'","From H3259; appointed; Jedi, an Israelite: - Iddo [from the margin] See H3035."]},{"k":"H3261","v":["יָעָה","yâ‛âh","yaw-aw'","A primitive root; apparently to brush aside: - sweep away."]},{"k":"H3262","v":["יְעוּאֵל","ye‛û'êl","yeh-oo-ale'","From H3261 and H410; carried away of God; Jeuel, the name of four Israelites: - Jehiel, Jeiel, Jeuel. Comp H3273."]},{"k":"H3263","v":["יְעוּץ","ye‛ûts","yeh-oots'","From H5779; counsellor; Jeuts, an Israelite: - Jeuz."]},{"k":"H3264","v":["יָעוֹר","yâ‛ôr","yaw-ore'","A variation of H3298; a forest: - wood."]},{"k":"H3265","v":["יָעוּר","yâ‛ûr","yaw-oor'","Apparently passive participle of the same as H3293; wooded; Jaur, an Israelite: - Jair [from the margin]."]},{"k":"H3266","v":["יְעוּשׁ","ye‛ûsh","yeh-oosh'","From H5789; hasty; Jeush, the name of an Edomite and of four Israelites: - Jehush, Jeush. Compare H3274."]},{"k":"H3267","v":["יָעַז","yâ‛az","yaw-az'","A primitive root; to be bold or obstinate: - fierce."]},{"k":"H3268","v":["יַעֲזִיאֵל","ya‛ăzı̂y'êl","yah-az-ee-ale'","From H3267 and H410; emboldened of God; Jaziel, an Israelite: - Jaaziel."]},{"k":"H3269","v":["יַעֲזִיָּהוּ","ya‛ăzı̂yâhû","yah-az-ee-yaw'-hoo","From H3267 and H3050; emboldened of Jah; Jaaziah, an Israelite: - Jaaziah."]},{"k":"H3270","v":["יַעְזֵר    יַעֲזֵיר","ya‛ăzêyr    ya‛zêr","yah-az-ayr', yah-zare'","From H5826; helpful; Jaazer or Jazer, a place East of the Jordan: - Jaazer, Jazer."]},{"k":"H3271","v":["יָעַט","yâ‛aṭ","yaw-at'","A primitive root; to clothe: - cover."]},{"k":"H3272","v":["יְעַט","ye‛aṭ","yeh-at'","(Chaldee); corresponding to to H3289; to counsel; reflexively to consult: - counsellor, consult together."]},{"k":"H3273","v":["יְעִיאֵל","ye‛ı̂y'êl","yeh-ee-ale'","From H3261 and H410; carried away of God; Jeiel, the name of six Israelites: - Jeiel, Jehiel. Compare H3262."]},{"k":"H3274","v":["יְעִישׁ","ye‛ı̂ysh","yeh-eesh'","From H5789; hasty; Jeish, the name of an Edomite and of an Israelite: - Jeush [from the margin]. Compare H3266."]},{"k":"H3275","v":["יַעְכָּן","ya‛kân","yah-kawn'","From the same as H5912; troublesome; Jakan, an Israelite: - Jachan."]},{"k":"H3276","v":["יַעַל","ya‛al","yaw-al'","A primitive root; properly to ascend; figuratively to be valuable (objective useful, subjective benefited): -    X at all, set forward, can do good, (be, have) profit (-able)."]},{"k":"H3277","v":["יָעֵל","yâ‛êl","yaw-ale'","From H3276; an ibex (as climbing): - wild goat."]},{"k":"H3278","v":["יָעֵל","yâ‛êl","yaw-ale'","The same as H3277; Jael, a Canaanite: - Jael."]},{"k":"H3279","v":["יַעֲלָה    יַעֲלָא","ya‛ălâ'    ya‛ălâh","yah-al-aw', yah-al-aw'","The same as H3280 or direct from H3276; Jaala or Jaalah, one of the Nethinim: - Jaala, Jaalah."]},{"k":"H3280","v":["יַעֲלָה","ya‛ălâh","yah-al-aw'","Feminine of H3277: - roe."]},{"k":"H3281","v":["יַעְלָם","ya‛lâm","yah-lawm'","From H5956; occult; Jalam, an Edomite: - Jalam."]},{"k":"H3282","v":["יַעַן","ya‛an","yah'-an","From an unused root meaning to pay attention; properly heed; by implication purpose (sake or account); used adverbially to indicate the reason or cause: - because (that), forasmuch (+ as), seeing then, + that, + whereas, + why."]},{"k":"H3283","v":["יָעֵן","yâ‛ên","yaw-ane'","From the same as H3282; the ostrich (probably from its answering cry): - ostrich."]},{"k":"H3284","v":["יַעֲנָה","ya‛ănâh","yah-an-aw'","Feminine of H3283, and meaning the same: -    + owl."]},{"k":"H3285","v":["יַעֲנַי","ya‛ănay","yah-an-ah'ee","From the same as H3283; responsive; Jaanai, an Israelite: - Jaanai."]},{"k":"H3286","v":["יָעַף","yâ‛aph","yaw-af'","A primitive root; to tire (as if from wearisome flight): - faint, cause to fly, (be) weary (self)."]},{"k":"H3287","v":["יָעֵף","yâ‛êph","yaw-afe'","From H3286; fatigued; figuratively exhausted: - faint, weary."]},{"k":"H3288","v":["יְעָף","ye‛âph","yeh-awf'","From H3286; fatigue (adverbially utterly exhausted): - swiftly."]},{"k":"H3289","v":["יָעַץ","yâ‛ats","yaw-ats'","A primitive root; to advise; reflexively to deliberate or resolve: - advertise, take advice, advise (well), consult, (give take) counsel (-lor), determine, devise, guide, purpose."]},{"k":"H3290","v":["יַעֲקֹב","ya‛ăqôb","yah-ak-obe'","From H6117; heel catcher (that is, supplanter); Jaakob, the Israelitish patriarch: - Jacob."]},{"k":"H3291","v":["יַעֲקֹבָה","ya‛ăqôbâh","yah-ak-o'-baw","From H3290; Jaakobah, an Israelite: - Jaakobah."]},{"k":"H3292","v":["יַעֲקָן","ya‛ăqân","yah-ak-awn'","From the same as H6130; Jaakan, an Idumaean: - Jaakan. Compare H1142."]},{"k":"H3293","v":["יַעַר","ya‛ar","yah'-ar","From an unused root probably meaning to thicken with verdure; a copse of bushes; hence a forest; hence honey in the comb (as hived in trees): - [honey-] comb, forest, wood."]},{"k":"H3294","v":["יַעְרָה","ya‛râh","yah-raw'","A form of H3295; Jarah, an Israelite: - Jarah."]},{"k":"H3295","v":["יַעֲרָה","ya‛ărâh","yah-ar-aw'","Feminine of H3293, and meaning the same: - [honey-] comb, forest."]},{"k":"H3296","v":["יַעֲרֵי אֹרְגִים","ya‛ărêy 'ôregı̂ym","yah-ar-ay' o-reg-eem'","From the plural of H3293 and the masculine plural participle active of H707; woods of weavers; Jaare-Oregim, an Israelite: - Jaare-oregim."]},{"k":"H3297","v":["יְעָרִים","ye‛ârı̂ym","yeh-aw-reem'","Plural of H3293; forests; Jearim, a place in Palestine: - Jearim. Compare H7157."]},{"k":"H3298","v":["יַעֲרֶשְׁיָה","ya‛ăreshyâh","yah-ar-esh-yaw'","From an unused root or uncertain signification and H3050; Jaareshjah, an Israelite: - Jaresiah."]},{"k":"H3299","v":["יַעֲשׂוּ","ya‛ăśû","yah-as-oo'","From H6213; they will do; Jaasu, an Israelite: - Jaasau."]},{"k":"H3300","v":["יַעֲשִׂיאֵל","ya‛ăśı̂y'êl","yah-as-ee-ale'","From H6213 and H410; made of God; Jaasiel, an Israelite: - Jaasiel, Jasiel."]},{"k":"H3301","v":["יִפְדְּיָה","yiphdeyâh","yif-deh-yaw'","From H6299 and H3050; Jah will liberate; Jiphdejah, an Israelite: - Iphedeiah."]},{"k":"H3302","v":["יָפָה","yâphâh","yaw-faw'","A primitive root; properly to be bright, that is, (by implication) beautiful: - be beautiful, be (make self) fair (-r), deck."]},{"k":"H3303","v":["יָפֶה","yâpheh","yaw-feh'","From H3302; beautiful (literally of figuratively): -    + beautiful, beauty, comely, fair (-est, one), + goodly, pleasant, well."]},{"k":"H3304","v":["יְפֵה־פִיָּה","yephêh-phı̂yâh","yef-eh' fee-yaw'","From H3302 by reduplication; very beautiful: - very fair."]},{"k":"H3305","v":["יָפוֹא    יָפוֹ","yâphô    yâphô'","yaw-fo', yaw-fo'","From H3302; beautiful; Japho, a place in Palestine: - Japha, Joppa."]},{"k":"H3306","v":["יָפַח","yâphach","yaw-fakh'","A primitive root; properly to breathe hard, that is, (by implication) to sigh: - bewail self."]},{"k":"H3307","v":["יָפֵחַ","yâphêach","yaw-fay'-akh","From H3306; properly puffing, that is, (figuratively) meditating: - such as breathe out."]},{"k":"H3308","v":["יֳפִי","yŏphı̂y","yof-ee'","From H3302; beauty: - beauty."]},{"k":"H3309","v":["יָפִיעַ","yâphı̂ya‛","yaw-fee'-ah","From H3313; bright; Japhia, the name of a Canaanite, an Israelite, and a place in Palestine: - Japhia."]},{"k":"H3310","v":["יַפְלֵט","yaphlêṭ","yaf-late'","From H6403; he will deliver; Japhlet, an Israelite: - Japhlet."]},{"k":"H3311","v":["יַפְלֵטִי","yaphlêṭı̂y","yaf-lay-tee'","Patronymic from H3310; a Japhletite or descendant of Japhlet: - Japhleti."]},{"k":"H3312","v":["יְפֻנֶּה","yephûnneh","yef-oon-neh'","From H6437; he will be prepared; Jephunneh, the name of two Israelites: - Jephunneh."]},{"k":"H3313","v":["יָפַע","yâpha‛","yaw-fah'","A primitive root; to shine: - be light, shew, self, (cause to) shine (forth)."]},{"k":"H3314","v":["יִפְעָה","yiph‛âh","yif-aw'","From H3313; splendor or (figuratively) beauty: - brightness."]},{"k":"H3315","v":["יֶפֶת","yepheth","yeh'-feth","From H6601; expansion; Jepheth, a son of Noah; also his posterity: - Japheth."]},{"k":"H3316","v":["יִפְתָּח","yiphtâch","yif-tawkh'","From H6605; he will open; Jiphtach, an Israelite; also a place in Palestine: - Jephthah, Jiphtah."]},{"k":"H3317","v":["יִפְתַּח־אֵל","yiphtach-'êl","yif-tach-ale'","From H6605 and H410; God will open; Jiphtach-el, a place in Palestine: - Jiphthah-el."]},{"k":"H3318","v":["יָצָא","yâtsâ'","yaw-tsaw'","A primitive root; to go (causatively bring) out, in a great variety of applications, literally and figuratively, direct and proximate: -    X after, appear, X assuredly, bear out, X begotten, break out, bring forth (out, up), carry out, come (abroad, out, thereat, without), + be condemned, depart (-ing, -ure), draw forth, in the end, escape, exact, fail, fall (out), fetch forth (out), get away (forth, hence, out), (able to, cause to, let) go abroad (forth, on, out), going out, grow, have forth (out), issue out, lay (lie) out, lead out, pluck out, proceed, pull out, put away, be risen, X scarce, send with commandment, shoot forth, spread, spring out, stand out, X still, X surely, take forth (out), at any time, X to [and fro], utter."]},{"k":"H3319","v":["יְצָא","yetsâ'","yets-aw'","(Chaldee); corresponding to H3318: - finish."]},{"k":"H3320","v":["יָצַב","yâtsab","yaw-tsab'","A primitive root; to place (any thing so as to stay); reflexively to station, offer, continue: - present selves, remaining, resort, set (selves), (be able to, can, with-) stand (fast, forth, -ing, still, up)."]},{"k":"H3321","v":["יְצֵב","yetsêb","yets-abe'","(Chaldee); corresponding to H3320; to be firm; hence to speak surely: - truth."]},{"k":"H3322","v":["יָצַג","yâtsag","yaw-tsag'","A primitive root; to place permanently: - establish, leave, make, present, put, set, stay."]},{"k":"H3323","v":["יִצְהָר","yitshâr","yits-hawr'","From H6671; oil (as producing light); figuratively anointing: - + anointed, oil."]},{"k":"H3324","v":["יִצְהָר","yitshâr","yits-hawr'","The same as H3323; Jitshar, an Israelite: - Izhar."]},{"k":"H3325","v":["יִצְהָרִי","yitshârı̂y","yits-haw-ree'","Patronymic from H3324; a Jitsharite or descendant of Jitshar: - Izeharites, Izharites."]},{"k":"H3326","v":["יָצוּעַ","yâtsûa‛","yaw-tsoo'-ah","Passive participle of H3331; spread, that is, a bed; (architecturally) an extension, that is, wing or lean to (a single story or collection): - bed, chamber, couch."]},{"k":"H3327","v":["יִצְחָק","yitschâq","yits-khawk'","From H6711; laughter (that is, mockery); Jitschak (or Isaac), son of Abraham: - Isaac. Compare H3446."]},{"k":"H3328","v":["יִצְחַר","yitschar","yits-khar'","From the same as H6713; he will shine; Jitschar, an Israelite: - and Zehoar [from the margin]."]},{"k":"H3329","v":["יָצִיא","yâtsı̂y'","yaw-tsee'","From H3318; issue, that is, offspring: - those that came forth."]},{"k":"H3330","v":["יַצִּיב","yatstsı̂yb","yats-tseeb'","(Chaldee); from H3321; fixed, sure; concretely certainty: - certain (-ty), true, truth."]},{"k":"H3331","v":["יַצַע","yatsa‛","yaw-tsah'","A primitive root; to strew as a surface: - make [one’s] bed, X lie, spread."]},{"k":"H3332","v":["יָצַק","yâtsaq","yaw-tsak'","A primitive root; properly to pour out (transitively or intransitively); by implication to melt or cast as metal; by extension to place firmly, to stiffen or grow hard: - cast, cleave fast, be (as) firm, grow, be hard, lay out, molten, overflow, pour (out), run out, set down, stedfast."]},{"k":"H3333","v":["יְצֻקָה","yetsûqâh","yets-oo-kaw'","Passive participle feminine of H3332; poured out, that is, run into a mould: - when it was cast."]},{"k":"H3334","v":["יָצַר","yâtsar","yaw-tsar'","A primitive root; to press (intransitively), that is, be narrow; figuratively be in distress: - be distressed, be narrow, be straitened (in straits), be vexed."]},{"k":"H3335","v":["יָצַר","yâtsar","yaw-tsar'","probably identical with H3334 (through the squeezing into shape); (compare H3331); to mould into a form; especially as a potter; figuratively to determine (that is, form a resolution): -    X earthen, fashion, form, frame, make (-r), potter, purpose."]},{"k":"H3336","v":["יֵצֶר","yêtser","yay'-tser","From H3335; a form; figuratively conception (that is, purpose): - frame, thing framed, imagination, mind, work."]},{"k":"H3337","v":["יֵצֶר","yêtser","yay'-tser","The same as H3336; Jetser, an Israelite: - Jezer."]},{"k":"H3338","v":["יָצֻר","yâtsûr","yaw-tsoor'","Passive participle of H3335; structure, that is, limb or part: - member."]},{"k":"H3339","v":["יִצְרִי","yitsrı̂y","yits-ree'","From H3335; formative; Jitsri, an Israelite: - Isri."]},{"k":"H3340","v":["יִצְרִי","yitsrı̂y","yits-ree'","Patronymic from H3337; a Jitsrite (collectively) or descendant of Jetser: - Jezerites."]},{"k":"H3341","v":["יָצַת","yâtsath","yaw-tsath'","A primitive root; to burn or set on fire; figuratively to desolate: - burn (up), be desolate, set (on) fire ([fire]), kindle."]},{"k":"H3342","v":["יֶקֶב","yeqeb","yeh'-keb","From unused root meaning to excavate; a trough (as dug out); specifically a wine vat (whether the lower one, into which the juice drains; or the upper, in which the grapes are crushed): - fats, presses, press-fat, wine (-press)."]},{"k":"H3343","v":["יְקַבְצְאֵל","yeqabtse'êl","yek-ab-tseh-ale'","From H6908 and H410; God will gather; Jekabtseel, a place in Palestine: - Jekabzeel. Compare H6909."]},{"k":"H3344","v":["יָקַד","yâqad","yaw-kad'","A primitive root; to burn: - (be) burn (-ing), X from the hearth, kindle."]},{"k":"H3345","v":["יְקַד","yeqad","yek-ad'","(Chaldee); corresponding to H3344: - burning."]},{"k":"H3346","v":["יְקֵדָא","yeqêdâ'","yek-ay-daw'","(Chaldee); from H3345; a conflagration: - burning."]},{"k":"H3347","v":["יָקְדְעָם","yoqde‛âm","yok-deh-awm'","From H3344 and H5971; burning of (the) people; Jokdeam, a place in Palestine: - Jokdeam."]},{"k":"H3348","v":["יָקֶה","yâqeh","yaw-keh'","From an unused root probably meaning to obey; obedient; Jakeh, a symbolical name (for Solomon): - Jakeh."]},{"k":"H3349","v":["יִקָּהָה","yiqqâhâh","hik-kaw-haw'","From the same as H3348; obedience: - gathering, to obey."]},{"k":"H3350","v":["יְקוֹד","yeqôd","yek-ode'","From H3344; a burning: - burning."]},{"k":"H3351","v":["יְקוּם","yeqûm","yek-oom'","From H6965; properly standing (extant), that is, by implication a living thing: - (living) substance."]},{"k":"H3352","v":["יָקוֹשׁ","yâqôsh","yaw-koshe'","From H3369; properly entangling; hence a snarer: - fowler."]},{"k":"H3353","v":["יָקוּשׁ","yâqûsh","yaw-koosh'","Passive participle of H3369; properly entangled, that is, by implication (intransitively) a snare, or (transitively) a snarer: - fowler, snare."]},{"k":"H3354","v":["יְקוּתִיאֵל","yeqûthı̂y'êl","yek-ooth-ee'-ale","From the same as H3348 and H410; obedience of God; Jekuthiel, an Israelite: - Jekuthiel."]},{"k":"H3355","v":["יָקְטָן","yoqṭân","yok-tawn'","From H6994; he will be made little; Joktan, an Arabian patriarch: - Joktan."]},{"k":"H3356","v":["יָקִים","yâqı̂ym","yaw-keem'","From H6965; he will raise; Jakim, the name of two Israelites: - Jakim. Compare H3079."]},{"k":"H3357","v":["יַקִּיר","yaqqı̂yr","yak-keer'","From H3365; precious: - dear."]},{"k":"H3358","v":["יַקִּיר","yaqqı̂yr","yak-keer'","(Chaldee); corresponding to H3357: - noble, rare."]},{"k":"H3359","v":["יְקַמְיָה","yeqamyâh","yek-am-yaw'","From H6965 and H3050; Jah will rise; Jekamjah, the name of two Israelites: - Jekamiah. Compare H3079."]},{"k":"H3360","v":["יְקַמְעָם","yeqam‛âm","yek-am'-awm","From H6965 and H5971; (the) people will rise; Jekamam, an Israelite: - Jekameam. Compare H3079, H3361."]},{"k":"H3361","v":["יָקְמְעָם","yoqme‛âm","yok-meh-awm'","From H6965 and H5971; (the) people will be raised; Jokmeam, a place in Palestine: - Jokmeam. Compare H3360, H3362."]},{"k":"H3362","v":["יָקְנְעָם","yoqne‛âm","yok-neh-awm'","From H6969 and H5971; (the) people will be lamented; Jokneam, a place in Palestine: - Jokneam."]},{"k":"H3363","v":["יָקַע","yâqa‛","yaw-kah'","A primitive root; properly to sever oneself, that is, (by implication) to be dislocated; figuratively to abandon; causatively to impale (and thus allow to drop to pieces by rotting): - be alienated, depart, hang (up), be out of joint."]},{"k":"H3364","v":["יָקַץ","yâqats","yaw-kats'","A primitive root; to awake (intransitively): - (be) awake (-d)."]},{"k":"H3365","v":["יָקַר","yâqar","yaw-kar'","A primitive root; properly apparently to be heavy, that is, (figuratively) valuable; causatively to make rare (figuratively to inhibit): - be (make) precious, be prized, be set by, withdraw."]},{"k":"H3366","v":["יְקָר","yeqâr","yek-awr'","From H3365; value, that is, (concretely) wealth; abstractly costliness, dignity: - honour, precious (things), price."]},{"k":"H3367","v":["יְקָר","yeqâr","yek-awr'","(Chaldee); corresponding to H3366: - glory, honour."]},{"k":"H3368","v":["יָקָר","yâqâr","yaw-kawr'","From H3365; valuable (objectively or subjectively): - brightness, clear, costly, excellent, fat, honourable women, precious, reputation."]},{"k":"H3369","v":["יָקֹשׁ","yâqôsh","yaw-koshe'","A primitive root; to ensnare (literally or figuratively): - fowler (lay a) snare."]},{"k":"H3370","v":["יָקְשָׁן","yoqshân","yok-shawn'","From H3369; insidious; Jokshan, an Arabian patriarch: - Jokshan."]},{"k":"H3371","v":["יָקְתְאֵל","yoqthe'êl","yok-theh-ale'","Probably from the same as H3348 and H410; veneration of God (compare H3354); Joktheel, the name of a place in Palestine, and of one in Idumaea: - Joktheel."]},{"k":"H3372","v":["יָרֵא","yârê'","yaw-ray'","A primitive root; to fear; morally to revere; causatively to frighten: - affright, be (make) afraid, dread (-ful), (put in) fear (-ful, -fully, -ing). (be had in) reverence (-end), X see, terrible (act, -ness, thing)."]},{"k":"H3373","v":["יָרֵא","yârê'","yaw-ray'","From H3372; fearing; morally reverent: - afraid, fear (-ful)."]},{"k":"H3374","v":["יִרְאָה","yir'âh","yir-aw'","Feminine of H3373; fear (also used as infinitive); morally reverence: -  X dreadful, X exceedingly, fear (-fulness)."]},{"k":"H3375","v":["יִרְאוֹן","yir'ôn","yir-ohn'","From H3372; fearfulness; Jiron, a place in Palestine: - Iron."]},{"k":"H3376","v":["יִרְאִיָּיה","yir'ı̂yâyh","yir-ee-yaw'","From H3373 and H3050; fearful of Jah; Jirijah, an Israelite: - Irijah."]},{"k":"H3377","v":["יָרֵב","yârêb","yaw-rabe'","From H7378; he will contend; Jareb, a symbolical name for Assyria: - Jareb. Compare H3402."]},{"k":"H3378","v":["יְרֻבַּעַל","yerûbba‛al","yer-oob-bah'-al","From H7378 and H1168; Baal will contend; Jerubbaal, a symbolical name of Gideon: - Jerubbaal."]},{"k":"H3379","v":["יָרָבְעָם","yârob‛âm","yaw-rob-awm'","From H7378 and H5971; (the) people will contend; Jarobam, the name of two Israelite kings: - Jeroboam."]},{"k":"H3380","v":["יְרֻבֶּשֶׁת","yerûbbesheth","yer-oob-beh'-sheth","From H7378 and H1322; shame (that is, the idol) will contend; Jerubbesheth, a symbolical name for Gideon: - Jerubbesheth."]},{"k":"H3381","v":["יָרַד","yârad","yaw-rad'","A primitive root; to descend (literally to go downwards; or conventionally to a lower region, as the shore, a boundary, the enemy, etc.; or figuratively to fall); causatively to bring down (in all the above applications): -    X abundantly, bring down, carry down, cast down, (cause to) come (-ing) down, fall (down), get down, go (-ing) down (-ward), hang down, X indeed, let down, light (down), put down (off), (cause to, let) run down, sink, subdue, take down."]},{"k":"H3382","v":["יֶרֶד","yered","yeh'-red","From H3381; a descent; Jered, the name of an antediluvian, and of an Israelite: - Jared."]},{"k":"H3383","v":["יַרְדֵּן","yardên","yar-dane'","From H3381; a descender; Jarden, the principal river of Palestine: - Jordan."]},{"k":"H3384","v":["יָרָא    יָרָה","yârâh    yârâ'","yaw-raw', yaw-raw'","A primitive root; properly to flow as water (that is, to rain); transitively to lay or throw (especially an arrow, that is, to shoot); figuratively to point out (as if by aiming the finger), to teach: -  (+) archer, cast, direct, inform, instruct, lay, shew, shoot, teach (-er, -ing), through."]},{"k":"H3385","v":["יְרוּאֵל","yerû'êl","yer-oo-ale'","From H3384 and H410; founded of God; Jeruel, a place in Palestine: - Jeruel"]},{"k":"H3386","v":["יָרוֹחַ","yârôach","yaw-ro'-akh","Perhaps denominative from H3394; (born at the) new moon; Jaroach, an Israelite: - Jaroah."]},{"k":"H3387","v":["יָרוֹק","yârôq","yaw-roke'","From H3417; green, that is, an herb: - green thing."]},{"k":"H3388","v":["יְרוּשָׁה    יְרוּשָׁא","yerûshâ'    yerûshâh","yer-oo-shaw', yer-oo-shaw'","Feminine passive participle of H3423; possessed; Jerusha or Jerushah, an Israelitess: - Jerusha, Jerushah."]},{"k":"H3389","v":["יְרוּשָׁלַיִם    יְרוּשָׁלַםִ","yerûshâlaim    yerûshâlayim","yer-oo-shaw-lah'-im, yer-oo-shaw-lah'-yim","A dual (in allusion to its two main hills (the true pointing, at least of the former reading, seems to be that of H3390)); probably from (the passive participle of) H3384 and H7999; founded peaceful; Jerushalaim or Jerushalem, the capital city of Palestine: - Jerusalem."]},{"k":"H3390","v":["יְרוּשָׁלֵם","yerûshâlêm","yer-oo-shaw-lame'","(Chaldee); corresponding to H3389: - Jerusalem."]},{"k":"H3391","v":["יֶרַח","yerach","yeh'-rakh","From an unused root of uncertain signification; a lunation, that is, month: - month, moon."]},{"k":"H3392","v":["יֶרַח","yerach","yeh'-rakh","The same as H3391; Jerach, an Arabian patriarch: - Jerah."]},{"k":"H3393","v":["יְרַח","yerach","yeh-rakh'","(Chaldee); corresponding to H3391; a month: - month."]},{"k":"H3394","v":["יָרֵחַ","yârêach","yaw-ray'-akh","From the same as H3391; the moon: - moon."]},{"k":"H3395","v":["יְרֹחָם","yerôchâm","yer-o-khawm'","From H7355; compassionate; Jerocham, the name of seven or eight Israelites: - Jeroham."]},{"k":"H3396","v":["יְרַחְמְאֵל","yerachme'êl","yer-akh-meh-ale'","From H7355 and H410; God will compassionate; Jerachmeel, the name of three Israelites: - Jerahmeel."]},{"k":"H3397","v":["יְרַחְמְאֵלִי","yerachme'êlı̂y","yer-akh-meh-ay-lee'","Patronymic from H3396; a Jerachmeelite or descendant of Jerachmeel: - Jerahmeelites."]},{"k":"H3398","v":["יַרְחָע","yarchâ‛","yar-khaw'","Probably of Egyptian origin; Jarcha, an Egyptian: - Jarha."]},{"k":"H3399","v":["יָרַט","yâraṭ","yaw-rat'","A primitive root; to precipitate or hurl (rush) headlong; (intransitively) to be rash: - be perverse, turn over."]},{"k":"H3400","v":["יְרִיאֵל","yerı̂y'êl","yer-ee-ale'","From H3384 and H410; thrown of God; Jeriel, an Israelite: - Jeriel. Compare H3385."]},{"k":"H3401","v":["יָרִיב","yârı̂yb","yaw-rebe'","From H7378; literally he will contend; properly adjectively contentious; used as noun, an adversary: - that contend (-eth), that strive."]},{"k":"H3402","v":["יָרִיב","yârı̂yb","yaw-rebe'","The same as H3401; Jarib, the name of three Israelites: - Jarib."]},{"k":"H3403","v":["יְרִיבַי","yerı̂ybay","yer-eeb-ah'ee","From H3401; contentious; Jeribai, an Israelite: - Jeribai."]},{"k":"H3404","v":["יְרִיָּהוּ    יְרִיָּה","yerı̂yâh    yerı̂yâhû","yer-ee-yaw', yer-ee-yaw'-hoo","From H3384 and H3050; Jah will throw; Jerijah, an Israelite: - Jeriah, Jerijah."]},{"k":"H3405","v":["יְרִיחֹה    יְרֵחוֹ    יְרִיחוֹ","yerı̂ychô    yerêchô    yerı̂ychôh","yer-ee-kho', yer-ay-kho', yer-ee-kho'","Perhaps from H3394; its month; or else from H7306; fragrant; Jericho or Jerecho, a place in Palestine: - Jericho."]},{"k":"H3406","v":["יְרֵמוֹת    יְרֵימוֹת    יְרִימוֹת","yerı̂ymôth    yerêymôth    yerêmôth","(1) yer-ee-mohth', (2,3) yer-ay-mohth'","Feminine plural from H7311; elevations; Jerimoth or Jeremoth, the name of twelve Israelites: - Jeremoth, Jerimoth, and Ramoth [from the margin]."]},{"k":"H3407","v":["יְרִיעָה","yerı̂y‛âh","yer-ee-aw'","From H3415; a hanging (as tremulous): - curtain."]},{"k":"H3408","v":["יְרִיעוֹת","yerı̂y‛ôth","yer-ee-ohth'","Plural of H3407; curtains; Jerioth, an Israelitess: - Jerioth."]},{"k":"H3409","v":["יָרֵךְ","yârêk","yaw-rake'","From an unused root meaning to be soft; the thigh (from its fleshy softness); by euphemism the generative parts; figuratively a shank, flank, side: -  X body, loins, shaft, side, thigh."]},{"k":"H3410","v":["יַרְכָא","yarkâ'","yar-kaw'","(Chaldee); corresponding to H3411; a thigh: - thigh."]},{"k":"H3411","v":["יְרֵכָה","yerêkâh","yer-ay-kaw'","Feminine of H3409; properly the flank; but used only figuratively, the rear or recess: - border, coast, part, quarter, side."]},{"k":"H3412","v":["יַרְמוּת","yarmûth","yar-mooth'","From H7311; elevation; Jarmuth, the name of two places in Palestine: - Jarmuth."]},{"k":"H3413","v":["יְרֵמַי","yerêmay","yer-ay-mah'ee","From H7311; elevated; Jeremai, an Israelite: - Jeremai."]},{"k":"H3414","v":["יִרְמְיָהוּ    יִרְמְיָה","yirmeyâh    yirmeyâhû","yir-meh-yaw', yir-meh-yaw'-hoo","From H7311 and H3050; Jah will rise; Jirmejah, the name of eight or nine Israelites: - Jeremiah."]},{"k":"H3415","v":["יָרַע","yâra‛","yaw-rah'","A primitive root; properly to be broken up (with any violent action), that is, (figuratively) to fear: - be grievous [only Isa_15:4; the rest belong to H7489]."]},{"k":"H3416","v":["יִרְפְּאֵל","yirpe'êl","yir-peh-ale'","From H7495 and H410; God will heal; Jirpeel, a place in Palestine: - Irpeel."]},{"k":"H3417","v":["יָרַק","yâraq","yaw-rak'","A primitive root; to spit: -  X but, spit."]},{"k":"H3418","v":["יֶרֶק","yereq","yeh'-rek","From H3417 (in the sense of vacuity of color); properly pallor, that is, hence the yellowish green of young and sickly vegetation; concretely verdure, that is, grass or vegetation: - grass, green (thing)."]},{"k":"H3419","v":["יָרָק","yârâq","yaw-rawk'","From the same as H3418; properly green; concretely a vegetable: - green, herbs."]},{"k":"H3420","v":["יֵרָקוֹן","yêrâqôn","yay-raw-kone'","From H3418; paleness, whether of persons (from fright), or of plants (from drought): - mildew, paleness."]},{"k":"H3421","v":["יָרְקְעָם","yorqe‛âm","yor-keh-awm'","From H7324 and H5971; people will be poured forth; Jorkeam, a place in Palestine: - Jorkeam."]},{"k":"H3422","v":["יְרַקְרַק","yeraqraq","yer-ak-rak'","From the same as H3418; yellowishness: - greenish, yellow."]},{"k":"H3423","v":["יָרֵשׁ    יָרַשׁ","yârash    yârêsh","yaw-rash', yaw-raysh'","A primitive root; to occupy (be driving out previous tenants, and possessing in their place); by implication to seize, to rob, to inherit; also to expel, to impoverish, to ruin: - cast out, consume, destroy, disinherit, dispossess, drive (-ing) out, enjoy, expel, X without fail, (give to, leave for) inherit (-ance, -or), + magistrate, be (make) poor, come to poverty, (give to, make to) possess, get (have) in (take) possession, seize upon, succeed, X utterly."]},{"k":"H3424","v":["יְרֵשָׁה","yerêshâh","yer-ay-shaw'","From H3423; occupancy: - possession."]},{"k":"H3425","v":["יְרֻשָּׁה","yerûshshâh","yer-oosh-shaw'","From H2423; something occupied; a conquest; also a patrimony: - heritage, inheritance, possession."]},{"k":"H3426","v":["יֵשׁ","yêsh","yaysh","Perhaps from an unused root meaning to stand out, or exist; entity; used adverbially or as a copula for the substantive verb (H1961); there is or are (or any other form of the verb to be, as may suit the connection): - (there) are, (he, it, shall, there, there may, there shall, there should) be, thou do, had, hast, (which) hath, (I, shalt, that) have, (he, it, there) is, substance, it (there) was, (there) were, ye will, thou wilt, wouldest."]},{"k":"H3427","v":["יָשַׁב","yâshab","yaw-shab'","A primitive root; properly to sit down (specifically as judge, in ambush, in quiet); by implication to dwell, to remain; causatively to settle, to marry: -  (make to) abide (-ing), continue, (cause to, make to) dwell (-ing), ease self, endure, establish, X fail, habitation, haunt, (make to) inhabit (-ant), make to keep [house], lurking, X marry (-ing), (bring again to) place, remain, return, seat, set (-tle), (down-) sit (-down, still, -ting down, -ting [place] -uate), take, tarry."]},{"k":"H3428","v":["יֶשֶׁבְאָב","yesheb'âb","yeh-sheb-awb'","From H3427 and H1; seat of (his) father; Jeshebab, an Israelite: - Jeshebeab."]},{"k":"H3429","v":["יֹשֵׁב בַּשֶּׁבֶת","yôshêb bashshebeth","yo-shabe' bash-sheh'-beth","From the active participle of H3427 and H7674, with a preposition and the article interposed; sitting in the seat; Josheb-bash-Shebeht, an Israelite: - that sat in the seat."]},{"k":"H3430","v":["יִשְׁבּוֹ בְּנֹב","yishbô benôb","yish-bo' beh-nobe'","From H3427 and H5011, with a pronominal suffix and a preposition interposed; his dwelling (is) in Nob; Jishbo-be-Nob, a Philistine: - Ishbi-benob [from the margin]."]},{"k":"H3431","v":["יִשְׁבַּח","yishbach","yish-bakh'","From H7623; he will praise; Jishbach, an Israelite: - Ishbah."]},{"k":"H3432","v":["יָשֻׁבִי","yâshûbı̂y","yaw-shoo-bee'","Patronymic from H3437; a Jashubite, or descendant of Jashub: - Jashubites."]},{"k":"H3433","v":["יֹשְׁבֵי לֶחֶם    יָשֻׁבִי לֶחֶם","yâshûbı̂y lechem     yôshebêy lechem","yaw-shoo'-bee, yo-sheh-bay'    (leh'-khem)","Shown as the first form; from H7725 and H3899; returner of bread; Jashubi-Lechem, an Israelite; but probably the text should be pointed (as in the second form) and rendered (they were) inhabitants of Lechem, that is, of Bethlehem (by contraction): - Jashubi-lehem. [Probably the text should be pointed    Yoshebey Lechem, yo-sheh-bay leh-khem, and rendered “(they were) inhabitants of Lechem,” That is,of Bethlehem (by contraction). Compare H3902.]"]},{"k":"H3434","v":["יָשָׁבְעָם","yâshob‛âm","yaw-shob-awm'","From H7725 and H5971; people will return; Jashobam, the name of two or three Israelites: - Jashobeam."]},{"k":"H3435","v":["יִשְׁבָּק","yishbâq","yish-bawk'","From an unused root corresponding to H7662; he will leave; Jishbak, a son of Abraham: - Ishbak."]},{"k":"H3436","v":["יָשְׁבְּקָשָׁה","yoshbeqâshâh","yosh-bek-aw-shaw'","From H3427 and H7186; a hard seat; Joshbekashah, an Israelite: - Joshbekashah."]},{"k":"H3437","v":["יָשִׁיב    יָשׁוּב","yâshûb    yâshı̂yb","yaw-shoob', yaw-sheeb'","From H7725; he will return; Jashub, the name of two Israelites: - Jashub."]},{"k":"H3438","v":["יִשְׁוָה","yishvâh","yish-vaw'","From H7737; he will level; Jishvah, an Israelite: - Ishvah, Isvah."]},{"k":"H3439","v":["יְשׁוֹחָיָה","yeshôchâyâh","yesh-o-khaw-yaw'","From the same as H3445 and H3050; Jah will empty; Jeshochajah, an Israelite: - Jeshoaiah."]},{"k":"H3440","v":["יִשְׁוִי","yishvı̂y","yish-vee'","From H7737; level; Jishvi, the name of two Israelites: - Ishuai, Ishvi, Isui, Jesui."]},{"k":"H3441","v":["יִשְׁוִי","yishvı̂y","yish-vee'","Patronymic from H3440; a Jishvite (collectively) or descendant of Jishvi: - Jesuites."]},{"k":"H3442","v":["יֵשׁוּעַ","yêshûa‛","yah-shoo'-ah","For H3091; he will save; Jeshua, the name of two Israelites, also of a place in Palestine: - Jeshua."]},{"k":"H3443","v":["יֵשׁוּעַ","yêshûa‛","yah-shoo'-ah","(Chaldee); corresponding to H3442: - Jeshua."]},{"k":"H3444","v":["יְשׁוּעָה","yeshû‛âh","yesh-oo'-aw","Feminine passive participle of H3467; something saved, that is, (abstractly) deliverance; hence aid, victory, prosperity: - deliverance, health, help (-ing), salvation, save, saving (health), welfare."]},{"k":"H3445","v":["יֶשַׁח","yeshach","yeh'-shakh","From an unused root meaning to gape (as the empty stomach); hunger: - casting down."]},{"k":"H3446","v":["יִשְׂחָק","yiśchâq","yis-khawk'","From H7831; he will laugh; Jischak, the heir of Abraham: - Isaac. Compare H3327."]},{"k":"H3447","v":["יָשַׁט","yâshaṭ","yaw-shat'","A primitive root; to extend: - hold out."]},{"k":"H3448","v":["אִישַׁי    יִשַׁי","yishay    'ı̂yshay","yee-shah'ee, ee-shah'ee","From the same as H3426; extant; Jishai, David’s father: - Jesse."]},{"k":"H3449","v":["יִשִּׁיָּהוּ    יִשִּׁיָּה","yishshı̂yâh    yishshı̂yâhû","yish-shee-yaw', yish-shee-yaw'-hoo","From H5383 and H3050; Jah will lend; Jishshijah, the name of five Israelites: - Ishiah, Isshiah, Ishijah, Jesiah."]},{"k":"H3450","v":["יְשִׂימִאֵל","yeśı̂ymi'êl","yes-eem-aw-ale'","From H7760 and H410; God will place; Jesimael, an Israelite: - Jesimiel."]},{"k":"H3451","v":["יְשִׁימָה","yeshı̂ymâh","yesh-ee-maw'","From H3456; desolation: - let death seize [from the margin]."]},{"k":"H3452","v":["יְשִׁימוֹן","yeshı̂ymôn","yesh-ee-mone'","From H3456; a desolation: - desert, Jeshimon, solitary, wilderness."]},{"k":"H3453","v":["יָשִׁישׁ","yâshı̂ysh","yaw-sheesh'","From H3486; an old man: - (very) aged (man), ancient, very old."]},{"k":"H3454","v":["יְשִׁישָׁי","yeshı̂yshây","yesh-ee-shah'ee","From H3453; aged; Jeshishai, an Israelite: - Jeshishai."]},{"k":"H3455","v":["יָשַׂם","yâśam","yaw-sam'","A primitive root; to place; intransitively to be placed: - be put (set)."]},{"k":"H3456","v":["יָשַׁם","yâsham","yaw-sham'","A primitive root; to lie waste: - be desolate."]},{"k":"H3457","v":["יִשְׁמָא","yishmâ'","yish-maw'","From H3456; desolate; Jishma, an Israelite: - Ishma."]},{"k":"H3458","v":["יִשְׁמָעֵאל","yishmâ‛ê'l","yish-maw-ale'","From H8085 and H410; God will hear; Jishmael, the name of Abraham’s oldest son, and of five Israelites: - Ishmael."]},{"k":"H3459","v":["יִשְׁמָעֵאלִי","yishmâ‛ê'lı̂y","yish-maw-ay-lee'","Patronymic from H3458; a Jishmaelite or descendant of Jishmael: - Ishmaelite."]},{"k":"H3460","v":["יִשְׁמַעְיָהוּ    יִשְׁמַעְיָה","yishma‛yâh    yishma‛yâhû","yish-mah-yaw', yish-mah-yaw'-hoo","From H8085 and H3050; Jah will hear; Jishmajah, the name of two Israelites: - Ishmaiah."]},{"k":"H3461","v":["יִשְׁמְרַי","yishmeray","yish-mer-ah'ee","From H8104; preservative; Jishmerai, an Israelite: - Ishmerai."]},{"k":"H3462","v":["יָשֵׁן","yâshên","yaw-shane'","A primitive root; properly to be slack or languid, that is, (by implication) sleep (figuratively to die); also to grow old, stale or inveterate: - old (store), remain long, (make to) sleep."]},{"k":"H3463","v":["יָשֵׁן","yâshên","yaw-shane'","From H3462; sleepy: - asleep, (one out of) sleep (-eth, -ing), slept."]},{"k":"H3464","v":["יָשֵׁן","yâshên","yaw-shane'","The same as H3463; Jashen, an Israelite: - Jashen."]},{"k":"H3465","v":["יָשָׁן","yâshân","yaw-shawn'","From H3462; old: - old."]},{"k":"H3466","v":["יְשָׁנָה","yeshânâh","yesh-aw-naw'","Feminine of H3465; Jeshanah, a place in Palestine: - Jeshanah."]},{"k":"H3467","v":["יָשַׁע","yâsha‛","yaw-shah'","A primitive root; properly to be open, wide or free, that is, (by implication) to be safe; causatively to free or succor: -  X at all, avenging, defend, deliver (-er), help, preserve, rescue, be safe, bring (having) salvation, save (-iour), get victory."]},{"k":"H3468","v":["יֵשַׁע    יֶשַׁע","yesha‛    yêsha‛","yeh'-shah, yay'-shah","From H3467; liberty, deliverance, prosperity: - safety, salvation, saving."]},{"k":"H3469","v":["יִשְׁעִי","yish‛ı̂y","yish-ee'","From H3467; saving; Jishi, the name of four Israelites: - Ishi."]},{"k":"H3470","v":["יְשַׁעְיָהוּ    יְשַׁעְיָה","yesha‛yâh    yesha‛yâhû","yesh-ah-yaw', yesh-ah-yaw'-hoo","From H3467 and H3050; Jah has saved; Jeshajah, the name of seven Israelites: - Isaiah, Jesaiah, Jeshaiah."]},{"k":"H3471","v":["יָשְׁפֵה","yâshphêh","yaw-shef-ay'","From an unused root meaning to polish; a gem supposed to be jasper (from the resemblance in name): - jasper."]},{"k":"H3472","v":["יִשְׁפָּה","yishpâh","yish-paw'","Perhaps from H8192; he will scratch; Jishpah, an Israelite: - Ispah."]},{"k":"H3473","v":["יִשְׁפָּן","yishpân","yish-pawn'","Probably from the same as H8227; he will hide; Jishpan, an Israelite: - Ishpan."]},{"k":"H3474","v":["יָשַׁר","yâshar","yaw-shar'","A primitive root; to be straight or even; figuratively to be (causatively to make) right, pleasant, prosperous: - direct, fit, seem good (meet), + please (well), be (esteem, go) right (on), bring (look, make, take the) straight (way), be upright (-ly)."]},{"k":"H3475","v":["יֵשֶׁר","yêsher","yay'-sher","From H3474; the right; Jesher, an Israelite: - Jesher."]},{"k":"H3476","v":["יֹשֶׁר","yôsher","yo'-sher","From H3474; the right: - equity, meet, right, upright (-ness)."]},{"k":"H3477","v":["יָשָׁר","yâshâr","yaw-shawr'","From H3474; straight (literally or figuratively): - convenient, equity, Jasher, just, meet (-est), + pleased well right (-eous), straight, (most) upright (-ly, -ness)."]},{"k":"H3478","v":["יִשְׂרָאֵל","yiśrâ'êl","yis-raw-ale'","From H8280 and H410; he will rule as God; Jisrael, a symbolical name of Jacob; also (typically) of his posterity: - Israel."]},{"k":"H3479","v":["יִשְׂרָאֵל","yiśrâ'êl","yis-raw-ale'","(Chaldee); corresponding to H3478: - Israel."]},{"k":"H3480","v":["יְשַׂרְאֵלָה","yeśar'êlâh","yes-ar-ale'-aw","By variation from H3477 and H410 with directive enclitic; right towards God; Jesarelah, an Israelite: - Jesharelah. Compare H841"]},{"k":"H3481","v":["יִשְׂרְאֵלִי","yiśre'êlı̂y","yish-reh-ay-lee'","Patronymic from H3478; a Jisreelite or descendant of Jisrael: - of Israel, Israelite."]},{"k":"H3482","v":["יִשְׂרְאֵלִית","yiśre'êlı̂yth","yis-reh-ay-leeth'","Feminine of H3481; a Jisreelitess or female descendant of Jisrael: - Israelitish."]},{"k":"H3483","v":["יִשְׁרָה","yishrâh","yish-raw'","Feminine of H3477; rectitude: - uprightness."]},{"k":"H3484","v":["יְשֻׁרוּן","yeshûrûn","yesh-oo-roon'","From H3474; upright; Jeshurun, a symbolical name for Israel: - Jeshurun."]},{"k":"H3485","v":["יִשָּׂשׂכָר","yiśśâśkâr","yis-saw-kawr'","From H5375 and H7939; he will bring a reward; Jissaskar, a son of Jacob: - Issachar."]},{"k":"H3486","v":["יָשֵׁשׁ","yâshêsh","yaw-shaysh'","From an unused root meaning to blanch; gray haired, that is, an aged man: - stoop for age."]},{"k":"H3487","v":["יַת","yath","yath","(Chaldee); corresponding to H853; a sign of the object of a verb: - + whom."]},{"k":"H3488","v":["יְתִב","yethib","yeth-eeb'","(Chaldee); corresponding to H3427; to sit or dwell: - dwell, (be) set, sit."]},{"k":"H3489","v":["יָתֵד","yâthêd","yaw-thade'","From an unused root meaning to pin through or fast; a peg: - nail, paddle, pin, stake."]},{"k":"H3490","v":["יָתוֹם","yâthôm","yaw-thome'","From an unused root meaning to be lonely; a bereaved person: - fatherless (child), orphan."]},{"k":"H3491","v":["יָתוּר","yâthûr","yaw-thoor'","Passive participle of H3498; properly what is left, that is, (by implication) a gleaning: - range."]},{"k":"H3492","v":["יַתִּיר","yattı̂yr","yat-teer'","From H3498; redundant; Jattir, a place in Palestine: - Jattir."]},{"k":"H3493","v":["יַתִּיר","yattı̂yr","yat-teer'","(Chaldee); corresponding to H3492; preeminent; adverbially very: - exceeding (-ly), excellent."]},{"k":"H3494","v":["יִתְלָה","yithlâh","yith-law'","Probably from H8518; it will hang, that is, high; Jithlah, a place in Palestine: - Jethlah."]},{"k":"H3495","v":["יִתְמָה","yithmâh","yith-maw'","From the same as H3490; orphanage; Jithmah, an Israelite: - Ithmah."]},{"k":"H3496","v":["יַתְנִיאֵל","yathnı̂y'êl","yath-nee-ale'","From an unused root meaning to endure, and H410; continued of God; Jathniel, an Israelite: - Jathniel."]},{"k":"H3497","v":["יִתְנָן","yithnân","yith-nawn'","From the same as H8577; extensive; Jithnan, a place in Palestine: - Ithnan."]},{"k":"H3498","v":["יָתַר","yâthar","yaw-thar'","A primitive root; to jut over or exceed; by implication to excel; (intransitively) to remain or be left; causatively to leave, cause to abound, preserve: - excel, leave (a remnant), left behind, too much, make plenteous, preserve, (be, let) remain (-der, -ing, -nant), reserve, residue, rest."]},{"k":"H3499","v":["יֶתֶר","yether","yeh'-ther","Properly an overhanging, that is, (by implication) an excess, superiority, remainder; also a small rope (as hanging free): -    + abundant, cord, exceeding, excellency (-ent), what they leave, that hath left, plentifully, remnant, residue, rest, string, with."]},{"k":"H3500","v":["יֶתֶר","yether","yeh'-ther","The same as H3499 Jether, the name of five or six Israelites and of one Midianite: - Jether, Jethro. Compare H3503."]},{"k":"H3501","v":["יִתְרָא","yithrâ'","yith-raw'","By variation for H3502; Jithra, an Israelite (or Ishmaelite): - Ithra."]},{"k":"H3502","v":["יִתְרָה","yithrâh","yith-raw'","Feminine of H3499; properly excellence, that is, (by implication) wealth: - abundance, riches."]},{"k":"H3503","v":["יִתְרוֹ","yithrô","yith-ro'","From H3499 with pronominal suffix; his excellence; Jethro, Moses’ father in law: - Jethro. Compare H3500."]},{"k":"H3504","v":["יִתרוֹן","yithrôn","yith-rone'","From H3498; preeminence, gain: - better, excellency (-leth), profit (-able)."]},{"k":"H3505","v":["יִתְרִי","yithrı̂y","yith-ree'","Patronymic from H3500; a Jithrite or descendant of Jether: - Ithrite."]},{"k":"H3506","v":["יִתְרָן","yithrân","yith-rawn'","From H3498; excellent; Jithran, the name of an Edomite and of an Israelite: - Ithran."]},{"k":"H3507","v":["יִתְרְעָם","yithre‛âm","yith-reh-awm'","From H3499 and H5971; excellence of people; Jithream, a son of David: - Ithream."]},{"k":"H3508","v":["יֹתֶרֶת","yôthereth","yo-theh'-reth","Feminine active participle of H3498; the lobe or flap of the liver (as if redundant or outhanging): - caul."]},{"k":"H3509","v":["יְתֵת","yethêth","yeh-thayth'","Of uncertain derivation; Jetheth, an Edomite: - Jetheth."]},{"k":"H3510","v":["כָּאַב","kâ'ab","kaw-ab'","A primitive root; properly to feel pain; by implication to grieve; figuratively to spoil: - grieving, mar, have pain, make sad (sore), (be) sorrowful."]},{"k":"H3511","v":["כְּאֵב","ke'êb","keh-abe'","From H3510; suffering (physical or mental), adversity: - grief, pain, sorrow."]},{"k":"H3512","v":["כָּאָה","kâ'âh","kaw-aw'","A primitive root; to despond; causatively to deject: - broken, be grieved, make sad."]},{"k":"H3513","v":["כָּבֵד    כָּבַד","kâbad    kâbêd","kaw-bad, kaw-bade'","A primitive root; to be heavy, that is, in a bad sense (burdensome, severe, dull) or in a good sense (numerous, rich, honorable); causatively to make weighty (in the same two senses): - abounding with, more grievously afflict, boast, be chargeable, X be dim, glorify, be (make) glorious (things), glory, (very) great, be grievous, harden, be (make) heavy, be heavier, lay heavily, (bring to, come to, do, get, be had in) honour (self), (be) honourable (man), lade, X more be laid, make self many, nobles, prevail, promote (to honour), be rich, be (go) sore, stop."]},{"k":"H3514","v":["כֹּבֶד","kôbed","ko'-bed","From H3513; weight, multitude, vehemence: - grievousness, heavy, great number."]},{"k":"H3515","v":["כָּבֵד","kâbêd","kaw-bade'","From H3513; heavy; figuratively in a good sense (numerous) or in a bad sense (severe, difficult, stupid): - (so) great, grievous, hard (-ened), (too) heavy (-ier), laden, much, slow, sore, thick."]},{"k":"H3516","v":["כָּבֵד","kâbêd","kaw-bade'","The same as H3515; the liver (as the heaviest of the viscera): - liver."]},{"k":"H3517","v":["כְּבֵדֻת","kebêdûth","keb-ay-dooth'","Feminine of H3515; difficulty: -  X heavily."]},{"k":"H3518","v":["כָּבָה","kâbâh","kaw-baw'","A primitive root; to expire or (causatively) to extinguish (fire, light, anger): - go (put) out, quench."]},{"k":"H3519","v":["כָּבֹד    כָּבוֹד","kâbôd    kâbôd","kaw-bode', kaw-bode'","From H3513; properly weight; but only figuratively in a good sense, splendor or copiousness: - glorious (-ly), glory, honour (-able)."]},{"k":"H3520","v":["כְּבוּדָּה","kebûddâh","keb-ood-daw'","Irregular feminine passive participle of H3513; weightiness; that is, magnificence, wealth: - carriage, all glorious, stately."]},{"k":"H3521","v":["כָּבוּל","kâbûl","kaw-bool'","From the same as H3525 in the sense of limitation; sterile; Cabul, the name of two places in Palestine: - Cabul."]},{"k":"H3522","v":["כַּבּוֹן","kabbôn","kab-bone'","From an unused root meaning to heap up; hilly; Cabbon, a place in Palestine: - Cabbon."]},{"k":"H3523","v":["כְּבִיר","kebı̂yr","keb-eer","From H3527 in the original sense of plaiting; a matrass (of intertwined materials): - pillow."]},{"k":"H3524","v":["כַּבִּיר","kabbı̂yr","kab-beer'","From H3727; vast, whether in extent (figuratively of power, mighty; of time, aged), or in number, many: -  + feeble, mighty, most, much, strong, valiant."]},{"k":"H3525","v":["כֶּבֶל","kebel","keh'-bel","From an unused root meaning to twine or braid together; a fetter: - fetter."]},{"k":"H3526","v":["כָּבַס","kâbas","kaw-bas'","A primitive root; to trample; hence to wash (properly by stamping with the feet), whether literally (including the fulling process) or figuratively: - fuller, wash (-ing)."]},{"k":"H3527","v":["כָּבַר","kâbar","kaw-bar'","A primitive root; properly to plait together, that is, (figuratively) to augment (especially in number or quantity, to accumulate): - in abundance, multiply."]},{"k":"H3528","v":["כְּבָר","kebâr","keb-awr'","From H3527; properly extent of time, that is, a great while; hence long ago, formerly, hitherto: - already, (seeing that which), now."]},{"k":"H3529","v":["כְּבָר","kebâr","keb-awr'","The same as H3528; length; Kebar, a river of Mesopotamia: - Chebar. Compare H2249."]},{"k":"H3530","v":["כִּבְרָה","kibrâh","kib-raw'","Feminine of H3528; properly length, that is, a measure (of uncertain dimension): -    X little."]},{"k":"H3531","v":["כְּבָרָה","kebârâh","keb-aw-raw'","From H3527 in its original sense; a sieve (as netted): - sieve."]},{"k":"H3532","v":["כֶּבֶשׂ","kebeś","keh-bes'","From an unused root meaning to dominate; a ram (just old enough to butt): - lamb, sheep."]},{"k":"H3533","v":["כָּבַשׁ","kâbash","kaw-bash'","A primitive root; to tread down; hence negatively to disregard; positively to conquer, subjugate, violate: - bring into bondage, force, keep under, subdue, bring into subjection."]},{"k":"H3534","v":["כֶּבֶשׁ","kebesh","keh'-besh","From H3533; a footstool (as trodden upon): - footstool."]},{"k":"H3535","v":["כַּבְשָׂה    כִּבְשָׂה","kibśâh    kabśâh","kib-saw', kab-saw'","Feminine of H3532; a ewe: - (ewe) lamb."]},{"k":"H3536","v":["כִּבְשָׁן","kibshân","kib-shawn'","From H3533; a smelting furnace (as reducing metals): - furnace."]},{"k":"H3537","v":["כַּד","kad","kad","From an unused root meaning to deepen; properly a pail; but generally of earthenware; a jar for domestic purposes: - barrel, pitcher."]},{"k":"H3538","v":["כְּדַב","kedab","ked-ab'","(Chaldee); from a root corresponding to H3576; false: - lying."]},{"k":"H3539","v":["כַּדְכֹד","kadkôd","kad-kode'","From the same as H3537 in the sense of striking fire from a metal forged; a sparkling gem, probably the ruby: - agate."]},{"k":"H3540","v":["כְּדָרְלָעֹמֶר","kedorlâ‛ômer","ked-or-law-o'-mer","Of foreign origin; Kedorlaomer, an early Persian king: - Chedorlaomer."]},{"k":"H3541","v":["כֹּה","kôh","ko","From the prefix K and H1931; properly like this, that is, by implication (of manner) thus (or so); also (of place) here (or hither); or (of time) now: - also, here, + hitherto, like, on the other side, so (and much), such, on that manner, (on) this (manner, side, way, way and that way), + mean while, yonder."]},{"k":"H3542","v":["כָּה","kâh","kaw","(Chaldee); corresponding to H3541: - hitherto."]},{"k":"H3543","v":["כָּהָה","kâhâh","kaw-haw'","A primitive root; to be weak, that is, (figuratively) to despond (causatively rebuke), or (of light, the eye) to grow dull: - darken, be dim, fail, faint, restrain, X utterly."]},{"k":"H3544","v":["כֵּהֶה","kêheh","kay-heh'","From H3543; feeble, obscure: - somewhat dark, darkish, wax dim, heaviness, smoking."]},{"k":"H3545","v":["כֵּהָה","kêhâh","kay-haw'","Feminine of H3544; properly a weakening; figuratively alleviation, that is, cure: - healing."]},{"k":"H3546","v":["כְּהַל","kehal","ke-hal'","(Chaldee); a root corresponding to H3201 and H3557; to be able: - be able, could."]},{"k":"H3547","v":["כָּהַן","kâhan","kaw-han'","A primitive root, apparently meaning to mediate in religious services; but used only as denominative from H3548; to officiate as a priest; figuratively to put on regalia: - deck, be (do the office of a, execute the, minister in the) priest (‘s office)."]},{"k":"H3548","v":["כֹּהֵן","kôhên","ko-hane'","Active participle of H3547; literally one officiating, a priest; also (by courtesy) an acting priest (although a layman): - chief ruler, X own, priest, prince, principal officer."]},{"k":"H3549","v":["כָּהֵן","kâhên","kaw-hane'","(Chaldee); corresponding to H3548: - priest."]},{"k":"H3550","v":["כְּהֻנָּה","kehûnnâh","keh-hoon-naw'","From H3547; priesthood: - priesthood, priest’s office."]},{"k":"H3551","v":["כַּו","kav","kav","(Chaldee); from a root corresponding to H3854 in the sense of piercing; a window (as a perforation): - window."]},{"k":"H3552","v":["כּוּב","kûb","koob","Of foreign derivation; Kub, a country near Egypt: - Chub."]},{"k":"H3553","v":["כּוֹבַע","kôba‛","ko'-bah","From an unused root meaning to be high or rounded; a helmet (as arched): - helmet. Compare H6959."]},{"k":"H3554","v":["כָּוָה","kâvâh","kaw-vaw'","A primitive root; properly to prick or penetrate; hence to blister (as smarting or eating into): - burn."]},{"k":"H3555","v":["כְּוִיָּה","kevı̂yâh","kev-ee-yaw'","From H3554; a branding: - burning."]},{"k":"H3556","v":["כּוֹכָב","kôkâb","ko-kawb'","Probably from the same as H3522 (in the sense of rolling) or H3554 (in the sense of blazing); a star (as round or as shining); figuratively a prince: - star ([-gazer])."]},{"k":"H3557","v":["כּוּל","kûl","kool","A primitive root; properly to keep in; hence to measure; figuratively to maintain (in various senses): - (be able to, can) abide, bear, comprehend, contain, feed, forbearing, guide, hold (-ing in), nourish (-er), be present, make provision, receive, sustain, provide sustenance (victuals)."]},{"k":"H3558","v":["כּוּמָז","kûmâz","koo-mawz'","From an unused root meaning to store away; a jewel (probably gold beads): - tablet."]},{"k":"H3559","v":["כּוּן","kûn","koon","A primitive root; properly to be erect (that is, stand perpendicular);. hence (causatively) to set up, in a great variety of applications, whether literal (establish, fix, prepare, apply), or figurative (appoint, render sure, proper or prosperous): - certain (-ty), confirm, direct, faithfulness, fashion, fasten, firm, be fitted, be fixed, frame, be meet, ordain, order, perfect, (make) preparation, prepare (self), provide, make provision, (be, make) ready, right, set (aright, fast, forth), be stable, (e-) stablish, stand, tarry, X very deed."]},{"k":"H3560","v":["כּוּן","kûn","koon","Probably from H3559; established; Kun, a place in Syria: - Chun."]},{"k":"H3561","v":["כַּוָּן","kavvân","kav-vawn'","From H3559; something prepared, that is, a sacrificial wafer: - cake."]},{"k":"H3562","v":["כּוֹנַנְיָהוּ","kônanyâhû","ko-nan-yaw'-hoo","From H3559 and H3050; Jah has sustained; Conanjah, the name of two Israelites: - Conaniah, Cononiah. Compare H3663."]},{"k":"H3563","v":["כּוֹס","kôs","koce","From an unused root meaning to hold together; a cup (as a container), often figuratively a lot (as if a potion); also some unclean bird, probably an owl (perhaps from the cup like cavity of its eye): - cup, (small) owl. Compare H3599."]},{"k":"H3564","v":["כּוּר","kûr","koor","From an unused root meaning properly to dig through; a pot or furnace (as if excavated): - furnace. Compare H3600."]},{"k":"H3565","v":["כּוֹר עָשָׁן","kôr ‛âshân","kore aw-shawn'","From H3564 and H6227; furnace of smoke; Cor-Ashan, a place in Palestine: - Chor-ashan."]},{"k":"H3566","v":["כֹּרֶשׁ    כּוֹרֶשׁ","kôresh    kôresh","ko'-resh, ko'-resh","From the Persian; Koresh (or Cyrus), the Persian king: - Cyrus."]},{"k":"H3567","v":["כּוֹרֶשׁ","kôresh","ko'-resh","(Chaldee); corresponding to H3566: - Cyrus."]},{"k":"H3568","v":["כּוּשׁ","kûsh","koosh","Probably of foreign origin; Cush (or Ethiopia), the name of a son of Ham, and of his territory; also of an Israelite: - Chush, Cush, Ethiopia."]},{"k":"H3569","v":["כּוּשִׁי","kûshı̂y","koo-shee'","Patronymic from H3568; a Cushite, or descendant of Cush: - Cushi, Cushite, Ethiopian (-s)."]},{"k":"H3570","v":["כּוּשִׁי","kûshı̂y","koo-shee'","The same as H3569; Cushi, the name of two Israelites: - Cushi."]},{"k":"H3571","v":["כּוּשִׁית","kûshı̂yth","koo-sheeth'","Feminine of H3569; a Cushite woman: - Ethiopian."]},{"k":"H3572","v":["כּוּשָׁן","kûshân","koo-shawn'","Perhaps from H3568; Cushan, a region of Arabia: - Cushan."]},{"k":"H3573","v":["כּוּשַׁן רִשְׁעָתַיִם","kûshan rish‛âthayim","koo-shan' rish-aw-thah'-yim","Apparently from H3572 and the dual of H7564; Cushan of double wickedness; Cushan-Rishathajim, a Mesopotamian king: - Chushan-rishathayim."]},{"k":"H3574","v":["כּוֹשָׁרָה","kôshârâh","ko-shaw-raw'","From H3787; prosperity; in plural freedom: -  X chain."]},{"k":"H3575","v":["כּוּתָה    כּוּת","kûth    kûthâh","kooth, koo-thaw'","Of foreign origin; Cuth or Cuthah, a province of Assyria: - Cuth."]},{"k":"H3576","v":["כָּזַב","kâzab","kaw-zab'","A primitive root; to lie (that is, deceive), literally or figuratively: - fail, (be found a, make a) liar, lie, lying, be in vain."]},{"k":"H3577","v":["כָּזָב","kâzâb","kaw-zawb'","From H3576; falsehood; literally (untruth) or figuratively (idol): - deceitful, false, leasing, + liar, lie, lying."]},{"k":"H3578","v":["כֹּזְבָא","kôzebâ'","ko-zeb-aw'","From H3576; fallacious; Cozeba, a place in Palestine: - Choseba."]},{"k":"H3579","v":["כָּזְבִּי","kozbı̂y","koz-bee'","From H3576; false; Cozbi, a Midianitess: - Cozbi."]},{"k":"H3580","v":["כְּזִיב","kezı̂yb","kez-eeb'","From H3576; falsified; Kezib, a place in Palestine: - Chezib."]},{"k":"H3581","v":["כּוֹחַ    כֹּחַ","kôach    kôach","ko'-akh, ko'-akh","From an unused root meaning to be firm; vigor, literally (force, in a good or a bad sense) or figuratively (capacity, means, produce); also (from its hardiness) a large lizard: - ability, able, chameleon, force, fruits, might, power (-ful), strength, substance, wealth."]},{"k":"H3582","v":["כָּחַד","kâchad","kaw-khad'","A primitive root; to secrete, by act or word; hence (intensively) to destroy: - conceal, cut down (off), desolate, hide."]},{"k":"H3583","v":["כָּחַל","kâchal","kaw-khal'","A primitive root; to paint (with stibium): - paint."]},{"k":"H3584","v":["כָּחַשׁ","kâchash","kaw-khash'","A primitive root; to be untrue, in word (to lie, feign, disown) or deed (to disappoint, fail, cringe): - deceive, deny, dissemble, fail, deal falsely, be found liars, (be-) lie, lying, submit selves."]},{"k":"H3585","v":["כַּחַשׁ","kachash","kakh'-ash","From H3584; literally a failure of flesh, that is, emaciation; figuratively hypocrisy: - leanness, lies, lying."]},{"k":"H3586","v":["כֶּחָשׁ","kechâsh","kekh-awsh'","From H3584; faithless: - lying."]},{"k":"H3587","v":["כִּי","kı̂y","kee","From H3554; a brand or scar: - burning."]},{"k":"H3588","v":["כִּי","kı̂y","kee","A primitive particle (the full form of the prepositional prefix) indicating causal relations of all kinds, antecedent or consequent; (by implication) very widely used as a relative conjugation or adverb; often largely modified by other particles annexed: - and, + (forasmuch, inasmuch, where-) as, assured [-ly], + but, certainly, doubtless, + else, even, + except, for, how, (because, in, so, than) that, + nevertheless, now, rightly, seeing, since, surely, then, therefore, + (al-) though, + till, truly, + until, when, whether, while, who, yea, yet,"]},{"k":"H3589","v":["כִּיד","kı̂yd","keed","From a primitive root meaning to strike; a crushing; figuratively calamity: - destruction."]},{"k":"H3590","v":["כִּידוֹד","kı̂ydôd","kee-dode'","From the same as H3589 (compare H3539); properly something struck off, that is, a spark (as struck): - spark."]},{"k":"H3591","v":["כִּידוֹן","kı̂ydôn","kee-dohn'","From the same as H3589; properly something to strike with, that is, a dart (perhaps smaller than H2595): - lance, shield, spear, target."]},{"k":"H3592","v":["כִּידוֹן","kı̂ydôn","kee-dohn'","The same as H3591; Kidon, a place in Palestine: - Chidon."]},{"k":"H3593","v":["כִּידוֹר","kı̂ydôr","kee-dore'","Of uncertain derivation; perhaps tumult: - battle."]},{"k":"H3594","v":["כִּיּוּן","kı̂yûn","kee-yoon'","From H3559; properly a statue, that is, idol; but used (by euphemism) for some heathen deity (perhaps corresponding to Priapus or Baal-peor): - Chiun."]},{"k":"H3595","v":["כִּיֹּר    כִּיּוֹר","kı̂yôr    kı̂yôr","kee-yore', kee-yore'","From the same as H3564; properly something round (as excavated or bored), that is, a chafing dish for coals or a caldron for cooking; hence (from similarity of form) a washbowl; also (for the same reason) a pulpit or platform: - hearth, laver, pan, scaffold."]},{"k":"H3596","v":["כֵּלַי    כִּילַי","kı̂ylay    kêlay","kee-lah'ee, kay-lah'ee","From H3557 in the sense of withholding; niggardly: - churl."]},{"k":"H3597","v":["כֵּילַף","kêylaph","kay-laf'","From an unused root meaning to clap or strike with noise; a club or sledge hammer: - hammer."]},{"k":"H3598","v":["כִּימָה","kı̂ymâh","kee-maw'","From the same as H3558; a cluster of stars, that is, the Pleiades: - Pleiades, seven stars."]},{"k":"H3599","v":["כִּיס","kı̂ys","keece","A form for H3563; a cup; also a bag for money or weights: - bag, cup, purse."]},{"k":"H3600","v":["כִּיר","kı̂yr","keer","A form for H3564 (only in the dual); a cooking range (consisting of two parallel stones, across which the boiler is set): - ranges for pots."]},{"k":"H3601","v":["כִּישׁוֹר","kı̂yshôr","kee-shore'","From H3787; literally a director, that is, the spindle or shank of a distaff (H6418) by which it is twirled: - spindle."]},{"k":"H3602","v":["כָּכָה","kâkâh","kaw'-kaw","From H3541; just so, referring to the previous or following context: - after that (this) manner, this matter, (even) so, in such a case, thus."]},{"k":"H3603","v":["כִּכָר","kikâr","kik-kawr'","From H3769; a circle, that is, (by implication) a circumjacent tract or region, especially the Ghor or valley of the Jordan; also a (round) loaf; also a talent (or large (round) coin): - loaf, morsel, piece, plain, talent."]},{"k":"H3604","v":["כִּכֵר","kikêr","kik-kare'","(Chaldee); corresponding to H3603; a talent: - talent."]},{"k":"H3605","v":["כּוֹל    כֹּל","kôl    kôl","kole, kole","From H3634; properly the whole; hence all, any or every (in the singular only, but often in a plural sense): - (in) all (manner, [ye]), altogether, any (manner), enough, every (one, place, thing), howsoever, as many as, [no-] thing, ought, whatsoever, (the) whole, whoso (-ever)."]},{"k":"H3606","v":["כֹּל","kôl","kole","(Chaldee); corresponding to H3605: - all, any, + (forasmuch) as, + be- (for this) cause, every, + no (manner, -ne), + there (where) -fore, + though, what (where, who) -soever, (the) whole."]},{"k":"H3607","v":["כָּלָא","kâlâ'","kaw-law'","A primitive root; to restrict, by act (hold back or in) or word (prohibit): - finish, forbid, keep (back), refrain, restrain, retain, shut up, be stayed, withhold."]},{"k":"H3608","v":["כֶּלֶא","kele'","keh'-leh","From H3607; a prison: - prison. Compare H3610, H3628."]},{"k":"H3609","v":["כִּלְאָב","kil'âb","kil-awb'","Apparently from H3607 and H1; restraint of (his) father; Kilab, an Israelite: - Chileab."]},{"k":"H3610","v":["כִּלְאַיִם","kil'ayim","kil-ah'-yim","Dual of H3608 in the original sense of separation; two heterogeneities: - divers seeds (-e kinds), mingled (seed)."]},{"k":"H3611","v":["כֶּלֶב","keleb","keh'-leb","From an unused root meaning to yelp, or else to attack; a dog; hence (by euphemism) a male prostitute: - dog."]},{"k":"H3612","v":["כָּלֵב","kâlêb","kaw-labe'","Perhaps a form of H3611, or else from the same root in the sense of forcible; Caleb, the name of three Israelites: - Caleb."]},{"k":"H3613","v":["כָּלֵב אֶפְרָתָה","kâlêb 'ephrâthâh","kaw-labe' ef-raw'-thaw","From H3612 and H672; Caleb-Ephrathah, a place in Egypt (if the text is correct): - Caleb-ephrathah."]},{"k":"H3614","v":["כָּלֵבִי     כָּלִבּוֹ","kâlibbô    kâlêbı̂y","kaw-lib-bo', kaw-lay-bee'","The first form is probably by erroneous transcription for the second form; patronymic from H3612; a Calebite or descendant of Caleb: - of the house of Caleb."]},{"k":"H3615","v":["כָּלָה","kâlâh","kaw-law'","A primitive root; to end, whether intransitively (to cease, be finished, perish) or transitively (to complete, prepare, consume): - accomplish, cease, consume (away), determine, destroy (utterly), be (when . . . were) done, (be an) end (of), expire, (cause to) fail, faint, finish, fulfil, X fully, X have, leave (off), long, bring to pass, wholly reap, make clean riddance, spend, quite take away, waste."]},{"k":"H3616","v":["כָּלֶה","kâleh","kaw-leh'","From H3615; pining: - fail."]},{"k":"H3617","v":["כָּלָה","kâlâh","kaw-law'","From H3615; a completion; adverbially completely; also destruction: - altogether, (be, utterly) consume (-d), consummation (-ption), was determined, (full, utter) end, riddance."]},{"k":"H3618","v":["כַּלָּה","kallâh","kal-law'","From H3634; a bride (as if perfect); hence a son's wife: - bride, daughter-in-law, spouse."]},{"k":"H3619","v":["כְּלוּב","kelûb","kel-oob'","From the same as H3611; a bird trap (as furnished with a clapstick or treadle to spring it); hence a basket (as resembling a wicker cage): - basket, cage."]},{"k":"H3620","v":["כְּלוּב","kelûb","kel-oob'","The same as H3619; Kelub, the name of two Israelites: - Chelub."]},{"k":"H3621","v":["כְּלוּבַי","kelûbay","kel-oo-bay'ee","A form of H3612; Kelubai, an Israelite: - Chelubai."]},{"k":"H3622","v":["כְּלוּהַי","kelûhay","kel-oo-hah'ee","From H3615; completed; Keluhai, an Israelite: - Chelluh."]},{"k":"H3623","v":["כְּלוּלָה","kelûlâh","kel-oo-law'","Denominative passive participle from H3618; bridehood (only in the plural): - espousal."]},{"k":"H3624","v":["כֶּלַח","kelach","keh'-lakh","From an unused root meaning to be complete; maturity: - full (old) age."]},{"k":"H3625","v":["כֶּלַח","kelach","keh'-lakh","The same as H3624; Kelach, a place in Assyria: - Calah."]},{"k":"H3626","v":["כָּל־חֹזֶה","kol-chôzeh","kol-kho-zeh'","From H3605 and H2374; every seer; Col-Cho-zeh, an Israelite: - Col-hozeh."]},{"k":"H3627","v":["כְּלִי","kelı̂y","kel-ee'","From H3615; something prepared, that is, any apparatus (as an implement, utensil, dress, vessel or weapon): - armour ([-bearer]), artillery, bag, carriage, + furnish, furniture, instrument, jewel, that is made of, X one from another, that which pertaineth, pot, + psaltery, sack, stuff, thing, tool, vessel, ware, weapon, + whatsoever."]},{"k":"H3628","v":["כְּלוּא    כְּלִיא","kelı̂y'    kelû'","kel-ee', kel-oo'","From H3607 (compare H3608); a prison: - prison."]},{"k":"H3629","v":["כִּלְיָה","kilyâh","kil-yaw'","Feminine of H3627 (only in the plural); a kidney (as an essential organ); figuratively the mind (as the interior self): - kidneys, reins."]},{"k":"H3630","v":["כִּלְיוֹן","kilyôn","kil-yone'","A form of H3631; Kiljon, an Israelite: - Chilion."]},{"k":"H3631","v":["כִּלָּיוֹן","killâyôn","kil-law-yone'","From H3615; pining, destruction: - consumption, failing."]},{"k":"H3632","v":["כָּלִיל","kâlı̂yl","kaw-leel'","From H3634; complete; as noun, the whole (specifically a sacrifice entirely consumed); as adverb fully: - all, every whit, flame, perfect (-ion), utterly, whole burnt offering (sacrifice), wholly."]},{"k":"H3633","v":["כַּלְכֹּל","kalkôl","kal-kole'","From H3557; sustenance; Calcol, an Israelite: - Calcol, Chalcol."]},{"k":"H3634","v":["כָּלַל","kâlal","kaw-lal'","A primitive root; to complete: - (make) perfect."]},{"k":"H3635","v":["כְּלַל","kelal","kel-al'","(Chaldee); corresponding to H3634; to complete: - finish, make (set) up."]},{"k":"H3636","v":["כְּלָל","kelâl","kel-awl'","From H3634; complete; Kelal, an Israelite: - Chelal."]},{"k":"H3637","v":["כָּלַם","kâlam","kaw-lawm'","A primitive root; properly to wound; but only figuratively, to taunt or insult: - be (make) ashamed, blush, be confounded, be put to confusion, hurt, reproach, (do, put to) shame."]},{"k":"H3638","v":["כִּלְמָד","kilmâd","kil-mawd'","Of foreign derivation; Kilmad, a place apparently in the Assyrian empire: - Chilmad."]},{"k":"H3639","v":["כְּלִמָּה","kelimmâh","kel-im-maw'","From H3637; disgrace: - confusion, dishonour, reproach, shame."]},{"k":"H3640","v":["כְּלִמּוּת","kelimmûth","kel-im-mooth'","From H3639; disgrace: - shame."]},{"k":"H3641","v":["כַּלְנוֹ    כַּלְנֵה    כַּלְנֶה","kalneh    kalnêh    kalnô","kal-neh', kal-nay', kal-no'","Of foreign derivation; Calneh or Calno, a place in the Assyrian empire: - Calneh, Calno. Compare H3656."]},{"k":"H3642","v":["כָּמַהּ","kâmahh","kaw-mah'","A primitive root; to pine after: - long."]},{"k":"H3643","v":["כִּמְהָם","kimhâm","kim-hawm'","From H3642; pining; Kimham, an Israelite: - Chimham."]},{"k":"H3644","v":["כָּמוֹ    כְּמוֹ","kemô    kâmô","kem-o', kaw-mo'","A form of the prefix K, but used separately (compare H3651); as, thus, so: - according to, (such) as (it were, well as), in comparison of, like (as, to, unto), thus, when, worth."]},{"k":"H3645","v":["כְּמִישׁ    כְּמוֹשׁ","kemôsh    kemı̂ysh","kem-oshe', kem-eesh'","From an unused root meaning to subdue; the powerful; Kemosh, the god of the Moabites: - Chemosh."]},{"k":"H3646","v":["כַּמֹּן","kammôn","kam-mone'","From an unused root meaning to store up or preserve; “cummin” (from its use as a condiment): - cummin."]},{"k":"H3647","v":["כָּמַס","kâmas","kaw-mas'","A primitive root; to store away, that is, (figuratively) in the memory: - lay up in store."]},{"k":"H3648","v":["כָּמַר","kâmar","kaw-mar'","A primitive root; properly to intertwine or contract, that is, (by implication) to shrivel (as with heat); figuratively to be deeply affected with passion (love or pity): - be black, be kindled, yearn."]},{"k":"H3649","v":["כָּמָר","kâmâr","kaw-mawr'","From H3648; properly an ascetic (as if shrunk with self maceration), that is, an idolatrous priest (only in plural): - Chemarims, (idolatrous) priests."]},{"k":"H3650","v":["כִּמְרִיר","kimrı̂yr","kim-reer'","Reduplicated from H3648; obscuration (as if from shrinkage of light), that is, an eclipse (only in plural): - black-ness."]},{"k":"H3651","v":["כֵּן","kên","kane","From H3559; properly set upright; hence (figuratively as adjective) just; but usually (as adverb or conjugation) rightly or so (in various applications to manner, time and relation; often with other particles): -    + after that (this, -ward, -wards), as . . . as, + [for-] asmuch as yet, + be (for which) cause, + following, howbeit, in (the) like (manner, -wise), X the more, right, (even) so, state, straightway, such (thing), surely, + there (where) -fore, this, thus, true, well, X you."]},{"k":"H3652","v":["כֵּן","kên","kane","(Chaldee); corresponding to H3651; so: - thus."]},{"k":"H3653","v":["כֵּן","kên","kane","The same as H3651, used as a noun; a stand, that is, pedestal or station: - base, estate, foot, office, place, well."]},{"k":"H3654","v":["כֵּן","kên","kane","From H3661 in the sense of fastening; a gnat (from infixing its sting; used only in plural (and irregularly in Exo_8:16-18): - lice, X manner."]},{"k":"H3655","v":["כָּנָה","kânâh","kaw-naw'","A primitive root; to address by an additional name; hence, to eulogize: - give flattering titles, surname (himself)."]},{"k":"H3656","v":["כַּנֶּה","kanneh","kan-neh'","For H3641; Canneh, a place in Assyria: - Canneh"]},{"k":"H3657","v":["כַּנָּה","kannâh","kan-naw'","From H3661; a plant (as set): -    X vineyard."]},{"k":"H3658","v":["כִּנּוֹר","kinnôr","kin-nore'","From an unused root meaning to twang; a harp: - harp."]},{"k":"H3659","v":["כָּנְיָהוּ","konyâhû","kon-yaw'-hoo","For H3204; Conjah, an Israelite king: - Coniah."]},{"k":"H3660","v":["כְּנֵמָא","kenêmâ'","ken-ay-maw'","(Chaldee); corresponding to H3644; so or thus: - so, (in) this manner (sort), thus."]},{"k":"H3661","v":["כָּנַן","kânan","kaw-nan'","A primitive root; to set out, that is, plant: -  X vineyard."]},{"k":"H3662","v":["כְּנָנִי","kenânı̂y","ken-aw-nee'","From H3661; planted; Kenani, an Israelite: - Chenani."]},{"k":"H3663","v":["כְּנַנְיָהוּ    כְּנַנְיָה","kenanyâh    kenanyâhû","ken-an-yaw', ken-an-yaw'-hoo","From H3661 and H3050; Jah has planted; Kenanjah, an Israelite: - Chenaniah."]},{"k":"H3664","v":["כָּנַס","kânas","kaw-nas'","A primitive root; to collect; hence, to enfold: - gather (together), heap up, wrap self."]},{"k":"H3665","v":["כָּנַע","kâna‛","kaw-nah'","A primitive root; properly to bend the knee; hence to humiliate, vanquish: - bring down (low), into subjection, under, humble (self), subdue."]},{"k":"H3666","v":["כִּנְעָה","kin‛âh","kin-aw'","From H3665 in the sense of folding (compare H3664); a package: - wares."]},{"k":"H3667","v":["כְּנַעַן","kena‛an","ken-ah'-an","From H3665; humiliated; Kenaan, a son of Ham; also the country inhabited by him: - Canaan, merchant, traffick."]},{"k":"H3668","v":["כְּנַעֲנָה","kena‛ănâh","ken-ah-an-aw'","Feminine of H3667; Kenaanah, the name of two Israelites: - Chenaanah."]},{"k":"H3669","v":["כְּנַעַנִי","kena‛anı̂y","ken-ah-an-ee'","Patrial from H3667; a Kenaanite or inhabitant of Kenaan; by implication a pedlar (the Cananites standing for their neighbors the Ishmaelites, who conducted mercantile caravans): - Canaanite, merchant, trafficker."]},{"k":"H3670","v":["כָּנַף","kânaph","kaw-naf'","A primitive root; properly to project laterally, that is, probably (reflexively) to withdraw: - be removed."]},{"k":"H3671","v":["כָּנָף","kânâph","kaw-nawf'","From H3670; an edge or extremity; specifically (of a bird or army) a wing, (of a garment or bed clothing) a flap, (of the earth) a quarter, (of a building) a pinnacle: -  + bird, border, corner, end, feather [-ed], X flying, + (one an-) other, overspreading, X quarters, skirt, X sort, uttermost part, wing ([-ed])."]},{"k":"H3672","v":["כִּנֶּרֶת    כִּנְּרוֹת","kinnerôth    kinnereth","kin-ner-oth', kin-neh'-reth","Respectively plural and singular feminine from the same as H3658; perhaps harp shaped; Kinneroth or Kinnereth, a place in Palestine: - Chinnereth, Chinneroth, Cinneroth."]},{"k":"H3673","v":["כָּנַשׁ","kânash","kaw-nash'","(Chaldee); corresponding to H3664; to assemble: - gather together."]},{"k":"H3674","v":["כְּנָת","kenâth","ken-awth'","From H3655; a colleague (as having the same title): - companion."]},{"k":"H3675","v":["כְּנָת","kenâth","ken-awth'","(Chaldee); corresponding to H3674: - companion."]},{"k":"H3676","v":["כֵּס","kês","kace","Apparently a contraction for H3678, but probably by erroneous transcription for H5251: - sworn."]},{"k":"H3677","v":["כֶּסֶה    כֶּסֶא","kese'    keseh","keh'-seh, keh'-seh","Apparently from H3680; properly fulness or the full moon, that is, its festival: - (time) appointed."]},{"k":"H3678","v":["כִּסֵּה    כִּסֵּא","kissê'    kissêh","kis-say', kis-say'","From H3680; properly covered, that is, a throne (as canopied): - seat, stool, throne."]},{"k":"H3679","v":["כַּסְדַּי","kasday","kas-dah'ee","For H3778: - Chaldean."]},{"k":"H3680","v":["כָּסָה","kâsâh","kaw-saw'","A primitive root; properly to plump, that is, fill up hollows; by implication to cover (for clothing or secrecy): - clad self, close, clothe, conceal, cover (self), (flee to) hide, overwhelm. Compare H3780."]},{"k":"H3681","v":["כָּסוּי","kâsûy","kaw-soo'ee","Passive participle of H3680; properly covered, that is, (as noun) a covering: - covering."]},{"k":"H3682","v":["כְּסוּת","kesûth","kes-ooth'","From H3680; a cover (garment); figuratively a veiling: - covering, raiment, vesture."]},{"k":"H3683","v":["כָּסַח","kâsach","kaw-sakh'","A primitive root; to cut off: - cut down (up)."]},{"k":"H3684","v":["כְּסִיל","kesı̂yl","kes-eel'","From H3688; properly fat, that is, (figuratively) stupid or silly: - fool (-ish)."]},{"k":"H3685","v":["כְּסִיל","kesı̂yl","kes-eel'","The same as H3684; any notable constellation; specifically Orion (as if a burly one): - constellation, Orion."]},{"k":"H3686","v":["כְּסִיל","kesı̂yl","kes-eel'","The same as H3684; Kesil, a place in Palestine: - Chesil."]},{"k":"H3687","v":["כְּסִילוּת","kesı̂ylûth","kes-eel-ooth'","From H3684; silliness: - foolish."]},{"k":"H3688","v":["כָּסַל","kâsal","kaw-sal'","A primitive root; properly to be fat, that is, (figuratively) silly: - be foolish."]},{"k":"H3689","v":["כֶּסֶל","kesel","keh'-sel","From H3688; properly fatness, that is, by implication (literally) the loin (as the seat of the leaf fat) or (generally) the viscera; also (figuratively) silliness or (in a good sense) trust: - confidence, flank, folly, hope, loin."]},{"k":"H3690","v":["כִּסְלָה","kislâh","kis-law'","Feminine of H3689; in a good sense, trust; in a bad one, silliness: - confidence, folly."]},{"k":"H3691","v":["כִּסְלֵו","kislêv","kis-lave'","Probably of foreign origin; Kisleu, the ninth Hebrew month: - Chisleu."]},{"k":"H3692","v":["כִּסְלוֹן","kislôn","kis-lone'","From H3688; hopeful; Kislon, an Israelite: - Chislon."]},{"k":"H3693","v":["כְּסָלוֹן","kesâlôn","kes-aw-lone'","From H3688; fertile; Kesalon, a place in Palestine: - Chesalon."]},{"k":"H3694","v":["כְּסֻלּוֹת","kesûllôth","kes-ool-loth'","Feminine plural of passive participle of H3688; fattened, Kesulloth, a place in Palestine: - Chesulloth."]},{"k":"H3695","v":["כַּסְלֻחִים","kaslûchı̂ym","kas-loo'-kheem","A plural probably of foreign derivation; Casluchim, a people cognate to the Egyptian: - Casluhim."]},{"k":"H3696","v":["כִּסְלֹת תָּבֹר","kisôlth tâbôr","kis-loth' taw-bore'","From the feminine plural of H3689 and H8396; flanks of Tabor; Kisloth Tabor, a place in Palestine: - Chisloth-tabor."]},{"k":"H3697","v":["כָּסַם","kâsam","kaw-sam'","A primitive root; to shear: -  X only, poll. Compare H3765."]},{"k":"H3698","v":["כֻּסֶּמֶת","kûssemeth","koos-seh'-meth","From H3697; spelt (from its bristliness as if just shorn): - fitches, rie."]},{"k":"H3699","v":["כָּסַס","kâsas","kaw-sas'","A primitive root; to estimate: - make count."]},{"k":"H3700","v":["כָּסַף","kâsaph","kaw-saf'","A primitive root; properly to become pale, that is, (by implication) to pine after; also to fear: - [have] desire, be greedy, long, sore."]},{"k":"H3701","v":["כֶּסֶף","keseph","keh'-sef","From H3700; silver (from its pale color); by implication money: - money, price, silver (-ling)."]},{"k":"H3702","v":["כְּסַף","kesaph","kes-af'","(Chaldee); corresponding to H3701: - money, silver."]},{"k":"H3703","v":["כָּסִפְיָא","kâsiphyâ'","kaw-sif-yaw'","Perhaps from H3701; silvery; Casiphja, a place in Babylon: - Casiphia."]},{"k":"H3704","v":["כֶּסֶת","keseth","keh'-seth","From H3680; a cushion or pillow (as covering a seat or bed): - pillow."]},{"k":"H3705","v":["כְּעַן","ke‛an","keh-an'","(Chaldee); probably from H3652; now: - now."]},{"k":"H3706","v":["כְּעֶת    כְּעֶנֶת","ke‛eneth    ke‛eth","keh-eh'-neth, keh-eth'","(Chaldee); feminine of H3705; thus (only in the formula “and so forth”): - at such a time."]},{"k":"H3707","v":["כַּעַס","ka‛as","kaw-as'","A primitive root; to trouble; by implication to grieve, rage, be indignant: - be angry, be grieved, take indignation, provoke (to anger, unto wrath), have sorrow, vex, be wroth."]},{"k":"H3708","v":["כַּעַשׂ    כַּעַס","ka‛as    ka‛aś","kah'-as, kah'-as","From H3707; vexation: - anger, angry, grief, indignation, provocation, provoking, X sore, sorrow, spite, wrath."]},{"k":"H3709","v":["כַּף","kaph","kaf","From H3721; the hollow hand or palm (so of the paw of an animal, of the sole, and even of the bowl of a dish or sling, the handle of a bolt, the leaves of a palm tree); figuratively power: - branch, + foot, hand ([-ful], -dle, [-led]), hollow, middle, palm, paw, power, sole, spoon."]},{"k":"H3710","v":["כֵּף","kêph","kafe","From H3721; a hollow rock: - rock."]},{"k":"H3711","v":["כָּפָה","kâphâh","kaw-faw'","A primitive root; properly to bend, that is, (figuratively) to tame or subdue: - pacify."]},{"k":"H3712","v":["כִּפָּה","kippâh","kip-paw'","Feminine of H3709; a leaf of a palm tree: - branch."]},{"k":"H3713","v":["כְּפוֹר","kephôr","kef-ore'","From H3722; properly a cover, that is, (by implication) a tankard (or covered goblet); also white frost (as covering the ground): - bason, hoar (-y) frost."]},{"k":"H3714","v":["כָּפִיס","kâphı̂ys","kaw-fece'","From an unused root meaning to connect; a girder: - beam."]},{"k":"H3715","v":["כְּפִיר","kephı̂yr","kef-eer'","From H3722; a village (as covered in by walls); also a young lion (perhaps as covered with a mane): - (young) lion, village. Compare H3723."]},{"k":"H3716","v":["כְּפִירָה","kephı̂yrâh","kef-ee-raw'","Feminine of H3715; the village (always with the article); Kephirah, a place in Palestine: - Chephirah."]},{"k":"H3717","v":["כָּפַל","kâphal","kaw-fal'","A primitive root; to fold together; figuratively to repeat: - double."]},{"k":"H3718","v":["כֶּפֶל","kephel","keh'-fel","From H3717; a duplicate: - double."]},{"k":"H3719","v":["כָּפַן","kâphan","kaw-fan'","A primitive root; to bend: - bend."]},{"k":"H3720","v":["כָּפָן","kâphân","kaw-fawn'","From H3719; hunger (as making to stoop with emptiness and pain): - famine."]},{"k":"H3721","v":["כָּפַף","kâphaph","kaw-faf'","A primitive root; to curve: - bow down (self)."]},{"k":"H3722","v":["כָּפַר","kâphar","kaw-far'","A primitive root; to cover (specifically with bitumen); figuratively to expiate or condone, to placate or cancel: - appease, make (an) atonement, cleanse, disannul, forgive, be merciful, pacify, pardon, to pitch, purge (away), put off, (make) reconcile (-liation)."]},{"k":"H3723","v":["כָּפָר","kâphâr","kaw-fawr'","From H3722; a village (as protected by walls): - village. Compare H3715."]},{"k":"H3724","v":["כֹּפֶר","kôpher","ko'-fer","From H3722; properly a cover, that is, (literally) a village (as covered in); (specifically) bitumen (as used for coating), and the henna plant (as used for dyeing); figuratively a redemption price: - bribe, camphire, pitch, ransom, satisfaction, sum of money, village."]},{"k":"H3725","v":["כִּפֻּר","kippûr","kip-poor'","From H3722; expiation (only in plural): - atonement."]},{"k":"H3726","v":["כְּפַר הָעַמּוֹנִי","kephar hâ‛ammônı̂y","kef-ar' haw-am-mo-nee'","From H3723 and H5984, with the article interposed; village of the Ammonite; Kefarha Ammoni, a place in Palestine: - Chefar-haamonai."]},{"k":"H3727","v":["כַּפֹּרֶת","kappôreth","kap-po'-reth","From H3722; a lid (used only of the cover of the sacred Ark): - mercy seat."]},{"k":"H3728","v":["כָּפַשׁ","kâphash","kaw-fash'","A primitive root; to tread down; figuratively to humiliate: - cover."]},{"k":"H3729","v":["כְּפַת","kephath","kef-ath'","(Chaldee); a root of uncertain correspondence; to fetter: - bind."]},{"k":"H3730","v":["כַּפְתּוֹר    כַּפְתֹּר","kaphtôr    kaphtôr","kaf-tore', kaf-tore'","Probably from an unused root meaning to encircle; a chaplet; but used only in an architectonic sense, that is, the capital of a column, or a wreath like button or disk on the candelabrum: - knop, (upper) lintel."]},{"k":"H3731","v":["כַּפְתּוֹר    כַּפְתֹּר","kaphtôr    kaphtôr","kaf-tore', kaf-tore'","Apparently the same as H3730; Caphtor (that is, a wreath shaped island), the original seat of the Philistines: - Caphtor."]},{"k":"H3732","v":["כַּפְתֹּרִי","kaphtôrı̂y","kaf-to-ree'","Patrial from H3731; a Caphtorite (collectively) or native of Caphtor: - Caphthorim, Caphtorim (-s)."]},{"k":"H3733","v":["כַּר","kar","kar","From H3769 in the sense of plumpness; a ram (as full grown and fat), including a battering ram (as butting); hence a meadow (as for sheep); also a pad or camel’s saddle (as puffed out): - captain, furniture, lamb, (large) pasture, ram. See also H1033, H3746."]},{"k":"H3734","v":["כֹּר","kôr","kore","From the same as H3564; properly a deep round vessel, that is, (specifically) a cor or measure for things dry. Chaldee the same: - cor, measure. Chaldee the same."]},{"k":"H3735","v":["כָּרָא","kârâ'","kaw-raw'","(Chaldee); probably corresponding to H3738 in the sense of piercing (figuratively); to grieve: - be grieved."]},{"k":"H3736","v":["כַּרְבֵּל","karbêl","kar-bale'","From the same as H3525; to gird or clothe: - clothed."]},{"k":"H3737","v":["כַּרְבְּלָא","karbelâ'","kar-bel-aw'","(Chaldee); from a verb corresponding to that of H3736; a mantle: - hat."]},{"k":"H3738","v":["כָּרָה","kârâh","kaw-raw'","A primitive root; properly to dig; figuratively to plot; generally to bore or open: - dig, X make (a banquet), open."]},{"k":"H3739","v":["כָּרָה","kârâh","kaw-raw'","Usually assigned as a primitive root, but probably only a special application of H3738 (through the common idea of planning implied in a bargain); to purchase: - buy, prepare."]},{"k":"H3740","v":["כֵּרָה","kêrâh","kay-raw'","From H3739; a purchase: - provision."]},{"k":"H3741","v":["כָּרָה","kârâh","kaw-raw'","Feminine of H3733; a meadow: - cottage."]},{"k":"H3742","v":["כְּרוּב","kerûb","ker-oob'","Of uncertain derivation; a cherub or imaginary figure: - cherub, [plural] cherubims."]},{"k":"H3743","v":["כְּרוּב","kerûb","ker-oob'","The same as H3742; Kerub, a place in Babylon: - Cherub."]},{"k":"H3744","v":["כָּרוֹז","kârôz","kaw-roze'","(Chaldee); from H3745; a herald: - herald."]},{"k":"H3745","v":["כְּרַז","keraz","ker-az'","(Chaldee); probably of Greek origin [H2784]; to proclaim: - make a proclamation."]},{"k":"H3746","v":["כָּרִי","kârı̂y","kaw-ree'","Perhaps an abridged plural of H3733 in the sense of leader (of the flock); a life guardsman: - captains, Cherethites [from the margin]."]},{"k":"H3747","v":["כְּרִית","kerı̂yth","ker-eeth'","From H3772; a cut; Kerith, a brook of Palestine: - Cherith."]},{"k":"H3748","v":["כְּרִיתוּת","kerı̂ythûth","ker-ee-thooth'","From H3772; a cutting (of the matrimonial bond), that is, divorce: - divorce (-ment)."]},{"k":"H3749","v":["כַּרְכֹּב","karkôb","kar-kobe'","Expanded from the same as H3522; a rim or top margin: - compassive"]},{"k":"H3750","v":["כַּרְכֹּם","karkôm","kar-kome'","Probably of foreign origin; the crocus: - saffron."]},{"k":"H3751","v":["כַּרְכְּמִישׁ","karkemı̂ysh","kar-kem-eesh'","Of foreign derivation; Karkemish, a place in Syria: - Carchemish."]},{"k":"H3752","v":["כַּרְכַּס","karkas","kar-kas'","Of Persian origin; Karkas, a eunuch of Xerxes: - Carcas."]},{"k":"H3753","v":["כַּרְכָּרָה","karkârâh","kar-kaw-raw'","From H3769; a dromedary (from its rapid motion as if dancing): - swift beast."]},{"k":"H3754","v":["כֶּרֶם","kerem","keh'-rem","From an unused root of uncertain meaning; a garden or vineyard: - vines, (increase of the) vineyard (-s), vintage. See also H1021."]},{"k":"H3755","v":["כֹּרֵם","kôrêm","ko-rame","Active participle of an imaginary denominative from H3754; a vinedresser; as one or two words: - vine dresser [as one or two words]."]},{"k":"H3756","v":["כַּרְמִי","karmı̂y","kar-mee'","From H3754; gardener; Karmi, the name of three Israelites: - Carmi."]},{"k":"H3757","v":["כַּרְמִי","karmı̂y","kar-mee'","Patronymic from H3756; a Karmite or descendant of Karmi: - Carmites."]},{"k":"H3758","v":["כַּרְמִיל","karmı̂yl","kar-mele'","Probably of foreign origin; carmine, a deep red: - crimson."]},{"k":"H3759","v":["כַּרְמֶל","karmel","kar-mel'","From H3754; a planted field (garden, orchard, vineyard or park); by implication garden produce: - full (green) ears (of corn), fruitful field (place), plentiful (field)."]},{"k":"H3760","v":["כַּרְמֶל","karmel","kar-mel'","The same as H3759; Karmel, the name of a hill and of a town in Palestine: - Carmel, fruitful (plentiful) field, (place)."]},{"k":"H3761","v":["כַּרְמְלִי","karmelı̂y","kar-mel-ee'","Patronymic from H3760; a Karmelite or inhabitant of Karmel (the town): - Carmelite."]},{"k":"H3762","v":["כַּרְמְלִית","karmelı̂yth","kar-mel-eeth'","Feminine of H3761; a Karmelitess or female inhabitant of Karmel: - Carmelitess."]},{"k":"H3763","v":["כְּרָן","kerân","ker-awn'","Of uncertain derivation; Keran, an aboriginal Idumaean: - Cheran."]},{"k":"H3764","v":["כָּרְסֵא","korsê'","kor-say'","(Chaldee); corresponding to H3678; a throne: - throne."]},{"k":"H3765","v":["כִּרְסֵם","kirsêm","kir-same'","From H3697; to lay waste: - waste."]},{"k":"H3766","v":["כָּרַע","kâra‛","kaw-rah'","A primitive root; to bend the knee; by implication to sink, to prostrate: - bow (down, self), bring down (low), cast down, couch, fall, feeble, kneeling, sink, smite (stoop) down, subdue, X very."]},{"k":"H3767","v":["כָּרָע","kârâ‛","kaw-raw'","From H3766; the leg (from the knee to the ankle) of men or locusts (only in the dual): - leg."]},{"k":"H3768","v":["כַּרְפַּס","karpas","kar-pas'","Of foreign origin; byssus or fine vegetable wool: - green."]},{"k":"H3769","v":["כָּרַר","kârar","kaw-rar'","A primitive root; to dance (that is, whirl): - dance (-ing)."]},{"k":"H3770","v":["כְּרֵשׂ","kerêś","ker-ace'","By variation from H7164; the paunch or belly (as swelling out): - belly."]},{"k":"H3771","v":["כַּרְשְׁנָא","karshenâ'","kar-shen-aw'","Of foreign origin; Karshena, a courtier of Xerxes: - Carshena."]},{"k":"H3772","v":["כָּרַת","kârath","kaw-rath'","A primitive root; to cut (off, down or asunder); by implication to destroy or consume; specifically to covenant (that is, make an alliance or bargain, originally by cutting flesh and passing between the pieces): - be chewed, be con- [feder-] ate, covenant, cut (down, off), destroy, fail, feller, be freed, hew (down), make a league ([covenant]), X lose, perish, X utterly, X want."]},{"k":"H3773","v":["כָּרֻתָה","kârûthâh","kaw-rooth-aw'","Passive participle feminine of H3772; something cut, that is, a hewn timber: - beam."]},{"k":"H3774","v":["כְּרֵתִי","kerêthı̂y","ker-ay-thee'","Probably from H3772 in the sense of executioner; a Kerethite or life guardsman (compare H3876), (only collectively in the singular as plural): - Cherethims, Cherethites."]},{"k":"H3775","v":["כֶּשֶׂב","keśeb","keh'-seb","Apparently by transposition for H3532; a young sheep: - lamb, sheep."]},{"k":"H3776","v":["כִּשְׂבָּה","kiśbâh","kis-baw'","Feminine of H3775; a young ewe: - lamb."]},{"k":"H3777","v":["כֶּשֶׂד","keśed","keh'-sed","From an unused root of uncertain meaning; Kesed, a relative of Abraham: - Chesed."]},{"k":"H3778","v":["כַּשְׂדִּימָה    כַּשְׂדִּי","kaśdı̂y    kaśdı̂ymâh","kas-dee', kas-dee'-maw","(Occasionally shown as the second form with enclitic; meaning towards the Kasdites); patronymic from H3777 (only in the plural); a Kasdite, or descendant of Kesed; by implication a Chaldaean (as if so descended); also an astrologer (as if proverbial of that people): - into Chaldea), patronymicallyn. from H3777 (only in the plural); a Kasdite; or descendant of Kesed; by implication a Chaldan (as if so descended); also an astrologer (as if proverbial of that people): - Chaldeans, Chaldees, inhabitants of Chaldea."]},{"k":"H3779","v":["כַּשְׂדַּי","kaśday","kas-dah'ee","(Chaldee); corresponding to H3778; a Chaldaean or inhabitant of Chaldaea; by implication a Magian or professional astrologer: - Chaldean."]},{"k":"H3780","v":["כָּשָׂה","kâśâh","kaw-saw'","A primitive root; to grow fat (that is, be covered with flesh): - be covered. Compare H3680."]},{"k":"H3781","v":["כַּשִּׁיל","kashshı̂yl","kash-sheel'","From H3782; properly a feller, that is, an axe: - ax."]},{"k":"H3782","v":["כָּשַׁל","kâshal","kaw-shal'","A primitive root; to totter or waver (through weakness of the legs, especially the ankle); by implication to falter, stumble, faint or fall: - bereave [from the margin], cast down, be decayed, (cause to) fail, (cause, make to) fall (down, -ing), feeble, be (the) ruin (-ed, of), (be) overthrown, (cause to) stumble, X utterly, be weak."]},{"k":"H3783","v":["כִּשָּׁלוֹן","kishshâlôn","kish-shaw-lone'","From H3782; properly a tottering, that is, ruin: - fall."]},{"k":"H3784","v":["כָּשַׁף","kâshaph","kaw-shaf'","A primitive root; properly to whisper a spell, that is, to inchant or practise magic: - sorcerer, (use) witch (-craft)."]},{"k":"H3785","v":["כֶּשֶׁף","kesheph","keh'-shef","From H3784; magic: - sorcery, witchcraft."]},{"k":"H3786","v":["כַּשָּׁף","kashshâph","kash-shawf'","From H3784; a magician: - sorcerer."]},{"k":"H3787","v":["כָּשֵׁר","kâshêr","kaw-share'","A primitive root properly to be straight or right; by implication to be acceptable; also to succeed or proser: - direct, be right, prosper."]},{"k":"H3788","v":["כִּשְׁרוֹן","kishrôn","kish-rone'","From H3787; success, advantage: - equity, good, right."]},{"k":"H3789","v":["כָּתַב","kâthab","kaw-thab'","A primitive root; to grave; by implication to write (describe, inscribe, prescribe, subscribe): - describe, record, prescribe, subscribe, write (-ing, -ten)."]},{"k":"H3790","v":["כְּתַב","kethab","keth-ab'","(Chaldee); corresponding to H3789: - write (-ten)."]},{"k":"H3791","v":["כָּתָב","kâthâb","kaw-thawb'","From H3789; something written, that is, a writing, record or book: - register, scripture, writing."]},{"k":"H3792","v":["כְּתָב","kethâb","keth-awb'","(Chaldee); corresponding to H3791: - prescribing, writing (-ten)."]},{"k":"H3793","v":["כְּתֹבֶת","kethôbeth","keth-o'-beth","From H3789; a letter or other mark branded on the skin: -    X any [mark]."]},{"k":"H3794","v":["כִּתִּיִּי    כִּתִּי","kittı̂y    kittı̂yı̂y","kit-tee', kit-tee-ee'","Patrial from an unused name denoting Cyprus (only in the plural); a Kittite or Cypriote; hence an islander in general, that is, the Greeks or Romans on the shores opposite Palestine: - Chittim, Kittim."]},{"k":"H3795","v":["כָּתִית","kâthı̂yth","kaw-theeth'","From H3807; beaten, that is, pure (oil): - beaten."]},{"k":"H3796","v":["כֹּתֶל","kôthel","ko'-thel","From an unused root meaning to compact; a wall (as gathering inmates): - wall."]},{"k":"H3797","v":["כְּתַל","kethal","keth-al'","(Chaldee); corresponding to H3796: - wall."]},{"k":"H3798","v":["כִּתְלִישׁ","kithlı̂ysh","kith-leesh'","From H3796 and H376; wall of a man; Kithlish, a place in Palestine: - Kithlish."]},{"k":"H3799","v":["כָּתַם","kâtham","kaw-tham'","A primitive root; properly to carve or engrave, that is, (by implication) to inscribe indelibly: - mark."]},{"k":"H3800","v":["כֶּתֶם","kethem","keh'-them","From H3799; properly something carved out, that is, ore; hence gold (pure as originally mined): - ([most] fine, pure) gold (-en wedge)."]},{"k":"H3801","v":["כֻּתֹּנֶת    כְּתֹנֶת","kethôneth    kûttôneth","keth-o'-neth, koot-to'-neth","From an unused root meaning to cover (compare H3802); a shirt: - coat, garment, robe."]},{"k":"H3802","v":["כָּתֵף","kâthêph","kaw-thafe'","From an unused root meaning to clothe; the shoulder (proper, that is, upper end of the arm; as being the spot where the garments hang); figuratively side piece or lateral projection or anything: - arm, corner, shoulder (-piece), side, undersetter."]},{"k":"H3803","v":["כָּתַר","kâthar","kaw-thar'","A primitive root; to enclose; hence (in a friendly sense) to crown, (in a hostile one) to besiege; also to wait (as restraining oneself): - beset round, compass about, be crowned inclose round, suffer."]},{"k":"H3804","v":["כֶּתֶר","kether","keh'-ther","From H3803; properly a circlet, that is, a diadem: - crown."]},{"k":"H3805","v":["כֹּתֶרֶת","kôthereth","ko-theh'-reth","Feminine active participle of H3803; the capital of a column: - chapiter."]},{"k":"H3806","v":["כָּתַשׁ","kâthash","kaw-thash'","A primitive root; to butt or pound: - bray."]},{"k":"H3807","v":["כָּתַת","kâthath","kaw-thath'","A primitive root; to bruise or violently strike: - beat (down, to pieces), break in pieces, crushed, destroy, discomfit, smite, stamp."]},{"k":"H3808","v":["לֹה    לוֹא    לֹא","lô'    lô'    lôh","lo, lo, lo","lo; a primitive particle; not (the simple or abstract negation); by implication no; often used with other particles: -    X before, + or else, ere, + except, ig [-norant], much, less, nay, neither, never, no ([-ne], -r, [-thing]), (X as though . . . , [can-], for) not (out of), of nought, otherwise, out of, + surely, + as truly as, + of a truth, + verily, for want, + whether, without."]},{"k":"H3809","v":["לָה    לָא","lâ'    lâh","law, law","(Chaldee); corresponding to H3808: - or even, neither, no (-ne, -r), ([can-]) not, as nothing, without."]},{"k":"H3810","v":["לֹדְבַר    לִדְבִר    לוֹ דְבַר    לֹא דְבַר","lô' debar    lô debar    lidbir    lôdebar","(1,2) lo deb-ar', lid-beer', lo-deb-ar'","From H3808 and H1699; pastureless; lo Debar, a place in Palestine: - Debir, Lo-debar."]},{"k":"H3811","v":["לָאָה","lâ'âh","law-aw'","A primitive root; to tire; (figuratively) to be (or make) disgusted: - faint, grieve, lothe, (be, make) weary (selves)."]},{"k":"H3812","v":["לֵאָה","lê'âh","lay-aw'","From H3811; weary; Leah, a wife of Jacob: - Leah."]},{"k":"H3813","v":["לָאַט","lâ'aṭ","law-at'","A primitive root; to muffle: - cover."]},{"k":"H3814","v":["לָאט","lâ'ṭ","lawt","From H3813 (or perhaps for active participle of H3874); properly muffled, that is, silently: - softly."]},{"k":"H3815","v":["לָאֵל","lâ'êl","law-ale'","From the prepositional prefix and H410; (belonging) to God; Lael an Israelite: - Lael."]},{"k":"H3816","v":["לְאוֹם    לְאֹם","le'ôm    le'ôm","leh-ome', leh-ome'","From an unused root meaning to gather; a community: - nation, people."]},{"k":"H3817","v":["לְאֻמִּים","le'ûmmı̂ym","leh-oom-meem'","Plural of H3816; communities; Leum mim, an Arabian: - Leummim."]},{"k":"H3818","v":["לֹא עַמִּי","lô' ‛ammı̂y","lo am-mee'","From H3808 and H5971 with pronominal suffix, not my people; lo Ammi, the symbolical name of a son of Hosea: - Lo-ammi."]},{"k":"H3819","v":["לֹא רֻחָמָה","lô' rûchâmâh","lo roo-khaw-maw'","From H3808 and H7355; not pitied; lo Ruchamah, the symbolical name of a son of Hosea: - Lo-ruhamah."]},{"k":"H3820","v":["לֵב","lêb","labe","A form of H3824; the heart; also used (figuratively) very widely for the feelings, the will and even the intellect; likewise for the centre of anything: -    + care for, comfortably, consent, X considered, courag [-eous], friend [-ly], ([broken-], [hard-], [merry-], [stiff-], [stout-], double) heart ([-ed]), X heed, X I, kindly, midst, mind (-ed), X regard ([-ed)], X themselves, X unawares, understanding, X well, willingly, wisdom."]},{"k":"H3821","v":["לֵב","lêb","labe","(Chaldee); corresponding to H3820: - heart."]},{"k":"H3822","v":["לְבָאוֹת","lebâ'ôth","leb-aw-oth'","Plural of H3833; lionesses; Lebaoth, a place in Palestine: - Lebaoth. See also H1034."]},{"k":"H3823","v":["לָבַב","lâbab","law-bab'","A primitive root; properly to be enclosed (as if with fat); by implication (as denominative from H3824) to unheart, that is, (in a good sense) transport (with love), or (in a bad sense) stultify; also (as denominative from H3834) to make cakes: - make cakes, ravish, be wise."]},{"k":"H3824","v":["לֵבָב","lêbâb","lay-bawb'","From H3823; the heart (as the most interior organ); used also like H3820: -    + bethink themselves, breast, comfortably, courage, ([faint], [tender-] heart([-ed]), midst, mind, X unawares, understanding."]},{"k":"H3825","v":["לְבַב","lebab","leb-ab'","(Chaldee); corresponding to H3824: - heart."]},{"k":"H3826","v":["לִבָּה","libbâh","lib-baw'","Feminine of H3820; the heart: - heart."]},{"k":"H3827","v":["לַבָּה","labbâh","lab-baw'","For H3852; flame: - flame."]},{"k":"H3828","v":["לְבֹנָה    לְבוֹנָה","lebônâh    lebônâh","leb-o-naw', leb-o-naw'","From H3826; frankincense (from its whiteness or perhaps that of its smoke): - (frank-) incense."]},{"k":"H3829","v":["לְבוֹנָה","lebônâh","leb-o-naw'","The same as H3828; Lebonah, a place in Palestine: - Lebonah."]},{"k":"H3830","v":["לְבֻשׁ    לְבוּשׁ","lebûsh    lebûsh","leb-oosh', leb-oosh'","From H3847; a garment (literally or figuratively); by implication (euphemistically) a wife: - apparel, clothed with, clothing, garment, raiment, vestment, vesture."]},{"k":"H3831","v":["לְבוּשׁ","lebûsh","leb-oosh'","(Chaldee); corresponding to H3830: - garment."]},{"k":"H3832","v":["לָבַט","lâbaṭ","law-bat'","A primitive root; to overthrow; intransitively to fall: - fall."]},{"k":"H3833","v":["לְבָאוֹת    לְבָאִים    לְבִיָּא    לָבִיא","lâbı̂y'    lebı̂yâ'    lebâ'ı̂ym    lebâ'ôth","law-bee' leb-ee-yaw' leb-aw-eem' (-oth')","From an unused root meaning to roar; a lion (properly a lioness as the fiercer (although not a roarer; compare H738)): - (great, old, stout) lion, lioness, young [lion]."]},{"k":"H3834","v":["לְבִבָה    לָבִיבָה","lâbı̂ybâh    lebibâh","law-bee-baw', leb-ee-baw'","From H3823 in its original sense of fatness (or perhaps of folding); a cake (either as fried or turned): - cake."]},{"k":"H3835","v":["לָבַן","lâban","law-ban'","A primitive root; to be (or become) white; also (as denominative from H3843) to make bricks: - make brick, be (made, make) white (-r)."]},{"k":"H3836","v":["לָבֵן    לָבָן","lâbân    lâbên","law-bawn', law-bane'","From H3835; white: - white."]},{"k":"H3837","v":["לָבָן","lâbân","law-bawn'","The same as H3836; Laban, a Mesopotamian; also a place in the Desert: - Laban."]},{"k":"H3838","v":["לְבָנָה    לְבָנָא","lebânâ'    lebânâh","leb-aw-naw', leb-aw-naw'","The same as H3842; Lebana or Lebanah, one of the Nethinim: - Lebana, Lebanah."]},{"k":"H3839","v":["לִבְנֶה","libneh","lib-neh'","From H3835; some sort of whitish tree, perhaps the storax: - poplar."]},{"k":"H3840","v":["לִבְנָה","libnâh","lib-naw'","From H3835; properly whiteness, that is, (by implication) transparency: - paved."]},{"k":"H3841","v":["לִבְנָה","libnâh","lib-naw'","The same as H3839; Libnah, a place in the Desert and one in Palestine: - Libnah."]},{"k":"H3842","v":["לְבָנָה","lebânâh","leb-aw-naw'","From H3835; properly (the) white, that is, the moon: - moon. See also H3838."]},{"k":"H3843","v":["לְבֵנָה","lebênâh","leb-ay-naw'","From H3835; a brick (from the whiteness of the clay): - (altar of) brick, tile."]},{"k":"H3844","v":["לְבָנוֹן","lebânôn","leb-aw-nohn'","From H3825; (the) white mountain (from its snow); Lebanon, a mountain range in Palestine: - Lebanon."]},{"k":"H3845","v":["לִבְנִי","libnı̂y","lib-nee'","From H3835; white; Libni, an Israelite: - Libni."]},{"k":"H3846","v":["לִבְנִי","libnı̂y","lib-nee'","Patronymic from H3845; a Libnite or descendant of Libni (collectively): - Libnites."]},{"k":"H3847","v":["לָבֵשׁ    לָבַשׁ","lâbash    lâbêsh","law-bash', law-bashe'","A primitive root; properly wrap around, that is, (by implication) to put on a garment or clothe (oneself, or another), literally or figuratively: - (in) apparel, arm, array (self), clothe (self), come upon, put (on, upon), wear."]},{"k":"H3848","v":["לְבַשׁ","lebash","leb-ash'","(Chaldee); corresponding to H3847: - clothe."]},{"k":"H3849","v":["לֹג","lôg","lohg","From an unused root apparently meaning to deepen or hollow (like H3537); a log or measure for liquids: - log [of oil]."]},{"k":"H3850","v":["לֹד","lôd","lode","From an unused root of uncertain signification; Lod, a place in Palestine: - Lod."]},{"k":"H3851","v":["לַהַב","lahab","lah'-hab","From an unused root meaning to gleam, a flash; figuratively a sharply polished blade or point of a weapon: - blade, bright, flame, glittering."]},{"k":"H3852","v":["לַהֶבֶת    לֶהָבָה","lehâbâh    lahebeth","leh-aw-baw', lah-eh'-beth","Feminine of H3851, and meaning the same: - flame (-ming), head [of a spear]."]},{"k":"H3853","v":["לְהָבִים","lehâbı̂ym","leh-haw-beem'","Plural of H3851; flames; Lehabim, a son of Mizrain, and his descendents: - Lehabim."]},{"k":"H3854","v":["לַהַג","lahag","lah'-hag","From an unused root meaning to be eager; intense mental application: - study."]},{"k":"H3855","v":["לַהַד","lahad","lah'-had","From an unused root meaning to glow (compare H3851) or else to be earnest (compare H3854); Lahad, an Israelite: - Lahad."]},{"k":"H3856","v":["לָהַהּ","lâhahh","law-hah'","A primitive root meaning properly to burn, that is, (by implication) to be rabid (figuratively insane); also (from the exhaustion of frenzy) to languish: - faint, mad."]},{"k":"H3857","v":["לָהַט","lâhaṭ","law-hat'","A primitive root; properly to lick, that is, (by implication) to blaze: - burn (up), set on fire, flaming, kindle."]},{"k":"H3858","v":["לַהַט","lahaṭ","lah'-hat","From H3857; a blaze; also (from the idea of enwrapping) magic (as covert): - flaming, enchantment."]},{"k":"H3859","v":["לָהַם","lâham","law-ham'","A primitive root; properly to burn in, that is, (figuratively) to rankle: - wound."]},{"k":"H3860","v":["לָהֵן","lâhên","law-hane'","From the prefixed preposition meaning to or for and H2005; for if; hence therefore. for them by mistake for prepositional suffix: - for them [by mistake for prepositionsuffix]."]},{"k":"H3861","v":["לָהֵן","lâhên","law-hane'","(Chaldee); corresponding to H3860; therefore; also except: - but, except, save, therefore, wherefore."]},{"k":"H3862","v":["לַהֲקָה","lahăqâh","lah-hak-aw'","Probably from an unused root meaning to gather; an assembly: - company."]},{"k":"H3863","v":["לוּ    לֻא    לוּא","lû'    lû'    lû","loo, loo, loo","A conditional particle; if; by implication (interjectionally as a wish) would that!: - if (haply), peradventure, I pray thee, though, I would, would God (that)."]},{"k":"H3864","v":["לֻבִּי    לוּבִי","lûbı̂y    lûbbı̂y","loo-bee', loob-bee'","Patrial from a name probably derived from an unused root meaning to thirst, that is, a dry region; apparently a Libyan or inhabitant of interior Africa (only in plural): - Lubim (-s), Libyans."]},{"k":"H3865","v":["לוּד","lûd","lood","Probably of foreign derivation; Lud, the name of two nations: - Lud, Lydia."]},{"k":"H3866","v":["לוּדִיִּי    לוּדִי","lûdı̂y    lûdı̂yı̂y","loo-dee', loo-dee-ee'","Patrial from H3865; a Ludite or inhabitant of Lud (ony in plural): - Ludim, Lydians."]},{"k":"H3867","v":["לָוָה","lâvâh","law-vaw'","A primitive root; properly to twine, that is, (by implication) to unite, to remain; also to borrow (as a form of obligation) or (causatively) to lend: - abide with, borrow (-er), cleave, join (self), lend (-er)."]},{"k":"H3868","v":["לוּז","lûz","looz","A primitive root; to turn aside (compare H3867, H3874 and H3885), that is, (literally) to depart, (figuratively) be perverse: - depart, froward, perverse (-ness)."]},{"k":"H3869","v":["לוּז","lûz","looz","Probably of foreign origin; some kind of nut tree, perhaps the almond: - hazel."]},{"k":"H3870","v":["לוּז","lûz","looz","Probably from H3869 (as growing there); Luz, the name of two places in Palestine: - Luz."]},{"k":"H3871","v":["לֻחַ    לוּחַ","lûach    lûach","loo'-akh, loo'-akh","From a primitive root; probably meaning to glisten; a tablet (as polished), of stone, wood or metal: - board, plate, table."]},{"k":"H3872","v":["לֻחוֹת    לוּחִית","lûchı̂yth    lûchôth","loo-kheeth', loo-khoth'","From the same as H3871; floored; Luchith, a place East of the Jordan: - Luhith."]},{"k":"H3873","v":["לוֹחֵשׁ","lôchêsh","lo-khashe'","Active participle of H3907; (the) enchanter; Lochesh, an Israelite: - Hallohesh, Haloshesh [includ. the article]"]},{"k":"H3874","v":["לוּט","lûṭ","loot","A primitive root; to wrap up: - cast, wrap."]},{"k":"H3875","v":["לוֹט","lôṭ","lote","From H3874; a veil: - covering."]},{"k":"H3876","v":["לוֹט","lôṭ","lote","The same as H3875; Lot, Abraham’s nephew: - Lot."]},{"k":"H3877","v":["לוֹטָן","lôṭân","lo-tawn'","From H3875; covering, Lotan, an Idumaean: - Lotan."]},{"k":"H3878","v":["לֵוִי","lêvı̂y","lay-vee'","From H3867; attached; Levi, a son of Jacob: - Levi. See also H3879, H3881."]},{"k":"H3879","v":["לֵוִי","lêvı̂y","lay-vee'","(Chaldee); corresponding to H3880: - Levite."]},{"k":"H3880","v":["לִוְיָה","livyâh","liv-yaw'","From H3867; something attached, that is, a wreath: - ornament."]},{"k":"H3881","v":["לֵוִי    לֵוִיִּי","lêvı̂yı̂y    lêvı̂y","lay-vee-ee', lay-vee'","Patronymic from H3878; a Leviite or descendant of Levi: - Levite."]},{"k":"H3882","v":["לִוְיָתָן","livyâthân","liv-yaw-thawn'","From H3867; a wreathed animal, that is, a serpent (especially the crocodile or some other large sea monster); figuratively the constellation of the dragon; also as a symbol of Babylon: - leviathan, mourning."]},{"k":"H3883","v":["לוּל","lûl","lool","From an unused root meaning to fold back; a spiral step: - winding stair. Compare H3924."]},{"k":"H3884","v":["לוּלֵי    לוּלֵא","lûlê'    lûlêy","loo-lay', loo-lay'","From H3863 and H3808; if not: - except, had not, if (. . . not), unless, were it not that."]},{"k":"H3885","v":["לִין    לוּן","lûn    lı̂yn","loon, leen","A primitive root; to stop (usually over night); by implication to stay permanently; hence (in a bad sense) to be obstinate (especially in words, to complain): - abide (all night), continue, dwell, endure, grudge, be left, lie all night, (cause to) lodge (all night, in, -ing, this night), (make to) murmur, remain, tarry (all night, that night)."]},{"k":"H3886","v":["לוּעַ","lûa‛","loo'-ah","A primitive root; to gulp; figuratively to be rash: - swallow down (up)."]},{"k":"H3887","v":["לוּץ","lûts","loots","A primitive root; properly to make mouths at, that is, to scoff; hence (from the effort to pronounce a foreign language) to interpret, or (generally) intercede: - ambassador, have in derision, interpreter, make a mock, mocker, scorn (-er, -ful), teacher."]},{"k":"H3888","v":["לוּשׁ","lûsh","loosh","A primitive root; to knead: - knead."]},{"k":"H3889","v":["לוּשׁ","lûsh","loosh","From H3888; kneading; Lush, a place in Palestine: - Laish [from the margin]. Compare H3919."]},{"k":"H3890","v":["לְוָת","levâth","lev-awth'","(Chaldee); from a root corresponding to H3867; properly adhesion, that is, (as preposition) with: -  X thee."]},{"k":"H3891","v":["לְזוּת","lezûth","lez-ooth'","From H3868; perverseness: - perverse."]},{"k":"H3892","v":["לַח","lach","lakh","From an unused root meaning to be new; fresh, that is, unused or undried: - green, moist."]},{"k":"H3893","v":["לֵחַ","lêach","lay'-akh","From the same as H3892; freshness, that is, vigor: - natural force."]},{"k":"H3894","v":["לָחֻם    לָחוּם","lâchûm    lâchûm","law-khoom', law-khoom'","Passive participle of H3898; properly eaten, that is, food; also flesh, that is, body: - while . . . is eating, flesh."]},{"k":"H3895","v":["לְחִי","lechı̂y","lekh-ee'","From an unused root meaning to be soft; the cheek (from its fleshiness); hence the jaw bone: - cheek (bone), jaw (bone)."]},{"k":"H3896","v":["לֶחִי","lechı̂y","lekh'-ee","A form of H3895; Lechi, a place in Palestine: - Lehi. Compare also H7437."]},{"k":"H3897","v":["לָחַךְ","lâchak","law-khak'","A primitive root; to lick: - lick (up)."]},{"k":"H3898","v":["לָחַם","lâcham","law-kham'","A primitive root; to feed on; figuratively to consume; by implication to battle (as destruction): - devour, eat, X ever, fight (-ing), overcome, prevail, (make) war (-ring)."]},{"k":"H3899","v":["לֶחֶם","lechem","lekh'-em","From H3898; food (for man or beast), especially bread, or grain (for making it): - ([shew-]) bread, X eat, food, fruit, loaf, meat, victuals. See also H1036."]},{"k":"H3900","v":["לְחֶם","lechem","lekh-em'","(Chaldee); corresponding to H3899: - feast."]},{"k":"H3901","v":["לָחֶם","lâchem","law-khem'","From H3898, battle: - war."]},{"k":"H3902","v":["לַחְמִי","lachmı̂y","lakh-mee'","From H3899; foodful; Lachmi, an Israelite; or rather probably a brief form (or perhaps an erroneous transcription) for H1022: - Lahmi. See also H3433."]},{"k":"H3903","v":["לַחְמָם    לַחְמָס","lachmâs    lachmâm","lakh-maws', lakh-mawm'","From H3899; food like; Lachmam or Lachmas, a place in Palestine: - Lahmam."]},{"k":"H3904","v":["לְחֵנָה","lechênâh","lekh-ay-naw'","(Chaldee); from an unused root of uncertain meaning; a concubine: - concubine."]},{"k":"H3905","v":["לָחַץ","lâchats","law-khats'","A primitive root; properly to press, that is, (figuratively) to distress: - afflict, crush, force, hold fast, oppress (-or), thrust self."]},{"k":"H3906","v":["לַחַץ","lachats","lakh'-ats","From H3905; distress: - affliction, oppression."]},{"k":"H3907","v":["לָחַשׁ","lâchash","law-khash'","A primitive root; to whisper; by implication to mumble a spell (as a magician): - charmer, whisper (together)."]},{"k":"H3908","v":["לַחַשׁ","lachash","lakh'-ash","From H3907; properly a whisper, that is, by implication (in a good sense) a private prayer, (in a bad one) an incantation; concretely an amulet: - charmed, earring, enchantment, orator, prayer."]},{"k":"H3909","v":["לָט","lâṭ","lawt","A form of H3814 or else partly from H3874; properly covered, that is, secret; by implication incantation; also secrecy or (adverbially) covertly: - enchantment, privily, secretly, softly."]},{"k":"H3910","v":["לֹט","lôṭ","lote","Probably from H3874; a gum (from its sticky nature), probably ladanum: - myrrh."]},{"k":"H3911","v":["לְטָאָה","leṭâ'âh","let-aw-aw'","From an unused root meaning to hide; a kind of lizard (from its covert habits): - lizard."]},{"k":"H3912","v":["לְטוּשִׁם","leṭûshim","let-oo-sheem'","Masculine plural of passive participle of H3913; hammered (that is, oppressed) ones; Letushim, an Arabian tribe: - Letushim."]},{"k":"H3913","v":["לָטַשׁ","lâṭash","law-tash'","A primitive root; properly to hammer out (an edge), that is, to sharpen: - instructer, sharp (-en), whet."]},{"k":"H3914","v":["לֹיָה","lôyâh","lo-yaw'","A form of H3880; a wreath: - addition."]},{"k":"H3915","v":["לַיְלָה    לֵיל    לַיִל","layil    lêyl    layelâh","lah'-yil, lale, lah'-yel-aw","From the same as H3883; properly a twist (away of the light), that is, night; figuratively adversity: - ([mid-]) night (season)."]},{"k":"H3916","v":["לֵילְיָא","lêyleyâ'","lay-leh-yaw'","(Chaldee); corresponding to H3915: - night."]},{"k":"H3917","v":["לִילִית","lı̂ylı̂yth","lee-leeth'","From H3915; a night spectre: - screech owl."]},{"k":"H3918","v":["לַיִשׁ","layish","lah'-yish","From H3888 in the sense of crushing; a lion (from his destructive blows): - (old) lion."]},{"k":"H3919","v":["לַיִשׁ","layish","lah'-yish","The same as H3918; Laish, the name of two places in Palestine: - Laish. Compare H3889."]},{"k":"H3920","v":["לָכַד","lâkad","law-kad'","A primitive root; to catch (in a net, trap or pit); generally to capture or occupy; also to choose (by lot); figuratively to cohere: -  X at all, catch (self), be frozen, be holden, stick together, take."]},{"k":"H3921","v":["לֶכֶד","leked","leh'-ked","From H3920; something to capture with, that is, a noose: - being taken."]},{"k":"H3922","v":["לֵכָה","lêkâh","lay-kaw'","From H3212; a journey; lekah, a place in Palestine: - Lecah."]},{"k":"H3923","v":["לָכִישׁ","lâkı̂ysh","law-keesh'","From an unused root of uncertain meaning; Lakish, a place in Palestine: - Lachish."]},{"k":"H3924","v":["לֻלָאָה","lûlâ'âh","loo-law-aw'","From the same as H3883; a loop: - loop."]},{"k":"H3925","v":["לָמַד","lâmad","law-mad'","A primitive root; properly to goad, that is, (by implication) to teach (the rod being an Oriental incentive): - [un-] accustomed, X diligently, expert, instruct, learn, skilful, teach (-er, -ing)."]},{"k":"H3926","v":["לְמוֹ","lemô","lem-o'","A prolonged and separable form of the prefixed preposition; to or for: - at, for, to, upon."]},{"k":"H3927","v":["לְמוֹאֵל    לְמוּאֵל","lemû'êl    lemô'êl","lem-oo-ale', lem-o-ale'","From H3926 and H410; (belonging) to God; Lemuel or Lemoel, a symbolical name of Solomon: - Lemuel."]},{"k":"H3928","v":["לִמֻּד    לִמּוּד","limmûd    limmûd","lim-mood', lim-mood'","From H3925; instructed: - accustomed, disciple, learned, taught, used."]},{"k":"H3929","v":["לֶמֶךְ","lemek","leh'-mek","From an unused root of uncertain meaning; Lemek, the name of two antediluvian patriarchs: - Lamech."]},{"k":"H3930","v":["לֹעַ","lôa‛","lo'ah","From H3886; the gullet: - throat."]},{"k":"H3931","v":["לָעַב","lâ‛ab","law-ab'","A primitive root; to deride: - mock."]},{"k":"H3932","v":["לָעַג","lâ‛ag","law-ag'","A primitive root; to deride; by implication (as if imitating a foreigner) to speak unintelligibly: - have in derision, laugh (to scorn), mock (on), stammering."]},{"k":"H3933","v":["לַעַג","la‛ag","lah'-ag","From H3932; derision, scoffing: - derision, scorn (-ing)."]},{"k":"H3934","v":["לָעֵג","lâ‛êg","law-ayg'","From H3932; a buffoon; also a foreigner: - mocker, stammering."]},{"k":"H3935","v":["לַעְדָּה","la‛dâh","lah-daw'","From an unused root of uncertain meaning; Ladah, an Israelite: - Laadah."]},{"k":"H3936","v":["לַעְדָּן","la‛dân","lah-dawn'","From the same as H3935; Ladan, the name of two Israelites: - Laadan."]},{"k":"H3937","v":["לָעַז","lâ‛az","law-az'","A primitive root; to speak in a foreign tongue: - strange language."]},{"k":"H3938","v":["לָעַט","lâ‛aṭ","law-at'","A primitive root; to swallow greedily; causatively to feed: - feed."]},{"k":"H3939","v":["לַעֲנָה","la‛ănâh","lah-an-aw'","From an unused root supposed to mean to curse; wormwood (regarded as poisonous, and therefore accursed): - hemlock, wormwood."]},{"k":"H3940","v":["לַפִּד    לַפִּיד","lappı̂yd    lappid","lap-peed', lap-peed'","From an unused root probably meaning to shine; a flambeau, lamp or flame: - (fire-) brand, (burning) lamp, lightning, torch."]},{"k":"H3941","v":["לַפִּידוֹת","lappı̂ydôth","lap-pee-doth'","Feminine plural of H3940; Lappidoth, the husband of Deborah: - Lappidoth."]},{"k":"H3942","v":["לִפְנַי","liphnay","lif-nah'ee","From the prefixed preposition (to or for) and H6440; anterior: - before."]},{"k":"H3943","v":["לָפַת","lâphath","law-fath'","A primitive root; properly to bend, that is, (by implication) to clasp; also (reflexively) to turn around or aside: - take hold, turn aside (self)."]},{"k":"H3944","v":["לָצוֹן","lâtsôn","law-tsone'","From H3887; derision: - scornful (-ning)."]},{"k":"H3945","v":["לָצַץ","lâtsats","law-tsats'","A primitive root; to deride: - scorn."]},{"k":"H3946","v":["לַקּוּם","laqûm","lak-koom'","From an unused root thought to mean to stop up by a barricade; perhaps fortification; Lakkum, a place in Palestine: - Lakum."]},{"k":"H3947","v":["לָקַח","lâqach","law-kakh'","A primitive root; to take (in the widest variety of applications): - accept, bring, buy, carry away, drawn, fetch, get, infold, X many, mingle, place, receive (-ing), reserve, seize, send for, take (away, -ing, up), use, win."]},{"k":"H3948","v":["לֶקַח","leqach","leh'-kakh","From H3947; properly something received, that is, (mentally) instruction (whether on the part of the teacher or hearer); also (in an active and sinister sense) inveiglement: - doctrine, learning, fair speech."]},{"k":"H3949","v":["לִקְחִי","liqchı̂y","lik-khee'","From H3947; learned; Likchi, an Israelite: - Likhi."]},{"k":"H3950","v":["לָקַט","lâqaṭ","law-kat'","A primitive root; properly to pick up, that is, (generally) to gather; specifically to glean: - gather (up), glean."]},{"k":"H3951","v":["לֶקֶט","leqeṭ","leh'-ket","From H3950; the gleaning: - gleaning."]},{"k":"H3952","v":["לָקַק","lâqaq","law-kak'","A primitive root; to lick or lap: - lap, lick."]},{"k":"H3953","v":["לָקַשׁ","lâqash","law-kash'","A primitive root; to gather the after crop: - gather."]},{"k":"H3954","v":["לֶקֶשׁ","leqesh","leh'-kesh","From H3953; the after crop: - latter growth."]},{"k":"H3955","v":["לְשַׁד","leshad","lesh-ad'","From an unused root of uncertain meaning; apparently juice, that is, (figuratively) vigor; also a sweet or fat cake: - fresh, moisture."]},{"k":"H3956","v":["לְשֹׁנָה    לָשֹׁן    לָשׁוֹן","lâshôn    lâshôn    leshônâh","law-shone', law-shone', lesh-o-naw'","From H3960; the tongue (of man or animals), used literally (as the instrument of licking, eating, or speech), and figuratively (speech, an ingot, a fork of flame, a cove of water): -    + babbler, bay, + evil speaker, language, talker, tongue, wedge."]},{"k":"H3957","v":["לִשְׁכָּה","lishkâh","lish-kaw'","From an unused root of uncertain meaning; a room in a building (whether for storage, eating, or lodging): - chamber, parlour. Compare H5393."]},{"k":"H3958","v":["לֶשֶׁם","leshem","leh'-shem","From an unused root of uncertain meaning; a gem, perhaps the jacinth: - ligure."]},{"k":"H3959","v":["לֶשֶׁם","leshem","leh'-shem","The same as H3958; Leshem, a place in Palestine: - Leshem."]},{"k":"H3960","v":["לָשַׁן","lâshan","law-shan'","A primitive root; properly to lick; but used only as a denominative from H3956; to wag the tongue, that is, to calumniate: - accuse, slander."]},{"k":"H3961","v":["לִשָּׁן","lishshân","lish-shawn'","(Chaldee); corresponding to H3956; speech, that is, a nation: - language."]},{"k":"H3962","v":["לֶשַׁע","lesha‛","leh'-shah","From an unused root thought to mean to break through; a boiling spring; Lesha, a place probably East of the Jordan: - Lasha."]},{"k":"H3963","v":["לֶתֶךְ","lethek","leh'-thek","From an unused root of uncertain meaning; a measure for things dry: - half homer."]},{"k":"H3964","v":["מָא","mâ'","maw","(Chaldee); corresponding to H4100; (as indefinite) that: -  + what."]},{"k":"H3965","v":["מַאֲבוּס","ma'ăbûs","mah-ab-ooce'","From H75; a granary: - storehouse."]},{"k":"H3966","v":["מְאֹד","me'ôd","meh-ode'","From the same as H181; properly vehemence, that is, (with or without preposition) vehemently; by implication wholly, speedily, etc. (often with other words as an intensive or superlative; especially when repeated): - diligently, especially, exceeding (-ly), far, fast, good, great (-ly), X louder and louder, might (-ily, -y), (so) much, quickly, (so) sore, utterly, very (+ much, sore), well."]},{"k":"H3967","v":["מֵאיָה    מֵאָה","mê'âh    mê'yâh","may-aw', may-yaw'","Probably a primitive numeral; a hundred; also as a multiplicative and a fraction: - hundred ([-fold], -th), + sixscore."]},{"k":"H3968","v":["מֵאָה","mê'âh","may-aw'","The same as H3967; Meah, a tower in Jerusalem: - Meah."]},{"k":"H3969","v":["מְאָה","me'âh","meh-aw'","(Chaldee); corresponding to H3967: - hundred."]},{"k":"H3970","v":["מַאֲוַי","ma'ăvay","mah-av-ah'ee","From H183; a desire: - desire."]},{"k":"H3971","v":["מוּם    מאוּם","m'ûm    mûm","moom, moom","As if passive participle from an unused root probably meaning to stain; a blemish (physical or moral): - blemish, blot, spot."]},{"k":"H3972","v":["מְאוּמָה","me'ûmâh","meh-oo'-maw","Apparently a form of H3971; properly a speck or point, that is, (by implication) something; with negative nothing: - fault, + no (-ught), ought, somewhat, any ([no-]) thing."]},{"k":"H3973","v":["מָאוֹס","mâ'ôs","maw-oce'","From H3988; refuse: - refuse."]},{"k":"H3974","v":["מְאֹרָה    מְאוֹרָה    מָאֹר    מָאוֹר","mâ'ôr    mâ'ôr    me'ôrâh    me'ôrâh","(1,2) maw-ore', (3,4) meh-o-raw'","From H215; properly a luminous body or luminary, that is, (abstractly) light (as an element); figuratively brightness, that is, cheerfulness; specifically a chandelier: - bright, light."]},{"k":"H3975","v":["מְאוּרָה","me'ûrâh","meh-oo-raw'","Feminine passive participle of H215; something lighted, that is, an aperture; by implication a crevice or hole of a serpent: - den."]},{"k":"H3976","v":["מֹאזֵן","mô'zên","mo-zane'","From H239; (only in the dual) a pair of scales: - balances."]},{"k":"H3977","v":["מֹאזֵן","mô'zên","mo-zane'","(Chaldee); corresponding to H3976: - balances."]},{"k":"H3978","v":["מַאֲכָל","ma'ăkâl","mah-ak-awl'","From H398; an eatable (including provender, flesh and fruit): - food, fruit, ([bake-]) meat (-s), victual."]},{"k":"H3979","v":["מַאֲכֶלֶת","ma'ăkeleth","mah-ak-eh'-leth","From H398; something to eat with, that is, a knife: - knife."]},{"k":"H3980","v":["מַאֲכֹלֶת","ma'ăkôleth","mah-ak-o'-leth","From H398; something eaten (by fire), that is, fuel: - fuel."]},{"k":"H3981","v":["מַאֲמָץ","ma'ămâts","mah-am-awts'","From H553; strength, that is, (plural) resources: - force."]},{"k":"H3982","v":["מַאֲמַר","ma'ămar","mah-am-ar'","From H559; something (authoritatively) said, that is, an edict: - commandment, decree."]},{"k":"H3983","v":["מֵאמַר","mê'mar","may-mar'","(Chaldee); corresponding to H3982: - appointment, word."]},{"k":"H3984","v":["מָאן","mâ'n","mawn","(Chaldee); probably from a root corresponding to H579 in the sense of an inclosure by sides; a utensil: - vessel."]},{"k":"H3985","v":["מָאֵן","mâ'ên","maw-ane'","A primitive root; to refuse: - refuse, X utterly."]},{"k":"H3986","v":["מָאֵן","mâ'ên","maw-ane'","From H3985; unwilling: - refuse."]},{"k":"H3987","v":["מֵאֵן","mê'ên","may-ane'","From H3985; refractory: - refuse."]},{"k":"H3988","v":["מָאַס","mâ'as","maw-as'","A primitive root; to spurn; also (intransitively) to disappear: - abhor, cast away (off), contemn, despise, disdain, (become) loathe (-some), melt away, refuse, reject, reprobate, X utterly, vile person."]},{"k":"H3989","v":["מַאֲפֶה","ma'ăpheh","mah-af-eh'","From H644; something baked, that is, a batch: - baken"]},{"k":"H3990","v":["מַאֲפֵל","ma'ăphêl","mah-af-ale'","From the same as H651; something opaque: - darkness."]},{"k":"H3991","v":["מַאֲפֵלְיָה","ma'ăphêleyâh","mah-af-ay-leh-yaw'","Prolonged feminine of H3990; opaqueness: - darkness."]},{"k":"H3992","v":["מָאַר","mâ'ar","maw-ar'","A primitive root; to be bitter or (causatively) to embitter, that is, be painful: - fretting, picking."]},{"k":"H3993","v":["מַאֲרָב","ma'ărâb","mah-ar-awb'","From H693; an ambuscade: - lie in ambush, ambushment, lurking place, lying in wait."]},{"k":"H3994","v":["מְאֵרָה","me'êrâh","meh-ay-raw'","From H779; an execration: - curse."]},{"k":"H3995","v":["מִבְדָּלָה","mibdâlâh","mib-daw-law'","From H914; a separation, that is, (concretely) a separate place: - separate."]},{"k":"H3996","v":["מָבוֹא","mâbô'","maw-bo'","From H935; an entrance (the place or the act); specifically (with or without H8121) sunset or the west; also (adverbially with preposition) towards: - by which came, as cometh, in coming, as men enter into, entering, entrance into, entry, where goeth, going down, + westward. Compare H4126."]},{"k":"H3997","v":["מְבוֹאָה","mebô'âh","meb-o-aw'","Feminine of H3996; a haven: - entry."]},{"k":"H3998","v":["מְבוּכָה","mebûkâh","meb-oo-kaw'","From H943; perplexity: - perplexity."]},{"k":"H3999","v":["מַבּוּל","mabbûl","mab-bool'","From H2986 in the sense of flowing; a deluge: - flood."]},{"k":"H4000","v":["מָבוֹן","mâbôn","maw-bone'","From H995; instructing: - taught."]},{"k":"H4001","v":["מְבוּסָה","mebûsâh","meb-oo-saw'","From H947; a trampling: - treading (trodden) down (under foot)."]},{"k":"H4002","v":["מַבּוּעַ","mabbûa‛","mab-boo'-ah","From H5042; a fountain: - fountain, spring."]},{"k":"H4003","v":["מְבוּקָה","mebûqâh","meb-oo-kah'","From the same as H950; emptiness: - void."]},{"k":"H4004","v":["מִבְחוֹר","mibchôr","mib-khore'","From H977; select, that is, well fortified: - choice."]},{"k":"H4005","v":["מִבְחָר","mibchâr","mib-khawr'","From H977; select, that is, best: - choice (-st), chosen."]},{"k":"H4006","v":["מִבְחָר","mibchâr","mib-khawr'","The same as H4005; Mibchar, an Israelite: - Mibhar."]},{"k":"H4007","v":["מֶבָּט    מַבָּט","mabbâṭ    mebbâṭ","mab-bawt', meb-bawt'","From H5027; something expected, that is, (abstractly) expectation: - expectation."]},{"k":"H4008","v":["מִבְטָא","mibṭâ'","mib-taw'","From H981; a rash utterance (hasty vow): - (that which . . . ) uttered (out of)."]},{"k":"H4009","v":["מִבְטָח","mibṭâch","mib-tawkh'","From H982; properly a refuge, that is, (objectively) security, or (subjectively) assurance: - confidence, hope, sure, trust."]},{"k":"H4010","v":["מַבְלִיגִית","mablı̂ygı̂yth","mab-leeg-eeth'","From H1082; desistance (or rather desolation): - comfort self."]},{"k":"H4011","v":["מִבְנֶה","mibneh","mib-neh'","From H1129; a building: - frame."]},{"k":"H4012","v":["מְבֻנַּי","mebûnnay","meb-oon-nah'ee","From H1129; built up; Mebunnai, an Israelite: - Mebunnai."]},{"k":"H4013","v":["מִבְצָרָה    מִבְצָר","mibtsâr    mibtsârâh","mib-tsawr', mib-tsaw-raw'","From H1219; a fortification, castle, or fortified city; figuratively a defender: - (de-, most) fenced, fortress, (most) strong (hold)."]},{"k":"H4014","v":["מִבְצָר","mibtsâr","mib-tsawr'","The same as H4013; Mibtsar, an Idumaean: - Mibzar."]},{"k":"H4015","v":["מִבְרָח","mibrâch","mib-rawkh'","From H1272; a refugee: - fugitive."]},{"k":"H4016","v":["מָבֻשׁ","mâbûsh","maw-boosh'","From H954; (plural) the (male) pudenda: - secrets."]},{"k":"H4017","v":["מִבְשָׂם","mibśâm","mib-sawm'","From the same as H1314; fragrant; Mibsam, the name of an Ishmaelite and of an Israelite: - Mibsam."]},{"k":"H4018","v":["מְבַשְּׁלָה","mebashelâh","meb-ash-shel-aw'","From H1310; a cooking hearth: - boiling-place."]},{"k":"H4019","v":["מַגְבִּישׁ","magbı̂ysh","mag-beesh'","From the same as H1378; stiffening; Magbish, an Israelite, or a place in Palestine: - Magbish."]},{"k":"H4020","v":["מִגְבָּלָה","migbâlâh","mig-baw-law'","From H1379; a border: - end."]},{"k":"H4021","v":["מִגְבָּעָה","migbâ‛âh","mig-baw-aw'","From the same as H1389; a cap (as hemispherical): - bonnet."]},{"k":"H4022","v":["מֶגֶד","meged","meh'-ghed","From an unused root properly meaning to be eminent; properly a distinguished thing; hence something valuable, as a product or fruit: - pleasant, precious fruit (thing)."]},{"k":"H4023","v":["מְגִדּוֹ    מְגִדּוֹן","megiddôn    megiddô","meg-id-done', meg-id-do'","From H1413; rendezvous; Megiddon or Megiddo, a place in Palestine: - Megiddo, Megiddon."]},{"k":"H4024","v":["מִגְדֹּל    מִגְדּוֹל","migdôl    migdôl","mig-dole', mig-dole'","Probably of Egyptian origin; Migdol, a place in Egypt: - Migdol, tower."]},{"k":"H4025","v":["מַגְדִּיאֵל","magdı̂y'êl","mag-dee-ale'","From H4022 and H410; preciousness of God; Magdiel, an Idumaean: - Magdiel."]},{"k":"H4026","v":["מִגְדָּלָה    מִגְדָּל","migdâl    migdâlâh","mig-dawl', mig-daw-law'","From H1431; a tower (from its size or height); by analogy a rostrum; figuratively a (pyramidal) bed of flowers: - castle, flower, pulpit, tower. Compare the names following."]},{"k":"H4027","v":["מִגְדַּל־אֵל","migdal-'êl","mig-dal-ale'","From H4026 and H410; tower of God; Migdal-El, a place in Palestine: - Migdal-el."]},{"k":"H4028","v":["מִגְדַּל־גָּד","migdal-gâd","mig-dal-gawd'","From H4026 and H1408; tower of Fortune; Migdal-Gad, a place in Palestine: - Migdal-gad."]},{"k":"H4029","v":["מִגְדַּל־עֵדֶר","migdal-‛êder","mig-dal'-ay'-der","From H4026 and H5739; tower of a flock; Migdal-Eder, a place in Palestine: - Migdal-eder, tower of the flock."]},{"k":"H4030","v":["מִגְדָּנָה","migdânâh","mig-daw-naw'","From the same as H4022; preciousness, that is, a gem: - precious thing, present."]},{"k":"H4031","v":["מָגוֹג","mâgôg","maw-gogue'","From H1463; Magog, a son of Japheth; also a barbarous northern region: - Magog."]},{"k":"H4032","v":["מָגוּר    מָגוֹר","mâgôr    mâgûr","maw-gore', maw-goor'","From H1481 in the sense of fearing; a fright (objectively or subjectively): - fear, terror. Compare H4036."]},{"k":"H4033","v":["מָגֻר    מָגוּר","mâgûr    mâgûr","maw-goor', maw-goor'","From H1481 in the sense of lodging; a temporary abode; by extension a permanent residence: - dwelling, pilgrimage, where sojourn, be a stranger. Compare H4032."]},{"k":"H4034","v":["מְגוֹרָה","megôrâh","meg-o-raw'","Feminine of H4032; affright: - fear."]},{"k":"H4035","v":["מְגוּרָה","megûrâh","meg-oo-raw'","Feminine of H4032 or of H4033; a fright; also a granary: - barn, fear."]},{"k":"H4036","v":["מָגוֹר מִסָּבִיב","mâgôr missâbı̂yb","maw-gore' mis-saw-beeb'","From H4032 and H5439 with the preposition inserted; affright from around; Magor-mis-Sabib, a symbolical name of Pashur: - Magor-missabib."]},{"k":"H4037","v":["מַגְזֵרָה","magzêrâh","mag-zay-raw'","From H1504; a cutting implement, that is, a blade: - axe."]},{"k":"H4038","v":["מַגָּל","maggâl","mag-gawl'","From an unused root meaning to reap; a sickle: - sickle."]},{"k":"H4039","v":["מְגִלָּה","megillâh","meg-il-law'","From H1556; a roll: - roll, volume."]},{"k":"H4040","v":["מְגִלָּה","megillâh","meg-il-law'","(Chaldee); corresponding to H4039: - roll."]},{"k":"H4041","v":["מְגַמָּה","megammâh","meg-am-maw'","From the same as H1571; properly accumulation, that is, impulse or direction: - sup up."]},{"k":"H4042","v":["מָגַן","mâgan","maw-gan'","A denominative from H4043; properly to shield; encompass with; figuratively to rescue, to hand safely over (that is, surrender): - deliver."]},{"k":"H4043","v":["מְגִנָּה    מָגֵן","mâgên    meginnâh","maw-gane', meg-in-naw'","From H1598; a shield (that is, the small one or buckler); figuratively a protector; also the scaly hide of the crocodile: -    X armed, buckler, defence, ruler, + scale, shield."]},{"k":"H4044","v":["מְגִנָּה","meginnâh","meg-in-naw'","From H4042; a covering (in a bad sense), that is, blindness or obduracy: - sorrow. See also H4043."]},{"k":"H4045","v":["מִגְעֶרֶת","mig‛ereth","mig-eh'-reth","From H1605; reproof (that is, curse): - rebuke."]},{"k":"H4046","v":["מַגֵּפָה","maggêphâh","mag-gay-faw'","From H5062; a pestilence; by analogy defeat: - (X be) plague (-d), slaughter, stroke."]},{"k":"H4047","v":["מַגְפִּיעָשׁ","magpı̂y‛âsh","mag-pee-awsh'","Apparently from H1479 or H5062 and H6211; exterminator of (the) moth; Magpiash, an Israelite: - Magpiash."]},{"k":"H4048","v":["מָגַר","mâgar","maw-gar'","A primitive root; to yield up; intensively to precipitate: - cast down, terror."]},{"k":"H4049","v":["מְגַר","megar","meg-ar'","(Chaldee); corresponding to H4048; to overthrow: - destroy."]},{"k":"H4050","v":["מְגֵרָה","megêrâh","meg-ay-raw'","From H1641; a saw: - axe, saw."]},{"k":"H4051","v":["מִגְרוֹן","migrôn","mig-rone'","From H4048; precipice; Migron, a place in Palestine: - Migron."]},{"k":"H4052","v":["מִגְרָעָה","migrâ‛âh","mig-raw-aw'","From H1639; a ledge or offset: - narrowed rest."]},{"k":"H4053","v":["מִגְרָפָה","migrâphâh","mig-raw-faw'","From H1640; something thrown off (by the spade), that is, a clod: - clod."]},{"k":"H4054","v":["מִגְרָשָׁה    מִגְרָשׁ","migrâsh    migrâshâh","mig-rawsh', mig-raw-shaw'","From H1644; a suburb (that is, open country whither flocks are driven for pasture); hence the area around a building, or the margin of the sea: - cast out, suburb."]},{"k":"H4055","v":["מֵד    מַד","mad    mêd","mad, made","From H4058; properly extent, that is, height; also a measure; by implication a vesture (as measured); also a carpet: - armour, clothes, garment, judgment, measure, raiment, stature."]},{"k":"H4056","v":["מַדְבַּח","madbach","mad-bakh'","(Chaldee); from H1648; a sacrificial altar: - altar."]},{"k":"H4057","v":["מִדְבָּר","midbâr","mid-bawr'","From H1696 in the sense of driving; a pasture (that is, open field, whither cattle are driven); by implication a desert; also speech (including its organs): - desert, south, speech, wilderness."]},{"k":"H4058","v":["מָדַד","mâdad","maw-dad'","A primitive root; properly to stretch; by implication to measure (as if by stretching a line); figuratively to be extended: - measure, mete, stretch self."]},{"k":"H4059","v":["מִדַּד","middad","mid-dad'","From H5074; flight: - be gone."]},{"k":"H4060","v":["מִדָּה","middâh","mid-daw'","Feminine of H4055; properly extension, that is, height or breadth; also a measure (including its standard); hence a portion (as measured) or a vestment; specifically tribute (as measured): - garment, measure (-ing, meteyard, piece, size, (great) stature, tribute, wide."]},{"k":"H4061","v":["מִנְדָּה    מִדָּה","middâh    mindâh","mid-daw', min-daw'","(Chaldee); corresponding to H4060; tribute in money: - toll, tribute."]},{"k":"H4062","v":["מַדְהֵבָה","madhêbâh","mad-hay-baw'","Perhaps from the equivalent of H1722; gold making, that is, exactress: - golden city."]},{"k":"H4063","v":["מֶדֶו","medev","meh'-dev","From an unused root meaning to stretch; properly extent, that is, measure; by implication a dress (as measured): - garment."]},{"k":"H4064","v":["מַדְוֶה","madveh","mad-veh'","From H1738; sickness: - disease."]},{"k":"H4065","v":["מַדּוּחַ","maddûach","mad-doo'-akh","From H5080; seduction: - cause of banishment."]},{"k":"H4066","v":["מָדוֹן","mâdôn","maw-dohn'","From H1777; a contest or quarrel: - brawling, contention (-ous), discord, strife. Compare H4079, H4090."]},{"k":"H4067","v":["מָדוֹן","mâdôn","maw-dohn'","From the same as H4063; extensiveness, that is, height: - stature."]},{"k":"H4068","v":["מָדוֹן","mâdôn","maw-dohn'","The same as H4067; Madon, a place in Palestine: - Madon."]},{"k":"H4069","v":["מַדֻּעַ    מַדּוּעַ","maddûa‛    maddûa‛","mad-doo'-ah, mad-doo'-ah","From H4100 and the passive participle of H3045; what (is) known?; that is, (by implication), (adverbially) why?: - how, wherefore, why."]},{"k":"H4070","v":["מְדָר    מְדֹר    מְדוֹר","medôr    medôr    medâr","med-ore', med-ore', med-awr'","From H1753; a dwelling: - dwelling."]},{"k":"H4071","v":["מְדֻרָה    מְדוּרָה","medûrâh    medûrâh","med-oo-raw', med-oo-raw'","From H1752 in the sense of accumulation; a pile of fuel: - pile (for fire)."]},{"k":"H4072","v":["מִדְחֶה","midcheh","mid-kheh'","From H1760; overthrow: - ruin."]},{"k":"H4073","v":["מְדַחְפָה","medachphâh","med-akh-faw'","From H1765; a push, that is, ruin: - overthrow."]},{"k":"H4074","v":["מָדַי","mâday","maw-dah'ee","Of foreign derivation; Madai, a country of central Asia: - Madai, Medes, Media."]},{"k":"H4075","v":["מָדַי","mâday","maw-dah'ee","Patrial from H4074; a Madian or native of Madai: - Mede."]},{"k":"H4076","v":["מָדַי","mâday","maw-dah'ee","(Chaldee); corresponding to H4074: - Mede (-s)."]},{"k":"H4077","v":["מָדַי","mâday","maw-dah'ee","(Chaldee); corresponding to H4075: - Median."]},{"k":"H4078","v":["מַדַּי","madday","mad-dah'ee","From H4100 and H1767; what (is) enough, that is, sufficiently: - sufficiently."]},{"k":"H4079","v":["מִדְיָן","midyân","mid-yawn'","A variation for H4066: - brawling, contention (-ous)."]},{"k":"H4080","v":["מִדְיָן","midyân","mid-yawn'","The same as H4079; Midjan, a son of Abraham; also his country and (collectively) his descendants: - Midian, Midianite."]},{"k":"H4081","v":["מִדִּין","middı̂yn","mid-deen'","A variation for H4080: - Middin."]},{"k":"H4082","v":["מְדִינָה","medı̂ynâh","med-ee-naw'","From H1777; properly a judgeship, that is, jurisdiction; by implication a district (as ruled by a judge); generally a region: - ( X every) province."]},{"k":"H4083","v":["מְדִינָה","medı̂ynâh","med-ee-naw'","(Chaldee); corresponding to H4082: - province."]},{"k":"H4084","v":["מִדְיָנִי","midyânı̂y","mid-yaw-nee'","Patronymic or patrial from H4080; a Midjanite or descendant (native) of Midjan: - Midianite. Compare H4092."]},{"k":"H4085","v":["מְדֹכָה","medôkâh","med-o-kaw'","From H1743; a mortar: - mortar."]},{"k":"H4086","v":["מַדְמֵן","madmên","mad-mane'","From the same as H1828; dunghill; Madmen, a place in Palestine: - Madmen."]},{"k":"H4087","v":["מַדְמֵנָה","madmênâh","mad-may-naw'","Feminine from the same as H1828; a dunghill: - dunghill."]},{"k":"H4088","v":["מַדְמֵנָה","madmênâh","mad-may-naw'","The same as H4087; Madmenah, a place in Palestine: - Madmenah."]},{"k":"H4089","v":["מַדְמַנָּה","madmannâh","mad-man-naw'","A variation for H4087; Madmannah, a place in Palestine: - Madmannah."]},{"k":"H4090","v":["מְדָן","medân","med-awn'","A form of H4066: - discord, strife."]},{"k":"H4091","v":["מְדָן","medân","med-awn'","The same as H4090; Medan, a son of Abraham: - Medan."]},{"k":"H4092","v":["מְדָנִי","medânı̂y","med-aw-nee'","A variation of H4084: - Midianite."]},{"k":"H4093","v":["מַדַּע    מַדָּע","maddâ‛    madda‛","mad-daw', mad-dah'","From H3045; intelligence or consciousness: - knowledge, science, thought."]},{"k":"H4094","v":["מַדְקָרָה","madqârâh","mad-kaw-raw'","From H1856; a wound: - piercing."]},{"k":"H4095","v":["מַדְרֵגָה","madrêgâh","mad-ray-gaw'","From an unused root meaning to step; properly a step; by implication a steep or inaccessible place: - stair, steep place."]},{"k":"H4096","v":["מִדְרָךְ","midrâk","mid-rawk'","From H1869; a treading, that is, a place for stepping on: - [foot-] breadth."]},{"k":"H4097","v":["מִדְרָשׁ","midrâsh","mid-rawsh'","From H1875; properly an investigation, that is, (by implication) a treatise or elaborate compilation: - story."]},{"k":"H4098","v":["מְדֻשָּׁה","medûshshâh","med-oosh-shaw'","From H1758; a threshing, that is, (concretely and figuratively) down trodden people: - threshing."]},{"k":"H4099","v":["מְדָתָא","medâthâ'","med-aw-thaw'","Of Persian origin; Medatha, the father of Haman. (Including the article.): - Hammedatha [includ. the article.]"]},{"k":"H4100","v":["מֶה    מַ־    מָ־    מַה    מָה","mâh    mah    mâ    ma    meh","maw, mah, maw, mah, meh","A primitive particle; properly interrogitive what? (including how?, why? and when?); but also exclamations like what! (including how!), or indefinitely what (including whatever, and even relatively that which); often used with prefixes in various adverbial or conjugational sneses: - how (long, oft, [-soever]), [no-] thing, what (end, good, purpose, thing), whereby (-fore, -in, -to, -with), (for) why."]},{"k":"H4101","v":["מָה","mâh","maw","(Chaldee); corresponding to H4100: - how great (mighty), that which, what (-soever), why."]},{"k":"H4102","v":["מָהַהּ","mâhahh","maw-hah'","Apparently a denominative from H4100; properly to question or hesitate, that is, (by implication) to be reluctant: - delay, linger, stay selves, tarry."]},{"k":"H4103","v":["מְהוּמָה","mehûmâh","meh-hoo-maw'","From H1949; confusion or uproar: - destruction, discomfiture, trouble, tumult, vexation, vexed."]},{"k":"H4104","v":["מְהוּמָן","mehûmân","meh-hoo-mawn'","Of Persian origin; Mehuman, a eunuch of Xerxes: - Mehuman."]},{"k":"H4105","v":["מְהֵיטַבְאֵל","mehêyṭab'êl","meh-hay-tab-ale'","From H3190 (augmented) and H410; bettered of God; Mehetabel, the name of an Edomitish man and woman: - Mehetabeel, Mehetabel."]},{"k":"H4106","v":["מָהִר    מָהִיר","mâhı̂yr    mâhir","maw-here', maw-here'","From H4116; quick; hence skilful: - diligent, hasty, ready."]},{"k":"H4107","v":["מָהַל","mâhal","maw-hal'","A primitive root; properly to cut down or reduce, that is, by implication to adulterate: - mixed."]},{"k":"H4108","v":["מַהְלֵךְ","mahlêk","mah-lake'","From H1980; a walking (plural collectively), that is, access: - place to walk."]},{"k":"H4109","v":["מַהֲלָךְ","mahălâk","mah-hal-awk'","From H1980; a walk, that is, a passage or a distance: - journey, walk."]},{"k":"H4110","v":["מַהֲלָל","mahălâl","mah-hal-awl'","From H1984; fame: - praise."]},{"k":"H4111","v":["מַהֲלַלְאֵל","mahălal'êl","mah-hal-al-ale'","From H4110 and H410; praise of God; Mahalalel, the name of an antediluvian patriarch and of an Israelite: - Mahalaleel."]},{"k":"H4112","v":["מַהֲלֻמָּה","mahălûmmâh","mah-hal-oom-maw'","From H1986; a blow: - stripe, stroke."]},{"k":"H4113","v":["מַהֲמֹרָה","mahămôrâh","mah-ham-o-raw'","From an unused root of uncertain meaning; perhaps an abyss: - deep pit."]},{"k":"H4114","v":["מַהְפֵּכָה","mahpêkâh","mah-pay-kaw'","From H2015; a destruction: - when . . . overthrew, overthrow (-n)."]},{"k":"H4115","v":["מַהְפֶּכֶת","mahpeketh","mah-peh'-keth","From H2015; a wrench, that is, the stocks: - prison, stocks."]},{"k":"H4116","v":["מָהַר","mâhar","maw-har'","A primitive root; properly to be liquid or flow easily, that is, (by implication); to hurry (in a good or bad sense); often used (with another verb) adverbially promptly: - be carried headlong, fearful, (cause to make, in, make) haste (-n, -ily, (be) hasty, (fetch, make ready) X quickly, rash, X shortly, (be so) X soon, make speed, X speedily, X straightway, X suddenly, swift."]},{"k":"H4117","v":["מָהַר","mâhar","maw-har'","A primitive root (perhaps rather the same as H4116 through the idea of readiness in assent); to bargain (for a wife), that is, to wed: - endow, X surely."]},{"k":"H4118","v":["מַהֵר","mahêr","mah-hare'","From H4116; properly hurrying; hence (adverbially) in a hurry: - hasteth, hastily, at once, quickly, soon, speedily, suddenly."]},{"k":"H4119","v":["מֹהַר","môhar","mo'-har","From H4117; a price (for a wife): - dowry."]},{"k":"H4120","v":["מְהֵרָה","mehêrâh","meh-hay-raw'","Feminine of H4118; properly a hurry; hence (adverbially) promptly: - hastily, quickly, shortly, soon, make (with) speed (-ily), swiftly."]},{"k":"H4121","v":["מַהֲרַי","mahăray","mah-har-ah'ee","From H4116; hasty; Maharai, an Israelite: - Maharai."]},{"k":"H4122","v":["מַהֵר שָׁלָל חָשׁ בַּז","mahêr shâlâl châsh baz","mah-hare' shaw-lawl' khawsh baz","From H4118 and H7998 and H2363 and H957; hasting (as he (the enemy) to the) booty, swift (to the) prey; Maher-Shalal Chash-Baz; the symbolical name of the son of Isaiah: - Maher-shalal-hash-baz."]},{"k":"H4123","v":["מַהֲתַלָּה","mahăthallâh","mah-hath-al-law'","From H2048; a delusion: - deceit."]},{"k":"H4124","v":["מוֹאָב","mô'âb","mo-awb","From a prolonged form of the prepositional prefix “m-” and H1; from (her (the mother’s)) father; Moab, an incestuous son of Lot; also his territory and descendants: - Moab."]},{"k":"H4125","v":["מוֹאָבִית    מוֹאָבִיָּה    מוֹאָבִי","mô'âbı̂y    mô'âbı̂yâh    mô'âbı̂yth","mo-aw-bee', mo-aw-bee-yaw', mo-aw-beeth'","Patronymic from H4124; a Moabite or Moabitess, that is, a descendant from Moab: - (woman) of Moab, Moabite (-ish, -ss)."]},{"k":"H4126","v":["מוֹבָא","môbâ'","mo-baw'","By transposition for H3996; an entrance: - coming."]},{"k":"H4127","v":["מוּג","mûg","moog","A primitive root; to melt, that is, literally (to soften, flow down, disappear), or figuratively (to fear, faint): - consume, dissolve, (be) faint (-hearted), melt (away), make soft."]},{"k":"H4128","v":["מוּד","mûd","mood","A primitive root; to shake: - measure."]},{"k":"H4129","v":["מֹדָע    מוֹדַע","môda‛    môdâ‛","mo-dah', mo-daw'","From H3045; an acquaintance: - kinswoman."]},{"k":"H4130","v":["מוֹדַעַת","môda‛ath","mo-dah'-ath","From H3045; acquaintance: - kindred."]},{"k":"H4131","v":["מוֹט","môṭ","mote'","A primitive root; to waver; by implication to slip, shake, fall: - be carried, cast, be out of course, be fallen in decay, X exceedingly, fall (-ing down), be (re-) moved, be ready shake, slide, slip."]},{"k":"H4132","v":["מוֹט","môṭ","mote'","From H4131; a wavering, that is, fall; by implication a pole (as shaking); hence a yoke (as essentially a bent pole): - bar, be moved, staff, yoke."]},{"k":"H4133","v":["מוֹטָה","môṭâh","mo-taw'","Feminine of H4132; a pole; by implication an ox bow; hence a yoke (either literally or figuratively): - bands, heavy, staves, yoke."]},{"k":"H4134","v":["מוּךְ","mûk","mook","A primitive root; to become thin, that is, (figuratively) be impoverished: - be (waxen) poor (-er)."]},{"k":"H4135","v":["מוּל","mûl","mool","A primitive root; to cut short, that is, curtail (specifically the prepuce, that is, to circumcise); by implication to blunt; figuratively to destroy: - circumcise (-ing, selves), cut down (in pieces), destroy, X must needs."]},{"k":"H4136","v":["מֻל    מוֹאל    מוֹל    מוּל","mûl    môl    mô'l    mûl","mool, mole, mole, mool","From H4135; properly abrupt, that is, a precipice; by implication the front; used only adverbially (with prepositional prefix) opposite: - (over) against, before, [fore-] front, from, [God-] ward, toward, with."]},{"k":"H4137","v":["מוֹלָדָה","môlâdâh","mo-law-daw'","From H3205; birth; Moladah, a place in Palestine: - Moladah."]},{"k":"H4138","v":["מוֹלֶדֶת","môledeth","mo-leh'-deth","From H3205; nativity (plural birth place); by implication lineage, native country; also offspring, family: - begotten, born, issue, kindred, native (-ity)."]},{"k":"H4139","v":["מוּלָה","mûlâh","moo-law'","From H4135; circumcision: - circumcision."]},{"k":"H4140","v":["מוֹלִיד","môlı̂yd","mo-leed","From H3205; genitor; Molid, an Israelite: - Molid."]},{"k":"H4141","v":["מוּסָב","mûsâb","moo-sawb'","From H5437; a turn, that is, circuit (of a building): - winding about."]},{"k":"H4142","v":["מֻסַבָּה    מוּסַבָּה","mûsabbâh    mûsabbâh","moo-sab-baw', moo-sab-baw'","Feminine of H4141; a reversal, that is, the backside (of a gem), fold (of a double leaved door), transmutation (of a name): - being changed, inclosed, be set, turning."]},{"k":"H4143","v":["מוּסָד","mûsâd","moo-sawd'","From H3245; a foundation: - foundation."]},{"k":"H4144","v":["מוֹסָד","môsâd","mo-sawd'","From H3245; a foundation: - foundation."]},{"k":"H4145","v":["מוּסָדָה","mûsâdâh","moo-saw-daw'","Feminine of H4143; a foundation; figuratively an appointment: - foundation, grounded. Compare H4328."]},{"k":"H4146","v":["מֹסָדָה    מוֹסָדָה","môsâdâh    môsâdâh","mo-saw-daw', mo-saw-daw'","Feminine of H4144; a foundation: - foundation."]},{"k":"H4147","v":["מֹסְרָה    מוֹסֵרָה    מוֹסֵר","môsêr    môsêrâh    môserâh","mo-sare', mo-say-raw', mo-ser-aw'","From H3256; properly chastisement, that is, (by implication) a halter; figuratively restraint: - band, bond."]},{"k":"H4148","v":["מוּסָר","mûsâr","moo-sawr'","From H3256; properly chastisement; figuratively reproof, warning or instruction; also restraint: - bond, chastening ([-eth]), chastisement, check, correction, discipline, doctrine, instruction, rebuke."]},{"k":"H4149","v":["מֹסְרוֹת    מוֹסֵרָה","môsêrâh    môserôth","mo-say-raw', mo-ser-othe'","Feminine of H4147; correction or corrections; Moserah or Moseroth, a place in the Desert: - Mosera, Moseroth."]},{"k":"H4150","v":["מוֹעָדָה    מֹעֵד    מוֹעֵד","mô‛êd    mô‛êd    mô‛âdâh","mo-ade', mo-ade', mo-aw-daw'","From H3259; properly an appointment, that is, a fixed time or season; specifically a festival; conventionally a year; by implication, an assembly (as convened for a definite purpose); technically the congregation; by extension, the place of meeting; also a signal (as appointed beforehand): - appointed (sign, time), (place of, solemn) assembly, congregation, (set, solemn) feast, (appointed, due) season, solemn (-ity), synagogue, (set) time (appointed)."]},{"k":"H4151","v":["מוֹעָד","mô‛âd","mo-awd'","From H3259; properly an assembly (as in H4150); figuratively a troop: - appointed time."]},{"k":"H4152","v":["מוּעָדָה","mû‛âdâh","moo-aw-daw'","From H3259; an appointed place, that is, asylum: - appointed."]},{"k":"H4153","v":["מוֹעַדְיָה","mô‛adyâh","mo-ad-yaw'","From H4151 and H3050; assembly of Jah; Moadjah, an Israelite: - Moadiah. Compare H4573."]},{"k":"H4154","v":["מוּעֶדֶת","mû‛edeth","moo-eh'-deth","Feminine passive participle of H4571; properly made to slip, that is, dislocated: - out of joint."]},{"k":"H4155","v":["מוּעָף","mû‛âph","moo-awf'","From H5774; properly covered, that is, dark; abstractly obscurity, that is, distress: - dimness."]},{"k":"H4156","v":["מוֹעֵצָה","mô‛êtsâh","mo-ay-tsaw'","From H3289; a purpose: - counsel, device."]},{"k":"H4157","v":["מוּעָקָה","mû‛âqâh","moo-aw-kaw'","From H5781; pressure, that is, (figuratively) distress: - affliction."]},{"k":"H4158","v":["מֵפַעַת    מֵיפַעַת    מוֹפַעַת","môpha‛ath    mêypha‛ath    mêpha‛ath","mo-fah'-ath, may-fah'-ath, may-fah'-ath","From H3313; illuminative; Mophaath or Mephaath, a place in Palestine: - Mephaath."]},{"k":"H4159","v":["מֹפֵת    מוֹפֵת","môphêth    môphêth","mo-faith', mo-faith'","From H3302 in the sense of conspicuousness; a miracle; by implication a token or omen: - miracle, sign, wonder (-ed at)."]},{"k":"H4160","v":["מוּץ","mûts","moots","A primitive root; to press, that is, (figuratively) to oppress: - extortioner."]},{"k":"H4161","v":["מֹצָא    מוֹצָא","môtsâ'    môtsâ'","mo-tsaw', mo-tsaw'","From H3318; a going forth, that is, (the act) an egress, or (the place) an exit; hence a source or product; specifically dawn, the rising of the sun (the East), exportation, utterance, a gate, a fountain, a mine, a meadow (as producing grass): - brought out, bud, that which came out, east, going forth, goings out, that which (thing that) is gone out, outgoing, proceeded out, spring, vein, [water-] course [springs]."]},{"k":"H4162","v":["מוֹצָא","môtsâ'","mo-tsaw'","The same as H4161; Motsa, the name of two Israelites: - Moza."]},{"k":"H4163","v":["מוֹצָאָה","môtsâ'âh","mo-tsaw-aw'","Feminine of H4161; a family descent; also a sewer (compare H6675): - draught house; going forth."]},{"k":"H4164","v":["מוּצָק    מוּצַק","mûtsaq    mûtsâq","moo-tsak', moo-tsawk'","From H3332; narrowness; figuratively distress: - anguish, is straitened, straitness."]},{"k":"H4165","v":["מוּצָק","mûtsâq","moo-tsawk'","From H5694; properly fusion, that is, literally a casting (of metal); figuratively a mass (of clay): - casting, hardness."]},{"k":"H4166","v":["מֻצָקָה    מוּצָקָה","mûtsâqâh    mûtsâqâh","moo-tsaw-kaw', moo-tsaw-kaw'","From H3332; properly something poured out, that is, a casting (of metal); by implication a tube (as cast): - when it was cast, pipe."]},{"k":"H4167","v":["מוּק","mûq","mook","A primitive root; to jeer, that is, (intensively) blaspheme: - be corrupt."]},{"k":"H4168","v":["מוֹקֵד","môqêd","mo-kade'","From H3344; a fire or fuel; abstractly a conflagration: - burning, hearth."]},{"k":"H4169","v":["מוֹקְדָה","môqedâh","mo-ked-aw'","Feminine of H4168; fuel: - burning."]},{"k":"H4170","v":["מֹקֵשׁ    מוֹקֵשׁ","môqêsh    môqêsh","mo-kashe', mo-kashe'","From H3369; a noose (for catching animals), (literally or figuratively); by implication a hook (for the nose): - be ensnared, gin, (is) snare (-d), trap."]},{"k":"H4171","v":["מוּר","mûr","moor","A primitive root; to alter; by implication to barter, to dispose of: -  X at all, (ex-) change, remove."]},{"k":"H4172","v":["מוֹרָה    מֹרָא    מוֹרָא","môrâ'    môrâ'    môrâh","mo-raw', mo-raw', mo-raw'","From H3372; fear; by implication a fearful thing or deed: - dread, (that ought to be) fear (-ed), terribleness, terror."]},{"k":"H4173","v":["מֹרַג    מוֹרַג","môrag    môrag","mo-rag', mo-rag'","From an unused root meaning to triturate; a threshing sledge: - threshing instrument."]},{"k":"H4174","v":["מוֹרָד","môrâd","mo-rawd'","From H3381; a descent; architecturally an ornamental appendage, perhaps a festoon: - going down, steep place, thin work."]},{"k":"H4175","v":["מוֹרֶה","môreh","mo-reh'","From H3384; an archer; also teacher or teaching; also the early rain (see H3138): - (early) rain."]},{"k":"H4176","v":["מֹרֶה    מוֹרֶה","môreh    môreh","mo-reh', mo-reh'","The same as H4175; Moreh, a Canaanite; also a hill (perhaps named from him): - Moreh."]},{"k":"H4177","v":["מוֹרָה","môrâh","mo-raw'","From H4171 in the sense of shearing; a razor: - razor."]},{"k":"H4178","v":["מוֹרָט","môrâṭ","mo-rawt'","From H3399; obstinate, that is, independent: - peeled."]},{"k":"H4179","v":["מֹרִיָּה    מוֹרִיָּה","môrı̂yâh    môrı̂yâh","mo-ree-yaw', mo-ree-yaw'","From H7200 and H3050; seen of Jah; Morijah, a hill in Palestine: - Moriah."]},{"k":"H4180","v":["מוֹרָשׁ","môrâsh","mo-rawsh'","From H3423; a possession; figuratively delight: - possession, thought."]},{"k":"H4181","v":["מוֹרָשָׁה","môrâshâh","mo-raw-shaw'","Feminine of H4180; a possession: - heritage, inheritance, possession."]},{"k":"H4182","v":["מוֹרֶשֶׁת גַּת","môresheth gath","mo-reh'-sheth gath","From H3423 and H1661; possession of Gath; Moresheth-Gath, a place in Palestine: - Moresheth-gath."]},{"k":"H4183","v":["מוֹרַשְׁתִּי","môrashtı̂y","mo-rash-tee'","Patrial from H4182; a Morashtite or inhabitant of Moresheth Gath: - Morashthite."]},{"k":"H4184","v":["מוּשׁ","mûsh","moosh","A primitive root; to touch: - feel, handle."]},{"k":"H4185","v":["מוּשׁ","mûsh","moosh","A primitive root (perhaps rather the same as H4184 through the idea of receding by contact); to withdraw (both literally and figuratively, whether intransitively or transitively): - cease, depart, go back, remove, take away."]},{"k":"H4186","v":["מֹשָׁב    מוֹשָׁב","môshâb    môshâb","mo-shawb', mo-shawb'","From H3427; a seat; figuratively a site; abstractly a session; by extension an abode (the place or the time); by implication population: - assembly, dwell in, dwelling (-place), wherein (that) dwelt (in), inhabited place, seat, sitting, situation, sojourning."]},{"k":"H4187","v":["מֻשִּׁי מוּשִׁי","mûshı̂y    mûshshı̂y","moo-shee', mush-shee'","From H4184; sensitive; Mushi, a Levite: - Mushi."]},{"k":"H4188","v":["מוּשִׁי","mûshı̂y","moo-shee'","Patronymic from H4187; a Mushite (collectively) or descendant of Mushi: - Mushites."]},{"k":"H4189","v":["מוֹשְׁכָה","môshekâh","mo-shek-aw'","Active participle feminine of H4900; something drawing, that is, (figuratively) a cord: - band."]},{"k":"H4190","v":["מוֹשָׁעָה","môshâ‛âh","mo-shaw-aw'","From H3467; deliverance: - salvation."]},{"k":"H4191","v":["מוּת","mûth","mooth","A primitive root; to die (literally or figuratively); causatively to kill: -  X at all, X crying, (be) dead (body, man, one), (put to, worthy of) death, destroy (-er), (cause to, be like to, must) die, kill, necro [-mancer], X must needs, slay, X surely, X very suddenly, X in [no] wise."]},{"k":"H4192","v":["מוּת לַבֵּן    מוּת","mûth     mûth labbên","mooth, mooth lab-bane'","From H4191 and H1121 with the preposition and article interposed; “to die for the son”, probably the title of a popular song: - death, Muthlabben."]},{"k":"H4193","v":["מוֹת","môth","mohth","(Chaldee); corresponding to H4194; death: - death."]},{"k":"H4194","v":["מָוֶת","mâveth","maw'-veth","From H4191; death (natural or violent); concretely the dead, their place or state (hades); figuratively pestilence, ruin: - (be) dead ([-ly]), death, die (-d)."]},{"k":"H4195","v":["מוֹתָר","môthâr","mo-thar'","From H3498; literally gain; figuratively superiority: - plenteousness, preeminence, profit."]},{"k":"H4196","v":["מִזְבֵּחַ","mizbêach","miz-bay'-akh","From H2076; an altar: - altar."]},{"k":"H4197","v":["מֶזֶג","mezeg","meh'-zeg","From an unused root meaning to mingle (water with wine); tempered wine: - liquor."]},{"k":"H4198","v":["מָזֶה","mâzeh","maw-zeh'","From an unused root meaning to suck out; exhausted: - burnt."]},{"k":"H4199","v":["מִזָּה","mizzâh","miz-zaw'","Probably from an unused root meaning to faint with fear; terror; Mizzah, an Edomite: - Mizzah."]},{"k":"H4200","v":["מֶזֶו","mezev","meh'-zev","Probably from an unused root meaning to gather in; a granary: - garner."]},{"k":"H4201","v":["מְזֻזָה    מְזוּזָה","mezûzâh    mezûzâh","mez-oo-zaw', mez-oo-zaw'","From the same as H2123; a door post (as prominent): - (door, side) post."]},{"k":"H4202","v":["מָזוֹן","mâzôn","maw-zone'","From H2109; food: - meat, victual."]},{"k":"H4203","v":["מָזוֹן","mâzôn","maw-zone'","(Chaldee); corresponding to H4202: - meat."]},{"k":"H4204","v":["מָזוֹר","mâzôr","maw-zore'","From H2114 in the sense of turning aside from truth; treachery, that is, a plot: - wound."]},{"k":"H4205","v":["מָזֹר    מָזוֹר","mâzôr    mâzôr","maw-zore', maw-zore'","From H2115 in the sense of binding up; a bandage, that is, remedy; hence a sore (as needing a compress): - bound up, wound."]},{"k":"H4206","v":["מֵזַח    מָזִיחַ","mâzı̂yach    mêzach","maw-zee'-akh, may-zakh'","From H2118; a belt (as movable): - girdle, strength."]},{"k":"H4207","v":["מִזְלָגָה    מַזְלֵג","mazlêg    mizlâgâh","maz-layg', miz-law-gaw'","From an unused root meaning to draw up; a fork: - fleshhook."]},{"k":"H4208","v":["מַזָּלָה","mazzâlâh","maz-zaw-law'","Apparently from H5140 in the sense of raining; a constellation, that is, Zodiacal sign (perhaps as affecting the weather): - planet. Compare H4216."]},{"k":"H4209","v":["מְזִמָּה","mezimmâh","mez-im-maw'","From H2161; a plan, usually evil (machination), sometimes good (sagacity): - (wicked) device, discretion, intent, witty invention, lewdness, mischievous (device), thought, wickedly."]},{"k":"H4210","v":["מִזְמוֹר","mizmôr","miz-more'","From H2167; properly instrumental music; by implication a poem set to notes: - psalm."]},{"k":"H4211","v":["מַזְמֵרָה","mazmêrâh","maz-may-raw'","From H2168; a pruning knife: - pruning-hook."]},{"k":"H4212","v":["מְזַמְּרָה","mezammerâh","mez-am-mer-aw'","From H2168; a tweezer (only in the plural): - snuffers."]},{"k":"H4213","v":["מִזְעָר","miz‛âr","miz-awr'","From the same as H2191; fewness; by implication as superlative diminutiveness: - few, X very."]},{"k":"H4214","v":["מִזְרֶה","mizreh","miz-reh'","From H2219; a winnowing shovel (as scattering the chaff): - fan."]},{"k":"H4215","v":["מְזָרֶה","mezâreh","mez-aw-reh'","Apparently from H2219; properly a scatterer, that is, the north wind (as dispersing clouds; only in plural): - north."]},{"k":"H4216","v":["מַזָּרָה","mazzârâh","maz-zaw-raw'","Apparently from H5144 in the sense of distinction; some noted constellation (only in the plural), perhaps collectively the zodiac: - Mazzoroth. Compare H4208."]},{"k":"H4217","v":["מִזְרָח","mizrâch","miz-rawkh'","From H2224; sunrise, that is, the east: - east (side, -ward), (sun-) rising (of the sun)."]},{"k":"H4218","v":["מִזְרָע","mizrâ‛","miz-raw'","From H2232; a planted field: - thing sown."]},{"k":"H4219","v":["מִזְרָק","mizrâq","miz-rawk'","From H2236; a bowl (as if for sprinkling): - bason, bowl."]},{"k":"H4220","v":["מֵחַ","mêach","may'-akh","From H4229 in the sense of greasing; fat; figuratively rich: - fatling (one)."]},{"k":"H4221","v":["מֹחַ","môach","mo'-akh","From the same as H4220; fat, that is, marrow: - marrow."]},{"k":"H4222","v":["מָחָא","mâchâ'","maw-khaw'","A primitive root; to rub or strike the hands together (in exultation): - clap."]},{"k":"H4223","v":["מְחָא","mechâ'","mekh-aw'","(Chaldee); corresponding to H4222; to strike in pieces; also to arrest; specifically to impale: - hang, smite, stay."]},{"k":"H4224","v":["מַחֲבֹא    מַחֲבֵא","machăbê'    machăbô'","makh-ab-ay', makh-b-o'","From H2244; a refuge: - hiding (lurking) place."]},{"k":"H4225","v":["מַחְבֶּרֶת","machbereth","makh-beh'-reth","From H2266; a junction, that is, seam or sewed piece: - coupling."]},{"k":"H4226","v":["מְחַבְּרָה","mechabberâh","mekh-ab-ber-aw'","From H2266; a joiner, that is, brace or cramp: - coupling, joining."]},{"k":"H4227","v":["מַחֲבַת","machăbath","makh-ab-ath'","From the same as H2281; a pan for baking in: - pan."]},{"k":"H4228","v":["מַחֲגֹרֶת","machăgôreth","makh-ag-o'-reth","From H2296; a girdle: - girding."]},{"k":"H4229","v":["מָחָה","mâchâh","maw-khaw'","A primitive root; properly to stroke or rub; by implication to erase; also to smooth (as if with oil), that is, grease or make fat; also to touch, that is, reach to: - abolish, blot out, destroy, full of marrow, put out, reach unto, X utterly, wipe (away, out)."]},{"k":"H4230","v":["מְחוּגָה","mechûgâh","mekh-oo-gaw'","From H2328; an instrument for marking a circle, that is, compasses: - compassive"]},{"k":"H4231","v":["מָחוֹז","mâchôz","maw-khoze'","From an unused root meaning to enclose; a harbor (as shut in by the shore): - haven."]},{"k":"H4232","v":["מְחִיּיָאֵל    מְחוּיָאֵל","mechûyâ'êl    mechı̂yyâ'êl","mekh-oo-yaw-ale', mekh-ee-yaw-ale'","From H4229 and H410; smitten of God; Mechujael or Mechijael, an antediluvian patriarch: - Mehujael."]},{"k":"H4233","v":["מַחֲוִים","machăvı̂ym","makh-av-eem'","Apparently a patrial, but from an unknown place (in the plural only for a singular); a Machavite or inhabitant of some place named Machaveh: - Mahavite."]},{"k":"H4234","v":["מָחוֹל","mâchôl","maw-khole'","From H2342; a (round) dance: - dance (-cing)."]},{"k":"H4235","v":["מָחוֹל","mâchôl","maw-khole'","The same as H4234; dancing; Machol, an Israelite: - Mahol."]},{"k":"H4236","v":["מַחֲזֶה","machăzeh","makh-az-eh'","From H2372; a vision: - vision."]},{"k":"H4237","v":["מֶחֱזָה","mechĕzâh","mekh-ez-aw'","From H2372; a window: - light."]},{"k":"H4238","v":["מַחֲזִיאוֹת","machăzı̂y'ôth","makh-az-ee-oth'","Feminine plural from H2372; visions; Machazioth, an Israelite: - Mahazioth."]},{"k":"H4239","v":["מְחִי","mechı̂y","mekh-ee'","From H4229; a stroke, that is, battering ram: - engines."]},{"k":"H4240","v":["מְחִידָא","mechı̂ydâ'","mekh-ee-daw'","From H2330; junction; Mechida, one of the Nethinim: - Mehida."]},{"k":"H4241","v":["מִחְיָה","michyâh","mikh-yaw'","From H2421; preservation of life; hence sustenance; also the live flesh, that is, the quick: - preserve life, quick, recover selves, reviving, sustenance, victuals."]},{"k":"H4242","v":["מְחִיר","mechı̂yr","mekh-eer'","From an unused root meaning to buy; price, payment, wages: - gain, hire, price, sold, worth."]},{"k":"H4243","v":["מְחִיר","mechı̂yr","mekh-eer'","The same as H4242; price; Mechir, an Israelite: - Mehir."]},{"k":"H4244","v":["מַחְלָה","machlâh","makh-law'","From H2470; sickness; Machlah, the name apparently of two Israelitesses: - Mahlah."]},{"k":"H4245","v":["מַחֲלָה    מַחֲלֶה","machăleh    machălâh","makh-al-eh', makh-al-aw'","From H2470; sickness: - disease, infirmity, sickness."]},{"k":"H4246","v":["מְחֹלָה","mechôlâh","mekh-o-law'","Feminine of H4234; a dance: - company, dances (-cing)."]},{"k":"H4247","v":["מְחִלָּה","mechillâh","mekh-il-law'","From H2490; a cavern (as if excavated): - cave."]},{"k":"H4248","v":["מַחְלוֹן","machlôn","makh-lone'","From H2470; sick; Machlon, an Israelite: - Mahlon."]},{"k":"H4249","v":["מַחְלִי","machlı̂y","makh-lee'","From H2470; sick; Machli, the name of two Israelites: - Mahli."]},{"k":"H4250","v":["מַחְלִי","machlı̂y","makh-lee'","Patronymic from H4249; a Machlite or (collectively) descendant of Machli: - Mahlites."]},{"k":"H4251","v":["מַחְלֻי","machlûy","makh-loo'ee","From H2470; a disease: - disease."]},{"k":"H4252","v":["מַחֲלָף","machălâph","makh-al-awf'","From H2498; a (sacrificial) knife (as gliding through the flesh): - knife."]},{"k":"H4253","v":["מַחְלָפָה","machlâphâh","makh-law-faw'","From H2498; a ringlet of hair (as gliding over each other): - lock."]},{"k":"H4254","v":["מַחֲלָצָה","machălâtsâh","makh-al-aw-tsaw'","From H2502; a mantle (as easily drawn off): - changeable suit of apparel, change of raiment."]},{"k":"H4255","v":["מַחְלְקָה","machleqâh","makh-lek-aw'","(Chaldee); corresponding to H4256; a section (of the Levites): - course."]},{"k":"H4256","v":["מַחֲלֹקֶת","machălôqeth","makh-al-o'-keth","From H2505; a section (of Levites, people or soldiers): - company, course, division, portion. See also H5555."]},{"k":"H4257","v":["מַחֲלַת","machălath","makh-al-ath'","From H2470; sickness; machalath, probably the title (initial word) of a popular song: - Mahalath."]},{"k":"H4258","v":["מַחֲלַת","machălath","makh-al-ath'","The smae as H4257; sickness; Machalath, the name of an Ishmaelitess and of an Israelitess: - Mahalath."]},{"k":"H4259","v":["מְחֹלָתִי","mechôlâthı̂y","mekh-o-law-thee'","Patrial from H65; a Mecholathite or inhabitant of Abel Mecholah: - Mecholathite."]},{"k":"H4260","v":["מַחֲמָאָה","machămâ'âh","makh-am-aw-aw'","A denominative from H2529; something buttery (that is, unctuous and pleasant), as (figuratively) flattery: -  X than butter."]},{"k":"H4261","v":["מַחְמָד","machmâd","makh-mawd'","From H2530; delightful; hence a delight, that is, object of affection or desire: - beloved, desire, goodly, lovely, pleasant (thing)."]},{"k":"H4262","v":["מַחְמוּד    מַחְמֻד","machmûd    machmûd","makh-mood', makh-mood'","From H2530; desired; hence a valuable: - pleasant thing."]},{"k":"H4263","v":["מַחְמָל","machmâl","makh-mawl'","From H2550; properly sympathy; (by paronomasia with H4261) delight: - pitieth."]},{"k":"H4264","v":["מַחֲנֶה","machăneh","makh-an-eh'","From H2583; an encampment (of travellers or troops); hence an army, whether literally (of soldiers) or figuratively (of dancers, angels, cattle, locusts, stars; or even the sacred courts): - army, band, battle, camp, company, drove, host, tents."]},{"k":"H4265","v":["מַחֲנֵה־דָן","machănêh-dân","makh-an-ay'-dawn","From H4264 and H1835; camp of Dan; Machaneh-Dan, a place in Palestine: - Mahaneh-dan."]},{"k":"H4266","v":["מַחֲנַיִם","machănayim","makh-an-ah'-yim","Dual of H4264; double camp; Machanajim, a place in Palestine: - Mahanaim."]},{"k":"H4267","v":["מַחֲנַק","machănaq","makh-an-ak'","From H2614; choking: - strangling."]},{"k":"H4268","v":["מַחְסֶה    מַחֲסֶה","machăseh    machseh","makh-as-eh', makh-seh'","From H2620; a shelter (literally or figuratively): - hope, (place of) refuge, shelter, trust."]},{"k":"H4269","v":["מַחְסוֹם","machsôm","makh-sohm'","From H2629; a muzzle: - bridle."]},{"k":"H4270","v":["מַחְסֹר    מַחְסוֹר","machsôr    machsôr","makh-sore', makh-sore'","From H2637; deficiency; hence impoverishment: - lack, need, penury, poor, poverty, want."]},{"k":"H4271","v":["מַחְסֵיָה","machsêyâh","makh-say-yaw'","From H4268 and H3050; refuge of (that is, in) Jah; Machsejah, an Israelite: - Maaseiah."]},{"k":"H4272","v":["מָחַץ","mâchats","maw-khats'","A primitive root; to dash asunder; by implication to crush, smash or violently plunge; figuratively to subdue or destroy: - dip, pierce (through), smite (through), strike through, wound."]},{"k":"H4273","v":["מַחַץ","machats","makh'-ats","From H4272; a contusion: - stroke."]},{"k":"H4274","v":["מַחְצֵב","machtsêb","makh-tsabe'","From H2672; properly a hewing; concretely a quarry: - hewed (-n)."]},{"k":"H4275","v":["מֶחֱצָה","mechĕtsâh","mekh-ets-aw'","From H2673; a halving: - half."]},{"k":"H4276","v":["מַחֲצִית","machătsı̂yth","makh-ats-eeth'","From H2673; a halving or the middle: - half (so much), mid [-day]."]},{"k":"H4277","v":["מָחַק","mâchaq","maw-khak'","A primitive root; to crush: - smite off."]},{"k":"H4278","v":["מֶחְקָר","mechqâr","mekh-kawr'","From H2713; properly scrutinized, that is, (by implication) a recess: - deep place."]},{"k":"H4279","v":["מָחָר","mâchâr","maw-khar'","Probably from H309; properly deferred, that is, the morrow; usually (adverbially) tomorrow; indefinitely hereafter: - time to come, tomorrow."]},{"k":"H4280","v":["מַחֲרָאָה","machărâ'âh","makh-ar-aw-aw'","From the same as H2716; a sink: - draught house."]},{"k":"H4281","v":["מַחֲרֵשָׁה","machărêshâh","makh-ar-ay-shaw'","From H2790; probably a pick axe: - mattock."]},{"k":"H4282","v":["מַחֲרֶשֶׁת","machăresheth","makh-ar-eh'-sheth","From H2790; probably a hoe: - share."]},{"k":"H4283","v":["מָחֳרָתָם    מָחֳרָת","mochŏrâth    mochŏrâthâm","mokh-or-awth', mokh-or-aw-thawm'","Feminine from the same as H4279; the morrow or (adverbially) tomorrow: - morrow, next day."]},{"k":"H4284","v":["מַחֲשֶׁבֶת    מַחֲשָׁבָה","machăshâbâh    machăshebeth","makh-ash-aw-baw', makh-ash-eh'-beth","From H2803; a contrivance, that is, (concretely) a texture, machine, or (abstractly) intention, plan (whether bad, a plot; or good, advice): - cunning (work), curious work, device (-sed), imagination, invented, means, purpose, thought."]},{"k":"H4285","v":["מַחְשָׁךְ","machshâk","makh-shawk'","From H2821; darkness; concretely a dark place: - dark (-ness, place)."]},{"k":"H4286","v":["מַחְשׂף","machśôph","makh-sofe'","From H2834; a peeling: - made appear."]},{"k":"H4287","v":["מַחַת","machath","makh'-ath","Probably from H4229; erasure; Machath, the name of two Israelites: - Mahath."]},{"k":"H4288","v":["מְחִתָּה","mechittâh","mekh-it-taw'","From H2846; properly a dissolution; concretely a ruin, or (abstractly) consternation: - destruction, dismaying, ruin, terror."]},{"k":"H4289","v":["מַחְתָּה","machtâh","makh-taw'","The same as H4288 in the sense of removal; a pan for live coals: - censer, firepan, snuffdish."]},{"k":"H4290","v":["מַחְתֶּרֶת","machtereth","makh-teh'-reth","From H2864; a burglary; figuratively unexpected examination: - breaking up, secret search."]},{"k":"H4291","v":["מְטָה    מְטָא","meṭâ'    meṭâh","met-aw', met-aw'","(Chaldee); apparently corresponding to H4672 in the intransitive sense of being found present; to arrive, extend or happen: - come, reach."]},{"k":"H4292","v":["מַטְאֲטֵא","maṭ'ăṭê'","mat-at-ay'","Apparently a denominative from H2916; a broom (as removing dirt (compare English ‘to dust’, that is, remove dust)): - besom."]},{"k":"H4293","v":["מַטְבֵּחַ","maṭbêach","mat-bay'-akh","From H2873; slaughter: - slaughter."]},{"k":"H4294","v":["מַטָּה    מַטֶּה","maṭṭeh    maṭṭâh","mat-teh', mat-taw'","From H5186; a branch (as extending); figuratively a tribe; also a rod, whether for chastising (figuratively correction), ruling (a sceptre), throwing (a lance), or walking (a staff; figuratively a support of life, for example bread): - rod, staff, tribe."]},{"k":"H4295","v":["מַטָּה","maṭṭâh","mat'-taw","From H5786 with directive enclitic appended; downward, below or beneath; often adverbially with or without prefixes: - beneath, down (-ward), less, very low, under (-neath)."]},{"k":"H4296","v":["מִטָּה","miṭṭâh","mit-taw'","From H5186; a bed (as extended) for sleeping or eating; by analogy a sofa, litter or bier: - bed ([-chamber]), bier."]},{"k":"H4297","v":["מֻטֶּה","mûṭṭeh","moot-teh'","From H5186; a stretching, that is, distortion (figuratively iniquity): - perverseness."]},{"k":"H4298","v":["מֻטָּה","mûṭṭâh","moot-taw'","From H5186; expansion: - stretching out."]},{"k":"H4299","v":["מַטְוֶה","maṭveh","mat-veh'","From H2901; something spun: - spun."]},{"k":"H4300","v":["מְטִיל","meṭı̂yl","met-eel'","From H2904 in the sense of hammering out; an iron bar (as forged): - bar."]},{"k":"H4301","v":["מַטְמֻן    מַטְמֹן    מַטְמוֹן","maṭmôn    maṭmôn    maṭmûn","mat-mone', mat-mone', mat-moon'","From H2934; a secret storehouse; hence a secreted valuable (buried); generally money: - hidden, riches, (hid) treasure (-s)."]},{"k":"H4302","v":["מַטָּע","maṭṭâ‛","mat-taw'","From H5193; something planted, that is, the place (a garden or vineyard), or the thing (a plant, figuratively of men); by implication the act, planting: - plant (-ation, -ing)."]},{"k":"H4303","v":["מַטְעַמָּה    מַטְעַם","maṭ‛am    maṭ‛ammâh","mat-am', mat-am-maw'","From H2938; a delicacy: - dainty (meat), savoury meat."]},{"k":"H4304","v":["מִטְפַּחַת","miṭpachath","mit-pakh'-ath","From H2946; a wide cloak (for a woman): - vail, wimple."]},{"k":"H4305","v":["מָטַר","mâṭar","maw-tar'","A primitive root; to rain: - (cause to) rain (upon)."]},{"k":"H4306","v":["מָטָר","mâṭâr","maw-tawr'","From H4305; rain: - rain."]},{"k":"H4307","v":["מַטָּרָה    מַטָּרָא","maṭṭârâ'    maṭṭârâh","mat-taw-raw', mat-taw-raw'","From H5201; a jail (as a guard house); also an aim (as being closely watched): - mark, prison."]},{"k":"H4308","v":["מַטְרֵד","maṭrêd","mat-rade'","From H2956; propulsive; Matred, an Edomitess: - Matred."]},{"k":"H4309","v":["מַטְרִי","maṭrı̂y","mat-ree'","From H4305; rainy; Matri, an Israelite: - Matri."]},{"k":"H4310","v":["מִי","mı̂y","me","An interrogitive pronoun of persons, as H4100 is of things, who? (occasionally, by a peculiar idiom, of things); also (indefinitely) whoever; often used in oblique construction with prefix or suffix: - any (man), X he, X him, + O that! what, which, who (-m, -se, -soever), + would to God."]},{"k":"H4311","v":["מֵידְבָא","mêydebâ'","may-deb-aw'","From H4325 and H1679; water of quiet; Medeba, a place in Palestine."]},{"k":"H4312","v":["מֵידָד","mêydâd","may-dawd'","From H3032 in the sense of loving; affectionate; Medad, an Israelite: - Medad."]},{"k":"H4313","v":["מֵי הַיַּרְקוֹן","mêy hayyarqôn","may hah''ee-yar-kone'","From H4325 and H3420 with the article interposed; water of the yellowness; Me-haj-Jarkon, a place in Palestine: - Me-jarkon."]},{"k":"H4314","v":["מֵי זָהָב","mêy zâhâb","may zaw-hawb'","From H4325 and H2091, water of gold; Me-Zahab, an Edomite: - Mezahab."]},{"k":"H4315","v":["מֵיטָב","mêyṭâb","may-tawb'","From H3190; the best part: - best."]},{"k":"H4316","v":["מִיכָא","mı̂ykâ'","mee-kaw'","A variation for H4318; Mica, the name of two Israelites: - Micha."]},{"k":"H4317","v":["מִיכָאֵל","mı̂ykâ'êl","me-kaw-ale'","From H4310 and (the prefixed derivation from) H3588 and H410; who (is) like God?; Mikael, the name of an archangel and of nine Israelites: - Michael."]},{"k":"H4318","v":["מִיכָה","mı̂ykâh","mee-kaw'","An abbreviation of H4320; Micah, the name of seven Israelites: - Micah, Micaiah, Michah."]},{"k":"H4319","v":["מִיכָהוּ","mı̂ykâhû","me-kaw'-hoo","A contraction for H4321; Mikehu, an Israelitish prophet: - Micaiah (2Ch_18:8)."]},{"k":"H4320","v":["מִיכָיָה","mı̂ykâyâh","me-kaw-yaw'","From H4310 and (the prefixed derivation from) H3588 and H3050; who (is) like Jah?; Micajah, the name of two Israelites: - Micah, Michaiah. Compare H4318."]},{"k":"H4321","v":["מִכָיְהוּ    מִיכָיְהוּ","mı̂ykâyehû    mikâyehû","me-kaw-yeh-hoo', me-kaw-yeh-hoo'","Abbreviated for H4322; Mikajah, the name of three Israelites: - Micah, Micaiah, Michaiah."]},{"k":"H4322","v":["מִיכָיָהוּ","mı̂ykâyâhû","me-kaw-yaw'-hoo","For H4320; Mikajah, the name of an Israelite and an Israelitess: - Michaiah."]},{"k":"H4323","v":["מִיכָל","mı̂ykâl","me-kawl'","From H3201; properly a container, that is, a streamlet: - brook."]},{"k":"H4324","v":["מִיכָל","mı̂ykâl","me-kawl'","Apparently the same as H4323; rivulet; Mikal, Saul’s daughter: - Michal."]},{"k":"H4325","v":["מַיִם","mayim","mah'-yim","Dual of a primitive noun (but used in a singular sense); water; figuratively juice; by euphemism urine, semen: -  + piss, wasting, water (-ing, [-course, -flood, -spring])."]},{"k":"H4326","v":["מִיָּמִן","mı̂yâmin","me-yaw-meem'","A form for H4509; Mijamin, the name of three Israelites: - Miamin, Mijamin."]},{"k":"H4327","v":["מִין","mı̂yn","meen","From an unused root meaning to portion out; a sort, that is, species: - kind. Compare H4480."]},{"k":"H4328","v":["מְיֻסָּדָה","meyûssâdâh","meh-yoos-saw-daw'","Properly feminine passive participle of H3245; something founded, that is, a foundation: - foundation."]},{"k":"H4329","v":["מֵיסָךְ","mêysâk","may-sawk'","From H5526; a portico (as covered): - covert."]},{"k":"H4330","v":["מִיץ","mı̂yts","meets","From H4160; pressure: - churning, forcing, wringing."]},{"k":"H4331","v":["מֵישָׁא","mêyshâ'","may-shaw'","From H4185; departure; Mesha, a place in Arabia; also an Israelite: - Mesha."]},{"k":"H4332","v":["מִישָׁאֵל","mı̂yshâ'êl","mee-shaw-ale","From H4310 and H410 with the abbreviation inceptively relative (see H834) interposed; who (is) what God (is)?; Mishael, the name of three Israelites: - Mishael."]},{"k":"H4333","v":["מִישָׁאֵל","mı̂yshâ'êl","mee-shaw-ale'","(Chaldee); corresponding to H4332; Mishael, an Israelite: - Mishael."]},{"k":"H4334","v":["מִישֹׁר    מִישׁוֹר","mı̂yshôr    mı̂yshôr","mee-shore', mee-shore'","From H3474; a level, that is, a plain (often used (with the article prefixed) as a proper name of certain districts); figuratively concord; also straightness, that is, (figuratively) justice (sometimes adverbially justly): - equity, even place, plain, right (-eously), (made) straight, uprightness."]},{"k":"H4335","v":["מֵישַׁךְ","mêyshak","may-shak'","Borrowed from H4336; Meshak, an Israelite: - Meshak."]},{"k":"H4336","v":["מֵישַׁךְ","mêyshak","may-shak'","(Chaldee); of foreign origin and doubtful signification; Meshak, the Babylonian name of H4333: - Meshak."]},{"k":"H4337","v":["מֵישָׁע","mêyshâ‛","may-shah'","From H3467; safety; Mesha, an Israelite: - Mesha."]},{"k":"H4338","v":["מֵישַׁע","mêysha‛","may-shaw'","A variation for H4337; safety; Mesha, a Moabite: - Mesha."]},{"k":"H4339","v":["מֵישָׁר","mêyshâr","may-shawr'","From H3474; evenness, that is, (figuratively) prosperity or concord; also straightness, that is, (figuratively) rectitude (only in plural with singular sense; often adverbially): - agreement, aright, that are equal, equity, (things that are) right (-eously, things), sweetly, upright (-ly, -ness)."]},{"k":"H4340","v":["מֵיתָר","mêythâr","may-thawr'","From H3498; a cord (of a tent), (compare H3499) or the string (of a bow): - cord, string."]},{"k":"H4341","v":["מַכְאֹבָה    מַכְאוֹב    מַכְאֹב","mak'ôb    mak'ôb    mak'ôbâh","mak-obe', mak-obe', mak-o-baw'","From H3510; anguish or (figuratively) affliction: - grief, pain, sorrow."]},{"k":"H4342","v":["מַכְבִּיר","makbı̂yr","mak-beer'","Transitive participle of H3527; plenty: - abundance."]},{"k":"H4343","v":["מַכְבֵּנָא","makbênâ'","mak-bay-naw'","From the same as H3522; knoll; Macbena, a place in Palestine settled by him: - Machbenah."]},{"k":"H4344","v":["מַכְבַּנַּי","makbannay","mak-ban-nah'ee","Patrial from H4343; a Macbannite or native of Macbena: - Machbanai."]},{"k":"H4345","v":["מַכְבֵּר","makbêr","mak-bare","From H3527 in the sense of covering (compare H3531); a grate: - grate."]},{"k":"H4346","v":["מַכְבָּר","makbâr","mak-bawr'","From H3527 in the sense of covering; a cloth (as netted (compare H4345)): - thick cloth."]},{"k":"H4347","v":["מַכֶּה    מַכָּה","makkâh    makkeh","mak-kaw', mak-keh'","(Plural only) from H5221; a blow (in 2Ch_2:10, of the flail); by implication a wound; figuratively carnage, also pestilence: - beaten, blow, plague, slaughter, smote, X sore, stripe, stroke, wound ([-ed])."]},{"k":"H4348","v":["מִכְוָה","mikvâh","mik-vaw'","From H3554; a burn: - that burneth, burning."]},{"k":"H4349","v":["מָכוֹן","mâkôn","maw-kone'","From H3559; properly a fixture, that is, a basis; generally a place, especially as an abode: - foundation, habitation, (dwelling-, settled) place."]},{"k":"H4350","v":["מְכֹנָה    מְכוֹנָה","mekônâh    mekônâh","mek-o-naw', mek-o-naw'","Feminine of H4349; a pedestal, also a spot: - base."]},{"k":"H4351","v":["מְכֹרָה    מְכוּרָה","mekûrâh    mekôrâh","mek-oo-raw', mek-o-raw'","From the same as H3564 in the sense of digging; origin (as if a mine): - birth, habitation, nativity."]},{"k":"H4352","v":["מָכִי","mâkı̂y","maw-kee'","Probably from H4134; pining; Maki, an Israelite: - Machi."]},{"k":"H4353","v":["מָכִיר","mâkı̂yr","maw-keer'","From H4376; salesman; Makir, an Israelite: - Machir."]},{"k":"H4354","v":["מָכִירִי","mâkı̂yrı̂y","maw-kee-ree'","Patronymic from H4353; a Makirite or descendant of Makir: - of Machir."]},{"k":"H4355","v":["מָכַךְ","mâkak","maw-kak'","A primitive root; to tumble (in ruins); figuratively to perish: - be brought low, decay."]},{"k":"H4356","v":["מִכְלָה    מִכְלָאָה","miklâ'âh    miklâh","mik-law-aw', mik-law'","From H3607; a pen (for flocks): - ([sheep-]) fold. Compare H4357."]},{"k":"H4357","v":["מִכְלָה","miklâh","mik-law'","From H3615; completion (in plural concretely and adverbially wholly): - perfect. Compare H4356."]},{"k":"H4358","v":["מִכְלוֹל","miklôl","mik-lole'","From H3634; perfection (that is, concretely adverbial splendidly): - most gorgeously, all sorts."]},{"k":"H4359","v":["מִכְלָל","miklâl","mik-lawl'","From H3634; perfection (of beauty): - perfection."]},{"k":"H4360","v":["מִכְלֻל","miklûl","mik-lool'","From H3634; something perfect, that is, a splendid garment: - all sorts."]},{"k":"H4361","v":["מַכֹּלֶת","makkôleth","mak-ko'-leth","From H398; nourishment: - food."]},{"k":"H4362","v":["מִכְמַן","mikman","mik-man'","From the same as H3646 in the sense of hiding; treasure (as hidden): - treasure."]},{"k":"H4363","v":["מִכְמַשׁ    מִכְמָשׁ    מִכְמָס","mikmâs    mikmâsh    mikmash","mik-maws', mik-mawsh', mik-mash'","From H3647; hidden; Mikmas or Mikmash, a place in Palestine: - Mikmas, Mikmash."]},{"k":"H4364","v":["מִכְמֹר    מַכְמָר","makmâr    mikmôr","mak-mawr', mik-more'","From H3648 in the sense of blackening by heat; a (hunter’s) net (as dark from concealment): - net."]},{"k":"H4365","v":["מִכְמֹרֶת    מִכְמֶרֶת","mikmereth    mikmôreth","mik-meh'-reth, mik-mo'-reth","Feminine of H4364; a (fisher’s) net: - drag, net."]},{"k":"H4366","v":["מִכְמְתָת","mikmethâth","mik-meth-awth'","Apparently from an unused root meaning to hide; concealment; Mikmethath, a place in Palestine: - Michmethath."]},{"k":"H4367","v":["מַכְנַדְבַי","maknadbay","mak-nad-bah'ee","From H4100 and H5068 with a particle interposed; what (is) like (a) liberal (man)?; Maknadbai, an Israelite: - Machnadebai."]},{"k":"H4368","v":["מְכֹנָה","mekônâh","mek-o-naw'","The same as H4350; a base; Mekonah, a place in Palestine: - Mekonah."]},{"k":"H4369","v":["מְכֻנָה","mekûnâh","mek-oo-naw'","The same as H4350; a spot: - base."]},{"k":"H4370","v":["מִכְנָס","miknâs","mik-nawce'","From H3647 in the sense of hiding; (only in dual) drawers (from concealing the private parts): - breeches."]},{"k":"H4371","v":["מֶכֶס","mekes","meh'-kes","Probably from an unused root meaning to enumerate; an assessment (as based upon a census): - tribute."]},{"k":"H4372","v":["מִכְסֶה","mikseh","mik-seh'","From H3680; a covering, that is, weather boarding: - covering."]},{"k":"H4373","v":["מִכְסָה","miksâh","mik-saw'","Feminine of H4371; an enumeration; by implication a valuation: - number, worth."]},{"k":"H4374","v":["מְכַסֶּה","mekasseh","mek-as-seh'","From H3680; a covering, that is, garment; specifically a coverlet (for a bed), an awning (from the sun); also the omentum (as covering the intestines): - clothing, to cover, that which covereth."]},{"k":"H4375","v":["מַכְפֵּלָה","makpêlâh","mak-pay-law'","From H3717; a fold; Makpelah, a place in Palestine: - Machpelah."]},{"k":"H4376","v":["מָכַר","mâkar","maw-kar'","A primitive root; to sell, literally (as merchandise, a daughter in marriage, into slavery), or figuratively (to surrender): -    X at all, sell (away, -er, self)."]},{"k":"H4377","v":["מֶכֶר","mekker","meh'-ker","From H4376; merchandise; also value: - pay, price, ware."]},{"k":"H4378","v":["מַכָּר","makkâr","mak-kawr'","From H5234; an acquaintance: - acquaintance."]},{"k":"H4379","v":["מִכְרֶה","mikreh","mik-reh'","From H3738; a pit (for salt): - [salt-] pit."]},{"k":"H4380","v":["מְכֵרָה","mekêrâh","mek-ay-raw'","Probably from the same as H3564 in the sense of stabbing; a sword: - habitation."]},{"k":"H4381","v":["מִכְרִי","mikrı̂y","mik-ree'","From H4376; salesman; Mikri, an Israelite: - Michri."]},{"k":"H4382","v":["מְכֵרָתִי","mekêrâthı̂y","mek-ay-raw-thee'","Patrial from an unused name (the same as H4380) of a place in Palestine; a Mekerathite, or inhabitant of Mekerah: - Mecherathite."]},{"k":"H4383","v":["מִכְשֹׁל    מִכְשׁוֹל","mikshôl    mikshôl","mik-shole', mik-shole'","Masculine from H3782; a stumblingblock, literally or figuratively (obstacle, enticement (specifically an idol), scruple): - caused to fall, offence, X [no-] thing offered, ruin, stumbling-block."]},{"k":"H4384","v":["מַכְשֵׁלָה","makshêlâh","mak-shay-law'","Feminine from H3782; a stumblingblock, but only figuratively (fall, enticement (idol)): - ruin, stumbling-block."]},{"k":"H4385","v":["מִכְתָּב","miktâb","mik-tawb'","From H3789; a thing written, the characters, or a document (letter, copy, edict, poem): - writing."]},{"k":"H4386","v":["מְכִתָּה","mekittâh","mek-it-taw'","From H3807; a fracture: - bursting."]},{"k":"H4387","v":["מִכְתָּם","miktâm","mik-tawm'","From H3799; an engraving, that is, (technically) a poem: - Michtam."]},{"k":"H4388","v":["מַכְתֵּשׁ","maktêsh","mak-taysh'","From H3806; a mortar; by analogy a socket (of a tooth): - hollow place, mortar."]},{"k":"H4389","v":["מַכְתֵּשׁ","maktêsh","mak-taysh'","The same as H4388; dell; the Maktesh, a place in Jerusalem: - Maktesh."]},{"k":"H4390","v":["מָלָא    מָלֵא","mâlê'    mâlâ'","maw-lay', maw-law'","A primitive root, to fill or (intransitively) be full of, in a wide application (literally and figuratively): - accomplish, confirm, + consecrate, be at an end, be expired, be fenced, fill, fulfil, (be, become, X draw, give in, go) fully (-ly, -ly set, tale), [over-] flow, fulness, furnish, gather (selves, together), presume, replenish, satisfy, set, space, take a [hand-] full, + have wholly."]},{"k":"H4391","v":["מְלָא","melâ'","mel-aw'","(Chaldee); corresponding to H4390; to fill: - fill, be full."]},{"k":"H4392","v":["מָלֵא","mâlê'","maw-lay'","From H4390; full (literally or figuratively) or filling (literally); also (concretely) fulness; adverbially fully: -  X she that was with child, fill (-ed, -ed with), full (-ly), multitude, as is worth."]},{"k":"H4393","v":["מְלוֹ    מְלוֹא    מְלֹא","melô'    melô'    melô","mel-o', mel-o', mel-o'","From H4390; fulness (literally or figuratively): -    X all along, X all that is (there-) in, fill, (X that whereof . . . was) full, fulness, [hand-] full, multitude."]},{"k":"H4394","v":["מִלֻּא","millû'","mil-loo'","From H4390; a fulfilling (only in plural), that is, (literally) a setting (of gems), or (technically) consecration (also concretely a dedicatory sacrifice): - consecration, be set."]},{"k":"H4395","v":["מְלֵאָה","melê'âh","mel-ay-aw'","Feminine of H4392; something fulfilled, that is, abundance (of produce): - (first of ripe) fruit, fulness."]},{"k":"H4396","v":["מִלֻּאָה","millû'âh","mil-loo-aw'","Feminine of H4394; a filling, that is, setting (of gems): - inclosing, setting."]},{"k":"H4397","v":["מַלְאָךְ","mal'âk","mal-awk'","From an unused root meaning to despatch as a deputy; a messenger; specifically of God, that is, an angel (also a prophet, priest or teacher): - ambassador, angel, king, messenger."]},{"k":"H4398","v":["מַלְאַךְ","mal'ak","mal-ak'","(Chaldee); corresponding to H4397; an angel: - angel."]},{"k":"H4399","v":["מְלָאכָה","melâ'kâh","mel-aw-kaw'","From the same as H4397; properly deputyship, that is, ministry; generally employment (never servile) or work (abstractly or concretely); also property (as the result of labor): - business, + cattle, + industrious, occupation, (+ -pied), + officer, thing (made), use, (manner of) work ([-man], -manship)."]},{"k":"H4400","v":["מַלְאֲכוּת","mal'ăkûth","mal-ak-ooth'","From the same as H4397; a message: - message."]},{"k":"H4401","v":["מַלְאָכִי","mal'âkı̂y","mal-aw-kee'","From the same as H4397; ministrative; Malaki, a prophet: - Malachi."]},{"k":"H4402","v":["מִלֵּאת","millê'th","mil-layth'","From H4390; fulness, that is, (concretely) a plump socket (of the eye): -    X fitly."]},{"k":"H4403","v":["מַלְבֻּשׁ    מַלְבּוּשׁ","malbûsh    malbûsh","mal-boosh', mal-boosh'","From H3847; a garment, or (collectively) clothing: - apparel, raiment, vestment."]},{"k":"H4404","v":["מַלְבֵּן","malbên","mal-bane'","From H3835 (denominatively); a brickkiln: - brickwork."]},{"k":"H4405","v":["מִלֶּה    מִלָּה","millâh    milleh","mil-law', mil-leh'","From H4448 (plural masculine as if from the second form); a word; collectively a discourse; figuratively a topic: -  + answer, by-word, matter, any thing (what) to say, to speak (-ing), speak, talking, word."]},{"k":"H4406","v":["מִלָּה","millâh","mil-law'","(Chaldee); corresponding to H4405; a word, command, discourse, or subject: - commandment, matter, thing, word."]},{"k":"H4407","v":["מִלֹּא    מִלּוֹא","millô'    millô'","mil-lo', mil-lo'","From H4390; a rampart (as filled in), that is, the citadel: - Millo. See also H1037."]},{"k":"H4408","v":["מַלּוּחַ","mallûach","mal-loo'-akh","From H4414; sea purslain (from its saltness): - mallows."]},{"k":"H4409","v":["מַלּוּכִי    מַלּוּךְ","mallûk    malûkı̂y","mal-luke, mal-loo-kee'","From H4427; regnant; Malluk, the name of five Israelites: - Malluch, Melichu [from the margin]."]},{"k":"H4410","v":["מְלוּכָה","melûkâh","mel-oo-kaw'","Feminine passive participle of H4427; something ruled, that is, a realm: - kingdom, king’s, X royal."]},{"k":"H4411","v":["מָלוֹן","mâlôn","maw-lone'","From H3885; a lodgment, that is, caravanserai or encampment: - inn, place where . . . lodge, lodging (place)."]},{"k":"H4412","v":["מְלוּנָה","melûnâh","mel-oo-naw'","Feminine from H3885; a hut, a hammock: - cottage, lodge."]},{"k":"H4413","v":["מַלּוֹתִי","mallôthı̂y","mal-lo'-thee","Apparently from H4448; I have talked (that is, loquacious); Mallothi, an Israelite: - Mallothi, an Isr: - Mallothi."]},{"k":"H4414","v":["מָלַח","mâlach","maw-lakh'","A primitive root; properly to rub to pieces or pulverize; intransitively to disappear as dust; also (as denominative from H4417) to salt whether internally (to season with salt) or externally (to rub with salt): -    X at all, salt, season, temper together, vanish away."]},{"k":"H4415","v":["מְלַח","melach","mel-akh'","(Chaldee); corresponding to H4414; to eat salt, that is, (generally) subsist: -  + have maintenance."]},{"k":"H4416","v":["מְלַח","melach","mel-akh'","(Chaldee); from H4415; salt: -  + maintenance, salt."]},{"k":"H4417","v":["מֶלַח","melach","meh'-lakh","From H4414; properly powder, that is, (specifically) salt (as easily pulverized and dissolved): - salt ([-pit])."]},{"k":"H4418","v":["מָלָח","mâlâch","maw-lawkh'","From H4414 in its original sense; a rag or old garment: - rotten rag."]},{"k":"H4419","v":["מַלָּח","mallâch","mal-lawkh'","From H4414 in its secondary sense; a sailor (as following ‘the salt’): - mariner."]},{"k":"H4420","v":["מְלֵחָה","melêchâh","mel-ay-khaw'","From H4414 (in its denominative sense); properly salted (that is, land (H776 being understood)), that is, a desert: - barren land (-ness), salt [land]."]},{"k":"H4421","v":["מִלְחָמָה","milchâmâh","mil-khaw-maw'","From H3898 (in the sense of fighting); a battle (that is, the engagement); generally war (that is, warfare): - battle, fight, (-ing), war ([-rior])."]},{"k":"H4422","v":["מָלַט","mâlaṭ","maw-lat'","A primitive root; properly to be smooth, that is, (by implication) to escape (as if by slipperiness); causatively to release or rescue; specifically to bring forth young, emit sparks: - deliver (self), escape, lay, leap out, let alone, let go, preserve, save, X speedily, X surely."]},{"k":"H4423","v":["מֶלֶט","meleṭ","meh'-let","From H4422, cement (from its plastic smoothness): - clay."]},{"k":"H4424","v":["מְלַטְיָה","melaṭyâh","mel-at-yaw'","From H4423 and H3050; (whom) Jah has delivered; Melatjah, a Gibeonite: - Melatiah."]},{"k":"H4425","v":["מְלִילָה","melı̂ylâh","mel-ee-law'","From H4449 (in the sense of cropping (compare H4135)); a head of grain (as cut off): - ear."]},{"k":"H4426","v":["מְלִיצָה","melı̂ytsâh","mel-ee-tsaw'","From H3887; an aphorism; also a satire: - interpretation, taunting."]},{"k":"H4427","v":["מָלַךְ","mâlak","maw-lak'","A primitive root; to reign; inceptively to ascend the throne; causatively to induct into royalty; hence (by implication) to take counsel: - consult, X indeed, be (make, set a, set up) king, be (make) queen, (begin to, make to) reign (-ing), rule, X surely."]},{"k":"H4428","v":["מֶלֶךְ","melek","meh'-lek","From H4427; a king: - king, royal."]},{"k":"H4429","v":["מֶלֶךְ","melek","meh'-lek","The same as H4428; king; Melek, the name of two Israelites. Hammelech is by including the article: - Melech, Hammelech [by includ. the article."]},{"k":"H4430","v":["מֶלֶךְ","melek","meh'-lek","(Chaldee); corresponding to H4428; a king: - king, royal."]},{"k":"H4431","v":["מְלַךְ","melak","mel-ak'","(Chaldee); from a root corresponding to H4427 in the sense of consultation; advice: - counsel."]},{"k":"H4432","v":["מֹלֶךְ","môlek","mo'-lek","From H4427; Molek (that is, king), the chief deity of the Ammonites: - Molech. Compare H4445."]},{"k":"H4433","v":["מַלְכָּא","malkâ'","mal-kaw'","(Chaldee); corresponding to H4436; a queen: - queen."]},{"k":"H4434","v":["מַלְכֹּדֶת","malkôdeth","mal-ko'-deth","From H3920; a snare: - trap."]},{"k":"H4435","v":["מִלְכָּה","milkâh","mil-kaw'","A form of H4436; queen; Milcah, the name of a Hebrewess and of an Israelite: - Milcah."]},{"k":"H4436","v":["מַלְכָּה","malkâh","mal-kaw'","Feminine of H4428; a queen: - queen."]},{"k":"H4437","v":["מַלְכוּ","malkû","mal-koo'","(Chaldee); corresponding to H4438; dominion (abstractly or concretely): - kingdom, kingly, realm, reign."]},{"k":"H4438","v":["מַלְכֻיָּה    מַלְכֻת    מַלְכוּת","malkûth    malkûth    malkûyâh","mal-kooth', mal-kooth', mal-koo-yaw'","From H4427; a rule; concretely a dominion: - empire, kingdom, realm, reign, royal."]},{"k":"H4439","v":["מַלְכִּיאֵל","malkı̂y'êl","mal-kee-ale'","From H4428 and H410; king of (that is, appointed by) God; Malkiel, an Israelite: - Malchiel."]},{"k":"H4440","v":["מַלְכִּיאֵלִי","malkı̂y'êlı̂y","mal-kee-ay-lee'","Patronymic from H4439; a Malkielite or descendant of Malkiel: - Malchielite."]},{"k":"H4441","v":["מַלְכִּיָהוּ    מַלְכִּיָּה","malkı̂yâh    malkiyâhû","mal-kee-yaw', mal-kee-yaw'-hoo","From H4428 and H3050; king of (that is, appointed by) Jah; Malkijah, the name of ten Israelites: - Malchiah, Malchijah."]},{"k":"H4442","v":["מַלְכִּי־צֶדֶק","malkı̂y-tsedeq","mal-kee-tseh'-dek","From H4428 and H6664; king of right; Malki-Tsedek, an early king in Palestine: - Melchizedek."]},{"k":"H4443","v":["מַלְכִּירָם","malkı̂yrâm","mal-kee-rawm'","From H4428 and H7311; king of a high one (that is, of exaltation); Malkiram, an Israelite: - Malchiram."]},{"k":"H4444","v":["מַלְכִּישׁוּעַ","malkı̂yshûa‛","mal-kee-shoo'-ah","From H4428 and H7769; king of wealth; Malkishua, an Israelite: - Malchishua."]},{"k":"H4445","v":["מִלְכּוֹם    מַלְכָּם","malkâm    milkôm","mal-kawm', mil-kome'","From H4428 for H4432; Malcam or Milcom, the national idol of the Ammonites: - Malcham, Milcom."]},{"k":"H4446","v":["מְלֶכֶת","meleketh","mel-eh'-keth","From H4427; a queen: - queen."]},{"k":"H4447","v":["מֹלֶכֶת","môleketh","mo-leh'-keth","Feminine active participle of H4427; queen; Moleketh, an Israelitess, (including the article): - Hammoleketh [includ. the article.]"]},{"k":"H4448","v":["מָלַל","mâlal","maw-lal'","A primitive root; to speak (mostly poetical) or say: - say, speak, utter."]},{"k":"H4449","v":["מְלַל","melal","mel-al'","(Chaldee); corresponding to H4448; to speak: - say, speak (-ing)."]},{"k":"H4450","v":["מִלֲלַי","milălay","mee-lal-ah'ee","From H4448; talkative; Milalai, an Israelite: - Milalai."]},{"k":"H4451","v":["מַלְמָד","malmâd","mal-mawd'","From H3925; a goad for oxen: - goad."]},{"k":"H4452","v":["מָלַץ","mâlats","maw-lats'","A primitive root; to be smooth, that is, (figuratively) pleasant: - be sweet."]},{"k":"H4453","v":["מֶלְצָר","meltsâr","mel-tsawr'","Of Persian derivation; the butler or other oficer in the Babylonian court: - Melzar."]},{"k":"H4454","v":["מָלַק","mâlaq","maw-lak'","A primitive root; to crack a joint; by implication to wring the neck of a fowl (without separating it): - wring off."]},{"k":"H4455","v":["מַלְקוֹחַ","malqôach","mal-ko'-akh","From H3947; transitively (in dual) the jaws (as taking food); intransitively spoil (and captives), (as taken): - booty, jaws, prey."]},{"k":"H4456","v":["מַלְקוֹשׁ","malqôsh","mal-koshe'","From H3953; the spring rain (compare H3954); figuratively eloquence: - latter rain."]},{"k":"H4457","v":["מַלְקָח    מֶלְקָח","melqâch    malqâch","mel-kawkh', mal-kawkh'","From H3947; (only in dual) tweezers: - snuffers, tongs."]},{"k":"H4458","v":["מֶלְתָּחָה","meltâchâh","mel-taw-khaw'","From an unused root meaning to spread out; a wardrobe (that is, room where clothing is spread): - vestry."]},{"k":"H4459","v":["מַלְתָּעָה","maltâ‛âh","mal-taw-aw'","Transposition for H4973; a grinder, that is, back tooth: - great tooth."]},{"k":"H4460","v":["מַמְּגֻרָה","mammegûrâh","mam-meg-oo-raw'","From H4048 (in the sense of depositing); a granary: - barn."]},{"k":"H4461","v":["מֵמַד","mêmad","may-mad'","From H4058; a measure: - measure."]},{"k":"H4462","v":["מוֹמֻכָן    מְמוּכָן","memûkân    mômûkân","mem-oo-kawn', mo-moo-kawn'","Of Persian derivation; Memucan or Momucan, a Persian satrap: - Memucan."]},{"k":"H4463","v":["מָמוֹת","mâmôth","maw-mothe'","From H4191; a mortal disease; concretely a corpse: - death."]},{"k":"H4464","v":["מַמְזֵר","mamzêr","mam-zare'","From an unused root mian. to alienate; a mongrel, that is, born of a Jewish father and a heathen mother: - bastard."]},{"k":"H4465","v":["מִמְכָּר","mimkâr","mim-kawr'","From H4376; merchandise; abstractly a selling: -  X ought, (that which cometh of) sale, that which . . . sold, ware."]},{"k":"H4466","v":["מִמְכֶּרֶת","mimkereth","mim-keh'-reth","Feminine of H4465; a sale: -  + sold as."]},{"k":"H4467","v":["מַמְלָכָה","mamlâkâh","mam-law-kaw'","From H4427; dominion, that is, (abstractly) the estate (rule) or (concretely) the country (realm): - kingdom, king’s, reign, royal."]},{"k":"H4468","v":["מַמְלָכוּת","mamlâkûth","mam-law-kooth'","A form of H4467 and equivalent to it: - kingdom, reign."]},{"k":"H4469","v":["מַמְסָךְ","mamsâk","mam-sawk'","From H4537; mixture, that is, (specifically) wine mixed (with water or spices): - drink-offering, mixed wine."]},{"k":"H4470","v":["מֶמֶר","memer","meh'-mer","From an unused root meaning to grieve; sorrow: - bitterness."]},{"k":"H4471","v":["מַמְרֵא","mamrê'","mam-ray'","From H4754 (in the sense of vigor); lusty; Mamre, an Amorite: - Mamre."]},{"k":"H4472","v":["מַמְרֹר","mamrôr","mam-rore'","From H4843; a bitterness, that is, (figuratively) calamity: - bitterness."]},{"k":"H4473","v":["מִמְשַׁח","mimshach","mim-shakh'","From H4886, in the sense of expansion; outspread (that is, with outstretched wings): - anointed."]},{"k":"H4474","v":["מִמְשָׁל","mimshâl","mim-shawl'","From H4910; a ruler or (abstractly) rule: - dominion, that ruled."]},{"k":"H4475","v":["מֶמְשָׁלָה","memshâlâh","mem-shaw-law'","Feminine of H4474; rule; also (concretely in plural) a realm or a ruler: - dominion, government, power, to rule."]},{"k":"H4476","v":["מִמְשָׁק","mimshâq","mim-shawk'","From the same as H4943; a possession: - breeding."]},{"k":"H4477","v":["מַמְתַּק","mamtaq","mam-tak'","From H4985; something sweet (literally or figuratively): - (most) sweet."]},{"k":"H4478","v":["מָן","mân","mawn","From H4100; literally a whatness (so to speak), that is, manna (so called from the question about it): - manna."]},{"k":"H4479","v":["מָן","mân","mawn","(Chaldee); from H4101; who or what (properly interrogitive, hence also indefinite and relative): - what, who (-msoever, + so)."]},{"k":"H4480","v":["מִנֵּי    מִנִּי      מִן","min    minnı̂y    minnêy","min, min-nee', min-nay'","For H4482; properly a part of; hence (prepositionally), from or out of in many senses: - above, after, among, at, because of, by (reason of), from (among), in, X neither, X nor, (out) of, over, since, X then, through, X whether, with."]},{"k":"H4481","v":["מִן","min","min","(Chaldee); corresponding to H4480: - according, after, + because, + before, by, for, from, X him, X more than, (out) of, part, since, X these, to, upon, + when."]},{"k":"H4482","v":["מֵן","mên","mane","From an unused rot meaning to apportion; a part; hence a musical chord (as parted into strings): - in [the same] (Psa. H68 : H23), stringed instrument (Psa. H150 : H4), whereby (Psa. H45 : H8 [defective plural])."]},{"k":"H4483","v":["מְנָה    מְנָא","menâ'    menâh","men-aw', men-aw'","(Chaldee); corresponding to H4487; to count, appoint: - number, ordain, set."]},{"k":"H4484","v":["מְנֵא","menê'","men-ay'","(Chaldee); passive participle of H4483; numbered: - Mene."]},{"k":"H4485","v":["מַנְגִּינָה","mangı̂ynâh","man-ghee-naw'","From H5059; a satire: - music."]},{"k":"H4486","v":["מַנְדַּע","manda‛","man-dah'","(Chaldee); corresponding to H4093; wisdom or intelligence: - knowledge, reason, understanding."]},{"k":"H4487","v":["מָנָה","mânâh","maw-naw'","A primitive root; properly to weigh out; by implication to allot or constitute officially; also to enumerate or enroll: - appoint, count, number, prepare, set, tell."]},{"k":"H4488","v":["מָנֶה","mâneh","maw-neh'","From H4487; properly a fixed weight or measured amount, that is, (technically) a maneh or mina: - maneh, pound."]},{"k":"H4489","v":["מֹנֶה","môneh","mo-neh'","From H4487; properly something weighed out, that is, (figuratively) a portion of time, that is, an instance: - time."]},{"k":"H4490","v":["מָנָה","mânâh","maw-naw'","From H4487; properly something weighed out, that is, (generally) a division; specifically (of food) a ration; also a lot: - such things as belonged, part, portion."]},{"k":"H4491","v":["מִנְהָג","minhâg","min-hawg'","From H5090; the driving (of a chariot): - driving."]},{"k":"H4492","v":["מִנְהָרָה","minhârâh","min-haw-raw'","From H5102; properly a channel or fissure, that is, (by implication) a cavern: - den."]},{"k":"H4493","v":["מָנוֹד","mânôd","maw-node'","From H5110; a nodding or toss (of the head in derision): - shaking."]},{"k":"H4494","v":["מָנוֹחַ","mânôach","maw-no'-akh","From H5117; quiet, that is, (concretely) a settled spot, or (figuratively) a home: - (place of) rest."]},{"k":"H4495","v":["מָנוֹחַ","mânôach","maw-no'-akh","The same as H4494; rest; Manoach, an Israelite: - Manoah."]},{"k":"H4496","v":["מְנֻחָה    מְנוּחָה","menûchâh    menûchâh","men-oo-khaw', men-oo-khaw'","Feminine of H4495; repose or (adverbially) peacefully; figuratively consolation (specifically matrimony); hence (concretely) an abode: - comfortable, ease, quiet, rest (-ing place), still."]},{"k":"H4497","v":["מָנוֹן","mânôn","maw-nohn'","From H5125; a continuator, that is, heir: - son."]},{"k":"H4498","v":["מָנוֹס","mânôs","maw-noce'","From H5127; a retreat (literally or figuratively); abstractly a fleeing: -  X apace, escape, way to flee, flight, refuge."]},{"k":"H4499","v":["מְנֻסָה    מְנוּסָה","menûsâh    menûsâh","men-oo-saw', men-oo-saw'","Feminine of H4498; retreat: - fleeing, flight."]},{"k":"H4500","v":["מָנוֹר","mânôr","maw-nore'","From H5214; a yoke (properly for ploughing), that is, the frame of a loom: - beam."]},{"k":"H4501","v":["מְנֹרָה    מְנוֹרָה","menôrâh    menôrâh","men-o-raw', men-o-raw'","Feminine of H4500 (in the original sense of H5216); a chandelier: - candlestick."]},{"k":"H4502","v":["מִנְּזָר","minnezâr","min-ez-awr'","From H5144; a prince: - crowned."]},{"k":"H4503","v":["מִנְחָה","minchâh","min-khaw'","From an unused root meaning to apportion, that is, bestow; a donation; euphemistically tribute; specifically a sacrificial offering (usually bloodless and voluntary): - gift, oblation, (meat) offering, present, sacrifice."]},{"k":"H4504","v":["מִנְחָה","minchâh","min-khaw'","(Chaldee); corresponding to H4503; a sacrificial offering: - oblation, meat offering."]},{"k":"H4505","v":["מְנַחֵם","menachêm","men-akh-ame'","From H5162; comforter; Menachem, an Israelite: - Menahem."]},{"k":"H4506","v":["מָנַחַת","mânachath","maw-nakh'-ath","From H5117; rest; Manachath, the name of an Edomite and of a place in Moab: - Manahath."]},{"k":"H4507","v":["מְנִי","menı̂y","men-ee'","From H4487; the Apportioner, that is, Fate (as an idol): - number."]},{"k":"H4508","v":["מִנִּי","minnı̂y","min-nee'","Of foreign derivation; Minni, an Armenian province: - Minni."]},{"k":"H4509","v":["מִנְיָמִין","minyâmı̂yn","min-yaw-meen'","From H4480 and H3225; from (the) right hand; Minjamin, the name of two Israelites: - Miniamin. Compare H4326."]},{"k":"H4510","v":["מִנְיָן","minyân","min-yawn'","(Chaldee); from H4483; enumeration: - number."]},{"k":"H4511","v":["מִנִּית","minnı̂yth","min-neeth'","From the same as H4482; enumeration; Minnith, a place East of the Jordan: - Minnith."]},{"k":"H4512","v":["מִנְלֶה","minleh","min-leh'","From H5239; completion, that is, (in produce) wealth: - perfection."]},{"k":"H4513","v":["מָנַע","mâna‛","maw-nah'","A primitive root; to debar (negatively or positively) from benefit or injury: - deny, keep (back), refrain, restrain, withhold."]},{"k":"H4514","v":["מַנְעֻל    מַנְעוּל","man‛ûl    man‛ûl","man-ool', man-ool'","From H5274; a bolt: - lock."]},{"k":"H4515","v":["מַנְעָל","man‛âl","man-awl'","From H5274; a bolt: - shoe."]},{"k":"H4516","v":["מַנְעַם","man‛am","man-am'","From H5276; a delicacy: - dainty."]},{"k":"H4517","v":["מְנַעְנַע","mena‛na‛","men-ah-ah'","From H5128; a sistrum (so called from its rattling sound): - cornet."]},{"k":"H4518","v":["מְנַקִּית","menaqqı̂yth","men-ak-keeth'","From H5352; a sacrificial basin (for holding blood): - bowl."]},{"k":"H4519","v":["מְנַשֶּׁה","menashsheh","men-ash-sheh'","From H5382; causing to forget; Menashsheh, a grandson of jacob, also the tribe descendant from him, and its territory: - Manasseh."]},{"k":"H4520","v":["מְנַשִּׁי","menashshı̂y","men-ash-shee'","From H4519; a Menashshite or descendant of Menashsheh: - of Manasseh, Manassites."]},{"k":"H4521","v":["מְנָת","menâth","men-awth'","From H4487; an allotment (by courtesy, law or providence): - portion."]},{"k":"H4522","v":["מִס    מַס","mas    mis","mas, mees","From H4549; properly a burden (as causing to faint), that is, a tax in the form of forced labor: - discomfited, levy, task [-master], tribute (-tary)."]},{"k":"H4523","v":["מָס","mâs","mawce","From H4549; fainting, that is, (figuratively) disconsolate: - is afflicted."]},{"k":"H4524","v":["מְסִבּוֹת    מְסִבִּים    מֵסַב","mêsab    mesibbı̂ym    mesibbôth","may-sab', mes-ib-beem', mes-ib-bohth'","From H5437; a divan (as enclosing the room); abstractly (adverbially) around: - that compass about, (place) round about, at table."]},{"k":"H4525","v":["מַסְגֵּר","masgêr","mas-gare'","From H5462; a fastener, that is, (of a person) a smith, (of a thing) a prison: - prison, smith."]},{"k":"H4526","v":["מִסְגֶּרֶת","misgereth","mis-gheh'-reth","From H5462; something enclosing, that is, a margin (of a region, of a panel); concretely a stronghold: - border, close place, hole."]},{"k":"H4527","v":["מַסַּד","massad","mas-sad'","From H3245; a foundation: - foundation."]},{"k":"H4528","v":["מִסְדְּרוֹן","misderôn","mis-der-ohn'","From the same as H5468; a colonnade or internal portico (from its rows of pillars): - porch."]},{"k":"H4529","v":["מָסָה","mâsâh","maw-saw'","A primitive root; to dissolve: - make to consume away, (make to) melt, water."]},{"k":"H4530","v":["מִסָּה","missâh","mis-saw'","From H4549 (in the sense of flowing); abundance, that is, (adverbially) liberally: - tribute."]},{"k":"H4531","v":["מַסָּה","massâh","mas-saw'","From H5254; a testing, of men (judicial) or of God (querulous): - temptation, trial."]},{"k":"H4532","v":["מַסָּה","massâh","mas-saw'","The same as H4531; Massah, a place in the Desert: - Massah."]},{"k":"H4533","v":["מַסְוֶה","masveh","mas-veh'","Apparently from an unused root meaning to cover; a veil: - vail."]},{"k":"H4534","v":["מְסוּכָה","mesûkâh","mes-oo-kaw'","For H4881; a hedge: - thorn hedge."]},{"k":"H4535","v":["מַסָּח","massâch","mas-sawkh'","From H5255 in the sense of staving off; a cordon, (adverbially) or (as a) military barrier: - broken down."]},{"k":"H4536","v":["מִסְחָר","mischâr","mis-khawr'","From H5503; trade: - traffic."]},{"k":"H4537","v":["מָסַךְ","mâsak","maw-sak'","A primitive root; to mix, especially wine (with spices): - mingle."]},{"k":"H4538","v":["מֶסֶךְ","mesek","meh'-sek","From H4537; a mixture, that is, of wine with spices: - mixture."]},{"k":"H4539","v":["מָסָךְ","mâsâk","maw-sawk","From H5526; a cover, that is, veil: - covering, curtain, hanging."]},{"k":"H4540","v":["מְסֻכָּה","mesûkkâh","mes-ook-kaw'","From H5526; a covering, that is, garniture: - covering."]},{"k":"H4541","v":["מַסֵּכָה","massêkâh","mas-say-kaw'","From H5258; properly a pouring over, that is, fusion of metal (especially a cast image); by implication a libation, that is, league; concretely a coverlet (as if poured out): - covering, molten (image), vail."]},{"k":"H4542","v":["מִסְכֵּן","miskên","mis-kane'","From H5531; indigent: - poor (man)."]},{"k":"H4543","v":["מִסְכְּנָה","miskenâh","mis-ken-aw'","By transposition from H3664; a magazine: - store(-house), treasure."]},{"k":"H4544","v":["מִסְכֵּנֻת","miskênûth","mis-kay-nooth'","From H4542; indigence: - scarceness."]},{"k":"H4545","v":["מַסֶּכֶת","masseketh","mas-seh'-keth","From H5259 in the sense of spreading out; something expanded, that is, the warp in a loom (as stretched out to receive the woof): - web."]},{"k":"H4546","v":["מְסִלָּה","mesillâh","mes-il-law'","From H5549; a thoroughfare (as turnpiked), literally or figuratively; specifically a viaduct, a staircase: - causeway, course, highway, path, terrace."]},{"k":"H4547","v":["מַסְלוּל","maslûl","mas-lool'","From H5549; a thoroughfare (as turnpiked): - highway."]},{"k":"H4548","v":["מִסְמְרָה    מַסְמְרָה    מִסְמֵר    מַסְמֵר","masmêr    mismêr    masmerâh    mismerâh","mas-mare' mis-mare' mas (mis) -mer-aw'","From H5568; a peg (as bristling from the surface): - nail."]},{"k":"H4549","v":["מָסַס","mâsas","maw-sas'","A primitive root; to liquefy; figuratively to waste (with disease), to faint (with fatigue, fear or grief): - discourage, faint, be loosed, melt (away), refuse, X utterly."]},{"k":"H4550","v":["מַסַּע","massa‛","mas-sah","From H5265; a departure (from striking the tents), that is, march (not necessarily a single day’s travel); by implication a station (or point of departure): - journey (-ing)."]},{"k":"H4551","v":["מַסָּע","massâ‛","mas-saw'","From H5265 in the sense of projecting; a missile (spear or arrow); also a quarry (whence stones are, as it were, ejected): - before it was brought, darticle"]},{"k":"H4552","v":["מִסְעָד","mis‛âd","mis-awd'","From H5582; a balustrade (for stairs): - pillar."]},{"k":"H4553","v":["מִסְפֵּד","mispêd","mis-pade'","From H5594; a lamentation: - lamentation, one mourneth, mourning, wailing."]},{"k":"H4554","v":["מִסְפּוֹא","mispô'","mis-po'","From an unused root meaning to collect; fodder: - provender."]},{"k":"H4555","v":["מִסְפָּחָה","mispâchâh","mis-paw-khaw'","From H5596; a veil (as spread out): - kerchief."]},{"k":"H4556","v":["מִסְפַּחַת","mispachath","mis-pakh'-ath","From H5596; scurf (as spreading over the surface): - scab."]},{"k":"H4557","v":["מִסְפָּר","mispâr","mis-pawr'","From H5608; a number, definitely (arithmetical) or indefinitely (large, innumerable; small, a few); also (abstractly) narration: -  + abundance, account, X all, X few, [in-] finite, (certain) number (-ed), tale, telling, + time."]},{"k":"H4558","v":["מִסְפָּר","mispâr","mis-pawr'","The same as H4457; number; Mispar, an Israelite: - Mizpar. Compare H4559."]},{"k":"H4559","v":["מִסְפֶּרֶת","mispereth","mis-peh'-reth","Feminine of H4457; enumeration; Mispereth, an Israelite: - Mispereth. Compare H4458."]},{"k":"H4560","v":["מָסַר","mâsar","maw-sar'","A primitive root; to sunder, that is, (transitively) set apart, or (reflexively) apostatize: - commit, deliver."]},{"k":"H4561","v":["מֹסָר","môsâr","mo-sawr'","From H3256; admonition: - instruction."]},{"k":"H4562","v":["מָסֹרֶת","mâsôreth","maw-so'-reth","From H631; a band: - bond."]},{"k":"H4563","v":["מִסְתּוֹר","mistôr","mis-tore'","From H5641; a refuge: - covert."]},{"k":"H4564","v":["מַסְתֵּר","mastêr","mas-tare'","From H5641; properly a hider, that is, (abstractly) a hiding, that is, aversion: - hid."]},{"k":"H4565","v":["מִסְתָּר","mistâr","mis-tawr'","From H5641; properly a concealer, that is, a covert: - secret (-ly, place)."]},{"k":"H4566","v":["מַעְבָּד","ma‛bâd","mah-bawd'","From H5647; an act: - work."]},{"k":"H4567","v":["מַעְבָד","ma‛bâd","mah-bawd'","(Chaldee); corresponding to H4566; an act: - work."]},{"k":"H4568","v":["מַעֲבֶה","ma‛ăbeh","mah-ab-eh'","From H5666; properly compact (part of soil), that is, loam: - clay."]},{"k":"H4569","v":["מַעֲבָרָה    מַעֲבָר","ma‛ăbâr    ma‛ăbârâh","mah-ab-awr', mah-ab-aw-raw'","From H5674; a crossing place (of a river, a ford; of a mountain, a pass); abstractly a transit, that is, (figuratively) overwhelming: - ford, place where . . . pass, passage."]},{"k":"H4570","v":["מַעְגָּלָה    מַעְגָּל","ma‛gâl    ma‛gâlâh","mah-gawl', mah-gaw-law'","From the same as H5696; a track (literally or figuratively); also a rampart (as circular): - going, path, trench, way([-side])."]},{"k":"H4571","v":["מָעַד","mâ‛ad","maw-ad'","A primitive root; to waver: - make to shake, slide, slip."]},{"k":"H4572","v":["מַעֲדַי","ma‛ăday","mah-ad-ah'ee","From H5710; ornamental; Maadai, an Israelite: - Maadai."]},{"k":"H4573","v":["מַעַדְיָה","ma‛adyâh","mah-ad-yaw'","From H5710 and H3050; ornament of Jah; Maadjah, an Israelite: - Maadiah. Compare H4153."]},{"k":"H4574","v":["מַעֲדַנָּה    מַעֲדָן","ma‛ădân    ma‛ădannâh","mah-ad-awn', mah-ad-an-naw'","From H5727; a delicacy or (abstractly) pleasure (adverbially cheerfully): - dainty, delicately, delight."]},{"k":"H4575","v":["מַעֲדַנָּה","ma‛ădannâh","mah-ad-an-naw'","By transposition from H6029; a bond, that is, group: - influence."]},{"k":"H4576","v":["מַעְדֵּר","ma‛dêr","mah-dare'","From H5737; a (weeding) hoe: - mattock."]},{"k":"H4577","v":["מְעָא    מְעָה","me‛âh    me‛â'","meh-aw', meh-aw'","(Chaldee); corresponding to H4578; only in plural the bowels: - belly."]},{"k":"H4578","v":["מֵעֶה","mê‛eh","may-aw'","From an unused root probably meaning to be soft; used only in plural the intestines, or (collectively) the abdomen, figuratively sympathy; by implication a vest; by extension the stomach, the uterus (or of men, the seat of generation), the heart (figuratively): - belly, bowels, X heart, womb."]},{"k":"H4579","v":["מֵעָה","mê‛âh","may-aw'","Feminine of H4578; the belly, that is, (figuratively) interior: - gravel."]},{"k":"H4580","v":["מָעוֹג","mâ‛ôg","maw-ogue'","From H5746; a cake of bread (with H3934 a table buffoon, that is, parasite): - cake, feast."]},{"k":"H4581","v":["מָעֻז    מָעֹז    מָעוּז    מָעוֹז","mâ‛ôz    mâ‛ûz    mâ‛ôz    mâ‛ûz","maw-oze', maw-ooz', maw-oze', maw-ooz'","From H5810; a fortified place; figuratively a defence: - force, fort (-ress), rock, strength (-en), (X most) strong (hold)."]},{"k":"H4582","v":["מָעוֹךְ","mâ‛ôk","maw-oke'","From H4600; oppressed; Maok, a Philistine: - Maoch."]},{"k":"H4583","v":["מָעִין    מָעוֹן","mâ‛ôn    mâ‛ı̂yn","maw-ohn', maw-een'","From the same as H5772; an abode, of God (the Tabernacle or the Temple), men (their home) or animals (their lair); hence a retreat (asylum): - den, dwelling ([-]) place), habitation."]},{"k":"H4584","v":["מָעוֹן","mâ‛ôn","maw-ohn'","The same as H4583; a residence; Maon, the name of an Israelite and of a place in Palestine: - Maon, Maonites. Compare H1010, H4586."]},{"k":"H4585","v":["מְעֹנָה    מְעוֹנָה","me‛ônâh    me‛ônâh","meh-o-naw', meh-o-naw'","Feminine of H4583, and meaning the same: - den, habitation, (dwelling) place, refuge."]},{"k":"H4586","v":["מְעִינִי    מְעוּנִי","me‛ûnı̂y    me‛ı̂ynı̂y","meh-oo-nee', meh-ee-nee'","Probably patrial from H4584; a Meunite, or inhabitant of Maon (only in plural): - Mehunim (-s), Meunim."]},{"k":"H4587","v":["מְעוֹנֹתַי","me‛ônôthay","meh-o-no-thah'ee","Plural of H4585; habitative; Meonothai, an Israelite: - Meonothai."]},{"k":"H4588","v":["מָעוּף","mâ‛ûph","maw-oof'","From H5774 in the sense of covering with shade (compare H4155); darkness: - dimness."]},{"k":"H4589","v":["מָעוֹר","mâ‛ôr","maw-ore'","From H5783; nakedness, that is, (in plural) the pudenda: - nakedness."]},{"k":"H4590","v":["מַעַזְיָהוּ    מַעַזְיָה","ma‛azyâh    ma‛azyâhû","mah-az-yaw', mah-az-yaw'-hoo","Probably from H5756 (in the sense of protection) and H3050; rescue of Jah; Maazjah, the name of two Israelites: - Maaziah."]},{"k":"H4591","v":["מָעַט","mâ‛aṭ","maw-at'","A primitive root; properly to pare off, that is, lessen; intransitively to be (or causatively to make) small or few (or figuratively ineffective): - suffer to decrease, diminish, (be, X borrow a, give, make) few (in number, -ness), gather least (little), be (seem) little, (X give the) less, be minished, bring to nothing."]},{"k":"H4592","v":["מְעָט    מְעַט","me‛aṭ    me‛âṭ","meh-at', meh-awt'","From H4591; a little or few (often adverbial or comparative): - almost, (some, very) few (-er, -est), lightly, little (while), (very) small (matter, thing), some, soon, X very."]},{"k":"H4593","v":["מָעֹט","mâ‛ôṭ","maw-ote'","Passive adjective of H4591; thinned (as to the edge), that is, sharp: - wrapped up."]},{"k":"H4594","v":["מַעֲטֶה","ma‛ăṭeh","mah-at-eh'","From H5844; a vestment: - garment."]},{"k":"H4595","v":["מַעֲטָפָה","ma‛ăṭâphâh","mah-at-aw-faw'","From H5848; a cloak: - mantle."]},{"k":"H4596","v":["מְעִי","me‛ı̂y","meh-ee'","From H5753; a pile of rubbish (as contorted), that is, a ruin (compare H5856): - heap."]},{"k":"H4597","v":["מָעַי","mâ‛ay","maw-ah'ee","Probably from H4578; sympathetic; Maai, an Israelite: - Maai."]},{"k":"H4598","v":["מְעִיל","me‛ı̂yl","meh-eel'","From H4603 in the sense of covering; a robe (that is, upper and outer garment): - cloke, coat, mantle, robe."]},{"k":"H4599","v":["מַעְיָנָה    מַעְיְנוֹ    מַעְיָן","ma‛yân    ma‛yenô    ma‛yânâh","mah-yawn', mah-yen-o', mah-yaw-naw'","From H5869 (as a denominative in the sense of a spring); a fountain (also collectively), figuratively a source (of satisfaction): - fountain, spring, well."]},{"k":"H4600","v":["מָעַךְ","mâ‛ak","maw-ak'","A primitive root; to press, that is, to pierce, emasculate, handle: - bruised, stuck, be pressed."]},{"k":"H4601","v":["מַעֲכָת    מַעֲכָה","ma‛ăkâh    ma‛ăkâth","mah-ak-aw', mah-ak-awth'","From H4600; depression; Maakah (or Maakath), the name of a place in Syria, also of a Mesopotamian, of three Israelites, and of four Israelitesses and one Syrian woman: - Maachah, Maachathites. See also H1038."]},{"k":"H4602","v":["מַעֲכָתִי","ma‛ăkâthı̂y","mah-ak-aw-thee'","Patrial from H4601; a Maakathite, or inhabitant of Maakah: - Maachathite."]},{"k":"H4603","v":["מָעַל","mâ‛al","maw-al'","A primitive root; properly to cover up; used only figuratively to act covertly, that is, treacherously: - transgress, (commit, do a) tresspass (-ing)."]},{"k":"H4604","v":["מַעַל","ma‛al","mah'-al","From H4608; treachery, that is, sin: - falsehood, grievously, sore, transgression, trespass, X very."]},{"k":"H4605","v":["מַעַל","ma‛al","mah'-al","From H5927; properly the upper part, used only adverbially with prefix upward, above, overhead, from the top, etc.: - above, exceeding (-ly), forward, on (X very) high, over, up (-on, -ward), very."]},{"k":"H4606","v":["מֵעָל","mê‛âl","may-awl'","(Chaldee); from H5954; (only in plural as singular) the setting (of the sun): - going down."]},{"k":"H4607","v":["מֹעַל","mô‛al","mo'-al","From H5927; a raising (of the hands): - lifting up."]},{"k":"H4608","v":["מַעֲלֶה","ma‛ăleh","mah-al-eh'","From H5927; an elevation, that is, (concretely) acclivity or platform; abstractly (the relation or state) a rise or (figuratively) priority: - ascent, before, chiefest, cliff, that goeth up, going up, hill, mounting up, stairs."]},{"k":"H4609","v":["מַעֲלָה","ma‛ălâh","mah-al-aw'","Feminine of H4608; elevation, that is, the act (literally a journey to a higher place, figuratively a thought arising), or (concretely) the condition (literally a step or grade mark, figuratively a superiority of station); specifically a climactic progression (in certain Psalms): - things that come up, (high) degree, deal, go up, stair, step, story."]},{"k":"H4610","v":["מַעֲלֵה עַקְרַבִּים","ma‛ălêh ‛aqrabbı̂ym","mah-al-ay' ak-rab-beem'","From H4608 and (the plural of) H6137; Steep of Scorpions, a place in the Desert: - Maaleh-accrabim, the ascent (going up) of Akrabbim."]},{"k":"H4611","v":["מַעֲלָל","ma‛ălâl","mah-al-awl'","From H5953; an act (good or bad): - doing, endeavour, invention, work."]},{"k":"H4612","v":["מַעֲמָד","ma‛ămâd","mah-am-awd'","From H5975; (figuratively) a position: - attendance, office, place, state."]},{"k":"H4613","v":["מָעֳמָד","mo‛ŏmâd","moh-om-awd'","From H5975; literally a foothold: - standing."]},{"k":"H4614","v":["מַעֲמָסָה","ma‛ămâsâh","mah-am-aw-saw'","From H6006; burdensomeness: - burdensome."]},{"k":"H4615","v":["מַעֲמָק","ma‛ămâq","mah-am-awk'","From H6009; a deep: - deep, depth."]},{"k":"H4616","v":["מַעַן","ma‛an","mah'-an","From H6030; properly heed, that is, purpose; used only adverbially, on account of (as a motive or an aim), teleologically in order that: - because of, to the end (intent) that, for (to, . . . ‘s sake), + lest, that, to."]},{"k":"H4617","v":["מַעֲנֶה","ma‛ăneh","mah-an-eh'","From H6030; a reply (favorable or contradictory): - answer, X himself."]},{"k":"H4618","v":["מַעֲנָה","ma‛ănâh","mah-an-aw'","From H6031, in the sense of depression or tilling; a furrow: -  + acre, furrow."]},{"k":"H4619","v":["מַעַץ","ma‛ats","mah'-ats","From H6095; closure; Maats, an Israelite: - Maaz."]},{"k":"H4620","v":["מַעֲצֵבָה","ma‛ătsêbâh","mah-ats-ay-baw'","From H6087; anguish: - sorrow."]},{"k":"H4621","v":["מַעֲצָד","ma‛ătsâd","mah-ats-awd'","From an unused root meaning to hew; an axe: - ax, tongs."]},{"k":"H4622","v":["מַעְצוֹר","ma‛tsôr","mah-tsore'","From H6113; objectively a hindrance: - restraint."]},{"k":"H4623","v":["מַעְצָר","ma‛tsâr","mah-tsawr'","From H6113; subjectively control: - rule."]},{"k":"H4624","v":["מַעֲקֶה","ma‛ăqeh","mah-ak-eh'","From an unused root meaning to repress; a parapet: - battlement."]},{"k":"H4625","v":["מַעֲקָשׁ","ma‛ăqâsh","mah-ak-awsh'","From H6140; a crook (in a road): - crooked thing."]},{"k":"H4626","v":["מַעַר","ma‛ar","mah'-ar","From H6168; a nude place, that is, (literally) the pudenda, or (figuratively) a vacant space: - nakedness, proportion."]},{"k":"H4627","v":["מַעֲרָב","ma‛ărâb","mah-ar-awb'","From H6148, in the sense of trading; traffic; by implication mercantile goods: - market, merchandise."]},{"k":"H4628","v":["מַעֲרָבָה    מַעֲרָב","ma‛ărâb    ma‛ărâbâh","mah-ar-awb', mah-ar-aw-baw'","From H6150, in the sense of shading; the west (as the region of the evening sun): - west."]},{"k":"H4629","v":["מַעֲרֶה","ma‛ăreh","mah-ar-eh'","From H6168; a nude place, that is, a common: - meadows."]},{"k":"H4630","v":["מַעֲרָה","ma‛ărâh","mah-ar-aw'","Feminine of H4629; an open spot: - army [from the margin]."]},{"k":"H4631","v":["מְעָרָה","me‛ârâh","meh-aw-raw'","From H5783; a cavern (as dark): - cave, den, hole."]},{"k":"H4632","v":["מְעָרָה","me‛ârâh","meh-aw-raw'","The same as H4631; cave; Mearah, a place in Palestine: - Mearah."]},{"k":"H4633","v":["מַעֲרָךְ","ma‛ărâk","mah-ar-awk'","From H6168; an arrangement, that is, (figuratively) mental disposition: - preparation."]},{"k":"H4634","v":["מַעֲרָכָה","ma‛ărâkâh","mah-ar-aw-kaw'","Feminine of H4633; an arrangement; concretely a pile; specifically a military array: - army, fight, be set in order, ordered place, rank, row."]},{"k":"H4635","v":["מַעֲרֶכֶת","ma‛ăreketh","mah-ar-eh'-keth","From H6186; an arrangement, that is, (concretely) a pile (of loaves): - row, shewbread."]},{"k":"H4636","v":["מַעֲרֹם","ma‛ărôm","mah-ar-ome'","From H6191, in the sense of stripping; bare: - naked."]},{"k":"H4637","v":["מַעֲרָצָה","ma‛ărâtsâh","mah-ar-aw-tsaw'","From H6206; violence: - terror."]},{"k":"H4638","v":["מַעֲרָת","ma‛ărâth","mah-ar-awth'","A form of H4630; waste; Maarath, a place in Palestine: - Maarath."]},{"k":"H4639","v":["מַעֲשֶׂה","ma‛ăśeh","mah-as-eh'","From H6213; an action (good or bad); generally a transaction; abstractly activity; by implication a product (specifically a poem) or (generally) property: - act, art, + bakemeat, business, deed, do (-ing), labour, thing made, ware of making, occupation, thing offered, operation, possession, X well, ([handy-, needle-, net-]) work, (-ing, -manship), wrought."]},{"k":"H4640","v":["מַעֲשַׂי","ma‛ăśay","mah-as-ah'ee","From H6213; operative; Maasai, an Israelite: - Maasiai."]},{"k":"H4641","v":["מַעֲשֵׂיָהוּ    מַעֲשֵׂיָה","ma‛ăśêyâh    ma‛ăśêyâhû","mah-as-ay-yaw', mah-as-ay-yaw'-hoo","From H4639 and H3050; work of Jah; Maasejah, the name of sixteen Israelites: - Masseiah."]},{"k":"H4642","v":["מַעֲשַׁקָּה","ma‛ăshaqqâh","mah-ash-ak-kaw'","From H6231; oppression: - oppression, X oppressor."]},{"k":"H4643","v":["מַעַשְׂרָה    מַעֲשַׂר    מַעֲשֵׂר","ma‛ăśêr    ma‛ăśar    ma‛aśrâh","mah-as-ayr', mah-as-ar', mah-as-raw'","From H6240; a tenth; especially a tithe: - tenth (part), tithe (-ing)."]},{"k":"H4644","v":["מֹף","môph","mofe","Of Egyptian origin; Moph, the capital of Lower Egypt: - Memphis. Compare H5297."]},{"k":"H4645","v":["מִפְגָּע","miphgâ‛","mif-gaw'","From H6293; an object of attack: - mark."]},{"k":"H4646","v":["מַפָּח","mappâch","map-pawkh'","From H5301; a breathing out (of life), that is, expiring: - giving up."]},{"k":"H4647","v":["מַפֻּחַ","mappûach","map-poo'-akh","From H5301; the bellows (that is, blower) of a forge: - bellows."]},{"k":"H4648","v":["מְפִבֹשֶׁת    מְפִיבֹשֶׁת","mephı̂ybôsheth    mephibôsheth","mef-ee-bo'-sheth, mef-ee-bo'-sheth","Probably from H6284 and H1322; dispeller of shame (that is, of Baal); Mephibosheth, the name of two Israelites: - Mephibosheth."]},{"k":"H4649","v":["מֻפִּים","mûppı̂ym","moop-peem'","A plural apparently from H5130; wavings; Muppim, an Israelite: - Muppim. Compare H8206."]},{"k":"H4650","v":["מֵפִיץ","mêphı̂yts","may-feets'","From H6327; a breaker, that is, mallet: - maul."]},{"k":"H4651","v":["מַפָּל","mappâl","map-pawl'","From H5307; a falling off, that is, chaff; also something pendulous, that is, a flap: - flake, refuse."]},{"k":"H4652","v":["מִפְלָאָה","miphlâ'âh","mif-law-aw'","From H6381; a miracle: - wondrous work."]},{"k":"H4653","v":["מִפְלַגָּה","miphlaggâh","mif-lag-gaw'","From H6385; a classification: - division."]},{"k":"H4654","v":["מַפֵּלָה    מַפָּלָה","mappâlâh    mappêlâh","map-paw-law', map-pay-law'","From H5307; something fallen, that is, a ruin: - ruin (-ous)."]},{"k":"H4655","v":["מִפְלָט","miphlâṭ","mif-lawt'","From H6403; an escape: - escape."]},{"k":"H4656","v":["מִפְלֶצֶת","miphletseth","mif-leh'-tseth","From H6426; a terror, that is, an idol: - idol."]},{"k":"H4657","v":["מִפְלָשׂ","miphlâś","mif-lawce'","From an unused root meaning to balance; a poising: - balancing."]},{"k":"H4658","v":["מַפֶּלֶת","mappeleth","map-peh'-leth","From H5307; fall, that is, decadence; concretely a ruin; specifically a carcase: - carcase, fall, ruin."]},{"k":"H4659","v":["מִפְעָלָה    מִפְעָל","miph‛âl    miph‛âlâh","mif-awl', mif-aw-law'","From H6466; a performance: - work."]},{"k":"H4660","v":["מַפָּץ","mappâts","map-pawts'","From H5310; a smiting to pieces: - slaughter."]},{"k":"H4661","v":["מַפֵּץ","mappêts","map-pates'","From H5310; a smiter, that is, a war club: - battle ax."]},{"k":"H4662","v":["מִפְקָד","miphqâd","mif-kawd'","From H6485; an appointment, that is, mandate; concretely a designated spot; specifically a census: - appointed place, commandment, number."]},{"k":"H4663","v":["מִפְקָד","miphqâd","mif-kawd'","The same as H4662; assignment; Miphkad, the name of a gate in Jerusalem: - Miphkad."]},{"k":"H4664","v":["מִפְרָץ","miphrâts","mif-rawts'","From H6555; a break (in the shore), that is, a haven: - breach."]},{"k":"H4665","v":["מִפְרֶקֶת","miphreqeth","mif-reh'-keth","From H6561; properly a fracture, that is, joint (vertebra) of the neck: - neck."]},{"k":"H4666","v":["מִפְרָשׂ","miphrâś","mif-rawce'","From H6566; an expansion: - that which . . . spreadest forth, spreading."]},{"k":"H4667","v":["מִפְשָׂעָה","miphśâ‛âh","mif-saw-aw'","From H6585; a stride, that is, (by euphemism) the crotch: - buttocks."]},{"k":"H4668","v":["מַפְתֵּחַ","maphtêach","maf-tay'-akh","From H6605; an opener, that is, a key: - key."]},{"k":"H4669","v":["מִפְתָּח","miphtâch","mif-tawkh'","From H6605; an aperture, that is, (figuratively) utterance: - opening."]},{"k":"H4670","v":["מִפְתָּן","miphtân","mif-tawn'","From the same as H6620; a stretcher, that is, a sill: - threshold."]},{"k":"H4671","v":["מוֹץ    מֹץ","môts    môts","motes, motes","From H4160; chaff (as pressed out, that is, winnowed or (rather) threshed loose): - chaff."]},{"k":"H4672","v":["מָצָא","mâtsâ'","maw-tsaw'","A primitive root; properly to come forth to, that is, appear or exist; transitively to attain, that is, find or acquire; figuratively to occur, meet or be present: -  + be able, befall, being, catch, X certainly (cause to) come (on, to, to hand), deliver, be enough (cause to) find (-ing, occasion, out), get (hold upon), X have (here), be here, hit, be left, light (up-) on, meet (with), X occasion serve, (be) present, ready, speed, suffice, take hold on."]},{"k":"H4673","v":["מַצָּב","matstsâb","mats-tsawb'","From H5324; a fixed spot; figuratively an office, a military post: - garrison, station, place where . . . stood."]},{"k":"H4674","v":["מֻצָּב","mûtstsâb","moots-tsawb'","From H5324; a station, that is, military post: - mount."]},{"k":"H4675","v":["מִצָּבָה    מַצָּבָה","matstsâbâh    mitstsâbâh","mats-tsaw-baw', mits-tsaw-baw'","Feminine of H4673; a military guard: - army, garrison."]},{"k":"H4676","v":["מַצֵּבָה","matstsêbâh","mats-tsay-baw'","Feminine (causative) participle of H5324; something stationed, that is, a column or (memorial stone); by analogy an idol: - garrison, (standing) image, pillar."]},{"k":"H4677","v":["מְצֹבָיָה","metsôbâyâh","mets-o-baw-yaw'","Apparently from H4672 and H3050; found of Jah; Metsobajah, a place in Palestine: - Mesobaite."]},{"k":"H4678","v":["מַצֶּבֶת","matstsebeth","mats-tseh'-beth","From H5324; something stationary, that is, a monumental stone; also the stock of a tree: - pillar, substance."]},{"k":"H4679","v":["מְצָדָה    מְצָד    מְצַד","metsad    metsâd    metsâdâh","mets-ad', mets-awd', mets-aw-daw'","From H6679; a fastness (as a covert of ambush): - castle, fort, (strong) hold, munition."]},{"k":"H4680","v":["מָצָה","mâtsâh","maw-tsaw'","A primitive root; to suck out; by implication to drain, to squeeze out: - suck, wring (out)."]},{"k":"H4681","v":["מֹצָה","môtsâh","mo-tsaw'","Active participle feminine of H4680; drained; Motsah, a place in Palestine: - Mozah."]},{"k":"H4682","v":["מַצָּה","matstsâh","mats-tsaw'","From H4711 in the sense of greedily devouring for sweetness; properly sweetness; concretely sweet (that is, not soured or bittered with yeast); specifically an unfermented cake or loaf, or (elliptically) the festival of Passover (because no leaven was then used): - unleavened (bread, cake), without leaven."]},{"k":"H4683","v":["מַצָּה","matstsâh","mats-tsaw'","From H5327; a quarrel: - contention, debate, strife."]},{"k":"H4684","v":["מַצְהָלָה","matshâlâh","mats-haw-law'","From H6670; a whinnying (through impatience for battle or lust): - neighing."]},{"k":"H4685","v":["מְצֹדָה    מְצוֹדָה    מָצוֹד","mâtsôd    metsôdâh    metsôdâh","maw-tsode', mets-o-daw', mets-o-daw'","From H6679; a net (for capturing animals or fishes); also (by interchange for H4679) a fastness or (besieging) tower: - bulwark, hold, munition, net, snare."]},{"k":"H4686","v":["מְצֻדָה    מְצוּדָה    מָצוּד","mâtsûd    metsûdâh    metsûdâh","maw-tsood', mets-oo-daw', mets-oo-daw'","From H4685; a net, or (abstractly) capture; also a fastness: - castle, defence, fort (-ress), (strong) hold, be hunted, net, snare, strong place."]},{"k":"H4687","v":["מִצְוָה","mitsvâh","mits-vaw'","From H6680; a command, whether human or divine (collectively the Law): - (which was) commanded (-ment), law, ordinance, precept."]},{"k":"H4688","v":["מְצֻלָה    מְצוּלָה    מְצֹלָה    מְצוֹלָה","metsôlâh    metsôlâh    metsûlâh    metsûlâh","(1,2) mets-o-law', (3,4) mets-oo-law'","From the same as H6683; a deep place (of water or mud): - bottom, deep, depth."]},{"k":"H4689","v":["מָצוֹק","mâtsôq","maw-tsoke'","From H6693; a narrow place, that is, (abstractly and figuratively) confinement or disability: - anguish, distress, straitness."]},{"k":"H4690","v":["מָצֻק    מָצוּק","mâtsûq    mâtsûq","maw-tsook', maw-tsook'","From H6693; something narrow, that is, a column or hill top: - pillar, situate."]},{"k":"H4691","v":["מְצֻקָה    מְצוּקָה","metsûqâh    metsûqâh","mets-oo-kaw', mets-oo-kaw'","Feminine of H4690; narrowness, that is, (figuratively) trouble: - anguish, distress."]},{"k":"H4692","v":["מָצוּר    מָצוֹר","mâtsôr    mâtsûr","maw-tsore', maw-tsoor'","From H6696; something hemming in, that is, (objectively) a mound (of besiegers), (abstractly) a siege, (figuratively) distress; or (subjectively) a fastness: - besieged, bulwark, defence, fenced, fortress, siege, strong (hold), tower."]},{"k":"H4693","v":["מָצוֹר","mâtsôr","maw-tsore'","The same as H4692 in the sense of a limit; Egypt (as the border of Palestine): - besieged places, defence, fortified."]},{"k":"H4694","v":["מְצֻרָה    מְצוּרָה","metsûrâh    metsûrâh","mets-oo-raw', mets-oo-raw'","Feminine of H4692; a hemming in, that is, (objectively) a mound (of siege), or (subjectively) a rampart (of protection), (abstractly) fortification: - fenced (city,) fort, munition, strong hold."]},{"k":"H4695","v":["מַצּוּת","matstsûth","mats-tsooth'","From H5327; a quarrel: - that contended."]},{"k":"H4696","v":["מֵצַח","mêtsach","may'-tsakh","From an unused root meaning to be clear, that is, conspicuous; the forehead (as open and prominent): - brow, forehead, + impudent."]},{"k":"H4697","v":["מִצְחָה","mitschâh","mits-khaw'","From the same as H4696; a shin piece of armor (as prominent), only plural: - greaves."]},{"k":"H4698","v":["מְצִלָּה","metsillâh","mets-il-law'","From H6750; a tinkler, that is, a bell: - bell."]},{"k":"H4699","v":["מְצֻלָּה","metsûllâh","mets-ool-law'","From H6751; shade: - bottom."]},{"k":"H4700","v":["מְצֵלֶת","metsêleth","mets-ay'-leth","From H6750; (only dual) double tinklers, that is, cymbals: - cymbals."]},{"k":"H4701","v":["מִצְנֶפֶת","mitsnepheth","mits-neh'-feth'","From H6801; a tiara, that is, official turban (of a king or high priest): - diadem, mitre."]},{"k":"H4702","v":["מַצָּע","matstsâ‛","mats-tsaw'","From H3331; a couch: - bed."]},{"k":"H4703","v":["מִצְעָד","mits‛âd","mits-awd'","From H6805; a step; figuratively companionship: - going, step."]},{"k":"H4704","v":["מִצְּעִירָה","mitstse‛ı̂yrâh","mits-tseh-ee-raw'","Feminine of H4705; properly littleness; concretely diminutive: - little."]},{"k":"H4705","v":["מִצְעָר","mits‛âr","mits-awr'","From H6819; petty (in size or number); adverbially a short (time): - little one, (while), small."]},{"k":"H4706","v":["מִצְעָר","mits‛âr","mits-awr'","The same as H4705; Mitsar, a peak of Lebanon: - Mizar."]},{"k":"H4707","v":["מִצְפֶּה","mitspeh","mits-peh'","From H6822; an observatory, especially for military purposes: - watch tower."]},{"k":"H4708","v":["מִצְפֶּה","mitspeh","mits-peh'","The same as H4707; Mitspeh, the name of five places in Palestine: - Mizpeh, watch tower. Compare H4709."]},{"k":"H4709","v":["מִצְפָּה","mitspâh","mits-paw'","Feminine of H4708; Mitspah, the name of two places in Palestine. (This seems rather to be only an orthographical variation of H4708 when ‘in pause’.): - Mitspah. [This seems rather to be only an orthographical variationof H4708 when “in pause”.]"]},{"k":"H4710","v":["מִצְפֻּן","mitspûn","mits-poon'","From H6845; a secret (place or thing, perhaps treasure): - hidden thing."]},{"k":"H4711","v":["מָצַץ","mâtsats","maw-tsats'","A primitive root; to suck: - milk."]},{"k":"H4712","v":["מֵצַר","mêtsar","may-tsar'","From H6896; something tight, that is, (figuratively) trouble: - distress, pain, strait."]},{"k":"H4713","v":["מִצְרִי","mitsrı̂y","mits-ree'","From H4714; a Mitsrite, or inhabitant of Mitsrajim: - Egyptian, of Egypt."]},{"k":"H4714","v":["מִצְרַיִם","mitsrayim","mits-rah'-yim","Dual of H4693; Mitsrajim, that is, Upper and Lower Egypt: - Egypt, Egyptians, Mizraim."]},{"k":"H4715","v":["מִצְרֵף","mitsrêph","mits-rafe'","From H6884; a crucible: - fining pot."]},{"k":"H4716","v":["מַק","maq","mak","From H4743; properly a melting, that is, putridity: - rottenness, stink."]},{"k":"H4717","v":["מַקָּבָה","maqqâbâh","mak-kaw-baw'","From H5344; properly a perforatrix, that is, a hammer (as piercing): - hammer."]},{"k":"H4718","v":["מַקֶּבֶת","maqqebeth","mak-keh'-beth","From H5344; properly a perforator, that is, a hammer (as piercing); also (intransitively) a perforation, that is, a quarry: - hammer, hole."]},{"k":"H4719","v":["מַקֵּדָה","maqqêdâh","mak-kay-daw'","From the same as H5348 in the denominative sense of herding (compare H5349); fold; Makkedah, a place in Palestine: - Makkedah."]},{"k":"H4720","v":["מִקְּדָשׁ    מִקְדָּשׁ","miqdâsh    miqqedâsh","mik-dawsh', mik-ked-awsh'","From H6942; a consecrated thing or place, especially a palace, sanctuary (whether of Jehovah or of idols) or asylum: - chapel, hallowed part, holy place, sanctuary."]},{"k":"H4721","v":["מַקְהֵלָה    מַקְהֵל","maqhêl    maqhêlâh","mak-hale', mak-hay-law'","From H6950; an assembly: - congregation."]},{"k":"H4722","v":["מַקְהֵלֹת","maqhêlôth","mak-hay-loth'","Plural of H4721 (feminine); assemblies; Makheloth, a place in the Desert: - Makheloth."]},{"k":"H4723","v":["מִּקְוֵא    מִקְוֵה    מִקְוֶה","miqveh    miqvêh    miqvê'","mik-veh', mik-vay', mik-vay'","From H6960; something waited for, that is, confidence (objectively or subjectively); also a collection, that is, (of water) a pond, or (of men and horses) a caravan or drove: - abiding, gathering together, hope, linen yarn, plenty [of water], pool."]},{"k":"H4724","v":["מִקְוָה","miqvâh","mik-vaw'","Feminine of H4723; a collection, that is, (of water) a reservoir: - ditch."]},{"k":"H4725","v":["מְקֹמָה    מְקוֹמָה    מָקֹם    מָקוֹם","mâqôm    mâqôm    meqômâh    meqômâh","(1,2) maw-kome', (3,4) mek-o-mah'","From H6965; properly a standing, that is, a spot; but used widely of a locality (generally or specifically); also (figuratively) of a condition (of body or mind): - country, X home, X open, place, room, space, X whither [-soever]."]},{"k":"H4726","v":["מָקֹר    מָקוֹר","mâqôr    mâqôr","maw-kore', maw-kore'","From H6979; properly something dug, that is, a (generally) source (of water, even when naturally flowing; also of tears, blood (by euphemism of the female pudenda); figuratively of happiness, wisdom, progeny): - fountain, issue, spring, well (-spring)."]},{"k":"H4727","v":["מִקָּח","miqqâch","mik-kawkh'","From H3947; reception: - taking."]},{"k":"H4728","v":["מַקָּחָה","maqqâchâh","mak-kaw-khaw'","From H3947; something received, that is, merchandise (purchased): - ware."]},{"k":"H4729","v":["מִקְטָר","miqṭâr","mik-tawr'","From H6999; something to fume (incense) on, that is, a hearth place: - to burn . . . upon."]},{"k":"H4730","v":["מִקְטֶרֶת","miqṭereth","mik-teh'-reth","Feminine of H4729; something to fume (incense) in, that is, a coal pan: - censer."]},{"k":"H4731","v":["מַקְּלָה    מַקֵּל","maqqêl    maqqelâh","mak-kale', mak-kel-aw'","From an unused root meaning apparently to germinate; a shoot, that is, stick (with leaves on, or for walking, striking, guiding, divining): - rod, ([hand-]) staff."]},{"k":"H4732","v":["מִקְלוֹת","miqlôth","mik-lohth'","Plural of (feminine) H4731; rods; Mikloth, a place in the Desert: - Mikloth."]},{"k":"H4733","v":["מִקְלָט","miqlâṭ","mik-lawt'","From H7038 in the sense of taking in; an asylum (as a receptacle): - refuge."]},{"k":"H4734","v":["מִקְלַעַת","miqla‛ath","mik-lah'-ath","From H7049; a sculpture (probably in bass relief): - carved (figure), carving, graving."]},{"k":"H4735","v":["מִקְנֶה","miqneh","mik-neh'","From H7069; something bought, that is, property, but only live stock; abstractly acquisition: - cattle, flock, herd, possession, purchase, substance."]},{"k":"H4736","v":["מִקְנָה","miqnâh","mik-naw'","Feminine of H4735; properly a buying, that is, acquisition; concretely a piece of property (land or living); also the sum paid: - (he that is) bought, possession, piece, purchase."]},{"k":"H4737","v":["מִקְנֵיָהוּ","miqnêyâhû","mik-nay-yaw'-hoo","From H4735 and H3050; possession of Jah; Miknejah, an Israelite: - Mikneiah."]},{"k":"H4738","v":["מִקְסָם","miqsâm","mik-sawm'","From H7080; an augury: - divination."]},{"k":"H4739","v":["מָקַץ","mâqats","maw-kats'","From H7112; end; Makats, a place in Palestine: - Makaz."]},{"k":"H4740","v":["מַקְצֹעָה    מַקְצֹעַ    מַקְצוֹעַ","maqtsôa‛    maqtsôa‛    maqtsô‛âh","mak-tso'-ah, mak-tso'-ah, mak-tso-aw'","From H7106 in the denominative sense of bending; an angle or recess: - corner, turning."]},{"k":"H4741","v":["מַקְצֻעָה","maqtsû‛âh","mak-tsoo-aw'","From H7106; a scraper, that is, a carving chisel: - plane."]},{"k":"H4742","v":["מְקֻצְעָה","meqûts‛âh","mek-oots-aw'","From H7106 in the denominative sense of bending; an angle: - corner."]},{"k":"H4743","v":["מָקַק","mâqaq","maw-kak'","A primitive root; to melt; figuratively to flow, dwindle, vanish: - consume away, be corrupt, dissolve, pine away."]},{"k":"H4744","v":["מִקְרָא","miqrâ'","mik-raw'","From H7121; something called out, that is, a public meeting (the act, the persons, or the palce); also a rehearsal: - assembly, calling, convocation, reading."]},{"k":"H4745","v":["מִקְרֶה","miqreh","mik-reh'","From H7136; something met with, that is, an accident or fortune: - something befallen, befalleth, chance, event, hap (-peneth)."]},{"k":"H4746","v":["מְקָרֶה","meqâreh","mek-aw-reh'","From H7136; properly something meeting, that is, a frame (of timbers): - building."]},{"k":"H4747","v":["מְקֵרָה","meqêrâh","mek-ay-raw'","From the same as H7119; a cooling off: -    X summer."]},{"k":"H4748","v":["מִקְשֶׁה","miqsheh","mik-sheh'","From H7185 in the sense of knotting up round and hard; something turned (rounded), that is, a curl (of tresses): -    X well [set] hair."]},{"k":"H4749","v":["מִקְשָׁה","miqshâh","mik-shaw'","Feminine of H4748; rounded work, that is, moulded by hammering (repousse): - beaten (out of one piece, work), upright, whole piece."]},{"k":"H4750","v":["מִקְשָׁה","miqshâh","mik-shaw'","Denominative from H7180; literally a cucumbered field, that is, a cucumber patch: - garden of cucumbers."]},{"k":"H4751","v":["מָרָה    מַר","mar    mârâh","mar, maw-raw'","From H4843; bitter (literally or figuratively); also (as noun) bitterness, or (adverbially) bitterly: -  + angry, bitter (-ly, -ness), chafed, discontented, X great, heavy."]},{"k":"H4752","v":["מַר","mar","mar","From H4843 in its original sense of distillation; a drop: - drop."]},{"k":"H4753","v":["מוֹר    מֹר","môr    môr","more, more","From H4843; myrrh (as distilling in drops, and also as bitter): - myrrh."]},{"k":"H4754","v":["מָרָא","mârâ'","maw-raw'","A primitive root; to rebel; hence (through the idea of maltreating) to whip, that is, lash (self with wings, as the ostrich in running): - be filthy, lift up self."]},{"k":"H4755","v":["מָרָא","mârâ'","maw-raw'","For H4751 feminine; bitter; Mara, a symbolical name of Naomi: - Mara."]},{"k":"H4756","v":["מָרֵא","mârê'","maw-ray'","(Chaldee); from a root corresponding to H4754 in the sense of domineering; a master: - lord, Lord."]},{"k":"H4757","v":["מְראֹדַךְ בַּלְאָדָן","mer'ôdak bal'âdân","mer-o-dak' bal-aw-dawn'","Of foreign derivation; Merodak-Baladan, a Babylonian king: - Merodach-baladan. Compare H4781."]},{"k":"H4758","v":["מַרְאֶה","mar'eh","mar-eh'","From H7200; a view (the act of seeing); also an appearance (the thing seen), whether (real) a shape (especially if handsome, comeliness; often plural the looks), or (mental) a vision: -  X apparently, appearance (-reth), X as soon as beautiful (-ly), countenance, fair, favoured, form, goodly, to look (up) on (to), look [-eth], pattern, to see, seem, sight, visage, vision."]},{"k":"H4759","v":["מַרְאָה","mar'âh","mar-aw'","Feminine of H4758; a vision; also (causatively) a mirror: - looking glass, vision."]},{"k":"H4760","v":["מֻרְאָה","mûr'âh","moor-aw'","Apparently feminine passive causative participle of H7200; something conspicuous, that is, the craw of a bird (from its prominence): - crop."]},{"k":"H4761","v":["מַרְאָשָׁה","mar'âshâh","mar-aw-shaw'","Denominative from H7218; properly headship, that is, (plural for collective) dominion: - principality."]},{"k":"H4762","v":["מַרֵשָׁה    מַרְאֵשָׁה","mar'êshâh    marêshâh","mar-ay-shaw', mar-ay-shaw'","Formed like H4761; summit; Mareshah, the name of two Israelites and of a place in Palestine: - Mareshah."]},{"k":"H4763","v":["מְרַאֲשָׁה","mera'ăshâh","mer-ah-ash-aw'","Formed like H4761; properly a headpiece, that is, (plural for adverb) at (or as) the head rest (or pillow): - bolster, head, pillow. Compare H4772."]},{"k":"H4764","v":["מֵרָב","mêrâb","may-rawb'","From H7231; increase; Merab, a daughter of Saul: - Merab."]},{"k":"H4765","v":["מַרְבַד","marbad","mar-bad'","From H7234; a coverlet: - covering of tapestry."]},{"k":"H4766","v":["מַרְבֶה","marbeh","mar-beh'","From H7235; properly increasing; as noun, greatness, or (adverbially) greatly: - great, increase."]},{"k":"H4767","v":["מִרְבָּה","mirbâh","meer-baw'","From H7235; abundance, that is, a great quantity: - much."]},{"k":"H4768","v":["מַרְבִּית","marbı̂yth","mar-beeth'","From H7235; a multitude; also offspring; specifically interest (on capital): - greatest part, greatness, increase, multitude."]},{"k":"H4769","v":["מַרְבֵּץ","marbêts","mar-bates'","From H7257; a reclining place, that is, fold (for flocks): - couching place, place to lie down."]},{"k":"H4770","v":["מַרְבֵּק","marbêq","mar-bake'","From an unused root meaning to tie up; a stall (for cattle): -    X fat (-ted), stall."]},{"k":"H4771","v":["מַרְגּוֹעַ","margôa‛","mar-go'-ah","From H7280; a resting place: - rest."]},{"k":"H4772","v":["מַרְגְּלָה","margelâh","mar-ghel-aw'","Denominative from H7272; (plural for collective) a foot piece, that is, (adverbially) at the foot, or (directly) the foot itself: - feet. Compare H4763."]},{"k":"H4773","v":["מַרְגֵּמָה","margêmâh","mar-gay-maw'","From H7275; a stone heap: - sling."]},{"k":"H4774","v":["מַרְגֵּעָה","margê‛âh","mar-gay-aw'","From H7280; rest: - refreshing."]},{"k":"H4775","v":["מָרַד","mârad","maw-rad'","A primitive root; to rebel: - rebel (-lious)."]},{"k":"H4776","v":["מְרַד","merad","mer-ad'","(Chaldee); from a root corresponding to H4775; rebellion: - rebellion."]},{"k":"H4777","v":["מֶרֶד","mered","meh'-red","From H4775; rebellion: - rebellion."]},{"k":"H4778","v":["מֶרֶד","mered","meh'-red","The same as H4777; Mered, an Israelite: - Mered."]},{"k":"H4779","v":["מָרָד","mârâd","maw-rawd'","(Chaldee); from the same as H4776; rebellious: - rebellious."]},{"k":"H4780","v":["מַרְדּוּת","mardûth","mar-dooth'","From H4775; rebelliousness: -  X rebellious."]},{"k":"H4781","v":["מְרֹדָךְ","merôdâk","mer-o-dawk'","Of foreign derivation; Merodak, a Babylonian idol: - Merodach. Compare H4757."]},{"k":"H4782","v":["מָרְדְּכַּי","mordekay","mor-dek-ah'ee","Of foreign derivation; Mordecai, an Israelite: - Mordecai."]},{"k":"H4783","v":["מֻרְדָּף","mûrdâph","moor-dawf'","From H7291; persecuted: - persecuted."]},{"k":"H4784","v":["מָרָה","mârâh","maw-raw'","A primitive root; to be (causatively make) bitter (or unpleasant); (figuratively) to rebel (or resist; causatively to provoke): - bitter, change, be disobedient, disobey, grievously, provocation, provoke (-ing), (be) rebel (against, -lious)."]},{"k":"H4785","v":["מָרָה","mârâh","maw-raw'","The same as H4751 feminine; bitter; Marah, a place in the Desert: - Marah."]},{"k":"H4786","v":["מֹרָה","môrâh","mo-raw'","From H4843; bitterness, that is, (figuratively) trouble: - grief."]},{"k":"H4787","v":["מָרָּה","morrâh","mor-raw'","A form of H4786; trouble: - bitterness."]},{"k":"H4788","v":["מָרוּד","mârûd","maw-rood'","From H7300 in the sense of maltreatment; an outcast; (abstractly) destitution: - cast out, misery."]},{"k":"H4789","v":["מֵרוֹז","mêrôz","may-roze'","Of uncertain derivation; Meroz, a place in Palestine: - Meroz."]},{"k":"H4790","v":["מְרוֹחַ","merôach","mer-o-akh'","From H4799; bruised, that is, emasculated: - broken."]},{"k":"H4791","v":["מָרוֹם","mârôm","maw-rome'","From H7311; altitude, that is, concretely (an elevated place), abstractly (elevation), fig (elation), or adverbial (aloft): - (far) above, dignity, haughty, height, (most, on) high (one, place), loftily, upward."]},{"k":"H4792","v":["מֵרוֹם","mêrôm","may-rome'","Formed like H4791; height; Merom, a lake in Palestine: - Merom."]},{"k":"H4793","v":["מֵרוֹץ","mêrôts","may-rotes'","From H7323; a run (the trial of speed): - race."]},{"k":"H4794","v":["מְרֻצָה    מְרוּצָה","merûtsâh    merûtsâh","mer-oo-tsaw', mer-oo-tsaw'","Feminine of H4793; a race (the act), whether the manner or the progress: - course, running. Compare H4835."]},{"k":"H4795","v":["מָרוּק","mârûq","maw-rook'","From H4838; properly rubbed; but used abstractly, a rubbing (with perfumery): - purification."]},{"k":"H4796","v":["מָרוֹת","mârôth","maw-rohth'","Plural of H4751 feminine; bitter springs; Maroth, a place in Palestine: - Maroth."]},{"k":"H4797","v":["מִרְזַח","mirzach","meer-zakh'","From an unused root meaning to scream; a cry, that is, (of joy), a revel: - banquet."]},{"k":"H4798","v":["מַרְזֵחַ","marzêach","mar-zay'-akh","Formed like H4797; a cry, that is, (of grief) a lamentation: - mourning."]},{"k":"H4799","v":["מָרַח","mârach","maw-rakh'","A primitive root; properly to soften by rubbing or pressure; hence (medicinally) to apply as an emollient: - lay for a plaister."]},{"k":"H4800","v":["מֶרְחָב","merchâb","mer-khawb'","From H7337; enlargement, either literally (an open space, usually in a good sense), or figuratively (liberty): - breadth, large place (room)."]},{"k":"H4801","v":["מֶרְחָק","merchâq","mer-khawk'","From H7368; remoteness, that is, (concretely) a distant place; often (adverbially) from afar: -    (a, dwell in, very) far (country, off). See also H1023."]},{"k":"H4802","v":["מַרְחֶשֶׁת","marchesheth","mar-kheh'-sheth","From H7370; a stew pan: - fryingpan."]},{"k":"H4803","v":["מָרַט","mâraṭ","maw-rat'","A primitive root; to polish; by implication to make bald (the head), to gall (the shoulder); also, to sharpen: - bright, furbish, (have his) hair (be) fallen off, peeled, pluck off (hair.)"]},{"k":"H4804","v":["מְרַט","meraṭ","mer-at'","(Chaldee); corresponding to H4803; to pull off: - be plucked."]},{"k":"H4805","v":["מְרִי","merı̂y","mer-ee'","From H4784; bitterness, that is, (figuratively) rebellion; concretely bitter, or rebellious: - bitter, (most) rebel (-ion, -lious)."]},{"k":"H4806","v":["מְרִיא","merı̂y'","mer-ee'","From H4754 in the sense of grossness, through the idea of domineering (compare H4756); stall fed; often (as noun) a beeve: - fat (fed) beast (cattle, -ling)."]},{"k":"H4807","v":["מְרִיב בַּעַל","merı̂yb ba‛al","mer-eeb' bah'-al","From H7378 and H1168; quarreller of Baal; Merib-Baal, an epithet of Gideon: - Merib-baal. Compare H4810."]},{"k":"H4808","v":["מְרִיבָה","merı̂ybâh","mer-ee-baw'","From H7378; quarrel: - provocation, strife."]},{"k":"H4809","v":["מְרִיבָה","merı̂ybâh","mer-ee-baw'","The same as H4808; Meribah, the name of two places in the Desert: - Meribah."]},{"k":"H4810","v":["מְרִי בַעַל","merı̂y ba‛al","mer-ee' bah'-al","From H4805 and H1168; rebellion of (that is, against) Baal; Meri-Baal, an epithet of Gideon: - Meri-baal. Compare H4807."]},{"k":"H4811","v":["מְרָיָה","merâyâh","mer-aw-yaw'","From H4784; rebellion; Merajah, an Israelite: - Meraiah. Compare H3236."]},{"k":"H4812","v":["מְרָיוֹת","merâyôth","mer-aw-yohth'","Plural of H4811; rebellious; Merajoth, the name of two Israelites: - Meraioth."]},{"k":"H4813","v":["מִרְיָם","miryâm","meer-yawm'","From H4805; rebelliously; Mirjam, the name of two Israelitesses: - Miriam."]},{"k":"H4814","v":["מְרִירוּת","merı̂yrûth","mer-ee-rooth'","From H4843; bitterness, that is, (figuratively) grief: - bitterness."]},{"k":"H4815","v":["מְרִירִי","merı̂yrı̂y","mer-ee-ree'","From H4843; bitter, that is, poisonous: - bitter."]},{"k":"H4816","v":["מֹרֶךְ","môrek","mo'-rek","Perhaps from H7401; softness, that is, (figuratively) fear: - faintness."]},{"k":"H4817","v":["מֶרְכָּב","merkâb","mer-kawb'","From H7392; a chariot; also a seat (in a vehicle): - chariot, covering, saddle."]},{"k":"H4818","v":["מֶרְכָּבָה","merkâbâh","mer-kaw-baw'","Feminine of H4817; a chariot: - chariot. See also H1024."]},{"k":"H4819","v":["מַרְכֹּלֶת","markôleth","mar-ko'-leth","From H7402; a mart: - merchandise."]},{"k":"H4820","v":["מִרְמָה","mirmâh","meer-maw'","From H7411 in the sense of deceiving; fraud: - craft, deceit (-ful, -fully), false, feigned, guile, subtilly, treachery."]},{"k":"H4821","v":["מִרְמָה","mirmâh","meer-maw'","The same as H4820; Mirmah, an Israelite: - Mirma."]},{"k":"H4822","v":["מְרֵמוֹת","merêmôth","mer-ay-mohth'","Plural from H7311; heights; Meremoth, the name of two Israelites: - Meremoth."]},{"k":"H4823","v":["מִרְמָס","mirmâs","meer-mawce'","From H7429; abasement (the act or the thing): - tread (down) -ing, (to be) trodden (down) under foot."]},{"k":"H4824","v":["מֵרֹנֹתִי","mêrônôthı̂y","may-ro-no-thee'","Patrial from an unused noun; a Meronothite, or inhabitant of some (otherwise unknown) Meronoth: - Meronothite."]},{"k":"H4825","v":["מֶרֶס","meres","meh'-res","Of foreign derivation; Meres, a Persian: - Meres."]},{"k":"H4826","v":["מַרְסְנָא","marsenâ'","mar-sen-aw'","Of foreign derivation; Marsena, a Persian: - Marsena."]},{"k":"H4827","v":["מֵרַע","mêra‛","may-rah'","From H7489; used as (abstraction) noun, wickedness: - do mischief."]},{"k":"H4828","v":["מֵרֵעַ","mêrêa‛","may-ray'-ah","From H7462 in the sense of companionship; a friend: - companion, friend."]},{"k":"H4829","v":["מִרְעֶה","mir‛eh","meer-eh'","From H7462 in the sense of feeding; pasture (the palce or the act); also the haunt of wild animals: - feeding place, pasture."]},{"k":"H4830","v":["מִרְעִית","mir‛ı̂yth","meer-eeth'","From H7462 in the sense of feeding; pasturage; concretely a flock: - flock, pasture."]},{"k":"H4831","v":["מַרְעֲלָה","mar‛ălâh","mar-al-aw'","From H7477; perhaps earthquake; Maralah, a place in Palestine: - Maralah."]},{"k":"H4832","v":["מַרְפֵּא","marpê'","mar-pay'","From H7495; properly curative, that is, literally (concretely) a medicine, or (abstractly) a cure; figuratively (concretely) deliverance, or (abstractly) placidity: - ([in-]) cure (-able), healing (-lth), remedy, sound, wholesome, yielding."]},{"k":"H4833","v":["מִרְפָּשׂ","mirpâś","meer-paws'","From H7515; muddled water: - that which . . . have fouled."]},{"k":"H4834","v":["מָרַץ","mârats","maw-rats'","A primitive root; properly to press, that is, (figuratively) to be pungent or vehement; to irritate: - embolden, be forcible, grievous, sore."]},{"k":"H4835","v":["מְרֻצָה","merûtsâh","mer-oo-tsaw'","From H7533; oppression: - violence. See also H4794."]},{"k":"H4836","v":["מַרְצֵעַ","martsêa‛","mar-tsay'-ah","From H7527; an awl: - aul."]},{"k":"H4837","v":["מַרְצֶפֶת","martsepheth","mar-tseh'-feth","From H7528; a pavement: - pavement."]},{"k":"H4838","v":["מָרַק","mâraq","maw-rak'","A primitive root; to polish; by implication to sharpen; also to rinse: - bright, furbish, scour."]},{"k":"H4839","v":["מָרָק","mârâq","maw-rawk'","From H4838; soup (as if a rinsing): - broth. See also H6564."]},{"k":"H4840","v":["מֶרְקָח","merqâch","mer-kawkh'","From H7543; a spicy herb: -    X sweet."]},{"k":"H4841","v":["מֶרְקָחָה","merqâchâh","mer-kaw-khaw'","Feminine of H4840; abstractly a seasoning (with spicery); concretely an unguent kettle (for preparing spiced oil): - pot of ointment, X well."]},{"k":"H4842","v":["מִרְקַחַת","mirqachath","meer-kakh'-ath","From H7543; an aromatic unguent; also an unguent pot: - prepared by the apothecaries’ art, compound, ointment."]},{"k":"H4843","v":["מָרַר","mârar","maw-rar'","A primitive root; properly to trickle (see H4752); but used only as a denominative from H4751; to be (causatively make) bitter (literally or figuratively): - (be, be in, deal, have, make) bitter (-ly, -ness), be moved with choler, (be, have sorely, it) grieved (-eth), provoke, vex."]},{"k":"H4844","v":["מְרוֹר    מְרֹר","merôr    merôr","mer-ore', mer-ore'","From H4843; a bitter herb: - bitter (-ness)."]},{"k":"H4845","v":["מְרֵרָה","merêrâh","mer-ay-raw'","From H4843; bile (from its bitterness): - gall."]},{"k":"H4846","v":["מְרוֹרָה    מְרֹרָה","merôrâh    merôrâh","mer-o-raw', mer-o-raw'","From H4843; properly bitterness; concretely a bitter thing; specifically bile; also venom (of a serpent): - bitter (thing), gall."]},{"k":"H4847","v":["מְרָרִי","merârı̂y","mer-aw-ree'","From H4843; bitter; Merari, an Israelite: - Merari. See also H4848."]},{"k":"H4848","v":["מְרָרִי","merârı̂y","mer-aw-ree'","From H4847; a Merarite (collectively), or descendant of Merari: - Merarites."]},{"k":"H4849","v":["מִרְשַׁעַת","mirsha‛ath","meer-shah'-ath","From H7561; a female wicked doer: - wicked woman."]},{"k":"H4850","v":["מְרָתַיִם","merâthayim","mer-aw-thah'-yim","Dual of H4751 feminine; double bitterness; Merathajim, an epithet of Babylon: - Merathaim."]},{"k":"H4851","v":["מַשׁ","mash","mash","Of foreign derivation; Mash, a son of Aram, and the people descendant from him: - Mash."]},{"k":"H4852","v":["מֵשָׁא","mêshâ'","may-shaw'","Of foreign derivation; Mesha, a place in Arabia: - Mesha."]},{"k":"H4853","v":["מַשָּׂא","maśśâ'","mas-saw'","From H5375; a burden; specifically tribute, or (abstractly) porterage; figuratively an utterance, chiefly a doom, especially singing; mental, desire: - burden, carry away, prophecy, X they set, song, tribute."]},{"k":"H4854","v":["מַשָּׂא","maśśâ'","mas-saw'","The same as H4853; burden; Massa, a son of Ishmael: - Massa."]},{"k":"H4855","v":["מַשָּׁא","mashshâ'","mash-shaw'","From H5383; a loan; by implication interest on a debt: - exaction, usury."]},{"k":"H4856","v":["מַשֹּׂא","maśśô'","mas-so'","From H5375; partiality (as a lifting up): - respect."]},{"k":"H4857","v":["מַשְׁאָב","mash'âb","mash-awb'","From H7579; a trough for cattle to drink from: - place of drawing water."]},{"k":"H4858","v":["מַשָּׂאָה","maśśâ'âh","mas-saw-aw'","From H5375; a conflagration (from the rising of smoke): - burden."]},{"k":"H4859","v":["מַשָּׁאָה","mashshâ'âh","mash-shaw-aw'","Feminine of H4855; a loan: -  X any [-thing], debt."]},{"k":"H4860","v":["מַשָּׁאוֹן","mashshâ'ôn","mash-shaw-ohn'","From H5377; dissimulation: - deceit."]},{"k":"H4861","v":["מִשְׁאָל","mish'âl","mish-awl'","From H7592; request; Mishal, a place in Palestine: - Mishal, Misheal. Compare H4913."]},{"k":"H4862","v":["מִשְׁאָלָה","mish'âlâh","mish-aw-law'","From H7592; a request: - desire, petition."]},{"k":"H4863","v":["מִשְׁאֶרֶת","mish'ereth","mish-eh'-reth","From H7604 in the original sense of swelling; a kneading trough (in which the dough rises): - kneading trough, store."]},{"k":"H4864","v":["מַשְׂאֵת","maś'êth","mas-ayth'","From H5375; properly (abstractly) a raising (as of the hands in prayer), or rising (of flame); figuratively an utterance; concretely a beacon (as raised); a present (as taken), mess, or tribute; figuratively a reproach (as a burden): - burden, collection, sign of fire, (great) flame, gift, lifting up, mess, oblation, reward."]},{"k":"H4865","v":["מִשְׁבְּצָה","mishbetsâh","mish-bets-aw'","From H7660; a brocade; by analogy a (reticulated) setting of a gem: - ouch, wrought."]},{"k":"H4866","v":["מִשְׁבֵּר","mishbêr","mish-bare'","From H7665; the orifice of the womb (from which the foetus breaks forth): - birth, breaking forth."]},{"k":"H4867","v":["מִשְׁבָּר","mishbâr","mish-bawr'","From H7665; a breaker (of the sea): - billow, wave."]},{"k":"H4868","v":["מִשְׁבָּת","mishbâth","mish-bawth'","From H7673; cessation, that is, destruction: - sabbath."]},{"k":"H4869","v":["מִשְׂגָּב","miśgâb","mis-gawb'","From H7682; properly a cliff (or other lofty or inaccessible place); abstractly altitude; figuratively a refuge; misgab; a place in Moab: - defence, high fort (tower), refuge. H4869; Misgab, a place in Moab: - Misgab."]},{"k":"H4870","v":["מִשְׁגֶּה","mishgeh","mish-geh'","From H7686; an error: - oversight."]},{"k":"H4871","v":["מָשָׁה","mâshâh","maw-shaw'","A primitive root; to pull out (literally or figuratively): - draw (out)."]},{"k":"H4872","v":["מֹשֶׁה","môsheh","mo-sheh'","From H4871; drawing out (of the water), that is, rescued; Mosheh, the Israelitish lawgiver: - Moses."]},{"k":"H4873","v":["מֹשֶׁה","môsheh","mo-sheh'","(Chaldee); corresponding to H4872: - Moses."]},{"k":"H4874","v":["מַשֶּׁה","mashsheh","mash-sheh'","From H5383; a debt: -  + creditor."]},{"k":"H4875","v":["מְשֹׁאָה    מְשׁוֹאָה","meshô'âh    meshô'âh","mesh-o-aw', mesh-o-aw'","From the same as H7722; (a) ruin, abstractly (the act) or concretely (the wreck): - desolation, waste."]},{"k":"H4876","v":["מַשֻּׁאָה    מַשּׁוּאָה","mashshû'âh    mashshû'âh","mash-shoo-aw', mash-shoo-aw'","For H4875; ruin: - desolation, destruction."]},{"k":"H4877","v":["מְשׁוֹבָב","meshôbâb","mesh-o-bawb'","From H7725; returned; Meshobab, an Israelite: - Meshobab."]},{"k":"H4878","v":["מְשֻׁבָה    מְשׁוּבָה","meshûbâh    meshûbâh","mesh-oo-baw', mesh-oo-baw'","From H7725; apostasy: - backsliding, turning away."]},{"k":"H4879","v":["מְשׁוּגָּה","meshûgâh","mesh-oo-gaw'","From an unused root meaning to stray; mistake: - error."]},{"k":"H4880","v":["מִשּׁוֹט    מָשׁוֹט","mâshôṭ    mishshôṭ","maw-shote', mish-shote'","From H7751; an oar: - oar."]},{"k":"H4881","v":["מְשֻׂכָה    מְשׂוּכָה","meśûkâh    meśûkâh","mes-oo-kaw', mes-oo-kaw'","From H7753; a hedge: - hedge."]},{"k":"H4882","v":["מְשׁוּסָה","meshûsâh","mesh-oo-saw'","From an unused root meaning to plunder; spoliation: - spoil."]},{"k":"H4883","v":["מַשּׂוֹר","maśśôr","mas-sore'","From an unused root meaning to rasp; a saw: - saw."]},{"k":"H4884","v":["מְשׂוּרָה","meśûrâh","mes-oo-raw'","From an unused root meaning apparently to divide; a measure (for liquids): - measure."]},{"k":"H4885","v":["מָשׂוֹשׂ","mâśôś","maw-soce'","From H7797; delight, concretely (the cause or object) or abstractly (the feeling): - joy, mirth, rejoice."]},{"k":"H4886","v":["מָשַׁח","mâshach","maw-shakh'","A primitive root; to rub with oil, that is, to anoint; by implication to consecrate; also to paint: - anoint, paint."]},{"k":"H4887","v":["מְשַׁח","meshach","mesh-akh'","(Chaldee); from a root corresponding to H4886; oil: - oil."]},{"k":"H4888","v":["מָשְׁחָה    מִשְׁחָה","mishchâh    moshchâh","meesh-khaw', mosh-khaw'","From H4886; unction (the act); by implication a consecratory gift: - (to be) anointed (-ing), ointment."]},{"k":"H4889","v":["מַשְׁחִית","mashchı̂yth","mash-kheeth'","From H7843; destructive, that is, (as noun) destruction, literally (specifically a snare) or figuratively (corruption): - corruption, (to) destroy (-ing), destruction, trap, X utterly."]},{"k":"H4890","v":["מִשְׂחָק","miśchâq","mis-khawk'","From H7831; a laughing stock: - scorn."]},{"k":"H4891","v":["מִשְׁחָר","mishchâr","mish-khawr'","From H7836 in the sense of day breaking; dawn: - morning."]},{"k":"H4892","v":["מַשְׁחֵת","mashchêth","mash-khayth'","For H4889; destruction: - destroying."]},{"k":"H4893","v":["מָשְׁחָת    מִשְׁחָת","mishchâth    moshchâth","mish-khawth', mosh-khawth'","From H7843; disfigurement: - corruption, marred."]},{"k":"H4894","v":["מִשְׁטַח    מִשְׁטוֹחַ","mishṭôach    mishṭach","mish-to'-akh, mish-takh'","From H7849; a spreading place: - (to) spread (forth, -ing, upon)."]},{"k":"H4895","v":["מַשְׂטֵמָה","maśṭêmâh","mas-tay-maw'","From the same as H7850; enmity: - hatred."]},{"k":"H4896","v":["מִשְׁטָר","mishṭâr","mish-tawr'","From H7860; jurisdiction: - dominion."]},{"k":"H4897","v":["מֶשִׁי","meshı̂y","meh'-shee","From H4871; silk (as drawn from the cocoon): - silk."]},{"k":"H4898","v":["מְשֵׁיזַבְאֵל","meshêyzab'êl","mesh-ay-zab-ale'","From an equivalent to H7804 and H410; delivered of God; Meshezabel, an Israelite: - Meshezabeel."]},{"k":"H4899","v":["מָשִׁיחַ","mâshı̂yach","maw-shee'-akh","From H4886; anointed; usually a consecrated person (as a king, priest, or saint); specifically the Messiah: - anointed, Messiah."]},{"k":"H4900","v":["מָשַׁךְ","mâshak","maw-shak'","A primitive root; to draw, used in a great variety of applications (including to sow, to sound, to prolong, to develop, to march, to remove, to delay, to be tall, etc.): - draw (along, out), continue, defer, extend, forbear, X give, handle, make (pro-, sound) long, X sow, scatter, stretch out."]},{"k":"H4901","v":["מֶשֶׁךְ","meshek","meh'-shek","From H4900; a sowing; also a possession: - precious, price."]},{"k":"H4902","v":["מֶשֶׁךְ","meshek","meh'-shek","The same in form as H4901, but probably of foreign derivation; Meshek, a son of Japheth, and the people descendant from him: - Mesech, Meshech."]},{"k":"H4903","v":["מִשְׁכַּב","mishkab","mish-kab'","(Chaldee); corresponding to H4904; a bed: - bed."]},{"k":"H4904","v":["מִשְׁכָּב","mishkâb","mish-kawb'","From H7901; a bed (figuratively a bier); abstractly sleep; by euphemism carnal intercourse: - bed ([-chamber]), couch, lieth (lying) with."]},{"k":"H4905","v":["מַשְׂכִּיל","maśkı̂yl","mas-keel'","From H7919; instructive, that is, a didactic poem: - Maschil."]},{"k":"H4906","v":["מַשְׂכִּית","maśkı̂yth","mas-keeth'","From the same as H7906; a figure (carved on stone, the wall, or any object); figuratively imagination: -  conceit, image (-ry), picture, X wish."]},{"k":"H4907","v":["מִשְׁכַּן","mishkan","mish-kan'","(Chaldee); corresponding to H4908; residence: - habitation."]},{"k":"H4908","v":["מִשְׁכָּן","mishkân","mish-kawn'","From H7931; a residence (including a shepherd’s hut, the lair of animals, figuratively the grave; also the Temple); specifically the Tabernacle (properly its wooden walls): - dwelleth, dwelling (place), habitation, tabernacle, tent."]},{"k":"H4909","v":["מַשְׂכֹּרֶת","maśkôreth","mas-koh'-reth","From H7936; wages or a reward: - reward, wages."]},{"k":"H4910","v":["מָשַׁל","mâshal","maw-shal'","A primitive root; to rule: - (have, make to have) dominion, governor, X indeed, reign, (bear, cause to, have) rule (-ing, -r), have power."]},{"k":"H4911","v":["מָשַׁל","mâshal","maw-shal'","Denominative from H4912; to liken, that is, (transitively) to use figurative language (an allegory, adage, song or the like); intransitively to resemble: - be (-come) like, compare, use (as a) proverb, speak (in proverbs), utter."]},{"k":"H4912","v":["מָשָׁל","mâshâl","maw-shawl'","Apparently from H4910 in some original sense of superiority in mental action; properly a pithy maxim, usually of a metaphorical nature; hence a simile (as an adage, poem, discourse): - byword, like, parable, proverb."]},{"k":"H4913","v":["מָשָׁל","mâshâl","maw-shawl'","From H4861; Mashal, a place in Palestine: - Mashal."]},{"k":"H4914","v":["מְשֹׁל","meshôl","mesh-ol'","From H4911; a satire: - byword."]},{"k":"H4915","v":["מֹשֶׁל","môshel","mo'-shel","(1) from H4910; empire; (2) from H4911; a parallel: - dominion, like."]},{"k":"H4916","v":["מִשְׁלָח    מִשְׁלֹחַ    מִשְׁלוֹחַ","mishlôach    mishlôach    mishlâch","(1,2) mish-lo'-akh, mish-lawkh'","From H7971; a sending out, that is, (abstractly) presentation (favorable), or seizure (unfavorable); also (concretely) a place of dismissal, or a business to be discharged: - to lay, to put, sending (forth), to set."]},{"k":"H4917","v":["מִשְׁלַחַת","mishlachath","mish-lakh'-ath","Feminine of H4916; a mission, that is, (abstractly and favorable) release, or (concretely and unfavorable) an army: - discharge, sending."]},{"k":"H4918","v":["מְשֻׁלָּם","meshûllâm","mesh-ool-lawm'","From H7999; allied; Meshullam, the name of seventeen Israelites: - Meshullam."]},{"k":"H4919","v":["מְשִׁלֵּמוֹת","meshillêmôth","mesh-il-lay-mohth'","Plural from H7999; reconciliations; Meshillemoth, an Israelite: - Meshillemoth, an Isr: - Meshillemoth. Compare H4921."]},{"k":"H4920","v":["מְשֶׁלֶמְיָהוּ    מְשֶׁלֶמְיָה","meshelemyâh    meshelemyâhû","mesh-eh-lem-yaw', mesh-eh-lem-yaw'-hoo","From H7999 and H3050; ally of Jah; Meshelemjah, an Israelite: - Meshelemiah."]},{"k":"H4921","v":["מְשִׁלֵּמִית","meshillêmı̂yth","mesh-il-lay-meeth'","From H7999; reconciliation; Meshillemith, an Israelite: - Meshillemith. Compare H4919."]},{"k":"H4922","v":["מְשֻׁלֶּמֶת","meshûllemeth","mesh-ool-leh'-meth","Feminine of H4918; Meshullemeth, an Israelitess: - Meshullemeth."]},{"k":"H4923","v":["מְשַׁמָּה","meshammâh","mesh-am-maw'","From H8074; a waste or amazement: - astonishment, desolate."]},{"k":"H4924","v":["מַשְׁמָן","mashmân","mash-mawn'","From H8080; fat, that is, (literally and abstractly) fatness; but usually (figuratively and concretely) a rich dish, a fertile field, a robust man: - fat (one, -ness, -test, -test place)."]},{"k":"H4925","v":["מִשְׁמַנָּה","mishmannâh","mish-man-naw'","From H8080; fatness; Mashmannah, an Israelite: - Mishmannah."]},{"k":"H4926","v":["מִשְׁמָע","mishmâ‛","mish-maw'","From H8085; a report: - hearing."]},{"k":"H4927","v":["מִשְׁמָע","mishmâ‛","mish-maw'","The same as H4926; Mishma, the name of a son of Ishmael, and of an Israelite: - Mishma."]},{"k":"H4928","v":["מִשְׁמַעַת","mishma‛ath","mish-mah'-ath","Feminine of H4926; audience, that is, the royal court; also obedience, that is, (concretely) a subject: - bidding, guard, obey."]},{"k":"H4929","v":["מִשְׁמָר","mishmâr","mish-mawr'","From H8104; a guard (the man, the post, or the prison); figuratively a deposit; also (as observed) a usage (abstractly), or an example (concretely): - diligence, guard, office, prison, ward, watch."]},{"k":"H4930","v":["מַשְׂמְרָה","maśmerâh","mas-mer-aw'","For H4548 feminine; a peg: - nail."]},{"k":"H4931","v":["מִשְׁמֶרֶת","mishmereth","mish-meh'-reth","Feminine of H4929; watch, that is, the act (custody) or (concretely) the sentry, the post; objectively preservation, or (concretely) safe; figuratively observance, that is, (abstractly) duty, or (objectively) a usage or party: - charge, keep, to be kept, office, ordinance, safeguard, ward, watch."]},{"k":"H4932","v":["מִשְׁנֶה","mishneh","mish-neh'","From H8138; properly a repetition, that is, a duplicate (copy of a document), or a double (in amount); by implication a second (in order, rank, age, quality or location): - college, copy, double, fatlings, next, second (order), twice as much."]},{"k":"H4933","v":["מְשִׁסָּה","meshissâh","mesh-is-saw'","From H8155; plunder: - booty, spoil."]},{"k":"H4934","v":["מִשְׁעוֹל","mish‛ôl","mish-ole'","From the same as H8168; a hollow, that is, a narrow passage: - path."]},{"k":"H4935","v":["מִשְׁעִי","mish‛ı̂y","mish-ee'","Probably from H8159; inspection: - to supple."]},{"k":"H4936","v":["מִשְׁעָם","mish‛âm","mish-awm'","Apparently from H8159; inspection; Misham, an Israelite: - Misham."]},{"k":"H4937","v":["מִשְׁעָן    מִשְׁעֵן","mish‛ên    mish‛ân","mish-ane', mish-awn'","From H8172; a support (concretely), that is, (figuratively) a protector or sustenance: - stay."]},{"k":"H4938","v":["מִשְׁעֶנֶת    מִשְׁעֵנָה","mish‛ênâh    mish‛eneth","mish-ay-naw', mish-eh'-neth","Feminine of H4937; support (abstractly), that is, (figuratively) sustenance or (concretely) a walking stick: - staff."]},{"k":"H4939","v":["מִשְׂפָּח","miśpâch","mis-pawkh'","From H5596; slaughter: - oppression."]},{"k":"H4940","v":["מִשְׁפָּחָה","mishpâchâh","mish-paw-khaw'","From H8192 (compare H8198); a family, that is, circle of relatives; figuratively a class (of persons), a species (of animals) or sort (of things); by extension a tribe or people: - family, kind (-red)."]},{"k":"H4941","v":["מִשְׁפָּט","mishpâṭ","mish-pawt'","From H8199; properly a verdict (favorable or unfavorable) pronounced judicially, especially a sentence or formal decree (human or (particularly) divine law, individual or collectively), including the act, the place, the suit, the crime, and the penalty; abstractly justice, including a particular right, or privilege (statutory or customary), or even a style: -  + adversary, ceremony, charge, X crime, custom, desert, determination, discretion, disposing, due, fashion, form, to be judged, judgment, just (-ice, -ly), (manner of) law (-ful), manner, measure, (due) order, ordinance, right, sentence, usest, X worthy, + wrong."]},{"k":"H4942","v":["מִשְׁפָּת","mishpâth","mish-pawth'","From H8192; a stall for cattle (only dual): - burden, sheepfold."]},{"k":"H4943","v":["מֶשֶׁק","mesheq","meh'-shek","From an unused root meaning to hold; possession: -  + steward."]},{"k":"H4944","v":["מַשָּׁק","mashshâq","mash-shawk'","From H8264; a traversing, that is, rapid motion: - running to and fro."]},{"k":"H4945","v":["מַשְׁקֶה","mashqeh","mash-keh'","From H8248; properly causing to drink, that is, a butler; by implication (intransitively) drink (itself); figuratively a well watered region: - butler (-ship), cupbearer, drink (-ing), fat pasture, watered."]},{"k":"H4946","v":["מִשְׁקוֹל","mishqôl","mish-kole'","From H8254; weight: - weight."]},{"k":"H4947","v":["מַשְׁקוֹף","mashqôph","mash-kofe'","From H8259 in its original sense of overhanging; a lintel: - lintel, upper door post."]},{"k":"H4948","v":["מִשְׁקָל","mishqâl","mish-kawl'","From H8254; weight (numerically estimated); hence, weighing (the act): - (full) weight."]},{"k":"H4949","v":["מִשְׁקֹלֶת    מִשְׁקֶלֶת","mishqeleth    mishqôleth","mish-keh'-leth, mish-ko'-leth","Feminine of H4948 or H4947; a weight, that is, a plummet (with line attached): - plummet."]},{"k":"H4950","v":["מִשְׁקָע","mishqâ‛","mish-kaw'","From H8257; a settling place (of water), that is, a pond: - deep."]},{"k":"H4951","v":["מִשְׂרָה","miśrâh","mis-raw'","From H8280; empire: - government."]},{"k":"H4952","v":["מִשְׁרָה","mishrâh","mish-raw'","From H8281 in the sense of loosening; maceration, that is, steeped juice: - liquor."]},{"k":"H4953","v":["מַשְׁרוֹקִי","mashrôqı̂y","mash-ro-kee'","(Chaldee); from a root corresponding to H8319; a (musical) pipe (from its whistling sound): - flute."]},{"k":"H4954","v":["מִשְׁרָעִי","mishrâ‛ı̂y","mish-raw-ee'","Patrial from an unused noun from an unused root; probably meaning to stretch out; extension; a Mishraite, or inhabitant (collectively) of Mishra: - Mishraites."]},{"k":"H4955","v":["מִשְׂרָפָה","miśrâphâh","mis-raw-faw'","From H8313; combustion, that is, cremation (of a corpse), or calcination (of lime): - burning."]},{"k":"H4956","v":["מִשְׂרְפוֹת מַיִם","miśrephôth mayim","mis-ref-ohth' mah'-yim","From the plural of H4955 and H4325; burnings of water; Misrephoth-Majim, a place in Palestine: - Misrephoth-mayim."]},{"k":"H4957","v":["מַשְׂרֵקָה","maśrêqâh","mas-ray-kaw'","A form for H7796 used denominatively; vineyard; Masrekah, a place in Idumaea: - Masrekah."]},{"k":"H4958","v":["מַשְׂרֵת","maśrêth","mas-rayth'","Apparently from an unused root meaning to perforate, that is, hollow out; a pan: - pan."]},{"k":"H4959","v":["מָשַׁשׁ","mâshash","maw-shash'","A primitive root; to feel of; by implication to grope: - feel, grope, search."]},{"k":"H4960","v":["מִשְׁתֶּה","mishteh","mish-teh'","From H8354; drink; by implication drinking (the act); also (by implication), a banquet or (generally) feast: - banquet, drank, drink, feast ([-ed], -ing)."]},{"k":"H4961","v":["מִשְׁתֶּה","mishteh","mish-teh'","(Chaldee); corresponding to H4960; a banquet: - banquet."]},{"k":"H4962","v":["מַת","math","math","From the same as H4970; properly an adult (as of full length); by implication a man (only in the plural): -    + few, X friends, men, persons, X small."]},{"k":"H4963","v":["מַתְבֵּן","mathbên","math-bane'","Denominative from H8401; straw in the heap: - straw."]},{"k":"H4964","v":["מֶתֶג","metheg","meh'-theg","From an unused root meaning to curb; a bit: - bit, bridle."]},{"k":"H4965","v":["מֶתֶג הָאַמָּה","metheg hâ'ammâh","meh'-theg haw-am-maw'","From H4964 and H520 with the article interposed; bit of the metropolis; Metheg-ha-Ammah, an epithet of Gath: - Metheg-ammah."]},{"k":"H4966","v":["מָתוּק    מָתוֹק","mâthôq    mâthûq","maw-thoke', maw-thook'","From H4985; sweet: - sweet (-er, -ness)."]},{"k":"H4967","v":["מְתוּשָׁאֵל","methûshâ'êl","meth-oo-shaw-ale'","From H4962 and H410, with the relative interposed; man who (is) of God; Methushael, an antediluvian patriarch: - Methusael."]},{"k":"H4968","v":["מְתוּשֶׁלַח","methûshelach","meth-oo-sheh'-lakh","From H4962 and H7973; man of a dart; Methushelach, an antediluvian patriarch: - Methuselah."]},{"k":"H4969","v":["מָתַח","mâthach","maw-thakh'","A primitive root; to stretch out: - spread out."]},{"k":"H4970","v":["מָתַי","mâthay","maw-thah'ee","From an unused root meaning to extend; properly extent (of time); but used only adverbially (especially with other particles prefixed), when (either relative or interrogitive): - long, when."]},{"k":"H4971","v":["מַתְכֻנֶת    מַתְכֹנֶת","mathkôneth    mathkûneth","math-ko'-neth, math-koo'-neth","From H8505 in the transferred sense of measuring; proportion (in size, number or ingredients): - composition, measure, state, tale."]},{"k":"H4972","v":["מַתְּלָאָה","mattelâ'âh","mat-tel-aw-aw'","From H4100 and H8518; what a trouble!: - what a weariness."]},{"k":"H4973","v":["מְתַלְּעָה","methalle‛âh","meth-al-leh-aw'","Contracted from H3216; properly a biter, that is, a tooth: - cheek (jaw) tooth, jaw."]},{"k":"H4974","v":["מְתֹם","methôm","meth-ohm'","From H8552; wholesomeness; also (adverbially) completely. (men is by reading H4962.): - men [by reading H4962], soundness."]},{"k":"H4975","v":["מֹתֶן","môthen","mo'-then","From an unused root meaning to be slender; properly the waist or small of the back; only in plural the loins: -  + greyhound, loins, side."]},{"k":"H4976","v":["מַתָּן","mattân","mat-tawn'","From H5414; a present: - gift, to give, reward."]},{"k":"H4977","v":["מַתָּן","mattân","mat-tawn'","The same as H4976; Mattan, the name of a priest of Baal, and of an Israelite: - Mattan."]},{"k":"H4978","v":["מַתְּנָא","mattenâ'","mat-ten-aw'","(Chaldee); corresponding to H4979: - gift."]},{"k":"H4979","v":["מַתָּנָה","mattânâh","mat-taw-naw'","Feminine of H4976; a present; specifically (in a good sense) a sacrificial offering, (in a bad sense) a bribe: - gift."]},{"k":"H4980","v":["מַתָּנָה","mattânâh","mat-taw-naw'","The same as H4979; Mattanah, a place in the Desert: - Mattanah."]},{"k":"H4981","v":["מִתְנִי","mithnı̂y","mith-nee'","Probably patrial from an unused noun meaning slenderness; a Mithnite, or inhabitant of Methen: - Mithnite."]},{"k":"H4982","v":["מַתְּנַי","mattenay","mat-ten-ah'ee","From H4976; liberal; Mattenai, the name of three Israelites: - Mattenai."]},{"k":"H4983","v":["מַתַּנְיָהוּ    מַתַּנְיָה","mattanyâh    mattanyâhû","mat-tan-yaw', mat-tan-yaw'-hoo","From H4976 and H3050; gift of Jah; Mattanjah, the name of ten Israelites: - Mattaniah."]},{"k":"H4984","v":["מִתְנַשֵּׂא","mithnaśśê'","mith-nas-say'","From H5375; (used as abstraction) supreme exaltation: - exalted."]},{"k":"H4985","v":["מָתַק","mâthaq","maw-thak'","A primitive root; to suck, by implication to relish, or (intransitively) be sweet: - be (made, X take) sweet."]},{"k":"H4986","v":["מֶתֶק","metheq","meh'-thek","From H4985; figuratively pleasantness (of discourse): - sweetness."]},{"k":"H4987","v":["מֹתֶק","môtheq","mo'-thek","From H4985; sweetness: - sweetness."]},{"k":"H4988","v":["מָתָק","mâthâq","maw-thawk'","From H4985; a dainty, that is, (generally) food: - feed sweetly."]},{"k":"H4989","v":["מִתְקָה","mithqâh","mith-kaw'","Feminine of H4987; sweetness; Mithkah, a place in the Desert: - Mithcah."]},{"k":"H4990","v":["מִתְרְדָת","mithredâth","mith-red-awth'","Of Persian origin; Mithredath, the name of two Persians: - Mithredath."]},{"k":"H4991","v":["מַתָּת","mattâth","mat-tawth'","Feminine of H4976 abbreviated; a present: - gift, reward."]},{"k":"H4992","v":["מַתַּתָּה","mattattâh","mat-tat-taw'","For H4993; gift of Jah; Mattattah, an Israelite: - Mattathah."]},{"k":"H4993","v":["מַתִּתְיָהוּ    מַתִּתְיָה","mattithyâh    mattithyâhû","mat-tith-yaw', mat-tith-yaw'-hoo","From H4991 and H3050; gift of Jah; Mattithjah, the name of four Israelites: - Mattithiah."]},{"k":"H4994","v":["נָא","nâ'","naw","A primitive particle of incitement and entreaty, which may usually be rendered I pray, now or then; added mostly to verbs (in the imperative or future), or to interjections, occasionally to an adverb or conjugation: - I beseech (pray) thee (you), go to, now, oh."]},{"k":"H4995","v":["נָא","nâ'","naw","Apparently from H5106 in the sense of harshness from refusal; properly tough, that is, uncooked (flesh): - raw."]},{"k":"H4996","v":["נֹא","nô'","no","Of Egyptian origin; no (that is, Thebes), the capital of Upper Egypt: - No. Compare H528."]},{"k":"H4997","v":["נֹאדָה    נֹאוד    נֹאד","nô'd    nô'd    nô'dâh","node, node, no-daw'","From an unused root of uncertain signification; a (skin or leather) bag (for fluids): - bottle."]},{"k":"H4998","v":["נָאָה","nâ'âh","naw-aw'","A primitive root; properly to be at home, that is, (by implication) to be pleasant (or suitable), that is, beautiful: - be beautiful, become, be comely."]},{"k":"H4999","v":["נָאָה","nâ'âh","naw-aw'","From H4998; a home; figuratively a pasture: - habitation, house, pasture, pleasant place."]},{"k":"H5000","v":["נָאוֶה","nâ'veh","naw-veh'","From H4998 or H5116; suitable, or beautiful: - becometh, comely, seemly."]},{"k":"H5001","v":["נָאַם","nâ'am","naw-am'","A primitive root; properly to whisper, that is, (by implication) to utter as an oracle: - say."]},{"k":"H5002","v":["נְאֻם","ne'ûm","nah-oom'","From H5001; an oracle: - (hath) said, saith."]},{"k":"H5003","v":["נָאַף","nâ'aph","naw-af'","A primitive root; to commit adultery; figuratively to apostatize: - adulterer (-ess), commit (-ing) adultery, woman that breaketh wedlock."]},{"k":"H5004","v":["נִאֻף","ni'ûph","nee-oof'","From H5003; adultery: - adultery."]},{"k":"H5005","v":["נַאֲפוּף","na'ăphûph","nah-af-oof'","From H5003; adultery: - adultery."]},{"k":"H5006","v":["נָאַץ","nâ'ats","naw-ats'","A primitive root; to scorn; or (Ecc_12:5) by interchange for H5132, to bloom: - abhor, (give occasion to) blaspheme, contemn, despise, flourish, X great, provoke."]},{"k":"H5007","v":["נֶאָצָה    נְאָצָה","ne'âtsâh    ne'âtsâh","neh-aw-tsaw', neh-aw-tsaw'","From H5006; scorn: - blasphemy."]},{"k":"H5008","v":["נָאַק","nâ'aq","naw-ak'","A primitive root; to groan: - groan."]},{"k":"H5009","v":["נְאָקָה","ne'âqâh","neh-aw-kaw'","From H5008; a groan: - groaning."]},{"k":"H5010","v":["נָאַר","nâ'ar","naw-ar'","A primitive root; to reject: - abhor, make void."]},{"k":"H5011","v":["נֹב","nôb","nobe","The same as H5108; fruit; Nob, a place in Palestine: - Nob."]},{"k":"H5012","v":["נָבָא","nâbâ'","naw-baw'","A primitive root; to prophesy, that is, speak (or sing) by inspiration (in prediction or simple discourse): - prophesy (-ing) make self a prophet."]},{"k":"H5013","v":["נְבָא","nebâ'","neb-aw'","(Chaldee); corresponding to H5012: - prophesy."]},{"k":"H5014","v":["נָבַב","nâbab","naw-bab'","A primitive root; to pierce; to be hollow, or (figuratively) foolish: - hollow, vain."]},{"k":"H5015","v":["נְבוֹ","nebô","neb-o'","Probably of foreign derivation; Nebo, the name of a Babylonian deity, also of a mountain in Moab, and of a place in Palestine: - Nebo."]},{"k":"H5016","v":["נְבוּאָה","nebû'âh","neb-oo-aw'","From H5012; a prediction (spoken or written): - prophecy."]},{"k":"H5017","v":["נְבוּאָה","nebû'âh","neb-oo-aw'","(Chaldee); corresponding to H5016; inspired teaching: - prophesying."]},{"k":"H5018","v":["נְבוּזַרְאֲדָן","nebûzar'ădân","neb-oo-zar-ad-awn'","Of foreign origin; Nebuzaradan, a Babylonian general: - Nebuzaradan."]},{"k":"H5019","v":["נְבוּכַדְנֶאצַר","Nᵉbûwkadneʼtstsar","neb-oo-kad-nets-tsar'","Of foreign derivation; Nebukadnetstsar (or retstsar, or retstsor), king of Babylon: - Nebuchadnezzar, Nebuchadrezzar."]},{"k":"H5020","v":["נְבוּכַדְנֶצַּר","nebûkkadnetstsar","neb-oo-kad-nets-tsar'","(Chaldee); corresponding to H5019: - Nebuchadnezzar."]},{"k":"H5021","v":["נְבוּשַׁזְבָּן","nebûshazbân","neb-oo-shaz-bawn'","Of foreign derivation; Nebushazban, Nebuchadnezzar’s chief eunuch: - Nebushazban."]},{"k":"H5022","v":["נָבוֹת","nâbôth","naw-both'","Feminine plural from the same as H5011; fruits; Naboth, an Israelite: - Naboth."]},{"k":"H5023","v":["נְבִזְבָּה","nebizbâh","neb-iz-baw'","(Chaldee); of uncertain derivation; a largess: - reward."]},{"k":"H5024","v":["נָבַח","nâbach","naw-bakh","A primitive root; to bark (as a dog): - bark."]},{"k":"H5025","v":["נֹבַח","nôbach","no'-bach","From H5024; a bark; Nobach, the name of an Israelite and of a place East of the Jordan: - Nobah."]},{"k":"H5026","v":["נִבְחַז","nibchaz","nib-khaz'","Of foreign origin; Nibchaz, a deity of the Avites: - Nibhaz."]},{"k":"H5027","v":["נָבַט","nâbaṭ","naw-bat'","A primitive root; to scan, that is, look intently at; by implication to regard with pleasure, favor or care: - (cause to) behold, consider, look (down), regard, have respect, see."]},{"k":"H5028","v":["נְבָט","nebâṭ","neb-awt'","From H5027; regard; Nebat, the father of Jeroboam (the first): - Nebat."]},{"k":"H5029","v":["נְבִיא","nebı̂y'","neb-ee'","(Chaldee); corresponding to H5030; a prophet: - prophet."]},{"k":"H5030","v":["נָבִיא","nâbı̂y'","naw-bee'","From H5012; a prophet or (generally) inspired man: - prophecy, that prophesy, prophet."]},{"k":"H5031","v":["נְבִיאָה","nebı̂y'âh","neb-ee-yaw'","Feminine of H5030; a prophetess or (generally) inspired woman; by implication a poetess; by association a prophet's wife: - prophetess."]},{"k":"H5032","v":["נְבָיֹת    נְבָיוֹת","nebâyôth    nebâyôth","neb-aw-yoth', neb-aw-yoth'","Feminine plural from H5107; fruitfulnesses; Nebajoth, a son of Ishmael, and the country settled by him: - Nebaioth, Nebajoth."]},{"k":"H5033","v":["נֵבֶךְ","nêbek","nay'-bek","From an unused root meaning to burst forth; a fountain: - spring."]},{"k":"H5034","v":["נָבֵל","nâbêl","naw-bale'","A primitive root; to wilt; generally to fall away, fail, faint; figuratively to be foolish or (morally) wicked; causatively to despise, disgrace: - disgrace, dishonour, lightly esteem, fade (away, -ing), fall (down, -ling, off), do foolishly, come to nought, X surely, make vile, wither."]},{"k":"H5035","v":["נֵבֶל    נֶבֶל","nebel    nêbel","neh'-bel, nay'-bel","From H5034; a skin bag for liquids (from collapsing when empty); hence, a vase (as similar in shape when full); also a lyre (as having a body of like form): - bottle, pitcher, psaltery, vessel, viol."]},{"k":"H5036","v":["נָבָל","nâbâl","naw-bawl'","From H5034; stupid; wicked (especially impious): - fool (-ish, -ish man, -ish woman), vile person."]},{"k":"H5037","v":["נָבָל","nâbâl","naw-bawl'","The same as H5036; dolt; Nabal, an Israelite: - Nabal."]},{"k":"H5038","v":["נְבֵלָה","nebêlâh","neb-ay-law'","From H5034; a flabby thing, that is, a carcase or carrion (human or bestial, often collective); figuratively an idol: -  (dead) body, (dead) carcase, dead of itself, which died, (beast) that (which) dieth of itself."]},{"k":"H5039","v":["נְבָלָה","nebâlâh","neb-aw-law'","Feminine of H5036; foolishness, that is, (morally) wickedness; concretely a crime; by extension punishment: - folly, vile, villany."]},{"k":"H5040","v":["נַבְלוּת","nablûth","nab-looth'","From H5036; properly disgrace, that is, the (female) pudenda: - lewdness."]},{"k":"H5041","v":["נְבַלָּט","neballâṭ","neb-al-lawt'","Apparently from H5036 and H3909; foolish secrecy; Neballat, a place in Palestine: - Neballat."]},{"k":"H5042","v":["נָבַע","nâba‛","naw-bah'","A primitive root; to gush forth; figuratively to utter (good or bad words); specifically to emit (a foul odor): - belch out, flowing, pour out, send forth, utter (abundantly)."]},{"k":"H5043","v":["נֶבְרְשָׁא","nebreshâ'","neb-reh-shaw'","(Chaldee); from an unused root meaning to shine; a light; plural (collectively) a chandelier: - candlestick."]},{"k":"H5044","v":["נִבְשָׁן","nibshân","nib-shawn'","Of uncertain derivation; Nibshan, a place in Palestine: - Nibshan."]},{"k":"H5045","v":["נֶגֶב","negeb","neh'-gheb","From an unused root meaning to be parched; the south (from its drought); specifically the negeb or southern district of Judah, occasionally, Egypt (as south to Palestine): - south (country, side, -ward)."]},{"k":"H5046","v":["נָגַד","nâgad","naw-gad'","A primitive root; properly to front, that is, stand boldly out opposite; by implication (causatively), to manifest; figuratively to announce (always by word of mouth to one present); specifically to expose, predict, explain, praise: - bewray, X certainly, certify, declare (-ing), denounce, expound, X fully, messenger, plainly, profess, rehearse, report, shew (forth), speak, X surely, tell, utter."]},{"k":"H5047","v":["נְגַד","negad","neg-ad'","(Chaldee); corresponding to H5046; to flow (through the idea of clearing the way): - issue."]},{"k":"H5048","v":["נֶגֶד","neged","neh'-ghed","From H5046; a front, that is, part opposite; specifically a counterpart, or mate; usually (adverbially, especially with preposition) over against or before: - about, (over) against, X aloof, X far (off), X from, over, presence, X other side, sight, X to view."]},{"k":"H5049","v":["נֶגֶד","neged","neh'-ghed","(Chaldee); corresponding to H5048; opposite: - toward."]},{"k":"H5050","v":["נָגַהּ","nâgahh","naw-gah'","A primitive root; to glitter; causatively to illuminate: - (en-) lighten, (cause to) shine."]},{"k":"H5051","v":["נֹגַהּ","nôgahh","no'-gah","From H5050; brilliancy (literally or figuratively): - bright (-ness), light, (clear) shining."]},{"k":"H5052","v":["נֹגַהּ","nôgahh","no'-gah","The same as H5051; Nogah, a son of David: - Nogah."]},{"k":"H5053","v":["נֹגַהּ","nôgahh","no'-gah","(Chaldee); corresponding to H5051; dawn: - morning."]},{"k":"H5054","v":["נְגֹהָה","negôhâh","neg-o-haw'","Feminine of H5051; splendor: - brightness."]},{"k":"H5055","v":["נָגַח","nâgach","naw-gakh'","A primitive root; to but with the horns; figuratively to war against: - gore, push (down, -ing)."]},{"k":"H5056","v":["נַגָּח","naggâch","nag-gawkh'","From H5055; butting, that is, vicious: - used (wont) to push."]},{"k":"H5057","v":["נָגִד    נָגִיד","nâgı̂yd    nâgid","naw-gheed', naw-gheed'","From H5046; a commander (as occupying the front), civil, military or religious; generally (abstract plural), honorable themes: - captain, chief, excellent thing, (chief) governor, leader, noble, prince, (chief) ruler."]},{"k":"H5058","v":["נְגִינַת    נְגִינָה","negı̂ynâh    negı̂ynath","neg-ee-naw', neg-ee-nath'","From H5059; properly instrumental music; by implication a stringed instrument; by extension a poem set to music; specifically an epigram: - stringed instrument, musick, Neginoth [plural], song."]},{"k":"H5059","v":["נָגַן","nâgan","naw-gan'","A primitive root; prop to thrum, that is, beat a tune with the fingers; especially to play on a stringed instrument; hence (generally) to make music: - player on instruments, sing to the stringed instruments, melody, ministrel, play (-er. -ing)."]},{"k":"H5060","v":["נָגַע","nâga‛","naw-gah'","A primitive root; properly to touch, that is, lay the hand upon (for any purpose; euphemistically, to lie with a woman); by implication to reach (figuratively to arrive, acquire); violently, to strike (punish, defeat, destroy, etc.): - beat, (X be able to) bring (down), cast, come (nigh), draw near (nigh), get up, happen, join, near, plague, reach (up), smite, strike, touch."]},{"k":"H5061","v":["נֶגַע","nega‛","neh'-gah","From H5060; a blow (figuratively infliction); also (by implication) a spot (concretely a leprous person or dress): - plague, sore, stricken, stripe, stroke, wound."]},{"k":"H5062","v":["נָגַף","nâgaph","naw-gaf'","A primitive root; to push, gore, defeat, stub (the toe), inflict (a disease): - beat, dash, hurt, plague, slay, smite (down), strike, stumble, X surely, put to the worse."]},{"k":"H5063","v":["נֶגֶף","negeph","neh'-ghef","From H5062; a trip (of the foot); figuratively an infliction (of disease): - plague, stumbling."]},{"k":"H5064","v":["נָגַר","nâgar","naw-gar'","A primitive root; to flow; figuratively to stretch out; causatively to pour out or down; figuratively to deliver over: - fall, flow away, pour down (out), run, shed, split, trickle down."]},{"k":"H5065","v":["נָגַשׂ","nâgaś","naw-gas'","A primitive root; to drive (an animal, a workman, a debtor, an army); by implication to tax, harass, tyrannize: - distress, driver, exact (-or), oppress (-or), X raiser of taxes, taskmaster."]},{"k":"H5066","v":["נָגַשׁ","nâgash","naw-gash'","A primitive root; to be or come (causatively bring) near (for any purpose); euphemistically to lie with a woman; as an enemy, to attack; religiously to worship; causatively to present; figuratively to adduce an argument; by reversal, to stand back: - (make to) approach (nigh), bring (forth, hither, near), (cause to) come (higher, near, nigh), give place, go hard (up), (be, draw, go) near (nigh), offer, overtake, present, put, stand."]},{"k":"H5067","v":["נֵד","nêd","nade","From H5110 in the sense of piling up; a mound, that is, wave: - heap."]},{"k":"H5068","v":["נָדַב","nâdab","naw-dab'","A primitive root; to impel; hence to volunteer (as a soldier), to present spontaneously: - offer freely, be (give, make, offer self) willing (-ly)."]},{"k":"H5069","v":["נְדַב","nedab","ned-ab'","(Chaldee); corresponding to H5068; be (or give) liberal (liberally): - (be minded of . . . own) freewill (offering), offer freely (willingly)."]},{"k":"H5070","v":["נָדָב","nâdâb","naw-dawb'","From H5068; liberal; Nadab, the name of four Israelites: - Nadab."]},{"k":"H5071","v":["נְדָבָה","nedâbâh","ned-aw-baw'","From H5068; properly (abstractly) spontaneity, or (adjectively) spontaneous; also (concretely) a spontaneous or (by inference, in plural) abundant gift: - free (-will) offering, freely, plentiful, voluntary (-ily, offering), willing (-ly, offering)."]},{"k":"H5072","v":["נְדַבְיָה","nedabyâh","ned-ab-yaw'","From H5068 and H3050; largess of Jah; Nedabjah, an Israelite: - Nedabiah."]},{"k":"H5073","v":["נִדְבָּךְ","nidbâk","nid-bawk'","(Chaldee); from a rot meaning to stick; a layer (of building materials): - row."]},{"k":"H5074","v":["נָדַד","nâdad","naw-dad'","A primitive root; properly to wave to and fro (rarely to flap up and down); figuratively to rove, flee, or (causatively) to drive away: - chase (away), X could not, depart, flee (X apace, away), (re-) move, thrust away, wander (abroad, -er, -ing)."]},{"k":"H5075","v":["נְדַד","nedad","ned-ad'","(Chaldee); corresponding to H5074; to depart: - go from."]},{"k":"H5076","v":["נָדֻד","nâdûd","naw-dood'","Passive participle of H5074; properly tossed; abstractly a rolling (on the bed): - tossing to and fro."]},{"k":"H5077","v":["נָדָא    נָדָה","nâdâh    nâdâ'","naw-daw', naw-daw'","A primitive root; properly to toss; figuratively to exclude, that is, banish, postpone, prohibit: - cast out, drive, put far away."]},{"k":"H5078","v":["נֵדֶה","nêdeh","nay'-deh","From H5077 in the sense of freely flinging money; a bounty (for prostitution): - gifts."]},{"k":"H5079","v":["נִדָּה","niddâh","nid-daw'","From H5074; properly rejection; by implication impurity, especially personal (menstruation) or moral (idolatry, incest): -    X far, filthiness, X flowers, menstruous (woman), put apart, X removed (woman), separation, set apart, unclean (-ness, thing, with filthiness)."]},{"k":"H5080","v":["נָדַח","nâdach","naw-dakh'","A primitive root; to push off; used in a great variety of applications, literally and figuratively (to expel, mislead, strike, inflict, etc.): - banish, bring, cast down (out), chase, compel, draw away, drive (away, out, quite), fetch a stroke, force, go away, outcast, thrust away (out), withdraw."]},{"k":"H5081","v":["נָדִיב","nâdı̂yb","naw-deeb'","From H5068; properly voluntary, that is, generous; hence, magnanimous; as noun, a grandee (sometimes a tyrant): - free, liberal (things), noble, prince, willing ([hearted])."]},{"k":"H5082","v":["נְדִיבָה","nedı̂ybâh","ned-ee-baw'","Feminine of H5081; properly nobility, that is, reputation: - soul."]},{"k":"H5083","v":["נָדָן","nâdân","naw-dawn'","Probably from an unused root meaning to give; a present (for prostitution): - gift."]},{"k":"H5084","v":["נָדָן","nâdân","naw-dawn'","Of uncertain derivation; a sheath (of a sword): - sheath."]},{"k":"H5085","v":["נִדְנֶה","nidneh","nid-neh'","(Chaldee); from the same as H5084; a sheath; figuratively the body (as the receptacle of the soul): - body."]},{"k":"H5086","v":["נָדַף","nâdaph","naw-daf'","A primitive root; to shove asunder, that is, disperse: - drive (away, to and fro), thrust down, shaken, tossed to and fro."]},{"k":"H5087","v":["נָדַר","nâdar","naw-dar'","A primitive root; to promise (positively, to do or give something to God): - (make a) vow."]},{"k":"H5088","v":["נֵדֶר    נֶדֶר","neder    nêder","neh'-der, nay'-der","From H5087; a promise (to God); also (concretely) a thing promised: - vow ([-ed])."]},{"k":"H5089","v":["נֹהַּ","nôahh","no'-ah","From an unused root meaning to lament; lamentation: - wailing."]},{"k":"H5090","v":["נָהַג","nâhag","naw-hag'","A primitive root; to drive forth (a person, an animal or chariot), that is, lead, carry away; reflexively to proceed (that is, impel or guide oneself); also (from the panting induced by effort), to sigh: - acquaint, bring (away), carry away, drive (away), lead (away, forth), (be) guide, lead (away, forth)."]},{"k":"H5091","v":["נָהָה","nâhâh","naw-haw'","A primitive root; to groan, that is, bewail; hence (through the idea of crying aloud) to assemble (as if on proclamation): - lament, wail."]},{"k":"H5092","v":["נְהִי","nehı̂y","neh-hee'","From H5091; an elegy: - lamentation, wailing."]},{"k":"H5093","v":["נִהְיָה","nihyâh","nih-yaw'","Feminine of H5092; lamentation: - doleful."]},{"k":"H5094","v":["נְהִירוּ    נְהִיר","nehı̂yr    nehı̂yrû","neh-heere', neh-hee-roo'","(Chaldee); from the same as H5105; illumination, that is, (figuratively) wisdom: - light."]},{"k":"H5095","v":["נָהַל","nâhal","naw-hal'","A primitive root; properly to run with a sparkle, that is, flow; hence (transitively) to conduct, and (by inference) to protect, sustain: - carry, feed, guide, lead (gently, on)."]},{"k":"H5096","v":["נַהֲלֹל    נַהֲלָל","nahălâl    nahălôl","nah-hal-awl', nah-hal-ole'","The same as H5097; Nahalal or Nahalol, a place in Palestine: - Nahalal, Nahallal, Nahalol."]},{"k":"H5097","v":["נַחֲלֹל","nachălôl","nah-hal-ole'","From H5095; pasture: - bush."]},{"k":"H5098","v":["נָהַם","nâham","naw-ham'","A primitive root; to growl: - mourn, roar (-ing)."]},{"k":"H5099","v":["נַהַם","naham","nah'-ham","From H5098; a snarl: - roaring."]},{"k":"H5100","v":["נְהָמָה","nehâmâh","neh-haw-maw'","Feminine of H5099; snarling: - disquietness, roaring."]},{"k":"H5101","v":["נָהַק","nâhaq","naw-hak'","A primitive root; to bray (as an ass), scream (from hunger): - bray."]},{"k":"H5102","v":["נָהַר","nâhar","naw-har'","A primitive root; to sparkle, that is, (figuratively) be cheerful; hence (from the sheen of a running stream) to flow, that is, (figuratively) assemble: - flow (together), be lightened."]},{"k":"H5103","v":["נְהַר","nehar","neh-har'","(Chaldee); from a root corresponding to H5102; a river, especially the Euphrates: - river, stream."]},{"k":"H5104","v":["נָהָר","nâhâr","naw-hawr'","From H5102; a stream (including the sea; especially the Nile, Euphrates, etc.); figuratively, prosperity: - flood, river."]},{"k":"H5105","v":["נְהָרָה","nehârâh","neh-haw-raw'","From H5102 in its original sense; daylight: - light."]},{"k":"H5106","v":["נוּא","nû'","noo","A primitive root; to refuse, forbid, dissuade, or neutralize: - break, disallow, discourage, make of none effect."]},{"k":"H5107","v":["נוּב","nûb","noob","A primitive root; to germinate, that is, (figuratively) to (causatively make) flourish; also (of words), to utter: - bring forth (fruit), make cheerful, increase."]},{"k":"H5108","v":["נֵיב    נוֹב","nôb    nêyb","nobe, nabe","From H5107; produce, literally or figuratively: - fruit."]},{"k":"H5109","v":["נוֹבַי","nôbay","no-bah'ee","From H5108; fruitful; Nobai, an Israelite: - Nebai [from the margin]."]},{"k":"H5110","v":["נוּד","nûd","nood","A primitive root; to nod, that is, waver; figuratively to wander, flee, disappear; also (from shaking the head in sympathy), to console, deplore, or (from tossing the head in scorn) taunt: - bemoan, flee, get, mourn, make to move, take pity, remove, shake, skip for joy, be sorry, vagabond, way, wandering."]},{"k":"H5111","v":["נוּד","nûd","nood","(Chaldee); corresponding to H5116; to flee: - get away."]},{"k":"H5112","v":["נֹד    נוֹדּ","nôd    nôd","node, node","From H5110; exile: - wandering."]},{"k":"H5113","v":["נוֹד","nôd","node","The same as H5112; vagrancy; Nod, the land of Cain: - Nod."]},{"k":"H5114","v":["נוֹדָב","nôdâb","no-dawb'","From H5068; noble; Nodab, an Arab tribe: - Nodab."]},{"k":"H5115","v":["נָוָה","nâvâh","naw-vaw'","A primitive root; to rest (as at home); causatively (through the implied idea of beauty (compare H5116)), to celebrate (with praises): - keep at home, prepare an habitation."]},{"k":"H5116","v":["נָוָה    נָוֶה","nâveh    nâvâh","naw-veh', naw-vaw'","From H5115; (adjective) at home; hence (by implication of satisfaction) lovely; also (noun) a home, of God (temple), men (residence), flocks (pasture), or wild animals (den): - comely, dwelling (place), fold, habitation, pleasant place, sheepcote, stable, tarried."]},{"k":"H5117","v":["נוּחַ","nûach","noo'-akh","A primitive root; to rest, that is, settle down; used in a great variety of applications, literally and figuratively, intransitively, transitively and causatively (to dwell, stay, let fall, place, let alone, withdraw, give comfort, etc.): - cease, be confederate, lay, let down, (be) quiet, remain, (cause to, be at, give, have, make to) rest, set down. Compare H3241."]},{"k":"H5118","v":["נוֹחַ    נוּחַ","nûach    nôach","noo'-akh, no'-akh","From H5117; quiet: - rest (-ed, -ing place)."]},{"k":"H5119","v":["נוֹחָה","nôchâh","no-khaw'","Feminine of H5118; quietude; Nochah, an Israelite: - Nohah."]},{"k":"H5120","v":["נוּט","nûṭ","noot","To quake: - be moved."]},{"k":"H5121","v":["נָוִית","nâvı̂yth","naw-veeth'","From H5115; residence; Navith, a place in Palestine: - Naioth [from the margin]."]},{"k":"H5122","v":["נְוָלִי    נְוָלוּ","nevâlû    nevâlı̂y","nev-aw-loo', nev-aw-lee'","(Chaldee); from an unused root probably meaning to be foul; a sink: - dunghill."]},{"k":"H5123","v":["נוּם","nûm","noom","A primitive root; to slumber (from drowsiness): - sleep, slumber."]},{"k":"H5124","v":["נוּמָה","nûmâh","noo-maw'","From H5123; sleepiness: - drowsiness."]},{"k":"H5125","v":["נוּן","nûn","noon","A primitive root; to resprout, that is, propagate by shoots; figuratively, to be perpetual: - be continued."]},{"k":"H5126","v":["נוֹן    נוּן","nûn    nôn","noon, nohn","From H5125; perpetuity; Nun or Non, the father of Joshua: - Non, Nun."]},{"k":"H5127","v":["נוּס","nûs","noos","A primitive root; to flit, that is, vanish away (subside, escape; causatively chase, impel, deliver): -    X abate, away, be displayed, (make to) flee (away, -ing), put to flight, X hide, lift up a standard."]},{"k":"H5128","v":["נוּעַ","nûa‛","noo'-ah","A primitive root; to waver, in a great variety of applications, literally and figuratively (as subjoined): - continually, fugitive, X make to [go] up and down, be gone away, (be) move (-able, -d), be promoted, reel, remove, scatter, set, shake, sift, stagger, to and fro, be vagabond, wag, (make) wander (up and down)."]},{"k":"H5129","v":["נוֹעַדְיָה","nô‛adyâh","no-ad-yaw'","From H3259 and H3050; convened of Jah; Noadjah, the name of an Israelite, and a false prophetess: - Noadiah."]},{"k":"H5130","v":["נוּף","nûph","noof","A primitive root; to quiver (that is, vibrate up and down, or rock to and fro); used in a great variety of applications (including sprinkling, beckoning, rubbing, bastinadoing, sawing, waving, etc.): - lift up, move, offer, perfume, send, shake, sift, strike, wave."]},{"k":"H5131","v":["נוֹף","nôph","nofe","From H5130; elevation: - situation. Compare H5297."]},{"k":"H5132","v":["נוּץ","nûts","noots","A primitive root; properly to flash; hence, to blossom (from the brilliancy of color); also, to fly away (from the quickness of motion): - flee away, bud (forth)."]},{"k":"H5133","v":["נֹצָה    נוֹצָה","nôtsâh    nôtsâh","no-tsaw', no-tsaw'","Feminine active participle of H5327 in the sense of flying; a pinion (or wing feather); often (collectively) plumage: - feather (-s), ostrich."]},{"k":"H5134","v":["נוּק","nûq","nook","A primitive root; to suckle: - nurse."]},{"k":"H5135","v":["נוּר","nûr","noor","(Chaldee); from an unused root (corresponding to that of H5216) meaning to shine; fire: - fiery, fire."]},{"k":"H5136","v":["נוּשׁ","nûsh","noosh","A primitive root; to be sick, that is, (figuratively) distressed: - be full of heaviness."]},{"k":"H5137","v":["נָזָה","nâzâh","naw-zaw'","A primitive root; to spirt, that is, besprinkle (especially in expiation): - sprinkle."]},{"k":"H5138","v":["נָזִיד","nâzı̂yd","naw-zeed'","From H2102; something boiled, that is, soup: - pottage."]},{"k":"H5139","v":["נָזִר    נָזִיר","nâzı̂yr    nâzir","naw-zeer', naw-zeer'","From H5144; separate, that is, consecrated (as prince, a Nazirite); hence (figuratively from the latter) an unpruned vine (like an unshorn Nazirite). (The translation, Nazarite, is by a false alliteration with Nazareth.): - Nazarite [by a false alliteration with Nazareth], separate (-d), vine undressed."]},{"k":"H5140","v":["נָזַל","nâzal","naw-zal'","A primitive root; to drip, or shed by trickling: - distil, drop, flood, (cause to) flow (-ing), gush out, melt, pour (down), running water, stream."]},{"k":"H5141","v":["נֶזֶם","nezem","neh'-zem","From an unused root of uncertain meaning; a nose ring: - earring, jewel."]},{"k":"H5142","v":["נְזַק","nezaq","nez-ak'","(Chaldee); corresponding to the root of H5143; to suffer (causatively inflict) loss: - have (en-) damage, hurt (-ful)."]},{"k":"H5143","v":["נֵזֶק","nêzeq","nay'-zek","From an unused root meaning to injure; loss: - damage."]},{"k":"H5144","v":["נָזַר","nâzar","naw-zar'","A primitive root; to hold aloof, that is, (intransitively) abstain (from food and drink, from impurity, and even from divine worship (that is, apostatize)); specifically to set apart (to sacred purposes), that is, devote: - consecrate, separate (-ing, self)."]},{"k":"H5145","v":["נֵזֶר    נֶזֶר","nezer    nêzer","neh'-zer, nay'-zer","From H5144; properly something set apart, that is, (abstractly) dedication (of a priest or Nazirite); hence (concretely) unshorn locks; also (by implication) a chaplet (especially of royalty): - consecration, crown, hair, separation."]},{"k":"H5146","v":["נֹחַ","nôach","no'-akh","The same as H5118; rest; Noach, the patriarch of the flood: - Noah."]},{"k":"H5147","v":["נַחְבִּי","nachbı̂y","nakh-bee'","From H2247; occult; Nachbi, an Israelite: - Nakbi."]},{"k":"H5148","v":["נָחָה","nâchâh","naw-khaw'","A primitive root; to guide; by implication to transport (into exile, or as colonists): - bestow, bring, govern, guide, lead (forth), put, straiten."]},{"k":"H5149","v":["נְחוּם","nechûm","neh-khoom'","From H5162; comforted; Nechum, an Israelite: - Nehum."]},{"k":"H5150","v":["נִחֻם    נִחוּם","nichûm    nichûm","nee-khoom', nee-khoom'","From H5162; properly consoled; abstractly solace: - comfort (-able), repenting."]},{"k":"H5151","v":["נַחוּם","nachûm","nakh-oom'","From H5162; comfortable; Nachum, an Israelitish prophet: - Nahum."]},{"k":"H5152","v":["נָחוֹר","nâchôr","naw-khore'","From the same as H5170; snorer; Nachor, the name of the grandfather and a brother of Abraham: - Nahor."]},{"k":"H5153","v":["נָחוּשׁ","nâchûsh","naw-khoosh'","Apparently passive participle of H5172 (perhaps in the sense of ringing, that is, bell metal; or from the red color of the throat of a serpent (H5175, as denominative) when hissing); coppery, that is, (figuratively) hard: - of brass."]},{"k":"H5154","v":["נְחֻשָׁה    נְחוּשָׁה","nechûshâh    nechûshâh","nekh-oo-shaw', nekh-oo-shaw'","Feminine of H5153; copper: - brass, steel. Compare H5176."]},{"k":"H5155","v":["נְחִילָה","nechı̂ylâh","nekh-ee-law'","Probably denominative from H2485; a flute: - [plural] Nehiloth."]},{"k":"H5156","v":["נְחִיר","nechı̂yr","nekh-eer'","From the same as H5170; a nostril: - [dual] nostrils."]},{"k":"H5157","v":["נָחַל","nâchal","naw-khal'","A primitive root; to inherit (as a (figurative) mode of descent), or (generally) to occupy; causatively to bequeath, or (generally) distribute, instate: - divide, have ([inheritance]), take as an heritage, (cause to, give to, make to) inherit, (distribute for, divide [for, for an, by], give for, have, leave for, take [for]) inheritance, (have in, cause to be made to) possess (-ion)."]},{"k":"H5158","v":["נַחֲלָה    נַחְלָה    נַחַל","nachal    nachlâh    nachălâh","nakh'-al, nakh'-law, nakh-al-aw'","From H5157 in its original sense; a stream, especially a winter torrent; (by implication) a (narrow) valley (in which a brook runs); also a shaft (of a mine): - brook, flood, river, stream, valley."]},{"k":"H5159","v":["נַחֲלָה","nachălâh","nakh-al-aw'","From H5157 (in its usual sense); properly something inherited, that is, (abstractly) occupancy, or (concretely) an heirloom; generally an estate, patrimony or portion: - heritage, to inherit, inheritance, possession. Compare H5158."]},{"k":"H5160","v":["נַחֲלִיאֵל","nachălı̂y'êl","nakh-al-ee-ale'","From H5158 and H410; valley of God; Nachaliel, a place in the Desert: - Nahaliel."]},{"k":"H5161","v":["נֶחֱלָמִי","nechĕlâmı̂y","nekh-el-aw-mee'","Apparently a patronymic from an unused name (apparently passive participle of H2492); dreamed; a Nechelamite, or descendant of Nechlam: - Nehelamite."]},{"k":"H5162","v":["נָחַם","nâcham","naw-kham'","A primitive root; properly to sigh, that is, breathe strongly; by implication to be sorry, that is, (in a favorable sense) to pity, console or (reflexively) rue; or (unfavorably) to avenge (oneself): - comfort (self), ease [one’s self], repent (-er, -ing, self)."]},{"k":"H5163","v":["נַחַם","nacham","nakh'-am","From H5162; consolation; Nacham, an Israelite: - Naham."]},{"k":"H5164","v":["נֹחַם","nôcham","no'-kham","From H5162; ruefulness, that is, desistance: - repentance."]},{"k":"H5165","v":["נֶחָמָה","nechâmâh","nekh-aw-maw'","From H5162; consolation: - comfort."]},{"k":"H5166","v":["נְחֶמְיָה","nechemyâh","nekh-em-yaw'","From H5162 and H3050; consolation of Jah; Nechemjah, the name of three Israelites: - Nehemiah."]},{"k":"H5167","v":["נַחֲמָנִי","nachămânı̂y","nakh-am-aw-nee'","From H5162; consolatory; Nachamani, an Israelite: - Nahamani."]},{"k":"H5168","v":["נַחְנוּ","nachnû","nakh-noo'","For H587; we: - we."]},{"k":"H5169","v":["נָחַץ","nâchats","naw-khats'","A primitive root; to be urgent: - require haste."]},{"k":"H5170","v":["נַחֲרָה    נַחַר","nachar    nachărâh","nakh'-ar, nakh-ar-aw'","From an unused root meaning to snort or snore; a snorting: - nostrils, snorting."]},{"k":"H5171","v":["נַחְרַי    נַחֲרַי","nachăray    nachray","nakh-ar-ah'ee, nakh-rah'ee","From the same as H5170; snorer; Nacharai or Nachrai, an Israelite: - Naharai, Nahari."]},{"k":"H5172","v":["נָחַשׁ","nâchash","naw-khash'","A primitive root; properly to hiss, that is, whisper a (magic) spell; generally to prognosticate: -  X certainly, divine, enchanter, (use) X enchantment, learn by experience, X indeed, diligently observe."]},{"k":"H5173","v":["נַחַשׁ","nachash","nakh'-ash","From H5172; an incantation or augury: - enchantment."]},{"k":"H5174","v":["נְחָשׁ","nechâsh","nekh-awsh'","(Chaldee); corresponding to H5154; copper: - brass."]},{"k":"H5175","v":["נָחָשׁ","nâchâsh","naw-khawsh'","From H5172; a snake (from its hiss): - serpent."]},{"k":"H5176","v":["נָחָשׁ","nâchâsh","naw-khawsh'","The same as H5175; Nachash, the name of two persons apparently non Israelites: - Nahash."]},{"k":"H5177","v":["נַחְשׁוֹן","nachshôn","nakh-shone'","From H5172; enchanter; Nachshon, an Israelite: - Naashon, Nahshon."]},{"k":"H5178","v":["נְחֹשֶׁת","nechôsheth","nekh-o'-sheth","For H5154; copper; hence, something made of that metal, that is, coin, a fetter; figuratively base (as compared with gold or silver): - brasen, brass, chain, copper, fetter (of brass), filthiness, steel."]},{"k":"H5179","v":["נְחֻשְׁתָּא","nechûshtâ'","nekh-oosh-taw'","From H5178; copper; Nechushta, an Israelitess: - Nehushta."]},{"k":"H5180","v":["נְחֻשְׁתָּן","nechûshtân","nekh-oosh-tawn'","From H5178; something made of copper, that is, the copper serpent of the Desert: - Nehushtan."]},{"k":"H5181","v":["נָחַת","nâchath","naw-khath'","A primitive root; to sink, that is, descend; causatively, to press or lead down: - be broken, (cause to) come down, enter, go down, press sore, settle, stick fast."]},{"k":"H5182","v":["נְחַת","nechath","nekh-ath'","(Chaldee); corresponding to H5181; to descend; causatively, to bring away, deposit, depose: - carry, come down, depose, lay up, place."]},{"k":"H5183","v":["נַחַת","nachath","nakh'-ath","From H5182; a descent, that is, imposition, unfavorable (punishment) or favorable (food); also (intransitively; perhaps from H5117), restfulness: - lighting down, quiet (-ness), to rest, be set on."]},{"k":"H5184","v":["נַחַת","nachath","nakh'-ath","The same as H5183; quiet; Nachath, the name of an Edomite and of two Israelites: - Nahath."]},{"k":"H5185","v":["נָחֵת","nâchêth","naw-khayth'","From H5181; descending: - come down."]},{"k":"H5186","v":["נָטָה","nâṭâh","naw-taw'","A primitive root; to stretch or spread out; by implication to bend away (including moral deflection); used in a great variety of applications: -    + afternoon, apply, bow (down, -ing), carry aside, decline, deliver, extend, go down, be gone, incline, intend, lay, let down, offer, outstretched, overthrown, pervert, pitch, prolong, put away, shew, spread (out), stretch (forth, out), take (aside), turn (aside, away), wrest, cause to yield."]},{"k":"H5187","v":["נְטִיל","neṭı̂yl","net-eel'","From H5190; laden: - that bear."]},{"k":"H5188","v":["נְטִיפָה","neṭı̂yphâh","net-ee-faw'","From H5197; a pendant for the ears (especially of pearls): - chain, collar."]},{"k":"H5189","v":["נְטִישָׁה","neṭı̂yshâh","net-ee-shaw'","From H5203; a tendril (as an offshoot): - battlement, branch, plant."]},{"k":"H5190","v":["נָטַל","nâṭal","naw-tal'","A primitive root; to lift; by implication to impose: - bear, offer, take up."]},{"k":"H5191","v":["נְטַל","neṭal","net-al'","(Chaldee); corresponding to H5190; to raise: - take up."]},{"k":"H5192","v":["נֵטֶל","nêṭel","nay'-tel","From H5190; a burden: - weighty."]},{"k":"H5193","v":["נָטַע","nâṭa‛","naw-tah'","A primitive root; properly to strike in, that is, fix; specifically to plant (literally or figuratively): - fastened, plant (-er)."]},{"k":"H5194","v":["נֶטַע","neṭa‛","neh'-tah","From H5193; a plant; collectively, a plantation; abstractly, a planting: - plant."]},{"k":"H5195","v":["נָטִיעַ","nâṭı̂ya‛","naw-tee'-ah","From H5193; a plant: - plant."]},{"k":"H5196","v":["נְטָעִים","neṭâ‛ı̂ym","net-aw-eem'","Plural of H5194; Netaim, a place in Palestine: - plants."]},{"k":"H5197","v":["נָטַף","nâṭaph","naw-taf'","A primitive root; to ooze, that is, distil gradually; by implication to fall in drops; figuratively to speak by inspiration: - drop (-ping), prophesy (-et)."]},{"k":"H5198","v":["נָטָף","nâṭâph","naw-tawf'","From H5197; a drop; specifically, an aromatic gum (probably stacte): - drop, stacte."]},{"k":"H5199","v":["נְטֹפָה","neṭôphâh","net-o-faw'","From H5197; distillation; Netophah, a place in Palestine: - Netophah."]},{"k":"H5200","v":["נְטֹפָתִי","neṭôphâthı̂y","net-o-faw-thee'","Patronymic from H5199; a Netophathite, or inhabitant of Netophah: - Netophathite."]},{"k":"H5201","v":["נָטַר","nâṭar","naw-tar'","A primitive root; to guard; figuratively, to cherish (anger): - bear grudge, keep (-er), reserve."]},{"k":"H5202","v":["נְטַר","neṭar","net-ar'","(Chaldee); corresponding to H5201; to retain: - keep."]},{"k":"H5203","v":["נָטַשׁ","nâṭash","naw-tash'","A primitive root; properly to pound, that is, smite; by implication (as if beating out, and thus expanding) to disperse; also, to thrust off, down, out or upon (including reject, let alone, permit, remit, etc.): - cast off, drawn, let fall, forsake, join [battle], leave (off), lie still, loose, spread (self) abroad, stretch out, suffer."]},{"k":"H5204","v":["נִי","nı̂y","nee","A doubtful word; apparently from H5091; lamentation: - wailing."]},{"k":"H5205","v":["נִיד","nı̂yd","need","From H5110; motion (of the lips in speech): - moving."]},{"k":"H5206","v":["נִידָה","nı̂ydâh","nee-daw'","Feminine of H5205; removal, that is, exile: - removed."]},{"k":"H5207","v":["נִיחֹחַ    נִיחוֹחַ","nı̂ychôach    nı̂ychôach","nee-kho'-akh, nee-kho'-akh","From H5117; properly restful, that is, pleasant; abstractly delight: - sweet (odour)."]},{"k":"H5208","v":["נִיחֹחַ    נִיחוֹחַ","nı̂ychôach    nı̂ychôach","nee-kho'-akh, nee-kho'-akh","(Chaldee); corresponding to H5207; pleasure: - sweet odour (savour)."]},{"k":"H5209","v":["נִין","nı̂yn","neen","From H5125; progeny: - son."]},{"k":"H5210","v":["נִינְוֵה","nı̂ynevêh","nee-nev-ay'","Of foreign origin; Nineveh, the capital of Assyria: - Nineveh."]},{"k":"H5211","v":["נִיס","nı̂ys","neece","From H5127; fugitive: - that fleeth."]},{"k":"H5212","v":["נִיסָן","nı̂ysân","nee-sawn'","Probably of foreign origin; Nisan, the first month of the Jewish sacred year: - Nisan."]},{"k":"H5213","v":["נִיצוֹץ","nı̂ytsôts","nee-tsotes'","From H5340; a spark: - spark."]},{"k":"H5214","v":["נִיר","nı̂yr","neer","A root probably identical with that of H5216, through the idea of the gleam of a fresh furrow; to till the soil: - break up."]},{"k":"H5215","v":["נִר    נִיר","nı̂yr    nir","neer, neer","From H5214; properly ploughing, that is, (concretely) freshly ploughed land: - fallow ground, ploughing, tillage."]},{"k":"H5216","v":["נֵרָה    נֵר    נֵיר    נִר    נִיר","nı̂yr    nir    nêyr    nêr    nêrâh","neer, neer, nare, nare, nay-raw'","From a primitive root (see H5214 and H5135) properly meaning to glisten; a lamp (that is, the burner) or light (literally or figuratively): - candle, lamp, light."]},{"k":"H5217","v":["נָכָא","nâkâ'","naw-kaw'","A primitive root; to smite, that is, drive away: - be viler."]},{"k":"H5218","v":["נָכָא    נָכֵא","nâkê'    nâkâ'","naw-kay', naw-kaw'","From H5217; smitten, that is, (figuratively) afflicted: - broken, stricken, wounded."]},{"k":"H5219","v":["נְכאֹת","nek'ôth","nek-ohth'","From H5218; properly a smiting, that is, (concretely) an aromatic gum (perhaps styrax), (as powdered): - spicery (-ces)."]},{"k":"H5220","v":["נֶכֶד","neked","neh'-ked","From an unused root meaning to propagate; offspring: - nephew, son’s son."]},{"k":"H5221","v":["נָכָה","nâkâh","naw-kaw'","A primitive root; to strike (lightly or severely, literally or figuratively): -    beat, cast forth, clap, give [wounds], X go forward, X indeed, kill, make [slaughter], murderer, punish, slaughter, slay (-er, -ing), smite (-r, -ing), strike, be stricken, (give) stripes, X surely, wound."]},{"k":"H5222","v":["נֵכֶה","nêkeh","nay-keh'","From H5221; a smiter, that is, (figuratively) traducer: - abject."]},{"k":"H5223","v":["נָכֶה","nâkeh","naw-keh'","smitten, that is, (literally) maimed, or (figuratively) dejected: - contrite, lame."]},{"k":"H5224","v":["נְכוֹ","nekô","nek-o'","Probably of Egyptian origin; Neko an Egyptian king: - Necho. Compare H6549."]},{"k":"H5225","v":["נָכוֹן","nâkôn","naw-kone'","From H3559; prepared; Nakon, probably an Israelite: - Nachon."]},{"k":"H5226","v":["נֵכַח","nêkach","nay'-kakh","From an unused root meaning to be straightforward; properly the fore part; used adverbially, opposite: - before, over against."]},{"k":"H5227","v":["נֹכַח","nôkach","no'-kakh","From the same as H5226; properly, the front part; used adverbially (especially with a preposition), opposite, in front of, forward, in behalf of: - (over) against, before, direct [-ly], for, right (on)."]},{"k":"H5228","v":["נָכֹחַ","nâkôach","naw-ko'-akh","From the same as H5226; straightforward, that is, (figuratively), equitable, correct, or (abstractly), integrity: - plain, right, uprightness."]},{"k":"H5229","v":["נְכֹחָה","nekôchâh","nek-o-khaw'","Feminine of H5228; properly straight forwardness, that is, (figuratively) integrity, or (concretely) a truth: - equity, right (thing), uprightness."]},{"k":"H5230","v":["נָכַל","nâkal","naw-kal'","A primitive root; to defraud, that is, act treacherously: - beguile, conspire, deceiver, deal subtilly."]},{"k":"H5231","v":["נֵכֶל","nêkel","nay'-kel","From H5230; deceit: - wile."]},{"k":"H5232","v":["נְכַס","nekas","nek-as'","(Chaldee); corresponding to H5233: - goods."]},{"k":"H5233","v":["נֶכֶס","nekes","neh'-kes","From an unused root meaning to accumulate; treasure: - riches, wealth."]},{"k":"H5234","v":["נָכַר","nâkar","naw-kar'","A primitive root; properly to scrutinize, that is, look intently at; hence (with recognition implied), to acknowledge, be acquainted with, care for, respect, revere, or (with suspicion implied), to disregard, ignore, be strange toward, reject, resign, dissimulate (as if ignorant or disowning): - acknowledge, X could, deliver, discern, dissemble, estrange, feign self to be another, know, take knowledge (notice), perceive, regard, (have) respect, behave (make) self strange (-ly)."]},{"k":"H5235","v":["נֹכֶר    נֶכֶר","neker    nôker","neh'-ker, no'-ker","From H5234; something strange, that is, unexpected calamity: - strange."]},{"k":"H5236","v":["נֵכָר","nêkâr","nay-kawr'","From H5234; foreign, or (concretely) a foreigner, or (abstractly) heathendom: - alien, strange (+ -er)."]},{"k":"H5237","v":["נָכְרִי","nokrı̂y","nok-ree'","From H5235 (second form); strange, in a variety of degrees and applications (foreign, non-relative, adulterous, different, wonderful): - alien, foreigner, outlandish, strange (-r, woman)."]},{"k":"H5238","v":["נְכֹת","nekôth","nek-oth'","Probably for H5219; spicery, that is, (generally) valuables: - precious things."]},{"k":"H5239","v":["נָלָה","nâlâh","naw-law'","Apparently a primitive root; to complete: - make an end."]},{"k":"H5240","v":["נְמִבְזֶה","nemibzeh","nem-ib-zeh'","From H959; despised: - vile."]},{"k":"H5241","v":["נְמוּאֵל","nemû'êl","nem-oo-ale'","Apparently for H3223; Nemuel, the name of two Israelites: - Nemuel."]},{"k":"H5242","v":["נְמוּאֵלִי","nemû'êlı̂y","nem-oo-ay-lee'","From H5241; a Nemuelite, or descendant of Nemuel: - Nemuelite."]},{"k":"H5243","v":["נָמַל","nâmal","naw-mal'","A primitive root; to become clipped or (specifically) circumcised: - (branch to) be cut down (off), circumcise."]},{"k":"H5244","v":["נְמָלָה","nemâlâh","nem-aw-law'","Feminine from H5243; an ant (probably from its almost bisected form): - ant."]},{"k":"H5245","v":["נְמַר","nemar","nem-ar'","(Chaldee); corresponding to H5246: - leopard."]},{"k":"H5246","v":["נָמֵר","nâmêr","naw-mare'","From an unused root meaning properly to filtrate, that is, be limpid (compare H5247 and H5249); and thus to spot or stain as if by dripping; a leopard (from its stripes): - leopard."]},{"k":"H5247","v":["נִמְרָה","nimrâh","nim-raw'","From the same as H5246; clear water; Nimrah, a place East of the Jordan: - Nimrah. See also H1039, H5249."]},{"k":"H5248","v":["נִמְרֹד     נִמְרוֹד","nimrôd    nimrôd","nim-rode', nim-rode'","Probably of foreign origin; Nimrod, a son of Cush: - Nimrod."]},{"k":"H5249","v":["נִמְרִים","nimrı̂ym","nim-reem'","Plural of a masculine corresponding to H5247; clear waters; Nimrim, a place East of the Jordan: - Nimrim. Compare H1039."]},{"k":"H5250","v":["נִמְשִׁי","nimshı̂y","nim-shee'","Probably from H4871; extricated; Nimshi, the (grand-) father of Jehu: - Nimshi."]},{"k":"H5251","v":["נֵס","nês","nace","From H5264; a flag; also a sail; by implication a flagstaff; generally a signal; figuratively a token: - banner, pole, sail, (en-) sign, standard."]},{"k":"H5252","v":["נְסִבָּה","nesibbâh","nes-ib-baw'","Feminine participle passive of H5437; properly an environment, that is, circumstance or turn of affairs: - cause."]},{"k":"H5253","v":["נָסַג","nâsag","naw-sag'","A primitive root; to retreat: - departing away, remove, take (hold), turn away."]},{"k":"H5254","v":["נָסָה","nâsâh","naw-saw'","A primitive root; to test; by implication to attempt: - adventure, assay, prove, tempt, try."]},{"k":"H5255","v":["נָסַח","nâsach","naw-sakh'","A primitive root; to tear away: - destroy, pluck, root."]},{"k":"H5256","v":["נְסַח","nesach","nes-akh'","(Chaldee); corresponding to H5255: - pull down."]},{"k":"H5257","v":["נְסִיךְ","nesı̂yk","nes-eek'","From H5258; properly something poured out, that is, a libation; also a molten image; by implication a prince (as anointed): - drink offering, duke, prince (-ipal)."]},{"k":"H5258","v":["נָסַךְ","nâsak","naw-sak'","A primitive root; to pour out, especially a libation, or to cast (metal); by analogy to anoint a king: - cover, melt, offer, (cause to) pour (out), set (up)."]},{"k":"H5259","v":["נָסַךְ","nâsak","naw-sak'","A primitive root (probably identical with H5258 through the idea of fusion); to interweave, that is, (figuratively) to overspread: - that is spread."]},{"k":"H5260","v":["נְסַךְ","nesak","nes-ak'","(Chaldee); corresponding to H5258; to pour out a libation: - offer."]},{"k":"H5261","v":["נְסַךְ","nesak","nes-ak'","(Chaldee); corresponding to H5262; a libation: - drink offering."]},{"k":"H5262","v":["נֵסֶךְ    נֶסֶךְ","nesek    nêsek","neh'-sek, nay'-sek","From H5258; a libation; also a cast idol: - cover, drink offering, molten image."]},{"k":"H5263","v":["נָסַס","nâsas","naw-sas'","A primitive root; to wane, that is, be sick."]},{"k":"H5264","v":["נָסַס","nâsas","naw-sas'","A primitive root; to gleam from afar, that is, to be conspicuous as a signal; or rather perhaps a denominative from H5251 (and identical with H5263, through the idea of a flag as fluttering in the wind); to raise a beacon: - lift up as an ensign, standard bearer."]},{"k":"H5265","v":["נָסַע","nâsa‛","naw-sah'","A primitive root; properly to pull up, especially the tent pins, that is, start on a journey: - cause to blow, bring, get, (make to) go (away, forth, forward, onward, out), (take) journey, march, remove, set aside (forward), X still, be on his (go their) way."]},{"k":"H5266","v":["נָסַק","nâsaq","naw-sak'","A primitive root; to go up: - ascend."]},{"k":"H5267","v":["נְסַק","nesaq","nes-ak'","(Chaldee); corresponding to H5266: - take up."]},{"k":"H5268","v":["נִסְרֹךְ","nisrôk","nis-roke'","Of foreign origin; Nisrok, a Babylonian idol: - Nisroch."]},{"k":"H5269","v":["נֵעָה","nê‛âh","nay-aw'","From H5128; motion; Neah, a place in Palestine: - Neah."]},{"k":"H5270","v":["נֹעָה","nô‛âh","no-aw'","From H5128; movement; Noah, an Israelitess: - Noah."]},{"k":"H5271","v":["נְעֻרָה    נָעֻר    נָעוּר","nâ‛ûr    nâ‛ûr    ne‛ûrâh","naw-oor', naw-oor', neh-oo-raw'","Properly passive participle from H5288 as denominative; (only in plural collectively or emphatically) youth, the state (juvenility) or the persons (young people): - childhood, youth."]},{"k":"H5272","v":["נְעִיאֵל","ne‛ı̂y'êl","neh-ee-ale'","From H5128 and H410; moved of God; Neiel, a place in Palestine: - Neiel."]},{"k":"H5273","v":["נָעִים","nâ‛ı̂ym","naw-eem'","From H5276; delightful (objectively or subjectively, literally or figuratively): - pleasant (-ure), sweet."]},{"k":"H5274","v":["נָעַל","nâ‛al","naw-al'","A primitive root; properly to fasten up, that is, with a bar or cord; hence (denominatively from H5275), to sandal, that is, furnish with slippers: - bolt, inclose, lock, shod, shut up."]},{"k":"H5275","v":["נַעֲלָה    נַעַל","na‛al    na‛ălâh","nah'-al, nah-al-aw'","From H5274; properly a sandal tongue; by extension a sandal or slipper (sometimes as a symbol of occupancy, a refusal to marry, or of something valueless): - dryshod, (pair of) shoe ([-latchet], -s)."]},{"k":"H5276","v":["נָעֵם","nâ‛êm","naw-ame'","A primitive root; to be agreeable (literally or figuratively): - pass in beauty, be delight, be pleasant, be sweet."]},{"k":"H5277","v":["נַעַם","na‛am","nah'-am","From H5276; pleasure; Naam, an Israelite: - Naam."]},{"k":"H5278","v":["נֹעַם","nô‛am","no'-am","From H5276; agreeableness, that is, delight, suitableness, splendor or grace: - beauty, pleasant (-ness)."]},{"k":"H5279","v":["נַעֲמָה","na‛ămâh","nah-am-aw'","Feminine of H5277; pleasantness; Naamah, the name of an antediluvian woman, of an Ammonitess, and of a place in Palestine: - Naamah."]},{"k":"H5280","v":["נַעֲמִי","na‛ămı̂y","nah-am-ee'","Patronymic from H5283; a Naamanite, or descendant of Naaman (collectively): - Naamites."]},{"k":"H5281","v":["נָעֳמִי","no‛ŏmı̂y","no-om-ee'","From H5278; pleasant; Noomi, an Israelitess: - Naomi."]},{"k":"H5282","v":["נַעֲמָן","na‛ămân","nah-am-awn'","From H5276; pleasantness (plural as concrete): - pleasant."]},{"k":"H5283","v":["נַעֲמָן","na‛ămân","nah-am-awn'","The same as H5282; Naaman, the name of an Israelite and of a Damascene: - Naaman."]},{"k":"H5284","v":["נַעֲמָתִי","na‛ămâthı̂y","nah-am-aw-thee'","Patrial from a place corresponding in nmae (but not identical) with H5279; a Naamathite, or inhabitant of Naamah: - Naamathite"]},{"k":"H5285","v":["נַעֲצוּץ","na‛ătsûts","nah-ats-oots'","From an unused root meaning to prick; probably a brier; by implication a thicket of thorny bushes: - thorn."]},{"k":"H5286","v":["נָעַר","nâ‛ar","naw-ar'","A primitive root; to growl: - yell."]},{"k":"H5287","v":["נָעַר","nâ‛ar","naw-ar'","A primitive root (probably identical with H5286, through the idea of the rustling of mane, which usually accompanies the lion’s roar); to tumble about: - shake (off, out, self), overthrow, toss up and down."]},{"k":"H5288","v":["נַעַר","na‛ar","nah'-ar","From H5287; (concretely) a boy (as active), from the age of infancy to adolescence; by implication a servant; also (by interchange of sex), a girl (of similar latitude in age): - babe, boy, child, damsel [from the margin], lad, servant, young (man)."]},{"k":"H5289","v":["נַעַר","na‛ar","nah'-ar","From H5287 in its derived sense of tossing about; a wanderer: - young one."]},{"k":"H5290","v":["נֹעַר","nô‛ar","no'-ar","From H5287; (abstractly) boyhood (compare H5288): - child, youth."]},{"k":"H5291","v":["נַעֲרָה","na‛ărâh","nah-ar-aw'","Feminine of H5288; a girl (from infancy to adolescence): - damsel, maid (-en), young (woman)."]},{"k":"H5292","v":["נַעֲרָה","na‛ărâh","nah-ar-aw'","The same as H5291; Naarah, the name of an Israelitess, and of a place in Palestine: - Naarah, Naarath."]},{"k":"H5293","v":["נַעֲרַי","na‛ăray","nah-ar-ah'ee","From H5288; youthful; Naarai, an Israelite: - Naarai."]},{"k":"H5294","v":["נְעַרְיָה","ne‛aryâh","neh-ar-yaw'","From H5288 and H3050; servant of Jah; Nearjah, the name of two Israelites: - Neariah."]},{"k":"H5295","v":["נַעֲרָן","na‛ărân","nah-ar-awn'","From H5288; juvenile; Naaran, a place in Palestine: - Naaran."]},{"k":"H5296","v":["נְעֹרֶת","ne‛ôreth","neh-o'-reth","From H5287; something shaken out, that is, tow (as the refuse of flax): - tow."]},{"k":"H5297","v":["נֹף","nôph","nofe","A variation of H4644; Noph, the capital of Upper Egypt: - Noph."]},{"k":"H5298","v":["נֶפֶג","nepheg","neh'-feg","From an unused root probably meaning to spring forth; a sprout; Nepheg, the name of two Israelites: - Nepheg."]},{"k":"H5299","v":["נָפָה","nâphâh","naw-faw'","From H5130 in the sense of lifting; a height; also a sieve: - border, coast, region, sieve."]},{"k":"H5300","v":["נְפוּשְׁסִים","nephûshsı̂ym","nef-oo-shes-eem'","For H5304; Nephushesim, a Temple Servant: - Nephisesim [from the margin]."]},{"k":"H5301","v":["נָפַח","nâphach","naw-fakh'","A primitive root; to puff, in various applications (literally, to inflate, blow hard, scatter, kindle, expire; figuratively, to disesteem): - blow, breath, give up, cause to lose [life], seething, snuff."]},{"k":"H5302","v":["נֹפַח","nôphach","no'-fach","From H5301; a gust; Nophach, a place in Moab: - Nophah."]},{"k":"H5303","v":["נְפִל    נְפִיל","nephı̂yl    nephil","nef-eel', nef-eel'","From H5307; properly, a feller, that is, a bully or tyrant: - giant."]},{"k":"H5304","v":["נְפִיסִים","nephı̂ysı̂ym","nef-ee-seem'","Plural from an unused root meaning to scatter; expansions; Nephisim, a Temple Servant: - Nephusim [from the margin]."]},{"k":"H5305","v":["נָפִישׁ","nâphı̂ysh","naw-feesh'","From H5314; refreshed; Naphish, a son of Ishmael, and his posterity: - Naphish."]},{"k":"H5306","v":["נֹפֶךְ","nôphek","no'-fek","From an unused root meaning to glisten; shining; a gem, probably the garnet: - emerald."]},{"k":"H5307","v":["נָפַל","nâphal","naw-fal'","A primitive root; to fall, in a great variety of applications (intransitively or causatively, literally or figuratively): - be accepted, cast (down, self, [lots], out), cease, die, divide (by lot), (let) fail, (cause to, let, make, ready to) fall (away, down, -en, -ing), fell (-ing), fugitive, have [inheritamce], inferior, be judged [by mistake for H6419], lay (along), (cause to) lie down, light (down), be (X hast) lost, lying, overthrow, overwhelm, perish, present (-ed, -ing), (make to) rot, slay, smite out, X surely, throw down."]},{"k":"H5308","v":["נְפַל","nephal","nef-al'","(Chaldee); corresponding to H5307: - fall (down), have occasion."]},{"k":"H5309","v":["נֵפֶל    נֶפֶל","nephel    nêphel","neh'-fel, nay'-fel","From H5307; something fallen, that is, an abortion: - untimely birth."]},{"k":"H5310","v":["נָפַץ","nâphats","naw-fats'","A primitive root; to dash to pieces, or scatter: - be beaten in sunder, break (in pieces), broken, dash (in pieces), cause to be discharged, dispersed, be overspread, scatter."]},{"k":"H5311","v":["נֶפֶץ","nephets","neh'-fets","From H5310; a storm (as dispersing): - scattering."]},{"k":"H5312","v":["נְפַק","nephaq","nef-ak'","(Chaldee); a primitive root; to issue; causatively, to bring out: - come (go, take) forth (out)."]},{"k":"H5313","v":["נִפְקָא","niphqâ'","nif-kaw'","(Chaldee); from H5312; an outgo, that is, expense: - expense."]},{"k":"H5314","v":["נָפַשׁ","nâphash","naw-fash'","A primitive root; to breathe; passively, to be breathed upon, that is, (figuratively) refreshed (as if by a current of air): - (be) refresh selves (-ed)."]},{"k":"H5315","v":["נֶפֶשׁ","nephesh","neh'-fesh","From H5314; properly a breathing creature, that is, animal or (abstractly) vitality; used very widely in a literal, accommodated or figurative sense (bodily or mental): - any, appetite, beast, body, breath, creature, X dead (-ly), desire, X [dis-] contented, X fish, ghost, + greedy, he, heart (-y), (hath, X jeopardy of) life (X in jeopardy), lust, man, me, mind, mortality, one, own, person, pleasure, (her-, him-, my-, thy-) self, them (your) -selves, + slay, soul, + tablet, they, thing, (X she) will, X would have it."]},{"k":"H5316","v":["נֶפֶת","nepheth","neh'-feth","For H5299; a height: - country."]},{"k":"H5317","v":["נֹפֶת","nôpheth","no'-feth","From H5130 in the sense of shaking to pieces; a dripping that is, of honey (from the comb): - honeycomb."]},{"k":"H5318","v":["נֶפְתּוֹחַ","nephtôach","nef-to'-akh","From H6605; opened, that is, a spring; Nephtoach, a place in Palestine: - Neptoah."]},{"k":"H5319","v":["נַפְתּוּל","naphtûl","naf-tool'","From H6617; properly wrestled; but used (in the plural) transitively, a struggle: - wrestling."]},{"k":"H5320","v":["נַפְתֻּחִים","naphtûchı̂ym","naf-too-kheem'","Plural of foreign origin; Naphtuchim, an Egyptian tribe: - Naptuhim."]},{"k":"H5321","v":["נַפְתָּלִי","naphtâlı̂y","naf-taw-lee'","From H6617; my wrestling; Naphtali, a son of Jacob, with the tribe descended from him, and its territory: - Naphtali."]},{"k":"H5322","v":["נֵץ","nêts","nayts","From H5340; a flower (from its brilliancy); also a hawk (from its flashing speed): - blossom, hawk."]},{"k":"H5323","v":["נָצָא","nâtsâ'","naw-tsaw'","A primitive root; to go away: - flee."]},{"k":"H5324","v":["נָצַב","nâtsab","naw-tsab'","A primitive root; to station, in various applications (literally or figuratively): - appointed, deputy, erect, establish, X Huzzah [by mistake for a proper name], lay, officer, pillar, present, rear up, set (over, up), settle, sharpen, stablish, (make to) stand (-ing, still, up, upright), best state."]},{"k":"H5325","v":["נִצָּב","nitstsâb","nits-tsawb'","Passive participle of H5324; fixed, that is, a handle: - haft."]},{"k":"H5326","v":["נִצְבָּה","nitsbâh","nits-baw'","(Chaldee); from a root corresponding to H5324; fixedness, that is, firmness: - strength."]},{"k":"H5327","v":["נָצָה","nâtsâh","naw-tsaw'","A primitive root; properly to go forth, that is, (by implication) to be expelled, and (consequently) desolate; causatively to lay waste; also (specifically), to quarrel: - be laid waste, ruinous, strive (together)."]},{"k":"H5328","v":["נִצָּה","nitstsâh","nits-tsaw'","Feminine of H5322; a blossom: - flower."]},{"k":"H5329","v":["נָצַח","nâtsach","naw-tsakh'","A primitive root; properly to glitter from afar, that is, to be eminent (as a superintendent, especially of the Temple services and its music); also (as denominative from H5331), to be permanent: - excel, chief musician (singer), oversee (-r), set forward."]},{"k":"H5330","v":["נְצַח","netsach","nets-akh'","(Chaldee); corresponding to H5329; to become chief: - be preferred."]},{"k":"H5331","v":["נֵצַח    נֶצַח","netsach    nêtsach","neh'-tsakh, nay'-tsakh","From H5329; properly a goal, that is, the bright object at a distance travelled towards; hence (figuratively), splendor, or (subjectively) truthfulness, or (objectively) confidence; but usually (adverbially), continually (that is, to the most distant point of view): - alway (-s), constantly, end, (+ n-) ever (more), perpetual, strength, victory."]},{"k":"H5332","v":["נֵצַח","nêtsach","nay'-tsakh","Probably identical with H5331, through the idea of brilliancy of color; juice of the grape (as blood red): - blood, strength."]},{"k":"H5333","v":["נְצִב    נְצִיב","netsı̂yb    netsib","nets-eeb', nets-eeb'","From H5324; something stationary, that is, a prefect, a military post, a statue: - garrison, officer, pillar."]},{"k":"H5334","v":["נְצִיב","netsı̂yb","nets-eeb'","The same as H5333; station; Netsib, a place in Palestine: - Nezib."]},{"k":"H5335","v":["נְצִיחַ","netsı̂yach","nets-ee'-akh","From H5329; conspicuous; Netsiach, a Temple Servant: - Neziah."]},{"k":"H5336","v":["נָצִיר","nâtsı̂yr","naw-tsere'","From H5341; properly conservative; but used passively, delivered: - preserved."]},{"k":"H5337","v":["נָצַל","nâtsal","naw-tsal'","A primitive root; to snatch away, whether in a good or a bad sense: -    X at all, defend, deliver (self), escape, X without fail, part, pluck, preserve, recover, rescue, rid, save, spoil, strip, X surely, take (out)."]},{"k":"H5338","v":["נְצַל","netsal","nets-al'","(Chaldee); corresponding to H5337; to extricate: - deliver, rescue."]},{"k":"H5339","v":["נִצָּן","nitstsân","nits-tsawn'","From H5322; a blossom: - flower."]},{"k":"H5340","v":["נָצַץ","nâtsats","naw-tsats'","A primitive root; to glare, that is, be bright colored: - sparkle."]},{"k":"H5341","v":["נָצַר","nâtsar","naw-tsar'","A primitive root; to guard, in a good sense (to protect, maintain, obey, etc.) or a bad one (to conceal, etc.): - besieged, hidden thing, keep (-er, -ing), monument, observe, preserve (-r), subtil, watcher (-man)."]},{"k":"H5342","v":["נֵצֶר","nêtser","nay'-tser","From H5341 in the sense of greenness as a striking color; a shoot; figuratively, a descendant: - branch."]},{"k":"H5343","v":["נְקֵא","neqê'","nek-ay'","(Chaldee); from a root corresponding to H5352; clean: - pure."]},{"k":"H5344","v":["נָקַב","nâqab","naw-kab'","A primitive root; to puncture, literally (to perforate, with more or less violence) or figuratively (to specify, designate, libel): - appoint, blaspheme, bore, curse, express, with holes, name, pierce, strike through."]},{"k":"H5345","v":["נֶקֶב","neqeb","nek'-keb","A bezel (for a gem): - pipe."]},{"k":"H5346","v":["נֶקֶב","neqeb","nek'-keb","The same as H5345; dell; Nekeb, a place in Palestine: - Nekeb."]},{"k":"H5347","v":["נְקֵבָה","neqêbâh","nek-ay-baw'","From H5344; female (from the sexual form): - female, woman."]},{"k":"H5348","v":["נָקֹד","nâqôd","naw-kode'","From an unused root meaning to mark (by puncturing or branding); spotted: - speckled."]},{"k":"H5349","v":["נֹקֵד","nôqêd","no-kade'","Active participle from the same as H5348; a spotter (of sheep or cattle), that is, the owner or tender (who thus marks them): - herdman, sheepmaster."]},{"k":"H5350","v":["נִקֻּד","niqqûd","nik-kood'","From the same as H5348; a crumb (as broken to spots); also a biscuit (as pricked): - cracknel, mouldy."]},{"k":"H5351","v":["נְקֻדָּה","neqûddâh","nek-ood-daw'","Feminine of H5348; a boss: - stud."]},{"k":"H5352","v":["נָקָה","nâqâh","naw-kaw'","A primitive root; to be (or make) clean (literally or figuratively); by implication (in an adverse sense) to be bare, that is, extirpated: - acquit X at all, X altogether, be blameless, cleanse, (be) clear (-ing), cut off, be desolate, be free, be (hold) guiltless, be (hold) innocent, X by no means, be quit, be (leave) unpunished, X utterly, X wholly."]},{"k":"H5353","v":["נְקוֹדָא","neqôdâ'","nek-o-daw'","Feminine of H5348 (in the figuratively sense of marked); distinction; Nekoda, a Temple Servant: - Nekoda."]},{"k":"H5354","v":["נָקַט","nâqaṭ","naw-kat'","A primitive root; to loathe: - weary."]},{"k":"H5355","v":["נָקִיא    נָקִי","nâqı̂y    nâqı̂y'","naw-kee', naw-kee'","From H5352; innocent: - blameless, clean, clear, exempted, free, guiltless, innocent, quit."]},{"k":"H5356","v":["נִקָּיֹן    נִקָּיוֹן","niqqâyôn    niqqâyôn","nik-kaw-yone', nik-kaw-yone'","From H5352; clearness (literally or figuratively): - cleanness, innocency."]},{"k":"H5357","v":["נָקִיק","nâqı̂yq","naw-keek'","From an unused root meaning to bore; a cleft: - hole."]},{"k":"H5358","v":["נָקַם","nâqam","naw-kam'","A primitive root; to grudge, that is, avenge or punish: - avenge (-r, self), punish, revenge (self), X surely, take vengeance."]},{"k":"H5359","v":["נָקָם","nâqâm","naw-kawm'","From H5358; revenge: -  + avenged, quarrel, vengeance."]},{"k":"H5360","v":["נְקָמָה","neqâmâh","nek-aw-maw'","Feminine of H5359; avengement, whether the act or the passion: -    + avenge, revenge (-ing), vengeance."]},{"k":"H5361","v":["נָקַע","nâqa‛","naw-kah'","A primitive root; to feel aversion: - be alienated."]},{"k":"H5362","v":["נָקַף","nâqaph","naw-kaf'","A primitive root; to strike with more or less violence (beat, fell, corrode); by implication (of attack) to knock together, that is, surround or circulate: - compass (about, -ing), cut down, destroy, go round (about), inclose, round."]},{"k":"H5363","v":["נֹקֶף","nôqeph","no'-kef","From H5362; a threshing (of olives): - shaking."]},{"k":"H5364","v":["נִקְפָּה","niqpâh","nik-paw'","From H5362; probably a rope (as encircling): - rent."]},{"k":"H5365","v":["נָקַר","nâqar","naw-kar'","A primitive root; to bore (penetrate, quarry): - dig, pick out, pierce, put (thrust) out."]},{"k":"H5366","v":["נְקָרָה","neqârâh","nek-aw-raw'","From H5365; a fissure: - cleft, clift."]},{"k":"H5367","v":["נָקַשׁ","nâqash","naw-kash'","A primitive root; to entrap (with a noose), literally or figuratively: - catch. (lay a) snare."]},{"k":"H5368","v":["נְקַשׁ","neqash","nek-ash'","(Chaldee); corresponding to H5367; but used in the sense of H5362; to knock: - smote."]},{"k":"H5369","v":["נֵר","nêr","nare","The same as H5216; lamp; Ner, an Israelite: - Ner."]},{"k":"H5370","v":["נֵרְגַּל","nêrgal","nare-gal'","Of foreign origin; Nergal, a Cuthite deity: - Nergal."]},{"k":"H5371","v":["נֵרְגַּל    שַׁרְאֶצֶר","nêrgal shar'etser","nare-gal' shar-eh'-tser","From H5370 and H8272; Nergal-Sharetser, the name of two Babylonians: - Nergal-sharezer."]},{"k":"H5372","v":["נִרְגָּן","nirgân","neer-gawn'","From an unused root meaning to roll to pieces; a slanderer: - talebearer, whisperer."]},{"k":"H5373","v":["נֵרְדְּ","nêrd","nayrd","Of foreign origin; nard, an aromatic: - spikenard."]},{"k":"H5374","v":["נֵרִיָּהוּ    נֵרִיָּה","nêrı̂yâh    nêrı̂yâhû","nay-ree-yaw', nay-ree-yaw'-hoo","From H5216 and H3050; light of Jah; Nerijah, an Israelite: - Neriah."]},{"k":"H5375","v":["נָסָה    נָשָׂא","nâśâ'    nâsâh","naw-saw', naw-saw'","A primitive root; to lift, in a great variety of applications, literally and figuratively, absolutely and relatively: - accept, advance, arise, (able to, [armour], suffer to) bear (-er, up), bring (forth), burn, carry (away), cast, contain, desire, ease, exact, exalt (self), extol, fetch, forgive, furnish, further, give, go on, help, high, hold up, honourable (+ man), lade, lay, lift (self) up, lofty, marry, magnify, X needs, obtain, pardon, raise (up), receive, regard, respect, set (up), spare, stir up, + swear, take (away, up), X utterly, wear, yield."]},{"k":"H5376","v":["נְשָׂא","neśâ'","nes-aw'","(Chaldee); corresponding to H5375: - carry away, make insurrection, take."]},{"k":"H5377","v":["נָשָׁא","nâshâ'","naw-shaw'","A primitive root; to lead astray, that is, (mentally) to delude, or (morally) to seduce: - beguile, deceive, X greatly, X utterly."]},{"k":"H5378","v":["נָשָׁא","nâshâ'","naw-shaw'","A primitive root (perhaps identical with H5377, through the idea of imposition); to lend on interest; by implication to dun for debt: -    X debt, exact, give of usury."]},{"k":"H5379","v":["נִשֵּׂאת","niśśê'th","nis-sayth'","Passive participle feminine of H5375; something taken, that is, a present: - gift."]},{"k":"H5380","v":["נָשַׁב","nâshab","naw-shab'","A primitive root; to blow; by implication to disperse: -  (cause to) blow, drive away."]},{"k":"H5381","v":["נָשַׂג","nâśag","naw-sag'","A primitive root; to reach (literally or figuratively): - ability, be able, attain (unto), (be able to, can) get, lay at, put, reach, remove, wax rich, X surely, (over-) take (hold of, on, upon)."]},{"k":"H5382","v":["נָשָׁה","nâshâh","naw-shaw'","A primitive root; to forget; figuratively, to neglect; causatively, to remit, remove: - forget, deprive, exact."]},{"k":"H5383","v":["נָשָׁה","nâshâh","naw-shaw'","A primitive root (rather identical with H5382, in the sense of H5378); to lend or (by reciprocity) borrow on security or interest: - creditor, exact, extortioner, lend, usurer, lend on (taker of) usury."]},{"k":"H5384","v":["נָשֶׁה","nâsheh","naw-sheh'","From H5382, in the snese of failure; rheumatic or crippled (from the incident to Jacob): - which shrank."]},{"k":"H5385","v":["נְשֻׂאָה    נְשׂוּאָה","neśû'âh    neśû'âh","nes-oo-aw', nes-oo-aw'","Feminine passive participle of H5375; something borne, that is, a load: - carriage."]},{"k":"H5386","v":["נְשִׁי","neshı̂y","nesh-ee'","From H5383; a debt: - debt."]},{"k":"H5387","v":["נָשִׂא    נָשִׂיא","nâśı̂y'    nâśi'","naw-see', naw-see'","From H5375; properly an exalted one, that is, a king or sheik; also a rising mist: - captain, chief, cloud, governor, prince, ruler, vapour."]},{"k":"H5388","v":["נְשִׁיָּה","neshı̂yâh","nesh-ee-yaw'","From H5382; oblivion: - forgetfulness."]},{"k":"H5389","v":["נָשִׁין","nâshı̂yn","naw-sheen'","(Chaldee); irregular plural feminine of H606: - women."]},{"k":"H5390","v":["נְשִׁיקָה","neshı̂yqâh","nesh-ee-kaw'","From H5401; a kiss: - kiss."]},{"k":"H5391","v":["נָשַׁךְ","nâshak","naw-shak'","A primitive root; to strike with a sting (as a serpent); figuratively, to oppress with interest on a loan: - bite, lend upon usury."]},{"k":"H5392","v":["נֶשֶׁךְ","neshek","neh'-shek","From H5391; interest on a debt: - usury."]},{"k":"H5393","v":["נִשְׁכָּה","nishkâh","nish-kaw'","For H3957; a cell: - chamber."]},{"k":"H5394","v":["נָשַׁל","nâshal","naw-shal'","A primitive root; to pluck off, that is, divest, eject, or drop: - cast (out), drive, loose, put off (out), slip."]},{"k":"H5395","v":["נָשַׁם","nâsham","naw-sham'","A primitive root; properly to blow away, that is, destroy: - destroy."]},{"k":"H5396","v":["נִשְׁמָא","nishmâ'","nish-maw'","(Chaldee); corresponding to H5397; vital breath: - breath."]},{"k":"H5397","v":["נְשָׁמָה","neshâmâh","nesh-aw-maw'","From H5395; a puff, that is, wind, angry or vital breath, divine inspiration, intellect or (concretely) an animal: - blast, (that) breath (-eth), inspiration, soul, spirit."]},{"k":"H5398","v":["נָשַׁף","nâshaph","naw-shaf'","A primitive root; to breeze, that is, blow up fresh (as the wind): - blow."]},{"k":"H5399","v":["נֶשֶׁף","nesheph","neh'-shef","From H5398; properly a breeze, that is, (by implication) dusk (when the evening breeze prevails): - dark, dawning of the day (morning), night, twilight."]},{"k":"H5400","v":["נָשַׂק","nâśaq","naw-sak'","A primitive root; to catch fire: - burn, kindle."]},{"k":"H5401","v":["נָשַׁק","nâshaq","naw-shak'","A primitive root (identical with H5400, through the idea of fastening up; compare H2388 and H2836); to kiss, literally or figuratively (touch); also (as a mode of attachment), to equip with weapons: - armed (men), rule, kiss, that touched."]},{"k":"H5402","v":["נֵשֶׁק    נֶשֶׁק","nesheq    nêsheq","neh'-shek, nay'-shek","From H5401; military equipment, that is, (collectively) arms (offensive or defensive), or (concretely) an arsenal: - armed men, armour (-y), battle, harness, weapon."]},{"k":"H5403","v":["נְשַׁר","neshar","nesh-ar'","(Chaldee); corresponding to H5404; an eagle: - eagle."]},{"k":"H5404","v":["נֶשֶׁר","nesher","neh'-sher","From an unused root meaning to lacerate; the eagle (or other large bird of prey): - eagle."]},{"k":"H5405","v":["נָשַׁת","nâshath","naw-shath'","A primitive root; properly to eliminate, that is, (intransitively) to dry up: - fail."]},{"k":"H5406","v":["נִשְׁתְּוָן","nishtevân","nish-tev-awn'","Probably of Persian origin; an epistle: - letter."]},{"k":"H5407","v":["נִשְׁתְּוָן","nishtevân","nish-tev-awn'","(Chaldee); corresponding to H5406: - letter."]},{"k":"H5408","v":["נָתַח","nâthach","naw-thakh'","A primitive root; to dismember: - cut (in pieces), divide, hew in pieces."]},{"k":"H5409","v":["נֵתַח","nêthach","nay'-thakh","From H5408; a fragment: - part, piece."]},{"k":"H5410","v":["נְתִבָה    נְתִיבָה    נָתִיב","nâthı̂yb    nethı̂ybâh    nethibâh","naw-theeb', neth-ee-baw', neth-ee-baw'","From an unused root meaning to tramp; a (beaten) track: - path ([-way]), X travel [-er], way."]},{"k":"H5411","v":["נָתוּן    נָתִין","nâthı̂yn    nâthûn","naw-theen', naw-thoon'","The second form is the proper form, as passive participle; from H5414; one given, that is, (in the plural only) the Nethinim, or Temple Servants (as given up to that duty): - Nethinims."]},{"k":"H5412","v":["נְתִין","nethı̂yn","neth-een'","(Chaldee); corresponding to H5411: - Nethinims."]},{"k":"H5413","v":["נָתַךְ","nâthak","naw-thak'","A primitive root; to flow forth (literally or figuratively); by implication to liquefy: - drop, gather (together), melt, pour (forth, out)."]},{"k":"H5414","v":["נָתַן","nâthan","naw-than'","A primitive root; to give, used with great latitude of application (put, make, etc.): - add, apply, appoint, ascribe, assign, X avenge, X be ([healed]), bestow, bring (forth, hither), cast, cause, charge, come, commit consider, count, + cry, deliver (up), direct, distribute do, X doubtless, X without fail, fasten, frame, X get, give (forth, over, up), grant, hang (up), X have, X indeed, lay (unto charge, up), (give) leave, lend, let (out), + lie, lift up, make, + O that, occupy, offer, ordain, pay, perform, place, pour, print, X pull, put (forth), recompense, render, requite, restore, send (out), set (forth), shew, shoot forth (up). + sing, + slander, strike, [sub-] mit, suffer, X surely, X take, thrust, trade, turn, utter, + weep, X willingly, + withdraw, + would (to) God, yield."]},{"k":"H5415","v":["נְתַן","nethan","neth-an'","(Chaldee); corresponding to H5414; give: - bestow, give, pay."]},{"k":"H5416","v":["נָתָן","nâthân","naw-thawn'","From H5414; given; Nathan, the name of five Israelites: - Nathan."]},{"k":"H5417","v":["נְתַנְאֵל","nethan'êl","neth-an-ale'","From H5414 and H410; given of God; Nethanel, the name of ten Israelites: - Nethaneel."]},{"k":"H5418","v":["נְתַנְיָהוּ    נְתַנְיָה","nethanyâh    nethanyâhû","neth-an-yaw', neth-an-yaw'-hoo","From H5414 and H3050; given of Jah; Nethanjah, the name of four Israelites: - Nethaniah."]},{"k":"H5419","v":["נְתַן־מֶלֶךְ","nethan-melek","neth-an' meh'-lek","From H5414 and H4428; given of (the) king; Nethan-Melek, an Israelite: - Nathan-melech."]},{"k":"H5420","v":["נָתַס","nâthas","naw-thas'","A primitive root; to tear up: - mar."]},{"k":"H5421","v":["נָתַע","nâtha‛","naw-thah'","For H5422; to tear out: - break."]},{"k":"H5422","v":["נָתַץ","nâthats","naw-thats'","A primitive root; to tear down: - beat down, break down (out), cast down, destroy, overthrow, pull down, throw down."]},{"k":"H5423","v":["נָתַק","nâthaq","naw-thak'","A primitive root; to tear off: - break (off), burst, draw (away), lift up, pluck (away, off), pull (out), root out."]},{"k":"H5424","v":["נֶתֶק","netheq","neh'-thek","From H5423; scurf: - (dry) scall."]},{"k":"H5425","v":["נָתַר","nâthar","naw-thar'","A primitive root; to jump, that is, be violently agitated; causatively, to terrify, shake off, untie: - drive asunder, leap, (let) loose, X make, move, undo."]},{"k":"H5426","v":["נְתַר","nethar","neth-ar'","(Chaldee); corresponding to H5425: - shake off."]},{"k":"H5427","v":["נֶתֶר","nether","neh'-ther","From H5425; mineral potash (so called from effervescing with acid): - nitre."]},{"k":"H5428","v":["נָתַשׁ","nâthash","naw-thash'","A primitive root; to tear away: - destroy, forsake, pluck (out, up, by the roots), pull up, root out (up), X utterly."]},{"k":"H5429","v":["סְאָה","se'âh","seh-aw'","From an unused root meaning to define; a seah, or certain measure (as determinative) for grain: - measure."]},{"k":"H5430","v":["סְאוֹן","se'ôn","seh-own'","From H5431; perhaps a military boot (as a protection from mud): - battle."]},{"k":"H5431","v":["סָאַן","sâ'an","saw-an'","A primitive root; to be miry; used only as denominative from H5430; to shoe, that is, (active participle) a soldier shod: - warrior."]},{"k":"H5432","v":["סַאסְאָה","sa'se'âh","sah-seh-aw'","For H5429; measurement, that is, moderation: - measure."]},{"k":"H5433","v":["סָבָא","sâbâ'","saw-baw'","A primitive root; to quaff to satiety, that is, become tipsy: - drunkard, fill self, Sabean, [wine-] bibber."]},{"k":"H5434","v":["סְבָא","sebâ'","seb-aw'","Of foreign origin; Seba, a son of Cush, and the country settled by him: - Seba."]},{"k":"H5435","v":["סֹבֶא","sôbe'","so'-beh","From H5433; potation, concretely (wine), or abstractly (carousal): - drink, drunken, wine."]},{"k":"H5436","v":["סְבָאִי","sebâ'ı̂y","seb-aw-ee'","Patrial from H5434; a Sebaite, or inhabitant of Seba: - Sabean."]},{"k":"H5437","v":["סָבַב","sâbab","saw-bab'","A primitive root; to revolve, surround or border; used in various applications, literally and figuratively: - bring, cast, fetch, lead, make, walk, X whirl, X round about, be about on every side, apply, avoid, beset (about), besiege, bring again, carry (about), change, cause to come about, X circuit, (fetch a) compass (about, round), drive, environ, X on every side, beset (close, come, compass, go, stand) round about, remove, return, set, sit down, turn (self) (about, aside, away, back)."]},{"k":"H5438","v":["סִבָּה","sibbâh","sib-baw'","From H5437; a (providential) turn (of affairs): - cause."]},{"k":"H5439","v":["סְבִיבָה    סָבִיב","sâbı̂yb    sebı̂ybâh","saw-beeb', seb-ee-baw'","From H5437; (as noun) a circle, neighbor, or environs; but chiefly (as adverb, with or without preposition) around: - (place, round) about, circuit, compass, on every side."]},{"k":"H5440","v":["סָבַךְ","sâbak","saw-bak'","A primitive root; to entwine: - fold together, wrap."]},{"k":"H5441","v":["סֹבֶךְ","sôbek","so'-bek","From H5440; a copse: - thicket."]},{"k":"H5442","v":["סְבָךְ","sebâk","seb-awk'","From H5440; a copse: - thick (-et)."]},{"k":"H5443","v":["שַׂבְּכָא    סַבְּכָא","sabbekâ'    śabbekâ'","sab-bek-aw', sab-bek-aw'","(Chaldee); from a root corresponding to H5440; a lyre: - sackbut."]},{"k":"H5444","v":["סִבְּכַי","sibbekay","sib-bek-ah'ee","From H5440; copse like; Sibbecai, an Israelite: - Sibbecai, Sibbechai."]},{"k":"H5445","v":["סָבַל","sâbal","saw-bal'","A primitive root; to carry (literally or figuratively), or (reflexively) be burdensome; specifically to be gravid: - bear, be a burden, carry, strong to labour."]},{"k":"H5446","v":["סְבַל","sebal","seb-al'","(Chaldee); corresponding to H5445; to erect: - strongly laid."]},{"k":"H5447","v":["סֵבֶל","sêbel","say'-bel","From H5445; a load (literally or figuratively): - burden, charge."]},{"k":"H5448","v":["סֻבָּל    סֹבֶל","sôbel    sûbbâl","so'-bel, soob-bawl'","From H5445; a load (figuratively): - burden."]},{"k":"H5449","v":["סַבָּל","sabbâl","sab-bawl'","From H5445; a porter: - (to bear, bearer of) burden (s)."]},{"k":"H5450","v":["סְבָלָה","sebâlâh","seb-aw-law'","From H5447; porterage: - burden."]},{"k":"H5451","v":["סִבֹּלֶת","sibbôleth","sib-bo'-leth","For H7641; an ear of grain: - Sibboleth."]},{"k":"H5452","v":["סְבַר","sebar","seb-ar'","(Chaldee); a primitive root; to bear in mind, that is, hope: - think."]},{"k":"H5453","v":["סִבְרַיִם","sibrayim","sib-rah'-yim","Dual from a root corresponding to H5452; double hope; Sibrajim, a place in Syria: - Sibraim."]},{"k":"H5454","v":["סַבְתָּה    סַבְתָּא","sabtâ'    sabtâh","sab-taw', sab-taw'","Probably of foreign derivation; Sabta or Sabtah, the name of a son of Cush, and the country occupied by his posterity: - Sabta, Sabtah."]},{"k":"H5455","v":["סַבְתְּכָא","sabtekâ'","sab-tek-aw'","Probably of foreign derivation; Sabteca, the name of a son of Cush, and the region settled by him: - Sabtecha, Sabtechah."]},{"k":"H5456","v":["סָגַד","sâgad","saw-gad'","A primitive root; to prostrate oneself (in homage): - fall down."]},{"k":"H5457","v":["סְגִד","segid","seg-eed'","(Chaldee); corresponding to H5456: - worship."]},{"k":"H5458","v":["סְגוֹר","segôr","seg-ore'","From H5462; properly shut up, that is, the breast (as inclosing the heart); also gold (as generally shut up safely): - caul, gold."]},{"k":"H5459","v":["סְגֻלָּה","segûllâh","seg-ool-law'","Feminine passive participle of an unused root meaning to shut up; wealth (as closely shut up): - jewel, peculiar (treasure), proper good, special."]},{"k":"H5460","v":["סְגַן","segan","seg-an'","(Chaldee); corresponding to H5461: - governor."]},{"k":"H5461","v":["סָגָן","sâgân","saw-gawn'","From an unused root meaning to superintend; a proefect of a province: - prince, ruler."]},{"k":"H5462","v":["סָגַר","sâgar","saw-gar'","A primitive root; to shut up; figuratively to surrender: - close up, deliver (up), give over (up), inclose, X pure, repair, shut (in, self, out, up, up together), stop, X straitly."]},{"k":"H5463","v":["סְגַר","segar","seg-ar'","(Chaldee); corresponding to H5462: - shut up."]},{"k":"H5464","v":["סַגְרִיד","sagrı̂yd","sag-reed'","Probably from H5462 in the sense of sweeping away; a pouring rain: - very rainy."]},{"k":"H5465","v":["סַד","sad","sad","From an unused root meaning to estop; the stocks: - stocks."]},{"k":"H5466","v":["סָדִין","sâdı̂yn","saw-deen'","From an unused root meaning to envelop; a wrapper, that is, shirt: - fine linen, sheet."]},{"k":"H5467","v":["סְדֹם","sedôm","sed-ome'","From an unused root meaning to scorch; burnt (that is, volcanic or bituminous) district; Sedom, a place near the Dead Sea: - Sodom."]},{"k":"H5468","v":["סֶדֶר","seder","seh'-der","From an unused root meaning to arrange; order: - order."]},{"k":"H5469","v":["סַהַר","sahar","sah'-har","From an unused root meaning to be round; roundness: - round."]},{"k":"H5470","v":["סֹהַר","sôhar","so'-har","From the same as H5469; a dungeon (as surrounded by walls): - prison."]},{"k":"H5471","v":["סוֹא","sô'","so","Of foreign derivation; so, an Egyptian king: - So."]},{"k":"H5472","v":["סוּג","sûg","soog","A primitive root; properly to flinch, that is, (by implication) to go back, literally (to retreat) or figuratively (to apostatize): - backslider, drive, go back, turn (away, back)."]},{"k":"H5473","v":["סוּג","sûg","soog","A primitive root (probably rather identical with H5472 through the idea of shrinking from a hedge; compare H7735); to hem in, that is, bind: - set about."]},{"k":"H5474","v":["סוּגַר","sûgar","soo-gar'","From H5462; an inclosure, that is, cage (for an animal): - ward."]},{"k":"H5475","v":["סוֹד","sôd","sode","From H3245; a session, that is, company of persons (in close deliberation); by implication intimacy, consultation, a secret: - assembly, counsel, inward, secret (counsel)."]},{"k":"H5476","v":["סוֹדִי","sôdı̂y","so-dee'","From H5475; a confidant; Sodi, an Israelite: - Sodi."]},{"k":"H5477","v":["סוּחַ","sûach","soo'-akh","From an unused root meaning to wipe away; sweeping; Suach, an Israelite: - Suah."]},{"k":"H5478","v":["סוּחָה","sûchâh","soo-kahw'","From the same as H5477; something swept away, that is, filth: - torn."]},{"k":"H5479","v":["סוֹטַי","sôṭay","so-tah'ee","From H7750; roving; Sotai, one of the Nethinim: - Sotai."]},{"k":"H5480","v":["סוּךְ","sûk","sook","A primitive root; properly to smear over (with oil), that is, anoint: - anoint (self), X at all."]},{"k":"H5481","v":["סִיפֹנְיָא     סוּמְפֹּנְיָה    סוּמְפּוֹנְיָה","sûmpôneyâh    sûmpôneyâh    sı̂yphôneyâ'","(1,2) soom-po-neh-yaw', see-fo-neh-yaw'","(Chaldee); Of Greek origin [H4858]; a bagpipe (with a double pipe): - dulcimer."]},{"k":"H5482","v":["סְוֵן    סְוֵנָה    סְוֵנֵה","sevênêh    sevênâh sevên","sev-ay-nay', sev-ay'-naw, sev-ane'","Of Egyptian derivation; Seven, a place in Upper Egypt: - Syene."]},{"k":"H5483","v":["סֻס    סוּס","sûs    sûs","soos, soos","From an unused root meaning to skip (properly for joy); a horse (as leaping); also a swallow (from its rapid flight): - crane, horse ([-back, -hoof]). Compare H6571."]},{"k":"H5484","v":["סוּסָה","sûsâh","soo-saw'","Feminine of H5483; a mare: - company of horses."]},{"k":"H5485","v":["סוּסִי","sûsı̂y","soo-see'","From H5483; horse like; Susi, an Israelite: - Susi."]},{"k":"H5486","v":["סוּף","sûph","soof","A primitive root; to snatch away, that is, terminate: - consume, have an end, perish, X be utterly."]},{"k":"H5487","v":["סוּף","sûph","soof","(Chaldee); corresponding to H5486; to come to an end: - consumme, fulfil."]},{"k":"H5488","v":["סוּף","sûph","soof","Probably of Egyptian origin; a reed, especially the papyrus: - flag. Red [sea], weed. Compare H5489."]},{"k":"H5489","v":["סוּף","sûph","soof","For H5488 (by ellipsis of H3220); the Reed (Sea): - Red sea."]},{"k":"H5490","v":["סוֹף","sôph","sofe","From H5486; a termination: - conclusion, end, hinder part."]},{"k":"H5491","v":["סוֹף","sôph","sofe","(Chaldee); corresponding to H5490: - end."]},{"k":"H5492","v":["סוּפָה","sûphâh","soo-faw'","From H5486; a hurricane: - Red Sea, storm, tempest, whirlwind, Red sea."]},{"k":"H5493","v":["שׂוּר    סוּר","sûr    śûr","soor, soor","A primitive root; to turn off (literally or figuratively): - be [-head], bring, call back, decline, depart, eschew, get [you], go (aside), X grievous, lay away (by), leave undone, be past, pluck away, put (away, down), rebel, remove (to and fro), revolt, X be sour, take (away, off), turn (aside, away, in), withdraw, be without."]},{"k":"H5494","v":["סוּר","sûr","soor","Probably passive participle of H5493; turned off, that is, deteriorated: - degenerate."]},{"k":"H5495","v":["סוּר","sûr","soor","The same as H5494; Sur, a gate of the Temple: - Sur."]},{"k":"H5496","v":["סוּת","sûth","sooth","Perhaps denominative from H7898; properly to prick, that is, (figuratively) stimulate; by implication to seduce: - entice, move, persuade, provoke, remove, set on, stir up, take away."]},{"k":"H5497","v":["סוּת","sûth","sooth","Probably from the same root as H4533; covering, that is, clothing: - clothes."]},{"k":"H5498","v":["סָחַב","sâchab","saw-khab'","A primitive root; to trail along: - draw (out), tear."]},{"k":"H5499","v":["סְחָבָה","sechâbâh","seh-khaw-baw'","From H5498; a rag: - cast clout."]},{"k":"H5500","v":["סָחָה","sâchâh","saw-khaw'","A primitive root; to sweep away: - scrape."]},{"k":"H5501","v":["סְחִי","sechı̂y","seh-khee'","From H5500; refuse (as swept off): - offscouring."]},{"k":"H5502","v":["סָחַף","sâchaph","saw-khaf'","A primitive root; to scrape off: - sweep (away)."]},{"k":"H5503","v":["סָחַר","sâchar","saw-khar'","A primitive root; to travel round (specifically as a pedlar); intensively to palpitate: - go about, merchant (-man), occupy with, pant, trade, traffick."]},{"k":"H5504","v":["סַחַר","sachar","sakh'-ar","From H5503; profit (from trade): - merchandise."]},{"k":"H5505","v":["סָחַר","sâchar","saw-khar'","From H5503; an emporium; abstractly profit (from trade): - mart, merchandise."]},{"k":"H5506","v":["סְחֹרָה","sechôrâh","sekh-o-raw'","From H5503; traffic: - merchandise."]},{"k":"H5507","v":["סֹחֵרָה","sôchêrâh","so-khay-raw'","Properly active participle feminine of H5503; something surrounding the person, that is, a shield: - buckler."]},{"k":"H5508","v":["סֹחֶרֶת","sôchereth","so-kheh'-reth","Similar to H5507; probably a (black) tile (or tessara) for laying borders with: - black marble."]},{"k":"H5509","v":["סוּג    סִיג","sı̂yg    sûg","seeg, soog","From H5472 in the sense of refuse; scoria: - dross."]},{"k":"H5510","v":["סִיוָן","sı̂yvân","see-vawn'","Probably of Persian origin; Sivan, the third Hebrew month: - Sivan."]},{"k":"H5511","v":["סִיחֹן    סִיחוֹן","sı̂ychôn    sı̂ychôn","see-khone', see-khone'","From the same as H5477; tempestuous; Sichon, an Amoritish king: - Sihon."]},{"k":"H5512","v":["סִין","sı̂yn","seen","Of uncertain derivation; Sin, the name of an Egyptian town and (probably) desert adjoining: - Sin."]},{"k":"H5513","v":["סִינִי","sı̂ynı̂y","see-nee'","From an otherwise unknown name of a man; a Sinite, or descendant of one of the sons of Canaan: - Sinite."]},{"k":"H5514","v":["סִינַי","sı̂ynay","see-nah'ee","Of uncertain derivation; Sinai, a mountain of Arabia: - Sinai."]},{"k":"H5515","v":["סִינִים","sı̂ynı̂ym","see-neem'","Plural of an otherwise unknown name; Sinim, a distant Oriental region: - Sinim."]},{"k":"H5516","v":["סִיסְרָא","sı̂yserâ'","see-ser-aw'","Of uncertain derivation; Sisera, the name of a Canaanitish king and of one of the Nethinim: - Sisera."]},{"k":"H5517","v":["סִיעֲהָא    סִיעָא","sı̂y‛â'    sı̂y‛ăhâ'","see-ah', see-ah-haw'","From an unused root meaning to converse; congregation; Sia, or Siaha, one of the Nethinim: - Sia, Siaha."]},{"k":"H5518","v":["סִרָה    סִירָה    סִיר","sı̂yr    sı̂yrâh    sirâh","seer, see-raw', see-raw'","From a primitive root meaning to boil up; a pot; also a thorn (as springing up rapidly); by implication a hook: - caldron, fishhook, pan, ([wash-]) pot, thorn."]},{"k":"H5519","v":["סָךְ","sâk","sawk","From H5526; properly a thicket of men, that is, a crowd: - multitude."]},{"k":"H5520","v":["סֹךְ","sôk","soke","From H5526; a hut (as of entwined boughs); also a lair: - covert, den, pavilion, tabernacle."]},{"k":"H5521","v":["סֻכָּה","sûkkâh","sook-kaw'","Feminine of H5520; a hut or lair: - booth, cottage, covert, pavilion, tabernacle, tent."]},{"k":"H5522","v":["סִכּוּת","sikkûth","sik-kooth'","Feminine of H5519; an (idolatrous) booth: - tabernacle."]},{"k":"H5523","v":["סֻכֹּת    סֻכּוֹת","sûkkôth    sûkkôth","sook-kohth', sook-kohth'","Plural of H5521; booths; Succoth, the name of a place in Egypt and of three in Palestine: - Succoth."]},{"k":"H5524","v":["סֻכּוֹת בְּנוֹת","sûkkôth benôth","sook-kohth' ben-ohth'","From H5523 and the (irregular) plural of H1323; booths of (the) daughters; brothels, that is, idolatrous tents for impure purposes: - Succoth-benoth."]},{"k":"H5525","v":["סֻכִּי","sûkkı̂y","sook-kee'","Patrial from an unknown name (perhaps H5520); a Sukkite, or inhabitant of some place near Egypt (that is, hut dwellers): - Sukkiims."]},{"k":"H5526","v":["שָׂכַךְ    סָכַךְ","sâkak    śâkak","saw-kak', saw-kak'","A primitive root; properly to entwine as a screen; by implication to fence in, cover over, (figuratively) protect: - cover, defence, defend, hedge in, join together, set, shut up."]},{"k":"H5527","v":["סְכָכָה","sekâkâh","sek-aw-kaw'","From H5526; inclosure; Secacah, a place in Palestine: - Secacah."]},{"k":"H5528","v":["סָכַל","sâkal","saw-kal'","For H3688; to be silly: - do (make, play the, turn into) fool (-ish, -ishly, -ishness)."]},{"k":"H5529","v":["סֶכֶל","sekel","seh'-kel","From H5528; silliness; concretely and collectively, dolts: - folly."]},{"k":"H5530","v":["סָכָל","sâkâl","saw-kawl'","From H5528; silly: - fool (-ish), sottish."]},{"k":"H5531","v":["שִׂכְלוּת    סִכְלוּת","siklûth    śiklûth","sik-looth', sik-looth'","From H5528; silliness: - folly, foolishness."]},{"k":"H5532","v":["סָכַן","sâkan","saw-kan'","A primitive root; to be familiar with; by implication to minister to, be serviceable to, be customary: - acquaint (self), be advantage, X ever, (be, [un-]) profit (-able), treasure, be wont."]},{"k":"H5533","v":["סָכַן","sâkan","saw-kan'","Probably a denominative from H7915; properly to cut, that is, damage; also to grow (causatively make) poor: - endanger, impoverish."]},{"k":"H5534","v":["סָכַר","sâkar","saw-kar'","A primitive root; to shut up; by implication to surrender: - stop, give over. See also H5462; H7936."]},{"k":"H5535","v":["סָכַת","sâkath","saw-kath'","A primitive root; to be silent; by implication to observe quietly: - take heed."]},{"k":"H5536","v":["סַל","sal","sal","From H5549; properly a willow twig (as pendulous), that is, an osier; but only as woven into a basket: - basket."]},{"k":"H5537","v":["סָלָא","sâlâ'","saw-law'","A primitive root; to suspend in a balance, that is, weigh: - compare."]},{"k":"H5538","v":["סִלָּא","sillâ'","sil-law'","From H5549; an embankment; Silla, a place in Jerusalem: - Silla."]},{"k":"H5539","v":["סָלַד","sâlad","saw-lad'","A primitive root; probably to leap (with joy), that is, exult: - harden self."]},{"k":"H5540","v":["סֶלֶד","seled","seh'-led","From H5539; exultation; Seled, an Israelite: - Seled."]},{"k":"H5541","v":["סָלָה","sâlâh","saw-law'","A primitive root; to hang up, that is, weigh, or (figuratively) contemn: - tread down (under foot), value."]},{"k":"H5542","v":["סֶלָה","selâh","seh'-law","From H5541; suspension (of music), that is, pause: - Selah."]},{"k":"H5543","v":["סַלַּי    סָלוּא      סַלּוּא    סַלּוּ","salû    salû'    sâlû'    sallay","sal-loo', sal-loo', saw-loo', sal-lah'ee","From H5541; weighed; Sallu or Sallai, the name of two Israelites: - Sallai, Sallu, Salu."]},{"k":"H5544","v":["סַלּוֹן    סִלּוֹן","sillôn    sallôn","sil-lone', sal-lone'","From H5541; a prickle (as if pendulous): - brier, thorn."]},{"k":"H5545","v":["סָלַח","sâlach","saw-lakh'","A primitive root; to forgive: - forgive, pardon, spare."]},{"k":"H5546","v":["סַלָּח","sallâch","sal-lawkh'","From H5545; placable: - ready to forgive."]},{"k":"H5547","v":["סְלִיחָה","selı̂ychâh","sel-ee-khaw'","From H5545; pardon: - forgiveness, pardon."]},{"k":"H5548","v":["סַלְכָה","salkâh","sal-kaw'","From an unused root meaning to walk; walking; Salcah, a place East of the Jordan: - Salcah, Salchah."]},{"k":"H5549","v":["סָלַל","sâlal","saw-lal'","A primitive root; to mound up (especially a turnpike); figuratively to exalt; reflexively to oppose (as by a dam): - cast up, exalt (self), extol, make plain, raise up."]},{"k":"H5550","v":["סוֹלְלָה    סֹלְלָה","sôlelâh    sôlelâh","so-lel-aw', so-lel-aw'","Active participle feminine of H5549, but used passively; a military mound, that is, rampart of besiegers: - bank, mount."]},{"k":"H5551","v":["סֻלָּם","sûllâm","sool-lawm'","From H5549; a stair case: - ladder."]},{"k":"H5552","v":["סַלְסִלָּה","salsillâh","sal-sil-law'","From H5541; a twig (as pendulous): - basket."]},{"k":"H5553","v":["סֶלַע","sela‛","seh'-lah","From an unused root meaning to be lofty; a craggy rock, literally or figuratively (a fortress): - (ragged) rock, stone (-ny), strong hold."]},{"k":"H5554","v":["סֶלַע","sela‛","seh'-lah","The same as H5553; Sela, the rock city of Idumaea: - rock, Sela (-h)."]},{"k":"H5555","v":["סֶלַע הַמַּחְלְקוֹת","sela‛ hammachleqôth","seh'-lah ham-makh-lek-oth'","From H5553 and the plural of H4256 with the article interposed; rock of the divisions; Sela ham Machlekoth, a place in Palestine: - Sela-hammalekoth."]},{"k":"H5556","v":["סָלְעָם","sol‛âm","sol-awm'","Apparently from the same as H5553 in the sense of crushing as with a rock, that is, consuming; a kind of locust (from its destructiveness): - bald locust."]},{"k":"H5557","v":["סָלַף","sâlaph","saw-laf'","A primitive root; properly to wrench, that is, (figuratively) to subvert: - overthrow, pervert."]},{"k":"H5558","v":["סֶלֶף","seleph","seh'-lef","From H5557; distortion, that is, (figuratively) viciousness: - perverseness."]},{"k":"H5559","v":["סְלִק","seliq","sel-eek'","(Chaldee); a primitive root; to ascend: - come (up)."]},{"k":"H5560","v":["סֹלֶת","sôleth","so'-leth","From an unused root meaning to strip; flour (as chipped off): - (fine) flour, meal."]},{"k":"H5561","v":["סַם","sam","sam","From an unused root meaning to smell sweet; an aroma: - sweet (spice)."]},{"k":"H5562","v":["סַמְגַּר נְבוֹ","samgar nebô","sam-gar' neb-o'","Of foreign origin; Samgar-Nebo, a Babylonian general: - Samgar-nebo."]},{"k":"H5563","v":["סְמָדַר","semâdar","sem-aw-dar'","Of uncertain derivation; a vine blossom; used also adverbially abloom: - tender grape."]},{"k":"H5564","v":["סָמַךְ","sâmak","saw-mak'","A primitive root; to prop (literally or figuratively); reflexively to lean upon or take hold of (in a favorable or unfavorable sense): - bear up, establish, (up-) hold, lay, lean, lie hard, put, rest self, set self, stand fast, stay (self), sustain."]},{"k":"H5565","v":["סְמַכְיָהוּ","semakyâhû","sem-ak-yaw'-hoo","From H5564 and H3050; supported of Jah; Semakjah, an Israelite: - Semachiah."]},{"k":"H5566","v":["סֵמֶל    סֶמֶל","semel    sêmel","seh'-mel, say'-mel","From an unused root meaning to resemble; a likeness: - figure, idol, image."]},{"k":"H5567","v":["סָמַן","sâman","saw-man'","A primitive root; to designate: - appointed."]},{"k":"H5568","v":["סָמַר","sâmar","saw-mar'","A primitive root; to be erect, that is, bristle as hair: - stand up, tremble."]},{"k":"H5569","v":["סָמָר","sâmâr","saw-mawr'","From H5568; bristling, that is, shaggy: - rough."]},{"k":"H5570","v":["סְנָאָה","senâ'âh","sen-aw-aw'","From an unused root meaning to prick; thorny; Senaah, a place in Palestine: - Senaah, Hassenaah [with the article."]},{"k":"H5571","v":["סַנְבַלַּט","sanballaṭ","san-bal-lat'","Of foreign origin; Sanballat, a Persian satrap of Samaria: - Sanballat."]},{"k":"H5572","v":["סְנֶה","seneh","sen-eh'","From an unused root meaning to prick; a bramble: - bush."]},{"k":"H5573","v":["סֶנֶה","seneh","seh'-neh","The same as H5572; thorn; Seneh, a crag in Palestine: - Seneh."]},{"k":"H5574","v":["סְנֻאָה    סְנוּאָה","senû'âh    senû'âh","sen-oo-aw', sen-oo-aw'","From the same as H5570; pointed; (used with the article as a proper name) Senuah, the name of two Israelites. (Hasenuah includes the article.): - Hasenuah [includ. the article, Senuah."]},{"k":"H5575","v":["סַנְוֵר","sanvêr","san-vare'","Of uncertain derivation; (in plural) blindness: - blindness."]},{"k":"H5576","v":["סַנְחֵרִיב","sanchêrı̂yb","san-khay-reeb'","Of foreign origin; Sancherib, an Assyrian king: - Sennacherib."]},{"k":"H5577","v":["סַנְסִן","sansin","san-seen'","From an unused root meaning to be pointed; a twig (as tapering): - bough."]},{"k":"H5578","v":["סַנְסַנָּה","sansannâh","san-san-naw'","Feminine of a form of H5577; a bough; Sansannah, a place in Palestine: - Sansannah."]},{"k":"H5579","v":["סְנַפִּיר","senappı̂yr","sen-ap-peer'","Of uncertain derivation; a fin (collectively): - fins."]},{"k":"H5580","v":["סָס","sâs","sawce","From the same as H5483; a moth (from the agility of the fly): - moth."]},{"k":"H5581","v":["סִסְמַי","sismay","sis-mah'ee","Of uncertain derivation; Sismai, an Israelite: - Sisamai."]},{"k":"H5582","v":["סָעַד","sâ‛ad","saw-ad'","A primitive root; to support (mostly figuratively): - comfort, establish, hold up, refresh self, strengthen, be upholden."]},{"k":"H5583","v":["סְעַד","se‛ad","seh-ad'","(Chaldee); corresponding to H5582; to aid: - helping."]},{"k":"H5584","v":["סָעָה","sâ‛âh","saw-aw'","A primitive root; to rush: - storm."]},{"k":"H5585","v":["סָעִיף","sâ‛ı̂yph","saw-eef'","From H5586; a fissure (of rocks); also a bough (as subdivided): - (outmost), branch, clift, top."]},{"k":"H5586","v":["סָעַף","sâ‛aph","saw-af'","A primitive root; properly to divide up; but used only as denominative from H5585, to disbranch (a tree): - top."]},{"k":"H5587","v":["שָׂעִף    סָעִף","sâ‛iph    śâ‛iph","saw-eef', saw-eef'","From H5586; divided (in mind), that is, (abstractly) a sentiment: - opinion."]},{"k":"H5588","v":["סֵעֵף","sê‛êph","say-afe'","From H5586; divided (in mind), that is, (concretely) a skeptic: - thought."]},{"k":"H5589","v":["סְעַפָּה","se‛appâh","seh-ap-paw'","Feminine of H5585; a twig: - bough. Compare H5634."]},{"k":"H5590","v":["סָעַר","sâ‛ar","saw-ar'","A primitive root; to rush upon; by implication to toss (transitively or intransitively, literally or figuratively): - be (toss with) tempest (-uous), be sore troubled, come out as a (drive with the, scatter with a) whirlwind."]},{"k":"H5591","v":["סְעָרָה    סַעַר","sa‛ar    se‛ârâh","sah'-ar, seh-aw-raw'","From H5590; a hurricane: - storm (-y), tempest, whirlwind."]},{"k":"H5592","v":["סַף","saph","saf","From H5605, in its original sense of containing; a vestibule (as a limit); also a dish (for holding blood or wine): - bason, bowl, cup, door (post), gate, post, threshold."]},{"k":"H5593","v":["סַף","saph","saf","The same as H5592; Saph, a Philistine: - Saph. Compare H5598."]},{"k":"H5594","v":["סָפַד","sâphad","saw-fad'","A primitive root; properly to tear the hair and beat the breasts (as Orientals do in grief); generally to lament; by implication to wail: - lament, mourn (-er), wail."]},{"k":"H5595","v":["סָפָה","sâphâh","saw-faw'","A primitive root; properly to scrape (literally to shave; but usually figuratively) together (that is, to accumulate or increase) or away (that is, to scatter, remove or ruin; intransitively to perish): - add, augment, consume, destroy, heap, join, perish, put."]},{"k":"H5596","v":["שָׂפַח    סָפַח","sâphach    śâphach","saw-fakh', saw-fakh'","A primitive root; properly to scrape out, but in certain peculiar senses (of removal or association): - abiding, gather together, cleave, put, smite with a scab."]},{"k":"H5597","v":["סַפַּחַת","sappachath","sap-pakh'-ath","From H5596; the mange (as making the hair fall off): - scab."]},{"k":"H5598","v":["סִפַּי","sippay","sip-pah'ee","From H5592; bason like; Sippai, a Philistine: - Sippai. Compare H5593."]},{"k":"H5599","v":["סָפִיחַ","sâphı̂yach","saw-fee'-akh","From H5596; something (spontaneously) falling off, that is, a self sown crop; figuratively a freshet: - (such) things as (which) grow (of themselves), which groweth of its own accord (itself)."]},{"k":"H5600","v":["סְפִינָה","sephı̂ynâh","sef-ee-naw'","From H5603; a (sea going) vessel (as ceiled with a deck): - ship."]},{"k":"H5601","v":["סַפִּיר","sappı̂yr","sap-peer'","From H5608; a gem (perhaps as used for scratching other substances), probably the sapphire: - sapphire."]},{"k":"H5602","v":["סֵפֶל","sêphel","say'-fel","From an unused root meaning to depress; a basin (as deepened out): - bowl, dish."]},{"k":"H5603","v":["סָפַן","sâphan","saw-fan'","A primitive root; to hide by covering; specifically to roof (passive participle as noun, a roof) or wainscot; figuratively to reserve: - cieled, cover, seated."]},{"k":"H5604","v":["סִפֻּן","sippûn","sip-poon'","From H5603; a wainscot: - cieling."]},{"k":"H5605","v":["סָפַף","sâphaph","saw-faf'","A primitive root; properly to snatch away, that is, terminate; but used only as denominative from H5592 (in the sense of a vestibule), to wait at the threshold: - be a doorkeeper."]},{"k":"H5606","v":["שָׂפַק    סָפַק","sâphaq    śâphaq","saw-fak', saw-fak'","A primitive root; to clap the hands (in token of compact, derision, grief, indignation or punishment); by implication of satisfaction, to be enough; by implication of excess, to vomit: - clap, smite, strike, suffice, wallow."]},{"k":"H5607","v":["שֶׂפֶק    סֵפֶק","sêpheq    śepheq","say'-fek, seh'-fek","From H5606; chastisement; also satiety: - stroke, sufficiency."]},{"k":"H5608","v":["סָפַר","sâphar","saw-far'","A primitive root; properly to score with a mark as a tally or record, that is, (by implication) to inscribe, and also to enumerate; intensively to recount, that is, celebrate: - commune, (ac-) count, declare, number, + penknife, reckon, scribe, shew forth, speak, talk, tell (out), writer."]},{"k":"H5609","v":["סְפַר","sephar","sef-ar'","(Chaldee); from a root corresponding to H5608; a book: - book, roll."]},{"k":"H5610","v":["סְפָר","sephâr","sef-awr'","From H5608; a census: - numbering."]},{"k":"H5611","v":["סְפָר","sephâr","sef-awr'","The same as H5610; Sephar, a place in Arabia: - Sephar."]},{"k":"H5612","v":["סִפְרָה    סֵפֶר","sêpher    siphrâh","say'-fer, sif-raw'","From H5608; properly writing (the art or a document); by implication a book: - bill, book, evidence, X learn [-ed] (-ing), letter, register, scroll."]},{"k":"H5613","v":["סָפֵר","sâphêr","saw-fare'","(Chaldee); from the same as H5609; a scribe (secular or sacred): - scribe."]},{"k":"H5614","v":["סְפָרָד","sephârâd","sef-aw-rawd'","Of foreign derivation; Sepharad, a region of Assyria: - Sepharad."]},{"k":"H5615","v":["סְפֹרָה","sephôrâh","sef-o-raw'","From H5608; a numeration: - number."]},{"k":"H5616","v":["סְפַרְוִי","sepharvı̂y","sef-ar-vee'","Patrial from H5617; a Sepharvite or inhabitant of Sepharvain: - Sepharvite."]},{"k":"H5617","v":["סְפָרִים    סְפַרְוַיִם","sepharvayim    sephârı̂ym","sef-ar-vah'-yim, sef-aw-reem'","Of foreign derivation; Sepharvajim or Sepharim, a place in Assyria: - Sepharvaim."]},{"k":"H5618","v":["סֹפֶרֶת","sôphereth","so-feh'-reth","Feminine active participle of H5608; a scribe (properly female); Sophereth, a temple servant: - Sophereth."]},{"k":"H5619","v":["סָקַל","sâqal","saw-kal'","A primitive root; properly to be weighty; but used only in the sense of lapidation or its contrary (as if a delapidation): - (cast, gather out, throw) stone (-s), X surely."]},{"k":"H5620","v":["סַר","sar","sar","From H5637 contracted; peevish: - heavy, sad."]},{"k":"H5621","v":["סָרָב","sârâb","saw-rawb'","From an unused root meaning to sting; a thistle: - brier."]},{"k":"H5622","v":["סַרְבַּל","sarbal","sar-bal'","(Chaldee); of uncertain derivation; a cloak: - coat."]},{"k":"H5623","v":["סַרְגּוֹן","sargôn","sar-gone'","Of foreign derivation; Sargon, an Assyrian king: - Sargon."]},{"k":"H5624","v":["סֶרֶד","sered","seh'-red","From a primitive root meaning to tremble; trembling; Sered, an Israelite: - Sered."]},{"k":"H5625","v":["סַרְדִּי","sardı̂y","sar-dee'","Patronymic from H5624; a Seredite (collectively) or descendant of Sered: - Sardites."]},{"k":"H5626","v":["סִרָה","sirâh","see-raw'","From H5493; departure; Sirah, a cistern so called: - Sirah. See also H5518."]},{"k":"H5627","v":["סָרָה","sârâh","saw-raw'","From H5493; apostasy, crime; figuratively remission: -  X continual, rebellion, revolt ([-ed]), turn away, wrong."]},{"k":"H5628","v":["סָרַח","sârach","saw-rakh'","A primitive root; to extend (even to excess): - exceeding, hand, spread, stretch self, banish."]},{"k":"H5629","v":["סֶרַח","serach","seh'-rakh","From H5628; a redundancy: - remnant."]},{"k":"H5630","v":["סִרְיֹן","siryôn","sir-yone'","For H8302; a coat of mail: - brigandine."]},{"k":"H5631","v":["סָרִס    סָרִיס","sârı̂ys    sâris","saw-reece', saw-reece'","From an unused root meaning to castrate; a eunuch; by implication valet (especially of the female apartments), and thus a minister of state: - chamberlain, eunuch, officer. Compare H7249."]},{"k":"H5632","v":["סָרֵךְ","sârêk","saw-rake'","(Chaldee); of foreign origin; an emir: - president."]},{"k":"H5633","v":["סֶרֶן","seren","seh'-ren","From an unused root of uncertain meaning; an axle; figuratively a peer: - lord, plate."]},{"k":"H5634","v":["סַרְעַפָּה","sar‛appâh","sar-ap-paw'","For H5589; a twig: - bough."]},{"k":"H5635","v":["סָרַף","sâraph","saw-raf'","A primitive root; to cremate, that is, to be (near) of kin (such being privileged to kindle the pyre): - burn."]},{"k":"H5636","v":["סַרְפָּד","sarpâd","sar-pawd'","From H5635; a nettle (as stinging like a burn): - brier."]},{"k":"H5637","v":["סָרַר","sârar","saw-rar'","A primitive root; to turn away, that is, (morally) be refractory: -  X away, backsliding, rebellious, revolter (-ing), slide back, stubborn, withdrew."]},{"k":"H5638","v":["סְתָו","sethâv","seth-awv'","From an unused root meaning to hide; winter (as the dark season): - winter."]},{"k":"H5639","v":["סְתוּר","sethûr","seth-oor'","From H5641; hidden; Sethur, an Israelite: - Sethur."]},{"k":"H5640","v":["שָׂתַם    סָתַם","sâtham    śâtham","saw-tham', saw-tham'","A primitive root; to stop up; by implication to repair; figuratively to keep secret: - closed up, hidden, secret, shut out (up), stop."]},{"k":"H5641","v":["סָתַר","sâthar","saw-thar'","A primitive root; to hide (by covering), literally or figuratively: - be absent, keep close, conceal, hide (self), (keep) secret, X surely."]},{"k":"H5642","v":["סְתַר","sethar","seth-ar'","(Chaldee); corresponding to H5641; to conceal; figuratively to demolish: - destroy, secret thing."]},{"k":"H5643","v":["סִתְרָה     סֵתֶר","sêther    sithrâh","say'-ther, sith-raw'","From H5641; a cover (in a good or a bad, a literal or a figurative sense): - backbiting, covering, covert, X disguise [-th], hiding place, privily, protection, secret (-ly, place)."]},{"k":"H5644","v":["סִתְרִי","sithrı̂y","sith-ree'","From H5643; protective; Sithri, an Israelite: - Zithri."]},{"k":"H5645","v":["עָב","‛âb","awb","Masculine and feminine; from H5743; properly an envelope, that is, darkness (or density, 2Ch_4:17); specifically a (scud) cloud; also a copse: - clay, (thick) cloud, X thick, thicket. Compare H5672."]},{"k":"H5646","v":["עֹב    עָב","‛âb ‛ôb","awb, obe","From an unused root meaning to cover; properly equivalent to H5645; but used only as an architectural term, an architrave (as shading the pillars): - thick (beam, plant)."]},{"k":"H5647","v":["עָבַד","‛âbad","aw-bad'","A primitive root; to work (in any sense); by implication to serve, till, (causatively) enslave, etc.: -    X be, keep in bondage, be bondmen, bond-service, compel, do, dress, ear, execute, + husbandman, keep, labour (-ing man), bring to pass, (cause to, make to) serve (-ing, self), (be, become) servant (-s), do (use) service, till (-er), transgress [from margin], (set a) work, be wrought, worshipper."]},{"k":"H5648","v":["עֲבַד","‛ăbad","ab-ad'","(Chaldee); corresponding to H5647; to do, make, prepare, keep, etc.: -    X cut, do, execute, go on, make, move, work."]},{"k":"H5649","v":["עֲבַד","‛ăbad","ab-ad'","(Chaldee); from H5648; a servant: - servant."]},{"k":"H5650","v":["עֶבֶד","‛ebed","eh'-bed","From H5647; a servant: -  X bondage, bondman, [bond-] servant, (man-) servant."]},{"k":"H5651","v":["עֶבֶד","‛ebed","eh'-bed","The same as H5650; Ebed, the name of two Israelites: - Ebed."]},{"k":"H5652","v":["עֲבָד","‛ăbâd","ab-awd'","From H5647; a deed: - work."]},{"k":"H5653","v":["עַבְדָּא","‛abdâ'","ab-daw'","From H5647; work; Abda, the name of two Israelites: - Abda."]},{"k":"H5654","v":["עֹבֵד אֱדוֹם","‛ôbêd 'ĕdôm","o-bade' ed-ome'","From the active participle of H5647 and H123; worker of Edom; Obed-Edom, the name of five Israelites: - Obed-edom."]},{"k":"H5655","v":["עַבְדְּאֵל","‛abde'êl","ab-deh-ale'","From H5647 and H410; serving God; Abdeel, an Israelite: - Abdeel. Compare H5661."]},{"k":"H5656","v":["עֲבוֹדָה    עֲבֹדָה","‛ăbôdâh    ‛ăbôdâh","ab-o-daw', ab-o-daw'","From H5647; work of any kind: - act, bondage, + bondservant, effect, labour, ministering (-try), office, service (-ile, -itude), tillage, use, work, X wrought."]},{"k":"H5657","v":["עֲבֻדָּה","‛ăbûddâh","ab-ood-daw'","Passive participle of H5647; something wrought, that is, (concretely) service: - household, store of servants."]},{"k":"H5658","v":["עַבְדוֹן","‛abdôn","ab-dohn'","From H5647; servitude; Abdon, the name of a place in Palestine and of four Israelites: - Abdon. Compare H5683."]},{"k":"H5659","v":["עַבְדוּת","‛abdûth","ab-dooth'","From H5647; servitude: - bondage."]},{"k":"H5660","v":["עַבְדִּי","‛abdı̂y","ab-dee'","From H5647; serviceable; Abdi, the name of two Israelites: - Abdi."]},{"k":"H5661","v":["עַבְדִיאֵל","‛abdı̂y'êl","ab-dee-ale'","From H5650 and H410; servant of God; Abdiel, an Israelite: - Abdiel. Compare H5655."]},{"k":"H5662","v":["עֹבַדְיָהוּ    עֹבַדְיָה","‛ôbadyâh    ‛ôbadyâhû","o-bad-yaw', o-bad-yaw'-hoo","Active participle of H5647 and H3050; serving Jah; Obadjah, the name of thirteen Israelites: - Obadiah."]},{"k":"H5663","v":["עֶבֶד מֶלֶךְ","‛ebed melek","eh'-bed meh'-lek","From H5650 and H4428; servant of a king; Ebed-Melek, a eunuch of king Zedekeah: - Ebed-melech."]},{"k":"H5664","v":["עֲבֵד נְגוֹ","‛ăbêd negô","ab-ade' neg-o'","The same as H5665; Abed-Nego, the Babylonian name of one of Daniel’s companions: - Abed-nego."]},{"k":"H5665","v":["עֲבֵד נְגוֹא","‛ăbêd negô'","ab-ade' neg-o'","(Chaldee); of foreign origin; Abed-Nego, the name of Azariah: - Abed-nego."]},{"k":"H5666","v":["עָבָה","‛âbâh","aw-baw'","A primitive root; to be dense: - be (grow) thick (-er)."]},{"k":"H5667","v":["עֲבֹט    עֲבוֹט","‛ăbôṭ    ‛ăbôṭ","ab-ote', ab-ote'","From H5670; a pawn: - pledge."]},{"k":"H5668","v":["עָבֻר    עָבוּר","‛âbûr    ‛âbûr","aw-boor', aw-boor'","Passive participle of H5674; properly crossed, that is, (abstractly) transit; used only adverbially on account of, in order that: - because of, for (. . . ‘s sake), (intent) that, to."]},{"k":"H5669","v":["עָבוּר","‛âbûr","aw-boor'","The same as H5668; passed, that is, kept over; used only of stored grain: - old corn."]},{"k":"H5670","v":["עָבַט","‛âbaṭ","aw-bat'","A primitive root; to pawn; causatively to lend (on security); figuratively to entangle: - borrow, break [ranks], fetch [a pledge], lend, X surely."]},{"k":"H5671","v":["עַבְטִיט","‛abṭı̂yṭ","ab-teet'","From H5670; something pledged, that is, (collectively) pawned goods. (thick clay is by a false etym.): - thick clay [by a false etymology]."]},{"k":"H5672","v":["עֳבִי    עֲבִי","‛ăbı̂y    ‛ŏbı̂y","ab-ee', ob-ee'","From H5666; density, that is, depth or width: - thick (-ness). Compare H5645."]},{"k":"H5673","v":["עֲבִידָה","‛ăbı̂ydâh","ab-ee-daw'","(Chaldee); from H5648; labor or business: - affairs, service, work."]},{"k":"H5674","v":["עָבַר","‛âbar","aw-bar'","A primitive root; to cross over; used very widely of any transition (literally or figuratively; transitively, intransitively, intensively or causatively); specifically to cover (in copulation): - alienate, alter, X at all, beyond, bring (over, through), carry over, (over-) come (on, over), conduct (over), convey over, current, deliver, do away, enter, escape, fail, gender, get over, (make) go (away, beyond, by, forth, his way, in, on, over, through), have away (more), lay, meddle, overrun, make partition, (cause to, give, make to, over) pass (-age, along, away, beyond, by, -enger, on, out, over, through), (cause to, make) + proclaim (-amation), perish, provoke to anger, put away, rage, + raiser of taxes, remove, send over, set apart, + shave, cause to (make) sound, X speedily, X sweet smelling, take (away), (make to) transgress (-or), translate, turn away, [way-] faring man, be wrath."]},{"k":"H5675","v":["עֲבַר","‛ăbar","ab-ar'","(Chaldee); corresponding to H5676: - beyond, this side."]},{"k":"H5676","v":["עֵבֶר","‛êber","ay'-ber","From H5674; properly a region across; but used only adverbially (with or without a preposition) on the opposite side (especially of the Jordan; usually meaning the east): -    X against, beyond, by, X from, over, passage, quarter, (other, this) side, straight."]},{"k":"H5677","v":["עֵבֶר","‛êber","ay'-ber","The same as H5676; Eber, the name of two patriarchs and four Israelites: - Eber, Heber."]},{"k":"H5678","v":["עֶבְרָה","‛ebrâh","eb-raw'","Feminine of H5676; an outburst of passion: - anger, rage, wrath."]},{"k":"H5679","v":["עֲבָרָה","‛ăbârâh","ab-aw-raw'","From H5674; a crossing place: - ferry, plain [from the margin]."]},{"k":"H5680","v":["עִבְרִי","‛ibrı̂y","ib-ree'","Patronymic from H5677; an Eberite (that is, Hebrew) or descendant of Eber: - Hebrew (-ess, woman)."]},{"k":"H5681","v":["עִבְרִי","‛ibrı̂y","ib-ree'","The same as H5680; Ibri, an Israelite: - Ibri."]},{"k":"H5682","v":["עֲבָרִים","‛ăbârı̂ym","ab-aw-reem'","Plural of H5676; regions beyond; Abarim, a place in Palestine: - Abarim, passages."]},{"k":"H5683","v":["עֶבְרֹן","‛ebrôn","eb-rone'","From H5676; transitional; Ebron, a place in Palestine. (Perhaps a clerical error for H5658.): - Hebron. Perhaps a clerical error for H5658."]},{"k":"H5684","v":["עֶבְרֹנָה","‛ebrônâh","eb-roe-naw'","Feminine of H5683; Ebronah, a place in the Desert: - Ebronah."]},{"k":"H5685","v":["עָבַשׁ","‛âbash","aw-bash'","A primitive root; to dry up: - be rotten."]},{"k":"H5686","v":["עָבַת","‛âbath","aw-bath'","A primitive root; to interlace, that is, (figuratively) to pervert: - wrap up."]},{"k":"H5687","v":["עָבוֹת    עָבֹת","‛âbôth    ‛âbôth","aw-both', aw-both'","From H5686; intwined, that is, dense: - thick."]},{"k":"H5688","v":["עֲבֹתָה    עֲבוֹת    עֲבֹת","‛ăbôth    ‛ăbôth    ‛ăbôthâh","ab-oth', ab-oth', ab-oth-aw'","The same as H5687; something intwined, that is, a string, wreath or foliage: - band, cord, rope, thick bough (branch), wreathen (chain)."]},{"k":"H5689","v":["עָגַב","‛âgab","aw-gab'","A primitive root; to breathe after, that is, to love (sensually): - dote, lover."]},{"k":"H5690","v":["עֶגֶב","‛egeb","eh'-gheb","From H5689; love (concretely), that is, amative words: - much love, very lovely."]},{"k":"H5691","v":["עֲגָבָה","‛ăgâbâh","ag-aw-baw'","From H5689; love (abstractly), that is, amorousness: - inordinate love."]},{"k":"H5692","v":["עֻגָּה","‛ûggâh","oog-gaw'","From H5746; an ashcake (as round): - cake (upon the hearth)."]},{"k":"H5693","v":["עָגוּר","‛âgûr","aw-goor'","Passive participle (but with active sense) of an unused root meaning to twitter; probably the swallow: - swallow."]},{"k":"H5694","v":["עָגִיל","‛âgı̂yl","aw-gheel'","From the same as H5696; something round, that is, a ring (for the ears): - earring."]},{"k":"H5695","v":["עֵגֶל","‛êgel","ay'-ghel","From the same as H5696; a (male) calf (as frisking round), especially one nearly grown (that is, a steer): - bullock, calf."]},{"k":"H5696","v":["עָגוֹל    עָגֹל","‛âgôl    ‛âgôl","aw-gole', aw-gole'","From an unused root meaning to revolve, circular: - round."]},{"k":"H5697","v":["עֶגְלָה","‛eglâh","eg-law'","Feminine of H5695; a (female) calf, especially one nearly grown (that is, a heifer): - calf, cow, heifer."]},{"k":"H5698","v":["עֶגְלָה","‛eglâh","eg-law'","The same as H5697; Eglah, a wife of David: - Eglah."]},{"k":"H5699","v":["עֲגָלָה","‛ăgâlâh","ag-aw-law'","From the same as H5696; something revolving, that is, a wheeled vehicle: - cart, chariot, wagon."]},{"k":"H5700","v":["עֶגְלוֹן","‛eglôn","eg-lawn'","From H5695; vituline; Eglon, the name of a place in Palestine and of a Moabitish king: - Eglon."]},{"k":"H5701","v":["עָגַם","‛âgam","aw-gam'","A primitive root; to be sad: - grieve."]},{"k":"H5702","v":["עָגַן","‛âgan","aw-gan'","A primitive root; to debar, that is, from marriage: - stay."]},{"k":"H5703","v":["עַד","‛ad","ad","From H5710; properly a (peremptory) terminus, that is, (by implication) duration, in the sense of perpetuity (substantially as a noun, either with or without a preposition): - eternity, ever (-lasting, -more), old, perpetually, + world without end."]},{"k":"H5704","v":["עַד","‛ad","ad","Properly the same as H5703 (used as a preposition, adverb or conjugation; especially with a preposition); as far (or long, or much) as, whether of space (even unto) or time (during, while, until) or degree (equally with): - against, and, as, at, before, by (that), even (to), for (-asmuch as), [hither-] to, + how long, into, as long (much) as, (so) that, till, toward, until, when, while, (+ as) yet."]},{"k":"H5705","v":["עַד","‛ad","ad","(Chaldee); corresponding to H5704: - X and, at, for, [hither-] to, on, till, (un-) to, until, within."]},{"k":"H5706","v":["עַד","‛ad","ad","The same as H5703 in the sense of the aim of an attack; booty: - prey."]},{"k":"H5707","v":["עֵד","‛êd","ayd","From H5749 contracted; concretely a witness; abstractly testimony; specifically a recorder, that is, prince: - witness."]},{"k":"H5708","v":["עֵד","‛êd","ayd","From an unused root meaning to set a period (compare H5710 and H5749); the menstrual flux (as periodical); by implication (in plural) soiling: - filthy."]},{"k":"H5709","v":["עֲדָה    עֲדָא","‛ădâ'    ‛ădâh","ad-aw', ad-aw'","(Chaldee); corresponding to H5710: - alter, depart, pass (away), remove, take (away)."]},{"k":"H5710","v":["עָדָה","‛âdâh","aw-daw'","A primitive root; to advance, that is, pass on or continue; causatively to remove; specifically to bedeck (that is, bring an ornament upon): - adorn, deck (self), pass by, take away."]},{"k":"H5711","v":["עָדָה","‛âdâh","aw-daw'","From H5710; ornament; Adah, the name of two women: - Adah."]},{"k":"H5712","v":["עֵדָה","‛êdâh","ay-daw'","Feminine of H5707 in the original sense of fixture; a stated assemblage (specifically a concourse, or generally a family or crowd): - assembly, company, congregation, multitude, people, swarm. Compare H5713."]},{"k":"H5713","v":["עֵדָה","‛êdâh","ay-daw'","Feminine of H5707 in its technical sense; testimony: - testimony, witness. Compare H5712."]},{"k":"H5714","v":["עִדִּיא    עִדּוֹא    עִדּוֹ","‛iddô    ‛iddô'    ‛iddı̂y'","id-do', id-do', id-dee'","From H5710; timely; Iddo (or Iddi), the name of five Israelites: - Iddo. Compare H3035, H3260."]},{"k":"H5715","v":["עֵדוּת","‛êdûth","ay-dooth'","Feminine of H5707; testimony: - testimony, witness."]},{"k":"H5716","v":["עֲדִי","‛ădı̂y","ad-ee'","From H5710 in the sense of trappings; finery; generally an outfit; specifically a headstall: -  X excellent, mouth, ornament."]},{"k":"H5717","v":["עֲדִיאֵל","‛ădı̂y'êl","ad-ee-ale'","From H5716 and H410; ornament of God; Adiel, the name of three Israelites: - Adiel."]},{"k":"H5718","v":["עֲדָיָהוּ    עֲדָיָה","‛ădâyâh    ‛ădâyâhû","ad-aw-yaw', ad-aw-yaw'-hoo","From H5710 and H3050; Jah has adorned; Adajah, the name of eight Israelites: - Adaiah."]},{"k":"H5719","v":["עָדִין","‛âdı̂yn","aw-deen'","From H5727; voluptuous: - given to pleasures."]},{"k":"H5720","v":["עָדִין","‛âdı̂yn","aw-deen'","The same as H5719; Adin, the name of two Israelites: - Adin."]},{"k":"H5721","v":["עֲדִינָא","‛ădı̂ynâ'","ad-ee-naw'","From H5719; effeminacy; Adina, an Israelite: - Adina."]},{"k":"H5722","v":["עֲדִינוֹ","‛ădı̂ynô","ad-ee-no'","Probably from H5719 in the original sense of slender (that is, a spear); his spear: - Adino."]},{"k":"H5723","v":["עֲדִיתַיִם","‛ădı̂ythayim","ad-ee-thah'-yim","Dual of a feminine of H5706; double prey; Adithajim, a place in Palestine: - Adithaim."]},{"k":"H5724","v":["עַדְלַי","‛adlay","ad-lah'ee","Probably from an unused root of uncertain meaning; Adlai, an Israelite: - Adlai."]},{"k":"H5725","v":["עֲדֻלָּם","‛ădûllâm","ad-ool-lawm'","Probably from the passive participle of the same as H5724; Adullam, a place in Palestine: - Adullam."]},{"k":"H5726","v":["עֲדֻלָּמִי","‛ădûllâmı̂y","ad-ool-law-mee'","Patrial from H5725; an Adullamite or native of Adullam: - Adullamite."]},{"k":"H5727","v":["עָדַן","‛âdan","aw-dan'","A primitive root; to be soft or pleasant; figuratively and reflexively to live voluptuously: - delight self."]},{"k":"H5728","v":["עֲדֶנָּה    עֲדֶן","‛ăden    ‛ădennâh","ad-en', ad-en'-naw","From H5704 and H2004; till now: - yet."]},{"k":"H5729","v":["עֶדֶן","‛eden","eh'-den","From H5727; pleasure; Eden, a place in Mesopotamia: - Eden."]},{"k":"H5730","v":["עֶדְנָה    עֵדֶן","‛êden    ‛ednâh","ay'-den, ed-naw'","From H5727; pleasure: - delicate, delight, pleasure. See also H1040."]},{"k":"H5731","v":["עֵדֶן","‛êden","ay'-den","The same as H5730 (masculine); Eden, the region of Adam’s home: - Eden."]},{"k":"H5732","v":["עִדָּן","‛iddân","id-dawn'","(Chaldee); from a root corresponding to that of H5708; a set time; technically a year: - time."]},{"k":"H5733","v":["עַדְנָא","‛adnâ'","ad-naw'","From H5727; pleasure; Adna, the name of two Israelites: - Adna."]},{"k":"H5734","v":["עַדְנָה","‛adnâh","ad-naw'","From H5727; pleasure; Adnah, the name of two Israelites: - Adnah."]},{"k":"H5735","v":["עֲדְעָדָה","‛ăd‛âdâh","ad-aw-daw'","From H5712; festival; Adadah, a place in Palestine: - Adadah."]},{"k":"H5736","v":["עָדַף","‛âdaph","aw-daf'","A primitive root; to be (causatively have) redundant: - be more, odd number, be (have) over (and above), overplus, remain."]},{"k":"H5737","v":["עָדַר","‛âdar","aw-dar'","A primitive root; to arrange, as a battle, a vineyard (to hoe); hence to muster, and so to miss (or find wanting): - dig, fail, keep (rank), lack."]},{"k":"H5738","v":["עֶדֶר","‛eder","eh'-der","From H5737; an arrangement (that is, drove); Eder, an Israelite: - Ader."]},{"k":"H5739","v":["עֵדֶר","‛êder","ay'-der","From H5737; an arrangement, that is, muster (of animals): - drove, flock, herd."]},{"k":"H5740","v":["עֵדֶר","‛êder","ay'-der","The same as H5739; Eder, the name of an Israelite and of two places in Palestine: - Edar, Eder."]},{"k":"H5741","v":["עַדְרִיאֵל","‛adrı̂y'êl","ad-ree-ale'","From H5739 and H410; flock of God; Adriel, an Israelite: - Adriel."]},{"k":"H5742","v":["עָדָשׁ","‛âdâsh","aw-dawsh'","From an unused root of uncertain meaning; a lentil: - lentile."]},{"k":"H5743","v":["עוּב","‛ûb","oob","A primitive root; to be dense or dark, that is, to becloud: - cover with a cloud."]},{"k":"H5744","v":["עוֹבֵד","‛ôbêd","o-bade'","Active participle of H5647; serving; Obed, the name of five Israelites: - Obed."]},{"k":"H5745","v":["עוֹבָל","‛ôbâl","o-bawl'","Of foreign derivation; Obal, a son of Joktan: - Obal."]},{"k":"H5746","v":["עוּג","‛ûg","oog","A primitive root; properly to gyrate; but used only as denominative from H5692, to bake (round cakes on the hearth): - bake."]},{"k":"H5747","v":["עוֹג","‛ôg","ogue","Probably from H5746; round; Og, a king of Bashan: - Og."]},{"k":"H5748","v":["עֻגָּב    עוּגָב","‛ûgâb    ‛ûggâb","oo-gawb', oog-gawb'","From H5689 in the original sense of breathing; a reed instrument of music: - organ."]},{"k":"H5749","v":["עוּד","‛ûd","ood","A primitive root; to duplicate or repeat; by implication to protest, testify (as by reiteration); intensively to encompass, restore (as a sort of reduplication): - admonish, charge, earnestly, lift up, protest, call (take) to record, relieve, rob, solemnly, stand upright, testify, give warning, (bear, call to, give, take to) witness."]},{"k":"H5750","v":["עֹד    עוֹד","‛ôd    ‛ôd","ode, ode","From H5749; properly iteration or continuance; used only adverbially (with or without preposition), again, repeatedly, still, more: - again, X all life long, at all, besides, but, else, further (-more), henceforth, (any) longer, (any) more (-over), X once, since, (be) still, when, (good, the) while (having being), (as, because, whether, while) yet (within)."]},{"k":"H5751","v":["עוֹד","‛ôd","ode","(Chaldee); corresponding to H5750: - while."]},{"k":"H5752","v":["עֹדֵד    עוֹדֵד","‛ôdêd    ‛ôdêd","o-dade', o-dade'","From H5749; reiteration; Oded, the name of two Israelites: - Oded."]},{"k":"H5753","v":["עָוָה","‛âvâh","aw-vaw'","A primitive root; to crook, literally or figuratively: - do amiss, bow down, make crooked, commit iniquity, pervert, (do) perverse (-ly), trouble, X turn, do wickedly, do wrong."]},{"k":"H5754","v":["עַוָּה","‛avvâh","av-vaw'","Intensive from H5753 abbreviated; overthrow: -  X overturn."]},{"k":"H5755","v":["עַוָּא     עִוָּה","‛ivvâh    ‛avvâ'","iv-vaw', av-vaw'","For H5754; Ivvah or Avva, a region of Assyria: - Ava, Ivah."]},{"k":"H5756","v":["עוּז","‛ûz","ooz","A primitive root; to be strong; causatively to strengthen, that is, (figuratively) to save (by flight): - gather (self, self to flee), retire."]},{"k":"H5757","v":["עַוִּי","‛avviy","av-vee'","Patrial from H5755; an Avvite or native of Avvah (only plural): - Avims, Avites."]},{"k":"H5758","v":["עִוְיָא","‛ivyâ'","iv-yaw'","(Chaldee); from a root corresponding to H5753; perverseness: - iniquity."]},{"k":"H5759","v":["עֲוִיל","‛ăvı̂yl","av-eel'","From H5764; a babe: - young child, little one."]},{"k":"H5760","v":["עֲוִיל","‛ăvı̂yl","av-eel'","From H5765; perverse (morally): - ungodly."]},{"k":"H5761","v":["עַוִּים","‛avviym","av-veem'","Plural of H5757; Avvim (as inhabited by Avvites), a place in Palestine (with the article prefixed): - Avim."]},{"k":"H5762","v":["עַיוּת    עַיּוֹת    עֲוִית","‛ăvı̂yth    ‛ayyôth    ‛ayûth","av-veeth', ah-yoth', ah-yooth'","From H5753; ruin; Avvith (or Avvoth), a place in Palestine: - Avith."]},{"k":"H5763","v":["עוּל","‛ûl","ool","A primitive root; to suckle, that is, give milk: - milch, (ewe great) with young."]},{"k":"H5764","v":["עוּל","‛ûl","ool","From H5763; a babe: - sucking child, infant."]},{"k":"H5765","v":["עָוַל","‛âval","aw-val'","A primitive root; to distort (morally): - deal unjustly, unrighteous."]},{"k":"H5766","v":["עֹלָה    עוֹלָה    עַוְלָה    עָוֶל    עֶוֶל","‛evel    ‛âvel    ‛avlâh    ‛ôlâh    ‛ôlâh","eh'-vel, aw'-vel, av-law', o-law', o-law'","From H5765; (moral) evil: - iniquity, perverseness, unjust (-ly), unrighteousness (-ly), wicked (-ness)."]},{"k":"H5767","v":["עַוָּל","‛avvâl","av-vawl'","Intensive from H5765; evil (morally): - unjust, unrighteous, wicked."]},{"k":"H5768","v":["עֹלָל    עוֹלֵל","‛ôlêl    ‛ôlâl","o-lale', o-lawl'","From H5763; a suckling: - babe, (young) child, infant, little one."]},{"k":"H5769","v":["עֹלָם    עוֹלָם","‛ôlâm    ‛ôlâm","o-lawm', o-lawm'","From H5956; properly concealed, that is, the vanishing point; generally time out of mind (past or future), that is, (practically) eternity; frequentative adverbially (especially with prepositional prefix) always: - always (-s), ancient (time), any more, continuance, eternal, (for, [n-]) ever (-lasting, -more, of old), lasting, long (time), (of) old (time), perpetual, at any time, (beginning of the) world (+ without end). Compare H5331, H5703."]},{"k":"H5770","v":["עָוַן","‛âvan","aw-van'","Denominative from H5869; to watch (with jealousy): - eye."]},{"k":"H5771","v":["עָווֹן    עָוֹן","‛âvôn    ‛âvôn","aw-vone', aw-vone'","From H5753; perversity, that is, (moral) evil: - fault, iniquity, mischief, punishment (of iniquity), sin."]},{"k":"H5772","v":["עוֹנָה","‛ônâh","o-naw'","From an unused root apparently meaning to dwell together; (sexual) cohabitation: - duty of marriage."]},{"k":"H5773","v":["עַוְעֶה","‛av‛eh","av-eh'","From H5753; perversity: -  X perverse."]},{"k":"H5774","v":["עוּף","‛ûph","oof","A primitive root; to cover (with wings or obscurity); hence (as denominative from H5775) to fly; also (by implication of dimness) to faint (from the darkness of swooning): - brandish, be (wax) faint, flee away, fly (away - ), X set, shine forth, weary."]},{"k":"H5775","v":["עוֹף","‛ôph","ofe","From H5774; a bird (as covered with feathers, or rather as covering with wings), often collective: - bird, that flieth, flying, fowl."]},{"k":"H5776","v":["עוֹף","‛ôph","ofe","(Chaldee); corresponding to H5775: - fowl."]},{"k":"H5777","v":["עֹפֶרֶת    עוֹפֶרֶת","‛ôphereth    ‛ôphereth","o-feh'-reth, o-feh'-reth","Feminine participle active of H6080; lead (from its dusty color): - lead."]},{"k":"H5778","v":["עוֹפַי","‛ôphay","o-fah'-ee","From H5775; birdlike; Ephai, an Israelite: - Ephai [from margin]."]},{"k":"H5779","v":["עוּץ","‛ûts","oots","A primitive root; to consult: - take advice ([counsel] together)."]},{"k":"H5780","v":["עוּץ","‛ûts","oots","Apparently from H5779; consultation; Uts, a son of Aram, also a Seirite, and the regions settled by them: - Uz."]},{"k":"H5781","v":["עוּק","‛ûq","ook","A primitive root; to pack: - be pressed."]},{"k":"H5782","v":["עוּר","‛ûr","oor","A primitive root (rather identical with H5783 through the idea of opening the eyes); to wake (literally or figuratively): - (a-) wake (-n, up), lift up (self), X master, raise (up), stir up (self)."]},{"k":"H5783","v":["עוּר","‛ûr","oor","A primitive root; to (be) bare: -  be made naked."]},{"k":"H5784","v":["עוּר","‛ûr","oor","(Chaldee); chaff (as the naked husk): - chaff."]},{"k":"H5785","v":["עוֹר","‛ôr","ore","From H5783; skin (as naked); by implication hide, leather: - hide, leather, skin."]},{"k":"H5786","v":["עָוַר","‛âvar","aw-var'","A primitive root (rather denominative from H5785 through the idea of a film over the eyes); to blind: - blind, put out. See also H5895."]},{"k":"H5787","v":["עִוֵּר","‛ivvêr","iv-vare'","Intensive from H5786; blind (literally or figuratively): - blind (men, people)."]},{"k":"H5788","v":["עַוֶּרֶת    עִוָּרוֹן","‛ivvârôn    ‛avvereth","iv-vaw-rone', av-veh'-reth","From H5787; blindness: - blind (-ness)."]},{"k":"H5789","v":["עוּשׁ","‛ûsh","oosh","A primitive root; to hasten: - assemble self."]},{"k":"H5790","v":["עוּת","‛ûth","ooth","From H5789; to hasten, that is, succor: - speak in season."]},{"k":"H5791","v":["עָוַת","‛âvath","aw-vath'","A primitive root; to wrest: - bow self, (make) crooked, falsifying, overthrow, deal perversely, pervert, subvert, turn upside down."]},{"k":"H5792","v":["עַוָּתָה","‛avvâthâh","av-vaw-thaw'","From H5791; oppression: - wrong."]},{"k":"H5793","v":["עוּתַי","‛ûthay","oo-thah'-ee","From H5790; succoring; Uthai, the name of two Israelites: - Uthai."]},{"k":"H5794","v":["עַז","‛az","az","From H5810; strong, vehement, harsh: - fierce, + greedy, mighty, power, roughly, strong."]},{"k":"H5795","v":["עֵז","‛êz","aze","From H5810; a she goat (as strong), but masculine in plural (which also is used elliptically for goats' hair): - (she) goat, kid."]},{"k":"H5796","v":["עֵז","‛êz","aze","(Chaldee); corresponding to H5795: - goat."]},{"k":"H5797","v":["עוֹז    עֹז","‛ôz    ‛ôz","oze, oze","From H5810; strength in various applications (force, security, majesty, praise): - boldness, loud, might, power, strength, strong."]},{"k":"H5798","v":["עֻזָּה    עֻזָּא","‛ûzzâ'    ‛ûzzâh","ooz-zaw', ooz-zaw'","Feminine of H5797; strength; Uzza or Uzzah, the name of five Israelites: - Uzza, Uzzah."]},{"k":"H5799","v":["עֲזָאזֵל","‛ăzâ'zêl","az-aw-zale'","From H5795 and H235; goat of departure; the scapegoat: - scapegoat."]},{"k":"H5800","v":["עָזַב","‛âzab","aw-zab'","A primitive root; to loosen, that is, relinquish, permit, etc.: - commit self, fail, forsake, fortify, help, leave (destitute, off), refuse, X surely."]},{"k":"H5801","v":["עִזָּבוֹן","‛izzâbôn","iz-zaw-bone'","From H5800 in the sense of letting go (for a price, that is, selling); trade, that is, the palce (mart) or the payment (revenue): - fair, ware."]},{"k":"H5802","v":["עַזְבּוּק","‛azbûq","az-book'","From H5794 and the root of H950; stern depopulator; Azbuk, an Israelite: - Azbuk."]},{"k":"H5803","v":["עַזְגָּד","‛azgâd","az-gawd'","From H5794 and H1409; stern troop; Azgad, an Israelite: - Azgad."]},{"k":"H5804","v":["עַזָּה","‛azzâh","az-zaw'","Feminine of H5794; strong; Azzah, a place in Palestine: - Azzah, Gaza."]},{"k":"H5805","v":["עֲזוּבָה","‛ăzûbâh","az-oo-baw'","Feminine passive participle of H5800; desertion (of inhabitants): - forsaking."]},{"k":"H5806","v":["עֲזוּבָה","‛ăzûbâh","az-oo-baw'","The same as H5805; Azubah, the name of two Israelitesses: - Azubah."]},{"k":"H5807","v":["עֱזוּז","‛ĕzûz","ez-ooz'","From H5810; forcibleness: - might, strength."]},{"k":"H5808","v":["עִזּוּז","‛izzûz","iz-zooz'","From H5810; forcible; collectively and concretely an army: - power, strong."]},{"k":"H5809","v":["עַזֻּר    עַזּוּר","‛azzûr    ‛azzûr","az-zoor', az-zoor'","From H5826; helpful; Azzur, the name of three Israelites: - Azur, Azzur."]},{"k":"H5810","v":["עָזַז","‛âzaz","aw-zaz'","A primitive root; to be stout (literally or figuratively): - harden, impudent, prevail, strengthen (self), be strong."]},{"k":"H5811","v":["עָזָז","‛âzâz","aw-zawz'","From H5810; strong; Azaz, an Israelite: - Azaz."]},{"k":"H5812","v":["עֲזַזְיָהוּ","‛ăzazyâhû","az-az-yaw'-hoo","From H5810 and H3050; Jah has strengthened; Azazjah, the name of three Israelites: - Azaziah."]},{"k":"H5813","v":["עֻזִּי","‛ûzzı̂y","ooz-zee'","From H5810; forceful; Uzzi, the name of six Israelites: - Uzzi."]},{"k":"H5814","v":["עֻזִּיָּא","‛ûzzı̂yâ'","ooz-zee-yaw'","Perhaps for H5818; Uzzija, an Israelite: - Uzzia."]},{"k":"H5815","v":["עֲזִיאֵל","‛ăzı̂y'êl","az-ee-ale'","From H5756 and H410; strengthened of God; Aziel, an Israelite: - Aziel. Compare H3268."]},{"k":"H5816","v":["עֻזִּיאֵל","‛ûzzı̂y'êl","ooz-zee-ale'","From H5797 and H410; strength of God; Uzziel, the name of six Israelites: - Uzziel."]},{"k":"H5817","v":["עָזִּיאֵלִי","‛ozzı̂y'êlı̂y","oz-zee-ay-lee'","Patronymic from H5816; an Uzzielite (collectively) or descendant of Uzziel: - Uzzielites."]},{"k":"H5818","v":["עֻזִּיָּהוּ    עֻזִּיָּה","‛ûzzı̂yâh    ‛ûzzı̂yâhû","ooz-zee-yaw', ooz-zee-yaw'-hoo","From H5797 and H3050; strength of Jah; Uzzijah, the name of five Israelites: - Uzziah."]},{"k":"H5819","v":["עֲזִיזָא","‛ăzı̂yzâ'","az-ee-zaw'","From H5756; strengthfulness; Aziza, an Israelite: - Aziza."]},{"k":"H5820","v":["עַזְמָוֶת","‛azmâveth","az-maw'-veth","From H5794 and H4194; strong one of death; Azmaveth, the name of three Israelites and of a place in Palestine: - Azmaveth. See also H1041."]},{"k":"H5821","v":["עַזָּן","‛azzân","az-zawn'","From H5794; strong one; Azzan, an Israelite: - Azzan."]},{"k":"H5822","v":["עָזְנִיָּה","‛oznı̂yâh","oz-nee-yaw'","Probably feminine of H5797; probably the sea eagle (from its strength): - ospray."]},{"k":"H5823","v":["עָזַק","‛âzaq","aw-zak'","A primitive root; to grub over: - fence about."]},{"k":"H5824","v":["עִזְקָא","‛izqâ'","iz-kaw'","(Chaldee); from a root corresponding to H5823; a signet ring (as engraved): - signet."]},{"k":"H5825","v":["עֲזֵקָה","‛ăzêqâh","az-ay-kaw'","From H5823; tilled; Azekah, a place in Palestine: - Azekah."]},{"k":"H5826","v":["עָזַר","‛âzar","aw-zar'","A primitive root; to surround, that is, protect or aid: - help, succour."]},{"k":"H5827","v":["עֶזֶר","‛ezer","eh'-zer","From H5826; help; Ezer, the name of two Israelites: - Ezer. Compare H5829."]},{"k":"H5828","v":["עֵזֶר","‛êzer","ay'-zer","From H5826; aid: - help."]},{"k":"H5829","v":["עֵזֶר","‛êzer","ay'-zer","The same as H5828; Ezer, the name of four Israelites: - Ezer. Compare H5827."]},{"k":"H5830","v":["עֶזְרָא","‛ezrâ'","ez-raw'","A variation of H5833; Ezra, an Israelite: - Ezra."]},{"k":"H5831","v":["עֶזְרָא","‛ezrâ'","ez-raw'","(Chaldee); corresponding to H5830; Ezra, an Israelite: - Ezra."]},{"k":"H5832","v":["עֲזַרְאֵל","‛ăzar'êl","az-ar-ale'","From H5826 and H410; God has helped; Azarel, the name of five Israelites: - Azarael, Azareel."]},{"k":"H5833","v":["עֶזְרָת    עֶזְרָה","‛ezrâh    ‛ezrâth","ez-raw', ez-rawth'","Feminine of H5828; aid: - help (-ed, -er)."]},{"k":"H5834","v":["עֶזְרָה","‛ezrâh","ez-raw'","The same as H5833; Ezrah, an Israelite: - Ezrah."]},{"k":"H5835","v":["עֲזָרָה","‛ăzârâh","az-aw-raw'","From H5826 in its original meaning of surrounding; an inclosure; also a border: - court, settle."]},{"k":"H5836","v":["עֶזְרִי","‛ezrı̂y","ez-ree'","From H5828; helpful; Ezri, an Israelite: - Ezri."]},{"k":"H5837","v":["עַזְרִיאֵל","‛azrı̂y'êl","az-ree-ale'","From H5828 and H410; help of God; Azriel, the name of three Israelites: - Azriel."]},{"k":"H5838","v":["עֲזַרְיָהוּ    עֲזַרְיָה","‛ăzaryâh    ‛ăzaryâhû","az-ar-yaw', az-ar-yaw'-hoo","From H5826 and H3050; Jah has helped; Azarjah, the name of nineteen Israelites: - Azariah."]},{"k":"H5839","v":["עֲזַרְיָה","‛ăzaryâh","az-ar-yaw'","(Chaldee); corresponding to H5838; Azarjah, one of Daniel’s companions: - Azariah."]},{"k":"H5840","v":["עַזְרִיקָם","‛azrı̂yqâm","az-ree-kawm'","From H5828 and active participle of H6965; help of an enemy; Azrikam, the name of four Israelites: - Azrikam."]},{"k":"H5841","v":["עַזָּתִי","‛azzâthı̂y","az-zaw-thee'","Patrial from H5804; an Azzathite or inhabitant of Azzah: - Gazathite, Gazite."]},{"k":"H5842","v":["עֵט","‛êṭ","ate","From H5860 (contracted) in the sense of swooping, that is, side long stroke; a stylus or marking stick: - pen."]},{"k":"H5843","v":["עֵטָא","‛êṭâ'","ay-taw'","(Chaldee); from H3272; prudence: - counsel."]},{"k":"H5844","v":["עָטָה","‛âṭâh","aw-taw'","A primitive root; to wrap, that is, cover, veil, clothe or roll: - array, self, be clad, (put a) cover (-ing, self), fill, put on, X surely, turn aside."]},{"k":"H5845","v":["עֲטִין","‛ăṭı̂yn","at-een'","From an unused root meaning apparently to contain; a receptacle (for milk, that is, pail; figuratively breast): - breast."]},{"k":"H5846","v":["עֲטִישָׁה","‛ăṭı̂yshâh","at-ee-shaw'","From an unused root meaning to sneeze; sneezing: - sneezing."]},{"k":"H5847","v":["עֲטַלֵּף","‛ăṭallêph","at-al-lafe'","Of uncertain derivation; a bat: - bat."]},{"k":"H5848","v":["עָטַף","‛âṭaph","aw-taf'","A primitive root; to shroud, that is, clothe (whether transitively or reflexively); hence (from the idea of darkness) to languish: - cover (over), fail, faint, feebler, hide self, be overwhelmed, swoon."]},{"k":"H5849","v":["עָטַר","‛âṭar","aw-tar'","A primitive root; to encircle (for attack or protection); especially to crown (literally or figuratively): - compass, crown."]},{"k":"H5850","v":["עֲטָרָה","‛ăṭârâh","at-aw-raw'","From H5849; a crown: - crown."]},{"k":"H5851","v":["עֲטָרָה","‛ăṭârâh","at-aw-raw'","The same as H5850; Atarah, an Israelitess: - Atarah."]},{"k":"H5852","v":["עֲטָרֹת    עֲטָרוֹת","‛ăṭârôth  ‛ăṭârôth","at-aw-roth', at-aw-roth'","Plural of H5850; Ataroth, the name (thus simply) of two places in Palestine: - Ataroth."]},{"k":"H5853","v":["עַטְרוֹת אַדָּר","‛aṭrôth 'addâr","at-roth' ad-dawr'","From the same as H5852 and H146; crowns of Addar; Atroth-Addar, a place in Palestine: - Ataroth-adar (-addar)."]},{"k":"H5854","v":["עַטְרוֹת בֵּית יוֹאָב","‛aṭrôth bêyth yô'âb","at-roth' bayth yo-awb'","From the same as H5852 and H1004 and H3097; crowns of the house of Joab; Atroth-beth-Joab, a place in Palestine: - Ataroth the house of Joab."]},{"k":"H5855","v":["עַטְרוֹת שׁוֹפָן","‛aṭrôth shôphân","at-roth' sho-fawn'","From the same as H5852 and a name otherwise unused (being from the same as H8226) meaning hidden; crowns of Shophan; Atroth-Shophan, a place in Palestine: - Atroth, Shophan [as if two places]."]},{"k":"H5856","v":["עִי","‛ı̂y","ee","From H5753; a ruin (as if overturned): - heap."]},{"k":"H5857","v":["עַיָּת    עַיָּא    עַי","‛ay    ‛ayâ'    ‛ayâth","ah'ee, ah-yaw', ah-yawth'","For H5856; Ai, Aja or Ajath, a place in Palestine: - Ai, Aija, Aijath, Hai."]},{"k":"H5858","v":["עֵיבָל","‛êybâl","ay-bawl'","Perhaps from an unused root probably meaning to be bald; bare; Ebal, a mountain of Palestine: - Ebal."]},{"k":"H5859","v":["עִיּוֹן","‛iyôn","ee-yone'","From H5856; ruin; Ijon, a place in Palestine: - Ijon."]},{"k":"H5860","v":["עִיט","‛ı̂yṭ","eet","A primitive root; to swoop down upon (literally or figuratively): - fly, rail."]},{"k":"H5861","v":["עַיִט","‛ayiṭ","ah'-yit","From H5860; a hawk or other bird of prey: - bird, fowl, ravenous (bird)."]},{"k":"H5862","v":["עֵיטָם","‛êyṭâm","ay-tawm'","From H5861; hawk ground; Etam, a place in Palestine: - Etam."]},{"k":"H5863","v":["עִיֵּי הָעֲבָרִים","‛iyêy hâ‛ăbârı̂ym","yay' haw-ab-aw-reem'","From the plural of H5856 and the plural of the active participle of H5674 with the article interposed; ruins of the passers; Ije-ha-Abarim, a place near Palestine: - Ije-abarim."]},{"k":"H5864","v":["עִיִּים","‛ı̂yı̂ym","ee-yeem'","Plural of H5856; ruins; Ijim, a place in the Desert: - Iim."]},{"k":"H5865","v":["עֵילוֹם","‛êylôm","ay-lome'","For H5769: - ever."]},{"k":"H5866","v":["עִילַי","‛ı̂ylay","ee-lah'ee","From H5927; elevated; Ilai, an Israelite: - Ilai."]},{"k":"H5867","v":["עוֹלָם    עֵילָם","‛êylâm    ‛ôlâm","ay-lawm', o-lawm'","Probably from H5956; hidden, that is, distant; Elam, a son of Shem, and his descendants, with their country; also of six Israelites: - Elam."]},{"k":"H5868","v":["עֲיָם","‛ăyâm","ah-yawm'","Of doubtful origin and authenticity; probably meaning strength: - mighty."]},{"k":"H5869","v":["עַיִן","‛ayin","ah'-yin","Probably a primitive word; an eye (literally or figuratively); by analogy a fountain (as the eye of the landscape): - affliction, outward appearance, + before, + think best, colour, conceit, + be content, countenance, + displease, eye ([-brow], [-d], -sight), face, + favour, fountain, furrow [from the margin], X him, + humble, knowledge, look, (+ well), X me, open (-ly), + (not) please, presence, + regard, resemblance, sight, X thee, X them, + think, X us, well, X you (-rselves)."]},{"k":"H5870","v":["עַיִן","‛ayin","ah'-yin","(Chaldee); corresponding to H5869; an eye: - eye."]},{"k":"H5871","v":["עַיִן","‛ayin","ah'-yin","The same as H5869; fountain; Ajin, the name (thus simply) of two places in Palestine: - Ain."]},{"k":"H5872","v":["עֵין גֶּדִי","‛êyn gedı̂y","ane geh'-dee","From H5869 and H1423; fountain of a kid; En-Gedi, a place in Palestine: - En-gedi."]},{"k":"H5873","v":["עֵין גַּנִּים","‛êyn gannı̂ym","ane gan-neem'","From H5869 and the plural of H1588; fountain of gardens; En-Gannim, a place in Palestine: - En-gannim."]},{"k":"H5874","v":["עֵין־דֹּר     עֵין דּוֹר    עֵין־דּאֹר","‛êyn-d'ôr    ‛êyn dôr    ‛êyn-dôr","ane-dore', ane dore, ane-dore'","From H5869 and H1755; fountain of dwelling; En-Dor, a place in Palestine: - En-dor."]},{"k":"H5875","v":["עֵין הַקּוֹרֵא","‛êyn haqqôrê'","ane hak-ko-ray'","From H5869 and the active participle of H7121; fountain of One calling; En-hak-Kore, a place near Palestine: - En-hakhore."]},{"k":"H5876","v":["עֵין חַדָּה","‛êyn chaddâh","ane khad-daw'","From H5869 and the feminine of a derivative from H2300; fountain of sharpness; En-Chaddah, a place in Palestine: - En-haddah."]},{"k":"H5877","v":["עֵין חָצוֹר","‛êyn châtsôr","ane khaw-tsore'","From H5869 and the same as H2674; fountain of a village; En-Chatsor, a place in Palestine: - En-hazor."]},{"k":"H5878","v":["עֵין חֲרֹד","‛êyn chărôd","ane khar-ode'","From H5869 and a derivative of H2729; fountain of trembling; En-Charod, a place in Palestine: - well of Harod."]},{"k":"H5879","v":["עֵינָם    עֵינַיִם","‛êynayim    ‛êynâm","ay-nah'-yim, ay-nawm'","Dual of H5869; double fountain; Enajim or Enam, a place in Palestine: - Enaim, openly (Gen. H38 : H21)."]},{"k":"H5880","v":["עֵין מִשְׁפָּט","‛êyn mishpâṭ","ane mish-pawt'","From H5869 and H4941; fountain of judgment; En-Mishpat, a place near Palestine: - En-mishpat."]},{"k":"H5881","v":["עֵינָן","‛êynân","ay-nawn'","From H5869; having eyes; Enan, an Israelite: - Enan. Compare H2704."]},{"k":"H5882","v":["עֵין עֶגְלַיִם","‛êyn ‛eglayim","ane eg-lah'-yim","From H5869 and the dual of H5695; fountain of two calves; En-Eglajim, a place in Palestine: - En-eglaim."]},{"k":"H5883","v":["עֵין רֹגֵל","‛êyn rôgêl","ane ro-gale'","From H5869 and the active participle of H7270; fountain of a traveller; En-Rogel, a place near Jerusalem: - En-rogel."]},{"k":"H5884","v":["עֵין רִמּוֹן","‛êyn rimmôn","ane rim-mone'","From H5869 and H7416; fountain of a pomegranate; En-Rimmon, a place in Palestine: - En-rimmon."]},{"k":"H5885","v":["עֵין שֶׁמֶשׁ","‛êyn shemesh","ane sheh'-mesh","From H5869 and H8121; fountain of the sun; En-Shemesh, a place in Palestine: - En-Shemesh."]},{"k":"H5886","v":["עֵין תַּנִּים","‛êyn tannı̂ym","ane tan-neem'","From H5869 and the plural of H8565; fountain of jackals; En-Tannim, a pool near Jerusalem: - dragon well."]},{"k":"H5887","v":["עֵין תַּפּוּחַ","‛êyn tapûach","ane tap-poo'-akh","From H5869 and H8598; fountain of an apple tree; En-Tappuach, a place in Palestine: - En-tappuah."]},{"k":"H5888","v":["עָיֵף","‛âyêph","aw-yafe'","A primitive root; to languish: - be wearied."]},{"k":"H5889","v":["עָיֵף","‛âyêph","aw-yafe'","From H5888; languid: - faint, thirsty, weary."]},{"k":"H5890","v":["עֵיפָה","‛êyphâh","ay-faw'","Feminine from H5774; obscurity (as if from covering): - darkness."]},{"k":"H5891","v":["עֵיפָה","‛êyphâh","ay-faw'","The same as H5890; Ephah, the name of a son of Midian, and of the region settled by him; also of an Israelite and of an Israelitess: - Ephah."]},{"k":"H5892","v":["עָיַר    עָר    עִיר","‛ı̂yr    ‛âr    ‛âyar","eer, awr, aw-yar'","From H5782 a city (a place guarded by waking or a watch) in the widest sense (even of a mere encampment or post): - Ai [from margin], city, court [from margin], town."]},{"k":"H5893","v":["עִיר","‛ı̂yr","eer","The same as H5892; Ir, an Israelite: - Ir."]},{"k":"H5894","v":["עִיר","‛ı̂yr","eer","(Chaldee); from a root corresponding to H5782; a watcher, that is, an angel (as guardian): - watcher."]},{"k":"H5895","v":["עַיִר","‛ayir","ah'-yeer","From H5782 in the sense of raising (that is, bearing a burden); properly a young ass (as just broken to a load); hence an ass colt: - (ass) colt, foal, young ass."]},{"k":"H5896","v":["עִירָא","‛ı̂yrâ'","ee-raw'","From H5782; wakefulness; Ira, the name of three Israelites: - Ira."]},{"k":"H5897","v":["עִירָד","‛ı̂yrâd","ee-rawd'","From the same as H6166; fugitive; Irad, an antediluvian: - Irad."]},{"k":"H5898","v":["עִיר הַמֶּלַח","‛ı̂yr hammelach","eer ham-meh'-lakh","From H5892 and H4417 with the article of substance interposed; city of (the) salt; Ir-ham-Melach, a place near Palestine: - the city of salt."]},{"k":"H5899","v":["עִיר הַתְּמָרִים","‛ı̂yr hattemârı̂ym","err hat-tem-aw-reem'","From H5892 and the plural of H8558 with the article interposed; city of the palmtrees; Ir-hat-Temarim, a place in Palestine: - the city of palmtrees."]},{"k":"H5900","v":["עִירוּ","‛ı̂yrû","ee-roo'","From H5892; a citizen; Iru, an Israelite: - Iru."]},{"k":"H5901","v":["עִירִי","‛ı̂yrı̂y","ee-ree'","From H5892; urbane; Iri, an Israelite: - Iri."]},{"k":"H5902","v":["עִירָם","‛ı̂yrâm","ee-rawm'","From H5892; citywise; Iram, an Idumaean: - Iram."]},{"k":"H5903","v":["עֵרֹם    עֵירֹם","‛êyrôm    ‛êrôm","ay-rome', ay-rome'","From H6191; nudity: - naked (-ness)."]},{"k":"H5904","v":["עִיר נָחָשׁ","‛ı̂yr nâchâsh","eer naw-khawsh'","From H5892 and H5175; city of a serpent; Ir-Nachash, a place in Palestine: - Ir-nahash."]},{"k":"H5905","v":["עִיר שֶׁמֶשׁ","‛ı̂yr shemesh","err sheh'-mesh","From H5892 and H8121; city of the sun; Ir-Shemesh, a place in Palestine: - Ir-shemesh."]},{"k":"H5906","v":["עָשׁ    עַיִשׁ","‛ayish    ‛âsh","ah'-yish, awsh","From H5789; the constellation of the Great Bear (perhaps from its migration through the heavens): - Arcturus."]},{"k":"H5907","v":["עַכְבּוֹר","‛akbôr","ak-bore'","Probably for H5909; Akbor, the name of an Idumaean and two Israelites: - Achbor."]},{"k":"H5908","v":["עַכָּבִישׁ","‛akkâbı̂ysh","ak-kaw-beesh'","Probably from an unused root in the literal sense of entangling; a spider (as weaving a network): - spider."]},{"k":"H5909","v":["עַכְבָּר","‛akbâr","ak-bawr'","Probably from the same as H5908 in the secondary sense of attacking; a mouse (as nibbling): - mouse."]},{"k":"H5910","v":["עַכּוֹ","‛akkô","ak-ko'","Apparently from an unused root meaning to hem in; Akko (from its situation on a bay): - Accho."]},{"k":"H5911","v":["עָכוֹר","‛âkôr","aw-kore'","From H5916; troubled; Akor, the name of a place in Palestine: - Achor."]},{"k":"H5912","v":["עָכָן","‛âkân","aw-kawn'","From an unused root meaning to trouble; troublesome; Akan, an Israelite: - Achan. Compare H5917."]},{"k":"H5913","v":["עָכַס","‛âkas","aw-kas'","A primitive root; properly to tie, specifically with fetters; but used only as denominative from H5914; to put on anklets: - make a tinkling ornament."]},{"k":"H5914","v":["עֶכֶס","‛ekes","eh'-kes","From H5913; a fetter; hence an anklet: - stocks, tinkling ornament."]},{"k":"H5915","v":["עַכְסָה","‛aksâh","ak-saw'","Feminine of H5914; anklet; Aksah, an Israelitess: - Achsah."]},{"k":"H5916","v":["עָכַר","‛âkar","aw-kar'","A primitive root; properly to roil water; figuratively to disturb or afflict: - trouble, stir."]},{"k":"H5917","v":["עָכָר","‛âkâr","aw-kawr'","From H5916; troublesome; Akar, an Israelite: - Achar. Compare H5912."]},{"k":"H5918","v":["עָכְרָן","‛okrân","ok-rawn'","From H5916; muddler; Okran, an Israelite: - Ocran."]},{"k":"H5919","v":["עַכְשׁוּב","‛akshûb","ak-shoob'","Probably from an unused root meaning to coil; an asp (from lurking coiled up): - adder."]},{"k":"H5920","v":["עַל","‛al","al","From H5927; properly the top; specifically the Highest (that is, God); also (adverbially) aloft, to Jehovah: - above, high, most High."]},{"k":"H5921","v":["עַל","‛al","al","Properly the same as H5920 used as a preposition (in the singular or plural, often with prefix, or as conjugation with a particle following); above, over, upon, or against (yet always in this last relation with a downward aspect) in a great variety of applications: - above, according to (-ly), after, (as) against, among, and, X as, at, because of, beside (the rest of), between, beyond the time, X both and, by (reason of), X had the charge of, concerning for, in (that), (forth, out) of, (from) (off), (up-) on, over, than, through (-out), to, touching, X with."]},{"k":"H5922","v":["עַל","‛al","al","(Chaldee); corresponding to H5921: - about, against, concerning, for, [there-] fore, from, in, X more, of, (there-, up-) on, (in-) to, + why with."]},{"k":"H5923","v":["עוֹל    עֹל","‛ôl    ‛ôl","ole, ole","From H5953; a yoke (as imposed on the neck), literally or figuratively: - yoke."]},{"k":"H5924","v":["עֵלָּא","‛êllâ'","ale-law'","(Chaldee); from H5922; above: - over."]},{"k":"H5925","v":["עֻלָּא","‛ûllâ'","ool-law'","Feminine of H5923; burden; Ulla, an Israelite: - Ulla."]},{"k":"H5926","v":["עִלֵּג","‛illêg","il-layg'","From an unused root meaning to stutter; stuttering: - stammerer."]},{"k":"H5927","v":["עָלָה","‛âlâh","aw-law'","A primitive root; to ascend, intransitively (be high) or active (mount); used in a great variety of senses, primary and secondary, literally and figuratively: - arise (up). (cause to) ascend up, at once, break [the day] (up), bring (up), (cause to) burn, carry up, cast up, + shew, climb (up), (cause to, make to) come (up), cut off, dawn, depart, exalt, excel, fall, fetch up, get up, (make to) go (away, up), grow (over), increase, lay, leap, levy, lift (self) up, light, [make] up, X mention, mount up, offer, make to pay, + perfect, prefer, put (on), raise, recover, restore, (make to) rise (up), scale, set (up), shoot forth (up), (begin to) spring (up), stir up, take away (up), work."]},{"k":"H5928","v":["עֲלָה","‛ălâh","al-aw'","(Chaldee); corresponding to H5930; a holocaust: - burnt offering."]},{"k":"H5929","v":["עָלֶה","‛âleh","aw-leh'","From H5927; a leaf (as coming up on a tree); collectively foliage: - branch, leaf."]},{"k":"H5930","v":["עוֹלָה    עֹלָה","‛ôlâh    ‛ôlâh","o-law', o-law'","Feminine active participle of H5927; a step or (collectively stairs, as ascending); usually a holocaust (as going up in smoke): - ascent, burnt offering (sacrifice), go up to. See also H5766."]},{"k":"H5931","v":["עִלָּה","‛illâh","il-law'","(Chaldee); feminine from a root corresponding to H5927; a pretext (as arising artificially): - occasion."]},{"k":"H5932","v":["עַלְוָה","‛alvâh","al-vaw'","From H5766; moral perverseness: - iniquity."]},{"k":"H5933","v":["עַלְיָה    עַלְוָה","‛alvâh    ‛alyâh","al-vaw', al-yaw'","The same as H5932; Alvah or Aljah, an Idumaean: - Aliah, Alvah."]},{"k":"H5934","v":["עָלוּם","‛âlûm","aw-loom'","Passive participle of H5956 in the denominative sense of H5958; (only in plural as abstraction) adolescence; figuratively vigor: - youth."]},{"k":"H5935","v":["עַלְיָן    עַלְוָן","‛alvân    ‛alyân","al-vawn', al-yawn'","From H5927; lofty; Alvan or Aljan, an Idumaean: - Alian, Alvan."]},{"k":"H5936","v":["עֲלוּקָה","‛ălûqâh","al-oo-kaw'","Feminine passive participle of an unused root meaning to suck; the leech: - horse-leech."]},{"k":"H5937","v":["עָלַז","‛âlaz","aw-laz'","A primitive root; to jump for joy, that is, exult: - be joyful, rejoice, triumph."]},{"k":"H5938","v":["עָלֵז","‛âlêz","aw-laze'","From H5937; exultant: - that rejoiceth."]},{"k":"H5939","v":["עֲלָטָה","‛ălâṭâh","al-aw-taw'","Feminine from an unused root meaning to cover; dusk: - dark, twilight."]},{"k":"H5940","v":["עֱלִי","‛ĕlı̂y","el-ee'","From H5927; a pestle (as lifted): - pestle."]},{"k":"H5941","v":["עֵלִי","‛êlı̂y","ay-lee'","From H5927; lofty; Eli, an Israelitish high priest: - Eli."]},{"k":"H5942","v":["עִלִּי","‛illı̂y","il-lee'","From H5927; high, that is, comparatively: - upper."]},{"k":"H5943","v":["עִלַּי","‛illay","il-lah'ee","(Chaldee); corresponding to H5942; supreme (that is, God): - (most) high."]},{"k":"H5944","v":["עֲלִיָּה","‛ălı̂yâh","al-ee-yaw'","Feminine from H5927; something lofty, that is, a stair way; also a second story room (or even one on the roof); figuratively the sky: - ascent, (upper) chamber, going up, loft, parlour."]},{"k":"H5945","v":["עֶלְיוֹן","‛elyôn","el-yone'","From H5927; an elevation, that is, (adjectively) lofty (comparatively); as title, the Supreme: - (Most, on) high (-er, -est), upper (-most)."]},{"k":"H5946","v":["עֶלְיוֹן","‛elyôn","el-yone'","(Chaldee); corresponding to H5945; the supreme: - Most high."]},{"k":"H5947","v":["עַלִּיז","‛allı̂yz","al-leez'","From H5937; exultant: - joyous, (that) rejoice (-ing)."]},{"k":"H5948","v":["עֲלִיל","‛ălı̂yl","al-eel'","From H5953 in the sense of completing; probably a crucible (as working over the metal): - furnace."]},{"k":"H5949","v":["עֲלִלָה    עֲלִילָה","‛ălı̂ylâh    ‛ălilâh","al-ee-law', al-ee-law'","From H5953 in the sense of effecting; an exploit (of God), or a performance (of man, often in a bad sense); by implication an opportunity: - act (-ion), deed, doing, invention, occasion, work."]},{"k":"H5950","v":["עֲלִילִיָּה","‛ălı̂ylı̂yâh","al-ee-lee-yaw'","From H5949; (miraculous) execution: - work."]},{"k":"H5951","v":["עֲלִיצוּת","‛ălı̂ytsûth","al-ee-tsooth'","From H5970; exultation: - rejoicing."]},{"k":"H5952","v":["עַלִּית","‛allı̂yth","al-leeth'","From H5927; a second story room: - chamber. Compare H5944."]},{"k":"H5953","v":["עָלַל","‛âlal","aw-lal'","A primitive root; to effect thoroughly; specifically to glean (also figuratively); by implication (in a bad sense) to overdo, that is, maltreat, be saucy to, pain, impose (also literally): - abuse, affect, X child, defile, do, glean, mock, practise, throughly, work (wonderfully)."]},{"k":"H5954","v":["עֲלַל","‛ălal","al-al'","(Chaldee); corresponding to H5953 (in the sense of thrusting oneself in), to enter; causatively to introduce: - bring in, come in, go in."]},{"k":"H5955","v":["עֹלֵלָה","‛ôlêlâh","o-lay-law'","Feminine active participle of H5953; only in plural gleanings; by extension gleaning time: - (gleaning) (of the) grapes,grapegleanings."]},{"k":"H5956","v":["עָלַם","‛âlam","aw-lam'","A primitive root; to veil from sight, that is, conceal (literally or figuratively): -    X any ways, blind, dissembler, hide (self), secret (thing)."]},{"k":"H5957","v":["עָלַם","‛âlam","aw-lam'","(Chaldee); corresponding to H5769; remote time, that is, the future or past indefinitely; often adverbially forever: - for([n-]) ever (lasting), old."]},{"k":"H5958","v":["עֶלֶם","‛elem","eh'-lem","From H5956; properly something kept out of sight (compare H5959), that is, a lad: - young man, stripling."]},{"k":"H5959","v":["עַלְמָה","‛almâh","al-maw'","Feminine of H5958; a lass (as veiled or private): - damsel, maid, virgin."]},{"k":"H5960","v":["עַלְמוֹן","‛almôn","al-mone'","From H5956; hidden; Almon, a place in Palestine: - See also H5963."]},{"k":"H5961","v":["עֲלָמוֹת","‛ălâmôth","al-aw-moth'","Plural of H5959; properly girls, that is, the soprano or female voice, perhaps falsetto: - Alamoth."]},{"k":"H5962","v":["עַלְמִי","‛almı̂y","al-mee'","(Chaldee); patrial from a name corresponding to H5867 contracted; an Elamite or inhabitant of Elam: - Elamite."]},{"k":"H5963","v":["עַלְמֹן דִּבְלָתָיְמָה","‛almôn diblâthâymâh","al-mone' dib-law-thaw'-yem-aw","From the same as H5960 and the dual of H1690 (compare H1015) with enclitic of direction; Almon towards Diblathajim; Almon Diblathajemah, a place in Moab: - Almon-diblathaim."]},{"k":"H5964","v":["עָלֶמֶת","‛âlemeth","aw-leh'-meth","From H5956; a covering; Alemeth, the name of a place in Palestine and two Israelites: - Alameth, Alemeth."]},{"k":"H5965","v":["עָלַס","‛âlas","aw-las'","A primitive root; to leap for joy, that is, exult, wave joyously: -    X peacock, rejoice, solace self."]},{"k":"H5966","v":["עָלַע","‛âla‛","aw-lah'","A primitive root; to sip up: - suck up."]},{"k":"H5967","v":["עֲלַע","‛ăla‛","al-ah'","(Chaldee); corresponding to H6763; a rib: - rib."]},{"k":"H5968","v":["עָלַף","‛âlaph","aw-laf'","A primitive root; to veil or cover; figuratively to be languid: - faint, overlaid, wrap self."]},{"k":"H5969","v":["עֻלְפֶּה","‛ûlpeh","ool-peh'","From H5968; an envelope, that is, (figuratively) mourning: - fainted."]},{"k":"H5970","v":["עָלַץ","‛âlats","aw-lats'","A primitive root; to jump for joy, that is, exult: - be joyful, rejoice, triumph."]},{"k":"H5971","v":["עַם","‛am","am","From H6004; a people (as a congregated unit); specifically a tribe (as those of Israel); hence (collectively) troops or attendants; figuratively a flock: - folk, men, nation, people."]},{"k":"H5972","v":["עַם","‛am","am","(Chaldee); corresponding to H5971: - people."]},{"k":"H5973","v":["עִם","‛im","eem","From H6004; adverb or preposition, with (that is, in conjunction with), in varied applications; specifically equally with; often with prepositional prefix (and then usually unrepresented in English): - accompanying, against, and, as (X long as), before, beside, by (reason of), for all, from (among, between), in, like, more than, of, (un-) to, with (-al)."]},{"k":"H5974","v":["עִם","‛im","eem","(Chaldee); corresponding to H5973: - by, from, like, to (-ward), with."]},{"k":"H5975","v":["עָמַד","‛âmad","aw-mad'","A primitive root; to stand, in various relations (literally and figuratively, intransitively and transitively): - abide (behind), appoint, arise, cease, confirm, continue, dwell, be employed, endure, establish, leave, make, ordain, be [over], place, (be) present (self), raise up, remain, repair, + serve, set (forth, over, -tle, up), (make to, make to be at a, with-) stand (by, fast, firm, still, up), (be at a) stay (up), tarry."]},{"k":"H5976","v":["עָמַד","‛âmad","aw-mad'","From H4571; to shake: - be at a stand."]},{"k":"H5977","v":["עֹמֶד","‛ômed","o'-med","From H5975; a spot (as being fixed): - place, (+ where) stood, upright."]},{"k":"H5978","v":["עִמָּד","‛immâd","im-mawd'","Prolonged for H5973; along with: - against, by, from, in, + me, + mine, of, + that I take, unto, upon, with (-n)."]},{"k":"H5979","v":["עֶמְדָּה","‛emdâh","em-daw'","From H5975; a station, that is, domicile: - standing."]},{"k":"H5980","v":["עֻמָּה","‛ûmmâh","oom-maw'","From H6004; conjunction, that is, society; mostly adverbial or prepositional (with prepositional prefix), near, beside, along with: - (over) against, at, beside, hard by, in points."]},{"k":"H5981","v":["עֻמָּה","‛ûmmâh","oom-maw'","The same as H5980; association; Ummah, a place in Palestine: - Ummah."]},{"k":"H5982","v":["עַמֻּד    עַמּוּד","‛ammûd    ‛ammûd","am-mood', am-mood'","From H5975; a column (as standing); also a stand, that is, platform: -    X apiece, pillar."]},{"k":"H5983","v":["עַמּוֹן","‛ammôn","am-mone'","From H5971; tribal, that is, inbred; Ammon, a son of Lot; also his posterity and their country: - Ammon, Ammonites."]},{"k":"H5984","v":["עַמּוֹנִי","‛ammônı̂y","am-mo-nee'","Patronymic from H5983; an Ammonite or (adjectively) Ammonitish: - Ammonite (-s)."]},{"k":"H5985","v":["עַמּוֹנִית","‛ammônı̂yth","am-mo-neeth'","Feminine of H5984; an Ammonitess: - Ammonite (-ss)."]},{"k":"H5986","v":["עָמוֹס","‛âmôs","aw-moce'","From H6006; burdensome; Amos, an Israelitish prophet: - Amos."]},{"k":"H5987","v":["עָמוֹק","‛âmôq","aw-moke'","From H6009; deep; Amok, an Israelite: - Amok."]},{"k":"H5988","v":["עַמִּיאֵל","‛ammı̂y'êl","am-mee-ale'","From H5971 and H410; people of God; Ammiel, the name of three or four Israelites: - Ammiel."]},{"k":"H5989","v":["עַמִּיהוּד","‛ammı̂yhûd","am-mee-hood'","From H5971 and H1935; people of splendor; Ammihud, the name of three Israelites: - Ammihud."]},{"k":"H5990","v":["עַמִּיזָבָד","‛ammı̂yzâbâd","am-mee-zaw-bawd'","From H5971 and H2064; people of endowment; Ammizabad, an Israelite: - Ammizabad."]},{"k":"H5991","v":["עַמִּיחוּר","‛ammı̂ychûr","am-mee-khoor'","From H5971 and H2353; people of nobility; Ammichur, a Syrian prince: - Ammihud [from the margin]."]},{"k":"H5992","v":["עַמִּינָדָב","‛ammı̂ynâdâb","am-mee-naw-dawb'","From H5971 and H5068; people of liberality; Amminadab, the name of four Israelites: - Amminadab."]},{"k":"H5993","v":["עַמִּי נָדִיב","‛ammı̂y nâdı̂yb","am-mee' naw-deeb'","From H5971 and H5081; my people (is) liberal; Amminadib, probably an Israelite: - Amminadib."]},{"k":"H5994","v":["עֲמִיק","‛ămı̂yq","am-eek'","(Chaldee); corresponding to H6012; profound, that is, unsearchable: - deep."]},{"k":"H5995","v":["עָמִיר","‛âmı̂yr","aw-meer'","From H6014; a bunch of grain: - handful, sheaf."]},{"k":"H5996","v":["עַמִּישַׁדַּי","‛ammı̂yshadday","am-mee-shad-dah'ee","From H5971 and H7706; people of (the) Almighty; Ammishaddai, an Israelite: - Ammishaddai."]},{"k":"H5997","v":["עָמִית","‛âmı̂yth","aw-meeth'","From a primitive root meaning to associate; companionship; hence (concretely) a comrade or kindred man: - another, fellow, neighbour."]},{"k":"H5998","v":["עָמַל","‛âmal","aw-mal'","A primitive root; to toil, that is, work severely and with irksomeness: - [take] labour (in)."]},{"k":"H5999","v":["עָמָל","‛âmâl","aw-mawl'","From H5998; toil, that is, wearing effort; hence worry, whether of body or mind: - grievance (-vousness), iniquity, labour, mischief, miserable (-sery), pain (-ful), perverseness, sorrow, toil, travail, trouble, wearisome, wickedness."]},{"k":"H6000","v":["עָמָל","‛âmâl","aw-mawl'","The same as H5999; Amal, an Israelite: - Amal."]},{"k":"H6001","v":["עָמֵל","‛âmêl","aw-male'","From H5998; toiling; concretely a laborer; figuratively sorrowful: - that laboureth, that is a misery, had taken [labour], wicked, workman."]},{"k":"H6002","v":["עֲמָלֵק","‛ămâlêq","am-aw-lake'","Probably of foreign origin; Amalek, a descendant of Esau; also his posterity and their country: - Amalek."]},{"k":"H6003","v":["עֲמָלֵקִי","‛ămâlêqı̂y","am-aw-lay-kee'","Patronymic from H6002; an Amalekite (or collectively the Amalekites) or descendant of Amalek: - Amalekite (-s)."]},{"k":"H6004","v":["עָמַם","‛âmam","aw-mam'","A primitive root; to associate; by implication to overshadow (by huddling together): - become dim, hide."]},{"k":"H6005","v":["עִמָּנוּאֵל","‛immânû'êl","im-maw-noo-ale'","From H5973 and H410 with suffix pronoun inserted; with us (is) God; Immanuel, a name of Isaiah’s son: - Immanuel."]},{"k":"H6006","v":["עָמַשׂ    עָמַס","‛âmas    ‛âmaś","aw-mas', aw-mas'","A primitive root; to load, that is, impose a burden (or figuratively infliction): - be borne, (heavy) burden (self), lade, load, put."]},{"k":"H6007","v":["עֲמַסְיָה","‛ămasyâh","am-as-yaw'","From H6006 and H3050; Jah has loaded; Amasjah, an Israelite: - Amasiah."]},{"k":"H6008","v":["עַמְעָד","‛am‛âd","am-awd'","From H5971 and H5703; people of time; Amad, a place in Palestine: - Amad."]},{"k":"H6009","v":["עָמַק","‛âmaq","aw-mak'","A primitive root; to be (causatively make) deep (literally or figuratively): - (be, have, make, seek) deep (-ly), depth, be profound."]},{"k":"H6010","v":["עֵמֶק","‛êmeq","ay'-mek","From H6009; a vale (that is, broad depression).: - dale, vale, valley [often used as a part of proper names]. See also H1025."]},{"k":"H6011","v":["עֹמֶק","‛ômeq","o'-mek","From H6009; depth: - depth."]},{"k":"H6012","v":["עָמֵק","‛âmêq","aw-make'","From H6009; deep (literally or figuratively): - deeper, depth, strange."]},{"k":"H6013","v":["עָמֹק","‛âmôq","aw-moke'","From H6009; deep (literally or figuratively): -    (X exceeding) deep (thing)"]},{"k":"H6014","v":["עָמַר","‛âmar","aw-mar'","A primitive root; properly apparently to heap; figuratively to chastise (as if piling blows); specifically (as denominative from H6016) to gather grain: - bind sheaves, make merchandise of."]},{"k":"H6015","v":["עֲמַר","‛ămar","am-ar'","(Chaldee); corresponding to H6785; wool: - wool."]},{"k":"H6016","v":["עֹמֶר","‛ômer","o'-mer","From H6014; properly a heap, that is, a sheaf; also an omer, as a dry measure: - omer, sheaf."]},{"k":"H6017","v":["עֲמֹרָה","‛ămôrâh","am-o-raw'","From H6014; a (ruined) heap; Amorah, a place in Palestine: - Gomorrah."]},{"k":"H6018","v":["עָמְרִי","‛omrı̂y","om-ree'","From H6014; heaping; Omri, an Israelite: - Omri."]},{"k":"H6019","v":["עַמְרָם","‛amrâm","am-rawm'","Probably from H5971 and H7311; high people; Amram, the name of two Israelites: - Amram."]},{"k":"H6020","v":["עַמְרָמִי","‛amrâmı̂y","am-raw-mee'","Patronymic from H6019; an Amramite or descendant of Amram: - Amramite."]},{"k":"H6021","v":["עֲמָשָׂא","‛ămâśâ'","am-aw-saw'","From H6006; burden; Amasa, the name of two Israelites: - Amasa."]},{"k":"H6022","v":["עֲמָשַׂי","‛ămâśay","am-aw-sah'ee","From H6006; burdensome; Amasai, the name of three Israelites: - Amasai."]},{"k":"H6023","v":["עֲמַשְׁסַי","‛ămashsay","am-ash-sah'ee","Probably form H6006; burdensome; Amashsay, an Israelite: - Amashai."]},{"k":"H6024","v":["עֲנָב","‛ănâb","an-awb'","From the same as H6025; fruit; Anab, a place in Palestine: - Anab."]},{"k":"H6025","v":["עֵנָב","‛ênâb","ay-nawb'","From an unused root probably meaning to bear fruit; a grape: - (ripe) grape, wine."]},{"k":"H6026","v":["עָנַג","‛ânag","aw-nag'","A primitive root; to be soft or pliable, that is, (figuratively) effeminate or luxurious: - delicate (-ness), (have) delight (self), sport self."]},{"k":"H6027","v":["עֹנֶג","‛ôneg","o'-neg","From H6026; luxury: - delight, pleasant."]},{"k":"H6028","v":["עָנֹג","‛ânôg","aw-nogue'","From H6026; luxurious: - delicate."]},{"k":"H6029","v":["עָנַד","‛ânad","aw-nad'","A primitive root; ot lace fast: - bind, tie."]},{"k":"H6030","v":["עָנָה","‛ânâh","aw-naw'","A primitive root; properly to eye or (generally) to heed, that is, pay attention; by implication to respond; by extension to begin to speak; specifically to sing, shout, testify, announce: - give account, afflict [by mistake for H6031], (cause to, give) answer, bring low [by mistake for H6031], cry, hear, Leannoth, lift up, say, X scholar, (give a) shout, sing (together by course), speak, testify, utter, (bear) witness. See also H1042, H1043."]},{"k":"H6031","v":["עָנָה","‛ânâh","aw-naw'","A primitive root (possibly rather identical with H6030 through the idea of looking down or browbeating); to depress literally or figuratively, transitively or intransitively (in various applications). (sing is by mistake for H6030.): - abase self, afflict (-ion, self), answer [by mistake for H6030], chasten self, deal hardly with, defile, exercise, force, gentleness, humble (self), hurt, ravish, sing [by mistake for H6030], speak [by mistake for H6030], submit self, weaken, X in any wise."]},{"k":"H6032","v":["עֲנָה","‛ănâh","an-aw'","(Chaldee); corresponding to H6030: - answer, speak."]},{"k":"H6033","v":["עֲנָה","‛ănâh","an-aw'","(Chaldee); corresponding to H6031: - poor."]},{"k":"H6034","v":["עֲנָה","‛ănâh","an-aw'","Probably form H6030; an answer; Anah, the name of two Edomites and one Edomitess: - Anah."]},{"k":"H6035","v":["עָנָיו    עָנָו","‛ânâv    ‛ânâyv","aw-nawv', aw-nawv'","The second form is by intermixture with H6041; from H6031; depressed (figuratively), in mind (gentle) or circumstances (needy, especially saintly): - humble, lowly, meek, poor`. Compare H6041."]},{"k":"H6036","v":["עָנוּב","‛ânûb","aw-noob'","Passive participle from the same as H6025; borne (as fruit); Anub, an Israelite: - Anub."]},{"k":"H6037","v":["עַנְוָה","‛anvâh","an-vaw'","Feminine of H6035; mildness (royal); also (concretely) oppressed: - gentleness, meekness."]},{"k":"H6038","v":["עֲנָוָה","‛ănâvâh","an-aw-vaw'","From H6035; condescension, human and subjective (modesty), or divine and objective (clemency): - gentleness, humility, meekness."]},{"k":"H6039","v":["עֱנוּת","‛ĕnûth","en-ooth'","From H6031; affliction: - affliction."]},{"k":"H6040","v":["עֳנִי","‛ŏnı̂y","on-ee'","From H6031; depression, that is, misery: - afflicted (-ion), trouble."]},{"k":"H6041","v":["עָנִי","‛ânı̂y","aw-nee'","From H6031; depressed, in mind or circumstances (practically the same as H6035 subjectively and H6041 objectively): - afflicted, humble`, lowly`, needy, poor."]},{"k":"H6042","v":["עֻנִּי","‛ûnnı̂y","oon-nee'","From H6031; afflicted; Unni, the name of two Israelites: - Unni."]},{"k":"H6043","v":["עֲנָיָה","‛ănâyâh","an-aw-yaw'","From H6030; Jah has answered; Anajah, the name of two Israelites: - Anaiah."]},{"k":"H6044","v":["עָנִים","‛ânı̂ym","aw-neem'","For the plural of H5869; fountains; Anim, a place in Palestine: - Anim."]},{"k":"H6045","v":["עִנְיָן","‛inyân","in-yawn'","From H6031; ado, that is, (generally) employment or (specifically) an affair: - business, travail."]},{"k":"H6046","v":["עָנֵם","‛ânêm","aw-name'","From the dual of H5869; two fountains; Anem, a place in Palestine: - Anem."]},{"k":"H6047","v":["עֲנָמִים","‛ănâmı̂ym","an-aw-meem'","As if plural of some Egyptian word; Anamim, a son of Mizraim and his descendants, with their country: - Anamim."]},{"k":"H6048","v":["עֲנַמֶּלֶךְ","‛ănammelek","an-am-meh'-lek","Of foreign origin; Anammelek, an Assyrian deity: - Anammelech."]},{"k":"H6049","v":["עָנַן","‛ânan","aw-nan'","A primitive root; to cover; used only as denominative from H6051, to cloud over; figuratively to act covertly, that is, practise magic: -    X bring, enchanter, Meonemin, observe (-r of) times, soothsayer, sorcerer."]},{"k":"H6050","v":["עֲנַן","‛ănan","an-an'","(Chaldee); corresponding to H6051: - cloud."]},{"k":"H6051","v":["עָנָן","‛ânân","aw-nawn'","From H6049; a cloud (as covering the sky), that is, the nimbus or thunder cloud: - cloud (-y)."]},{"k":"H6052","v":["עָנָן","‛ânân","aw-nawn'","The same as H6051; cloud; Anan, an Israelite: - Anan."]},{"k":"H6053","v":["עֲנָנָה","‛ănânâh","an-aw-naw'","Feminine of H6051; cloudiness: - cloud."]},{"k":"H6054","v":["עֲנָנִי","‛ănânı̂y","an-aw-nee'","From H6051; cloudy; Anani, an Israelite: - Anani."]},{"k":"H6055","v":["עֲנַנְיָה","‛ănanyâh","an-an-yaw'","From H6049 and H3050; Jah has covered; Ananjah, the name of an Israelite and of a place in Palestine: - Ananiah."]},{"k":"H6056","v":["עֶנֶף    עֲנַף","‛ănaph    ‛eneph","an-af', eh'-nef","(Chaldee); corresponding to H6057: - bough, branch."]},{"k":"H6057","v":["עָנָף","‛ânâph","aw-nawf'","From an unused root meaning to cover; a twig (as covering the limbs): - bough, branch."]},{"k":"H6058","v":["עָנֵף","‛ânêph","aw-nafe'","From the same as H6057; branching: - full of branches."]},{"k":"H6059","v":["עָנַק","‛ânaq","aw-nak'","A primitive root; properly to choke; used only as denominative from H6060, to collar, that is, adorn with a necklace; figuratively to fit out with supplies: - compass about as a chain, furnish, liberally."]},{"k":"H6060","v":["עָנָק","‛ânâq","aw-nawk'","From H6059; a necklace (as if strangling): - chain."]},{"k":"H6061","v":["עָנָק","‛ânâq","aw-nawk'","The same as H6060; Anak, a Canaanite: - Anak."]},{"k":"H6062","v":["עֲנָקִי","‛ănâqı̂y","an-aw-kee'","Patronymic from H6061; an Anakite or descendant of Anak: - Anakim."]},{"k":"H6063","v":["עָנֵר","‛ânêr","aw-nare'","Probably for H5288; Aner, an Amorite, also a place in Palestine: - Aner."]},{"k":"H6064","v":["עָנַשׁ","‛ânash","aw-nash'","A primitive root; properly to urge; by implication to inflict a penalty, specifically to fine: - amerce, condemn, punish, X surely."]},{"k":"H6065","v":["עֲנַשׁ","‛ănash","an-ash'","H1 (Chaldee); coresp. to H6066; a mulct: - confiscation."]},{"k":"H6066","v":["עֹנֶשׁ","‛ônesh","o'-nesh","From H6064; a fine: - punishment, tribute."]},{"k":"H6067","v":["עֲנָת","‛ănâth","an-awth'","From H6030; answer; Anath, an Israelite: - Anath."]},{"k":"H6068","v":["עֲנָתוֹת","‛ănâthôth","an-aw-thoth'","Plural of H6067; Anathoth, the name of two Israelites, also of a place in Palestine: - Anathoth."]},{"k":"H6069","v":["עַנְּתוֹתִי    עַנְתֹתִי","‛anthôthı̂y    ‛annethôthı̂y","an-tho-thee', an-ne-tho-thee'","Patrial from H6068; an Antothite or inhabitant of Anathoth: - of Anathoth, Anethothite, Anetothite, Antothite."]},{"k":"H6070","v":["עַנְתֹתִיָּה","‛anthôthı̂yâh","an-tho-thee-yaw'","From the same as H6068 and H3050; answers of Jah; Anthothijah, an Israelite: - Antothijah."]},{"k":"H6071","v":["עָסִיס","‛âsı̂ys","aw-sees'","From H6072; must or fresh grape juice (as just trodden out): - juice, new (sweet) wine."]},{"k":"H6072","v":["עָסַס","‛âsas","aw-sas'","A primitive root; to squeeze out juice; figuratively to trample: - tread down."]},{"k":"H6073","v":["עֳפֶא","‛ŏphe'","of-eh'","From an unused root meaning to cover; a bough (as covering the tree): - branch."]},{"k":"H6074","v":["עֳפִי","‛ŏphı̂y","of-ee'","(Chaldee); corresponding to H6073; a twig; bough, that is, (collectively) foliage: - leaves."]},{"k":"H6075","v":["עָפַל","‛âphal","aw-fal'","A primitive root; to swell; figuratively be elated: - be lifted up, presume."]},{"k":"H6076","v":["עֹפֶל","‛ôphel","o'-fel","From H6075; a turior; also a mound, that is, fortress: - emerod, fort, strong hold, tower."]},{"k":"H6077","v":["עֹפֶל","‛ôphel","o'-fel","The same as H6076; Ophel, a ridge in Jerusalem: - Ophel."]},{"k":"H6078","v":["עָפְנִי","‛ophnı̂y","of-nee'","From an unused noun (denoting a place in Palestine; from an unused root of uncertain meaning); an Ophnite (collectively) or inhabitant of Ophen: - Ophni."]},{"k":"H6079","v":["עַפְעַף","‛aph‛aph","af-af'","From H5774; an eyelash (as fluttering); figuratively morning ray: - dawning, eye-lid."]},{"k":"H6080","v":["עָפַר","‛âphar","aw-far'","A primitive root; meaning either to be gray or perhaps rather to pulverize; used only as denominative from H6083, to be dust: - cast [dust]."]},{"k":"H6081","v":["עֵפֶר","‛êpher","ay'-fer","Probably a variation of H6082; gazelle; Epher, the name of an Arabian and of two Israelites: - Epher."]},{"k":"H6082","v":["עֹפֶר","‛ôpher","o'-fer","From H6080; a fawn (from the dusty color): - young roe [hart]."]},{"k":"H6083","v":["עָפָר","‛âphâr","aw-fawr'","From H6080; dust (as powdered or gray); hence clay, earth, mud: - ashes, dust, earth, ground, morter, powder, rubbish."]},{"k":"H6084","v":["עָפְרָה","‛ophrâh","of-raw'","Feminine of H6082; female fawn; Ophrah, the name of an Israelite and of two places in Palestine: - Ophrah."]},{"k":"H6085","v":["עֶפְרוֹן","‛ephrôn","ef-rone'","From the same as H6081; fawn like; Ephron, the name of a Canaanite and of two places in Palestine: - Ephron, Ephrain [from the margin]."]},{"k":"H6086","v":["עֵץ","‛êts","ates","From H6095; a tree (from its firmness); hence wood (plural sticks): -    + carpenter, gallows, helve, + pine, plank, staff, stalk, stick, stock, timber, tree, wood."]},{"k":"H6087","v":["עָצַב","‛âtsab","aw-tsab'","A primitive root; properly to carve, that is, fabricate or fashion; hence (in a bad sense) to worry, pain or anger: - displease, grieve, hurt, make, be sorry, vex, worship, wrest."]},{"k":"H6088","v":["עֲצַב","‛ătsab","ats-ab'","(Chaldee); corresponding to H6087; to afflict: - lamentable."]},{"k":"H6089","v":["עֶצֶב","‛etseb","eh'-tseb","From H6087; an earthen vessel; usually (painful) toil; also a pang (whether of body or mind): - grievous, idol, labor, sorrow."]},{"k":"H6090","v":["עֹצֶב","‛ôtseb","o'-tseb","A variation of H6089; an idol (as fashioned); also pain (bodily or mental): - idol, sorrow, X wicked."]},{"k":"H6091","v":["עָצָב","‛âtsâb","aw-tsawb'","From H6087; an (idolatrous) image: - idol, image."]},{"k":"H6092","v":["עָצֵב","‛âtsêb","aw-tsabe'","From H6087; a (hired) workman: - labour."]},{"k":"H6093","v":["עִצָּבוֹן","‛itstsâbôn","its-tsaw-bone'","From H6087; worrisomeness, that is, labor or pain: - sorrow, toil."]},{"k":"H6094","v":["עַצֶּבֶת","‛atstsebeth","ats-tseh'-beth","From H6087; an idol; also a pain or wound: - sorrow, wound."]},{"k":"H6095","v":["עָצָה","‛âtsâh","aw-tsaw'","A primitive root; properly to fasten (or make firm), that is, to close (the eyes): - shut."]},{"k":"H6096","v":["עָצֶה","‛âtseh","aw-tseh'","From H6095; the spine (as giving firmness to the body): - back bone."]},{"k":"H6097","v":["עֵצָה","‛êtsâh","ay-tsaw'","Feminine of H6086; timber: - trees."]},{"k":"H6098","v":["עֵצָה","‛êtsâh","ay-tsaw'","From H3289; advice; by implication plan; also prudence: - advice, advisement, counsel ([-lor]), purpose."]},{"k":"H6099","v":["עָצֻם    עָצוּם","‛âtsûm    ‛âtsûm","aw-tsoom', aw-tsoom'","Passive participle of H6105; powerful (specifically a paw); by implication numerous: -  + feeble, great, mighty, must, strong."]},{"k":"H6100","v":["עֶצְיֹן גֶּבֶר    עֶצְיוֹן גּבֶר","‛etsyôn geber    ‛etsyôn geber","(both) ets-yone' gheh'-ber","From H6096 and H1397; backbone like of a man; Etsjon-Geber, a place on the Red Sea: - Ezion-gaber, Ezion-geber."]},{"k":"H6101","v":["עָצַל","‛âtsal","aw-tsal'","A primitive root; to lean idly, that is, to be indolent or slack: - be slothful."]},{"k":"H6102","v":["עָצֵל","‛âtsêl","aw-tsale","From H6101; indolent: - slothful, sluggard."]},{"k":"H6103","v":["עַצְלָה","‛atslâh","ats-law'","Feminine of H6102; (as abstraction) indolence: - slothfulness."]},{"k":"H6104","v":["עַצְלוּת","‛atslûth","ats-looth'","From H6101; indolence: - idleness."]},{"k":"H6105","v":["עָצַם","‛âtsam","aw-tsam'","A primitive root; to bind fast, that is, close (the eyes); intransitively to be (causatively make) powerful or numerous; denominatively (from H6106) to craunch the bones: - break the bones, close, be great, be increased, be (wax) mighty (-ier), be more, shut, be (-come, make) strong (-er)."]},{"k":"H6106","v":["עֶצֶם","‛etsem","eh'-tsem","From H6105; a bone (as strong); by extension the body; figuratively the substance, that is, (as pronoun) selfsame: - body, bone, X life, (self-) same, strength, X very."]},{"k":"H6107","v":["עֶצֶם","‛etsem","eh'-tsem","The same as H6106; bone; Etsem, a place in Palestine: - Azem, Ezem."]},{"k":"H6108","v":["עֹצֶם","‛ôtsem","o'-tsem","From H6105; power; hence body: - might, strong, substance."]},{"k":"H6109","v":["עָצְמָה","‛otsmâh","ots-maw'","Feminine of H6108; powerfulness; by extension numerousness: - abundance, strength."]},{"k":"H6110","v":["עַצֻּמָה","‛atstsûmâh","ats-tsoo-maw'","Feminine of H6099; a bulwark, that is, (figuratively) argument: - strong."]},{"k":"H6111","v":["עַצְמֹן    עַצְמוֹן","‛atsmôn    ‛atsmôn","ats-mone', ats-mone'","From H6107; bone like; Atsmon, a place near Palestine: - Azmon."]},{"k":"H6112","v":["עֵצֶן","‛êtsen","ay'-tsen","From an unused root meaning to be sharp or strong; a spear: - Eznite [from the margin]."]},{"k":"H6113","v":["עָצַר","‛âtsar","aw-tsar'","A primitive root; to inclose; by analogy to hold back; also to maintain, rule, assemble: -  X be able, close up, detain, fast, keep (self close, still), prevail, recover, refrain, X reign, restrain, retain, shut (up), slack, stay, stop, withhold (self)."]},{"k":"H6114","v":["עֶצֶר","‛etser","eh'-tser","From H6113; restraint: -  + magistrate."]},{"k":"H6115","v":["עֹצֶר","‛ôtser","o'-tser","From H6113; closure; also constraint: -  X barren, oppression, X prison."]},{"k":"H6116","v":["עֲצֶרֶת    עֲצָרָה","‛ătsârâh    ‛ătsereth","ats-aw-raw', ats-eh'-reth","From H6113; an assembly, especially on a festival or holiday: - (solemn) assembly (meeting)."]},{"k":"H6117","v":["עָקַב","‛âqab","aw-kab'","A primitive root; properly to swell out or up; used only as denominative from H6119, to seize by the heel; figuratively to circumvent (as if tripping up the heels); also to restrain (as if holding by the heel): - take by the heel, stay, supplant, X utterly."]},{"k":"H6118","v":["עֵקֶב","‛êqeb","ay'-keb","From H6117 in the sense of H6119; a heel, that is, (figuratively) the last of anything (used adverbially for ever); also result, that is, compensation; and so (adverbially with preposition or relatively) on account of: -    X because, by, end, for, if, reward."]},{"k":"H6119","v":["עִקְּבָה    עָקֵב","‛âqêb    ‛iqqebâh","aw-kabe', ik-keb-aw'","From H6117; a heel (as protuberant); hence a track; figuratively the rear (of an army). (lier in wait is by mistake for H6120.): - heel, [horse-] hoof, last, lier in wait [by mistake for H6120], (foot-) step."]},{"k":"H6120","v":["עָקֵב","‛âqêb","aw-kabe'","From H6117 in its denominative sense; a lier in wait. (heel is by mistake for H6119.): - heel [by mistake for H6119]."]},{"k":"H6121","v":["עָקֹב","‛âqôb","aw-kobe'","From H6117; in the original sense, a knoll (as swelling up); in the denominative sense (transitively) fraudulent or (intransitively) tracked: - crooked, deceitful, polluted."]},{"k":"H6122","v":["עָקְבָה","‛oqbâh","ok-baw'","Feminine of an unused form from H6117 meaning a trick; trickery: - subtilty."]},{"k":"H6123","v":["עָקַד","‛âqad","aw-kad'","A primitive root; to tie with thongs: - bind."]},{"k":"H6124","v":["עָקֹד","‛âqôd","aw-kode'","From H6123; striped (with bands): - ring straked."]},{"k":"H6125","v":["עָקָה","‛âqâh","aw-kaw'","From H5781; constraint: - oppression."]},{"k":"H6126","v":["עַקּוּב","‛aqqûb","ak-koob'","From H6117; insidious; Akkub, the name of five Israelites: - Akkub."]},{"k":"H6127","v":["עָקַל","‛âqal","aw-kal'","A primitive root; to wrest: - wrong."]},{"k":"H6128","v":["עֲקַלְקַל","‛ăqalqal","ak-al-kal'","From H6127; winding: - by [-way], crooked way."]},{"k":"H6129","v":["עֲקַלָּתוֹן","‛ăqallâthôn","ak-al-law-thone'","From H6127; tortuous: - crooked."]},{"k":"H6130","v":["עָקָן","‛âqân","aw-kawn'","From an unused root meaning to twist; tortuous; Akan, an Idumaean: - Akan. Compare H3292."]},{"k":"H6131","v":["עָקַר","‛âqar","aw-kar'","A primitive root; to pluck up (especially by the roots); specifically to hamstring; figuratively to exterminate: - dig down, hough, pluck up, root up."]},{"k":"H6132","v":["עֲקַר","‛ăqar","ak-ar'","(Chaldee); corresponding to H6131: - pluck up by the roots."]},{"k":"H6133","v":["עֵקֶר","‛êqer","ay'-ker","From H6131; figuratively a transplanted person, that is, naturalized citizen: - stock."]},{"k":"H6134","v":["עֵקֶר","‛êqer","ay'-ker","The same as H6133; Eker, an Israelite: - Eker."]},{"k":"H6135","v":["עָקָר","‛âqâr","aw-kawr'","From H6131; sterile (as if extirpated in the generative organs): -    (X male or female) barren (woman)."]},{"k":"H6136","v":["עִקַּר","‛iqqar","ik-kar'","(Chaldee); from H6132; a stock: - stump."]},{"k":"H6137","v":["עַקְרָב","‛aqrâb","ak-rawb'","Of uncertain derivation; a scorpion; figuratively a scourge or knotted whip: - scorpion."]},{"k":"H6138","v":["עֶקְרוֹן","‛eqrôn","ek-rone'","From H6131; eradication; Ekron, a place in Palestine: - Ekron."]},{"k":"H6139","v":["עֶקְרֹנִי    עֶקְרוֹנִי","‛eqrônı̂y    ‛eqrônı̂y","ek-ro-nee', ek-ro-nee'","Patrial from H6138; an Ekronite or inhabitant of Ekron: - Ekronite."]},{"k":"H6140","v":["עָקַשׁ","‛âqash","aw-kash'","A primitive root; to knot or distort; figuratively to pervert (act or declare perverse): - make crooked, (prove, that is) perverse (-rt)."]},{"k":"H6141","v":["עִקֵּשׁ","‛iqqêsh","ik-kashe'","From H6140; distorted; hence false: - crooked, froward, perverse."]},{"k":"H6142","v":["עִקֵּשׁ","‛iqqêsh","ik-kashe'","The same as H6141; perverse; Ikkesh, an Israelite: - Ikkesh."]},{"k":"H6143","v":["עִקְּשׁוּת","‛iqqeshûth","ik-kesh-ooth'","From H6141; perversity: -  X froward."]},{"k":"H6144","v":["עָר","‛âr","awr","The same as H5892; a city; Ar, a place in Moab: - Ar."]},{"k":"H6145","v":["עָר","‛âr","awr","From H5782; a foe (as watchful for mischief): - enemy."]},{"k":"H6146","v":["עָר","‛âr","awr","(Chaldee); corresponding to H6145: - enemy."]},{"k":"H6147","v":["עֵר","‛êr","ayr","From H5782; watchful; Er, the name of two Israelites: - Er."]},{"k":"H6148","v":["עָרַב","‛ârab","aw-rab'","A primitive root; to braid, that is, intermix; technically to traffic (as if by barter); also to give or be security (as a kind of exchange): - engage, (inter-) meddle (with), mingle (self), mortgage, occupy, give pledges, be (-come, put in) surety, undertake."]},{"k":"H6149","v":["עָרֵב","‛ârêb","aw-rabe'","A primitive root (rather identical with H6148 through the idea of close association); to be agreeable: - be pleasant (-ing), take pleasure in, be sweet."]},{"k":"H6150","v":["עָרַב","‛ârab","aw-rab'","A primitive root (rather identical with H6148 through the idea of covering with a texture); to grow dusky at sundown: - be darkened, (toward) evening."]},{"k":"H6151","v":["עֲרַב","‛ărab","ar-ab'","(Chaldee); corresponding to H6148; to commingle: - mingle (self), mix."]},{"k":"H6152","v":["עֲרַב    עֲרָב","‛ărâb    ‛ărab","ar-ab', ar-awb'","From H6150 in the figuratively sense of sterility; Arab (that is, Arabia), a country East of Palestine: - Arabia."]},{"k":"H6153","v":["עֶרֶב","‛ereb","eh'-reb","From H6150; dusk: -  + day, even (-ing, tide), night."]},{"k":"H6154","v":["עֶרֶב    עֵרֶב","‛êreb    ‛ereb","ay'-reb, eh'-reb","The second form used in 1Ki_10:15 with the article prefixed); from H6148; the web (or transverse threads of cloth); also a mixture, (or mongrel race): - Arabia, mingled people, mixed (multitude), woof."]},{"k":"H6155","v":["עָרָב","‛ârâb","aw-rawb'","From H6148; a willow (from the use of osiers as wattles): - willow."]},{"k":"H6156","v":["עָרֵב","‛ârêb","aw-rabe'","From H6149; pleasant: - sweet."]},{"k":"H6157","v":["עָרֹב","‛ârôb","aw-robe'","From H6148; a mosquito (from its swarming): - divers sorts or flies, swarm."]},{"k":"H6158","v":["עוֹרֵב    עֹרֵב","‛ôrêb    ‛ôrêb","o-rabe', o-rabe'","From H6150; a raven (from its dusky hue): - raven."]},{"k":"H6159","v":["עוֹרֵב    עֹרֵב","‛ôrêb    ‛ôrêb","o-rabe', o-rabe'","The same as H6158; Oreb, the name of a Midianite and of a cliff near the Jordan: - Oreb."]},{"k":"H6160","v":["עֲרָבָה","‛ărâbâh","ar-aw-baw'","From H6150 (in the sense of sterility); a desert; especially (with the article prefixed) the (generally) sterile valley of the Jordan and its continuation to the Red Sea: - Arabah, champaign, desert, evening, heaven, plain, wilderness. See also H1026."]},{"k":"H6161","v":["עֲרֻבָּה","‛ărûbbâh","ar-oob-baw'","Feminine passive participle of H6048 in the sense of a bargain or exchange; something given as security, that is, (literally) a token (of safety) or (metaphorically) a bondsman: - pledge, surety."]},{"k":"H6162","v":["עֲרָבוֹן","‛ărâbôn","ar-aw-bone'","From H6148 (in the sense of exchange); a pawn (given as security): - pledge."]},{"k":"H6163","v":["עַרְבִי    עֲרָבִי","‛ărâbı̂y    ‛arbı̂y","ar-aw-bee', ar-bee'","Patrial from H6152; an Arabian or inhabitant of Arab (that is, Arabia): - Arabian."]},{"k":"H6164","v":["עַרְבָתִי","‛arbâthı̂y","ar-baw-thee'","Patrial from H1026; an Arbathite or inhabitant of (Beth-) Arabah: - Arbathite."]},{"k":"H6165","v":["עָרַג","‛ârag","aw-rag'","A primitive root; to long for: - cry, pant."]},{"k":"H6166","v":["עֲרָד","‛ărâd","ar-awd'","From an unused root meaning to sequester itself; fugitive; Arad, the name of a place near Palestine, also of a Canaanite and an Israelite: - Arad."]},{"k":"H6167","v":["עֲרָד","‛ărâd","ar-awd'","(Chaldee); corresponding to H6171; an onager: - wild ass."]},{"k":"H6168","v":["עָרָה","‛ârâh","aw-raw'","A primitive root; to be (causatively make) bare; hence to empty, pour out, demolish: - leave destitute, discover, empty, make naked, pour (out), rase, spread self, uncover."]},{"k":"H6169","v":["עָרָה","‛ârâh","aw-raw'","Feminine from H6168; a naked (that is, level) plot: - paper reed."]},{"k":"H6170","v":["עֲרֻגָה    עֲרוּגָה","‛ărûgâh    ‛ărûgâh","ar-oo-gaw', ar-oo-gaw'","Feminine passive participle of H6165; something piled up (as if (figuratively) raised by mental aspiration), that is, a parterre: - bed, furrow."]},{"k":"H6171","v":["עָרוֹד","‛ârôd","aw-rode'","From the same as H6166; an onager (from his lonesome habits): - wild ass."]},{"k":"H6172","v":["עֶרְוָה","‛ervâh","er-vaw'","From H6168; nudity, literally (especially the pudenda) or figuratively (disgrace, blemish): - nakedness, shame, unclean (-ness)."]},{"k":"H6173","v":["עַרְוָה","‛arvâh","ar-vaw'","(Chaldee); corresponding to H6172; nakedness, that is, (figuratively) impoverishment: - dishonour."]},{"k":"H6174","v":["עָרֹם    עָרוֹם","‛ârôm    ‛ârôm","aw-rome', aw-rome'","From H6191 (in its original sense); nude, either partially or totally: - naked."]},{"k":"H6175","v":["עָרוּם","‛ârûm","aw-room'","Passive participle of H6191; cunning (usually in a bad sense): - crafty, prudent, subtil."]},{"k":"H6176","v":["עַרְעָר    עֲרוֹעֵר","‛ărô‛êr    ‛ar‛âr","ar-o-ayr', ar-awr'","From H6209 reduplicated; a juniper (from its nudity of situation): - heath."]},{"k":"H6177","v":["עַרְעוֹר    עֲרֹעֵר    עֲרוֹעֵר","‛ărô‛êr    ‛ărô‛êr    ‛ar‛ôr","ar-o-ayr', ar-o-ayr', ar-ore'","The same as H6176; nudity of situation; Aroer, the name of three places in or near Palestine: - Aroer."]},{"k":"H6178","v":["עָרוּץ","‛ârûts","aw-roots'","Passive participle of H6206; feared, that is, (concretely) a horrible place or chasm: - cliffs."]},{"k":"H6179","v":["עֵרִי","‛êrı̂y","ay-ree'","From H5782; watchful; Eri, an Israelite: - Eri."]},{"k":"H6180","v":["עֵרִי","‛êrı̂y","ay-ree'","Patronymic of H6179; an Erite (collectively) or descendant of Eri: - Erites."]},{"k":"H6181","v":["עֶרְיָה","‛eryâh","er-yaw'","For H6172; nudity: - bare, naked, X quite."]},{"k":"H6182","v":["עֲרִיסָה","‛ărı̂ysâh","ar-ee-saw'","From an unused root meaning to comminute; meal: - dough."]},{"k":"H6183","v":["עָרִיף","‛ârı̂yph","aw-reef'","From H6201; the sky (as drooping at the horizon): - heaven."]},{"k":"H6184","v":["עָרִיץ","‛ârı̂yts","aw-reets'","From H6206; fearful, that is, powerful or tyrannical: - mighty, oppressor, in great power, strong, terrible, violent."]},{"k":"H6185","v":["עֲרִירִי","‛ărı̂yrı̂y","ar-ee-ree'","From H6209; bare, that is, destitute (of children): - childless."]},{"k":"H6186","v":["עָרַךְ","‛ârak","aw-rak'","A primitive root; to set in a row, that is, arrange, put in order (in a very wide variety of applications): - put (set) (the battle, self) in array, compare, direct, equal, esteem, estimate, expert [in war], furnish, handle, join [battle], ordain, (lay, put, reckon up, set) (in) order, prepare, tax, value."]},{"k":"H6187","v":["עֵרֶךְ","‛êrek","eh'-rek","From H6186; a pile, equipment, estimate: - equal, estimation, (things that are set in) order, price, proportion, X set at, suit, taxation, X valuest."]},{"k":"H6188","v":["עָרֵל","‛ârêl","aw-rale'","A primitive root; properly to strip; but used only as denominative from H6189; to expose or remove the prepuce, whether literally (to go naked) or figuratively (to refrain from using): - count uncircumcised, foreskin to be uncovered."]},{"k":"H6189","v":["עָרֵל","‛ârêl","aw-rale'","From H6188; properly exposed, that is, projecting loose (as to the prepuce); used only technically uncircumcised (that is, still having the prepuce uncurtailed): - uncircumcised (person)."]},{"k":"H6190","v":["עָרְלָה","‛orlâh","or-law'","Feminine of H6189; the prepuce: - foreskin, + uncircumcised."]},{"k":"H6191","v":["עָרַם","‛âram","aw-ram'","A primitive root; properly to be (or make) bare; but used only in the derived sense (through the idea perhaps of smoothness) bo be cunning (usually in a bad sense): -    X very, beware, take crafty [counsel], be prudent, deal subtilly."]},{"k":"H6192","v":["עָרַם","‛âram","aw-ram'","A primitive root; to pile up: - gather together."]},{"k":"H6193","v":["עֹרֶם","‛ôrem","o'-rem","From H6191; a stratagem: - craftiness."]},{"k":"H6194","v":["עֲרֵמָה    עָרֵם","‛ârêm    ‛ărêmâh","aw-rame', ar-ay-maw'","From H6192; a heap; specifically a sheaf: - heap (of corn), sheaf."]},{"k":"H6195","v":["עָרְמָה","‛ormâh","or-maw'","Feminine of H6193; trickery; or (in a good sense) discretion: - guile, prudence, subtilty, wilily, wisdom."]},{"k":"H6196","v":["עַרְמוֹן","‛armôn","ar-mone'","Probably from H6191; the plane tree (from its smooth and shed bark): - chestnut tree."]},{"k":"H6197","v":["עֵרָן","‛êrân","ay-rawn'","Probably from H5782; watchful; Eran, an Israelite: - Eran."]},{"k":"H6198","v":["עֵרָנִי","‛êrânı̂y","ay-raw-nee'","Patronymic from H6197; an Eranite or descendant (collectively) of Eran: - Eranites."]},{"k":"H6199","v":["עַרעָר","‛ar‛âr","ar-awr'","From H6209; naked, that is, (figuratively) poor: - destitute. See also H6176."]},{"k":"H6200","v":["עֲרֹעֵרִי","‛ărô‛êrı̂y","ar-o-ay-ree'","Patronymic from H6177; an Aroerite or inhabitant of Aroer: - Aroerite."]},{"k":"H6201","v":["עָרַף","‛âraph","aw-raf'","A primitive root; to droop; hence to drip: - drop (down)."]},{"k":"H6202","v":["עָרַף","‛âraph","aw-raf'","A primitive root (rather identical with H6201 through the idea of sloping); properly to bend downward; but used only as a denominative from H6203, to break the neck; hence (figuratively) to destroy: - that is beheaded, break down, break (cut off, strike off) neck."]},{"k":"H6203","v":["עֹרֶף","‛ôreph","o-ref'","From H6202; the nape or back of the neck (as declining); hence the back generally (whether literally or figuratively): - back ([stiff-]) neck ([-ed])."]},{"k":"H6204","v":["עָרְפָּה","‛orpâh","or-paw'","Feminine of H6203; mane; Orpah, a Moabitess: - Orpah."]},{"k":"H6205","v":["עֲרָפֶל","‛ărâphel","ar-aw-fel'","Probably from H6201; gloom (as of a lowering sky): - (gross, thick) dark (cloud, -ness)."]},{"k":"H6206","v":["עָרַץ","‛ârats","aw-rats'","A primitive root; to awe or (intransitively) to dread; hence to harass: - be affrighted (afraid, dread, feared, terrified), break, dread, fear, oppress, prevail, shake terribly."]},{"k":"H6207","v":["עָרַק","‛âraq","aw-rak'","A primitive root; to gnaw, that is, (figuratively) eat (by hyberbole); also (participle) a pain: - fleeing, sinew."]},{"k":"H6208","v":["עַרְקִי","‛arqı̂y","ar-kee'","Patrial from an unused name meaning a tush; an Arkite or inhabitant of Erek: - Arkite."]},{"k":"H6209","v":["עָרַר","‛ârar","aw-rar'","A primitive root; to bare; figuratively to demolish: - make bare, break, raise up [perhaps by clerical error for raze], X utterly."]},{"k":"H6210","v":["עֶרֶשׂ","‛ereś","eh'-res","From an unused root meaning perhaps to arch; a couch (properly with a canopy): - bed (-stead), couch."]},{"k":"H6211","v":["עֲשַׂב    עָשׁ","‛âsh    ‛ăsab","awsh, as-ab'","From H6244; a moth: - moth. (The second form is Chaldee, from H6212 and is translated grass)"]},{"k":"H6212","v":["עֶשֶׂב","‛eśeb","eh'-seb","From an unused root meaning to glisten (or be green); grass (or any tender shoot): - grass, herb."]},{"k":"H6213","v":["עָשָׂה","‛âśâh","aw-saw'","A primitive root; to do or make, in the broadest sense and widest application: - accomplish, advance, appoint, apt, be at, become, bear, bestow, bring forth, bruise, be busy, X certainly, have the charge of, commit, deal (with), deck, + displease, do, (ready) dress (-ed), (put in) execute (-ion), exercise, fashion, + feast, [fight-] ing man, + finish, fit, fly, follow, fulfil, furnish, gather, get, go about, govern, grant, great, + hinder, hold ([a feast]), X indeed, + be industrious, + journey, keep, labour, maintain, make, be meet, observe, be occupied, offer, + officer, pare, bring (come) to pass, perform, practise, prepare, procure, provide, put, requite, X sacrifice, serve, set, shew, X sin, spend, X surely, take, X thoroughly, trim, X very, + vex, be [warr-] ior, work (-man), yield, use."]},{"k":"H6214","v":["עֲשָׂהאֵל","‛ăśâh'êl","as-aw-ale'","From H6213 and H410; God has made; Asahel, the name of four Israelites: - Asahel."]},{"k":"H6215","v":["עֵשָׂו","‛êśâv","ay-sawv'","Apparently a form of the passive participle of H6213 in the original sense of handling; rough (that is, sensibly felt); Esav, a son of Isaac, including his posterity: - Esau."]},{"k":"H6216","v":["עָשׁוֹק","‛âshôq","aw-shoke'","From H6231; oppressive (as noun, a tyrant): - oppressor."]},{"k":"H6217","v":["עָשֻׁק    עָשׁוּק","‛âshûq    ‛âshûq","aw-shook', aw-shook'","Passive participle of H6231; used in plural masculine as abstraction tyranny: - oppressed (-ion). [Doubtful.]"]},{"k":"H6218","v":["עָשׂר    עָשׂוֹר","‛âśôr    ‛âśôr","aw-sore', aw-sore'","From H6235; ten; by abbreviation ten strings, and so a decachord: - (instrument of) ten (strings, -th)."]},{"k":"H6219","v":["עָשׁוֹת","‛âshôth","aw-shoth'","From H6245; shining, that is, polished: - bright."]},{"k":"H6220","v":["עשׁות","‛Ashvâth","ash-vawth'","For H6219; bright; Ashvath, an Israelite: - Ashvath."]},{"k":"H6221","v":["עֲשִׂיאֵל","‛ăśı̂y'êl","as-ee-ale'","From H6213 and H410; made of God; Asiel, an Israelite: - Asiel."]},{"k":"H6222","v":["עֲשָׂיָה","‛ăśâyâh","aw-saw-yaw'","From H6213 and H3050; Jah has made; Asajah, the name of three or four Israelites: - Asaiah."]},{"k":"H6223","v":["עָשִׁיר","‛âshı̂yr","aw-sheer'","From H6238; rich, whether literally or figuratively (noble): - rich (man)"]},{"k":"H6224","v":["עֲשִׂירִי","‛ăśı̂yrı̂y","as-ee-ree'","From H6235; tenth; by abbreviation tenth month or (feminine) part: - tenth (participle)."]},{"k":"H6225","v":["עָשַׁן","‛âshan","aw-shan'","A primitive root; to smoke, whether literally or figuratively: - be angry (be on a) smoke."]},{"k":"H6226","v":["עָשֵׁן","‛âshên","aw-shane'","From H6225; smoky: - smoking."]},{"k":"H6227","v":["עָשָׁן","‛âshân","aw-shawn'","From H6225; smoke, literally or figuratively (vapor, dust, anger): - smoke (-ing)."]},{"k":"H6228","v":["עָשָׁן","‛âshân","aw-shawn'","The same as H6227; Ashan, a place in Palestine: - Ashan."]},{"k":"H6229","v":["עָשַׂק","‛âśaq","aw-sak'","A primitive root (identical with H6231); to press upon, that is, quarrel: - strive with."]},{"k":"H6230","v":["עֵשֶׂק","‛êśeq","ay'-sek","From H6229; strife: - Esek."]},{"k":"H6231","v":["עָשַׁק","‛âshaq","aw-shak'","A primitive root (compare H6229); to press upon, that is, oopress, defraud, violate, overflow: - get deceitfully, deceive, defraud, drink up, (use) oppress ([-ion], -or), do violence (wrong)."]},{"k":"H6232","v":["עֵשֶׁק","‛êsheq","ay-shek'","From H6231; oppression; Eshek, an Israelite: - Eshek."]},{"k":"H6233","v":["עֹשֶׁק","‛ôsheq","o'-shek","From H6231; injury, fraud, (subjectively) distress, (concretely) unjust gain: - cruelly, extortion, oppression, thing [deceitfully gotten]."]},{"k":"H6234","v":["עָשְׁקָה","‛oshqâh","osh-kaw'","Feminine of H6233; anguish: - oppressed."]},{"k":"H6235","v":["עֲשָׂרָה    עֶשֶׂר","‛eśer    ‛ăśârâh","eh'-ser, as-aw-raw'","From H6237; ten (as an accumulation to the extent of the digits): - ten, [fif-, seven-] teen."]},{"k":"H6236","v":["עֲשְׂרָה    עֲשַׂר","‛ăśar    ‛ăśrâh","as-ar', as-raw'","(Chaldee); corresponding to H6235; ten: - ten, + twelve."]},{"k":"H6237","v":["עָשַׂר","‛âśar","aw-sar'","A primitive root (identical with H6238); to accumulate; but used only as denominative from H6235; to tithe, that is, take or give a tenth: -    X surely, give (take) the tenth, (have, take) tithe (-ing, -s), X truly."]},{"k":"H6238","v":["עָשַׁר","‛âshar","aw-shar'","A primitive root; properly to accumulate; chiefly (specifically) to grow (causatively make) rich: - be (-come, en-, make, make self, wax) rich, make [H1 Kings H22 : H48 margin]. See H6240."]},{"k":"H6239","v":["עֹשֶׁר","‛ôsher","o'-sher","From H6238; wealth: -  X far [richer], riches."]},{"k":"H6240","v":["עָשָׂר","‛âśâr","aw-sawr'","For H6235; ten (only in combination), that is, the “teens”; also (ordinal) a “teenth”: - [eigh-, fif-, four-, nine-, seven-, six-, thir-] teen (-th), + eleven (-th), + sixscore thousand, + twelve (-th)."]},{"k":"H6241","v":["עִשָּׂרֹן    עִשָּׂרוֹן","‛iśśârôn    ‛iśśârôn","is-saw-rone', is-saw-rone'","From H6235; (fractional) a tenth part: - tenth deal."]},{"k":"H6242","v":["עֶשְׂרִים","‛eśrı̂ym","es-reem'","From H6235; twenty; also (ordinal) twentieth: - [six-] score, twenty (-ieth)."]},{"k":"H6243","v":["עֶשְׂרִין","‛eśrı̂yn","es-reen'","(Chaldee); corresponding to H6242: - twenty."]},{"k":"H6244","v":["עָשֵׁשׁ","‛âshêsh","aw-shaysh'","A primitive root; probably to shrink, that is, fail: - be consumed."]},{"k":"H6245","v":["עָשַׁת","‛âshath","aw-shath'","A primitive root; probably to be sleek, that is, glossy; hence (through the idea of polishing) to excogitate (as if forming in the mind): - shine, think."]},{"k":"H6246","v":["עֲשִׁת","‛ăshith","ash-eeth'","(Chaldee); corresponding to H6245; to purpose: - think."]},{"k":"H6247","v":["עֶשֶׁת","‛esheth","eh'-sheth","From H6245; a fabric: - bright."]},{"k":"H6248","v":["עַשְׁתּוּת","‛ashtûth","ash-tooth'","From H6245; cogitation: - thought."]},{"k":"H6249","v":["עַשְׁתֵּי","‛ashtêy","ash-tay'","Apparently masculine plural construction of H6247 in the sense of an after thought; (used only in connection with H6240 in lieu of H259) eleven or (ordinal) eleventh: -  + eleven (-th)."]},{"k":"H6250","v":["עֶשְׁתֹּנָה","‛eshtônâh","esh-to-naw'","From H6245; thinking: - thought."]},{"k":"H6251","v":["עַשְׁתְּרָה","‛ashterâh","ash-ter-aw'","Probably from H6238; increase: - flock."]},{"k":"H6252","v":["עַשְׁתָּרֹת    עַשְׁתָּרוֹת","‛ashtârôth    ‛ashtârôth","ash-taw-roth', ash-taw-roth'","Plural of H6251; Ashtaroth, the name of a Sidonian deity, and of a place East of the Jordan: - Ashtaroth, Astaroth. See also H1045, H6253, H6255."]},{"k":"H6253","v":["עַשְׁתֹּרֶת","‛ashtôreth","ash-to'-reth","Probably for H6251; Ashtoreth, the Phoenician goddess of love (and increase): - Ashtoreth."]},{"k":"H6254","v":["עַשְׁתְּרָתִי","‛ashterâthı̂y","ash-ter-aw-thee'","Patrial from H6252; an Ashterathite or inhabitant of Ashtaroth: - Ashterathite."]},{"k":"H6255","v":["עַשְׁתְּרֹת    קַרְנַיִם","‛ashterôth qarnayim","ash-ter-oth' kar-nah'-yim","From H6252 and the dual of H7161; Ashtaroth of (the) double horns (a symbol of the deity); Ashteroth Karnaim, a place East of the Jordan: - Ashtoreth Karnaim."]},{"k":"H6256","v":["עֵת","‛êth","ayth","From H5703; time, especially (adverbially with preposition) now, when, etc.: -    + after, [al-] ways, X certain, + continually, + evening, long, (due) season, so [long] as, [even-, evening-, noon-] tide, ([meal-], what) time, when."]},{"k":"H6257","v":["עָתַד","‛âthad","aw-thad'","A primitive root; to prepare: - make fit, be ready to become."]},{"k":"H6258","v":["עַתָּה","‛attâh","at-taw'","From H6256; at this time, whether adverbial, conjugational or expletive: - henceforth, now, straightway, this time, whereas."]},{"k":"H6259","v":["עָתוּד","‛âthûd","aw-thood'","Passive participle of H6257; prepared: - ready, treasures."]},{"k":"H6260","v":["עַתֻּד    עַתּוּד","‛attûd    ‛attûd","at-tood', at-tood'","From H6257; prepared, that is, full grown; spoken only (in plural) of he goats, or (figuratively) leaders of the people: - chief one, (he) goat, ram."]},{"k":"H6261","v":["עִתִּי","‛ittı̂y","it-tee'","From H6256; timely: - fit."]},{"k":"H6262","v":["עַתַּי","‛attay","at-tah'ee","From H6261; Attai, the name of three Israelites: - Attai."]},{"k":"H6263","v":["עֲתִיד","‛ăthı̂yd","ath-eed'","(Chaldee); corresponding to H6264; prepared: - ready."]},{"k":"H6264","v":["עָתִיד","‛âthı̂yd","aw-theed'","From H6257; prepared; by implication skilful; feminine plural the future; also treasure: - things that shall come, ready, treasures."]},{"k":"H6265","v":["עֲתָיָה","‛ăthâyâh","ath-aw-yaw'","From H5790 and H3050; Jah has helped; Athajah, an Israelite: - Athaiah."]},{"k":"H6266","v":["עָתִיק","‛âthı̂yq","aw-theek'","From H6275; properly antique, that is, venerable or splendid: - durable."]},{"k":"H6267","v":["עַתִּיק","‛attı̂yq","at-teek'","From H6275; removed, that is, weaned; also antique: - ancient, drawn."]},{"k":"H6268","v":["עַתִּיק","‛attı̂yq","at-teek'","(Chaldee); corresponding to H6267; venerable: - ancient."]},{"k":"H6269","v":["עֲתָךְ","‛ăthâk","ath-awk'","From an unused root meaning to sojourn; lodging; Athak, a place in Palestine: - Athach."]},{"k":"H6270","v":["עַתְלַי","‛athlay","ath-lah'ee","From an unused root meaning to compress; constringent; Athlai, an Israelite: - Athlai."]},{"k":"H6271","v":["עֲתַלְיָהוּ    עֲתַלְיָה","‛ăthalyâh    ‛ăthalyâhû","ath-al-yaw', ath-al-yaw'-hoo","From the same as H6270 and H3050; Jah has constrained; Athaljah, the name of an Israelitess and two Israelites: - Athaliah."]},{"k":"H6272","v":["עָתַם","‛âtham","aw-tham'","A primitive root; probably to glow, that is, (figuratively) be desolated: - be darkened."]},{"k":"H6273","v":["עָתְנִי","‛othnı̂y","oth-nee'","From an unused root meaning to force; forcible; Othni, an Israelite: - Othni."]},{"k":"H6274","v":["עָתְנִיאֵל","‛othnı̂y'êl","oth-nee-ale'","From the same as H6273 and H410; force of God; Othniel, an Israelite: - Othniel."]},{"k":"H6275","v":["עָתַק","‛âthaq","aw-thak'","A primitive root; to remove (intransitively or transitively); figuratively to grow old; specifically to transcribe: - copy out, leave off, become (wax) old, remove."]},{"k":"H6276","v":["עָתֵק","‛âthêq","aw-thake'","From H6275; antique, that is, valued: - durable."]},{"k":"H6277","v":["עָתָק","‛âthâq","aw-thawk'","From H6275 in the sense of license; impudent: - arrogancy, grievous (hard) things, stiff."]},{"k":"H6278","v":["עֵת    קָצִין","‛êth qâtsı̂yn","ayth kaw-tseen'","From H6256 and H7011; time of a judge; Eth-Katsin, a place in Palestine. (Formed by including the directive enclitic.): - Ittah-kazin [by includ. directive enclitic]."]},{"k":"H6279","v":["עָתַר","‛âthar","aw-thar'","A primitive root (rather denominative from H6281); to burn incense in worship, that is, intercede (reciprocally listen to prayer): - intreat, (make) pray (-er)."]},{"k":"H6280","v":["עָתַר","‛âthar","aw-thar'","A primitive root; to be (causatively make) abundant: - deceitful, multiply."]},{"k":"H6281","v":["עֶתֶר","‛ether","eh'-ther","From H6280; abundance; Ether, a place in Palestine: - Ether."]},{"k":"H6282","v":["עָתָר","‛âthâr","aw-thawr'","From H6280; incense (as increasing to a volume of smoke); hence (from H6279) a worshipper: - suppliant, thick."]},{"k":"H6283","v":["עֲתֶרֶת","‛ăthereth","ath-eh'-reth","From H6280; copiousness: - abundance."]},{"k":"H6284","v":["פָּאָה","pâ'âh","paw-aw'","A primitive root; to puff, that is, blow away: - scatter into corners."]},{"k":"H6285","v":["פֵּאָה","pê'âh","pay-aw'","Feminine of H6311; properly mouth in a figurative sense, that is, direction, region, extremity: - corner, end, quarter, side."]},{"k":"H6286","v":["פָּאַר","pâ'ar","paw-ar'","A primitive root; to gleam, that is, (causatively) embellish; figuratively to boast; also to explain (that is, make clear) oneself; denominatively from H6288, to shake a tree: - beautify, boast self, go over the boughs, glorify (self), glory, vaunt self."]},{"k":"H6287","v":["פְּאֵר","pe'êr","peh-ayr'","From H6286; an embellishment, that is, fancy head dress: - beauty, bonnet, goodly, ornament, tire."]},{"k":"H6288","v":["פֻּארָה    פֹּרָאה    פְּאֹרָה","pe'ôrâh    pôrâ'h    pû'râh","peh-o-raw', po-raw', poo-raw'","From H6286; properly ornamentation, that is, (plural) foliage (including the limbs) as bright green: - bough, branch, sprig."]},{"k":"H6289","v":["פָּארוּר","pâ'rûr","paw-roor'","From H6286; properly illuminated, that is, a glow; as noun, a flush (of anxiety): - blackness."]},{"k":"H6290","v":["פָּארָן","pâ'rân","paw-rawn'","From H6286; ornamental; Paran, a desert of Arabia: - Paran."]},{"k":"H6291","v":["פַּג","pag","pag","From an unused root meaning to be torpid, that is, crude; an unripe fig: - green fig."]},{"k":"H6292","v":["פִּגֻּל    פִּגּוּל","piggûl    piggûl","pig-gool', pig-gool'","From an unused root meaning to stink; properly fetid, that is, (figuratively) unclean (ceremonially): - abominable (-tion, thing)."]},{"k":"H6293","v":["פָּגַע","pâga‛","paw-gah'","A primitive root; to impinge, by accident or violence, or (figuratively) by importunity: - come (betwixt), cause to entreat, fall (upon), make intercession, intercessor, intreat, lay, light [upon], meet (together), pray, reach, run."]},{"k":"H6294","v":["פֶּגַע","pega‛","peh'-gah","From H6293; impact (casual): - chance, occurrent."]},{"k":"H6295","v":["פַּגְעִיאֵל","pag‛ı̂y'êl","pag-ee-ale'","From H6294 and H410; accident of God; Pagiel, an Israelite: - Pagiel."]},{"k":"H6296","v":["פָּגַר","pâgar","paw-gar'","A primitive root; to relax, that is, become exhausted: - be faint."]},{"k":"H6297","v":["פֶּגֶר","peger","peh'-gher","From H6296; a carcase (as limp), whether of man or beast; figuratively an idolatrous image: - carcase, corpse, dead body."]},{"k":"H6298","v":["פָּגַשׁ","pâgash","paw-gash'","A primitive root; to come in contact with, whether by accident or violence; figuratively to concur: - meet (with, together)."]},{"k":"H6299","v":["פָּדָה","pâdâh","paw-daw'","A primitive root; to sever, that is, ransom; generally to release, preserve: -  X at all, deliver, X by any means, ransom, (that are to be, let be) redeem (-ed), rescue, X surely."]},{"k":"H6300","v":["פְּדַהְאֵל","pedah'êl","ped-ah-ale'","From H6299 and H410; God has ransomed; Pedahel, an Israelite: - Pedahel."]},{"k":"H6301","v":["פְּדָהצוּר","pedâhtsûr","ped-aw-tsoor'","From H6299 and H6697; a rock (that is, God) has ransomed; Pedahtsur, an Israelite: - Pedahzur."]},{"k":"H6302","v":["פָּדוּי","pâdûy","paw-doo'ee","Passive participle of H6299; ransomed (and so occuring under H6299); as abstraction (in plural masculine) a ransom: - (that are) to be (that were) redeemed."]},{"k":"H6303","v":["פָּדוֹן","pâdôn","paw-done'","From H6299; ransom; Padon, one of the Nethinim: - Padon."]},{"k":"H6304","v":["פְּדֻת    פְּדוּת","pedûth    pedûth","ped-ooth', ped-ooth'","From H6929; distinction; also deliverance: - division, redeem, redemption."]},{"k":"H6305","v":["פְּדָיָהוּ    פְּדָיָה","pedâyâh    pedâyâhû","ped-aw-yaw', ped-aw-yaw'-hoo","From H6299 and H3050; Jah has ransomed; Pedajah, the name of six Israelites: - Pedaiah."]},{"k":"H6306","v":["פִּדְיֹן    פִּדְיוֹן    פִּדְיֹם    פִּדְיוֹם","pidyôm    pidyôm    pidyôn    pidyôn","(1,2) pid-yome', (3,4) pid-yone'","From H6299; a ransom: - ransom, that were redeemed, redemption."]},{"k":"H6307","v":["פַדַּן אֲרָם    פַּדָּן","paddân    paddan 'ărâm","pad-dawn', pad-dan' ar-awm'","From an unused root meaning to extend; a plateau; or the second form which is from the same and H758; the table land of Aram; Paddan or Paddan-Aram, a region of Syria: - Padan, Padan-aram."]},{"k":"H6308","v":["פָּדַע","pâda‛","paw-dah'","A primitive root; to retrieve: - deliver."]},{"k":"H6309","v":["פֶּדֶר","peder","peh'-der","From an unused root meaning to be greasy; suet: - fat."]},{"k":"H6310","v":["פֶּה","peh","peh","From H6284; the mouth (as the means of blowing), whether literally or figuratively (particularly speech); specifically edge, portion or side; adverbially (with preposition) according to: - accord (-ing as, -ing to), after, appointment, assent, collar, command (-ment), X eat, edge, end, entry, + file, hole, X in, mind, mouth, part, portion, X (should) say (-ing), sentence, skirt, sound, speech, X spoken, talk, tenor, X to, + two-edged, wish, word."]},{"k":"H6311","v":["פּוֹ    פֹּא    פֹּה","pôh    pô'    pô","po, po, po","Probably from a primitive inseparable particle פּ p (the second form; of demonstrative force) and H1931; this place (French, icil), that is, here or hence: - here, hither, the one (other, this, that) side."]},{"k":"H6312","v":["פֻּוָּה    פּוּאָה","pû'âh    pûvvâh","poo-aw', poov-vaw'","From H6284; a blast; Puah or Puvvah, the name of two Israelites: - Phuvah, Pua, Puah."]},{"k":"H6313","v":["פּוּג","pûg","poog","A primitive root; to be sluggish: - cease, be feeble, faint, be slacked."]},{"k":"H6314","v":["פּוּגָה","pûgâh","poo-gaw'","From H6313; intermission: - rest."]},{"k":"H6315","v":["פּוּחַ","pûach","poo'-akh","A primitive root; to puff, that is, blow with the breath or air; hence to fan (as a breeze), to utter, to kindle (a fire), to scoff: - blow (upon), break, puff, bring into a snare, speak, utter."]},{"k":"H6316","v":["פּוּט","pûṭ","poot","Of foreign origin; Put, a son of Ham, also the name of his descendants or thier region, and of a Persian tribe: - Phut, Put."]},{"k":"H6317","v":["פּוּטִיאֵל","pûṭı̂y'êl","poo-tee-ale'","From an unused root (probably meaning to disparage) and H410; contempt of God; Putiel, an Israelite: - Putiel."]},{"k":"H6318","v":["פּוֹטִיפַר","pôṭı̂yphar","po-tee-far'","Of Egyptian derivation; Potiphar, an Egyptian: - Potiphar."]},{"k":"H6319","v":["פּוֹטִי פֶרַע","pôṭı̂y phera‛","po'-tee feh'-rah","Of Egyptian derivation; Poti-Phera, an Egyptian: - Poti-pherah."]},{"k":"H6320","v":["פּוּךְ","pûk","pook","From an unused root meaning to paint; dye (specifically stibium for the eyes): - fair colours, glistering, paint [-ed] (-ing)."]},{"k":"H6321","v":["פּוֹל","pôl","pole","From an unused root meaning to be thick; a bean (a plump): - beans."]},{"k":"H6322","v":["פּוּל","pûl","pool","Of foreign origin; Pul, the name of an Assyrian king and of an Ethiopian tribe: - Pul."]},{"k":"H6323","v":["פּוּן","pûn","poon","A primitive root meaning to turn, that is, be perplexed: - be distracted."]},{"k":"H6324","v":["פּוּנִי","pûnı̂y","poo-nee'","Patronymic from an unused name meaning a turn; a Punite (collectively) or descendant of an unknown Pun: - Punites."]},{"k":"H6325","v":["פּוּנֹן","pûnôn","poo-none'","From H6323; perplexity; Punon, a place in the Desert: - Punon."]},{"k":"H6326","v":["פּוּעָה","pû‛âh","poo-aw'","From an unused root meaning to glitter; brilliancy; Puah, an Israelitess: - Puah."]},{"k":"H6327","v":["פּוּץ","pûts","poots","A primitive root; to dash in pieces, literally or figuratively (especially to disperse): - break (dash, shake) in (to) pieces, cast (abroad), disperse (selves), drive, retire, scatter (abroad), spread abroad."]},{"k":"H6328","v":["פּוּק","pûq","pook","A primitive root; to waver: - stumble, move."]},{"k":"H6329","v":["פּוּק","pûq","pook","A primitive root (rather identical with H6328 through the idea of dropping out; compare H5312); to issue, that is, furnish; causatively to secure; figuratively to succeed: - afford, draw out, further, get, obtain."]},{"k":"H6330","v":["פּוּקָה","pûqâh","poo-kaw'","From H6328; a stumbling block: - grief."]},{"k":"H6331","v":["פּוּר","pûr","poor","A primitive root; to crush: - break, bring to nought, X utterly take."]},{"k":"H6332","v":["פֻּרִים    פּוּרִים    פּוּר","pûr    pûrı̂ym    pûrı̂ym","poor, poo-reem', poo-reem'","From H6331; a lot (as by means of a broken piece): - Pur, Purim."]},{"k":"H6333","v":["פּוּרָה","pûrâh","poo-raw'","From H6331; a wine press (as crushing the grapes): - winepress."]},{"k":"H6334","v":["פּוֹרָתָא","pôrâthâ'","po-raw-thaw'","Of Persian origin; Poratha, a son of Haman: - Poratha."]},{"k":"H6335","v":["פּוּשׁ","pûsh","poosh","A primitive root; to spread; figuratively act proudly: - grow up, be grown fat, spread selves, be scattered."]},{"k":"H6336","v":["פּוּתִי","pûthı̂y","poo-thee'","Patronymic from an unused name meaning a hinge; a Puthite (collectively) or descendant of an unknown Puth. (As if from H6312.): - Puhites [as if from H6312]."]},{"k":"H6337","v":["פָּז","pâz","pawz","From H6388; pure (gold); hence gold itself (as refined): - fine (pure) gold."]},{"k":"H6338","v":["פָּזַז","pâzaz","paw-zaz'","A primitive root; to refine (gold): - best [gold]."]},{"k":"H6339","v":["פָּזַז","pâzaz","paw-zaz'","A primitive root (rather identical with H6338); to solidify (as if by refining); also to spring (as if separating the limbs): - leap, be made strong."]},{"k":"H6340","v":["פָּזַר","pâzar","paw-zar'","A primitive root; to scatter, whether in enmity or bounty: - disperse, scatter (abroad)."]},{"k":"H6341","v":["פַּח","pach","pakh","From H6351; a (metallic) sheet (as pounded thin); also a spring net (as spread out like a lamina): - gin, (thin) plate, snare."]},{"k":"H6342","v":["פָּחַד","pâchad","paw-khad'","A primitive root; to be startled (by a sudden alarm); hence to fear in general: - be afraid, stand in awe, (be in) fear, make to shake."]},{"k":"H6343","v":["פַּחַד","pachad","pakh'-ad","From H6342; a (sudden) alarm (properly the object feared, by implication the feeling): - dread (-ful), fear, (thing) great [fear, -ly feared], terror."]},{"k":"H6344","v":["פַּחַד","pachad","pakh'-ad","The same as H6343; a testicle (as a cause of shame akin to fear): - stone."]},{"k":"H6345","v":["פַּחְדָּה","pachdâh","pakh-daw'","Feminine of H6343; alarm (that is, awe): - fear."]},{"k":"H6346","v":["פֶּחָה","pechâh","peh-khaw'","Of foreign origin; a prefect (of a city or small district): - captain, deputy, governor."]},{"k":"H6347","v":["פֶּחָה","pechâh","peh-khaw'","(Chaldee); corresponding to H6346: - captain, governor."]},{"k":"H6348","v":["פָּחַז","pâchaz","paw-khaz'","A primitive root; to bubble up or froth (as boiling water), that is, (figuratively) to be unimportant: - light."]},{"k":"H6349","v":["פַּחַז","pachaz","pakh'-az","From H6348; ebullition, that is, froth (figuratively lust): - unstable."]},{"k":"H6350","v":["פַּחֲזוּת","pachăzûth","pakh-az-ooth'","From H6348; frivolity: - lightness."]},{"k":"H6351","v":["פָּחַח","pâchach","paw-khakh'","A primitive root; to batter out; but used only as denominative from H6341, to spread a net: - be snared."]},{"k":"H6352","v":["פֶּחָם","pechâm","peh-khawm'","Perhaps from an unused root probably meaning to be black; a coal, whether charred or live: - coals."]},{"k":"H6353","v":["פֶּחָר","pechâr","peh-khawr'","(Chaldee); from an unused root probably meaning to fashion; a potter: - potter."]},{"k":"H6354","v":["פַּחַת","pachath","pakh'-ath","Probably from an unused root apparently meaning to dig; a pit, especially for catching animals: - hole, pit, snare."]},{"k":"H6355","v":["פַּחַת מוֹאָב","pachath mô'âb","pakh'-ath mo-awb'","From H6354 and H4124; pit of Moab; Pachath Moab, an Israelite: - Pahath-moab."]},{"k":"H6356","v":["פְּחֶתֶת","pechetheth","pekh-eh'-theth","From the same as H6354; a hole (by mildew in a garment): - fret inward."]},{"k":"H6357","v":["פִּטְדָה","piṭdâh","pit-daw'","Of foreign derivation; a gem, probably the topaz: - topaz."]},{"k":"H6358","v":["פָּטוּר","pâṭûr","paw-toor'","Passive participle of H6362; opened, that is, (as noun) a bud: - open."]},{"k":"H6359","v":["פָּטִיר","pâṭı̂yr","paw-teer'","From H6362; open, that is, unoccupied: - free."]},{"k":"H6360","v":["פַּטִּישׁ","paṭṭı̂ysh","pat-teesh'","Intensive from an unused root meaning to pound; a hammer: - hammer."]},{"k":"H6361","v":["פַּטִּישׁ","paṭṭı̂ysh","pat-teesh'","(Chaldee); from a root corresponding to that of H6260; a gown (as if hammered out wide): - hose."]},{"k":"H6362","v":["פָּטַר","pâṭar","paw-tar'","A primitive root; to cleave or burst through, that is, (causatively) to emit, whether literally or figuratively (gape): - dismiss, free, let (shoot) out, slip away."]},{"k":"H6363","v":["פִּטְרָה    פֶּטֶר","peṭer    piṭrâh","peh'-ter, pit-raw'","From H6362; a fissure, that is, (concretely) firstling (as opening the matrix): - firstling, openeth, such as open."]},{"k":"H6364","v":["פִּי־בֶסֶת","pı̂y-beseth","pee beh'-seth","Of Egyptian origin; Pi-Beseth, a place in Egypt: - Pi-beseth."]},{"k":"H6365","v":["פִּיד","pı̂yd","peed","From an unused root probably meaning to pierce; (figuratively) misfortune: - destruction, ruin."]},{"k":"H6366","v":["פִּיָּה    פֵּיָה","pêyâh    pı̂yâh","pay-aw', pee-yaw'","Feminine of H6310; an edge: - (two-) edge (-d)."]},{"k":"H6367","v":["פִּי הַחִרֹת","pı̂y hachirôth","pee hah-khee-roth'","From H6310 and the feminine plural of a noun (from the same root as H2356), with the article interposed; mouth of the gorges; Pi-ha-Chiroth, a place in Egypt. (Found in Num_14:19 without the “pi”.): - Pi-hahiroth. [In Num. H14 : H19 without Pi-.]"]},{"k":"H6368","v":["פִּיחַ","pı̂yach","pee'-akh","From H6315; a powder (as easily puffed away), that is, ashes or dust: - ashes."]},{"k":"H6369","v":["פִּיכֹל","pı̂ykôl","pee-kole'","Apparently from H6310 and H3605; mouth of all; Picol, a Phillistine: - Phichol."]},{"k":"H6370","v":["פִּלֶגֶשׁ    פִּילֶגֶשׁ","pı̂ylegesh    pilegesh","pee-leh'-ghesh, pee-leh'-ghesh","Of uncertain derivation; a concubine; also (masculine) a paramour: - concubine, paramour."]},{"k":"H6371","v":["פִּימָה","pı̂ymâh","pee-maw'","Probably from an unused root meaning to be plump; obesity: - collops."]},{"k":"H6372","v":["פִּינְחָס","pı̂ynechâs","pee-nekh-aws'","Apparently from H6310 and a variation of H5175; mouth of a serpent; Pinechas, the name of three Israelites: - Phinehas."]},{"k":"H6373","v":["פִּינֹן","pı̂ynôn","pee-none'","Probably the same as H6325; Pinon, an Idumaean: - Pinon."]},{"k":"H6374","v":["פִּיפִיָּה","pı̂yphı̂yâh","pee-fee-yaw'","For H6366; an edge or tooth: - tooth, X two-edged"]},{"k":"H6375","v":["פִּיק","pı̂yq","peek","From H6329; a tottering: - smite together."]},{"k":"H6376","v":["פִּישׁוֹן","pı̂yshôn","pee-shone'","From H6335; dispersive; Pishon, a river of Eden: - Pison."]},{"k":"H6377","v":["פִּיתוֹן","pı̂ythôn","pee-thone'","Probably from the same as H6596; expansive; Pithon, an Israelite: - Pithon."]},{"k":"H6378","v":["פַּךְ","pak","pak","From H6379; a flask (from which a liquid may flow): - box, vial."]},{"k":"H6379","v":["פָּכָה","pâkâh","paw-kaw'","A primitive root; to pour: - run out."]},{"k":"H6380","v":["פֹּכֶרֶת    צְבָיִים","pôkereth tsebâyı̂ym","po-keh'-reth tseb-aw-yeem'","From the active participle (of the same form as the first word) feminine of an unused root (meaning to entrap) and plural of H6643; trap of gazelles; Pokereth Tsebajim, one of the servants of Solomon: - Pochereth of Zebaim."]},{"k":"H6381","v":["פָּלָא","pâlâ'","paw-law'","A primitive root; properly perhaps to separate, that is, distinguish (literally or figuratively); by implication to be (causatively make) great, difficult, wonderful: - accomplish, (arise . . . too, be too) hard, hidden, things too high, (be, do, do a, shew) marvelous (-ly, -els, things, work), miracles, perform, separate, make singular, (be, great, make) wonderful (-ers, -ly, things, works), wondrous (things, works, -ly)."]},{"k":"H6382","v":["פֶּלֶא","pele'","peh'-leh","From H6381; a miracle: - marvellous thing, wonder (-ful, -fully)."]},{"k":"H6383","v":["פָּלִיא    פִּלְאִי","pil'ı̂y    pâlı̂y'","pil-ee', paw-lee'","From H6381; remarkable: - secret, wonderful."]},{"k":"H6384","v":["פַּלֻּאִי","pallû'ı̂y","pal-loo-ee'","Patronymic from H6396; a Palluite (collectively) or descendant of Pallu: - Palluites."]},{"k":"H6385","v":["פָּלַג","pâlag","paw-lag'","A primitive root; to split (literally or figuratively): - divide."]},{"k":"H6386","v":["פְּלַג","pelag","pel-ag'","(Chaldee); corresponding to H6385: - divided."]},{"k":"H6387","v":["פְּלַג","pelag","pel-ag'","(Chaldee); from H6386; a half: - dividing."]},{"k":"H6388","v":["פֶּלֶג","peleg","peh'-leg","From H6385; a rill (that is, small channel of water, as in irrigation): - river, stream."]},{"k":"H6389","v":["פֶּלֶג","peleg","peh'-leg","The same as H6388; earthquake; Peleg, a son of Shem: - Peleg."]},{"k":"H6390","v":["פְּלַגָּה","pelaggâh","pel-ag-gaw'","From H6385; a runlet, that is, gully: - division, river."]},{"k":"H6391","v":["פְּלֻגָּה","pelûggâh","pel-oog-gaw'","From H6385; a section: - division."]},{"k":"H6392","v":["פְּלֻגָּה","pelûggâh","pel-oog-gaw'","(Chaldee); corresponding to H6391: - division."]},{"k":"H6393","v":["פְּלָדָה","pelâdâh","pel-aw-daw'","From an unused root meaning to divide; a cleaver, that is, iron armature (of a chariot): - torch."]},{"k":"H6394","v":["פִּלְדָּשׁ","pildâsh","pil-dawsh'","Of uncertain derivation; Pildash, a relative of Abraham: - Pildash."]},{"k":"H6395","v":["פָּלָה","pâlâh","paw-law'","A primitive root; to distinguish (literally or figuratively): - put a difference, show marvellous, separate, set apart, sever, make wonderfully."]},{"k":"H6396","v":["פַּלּוּא","pallû'","pal-loo'","From H6395; distinguished; Pallu, an Israelite: - Pallu, Phallu."]},{"k":"H6397","v":["פְּלוֹנִי","pelônı̂y","pel-o-nee'","Patronymic from an unused name (from H6395) meaning separate; a Pelonite or inhabitant of an unknown Palon: - Pelonite."]},{"k":"H6398","v":["פָּלַח","pâlach","paw-lakh'","A primitive root; to slice, that is, break open or pierce: - bring forth, cleave, cut, shred, strike through."]},{"k":"H6399","v":["פְּלַח","pelach","pel-akh'","(Chaldee); corresponding to H6398; to serve or worship: - minister, serve."]},{"k":"H6400","v":["פֶּלַח","pelach","peh'-lakh","From H6398; a slice: - piece."]},{"k":"H6401","v":["פִּלְחָא","pilchâ'","pil-khaw'","From H6400; slicing; Pilcha, an Israelite: - Pilcha."]},{"k":"H6402","v":["פָּלְחָן","polchân","pol-khawn'","(Chaldee); from H6399; worship: - service."]},{"k":"H6403","v":["פָּלַט","pâlaṭ","paw-lat'","A primitive root; to slip out, that is, escape; causatively to deliver: - calve, carry away safe, deliver, (cause to) escape."]},{"k":"H6404","v":["פֶּלֶט","peleṭ","peh'-let","From H6403; escape; Pelet, the name of two Israelites: - Pelet. See also H1046."]},{"k":"H6405","v":["פַּלֵּט","pallêṭ","pal-late'","From H6403; escape: - deliverance, escape."]},{"k":"H6406","v":["פַּלְטִי","palṭı̂y","pal-tee'","From H6403; delivered; Palti, the name of two Israelites: - Palti, Phalti."]},{"k":"H6407","v":["פַּלְטִי","palṭı̂y","pal-tee'","Patronymic from H6406; a Paltite or descendant of Palti: - Paltite."]},{"k":"H6408","v":["פִּלְטַי","pilṭay","pil-tah'ee","For H6407; Piltai, an Israelite: - Piltai."]},{"k":"H6409","v":["פַּלְטִיאֵל","palṭı̂y'êl","pal-tee-ale'","From the same as H6404 and H410; deliverance of God; Paltiel, the name of two Israelites: - Paltiel, Phaltiel."]},{"k":"H6410","v":["פְּלַטְיָהוּ    פְּלַטְיָה","pelaṭyâh    pelaṭyâhû","pel-at-yaw', pel-at-yaw'-hoo","From H6403 and H3050; Jah has delivered; Pelatjah, the name of four Israelites: - Pelatiah."]},{"k":"H6411","v":["פְּלָאיָה    פְּלָיָה","pelâyâh    pelâ'yâh","pel-aw-yaw', pel-aw-yaw'","From H6381 and H3050; Jah has distinguished; Pelajah, the name of three Israelites: - Pelaiah."]},{"k":"H6412","v":["פָּלֵט    פָּלֵיט    פָּלִיט","pâlı̂yṭ    pâlêyṭ    pâlêṭ","paw-leet', paw-late', paw-late'","From H6403; a refugee: - (that have) escape (-d, -th), fugitive."]},{"k":"H6413","v":["פְּלֵטָה    פְּלֵיטָה","pelêyṭâh    pelêṭâh","pel-ay-taw', pel-ay-taw'","Feminine of H6412; deliverance; concretely an escaped portion: - deliverance, (that is) escape (-d), remnant."]},{"k":"H6414","v":["פָּלִיל","pâlı̂yl","paw-leel'","From H6419; a magistrate: - judge."]},{"k":"H6415","v":["פְּלִילָה","pelı̂ylâh","pel-ee-law'","Feminine of H6414; justice: - judgment."]},{"k":"H6416","v":["פְּלִילִי","pelı̂ylı̂y","pel-ee-lee'","From H6414; judicial: - judge."]},{"k":"H6417","v":["פְּלִילִיָּה","pelı̂ylı̂yâh","pel-ee-lee-yaw'","Feminine of H6416; judicature: - judgment."]},{"k":"H6418","v":["פֶּלֶךְ","pelek","peh'-lek","From an unused root meaning to be round; a circuit (that is, district); also a spindle (as whirled); hence a crutch: - (di-) staff, part."]},{"k":"H6419","v":["פָּלַל","pâlal","paw-lal'","A primitive root; to judge (officially or mentally); by extension to intercede, pray: - intreat, judge (-ment), (make) pray (-er, -ing), make supplication."]},{"k":"H6420","v":["פָּלָל","pâlâl","paw-lawl'","From H6419; judge; Palal, an Israelite: - Palal."]},{"k":"H6421","v":["פְּלַלְיָה","pelalyâh","pel-al-yaw'","From H6419 and H3050; Jah has judged; Pelaljah, an Israelite: - Pelaliah."]},{"k":"H6422","v":["פַּלְמוֹנִי","palmônı̂y","pal-mo-nee'","Probably for H6423; a certain one, that is, so and so: - certain."]},{"k":"H6423","v":["פְּלֹנִי","pelônı̂y","pel-o-nee'","From H6395; such a one, that is, a specified person: - such."]},{"k":"H6424","v":["פָּלַס","pâlas","paw-las'","A primitive root; properly to roll flat, that is, prepare (a road); also to revolve, that is, weigh (mentally): - make, ponder, weigh."]},{"k":"H6425","v":["פֶּלֶס","peles","peh'-les","From H6424; a balance: - scales, weight."]},{"k":"H6426","v":["פָּלַץ","pâlats","paw-lats'","A primitive root; properly perhaps to rend, that is, (by implication) to quiver: - tremble."]},{"k":"H6427","v":["פַּלָּצוּת","pallâtsûth","pal-law-tsooth'","From H6426; affright: - fearfulness, horror, trembling."]},{"k":"H6428","v":["פָּלַשׁ","pâlash","paw-lash'","A primitive root; to roll (in dust): - roll (wallow) self."]},{"k":"H6429","v":["פְּלֶשֶׁת","pelesheth","pel-eh'-sheth","From H6428; rolling, that is, migratory; Pelesheth, a region of Syria: - Palestina, Palestine, Philistia, Philistines."]},{"k":"H6430","v":["פְּלִשְׁתִּי","pelishtı̂y","pel-ish-tee'","Patrial from H6429; a Pelishtite or inhabitant of Pelesheth: - Philistine."]},{"k":"H6431","v":["פֶּלֶת","peleth","peh'-leth","From an unused root meaning to flee; swiftness; Peleth, the name of two Israelites: - Peleth."]},{"k":"H6432","v":["פְּלֵתִי","pelêthı̂y","pel-ay-thee'","From the same form as H6431; a courier (collectively) or official messenger: - Pelethites."]},{"k":"H6433","v":["פֻּם","pûm","poom","(Chaldee); probably for H6310; the mouth (literally or figuratively): - mouth."]},{"k":"H6434","v":["פֵּן","pên","pane","From an unused root meaning to turn; an angle (of a street or wall): - corner."]},{"k":"H6435","v":["פֵּן","pên","pane","From H6437; properly removal; used only (in the constructive) adverbially as conjugation lest: - (lest) (peradventure), that . . . not."]},{"k":"H6436","v":["פַּנַּג","pannag","pan-nag'","Of uncertain derivation; probably pastry: - Pannag."]},{"k":"H6437","v":["פָּנָה","pânâh","paw-naw'","A primitive root; to turn; by implication to face, that is, appear, look, etc.: - appear, at [even-] tide, behold, cast out, come on, X corner, dawning, empty, go away, lie, look, mark, pass away, prepare, regard, (have) respect (to), (re-) turn (aside, away, back, face, self), X right [early]."]},{"k":"H6438","v":["פִּנָּה","pinnâh","pin-naw'","Feminine of H6434; an angle; by implication a pinnacle; figuratively a chieftain: - bulwark, chief, corner, stay, tower."]},{"k":"H6439","v":["פְּנִיאֵל    פְּנוּאֵל","penû'êl    penı̂y'êl","pen-oo-ale', pen-ee-ale'","From H6437 and H410; face of God; Penuel or Peniel, a place East of Jordan; also (as Penuel) the name of two Israelites: - Peniel, Penuel."]},{"k":"H6440","v":["פָּנִים","pânı̂ym","paw-neem'","Plural (but always used as a singular) of an unused noun (פָּנֶה pâneh, paw-neh'; from 6437); the face (as the part that turns); used in a great variety of applications (literally and figuratively); also (with prepositional prefix) as a preposition (before, etc.): -    + accept, a (be-) fore (-time), against, anger, X as (long as), at, + battle, + because (of), + beseech, countenance, edge, + employ, endure, + enquire, face, favour, fear of, for, forefront (-part), form (-er time, -ward), from, front, heaviness, X him (-self), + honourable, + impudent, + in, it, look [-eth] (-s), X me, + meet, X more than, mouth, of, off, (of) old (time), X on, open, + out of, over against, the partial, person, + please, presence, prospect, was purposed, by reason, of, + regard, right forth, + serve, X shewbread, sight, state, straight, + street, X thee, X them (-selves), through (+ -out), till, time (-s) past, (un-) to (-ward), + upon, upside (+ down), with (-in, + stand), X ye, X you."]},{"k":"H6441","v":["פְּנִימָה","penı̂ymâh","pen-ee'-maw","From H6440 with directive enclitic; faceward, that is, indoors: - (with-) in (-ner part, -ward)."]},{"k":"H6442","v":["פְּנִימִי","penı̂ymı̂y","pen-ee-mee'","From H6440; interior: - (with-) in (-ner, -ward)."]},{"k":"H6443","v":["פָּנִי    פָּנִין","pânı̂yn    pânı̂y","paw-neen', paw-nee'","From the same as H6434; probably a pearl (as round): - ruby."]},{"k":"H6444","v":["פְּנִנָּה","peninnâh","pen-in-naw'","Probably feminine from H6443 contracted; Peninnah, an Israelitess: - Peninnah."]},{"k":"H6445","v":["פָּנַק","pânaq","paw-nak'","A primitive root; to enervate: - bring up."]},{"k":"H6446","v":["פַּס","pas","pas","From H6461; properly the palm (of the hand) or sole (of the foot), (compare H6447); by implication (plural) a long and sleeved tunic (perhaps simply a wide one; from the original sense of the root, that is, of many breadths): - (divers) colours."]},{"k":"H6447","v":["פַּס","pas","pas","(Chaldee); from a root corresponding to H6461; to palm (of the hand, as being spread out): - part."]},{"k":"H6448","v":["פָּסַג","pâsag","paw-sag'","A primitive root; to cut up, that is, (figuratively) contemplate: - consider."]},{"k":"H6449","v":["פִּסְגָּה","pisgâh","pis-gaw'","From H6448; a cleft; Pisgah, a mountain East of Jordan: - Pisgah."]},{"k":"H6450","v":["פַּס דַּמִּים","pas dammı̂ym","pas dam-meem'","From H6446 and the plural of H1818; palm (that is, dell) of bloodshed; Pas-Dammim, a place in Palestine: - Pas-dammim. Compare H658."]},{"k":"H6451","v":["פִּסָּה","pissâh","pis-saw'","From H6461; expansion, that is, abundance: - handful."]},{"k":"H6452","v":["פָּסַח","pâsach","paw-sakh'","A primitive root; to hop, that is, (figuratively) skip over (or spare); by implication to hesitate; also (literally) to limp, to dance: - halt, become lame, leap, pass over."]},{"k":"H6453","v":["פֶּסַח","pesach","peh'-sakh","From H6452; a pretermission, that is, exemption; used only technically of the Jewish Passover (the festival or the victim): - passover (offering)."]},{"k":"H6454","v":["פָּסֵחַ","pâsêach","paw-say'-akh","From H6452; limping; Paseach, the name of two Israelites: - Paseah, Phaseah."]},{"k":"H6455","v":["פִּסֵּחַ","pissêach","pis-say'-akh","From H6452; lame: - lame."]},{"k":"H6456","v":["פְּסִיל","pesı̂yl","pes-eel'","From H6458; an idol: - carved (graven) image, quarry."]},{"k":"H6457","v":["פָּסַךְ","pâsak","paw-sak'","From an unused root meaning to divide; divider; Pasak, an Israelite: - Pasach."]},{"k":"H6458","v":["פָּסַל","pâsal","paw-sal'","A primitive root; to carve, whether wood or stone: - grave, hew."]},{"k":"H6459","v":["פֶּסֶל","pesel","peh'-sel","From H6458; an idol: - carved (graven) image."]},{"k":"H6460","v":["פְּסַנְתֵּרִין    פְּסַנְטֵרִין","pesanṭêrı̂yn    pesantêrı̂yn","pes-an-tay-reen', pes-an-tay-reen'","(Chaldee); a transliteration of the Greek (not in lexicon) psalterion; a lyre: - psaltery."]},{"k":"H6461","v":["פָּסַס","pâsas","paw-sas'","A primitive root; probably to disperse, that is, (intransitively) disappear: - cease."]},{"k":"H6462","v":["פִּסְפָּה","pispâh","pis-paw'","Perhaps from H6461; dispersion; Pispah, an Israelite: - Pispah."]},{"k":"H6463","v":["פָּעָה","pâ‛âh","paw-aw'","A primitive root; to scream: - cry."]},{"k":"H6464","v":["פָּעִי    פָּעוּ","pâ‛û    pâ‛ı̂y","paw-oo', paw-ee'","From H6463; screaming; Pau or Pai, a place in Edom: - Pai, Pau."]},{"k":"H6465","v":["פְּעוֹר","pe‛ôr","peh-ore'","From H6473; a gap; Peor, a mountain East of Jordan; also (for H1187) a deity worshipped there: - Peor. See also H1047."]},{"k":"H6466","v":["פָּעַל","pâ‛al","paw-al'","A primitive root; to do or make (systematically and habitually), especially to practise: - commit, [evil-] do (-er), make (-r), ordain, work (-er), wrought."]},{"k":"H6467","v":["פֹּעַל","pô‛al","po'-al","From H6466; an act or work (concretely): - act, deed, do, getting, maker, work."]},{"k":"H6468","v":["פְּעֻלָּה","pe‛ûllâh","peh-ool-law'","Feminine passive participle of H6466; (abstractly) work: - labour, reward, wages, work."]},{"k":"H6469","v":["פְּעֻלְּתַי","pe‛ûllethay","peh-ool-leh-thah'ee","From H6468; laborious; Peullethai, an Israelite: - Peulthai."]},{"k":"H6470","v":["פָּעַם","pâ‛am","paw-am'","A primitive root; to tap, that is, beat regularly; hence (generally) to impel or agitate: - move, trouble."]},{"k":"H6471","v":["פַּעֲמָה    פַּעַם","pa‛am    pa‛ămâh","pah'-am, pah-am-aw'","From H6470; a stroke, literally or figuratively (in various applications): - anvil, corner, foot (-step), going, [hundred-] fold, X now, (this) + once, order, rank, step, + thrice, [often-], second, this, two) time (-s), twice, wheel."]},{"k":"H6472","v":["פַּעֲמֹן","pa‛ămôn","pah-am-one'","From H6471; a bell (as struck): - bell."]},{"k":"H6473","v":["פָּעַר","pâ‛ar","paw-ar'","A primitive root; to yawn, that is, open wide (literally or figuratively): - gape, open (wide)."]},{"k":"H6474","v":["פַּעֲרַי","pa‛ăray","pah-ar-ah'ee","From H6473; yawning; Paarai, an Israelite: - Paarai."]},{"k":"H6475","v":["פָּצָה","pâtsâh","paw-tsaw'","A primitive root; to rend, that is, open (especially the mouth): - deliver, gape, open, rid, utter."]},{"k":"H6476","v":["פָּצַח","pâtsach","paw-tsakh'","A primitive root; to break out (in joyful sound): - break (forth, forth into joy), make a loud noise."]},{"k":"H6477","v":["פְּצִירָה","petsı̂yrâh","pets-ee-raw'","From H6484; bluntness: -  + file."]},{"k":"H6478","v":["פָּצַל","pâtsal","paw-tsal'","A primitive root; to peel: - pill."]},{"k":"H6479","v":["פְּצָלָה","petsâlâh","pets-aw-law'","From H6478; a peeling: - strake."]},{"k":"H6480","v":["פָּצַם","pâtsam","paw-tsam'","A primitive root; to rend (by earthquake): - break."]},{"k":"H6481","v":["פָּצַע","pâtsa‛","paw-tsah'","A primitive root; to split, that is, wound: - wound."]},{"k":"H6482","v":["פֶּצַע","petsa‛","peh'-tsah","From H6481; a wound: - wound (-ing)."]},{"k":"H6483","v":["פִּצֵּץ","pitstsêts","pits-tsates'","From an unused root meaning to dissever; dispersive; Pitstsets, a priest: - Apses [includ. the article.]"]},{"k":"H6484","v":["פָּצַר","pâtsar","paw-tsar'","A primitive root; to peck at, that is, (figuratively) stun or dull: - press, urge, stubbornness."]},{"k":"H6485","v":["פָּקַד","pâqad","paw-kad'","A primitive root; to visit (with friendly or hostile intent); by analogy to oversee, muster, charge, care for, miss, deposit, etc.: - appoint, X at all, avenge, bestow, (appoint to have the, give a) charge, commit, count, deliver to keep, be empty, enjoin, go see, hurt, do judgment, lack, lay up look, make X by any means, miss, number, officer, (make) overseer have (the) oversight, punish, reckon, (call to) remember (-brance), set (over), sum, X surely, visit, want."]},{"k":"H6486","v":["פְּקֻדָּה","peqûddâh","pek-ood-daw'","Feminine passive participle of H6485; visitation (in many senses, chiefly official): - account, (that have the) charge, custody, that which . . . laid up, numbers, office (-r), ordering, oversight, + prison, reckoning, visitation."]},{"k":"H6487","v":["פִּקָּדוֹן","piqqâdôn","pik-kaw-done'","From H6485; a deposit: - that which was delivered (to keep), store."]},{"k":"H6488","v":["פְּקִדֻת","peqidûth","pek-ee-dooth'","From H6496; supervision: - ward."]},{"k":"H6489","v":["פְּקוֹד","peqôd","pek-ode'","From H6485; punishment; Pekod, a symbolical name for Babylon: - Pekod."]},{"k":"H6490","v":["פִּקֻּד    פִּקּוּד","piqqûd    piqqûd","pik-kood', pik-kood'","From H6485; properly appointed, that is, a mandate (of God; plural only, collectively for the Law): - commandment, precept, statute."]},{"k":"H6491","v":["פָּקַח","pâqach","paw-kakh'","A primitive root; to open (the senses, especially the eyes); figuratively to be observant: - open."]},{"k":"H6492","v":["פֶּקַח","peqach","peh'-kakh","From H6491; watch; Pekach, an Israelite king: - Pekah."]},{"k":"H6493","v":["פִּקֵּחַ","piqqêach","pik-kay'-akh","From H6491; clear sighted; figuratively intelligent: - seeing, wise."]},{"k":"H6494","v":["פְּקַחְיָה","peqachyâh","pek-akh-yaw'","From H6491 and H3050; Jah has observed; Pekachjah, an Israelitish king: - Pekahiah."]},{"k":"H6495","v":["פְּקַח־קוֹחַ","peqach-qôach","pek-akh-ko'-akh","From H6491 redoubled; opening (of a dungeon), that is, jail delivery (figuratively salvation from sin): - opening of the prison."]},{"k":"H6496","v":["פָּקִיד","pâqı̂yd","paw-keed'","From H6485; a superintendent (civil, military or religious): - which had the charge, governor, office, overseer, [that] was set."]},{"k":"H6497","v":["פֶּקַע","peqa‛","peh'-kah","From an unused root meaning to burst; only used as an architectural term of an ornament similar to H6498, a semi-globe: - knop."]},{"k":"H6498","v":["פַּקֻּעָה","paqqû‛âh","pak-koo-aw'","From the same as H6497; the wild cucumber (from splitting open to shed its seeds): - gourd."]},{"k":"H6499","v":["פָּר    פַּר","par    pâr","par, pawr","From H6565; a bullock (apparently as breaking forth in wild strength, or perhaps as dividing the hoof): -    (+ young) bull (-ock), calf, ox."]},{"k":"H6500","v":["פָּרָא","pârâ'","paw-raw'","A primitive root; to bear fruit: - be fruitful."]},{"k":"H6501","v":["פֶּרֶה    פֶּרֶא","pere'    pereh","peh'-reh, peh'-reh","From H6500 in the secondary sense of running wild; the onager: - wild (ass)."]},{"k":"H6502","v":["פִּרְאָם","pir'âm","pir-awm'","From H6501; wildly; Piram, a Canaanite: - Piram."]},{"k":"H6503","v":["פַּרְוָר    פַּרְבָּר","parbâr    parvâr","par-bawr', par-vawr'","Of foreign origin; Parbar or Parvar, a quarter of Jerusalem: - Parbar, suburb."]},{"k":"H6504","v":["פָּרַד","pârad","paw-rad'","A primitive root; to break through, that is, spread or separate (oneself): - disperse, divide, be out of joint, part, scatter (abroad), separate (self), sever self, stretch, sunder."]},{"k":"H6505","v":["פֶּרֶד","pered","peh'-red","From H6504; a mule (perhaps from his lonely habits): - mule."]},{"k":"H6506","v":["פִּרְדָּה","pirdâh","pir-daw'","Feminine of H6505; a she mule: - mule."]},{"k":"H6507","v":["פְּרֻדָה","perûdâh","per-oo-daw'","Feminine passive participle of H6504; something separated, that is, a kernel: - seed."]},{"k":"H6508","v":["פַּרְדֵּס","pardês","par-dace'","Of foreign origin; a park: - forest, orchard."]},{"k":"H6509","v":["פָּרָה","pârâh","paw-raw'","A primitive root; to bear fruit (literally or figuratively): - bear, bring forth (fruit), (be, cause to be, make) fruitful, grow, increase."]},{"k":"H6510","v":["פָּרָה","pârâh","paw-raw'","Feminine of H6499; a heifer: - cow, heifer, kine."]},{"k":"H6511","v":["פָּרָה","pârâh","paw-raw'","The same as H6510; Parah, a place in Palestine: - Parah."]},{"k":"H6512","v":["פֵּרָה","pêrâh","pay-raw'","From H6331; a hole (as broken, that is, dug): -    + mole. Compare H2661."]},{"k":"H6513","v":["פֻּרָה","pûrâh","poo-raw'","For H6288; foliage; Purah, an Israelite: - Phurah."]},{"k":"H6514","v":["פְּרִידָא    פְּרוּדָא","perûdâ'    perı̂ydâ'","per-oo-daw', per-ee-daw'","From H6504; dispersion; Peruda or Perida, one of Solomon’s servants: - Perida, Peruda."]},{"k":"H6515","v":["פָּרוּחַ","pârûach","paw-roo'-akh","Passive participle of H6524; blossomed; Paruach, an Israelite: - Paruah."]},{"k":"H6516","v":["פַּרְוַיִם","parvayim","par-vah'-yim","Of foreign origin; Parvajim, an Oriental region: - Parvaim."]},{"k":"H6517","v":["פָּרוּר","pârûr","paw-roor'","Passive participle of H6565 in the sense of spreading out (compare H6524); a skillet (as flat or deep): - pan, pot."]},{"k":"H6518","v":["פָּרָז","pârâz","paw-rawz'","From an unused root meaning to separate, that is, decide; a chieftain: - village."]},{"k":"H6519","v":["פְּרָזָה","perâzâh","per-aw-zaw'","From the same as H6518; an open country: - (unwalled) town (without walls), unwalled village."]},{"k":"H6520","v":["פְּרָזוֹן","perâzôn","per-aw-zone'","From the same as H6518; magistracy, that is, leadership (also concretely chieftains): - village."]},{"k":"H6521","v":["פְּרוֹזִי    פְּרָזִי","perâzı̂y    perôzı̂y","per-aw-zee, per-o-zee'","From H6519; a rustic: - village."]},{"k":"H6522","v":["פְּרִזִּי","perizzı̂y","per-iz-zee'","For H6521; inhabitant of the open country; a Perizzite, one of the Canaanitish tribes: - Perizzite."]},{"k":"H6523","v":["פַּרְזֶל","parzel","par-zel'","(Chaldee); corresponding to H1270; iron: - iron."]},{"k":"H6524","v":["פָּרַח","pârach","paw-rakh'","A primitive root; to break forth as a bud, that is, bloom; generally to spread; specifically to fly (as extending the wings); figuratively to flourish: -  X abroad, X abundantly, blossom, break forth (out), bud, flourish, make fly, grow, spread, spring (up)."]},{"k":"H6525","v":["פֶּרַח","perach","peh'-rakh","From H6524; calyx (natural or artificial); generally bloom: - blossom, bud, flower."]},{"k":"H6526","v":["פִּרְחַח","pirchach","pir-khakh'","From H6524; progeny, that is, a brood: - youth."]},{"k":"H6527","v":["פָּרַט","pâraṭ","paw-rat'","A primitive root; to scatter words, that is, prate (or hum): - chant."]},{"k":"H6528","v":["פֶּרֶט","pereṭ","peh'-ret","From H6527; a stray or single berry: - grape."]},{"k":"H6529","v":["פְּרִי","perı̂y","per-ee'","From H6509; fruit (literally or figuratively): - bough, ([first-]) fruit ([-ful]), reward."]},{"k":"H6530","v":["פְּרִיץ","perı̂yts","per-eets'","From H6555; violent, that is, a tyrant: - destroyer, ravenous, robber."]},{"k":"H6531","v":["פֶּרֶךְ","perek","peh'-rek","From an unused root meaning to break apart; fracture, that is, severity: - cruelty, rigour."]},{"k":"H6532","v":["פֹּרֶכֶת","pôreketh","po-reh'-keth","Feminine active participle of the same as H6531; a separatrix, that is, (the sacred) screen: - vail."]},{"k":"H6533","v":["פָּרַם","pâram","paw-ram'","A primitive root; to tear: - rend."]},{"k":"H6534","v":["פַּרְמַשְׁתָּא","parmashtâ'","par-mash-taw'","Of Persian origin; Parmashta, a son of Haman: - Parmasta."]},{"k":"H6535","v":["פַּרְנַךְ","parnak","par-nak'","Of uncertain derivation; Parnak, an Israelite: - Parnach."]},{"k":"H6536","v":["פָּרַס","pâras","paw-ras'","A primitive root; to break in pieces, that is, (usually without violence) to split, distribute: - deal, divide, have hoofs, part, tear."]},{"k":"H6537","v":["פְּרַס","peras","per-as'","(Chaldee); corresponding to H6536; to split up: - divide, [U-] pharsin."]},{"k":"H6538","v":["פֶּרֶס","peres","peh'-res","From H6536; a claw; also a kind of eagle: - claw, ossifrage."]},{"k":"H6539","v":["פָּרַס","pâras","paw-ras'","Of foreign origin; Paras (that is, Persia), an Eastern country, including its inhabitants: - Persia, Persians."]},{"k":"H6540","v":["פָּרַס","pâras","paw-ras'","(Chaldee); corresponding to H6539: - Persia, Persians."]},{"k":"H6541","v":["פַּרְסָה","parsâh","par-saw'","Feminine of H6538; a claw or split hoof: - claw, [cloven-] footed, hoof."]},{"k":"H6542","v":["פַּרְסִי","parsı̂y","par-see'","Patrial from H6539; a Parsite (that is, Persian), or inhabitant of Peres: - Persian."]},{"k":"H6543","v":["פַּרְסִי","parsı̂y","par-see'","(Chaldee); corresponding to H6542: - Persian."]},{"k":"H6544","v":["פָּרַע","pâra‛","paw-rah'","A primitive root; to loosen; by implication to expose, dismiss; figuratively absolve, begin: - avenge, avoid, bare, go back, let, (make) naked, set at nought, perish, refuse, uncover."]},{"k":"H6545","v":["פֶּרַע","pera‛","peh'-rah","From H6544; the hair (as dishevelled): - locks."]},{"k":"H6546","v":["פַּרְעָה","par‛âh","par-aw'","Feminine of H6545 (in the sense of beginning); leadership (plural concretely leaders): -    + avenging, revenge."]},{"k":"H6547","v":["פַּרְעֹה","par‛ôh","par-o'","Of Egyptian derivation; Paroh, a generic title of Egyptian kings: - Pharaoh."]},{"k":"H6548","v":["פַּרְעֹה חָפְרַע","par‛ôh chophra‛","par-o' khof-rah'","Of Egyptian derivation; Paroh-Chophra, an Egyptian king: - Pharaoh-hophra."]},{"k":"H6549","v":["פַּרְעֹה נְכוֹ    פַּרְעֹה נְכֹה","par‛ôh nekôh    par‛ôh nekô","par-o' nek-o', par-o' nek-o'","Of Egyptian derivation; Paroh Nekoh (or Neko), an Egyptian king: - Pharaoh-necho, Pharaoh-nechoh."]},{"k":"H6550","v":["פַּרְעשׁ","par‛ôsh","par-oshe'","Probably from H6544 and H6211; a flea (as the isolated insect): - flea."]},{"k":"H6551","v":["פַּרְעשׁ","par‛ôsh","par-oshe'","The same as H6550; Parosh, the name of four Israelites: - Parosh, Pharosh."]},{"k":"H6552","v":["פִּרְעָתוֹן","pir‛âthôn","pir-aw-thone'","From H6546; chieftaincy; Pirathon, a place in Palestine: - Pirathon."]},{"k":"H6553","v":["פִּרְעָתֹנִי    פִּרְעָתוֹנִי","pir‛âthônı̂y    pir‛âthônı̂y","pir-aw-tho-nee', pir-aw-tho-nee'","Patrial from H6552; a Pirathonite or inhabitant of Pirathon: - Pirathonite."]},{"k":"H6554","v":["פַּרְפַּר","parpar","par-par'","Probably from H6565 in the sense of rushing; rapid; Parpar, a river of Syria: - Pharpar."]},{"k":"H6555","v":["פָּרַץ","pârats","paw-rats'","A primitive root; to break out (in many applications, direct and indirect, literally and figuratively): -    X abroad, (make a) breach, break (away, down, -er, forth, in, up), burst out come (spread) abroad, compel, disperse, grow, increase, open, press, scatter, urge."]},{"k":"H6556","v":["פֶּרֶץ","perets","peh'-rets","From H6555; a break (literally or figuratively): - breach, breaking forth (in), X forth, gap."]},{"k":"H6557","v":["פֶּרֶץ","perets","peh'-rets","The same as H6556; Perets, the name of two Israelites: - Perez, Pharez."]},{"k":"H6558","v":["פַּרְצִי","partsı̂y","par-tsee'","Patronymic from H6557; a Partsite (collectively) or descendant of Perets: - Pharzites."]},{"k":"H6559","v":["פְּרָצִים","perâtsı̂ym","per-aw-tseem'","Plural of H6556; breaks; Peratsim, a mountain in Palestine: - Perazim."]},{"k":"H6560","v":["פֶּרֶץ עֻזָּא","perets ‛ûzzâ'","peh'-rets ooz-zaw'","From H6556 and H5798; break of Uzza; Perets-Uzza, a place in Palestine: - Perez-uzza."]},{"k":"H6561","v":["פָּרַק","pâraq","paw-rak'","A primitive root; to break off or craunch; figuratively to deliver: - break (off), deliver, redeem, rend (in pieces), tear in pieces."]},{"k":"H6562","v":["פְּרַק","peraq","per-ak'","(Chaldee); corresponding to H6561; to discontinue: - break off."]},{"k":"H6563","v":["פֶּרֶק","pereq","peh'-rek","From H6561; rapine; also a fork (in roads): - crossway, robbery."]},{"k":"H6564","v":["פָּרָק","pârâq","paw-rawk'","From H6561; soup (as full of crumbed meat): - broth. See also H4832."]},{"k":"H6565","v":["פָּרַר","pârar","paw-rar'","A primitive root; to break up (usually figuratively, that is, to violate, frustrate): -    X any ways, break (asunder), cast off, cause to cease, X clean, defeat, disannul, disappoint, dissolve, divide, make of none effect, fail, frustrate, bring (come) to nought, X utterly, make void."]},{"k":"H6566","v":["פָּרַשׂ","pâraś","paw-ras'","A primitive root; to break apart, disperse, etc.: - break, chop in pieces, lay open, scatter, spread (abroad, forth, selves, out), stretch (forth, out)."]},{"k":"H6567","v":["פָּרָשׁ","pârâsh","paw-rash'","A primitive root; to separate, literally (to disperse) or figuratively (to specify); also (by implication) to wound: - scatter, declare, distinctly, shew, sting."]},{"k":"H6568","v":["פְּרַשׁ","perash","per-ash'","(Chaldee); corresponding to H6567; to specify: - distinctly."]},{"k":"H6569","v":["פֶּרֶשׁ","peresh","peh'-resh","From H6567; excrement (as eliminated): - dung."]},{"k":"H6570","v":["פֶּרֶשׁ","peresh","peh'-resh","The same as H6569; Peresh, an Israelite: - Peresh."]},{"k":"H6571","v":["פָּרָשׁ","pârâsh","paw-rawsh'","From H6567; a steed (as stretched out to a vehicle, not single nor for mounting (compare H5483)); also (by implication) a driver (in a chariot), that is, (collectively) cavalry: - horseman."]},{"k":"H6572","v":["פַּתְשֶׁגֶן    פַּרְשֶׁגֶן","parshegen    pathshegen","par-sheh'-ghen, path-sheh'-gen","Of foreign origin; a transcript: - copy."]},{"k":"H6573","v":["פַּרְשֶׁגֶן","parshegen","par-sheh'-ghen","(Chaldee); corresponding to H6572: - copy."]},{"k":"H6574","v":["פַּרְשְׁדֹן","parshedôn","par-shed-one'","Perhaps by compounding H6567 and H6504 (in the sense of straddling), (compare H6576); the crotch (or anus): - dirt."]},{"k":"H6575","v":["פָּרָשָׁה","pârâshâh","paw-raw-shaw'","From H6567; exposition: - declaration, sum."]},{"k":"H6576","v":["פַּרְשֵׁז","parshêz","par-shaze'","A root apparently formed by compounding H6567 and that of H6518 (compare H6574); to expand: - spread."]},{"k":"H6577","v":["פַּרְשַׁנְדָּתָא","parshandâthâ'","par-shan-daw-thaw'","Of Persian origin; Parshandatha, a son of Haman: - Parshandatha."]},{"k":"H6578","v":["פְּרָת","perâth","per-awth'","From an unused root meaning to break forth; rushing; Perath (that is, Euphrates), a river of the East: - Euphrates."]},{"k":"H6579","v":["פַּרְתַּם","partam","par-tam'","Of Persian origin; a grandee: - (most) noble, prince."]},{"k":"H6580","v":["פַּשׁ","pash","pash","Probably from an unused root meaning to disintegrate; stupidity (as a result of grossness or of degeneracy): - extremity."]},{"k":"H6581","v":["פָּשָׂה","pâśâh","paw-saw'","A primitive root; to spread: - spread."]},{"k":"H6582","v":["פָּשַׁח","pâshach","paw-shakh'","A primitive root; to tear in pieces: - pull in pieces."]},{"k":"H6583","v":["פַּשְׁחוּר","pashchûr","pash-khoor'","Probably from H6582; liberation; Pashchur, the name of four Israelites: - Pashur."]},{"k":"H6584","v":["פָּשַׁט","pâshaṭ","paw-shat'","A primitive root; to spread out (that is, deploy in hostile array); by analogy to strip (that is, unclothe, plunder, flay, etc.): - fall upon, flay, invade, make an invasion, pull off, put off, make a road, run upon, rush, set, spoil, spread selves (abroad), strip (off, self)."]},{"k":"H6585","v":["פָּשַׂע","pâśa‛","paw-sah'","A primitive root; to stride (from spreading the legs), that is, rush upon: - go."]},{"k":"H6586","v":["פָּשַׁע","pâsha‛","paw-shah'","A primitive root (rather identical with H6585 through the idea of expansion); to break away (from just authority), that is, trespass, apostatize, quarrel: - offend, rebel, revolt, transgress (-ion, -or)."]},{"k":"H6587","v":["פֶּשַׂע","peśa‛","peh'-sah","From H6585; a stride: - step."]},{"k":"H6588","v":["פֶּשַׁע","pesha‛","peh'-shah","From H6586; a revolt (national, moral or religious): - rebellion, sin, transgression, trespassive"]},{"k":"H6589","v":["פָּשַׂק","pâśaq","paw-sak'","A primitive root; to dispart (the feet or lips), that is, become licentious: - open (wide)."]},{"k":"H6590","v":["פְּשַׁר","peshar","pesh-ar'","(Chaldee); corresponding to H6622; to interpret: - make [interpretations], interpreting."]},{"k":"H6591","v":["פְּשַׁר","peshar","pesh-ar'","(Chaldee); from H6590; an interpretation: - interpretation."]},{"k":"H6592","v":["פֵּשֶׁר","pêsher","pay'-sher","Corresponding to H6591: - interpretation."]},{"k":"H6593","v":["פִּשְׁתֶּה","pishteh","pish-teh'","From the same as H6580 as in the sense of comminuting; linen (that is, the thread, as carded): - flax, linen."]},{"k":"H6594","v":["פִּשְׁתָּה","pishtâh","pish-taw'","Feminine of H6593; flax; by implication a wick: - flax, tow."]},{"k":"H6595","v":["פַּת","path","path","From H6626; a bit: - meat, morsel, piece."]},{"k":"H6596","v":["פֹּתָה    פֹּת","pôth    pôthâh","pohth, po-thaw'","From an unused root meaning to open; a hole, that is, hinge or the female pudenda: - hinge, secret part."]},{"k":"H6597","v":["פִּתְאֹם     פִּתְאוֹם","pith'ôm    pith'ôm","pith-ome', pith-ome'","From H6621; instantly: - straightway, sudden (-ly)."]},{"k":"H6598","v":["פַּתְבַּג","pathbag","path-bag'","Of Persian origin; a dainty: - portion (provision) of meat."]},{"k":"H6599","v":["פִּתְגָּם","pithgâm","pith-gawm'","Of Persian origin; a (judicial) sentence: - decree, sentence."]},{"k":"H6600","v":["פִּתְגָּם","pithgâm","pith-gawm'","(Chaldee); corresponding to H6599; a word, answer, letter or decree: - answer, letter, matter, word."]},{"k":"H6601","v":["פָּתָה","pâthâh","paw-thaw'","A primitive root; to open, that is, be (causatively make) roomy; usually figuratively (in a mental or moral sense) to be (causatively make) simple or (in a sinister way) delude: - allure, deceive, enlarge, entice, flatter, persuade, silly (one)."]},{"k":"H6602","v":["פְּתוּאֵל","pethû'êl","peth-oo-ale'","From H6601 and H410; enlarged of God; Pethuel, an Israelite: - Pethuel."]},{"k":"H6603","v":["פִּתֻּחַ    פִּתּוּחַ","pittûach    pittûach","pit-too'-akh, pit-too'-akh","Passive participle of H6605; sculpture (in low or high relief or even intaglio): - carved (work) (are, en-) grave (-ing, -n)."]},{"k":"H6604","v":["פְּתוֹר","pethôr","peth-ore'","Of foreign origin; Pethor, a place in Mesopotamia: - Pethor."]},{"k":"H6605","v":["פָּתַח","pâthach","paw-thakh'","A primitive root; to open wide (literally or figuratively); specifically to loosen, begin, plough, carve: - appear, break forth, draw (out), let go free, (en-) grave (-n), loose (self), (be, beset) open (-ing), put off, ungird, unstop, have vent."]},{"k":"H6606","v":["פְּתַח","pethach","peth-akh'","(Chaldee); corresponding to H6605; to open: - open."]},{"k":"H6607","v":["פֶּתַח","pethach","peh'-thakh","From H6605; an opening (literally), that is, door (gate) or entrance way: - door, entering (in), entrance (-ry), gate, opening, place."]},{"k":"H6608","v":["פֵּתַח","pêthach","pah'-thakh","From H6605; opening (figuratively) that is, disclosure: - entrance."]},{"k":"H6609","v":["פְּתִחָה","pethichâh","peth-ee-khaw'","From H6605; something opened, that is, a drawn sword: - drawn sword."]},{"k":"H6610","v":["פִּתְחוֹן","pithchôn","pith-khone'","From H6605; opening (the act): - open (-ing)."]},{"k":"H6611","v":["פְּתַחְיָה","pethachyâh","peth-akh-yaw'","From H6605 and H3050; Jah has opened; Pethachjah, the name of four Israelites: - Pethakiah."]},{"k":"H6612","v":["פְּתָאִי    פֶּתִי    פְּתִי","pethı̂y    pethı̂y    pethâ'ı̂y","peth-ee', peh'-thee, peth-aw-ee'","From H6601; silly (that is, seducible): - foolish, simple (-icity, one)."]},{"k":"H6613","v":["פְּתַי","pethay","peth-ah'ee","(Chaldee); from a root corresponding to H6601; open, that is, (as noun) width: - breadth."]},{"k":"H6614","v":["פְּתִיגִיל","pethı̂ygı̂yl","peth-eeg-eel'","Of uncertain derivation; probably a figured mantle for holidays: - stomacher."]},{"k":"H6615","v":["פְּתַיּוּת","pethayûth","peth-ah-yooth'","From H6612; silliness (that is, seducibility): - simple."]},{"k":"H6616","v":["פָּתִיל","pâthı̂yl","paw-theel'","From H6617; twine: - bound, bracelet, lace, line, ribband, thread, wire."]},{"k":"H6617","v":["פָּתַל","pâthal","paw-thal'","A primitive root; to twine, that is, (literally) to struggle or (figuratively) be (morally) tortuous: - (shew self) froward, shew self unsavoury, wrestle."]},{"k":"H6618","v":["פְּתַלְתֹּל","pethaltôl","peth-al-tole'","From H6617; tortuous (that is, crafty): - crooked."]},{"k":"H6619","v":["פִּתֹם","pithôm","pee-thome'","Of Egyptian derivation; Pithom, a place in Egypt: - Pithom."]},{"k":"H6620","v":["פֶּתֶן","pethen","peh'-then","From an unused root meaning to twist; an asp (from its contortions): - adder."]},{"k":"H6621","v":["פֶּתַע","petha‛","peh'-thah","From an unused root meaning to open (the eyes); a wink, that is, moment (compare H6597), (used only (with or without preposition) adverbially quickly or unexpectedly): - at an instant suddenly, X very."]},{"k":"H6622","v":["פָּתַר","pâthar","paw-thar'","A primitive root; to open up, that is, (figuratively) interpret (a dream): - interpret (-ation, -er)."]},{"k":"H6623","v":["פִּתְרֹן    פִּתְרוֹן","pithrôn    pithrôn","pith-rone', pith-rone'","From H6622; interpretation (of a dream): - interpretation."]},{"k":"H6624","v":["פַּתְרוֹס","pathrôs","path-roce'","Of Egyptian derivation; Pathros, a part of Egypt: - Pathros."]},{"k":"H6625","v":["פַּתְרֻסִי","pathrûsı̂y","path-roo-see'","Partrial from H6624; a Pathrusite, or inhabitant of Pathros: - Pathrusim."]},{"k":"H6626","v":["פָּתַת","pâthath","paw-thath'","A primitive root; to open, that is, break: - part."]},{"k":"H6627","v":["צָאָה","tsâ'âh","tsaw-aw'","From H3318; issue, that is, (human) excrement: - that (which) cometh from (out)."]},{"k":"H6628","v":["צֶאֶל","tse'el","tseh'-el","From an unused root meaning to be slender; the lotus tree: - shady tree."]},{"k":"H6629","v":["צְאוֹן    צֹאן","tsô'n    tse'ôn","tsone, tseh-one'","From an unused root meaning to migrate; a collective name for a flock (of sheep or goats); also figuratively (of men): - (small) cattle, flock (+ -s), lamb (+ -s), sheep ([-cote, -fold, -shearer, -herds])."]},{"k":"H6630","v":["צַאֲנָן","tsa'ănân","tsah-an-awn'","From the same as H6629 used denominatively; sheep pasture; Zaanan, a place in Palestine: - Zaanan."]},{"k":"H6631","v":["צֶאֱצָא","tse'ĕtsâ'","tseh-ets-aw'","From H3318; issue, that is, produce, children: - that which cometh forth (out), offspring."]},{"k":"H6632","v":["צָב","tsâb","tsawb","From an unused root meaning to establish; a palanquin or canopy (as a fixture); also a species of lizard (probably as clinging fast): - covered, litter, tortoise."]},{"k":"H6633","v":["צָבָא","tsâbâ'","tsaw-baw'","A primitive root; to mass (an army or servants): - assemble, fight, perform, muster, wait upon, war."]},{"k":"H6634","v":["צְבָא","tsebâ'","tseb-aw'","(Chaldee); corresponding to H6633 in the figuratively sense of summoning one’s wishes; to please: - will, would."]},{"k":"H6635","v":["צְבָאָה    צָבָא","tsâbâ'    tsebâ'âh","tsaw-baw', tseb-aw-aw'","From H6633; a mass of persons (or figurative things), especially regularly organized for war (an army); by implication a campaign, literally or figuratively (specifically hardship, worship): - appointed time, (+) army, (+) battle, company, host, service, soldiers, waiting upon, war (-fare)."]},{"k":"H6636","v":["צְבִיִּם    צְבִיִּים    צְבֹאִים","tsebô'ı̂ym    tsebı̂yı̂ym    tsebı̂yim","tseb-o-eem', tseb-ee-yeem', tseb-ee-yeem'","Plural of H6643; gazelles; Tseboim or Tsebijim, a place in Palestine: - Zeboiim, Zeboim."]},{"k":"H6637","v":["צֹבֵבָה","tsôbêbâh","tso-bay-baw'","Feminine active participle of the same as H6632; the canopier (with the article); Tsobebah, an Israelitess: - Zobebah."]},{"k":"H6638","v":["צָבָה","tsâbâh","tsaw-baw'","A primitive root; to amass, that is, grow turgid; specifically to array an army against: - fight, swell."]},{"k":"H6639","v":["צָבֶה","tsâbeh","tsaw-beh'","From H6638; turgid: - swell."]},{"k":"H6640","v":["צְבוּ","tsebû","tseb-oo'","From H6634; properly will; concretely an affair (as a matter of determination): - purpose."]},{"k":"H6641","v":["צָבוּעַ","tsâbûa‛","tsaw-boo'-ah","Passive participle of the same as H6648; dyed (in stripes), that is, the hyena: - speckled."]},{"k":"H6642","v":["צָבַט","tsâbaṭ","tsaw-bat'","A primitive root; to grasp, that is, hand out: - reach."]},{"k":"H6643","v":["צְבִי","tsebı̂y","tseb-ee'","From H6638 in the sense of prominence; splendor (as conspicuous); also a gazelle (as beautiful): - beautiful (-ty), glorious (-ry), goodly, pleasant, roe (-buck)."]},{"k":"H6644","v":["צִבְיָא","tsibyâ'","tsib-yaw'","For H6645; Tsibja, an Israelite: - Zibia."]},{"k":"H6645","v":["צִבְיָה","tsibyâh","tsib-yaw'","For H6646; Tsibjah, an Israelitess: - Zibiah."]},{"k":"H6646","v":["צְבִיָּה","tsebı̂yâh","tseb-ee-yaw'","Feminine of H6643; a female gazelle: - roe."]},{"k":"H6647","v":["צְבַע","tseba‛","tseb-ah'","(Chaldee); a root corresponding to that of H6648; to dip: - wet."]},{"k":"H6648","v":["צֶבַע","tseba‛","tseh'-bah","From an unused root meaning to dip (into coloring fluid); a dye: - divers, colours."]},{"k":"H6649","v":["צִבְעוֹן","tsib‛ôn","tsib-one'","From the same as H6648; variegated; Tsibon, an Idumaean: - Zibeon."]},{"k":"H6650","v":["צְבֹעִים","tsebô‛ı̂ym","tseb-o-eem'","Plural of H6641; hyenas; Tseboim, a place in Palestine: - Zeboim."]},{"k":"H6651","v":["צָבַר","tsâbar","tsaw-bar'","A primitive root; to aggregate: - gather (together), heap (up), lay up."]},{"k":"H6652","v":["צִבֻּר","tsibbûr","tsib-boor'","From H6551; a pile: - heap."]},{"k":"H6653","v":["צֶבֶת","tsebeth","tseh'-beth","From an unused root apparently meaning to grip; a lock of stalks: - handful."]},{"k":"H6654","v":["צַד","tsad","tsad","Contracted from an unused root meaning to sidle off; a side; figuratively an adversary: - (be-) side."]},{"k":"H6655","v":["צַד","tsad","tsad","(Chaldee); corresponding to H6654; used adverbially (with preposition) at or upon the side of: - against, concerning."]},{"k":"H6656","v":["צְדָא","tsedâ'","tsed-aw'","(Chaldee); from an unused root corresponding to H6658 in the sense of intentness; a (sinister) design: - true."]},{"k":"H6657","v":["צְדָד","tsedâd","tsed-awd'","From the same as H6654; a siding; Tsedad, a place near Palestine: - Zedad."]},{"k":"H6658","v":["צָדָה","tsâdâh","tsaw-daw'","A primitive root; to chase; by implication to desolate: - destroy, hunt, lie in wait."]},{"k":"H6659","v":["צָדוֹק","tsâdôq","tsaw-doke'","From H6663; just; Tsadok, the name of eight or nine Israelites: - Zadok."]},{"k":"H6660","v":["צְדִיָּה","tsedı̂yâh","tsed-ee-yaw'","From H6658; design (compare H6656): - lying in wait."]},{"k":"H6661","v":["צִדִּים","tsiddı̂ym","tsid-deem'","Plural of H6654; sides; Tsiddim (with the article), a place in Palestine: - Ziddim."]},{"k":"H6662","v":["צַדִּיק","tsaddı̂yq","tsad-deek'","From H6663; just: - just, lawful, righteous (man)."]},{"k":"H6663","v":["צָדַק","tsâdaq","tsaw-dak'","A primitive root; to be (causatively make) right (in a moral or forensic sense): - cleanse, clear self, (be, do) just (-ice, -ify, -ify self), (be, turn to) righteous (-ness)."]},{"k":"H6664","v":["צֶדֶק","tsedeq","tseh'-dek","From H6663; the right (natural, moral or legal); also (abstractly) equity or (figuratively) prosperity: -  X even, (X that which is altogether) just (-ice), ([un-]) right (-eous) (cause, -ly, -ness)."]},{"k":"H6665","v":["צִדְקָה","tsidqâh","tsid-kaw'","(Chaldee); corresponding to H6666; beneficence: - righteousness."]},{"k":"H6666","v":["צְדָקָה","tsedâqâh","tsed-aw-kaw'","From H6663; rightness (abstractly), subjectively (rectitude), objectively (justice), morally (virtue) or figuratively (prosperity): - justice, moderately, right (-eous) (act, -ly, -ness)."]},{"k":"H6667","v":["צִדְקִיָּהוּ    צִדְקִיָּה","tsidqı̂yâh    tsidqı̂yâhû","tsid-kee-yaw', tsid-kee-yaw'-hoo","From H6664 and H3050; right of Jah; Tsidkijah, the name of six Israelites: - Zedekiah, Zidkijah."]},{"k":"H6668","v":["צָהַב","tsâhab","tsaw-hab'","A primitive root; to glitter, that is, be golden in color: -    X fine."]},{"k":"H6669","v":["צָהֹב","tsâhôb","tsaw-obe'","From H6668; golden in color: - yellow."]},{"k":"H6670","v":["צָהַל","tsâhal","tsaw-hal'","A primitive root; to gleam, that is, (figuratively) be cheerful; by transference, to sound clear (of various animal or human expressions): - bellow, cry aloud (out), lift up, neigh, rejoice, make to shine, shout."]},{"k":"H6671","v":["צָהַר","tsâhar","tsaw-har'","A primitive root; to glisten; used only as denominative from H3323, to press out oil: - make oil."]},{"k":"H6672","v":["צֹהַר","tsôhar","tso'-har","From H6671; a light (that is, window); dual double light, that is, noon: - midday, noon (-day, -tide), window."]},{"k":"H6673","v":["צָו    צַו","tsav    tsâv","tsav, tsawv","From H6680; an injunction: - commandment, precept."]},{"k":"H6674","v":["צֹא    צוֹא","tsô'    tsô'","tso, tso","From an unused root meaning to issue; soiled (as if excrementitious): - filthy."]},{"k":"H6675","v":["צֹאָה    צוֹאָה","tsô'âh    tsô'âh","tso-aw', tso-aw'","Feminine of H6674; excrement; generally dirt; figuratively pollution: - dung, filth (-iness). Marg. for H2716."]},{"k":"H6676","v":["צַוַּאר","tsavva'r","tsav-var'","(Chaldee); corresponding to H6677: - neck."]},{"k":"H6677","v":["צַוָּארָה    צַוָּרֹן    צַוָּר    צַוָּאר","tsavvâ'r    tsavvâr    tsavvârôn    tsavvâ'râh","tsav-vawr', -vawr', -vaw-rone', -vaw-raw","Intensive from H6696 in the sense of binding; the back of the neck (as that on which burdens are bound): - neck."]},{"k":"H6678","v":["צֹבָה    צוֹבָה    צוֹבָא","tsôbâ'    tsôbâh    tsôbâh","tso-baw', tso-baw', tso-baw'","From an unused root meaning to station; a station; Zoba or Zobah, a region of Syria: - Zoba, Zobah."]},{"k":"H6679","v":["צוּד","tsûd","tsood","A primitive root; to lie alongside (that is, in wait); by implication to catch an animal (figuratively men); (denominative from H6718) to victual (for a journey): - chase, hunt, sore, take (provision)."]},{"k":"H6680","v":["צָוָה","tsâvâh","tsaw-vaw'","A primitive root; (intensively) to constitute, enjoin: - appoint, (for-) bid. (give a) charge, (give a, give in, send with) command (-er, ment), send a messenger, put, (set) in order."]},{"k":"H6681","v":["צָוַח","tsâvach","tsaw-vakh'","A primitive root; to screech (exultingly): - shout."]},{"k":"H6682","v":["צְוָחָה","tsevâchâh","tsev-aw-khaw'","From H6681; a screech (of anguish): - cry (-ing)."]},{"k":"H6683","v":["צוּלָה","tsûlâh","tsoo-law'","From an unused root meaning to sink; an abyss (of the sea): - deep."]},{"k":"H6684","v":["צוּם","tsûm","tsoom","A primitive root; to cover over (the mouth), that is, to fast: -  X at all, fast."]},{"k":"H6685","v":["צֹם    צוֹם","tsôm    tsôm","tsome, tsome","From H6684; a fast: - fast (-ing)."]},{"k":"H6686","v":["צוּעָר","tsû‛âr","tsoo-awr'","From H6819; small; Tsuar, an Israelite: - Zuar."]},{"k":"H6687","v":["צוּף","tsûph","tsoof","A primitive root; to overflow: - (make to over-) flow, swim."]},{"k":"H6688","v":["צוּף","tsûph","tsoof","From H6687; comb of honey (from dripping): - honeycomb."]},{"k":"H6689","v":["צִיף    צוֹפַי    צוּף","tsûph    tsôphay    tsı̂yph","tsoof, tso-fah'ee, tseef","From H6688; honey comb; Tsuph or Tsophai or Tsiph, the name of an Israelite and a place in Palestine: - Zophai, Zuph."]},{"k":"H6690","v":["צוֹפַח","tsôphach","tso-fakh'","From an unused root meaning to expand, breadth; Tsophach, an Israelite: - Zophah."]},{"k":"H6691","v":["צוֹפַר","tsôphar","tso-far'","From H6852; departing; Tsophar, a friend of Job: - Zophar."]},{"k":"H6692","v":["צוּץ","tsûts","tsoots","A primitive root; to twinkle, that is, glance; by analogy to blossom (figuratively flourish): - bloom, blossom, flourish, shew self."]},{"k":"H6693","v":["צוּק","tsûq","tsook","A primitive root; to compress, that is, (figuratively) oppress, distress: - constrain, distress, lie sore, (op-) press (-or), straiten."]},{"k":"H6694","v":["צוּק","tsûq","tsook","A pirm. root (rather identical with H6693 through the idea of narrowness (of orifice)); to pour out, that is, (figuratively) smelt, utter: - be molten, pour."]},{"k":"H6695","v":["צוּקָה    צוֹק","tsôq    tsûqâh","tsoke, tsoo-kaw'","From H6693; a strait, that is, (figuratively) distress: - anguish, X troublous."]},{"k":"H6696","v":["צוּר","tsûr","tsoor","A primitive root; to cramp, that is, confine (in many applications, literally and figuratively, formative or hostile): - adversary, assault, beset, besiege, bind (up), cast, distress, fashion, fortify, inclose, lay siege, put up in bags."]},{"k":"H6697","v":["צֻר    צוּר","tsûr    tsûr","tsoor, tsoor","From H6696; properly a cliff (or sharp rock, as compressed); generally a rock or boulder; figuratively a refuge; also an edge (as precipitous): - edge, X (mighty) God (one), rock, X sharp, stone, X strength, X strong. See also H1049."]},{"k":"H6698","v":["צוּר","tsûr","tsoor","The same as H6697; rock; Tsur, the name of a Midianite and of an Israelite: - Zur."]},{"k":"H6699","v":["צוּרָה","tsûrâh","tsoo-raw'","Feminine of H6697; a rock (Job_28:10); also a form (as if pressed out): - form, rock."]},{"k":"H6700","v":["צוּרִיאֵל","tsûrı̂y'êl","tsoo-ree-ale'","From H6697 and H410; rock of God; Tsuriel, an Israelite: - Zuriel."]},{"k":"H6701","v":["צוּרִישַׁדַּי","tsûrı̂yshadday","tsoo-ree-shad-dah'ee","From H6697 and H7706; rock of (the) Almighty; Tsurishaddai, an Israelite: - Zurishaddai."]},{"k":"H6702","v":["צוּת","tsûth","tsooth","A primitive root; to blaze: - burn."]},{"k":"H6703","v":["צַח","tsach","tsakh","From H6705; dazzling, that is, sunny, bright, (figuratively) evident: - clear, dry, plainly, white."]},{"k":"H6704","v":["צִחֶה","tsicheh","tsee-kheh'","From an unused root meaning to glow; parched: - dried up."]},{"k":"H6705","v":["צָחַח","tsâchach","tsaw-khakh'","A primitive root; to glare, that is, be dazzling white: - be whiter."]},{"k":"H6706","v":["צְחִיחַ","tsechı̂yach","tsekh-ee'-akh","From H6705; glaring, that is, exposed to the bright sun: - higher place, top."]},{"k":"H6707","v":["צְחִיחָה","tsechı̂ychâh","tsekh-ee-khaw'","Feminine of H6706; a parched region, that is, the desert: - dry land."]},{"k":"H6708","v":["צְחִיחִי","tsechı̂ychı̂y","tsekh-ee-khee'","From H6706; bare spot, that is, in the glaring sun: - higher place."]},{"k":"H6709","v":["צַחֲנָה","tsachănâh","tsakh-an-aw'","From an unused root meaning to putrefy; stench: - ill savour."]},{"k":"H6710","v":["צַחְצָחָה","tsachtsâchâh","tsakh-tsaw-khaw'","From H6705; a dry place, that is, desert: - drought."]},{"k":"H6711","v":["צָחַק","tsâchaq","tsaw-khak'","A primitive root; to laugh outright (in merriment or scorn); by implication to sport: - laugh, mock, play, make sport."]},{"k":"H6712","v":["צְחֹק","tsechôq","tsekh-oke'","From H6711; laughter (in pleasure or derision): - laugh (-ed to scorn)."]},{"k":"H6713","v":["צַחַר","tsachar","tsakh'-ar","From an unused root meaning to dazzle; sheen, that is, whiteness: - white."]},{"k":"H6714","v":["צֹחַר","tsôchar","tso'-khar","From the same as H6713; whiteness; Tsochar, the name of a Hittite and of an Israelite: - Zohar. Compare H3328."]},{"k":"H6715","v":["צָחֹר","tsâchôr","tsaw-khore'","From the same as H6713; white: - white."]},{"k":"H6716","v":["צִי","tsı̂y","tsee","From H6680; a ship (as a fixture): - ship."]},{"k":"H6717","v":["צִיבָא","tsı̂ybâ'","tsee-baw'","From the same as H6678; station; Tsiba, an Israelite: - Ziba."]},{"k":"H6718","v":["צַיִד","tsayid","tsah'-yid","From a form of H6679 and meaning the same; the chase; also game (thus taken); (generally) lunch (especially for a journey): -    X catcheth, food, X hunter, (that which he took in) hunting, venison, victuals."]},{"k":"H6719","v":["צַיָּד","tsayâd","tsah'-yawd","From the same as H6718; a huntsman: - hunter."]},{"k":"H6720","v":["צֵדָה    צֵידָה","tsêydâh    tsêdâh","tsay-daw', tsay-daw'","Feminine of H6718; food: - meat, provision, venison, victuals."]},{"k":"H6721","v":["צִידֹן    צִידוֹן","tsı̂ydôn    tsı̂ydôn","tsee-done', tsee-done'","From H6679 in the sense of catching fish; fishery; Tsidon, the name of a son of Canaan, and of a place in Palestine: - Sidon, Zidon."]},{"k":"H6722","v":["צִדֹנִי    צִידֹנִי","tsı̂ydônı̂y    tsidônı̂y","tsee-do-nee', tsee-do-nee'","Patrial from H6721; a Tsidonian or inhabitant of Tsidon: - Sidonian, of Sidon, Zidonian."]},{"k":"H6723","v":["צִיָּה","tsı̂yâh","tsee-yaw'","From an unused root meaning to parch; aridity; concretely a desert: - barren, drought, dry (land, place), solitary place, wilderness."]},{"k":"H6724","v":["צִיוֹן","tsı̂yôn","tsee-yone'","From the same as H6723; a desert: - dry place."]},{"k":"H6725","v":["צִיוּן","tsı̂yûn","tsee-yoon'","From the same as H6723 in the sense of conspicuousness (compare H5329); a monumental or guiding pillar: - sign, title, waymark."]},{"k":"H6726","v":["צִיּוֹן","tsı̂yôn","tsee-yone'","The same (regular) as H6725; Tsijon (as a permanent capital), a mountain of Jerusalem: - Zion."]},{"k":"H6727","v":["צִחָא    צִיחָא","tsı̂ychâ'    tsichâ'","tsee-kahw', tsee-khaw'","As if feminine of H6704; drought; Tsicha, the name of two Nethinim: - Ziha."]},{"k":"H6728","v":["צִיִּי","tsı̂yı̂y","tsee-ee'","From the same as H6723; a desert dweller, that is, nomad or wild beast: - wild beast of the desert, that dwell in (inhabiting) the wilderness."]},{"k":"H6729","v":["צִינֹק","tsı̂ynôq","tsee-noke'","From an unused root meaning to confine; the pillory: - stocks."]},{"k":"H6730","v":["צִיעֹר","tsı̂y‛ôr","tsee-ore'","From H6819; small; Tsior, a place in Palestine: - Zior."]},{"k":"H6731","v":["צִץ    צִיץ","tsı̂yts    tsits","tseets, tseets","From H6692; properly glistening, that is, a burnished plate; also a flower (as bright colored); a wing (as gleaming in the air): - blossom, flower, plate, wing."]},{"k":"H6732","v":["צִיץ","tsı̂yts","tseets","The same as H6731; bloom; Tsits, a place in Palestine: - Ziz."]},{"k":"H6733","v":["צִיצָה","tsı̂ytsâh","tsee-tsaw'","Feminine of H6731; a flower: - flower."]},{"k":"H6734","v":["צִיצִת","tsı̂ytsith","tsee-tseeth'","Feminine of H6731; a floral or wing like projection, that is, a fore lock of hair, a tassel: - fringe, lock."]},{"k":"H6735","v":["צִיר","tsı̂yr","tseer","From H6696; a hinge (as pressed in turning); also a throe (as a physical or mental pressure); also a herald or errand doer (as constrained by the principal): - ambassador, hinge, messenger, pain, pang, sorrow. Compare H6736."]},{"k":"H6736","v":["צִיר","tsı̂yr","tseer","The same as H6735; a form (of beauty; as if pressed out, that is, carved); hence an (idolatrous) image: - beauty, idol."]},{"k":"H6737","v":["צָיַר","tsâyar","tsaw-yar'","A denominative from H6735 in the sense of ambassador; to make an errand, that is, betake oneself: - make as if . . . had been ambassador."]},{"k":"H6738","v":["צֵל","tsêl","tsale","From H6751; shade, whether literally or figuratively: - defence, shade (-ow)."]},{"k":"H6739","v":["צְלָא","tselâ'","tsel-aw'","(Chaldee); probably corresponding to H6760 in the sense of bowing; pray: - pray."]},{"k":"H6740","v":["צָלָה","tsâlâh","tsaw-law'","A primitive root; to roast: - roast."]},{"k":"H6741","v":["צִלָּה","tsillâh","tsil-law'","Feminine of H6738; Tsillah, an antediluvian woman: - Zillah."]},{"k":"H6742","v":["צְלוּל","tselûl","tsel-ool'","From H6749 in the sense of rolling; a (round or flattened) cake: - cake."]},{"k":"H6743","v":["צָלֵחַ    צָלַח","tsâlach    tsâlêach","tsaw-lakh', tsaw-lay'-akh","A primitive root; to push forward, in various senses (literally or figuratively, transitively or intransitively): - break out, come (mightily), go over, be good, be meet, be profitable, (cause to, effect, make to, send) prosper (-ity, -ous, -ously)."]},{"k":"H6744","v":["צְלַח","tselach","tsel-akh'","(Chaldee); corresponding to H6743; to advance (transitively or intransitively): - promote, prosper."]},{"k":"H6745","v":["צֵלָחָה","tsêlâchâh","tsay-law-khaw'","From H6743; something protracted or flattened out, that is, a platter: - pan."]},{"k":"H6746","v":["צְלֹחִית","tselôchı̂yth","tsel-o-kheeth'","From H6743; something prolonged or tall, that is, a vial or salt cellar: - cruse."]},{"k":"H6747","v":["צַלַּחַת","tsallachath","tsal-lakh'-ath","From H6743; something advanced or deep, that is, a bowl; figuratively the bosom: - bosom, dish."]},{"k":"H6748","v":["צָלִי","tsâlı̂y","tsaw-lee'","Passive participle of H6740; roasted: - roast."]},{"k":"H6749","v":["צָלַל","tsâlal","tsaw-lal'","A primitive root; properly to tumble down, that is, settle by a waving motion: - sink. Compare H6750, H6751."]},{"k":"H6750","v":["צָלַל","tsâlal","tsaw-lal'","A primitive root (rather identical with H6749 through the idea of vibration); to tinkle, that is, rattle together (as the ears in reddening with shame, or the teeth in chattering with fear): - quiver, tingle."]},{"k":"H6751","v":["צָלַל","tsâlal","tsaw-lal'","A primitive root (rather identical with H6749 through the idea of hovering over (compare H6754)); to shade, as twilight or an opaque object: - begin to be dark, shadowing."]},{"k":"H6752","v":["צֵלֶל","tsêlel","tsay'-lel","From H6751; shade: - shadow."]},{"k":"H6753","v":["צְלֶלְפּוֹנִי","tselelpônı̂y","tsel-el-po-nee'","From H6752 and the active participle of H6437; shade facing; Tselelponi, an Israelitess: - Hazelelponi [includ. the article.]"]},{"k":"H6754","v":["צֶלֶם","tselem","tseh'-lem","From an unused root meaning to shade; a phantom, that is, (figuratively) illusion, resemblance; hence a representative figure, especially an idol: - image, vain shew."]},{"k":"H6755","v":["צְלֶם    צֶלֶם","tselem    tselem","tseh'-lem, tsel-em'","(Chaldee); corresponding to H6754; an idolatrous figure: - form, image."]},{"k":"H6756","v":["צַלְמוֹן","tsalmôn","tsal-mone'","From H6754; shady; Tsalmon, the name of a place in Palestine and of an Israelite: - Zalmon."]},{"k":"H6757","v":["צַלְמָוֶת","tsalmâveth","tsal-maw'-veth","From H6738 and H4194; shade of death, that is, the grave (figuratively calamity): - shadow of death."]},{"k":"H6758","v":["צַלְמֹנָה","tsalmônâh","tsal-mo-naw'","Feminine of H6757; shadiness; Tsalmonah, a palce in the Desert: - Zalmonah."]},{"k":"H6759","v":["צַלְמֻנָּע","tsalmûnnâ‛","tsal-moon-naw'","From H6738 and H4513; shade has been denied; Tsalmunna, a Midianite: - Zalmunna."]},{"k":"H6760","v":["צָלַע","tsâla‛","tsaw-lah'","A primitive root; probably to curve; used only as denominative from H6763, to limp (as if one sided): - halt."]},{"k":"H6761","v":["צֶלַע","tsela‛","tseh'-lah","From H6760; a limping or fall (figuratively): - adversity, halt (-ing)."]},{"k":"H6762","v":["צֶלַע","tsela‛","tseh'-lah","The same as H6761; Tsela, a place in Palestine: - Zelah."]},{"k":"H6763","v":["צַלְעָה    צֵלָע","tsêlâ‛    tsal‛âh","tsay-law', tsal-aw'","From H6760; a rib (as curved), literally (of the body) or figuratively (of a door, that is, leaf); hence a side, literally (of a person) or figuratively (of an object or the sky, that is, quarter); arcitecturally a timber (especially floor or ceiling) or plank (single or collectively, that is, a flooring): - beem, board, chamber, corner, leaf, plank, rib, side (chamber)."]},{"k":"H6764","v":["צָלָף","tsâlâph","tsaw-lawf'","From an unused root of unknown meaning; Tsalaph, an Israelite: - Zalaph."]},{"k":"H6765","v":["צְלָפְחָד","tselophchâd","tsel-of-khawd'","From the same as H6764 and H259; Tselophchad, an Israelite: - Zelophehad."]},{"k":"H6766","v":["צֶלְצַח","tseltsach","tsel-tsakh'","From H6738 and H6703; clear shade; Tseltsach, a place in Palestine: - Zelzah."]},{"k":"H6767","v":["צְלָצַל","tselâtsal","tsel-aw-tsal'","From H6750 reduplicated; a clatter, that is, (abstractly) whirring (of wings); (concretely) a cricket; also a harpoon (as rattling), a cymbal (as clanging): - cymbal, locust, shadowing, spear."]},{"k":"H6768","v":["צֶלֶק","tseleq","tseh'-lek","From an unused root meaning to split; fissure; Tselek, an Israelite: - Zelek."]},{"k":"H6769","v":["צִלְּתַי","tsillethay","tsil-leth-ah'ee","From the feminine of H6738; shady; Tsillethai, the anme of two Israelites: - Zilthai."]},{"k":"H6770","v":["צָמֵא","tsâmê'","tsaw-may'","A primitive root; to thirst (literally or figuratively): - (be a-, suffer) thirst (-y)."]},{"k":"H6771","v":["צָמֵא","tsâmê'","tsaw-may'","From H6770; thirsty (literally or figuratively): - (that) thirst (-eth, -y)."]},{"k":"H6772","v":["צָמָא","tsâmâ'","tsaw-maw'","From H6770; thirst (literally or figuratively): - thirst (-y)."]},{"k":"H6773","v":["צִמְאָה","tsim'âh","tsim-aw'","Feminine of H6772; thirst (figuratively of libidinousnes): - thirst."]},{"k":"H6774","v":["צִמָּאוֹן","tsimmâ'ôn","tsim-maw-one'","From H6771; a thirsty place, that is, desert: - drought, dry ground, thirsty land."]},{"k":"H6775","v":["צָמַד","tsâmad","tsaw-mad'","A primitive root; to link, that is, gird; figuratively to serve, (mentally) contrive: - fasten, frame, join (self)."]},{"k":"H6776","v":["צֶמֶד","tsemed","tseh'-med","A yoke or team (that is, pair); hence an acre (that is, day’s task for a yoke of cattle to plough): - acre, couple, X together, two [asses], yoke (of oxen)."]},{"k":"H6777","v":["צַמָּה","tsammâh","tsam-maw'","From an unused root meaning to fasten on; a veil: - locks."]},{"k":"H6778","v":["צַמּוּק","tsammûq","tsam-mook'","From H6784; a cake of dried grapes: - bunch (cluster) of raisins."]},{"k":"H6779","v":["צָמַח","tsâmach","tsaw-makh'","A primitive root; to sprout (transitively or intransitively, literally or figuratively): - bear, bring forth, (cause to, make to) bud (forth), (cause to, make to) grow (again, up), (cause to) spring (forth, up)."]},{"k":"H6780","v":["צֶמַח","tsemach","tseh'-makh","From H6779; a sprout (usually concretely), literally or figuratively: - branch, bud, that which (where) grew (upon), spring (-ing)."]},{"k":"H6781","v":["צָמִד    צָמִיד","tsâmı̂yd    tsâmid","tsaw-meed', tsaw-meed'","From H6775; a bracelet or arm clasp; generally a lid: - bracelet, covering."]},{"k":"H6782","v":["צַמִּים","tsammı̂ym","tsam-meem'","From the same as H6777; a noose (as fastening); figuratively destruction: - robber."]},{"k":"H6783","v":["צְמִתֻת    צְמִיתֻת","tsemı̂ythûth    tsemithûth","tsem-ee-thooth', tsem-ee-thooth'","From H6789; excision, that is, destruction; used only (adverbially) with prepositional prefix to extinction, that is, perpetually: - ever."]},{"k":"H6784","v":["צָמַק","tsâmaq","tsaw-mak'","A primitive root; to dry up: - dry."]},{"k":"H6785","v":["צֶמֶר","tsemer","tseh'-mer","From an unused root probably meaning to be shaggy; wool: - wool (-len)."]},{"k":"H6786","v":["צְמָרִי","tsemârı̂y","tsem-aw-ree'","Patrial from an unused name of a place in Palestine; a Tsemarite or branch of the Canaanites: - Zemarite."]},{"k":"H6787","v":["צְמָרַיִם","tsemârayim","tsem-aw-rah'-yim","Dual of H6785; double fleece; Tsemarajim, a place in Palestine: - Zemaraim."]},{"k":"H6788","v":["צַמֶּרֶת","tsammereth","tsam-meh'-reth","From the same as H6785; fleeciness, that is, foliage: - highest branch, top."]},{"k":"H6789","v":["צָמַת","tsâmath","tsaw-math'","A primitive root; to extirpate (literally or figuratively): - consume, cut off, destroy, vanish."]},{"k":"H6790","v":["צִן","tsin","tseen","From an unused root meaning to prick; a crag; Tsin, a part of the Desert: - Zin."]},{"k":"H6791","v":["צֵן","tsên","tsane","From an unused root meaning to be prickly; a thorn; hence a cactus hedge: - thorn."]},{"k":"H6792","v":["צֹנֶה    צֹנֵא","tsônê'    tsôneh","tso-nay', tso-neh'","For H6629; a flock: - sheep."]},{"k":"H6793","v":["צִנָּה","tsinnâh","tsin-naw'","Feminine of H6791; a hook (as pointed); also a (large) shield (as if guarding by prickliness); also cold (as piercing): - buckler, cold, hook, shield, target."]},{"k":"H6794","v":["צִנּוּר","tsinnûr","tsin-noor'","From an unused root perhaps meaning to be hollow; a culvert: - gutter, water-spout."]},{"k":"H6795","v":["צָנַח","tsânach","tsaw-nakh'","A primitive root; to alight; (transitively) to cause to descend, that is, drive down: - fasten, light [from off]."]},{"k":"H6796","v":["צָנִן    צָנִין","tsânı̂yn    tsânin","tsaw-neen', tsaw-neen","From the same as H6791; a thorn: - thorn."]},{"k":"H6797","v":["צָנִיפָה    צָנוֹף    צָנִיף","tsânı̂yph    tsânôph    tsânı̂yphâh","tsaw-neef', tsaw-nofe', tsaw-nee-faw'","From H6801; a head dress (that is, piece of cloth wrapped around): - diadem, hood, mitre."]},{"k":"H6798","v":["צָנַם","tsânam","tsaw-nam'","A primitive root; to blast or shrink: - withered."]},{"k":"H6799","v":["צְנָן","tsenân","tsen-awn'","Probably for H6630; Tsenan, a place near Palestine: - Zenan."]},{"k":"H6800","v":["צָנַע","tsâna‛","tsaw-nah'","A primitive root; to humiliate: - humbly, lowly."]},{"k":"H6801","v":["צָנַף","tsânaph","tsaw-naf'","A primitive root; to wrap, that is, roll or dress: - be attired, X surely, violently turn."]},{"k":"H6802","v":["צְנֵפָה","tsenêphâh","tsen-ay-faw'","From H6801; a ball: -  X toss."]},{"k":"H6803","v":["צִנְצֶנֶת","tsintseneth","tsin-tseh'-neth","From the same as H6791; a vase (probably a vial tapering at the top): - pot."]},{"k":"H6804","v":["צַנְתָּרָה","tsantârâh","tsan-taw-raw'","Probably from the same as H6794; a tube: - pipe."]},{"k":"H6805","v":["צָעַד","tsâ‛ad","tsaw-ad'","A primitive root; to pace, that is, step regularly; (upward) to mount; (along) to march; (down and causatively) to hurl: - bring, go, march (through), run over."]},{"k":"H6806","v":["צַעַד","tsa‛ad","tsah'-ad","From H6804; a pace or regular step: - pace, step."]},{"k":"H6807","v":["צְעָדָה","tse‛âdâh","tseh-aw-daw'","Feminine of H6806; a march; (concretely) an (ornamental) ankle chain: - going, ornament of the legs."]},{"k":"H6808","v":["צָעָה","tsâ‛âh","tsaw-aw'","A primitive root; to tip over (for the purpose of spilling or pouring out), that is, (figuratively) depopulate; by implication to imprison or conquer; (reflexively) to lie down (for coition): -    captive exile, travelling, (cause to) wander (-er)."]},{"k":"H6809","v":["צָעִיף","tsâ‛ı̂yph","tsaw-eef'","From an unused root meaning to wrap over; a veil: - vail."]},{"k":"H6810","v":["צָעוֹר    צָעִיר","tsâ‛ı̂yr    tsâ‛ôr","tsaw-eer', tsaw-ore'","From H6819; little; (in number) few; (in age) young, (in value) ignoble: - least, little (one), small (one), + young (-er, -est)."]},{"k":"H6811","v":["צָעִיר","tsâ‛ı̂yr","tsaw-eer'","The same as H6810; Tsair, a place in Idumaea: - Zair."]},{"k":"H6812","v":["צְעִירָה","tse‛ı̂yrâh","tseh-ee-raw'","Feiminine of H6810; smallness (of age), that is, juvenility: - youth."]},{"k":"H6813","v":["צָעַן","tsâ‛an","tsaw-an'","A primitive root; to load up (beasts), that is, to migrate: - be taken down."]},{"k":"H6814","v":["צֹעַן","tsô‛an","tso'-an","Of Egyptian derivation; Tsoan, a place in Egypt: - Zoan."]},{"k":"H6815","v":["צַעֲנַיִם    צַעֲנַנִּים","tsa‛ănannı̂ym    tsa‛ănayim","tsah-an-an-neem', tsah-an-ah'-yim","Plural from H6813; removals; Tsaanannim or Tsaanajim, a place in Palestine: - Zaannannim, Zaanaim."]},{"k":"H6816","v":["צַעְצֻעַ","tsa‛tsûa‛","tsah-tsoo'-ah","From an unused root meaning to bestrew with carvings; sculpture: - image [work]."]},{"k":"H6817","v":["צָעַק","tsâ‛aq","tsaw-ak'","A primitive root; to shriek; (by implication) to proclaim (an assembly): -    X at all, call together, cry (out), gather (selves) (together)."]},{"k":"H6818","v":["צַעֲקָה","tsa‛ăqâh","tsah-ak-aw'","From H6817; a shriek: - cry (-ing)."]},{"k":"H6819","v":["צָעַר","tsâ‛ar","tsaw-ar'","A primitive root; to be small, that is, (figuratively) ignoble: - be brought low, little one, be small."]},{"k":"H6820","v":["צֹעַר","tsô‛ar","tso'-ar","From H6819; little; Tsoar, a place East of the Jordan: - Zoar."]},{"k":"H6821","v":["צָפַד","tsâphad","tsaw-fad'","A primitive root; to adhere: - cleave."]},{"k":"H6822","v":["צָפָה","tsâphâh","tsaw-faw'","A primitive root; properly to lean forward, that is, to peer into the distance; by implication to observe, await: - behold, espy, look up (well), wait for, (keep the) watch (-man)."]},{"k":"H6823","v":["צָפָה","tsâphâh","tsaw-faw'","A primitive root (probably rather identical with H6822 through the idea of expansion in outlook transformed to act); to sheet over (especially with metal): - cover, overlay."]},{"k":"H6824","v":["צָפָה","tsâphâh","tsaw-faw'","From H6823; an inundation (as covering): -    X swimmest."]},{"k":"H6825","v":["צְפִי    צְפוֹ","tsephô    tsephı̂y","tsef-o', tsef-ee'","From H6822; observant; Tsepho or Tsephi, an Idumaean: - Zephi, Zepho."]},{"k":"H6826","v":["צִפּוּי","tsipûy","tsip-poo'ee","From H6823; encasement (with metal): - covering, overlaying."]},{"k":"H6827","v":["צְפוֹן","tsephôn","tsef-one'","Probably for H6837; Tsephon, an Israelite: - Zephon."]},{"k":"H6828","v":["צָפֹן    צָפוֹן","tsâphôn    tsâphôn","tsaw-fone', tsaw-fone'","From H6845; properly hidden, that is, dark; used only of the north as a quarter (gloomy and unknown): - north (-ern, side, -ward, wind)."]},{"k":"H6829","v":["צָפוֹן","tsâphôn","tsaw-fone'","The same as H6828; boreal; Tsaphon, a place in Palestine: - Zaphon."]},{"k":"H6830","v":["צְפוֹנִי","tsephônı̂y","tsef-o-nee'","From H6828; northern: - northern."]},{"k":"H6831","v":["צְפוֹנִי","tsephônı̂y","tsef-o-nee'","Patronymic from H6827; a Tsephonite, or (collectively) a descendant of Tsephon: - Zephonites."]},{"k":"H6832","v":["צְפוּעַ","tsephûa‛","tsef-oo'-ah","From the same as H6848; excrement (as protruded): - dung."]},{"k":"H6833","v":["צִפֹּר    צִפּוֹר","tsippôr    tsippôr","tsip-pore', tsip-pore'","From H6852; a little bird (as hopping): - bird, fowl, sparrow."]},{"k":"H6834","v":["צִפּוֹר","tsippôr","tsip-pore'","The same as H6833; Tsippor, a Moabite: - Zippor."]},{"k":"H6835","v":["צַפַּחַת","tsappachath","tsap-pakh'-ath","From an unused root meaning to expand; a saucer (as flat): - cruse."]},{"k":"H6836","v":["צְפִיָּה","tsephı̂yâh","tsef-ee-yaw'","From H6822; watchfulness: - watching."]},{"k":"H6837","v":["צִפְיוֹן","tsiphyôn","tsif-yone'","From H6822; watch tower; Tsiphjon, an Israelite: - Ziphion. Compare H6827."]},{"k":"H6838","v":["צַפִּיחִת","tsappı̂ychith","tsap-pee-kheeth'","From the same as H6835; a flat thin cake: - wafer."]},{"k":"H6839","v":["צֹפִים","tsôphı̂ym","tso-feem'","Plural of active participle of H6822; watchers; Tsophim, a place East of Jordan: - Zophim."]},{"k":"H6840","v":["צָפִין","tsâphı̂yn","tsaw-feen'","From H6845; a treasure (as hidden): - hid."]},{"k":"H6841","v":["צְפִיר","tsephı̂yr","tsef-eer'","(Chaldee); corresponding to H6842; a he goat: - he [goat]."]},{"k":"H6842","v":["צָפִיר","tsâphı̂yr","tsaw-feer'","From H6852; a male goat (as prancing): - (he) goat."]},{"k":"H6843","v":["צְפִירָה","tsephı̂yrâh","tsef-ee-raw'","Feminine formed like H6842; a crown (as encircling the head); also a turn of affairs (that is, mishap): - diadem, morning."]},{"k":"H6844","v":["צָפִית","tsâphı̂yth","tsaw-feeth'","From H6822; a sentry: - watchtower."]},{"k":"H6845","v":["צָפַן","tsâphan","tsaw-fan'","A primitive root; to hide (by covering over); by implication to hoard or reserve; figuratively to deny; specifically (favorably) to protect, (unfavorably) to lurk: - esteem, hide (-den one, self), lay up, lurk (be set) privily, (keep) secret (-ly, place)."]},{"k":"H6846","v":["צְפַנְיָהוּ    צְפַנְיָה","tsephanyâh    tsephanyâhû","tsef-an-yaw', tsef-an-yaw'-hoo","From H6845 and H3050; Jah has secreted; Tsephanjah, the name of four Israelites: - Zephaniah."]},{"k":"H6847","v":["צָפְנַת    פַּעְנֵחַ","tsâphnath pa‛nêach","tsof-nath' pah-nay'-akh","Of Egyptian derivation; Tsophnath-Paneach, Joseph’s Egyptian name: - Zaphnath-paaneah."]},{"k":"H6848","v":["צִפְעֹנִי    צֶפַע","tsepha‛    tsiph‛ônı̂y","tseh'-fah, tsif-o-nee'","From an unused root meaning to extrude; a viper (as thrusting out the tongue, that is, hissing): - adder, cockatrice."]},{"k":"H6849","v":["צְפִעָה","tsephi‛âh","tsef-ee-aw'","Feminine from the same as H6848; an outcast thing: - issue."]},{"k":"H6850","v":["צָפַף","tsâphaph","tsaw-faf'","A primitive root; to coo or chirp (as a bird): - chatter, peep, whisper."]},{"k":"H6851","v":["צַפְצָפָה","tsaphtsâphâh","tsaf-tsaw-faw'","From H6687; a willow (as growing in overflowed places): - willow tree."]},{"k":"H6852","v":["צָפַר","tsâphar","tsaw-far'","A primitive root; to skip about, that is, return: - depart early."]},{"k":"H6853","v":["צְפַר","tsephar","tsef-ar'","(Chaldee); corresponding to H6833; a bird: - bird."]},{"k":"H6854","v":["צְפַרְדֵּעַ","tsephardêa‛","tsef-ar-day'-ah","From H6852 and a word elsewhere unused meaning a swamp; a marsh leaper, that is, frog: - frog."]},{"k":"H6855","v":["צִפֹּרָה","tsippôrâh","tsip-po-raw'","Feminine of H6833; bird; tsipporah, Moses’ wife: - Zipporah."]},{"k":"H6856","v":["צִפֹּרֶן","tsippôren","tsip-po'-ren","From H6852 (in the denominative sense (from H6833) of scratching); properly a claw, that is, (human) nail; also the point of a style (or pen, tipped with adamant): - nail, point."]},{"k":"H6857","v":["צְפַת","tsephath","tsef-ath'","From H6822; watch tower; Tsephath, a place in Palestine: - Zephath."]},{"k":"H6858","v":["צֶפֶת","tsepheth","tseh'-feth","From an unused root meaning to encircle; a capital of a column: - chapiter."]},{"k":"H6859","v":["צְפָתָה","tsephâthâh","tsef-aw'-thaw","The same as H6857; Tsephathah, a place in Palestine: - Zephathah."]},{"k":"H6860","v":["צִיקְלַג    צִקְלַג","tsiqlag    tsı̂yqelag","tsik-lag', tsee-kel-ag'","Of uncertain derivation; Tsiklag or Tsikelag, a place in Palestine: - Ziklag."]},{"k":"H6861","v":["צִקְלֹן","tsiqlôn","tsik-lone'","From an unused root meaning to wind; a sack (as tied at the mouth): - husk."]},{"k":"H6862","v":["צָר    צַר","tsar    tsâr","tsar, tsawr","From H6887; narrow; (as a noun) a tight place (usually figuratively, that is, trouble); also a pebble (as in H6864); (transitively) an opponent (as crowding): - adversary, afflicted (-tion), anguish, close, distress, enemy, flint, foe, narrow, small, sorrow, strait, tribulation, trouble."]},{"k":"H6863","v":["צֵר","tsêr","tsare","From H6887; Tser, a place in Palestine: - Zer."]},{"k":"H6864","v":["צֹר","tsôr","tsore","From H6696; a stone (as if pressed hard or to a point); (by implication of use) a knife: - flint, sharp stone."]},{"k":"H6865","v":["צוֹר    צֹר","tsôr    tsôr","tsore, tsore","The same as H6864; a rock; Tsor, a place in Palestine: - Tyre, Tyrus."]},{"k":"H6866","v":["צָרַב","tsârab","tsaw-rab'","A primitive root; to burn: - burn."]},{"k":"H6867","v":["צָרֶבֶת","tsârebeth","tsaw-reh'-beth","From H6686; conflagration (of fire or disease): - burning, inflammation."]},{"k":"H6868","v":["צְרֵדָתָה    צְרֵדָה","tserêdâh    tserêdâthâh","tser-ay-daw', tser-ay-daw'-thaw","Apparently from an unused root meaning to pierce; puncture; Tseredah, a place in Palestine: - Zereda, Zeredathah."]},{"k":"H6869","v":["צָרָה","tsârâh","tsaw-raw'","Feminine of H6862; tightness (that is, figuratively trouble); transitively a female rival: - adversary, adversity, affliction, anguish, distress, tribulation, trouble."]},{"k":"H6870","v":["צְרוּיָה","tserûyâh","tser-oo-yaw'","Feminine participle passive from the same as H6875; wounded; Tserujah, an Israelitess: - Zeruiah."]},{"k":"H6871","v":["צְרוּעָה","tserû‛âh","tser-oo-aw'","Feminine passive participle of H6879; leprous; Tseruah, an Israelitess: - Zeruah."]},{"k":"H6872","v":["צְרֹר    צְרוֹר","tserôr    tserôr","tser-ore', tser-ore'","From H6887; a parcel (as packed up); also a kernel or particle (as if a package): - bag, X bendeth, bundle, least grain, small stone."]},{"k":"H6873","v":["צָרַח","tsârach","tsaw-rakh'","A primitive root; to be clear (in tone, that is, shrill), that is, to whoop: - cry, roar."]},{"k":"H6874","v":["צְרִי","tserı̂y","tser-ee'","The same as H6875; Tseri, an Israelite: - Zeri. Compare H3340."]},{"k":"H6875","v":["צֳרִי    צְרִי","tserı̂y    tsŏrı̂y","tser-ee', tsor-ee'","From an unused root meaning to crack (as by pressure), hence to leak; distillation, that is, balsam: - balm."]},{"k":"H6876","v":["צֹרִי","tsôrı̂y","tso-ree'","Patrial from H6865; a Tsorite or inhabitant of Tsor (that is, Syrian): - (man) of Tyre."]},{"k":"H6877","v":["צְרִיחַ","tserı̂yach","tser-ee'-akh","From H6873 in the sense of clearness of vision; a citadel: - high place, hold."]},{"k":"H6878","v":["צֹרֶךְ","tsôrek","tso'-rek","From an unused root meaning to need; need: - need."]},{"k":"H6879","v":["צָרַע","tsâra‛","tsaw-rah'","A primitive root; to scourge, that is, (intransitively and figuratively) to be stricken with leprosy: - leper, leprous."]},{"k":"H6880","v":["צִרְעָה","tsir‛âh","tsir-aw'","From H6879; a wasp (as stinging): - hornet."]},{"k":"H6881","v":["צָרְעָה","tsor‛âh","tsor-aw'","Apparently another form for H6880; Tsorah, a place in Palestine: - Zareah, Zorah, Zoreah."]},{"k":"H6882","v":["צָרְעָתִי    צָרְעִי","tsâr‛ı̂y    tsâr‛âthı̂y","tsor-ee', tsor-aw-thee'","Patrial from H6881; a Tsorite or Tsorathite, that is, inhabitant of Tsorah: - Zorites, Zareathites, Zorathites."]},{"k":"H6883","v":["צָרַעַת","tsâra‛ath","tsaw-rah'-ath","From H6879; leprosy: - leprosy."]},{"k":"H6884","v":["צָרַף","tsâraph","tsaw-raf'","A primitive root; to fuse (metal), that is, refine (literally or figuratively): - cast, (re-) fine (-er), founder, goldsmith, melt, pure, purge away, try."]},{"k":"H6885","v":["צֹרְפִי","tsôrephı̂y","tso-ref-ee'","From H6884; refiner; Tsorephi (with the article), an Israelite: - goldsmith’s."]},{"k":"H6886","v":["צָרְפַת","tsârephath","tsaw-ref-ath'","From H6884; refinement; Tsarephath, a place in Palestine: - Zarephath."]},{"k":"H6887","v":["צָרַר","tsârar","tsaw-rar'","A primitive root; to cramp, literally or figuratively, transitively or intransitively: - adversary, (be in) afflict (-ion), besiege, bind (up), (be in, bring) distress, enemy, narrower, oppress, pangs, shut up, be in a strait (trouble), vex."]},{"k":"H6888","v":["צְרֵרָה","tserêrâh","tser-ay-raw'","Apparently by erroneous transcription for H6868; Tsererah for Tseredah: - Zereath."]},{"k":"H6889","v":["צֶרֶת","tsereth","tseh'-reth","Perhaps from H6671; splendor; Tsereth, an Israelite: - Zereth."]},{"k":"H6890","v":["צֶרֶת    הַשַּׁחַר","tsereth hashshachar","tseh'-reth hash-shakh'-ar","From the same as H6889 and H7837 with the article interposed; splendor of the dawn; Tsereth hash Shachar, a place in Palestine: - Zareth-shahar."]},{"k":"H6891","v":["צָרְתָן","tsârethân","tsaw-reth-awn'","Perhaps for H6868; Tsarethan, a place in Palestine: - Zarthan."]},{"k":"H6892","v":["קִיא    קֵא","qê'    qı̂y'","kay, kee","From H6958; vomit: - vomit."]},{"k":"H6893","v":["קָאַת","qâ'ath","kaw-ath'","From H6958; probably the pelican (from vomiting): - cormorant."]},{"k":"H6894","v":["קַב","qab","kab","From H6895; a hollow, that is, vessel used as a (dry) measure: - cab."]},{"k":"H6895","v":["קָבַב","qâbab","kaw-bab'","A primitive root; to scoop out, that is, (figuratively) to malign or execrate (that is, stab with words): -    X at all, curse."]},{"k":"H6896","v":["קֵבָה","qêbâh","kay-baw'","From H6895; the paunch (as a cavity) or first stomach of ruminants: - maw."]},{"k":"H6897","v":["קֹבָה","qôbâh","ko'-baw","From H6895; the abdomen (as a cavity): - belly."]},{"k":"H6898","v":["קֻבָּה","qûbbâh","koob-baw'","From H6895; a pavilion (as a domed cavity): - tent."]},{"k":"H6899","v":["קִבּוּץ","qibbûts","kib-boots'","From H6908; a throng: - company."]},{"k":"H6900","v":["קְבֻרָה    קְבוּרָה","qebûrâh    qebûrâh","keb-oo-raw', keb-oo-raw'","Feminine passive participle of H6912; sepulture; (concretely) a sepulchre: - burial, burying place, grave, sepulchre."]},{"k":"H6901","v":["קָבַל","qâbal","kaw-bal'","A primitive root; to admit, that is, take (literally or figuratively): - choose, (take) hold, receive, (under-) take."]},{"k":"H6902","v":["קְבַל","qebal","keb-al'","(Chaldee); corresponding to H6901; to acquire: - receive, take."]},{"k":"H6903","v":["קֳבֵל    קְבֵל","qebêl    qŏbêl","keb-ale', kob-ale'","(Chaldee); corresponding to H6905; (adverbially) in front of; usually (with other particles) on account of, so as, since, hence: -  + accounting to, + as, + because, before, + for this cause, + forasmuch as, + by this means, over against, by reason of, + that, + therefore, + though, + wherefore."]},{"k":"H6904","v":["קֹבֶל","qôbel","ko'-bel","From H6901 in the sense of confronting (as standing opposite in order to receive); a battering ram: - war."]},{"k":"H6905","v":["קָבָל","qâbâl","kaw-bawl'","From H6901 in the sense of opposite (see H6904); the presence, that is, (adverbially) in front of: - before."]},{"k":"H6906","v":["קָבַע","qâba‛","kaw-bah'","A primitive root; to cover, that is, (figuratively) defraud: - rob, spoil."]},{"k":"H6907","v":["קֻבַּעַת","qûbba‛ath","koob-bah'-ath","From H6906; a goblet (as deep like a cover): - dregs."]},{"k":"H6908","v":["קָבַץ","qâbats","kaw-bats'","A primitive root; to grasp, that is, collect: - assemble (selves), gather (bring) (together, selves together, up), heap, resort, X surely, take up."]},{"k":"H6909","v":["קַבְצְאֵל","qabtse'êl","keb-tseh-ale'","From H6908 and H410; God has gathered; Kabtseel, a place in Palestine: - Kabzeel. Compare H3343."]},{"k":"H6910","v":["קְבֻצָה","qebûtsâh","keb-oo-tsaw'","Feminine passive participle of H6908; a hoard: -  X gather."]},{"k":"H6911","v":["קִבְצַיִם","qibtsayim","kib-tsah'-yim","Dual from H6908; a double heap; Kibtsajim, a place in Palestine: - Kibzaim."]},{"k":"H6912","v":["קָבַר","qâbar","kaw-bar'","A primitive root; to inter: -  X in any wise, bury (-ier)."]},{"k":"H6913","v":["קִבְרָה    קֶבֶר","qeber    qibrâh","keh'-ber, kib-raw'","From H6912; a sepulchre: - burying place, grave, sepulchre."]},{"k":"H6914","v":["קִבְרוֹת    הַתַּאֲוָה","qibrôth hatta'ăvâh","kib-roth' hat-tah-av-aw'","From the feminine plural of H6913 and H8378 with the article inteposed; graves of the longing; Kibroth hat Taavh, a place in the Desert: - Kibroth-hattaavah."]},{"k":"H6915","v":["קָדַד","qâdad","kaw-dad'","A primitive root; to shrivel up, that is, contract or bend the body (or neck) in deference: - bow (down) (the) head, stoop."]},{"k":"H6916","v":["קִדָּה","qiddâh","kid-daw'","From H6915; cassia bark (as in shrivelled rolls): - cassia."]},{"k":"H6917","v":["קָדוּם","qâdûm","kaw-doom'","Passive participle of H6923; a pristine hero: - ancient."]},{"k":"H6918","v":["קָדֹשׁ    קָדוֹשׁ","qâdôsh    qâdôsh","kaw-doshe', kaw-doshe'","From H6942; sacred (ceremonially or morally); (as noun) God (by eminence), an angel, a saint, a sanctuary: - holy (One), saint."]},{"k":"H6919","v":["קָדַח","qâdach","kaw-dakh'","A primitive root to inflame: - burn, kindle."]},{"k":"H6920","v":["קַדַּחַת","qaddachath","kad-dakh'-ath","From H6919; inflammation, that is, febrile disease: - burning ague, fever."]},{"k":"H6921","v":["קָדִם    קָדִים","qâdı̂ym    qâdim","kaw-deem', kaw-deem'","From H6923; the fore or front part; hence (by orientation) the East (often adverbially eastward, for brevity the East wind): - east (-ward, wind)."]},{"k":"H6922","v":["קַדִּישׁ","qaddı̂ysh","kad-deesh'","(Chaldee); corresponding to H6918: - holy (One), saint."]},{"k":"H6923","v":["קָדַם","qâdam","kaw-dam'","A primitive root; to project (one self), that is, precede; hence to anticipate, hasten, meet (usually for help): - come (go, [flee]) before, + disappoint, meet, prevent."]},{"k":"H6924","v":["קֵדְמָה    קֶדֶם","qedem    qêdmâh","keh'-dem, kayd'-maw","From H6923; the front, of palce (absolutely the fore part, relatively the East) or time (antiquity); often used adverbially (before, anciently, eastward): - aforetime, ancient (time), before, east (end, part, side, -ward), eternal, X ever (-lasting), forward, old, past. Compare H6926."]},{"k":"H6925","v":["קְדָם    קֳדָם","qŏdâm    qedâm","kod-awm', ked-awm'","(Chaldee); corresponding to H6924; before: -  before, X from, X I (thought), X me, + of, X it pleased, presence."]},{"k":"H6926","v":["קִדְמָה","qidmâh","kid-maw'","Feminine of H6924; the forward part (or relatively) East (often adverbially on the East or in front): - east (-ward)."]},{"k":"H6927","v":["קַדְמָה","qadmâh","kad-maw'","From H6923; priority (in time); also used adverbially (before): - afore, antiquity, former (old) estate."]},{"k":"H6928","v":["קַדְמָה","qadmâh","kad-maw'","(Chaldee); corresponding to H6927; former time: - afore [-time], ago."]},{"k":"H6929","v":["קֵדְמָה","qêdemâh","kayd'-maw","From H6923; precedence; Kedemah, a son of Ishmael: - Kedemah."]},{"k":"H6930","v":["קַדְמוֹן","qadmôn","kad-mone'","From H6923; eastern: - east."]},{"k":"H6931","v":["קַדְמֹנִי    קַדְמוֹנִי","qadmônı̂y    qadmônı̂y","kad-mo-nee', kad-mo-nee'","From H6930; (of time) anterior or (of place) oriental: - ancient, they that went before, east, (thing of) old."]},{"k":"H6932","v":["קְדֵמוֹת","qedêmôth","ked-ay-mothe'","From H6923; beginnings; Kedemoth, a place in eastern Palestine: - Kedemoth."]},{"k":"H6933","v":["קַדְמַי","qadmay","kad-mah'ee","(Chaldee); from a root corresponding to H6923; first: - first."]},{"k":"H6934","v":["קַדְמִיאֵל","qadmı̂y'êl","kad-mee-ale'","From H6924 and H410; presence of God; Kadmiel, the name of three Israelites: - Kadmiel."]},{"k":"H6935","v":["קַדְמֹנִי","qadmônı̂y","kad-mo-nee'","The same as H6931; ancient, that is, aboriginal; Kadmonite (collectively), the name of a tribe in Palestine: - Kadmonites."]},{"k":"H6936","v":["קָדְקֹד","qodqôd","kod-kode'","From H6915; the crown of the head (as the part most bowed): - crown (of the head), pate, scalp, top of the head."]},{"k":"H6937","v":["קָדַר","qâdar","kaw-dar'","A primitive root; to be ashy, that is, dark colored; by implication to mourn (in sackcloth or sordid garments): - be black (-ish), be (make) dark (-en), X heavily, (cause to) mourn."]},{"k":"H6938","v":["קֵדָר","qêdâr","kay-dawr'","From H6937; dusky (of the skin or the tent); Kedar, a son of Ishmael; also (collectively) bedawin (as his descendants or representatives): - Kedar."]},{"k":"H6939","v":["קִדְרוֹן","qidrôn","kid-rone'","From H6937; dusky place; Kidron, a brook near Jerusalem: - Kidron."]},{"k":"H6940","v":["קַדְרוּת","qadrûth","kad-rooth'","From H6937; duskiness: - blackness."]},{"k":"H6941","v":["קְדֹרַנִּית","qedôrannı̂yth","ked-o-ran-neeth'","Adverb from H6937; blackish ones (that is, in sackcloth); used adverbially in mourning weeds: - mournfully."]},{"k":"H6942","v":["קָדַשׁ","qâdash","kaw-dash'","A primitive root; to be (causatively make, pronounce or observe as) clean (ceremonially or morally): - appoint, bid, consecrate, dedicate, defile, hallow, (be, keep) holy (-er, place), keep, prepare, proclaim, purify, sanctify (-ied one, self), X wholly."]},{"k":"H6943","v":["קֶדֶשׁ","qedesh","keh'-desh","From H6942; a sanctum; Kedesh, the name of four places in Palestine: - Kedesh."]},{"k":"H6944","v":["קֹדֶשׁ","qôdesh","ko'-desh","From H6942; a sacred place or thing; rarely abstractly sanctity: - consecrated (thing), dedicated (thing), hallowed (thing), holiness, (X most) holy (X day, portion, thing), saint, sanctuary."]},{"k":"H6945","v":["קָדֵשׁ","qâdêsh","kaw-dashe'","From H6942; a (quasi) sacred person, that is, (technically) a (male) devotee (by prostitution) to licentious idolatry: - sodomite, unclean."]},{"k":"H6946","v":["קָדֵשׁ","qâdêsh","kaw-dashe'","The same as H6945; sanctuary; Kadesh, a place in the Desert: - Kadesh. Compare H6947."]},{"k":"H6947","v":["קָדֵשׁ בַּרְנֵעַ","qâdêsh barnêa‛","kaw-dashe' bar-nay'-ah","From the same as H6946 and an otherwise unused word (apparently compounded of a correspondent to H1251 and a derivative of H5128) meaning desert of a fugitive; Kadesh of (the) Wilderness of Wandering; Kadesh-Barnea, a place in the Desert: - Kadesh-barnea."]},{"k":"H6948","v":["קְדֵשָׁה","qedêshâh","ked-ay-shaw'","Feminine of H6945; a female devotee (that is, prostitute): - harlot, whore."]},{"k":"H6949","v":["קָהָה","qâhâh","kaw-haw'","A primitive root; to be dull: - be set on edge, be blunt."]},{"k":"H6950","v":["קָהַל","qâhal","kaw-hal'","A primitive root; to convoke: - assemble (selves) (together), gather (selves) (together)."]},{"k":"H6951","v":["קָהָל","qâhâl","kaw-hawl","From H6950; assemblage (usually concretely): - assembly, company, congregation, multitude."]},{"k":"H6952","v":["קְהִלָּה","qehillâh","keh-hil-law'","From H6950; an assemblage: - assembly, congregation."]},{"k":"H6953","v":["קֹהֶלֶת","qôheleth","ko-heh'-leth","Feminine of active participle from H6950; a (female) assembler (that is, lecturer); abstractly preaching (used as a ‘nom de plume’, Koheleth): - preacher."]},{"k":"H6954","v":["קְהֵלָתָה","qehêlâthâh","keh-hay-law'-thaw","From H6950; convocation; Kehelathah, a place in the Desert: - Kehelathah."]},{"k":"H6955","v":["קְהָת","qehâth","keh-hawth'","From an unused root meaning to ally oneself; allied; Kehath, an Israelite: - Kohath."]},{"k":"H6956","v":["קֳהָתִי","qŏhâthı̂y","ko-haw-thee'","Patronymic from H6955; a Kohathite (collectively) or descendant of Kehath: - Kohathites."]},{"k":"H6957","v":["קָו    קַו","qav    qâv","kav, kawv","From H6960 (compare H6961); a cord (as connecting), especially for measuring; figuratively a rule; also a rim, a musical string or accord: - line. Compare H6978."]},{"k":"H6958","v":["קָיָה    קוֹא","qô'    qâyâh","ko, kaw-yaw'","A primitive root; to vomit: - spue (out), vomit (out, up, up again)."]},{"k":"H6959","v":["קוֹבַע","qôba‛","ko'-bah    or    ko-bah'","A form collateral to H3553; a helmet: - helmet."]},{"k":"H6960","v":["קָוָה","qâvâh","kaw-vaw'","A primitive root; to bind together (perhaps by twisting), that is, collect; (figuratively) to expect: - gather (together), look, patiently, tarry, wait (for, on, upon)."]},{"k":"H6961","v":["קָוֶה","qâveh","kaw-veh'","From H6960; a (measuring) cord (as if for binding): - line."]},{"k":"H6962","v":["קוּט","qûṭ","koot","A primitive root; properly to cut off, that is, (figuratively) detest: - be grieved, lothe self."]},{"k":"H6963","v":["קֹל    קוֹל","qôl    qôl","kole, kole","From an unused root meaning to call aloud; a voice or sound: -  + aloud, bleating, crackling, cry (+ out), fame, lightness, lowing, noise, + hold peace, [pro-] claim, proclamation, + sing, sound, + spark, thunder (-ing), voice, + yell."]},{"k":"H6964","v":["קוֹלָיָה","qôlâyâh","ko-law-yaw'","From H6963 and H3050; voice of Jah; Kolajah, the name of two Israelites: - Kolaiah."]},{"k":"H6965","v":["קוּם","qûm","koom","A primitive root; to rise (in various applications, literally, figuratively, intensively and causatively): - abide, accomplish, X be clearer, confirm, continue, decree, X be dim, endure, X enemy, enjoin, get up, make good, help, hold, (help to) lift up (again), make, X but newly, ordain, perform, pitch, raise (up), rear (up), remain, (a-) rise (up) (again, against), rouse up, set (up), (e-) stablish, (make to) stand (up), stir up, strengthen, succeed, (as-, make) sure (-ly), (be) up (-hold, -rising)."]},{"k":"H6966","v":["קוּם","qûm","koom","(Chaldee); corresponding to H6965: - appoint, establish, make, raise up self, (a-) rise (up), (make to) stand, set (up)."]},{"k":"H6967","v":["קוֹמָה","qômâh","ko-maw'","From H6965; height: -  X along, height, high, stature, tall."]},{"k":"H6968","v":["קוֹמְמִיּוּת","qômemı̂yûth","ko-mem-ee-yooth'","From H6965; elevation, that is, (adverbially) erectly (figuratively): - upright."]},{"k":"H6969","v":["קוּן","qûn","koon","A primitive root; to strike a musical note, that is, chant or wail (at a funeral): - lament, mourning woman."]},{"k":"H6970","v":["קוֹעַ","qôa‛","ko'-ah","Probably from H6972 in the original sense of cutting off; curtailment; Koa, a region of Babylon: - Koa."]},{"k":"H6971","v":["קֹף    קוֹף","qôph    qôph","kofe, kofe","Probably of foreign origin; a monkey: - ape."]},{"k":"H6972","v":["קוּץ","qûts","koots","A primitive root; to clip off; used only as denominative from H7019; to spend the harvest season: - summer."]},{"k":"H6973","v":["קוּץ","qûts","koots","A primitive root (rather identical with H6972 through the idea of severing oneself from (compare H6962)); to be (causatively make) disgusted or anxious: - abhor, be distressed, be grieved, loathe, vex, be weary."]},{"k":"H6974","v":["קוּץ","qûts","koots","A primitive root (rather identical with H6972 through the idea of abruptness in starting up from sleep (compare H3364)); to awake (literally or figuratively): - arise, (be) (a-) wake, watch."]},{"k":"H6975","v":["קֹץ    קוֹץ","qôts    qôts","kotse, kotse","From H6972 (in the sense of pricking); a thorn: - thorn."]},{"k":"H6976","v":["קוֹץ","qôts","kotse","The same as H6975; Kots, the name of two Israelites: - Koz, Hakkoz [includ. the article.]"]},{"k":"H6977","v":["קְוֻצָּה","qevûtstsâh","kev-oots-tsaw'","Feminine passive participle of H6972 in its original sense; a forelock (as shorn): - lock."]},{"k":"H6978","v":["קַו־קַו","qav-qav","kav-kav'","From H6957 (in the sense of a fastening); stalwart: -  X meted out."]},{"k":"H6979","v":["קוּר","qûr","koor","A primitive root; to trench; by implication to throw forth; also (denominative from H7023) to wall up, whether literally (to build a wall) or figuratively (to estop): - break down, cast out, destroy, dig."]},{"k":"H6980","v":["קוּר","qûr","koor","From H6979; (only plural) trenches, that is, a web (as if so formed): - web."]},{"k":"H6981","v":["קֹרֵא    קוֹרֵא","qôrê'    qôrê'","ko-ray', ko-ray'","Active participle of H7121; crier; Kore, the name of two Israelites: - Kore."]},{"k":"H6982","v":["קֹרָה    קוֹרָה","qôrâh    qôrâh","ko-raw', ko-raw'","From H6979; a rafter (forming trenches as it were); by implication a roof: - beam, roof."]},{"k":"H6983","v":["קוֹשׁ","qôsh","koshe","A primitive root; to bend; used only as denominative for H3369, to set a trap: - lay a snare."]},{"k":"H6984","v":["קוּשָׁיָהוּ","qûshâyâhû","koo-shaw-yaw'-hoo","From the passive participle of H6983 and H3050; entrapped of Jah; Kushajah, an Israelite: - Kushaiah."]},{"k":"H6985","v":["קַט","qaṭ","kat'","From H6990 in the sense of abbreviation; a little, that is, (adverbially) merely: - very."]},{"k":"H6986","v":["קֶטֶב","qeṭeb","keh'-teb","From an unused root meaning to cut off; ruin: - destroying, destruction."]},{"k":"H6987","v":["קֹטֶב","qôṭeb","ko'-teb","From the same as H6986; extermination: - destruction."]},{"k":"H6988","v":["קְטוֹרָה","qeṭôrâh","ket-o-raw'","From H6999; perfume: - incense."]},{"k":"H6989","v":["קְטוּרָה","qeṭûrâh","ket-oo-raw'","Feminine passive participle of H6999; perfumed; Keturah, a wife of Abraham: - Keturah."]},{"k":"H6990","v":["קָטַט","qâṭaṭ","kaw-tat'","A primitive root; to clip off, that is, (figuratively) destroy: - be cut off."]},{"k":"H6991","v":["קָטַל","qâṭal","kaw-tal'","A primitive root; properly to cut off, that is, (figuratively) put to death: - kill, slay."]},{"k":"H6992","v":["קְטַל","qeṭal","ket-al'","(Chaldee); corresponding to H6991; to kill: - slay."]},{"k":"H6993","v":["קֶטֶל","qeṭel","keh'-tel","From H6991; a violent death: - slaughter."]},{"k":"H6994","v":["קָטֹן","qâṭôn","kaw-tone'","A primitive root (rather denominative from H6996); to diminish, that is, be (causatively make) diminutive or (figuratively) of no account: - be a (make) small (thing), be not worthy."]},{"k":"H6995","v":["קֹטֶן","qôṭen","ko'-ten","From H6994; a pettiness, that is, the little finger: - little finger."]},{"k":"H6996","v":["קָטֹן    קָטָן","qâṭân    qâṭôn","kaw-tawn', kaw-tone'","From H6962; abbreviated, that is, diminutive, literally (in quantity, size or number) or figuratively (in age or importance): - least, less (-ser), little (one), small (-est, one, quantity, thing), young (-er, -est)."]},{"k":"H6997","v":["קָטָן","qâṭân","kaw-tawn'","The same as H6996; small; Katan, an Israelite: - Hakkatan [includ. the article.]"]},{"k":"H6998","v":["קָטַף","qâṭaph","kaw-taf'","A primitive root; to strip off: - crop off, cut down (up), pluck."]},{"k":"H6999","v":["קָטַר","qâṭar","kaw-tar'","A primitive root (rather identical with H7000 through the idea of fumigation in a close place and perhaps thus driving out the occupants); to smoke, that is, turn into fragrance by fire (especially as an act of worship): - burn (incense, sacrifice) (upon), (altar for) incense, kindle, offer (incense, a sacrifice)."]},{"k":"H7000","v":["קָטַר","qâṭar","kaw-tar'","A primitive root; to inclose: - join."]},{"k":"H7001","v":["קְטַר","qeṭar","ket-ar'","(Chaldee); from a root corresponding to H7000; a knot (as tied up), that is, (figuratively) a riddle; also a vertebra (as if a knot): - doubt, joint."]},{"k":"H7002","v":["קִטֵּר","qiṭṭêr","kit-tare'","From H6999; perfume: - incense."]},{"k":"H7003","v":["קִטְרוֹן","qiṭrôn","kit-rone'","From H6999; fumigative; Kitron, a place in Palestine: - Kitron."]},{"k":"H7004","v":["קְטֹרֶת","qeṭôreth","ket-o'-reth","From H6999; a fumigation: - (sweet) incense, perfume."]},{"k":"H7005","v":["קַטָּת","qaṭṭâth","kat-tawth'","From H6996; littleness, Kattath, a place in Palestine: - Kattath."]},{"k":"H7006","v":["קָיָה","qâyâh","kaw-yaw'","A primitive root; to vomit: - spue."]},{"k":"H7007","v":["קַיִט","qayiṭ","kah'-yit","(Chaldee); corresponding to H7019; harvest: - summer."]},{"k":"H7008","v":["קִיטֹר    קִיטוֹר","qı̂yṭôr    qı̂yṭôr","kee-tore', kee-tore'","From H6999; a fume, that is, cloud: - smoke, vapour."]},{"k":"H7009","v":["קִים","qı̂ym","keem","From H6965; an opponent (as rising against one), that is, (collectively) enemies: - substance."]},{"k":"H7010","v":["קְיָם","qeyâm","keh-yawm'","(Chaldee); from H6966; an edict (as arising in law): - decree, statute."]},{"k":"H7011","v":["קַיָּם","qayâm","kah-yawm'","(Chaldee); from H6966; permanent (a rising firmly): - stedfast, sure."]},{"k":"H7012","v":["קִימָה","qı̂ymâh","kee-maw'","From H6965; an arising: - rising up."]},{"k":"H7013","v":["קַיִן","qayin","kah'-yin","From H6969 in the original sense of fixity; a lance (as striking fast): - spear."]},{"k":"H7014","v":["קַיִן","qayin","kah'-yin","The same as H7013 (with a play upon the affinity to H7069); Kajin, the name of the first child, also of a place in Palestine, and of an Oriental tribe: - Cain, Kenite (-s)."]},{"k":"H7015","v":["קִינָה","qı̂ynâh","kee-naw'","From H6969; a dirge (as accompanied by beating the breasts or on instruments): - lamentation."]},{"k":"H7016","v":["קִינָה","qı̂ynâh","kee-naw'","The same as H7015; Kinah, a place in Palestine: - Kinah."]},{"k":"H7017","v":["קִינִי    קֵינִי","qêynı̂y    qı̂ynı̂y","kay-nee', kee-nee'","Patronymic from H7014; a Kenite or member of the tribe of Kajin: - Kenite."]},{"k":"H7018","v":["קֵינָן","qêynân","kay-nawn'","From the same as H7064; fixed; Kenan, an antediluvian: - Cainan, Kenan."]},{"k":"H7019","v":["קַיִץ","qayits","kah'-yits","From H6972; harvest (as the crop), whether the product (grain or fruit) or the (dry) season: - summer (fruit, house)."]},{"k":"H7020","v":["קִיצוֹן","qı̂ytsôn","kee-tsone'","From H6972; terminal: - out- (utter-) most."]},{"k":"H7021","v":["קִיקָיוֹן","qı̂yqâyôn","kee-kaw-yone'","Perhaps from H7006; the gourd (as nauseous): - gourd."]},{"k":"H7022","v":["קִיקָלוֹן","qı̂yqâlôn","kee-kaw-lone'","From H7036; intense disgrace: - shameful spewing."]},{"k":"H7023","v":["קִירָה    קִר    קִיר","qı̂yr    qir    qı̂yrâh","keer, keer, kee-raw'","From H6979; a wall (as built in a trench): -    + mason, side, town, X very, wall."]},{"k":"H7024","v":["קִיר","qı̂yr","keer","The same as H7023; fortress; Kir, a place in Assyrian; also one in Moab: - Kir. Compare H7025."]},{"k":"H7025","v":["קִיר חֲרֶשֶׂת    קִיר חֶרֶשׂ","qı̂yr chereś    qı̂yr chăreśeth","(keer) kheh'-res, khar-eh'-seth","From H7023 and H2789; fortress of earthenware; Kir-Cheres or Kir-Chares-eth, a place in Moab: - Kir-haraseth, Kir-hareseth, Kir-haresh, Kir-heres."]},{"k":"H7026","v":["קֵרֹס    קֵירֹס","qêyrôs    qêrôs","kay-roce', kay-roce'","From the same as H7166; ankled; Keros, one of the Nethinim: - Keros."]},{"k":"H7027","v":["קִישׁ","qı̂ysh","keesh","From H6983; a bow; Kish, the name of five Israelites: - Kish."]},{"k":"H7028","v":["קִישׁוֹן","qı̂yshôn","kee-shone'","From H6983; winding; Kishon, a river of Palestine: - Kishon, Kison."]},{"k":"H7029","v":["קִישִׁי","qı̂yshı̂y","kee-shee'","From H6983; bowed; Kishi, an Israelite: - Kishi."]},{"k":"H7030","v":["קִיתָרֹס","qı̂ythârôs","kee-thaw-roce'","(Chaldee); Of Greek origin [H2788]; a lyre: - harp."]},{"k":"H7031","v":["קַל","qal","kal","Contracted from H7043; light; (by implication) rapid (also adverbially): - light, swift (-ly)."]},{"k":"H7032","v":["קָל","qâl","kawl","(Chaldee); corresponding to H6963: - sound, voice."]},{"k":"H7033","v":["קָלָה","qâlâh","kaw-law'","A primitive root (rather identical with H7034 through the idea of shrinkage by heat); to toast, that is, scorch partially or slowly: - dried, loathsome, parch, roast."]},{"k":"H7034","v":["קָלָה","qâlâh","kaw-law'","A primitive root; to be light (as implied in rapid motion), but figuratively only (be (causatively hold) in contempt): - base, contemn, despise, lightly esteem, set light, seem vile."]},{"k":"H7035","v":["קָלַהּ","qâlahh","kaw-lah'","For H6950; to assemble: - gather together."]},{"k":"H7036","v":["קָלוֹן","qâlôn","kaw-lone'","From H7034; disgrace; (by implication) the pudenda: - confusion, dishonour, ignominy, reproach, shame."]},{"k":"H7037","v":["קַלַּחַת","qallachath","kal-lakh'-ath","Apparently but a form for H6747; a kettle: - caldron."]},{"k":"H7038","v":["קָלַט","qâlaṭ","kaw-lat'","A primitive root; to maim: - lacking in his parts."]},{"k":"H7039","v":["קָלִיא    קָלִי","qâlı̂y    qâlı̂y'","kaw-lee', kaw-lee'","From H7033; roasted ears of grain: - parched corn."]},{"k":"H7040","v":["קַלַּי","qallay","kal-lah'ee","From H7043; frivolous; Kallai, an Israelite: - Kallai."]},{"k":"H7041","v":["קֵלָיָה","qêlâyâh","kay-law-yaw'","From H7034; insignificance; Kelajah, an Israelite: - Kelaiah."]},{"k":"H7042","v":["קְלִיטָא","qelı̂yṭâ'","kel-ee-taw'","From H7038; maiming; Kelita, the name of three Israelites: - Kelita."]},{"k":"H7043","v":["קָלַל","qâlal","kaw-lal'","A primitive root; to be (causatively make) light, literally (swift, small, sharp, etc.) or figuratively (easy, trifling, vile, etc.): - abate, make bright, bring into contempt, (ac-) curse, despise, (be) ease (-y, -ier), (be a, make, make somewhat, move, seem a, set) light (-en, -er, ly, -ly afflict, -ly esteem, thing), X slight [-ly], be swift (-er), (be, be more, make, re-) vile, whet."]},{"k":"H7044","v":["קָלָל","qâlâl","kaw-lawl'","From H7043; brightened (as if sharpened): - burnished, pol-ished."]},{"k":"H7045","v":["קְלָלָה","qelâlâh","kel-aw-law'","From H7043; vilification: - (ac-) curse (-d, -ing)."]},{"k":"H7046","v":["קָלַס","qâlas","kaw-las'","A primitive root; to disparage, that is, ridicule: - mock, scoff, scorn."]},{"k":"H7047","v":["קֶלֶס","qeles","keh'-les","From H7046; a laughing stock: - derision."]},{"k":"H7048","v":["קַלָּסָה","qallâsâh","kal-law-saw'","Intensive from H7046; ridicule: - mocking."]},{"k":"H7049","v":["קָלַע","qâla‛","kaw-lah'","A primitive root; to sling; also to carve (as if a circular motion, or into light forms): - carve, sling (out)."]},{"k":"H7050","v":["קֶלַע","qela‛","kah'-lah","From H7049; a sling; also a (door) screen (as if slung across), or the valve (of the door) itself: - hanging, leaf, sling."]},{"k":"H7051","v":["קַלָּע","qallâ‛","kal-law'","Intensive from H7049; a slinger: - slinger."]},{"k":"H7052","v":["קְלֹקֵל","qelôqêl","kel-o-kale'","From H7043; insubstantial: - light."]},{"k":"H7053","v":["קִלְּשׁוֹן","qilleshôn","kil-lesh-one'","From an unused root meaning to prick; a prong, that is, hay fork: - fork."]},{"k":"H7054","v":["קָמָה","qâmâh","kaw-maw'","Feminine of active participle of H6965; something that rises, that is, a stalk of grain: - (standing) corn, grown up, stalk."]},{"k":"H7055","v":["קְמוּאֵל","qemû'êl","kem-oo-ale'","From H6965 and H410; raised of God; Kemuel, the name of a relative of Abraham, and of two Israelites: - Kemuel."]},{"k":"H7056","v":["קָמוֹן","qâmôn","kaw-mone'","From H6965; an elevation; Kamon, a place East of the Jordan: - Camon."]},{"k":"H7057","v":["קִימוֹשׁ    קִמּוֹשׁ","qimmôsh    qı̂ymôsh","kim-moshe', kee-moshe'","From an unused root meaning to sting; a prickly plant: - nettle. Compare H7063."]},{"k":"H7058","v":["קֶמַח","qemach","keh'-makh","From an unused root probably meaning to grind; flour: - flour, meal."]},{"k":"H7059","v":["קָמַט","qâmaṭ","kaw-mat'","A primitive root; to pluck, that is, destroy: - cut down, fill with wrinkles."]},{"k":"H7060","v":["קָמַל","qâmal","kaw-mal'","A primitive root; to wither: - hew down, wither."]},{"k":"H7061","v":["קָמַץ","qâmats","kaw-mats'","A primitive root; to grasp with the hand: - take an handful."]},{"k":"H7062","v":["קֹמֶץ","qômets","ko'-mets","From H7061; a grasp, that is, handful: - handful."]},{"k":"H7063","v":["קִמָּשׁוֹן","qimmâshôn","kim-maw-shone'","From the same as H7057; a prickly plant: - thorn."]},{"k":"H7064","v":["קֵן","qên","kane","Contracted from H7077; a nest (as fixed), sometimes including the nestlings; figuratively a chamber or dwelling: - nest, room."]},{"k":"H7065","v":["קָנָא","qânâ'","kaw-naw'","A primitive root; to be (causatively make) zealous, that is, (in a bad sense) jealous or envious: -  (be) envy (-ious), be (move to, provoke to) jealous (-y), X very, (be) zeal (-ous)."]},{"k":"H7066","v":["קְנָא","qenâ'","ken-aw'","(Chaldee); corresponding to H7069; to purchase: - buy."]},{"k":"H7067","v":["קַנָּא","qannâ'","kan-naw'","From H7065; jealous: - jealous. Compare H7072."]},{"k":"H7068","v":["קִנְאָה","qin'âh","kin-aw'","From H7065; jealousy or envy: - envy (-ied), jealousy, X sake, zeal."]},{"k":"H7069","v":["קָנָה","qânâh","kaw-naw'","A primitive root; to erect, that is, create; by extension to procure, especially by purchase (causatively sell); by implication to own: - attain, buy (-er), teach to keep cattle, get, provoke to jealousy, possess (-or), purchase, recover, redeem, X surely, X verily."]},{"k":"H7070","v":["קָנֶה","qâneh","kaw-neh'","From H7069; a reed (as erect); by resemblance a rod (especially for measuring), shaft, tube, stem, the radius (of the arm), beam (of a steelyard): - balance, bone, branch, calamus, cane, reed, X spearman, stalk."]},{"k":"H7071","v":["קָנָה","qânâh","kaw-naw'","Feminine of H7070; reediness; Kanah, the name of a stream and of a place in Palestine: - Kanah."]},{"k":"H7072","v":["קַנּוֹא","qannô'","kan-no'","For H7067; jealous or angry: - jealous."]},{"k":"H7073","v":["קְנַז","qenaz","ken-az'","Probably from an unused root meaning to hunt; hunter; Kenaz, the name of an Edomite and of two Israelites: - Kenaz."]},{"k":"H7074","v":["קְנִזִּי","qenizzı̂y","ken-iz-zee'","Patronymic from H7073, a Kenizzite or descendant of Kenaz: - Kenezite, Kenizzites."]},{"k":"H7075","v":["קִנְיָן","qinyân","kin-yawn'","From H7069; creation, that is, (concretely) creatures; also acquisition, purchase, wealth: - getting, goods, X with money, riches, substance."]},{"k":"H7076","v":["קִנָּמוֹן","qinnâmôn","kin-naw-mone'","From an unused root (meaning to erect); cinnamon bark (as in upright rolls): - cinnamon."]},{"k":"H7077","v":["קָנַן","qânan","kaw-nan'","A primitive root; to erect; but used only as denominative from H7064; to nestle, that is, build or occupy as a nest: - make . . . nest."]},{"k":"H7078","v":["קֶנֶץ","qenets","keh'-nets","From an unused root probably meaning to wrench; perversion: - end."]},{"k":"H7079","v":["קְנָת","qenâth","ken-awth'","From H7069; possession; Kenath, a place East of the Jordan: - Kenath."]},{"k":"H7080","v":["קָסַם","qâsam","kaw-sam'","A primitive root; properly to distribute, that is, determine by lot or magical scroll; by implication to divine: - divine (-r, -ation), prudent, soothsayer, use [divination]."]},{"k":"H7081","v":["קֶסֶם","qesem","keh'-sem","From H7080; a lot; also divination (including its fee), oracle: - (reward of) divination, divine sentence, witchcraft."]},{"k":"H7082","v":["קָסַס","qâsas","kaw-sas'","A primitive root; to lop off: - cut off."]},{"k":"H7083","v":["קֶסֶת","qeseth","keh'-seth","From the same as H3563 (or as H7185); properly a cup, that is, an ink stand: - inkhorn."]},{"k":"H7084","v":["קְעִילָה","qe‛ı̂ylâh","keh-ee-law'","Perhaps from H7049 in the sense of inclosing; citadel; Keilah, a place in Palestine: - Keilah."]},{"k":"H7085","v":["קַעֲקַע","qa‛ăqa‛","kah-ak-ah'","From the same as H6970; an incision or gash: -    + mark."]},{"k":"H7086","v":["קְעָרָה","qe‛ârâh","keh-aw-raw'","Probably from H7167; a bowl (as cut out hollow): - charger, dish."]},{"k":"H7087","v":["קָפָא","qâphâ'","kaw-faw'","A primitive root; to shrink, that is, thicken (as unracked wine, curdled milk, clouded sky, frozen water): - congeal, curdle, dark`, settle."]},{"k":"H7088","v":["קָפַד","qâphad","kaw-fad'","A primitive root; to contract, that is, roll together: - cut off."]},{"k":"H7089","v":["קְפָדָה","qephâdâh","kef-aw-daw'","From H7088; shrinking, that is, terror: - destruction."]},{"k":"H7090","v":["קִפֹּד    קִפּוֹד","qippôd    qippôd","kip-pode', kip-pode'","From H7088; a species of bird, perhaps the bittern (from its contracted form): - bittern."]},{"k":"H7091","v":["קִפּוֹז","qippôz","kip-poze'","From an unused root meaning to contract, that is, spring forward; an arrow snake (as darting on its prey): - great owl."]},{"k":"H7092","v":["קָפַץ","qâphats","kaw-fats'","A primitive root; to draw together, that is, close; by implication to leap (by contracting the limbs); specifically to die (from gathering up the feet): - shut (up), skip, stop, take out of the way."]},{"k":"H7093","v":["קֵץ","qêts","kates","Contracted from H7112; an extremity; adverbially (with prepositional prefix) after: -  + after, (utmost) border, end, [in-] finite, X process."]},{"k":"H7094","v":["קָצַב","qâtsab","kaw-tsab'","A primitive root; to clip, or (generally) chop: - cut down, shorn."]},{"k":"H7095","v":["קֶצֶב","qetseb","keh'-tseb","From H7094; shape (as if cut out); base (as if there cut off): - bottom, size."]},{"k":"H7096","v":["קָצָה","qâtsâh","kaw-tsaw'","A primitive root; to cut off; (figuratively) to destroy; (partially) to scrape off: - cut off, cut short, scrape (off)."]},{"k":"H7097","v":["קֵצֶה    קָצֶה","qâtseh    qêtseh","kaw-tseh', kay-tseh'","The second form is negative only; from H7096; an extremity (used in a great variety of applications and idioms; compare H7093): -    X after, border, brim, brink, edge, end, [in-] finite, frontier, outmost coast, quarter, shore, (out-) side, X some, ut (-ter-) most (part)."]},{"k":"H7098","v":["קָצָה","qâtsâh","kaw-tsaw'","Feminine of H7097; a termination (used like H7097): - coast, corner, (selv-) edge, lowest, (uttermost) part."]},{"k":"H7099","v":["קִצְוָה    קֶצֶו","qetsev    qitsvâh","keh'-tsev, kits-vaw'","From H7096; a limit (used like H7097, but with less variety): - end, edge, uttermost part."]},{"k":"H7100","v":["קֶצַח","qetsach","keh'-tsakh","From an unused root apparently meaning to incise; fennel flower (from its pungency): - fitches."]},{"k":"H7101","v":["קָצִין","qâtsı̂yn","kaw-tseen'","From H7096 in the sense of determining; a magistrate (as deciding) or other leader: - captain, guide, prince, ruler. Compare H6278."]},{"k":"H7102","v":["קְצִיעָה","qetsiy‛âh","kets-ee-aw'","From H7106; cassia (as peeled; plural the bark): - cassia."]},{"k":"H7103","v":["קְצִיעָה","qetsı̂y‛âh","kets-ee-aw'","The same as H7102; Ketsiah, a daughter of Job: - Kezia."]},{"k":"H7104","v":["קְצִיץ","qetsı̂yts","kets-eets'","From H7112; abrupt; Keziz, a valley in Palestine: - Keziz."]},{"k":"H7105","v":["קָצִיר","qâtsı̂yr","kaw-tseer'","From H7114; severed, that is, harvest (as reaped), the crop, the time, the reaper, or figuratively; also a limb (of a tree, or simply foliage): - bough, branch, harvest (man)."]},{"k":"H7106","v":["קָצַע","qâtsa‛","kaw-tsah'","A primitive root; to strip off, that is, (partially) scrape; by implication to segregate (as an angle): - cause to scrape, corner."]},{"k":"H7107","v":["קָצַף","qâtsaph","kaw-tsaf'","A primitive root; to crack off, that is, (figuratively) burst out in rage: - (be) anger (-ry), displease, fret self, (provoke to) wrath (come), be wroth."]},{"k":"H7108","v":["קְצַף","qetsaph","kets-af'","(Chaldee); corresponding to H7107; to become enraged: - be furious."]},{"k":"H7109","v":["קְצַף","qetsaph","kets-af'","(Chaldee); from H7108; rage: - wrath."]},{"k":"H7110","v":["קֶצֶף","qetseph","keh'-tsef","From H7107; a splinter (as chipped off); figuratively rage or strife: - foam, indignation, X sore, wrath."]},{"k":"H7111","v":["קְצָפָה","qetsâphâh","kets-aw-faw'","From H7107; a fragment: - bark [-ed]."]},{"k":"H7112","v":["קָצַץ","qâtsats","kaw-tsats'","A primitive root; to chop off (literally or figuratively): - cut (asunder, in pieces, in sunder, off), X utmost."]},{"k":"H7113","v":["קְצַץ","qetsats","kets-ats'","(Chaldee); corresponding to H7112: - cut off."]},{"k":"H7114","v":["קָצַר","qâtsar","kaw-tsar'","A primitive root; to dock off, that is, curtail (transitively or intransitively, literally or figuratively); especially to harvest (grass or grain): -    X at all, cut down, much discouraged, grieve, harvestman, lothe, mourn, reap (-er), (be, wax) short (-en, -er), straiten, trouble, vex."]},{"k":"H7115","v":["קֹצֶר","qôtser","ko'-tser","From H7114; shortness (of spirit), that is, impatience: - anguish."]},{"k":"H7116","v":["קָצֵר","qâtsêr","kaw-tsare'","From H7114; short (whether in size, number, life, strength or temper): - few, hasty, small, soon."]},{"k":"H7117","v":["קְצָת","qetsâth","kets-awth'","From H7096; a termination (literally or figuratively); also (by implication) a portion; adverbially (with prepositional prefix) after: - end, part, X some."]},{"k":"H7118","v":["קְצָת","qetsâth","kets-awth'","(Chaldee); corresponding to H7117: - end, partly."]},{"k":"H7119","v":["קַר","qar","kar","Contracted from an unused root meaning to chill; cool; figuratively quiet: - cold, excellent [from the margin]."]},{"k":"H7120","v":["קֹר","qôr","kore","From the same as H7119; cold: - cold."]},{"k":"H7121","v":["קָרָא","qârâ'","kaw-raw'","A primitive root (rather identical with H7122 through the idea of accosting a person met); to call out to (that is, properly address by name, but used in a wide variety of applications): - bewray [self], that are bidden, call (for, forth, self, upon), cry (unto), (be) famous, guest, invite, mention, (give) name, preach, (make) proclaim (-ation), pronounce, publish, read, renowned, say."]},{"k":"H7122","v":["קָרָא","qârâ'","kaw-raw'","A primitive root; to encounter, whether accidentally or in a hostile manner: - befall, (by) chance, (cause to) come (upon), fall out, happen, meet."]},{"k":"H7123","v":["קְרָא","qerâ'","ker-aw'","(Chaldee); corresponding to H7121: - call, cry, read."]},{"k":"H7124","v":["קֹרֵא","qôrê'","ko-ray'","Properly active participle of H7121; a caller, that is, partridge (from its cry): - partridge. See also H6981."]},{"k":"H7125","v":["קִרְאָה","qir'âh","keer-aw'","From H7122; an encountering, accidental, friendly or hostile (also adverbially opposite): -    X against (he come), help, meet, seek, X to, X in the way."]},{"k":"H7126","v":["קָרַב","qârab","kaw-rab'","A primitive root; to approach (causatively bring near) for whatever purpose: - (cause to) approach, (cause to) bring (forth, near), (cause to) come (near, nigh), (cause to) draw near (nigh), go (near), be at hand, join, be near, offer, present, produce, make ready, stand, take."]},{"k":"H7127","v":["קְרֵב","qerêb","ker-abe'","(Chaldee); corresponding to H7126: - approach, come (near, nigh), draw near."]},{"k":"H7128","v":["קְרָב","qerâb","ker-awb'","From H7126; hostile encounter: - battle, war."]},{"k":"H7129","v":["קְרָב","qerâb","ker-awb'","(Chaldee); corresponding to H7128: - war."]},{"k":"H7130","v":["קֶרֶב","qereb","keh'-reb","From H7126; properly the nearest part, that is, the centre, whether literally, figuratively or adverbially (especially with preposition): -    X among, X before, bowels, X unto charge, + eat (up), X heart, X him, X in, inward (X -ly, part, -s, thought), midst, + out of, purtenance, X therein, X through, X within self."]},{"k":"H7131","v":["קָרֵב","qârêb","kaw-rabe'","From H7126; near: - approach, come (near, nigh), draw near."]},{"k":"H7132","v":["קְרָבָה","qerâbâh","ker-aw-baw'","From H7126; approach: - approaching, draw near."]},{"k":"H7133","v":["קֻרְבָּן    קָרְבָּן","qorbân    qûrbân","kor-bawn', koor-bawn'","From H7126; something brought near the altar, that is, a sacrificial present: - oblation, that is offered, offering."]},{"k":"H7134","v":["קַרְדֹּם","qardôm","kar-dome'","Perhaps from H6923 in the sense of striking upon; an axe: - ax."]},{"k":"H7135","v":["קָרָה","qârâh","kaw-raw'","Feminine of H7119; coolness: - cold."]},{"k":"H7136","v":["קָרָה","qârâh","kaw-raw'","A primitive root; to light upon (chiefly by accident); causatively to bring about; specifically to impose timbers (for roof or floor): - appoint, lay (make) beams, befall, bring, come (to pass unto), floor, [hap] was, happen (unto), meet, send good speed."]},{"k":"H7137","v":["קָרֶה","qâreh","kaw-reh'","From H7136; an (unfortunate) occurrence, that is, some accidental (ceremonial) disqualification: - uncleanness that chanceth."]},{"k":"H7138","v":["קָרֹב    קָרוֹב","qârôb    qârôb","kaw-robe', kaw-robe'","From H7126; near (in place, kindred or time): - allied, approach, at hand, + any of kin, kinsfolk (-sman), (that is) near (of kin), neighbour, (that is) next, (them that come) nigh (at hand), more ready, short (-ly)."]},{"k":"H7139","v":["קָרַח","qârach","kaw-rakh'","A primitive root; to depilate: - make (self) bald."]},{"k":"H7140","v":["קֹרַח    קֶרַח","qerach    qôrach","keh'-rakh, ko'-rakh","From H7139; ice (as if bald, that is, smooth); hence, hail; by resemblance, rock crystal: - crystal, frost, ice."]},{"k":"H7141","v":["קֹרַח","qôrach","ko'-rakh","From H7139; ice; Korach, the name of two Edomites and three Israelites: - Korah."]},{"k":"H7142","v":["קֵרֵחַ","qêrêach","kay-ray'-akh","From H7139; bald (on the back of the head): - bald (head)."]},{"k":"H7143","v":["קָרֵחַ","qârêach","kaw-ray'-akh","From H7139; bald; Kareach, an Israelite: - Careah, Kareah."]},{"k":"H7144","v":["קָרְחָא    קָרְחָה","qorchâh    qorchâ'","kor-khaw', kor-khaw'","From H7139; baldness: - bald (-ness), X utterly."]},{"k":"H7145","v":["קָרְחִי","qorchı̂y","kor-khee'","Patronymic from H7141; a Korchite (collectively) or descendant of Korach: - Korahite, Korathite, sons of Kore, Korhite."]},{"k":"H7146","v":["קָרַחַת","qârachath","kaw-rakh'-ath","From H7139; a bald spot (on the back of the head); figuratively a threadbare spot (on the back side of the cloth): - bald head, bare within."]},{"k":"H7147","v":["קְרִי","qerı̂y","ker-ee'","From H7136; hostile encounter: - contrary."]},{"k":"H7148","v":["קָרִיא","qârı̂y'","kaw-ree'","From H7121; called, that is, select: - famous, renowned."]},{"k":"H7149","v":["קִרְיָה    קִרְיָא","qiryâ'    qiryâh","keer-yaw', keer-yaw'","(Chaldee); corresponding to H7151: - city."]},{"k":"H7150","v":["קְרִיאָה","qerı̂y'âh","ker-ee-aw'","From H7121; a proclamation: - preaching."]},{"k":"H7151","v":["קִרְיָה","qiryâh","kir-yaw'","From H7136 in the sense of flooring, that is, building; a city: - city."]},{"k":"H7152","v":["קְרִיּוֹת","qerı̂yôth","ker-ee-yoth'","Plural of H7151; buildings; Kerioth, the name of two places in Palestine: - Kerioth, Kirioth."]},{"k":"H7153","v":["קִרְיַת הָאַרְבַּע    קִרְיַת אַרְבַּע","qiryath 'arba‛    qiryath hâ'arba‛","(keer-yath') ar-bah', haw-ar-bah'","The second form, used in Neh_11:25, has the article interposed; from H7151 and H704 or H702; city of Arba, or city of the four (giants); Kirjath-Arba or Kirjath-ha-Arba, a place in Palestine: - Kirjath-arba."]},{"k":"H7154","v":["קִרְיַת בַּעַל","qiryath ba‛al","keer-yath' bah'-al","From H7151 and H1168; city of Baal; Kirjath Baal, a place in Palestine: - Kirjath-baal."]},{"k":"H7155","v":["קִרְיַת חֻצוֹת","qiryath chûtsôth","keer-yath' khoo-tsoth'","From H7151 and the feminine plural of H2351; city of streets; Kirjath Chutsoth, a place in Moab: - Kirjath-huzoth."]},{"k":"H7156","v":["קִרְיָתַיִם","qiryâthayim","keer-yaw-thah'-yim","Dual of H7151; double city; Kirjathaim, the name of two places in Palestine: - Kiriathaim, Kirjathaim."]},{"k":"H7157","v":["קִרְיַת עָרִים    קִרְיַת יְעָרִים","qiryath ye‛ârı̂ym    qiryath ‛ârı̂ym","(keer-yath') yeh-aw-reem', aw-reem'","Used in Jer_26:20 with the article interposed; or in Jos_18:28 using simply the former part of the word; from H7151 and the plural of H3293 or H5892; city of forests, or city of towns; Kirjath Jearim or Kirjath Arim, a place in Palestine: - Kirjath, Kirjath-jearim, Kirjath-arim."]},{"k":"H7158","v":["קִרְיַת סֵפֶר    קִרְיַת סַנָּה","qiryath sannâh    qiryath sêpher","keer-yath' san-naw', keer-yath' say'-fer","From H7151 and a simpler feminine from the same as H5577, or (for the second form) H5612; city of branches, or of a book; Kirjath Sannah or Kirjath Sepher, a place in Palestine: - Kirjath-sannah, Kirjath-sepher."]},{"k":"H7159","v":["קָרַם","qâram","kaw-ram'","A primitive root; to cover: - cover."]},{"k":"H7160","v":["קָרַן","qâran","kaw-ran'","A primitive root; to push or gore; used only as denominative from H7161, to shoot out horns; figuratively rays: - have horns, shine."]},{"k":"H7161","v":["קֶרֶן","qeren","keh'-ren","From H7160; a horn (as projecting); by implication a flask, cornet; by resemblance an elephant’s tooth (that is, ivory), a corner (of the altar), a peak (of a mountain), a ray (of light); figuratively power: -  X hill, horn."]},{"k":"H7162","v":["קֶרֶן","qeren","keh'-ren","(Chaldee); corresponding to H7161; a horn (literally or for sound): - horn, cornet."]},{"k":"H7163","v":["קֶרֶן הַפּוּךְ","qeren happûk","keh'-ren hap-pook'","From H7161 and H6320; horn of cosmetic; Keren-hap-Puk, one of Job’s daughters: - Keren-happuch."]},{"k":"H7164","v":["קָרַס","qâras","kaw-ras'","A primitive root; properly to protrude; used only as denominative from H7165 (for alliteration with H7167), to hunch, that is, be humpbacked: - stoop."]},{"k":"H7165","v":["קֶרֶס","qeres","keh'-res","From H7164; a knob or belaying pin (from its swelling form): - tache."]},{"k":"H7166","v":["קַרְסֹל","qarsôl","kar-sole'","From H7164; an ankle (as a protuberance or joint): - foot."]},{"k":"H7167","v":["קָרַע","qâra‛","kaw-rah'","A primitive root; to rend, literally or figuratively (revile, paint the eyes, as if enlarging them): - cut out, rend, X surely, tear."]},{"k":"H7168","v":["קֶרַע","qera‛","keh'-rah","From H7167; a rag: - piece, rag."]},{"k":"H7169","v":["קָרַץ","qârats","kaw-rats'","A primitive root; to pinch, that is, (partially) to bite the lips, blink the eyes (as a gesture of malice), or (fully) to squeeze off (a piece of clay in order to mould a vessel from it): - form, move, wink."]},{"k":"H7170","v":["קְרַץ","qerats","ker-ats'","(Chaldee); corresponding to H7171 in the sense of a bit (to eat the morsels of any one, that is, chew him up (figuratively) by slander): -    + accuse."]},{"k":"H7171","v":["קֶרֶץ","qerets","keh'-rets","From H7169; extirpation (as if by constriction): - destruction."]},{"k":"H7172","v":["קַרְקַע","qarqa‛","kar-kah'","From H7167; floor (as if a pavement of pieces or tesserae), of a building or the sea: - bottom, (X one side of the) floor."]},{"k":"H7173","v":["קַרְקַע","qarqa‛","kar-kah'","The same as H7172; ground floor; Karka (with the article prefixed), a place in Palestine: - Karkaa."]},{"k":"H7174","v":["קַרְקֹר","qarqôr","kar-kore'","From H6979; foundation; Karkor, a place East of the Jordan: - Karkor."]},{"k":"H7175","v":["קֶרֶשׁ","qeresh","keh'-resh","From an unused root meaning to split off; a slab or plank; by implication a deck of a ship: - bench, board."]},{"k":"H7176","v":["קֶרֶת","qereth","keh'-reth","From H7136 in the sense of building; a city: - city."]},{"k":"H7177","v":["קַרתָּה","qartâh","kar-taw'","From H7176; city; Kartah, a place in Palestine: - Kartah."]},{"k":"H7178","v":["קַרְתָּן","qartân","kar-tawn'","From H7176; city plot; Kartan, a place in Palestine: - Kartan."]},{"k":"H7179","v":["קַשׁ","qash","kash","From H7197; straw (as dry): - stubble."]},{"k":"H7180","v":["קִשֻּׁא","qishshû'","kish-shoo'","From an unused root (meaning to be hard); a cucumber (from the difficulty of digestion): - cucumber."]},{"k":"H7181","v":["קָשַׁב","qâshab","kaw-shab'","A primitive root; to prick up the ears, that is, hearken: - attend, (cause to) hear (-ken), give heed, incline, mark (well), regard."]},{"k":"H7182","v":["קֶשֶׁב","qesheb","keh'-sheb","From H7181; a hearkening: -  X diligently, hearing, much heed, that regarded."]},{"k":"H7183","v":["קַשֻּׁב    קַשָּׁב","qashshâb    qashshûb","kash-shawb', kash-shoob'","From H7181; hearkening: - attent (-ive)."]},{"k":"H7184","v":["קַשְׂוָה    קָשָׂה","qâśâh    qaśvâh","kaw-saw', kas-vaw'","From an unused root meaning to be round; a jug (from its shape): - cover, cup."]},{"k":"H7185","v":["קָשָׁה","qâshâh","kaw-shaw'","A primitive root; properly to be dense, that is, tough or severe (in various applications): - be cruel, be fiercer, make grievous, be ([ask a], be in, have, seem, would) hard (-en, [labour], -ly, thing), be sore, (be, make) stiff (-en, [-necked])."]},{"k":"H7186","v":["קָשֶׁה","qâsheh","kaw-sheh'","From H7185; severe (in various applications): - churlish, cruel, grievous, hard ([-hearted], thing), heavy, + impudent, obstinate, prevailed, rough (-ly), sore, sorrowful, stiff ([-necked]), stubborn, + in trouble."]},{"k":"H7187","v":["קְשֹׁט    קְשׁוֹט","qeshôṭ    qeshôṭ","kesh-ote', kesh-ote'","(Chaldee); corresponding to H7189; fidelity: - truth."]},{"k":"H7188","v":["קָשַׁח","qâshach","kaw-shakh'","A primitive root; to be (causatively make) unfeeling: - harden."]},{"k":"H7189","v":["קֹשְׁטְ    קֹשֶׁט","qosheṭ    qoshṭ","ko'-shet, kosht","From an unused root meaning to balance; equity (as evenly weighed), that is, reality: - certainty, truth."]},{"k":"H7190","v":["קְשִׁי","qeshı̂y","kesh-ee'","From H7185; obstinacy: - stubbornness."]},{"k":"H7191","v":["קִשְׁיוֹן","qishyôn","kish-yone'","From H7190; hard ground; Kishjon, a place in Palestine: - Kishion, Keshon."]},{"k":"H7192","v":["קְשִׂיטָה","qeśı̂yṭâh","kes-ee-taw'","From an unused root (probably meaning to weigh out); an ingot (as definitely estimated and stamped for a coin): - piece of money (silver)."]},{"k":"H7193","v":["קַשְׂקֶשֶׂת","qaśqeśeth","kas-keh'-seth","By reduplication from an unused root meaning to shale off as bark; a scale (of a fish); hence a coat of mail (as composed of or covered with jointed plates of metal): - mail, scale."]},{"k":"H7194","v":["קָשַׁר","qâshar","kaw-shar'","A primitive root; to tie, physically (gird, confine, compact) or mentally (in love, league): - bind (up), (make a) conspire (-acy, -ator), join together, knit, stronger, work [treason]."]},{"k":"H7195","v":["קֶשֶׁר","qesher","keh'-sher","From H7194; an (unlawful) alliance: - confederacy, conspiracy, treason."]},{"k":"H7196","v":["קִשֻּׁר","qishshûr","kish-shoor'","From H7194; an (ornamental) girdle (for women): - attire, headband."]},{"k":"H7197","v":["קָשַׁשׁ","qâshash","kaw-shash'","A primitive root; to become sapless through drought; used only as denominative from H7179; to forage for straw, stubble or wood; figuratively to assemble: - gather (selves) (together)."]},{"k":"H7198","v":["קֶשֶׁת","qesheth","keh'-sheth","From H7185 in the original sense (of H6983) of bending; a bow, for shooting (hence figuratively strength) or the iris: -  X arch (-er), + arrow, bow ([-man, -shot])."]},{"k":"H7199","v":["קַשָּׁת","qashshâth","kash-shawth'","Intensive (as denominative) from H7198; a bowman: -  X archer."]},{"k":"H7200","v":["רָאָה","râ'âh","raw-aw'","A primitive root; to see, literally or figuratively (in numerous applications, direct and implied, transitively, intransitively and causatively): - advise self, appear, approve, behold, X certainly, consider, discern, (make to) enjoy, have experience, gaze, take heed, X indeed, X joyfully, lo, look (on, one another, one on another, one upon another, out, up, upon), mark, meet, X be near, perceive, present, provide, regard, (have) respect, (fore-, cause to, let) see (-r, -m, one another), shew (self), X sight of others, (e-) spy, stare, X surely, X think, view, visions."]},{"k":"H7201","v":["רָאָה","râ'âh","raw-aw'","From H7200; a bird of prey (probably the vulture, from its sharp sight): - glede. Compare H1676."]},{"k":"H7202","v":["רָאֶה","râ'eh","raw-eh'","From H7200; seeing, that is, experiencing: - see."]},{"k":"H7203","v":["רֹאֶה","rô'eh","ro-eh'","Active participle of H7200; a seer (as often rendered); but also (abstractly) a vision: - vision."]},{"k":"H7204","v":["רֹאֵה","rô'êh","ro-ay'","From H7203; prophet; Roeh, an Israelite: - Haroeh [includ. the article.]"]},{"k":"H7205","v":["רְאוּבֵן","re'ûbên","reh-oo-bane'","From the imperative of H7200 and H1121; see ye a son; Reuben, a son of Jacob: - Reuben."]},{"k":"H7206","v":["רְאוּבֵנִי","re'ûbênı̂y","reh-oo-bay-nee'","Patronymic from H7205; a Reubenite or descendant of Reuben: - children of Reuben, Reubenites."]},{"k":"H7207","v":["רַאֲוָה","ra'ăvâh","rah-av-aw'","From H7200; sight, that is, satisfaction: - behold."]},{"k":"H7208","v":["רְאוּמָה","re'ûmâh","reh-oo-maw'","Feminine passive participle of H7213; raised; Reumah, a Syrian woman: - Reumah."]},{"k":"H7209","v":["רְאִי","re'ı̂y","reh-ee'","From H7200; a mirror (as seen): - looking glass."]},{"k":"H7210","v":["רֳאִי","rŏ'ı̂y","ro-ee'","From H7200; sight, whether abstractly (vision) or concretely (a spectacle): - gazingstock, look to, (that) see (-th)."]},{"k":"H7211","v":["רְאָיָה","re'âyâh","reh-aw-yaw'","From H7200 and H3050; Jah has seen; Reajah, the name of three Israelites: - Reaia, Reaiah."]},{"k":"H7212","v":["רְאִית","re'ı̂yth","reh-eeth'","From H7200; sight: - beholding."]},{"k":"H7213","v":["רָאַם","râ'am","raw-am'","A primitive root; to rise: - be lifted up."]},{"k":"H7214","v":["רֵם    רֵים    רְאֵים    רְאֵם","re'êm    re'êym    rêym    rêm","reh-ame', reh-ame', rame, rame","From H7213; a wild bull (from its conspicuousness): - unicorn."]},{"k":"H7215","v":["רָאמָה","râ'mâh","raw-maw'","From H7213; something high in value, that is, perhaps coral: - coral."]},{"k":"H7216","v":["רָאמֹת    רָאמוֹת","râ'môth    râ'môth","raw-moth', raw-moth'","Plural of H7215; heights; Ramoth, the name of two places in Palestine: - Ramoth."]},{"k":"H7217","v":["רֵאשׁ","rê'sh","raysh","(Chaldee); corresponding to H7218; the head; figuratively the sum: - chief, head, sum."]},{"k":"H7218","v":["רֹאשׁ","rô'sh","roshe","From an unused root apparently meaning to shake; the head (as most easily shaken), whether literally or figuratively (in many applications, of place, time, rank, etc.): - band, beginning, captain, chapiter, chief (-est place, man, things), company, end, X every [man], excellent, first, forefront, ([be-]) head, height, (on) high (-est part, [priest]), X lead, X poor, principal, ruler, sum, top."]},{"k":"H7219","v":["רוֹשׁ    רֹאשׁ","rô'sh    rôsh","roshe, roshe","Apparently the same as H7218; a poisonous plant, probably the poppy (from its conspicuous head); generally poison (even of serpents): - gall, hemlock, posion, venom."]},{"k":"H7220","v":["רֹאשׁ","rô'sh","roshe","Probably the same as H7218; Rosh, the name of an Israelite and of a foreign nation: - Rosh."]},{"k":"H7221","v":["רִאשָׁה","ri'shâh","ree-shaw'","From the same as H7218; a beginning: - beginning."]},{"k":"H7222","v":["רֹאשָׁה","rô'shâh","ro-shaw'","Feminine of H7218; the head: - head [-stone]."]},{"k":"H7223","v":["רִאשֹׁן    רִאשׁוֹן","ri'shôn    ri'shôn","ree-shone', ree-shone'","From H7221; first, in place, time or rank (as adjective or noun): - ancestor, (that were) before (-time), beginning, eldest, first, fore [-father] (-most), former (thing), of old time, past."]},{"k":"H7224","v":["רִאשֹׁנִי","ri'shônı̂y","ree-sho-nee'","From H7223; first: - first."]},{"k":"H7225","v":["רֵאשִׁית","rê'shı̂yth","ray-sheeth'","From the same as H7218; the first, in place, time, order or rank (specifically a firstfruit): - beginning, chief (-est), first (-fruits, part, time), principal thing."]},{"k":"H7226","v":["רַאֲשֹׁת","ra'ăshôth","rah-ash-oth'","From H7218; a pillow (being for the head): - bolster."]},{"k":"H7227","v":["רַב","rab","rab","By contraction from H7231; abundant (in quantity, size, age, number, rank, quality): - (in) abound (-undance, -ant, -antly), captain, elder, enough, exceedingly, full, great (-ly, man, one), increase, long (enough, [time]), (do, have) many (-ifold, things, a time), ([ship-]) master, mighty, more, (too, very) much, multiply (-tude), officer, often [-times], plenteous, populous, prince, process [of time], suffice (-ient)."]},{"k":"H7228","v":["רַב","rab","rab","By contraction from H7232; an archer (or perhaps the same as H7227): - archer."]},{"k":"H7229","v":["רַב","rab","rab","(Chaldee); corresponding to H7227: - captain, chief, great, lord, master, stout."]},{"k":"H7230","v":["רֹב","rôb","robe","From H7231; abundance (in any respect): - abundance (-antly), all, X common [sort], excellent, great (-ly, -ness, number), huge, be increased, long, many, more in number, most, much, multitude, plenty (-ifully), X very [age]."]},{"k":"H7231","v":["רָבַב","râbab","raw-bab'","A primitive root; properly to cast together (compare H7241), that is, increase, especially in number; also (as denominative from H7233) to multiply by the myriad: - increase, be many (-ifold), be more, multiply, ten thousands."]},{"k":"H7232","v":["רָבַב","râbab","raw-bab'","A primitive root (rather identical with H7231 through the idea of projection); to shoot an arrow: - shoot."]},{"k":"H7233","v":["רְבָבָה","rebâbâh","reb-aw-baw","From H7231; abundance (in number), that is, (specifically) a myriad (whether definite or indefinite): - many, million, X multiply, ten thousand."]},{"k":"H7234","v":["רָבַד","râbad","raw-bad'","A primitive root; to spread: - deck."]},{"k":"H7235","v":["רָבָה","râbâh","raw-baw'","A primitive root; to increase (in whatever respect): - [bring in] abundance (X -antly), + archer [by mistake for H7232], be in authority, bring up, X continue, enlarge, excel, exceeding (-ly), be full of, (be, make) great (-er, -ly), X -ness), grow up, heap, increase, be long, (be, give, have, make, use) many (a time), (any, be, give, give the, have) more (in number), (ask, be, be so, gather, over, take, yield) much (greater, more), (make to) multiply, nourish, plenty (-eous), X process [of time], sore, store, thoroughly, very."]},{"k":"H7236","v":["רְבָה","rebâh","reb-aw'","(Chaldee); corresponding to H7235: - make a great man, grow."]},{"k":"H7237","v":["רַבָּה","rabbâh","rab-baw'","Feminine of H7227; great; Rabbah, the name of two places in Palestine, East and West: - Rabbah, Rabbath."]},{"k":"H7238","v":["רְבוּ","rebû","reb-oo'","(Chaldee); from a root corresponding to H7235; increase (of dignity): - greatness, majesty."]},{"k":"H7239","v":["רִבּוֹא    רִבּוֹ","ribbô    ribbô'","rib-bo', rib-bo'","From H7231; a myriad, that is, indefinite large number: - great things, ten ([eight] -een, [for] -ty, + sixscore, + threescore, X twenty, [twen] -ty) thousand."]},{"k":"H7240","v":["רִבּוֹ","ribbô","rib-bo'","(Chaldee); corresponding to H7239: -    X ten thousand times ten thousand."]},{"k":"H7241","v":["רָבִיב","râbı̂yb","raw-beeb'","From H7231; a rain (as an accumulation of drops): - shower."]},{"k":"H7242","v":["רָבִיד","râbı̂yd","raw-beed'","From H7234; a collar (as spread around the neck): - chain."]},{"k":"H7243","v":["רְבִעִי    רְבִיעִי","rebı̂y‛ı̂y    rebi‛ı̂y","reb-ee-ee', reb-ee-ee'","From H7251; fourth; also (fractionally) a fourth: - four-square, fourth (part)."]},{"k":"H7244","v":["רְבִיעַי","rebı̂y‛ay","reb-ee-ah'ee","(Chaldee); corresponding to H7243: - fourth."]},{"k":"H7245","v":["רַבִּית","rabbı̂yth","rab-beeth'","From H7231; multitude; Rabbith, a place in Palestine: - Rabbith."]},{"k":"H7246","v":["רָבַךְ","râbak","raw-bak'","A primitive root; to soak (bread in oil): - baken, (that which is) fried."]},{"k":"H7247","v":["רִבְלָה","riblâh","rib-law'","From an unused root meaning to be fruitful; fertile; Riblah, a place in Syria: - Riblah."]},{"k":"H7248","v":["רַב־מָג","rab-mâg","rab-mawg'","From H7227 and a foreign word for a Magian; chief Magian; Rab-Mag, a Babylonian official: - Rab-mag."]},{"k":"H7249","v":["רַב־סָרִיס","rab-sârı̂ys","rab-saw-reece'","From H7227 and a foreign word for a eunuch; chief chamberlain; Rab-Saris, a Babylonian official: - Rab-saris."]},{"k":"H7250","v":["רָבַע","râba‛","raw-bah'","A primitive root; to squat or lie out flat, that is, (specifically) in copulation: - let gender, lie down."]},{"k":"H7251","v":["רָבַע","râba‛","raw-bah'","A primitive root (rather identical with H7250 through the idea of sprawling at all fours (or possibly the reverse is the order of derivation); compare H702); properly to be four (sided); used only as denominative of H7253; to be quadrate: - (four-) square (-d)."]},{"k":"H7252","v":["רֶבַע","reba‛","reh'-bah","From H7250; prostration (for sleep): - lying down."]},{"k":"H7253","v":["רֶבַע","reba‛","reh'-bah","From H7251; a fourth (part or side): - fourth part, side, square."]},{"k":"H7254","v":["רֶבַע","reba‛","reh'-bah","The same as H7253; Reba, a Midianite: - Reba."]},{"k":"H7255","v":["רֹבַע","rôba‛","ro'-bah","From H7251; a quarter: - fourth part."]},{"k":"H7256","v":["רִבֵּעַ","ribbêa‛","rib-bay'-ah","From H7251; a descendant of the fourth generation, that is, great great grandchild: - fourth."]},{"k":"H7257","v":["רָבַץ","râbats","raw-bats'","A primitive root; to crouch (on all four legs folded, like a recumbent animal); by implication to recline, repose, brood, lurk, imbed: - crouch (down), fall down, make a fold, lay (cause to, make to) lie (down), make to rest, sit."]},{"k":"H7258","v":["רֵבֶץ","rêbets","reh'-bets","From H7257; a couch or place of repose: - where each lay, lie down in, resting place."]},{"k":"H7259","v":["רִבְקָה","ribqâh","rib-kaw'","From an unused root probably meaning to clog by tying up the fetlock; fettering (by beauty); Ribkah, the wife of Isaac: - Rebekah."]},{"k":"H7260","v":["רַבְרַב","rabrab","rab-rab'","(Chaldee); from H7229; huge (in size); domineering (in character): - (very) great (things)."]},{"k":"H7261","v":["רַבְרְבָן","rabrebân","rab-reb-awn'","(Chaldee); from H7260; a magnate: - lord, prince."]},{"k":"H7262","v":["רַבְשָׁקֵה","rabshâqêh","rab-shaw-kay'","From H7227 and H8284; chief butler; Rabshakeh, a Babylonian official: - Rabshakeh."]},{"k":"H7263","v":["רֶגֶב","regeb","reh'-gheb","From an unused root meaning to pile together; a lump of clay: - clod."]},{"k":"H7264","v":["רָגַז","râgaz","raw-gaz'","A primitive root; to quiver (with any violent emotion, especially anger or fear): - be afraid, stand in awe, disquiet, fall out, fret, move, provoke, quake, rage, shake, tremble, trouble, be wroth."]},{"k":"H7265","v":["רְגַז","regaz","reg-az'","(Chaldee); corresponding to H7264: - provoke unto wrath."]},{"k":"H7266","v":["רְגַז","regaz","reg-az'","(Chaldee); from H7265; violent anger: - rage."]},{"k":"H7267","v":["רֹגֶז","rôgez","ro'-ghez","From H7264; commotion, restlessness (of a horse), crash (of thunder), disquiet, anger: - fear, noise, rage, trouble, (-ing), wrath."]},{"k":"H7268","v":["רַגָּז","raggâz","rag-gawz'","Intensive from H7264; timid: - trembling."]},{"k":"H7269","v":["רָגְזָה","rogzâh","rog-zaw'","Feminine of H7267; trepidation: - trembling."]},{"k":"H7270","v":["רָגַל","râgal","raw-gal'","A primitive root; to walk along; but only in specific applications, to reconnoitre, to be a tale bearer (that is, slander); also (as denominative from H7272) to lead about: - backbite, search, slander, (e-) spy (out), teach to go, view."]},{"k":"H7271","v":["רְגַל","regal","reg-al'","(Chaldee); corresponding to H7272: - foot."]},{"k":"H7272","v":["רֶגֶל","regel","reh'-gel","From H7270; a foot (as used in walking); by implication a step; by euphemism the pudenda: -  X be able to endure, X according as, X after, X coming, X follow, ([broken-]) foot ([-ed, -stool]), X great toe, X haunt, X journey, leg, + piss, + possession, time."]},{"k":"H7273","v":["רַגְלִי","raglı̂y","rag-lee'","From H7272; a foot man (soldier): - (on) foot (-man)."]},{"k":"H7274","v":["רֹגְלִים","rôgelı̂ym","ro-gel-eem'","Plural of active participle of H7270; fullers (as tramping the cloth in washing); Rogelim, a place East of the Jordan: - Rogelim."]},{"k":"H7275","v":["רָגַם","râgam","raw-gam'","A primitive root (compare H7263, H7321 and H7551); to cast together (stones), that is, to lapidate: -  X certainly, stone."]},{"k":"H7276","v":["רֶגֶם","regem","reh'-gem","From H7275; stone heap; Regem, an Israelite: - Regem."]},{"k":"H7277","v":["רִגְמָה","rigmâh","rig-maw'","Feminine of the same as H7276; a pile (of stones), that is, (figuratively) a throng: - council."]},{"k":"H7278","v":["רֶגֶם מֶלֶךְ","regem melek","reh'-gem meh'-lek","From H7276 and H4428; king's heap; Regem Melek, an Israelite: - Regem-melech."]},{"k":"H7279","v":["רָגַן","râgan","raw-gan'","A primitive root; to grumble, that is, rebel: - murmur."]},{"k":"H7280","v":["רָגַע","râga‛","raw-gah'","A primitive root; properly to toss violently and suddenly (the sea with waves, the skin with boils); figuratively (in a favorable manner) to settle, that is, quiet; specifically to wink (from the motion of the eye lids): - break, divide, find ease, be a moment, (cause, give, make to) rest, make suddenly."]},{"k":"H7281","v":["רֶגַע","rega‛","reh'-gah","From H7280; a wink (of the eyes), that is, a very short space of time: - instant, moment, space, suddenly."]},{"k":"H7282","v":["רָגֵעַ","râgêa‛","raw-gay'-ah","From H7280; restful, that is, peaceable: - that are quiet."]},{"k":"H7283","v":["רָגַשׁ","râgash","raw-gash'","A primitive root; to be tumultuous: - rage."]},{"k":"H7284","v":["רְגַשׁ","regash","reg-ash'","(Chaldee); corresponding to H7283; to gather tumultuously: - assemble (together)."]},{"k":"H7285","v":["רִגְשָׁה    רֶגֶשׁ","regesh    rigshâh","reh'-ghesh, rig-shaw'","From H7283; a tumultuous crowd: - company, insurrection."]},{"k":"H7286","v":["רָדַד","râdad","raw-dad'","A primitive root; to tread in pieces, that is, (figuratively) to conquer, or (specifically) to overlay: - spend, spread, subdue."]},{"k":"H7287","v":["רָדָה","râdâh","raw-daw'","A primitive root; to tread down, that is, subjugate; specifically to crumble off: - (come to, make to) have dominion, prevail against, reign, (bear, make to) rule, (-r, over), take."]},{"k":"H7288","v":["רַדַּי","radday","rad-dah'ee","Intensive from H7287; domineering; Raddai, an Israelite: - Raddai."]},{"k":"H7289","v":["רָדִיד","râdı̂yd","raw-deed'","From H7286 in the sense of spreading; a veil (as expanded): - vail, veil."]},{"k":"H7290","v":["רָדַם","râdam","raw-dam'","A primitive root; to stun, that is, stupefy (with sleep or death): - (be fast a-, be in a deep, cast into a dead, that) sleep (-er, -eth)."]},{"k":"H7291","v":["רָדַף","râdaph","raw-daf'","A primitive root; to run after (usually with hostile intent; figuratively (of time) gone by): - chase, put to flight, follow (after, on), hunt, (be under) persecute (-ion, -or), pursue (-r)."]},{"k":"H7292","v":["רָהַב","râhab","raw-hab'","A primitive root; to urge severely, that is, (figuratively) importune, embolden, capture, act insolently: - overcome, behave self proudly, make sure, strengthen."]},{"k":"H7293","v":["רַהַב","rahab","rah'-hab","From H7292, bluster (blusterer): - proud, strength."]},{"k":"H7294","v":["רַהַב","rahab","rah'-hab","The same as H7293; Rahab (that is, boaster), an epithet of Egypt: - Rahab."]},{"k":"H7295","v":["רָהָב","râhâb","raw-hawb'","From H7292; insolent: - proud."]},{"k":"H7296","v":["רֹהָב","rôhâb","ro'-hab","From H7292; pride: - strength."]},{"k":"H7297","v":["רָהָה","râhâh","raw-haw'","A primitive root; to fear: - be afraid."]},{"k":"H7298","v":["רַהַט","rahaṭ","rah'-hat","From an unused root apparently meaning to hollow out; a channel or watering box; by resemblance a ringlet of hair (as forming parallel lines): - gallery, gutter, trough."]},{"k":"H7299","v":["רֵו","rêv","rave","(Chaldee); from a root corresponding to H7200; aspect: - form."]},{"k":"H7300","v":["רוּד","rûd","rood","A primitive root; to tramp about, that is, ramble (free or disconsolate): - have the dominion, be lord, mourn, rule."]},{"k":"H7301","v":["רָוָה","râvâh","raw-vaw'","A primitive root; to slake the thirst (occasionally of other appetites): - bathe, make drunk, (take the) fill, satiate, (abundantly) satisfy, soak, water (abundantly)."]},{"k":"H7302","v":["רָוֶה","râveh","raw-veh'","From H7301; sated (with drink): - drunkenness, watered."]},{"k":"H7303","v":["רוֹהֲגָה","rôhăgâh","ro-hag-aw'","From an unused root probably meaning to cry out; outcry; Rohagah, an Israelite: - Rohgah."]},{"k":"H7304","v":["רָוַח","râvach","raw-vakh'","A primitive root (rather identical with H7306); properly to breathe freely, that is, revive; by implication to have ample room: - be refreshed, large."]},{"k":"H7305","v":["רֶוַח","revach","reh'-vakh","From H7304; room, literally (an interval) or figuratively (deliverance): - enlargement, space."]},{"k":"H7306","v":["רוּחַ","rûach","roo'-akh","A primitive root; properly to blow, that is, breathe; only (literally) to smell or (by implication perceive (figuratively to anticipate, enjoy): - accept, smell, X touch, make of quick understanding."]},{"k":"H7307","v":["רוּחַ","rûach","roo'-akh","From H7306; wind; by resemblance breath, that is, a sensible (or even violent) exhalation; figuratively life, anger, unsubstantiality; by extension a region of the sky; by resemblance spirit, but only of a rational being (including its expression and functions): - air, anger, blast, breath, X cool, courage, mind, X quarter, X side, spirit ([-ual]), tempest, X vain, ([whirl-]) wind (-y)."]},{"k":"H7308","v":["רוּחַ","rûach","roo'-akh","(Chaldee); corresponding to H7307: - mind, spirit, wind."]},{"k":"H7309","v":["רְוָחָה","revâchâh","rev-aw-khaw'","Feminine of H7305; relief: - breathing, respite."]},{"k":"H7310","v":["רְוָיָה","revâyâh","rev-aw-yaw'","From H7301; satisfaction: - runneth over, wealthy."]},{"k":"H7311","v":["רוּם","rûm","room","A primitive root; to be high actively to rise or raise (in various applications, literally or figuratively): - bring up, exalt (self), extol, give, go up, haughty, heave (up), (be, lift up on, make on, set up on, too) high (-er, one), hold up, levy, lift (-er) up, (be) lofty, (X a-) loud, mount up, offer (up), + presumptuously, (be) promote (-ion), proud, set up, tall (-er), take (away, off, up), breed worms."]},{"k":"H7312","v":["רֻם    רוּם","rûm    rûm","room, room","From H7311; (literally) elevation or (figuratively) elation: - haughtiness, height, X high."]},{"k":"H7313","v":["רוּם","rûm","room","(Chaldee); corresponding to H7311; (figuratively only): - extol, lift up (self), set up."]},{"k":"H7314","v":["רוּם","rûm","room","(Chaldee); from H7313; (literally) altitude: - height."]},{"k":"H7315","v":["רוֹם","rôm","rome","From H7311; elevation, that is, (adverbially) aloft: - on high."]},{"k":"H7316","v":["רוּמָה","rûmâh","roo-maw'","From H7311; height; Rumah, a place in Palestine: - Rumah."]},{"k":"H7317","v":["רוֹמָה","rômâh","ro-maw'","Feminine of H7315; elation, that is, (adverbially) proudly: - haughtily."]},{"k":"H7318","v":["רוֹמָם","rômâm","ro-mawm'","From H7426; exaltation, that is, (figuratively and specifically) praise: - be extolled."]},{"k":"H7319","v":["רוֹמְמָה","rômemâh","ro-mem-aw'","Feminine active participle of H7426; exaltation, that is, praise: - high."]},{"k":"H7320","v":["רֹמַמְתִּי עֶזֶר    רוֹמַמְתִּי עֶזֶר","rômamtı̂y ‛ezer    rômamtı̂y ‛ezer","ro-mam'-tee eh'-zer, ro-mam'-tee eh'-zer","From H7311 and H5828; I have raised up a help; Romamti-Ezer, an Israelite: - Romamti-ezer."]},{"k":"H7321","v":["רוּעַ","rûa‛","roo-ah'","A primitive root; to mar (especially by breaking); figuratively to split the ears (with sound), that is, shout (for alarm or joy): - blow an alarm, cry (alarm, aloud, out), destroy, make a joyful noise, smart, shout (for joy), sound an alarm, triumph."]},{"k":"H7322","v":["רוּף","rûph","roof","A primitive root; properly to triturate (in a mortar), that is, (figuratively) to agitate (by concussion): - tremble."]},{"k":"H7323","v":["רוּץ","rûts","roots","A primitive root; to run (for whatever reason, especially to rush): - break down, divide speedily, footman, guard, bring hastily, (make) run (away, through), post, stretch out."]},{"k":"H7324","v":["רוּק","rûq","rook","A primitive root; to pour out (literally or figuratively), that is, empty: -  X arm, cast out, draw (out), (make) empty, pour forth (out)."]},{"k":"H7325","v":["רוּר","rûr","roor","A primitive root; to slaver (with spittle), that is, (by analogy) to emit a fluid (ulcerous or natural): - run."]},{"k":"H7326","v":["רוּשׁ","rûsh","roosh","A primitive root; to be destitute: - lack, needy, (make self) poor (man)."]},{"k":"H7327","v":["רוּת","rûth","rooth","Probably for H7468; friend; Ruth, a Moabitess: - Ruth."]},{"k":"H7328","v":["רָז","râz","rawz","(Chaldee); from an unused root probably meaning to attenuate, that is, (figuratively) hide; a mystery: - secret."]},{"k":"H7329","v":["רָזָה","râzâh","raw-zaw'","A primitive root; to emaciate, that is, make (become) thin (literally or figuratively): - famish, wax lean."]},{"k":"H7330","v":["רָזֶה","râzeh","raw-zeh","From H7329; thin: - lean."]},{"k":"H7331","v":["רְזוֹן","rezôn","rez-one'","From H7336; prince; Rezon, a Syrian: - Rezon."]},{"k":"H7332","v":["רָזוֹן","râzôn","raw-zone'","From H7329; thinness: - leanness, X scant."]},{"k":"H7333","v":["רָזוֹן","râzôn","raw-zone'","From H7336; a dignitary: - prince."]},{"k":"H7334","v":["רָזִי","râzı̂y","raw-zee'","From H7329; thinness: - leanness."]},{"k":"H7335","v":["רָזַם","râzam","raw-zam'","A primitive root; to twinkle the eye (in mockery): - wink."]},{"k":"H7336","v":["רָזַן","râzan","raw-zan'","A primitive root; probably to be heavy, that is, (figuratively) honorable: - prince, ruler."]},{"k":"H7337","v":["רָחַב","râchab","raw-khab'","A primitive root; to broaden (intransitively or transitively, literally or figuratively): - be an en- (make) large (-ing), make room, make (open) wide."]},{"k":"H7338","v":["רַחַב","rachab","rakh'-ab","From H7337; a width: - breadth, broad place."]},{"k":"H7339","v":["רְחוֹב    רְחֹב","rechôb    rechôb","rekh-obe', rekh-obe'","From H7337; a width, that is, (concretely) avenue or area: - broad place (way), street. See also H1050."]},{"k":"H7340","v":["רְחוֹב    רְחֹב","rechôb    rechôb","rekh-obe', rekh-obe'","The same as H7339; Rechob, the name of a place in Syria, also of a Syrian and an Israelite: - Rehob."]},{"k":"H7341","v":["רֹחַב","rôchab","ro'-khab","From H7337; width (literally or figuratively): - breadth, broad, largeness, thickness, wideness."]},{"k":"H7342","v":["רָחָב","râchâb","raw-khawb'","From H7337; roomy, in any (or every) direction, literally or figuratively: - broad, large, at liberty, proud, wide."]},{"k":"H7343","v":["רָחָב","râchâb","raw-khawb'","The same as H7342; proud; Rachab, a Canaanitess: - Rahab."]},{"k":"H7344","v":["רְחֹבֹת    רְחֹבוֹת","rechôbôth    rechôbôth","rekh-o-both', rekh-o-both'","Plural of H7339; streets; Rechoboth, a place in Assyria and one in Palestine: - Rehoboth."]},{"k":"H7345","v":["רְחַבְיָהוּ    רְחַבְיָה","rechabyâh    rechabyâhû","rekh-ab-yaw', rekh-ab-yaw'-hoo","From H7337 and H3050; Jah has enlarged; Rechabjah, an Israelite: - Rehabiah."]},{"k":"H7346","v":["רְחַבְעָם","rechab‛âm","rekh-ab-awm'","From H7337 and H5971; a people has enlarged; Rechabam, an Israelite king: - Rehoboam."]},{"k":"H7347","v":["רֵחֶה","rêcheh","ray-kheh'","From an unused root meaning to pulverize; a mill stone: - mill (stone)."]},{"k":"H7348","v":["רְחוּם","rechûm","rekh-oom'","A form of H7349; Rechum, the name of a Persian and of three Israelites: - Rehum."]},{"k":"H7349","v":["רַחוּם","rachûm","rakh-oom'","From H7355; compassionate: - full of compassion, merciful."]},{"k":"H7350","v":["רָחֹק    רָחוֹק","râchôq    râchôq","raw-khoke', raw-khoke'","From H7368; remote, literally of figuratively, of place or time; specifically precious; often used adverbially (with preposition): - (a-) far (abroad, off), long ago, of old, space, great while to come."]},{"k":"H7351","v":["רְחִיט","rechı̂yṭ","rekh-eet'","From the same as H7298; a panel (as resembling a trough): - rafter."]},{"k":"H7352","v":["רַחִיק","rachı̂yq","rakh-eek'","(Chaldee); corresponding to H7350: - far."]},{"k":"H7353","v":["רָחֵל","râchêl","raw-khale'","From an unused root meaning to journey; a ewe (the females being the predominant element of a flock), (as a good traveller): - ewe, sheep."]},{"k":"H7354","v":["רָחֵל","râchêl","raw-khale'","The same as H7353; Rachel, a wife of Jacob: - Rachel."]},{"k":"H7355","v":["רָחַם","râcham","raw-kham'","A primitive root; to fondle; by implication to love, especially to compassionate: - have compassion (on, upon), love, (find, have, obtain, shew) mercy (-iful, on, upon), (have) pity, Ruhamah, X surely."]},{"k":"H7356","v":["רַחַם","racham","rakh'-am","From H7355; compassion (in the plural); by extension the womb (as cherishing the foetus); by implication a maiden: - bowels, compassion, damsel, tender love, (great, tender) mercy, pity, womb."]},{"k":"H7357","v":["רַחַם","racham","rakh'-am","The same as H7356; pity; Racham, an Israelite: - Raham."]},{"k":"H7358","v":["רֶחֶם","rechem","rekh'-em","From H7355; the womb (compare H7356): - matrix, womb."]},{"k":"H7359","v":["רְחֵם","rechêm","rekh-ame'","(Chaldee); corresponding to H7356; (plural) pity: - mercy."]},{"k":"H7360","v":["רָחָמָה    רָחָם","râchâm    râchâmâh","raw-khawm', raw-khaw-maw'","From H7355; a kind of vulture (supposed to be tender towards its young): - gier-eagle."]},{"k":"H7361","v":["רַחֲמָה","rachămâh","rakh-am-aw'","Feminine of H7356; a maiden: - damsel."]},{"k":"H7362","v":["רַחְמָנִי","rachmânı̂y","rakh-maw-nee'","From H7355; compassionate: - pitiful."]},{"k":"H7363","v":["רָחַף","râchaph","raw-khaf'","A primitive root; to brood; by implication to be relaxed: - flutter, move, shake."]},{"k":"H7364","v":["רָחַץ","râchats","raw-khats'","A primitive root; to lave (the whole or a part of the thing): - bathe (self), wash (self)."]},{"k":"H7365","v":["רְחַץ","rechats","rekh-ats'","(Chaldee); corresponding to H7364 (probably through the accessory idea of ministering as a servant at the bath); to attend upon: - trust."]},{"k":"H7366","v":["רַחַץ","rachats","rakh'-ats","From H7364; a bath: - wash [-pot]."]},{"k":"H7367","v":["רַחְצָה","rachtsâh","rakh-tsaw'","Feminine of H7366; a bathing place: - washing."]},{"k":"H7368","v":["רָחַק","râchaq","raw-khak'","A primitive root; to widen (in any direction), that is, (intransitively) recede or (transitively) remove (literally or figuratively, of place or relation): - (a, be, cast, drive, get, go, keep [self], put, remove, be too, [wander], withdraw) far (away, off), loose, X refrain, very, (be) a good way (off)."]},{"k":"H7369","v":["רָחֵק","râchêq","raw-khake'","From H7368; remote: - that are far."]},{"k":"H7370","v":["רָחַשׁ","râchash","raw-khash'","A primitive root; to gush: - indite."]},{"k":"H7371","v":["רַחַת","rachath","rakh'-ath","From H7306; a winnowing fork (as blowing the chaff away): - shovel."]},{"k":"H7372","v":["רָטַב","râṭab","raw-tab'","A primitive root; to be moist: - be wet."]},{"k":"H7373","v":["רָטֹב","râṭôb","raw-tobe'","From H7372; moist (with sap): - green."]},{"k":"H7374","v":["רֶטֶט","reṭeṭ","reh'-tet","From an unused root meaning to tremble; terror: - fear."]},{"k":"H7375","v":["רֻטֲפַשׁ","rûṭăphash","roo-taf-ash'","A root compounded from H7373 and H2954; to be rejuvenated: - be fresh."]},{"k":"H7376","v":["רָטַשׁ","râṭash","raw-tash'","A primitive root; to dash down: - dash (in pieces)."]},{"k":"H7377","v":["רִי","rı̂y","ree","From H7301; irrigation, that is, a shower: - watering."]},{"k":"H7378","v":["רוּב    רִיב","rı̂yb    rûb","reeb, roob","A primitive root; properly to toss, that is, grapple; mostly figuratively to wrangle, that is, hold a controversy; (by implication) to defend: - adversary, chide, complain, contend, debate, X ever, X lay wait, plead, rebuke, strive, X thoroughly."]},{"k":"H7379","v":["רִב    רִיב","rı̂yb    rib","reeb, reeb","From H7378; a contest (personal or legal): -    + adversary, cause, chiding, contend (-tion), controversy, multitude [from the margin], pleading, strife, strive (-ing), suit."]},{"k":"H7380","v":["רִיבַי","rı̂ybay","ree-bah'ee","From H7378; contentious; Ribai, an Israelite: - Ribai."]},{"k":"H7381","v":["רֵיחַ","rêyach","ray'-akh","From H7306; odor (as if blown): - savour, scent, smell."]},{"k":"H7382","v":["רֵיחַ","rêyach","ray'-akh","(Chaldee); corresponding to H7381: - smell."]},{"k":"H7383","v":["רִפָה    רִיפָה","rı̂yphâh    riphâh","ree-faw', ree-faw'","From H7322; (only plural), grits (as pounded): - ground corn, wheat."]},{"k":"H7384","v":["רִיפַת","rı̂yphath","ree-fath'","The second form is probably by orthographical error; of foreign origin; Riphath, a grandson of Jepheth and his descendants: - Riphath."]},{"k":"H7385","v":["רִיק","rı̂yq","reek","From H7324; emptiness; figuratively a worthless thing; adverbially in vain: - empty, to no purpose, (in) vain (thing), vanity."]},{"k":"H7386","v":["רֵק    רֵיק","rêyq    rêq","rake, rake","From H7324; empty; figuratively worthless: - emptied (-ty), vain (fellow, man)."]},{"k":"H7387","v":["רֵיקָם","rêyqâm","ray-kawm'","From H7386; emptily; figuratively (objectively) ineffectually, (subjectively) undeservedly: - without cause, empty, in vain, void."]},{"k":"H7388","v":["רִיר","rı̂yr","reer","From H7325; saliva; by resemblance broth: - spittle, white [of an egg]."]},{"k":"H7389","v":["רִישׁ    רֵאשׁ    רֵישׁ","rêysh    rê'sh    rı̂ysh","raysh, raysh, reesh","From H7326; poverty: - poverty."]},{"k":"H7390","v":["רַךְ","rak","rak","From H7401; tender (literally or figuratively); by implication weak: - faint [-hearted], soft, tender ([-hearted], one), weak."]},{"k":"H7391","v":["רֹךְ","rôk","roke","From H7401; softness (figuratively): - tenderness."]},{"k":"H7392","v":["רָכַב","râkab","raw-kab'","A primitive root; to ride (on an animal or in a vehicle); causatively to place upon (for riding or generally), to despatch: - bring (on [horse-] back), carry, get [oneself] up, on [horse-] back, put, (cause to, make to) ride (in a chariot, on, -r), set."]},{"k":"H7393","v":["רֶכֶב","rekeb","reh'-keb","From H7392; a vehicle; by implication a team; by extension cavalry; by analogy a rider, that is, the upper millstone: - chariot, (upper) millstone, multitude [from the margin], wagon."]},{"k":"H7394","v":["רֵכָב","rêkâb","ray-kawb'","From H7392; rider; Rekab, the name of two Arabs and of two Israelites: - Rechab."]},{"k":"H7395","v":["רַכָּב","rakkâb","rak-kawb'","From H7392; a charioteer: - chariot man, driver of a chariot, horseman."]},{"k":"H7396","v":["רִכְבָּה","rikbâh","rik-baw'","Feminine of H7393; a chariot (collectively): - chariots."]},{"k":"H7397","v":["רֵכָה","rêkâh","ray-kaw'","Probably feminine from H7401; softness; Rekah, a place in Palestine: - Rechah."]},{"k":"H7398","v":["רְכוּב","rekûb","rek-oob'","From passive participle of H7392; a vehicle (as ridden on): - chariot."]},{"k":"H7399","v":["רְכֻשׁ    רְכוּשׁ","rekûsh    rekûsh","rek-oosh', rek-oosh'","From passive participle of H7408; property (as gathered): - good, riches, substance."]},{"k":"H7400","v":["רָכִיל","râkı̂yl","raw-keel'","From H7402; a scandal monger (as travelling about): - slander, carry tales, talebearer."]},{"k":"H7401","v":["רָכַךְ","râkak","raw-kak'","A primitive root; to soften (intransitively or transitively), used figuratively: - (be) faint ([-hearted]), mollify, (be, make) soft (-er), be tender."]},{"k":"H7402","v":["רָכַל","râkal","raw-kal'","A primitive root; to travel for trading: - (spice) merchant."]},{"k":"H7403","v":["רָכָל","râkâl","raw-kawl'","From H7402; merchant; Rakal, a place in Palestine: - Rachal."]},{"k":"H7404","v":["רְכֻלָּה","rekûllâh","rek-ool-law'","Feminine passive participle of H7402; trade (as peddled): - merchandise, traffic."]},{"k":"H7405","v":["רָכַס","râkas","raw-kas'","A primitive root; to tie: - bind."]},{"k":"H7406","v":["רֶכֶס","rekes","reh'-kes","From H7405; a mountain ridge (as of tied summits): - rough place."]},{"k":"H7407","v":["רֹכֶס","rôkes","ro'-kes","From H7405; a snare (as of tied meshes): - pride."]},{"k":"H7408","v":["רָכַשׁ","râkash","raw-kash'","A primitive root; to lay up, that is, collect: - gather, get."]},{"k":"H7409","v":["רֶכֶשׁ","rekesh","reh'-kesh","From H7408; a relay of animals on a post route (as stored up for that purpose); by implication a courser: - dromedary, mule, swift beast."]},{"k":"H7410","v":["רָם","râm","rawm","Active participle of H7311; high; Ram, the name of an Arabian and of an Israelite: - Ram. See also H1027."]},{"k":"H7411","v":["רָמָה","râmâh","raw-maw'","A primitive root; to hurl; specifically to shoot; figuratively to delude or betray (as if causing to fall): - beguile, betray, [bow-] man, carry, deceive, throw."]},{"k":"H7412","v":["רְמָה","remâh","rem-aw'","(Chaldee); corresponding to H7411; to throw, set, (figuratively) assess: - cast (down), impose."]},{"k":"H7413","v":["רָמָה","râmâh","raw-maw'","Feminine active participle of H7311; a height (as a seat of idolatry): - high place."]},{"k":"H7414","v":["רָמָה","râmâh","raw-maw'","The same as H7413; Ramah, the name of four places in Palestine: - Ramah."]},{"k":"H7415","v":["רִמָּה","rimmâh","rim-maw'","From H7426 in the sense of breeding (compare H7311); a maggot (as rapidly bred), literally or figuratively: - worm."]},{"k":"H7416","v":["רִמֹּן    רִמּוֹן","rimmôn    rimmôn","rim-mone', rim-mone'","From H7426; a pomegranate, the tree (from its upright growth) or the fruit (also an artificial ornament): - pomegranate."]},{"k":"H7417","v":["רִמּוֹנוֹ    רִמֹּן    רִמּוֹן","rimmôn    rimmôn    rimmônô","1,2 rim-mone', rim-mo-no'","The same as H7416; Rimmon, the name of a Syrian deity, also of five places in Palestine. The additon of “-methoar” (the fourth form) is a passive participle of H8388 with the article; the (one) marked off, that is, which pertains; mistaken for part of the name: - Remmon, Rimmon. The addition “-methoar” (Jos_19:13) is הַמְּתֹאָר hammethô'âr, ham-meth-o-awr; passive participle of H8388 with the article the (one) marked off, That is,which pertains; mistaken for part of the name."]},{"k":"H7418","v":["רָמַת נֶגֶב    רָמוֹת־נֶגֶב","râmôth-negeb    râmath negeb","raw-moth-neh'-gheb, raw'-math neh'-gheb","From the plural or constructive of H7413 and H5045; heights (or height) of the South; Ramoth-Negeb or Ramoth-Negeb, a place in Palestine: - south Ramoth, Ramath of the south."]},{"k":"H7419","v":["רָמוּת","râmûth","raw-mooth'","From H7311; a heap (of carcases): - height."]},{"k":"H7420","v":["רֹמַח","rômach","ro'-makh","From an unused root meaning to hurl; a lance (as thrown); especially the iron point: - buckler, javelin, lancet, spear."]},{"k":"H7421","v":["רַמִּי","rammı̂y","ram-mee'","For H761; a Ramite, that is, Aramaean: - Syrian."]},{"k":"H7422","v":["רַמְיָה","ramyâh","ram-yaw'","From H7311 and H3050; Jah has raised; Ramjah, an Israelite: - Ramiah."]},{"k":"H7423","v":["רְמִיָּה","remı̂yâh","rem-ee-yaw'","From H7411; remissness, treachery: - deceit (-ful, -fully), false, guile, idle, slack, slothful."]},{"k":"H7424","v":["רַמָּךְ","rammâk","ram-mawk'","Of foreign origin; a brood mare: - dromedary."]},{"k":"H7425","v":["רְמַלְיָהוּ","remalyâhû","rem-al-yaw'-hoo","From an unused root and H3050 (perhaps meaning to deck); Jah has bedecked; Remaljah, an Israelite: - Remaliah."]},{"k":"H7426","v":["רָמַם","râmam","raw-mam'","A primitive root; to rise (literally or figuratively): - exalt, get [oneself] up, lift up (self), mount up."]},{"k":"H7427","v":["רֹמֵמֻת","rômêmûth","ro-may-mooth'","From the active participle of H7426; exaltation: - lifting up of self."]},{"k":"H7428","v":["רִמֹּן פֶּרֶץ","rimmôn perets","rim-mone' peh'-rets","From H7416 and H6556; pomegranate of the breach; Rimmon Perets, a place in the Desert: - Rimmon-parez."]},{"k":"H7429","v":["רָמַס","râmas","raw-mas'","A primitive root; to tread upon (as a potter, in walking or abusively): - oppressor, stamp upon, trample (under feet), tread (down, upon)."]},{"k":"H7430","v":["רָמַשׂ","râmaś","raw-mas'","A primitive root; properly to glide swiftly, that is, to crawl or move with short steps; by analogy to swarm: - creep, move."]},{"k":"H7431","v":["רֶמֶשׂ","remeś","reh'-mes","From H7430; a reptile or any other rapidly moving animal: - that creepeth, creeping (moving) thing."]},{"k":"H7432","v":["רֶמֶת","remeth","reh'-meth","From H7411; height; Remeth, a place in Palestine: - Remeth."]},{"k":"H7433","v":["רָמוֹת גִּלְעָד    רָמֹת גִּלְעָד","râmôth gil‛âd    râmôth gil‛âd","raw-moth' gil-awd'","From the plural of H7413 and H1568; heights of Gilad; Ramoth Gilad, a place East of the Jordan: - Ramoth-gilead, Ramoth in Gilead. See also H7216."]},{"k":"H7434","v":["רָמַת הַמִּצְפֶּה","râmath hammitspeh","raw-math' ham-mits-peh'","From H7413 and H4707 with the article interposed; height of the watch tower; Ramath ham Mitspeh, a place in Palestine: - Ramath-mizpeh."]},{"k":"H7435","v":["רָמָתִי","râmâthı̂y","raw-maw-thee'","Patronymic of H7414; a Ramathite or inhabitant of Ramah: - Ramathite."]},{"k":"H7436","v":["רָמָתַיִם צוֹפִים","râmâthayim tsôphı̂ym","raw-maw-thah'-yim tso-feem'","From the dual of H7413 and the plural of the active participle of H6822; double height of watchers; Ramathajim Tsophim, a place in Palestine: - Ramathaim-zophim."]},{"k":"H7437","v":["רָמַת לֶחִי","râmath lechı̂y","raw'-math lekh'-ee","From H7413 and H3895; height of a jaw bone; Ramath Lechi, a place in Palestine: - Ramath-lehi."]},{"k":"H7438","v":["רֹן","rôn","rone","From H7442; a shout (of deliverance): - song."]},{"k":"H7439","v":["רָנָה","rânâh","raw-naw'","A primitive root; to whiz: - rattle."]},{"k":"H7440","v":["רִנָּה","rinnâh","rin-naw'","From H7442; properly a creaking (or shrill sound), that is, shout (of joy or grief): - cry, gladness, joy, proclamation, rejoicing, shouting, sing (-ing), triumph."]},{"k":"H7441","v":["רִנָּה","rinnâh","rin-naw'","The same as H7440; Rinnah, an Israelite: - Rinnah."]},{"k":"H7442","v":["רָנַן","rânan","raw-nan'","A primitive root; properly to creak (or emit a stridulous sound), that is, to shout (usually for joy): - aloud for joy, cry out, be joyful, (greatly, make to) rejoice, (cause to) shout (for joy), (cause to) sing (aloud, for joy, out), triumph."]},{"k":"H7443","v":["רֶנֶן","renen","reh'-nen","From H7442; an ostrich (from its wail): -    X goodly."]},{"k":"H7444","v":["רַנֵּן","rannên","ran-nane'","Intensive from H7442; shouting (for joy): - singing."]},{"k":"H7445","v":["רְנָנָה","renânâh","ren-aw-naw'","From H7442; a shout (for joy): - joyful (voice), singing, triumphing."]},{"k":"H7446","v":["רִסָּה","rissâh","ris-saw'","From H7450; a ruin (as dripping to pieces); Rissah, a place in the Desert: - Rissah."]},{"k":"H7447","v":["רָסִיס","râsı̂ys","raw-sees'","From H7450; properly dripping to pieces, that is, a ruin; also a dew drop: - breach, drop."]},{"k":"H7448","v":["רֶסֶן","resen","reh'-sen","From an unused root meaning to curb; a halter (as restraining); by implication the jaw: - bridle."]},{"k":"H7449","v":["רֶסֶן","resen","reh'-sen","The same as H7448; Resen, a place in Assyria: - Resen."]},{"k":"H7450","v":["רָסַס","râsas","raw-sas'","A primitive root; to comminute; used only as denominative from H7447, to moisten (with drops): - temper."]},{"k":"H7451","v":["רָעָה    רַע","ra‛    râ‛âh","rah, raw-aw'","From H7489; bad or (as noun) evil (naturally or morally). This includes the second (feminine) form; as adjective or noun: - adversity, affliction, bad, calamity, + displease (-ure), distress, evil ([-favouredness], man, thing), + exceedingly, X great, grief (-vous), harm, heavy, hurt (-ful), ill (favoured), + mark, mischief, (-vous), misery, naught (-ty), noisome, + not please, sad (-ly), sore, sorrow, trouble, vex, wicked (-ly, -ness, one), worse (-st) wretchedness, wrong. [Including feminine ra’ah; as adjective or noun.]"]},{"k":"H7452","v":["רֵעַ","rêa‛","rah'-ah","From H7321; a crash (of thunder), noise (of war), shout (of joy): -    X aloud, noise, shouted."]},{"k":"H7453","v":["רֵיעַ    רֵעַ","rêa‛    rêya‛","ray'-ah, ray'-ah","From H7462; an associate (more or less close): - brother, companion, fellow, friend, husband, lover, neighbour, X (an-) other."]},{"k":"H7454","v":["רֵעַ","rêa‛","ray'-ah","From H7462; a thought (as association of ideas): - thought."]},{"k":"H7455","v":["רֹעַ","rôa‛","ro'-ah","From H7489; badness (as marring), physically or morally: -    X be so bad, badness, (X be so) evil, naughtiness, sadness, sorrow, wickedness."]},{"k":"H7456","v":["רָעֵב","râ‛êb","raw-abe'","A primitive root; to hunger: - (suffer to) famish, (be, have, suffer, suffer to) hunger (-ry)."]},{"k":"H7457","v":["רָעֵב","râ‛êb","raw-abe'","From H7456; hungry (more or less intensely): - hunger bitten, hungry."]},{"k":"H7458","v":["רָעָב","râ‛âb","raw-awb'","From H7456; hunger (more or less extensive): - dearth, famine, + famished, hunger."]},{"k":"H7459","v":["רְעָבוֹן","re‛âbôn","reh-aw-bone'","From H7456; famine: - famine."]},{"k":"H7460","v":["רָעַד","râ‛ad","raw-ad'","A primitive root; to shudder (more or less violently): - tremble."]},{"k":"H7461","v":["רְעָדָה    רַעַד","ra‛ad    re‛âdâh","rah'-ad, reh-aw-daw'","From H7460; a shudder: - fear, trembling."]},{"k":"H7462","v":["רָעָה","râ‛âh","raw-aw'","A primitive root; to tend a flock, that is, pasture it; intransitively to graze (literally or figuratively); generally to rule; by extension to associate with (as a friend): -    X break, companion, keep company with, devour, eat up, evil entreat, feed, use as a friend, make friendship with, herdman, keep [sheep] (-er), pastor, + shearing house, shepherd, wander, waste."]},{"k":"H7463","v":["רֵעֶה","rê‛eh","ray-eh'","From H7462; a (male) companion: - friend."]},{"k":"H7464","v":["רֵעָה","rê‛âh","ray'-aw","Feminine of H7453; a female associate: - companion, fellow."]},{"k":"H7465","v":["רֹעָה","rô‛âh","ro-aw'","For H7455; breakage: - broken, utterly."]},{"k":"H7466","v":["רְעוּ","re‛û","reh-oo'","For H7471 in the sense of H7453; friend; Reu, a postdiluvian patriarch: - Reu."]},{"k":"H7467","v":["רְעוּאֵל","re‛û'êl","reh-oo-ale'","From the same as H7466 and H410; friend of God; Reuel, the name of Moses’ father in law, also of an Edomite and an Israelite: - Raguel, Reuel."]},{"k":"H7468","v":["רְעוּת","re‛ûth","reh-ooth'","From H7462 in the sense of H7453; a female associate; generally an additional one: -    + another, mate, neighbour."]},{"k":"H7469","v":["רְעוּת","re‛ûth","reh-ooth'","Probably from H7462; a feeding upon, that is, grasping after: - vexation."]},{"k":"H7470","v":["רְעוּת","re‛ûth","reh-ooth'","(Chaldee); corresponding to H7469; desire: - pleasure, will."]},{"k":"H7471","v":["רְעִי","re‛ı̂y","reh-ee'","From H7462; pasture: - pasture."]},{"k":"H7472","v":["רֵעִי","rê‛ı̂y","ray-ee'","From H7453; social; Rei, an Israelite: - Rei."]},{"k":"H7473","v":["רֹעִי","rô‛ı̂y","ro-ee'","From active participle of H7462; pastoral; as noun, a shepherd: - shepherd."]},{"k":"H7474","v":["רַעְיָה","ra‛yâh","rah-yaw'","Feminine of H7453; a female associate: - love."]},{"k":"H7475","v":["רַעְיוֹן","ra‛yôn","rah-yone'","From H7462 in the sense of H7469; desire: - vexation."]},{"k":"H7476","v":["רַעְיוֹן","ra‛yôn","rah-yone'","(Chaldee); corresponding to H7475; a grasp, that is, (figuratively) mental conception: - cogitation, thought."]},{"k":"H7477","v":["רָעַל","râ‛al","raw-al'","A primitive root; to reel, that is, (figuratively) to brandish: - terribly shake."]},{"k":"H7478","v":["רַעַל","ra‛al","rah'-al","From H7477; a reeling (from intoxication): - trembling."]},{"k":"H7479","v":["רַעֲלָה","ra‛ălâh","rah-al-aw'","Feminine of H7478; a long veil (as fluttering): - muffler."]},{"k":"H7480","v":["רְעֵלָיָה","re‛êlâyâh","reh-ay-law-yaw'","From H7477 and H3050; made to tremble (that is, fearful) of Jah; Reelajah, an Israelite: - Reeliah."]},{"k":"H7481","v":["רָעַם","râ‛am","raw-am'","A primitive root; to tumble, that is, be violently agitated; specifically to crash (of thunder); figuratively to irritate (with anger): - make to fret, roar, thunder, trouble."]},{"k":"H7482","v":["רַעַם","ra‛am","rah'-am","From H7481; a peal of thunder: - thunder."]},{"k":"H7483","v":["רַעְמָה","ra‛mâh","rah-maw'","Feminine of H7482; the mane of a horse (as quivering in the wind): - thunder."]},{"k":"H7484","v":["רַעְמָה","ra‛mâh","rah-maw'","The same as H7483; Ramah, the name of a grandson of Ham, and of a place (perhaps founded by him): - Raamah."]},{"k":"H7485","v":["רַעַמְיָה","ra‛amyâh","rah-am-yaw'","From H7481 and H3050; Jah has shaken; Raamjah, an Israelite: - Raamiah."]},{"k":"H7486","v":["רַעַמְסֵס    רַעְמְסֵס","ra‛mesês    ra‛amsês","rah-mes-ace', rah-am-sace'","Of Egypt origin; Rameses or Raamses, a place in Egypt: - Raamses, Rameses."]},{"k":"H7487","v":["רַעֲנַן","ra‛ănan","rah-aw-nan'","(Chaldee); corresponding to H7488; green, that is, (figuratively) prosperous: - flourishing."]},{"k":"H7488","v":["רַעֲנָן","ra‛ănân","rah-an-awn'","From an unused root meaning to be green; verdant; by analogy new; figuratively prosperous: - green, flourishing."]},{"k":"H7489","v":["רָעַע","râ‛a‛","raw-ah'","A primitive root; properly to spoil (literally by breaking to pieces); figuratively to make (or be) good for nothing, that is, bad (physically, socially or morally). (associate selves and show self friendly are by mistake for H7462.): - afflict, associate selves [by mistake for H7462], break (down, in pieces), + displease, (be, bring, do) evil (doer, entreat, man), show self friendly [by mistake for H7462], do harm, (do) hurt, (behave self, deal) ill, X indeed, do mischief, punish, still vex, (do) wicked (doer, -ly), be (deal, do) worse."]},{"k":"H7490","v":["רְעַע","re‛a‛","reh-ah'","(Chaldee); corresponding to H7489: - break, bruise."]},{"k":"H7491","v":["רָעַף","râ‛aph","raw-af'","A primitive root; to drip: - distil, drop (down)."]},{"k":"H7492","v":["רָעַץ","râ‛ats","raw-ats'","A primitive root; to break in pieces; figuratively harass: - dash in pieces, vex."]},{"k":"H7493","v":["רָעַשׁ","râ‛ash","raw-ash","A primitive root; to undulate (as the earth, the sky, etc.; also a field of grain), particularly through fear; specifically to spring (as a locust): - make afraid, (re-) move, quake, (make to) shake, (make to) tremble."]},{"k":"H7494","v":["רַעַשׁ","ra‛ash","rah'-ash","From H7493; vibration, bounding, uproar: - commotion, confused noise, earthquake, fierceness, quaking, rattling, rushing, shaking."]},{"k":"H7495","v":["רָפָה    רָפָא","râphâ'    râphâh","raw-faw', raw-faw'","A primitive root; properly to mend (by stitching), that is, (figuratively) to cure: - cure, (cause to) heal, physician, repair, X thoroughly, make whole. See H7503."]},{"k":"H7496","v":["רָפָא","râphâ'","raw-faw'","From H7495 in the sense of H7503; properly lax, that is, (figuratively) a ghost (as dead; in plural only): - dead, deceased."]},{"k":"H7497","v":["רָפָה    רָפָא","râphâ'    râphâh","raw-faw', raw-faw'","From H7495 in the sense of invigorating; a giant: - giant, Rapha, Rephaim (-s). See also H1051."]},{"k":"H7498","v":["רָפָה    רָפָא","râphâ'    râphâh","raw-faw', raw-faw'","Probably the same as H7497; giant; Rapha or Raphah, the name of two Israelites: - Rapha."]},{"k":"H7499","v":["רְפֻאָה","rephû'âh","ref-oo-aw'","Feminine passive participle of H7495; a medicament: - heal [-ed], medicine."]},{"k":"H7500","v":["רִפְאוּת","riph'ûth","rif-ooth'","From H7495; a cure: - health."]},{"k":"H7501","v":["רְפָאֵל","rephâ'êl","ref-aw-ale'","From H7495 and H410; God has cured; Rephael, an Israelite: - Rephael."]},{"k":"H7502","v":["רָפַד","râphad","raw-fad'","A primitive root; to spread (a bed); by implication to refresh: - comfort, make [a bed], spread."]},{"k":"H7503","v":["רָפָה","râphâh","raw-faw'","A primitive root; to slacken (in many applications, literally or figuratively): - abate, cease, consume, draw [toward evening], fail, (be) faint, be (wax) feeble, forsake, idle, leave, let alone (go, down), (be) slack, stay, be still, be slothful, (be) weak (-en). See H7495."]},{"k":"H7504","v":["רָפֶה","râpheh","raw-feh'","From H7503; slack (in body or mind): - weak."]},{"k":"H7505","v":["רָפוּא","râphû'","raw-foo'","Passive participle of H7495; cured; Raphu, an Israelite: - Raphu."]},{"k":"H7506","v":["רֶפַח","rephach","reh'-fakh","From an unused root apparently meaning to sustain; support; Rephach, an Israelite: - Rephah."]},{"k":"H7507","v":["רְפִידָה","rephı̂ydâh","ref-ee-daw'","From H7502; a railing (as spread along): - bottom."]},{"k":"H7508","v":["רְפִידִים","rephı̂ydı̂ym","ref-ee-deem'","Plural of the masculine of the same as H7507; ballusters; Rephidim, a place in the Desert: - Rephidim."]},{"k":"H7509","v":["רְפָיָה","rephâyâh","ref-aw-yaw'","From H7495 and H3050; Jah has cured; Rephajah, the name of five Israelites: - Rephaiah."]},{"k":"H7510","v":["רִפְיוֹן","riphyôn","rif-yone'","From H7503; slackness: - feebleness."]},{"k":"H7511","v":["רָפַס","râphas","raw-fas'","A primitive root; to trample, that is, prostrate: - humble self, submit self."]},{"k":"H7512","v":["רְפַס","rephas","ref-as'","(Chaldee); corresponding to H7511: - stamp."]},{"k":"H7513","v":["רַפְסֹדָה","raphsôdâh","raf-so-daw'","From H7511; a raft (as flat on the water): - flote."]},{"k":"H7514","v":["רָפַק","râphaq","raw-fak'","A primitive root; to recline: - lean."]},{"k":"H7515","v":["רָפַשׂ","râphaś","raw-fas'","A primitive root; to trample, that is, roil water: - foul, trouble."]},{"k":"H7516","v":["רֶפֶשׁ","rephesh","reh'-fesh","From H7515; mud (as roiled): - mire."]},{"k":"H7517","v":["רֶפֶת","repheth","reh'-feth","Probably form H7503; a stall for cattle (from their resting there): - stall."]},{"k":"H7518","v":["רַץ","rats","rats","Contracted from H7538; a fragment: - piece."]},{"k":"H7519","v":["רָצָא","râtsâ'","raw-tsaw'","A primitive root; to run; also to delight in: - accept, run."]},{"k":"H7520","v":["רָצַד","râtsad","raw-tsad'","A primitive root; probably to look askant, that is, (figuratively) be jealous: - leap."]},{"k":"H7521","v":["רָצָה","râtsâh","raw-tsaw'","A primitive root; to be pleased with; specifically to satisfy a debt: - (be) accept (-able), accomplish, set affection, approve, consent with, delight (self), enjoy, (be, have a) favour (-able), like, observe, pardon, (be, have, take) please (-ure), reconcile self."]},{"k":"H7522","v":["רָצֹן    רָצוֹן","râtsôn    râtsôn","raw-tsone', raw-tsone'","From H7521; delight: - (be) acceptable (-ance, -ed), delight, desire, favour, (good) pleasure, (own, self, voluntary) will, as . . . (what) would."]},{"k":"H7523","v":["רָצַח","râtsach","raw-tsakh'","A primitive root; properly to dash in pieces, that is, kill (a human being), especially to murder: - put to death, kill, (man-) slay (-er), murder (-er)."]},{"k":"H7524","v":["רֶצַח","retsach","reh'-tsakh","From H7523; a crushing; specifically a murder cry: - slaughter, sword."]},{"k":"H7525","v":["רִצְיָא","ritsyâ'","rits-yaw'","From H7521; delight; Ritsjah, an Israelite: - Rezia."]},{"k":"H7526","v":["רְצִין","retsı̂yn","rets-een'","Probably for H7522; Retsin, the name of a Syrian and of an Israelite: - Rezin."]},{"k":"H7527","v":["רָצַע","râtsa‛","raw-tsah'","A primitive root; to pierce: - bore."]},{"k":"H7528","v":["רָצַף","râtsaph","raw-tsaf'","A denominative from H7529; to tessellate, that is, embroider (as if with bright stones): - pave."]},{"k":"H7529","v":["רֶצֶף","retseph","reh'-tsef","For H7565; a red hot stone (for baking): - coal."]},{"k":"H7530","v":["רֶצֶף","retseph","reh'-tsef","The same as H7529; Retseph, a place in Assyria: - Rezeph."]},{"k":"H7531","v":["רִצְפָּה","ritspâh","rits-paw'","Feminine of H7529; a hot stone; also a tessellated pavement: - live coal, pavement."]},{"k":"H7532","v":["רִצְפָּה","ritspâh","rits-paw'","The same as H7531; Ritspah, an Israelitess: - Rizpah."]},{"k":"H7533","v":["רָצַץ","râtsats","raw-tsats'","A primitive root; to crack in pieces, literally or figuratively: - break, bruise, crush, discourage, oppress, struggle together."]},{"k":"H7534","v":["רַק","raq","rak","From H7556 in its original sense; emaciated (as if flattened out): - lean([-fleshed]), thin."]},{"k":"H7535","v":["רַק","raq","rak","The same as H7534 as a noun; properly leanness, that is, (figuratively) limitation; only adverbially merely, or conjugationally although: - but, even, except, howbeit howsoever, at the least, nevertheless, nothing but, notwithstanding, only, save, so [that], surely, yet (so), in any wise."]},{"k":"H7536","v":["רֹק","rôq","roke","From H7556; spittle: - spit (-ting, -tle)."]},{"k":"H7537","v":["רָקַב","râqab","raw-kab'","A primitive root; to decay (as by worm eating): - rot."]},{"k":"H7538","v":["רָקָב","râqâb","raw-kawb'","From H7537; decay (by caries): - rottenness (thing)."]},{"k":"H7539","v":["רִקָּבוֹן","riqqâbôn","rik-kaw-bone'","From H7538; decay (by caries): - rotten."]},{"k":"H7540","v":["רָקַד","râqad","raw-kad'","A primitive root; properly to stamp, that is, to spring about (wildly or for joy): - dance, jump, leap, skip."]},{"k":"H7541","v":["רַקָּה","raqqâh","rak-kaw'","Feminine of H7534; properly thinness, that is, the side of the head: - temple."]},{"k":"H7542","v":["רַקּוֹן","raqqôn","rak-kone'","From H7534; thinness; Rakkon, a place in Palestine: - Rakkon."]},{"k":"H7543","v":["רָקַח","râqach","raw-kakh'","A primitive root; to perfume: - apothecary, compound, make [ointment], prepare, spice."]},{"k":"H7544","v":["רֶקַח","reqach","reh'-kakh","From H7543; properly perfumery, that is, (by implication) spicery (for flavor): - spiced."]},{"k":"H7545","v":["רֹקַח","rôqach","ro'-kakh","From H7542; an aromatic: - confection, ointment."]},{"k":"H7546","v":["רַקָּח","raqqâch","rak-kawkh'","From H7543; a male perfumer: - apothecary."]},{"k":"H7547","v":["רַקֻּחַ","raqqûach","rak-koo'-akh","From H7543; a scented substance: - perfume."]},{"k":"H7548","v":["רַקָּחָה","raqqâchâh","rak-kaw-khaw'","Feminine of H7547; a female perfumer: - confectioner."]},{"k":"H7549","v":["רָקִיעַ","râqı̂ya‛","raw-kee'-ah","From H7554; properly an expanse, that is, the firmament or (apparently) visible arch of the sky: - firmament."]},{"k":"H7550","v":["רָקִיק","râqı̂yq","raw-keek'","From H7556 in its original sense; a thin cake: - cake, wafer."]},{"k":"H7551","v":["רָקַם","râqam","raw-kam'","A primitive root; to variegate color, that is, embroider; by implication to fabricate: - embroiderer, needlework, curiously work."]},{"k":"H7552","v":["רֶקֶם","reqem","reh'-kem","From H7551; versicolor; Rekem, the name of a place in Palestine, also of a Midianite and an Israelite: - Rekem."]},{"k":"H7553","v":["רִקְמָה","riqmâh","rik-maw'","From H7551; variegation of color; specifically embroidery: - broidered (work), divers colours, (raiment of) needlework (on both sides)."]},{"k":"H7554","v":["רָקַע","râqa‛","raw-kah'","A primitive root; to pound the earth (as a sign of passion); by analogy to expand (by hammering); by implication to overlay (with thin sheets of metal): - beat, make broad, spread abroad (forth, over, out, into plates), stamp, stretch."]},{"k":"H7555","v":["רִקֻּעַ","riqqûa‛","rik-koo'-ah","From H7554; beaten out, that is, a (metallic) plate: - broad."]},{"k":"H7556","v":["רָקַק","râqaq","raw-kak'","A primitive root; to spit: - spit."]},{"k":"H7557","v":["רַקַּת","raqqath","rak-kath'","From H7556 in its original sense of diffusing; a beach (as expanded shingle); Rakkath, a place in Palestine: - Rakkath."]},{"k":"H7558","v":["רִשְׁיוֹן","rishyôn","rish-yone'","From an unused root meaning to have leave; a permit: - grant."]},{"k":"H7559","v":["רָשַׁם","râsham","raw-sham'","A primitive root; to record: - note."]},{"k":"H7560","v":["רְשַׁם","resham","resh-am'","(Chaldee); corresponding to H7559: - sign, write."]},{"k":"H7561","v":["רָשַׁע","râsha‛","raw-shah'","A primitive root; to be (causatively do or declare) wrong; by implication to disturb, violate: - condemn, make trouble, vex, be (commit, deal, depart, do) wicked (-ly, -ness)."]},{"k":"H7562","v":["רֶשַׁע","resha‛","reh'-shah","From H7561; a wrong (especially moral): - iniquity, wicked(-ness)."]},{"k":"H7563","v":["רָשָׁע","râshâ‛","raw-shaw'","From H7561; morally wrong; concretely an (actively) bad person: -    + condemned, guilty, ungodly, wicked (man), that did wrong."]},{"k":"H7564","v":["רִשְׁעָה","rish‛âh","rish-aw'","Feminine of H7562; wrong (especially moral): - fault, wickedly (-ness)."]},{"k":"H7565","v":["רֶשֶׁף","resheph","reh'-shef","From H8313; a live coal; by analogy lightning; figuratively an arrow (as flashing through the air); specifically fever: - arrow, (burning) coal, burning heat, + spark, hot thunderbolt."]},{"k":"H7566","v":["רֶשֶׁף","resheph","reh'-shef","The same as H7565; Resheph, an Israelite: - Resheph."]},{"k":"H7567","v":["רָשַׁשׁ","râshash","raw-shash'","A primitive root; to demolish: - impoverish."]},{"k":"H7568","v":["רֶשֶׁת","resheth","reh'-sheth","From H3423; a net (as catching animals): - net [-work]."]},{"k":"H7569","v":["רַתּוֹק","rattôq","rat-toke'","From H7576; a chain: - chain."]},{"k":"H7570","v":["רָתַח","râthach","raw-thakh'","A primitive root; to boil: - boil."]},{"k":"H7571","v":["רֶתַח","rethach","reh'-thakh","From H7570; a boiling: - X [boil] well."]},{"k":"H7572","v":["רַתִּיקָה","rattı̂yqâh","rat-tee-kaw'","From H7576; a chain: - chain."]},{"k":"H7573","v":["רָתַם","râtham","raw-tham'","A primitive root; to yoke up (to the pole of a vehicle): - bind."]},{"k":"H7574","v":["רֹתֶם    רֶתֶם","rethem    rôthem","reh'-them, ro'-them","From H7573; the Spanish broom (from its pole like stems): - juniper (tree)."]},{"k":"H7575","v":["רִתְמָה","rithmâh","rith-maw'","Feminine of H7574; Rithmah, a place in the Desert: - Rithmah."]},{"k":"H7576","v":["רָתַק","râthaq","raw-thak'","A primitive root; to fasten: - bind."]},{"k":"H7577","v":["רְתֻקָה","rethûqâh","reth-oo-kaw'","Feminine passive participle of H7576; something fastened, that is, a chain: - chain."]},{"k":"H7578","v":["רְתֵת","rethêth","reth-ayth'","For H7374; terror: - trembling."]},{"k":"H7579","v":["שָׁאַב","shâ'ab","shaw-ab'","A primitive root; to bale up water: - (woman to) draw (-er, water)."]},{"k":"H7580","v":["שָׁאַג","shâ'ag","shaw-ag'","A primitive root; to rumble or moan: -  X mightily, roar."]},{"k":"H7581","v":["שְׁאָגָה","she'âgâh","sheh-aw-gaw'","From H7580; a rumbling or moan: -  roaring."]},{"k":"H7582","v":["שָׁאָה","shâ'âh","shaw-aw'","A primitive root; to rush; by implication to desolate: - be desolate, (make a) rush (-ing), (lay) waste."]},{"k":"H7583","v":["שָׁאָה","shâ'âh","shaw-aw'","A primitive root (rather identical with H7582 through the idea of whirling to giddiness); to stun, that is, (intransitively) be astonished: - wonder."]},{"k":"H7584","v":["שַׁאֲוָה","sha'ăvâh","shah-av-aw'","From H7582; a tempest (as rushing): - desolation."]},{"k":"H7585","v":["שְׁאֹל שְׁאוֹל","she'ôl    she'ôl","sheh-ole', sheh-ole'","From H7592; hades or the world of the dead (as if a subterranian retreat), including its accessories and inmates: - grave, hell, pit."]},{"k":"H7586","v":["שָׁאוּל","shâ'ûl","shaw-ool'","Passive participle of H7592; asked; Shaul, the name of an Edomite and two Israelites: - Saul, Shaul."]},{"k":"H7587","v":["שָׁאוּלִי","shâ'ûlı̂y","shaw-oo-lee'","Patronymic from H7856; a Shaulite or descendant of Shaul: - Shaulites."]},{"k":"H7588","v":["שָׁאוֹן","shâ'ôn","shaw-one'","From H7582; uproar (as of rushing); by implication destruction: -  X horrible, noise, pomp, rushing, tumult (X -uous)."]},{"k":"H7589","v":["שְׁאָט","she'âṭ","sheh-awt'","From an unused root meaning to push aside; contempt: - despite (-ful)."]},{"k":"H7590","v":["שָׁאט","shâ'ṭ","shawt","For active participle of H7750 (compare H7589); one contemning: - that (which) despise (-d)."]},{"k":"H7591","v":["שְׁאִיָּה","she'ı̂yâh","sheh-ee-yaw'","From H7582; desolation: - destruction."]},{"k":"H7592","v":["שָׁאֵל    שָׁאַל","shâ'al    shâ'êl","shaw-al', shaw-ale'","A primitive root; to inquire; by implication to request; by extension to demand: - ask (counsel, on), beg, borrow, lay to charge, consult, demand, desire, X earnestly, enquire, + greet, obtain leave, lend, pray, request, require, + salute, X straitly, X surely, wish."]},{"k":"H7593","v":["שְׁאֵל","she'êl","sheh-ale'","(Chaldee); corresponding to H7592: - ask, demand, require."]},{"k":"H7594","v":["שְׁאָל","she'âl","sheh-awl'","From H7592; request; Sheal, an Israelite: - Sheal."]},{"k":"H7595","v":["שְׁאֵלָא","she'êlâ'","sheh-ay-law'","(Chaldee); from H7593; properly a question (at law), that is, judicial decision or mandate: - demand."]},{"k":"H7596","v":["שֵׁלָה    שְׁאֵלָה","she'êlâh    shêlâh","sheh-ay-law', shay-law'","From H7592; a petition; by implication a loan: - loan, petition, request."]},{"k":"H7597","v":["שַׁלְתִּיאֵל    שְׁאַלְתִּיאֵל","she'altı̂y'êl    shaltı̂y'êl","sheh-al-tee-ale', shal-tee-ale'","From H7592 and H410; I have asked God; Shealtiel, an Israelite: - Shalthiel, Shealtiel."]},{"k":"H7598","v":["שְׁאַלְתִּיאֵל","she'altı̂y'êl","sheh-al-tee-ale'","(Chaldee); corresponding to H7597: - Shealtiel."]},{"k":"H7599","v":["שָׁאַן","shâ'an","shaw-an'","A primitive root; to loll, that is, be peaceful: - be at ease, be quiet, rest. See also H1052."]},{"k":"H7600","v":["שַׁאֲנָן","sha'ănân","shah-an-awn'","From H7599; secure; in a bad sense, haughty: - that is at ease, quiet, tumult. Compare H7946."]},{"k":"H7601","v":["שָׁאַס","shâ'as","shaw-as'","A primitive root; to plunder: - spoil."]},{"k":"H7602","v":["שָׁאַף","shâ'aph","shaw-af'","A primitive root; to inhale eagerly; figuratively to covet; by implication to be angry; also to hasten: - desire (earnestly), devour, haste, pant, snuff up, swallow up."]},{"k":"H7603","v":["שְׂאֹר","śe'ôr","seh-ore'","From H7604; barm or yeast cake (as swelling by fermentation): - leaven."]},{"k":"H7604","v":["שָׁאַר","shâ'ar","shaw-ar'","A primitive root; properly to swell up, that is, be (causatively make) redundant: - leave, (be) left, let, remain, remnant, reserve, the rest."]},{"k":"H7605","v":["שְׁאָר","she'âr","sheh-awr'","From H7604; a remainder: -  X other, remnant, residue, rest."]},{"k":"H7606","v":["שְׁאָר","she'âr","sheh-awr'","(Chaldee); corresponding to H7605: -    X whatsoever more, residue, rest."]},{"k":"H7607","v":["שְׁאֵר","she'êr","sheh-ayr'","From H7604; flesh (as swelling out), as living or for food; generally food of any kind; figuratively kindred by blood: - body, flesh, food, (near) kin (-sman, -swoman), near (nigh) [of kin]"]},{"k":"H7608","v":["שַׁאֲרָה","sha'ărâh","shah-ar-aw'","Feminine of H7607; female kindred by blood: - near kinswomen."]},{"k":"H7609","v":["שֶׁאֱרָה","she'ĕrâh","sheh-er-aw'","The same as H7608; Sheerah, an Israelitess: - Sherah."]},{"k":"H7610","v":["שְׁאָר יָשׁוּב","she'âr yâshûb","sheh-awr' yaw-shoob'","From H7605 and H7725; a remnant will return; Shear-Jashub, the symbolical name of one of Isaiah’s sons: - Shear-jashub."]},{"k":"H7611","v":["שְׁאֵרִית","she'êrı̂yth","sheh-ay-reeth'","From H7604; a remainder or residual (surviving, final) portion: - that had escaped, be left, posterity, remain (-der), remnant, residue, rest."]},{"k":"H7612","v":["שֵׁאת","shê'th","shayth","From H7582; devastation: - desolation."]},{"k":"H7613","v":["שְׂאֵת","śe'êth","seh-ayth'","From H5375; an elevation or leprous scab; figuratively elation or cheerfulness; exaltation in rank or character: - be accepted, dignity, excellency, highness, raise up self, rising."]},{"k":"H7614","v":["שְׁבָא","shebâ'","sheb-aw'","Of foreign origin; Sheba, the name of three early progenitors of tribes and of an Ethiopian district: - Sheba, Sabeans."]},{"k":"H7615","v":["שְׁבָאִי","shebâ'ı̂y","sheb-aw-ee'","Patronymic from H7614; a Shebaite or descendant of Sheba: - Sabean."]},{"k":"H7616","v":["שָׁבָב","shâbâb","shaw-bawb'","From an unused root meaning to break up; a fragment, that is, ruin: - broken in pieces."]},{"k":"H7617","v":["שָׁבָה","shâbâh","shaw-baw'","A primitive root; to transport into captivity: - (bring away, carry, carry away, lead, lead away, take) captive (-s), drive (take) away."]},{"k":"H7618","v":["שְׁבוּ","shebû","sheb-oo'","From an unused root (probably identical with that of H7617 through the idea of subdivision into flashes or streamers (compare H7632)) meaning to flame; a gem (from its sparkle), probably the agate: - agate."]},{"k":"H7619","v":["שׁוּבָאֵל    שְׁבוּאֵל","shebû'êl    shûbâ'êl","sheb-oo-ale', shoo-baw-ale'","From H7617 (abbreviated) or H7725 and H410; captive (or returned) of God; Shebuel or Shubael, the name of two Israelites: - Shebuel, Shubael."]},{"k":"H7620","v":["שְׁבֻעָה    שָׁבֻעַ    שָׁבוּעַ","shâbûa‛    shâbûa‛    shebû‛âh","shaw-boo'-ah, shaw-boo'-ah, sheb-oo-aw'","Properly passive participle of H7650 as a denominative of H7651; literally sevened, that is, a week (specifically of years): - seven, week."]},{"k":"H7621","v":["שְׁבוּעָה","shebû‛âh","sheb-oo-aw'","Feminine passive participle of H7650; properly something sworn, that is, an oath: - curse, oath, X sworn."]},{"k":"H7622","v":["שְׁבִית    שְׁבוּת","shebûth    shebı̂yth","sheb-ooth', sheb-eeth'","From H7617; exile; concretely prisoners; figuratively a former state of prosperity: - captive (-ity)."]},{"k":"H7623","v":["שָׁבַח","shâbach","shaw-bakh'","A primitive root; properly to address in a loud tone, that is, (specifically) loud; figuratively to pacify (as if by words): - commend, glory, keep in, praise, still, triumph."]},{"k":"H7624","v":["שְׁבַח","shebach","sheb-akh'","(Chaldee); corresponding to H7623; to adulate, that is, adore: - praise."]},{"k":"H7625","v":["שְׁבַט","shebaṭ","sheb-at'","(Chaldee); corresponding to H7626; a clan: - tribe."]},{"k":"H7626","v":["שֵׁבֶט","shêbeṭ","shay'-bet","From an unused root probably meaning to branch off; a scion, that is, (literally) a stick (for punishing, writing, fighting, ruling, walking, etc.) or (figuratively) a clan: -  X correction, dart, rod, sceptre, staff, tribe."]},{"k":"H7627","v":["שְׁבָט","shebâṭ","sheb-awt'","Of foreign origin; Shebat, a Jewish month: - Sebat."]},{"k":"H7628","v":["שְׁבִי","shebı̂y","sheb-ee'","From H7618; exiled; captured; as noun, exile (abstractly or concretely and collectively); by extension booty: - captive (-ity), prisoners, X take away, that was taken."]},{"k":"H7629","v":["שֹׁבִי","shôbı̂y","sho-bee'","From H7617; captor; Shobi, an Ammonite: - Shobi."]},{"k":"H7630","v":["שֹׁבַי","shôbay","sho-bah'ee","For H7629; Shobai, an Israelite: - Shobai."]},{"k":"H7631","v":["שְׂבִיב","śebı̂yb","seb-eeb'","(Chaldee); corresponding to H7632: - flame."]},{"k":"H7632","v":["שָׁבִיב","shâbı̂yb","shaw-beeb'","From the same as H7616; flame (as split into tongues): - spark."]},{"k":"H7633","v":["שִׁבְיָה","shibyâh","shib-yaw'","Feminine of H7628; exile (abstractly or concretely and collectively): - captives (-ity)."]},{"k":"H7634","v":["שָׁבְיָה","shobyâh","shob-yaw'","Feminine of the same as H7629; captivation; Shobjah, an Israelite: - Shachia [from the margin]."]},{"k":"H7635","v":["שָׁבִיל","shâbı̂yl","shaw-beel'","From the same as H7640; a track or passage way (as if flowing along): - path."]},{"k":"H7636","v":["שָׁבִיס","shâbı̂ys","shaw-beece'","From an unused root meaning to interweave; a netting for the hair: - caul."]},{"k":"H7637","v":["שְׁבִעִי    שְׁבִיעִי","shebı̂y‛ı̂y    shebi‛ı̂y","sheb-ee-ee', sheb-ee-ee'","Ordinal from H7657; seventh: - seventh (time)."]},{"k":"H7638","v":["שָׂבָךְ","śâbâk","saw-bawk'","From an unused root meaning to intwine; a netting (ornament to the capital of a column): - net."]},{"k":"H7639","v":["שְׂבָכָה","śebâkâh","seb-aw-kaw'","Feminine of H7638; a net work, that is, (in hunting) a snare, (in architecture) a ballustrade; also a reticulated ornament to a pillar: - checker, lattice, network, snare, wreath (-enwork)."]},{"k":"H7640","v":["שֹׁבֶל","shôbel","show'-bel","From an unused root meaning to flow; a lady’s train (as trailing after her): - leg."]},{"k":"H7641","v":["שִׁבֹּלֶת    שִׁבֹּל","shibbôl    shibbôleth","shib-bole', shib-bo'-leth","From the same as H7640; a stream (as flowing); also an ear of grain (as growing out); by analogy a branch: - branch, channel, ear (of corn), ([water-]) flood, Shibboleth. Compare H5451."]},{"k":"H7642","v":["שַׁבְלוּל","shablûl","shab-lool'","From the same as H7640; a snail (as if floating in its own slime): - snail."]},{"k":"H7643","v":["שִׂבְמָה    שְׂבָם","śebâm    śibmâh","seb-awm', sib-maw'","Probably from H1313; spice; Sebam or Sibmah, a place in Moab: - Shebam, Shibmah, Sibmah."]},{"k":"H7644","v":["שֶׁבְנָה    שֶׁבְנָא","shebnâ'    shebnâh","sheb-naw', sheb-naw'","From an unused root meaning to grow; growth; Shebna or Shebnah, an Israelite: - Shebna, Shebnah."]},{"k":"H7645","v":["שְׁבַנְיָהוּ    שְׁבַנְיָה","shebanyâh    shebanyâhû","sheb-an-yaw', sheb-an-yaw'-hoo","From the same as H7644 and H3050; Jah has grown (that is, prospered); Shebanjah, the name of three or four Israelites: - Shebaniah."]},{"k":"H7646","v":["שָׂבֵעַ    שָׂבַע","śâba‛    śâbêa‛","saw-bah', saw-bay'-ah","A primitive root; to sate, that is, fill to satisfaction (literally or figuratively): - have enough, fill (full, self, with), be (to the) full (of), have plenty of, be satiate, satisfy (with), suffice, be weary of."]},{"k":"H7647","v":["שָׂבָע","śâbâ‛","saw-baw'","From H7646; copiousness: - abundance, plenteous (-ness, -ly)."]},{"k":"H7648","v":["שׂבַע","śôba‛","so'-bah","From H7646; satisfaction (of food or (figuratively) joy): - fill, full (-ness), satisfying, be satisfied."]},{"k":"H7649","v":["שָׂבֵעַ","śâbêa‛","saw-bay'-ah","From H7646; satiated (in a pleasant or disagreeable sense): - full (of), satisfied (with)."]},{"k":"H7650","v":["שָׁבַע","shâba‛","shaw-bah'","A primitive root; properly to be complete, but used only as a denominative from H7651; to seven oneself, that is, swear (as if by repeating a declaration seven times): - adjure, charge (by an oath, with an oath), feed to the full [by mistake for H7646], take an oath, X straitly, (cause to, make to) swear."]},{"k":"H7651","v":["שִׁבְעָה    שֶׁבַע","sheba‛    shib‛âh","sheh'-bah, shib-aw'","From H7650; a primitive cardinal number; seven (as the sacred full one); also (adverbially) seven times; by implication a week; by extension an indefinite number: -    (+ by) seven ([-fold], -s, [-teen, -teenth], -th, times). Compare H7658."]},{"k":"H7652","v":["שֶׁבַע","sheba‛","sheh'-bah","The same as H7651; seven; Sheba, the name of a place in Palestine, and of two Israelites: - Sheba."]},{"k":"H7653","v":["שִׂבְעָה","śib‛âh","sib-aw'","Feminine of H7647; satiety: - fulness."]},{"k":"H7654","v":["שָׂבְעָה","śob‛âh","sob-aw'","Feminine of H7648; satiety: - (to have) enough, X till . . . be full, [un-] satiable, satisfy, X sufficiently."]},{"k":"H7655","v":["שִׁבְעָה","shib‛âh","shib-aw'","(Chaldee); corresponding to H7651: - seven (times)."]},{"k":"H7656","v":["שִׁבְעָה","shib‛âh","shib-aw'","Masculine of H7651; seven (seventh); Shebah, a well in Palestine: - Shebah."]},{"k":"H7657","v":["שִׁבְעִים","shib‛ı̂ym","shib-eem'","Multiple of H7651; seventy: - seventy, threescore and ten (+ -teen)."]},{"k":"H7658","v":["שִׁבְעָנָה","shib‛ânâh","shib-aw-naw'","Prolonged for the masculine of H7651; seven: - seven."]},{"k":"H7659","v":["שִׁבְעָתַיִם","shib‛âthayim","shib-aw-thah'-yim","Dual (adverb) of H7651; seven times: - seven (-fold, times)."]},{"k":"H7660","v":["שָׁבַץ","shâbats","shaw-bats'","A primitive root; to interweave (colored) threads in squares; by implication (of reticulation) to inchase gems in gold: - embroider, set."]},{"k":"H7661","v":["שָׁבָץ","shâbâts","shaw-bawts'","From H7660; intanglement, that is, (figuratively) perplexity: - anguish."]},{"k":"H7662","v":["שְׁבַק","shebaq","sheb-ak'","(Chaldee); corresponding to the root of H7733; to quit, that is, allow to remain: - leave, let alone."]},{"k":"H7663","v":["שָׁבַר    שָׂבַר","śâbar    shâbar","saw-bar', shaw-bar'","The second form being used erroneously in Neh_2:13, Neh_2:15; a primitive root; to scrutinize; by implication (of watching) to expect (with hope and patience): - hope, tarry, view, wait."]},{"k":"H7664","v":["שֵׂבֶר","śêber","say'-ber","From H7663; expectation: - hope."]},{"k":"H7665","v":["שָׁבַר","shâbar","shaw-bar'","A primitive root; to burst (literally or figuratively): - break (down, off, in pieces, up), broken ([-hearted]), bring to the birth, crush, destroy, hurt, quench, X quite, tear, view [by mistake for H7663]."]},{"k":"H7666","v":["שָׁבַר","shâbar","shaw-bar'","Denominative from H7668; to deal in grain: - buy, sell."]},{"k":"H7667","v":["שֵׁבֶר    שֶׁבֶר","sheber    shêber","sheh'-ber, shay'-ber","From H7665; a fracture, figuratively ruin; specifically a solution (of a dream): - affliction, breach, breaking, broken [-footed, -handed], bruise, crashing, destruction, hurt, interpretation, vexation."]},{"k":"H7668","v":["שֶׁבֶר","sheber","sheh'-ber","The same as H7667; grain (as if broken into kernels): - corn, victuals."]},{"k":"H7669","v":["שֶׁבֶר","sheber","sheh'-ber","The same as H7667; Sheber, an Israelite: - Sheber."]},{"k":"H7670","v":["שִׁבְרוֹן","shibrôn","shib-rone'","From H7665; rupture, that is, a pang; figuratively ruin: - breaking, destruction."]},{"k":"H7671","v":["שְׁבָרִים","shebârı̂ym","sheb-aw-reem'","Plural of H7667; ruins; Shebarim, a place in Palestine: - Shebarim."]},{"k":"H7672","v":["שְׁבַשׁ","shebash","sheb-ash'","(Chaldee); corresponding to H7660; to intangle, that is, perplex: - be astonished."]},{"k":"H7673","v":["שָׁבַת","shâbath","shaw-bath'","A primitive root; to repose, that is, desist from exertion; used in many implied relations (causatively, figuratively or specifically): - (cause to, let, make to) cease, celebrate, cause (make) to fail, keep (sabbath), suffer to be lacking, leave, put away (down), (make to) rest, rid, still, take away."]},{"k":"H7674","v":["שֶׁבֶת","shebeth","sheh'-beth","From H7673; rest, interruption, cessation: - cease, sit still, loss of time."]},{"k":"H7675","v":["שֶׁבֶת","shebeth","sheh'-beth","Infinitive of H3427; properly session; but used also concretely, an abode or locality. Comapre H3429: - place, seat. Compare H3429."]},{"k":"H7676","v":["שַׁבָּת","shabbâth","shab-bawth'","Intensive from H7673; intermission, that is, (specifically) the Sabbath: -  (+ every) sabbath."]},{"k":"H7677","v":["שַׁבָּתוֹן","shabbâthôn","shab-baw-thone'","From H7676; a sabbatism or special holiday: - rest, sabbath."]},{"k":"H7678","v":["שַׁבְּתַי","shabbethay","shab-beth-ah'ee","From H7676; restful; Shabbethai, the name of three Israelites: - Shabbethai."]},{"k":"H7679","v":["שָׂגָא","śâgâ'","saw-gaw'","A primitive root; to grow, that is, (causatively) to enlarge, (figuratively) laud: - increase, magnify."]},{"k":"H7680","v":["שְׂגָא","śegâ'","seg-aw'","(Chaldee); corresponding to H7679; to increase: - grow, be multiplied."]},{"k":"H7681","v":["שָׁגֵא","shâgê'","shaw-gay'","Probably from H7686; erring; Shage, an Israelite: - Shage."]},{"k":"H7682","v":["שָׂגַב","śâgab","saw-gab'","A primitive root; to be (causatively make) lofty, especially inaccessible; by implication safe, strong; used literally and figuratively: - defend, exalt, be excellent, (be, set on) high, lofty, be safe, set up (on high), be too strong."]},{"k":"H7683","v":["שָׁגַג","shâgag","shaw-gag'","A primitive root; to stray, that is, (figuratively) sin (with more or less apology): -    X also for that, deceived, err, go astray, sin ignorantly."]},{"k":"H7684","v":["שְׁגָגָה","shegâgâh","sheg-aw-gaw'","From H7683; a mistake or inadvertent transgression: - error, ignorance, at unawares, unwittingly."]},{"k":"H7685","v":["שָׂגָה","śâgâh","saw-gaw'","A primitive root; to enlarge (especially upward, also figuratively): - grow (up), increase."]},{"k":"H7686","v":["שָׁגָה","shâgâh","shaw-gaw'","A primitive root; to stray (causatively mislead), usually (figuratively) to mistake, especially (morally) to transgress; by extension (through the idea of intoxication) to reel, (figuratively) be enraptured: - (cause to) go astray, deceive, err, be ravished, sin through ignorance, (let, make to) wander."]},{"k":"H7687","v":["שְׂגוּב","śegûb","seg-oob'","From H7682; aloft; Segub, the name of two Israelites: - Segub."]},{"k":"H7688","v":["שָׁגַח","shâgach","shaw-gakh'","A primitive root; to peep, that is, glance sharply at: - look (narrowly)."]},{"k":"H7689","v":["שַׂגִּיא","śaggı̂y'","sag-ghee'","From H7679; (superlatively) mighty: - excellent, great."]},{"k":"H7690","v":["שַׂגִּיא","śaggı̂y'","sag-ghee'","H3 (Chaldee); corresponding to H7689; large (in size, quantity or number, also adverbially): - exceeding, great (-ly), many, much, sore, very."]},{"k":"H7691","v":["שְׁגִיאָה","shegı̂y'âh","sheg-ee-aw'","From H7686; a moral mistake: - error."]},{"k":"H7692","v":["שִׁגָּיֹנָה    שִׁגָּיוֹן","shiggâyôn    shiggâyônâh","shig-gaw-yone', shig-gaw-yo-naw'","From H7686; properly aberration, that is, (technically) a dithyramb or rambling poem: - Shiggaion, Shigio-noth."]},{"k":"H7693","v":["שָׁגַל","shâgal","shaw-gal'","A primitive root; to copulate with: - lie with, ravish."]},{"k":"H7694","v":["שֵׁגָל","shêgâl","shay-gawl'","From H7693; a queen (from cohabitation): - queen."]},{"k":"H7695","v":["שֵׁגָל","shêgâl","shay-gawl'","(Chaldee); corresponding to H7694; a (legitimate) queen: - wife."]},{"k":"H7696","v":["שָׁגַע","shâga‛","shaw-gah'","A primitive root; to rave through insanity: - (be, play the) mad (man)."]},{"k":"H7697","v":["שִׁגָּעוֹן","shiggâ‛ôn","shig-gaw-yone'","From H7696; craziness: - furiously, madness."]},{"k":"H7698","v":["שֶׁגֶר","sheger","sheh'-ger","From an unused root probably meaning to eject; the foetus (as finally expelled): - that cometh of, increase."]},{"k":"H7699","v":["שֹׁד    שַׁד","shad    shôd","shad, shode","Probably from H7736 (in its original sense) contracted; the breast of a woman or animal (as bulging): - breast, pap, teat."]},{"k":"H7700","v":["שֵׁד","shêd","shade","From H7736; a daemon (as malignant): - devil."]},{"k":"H7701","v":["שׁוֹד    שֹׁד","shôd    shôd","shode, shode","From H7736; violence, ravage: - desolation, destruction, oppression, robbery, spoil (-ed, -er, -ing), wasting."]},{"k":"H7702","v":["שָׂדַד","śâdad","saw-dad'","A primitive root; to abrade, that is, harrow a field: - break clods, harrow."]},{"k":"H7703","v":["שָׁדַד","shâdad","shaw-dad'","A primitive root; properly to be burly, that is, (figuratively) powerful (passively impregnable); by implication to ravage: - dead, destroy (-er), oppress, robber, spoil (-er), X utterly, (lay) waste."]},{"k":"H7704","v":["שָׂדַי    שָׂדֶה","śâdeh    śâday","saw-deh', saw-dah'ee","From an unused root meaning to spread out; a field (as flat): - country, field, ground, land, soil, X wild."]},{"k":"H7705","v":["שִׁדָּה","shiddâh","shid-dah'","From H7703; a wife (as mistress of the house): - X all sorts, musical instrument."]},{"k":"H7706","v":["שַׁדַּי","shadday","shad-dah'ee","From H7703; the Almighty: - Almighty."]},{"k":"H7707","v":["שְׁדֵיאוּר","shedêy'ûr","shed-ay-oor'","From the same as H7704 and H217; spreader of light; Shedejur, an Israelite: - Shedeur."]},{"k":"H7708","v":["שִׂדִּים","śiddı̂ym","sid-deem'","Plural from the same as H7704; flats; Siddim, a valley in Palestine: - Siddim."]},{"k":"H7709","v":["שְׁדֵמָה","shedêmâh","shed-ay-maw'","Apparently from H7704; a cultivated field: - blasted, field."]},{"k":"H7710","v":["שָׁדַף","shâdaph","shaw-daf'","A primitive root; to scorch: - blast."]},{"k":"H7711","v":["שִׁדָּפוֹן    שְׁדֵפָה","shedêphâh    shiddâphôn","shed-ay-faw', shid-daw-fone'","From H7710; blight: - blasted (-ing)."]},{"k":"H7712","v":["שְׁדַר","shedar","shed-ar'","(Chaldee); a primitive root; to endeavor: - labour."]},{"k":"H7713","v":["שְׂדֵרָה","śedêrâh","sed-ay-raw'","From an unused root meaning to regulate; a row, that is, rank (of soldiers), story (of rooms): - board, range."]},{"k":"H7714","v":["שַׁדְרַךְ","shadrak","shad-rak'","Probably of foreign origin; Shadrak, the Babylonian name of one of Daniel’s companions: - Shadrach."]},{"k":"H7715","v":["שַׁדְרַךְ","shadrak","shad-rak'","(Chaldee); the same as H7714: - Shadrach."]},{"k":"H7716","v":["שֵׂי    שֶׂה","śeh    śêy","seh, say","Probably from H7582 through the idea of pushing out to graze; a member of a flock, that is, a sheep or goat: - (lesser, small) cattle, ewe, lamb, sheep."]},{"k":"H7717","v":["שָׂהֵד","śâhêd","saw-hade'","From an unused root meaning to testify; a witness: - record."]},{"k":"H7718","v":["שֹׁהַם","shôham","sho'-ham","From an unused root probably meaning to blanch; a gem, probably the beryl (from its pale green color): - onyx."]},{"k":"H7719","v":["שֹׁהַם","shôham","sho'-ham","The same as H7718; Shoham, an Israelite: - Shoham."]},{"k":"H7720","v":["שַׂהֲרֹן","śahărôn","sah-har-one'","From the same as H5469; a round pendant for the neck: - ornament, round tire like the moon."]},{"k":"H7721","v":["שׂוֹא","śô'","so","From an unused root (akin to H5375 and H7722) meaning to rise; a rising: - arise."]},{"k":"H7722","v":["שֹׁאָה    שׁוֹאָה    שׁוֹא","shô'    shô'âh    shô'âh","sho, sho-aw', sho-aw'","From an unused root meaning to rush over; a tempest; by implication devastation: - desolate (-ion), destroy, destruction, storm, wasteness."]},{"k":"H7723","v":["שַׁו    שָׁוְא","shâv'    shav","shawv, shav","From the same as H7722 in the sense of desolating; evil (as destructive), literally (ruin) or morally (especially guile); figuratively idolatry (as false, subjectively), uselessness (as deceptive, objectively; also adverbially in vain): - false (-ly), lie, lying, vain, vanity."]},{"k":"H7724","v":["שְׁוָא","shevâ'","shev-aw'","From the same as H7723; false; Sheva, an Israelite: - Sheva."]},{"k":"H7725","v":["שׁוּב","shûb","shoob","A primitive root; to turn back (hence, away) transitively or intransitively, literally or figuratively (not necessarily with the idea of return to the starting point); generally to retreat; often adverbially again: -  ([break, build, circumcise, dig, do anything, do evil, feed, lay down, lie down, lodge, make, rejoice, send, take, weep]) X again, (cause to) answer (+ again), X in any case (wise), X at all, averse, bring (again, back, home again), call [to mind], carry again (back), cease, X certainly, come again (back) X consider, + continually, convert, deliver (again), + deny, draw back, fetch home again, X fro, get [oneself] (back) again, X give (again), go again (back, home), [go] out, hinder, let, [see] more, X needs, be past, X pay, pervert, pull in again, put (again, up again), recall, recompense, recover, refresh, relieve, render (again), X repent, requite, rescue, restore, retrieve, (cause to, make to) return, reverse, reward, + say nay, send back, set again, slide back, still, X surely, take back (off), (cause to, make to) turn (again, self again, away, back, back again, backward, from, off), withdraw."]},{"k":"H7726","v":["שׁוֹבָב","shôbâb","sho-bawb'","From H7725; apostate, that is, idolatrous: - backsliding, frowardly, turn away [from margin]."]},{"k":"H7727","v":["שׁוֹבָב","shôbâb","sho-bawb'","The same as H7726; rebellious; Shobab, the name of two Israelites: - Shobab."]},{"k":"H7728","v":["שׁוֹבֵב","shôbêb","sho-babe'","From H7725; apostate, that is, heathenish or (actually) heathen: - backsliding."]},{"k":"H7729","v":["שׁוּבָה","shûbâh","shoo-baw'","From H7725; a return: - returning."]},{"k":"H7730","v":["שׂוֹבֶךְ","śôbek","so'-bek","From H5441; a thicket, that is, interlaced branches: - thick boughs."]},{"k":"H7731","v":["שׁוֹבָךְ","shôbâk","sho-bawk'","Perhaps for H7730; Shobak, a Syrian: - Shobach."]},{"k":"H7732","v":["שׁוֹבָל","shôbâl","sho-bawl'","From the same as H7640; overflowing; Shobal, the name of an Edomite and two Israelites: - Shobal."]},{"k":"H7733","v":["שׁוֹבֵק","shôbêq","sho-bake'","Active participle from a primitive root meaning to leave (compare H7662); forsaking; Shobek, an Israelite: - Shobek."]},{"k":"H7734","v":["שׂוּג","śûg","soog","A primitive root; to retreat: - turn back."]},{"k":"H7735","v":["שׂוּג","śûg","soog","A primitive root; to hedge in: - make to grow."]},{"k":"H7736","v":["שׁוּד","shûd","shood","A primitive root; properly to swell up, that is, figuratively (by implication of insolence) to devastate: - waste."]},{"k":"H7737","v":["שָׁוָה","shâvâh","shaw-vaw'","A primitive root; properly to level, that is, equalize; figuratively to resemble; by implication to adjust (that is, counterbalance, be suitable, compose, place, yield, etc.): - avail, behave, bring forth, compare, countervail, (be, make) equal, lay, be (make, a-) like, make plain, profit, reckon."]},{"k":"H7738","v":["שָׁוָה","shâvâh","shaw-vaw'","A primitive root; to destroy: -  X substance [from the margin]."]},{"k":"H7739","v":["שְׁוָה","shevâh","shev-aw'","(Chaldee); corresponding to H7737; to resemble: - make like."]},{"k":"H7740","v":["שָׁוֵה","shâvêh","shaw-vay'","From H7737; plain; Shaveh, a place in Palestine: - Shaveh."]},{"k":"H7741","v":["שָׁוֵה קִרְיָתַיִם","shâvêh qiryâthayim","shaw-vay' kir-yaw-thah'-yim","From the same as H7740 and the dual of H7151; plain of a double city; Shaveh Kirjathajim, a place East of the Jordan: - Shaveh Kiriathaim."]},{"k":"H7742","v":["שׂוּחַ","śûach","soo'-akh","A primitive root; to muse pensively: - meditate."]},{"k":"H7743","v":["שׁוּחַ","shûach","shoo'-akh","A primitive root; to sink, literally or figuratively: - bow down, incline, humble."]},{"k":"H7744","v":["שׁוּחַ","shûach","shoo'-akh","From H7743; dell; Shuach, a son of Abraham: - Shuah."]},{"k":"H7745","v":["שׁוּחָה","shûchâh","shoo-khaw'","From H7743; a chasm: - ditch, pit."]},{"k":"H7746","v":["שׁוּחָה","shûchâh","shoo-khaw'","The same as H7745; Shuchah, an Israelite: - Shuah."]},{"k":"H7747","v":["שׁוּחִי","shûchı̂y","shoo-khee'","Patronymic from H7744; a Shuchite or descendant of Shuach: - Shuhite."]},{"k":"H7748","v":["שׁוּחָם","shûchâm","shoo-khawm'","From H7743; humbly; Shucham, an Israelite: - Shuham."]},{"k":"H7749","v":["שׁוּחָמִי","shûchâmı̂y","shoo-khaw-mee'","Patronymic from H7748; a Shuchamite (collectively): - Shuhamites."]},{"k":"H7750","v":["סוּט    שׂוּט","śûṭ    sûṭ","soot, soot","A primitive root; to detrude, that is, (intransitively and figuratively) become derelict (wrongly practise; namely, idolatry): - turn aside to."]},{"k":"H7751","v":["שׁוּט","shûṭ","shoot","A primitive root; properly to push forth; (but used only figuratively) to lash, that is, (the sea with oars) to row; by implication to travel: - go (about, through, to and fro), mariner, rower, run to and fro."]},{"k":"H7752","v":["שׁוֹט","shôṭ","shote","From H7751; a lash (literally or figuratively): - scourge, whip."]},{"k":"H7753","v":["שׂוּךְ","śûk","sook","A primitive root; to entwine, that is, shut in (for formation, protection or restraint): - fence. (make an) hedge (up)."]},{"k":"H7754","v":["שׂוֹכָה    שׂוֹךְ","śôk    śôkâh","soke, so-kaw'","The second form being feminine; from H7753; a branch (as interleaved): - bough."]},{"k":"H7755","v":["שׂוֹכוֹ    שׂכֹה    שׂוֹכֹה","śôkôh    śôkôh    śôkô","so-ko', so-ko', so-ko'","From H7753; Sokoh or Soko, the name of two places in Palestine: - Shocho, Shochoh, Sochoh, Soco, Socoh."]},{"k":"H7756","v":["שׂוּכָתִי","śûkâthı̂y","soo-kaw-thee'","Probably patronymic from a name corresponding to H7754 (feminine); a Sukathite or descendant of an unknown Israelite named Sukah: - Suchathite."]},{"k":"H7757","v":["שׁוּל","shûl","shool","From an unused root meaning to hang down; a skirt; by implication a bottom edge: - hem, skirt, train."]},{"k":"H7758","v":["שֵׁילָל    שׁוֹלָל","shôlâl    shêylâl","sho-lawl', shay-lawl'","The second form being used in Mic_1:8; from H7997; nude (especially bare foot); by implication captive: - spoiled, stripped."]},{"k":"H7759","v":["שׁוּלַמִּית","shûlammı̂yth","shoo-lam-meeth'","From H7999; peaceful (with the article always prefixed, making it a pet name); the Shulammith, an epithet of Solomon’s queen: - Shulamite."]},{"k":"H7760","v":["שִׂים    שׂוּם","śûm    śı̂ym","soom, seem","A primitive root; to put (used in a great variety of applications, literally, figuratively, inferentially and elliptically): -    X any wise, appoint, bring, call [a name], care, cast in, change, charge, commit, consider, convey, determine, + disguise, dispose, do, get, give, heap up, hold, impute, lay (down, up), leave, look, make (out), mark, + name, X on, ordain, order, + paint, place, preserve, purpose, put (on), + regard, rehearse, reward, (cause to) set (on, up), shew, + stedfastly, take, X tell, + tread down, ([over-]) turn, X wholly, work."]},{"k":"H7761","v":["שׂוּם","śûm","soom","(Chaldee); corresponding to H7760: -    + command, give, lay, make, + name, + regard, set."]},{"k":"H7762","v":["שׁוּם","shûm","shoom","From an unused root meaning to exhale; garlic (from its rank odor): - garlic."]},{"k":"H7763","v":["שֹׁמֵר    שׁוֹמֵר","shômêr    shômêr","sho-mare', sho-mare'","Active participle of H8104; keeper; Shomer, the name of two Israelites: - Shomer."]},{"k":"H7764","v":["שׁוּנִי","shûnı̂y","shoo-nee'","From an unused root meaning to rest; quiet; Shuni, an Israelite: - Shuni."]},{"k":"H7765","v":["שׁוּנִי","shûnı̂y","shoo-nee'","Patronymic from H7764; a Shunite (collectively) or descendant of Shuni: - Shunites."]},{"k":"H7766","v":["שׁוּנֵם","shûnêm","shoo-name'","Probably from the same as H7764; quietly; Shunem, a place in Palestine: - Shunem."]},{"k":"H7767","v":["שׁוּנַמִּית","shûnammı̂yth","shoo-nam-meeth'","Patrial from H7766; a Shunammitess, or female inhabitant of Shunem: - Shunamite."]},{"k":"H7768","v":["שָׁוַע","shâva‛","shaw-vah'","A primitive root; properly to be free; but used only causatively and reflexively to halloo (for help, that is, freedom from some trouble): - cry (aloud, out), shout."]},{"k":"H7769","v":["שׁוּעַ","shûa‛","shoo'-ah","From H7768; a halloo: - cry, riches."]},{"k":"H7770","v":["שׁוּעַ","shûa‛","shoo'-ah","The same as H7769; shua, a Canaanite: - Shua, Shuah."]},{"k":"H7771","v":["שׁוֹעַ","shôa‛","sho'-ah","From H7768 in the original sense of freedom; a noble, that is, liberal, opulent; also (as noun in the derived sense) a halloo: - bountiful, crying, rich."]},{"k":"H7772","v":["שׁוֹעַ","shôa‛","sho'-ah","The same as H7771; rich; Shoa, an Oriental people: - Shoa."]},{"k":"H7773","v":["שֶׁוַע","sheva‛","sheh'-vah","From H7768; a halloo: - cry."]},{"k":"H7774","v":["שׁוּעָא","shû‛â'","shoo-aw'","From H7768; wealth; Shua, an Israelitess: - Shua."]},{"k":"H7775","v":["שַׁוְעָה","shav‛âh","shav-aw'","Feminine of H7773; a hallooing: - crying."]},{"k":"H7776","v":["שֻׁעָל    שׁוּעָל","shû‛âl    shû‛âl","shoo-awl', shoo-awl'","From the same as H8168; a jackal (as a burrower): - fox."]},{"k":"H7777","v":["שׁוּעָל","shû‛âl","shoo-awl'","The same as H7776; Shual, the name of an Israelite and of a place in Palestine: - Shual."]},{"k":"H7778","v":["שֹׁעֵר    שׁוֹעֵר","shô‛êr    shô‛êr","sho-are', sho-are'","Active participle of H8176 (as denominative from H8179); a janitor: - doorkeeper, porter."]},{"k":"H7779","v":["שׁוּף","shûph","shoof","A primitive root; properly to gape, that is, snap at; figuratively to overwhelm: - break, bruise, cover."]},{"k":"H7780","v":["שׁוֹפָךְ","shôphâk","sho-fawk'","From H8210; poured; Shophak, a Syrian: - Shophach."]},{"k":"H7781","v":["שׁוּפָמִי","shûphâmı̂y","shoo-faw-mee'","Patronymic from H8197; a Shuphamite (collectively) or descendant of Shephupham: - Shuphamite."]},{"k":"H7782","v":["שֹׁפָר    שׁוֹפָר","shôphâr    shôphâr","sho-far', sho-far'","From H8231 in the original sense of incising; a cornet (as giving a clear sound) or curved horn: - cornet, trumpet."]},{"k":"H7783","v":["שׁוּק","shûq","shook","A primitive root; to run after or over, that is, overflow: - overflow, water."]},{"k":"H7784","v":["שׁוּק","shûq","shook","From H7783; a street (as run over): - street."]},{"k":"H7785","v":["שׁוֹק","shôq","shoke","From H7783; the (lower) leg (as a runner): - hip, leg, shoulder, thigh."]},{"k":"H7786","v":["שׂוּר","śûr","soor","A primitive root; properly to vanquish; by implication to rule (causatively crown): - make princes, have power, reign. See H5493."]},{"k":"H7787","v":["שׂוּר","śûr","soor","A primitive root (rather identical with H7786 through the idea of reducing to pieces; compare H4883); to saw: - cut."]},{"k":"H7788","v":["שׁוּר","shûr","shoor","A primitive root; properly to turn, that is, travel about (as a harlot or a merchant): - go, sing. See also H7891."]},{"k":"H7789","v":["שׁוּר","shûr","shoor","A primitive root (rather identical with H7788 through the idea of going round for inspection); to spy out, that is, (generally) survey, (for evil) lurk for, (for good) care for: - behold, lay wait, look, observe, perceive, regard, see."]},{"k":"H7790","v":["שׁוּר","shûr","shoor","From H7889; a foe (as lying in wait): - enemy."]},{"k":"H7791","v":["שׁוּר","shûr","shoor","From H7788; a wall (as going about): - wall."]},{"k":"H7792","v":["שׁוּר","shûr","shoor","(Chaldee); corresponding to H7791: - wall."]},{"k":"H7793","v":["שׁוּר","shûr","shoor","The same as H7791; Shur, a region of the Desert: - Shur."]},{"k":"H7794","v":["שׁוֹר","shôr","shore","From H7788; a bullock (as a traveller). wall used by mistake for H7791: - bull (-ock), cow, ox, wall [by mistake for H7791]."]},{"k":"H7795","v":["שׂוֹרָה","śôrâh","so-raw'","From H7786 in the primitive sense of H5493; properly a ring, that is, (by analogy) a row (adverbially): - principal."]},{"k":"H7796","v":["שׂוֹרֵק","śôrêq","so-rake'","The same as H8321; a vine; Sorek, a valley in Palestine: - Sorek."]},{"k":"H7797","v":["שִׂישׂ    שׂוּשׂ","śûś    śı̂yś","soos, sece","A primitive root; to be bright, that is, cheerful: - be glad, X greatly, joy, make mirth, rejoice."]},{"k":"H7798","v":["שַׁוְשָׁא","shavshâ'","shav-shaw'","From H7797; joyful; Shavsha, an Israelite: - Shavsha."]},{"k":"H7799","v":["שׁוֹשַׁנָּה    שֹׁשָׁן    שׁוֹשָׁן    שׁוּשַׁן","shûshan    shôshân    shôshân    shôshannâh","shoo-shan' (2,3) sho-shawn' sho-shan-naw'","From H7797; a lily (from its whiteness), as a flower or architectural ornament; also a (straight) trumpet (from the tubular shape): - lily, Shoshannim."]},{"k":"H7800","v":["שׁוּשַׁן","shûshan","shoo-shan'","The same as H7799; Shushan, a place in Persia: - Shushan."]},{"k":"H7801","v":["שׁוּשַׁנְכִי","shûshankı̂y","shoo-shan-kee'","(Chaldee); of foreign origin; a Shushankite (collectively) or inhabitant of some unknown place in Assyria: - Susanchites."]},{"k":"H7802","v":["שׁוֹשַׁנִּים עֵדוּת    שׁוּשַׁן עֵדוּת","shûshan ‛êdûth    shôshannı̂ym ‛êdûth","shoo-shan' or sho-shan-neem' (ay-dooth')","The second form being plural; from H7799 and H5715; lily (or trumpet) of assemblage; Shushan Eduth or Shoshannim Eduth, the title of a popular song: - Shoshannim-Eduth, Shushan-eduth."]},{"k":"H7803","v":["שׁוּתֶלַח","shûthelach","shoo-theh'-lakh","Probably from H7582 and the same as H8520; crash of breakage; Shuthelach, the name of two Israelites: - Shuthelah."]},{"k":"H7804","v":["שְׁזַב","shezab","shez-ab'","(Chaldee); corresponding to H5800; to leave, that is, (causatively) free: - deliver."]},{"k":"H7805","v":["שָׁזַף","shâzaph","shaw-zaf'","A primitive root; to tan (by sun burning); figuratively (as if by a piercing ray) to scan: - look up, see."]},{"k":"H7806","v":["שָׁזַר","shâzar","shaw-zar'","A primitive root; to twist (a thread of straw): - twine."]},{"k":"H7807","v":["שַׁח","shach","shakh","From H7817; sunk, that is, downcast: -  + humble."]},{"k":"H7808","v":["שֵׂחַ","śêach","say'-akh","From H7879; communion, that is, (reflexively) meditation: - thought."]},{"k":"H7809","v":["שָׁחַד","shâchad","shaw-khad'","A primitive root; to donate, that is, bribe: - hire, give a reward."]},{"k":"H7810","v":["שַׁחַד","shachad","shakh'-ad","From H7809; a donation (venal or redemptive): - bribe (-ry), gift, present, reward."]},{"k":"H7811","v":["שָׂחָה","śâchâh","saw-khaw'","A primitive root; to swim; causatively to inundate: - (make to) swim."]},{"k":"H7812","v":["שָׁחָה","shâchâh","shaw-khaw'","A primitive root; to depress, that is, prostrate (especially reflexively in homage to royalty or God): - bow (self) down, crouch, fall down (flat), humbly beseech, do (make) obeisance, do reverence, make to stoop, worship."]},{"k":"H7813","v":["שָׂחוּ","śâchû","saw'-khoo","From H7811; a pond (for swimming): - to swim in."]},{"k":"H7814","v":["שְׂחֹק    שְׂחוֹק","śechôq    śechôq","sekh-oke', sekh-oke'","From H7832; laughter (in meriment or defiance): - derision, laughter (-ed to scorn, -ing), mocked, sport."]},{"k":"H7815","v":["שְׁחוֹר","shechôr","shekh-ore'","From H7835; dinginess, that is, perhaps soot: - coal."]},{"k":"H7816","v":["שְׁחוּת","shechûth","shekh-ooth'","From H7812; pit: - pit."]},{"k":"H7817","v":["שָׁחַח","shâchach","shaw-khakh'","A primitive root; to sink or depress (reflexively or causatively): - bend, bow (down), bring (cast) down, couch, humble self, be (bring) low, stoop."]},{"k":"H7818","v":["שָׂחַט","śâchaṭ","saw-khat'","A primitive root; to tread out, that is, squeeze (grapes): - press."]},{"k":"H7819","v":["שָׁחַט","shâchaṭ","shaw-khat'","A primitive root; to slaughter (in sacrifice or massacre): - kill, offer, shoot out, slay, slaughter."]},{"k":"H7820","v":["שָׁחַט","shâchaṭ","shaw-khat'","A primitive root (rather identical with H7819 through the idea of striking); to hammer out: - beat."]},{"k":"H7821","v":["שְׁחִיטָה","shechı̂yṭâh","shekh-ee-taw'","From H7819; slaughter: - killing."]},{"k":"H7822","v":["שְׁחִין","shechı̂yn","shekh-een'","From an unused root probably meaning to burn; inflammation, that is, an ulcer: - boil, botch."]},{"k":"H7823","v":["סָחִישׁ    שָׁחִיס","shâchı̂ys    sâchı̂ysh","shaw-khece', saw-kheesh'","From an unused root apparently meaning to sprout; after growth: - (that) which springeth of the same."]},{"k":"H7824","v":["שָׁחִיף","shâchı̂yph","shaw-kheef'","From the same as H7828; a board (as chipped thin): - cieled with."]},{"k":"H7825","v":["שְׁחִית","shechı̂yth","shekh-eeth'","From H7812; a pit fall (literally or figuratively): - destruction, pit."]},{"k":"H7826","v":["שַׁחַל","shachal","shakh'-al","From an unused root probably meaning to roar; a lion (from his characteristic roar): - (fierce) lion."]},{"k":"H7827","v":["שְׁחֵלֶת","shechêleth","shekh-ay'-leth","Apparently from the same as H7826 through some obscure idea, perhaps that of peeling off by concussion of sound; a scale or shell, that is, the aromatic mussel: - onycha."]},{"k":"H7828","v":["שַׁחַף","shachaph","shakh'-af","From an unused root meaning to peel, that is, emaciate; the gull (as thin): - cuckoo."]},{"k":"H7829","v":["שַׁחֶפֶת","shachepheth","shakh-eh'-feth","From the same as H7828; emaciation: - consumption."]},{"k":"H7830","v":["שַׁחַץ","shachats","shakh'-ats","From an unused root apparently meaning to strut; haughtiness (as evinced by the attitude): -    X lion, pride."]},{"k":"H7831","v":["שַׁחֲצוֹם","shachătsôm","shakh-ats-ome'","From the same as H7830; proudly; Shachatsom, a place in Palestine: - Shahazimah [from the margin]."]},{"k":"H7832","v":["שָׂחַק","śâchaq","saw-khak'","A primitive root; to laugh (in pleasure or detraction); by implication to play: - deride, have in derision, laugh, make merry, mock (-er), play, rejoice, (laugh to) scorn, be in (make) sport."]},{"k":"H7833","v":["שָׁחַק","shâchaq","shaw-khak'","A primitive root; to comminute (by trituration or attrition): - beat, wear."]},{"k":"H7834","v":["שַׁחַק","shachaq","shakh'-ak","From H7833; a powder (as beaten small); by analogy a thin vapor; by extension the firmament: - cloud, small dust, heaven, sky."]},{"k":"H7835","v":["שָׁחַר","shâchar","shaw-khar'","A primitive root (rather identical with H7836 through the idea of the duskiness of early dawn); to be dim or dark (in color): - be black."]},{"k":"H7836","v":["שָׁחַר","shâchar","shaw-khar'","A primitive root; properly to dawn, that is, (figuratively) be (up) early at any task (with the implication of earnestness); by extension to search for (with painstaking): - [do something] betimes, enquire early, rise (seek) betimes, seek (diligently) early, in the morning)."]},{"k":"H7837","v":["שַׁחַר","shachar","shakh'-ar","From H7836; dawn (literally, figuratively or adverbially): - day (-spring), early, light, morning, whence riseth."]},{"k":"H7838","v":["שָׁחוֹר    שָׁחֹר","shâchôr    shâchôr","shaw-khore', shaw-khore'","From H7835; properly dusky, but also (absolutely) jetty: - black."]},{"k":"H7839","v":["שַׁחֲרוּת","shachărûth","shakh-ar-ooth'","From H7836; a dawning, that is, (figuratively) juvenescence: - youth."]},{"k":"H7840","v":["שְׁחַרְחֹרֶת","shecharchôreth","shekh-ar-kho'-reth","From H7835; swarthy: - black."]},{"k":"H7841","v":["שְׁחַרְיָה","shecharyâh","shekh-ar-yaw'","From H7836 and H3050; Jah has sought; Shecharjah, an Israelite: - Shehariah."]},{"k":"H7842","v":["שַׁחֲרַיִם","shachărayim","shakh-ar-ah'-yim","Dual of H7837; double dawn; Shacharajim, an Israelite: - Shaharaim."]},{"k":"H7843","v":["שָׁחַת","shâchath","shaw-khath'","A primitive root; to decay, that is, (causatively) ruin (literally or figuratively): - batter, cast off, corrupt (-er, thing), destroy (-er, -uction), lose, mar, perish, spill, spoiler, X utterly, waste (-r)."]},{"k":"H7844","v":["שְׁחַת","shechath","shekh-ath'","(Chaldee); corresponding to H7843: - corrupt, fault."]},{"k":"H7845","v":["שַׁחַת","shachath","shakh'-ath","From H7743; a pit (especially as a trap); figuratively destruction: - corruption, destruction, ditch, grave, pit."]},{"k":"H7846","v":["סֵט    שֵׂט","śêṭ    sêṭ","sayte, sayt","From H7750; a departure from right, that is, sin: - revolter, that turn aside."]},{"k":"H7847","v":["שָׂטָה","śâṭâh","saw-taw'","A primitive root; to deviate from duty: - decline, go aside, turn."]},{"k":"H7848","v":["שִׁטִּים    שִׁטָּה","shiṭṭâh    shiṭṭı̂ym","shit-taw', shit-teem'","Feminine of a derivative (the second form being only in the plural, meaning the sticks of wood) from the same as H7850; the acacia (from its scourging thorns): - shittah, shittim. See also H1029."]},{"k":"H7849","v":["שָׁטַח","shâṭach","shaw-takh'","A primitive root; to expand: - all abroad, enlarge, spread, stretch out."]},{"k":"H7850","v":["שֹׁטֵט","shôṭêṭ","sho-tate'","Active participle of an otherwise unused root meaning (properly to pierce; but only as a denominative from H7752) to flog; a goad: - scourge."]},{"k":"H7851","v":["שִׁטִּים","shiṭṭı̂ym","shit-teem'","The same as the plural of H7848; acacia trees; Shittim, a place East of the Jordan: - Shittim."]},{"k":"H7852","v":["שָׂטַם","śâṭam","saw-tam'","A primitive root; properly to lurk for, that is, persecute: - hate, oppose self against."]},{"k":"H7853","v":["שָׂטַן","śâṭan","saw-tan'","A primitive root; to attack, (figuratively) accuse: - (be an) adversary, resist."]},{"k":"H7854","v":["שָׂטָן","śâṭân","saw-tawn'","From H7853; an opponent; especially (with the article prefixed) Satan, the arch enemy of good: - adversary, Satan, withstand."]},{"k":"H7855","v":["שִׂטְנָה","śiṭnâh","sit-naw'","From H7853; opposition (by letter): - accusation."]},{"k":"H7856","v":["שִׂטְנָה","śiṭnâh","sit-naw'","The same as H7855; Sitnah, the name of a well in Palestine: - Sitnah."]},{"k":"H7857","v":["שָׁטַף","shâṭaph","shaw-taf'","A primitive root; to gush; by implication to inundate, cleanse; by analogy to gallop, conquer: - drown, (over-) flow (-whelm), rinse, run, rush, (throughly) wash (away)."]},{"k":"H7858","v":["שֵׁטֶף    שֶׁטֶף","sheṭeph    shêṭeph","sheh'-tef, shay'-tef","From H7857; a deluge (literally or figuratively): - flood, outrageous, overflowing."]},{"k":"H7859","v":["שְׁטַר","sheṭar","shet-ar'","(Chaldee); of uncertain derivation; a side: - a side."]},{"k":"H7860","v":["שֹׁטֵר","shôṭêr","sho-tare'","Active participle of an otherwise unused root probably meaning to write; properly a scribe, that is, (by analogy or implication) an official superintendent or magistrate: - officer, overseer, ruler."]},{"k":"H7861","v":["שִׁטְרַי","shiṭray","shit-rah'ee","From the same as H7860; magisterial; Shitrai, an Israelite: - Shitrai."]},{"k":"H7862","v":["שַׁי","shay","shah'ee","Probably from H7737; a gift (as available): - present."]},{"k":"H7863","v":["שִׂיא","śı̂y'","see","From the same as H7721 by permutation; elevation: - excellency."]},{"k":"H7864","v":["שְׁיָא","sheyâ'","sheh-yaw'","For H7724; Sheja, an Israelite: - Sheva [from the margin]."]},{"k":"H7865","v":["שִׂיאֹן","śı̂y'ôn","see-ohn'","From H7863; peak; Sion, the summit of Mt. Hermon: - Sion."]},{"k":"H7866","v":["שִׁיאוֹן","shı̂y'ôn","shee-ohn'","From the same as H7722; ruin; Shijon, a place in Palestine: - Shihon."]},{"k":"H7867","v":["שִׂיב","śı̂yb","seeb","A primitive root; properly to become aged, that is, (by implication) to grow gray: - (be) grayheaded."]},{"k":"H7868","v":["שִׂיב","śı̂yb","seeb","(Chaldee); corresponding to H7867: - elder."]},{"k":"H7869","v":["שֵׂיב","śêyb","sabe","From H7867; old age: - age."]},{"k":"H7870","v":["שִׁיבָה","shı̂ybâh","shee-baw'","By permutation from H7725; a return (of property): - captivity."]},{"k":"H7871","v":["שִׁיבָה","shı̂ybâh","shee-baw'","From H3427; residence: - while . . . lay."]},{"k":"H7872","v":["שֵׂיבָה","śêybâh","say-baw'","Feminine of H7869; old age: - (be) gray (grey, hoar, -y) hairs (head, -ed), old age."]},{"k":"H7873","v":["שִׂיג","śı̂yg","seeg","From H7734; a withdrawl (into a private place): - pursuing."]},{"k":"H7874","v":["שִׂיד","śı̂yd","seed","A primitive root probably meaning to boil up (compare H7736); used only as denominative from H7875; to plaster: - plaister."]},{"k":"H7875","v":["שִׂיד","śı̂yd","seed","From H7874; lime (as boiling when slacked): - lime, plaister."]},{"k":"H7876","v":["שָׁיָה","shâyâh","shaw-yaw'","A primitive root; to keep in memory: - be unmindful. [Render Deu_32:18, “A Rock bore thee, thou must recollect; and (yet) thou hast forgotten,” etc.]"]},{"k":"H7877","v":["שִׁיזָא","shı̂yzâ'","shee-zaw'","Of unknown derivation; Shiza, an Israelite: - Shiza."]},{"k":"H7878","v":["שִׂיחַ","śı̂yach","see'-akh","A primitive root; to ponder, that is, (by implication) converse (with oneself, and hence aloud) or (transitively) utter: - commune, complain, declare, meditate, muse, pray, speak, talk (with)."]},{"k":"H7879","v":["שִׂיחַ","śı̂yach","see'-akh","From H7878; a contemplation; by implication an utterance: - babbling, communication, complaint, meditation, prayer, talk."]},{"k":"H7880","v":["שִׂיחַ","śı̂yach","see'-akh","From H7878; a shoot (as if uttered or put forth), that is, (generically) shrubbery: - bush, plant, shrub."]},{"k":"H7881","v":["שִׂיחָה","śı̂ychâh","see-khaw'","Feminine of H7879; reflection; by extension devotion: - meditation, prayer."]},{"k":"H7882","v":["שִׁיחָה","shı̂ychâh","shee-khaw'","From H7745; a pit fall: - pit."]},{"k":"H7883","v":["שִׁחֹר    שִׁחוֹר    שִׁיחוֹר","shı̂ychôr    shichôr    shichôr","shee-khore', shee-khore', shee-khore'","Probably from H7835; dark, that is, turbid; Shichor, a stream of Egypt: - Shihor, Sihor."]},{"k":"H7884","v":["שִׁיחוֹר לִבְנָת","shı̂ychôr libenâth","shee-khore' lib-nawth'","From the same as H7883 and H3835; darkish whiteness; Shichor Libnath, a stream of Palestine: - Shihor-libnath."]},{"k":"H7885","v":["שַׁיִט","shayiṭ","shah'-yit","From H7751; an oar; also (compare H7752) a scourge (figuratively): - oar, scourge."]},{"k":"H7886","v":["שִׁילֹה","shı̂ylôh","shee-lo'","From H7951; tranquil; Shiloh, an epithet of the Messiah: - Shiloh."]},{"k":"H7887","v":["שִׁלוֹ    שִׁילוֹ    שִׁלֹה    שִׁילֹה","shı̂ylôh    shilôh    shı̂ylô    shilô","(1,2,3 & 4) shee-lo'","From the same as H7886; Shiloh, a place in Palestine: - Shiloh."]},{"k":"H7888","v":["שִׁלֹנִי    שִׁילֹנִי    שִׁילוֹנִי","shı̂ylônı̂y    shı̂ylônı̂y    shilônı̂y","(1,2 & 3) shee-lo-nee'","From H7887; a Shilonite or inhabitant of Shiloh: - Shilonite."]},{"k":"H7889","v":["שִׁימוֹן","shı̂ymôn","shee-mone'","Apparently for H3452; desert; Shimon, an Israelite: - Shimon."]},{"k":"H7890","v":["שַׁיִן","shayin","shah'-yin","From an unused root meaning to urinate; urine: - piss."]},{"k":"H7891","v":["שׁוּר    שִׁיר","shı̂yr    shûr","sheer, shoor","The second form being the original form, used in (1Sa_18:6); a primitive root (rather identical with H7788 through the idea of strolling minstrelsy); to sing: - behold [by mistake for H7789], sing (-er, -ing man, -ing woman)."]},{"k":"H7892","v":["שִׁירָה    שִׁיר","shı̂yr    shı̂yrâh","sheer, shee-raw'","The second form being feminine; from H7891; a song; abstractly singing: - musical (-ick), X sing (-er, -ing), song."]},{"k":"H7893","v":["שַׁיִשׁ","shayish","shah'-yish","From an unused root meaning to bleach, that is, whiten; white, that is, marble: - marble. See H8336."]},{"k":"H7894","v":["שִׁישָׁא","shı̂yshâ'","shee-shaw'","From the same as H7893; whiteness; Shisha, an Israelite: - Shisha."]},{"k":"H7895","v":["שׁוּשַׁק    שִׁישַׁק","shı̂yshaq    shûshaq","shee-shak', shoo-shak'","Of Egyptian derivation; Shishak, an Egyptian king: - Shishak."]},{"k":"H7896","v":["שִׁית","shı̂yth","sheeth","A primitive root; to place (in a very wide application): - apply, appoint, array, bring, consider, lay (up), let alone, X look, make, mark, put (on), + regard, set, shew, be stayed, X take."]},{"k":"H7897","v":["שִׁית","shı̂yth","sheeth","From H7896; a dress (as put on): - attire."]},{"k":"H7898","v":["שַׁיִת","shayith","shah'-yith","From H7896; scrub or trash, that is, wild growth of weeds or briers (as if put on the field): - thorns."]},{"k":"H7899","v":["שֵׂךְ","śêk","sake","From H5526 in the sense of H7753; a brier (as of a hedge): - prick."]},{"k":"H7900","v":["שׂךְ","śôk","soke","From H5526 in the sense of H7753; a booth (as interlaced): - tabernacle."]},{"k":"H7901","v":["שָׁכַב","shâkab","shaw-kab'","A primitive root; to lie down (for rest, sexual connection, decease or any other purpose): -    X at all, cast down, ([over-]) lay (self) (down), (make to) lie (down, down to sleep, still, with), lodge, ravish, take rest, sleep, stay."]},{"k":"H7902","v":["שְׁכָבָה","shekâbâh","shek-aw-baw'","From H7901; a lying down (of dew, or for the sexual act): -    X carnally, copulation, X lay, seed."]},{"k":"H7903","v":["שֶׁכֹבֶת","shekôbeth","shek-o'-beth","From H7901; a (sexual) lying with: -    X lie."]},{"k":"H7904","v":["שָׁכָה","shâkâh","shaw-kaw'","A primitive root; to roam (through lust). in the morning is by mistake for H7925: - in the morning [by mistake for H7925]."]},{"k":"H7905","v":["שֻׂכָּה","śûkkâh","sook-kaw'","Feminine of H7900 in the sense of H7899; a dart (as pointed like a thorn): - barbed iron."]},{"k":"H7906","v":["שֵׂכוּ","śêkû","say'-koo","From an unused root apparently mean to surmount; an observatory (with the article); Seku, a place in Palestine: - Sechu."]},{"k":"H7907","v":["שֶׂכְוִי","śekvı̂y","sek-vee'","From the same as H7906; observant, that is, (concretely) the mind: - heart."]},{"k":"H7908","v":["שְׁכוֹל","shekôl","shek-ole'","Infinitive of H7921; bereavement: - loss of children, spoiling."]},{"k":"H7909","v":["שַׁכֻּל    שַׁכּוּל","shakkûl    shakkûl","shak-kool', shak-kool'","From H7921; bereaved: - barren, bereaved (robbed) of children (whelps)."]},{"k":"H7910","v":["שִׁכֹּר    שִׁכּוֹר","shikkôr    shikkôr","shik-kore', shik-kore'","From H7937; intoxicated, as a state or a habit: - drunk (-ard, -en, -en man)."]},{"k":"H7911","v":["שָׁכֵחַ    שָׁכַח","shâkach    shâkêach","shaw-kakh', shaw-kay'-akh","A primitive root; to mislay, that is, to be oblivious of, from want of memory or attention: -    X at all, (cause to) forget."]},{"k":"H7912","v":["שְׁכַח","shekach","shek-akh'","(Chaldee); corresponding to H7911 through the idea of disclosure of a covered or forgotten thing; to discover (literally or figuratively): - find."]},{"k":"H7913","v":["שָׁכֵחַ","shâkêach","shaw-kay'-akh","From H7911; oblivious: - forget."]},{"k":"H7914","v":["שְׂכִיָּה","śekı̂yâh","sek-ee-yaw'","Feminine from the same as H7906; a conspicuous object: - picture."]},{"k":"H7915","v":["שַׂכִּין","śakkı̂yn","sak-keen'","Intensive perhaps from the same as H7906 in the sense of H7753; a knife (as pointed or edged): - knife."]},{"k":"H7916","v":["שָׂכִיר","śâkı̂yr","saw-keer'","From H7936; a man at wages by the day or year: - hired (man, servant), hireling."]},{"k":"H7917","v":["שְׂכִירָה","śekı̂yrâh","sek-ee-raw'","Feminine of H7916; a hiring: - that is hired."]},{"k":"H7918","v":["שָׁכַךְ","shâkak","shaw-kak'","A primitive root; to weave (that is, lay) a trap; figuratively (ghrough the idea of secreting) to allay (passions; physically abate a flood): - appease, assuage, make to cease, pacify, set."]},{"k":"H7919","v":["שָׂכַל","śâkal","saw-kal'","A primitive root; to be (causeatively make or act) circumspect and hence intelligent: - consider, expert, instruct, prosper, (deal) prudent (-ly), (give) skill (-ful), have good success, teach, (have, make to) understand (-ing), wisdom, (be, behave self, consider, make) wise (-ly), guide wittingly."]},{"k":"H7920","v":["שְׂכַל","śekal","sek-al'","(Chaldee); corresponding to H7919: - consider."]},{"k":"H7921","v":["שָׁכֹל","shâkôl","shaw-kole'","A primitive root; properly to miscarry, that is, suffer abortion; by analogy to bereave (literally or figuratively): - bereave (of children), barren, cast calf (fruit, young), be (make) childless, deprive, destroy, X expect, lose children, miscarry, rob of children, spoil."]},{"k":"H7922","v":["שֵׂכֶל    שֶׂכֶל","śekel    śêkel","seh'-kel, say'-kel","From H7919; intelligence; by implication success: - discretion, knowledge, policy, prudence, sense, understanding, wisdom, wise."]},{"k":"H7923","v":["שִׁכֻּלִים","shikkûlı̂ym","shik-koo-leem'","Plural from H7921; childlessness (by continued bereavements): - to have after loss of others."]},{"k":"H7924","v":["שָׂכְלְתָנוּ","śoklethânû","sok-leth-aw-noo'","(Chaldee); from H7920; intelligence: - understanding."]},{"k":"H7925","v":["שָׁכַם","shâkam","shaw-kam'","A primitive root; properly to incline (the shoulder to a burden); but used only as denominative from H7926; literally to load up (on the back of man or beast), that is, to start early in the morning: - (arise, be up, get [oneself] up, rise up) early (betimes), morning."]},{"k":"H7926","v":["שְׁכֶם","shekem","shek-em'","From H7925; the neck (between the shoulders) as the place of burdens; figuratively the spur of a hill: - back, X consent, portion, shoulder."]},{"k":"H7927","v":["שְׁכֶם","shekem","shek-em'","The same as H7926; ridge; Shekem, a place in Palestine: - Shechem."]},{"k":"H7928","v":["שֶׁכֶם","shekem","sheh'-kem","From H7926; Shekem, the name of a Hivite and two Israelites: - Shechem."]},{"k":"H7929","v":["שִׁכְמָה","shikmâh","shik-maw'","Feminine of H7926; the shoulder bone: - shoulder blade."]},{"k":"H7930","v":["שִׁכְמִי","shikmı̂y","shik-mee'","Patronymic from H7928; a Shikmite (collectively), or descendant of Shekem: - Shichemites."]},{"k":"H7931","v":["שָׁכַן","shâkan","shaw-kan'","A primitive root (apparently akin (by transmutation) to H7901 through the idea of lodging; compare H5531 and H7925); to reside or permanently stay (literally or figuratively): - abide, continue, (cause to, make to) dwell (-er), have habitation, inhabit, lay, place, (cause to) remain, rest, set (up)."]},{"k":"H7932","v":["שְׁכַן","shekan","shek-an'","(Chaldee); corresponding to H7931: - cause to dwell, have habitation."]},{"k":"H7933","v":["שֶׁכֶן","sheken","sheh'-ken","From H7931; a residence: - habitation."]},{"k":"H7934","v":["שָׁכֵן","shâkên","shaw-kane'","From H7931; a resident; by extension a fellow citizen: - inhabitant, neighbour, nigh."]},{"k":"H7935","v":["שְׁכַנְיָהוּ    שְׁכַנְיָה","shekanyâh    shekanyâhû","shek-an-yaw', shek-an-yaw'-hoo","From H7931 and H3050; Jah has dwelt; Shekanjah, the name of nine Israelites: - Shecaniah, Shechaniah."]},{"k":"H7936","v":["סָכַר    שָׂכַר","śâkar    sâkar","saw-kar', saw-kar'","The second form by permutation and used in Ezr_4:5; a primitive root (apparently akin (by prosthesis) to H3739 through the idea of temporary purchase; compare H7937); to hire: - earn wages, hire (out self), reward, X surely."]},{"k":"H7937","v":["שָׁכַר","shâkar","shaw-kar'","A primitive root; to become tipsy; in a qualified sense, to satiate with a stimulating drink or (figuratively) influence. (Superlative of H8248.): - (be filled with) drink (abundantly), (be, make) drunk (-en), be merry. [Superlative of H8248.]"]},{"k":"H7938","v":["שֶׂכֶר","śeker","seh'-ker","From H7936; wages: - reward, sluices."]},{"k":"H7939","v":["שָׂכָר","śâkâr","saw-kawr'","From H7986; payment of contract; concretely salary, fare, maintenance; by implication compensation, benefit: - hire, price, reward [-ed], wages, worth."]},{"k":"H7940","v":["שָׂכָר","śâkâr","saw-kawr'","The same as H7939; recompense; Sakar, the name of two Israelites: - Sacar."]},{"k":"H7941","v":["שֵׁכָר","shêkâr","shay-kawr'","From H7937; an intoxicant, that is, intensely alcoholic liquor: - strong drink, + drunkard, strong wine."]},{"k":"H7942","v":["שִׁכְּרוֹן","shikkerôn","shik-ker-one'","For H7943; drunkenness; Shikkeron, a place in Palestine: - Shicron."]},{"k":"H7943","v":["שִׁכָּרוֹן","shikkârôn","shik-kaw-rone'","From H7937; intoxication: - (be) drunken (-ness)."]},{"k":"H7944","v":["שַׁל","shal","shal","From H7952 abbreviated; a fault: - error."]},{"k":"H7945","v":["שֶׁל","shel","shel","For the relative H834; used with prepositional prefix, and often followed by some pronoun affixed; on account of, what soever, which soever: - cause, sake."]},{"k":"H7946","v":["שַׁלְאֲנָן","shal'ănân","shal-an-awn'","For H7600; tranquil: - being at ease."]},{"k":"H7947","v":["שָׁלַב","shâlab","shaw-lab'","A primitive root; to space off; intensively (evenly) to make equidistant: - equally distant, set in order."]},{"k":"H7948","v":["שָׁלָב","shâlâb","shaw-lawb'","From H7947; a spacer or raised interval, that is, the stile in a frame or panel: - ledge."]},{"k":"H7949","v":["שָׁלַג","shâlag","shaw-lag'","A primitive root; properly meaning to be white; used only as denominative from H7950; to be snow white (with the linen clothing of the slain): - be as snow."]},{"k":"H7950","v":["שֶׁלֶג","sheleg","sheh'-leg","From H7949; snow (probably from its whiteness): - snow (-y)."]},{"k":"H7951","v":["שָׁלַו    שָׁלָה","shâlâh    shâlav","shaw-law', shaw-lav'","The second form being used in Job_3:26; a primitive root; to be tranquil, that is, secure or successful: - be happy, prosper, be in safety."]},{"k":"H7952","v":["שָׁלָה","shâlâh","shaw-law'","A primitive root (probably rather identical with H7953 through the idea of educing); to mislead: - deceive, be negligent."]},{"k":"H7953","v":["שָׁלָה","shâlâh","shaw-law'","A primitive root (rather cognate (by contraction) to the base of H5394, H7997 and their congeners through the idea of extracting); to draw out or off, that is, remove (the soul by death): - take away."]},{"k":"H7954","v":["שְׁלָה","shelâh","shel-aw'","(Chaldee); corresponding to H7951; to be secure: - at rest."]},{"k":"H7955","v":["שָׁלָה","shâlâh","shaw-law'","(Chaldee); from a root corresponding to H7952; a wrong: - thing amiss."]},{"k":"H7956","v":["שֵׁלָה","shêlâh","shay-law'","The same as H7596 (shortened); request; Shelah, the name of a postdiluvian patriarch and of an Israelite: - Shelah."]},{"k":"H7957","v":["שַׁלְהֶבֶת","shalhebeth","shal-heh'-beth","From the same as H3851 with sibilant prefixed; a flare of fire: - (flaming) flame."]},{"k":"H7958","v":["שְׂלָיו    שְׂלָו","śelâv    śelâyv","sel-awv', sel-awv'","By orthographical variation from H7951 through the idea of sluggishness; the quail collectively (as slow in flight from its weight): - quails."]},{"k":"H7959","v":["שֶׁלֶו","shelev","sheh'-lev","From H7951; security: - prosperity."]},{"k":"H7960","v":["שָׁלוּת    שָׁלוּ","shâlû    shâlûth","shaw-loo', shaw-looth'","(Chaldee); from the same as H7955; a fault: - error, X fail, thing amiss."]},{"k":"H7961","v":["שְׁלֵוָה    שָׁלֵיו    שָׁלֵו","shâlêv    shâlêyv    shelêvâh","shaw-lave', shaw-lave', shel-ay-vaw'","From H7951; tranquil; (in a bad sense) careless; abstractly security: - (being) at ease, peaceable, (in) prosper (-ity), quiet (-ness), wealthy."]},{"k":"H7962","v":["שַׁלְוָה","shalvâh","shal-vaw'","From H7951; security (genuine or false): - abundance, peace (-ably), prosperity, quietness."]},{"k":"H7963","v":["שְׁלֵוָה","shelêvâh","shel-ay-vaw'","(Chaldee); corresponding to H7962; safety: - tranquility. See also H7961."]},{"k":"H7964","v":["שִׁלֻּחַ    שִׁלּוּחַ","shillûach    shillûach","shil-loo'-akh, shil-loo'-akh","From H7971; (only in plural) a dismissal, that is, (of a wife) divorce (especially the document); also (of a daughter) dower: - presents, have sent back."]},{"k":"H7965","v":["שָׁלֹם    שָׁלוֹם","shâlôm    shâlôm","shaw-lome', shaw-lome'","From H7999; safe, that is, (figuratively) well, happy, friendly; also (abstractly) welfare, that is, health, prosperity, peace: -    X do, familiar, X fare, favour, + friend, X greet, (good) health, (X perfect, such as be at) peace (-able, -ably), prosper (-ity, -ous), rest, safe (-ly), salute, welfare, (X all is, be) well, X wholly."]},{"k":"H7966","v":["שִׁלֻּם    שִׁלּוּם","shillûm    shillûm","shil-loom', shil-loom'","From H7999; a requital, that is, (secure) retribution, (venal) a fee: - recompense, reward."]},{"k":"H7967","v":["שַׁלֻּם    שַׁלּוּם","shallûm    shallûm","shal-loom', shal-loom'","The same as H7966; Shallum, the name of fourteen Israelites: - Shallum."]},{"k":"H7968","v":["שַׁלּוּן","shalûn","shal-loon'","Probably for H7967; Shallun, an Israelite: - Shallum."]},{"k":"H7969","v":["שְׁלֹשָׁה    שְׁלוֹשָׁה    שָׁלֹשׁ    שָׁלוֹשׁ","shâlôsh    shâlôsh    shelôshâh    shelôshâh","(1,2) shaw-loshe', (3,4) shel-o-shaw'","The last two forms being masculine; a primitive number; three; occasionally (ordinal) third, or (multiplicative) thrice: -    + fork, + often [-times], third, thir [-teen, -teenth], three, + thrice. Compare H7991."]},{"k":"H7970","v":["שְׁלֹשִׁים    שְׁלוֹשִׁים","shelôshı̂ym    shelôshı̂ym","shel-o-sheem', shel-o-sheem'","Multiple of H7969; thirty; or (ordinal) thirtieth: -    thirty, thirtieth. Compare H7991."]},{"k":"H7971","v":["שָׁלַח","shâlach","shaw-lakh'","A primitive root; to send away, for, or out (in a great variety of applications): -    X any wise, appoint, bring (on the way), cast (away, out), conduct, X earnestly, forsake, give (up), grow long, lay, leave, let depart (down, go, loose), push away, put (away, forth, in, out), reach forth, send (away, forth, out), set, shoot (forth, out), sow, spread, stretch forth (out)."]},{"k":"H7972","v":["שְׁלַח","shelach","shel-akh'","(Chaldee); corresponding to H7971: - put, send."]},{"k":"H7973","v":["שֶׁלַח","shelach","sheh'-lakh","From H7971; a missile of attack, that is, spear; also (figuratively) a shoot of growth, that is, branch: - dart, plant, X put off, sword, weapon."]},{"k":"H7974","v":["שֶׁלַח","shelach","sheh'-lakh","The same as H7973; Shelach, a postdiluvian patriarch: - Salah, Shelah. Compare H7975."]},{"k":"H7975","v":["שֶׁלַח    שִׁלֹּחַ","shillôach    shelach","shee-lo'-akh, sheh'-lakh","The second form is in imitation of H7974, used in Neh_3:15; from H7971; rill; Shiloach, a fountain of Jerusalem: - Shiloah, Siloah."]},{"k":"H7976","v":["שִׁלֻּחָה","shillûchâh","shil-loo-kahw'","Feminine of H7964; a shoot: - branch."]},{"k":"H7977","v":["שִׁלְחִי","shilchı̂y","shil-khee'","From H7973; missive, that is, armed; Shilchi, an Israelite: - Shilhi."]},{"k":"H7978","v":["שִׁלְחִים","shilchı̂ym","shil-kheem'","Plural of H7973; javelins or sprouts; Shilchim, a place in Palestine: - Shilhim."]},{"k":"H7979","v":["שֻׁלְחָן","shûlchân","shool-khawn'","From H7971; a table (as spread out); by implication a meal: - table."]},{"k":"H7980","v":["שָׁלַט","shâlaṭ","shaw-lat'","A primitive root; to dominate, that is, govern; by implication to permit: - (bear, have) rule, have dominion, give (have) power."]},{"k":"H7981","v":["שְׁלֵט","shelêṭ","shel-ate'","(Chaldee); corresponding to H7980: - have the mastery, have power, bear rule, be (make) ruler."]},{"k":"H7982","v":["שֶׁלֶט","sheleṭ","sheh'-let","From H7980; probably a shield (as controlling, that is, protecting the person): - shield."]},{"k":"H7983","v":["שִׁלְטוֹן","shilṭôn","shil-tone'","From H7980; a potentate: - power."]},{"k":"H7984","v":["שִׁלְטֹן    שִׁלְטוֹן","shilṭôn    shilṭôn","shil-tone', shil-tone'","(Chaldee); corresponding to H7983: - ruler."]},{"k":"H7985","v":["שָׁלְטָן","sholṭân","shol-tawn'","(Chaldee); from H7981; empire (abstractly or concretely.): - dominion."]},{"k":"H7986","v":["שַׁלֶּטֶת","shalleṭeth","shal-leh'-teth","Feminine from H7980; a vixen: - imperious."]},{"k":"H7987","v":["שְׁלִי","shelı̂y","shel-ee'","From H7951; privacy: -  + quietly."]},{"k":"H7988","v":["שִׁלְיָה","shilyâh","shil-yaw'","Feminine from H7953; a foetus or babe (as extruded in birth): - young one."]},{"k":"H7989","v":["שַׁלִּיט","shallı̂yṭ","shal-leet'","From H7980; potent; concretely a prince or warrior: - governor, mighty, that hath power, ruler."]},{"k":"H7990","v":["שַׁלִּיט","shallı̂yṭ","shal-leet'","(Chaldee); corresponding to H7989; mighty; abstractly permission; concretely a premier: - captain, be lawful, rule (-r)."]},{"k":"H7991","v":["שָׁלֹשׁ    שָׁלוֹשׁ    שָׁלִישׁ","shâlı̂ysh    shâlôsh    shâlôsh","shaw-leesh', shaw-loshe', shaw-loshe'","(The second form used in 1Ch_11:11-12, 1Ch_11:18; the third form used in 2Sa_23:13); from H7969; a triple, that is, (as a musical instrument) a triangle (or perhaps rather three stringed lute); also (as an indefinitely great quantity) a three fold measure (perhaps a treble ephah); also (as an officer) a general of the third rank (upward, that is, the highest): - captain, instrument of musick, (great) lord, (great) measure, prince, three [from the margin]."]},{"k":"H7992","v":["שְׁלִישִׁי","shelı̂yshı̂y","shel-ee-shee'","Ordinal from H7969; third; feminine a third (part); by extension a third (day, year or time); specifically a third story cell): - third (part, rank, time), three (years old)."]},{"k":"H7993","v":["שָׁלַךְ","shâlak","shaw-lak'","A primitive root; to throw out, down or away (literally or figuratively): - adventure, cast (away, down, forth, off, out), hurl, pluck, throw."]},{"k":"H7994","v":["שָׁלָךְ","shâlâk","shaw-lawk'","From H7993; bird of prey, usually thought to be the pelican (from casting itself into the sea): - cormorant."]},{"k":"H7995","v":["שַׁלֶּכֶת","shalleketh","shal-leh'-keth","From H7993; a felling (of trees): - when cast."]},{"k":"H7996","v":["שַׁלֶּכֶת","shalleketh","shal-leh'-keth","The same as H7995; Shalleketh, a gate in Jerusalem: - Shalleketh."]},{"k":"H7997","v":["שָׁלַל","shâlal","shaw-lal'","A primitive root; to drop or strip; by implication to plunder: - let fall, make self a prey, X of purpose, (make a, [take]) spoil."]},{"k":"H7998","v":["שָׁלָל","shâlâl","shaw-lawl'","From H7997; booty: - prey, spoil."]},{"k":"H7999","v":["שָׁלַם","shâlam","shaw-lam'","A primitive root; to be safe (in mind, body or estate); figuratively to be (causatively make) completed; by implication to be friendly; by extension to reciprocate (in various applications): - make amends, (make an) end, finish, full, give again, make good, (re-) pay (again), (make) (to) (be at) peace (-able), that is perfect, perform, (make) prosper (-ous), recompense, render, requite, make restitution, restore, reward, X surely."]},{"k":"H8000","v":["שְׁלַם","shelam","shel-am'","(Chaldee); corresponding to H7999; to complete, to restore: - deliver, finish."]},{"k":"H8001","v":["שְׁלָם","shelâm","shel-awm'","(Chaldee); corresponding to H7965; prosperity: - peace."]},{"k":"H8002","v":["שֶׁלֶם","shelem","sheh'-lem","From H7999; properly requital, that is, a (voluntary) sacrifice in thanks: - peace offering."]},{"k":"H8003","v":["שָׁלֵם","shâlêm","shaw-lame'","From H7999; complete (literally or figuratively); especially friendly. (shalem used by mistake for a name.): - full, just, made ready, peaceable, perfect (-ed), quiet, Shalem [by mistake for a name], whole."]},{"k":"H8004","v":["שָׁלֵם","shâlêm","shaw-lame'","The same as H8003; peaceful; Shalem, an early name of Jerusalem: - Salem."]},{"k":"H8005","v":["שִׁלֵּם","shillêm","shil-lame'","From H7999; requital: - recompense."]},{"k":"H8006","v":["שִׁלֵּם","shillêm","shil-lame'","The same as H8005; Shillem, an Israelite: - Shillem."]},{"k":"H8007","v":["שַׂלְמָא","śalmâ'","sal-maw'","Probably for H8008; clothing; Salma, the name of two Israelites: - Salma."]},{"k":"H8008","v":["שַׂלְמָה","śalmâh","sal-maw'","Transposition for H8071; a dress ;: - clothes, garment, raiment."]},{"k":"H8009","v":["שַׂלְמָה","śalmâh","sal-maw'","The same as H8008; clothing; Salmah, an Israelite: - Salmon. Compare H8012."]},{"k":"H8010","v":["שְׁלֹמֹה","shelômôh","shel-o-mo'","From H7965; peaceful; Shelomoh, David’s successor: - Solomon."]},{"k":"H8011","v":["שִׁלֻּמָה","shillûmâh","shil-loo-maw'","Feminine of H7966; retribution: - reward."]},{"k":"H8012","v":["שַׂלְמוֹן","śalmôn","sal-mone'","From H8008; investiture; Salmon, an Israelite: - Salmon. Compare H8009."]},{"k":"H8013","v":["שְׁלֹמוֹת","shelômôth","shel-o-moth'","Feminine plural of H7965; pacifications; Shelomoth, the name of two Israelites: - Shelomith [from the margin], Shelomoth. Compare H8019."]},{"k":"H8014","v":["שַׂלְמַי","śalmay","sal-mah'ee","From H8008; clothed; Salmai, an Israelite: - Shalmai."]},{"k":"H8015","v":["שְׁלֹמִי","shelômı̂y","shel-o-mee'","From H7965; peaceable; Shelomi, an Israelite: - Shelomi."]},{"k":"H8016","v":["שִׁלֵּמִי","shillêmı̂y","shil-lay-mee","Patronymic from H8006; a Shilemite (collectively) or descendant of Shillem: - Shillemites."]},{"k":"H8017","v":["שְׁלֻמִיאֵל","shelûmı̂y'êl","shel-oo-mee-ale'","From H7965 and H410; peace of God; Shelumiel, an Israelite: - Shelumiel."]},{"k":"H8018","v":["שֶׁלֶמְיָהוּ    שֶׁלֶמְיָה","shelemyâh    shelemyâhû","shel-em-yaw', shel-em-yaw'-hoo","From H8002 and H3050; thank offering of Jah; Shelemjah, the name of nine Israelites: - Shelemiah."]},{"k":"H8019","v":["שְׁלוֹמִית    שְׁלֹמִית","shelômı̂yth    shelômı̂yth","shel-o-meeth', shel-o-meeth'","The second form being used in Ezr_8:10; from H7965; peaceableness; Shelomith, the name of five Israelites and three Israelitesses: - Shelomith."]},{"k":"H8020","v":["שַׁלְמַן","shalman","shal-man'","Of foreign derivation; Shalman, a king apparently of Assyria: - Shalman. Compare H8022."]},{"k":"H8021","v":["שַׁלְמֹן","shalmôn","shal-mone'","From H7999; a bribe: - reward."]},{"k":"H8022","v":["שַׁלְמַנְאֶסֶר","shalman'eser","shal-man-eh'-ser","Of foreign derivation; Shalmaneser, an Assyrian king: - Shalmaneser. Compare H8020."]},{"k":"H8023","v":["שִׁלֹנִי","shilônı̂y","shee-lo-nee'","The same as H7888; Shiloni, an Israelite: - Shiloni."]},{"k":"H8024","v":["שֵׁלָנִי","shêlânı̂y","shay-law-nee'","From H7956; a Shelanite (collectively), or descendant of Shelah: - Shelanites."]},{"k":"H8025","v":["שָׁלַף","shâlaph","shaw-laf'","A primitive root; to pull out, up or off: - draw (off), grow up, pluck off."]},{"k":"H8026","v":["שֶׁלֶף","sheleph","sheh'-lef","From H8025; extract; sheleph, a son of Jokthan: - Sheleph."]},{"k":"H8027","v":["שָׁלַשׁ","shâlash","shaw-lash'","A primitive root perhaps originally to intensify, that is, treble; but apparently used only as denominative from H7969, to be (causatively make) triplicate (by restoration, in portions, strands, days or years): - do the third time, (divide into, stay) three (days, -fold, parts, years old)."]},{"k":"H8028","v":["שֶׁלֶשׁ","shelesh","sheh'-lesh","From H8027; triplet; Shelesh, an Israelite: - Shelesh."]},{"k":"H8029","v":["שִׁלֵּשׁ","shillêsh","shil-laysh'","From H8027; a descendant of the third degree, that is, great grandchild: - third [generation]."]},{"k":"H8030","v":["שִׁלְשָׁה","shilshâh","shil-shaw'","Feminine from the same as H8028; triplication; Shilshah, an Israelite: - Shilshah."]},{"k":"H8031","v":["שָׁלִשָׁה","shâlishâh","shaw-lee-shaw'","Feminine from H8027; trebled land; Shalishah, a place in Palestine: - Shalisha."]},{"k":"H8032","v":["שִׁלְשֹׁם    שִׁלְשׁוֹם","shilshôm    shilshôm","shil-shome', shil-shome'","From the same as H8028; trebly, that is, (in time) day before yesterday: -  + before (that time, -time), excellent things [from the margin], + heretofore, three days, + time past."]},{"k":"H8033","v":["שָׁם","shâm","shawm","A primitive particle (rather from the relative H834); there (transfered to time) then; often thither, or thence: - in it, + thence, there (-in, + of, + out), + thither, + whither."]},{"k":"H8034","v":["שֵׁם","shêm","shame","A primitive word (perhaps rather from H7760 through the idea of definite and conspicuous position; compare H8064); an appellation, as a mark or memorial of individuality; by implication honor, authority, character: -  + base, [in-] fame [-ous], name (-d), renown, report."]},{"k":"H8035","v":["שֵׁם","shêm","shame","The same as H8034; name; Shem, a son of Noah (often including his posterity): - Sem, Shem."]},{"k":"H8036","v":["שֻׁם","shûm","shoom","(Chaldee); shoom; corresponding to H8034: - name."]},{"k":"H8037","v":["שַׁמָּא","shammâ'","sham-maw'","From H8074; desolation; Shamma, an Israelite: - Shamma."]},{"k":"H8038","v":["שֶׁמְאֵבֶר","shem'êber","shem-ay'-ber","Apparently from H8034 and H83; name of pinion, that is, illustrious; Shemeber, a king of Zeboim: - Shem-eber."]},{"k":"H8039","v":["שִׁמְאָה","shim'âh","shim-aw'","Perhaps for H8093; Shimah, an Israelite: - Shimah. Compare H8043."]},{"k":"H8040","v":["שְׂמאֹל    שְׂמֹאול","śemô'l    śem'ôl","sem-ole', sem-ole'","A primitive word (rather perhaps from the same as H8071 (by insertion of the 'aleph) through the idea of wrapping up); properly dark (as enveloped), that is, the north; hence (by orientation) the left hand: - left (hand, side)."]},{"k":"H8041","v":["שָׂמַאל","śâma'l","saw-mal'","A primitive root (rather denominative from H8040); to use the left hand or pass in that direction: - (go, turn) (on the, to the) left."]},{"k":"H8042","v":["שְׂמָאלִי","śemâ'lı̂y","sem-aw-lee'","From H8040; situated on the left side: - left."]},{"k":"H8043","v":["שִׁמְאָם","shim'âm","shim-awm'","For H8039 (compare H38); Shimam, an Israelite: - Shimeam."]},{"k":"H8044","v":["שַׁמְגַּר","shamgar","sham-gar'","Of uncertain derivation; Shamgar, an Israelite judge: - Shamgar."]},{"k":"H8045","v":["שָׁמַד","shâmad","shaw-mad'","A primitive root; to desolate: - destroy (-uction), bring to nought, overthrow, perish, pluck down, X utterly."]},{"k":"H8046","v":["שְׁמַד","shemad","shem-ad'","(Chaldee); corresponding to H8045: - consume."]},{"k":"H8047","v":["שַׁמָּה","shammâh","sham-maw'","From H8074; ruin; by implication consternation: - astonishment, desolate (-ion), waste, wonderful thing."]},{"k":"H8048","v":["שַׁמָּה","shammâh","sham-maw'","The same as H8047; Shammah, the name of an Edomite and four Israelites: - Shammah."]},{"k":"H8049","v":["שַׁמְהוּת","shamhûth","sham-hooth'","For H8048; desolation; Shamhuth, an Israelite: - Shamhuth."]},{"k":"H8050","v":["שְׁמוּאֵל","shemû'êl","shem-oo-ale'","From the passive participle of H8085 and H410; heard of God; Shemuel, the name of three Israelites: - Samuel, Shemuel."]},{"k":"H8051","v":["שַׁמּוּעַ","shammûa‛","sham-moo'-ah","From H8074; renowned; Shammua, the name of four Israelites: - Shammua, Shammuah."]},{"k":"H8052","v":["שְׁמוּעָה","shemû‛âh","shem-oo-aw'","Feminine passive participle of H8074; something heard, that is, an announcement: - bruit, doctrine, fame, mentioned, news, report, rumor, tidings."]},{"k":"H8053","v":["שָׁמוּר","shâmûr","shaw-moor'","Passive participle of H8103; observed; Shamur, an Israelite: - Shamir [from the margin]."]},{"k":"H8054","v":["שַׁמּוֹת","shammôth","sham-moth'","Plural of H8047; ruins; Shammoth, an Israelite: - Shamoth."]},{"k":"H8055","v":["שָׂמַח","śâmach","saw-makh'","A primitive root; probably to brighten up, that is, (figuratively) be (causatively make) blithe or gleesome: - cheer up, be (make) glad, (have make) joy (-ful), be (make) merry, (cause to, make to) rejoice, X very."]},{"k":"H8056","v":["שָׂמֵחַ","śâmêach","saw-may'-akh","From H8055; blithe or gleeful: - (be) glad, joyful, (making) merry ([-hearted]), rejoice (-ing)."]},{"k":"H8057","v":["שִׂמְחָה","śimchâh","sim-khaw'","From H8056; blithesomeness or glee, (religious or festival): -    X exceeding (-ly), gladness, joy (-fulness), mirth, pleasure, rejoice (-ing)."]},{"k":"H8058","v":["שָׁמַט","shâmaṭ","shaw-mat'","A primitive root; to fling down; incipiently to jostle; figuratively to let alone, desist, remit: - discontinue, overthrow, release, let rest, shake, stumble, throw down."]},{"k":"H8059","v":["שְׁמִטָּה","shemiṭṭâh","shem-it-taw'","From H8058; remission (of debt) or suspension (of labor): - release."]},{"k":"H8060","v":["שַׁמַּי","shammay","sham-mah'ee","From H8073; destructive; Shammai, the name of three Israelites: - Shammai."]},{"k":"H8061","v":["שְׁמִידָע","shemı̂ydâ‛","shem-ee-daw'","Apparently from H8034 and H3045; name of knowing; Shemida, an Israelite: - Shemida, Shemidah."]},{"k":"H8062","v":["שְׁמִידָעִי","shemı̂ydâ‛ı̂y","shem-ee-daw-ee'","Patronymic from H8061; a Shemidaite (collectively) or descendant of Shemida: - Shemidaites."]},{"k":"H8063","v":["שְׂמִיכָה","śemı̂ykâh","sem-ee-kaw'","From H5564; a rug (as sustaining the Oriental sitter): - mantle."]},{"k":"H8064","v":["שָׁמֶה    שָׁמַיִם","shâmayim    shâmeh","shaw-mah'-yim, shaw-meh'","The second form being dual of an unused singular; from an unused root meaning to be lofty; the sky (as aloft; the dual perhaps alluding to the visible arch in which the clouds move, as well as to the higher ether where the celestial bodies revolve): - air, X astrologer, heaven (-s)."]},{"k":"H8065","v":["שָׁמַיִן","shâmayin","shaw-mah'-yin","(Chaldee); corresponding to H8064: - heaven."]},{"k":"H8066","v":["שְׁמִינִי","shemı̂ynı̂y","shem-ee-nee'","From H8083; eight: - eight."]},{"k":"H8067","v":["שְׁמִינִית","shemı̂ynı̂yth","shem-ee-neeth'","Feminine of H8066; probably an eight stringed lyre: - Sheminith."]},{"k":"H8068","v":["שָׁמִיר","shâmı̂yr","shaw-meer'","From H8104 in the original sense of pricking; a thorn; also (from its keenness for scratching) a gem, probably the diamond: - adamant (stone), brier, diamond."]},{"k":"H8069","v":["שָׁמִיר","shâmı̂yr","shaw-meer'","The same as H8068; Shamir, the name of two places in Palestine: - Shamir. Compare H8053."]},{"k":"H8070","v":["שְׁמָרִימוֹת    שְׁמִירָמוֹת","shemı̂yrâmôth    shemârı̂ymôth","shem-ee-raw-moth', shem-aw-ree-moth'","Probably from H8034 and plural of H7413; name of heights; Shemiramoth, the name of two Israelites: - Shemiramoth."]},{"k":"H8071","v":["שִׂמְלָה","śimlâh","sim-law'","Perhaps by permutation for the feminine of H5566 (through the idea of a cover assuming the shape of the object beneath); a dress, especially a mantle: - apparel, cloth (-es, -ing), garment, raiment. Compare H8008."]},{"k":"H8072","v":["שַׂמְלָה","śamlâh","sam-law'","Probably for the same se H8071; Samlah, an Edomite: - Samlah."]},{"k":"H8073","v":["שַׁמְלַי","shamlay","sham-lah'ee","From H8014; Shamlai, one of the Nethinim: - Shalmai [from the margin]."]},{"k":"H8074","v":["שָׁמֵם","shâmêm","shaw-mame'","A primitive root; to stun (or intransitively grow numb), that is, devastate or (figuratively) stupefy (both usually in a passive sense): - make amazed, be astonied, (be an) astonish (-ment), (be, bring into, unto, lay, lie, make) desolate (-ion, places), be destitute, destroy (self), (lay, lie, make) waste, wonder."]},{"k":"H8075","v":["שְׁמַם","shemam","shem-am'","(Chaldee); corresponding to H8074: - be astonied."]},{"k":"H8076","v":["שָׁמֵם","shâmêm","shaw-mame'","From H8074; ruined: - desolate."]},{"k":"H8077","v":["שִׁמָמָה    שְׁמָמָה","shemâmâh    shimâmâh","shem-aw-maw', shee-mam-aw'","Feminine of H8076; devastation; figuratively astonishment: - (laid, X most) desolate (-ion), waste."]},{"k":"H8078","v":["שִׁמָּמוֹן","shimmâmôn","shim-maw-mone'","From H8074; stupefaction: - astonishment."]},{"k":"H8079","v":["שְׂמָמִית","śemâmı̂yth","sem-aw-meeth'","Probably from H8074 (in the sense of poisoning); a lizard (from the superstition of its noxiousness): - spider."]},{"k":"H8080","v":["שָׁמַן","shâman","shaw-man'","A primitive root; to shine, that is, (by analogy) be (causatively make) oily or gross: - become (make, wax) fat."]},{"k":"H8081","v":["שֶׁמֶן","shemen","sheh'-men","From H8080; grease, especially liquid (as from the olive, often perfumed); figuratively richness: - anointing, X fat (things), X fruitful, oil ([-ed]), ointment, olive, + pine."]},{"k":"H8082","v":["שָׁמֵן","shâmên","shaw-mane'","From H8080; greasy, that is, gross; figuratively rich: - fat, lusty, plenteous."]},{"k":"H8083","v":["שְׁמוֹנָה    שְׁמֹנָה    שְׁמוֹנֶה    שְׁמֹנֶה","shemôneh    shemôneh    shemônâh    shemônâh","(1,2) shem-o-neh', (3,4) shem-o-naw'","Apparently from H8082 through the idea of plumpness; a cardinal number, eight (as if a surplus above the “perfect” seven); also (as ordinal) eighth: - eight ([-een, -eenth]), eighth."]},{"k":"H8084","v":["שְׁמוֹנִים    שְׁמֹנִים","shemônı̂ym    shemônı̂ym","shem-o-neem', shem-o-neem'","Multiplicative from H8083; eighty; also eightieth: - eighty (-ieth), fourscore."]},{"k":"H8085","v":["שָׁמַע","shâma‛","shaw-mah'","A primitive root; to hear intelligently (often with implication of attention, obedience, etc.; causatively to tell, etc.): -    X attentively, call (gather) together, X carefully, X certainly, consent, consider, be content, declare, X diligently, discern, give ear, (cause to, let, make to) hear (-ken, tell), X indeed, listen, make (a) noise, (be) obedient, obey, perceive, (make a) proclaim (-ation), publish, regard, report, shew (forth), (make a) sound, X surely, tell, understand, whosoever [heareth], witness."]},{"k":"H8086","v":["שְׁמַע","shema‛","shem-ah'","(Chaldee); corresponding to H8085: - hear, obey."]},{"k":"H8087","v":["שֶׁמַע","shema‛","sheh'-mah","For the same as H8088; Shema, the name of a place in Palestine and of four Israelites: - Shema."]},{"k":"H8088","v":["שֵׁמַע","shêma‛","shay'-mah","From H8085; something heard, that is, a sound, rumor, announcement; abstractly audience: - bruit, fame, hear (-ing), loud, report, speech, tidings."]},{"k":"H8089","v":["שֹׁמַע","shôma‛","sho'-mah","From H8085; a report: - fame."]},{"k":"H8090","v":["שְׁמָע","shemâ‛","shem-aw'","For H8087; Shema, a place in Palestine: - Shema."]},{"k":"H8091","v":["שָׁמָע","shâmâ‛","shaw-maw'","From H8085; obedient; Shama, an Israelite: - Shama."]},{"k":"H8092","v":["שִׁמְעָא","shim‛â'","shim-aw'","For H8093; Shima, the name of four Israelites: - Shimea, Shimei, Shamma."]},{"k":"H8093","v":["שִׁמְעָה","shim‛âh","shim-aw'","Feminine of H8088; annunciation; Shimah, an Israelite: - Shimeah."]},{"k":"H8094","v":["שְׁמָעָה","shemâ‛âh","shem-aw-aw'","For H8093; Shemaah, an Israelite: - Shemaah."]},{"k":"H8095","v":["שִׁמְעוֹן","shim‛ôn","shim-one'","From H8085; hearing; Shimon, one of Jacob’s sons, also the tribe descendant from him: - Simeon."]},{"k":"H8096","v":["שִׁמְעִי","shim‛ı̂y","shim-ee'","From H8088; famous; Shimi, the name of twenty Israelites: - Shimeah [from the margin], Shimei, Shimhi, Shimi."]},{"k":"H8097","v":["שִׁמְעִי","shim‛ı̂y","shim-ee'","Patronymic from H8096; a Shimite (collectively) or descendant of Shimi: - of Shimi, Shimites."]},{"k":"H8098","v":["שְׁמַעְיָהוּ    שְׁמַעְיָה","shema‛yâh    shema‛yâhû","shem-aw-yaw', shem-aw-yaw'-hoo","From H8085 and H3050; Jah has heard; Shemajah, the name of twenty five Israelites: - Shemaiah."]},{"k":"H8099","v":["שִׁמְעֹנִי","shim‛ônı̂y","shim-o-nee'","Patronymic from H8095; a Shimonite (collectively) or descendant of Shimon: - tribe of Simeon, Simeonites."]},{"k":"H8100","v":["שִׁמְעָת","shim‛âth","shim-awth'","Feminine of H8088; annunciation; Shimath, an Ammonitess: - Shimath."]},{"k":"H8101","v":["שִׁמְעָתִי","shim‛âthı̂y","shim-aw-thee'","Patronymic from H8093; a Shimathite (collectively) or descendant of Shimah: - Shimeathites."]},{"k":"H8102","v":["שֶׁמֶץ","shemets","sheh'-mets","From an unused root meaning to emit a sound; an inkling: - a little."]},{"k":"H8103","v":["שִׁמְצָה","shimtsâh","shim-tsaw'","Feminine of H8102; scornful whispering (of hostile spectators): - shame."]},{"k":"H8104","v":["שָׁמַר","shâmar","shaw-mar'","A primitive root; properly to hedge about (as with thorns), that is, guard; generally to protect, attend to, etc.: - beware, be circumspect, take heed (to self), keep (-er, self), mark, look narrowly, observe, preserve, regard, reserve, save (self), sure, (that lay) wait (for), watch (-man)."]},{"k":"H8105","v":["שֶׁמֶר","shemer","sheh'-mer","From H8104; something preserved, that is, the settlings (plural only) of wine: - dregs, (wines on the) lees."]},{"k":"H8106","v":["שֶׁמֶר","shemer","sheh'-mer","The same as H8105; Shemer, the name of three Israelites: - Shamer, Shemer."]},{"k":"H8107","v":["שִׁמֻּר","shimmûr","shim-moor'","From H8104; an observance: -  X be (much) observed."]},{"k":"H8108","v":["שָׁמְרָה","shomrâh","shom-raw'","Feminine of an unused noun from H8104 meaning a guard; watchfulness: - watch."]},{"k":"H8109","v":["שְׁמֻרָה","shemûrâh","shem-oo-raw'","Feminine of passive participle of H8104; something guarded, that is, an eye lid: - waking."]},{"k":"H8110","v":["שִׁמְרוֹן","shimrôn","shim-rone'","From H8105 in its original sense; guardianship; Shimron, the name of an Israelite and of a place in Palestine: - Shimron."]},{"k":"H8111","v":["שֹׁמְרוֹן","shômerôn","sho-mer-one'","From the active participle of H8104; watch station; Shomeron, a place in Palestine: - Samaria."]},{"k":"H8112","v":["שִׁמְרוֹן מְראוֹן","shimrôn mer'ôn","shim-rone' mer-one'","From H8110 and a derivative of H4754; guard of lashing; Shimron Meron, a place in Palestine: - Shimon-meron."]},{"k":"H8113","v":["שִׁמְרִי","shimrı̂y","shim-ree'","From H8105 in its original sense; watchful; Shimri, the name of four Israelites: - Shimri."]},{"k":"H8114","v":["שְׁמַרְיָהוּ    שְׁמַרְיָה","shemaryâh    shemaryâhû","shem-ar-yaw', shem-ar-yaw'-hoo","From H8104 and H3050; Jah has guarded; Shemarjah, the name of four Israelites: - Shamariah, Shemariah."]},{"k":"H8115","v":["שָׁמְרַיִן","shomrayin","shom-rah'-yin","(Chaldee); corresponding to H8111; Shomrain, a place in Palestine: - Samaria."]},{"k":"H8116","v":["שִׁמְרִית","shimrı̂yth","shim-reeth'","Feminine of H8113; female guard; Shimrith, a Moabitess: - Shimrith."]},{"k":"H8117","v":["שִׁמְרֹנִי","shimrônı̂y","shim-ro-nee'","Patronymic from H8110; a Shimronite (collectively) or descendant of Shimron: - Shimronites."]},{"k":"H8118","v":["שֹׁמְרֹנִי","shômerônı̂y","sho-mer-o-nee'","Patrial from H8111; a Shomeronite (collectively) or inhabitant of Shomeron: - Samaritans."]},{"k":"H8119","v":["שִׁמְרָת","shimrâth","shim-rawth'","From H8104; guardship; Shimrath, an Israelite: - Shimrath."]},{"k":"H8120","v":["שְׁמַשׁ","shemash","shem-ash'","(Chaldee); corresponding to the root of H8121 through the idea of activity implied in daylight; to serve: - minister."]},{"k":"H8121","v":["שֶׁמֶשׁ","shemesh","sheh'-mesh","From an unused root meaning to be brilliant; the sun; by implication the east; figuratively a ray, that is, (architecturally) a notched battlement: -    + east side (-ward), sun ([rising]), + west (-ward), window. See also H1053."]},{"k":"H8122","v":["שֶׁמֶשׁ","shemesh","sheh'-mesh","(Chaldee); corresponding to H8121; to sun: - sun."]},{"k":"H8123","v":["שִׁמְשׁוֹן","shimshôn","shim-shone'","From H8121; sunlight; Shimshon, an Israelite: - Samson."]},{"k":"H8124","v":["שִׁמְשַׁי","shimshay","shim-shah'ee","(Chaldee); from H8122; sunny; Shimshai, a Samaritan: - Shimshai."]},{"k":"H8125","v":["שַׁמְשְׁרַי","shamsheray","sham-sher-ah'ee","Apparently from H8121; sunlike; Shamsherai, an Israelite: - Shamsherai."]},{"k":"H8126","v":["שֻׁמָתִי","shûmâthı̂y","shoo-maw-thee'","Patronymic from an unused name from H7762 probably meaning garlic smell; a Shumathite (collectively) or descendant of Shumah: - Shumathites."]},{"k":"H8127","v":["שֵׁן","shên","shane'","From H8150; a tooth (as sharp); specifically (for H8143) ivory; figuratively a cliff: - crag, X forefront, ivory, X sharp, tooth."]},{"k":"H8128","v":["שֵׁן","shên","shane","(Chaldee); corresponding to H8127; a tooth: - tooth."]},{"k":"H8129","v":["שֵׁן","shên","shane","The same as H8127; crag; Shen, a palce in Palestine: - Shen."]},{"k":"H8130","v":["שָׂנֵא","śânê'","saw-nay'","A primitive root; to hate (personally): - enemy, foe, (be) hate (-ful, -r), odious, X utterly."]},{"k":"H8131","v":["שְׂנֵא","śenê'","sen-ay'","(Chaldee); corresponding to H8130: - hate."]},{"k":"H8132","v":["שָׁנָא","shânâ'","shaw-naw'","A primitive root; to alter: - change."]},{"k":"H8133","v":["שְׁנָא","shenâ'","shen-aw'","(Chaldee); corresponding to H8132: - alter, change, (be) diverse."]},{"k":"H8134","v":["שִׁנְאָב","shin'âb","shin-awb'","Probably from H8132 and H1; a father has turned; Shinab, a Canaanite: - Shinab."]},{"k":"H8135","v":["שִׂנְאָה","śin'âh","sin-aw'","From H8130; hate: -  + exceedingly, hate (-ful, -red)."]},{"k":"H8136","v":["שִׁנְאָן","shin'ân","shin-awn'","From H8132; change, that is, repetition: -  X angels."]},{"k":"H8137","v":["שֶׁנְאַצַּר","shen'atstsar","shen-ats-tsar'","Apparently of Babylonian origin; Shenatstsar, an Israelite: - Senazar."]},{"k":"H8138","v":["שָׁנָה","shânâh","shaw-naw'","A primitive root; to fold, that is, duplicate (literally or figuratively (); by implication to transmute (transitively or intransitively): - do (speak, strike) again, alter, double, (be given to) change, disguise, (be) diverse, pervert, prefer, repeat, return, do the second time."]},{"k":"H8139","v":["שְׁנָה","shenâh","shen-aw'","(Chaldee); corresponding to H8142: - sleep."]},{"k":"H8140","v":["שְׁנָה","shenâh","shen-aw'","(Chaldee); corresponding to H8141: - year."]},{"k":"H8141","v":["שָׁנָה    שָׁנֶה","shâneh    shânâh","shaw-neh', shaw-naw'","(The first form being in plural only, the second form being feminine); from H8138; a year (as a revolution of time): -    + whole age, X long, + old, year (X -ly)."]},{"k":"H8142","v":["שֵׁנָא    שֵׁנָה","shênâh    shênâ'","shay-naw', shay-naw'","(The second form used in Psa_127:2); from H3462; sleep: - sleep."]},{"k":"H8143","v":["שֶׁנְהַבִּים","shenhabbı̂ym","shen-hab-beem'","From H8127 and the plural apparently of a foreign word; probably tooth of elephants, that is, ivory tusk: - ivory."]},{"k":"H8144","v":["שָׁנִי","shânı̂y","shaw-nee'","Of uncertain derivation; crimson, properly the insect or its color, also stuff dyed with it: - crimson, scarlet (thread)."]},{"k":"H8145","v":["שֵׁנִי","shênı̂y","shay-nee'","From H8138; properly double, that is, second; also adverbially again: - again, either [of them], (an-) other, second (time)."]},{"k":"H8146","v":["שָׂנִיא","śânı̂y'","saw-nee'","From H8130; hated: - hated."]},{"k":"H8147","v":["שְׁתַּיִם    שְׁנַיִם","shenayim    shettayim","shen-ah'-yim, shet-tah'-yim","(The first form being dual of H8145; the second form being feminine); two; also (as ordinal) twofold: - both, couple, double, second, twain, + twelfth, + twelve, + twenty (sixscore) thousand, twice, two."]},{"k":"H8148","v":["שְׁנִינָה","shenı̂ynâh","shen-ee-naw'","From H8150; something pointed, that is, a gibe: - byword, taunt."]},{"k":"H8149","v":["שְׂנִיר    שְׁנִיר","shenı̂yr    śenı̂yr","shen-eer', sen-eer'","From an unused root meaning to be pointed; peak; Shenir or Senir, a summit of Lebanon: - Senir, Shenir."]},{"k":"H8150","v":["שָׁנַן","shânan","shaw-nan'","A primitive root; to point (transitively or intransitively); intensively to pierce; figuratively to inculcate: - prick, sharp (-en), teach diligently, whet."]},{"k":"H8151","v":["שָׁנַס","shânas","shaw-nas'","A primitive root; to compress (with a belt): - gird up."]},{"k":"H8152","v":["שִׁנְעָר","shin‛âr","shin-awr'","Probably of foreign derivation; Shinar, a plain in Babylon: - Shinar."]},{"k":"H8153","v":["שְׁנָת","shenâth","shen-awth'","From H3462; sleep: - sleep."]},{"k":"H8154","v":["שָׁשָׂה    שָׁסָה","shâsâh    shâśâh","shaw-saw', shaw-saw'","(The second form being used in Isa_10:13); a primitive root; to plunder: - destroyer, rob, spoil (-er)."]},{"k":"H8155","v":["שָׁסַס","shâsas","shaw-sas'","A primitive root; to plunder: - rifle, spoil."]},{"k":"H8156","v":["שָׁסַע","shâsa‛","shaw-sah'","A primitive root; to split or tear; figuratively to upbraid: - cleave, (be) cloven ([footed]), rend, stay."]},{"k":"H8157","v":["שֶׁסַע","shesa‛","sheh'-sah","From H8156; a fissure: - cleft, clovenfooted."]},{"k":"H8158","v":["שָׁסַף","shâsaph","shaw-saf'","A primitive root; to cut in pieces, that is, slaughter: - hew in pieces."]},{"k":"H8159","v":["שָׁעָה","shâ‛âh","shaw-aw'","A primitive root; to gaze at or about (properly for help); by implication to inspect, consider, compassionate, be nonplussed (as looking around in amazement) or bewildered: - depart, be dim, be dismayed, look (away), regard, have respect, spare, turn."]},{"k":"H8160","v":["שָׁעָה","shâ‛âh","shaw-aw'","(Chaldee); from a root corresponding to H8159; properly a look, that is, a moment: - hour."]},{"k":"H8161","v":["שַׁעֲטָה","sha‛ăṭâh","shah'-at-aw","Feminine from an unused root meaning to stamp; a clatter (of hoofs): - stamping."]},{"k":"H8162","v":["שַׁעַטְנֵז","sha‛aṭnêz","shah-at-naze'","Probably of foreign derivation; linsey woolsey, that is, cloth of linen and wool carded and spun together: - garment of divers sorts, linen and woollen."]},{"k":"H8163","v":["שָׂעִר    שָׂעִיר","śâ‛ı̂yr    śâ‛ir","saw-eer', saw-eer'","From H8175; shaggy; as noun, a he goat; by analogy a faun: - devil, goat, hairy, kid, rough, satyr."]},{"k":"H8164","v":["שָׂעִיר","śâ‛ı̂yr","saw-eer'","Formed the same as H8163; a shower (as tempestuous): - small rain."]},{"k":"H8165","v":["שֵׂעִיר","śê‛ı̂yr","say-eer'","Formed like H8163; rough; Seir, a mountain of Idumaea and its aboriginal occupants, also one in Palestine: - Seir."]},{"k":"H8166","v":["שְׂעִירָה","śe‛ı̂yrâh","seh-ee-raw'","Feminine of H8163; a she goat: - kid."]},{"k":"H8167","v":["שְׂעִירָה","śe‛ı̂yrâh","seh-ee-raw'","Formed as H8166; roughness; Seirah, a place in Palestine: - Seirath."]},{"k":"H8168","v":["שֹׁעַל","shô‛al","sho'-al","From an unused root meaning to hollow out; the palm; by extension a handful: - handful, hollow of the band."]},{"k":"H8169","v":["שַׁעֲלַבִּין    שַׁעַלְבִים","sha‛albı̂ym    sha‛ălabbı̂yn","shah-al-beem', shah-al-ab-been'","Plural from H7776; fox holes; Shaalbim or Shaalabbin, a place in Palestine: - Shaalabbin, Shaalbim."]},{"k":"H8170","v":["שַׁעַלְבֹנִי","sha‛albônı̂y","shah-al-bo-nee'","Patrial from H8169; a Shaalbonite or inhabitant of Shaalbin: - Shaalbonite."]},{"k":"H8171","v":["שַׁעֲלִים","sha‛ălı̂ym","shah-al-eem'","Plural of H7776; foxes; Shaalim, a place in Palestine: - Shalim."]},{"k":"H8172","v":["שָׁעַן","shâ‛an","shaw-an'","A primitive root; to support one’s self: - lean, lie, rely, rest (on, self), stay."]},{"k":"H8173","v":["שָׁעַע","shâ‛a‛","shaw-ah'","A primitive root; (in a good acceptation) to look upon (with complacency), that is, fondle, please or amuse (self); (in a bad one) to look about (in dismay), that is, stare. (cry out is by confusion with H7768.): - cry (out) [by confusion with H7768], dandle, delight (self), play, shut."]},{"k":"H8174","v":["שַׁעַף","sha‛aph","shah'-af","From H5586; fluctuation; Shaaph, the name of two Israelites: - Shaaph."]},{"k":"H8175","v":["שׂער","śâ‛ar","saw-ar'","A primitive root; to storm; by implication to shiver, that is, fear: - be (horribly) afraid, fear, hurl as a storm, be tempestuous, come like (take away as with) a whirlwind."]},{"k":"H8176","v":["שָׁעַר","shâ‛ar","shaw-ar'","A primitive root; to split or open, that is, (literally, but only as denominative from H8179) to act as gate keeper (see H7778); (figuratively) to estimate: - think."]},{"k":"H8177","v":["שְׂעַר","śe‛ar","seh-ar'","(Chaldee); corresponding to H8181; hair: - hair."]},{"k":"H8178","v":["שַׂעַר","śa‛ar","sah'-ar","From H8175; a tempest; also a terror: - affrighted, X horribly, X sore, storm. See H8181."]},{"k":"H8179","v":["שַׁעַר","sha‛ar","shah'-ar","From H8176 in its original sense; an opening, that is, door or gate: - city, door, gate, port (X -er)."]},{"k":"H8180","v":["שַׁעַר","sha‛ar","shah'-ar","From H8176; a measure (as a section): - [hundred-] fold."]},{"k":"H8181","v":["שַׂעַר    שֵׂעָר","śê‛âr    śa‛ar","say-awr', sah'-ar","(The second form used in Isa_7:20); from H8175 in the sense of dishevelling; hair (as if tossed or bristling): - hair (-y), X rough."]},{"k":"H8182","v":["שֹׁעָר","shô‛âr","sho-awr'","From H8176; harsh or horrid, that is, offensive: - vile."]},{"k":"H8183","v":["שְׂעָרָה","śe‛ârâh","seh-aw-raw'","Feminine of H8178; a hurricane: - storm, tempest."]},{"k":"H8184","v":["שְׂעוֹר    שְׂעֹר    שְׂעוֹרָה    שְׂעֹרָה","śe‛ôrâh    śe‛ôrâh    śe‛ôr    śe‛ôr","(1,2) seh-o-raw', (3,4) seh-ore'","(The feminine form meaning the plant and the masculine form meaning the grain (second form)); from H8175 in the sense of roughness; barley (as villose): - barley."]},{"k":"H8185","v":["שַׂעֲרָה","śa‛ărâh","sah-ar-aw'","Feminine of H8181; hairiness: - hair."]},{"k":"H8186","v":["שַׁעֲרֻרִת    שַׁעֲרִירִיָּה    שַׁעֲרוּרָה","sha‛ărûrâh    sha‛ărı̂yrı̂yâh    sha‛ărûrith","(shah-ar-) oo-raw' ee-ree-yaw' oo-reeth'","Feminine from H8176 in the sense of H8175; something fearful: - horrible thing."]},{"k":"H8187","v":["שְׁעַרְיָה","she‛aryâh","sheh-ar-yaw'","From H8176 and H3050; Jah has stormed; Shearjah, an Israelite: - Sheariah."]},{"k":"H8188","v":["שְׂעֹרִים","śe‛ôrı̂ym","seh-o-reem'","Masculine plural of H8184; barley grains; Seorim, an Israelite: - Seorim."]},{"k":"H8189","v":["שַׁעֲרַיִם","sha‛ărayim","shah-ar-ah'-yim","Dual of H8179; double gates; Shaarajim, a place in Palestine: - Shaaraim."]},{"k":"H8190","v":["שַׁעַשְׁגַּז","sha‛ashgaz","shah-ash-gaz'","Of Persian derivation; Shaashgaz, a eunuch of Xerxes: - Shaashgaz."]},{"k":"H8191","v":["שַׁעְשֻׁעַ","sha‛shûa‛","shah-shoo'-ah","From H8173; enjoyment: - delight, pleasure."]},{"k":"H8192","v":["שָׁפָה","shâphâh","shaw-faw'","A primitive root; to abrade, that is, bare: - high, stick out."]},{"k":"H8193","v":["שֶׂפֶת    שָׂפָה","śâphâh    śepheth","saw-faw', sef-eth'","(The second form is in dual and plural); Probably from H5595 or H8192 through the idea of termination (compare H5490); the lip (as a natural boundary); by implication language; by analogy a margin (of a vessel, water, cloth, etc.): - band, bank, binding, border, brim, brink, edge, language, lip, prating, ([sea-]) shore, side, speech, talk, [vain] words."]},{"k":"H8194","v":["שָׁפָה","shâphâh","shaw-faw'","From H8192 in the sense of clarifying; a cheese (as strained from the whey): - cheese."]},{"k":"H8195","v":["שְׁפִי    שְׁפוֹ","shephô    shephı̂y","shef-o', shef-ee'","From H8192; baldness (compare H8205); Shepho or Shephi, an Idumaean: - Shephi, Shepho."]},{"k":"H8196","v":["שְׁפוּט    שְׁפוֹט","shephôṭ    shephûṭ","shef-ote', shef-oot'","From H8199; a judicial sentence, that is, punishment: - judgment."]},{"k":"H8197","v":["שְׁפוּפָן    שְׁפוּפָם","shephûphâm    shephûphân","shef-oo-fawm', shef-oo-fawn'","From the same as H8207; serpent like; Shephupham or Shephuphan, an Israelite: - Shephuphan, Shupham."]},{"k":"H8198","v":["שִׁפְחָה","shiphchâh","shif-khaw'","Feminine from an unused root meaning to spread out (as a family; see H4940); a female slave (as a member of the household): - (bond-, hand-) maid (-en, -servant), wench, bondwoman, womanservant."]},{"k":"H8199","v":["שָׁפַט","shâphaṭ","shaw-fat'","A primitive root; to judge, that is, pronounce sentence (for or against); by implication to vindicate or punish; by extension to govern; passively to litigate (literally or figuratively): -    + avenge, X that condemn, contend, defend, execute (judgment), (be a) judge (-ment), X needs, plead, reason, rule."]},{"k":"H8200","v":["שְׁפַט","shephaṭ","shef-at'","(Chaldee); corresponding to H8199; to judge: - magistrate."]},{"k":"H8201","v":["שֶׁפֶט","shepheṭ","sheh'-fet","From H8199; a sentence, that is, infliction: - judgment."]},{"k":"H8202","v":["שָׁפָט","shâphâṭ","shaw-fawt'","From H8199; judge; Shaphat, the name of four Israelites: - Shaphat."]},{"k":"H8203","v":["שְׁפַטְיָהוּ    שְׁפַטְיָה","shephaṭyâh    shephaṭyâhû","shef-at-yaw', shef-at-yaw'-hoo","From H8199 and H3050; Jah has judged; Shephatjah, the name of ten Israelites: - Shephatiah."]},{"k":"H8204","v":["שִׁפְטָן","shiphṭân","shif-tawn'","From H8199; judge like; Shiphtan, an Israelite."]},{"k":"H8205","v":["שְׁפִי","shephı̂y","shef-ee'","From H8192; bareness; concretely a bare hill or plain: - high place, stick out."]},{"k":"H8206","v":["שֻׁפִּים","shûppı̂ym","shoop-peem'","Plural of an unused noun from the same as H8207 and meaning the same; serpents; Shuppim, an Israelite: - Shuppim."]},{"k":"H8207","v":["שְׁפִיפֹן","shephı̂yphôn","shef-ee-fone'","From an unused root meaning the same as H7779; a kind of serpent (as snapping), probably the cerastes or horned adder: - adder."]},{"k":"H8208","v":["שָׁפִיר","shâphı̂yr","shaf-eer'","From H8231; beautiful; Shaphir, a place in Palestine: - Saphir."]},{"k":"H8209","v":["שַׁפִּיר","shappı̂yr","shap-peer'","(Chaldee); intensive of a form corresponding to H8208; beautiful: - fair."]},{"k":"H8210","v":["שָׁפַךְ","shâphak","shaw-fak'","A primitive root; to spill forth (blood, a libation, liquid metal; or even a solid, that is, to mound up); also (figuratively) to expend (life, soul, complaint, money, etc.); intensively to sprawl out: - cast (up), gush out, pour (out), shed (-der, out), slip."]},{"k":"H8211","v":["שֶׁפֶךְ","shephek","sheh'-fek","From H8210; an emptying place, for example an ash heap: - are poured out."]},{"k":"H8212","v":["שָׁפְכָה","shophkâh","shof-kaw'","Feminine of a derivative from H8210; a pipe (for pouring forth, for example wine), that is, the penis: - privy member."]},{"k":"H8213","v":["שָׁפֵל","shâphêl","shaw-fale'","A primitive root; to depress or sink (especially figuratively to humiliate, intransitively or transitively): - abase, bring (cast, put) down, debase, humble (self), be (bring, lay, make, put) low (-er)."]},{"k":"H8214","v":["שְׁפַל","shephal","shef-al'","(Chaldee); corresponding to H8213: - abase, humble, put down, subdue."]},{"k":"H8215","v":["שְׁפַל","shephal","shef-al'","(Chaldee); from H8214; low: - basest."]},{"k":"H8216","v":["שֵׁפֶל","shêphel","shay'-fel","From H8213; an humble rank: - low estate (place)."]},{"k":"H8217","v":["שָׁפָל","shâphâl","shaw-fawl'","From H8213; depressed, literally or figuratively: - base (-st), humble, low (-er, -ly)."]},{"k":"H8218","v":["שִׁפְלָה","shiphlâh","shif-law'","Feminine of H8216; depression: - low place."]},{"k":"H8219","v":["שְׁפֵלָה","shephêlâh","shef-ay-law'","From H8213; Lowland, that is, (with the article) the maritime slope of Palestine: - low country, (low) plain, vale (-ley)."]},{"k":"H8220","v":["שִׁפְלוּת","shiphlûth","shif-looth'","From H8213; remissness: - idleness."]},{"k":"H8221","v":["שְׁפָם","shephâm","shef-awm'","Probably from H8192; bare spot; Shepham, a place in or near Palestine: - Shepham."]},{"k":"H8222","v":["שָׂפָם","śâphâm","saw-fawm'","From H8193; the beard (as a lip piece): - beard, (upper) lip."]},{"k":"H8223","v":["שָׁפָם","shâphâm","shaw-fawm'","Formed like H8221; baldly; Shapham, an Israelite: - Shapham."]},{"k":"H8224","v":["שִׂפְמוֹת","śiphmôth","sif-moth'","Feminine plural of H8221; Siphmoth, a place in Palestine: - Siphmoth."]},{"k":"H8225","v":["שִׁפְמִי","shiphmı̂y","shif-mee'","Patrial from H8221; a Shiphmite or inhabitant of Shepham: - Shiphmite."]},{"k":"H8226","v":["שָׂפַן","śâphan","saw-fan'","A primitive root; to conceal (as a valuable): - treasure."]},{"k":"H8227","v":["שָׁפָן","shâphân","shaw-fawn'","From H8226; a species of rock rabbit (from its hiding), that is, probably the hyrax: - coney."]},{"k":"H8228","v":["שֶׁפַע","shepha‛","sheh'-fah","From an unused root meaning to abound; resources: - abundance."]},{"k":"H8229","v":["שִׁפְעָה","shiph‛âh","shif-aw'","Feminine of H8228; copiousness: - abundance, company, multitude."]},{"k":"H8230","v":["שִׁפְעִי","shiph‛ı̂y","shif-ee'","From H8228; copious; Shiphi, an Israelite: - Shiphi."]},{"k":"H8231","v":["שָׁפַר","shâphar","shaw-far'","A primitive root; to glisten, that is, (figuratively) be (causatively make) fair: -  X goodly."]},{"k":"H8232","v":["שְׁפַר","shephar","shef-ar'","(Chaldee); corresponding to H8231; to be beautiful: - be acceptable, please, + think good."]},{"k":"H8233","v":["שֶׁפֶר","shepher","sheh'-fer","From H8231; beauty: -  X goodly."]},{"k":"H8234","v":["שֶׁפֶר","shepher","sheh'-fer","The same as H8233; Shepher, a place in the Desert: - Shapper."]},{"k":"H8235","v":["שִׁפְרָה","shiphrâh","shif-raw'","From H8231; brightness: - garnish."]},{"k":"H8236","v":["שִׁפְרָה","shiphrâh","shif-raw'","The same as H8235; Shiphrah, an Israelitess: - Shiphrah."]},{"k":"H8237","v":["שַׁפְרוּר","shaphrûr","shaf-roor'","From H8231; splendid, that is, a tapestry or canopy: - royal pavilion."]},{"k":"H8238","v":["שְׁפַרְפַר","shepharphar","shef-ar-far'","(Chaldee); from H8231; the dawn (as brilliant with aurora): -    X very early in the morning."]},{"k":"H8239","v":["שָׁפַת","shâphath","shaw-fath'","A primitive root; to locate, that is, (generally) hang on or (figuratively) establish, reduce: - bring, ordain, set on."]},{"k":"H8240","v":["שָׁפָת","shâphâth","shaw-fawth'","From H8239; a (double) stall (for cattle); also a (two pronged) hook (for flaying animals on): - hook, pot."]},{"k":"H8241","v":["שֶׁצֶף","shetseph","sheh'-tsef","From H7857 (for alliteration with H7110); an outburst (of anger): - little."]},{"k":"H8242","v":["שַׂק","śaq","sak","From H8264; properly a mesh (as allowing a liquid to run through), that is, coarse loose cloth or sacking (used in mourning and for bagging); hence a bag (for grain, etc.): - sack (-cloth, -clothes)."]},{"k":"H8243","v":["שָׁק","shâq","shawk","(Chaldee); corresponding to H7785; the leg: - leg."]},{"k":"H8244","v":["שָׂקַד","śâqad","saw-kad'","A primitive root; to fasten: - bind."]},{"k":"H8245","v":["שָׁקַד","shâqad","shaw-kad'","A primitive root; to be alert, that is, sleepless; hence to be on the lookout (whether for good or ill): - hasten, remain, wake, watch (for)."]},{"k":"H8246","v":["שָׁקַד","shâqad","shaw-kad'","A denominative from H8247; to be (intensively make) almond shaped: - make like (unto, after the fashion of) almonds."]},{"k":"H8247","v":["שָׁקֵד","shâqêd","shaw-kade'","From H8245; the almond (tree or nut; as being the earliest in bloom): - almond (tree)."]},{"k":"H8248","v":["שָׁקָה","shâqâh","shaw-kaw'","A primitive root; to quaff, that is, (causatively) to irrigate or furnish a potion to: - cause to (give, give to, let, make to) drink, drown, moisten, water. See H7937, H8354."]},{"k":"H8249","v":["שִׁקֻּו","shiqqûv","shik-koov'","From H8248; (plural collectively) a draught: - drink."]},{"k":"H8250","v":["שִׁקּוּי","shiqqûy","shik-koo'ee","From H8248; a beverage; moisture, that is, (figuratively) refreshment: - drink, marrow."]},{"k":"H8251","v":["שִׁקֻּץ    שִׁקּוּץ","shiqqûts    shiqqûts","shik-koots', shik-koots'","From H8262; disgusting, that is, filthy; especially idolatrous or (concretely) an idol: - abominable filth (idol, -ation), detestable (thing)."]},{"k":"H8252","v":["שָׁקַט","shâqaṭ","shaw-kat'","A primitive root; to repose (usually figuratively): - appease, idleness, (at, be at, be in, give) quiet (-ness), (be at, be in, give, have, take) rest, settle, be still."]},{"k":"H8253","v":["שֶׁקֶט","sheqeṭ","sheh'-ket","From H8252; tranquillity: - quietness."]},{"k":"H8254","v":["שָׁקַל","shâqal","shaw-kal'","A primitive root; to suspend or poise (especially in trade): - pay, receive (-r), spend, X throughly, weigh."]},{"k":"H8255","v":["שֶׁקֶל","sheqel","sheh'-kel","From H8254; probably a weight; used as a commercial standard: - shekel."]},{"k":"H8256","v":["שִׁקְמָה    שָׁקָם","shâqâm    shiqmâh","shaw-kawm', shik-maw'","(The second form is feminine); of uncertain derivation; a sycamore (usually the tree): - sycamore (fruit, tree)."]},{"k":"H8257","v":["שָׁקַע","shâqa‛","shaw-kah'","(Abbreviated in Amo_8:8); a primitive root; to subside; by implication to be overflowed, cease; causatively to abate, subdue: - make deep, let down, drown, quench, sink."]},{"k":"H8258","v":["שְׁקַעְרוּרָה","sheqa‛rûrâh","shek-ah-roo-raw'","From H8257; a depression: - hollow strake."]},{"k":"H8259","v":["שָׁקַף","shâqaph","shaw-kaf'","A primitive root; properly to lean out (of a window), that is, (by implication) peep or gaze (passively be a spectacle): - appear, look (down, forth, out)."]},{"k":"H8260","v":["שֶׁקֶף","sheqeph","sheh'-kef","From H8259; a loophole (for looking out), to admit light and air: - window."]},{"k":"H8261","v":["שָׁקֻף","shâqûph","shaw-koof'","Passive participle of H8259; an embrasure or opening (compare H8260) with bevelled jam: - light, window."]},{"k":"H8262","v":["שָׁקַץ","shâqats","shaw-kats'","A primitive root; to be filthy, that is, (intensively) to loathe, pollute: - abhor, make abominable, have in abomination, detest, X utterly."]},{"k":"H8263","v":["שֶׁקֶץ","sheqets","sheh'-kets","From H8262; filth, that is, (figuratively and specifically) an idolatrous object: - abominable (-tion)."]},{"k":"H8264","v":["שָׁקַק","shâqaq","shaw-kak'","A primitive root; to course (like a beast of prey); by implication to seek greedily: - have appetite, justle one against another, long, range, run (to and fro)."]},{"k":"H8265","v":["שָׂקַר","śâqar","saw-kar'","A primitive root; to ogle, that is, blink coquettishly: - wanton."]},{"k":"H8266","v":["שָׁקַר","shâqar","shaw-kar'","A primitive root; to cheat, that is, be untrue (usually in words): - fail, deal falsely, lie."]},{"k":"H8267","v":["שֶׁקֶר","sheqer","sheh'-ker","From H8266; an untruth; by implication a sham (often adverbially): - without a cause, deceit (-ful), false (-hood, -ly), feignedly, liar, + lie, lying, vain (thing), wrongfully."]},{"k":"H8268","v":["שֹׁקֶת","shôqeth","sho'-keth","From H8248; a trough (for watering): - trough."]},{"k":"H8269","v":["שַׂר","śar","sar","From H8323; a head person (of any rank or class): - captain (that had rule), chief (captain), general, governor, keeper, lord, ([-task-]) master, prince (-ipal), ruler, steward."]},{"k":"H8270","v":["שֹׁר","shôr","shore","From H8324; a string (as twisted (compare H8306)), that is, (specifically) the umbilical cord (also figuratively as the centre of strength): - navel."]},{"k":"H8271","v":["שְׁרֵא","sherê'","sher-ay'","(Chaldee); a root corresponding to that of H8293; to free, separate; figuratively to unravel, commence; by implication (of unloading beasts) to reside: - begin dissolve, dwell, loose."]},{"k":"H8272","v":["שַׁרְאֶצֶר","shar'etser","shar-eh'-tser","Of foreign derivation; Sharetser, the name of an Assyrian and an Israelite: - Sharezer."]},{"k":"H8273","v":["שָׁרָב","shârâb","shaw-rawb'","From an unused root meaning to glare; quivering glow (of the air), especially the mirage: - heat, parched ground."]},{"k":"H8274","v":["שֵׁרֵבְיָה","shêrêbyâh","shay-rayb-yaw'","From H8273 and H3050; Jah has brought heat; Sherebjah, the name of two Israelites: - Sherebiah."]},{"k":"H8275","v":["שַׁרְבִיט","sharbı̂yṭ","shar-beet'","From H7626; a rod of empire: - sceptre."]},{"k":"H8276","v":["שָׂרַג","śârag","saw-rag'","A primitive root; to intwine: - wrap together, wreath."]},{"k":"H8277","v":["שָׂרַד","śârad","saw-rad'","A primitive root; properly to puncture (compare H8279), that is, (figuratively through the idea of slipping out) to escape or survive: - remain."]},{"k":"H8278","v":["שְׂרָד","śerâd","ser-awd'","From H8277; stitching (as pierced with a needle): - service."]},{"k":"H8279","v":["שֶׂרֶד","śered","seh'-red","From H8277; a (carpenter’s) scribing awl (for pricking or scratching measurements): - line."]},{"k":"H8280","v":["שָׂרָה","śârâh","saw-raw'","A primitive root; to prevail: - have power (as a prince)."]},{"k":"H8281","v":["שָׁרָה","shârâh","shaw-raw'","A primitive root; to free: - direct."]},{"k":"H8282","v":["שָׂרָה","śârâh","saw-raw'","Feminine of H8269; a mistress, that is, female noble: - lady, princess, queen."]},{"k":"H8283","v":["שָׂרָה","śârâh","saw-raw'","The same as H8282; Sarah, Abraham’s wife: - Sarah."]},{"k":"H8284","v":["שָׁרָה","shârâh","shaw-raw'","Probably feminine of H7791; a fortification (literally or figuratively). (“sing” is by mistake for H7891.): - sing [by mistake for H7891], wall."]},{"k":"H8285","v":["שֵׁרָה","shêrâh","shay-raw'","From H8324 in its original sense of pressing; a wrist band (as compact or clasping): - bracelet."]},{"k":"H8286","v":["שְׂרוּג","śerûg","ser-oog'","From H8276; tendril; Serug, a postdiluvian patriarch: - Serug."]},{"k":"H8287","v":["שָׁרוּחֶן","shârûchen","shaw-roo-khen'","Probably from H8281 (in the sense of dwelling (compare H8271)) and H2580; abode of pleasure; Sharuchen, a place in Palestine: - Sharuhen."]},{"k":"H8288","v":["שְׂרוֹךְ","śerôk","ser-oke'","From H8308; a thong (as laced or tied): - ([shoe-]) latchet."]},{"k":"H8289","v":["שָׁרוֹן","shârôn","shaw-rone'","Probably abridged from H3474; plain; Sharon, the name of a place in Palestine: - Lasharon, Sharon."]},{"k":"H8290","v":["שָׁרוֹנִי","shârônı̂y","shaw-ro-nee'","Patrial from H8289; a Sharonite or inhabitant of Sharon: - Sharonite."]},{"k":"H8291","v":["שָׂרוּק","śârûq","sar-ook'","Passive participle from the same as H8321; a grapevine: - principal plant. See H8320, H8321."]},{"k":"H8292","v":["שְׁרִיקָה    שְׁרוּקָה","sherûqâh    sherı̂yqâh","sher-oo-kaw', sher-ee-kaw'","(The second form is by permutation); feminine passive participle of H8319; a whistling (in scorn); by analogy a piping: - bleating, hissing."]},{"k":"H8293","v":["שֵׁרוּת","shêrûth","shay-rooth'","From H8281 abbreviated; freedom: - remnant."]},{"k":"H8294","v":["שֶׂרַח","śerach","seh'-rakh","By permutation for H5629; superfluity; Serach, an Israelitess: - Sarah, Serah."]},{"k":"H8295","v":["שָׂרַט","śâraṭ","saw-rat'","A primitive root; to gash: - cut in pieces, make [cuttings] pieces."]},{"k":"H8296","v":["שָׂרֶטֶת    שֶׂרֶט","śereṭ    śâreṭeth","seh'-ret, saw-reh'-teth","From H8295; an incision: - cutting."]},{"k":"H8297","v":["שָׂרַי","śâray","saw-rah'ee","From H8269; dominative; Sarai, the wife of Abraham: - Sarai."]},{"k":"H8298","v":["שָׁרַי","shâray","shaw-rah'ee","Probably from H8324; hostile; Sharay, an Israelite: - Sharai."]},{"k":"H8299","v":["שָׂרִיג","śârı̂yg","saw-reeg'","From H8276; a tendril (as intwining): - branch."]},{"k":"H8300","v":["שָׂרִיד","śârı̂yd","saw-reed'","From H8277; a survivor: -  X alive, left, remain (-ing), remnant, rest."]},{"k":"H8301","v":["שָׂרִיד","śârı̂yd","saw-reed'","The same as H8300; Sarid, a place in Palestine: - Sarid."]},{"k":"H8302","v":["שִׁרְיֹנָה    שִׁרְיָה    שִׁרְיָן    שִׁרְיוֹן","shiryôn    shiryân    shiryâh    shiryônâh","(shir) -yone', -yawn', -yaw', -yo-naw'","From H8281 in the original sense of turning; a corslet (as if twisted): - breastplate, coat of mail, habergeon, harness. See H5030."]},{"k":"H8303","v":["שִׂרְיֹן    שִׁרְיוֹן","shiryôn    śiryôn","shir-yone', sir-yone'","The same as H8304 (that is, sheeted with snow); Shirjon or Sirjon, a peak of the Lebanon: - Sirion."]},{"k":"H8304","v":["שְׂרָיָהוּ    שְׂרָיָה","śerâyâh    śerâyâhû","ser-aw-yaw', ser-aw-yaw'-hoo","From H8280 and H3050; Jah has prevailed; Serajah, the name of nine Israelites: - Seraiah."]},{"k":"H8305","v":["שְׂרִיקָה","śerı̂yqâh","ser-ee-kaw'","From the same as H8321 in the original sense of piercing; hetchelling (or combing flax), that is, (concretely) tow (by extension linen cloth): - fine."]},{"k":"H8306","v":["שָׁרִיר","shârı̂yr","shaw-reer'","From H8324 in the original sense as in H8270 (compare H8326); a cord, that is, (by analogy) sinew: - navel."]},{"k":"H8307","v":["שְׁרִירוּת","sherı̂yrûth","sher-ee-rooth'","From H8324 in the sense of twisted, that is, firm; obstinacy: - imagination, lust."]},{"k":"H8308","v":["שָׂרַךְ","śârak","saw-rak'","A primitive root; to interlace: - traverse."]},{"k":"H8309","v":["שְׁרֵמָה","sherêmâh","sher-ay-maw'","Probably by orthographical error for H7709; a common: - field."]},{"k":"H8310","v":["שַׂרְסְכִים","śarsekı̂ym","sar-seh-keem'","Of foreign derivation; Sarsekim, a Babylonian general: - Sarsechim."]},{"k":"H8311","v":["שָׂרַע","śâra‛","saw-rah'","A primitive root; to prolong, that is, (reflexively) be deformed by excess of members: - stretch out self, (have any) superfluous thing."]},{"k":"H8312","v":["שַׂרְעַף","śar‛aph","sar-af'","For H5587; cogitation: - thought."]},{"k":"H8313","v":["שָׂרַף","śâraph","saw-raf'","A primitive root; to be (causatively set) on fire: - (cause to, make a) burn ([-ing], up), kindle, X utterly."]},{"k":"H8314","v":["שָׂרָף","śârâph","saw-rawf'","From H8313; burning, that is, (figuratively) poisonous (serpent); specifically a saraph or symbolical creature (from their copper color): - fiery (serpent), seraph."]},{"k":"H8315","v":["שָׂרָף","śârâph","saw-rawf'","The same as H8314; Saraph, an Israelite: - Saraph."]},{"k":"H8316","v":["שְׂרֵפָה","śerêphâh","ser-ay-faw'","From H8313; cremation: - burning."]},{"k":"H8317","v":["שָׁרַץ","shârats","shaw-rats'","A primitive root; to wriggle, that is, (by implication) swarm or abound: - breed (bring forth, increase) abundantly (in abundance), creep, move."]},{"k":"H8318","v":["שֶׁרֶץ","sherets","sheh'-rets","From H8317; a swarm, that is, active mass of minute animals: - creep (-ing thing), move (-ing creature)."]},{"k":"H8319","v":["שָׁרַק","shâraq","shaw-rak'","A primitive root; properly to be shrill, that is, to whistle or hiss (as a call or in scorn): - hiss."]},{"k":"H8320","v":["שָׂרֻק","śârûq","saw-rook'","From H8319; bright red (as piercing to the sight), that is, bay: - speckled. See H8291."]},{"k":"H8321","v":["שׂרֵקָה    שׂוֹרֵק    שׂרֵק","śôrêq    śôrêq    śôrêqâh","so-rake', so-rake', so-ray-kaw'","(The third form is feminine); from H8319 in the sense of redness (compare H8320); a vine stock (properly one yielding purple grapes, the richest variety): - choice (-st, noble) wine. Compare H8291."]},{"k":"H8322","v":["שְׁרֵקָה","sherêqâh","sher-ay-kaw'","From H8319; a derision: - hissing."]},{"k":"H8323","v":["שָׂרַר","śârar","saw-rar'","A primitive root; to have (transitively exercise; reflexively get) dominion: -  X altogether, make self a prince, (bear) rule."]},{"k":"H8324","v":["שָׁרַר","shârar","shaw-rar'","A primitive root; to be hostile (only active participle an opponent): - enemy."]},{"k":"H8325","v":["שָׁרָר","shârâr","shaw-rawr'","From H8324; hostile; Sharar, an Israelite: - Sharar."]},{"k":"H8326","v":["שֹׁרֶר","shôrer","sho'-rer","From H8324 in the sense of twisting (compare H8270); the umbilical cord, that is, (by extension) a bodice: - navel."]},{"k":"H8327","v":["שָׁרַשׁ","shârash","shaw-rash'","A primitive root; to root, that is, strike into the soil, or (by implication) to pluck from it: - (take, cause to take) root (out)."]},{"k":"H8328","v":["שֶׁרֶשׁ","sheresh","sheh'-resh","From H8327; a root (literally or figuratively): - bottom, deep, heel, root."]},{"k":"H8329","v":["שֶׁרֶשׁ","sheresh","sheh'-resh","The same as H8328; Sheresh, an Israelite: - Sharesh."]},{"k":"H8330","v":["שֹׁרֶשׁ","shôresh","sho'-resh","(Chaldee); corresponding to H8328: - root."]},{"k":"H8331","v":["שַׁרְשָׁה","sharshâh","shar-shaw'","From H8327; a chain (as rooted, that is, linked): - chain. Compare H8333."]},{"k":"H8332","v":["שְׁרֹשׁוּ","sherôshû","sher-o-shoo'","(Chaldee); from a root corresponding to H8327; eradication, that is, (figuratively) exile: - banishment."]},{"k":"H8333","v":["שַׁרְשְׁרָה","sharsherâh","shar-sher-aw'","From H8327 (compare H8331); a chain; (architecturally) probably a garland: - chain."]},{"k":"H8334","v":["שָׁרַת","shârath","shaw-rath'","A primitive root; to attend as a menial or worshipper; figuratively to contribute to: - minister (unto), (do) serve (-ant, -ice, -itor), wait on."]},{"k":"H8335","v":["שָׁרֵת","shârêth","shaw-rayth'","infinitive of H8334; service (in the Temple): - minister (-ry)."]},{"k":"H8336","v":["שְׁשִׁי    שֵׁשׁ","shêsh    sheshı̂y","shaysh, shesh-ee'","(The second form for alliteration with H4897); for H7893; bleached stuff, that is, white linen or (by analogy) marble: -    X blue, fine [(twined]) linen, marble, silk."]},{"k":"H8337","v":["שִׁשָּׁה    שֵׁשׁ","shêsh    shishshâh","shaysh, shish-shaw'","(The second form is masculine); a primitive number; six (as an overplus (see H7797) beyond five or the fingers of the hand); as ordinal sixth: - six ([-teen, -teenth]), sixth."]},{"k":"H8338","v":["שָׁשָׁא","shâshâ'","shaw-shaw'","A primitive root; apparently to annihilate. (Translated by confusion with H8341.): - leave but the sixth part [by confusion with H8341]."]},{"k":"H8339","v":["שֵׁשְׁבַּצַּר","shêshbatstsar","shaysh-bats-tsar'","Of foreign derivation; Sheshbatstsar, Zerubbabel’s Persian name: - Sheshbazzar."]},{"k":"H8340","v":["שֵׁשְׁבַּצַּר","shêshbatstsar","shaysh-bats-tsar'","(Chaldee); corresponding to H8339: - Sheshbazzar."]},{"k":"H8341","v":["שָׁשָׁה","shâshâh","shaw-shaw'","A denominative from H8337; to sixth or divide into sixths: - give the sixth part."]},{"k":"H8342","v":["שָׂשׂן    שָׂשׂוֹן","śâśôn    śâśôn","saw-sone', saw-sone'","From H7797; cheerfulness; specifically welcome: - gladness, joy, mirth, rejoicing."]},{"k":"H8343","v":["שָׁשַׁי","shâshay","shaw-shah'ee","Perhaps from H8336; whitish; Shashai, an Israelite: - Shashai."]},{"k":"H8344","v":["שֵׁשַּׁי","shêshay","shay-shah'ee","Probably for H8343; Sheshai, a Canaanite: - Sheshai."]},{"k":"H8345","v":["שִׁשִּׁי","shishshı̂y","shish-shee'","From H8337; sixth, ordinal or (feminine) fractional: - sixth (part)."]},{"k":"H8346","v":["שִׁשִּׁים","shishshı̂ym","shish-sheem'","Multiple of H8337; sixty: - sixty, three score."]},{"k":"H8347","v":["שֵׁשַׁךְ","shêshak","shay-shak'","Of foreign derivation; Sheshak, a symbolical name of Babylonian: - Sheshach."]},{"k":"H8348","v":["שֵׁשָׁן","shêshân","shay-shawn'","Perhaps for H7799; lily; Sheshan, an Israelite: - Sheshan."]},{"k":"H8349","v":["שָׁשַׁק","shâshaq","shaw-shak'","Probably from the base of H7785; pedestrian; Shashak, an Israelite: - Shashak."]},{"k":"H8350","v":["שָׁשַׁר","shâshar","shaw-shar'","Perhaps from the base of H8324 in the sense of that of H8320; red ochre (from its piercing color): - vermillion."]},{"k":"H8351","v":["שֵׁת","shêth","shayth","Used in Num_24:17; from H7582; tumult: - Sheth."]},{"k":"H8352","v":["שֵׁת","shêth","shayth","From H7896; put, that is, substituted; Sheth, third son of Adam: - Seth, Sheth."]},{"k":"H8353","v":["שִׁת    שֵׁת","shêth    shith","shayth, sheeth","(Chaldee); corresponding to H8337: - six (-th)."]},{"k":"H8354","v":["שָׁתָה","shâthâh","shaw-thaw'","A primitive root; to imbibe (literally or figuratively).    : -    X assuredly, banquet, X certainly, drink (-er, -ing), drunk (X -ard), surely. [Prop. intensive of H8248.]"]},{"k":"H8355","v":["שְׁתָה","shethâh","sheth-aw'","(Chaldee); corresponding to H8354: - drink."]},{"k":"H8356","v":["שָׁתָה","shâthâh","shaw-thaw'","From H7896; a basis, that is, (figuratively) political or moral support: - foundation, purpose."]},{"k":"H8357","v":["שֵׁתָה","shêthâh","shay-thaw'","From H7896; the seat (of the person): - buttock."]},{"k":"H8358","v":["שְׁתִי","shethı̂y","sheth-ee'","From H8354; intoxication: - drunkenness."]},{"k":"H8359","v":["שְׁתִי","shethı̂y","sheth-ee'","From H7896; a fixture, that is, the warp in weaving: - warp."]},{"k":"H8360","v":["שְׁתִיָּה","shethı̂yâh","sheth-ee-yaw'","Feminine of H8358; potation: - drinking."]},{"k":"H8361","v":["שִׁתִּין","shittı̂yn","shit-teen'","(Chaldee); corresponding to H8346 (compare H8353); sixty: - three-score."]},{"k":"H8362","v":["שָׁתַל","shâthal","shaw-thal'","A primitive root; to transplant: - plant."]},{"k":"H8363","v":["שְׁתִיל","shethı̂yl","sheth-eel'","From H8362; a sprig (as if transplanted), that is, sucker: - plant."]},{"k":"H8364","v":["שֻׁתַלְחִי","shûthalchı̂y","shoo-thal-khee'","Patronymic from H7803; a Shuthalchite (collectively) or descendant of Shuthelach: - Shuthalhites."]},{"k":"H8365","v":["שָׁתַם","shâtham","shaw-tham'","A primitive root; to unveil (figuratively): - be open."]},{"k":"H8366","v":["שָׁתַן","shâthan","shaw-than'","A primitive root; (causatively) to make water, that is, urinate: - piss."]},{"k":"H8367","v":["שָׁתַק","shâthaq","shaw-thak'","A primitive root; to subside: - be calm, cease, be quiet."]},{"k":"H8368","v":["שָׂתַר","śâthar","saw-thar'","A primitive root; to break out (as an eruption): - have in [one’s] secret parts."]},{"k":"H8369","v":["שֵׁתָר","shêthâr","shay-thawr'","Of foreign derivation; Shethar, a Persian satrap: - Shethar."]},{"k":"H8370","v":["שְׁתַר בּוֹזְנַי","shethar bôzenay","sheth-ar' bo-zen-ah'ee","Of foreign derivation; Shethar-Bozenai, a Persian officer: - Shethar-boznai."]},{"k":"H8371","v":["שָׁתַת","shâthath","shaw-thath'","A primitive root; to place, that is, array; reflexively to lie: - be laid, set."]},{"k":"H8372","v":["תָּאָה    תָּא","tâ'    tâ'âh","taw, taw-aw'","(The second form being feminine and used in Eze_40:12); from (the base of) H8376; a room (as circumscribed): - (little) chamber."]},{"k":"H8373","v":["תָּאַב","tâ'ab","taw-ab'","A primitive root; to desire: - long."]},{"k":"H8374","v":["תָּאַב","tâ'ab","taw-ab'","A primitive root (probably rather identical with H8373 through the idea of puffing disdainfully at; compare H340); to loathe (morally): - abhor."]},{"k":"H8375","v":["תַּאֲבָה","ta'ăbâh","tah-ab-aw'","From H8374 (compare H15); desire: - longing."]},{"k":"H8376","v":["תָּאָה","tâ'âh","taw-aw'","A primitive root; to mark off, that is, (intensively) designate: - point out."]},{"k":"H8377","v":["תּוֹא    תְּאוֹ","te'ô    tô'","teh-o', toh","The second form being the original form; from H8376; a species of antelope (probably from the white stripe on the cheek): - wild bull (ox)."]},{"k":"H8378","v":["תַּאֲוָה","ta'ăvâh","tah-av-aw'","From H183 (abbreviated); a longing; by implication a delight (subjectively satisfaction, objectively a charm): - dainty, desire, X exceedingly, X greedily, lust (ing), pleasant. See also H6914."]},{"k":"H8379","v":["תַּאֲוָה","ta'ăvâh","tah-av-aw'","From H8376; a limit, that is, full extent: - utmost bound."]},{"k":"H8380","v":["תָּאֹם    תָּאוֹם","tâ'ôm    tâ'ôm","taw-ome', taw-ome'","From H8382; a twin (in plural only), literally or figuratively: - twins."]},{"k":"H8381","v":["תַּאֲלָה","ta'ălâh","tah-al-aw'","From H422; an imprecation: - curse."]},{"k":"H8382","v":["תָּאַם","tâ'am","taw-am'","A primitive root; to be complete; but used only as denominative from H8380, to be (causatively make) twinned, that is, (figuratively) duplicate or (architecturally) jointed: - coupled (together), bear twins."]},{"k":"H8383","v":["תְּאֻן","te'ûn","teh-oon'","From H205; naughtiness, that is, toil: - lie."]},{"k":"H8384","v":["תְּאֵנָה    תְּאֵן","te'ên    te'ênâh","teh-ane', teh-ay-naw'","The second form being singular and feminine; perhaps of foreign derivation; the fig (tree or fruit): - fig (tree)."]},{"k":"H8385","v":["תֹּאֲנָה    תַּאֲנָה","ta'ănâh    tô'ănâh","tah-an-aw', to-an-aw'","From H579; an opportunity or (subjectively) purpose: - occasion."]},{"k":"H8386","v":["תַּאֲנִיָּה","ta'ănı̂yâh","tah-an-ee-yaw'","From H578; lamentation: - heaviness, mourning."]},{"k":"H8387","v":["תַּאֲנַת שִׁלֹה","ta'ănath shilôh","tah-an-ath' shee-lo'","From H8385 and H7887; approach of Shiloh; Taanath Shiloh, a place in Palestine: - Taanath-shiloh."]},{"k":"H8388","v":["תָּאַר","tâ'ar","taw-ar'","A primitive root; to delineate; reflexively to extend. (Rimmon methoar by union with H7417.): - be drawn, mark out, [Rimmon-] methoar [by union with H7417]."]},{"k":"H8389","v":["תֹּאַר","tô'ar","to'-ar","From H8388; outline, that is, figure or appearance: -  + beautiful, X comely, countenance, + fair, X favoured, form, X goodly, X resemble, visage."]},{"k":"H8390","v":["תַּאֲרֵעַ","ta'ărêa‛","tah-ar-ay'-ah","Perhaps from H772; Taarea, an Israelite: - Tarea. See H8475."]},{"k":"H8391","v":["תְּאַשּׁוּר","te'ashshûr","teh-ash-shoor'","From H833; a species of cedar (from its erectness): - box (tree)."]},{"k":"H8392","v":["תֵּבָה","têbâh","tay-baw'","Perhaps of foreign derivation; a box: - ark."]},{"k":"H8393","v":["תְּבוּאָה","tebû'âh","teb-oo-aw'","From H935; income, that is, produce (literally or figuratively): - fruit, gain, increase, revenue."]},{"k":"H8394","v":["תּוֹבֻנָה    תְּבוּנָה    תָּבוּן","tâbûn    tebûnâh    tôbûnâh","taw-boon', teb-oo-naw', to-boo-naw'","The second and third forms being feminine; from H995; intelligence; by implication an argument; by extension caprice: - discretion, reason, skilfulness, understanding, wisdom."]},{"k":"H8395","v":["תְּבוּסָה","tebûsâh","teb-oo-saw'","From H947; a treading down, that is, ruin: - destruction."]},{"k":"H8396","v":["תָּבוֹר","tâbôr","taw-bore'","From a root corresponding to H8406; broken region; Tabor, a mountain in Palestine, also a city adjacent: - Tabor."]},{"k":"H8397","v":["תֶּבֶל","tebel","teh'-bel","Apparently from H1101; mixture, that is, unnatural bestiality: - confusion."]},{"k":"H8398","v":["תֵּבֵל","têbêl","tay-bale'","From H2986; the earth (as moist and therefore inhabited); by extension the globe; by implication its inhabitants; specifically a particular land, as Babylonia or Palestine: - habitable part, world."]},{"k":"H8399","v":["תַּבְלִית","tablı̂yth","tab-leeth'","From H1086; consumption: - destruction."]},{"k":"H8400","v":["תְּבַּלֻּל","teballûl","teb-al-lool'","From H1101 in the original sense of flowing; a cataract (in the eye): - blemish."]},{"k":"H8401","v":["תֶּבֶן","teben","teh'-ben","Probably from H1129; properly material, that is, (specifically) refuse haum or stalks of grain (as chopped in threshing and used for fodder): - chaff, straw, stubble."]},{"k":"H8402","v":["תִּבְנִי","tibnı̂y","tib-nee'","From H8401; strawy; Tibni, an Israelite: - Tibni."]},{"k":"H8403","v":["תַּבְנִית","tabnı̂yth","tab-neeth'","From H1129; structure; by implication a model, resemblance: - figure, form, likeness, pattern, similitude."]},{"k":"H8404","v":["תַּבְעֵרָה","tab‛êrâh","tab-ay-raw'","From H1197; burning; Taberah, a place in the Desert: - Taberah."]},{"k":"H8405","v":["תֵּבֵץ","têbêts","tay-bates'","From the same as H948; whiteness; Tebets, a place in Palestine: - Thebez."]},{"k":"H8406","v":["תְּבַר","tebar","teb-ar'","(Chaldee); corresponding to H7665; to be fragile (figuratively): - broken."]},{"k":"H8407","v":["תִּלְגַּת פִּלְנְאֶסֶר    תִּגְלַת פִּלְאֶסֶר","tiglath pil'eser    tilgath pilne'eser","tig-lath' pil-eh'-ser, (more not shown)","Of foreign derivation; Tiglath-Pileser or Tilgath-pilneser, an Assyrian king: - Tiglath-pileser, Tilgath-pilneser."]},{"k":"H8408","v":["תַּגְמוּל","tagmûl","tag-mool'","From H1580; a bestowment: - benefit."]},{"k":"H8409","v":["תִּגְרָה","tigrâh","tig-raw'","From H1624; strife, that is, infliction: - blow."]},{"k":"H8410","v":["תִּדְהָר","tidhâr","tid-hawr'","Apparently from H1725; enduring; a species of hard wood or lasting tree (perhaps oak): - pine (tree)."]},{"k":"H8411","v":["תְּדִירָא","tedı̂yrâ'","ted-ee-raw'","(Chaldee); from H1753 in the original sense of enduring; permanence, that is, (adverbially) constantly: - continually."]},{"k":"H8412","v":["תַּמֹּר    תַּדְמֹר","tadmôr    tammôr","tad-more', tam-more'","(The second form used in 1Ki_9:18), apparently from H8558; palm city; Tadmor, a place near Palestine: - Tadmor."]},{"k":"H8413","v":["תִּדְעָל","tid‛âl","tid-awl'","Perhaps from H1763; fearfulness; Tidal, a Canaanite: - Tidal."]},{"k":"H8414","v":["תֹּהוּ","tôhû","to'-hoo","From an unused root meaning to lie waste; a desolation (of surface), that is, desert; figuratively a worthless thing; adverbially in vain: - confusion, empty place, without form, nothing, (thing of) nought, vain, vanity, waste, wilderness."]},{"k":"H8415","v":["תְּהֹם    תְּהוֹם","tehôm    tehôm","teh-home', teh-home'","(Usually feminine) from H1949; an abyss (as a surging mass of water), especially the deep (the main sea or the subterranean water supply): - deep (place), depth."]},{"k":"H8416","v":["תְּהִלָּה","tehillâh","teh-hil-law'","From H1984; laudation; specifically (concretely) a hymn: - praise."]},{"k":"H8417","v":["תָּהֳלָה","tohŏlâh","to-hol-aw'","Feminine of an unused noun (apparently from H1984) meaning bluster; braggadocio, that is, (by implication) fatuity: - folly."]},{"k":"H8418","v":["תַּהֲלֻכָה","tahălûkâh","tah-hal-oo-kaw'","From H1980; a procession: -  X went."]},{"k":"H8419","v":["תַּהְפֻּכָה","tahpûkâh","tah-poo-kaw'","From H2015; a perversity or fraud: -  (very) froward (-ness, thing), perverse thing."]},{"k":"H8420","v":["תָּו","tâv","tawv","From H8427; a mark; by implication a signature: - desire, mark."]},{"k":"H8421","v":["תּוּב","tûb","toob","(Chaldee), corresponding to H7725; to come back; specifically (transitively and elliptically) to reply: - answer, restore, return (an answer)."]},{"k":"H8422","v":["תֻּבַל    תּוּבַל","tûbal    tûbal","too-bal', too-bal'","Probably of foreign derivation; Tubal, a postdiluvian patriarch and his posterity: - Tubal."]},{"k":"H8423","v":["תּוּבַל קַיִן","tûbal qayin","too-bal' kah'-yin","Apparently from H2986 (compare H2981) and H7014; offspring of Cain; Tubal Kajin, an antediluvian patriarch: - Tubal-cain."]},{"k":"H8424","v":["תּוּגָה","tûgâh","too-gaw'","From H3013; depression (of spirits); concretely a grief: - heaviness, sorrow."]},{"k":"H8425","v":["תֹּגַרְמָה    תּוֹגַרְמָה","tôgarmâh    tôgarmâh","to-gar-maw', to-gar-maw'","Probably of foreign derivation; Togarmah, a son of Gomer and his posterity: - Togarmah."]},{"k":"H8426","v":["תּוֹדָה","tôdâh","to-daw'","From H3034; properly an extension of the hand, that is, (by implication) avowal, or (usually) adoration; specifically a choir of worshippers: - confession, (sacrifice of) praise, thanks (-giving, offering)."]},{"k":"H8427","v":["תָּוָה","tâvâh","taw-vaw'","A primitive root; to mark out, that is, (primitive) scratch or (definitely) imprint: - scrabble, set [a mark]."]},{"k":"H8428","v":["תָּוָה","tâvâh","taw-vaw'","A primitive root (or perhaps identical with H8427 through a similar idea from scraping to pieces); to grieve. (By confusion with H8427): - limit [by confusion with H8427]."]},{"k":"H8429","v":["תְּוַהּ","tevahh","tev-ah'","(Chaldee), corresponding to H8539 or perhaps to H7582 through the idea of sweeping to ruin (compare H8428); to amaze, that is, (reflexively by implication) take alarm: - be astonied."]},{"k":"H8430","v":["תּוֹחַ","tôach","to'-akh","From an unused root meaning to depress; humble; Toach, an Israelite: - Toah."]},{"k":"H8431","v":["תּוֹחֶלֶת","tôcheleth","to-kheh'-leth","From H3176; expectation: - hope."]},{"k":"H8432","v":["תָּוֶךְ","tâvek","taw'-vek","From an unused root meaning to sever; a bisection, that is, (by implication) the centre: - among (-st), X between, half, X (there-, where-) in (-to), middle, mid [-night], midst (among), X out (of), X through, X with (-in)."]},{"k":"H8433","v":["תּוֹכַחַת    תּוֹכֵחָה","tôkêchâh    tôkachath","to-kay-khaw', to-kakh'-ath","From H3198; chastisement; figuratively (by words) correction, refutation, proof (even in defence): - argument, X chastened, correction, reasoning, rebuke, reproof, X be (often) reproved."]},{"k":"H8434","v":["תּוֹלָד","tôlâd","to-lawd'","From H3205; posterity; Tolad, a place in Palestine: - Tolad. Compare H513."]},{"k":"H8435","v":["תֹּלְדָה    תּוֹלְדָה","tôledâh    tôledâh","to-led-aw', to-led-aw'","From H3205; (plural only) descent, that is, family; (figuratively) history: - birth, generations."]},{"k":"H8436","v":["תּוּלוֹן","tûlôn","too-lone'","From H8524; suspension; Tulon, an Israelite: - Tilon [from the margin]."]},{"k":"H8437","v":["תּוֹלָל","tôlâl","to-lawl'","From H3213; causing to howl, that is, an oppressor: - that wasted."]},{"k":"H8438","v":["תֹּלַעַת    תּוֹלַעַת    תּוֹלֵעָה    תּוֹלָע","tôlâ‛    tôlê‛âh    tôla‛ath    tôla‛ath","to-law', to-lay-aw', (3,4) to-lah'-ath","From H3216; a maggot (as voracious); specifically (often with ellipsis of H8144) the crimson grub, but used only (in this connection) of the color from it, and cloths dyed therewith: - crimson, scarlet, worm."]},{"k":"H8439","v":["תּוֹלָע","tôlâ‛","to-law'","The same as H8438; worm; Tola, the name of two Israelites: - Tola."]},{"k":"H8440","v":["תּוֹלָעִי","tôlâ‛ı̂y","to-law-ee'","Patronymic from H8439; a Tolaite (collectively) or descendant of Tola: - Tolaites."]},{"k":"H8441","v":["תֹּעֵבַה    תּוֹעֵבַה","tô‛êbah    tô‛êbah","to-ay-baw', to-ay-baw'","Feminine active participle of H8581; properly something disgusting (morally), that is, (as noun) an abhorrence; especially idolatry or (concretely) an idol: - abominable (custom, thing), abomination."]},{"k":"H8442","v":["תּוֹעָה","tô‛âh","to-aw'","Feminine active participle of H8582; mistake, that is, (morally) impiety, or (political) injury: - error, hinder."]},{"k":"H8443","v":["תּוֹעָפָה","tô‛âphâh","to-aw-faw'","From H3286; (only in plural collective) weariness, that is, (by implication) toil (treasure so obtained) or speed: - plenty, strength."]},{"k":"H8444","v":["תֹּצָאָה    תּוֹצָאָה","tôtsâ'âh    tôtsâ'âh","to-tsaw-aw', to-tsaw-aw'","From H3318; (only in plural collective) exit, that is, (geographical) boundary, or (figuratively) deliverance, (actively) source: - border (-s), going (-s) forth (out), issues, outgoings."]},{"k":"H8445","v":["תּוֹקַהַת","tôqahath","to-kah'-ath","From the same as H3349; obedience; Tokahath, an Israelite. (By correction for H8616.): - Tikvath [by correction for H8616]."]},{"k":"H8446","v":["תּוּר","tûr","toor","A primitive root; to meander (causatively guide) about, especially for trade or reconnoitring: - chap [-man], sent to descry, be excellent, merchant [-man], search (out), seek, (e-) spy (out)."]},{"k":"H8447","v":["תֹּר    תּוֹר","tôr    tôr","tore, tore","From H8446; a succession, that is, a string or (abstractly) order: - border, row, turn."]},{"k":"H8448","v":["תּוֹר","tôr","tore","Probably the same as H8447; a manner (as a sort of turn): - estate."]},{"k":"H8449","v":["תֹּר    תּוֹר","tôr    tôr","tore, tore","Probably the same as H8447; a ring dove, often (figuratively) as a term of endearment: - (turtle) dove."]},{"k":"H8450","v":["תּוֹר","tôr","tore","(Chaldee), corresponding (by permutation) to H7794; a bull: - bullock, ox."]},{"k":"H8451","v":["תֹּרָה    תּוֹרָה","tôrâh    tôrâh","to-raw', to-raw'","From H3384; a precept or statute, especially the Decalogue or Pentateuch: - law."]},{"k":"H8452","v":["תּוֹרָה","tôrâh","to-raw'","Probably feminine of H8448; a custom: - manner."]},{"k":"H8453","v":["תֹּשָׁב    תּוֹשָׁב","tôshâb    tôshâb","to-shawb', to-shawb'","(The second form used in Kings Num_17:1); from H3427; a dweller (but not outlandish, H5237); especially (as distinguished from a native citizen (active participle of H3427) and a temporary inmate, H1616, or mere lodger, H3885) resident alien: - foreigner-inhabitant, sojourner, stranger."]},{"k":"H8454","v":["תֻּשִׁיָּה    תּוּשִׁיָּה","tûshı̂yâh    tûshı̂yâh","too-shee-yaw', too-shee-yaw'","From an unused root probably meaning to substantiate; support or (by implication) ability, that is, (direct) help, (in purpose) an undertaking, (intellectual) understanding: - enterprise, that which (thing as it) is, substance, (sound) wisdom, working."]},{"k":"H8455","v":["תּוֹתָח","tôthâch","to-thawkh'","From an unused root meaning to smite: - darts."]},{"k":"H8456","v":["תָּזַז","tâzaz","taw-zaz'","A primitive root; to lop off: - cut down."]},{"k":"H8457","v":["תַּזְנֻת    תַּזְנוּת","taznûth    taznûth","taz-nooth', taz-nooth'","From H2181; harlotry, that is, (figuratively) idolatry: - fornication, whoredom."]},{"k":"H8458","v":["תַּחְבּוּלָה    תַּחְבֻּלָה","tachbûlâh    tachbûlâh","takh-boo-law', takh-boo-law'","From H2254 as denominative from H2256; (only in plural) properly steerage (as a management of ropes), that is, (figuratively) guidance or (by implication) a plan: - good advice, (wise) counsels."]},{"k":"H8459","v":["תֹּחוּ","tôchû","to'-khoo","From an unused root meaning to depress; abasement; Tochu, an Israelite: - Tohu."]},{"k":"H8460","v":["תְּחֹת    תְּחוֹת","techôth    techôth","tekh-oth', tekh-oth'","(Chaldee), corresponding to H8478; beneath: - under."]},{"k":"H8461","v":["תַּחְכְּמֹנִי","tachkemônı̂y","takh-kem-o-nee'","Probably for H2453; sagacious; Tachkemoni, an Israelite: - Tachmonite."]},{"k":"H8462","v":["תְּחִלָּה","techillâh","tekh-il-law'","From H2490 in the sense of opening; a commencement; relatively original (adverbially originally): - begin (-ning), first (time)."]},{"k":"H8463","v":["תַּחֲלֻא    תַּחֲלוּא","tachălû'    tachălû'","takh-al-oo', takh-al-oo'","From H2456; a malady: - disease, X grievous, (that are) sick (-ness)."]},{"k":"H8464","v":["תַּחְמָס","tachmâs","takh-mawce'","From H2554; a species of unclean bird (from its violence), perhaps an owl: - night hawk."]},{"k":"H8465","v":["תַּחַן","tachan","takh'-an","Probably from H2583; station; Tachan, the name of two Israelites: - Tahan."]},{"k":"H8466","v":["תַּחֲנָה","tachănâh","takh-an-aw'","From H2583; (only plural collectively) an encampment: - camp."]},{"k":"H8467","v":["תְּחִנָּה","techinnâh","tekh-in-naw'","From H2603; graciousness; causatively entreaty: - favour, grace, supplication."]},{"k":"H8468","v":["תְּחִנָּה","techinnâh","tekh-in-naw'","The same as H8467; Techinnah, an Israelite: - Tehinnah."]},{"k":"H8469","v":["תַּחֲנוּנָה    תַּחֲנוּן","tachănûn    tachănûnâh","takh-an-oon', takh-an-oo-naw'","From H2603; earnest prayer: - intreaty, supplication."]},{"k":"H8470","v":["תַּחֲנִי","tachănı̂y","takh-an-ee'","Patronymic from H8465; a Tachanite (collectively) or descendant of Tachan: - Tahanites."]},{"k":"H8471","v":["תַּחְפְּנֵס    תְּחַפְנְחֵס    תַּחְפַּנְחֵס","tachpanchês    techaphnechês    tachpenês","takh-pan-khace' tekh-af-nekh-ace' (etc.)","(The second form used in Eze_30:18); (the third form used in Jer_2:16); of Egyptian derivation; Tachpanches, Techaphneches or Tachpenes, a place in Egypt: - Tahapanes, Tahpanhes, Tehaphnehes."]},{"k":"H8472","v":["תַּחְפְּנֵיס","tachpenêys","takh-pen-ace'","Of Egyptian derivation; Tachpenes, an Egyptian woman: - Tahpenes."]},{"k":"H8473","v":["תַּחֲרָא","tachărâ'","takh-ar-aw'","From H2734 in the original sense of H2352 or H2353; a linen corslet (as white or hollow): - habergeon."]},{"k":"H8474","v":["תַּחָרָה","tachârâh","takh-aw-raw'","A factitious root from H2734 through the idea of the heat of jealousy; to vie with a rival: - close, contend."]},{"k":"H8475","v":["תַּחְרֵעַ","tachrêa‛","takh-ray'-ah","For H8390; Tachrea, an Israelite: - Tahrea."]},{"k":"H8476","v":["תַּחַשׁ","tachash","takh'-ash","Probably of foreign derivation; a (clean) animal with fur, probably a species of antelope: - badger."]},{"k":"H8477","v":["תַּחַשׁ","tachash","takh'-ash","The same as H8476; Tachash, a relative of Abraham: - Thahash."]},{"k":"H8478","v":["תַּחַת","tachath","takh'-ath","From the same as H8430; the bottom (as depressed); only adverbially below (often with prepositional prefix underneath), in lieu of, etc.: - as, beneath, X flat, in (-stead), (same) place (where . . . is), room, for . . . sake, stead of, under, X unto, X when . . . was mine, whereas, [where-] fore, with."]},{"k":"H8479","v":["תַּחַת","tachath","takh'-ath","(Chaldee); corresponding to H8478: - under."]},{"k":"H8480","v":["תַּחַת","tachath","takh'-ath","The same as H8478; Tachath, the name of a place in the Desert, also of three Israelites: - Tahath."]},{"k":"H8481","v":["תַּחְתֹּן    תַּחְתּוֹן","tachtôn    tachtôn","takh-tone', takh-tone'","From H8478; bottommost: - lower (-est), nether (-most)."]},{"k":"H8482","v":["תַּחְתִּי","tachtı̂y","takh-tee'","From H8478; lowermost; as noun (feminine plural) the depths (figuratively a pit, the womb): - low (parts, -er, -er parts, -est), nether (part)."]},{"k":"H8483","v":["תַּחְתִּים חָדְשִׁי","tachtı̂ym chodshı̂y","takh-teem' khod-shee'","Apparently from the plural masculine of H8482 or H8478 and H2320; lower (ones) monthly; Tachtim Chodshi, a place in Palestine: - Tahtim-hodshi."]},{"k":"H8484","v":["תִּיכֹן    תִּיכוֹן","tı̂ykôn    tı̂ykôn","tee-kone', tee-kone'","From H8432; central: - middle (-most), midst."]},{"k":"H8485","v":["תֵּמָא    תֵּימָא","têymâ'    têmâ'","tay-maw', tay-maw'","Probably of foreign derivation; Tema, a son of Ishmael, and the region settled by him: - Tema."]},{"k":"H8486","v":["תֵּמָן    תֵּימָן","têymân    têmân","tay-mawn', tay-mawn'","Denominative from H3225; the south (as being on the right hand of a person facing the east): - south (side, -ward, wind)."]},{"k":"H8487","v":["תֵּמָן    תֵּימָן","têymân    têmân","tay-mawn', tay-mawn'","The same as H8486; Teman, the name of two Edomites, and of the region and descendants of one of them: - south, Teman."]},{"k":"H8488","v":["תֵּימְנִי","têymenı̂y","tay-men-ee'","Probably for H8489; Temeni, an Israelite: - Temeni."]},{"k":"H8489","v":["תֵּימָנִי","têymânı̂y","tay-maw-nee'","Patronymic from H8487; a Temanite or descendant of Teman: - Temani, Temanite."]},{"k":"H8490","v":["תִּמָרָה    תִּימָרָה","tı̂ymârâh    timârâh","tee-maw-raw', tee-maw-raw'","From the same as H8558; a column, that is, cloud: - pillar."]},{"k":"H8491","v":["תִּיצִי","tı̂ytsı̂y","tee-tsee'","Partrial or patronymic from an unused noun of uncertain meaning; a Titsite or descendant or inhabitant of an unknown Tits: - Tizite."]},{"k":"H8492","v":["תִּירֹשׁ    תִּירוֹשׁ","tı̂yrôsh    tı̂yrôsh","tee-roshe', tee-roshe'","From H3423 in the sense of expulsion; must or fresh grape juice (as just squeezed out); by implication (rarely) fermented wine: - (new, sweet) wine."]},{"k":"H8493","v":["תִּירְיָא","tı̂yreyâ'","tee-reh-yaw'","Probably from H3372; fearful; Tirja, an Israelite: - Tiria."]},{"k":"H8494","v":["תִּירָס","tı̂yrâs","tee-rawce'","Probably of foreign derivation; Tiras, a son of Japheth: - Tiras."]},{"k":"H8495","v":["תַּיִשׁ","tayish","tah'-yeesh","From an unused root meaning to butt; a buck or he goat (as given to butting): - he goat."]},{"k":"H8496","v":["תּוֹךְ    תֹּךְ","tôk    tôk","toke, toke","(The second form used in Psa_72:14); from the same base as H8432 (in the sense of cutting to pieces); oppression: - deceit, fraud."]},{"k":"H8497","v":["תָּכָה","tâkâh","taw-kaw'","A primitive root; to strew, that is, encamp: - sit down."]},{"k":"H8498","v":["תְּכוּנָה","tekûnâh","tek-oo-naw'","Feminine passive participle of H8505; adjustment, that is, structure; by implication equipage: - fashion, store."]},{"k":"H8499","v":["תְּכוּנָה","tekûnâh","tek-oo-naw'","From H3559; or probably identical with H8498; something arranged or fixed, that is, a place: - seat."]},{"k":"H8500","v":["תּוּכִּי    תֻּכִּי","tûkkı̂y    tûkkı̂y","took-kee', took-kee'","Probably of foreign derivation; some imported creature, probably a peacock: - peacock."]},{"k":"H8501","v":["תָּכָךְ","tâkâk","taw-kawk'","From an unused root meaning to dissever, that is, crush: - deceitful."]},{"k":"H8502","v":["תִּכְלָה","tiklâh","tik-law'","From H3615; completeness: - perfection."]},{"k":"H8503","v":["תַּכְלִית","taklı̂yth","tak-leeth'","From H3615; completion; by implication an extremity: - end, perfect (-ion)."]},{"k":"H8504","v":["תְּכֵלֶת","tekêleth","tek-ay'-leth","Probably for H7827; the cerulean mussel, that is, the color (violet) obtained therefrom or stuff dyed therewith: - blue."]},{"k":"H8505","v":["תָּכַן","tâkan","taw-kan'","A primitive root; to balance, that is, measure out (by weight or dimension); figuratively to arrange, equalize, through the idea of levelling (mentally estimate, test): - bear up, direct, be ([un-]) equal, mete, ponder, tell, weigh."]},{"k":"H8506","v":["תֹּכֶן","tôken","to'-ken","From H8505; a fixed quantity: - measure, tale."]},{"k":"H8507","v":["תֹּכֶן","tôken","to'-ken","The same as H8506; Token, a place in Palestine: - Tochen."]},{"k":"H8508","v":["תָּכְנִית","toknı̂yth","tok-neeth'","From H8506; admeasurement, that is, consummation: - pattern, sum."]},{"k":"H8509","v":["תַּכְרִיךְ","takrı̂yk","tak-reek'","Apparently from an unused root meaning to encompass; a wrapper or robe: - garment."]},{"k":"H8510","v":["תֵּל","têl","tale","By contraction from H8524; a mound: - heap, X strength."]},{"k":"H8511","v":["תָּלָא","tâlâ'","taw-law'","A primitive root; to suspend; figuratively (through hesitation) to be uncertain; by implication (of mental dependence) to habituate: - be bent, hang (in doubt)."]},{"k":"H8512","v":["תֵּל אָבִיב","têl 'âbı̂yb","tale aw-beeb'","From H8510 and H24; mound of green growth; Tel-Abib, a place in Chaldaea: - Tel-abib."]},{"k":"H8513","v":["תְּלָאָה","telâ'âh","tel-aw-aw'","From H3811; distress: - travail, travel, trouble."]},{"k":"H8514","v":["תַּלְאוּבָה","tal'ûbâh","tal-oo-baw'","From H3851; desiccation: - great drought."]},{"k":"H8515","v":["תְּלַשַּׂר    תְּלַאשַּׂר","tela'śśar    telaśśar","tel-as-sar', tel-as-sar'","Of foreign derivation; Telassar, a region of Assyria: - Telassar."]},{"k":"H8516","v":["תַּלְבֹּשֶׁת","talbôsheth","tal-bo'-sheth","From H3847; a garment: - clothing."]},{"k":"H8517","v":["תְּלַג","telag","tel-ag'","(Chaldee); corresponding to H7950; snow: - snow."]},{"k":"H8518","v":["תָּלָה","tâlâh","taw-law'","A primitive root; to suspend (especially to gibbet): - hang (up)."]},{"k":"H8519","v":["תְּלֻנָּה    תְּלוּנָה","telûnâh    telûnnâh","tel-oo-naw', tel-oon-naw'","From H3885 in the sense of obstinacy; a grumbling: - murmuring."]},{"k":"H8520","v":["תֶּלַח","telach","teh'-lakh","Probably form an unused root meaning to dissever; breach; Telach, an Israelite: - Telah."]},{"k":"H8521","v":["תֵּל חַרְשָׁא","têl charshâ'","tale khar-shaw'","From H8510 and the feminine of H2798; mound of workmanship; Tel-Charsha, a place in Babylon: - Tel-haresha, Tel-harsa."]},{"k":"H8522","v":["תְּלִי","telı̂y","tel-ee'","Probably from H8518; a quiver (as slung): - quiver."]},{"k":"H8523","v":["תַּלְתִּי    תְּלִיתַי","telı̂ythay    taltı̂y","tel-ee-thah'ee, tal-tee'","(Chaldee); ordinal from H8532; third: - third."]},{"k":"H8524","v":["תָּלַל","tâlal","taw-lal'","A primitive root; to pile up, that is, elevate: - eminent. Compare H2048."]},{"k":"H8525","v":["תֶּלֶם","telem","teh'-lem","From an unused root meaning to accumulate; a bank or terrace: - furrow, ridge."]},{"k":"H8526","v":["תַּלְמַי","talmay","tal-mah'ee","From H8525; ridged; Talmai, the name of a Canaanite and a Syrian: - Talmai."]},{"k":"H8527","v":["תַּלְמִיד","talmı̂yd","tal-meed'","From H3925; a pupil: - scholar."]},{"k":"H8528","v":["תֵּל מֶלַח","têl melach","tale meh'-lakh","From H8510 and H4417; mound of salt; Tel-Melach, a palce in Babylon: - Tel-melah."]},{"k":"H8529","v":["תָּלַע","tâla‛","taw-law'","A denominative from H8438; to crimson, that is, dye that color: -    X scarlet."]},{"k":"H8530","v":["תַּלְפִּיָּה","talpı̂yâh","tal-pee-yaw'","Feminine from an unused root meaning to tower; something tall, that is, (plural collectively) slenderness: - armoury."]},{"k":"H8531","v":["תְּלַת","telath","tel-ath'","(Chaldee); from H8532; a tertiary rank: - third."]},{"k":"H8532","v":["תְּלָתָא    תְּלָתָה    תְּלָת","telâth    telâthâh    telâthâ'","tel-awth', tel-aw-thaw', tel-aw-thaw'","(Chaldee); corresponding to H7969; three or third: - third, three."]},{"k":"H8533","v":["תְּלָתִין","telâthı̂yn","tel-aw-theen'","Multiplicative of H8532; ten times three: - thirty."]},{"k":"H8534","v":["תַּלְתַּל","taltal","tal-tal'","By reduplication from H8524 through the idea of vibration; a trailing bough (as pendulous): - bushy."]},{"k":"H8535","v":["תָּם","tâm","tawm","From H8552; complete; usually (morally) pious; specifically gentle, dear: -  coupled together, perfect, plain, undefiled, upright."]},{"k":"H8536","v":["תָּם","tâm","tawm","(Chaldee); corresponding to H8033; there: -  X thence, there, X where."]},{"k":"H8537","v":["תֹּם","tôm","tome","From H8552; completeness; figuratively prosperity; usually (morally) innocence: - full, integrity, perfect (-ion), simplicity, upright (-ly, -ness), at a venture. See H8550."]},{"k":"H8538","v":["תֻּמָּה","tûmmâh","toom-maw'","Feminine of H8537; innocence: - integrity."]},{"k":"H8539","v":["תָּמַהּ","tâmahh","taw-mah'","A primitive root; to be in consternation: - be amazed, be astonished, marvel (-lously), wonder."]},{"k":"H8540","v":["תְּמַהּ","temahh","tem-ah'","(Chaldee); from a root corresponding to H8539; a miracle: - wonder."]},{"k":"H8541","v":["תִּמָּהוֹן","timmâhôn","tim-maw-hone'","From H8539; consternation: - astonishment."]},{"k":"H8542","v":["תַּמּוּז","tammûz","tam-mooz'","Of uncertain derivation; Tammuz, a Phoenician deity: - Tammuz."]},{"k":"H8543","v":["תְּמֹל    תְּמוֹל","temôl    temôl","tem-ole', tem-ole'","Probably for H865; properly ago, that is, a (short or long) time since; especially yesterday, or (with H8032) day before yesterday: -    + before (-time), + these [three] days, + heretofore, + time past, yesterday."]},{"k":"H8544","v":["תְּמֻנָה    תְּמוּנָה","temûnâh    temûnâh","tem-oo-naw', tem-oo-naw'","From H4327; something portioned (that is, fashioned) out, as a shape, that is, (indefinitely) phantom, or (specifically) embodiment, or (figuratively) manifestation (of favor): - image, likeness, similitude."]},{"k":"H8545","v":["תְּמוּרָה","temûrâh","tem-oo-raw'","From H4171; barter, compensation: -  (ex-) change (-ing), recompense, restitution."]},{"k":"H8546","v":["תְּמוּתָה","temûthâh","tem-oo-thaw'","From H4191; execution (as a doom): - death, die."]},{"k":"H8547","v":["תֶּמַח","temach","teh'-makh","Of uncertain derivation; Temach, one of the Nethinim: - Tamah, Thamah."]},{"k":"H8548","v":["תָּמִיד","tâmı̂yd","taw-meed'","From an unused root meaning to stretch; properly continuance (as indefinite extension); but used only (attributively as adjective) constant (or adverbially constantly); elliptically the regular (daily) sacrifice: -    alway (-s), continual (employment, -ly), daily, ([n-]) ever (-more), perpetual."]},{"k":"H8549","v":["תָּמִים","tâmı̂ym","taw-meem'","From H8552; entire (literally, figuratively or morally); also (as noun) integrity, truth: - without blemish, complete, full, perfect, sincerely (-ity), sound, without spot, undefiled, upright (-ly), whole."]},{"k":"H8550","v":["תֻּמִּים","tûmmı̂ym","toom-meem'","Plural of H8537; perfections, that is, (technically) one of the epithets of the objects in the high priest’s breastplate as an emblem of complete Truth: - Thummim."]},{"k":"H8551","v":["תָּמַךְ","tâmak","taw-mak'","A primitive root; to sustain; by implication to obtain, keep fast; figuratively to help, follow close: - (take, up-) hold (up), maintain, retain, stay (up)."]},{"k":"H8552","v":["תָּמַם","tâmam","taw-mam'","A primitive root; to complete, in a good or a bad sense, literally or figuratively, transitively or intransitively: - accomplish, cease, be clean [pass-] ed, consume, have done, (come to an, make an) end, fail, come to the full, be all gone, X be all here, be (make) perfect, be spent, sum, be (shew self) upright, be wasted, whole."]},{"k":"H8553","v":["תִּמְנָה","timnâh","tim-naw'","From H4487; a portion assigned; Timnah, the name of two places in Palestine: - Timnah, Timnath, Thimnathah."]},{"k":"H8554","v":["תִּמְנִי","timnı̂y","tim-nee'","Patrial from H8553; a Timnite or inhabitant of Timnah: - Timnite."]},{"k":"H8555","v":["תִּמְנָע","timnâ‛","tim-naw'","From H4513; restraint; Timna, the name of two Edomites: - Timna, Timnah."]},{"k":"H8556","v":["תִּמְנַת סֶרַח    תִּמְנַת חֶרֶס","timnath cheres    timnath serach","tim-nath kheh'-res, tim-nath seh'-rakh","From H8553 and H2775; portion of (the sun; Timnath Cheres, a place in Palestine: - Timnath-heres, Timnath-serah."]},{"k":"H8557","v":["תֶּמֶס","temes","teh'-mes","From H4529; liquefaction, that is, disappearance: - melt."]},{"k":"H8558","v":["תָּמָר","tâmâr","taw-mawr'","From an unused root meaning to be erect; a palm tree: - palm (tree)."]},{"k":"H8559","v":["תָּמָר","tâmâr","taw-mawr'","The same as H8558; Tamar, the name of three women and a place: - Tamar."]},{"k":"H8560","v":["תֹּמֶר","tômer","to'-mer","From the same root as H8558; a palm trunk: - palm tree."]},{"k":"H8561","v":["תִּמֹּרָה    תִּמֹּר","timmôr    timmôrâh","tim-more', tim-mo-raw'","(The first is plural only, while the second is feminine, singular and plural); from the same root as H8558; (architecturally) a palm like pilaster (that is, umbellate): - palm tree."]},{"k":"H8562","v":["תַּמְרִיק    תַּמְרֻק    תַּמְרוּק","tamrûq    tamrûq    tamrı̂yq","tam-rook', tam-rook', tam-reek'","From H4838; properly a scouring, that is, soap or perfumery for the bath; figuratively a detergent: -  X cleanse, (thing for) purification (-fying)."]},{"k":"H8563","v":["תַּמְרוּר","tamrûr","tam-roor'","From H4843; bitterness (plural as collective): -    X most bitter (-ly)."]},{"k":"H8564","v":["תַּמְרוּר","tamrûr","tam-roor'","From the same root as H8558; an erection, that is, pillar (probably for a guide board): - high heap."]},{"k":"H8565","v":["תַּן","tan","tan","From an unused root probably meaning to elongate; a monster (as preternaturally formed), that is, a sea serpent (or other huge marine animal); also a jackal (or other hideous land animal): - dragon, whale. Compare H8577."]},{"k":"H8566","v":["תָּנָה","tânâh","taw-naw'","A primitive root; to present (a mercenary inducement), that is, bargain with (a harlot): - hire."]},{"k":"H8567","v":["תָּנָה","tânâh","taw-naw'","A primitive root (rather identical with H8566 through the idea of attributing honor); to ascribe (praise), that is, celebrate, commemorate: - lament, rehearse."]},{"k":"H8568","v":["תַּנָּה","tannâh","tan-naw'","Probably feminine of H8565; a female jackal: - dragon."]},{"k":"H8569","v":["תְּנוּאָה","tenû'âh","ten-oo-aw'","From H5106; alienation; by implication enmity: - breach of promise, occasion."]},{"k":"H8570","v":["תְּנוּבָה","tenûbâh","ten-oo-baw'","From H5107; produce: - fruit, increase."]},{"k":"H8571","v":["תְּנוּךְ","tenûk","ten-ook'","Perhaps form the same as H594 through the idea of protraction; a pinnacle, that is, extremity: - tip."]},{"k":"H8572","v":["תְּנוּמָה","tenûmâh","ten-oo-maw'","From H5123; drowsiness, that is, sleep: - slumber (-ing)."]},{"k":"H8573","v":["תְּנוּפָה","tenûphâh","ten-oo-faw'","From H5130; a brandishing (in threat); by implication tumult; specifically the official undulation of sacrificial offerings: - offering, shaking, wave (offering)."]},{"k":"H8574","v":["תַּנּוּר","tannûr","tan-noor'","From H5216; a fire pot: - furnace, oven."]},{"k":"H8575","v":["תַּנְחוּמָה    תַּנְחֻם    תַּנְחוּם","tanchûm    tanchûm    tanchûmâh","tan-khoom', tan-khoom', tan-khoo-maw'","The third form is feminine; from H5162; compassion, solace: - comfort, consolation."]},{"k":"H8576","v":["תַּנְחֻמֶת","tanchûmeth","tan-khoo'-meth","For H8575 (feminine); Tanchumeth, an Israelite: - Tanhumeth."]},{"k":"H8577","v":["תַּנִּים    תַּנִּין","tannı̂yn    tannı̂ym","tan-neen', tan-neem'","(The second form used in Eze_29:3); intensive from the same as H8565; a marine or land monster, that is, sea serpent or jackal: - dragon, sea-monster, serpent, whale."]},{"k":"H8578","v":["תִּנְיָן","tinyân","tin-yawn'","(Chaldee), corresponding to H8147; second: - second."]},{"k":"H8579","v":["תִּנְיָנוּת","tinyânûth","tin-yaw-nooth'","(Chaldee), from H8578; a second time: - again."]},{"k":"H8580","v":["תַּנְשֶׁמֶת","tanshemeth","tan-sheh'-meth","From H5395; properly a hard breather, that is, the name of two unclean creatures, a lizard and a bird (both perhaps from changing color through their irascibility), probably the tree toad and the water hen: - mole, swan."]},{"k":"H8581","v":["תָּעַב","tâ‛ab","taw-ab'","A primitive root; to loathe, that is, (morally) detest: - (make to be) abhor (-red), (be, commit more, do) abominable (-y), X utterly."]},{"k":"H8582","v":["תָּעָה","tâ‛âh","taw-aw'","A primitive root; to vacillate, that is, reel or stray (literally or figuratively); also causatively of both: - (cause to) go astray, deceive, dissemble, (cause to, make to) err, pant, seduce, (make to) stagger, (cause to) wander, be out of the way."]},{"k":"H8583","v":["תֹּעִי    תֹּעוּ","tô‛û    tô‛ı̂y","to'-oo, to'-ee","From H8582; error; Tou or Toi, a Syran king: - Toi, Tou."]},{"k":"H8584","v":["תְּעוּדָה","te‛ûdâh","teh-oo-daw'","From H5749; attestation, that is, a precept, usage: - testimony."]},{"k":"H8585","v":["תְּעָלָה","te‛âlâh","teh-aw-law'","From H5927; a channel (into which water is raised for irrigation); also a bandage or plaster (as placed upon a wound): - conduit, cured, healing, little river, trench, watercourse."]},{"k":"H8586","v":["תַּעֲלוּל","ta‛ălûl","tah-al-ool'","From H5953; caprice (as a fit coming on), that is, vexation; concretely a tyrant: - babe, delusion."]},{"k":"H8587","v":["תַּעֲלֻמָּה","ta‛ălûmmâh","tah-al-oom-maw'","From H5956; a secret: - thing that is hid, secret."]},{"k":"H8588","v":["תַּעֲנֻגָה    תַּעֲנֻג    תַּעֲנוּג","ta‛ănûg    ta‛ănûg    ta‛ănûgâh","tah-an-oog', tah-an-oog', tah-an-oog-aw'","The third form being feminine; from H6026; luxury: - delicate, delight, pleasant."]},{"k":"H8589","v":["תַּעֲנִית","ta‛ănı̂yth","tah-an-eeth'","From H6031; affliction (of self), that is, fasting: - heaviness."]},{"k":"H8590","v":["תַּעְנָךְ    תַּעֲנָךְ","ta‛ănâk    ta‛nâk","tah-an-awk', tah-nawk'","Of uncertain derivation; Taanak or Tanak, a place in Palestine: - Taanach, Tanach."]},{"k":"H8591","v":["תָּעַע","tâ‛a‛","taw-ah'","A primitive root; to cheat; by analogy to maltreat: - deceive, misuse."]},{"k":"H8592","v":["תַּעֲצֻמָה","ta‛ătsûmâh","tah-ats-oo-maw'","From H6105; might (plural collective): - power."]},{"k":"H8593","v":["תַּעַר","ta‛ar","tah'-ar","From H6168; a knife or razor (as making bare); also a scabbard (as being bare, that is, empty): - [pen-] knife, rasor, scabbard, shave, sheath."]},{"k":"H8594","v":["תַּעֲרֻבָה","ta‛ărûbâh","tah-ar-oo-baw'","From H6148; suretyship, that is, (concretely) a pledge: -  + hostage."]},{"k":"H8595","v":["תַּעְתֻּעַ","ta‛tûa‛","tah-too'-ah","From H8591; a fraud: - error."]},{"k":"H8596","v":["תֹּף","tôph","tofe","From H8608 contracted; a tambourine: - tabret, timbrel."]},{"k":"H8597","v":["תִּפְאֶרֶת    תִּפְאָרָה","tiph'ârâh    tiph'ereth","tif-aw-raw', tif-eh'-reth","From H6286; ornament (abstractly or concretely, literally or figuratively): - beauty (-iful), bravery, comely, fair, glory (-ious), honour, majesty."]},{"k":"H8598","v":["תַּפּוּחַ","tappûach","tap-poo'-akh","From H5301; an apple (from its fragrance), that is, the fruit or the tree (probably including others of the pome order, as the quince, the orange, etc.): - apple (tree). See also H1054."]},{"k":"H8599","v":["תַּפּוּחַ","tappûach","tap-poo'-akh","The same as H8598; Tappuach, the name of two places in Palestine, also of an Israelite: - Tappuah."]},{"k":"H8600","v":["תְּפוֹצָה","tephôtsâh","tef-o-tsaw'","From H6327; a dispersal: - dispersion."]},{"k":"H8601","v":["תֻּפִין","tûphı̂yn","too-feen'","From H644; cookery, that is, (concretely) a cake: - baked piece."]},{"k":"H8602","v":["תָּפֵל","tâphêl","taw-fale'","From an unused root meaning to smear; plaster (as gummy) or slime; (figuratively) frivolity: - foolish things, unsavoury, untempered."]},{"k":"H8603","v":["תֹּפֶל","tôphel","to'-fel","From the same as H8602; quagmire; Tophel, a place near the Desert: - Tophel."]},{"k":"H8604","v":["תִּפְלָה","tiphlâh","tif-law'","From the same as H8602; frivolity: - folly, foolishly."]},{"k":"H8605","v":["תְּפִלָּה","tephillâh","tef-il-law'","From H6419; intercession, supplication; by implication a hymn: - prayer."]},{"k":"H8606","v":["תִּפְלֶצֶת","tiphletseth","tif-leh'-tseth","From H6426; fearfulness: - terrible."]},{"k":"H8607","v":["תִּפְסַח","tiphsach","tif-sakh'","From H6452; ford; Tiphsach, a place in Mesopotamia: - Tipsah."]},{"k":"H8608","v":["תָּפַף","tâphaph","taw-faf'","A primitive root; to drum, that is, play (as) on the tambourine: - taber, play with timbrels."]},{"k":"H8609","v":["תָּפַר","tâphar","taw-far'","A primitive root; to sew: - (women that) sew (together)."]},{"k":"H8610","v":["תָּפַשׂ","tâphaś","taw-fas'","A primitive root; to manipulate, that is, seize; chiefly to capture, wield; specifically to overlay; figuratively to use unwarrantably: - catch, handle, (lay, take) hold (on, over), stop, X surely, surprise, take."]},{"k":"H8611","v":["תֹּפֶת","tôpheth","to'-feth","From the base of H8608; a smiting, that is, (figuratively) contempt: - tabret."]},{"k":"H8612","v":["תֹּפֶת","tôpheth","to'-feth","The same as H8611; Topheth, a place near Jerusalem: - Tophet, Topheth."]},{"k":"H8613","v":["תָּפְתֶּה","tophteh","tof-teh'","Probably a form of H8612; Tophteh, a place of cremation: - Tophet."]},{"k":"H8614","v":["תִּפְתַּי","tiphtay","tif-tah'ee","(Chaldee), perhaps from H8199; judicial, that is, a lawyer: - sheriff."]},{"k":"H8615","v":["תִּקְוָה","tiqvâh","tik-vaw'","From H6960; literally a cord (as an attachment (compare H6961)); figuratively expectancy: - expectation ([-ted]), hope, live, thing that I long for."]},{"k":"H8616","v":["תִּקְוָה","tiqvâh","tik-vaw'","The same as H8615; Tikvah, the name of two Israelites: - Tikvah."]},{"k":"H8617","v":["תְּקוּמָה","teqûmâh","tek-oo-maw'","From H6965; resistfulness: - power to stand."]},{"k":"H8618","v":["תְּקוֹמֵם","teqômêm","tek-o-mame'","From H6965; an opponent: - rise up against."]},{"k":"H8619","v":["תָּקוֹעַ","tâqôa‛","taw-ko'-ah","From H8628 (in the muscal sense); a trumpet: - trumpet."]},{"k":"H8620","v":["תְּקוֹעַ","teqôa‛","tek-o'-ah","A form of H8619; Tekoa, a place in Palestine: - Tekoa, Tekoah."]},{"k":"H8621","v":["תְּקֹעִי    תְּקוֹעִי","teqô‛ı̂y    teqô‛ı̂y","tek-o-ee', tek-o-ee'","Patronymic from H8620; a Tekoite or inhabitant of Tekoah: - Tekoite."]},{"k":"H8622","v":["תְּקֻפָה    תְּקוּפָה","teqûphâh    teqûphâh","tek-oo-faw', tek-oo-faw'","From H5362; a revolution, that is, (of the sun) course, (of time) lapse: - circuit, come about, end."]},{"k":"H8623","v":["תַּקִּיף","taqqı̂yph","tak-keef'","From H8630; powerful: - mightier."]},{"k":"H8624","v":["תַּקִּיף","taqqı̂yph","tak-keef'","(Chaldee), corresponding to H8623: - mighty, strong."]},{"k":"H8625","v":["תְּקַל","teqal","tek-al'","(Chaldee); corresponding to H8254; to balance: - Tekel, be weighed."]},{"k":"H8626","v":["תָּקַן","tâqan","taw-kan'","A primitive root; to equalize, that is, straighten (intransitively or transitively); figuratively to compose: - set in order, make straight."]},{"k":"H8627","v":["תְּקַן","teqan","tek-an'","(Chaldee), corresponding to H8626; to straighten up, that is, confirm: - establish."]},{"k":"H8628","v":["תָּקַע","tâqa‛","taw-kah'","A primitive root; to clatter, that is, slap (the hands together), clang (an instrument); by analogy to drive (a nail or tent pin, a dart, etc.); by implication to become bondsman (by handclasping): - blow ([a trumpet]), cast, clap, fasten, pitch [tent], smite, sound, strike, X suretiship, thrust."]},{"k":"H8629","v":["תֵּקַע","têqa‛","tay-kah'","From H8628; a blast of a trumpet: - sound."]},{"k":"H8630","v":["תָּקַף","tâqaph","taw-kaf'","A primitive root; to overpower: - prevail (against.)."]},{"k":"H8631","v":["תְּקֵף","teqêph","tek-afe'","(Chaldee), corresponding to H8630; to become (causatively make) mighty or (figuratively) obstinate: - make firm, harden, be (-come) strong."]},{"k":"H8632","v":["תְּקֹף","teqôph","tek-ofe'","(Chaldee), corresponding to H8633; power: - might, strength."]},{"k":"H8633","v":["תֹּקֶף","tôqeph","to'-kef","From H8630; might or (figuratively) positiveness: - authority, power, strength."]},{"k":"H8634","v":["תַּרְאֲלָה","tar'ălâh","tar-al-aw'","Probably for H8653; a reeling; Taralah, a place in Palestine: - Taralah."]},{"k":"H8635","v":["תַּרְבּוּת","tarbûth","tar-booth'","From H7235; multiplication, that is, progeny: - increase."]},{"k":"H8636","v":["תַּרְבִּית","tarbı̂yth","tar-beeth'","From H7235; multiplication, that is, percentage or bonus in addition to principal: - increase, unjust gain."]},{"k":"H8637","v":["תִּרְגַּל","tirgal","teer-gal'","A denominative from H7270; to cause to walk: - teach to go."]},{"k":"H8638","v":["תִּרְגַּם","tirgam","teer-gam'","A denominative from H7275 in the sense of throwing over; to transfer, that is, translate: - interpret."]},{"k":"H8639","v":["תַּרְדֵּמָה","tardêmâh","tar-day-maw'","From H7290; a lethargy or (by implication) trance: - deep sleep."]},{"k":"H8640","v":["תִּרְהָקָה","tirhâqâh","teer-haw'-kaw","Of foreign derivation; Tirhakah, a king of Kush: - Tirhakah."]},{"k":"H8641","v":["תְּרֻמָה    תְּרוּמָה","terûmâh    terûmâh","ter-oo-maw', ter-oo-maw'","(The second form used in Deu_12:11); from H7311; a present (as offered up), especially in sacrifice or as tribute: - gift, heave offering ([shoulder]), oblation, offered (-ing)."]},{"k":"H8642","v":["תְּרוּמִיָּה","terûmı̂yâh","ter-oo-mee-yaw'","Formed as H8641; a sacrificial offering: - oblation."]},{"k":"H8643","v":["תְּרוּעָה","terû‛âh","ter-oo-aw'","From H7321; clamor, that is, acclamation of joy or a battle cry; especially clangor of trumpets, as an alarum: - alarm, blow (-ing) (of, the) (trumpets), joy, jubile, loud noise, rejoicing, shout (-ing), (high, joyful) sound (-ing)."]},{"k":"H8644","v":["תְּרוּפָה","terûphâh","ter-oo-faw'","From H7322 in the sense of its congener H7495; a remedy: - medicine."]},{"k":"H8645","v":["תִּרְזָה","tirzâh","teer-zaw'","Probably from H7329; a species of tree (apparently from its slenderness), perhaps the cypress: - cypress."]},{"k":"H8646","v":["תֶּרַח","terach","teh'-rakh","Of uncertain derivation; Terach, the father of Abraham; also a place in the Desert: - Tarah, Terah."]},{"k":"H8647","v":["תִּרְחֲנָה","tirchănâh","teer-khan-aw'","Of uncertain derivation; Tirchanah, an Israelite: - Tirhanah."]},{"k":"H8648","v":["תַּרְתֵּין    תְּרֵין","terêyn    tartêyn","ter-ane', tar-tane'","(Chaldee), the secend form is feminine; corresponding to H8147; two: - second, + twelve, two."]},{"k":"H8649","v":["תַּרְמִית    תַּרְמוּת    תָּרְמָה","tormâh    tarmûth    tarmı̂yth","tor-maw', tar-mooth', tar-meeth'","From H7411; fraud: - deceit (-ful), privily."]},{"k":"H8650","v":["תֹּרֶן","tôren","to'-ren","Probably for H766; a pole (as a mast or flag staff): - beacon, mast."]},{"k":"H8651","v":["תְּרַע","tera‛","ter-ah'","(Chaldee), corresponding to H8179; a door; by implication a palace: - gate mouth."]},{"k":"H8652","v":["תָּרָע","târâ‛","taw-raw'","(Chaldee), from H8651; a doorkeeper: - porter."]},{"k":"H8653","v":["תַּרְעֵלָה","tar‛êlâh","tar-ay-law'","From H7477; reeling: - astonishment, trembling."]},{"k":"H8654","v":["תִּרְעָתִי","tir‛âthı̂y","teer-aw-thee'","Patrial from an unused name meaning gate; a Tirathite or inhabitant of an unknown Tirah: - Tirathite."]},{"k":"H8655","v":["תְּרָפִים","terâphı̂ym","ter-aw-feme'","Plural perhaps from H7495; a healer; Teraphim (singular or plural) a family idol: - idols (-atry), images, teraphim."]},{"k":"H8656","v":["תִּרְצָה","tirtsâh","teer-tsaw'","From H7521; delightsomeness; Tirtsah, a place in Palestine; also an Israelitess: - also an Israelitess: - Tirzah."]},{"k":"H8657","v":["תֶּרֶשׁ","teresh","teh'-resh","Of foreign derivation; Teresh, a eunuch of Xerxes: - Teresh."]},{"k":"H8658","v":["תַּרְשִׁישׁ","tarshı̂ysh","tar-sheesh'","Probably of foreign derivation (compare H8659); a gem, perhaps the topaz: - beryl."]},{"k":"H8659","v":["תַּרְשִׁישׁ","tarshı̂ysh","tar-sheesh'","Probably the same as H8658 (as the region of the stone, or the reverse); Tarshish, a place on the Mediterranean, hence the epithet of a merchant vessel (as if for or from that port); also the name of a Persian and of an Israelite: - Tarshish, Tharshish."]},{"k":"H8660","v":["תִּרְשָׁתָא","tirshâthâ'","teer-shaw-thaw'","Of foreign derivation; the title of a Persian deputy or governor: - Tirshatha."]},{"k":"H8661","v":["תַּרְתָּן","tartân","tar-tawn'","Of foreign derivation; Tartan, an Assyrian: - Tartan."]},{"k":"H8662","v":["תַּרְתָּק","tartâq","tar-tawk'","Of foreign derivation; Tartak, a deity of the Avvites: - Tartak."]},{"k":"H8663","v":["תְּשֻׁאָה","teshû'âh","tesh-oo-aw'","From H7722; a crashing or loud clamor: - crying, noise, shouting, stir."]},{"k":"H8664","v":["תִּשְׁבִּי","tishbı̂y","tish-bee'","Patrial from an unused name meaning recourse; a Tishbite or inhabitant of Tishbeh (in Gilead): - Tishbite."]},{"k":"H8665","v":["תַּשְׁבֵּץ","tashbêts","tash-bates'","From H7660; checkered stuff (as reticulated): - broidered."]},{"k":"H8666","v":["תְּשֻׁבָה    תְּשׁוּבָה","teshûbâh    teshûbâh","tesh-oo-baw', tesh-oo-baw'","From H7725; a recurrence (of time or place); a reply (as returned): - answer, be expired, return."]},{"k":"H8667","v":["תְּשׂוּמֶת","teśûmeth","tes-oo-meth'","From H7760; a deposit, that is, pledging: -  + fellowship."]},{"k":"H8668","v":["תְּשֻׁעָה    תְּשׁוּעָה","teshû‛âh    teshû‛âh","tesh-oo-aw', tesh-oo-aw'","From H7768 in the sense of H3467; rescue (literally or figuratively, personal, national or spiritual): - deliverance, help, safety, salvation, victory."]},{"k":"H8669","v":["תְּשׁוּקָה","teshûqâh","tesh-oo-kaw'","From H7783 in the original sense of stretching out after; a longing: - desire."]},{"k":"H8670","v":["תְּשׁוּרָה","teshûrâh","tesh-oo-raw'","From H7788 in the sense of arrival; a gift: - present."]},{"k":"H8671","v":["תְּשִׁיעִי","teshı̂y‛ı̂y","tesh-ee-ee'","Ordinal from H8672; ninth: - ninth."]},{"k":"H8672","v":["תִּשְׁעָה    תֵּשַׁע","têsha‛    tish‛âh","tay'-shah, tish-aw'","The second form is the masculine of the first; perhaps from H8159 through the idea of a turn to the next or full number ten; nine or (ordinal) ninth: - nine (+ -teen, + -teenth, -th)."]},{"k":"H8673","v":["תִּשְׁעִים","tish‛ı̂ym","tish-eem'","Multiple from H8672; ninety: - ninety."]},{"k":"H8674","v":["תַּתְּנַי","tattenay","tat-ten-ah'ee","Of foreign derivation; Tattenai, a Persian: - Tatnai."]},{"k":"G1","v":["Α","A","al'-fah","Of Hebrew origin; the first letter of the alphabet: figuratively only (from its use as a numeral) the first. Often used (usually “an”, before a vowel) also in composition (as a contraction from G427) in the sense of privation; so in many words beginning with this letter; occasionally in the sense of union (as a contraction of G260): - Alpha."]},{"k":"G2","v":["Ἀαρών","Aarōn","ah-ar-ohn'","Of Hebrew origin [H175]; Aaron, the brother of Moses: - Aaron."]},{"k":"G3","v":["Ἀβαδδών","Abaddōn","ab-ad-dohn'","Of Hebrew origin [H11]; a destroying angel: - Abaddon."]},{"k":"G4","v":["ἀβαρής","abarēs","ab-ar-ace'","From G1 (as a negative particle) and G922; weightless, that is (figuratively) not burdensome: - from being burdensome."]},{"k":"G5","v":["Ἀββᾶ","Abba","ab-bah'","Of Chaldee origin [H2]; father (as a vocative): - Abba."]},{"k":"G6","v":["Ἄβελ","Abel","ab'-el","Of Hebrew origin [H1893]; Abel, the son of Adam: - Abel."]},{"k":"G7","v":["Ἀβιά","Abia","ab-ee-ah'","Of Hebrew origin [H29]; Abijah, the name of two Israelites: - Abia."]},{"k":"G8","v":["Ἀβιάθαρ","Abiathar","ab-ee-ath'-ar","Of Hebrew origin [H54]; Abiathar, an Israelite: - Abiathar."]},{"k":"G9","v":["Ἀβιληνή","Abilēnē","ab-ee-lay-nay'","Of foreign origin (compare [H58]); Abilene, a region of Syria: - Abilene."]},{"k":"G10","v":["Ἀβιούδ","Abioud","ab-ee-ood'","Of Hebrew origin [H31]; Abihud, an Israelite: - Abiud."]},{"k":"G11","v":["Ἀβραάμ","Abraam","ab-rah-am'","Of Hebrew origin [H85]; Abraham, the Hebrew patriarch. In Act_7:16 the text should probably read Jacob: - Abraham."]},{"k":"G12","v":["ἄβυσσος","abussos","ab'-us-sos","From G1 (as a negative particle) and a variation of G1037; depthless, that is, (specifically), (infernal) “abyss”: - deep, (bottomless) pit."]},{"k":"G13","v":["Ἄγαβος","Agabos","ag'-ab-os","Of Hebrew origin (compare [H2285]); Agabus, an Israelite: - Agabus."]},{"k":"G14","v":["ἀγαθοεργέω","agathoergeō","ag-ath-er-gheh'-o","From G18 and G2041; to work good: - do good."]},{"k":"G15","v":["ἀγαθοποιέω","agathopoieō","ag-ath-op-oy-eh'-o","From G17; to be a well-doer (as a favor or a duty): - (when) do good (well)."]},{"k":"G16","v":["ἀγαθοποιΐ́α","agathopoiia","ag-ath-op-oy-ee'-ah","From G17; well-doing, that is, virtue: - well-doing."]},{"k":"G17","v":["ἀγαθοποιός","agathopoios","ag-ath-op-oy-os'","From G18 and G4160; a well-doer, that is, virtuous: - them that do well."]},{"k":"G18","v":["ἀγαθός","agathos","ag-ath-os'","A primary word; “good” (in any sense, often as noun): - benefit, good (-s, things), well. Compare G2570."]},{"k":"G19","v":["ἀγαθωσύνη","agathōsunē","ag-ath-o-soo'-nay","From G18; goodness, that is, virtue or beneficence: - goodness."]},{"k":"G20","v":["ἀγαλλίασις","agalliasis","ag-al-lee'-as-is","From G21; exultation; specifically welcome: - gladness, (exceeding) joy."]},{"k":"G21","v":["ἀγαλλιάω","agalliaō","ag-al-lee-ah'-o","From ἄγαν agan (much) and G242; properly to jump for joy, that is, exult: - be (exceeding) glad, with exceeding joy, rejoice (greatly)."]},{"k":"G22","v":["ἄγαμος","agamos","ag'-am-os","From G1 (as a negative particle) and G1062; unmarried: - unmarried."]},{"k":"G23","v":["ἀγανακτέω","aganakteō","ag-an-ak-teh'-o","From ἄγαν agan (much) and ἄχθος achhos̄ (grief; akin to the base of G43); to be greatly afflicted, that is, (figuratively) indignant: - be much (sore) displeased, have (be moved with, with) indignation."]},{"k":"G24","v":["ἀγανάκτησις","aganaktēsis","ag-an-ak'-tay-sis","From G23; indignation: - indignation."]},{"k":"G25","v":["ἀγαπάω","agapaō","ag-ap-ah'-o","Perhaps from ἄγαν agan (much; or compare [H5689]); to love (in a social or moral sense): - (be-) love (-ed). Compare G5368."]},{"k":"G26","v":["ἀγάπη","agapē","ag-ah'-pay","From G25; love, that is, affection or benevolence; specifically (plural) a love feast: - (feast of) charity ([-ably]), dear, love."]},{"k":"G27","v":["ἀγαπητός","agapētos","ag-ap-ay-tos'","From G25; beloved: - (dearly, well) beloved, dear."]},{"k":"G28","v":["Ἄγαρ","Agar","ag'-ar","Of Hebrew origin [H1904]; Hagar, the concubine of Abraham: - Hagar."]},{"k":"G29","v":["ἀγγαρεύω","aggareuō","ang-ar-yew'-o","Of foreign origin (compare [H104]); properly to be a courier, that is, (by implication) to press into public service: - compel (to go)."]},{"k":"G30","v":["ἀγγεῖον","aggeion","ang-eye'-on","From ἄγκάλη aggos (a pail, perhaps as bent; compare the base of G43); a receptacle: - vessel."]},{"k":"G31","v":["ἀγγελία","aggelia","ang-el-ee'-ah","From G32; an announcement, that is, (by implication) precept: - message."]},{"k":"G32","v":["ἄγγελος","aggelos","ang'-el-os","From ἀγγέλλω aggellō (probably derived from G71; compare G34; to bring tidings); a messenger; especially an “angel”; by implication a pastor: - angel, messenger."]},{"k":"G33","v":["ἄγε","age","ag'-eh","Imperative of G71; properly lead, that is, come on: - go to."]},{"k":"G34","v":["ἀγέλη","agelē","ag-el'-ay","From G71 (compare G32); a drove: - herd."]},{"k":"G35","v":["ἀγενεαλόγητος","agenealogētos","ag-en-eh-al-og'-ay-tos","From G1 (as negative particle) and G1075; unregistered as to birth: - without descent."]},{"k":"G36","v":["ἀγενής","agenēs","ag-en-ace'","From G1 (as negative particle) and G1085; properly without kin, that is, (of unknown descent, and by implication) ignoble: - base things."]},{"k":"G37","v":["ἁγιάζω","hagiazō","hag-ee-ad'-zo","From G40; to make holy, that is, (ceremonially) purify or consecrate; (mentally) to venerate: - hallow, be holy, sanctify."]},{"k":"G38","v":["ἁγιασμός","hagiasmos","hag-ee-as-mos'","From G37; properly purification, that is, (the state) purity; concretely (by Hebraism) a purifier: - holiness, sanctification."]},{"k":"G39","v":["ἅγιον","hagion","hag'-ee-on","Neuter of G40; a sacred thing (that is, spot): - holiest (of all), holy place, sanctuary."]},{"k":"G40","v":["ἅγιος","hagios","hag'-ee-os","From ἅγος hagos (an awful thing) compare G53, [H2282]; sacred (physically pure, morally blameless or religious, ceremonially consecrated): - (most) holy (one, thing), saint."]},{"k":"G41","v":["ἁγιότης","hagiotēs","hag-ee-ot'-ace","From G40; sanctity (that is, properly the state): - holiness."]},{"k":"G42","v":["ἁγιωσύνη","hagiōsunē","hag-ee-o-soo'-nay","From G40; sacredness (that is, properly the quality): - holiness."]},{"k":"G43","v":["ἀγκάλη","agkalē","ang-kal'-ay","From ἄγκος agkos (a bend, 'ache'); an arm (as curved): - arm."]},{"k":"G44","v":["ἄγκιστρον","agkistron","ang'-kis-tron","From the same as G43; a hook (as bent): - hook."]},{"k":"G45","v":["ἄγκυρα","agkura","ang'-koo-rah","From the same as G43; an “anchor” (as crooked): - anchor."]},{"k":"G46","v":["ἄγναφος","agnaphos","ag'-naf-os","From G1 (as a negative particle) and the same as G1102; properly unfulled, that is, (by implication) new (cloth): - new."]},{"k":"G47","v":["ἁγνεία","hagneia","hag-ni'-ah","From G53; cleanliness (the quality), that is, (specifically) chastity: - purity."]},{"k":"G48","v":["ἁγνίζω","hagnizō","hag-nid'-zo","From G53; to make clean, that is, (figuratively) sanctify (ceremonially or morally): - purity (self)."]},{"k":"G49","v":["ἁγνισμός","hagnismos","hag-nis-mos'","From G48; a cleansing (the act), that is, (ceremonially) lustration: - purification."]},{"k":"G50","v":["ἀγνοέω","agnoeō","ag-no-eh'-o","From G1 (as a negative particle) and G3539; not to know (through lack of information or intelligence); by implication to ignore (through disinclination): - (be) ignorant (-ly), not know, not understand, unknown."]},{"k":"G51","v":["ἀγνόημα","agnoēma","ag-no'-ay-mah","From G50; a thing ignored, that is, shortcoming: - error."]},{"k":"G52","v":["ἄγνοια","agnoia","ag'-noy-ah","From G50; ignorance (properly the quality): - ignorance."]},{"k":"G53","v":["ἁγνός","hagnos","hag-nos'","From the same as G40; properly clean, that is, (figuratively) innocent, modest, perfect: - chaste, clean, pure."]},{"k":"G54","v":["ἁγνότης","hagnotēs","hag-not'-ace","From G53; cleanness (the state), that is, (figuratively) blamelessness: - pureness."]},{"k":"G55","v":["ἁγνῶς","hagnōs","hag-noce'","Adverb from G53; purely, that is, honestly: - sincerely."]},{"k":"G56","v":["ἀγνωσία","agnōsia","ag-no-see'-ah","From G1 (as negative particle) and G1108; ignorance (properly the state): - ignorance, not the knowledge."]},{"k":"G57","v":["ἄγνωστος","agnōstos","ag'-noce-tos","From G1 (as negative particle) and G1110; unknown: - unknown."]},{"k":"G58","v":["ἀγορά","agora","ag-or-ah'","From ἀγείρω “ageiro” (to gather; probably akin to G1453); properly the town square (as a place of public resort); by implication a market or thoroughfare: - market (-place), street."]},{"k":"G59","v":["ἀγοράζω","agorazō","ag-or-ad'-zo","From G58; properly to go to market, that is, (by implication) to purchase; specifically to redeem: - buy, redeem."]},{"k":"G60","v":["ἀγοραῖος","agoraios","ag-or-ah'-yos","From G58; relating to the market place, that is, forensic (times); by implication vulgar: - baser sort, low."]},{"k":"G61","v":["ἄγρα","agra","ag'-rah","From G71; (abstractly) a catching (of fish); also (concretely) a haul (of fish): - draught."]},{"k":"G62","v":["ἀγράμματος","agrammatos","ag-ram-mat-os","From G1 (as negative particle) and G1121; unlettered, that is, illiterate: - unlearned."]},{"k":"G63","v":["ἀγραυλέω","agrauleō","ag-row-leh'-o","From G68 and G832 (in the sense of G833); to camp out: - abide in the field."]},{"k":"G64","v":["ἀγρεύω","agreuō","ag-rew-'o","From G61; to hunt, that is, (figuratively) to entrap: - catch."]},{"k":"G65","v":["ἀγριέλαιος","agrielaios","ag-ree-el'-ah-yos","From G66 and G1636; an oleaster: - olive tree (which is) wild."]},{"k":"G66","v":["ἄγριος","agrios","ag'-ree-os","From G68; wild (as pertaining to the country), literally (natural) or figuratively (fierce): - wild, raging."]},{"k":"G67","v":["Ἀγρίππας","Agrippas","ag-rip'-pas","Apparently from G66 and G2462; wild-horse tamer; Agrippas, one of the Herods: - Agrippa."]},{"k":"G68","v":["ἀγρός","agros","ag-ros'","From G71; a field (as a drive for cattle); generally the country; specifically a farm, that is, hamlet: - country, farm, piece of ground, land."]},{"k":"G69","v":["ἀγρυπνέω","agrupneō","ag-roop-neh'-o","Ultimately from G1 (as negative particle) and G5258; to be sleepless, that is, keep awake: - watch."]},{"k":"G70","v":["ἀγρυπνία","agrupnia","ag-roop-nee'-ah","From G69; sleeplessness, that is, a keeping awake: - watch."]},{"k":"G71","v":["ἄγω","agō","ag'-o","A primary verb; properly to lead; by implication to bring, drive, (reflexively) go, (specifically) pass (time), or (figuratively) induce: - be, bring (forth), carry, (let) go, keep, lead away, be open."]},{"k":"G72","v":["ἀγωγή","agōgē","ag-o-gay'","Reduplicated from G71; a bringing up, that is, mode of living: - manner of life."]},{"k":"G73","v":["ἀγών","agōn","ag-one'","From G71; properly a place of assembly (as if led), that is, (by implication) a contest (held there); figuratively an effort or anxiety: - conflict, contention, fight, race."]},{"k":"G74","v":["ἀγωνία","agōnia","ag-o-nee'-ah","From G73; a struggle (properly the state), that is, (figuratively) anguish: - agony."]},{"k":"G75","v":["ἀγωνίζομαι","agōnizomai","ag-o-nid'-zom-ahee","From G73; to struggle, literally (to compete for a prize), figuratively (to contend with an adversary), or generally (to endeavor to accomplish something): - fight, labor fervently, strive."]},{"k":"G76","v":["Ἀδάμ","Adam","ad-am'","Of Hebrew origin [H121]; Adam, the first man; typically (of Jesus) man (as his representative): - Adam."]},{"k":"G77","v":["ἀδάπανος","adapanos","ad-ap'-an-os","From G1 (as a negative particle) and G1160; costless, that is, gratuitous: - without expense."]},{"k":"G78","v":["Ἀδδί","Addi","ad-dee'","Probably of Hebrew origin (compare [H5716]); Addi, an Israelite: - Addi."]},{"k":"G79","v":["ἀδελφή","adelphē","ad-el-fay'","Feminine of G80; a sister (natural or ecclesiastical): - sister."]},{"k":"G80","v":["ἀδελφός","adelphos","ad-el-fos'","From G1 (as a connective particle) and δελφύς delphus (the womb); a brother (literally or figuratively) near or remote (much like [H1]): - brother."]},{"k":"G81","v":["ἀδελφότης","adelphotēs","ad-el-fot'-ace","From G80; brotherhood (properly the feeling of brotherliness), that is, (the (Christian) fraternity: - brethren, brotherhood."]},{"k":"G82","v":["ἄδηλος","adēlos","ad'-ay-los","From G1 (as a negative particle) and G1212; hidden, figuratively indistinct: - appear not, uncertain."]},{"k":"G83","v":["ἀδηλότης","adēlotēs","ad-ay-lot'-ace","From G82; uncertainty: - X uncertain."]},{"k":"G84","v":["ἀδήλως","adēlōs","ad-ay'-loce","Adverb from G82; uncertainly: - uncertainly."]},{"k":"G85","v":["ἀδημονέω","adēmoneō","ad-ay-mon-eh'-o","From a derivative of ἀδέω adeō (to be sated to loathing); to be in distress (of mind): - be full of heaviness, be very heavy."]},{"k":"G86","v":["ᾅδης","hadēs","hah'-dace","From G1 (as a negative particle) and G1492; properly unseen, that is, “Hades” or the place (state) of departed souls: - grave, hell."]},{"k":"G87","v":["ἀδιάκριτος","adiakritos","ad-ee-ak'-ree-tos","From G1 (as a negative particle) and a derivative of G1252; properly undistinguished, that is, (actively) impartial: - without partiality."]},{"k":"G88","v":["ἀδιάλειπτος","adialeiptos","ad-ee-al'-ipe-tos","From G1 (as a negative particle) and a derivative of a compound of G1223 and G3007; unintermitted, that is, permanent: - without ceasing, continual."]},{"k":"G89","v":["ἀδιαλείπτως","adialeiptōs","ad-ee-al-ipe'-toce","Adverb from G88; uninterruptedly, that is, without omission (on an appropriate occasion): - without ceasing."]},{"k":"G90","v":["ἀδιαφθορία","adiaphthoria","ad-ee-af-thor-ee'-ah","From a derivative of a compound of G1 (as a negative particle) and a derivative of G1311; incorruptibleness, that is, (figuratively) purity (of doctrine): - uncorruptness."]},{"k":"G91","v":["ἀδικέω","adikeō","ad-ee-keh'-o","From G94; to be unjust, that is, (actively) do wrong (morally, socially or physically): - hurt, injure, be an offender, be unjust, (do, suffer, take) wrong."]},{"k":"G92","v":["ἀδίκημα","adikēma","ad-eek'-ay-mah","From G91; a wrong done: - evil doing, iniquity, matter of wrong."]},{"k":"G93","v":["ἀδικία","adikia","ad-ee-kee'-ah","From G94; (legal) injustice (properly the quality, by implication the act); moral wrongfulness (of charater, life or act): - iniquity, unjust, unrighteousness, wrong."]},{"k":"G94","v":["ἄδικος","adikos","ad'-ee-kos","From G1 (as a negative particle) and G1349; unjust; by extension wicked; by implication treacherous; specifically heathen: - unjust, unrighteous."]},{"k":"G95","v":["ἀδίκως","adikōs","ad-ee'-koce","Adverb from G94; unjustly: - wrongfully."]},{"k":"G96","v":["ἀδόκιμος","adokimos","ad-ok'-ee-mos","From G1 (as a negative particle) and G1384; unapproved, that is, rejected; by implication worthless (literally or morally): - castaway, rejected, reprobate."]},{"k":"G97","v":["ἄδολος","adolos","ad'-ol-os","From G1 (as a negative particle) and G1388; undeceitful, that is, (figuratively) unadulterated: - sincere."]},{"k":"G98","v":["Ἀδραμυττηνός","Adramuttēnos","ad-ram-oot-tay-nos'","From Ἀδραμύττειον Adramutteion (a place in Asia Minor); Adramyttene or belonging to Adramyttium: - of Adramyttium."]},{"k":"G99","v":["Ἀδρίας","Adrias","ad-ree'-as","From Ἀδρία Adria (a place near its shore); the Adriatic sea (including the Ionian): - Adria."]},{"k":"G100","v":["ἁδρότης","hadrotēs","had-rot'-ace","From ἁδρός hadros (stout); plumpness, that is, (figuratively) liberality: - abundance."]},{"k":"G101","v":["ἀδυνατέω","adunateō","ad-oo-nat-eh'-o","From G102; to be unable, that is, (passively) impossible: - be impossible."]},{"k":"G102","v":["ἀδύνατος","adunatos","ad-oo'-nat-os","From G1 (as a negative particle) and G1415; unable, that is, weak (literally or figuratively); passively impossible: - could not do, impossible, impotent, not possible, weak."]},{"k":"G103","v":["ᾄδω","adō","ad'-o","A primary verb; to sing: - sing."]},{"k":"G104","v":["ἀεί","aei","ah-eye'","From an obsolete primary noun (apparently meaning continued duration); “ever”; by qualification regularly; by implication earnestly: - always, ever."]},{"k":"G105","v":["ἀετός","aetos","ah-et-os'","From the same as G109; an eagle (from its wind like flight): - eagle."]},{"k":"G106","v":["ἄζυμος","azumos","ad'-zoo-mos","From G1 (as a negative particle) and G2219; unleavened, that is, (figuratively) uncorrupted; (in the neuter plural) specifically (by implication) the Passover week: - unleavened (bread)."]},{"k":"G107","v":["Ἀζώρ","Azōr","ad-zore'","Of Hebrew origin (compare [H5809]); Azor, an Israelite: - Azor."]},{"k":"G108","v":["Ἄζωτος","Azōtos","ad'-zo-tos","Of Hebrew origin [H795]; Azotus (that is, Ashdod), a place in Palestine: - Azotus."]},{"k":"G109","v":["ἀήρ","aēr","ah-ayr'","From ἄημι aēmi (to breathe unconsciously, that is, respire; by analogy to blow); “air” (as naturally circumambient): - air. Compare G5594."]},{"k":"G110","v":["ἀθανασία","athanasia","ath-an-as-ee'-ah","From a compound of G1 (as a negative particle) and G2288; deathlessness: - immortality."]},{"k":"G111","v":["ἀθέμιτος","athemitos","ath-em'-ee-tos","From G1 (as a negative particle) and a derivative of θέμις themis (statute; from the base of G5087); illegal; by implication flagitious: - abominable, unlawful thing."]},{"k":"G112","v":["ἄθεος","atheos","ath'-eh-os","From G1 (as a negative particle) and G2316; godless: - without God."]},{"k":"G113","v":["ἄθεσμος","athesmos","ath'-es-mos","From G1 (as a negative particle) and a derivative of G5087 (in the sense of enacting); lawless, that is, (by implication) criminal: - wicked."]},{"k":"G114","v":["ἀθετέω","atheteō","ath-et-eh'-o","From a compound of G1 (as a negative particle) and a derivative of G5087; to set aside, that is, (by implication) to disesteem, neutralize or violate: - cast off, despise, disannul, frustrate, bring to nought, reject."]},{"k":"G115","v":["ἀθέτησις","athetēsis","ath-et'-ay-sis","From G114; cancellation (literally or figuratively): - disannulling, put away."]},{"k":"G116","v":["Ἀθῆναι","Athēnai","ath-ay'-nahee","Plural of Ἀθήνη Athēnē (the goddess of wisdom, who was reputed to have founded the city); Athenae, the captital of Greece: - Athens."]},{"k":"G117","v":["Ἀθηναῖος","Athēnaios","ath-ay-nah'-yos","From G116; an Athenaean or inhabitant of Athenae: - Athenian."]},{"k":"G118","v":["ἀθλέω","athleō","ath-leh'-o","From ἄθλος athlos (a contest in the public lists); to contend in the competitive games: - strive."]},{"k":"G119","v":["ἄθλησις","athlēsis","ath'-lay-sis","From G118; a struggle (figuratively): - fight."]},{"k":"G120","v":["ἀθυμέω","athumeō","ath-oo-meh'-o","From a compound of G1 (as a negative particle) and G2372; to be spiritless, that is, disheartened: - be dismayed."]},{"k":"G121","v":["ἄθωος","athōos","ath'-o-os","From G1 (as a negative particle) and a probable derivative of G5087 (meaning a penalty); not guilty: - innocent."]},{"k":"G122","v":["αἴγειος","aigeios","ah'ee-ghi-os","Form αἴξ aix (a goat); belonging to a goat: - goat."]},{"k":"G123","v":["αἰγιαλός","aigialos","ahee-ghee-al-os'","From ἀΐ́σσω aissō (to rush) and G251 (in the sense of the sea); a beach (on which the waves dash): - shore."]},{"k":"G124","v":["Αἰγύπτιος","Aiguptios","ahee-goop'-tee-os","From G125; an Egyptian or inhabitant of AEgyptus: - Egyptian."]},{"k":"G125","v":["Αἴγυπτος","Aiguptos","ah'ee-goop-tos","Of uncertain derivation; AEgyptus, the land of the Nile: - Egypt."]},{"k":"G126","v":["ἀΐ́διος","aidios","ah-id'-ee-os","From G104; everduring (forward and backward, or foward only): - eternal, everlasting."]},{"k":"G127","v":["αἰδώς","aidōs","ahee-doce'","Perhaps from G1 (as a negative particle) and G1492 (through the idea of downcast eyes); bashfulness, that is, (towards men), modesty or (towards God) awe: - reverence, shamefacedness."]},{"k":"G128","v":["Αἰθίοψ","Aithiops","ahee-thee'-ops","From αἴθω aithō (to scorch) and ὤψ ōps (the face, from G3700); an Ethiopian (as a blackamoor): - Ethiopian."]},{"k":"G129","v":["αἷμα","aima","hah'ee-mah","Of uncertain derivation; blood, literally (of men or animals), figuratively (the juice of grapes) or specifically (the atoning blood of Christ); by implication bloodshed, also kindred: - blood."]},{"k":"G130","v":["αἱματεκχυσία","aihmatekchusia","hahee-mat-ek-khoo-see'-ah","From G129 and a derivative of G1632; an effusion of blood: - shedding of blood."]},{"k":"G131","v":["αἱμοῤῥέω","aihmorrheō","hahee-mor-hreh'-o","From G129 and G4482; to flow blood, that is, have a haemorrhage: - diseased with an issue of blood."]},{"k":"G132","v":["Αἰνέας","Aineas","ahee-neh'-as","Of uncertain derivation; AEneas, an Israelite: - AEneas."]},{"k":"G133","v":["αἴνεσις","ainesis","ah'ee-nes-is","From G134; a praising (the act), that is, (specifically) a thank (offering): - praise."]},{"k":"G134","v":["αἰνέω","aineō","ahee-neh'-o","From G136; to praise (God): - praise."]},{"k":"G135","v":["αἴνιγμα","ainigma","ah'ee-nig-ma","From a derivative of G136 (in its primary sense); an obscure saying (“enigma”), that is, (abstractly) obscureness: - X darkly."]},{"k":"G136","v":["αἶνος","ainos","ah'ee-nos","Apparently a primary word; properly a story, but used in the sense of G1868; praise (of God): - praise."]},{"k":"G137","v":["Αἰνών","Ainōn","ahee-nohn'","Of Hebrew origin (a derivative of [H5869], place of springs); AEnon, a place in Palestine: - AEnon."]},{"k":"G138","v":["αἱρέομαι","aihreomai","hahee-reh'-om-ahee","Probably akin to G142; to take for oneself, that is, to prefer. Some of the forms are borrowed from a cognate (ἕλλομαι hellomai), which is otherwise obsolete: - choose. Some of the forms are borrowed from a cognate hellomai, hel-lom-ahee; which is otherwise obsolete."]},{"k":"G139","v":["αἵρεσις","hairesis","hah'ee-res-is","From G138; properly a choice, that is, (specifically) a party or (abstractly) disunion. (“heresy” is the Greek word itself.): - heresy [which is the Greekord itself], sect."]},{"k":"G140","v":["αἱρετίζω","aihretizō","hahee-ret-id'-zo","From a derivative of G138; to make a choice: - choose."]},{"k":"G141","v":["αἱρετικός","aihretikos","hahee-ret-ee-kos'","From the same as G140; a schismatic. (“heretic” is the Greek word itself.): - heretic [the Greekord itself]."]},{"k":"G142","v":["αἴρω","airō","ah'ee-ro","A primary verb; to lift; by implication to take up or away; figuratively to raise (the voice), keep in suspense (the mind); specifically to sail away (that is, weigh anchor); by Hebraism (compare [H5375]) to expiate sin: - away with, bear (up), carry, lift up, loose, make to doubt, put away, remove, take (away, up)."]},{"k":"G143","v":["αἰσθάνομαι","aisthanomai","ahee-sthan'-om-ahee","Of uncertain derivation; to apprehend (properly by the senses): - perceive."]},{"k":"G144","v":["αἴσθησις","aisthēsis","ah'ee-sthay-sis","From G143; perception, that is, (figuratively) discernment: - judgment."]},{"k":"G145","v":["αἰσθητήριον","aisthētērion","ahee-sthay-tay'-ree-on","From a derivative of G143; properly an organ of perception, that is, (figuratively) judgment: - senses."]},{"k":"G146","v":["αἰσχροκερδής","aischrokerdēs","ahee-skhrok-er-dace'","From G150 and κέρδος kerdos (gain); sordid: - given to (greedy of) filthy lucre."]},{"k":"G147","v":["αἰσχροκερδῶς","aischrokerdōs","ahee-skhrok-er-doce'","Adverb from G146; sordidly: - for filthy lucre’s sake."]},{"k":"G148","v":["αἰσχρολογία","aischrologia","ahee-skhrol-og-ee'-ah","From G150 and G3056; vile conversation: - filthy communication."]},{"k":"G149","v":["αἰσχρόν","aischron","ahee-skhron'","Neuter of G150; a shameful thing, that is, indecorum: - shame."]},{"k":"G150","v":["αἰσχρός","aischros","ahee-skhros'","From the same as G153; shameful, that is, base (specifically venal): - filthy."]},{"k":"G151","v":["αἰσχρότης","aischrotēs","ahee-skhrot'-ace","From G150; shamefulness, that is, obscenity: - filthiness."]},{"k":"G152","v":["αἰσχύνη","aischunē","ahee-skhoo'-nay","From G153; shame or disgrace (abstractly or concretely): - dishonesty, shame."]},{"k":"G153","v":["αἰσχύνομαι","aischunomai","ahee-skhoo'-nom-ahee","From αἶσχος aischos (disfigurement, that is, disgrace); to feel shame (for oneself): - be ashamed."]},{"k":"G154","v":["αἰτέω","aiteō","ahee-teh'-o","Of uncertain derivation; to ask (in generally): - ask, beg, call for, crave, desire, require. Compare G4441."]},{"k":"G155","v":["αἴτημα","aitēma","ah'ee-tay-mah","From G154; a thing asked or (abstractly) an asking: - petition, request, required."]},{"k":"G156","v":["αἰτία","aitia","ahee-tee'-a","From the same as G154; a cause (as if asked for), that is, (logical) reason (motive, matter), (legal) crime (alleged or proved): - accusation, case, cause, crime, fault, [wh-]ere[-fore]."]},{"k":"G157","v":["αἰτίαμα","aitiama","ahee-tee'-am-ah","From a derivative of G156; a thing charged: - complaint."]},{"k":"G158","v":["αἴτιον","aition","ah'ee-tee-on","Neuter of G159; a reason or crime (like G156): - cause, fault."]},{"k":"G159","v":["αἴτιος","aitios","ah'ee-tee-os","From the same as G154; causative, that is, (concretely) a causer: - author."]},{"k":"G160","v":["αἰφνίδιος","aiphnidios","aheef-nid'-ee-os","From a compound of G1 (as a negative particle) and G5316 (compare G1810), (meaning non apparent); unexpected, that is, (adverbially) suddenly: - sudden, unawares."]},{"k":"G161","v":["αἰχμαλωσία","aichmalōsia","aheekh-mal-o-see'-ah","From G164; captivity: - captivity."]},{"k":"G162","v":["αἰχμαλωτεύω","aichmalōteuō","aheekh-mal-o-tew'-o","From G164; to capture (like G163): - lead captive."]},{"k":"G163","v":["αἰχμαλωτίζω","aichmalōtizō","aheekh-mal-o-tid'-zo","From G164; to make captive: - lead away captive, bring into captivity."]},{"k":"G164","v":["αἰχμαλωτός","aichmalōtos","aheekh-mal-o-tos","From αἰχμή aichmē (a spear) and a derivative of the same as G259; properly a prisoner of war, that is, (generally) a captive: - captive."]},{"k":"G165","v":["αἰών","aiōn","ahee-ohn'","From the same as G104; properly an age; by extension perpetuity (also past); by implication the world; specifically (Jewish) a Messianic period (present or future): - age, course, eternal, (for) ever (-more), [n-]ever, (beginning of the, while the) world (began, without end). Compare G5550."]},{"k":"G166","v":["αἰώνιος","aiōnios","ahee-o'-nee-os","From G165; perpetual (also used of past time, or past and future as well): - eternal, for ever, everlasting, world (began)."]},{"k":"G167","v":["ἀκαθαρσία","akatharsia","ak-ath-ar-see'-ah","From G169; impurity (the quality), physically or morally: - uncleanness."]},{"k":"G168","v":["ἀκαθάρτης","akathartēs","ak-ath-ar'-tace","From G169; impurity (the state), morally: - filthiness."]},{"k":"G169","v":["ἀκάθαρτος","akathartos","ak-ath'-ar-tos","From G1 (as a negative particle) and a presumed derivative of G2508 (meaning cleansed); impure (ceremonially, morally (lewd) or specifically (demonic)): - foul, unclean."]},{"k":"G170","v":["ἀκαιρέομαι","akairēomai","ak-ahee-reh'-om-ahee","From a compound of G1 (as a negative particle) and G2540 (meaning unseasonable); to be inopportune (for oneself), that is, to fail of a proper occasion: - lack opportunity."]},{"k":"G171","v":["ἀκαίρως","akairōs","ak-ah'ee-roce","Adverb from the same as G170; inopportunely: - out of season."]},{"k":"G172","v":["ἄκακος","akakos","ak'-ak-os","From G1 (as a negative particle) and G2556; not bad, that is, (objectively) innocent or (subjectively) unsuspecting: - harmless, simple."]},{"k":"G173","v":["ἄκανθα","akantha","ak'-an-thah","Probably from the same as G188; a thorn: - thorn."]},{"k":"G174","v":["ἀκάνθινος","akanthinos","ak-an'-thee-nos","From G173; thorny: - of thorns."]},{"k":"G175","v":["ἄκαρπος","akarpos","ak'-ar-pos","From G1 (as a negative particle) and G2590; barren (literally or figuratively): - without fruit, unfruitful."]},{"k":"G176","v":["ἀκατάγνωστος","akatagnōstos","ak-at-ag'-noce-tos","From G1 (as a negative particle) and a derivative of G2607; unblamable: - that cannot be condemned."]},{"k":"G177","v":["ἀκατακάλυπτος","akatakaluptos","ak-at-ak-al'-oop-tos","From G1 (as a negative particle) and a derivative of a compound of G2596 and G2572; unveiled: - uncovered."]},{"k":"G178","v":["ἀκατάκριτος","akatakritos","ak-at-ak'-ree-tos","From G1 (as a negative particle) and a derivative of G2632; without (legal) trial: - uncondemned."]},{"k":"G179","v":["ἀκατάλυτος","akatalutos","ak-at-al'-oo-tos","From G1 (as a negative particle) and a derivative of G2647; indissoluble, that is, (figuratively) permanent: - endless."]},{"k":"G180","v":["ἀκατάπαυστος","akatapaustos","ak-at-ap'-ow-stos","From G1 (as a negative particle) and a derivative of G2664; unrefraining: - that cannot cease."]},{"k":"G181","v":["ἀκαταστασία","akatastasia","ak-at-as-tah-see'-ah","From G182; instability, that is, disorder: - commotion, confusion, tumult."]},{"k":"G182","v":["ἀκατάστατος","akatastatos","ak-at-as'-tat-os","From G1 (as a negative particle) and a derivative of G2525; inconstant: - unstable."]},{"k":"G183","v":["ἀκατάσχετος","akataschetos","ak-at-as'-khet-os","From G1 (as a negative particle) and a derivative of G2722; unrestrainable: - unruly."]},{"k":"G184","v":["Ἀκελδαμά","Akeldama","ak-el-dam-ah'","Of Chaldee origin (meaning field of blood; corresponding to [H2506] and [H1818]); Akeldama, a place near Jerusalem: - Aceldama."]},{"k":"G185","v":["ἀκέραιος","akeraios","ak-er'-ah-yos","From G1 (as a negative particle) and a presumed derivative of G2767; unmixed, that is, (figuratively) innocent: - harmless, simple."]},{"k":"G186","v":["ἀκλινής","aklinēs","ak-lee-nace'","From G1 (as a negative particle) and G2827; not leaning, (that is, (figuratively) firm: - without wavering."]},{"k":"G187","v":["ἀκμάζω","akmazō","ak-mad'-zo","From the same as G188; to make a point, that is, (figuratively) mature: - be fully ripe."]},{"k":"G188","v":["ἀκμήν","akmēn","ak-mane'","Accusative case of a noun (“acme”) akin to ἀκή akē (a point) and meaning the same; adverbially just now, that is, still: - yet."]},{"k":"G189","v":["ἀκοή","akoē","ak-o-ay'","From G191; hearing (the act, the sense or the thing heard): - audience, ear, fame, which ye heard, hearing, preached, report, rumor."]},{"k":"G190","v":["ἀκολουθέω","akoloutheō","ak-ol-oo-theh'-o","From G1 (as a particle of union) and κέλευθος keleuthos (a road); properly to be in the same way with, that is, to accompany (specifically as a disciple): - follow, reach."]},{"k":"G191","v":["ἀκούω","akouō","ak-oo'-o","A primary verb; to hear (in various senses): - give (in the) audience (of), come (to the ears), ([shall]) hear (-er, -ken), be noised, be reported, understand."]},{"k":"G192","v":["ἀκρασία","akrasia","ak-ras-ee'-a","From G193; want of self restraint: - excess, incontinency."]},{"k":"G193","v":["ἀκράτης","akratēs","ak-rat'-ace","From G1 (as a negative particle) and G2904; powerless, that is, without self control: - incontinent."]},{"k":"G194","v":["ἄκρατος","akratos","ak'-rat-os","From G1 (as a negative particle) and a presumed derivative of G2767; undiluted: - without mixture."]},{"k":"G195","v":["ἀκρίβεια","akribeia","ak-ree'-bi-ah","From the same as G196; exactness: - perfect manner."]},{"k":"G196","v":["ἀκριβέστατος","akribestatos","ak-ree-bes'-ta-tos","Superlative of ἀκριβης akribēs (a derivative of the same as G206); most exact: - most straitest."]},{"k":"G197","v":["ἀκριβέστερον","akribesteron","ak-ree-bes'-ter-on","Neuter of the comparative of the same as G196; (adverbially) more exactly: - more perfect (-ly)."]},{"k":"G198","v":["ἀκριβόω","akriboō","ak-ree-bo'-o","From the same as G196; to be exact, that is, ascertain: - enquire diligently."]},{"k":"G199","v":["ἀκριβῶς","akribōs","ak-ree-boce'","Adverb from the same as G196; exactly: - circumspectly, diligently, perfect (-ly)."]},{"k":"G200","v":["ἀκρίς","akris","ak-rece'","Apparently from the same as G206; a locust (as pointed, or as lighting on the top of vegetation): - locust."]},{"k":"G201","v":["ἀκροατήριον","akroaterion","ak-ro-at-ay'-ree-on","From G202; an audience room: - place of hearing."]},{"k":"G202","v":["ἀκροατής","akroatēs","ak-ro-at-ace'","From ἀκροάομαι akroaomai (to listen; apparently an intensive of G191); a hearer (merely): - hearer."]},{"k":"G203","v":["ἀκροβυστία","akrobustia","ak-rob-oos-tee'-ah","From G206 and probably a modified form of πόσθη posthē (the penis or male sexual organ); the prepuce; by implication an uncircumcised (that is, gentile, figuratively unregenerate) state or person: - not circumcised, uncircumcised [with G2192], uncircumcision."]},{"k":"G204","v":["ἀκρογωνιαῖος","akrogōniaios","ak-rog-o-nee-ah'-yos","From G206 and G1137; belonging to the extreme corner: - chief corner."]},{"k":"G205","v":["ἀκροθίνιον","akrothinion","ak-roth-in'-ee-on","From G206 and θίς this (a heap); properly (in the plural) the top of the heap, that is, (by implication) best of the booty: - spoils."]},{"k":"G206","v":["ἄκρον","akron","ak'-ron","Neuter of an adjective probably akin to the base of G188; the extremity: - one end . . . other, tip, top, uttermost part."]},{"k":"G207","v":["Ἀκύλας","Akulas","ak-oo'-las","Probably for the Latin Aquila (an eagle); Akulas, an Israelite: - Aquila."]},{"k":"G208","v":["ἀκυρόω","akuroō","ak-oo-ro'-o","From G1 (as a negative particle) and G2964; to invalidate: - disannul, make of none effect."]},{"k":"G209","v":["ἀκωλύτως","akōlutōs","ak-o-loo'-toce","Adverb from a compound of G1 (as a negative particle) and a derivative of G2967; in an unhindered manner, that is, freely: - no man forbidding him."]},{"k":"G210","v":["ἄκων","akōn","ak'-ohn","From G1 (as a negative particle) and G1635; unwilling: - against the will."]},{"k":"G211","v":["ἀλάβαστρον","alabastron","al-ab'-as-tron","Neuter of ἀλάβαστρος alabastros (of uncertain derivation), the name of a stone; properly an “alabaster” box, that is, (by extension) a perfume vase (of any material): - (alabaster) box."]},{"k":"G212","v":["ἀλαζονεία","alazoneia","al-ad-zon-i'-a","From G213; braggadocio, that is, (by implication) self confidence: - boasting, pride."]},{"k":"G213","v":["ἀλαζών","alazōn","al-ad-zone'","From ἄλη alē (vagrancy); braggart: - boaster."]},{"k":"G214","v":["ἀλαλάζω","alalazō","al-al-ad'-zo","From ἀλαλή alalē (a shout, “halloo”); to vociferate, that is, (by implication) to wail; figuratively to clang: - tinkle, wail."]},{"k":"G215","v":["ἀλάλητος","alalētos","al-al'-ay-tos","From G1 (as a negative particle) and a derivative of G2980; unspeakable: - unutterable, which cannot be uttered."]},{"k":"G216","v":["ἄλαλος","alalos","al'-al-os","From G1 (as a negative particle) and G2980; mute: - dumb."]},{"k":"G217","v":["ἅλας","halas","hal'-as","From G251; salt; figuratively prudence: - salt."]},{"k":"G218","v":["ἀλείφω","aleiphō","al-i'-fo","From G1 (as a particle of union) and the base of G3045; to oil (with perfume): - anoint."]},{"k":"G219","v":["ἀλεκτοροφωνία","alektorophōnia","al-ek-tor-of-o-nee'-ah","From G220 and G5456; cock crow, that is, the third night watch: - cockcrowing."]},{"k":"G220","v":["ἀλέκτωρ","alektōr","al-ek'-tore","From ἀλέκω alekō (to ward off); a cock or male fowl: - cock."]},{"k":"G221","v":["Ἀλεξανδρεύς","Alexandreus","al-ex-and-reuce'","From Ἀλεξάνδρεια Alexandreia (the city so called); an Alexandreian or inhabitant of Alexandria: - of Alexandria, Alexandrian."]},{"k":"G222","v":["Ἀλεξανδρίνος","Alexandrinos","al-ex-an-dree'-nos","From the same as G221; Alexandrine, or belonging to Alexandria: - of Alexandria."]},{"k":"G223","v":["Ἀλέξανδρος","Alexandros","al-ex'-an-dros","From the same as (the first part of) G220 and G435; man-defender; Alexander, the name of three Israelites and one other man: - Alexander."]},{"k":"G224","v":["ἄλευρον","aleuron","al'-yoo-ron","From ἀλέω aleō (to grind); flour: - meal."]},{"k":"G225","v":["ἀλήθεια","alētheia","al-ay'-thi-a","From G227; truth: - true, X truly, truth, verity."]},{"k":"G226","v":["ἀληθεύω","alētheuō","al-ayth-yoo'-o","From G227; to be true (in doctrine and profession): - speak (tell) the truth."]},{"k":"G227","v":["ἀληθής","alēthēs","al-ay-thace'","From G1 (as a negative particle) and G2990; true (as not concealing): - true, truly, truth."]},{"k":"G228","v":["ἀληθινός","alēthinos","al-ay-thee-nos'","From G227; truthful: - true."]},{"k":"G229","v":["ἀλήθω","alēthō","al-ay'-tho","From the same as G224; to grind: - grind."]},{"k":"G230","v":["ἀληθῶς","alēthōs","al-ay-thoce'","Adverb from G227; truly: - indeed, surely, of a surety, truly, of a (in) truth, verily, very."]},{"k":"G231","v":["ἁλιεύς","halieus","hal-ee-yoos'","From G251; a sailor (as engaged on the salt water), that is, (by implication) a fisher: - fisher (-man)."]},{"k":"G232","v":["ἁλιεύω","halieuō","hal-ee-yoo'-o","From G231; to be a fisher, that is, (by implication) to fish: - go a-fishing."]},{"k":"G233","v":["ἁλίζω","halizō","hal-id'-zo","From G251; to salt: - salt."]},{"k":"G234","v":["ἀλίσγεμα","alisgema","al-is'-ghem-ah","From ἀλισγέω alisgeō (to soil); (ceremonial) defilement: - pollution."]},{"k":"G235","v":["ἀλλά","alla","al-lah'","Neuter plural of G243; properly other things, that is, (adverbially) contrariwise (in many relations): - and, but (even), howbeit, indeed, nay, nevertheless, no, notwithstanding, save, therefore, yea, yet."]},{"k":"G236","v":["ἀλλάσσω","allassō","al-las'-so","From G243; to make different: - change."]},{"k":"G237","v":["ἀλλαχόθεν","allachothen","al-lakh-oth'-en","From G243; from elsewhere: - some other way."]},{"k":"G238","v":["ἀλληγορέω","allēgoreo","al-lay-gor-eh'-o","From G243 and ἀγορέω agoreō (to harangue). Compare G58; to allegorize: - be an allegory (the Greek word itself)."]},{"k":"G239","v":["ἀλληλούΐα","allēlouia","al-lay-loo'-ee-ah","Of hebrew origin (imperative of [H1984] and [H3050]); praise ye Jah!, an adoring exclamation: - alleluiah."]},{"k":"G240","v":["ἀλλήλων","allēlōn","al-lay'-lone","Genitive plural from G243 reduplicated; one another. (Sometimes with G3326 or G4314.): - each other, mutual, one another, (the other), (them-, your-) selves, (selves) together [sometimes with G3326 or G4314]."]},{"k":"G241","v":["ἀλλογενής","allogenēs","al-log-en-ace'","From G243 and G1085; foreign, that is, not a Jew: - stranger."]},{"k":"G242","v":["ἅλλομαι","hallomai","hal'-lom-ahee","Middle voice of apparently a primary verb; to jump; figuratively to gush: - leap, spring up."]},{"k":"G243","v":["ἄλλος","allos","al'-los","A primary word; “else”, that is, different (in many applications): - more, one (another), (an-, some an-) other (-s, -wise)."]},{"k":"G244","v":["ἀλλοτριεπίσκοπος","allotriepiskopos","al-lot-ree-ep-is'-kop-os","From G245 and G1985; overseeing others' affairs, that is, a meddler (specifically in Gentile customs): - busybody in other men’s matters."]},{"k":"G245","v":["ἀλλότριος","allotrios","al-lot'-ree-os","From G243; another's, that is, not one’s own; by extension foreign, not akin, hostile: - alien, (an-) other (man’s, men’s), strange (-r)."]},{"k":"G246","v":["ἀλλόφυλος","allophulos","al-lof'-oo-los","From G243 and G5443; foreign, that is, (specifically) Gentile: - one of another nation."]},{"k":"G247","v":["ἄλλως","allōs","al'-loce","Adverb from G243; differently: - otherwise."]},{"k":"G248","v":["ἀλοάω","aloaō","al-o-ah'-o","From the same as G257; to tread out grain: - thresh, tread out the corn."]},{"k":"G249","v":["ἄλογος","alogos","al'-og-os","From G1 (as a negative particle) and G3056; irrational: - brute, unreasonable."]},{"k":"G250","v":["ἀλοή","aloē","al'-o-ay'","Of foreign origin (compare [H174]); aloes (the gum): - aloes."]},{"k":"G251","v":["ἅλς","hals","halce","A primary word; “salt”: - salt."]},{"k":"G252","v":["ἁλυκός","halukos","hal-oo-kos'","From G251; briny: - salt."]},{"k":"G253","v":["ἀλυπότερος","alupoteros","al-oo-pot'-er-os","Comparative of a compound of G1 (as a negative particle) and G3077; more without grief: - less sorrowful."]},{"k":"G254","v":["ἅλυσις","halusis","hal'-oo-sis","Of uncertain derivation; a fetter or manacle: - bonds, chain."]},{"k":"G255","v":["ἀλυσιτελής","alusitelēs","al-oo-sit-el-ace'","From G1 (as a negative particle) and the base of G3081; gainless, that is, (by implication) pernicious: - unprofitable."]},{"k":"G256","v":["Ἀλφαῖος","Alphaios","al-fah'-yos","Of Hebrew origin (compare [H2501]); Alpheus, an Israelite: - Alpheus."]},{"k":"G257","v":["ἅλων","halōn","hal'-ohn","Probably form the base of G1507; a threshing floor (as rolled hard), that is, (figuratively) the grain (and chaff, as just threshed): - floor."]},{"k":"G258","v":["ἀλώπηξ","alōpex","al-o'-pakes","Of uncertain derivation; a fox, that is, (figuratively) a cunning person: - fox"]},{"k":"G259","v":["ἅλωσις","halōsis","hal'-o-sis","From a collateral form of G138; capture: - be taken."]},{"k":"G260","v":["ἅμα","hama","ham'-ah","A primary particle; properly at the “same” time, but freely used as a preposition or adverb denoting close association: - also, and, together, with (-al)."]},{"k":"G261","v":["ἀμαθής","amathēs","am-ath-ace'","From G1 (as a negative particle) and G3129; ignorant: - unlearned."]},{"k":"G262","v":["ἀμαράντινος","amarantinos","am-ar-an'-tee-nos","From G263; “amaranthine”, that is, (by implication) fadeless: - that fadeth not away."]},{"k":"G263","v":["ἀμάραντος","amarantos","am-ar'-an-tos","From G1 (as a negative particle) and a presumed derivative of G3133; unfading, that is, (by implication) perpetual: - that fadeth not away."]},{"k":"G264","v":["ἁμαρτάνω","hamartanō","ham-ar-tan'-o","Perhaps from G1 (as a negative particle) and the base of G3313; properly to miss the mark (and so not share in the prize), that is, (figuratively) to err, especially (morally) to sin: - for your faults, offend, sin, trespass."]},{"k":"G265","v":["ἁμάρτημα","hamartēma","ham-ar'-tay-mah","From G264; a sin (properly concrete): - sin."]},{"k":"G266","v":["ἁμαρτία","hamartia","ham-ar-tee'-ah","From G264; sin (properly abstract): - offence, sin (-ful)."]},{"k":"G267","v":["ἀμάρτυρος","amarturos","am-ar'-too-ros","From G1 (as a negative particle) and a form of G3144; unattested: - without witness."]},{"k":"G268","v":["ἁμαρτωλός","hamartōlos","ham-ar-to-los'","From G264; sinful, that is, a sinner: - sinful, sinner."]},{"k":"G269","v":["ἄμαχος","amachos","am'-akh-os","From G1 (as a negative particle) and G3163; peaceable: - not a brawler."]},{"k":"G270","v":["ἀμάω","amaō","am-ah'-o","From G260; properly to collect, that is, (by implication) reap: - reap down."]},{"k":"G271","v":["ἀμέθυστος","amethustos","am-eth'-oos-tos","From G1 (as a negative particle) and a derivative of G3184; the amethyst (supposed to prevent intoxication): - amethyst."]},{"k":"G272","v":["ἀμελέω","ameleo","am-el-eh'-o","From G1 (as a negative particle) and G3199; to be careless of: - make light of, neglect, be negligent, not regard."]},{"k":"G273","v":["ἄμεμπτος","amemptos","am'-emp-tos","From G1 (as a negative particle) and a derivative of G3201; irreproachable: - blameless, faultless, unblamable."]},{"k":"G274","v":["ἀμέμπτως","amemptōs","am-emp'-toce","Adverb from G273; faultlessly: - blameless, unblamably."]},{"k":"G275","v":["ἀμέριμνος","amerimnos","am-er'-im-nos","From G1 (as a negative particle) and G3308; not anxious: - without care (-fulness), secure."]},{"k":"G276","v":["ἀμετάθετος","ametathetos","am-et-ath'-et-os","From G1 (as a negative particle) and a derivative of G3346; unchangeable, or (neuter as abstract) unchangeability: - immutable (-ility)."]},{"k":"G277","v":["ἀμετακίνητος","ametakinētos","am-et-ak-in'-ay-tos","From G1 (as a negative particle) and a derivative of G3334; immovable: - unmovable."]},{"k":"G278","v":["ἀμεταμέλητος","ametamelētos","am-et-am-el'-ay-tos","From G1 (as a negative particle) and a presumed derivative of G3338; irrevocable: - without repentance, not to be repented of."]},{"k":"G279","v":["ἀμετανόητος","ametanoētos","am-et-an-o'-ay-tos","From G1 (as a negative particle) and a presumed derivative of G3340; unrepentant: - impenitent."]},{"k":"G280","v":["ἄμετρος","ametros","am'-et-ros","From G1 (as a negative particle) and G3358; immoderate: - (thing) without measure."]},{"k":"G281","v":["ἀμήν","amēn","am-ane'","Of Hebrew origin [H543]; properly firm, that is, (figuratively) trustworthy; adverbially surely (often as interjection so be it): - amen, verily."]},{"k":"G282","v":["ἀμήτωρ","amētōr","am-ay'-tore","From G1 (as a negative particle) and G3384; motherless, that is, of unknown maternity: - without mother."]},{"k":"G283","v":["ἀμίαντος","amiantos","am-ee'-an-tos","From G1 (as a negative particle) and a derivative of G3392; unsoiled, that is, (figuratively) pure: - undefiled."]},{"k":"G284","v":["Ἀμιναδάβ","Aminadab","am-ee-nad-ab'","Of Hebrew origin [H5992]; Aminadab, an Israelite: - Aminadab."]},{"k":"G285","v":["ἄμμος","ammos","am'-mos","Perhaps from G260; sand (as heaped on the beach): - sand."]},{"k":"G286","v":["ἀμνός","amnos","am-nos'","Apparently a primary word; a lamb: - lamb."]},{"k":"G287","v":["ἀμοιβή","amoibē","am-oy-bay'","From ἀμείβω ameibō (to exchange); requital: - requite."]},{"k":"G288","v":["ἄμπελος","ampelos","am'-pel-os","Probably from the base of G297 and that of G257; a vine (as coiling about a support): - vine."]},{"k":"G289","v":["ἀμπελουργός","ampelourgos","am-pel-oor-gos'","From G288 and G2041; a vine worker, that is, pruner: - vine-dresser."]},{"k":"G290","v":["ἀμπελών","ampelōn","am-pel-ohn'","From G288; a vineyard: - vineyard."]},{"k":"G291","v":["Ἀμπλίας","Amplias","am-plee'-as","Contracted for the Latin ampliatus (enlarged); Amplias, a Roman Christian: - Amplias."]},{"k":"G292","v":["ἀμύνομαι","amunomai","am-oo'-nom-ahee","Middle voice of a primary verb; to ward off (for oneself), that is, protect: - defend."]},{"k":"G293","v":["ἀμφίβληστρον","amphiblēstron","am-fib'-lace-tron","From a compound of the base of G297 and G906; a (fishing) net (as thrown about the fish): - net."]},{"k":"G294","v":["ἀμφιέννυμι","amphiennumi","am-fee-en'-noo-mee","From the base of G297 and ἕννυμι hennumi (to invest); to enrobe: - clothe."]},{"k":"G295","v":["Ἀμφίπολις","Amphipolis","am-fip'-ol-is","From the base of G297 and G4172; a city surrounded by a river; Amphipolis, a place in Macedonia: - Amphipolis."]},{"k":"G296","v":["ἄμφοδον","amphodon","am'-fod-on","From the base of G297 and G3598; a fork in the road: - where two ways meet."]},{"k":"G297","v":["ἀμφότερος","amphoteros","am-fot'-er-os","Comparative of ἀμφί amphi (around); (in plural) both: - both."]},{"k":"G298","v":["ἀμώμητος","amōmētos","am-o'-may-tos","From G1 (as a negative particle) and a derivative of G3469; unblameable: - blameless."]},{"k":"G299","v":["ἄμωμος","amōmos","am'-o-mos","From G1 (as a negative particle) and G3470; unblemished (literally or figuratively): - without blame (blemish, fault, spot), faultless, unblameable."]},{"k":"G300","v":["Ἀμών","Amōn","am-one'","Of hebrew origin [H526]; Amon, an Israelite: - Amon."]},{"k":"G301","v":["Ἀμώς","Amōs","am-oce'","Of Hebrew origin [H531]; Amos, an Israelite: - Amos."]},{"k":"G302","v":["ἄν","an","an","A primary particle, denoting a supposition, wish, possibility or uncertainty: - [what-, where-, whither-, who-]soever. Usually unexpressed except by the subjunctive or potential mood. Also contraction for G1437."]},{"k":"G303","v":["ἀνά","ana","an-ah'","A primary preposition and adverb; properly up; but (by extension) used (distributively) severally, or (locally) at (etc.): - and, apiece, by, each, every (man), in, through. In compounds (as a prefix) it often means (by implication) repetition, intensity, reversal, etc."]},{"k":"G304","v":["ἀναβαθμός","anabathmos","an-ab-ath-mos'","From G305 (compare G898); a stairway: - stairs."]},{"k":"G305","v":["ἀναβαίνω","anabainō","an-ab-ah'ee-no","From G303 and the base of G939; to go up (literally or figuratively): - arise, ascend (up), climb (go, grow, rise, spring) up, come (up)."]},{"k":"G306","v":["ἀναβάλλομαι","anaballomai","an-ab-al'-lom-ahee","Middle voice from G303 and G906; to put off (for oneself): - defer."]},{"k":"G307","v":["ἀναβιβάζω","anabibazō","an-ab-ee-bad'-zo","From G303 and a derivative of the base of G939; to cause to go up, that is, haul (a net): - draw."]},{"k":"G308","v":["ἀναβλέπω","anablepō","an-ab-lep'-o","From G303 and G991; to look up; by implication to recover sight: - look (up), see, receive sight."]},{"k":"G309","v":["ἀνάβλεψις","anablepsis","an-ab'-lep-sis","From G308; restoration of sight: - recovering of sight."]},{"k":"G310","v":["ἀναβοάω","anaboaō","an-ab-o-ah'-o","From G303 and G994; to halloo: - cry (aloud, out)."]},{"k":"G311","v":["ἀναβολή","anabolē","an-ab-ol-ay'","From G306; a putting off: - delay."]},{"k":"G312","v":["ἀναγγέλλω","anaggellō","an-ang-el'-lo","From G303 and the base of G32; to announce (in detail): - declare, rehearse, report, show, speak, tell."]},{"k":"G313","v":["ἀναγεννάω","anagennaō","an-ag-en-nah'-o","From G303 and G1080; to beget or (by extension) bear (again): - beget, (bear) X again."]},{"k":"G314","v":["ἀναγινώσκω","anaginōskō","an-ag-in-oce'-ko","From G303 and G1097; to know again, that is, (by extension) to read: - read."]},{"k":"G315","v":["ἀναγκάζω","anagkazō","an-ang-kad'-zo","From G318; to necessitate: - compel, constrain."]},{"k":"G316","v":["ἀναγκαῖος","anagkaios","an-ang-kah'-yos","From G318; necessary; by implication close (of kin): - near, necessary, necessity, needful."]},{"k":"G317","v":["ἀναγκαστῶς","anagkastōs","an-ang-kas-toce'","Adverb from a derivative of G315; compulsorily: - by constraint."]},{"k":"G318","v":["ἀναγκή","anagkē","an-ang-kay'","From G303 and the base of G43; constraint (literally or figuratively); by implication distress: - distress, must needs, (of) necessity (-sary), neededth, needful."]},{"k":"G319","v":["ἀναγνωρίζομαι","anagnōrizomai","an-ag-no-rid'-zom-ahee","Middle voice from G303 and G1107; to make (oneself) known: - be made known."]},{"k":"G320","v":["ἀνάγνωσις","anagnōsis","an-ag'-no-sis","From G314; (the act of) reading: - reading."]},{"k":"G321","v":["ἀνάγω","anagō","an-ag'-o","From G303 and G71; to lead up; by extension to bring out; specifically to sail away: - bring (again, forth, up again), depart, launch (forth), lead (up), loose, offer, sail, set forth, take up."]},{"k":"G322","v":["ἀναδείκνυμι","anadeiknumi","an-ad-ike'-noo-mee","From G303 and G1166; to exhibit, that is, (by implication) to indicate, appoint: - appoint, shew."]},{"k":"G323","v":["ἀνάδειξις","anadeixis","an-ad'-ike-sis","From G322; (the act of) exhibition: - shewing."]},{"k":"G324","v":["ἀναδέχομαι","anadechomai","an-ad-ekh'-om-ahee","From G303 and G1209; to entertain (as a guest): - receive."]},{"k":"G325","v":["ἀναδίδωμι","anadidōmi","an-ad-eed'-om-ee","From G303 and G1325; to hand over: - deliver."]},{"k":"G326","v":["ἀναζάω","anazaō","an-ad-zah'-o","From G303 and G2198; to recover life (literally or figuratively): - (be a-) live again, revive."]},{"k":"G327","v":["ἀναζητέω","anazēteō","an-ad-zay-teh'-o","From G303 and G2212; to search out: - seek."]},{"k":"G328","v":["ἀναζώννυμι","anazōnnumi","an-ad-zone'-noo-mee","From G303 and G2224; to gird afresh: - gird up."]},{"k":"G329","v":["ἀναζωπυρέω","anazōpureō","an-ad-zo-poor-eh'-o","From G303 and a compound of the base of G2226 and G4442; to re-enkindle: - stir up."]},{"k":"G330","v":["ἀναθάλλω","anathallō","an-ath-al'-lo","From G303 and θάλλω thallō (to flourish); to revive: - flourish again."]},{"k":"G331","v":["ἀνάθεμα","anathema","an-ath'-em-ah","From G394; a (religious) ban or (concretely) excommunicated (thing or person): - accursed, anathema, curse, X great."]},{"k":"G332","v":["ἀναθεματίζω","anathematizō","an-ath-em-at-id'-zo","From G331; to declare or vow under penalty of execration: - (bind under a) curse, bind with an oath."]},{"k":"G333","v":["ἀναθεωρέω","anatheōreō","an-ath-eh-o-reh'-o","From G303 and G2334; to look again (that is, attentively) at (literally or figuratively): - behold, consider."]},{"k":"G334","v":["ἀνάθημα","anathēma","an-ath'-ay-mah","From G394 (like G331, but in a good sense); a votive offering: - gift."]},{"k":"G335","v":["ἀναίδεια","anaideia","an-ah'ee-die-ah'","From a compound of G1 (as a negative particle (compare G427)) and G127; impudence, that is, (by implication) importunity: - importunity."]},{"k":"G336","v":["ἀναίρεσις","anairesis","an-ah'ee-res-is","From G337; (the act of) killing: - death."]},{"k":"G337","v":["ἀναιρέω","anaireō","an-ahee-reh'-o","From G303 and (the active of) G138; to take up, that is, adopt; by implication to take away (violently), that is, abolish, murder: - put to death, kill, slay, take away, take up."]},{"k":"G338","v":["ἀναίτιος","anaitios","an-ah'ee-tee-os","From G1 (as a negative particle) and G159 (in the sense of G156); innocent: - blameless, guiltless."]},{"k":"G339","v":["ἀνακαθίζω","anakathizō","an-ak-ath-id'-zo","From G303 and G2523; properly to set up, that is, (reflexively) to sit up: - sit up."]},{"k":"G340","v":["ἀνακαινίζω","anakainizō","an-ak-ahee-nid'-zo","From G303 and a derivative of G2537; to restore: - renew."]},{"k":"G341","v":["ἀνακαινόω","anakainoō","an-ak-ahee-no'-o","From G303 and a derivative of G2537; to renovate: - renew."]},{"k":"G342","v":["ἀνακαίνωσις","anakainōsis","an-ak-ah'ee-no-sis","From G341; renovation: - renewing."]},{"k":"G343","v":["ἀνακαλύπτω","anakaluptō","an-ak-al-oop'-to","From G303 (in the sense of reversal) and G2572; to unveil: - open, ([un-]) taken away."]},{"k":"G344","v":["ἀνακάμπτω","anakamptō","an-ak-amp'-to","From G303 and G2578; to turn back: - (re-) turn."]},{"k":"G345","v":["ἀνακεῖμαι","anakeimai","an-ak-i'-mahee","From G303 and G2749; to recline (as a corpse or at a meal): - guest, lean, lie, sit (down, at meat), at the table."]},{"k":"G346","v":["ἀνακεφαλαίομαι","anakephalaiomai","an-ak-ef-al-ah'ee-om-ahee","From G303 and G2775 (in its original sense); to sum up: - briefly comprehend, gather together in one."]},{"k":"G347","v":["ἀνακλίνω","anaklinō","an-ak-lee'-no","From G303 and G2827; to lean back: - lay, (make) sit down."]},{"k":"G348","v":["ἀνακόπτω","anakoptō","an-ak-op'-to","From G303 and G2875; to beat back, that is, check: - hinder."]},{"k":"G349","v":["ἀνακράζω","anakrazō","an-ak-rad'-zo","From G303 and G2896; to scream up (aloud): - cry out."]},{"k":"G350","v":["ἀνακρίνω","anakrinō","an-ak-ree'-no","From G303 and G2919; properly to scrutinize, that is, (by implication) investigate, interrogate, determine: - ask, question, discern, examine, judge, search."]},{"k":"G351","v":["ἀνάκρισις","anakrisis","an-ak'-ree-sis","From G350; a (judicial) investigation: - examination."]},{"k":"G352","v":["ἀνακύπτω","anakuptō","an-ak-oop'-to","From G303 (in the sense of reversal) and G2955; to unbend, that is, rise; figuratively be elated: - lift up, look up."]},{"k":"G353","v":["ἀναλαμβάνω","analambanō","an-al-am-ban'-o","From G303 and G2983; to take up: - receive up, take (in, unto, up)."]},{"k":"G354","v":["ἀνάληψις","analēpsis","an-al'-ape-sis","From G353; ascension: - taking up."]},{"k":"G355","v":["ἀναλίσκω","analiskō","an-al-is'-ko","From G303 and a form of the alternate of G138; properly to use up, that is, destroy: - consume."]},{"k":"G356","v":["ἀναλογία","analogia","an-al-og-ee'-ah","From a compound of G303 and G3056; proportion: - proportion."]},{"k":"G357","v":["ἀναλογίζομαι","analogizomai","an-al-og-id'-zom-ahee","Middle voice from G356; to estimate, that is, (figuratively) contemplate: - consider."]},{"k":"G358","v":["ἄναλος","analos","an'-al-os","From G1 (as a negative particle) and G251; saltless, that is, insipid: - X lose saltness."]},{"k":"G359","v":["ἀνάλυσις","analusis","an-al'-oo-sis","From G360; departure: - departure."]},{"k":"G360","v":["ἀναλύω","analuō","an-al-oo'-o","From G303 and G3089; to break up, that is, depart (literally or figuratively): - depart, return."]},{"k":"G361","v":["ἀναμάρτητος","anamartētos","an-am-ar'-tay-tos","From G1 (as a negative particle) and a presumed derivative of G264; sinless: - that is without sin."]},{"k":"G362","v":["ἀναμένω","anamenō","an-am-en'-o","From G303 and G3306; to await: - wait for."]},{"k":"G363","v":["ἀναμιμνήσκω","anamimnēskō","an-am-im-nace'-ko","From G303 and G3403; to remind; reflexively to recollect: - call to mind, (bring to, call to, put in), remember (-brance)."]},{"k":"G364","v":["ἀνάμνησις","anamnēsis","an-am'-nay-sis","From G363; recollection: - remembrance (again)."]},{"k":"G365","v":["ἀνανεόω","ananēoō","an-an-neh-o'-o","From G303 and a derivative of G3501; to renovate, that is, reform: - renew."]},{"k":"G366","v":["ἀνανήφω","ananēphō","an-an-ay'-fo","From G303 and G3525; to become sober again, that is, (figuratively) regain (one’s) senses: - recover self."]},{"k":"G367","v":["Ἀνανίας","Ananias","an-an-ee'-as","Of Hebrew origin [H2608]; Ananias, the name of three Israelites: - Ananias."]},{"k":"G368","v":["ἀναντίῤῥητος","anantirrhētos","an-an-tir'-hray-tos","From G1 (as a negatively particle) and a presumed derivative of a compound of G473 and G4483; indisputable: - cannot be spoken against."]},{"k":"G369","v":["ἀναντιῤῥήτως","anantirrhētōs","an-an-tir-hray'-toce","Adverb from G368; promptly: - without gainsaying."]},{"k":"G370","v":["ἀνάξιος","anaxios","an-ax'-ee-os","From G1 (as a negative particle) and G514; unfit: - unworthy."]},{"k":"G371","v":["ἀναξίως","anaxiōs","an-ax-ee'-oce","Adverb from G370; irreverently: - unworthily."]},{"k":"G372","v":["ἀνάπαυσις","anapausis","an-ap'-ow-sis","From G373; intermission; by implication recreation: - rest."]},{"k":"G373","v":["ἀναπαύω","anapauō","an-ap-ow'-o","From G303 and G3973; (reflexively) to repose (literally or figuratively (be exempt), remain); by implication to refresh: - take ease, refresh, (give, take) rest."]},{"k":"G374","v":["ἀναπείθω","anapeithō","an-ap-i'-tho","From G303 and G3982; to incite: - persuade."]},{"k":"G375","v":["ἀναπέμπω","anapempō","an-ap-em'-po","From G303 and G3992; to send up or back: - send (again)."]},{"k":"G376","v":["ἀνάπηρος","anapēros","an-ap'-ay-ros","From G303 (in the sense of intensity) and πῆρος pēros (maimed); crippled: - maimed."]},{"k":"G377","v":["ἀναπίπτω","anapipto","an-ap-ip'-to","From G303 and G4098; to fall back, that is, lie down, lean back: - lean, sit down (to meat)."]},{"k":"G378","v":["ἀναπληρόω","anaplēroō","an-ap-lay-ro'-o","From G303 and G4137; to complete; by implication to occupy, supply; figuratively to accomplish (by coincidence or obedience): - fill up, fulfil, occupy, supply."]},{"k":"G379","v":["ἀναπολόγητος","anapologētos","an-ap-ol-og'-ay-tos","From G1 (as a negative particle) and a presumed derivative of G626; indefensible: - without excuse, inexcuseable."]},{"k":"G380","v":["ἀναπτύσσω","anaptussō","an-ap-toos'-so","From G303 (in the sense of reversal) and G4428; to unroll (a scroll or volume): - open."]},{"k":"G381","v":["ἀνάπτω","anaptō","an-ap'-to","From G303 and G681; to enkindle: - kindle, light."]},{"k":"G382","v":["ἀναρίθμητος","anarithmētos","an-ar-ith'-may-tos","From G1 (as a negative particle) and a derivative of G705; unnumbered, that is, without number: - innumerable."]},{"k":"G383","v":["ἀνασείω","anaseiō","an-as-i'-o","From G303 and G4579; figuratively to excite: - move, stir up."]},{"k":"G384","v":["ἀνασκευάζω","anaskeuazō","an-ask-yoo-ad'-zo","From G303 (in the sense of reversal) and a derivative of G4632; properly to pack up (baggage), that is, (by implication and figuratively) to upset: - subvert."]},{"k":"G385","v":["ἀνασπάω","anaspaō","an-as-pah'-o","From G303 and G4685; to take up or extricate: - draw up, pull out."]},{"k":"G386","v":["ἀνάστασις","anastasis","an-as'-tas-is","From G450; a standing up again, that is, (literally) a resurrection from death (individual, general or by implication (its author)), or (figuratively) a (moral) recovery (of spiritual truth): - raised to life again, resurrection, rise from the dead, that should rise, rising again."]},{"k":"G387","v":["ἀναστατόω","anastatoō","an-as-tat-o'-o","From a derivative of G450 (in the sense of removal); properly to drive out of home, that is, (by implication) to disturb (literally or figuratively): - trouble, turn upside down, make an uproar."]},{"k":"G388","v":["ἀνασταυρόω","anastauroō","an-as-tow-ro'-o","From G303 and G4717; to recrucify (figuratively): - crucify afresh."]},{"k":"G389","v":["ἀναστενάζω","anastenazō","an-as-ten-ad'-zo","From G303 and G4727; to sigh deeply: - sigh deeply."]},{"k":"G390","v":["ἀναστρέφω","anastrepho","an-as-tref'-o","From G303 and G4762; to overturn; also to return; by implication to busy oneself, that is, remain, live: - abide, behave self, have conversation, live, overthrow, pass, return, be used."]},{"k":"G391","v":["ἀναστροφή","anastrophē","an-as-trof-ay'","From G390; behavior: - conversation."]},{"k":"G392","v":["ἀνατάσσομαι","anatassomai","an-at-as'-som-ahee","From G303 and the middle of G5021; to arrange: - set in order."]},{"k":"G393","v":["ἀνατέλλω","anatellō","an-at-el'-lo","From G303 and the base of G5056; to (cause to) arise: - (a-, make to) rise, at the rising of, spring (up), be up."]},{"k":"G394","v":["ἀνατίθεμαι","anatithemai","an-at-ith'-em-ahee","From G303 and the middle of G5087; to set forth (for oneself), that is, propound: - communicate, declare."]},{"k":"G395","v":["ἀνατολή","anatolē","an-at-ol-ay'","From G393; a rising of light, that is, dawn (figuratively); by implication the east (also in plural): - dayspring, east, rising."]},{"k":"G396","v":["ἀνατρέπω","anatrepō","an-at-rep'-o","From G303 and the base of G5157; to overturn (figuratively): - overthrow, subvert."]},{"k":"G397","v":["ἀνατρέφω","anatrephō","an-at-ref'-o","From G303 and G5142; to rear (physically or mentally): - bring up, nourish (up)."]},{"k":"G398","v":["ἀναφαίνω","anaphainō","an-af-ah'ee-no","From G303 and G5316; to show, that is, (reflexively) appear, or (passively) have pointed out: - (should) appear, discover."]},{"k":"G399","v":["ἀναφέρω","anapherō","an-af-er'-o","From G303 and G5342; to take up (literally or figuratively): - bear, bring (carry, lead) up, offer (up)."]},{"k":"G400","v":["ἀναφωνέω","anaphōneō","an-af-o-neh'-o","From G303 and G5455; to exclaim: - speak out."]},{"k":"G401","v":["ἀνάχυσις","anachusis","an-akh'-oo-sis","From a compound of G303 and χέω cheō (to pour); properly effusion, that is, (figuratively) license: - excess."]},{"k":"G402","v":["ἀναχωρέω","anachōreō","an-akh-o-reh'-o","From G303 and G5562; to retire: - depart, give place, go (turn) aside, withdraw self."]},{"k":"G403","v":["ἀνάψυξις","anapsuxis","an-aps'-ook-sis","From G404; properly a recovery of breath, that is, (figuratively) revival: - revival."]},{"k":"G404","v":["ἀναψύχω","anapsuchō","an-aps-oo'-kho","From G303 and G5594; properly to cool off, that is, (figuratively) relieve: - refresh."]},{"k":"G405","v":["ἀνδραποδιστής","andrapodistēs","an-drap-od-is-tace'","From a derivative of a compound of G435 and G4228; an enslaver (as bringing men to his feet): - men-stealer."]},{"k":"G406","v":["Ἀνδρέας","Andreas","an-dreh'-as","From G435; manly; Andreas, an Israelite: - Andrew."]},{"k":"G407","v":["ἀνδρίζομαι","andrizomai","an-drid'-zom-ahee","Middle voice from G435; to act manly: - quit like men."]},{"k":"G408","v":["Ἀνδρόνικος","Andronikos","an-dron'-ee-kos","From G435 and G3534; man of victory; Andronicos, an Israelite: - Andronicus."]},{"k":"G409","v":["ἀνδροφόνος","androphonos","an-drof-on'-os","From G435 and G5408; a murderer: - manslayer."]},{"k":"G410","v":["ἀνέγκλητος","anegklētos","an-eng'-klay-tos","From G1 (as a negative particle) and a derivative of G1458; unaccused, that is, (by implication) irreproachable: - blameless."]},{"k":"G411","v":["ἀνεκδιήγητος","anekdiēgētos","an-ek-dee-ay'-gay-tos","From G1 (as a negative particle) and a presumed derivative of G1555; not expounded in full, that is, indescribable: - unspeakable."]},{"k":"G412","v":["ἀνεκλάλητος","aneklalētos","an-ek-lal'-ay-tos","From G1 (as a negative particle) and a presumed derivative of G1583; not spoken out, that is, (by implication) unutterable: - unspeakable."]},{"k":"G413","v":["ἀνέκλειπτος","anekleiptos","an-ek'-lipe-tos","From G1 (as a negative particle) and a presumed derivative of G1587; not left out, that is, (by implication) inexhaustible: - that faileth not."]},{"k":"G414","v":["ἀνεκτότερος","anektoteros","an-ek-tot'-er-os","Comparative of a derivative of G430; more endurable: - more tolerable."]},{"k":"G415","v":["ἀνελεήμων","aneleēmōn","an-eleh-ay'-mone","From G1 (as a negative particle) and G1655; merciless: - unmerciful."]},{"k":"G416","v":["ἀνεμίζω","anemizō","an-em-id'-zo","From G417; to toss with the wind: - drive with the wind."]},{"k":"G417","v":["ἄνεμος","anemos","an'-em-os","From the base of G109; wind; (plural) by implication (the four) quarters (of the earth): - wind."]},{"k":"G418","v":["ἀνένδεκτος","anendektos","an-en'-dek-tos","From G1 (as a negative particle) and a derivative of the same as G1735; unadmitted, that is, (by implication) not supposable: - impossible."]},{"k":"G419","v":["ἀνεξερεύνητος","anexereunētos","an-ex-er-yoo'-nay-tos","From G1 (as a negative particle) and a presumed derivative of G1830; not searched out, that is, (by implication) inscrutable: - unsearchable."]},{"k":"G420","v":["ἀνεξίκακος","anexikakos","an-ex-ik'-ak-os","From G430 and G2556; enduring of ill, that is, forbearing: - patient."]},{"k":"G421","v":["ἀνεξιχνίαστος","anexichniastos","an-ex-ikh-nee'-as-tos","From G1 (as a negative particle) and a presumed derivative of a compound of G1537 and a derivative of G2487; not tracked out, that is, (by implication) untraceable: - past finding out, unsearchable."]},{"k":"G422","v":["ἀνεπαίσχυντος","anepaischuntos","an-ep-ah'ee-skhoon-tos","From G1 (as a negative particle) and a presumed derivative of a compound of G1909 and G153; not ashamed, that is, (by implication) irreprehensible: - that neededth not to be ashamed."]},{"k":"G423","v":["ἀνεπίληπτος","anepilēptos","an-ep-eel'-ape-tos","From G1 (as a negative particle) and a derivative of G1949; not arrested, that is, (by implication) inculpable: - blameless, unrebukeable."]},{"k":"G424","v":["ἀνέρχομαι","anerchomai","an-erkh'-om-ahee","From G303 and G2064; to ascend: - go up."]},{"k":"G425","v":["ἄνεσις","anesis","an'-es-is","From G447; relaxation or (figuratively) relief: - eased, liberty, rest."]},{"k":"G426","v":["ἀνετάζω","anetazō","an-et-ad'-zo","From G303 and ἐτάζω etazō (to test); to investigate (judicially): - (should have) examine (-d)."]},{"k":"G427","v":["ἄνευ","aneu","an'-yoo","A primary particle; without: - without. Compare G1."]},{"k":"G428","v":["ἀνεύθετος","aneuthetos","an-yoo'-the-tos","From G1 (as a negative particle) and G2111; not well set, that is, inconvenient: - not commodious."]},{"k":"G429","v":["ἀνευρίσκω","aneuriskō","an-yoo-ris'-ko","From G303 and G2147; to find out: - find."]},{"k":"G430","v":["ἀνέχομαι","anechomai","an-ekh'-om-ahee","Middle voice from G303 and G2192; to hold oneself up against, that is, (figuratively) put up with: - bear with endure, forbear, suffer."]},{"k":"G431","v":["ἀνέψιος","anepsios","an-eps'-ee-os","From G1 (as a particle of union) and an obsolete form νέπος nepos (a brood); properly akin, that is, (specifically) a cousin: - sister’s son."]},{"k":"G432","v":["ἄνηθον","anēthon","an'-ay-thon","Probably of foreign origin; dill: - anise."]},{"k":"G433","v":["ἀνήκω","anēkō","an-ay'-ko","From G303 and G2240; to attain to, that is, (figuratively) be proper: - convenient, be fit."]},{"k":"G434","v":["ἀνήμερος","anēmeros","an-ay'-mer-os","From G1 (as a negative particle) and ἥμερος hēmeros (lame); savage: - fierce."]},{"k":"G435","v":["ἀνήρ","anēr","an'-ayr","A primary word (compare G444); a man (properly as an individual male): - fellow, husband, man, sir."]},{"k":"G436","v":["ἀνθίστημι","anthistēmi","anth-is'-tay-mee","From G473 and G2476; to stand against, that is, oppose: - resist, withstand."]},{"k":"G437","v":["ἀνθομολογέομαι","anthomologeomai","anth-om-ol-og-eh'-om-ahee","From G473 and the middle of G3670; to confess in turn, that is, respond in praise: - give thanks."]},{"k":"G438","v":["ἄνθος","anthos","anth'-os","A primary word; a blossom: - flower."]},{"k":"G439","v":["ἀνθρακιά","anthrakia","anth-rak-ee-ah'","From G440; a bed of burning coals: - fire of coals."]},{"k":"G440","v":["ἄνθραξ","anthrax","anth'-rax","Of uncertain derivation; a live coal: - coal of fire."]},{"k":"G441","v":["ἀνθρωπάρεσκος","anthrōpareskos","anth-ro-par'-es-kos","From G444 and G700; man courting, that is, fawning: - men-pleaser."]},{"k":"G442","v":["ἀνθρώπινος","anthrōpinos","anth-ro'-pee-nos","From G444; human: - human, common to man, man[-kind], [man-]kind, men’s, after the manner of men."]},{"k":"G443","v":["ἀνθρωποκτόνος","anthrōpoktonos","anth-ro-pok-ton'-os","From G444 and κτείνω kteinē (to kill); a manslayer: - murderer. Compare G5406."]},{"k":"G444","v":["ἄνθρωπος","anthrōpos","anth'-ro-pos","From G435 and ὤψ ōps (the countenance; from G3700); manfaced, that is, a human being: - certain, man."]},{"k":"G445","v":["ἀνθυπατεύω","anthupateuō","anth-oo-pat-yoo'-o","From G446; to act as proconsul: - be the deputy."]},{"k":"G446","v":["ἀνθύπατος","anthupatos","anth-oo'-pat-os","From G473 and a superlative of G5228; instead of the highest officer, that is, (specifically) a Roman proconsul: - deputy."]},{"k":"G447","v":["ἀνίημι","aniēmi","an-ee'-ay-mee","From G303 and ἵημι hiēmi (to send); to let up, that is, (literally) slacken, or (figuratively) desert, desist from: - forbear, leave, loose."]},{"k":"G448","v":["ἀνίλεως","anileōs","an-ee'-leh-oce","From G1 (as a negative particle) and G2436; inexorable: - without mercy."]},{"k":"G449","v":["ἄνιπτος","aniptos","an'-ip-tos","From G1 (as a negative particle) and a presumed derivative of G3538; without ablution: - unwashen."]},{"k":"G450","v":["ἀνίστημι","anistēmi","an-is'-tay-mee","From G303 and G2476; to stand up (literally or figuratively, transitively or intransitively): - arise, lift up, raise up (again), rise (again), stand up (-right)."]},{"k":"G451","v":["Ἄννα","Anna","an'-nah","Of Hebrew origin [H2584]; Anna, an Israelitess: - Anna."]},{"k":"G452","v":["Ἄννας","Annas","an'-nas","Of Hebrew origin [H2608]; Annas (that is, G367), an Israelite: - Annas."]},{"k":"G453","v":["ἀνόητος","anoētos","an-o'-ay-tos","From G1 (as a negative particle) and a derivative of G3539; unintelligent; by implication sensual: - fool (-ish), unwise."]},{"k":"G454","v":["ἄνοια","anoia","an'-oy-ah","From a compound of G1 (as a negative particle) and G3563; stupidity; by implication rage: - folly, madness."]},{"k":"G455","v":["ἀνοίγω","anoigō","an-oy'-go","From G303 and οἴγω oigō (to open); to open up (literally or figuratively, in various applications): - open."]},{"k":"G456","v":["ἀνοικοδομέω","anoikodomeō","an-oy-kod-om-eh'-o","From G303 and G3618; to rebuild: - build again."]},{"k":"G457","v":["ἄνοιξις","anoixis","an'-oix-is","From G455; opening (throat): - X open."]},{"k":"G458","v":["ἀνομία","anomia","an-om-ee'-ah","From G459; illegality, that is, violation of law or (generally) wickedness: - iniquity, X transgress (-ion of) the law, unrighteousness."]},{"k":"G459","v":["ἄνομος","anomos","an'-om-os","From G1 (as a negative particle) and G3551; lawless, that is, (negatively) not subject to (the Jewish) law; (by implication a Gentile), or (positively) wicked: - without law, lawless, transgressor, unlawful, wicked."]},{"k":"G460","v":["ἀνόμως","anomōs","an-om'-oce","Adverb from G459; lawlessly, that is, (specifically) not amenable to (the Jewish) law: - without law."]},{"k":"G461","v":["ἀνορθόω","anorthoō","an-orth-o'-o","From G303 and a derivative of the base of G3717; to straighten up: - lift (set) up, make straight."]},{"k":"G462","v":["ἀνόσιος","anosios","an-os'-ee-os","From G1 (as a negative particle) and G3741; wicked: - unholy."]},{"k":"G463","v":["ἀνοχή","anochē","an-okh-ay'","From G430; selfrestraint, that is, tolerance: - forbearance."]},{"k":"G464","v":["ἀνταγωνίζομαι","antagōnizomai","an-tag-o-nid'-zom-ahee","From G473 and G75; to struggle against (figuratively), (“antagonize”): - strive against."]},{"k":"G465","v":["ἀντάλλαγμα","antallagma","an-tal'-ag-mah","From a compound of G473 and G236; an equivalent or ransom: - in exchange."]},{"k":"G466","v":["ἀνταναπληρόω","antanaplēroō","an-tan-ap-lay-ro'-o","From G473 and G378; to supplement: - fill up."]},{"k":"G467","v":["ἀνταποδίδωμι","antapodidōmi","an-tap-od-ee'-do-mee","From G473 and G591; to requite (good or evil): - recompense, render, repay."]},{"k":"G468","v":["ἀνταπόδομα","antapodoma","an-tap-od'-om-ah","From G467; a requital (properly the thing): - recompense."]},{"k":"G469","v":["ἀνταπόδοσις","antapodosis","an-tap-od'-os-is","From G467; requital (properly the act): - reward."]},{"k":"G470","v":["ἀνταποκρίνομαι","antapokrinomai","an-tap-ok-ree'-nom-ahee","From G473 and G611; to contradict or dispute: - answer again, reply against."]},{"k":"G471","v":["ἀντέπω","antepō","an-tep'-o","From G473 and G2036; to refute or deny: - gainsay, say against."]},{"k":"G472","v":["ἀντέχομαι","antechomai","an-tekh'-om-ahee","From G473 and the middle of G2192; to hold oneself opposite to, that is, (by implication) adhere to; by extension to care for: - hold fast, hold to, support."]},{"k":"G473","v":["ἀντί","anti","an-tee'","A primary particle; opposite, that is, instead or because of (rarely in addition to): - for, in the room of. Often used in composition to denote contrast, requital, substitution, correspondence, etc."]},{"k":"G474","v":["ἀντιβάλλω","antiballō","an-tee-bal'-lo","From G473 and G906; to bandy: - have."]},{"k":"G475","v":["ἀντιδιατίθεμαι","antidiatithemai","an-tee-dee-at-eeth'-em-ahee","From G473 and G1303; to set oneself opposite, that is, be disputatious: - that oppose themselves."]},{"k":"G476","v":["ἀντίδικος","antidikos","an-tid'-ee-kos","From G473 and G1349; an opponent (in a lawsuit); specifically Satan (as the arch enemy): - adversary."]},{"k":"G477","v":["ἀντίθεσις","antithesis","an-tith'-es-is","From a compound of G473 and G5087; opposition, that is, a conflict (of theories): - opposition."]},{"k":"G478","v":["ἀντικαθίστημι","antikathistēmi","an-tee-kath-is'-tay-mee","From G473 and G2525; to set down (troops) against, that is, withstand: - resist."]},{"k":"G479","v":["ἀντικαλέω","antikaleō","an-tee-kal-eh'-o","From G473 and G2564; to invite in return: - bid again."]},{"k":"G480","v":["ἀντίκειμαι","antikeimai","an-tik'-i-mahee","From G473 and G2749; to lie opposite, that is, be adverse (figuratively repugnant) to: - adversary, be contrary, oppose."]},{"k":"G481","v":["ἀντικρύ","antikru","an-tee-kroo'","Prolonged from G473; opposite: - over against."]},{"k":"G482","v":["ἀντιλαμβάνομαι","antilambanomai","an-tee-lam-ban'-om-ahee","From G473 and the middle of G2983; to take hold of in turn, that is, succor; also to participate: - help, partaker support."]},{"k":"G483","v":["ἀντίλεγω","antilegō","an-til'-eg-o","From G473 and G3004; to dispute, refuse: - answer again, contradict, deny, gainsay (-er), speak against."]},{"k":"G484","v":["ἀντίληψις","antilēpsis","an-til'-ape-sis","From G482; relief: - help."]},{"k":"G485","v":["ἀντιλογία","antilogia","an-tee-log-ee'-ah","From a derivative of G483; dispute, disobedience: - contradiction, gainsaying, strife."]},{"k":"G486","v":["ἀντιλοιδορέω","antiloidoreō","an-tee-loy-dor-eh'-o","From G473 and G3058; to rail in reply: - revile again."]},{"k":"G487","v":["ἀντίλυτρον","antilutron","an-til'-oo-tron","From G473 and G3083; a redemption price: - ransom."]},{"k":"G488","v":["ἀντιμετρέω","antimetreō","an-tee-met-reh'-o","From G473 and G3354; to mete in return: - measure again."]},{"k":"G489","v":["ἀντιμισθία","antimisthia","an-tee-mis-thee'-ah","From a compound of G473 and G3408; requital, correspondence: - recompense."]},{"k":"G490","v":["Ἀντιόχεια","Antiocheia","an-tee-okh'-i-ah","From Ἀντίοχος Antiochos (a Syrian king); Antiochia, a place in Syria: - Antioch."]},{"k":"G491","v":["Ἀντιοχεύς","Antiocheus","an-tee-okh-yoos'","From G490; an Antiochian or inhabitant of Antiochia: - of Antioch."]},{"k":"G492","v":["ἀντιπαρέρχομαι","antiparerchomai","an-tee-par-er'-khom-ahee","From G473 and G3928; to go along opposite: - pass by on the other side."]},{"k":"G493","v":["Ἀντίπας","Antipas","an-tee'-pas","Contracted for a compound of G473 and a derivative of G3962; Antipas, a Christian: - Antipas."]},{"k":"G494","v":["Ἀντιπατρίς","Antipatris","an-tip-at-rece'","From the same as G493; Antipatris, a place in Palestine: - Antipatris."]},{"k":"G495","v":["ἀντιπέραν","antiperan","an-tee-per'-an","From G473 and G4008; on the opposite side: - over against."]},{"k":"G496","v":["ἀντιπίπτω","antipiptō","an-tee-pip'-to","From G473 and G4098 (including its alternate); to oppose: - resist."]},{"k":"G497","v":["ἀντιστρατεύομαι","antistrateuomai","an-tee-strat-yoo'-om-ahee","From G473 and G4754; (figuratively) to attack, that is, (by implication) destroy: - war against."]},{"k":"G498","v":["ἀντιτάσσομαι","antitassomai","an-tee-tas'-som-ahee","From G473 and the middle of G5021; to range oneself against, that is, oppose: - oppose themselves, resist."]},{"k":"G499","v":["ἀντίτυπον","antitupon","an-teet'-oo-pon","Neuter of a compound of G473 and G5179; corresponding (“antitype”), that is, a representative, counterpart: - (like) figure (whereunto)."]},{"k":"G500","v":["ἀντίχριστος","antichristos","an-tee'-khris-tos","From G473 and G5547; an opponent of the Messiah: - antichrist."]},{"k":"G501","v":["ἀντλέω","antleō","ant-leh'-o","From ἄντλος antlos (the hold of a ship); to bale up (properly bilge water), that is, dip water (with a bucket, pitcher, etc.): - draw (out)."]},{"k":"G502","v":["ἄντλημα","antlēma","ant'-lay-mah","From G501; a baling vessel: - thing to draw with."]},{"k":"G503","v":["ἀντοφθαλμέω","antophthalmeō","ant-of-thal-meh'-o","From a compound of G473 and G3788; to face: - bear up into."]},{"k":"G504","v":["ἄνυδρος","anudros","an'-oo-dros","From G1 (as a negative particle) and G5204; waterless, that is, dry: - dry, without water."]},{"k":"G505","v":["ἀνυπόκριτος","anupokritos","an-oo-pok'-ree-tos","From G1 (as a negative particle) and a presumed derivative of G5271; undissembled, that is, sincere: - without dissimulation (hypocrisy), unfeigned."]},{"k":"G506","v":["ἀνυπότακτος","anupotaktos","an-oo-pot'-ak-tos","From G1 (as a negative particle) and a presumed derivative of G5293; unsubdued, that is, insubordinate (in fact or temper): - disobedient, that is not put under, unruly."]},{"k":"G507","v":["ἄνω","anō","an'-o","Adverb from G473; upward or on the top: - above, brim, high, up."]},{"k":"G508","v":["ἀνώγεον","anōgēon","an-ogue'-eh-on","From G507 and G1093; above the ground, that is, (properly) the second floor of a building; used for a dome or a balcony on the upper story: - upper room."]},{"k":"G509","v":["ἄνωθεν","anōthen","an'-o-then","From G507; from above; by analogy from the first; by implication anew: - from above, again, from the beginning (very first), the top."]},{"k":"G510","v":["ἀνωτερικός","anōterikos","an-o-ter-ee-kos'","From G511; superior, that is, (locally) more remote: - upper."]},{"k":"G511","v":["ἀνώτερος","anōteros","an-o'-ter-os","Comparative degree of G507; upper, that is, (neuter as adverb) to a more conspicuous place, in a former part of the book: - above, higher."]},{"k":"G512","v":["ἀνωφέλες","anōpheles","an-o-fel'-ace","From G1 (as a negative particle) and the base of G5624; useless or (neuter) inutility: - unprofitable(-ness)."]},{"k":"G513","v":["ἀξίνη","axinē","ax-ee'-nay","Probably from ἄγνυμι agnumi (to break; compare G4486); an axe: - axe."]},{"k":"G514","v":["ἄξιος","axios","ax'-ee-os","Probably from G71; deserving, comparable or suitable (as if drawing praise): - due reward, meet, [un-] worthy."]},{"k":"G515","v":["ἀξιόω","axioō","ax-ee-o'-o","From G514; to deem entitled or fit: - desire, think good, count (think) worthy."]},{"k":"G516","v":["ἀξίως","axiōs","ax-ee'-oce","Adverb from G514; appropriately: - as becometh, after a godly sort, worthily (-thy)."]},{"k":"G517","v":["ἀόρατος","aoratos","ah-or'-at-os","From G1 (as a negative particle) and G3707; invisible: - invisible (thing)."]},{"k":"G518","v":["ἀπαγγέλλω","apaggellō","ap-ang-el'-lo","From G575 and the base of G32; to announce: - bring word (again), declare, report, shew (again), tell."]},{"k":"G519","v":["ἀπάγχομαι","apagchomai","ap-ang'-khom-ahee","From G575 and ἄγχω agchō (to choke; akin to the base of G43); to strangle oneself off (that is, to death): - hang himself."]},{"k":"G520","v":["ἀπάγω","apagō","ap-ag'-o","From G575 and G71; to take off (in various senses): - bring, carry away, lead (away), put to death, take away."]},{"k":"G521","v":["ἀπαίδευτος","apaideutos","ap-ah'ee-dyoo-tos","From G1 (as a negative particle) and a derivative of G3811; uninstructed, that is, (figuratively) stupid: - unlearned."]},{"k":"G522","v":["ἀπαίρω","apairō","ap-ah'ee-ro","From G575 and G142; to lift off, that is, remove: - take (away)."]},{"k":"G523","v":["ἀπαιτέω","apaiteō","ap-ah'ee-teh-o","From G575 and G154; to demand back: - ask again, require."]},{"k":"G524","v":["ἀπαλγέω","apalgeō","ap-alg-eh'-o","From G575 and ἀλγέω algeō (to smart); to grieve out, that is, become apathetic: - be past feeling."]},{"k":"G525","v":["ἀπαλλάσσω","apallassō","ap-al-las'-so","From G575 and G236; to change away, that is, release, (reflexively) remove: - deliver, depart."]},{"k":"G526","v":["ἀπαλλοτριόω","apallotrioō","ap-al-lot-ree-o'-o","From G575 and a derivative of G245; to estrange away, that is, (passively and figuratively) to be non participant: - alienate, be alien."]},{"k":"G527","v":["ἀπαλός","apalos","ap-al-os'","Of uncertain derivation; soft: - tender."]},{"k":"G528","v":["ἀπαντάω","apantaō","ap-an-tah'-o","From G575 and a derivative of G473; to meet away, that is, encounter: - meet."]},{"k":"G529","v":["ἀπάντησις","apantēsis","ap-an'-tay-sis","From G528; a (friendly) encounter: - meet."]},{"k":"G530","v":["ἅπαξ","hapax","hap'-ax","Probably from G537; one (or a single) time (numerically or conclusively): - once."]},{"k":"G531","v":["ἀπαράβατος","aparabatos","ap-ar-ab'-at-os","From G1 (as a negative particle) and a derivative of G3845; not passing away, that is, untransferable (perpetual): - unchangeable."]},{"k":"G532","v":["ἀπαρασκεύαστος","aparaskeuastos","ap-ar-ask-yoo'-as-tos","From G1 (as a negative particle) and a derivative of G3903; unready: - unprepared."]},{"k":"G533","v":["ἀπαρνέομαι","aparneomai","ap-ar-neh'-om-ahee","From G575 and G720; to deny utterly, that is, disown, abstain: - deny."]},{"k":"G534","v":["ἀπάρτι","aparti","ap-ar'-tee","From G575 and G737; from now, that is, henceforth (already): - from henceforth."]},{"k":"G535","v":["ἀπαρτισμός","apartismos","ap-ar-tis-mos'","From a derivative of G534; completion: - finishing."]},{"k":"G536","v":["ἀπαρχή","aparchē","ap-ar-khay'","From a compound of G575 and G756; a beginning of sacrifice, that is, the (Jewish) first fruit (figuratively): - first-fruits."]},{"k":"G537","v":["ἅπας","hapas","hap'-as","From G1 (as a particle of union) and G3956; absolutely all or (singular) every one: - all (things), every (one), whole."]},{"k":"G538","v":["ἀπατάω","apataō","ap-at-ah'-o","Of uncertain derivation; to cheat, that is, delude: - deceive."]},{"k":"G539","v":["ἀπάτη","apatē","ap-at'-ay","From G538; delusion: - deceit (-ful, -fulness), deceivableness (-ving)."]},{"k":"G540","v":["ἀπάτωρ","apatōr","ap-at'-ore","From G1 (as a negative particle) and G3962; fatherless, that is, of unrecorded paternity: - without father."]},{"k":"G541","v":["ἀπαύγασμα","apaugasma","ap-ow'-gas-mah","From a compound of G575 and G826; an off flash, that is, effulgence: - brightness."]},{"k":"G542","v":["ἀπείδω","apeidō","ap-i'-do","From G575 and the same as G1492; to see fully: - see."]},{"k":"G543","v":["ἀπείθεια","apeitheia","ap-i'-thi-ah","From G545; disbelief (obstinate and rebellious): - disobedience, unbelief."]},{"k":"G544","v":["ἀπειθέω","apeitheō","ap-i-theh'-o","From G545; to disbelieve (wilfully and perversely): - not believe, disobedient, obey not, unbelieving."]},{"k":"G545","v":["ἀπειθής","apeithēs","ap-i-thace'","From G1 (as a negative particle) and G3982; unpersuadable, that is, contumacious: - disobedient."]},{"k":"G546","v":["ἀπειλέω","apeileō","ap-i-leh'-o","Of uncertain derivation; to menace; by implication to forbid: - threaten."]},{"k":"G547","v":["ἀπειλή","apeilē","ap-i-lay'","From G546; a menace: - X straitly, threatening."]},{"k":"G548","v":["ἄπειμι","apeimi","ap'-i-mee","From G575 and G1510; to be away: - be absent. Compare G549."]},{"k":"G549","v":["ἄπειμι","apeimi","ap'-i-mee","From G575 and εἶμι eimi (to go); to go away: - go. Compare G548."]},{"k":"G550","v":["ἀπειπόμην","apeipomēn","ap-i-pom'-ane","Reflexive past of a compound of G575 and G2036; to say off for oneself, that is, disown: - renounce."]},{"k":"G551","v":["ἀπείραστος","apeirastos","ap-i'-ras-tos","From G1 (as a negative particle) and a presumed derivative of G3987; untried, that is, not temptable: - not to be tempted."]},{"k":"G552","v":["ἄπειρος","apeiros","ap'-i-ros","From G1 (as a negative particle) and G3984; inexperienced, that is, ignorant: - unskilful."]},{"k":"G553","v":["ἀπεκδέχομαι","apekdechomai","ap-ek-dekh'-om-ahee","From G575 and G1551; to expect fully: - look (wait) for."]},{"k":"G554","v":["ἀπεκδύομαι","apekduomai","ap-ek-doo'-om-ahee","Middle voice from G575 and G1562; to divest wholly oneself, or (for oneself) despoil: - put off, spoil."]},{"k":"G555","v":["ἀπέκδυσις","apekdusis","ap-ek'-doo-sis","From G554; divestment: - putting off."]},{"k":"G556","v":["ἀπελαύνω","apelaunō","ap-el-ow'-no","From G575 and G1643; to dismiss: - drive."]},{"k":"G557","v":["ἀπελεγμός","apelegmos","ap-el-eg-mos'","From a compound of G575 and G1651; refutation, that is, (by implication) contempt: - nought."]},{"k":"G558","v":["ἀπελεύθερος","apeleutheros","ap-el-yoo'-ther-os","From G575 and G1658; one freed away, that is, a freedman: - freeman."]},{"k":"G559","v":["Ἀπελλῆς","Apellēs","ap-el-lace'","Of Latin origin; Apelles, a Christian: - Apelles."]},{"k":"G560","v":["ἀπελπίζω","apelpizō","ap-el-pid'-zo","From G575 and G1679; to hope out, that is, fully expect: - hope for again."]},{"k":"G561","v":["ἀπέναντι","apenanti","ap-en'-an-tee","From G575 and G1725; from in front, that is, opposite, before or against: - before, contrary, over against, in the presence of."]},{"k":"G562","v":["ἀπέραντος","aperantos","ap-er'-an-tos","From G1 (as a negative particle) and a secondary derivative of G4008; unfinished, that is, (by implication) interminable: - endless."]},{"k":"G563","v":["ἀπερισπάστως","aperispastōs","ap-er-is-pas'-toce","Adverb from a compound of G1 (as a negative particle) and a presumed derivative of G4049; undistractedly, that is, free from (domestic) solicitude: - without distraction."]},{"k":"G564","v":["ἀπερίτμητος","aperitmētos","ap-er-eet'-may-tos","From G1 (as a negative particle) and a presumed derivative of G4059; uncircumcised (figuratively): - uncircumcised."]},{"k":"G565","v":["ἀπέρχομαι","aperchomai","ap-erkh'-om-ahee","From G575 and G2064; to go off (that is, depart), aside (that is, apart) or behind (that is, follow), literally or figuratively: - come, depart, go (aside, away, back, out, . . . ways), pass away, be past."]},{"k":"G566","v":["ἀπέχει","apechei","ap-ekh'-i","Third person singular present indicative active of G568 used impersonally; it is sufficient: - it is enough."]},{"k":"G567","v":["ἀπέχομαι","apechomai","ap-ekh'-om-ahee","Middle voice (reflexive) of G568; to hold oneself off, that is, refrain: - abstain."]},{"k":"G568","v":["ἀπέχω","apechō","ap-ekh'-o","From G575 and G2192; (active) to have out, that is, receive in full; (intransitive) to keep (oneself) away, that is, be distant (literally or figuratively): - be, have, receive."]},{"k":"G569","v":["ἀπιστέω","apisteō","ap-is-teh'-o","From G571; to be unbelieving, that is, (transitively) disbelieve, or (by implication) disobey: - believe not."]},{"k":"G570","v":["ἀπιστία","apistia","ap-is-tee'-ah","From G571; faithlessness, that is, (negatively) disbelief (want of Christian faith), or (positively) unfaithfulness (disobedience): - unbelief."]},{"k":"G571","v":["ἄπιστος","apistos","ap'-is-tos","From G1 (as a negative particle) and G4103; (actively) disbelieving, that is, without Christian faith (specifically a heathen); (passively) untrustworthy (person), or incredible (thing): - that believeth not, faithless, incredible thing, infidel, unbeliever (-ing)."]},{"k":"G572","v":["ἁπλότης","haplotēs","hap-lot'-ace","From G573; singleness, that is, (subjectively) sincerity (without dissimulation or self seeking), or (objectively) generosity (copious bestowal): - bountifulness, liberal (-ity), simplicity, singleness."]},{"k":"G573","v":["ἁπλοῦς","haplous","hap-looce'","Probably from G1 (as a particle of union) and the base of G4120; properly folded together, that is, single (figuratively clear): - single."]},{"k":"G574","v":["ἁπλῶς","haplōs","hap-loce'","Adverb from G573 (in the objective sense of G572); bountifully: - liberally."]},{"k":"G575","v":["ἀπό","apo","apo'","A primary particle; “off”, that is, away (from something near), in various senses (of place, time, or relation; literally or figuratively): - (X here-) after, ago, at, because of, before, by (the space of), for (-th), from, in, (out) of, off, (up-) on (-ce), since, with. In composition (as a prefix) it usually denotes separation, departure, cessation, completion, reversal, etc."]},{"k":"G576","v":["ἀποβαίνω","apobainō","ap-ob-ah'ee-no","From G575 and the base of G939; literally to disembark; figuratively to eventuate: - become, go out, turn."]},{"k":"G577","v":["ἀποβάλλω","apoballō","ap-ob-al'-lo","From G575 and G906; to throw off; figuratively to lose: - cast away."]},{"k":"G578","v":["ἀποβλέπω","apoblepō","ap-ob-lep'-o","From G575 and G991; to look away from everything else, that is, (figuratively) intently regard: - have respect."]},{"k":"G579","v":["ἀπόβλητος","apoblētos","ap-ob'-lay-tos","From G577; cast off, that is, (figuratively) such as to be rejected: - be refused."]},{"k":"G580","v":["ἀποβολή","apobolē","ap-ob-ol-ay'","From G577; rejection; figuratively loss: - casting away, loss."]},{"k":"G581","v":["ἀπογενόμενος","apogenomenos","ap-og-en-om'-en-os","Past participle of a compound of G575 and G1096; absent, that is, deceased (figuratively renounced): - being dead."]},{"k":"G582","v":["ἀπογραφή","apographē","ap-og-raf-ay'","From G583; an enrollment; by implication an assessment: - taxing."]},{"k":"G583","v":["ἀπογράφω","apographō","ap-og-raf'-o","From G575 and G1125; to write off (a copy or list), that is, enrol: - tax, write."]},{"k":"G584","v":["ἀποδείκνυμι","apodeiknumi","ap-od-ike'-noo-mee","From G575 and G1166; to show off, that is, exhibit; figuratively to demonstrate, that is, accredit: - (ap-) prove, set forth, shew."]},{"k":"G585","v":["ἀπόδειξις","apodeixis","ap-od'-ike-sis","From G584; manifestation: - demonstration."]},{"k":"G586","v":["ἀποδεκατόω","apodekatoō","ap-od-ek-at-o'-o","From G575 and G1183; to tithe (as debtor or creditor): - (give, pay, take) tithe."]},{"k":"G587","v":["ἀπόδεκτος","apodektos","ap-od'-ek-tos","From G588; accepted, that is, agreeable: - acceptable."]},{"k":"G588","v":["ἀποδέχομαι","apodechomai","ap-od-ekh'-om-ahee","From G575 and G1209; to take fully, that is, welcome (persons), approve (things): - accept, receive (gladly)."]},{"k":"G589","v":["ἀποδημέω","apodēmeō","ap-od-ay-meh'-o","From G590; to go abroad, that is, visit a foreign land: - go (travel) into a far country, journey."]},{"k":"G590","v":["ἀπόδημος","apodēmos","ap-od'-ay-mos","From G575 and G1218; absent from one’s own people, that is, a foreign traveller: - taking a far journey."]},{"k":"G591","v":["ἀποδίδωμι","apodidōmi","ap-od-eed'-o-mee","From G575 and G1325; to give away, that is, up, over, back, etc. (in various applications): - deliver (again), give (again), (re-) pay (-ment be made), perform, recompense, render, requite, restore, reward, sell, yield,"]},{"k":"G592","v":["ἀποδιορίζω","apodiorizō","ap-od-ee-or-id'-zo","From G575 and a compound of G1223 and G3724; to disjoin (by a boundary, figuratively a party): - separate."]},{"k":"G593","v":["ἀποδοκιμάζω","apodokimazō","ap-od-ok-ee-mad'-zo","From G575 and G1381; to disapprove, that is, (by implication) to repudiate: - disallow, reject."]},{"k":"G594","v":["ἀποδοχή","apodochē","ap-od-okh-ay'","From G588; acceptance: - acceptation."]},{"k":"G595","v":["ἀπόθεσις","apothesis","ap-oth'-es-is","From G659; a laying aside (literally or figuratively): - putting away (off)."]},{"k":"G596","v":["ἀποθήκη","apothēkē","ap-oth-ay'-kay","From G659; a repository, that is, granary: - barn, garner."]},{"k":"G597","v":["ἀποθησαυρίζω","apothēsaurizō","ap-oth-ay-sow-rid'-zo","From G575 and G2343; to treasure away: - lay up in store."]},{"k":"G598","v":["ἀποθλίβω","apothlibō","ap-oth-lee'-bo","From G575 and G2346; to crowd from (every side): - press."]},{"k":"G599","v":["ἀποθνήσκω","apothnēskō","ap-oth-nace'-ko","From G575 and G2348; to die off (literally or figuratively): - be dead, death, die, lie a-dying, be slain (X with)."]},{"k":"G600","v":["ἀποκαθίστημι","apokathistēmi","ap-ok-ath-is'-tay-mee","From G575 and G2525; to reconstitute (in health, home or organization): - restore (again)."]},{"k":"G601","v":["ἀποκαλύπτω","apokaluptō","ap-ok-al-oop'-to","From G575 and G2572; to take off the cover, that is, disclose: - reveal."]},{"k":"G602","v":["ἀποκάλυψις","apokalupsis","ap-ok-al'-oop-sis","From G601; disclosure: - appearing, coming, lighten, manifestation, be revealed, revelation."]},{"k":"G603","v":["ἀποκαραδοκία","apokaradokia","ap-ok-ar-ad-ok-ee'-ah","From a compound of G575 and a compound of κάρα kara (the head) and G1380 (in the sense of watching); intense anticipation: - earnest expectation."]},{"k":"G604","v":["ἀποκαταλλάσσω","apokatallassō","ap-ok-at-al-las'-so","From G575 and G2644; to reconcile fully: - reconcile."]},{"k":"G605","v":["ἀποκατάστασις","apokatastasis","ap-ok-at-as'-tas-is","From G600; reconstitution: - restitution."]},{"k":"G606","v":["ἀπόκειμαι","apokeimai","ap-ok'-i-mahee","From G575 and G2749; to be reserved; figuratively to await: - be appointed, (be) laid up."]},{"k":"G607","v":["ἀποκεφαλίζω","apokephalizō","ap-ok-ef-al-id'-zo","From G575 and G2776; to decapitate: - behead."]},{"k":"G608","v":["ἀποκλείω","apokleiō","ap-ok-li'-o","From G575 and G2808; to close fully: - shut up."]},{"k":"G609","v":["ἀποκόπτω","apokoptō","ap-ok-op'-to","From G575 and G2875; to amputate; reflexively (by irony) to mutilate (the privy parts): - cut off. Compare G2699."]},{"k":"G610","v":["ἀπόκριμα","apokrima","ap-ok'-ree-mah","From G611 (in its original sense of judging); a judicial decision: - sentence."]},{"k":"G611","v":["ἀποκρίνομαι","apokrinomai","ap-ok-ree'-nom-ahee","From G575 and κρινω krino; to conclude for oneself, that is, (by implication) to respond; by Hebraism (compare [H6030]) to begin to speak (where an address is expected): - answer."]},{"k":"G612","v":["ἀπόκρισις","apokrisis","ap-ok'-ree-sis","From G611; a response: - answer."]},{"k":"G613","v":["ἀποκρύπτω","apokruptō","ap-ok-roop'-to","From G575 and G2928; to conceal away (that is, fully); figuratively to keep secret: - hide."]},{"k":"G614","v":["ἀπόκρυφος","apokruphos","ap-ok'-roo-fos","From G613; secret; by implication treasured: - hid, kept secret."]},{"k":"G615","v":["ἀποκτείνω","apokteinō","ap-ok-ti'-no","From G575 and κτείνω kteinō (to slay); to kill outright; figuratively to destroy: - put to death, kill, slay."]},{"k":"G616","v":["ἀποκυέω","apokueō","ap-ok-oo-eh'o","From G575 and the base of G2949; to breed forth, that is, (by transformation) to generate (figuratively): - beget, bring forth."]},{"k":"G617","v":["ἀποκυλίω","apokuliō","ap-ok-oo-lee'-o","From G575 and G2947; to roll away: - roll away (back)."]},{"k":"G618","v":["ἀπολαμβάνω","apolambanō","ap-ol-am-ban'-o","From G575 and G2983; to receive (specifically in full, or as a host); also to take aside: - receive, take."]},{"k":"G619","v":["ἀπόλαυσις","apolausis","ap-ol'-ow-sis","From a compound of G575 and λαύω lauō (to enjoy); full enjoyment: - enjoy (-ment)."]},{"k":"G620","v":["ἀπολείπω","apoleipō","ap-ol-ipe'-o","From G575 and G3007; to leave behind (passively remain); by implication to forsake: - leave, remain."]},{"k":"G621","v":["ἀπολείχω","apoleichō","ap-ol-i'-kho","From G575 and λείχω leichō (to “lick”); to lick clean: - lick."]},{"k":"G622","v":["ἀπόλλυμι","apollumi","ap-ol'-loo-mee","From G575 and the base of G3639; to destroy fully (reflexively to perish, or lose), literally or figuratively: - destroy, die, lose, mar, perish."]},{"k":"G623","v":["Ἀπολλύων","Apolluōn","ap-ol-loo'-ohn","Active participle of G622; a destroyer (that is, Satan): - Apollyon."]},{"k":"G624","v":["Ἀπολλωνία","Apollōnia","ap-ol-lo-nee'-ah","From the pagan deity Ἀπόλλων Apollōn (that is, the sun; from G622); Apollonia, a place in Macedonia: - Apollonia."]},{"k":"G625","v":["Ἀπολλώς","Apollōs","ap-ol-loce'","Probably from the same as G624; Apollos, an Israelite: - Apollos."]},{"k":"G626","v":["ἀπολογέομαι","apologeomai","ap-ol-og-eh'-om-ahee","Middle voice from a compound of G575 and G3056; to give an account (legal plea) of oneself, that is, exculpate (self): - answer (for self), make defence, excuse (self), speak for self."]},{"k":"G627","v":["ἀπολογία","apologia","ap-ol-og-ee'-ah","From the same as G626; a plea (“apology”): - answer (for self), clearing of self, defence."]},{"k":"G628","v":["ἀπολούω","apolouō","ap-ol-oo'-o","From G575 and G3068; to wash fully, that is, (figuratively) have remitted (reflexively): - wash (away)."]},{"k":"G629","v":["ἀπολύτρωσις","apolutrōsis","ap-ol-oo'-tro-sis","From a compound of G575 and G3083; (the act) ransom in full, that is, (figuratively) riddance, or (specifically) Christian salvation: - deliverance, redemption."]},{"k":"G630","v":["ἀπολύω","apoluō","ap-ol-oo'-o","From G575 and G3089; to free fully, that is, (literally) relieve, release, dismiss (reflexively depart), or (figuratively) let die, pardon, or (specifically) divorce: - (let) depart, dismiss, divorce, forgive, let go, loose, put (send) away, release, set at liberty."]},{"k":"G631","v":["ἀπομάσσομαι","apomassomai","ap-om-as'-som-ahee","Middle voice from G575 and μάσσω massō (to squeeze, knead, smear); to scrape away: - wipe off."]},{"k":"G632","v":["ἀπονέμω","aponemō","ap-on-em'-o","From G575 and the base of G3551; to apportion, that is, bestow: - give."]},{"k":"G633","v":["ἀπονίπτω","aponiptō","ap-on-ip'-to","From G575 and G3538; to wash off (reflexively one’s own hands symbolically): - wash."]},{"k":"G634","v":["ἀποπίπτω","apopiptō","ap-op-ip'-to","From G575 and G4098; to fall off: - fall."]},{"k":"G635","v":["ἀποπλανάω","apoplanaō","ap-op-lan-ah'-o","From G575 and G4105; to lead astray (figuratively); passively to stray (from truth): - err, seduce."]},{"k":"G636","v":["ἀποπλέω","apopleō","ap-op-leh'-o","From G575 and G4126; to set sail: - sail away."]},{"k":"G637","v":["ἀποπλύνω","apoplunō","ap-op-loo'-no","From G575 and G4150; to rinse off: - wash."]},{"k":"G638","v":["ἀποπνίγω","apopnigō","ap-op-nee'-go","From G575 and G4155; to stifle (by drowning or overgrowth): - choke."]},{"k":"G639","v":["ἀπορέω","aporeō","ap-or-eh'-o","From a compound of G1 (as a negative particle) and the base of G4198; to have no way out, that is, be at a loss (mentally): - (stand in) doubt, be perplexed."]},{"k":"G640","v":["ἀπορία","aporia","ap-or-ee'-a","From the same as G639; a (state of) quandary: - perplexity."]},{"k":"G641","v":["ἀποῤῥίπτω","aporrhiptō","ap-or-hrip'-to","From G575 and G4496; to hurl off, that is, precipitate (oneself): - cast."]},{"k":"G642","v":["ἀπορφανίζω","aporphanizō","ap-or-fan-id'-zo","From G575 and a derivative of G3737; to bereave wholly, that is, (figuratively) separate (from intercourse): - take."]},{"k":"G643","v":["ἀποσκευάζω","aposkeuazō","ap-osk-yoo-ad'-zo","From G575 and a derivative of G4632; to pack up (one’s) baggage: - take up . . . carriages."]},{"k":"G644","v":["ἀποσκίασμα","aposkiasma","ap-os-kee'-as-mah","From a compound of G575 and a derivative of G4639; a shading off, that is, obscuration: - shadow."]},{"k":"G645","v":["ἀποσπάω","apospaō","ap-os-pah'-o","From G575 and G4685; to drag forth, that is, (literally) unsheathe (a sword), or relatively (with a degree of force implied) retire (personally or factiously): - (with-) draw (away), after we were gotten from."]},{"k":"G646","v":["ἀποστασία","apostasia","ap-os-tas-ee'-ah","Feminine of the same as G647; defection from truth (properly the state), (“apostasy”): - falling away, forsake."]},{"k":"G647","v":["ἀποστάσιον","apostasion","ap-os-tas'-ee-on","Neuter of a (presumed) adjective from a derivative of G868; properly something separative, that is, (specifically) divorce: - (writing of) divorcement."]},{"k":"G648","v":["ἀποστεγάζω","apostegazō","ap-os-teg-ad'-zo","From G575 and a derivative of G4721; to unroof: - uncover."]},{"k":"G649","v":["ἀποστέλλω","apostellō","ap-os-tel'-lo","From G575 and G4724; set apart, that is, (by implication) to send out (properly on a mission) literally or figuratively: - put in, send (away, forth, out), set [at liberty]."]},{"k":"G650","v":["ἀποστερέω","apostereō","ap-os-ter-eh'-o","From G575 and στερέω stereō (to deprive); to despoil: - defraud, destitute, kept back by fraud."]},{"k":"G651","v":["ἀποστολή","apostolē","ap-os-tol-ay'","From G649; commission, that is, (specifically) apostolate: - apostleship."]},{"k":"G652","v":["ἀπόστολος","apostolos","ap-os'-tol-os","From G649; a delegate; specifically an ambassador of the Gospel; officially a commissioner of Christ (“apostle”), (with miraculous powers): - apostle, messenger, he that is sent."]},{"k":"G653","v":["ἀποστοματίζω","apostomatizō","ap-os-tom-at-id'-zo","From G575 and a (presumed) derivative of G4750; to speak off hand (properly dictate), that is, to catechize (in an invidious manner): - provoke to speak."]},{"k":"G654","v":["ἀποστρέφω","apostrephō","ap-os-tref'-o","From G575 and G4762; to turn away or back (literally or figuratively): - bring again, pervert, turn away (from)."]},{"k":"G655","v":["ἀποστυγέω","apostugeō","ap-os-toog-eh'-o","From G575 and the base of G4767; to detest utterly: - abhor."]},{"k":"G656","v":["ἀποσυνάγωγος","aposunagōgos","ap-os-oon-ag'-o-gos","From G575 and G4864; excommunicated: - (put) out of the synagogue (-s)."]},{"k":"G657","v":["ἀποτάσσομαι","apotassomai","ap-ot-as'-som-ahee","Middle voice from G575 and G5021; literally to say adieu (by departing or dismissing); figuratively to renounce: - bid farewell, forsake, take leave, send away."]},{"k":"G658","v":["ἀποτελέω","apoteleō","ap-ot-el-eh'-o","From G575 and G5055; to complete entirely, that is, consummate: - finish."]},{"k":"G659","v":["ἀποτίθημι","apotithēmi","ap-ot-eeth'-ay-mee","From G575 and G5087; to put away (literally or figuratively): - cast off, lay apart (aside, down), put away (off)."]},{"k":"G660","v":["ἀποτινάσσω","apotinassō","ap-ot-in-as'-so","From G575 and τινάσσω tinassō (to jostle); to brush off: - shake off."]},{"k":"G661","v":["ἀποτίνω","apotinō","ap-ot-ee'-no","From G575 and G5099; to pay in full: - repay."]},{"k":"G662","v":["ἀποτολμάω","apotōlmaō","ap-ot-ol-mah'-o","From G575 and G5111; to venture plainly: - be very bold."]},{"k":"G663","v":["ἀποτομία","apotomia","ap-ot-om-ee'-ah","From the base of G664; (figuratively) decisiveness, that is, rigor: - severity."]},{"k":"G664","v":["ἀποτόμως","apotomōs","ap-ot-om'-oce","Adverb from a derivative of a compound of G575 and τέμνω temnō (to cut); abruptly, that is, peremptorily: - sharply (-ness)."]},{"k":"G665","v":["ἀποτρέπω","apotrepō","ap-ot-rep'-o","From G575 and the base of G5157; to deflect, that is, (reflexively) avoid: - turn away."]},{"k":"G666","v":["ἀπουσία","apousia","ap-oo-see'-ah","From the participle of G548; a being away: - absence."]},{"k":"G667","v":["ἀποφέρω","apopherō","ap-of-er'-o","From G575 and G5342; to bear off (literally or relatively): - bring, carry (away)."]},{"k":"G668","v":["ἀποφεύγω","apopheugō","ap-of-yoo'-go","From G575 and G5343; (figuratively) to escape: - escape."]},{"k":"G669","v":["ἀποφθέγγομαι","apophtheggomai","ap-of-theng'-om-ahee","From G575 and G5350; to enunciate plainly, that is, declare: - say, speak forth, utterance."]},{"k":"G670","v":["ἀποφορτίζομαι","apophortizomai","ap-of-or-tid'-zom-ahee","From G575 and the middle voice of G5412; to unload: - unlade."]},{"k":"G671","v":["ἀπόχρησις","apochrēsis","ap-okh'-ray-sis","From a compound of G575 and G5530; the act of using up, that is, consumption: - using."]},{"k":"G672","v":["ἀποχωρέω","apochōreō","ap-okh-o-reh'-o","From G575 and G5562; to go away: - depart."]},{"k":"G673","v":["ἀποχωρίζω","apochōrizō","ap-okh-o-rid'-zo","From G575 and G5563; to rend apart; reflexively to separate: - depart (asunder)."]},{"k":"G674","v":["ἀποψύχω","apopsuchō","ap-ops-oo'-kho","From G575 and G5594; to breathe out, that is, faint: - hearts failing."]},{"k":"G675","v":["Ἄππιος","Appios","ap'-pee-os","Of Latin origin; (in the genitive, that is, possessive case) of Appius, the name of a Roman: - Appii."]},{"k":"G676","v":["ἀπρόσιτος","aprositos","ap-ros'-ee-tos","From G1 (as a negative particle) and a derivative of a compound of G4314 and εἶμι eimi (to go); inaccessible: - which no man can approach."]},{"k":"G677","v":["ἀπρόσκοπος","aproskopos","ap-ros'-kop-os","From G1 (as a negative particle) and a presumed derivative of G4350; actively inoffensive, that is, not leading into sin; passively faultless, that is, not led into sin: - none (void of, without) offence."]},{"k":"G678","v":["ἀπροσωπολήπτως","aprosōpolēptōs","ap-ros-o-pol-ape'-toce","Adverb from a compound of G1 (as a negative particle) and a presumed derivative of a presumed compound of G4383 and G2983 (compare G4381); in a way not accepting the person, that is, impartially: - without respect of persons."]},{"k":"G679","v":["ἄπταιστος","aptaistos","ap-tah'ee-stos","From G1 (as a negative particle) and a derivative of G4417; not stumbling, that is, (figuratively) without sin: - from falling."]},{"k":"G680","v":["ἅπτομαι","haptomai","hap'-tom-ahee","Reflexive of G681; properly to attach oneself to, that is, to touch (in many implied relations): - touch."]},{"k":"G681","v":["ἅπτω","haptō","hap'-to","A primary verb; properly to fasten to, that is, (specifically) to set on fire: - kindle, light."]},{"k":"G682","v":["Ἀπφία","Apphia","ap-fee'-a","Probably of foreign origin; Apphia, a woman of Colossae: - Apphia."]},{"k":"G683","v":["ἀπωθέομαι, ἀπώομαι","apōtheomai, apōthomai","ap-o-theh'-om-ahee, ap-o'-thom-ahee","From G575 and the middle voice of ὠθέω ōtheō or ὤθω ōthō (to shove); to push off, figuratively to reject: - cast away, put away (from), thrust way (from)."]},{"k":"G684","v":["ἀπώλεια","apōleia","ap-o'-li-a","From a presumed derivative of G622; ruin or loss (physical, spiritual or eternal): - damnable (-nation), destruction, die, perdition, X perish, pernicious ways, waste."]},{"k":"G685","v":["ἀρά","ara","ar-ah'","Probably from G142; properly prayer (as lifted to Heaven), that is, (by implication) imprecation: - curse."]},{"k":"G686","v":["ἄρα","ara","ar'-ah","Probably from G142 (through the idea of drawing a conclusion); a particle denoting an inference more or less decisive (as follows): - haply, (what) manner (of man), no doubt, perhaps, so be, then, therefore, truly, wherefore. Often used in connection with other particles, especially G1065 or G3767 (after) or G1487 (before). Compare also G687."]},{"k":"G687","v":["ἆρα","ara","ar'-ah","A form of G686, denoting an interrogation to which a negative answer is presumed: - therefore."]},{"k":"G688","v":["Ἀραβία","Arabia","ar-ab-ee'-ah","Of Hebrew origin [H6152]; Arabia, a region of Asia: - Arabia."]},{"k":"G689","v":["Ἀράμ","Aram","ar-am'","Of Hebrew origin [H7410]; Aram (that is, Ram), an Israelite: - Aram."]},{"k":"G690","v":["Ἄραψ","Araps","ar'-aps","From G688; an Arab or native of Arabia: - Arabian."]},{"k":"G691","v":["ἀργέω","argeō","arg-eh'-o","From G692; to be idle, that is, (figuratively) to delay: - linger."]},{"k":"G692","v":["ἀργός","argos","ar-gos'","From G1 (as a negative particle) and G2041; inactive, that is, unemployed; (by implication) lazy, useless: - barren, idle, slow."]},{"k":"G693","v":["ἀργύρεος","argureos","ar-goo'-reh-os","From G696; made of silver: - (of) silver."]},{"k":"G694","v":["ἀργύριον","argurion","ar-goo'-ree-on","Neuter of a presumed derivative of G696; silvery, that is, (by implication) cash; specifically a silverling (that is, drachma or shekel): - money, (piece of) silver (piece)."]},{"k":"G695","v":["ἀργυροκόπος","argurokopos","ar-goo-rok-op'-os","From G696 and G2875; a beater (that is, worker) of silver: - silversmith."]},{"k":"G696","v":["ἄργυρος","arguros","ar'-goo-ros","From ἀργός argos (shining); silver (the metal, in the articles or coin): - silver."]},{"k":"G697","v":["Ἄρειος Πάγος","Areios Pagos","ar'-i-os pag'-os","From Ἄρης Arēs (the name of the Greek deity of war) and a derivative of G4078; rock of Ares, a place in Athens: - Areopagus, Mars’ Hill."]},{"k":"G698","v":["Ἀρεοπαγίτης","Areopagitēs","ar-eh-op-ag-ee'-tace","From G697; an Areopagite or member of the court held on Mars’ Hill: - Areopagite."]},{"k":"G699","v":["ἀρέσκεια","areskeia","ar-es'-ki-ah","From a derivative of G700; complaisance: - pleasing."]},{"k":"G700","v":["ἀρέσκω","areskō","ar-es'-ko","Probably from G142 (through the idea of exciting emotion); to be agreeable (or by implication to seek to be so): - please."]},{"k":"G701","v":["ἀρεστός","arestos","ar-es-tos'","From G700; agreeable; by implication fit: - (things that) please (-ing), reason."]},{"k":"G702","v":["Ἀρέτας","Aretas","ar-et'-as","Of foreign origin; Aretas, an Arabian: - Aretas."]},{"k":"G703","v":["ἀρέτη","aretē","ar-et'-ay","From the same as G730; properly manliness (valor), that is, excellence (intrinsic or attributed): - praise, virtue."]},{"k":"G704","v":["ἀρήν","arēn","ar-ane'","Perhaps the same as G730; a lamb (as a male): - lamb."]},{"k":"G705","v":["ἀριθμέω","arithmeō","ar-ith-meh'-o","From G706; to enumerate or count: - number."]},{"k":"G706","v":["ἀριθμός","arithmos","ar-ith-mos'","From G142; a number (as reckoned up): - number."]},{"k":"G707","v":["Ἀριμαθαία","Arimathaia","ar-ee-math-ah'ee-ah","Of hebrew origin [H7414]; Arimathaea (or Ramah), a place in Palestine: - Arimatha."]},{"k":"G708","v":["Ἀρίσταρχος","Aristarchos","ar-is'-tar-khos","From the same as G712 and G757; best ruling; Aristarchus, a Macedonian: - Aristarchus."]},{"k":"G709","v":["ἀριστάω","aristaō","ar-is-tah'-o","From G712; to take the principal meal: - dine."]},{"k":"G710","v":["ἀριστερός","aristēros","ar-is-ter-os'","Apparently a compound of the same as G712; the left hand (as second best): - left [hand]."]},{"k":"G711","v":["Ἀριστόβουλος","Aristoboulos","ar-is-tob'-oo-los","From the same as G712 and G1012; best counselling; Aristoboulus, a Christian: - Aristobulus."]},{"k":"G712","v":["ἀριστον","ariston","ar'-is-ton","Apparent neuter of a superlative from the same as G730; the best meal [or breakfast; perhaps from ἦρι ēri (“early”)], that is, luncheon: - dinner."]},{"k":"G713","v":["ἀρκετός","arketos","ar-ket-os'","From G714; satisfactory: - enough, suffice (-ient)."]},{"k":"G714","v":["ἀρκέω","arkeō","ar-keh'-o","Apparently a primary verb (but probably akin to G142 through the idea of raising a barrier); properly to ward off, that is, (by implication) to avail (figuratively be satisfactory): - be content, be enough, suffice, be sufficient."]},{"k":"G715","v":["ἄρκτος","arktos","ark'-tos","Probably from G714; a bear (as obstructing by ferocity): - bear."]},{"k":"G716","v":["ἅρμα","harma","har'-mah","Probably from G142 (perhaps with G1 (as a particle of union) prefixed); a chariot (as raised or fitted together (compare G719)): - chariot."]},{"k":"G717","v":["Ἀρμαγεδδών","Armageddōn","ar-mag-ed-dohn'","Of Hebrew origin [H2022] and [H4023]; Armageddon (or Har-Megiddon), a symbolical name: - Armageddon."]},{"k":"G718","v":["ἁρμόζω","harmozō","har-mod'-zo","From G719; to joint, that is, (figuratively) to woo (reflexively to betroth): - espouse."]},{"k":"G719","v":["ἁρμός","harmos","har-mos'","From the same as G716; an articulation (of the body): - joint."]},{"k":"G720","v":["ἀρνέομαι","arneomai","ar-neh'-om-ahee","Perhaps from G1 (as a negative particle) and the middle of G4483; to contradict, that is, disavow, reject, abnegate: - deny, refuse."]},{"k":"G721","v":["ἀρνίον","arnion","ar-nee'-on","Diminutive from G704; a lambkin: - lamb."]},{"k":"G722","v":["ἀροτριόω","arotrioō","ar-ot-ree-o'-o","From G723; to plough: - plow."]},{"k":"G723","v":["ἄροτρον","arotron","ar'-ot-ron","From ἀρόω aroō (to till); a plough: - plow."]},{"k":"G724","v":["ἁρπαγή","harpagē","har-pag-ay'","From G726; pillage (properly abstract): - extortion, ravening, spoiling."]},{"k":"G725","v":["ἁρπαγμός","harpagmos","har-pag-mos'","From G726; plunder (properly concrete): - robbery."]},{"k":"G726","v":["ἁρπάζω","harpazō","har-pad'-zo","From a derivative of G138; to seize (in various applications): - catch (away, up), pluck, pull, take (by force)."]},{"k":"G727","v":["ἅρπαξ","harpax","har'-pax","From G726; rapacious: - extortion, ravening."]},{"k":"G728","v":["ἀῤῥαβών","arrhabōn","ar-hrab-ohn'","Of Hebrew origin [H6162]; a pledge, that is, part of the purchase money or property given in advance as security for the rest: - earnest."]},{"k":"G729","v":["ἀῤῥαφος","arrhaphos","ar'-hraf-os","From G1 (as a negative particle) and a presumed derivative of the same as G4476; unsewed, that is, of a single piece: - without seam."]},{"k":"G730","v":["ἄῤῥην, αρσην","arrhēn    arsēn","ar'-hrane, ar'-sane","Probably from G142; male (as stronger for lifting): - male, man."]},{"k":"G731","v":["ἄῤῥητος","arrhētos","ar'-hray-tos","From G1 (as a negative particle) and the same as G4490; unsaid, that is, (by implication) inexpressible: - unspeakable."]},{"k":"G732","v":["ἄῤῥωστος","arrhōstos","ar'-hroce-tos","From G1 (as a negative particle) and a presumed derivative of G4517; infirm: - sick (folk, -ly)."]},{"k":"G733","v":["ἀρσενοκοίτης","arsenokoitēs","ar-sen-ok-oy'-tace","From G730 and G2845; a sodomite: - abuser of (that defile) self with mankind."]},{"k":"G734","v":["Ἀρτεμάς","Artemas","ar-tem-as'","Contracted from a compound of G735 and G1435; gift of Artemis; Artemas (or Artemidorus), a Christian: - Artemas."]},{"k":"G735","v":["Ἄρτεμις","Artemis","ar'-tem-is","Probably from the same as G736; prompt; Artemis, the name of a Grecian goddess borrowed by the Asiatics for one of their deities: - Diana."]},{"k":"G736","v":["ἀρτέμων","artemōn","ar-tem'-ohn","From a derivative of G737; properly something ready (or else more remotely from G142 (compare G740); something hung up), that is, (specifically) the topsail (rather foresail or jib) of a vessel: - mainsail."]},{"k":"G737","v":["ἄρτι","arti","ar'-tee","Adverb from a derivative of G142 (compare G740) through the idea of suspension; just now: - this day (hour), hence [-forth], here [-after], hither [-to], (even) now, (this) present."]},{"k":"G738","v":["ἀρτιγέννητος","artigennētos","ar-teeg-en'-nay-tos","From G737 and G1084; just born, that is, (figuratively) a young convert: - new born."]},{"k":"G739","v":["ἄρτιος","artios","ar'-tee-os","From G737; fresh, that is, (by implication) complete: - perfect."]},{"k":"G740","v":["ἄρτος","artos","ar'-tos","From G142; bread (as raised) or a loaf: - (shew-) bread, loaf."]},{"k":"G741","v":["ἀρτύω","artuō","ar-too'-o","From a presumed derivative of G142; to prepare, that is, spice (with stimulating condiments): - season."]},{"k":"G742","v":["Ἀρφαξάδ","Arphaxad","ar-fax-ad'","Of Hebrew origin [H775]; Arphaxad, a post diluvian patriarch: - Arphaxad."]},{"k":"G743","v":["ἀρχάγγελος","archaggelos","ar-khang'-el-os","From G757 and G32; a chief angel: - archangel."]},{"k":"G744","v":["ἀρχαῖος","archaios","ar-khah'-yos","From G746; original or primeval: - (them of) old (time)."]},{"k":"G745","v":["Ἀρχέλαος","Archelaos","ar-khel'-ah-os","From G757 and G2994; people ruling; Archelaus, a Jewish king: - Archelaus."]},{"k":"G746","v":["ἀρχή","archē","ar-khay'","From G756; (properly abstract) a commencement, or (concrete) chief (in various applications of order, time, place or rank): - beginning, corner, (at the, the) first (estate), magistrate, power, principality, principle, rule."]},{"k":"G747","v":["ἀρχηγός","archēgos","ar-khay-gos'","From G746 and G71; a chief leader: - author, captain, prince."]},{"k":"G748","v":["ἀρχιερατικός","archieratikos","ar-khee-er-at-ee-kos'","From G746 and a derivative of G2413; high priestly: - of the high-priest."]},{"k":"G749","v":["ἀρχιερεύς","archiereus","ar-khee-er-yuce'","From G746 and G2409; the high priest (literally of the Jews, typically Christ); by extension a chief priest: - chief (high) priest, chief of the priests."]},{"k":"G750","v":["ἀρχιποίμην","archipoimēn","ar-khee-poy'-mane","From G746 and G4166; a head shepherd: - chief shepherd."]},{"k":"G751","v":["Ἄρχιππος","Archippos","ar'-khip-pos","From G746 and G2462; horse ruler; Archippus, a Christian: - Archippus."]},{"k":"G752","v":["ἀρχισυνάγωγος","archisunagōgos","ar-khee-soon-ag'-o-gos","From G746 and G4864; director of the synagogue services: - (chief) ruler of the synagogue."]},{"k":"G753","v":["ἀρχιτέκτων","architektōn","ar-khee-tek'-tone","From G746 and G5045; a chief constructor, that is, “architect”: - masterbuilder."]},{"k":"G754","v":["ἀρχιτελώνης","architelōnēs","ar-khee-tel-o'-nace","From G746 and G5057; a principal tax gatherer: - chief among the publicans."]},{"k":"G755","v":["ἀρχιτρίκλινος","architriklinos","ar-khee-tree'-klee-nos","From G746 and a compound of G5140 and G2827 (a dinner bed, because composed of three couches); director of the entertainment: - governor (ruler) of the feast."]},{"k":"G756","v":["ἄρχομαι","archomai","ar'-khom-ahee","Middle voice of G757 (through the implication of precedence); to commence (in order of time): - rehearse from the) begin (-ning)."]},{"k":"G757","v":["ἄρχω","archō","ar'-kho","A primary verb; to be first (in political rank or power): - reign (rule) over."]},{"k":"G758","v":["ἄρχων","archōn","ar'-khone","Present participle of G757; a first (in rank or power): - chief (ruler), magistrate, prince, ruler."]},{"k":"G759","v":["ἄρωμα","arōma","ar'-o-mah","From G142 (in the sense of sending off scent); an aromatic: - (sweet) spice."]},{"k":"G760","v":["Ἀσά","Asa","as-ah'","Of Hebrew origin [H609]; Asa, an Israelite: - Asa."]},{"k":"G761","v":["ἀσάλευτος","asaleutos","as-al'-yoo-tos","From G1 (as a negative particle) and a derivative of G4531; unshaken, that is, (by implication) immovable (figuratively): - which cannot be moved, ummovable."]},{"k":"G762","v":["ἄσβεστος","asbestos","as'-bes-tos","From G1 (as a negative particle) and a derivative of G4570; not extinguished, that is, (by implication) perpetual: - not to be quenched, unquenchable."]},{"k":"G763","v":["ἀσέβεια","asebeia","as-eb'-i-ah","From G765; impiety, that is, (by implication) wickedness: - ungodly (-liness)."]},{"k":"G764","v":["ἀσεβέω","asebeō","as-eb-eh'-o","From G765; to be (by implication act) impious or wicked: - commit (live, that after should live) ungodly."]},{"k":"G765","v":["ἀσεβής","asebēs","as-eb-ace'","From G1 (as a negative particle) and a presumed derivative of G4576; irreverent, that is, (by extension) impious or wicked: - ungodly (man)."]},{"k":"G766","v":["ἀσέλγεια","aselgeia","as-elg'-i-a","From a compound of G1 (as a negative particle) and a presumed σελγής selgēs (of uncertain derivation, but apparently meaning continent); licentiousness (sometimes including other vices): - filthy, lasciviousness, wantonness."]},{"k":"G767","v":["ἄσημος","asēmos","as'-ay-mos","From G1 (as a negative particle) and the base of G4591; unmarked, that is, (figuratively) ignoble: - mean."]},{"k":"G768","v":["Ἀσήρ","Asēr","as-ayr'","Of Hebrew origin [H836]; Aser (that is, Asher), an Israelite tribe: - Aser."]},{"k":"G769","v":["ἀσθένεια","astheneia","as-then'-i-ah","From G772; feebleness (of body or mind); by implication malady; moral frailty: - disease, infirmity, sickness, weakness."]},{"k":"G770","v":["ἀσθενέω","astheneō","as-then-eh'-o","From G772; to be feeble (in any sense): - be diseased, impotent folk (man), (be) sick, (be, be made) weak."]},{"k":"G771","v":["ἀσθένημα","asthenēma","as-then'-ay-mah","From G770; a scruple of conscience: - infirmity."]},{"k":"G772","v":["ἀσθενής","asthenēs","as-then-ace'","From G1 (as a negative particle) and the base of G4599; strengthless (in various applications, literally, or figuratively and morally): - more feeble, impotent, sick, without strength, weak (-er, -ness, thing)."]},{"k":"G773","v":["Ἀσία","Asia","as-ee'-ah","Of uncertain derivation; Asia, that is, Asia Minor, or (usually) only its western shore: - Asia."]},{"k":"G774","v":["Ἀσιανός","Asianos","as-ee-an-os'","From G773; an Asian (that is, Asiatic) or inhabitant of Asia: - of Asia."]},{"k":"G775","v":["Ἀσιάρχης","Asiarchēs","as-ee-ar'-khace","From G773 and G746; an Asiarch or president of the public festivities in a city of Asia Minor: - chief of Asia."]},{"k":"G776","v":["ἀσιτία","asitia","as-ee-tee'-ah","From G777; fasting (the state): - abstinence."]},{"k":"G777","v":["ἄσιτος","asitos","as'-ee-tos","From G1 (as a negative particle) and G4621; without (taking) food: - fasting."]},{"k":"G778","v":["ἀσκέω","askeō","as-keh'-o","Probably from the same as G4632; to elaborate, that is, (figuratively) train (by implication strive): - exercise."]},{"k":"G779","v":["ἀσκός","askos","as-kos'","From the same as G778; a leathern (or skin) bag used as a bottle: - bottle."]},{"k":"G780","v":["ἀσμένως","asmenōs","as-men'-oce","Adverb from a derivative of the base of G2237; with pleasure: - gladly."]},{"k":"G781","v":["ἄσοφος","asophos","as'-of-os","From G1 (as a negative particle) and G4680; unwise: - fool."]},{"k":"G782","v":["ἀσπάζομαι","aspazomai","as-pad'-zom-ahee","From G1 (as a particle of union) and a presumed form of G4685; to enfold in the arms, that is, (by implication) to salute, (figuratively) to welcome: - embrace, greet, salute, take leave."]},{"k":"G783","v":["ἀσπασμός","aspasmos","as-pas-mos'","From G782; a greeting (in person or by letter): - greeting, salutation."]},{"k":"G784","v":["ἄσπιλος","aspilos","as'-pee-los","From G1 (as a negative particle) and G4695; unblemished (physically or morally): - without spot, unspotted."]},{"k":"G785","v":["ἀσπίς","aspis","as-pece'","Of uncertain derivation; a buckler (or round shield); used of a serpent (as coiling itself), probably the “asp”: - asp."]},{"k":"G786","v":["ἄσπονδος","aspondos","as'-pon-dos","From G1 (as a negative particle) and a derivative of G4689; literally without libation (which usually accompanied a treaty), that is, (by implication) truceless: - implacable, truce-breaker."]},{"k":"G787","v":["ἀσσάριον","assarion","as-sar'-ee-on","Of Latin origin; an assarius or as, a Roman coin: - farthing."]},{"k":"G788","v":["ἆσσον","asson","as'-son","Neuter comparative of the base of G1451; more nearly, that is, very near: - close."]},{"k":"G789","v":["Ἄσσος","Assos","as'-sos","Probably of foreign origin; Assus, a city of Asia Minor: - Assos."]},{"k":"G790","v":["ἀστατέω","astateō","as-tat-eh'-o","From G1 (as a negative particle) and a derivative of G2476; to be non stationary, that is, (figuratively) homeless: - have no certain dwelling-place."]},{"k":"G791","v":["ἀστεῖος","asteios","as-ti'-os","From ἄστυ astu (a city); urbane, that is, (by implication) handsome: - fair."]},{"k":"G792","v":["ἀστήρ","astēr","as-tare'","Probably from the base of G4766; a star (as strown over the sky), literally or figuratively: - star."]},{"k":"G793","v":["ἀστήρικτος","astēriktos","as-tay'-rik-tos","From G1 (as a negative particle) and a presumed derivation of G4741; unfixed, that is, (figuratively) vacillating: - unstable."]},{"k":"G794","v":["ἄστοργος","astorgos","as'-tor-gos","From G1 (as a negative particle) and a presumed derivative of στέργω stergō (to cherish affectionately); hard hearted towards kindred: - without natural affection."]},{"k":"G795","v":["ἀστοχέω","astocheō","as-tokh-eh'-o","From a compound of G1 (as a negative particle) and στόιχος stoichos (an aim); to miss the mark, that is, (figuratively) deviate from truth: - err, swerve."]},{"k":"G796","v":["ἀστραπή","astrapē","as-trap-ay'","From G797; lightning; by analogy glare: - lightning, bright shining."]},{"k":"G797","v":["ἀστράπτω","astraptō","as-trap'-to","Probably from G792; to flash as lightning: - lighten, shine."]},{"k":"G798","v":["ἄστρον","astron","as'-tron","Neuter from G792; properly a constellation; put for a single star (natural or artificial): - star."]},{"k":"G799","v":["Ἀσύγκριτος","Asugkritos","as-oong'-kree-tos","From G1 (as a negative particle) and a derivative of G4793; incomparable; Asyncritus, a Christian: - Asyncritus."]},{"k":"G800","v":["ἀσύμφωνος","asumphōnos","as-oom'-fo-nos","From G1 (as a negative particle) and G4859; inharmonious (figuratively): - agree not."]},{"k":"G801","v":["ἀσύνετος","asunetos","as-oon'-ay-tos","From G1 (as a negative particle) and G4908; unintelligent; by implication wicked: - foolish, without understanding."]},{"k":"G802","v":["ἀσύνθετος","asunthetos","as-oon'-thet-os","From G1 (as a negative particle) and a derivative of G4934; properly not agreed, that is, treacherous to compacts: - covenant-breaker"]},{"k":"G803","v":["ἀσφάλεια","asphaleia","as-fal'-i-ah","From G804; security (literally or figuratively): - certainty, safety."]},{"k":"G804","v":["ἀσφαλής","asphalēs","as-fal-ace'","From G1 (as a negative particle) and σφάλλω sphallō (to “fail”); secure (literally or figuratively): - certain (-ty), safe, sure."]},{"k":"G805","v":["ἀσφαλίζω","asphalizō","as-fal-id'-zo","From G804; to render secure: - make fast (sure)."]},{"k":"G806","v":["ἀσφαλῶς","asphalōs","as-fal-oce'","Adverb from G804; securely (literally or figuratively): - assuredly, safely."]},{"k":"G807","v":["ἀσχημονέω","aschēmoneō","as-kay-mon-eh'-o","From G809; to be (that is, act) unbecoming: - behave self uncomely (unseemly)."]},{"k":"G808","v":["ἀσχημοσύνη","aschēmosunē","as-kay-mos-oo'-nay","From G809; an indecency; by implication the pudenda: - shame, that which is unseemly."]},{"k":"G809","v":["ἀσχήμων","aschēmōn","as-kay'-mone","From G1 (as a negative particle) and a presumed derivative of G2192 (in the sense of its congener G4976); properly shapeless, that is, (figuratively) inelegant: - uncomely."]},{"k":"G810","v":["ἀσωτία","asōtia","as-o-tee'-ah","From a compound of G1 (as a negative particle) and a presumed derivative of G4982; properly unsavedness, that is, (by implication) profligacy: - excess, riot."]},{"k":"G811","v":["ἀσώτως","asōtōs","as-o'-toce","Adverb from the same as G810; dissolutely: - riotous."]},{"k":"G812","v":["ἀτακτέω","atakteō","at-ak-teh'-o","From G813; to be (that is, act) irregular: - behave self disorderly."]},{"k":"G813","v":["ἄτακτος","ataktos","at'-ak-tos","From G1 (as a negative particle) and a derivative of G5021; unarranged, that is, (by implication) insubordinate (religiously): - unruly."]},{"k":"G814","v":["ἀτάκτως","ataktōs","at-ak'-toce","Adverb from G813; irregularly (morally): - disorderly."]},{"k":"G815","v":["ἄτεκνος","ateknos","at'-ek-nos","From G1 (as a negative particle) and G5043; childless: - childless, without children."]},{"k":"G816","v":["ἀτενίζω","atenizō","at-en-id'-zo","From a compound of G1 (as a particle of union) and τείνω teinō (to stretch); to gaze intently: - behold earnestly (stedfastly), fasten (eyes), look (earnestly, stedfastly, up stedfastly), set eyes."]},{"k":"G817","v":["ἄτερ","ater","at'-er","A particle probably akin to G427; aloof, that is, apart from (literally or figuratively): - in the absence of, without."]},{"k":"G818","v":["ἀτιμάζω","atimazō","at-im-ad'-zo","From G820; to render infamous, that is, (by implication) contemn or maltreat: - despise, dishonour, suffer shame, entreat shamefully."]},{"k":"G819","v":["ἀτιμία","atimia","at-ee-mee'-ah","From G820; infamy, that is, (subjectively) comparative indignity, (objectively) disgrace: - dishonour, reproach, shame, vile."]},{"k":"G820","v":["ἄτιμος","atimos","at'-ee-mos","From G1 (as a negative particle) and G5092; (negatively) unhonoured or (positively) dishonoured. May show a comparative degree such as less honourable: - despised, without honour, less honourable [comparative degree]."]},{"k":"G821","v":["ἀτιμόω","atimoō","at-ee-mo'-o","From G820; used like G818, to maltreat: - handle shamefully."]},{"k":"G822","v":["ἀτμίς","atmis","at-mece'","From the same as G109; mist: - vapour."]},{"k":"G823","v":["ἄτομος","atomos","at'-om-os","From G1 (as a negative particle) and the base of G5114; uncut, that is, (by implication) indivisible (an “atom” of time): - moment."]},{"k":"G824","v":["ἄτοπος","atopos","at'-op-os","From G1 (as a negative particle) and G5117; out of place, that is, (figuratively) improper, injurious, wicked: - amiss, harm, unreasonable."]},{"k":"G825","v":["Ἀττάλεια","Attaleia","at-tal'-i-ah","From Ἄτταλος Attalos (a king of Pergamus); Attaleia, a place in Pamphylia: - Attalia."]},{"k":"G826","v":["αὐγάζω","augazō","ow-gad'-zo","From G827; to beam forth (figuratively): - shine."]},{"k":"G827","v":["αὐγή","augē","owg-ay'","Of uncertain derivation; a ray of light, that is, (by implication) radiance, dawn: - break of day."]},{"k":"G828","v":["Αὔγουστος","Augoustos","ow'-goos-tos","From Latin (“august”); Augustus, a title of the Roman emperor: - Augustus."]},{"k":"G829","v":["αὐθάδης","authadēs","ow-thad'-ace","From G846 and the base of G2237; self pleasing, that is, arrogant: - self-willed."]},{"k":"G830","v":["αὐθαίρετος","authairetos","ow-thah'ee-ret-os","From G846 and the same as G140; self chosen, that is, (by implication) voluntary: - of own accord, willing of self."]},{"k":"G831","v":["αὐθεντέω","authenteō","ow-then-teh'-o","From a compound of G846 and ἕντης hentēs (obsolete; a worker); to act of oneself, that is, (figuratively) dominate: - usurp authority over."]},{"k":"G832","v":["αὐλέω","auleō","ow-leh'-o","From G836; to play the flute: - pipe."]},{"k":"G833","v":["αὐλή","aulē","ow-lay'","From the same as G109; a yard (as open to the wind); by implication a mansion: - court, ([sheep-]) fold, hall, palace."]},{"k":"G834","v":["αὐλητής","aulētēs","ow-lay-tace'","From G832; a flute player: - minstrel, piper."]},{"k":"G835","v":["αὐλίζομαι","aulizomai","ow-lid'-zom-ahee","Middle voice from G833; to pass the night (properly in the open air): - abide, lodge."]},{"k":"G836","v":["αὐλός","aulos","ow-los'","From the same as G109, a flute (as blown): - pipe."]},{"k":"G837","v":["αὐξάνω","auxanō","owx-an'-o","A prolonged form of a primary verb; to grow (“wax”), that is, enlarge (literally or figuratively, actively or passively): - grow (up), (give the) increase."]},{"k":"G838","v":["αὔξησις","auxēsis","owx'-ay-sis","From G837; growth: - increase."]},{"k":"G839","v":["αὔριον","aurion","ow'-ree-on","From a derivative of the same as G109 (meaning a breeze, that is, the morning air); properly fresh, that is, (adverbially with ellipsis of G2250) tomorrow: - (to-) morrow, next day."]},{"k":"G840","v":["αὐστηρός","austēros","ow-stay-ros'","From a (presumed) derivative of the same as G109 (meaning blown); rough (properly as a gale), that is, (figuratively) severe: - austere."]},{"k":"G841","v":["αὐτάρκεια","autarkeia","ow-tar'-ki-ah","From G842; self satisfaction, that is, (abstractly) contentedness, or (concretely) a competence: - contentment, sufficiency."]},{"k":"G842","v":["αὐτάρκης","autarkēs","ow-tar'-kace","From G846 and G714; self complacent, that is, contented: - content."]},{"k":"G843","v":["αὐτοκατάκριτος","autokatakritos","ow-tok-at-ak'-ree-tos","From G846 and a derivative of G2632; self condemned: - condemned of self."]},{"k":"G844","v":["αὐτόματος","automatos","ow-tom'-at-os","From G846 and the same as G3155; self moved (“automatic”), that is, spontaneous: - of own accord, of self."]},{"k":"G845","v":["αὐτόπτης","autoptēs","ow-top'-tace","From G846 and G3700; self seeing, that is, an eye witness: - eye-witness."]},{"k":"G846","v":["αὐτός","autos","ow-tos'","From the particle αὖ au (perhaps akin to the base of G109 through the idea of a baffling wind; backward); the reflexive pronoun self, used (alone or in the compound of G1438) of the third person, and (with the proper personal pronoun) of the other persons: - her, it (-self), one, the other, (mine) own, said, ([self-], the) same, ([him-, my-, thy-]) self, [your-] selves, she, that, their (-s), them ([-selves]), there [-at, -by, -in, -into, -of, -on, -with], they, (these) things, this (man), those, together, very, which. Compare G848."]},{"k":"G847","v":["αὐτοῦ","autou","ow-too'","Genitive (that is, possessive) of G846, used as an adverb of location; properly belonging to the same spot, that is, in this (or that) place: - (t-) here."]},{"k":"G848","v":["αὑτοῦ","hautou","how-too'","Contraction for G1438; self (in some oblique case or reflexive relation): - her (own), (of) him (-self), his (own), of it, thee, their (own), them (-selves), they."]},{"k":"G849","v":["αὐτόχειρ","autocheir","ow-tokh'-ire","From G846 and G5495; self handed, that is, doing personally: - with . . . own hands."]},{"k":"G850","v":["αὐχμηρός","auchmēros","owkh-may-ros'","From αὐχμός auchmos (probably from a base akin to that of G109; dust, as dried by wind); properly dirty, that is, (by implication) obscure: - dark."]},{"k":"G851","v":["ἀφαιρέω","aphaireō","af-ahee-reh'-o","From G575 and G138; to remove (literally or figuratively): - cut (smite) off, take away."]},{"k":"G852","v":["ἀφανής","aphanēs","af-an-ace'","From G1 (as a negative particle) and G5316; non apparent: - that is not manifest."]},{"k":"G853","v":["ἀφανίζω","aphanizō","af-an-id'-zo","From G852; to render unapparent, that is, (actively) consume (becloud), or (passively) disappear (be destroyed): - corrupt, disfigure, perish, vanish away."]},{"k":"G854","v":["ἀφανισμός","aphanismos","af-an-is-mos'","From G853; disappearance, that is, (figuratively) abrogation: - vanish away."]},{"k":"G855","v":["ἄφαντος","aphantos","af'-an-tos","From G1 (as a negative particle) and a derivative of G5316; non manifested, that is, invisible: - vanished out of sight."]},{"k":"G856","v":["ἀφεδρών","aphedrōn","af-ed-rone'","From a compound of G575 and the base of G1476; a place of sitting apart, that is, a privy: - draught."]},{"k":"G857","v":["ἀφειδία","apheidia","af-i-dee'-ah","From a compound of G1 (as a negative particle) and G5339; unsparingness, that is, austerity (ascetism): - neglecting."]},{"k":"G858","v":["ἀφελότης","aphelotēs","af-el-ot'-ace","From a compound of G1 (as a negative particle) and φέλλος phellos (in the sense of a stone as stubbing the foot); smoothness, that is, (figuratively) simplicity: - singleness."]},{"k":"G859","v":["ἄφεσις","aphesis","af'-es-is","From G863; freedom; (figuratively) pardon: - deliverance, forgiveness, liberty, remission."]},{"k":"G860","v":["ἁφή","haphē","haf-ay'","From G680; probably a ligament (as fastening): - joint."]},{"k":"G861","v":["ἀφθαρσία","aphtharsia","af-thar-see'-ah","From G862; incorruptibility; generally unending existence; (figuratively) genuineness: - immortality, incorruption, sincerity."]},{"k":"G862","v":["ἄφθαρτος","aphthartos","af'-thar-tos","From G1 (as a negative particle) and a derivative of G5351; undecaying (in essence or continuance): - not (in-, un-) corruptible, immortal."]},{"k":"G863","v":["ἀφίημι","aphiēmi","af-ee'-ay-mee","From G575 and ἵημι hiēmi (to send; an intensive form of εἶμι eimi (to go)); to send forth, in various applications: - cry, forgive, forsake, lay aside, leave, let (alone, be, go, have), omit, put (send) away, remit, suffer, yield up."]},{"k":"G864","v":["ἀφικνέομαι","aphikneomai","af-ik-neh'-om-ahee","From G575 and the base of G2425; to go (that is, spread) forth (by rumor): - come abroad."]},{"k":"G865","v":["ἀφιλάγαθος","aphilagathos","af-il-ag'-ath-os","From G1 (as a negative particle) and G5358; hostile to virtue: - depiser of those that are good."]},{"k":"G866","v":["ἀφιλάργυρος","aphilarguros","af-il-ar'-goo-ros","From G1 (as a negative particle) and G5366; unavaricious: - without covetousness, not greedy of filthy lucre."]},{"k":"G867","v":["ἄφιξις","aphixis","af'-ix-is","From G864; properly arrival, that is, (by implication) departure: - departing."]},{"k":"G868","v":["ἀφίστημι","aphistēmi","af-is'-tay-mee","From G575 and G2476; to remove, that is, (actively) instigate to revolt; usually (reflexively) to desist, desert, etc.: - depart, draw (fall) away, refrain, withdraw self."]},{"k":"G869","v":["ἄφνω","aphnō","af'-no","Adverb from G852 (contracted); unawares, that is, unexpectedly: - suddenly."]},{"k":"G870","v":["ἀφόβως","aphobōs","af-ob'-oce","Adveb from a compound of G1 (as a negative particle) and G5401; fearlessly: - without fear."]},{"k":"G871","v":["ἀφομοιόω","aphomoioō","af-om-oy-o'-o","From G575 and G3666; to assimilate closely: - make like."]},{"k":"G872","v":["ἀφοράω","aphoraō","af-or-ah'-o","From G575 and G3708; to consider attentively: - look."]},{"k":"G873","v":["ἀφορίζω","aphorizō","af-or-id'-zo","From G575 and G3724; to set off by boundary, that is, (figuratively) limit, exclude, appoint, etc.: - divide, separate, sever."]},{"k":"G874","v":["ἀφορμή","aphormē","af-or-may'","From a compound of G575 and G3729; a starting point, that is, (figuratively) an opportunity: - occasion."]},{"k":"G875","v":["ἀφρίζω","aphrizō","af-rid'-zo","From G876; to froth at the mouth (in epilepsy): - foam."]},{"k":"G876","v":["ἀφρός","aphros","af-ros'","Apparently a primary word; froth, that is, slaver: - foaming."]},{"k":"G877","v":["ἀφροσύνη","aphrosunē","af-ros-oo'-nay","From G878; senselessness, that is, (euphemistically) egotism; (morally) recklessness: - folly, foolishly (-ness)."]},{"k":"G878","v":["ἄφρων","aphrōn","af'-rone","From G1 (as a negative particle) and G5424; properly mindless, that is, stupid, (by implication) ignorant, (specifically) egotistic, (practically) rash, or (morally) unbelieving: - fool (-ish), unwise."]},{"k":"G879","v":["ἀφυπνόω","aphupnoō","af-oop-no'-o","From a compound of G575 and G5258; properly to become awake, that is, (by implication) to drop (off) in slumber: - fall asleep."]},{"k":"G880","v":["ἄφωνος","aphōnos","af'-o-nos","From G1 (as a negative particle) and G5456; voiceless, that is, mute (by nature or choice); figuratively unmeaning: - dumb, without signification."]},{"k":"G881","v":["Ἀχάζ","Achaz","akh-adz'","Of Hebrew origin [H271]; Achaz, an Israelite: - Achaz."]},{"k":"G882","v":["Ἀχαΐ́α","Achaia","ach-ah-ee'-ah","Of uncertain derivation; Achaia (that is, Greece), a country of Europe: - Achaia."]},{"k":"G883","v":["Ἀχαΐκός","Achaikos","ach-ah-ee-kos'","From G882; an Achaian; Achaicus, a Christian: - Achaicus."]},{"k":"G884","v":["ἀχάριστος","acharistos","ach-ar'-is-tos","From G1 (as a negative particle) and a presumed derivative of G5483; thankless, that is, ungrateful: - unthankful."]},{"k":"G885","v":["Ἀχείμ","Acheim","akh-ime'","Probably of Hebrew origin (compare [H3137]); Achim, an Israelite: - Achim."]},{"k":"G886","v":["ἀχειροποίητος","acheiropoiētos","akh-i-rop-oy'-ay-tos","From G1 (as a negative particle) and G5499; unmanufactured, that is, inartificial: - made without (not made with) hands."]},{"k":"G887","v":["ἀχλύς","achlus","akh-looce'","Of uncertain derivation; dimness of sight, that is, (probably) a cataract: - mist."]},{"k":"G888","v":["ἀχρεῖος","achreios","akh-ri'-os","From G1 (as a negative particle) and a derivative of G5534 (compare G5532); useless, that is, (euphemistically) unmeritorious: - unprofitable."]},{"k":"G889","v":["ἀχρειόω","achreioō","akh-ri-o'-o","From G888; to render useless, that is, spoil: - become unprofitable."]},{"k":"G890","v":["ἄχρηστος","achrēstos","akh'-race-tos","From G1 (as a negative particle) and G5543; inefficient, that is, (by implication) detrimental: - unprofitable."]},{"k":"G891","v":["ἄχρι, ἄχρις","achri    achris","akh'-ree, akh'-rece","Akin to G206 (through the idea of a terminus); (of time) until or (of place) up to: - as far as, for, in (-to), till, (even, un-) to, until, while. Compare G3360."]},{"k":"G892","v":["ἄχυρον","achuron","akh'-oo-ron","Perhaps remotely from χέω cheō (to shed forth); chaff (as diffusive): - chaff."]},{"k":"G893","v":["ἀψευδής","apseudēs","aps-yoo-dace'","From G1 (as a negative particle) and G5579; veracious: - that cannot lie."]},{"k":"G894","v":["ἄψινθος","apsinthos","ap'-sin-thos","Of uncertain derivation; wormwood (as a type of bitterness, that is, [figuratively] calamity): - wormwood."]},{"k":"G895","v":["ἄψυχος","apsuchos","ap'-soo-khos","From G1 (as a negative particle) and G5590; lifeless, that is, inanimate (mechanical): - without life."]},{"k":"G896","v":["Βάαλ","Baal","bah'-al","Of Hebrew origin [H1168]; Baal, a Phaenician deity (used as a symbol of idolatry): - Baal."]},{"k":"G897","v":["Βαβυλών","Babulōn","bab-oo-lone'","Of Hebrew origin [H894]; Babylon, the capital of Chaldaea (literally or figuratively as a type of tyranny): - Babylon."]},{"k":"G898","v":["βαθμός","bathmos","bath-mos'","From the same as G899; a step, that is, (figuratively) grade (of dignity): - degree."]},{"k":"G899","v":["βάθος","bathos","bath'-os","From the same as G901; profundity, that is, (by implication) extent; (figuratively) mystery: - deep (-ness, things), depth."]},{"k":"G900","v":["βαθύνω","bathunō","bath-oo'-no","From G901; to deepen: - deep."]},{"k":"G901","v":["βαθύς","bathus","bath-oos'","From the base of G939; profound (as going down), literally or figuratively: - deep, very early."]},{"k":"G902","v":["βαΐ́ον","baion","bah-ee'-on","A diminutive of a derivative probably of the base of G939; a palm twig (as going out far): - branch."]},{"k":"G903","v":["Βαλαάμ","Balaam","bal-ah-am'","Of Hebrew origin [H1109]; Balaam, a mesopotamian (symbolic of a false teacher): - Balaam."]},{"k":"G904","v":["Βαλάκ","Balak","bal-ak'","Of Hebrew origin [H1111]; Balak, a Moabite: - Balac."]},{"k":"G905","v":["βαλάντιον","balantion","bal-an'-tee-on","Probably remotely from G906 (as a depository); a pouch (for money): - bag, purse."]},{"k":"G906","v":["βάλλω","ballō","bal'-lo","A primary verb; to throw (in various applications, more or less violent or intense): - arise, cast (out), X dung, lay, lie, pour, put (up), send, strike, throw (down), thrust. Compare G4496."]},{"k":"G907","v":["βαπτίζω","baptizō","bap-tid'-zo","From a derivative of G911; to make whelmed (that is, fully wet); used only (in the New Testament) of ceremonial ablution, especially (technically) of the ordinance of Christian baptism: - baptist, baptize, wash."]},{"k":"G908","v":["βάπτισμα","baptisma","bap'-tis-mah","From G907; baptism (technically or figuratively): - baptism."]},{"k":"G909","v":["βαπτισμός","baptismos","bap-tis-mos'","From G907; ablution (ceremonially or Christian): - baptism, washing."]},{"k":"G910","v":["Βαπτιστής","Baptistēs","bap-tis-tace'","From G907; a baptizer, as an epithet of Christ’s forerunner: - Baptist."]},{"k":"G911","v":["βάπτω","baptō","bap'-to","A primary verb; to whelm, that is, cover wholly with a fluid; in the New Testament only in a qualified or specific sense, that is, (literally) to moisten (a part of one’s person), or (by implication) to stain (as with dye): - dip."]},{"k":"G912","v":["Βαραββᾶς","Barabbas","bar-ab-bas'","Of Chaldee origin ([H1347] and G5 (Greek)); son of Abba; Bar-abbas, an Israelite: - Barabbas."]},{"k":"G913","v":["Βαράκ","Barak","bar-ak'","Of Hebrew origin [H1301]; Barak, an Israelite: - Barak."]},{"k":"G914","v":["Βαραχίας","Barachias","bar-akh-ee'-as","Of Hebrew origin [H1296]; Barachias (that is, Berechijah), an Israelite: - Barachias."]},{"k":"G915","v":["βάρβαρος","barbaros","bar'-bar-os","Of uncertain derivation; a foreigner (that is, non Greek): - barbarian (-rous)."]},{"k":"G916","v":["βαρέω","bareō","bar-eh'-o","From G926; to weigh down (figuratively): - burden, charge, heavy, press."]},{"k":"G917","v":["βαρέως","bareōs","bar-eh'-oce","Adverb from G926; heavily (figuratively): - dull."]},{"k":"G918","v":["Βαρθολομαῖος","Bartholomaios","bar-thol-om-ah'-yos","Of Chaldee origin [H1247] and [H8526]; son of Tolmai; Bar-tholomaeus, a Christian apostle: - Bartholomeus."]},{"k":"G919","v":["βαριησοῦς","Bariēsous","bar-ee-ay-sooce'","Of Chaldee origin [H1247] and [H3091]; son of Jesus (or Joshua); Barjesus, an Israelite: - Barjesus."]},{"k":"G920","v":["Βαριωνᾶς","Bariōnas","bar-ee-oo-nas'","Of Chaldee origin [H1247] and [H3124]; son of Jonas (or Jonah); Bar-jonas, an Israelite: - Bar-jona."]},{"k":"G921","v":["Βαρνάβας","Barnabas","bar-nab'-as","Of Chaldee origin [H1247] and [H5029]; son of Nabas (that is, prophecy); Barnabas, an Israelite: - Barnabas."]},{"k":"G922","v":["βάρος","baros","bar'-os","Probably from the same as G939 (through the notion of going down; compare G899); weight; in the New Testament only, figuratively a load, abundance, authority: - burden (-some), weight."]},{"k":"G923","v":["Βαρσαβᾶς","Barsabas","bar-sab-as'","Of Chaldee origin [H1247] and probably [H6634]; son of Sabas (or Tsaba); Barsabas, the name of two Israelites: - Barsabas."]},{"k":"G924","v":["Βαρτιμαῖος","Bartimaios","bar-tim-ah'-yos","Of Chaldee origin [H1247] and [H2931]; son of Timaeus (or the unclean); Bartimaeus, an Israelite: - Bartimus."]},{"k":"G925","v":["βαρύνω","barunō","bar-oo'-no","From G926; to burden (figuratively): - overcharge."]},{"k":"G926","v":["βαρύς","barus","bar-ooce'","From the same as G922; weighty, that is, (figuratively) burdensome, grave: - grievous, heavy, weightier."]},{"k":"G927","v":["βαρύτιμος","barutimos","bar-oo'-tim-os","From G926 and G5092; highly valuable: - very precious."]},{"k":"G928","v":["βασανίζω","basanizō","bas-an-id'-zo","From G931; to torture: - pain, toil, torment, toss, vex."]},{"k":"G929","v":["βασανισμός","basanismos","bas-an-is-mos'","From G928; torture: - torment."]},{"k":"G930","v":["βασανιστής","basanistēs","bas-an-is-tace'","From G928; a torturer: - tormentor."]},{"k":"G931","v":["βάσανος","basanos","bas'-an-os","Perhaps remotely from the same as G939 (through the notion of going to the bottom); a touch stone, that is, (by analogy) torture: - torment."]},{"k":"G932","v":["βασιλεία","basileia","bas-il-i'-ah","From G935; properly royalty, that is, (abstractly) rule, or (concretely) a realm (literally or figuratively): - kingdom, + reign."]},{"k":"G933","v":["βασίλειον","basileion","bas-il'-i-on","Neuter of G934; a palace: - king’s court."]},{"k":"G934","v":["βασίλειος","basileios","bas-il'-i-os","From G935; kingly (in nature): - royal."]},{"k":"G935","v":["βασιλεύς","basileus","bas-il-yooce'","Probably from G939 (through the notion of a foundation of power); a sovereign (abstractly, relatively or figuratively): - king."]},{"k":"G936","v":["βασιλεύω","basileuō","bas-il-yoo'-o","From G935; to rule (literally or figuratively): - king, reign."]},{"k":"G937","v":["βασιλικός","basilikos","bas-il-ee-kos'","From G935; regal (in relation), that is, (literally) belonging to (or befitting) the sovereign (as land, dress, or a courtier), or (figuratively) preeminent: - king’s, nobleman, royal."]},{"k":"G938","v":["βασίλισσα","basilissa","bas-il'-is-sah","Feminine from G936; a queen: - queen."]},{"k":"G939","v":["βάσις","basis","bas'-ece","From βαίνω bainō (to walk); a pace (“base”), that is, (by implication) the foot: - foot."]},{"k":"G940","v":["βασκαίνω","baskainō","bas-kah'ee-no","Akin to G5335; to malign, that is, (by extension) to fascinate (by false representations): - bewitch."]},{"k":"G941","v":["βαστάζω","bastazō","bas-tad'-zo","Perhaps remotely derived from the base of G939 (through the idea of removal); to lift, literally or figuratively (endure, declare, sustain, receive, etc.): - bear, carry, take up."]},{"k":"G942","v":["βάτος","batos","bat'-os","Of uncertain derivation; a brier shrub: - bramble, bush."]},{"k":"G943","v":["βάτος","batos","bat'-os","Of Hebrew origin [H1324]; a bath, or measure for liquids: - measure."]},{"k":"G944","v":["βάτραχος","batrachos","bat'-rakh-os","Of uncertain derivation; a frog: - frog."]},{"k":"G945","v":["βαττολογέω","battologeō","bat-tol-og-eh'-o","From Βάττος Battos (a proverbial stammerer) and G3056; to stutter, that is, (by implication) to prate tediously: - use vain repetitions."]},{"k":"G946","v":["βδέλυγμα","bdelugma","bdel'-oog-mah","From G948; a detestation, that is, (specifically) idolatry: - abomination."]},{"k":"G947","v":["βδελυκτός","bdeluktos","bdel-ook-tos'","From G948; detestable, that is, (specifically) idolatrous: - abominable."]},{"k":"G948","v":["βδελύσσω","bdelussō","bdel-oos'-so","From a (presumed) derivative of βδέω bdeō (to stink); to be disgusted, that is, (by implication) detest (especially of idolatry): - abhor, abominable."]},{"k":"G949","v":["βέβαιος","bebaios","beb'-ah-yos","From the base of G939 (through the idea of basality); stable (literally or figuratively): - firm, of force, stedfast, sure."]},{"k":"G950","v":["βεβαιόω","bebaioō","beb-ah-yo'-o","From G949; to stabilitate (figuratively): - confirm, (e-) stablish."]},{"k":"G951","v":["βεβαίωσις","bebaiōsis","beb-ah'-yo-sis","From G950; stabiliment: - confirmation."]},{"k":"G952","v":["βέβηλος","bebēlos","beb'-ay-los","From the base of G939 and βηλός bēlos (a threshold); accessible (as by crossing the door way), that is, (by implication of Jewish notions) heathenish, wicked: - profane (person)."]},{"k":"G953","v":["βεβηλόω","bebēloō","beb-ay-lo'-o","From G952; to desecrate: - profane."]},{"k":"G954","v":["Βεελζεβούλ","Beelzeboul","beh-el-zeb-ool'","Of Chaldee origin (by parody upon [H1176]); dung god; Beelzebul, a name of Satan: - Beelzebub."]},{"k":"G955","v":["Βελίαλ","Belial","bel-ee'-al","Of Hebrew origin [H1100]; worthlessness; Belial, as an epithet of Satan: - Belial."]},{"k":"G956","v":["βέλος","belos","bel'-os","From G906; a missile, that is, spear or arrow: - dart."]},{"k":"G957","v":["βελτίον","beltion","bel-tee'-on","Neuter of a compound of a derivative of G906 (used for the compound of G18); better: - very well."]},{"k":"G958","v":["Βενιαμίν","Beniamin","ben-ee-am-een'","Of Hebrew origin [H1144]; Benjamin, an Israelite: - Benjamin."]},{"k":"G959","v":["Βερνίκη","Bernikē","ber-nee'-kay","From a provincial form of G5342 and G3529; victorious; Bernice, a member of the Herodian family: - Bernice."]},{"k":"G960","v":["Βέροια","Beroia","ber'-oy-ah","Perhaps a provincial from a derivative of G4008 (Peraea, that is, the region beyond the coast line); Beraea, a place in Macedonia: - Berea."]},{"k":"G961","v":["Βεροιαῖος","Beroiaios","ber-oy-ah'-yos","From G960; a Beraeaean or native of Beraea: - of Berea."]},{"k":"G962","v":["Βηθαβαρά","Bēthabara","bay-thab-ar-ah'","Of Hebrew origin ([H1004] and [H5679]); ferry house; Bethabara (that is, Bethabarah), a place on the Jordan: - Bethabara."]},{"k":"G963","v":["Βηθανία","Bēthania","bay-than-ee'-ah","Of Chaldee origin; date house; Bethany, a place in Palestine: - Bethany."]},{"k":"G964","v":["Βηθεσδά","Bēthesda","bay-thes-dah'","Of Chaldee origin (compare [H1004] and [H2617]); house of kindness; Bethesda, a pool in Jerusalem: - Bethesda."]},{"k":"G965","v":["Βηθλεέμ","Bēthleem","bayth-leh-em'","Of Hebrew origin [H1036]; Bethleem (that is, Beth-lechem), a place in Palestine: - Bethlehem."]},{"k":"G966","v":["Βηθσαΐδά","Bēthsaida","bayth-sahee-dah'","Of Chaldee origin (compare [H1004] and [H6719]); fishing house; Bethsaida, a place in Palestine: - Bethsaida."]},{"k":"G967","v":["Βηθφαγή","Bethphagē","bayth-fag-ay'","Of Chaldee origin (compare [H1004] and [H6291]); fig house; Bethphage, a place in Palestine: - Bethphage."]},{"k":"G968","v":["βῆμα","bēma","bay'-ma","From the base of G939; a step, that is, foot breath; by implication a rostrum, that is, tribunal: - judgment-seat, set [foot] on, throne."]},{"k":"G969","v":["βήρυλλος","bērullos","bay'-rool-los","Of uncertain derivation; a “beryl”: - beryl."]},{"k":"G970","v":["βία","bia","bee'-ah","Probably akin to G979 (through the idea of vital activity); force: - violence."]},{"k":"G971","v":["βιάζω","biazō","bee-ad'-zo","From G970; to force, that is, (reflexively) to crowd oneself (into), or (passively) to be seized: - press, suffer violence."]},{"k":"G972","v":["βίαιος","biaios","bee'-ah-yos","From G970; violent: - mighty."]},{"k":"G973","v":["βιαστής","biastēs","bee-as-tace'","From G971; a forcer, that is, (figuratively) energetic: - violent."]},{"k":"G974","v":["βιβλιαρίδιον","bibliaridion","bib-lee-ar-id'-ee-on","A diminutive of G975; a booklet: - little book."]},{"k":"G975","v":["βιβλίον","biblion","bib-lee'-on","A diminutive of G976; a roll: - bill, book, scroll, writing."]},{"k":"G976","v":["βίβλος","biblos","bib'-los","Properly the inner bark of the papyrus plant, that is, (by implication) a sheet or scroll of writing: - book."]},{"k":"G977","v":["βιβρώσκω","bibrōskō","bib-ro'-sko","A reduplicated and prolonged form of an obsolete primary verb (perhaps causative of G1006); to eat: - eat."]},{"k":"G978","v":["Βιθυνία","Bithunia","bee-thoo-nee'-ah","Of uncertain derivation; Bithynia, a region of Asia: - Bithynia."]},{"k":"G979","v":["βίος","bios","bee'-os","A primary word; life, that is, (literally) the present state of existence; by implication the means of livelihood: - good, life, living."]},{"k":"G980","v":["βιόω","bioō","bee-o'-o","From G979; to spend existence: - live."]},{"k":"G981","v":["Βίωσις","Biōsis","bee'-o-sis","From G980; living (properly the act, by implication the mode): - manner of life"]},{"k":"G982","v":["βιωτικός","biōtikos","bee-o-tee-kos'","From a derivative of G980; relating to the present existence: - of (pertaining to, things that pertain to) this life."]},{"k":"G983","v":["βλαβερός","blaberos","blab-er-os'","From G984; injurious: - hurtful."]},{"k":"G984","v":["βλάπτω","blaptō","blap'-to","A primary verb; properly to hinder, that is, (by implication) to injure: - hurt."]},{"k":"G985","v":["βλαστάνω","blastanō","blas-tan'-o","From βλαστός blastos (a sprout); to germinate; by implication to yield fruit: - bring forth, bud, spring (up)."]},{"k":"G986","v":["Βλάστος","Blastos","blas'-tos","Perhaps the same as the base of G985; Blastus, an officer of Herod Agrippa: - Blastus."]},{"k":"G987","v":["βλασφημέω","blasphēmeō","blas-fay-meh'-o","From G989; to vilify; specifically to speak impiously: - (speak) blaspheme (-er, -mously, -my), defame, rail on, revile, speak evil."]},{"k":"G988","v":["βλασφημία","blasphēmia","blas-fay-me'-ah","From G989; vilification (especially against God): - blasphemy, evil speaking, railing."]},{"k":"G989","v":["βλάσφημος","blasphēmos","blas'-fay-mos","From a derivative of G984 and G5345; scurrilous, that is, calumnious (against man), or (specifically) impious (against God): - blasphemer (-mous), railing."]},{"k":"G990","v":["βλέμμα","blemma","blem'-mah","From G991; vision (properly concrete; by implication abstract): - seeing."]},{"k":"G991","v":["βλέπω","blepō","blep'-o","A primary verb; to look at (literally or figuratively): - behold, beware, lie, look (on, to), perceive, regard, see, sight, take heed. Compare G3700."]},{"k":"G992","v":["βλητέος","blēteos","blay-teh'-os","From G906; fit to be cast (that is, applied): - must be put."]},{"k":"G993","v":["Βοανεργές","Boanerges","bo-an-erg-es'","Of Chald origin ([H1123] and [H7266]); sons of commotion; Boanerges, an epithet of two of the Apostles: - Boanerges."]},{"k":"G994","v":["βοάω","boaō","bo-ah'-o","Apparently a prolonged form of a primary verb; to halloo, that is, shout (for help or in a tumultuous way): - cry."]},{"k":"G995","v":["βοή","boē","bo-ay'","From G994; a halloo, that is, call (for aid, etc.): - cry."]},{"k":"G996","v":["βοήθεια","boētheia","bo-ay'-thi-ah","From G998; aid; specifically a rope or chain for frapping a vessel: - help."]},{"k":"G997","v":["βοηθέω","boētheō","bo-ay-theh'-o","From G998; to aid or relieve: - help, succour."]},{"k":"G998","v":["βοηθός","boēthos","bo-ay-thos'","From G995 and θέω theō (to run); a succorer: - helper."]},{"k":"G999","v":["βόθυνος","bothunos","both'-oo-nos","Akin to G900; a hole (in the ground); specifically a cistern: - ditch, pit."]},{"k":"G1000","v":["βολή","bolē","bol-ay'","From G906; a throw (as a measure of distance): - cast."]},{"k":"G1001","v":["βολίζω","bolizō","bol-id'-zo","From G1002; to heave the lead: - sound."]},{"k":"G1002","v":["βολίς","bolis","bol-ece'","From G906; a missile, that is, javelin: - dart."]},{"k":"G1003","v":["Βοόζ","Booz","bo-oz'","Of Hebrew origin [H1162]; Booz, (that is, Boaz), an Israelite: - Booz."]},{"k":"G1004","v":["βόρβορος","borboros","bor'-bor-os","Of uncertain derivation; mud: - mire."]},{"k":"G1005","v":["βοῤῥᾶς","borrhas","bor-hras'","Of uncertain derivation; the north (properly wind): - north."]},{"k":"G1006","v":["βόσκω","boskō","bos'-ko","A prolonged form of a primary verb (compare G977 and G1016); to pasture; by extension to fodder; reflexively to graze: - feed, keep."]},{"k":"G1007","v":["Βοσόρ","Bosor","bos-or'","Of Hebrew origin [H1160]; Bosor (that is, Beor), a Moabite: - Bosor."]},{"k":"G1008","v":["βοτάνη","botanē","bot-an'-ay","From G1006; herbage (as if for grazing): - herb."]},{"k":"G1009","v":["βότρυς","botrus","bot'-rooce","Of uncertain derivation; a bunch (of grapes): - (vine) cluster (of the vine)."]},{"k":"G1010","v":["βουλευτής","bouleutēs","bool-yoo-tace'","From G1011; an adviser, that is, (specifically) a councillor or member of the Jewish Sanhedrim: - counsellor."]},{"k":"G1011","v":["βουλεύω","bouleuō","bool-yoo'-o","From G1012; to advise, that is, (reflexively) deliberate, or (by implication) resolve: - consult, take counsel, determine, be minded, purpose."]},{"k":"G1012","v":["βουλή","boulē","boo-lay'","From G1014; volition, that is, (objectively) advice, or (by implication) purpose: - + advise, counsel, will."]},{"k":"G1013","v":["βούλημα","boulēma","boo'-lay-mah","From G1014; a resolve: - purpose, will."]},{"k":"G1014","v":["βούλομαι","boulomai","boo'-lom-ahee","Middle voice of a primary verb; to “will”, that is, (reflexively) be willing: - be disposed, minded, intend, list (be, of own) will (-ing). Compare G2309."]},{"k":"G1015","v":["βουνός","bounos","boo-nos'","Probably of foreign origin; a hillock: - hill."]},{"k":"G1016","v":["βοῦς","bous","booce","Probably from the base of G1006; an ox (as grazing), that is, an animal of that species (“beef”): - ox."]},{"k":"G1017","v":["βραβεῖον","brabeion","brab-i'-on","From βραβεύς brabeus (an umpire; of uncertain derivation); an award (of arbitration), that is, (specifically) a prize in the public games: - prize."]},{"k":"G1018","v":["βραβεύω","brabeuō","brab-yoo'-o","From the same as G1017; to arbitrate, that is, (generally) to govern (figuratively prevail): - rule."]},{"k":"G1019","v":["βραδύνω","bradunō","brad-oo'-no","From G1021; to delay: - be slack, tarry."]},{"k":"G1020","v":["βραδυπλοέω","braduploeō","brad-oo-plo-eh'-o","From G1021 and a prolonged form of G4126; to sail slowly: - sail slowly."]},{"k":"G1021","v":["βραδύς","bradus","brad-ooce'","Of uncertain affinity; slow; figuratively dull: - slow."]},{"k":"G1022","v":["βραδύτης","bradutēs","brad-oo'-tace","From G1021; tardiness: - slackness."]},{"k":"G1023","v":["βραχίων","brachiōn","brakh-ee'-own","Properly a compound of G1024, but apparently in the sense of βράσσω brassō (to wield); the arm, that is, (figuratively) strength: - arm."]},{"k":"G1024","v":["βραχύς","brachus","brakh-ooce'","Of uncertain affinity; short (of time, place, quantity, or number): - few words, little (space, while)."]},{"k":"G1025","v":["βρέφος","brephos","bref'-os","Of uncertain affinity; an infant (properly unborn) literally or figuratively: - babe, (young) child, infant."]},{"k":"G1026","v":["βρέχω","brechō","brekh'-o","A primary verb; to moisten (especially by a shower): - (send) rain, wash."]},{"k":"G1027","v":["βροντή","brontē","bron-tay'","Akin to βρέμω bremō (to roar); thunder: - thunder (-ing)."]},{"k":"G1028","v":["βροχή","brochē","brokh-ay'","From G1026; rain: - rain."]},{"k":"G1029","v":["βρόχος","brochos","brokh'-os","Of uncertain derivation; a noose: - snare."]},{"k":"G1030","v":["βρυγμός","brugmos","broog-mos'","From G1031; a grating (of the teeth): - gnashing."]},{"k":"G1031","v":["βρύχω","bruchō","broo'-kho","A primary verb; to grate the teeth (in pain or rage): - gnash."]},{"k":"G1032","v":["βρύω","bruō","broo'-o","A primary verb; to swell out, that is, (by implication) to gush: - send forth."]},{"k":"G1033","v":["βρῶμα","brōma","bro'-mah","From the base of G977; food (literally or figuratively), especially (ceremonial) articles allowed or forbiden by the Jewish law: - meat, victuals."]},{"k":"G1034","v":["βρώσιμος","brōsimos","bro'-sim-os","From G1035; eatable: - meat."]},{"k":"G1035","v":["βρῶσις","brōsis","bro'-sis","From the base of G977; (abstractly) eating (literally or figuratively); by extension (concretely) food (literally or figuratively): - eating, food, meat."]},{"k":"G1036","v":["βυθίζω","buthizō","boo-thid'-zo","From G1037; to sink; by implication to drown: - begin to sink, drown."]},{"k":"G1037","v":["βυθός","buthos","boo-thos'","A variation of G899; depth, that is, (by implication) the sea: - deep."]},{"k":"G1038","v":["βυρσεύς","burseus","boorce-yooce'","From βύρσα bursa (a hide); a tanner: - tanner."]},{"k":"G1039","v":["βύσσινος","bussinos","boos'-see-nos","From G1040; made of linen (neuter of linen cloth): - fine linen."]},{"k":"G1040","v":["βύσσος","bussos","boos'-sos","Of Hebrew origin [H948]; white linen: - fine linen."]},{"k":"G1041","v":["βῶμος","bōmos","bo'-mos","From the base of G939; properly a stand, that is, (specifically) an altar: - altar."]},{"k":"G1042","v":["γαββαθά","gabbatha","gab-bath-ah'","Of Chaldee origin (compare [H1355]); the knoll; gabbatha, a vernacular term for the Roman tribunal in Jerusalem: - Gabbatha."]},{"k":"G1043","v":["Γαβριήλ","Gabriēl","gab-ree-ale'","Of Hebrew origin [H1403]; Gabriel, an archangel: - Gabriel."]},{"k":"G1044","v":["γάγγραινα","gaggraina","gang'-grahee-nah","From γραίνω grainō (to gnaw); an ulcer (“gangrene”): - canker."]},{"k":"G1045","v":["Γάδ","Gad","gad","Of Hebrew origin [H1410]; Gad, a tribe of Israelite: - Gad."]},{"k":"G1046","v":["Γαδαρηνός","Gadarēnos","gad-ar-ay-nos'","From Γαδαρά Gadara (a town East of the Jordan); a Gadarene or inhabitant of Gadara: - Gadarene."]},{"k":"G1047","v":["γάζα","gaza","gad'-zah","Of foreign origin; a treasure: - treasure."]},{"k":"G1048","v":["Γάζα","Gaza","gad'-zah","Of Hebrew origin [H5804]; Gazah (that is, Azzah), a place in Palestine: - Gaza."]},{"k":"G1049","v":["γαζοφυλάκιον","gazophulakion","gad-zof-oo-lak'-ee-on","From G1047 and G5438; a treasure house, that is, a court in the temple for the collection boxes: - treasury."]},{"k":"G1050","v":["Γάΐος","Gaios","gah'-ee-os","Of Latin origin; Gaius (that is, Caius), a Christian: - Gaius."]},{"k":"G1051","v":["γάλα","gala","gal'-ah","Of uncertain affinity; milk (figuratively): - milk."]},{"k":"G1052","v":["Γαλάτης","Galatēs","gal-at'-ace","From G1053; a Galatian or inhabitant of Galatia: - Galatian."]},{"k":"G1053","v":["Γαλατία","Galatia","gal-at-ee'-ah","Of foreign origin; Galatia, a region of Asia: - Galatia."]},{"k":"G1054","v":["Γαλατικός","Galatikos","gal-at-ee-kos'","From G1053; Galatic or relating to Galatia: - of Galatia."]},{"k":"G1055","v":["γαλήνη","galēnē","gal-ay'-nay","Of uncertain derivation; tranquillity: - calm."]},{"k":"G1056","v":["Γαλιλαία","Galilaia","gal-il-ah-yah","Of hebrew origin [H1551]; Galilaea (that is, the heathen circle), a region of Palestine: - Galilee."]},{"k":"G1057","v":["Γαλιλαῖος","Galilaios","gal-ee-lah'-yos","From G1056; Galilaean or belonging to Galilaea: - Galilan, of Galilee."]},{"k":"G1058","v":["Γαλλίων","Galliōn","gal-lee'-own","Of Latin origin; Gallion (that is, Gallio), a Roman officer: - Gallio"]},{"k":"G1059","v":["Γαμαλιήλ","Gamaliēl","gam-al-ee-ale'","Of Hebrew origin [H1583]; Gamaliel (that is, Gamliel), an Israelite: - Gamaliel."]},{"k":"G1060","v":["γαμέω","gameō","gam-eh'-o","From G1062; to wed (of either sex): - marry (a wife)."]},{"k":"G1061","v":["γαμίσκω","gamiskō","gam-is'-ko","From G1062; to espouse (a daughter to a husband): - give in marriage."]},{"k":"G1062","v":["γάμος","gamos","gam'-os","Of uncertain affinity; nuptials: - marriage, wedding."]},{"k":"G1063","v":["γάρ","gar","gar","A primary particle; properly assigning a reason (used in argument, explanation or intensification; often with other particles): - and, as, because (that), but, even, for indeed, no doubt, seeing, then, therefore, verily, what, why, yet."]},{"k":"G1064","v":["γαστήρ","gastēr","gas-tare'","Of uncertain derivation; the stomach; by analogy the matrix; figuratively a gourmand: - belly, + with child, womb."]},{"k":"G1065","v":["γέ","ge","gheh","A primary particle of emphasis or qualification (often used with other particles prefixed): - and besides, doubtless, at least, yet."]},{"k":"G1066","v":["Γεδεών","Gedeōn","ghed-eh-own'","Of Hebrew origin [H1439]; Gedeon (that is, Gideon), an Israelite: - Gedeon."]},{"k":"G1067","v":["γέεννα","geenna","gheh'-en-nah","Of Hebrew origin ([H1516] and [H2011]); valley of (the son of) Hinnom; gehenna (or Ge-Hinnom), a valley of Jerusalem, used (figuratively) as a name for the place (or state) of everlasting punishment: - hell."]},{"k":"G1068","v":["Γεθσημανῆ","Gethsēmanē","gheth-say-man-ay'","Of Chaldee origin (compare [H1660] and [H8081]); oil press; Gethsemane, a garden near Jerusalem: - Gethsemane."]},{"k":"G1069","v":["γείτων","geitōn","ghi'-tone","From G1093; a neighbor (as adjoining one’s ground); by implication a friend: - neighbour."]},{"k":"G1070","v":["γελάω","gelaō","ghel-ah'-o","Of uncertain affinity; to laugh (as a sign of joy or satisfaction): - laugh."]},{"k":"G1071","v":["γέλως","gelōs","ghel'-oce","From G1070; laughter (as a mark of gratification): - laughter."]},{"k":"G1072","v":["γεμίζω","gemizō","ghem-id'-zo","Transitive from G1073; to fill entirely: - fill (be) full."]},{"k":"G1073","v":["γέμω","gemō","ghem'-o","A primary verb; to swell out, that is, be full: - be full."]},{"k":"G1074","v":["γενεά","genea","ghen-eh-ah'","From (a presumed derivative of) G1085; a generation; by implication an age (the period or the persons): - age, generation, nation, time."]},{"k":"G1075","v":["γενεαλογέω","genealogeō","ghen-eh-al-og-eh'-o","From G1074 and G3056; to reckon by generations, that is, trace in genealogy: - count by descent."]},{"k":"G1076","v":["γενεαλογία","genealogia","ghen-eh-al-og-ee'-ah","From the same as G1075; tracing by generations, that is, “genealogy”: - genealogy."]},{"k":"G1077","v":["γενέσια","genesia","ghen-es'-ee-ah","Neuter plural of a derivative of G1078; birthday ceremonies: - birthday."]},{"k":"G1078","v":["γένεσις","genesis","ghen'-es-is","From the same as G1074; nativity; figuratively nature: - generation, nature (-ral)."]},{"k":"G1079","v":["γενετή","genetē","ghen-et-ay'","Feminine of a presumed derivative of the base of G1074; birth: - birth."]},{"k":"G1080","v":["γεννάω","gennaō","ghen-nah'-o","From a variation of G1085; to procreate (properly of the father, but by extension of the mother); figuratively to regenerate: - bear, beget, be born, bring forth, conceive, be delivered of, gender, make, spring."]},{"k":"G1081","v":["γέννημα","gennēma","ghen'-nay-mah","From G1080; offspring; by analogy produce (literally or figuratively): - fruit, generation."]},{"k":"G1082","v":["Γεννησαρέτ","Gennēsaret","ghen-nay-sar-et'","Of Hebrew origin (compare [H3672]); Gennesaret (that is, Kinnereth), a lake and plain in Palestine: - Gennesaret."]},{"k":"G1083","v":["γέννησις","gennēsis","ghen'-nay-sis","From G1080; nativity: - birth."]},{"k":"G1084","v":["γεννητός","gennētos","ghen-nay-tos'","From G1080; born: - they that are born."]},{"k":"G1085","v":["γένος","genos","ghen'-os","From G1096; “kin” (abstractly or concretely, literally or figuratively, individually or collectively): - born, country (-man), diversity, generation, kind (-red), nation, offspring, stock."]},{"k":"G1086","v":["Γεργεσηνός","Gergesēnos","gher-ghes-ay-nos'","Of Hebrew origin [H1622]; a Gergesene (that is, Girgashite) or one of the aborigines of Palestine: - Gergesene."]},{"k":"G1087","v":["γερουσία","gerousia","gher-oo-see'-ah","From G1088; the eldership, that is, (collectively) the Jewish Sanhedrim: - senate."]},{"k":"G1088","v":["γέρων","gerōn","gher'-own","Of uncertain affinity (compare G1094); aged: - old."]},{"k":"G1089","v":["γεύομαι","geuomai","ghyoo'-om-ahee","A primary verb; to taste; by implication to eat; figuratively to experience (good or ill): - eat, taste."]},{"k":"G1090","v":["γεωργέω","geōrgeō","gheh-ore-gheh'-o","From G1092; to till (the soil): - dress."]},{"k":"G1091","v":["γεώργιον","geōrgion","gheh-ore'-ghee-on","Neuter of a (presumed) derivative of G1092; cultivable, that is, a farm: - husbandry."]},{"k":"G1092","v":["γεωργός","geōrgos","gheh-ore-gos'","From G1093 and the base of G2041; a land worker, that is, farmer: - husbandman."]},{"k":"G1093","v":["γῆ","gē","ghay","Contracted from a primary word; soil; by extension a region, or the solid part or the whole of the terrene globe (including the occupants in each application): - country, earth (-ly), ground, land, world."]},{"k":"G1094","v":["γῆρας","gēras","ghay'-ras","Akin to G1088; senility: - old age."]},{"k":"G1095","v":["γηράσκω","gēraskō","ghay-ras'-ko","From G1094; to be senescent: - be (wax) old."]},{"k":"G1096","v":["γίνομαι","ginomai","ghin'-om-ahee","A prolonged and middle form of a primary verb; to cause to be (“gen” -erate), that is, (reflexively) to become (come into being), used with great latitude (literally, figuratively, intensively, etc.): - arise be assembled, be (come, -fall, -have self), be brought (to pass), (be) come (to pass), continue, be divided, be done, draw, be ended, fall, be finished, follow, be found, be fulfilled, + God forbid, grow, happen, have, be kept, be made, be married, be ordained to be, partake, pass, be performed, be published, require, seem, be showed, X soon as it was, sound, be taken, be turned, use, wax, will, would, be wrought."]},{"k":"G1097","v":["γινώσκω","ginōskō","ghin-oce'-ko","A prolonged form of a primary verb; to “know” (absolutely), in a great variety of applications and with many implications (as shown at left, with others not thus clearly expressed): - allow, be aware (of), feel, (have) known (-ledge), perceive, be resolved, can speak, be sure, understand."]},{"k":"G1098","v":["γλεῦκος","gleukos","glyoo'-kos","Akin to G1099; sweet wine, that is, (properly) must (fresh juice), but used of the more saccharine (and therefore highly inebriating) fermented wine: - new wine."]},{"k":"G1099","v":["γλυκύς","glukus","gloo-koos'","Of uncertain affinity; sweet (that is, not bitter nor salt): - sweet, fresh."]},{"k":"G1100","v":["γλῶσσα","glōssa","gloce'-sah","Of uncertain affinity; the tongue; by implication a language (specifically one naturally unacquired): - tongue."]},{"k":"G1101","v":["γλωσσόκομον","glōssokomon","gloce-sok'-om-on","From G1100 and the base of G2889; properly a case (to keep mouthpieces of wind instruments in), that is, (by extension) a casket or (specifically) purse: - bag."]},{"k":"G1102","v":["γναφεύς","gnapheus","gnaf-yuce'","By variation for a derivative from κνάπτω knaptō (to tease cloth); a cloth dresser: - fuller."]},{"k":"G1103","v":["γνήσιος","gnēsios","gnay'-see-os","From the same as G1077; legitimate (of birth), that is, genuine: - own, sincerity, true."]},{"k":"G1104","v":["γνησίως","gnēsiōs","gnay-see'-oce","Adverb from G1103; genuinely, that is, really: - naturally."]},{"k":"G1105","v":["γνόφος","gnophos","gnof'-os","Akin to G3509; gloom (as of a storm): - blackness."]},{"k":"G1106","v":["γνώμη","gnōmē","gno'-may","From G1097; cognition, that is, (subjectively) opinion, or (objectively) resolve (counsel, consent, etc.): - advice, + agree, judgment, mind, purpose, will."]},{"k":"G1107","v":["γνωρίζω","gnōrizō","gno-rid'-zo","From a derivative of G1097; to make known; subjectively to know: - certify, declare, make known, give to understand, do to wit, wot."]},{"k":"G1108","v":["γνῶσις","gnōsis","gno'-sis","From G1097; knowing (the act), that is, (by implication) knowledge: - knowledge, science."]},{"k":"G1109","v":["γνώστης","gnōstēs","gnoce'-tace","From G1097; a knower: - expert."]},{"k":"G1110","v":["γνωστός","gnōstos","gnoce-tos'","From G1097; well known: - acquaintance, (which may be) known, notable."]},{"k":"G1111","v":["γογγύζω","gogguzō","gong-good'-zo","Of uncertain derivation; to grumble: - murmur."]},{"k":"G1112","v":["γογγυσμός","goggusmos","gong-goos-mos'","From G1111; a grumbling: - grudging, murmuring."]},{"k":"G1113","v":["γογγυστής","goggustēs","gong-goos-tace'","From G1111; a grumbler: - murmurer."]},{"k":"G1114","v":["γόης","goēs","go'-ace","From γοάω goaō (to wail); properly a wizard (as muttering spells), that is, (by implication) an impostor: - seducer."]},{"k":"G1115","v":["Γολγοθᾶ","Golgotha","gol-goth-ah'","Of Chaldee origin (compare [H1538]); the skull; Golgotha, a knoll near Jerusalem: - Golgotha."]},{"k":"G1116","v":["Γόμοῤῥα","Gomorrha","gom'-or-hrhah","Of Hebrew origin [H6017]; Gomorrha (that is, Amorah), a place near the Dead Sea: - Gomorrha."]},{"k":"G1117","v":["γόμος","gomos","gom'-os","From G1073; a load (as filling), that is, (specifically) a cargo, or (by extension) wares: - burden, merchandise."]},{"k":"G1118","v":["γονεύς","goneus","gon-yooce'","From the base of G1096; a parent: - parent."]},{"k":"G1119","v":["γονύ","gonu","gon-oo'","Of uncertain affinity; the “knee”: - knee (X -l)."]},{"k":"G1120","v":["γονυπετέω","gonupeteō","gon-oo-pet-eh'-o","From a compound of G1119 and the alternate of G4098; to fall on the knee: - bow the knee, kneel down."]},{"k":"G1121","v":["γράμμα","gramma","gram'-mah","From G1125; a writing, that is, a letter, note, epistle, book, etc.; plural learning: - bill, learning, letter, scripture, writing, written."]},{"k":"G1122","v":["γραμματεύς","grammateus","gram-mat-yooce'","From G1121; a writer, that is, (professionally) scribe or secretary: - scribe, town-clerk."]},{"k":"G1123","v":["γραπτός","graptos","grap-tos'","From G1125; inscribed (figuratively): - written."]},{"k":"G1124","v":["γραφή","graphē","graf-ay'","From G1125; a document, that is, holy Writ (or its contents or a statement in it): - scripture."]},{"k":"G1125","v":["γράφω","graphō","graf'-o","A primary verb; to “grave”, especially to write; figuratively to describe: - describe, write (-ing, -ten)."]},{"k":"G1126","v":["γραώδης","graōdēs","grah-o'-dace","From γραῦς graus (an old woman) and G1491; crone like, that is, silly: - old wives’."]},{"k":"G1127","v":["γρηγορεύω","grēgoreuō","gray-gor-yoo'-o","From G1453; to keep awake, that is, watch (literally or figuratively): - be vigilant, wake, (be) watch (-ful)."]},{"k":"G1128","v":["γυμνάζω","gumnazō","goom-nad'-zo","From G1131; to practise naked (in the games), that is, train (figuratively): - exercise."]},{"k":"G1129","v":["γυμνασία","gumnasia","goom-nas-ee'-ah","From G1128; training, that is, (figuratively) asceticism: - exercise."]},{"k":"G1130","v":["γυμνητεύω","gumnēteuō","goom-nayt-yoo'-o","From a derivative of G1131; to strip, that is, (reflexively) go poorly clad: - be naked."]},{"k":"G1131","v":["γυμνός","gumnos","goom-nos'","Of uncertain affinity; nude (absolutely or relatively, literally or figuratively): - naked."]},{"k":"G1132","v":["γυμνότης","gumnotēs","goom-not'-ace","From G1131; nudity (absolutely or comparatively): - nakedness."]},{"k":"G1133","v":["γυναικάριον","gunaikarion","goo-nahee-kar'-ee-on","A diminutive from G1135; a little (that is, foolish) woman: - silly woman."]},{"k":"G1134","v":["γυναικεῖος","gunaikeios","goo-nahee-ki'-os","From G1135; feminine: - wife."]},{"k":"G1135","v":["γυνή","gunē","goo-nay'","Probably from the base of G1096; a woman; specifically a wife: - wife, woman."]},{"k":"G1136","v":["Γώγ","Gōg","gogue","Of Hebrew origin [H1463]; Gog, a symbolic name for some future Antichrist: - Gog."]},{"k":"G1137","v":["γωνία","gōnia","go-nee'-ah","Probably akin to G1119; an angle: - corner, quarter."]},{"k":"G1138","v":["Δαβίδ","Dabid","dab-eed'","Of Hebrew origin [H1732]; Dabid (that is, David), the Israelite king: - David."]},{"k":"G1139","v":["δαιμονίζομαι","daimonizomai","dahee-mon-id'-zom-ahee","Middle voice from G1142; to be exercised by a daemon: - have a (be vexed with, be possessed with) devil (-s)."]},{"k":"G1140","v":["δαιμόνιον","daimonion","dahee-mon'-ee-on","Neuter of a derivative of G1142; a daemonic being; by extension a deity: - devil, god."]},{"k":"G1141","v":["δαιμονιώδης","daimoniōdēs","dahee-mon-ee-o'-dace","From G1140 and G1142; daemon like: - devilish."]},{"k":"G1142","v":["δαίμων","daimōn","dah'ee-mown","From δαίω daiō (to distribute fortunes); a demon or super natural spirit (of a bad nature): - devil."]},{"k":"G1143","v":["δάκνω","daknō","dak'-no","A prolonged form of a primary root; to bite, that is, (figuratively) thwart: - bite."]},{"k":"G1144","v":["δάκρυ, δάκρυον","dakru    dakruon","dak'-roo, dak'-roo-on","Of uncertain affinity; a tear: - tear."]},{"k":"G1145","v":["δακρύω","dakruō","dak-roo'-o","From G1144; to shed tears: - weep. Compare G2799."]},{"k":"G1146","v":["δακτύλιος","daktulios","dak-too'-lee-os","From G1147; a finger ring: - ring."]},{"k":"G1147","v":["δάκτυλος","daktulos","dak'-too-los","Probably from G1176; a finger: - finger."]},{"k":"G1148","v":["Δαλμανουθά","Dalmanoutha","dal-man-oo-thah'","Probably of Chaldee origin; Dalmanutha, a place in Palestine: - Dalmanutha."]},{"k":"G1149","v":["Δαλματία","Dalmatia","dal-mat-ee'-ah","Probably of foreign derivation; Dalmatia, a region of Europe: - Dalmatia."]},{"k":"G1150","v":["δαμάζω","damazō","dam-ad'-zo","A variation of an obsolete primary of the same meaning; to tame: - tame."]},{"k":"G1151","v":["δάμαλις","damalis","dam'-al-is","Probably from the base of G1150; a heifer (as tame): - heifer."]},{"k":"G1152","v":["Δάμαρις","Damaris","dam'-ar-is","Probably from the base of G1150; perhaps gentle; Damaris, an Athenian woman: - Damaris."]},{"k":"G1153","v":["Δαμασκηνός","Damaskēnos","dam-as-kay-nos'","From G1154; a Damascene or inhabitant of Damascus: - Damascene."]},{"k":"G1154","v":["Δαμασκός","Damaskos","dam-as-kos'","Of Hebrew origin [H1834]; Damascus, a city of Syria: - Damascus."]},{"k":"G1155","v":["δανείζω","daneizō","dan-ide'-zo","From G1156; to loan on interest; reflexively to borrow: - borrow, lend."]},{"k":"G1156","v":["δάνειον","daneion","dan'-i-on","From δάνος danos (a gift); probably akin to the base of G1325; a loan: - debt."]},{"k":"G1157","v":["δανειστής","daneistēs","dan-ice-tace'","From G1155; a lender: - creditor."]},{"k":"G1158","v":["Δανιήλ","Daniēl","dan-ee-ale'","Of Hebrew origin [H1840]; Daniel, an Israelite: - Daniel."]},{"k":"G1159","v":["δαπανάω","dapanaō","dap-an-ah'-o","From G1160; to expend, that is, (in a good sense) to incur cost, or (in a bad one) to waste: - be at charges, consume, spend."]},{"k":"G1160","v":["δαπάνη","dapanē","dap-an'-ay","From δάπτω daptō (to devour); expense (as consuming): - cost."]},{"k":"G1161","v":["δέ","de","deh","A primary particle (adversative or continuative); but, and, etc.: - also, and, but, moreover, now [often unexpressed in English]."]},{"k":"G1162","v":["δέησις","deēsis","deh'-ay-sis","From G1189; a petition: - prayer, request, supplication."]},{"k":"G1163","v":["δεῖ","dei","die, deh-on'","Third person singular active present of G1210; also δεόν deon which is neuter active participle of the same; both used impersonally; it is (was, etc.) necessary (as binding): - behoved, be meet, must (needs), (be) need (-ful), ought, should."]},{"k":"G1164","v":["δεῖγμα","deigma","digh'-mah","From the base of G1166; a specimen (as shown): - example."]},{"k":"G1165","v":["δειγματίζω","deigmatizō","digh-mat-id'-zo","From G1164; to exhibit: - make a shew."]},{"k":"G1166","v":["δεικνύω","deiknuō","dike-noo'-o","A prolonged form of an obsolete primary of the same meaning; to show (literally or figuratively): - shew."]},{"k":"G1167","v":["δειλία","deilia","di-lee'-ah","From G1169; timidity: - fear."]},{"k":"G1168","v":["δειλιάω","deiliaō","di-lee-ah'-o","From G1167; to be timid: - be afraid."]},{"k":"G1169","v":["δειλός","deilos","di-los'","From δέος deos (dread); timid, that is, (by implication) faithless: - fearful."]},{"k":"G1170","v":["δεῖνα","deina","di'-nah","Probably from the same as G1171 (through the idea of forgetting the name as fearful, that is, strange); so and so (when the person is not specified): - such a man."]},{"k":"G1171","v":["δεινῶς","deinōs","di-noce'","Adverb from a derivative of the same as G1169; terribly, that is, excessively: - grievously, vehemently."]},{"k":"G1172","v":["δειπνέω","deipneō","dipe-neh'-o","From G1173; to dine, that is, take the principal (or evening) meal: - sup (X -per)."]},{"k":"G1173","v":["δεῖπνον","deipnon","dipe'-non","From the same as G1160; dinner, that is, the chief meal (usually in the evening): - feast, supper."]},{"k":"G1174","v":["δεισιδαιμονέστερος","deisidaimonesteros","dice-ee-dahee-mon-es'-ter-os","The compound of a derivative of the base of G1169 and G1142; more religious than others: - too superstitious."]},{"k":"G1175","v":["δεισιδαιμονία","deisidaimonia","dice-ee-dahee-mon-ee'-ah","From the same as G1174; religion: - superstition."]},{"k":"G1176","v":["δέκα","deka","dek'-ah","A primary number; ten: - [eight-] een, ten."]},{"k":"G1177","v":["δεκαδύο","dekaduo","dek-ad-oo'-o","From G1176 and G1417; two and ten, that is, twelve: - twelve."]},{"k":"G1178","v":["δεκαπέντε","dekapente","dek-ap-en'-teh","From G1176 and G4002; ten and five, that is, fifteen: - fifteen."]},{"k":"G1179","v":["Δεκάπολις","Dekapolis","dek-ap'-ol-is","From G1176 and G4172; the ten city region; the Decapolis, a district in Syria: - Decapolis."]},{"k":"G1180","v":["δεκατέσσαρες","dekatessares","dek-at-es'-sar-es","From G1176 and G5064; ten and four, that is, fourteen: - fourteen."]},{"k":"G1181","v":["δεκάτη","dekatē","dek-at'-ay","Feminine of G1182; a tenth, that is, as a percentage or (technically) tithe: - tenth (part), tithe."]},{"k":"G1182","v":["δέκατος","dekatos","dek'-at-os","Ordinal from G1176; tenth: - tenth."]},{"k":"G1183","v":["δεκατόω","dekatoō","dek-at-o'-o","From G1181; to tithe, that is, to give or take a tenth: - pay (receive) tithes."]},{"k":"G1184","v":["δεκτός","dektos","dek-tos'","From G1209; approved; (figuratively) propitious: - accepted (-table)."]},{"k":"G1185","v":["δελεάζω","deleazō","del-eh-ad'-zo","From the baes of G1388; to entrap, that is, (figuratively) delude: - allure, beguile, entice."]},{"k":"G1186","v":["δένδρον","dendron","den'-dron","Probably from δρύς drus (an oak); a tree: - tree."]},{"k":"G1187","v":["δεξιολάβος","dexiolabos","dex-ee-ol-ab'-os","From G1188 and G2983; a guardsman (as if taking the right) or light armed soldier: - spearman."]},{"k":"G1188","v":["δεξιός","dexios","dex-ee-os'","From G1209; the right side or (feminine) hand (as that which usually takes): - right (hand, side)."]},{"k":"G1189","v":["δέομαι","deomai","deh'-om-ahee","Middle voice of G1210; to beg (as binding oneself), that is, petition: - beseech, pray (to), make request. Compare G4441."]},{"k":"G1190","v":["Δερβαῖος","Derbaios","der-bah'ee-os","From G1191; a Derbaean or inhabitant of Derbe: - of Derbe."]},{"k":"G1191","v":["δέρβη","derbē","der'-bay","Of foreign origin; Derbe, a place in Asia Minor: - Derbe."]},{"k":"G1192","v":["δέρμα","derma","der'-mah","From G1194; a hide: - skin."]},{"k":"G1193","v":["δερμάτινος","dermatinos","der-mat'-ee-nos","From G1192; made of hide: - leathern, of a skin."]},{"k":"G1194","v":["δέρω","derō","der'-o","A primary verb; properly to flay, that is, (by implication) to scourge, or (by analogy) to thrash: - beat, smite."]},{"k":"G1195","v":["δεσμεύω","desmeuō","des-myoo'-o","From a (presumed) derivative of G1196; to be a binder (captor), that is, to enchain (a prisoner), to tie on (a load): - bind."]},{"k":"G1196","v":["δεσμέω","desmeō","des-meh'-o","From G1199; to tie, that is, shackle: - bind."]},{"k":"G1197","v":["δεσμή","desmē","des-may'","From G1196; a bundle: - bundle."]},{"k":"G1198","v":["δέσμιος","desmios","des'-mee-os","From G1199; a captive (as bound): - in bonds, prisoner."]},{"k":"G1199","v":["δεσμόν, δεσμός","desmon    desmos","des-mon', des-mos'","Neuter and masculine respectively from G1210; a band, that is, ligament (of the body) or shackle (of a prisoner); figuratively an impediment or disability: - band, bond, chain, string."]},{"k":"G1200","v":["δεσμοφύλαξ","desmophulax","des-mof-oo'-lax","From G1199 and G5441; a jailer (as guarding the prisoners): - jailer, keeper of the prison."]},{"k":"G1201","v":["δεσμωτήριον","desmōtērion","des-mo-tay'-ree-on","From a derivative of G1199 (equivalent to G1196); a place of bondage, that is, a dungeon: - prison."]},{"k":"G1202","v":["δεσμώτης","desmōtēs","des-mo'-tace","From the same as G1201; (passively) a captive: - prisoner."]},{"k":"G1203","v":["δεσπότης","despotēs","des-pot'-ace","Perhaps from G1210 and πόσις posis (a husband); an absolute ruler (“despot”): - Lord, master."]},{"k":"G1204","v":["δεῦρο","deuro","dyoo'-ro","Of uncertain affinity; here; used also as an imperative hither!; and of time, hitherto: - come (hither), hither [-to]."]},{"k":"G1205","v":["δεῦτε","deute","dyoo'-teh","From G1204 and an imperative of εἶμι eimi (to go); come hither!: - come, X follow."]},{"k":"G1206","v":["δευτεραῖος","deuteraios","dyoo-ter-ah'-yos","From G1208; secondary, that is, (specifically) on the second day: - next day."]},{"k":"G1207","v":["δευτερόπρωτος","deuteroprōtos","dyoo-ter-op'-ro-tos","From G1208 and G4413; second first, that is, (specifically) a designation of the Sabbath immediately after the Paschal week (being the second after Passover day, and the first of the seven Sabbaths intervening before Pentecost): - second . . . after the first."]},{"k":"G1208","v":["δεύτερος","deuteros","dyoo'-ter-os","As the compound of G1417; (ordinal) second (in time, place or rank; also adverbially): - afterward, again, second (-arily, time)."]},{"k":"G1209","v":["δέχομαι","dechomai","dekh'-om-ahee","Middle voice of a primary verb; to receive (in various applications, literally or figuratively): - accept, receive, take. Compare G2983."]},{"k":"G1210","v":["δέω","deō","deh'-o","A primary verb; to bind (in various applications, literally or figuratively): - bind, be in bonds, knit, tie, wind. See also G1163, G1189."]},{"k":"G1211","v":["δή","dē","day","Probably akin to G1161; a particle of emphasis or explicitness; now, then, etc.: - also, and, doubtless, now, therefore."]},{"k":"G1212","v":["δῆλος","dēlos","day'-los","Of uncertain derivation; clear: - + bewray, certain, evident, manifest."]},{"k":"G1213","v":["δηλόω","dēloō","day-lo'-o","From G1212; to make plain (by words): - declare, shew, signify."]},{"k":"G1214","v":["Δημᾶς","Dēmas","day-mas'","Probably for G1216; Demas, a Christian: - Demas."]},{"k":"G1215","v":["δημηγορέω","dēmēgoreō","day-may-gor-eh'-o","From a compound of G1218 and G58; to be a people gatherer, that is, to address a public assembly: - make an oration."]},{"k":"G1216","v":["Δημήτριος","Dēmētrios","day-may'-tree-os","From Δημήτηρ Dēmētēr (Ceres); Demetrius, the name of an Ephesian and of a Christian: - Demetrius."]},{"k":"G1217","v":["δημιουργός","dēmiourgos","day-me-oor-gos'","From G1218 and G2041; a worker for the people, that is, mechanic (spoken of the Creator): - maker."]},{"k":"G1218","v":["δῆμος","dēmos","day'-mos","From G1210; the public (as bound together socially): - people."]},{"k":"G1219","v":["δημόσιος","dēmosios","day-mos'-ee-os","From G1218; public; (feminine singular dative as adverb) in public: - common, openly, publickly."]},{"k":"G1220","v":["δηνάριον","dēnarion","day-nar'-ee-on","Of Latin origin; a denarius (or ten asses): - pence, penny [-worth]."]},{"k":"G1221","v":["δήποτε","dēpote","day'-pot-eh","From G1211 and G4218; a particle of generalization; indeed, at any time: - (what-) soever."]},{"k":"G1222","v":["δήπου","dēpou","day'-poo","From G1211 and G4225; a particle of asseveration; indeed doubtless: - verily."]},{"k":"G1223","v":["διά","dia","dee-ah'","A primary preposition denoting the channel of an act; through (in very wide applications, local, causal or occasional). In composition it retains the same general import: - after, always, among, at, to avoid, because of (that), briefly, by, for (cause) . . . fore, from, in, by occasion of, of, by reason of, for sake, that, thereby, therefore, X though, through (-out), to, wherefore, with (-in). In composition it retains the same general import."]},{"k":"G1224","v":["διαβαίνω","diabainō","dee-ab-ah'ee-no","From G1223 and the base of G939; to cross: - come over, pass (through)."]},{"k":"G1225","v":["διαβάλλω","diaballō","dee-ab-al'-lo","From G1223 and G906; (figuratively) to traduce: - accuse."]},{"k":"G1226","v":["διαβεβαιόομαι","diabebaioomai","dee-ab-eb-ahee-o'-om-ahee","Middle voice of a compound of G1223 and G950; to confirm thoroughly (by words), that is, asseverate: - affirm constantly."]},{"k":"G1227","v":["διαβλέπω","diablepō","dee-ab-lep'-o","From G1223 and G991; to look through, that is, recover full vision: - see clearly."]},{"k":"G1228","v":["διάβολος","diabolos","dee-ab'-ol-os","From G1225; a traducer; specifically Satan (compare [H7854]): - false accuser, devil, slanderer."]},{"k":"G1229","v":["διαγγέλλω","diaggellō","de-ang-gel'-lo","From G1223 and the base of G32; to herald thoroughly: - declare, preach, signify."]},{"k":"G1230","v":["διαγίνομαι","diaginomai","dee-ag-in'-om-ahee","From G1223 and G1096; to elapse meanwhile: - X after, be past, be spent."]},{"k":"G1231","v":["διαγινώσκω","diaginōskō","dee-ag-in-o'-sko","From G1223 and G1097; to know thoroughly, that is, ascertain exactly: - (would) enquire, know the uttermost."]},{"k":"G1232","v":["διαγνωρίζω","diagnōrizō","dee-ag-no-rid'-zo","From G1223 and G1107; to tell abroad: - make known."]},{"k":"G1233","v":["διάγνωσις","diagnōsis","dee-ag'-no-sis","From G1231; (magisterial) examination (“diagnosis”): - hearing."]},{"k":"G1234","v":["διαγογγύζω","diagogguzō","dee-ag-ong-good'-zo","From G1223 and G1111; to complain throughout a crowd: - murmur."]},{"k":"G1235","v":["διαγρηγορέω","diagrēgoreō","dee-ag-ray-gor-eh'-o","From G1223 and G1127; to waken thoroughly: - be awake."]},{"k":"G1236","v":["διάγω","diagō","dee-ag'-o","From G1223 and G71; to pass time or life: - lead life, living."]},{"k":"G1237","v":["διαδέχομαι","diadechomai","dee-ad-ekh'-om-ahee","From G1223 and G1209; to receive in turn, that is, (figuratively) succeed to: - come after."]},{"k":"G1238","v":["διάδημα","diadēma","dee-ad'-ay-mah","From a compound of G1223 and G1210; a “diadem” (as bound about the head): - crown. Compare G4735."]},{"k":"G1239","v":["διαδίδωμι","diadidōmi","dee-ad-id'-o-mee","From G1223 and G1325; to give throughout a crowd, that is, deal out; also to deliver over (as to a successor): - (make) distribute (-ion), divide, give."]},{"k":"G1240","v":["διάδοχος","diadochos","dee-ad'-okh-os","From G1237; a successor in office: - room."]},{"k":"G1241","v":["διαζώννυμι","diazōnnumi","dee-az-own'-noo-mee","From G1223 and G2224; to gird tightly: - gird."]},{"k":"G1242","v":["διαθήκη","diathēkē","dee-ath-ay'-kay","From G1303; properly a disposition, that is, (specifically) a contract (especially a devisory will): - covenant, testament."]},{"k":"G1243","v":["διαίρεσις","diairesis","dee-ah'ee-res-is","From G1244; a distinction or (concretely) variety: - difference, diversity."]},{"k":"G1244","v":["διαιρέω","diaireō","dee-ahee-reh'-o","From G1223 and G138; to separate, that is, distribute: - divide."]},{"k":"G1245","v":["διακαθαρίζω","diakatharizō","dee-ak-ath-ar-id'-zo","From G1223 and G2511; to cleanse perfectly, that is, (specifically) winnow: - throughly purge."]},{"k":"G1246","v":["διακατελέγχομαι","diakatelegchomai","dee-ak-at-el-eng'-khom-ahee","Middle voice from G1223 and a compound of G2596 and G1651; to prove downright, that is, confute: - convince."]},{"k":"G1247","v":["διακονέω","diakoneō","dee-ak-on-eh'-o","From G1249; to be an attendant, that is, wait upon (menially or as a host, friend or [figuratively] teacher); technically to act as a Christian deacon: - (ad-) minister (unto), serve, use the office of a deacon."]},{"k":"G1248","v":["διακονία","diakonia","dee-ak-on-ee'-ah","From G1249; attendance (as a servant, etc.); figuratively (eleemosynary) aid, (official) service (especially of the Christian teacher, or technically of the diaconate): - (ad-) minister (-ing, -tration, -try), office, relief, service (-ing)."]},{"k":"G1249","v":["διάκονος","diakonos","dee-ak'-on-os","Probably from διάκω diakō (obsolete, to run on errands; compare G1377); an attendant, that is, (generally) a waiter (at table or in other menial duties); specifically a Christian teacher and pastor (technically a deacon or deaconess): - deacon, minister, servant."]},{"k":"G1250","v":["διακόσιοι","diakosioi","dee-ak-os'-ee-oy","From G1364 and G1540; two hundred: - two hundred."]},{"k":"G1251","v":["διακούομαι","diakouomai","dee-ak-oo'-om-ahee","Middle voice from G1223 and G191; to hear throughout, that is, patiently listen (to a prisoner’s plea): - hear."]},{"k":"G1252","v":["διακρίνω","diakrinō","dee-ak-ree'-no","From G1223 and G2919; to separate thoroughly, that is, (literally and reflexively) to withdraw from, or (by implication) oppose; figuratively to discriminate (by implication decide), or (reflexively) hesitate: - contend, make (to) differ (-ence), discern, doubt, judge, be partial, stagger, waver."]},{"k":"G1253","v":["διάκρισις","diakrisis","dee-ak'-ree-sis","From G1252; judicial estimation: - discern (-ing), disputation."]},{"k":"G1254","v":["διακωλύω","diakōluō","dee-ak-o-loo'-o","From G1223 and G2967; to hinder altogether, that is, utterly prohibit: - forbid."]},{"k":"G1255","v":["διαλαλέω","dialaleō","dee-al-al-eh'-o","From G1223 and G2980; to talk throughout a company, that is, converse or (generally) publish: - commune, noise abroad."]},{"k":"G1256","v":["διαλέγομαι","dialegomai","dee-al-eg'-om-ahee","Middle voice from G1223 and G3004; to say thoroughly, that is, discuss (in argument or exhortation): - dispute, preach (unto), reason (with), speak."]},{"k":"G1257","v":["διαλείπω","dialeipō","dee-al-i'-po","From G1223 and G3007; to leave off in the middle, that is, intermit: - cease."]},{"k":"G1258","v":["διάλεκτος","dialektos","dee-al'-ek-tos","From G1256; a (mode of) discourse, that is, “dialect”: - language, tongue."]},{"k":"G1259","v":["διαλλάσσω","diallassō","dee-al-las'-so","From G1223 and G236; to change thoroughly, that is, (mentally) to conciliate: - reconcile."]},{"k":"G1260","v":["διαλογίζομαι","dialogizomai","dee-al-og-id'-zom-ahee","From G1223 and G3049; to reckon thoroughly, that is, (generally) to deliberate (by reflection or discussion): - cast in mind, consider, dispute, muse, reason, think."]},{"k":"G1261","v":["διαλογισμός","dialogismos","dee-al-og-is-mos'","From G1260; discussion, that is, (internal) consideration (by implication purpose), or (external) debate: - dispute, doubtful (-ing), imagination, reasoning, thought."]},{"k":"G1262","v":["διαλύω","dialuō","dee-al-oo'-o","From G1223 and G3089; to dissolve utterly: - scatter."]},{"k":"G1263","v":["διαμαρτύρομαι","diamarturomai","dee-am-ar-too'-rom-ahee","From G1223 and G3140; to attest or protest earnestly, or (by implication) hortatively: - charge, testify (unto), witness."]},{"k":"G1264","v":["διαμάχομαι","diamachomai","dee-am-akh'-om-ahee","From G1223 and G3164; to fight fiercely (in altercation): - strive."]},{"k":"G1265","v":["διαμένω","diamenō","dee-am-en'-o","From G1223 and G3306; to stay constantly (in being or relation): - continue, remain."]},{"k":"G1266","v":["διαμερίζω","diamerizō","dee-am-er-id'-zo","From G1223 and G3307; to partition thoroughly (literally in distribution, figuratively in dissension): - cloven, divide, part."]},{"k":"G1267","v":["διαμερισμός","diamerismos","dee-am-er-is-mos'","From G1266; disunion (of opinion and conduct): - division."]},{"k":"G1268","v":["διανέμω","dianemō","dee-an-em'-o","From G1223 and the base of G3551; to distribute, that is, (of information) to disseminate: - spread."]},{"k":"G1269","v":["διανεύω","dianeuō","dee-an-yoo'-o","From G1223 and G3506; to nod (or express by signs) across an intervening space: - beckon."]},{"k":"G1270","v":["διανόημα","dianoēma","dee-an-o'-ay-mah","From a compound of G1223 and G3539; something thought through, that is, a sentiment: - thought."]},{"k":"G1271","v":["διάνοια","dianoia","dee-an'-oy-ah","From G1223 and G3563; deep thought, properly the faculty (mind or its disposition), by implication its exercise: - imagination, mind, understanding."]},{"k":"G1272","v":["διανοίγω","dianoigō","dee-an-oy'-go","From G1223 and G455; to open thoroughly, literally (as a first born) or figuratively (to expound): - open."]},{"k":"G1273","v":["διανυκτερεύω","dianuktereuō","dee-an-ook-ter-yoo'-o","From G1223 and a derivative of G3571; to sit up the whole night: - continue all night."]},{"k":"G1274","v":["διανύω","dianuō","dee-an-oo'-o","From G1223 and ἀνύω anuō (to effect); to accomplish thoroughly: - finish."]},{"k":"G1275","v":["διαπαντός","diapantos","dee-ap-an-tos'","From G1223 and the genitive of G3956; through all time, that is, (adverbially) constantly: - alway (-s), continually."]},{"k":"G1276","v":["διαπεράω","diaperaō","dee-ap-er-ah'-o","From G1223 and a derivative of the base of G4008; to cross entirely: - go over, pass (over), sail over."]},{"k":"G1277","v":["διαπλέω","diapleō","dee-ap-leh'-o","From G1223 and G4126; to sail through: - sail over."]},{"k":"G1278","v":["διαπονέω","diaponeō","dee-ap-on-eh'-o","From G1223 and a derivative of G4192; to toil through, that is, (passively) be worried: - be grieved."]},{"k":"G1279","v":["διαπορεύομαι","diaporeuomai","dee-ap-or-yoo'-om-ahee","From G1223 and G4198; to travel through: - go through, journey in, pass by."]},{"k":"G1280","v":["διαπορέω","diaporeō","dee-ap-or-eh'-o","From G1223 and G639; to be thoroughly nonplussed: - (be in) doubt, be (much) perplexed."]},{"k":"G1281","v":["διαπραγματεύομαι","diapragmateuomai","dee-ap-rag-mat-yoo'-om-ahee","From G1223 and G4231; to thoroughly occupy oneself, that is, (transitively and by implication) to earn in business: - gain by trading."]},{"k":"G1282","v":["διαπρίω","diapriō","dee-ap-ree'-o","From G1223 and the base of G4249; to saw asunder, that is, (figuratively) to exasperate: - cut (to the heart)."]},{"k":"G1283","v":["διαρπάζω","diarpazō","dee-ar-pad'-zo","From G1223 and G726; to seize asunder, that is, plunder: - spoil."]},{"k":"G1284","v":["διαῤῥήσσω","diarrhēssō","dee-ar-hrayce'-so","From G1223 and G4486; to tear asunder: - break, rend."]},{"k":"G1285","v":["διασαφέω","diasapheō","dee-as-af-eh'-o","From G1223 and σαφής saphēs (clear); to clear thoroughly, that is, (figuratively) declare: - tell unto."]},{"k":"G1286","v":["διασείω","diaseiō","dee-as-i'-o","From G1223 and G4579; to shake thoroughly, that is, (figuratively) to intimidate: - do violence to."]},{"k":"G1287","v":["διασκορπίζω","diaskorpizō","dee-as-kor-pid'-zo","From G1223 and G4650; to dissipate, that is, (generally) to rout or separate; specifically to winnow; figuratively to squander: - disperse, scatter (abroad), strew, waste."]},{"k":"G1288","v":["δεασπάω","deaspaō","dee-as-pah'-o","From G1223 and G4685; to draw apart, that is, sever or dismember: - pluck asunder, pull in pieces."]},{"k":"G1289","v":["διασπείρω","diaspeirō","dee-as-pi'-ro","From G1223 and G4687; to sow throughout, that is, (figuratively) distribute in foreign lands: - scatter abroad."]},{"k":"G1290","v":["διασπορά","diaspora","dee-as-por-ah'","From G1289; dispersion, that is, (specifically and concretely) the (converted) Israelites resident in Gentile countries: - (which are) scattered (abroad)."]},{"k":"G1291","v":["διαστέλλομαι","diastellomai","dee-as-tel'-lom-ahee","Middle voice from G1223 and G4724; to set (oneself) apart (figuratively distinguish), that is, (by implication) to enjoin: - charge, that which was (give) commanded (-ment)."]},{"k":"G1292","v":["διάστημα","diastēma","dee-as'-tay-mah","From G1339; an interval: - space."]},{"k":"G1293","v":["διαστολή","diastolē","dee-as-tol-ay'","From G1291; a variation: - difference, distinction."]},{"k":"G1294","v":["διαστρέφω","diastrephō","dee-as-tref'-o","From G1223 and G4762; to distort, that is, (figuratively) misinterpret, or (morally) corrupt: - perverse (-rt), turn away."]},{"k":"G1295","v":["διασώζω","diasōzō","dee-as-odze'-o","From G1223 and G4982; to save thoroughly, that is, (by implication or analogy) to cure, preserve, rescue, etc.: - bring safe, escape (safe), heal, make perfectly whole, save."]},{"k":"G1296","v":["διαταγή","diatagē","dee-at-ag-ay'","From G1299; arrangement, that is, institution: - instrumentality."]},{"k":"G1297","v":["διάταγμα","diatagma","dee-at'-ag-mah","From G1299; an arrangement, that is, (authoritative) edict: - commandment."]},{"k":"G1298","v":["διαταράσσω","diatarassō","dee-at-ar-as'-so","From G1223 and G5015; to disturb wholly, that is, agitate (with alarm): - trouble."]},{"k":"G1299","v":["διατάσσω","diatassō","dee-at-as'-so","From G1223 and G5021; to arrange thoroughly, that is, (specifically) institute, prescribe, etc.: - appoint, command, give, (set in) order, ordain."]},{"k":"G1300","v":["διατελέω","diateleō","dee-at-el-eh'-o","From G1223 and G5055; to accomplish thoroughly, that is, (subjectively) to persist: - continue."]},{"k":"G1301","v":["διατηρέω","diatēreō","dee-at-ay-reh'-o","From G1223 and G5083; to watch thoroughly, that is, (positively and transitively) to observe strictly, or (negatively and reflexively) to avoid wholly: - keep."]},{"k":"G1302","v":["διατί","diati","dee-at-ee'","From G1223 and G5101; through what cause?, that is, why?: - wherefore, why."]},{"k":"G1303","v":["διατίθεμαι","diatithemai","dee-at-ith'-em-ahee","Middle voice from G1223 and G5087; to put apart, that is, (figuratively) dispose (by assignment, compact or bequest): - appoint, make, testator."]},{"k":"G1304","v":["διατρίβω","diatribō","dee-at-ree'-bo","From G1223 and the base of G5147; to wear through (time), that is, remain: - abide, be, continue, tarry."]},{"k":"G1305","v":["διατροφή","diatrophē","dee-at-rof-ay'","From a compound of G1223 and G5142; nourishment: - food."]},{"k":"G1306","v":["διαυγάζω","diaugazō","dee-ow-gad'-zo","From G1223 and G826; to glimmer through, that is, break (as day): - dawn."]},{"k":"G1307","v":["διαφανής","diaphanēs","dee-af-an-ace'","From G1223 and G5316; appearing through, that is, “diaphanous”: - transparent."]},{"k":"G1308","v":["διαφέρω","diapherō","dee-af-er'-o","From G1223 and G5342; to bear through, that is, (literally) transport; usually to bear apart, that is, (objectively) to toss about (figuratively report); subjectively to “differ”, or (by implication) surpass: - be better, carry, differ from, drive up and down, be (more) excellent, make matter, publish, be of more value."]},{"k":"G1309","v":["διαφεύγω","diapheugō","dee-af-yoo'-go","From G1223 and G5343; to flee through, that is, escape: - escape."]},{"k":"G1310","v":["διαφημίζω","diaphēmizō","dee-af-ay-mid'-zo","From G1223 and a derivative of G5345; to report thoroughly, that is, divulgate: - blaze abroad, commonly report, spread abroad, fame."]},{"k":"G1311","v":["διαφθείρω","diaphtheirō","dee-af-thi'-ro","From G1223 and G5351; to rot thoroughly, that is, (by implication) to ruin (passively decay utterly, figuratively pervert): - corrupt, destroy, perish."]},{"k":"G1312","v":["διαφθορά","diaphthora","dee-af-thor-ah'","From G1311; decay: - corruption."]},{"k":"G1313","v":["διάφορος","diaphoros","dee-af'-or-os","From G1308; varying; also surpassing: - differing, divers, more excellent."]},{"k":"G1314","v":["διαφυλάσσω","diaphulassō","dee-af-oo-las'-so","From G1223 and G5442; to guard thoroughly, that is, protect: - keep."]},{"k":"G1315","v":["διαχειρίζομαι","diacheirizomai","dee-akh-i-rid'-zom-ahee","From G1223 and a derivative of G5495; to handle thoroughly, that is, lay violent hands upon: - kill, slay."]},{"k":"G1316","v":["διαχωρίζομαι","diachōrizomai","dee-akh-o-rid'-zom-ahee","From G1223 and the middle voice of G5563; to remove (oneself) wholly, that is, retire: - depart."]},{"k":"G1317","v":["διδακτικός","didaktikos","did-ak-tik-os'","From G1318; instructive (“didactic”): - apt to teach."]},{"k":"G1318","v":["διδακτός","didaktos","did-ak-tos'","From G1321; (subjectively) instructed or (objectively) communicated by teaching: - taught, which . . . teacheth."]},{"k":"G1319","v":["διδασκαλία","didaskalia","did-as-kal-ee'-ah","From G1320; instruction (the function or the information): - doctrine, learning, teaching."]},{"k":"G1320","v":["διδάσκαλος","didaskalos","did-as'-kal-os","From G1321; an instructor (generally or specifically): - doctor, master, teacher."]},{"k":"G1321","v":["διδάσκω","didaskō","did-as'-ko","A prolonged (causative) form of a primary verb δάω daō (to learn); to teach (in the same broad application): - teach."]},{"k":"G1322","v":["διδαχή","didachē","did-akh-ay'","From G1321; instruction (the act or the matter): - doctrine, hath been taught."]},{"k":"G1323","v":["δίδραχμον","didrachmon","did'-rakh-mon","From G1364 and G1406; a double drachma (didrachm): - tribute."]},{"k":"G1324","v":["Δίδυμος","Didumos","did'-oo-mos","Prolonged from G1364; double, that is, twin; Didymus, a Christian: - Didymus."]},{"k":"G1325","v":["δίδωμι","didōmi","did'-o-mee","A prolonged form of a primary verb (which is used as an alternate in most of the tenses); to give (used in a very wide application, properly or by implication, literally or figuratively; greatly modified by the connection): - adventure, bestow, bring forth, commit, deliver (up), give, grant, hinder, make, minister, number, offer, have power, put, receive, set, shew, smite (+ with the hand), strike (+ with the palm of the hand), suffer, take, utter, yield."]},{"k":"G1326","v":["διεγείρω","diegeirō","dee-eg-i'-ro","From G1223 and G1453; to wake fully, that is, arouse (literally or figuratively): - arise, awake, raise, stir up."]},{"k":"G1327","v":["διέξοδος","diexodos","dee-ex'-od-os","From G1223 and G1841; an outlet through, that is, probably an open square (from which roads diverge): - highway."]},{"k":"G1328","v":["διερμηνευτής","diermēneutēs","dee-er-main-yoo-tace'","From G1329; an explainer: - interpreter."]},{"k":"G1329","v":["διερμηνεύω","diermēneuō","dee-er-main-yoo'-o","From G1223 and G2059; to explain thoroughly; by implication to translate: - expound, interpret (-ation)."]},{"k":"G1330","v":["διέρχομαι","dierchomai","dee-er'-khom-ahee","From G1223 and G2064; to traverse (literally): - come, depart, go (about, abroad, every where, over, through, throughout), pass (by, over, through, throughout), pierce through, travel, walk through."]},{"k":"G1331","v":["διερωτάω","dierōtaō","dee-er-o-tah'-o","From G1223 and G2065; to question throughout, that is, ascertain by interrogation: - make enquiry for."]},{"k":"G1332","v":["διετής","dietēs","dee-et-ace'","From G1364 and G2094; of two years (in age): - two years old."]},{"k":"G1333","v":["διετία","dietia","dee-et-ee'-a","From G1332; a space of two years (biennium): - two years."]},{"k":"G1334","v":["διηγέομαι","diēgeomai","dee-ayg-eh'-om-ahee","From G1223 and G2233; to relate fully: - declare, shew, tell."]},{"k":"G1335","v":["διήγεσις","diēgesis","dee-ayg'-es-is","From G1334; a recital: - declaration."]},{"k":"G1336","v":["διηνεκές","diēnekes","dee-ah-nek-es'","Neuter of a compound of G1223 and a derivative of an alternate of G5342; carried through, that is, (adverb with G1519 and G3588 prefixed) perpetually: - +continually, for ever."]},{"k":"G1337","v":["διθάλασσος","dithalassos","dee-thal'-as-sos","From G1364 and G2281; having two seas, that is, a sound with a double outlet: - where two seas met."]},{"k":"G1338","v":["διΐκνέομαι","diikneomai","dee-ik-neh'-om-ahee","From G1223 and the base of G2425; to reach through, that is, penetrate: - pierce."]},{"k":"G1339","v":["διΐ́στημε","diistēme","dee-is'-tay-mee","From G1223 and G2476; to stand apart, that is, (reflexively) to remove, intervene: - go further, be parted, after the space of."]},{"k":"G1340","v":["διΐσχυρίζομαι","diischurizomai","dee-is-khoo-rid'-zom-ahee","From G1223 and a derivative of G2478; to stout it through, that is, asseverate: - confidently (constantly) affirm."]},{"k":"G1341","v":["δικαιοκρισία","dikaiokrisia","dik-ah-yok-ris-ee'-ah","From G1342 and G2920; a just sentence: - righteous judgment."]},{"k":"G1342","v":["δίκαιος","dikaios","dik'-ah-yos","From G1349; equitable (in character or act); by implication innocent, holy (absolutely or relatively): - just, meet, right (-eous)."]},{"k":"G1343","v":["δικαιοσύνη","dikaiosunē","dik-ah-yos-oo'-nay","From G1342; equity (of character or act); specifically (Christian) justification: - righteousness."]},{"k":"G1344","v":["δικαιόω","dikaioō","dik-ah-yo'-o","From G1342; to render (that is, show or regard as) just or innocent: - free, justify (-ier), be righteous."]},{"k":"G1345","v":["δικαίωμα","dikaiōma","dik-ah'-yo-mah","From G1344; an equitable deed; by implication a statute or decision: - judgment, justification, ordinance, righteousness."]},{"k":"G1346","v":["δικαίως","dikaiōs","dik-ah'-yoce","Adverb from G1342; equitably: - justify, (to) righteously (-ness)."]},{"k":"G1347","v":["δικαίωσις","dikaiōsis","dik-ah'-yo-sis","From G1344; acquittal (for Christ’s sake): - justification."]},{"k":"G1348","v":["δικαστής","dikastēs","dik-as-tace'","From a derivative of G1349; a judger: - judge."]},{"k":"G1349","v":["δίκη","dikē","dee'-kay","Probably from G1166; right (as self evident), that is, justice (the principle, a decision, or its execution): - judgment, punish, vengeance."]},{"k":"G1350","v":["δίκτυον","diktuon","dik'-too-on","Probably from a primary verb δίκω dikō (to cast); a seine (for fishing): - net."]},{"k":"G1351","v":["δίλογος","dilogos","dil'-og-os","From G1364 and G3056; equivocal, that is, telling a different story: - double-tongued."]},{"k":"G1352","v":["διό","dio","dee-o'","From G1223 and G3739; through which thing, that is, consequently: - for which cause, therefore, wherefore."]},{"k":"G1353","v":["διοδεύω","diodeuō","dee-od-yoo'-o","From G1223 and G3593; to travel through: - go throughout, pass through."]},{"k":"G1354","v":["Διονύσιος","Dionusios","dee-on-oo'-see-os","From Διόνυσος Dionusos (Bacchus); reveller; Dionysius, an Athenian: - Dionysius."]},{"k":"G1355","v":["διόπερ","dioper","dee-op'-er","From G1352 and G4007; on which very account: - wherefore."]},{"k":"G1356","v":["διοπετής","diopetēs","dee-op-et-ace'","From the alternate of G2203 and the alternate of G4098; sky fallen (that is, an aerolite): - which fell down from Jupiter."]},{"k":"G1357","v":["διόρθωσις","diorthōsis","dee-or'-tho-sis","From a compound of G1223 and a derivative of G3717, meaning to straighten thoroughly; rectification, that is, (specifically) the Messianic restoration: - reformation."]},{"k":"G1358","v":["διορύσσω","diorussō","dee-or-oos'-so","From G1223 and G3736; to penetrate burglariously: - break through (up)."]},{"k":"G1359","v":["Διόσκουροι","Dioskouroi","dee-os'-koo-roy","From the alternate of G2203 and a form of the base of G2877; sons of Jupiter, that is, the twins Dioscuri: - Castor and Pollux."]},{"k":"G1360","v":["διότι","dioti","dee-ot’-ee","From G1223 and G3754; on the very account that, or inasmuch as: - because (that), for, therefore."]},{"k":"G1361","v":["Διοτρεφής","Diotrephēs","dee-ot-ref-ace'","From the alternate of G2203 and G5142; Jove nourished; Diotrephes, an opponent of Christianity: - Diotrephes."]},{"k":"G1362","v":["διπλοῦς","diplous","dip-looce'","From G1364 and (probably) the base of G4119; two fold: - double, two-fold more."]},{"k":"G1363","v":["διπλόω","diploō","dip-lo'-o","From G1362; to render two fold: - double."]},{"k":"G1364","v":["δίς","dis","dece","Adverb from G1417; twice: - again, twice."]},{"k":"G1365","v":["διστάζω","distazō","dis-tad'-zo","From G1364 properly to duplicate, that is, (mentally) to waver (in opinion): - doubt."]},{"k":"G1366","v":["δίστομος","distomos","dis'-tom-os","From G1364 and G4750; double edged: - with two edges, two-edged."]},{"k":"G1367","v":["δισχίλιοι","dischilioi","dis-khil'-ee-oy","From G1364 and G5507; two thousand: - two thousand."]},{"k":"G1368","v":["διῦλίζω","diulizō","dee-oo-lid'-zo","From G1223 and ὑλίζω hulizō (to filter); to strain out. (“strain at” is probably by misprint.): - strain at [prob. by misprint]."]},{"k":"G1369","v":["διχάζω","dichazō","dee-khad'-zo","From a derivative of G1364; to make apart, that is, sunder (figuratively alienate): - set at variance."]},{"k":"G1370","v":["διχοστασία","dichostasia","dee-khos-tas-ee'-ah","From a derivative of G1364 and G4714; disunion, that is, (figuratively) dissension: - division, sedition."]},{"k":"G1371","v":["διχοτομέω","dichotomeō","dee-khot-om-eh'-o","From a compound of a derivative of G1364 and a derivative of τέμνω temnō (to cut); to bisect, that is, (by extension) to flog severely: - cut asunder (in sunder)."]},{"k":"G1372","v":["διψάω","dipsaō","dip-sah'-o","From a variation of G1373; to thirst for (literally or figuratively): - (be, be a-) thirst (-y)."]},{"k":"G1373","v":["δίψος","dipsos","dip'-sos","Of uncertain affinity; thirst: - thirst."]},{"k":"G1374","v":["δίψυχος","dipsuchos","dip'-soo-khos","From G1364 and G5590; two spirited, that is, vacillating (in opinion or purpose): - double minded."]},{"k":"G1375","v":["διωγμός","diōgmos","dee-ogue-mos'","From G1377; persecution: - persecution."]},{"k":"G1376","v":["διώκτης","diōktēs","dee-oke'-tace","From G1377; a persecutor: - persecutor."]},{"k":"G1377","v":["διώκω","diōkō","dee-o'-ko","A prolonged (and causative) form of a primary verb δίω diō (to flee; compare the base of G1169 and G1249); to pursue (literally or figuratively); by implication to persecute: - ensue, follow (after), given to, (suffer) persecute (-ion), press toward."]},{"k":"G1378","v":["δόγμα","dogma","dog'-mah","From the base of G1380; a law (civil, ceremonial or ecclesiastical): - decree, ordinance."]},{"k":"G1379","v":["δογματίζω","dogmatizō","dog-mat-id'-zo","From G1378; to prescribe by statute, that is, (reflexively) to submit to ceremonial rule: - be subject to ordinances."]},{"k":"G1380","v":["δοκέω","dokeō","dok-eh'-o","A prolonged form of a primary verb δόκω dokō (used only as an alternate in certain tenses; compare the base of G1166); of the same meaning; to think; by implication to seem (truthfully or uncertainly): - be accounted, (of own) please (-ure), be of reputation, seem (good), suppose, think, trow."]},{"k":"G1381","v":["δοκιμάζω","dokimazō","dok-im-ad'-zo","From G1384; to test (literally or figuratively); by implication to approve: - allow, discern, examine, X like, (ap-) prove, try."]},{"k":"G1382","v":["δοκιμή","dokimē","dok-ee-may'","From the same as G1384; test (abstractly or concretely); by implication trustiness: - experience (-riment), proof, trial."]},{"k":"G1383","v":["δοκίμιον","dokimion","dok-im'-ee-on","Neuter of a presumed derivative of G1382; a testing; by implication trustworthiness: - trial, trying."]},{"k":"G1384","v":["δόκιμος","dokimos","dok'-ee-mos","From G1380; properly acceptable (current after assayal), that is, approved: - approved, tried."]},{"k":"G1385","v":["δοκός","dokos","dok-os'","From G1209 (through the idea of holding up); a stick of timber: - beam."]},{"k":"G1386","v":["δόλιος","dolios","dol'-ee-os","From G1388; guileful: - deceitful."]},{"k":"G1387","v":["δολιόω","dolioō","dol-ee-o'-o","From G1386; to be guileful: - use deceit."]},{"k":"G1388","v":["δόλος","dolos","dol'-os","From δέλλω dellō (an obsolete primary probably meaning to decoy; compare G1185); a trick (bait), that is, (figuratively) wile: - craft, deceit, guile, subtilty."]},{"k":"G1389","v":["δολόω","doloō","dol-o'-o","From G1388; to ensnare, that is, (figuratively) adulterate: - handle deceitfully."]},{"k":"G1390","v":["δόμα","doma","dom'-ah","From the base of G1325; a present: - gift."]},{"k":"G1391","v":["δόξα","doxa","dox'-ah","From the base of G1380; glory (as very apparent), in a wide application (literally or figuratively, objectively or subjectively): - dignity, glory (-ious), honour, praise, worship."]},{"k":"G1392","v":["δοξάζω","doxazō","dox-ad'-zo","From G1391; to render (or esteem) glorious (in a wide application): - (make) glorify (-ious), full of (have) glory, honour, magnify."]},{"k":"G1393","v":["Δορκάς","Dorkas","dor-kas'","gazelle; Dorcas, a Christian woman: - Dorcas."]},{"k":"G1394","v":["δόσις","dosis","dos'-is","From the base of G1325; a giving; by implication (concretely) a gift: - gift, giving."]},{"k":"G1395","v":["δότης","dotēs","dot'-ace","From the base of G1325; a giver: - giver."]},{"k":"G1396","v":["δουλαγωγέω","doulagōgeō","doo-lag-ogue-eh'-o","From a presumed compound of G1401 and G71; to be a slave driver, that is, to enslave (figuratively subdue): - bring into subjection."]},{"k":"G1397","v":["δουλεία","douleia","doo-li'-ah","From G1398; slavery (ceremonially or figuratively): - bondage."]},{"k":"G1398","v":["δουλεύω","douleuō","dool-yoo'-o","From G1401; to be a slave to (literally or figuratively, involuntarily or voluntarily): - be in bondage, (do) serve (-ice)."]},{"k":"G1399","v":["δούλη","doulē","doo'-lay","Feminine of G1401; a female slave (involuntarily or voluntarily): - handmaid (-en)."]},{"k":"G1400","v":["δοῦλον","doulon","doo'-lon","Neuter of G1401; subservient: - servant."]},{"k":"G1401","v":["δοῦλος","doulos","doo'-los","From G1210; a slave (literally or figuratively, involuntarily or voluntarily; frequently therefore in a qualified sense of subjection or subserviency): - bond (-man), servant."]},{"k":"G1402","v":["δουλόω","douloō","doo-lo'-o","From G1401; to enslave (literally or figuratively): - bring into (be under) bondage, X given, become (make) servant."]},{"k":"G1403","v":["δοχή","dochē","dokh-ay'","From G1209; a reception, that is, convivial entertainment: - feast."]},{"k":"G1404","v":["δράκων","drakōn","drak'-own","Probably from an alternate form of δέρκομαι derkomai (to look); a fabulous kind of serpent (perhaps as supposed to fascinate): - dragon."]},{"k":"G1405","v":["δράσσομαι","drassomai","dras'-som-ahee","Perhaps akin to the base of G1404 (through the idea of capturing); to grasp, that is, (figuratively) entrap: - take."]},{"k":"G1406","v":["δραχμή","drachmē","drakh-may'","From G1405; a drachma or (silver) coin (as handled): - piece (of silver)."]},{"k":"G1407","v":["δρέπανον","drepanon","drep'-an-on","From δρέπω drepō (to pluck); a gathering hook (especially for harvesting): - sickle."]},{"k":"G1408","v":["δρόμος","dromos","drom'-os","From the alternate of G5143; a race, that is, (figuratively) career: - course."]},{"k":"G1409","v":["Δρούσιλλα","Drousilla","droo'-sil-lah","A feminine diminutive of Drusus (a Roman name); Drusilla, a member of the Herodian family: - Drusilla."]},{"k":"G1410","v":["δύναμαι","dunamai","doo'-nam-ahee","Of uncertain affinity; to be able or possible: - be able, can (do, + -not), could, may, might, be possible, be of power."]},{"k":"G1411","v":["δύναμις","dunamis","doo'-nam-is","From G1410; force (literally or figuratively); specifically miraculous power (usually by implication a miracle itself): - ability, abundance, meaning, might (-ily, -y, -y deed), (worker of) miracle (-s), power, strength, violence, mighty (wonderful) work."]},{"k":"G1412","v":["δυναμόω","dunamoō","doo-nam-o'-o","From G1411; to enable: - strengthen."]},{"k":"G1413","v":["δυνάστης","dunastēs","doo-nas'-tace","From G1410; a ruler or officer: - of great authority, mighty, potentate."]},{"k":"G1414","v":["δυνατέω","dunateō","doo-nat-eh'-o","From G1415; to be efficient (figuratively): - be mighty."]},{"k":"G1415","v":["δυνατός","dunatos","doo-nat-os'","From G1410; powerful or capable (literally or figuratively); neuter possible: - able, could, (that is) mighty (man), possible, power, strong."]},{"k":"G1416","v":["δύνω, δῦμι","dunō    dumi","doo'-no, doo'-mee","Prolonged forms of an obsolete primary word δύω duō (to sink); to go “down”: - set."]},{"k":"G1417","v":["δύο","duo","doo'-o","A primary numeral; “two”: - both, twain, two."]},{"k":"G1418","v":["δυς","dus","doos","A primary inseparable particle of uncertain derivation; used only in composition as a prefix; hard, that is, with difficulty: - + hard, + grievous, etc."]},{"k":"G1419","v":["δυσβάστακτος","dusbastaktos","doos-bas'-tak-tos","From G1418 and a derivative of G941; oppressive: - grievous to be borne."]},{"k":"G1420","v":["δυσεντερία","dusenteria","doos-en-ter-ee'-ah","From G1418 and a compound of G1787 (meaning a bowel); a “dysentery”: - bloody flux."]},{"k":"G1421","v":["δυσερμήνευτος","dusermēneutos","doos-er-mane'-yoo-tos","From G1418 and a presumed derivative of G2059; difficult of explanation: - hard to be uttered."]},{"k":"G1422","v":["δύσκολος","duskolos","doos'-kol-os","From G1418 and κόλον kolon (food); properly fastidious about eating (peevish), that is, (generally) impracticable: - hard."]},{"k":"G1423","v":["δυσκόλως","duskolōs","doos-kol'-oce","Adverb from G1422; impracticably: - hardly."]},{"k":"G1424","v":["δυσμή","dusmē","doos-may'","From G1416; the sun set, that is, (by implication) the western region: - west."]},{"k":"G1425","v":["δυσνόητος","dusnoētos","doos-no'-ay-tos","From G1418 and a derivation of G3539; difficult of perception: - hard to be understood."]},{"k":"G1426","v":["δυσφημία","dusphēmia","doos-fay-mee'-ah","From a compound of G1418 and G5345; defamation: - evil report."]},{"k":"G1427","v":["δώδεκα","dōdeka","do'-dek-ah","From G1417 and G1176; two and ten, that is, a dozen: - twelve."]},{"k":"G1428","v":["δωδέκατος","dōdekatos","do-dek'-at-os","From G1427; twelfth: - twelfth."]},{"k":"G1429","v":["δωδεκάφυλον","dōdekaphulon","do-dek-af'-oo-lon","From G1427 and G5443; the commonwealth of Israel: - twelve tribes."]},{"k":"G1430","v":["δῶμα","dōma","do'-mah","From δέμο demō (to build); properly an edifice, that is, (specifically) a roof: - housetop."]},{"k":"G1431","v":["δωρεά","dōrea","do-reh-ah'","From G1435; a gratuity: - gift."]},{"k":"G1432","v":["δωρεάν","dōrean","do-reh-an'","Accusative case of G1431 as adverb; gratuitously (literally or figuratively): - without a cause, freely, for naught, in vain."]},{"k":"G1433","v":["δωρέομαι","dōreomai","do-reh'-om-ahee","Middle voice from G1435; to bestow gratuitously: - give."]},{"k":"G1434","v":["δώρημα","dōrēma","do'-ray-mah","From G1433; a bestowment: - gift."]},{"k":"G1435","v":["δῶρον","dōron","do'-ron","A present; specifically a sacrifice: - gift, offering."]},{"k":"G1436","v":["ἔα","ea","eh'-ah","Apparent imperative of G1439; properly let it be, that is, (as interjection) aha !: - let alone."]},{"k":"G1437","v":["ἐάν","ean","eh-an'","From G1487 and G302; a conditional particle; in case that, provided, etc.; often used in connection with other particles to denote indefiniteness or uncertainty: - before, but, except, (and) if, (if) so, (what-, whither-) soever, though, when (-soever), whether (or), to whom, [who-] so (-ever). See G3361."]},{"k":"G1438","v":["ἑαυτοῦ","heautou","heh-ow-too'","(Including all the other cases); from a reflexive pronoun otherwise obsolete and the genitive (dative or accusative) of G846; him (her, it, them, also [in conjunction with the personal pronoun of the other persons] my, thy, our, your) -self (-selves), etc.: - alone, her (own, -self), (he) himself, his (own), itself, one (to) another, our (thine) own (-selves), + that she had, their (own, own selves), (of) them (-selves), they, thyself, you, your (own, own conceits, own selves, -selves)."]},{"k":"G1439","v":["ἐάω","eaō","eh-ah'-o","Of uncertain affinity; to let be, that is, permit or leave alone: - commit, leave, let (alone), suffer. See also G1436."]},{"k":"G1440","v":["ἑβδομήκοντα","hebdomēkonta","heb-dom-ay'-kon-tah","From G1442 and a modified form of G1176, seventy: - seventy, three score and ten."]},{"k":"G1441","v":["ἑβδομηκοντακίς","hebdomēkontakis","heb-dom-ay-kon-tak-is'","Multiple adverb from G1440; seventy times: - seventy times."]},{"k":"G1442","v":["ἕβδομος","hebdomos","heb'-dom-os","Ordinal from G2033; seventh: - seventh."]},{"k":"G1443","v":["Ἐβέρ","Eber","eb-er'","Of Hebrew origin [H5677]; Eber, a patriarch: - Eber."]},{"k":"G1444","v":["Ἑβραΐκός","Hebraikos","heb-rah-ee-kos'","From G1443; Hebraic or the Jewish language: - Hebrew."]},{"k":"G1445","v":["Ἑβραῖος","Hebraios","heb-rah'-yos","From G1443; a Hebraean (that is, Hebrew) or Jew: - Hebrew."]},{"k":"G1446","v":["Ἑβραΐ́ς","Hebrais","heb-rah-is'","From G1443; the Hebraistic (that is, Hebrew) or Jewish (Chaldee) language: - Hebrew."]},{"k":"G1447","v":["Ἑβραΐστί","Hebraisti","heb-rah-is-tee'","Adverb from G1446; Hebraistically or in the Jewish (Chaldee) language: - in (the) Hebrew (tongue)."]},{"k":"G1448","v":["ἐγγίζω","eggizō","eng-id'-zo","From G1451; to make near, that is, (reflexively) approach: - approach, be at hand, come (draw) near, be (come, draw) nigh."]},{"k":"G1449","v":["ἐγγράφω","eggraphō","eng-graf'-o","From G1722 and G1125; to “engrave”, that is, inscribe: - write (in)."]},{"k":"G1450","v":["ἔγγυος","egguos","eng'-goo-os","From G1722 and γυῖον guion (a limb); pledged (as if articulated by a member), that is, a bondsman: - surety."]},{"k":"G1451","v":["ἐγγύς","eggus","eng-goos'","From a primary verb ἄγχω agchō (to squeeze or throttle; akin to the base of G43); near (literally or figuratively, of place or time): - from, at hand, near, nigh (at hand, unto), ready."]},{"k":"G1452","v":["ἐγγύτερον","egguteron","eng-goo'-ter-on","Neuter of the compound of G1451; nearer: - nearer."]},{"k":"G1453","v":["ἐγείρω","egeirō","eg-i'-ro","Probably akin to the base of G58 (through the idea of collecting one’s faculties); to waken (transitively or intransitively), that is, rouse (literally from sleep, from sitting or lying, from disease, from death; or figuratively from obscurity, inactivity, ruins, nonexistence): - awake, lift (up), raise (again, up), rear up, (a-) rise (again, up), stand, take up."]},{"k":"G1454","v":["ἔγερσις","egersis","eg'-er-sis","From G1453; a resurgence (from death): - resurrection."]},{"k":"G1455","v":["ἐγκάθετος","egkathetos","eng-kath'-et-os","From G1722 and a derivative of G2524; subinduced, that is, surreptitiously suborned as a lier in wait: - spy."]},{"k":"G1456","v":["ἐγκαίνια","egkainia","eng-kah'ee-nee-ah","Neuter plural of a presumed compound from G1722 and G2537; innovatives, that is, (specifically) renewal (of religious services after the Antiochian interruption): - dedication."]},{"k":"G1457","v":["ἐγκαινίζω","egkainizō","eng-kahee-nid'-zo","From G1456; to renew, that is, inaugurate: - consecrate, dedicate."]},{"k":"G1458","v":["ἐγκαλέω","egkaleō","eng-kal-eh'-o","From G1722 and G2564; to call in (as a debt or demand), that is, bring to account (charge, criminate, etc.): - accuse, call in question, implead, lay to the charge."]},{"k":"G1459","v":["ἐγκαταλείπω","egkataleipō","eng-kat-al-i'-po","From G1722 and G2641; to leave behind in some place, that is, (in a good sense) let remain over, or (in a bad one) to desert: - forsake, leave."]},{"k":"G1460","v":["ἐγκατοικέω","egkatoikeō","eng-kat-oy-keh'-o","From G1722 and G2730; to settle down in a place, that is, reside: - dwell among."]},{"k":"G1461","v":["ἐγκεντρίζω","egkentrizō","eng-ken-trid'-zo","From G1722 and a derivative of G2759; to prick in, that is, ingraft: - graff in (-to)."]},{"k":"G1462","v":["ἔγκλημα","egklēma","eng'-klay-mah","From G1458; an accusation, that is, offence alleged: - crime laid against, laid to charge."]},{"k":"G1463","v":["ἐγκομβόομαι","egkomboomai","eng-kom-bo'-om-ahee","Middle voice from G1722 κομβόω komboō (to gird); to engirdle oneself (for labor), that is, figuratively (the apron being a badge of servitude) to wear (in token of mutual deference): - be clothed with."]},{"k":"G1464","v":["ἐγκοπή","egkopē","eng-kop-ay'","From G1465; a hindrance: - X hinder."]},{"k":"G1465","v":["ἐγκόπτω","egkoptō","eng-kop'-to","From G1722 and G2875; to cut into, that is, (figuratively) impede, detain: - hinder, be tedious unto."]},{"k":"G1466","v":["ἐγκράτεια","egkrateia","eng-krat'-i-ah","From G1468; self control (especially continence): - temperance."]},{"k":"G1467","v":["ἐγκρατεύομαι","egkrateuomai","eng-krat-yoo'-om-ahee","Middle voice from G1468; to exercise self restraint (in diet and chastity): - can([-not]) contain, be temperate."]},{"k":"G1468","v":["ἐγκρατής","egkratēs","eng-krat-ace'","From G1722 and G2904; strong in a thing (masterful), that is, (figuratively and reflexively) self controlled (in appetite, etc.): - temperate."]},{"k":"G1469","v":["ἐγκρίνω","egkrinō","eng-kree'-no","From G1722 and G2919; to judge in, that is, count among: - make of the number."]},{"k":"G1470","v":["ἐγκρύπτω","egkruptō","eng-kroop'-to","From G1722 and G2928; to conceal in, that is, incorporate with: - hid in."]},{"k":"G1471","v":["ἔγκυος","egkuos","eng'-koo-os","From G1722 and the base of G2949; swelling inside, that is, pregnant: - great with child."]},{"k":"G1472","v":["ἐγκρίω","egchriō","eng-khree'-o","From G1722 and G5548; to rub in (oil), that is, besmear: - anoint."]},{"k":"G1473","v":["ἐγώ","egō","eg-o'","A primary pronoun of the first person, “I” (only expressed when emphatic): - I, me. For the other cases and the plural see G1691, G1698, G1700, G2248, G2249, G2254, G2257, etc."]},{"k":"G1474","v":["ἐδαφίζω","edaphizō","ed-af-id'-zo","From G1475; to raze: - lay even with the ground."]},{"k":"G1475","v":["ἔδαφος","edaphos","ed'-af-os","From the base of G1476; a basis (bottom), that is, the soil: - ground."]},{"k":"G1476","v":["ἑδραῖος","hedraios","hed-rah'-yos","From a derivative of ἕζομαι hezomai (to sit); sedentary, that is, (by implication) immovable: - settled, stedfast."]},{"k":"G1477","v":["ἑδραίωμα","hedraiōma","hed-rah'-yo-mah","From a derivative of G1476; a support, that is, (figuratively) basis: - ground."]},{"k":"G1478","v":["Ἐζεκίας","Ezekias","ed-zek-ee'-as","Of Hebrew origin [H2396]; Ezekias (that is, Hezekiah), an Israelite: - Ezekias."]},{"k":"G1479","v":["ἐθελοθρησκεία","ethelothrēskeia","eth-el-oth-race-ki'-ah","From G2309 and G2356; voluntary (arbitrary and unwarranted) piety, that is, sanctimony: - will worship."]},{"k":"G1480","v":["ἐθίζω","ethizō","eth-id'-zo","From G1485; to accustom, that is, (neuter passive participle) customary: - custom."]},{"k":"G1481","v":["ἐθνάρχης","ethnarchēs","eth-nar'-khace","From G1484 and G746; the governor [not king] of a district: - ethnarch."]},{"k":"G1482","v":["ἐθνικός","ethnikos","eth-nee-kos'","From G1484; national (“ethnic”), that is, (specifically) a Gentile: - heathen (man)."]},{"k":"G1483","v":["ἐθνικῶς","ethnikōs","eth-nee-koce'","Adverb from G1482; as a Gentile: - after the manner of Gentiles."]},{"k":"G1484","v":["ἔθνος","ethnos","eth'-nos","Probably from G1486; a race (as of the same habit), that is, a tribe; specifically a foreign (non-Jewish) one (usually by implication pagan): - Gentile, heathen, nation, people."]},{"k":"G1485","v":["ἔθος","ethos","eth'-os","From G1486; a usage (prescribed by habit or law): - custom, manner, be wont."]},{"k":"G1486","v":["ἔθω","ethō","eth'-o","A primary verb; to be used (by habit or conventionality); neuter perfect participle usage: - be custom (manner, wont)."]},{"k":"G1487","v":["εἰ","ei","i","A primary particle of conditionality; if, whether, that, etc.: - forasmuch as, if, that, ([al-]) though, whether. Often used in connection or composition with other particles, especially as in G1489, G1490, G1499, G1508, G1509, G1512, G1513, G1536, and G1537. See also G1437."]},{"k":"G1488","v":["εἶ","ei","i","Second parson singular present of G1510; thou art: - art, be."]},{"k":"G1489","v":["εἴγε","eige","i'-gheh","From G1487 and G1065; if indeed, seeing that, unless, (with negative) otherwise: - if (so be that, yet)."]},{"k":"G1490","v":["εἰ δὲ μή(γε)","ei de mē(ge)","i deh may'-(gheh)","From G1487, G1161 and G3361 (sometimes with G1065 added); but if not: - (or) else, if (not, otherwise), otherwise."]},{"k":"G1491","v":["εἶδος","eidos","i'-dos","From G1492; a view, that is, form (literally or figuratively): - appearance, fashion, shape, sight."]},{"k":"G1492","v":["εἴδω","eidō","i'-do","A primary verb; used only in certain past tenses, the others being borrowed from the equivalent, G3700 and G3708; properly to see (literally or figuratively); by implication (in the perfect only) to know: - be aware, behold, X can (+ not tell), consider, (have) known (-ledge), look (on), perceive, see, be sure, tell, understand, wist, wot. Compare G3700."]},{"k":"G1493","v":["εἰδωλεῖον","eidōleion","i-do-li'-on","Neuter of a presumed derivative of G1497; an image fane: - idol’s temple."]},{"k":"G1494","v":["εἰδωλόθυτον","eidōlothuton","i-do-loth'-oo-ton","Neuter of a compound of G1497 and a presumed derivative of G2380; an image sacrifice, that is, part of an idolatrous offering: - (meat, thing that is) offered (in sacrifice, sacrificed) to (unto) idols."]},{"k":"G1495","v":["εἰδωλολατρεία","eidōlolatreia","i-do-lol-at-ri'-ah","From G1497 and G2999; image worship (literally or figuratively): - idolatry."]},{"k":"G1496","v":["εἰδωλολάτρης","eidōlolatrēs","i-do-lol-at'-race","From G1497 and the base of G3000; an image (servant or) worshipper (literally or figuratively): - idolater."]},{"k":"G1497","v":["εἴδωλον","eidōlon","i'-do-lon","From G1491; an image (that is, for worship); by implication a heathen god, or (plural) the worship of such: - idol."]},{"k":"G1498","v":["εἴην","eiēn","i'-ane","Optative (that is, English subjunctive) present of G1510 (including the other person); might (could, would or should) be: - mean, + perish, should be, was, were."]},{"k":"G1499","v":["εἰ καί","ei kai","i kahee","From G1487 and G2532; if also (or even): - if (that), though."]},{"k":"G1500","v":["εἰκῆ","eikē","i-kay'","Probably from G1502 (through the idea of failure); idly, that is, without reason (or effect): - without a cause, (in) vain (-ly.)"]},{"k":"G1501","v":["εἴκοσι","eikosi","i'-kos-ee","Of uncertain affinity; a score: - twenty."]},{"k":"G1502","v":["εἴκω","eikō","i'-ko","Apparently a primary verb; properly to be weak, that is, yield: - give place."]},{"k":"G1503","v":["εἴκω","eikō","i'-ko","Apparently a primary verb (perhaps akin to G1502 through the idea of faintness as a copy); to resemble: - be like."]},{"k":"G1504","v":["εἰκών","eikōn","i-kone'","From G1503; a likeness, that is, (literally) statue, profile, or (figuratively) representation, resemblance: - image."]},{"k":"G1505","v":["εἰλικρίνεια","eilikrineia","i-lik-ree'-ni-ah","From G1506; clearness, that is, (by implication) purity (figuratively): - sincerity."]},{"k":"G1506","v":["εἰλικρινής","eilikrinēs","i-lik-ree-nace'","From εἵλη heilē (the sun’s ray) and G2919; judged by sunlight, that is, tested as genuine (figuratively): - pure, sincere."]},{"k":"G1507","v":["εἱλίσσω","heilissō","hi-lis'-so","A prolonged form of a primary but defective verb εἵλω heilō (of the same meaning); to coil or wrap: - roll together. See also G1667."]},{"k":"G1508","v":["έἰ μή","ei mē","i may","From G1487 and G3361; if not: - but, except (that), if not, more than, save (only) that, saving, till."]},{"k":"G1509","v":["εἰ μή τι","ei mē ti","i may tee","From G1508 and the neuter of G5100; if not somewhat: - except."]},{"k":"G1510","v":["εἰμί","eimi","i-mee'","First person singular present indicative; a prolonged form of a primary and defective verb; I exist (used only when emphatic): - am, have been, X it is I, was. See also G1488, G1498, G1511, G1527, G2258, G2071, G2070, G2075, G2076, G2771, G2468, G5600."]},{"k":"G1511","v":["εἶναι","einai","i'-nahee","Present infinitive from G1510; to exist: - am, are, come, is, X lust after, X please well, there is, to be, was."]},{"k":"G1512","v":["εἴ περ","ei per","i per","From G1487 and G4007; if perhaps: - if so be (that), seeing, though."]},{"k":"G1513","v":["εἴ πως","ei pōs","i poce","From G1487 and G4458; if somehow: - if by any means."]},{"k":"G1514","v":["εἰρηνεύω","eirēneuō","i-rane-yoo'-o","From G1515; to be (act) peaceful: - be at (have, live in) peace, live peaceably."]},{"k":"G1515","v":["εἰρήνη","eirēnē","i-rah'-nay","Probably from a primary verb εἴρω eirō (to join); peace (literally or figuratively); by implication prosperity: - one, peace, quietness, rest, + set at one again."]},{"k":"G1516","v":["εἰρηνικός","eirēnikos","i-ray-nee-kos'","From G1515; pacific; by implication salutary: - peaceable."]},{"k":"G1517","v":["εἰρηνοποιέω","eirēnopoieō","i-ray-nop-oy-eh'-o","From G1518; to be a peace maker, that is, (figuratively) to harmonize: - make peace."]},{"k":"G1518","v":["εἰρηνοποιός","eirēnopoios","i-ray-nop-oy-os'","From G1518 and G4160; pacificatory, that is, (subjectively) peaceable: - peacemaker."]},{"k":"G1519","v":["εἰς","eis","ice","A primary preposition; to or into (indicating the point reached or entered), of place, time, or (figuratively) purpose (result, etc.); also in adverbial phrases.: - [abundant-] ly, against, among, as, at, [back-] ward, before, by, concerning, + continual, + far more exceeding, for [intent, purpose], fore, + forth, in (among, at unto, -so much that, -to), to the intent that, + of one mind, + never, of, (up-) on, + perish, + set at one again, (so) that, therefore (-unto), throughout, till, to (be, the end, -ward), (here-) until (-to), . . . ward, [where-] fore, with. Often used in composition with the same general import, but only with verbs (etc.) expressing motion (literallyor figuratively."]},{"k":"G1520","v":["εἷς","heis","hice","(Including the neuter [etc.] ἕν hen); a primary numeral; one: - a (-n, -ny, certain), + abundantly, man, one (another), only, other, some. See also G1527, G3367, G3391, G3762."]},{"k":"G1521","v":["εἰσάγω","eisagō","ice-ag'-o","From G1519 and G71; to introduce (literally or figuratively): - bring in (-to), (+ as to) lead into."]},{"k":"G1522","v":["εἰσακούω","eisakouō","ice-ak-oo'-o","From G1519 and G191; to listen to: - hear."]},{"k":"G1523","v":["εἰσδέχομαι","eisdechomai","ice-dekh'-om-ahee","From G1519 and G1209; to take into one’s favor: - receive."]},{"k":"G1524","v":["εἴσειμι","eiseimi","ice'-i-mee","From G1519 and εἶμι eimi (to go); to enter: - enter (go) into."]},{"k":"G1525","v":["εἰσέρχομαι","eiserchomai","ice-er'-khom-ahee","From G1519 and G2064; to enter (literally or figuratively): - X arise, come (in, into), enter in (-to), go in (through)."]},{"k":"G1526","v":["εἰσί","eisi","i-see'","Third person plural present indicative of G1510; they are: - agree, are, be, dure, X is, were."]},{"k":"G1527","v":["εἷς, καθ, εἷς","heis    kath    heis","hice kath hice","From G1520 repeated with G2596 inserted; severally: - one by one."]},{"k":"G1528","v":["εἰσκαλέω","eiskaleō","ice-kal-eh'-o","From G1519 and G2564; to invite in: - call in."]},{"k":"G1529","v":["εἴσοδος","eisodos","ice'-od-os","From G1519 and G3598; an entrance (literally or figuratively): - coming, enter (-ing) in (to)."]},{"k":"G1530","v":["εἰσπηδάω","eispēdaō","ice-pay-dah'-o","From G1519 and πηδάω pēdaō (to leap); to rush in: - run (spring) in."]},{"k":"G1531","v":["εἰσπορεύομαι","eisporeuomai","ice-por-yoo'-om-ahee","From G1519 and G4198; to enter (literally or figuratively): - come (enter) in, go into."]},{"k":"G1532","v":["εἰστρέχω","eistrechō","ice-trekh'-o","From G1519 and G5143; to hasten inward: - run in."]},{"k":"G1533","v":["εἰσφέρω","eispherō","ice-fer'-o","From G1519 and G5342; to carry inward (literally or figuratively): - bring (in), lead into."]},{"k":"G1534","v":["εἶτα","eita","i'-tah","Of uncertain affinity; a particle of succession (in time or logical enumeration), then, moreover: - after that (-ward), furthermore, then. See also G1899."]},{"k":"G1535","v":["εἴτε","eite","i'-teh","From G1487 and G5037; if too: - if, or, whether."]},{"k":"G1536","v":["εἴ τις","ei tis","i tis","From G1487 and G5100; if any: - he that, if a (-ny) man (‘s thing, from any, ought), whether any, whosoever."]},{"k":"G1537","v":["ἐκ, ἐξ","ek    ex","ek, ex","A primary preposition denoting origin (the point whence motion or action proceeds), from, out (of place, time or cause; literally or figuratively; direct or remote): - after, among, X are, at betwixt (-yond), by (the means of), exceedingly, (+ abundantly above), for (-th), from (among, forth, up), + grudgingly, + heartily, X heavenly, X hereby, + very highly, in, . . . ly, (because, by reason) of, off (from), on, out among (from, of), over, since, X thenceforth, through, X unto, X vehemently, with (-out). Often used in composition, with the same general import; often of completion."]},{"k":"G1538","v":["ἕκαστος","hekastos","hek'-as-tos","As if a superlative of ἕκας hekas (afar); each or every: - any, both, each (one), every (man, one, woman), particularly."]},{"k":"G1539","v":["ἑκάστοτε","hekastote","hek-as'-tot-eh","As if from G1538 and G5119; at every time: - always."]},{"k":"G1540","v":["ἑκατόν","hekaton","hek-at-on'","Of uncertain affinity; a hundred: - hundred."]},{"k":"G1541","v":["ἑκατονταέτης","hekatontaetēs","hek-at-on-tah-et'-ace","From G1540 and G2094; centenarian: - hundred years old."]},{"k":"G1542","v":["ἑκατονταπλασίων","hekatontaplasiōn","hek-at-on-ta-plah-see'-own","From G1540 and a presumed derivative of G4111; a hundred times: - hundredfold."]},{"k":"G1543","v":["ἑκατοντάρχης, ἑκατοντάρχος","hekatontarchēs    hekatontarchos","hek-at-on-tar'-khace, hek-at-on-tar'-khos","From G1540 and G757; the captain of one hundred men: - centurion."]},{"k":"G1544","v":["ἐκβάλλω","ekballō","ek-bal'-lo","From G1537 and G906; to eject (literally or figuratively): - bring forth, cast (forth, out), drive (out), expel, leave, pluck (pull, take, thrust) out, put forth (out), send away (forth, out)."]},{"k":"G1545","v":["ἔκβασις","ekbasis","ek'-bas-is","From a compound of G1537 and the base of G939 (meaning to go out); an exit (literally or figuratively): - end, way to escape."]},{"k":"G1546","v":["ἐκβολή","ekbolē","ek-bol-ay'","From G1544; ejection, that is, (specifically) a throwing overboard of the cargo: - + lighten the ship."]},{"k":"G1547","v":["ἐκγαμίζω","ekgamizō","ek-gam-id'-zo","From G1537 and a form of G1061 (compare G1548); to marry off a daughter: - give in marriage."]},{"k":"G1548","v":["ἐκγαμίσκω","ekgamiskō","ek-gam-is'-ko","From G1537 and G1061; the same as G1547: - give in marriage."]},{"k":"G1549","v":["ἔκγονον","ekgonon","ek'-gon-on","Neuter of a derivative of a compound of G1537 and G1096; a descendant, that is, (specifically) grandchild: - nephew."]},{"k":"G1550","v":["ἐκδαπανάω","ekdapanaō","ek-dap-an-ah'-o","From G1537 and G1159; to expend (wholly), that is, (figuratively) exhaust: - spend."]},{"k":"G1551","v":["ἐκδέχομαι","ekdechomai","ek-dekh'-om-ahee","From G1537 and G1209; to accept from some source, that is, (by implication) to await: - expect, look (tarry) for, wait (for)."]},{"k":"G1552","v":["ἔκδηλος","ekdēlos","ek'-day-los","From G1537 and G1212; wholly evident: - manifest."]},{"k":"G1553","v":["ἐκδημέω","ekdēmeō","ek-day-meh'-o","From a compound of G1537 and G1218; to emigrate, that is, (figuratively) vacate or quit: - be absent."]},{"k":"G1554","v":["ἐκδίδωμι","ekdidōmi","ek-did'-o-mee","From G1537 and G1325; to give forth, that is, (specifically) to lease: - let forth (out)."]},{"k":"G1555","v":["ἐκδιηγέομαι","ekdiēgeomai","ek-dee-ayg-eh'-om-ahee","From G1537 and a compound of G1223 and G2233; to narrate through wholly: - declare."]},{"k":"G1556","v":["ἐκδικέω","ekdikeō","ek-dik-eh'-o","From G1558; to vindicate, retaliate, punish: - a (re-) venge."]},{"k":"G1557","v":["ἐκδίκησις","ekdikēsis","ek-dik'-ay-sis","From G1556; vindication, retribution: - (a-, re-) venge (-ance), punishment."]},{"k":"G1558","v":["ἔκδικος","ekdikos","ek'-dik-os","From G1537 and G1349; carrying justice out, that is, a punisher: - a (re-) venger."]},{"k":"G1559","v":["ἐκδιώκω","ekdiōkō","ek-dee-o'-ko","From G1537 and G1377; to pursue out, that is, expel or persecute implacably: - persecute."]},{"k":"G1560","v":["ἔκδοτος","ekdotos","ek'-dot-os","From G1537 and a derivative of G1325; given out or over, that is, surrendered: - delivered."]},{"k":"G1561","v":["ἐκδοχή","ekdochē","ek-dokh-ay'","From G1551; expectation: - looking for."]},{"k":"G1562","v":["ἐκδύω","ekduō","ek-doo'-o","From G1537 and the base of G1416; to cause to sink out of, that is, (specifically as of clothing) to divest: - strip, take off from, unclothe."]},{"k":"G1563","v":["ἐκεῖ","ekei","ek-i'","Of uncertain affinity; there; by extension thither: - there, thither (-ward), (to) yonder (place)."]},{"k":"G1564","v":["ἐκεῖθεν","ekeithen","ek-i'-then","From G1563; thence: - from that place, (from) thence, there."]},{"k":"G1565","v":["ἐκεῖνος","ekeinos","ek-i'-nos","From G1563; that one (or [neuter] thing); often intensified by the article prefixed: - he, it, the other (same), selfsame, that (same, very), X their, X them, they, this, those. See also G3778."]},{"k":"G1566","v":["ἐκεῖσε","ekeise","ek-i'-seh","From G1563; thither: - there."]},{"k":"G1567","v":["ἐκζητέω","ekzēteō","ek-zay-teh'-o","From G1537 and G2212; to search out, that is, (figuratively) investigate, crave, demand, (by Hebraism) worship: - en- (re-) quire, seek after (carefully, diligently)."]},{"k":"G1568","v":["ἐκθαμβέω","ekthambeō","ek-tham-beh'-o","From G1569; to astonish utterly: - affright, greatly (sore) amaze."]},{"k":"G1569","v":["ἔκθαμβος","ekthambos","ek'-tham-bos","From G1537 and G2285; utterly astounded: - greatly, wondering."]},{"k":"G1570","v":["ἔκθετος","ekthetos","ek'-thet-os","From G1537 and a derivative of G5087; put out, that is, exposed to perish: - cast out."]},{"k":"G1571","v":["ἐκκαθαίρω","ekkathairō","ek-kath-ah'ee-ro","From G1537 and G2508; to cleanse thoroughly: - purge (out)."]},{"k":"G1572","v":["ἐκκαίω","ekkaiō","ek-kah'-yo","From G1537 and G2545; to inflame deeply: - burn."]},{"k":"G1573","v":["ἐκκακέω","ekkakeō","ek-kak-eh'-o","From G1537 and G2556; to be (bad or) weak, that is, (by implication) to fail (in heart): - faint, be weary."]},{"k":"G1574","v":["ἐκκεντέω","ekkenteō","ek-ken-teh'-o","From G1537 and the base of G2759; to transfix: - pierce."]},{"k":"G1575","v":["ἐκκλάω","ekklaō","ek-klah'-o","From G1537 and G2806; to exscind: - break off."]},{"k":"G1576","v":["ἐκκλείω","ekkleiō","ek-kli'-o","From G1537 and G2808; to shut out (literally or figuratively): - exclude."]},{"k":"G1577","v":["ἐκκλησία","ekklēsia","ek-klay-see'-ah","From a compound of G1537 and a derivative of G2564; a calling out, that is, (concretely) a popular meeting, especially a religious congregation (Jewish synagogue, or Christian community of members on earth or saints in heaven or both): - assembly, church."]},{"k":"G1578","v":["ἐκκλίνω","ekklinō","ek-klee'-no","From G1537 and G2827; to deviate, that is, (absolutely) to shun (literally or figuratively), or (relatively) to decline (from piety): - avoid, eschew, go out of the way."]},{"k":"G1579","v":["ἐκκολυμβάω","ekkolumbaō","ek-kol-oom-bah'-o","From G1537 and G2860; to escape by swimming: - swim out."]},{"k":"G1580","v":["ἐκκομίζω","ekkomizō","ek-kom-id'-zo","From G1537 and G2865; to bear forth (to burial): - carry out."]},{"k":"G1581","v":["ἐκκόπτω","ekkoptō","ek-kop'-to","From G1537 and G2875; to exscind; figuratively to frustrate: - cut down (off, out), hew down, hinder."]},{"k":"G1582","v":["ἐκκρέμαμαι","ekkremamai","ek-krem'-am-ahee","Middle voice from G1537 and G2910; to hang upon the lips of a speaker, that is, listen closely: - be very attentive."]},{"k":"G1583","v":["ἐκλαλέω","eklaleō","ek-lal-eh'-o","From G1537 and G2980; to divulge: - tell."]},{"k":"G1584","v":["ἐκλάμπω","eklampō","ek-lam'-po","From G1537 and G2989; to be resplendent: - shine forth."]},{"k":"G1585","v":["ἐκλανθάνομαι","eklanthanomai","ek-lan-than'-om-ahee","Middle voice from G1537 and G2990; to be utterly oblivious of: - forget."]},{"k":"G1586","v":["ἐκλέγομαι","eklegomai","ek-leg'-om-ahee","Middle voice from G1537 and G3004 (in its primary sense); to select: - make choice, choose (out), chosen."]},{"k":"G1587","v":["ἐκλείπω","ekleipō","ek-li'-po","From G1537 and G3007; to omit, that is, (by implication) cease (die): - fail."]},{"k":"G1588","v":["ἐκλεκτός","eklektos","ek-lek-tos'","From G1586; select; by implication favorite: - chosen, elect."]},{"k":"G1589","v":["ἐκλογή","eklogē","ek-log-ay'","From G1586; (divine) selection (abstractly or concretely): - chosen, election."]},{"k":"G1590","v":["ἐκλύω","ekluō","ek-loo'-o","From G1537 and G3089; to relax (literally or figuratively): - faint."]},{"k":"G1591","v":["ἐκμάσσω","ekmassō","ek-mas'-so","From G1537 and the base of G3145; to knead out, that is, (by analogy) to wipe dry: - wipe."]},{"k":"G1592","v":["ἐκμυκτερίζω","ekmukterizō","ek-mook-ter-id'-zo","From G1537 and G3456; to sneer outright at: - deride."]},{"k":"G1593","v":["ἐκνεύω","ekneuō","ek-nyoo'-o","From G1537 and G3506; (by analogy) to slip off, that is, quietly withdraw: - convey self away."]},{"k":"G1594","v":["ἐκνήφω","eknēphō","ek-nay'-fo","From G1537 and G3525; (figuratively) to rouse (oneself) out of stupor: - awake."]},{"k":"G1595","v":["ἑκούσιον","hekousion","hek-oo'-see-on","Neuter of a derivative from G1635; voluntariness: - willingly."]},{"k":"G1596","v":["ἑκουσίως","hekousiōs","hek-oo-see'-oce","Adverb from the same as G1595; voluntarily: - wilfully, willingly."]},{"k":"G1597","v":["ἔκπαλαι","ekpalai","ek'-pal-ahee","From G1537 and G3819; long ago, for a long while: - of a long time, of old."]},{"k":"G1598","v":["ἐκπειράζω","ekpeirazō","ek-pi-rad'-zo","From G1537 and G3985; to test thoroughly: - tempt."]},{"k":"G1599","v":["ἐκπέμπω","ekpempō","ek-pem'-po","From G1537 and G3992; to despatch: - send away (forth)."]},{"k":"G1600","v":["ἐκπετάννυμι","ekpetannumi","ek-pet-an'-noo-mee","From G1537 and a form of G4072; to fly out, that is, (by analogy) extend: - stretch forth."]},{"k":"G1601","v":["ἐκπίπτω","ekpiptō","ek-pip'-to","From G1537 and G4098; to drop away; specifically be driven out of one’s course; figuratively to lose, become inefficient: - be cast, fail, fall (away, off), take none effect."]},{"k":"G1602","v":["ἐκπλέω","ekpleō","ek-pleh'-o","From G1537 and G4126; to depart by ship: - sail (away, thence)."]},{"k":"G1603","v":["ἐκπληρόω","ekplēroō","ek-play-ro'-o","From G1537 and G4137; to accomplish entirely: - fulfill."]},{"k":"G1604","v":["ἐκπλήρωσις","ekplērōsis","ek-play'-ro-sis","From G1603; completion: - accomplishment."]},{"k":"G1605","v":["ἐκπλήσσω","ekplēssō","ek-place'-so","From G1537 and G4141; to strike with astonishment: - amaze, astonish."]},{"k":"G1606","v":["ἐκπνέω","ekpneō","ek-pneh'-o","From G1537 and G4154; to expire: - give up the ghost."]},{"k":"G1607","v":["ἐκπορεύομαι","ekporeuomai","ek-por-yoo'-om-ahee","From G1537 and G4198; to depart, be discharged, proceed, project: - come (forth, out of), depart, go (forth, out), issue, proceed (out of)."]},{"k":"G1608","v":["ἐκπορνεύω","ekporneuō","ek-porn-yoo'-o","From G1537 and G4203; to be utterly unchaste: - give self over to fornication."]},{"k":"G1609","v":["ἐκπτύω","ekptuō","ek-ptoo'-o","From G1537 and G4429; to spit out, that is, (figuratively) spurn: - reject."]},{"k":"G1610","v":["ἐκριζόω","ekrizoō","ek-rid-zo'-o","From G1537 and G4492; to uproot: - pluck up by the root, root up."]},{"k":"G1611","v":["ἔκστασις","ekstasis","ek'-stas-is","From G1839; a displacement of the mind, that is, bewilderment, “ecstasy”: - + be amazed, amazement, astonishment, trance."]},{"k":"G1612","v":["ἐκστρέφω","ekstrephō","ek-stref'-o","From G1537 and G4762; to pervert (figuratively): - subvert."]},{"k":"G1613","v":["ἐκταράσσω","ektarassō","ek-tar-as'-so","From G1537 and G5015; to disturb wholly: - exceedingly trouble."]},{"k":"G1614","v":["ἐκτείνω","ekteinō","ek-ti'-no","From G1537 and τείνω teinō (to stretch); to extend: - cast, put forth, stretch forth (out)."]},{"k":"G1615","v":["ἐκτελέω","ekteleō","ek-tel-eh'-o","From G1537 and G5055; to complete fully: - finish."]},{"k":"G1616","v":["ἐκτένεια","ekteneia","ek-ten'-i-ah","From G1618; intentness: - X instantly."]},{"k":"G1617","v":["ἐκτενέστερον","ektenesteron","ek-ten-es'-ter-on","Neuter of the compound of G1618; more intently: - more earnestly."]},{"k":"G1618","v":["ἐκτενής","ektenēs","ek-ten-ace'","From G1614; intent: - without ceasing, fervent."]},{"k":"G1619","v":["ἐκτενῶς","ektenōs","ek-ten-oce'","Adverb from G1618; intently: - fervently."]},{"k":"G1620","v":["ἐκτίθημι","ektithēmi","ek-tith'-ay-mee","From G1537 and G5087; to expose; figuratively to declare: - cast out, expound."]},{"k":"G1621","v":["ἐκτινάσσω","ektinassō","ek-tin-as'-so","From G1537 and τινάσσω tinassō (to swing); to shake violently: - shake (off)."]},{"k":"G1622","v":["ἐκτός","ektos","ek-tos'","From G1537; the exterior; figuratively (as a preposition) aside from, besides: - but, except (-ed), other than, out of, outside, unless, without."]},{"k":"G1623","v":["ἕκτος","hektos","hek'-tos","Ordinal from G1803; sixth: - sixth."]},{"k":"G1624","v":["ἐκτρέπω","ektrepō","ek-trep'-o","From G1537 and the base of G5157; to deflect, that is, turn away (literally or figuratively): - avoid, turn (aside, out of the way)."]},{"k":"G1625","v":["ἐκτρέφω","ektrephō","ek-tref'-o","From G1537 and G5142; to rear up to maturity, that is, (generally) to cherish or train: - bring up, nourish."]},{"k":"G1626","v":["ἔκτρωμα","ektrōma","ek'-tro-mah","From a compound of G1537 and τιτρώσκω titrōskō (to wound); a miscarriage (abortion), that is, (by analogy) untimely birth: - born out of due time."]},{"k":"G1627","v":["ἐκφέρω","ekpherō","ek-fer'o","From G1537 and G5342; to bear out (literally or figuratively): - bear, bring forth, carry forth (out)."]},{"k":"G1628","v":["ἐκφεύγω","ekpheugō","ek-fyoo'-go","From G1537 and G5343; to flee out: - escape, flee."]},{"k":"G1629","v":["ἐκφοβέω","ekphobeō","ek-fob-eh'-o","From G1537 and G5399; to frighten utterly: - terrify."]},{"k":"G1630","v":["ἔκφοβος","ekphobos","ek'-fob-os","From G1537 and G5401; frightened out of one’s wits: - sore afraid, exceedingly fear."]},{"k":"G1631","v":["ἐκφύω","ekphuō","ek-foo'-o","From G1537 and G5453; to sprout up: - put forth."]},{"k":"G1632","v":["ἐκχέω, ἐκχύνω","ekcheō    ekchunō","ek-kheh'-o, ek-khoo'-no","From G1537 and χέω cheō (to pour); to pour forth; figuratively to bestow: - gush (pour) out, run greedily (out), shed (abroad, forth), spill."]},{"k":"G1633","v":["ἐκχωρέω","ekchōreō","ek-kho-reh'-o","From G1537 and G5562; to depart: - depart out."]},{"k":"G1634","v":["ἐκψύχω","ekpsuchō","ek-psoo'-kho","From G1537 and G5594; to expire: - give (yield) up the ghost."]},{"k":"G1635","v":["ἑκών","hekōn","hek-own'","Of uncertain affinity; voluntary: - willingly."]},{"k":"G1636","v":["ἐλαία","elaia","el-ah'-yah","Feminine of a presumed derivative from an obsolete primary; an olive (the tree or the fruit): - olive (berry, tree)."]},{"k":"G1637","v":["ἔλαιον","elaion","el'-ah-yon","Neuter of the same as G1636; olive oil: - oil."]},{"k":"G1638","v":["ἐλαιών","elaiōn","el-ah-yone'","From G1636; an olive orchard, that is, (specifically) the Mount of Olives: - Olivet."]},{"k":"G1639","v":["Ἐλαμίτης","Elamitēs","el-am-ee'-tace","Of Hebrew origin [H5867]; an Elamite or Persian: - Elamite."]},{"k":"G1640","v":["ἐλάσσων, ἐλάττων","elassōn    elattōn","el-as'-sone, el-at'-tone","Compound of the same as G1646; smaller (in size, quantity, age or quality): - less, under, worse, younger."]},{"k":"G1641","v":["ἐλαττονέω","elattoneō","el-at-ton-eh'-o","From G1640; to diminish, that is, fall short: - have lack."]},{"k":"G1642","v":["ἐλαττόω","elattoō","el-at-to'-o","From G1640; to lessen (in rank or influence): - decrease, make lower."]},{"k":"G1643","v":["ἐλαύνω","elaunō","el-ow'-no","A prolonged form of a primary verb (obsolete except in certain tenses as an alternate of this) of uncertain affinity; to push (as wind, oars or daemoniacal power): - carry, drive, row."]},{"k":"G1644","v":["ἐλαφρία","elaphria","el-af-ree'-ah","From G1645; levity (figuratively), that is, fickleness: - lightness."]},{"k":"G1645","v":["ἐλαφρός","elaphros","el-af-ros'","Probably akin to G1643 and the base of G1640; light, that is, easy: - light."]},{"k":"G1646","v":["ἐλάχιστος","elachistos","el-akh'-is-tos","The superlative of ἔλαχυς elachus (short); used as equivalent to G3398; least (in size, amount, dignity, etc.): - least, very little (small), smallest."]},{"k":"G1647","v":["ἐλαχιστότερος","elachistoteros","el-akh-is-tot'-er-os","Compound of G1646; far less: - less than the least."]},{"k":"G1648","v":["Ἐλεάζαρ","Eleazar","el-eh-ad'-zar","Of Hebrew origin [H499]; Eleazar, an Israelite: - Eleazar."]},{"k":"G1649","v":["ἔλεγξις","elegxis","el'-eng-xis","From G1651; refutation, that is, reproof: - rebuke."]},{"k":"G1650","v":["ἔλεγχος","elegchos","el'-eng-khos","From G1651; proof, conviction: - evidence, reproof."]},{"k":"G1651","v":["ἐλέγχω","elegchō","el-eng'-kho","Of uncertain affinity; to confute, admonish: - convict, convince, tell a fault, rebuke, reprove."]},{"k":"G1652","v":["ἐλεεινός","eleeinos","el-eh-i-nos'","From G1656; pitiable: - miserable."]},{"k":"G1653","v":["ἐλεέω","eleeō","el-eh-eh'-o","From G1656; to compassionate (by word or deed, specifically by divine grace): - have compassion (pity on), have (obtain, receive, shew) mercy (on)."]},{"k":"G1654","v":["ἐλεημοσύνη","eleēmosunē","el-eh-ay-mos-oo'-nay","From G1656; compassionateness, that is, (as exercised towards the poor) beneficence, or (concretely) a benefaction: - alms (-deeds)."]},{"k":"G1655","v":["ἐλεήμων","eleēmōn","el-eh-ay'-mone","From G1653; compassionate (actively): - merciful."]},{"k":"G1656","v":["ἔλεος","eleos","el'-eh-os","Of uncertain affinity; compassion (human or divine, especially active): - (+ tender) mercy."]},{"k":"G1657","v":["ἐλευθερία","eleutheria","el-yoo-ther-ee'-ah","From G1658; freedom (legitimate or licentious, chiefly moral or ceremonial): - liberty."]},{"k":"G1658","v":["ἐλεύθερος","eleutheros","el-yoo'-ther-os","Probably from the alternate of G2064; unrestrained (to go at pleasure), that is, (as a citizen) not a slave (whether freeborn or manumitted), or (generally) exempt (from obligation or liability): - free (man, woman), at liberty."]},{"k":"G1659","v":["ἐλευθερόω","eleutheroō","el-yoo-ther-o'-o","From G1658; to liberate, that is, (figuratively) to exempt (from moral, ceremonial or mortal liability): - deliver, make free."]},{"k":"G1660","v":["ἔλευσις","eleusis","el'-yoo-sis","From the alternate of G2064; an advent: - coming."]},{"k":"G1661","v":["ἐλεφάντινος","elephantinos","el-ef-an'-tee-nos","From ἔλεφας elephas (an “elephant”); elephantine, that is, (by implication) composed of ivory: - of ivory."]},{"k":"G1662","v":["Ἐλιακείμ","Eliakeim","el-ee-ak-ime'","Of Hebrew origin [H471]; Eliakim, an Israelite: - Eliakim."]},{"k":"G1663","v":["Ἐλιέζερ","Eliezer","el-ee-ed'-zer","Of Hebrew origin [H461]; Eliezer, an Israelite: - Eliezer."]},{"k":"G1664","v":["Ἐλιούδ","Elioud","el-ee-ood'","Of Hebrew origin ([H410] and [H1935]); God of majesty; Eliud, an Israelite: - Eliud."]},{"k":"G1665","v":["Ἐλισάβετ","Elisabet","el-ee-sab'-et","Of Hebrew origin [H472]; Elisabet, an Israelitess: - Elisabeth."]},{"k":"G1666","v":["Ἐλισσαῖος","Elissaios","el-is-sah'-yos","Of Hebrew origin [H477]; Elissaeus, an Israelite: - Elissus."]},{"k":"G1667","v":["ἑλίσσω","helissō","hel-is'-so","A form of G1507; to coil or wrap: - fold up."]},{"k":"G1668","v":["ἕλκος","helkos","hel'-kos","Probably from G1670; an ulcer (as if drawn together): - sore."]},{"k":"G1669","v":["ἑλκόω","helkoō","hel-ko'-o","From G1668; to cause to ulcerate, that is, (passively) be ulcerous: - full of sores."]},{"k":"G1670","v":["ἑλκύω, ἕλκω","helkuō    helkō","hel-koo'-o, hel'-ko","Probably akin to G138; to drag (literally or figuratively): - draw. Compare G1667."]},{"k":"G1671","v":["Ἑλλάς","Hellas","hel-las'","Of uncertain affinity; Hellas (or Greece), a country of Europe: - Greece."]},{"k":"G1672","v":["Ἕλλην","Hellēn","hel'-lane","From G1671; a Hellen (Grecian) or inhabitant of Hellas; by extension a Greek speaking person, especially a non-Jew: - Gentile, Greek."]},{"k":"G1673","v":["Ἑλληνικός","Hellēnikos","hel-lay-nee-kos'","From G1672; Hellenic, that is, Grecian (in language): - Greek."]},{"k":"G1674","v":["Ἑλληνίς","Hellēnis","hel-lay-nis'","Feminine of G1672; a Grecian (that is, non-Jewish) woman: - Greek."]},{"k":"G1675","v":["Ἑλληνιστής","Hellēnistēs","hel-lay-nis-tace'","From a derivative of G1672; a Hellenist or Greek speaking Jew: - Grecian."]},{"k":"G1676","v":["Ἑλληνιστί","Hellēnisti","hel-lay-nis-tee'","Adverb from the same as G1675; Hellenistically, that is, in the Grecian language: - Greek."]},{"k":"G1677","v":["ἐλλογέω","ellogeō","el-log-eh'-o","From G1722 and G3056 (in the sense of account); to reckon in, that is, attribute: - impute, put on account."]},{"k":"G1678","v":["Ἐλμωδάμ","Elmōdam","el-mo-dam'","Of Hebrew origin (perhaps for [H486]); Elmodam, an Israelite: - Elmodam."]},{"k":"G1679","v":["ἐλπίζω","elpizō","el-pid'-zo","From G1680; to expect or confide: - (have, thing) hope (-d) (for), trust."]},{"k":"G1680","v":["ἐλπίς","elpis","el-pece'","From ἔλπω elpō which is a primary word (to anticipate, usually with pleasure); expectation (abstract or concrete) or confidence: - faith, hope."]},{"k":"G1681","v":["Ἐλύμας","Elumas","el-oo'-mas","Of foreign origin; Elymas, a wizard: - Elymas."]},{"k":"G1682","v":["ἐλοΐ́","elōi","el-o-ee'","Of Chaldee origin ([H426] with pronoun suffix); my God: - Eloi."]},{"k":"G1683","v":["ἐμαυτοῦ, ἐμαυτῷ, ἐμαυτόν","emautou    emautō    emauton","em-ow-too' em-ow-to' em-ow-ton","Genitive, dative and accusative of a compound of G1700 and G846; of myself: - me, mine own (self), myself."]},{"k":"G1684","v":["ἐμβαίνω","embainō","em-ba'hee-no","From G1722 and the base of G939; to walk on, that is, embark (aboard a vessel), reach (a pool): - come (get) into, enter (into), go (up) into, step in, take ship."]},{"k":"G1685","v":["ἐμβάλλω","emballō","em-bal'-lo","From G1722 and G906; to throw on, that is, (figuratively) subject to (eternal punishment): - cast into."]},{"k":"G1686","v":["ἐμβάπτω","embaptō","em-bap'-to","From G1722 and G911; to whelm on, that is, wet (a part of the person, etc.) by contact with a fluid: - dip."]},{"k":"G1687","v":["ἐμβατεύω","embateuō","em-bat-yoo'-o","From G1722 and a presumed derivative of the base of G939; equivalent to G1684; to intrude on (figuratively): - intrude into."]},{"k":"G1688","v":["ἐμβιβάζω","embibazō","em-bib-ad'-zo","From G1722 and βιβάζω bibazō (to mount; causative of G1684); to place on, that is, transfer (aboard a vessel): - put in."]},{"k":"G1689","v":["ἐμβλέπω","emblepō","em-blep'-o","From G1722 and G991; to look on, that is, (relatively) to observe fixedly, or (absolutely) to discern clearly: - behold, gaze up, look upon, (could) see."]},{"k":"G1690","v":["ἐμβριμάομαι","embrimaomai","em-brim-ah'-om-ahee","From G1722 and βριμάομαι brimaomai (to snort with anger); to have indignation on, that is, (transitively) to blame, (intransitively) to sigh with chagrin, (specifically) to sternly enjoin: - straitly charge, groan, murmur against."]},{"k":"G1691","v":["ἐμέ","eme","em-eh'","A prolonged form of G3165; me: - I, me, my (-self)."]},{"k":"G1692","v":["ἐμέω","emeō","em-eh'-o","Of uncertain affinity; to vomit: - (will) spue."]},{"k":"G1693","v":["ἐμμαίνομαι","emmainomai","em-mah'ee-nom-ahee","From G1722 and G3105; to rave on, that is, rage at: - be mad against."]},{"k":"G1694","v":["Ἐμμανουήλ","Emmanouēl","em-man-oo-ale'","Of Hebrew origin [H6005]; God with us; Emmanuel, a name of Christ: - Emmanuel."]},{"k":"G1695","v":["Ἐμμαούς","Emmaous","em-mah-ooce'","Probably of Hebrew origin (compare [H3222]); Emmaus, a place in Palestine: - Emmaus."]},{"k":"G1696","v":["ἐμμένω","emmenō","em-men'-o","From G1722 and G3306; to stay in the same place, that is, (figuratively) to persevere: - continue."]},{"k":"G1697","v":["Ἐμμόρ","Emmor","em-mor'","Of Hebrew origin [H2544]; Emmor (that is, Chamor), a Canaanite: - Emmor."]},{"k":"G1698","v":["ἐμοί","emoi","em-oy'","A prolonged form of G3427; to me: - I, me, mine, my."]},{"k":"G1699","v":["ἐμός","emos","em-os'","From the oblique cases of G1473 (G1698, G1700, G1691); my: - of me, mine (own), my."]},{"k":"G1700","v":["ἐμοῦ","emou","em-oo'","A prolonged form of G3449; of me: - me, mine, my."]},{"k":"G1701","v":["ἐμπαιγμός","empaigmos","emp-aheeg-mos'","From G1702; derision: - mocking."]},{"k":"G1702","v":["ἐμπαίζω","empaizō","emp-aheed'-zo","From G1722 and G3815; to jeer at, that is, deride: - mock."]},{"k":"G1703","v":["ἐμπαίκτης","empaiktēs","emp-aheek-tace'","From G1702; a derider, that is, (by implication) a false teacher: - mocker, scoffer."]},{"k":"G1704","v":["ἐμπεριπατέω","emperipateō","em-per-ee-pat-eh'-o","From G1722 and G4043; to perambulate on a place, that is, (figuratively) to be occupied among persons: - walk in."]},{"k":"G1705","v":["ἐμπίπλημι, ἐμπλήθω","empiplēmi    emplēthō","em-pip'-lay-mee, em-play'-tho","From G1722 and the base of G4118; to fill in (up), that is, (by implication) to satisfy (literally or figuratively): - fill."]},{"k":"G1706","v":["ἐμπίπτω","empiptō","em-pip'-to","From G1722 and G4098; to fall on, that is, (literally) be entrapped by, or (figuratively) be overwhelmed with: - fall among (into)."]},{"k":"G1707","v":["ἐμπλέκω","emplekō","em-plek'-o","From G1722 and G4120; to entwine, that is, (figuratively) involve with: - entangle (in, self with)."]},{"k":"G1708","v":["ἐμπλοκή","emplokē","em-plok-ay'","From G1707; elaborate braiding of the hair: - plaiting."]},{"k":"G1709","v":["ἐμπνέω","empneō","emp-neh'-o","From G1722 and G4154; to inhale, that is, (figuratively) to be animated by (bent upon): - breathe."]},{"k":"G1710","v":["ἐμπορεύομαι","emporeuomai","em-por-yoo'-om-ahee","From G1722 and G4198; to travel in (a country as a pedlar), that is, (by implication) to trade: - buy and sell, make merchandise."]},{"k":"G1711","v":["ἐμπορία","emporia","em-por-ee'-ah","Feminine from G1713; traffic: - merchandise."]},{"k":"G1712","v":["ἐμπόριον","emporion","em-por'-ee-on","Neuter from G1713; a mart (“emporium”): - merchandise."]},{"k":"G1713","v":["ἔμπορος","emporos","em'-por-os","From G1722 and the base of G4198; a (wholesale) tradesman: - merchant."]},{"k":"G1714","v":["ἐμπρήθω","emprēthō","em-pray'-tho","From G1722 and πρήθω prēthō (to blow a flame); to enkindle, that is, set on fire: - burn up."]},{"k":"G1715","v":["ἔμπροσθεν","emprosthen","em'-pros-then","From G1722 and G4314; in front of (in place [literally or figuratively] or time): - against, at, before, (in presence, sight) of."]},{"k":"G1716","v":["ἐμπτύω","emptuō","emp-too'-o","From G1722 and G4429; to spit at or on: - spit (upon)."]},{"k":"G1717","v":["ἐμφανής","emphanēs","em-fan-ace'","From a compound of G1722 and G5316; apparent in self: - manifest, openly."]},{"k":"G1718","v":["ἐμφανίζω","emphanizō","em-fan-id'-zo","From G1717; to exhibit (in person) or disclose (by words): - appear, declare (plainly), inform, (will) manifest, shew, signify."]},{"k":"G1719","v":["ἔμφοβος","emphobos","em'-fob-os","From G1722 and G5401; in fear, that is, alarmed: - affrighted, afraid, tremble."]},{"k":"G1720","v":["ἐμφυσάω","emphusaō","em-foo-sah'-o","From G1722 and φυσάω phusaō (to puff; compare G5453); to blow at or on: - breathe on."]},{"k":"G1721","v":["ἔμφυτος","emphutos","em'-foo-tos","From G1722 and a derivative of G5453; implanted (figuratively): - engrafted."]},{"k":"G1722","v":["ἐν","en","en","A primary preposition denoting (fixed) position (in place, time or state), and (by implication) instrumentality (medially or constructively), that is, a relation of rest (intermediate between G1519 and G1537); “in”, at, (up-) on, by, etc.: - about, after, against, + almost, X altogether, among, X as, at, before, between, (here-) by (+ all means), for (. . . sake of), + give self wholly to, (here-) in (-to, -wardly), X mightily, (because) of, (up-) on, [open-] ly, X outwardly, one, X quickly, X shortly, [speedi-] ly, X that, X there (-in, -on), through (-out), (un-) to(-ward), under, when, where (-with), while, with (-in). Often used in compounds, with substantially the same import; rarely with verbs of motion, and then not to indicate direction, except (elliptically) by a separate (and different) prep."]},{"k":"G1723","v":["ἐναγκαλίζομαι","enagkalizomai","en-ang-kal-id'-zom-ahee","From G1722 and a derivative of G43; to take in one’s arms, that is, embrace: - take up in arms."]},{"k":"G1724","v":["ἐνάλιος","enalios","en-al'-ee-os","From G1722 and G251; in the sea, that is, marine: - thing in the sea."]},{"k":"G1725","v":["ἔναντι","enanti","en'-an-tee","From G1722 and G473; in front (that is, figuratively presence) of: - before."]},{"k":"G1726","v":["ἐναντίον","enantion","en-an-tee'-on","Neuter of G1727; (adverb) in the presence (view) of: - before, in the presence of."]},{"k":"G1727","v":["ἐναντίος","enantios","en-an-tee'-os","From G1725; opposite; figuratively antagonistic: - (over) against, contrary."]},{"k":"G1728","v":["ἐνάρχομαι","enarchomai","en-ar'-khom-ahee","From G1722 and G756; to commence on: - rule [by mistake for G757]."]},{"k":"G1729","v":["ἐνδεής","endeēs","en-deh-ace'","From a compound of G1722 and G1210 (in the sense of lacking); deficient in: - lacking."]},{"k":"G1730","v":["ἔνδειγμα","endeigma","en'-dighe-mah","From G1731; an indication (concretely): - manifest token."]},{"k":"G1731","v":["ἐνδείκνυμι","endeiknumi","en-dike'-noo-mee","From G1722 and G1166; to indicate (by word or act): - do, show (forth)."]},{"k":"G1732","v":["ἔνδειξις","endeixis","en'-dike-sis","From G1731; indication (abstractly): - declare, evident token, proof."]},{"k":"G1733","v":["ἕνδεκα","hendeka","hen'-dek-ah","From (the neuter of) G1520 and G1176; one and ten, that is, eleven: - eleven."]},{"k":"G1734","v":["ἕνδεκατος","hendekatos","hen-dek'-at-os","Ordinal from G1733; eleventh: - eleventh."]},{"k":"G1735","v":["ἐνδέχεται","endechetai","en-dekh'-et-ahee","Third person singular present of a compound of G1722 and G1209; (impersonally) it is accepted in, that is, admitted (possible): - can (+ not) be."]},{"k":"G1736","v":["ἐνδημέω","endēmeō","en-day-meh'-o","From a compound of G1722 and G1218; to be in one’s own country, that is, home (figuratively): - be at home (present)."]},{"k":"G1737","v":["ἐνδιδύσκω","endiduskō","en-did-oos'-ko","A prolonged form of G1746; to invest (with a garment): - clothe in, wear."]},{"k":"G1738","v":["ἐνδικος","endikos","en'-dee-kos","From G1722 and G1349; in the right, that is, equitable: - just."]},{"k":"G1739","v":["ἐνδόμησις","endomēsis","en-dom'-ay-sis","From a compound of G1722 and a derivative of the base of G1218; a housing in (residence), that is, structure: - building."]},{"k":"G1740","v":["ἐνδοξάζω","endoxazō","en-dox-ad'-zo","From G1741; to glorify: - glorify."]},{"k":"G1741","v":["ἔνδοξος","endoxos","en'-dox-os","From G1722 and G1391; in glory, that is, splendid, (figuratively) noble: - glorious, gorgeous [-ly], honourable."]},{"k":"G1742","v":["ἔνδυμα","enduma","en'-doo-mah","From G1746; apparel (especially the outer robe): - clothing, garment, raiment."]},{"k":"G1743","v":["ἐνδυναμόω","endunamoō","en-doo-nam-o'-o","From G1722 and G1412; to empower: - enable, (increase in) strength (-en), be (make) strong."]},{"k":"G1744","v":["ἐνδύνω","endunō","en-doo'-no","From G1722 and G1416; to sink (by implication wrap (compare G1746)) on, that is, (figuratively) sneak: - creep."]},{"k":"G1745","v":["ἔνδυσις","endusis","en'-doo-sis","From G1746; investment with clothing: - putting on."]},{"k":"G1746","v":["ἐνδύω","endýō","en-doo'-o","From G1722 and G1416 (in the sense of sinking into a garment); to invest with clothing (literally or figuratively): - array, clothe (with), endue, have (put) on."]},{"k":"G1747","v":["ἐνέδρα","enedra","en-ed'-rah","Feminine from G1722 and the base of G1476; an ambuscade, that is, (figuratively) murderous purpose: - lay wait. See also G1749."]},{"k":"G1748","v":["ἐνεδρεύω","enedreuō","en-ed-ryoo'-o","From G1747; to lurk, that is, (figuratively) plot assassination: - lay wait for."]},{"k":"G1749","v":["ἔνεδρον","enedron","en'-ed-ron","Neuter of the same as G1747; an ambush, that is, (figuratively) murderous design: - lying in wait."]},{"k":"G1750","v":["ἐνειλέω","eneileō","en-i-leh'-o","From G1722 and the base of G1507; to enwrap: - wrap in."]},{"k":"G1751","v":["ἔνειμι","eneimi","en'-i-mee","From G1722 and G1510; to be within (neuter participle plural): - such things as . . . have. See also G1762."]},{"k":"G1752","v":["ἕνεκα, ἕνεκεν, εἵνεκεν","heneka    heneken    heineken","hen'-ek-ah, hen'-ek-en, hi'-nek-en","Of uncertain affinity; on account of: - because, for (cause, sake), (where-) fore, by reason of, that."]},{"k":"G1753","v":["ἐνέργεια","energeia","en-erg'-i-ah","From G1756; efficiency (“energy”): - operation, strong, (effectual) working."]},{"k":"G1754","v":["ἐνεργέω","energeō","en-erg-eh'-o","From G1756; to be active, efficient: - do, (be) effectual (fervent), be mighty in, shew forth self, work (effectually in)."]},{"k":"G1755","v":["ἐνέργημα","energēma","en-erg'-ay-mah","From G1754; an effect: - operation, working."]},{"k":"G1756","v":["ἐνεργής","energēs","en-er-gace'","From G1722 and G2041; active, operative: - effectual, powerful."]},{"k":"G1757","v":["ἐνευλογέω","eneulogeō","en-yoo-log-eh'-o","From G1722 and G2127; to confer a benefit on: - bless."]},{"k":"G1758","v":["ἐνέχω","enechō","en-ekh'-o","From G1722 and G2192; to hold in or upon, that is, ensnare; by implication to keep a grudge: - entangle with, have a quarrel against, urge."]},{"k":"G1759","v":["ἐνθάδε","enthade","en-thad'-eh","From a prolonged form of G1722; properly within, that is, (of place) here, hither: - (t-) here, hither."]},{"k":"G1760","v":["ἐνθυμέομαι","enthumeomai","en-thoo-meh'-om-ahee","From a compound of G1722 and G2372; to be inspirited, that is, ponder: - think."]},{"k":"G1761","v":["ἐνθύμησις","enthumēsis","en-thoo'-may-sis","From G1760; deliberation: - device, thought."]},{"k":"G1762","v":["ἔνι","eni","en'-ee","Contracted for third person singular present indicative of G1751; impersonally there is in or among: - be, (there) is."]},{"k":"G1763","v":["ἐνιαυτός","eniautos","en-ee-ow-tos'","Prolonged from a primary word ἔνος enos (a year); a year: - year."]},{"k":"G1764","v":["ἐνίστημι","enistēmi","en-is'-tay-mee","From G1722 and G2476; to place on hand, that is, (reflexively) impend, (participle) be instant: - come, be at hand, present."]},{"k":"G1765","v":["ἐνισχύω","enischuō","en-is-khoo'-o","From G1722 and G2480; to invigorate (transitively or reflexively): - strengthen."]},{"k":"G1766","v":["ἔννατος","ennatos","en'-nat-os","Ordinal from G1767; ninth: - ninth."]},{"k":"G1767","v":["ἐννέα","ennea","en-neh'-ah","A primary number; nine: - nine."]},{"k":"G1768","v":["ἐννενηκονταεννέα","ennenēkontaennea","en-nen-ay-kon-tah-en-neh'-ah","From a (tenth) multiple of G1767 and G1767 itself; ninety nine: - ninety and nine."]},{"k":"G1769","v":["ἐννεός","enneos","en-neh-os'","From G1770; dumb (as making signs), that is, silent from astonishment: - speechless."]},{"k":"G1770","v":["ἐννεύω","enneuō","en-nyoo'-o","From G1722 and G3506; to nod at, that is, beckon or communicate by gesture: - make signs."]},{"k":"G1771","v":["ἔννοια","ennoia","en'-noy-ah","From a compound of G1722 and G3563; thoughtfulness, that is, moral understanding: - intent, mind."]},{"k":"G1772","v":["ἔννομος","ennomos","en'-nom-os","From G1722 and G3551; (subjectively) legal, or (objectively) subject to: - lawful, under law."]},{"k":"G1773","v":["ἔννυχον","ennuchon","en'-noo-khon","Neuter of a compound of G1722 and G3571; (adverbially) by night: - before day."]},{"k":"G1774","v":["ἐνοικέω","enoikeō","en-oy-keh'-o","From G1722 and G3611; to inhabit (figuratively): - dwell in."]},{"k":"G1775","v":["ἑνότης","henotēs","hen-ot'-ace","From G1520; oneness, that is, (figuratively) unanimity: - unity."]},{"k":"G1776","v":["ἐνοχλέω","enochleō","en-okh-leh'-o","From G1722 and G3791; to crowd in, that is, (figuratively) to annoy: - trouble."]},{"k":"G1777","v":["ἔνοχος","enochos","en'-okh-os","From G1758; liable to (a condition, penalty or imputation): - in danger of, guilty of, subject to."]},{"k":"G1778","v":["ἔνταλμα","entalma","en'-tal-mah","From G1781; an injunction, that is, religious precept: - commandment."]},{"k":"G1779","v":["ἐνταφιάζω","entaphiazō","en-taf-ee-ad'-zo","From a compound of G1722 and G5028; to inswathe with cerements for interment: - bury."]},{"k":"G1780","v":["ἐνταφιασμός","entaphiasmos","en-taf-ee-as-mos'","From G1779; preparation for interment: - burying."]},{"k":"G1781","v":["ἐντέλλομαι","entellomai","en-tel'-lom-ahee","From G1722 and the base of G5056; to enjoin: - (give) charge, (give) command(-ments), injoin."]},{"k":"G1782","v":["ἐντεύθεν","enteuthen","ent-yoo'-then","From the same as G1759; hence (literally or figuratively); (repeated) on both sides: - (from) hence, on either side."]},{"k":"G1783","v":["ἔντευξις","enteuxis","ent'-yook-sis","From G1793; an interview, that is, (specifically) supplication: - intercession, prayer."]},{"k":"G1784","v":["ἔντιμος","entimos","en'-tee-mos","From G1722 and G5092; valued (figuratively): - dear, more honourable, precious, in reputation."]},{"k":"G1785","v":["ἐντολή","entolē","en-tol-ay'","From G1781; injunction, that is, an authoritative prescription: - commandment, precept."]},{"k":"G1786","v":["ἐντόπιος","entopios","en-top'-ee-os","From G1722 and G5117; a resident: - of that place."]},{"k":"G1787","v":["ἐντός","entos","en-tos'","From G1722; inside (adverb or noun): - within."]},{"k":"G1788","v":["ἐντρέπω","entrepō","en-trep'-o","From G1722 and the base of G5157; to invert, that is, (figuratively and reflexively) in a good sense, to respect; or in a bad one, to confound: - regard, (give) reverence, shame."]},{"k":"G1789","v":["ἐντρέφω","entrephō","en-tref'-o","From G1722 and G5142; (figuratively) to educate: - nourish up in."]},{"k":"G1790","v":["ἔντρομος","entromos","en'-trom-os","From G1722 and G5156; terrified: - X quake, X trembled."]},{"k":"G1791","v":["ἐντροπή","entropē","en-trop-ay'","From G1788; confusion: - shame."]},{"k":"G1792","v":["ἐντρυφάω","entruphaō","en-troo-fah'-o","From G1722 and G5171; to revel in: - sporting selves."]},{"k":"G1793","v":["ἐντυγχάνω","entugchanō","en-toong-khan'-o","From G1722 and G5177; to chance upon, that is, (by implication) confer with; by extension to entreat (in favor or against): - deal with, make intercession."]},{"k":"G1794","v":["ἐντυλίσσω","entulissō","en-too-lis'-so","From G1722 and τυλίσσω tulissō (to twist; probably akin to G1507); to entwine, that is, wind up in: - wrap in (together)."]},{"k":"G1795","v":["ἐντυπόω","entupoō","en-too-po'-o","From G1722 and a derivative of G5179; to enstamp, that is, engrave: - engrave."]},{"k":"G1796","v":["ἐνυβρίζω","enubrizō","en-oo-brid'-zo","From G1722 and G5195; to insult: - do despite unto."]},{"k":"G1797","v":["ἐνυπνιάζομαι","enupniazomai","en-oop-nee-ad'-zom-ahee","Middle voice from G1798; to dream: - dream (-er)."]},{"k":"G1798","v":["ἐνύπνιον","enupnion","en-oop'-nee-on","From G1722 and G5258; something seen in sleep, that is, a dream (vision in a dream): - dream."]},{"k":"G1799","v":["ἐνώπιον","enōpion","en-o'-pee-on","Neuter of a compound of G1722 and a derivation of G3700; in the face of (literally or figuratively): - before, in the presence (sight) of, to."]},{"k":"G1800","v":["Ἐνώς","Enōs","en-oce'","Of Hebrew origin [H583]; Enos (that is, Enosh), a patriarch: - Enos."]},{"k":"G1801","v":["ἐνωτίζομαι","enōtizomai","en-o-tid'-zom-ahee","Middle voice from a compound of G1722 and G3775; to take in one's ear, that is, to listen: - hearken."]},{"k":"G1802","v":["Ἐνώχ","Enōch","en-oke'","Of Hebrew origin [H2585]; Enoch (that is, Chanok), an antediluvian: - Enoch."]},{"k":"G1803","v":["ἕξ","hex","hex","A primary numeral; six: - six."]},{"k":"G1804","v":["ἐξαγγέλλω","exaggellō","ex-ang-el'-lo","From G1537 and the base of G32; to publish, that is, celebrate: - shew forth."]},{"k":"G1805","v":["ἐξαγοράζω","exagorazō","ex-ag-or-ad'-zo","From G1537 and G59; to buy up, that is, ransom; figuratively to rescue from loss (improve opportunity): - redeem."]},{"k":"G1806","v":["ἐξάγω","exagō","ex-ag'-o","From G1537 and G71; to lead forth: - bring forth (out), fetch (lead) out."]},{"k":"G1807","v":["ἐξαιρέω","exaireō","ex-ahee-reh'-o","From G1537 and G138; active voice to tear out; middle voice to select; figuratively to release: - deliver, pluck out, rescue."]},{"k":"G1808","v":["ἐξαίρω","exairō","ex-ah'ee-ro","From G1537 and G142; to remove: - put (take) away."]},{"k":"G1809","v":["ἐξαιτέομαι","exaiteomai","ex-ahee-teh'-om-ahee","Middle voice from G1537 and G154; to demand (for trial): - desire."]},{"k":"G1810","v":["ἐξαίφνης","exaiphnēs","ex-ah'eef-nace","From G1537 and the base of G160; of a sudden (unexpectedly): - suddenly. Compare G1819."]},{"k":"G1811","v":["ἐξακολουθέω","exakoloutheō","ex-ak-ol-oo-theh'-o","From G1537 and G190; to follow out, that is, (figuratively) to imitate, obey, yield to: - follow."]},{"k":"G1812","v":["ἑξακόσιοι","hexakosioi","hex-ak-os'-ee-oy","Plural ordinal from G1803 and G1540; six hundred: - six hundred."]},{"k":"G1813","v":["ἐξαλείφω","exaleiphō","ex-al-i'-fo","From G1537 and G218; to smear out, that is, obliterate (erase tears, figuratively pardon sin): - blot out, wipe away."]},{"k":"G1814","v":["ἐξάλλομαι","exallomai","ex-al'-lom-ahee","From G1537 and G242; to spring forth: - leap up."]},{"k":"G1815","v":["ἐξανάστασις","exanastasis","ex-an-as'-tas-is","From G1817; a rising from death: - resurrection."]},{"k":"G1816","v":["ἐξανατέλλω","exanatellō","ex-an-at-el'-lo","From G1537 and G393; to start up out of the ground, that is, germinate: - spring up."]},{"k":"G1817","v":["ἐξανίστημι","exanistēmi","ex-an-is'-tay-mee","From G1537 and G450; objectively to produce, that is, (figuratively) beget; subjectively to arise, that is, (figuratively) object: - raise (rise) up."]},{"k":"G1818","v":["ἐξαπατάω","exapataō","ex-ap-at-ah'-o","From G1537 and G538; to seduce wholly: - beguile, deceive."]},{"k":"G1819","v":["ἐξάπινα","exapina","ex-ap'-ee-nah","From G1537 and a derivative of the same as G160; of a sudden, that is, unexpectedly: - suddenly. Compare G1810."]},{"k":"G1820","v":["ἐξαπορέομαι","exaporeomai","ex-ap-or-eh'-om-ahee","Middle voice from G1537 and G639; to be utterly at a loss, that is, despond: - (in) despair."]},{"k":"G1821","v":["ἐξαποστέλλω","exapostellō","ex-ap-os-tel'-lo","From G1537 and G649; to send away forth, that is, (on a mission) to despatch, or (peremptorily) to dismiss: - send (away, forth, out)."]},{"k":"G1822","v":["ἐξαρτίζω","exartizō","ex-ar-tid'-zo","From G1537 and a derivative of G739; to finish out (time); figuratively to equip fully (a teacher): - accomplish, thoroughly furnish."]},{"k":"G1823","v":["ἐξαστράπτω","exastraptō","ex-as-trap'-to","From G1537 and G797; to lighten forth, that is, (figuratively) to be radiant (of very white garments): - glistening."]},{"k":"G1824","v":["ἐξαύτης","exautēs","ex-ow'-tace","From G1537 and the genitive singular feminine of G846 (G5610 being understood); from that hour, that is, instantly: - by and by, immediately, presently, straightway."]},{"k":"G1825","v":["ἐξεγείρω","exegeirō","ex-eg-i'-ro","From G1537 and G1453; to rouse fully, that is, (figuratively) to resuscitate (from death), release (from infliction): - raise up."]},{"k":"G1826","v":["ἔξειμι","exeimi","ex'-i-mee","From G1537 and εἶμι eimi (to go); to issue, that is, leave (a place), escape (to the shore): - depart, get [to land], go out."]},{"k":"G1827","v":["ἐξελέγχω","exelegchō","ex-el-eng'-kho","From G1537 and G1651; to convict fully, that is, (by implication) to punish: - convince."]},{"k":"G1828","v":["ἐξέλκω","exelkō","ex-el'-ko","From G1537 and G1670; to drag forth, that is, (figuratively) to entice (to sin): - draw away."]},{"k":"G1829","v":["ἐξέραμα","exerama","ex-er'-am-ah","From a compound of G1537 and a presumed form of ἐραω eraō (to spue); vomit, that is, food disgorged: - vomit."]},{"k":"G1830","v":["ἐξερευνάω","exereunaō","ex-er-yoo-nah'-o","From G1537 and G2045; to explore (figuratively): - search diligently."]},{"k":"G1831","v":["ἐξέρχομαι","exerchomai","ex-er'-khom-ahee","From G1537 and G2064; to issue (literally or figuratively): - come-(forth, out), depart (out of), escape, get out, go (abroad, away, forth, out, thence), proceed (forth), spread abroad."]},{"k":"G1832","v":["ἔξεστι","exesti","ex'-es-tee","Third person singular present indicative of a compound of G1537 and G1510; so also ἐξόν exon; neuter present participle of the same (with or without some form of G1510 expressed); impersonally it is right (through the figurative idea of being out in public): - be lawful, let, X may (-est)."]},{"k":"G1833","v":["ἐξετάζω","exetazō","ex-et-ad'-zo","From G1537 and ἐτάζω etazō (to examine); to test thoroughly (by questions), that is, ascertain or interrogate: - ask, enquire, search."]},{"k":"G1834","v":["ἐξηγέομαι","exēgeomai","ex-ayg-eh'-om-ahee","From G1537 and G2233; to consider out (aloud), that is, rehearse, unfold: - declare, tell."]},{"k":"G1835","v":["ἑξήκοντα","hexēkonta","hex-ay'-kon-tah","The tenth multiple of G1803; sixty: - sixty [-fold], threescore."]},{"k":"G1836","v":["ἑξῆς","hexēs","hex-ace'","From G2192 (in the sense of taking hold of, that is, adjoining); successive: - after, following, X morrow, next."]},{"k":"G1837","v":["ἐξηχέομαι","exēcheomai","ex-ah-kheh'-om-ahee","Middle voice from G1537 and G2278; to “echo” forth, that is, resound (be generally reported): - sound forth."]},{"k":"G1838","v":["ἕξις","hexis","hex'-is","From G2192; habit, that is, (by implication) practice: - use."]},{"k":"G1839","v":["ἐξίστημι","existēmi","ex-is'-tay-mee","From G1537 and G2476; to put (stand) out of wits, that is, astound, or (reflexively) become astounded, insane: - amaze, be (make) astonished, be beside self (selves), bewitch, wonder."]},{"k":"G1840","v":["ἐξισχύω","exischuō","ex-is-khoo'-o","From G1537 and G2480; to have full strength, that is, be entirely competent: - be able."]},{"k":"G1841","v":["ἔξοδος","exodos","ex'-od-os","From G1537 and G3598; an exit, that is, (figuratively) death: - decease, departing."]},{"k":"G1842","v":["ἐξολοθρεύω","exolothreuō","ex-ol-oth-ryoo'-o","From G1537 and G3645; to extirpate: - destroy."]},{"k":"G1843","v":["ἐξομολογέω","exomologeō","ex-om-ol-og-eh'-o","From G1537 and G3670; to acknowledge or (by implication of assent) agree fully: - confess, profess, promise."]},{"k":"G1844","v":["ἐξορκίζω","exorkizō","ex-or-kid'-zo","From G1537 and G3726; to exact an oath, that is, conjure: - adjure."]},{"k":"G1845","v":["ἐξορκιστής","exorkistēs","ex-or-kis-tace'","From G1844; one that binds by an oath (or spell), that is, (by implication) an “exorcist” (conjurer): - exorcist."]},{"k":"G1846","v":["ἐξορύσσω","exorussō","ex-or-oos'-so","From G1537 and G3736; to dig out, that is, (by extension) to extract (an eye), remove (a roofing): - break up, pluck out."]},{"k":"G1847","v":["ἐξουδενόω","exoudenoō","ex-oo-den-o'-o","From G1537 and a derivative of the neuter of G3762; to make utterly nothing of, that is, despise: - set at nought. See also G1848."]},{"k":"G1848","v":["ἐξουθενέω","exoutheneō","ex-oo-then-eh'-o","A variation of G1847 and meaning the same: - contemptible, despise, least esteemed, set at nought."]},{"k":"G1849","v":["ἐξουσία","exousia","ex-oo-see'-ah","From G1832 (in the sense of ability); privilege, that is, (subjectively) force, capacity, competency, freedom, or (objectively) mastery (concretely magistrate, superhuman, potentate, token of control), delegated influence: - authority, jurisdiction, liberty, power, right, strength."]},{"k":"G1850","v":["ἐξουσιάζω","exousiazō","ex-oo-see-ad'-zo","From G1849; to control: - exercise authority upon, bring under the (have) power of."]},{"k":"G1851","v":["ἐξοχή","exochē","ex-okh-ay'","From a compound of G1537 and G2192 (meaning to stand out); prominence (figuratively): - principal."]},{"k":"G1852","v":["ἐξυπνίζω","exupnizō","ex-oop-nid'-zo","From G1853; to waken: - awake out of sleep."]},{"k":"G1853","v":["ἔζυπνος","exupnos","ex'-oop-nos","From G1537 and G5258; awake: - X out of sleep."]},{"k":"G1854","v":["ἔξω","exō","ex'-o","Adverb from G1537; out (side, of doors), literally or figuratively: - away, forth, (with-) out (of, -ward), strange."]},{"k":"G1855","v":["ἔξωθεν","exōthen","ex'-o-then","From G1854; external (-ly): - out (-side, -ward, -wardly), (from) without."]},{"k":"G1856","v":["ἐξωθέω, ἐξώθω","exōtheō    exōthō","ex-o-theh'-o, ex-o'-tho","From G1537 and ὠθέω ōtheō (to push); to expel; by implication to propel: - drive out, thrust in."]},{"k":"G1857","v":["ἐξώτερος","exōteros","ex-o'-ter-os","Compound of G1854; exterior: - outer."]},{"k":"G1858","v":["ἑορτάζω","heortazō","heh-or-tad'-zo","From G1859; to observe a festival: - keep the feast."]},{"k":"G1859","v":["ἑορτή","heortē","heh-or-tay'","Of uncertain affinity; a festival: - feast, holyday."]},{"k":"G1860","v":["ἐπαγγελία","epaggelia","ep-ang-el-ee'-ah","From G1861; an announcement (for information, assent or pledge; especially a divine assurance of good): - message, promise."]},{"k":"G1861","v":["ἐπαγγέλλω","epaggellō","ep-ang-el'-lo","From G1909 and the base of G32; to announce upon (reflexively), that is, (by implication) to engage to do something, to assert something respecting oneself: - profess, (make) promise."]},{"k":"G1862","v":["ἐπάγγελμα","epaggelma","ep-ang'-el-mah","From G1861; a self committal (by assurance of conferring some good): - promise."]},{"k":"G1863","v":["ἐπάγω","epagō","ep-ag'-o","From G1909 and G71; to superinduce, that is, inflict (an evil), charge (a crime): - bring upon."]},{"k":"G1864","v":["ἐπαγωνίζομαι","epagōnizomai","ep-ag-o-nid'-zom-ahee","From G1909 and G75; to struggle for: - earnestly contend for."]},{"k":"G1865","v":["ἐπαθροίζω","epathroizō","ep-ath-roid'-zo","From G1909 and ἀθροίζω athroizō (to assemble); to accumulate: - gather thick together."]},{"k":"G1866","v":["Ἐπαίνετος","Epainetos","ep-a'hee-net-os","From G1867; praised; Epaenetus, a Christian: - Epenetus."]},{"k":"G1867","v":["ἐπαινέω","epaineō","ep-ahee-neh'-o","From G1909 and G134; to applaud: - commend, laud, praise."]},{"k":"G1868","v":["ἔπαινος","epainos","ep'-ahee-nos","From G1909 and the base of G134; laudation; concretely a commendable thing: - praise."]},{"k":"G1869","v":["ἐπαίρω","epairō","ep-ahee'-ro","From G1909 and G142; to raise up (literally or figuratively): - exalt self, poise (lift, take) up."]},{"k":"G1870","v":["ἐπαισχύνομαι","epaischunomai","ep-ahee-skhoo'-nom-ahee","From G1909 and G153; to feel shame for something: - be ashamed."]},{"k":"G1871","v":["ἐπαιτέω","epaiteō","ep-ahee-teh'-o","From G1909 and G154; to ask for: - beg."]},{"k":"G1872","v":["ἐπακολουθέω","epakoloutheō","ep-ak-ol-oo-theh'-o","From G1909 and G190; to accompany: - follow (after)."]},{"k":"G1873","v":["ἐπακούω","epakouō","ep-ak-oo'-o","From G1909 and G191; to hearken (favorably) to: - hear."]},{"k":"G1874","v":["ἐπακροάομαι","epakroaomai","ep-ak-ro-ah'-om-ahee","From G1909 and the base of G202; to listen (intently) to: - hear."]},{"k":"G1875","v":["ἐπάν","epan","ep-an'","From G1909 and G302; a particle of indefinite contemporaneousnes; whenever, as soon as: - when."]},{"k":"G1876","v":["ἐπάναγκες","epanagkes","ep-an'-ang-kes","Neuter of a presumed compound of G1909 and G318; (adverb) on necessity, that is, necessarily: - necessary."]},{"k":"G1877","v":["επανάγω","epanagō","ep-an-ag'-o","From G1909 and G321; to lead up on, that is, (technically) to put out (to sea); (intransitively) to return: - launch (thrust) out, return."]},{"k":"G1878","v":["ἐπαναμιμνήσκω","epanamimnēskō","ep-an-ah-mim-nace'-ko","From G1909 and G363; to remind of: - put in mind."]},{"k":"G1879","v":["ἐπαναπαύομαι","epanapauomai","ep-an-ah-pow'-om-ahee","Middle voice from G1909 and G373; to settle on; literally (remain) or figuratively (rely): - rest in (upon)."]},{"k":"G1880","v":["ἐπανέρχομαι","epanerchomai","ep-an-er'-khom-ahee","From G1909 and G424; to come up on, that is, return: - come again, return."]},{"k":"G1881","v":["ἐπανίσταμαι","epanistamai","ep-an-is'-tam-ahee","Middle voice from G1909 and G450; to stand up on, that is, (figuratively) to attack: - rise up against."]},{"k":"G1882","v":["ἐπανόρθωσις","epanorthōsis","ep-an-or'-tho-sis","From a compound of G1909 and G461; a straightening up again, that is, (figuratively) rectification (reformation): - correction."]},{"k":"G1883","v":["ἐπάνω","epanō","ep-an'-o","From G1909 and G507; up above, that is, over or on (of place, amount, rank, etc.): - above, more than, (up-) on, over."]},{"k":"G1884","v":["ἐπαρκέω","eparkeō","ep-ar-keh'-o","From G1909 and G714; to avail for, that is, help: - relieve."]},{"k":"G1885","v":["ἐπαρχία","eparchia","ep-ar-khee'-ah","From a compound of G1909 and G757 (meaning a governor of a district, “eparch”); a special region of government, that is, a Roman praefecture: - province."]},{"k":"G1886","v":["ἔπαυλις","epaulis","ep'-ow-lis","From G1909 and an equivalent of G833; a hut over the head, that is, a dwelling."]},{"k":"G1887","v":["ἐπαύριον","epaurion","ep-ow'-ree-on","From G1909 and G839; occuring on the succeeding day, that is, (G2250 being implied) tomorrow: - day following, morrow, next day (after)."]},{"k":"G1888","v":["ἐπαυτοφώρῳ","epautophōrō","ep-ow-tof-o'-ro","From G1909 and G846 and (the dative singular of) a derivative of φώρ phōr (a thief); in theft itself, that is, (by analogy) in actual crime: - in the very act."]},{"k":"G1889","v":["Ἐπαφρᾶς","Epaphras","ep-af-ras'","Contracted from G1891; Epaphras, a Christian: - Epaphras."]},{"k":"G1890","v":["ἐπαφρίζω","epaphrizō","ep-af-rid'-zo","From G1909 and G875; to foam upon, that is, (figuratively) to exhibit (a vile passion): - foam out."]},{"k":"G1891","v":["Ἐπαφρόδιτος","Epaphroditos","ep-af-rod'-ee-tos","From G1909 (in the sense of devoted to) and Ἀφροδίτη Aphroditē (Venus); Epaphroditus, a Christian: - Epaphroditus. Compare G1889."]},{"k":"G1892","v":["ἐπεγείρω","epegeirō","ep-eg-i'-ro","From G1909 and G1453; to rouse upon, that is, (figuratively) to excite against: - raise, stir up."]},{"k":"G1893","v":["ἐπεί","epei","ep-i'","From G1909 and G1487; there upon, that is, since (of time or cause): - because, else, for that (then, -asmuch as), otherwise, seeing that, since, when."]},{"k":"G1894","v":["ἐπειδή","epeidē","ep-i-day'","From G1893 and G1211; since now, that is, (of time) when, or (of cause) whereas: - after that, because, for, (that, -asmuch as), seeing, since."]},{"k":"G1895","v":["ἐπειδήπερ","epeidēper","ep-i-day'-per","From G1894 and G4007; since indeed (of cause): - forasmuch."]},{"k":"G1896","v":["ἐπεῖδον","epeidon","ep-i'-don","From G1909 and G1492; to regard (favorably or otherwise): - behold, look upon."]},{"k":"G1897","v":["ἐπείπερ","epeiper","ep-i'-per","From G1893 and G4007; since indeed (of cause): - seeing."]},{"k":"G1898","v":["ἐπεισαγωγή","epeisagōgē","ep-ice-ag-o-gay'","From a compound of G1909 and G1521; a superintroduction: - bringing in."]},{"k":"G1899","v":["ἔπειτα","epeita","ep'-i-tah","From G1909 nad G1534; thereafter: - after that (-ward), then."]},{"k":"G1900","v":["ἐπέκεινα","epekeina","ep-ek'-i-nah","From G1909 and (the accusative plural neuter of) G1565; upon those parts of, that is, on the further side of: - beyond."]},{"k":"G1901","v":["ἐπεκτείνομαι","epekteinomai","ep-ek-ti'-nom-ahee","Middle voice from G1909 and G1614; to stretch (oneself) forward upon: - reach forth."]},{"k":"G1902","v":["ἐπενδύομαι","ependuomai","ep-en-doo'-om-ahee","Middle voice from G1909 and G1746; to invest upon oneself: - be clothed upon."]},{"k":"G1903","v":["ἐπενδύτης","ependutēs","ep-en-doo'-tace","From G1902; a wrapper, that is, outer garment: - fisher’s coat."]},{"k":"G1904","v":["ἐπέρχομαι","eperchomai","ep-er'-khom-ahee","From G1909 and G2064; to supervene, that is, arrive, occur, impend, attack, (figuratively) influence: - come (in, upon)."]},{"k":"G1905","v":["ἐπερωτάω","eperōtaō","ep-er-o-tah'-o","From G1909 and G2065; to ask for, that is, inquire, seek: - ask (after, questions), demand, desire, question."]},{"k":"G1906","v":["ἐπερώτημα","eperōtēma","ep-er-o'-tay-mah","From G1905; an inquiry: - answer."]},{"k":"G1907","v":["ἐπέχω","epechō","ep-ekh'-o","From G1909 and G2192; to hold upon, that is, (by implication) to retain; (by extension) to detain; (with implication of G3563) to pay attention to: - give (take) heed unto, hold forth, mark, stay."]},{"k":"G1908","v":["ἐπηρεάζω","epēreazō","ep-ay-reh-ad'-zo","From a compound of G1909 and (probably) ἀρειά areia (threats); to insult, slander: - use despitefully, falsely accuse."]},{"k":"G1909","v":["ἐπί","epi","ep-ee'","A primary preposition properly meaning superimposition (of time, place, order, etc.), as a relation of distribution [with the genitive case], that is, over, upon, etc.; of rest (with the dative case) at, on, etc.; of direction (with the accusative case) towards, upon, etc.: - about (the times), above, after, against, among, as long as (touching), at, beside, X have charge of, (be-, [where-]) fore, in (a place, as much as, the time of, -to), (because) of, (up-) on (behalf of) over, (by, for) the space of, through (-out), (un-) to (-ward), with. In compounds it retains essentially the same import, at, upon, etc. (literally or figuratively)."]},{"k":"G1910","v":["ἐπιβαίνω","epibainō","ep-ee-bah'ee-no","From G1909 and the base of G939; to walk upon, that is, mount, ascend, embark, arrive: - come (into), enter into, go aboard, sit upon, take ship."]},{"k":"G1911","v":["ἐπιβάλλω","epiballō","ep-ee-bal'-lo","From G1909 and G906; to throw upon (literally or figuratively, transitively or reflexively; usually with more or less force); specifically (with G1438 implied) to reflect; impersonally to belong to: - beat into, cast (up-), on, fall, lay (on), put (unto), stretch forth, think on."]},{"k":"G1912","v":["ἐπιβαρέω","epibareō","ep-ee-bar-eh'-o","From G1909 and G916; to be heavy upon, that is, (pecuniarily) to be expensive to; figuratively to be severe towards: - be chargeable to, overcharge."]},{"k":"G1913","v":["ἐπιβιβάζω","epibibazō","ep-ee-bee-bad'-zo","From G1909 and a reduplicated derivation of the base of G939 (compare G307); to cause to mount (an animal): - set on."]},{"k":"G1914","v":["ἐπιβλέπω","epiblepō","ep-ee-blep'-o","From G1909 and G991; to gaze at (with favor, pity or partiality): - look upon, regard, have respect to."]},{"k":"G1915","v":["ἐπίβλημα","epiblēma","ep-ib'-lay-mah","From G1911; a patch: - piece."]},{"k":"G1916","v":["ἐπιβοάω","epiboaō","ep-ee-bo-ah'-o","From G1909 and G994; to exclaim against: - cry."]},{"k":"G1917","v":["ἐπιβουλή","epiboulē","ep-ee-boo-lay'","From a presumed compound of G1909 and G1014; a plan against someone, that is, a plot: - laying (lying) in wait."]},{"k":"G1918","v":["ἐπιγαμβρεύω","epigambreuō","ep-ee-gam-bryoo'-o","From G1909 and a derivative of G1062; to form affinity with, that is, (specifically) in a levirate way: - marry."]},{"k":"G1919","v":["ἐπίγειος","epigeios","ep-ig'-i-os","From G1909 and G1093; worldly (physically or morally): - earthly, in earth, terrestrial."]},{"k":"G1920","v":["ἐπιγίνομαι","epiginomai","ep-ig-in'-om-ahee","From G1909 and G1096; to arrive upon, that is, spring up (as a wind): - blow."]},{"k":"G1921","v":["ἐπιγινώσκω","epiginōskō","ep-ig-in-oce'-ko","From G1909 and G1097; to know upon some mark, that is, recognise; by implication to become fully acquainted with, to acknowledge: - (ac-, have, take) know (-ledge, well), perceive."]},{"k":"G1922","v":["ἐπίγνωσις","epignōsis","ip-ig'-no-sis","From G1921; recognition, that is, (by implication) full discernment, acknowledgement: - (ac-) knowledge (-ing, -ment)."]},{"k":"G1923","v":["ἐπιγραφή","epigraphē","ep-ig-raf-ay'","From G1924; an inscription: - superscription."]},{"k":"G1924","v":["ἐπιγράφω","epigraphō","ep-ee-graf'-o","From G1909 and G1125; to inscribe (physically or mentally): - inscription, write in (over, thereon)."]},{"k":"G1925","v":["ἐπιδείκνυμι","epideiknumi","ep-ee-dike'-noo-mee","From G1909 and G1166; to exhibit (physically or mentally): - shew."]},{"k":"G1926","v":["ἐπιδέχομαι","epidechomai","ep-ee-dekh'-om-ahee","From G1909 and G1209; to admit (as a guest or [figuratively] teacher): - receive."]},{"k":"G1927","v":["ἐπιδημέω","epidēmeō","ep-ee-day-meh'-o","From a compound of G1909 and G1218; to make oneself at home, that is, (by extension) to reside (in a foreign country): - [be] dwelling (which were) there, stranger."]},{"k":"G1928","v":["ἐπιδιατάσσομαι","epidiatassomai","ep-ee-dee-ah-tas'-som-ahee","Middle voice from G1909 and G1299; to appoint besides, that is, supplement (as a codicil): - add to."]},{"k":"G1929","v":["ἐπιδίδωμι","epididōmi","ep-ee-did'-o-mee","From G1909 and G1325; to give over (by hand or surrender): - deliver unto, give, let (+ [her drive]), offer."]},{"k":"G1930","v":["ἐπιδιορθόω","epidiorthoō","ep-ee-dee-or-tho'-o","From G1909 and a derivative of G3717; to straighten further, that is, (figuratively) arrange additionally: - set in order."]},{"k":"G1931","v":["ἐπιδύω","epiduō","ep-ee-doo'-o","From G1909 and G1416; to set fully (as the sun): - go down."]},{"k":"G1932","v":["ἐπιείκεια","epieikeia","ep-ee-i'-ki-ah","From G1933; suitableness, that is, (by implication) equity, mildness: - clemency, gentleness."]},{"k":"G1933","v":["ἐπιεικής","epieikēs","ep-ee-i-kace'","From G1909 and G1503; appropriate, that is, (by implication) mild: - gentle, moderation, patient."]},{"k":"G1934","v":["ἐπιζητέω","epizēteō","ep-eed'-zay-teh'-o","From G1909 and G2212; to search (inquire) for; intensively to demand, to crave: - desire, enquire, seek (after, for)."]},{"k":"G1935","v":["ἐπιθανάτιος","epithanatios","ep-ee-than-at'-ee-os","From G1909 and G2288; doomed to death: - appointed to death."]},{"k":"G1936","v":["ἐπίθεσις","epithesis","ep-ith'-es-is","From G2007; an imposition (of hands officially): - laying (putting) on."]},{"k":"G1937","v":["ἐπιθυμέω","epithumeō","ep-ee-thoo-meh'-o","From G1909 and G2372; to set the heart upon, that is, long for (rightfully or otherwise): - covet, desire, would fain, lust (after)."]},{"k":"G1938","v":["ἐπιθυμητής","epithumētēs","ep-ee-thoo-may-tace'","From G1937; a craver: - + lust after."]},{"k":"G1939","v":["ἐπιθυμία","epithumia","ep-ee-thoo-mee'-ah","From G1937; a longing (especially for what is forbidden): - concupiscence, desire, lust (after)."]},{"k":"G1940","v":["ἐπικαθίζω","epikathizō","ep-ee-kath-id'-zo","From G1909 and G2523; to seat upon: - set on."]},{"k":"G1941","v":["ἐπικαλέομαι","epikaleomai","ep-ee-kal-eh'-om-ahee","Middle voice from G1909 and G2564; to entitle; by implication to invoke (for aid, worship, testimony, decision, etc.): - appeal (unto), call (on, upon), surname."]},{"k":"G1942","v":["ἐπικάλυμα","epikaluma","ep-ee-kal'-oo-mah","From G1943; a covering, that is, (figuratively) pretext: - cloke."]},{"k":"G1943","v":["ἐπικαλύπτω","epikaluptō","ep-ee-kal-oop'-to","From G1909 and G2572; to conceal, that is, (figuratively) forgive: - cover."]},{"k":"G1944","v":["ἐπικατάρατος","epikataratos","ep-ee-kat-ar'-at-os","From G1909 and a derivative of G2672; imprecated, that is, execrable: - accursed."]},{"k":"G1945","v":["ἐπίκειμαι","epikeimai","ep-ik'-i-mahee","From G1909 and G2749; to rest upon (literally or figuratively): - impose, be instant, (be) laid (there-, up-) on, (when) lay (on), lie (on), press upon."]},{"k":"G1946","v":["Ἐπικούρειος","Epikoureios","ep-ee-koo'-ri-os","From Ἐπίκουρος Epikouros (compare G1947; a noted philosopher); an Epicurean or follower of Epicurus: - Epicurean."]},{"k":"G1947","v":["ἐπικουρία","epikouria","ep-ee-koo-ree'-ah","From a compound of G1909 and a (prolonged) form of the base of G2877 (in the sense of servant); assistance: - help."]},{"k":"G1948","v":["ἐπικρίνω","epikrinō","ep-ee-kree'-no","From G1909 and G2919; to adjudge: - give sentence."]},{"k":"G1949","v":["ἐπιλαμβάνομαι","epilambanomai","ep-ee-lam-ban'-om-ahee","Middle voice from G1909 and G2983; to seize (for help, injury, attainment or any other purpose; literally or figuratively): - catch, lay hold (up-) on, take (by, hold of, on)."]},{"k":"G1950","v":["ἐπιλανθάνομαι","epilanthanomai","ep-ee-lan-than'-om-ahee","Middle voice from G1909 and G2990; to lose out of mind; by implication to neglect: - (be) forget (-ful of)."]},{"k":"G1951","v":["ἐπιλέγομαι","epilegomai","ep-ee-leg'-om-ahee","Middle voice from G1909 and G3004; to surname, select: - call, choose."]},{"k":"G1952","v":["ἐπιλείπω","epileipō","ep-ee-li'-po","From G1909 and G3007; to leave upon, that is, (figuratively) to be insufficient for: - fall."]},{"k":"G1953","v":["ἐπιλησμονή","epilēsmonē","ep-ee-lace-mon-ay'","From a derivative of G1950; negligence: - X forgetful."]},{"k":"G1954","v":["ἐπίλοιπος","epiloipos","ep-il'-oy-pos","From G1909 and G3062; left over, that is, remaining: - rest."]},{"k":"G1955","v":["ἐπίλυσις","epilusis","ep-il'-oo-sis","From G1956; explanation, that is, application: - interpretation."]},{"k":"G1956","v":["ἐπιλύω","epiluō","ep-ee-loo'-o","From G1909 and G3089; to solve further, that is, (figuratively) to explain, decide: - determine, expound."]},{"k":"G1957","v":["ἐπιμαρτυρέω","epimartureō","ep-ee-mar-too-reh'-o","From G1909 and G3140; to attest further, that is, corroborate: - testify."]},{"k":"G1958","v":["ἐπιμέλεια","epimeleia","ep-ee-mel'-i-ah","From G1959; carefulness, that is, kind attention (hospitality): - + refresh self."]},{"k":"G1959","v":["ἐπιμελέομαι","epimeleomai","ep-ee-mel-eh'-om-ahee","Middle voice from G1909 and the same as G3199; to care for (physically or otherwise): - take care of."]},{"k":"G1960","v":["ἐπιμελῶς","epimelōs","ep-ee-mel-oce'","Adverb from a derivative of G1959; carefully: - diligently."]},{"k":"G1961","v":["ἐπιμένω","epimenō","ep-ee-men'-o","From G1909 and G3306; to stay over, that is, remain (figuratively persevere): - abide (in), continue (in), tarry."]},{"k":"G1962","v":["ἐπινεύω","epineuō","ep-een-yoo'-o","From G1909 and G3506; to nod at, that is, (by implication) to assent: - consent."]},{"k":"G1963","v":["ἐπίνοια","epinoia","ep-in'-oy-ah","From G1909 and G3563; attention of the mind, that is, (by implication) purpose: - thought."]},{"k":"G1964","v":["ἐπιορκέω","epiorkeō","ep-ee-or-keh'-o","From G1965; to commit perjury: - forswear self."]},{"k":"G1965","v":["ἐπίορκος","epiorkos","ep-ee'-or-kos","From G1909 and G3727; on oath, that is, (falsely) a forswearer: - perjured person."]},{"k":"G1966","v":["ἐπιοῦσα","epiousa","ep-ee-oo'-sah","Feminine singular participle of a compound of G1909 and εἷμι heimi (to go); supervening, that is, (G2250 or G3571 being expressed or implied) the ensuing day or night: - following, next."]},{"k":"G1967","v":["ἐπιούσιος","epiousios","ep-ee-oo'-see-os","Perhaps from the same as G1966; to-morrow's; but more probably from G1909 and a derivative of the present participle feminine of G1510; for subsistence, that is, needful: - daily."]},{"k":"G1968","v":["ἐπιπίπτω","epipiptō","ep-ee-pip'-to","From G1909 and G4098; to embrace (with affection) or seize (with more or less violence; literally or figuratively): - fall into (on, upon), lie on, press upon."]},{"k":"G1969","v":["ἐπιπλήσσω","epiplēssō","ep-ee-place'-so","From G1909 and G4141; to chastise, that is, (with words) to upbraid: - rebuke."]},{"k":"G1970","v":["ἐπιπνίγω","epipnigō","ep-ee-pnee'-go","From G1909 and G4155; to throttle upon, that is, (figuratively) overgrow: - choke."]},{"k":"G1971","v":["ἐπιποθέω","epipotheō","ep-ee-poth-eh'-o","From G1909 and ποθέω potheō (to yearn); to dote upon, that is, intensely crave possession (lawfully or wrongfully): - (earnestly) desire (greatly), (greatly) long (after), lust."]},{"k":"G1972","v":["ἐπιπόθησις","epipothēsis","ep-ee-poth'-ay-sis","From G1971; a longing for: - earnest (vehement) desire."]},{"k":"G1973","v":["ἐπιπόθητος","epipothētos","ep-ee-poth'-ay-tos","From G1909 and a derivative of the latter part of G1971; yearned upon, that is, greatly loved: - longed for."]},{"k":"G1974","v":["ἐπιποθία","epipothia","ep-ee-poth-ee'-ah","From G1971; intense longing: - great desire."]},{"k":"G1975","v":["ἐπιπορεύομαι","epiporeuomai","ep-ee-por-yoo'-om-ahee","From G1909 and G4198; to journey further, that is, travel on (reach): - come."]},{"k":"G1976","v":["ἐπιῤῥάπτω","epirrhaptō","ep-ir-hrap'-to","From G1909 and the base of G4476; to stitch upon, that is, fasten with the needle: - sew on."]},{"k":"G1977","v":["ἐπιῤῥίπτω","epirrhiptō","ep-ir-hrip'-to","From G1909 and G4496; to throw upon (literally or figuratively): - cast upon."]},{"k":"G1978","v":["ἐπίσημος","episēmos","ep-is'-ay-mos","From G1909 and some form of the base of G4591; remarkable, that is, (figuratively) eminent: - notable, of note."]},{"k":"G1979","v":["ἐπισιτισμός","episitismos","ep-ee-sit-is-mos'","From a compound of G1909 and a derivative of G4621; a provisioning, that is, (concretely) food: - victuals."]},{"k":"G1980","v":["ἐπισκέπτομαι","episkeptomai","ep-ee-skep'-tom-ahee;","Middle voice from G1909 and the base of G4649; to inspect, that is, (by implication) to select; by extension to go to see, relieve: - look out, visit."]},{"k":"G1981","v":["ἐπισκηνόω","episkēnoō","ep-ee-skay-no'-o","From G1909 and G4637; to tent upon, that is, (figuratively) abide with: - rest upon."]},{"k":"G1982","v":["ἐπισκιάζω","episkiazō","ep-ee-skee-ad'-zo","From G1909 and a derivative of G4639; to cast a shade upon, that is, (by analogy) to envelop in a haze of brilliancy; figuratively to invest with preternatural influence: - overshadow."]},{"k":"G1983","v":["ἐπισκοπέω","episkopeō","ep-ee-skop-eh'-o","From G1909 and G4648; to oversee; by implication to beware: - look diligently, take the oversight."]},{"k":"G1984","v":["ἐπισκοπή","episkopē","ep-is-kop-ay'","From G1980; inspection (for relief); by implication superintendence; specifically the Christian “episcopate”: - the office of a “bishop”, bishoprick, visitation."]},{"k":"G1985","v":["ἐπίσκοπος","episkopos","ep-is'-kop-os","From G1909 and G4649 (in the sense of G1983); a superintendent, that is, Christian officer in general charge of a (or the) church (literally or figuratively): - bishop, overseer."]},{"k":"G1986","v":["ἐπισπάομαι","epispaomai","ep-ee-spah'-om-ahee","From G1909 and G4685; to draw over, that is, (with G203 implied) efface the mark of circumcision (by recovering with the foreskin): - become uncircumcised."]},{"k":"G1987","v":["ἐπίσταμαι","epistamai","ep-is'-tam-ahee","Apparently a middle voice of G2186 (with G3563 implied); to put the mind upon, that is, comprehend, or be acquainted with: - know, understand."]},{"k":"G1988","v":["ἐπιστάτης","epistatēs","ep-is-tat'-ace","From G1909 and a presumed derivative of G2476; an appointee over, that is, commander (teacher): - master."]},{"k":"G1989","v":["ἐπιστέλλω","epistellō","ep-ee-stel'-lo","From G1909 and G4724; to enjoin (by writing), that is, (generally) to communicate by letter (for any purpose): - write (a letter, unto)."]},{"k":"G1990","v":["ἐπιστήμων","epistēmōn","ep-ee-stay'-mone","From G1987; intelligent: - endued with knowledge."]},{"k":"G1991","v":["ἐπιστηρίζω","epistērizō","ep-ee-stay-rid'-zo","From G1909 and G4741; to support further, that is, reestablish: - confirm, strengthen."]},{"k":"G1992","v":["ἐπιστολή","epistolē","ep-is-tol-ay'","From G1989; a written message: - ”epistle”, letter."]},{"k":"G1993","v":["ἐπιστομίζω","epistomizō","ep-ee-stom-id'-zo","From G1909 and G4750; to put something over the mouth, that is, (figuratively) to silence: - stop mouths."]},{"k":"G1994","v":["ἐπιστρέφω","epistrephō","ep-ee-stref'-o","From G1909 and G4762; to revert (literally, figuratively or morally): - come (go) again, convert, (re-) turn (about, again)."]},{"k":"G1995","v":["ἐπιστροφή","epistrophē","ep-is-trof-ay'","From G1994; reversion, that is, moral revolution: - conversion."]},{"k":"G1996","v":["ἐπισυνάγω","episunagō","ep-ee-soon-ag'-o","From G1909 and G4863; to collect upon the same place: - gather (together)."]},{"k":"G1997","v":["ἐπισυναγωγή","episunagōgē","ep-ee-soon-ag-o-gay'","From G1996; a complete collection; specifically a Christian meeting (for worship): - assembling (gathering) together."]},{"k":"G1998","v":["ἐπισυντρέχω","episuntrechō","ep-ee-soon-trekh'-o","From G1909 and G4936; to hasten together upon one place (or a particular occasion): - come running together."]},{"k":"G1999","v":["ἐπισύστασις","episustasis","ep-ee-soo'-stas-is","From the middle of a compound of G1909 and G4921; a conspiracy, that is, concourse (riotous or friendly): - that which cometh upon, + raising up."]},{"k":"G2000","v":["ἐπισφαλής","episphalēs","ep-ee-sfal-ace'","From a compound of G1909 and σφάλλω sphallō (to trip); figuratively insecure: - dangerous."]},{"k":"G2001","v":["ἐπισχύω","epischuō","ep-is-khoo'-o","From G1909 and G2480; to avail further, that is, (figuratively) insist stoutly: - be the more fierce."]},{"k":"G2002","v":["ἐπισωρεύω","episōreuō","ep-ee-so-ryoo'-o","From G1909 and G4987; to accumulate further, that is, (figuratively) seek additionally: - heap."]},{"k":"G2003","v":["ἐπιταγή","epitagē","ep-ee-tag-ay'","From G2004; an injunction or decree; by implication authoritativeness: - authority, commandment."]},{"k":"G2004","v":["ἐπιτάσσω","epitassō","ep-ee-tas'-so","From G1909 and G5021; to arrange upon, that is, order: - charge, command, injoin."]},{"k":"G2005","v":["ἐπιτελέω","epiteleō","ep-ee-tel-eh'-o","From G1909 and G5055; to fulfill further (or completely), that is, execute; by implication to terminate, undergo: - accomplish, do, finish, (make) (perfect), perform (X -ance)."]},{"k":"G2006","v":["ἐπιτήδειος","epitēdeios","ep-ee-tay'-di-os","From ἐπιτηδές epitēdes (enough); serviceable, that is, (by implication) requisite: - things which are needful."]},{"k":"G2007","v":["ἐπιτίθημι","epitithēmi","ep-ee-tith'-ay-mee","From G1909 and G5087; to impose (in a friendly or hostile sense): - add unto, lade, lay upon, put (up) on, set on (up), + surname, X wound."]},{"k":"G2008","v":["ἐπιτιμάω","epitimaō","ep-ee-tee-mah'-o","From G1909 and G5091; to tax upon, that is, censure or admonish; by implication forbid: - (straitly) charge, rebuke."]},{"k":"G2009","v":["ἐπιτιμία","epitimia","ep-ee-tee-mee'-ah","From a compound of G1909 and G5092; properly esteem, that is, citizenship; used (in the sense of G2008) of a penalty: - punishment."]},{"k":"G2010","v":["ἐπιτρέπω","epitrepō","ep-ee-trep'-o","From G1909 and the base of G5157; to turn over (transfer), that is, allow: - give leave (liberty, license), let, permit, suffer."]},{"k":"G2011","v":["ἐπιτροπή","epitropē","ep-ee-trop-ay'","From G2010; permission, that is, (by implication) full power: - commission."]},{"k":"G2012","v":["ἐπίτροπος","epitropos","ep-it'-rop-os","From G1909 and G5158 (in the sense of G2011); a commissioner, that is, domestic manager, guardian: - steward, tutor."]},{"k":"G2013","v":["ἐπιτυγχάνω","epitugchanō","ep-ee-toong-khan'-o","From G1909 and G5177; to chance upon, that is, (by implication) attain: - obtain."]},{"k":"G2014","v":["ἐπιφαίνω","epiphainō","ep-ee-fah'ee-no","From G1909 and G5316; to shine upon, that is, become (literally) visible or (figuratively) known: - appear, give light."]},{"k":"G2015","v":["ἐπιφάνεια","epiphaneia","ep-if-an'-i-ah","From G2016; a manifestation, that is, (specifically) the advent of Christ (past or future): - appearing, brightness."]},{"k":"G2016","v":["ἐπιφανής","epiphanēs","ep-if-an-ace'","From G2014; conspicuous, that is, (figuratively) memorable: - notable."]},{"k":"G2017","v":["ἐπιφαύω","epiphauō","ep-ee-fow'-o","A form of G2014; to illuminate (figuratively): - give light."]},{"k":"G2018","v":["ἐπιφέρω","epipherō","ep-ee-fer'-o","From G1909 and G5342; to bear upon (or further), that is, adduce (personally or judicially [accuse, inflict]), superinduce: - add, bring (against), take."]},{"k":"G2019","v":["ἐπιφωνέω","epiphōneō","ep-ee-fo-neh'-o","From G1909 and G5455; to call at something, that is, exclaim: - cry (against), give a shout."]},{"k":"G2020","v":["ἐπιφώσκω","epiphōskō","ep-ee-foce'-ko","A form of G2017; to begin to grow light: - begin to dawn, X draw on."]},{"k":"G2021","v":["ἐπιχειρέω","epicheireō","ep-ee-khi-reh'-o","From G1909 and G5495; to put the hand upon, that is, undertake: - go about, take in hand (upon)."]},{"k":"G2022","v":["ἐπιχέω","epicheō","ep-ee-kheh'-o","From G1909 and χέω cheō (to pour); to pour upon: - pour in."]},{"k":"G2023","v":["ἐπιχορηγέω","epichorēgeō","ep-ee-khor-ayg-eh'-o","From G1909 and G5524; to furnish besides, that is, fully supply, (figuratively) aid or contribute: - add, minister (nourishment, unto)."]},{"k":"G2024","v":["ἐπιχορηγία","epichorēgia","ep-ee-khor-ayg-ee'-ah","From G2023; contribution: - supply."]},{"k":"G2025","v":["ἐπιχρίω","epichriō","ep-ee-khree'-o","From G1909 and G5548; to smear over: - anoint."]},{"k":"G2026","v":["ἐποικοδομέω","epoikodomeō","ep-oy-kod-om-eh'-o","From G1909 and G3618; to build upon, that is, (figuratively) to rear up: - build thereon (thereupon, on, upon)."]},{"k":"G2027","v":["ἐποκέλλω","epokellō","ep-ok-el'-lo","From G1909 and ὀκέλλω okellō (to urge); to drive upon the shore, that is, to beach a vessel: - run aground."]},{"k":"G2028","v":["ἐπονομάζω","eponomazō","ep-on-om-ad'-zo","From G1909 and G3687; to name further, that is, denominate: - call."]},{"k":"G2029","v":["ἐποπτεύω","epopteuō","ep-opt-yoo'-o","From G1909 and a derivative of G3700; to inspect, that is, watch: - behold."]},{"k":"G2030","v":["ἐποπτης","epoptēs","ep-op'-tace","From G1909 and a presumed derivative of G3700; a looker on: - eye-witness."]},{"k":"G2031","v":["ἔπος","epos","ep'-os","From G2036; a word: - X say."]},{"k":"G2032","v":["ἐπουράνιος","epouranios","ep-oo-ran'-ee-os","From G1909 and G3772; above the sky: - celestial, (in) heaven (-ly), high."]},{"k":"G2033","v":["ἑπτά","hepta","hep-tah'","A primary number; seven: - seven."]},{"k":"G2034","v":["ἑπτακίς","heptakis","hep-tak-is'","Adverb from G2033; seven times: - seven times."]},{"k":"G2035","v":["ἑπτακισχίλιοι","heptakischilioi","hep-tak-is-khil'-ee-oy","From G2034 and G5507; seven times a thousand: - seven thousand."]},{"k":"G2036","v":["ἔπω","epō","ep'-o","A primary verb (used only in the definite past tense, the others being borrowed from G2046, G4483 and G5346); to speak or say (by word or writting): - answer, bid, bring word, call, command, grant, say (on), speak, tell. Compare G3004."]},{"k":"G2037","v":["Ἔραστος","Erastos","er'-as-tos","From ἐράω eraō (to love); beloved; Erastus, a Christian: - Erastus."]},{"k":"G2038","v":["ἐργάζομαι","ergazomai","er-gad'-zom-ahee","Middle voice from G2041; to toil (as a task, occupation, etc.), (by implication) effect, be engaged in or with, etc.: - commit, do, labor for, minister about, trade (by), work."]},{"k":"G2039","v":["ἐργασία","ergasia","er-gas-ee'-ah","From G2040; occupation; by implication profit, pains: - craft, diligence, gain, work."]},{"k":"G2040","v":["ἐργάτης","ergatēs","er-gat'-ace","From G2041; a toiler; figuratively a teacher: - labourer, worker (-men)."]},{"k":"G2041","v":["ἔργον","ergon","er'-gon","From ἔργω ergō (a primary but obsolete word; to work); toil (as an effort or occupation); by implication an act: - deed, doing, labour, work."]},{"k":"G2042","v":["ἐρεθίζω","erethizō","er-eth-id'-zo","From a presumed prolonged form of G2054; to stimulate (especially to anger): - provoke."]},{"k":"G2043","v":["ἐρείδω","ereidō","er-i'-do","Of obscure affinity; to prop, that is, (reflexively) get fast: - stick fast."]},{"k":"G2044","v":["ἐρεύγομαι","ereugomai","er-yoog'-om-ahee","Of uncertain affinity; to belch, that is, (figuratively) to speak out: - utter."]},{"k":"G2045","v":["ἐρευνάω","ereunaō","er-yoo-nah'-o","Apparently from G2046 (through the idea of inquiry); to seek, that is, (figuratively) to investigate: - search."]},{"k":"G2046","v":["ἐρέω","ereō","er-eh'-o","Probably a fuller form of G4483; an alternate for G2036 in certain tenses; to utter, that is, speak or say: - call, say, speak (of), tell."]},{"k":"G2047","v":["ἐρημία","erēmia","er-ay-mee'-ah","From G2048; solitude (concretely): - desert, wilderness."]},{"k":"G2048","v":["ἔρημος","erēmos","er'-ay-mos","Of uncertain affinity; lonesome, that is, (by implication) waste (usually as a noun, G5561 being implied): - desert, desolate, solitary, wilderness."]},{"k":"G2049","v":["ἐρημόω","erēmoō","er-ay-mo'-o","From G2048; to lay waste (literally or figuratively): - (bring to, make) desolate (-ion), come to nought."]},{"k":"G2050","v":["ἐρήμωσις","erēmōsis","er-ay'-mo-sis","From G2049; despoliation: - desolation."]},{"k":"G2051","v":["ἐρίζω","erizō","er-id'-zo","From G2054; to wrangle: - strive."]},{"k":"G2052","v":["ἐριθεία","eritheia","er-ith-i'-ah","Perhaps from the same as G2042; properly intrigue, that is, (by implication) faction: - contention (-ious), strife."]},{"k":"G2053","v":["ἔριον","erion","er'-ee-on","Of obscure affinity; wool: - wool."]},{"k":"G2054","v":["ἔρις","eris","er'-is","Of uncertain affinity; a quarrel, that is, (by implication) wrangling: - contention, debate, strife, variance."]},{"k":"G2055","v":["ἐρίφιον","eriphion","er-if'-ee-on","From G2056; a kidling, that is, (generally) goat (symbolically wicked person): - goat."]},{"k":"G2056","v":["ἔριφος","eriphos","er'-if-os","Perhaps from the same as G2053 (through the idea of hairiness); a kid or (generally) goat: - goat, kid."]},{"k":"G2057","v":["Ἑρμᾶς","Hermas","her-mas'","Probably from G2060; Hermas, a Christian: - Hermas."]},{"k":"G2058","v":["ἑρμηνεία","hermēneia","her-may-ni'-ah","From the same as G2059; translation: - interpretation."]},{"k":"G2059","v":["ἑρμηνεύω","hermēneuō","her-mayn-yoo'-o","From a presumed derivative of G2060 (as the god of language); to translate: - interpret."]},{"k":"G2060","v":["Ἑρμῆς","Hermēs","her-mace'","Perhaps from G2046; Hermes, the name of the messenger of the Greek deities; also of a Christian: - Hermes, Mercury."]},{"k":"G2061","v":["Ἑρμογενης","Hermōgenēs","her-mog-en'-ace","From G2060 and G1096; born of Hermes; Hermogenes, an apostate Christian: - Hermogenes."]},{"k":"G2062","v":["ἑρπετόν","herpeton","her-pet-on'","Neuter of a derivative of ἕρπω herpō (to creep); a reptile, that is, (by Hebraism (compare [H7431]) a small animal: - creeping thing, serpent."]},{"k":"G2063","v":["ἐρυθρός","eruthros","er-oo-thros'","Of uncertain affinity; red, that is, (with G2281) the red Sea: - red."]},{"k":"G2064","v":["ἔρχομαι","erchomai","er'-khom-ahee","Middle voice of a primary verb (used only in the present and imperfect tenses, the others being supplied by a kindred [middle voice] word, ἐλεύθομαι eleuthomai or ἔλθω elthō; which do not otherwise occur); to come or go (in a great variety of applications, literally and figuratively): - accompany, appear, bring, come enter, fall out, go, grow, X light, X next, pass, resort, be set."]},{"k":"G2065","v":["ἐρωτάω","erōtaō","er-o-tah'-o","Apparently from G2046 (compare G2045); to interrogate; by implication to request: - ask, beseech, desire, intreat, pray. Compare G4441."]},{"k":"G2066","v":["ἐσθής","esthēs","es-thace'","From ἔννυμι hennumi (to clothe); dress: - apparel, clothing, raiment, robe."]},{"k":"G2067","v":["ἔσθησις","esthēsis","es'-thay-sis","From a derivative of G2066; clothing (concretely): - garment."]},{"k":"G2068","v":["ἐσθίω","esthiō","es-thee'-o","Strengthened for a primary word ἔδω edō (to eat); used only in certain tenses, the rest being supplied by G5315; to eat (usually literally): - devour, eat, live."]},{"k":"G2069","v":["Ἐσλί","Esli","es-lee'","Of Hebrew origin (probably for [H454]); Esli, an Israelite: - Esli."]},{"k":"G2070","v":["ἐσμέν","esmen","es-men'","Frist person plural indicative of G1510; we are: - are, be, have our being, X have hope, + [the gospel] was [preached unto] us."]},{"k":"G2071","v":["ἔσομαι","esomai","es'-om-ahee","Future tense of G1510; will be: - shall (should) be (have), (shall) come (to pass), X may have, X fall, what would follow, X live long, X sojourn."]},{"k":"G2072","v":["ἔσοπτρον","esoptron","es'-op-tron","From G1519 and a presumed derivative of G3700; a mirror (for looking into): - glass. Compare G2734."]},{"k":"G2073","v":["ἑσπέρα","hespera","hes-per'-ah","Feminine of an adjective ἑσπερός hesperos (evening); the eve (G5610 being implied): - evening (-tide)."]},{"k":"G2074","v":["Ἐσρώμ","Esrōm","es-rome'","Of Hebrew origin [H2696]; Esrom (that is, Chetsron), an Israelite: - Esrom."]},{"k":"G2075","v":["ἐστέ","este","es-teh'","Second person plural present indicative of G1510; ye are: - be, have been, belong."]},{"k":"G2076","v":["ἐστί","esti","es-tee'","Third person singular present indicative of G1510; he (she or it) is; also (with neuter plural) they are: - are, be (-long), call, X can [-not], come, consisteth, X dure for awhile, + follow, X have, (that) is (to say), make, meaneth, X must needs, + profit, + remaineth, + wrestle."]},{"k":"G2077","v":["ἔστω, ἔστωσαν","estō    estōsan","es'-to, es'-to-san","Second person singular present imperative and third person of G1510; be thou; let them be: - be."]},{"k":"G2078","v":["ἔσχατος","eschatos","es'-khat-os","A superlative probably from G2192 (in the sense of contiguity); farthest, final (of place or time): - ends of, last, latter end, lowest, uttermost."]},{"k":"G2079","v":["ἐσχάτως","eschatōs","es-khat'-oce","Adverb from G2078; finally, that is, (with G2192) at the extremity of life: - point of death."]},{"k":"G2080","v":["ἔσω","esō","es'-o","From G1519; inside (as preposition or adjective): - (with-) in (-ner, -to, -ward)."]},{"k":"G2081","v":["ἔσωθεν","esōthen","es'-o-then","From G2080; from inside; also used as equivalent to G2080 (inside): - inward (-ly), (from) within, without."]},{"k":"G2082","v":["ἐσώτερος","esōteros","es-o'-ter-os","Comparative of G2080; interior: - inner, within."]},{"k":"G2083","v":["ἑταῖρος","hetairos","het-ah'ee-ros","From ἔτης etēs (a clansman); a comrade: - fellow, friend."]},{"k":"G2084","v":["ἑτερόγλωσσος","heteroglōssos","het-er-og'-loce-sos","From G2087 and G1100; other tongued, that is, a foreigner: - man of other tongue."]},{"k":"G2085","v":["ἑτεροδιδασκαλέω","heterodidaskaleō","het-er-od-id-as-kal-eh'-o","From G2087 and G1320; to instruct differently: - teach other doctrine (-wise)."]},{"k":"G2086","v":["ἑτεροζυγέω","heterozugeō","het-er-od-zoog-eh'-o","From a compound of G2087 and G2218; to yoke up differently, that is, (figuratively) to associate discordantly: - unequally yoke together with."]},{"k":"G2087","v":["ἕτερος","heteros","het'-er-os","Of uncertain affinity; (an-, the) other or different: - altered, else, next (day), one, (an-) other, some, strange."]},{"k":"G2088","v":["ἑτέρως","heterōs","het-er'-oce","Adverb from G2087; differently: - otherwise."]},{"k":"G2089","v":["ἔτι","eti","et'-ee","Perhaps akin to G2094; “yet”, still (of time or degree): - after that, also, ever, (any) further, (t-) henceforth (more), hereafter, (any) longer, (any) more (-one), now, still, yet."]},{"k":"G2090","v":["ἑτοιμάζω","hetoimazō","het-oy-mad'-zo","From G2092; to prepare: - prepare, provide, make ready. Compare G2680."]},{"k":"G2091","v":["ἑτοιμασία","hetoimasia","het-oy-mas-ee'-ah","From G2090; preparation: - preparation."]},{"k":"G2092","v":["ἕτοιμος","hetoimos","het-oy'-mos","From an old noun ἕτεος heteos (fitness); adjusted, that is, ready: - prepared, (made) ready (-iness, to our hand)."]},{"k":"G2093","v":["ἑτοίμως","hetoimōs","het-toy'-moce","Adverb from G2092; in readiness: - ready."]},{"k":"G2094","v":["ἔτος","etos","et'-os","Apparently a primary word; a year: - year."]},{"k":"G2095","v":["εὖ","eu","yoo","Neuter of a primary word εὖς eus (good); (adverbially) well: - good, well (done)."]},{"k":"G2096","v":["Εὖα","Eua","yoo'-ah","Of Hebrew origin [H2332]; Eua (or Eva, that is, Chavvah), the first woman: - Eve."]},{"k":"G2097","v":["εὐαγγελίζω","euaggelizō","yoo-ang-ghel-id'-zo","From G2095 and G32; to announce good news (“evangelize”) especially the gospel: - declare, bring (declare, show) glad (good) tidings, preach (the gospel)."]},{"k":"G2098","v":["εὐαγγέλιον","euaggelion","yoo-ang-ghel'-ee-on","From the same as G2097; a good message, that is, the gospel: - gospel."]},{"k":"G2099","v":["εὐαγγελιστής","euaggelistēs","yoo-ang-ghel-is-tace'","From G2097; a preacher of the gospel: - evangelist."]},{"k":"G2100","v":["εὐαρεστέω","euaresteō","yoo-ar-es-teh'-o","From G2101; to gratify entirely: - please (well)."]},{"k":"G2101","v":["εὐάρεστος","euarestos","yoo-ar'-es-tos","From G2095 and G701; fully agreeable: - acceptable (-ted), wellpleasing."]},{"k":"G2102","v":["εὐαρέστως","euarestōs","yoo-ar-es'-toce","From G2101; quite agreeably: - acceptably, + please well."]},{"k":"G2103","v":["Εὔβουλος","Euboulos","yoo'-boo-los","From G2095 and G1014; good willer; Eubulus, a Christian: - Eubulus."]},{"k":"G2104","v":["εὐγένης","eugenēs","yoog-en'-ace","From G2095 and G1096; well born, that is, (literally) high in rank, or (figuratively) generous: - more noble, nobleman."]},{"k":"G2105","v":["εὐδία","eudia","yoo-dee'-ah","Feminine from G2095 and the alternate of G2203 (as the god of the weather); a clear sky, that is, fine weather: - fair weather."]},{"k":"G2106","v":["εὐδοκέω","eudokeō","yoo-dok-eh'-o","From G2095 and G1380; to think well of, that is, approve (an act); specifically to approbate (a person or thing): - think good, (be well) please (-d), be the good (have, take) pleasure, be willing."]},{"k":"G2107","v":["εὐδοκία","eudokia","yoo-dok-ee'-ah","From a presumed compound of G2095 and the base of G1380; satisfaction, that is, (subjectively) delight, or (objectively) kindness, wish, purpose: - desire, good pleasure (will), X seem good."]},{"k":"G2108","v":["εὐεργεσία","euergesia","yoo-erg-es-ee'-ah","From G2110; beneficence (generally or specifically): - benefit, good deed done."]},{"k":"G2109","v":["εὐεργετέω","euergeteō","yoo-erg-et-eh'-o","From G2110; to be philanthropic: - do good."]},{"k":"G2110","v":["εὐεργέτης","euergetēs","yoo-erg-et'-ace","From G2095 and the base of G2041; a worker of good, that is, (specifically) a philanthropist: - benefactor."]},{"k":"G2111","v":["εὔθετος","euthetos","yoo'-thet-os","From G2095 and a derivative of G5087; well placed, that is, (figuratively) appropriate: - fit, meet."]},{"k":"G2112","v":["εὐθέως","eutheōs","yoo-theh'-oce","Adverb from G2117; directly, that is, at once or soon: - anon, as soon as, forthwith, immediately, shortly, straightway."]},{"k":"G2113","v":["εὐθυδρομέω","euthudromeō","yoo-thoo-drom-eh'-o","From G2117 and G1408; to lay a straight course, that is, sail direct: - (come) with a straight course."]},{"k":"G2114","v":["εὐθυμέω","euthumeō","yoo-thoo-meh'-o","From G2115; to cheer up, that is, (intransitively) be cheerful; neuter comparative (adverb) more cheerfully: - be of good cheer (merry)."]},{"k":"G2115","v":["εὔθυμος","euthumos","yoo'-thoo-mos","From G2095 and G2372; in fine spirits, that is, cheerful: - of good cheer, the more cheerfully."]},{"k":"G2116","v":["εὐθύνω","euthunō","yoo-thoo'-no","From G2117; to straighten (level); technically to steer: - governor, make straight."]},{"k":"G2117","v":["εὐθύς","euthus","yoo-thoos'","Perhaps from G2095 and G5087; straight, that is, (literally) level, or (figuratively) true; adverbially (of time) at once: - anon, by and by, forthwith, immediately, straightway."]},{"k":"G2118","v":["εὐθύτης","euthutēs","yoo-thoo'-tace","From G2117; rectitude: - righteousness."]},{"k":"G2119","v":["εὐκαιρέω","eukaireō","yoo-kahee-reh'-o","From G2121; to have good time, that is, opportunity or leisure: - have leisure (convenient time), spend time."]},{"k":"G2120","v":["εὐκαιρία","eukairia","yoo-kahee-ree'-ah","From G2121; a favorable occasion: - opportunity."]},{"k":"G2121","v":["εὔκαιρος","eukairos","yoo'-kahee-ros","From G2095 and G2540; well timed, that is, opportune: - convenient, in time of need."]},{"k":"G2122","v":["εὐκαίρως","eukairōs","yoo-kah'ee-roce","Adverb from G2121; opportunely: - conveniently, in season."]},{"k":"G2123","v":["εὐκοπώτερος","eukopōteros","yoo-kop-o'-ter-os","Comparative of a compound of G2095 and G2873; better for toil, that is, more facile: - easier."]},{"k":"G2124","v":["εὐλάβεια","eulabeia","yoo-lab'-i-ah","From G2126; properly caution, that is, (religiously) reverence (piety); by implication dread (concretely): - fear (-ed)."]},{"k":"G2125","v":["εὐλαβέομαι","eulabeomai","yoo-lab-eh'-om-ahee","Middle voice from G2126; to be circumspect, that is, (by implication) to be apprehensive; religiously, to reverence: - (moved with) fear."]},{"k":"G2126","v":["εὐλαβής","eulabēs","yoo-lab-ace'","From G2095 and G2983; taking well (carefully), that is, circumspect (religiously, pious): - devout."]},{"k":"G2127","v":["εὐλογέω","eulogeō","yoo-log-eh'-o","From a compound of G2095 and G3056; to speak well of, that is, (religiously) to bless (thank or invoke a benediction upon, prosper): - bless, praise."]},{"k":"G2128","v":["εὐλογητός","eulogētos","yoo-log-ay-tos'","From G2127; adorable: - blessed."]},{"k":"G2129","v":["εὐλογία","eulogia","yoo-log-ee'-ah","From the same as G2127; fine speaking, that is, elegance of language; commendation (“eulogy”), that is, (reverentially) adoration; religiously, benediction; by implication consecration; by extension benefit or largess: - blessing (a matter of) bounty (X -tifully), fair speech."]},{"k":"G2130","v":["εὐμετάδοτος","eumetadotos","yoo-met-ad'-ot-os","From G2095 and a presumed derivative of G3330; good at imparting, that is, liberal: - ready to distribute."]},{"k":"G2131","v":["Εὐνίκη","Eunikē","yoo-nee'-kay","From G2095 and G3529; victorious; Eunice, a Jewess: - Eunice."]},{"k":"G2132","v":["εὐνόεω","eunoeō","yoo-no-eh'-o","From a compound of G2095 and G3563; to be well minded, that is, reconcile: - agree."]},{"k":"G2133","v":["εὔνοια","eunoia","yoo'-noy-ah","From the same as G2132; kindness; euphemistically conjugal duty: - benevolence, good will."]},{"k":"G2134","v":["εὐνουχίζω","eunouchizō","yoo-noo-khid'-zo","From G2135; to castrate (figuratively live unmarried): - make . . . eunuch."]},{"k":"G2135","v":["εὐνοῦχος","eunouchos","yoo-noo'-khos","From εὐνή eunē (a bed) and G2192; a castrated person (such being employed in Oriental bed chambers); by extension an impotent or unmarried man; by implication a chamberlain (state officer): - eunuch."]},{"k":"G2136","v":["Εὐοδία","Euodia","yoo-od-ee'-ah","From the same as G2137; fine travelling; Euodia, a Christian woman: - Euodias."]},{"k":"G2137","v":["εὐοδόω","euodoō","yoo-od-o'-o","From a compound of G2095 and G3598; to help on the road, that is, (passively) succeed in reaching; figuratively to succeed in business affairs: - (have a) prosper (-ous journey)."]},{"k":"G2138","v":["εὐπειθής","eupeithēs","yoo-pi-thace'","From G2095 and G3982; good for persuasion, that is, (intransitively) compliant: - easy to be intreated."]},{"k":"G2139","v":["εὐπερίστατος","euperistatos","yoo-per-is'-tat-os","From G2095 and a derivative of a presumed compound of G4012 and G2476; well standing around, that is, (a competitor) thwarting (a racer) in every direction (figuratively of sin in general): - which doth so easily beset."]},{"k":"G2140","v":["εὐποιΐ́α","eupoiia","yoo-poy-ee'-ah","From a compound of G2095 and G4160; well doing, that is, beneficence: - to do good."]},{"k":"G2141","v":["εὐπορέω","euporeō","yoo-por-eh'-o","From a compound of G2090 and the base of G4197; (intransitively) to be good for passing through, that is, (figuratively) have pecuniary means: - ability."]},{"k":"G2142","v":["εὐπορία","euporia","yoo-por-ee'-ah","From the same as G2141; pecuniary resources: - wealth."]},{"k":"G2143","v":["εὐπρέπεια","euprepeia","yoo-prep'-i-ah","From a compound of G2095 and G4241; good suitableness, that is, gracefulness: - grace."]},{"k":"G2144","v":["εὐπρόσδεκτος","euprosdektos","yoo-pros'-dek-tos","From G2095 and a derivative of G4327; well received, that is, approved, favorable: - acceptable (-ted)."]},{"k":"G2145","v":["εὐπρόσεδρος","euprosedros","yoo-pros'-ed-ros","From G2095 and the same as G4332; sitting well towards, that is, (figuratively) assiduous (neuter diligent service): - X attend upon."]},{"k":"G2146","v":["εὐπροσωπέω","euprosōpeō","yoo-pros-o-peh'-o","From a compound of G2095 and G4383; to be of good countenance, that is, (figuratively) to make a display: - make a fair show."]},{"k":"G2147","v":["εὑρίσκω","heuriskō","hyoo-ris'-ko","A prolonged form of a primary word εὕρω heurō; which (together with another cognate form, εὑρέω heureō) is used for it in all the tenses except the present and imperfect; to find (literally or figuratively): - find, get, obtain, perceive, see."]},{"k":"G2148","v":["Εὐροκλύδων","Eurokludōn","yoo-rok-loo'-dohn","From Εὖρος Euros (the east wind) and G2830; a storm from the east (or south east), that is, (in modern phrase) a Levanter: - Euroklydon."]},{"k":"G2149","v":["εὐρύχωρος","euruchōros","yoo-roo'-kho-ros","From εὐρύς eurus (wide) and G5561; spacious: - broad."]},{"k":"G2150","v":["εὐσέβεια","eusebeia","yoo-seb'-i-ah","From G2152; piety; specifically the gospel scheme: - godliness, holiness."]},{"k":"G2151","v":["εὐσεβέω","eusebeō","yoo-seb-eh'-o","From G2152; to be pious, that is, (towards God) to worship, or (towards parents) to respect (support): - show piety, worship."]},{"k":"G2152","v":["εὐσεβής","eusebēs","yoo-seb-ace'","From G2095 and G4576; well reverent, that is, pious: - devout, godly."]},{"k":"G2153","v":["εὐσεβῶς","eusebōs","yoo-seb-oce'","Adverb from G2152; piously: - godly."]},{"k":"G2154","v":["εὔσημος","eusēmos","yoo'-say-mos","From G2095 and the base of G4591; well indicated, that is, (figuratively) significant: - easy to be understood."]},{"k":"G2155","v":["εὔσπλαγχνος","eusplagchnos","yoo'-splangkh-nos","From G2095 and G4698; well compassioned, that is, sympathetic: - pitiful, tender-hearted."]},{"k":"G2156","v":["εὐσχημόνως","euschēmonōs","yoo-skhay-mon'-oce","Adverb from G2158; decorously: - decently, honestly."]},{"k":"G2157","v":["εὐσχημοσύνη","euschēmosunē","yoo-skhay-mos-oo'-nay","From G2158; decorousness: - comeliness."]},{"k":"G2158","v":["εὐσχήμων","euschēmōn","yoo-skhay'-mone","From G2095 and G4976; well formed, that is, (figuratively) decorous, noble (in rank): - comely, honourable."]},{"k":"G2159","v":["εὐτόνως","eutonōs","yoo-ton'-oce","Adverb from a compound of G2095 and a derivation of τείνω teinō (to stretch); in a well strung manner, that is, (figuratively) intensely (in a good sense, cogently; in a bad one, fiercely): - mightily, vehemently."]},{"k":"G2160","v":["εὐτραπελία","eutrapelia","yoo-trap-el-ee'-ah","From a compound of G2095 and a derivative of the base of G5157 (meaning well turned, that is, ready at repartee, jocose); witticism, that is, (in a vulgar sense) ribaldry: - jesting."]},{"k":"G2161","v":["Εὔτυχος","Eutuchos","yoo'-too-khos","From G2095 and a derivative of G5177; well fated, that is, fortunate; Eutychus, a young man: - Eutychus."]},{"k":"G2162","v":["εὐφημία","euphēmia","yoo-fay-mee'-ah","From G2163; good language (“euphemy”), that is, praise (repute): - good report."]},{"k":"G2163","v":["εὔφημος","euphēmos","yoo'-fay-mos","From G2095 and G5345; well spoken of, that is, reputable: - of good report."]},{"k":"G2164","v":["εὐφορέω","euphoreō","yoo-for-eh'-o","From G2095 and G5409; to bear well, that is, be fertile: - bring forth abundantly."]},{"k":"G2165","v":["εὐφραίνω","euphrainō","yoo-frah'ee-no","From G2095 and G5424; to put (middle voice or passive voice be) in a good frame of mind, that is, rejoice: - fare, make glad, be (make) merry, rejoice."]},{"k":"G2166","v":["Εὐφράτης","Euphratēs","yoo-frat'-ace","Of foreign origin (compare [H6578]); Euphrates, a river of Asia: - Euphrates."]},{"k":"G2167","v":["εὐφροσύνη","euphrosunē","yoo-fros-oo'-nay","From the same as G2165; joyfulness: - gladness, joy."]},{"k":"G2168","v":["εὐχαριστέω","eucharisteō","yoo-khar-is-teh'-o","From G2170; to be grateful, that is, (actually) to express gratitude (towards); specifically to say grace at a meal: - (give) thank (-ful, -s)."]},{"k":"G2169","v":["εὐχαριστία","eucharistia","yoo-khar-is-tee'-ah","From G2170; gratitude; actually grateful language (to God, as an act of worship): - thankfulness, (giving of) thanks (-giving)."]},{"k":"G2170","v":["εὐχάριστος","eucharistos","yoo-khar'-is-tos","From G2095 and a derivative of G5483; well favored, that is, (by implication) grateful: - thankful."]},{"k":"G2171","v":["εὐχή","euchē","yoo-khay'","From G2172; properly a wish, expressed as a petition to God, or in votive obligation: - prayer, vow."]},{"k":"G2172","v":["εὔχομαι","euchomai","yoo'-khom-ahee","Middle voice of a primary verb; to wish; by implication to pray to God: - pray, will, wish."]},{"k":"G2173","v":["εὐχρηστος","euchrēstos","yoo'-khrays-tos","From G2095 and G5543; easily used, that is, useful: - profitable, meet for use."]},{"k":"G2174","v":["εὐψυχέω","eupsucheō","yoo-psoo-kheh'-o","From a compound of G2095 and G5590; to be in good spirits, that is, feel encouraged: - be of good comfort."]},{"k":"G2175","v":["εὐωδία","euōdia","yoo-o-dee'-ah","From a compound of G2095 and a derivative of G3605; good scentedness, that is, fragrance: - sweet savour (smell, -smelling)."]},{"k":"G2176","v":["εὐώνυμος","euōnumos","yoo-o'-noo-mos","From G2095 and G3686; properly well named (good omened), that is, the left (which was the lucky side among the pagan Greeks); neuter as adverb at the left hand: - (on the) left."]},{"k":"G2177","v":["ἐφάλλομαι","ephallomai","ef-al'-lom-ahee","From G1909 and G242; to spring upon: - leap on."]},{"k":"G2178","v":["ἐφάπαξ","ephapax","ef-ap'-ax","From G1909 and G530; upon one occasion (only): - (at) once (for all)."]},{"k":"G2179","v":["Ἐφεσῖνος","Ephesinos","ef-es-ee'-nos","From G2181; Ephesine, or situated at Ephesus: - of Ephesus."]},{"k":"G2180","v":["Ἐφέσιος","Ephesios","ef-es'-ee-os","From G2181; an Ephesian or inhabitant of Ephesus: - Ephesian, of Ephesus."]},{"k":"G2181","v":["Ἔφεσος","Ephesos","ef'-es-os","Probably of foreign origin; Ephesus, a city of Asia Minor: - Ephesus."]},{"k":"G2182","v":["ἐφευρέτης","epheuretēs","ef-yoo-ret'-ace","From a compound of G1909 and G2147; a discoverer, that is, contriver: - inventor."]},{"k":"G2183","v":["ἐφημερία","ephēmeria","ef-ay-mer-ee'-ah","From G2184; diurnality, that is, (specifically) the quotidian rotation or class of the Jewish priests’ service at the Temple, as distributed by families: - course."]},{"k":"G2184","v":["ἐφήμερος","ephēmeros","ef-ay'-mer-os","From G1909 and G2250; for a day (“ephemeral”), that is, diurnal: - daily."]},{"k":"G2185","v":["ἐφικνέομαι","ephikneomai","ef-ik-neh'-om-ahee","From G1909 and a cognate of G2240; to arrive upon, that is, extend to: - reach."]},{"k":"G2186","v":["ἐφίστημι","ephistēmi","ef-is'-tay-mee","From G1909 and G2476; to stand upon, that is, be present (in various applications, friendly or otherwise, usually literally): - assault, come (in, to, unto, upon), be at hand (instant), present, stand (before, by, over)."]},{"k":"G2187","v":["Ἐφραΐ́μ","Ephraim","ef-rah-im'","Of Hebrew origin ([H669] or better [H6085]); Ephraim, a place in Palestine: - Ephraim."]},{"k":"G2188","v":["ἐφφαθά","ephphatha","ef-fath-ah'","Of Chaldee origin [H6606]; be opened!: - Ephphatha."]},{"k":"G2189","v":["ἔχθρα","echthra","ekh'-thrah","Feminine of G2190; hostility; by implication a reason for opposition: - enmity, hatred."]},{"k":"G2190","v":["ἐχθρός","echthros","ekh-thros'","From a primary word ἔχθω echthō (to hate); hateful (passively odious, or actively hostile); usually as a noun, an adversary (especially Satan): - enemy, foe."]},{"k":"G2191","v":["ἔχιδνα","echidna","ekh'-id-nah","Of uncertain origin; an adder or other poisonous snake (literally or figuratively): - viper."]},{"k":"G2192","v":["ἔχω","echō","ekh'-o","A primary verb (including an alternate form σχέω scheō skheh'-o used in certain tenses only); to hold (used in very various applications, literally or figuratively, direct or remote; such as possession, ability, contiguity, relation or condition): - be (able, X hold, possessed with), accompany, + begin to amend, can (+ -not), X conceive, count, diseased, do, + eat, + enjoy, + fear, following, have, hold, keep, + lack, + go to law, lie, + must needs, + of necessity, + need, next, + recover, + reign, + rest, return, X sick, take for, + tremble, + uncircumcised, use."]},{"k":"G2193","v":["ἕως","heōs","heh'-oce","Of uncertain affinity; a conjugation, preposition and adverb of continuance, until (of time and place): - even (until, unto), (as) far (as), how long, (un-) til (-l), (hither-, un-, up) to, while (-s)."]},{"k":"G2194","v":["Ζαβουλών","Zaboulōn","dzab-oo-lone'","Of Hebrew origin [H2074]; Zabulon (that is, Zebulon), a region of Palestine: - Zabulon."]},{"k":"G2195","v":["Ζακχαῖος","Zakchaios","dzak-chah'ee-os","Of Hebrew origin (compare [H2140]); Zacchaeus, an Israelite: - Zacchus."]},{"k":"G2196","v":["Ζαρά","Zara","dzar-ah'","Of Hebrew origin [H2226]; Zara (that is, Zerach), an Israelite: - Zara."]},{"k":"G2197","v":["Ζαχαρίας","Zacharias","dzakh-ar-ee'-as","Of Hebrew origin [H2148]; Zacharias (that is, Zechariah), the name of two Israelites: - Zacharias."]},{"k":"G2198","v":["ζάω","zaō","dzah'-o","A primary verb; to live (literally or figuratively): - life (-time), (a-) live (-ly), quick."]},{"k":"G2199","v":["Ζεβεδαῖος","Zebedaios","dzeb-ed-ah'-yos","Of Hebrew origin (compare [H2067]); Zebedaeus, an Israelite: - Zebedee."]},{"k":"G2200","v":["ζεστός","zestos","dzes-tos'","From G2204; boiled, that is, (by implication) calid (figuratively fervent): - hot."]},{"k":"G2201","v":["ζεῦγος","zeugos","dzyoo'-gos","From the same as G2218; a couple, that is, a team (of oxen yoked together) or brace (of birds tied together): - yoke, pair."]},{"k":"G2202","v":["ζευκτηρία","zeuktēria","dzyook-tay-ree'-ah","Feminine of a derivative (at the second stage) from the same as G2218; a fastening (tiller rope): - band."]},{"k":"G2203","v":["Ζεύς","Zeus","dzyooce","Of uncertain affinity; in the oblique cases there is used instead of it a (probably cognate) name Δίς Dis deece which is otherwise obsolete; Zeus or Dis (among the Latins Jupiter or Jove), the supreme deity of the Greeks: - Jupiter."]},{"k":"G2204","v":["ζέω","zeō","dzeh'-o","A primary verb; to be hot (boil, of liquids; or glow, of solids), that is, (figuratively) be fervid (earnest): - be fervent."]},{"k":"G2205","v":["ζῆλος","zēlos","dzay'-los","From G2204; properly heat, that is, (figuratively) “zeal” (in a favorable sense, ardor; in an unfavorable one, jealousy, as of a husband [figuratively of God], or an enemy, malice): - emulation, envy (-ing), fervent mind, indignation, jealousy, zeal."]},{"k":"G2206","v":["ζηλόω","zēloō","dzay-lo'-o","From G2205; to have warmth of feeling for or against: - affect, covet (earnestly), (have) desire, (move with) envy, be jealous over, (be) zealous (-ly affect)."]},{"k":"G2207","v":["ζηλωτής","zēlōtēs","dzay-lo-tace'","From G2206; a “zealot”: - zealous."]},{"k":"G2208","v":["Ζηλωτής","Zēlōtēs","dzay-lo-tace'","The same as G2207; a Zealot, that is, (specifically) partisan for Jewish political independence: - Zelotes."]},{"k":"G2209","v":["ζημία","zēmia","dzay-mee'-ah","Probably akin to the base of G1150 (through the idea of violence); detriment: - damage, loss."]},{"k":"G2210","v":["ζημιόω","zēmioō","dzay-mee-o'-o","From G2209; to injure, that is, (reflexively or passively) to experience detriment: - be cast away, receive damage, lose, suffer loss."]},{"k":"G2211","v":["Ζηνᾶς","Zēnas","dzay-nas'","Probably contracted from a poetic form of G2203 and G1435; Jove given; Zenas, a Christian: - Zenas."]},{"k":"G2212","v":["ζητέω","zēteō","dzay-teh'-o","Of uncertain affinity; to seek (literally or figuratively); specifically (by Hebraism) to worship (God), or (in a bad sense) to plot (against life): - be (go) about, desire, endeavour, enquire (for), require, (X will) seek (after, for, means). Compare G4441."]},{"k":"G2213","v":["ζήτημα","zētēma","dzay'-tay-mah","From G2212; a search (properly concrete), that is, (in words) a debate: - question."]},{"k":"G2214","v":["ζήτησις","zētēsis","dzay'-tay-sis","From G2212; a searching (properly the act), that is, a dispute or its theme: - question."]},{"k":"G2215","v":["ζιζάνιον","zizanion","dziz-an'-ee-on","Of uncertain origin; darnel or false grain: - tares."]},{"k":"G2216","v":["Ζοροβάβελ","Zorobabel","dzor-ob-ab'-el","Of Hebrew origin [H2216]; Zorobabel (that is, Zerubbabel), an Israelite: - Zorobabel."]},{"k":"G2217","v":["ζόφος","zophos","dzof'-os","Akin to the base of G3509; gloom (as shrouding like a cloud): - blackness, darkness, mist."]},{"k":"G2218","v":["ζυγός","zugos","dzoo-gos'","From the root of ζεύγνυμι zeugnumi (to join, especially by a “yoke”); a coupling, that is, (figuratively) servitude (a law or obligation); also (literally) the beam of the balance (as connecting the scales): - pair of balances, yoke."]},{"k":"G2219","v":["ζύμη","zumē","dzoo'-may","Probably from G2204; ferment (as if boiling up): - leaven."]},{"k":"G2220","v":["ζυμόω","zumoō","dzoo-mo'-o","From G2219; to cause to ferment: - leaven."]},{"k":"G2221","v":["ζωγρέω","zōgreō","dzogue-reh'-o","From the same as G2226 and G64; to take alive (make a prisoner of war), that is, (figuratively) to capture or ensnare: - take captive, catch."]},{"k":"G2222","v":["ζωή","zōē","dzo-ay'","From G2198; life (literally or figuratively): - life (-time). Compare G5590."]},{"k":"G2223","v":["ζώνη","zōnē","dzo'-nay","Probably akin to the base of G2218; a belt; by implication a pocket: - girdle, purse."]},{"k":"G2224","v":["ζώννυμι","zōnnumi","dzone'-noo-mi","From G2223; to bind about (especially with a belt): - gird."]},{"k":"G2225","v":["ζωογονέω","zōogoneō","dzo-og-on-eh'-o","From the same as G2226 and a derivative of G1096; to engender alive that is, (by analogy) to rescue (passively be saved) from death: - live, preserve."]},{"k":"G2226","v":["ζῶον","zōon","dzo'-on","Neuter of a derivative of G2198; a live thing, that is, an animal: - beast."]},{"k":"G2227","v":["ζωοποιέω","zōopoieō","dzo-op-oy-eh'-o","From the same as G2226 and G4160; to (re-) vitalize (literally or figuratively): - make alive, give life, quicken."]},{"k":"G2228","v":["ἤ","ē","ay","A primary particle of distinction between two connected terms; disjunctive, or; comparative, than: - and, but (either), (n-) either, except it be, (n-) or (else), rather, save, than, that, what, yea. Often used in connection with other particles. Compare especially G2235, G2260, G2273."]},{"k":"G2229","v":["ἦ","ē","ay","An adverb of confirmation; perhaps intensive of G2228; used only (in the N. T.) before G3303; assuredly: - surely."]},{"k":"G2230","v":["ἡγεμονεύω","hēgemoneuō","hayg-em-on-yoo'-o","From G2232; to act as ruler: - be governor."]},{"k":"G2231","v":["ἡγεμονία","hēgemonia","hayg-em-on-ee'-ah","From G2232; government, that is, (in time) official term: - reign."]},{"k":"G2232","v":["ἡγεμών","hēgemōn","hayg-em-ohn'","From G2233; a leader, that is, chief person (or figuratively place) of a province: - governor, prince, ruler."]},{"k":"G2233","v":["ἡγέομαι","hēgeomai","hayg-eh'-om-ahee","Middle voice of a (presumed) strengthened form of G71; to lead, that is, command (with official authority); figuratively to deem, that is, consider: - account, (be) chief, count, esteem, governor, judge, have the rule over, suppose, think."]},{"k":"G2234","v":["ἡδέως","hēdeōs","hay-deh'-oce","Adverb from a derivative of the base of G2237; sweetly, that is, (figuratively) with pleasure: - gladly."]},{"k":"G2235","v":["ἤδη","ēdē","ay'-day","Apparently from G2228 (or possibly G2229) and G1211; even now: - already, (even) now (already), by this time."]},{"k":"G2236","v":["ἥδιστα","hēdista","hay'-dis-tah","Neuter plural of the superlative of the same as G2234; with great pleasure: - most (very) gladly."]},{"k":"G2237","v":["ἡδονή","hēdonē","hay-don-ay'","From ἁνδάνω handanō (to please); sensual delight; by implication desire: - lust, pleasure."]},{"k":"G2238","v":["ἡδύοσμον","hēduosmon","hay-doo'-os-mon","Neuter of a compound of the same as G2234 and G3744; a sweet scented plant, that is, mint: - mint."]},{"k":"G2239","v":["ἦθος","ēthos","ay'-thos","A strengthened form of G1485; usage, that is, (plural) moral habits: - manners."]},{"k":"G2240","v":["ἥκω","hēkō","hay'-ko","A primary verb; to arrive, that is, be present (literally or figuratively): - come."]},{"k":"G2241","v":["ἠλί","ēli","ay-lee'","Of Hebrew origin ([H410] with pronoun suffix); my God: - Eli."]},{"k":"G2242","v":["Ἡλί","Hēli","hay-lee'","Of Hebrew origin [H5941]; Heli (that is, Eli), an Israelite: - Heli."]},{"k":"G2243","v":["Ἡλίας","Hēlias","hay-lee'-as","Of Hebrew origin [H452]; Helias (that is, Elijah), an Israelite: - Elias."]},{"k":"G2244","v":["ἡλικία","hēlikia","hay-lik-ee'-ah","From the same as G2245; maturity (in years or size): - age, stature."]},{"k":"G2245","v":["ἡλίκος","hēlikos","hay-lee'-kos","From ἧλιξ hēlix (a comrade, that is, one of the same age); as big as, that is, (interjectively) how much: - how (what) great."]},{"k":"G2246","v":["ἥλιος","hēlios","hay'-lee-os","From ἕλη helē (a ray; perhaps akin to the alternate of G138); the sun; by implication light: - + east, sun."]},{"k":"G2247","v":["ἧλος","hēlos","hay'-los","Of uncertain affinity; a stud, that is, spike: - nail."]},{"k":"G2248","v":["ἡμᾶς","hēmas","hay-mas'","Accusative plural of G1473; us: - our, us, we."]},{"k":"G2249","v":["ἡμεῖς","hēmeis","hay-mice'","Nomitive plural of G1473; we (only used when emphatic): - us, we (ourselves)."]},{"k":"G2250","v":["ἡμέρα","hēmera","hay-mer'-ah","Feminine (with G5610 implied) of a derivative of ἧμαι hēmai (to sit; akin to the base of G1476) meaning tame, that is, gentle; day, that is, (literally) the time space between dawn and dark, or the whole 24 hours (but several days were usually reckoned by the Jews as inclusive of the parts of both extremes); figuratively a period (always defined more or less clearly by the context): - age, + alway, (mid-) day (by day, [-ly]), + for ever, judgment, (day) time, while, years."]},{"k":"G2251","v":["ἡμέτερος","hēmeteros","hay-met'-er-os","From G2349; our. (Or your by a different reading.): - our, your [by a different reading]."]},{"k":"G2252","v":["ἤμην","ēmēn","ay'-mane","A prolonged form of G2358; I was. (Sometimes unexpressed.): - be, was. [Sometimes unexpressed.]"]},{"k":"G2253","v":["ἡμιθανής","hēmithanēs","hay-mee-than-ace'","From a presumed compound of the base of G2255 and G2348; half dead, that is, entirely exhausted: - half dead."]},{"k":"G2254","v":["ἡμῖν","hēmin","hay-meen'","Dative plural of G1473; to (or for, with, by) us: - our, (for) us, we."]},{"k":"G2255","v":["ἥμισυ","hēmisu","hay'-mee-soo","Neuter of a derivative from an inseparable prefix akin to G260 (through the idea of partition involved in connection) and meaning semi-; (as noun) half: - half."]},{"k":"G2256","v":["ἡμιώριον","hēmiōrion","hay-mee-o'-ree-on","From the base of G2255 and G5610; a half hour: - half an hour."]},{"k":"G2257","v":["ἡμῶν","hēmōn","hay-mone'","Genitive plural of G1473; of (or from) us: - our (company), us, we."]},{"k":"G2258","v":["ἦν","ēn","ane","Imperfect of G1510; I (thou, etc.) was (wast or were): - + agree, be, X have (+ charge of), hold, use, was (-t), were."]},{"k":"G2259","v":["ἡνίκα","hēnika","hay-nee'-kah","Of uncertain affinity; at which time: - when."]},{"k":"G2260","v":["ἤπερ","ēper","ay'-per","From G2228 and G4007; than at all (or than perhaps, than indeed): - than."]},{"k":"G2261","v":["ἤπιος","ēpios","ay'-pee-os","Probably from G2031; properly affable, that is, mild or kind: - gentle."]},{"k":"G2262","v":["Ἤρ","Ēr","ayr","Of Hebrew origin [H6147]; Er, an Israelite: - Er."]},{"k":"G2263","v":["ἤρεμος","ēremos","ay'-rem-os","Perhaps by transposition from G2048 (through the idea of stillness); tranquil: - quiet."]},{"k":"G2264","v":["Ἡρώδης","Hērōdēs","hay-ro'-dace","Compound of ἥρως hērōs (a “hero”) and G1491; heroic; Herodes, the name of four Jewish kings: - Herod."]},{"k":"G2265","v":["Ἡρωδιανοί","Hērōdianoi","hay-ro-dee-an-oy'","Plural of a derivative of G2264; Herodians, that is, partisans of Herodes: - Herodians."]},{"k":"G2266","v":["Ἡρωδιάς","Hērōdias","hay-ro-dee-as'","From G2264; Herodias, a woman of the Herodian family: - Herodias."]},{"k":"G2267","v":["Ἡροδίων","Hērōdiōn","hay-ro-dee'-ohn","From G2264; Herodion, a Christian: - Herodion."]},{"k":"G2268","v":["Ἡσαΐ́ας","Hēsaias","hay-sah-ee'-as","Of Hebrew origin [H3470]; Hesaias (that is, Jeshajah), an Israelite: - Esaias."]},{"k":"G2269","v":["Ἠσαῦ","Ēsau","ay-sow'","Of Hebrew origin [H6215]; Esau, an Edomite: - Esau."]},{"k":"G2270","v":["ἡσυχάζω","hēsuchazō","hay-soo-khad'-zo","From the same as G2272; to keep still (intransitively), that is, refrain from labor, meddlesomeness or speech: - cease, hold peace, be quiet, rest."]},{"k":"G2271","v":["ἡσυχία","hēsuchia","hay-soo-khee'-ah","Feminine of G2272; (as noun) stillness, that is, desistance from bustle or language: - quietness, silence."]},{"k":"G2272","v":["ἡσύχιος","hēsuchios","hay-soo'-khee-os","A prolonged form of a compound probably of a derivative of the base of G1476 and perhaps G2192; properly keeping one’s seat (sedentary), that is, (by implication) still (undisturbed, undisturbing): - peaceable, quiet."]},{"k":"G2273","v":["ἤτοι","ētoi","ay'-toy","From G2228 and G5104; either indeed: - whether."]},{"k":"G2274","v":["ἡττάω","hēttaō","hayt-tah'-o","From the same as G2276; to make worse, that is, vanquish (literally or figuratively); by implication to rate lower: - be inferior, overcome."]},{"k":"G2275","v":["ἥττημα","hēttēma","hayt'-tay-mah","From G2274; a deterioration, that is, (objectively) failure or (subjectively) loss: - diminishing, fault."]},{"k":"G2276","v":["ἥττον","hētton","hate'-ton","Neuter of a compound of ἧκα hēka ( slightly) used for that of G2556; worse (as noun); by implication less (as adverb): - less, worse."]},{"k":"G2277","v":["ἤτω","ētō","ay'-to","Third person singular imperative of G1510; let him (or it) be: - let . . . be."]},{"k":"G2278","v":["ἠχέω","ēcheō","ay-kheh'-o","From G2279; to make a loud noise, that is, reverberate: - roar, sound."]},{"k":"G2279","v":["ἦχος","ēchos","ay'-khos","Of uncertain affinity; a loud or confused noise (“echo”), that is, roar; figuratively a rumor: - fame, sound."]},{"k":"G2280","v":["Θαδδαῖος","Thaddaios","thad-dah'-yos","Of uncertain origin; Thaddaeus, one of the Apostles: - Thaddus."]},{"k":"G2281","v":["θάλασσα","thalassa","thal'-as-sah","Probably prolonged from G251; the sea (generally or specifically): - sea."]},{"k":"G2282","v":["θάλπω","thalpō","thal'-po","Probably akin to θάλλω thallō (to warm); to brood, that is, (figuratively) to foster: - cherish."]},{"k":"G2283","v":["Θάμαρ","Thamar","tham'-ar","Of Hebrew origin [H8559]; Thamar (that is, Tamar), an Israelitess: - Thamar."]},{"k":"G2284","v":["θαμβέω","thambeō","tham-beh'-o","From G2285; to stupefy (with surprise), that is, astound: - amaze, astonish."]},{"k":"G2285","v":["θάμβος","thambos","tham'-bos","Akin to an obsolete τάφω taphō (to dumbfound); stupefaction (by surprise), that is, astonishment: - X amazed, + astonished, wonder."]},{"k":"G2286","v":["θανάσιμος","thanasimos","than-as'-ee-mos","From G2288; fatal, that is, poisonous: - deadly."]},{"k":"G2287","v":["θανατήφορος","thanatēphoros","than-at-ay'-for-os","From (the feminine form of) G2288 and G5342; death bearing, that is, fatal: - deadly."]},{"k":"G2288","v":["θάνατος","thanatos","than'-at-os","From G2348; (properly an adjective used as a noun) death (literally or figuratively): - X deadly, (be . . .) death."]},{"k":"G2289","v":["θανατόω","thanatoō","than-at-o'-o","From G2288; to kill (literally or figuratively): - become dead, (cause to be) put to death, kill, mortify."]},{"k":"G2290","v":["θάπτω","thaptō","thap'-to","A primary verb; to celebrate funeral rites, that is, inter: - bury."]},{"k":"G2291","v":["Θάρα","Thara","thar'-ah","Of Hebrew origin [H8646]; Thara (that is, Terach), the father of Abraham: - Thara."]},{"k":"G2292","v":["θαῤῥέω","tharrheō","thar-hreh'-o","Another form for G2293; to exercise courage: - be bold, X boldly, have confidence, be confident. Compare G5111."]},{"k":"G2293","v":["θαρσέω","tharseō","thar-seh'-o","From G2294; to have courage: - be of good cheer (comfort). Compare G2292."]},{"k":"G2294","v":["θάρσος","tharsos","thar'-sos","Akin (by transposition) to θράσος thrasos (daring); boldness (subjectively): - courage."]},{"k":"G2295","v":["θαῦμα","thauma","thou'-mah","Apparently from a form of G2300; wonder (properly concrete; but by implication abstract): - admiration."]},{"k":"G2296","v":["θαυμάζω","thaumazō","thou-mad'-zo","From G2295; to wonder; by implication to admire: - admire, have in admiration, marvel, wonder."]},{"k":"G2297","v":["θαυμάσιος","thaumasios","thow-mas'-ee-os","From G2295; wondrous, that is, (neuter as noun) a miracle: - wonderful thing."]},{"k":"G2298","v":["θαυμαστός","thaumastos","thow-mas-tos'","From G2296; wondered at, that is, (by implication) wonderful: - marvel (-lous)."]},{"k":"G2299","v":["θεά","thea","theh-ah'","Feminine of G2316; a female deity: - goddess."]},{"k":"G2300","v":["θεάομαι","theaomai","theh-ah'-om-ahee","A prolonged form of a primary verb; to look closely at, that is, (by implication) to perceive (literally or figuratively); by extension to visit: - behold, look (upon), see. Compare G3700."]},{"k":"G2301","v":["θεατρίζω","theatrizō","theh-at-rid'-zo","From G2302; to expose as a spectacle: - make a gazing stock."]},{"k":"G2302","v":["θέατρον","theatron","theh'-at-ron","From G2300; a place for public show (“theatre”), that is, general audience room; by implication a show itself (figuratively): - spectacle, theatre."]},{"k":"G2303","v":["θεῖον","theion","thi'-on","Probably neuter of G2304 (in its original sense of flashing); sulphur: - brimstone."]},{"k":"G2304","v":["θεῖος","theios","thi'-os","From G2316; godlike (neuter as noun, divinity): - divine, godhead."]},{"k":"G2305","v":["θειότης","theiotēs","thi-ot'-ace","From G2304; divinity (abstractly): - godhead."]},{"k":"G2306","v":["θειώδης","theiōdēs","thi-o'-dace","From G2303 and G1491; sulphur like, that is, sulphurous: - brimstone."]},{"k":"G2307","v":["θέλημα","thelēma","thel'-ay-mah","From the prolonged form of G2309; a determination (properly the thing), that is, (actively) choice (specifically purpose, decree; abstractly volition) or (passively) inclination: - desire, pleasure, will."]},{"k":"G2308","v":["θέλησις","thelēsis","thel'-ay-sis","From G2309; determination (properly the act), that is, option: - will."]},{"k":"G2309","v":["θέλω, ἐθέλω","thelō    ethelō","thel'-o, eth-el'-o","Either the first or the second form may be used. In certain tenses θελέω theleō    thel-eh'-o (and ἐθέλέω  etheleō eth-el-eh'-o) are used, which are otherwise obsolete; apparently strengthened from the alternate form of G138; to determine (as an active voice option from subjective impulse; whereas G1014 properly denotes rather a passive voice acquiescence in objective considerations), that is, choose or prefer (literally or figuratively); by implication to wish, that is, be inclined to (sometimes adverbially gladly); impersonally for the future tense, to be about to; by Hebraism to delight in: - desire, be disposed (forward), intend, list, love, mean, please, have rather, (be) will (have, -ling, -ling [ly])."]},{"k":"G2310","v":["θεμέλιος","themelios","them-el'-ee-os","From a derivative of G5087; something put down, that is, a substruction (of a building, etc.), (literally or figuratively): - foundation."]},{"k":"G2311","v":["θεμελιόω","themelioō","them-el-ee-o'-o","From G2310; to lay a basis for, that is, (literally) erect, or (figuratively) consolidate: - (lay the) found (-ation), ground, settle."]},{"k":"G2312","v":["θεοδίδακτος","theodidaktos","theh-od-id'-ak-tos","From G2316 and G1321; divinely instructed: - taught of God."]},{"k":"G2313","v":["θεομαχέω","theomacheō","theh-o-makh-eh'-o","From G2314; to resist deity: - fight against God."]},{"k":"G2314","v":["θεόμαχος","theomachos","theh-om'-akh-os","From G2316 and G3164; an opponent of deity: - to fight against God."]},{"k":"G2315","v":["θεόπνευστος","theopneustos","theh-op'-nyoo-stos","From G2316 and a presumed derivative of G4154; divinely breathed in: - given by inspiration of God."]},{"k":"G2316","v":["θεός","theos","theh'-os","Of uncertain affinity; a deity, especially (with G3588) the supreme Divinity; figuratively a magistrate; by Hebraism very: - X exceeding, God, god [-ly, -ward]."]},{"k":"G2317","v":["θεοσέβεια","theosebeia","theh-os-eb'-i-ah","From G2318; devoutness, that is, piety: - godliness."]},{"k":"G2318","v":["θεοσεβής","theosebēs","theh-os-eb-ace'","From G2316 and G4576; reverent of God, that is, pious: - worshipper of God."]},{"k":"G2319","v":["θεοστυγής","theostugēs","theh-os-too-gace'","From G2316 and the base of G4767; hateful to God, that is, impious: - hater of God."]},{"k":"G2320","v":["θεότης","theotēs","theh-ot'-ace","From G2316; divinity (abstractly): - godhead."]},{"k":"G2321","v":["Θεόφιλος","Theophilos","theh-of'-il-os","From G2316 and G5384; friend of God; Theophilus, a Christian: - Theophilus."]},{"k":"G2322","v":["θεραπεία","therapeia","ther-ap-i'-ah","From G2323; attendance (specifically medical, that is, cure); figuratively and collectively domestics: - healing, household."]},{"k":"G2323","v":["θεραπεύω","therapeuō","ther-ap-yoo'-o","From the same as G2324; to wait upon menially, that is, (figuratively) to adore (God), or (specifically) to relieve (of disease): - cure, heal, worship."]},{"k":"G2324","v":["θεράπων","therapōn","ther-ap'-ohn","Apparently a participle from an otherwise obsolete derivation of the base of G2330; a menial attendant (as if cherishing): - servant."]},{"k":"G2325","v":["θερίδω","theridō","ther-id'-zo","From G2330 (in the sense of the crop); to harvest: - reap."]},{"k":"G2326","v":["θερισμός","therismos","ther-is-mos'","From G2325; reaping, that is, the crop: - harvest."]},{"k":"G2327","v":["θεριστής","theristēs","ther-is-tace'","From G2325; a harvester: - reaper."]},{"k":"G2328","v":["θερμαίνω","thermainō","ther-mah'ee-no","From G2329; to heat (oneself): - (be) warm (-ed, self)."]},{"k":"G2329","v":["θέρμη","thermē","ther'-may","From the base of G2330; warmth: - heat."]},{"k":"G2330","v":["θέρος","theros","ther'-os","From a primary word θέρω therō (to heat); properly heat, that is, summer: - summer."]},{"k":"G2331","v":["Θεσσαλονικεύς","Thessalonikeus","thes-sal-on-ik-yoos'","From G2332; a Thessalonican, that is, inhabitant of Thessalonice: - Thessalonian."]},{"k":"G2332","v":["Θεσσαλονίκη","Thessalonikē","thes-sal-on-ee'-kay","From Θεσσαλός Thessalos (a Thessalian) and G3529; Thessalonice, a place in Asia Minor: - Thessalonica."]},{"k":"G2333","v":["Θευδᾶς","Theudas","thyoo-das'","Of uncertain origin; Theudas, as Israelite: - Theudas."]},{"k":"G2334","v":["θεωρέω","theōreō","theh-o-reh'-o","From a derivative of G2300 (perhaps by adverb of G3708); to be a spectator of, that is, discern, (literally, figuratively [experience] or intensively [acknowledge]): - behold, consider, look on, perceive, see. Compare G3700."]},{"k":"G2335","v":["θεωρία","theōria","theh-o-ree'-ah","From the same as G2334; spectatorship, that is, (concretely) a spectacle: - sight."]},{"k":"G2336","v":["θήκη","thēkē","thay'-kay","From G5087; a receptacle, that is, scabbard: - sheath."]},{"k":"G2337","v":["θηλάζω","thēlazō","thay-lad'-zo","From θηλή thēlē (the nipple); to suckle; by implication to suck: - (give) suck (-ling)."]},{"k":"G2338","v":["θῆλυς","thēlus","thay'-loos","From the same as G2337; female: - female, woman."]},{"k":"G2339","v":["θήρα","thēra","thay'-rah","From θήρ thēr (a wild animal, as game); hunting, that is, (figuratively) destruction: - trap."]},{"k":"G2340","v":["θηρεύω","thēreuō","thay-ryoo'-o","From G2339; to hunt (an animal), that is, (figuratively) to carp at: - catch."]},{"k":"G2341","v":["θηριομαχέω","thēriomacheō","thay-ree-om-akh-eh'-o","From a compound of G2342 and G3164; to be a beast fighter (in the gladiatorial show), that is, (figuratively) to encounter (furious men): - fight with wild beasts."]},{"k":"G2342","v":["θηρίον","thērion","thay-ree'-on","Diminutive from the same as G2339; a dangerous animal: - (venomous, wild) beast."]},{"k":"G2343","v":["θησαυρίζω","thēsaurizō","thay-sow-rid'-zo","From G2344; to amass or reserve (literally or figuratively): - lay up (treasure), (keep) in store, (heap) treasure (together, up)."]},{"k":"G2344","v":["θησαυρός","thēsauros","thay-sow-ros'","From G5087; a deposit, that is, wealth (literally or figuratively): - treasure."]},{"k":"G2345","v":["θιγγάνω","thigganō","thing-gan'-o","A prolonged form of an obsolete primary word θίγω thigō (to finger); to manipulate, that is, have to do with; by implication to injure: - handle, touch."]},{"k":"G2346","v":["θλίβω","thlibō","thlee'-bo","Akin to the base of G5147; to crowd (literally or figuratively): - afflict, narrow, throng, suffer tribulation, trouble."]},{"k":"G2347","v":["θλίψις","thlipsis","thlip'-sis","From G2346; pressure (literally or figuratively): - afflicted, (-tion), anguish, burdened, persecution, tribulation, trouble."]},{"k":"G2348","v":["θνήσκω","thnēskō","thnay'-sko","A strengthened form of a simpler primary word θάνω thanō (which is used for it only in certain tenses); to die (literally or figuratively): - be dead, die."]},{"k":"G2349","v":["θνητός","thnētos","thnay-tos'","From G2348; liable to die: - mortal (-ity)."]},{"k":"G2350","v":["θορυβέω","thorubeō","thor-oo-beh'-o","From G2351; to be in tumult, that is, disturb, clamor: - make ado (a noise), trouble self, set on an uproar."]},{"k":"G2351","v":["θόρυβος","thorubos","thor'-oo-bos","From the base of G2360; a disturbance: - tumult, uproar."]},{"k":"G2352","v":["θραύω","thrauō","throw'-o","A primary verb; to crush: - bruise. Compare G4486."]},{"k":"G2353","v":["θρέμμα","thremma","threm'-mah","From G5142; stock (as raised on a farm): - cattle."]},{"k":"G2354","v":["θρηνέω","thrēneō","thray-neh'-o","From G2355; to bewail: - lament, mourn."]},{"k":"G2355","v":["θρῆνος","thrēnos","thray'-nos","From the base of G2360; wailing: - lamentation."]},{"k":"G2356","v":["θρησκεία","thrēskeia","thrace-ki'-ah","From a derivative of G2357; ceremonial observance: - religion, worshipping."]},{"k":"G2357","v":["θρῆσκος","thrēskos","thrace'-kos","Probably from the base of G2360; ceremonious in worship (as demonstrative), that is, pious: - religious."]},{"k":"G2358","v":["θριαμβεύω","thriambeuō","three-am-byoo'-o","From a prolonged compound of the base of G2360 and a derivative of G680 (meaning a noisy iambus, sung in honor of Bacchus); to make an acclamatory procession, that is, (figuratively) to conquer or (by Hebraism) to give victory: - (cause) to triumph (over)."]},{"k":"G2359","v":["θρίξ, τριχός","thrix    trichos","threeks","Of uncertain derivation; hair: - hair. Compare G2864."]},{"k":"G2360","v":["θροέω","throeō","thro-eh'-o","From θρέομαι threomai (to wail); to clamor, that is, (by implication) to frighten: - trouble."]},{"k":"G2361","v":["θρόμβος","thrombos","throm'-bos","Perhaps from G5142 (in the sense of thickening); a clot: - great drop."]},{"k":"G2362","v":["θρόνος","thronos","thron'-os","From θράω thraō (to sit); a stately seat (“throne”); by implication power or (concretely) a potentate: - seat, throne."]},{"k":"G2363","v":["Θυάτειρα","Thuateira","thoo-at'-i-rah","Of uncertain derivation; Thyatira, a place in Asia Minor: - Thyatira."]},{"k":"G2364","v":["θυγάτηρ","thugatēr","thoo-gat'-air","Apparently a primary word (compare “daughter”); a female child, or (by Hebraism) descendant (or inhabitant): - daughter."]},{"k":"G2365","v":["θυγάτριον","thugatrion","thoo-gat'-ree-on","From G2364; a daughterling: - little (young) daughter."]},{"k":"G2366","v":["θύελλα","thuella","thoo'-el-lah","From G2380 (in the sense of blowing) a storm: - tempest."]},{"k":"G2367","v":["θύΐνος","thuinos","thoo'-ee-nos","From a derivative of G2380 (in the sense of blowing; denoting a certain fragrant tree); made of citron wood: - thyine."]},{"k":"G2368","v":["θυμίαμα","thumiama","thoo-mee'-am-ah","From G2370; an aroma, that is, fragrant powder burnt in religious service; by implication the burning itself: - incense, odour."]},{"k":"G2369","v":["θυμιαστήριον","thumiastērion","thoo-mee-as-tay'-ree-on","From a derivative of G2370; a place of fumigation, that is, the altar of incense (in the Temple): - censer."]},{"k":"G2370","v":["θυμιάω","thumiaō","thoo-mee-ah'-o","From a derivative of G2380 (in the sense of smoking); to fumigate, that is, offer aromatic fumes: - burn incense."]},{"k":"G2371","v":["θυμομαχέω","thumomacheō","thoo-mom-akh-eh'-o","From a presumed compound of G2372 and G3164; to be in a furious fight, that is, (figuratively) to be exasperated: - be highly displeased."]},{"k":"G2372","v":["θυμός","thumos","thoo-mos'","From G2380; passion (as if breathing hard): - fierceness, indignation, wrath. Compare G5590."]},{"k":"G2373","v":["θυμόω","thumoō","thoo-mo'-o","From G2372; to put in a passion, that is, enrage: - be wroth."]},{"k":"G2374","v":["θύρα","thura","thoo'-rah","Apparently a primary word (compare “door”); a portal or entrance (the opening or the closure, literally or figuratively): - door, gate."]},{"k":"G2375","v":["θυρεός","thureos","thoo-reh-os'","From G2374; a large shield (as door shaped): - shield."]},{"k":"G2376","v":["θυρίς","thuris","thoo-rece'","From G2374; an aperture, that is, window: - window."]},{"k":"G2377","v":["θυρωρός","thurōros","Thoo-ro-ros'","From G2374 and οὖρος ouros (a watcher); a gate warden: - that kept the door, porter."]},{"k":"G2378","v":["θυσία","thusia","thoo-see'-ah","From G2380; sacrifice (the act or the victim, literally or figuratively): - sacrifice."]},{"k":"G2379","v":["θυσιαστήριον","thusiastērion","thoo-see-as-tay'-ree-on","From a derivative of G2378; a place of sacrifice, that is, an altar (specifically or generally, literally or figuratively): - altar."]},{"k":"G2380","v":["θύω","thuō","thoo'-o","A primary verb; properly to rush (breathe hard, blow, smoke), that is, (by implication) to sacrifice (properly by fire, but generally); by extension to immolate (slaughter for any purpose): - kill, (do) sacrifice, slay."]},{"k":"G2381","v":["Θωμᾶς","Thōmas","tho-mas'","Of Chaldee origin (compare [H8380]); the twin; Thomas, a Christian: - Thomas."]},{"k":"G2382","v":["θώραξ","thōrax","tho'-rax","Of uncertain affinity; the chest (“thorax”), that is, (by implication) a corslet: - breastplate."]},{"k":"G2383","v":["Ἰάειρος","Iaeiros","ee-ah'-i-ros","Of Hebrew origin [H2971]; Jairus (that is, Jair), an Israelite: - Jairus."]},{"k":"G2384","v":["Ἰακώβ","Iakōb","ee-ak-obe'","Of Hebrew origin [H3290]; Jacob (that is, Ja'akob), the pogenitor of the Israelites; also an Israelite: - Jacob."]},{"k":"G2385","v":["Ἰάκωβος","Iakōbos","ee-ak'-o-bos","The same as G2384 Graecized; Jacobus, the name of three Israelites: - James."]},{"k":"G2386","v":["ἴαμα","iama","ee'-am-ah","From G2390; a cure (the effect): - healing."]},{"k":"G2387","v":["Ἰαμβρῆς","Iambrēs","ee-am-brace'","Of Egyptian origin; Jambres, an Egyptian: - Jambres."]},{"k":"G2388","v":["Ἰαννά","Ianna","ee-an-nah'","Probably of Hebrew origin (compare [H3238]); Janna, an Israelite: - Janna."]},{"k":"G2389","v":["Ἰαννῆς","Iannēs","ee-an-nace'","Of Egyptian origin; Jannes, an Egyptian: - Jannes."]},{"k":"G2390","v":["ἰάομαι","iaomai","ee-ah'-om-ahee","Middle voice of apparently a primary verb; to cure (literally or figuratively): - heal, make whole."]},{"k":"G2391","v":["Ἰάρεδ","Iared","ee-ar'-ed","Of Hebrew origin [H3382]; Jared (that is, Jered), an antediluvian: - Jared."]},{"k":"G2392","v":["ἴασις","iasis","ee'-as-is","From G2390; curing (the act): - cure, heal (-ing)."]},{"k":"G2393","v":["ἴασπις","iaspis","ee'-as-pis","Probably of foreign origin (see [H3471]); “jasper”, a gem: - jasper."]},{"k":"G2394","v":["Ἰάσων","Iasōn","ee-as'-oan","Future active participle masculine of G2390; about to cure; Jason, a Christian: - Jason."]},{"k":"G2395","v":["ἰατρός","iatros","ee-at-ros'","From G2390; a physician: - physician."]},{"k":"G2396","v":["ἴδε","ide","id'-eh","Second person singular imperative active of G1492; used as interjection to denote surprise; lo!: - behold, lo, see."]},{"k":"G2397","v":["ἰδέα","idea","id-eh'-ah","From G1492; a sight (compare figuratively “idea”), that is, aspect: - countenance."]},{"k":"G2398","v":["ἴδιος","idios","id'-ee-os","Of uncertain affinity; pertaining to self, that is, one's own; by implication private or separate: - X his acquaintance, when they were alone, apart, aside, due, his (own, proper, several), home, (her, our, thine, your) own (business), private (-ly), proper, severally, their (own)."]},{"k":"G2399","v":["ἰδιώτης","idiōtēs","id-ee-o'-tace","From G2398; a private person, that is, (by implication) an ignoramus (compare “idiot”): - ignorant, rude, unlearned."]},{"k":"G2400","v":["ἰδού","idou","id-oo'","Second person singular imperative middle voice of G1492; used as imperative lo!: - behold, lo, see."]},{"k":"G2401","v":["Ἰδουμαία","Idoumaia","id-oo-mah'-yah","Of Hebrew origin [H123]; Idumaea (that is, Edom), a region East (and South) of Palestine: - Iduma."]},{"k":"G2402","v":["ἱδρός","hidros","hid-roce'","A strengthened form of a primary word ἴδος idos (sweat); perspiration: - sweat."]},{"k":"G2403","v":["Ἰεζαβήλ","Iezabēl","ee-ed-zab-ale'","Of Hebrew origin [H348]; Jezabel (that is, Jezebel), a Tyrian woman (used as a synonym of a termagant or false teacher): - Jezabel."]},{"k":"G2404","v":["Ἱεράπολις","Hierapolis","hee-er-ap'-ol-is","From G2413 and G4172; holy city; Hierapolis, a place in Asia Minor: - Hierapolis."]},{"k":"G2405","v":["ἱερατεία","hierateia","hee-e-at-i'-ah","From G2407; priestliness, that is, the sacerdotal function: - office of the priesthood, priest’s office."]},{"k":"G2406","v":["ἱεράτευμα","hierateuma","hee-er-at'-yoo-mah","From G2407; the priestly fraternity, that is, a sacerdotal order (figuratively): - priesthood."]},{"k":"G2407","v":["ἱερατεύω","hierateuō","hee-er-at-yoo'-o","Prolongation from G2409; to be a priest, that is, perform his functions: - execute the priest’s office."]},{"k":"G2408","v":["Ἱερεμίας","Hieremias","hee-er-em-ee'-as","Of Hebrew origin [H3414]; Hieremias (that is, Jermijah), an Israelite: - Jeremiah."]},{"k":"G2409","v":["ἱερεύς","hiereus","hee-er-yooce'","From G2413; a priest (literally or figuratively): - (high) priest."]},{"k":"G2410","v":["Ἱεριχώ","Hierichō","hee-er-ee-kho'","Of Hebrew origin [H3405]; Jericho, a place in Palestine: - Jericho."]},{"k":"G2411","v":["ἱερόν","hieron","hee-er-on'","Neuter of G2413; a sacred place, that is, the entire precincts (whereas G3485 denotes the central sanctuary itself) of the Temple (at Jerusalem or elsewhere): - temple."]},{"k":"G2412","v":["ἱεροπρεπής","hieroprepēs","hee-er-op-rep-ace'","From G2413 and the same as G4241; reverent: - as becometh holiness."]},{"k":"G2413","v":["ἱερός","hieros","hee-er-os'","Of uncertain affinity; sacred: - holy."]},{"k":"G2414","v":["Ἱεροσόλυμα","Hierosoluma","hee-er-os-ol'-oo-mah","Of Hebrew origin [H3389]; Hierosolyma (that is, Jerushalaim), the capital of Palestine: - Jerusalem. Compare G2419."]},{"k":"G2415","v":["Ἱεροσολυμίτης","Hierosolumitēs","hee-er-os-ol-oo-mee'-tace","From G2414; a Hierosolymite, that is, inhabitant of Hierosolyma: - of Jerusalem."]},{"k":"G2416","v":["ἱεροσυλέω","hierosuleō","hee-er-os-ool-eh'-o","From G2417; to be a temple robber (figuratively): - commit sacrilege."]},{"k":"G2417","v":["ἱερόσυλος","hierosulos","hee-er-os'-oo-los","From G2411 and G4813; a temple despoiler: - robber of churches."]},{"k":"G2418","v":["ἱερουργέω","hierourgeō","hee-er-oorg-eh'-o","From a compound of G2411 and the base of G2041; to be a temple worker, that is, officiate as a priest (figuratively): - minister."]},{"k":"G2419","v":["Ἱερουσαλήμ","Hierousalēm","hee-er-oo-sal-ame'","Of Hebrew origin [H3389]; Hierusalem (that is, Jerushalem), the capital of Palestine: - Jerusalem. Compare G2414."]},{"k":"G2420","v":["ἱερωσύνη","hierōsunē","hee-er-o-soo'-nay","From G2413; sacredness, that is, (by implication) the priestly office: - priesthood."]},{"k":"G2421","v":["Ἰεσσαί","Iessai","es-es-sah'ee","Of Hebrew origin [H3448]; Jessae (that is, Jishai), an Israelite: - Jesse."]},{"k":"G2422","v":["Ἰεφθάε","Iephthae","ee-ef-thah'-eh","Of Hebrew origin [H3316]; Jephthae (that is, Jiphtach), an Israelite: - Jephthah."]},{"k":"G2423","v":["Ἰεχονίας","Iechonias","ee-ekh-on-ee'-as","Of Hebrew origin [H3204]; Jechonias (. e. Jekonjah), an Israelite: - Jechonias."]},{"k":"G2424","v":["Ἰησοῦς","Iēsous","ee-ay-sooce'","Of Hebrew origin [H3091]; Jesus (that is, Jehoshua), the name of our Lord and two (three) other Israelites: - Jesus."]},{"k":"G2425","v":["ἱκανός","hikanos","hik-an-os'","From ἵκω hikō (ἱκάνω or ἱκνέομαι; akin to G2240; to arrive); competent (as if coming in season), that is, ample (in amount) or fit (in character): - able, + content, enough, good, great, large, long (while), many, meet, much, security, sore, sufficient, worthy."]},{"k":"G2426","v":["ἱκανότης","hikanotēs","hik-an-ot'-ace","From G2425; ability: - sufficiency."]},{"k":"G2427","v":["ἱκανόω","hikanoō","hik-an-o'-o","From G2425; to enable, that is, qualify: - make able (meet)."]},{"k":"G2428","v":["ἱκετηρία","hiketēria","hik-et-ay-ree'-ah","From a derivative of the base of G2425 (through the idea of approaching for a favor); intreaty: - supplication."]},{"k":"G2429","v":["ἱκμάς","hikmas","hik-mas'","Of uncertain affinity; dampness: - moisture."]},{"k":"G2430","v":["Ἰκόνιον","Ikonion","ee-kon'-ee-on","Perhaps from G1504; image like; Iconium, a place in Asia Minor: - Iconium."]},{"k":"G2431","v":["ἱλαρός","hilaros","hil-ar-os'","From the same as G2436; propitious or merry (“hilarious”), that is, prompt or willing: - cheerful."]},{"k":"G2432","v":["ἱλαρότης","hilarotēs","hil-ar-ot'-ace","From G2431; alacrity: - cheerfulness."]},{"k":"G2433","v":["ἱλάσκομαι","hilaskomai","hil-as'-kom-ahee","Middle voice from the same as G2436; to conciliate, that is, (transitively) to atone for (sin), or (intransitively) be propitious: - be merciful, make reconciliation for."]},{"k":"G2434","v":["ἱλασμός","hilasmos","hil-as-mos'","atonement, that is, (concretely) an expiator: - propitiation."]},{"k":"G2435","v":["ἱλαστήριον","hilastērion","hil-as-tay'-ree-on","Neuter of a derivative of G2433; an expiatory (place or thing), that is, (concretely) an atoning victim, or (specifically) the lid of the Ark (in the Temple): - mercyseat, propitiation."]},{"k":"G2436","v":["ἵλεως","hileōs","hil'-eh-oce","Perhaps from the alternate form of G138; cheerful (as attractive), that is, propitious; adverbially (by Hebraism) God be gracious!, that is, (in averting some calamity) far be it: - be it far, merciful."]},{"k":"G2437","v":["Ἰλλυρικόν","Illurikon","il-loo-ree-kon'","Neuter of an adjective from a name of uncertain derivation; (the) Illyrican (shore), that is, (as a name itself) Illyricum, a region of Europe: - Illyricum."]},{"k":"G2438","v":["ἱμάς","himas","hee-mas'","Perhaps from the same as G260; a strap, that is, (specifically) the tie (of a sandal) or the lash (of a scourge): - latchet, thong."]},{"k":"G2439","v":["ἱματίζω","himatizō","him-at-id'-zo","From G2440; to dress: - clothe."]},{"k":"G2440","v":["ἱμάτιον","himation","him-at'-ee-on","Neuter of a presumed derivative of ἕννυμι hennumi (to put on); a dress (inner or outer): - apparel, cloke, clothes, garment, raiment, robe, vesture."]},{"k":"G2441","v":["ἱματισμός","himatismos","him-at-is-mos'","From G2439; clothing: - apparel (X -led), array, raiment, vesture."]},{"k":"G2442","v":["ἱμείρομαι","himeiromai","him-i'-rom-ahee","Middle voice from ἵμερος himeros (a yearning; of uncertain affinity); to long for: - be affectionately desirous."]},{"k":"G2443","v":["ἵνα","hina","hin'-ah","Probably from the same as the former part of G1438 (through the demonstrative idea; compare G3588); in order that (denoting the purpose or the result): - albeit, because, to the intent (that), lest, so as, (so) that, (for) to. Compare G3363."]},{"k":"G2444","v":["ἱνατί","hinati","hin-at-ee'","From G2443 and G5101; for what reason?, that is, why?: - wherefore, why."]},{"k":"G2445","v":["Ἰόππη","Ioppē","ee-op'-pay","Of Hebrew origin [H3305]; Joppe (that is, Japho), a place in Palestine: - Joppa."]},{"k":"G2446","v":["Ἰορδάνης","Iordanēs","ee-or-dan'-ace","Of Hebrew origin [H3383]; the Jordanes (that is, Jarden), a river of Palestine: - Jordan."]},{"k":"G2447","v":["ἰός","ios","ee-os'","Perhaps from εἶμι eimi (to go) or ἵημι hiēmi (to send); rust (as if emitted by metals); also venom (as emitted by serpents): - poison, rust."]},{"k":"G2448","v":["Ἰουδά","Iouda","ee-oo-dah'","Of Hebrew origin [H3063] or perhaps [H3194]; Judah (that is, Jehudah or Juttah), a part of (or place in) Palestine: - Judah."]},{"k":"G2449","v":["Ἰουδαία","Ioudaia","ee-oo-dah'-yah","Feminine of G2453 (with G1093 implied); the Judaean land (that is, judaea), a region of Palestine: - Juda."]},{"k":"G2450","v":["Ἰουδαΐ́ζω","Ioudaizō","ee-oo-dah-id'-zo","From G2453; to become a Judaean, that is, “judaize”: - live as the Jews."]},{"k":"G2451","v":["Ἰουδαΐκός","Ioudaikos","ee-oo-dah-ee-kos'","From G2453; Judaic, that is, resembling a Judaean: - Jewish."]},{"k":"G2452","v":["Ἰουδαΐκώς","Ioudaikōs","ee-oo-dah-ee-koce'","Adverb from G2451; Judaically or in a manner resembling a Judaean: - as do the Jews."]},{"k":"G2453","v":["Ἰουδαῖος","Ioudaios","ee-oo-dah'-yos","From G2448 (in the sense of G2455 as a country); udaean, that is, belonging to Jehudah: - Jew (-ess), of Juda."]},{"k":"G2454","v":["Ἰουδαΐσμός","Ioudaismos","ee-oo-dah-is-mos'","From G2450; “judaism”, that is, the Jewish faith and usages: - Jews’ religion."]},{"k":"G2455","v":["Ἰουδάς","Ioudas","ee-oo-das'","Of Hebrew origin [H3063]; Judas (that is, Jehudah), the name of ten Israelites; also of the posterity of one of them and its region: - Juda (-h, -s); Jude."]},{"k":"G2456","v":["Ἰουλία","Ioulia","ee-oo-lee'-ah","Feminine of the same as G2457; Julia, a Christian woman: - Julia."]},{"k":"G2457","v":["Ἰούλιος","Ioulios","ee-oo'-lee-os","Of Latin origin; Julius, a centurion: - Julius."]},{"k":"G2458","v":["Ἰουνίας","Iounias","ee-oo-nee'-as","Of Latin origin; Junias, a Christian: - Junias."]},{"k":"G2459","v":["Ἰοῦστος","Ioustos","ee-ooce'-tos","Of Latin origin (“just”); Justus, the name of three Christians: - Justus."]},{"k":"G2460","v":["ἱππεύς","hippeus","hip-yooce'","From G2462; an equestrian, that is, member of a cavalry corps: - horseman."]},{"k":"G2461","v":["ἱππικόν","hippikon","hip-pee-kon'","Neuter of a derivative of G2462; the cavalry force: - horse [-men]."]},{"k":"G2462","v":["ἵππος","hippos","hip'-pos","Of uncertain affinity; a horse: - horse."]},{"k":"G2463","v":["ἶρις","iris","ee'-ris","Perhaps from G2046 (as a symbol of the female messenger of the pagan deities); a rainbow (“iris”): - rainbow."]},{"k":"G2464","v":["Ἰσαάκ","Isaak","ee-sah-ak'","Of Hebrew origin [H3327]; Isaac (that is, Jitschak), the son of Abraham: - Isaac."]},{"k":"G2465","v":["ἰσάγγελος","isaggelos","ee-sang'-el-los","From G2470 and G32; like an angel, that is, angelic: - equal unto the angels."]},{"k":"G2466","v":["Ἰσαχάρ","Isachar","ee-sakh-ar'","Of Hebrew origin [H3485]; Isachar (that is, Jissaskar), a son of Jacob (figuratively his descendants): - Issachar."]},{"k":"G2467","v":["ἴσημι","isēmi","is'-ay-mee","Assumed by some as the base of certain irregular forms of G1942; to know: - know."]},{"k":"G2468","v":["ἴσθι","isthi","is'-thee","Second person imperative present of G1510; be thou: - + agree, be, X give thyself wholly to."]},{"k":"G2469","v":["Ἰσκαριώτης","Iskariōtēs","is-kar-ee-o'-tace","Of Hebrew origin (probably [H377] and [H7149]); inhabitants of Kerioth; Iscariotes (that is, Keriothite), an epithet of Judas the traitor: - Iscariot."]},{"k":"G2470","v":["ἴσος","isos","ee'-sos","Probably from G1492 (through the idea of seeming); similar (in amount or kind): - + agree, as much, equal, like."]},{"k":"G2471","v":["ἰσότης","isotēs","ee-sot'-ace","likeness (in condition or proportion); by implication equity: - equal (-ity)."]},{"k":"G2472","v":["ἰσότιμος","isotimos","ee-sot'-ee-mos","From G2470 and G5092; of equal value or honor: - like precious."]},{"k":"G2473","v":["ἰσόψυχος","isopsuchos","ee-sop'-soo-khos","From G2470 and G5590; of similar spirit: - likeminded."]},{"k":"G2474","v":["Ἰσραήλ","Israēl","is-rah-ale'","Of Hebrew origin [H3478]; Israel (that is, Jisrael), the adopted name of Jacob, including his descendants (literally or figuratively): - Israel."]},{"k":"G2475","v":["Ἰσραηλίτης","Israēlitēs","is-rah-ale-ee'-tace","From G2474; an “israelite”, that is, descendant of Israel (literally or figuratively): - Israelite."]},{"k":"G2476","v":["ἵστημι","histēmi","his'-tay-mee","A prolonged form of a primary word στάω staō (of the same meaning, and used for it in certain tenses); to stand (transitively or intransitively), used in various applications (literally or figuratively): - abide, appoint, bring, continue, covenant, establish, hold up, lay, present, set (up), stanch, stand (by, forth, still, up). Compare G5087."]},{"k":"G2477","v":["ἱστορέω","historeō","his-tor-eh'-o","From a derivative of G1492; to be knowing (learned), that is, (by implication) to visit for information (interview): - see."]},{"k":"G2478","v":["ἰσχυρός","ischuros","is-khoo-ros'","From G2479; forcible (literally or figuratively): - boisterous, mighty (-ier), powerful, strong (-er, man), valiant."]},{"k":"G2479","v":["ἰσχύς","ischus","is-khoos'","From a derivative of ἱς his (force; compare ἔσχον eschon; a form of G2192); forcefulness (literally or figuratively): - ability, might ([-ily]), power, strength."]},{"k":"G2480","v":["ἰσχύω","ischuō","is-khoo'-o","From G2479; to have (or exercise) force (literally or figuratively): - beable, avail, can do ([-not]), could, be good, might, prevail, be of strength, be whole, + much work."]},{"k":"G2481","v":["ἴσως","isōs","ee'-soce","Adverb from G2470; likely, that is, perhaps: - it may be."]},{"k":"G2482","v":["Ἰταλία","Italia","ee-tal-ee'-ah","Probably of foreign origin; Italia, a region of Europe: - Italy."]},{"k":"G2483","v":["Ἰταλικός","Italikos","ee-tal-ee-kos'","From G2482; Italic, that is, belonging to Italia: - Italian."]},{"k":"G2484","v":["Ἰτουραΐ́α","Itouraia","ee-too-rah'-yah","Of Hebrew origin [H3195]; Ituraea (that is, Jetur), a region of Palestine: - Itura."]},{"k":"G2485","v":["ἰχθύδιον","ichthudion","ikh-thoo'-dee-on","Diminutive from G2486; a petty fish: - little (small) fish."]},{"k":"G2486","v":["ἰχθύς","ichthus","ikh-thoos'","Of uncertain affinity; a fish: - fish."]},{"k":"G2487","v":["ἴχνος","ichnos","ikh'-nos","From ἰκνέομαι ikneomai (to arrive; compare G2240); a track (figuratively): - step."]},{"k":"G2488","v":["Ἰωαθαμ","Iōatham","ee-o-ath'-am","Of Hebrew origin [H3147]; Joatham (that is, Jotham), an Israelite: - Joatham."]},{"k":"G2489","v":["Ἰωάννα","Iōanna","ee-o-an'-nah","Feminine of the same as G2491; Joanna, a Christian: - Joanna."]},{"k":"G2490","v":["Ἰωαννᾶς","Iōannas","ee-o-an-nas'","A form of G2491; Joannas, an Israelite: - Joannas."]},{"k":"G2491","v":["Ἰωάννης","Iōannēs","ee-o-an'-nace","Of Hebrew origin [H3110]; Joannes (that is, Jochanan), the name of four Israelites: - John."]},{"k":"G2492","v":["Ἰώβ","Iōb","ee-obe'","Of Hebrew origin [H347]; Job (that is, Ijob), a patriarch: - Job."]},{"k":"G2493","v":["Ἰωήλ","Iōēl","ee-o-ale'","Of Hebrew origin [H3100]; Joel, an Israelite: - Joel."]},{"k":"G2494","v":["Ἰωνάν","Iōnan","ee-o-nan'","Probably for G2491 or G2495; Jonan, an Israelite: - Jonan."]},{"k":"G2495","v":["Ἰωνᾶς","Iōnas","ee-o-nas'","Of Hebrew origin [H3124]; Jonas (that is, Jonah), the name of two Israelites: - Jonas."]},{"k":"G2496","v":["Ἰωράμ","Iōram","ee-o-ram'","Of Hebrew origin [H3141]; Joram, an Israelite: - Joram."]},{"k":"G2497","v":["Ἰωρείμ","Iōreim","ee-o-rime'","Perhaps for G2496; Jorim, an Israelite: - Jorim."]},{"k":"G2498","v":["Ἰωσαφάτ","Iōsaphat","ee-o-saf-at'","Of Hebrew origin [H3092]; Josaphat (that is, Jehoshaphat), an Israelite: - Josaphat."]},{"k":"G2499","v":["Ἰωσή","Iōsē","ee-o-say'","Genitive case of G2500; Jose, an Israelite: - Jose."]},{"k":"G2500","v":["Ἰωσῆς","Iōsēs","ee-o-sace'","Perhaps from G2501; Joses, the name of two Israelites: - Joses. Compare G2499."]},{"k":"G2501","v":["Ἰωσήφ","Iōsēph","ee-o-safe'","Of Hebrew origin [H3130]; Joseph, the name of seven Israelites: - Joseph."]},{"k":"G2502","v":["Ἰωσίας","Iōsias","ee-o-see'-as","Of Hebrew origin [H2977]; Josias (that is, Joshiah), an Israelite: - Josias."]},{"k":"G2503","v":["ἰῶτα","iōta","ee-o'-tah","Of Hebrew origin (the tenth letter of the Hebrew alphabet); “iota”, the name of the eighth letter of the Greek alphabet, put (figuratively) for a very small part of anything: - jot."]},{"k":"G2504","v":["κἀγώ, κἀμοί, κἀμέ","kagō    kamoi    kame","kag-o', kam-oy', kam-eh'","So also the dative (second form) and accusative (third form); from G2532 and G1473; and (or also, even, etc.) I, (to) me: - (and, even, even so, so) I (also, in like wise), both me, me also."]},{"k":"G2505","v":["καθά","katha","kath-ah'","From G2596 and the neuter plural of G3739; according to which things, that is, just as: - as."]},{"k":"G2506","v":["καθαίρεσις","kathairesis","kath-ah'ee-res-is","From G2507; demolition; figuratively extinction: - destruction, pulling down."]},{"k":"G2507","v":["καθαιρέω","kathaireō","kath-ahee-reh'-o","From G2596 and G138 (including its alternate); to lower (or with violence) demolish (literally or figuratively): - cast (pull, put, take) down, destroy."]},{"k":"G2508","v":["καθαίρω","kathairō","kath-ah'ee-ro","From G2513; to cleanse, that is, (specifically) to prune; figuratively to expiate: - purge."]},{"k":"G2509","v":["καθάπερ","kathaper","kath-ap'-er","From G2505 and G4007; exactly as: - (even, as well) as."]},{"k":"G2510","v":["καθάπτω","kathaptō","kath-ap'-to","From G2596 and G680; to seize upon: - fasten on."]},{"k":"G2511","v":["καθαρίζω","katharizō","kath-ar-id'-zo","From G2513; to cleanse (literally or figuratively): - (make) clean (-se), purge, purify."]},{"k":"G2512","v":["καθαρισμός","katharismos","kath-ar-is-mos'","From G2511; a washing off, that is, (ceremonially) ablution, (morally) expiation: - cleansing, + purge, purification, (-fying)."]},{"k":"G2513","v":["καθαρός","katharos","kath-ar-os'","Of uncertain affinity; clean (literally or figuratively): - clean, clear, pure."]},{"k":"G2514","v":["καθαρότης","katharotēs","kath-ar-ot'-ace","From G2513; cleanness (ceremonially): - purification."]},{"k":"G2515","v":["καθέδρα","kathedra","kath-ed'-rah","From G2596 and the same as G1476; a bench (literally or figuratively): - seat."]},{"k":"G2516","v":["καθέζομαι","kathezomai","kath-ed'-zom-ahee","From G2596 and the base of G1476; to sit down: - sit."]},{"k":"G2517","v":["καθεξῆς","kathexēs","kath-ex-ace'","From G2596 and G1836; thereafter, that is, consecutively; as a noun (by ellipsis of noun) a subsequent person or time: - after (-ward), by (in) order."]},{"k":"G2518","v":["καθεύδω","katheudō","kath-yoo'-do","From G2596 and εὕδω heudō (to sleep); to lie down to rest, that is, (by implication) to fall asleep (literally or figuratively): - (be a-) sleep."]},{"k":"G2519","v":["καθηγητής","kathēgētēs","kath-ayg-ay-tace'","From a compound of G2596 and G2233; a guide, that is, (figuratively) a teacher: - master."]},{"k":"G2520","v":["καθήκω","kathēkō","kath-ay'-ko","From G2596 and G2240; to reach to, that is, (neuter of present active participle, figuratively as adjective) becoming: - convenient, fit."]},{"k":"G2521","v":["κάθημαι","kathēmai","kath'-ay-mahee","From G2596 and ἧμαι hēmai (to sit; akin to the base of G1476); to sit down; figuratively to remain, reside: - dwell, sit (by, down)."]},{"k":"G2522","v":["καθημερινός","kathēmerinos","kath-ay-mer-ee-nos'","From G2596 and G2250; quotidian: - daily."]},{"k":"G2523","v":["καθίζω","kathizō","kath-id'-zo","Another (active) form for G2516; to seat down, that is, set (figuratively appoint); intransitively to sit (down); figuratively to settle (hover, dwell): - continue, set, sit (down), tarry."]},{"k":"G2524","v":["καθίημι","kathiēmi","kath-ee'-ay-mee","From G2596 and ἵημι hiēmi (to send); to lower: - let down."]},{"k":"G2525","v":["καθίστημι","kathistēmi","kath-is'-tay-mee","From G2596 and G2476; to place down (permanently), that is, (figuratively) to designate, constitute, convoy: - appoint, be, conduct, make, ordain, set."]},{"k":"G2526","v":["καθό","katho","kath-o'","From G2596 and G3739; according to which thing, that is, precisely as, in proportion as: - according to that, (inasmuch) as."]},{"k":"G2527","v":["καθόλου","katholou","kath-ol'-oo","From G2596 and G3650; on the whole, that is, entirely: - at all."]},{"k":"G2528","v":["καθοπλίζω","kathoplizō","kath-op-lid'-zo","From G2596 and G3695; to equip fully with armor: - arm."]},{"k":"G2529","v":["καθοράω","kathoraō","kath-or-ah'-o","From G2596 and G3708; to behold fully, that is, (figuratively) distinctly apprehend: - clearly see."]},{"k":"G2530","v":["καθότι","kathoti","kath-ot'-ee","From G2596 and G3739 and G5100; according to which certain thing, that is, as far (or inasmuch) as: - (according, forasmuch) as, because (that)."]},{"k":"G2531","v":["καθώς","kathōs","kath-oce'","From G2596 and G5613; just (or inasmuch) as, that: - according to, (according, even) as, how, when."]},{"k":"G2532","v":["καί","kai","kahee","Apparently a primary particle, having a copulative and sometimes also a cumulative force; and, also, even, so, then, too, etc.; often used in connection (or composition) with other particles or small words: - and, also, both, but, even, for, if, indeed, likewise, moreover, or, so, that, then, therefore, when, yea, yet."]},{"k":"G2533","v":["Καΐάφας","Kaiaphas","kah-ee-af'-as","Of Chaldee origin; the dell; Caiaphas (that is, Cajepha), an Israelite: - Caiaphas."]},{"k":"G2534","v":["καίγε","kaige","ka'hee-gheh","From G2532 and G1065; and at least (or even, indeed): - and, at least."]},{"k":"G2535","v":["Κάΐν","Kain","kah'-in","Of Hebrew origin [H7014]; Cain (that is, Cajin), the son of Adam: - Cain."]},{"k":"G2536","v":["Καΐνάν","Kainan","Kah-ee-nan'","Of Hebrew origin [H7018]; Cainan (that is, Kenan), the name of two patriarchs: - Cainan."]},{"k":"G2537","v":["καινός","kainos","kahee-nos'","Of uncertain affinity; new (especially in freshness; while G3501 is properly so with respect to age): - new."]},{"k":"G2538","v":["καινότης","kainotēs","kahee-not'-ace","From G2537; renewal (figuratively): - newness."]},{"k":"G2539","v":["καίπερ","kaiper","kah'ee-per","From G2532 and G4007; and indeed, that is, nevertheless or notwithstanding: - and yet, although."]},{"k":"G2540","v":["καιρός","kairos","kahee-ros'","Of uncertain affinity; an occasion, that is, set or proper time: - X always, opportunity, (convenient, due) season, (due, short, while) time, a while. Compare G5550."]},{"k":"G2541","v":["Καῖσαρ","Kaisar","Kah'ee-sar","Of Latin origin; Caesar, a title of the Roman emperor: - Csar."]},{"k":"G2542","v":["Καισάρεια","Kaisareia","kahee-sar'-i-a","From G2541; Caesaria, the name of two places in Palestine: - Csarea."]},{"k":"G2543","v":["καίτοι","kaitoi","kah'ee-toy","From G2532 and G5104; and yet, that is, nevertheless: - although."]},{"k":"G2544","v":["καίτοιγε","kaitoige","kah'ee-toyg-eh","From G2543 and G1065; and yet indeed, that is, although really: - nevertheless, though."]},{"k":"G2545","v":["καίω","kaiō","kah'-yo","Apparently a primary verb; to set on fire, that is, kindle or (by implication) consume: - burn, light."]},{"k":"G2546","v":["κἀκεῖ","kakei","kak-i'","From G2532 and G1563; likewise in that place: - and there, there (thither) also."]},{"k":"G2547","v":["κἀκεῖθεν","kakeithen","kak-i'-then","From G2532 and G1564; likewise from that place (or time): - and afterward (from) (thence), thence also."]},{"k":"G2548","v":["κακεῖνος","kakeinos","kak-i'-nos","From G2532 and G1565; likewise that (or those): - and him (other, them), even he, him also, them (also), (and) they."]},{"k":"G2549","v":["κακία","kakia","kak-ee'-ah","From G2556; badness, that is, (subjectively) depravity, or (actively) malignity, or (passively) trouble: - evil, malice (-iousness), naughtiness, wickedness."]},{"k":"G2550","v":["κακοήθεια","kakoētheia","kak-o-ay'-thi-ah","From a compound of G2556 and G2239; bad character, that is, (specifically) mischievousness: - malignity."]},{"k":"G2551","v":["κακολογέω","kakologeō","kak-ol-og-eh'-o","From a compound of G2556 nad G3056; to revile: - curse, speak evil of."]},{"k":"G2552","v":["κακοπάθεια","kakopatheia","kak-op-ath'-i-ah","From a compound of G2256 and G3806; hardship: - suffering affliction."]},{"k":"G2553","v":["κακοπαθέω","kakopatheō","kak-op-ath-eh'-o","From the same as G2552; to undergo hardship: - be afflicted, endure afflictions (hardness), suffer trouble."]},{"k":"G2554","v":["κακοποιέω","kakopoieō","kak-op-oy-eh'-o","From G2555; to be a bad doer, that is, (objectively) to injure, or (generally) to sin: - do (-ing) evil."]},{"k":"G2555","v":["κακοποιός","kakopoios","kak-op-oy-os'","From G2556 and G4160; a bad doer; (specifically) a criminal: - evil-doer, malefactor."]},{"k":"G2556","v":["κακός","kakos","kak-os'","Apparently a primary word; worthless (intrinsically such; whereas G4190 properly refers to effects), that is, (subjectively) depraved, or (objectively) injurious: - bad, evil, harm, ill, noisome, wicked."]},{"k":"G2557","v":["κακοῦργος","kakourgos","kak-oor'-gos","From G2556 and the base of G2041; a wrong doer, that is, criminal: - evil-doer, malefactor."]},{"k":"G2558","v":["κακουχέω","kakoucheō","kak-oo-kheh'-o","From a presumed compound of G2556 and G2192; to maltreat: - which suffer adversity, torment."]},{"k":"G2559","v":["κακόω","kakoō","kak-o'-o","From G2556; to injure; figuratively to exasperate: - make evil affected, entreat evil, harm, hurt, vex."]},{"k":"G2560","v":["κακῶς","kakōs","kak-oce'","Adverb from G2556; badly (physically or morally): - amiss, diseased, evil, grievously, miserably, sick, sore."]},{"k":"G2561","v":["κάκωσις","kakōsis","kak'-o-sis","From G2559; maltreatment: - affliction."]},{"k":"G2562","v":["καλάμη","kalamē","kal-am'-ay","Feminine of G2563; a stalk of grain, that is, (collectively) stubble: - stubble."]},{"k":"G2563","v":["κάλαμος","kalamos","kal'-am-os","Of uncertain affinity; a reed (the plant or its stem, or that of a similar plant); by implication a pen: - pen, reed."]},{"k":"G2564","v":["καλέω","kaleō","kal-eh'-o","Akin to the base of G2753; to “call” (properly aloud, but used in a variety of applications, directly or otherwise): - bid, call (forth), (whose, whose sur-) name (was [called])."]},{"k":"G2565","v":["καλλιέλαιος","kallielaios","kal-le-el'-ah-yos","From the base of G2566 and G1636; a cultivated olive tree, that is, a domesticated or improved one: - good olive tree."]},{"k":"G2566","v":["καλλίον","kallion","kal-lee'-on","Neuter of the (irregular) compound of G2570; (adverbially) better than many: - very well."]},{"k":"G2567","v":["καλοδιδάσκαλος","kalodidaskalos","kal-od-id-as'-kal-os","From G2570 and G1320; a teacher of the right: - teacher of good things."]},{"k":"G2568","v":["Καλοὶ Λιμένες","Kaloi Limenes","kal-oy' lee-man'-es","Plural of G2570 and G3040; Good Harbors, that is, Fairhaven, a bay of Crete: - fair havens."]},{"k":"G2569","v":["καλοποιέω","kalopoieō","kal-op-oy-eh'-o","From G2570 and G4160; to do well, that is, live virtuously: - well doing."]},{"k":"G2570","v":["καλός","kalos","kal-os'","Of uncertain affinity; properly beautiful, but chiefly (figuratively) good (literally or morally), that is, valuable or virtuous (for appearance or use, and thus distinguished from G18, which is properly intrinsic): - X better, fair, good (-ly), honest, meet, well, worthy."]},{"k":"G2571","v":["κάλυμα","kaluma","kal'-oo-mah","From G2572; a cover, that is, veil: - vail."]},{"k":"G2572","v":["καλύπτω","kaluptō","kal-oop'-to","Akin to G2813 and G2928; to cover up (literally or figuratively): - cover, hide."]},{"k":"G2573","v":["καλῶς","kalōs","kal-oce'","Adverb from G2570; well (usually morally): - (in a) good (place), honestly, + recover, (full) well."]},{"k":"G2574","v":["κάμηλος","kamēlos","kam'-ay-los","Of Hebrew origin [H1581]; a “camel”: - camel."]},{"k":"G2575","v":["κάμινος","kaminos","kam'-ee-nos","Probably from G2545; a furnace: - furnace."]},{"k":"G2576","v":["καμμύω","kammuō","kam-moo'-o","For a compound of G2596 and the base of G3466; to shut down, that is, close the eyes: - close."]},{"k":"G2577","v":["κάμνω","kamnō","kam'-no","Apparently a primary verb; properly to toil, that is, (by implication) to tire (figuratively faint, sicken): - faint, sicken, be wearied."]},{"k":"G2578","v":["κάμπτω","kamptō","kamp'-to","Apparently a primary verb; to bend: - bow."]},{"k":"G2579","v":["κἄν","kan","kan","From G2532 nad G1437; and (or even) if: - and (also) if (so much as), if but, at the least, though, yet."]},{"k":"G2580","v":["Κανᾶ","Kana","kan-ah'","Of Hebrew origin (compare [H7071]); Cana, a place in Palestine: - Cana."]},{"k":"G2581","v":["Κανανίτης","Kananitēs","kan-an-ee'-tace","Of Chaldee origin (compare [H7067]); zealous; Cananites, an epithet. (By mistake for a derivative from G5477): - Canaanite [by mistake for a derivationfrom G5477]."]},{"k":"G2582","v":["Κανδάκη","Kandakē","kan-dak'-ay","Of foreign origin; Candace, an Egyptian queen: - Candace."]},{"k":"G2583","v":["κανών","kanōn","kan-ohn'","From κάνη kanē (a straight reed, that is, rod); a rule (“canon”), that is, (figuratively) a standard (of faith and practice); by implication a boundary, that is, (figuratively) a sphere (of activity): - line, rule."]},{"k":"G2584","v":["Καπερναούμ","Kapernaoum","cap-er-nah-oom'","Of Hebrew origin (probably [H3723] and [H5151]); Capernaum (that is, Caphanachum), a place in Palestine: - Capernaum."]},{"k":"G2585","v":["καπηλεύω","kapēleuō","kap-ale-yoo'-o","From κάπηλος kapēlos (a huckster); to retail, that is, (by implication) to adulterate (figuratively): - corrupt."]},{"k":"G2586","v":["καπνός","kapnos","kap-nos'","Of uncertain affinity; smoke: - smoke."]},{"k":"G2587","v":["Καππαδοκία","Kappadokia","kap-pad-ok-ee'-ah","Of foreign origin; Cappadocia, a region of Asia Minor: - Cappadocia."]},{"k":"G2588","v":["καρδία","kardia","kar-dee'-ah","Prolonged from a primary κάρ kar (Latin cor, “heart”); the heart, that is, (figuratively) the thoughts or feelings (mind); also (by analogy) the middle: - (+ broken-) heart (-ed)."]},{"k":"G2589","v":["καρδιογνώστης","kardiognōstēs","kar-dee-og-noce'-tace","From G2588 and G1097; a heart knower: - which knowest the hearts."]},{"k":"G2590","v":["καρπός","karpos","kar-pos'","Probably from the base of G726; fruit (as plucked), literally or figuratively: - fruit."]},{"k":"G2591","v":["Κάρπος","Karpos","kar'-pos","Perhaps for G2590; Carpus, probably a Christian: - Carpus."]},{"k":"G2592","v":["καρποφορέω","karpophoreō","kar-pof-or-eh'-o","From G2593; to be fertile (literally or figuratively): - be (bear, bring forth) fruit (-ful)."]},{"k":"G2593","v":["καρποφόρος","karpophoros","kar-pof-or'-os","From G2590 and G5342; fruitbearing (figuratively): - fruitful."]},{"k":"G2594","v":["καρτερέω","kartereō","kar-ter-eh'-o","From a derivative of G2904 (transposed); to be strong, that is, (figuratively) steadfast (patient): - endure."]},{"k":"G2595","v":["κάρφος","karphos","kar'-fos","From κάρφω karpho (to wither); a dry twig or straw: - mote."]},{"k":"G2596","v":["κατά","kata","kat-ah'","A primary particle; (preposition) down (in place or time), in varied relations (according to the case [genitive, dative or accusative] with which it is joined): - about, according as (to), after, against, (when they were) X alone, among, and, X apart, (even, like) as (concerning, pertaining to, touching), X aside, at, before, beyond, by, to the charge of, [charita-] bly, concerning, + covered, [dai-] ly, down, every, (+ far more) exceeding, X more excellent, for, from . . . to, godly, in (-asmuch, divers, every, -to, respect of), . . . by, after the manner of, + by any means, beyond (out of) measure, X mightily, more, X natural, of (up-) on (X part), out (of every), over against, (+ your) X own, + particularly, so, through (-oughout, -oughout every), thus, (un-) to (-gether, -ward), X uttermost, where (-by), with. In composition it retains many of these applications, and frequently denotes opposition, distribution or intensity."]},{"k":"G2597","v":["καταβαίνω","katabainō","kat-ab-ah'ee-no","From G2596 and the base of G939; to descend (literally or figuratively): - come (get, go, step) down, descend, fall (down)."]},{"k":"G2598","v":["καταβάλλω","kataballō","kat-ab-al'-lo","From G2596 and G906; to throw down: - cast down, lay."]},{"k":"G2599","v":["καταβαρέω","katabareō","kat-ab-ar-eh'-o","From G2596 and G916; to impose upon: - burden"]},{"k":"G2600","v":["κατάβασις","katabasis","kat-ab'-as-is","From G2597; a declivity: - descent."]},{"k":"G2601","v":["καταβιβάζω","katabibazō","kat-ab-ib-ad'-zo","From G2596 and a derivative of the base of G939; to cause to go down, that is, precipitate: - bring (thrust) down."]},{"k":"G2602","v":["καταβολή","katabolē","kat-ab-ol-ay'","From G2598; a deposition, that is, founding; figuratively conception: - conceive, foundation."]},{"k":"G2603","v":["καταβραβεύω","katabrabeuō","kat-ab-rab-yoo'-o","From G2596 and G1018 (in its original sense); to award the price against, that is, (figuratively) to defraud (of salvation): - beguile of reward."]},{"k":"G2604","v":["καταγγελεύς","kataggeleus","kat-ang-gel-yooce'","From G2605; a proclaimer: - setter forth."]},{"k":"G2605","v":["καταγγέλλω","kataggellō","kat-ang-gel'-lo","From G2596 and the base of G32; to proclaim, promulgate: - declare, preach, shew, speak of, teach."]},{"k":"G2606","v":["καταγελάω","katagelaō","kat-ag-el-ah'-o","To laugh down, that is, deride: - laugh to scorn."]},{"k":"G2607","v":["καταγινώσκω","kataginōskō","kat-ag-in-o'-sko","From G2596 and G1097; to note against, that is, find fault with: - blame, condemn."]},{"k":"G2608","v":["κατάγνυμι","katagnumi","kat-ag'-noo-mee","From G2596 and the base of G4486; to rend in pieces, that is, crack apart: - break."]},{"k":"G2609","v":["κατάγω","katagō","kat-ag'-o","From G2596 and G71; to lead down; specifically to moor a vessel: - bring (down, forth), (bring to) land, touch."]},{"k":"G2610","v":["καταγωνίζομαι","katagōnizomai","kat-ag-o-nid'-zom-ahee","From G2596 and G75; to struggle against, that is, (by implication) to overcome: - subdue."]},{"k":"G2611","v":["καταδέω","katadeō","kat-ad-eh'-o","From G2596 and G1210; to tie down, that is, bandage (a wound): - bind up."]},{"k":"G2612","v":["κατάδηλος","katadēlos","kat-ad'-ay-los","From G2596 intensively and G1212; manifest: - far more evident."]},{"k":"G2613","v":["καταδικάζω","katadikazō","kat-ad-ik-ad'-zo","From G2596 and a derivative of G1349; to adjudge against, that is, pronounce guilty: - condemn."]},{"k":"G2614","v":["καταδιώκω","katadiōkō","kat-ad-ee-o'-ko","From G2596 and G1377; to hunt down, that is, search for: - follow after."]},{"k":"G2615","v":["καταδουλόω","katadouloō","kat-ad-oo-lo'-o","From G2596 and G1402; to enslave utterly: - bring into bondage."]},{"k":"G2616","v":["καταδυναστεύω","katadunasteuō","kat-ad-oo-nas-tyoo'-o","From G2596 and a derivative of G1413; to exercise dominion against, that is, oppress: - oppress."]},{"k":"G2617","v":["καταισχύνω","kataischunō","kat-ahee-skhoo'-no","From G2596 and G153; to shame down, that is, disgrace or (by implication) put to the blush: - confound, dishonour, (be a-, make a-) shame (-d)."]},{"k":"G2618","v":["κατακαίω","katakaiō","kat-ak-ah'ee-o","From G2596 and G2545; to burn down (to the ground), that is, consume wholly: - burn (up, utterly)."]},{"k":"G2619","v":["κατακαλύπτω","katakaluptō","kat-ak-al-oop'-to","From G2596 and G2572; to cover wholly, that is, veil: - cover, hide."]},{"k":"G2620","v":["κατακαυχάομαι","katakauchaomai","kat-ak-ow-khah'-om-ahee","From G2596 and G2744; to exult against (that is, over): - boast (against), glory, rejoice against."]},{"k":"G2621","v":["κατάκειμαι","katakeimai","kat-ak'-i-mahee","From G2596 and G2749; to lie down, that is, (by implication) be sick; specifically to recline at a meal: - keep, lie, sit at meat (down)."]},{"k":"G2622","v":["κατακλάω","kataklaō","kat-ak-lah'-o","From G2596 and G2806; to break down, that is, divide: - break."]},{"k":"G2623","v":["κατακλείω","katakleiō","kat-ak-li'-o","From G2596 and G2808; to shut down (in a dungeon), that is, incarcerate: - shut up."]},{"k":"G2624","v":["κατακληροδοτέω","kataklērodoteō","kat-ak-lay-rod-ot-eh'-o","From G2596 and a derivative of a compound of G2819 and G1325; to be a giver of lots to each, that is, (by implication) to apportion an estate: - divide by lot."]},{"k":"G2625","v":["κατακλίνω","kataklinō","kat-ak-lee'-no","From G2596 and G2827; to recline down, that is, (specifically) to take a place at table: - (make) sit down (at meat)."]},{"k":"G2626","v":["κατακλύζω","katakluzō","kat-ak-lood'-zo","From G2596 and the base of G2830; to dash (wash) down, that is, (by implication) to deluge: - overflow."]},{"k":"G2627","v":["κατακλυσμός","kataklusmos","kat-ak-looce-mos'","From G2626; an inundation: - flood."]},{"k":"G2628","v":["κατακολουθέω","katakoloutheō","kat-ak-ol-oo-theh'-o","From G2596 and G190; to accompany closely: - follow (after)."]},{"k":"G2629","v":["κατακόπτω","katakoptō","kat-ak-op'-to","From G2596 and G2875; to chop down, that is, mangle: - cut."]},{"k":"G2630","v":["κατακρημνίζω","katakrēmnizō","kat-ak-rame-nid'-zo","From G2596 and a derivative of G2911; to precipitate down: - cast down headlong."]},{"k":"G2631","v":["κατάκριμα","katakrima","kat-ak'-ree-mah","From G2632; an adverse sentence (the verdict): - condemnation."]},{"k":"G2632","v":["κατακρίνω","katakrinō","kat-ak-ree'-no","From G2596 and G2919; to judge against, that is, sentence: - condemn, damn."]},{"k":"G2633","v":["κατάκρισις","katakrisis","kat-ak'-ree-sis","From G2632; sentencing adversely (the act): - condemn (-ation)."]},{"k":"G2634","v":["κατακυριεύω","katakurieuō","kat-ak-oo-ree-yoo'-o","From G2596 and G2961; to lord against, that is, control, subjugate: - exercise dominion over (lordship), be lord over, overcome."]},{"k":"G2635","v":["καταλαλέω","katalaleō","kat-al-al-eh'-o","From G2637; to be a traducer, that is, to slander: - speak against (evil of)."]},{"k":"G2636","v":["καταλαλία","katalalia","kat-al-al-ee'-ah","From G2637; defamation: - backbiting, evil speaking."]},{"k":"G2637","v":["κατάλαλος","katalalos","kat-al'-al-os","From G2596 and the base of G2980; talkative against, that is, a slanderer: - backbiter."]},{"k":"G2638","v":["καταλαμβάνω","katalambanō","kat-al-am-ban'-o","From G2596 and G1983; to take eagerly, that is, seize, possess, etc. (literally or figuratively): - apprehend, attain, come upon, comprehend, find, obtain, perceive, (over-) take."]},{"k":"G2639","v":["καταλέγω","katalegō","kat-al-eg'-o","From G2596 and G3004 (in its original meaning); to lay down, that is, (figuratively) to enrol: - take into the number."]},{"k":"G2640","v":["κατάλειμμα","kataleimma","kat-al'-ime-mah","From G2641; a remainder, that is, (by implication) a few: - remnant."]},{"k":"G2641","v":["καταλείπω","kataleipō","kat-al-i'-po","From G2596 and G3007; to leave down, that is, behind; by implication to abandon, have remaining: - forsake, leave, reserve."]},{"k":"G2642","v":["καταλιθάζω","katalithazō","kat-al-ith-ad'-zo","From G2596 and G3034; to stone down, that is, to death: - stone."]},{"k":"G2643","v":["καταλλαγή","katallagē","kat-al-lag-ay'","From G2644; exchange (figuratively adjustment), that is, restoration to (the divine) favor: - atonement, reconciliation (-ing)."]},{"k":"G2644","v":["καταλλάσσω","katallassō","kat-al-las'-so","From G2596 and G236; to change mutually, that is, (figuratively) to compound a difference: - reconcile."]},{"k":"G2645","v":["κατάλοιπος","kataloipos","kat-al'-oy-pos","From G2596 and G3062; left down (behind), that is, remaining (plural the rest): - residue."]},{"k":"G2646","v":["κατάλυμα","kataluma","kat-al'-oo-mah","From G2647; properly a dissolution (breaking up of a journey), that is, (by implication) a lodging place: - guestchamber, inn."]},{"k":"G2647","v":["καταλύω","kataluō","kat-al-oo'-o","From G2596 and G3089; to loosen down (disintegrate), that is, (by implication) to demolish (literally or figuratively); specifically (compare G2646) to halt for the night: - destroy, dissolve, be guest, lodge, come to nought, overthrow, throw down."]},{"k":"G2648","v":["καταμανθάνω","katamanthanō","kat-am-an-than'-o","From G2596 and G3129; to learn thoroughly, that is, (by implication) to note carefully: - consider."]},{"k":"G2649","v":["καταμαρτυρέω","katamartureō","kat-am-ar-too-reh'-o","From G2596 and G3140; to testify against: - witness against."]},{"k":"G2650","v":["καταμένω","katamenō","kat-am-en'-o","From G2596 and G3306; to stay fully, that is, reside: - abide."]},{"k":"G2651","v":["καταμόνας","katamonas","kat-am-on'-as","From G2596 and the accusative plural feminine of G3441 (with G5561 implied); according to sole places, that is, (adverbially) separately: - alone."]},{"k":"G2652","v":["κατανάθεμα","katanathema","kat-an-ath'-em-ah","From G2596 (intensive) and G331; an imprecation: - curse."]},{"k":"G2653","v":["καταναθεματίζω","katanathematizō","kat-an-ath-em-at-id'-zo","From G2596 (intensive) and G332; to imprecate: - curse."]},{"k":"G2654","v":["καταναλίσκω","katanaliskō","kat-an-al-is'-ko","From G2596 and G355; to consume utterly: - consume."]},{"k":"G2655","v":["καταναρκάω","katanarkaō","kat-an-ar-kah'-o","From G2596 and ναρκάω narkaō (to be numb); to grow utterly torpid, that is, (by implication) slothful (figuratively expensive): - be burdensome (chargeable)."]},{"k":"G2656","v":["κατανεύω","kataneuō","kat-an-yoo'-o","From G2596 and G3506; to nod down (towards), that is, (by analogy) to make signs to: - beckon."]},{"k":"G2657","v":["κατανοέω","katanoeō","kat-an-o-eh'-o","From G2596 and G3539; to observe fully: - behold, consider, discover, perceive."]},{"k":"G2658","v":["καταντάω","katantaō","kat-an-tah'-o","From G2596 and a derivative of G473; to meet against, that is, arrive at (literally or figuratively): - attain, come."]},{"k":"G2659","v":["κατάνυξις","katanuxis","kat-an'-oox-is","From G2660; a prickling (sensation, as of the limbs asleep), that is, (by implication [perhaps by some confusion with G3506 or even with G3571]) stupor (lethargy): - slumber."]},{"k":"G2660","v":["κατανύσσω","katanussō","kat-an-oos'-so","From G2596 and G3572; to pierce thoroughly, that is, (figuratively) to agitate violently (“sting to the quick”): - prick."]},{"k":"G2661","v":["καταξιόω","kataxioō","kat-ax-ee-o'-o","From G2596 and G515; to deem entirely deserving: - (ac-) count worthy."]},{"k":"G2662","v":["καταπατέω","katapateō","kat-ap-at-eh'-o","From G2596 and G3961; to trample down; figuratively to reject with disdain: - trample, tread (down, underfoot)."]},{"k":"G2663","v":["κατάπαυσις","katapausis","kat-ap'-ow-sis","From G2664; reposing down, that is, (by Hebraism) abode: - rest."]},{"k":"G2664","v":["καταπαύω","katapauō","kat-ap-ow'-o","From G2596 and G3973; to settle down, that is, (literally) to colonize, or (figuratively) to (cause to) desist: - cease, (give) rest (-rain)."]},{"k":"G2665","v":["καταπέτασμα","katapetasma","kat-ap-et'-as-mah","From a compound of G2596 and a congener of G4072; something spread thoroughly, that is, (specifically) the door screen (to the Most Holy Place) in the Jewish Temple: - vail."]},{"k":"G2666","v":["καταπίνω","katapinō","kat-ap-ee'-no","From G2596 and G4095; to drink down, that is, gulp entire (literally or figuratively): - devour, drown, swallow (up)."]},{"k":"G2667","v":["καταπίπτω","katapiptō","kat-ap-ip'-to","From G2596 and G4098; to fall down: - fall (down)."]},{"k":"G2668","v":["καταπλέω","katapleō","kat-ap-leh'-o","From G2596 and G4126; to sail down upon a place, that is, to land at: - arrive."]},{"k":"G2669","v":["καταπονέω","kataponeō","kat-ap-on-eh'-o","From G2596 and a derivative of G4192; to labor down, that is, wear with toil (figuratively harass): - oppress, vex."]},{"k":"G2670","v":["καταποντίζω","katapontizō","kat-ap-on-tid'-zo","From G2596 and a derivative of the same as G4195; to plunge down, that is, submerge: - drown, sink."]},{"k":"G2671","v":["κατάρα","katara","kat-ar'-ah","From G2596 (intensive) and G685; imprecation, execration: - curse (-d, -ing)."]},{"k":"G2672","v":["καταράομαι","kataraomai","kat-ar-ah'-om-ahee","Middle voice from G2671; to execrate; by analogy to doom: - curse."]},{"k":"G2673","v":["καταργέω","katargeō","kat-arg-eh'-o","From G2596 and G691; to be (render) entirely idle (useless), literally or figuratively: - abolish, cease, cumber, deliver, destroy, do away, become (make) of no (none, without) effect, fail, loose, bring (come) to nought, put away (down), vanish away, make void."]},{"k":"G2674","v":["καταριθμέω","katarithmeō","kat-ar-ith-meh'-o","From G2596 and G705; to reckon among: - number with."]},{"k":"G2675","v":["καταρτίζω","katartizō","kat-ar-tid'-zo","From G2596 and a derivative of G739; to complete thoroughly, that is, repair (literally or figuratively) or adjust: - fit, frame, mend, (make) perfect (-ly join together), prepare, restore."]},{"k":"G2676","v":["κατάρτισις","katartisis","kat-ar'-tis-is","From G2675; thorough equipment (subjectively): - perfection."]},{"k":"G2677","v":["καταρτισμός","katartismos","kat-ar-tis-mos'","From G2675; complete furnishing (objectively): - perfecting."]},{"k":"G2678","v":["κατασείω","kataseiō","kat-as-i'-o","From G2596 and G4579; to sway downward, that is, make a signal: - beckon."]},{"k":"G2679","v":["κατασκάπτω","kataskaptō","kat-as-kap'-to","From G2596 and G4626; to undermine, that is, (by implication) destroy: - dig down, ruin."]},{"k":"G2680","v":["κατασκευάζω","kataskeuazō","kat-ask-yoo-ad'-zo","From G2596 and a derivative of G4632; to prepare thoroughly (properly by external equipment; whereas G2090 refers rather to internal fitness); by implication to construct, create: - build, make, ordain, prepare."]},{"k":"G2681","v":["κατασκηνόω","kataskēnoō","kat-as-kay-no'-o","From G2596 and G4637; to camp down, that is, haunt; figuratively to remain: - lodge, rest."]},{"k":"G2682","v":["κατασκήνωσις","kataskēnōsis","kat-as-kay'-no-sis","From G2681; an encamping, that is, (figuratively) a perch: - nest."]},{"k":"G2683","v":["κατασκιάζω","kataskiazō","kat-as-kee-ad'-zo","From G2596 and a derivative of G4639; to overshade, that is, cover: - shadow."]},{"k":"G2684","v":["κατασκοπέω","kataskopeō","kat-as-kop-eh'-o","From G2685; to be a sentinel, that is, to inspect insidiously: - spy out."]},{"k":"G2685","v":["κατάσκοπος","kataskopos","kat-as'-kop-os","From G2596 (intensive) and G4649 (in the sense of a watcher); a reconnoiterer: - spy."]},{"k":"G2686","v":["κατασοφίζομαι","katasophizomai","kat-as-of-id'-zom-ahee","Middle voice from G2596 and G4679; to be crafty against, that is, circumvent: - deal subtilly with."]},{"k":"G2687","v":["καταστέλλω","katastellō","kat-as-tel'-lo","From G2596 and G4724; to put down, that is, quell: - appease, quiet."]},{"k":"G2688","v":["κατάστημα","katastēma","kat-as'-tay-mah","From G2525; properly a position or condition, that is, (subjectively) demeanor: - behaviour."]},{"k":"G2689","v":["καταστολή","katastolē","kat-as-tol-ay'","From G2687; a deposit, that is, (specifically) costume: - apparel."]},{"k":"G2690","v":["καταστρέφω","katastrephō","kat-as-tref'-o","From G2596 and G4762; to turn upside down, that is, upset: - overthrow."]},{"k":"G2691","v":["καταστρηνιάω","katastrēniaō","kat-as-tray-nee-ah'-o","From G2596 and G4763; to become voluptuous against: - begin to wax wanton against."]},{"k":"G2692","v":["καταστροφή","katastrophē","kat-as-trof-ay'","From G2690; an overturn (“catastrophe”), that is, demolition; figuratively apostasy: - overthrow, subverting."]},{"k":"G2693","v":["καταστρώννυμι","katastrōnnumi","kat-as-trone'-noo-mee","From G2596 and G4766; to strew down, that is, (by implication) to prostrate (slay): - overthrow."]},{"k":"G2694","v":["κατασύρω","katasurō","kat-as-oo'-ro","From G2596 and G4951; to drag down, that is, arrest judicially: - hale."]},{"k":"G2695","v":["κατασφάττω","katasphattō","kat-as-fat'-to","From G2596 and G4969; to kill down, that is, slaughter: - slay."]},{"k":"G2696","v":["κατασφραγίζω","katasphragizō","kat-as-frag-id'-zo","From G2596 and G4972; to seal closely: - seal."]},{"k":"G2697","v":["κατάσχεσις","kataschesis","kat-as'-khes-is","From G2722; a holding down, that is, occupancy: - possession."]},{"k":"G2698","v":["κατατίθημι","katatithēmi","kat-at-ith'-ay-mee","From G2596 and G5087; to place down, that is, deposit (literally or figuratively): - do, lay, shew."]},{"k":"G2699","v":["κατατομή","katatomē","kat-at-om-ay'","From a compound of G2596 and τέμνω temnō (to cut); a cutting down (off), that is, mutilation (ironically): - concision. Compare G609."]},{"k":"G2700","v":["κατατοξεύω","katatoxeuō","kat-at-ox-yoo'-o","From G2596 and a derivative of G5115; to shoot down with an arrow or other missile: - thrust through."]},{"k":"G2701","v":["κατατρέχω","katatrechō","kat-at-rekh'-o","From G2596 and G5143; to run down, that is, hasten from a tower: - run down."]},{"k":"G2702","v":["καταφέρω","katapherō","kat-af-er'-o","From G2596 and G5342 (including its alternate); to bear down, that is, (figuratively) overcome (with drowsiness); specifically to cast a vote: - fall, give, sink down."]},{"k":"G2703","v":["καταφευγω","katapheugō","kat-af-yoo'-go","From G2596 and G5343; to flee down (away): - flee."]},{"k":"G2704","v":["καταφθείρω","kataphtheirō","kat-af-thi'-ro","From G2596 and G5351; to spoil entirely, that is, (literally) to destroy; or (figuratively) to deprave: - corrupt, utterly perish."]},{"k":"G2705","v":["καταφιλέω","kataphileō","kat-af-ee-leh'-o","From G2596 and G5368; to kiss earnestly: - kiss."]},{"k":"G2706","v":["καταφρονέω","kataphroneō","kat-af-ron-eh'-o","From G2596 and G5426; to think against, that is, disesteem: - despise."]},{"k":"G2707","v":["καταφροντής","kataphrontēs","kat-af-ron-tace'","From G2706; a contemner: - despiser."]},{"k":"G2708","v":["καταχέω","katacheō","kat-akh-eh'-o","From G2596 and χέω cheō (to pour); to pour down (out): - pour."]},{"k":"G2709","v":["καταχθόνιος","katachthonios","kat-akh-thon'-ee-os","From G2596 and χθών chthōn (the ground); subterranean, that is, infernal (belonging to the world of departed spirits): - under the earth."]},{"k":"G2710","v":["καταχράομαι","katachraomai","kat-akh-rah'-om-ahee","From G2596 and G5530; to overuse, that is, misuse: - abuse."]},{"k":"G2711","v":["καταψύχω","katapsuchō","kat-ap-soo'-kho","From G2596 and G5594; to cool down (off), that is, refresh: - cool."]},{"k":"G2712","v":["κατείδωλος","kateidōlos","kat-i'-do-los","From G2596 (intensive) and G1497; utterly idolatrous: - wholly given to idolatry."]},{"k":"G2713","v":["κατέναντι","katenanti","kat-en'-an-tee","From G2596 and G1725; directly opposite: - before, over against."]},{"k":"G2714","v":["κατενώπιον","katenōpion","kat-en-o'-pee-on","From G2596 and G1799; directly in front of: - before (the presence of), in the sight of."]},{"k":"G2715","v":["κατεξουσιάζω","katexousiazō","kat-ex-oo-see-ad'-zo","From G2596 and G1850; to have (wield) full privilege over: - exercise authority."]},{"k":"G2716","v":["κατεργάζομαι","katergazomai","kat-er-gad'-zom-ahee","From G2596 and G2038; to work fully, that is, accomplish; by implication to finish, fashion: - cause, do (deed), perform, work (out)."]},{"k":"G2718","v":["κατέρχομαι","katerchomai","kat-er'-khom-ahee","From G2596 and G2064 (including its alternate); to come (or go) down (literally or figuratively): - come (down), depart, descend, go down, land."]},{"k":"G2719","v":["κατεσθίω","katesthiō","kat-es-thee'-o","From G2596 and G2068 (including its alternate); to eat down, that is, devour (literally or figuratively): - devour."]},{"k":"G2720","v":["κατευθύνω","kateuthunō","kat-yoo-thoo'-no","From G2590 and G2116; to straighten fully, that is, (figuratively) direct: - guide, direct."]},{"k":"G2721","v":["κατεφίστημι","katephistēmi","kat-ef-is'-tay-mee","From G2596 and G2186; to stand over against, that is, rush upon (assault): - make insurrection against."]},{"k":"G2722","v":["κατέχω","katechō","kat-ekh'-o","From G2596 and G2192; to hold down (fast), in various applications (literally or figuratively): - have, hold (fast), keep (in memory), let, X make toward, possess, retain, seize on, stay, take, withhold."]},{"k":"G2723","v":["κατηγορέω","katēgoreō","kat-ay-gor-eh'-o","From G2725; to be a plaintiff, that is, to charge with some offence: - accuse, object."]},{"k":"G2724","v":["κατηγορία","katēgoria","kat-ay-gor-ee'-ah","From G2725; a complaint (“category”), that is, criminal charge: - accusation (X -ed)."]},{"k":"G2725","v":["κατήγορος","katēgoros","kat-ay'-gor-os","From G2596 and G58; against one in the assembly, that is, a complainant at law; specifically Satan: - accuser."]},{"k":"G2726","v":["κατήφεια","katēpheia","kat-ay'-fi-ah","From a compound of G2596 and perhaps a derivative of the base of G5316 (meaning downcast in look); demureness, that is, (by implication) sadness: - heaviness."]},{"k":"G2727","v":["κατηχέω","katēcheō","kat-ay-kheh'-o","From G2596 and G2279; to sound down into the ears, that is, (by implication) to indoctrinate (“catechize”) or (generally) to apprise of: - inform, instruct, teach."]},{"k":"G2728","v":["κατιόω","katioō","kat-ee-o'-o","From G2596 and a derivative of G2447; to rust down, that is, corrode: - canker."]},{"k":"G2729","v":["κατισχύω","katischuō","kat-is-khoo'-o","From G2596 and G2480; to overpower: - prevail (against)."]},{"k":"G2730","v":["κατοικέω","katoikeō","kat-oy-keh'-o","From G2596 and G3611; to house permanently, that is, reside (literally or figuratively): - dwell (-er), inhabitant (-ter)."]},{"k":"G2731","v":["κατοίκησις","katoikēsis","kat-oy'-kay-sis","From G2730; residence (properly the act; but by implication concretely the mansion): - dwelling."]},{"k":"G2732","v":["κατοικητήριον","katoikētērion","kat-oy-kay-tay'-ree-on","From a derivative of G2730; a dwelling place: - habitation."]},{"k":"G2733","v":["κατοικία","katoikia","kat-oy-kee'-ah","residence (properly the condition; but by implication the abode itself): - habitation."]},{"k":"G2734","v":["κατοπτρίζομαι","katoptrizomai","kat-op-trid'-zom-ahee","Middle voice from a compound of G2596 and a derivative of G3700 (compare G2072); to mirror oneself, that is, to see reflected (figuratively): - behold as in a glass."]},{"k":"G2735","v":["κατόρθωμα","katorthōma","kat-or'-tho-mah","From a compound of G2596 and a derivative of G3717 (compare G1357); something made fully upright, that is, (figuratively) rectification (specifically good public administration): - very worthy deed."]},{"k":"G2736","v":["κάτω, κατωτέρω","katō    katōterō","kat'-o, kat-o-ter'-o","[Compare G2737]; adverb from G2596; downwards: - beneath, bottom, down, under."]},{"k":"G2737","v":["κατώτερος","katōteros","kat-o'-ter-os","Compound from G2736; inferior (locally, of Hades): - lower."]},{"k":"G2738","v":["καῦμα","kauma","kow'-mah","From G2545; properly a burn (concretely), but used (abstractly) of a glow: - heat."]},{"k":"G2739","v":["καυματίζω","kaumatizō","kow-mat-id'-zo","From G2738; to burn: - scorch."]},{"k":"G2740","v":["καῦσις","kausis","kow'-sis","From G2545; burning (the act): - be burned."]},{"k":"G2741","v":["καυσόω","kausoō","kow-so'-o","From G2740; to set on fire: - with fervent heat."]},{"k":"G2742","v":["καύσων","kausōn","kow'-sone","From G2741; a glare: - (burning) heat."]},{"k":"G2743","v":["καυτηριάζω","kautēriazō","kow-tay-ree-ad'-zo","From a derivative of G2545; to brand (“cauterize”), that is, (by implication) to render unsensitive (figuratively): - sear with a hot iron."]},{"k":"G2744","v":["καυχάομαι","kauchaomai","kow-khah'-om-ahee","From some (obsolete) base akin to that of αὐχέω aucheō (to boast) and G2172; to vaunt (in a good or a bad sense): - (make) boast, glory, joy, rejoice."]},{"k":"G2745","v":["καύχημα","kauchēma","kow'-khay-mah","From G2744; a boast (properly the objective; by implication the act) in a good or bad sense: - boasting, (whereof) to glory (of), glorying, rejoice (-ing)."]},{"k":"G2746","v":["καύχησις","kauchēsis","kow'-khay-sis","From G2744; boasting (properly the act; by implication the objective), in a good or a bad sense: - boasting, whereof I may glory, glorifying, rejoicing."]},{"k":"G2747","v":["Κεγχρεαί","Kegchreai","keng-khreh-a'hee","Probably from κέγχρος kegchros (millet); Cenchreae, a port of Corinth: - Cenchrea."]},{"k":"G2748","v":["Κεδρών","Kedrōn","ked-rone'","Of Hebrew origin [H6939]; Cedron (that is, Kidron), a brook near Jerusalem: - Cedron."]},{"k":"G2749","v":["κεῖμαι","keimai","ki'-mahee","Middle voice of a primary verb; to lie outstretched (literally or figuratively): - be (appointed, laid up, made, set), lay, lie. Compare G5087."]},{"k":"G2750","v":["κειρία","keiria","ki-ree'-ah","Of uncertain affinity; a swathe, that is, winding sheet: - graveclothes."]},{"k":"G2751","v":["κείρω","keirō","ki'-ro","A primary verb; to shear: - shear (-er)."]},{"k":"G2752","v":["κέλευμα","keleuma","kel'-yoo-mah","From G2753; a cry of incitement: - shout."]},{"k":"G2753","v":["κελεύω","keleuō","kel-yoo'-o","From a primary word κέλλω kellō (to urge on); “hail”; to incite by word, that is, order: - bid, (at, give) command (-ment)."]},{"k":"G2754","v":["κενοδοξία","kenodoxia","ken-od-ox-ee'-ah","From G2755; empty glorying, that is, self conceit: - vain-glory."]},{"k":"G2755","v":["κενόδοξος","kenodoxos","ken-od'-ox-os","From G2756 and G1391; vainly glorifying, that is, self conceited: - desirous of vain-glory."]},{"k":"G2756","v":["κενός","kenos","ken-os'","Apparently a primary word; empty (literally or figuratively): - empty, (in) vain."]},{"k":"G2757","v":["κενοφωνία","kenophōnia","ken-of-o-nee'-ah","From a presumed compound of G2756 and G5456; empty sounding, that is, fruitless discussion: - vain."]},{"k":"G2758","v":["κενόω","kenoō","ken-o'-o","From G2756; to make empty, that is, (figuratively) to abase, neutralize, falsify: - make (of none effect, of no reputation, void), be in vain."]},{"k":"G2759","v":["κέντρον","kentron","ken'-tron","From κεντέω kenteō (to prick); a point (“centre”), that is, a sting (figuratively poison) or goad (figuratively divine impulse): - prick, sting."]},{"k":"G2760","v":["κεντυρίων","kenturiōn","ken-too-ree'-ohn","Of Latin origin; a centurion, that is, captain of one hundred soldiers: - centurion."]},{"k":"G2761","v":["κενῶς","kenōs","ken-oce'","Adverb from G2756; vainly, that is, to no purpose: - in vain."]},{"k":"G2762","v":["κεραία","keraia","ker-ah'-yah","Feminine of a presumed derivative of the base of G2768; something horn like, that is, (specifically) the apex of a Hebrew letter (figuratively the least particle): - tittle."]},{"k":"G2763","v":["κεραμεύς","kerameus","ker-am-yooce'","From G2766; a potter: - potter."]},{"k":"G2764","v":["κεραμικός","keramikos","ker-am-ik-os'","From G2766; made of clay, that is, earthen: - of a potter."]},{"k":"G2765","v":["κεράμιον","keramion","ker-am'-ee-on","Neuter of a presumed derivative of G2766; an earthenware vessel, that is, jar: - pitcher."]},{"k":"G2766","v":["κέραμος","keramos","ker'-am-os","Probably from the base of G2767 (through the idea of mixing clay and water); earthenware, that is, a tile (by analogy a thin roof or awning): - tiling."]},{"k":"G2767","v":["κεράννυμι","kerannumi","ker-an'-noo-mee","A prolonged form of a more primary word κεράω keraō (which is used in certain tenses); to mingle, that is, (by implication) to pour out (for drinking): - fill, pour out. Compare G3396."]},{"k":"G2768","v":["κέρας","keras","ker'-as","From a primary word κάρ kar (the hair of the head); a horn (literally or figuratively): - horn."]},{"k":"G2769","v":["κεράτιον","keration","ker-at'-ee-on","Neuter of a presumed derivative of G2768; something horned, that is, (specifically) the pod of the carob tree: - husk."]},{"k":"G2770","v":["κερδαίνω","kerdainō","ker-dah'ee-no","From G2771; to gain (literally or figuratively): - (get) gain, win."]},{"k":"G2771","v":["κέρδος","kerdos","ker'-dos","Of uncertain affinity; gain (pecuniary or generally): - gain, lucre."]},{"k":"G2772","v":["κέρμα","kerma","ker'-mah","From G2751; a clipping (bit), that is, (specifically) a coin: - money."]},{"k":"G2773","v":["κερματιστής","kermatistēs","ker-mat-is-tace'","From a derivative of G2772; a handler of coins, that is, money broker: - changer of money."]},{"k":"G2774","v":["κεφάλαιον","kephalaion","kef-al'-ah-yon","Neuter of a derivative of G2776; a principal thing, that is, main point; specifically an amount (of money): - sum."]},{"k":"G2775","v":["κεφαλαιόω","kephalaioō","kef-al-ahee-o'-o","From the same as G2774; (specifically) to strike on the head: - wound in the head."]},{"k":"G2776","v":["κεφαλή","kephalē","kef-al-ay'","Probably from the primary word κάπτω kaptō (in the sense of seizing); the head (as the part most readily taken hold of), literally or figuratively: - head."]},{"k":"G2777","v":["κεφαλίς","kephalis","kef-al-is'","From G2776; properly a knob, that is, (by implication) a roll (by extension from the end of a stick on which the manuscript was rolled): - volume."]},{"k":"G2778","v":["κῆνσος","kēnsos","kane'-sos","Of Latin origin; properly an enrolment (“census”), that is, (by implication) a tax: - tribute."]},{"k":"G2779","v":["κῆπος","kēpos","kay'-pos","Of uncertain affinity; a garden: - garden."]},{"k":"G2780","v":["κηπουρός","kēpouros","kay-poo-ros'","From G2779 and οὖρος ouros (a warden); a garden keeper, that is, gardener: - gardener."]},{"k":"G2781","v":["κηρίον","kērion","kay-ree'-on","Diminutive from κηός kēos (wax); a cell for honey, that is, (collectively) the comb: - [honey-] comb."]},{"k":"G2782","v":["κήρυγμα","kērugma","kay'-roog-mah","From G2784; a proclamation (especially of the gospel; by implication the gospel itself): - preaching."]},{"k":"G2783","v":["κήρυξ","kērux","kay'-roox","From G2784; a herald, that is, of divine truth (especially of the gospel): - preacher."]},{"k":"G2784","v":["κηρύσσω","kērussō","kay-roos'-so","Of uncertain affinity; to herald (as a public crier), especially divine truth (the gospel): - preach (-er), proclaim, publish."]},{"k":"G2785","v":["κῆτος","kētos","kay'-tos","Probably from the base of G5490; a huge fish (as gaping for prey): - whale."]},{"k":"G2786","v":["Κηφᾶς","Kēphas","kay-fas'","Of Chaldee origin (compare [H3710]); the Rock; Cephas (that is, Kepha), surname of Peter: - Cephas."]},{"k":"G2787","v":["κιβωτός","kibōtos","kib-o-tos'","Of uncertain derivative; a box, that is, the sacred ark and that of Noah: - ark."]},{"k":"G2788","v":["κιθάρα","kithara","kith-ar'-ah","Of uncertain affinity; a lyre: - harp."]},{"k":"G2789","v":["κιθαρίζω","kitharizō","kith-ar-id'-zo","From G2788; to play on a lyre: - harp."]},{"k":"G2790","v":["κιθαρῳδός","kitharōdos","kith-ar-o-dos'","From G2788 and a derivative of the same as G5603; a lyre singer (player), that is, harpist: - harper."]},{"k":"G2791","v":["Κιλικία","Kilikia","kil-ik-ee'-ah","Probably of foreign origin; Cilicia, a region of Asia Minor: - Cilicia."]},{"k":"G2792","v":["κινάμωμον","kinamōmon","kin-am'-o-mon","Of foreign origin (compare [H7076]); cinnamon: - cinnamon."]},{"k":"G2793","v":["κινδυνέυω","kinduneuō","kin-doon-yoo'-o","From G2794; to undergo peril: - be in danger, be (stand) in jeopardy."]},{"k":"G2794","v":["κίνδυνος","kindunos","kin'-doo-nos","Of uncertain derivation; danger: - peril."]},{"k":"G2795","v":["κινέω","kineō","kin-eh'-o","From κίω kiō (poetic for [εἶμι eimi to go]); to stir (transitively), literally or figuratively: - (re-) move (-r), way."]},{"k":"G2796","v":["κίνησις","kinēsis","kin'-ay-sis","From G2795; a stirring: - moving."]},{"k":"G2797","v":["Κίς","Kis","kis","Of Hebrew origin [H7027]); Cis (that is, Kish), an Israelite: - Cis."]},{"k":"G2798","v":["κλάδος","klados","klad'-os","From G2806; a twig or bough (as if broken off): - branch."]},{"k":"G2799","v":["κλαίω","klaiō","klah'-yo","Of uncertain affinity; to sob, that is, wail aloud (whereas G1145 is rather to cry silently): - bewail. weep."]},{"k":"G2800","v":["κλάσις","klasis","klas'-is","From G2806; fracture (the act): - breaking."]},{"k":"G2801","v":["κλάσμα","klasma","klas'-mah","From G2806; a piece (bit): - broken, fragment."]},{"k":"G2802","v":["Κλαύδη","Klaudē","klow'-day","Of uncertain derivation; Claude, an island near Crete: - Clauda."]},{"k":"G2803","v":["Κλαυδία","Klaudia","klow-dee'-ah","Feminine of G2804; Claudia, a Christian woman: - Claudia."]},{"k":"G2804","v":["Κλαύδιος","Klaudios","klow'-dee-os","Of Latin origin; Claudius, the name of two Romans: - Claudius."]},{"k":"G2805","v":["κλαυθμός","klauthmos","klowth-mos'","From G2799; lamentation: - wailing, weeping, X wept."]},{"k":"G2806","v":["κλάω","klaō","klah'-o","A primary verb; to break (specifically of bread): - break."]},{"k":"G2807","v":["κλείς","kleis","klice","From G2808; a key (as shutting a lock), literally or figuratively: - key."]},{"k":"G2808","v":["κλείω","kleiō","kli'-o","A primary verb; to close (literally or figuratively): - shut (up)."]},{"k":"G2809","v":["κλέμμα","klemma","klem'-mah","From G2813; stealing (properly the thing stolen, but used of the act): - theft."]},{"k":"G2810","v":["Κλεόπας","Kleopas","kleh-op'-as","Probably contracted from Κλεόπατρος Kleopatros (compounded from G2811 and G3962); Cleopas, a Christian: - Cleopas."]},{"k":"G2811","v":["κλέος","kleos","kleh'-os","From a shorter form of G2564; renown (as if being called): - glory."]},{"k":"G2812","v":["κλέπτης","kleptēs","klep'-tace","From G2813; a stealer (literally or figuratively): - thief. Compare G3027."]},{"k":"G2813","v":["κλέπτω","kleptō","klep'-to","A primary verb; to filch: - steal."]},{"k":"G2814","v":["κλῆμα","klēma","klay'-mah","From G2806; a limb or shoot (as if broken off): - branch."]},{"k":"G2815","v":["Κλήμης","Klēmēs","klay'-mace","Of Latin origin; merciful; Clemes (that is, Clemens), a Christian: - Clement."]},{"k":"G2816","v":["κληρονομέω","klēronomeō","klay-ron-om-eh'-o","From G2818; to be an heir to (literally or figuratively): - be heir, (obtain by) inherit (-ance)."]},{"k":"G2817","v":["κληρονομία","klēronomia","klay-ron-om-ee'-ah","From G2818; heirship, that is, (concretely) a patrimony or (generally) a possession: - inheritance."]},{"k":"G2818","v":["κληρονόμος","klēronomos","klay-ron-om'-os","From G2819 and the base of G3551 (in its original sense of partitioning, that is, [reflexively] getting by apportionment); a sharer by lot, that is, an inheritor (literally or figuratively); by implication a possessor: - heir."]},{"k":"G2819","v":["κλῆρος","klēros","klay'-ros","Probably from G2806 (through the idea of using bits of wood, etc., for the purpose); a die (for drawing chances); by implication a portion (as if so secured); by extension an acquisition (especially a patrimony, figuratively): - heritage, inheritance, lot, part."]},{"k":"G2820","v":["κληρόω","klēroō","klay-ro'-o","From G2819; to allot, that is, (figuratively) to assign (a privilege): - obtain an inheritance."]},{"k":"G2821","v":["κλῆσις","klēsis","klay'-sis","From a shorter form of G2564; an invitation (figuratively): - calling."]},{"k":"G2822","v":["κλητός","klētos","klay-tos'","From the same as G2821; invited, that is, appointed, or (specifically) a saint: - called."]},{"k":"G2823","v":["κλίβανος","klibanos","klib'-an-os","Of uncertain derivation; an earthen pot used for baking in: - oven."]},{"k":"G2824","v":["κλίμα","klima","klee'-mah","From G2827; a slope, that is, (specifically) a “clime” or tract of country: - part, region."]},{"k":"G2825","v":["κλίνη","klinē","klee'-nay","From G2827; a couch (for sleep, sickness, sitting or eating): - bed, table."]},{"k":"G2826","v":["κλινίδιον","klinidion","klin-id'-ee-on","Neuter of a presumed derivative of G2825; a pallet or little couch: - bed."]},{"k":"G2827","v":["κλίνω","klinō","klee'-no","A primary verb; to slant or slope, that is, incline or recline (literally or figuratively): - bow (down), be far spent, lay, turn to flight, wear away."]},{"k":"G2828","v":["κλισία","klisia","klee-see'-ah","From a derivative of G2827; properly reclination, that is, (concretely and specifically) a party at a meal: - company."]},{"k":"G2829","v":["κλοπή","klopē","klop-ay'","From G2813; stealing: - theft."]},{"k":"G2830","v":["κλύδων","kludōn","kloo'-dohn","From κλύζω kluzō (to billow or dash over); a surge of the sea (literally or figuratively): - raging, wave."]},{"k":"G2831","v":["κλυδωνίζομαι","kludōnizomai","kloo-do-nid'-zom-ahee","Middle voice from G2830; to surge, that is, (figuratively) to fluctuate: - toss to and fro."]},{"k":"G2832","v":["Κλωπᾶς","Klōpas","klo-pas'","Of Chaldee origin (corresponding to G256); Clopas, an Israelite: - Clopas."]},{"k":"G2833","v":["κνήθω","knēthō","knay'-tho","From a primary word κνάω knaō (to scrape); to scratch, that is, (by implication) to tickle: - X itching."]},{"k":"G2834","v":["Κνίδος","Knidos","knee'-dos","Probably of foreign origin; Cnidus, a place in Asia Minor: - Cnidus."]},{"k":"G2835","v":["κοδράντης","kodrantēs","kod-ran'-tace","Of Latin origin; a quadrans, that is, fourth part of an as: - farthing."]},{"k":"G2836","v":["κοιλία","koilia","koy-lee'-ah","From κοῖλος koilos (“hollow”); a cavity, that is, (specifically) the abdomen; by implication the matrix; figuratively the heart: - belly, womb."]},{"k":"G2837","v":["κοιμάω","koimaō","koy-mah'-o","From G2749; to put to sleep, that is, (passively or reflexively) to slumber; figuratively to decease: - (be a-, fall a-, fall on) sleep, be dead."]},{"k":"G2838","v":["κοίμησις","koimēsis","koy'-may-sis","From G2837; sleeping, that is, (by implication) repose: - taking of rest."]},{"k":"G2839","v":["κοινός","koinos","koy-nos'","Probably from G4862; common, that is, (literally) shared by all or several, or (ceremonially) profane: - common, defiled, unclean, unholy."]},{"k":"G2840","v":["κοινόω","koinoō","koy-no'-o","From G2839; to make (or consider) profane (ceremonially): - call common, defile, pollute, unclean."]},{"k":"G2841","v":["κοινωνέω","koinōneō","koy-no-neh'-o","From G2844; to share with others (objectively or subjectively): - communicate, distribute, be partaker."]},{"k":"G2842","v":["κοινωνία","koinōnia","koy-nohn-ee'-ah","From G2844; partnership, that is, (literally) participation, or (social) intercourse, or (pecuniary) benefaction: - (to) communicate (-ation), communion, (contri-), distribution, fellowship."]},{"k":"G2843","v":["κοινωνικός","koinōnikos","koy-no-nee-kos'","From G2844; communicative, that is, (pecuniarily) liberal: - willing to communicate."]},{"k":"G2844","v":["κοινωνός","koinōnos","koy-no-nos'","From G2839; a sharer, that is, associate: - companion, X fellowship, partaker, partner."]},{"k":"G2845","v":["κοίτη","koitē","koy'-tay","From G2749; a couch; by extension cohabitation; by implication the male sperm: - bed, chambering, X conceive."]},{"k":"G2846","v":["κοιτών","koitōn","koy-tone'","From G2845; a bed room: - + chamberlain."]},{"k":"G2847","v":["κόκκινος","kokkinos","kok'-kee-nos","From G2848 (from the kernel shape of the insect); crimson colored: - scarlet (colour, coloured)."]},{"k":"G2848","v":["κόκκος","kokkos","kok'-kos","Apparently a primary word; a kernel of seed: - corn, grain."]},{"k":"G2849","v":["κολάζω","kolazō","kol-ad'-zo","From κόλος kolos (dwarf); properly to curtail, that is, (figuratively) to chastise (or reserve for infliction): - punish."]},{"k":"G2850","v":["κολακεία","kolakeia","kol-ak-i'-ah","From a derivative of κόλαξ kolax (a fawner); flattery: - X flattering."]},{"k":"G2851","v":["κόλασις","kolasis","kol'-as-is","From G2849; penal infliction: - punishment, torment."]},{"k":"G2852","v":["κολαφίζω","kolaphizō","kol-af-id'-zo","From a derivative of the base of G2849; to rap with the fist: - buffet."]},{"k":"G2853","v":["κολλάω","kollaō","kol-lah'-o","From κόλλα kolla (“glue”); to glue, that is, (passively or reflexively) to stick (figuratively): - cleave, join (self), keep company."]},{"k":"G2854","v":["κολλούριον","kollourion","kol-loo'-ree-on","Neuter of a presumed derivative of κολλύρα kollura (a cake; probably akin to the base of G2853); properly a poultice (as made of or in the form of crackers), that is, (by analogy) a plaster: - eyesalve."]},{"k":"G2855","v":["κολλυβιστής","kollubistēs","kol-loo-bis-tace'","From a presumed derivative of κόλλυβος kollubos (a small coin; probably akin to G2854); a coin dealer: - (money-) changer."]},{"k":"G2856","v":["κολοβόω","koloboō","kol-ob-o'-o","From a derivative of the base of G2849; to dock, that is, (figuratively) abridge: - shorten."]},{"k":"G2857","v":["Κολοσσαί","Kolossai","kol-os-sah'ee","Apparently feminine plural of κολοσσός kolossos (“colossal”); Colossae, a place in Asia Minor: - Colosse."]},{"k":"G2858","v":["Κολοσσαεύς","Kolossaeus","kol-os-sayoos'","From G2857; a Colossaean, that is, inhabitant of Colossae: - Colossian."]},{"k":"G2859","v":["κόλπος","kolpos","kol'-pos","Apparently a primary word; the bosom; by analogy a bay: - bosom, creek."]},{"k":"G2860","v":["κολυμβάω","kolumbaō","kol-oom-bah'-o","From κολυμβος kolumbos (a diver); to plunge into water: - swim."]},{"k":"G2861","v":["κολυμβήθρα","kolumbēthra","kol-oom-bay'-thrah","From G2860; a diving place, that is, pond for bathing (or swimming): - pool."]},{"k":"G2862","v":["κολωνία","kolōnia","kol-o-nee'-ah","Of Latin origin; a Roman “colony” for veterans: - colony."]},{"k":"G2863","v":["κομάω","komaō","kom-ah'-o","From G2864; to wear tresses of hair: - have long hair."]},{"k":"G2864","v":["κόμη","komē","kom'-ay","Apparently from the same as G2865; the hair of the head (locks, as ornamental, and thus differing from G2359, which properly denotes merely the scalp): - hair."]},{"k":"G2865","v":["κολυμβάω,","kolumbaō","kom-id'-zo","From a primary word κολυμβος kolumbos (to tend, that is, take care of); properly to provide for, that is, (by implication) to carry off (as if from harm; generally obtain): - bring, receive."]},{"k":"G2866","v":["κομψότερον","kompsoteron","komp-sot'-er-on","Neuter comparative of a derivative of the base of G2865 (meaning properly well dressed, that is, nice); figuratively convalescent: - + began to amend."]},{"k":"G2867","v":["κονιάω","koniaō","kon-ee-ah'-o","From κονία konia (dust; by analogy lime); to whitewash: - whiten."]},{"k":"G2868","v":["κονιορτός","koniortos","kon-ee-or-tos'","From the base of G2867 and ὄρνυμι ornumi (to “rouse”); pulverulence (as blown about): - dust."]},{"k":"G2869","v":["κοπάζω","kopazō","kop-ad'-zo","From G2873; to tire, that is, (figuratively) to relax: - cease."]},{"k":"G2870","v":["κοπετός","kopetos","kop-et-os'","From G2875; mourning (properly by beating the breast): - lamentation."]},{"k":"G2871","v":["κοπή","kopē","kop-ay'","From G2875; cutting, that is, carnage: - slaughter."]},{"k":"G2872","v":["κοπιάω","kopiaō","kop-ee-ah'-o","From a derivative of G2873; to feel fatigue; by implication to work hard: - (bestow) labour, toil, be wearied."]},{"k":"G2873","v":["κόπος","kopos","kop'-os","From G2875; a cut, that is, (by analogy) toil (as reducing the strength), literally or figuratively; by implication pains: - labour, + trouble, weariness."]},{"k":"G2874","v":["κοπρία","kopria","kop-ree'-ah","From κόπρος kopros (ordure; perhaps akin to G2875); manure: - dung (-hill)."]},{"k":"G2875","v":["κόπτω","koptō","kop'-to","A primary verb; to “chop”; specifically to beat the breast in grief: - cut down, lament, mourn, (be-) wail. Compare the base of G5114."]},{"k":"G2876","v":["κόραξ","korax","kor'-ax","Perhaps from G2880; a crow (from its voracity): - raven."]},{"k":"G2877","v":["κοράσιον","korasion","kor-as'-ee-on","Neuter of a presumed derivative of κόρη korē (a maiden); a (little) girl: - damsel, maid."]},{"k":"G2878","v":["κορβᾶν, κορβανᾶς","korban    korbanas","kor-ban', kor-ban-as'","Of Hebrew and Chaldee origin respectively [H7133]; a votive offering and the offering; a consecrated present (to the Temple fund); by extension (the latter term) the Treasury itself, that is, the room where the contribution boxes stood: - Corban, treasury."]},{"k":"G2879","v":["Κορέ","Kore","kor-eh'","Of Hebrew origin [H7141]; Core (that is, Korach), an Israelite: - Core."]},{"k":"G2880","v":["κορέννυμι","korennumi","kor-en'-noo-mee","A primary verb; to cram, that is, glut or sate: - eat enough, full."]},{"k":"G2881","v":["Κορίνθιος","Korinthios","kor-in'-thee-os","From G2882; a Corinthian, that is, inhabitant of Corinth: - Corinthian."]},{"k":"G2882","v":["Κόρινθος","Korinthos","kor'-in-thos","Of uncertain derivation; Corinthus, a city of Greece: - Corinth."]},{"k":"G2883","v":["Κορνήλιος","Kornēlios","kor-nay'-lee-os","Of Latin original; Cornelius, a Roman: - Cornelius."]},{"k":"G2884","v":["κόρος","koros","kor'-os","Of Hebrew origin [H3734]; a cor, that is, a specific measure: - measure."]},{"k":"G2885","v":["κοσμέω","kosmeō","kos-meh'-o","From G2889; to put in proper order, that is, decorate (literally or figuratively); specifically to snuff (a wick): - adorn, garnish, trim."]},{"k":"G2886","v":["κοσμικός","kosmikos","kos-mee-kos'","From G2889 (in its secondary sense); terrene (“cosmic”), literally (mundane) or figuratively (corrupt): - worldly."]},{"k":"G2887","v":["κόσμιος","kosmios","kos'-mee-os","From G2889 (in its primary sense); orderly, that is, decorous: - of good behaviour, modest."]},{"k":"G2888","v":["κοσμοκράτωρ","kosmokratōr","kos-mok-rat'-ore","From G2889 and G2902; a world ruler, an epithet of Satan: - ruler."]},{"k":"G2889","v":["κόσμος","kosmos","kos'-mos","Probably from the base of G2865; orderly arrangement, that is, decoration; by implication the world (in a wide or narrow sense, including its inhabitants, literally or figuratively [morally]): - adorning, world."]},{"k":"G2890","v":["Κούαρτος","Kouartos","koo'-ar-tos","Of Latin origin (fourth); Quartus, a Christian: - Quartus."]},{"k":"G2891","v":["κοῦμι","koumi","koo'-mee","Of Chaldee origin [H6966]; cumi (that is, rise!): - cumi."]},{"k":"G2892","v":["κουστωδία","koustōdia","koos-to-dee'-ah","Of Latin origin; “custody”, that is, a Roman sentry: - watch."]},{"k":"G2893","v":["κουφίζω","kouphizō","koo-fid'-zo","From κοῦφος kouphos (light in weight); to unload: - lighten."]},{"k":"G2894","v":["κόφινος","kophinos","kof'-ee-nos","Of uncertain derivation; a (small) basket: - basket."]},{"k":"G2895","v":["κράββατος","krabbatos","krab'-bat-os","Probably of foreign origin; a mattress: - bed."]},{"k":"G2896","v":["κράζω","krazō","krad'-zo","A primary verb; properly to “croak” (as a raven) or scream, that is, (generally) to call aloud (shriek, exclaim, intreat): - cry (out)."]},{"k":"G2897","v":["κραιπάλη","kraipalē","krahee-pal'-ay","Probably from the same as G726; properly a headache (as a seizure of pain) from drunkenness, that is, (by implication) a debauch (by analogy a glut): - surfeiting."]},{"k":"G2898","v":["κρανίον","kranion","kran-ee'-on","Diminutive of a derivative of the base of G2768; a skull (“cranium”): - Calvary, skull."]},{"k":"G2899","v":["κράσπεδον","kraspedon","kras'-ped-on","Of uncertain derivation; a margin, that is, (specifically) a fringe or tassel: -    border, hem."]},{"k":"G2900","v":["κραταιός","krataios","krat-ah-yos'","From G2904; powerful: - mighty."]},{"k":"G2901","v":["κραταιόω","krataioō","krat-ah-yo'-o","From G2900; to empower, that is, (passively) increase in vigor: - be strenghtened, be (wax) strong."]},{"k":"G2902","v":["κρατέω","krateō","krat-eh'-o","From G2904; to use strength, that is, seize or retain (literally or figuratively): - hold (by, fast), keep, lay hand (hold) on, obtain, retain, take (by)."]},{"k":"G2903","v":["κράτιστος","kratistos","krat'-is-tos","Superlative of a derivative of G2904; strongest, that is, (in dignity) very honorable: - most excellent (noble)."]},{"k":"G2904","v":["κράτος","kratos","krat'-os","Perhaps a primary word; vigor [“great”], (literally or figuratively): - dominion, might [-ily], power, strength."]},{"k":"G2905","v":["κραυγάζω","kraugazō","krow-gad'-zo","From G2906; to clamor: - cry out."]},{"k":"G2906","v":["κραυγή","kraugē","krow-gay'","From G2896; an outcry (in notification, tumult or grief): - clamour, cry (-ing)."]},{"k":"G2907","v":["κρέας","kreas","kreh'-as","Perhaps a primary word; (butcher’s) meat: - flesh."]},{"k":"G2908","v":["κρεῖσσον","kreisson","krice'-son","Neuter of an alternate form of G2909; (as noun) better, that is, greater advantage: - better."]},{"k":"G2909","v":["κρείττων","kreittōn","krite'-tohn","Comparative of a derivative of G2904; stronger, that is, (figuratively) better, that is, nobler: - best, better."]},{"k":"G2910","v":["κρεμάννυμι","kremannumi","krem-an'-noo-mee","A prolonged form of a primary verb; to hang: - hang."]},{"k":"G2911","v":["κρημνός","krēmnos","krame-nos'","From G2910; overhanging, that is, a precipice: - steep place."]},{"k":"G2912","v":["Κρής","Krēs","krace","From G2914; a Cretan, that is, inhabitant of Crete: - Crete, Cretian."]},{"k":"G2913","v":["Κρήσκης","Krēskēs","krace'-kace","Of Latin origin; growing; Cresces (that is, Crescens), a Christian: - Crescens."]},{"k":"G2914","v":["Κρήτη","Krētē","kray'-tay","Of uncertain derivation; Crete, an island in the Mediterranean: - Crete."]},{"k":"G2915","v":["κριθή","krithē","kree-thay'","Of uncertain derivation; barley: - barley."]},{"k":"G2916","v":["κρίθινος","krithinos","kree'-thee-nos","From G2915; consisting of barley: - barley."]},{"k":"G2917","v":["κρίμα","krima","kree'-mah","From G2919; a decision (the function or the effect, for or against [“crime”]): - avenge, condemned, condemnation, damnation, + go to law, judgment."]},{"k":"G2918","v":["κρίνον","krinon","kree'-non","Perhaps a primary word; a lily: - lily."]},{"k":"G2919","v":["κρίνω","krinō","kree'-no","Properly to distinguish, that is, decide (mentally or judicially); by implication to try, condemn, punish: - avenge, conclude, condemn, damn, decree, determine, esteem, judge, go to (sue at the) law, ordain, call in question, sentence to, think."]},{"k":"G2920","v":["κρίσις","krisis","kree'-sis","(Subjectively or objectively, for or against); by extension a tribunal; by implication justice (specifically divine law): - accusation, condemnation, damnation, judgment."]},{"k":"G2921","v":["Κρίσπος","Krispos","kris'-pos","Of Latin origin; “crisp”; Crispus, a Corinthian: - Crispus."]},{"k":"G2922","v":["κριτήριον","kritērion","kree-tay'-ree-on","Neuter of a presumed derivative of G2923; a rule of judging (“criterion”), that is, (by implication) a tribunal: - to judge, judgment (seat)."]},{"k":"G2923","v":["κριτής","kritēs","kree-tace'","From G2919; a judge (generally or specifically): - judge."]},{"k":"G2924","v":["κριτικός","kritikos","krit-ee-kos'","From G2923; decisive (“critical”), that is, discriminative: - discerner."]},{"k":"G2925","v":["κρούω","krouō","kroo'-o","Apparently a primary verb; to rap: - knock."]},{"k":"G2926","v":["κρυπτή","kruptē","kroop-tay'","Feminine of G2927; a hidden place, that is, cellar (“crypt”): - secret."]},{"k":"G2927","v":["κρυπτός","kruptos","kroop-tos'","From G2928; concealed, that is, private: - hid (-den), inward [-ly], secret."]},{"k":"G2928","v":["κρύπτω","kruptō","kroop'-to","A primary verb; to conceal (properly by covering): - hide (self), keep secret, secret [-ly]."]},{"k":"G2929","v":["κρυσταλλίζω","krustallizō","kroos-tal-lid'-zo","From G2930; to make (that is, intransitively resemble) ice (“crystallize”): - be clear as crystal."]},{"k":"G2930","v":["κρύσταλλος","krustallos","kroos'-tal-los","From a derivative of κρύος kruos (frost); ice, that is, (by analogy) rock “crystal”: - crystal."]},{"k":"G2931","v":["κρυφῆ","kruphē","kroo-fay'","Adverb from G2928; privately: - in secret."]},{"k":"G2932","v":["κτάομαι","ktaomai","ktah'-om-ahee","A primary verb; to get, that is, acquire (by any means; own): - obtain, possess, provide, purchase."]},{"k":"G2933","v":["κτῆμα","ktēma","ktay'-mah","From G2932; an acquirement, that is, estate: - possession."]},{"k":"G2934","v":["κτῆνος","ktēnos","ktay'-nos","From G2932; property, that is, (specifically) a domestic animal: - beast."]},{"k":"G2935","v":["κτήτωρ","ktētōr","ktay'-tore","From G2932; an owner: - possessor."]},{"k":"G2936","v":["κτίζω","ktizō","ktid'-zo","Probably akin to G2932 (through the idea of the proprietorship of the manufacturer); to fabricate, that is, found (form originally): - create, Creator, make."]},{"k":"G2937","v":["κτίσις","ktisis","ktis'-is","From G2936; original formation (properly the act; by implication the thing, literally or figuratively): - building, creation, creature, ordinance."]},{"k":"G2938","v":["κτίσμα","ktisma","ktis'-mah","From G2936; an original formation (concretely), that is, product (created thing): - creature."]},{"k":"G2939","v":["κτιστής","ktistēs","ktis-tace'","From G2936; a founder, that is, God (as author of all things): - Creator."]},{"k":"G2940","v":["κυβεία","kubeia","koo-bi'-ah","From κύβος kubos (a “cube”, that is, die for playing); gambling, that is, (figuratively) artifice or fraud: - sleight."]},{"k":"G2941","v":["κυβέρνησις","kubernēsis","koo-ber'-nay-sis","From κυβερνάω kubernaō (of Latin origin, to steer); pilotage, that is, (figuratively) directorship (in the church): - government."]},{"k":"G2942","v":["κυβερνήτης","kubernētēs","koo-ber-nay'-tace","From the same as G2941; helmsman, that is, (by implication) captain: - (ship) master."]},{"k":"G2943","v":["κυκλόθεν","kuklothen","koo-kloth'-en","Adverb from the same as G2945; from the circle, that is, all around: - (round) about."]},{"k":"G2944","v":["κυκλόω","kukloō","koo-klo'-o","From the same as G2945; to encircle, that is, surround: - compass (about), come (stand) round about."]},{"k":"G2945","v":["κύκλῳ","kuklō","koo'-klo","As if dative case of κύκλος kuklos (a ring, “cycle”; akin to G2947); that is, in a circle (by implication of G1722), that is, (adverbially) all around: - round about."]},{"k":"G2946","v":["κύλισμα","kulisma","koo'-lis-mah","From G2947; a wallow (the effect of rolling), that is, filth: - wallowing."]},{"k":"G2947","v":["κυλιόω","kulioō","koo-lee-o'-o","From the base of G2949 (through the idea of circularity; compare G2945 and G1507); to roll about: - wallow."]},{"k":"G2948","v":["κυλλός","kullos","kool-los'","From the same as G2947; rocking about, that is, crippled (maimed, in feet or hands): - maimed."]},{"k":"G2949","v":["κῦμα","kuma","koo'-mah","From κύω kuō (to swell [with young], that is, bend, curve); a billow (as bursting or toppling): - wave."]},{"k":"G2950","v":["κύμβαλον","kumbalon","koom'-bal-on","From a derivative of the base of G2949; a “cymbal” (as hollow): - cymbal."]},{"k":"G2951","v":["κύμινον","kuminon","koo'-min-on","Of foreign origin (compare [H3646]); dill or fennel (“cummin”): - cummin."]},{"k":"G2952","v":["κυνάριον","kunarion","koo-nar'-ee-on","Neuter of a presumed derivative of G2965; a puppy: - dog."]},{"k":"G2953","v":["Κύπριος","Kuprios","koo'-pree-os","From G2954; a Cyprian (Cypriot), that is, inhabitant of Cyprus: - of Cyprus."]},{"k":"G2954","v":["Κύπρος","Kupros","koo'-pros","Of uncertain origin; Cyprus, an island in the Mediterranean: - Cyprus."]},{"k":"G2955","v":["κύπτω","kuptō","koop'-to","Probably from the base of G2949; to bend forward: - stoop (down)."]},{"k":"G2956","v":["Κυρηναῖος","Kurēnaios","koo-ray-nah'-yos","From G2957; a Cyrenaean, that is, inhabitant of Cyrene: - of Cyrene, Cyrenian."]},{"k":"G2957","v":["Κυρήνη","Kurēnē","koo-ray'-nay","Of uncertain derivation; Cyrene, a region of Africa: - Cyrene."]},{"k":"G2958","v":["Κυρήνιος","Kurēnios","koo-ray'-nee-os","Of Latin origin; Cyrenius (that is, Quirinus), a Roman: - Cyrenius."]},{"k":"G2959","v":["Κυρία","Kuria","koo-ree'-ah","Feminine of G2962; Cyria, a Christian woman: - lady."]},{"k":"G2960","v":["κυριακός","kuriakos","koo-ree-ak-os'","From G2962; belonging to the Lord (Jehovah or Jesus): - Lord’s."]},{"k":"G2961","v":["κυριεύω","kurieuō","koo-ree-yoo'-o","From G2962; to rule: - have dominion over, lord, be lord of, exercise lordship over."]},{"k":"G2962","v":["κύριος","kurios","koo'-ree-os","From κῦρος kuros (supremacy); supreme in authority, that is, (as noun) controller; by implication Mr. (as a respectful title): - God, Lord, master, Sir."]},{"k":"G2963","v":["κυριότης","kuriotēs","koo-ree-ot'-ace","From G2962; mastery, that is, (concretely and collectively) rulers: - dominion, government."]},{"k":"G2964","v":["κυρόω","kuroō","koo-ro'-o","From the same as G2962; to make authoritative, that is, ratify: - confirm."]},{"k":"G2965","v":["κύων","kuōn","koo'-ohn","A primary word; a dog (“hound”), (literally or figuratively): - dog."]},{"k":"G2966","v":["κῶλον","kōlon","ko'-lon","From the base of G2849; a limb of the body (as if lopped): - carcase."]},{"k":"G2967","v":["κωλύω","kōluō","ko-loo'-o","From the base of G2849; to estop, that is, prevent (by word or act): - forbid, hinder, keep from, let, not suffer, withstand."]},{"k":"G2968","v":["κώμη","kōmē","ko'-may","From G2749; a hamlet (as if laid down): - town, village."]},{"k":"G2969","v":["κωμόπολις","kōmopolis","ko-mop'-ol-is","From G2968 and G4172; an unwalled city: - town."]},{"k":"G2970","v":["κῶμος","kōmos","ko'-mos","From G2749; a carousal (as if a letting loose): - revelling, rioting."]},{"k":"G2971","v":["κώνωψ","kōnōps","ko'-nopes","Apparently from a derivative of the base of G2759 and a derivative of G3700; a mosquito (from its stinging proboscis): - gnat."]},{"k":"G2972","v":["Κῶς","Kōs","koce","Of uncertain origin; Cos, an island in the Mediterranean: - Cos."]},{"k":"G2973","v":["Κωσάμ","Kōsam","ko-sam'","Of Hebrew origin (compare [H7081]); Cosam (that is, Kosam), an Israelite: - Cosam."]},{"k":"G2974","v":["κωφός","kōphos","ko-fos'","From G2875; blunted, that is, (figuratively) of hearing (deaf) or speech (dumb): - deaf, dumb, speechless."]},{"k":"G2975","v":["λαγχάνω","lagchanō","lang-khan'-o","A prolonged form of a primary verb, which is only used as an alternate in certain tenses; to lot, that is, determine (by implication receive) especially by lot: - his lot be, cast lots, obtain."]},{"k":"G2976","v":["Λάζαρος","Lazaros","lad'-zar-os","Probably of Hebrew origin [H499]; Lazarus (that is, Elazar), the name of two Israelites (one imaginary): - Lazarus."]},{"k":"G2977","v":["λάθρα","lathra","lath'-rah","Adverb from G2990; privately: - privily, secretly."]},{"k":"G2978","v":["λαῖλαψ","lailaps","lah'ee-laps","Of uncertain derivation; a whirlwind (squall): - storm, tempest."]},{"k":"G2979","v":["λακτίζω","laktizō","lak-tid'-zo","From adverb λάξ lax (heelwise); to recalcitrate: - kick."]},{"k":"G2980","v":["λαλέω","laleō","lal-eh'-o","A prolonged form of an otherwise obsolete verb; to talk, that is, utter words: - preach, say, speak (after), talk, tell, utter. Compare G3004."]},{"k":"G2981","v":["λαλιά","lalia","lal-ee-ah'","From G2980; talk: - saying, speech."]},{"k":"G2982","v":["λαμά, λαμμᾶ","lama    lamma","lam-ah', lam-mah'","Of Hebrew origin ([H4100] with preposition prefixed); lama (that is, why): - lama."]},{"k":"G2983","v":["λαμβάνω","lambanō","lam-ban'-o","A prolonged form of a primary verb, which is used only as an alternate in certain tenses; to take (in very many applications, literally and figuratively [probably objective or active, to get hold of; whereas G1209 is rather subjective or passive, to have offered to one; while G138 is more violent, to seize or remove]): - accept, + be amazed, assay, attain, bring, X when I call, catch, come on (X unto), + forget, have, hold, obtain, receive (X after), take (away, up)."]},{"k":"G2984","v":["Λάμεχ","Lamech","lam'-ekh","Of Hebrew origin [H3929]; Lamech (that is, Lemek), a patriarch: - Lamech."]},{"k":"G2985","v":["λαμπάς","lampas","lam-pas'","From G2989; a “lamp” or flambeau: - lamp, light, torch."]},{"k":"G2986","v":["λαμπρός","lampros","lam-pros'","From the same as G2985; radiant; by analogy limpid; figuratively magnificent or sumptuous (in appearance): - bright, clear, gay, goodly, gorgeous, white."]},{"k":"G2987","v":["λαμπρότης","lamprotēs","lam-prot'-ace","From G2896; brilliancy: - brightness."]},{"k":"G2988","v":["λαμπρῶς","lamprōs","lam-proce'","Adverb from G2986; brilliantly, that is, (figuratively) luxuriously: - sumptuously."]},{"k":"G2989","v":["λάμπω","lampō","lam'-po","A primary verb; to beam, that is, radiate brilliancy (literally or figuratively): - give light, shine."]},{"k":"G2990","v":["λανθάνω","lanthanō","lan-than'-o","A prolonged form of a primary verb, which is used only as an alternate in certain tenses; to lie hid (literally or figuratively); often used adverbially unwittingly: - be hid, be ignorant of, unawares."]},{"k":"G2991","v":["λαξευτός","laxeutos","lax-yoo-tos'","From a compound of λᾶς las (a stone) and the base of G3584 (in its original sense of scraping); rock quarried: - hewn in stone."]},{"k":"G2992","v":["λαός","laos","lah-os'","Apparently a primary word; a people (in general; thus differing from G1218, which denotes one’s own populace): - people."]},{"k":"G2993","v":["Λαοδίκεια","Laodikeia","Lah-od-ik'-i-ah","From a compound of G2992 and G1349; Laodicia, a place in Asia Minor: - Laodicea."]},{"k":"G2994","v":["Λαοδικεύς","Laodikeus","lah-od-ik-yooce'","From G2993; a Laodicean, that is, inhabitant of Laodicia: - Laodicean."]},{"k":"G2995","v":["λάρυγξ","larugx","lar'-oongks","Of uncertain derivative; the throat (“larynx”): - throat."]},{"k":"G2996","v":["Λασαία","Lasaia","las-ah'-yah","Of uncertain origin; Lasaea, a place in Crete: - Lasea."]},{"k":"G2997","v":["λάσχω","laschō","las'-kho","A strengthened form of a primary verb, which only occurs in this and another prolonged form as an alternate in certain tenses; to crack open (from a fall): - burst asunder."]},{"k":"G2998","v":["λατομέω","latomeō","lat-om-eh'-o","From the same as the first part of G2991 and the base of G5114; to quarry: - hew."]},{"k":"G2999","v":["λατρεία","latreia","lat-ri'-ah","From G3000; ministration of God, that is, worship: - (divine) service."]},{"k":"G3000","v":["λατρεύω","latreuō","lat-ryoo'-o","From λάτρις latris (a hired menial); to minister (to God), that is, render religious homage: - serve, do the service, worship (-per)."]},{"k":"G3001","v":["λάχανον","lachanon","lakh'-an-on","From λαχαίνω lachainō (to dig); a vegetable: - herb."]},{"k":"G3002","v":["Λεββαῖος","Lebbaios","leb-bah'-yos","Of uncertain origin; Lebbaeus, a Christian: - Lebbus."]},{"k":"G3003","v":["λεγεών","legeōn","leg-eh-ohn'","Of Latin origin; a “legion”, that is, Roman regiment (figuratively): - legion."]},{"k":"G3004","v":["λέγω","legō","leg'-o","A primary verb; properly to “lay” forth, that is, (figuratively) relate (in words [usually of systematic or set discourse; whereas G2036 and G5346 generally refer to an individual expression or speech respectively; while G4483 is properly to break silence merely, and G2980 means an extended or random harangue]); by implication to mean: - ask, bid, boast, call, describe, give out, name, put forth, say (-ing, on), shew, speak, tell, utter."]},{"k":"G3005","v":["λεῖμμα","leimma","lime'-mah","From G3007; a remainder: - remnant."]},{"k":"G3006","v":["λεῖος","leios","li'-os","Apparently a primary word; smooth, that is, “level”: - smooth."]},{"k":"G3007","v":["λείπω","leipō","li'-po","A primary verb; to leave, that is, (intransitive or passive) to fail or be absent: - be destitute (wanting), lack."]},{"k":"G3008","v":["λειτουργέω","leitourgeō","li-toorg-eh'-o","From G3011; to be a public servant, that is, (by analogy) to perform religious or charitable functions (worship, obey, relieve): - minister."]},{"k":"G3009","v":["λειτουργία","leitourgia","li-toorg-ee'-ah","From G3008; public function (as priest [“liturgy”] or almsgiver): - ministration (-try), service."]},{"k":"G3010","v":["λειτουργικός","leitourgikos","li-toorg-ik-os'","From the same as G3008; functional publicly (“liturgic”), that is, beneficent: - ministering."]},{"k":"G3011","v":["λειτουργός","leitourgos","li-toorg-os'","From a derivative of G2992 and G2041; a public servant, that is, a functionary in the Temple or Gospel, or (generally) a worshipper (of God) or benefactor (of man): - minister (-ed)."]},{"k":"G3012","v":["λέντιον","lention","len'-tee-on","Of Latin origin; a “linen” cloth, that is, apron: - towel."]},{"k":"G3013","v":["λεπίς","lepis","lep-is'","From λέπω lepō (to peel); a flake: - scale."]},{"k":"G3014","v":["λέπρα","lepra","lep'-rah","From the same as G3013; scaliness, that is, “leprosy”: - leprosy."]},{"k":"G3015","v":["λεπρός","lepros","lep-ros'","From the same as G3014; scaly, that is, leprous (a leper): - leper."]},{"k":"G3016","v":["λεπτόν","lepton","lep-ton'","Neuter of a derivative of the same as G3013; something scaled (light), that is, a small coin: - mite."]},{"k":"G3017","v":["Λευΐ́","Leui","lyoo-ee'","Of Hebrew origin [H3878]; Levi, the name of three Israelites: - Levi. Compare G3018."]},{"k":"G3018","v":["Λευΐ́ς","Leuis","lyoo-is'","A form of G3017; Lewis (that is, Levi), a Christian: - Levi."]},{"k":"G3019","v":["Λευΐ́της","Leuitēs","lyoo-ee'-tace","From G3017; a Levite, that is, descendant of Levi: - Levite."]},{"k":"G3020","v":["Λευΐτικός","Leuitikos","lyoo-it-ee-kos'","From G3019; Levitic, that is, relating to the Levites: - Levitical."]},{"k":"G3021","v":["λευκαίνω","leukainō","lyoo-kah'ee-no","From G3022; to whiten: - make white, whiten."]},{"k":"G3022","v":["λευκός","leukos","lyoo-kos'","From λύκη lukē (“light”); white: - white."]},{"k":"G3023","v":["λεών","leōn","leh-ohn'","A primary word; a “lion”: - lion."]},{"k":"G3024","v":["λήθη","lēthē","lay'-thay","From G2990; forgetfulness: - + forget."]},{"k":"G3025","v":["ληνός","lēnos","lay-nos'","Apparently a primary word; a trough, that is, wine vat: - winepress."]},{"k":"G3026","v":["λῆρος","lēros","lay'-ros","Apparently a primary word; twaddle, that is, an incredible story: - idle tale."]},{"k":"G3027","v":["λῃστης","lēstēs","lace-tace'","From ληΐ́ζομαι lēizomai (to “plunder”); a brigand: - robber, thief."]},{"k":"G3028","v":["λῆψις","lēpsis","lape'-sis","From G2983; receipt (the act): - receiving."]},{"k":"G3029","v":["λίαν","lian","lee'-an","Of uncertain affinity; much (adverb): - exceeding, great (-ly), sore, very (+ chiefest)."]},{"k":"G3030","v":["λίβανος","libanos","lib'-an-os","Of foreign origin [H3828]; the incense tree, that is, (by implication) incense itself: - frankincense."]},{"k":"G3031","v":["λιβανωτός","libanōtos","lib-an-o-tos'","From G3030; frankincense, that is, (by extension) a censer for burning it: - censer."]},{"k":"G3032","v":["Λιβερτῖνος","Libertinos","lib-er-tee'-nos","Of Latin origin; a Roman freedman: - Libertine."]},{"k":"G3033","v":["Λιβύη","Libuē","lib-oo'-ay","Probably from G3047; Libye, a region of Africa: - Libya."]},{"k":"G3034","v":["λιθάζω","lithazō","lith-ad'-zo","From G3037; to lapidate: - stone."]},{"k":"G3035","v":["λίθινος","lithinos","lith'-ee-nos","From G3037; stony, that is, made of stone: - of stone."]},{"k":"G3036","v":["λιθοβολέω","lithoboleō","lith-ob-ol-eh'-o","From a compound of G3037 and G906; to throw stones, that is, lapidate: - stone, cast stones."]},{"k":"G3037","v":["λίθος","lithos","lee'-thos","Apparently a primary word; a stone (literally or figuratively): - (mill-, stumbling-) stone."]},{"k":"G3038","v":["λιθόστρωτος","lithostrōtos","lith-os'-tro-tos","From G3037 and a derivative of G4766; stone strewed, that is, a tessellated mosaic on which the Roman tribunal was placed: - Pavement."]},{"k":"G3039","v":["λικμάω","likmaō","lik-mah'-o","From λικμός likmos, the equivalent. of λίκνον liknon (a winnowing fan or basket); to winnow, that is, (by analogy) to triturate: - grind to powder."]},{"k":"G3040","v":["λιμήν","limēn","lee-mane'","Apparently a primary word; a harbor: - haven. Compare G2568."]},{"k":"G3041","v":["λίμνη","limnē","lim'-nay","Probably from G3040 (through the idea of the nearness of shore); a pond (large or small): - lake."]},{"k":"G3042","v":["λιμός","limos","lee-mos'","Probably from G3007 (through the idea of destitution); a scarcity of food: - dearth, famine, hunger."]},{"k":"G3043","v":["λίνον","linon","lee'-non","Probably a primary word; flax, that is, (by implication) “linen”: - linen."]},{"k":"G3044","v":["Λῖνος","Linos","lee'-nos","Perhaps from G3043; Linus, a Christian: - Linus."]},{"k":"G3045","v":["λιπαρός","liparos","lip-ar-os'","From λιπος lipos (grease); fat, that is, (figuratively) sumptuous: - dainty."]},{"k":"G3046","v":["λίτρα","litra","lee'-trah","Of Latin origin (libra); a pound in weight: - pound."]},{"k":"G3047","v":["λίψ","lips","leeps","Probably from λείβω leibō (to pour a “libation”); the south (southwest) wind (as bringing rain), that is, (by extension) the south quarter: - southwest."]},{"k":"G3048","v":["λογία","logia","log-ee'-ah","From G3056 (in the commercial sense); a contribution: - collection, gathering."]},{"k":"G3049","v":["λογίζομαι","logizomai","log-id'-zom-ahee","Middle voice from G3056; to take an inventory, that is, estimate (literally or figuratively): - conclude, (ac-) count (of), + despise, esteem, impute, lay, number, reason, reckon, suppose, think (on)."]},{"k":"G3050","v":["λογικός","logikos","log-ik-os'","From G3056; rational (“logical”): - reasonable, of the word."]},{"k":"G3051","v":["λόγιον","logion","log'-ee-on","Neuter of G3052; an utterance (of God): - oracle."]},{"k":"G3052","v":["λόγιος","logios","log'-ee-os","From G3056; fluent, that is, an orator: - eloquent."]},{"k":"G3053","v":["λογισμός","logismos","log-is-mos'","From G3049; computation, that is, (figuratively) reasoning (conscience, conceit): - imagination, thought."]},{"k":"G3054","v":["λογομαχέω","logomacheō","log-om-akh-eh'-o","From a compound of G3056 and G3164; to be disputatious (on trifles): - strive about words."]},{"k":"G3055","v":["λογομαχία","logomachia","log-om-akh-ee'-ah","From the same as G3054; disputation about trifles (“logomachy”): - strife of words."]},{"k":"G3056","v":["λόγος","logos","log'-os","From G3004; something said (including the thought); by implication a topic (subject of discourse), also reasoning (the mental faculty) or motive; by extension a computation; specifically (with the article in John) the Divine Expression (that is, Christ): - account, cause, communication, X concerning, doctrine, fame, X have to do, intent, matter, mouth, preaching, question, reason, + reckon, remove, say (-ing), shew, X speaker, speech, talk, thing, + none of these things move me, tidings, treatise, utterance, word, work."]},{"k":"G3057","v":["λόγχη","logchē","long'-khay","Perhaps a primary word; a “lance”: - spear."]},{"k":"G3058","v":["λοιδορέω","loidoreō","loy-dor-eh'-o","From G3060; to reproach, that is, vilify: - revile."]},{"k":"G3059","v":["λοιδορία","loidoria","loy-dor-ee'-ah","From G3060; slander or vituperation: - railing, reproach [-fully]."]},{"k":"G3060","v":["λοίδορος","loidoros","loy'-dor-os","From λοιδός loidos (mischief); abusive, that is, a black guard: - railer, reviler."]},{"k":"G3061","v":["λοιμός","loimos","loy-mos'","Of uncertain affinity; a plague (literally the disease, or figuratively a pest): - pestilence (-t)."]},{"k":"G3062","v":["λοιποί","loipoi","loy-poy'","Masculine plural of a derivative of G3007; remaining ones: - other, which remain, remnant, residue, rest."]},{"k":"G3063","v":["λοιπόν","loipon","loy-pon'","Neuter singular of the same as G3062; something remaining (adverb): - besides, finally, furthermore, (from) henceforth, moreover, now, + it remaineth, then."]},{"k":"G3064","v":["λοιποῦ","loipou","loy-poo'","Genitive singular of the same as G3062; remaining time: - from henceforth."]},{"k":"G3065","v":["Λουκᾶς","Loukas","loo-kas'","Contracted from the Latin Lucanus; Lucas, a Christian: - Lucas, Luke."]},{"k":"G3066","v":["Λούκιος","Loukios","loo'-kee-os","Of Latin origin; illuminative; Lucius, a Christian: - Lucius."]},{"k":"G3067","v":["λουτρόν","loutron","loo-tron'","From G3068; a bath, that is, (figuratively) baptism: - washing."]},{"k":"G3068","v":["λούω","louō","loo'-o","A primary verb; to bathe (the whole person; whereas G3538 means to wet a part only, and G4150 to wash, cleanse garments exclusively): - wash."]},{"k":"G3069","v":["Λύδδα","Ludda","lud'-dah","Of Hebrew origin [H3850]; Lydda (that is, Lod), a place in Palestine: - Lydda."]},{"k":"G3070","v":["Λυδία","Ludia","loo-dee'-ah","Properly feminine of Λύδιος Ludios (of foreign origin; a Lydian, in Asia Minor); Lydia, a Christian woman: - Lydia."]},{"k":"G3071","v":["Λυκαονία","Lukaonia","loo-kah-on-ee'-ah","Perhaps remotely from G3074; Lycaonia, a region of Asia Minor: - Lycaonia."]},{"k":"G3072","v":["Λυκαονιστί","Lukaonisti","loo-kah-on-is-tee'","Adverb from a derivative of G3071; Lycaonistically, that is, in the language of the Lycaonians: - in the speech of Lycaonia."]},{"k":"G3073","v":["Λυκία","Lukia","loo-kee'-ah","Probably remotely from G3074; Lycia, a province of Asia Minor: - Lycia."]},{"k":"G3074","v":["λύκος","lukos","loo'-kos","Perhaps akin to the base of G3022 (from the whitish hair); a wolf: - wolf."]},{"k":"G3075","v":["λυμαίνομαι","lumainomai","loo-mah'ee-nom-ahee","Middle voice from a probable derivative of G3089 (meaning filth); properly to soil, that is, (figuratively) insult (maltreat): - make havock of."]},{"k":"G3076","v":["λυπέω","lupeō","loo-peh'-o","From G3077; to distress; reflexively or passively to be sad: - cause grief, grieve, be in heaviness, (be) sorrow (-ful), be (make) sorry."]},{"k":"G3077","v":["λύπη","lupē","loo'-pay","Apparently a primary word; sadness: - grief, grievous, + grudgingly, heaviness, sorrow."]},{"k":"G3078","v":["Λυσανίας","Lusanias","loo-san-ee'-as","From G3080 and ἀνία ania (trouble); grief dispelling; Lysanias, a governor of Abilene: - Lysanias."]},{"k":"G3079","v":["Λυσίας","Lusias","loo-see'-as","Of uncertain affinity; Lysias, a Roman: - Lysias."]},{"k":"G3080","v":["λύσις","lusis","loo'-sis","From G3089; a loosening, that is, (specifically) divorce: - to be loosed."]},{"k":"G3081","v":["λυσιτελεῖ","lusitelei","loo-sit-el-i'","Third person singular present indicative active of a derivative of a compound of G3080 and G5056; impersonally it answers the purpose, that is, is advantageous: - it is better."]},{"k":"G3082","v":["Λύστρα","Lustra","loos'-trah","Of uncertain origin; Lystra, a place in Asia Minor: - Lystra."]},{"k":"G3083","v":["λύτρον","lutron","loo'-tron","From G3089; something to loosen with, that is, a redemption price (figuratively atonement): - ransom."]},{"k":"G3084","v":["λυτρόω","lutroō","loo-tro'-o","From G3083; to ransom (literally or figuratively): - redeem."]},{"k":"G3085","v":["λύτρωσις","lutrōsis","loo'-tro-sis","From G3084; a ransoming (figuratively): - + redeemed, redemption."]},{"k":"G3086","v":["λυτρωτής","lutrōtēs","loo-tro-tace'","From G3084; a redeemer (figuratively): - deliverer."]},{"k":"G3087","v":["λυχνία","luchnia","lookh-nee'-ah","From G3088; a lamp stand (literally or figuratively): - candlestick."]},{"k":"G3088","v":["λύχνος","luchnos","lookh'-nos","From the base of G3022; a portable lamp or other illuminator (literally or figuratively): - candle, light."]},{"k":"G3089","v":["λύω","luō","loo'-o","A primary verb; to “loosen” (literally or figuratively): - break (up), destroy, dissolve, (un-) loose, melt, put off. Compare G4486."]},{"k":"G3090","v":["Λωΐ́ς","Lōis","lo-ece'","Of uncertain origin; Lois, a Christian woman: - Lois."]},{"k":"G3091","v":["Λώτ","Lōt","lote","Of Hebrew origin [H3876]; Lot, a patriarch: - Lot."]},{"k":"G3092","v":["Μαάθ","Maath","mah-ath'","Probably of Hebrew origin; Maath, an Israelite: - Maath."]},{"k":"G3093","v":["Μαγδαλά","Magdala","mag-dal-ah'","Of Chaldee origin (compare [H4026]); the tower; Magadala (that is, Migdala), a place in Palestine: - Magdala."]},{"k":"G3094","v":["Μαγδαληνή","Magdalēnē","mag-dal-ay-nay'","Feminine of a derivative of G3093; a female Magdalene, that is, inhabitant of Magdala: - Magdalene."]},{"k":"G3095","v":["μαγεία","mageia","mag-i'-ah","From G3096; “magic”: - sorcery."]},{"k":"G3096","v":["μαγεύω","mageuō","mag-yoo'-o","From G3097; to practice magic: - use sorcery."]},{"k":"G3097","v":["μάγος","magos","mag'-os","Of foreign origin [H7248]; a Magian, that is, Oriental scientist; by implication a magician: - sorcerer, wise man."]},{"k":"G3098","v":["Μαγώγ","Magōg","mag-ogue'","Of Hebrew origin [H4031]; Magog, a foreign nation, that is, (figuratively) an Antichristian party: - Magog."]},{"k":"G3099","v":["Μαδιάν","Madian","mad-ee-an'","Of Hebrew origin [H4080]; Madian (that is, Midian), a region of Arabia: - Madian."]},{"k":"G3100","v":["μαθητεύω","mathēteuō","math-ayt-yoo'-o","From G3101; intransitively to become a pupil; transitively to disciple, that is, enrol as scholar: - be disciple, instruct, teach."]},{"k":"G3101","v":["μαθητής","mathētēs","math-ay-tes'","From G3129; a learner, that is, pupil: - disciple."]},{"k":"G3102","v":["μαθήτρια","mathētria","math-ay'-tree-ah","Feminine from G3101; a female pupil: - disciple."]},{"k":"G3103","v":["Μαθουσάλα","Mathousala","math-oo-sal'-ah","Of Hebrew origin [H4968]; Mathusala (that is, Methushelach), an antediluvian: - Mathusala."]},{"k":"G3104","v":["Μαΐνάν","Mainan","mahee-nan'","Probably of Hebrew origin; Mainan, an Israelite: - Mainan."]},{"k":"G3105","v":["μαίνομαι","mainomai","mah'ee-nom-ahee","Middle voice from a primary word μάω maō (to long for; through the idea of insensate craving); to rave as a “maniac”: - be beside self (mad)."]},{"k":"G3106","v":["μακαρίζω","makarizō","mak-ar-id'-zo","From G3107; to beatify, that is, pronounce (or esteem) fortunate: - call blessed, count happy."]},{"k":"G3107","v":["μακάριος","makarios","mak-ar'-ee-os","A prolonged form of the poetical μάκαρ makar (meaning the same); supremely blest; by extension fortunate, well off: - blessed, happy (X -ier)."]},{"k":"G3108","v":["μακαρισμός","makarismos","mak-ar-is-mos'","From G3106; beatification, that is, attribution of good fortune: - blessedness."]},{"k":"G3109","v":["Μακεδονία","Makedonia","mak-ed-on-ee'-ah","From G3110; Macedonia, a region of Greece: - Macedonia."]},{"k":"G3110","v":["Μακεδών","Makedōn","mak-ed-ohn'","Of uncertain derivation; a Macedon (Macedonian), that is, inhabitant of Macedonia: - of Macedonia, Macedonian."]},{"k":"G3111","v":["μάκελλον","makellon","mak'-el-lon","Of Latin origin [macellum]; a butcher's stall, meat market or provision shop: - shambles."]},{"k":"G3112","v":["μακράν","makran","mak-ran'","Feminine accusative singular of G3117 (G3598 being implied); at a distance (literally or figuratively): - (a-) far (off), good (great) way off."]},{"k":"G3113","v":["μακρόθεν","makrothen","mak-roth'-en","Adverb from G3117; from a distance or afar: - afar off, from far."]},{"k":"G3114","v":["μακροθυμέω","makrothumeō","mak-roth-oo-meh'-o","From the same as G3116; to be long spirited, that is, (objectively) forbearing or (subjectively) patient: - bear (suffer) long, be longsuffering, have (long) patience, be patient, patiently endure."]},{"k":"G3115","v":["μακροθυμία","makrothumia","mak-roth-oo-mee'-ah","From the same as G3116; longanimity, that is, (objectively) forbearance or (subjectively) fortitude: - longsuffering, patience."]},{"k":"G3116","v":["μακροθυμώς","makrothumōs","mak-roth-oo-moce'","Adverb of a compound of G3117 and G2372; with long (enduring) temper, that is, leniently: - patiently."]},{"k":"G3117","v":["μακρός","makros","mak-ros'","From G3372; long (in place [distant] or time [neuter plural]): - far, long."]},{"k":"G3118","v":["μακροχρόνιος","makrochronios","mak-rokh-ron'-ee-os","From G3117 and G5550; long timed, that is, long lived: - live long."]},{"k":"G3119","v":["μαλακία","malakia","mal-ak-ee'-ah","From G3120; softness, that is, enervation (debility): - disease."]},{"k":"G3120","v":["μαλακός","malakos","mal-ak-os'","Of uncertain affinity; soft, that is, fine (clothing); figuratively a catamite: - effeminate, soft."]},{"k":"G3121","v":["Μαλελεήλ","Maleleēl","mal-el-eh-ale'","Of Hebrew origin [H4111]; Maleleel (that is, Mahalalel), an antediluvian: - Maleleel."]},{"k":"G3122","v":["μάλιστα","malista","mal'-is-tah","Neuter plural of the superlative of an apparently primary adverb μάλα mala (very); (adverb) most (in the greatest degree) or particularly: - chiefly, most of all, (e-) specially."]},{"k":"G3123","v":["μᾶλλον","mallon","mal'-lon","Neuter of the comparative of the same as G3122; (adverb) more (in a greater degree) or rather: - + better, X far, (the) more (and more), (so) much (the more), rather."]},{"k":"G3124","v":["Μάλχος","Malchos","mal'-khos","Of Hebrew origin [H4429]; Malchus, an Israelite: - Malchus."]},{"k":"G3125","v":["μάμμη","mammē","mam'-may","Of natural origin [“mammy”]; a grandmother: - grandmother."]},{"k":"G3126","v":["μαμμωνᾶς","mammōnas","mam-mo-nas'","Of Chaldee origin (confidence, that is, figuratively wealth, personified); mammonas, that is, avarice (deified): - mammon."]},{"k":"G3127","v":["Μαναήν","Manaēn","man-ah-ane'","Of uncertain origin; Manaen, a Christian: - Manaen."]},{"k":"G3128","v":["Μανασσῆς","Manassēs","man-as-sace'","Of Hebrew origin [H4519]; Manasses (that is, Menashsheh), an Israelite: - Manasses."]},{"k":"G3129","v":["μανθάνω","manthanō","man-than'-o","Prolonged from a primary verb, another form of which, μαθέω matheō, is used as an alternate in certain tenses; to learn (in any way): - learn, understand."]},{"k":"G3130","v":["μανία","mania","man-ee'-ah","From G3105; craziness: - [+ make] X mad."]},{"k":"G3131","v":["μάννα","manna","man'-nah","Of Hebrew origin [H4478]; manna (that is, man), an edible gum: - manna."]},{"k":"G3132","v":["μαντεύομαι","manteuomai","mant-yoo'-om-ahee","From a derivative of G3105 (meaning a prophet, as supposed to rave through inspiration); to divine, that is, utter spells (under pretence of foretelling): - by soothsaying."]},{"k":"G3133","v":["μαραίνω","marainō","mar-ah'ee-no","Of uncertain affinity; to extinguish (as fire), that is, (figuratively and passively) to pass away: - fade away."]},{"k":"G3134","v":["μαρὰν ἀθά","maran atha","mar'-an ath'-ah","Of Chaldee origin (meaning our Lord has come); maranatha, that is, an exclamation of the approaching divine judgment: - Maran-atha."]},{"k":"G3135","v":["μαργαρίτης","margaritēs","mar-gar-ee'-tace","From μάργαρος margaros (a pearl oyster); a pearl: - pearl."]},{"k":"G3136","v":["Μάρθα","Martha","mar'-thah","Probably of Chaldee origin (meaning mistress); Martha, a Christian woman: - Martha."]},{"k":"G3137","v":["Μαρία, Μαριάμ","Maria    Mariam","mar-ee'-ah, mar-ee-am'","Of Hebrew origin [H4813]; Maria or Mariam (that is, Mirjam), the name of six Christian females: - Mary."]},{"k":"G3138","v":["Μάρκος","Markos","mar'-kos","Of Latin origin; Marcus, a Christian: - Marcus, Mark."]},{"k":"G3139","v":["μάρμαρος","marmaros","mar'-mar-os","From μαρμαίρω marmairō (to glisten); marble (as sparkling white): - marble."]},{"k":"G3140","v":["μαρτυρέω","martureō","mar-too-reh'-o","From G3144; to be a witness, that is, testify (literally or figuratively): - charge, give [evidence], bear record, have (obtain, of) good (honest) report, be well reported of, testify, give (have) testimony, (be, bear, give, obtain) witness."]},{"k":"G3141","v":["μαρτυρία","marturia","mar-too-ree'-ah","From G3144; evidence given (judicially or generally): - record, report, testimony, witness."]},{"k":"G3142","v":["μαρτύριον","marturion","mar-too'-ree-on","Neuter of a presumed derivative of G3144; something evidential, that is, (generally) evidence given or (specifically) the Decalogue (in the sacred Tabernacle): - to be testified, testimony, witness."]},{"k":"G3143","v":["μαρτύρομαι","marturomai","mar-too'-rom-ahee","Middle voice from G3144; to be adduced as a witness, that is, (figuratively) to obtest (in affirmation or exhortation): - take to record, testify."]},{"k":"G3144","v":["μάρτυς","martus","mar'-toos","Of uncertain affinity; a witness (literally [judicially] or figuratively [generally]); by analogy a “martyr”: - martyr, record, witness."]},{"k":"G3145","v":["μασσάομαι","massaomai","mas-sah'-om-ahee","From a primary word μάσσω massō (to handle or squeeze); to chew: - gnaw."]},{"k":"G3146","v":["μαστιγόω","mastigoō","mas-tig-o'-o","From G3148; to flog (literally or figuratively): - scourge."]},{"k":"G3147","v":["μαστίζω","mastizō","mas-tid'-zo","From G3149; to whip (literally): - scourge."]},{"k":"G3148","v":["μάστιξ","mastix","mas'-tix","Probably from the base of G3145 (through the idea of contact); a whip (literally the Roman flagellum for criminals; figuratively a disease): - plague, scourging."]},{"k":"G3149","v":["μαστός","mastos","mas-tos'","From the base of G3145; a (properly female) breast (as if kneaded up): - pap."]},{"k":"G3150","v":["ματαιολογία","mataiologia","mat-ah-yol-og-ee'-ah","From G3151; random talk, that is, babble: - vain jangling."]},{"k":"G3151","v":["ματαιολόγος","mataiologos","mat-ah-yol-og'-os","From G3152 and G3004; an idle (that is, senseless or mischievous) talker, that is, a wrangler: - vain talker."]},{"k":"G3152","v":["μάταιος","mataios","mat'-ah-yos","From the base of G3155; empty, that is, (literally) profitless, or (specifically) an idol: - vain, vanity."]},{"k":"G3153","v":["ματαιότης","mataiotēs","mat-ah-yot'-ace","From G3152; inutility; figuratively transientness; morally depravity: - vanity."]},{"k":"G3154","v":["ματαιόω","mataioō","mat-ah-yo'-o","From G3152; to render (passively become) foolish, that is, (morally) wicked or (specifically) idolatrous: - become vain."]},{"k":"G3155","v":["μάτην","matēn","mat'-ane","Accusative case of a derivative of the base of G3145 (through the idea of tentative manipulation, that is, unsuccessful search, or else of punishment); folly, that is, (adverbially) to no purpose: - in vain."]},{"k":"G3156","v":["Ματθαῖος","Matthaios","mat-thah'-yos","A shorter form of G3161; Matthaeus (that is, Matthitjah), an Israelite and Christian: - Matthew."]},{"k":"G3157","v":["Ματθάν","Matthan","mat-than'","Of Hebrew origin [H4977]; Matthan (that is, Mattan), an Israelite: - Matthan."]},{"k":"G3158","v":["Ματθάτ","Matthat","mat-that'","Probably a shortened form of G3161; Matthat (that is, Mattithjah), the name of two Israelites: - Mathat."]},{"k":"G3159","v":["Ματθίας","Matthias","mat-thee'-as","Apparently a shortened form of G3161; Matthias (that is, Mattithjah), an Israelite: - Matthias."]},{"k":"G3160","v":["Ματταθά","Mattatha","mat-tath-ah'","Probably a shortened form of G3161 (compare [H4992]); Mattatha (that is, Mattithjah), an Israelite: - Mattatha."]},{"k":"G3161","v":["Ματταθίας","Mattathias","mat-tath-ee'-as","Of Hebrew origin [H4993]; Mattathias (that is, Mattithjah), an Israelite and Christian: - Mattathias."]},{"k":"G3162","v":["μάχαιρα","machaira","makh'-ahee-rah","Probably feminine of a presumed derivative of G3163; a knife, that is, dirk; figuratively war, judicial punishment: - sword."]},{"k":"G3163","v":["μάχη","machē","makh'-ay","From G3164; a battle, that is, (figuratively) controversy: - fighting, strive, striving."]},{"k":"G3164","v":["μάχομαι","machomai","makh'-om-ahee","Middle voice of an apparently primary verb; to war, that is, (figuratively) to quarrel, dispute: - fight, strive."]},{"k":"G3165","v":["μέ","me","meh","A shorter (and probably original) form of G1691; me: - I, me, my."]},{"k":"G3166","v":["μεγαλαυχέω","megalaucheō","meg-al-ow-kheh'-o","From a compound of G3173 and αὐχέω aucheō (to boast; akin to G837 and G2744); to talk big, that is, be grandiloquent (arrogant, egotistic): - boast great things."]},{"k":"G3167","v":["μεγαλεῖος","megaleios","meg-al-i'-os","From G3173; magnificent, that is, (neuter plural as noun) a conspicuous favor, or (subjectively) perfection: - great things, wonderful works."]},{"k":"G3168","v":["μεγαλειότης","megaleiotēs","meg-al-i-ot'-ace","From G3167; superbness, that is, glory or splendor: - magnificence, majesty, mighty power."]},{"k":"G3169","v":["μεγαλοπρεπής","megaloprepēs","meg-al-op-rep-ace'","From G3173 and G4241; befitting greatness or magnificence (majestic): - excellent."]},{"k":"G3170","v":["μεγαλύνω","megalunō","meg-al-oo'-no","From G3173; to make (or declare) great, that is, increase or (figuratively) extol: - enlarge, magnify, shew great."]},{"k":"G3171","v":["μεγάλως","megalōs","meg-al'-oce","Adverb from G3173; much: - greatly."]},{"k":"G3172","v":["μεγαλωσύνη","megalōsunē","meg-al-o-soo'-nay","From G3173; greatness, that is, (figuratively) divinity (often God himself): - majesty."]},{"k":"G3173","v":["μέγας","megas","meg'-as","Including the prolonged forms, femine μεγάλη megalē, plural μέγάλοι megaloi, etc.; compare also G3176, G3187], big (literally or figuratively, in a very wide application): - (+ fear) exceedingly, great (-est), high, large, loud, mighty, + (be) sore (afraid), strong, X to years."]},{"k":"G3174","v":["μέγεθος","megethos","meg'-eth-os","From G3173; magnitude (figuratively): - greatness."]},{"k":"G3175","v":["μεγιστᾶνες","megistanes","meg-is-tan'-es","Plural from G3176; grandees: - great men, lords."]},{"k":"G3176","v":["μέγιστος","megistos","meg'-is-tos","Superlative of G3173; greatest or very great: - exceeding great."]},{"k":"G3177","v":["μεθερμηνεύω","methermēneuō","meth-er-mane-yoo'-o","From G3326 and G2059; to explain over, that is, translate: - (by) interpret (-ation)."]},{"k":"G3178","v":["μέθη","methē","meth'-ay","Apparently a primary word; an intoxicant, that is, (by implication) intoxication: - drunkenness."]},{"k":"G3179","v":["μεθίστημι, μεθιστάνω","methistēmi    methistanō","meth-is'-tay-mee, -is-tan'-o","From G3326 and G2476; (second form used at 1Co_13:2) to transfer, that is, carry away, depose or (figuratively) exchange, seduce: - put out, remove, translate, turn away."]},{"k":"G3180","v":["μεθοδεία","methodeia","meth-od-i'-ah","From a compound of G3326 and G3593 [compare “method”]; traveling over, that is, travesty, (trickery): - wile, lie in wait."]},{"k":"G3181","v":["μεθόριος","methorios","meth-or'-ee-os","From G3326 and G3725; bounded alongside, that is, contiguous (neuter plural as noun, frontier): - border."]},{"k":"G3182","v":["μεθύσκω","methuskō","meth-oos'-ko","A prolonged (transitive) form of G3184; to intoxicate: - be drunk (-en)."]},{"k":"G3183","v":["μέθυσος","methusos","meth'-oo-sos","From G3184; tipsy, that is, (as noun) a sot: - drunkard."]},{"k":"G3184","v":["μεθύω","methuō","meth-oo'-o","From another form of G3178; to drink to intoxication, that is, get drunk: - drink well, make (be) drunk (-en)."]},{"k":"G3185","v":["μεῖζον","meizon","mide'-zon","Neuter of G3187; (adverbially) in a greater degree: - the more."]},{"k":"G3186","v":["μειζότερος","meizoteros","mide-zot'-er-os","Continued comparative of G3187; still larger (figuratively): - greater."]},{"k":"G3187","v":["μείζων","meizōn","mide'-zone","Irregular comparative of G3173; larger (literally or figuratively, specifically in age): - elder, greater (-est), more."]},{"k":"G3188","v":["μέλαν","melan","mel'-an","Neuter of G3189 as noun; ink: - ink."]},{"k":"G3189","v":["μέλας","melas","mel'-as","Apparently a primary word; black: - black."]},{"k":"G3190","v":["Μελεᾶς","Meleas","mel-eh-as'","Of uncertain origin; Meleas, an Israelite: - Meleas."]},{"k":"G3191","v":["μελετάω","meletaō","mel-et-ah'-o","From a presumed derivative of G3199; to take care of, that is, (by implication) revolve in the mind: - imagine, (pre-) meditate."]},{"k":"G3192","v":["μέλι","meli","mel'-ee","Apparently a primary word; honey: - honey."]},{"k":"G3193","v":["μελίσσιος","melissios","mel-is'-see-os","From G3192; relating to honey, that is, bee (comb): - honeycomb."]},{"k":"G3194","v":["Μελίτη","Melitē","mel-ee'-tay","Of uncertain origin; Melita, an island in the Mediterranean: - Melita."]},{"k":"G3195","v":["μέλλω","mellō","mel'-lo","A strengthened form of G3199 (through the idea of expectation); to intend, that is, be about to be, do, or suffer something (of persons or things, especially events; in the sense of purpose, duty, necessity, probability, possibility, or hesitation): - about, after that, be (almost), (that which is, things, + which was for) to come, intend, was to (be), mean, mind, be at the point, (be) ready, + return, shall (begin), (which, that) should (after, afterwards, hereafter) tarry, which was for, will, would, be yet."]},{"k":"G3196","v":["μέλος","melos","mel'-os","Of uncertain affinity; a limb or part of the body: - member."]},{"k":"G3197","v":["Μελχί","Melchi","mel-khee'","Of Hebrew origin ([H4428] with pronominal suffix, my king); Melchi (that is, Malki), the name of two Israelites: - Melchi."]},{"k":"G3198","v":["Μελχισεδέκ","Melchisedek","mel-khis-ed-ek'","Of Hebrew origin [H4442]; Melchisedek (that is, Malkitsedek), a patriarch: - Melchisedec."]},{"k":"G3199","v":["μέλω","melō","mel'-o","A primary verb; to be of interest to, that is, to concern (only third person singular present indicative used impersonally it matters): - (take) care."]},{"k":"G3200","v":["μεμβράνα","membrana","mem-bran'-ah","Of Latin origin (“membrane”); a (written) sheep skin: - parchment."]},{"k":"G3201","v":["μέμφομαι","memphomai","mem'-fom-ahee","Middle voice of an apparently primary verb; to blame: - find fault."]},{"k":"G3202","v":["μεμψίμοιρος","mempsimoiros","mem-psim'-oy-ros","From a presumed derivative of G3201 and μοῖρα moira (fate; akin to the base of G3313); blaming fate, that is, querulous (discontented): - complainer."]},{"k":"G3303","v":["μέν","men","men","A primary particle; properly indicative of affirmation or concession (in fact); usually followed by a contrasted clause with G1161 (this one, the former, etc.: - even, indeed, so, some, truly, verily. Often compounded with other particles in an intensive or asseverative sense."]},{"k":"G3304","v":["μενοῦνγε","menounge","men-oon'-geh","From G3303 and G3767 and G1065; so then at least: - nay but, yea doubtless (rather, verily)."]},{"k":"G3305","v":["μέντοι","mentoi","men'-toy","From G3303 and G5104; indeed though, that is, however: - also, but, howbeit, nevertheless, yet."]},{"k":"G3306","v":["μένω","menō","men'-o","A primary verb; to stay (in a given place, state, relation or expectancy): - abide, continue, dwell, endure, be present, remain, stand, tarry (for), X thine own."]},{"k":"G3307","v":["μερίζω","merizō","mer-id'-zo","From G3313; to part, that is, (literally) to apportion, bestow, share, or (figuratively) to disunite, differ: - deal, be difference between, distribute, divide, give part."]},{"k":"G3308","v":["μέριμνα","merimna","mer'-im-nah","From G3307 (through the idea of distraction); solicitude: - care."]},{"k":"G3309","v":["μεριμνάω","merimnaō","mer-im-nah'-o","From G3308; to be anxious about: - (be, have) care (-ful), take thought."]},{"k":"G3310","v":["μερίς","meris","mer-ece'","Feminine of G3313; a portion, that is, province, share or (abstractly) participation: - part (X -akers)."]},{"k":"G3311","v":["μερισμός","merismos","mer-is-mos'","From G3307; a separation or distribution: - dividing asunder, gift."]},{"k":"G3312","v":["μεριστής","meristēs","mer-is-tace'","From G3307; an apportioner (administrator): - divider."]},{"k":"G3313","v":["μέρος","meros","mer'-os","From an obsolete but more primary form of μείρομαι meiromai (to get as a section or allotment); a division or share (literally or figuratively, in a wide application): - behalf, coast, course, craft, particular (+ -ly), part (+ -ly), piece, portion, respect, side, some sort (-what)."]},{"k":"G3314","v":["μεσημβρία","mesēmbria","mes-ame-bree'-ah","From G3319 and G2250; midday; by implication the south: - noon, south."]},{"k":"G3315","v":["μεσιτεύω","mesiteuō","mes-it-yoo'-o","From G3316; to interpose (as arbiter), that is, (by implication) to ratify (as surety): - confirm."]},{"k":"G3316","v":["μεσίτης","mesitēs","mes-ee'-tace","From G3319; a go between, that is, (simply) an internunciator, or (by implication) a reconciler (intercessor): - mediator."]},{"k":"G3317","v":["μεσονύκτιον","mesonuktion","mes-on-ook'-tee-on","Neuter of a compound of G3319 and G3571; midnight (especially as a watch): - midnight."]},{"k":"G3318","v":["Μεσοποταμία","Mesopotamia","mes-op-ot-am-ee'-ah","From G3319 and G4215; Mesopotamia (as lying between the Euphrates and the Tigris; compare [H763]), a region of Asia: - Mesopotamia."]},{"k":"G3319","v":["μέσος","mesos","mes'-os","From G3326; middle (as adjective or [neuter] noun): - among, X before them, between, + forth, mid [-day, -night], midst, way."]},{"k":"G3320","v":["μεσότοιχον","mesotoichon","mes-ot'-oy-khon","From G3319 and G5109; a partition (figuratively): - middle wall."]},{"k":"G3321","v":["μεσουράνημα","mesouranēma","mes-oo-ran'-ay-mah","From a presumed compound of G3319 and G3772; mid-sky: - midst of heaven."]},{"k":"G3322","v":["μεσόω","mesoō","mes-o'-o","From G3319; to form the middle, that is, (in point of time), to be half way over: - be about the midst."]},{"k":"G3323","v":["Μεσσίας","Messias","mes-see'-as","Of Hebrew origin [H4899]; the Messias (that is, Mashiach), or Christ: - Messias."]},{"k":"G3324","v":["μεστός","mestos","mes-tos'","Of uncertain derivative; replete (literally or figuratively): - full."]},{"k":"G3325","v":["μεστόω","mestoō","mes-to'-o","From G3324; to replenish, that is, (by implication) to intoxicate: - fill."]},{"k":"G3326","v":["μετά","meta","met-ah'","A primary preposition (often used adverbially); properly denoting accompaniment; “amid” (local or causal); modified variously according to the case (genitive case association, or accusative case succession) with which it is joined; occupying an intermediate position between G575 or G1537 and G1519 or G4314; less intimate than G1722, and less close than G4862): - after (-ward),X that he again, against, among, X and, + follow, hence, hereafter, in, of, (up-) on, + our, X and setting, since, (un-) to, + together, when, with (+ -out). Often used in composition, in substantially the same relations of participation or proximity, and transfer or sequence."]},{"k":"G3327","v":["μεταβαίνω","metabainō","met-ab-ah'ee-no","From G3326 and the base of G939; to change place: - depart, go, pass, remove."]},{"k":"G3328","v":["μεταβάλλω","metaballō","met-ab-al'-lo","From G3326 and G906; to throw over, that is, (middle voice, figuratively) to turn about in opinion: - change mind."]},{"k":"G3329","v":["μετάγω","metagō","met-ag'-o","From G3326 and G71; to lead over, that is, transfer (direct): - turn about."]},{"k":"G3330","v":["μεταδίδωμι","metadidōmi","met-ad-id'-o-mee","From G3326 and G1325; to give over, that is, share: - give, impart."]},{"k":"G3331","v":["μετάθεσις","metathesis","met-ath'-es-is","From G3346; transposition, that is, transferral (to heaven), disestablishment (of a law): - change, removing, translation."]},{"k":"G3332","v":["μεταίρω","metairō","met-ah'ee-ro","From G3326 and G142; to betake oneself, that is, remove (locally): - depart."]},{"k":"G3333","v":["μετακαλέω","metakaleō","met-ak-al-eh'-o","From G3326 and G2564; to call elsewhere, that is, summon: - call (for, hither)."]},{"k":"G3334","v":["μετακινέω","metakineō","met-ak-ee-nah'-o","From G3326 and G2795; to stir to a place elsewhere, that is, remove (figuratively): - move away."]},{"k":"G3335","v":["μεταλαμβάνω","metalambanō","met-al-am-ban'-o","From G3326 and G2983; to participate; generally to accept (and use): - eat, have, be partaker, receive, take."]},{"k":"G3336","v":["μετάληψις","metalēpsis","met-al'-ape-sis","From G3335; participation: - taking."]},{"k":"G3337","v":["μεταλλάσσω","metallassō","met-al-las'-so","From G3326 and G236; to exchange: - change."]},{"k":"G3338","v":["μεταμέλλομαι","metamellomai","met-am-el'-lom-ahee","From G3326 and the middle of G3199; to care afterwards, that is, regret: - repent (self)."]},{"k":"G3339","v":["μεταμορφόω","metamorphoō","met-am-or-fo'-o","From G3326 and G3445; to transform (literally or figuratively “metamorphose”): - change, transfigure, transform."]},{"k":"G3340","v":["μετανοέω","metanoeō","met-an-o-eh'-o","From G3326 and G3539; to think differently or afterwards, that is, reconsider (morally to feel compunction): - repent."]},{"k":"G3341","v":["μετάνοια","metanoia","met-an'-oy-ah","From G3340; (subjectively) compunction (for guilt, including reformation); by implication reversal (of [another’s] decision): - repentance."]},{"k":"G3342","v":["μεταξύ","metaxu","met-ax-oo'","From G3326 and a form of G4862; betwixt (of place or person); (of time) as adjective intervening, or (by implication) adjoining: - between, mean while, next."]},{"k":"G3343","v":["μεταπέμπω","metapempō","met-ap-emp'-o","From G3326 and G3992; to send from elsewhere, that is, (middle voice) to summon or invite: - call (send) for."]},{"k":"G3344","v":["μεταστρέφω","metastrephō","met-as-tref'-o","From G3326 and G4762; to turn across, that is, transmute or (figuratively) corrupt: - pervert, turn."]},{"k":"G3345","v":["μετασχηματίζω","metaschēmatizō","met-askh-ay-mat-id'-zo","From G3326 and a derivative of G4976; to transfigure or disguise; figuratively to apply (by accommodation): - transfer, transform (self)."]},{"k":"G3346","v":["μετατίθημι","metatithēmi","met-at-ith'-ay-mee","From G3326 and G5087; to transfer, that is, (literally) transport, (by implication) exchange, (reflexively) change sides, or (figuratively) pervert: - carry over, change, remove, translate, turn."]},{"k":"G3347","v":["μετέπειτα","metepeita","met-ep'-i-tah","From G3326 and G1899; thereafter: - afterward."]},{"k":"G3348","v":["μετέχω","metechō","met-ekh'-o","From G3326 and G2192; to share or participate; by implication belong to, eat (or drink): - be partaker, pertain, take part, use."]},{"k":"G3349","v":["μετεωρίζω","meteōrizō","met-eh-o-rid'-zo","From a compound of G3326 and a collateral form of G142 or perhaps rather of G109 (compare “meteor”); to raise in mid-air, that is, (figuratively) suspend (passively fluctuate or be anxious): - be of doubtful mind."]},{"k":"G3350","v":["μετοικεσία","metoikesia","met-oy-kes-ee'-ah","From a derivative of a compound of G3326 and G3624; a change of abode, that is, (specifically) expatriation: - X brought, carried (-ying) away (in-) to."]},{"k":"G3351","v":["μετοικίζω","metoikizō","met-oy-kid'-zo","From the same as G3350; to transfer as a settler or captive, that is, colonize or exile: - carry away, remove into."]},{"k":"G3352","v":["μετοχή","metochē","met-okh-ay'","From G3348; participation, that is, intercourse: - fellowship."]},{"k":"G3353","v":["μέτοχος","metochos","met'-okh-os","From G3348; participant, that is, (as noun) a sharer; by implication an associate: - fellow, partaker, partner."]},{"k":"G3354","v":["μετρέω","metreō","met-reh'-o","From G3358; to measure (that is, ascertain in size by a fixed standard); by implication to admeasure (that is, allot by rule); figuratively to estimate: - measure, mete."]},{"k":"G3355","v":["μετρητής","metrētēs","met-ray-tace'","From G3354; a measurer, that is, (specifically) a certain standard measure of capacity for liquids: - firkin."]},{"k":"G3356","v":["μετριοπαθέω","metriopatheō","met-ree-op-ath-eh'-o","From a compound of the base of G3357 and G3806; to be moderate in passion, that is, gentle (to treat indulgently): - have compassion."]},{"k":"G3357","v":["μετρίως","metriōs","met-ree'-oce","Adverb from a derivative of G3358; moderately, that is, slightly: - a little."]},{"k":"G3358","v":["μέτρον","metron","met'-ron","An apparently primary word; a measure (“metre”), literally or figuratively; by implication a limited portion (degree): - measure."]},{"k":"G3359","v":["μέτωπον","metopon","met'-o-pon","From G3326 and ὤψ ōps (the face); the forehead (as opposite the countenance): - forehead."]},{"k":"G3360","v":["μέχρι, μεχρίς","mechri    mechris","mekh'-ree, mekh-ris'","From G3372; as far as, that is, up to a certain point (as preposition of extent [denoting the terminus, whereas G891 refers especially to the space of time or place intervening] or conjugation): - till, (un-) to, until."]},{"k":"G3361","v":["μή","mē","may","A primary particle of qualified negation (whereas G3756 expresses an absolute denial); (adverbially) not, (conjugationally) lest; also (as interrogitive implying a negative answer [whereas G3756 expects an affirmative one]); whether: - any, but, (that), X forbear, + God forbid, + lack, lest, neither, never, no (X wise in), none, nor, [can-] not, nothing, that not, un [-taken], without. Often used in compounds in substantially the same relations. See also G3362, G3363, G3364, G3372, G3373, G3375, G3378."]},{"k":"G3362","v":["ἐὰν μή","ean mē","eh-an' may","That is, G1437 and G3361; if not, that is, unless: - X before, but, except, if no, (if, + whosoever) not."]},{"k":"G3363","v":["ἵνα μή","hina mē","hin'-ah may","That is, G2443 and G3361; in order (or so) that not: - albeit not, lest, that no (-t, [-thing])."]},{"k":"G3364","v":["οὐ μή","ou mē","oo may","That is, G3756 and G3361; a double negative strengthening the denial; not at all: - any more, at all, by any (no) means, neither, never, no (at all), in no case (wise), nor ever, not (at all, in any wise). Compare G3378."]},{"k":"G3365","v":["μηδαμῶς","mēdamōs","may-dam-oce'","Adverb from a compound of G3361 and ἀμός amos (somebody); by no means: - not so."]},{"k":"G3366","v":["μηδέ","mēde","may-deh'","From G3361 and G1161; but not, not even; in a continued negation, nor: - neither, nor (yet), (no) not (once, so much as)."]},{"k":"G3367","v":["μηδείς, μηδεμία, μηδέν","mēdeis    mēdemia    mēden","may-dice', may -dem-ee'-ah, may-den'","The masculine, feminine irregular (second form) and neuter (third form) from G3361 and G1520; not even one (man, woman, thing): - any (man, thing), no (man), none, not (at all, any man, a whit), nothing, + without delay."]},{"k":"G3368","v":["μηδέποτε","mēdepote","may-dep'-ot-eh","From G3366 and G4218; not even ever: - never."]},{"k":"G3369","v":["μηδέπω","mēdepō","may-dep'-o","From G3366 and G4452; not even yet: - not yet."]},{"k":"G3370","v":["Μῆδος","Mēdos","may'-dos","Of foreign origin (compare [H4074]); a Median, or inhabitant of Media: - Mede."]},{"k":"G3371","v":["μηκέτι","mēketi","may-ket'-ee","From G3361 and G2089; no further: - any longer, (not) henceforth, hereafter, no henceforward (longer, more, soon), not any more."]},{"k":"G3372","v":["μῆκος","mēkos","may'-kos","Probably akin to G3173; length (literally or figuratively): - length."]},{"k":"G3373","v":["μηκύνω","mēkunō","may-koo'-no","From G3372; to lengthen, that is, (middle voice) to enlarge: - grow up."]},{"k":"G3374","v":["μηλωτή","mēlōtē","may-lo-tay'","From μῆλον mēlon (a sheep); a sheep skin: - sheepskin."]},{"k":"G3375","v":["μήν","mēn","mane","A stronger form of G3303; a particle of affirmation (only with G2229); assuredly: - + surely."]},{"k":"G3376","v":["μήν","mēn","mane","A primary word; a month: - month."]},{"k":"G3377","v":["μηνύω","mēnuō","may-noo'-o","Probably from the same base as G3145 and G3415 (that is, μάω maō [to strive]); to disclose (through the idea of mental effort and thus calling to mind), that is, report, declare, intimate: - shew, tell."]},{"k":"G3378","v":["μὴ οὐκ","mē    ouk","may ook","That is, G3361 and G3756; as interrogitive and negative is it not that? : - neither (followed by no), + never, not. Compare G3364."]},{"k":"G3379","v":["μήποτε, μή ποτε","mēpote    mē pote","may'-pot-eh, may pot'-eh","From G3361 and G4218; not ever; also if (or lest) ever (or perhaps): - if peradventure, lest (at any time, haply), not at all, whether or not."]},{"k":"G3380","v":["μήπω","mēpō","may'-po","From G3361 and G4452; not yet: - not yet."]},{"k":"G3381","v":["μήπως, μή πως","mēpōs    mē pōs","may'-poce, may poce","From G3361 and G4458; lest somehow: - lest (by any means, by some means, haply, perhaps)."]},{"k":"G3382","v":["μηρός","mēros","may-ros'","Perhaps a primary word; a thigh: - thigh."]},{"k":"G3383","v":["μήτε","mēte","may'-teh","From G3361 and G5037; not too, that is, (in continued negation) neither or nor; also, not even: - neither, (n-) or, so much as."]},{"k":"G3384","v":["μήτηρ","mētēr","may'-tare","Apparently a primary word; a “mother” (literally or figuratively, immediate or remote): - mother."]},{"k":"G3385","v":["μήτι","mēti","may'-tee","From G3361 and the neuter of G5100; whether at all: - not [the particle usually not expressed, except by the form of the question]."]},{"k":"G3386","v":["μήτιγε","mētige","may'-tig-eh","From G3385 and G1065; not at all then, that is, not to say (the rather still): - how much more."]},{"k":"G3387","v":["μήτις, μή τις","mētis    mē tis","may'-tis, may tis","From G3361 and G5100; whether any: - any [sometimes unexpressed except by the simple interrogative form of the sentence]."]},{"k":"G3388","v":["μήτρα","mētra","may'-trah","From G3384; the matrix: - womb."]},{"k":"G3389","v":["μητραλῴας","mētralōas","may-tral-o'-as","From G3384 and the base of G257; a mother thresher, that is, matricide: - murderer of mothers."]},{"k":"G3390","v":["μητρόπολις","mētropolis","may-trop'-ol-is","From G3384 and G4172; a mother city, that is, “metropolis”: - chiefest city."]},{"k":"G3391","v":["μία","mia","mee'-ah","Irregular feminine of G1520; one or first: - a (certain), + agree, first, one, X other."]},{"k":"G3392","v":["μιαίνω","miainō","me-ah'ee-no","Perhaps a primary verb; to sully or taint, that is, contaminate (ceremonially or morally): - defile."]},{"k":"G3393","v":["μίασμα","miasma","mee'-as-mah","From G3392 (“miasma”); (morally) foulness (properly the effect): - pollution."]},{"k":"G3394","v":["μιασμός","miasmos","mee-as-mos'","From G3392; (morally) contamination (properly the act): - uncleanness."]},{"k":"G3395","v":["μίγμα","migma","mig'-mah","From G3396; a compound: - mixture."]},{"k":"G3396","v":["μίγνυμι","mignumi","mig'-noo-mee","A primary verb; to mix: - mingle."]},{"k":"G3397","v":["μικρόν","mikron","mik-ron'","Masculine or neuter singular of G3398 (as noun); a small space of time or degree: - a (little) (while)."]},{"k":"G3398","v":["μικρός, μικρότερος","mikros    mikroteros","mik-ros', mik-rot'-er-os","Apparently a primary word, including the comparative (second form); small (in size, quantity, number or (figuratively) dignity): - least, less, little, small."]},{"k":"G3399","v":["Μίλητος","Milētos","mil'-ay-tos","Of uncertain origin; Miletus, a city of Asia Minor: - Miletus."]},{"k":"G3400","v":["μίλιον","milion","mil'-ee-on","Of Latin origin; a thousand paces, that is, a “mile”: - mile."]},{"k":"G3401","v":["μιμέομαι","mimeomai","mim-eh'-om-ahee","Middle voice from μῖμος mimos (a “mimic”); to imitate: - follow."]},{"k":"G3402","v":["μιμητής","mimētēs","mim-ay-tace'","From G3401; an imitator: - follower."]},{"k":"G3403","v":["μιμνήσκω","mimnēskō","mim-nace'-ko","A prolonged form of G3415 (from which some of the tenses are borrowed); to remind, that is, (middle voice) to recall to mind: - be mindful, remember."]},{"k":"G3404","v":["μισέω","miseō","mis-eh'-o","From a primary word μῖσος misos (hatred); to detest (especially to persecute); by extension to love less: - hate (-ful)."]},{"k":"G3405","v":["μισθαποδοσία","misthapodosia","mis-thap-od-os-ee'-ah","From G3406; requital (good or bad): - recompence of reward."]},{"k":"G3406","v":["μισθαποδότης","misthapodotēs","mis-thap-od-ot'-ace","From G3409 and G591; a remunerator: - rewarder."]},{"k":"G3407","v":["μίσθιος","misthios","mis'-thee-os","From G3408; a wage earner: - hired servant."]},{"k":"G3408","v":["μισθός","misthos","mis-thos'","Apparently a primary word; pay for service (literally or figuratively), good or bad: - hire, reward, wages."]},{"k":"G3409","v":["μισθόω","misthoō","mis-tho'-o","From G3408; to let out for wages, that is, (middle voice) to hire: - hire."]},{"k":"G3410","v":["μίσθωμα","misthōma","mis'-tho-mah","From G3409; a rented building: - hired house."]},{"k":"G3411","v":["μισθωτός","misthōtos","mis-tho-tos'","From G3409; a wage worker (good or bad): - hired servant, hireling."]},{"k":"G3412","v":["Μιτυλήνη","Mitulēnē","mit-oo-lay'-nay","For μυτιλήνη mutilēnē (abounding in shell fish); Mitylene (or Mytilene), a town in the island Lesbos: - Mitylene."]},{"k":"G3413","v":["Μιχαήλ","Michaēl","mikh-ah-ale'","Of Hebrew origin [H4317]; Michael, an archangel: - Michael."]},{"k":"G3414","v":["μνᾶ","mna","mnah","Of Latin origin; a mna (that is, mina), a certain weight: - pound."]},{"k":"G3415","v":["μνάομαι","mnaomai","mnah'-om-ahee","Middle voice of a derivative of G3306 or perhaps of the base of G3145 (through the idea of fixture in the mind or of mental grasp); to bear in mind, that is, recollect; by implication to reward or punish: - be mindful, remember, come (have) in remembrance. Compare G3403."]},{"k":"G3416","v":["Μνάσων","Mnasōn","mnah'-sohn","Of uncertain origin; Mnason, a Christian: - Mnason."]},{"k":"G3417","v":["μνεία","mneia","mni'-ah","From G3415 or G3403; recollection; by implication recital: - mention, remembrance."]},{"k":"G3418","v":["μνῆμα","mnēma","mnay'-mah","From G3415; a memorial, that is, sepulchral monument (burial place): - grave, sepulchre, tomb."]},{"k":"G3419","v":["μνημεῖον","mnēmeion","mnay-mi'-on","From G3420; a remembrance, that is, cenotaph (place of interment): - grave, sepulchre, tomb."]},{"k":"G3420","v":["μνήμη","mnēmē","mnay'-may","From G3403; memory: - remembrance."]},{"k":"G3421","v":["μνημονεύω","mnēmoneuō","mnay-mon-yoo'-o","From a derivative of G3420; to exercise memory, that is, recollect; by implication to punish; also to rehearse: - make mention, be mindful, remember."]},{"k":"G3422","v":["μνημόσυνον","mnēmosunon","mnay-mos'-oo-non","From G3421; a reminder (memorandum), that is, record: - memorial."]},{"k":"G3423","v":["μνηστεύω","mnēsteuō","mnace-tyoo'-o","From a derivative of G3415; to give a souvenir (engagement present), that is, betroth: - espouse."]},{"k":"G3424","v":["μογιλάλος","mogilalos","mog-il-al'-os","From G3425 and G2980; hardly talking, that is, dumb (tongue tied): - having an impediment in his speech."]},{"k":"G3425","v":["μόγις","mogis","mog'-is","Adverb from a primary word μόγος mogos (toil); with difficulty: - hardly."]},{"k":"G3426","v":["μόδιος","modios","mod'-ee-os","Of Latin origin; a modius, that is, certain measure for things dry (the quantity or the utensil): - bushel."]},{"k":"G3427","v":["μοί","moi","moy","The simpler form of G1698; to me: - I, me, mine, my."]},{"k":"G3428","v":["μοιχαλίς","moichalis","moy-khal-is'","A prolonged form of the feminine of G3432; an adulteress (literally or figuratively): - adulteress (-ous, -y)."]},{"k":"G3429","v":["μοιχάω","moichaō","moy-khah'-o","From G3432; (middle voice) to commit adultery: - commit adultery."]},{"k":"G3430","v":["μοιχεία","moicheia","moy-khi'-ah","From G3431; adultery: - adultery."]},{"k":"G3431","v":["μοιχεύω","moicheuō","moy-khyoo'-o","From G3432; to commit adultery: - commit adultery."]},{"k":"G3432","v":["μοιχός","moichos","moy-khos'","Perhaps a primary word; a (male) paramour; figuratively apostate: - adulterer."]},{"k":"G3433","v":["μόλις","molis","mol'-is","Probably by a variation for G3425; with difficulty: - hardly, scarce (-ly), + with much work."]},{"k":"G3434","v":["Μολόχ","Moloch","mol-okh'","Of Hebrew origin [H4432]; Moloch (that is, Molek), an idol: - Moloch."]},{"k":"G3435","v":["μολύνω","molunō","mol-oo'-no","Probably from G3189; to soil (figuratively): - defile."]},{"k":"G3436","v":["μολυσμός","molusmos","mol-oos-mos'","From G3435; a stain, that is, (figuratively) immorality: - filthiness."]},{"k":"G3437","v":["μομφή","momphē","mom-fay'","From G3201; blame, that is, (by implication) a fault: - quarrel."]},{"k":"G3438","v":["μονή","monē","mon-ay'","From G3306; a staying, that is, residence (the act or the place): - abode, mansion."]},{"k":"G3439","v":["μονογενής","monogenēs","mon-og-en-ace","From G3441 and G1096; only born, that is, sole: - only (begotten, child)."]},{"k":"G3440","v":["μόνον","monon","mon'-on","Neuter of G3441 as adverb; merely: - alone, but, only."]},{"k":"G3441","v":["μόνος","monos","mon'-os","Probably from G3306; remaining, that is, sole or single; by implication mere: - alone, only, by themselves."]},{"k":"G3442","v":["μονόφθαλμος","monophthalmos","mon-of'-thal-mos","From G3441 and G3788; one eyed: - with one eye."]},{"k":"G3443","v":["μονόω","monoō","mon-o'-o","From G3441; to isolate, that is, bereave: - be desolate."]},{"k":"G3444","v":["μορφή","morphē","mor-fay'","Perhaps from the base of G3313 (through the idea of adjustment of parts); shape; figuratively nature: - form."]},{"k":"G3445","v":["μορφόω","morphoō","mor-fo'-o","From the same as G3444; to fashion (figuratively): - form."]},{"k":"G3446","v":["μόρφωσις","morphōsis","mor'-fo-sis","From G3445; formation, that is, (by implication) appearance (semblance or [concretely] formula): - form."]},{"k":"G3447","v":["μοσχοποιέω","moschopoieō","mos-khop-oy-eh'-o","From G3448 and G4160; to fabricate the image of a bullock: - make a calf."]},{"k":"G3448","v":["μόσχος","moschos","mos'-khos","Probably strengthened for ὄσχος oschos (a shoot); a young bullock: - calf."]},{"k":"G3449","v":["μόχθος","mochthos","mokh'-thos","From the base of G3425; toil, that is, (by implication) sadness: - painfulness, travail."]},{"k":"G3450","v":["μοῦ","mou","moo","The simpler from of G1700; of me: - I, me, mine (own), my."]},{"k":"G3451","v":["μουσικός","mousikos","moo-sik-os'","From μουσς Mousa (a Muse); “musical”, that is, (as noun) a minstrel: - musician."]},{"k":"G3452","v":["μυελός","muelos","moo-el-os'","Perhaps a primary word; the marrow: - marrow."]},{"k":"G3453","v":["μυέω","mueō","moo-eh'-o","From the base of G3466; to initiate, that is, (by implication) to teach: - instruct."]},{"k":"G3454","v":["μῦθος","muthos","moo'-thos","Perhaps from the same as G3453 (through the idea of tuition); a tale, that is, fiction (“myth”): - fable."]},{"k":"G3455","v":["μυκάομαι","mukaomai","moo-kah'-om-ahee","From a presumed derivative of μύζω muzō (to “moo”); to bellow (roar): - roar."]},{"k":"G3456","v":["μυκτηρίζω","muktērizō","mook'-tay-rid'-zo","From a derivative of the base of G3455 (meaning snout, as that whence lowing proceeds from); to make mouths at, that is, ridicule: - mock."]},{"k":"G3457","v":["μυλικός","mulikos","moo-lee-kos'","From G3458; belonging to a mill: - mill [-stone]."]},{"k":"G3458","v":["μύλος","mulos","moo'-los","Probably ultimately from the base of G3433 (through the idea of hardship); a “mill”, that is, (by implication) a grinder (millstone): - millstone."]},{"k":"G3459","v":["μύλων","mulōn","moo'-lone","From G3458; a mill house: - mill."]},{"k":"G3460","v":["Μύρα","Mura","moo'-rah","Of uncertain derivation; Myra, a place in Asia Minor: - Myra."]},{"k":"G3461","v":["μυρίας","murias","moo-ree'-as","From G3463; a ten thousand; by extension a “myriad” or indefinite number: - ten thousand."]},{"k":"G3462","v":["μυρίζω","murizō","moo-rid'-zo","From G3463; to apply (perfumed) unguent to: - anoint."]},{"k":"G3463","v":["μύριοι","murioi","moo'-ree-oi","Plural of an apparently primary word (properly meaning very many); ten thousand; by extension innumerably many: - ten thousand."]},{"k":"G3464","v":["μύρον","muron","moo'-ron","Probably of foreign origin (compare [H4753] and G4666); “myrrh”, that is, (by implication) perfumed oil: - ointment."]},{"k":"G3465","v":["Μυσία","Musia","moo-see'-ah","Of uncertain origin; Mysia, a region of Asia Minor: - Mysia."]},{"k":"G3466","v":["μυστήριον","mustērion","moos-tay'-ree-on","From a derivative of μύω muō (to shut the mouth); a secret or “mystery” (through the idea of silence imposed by initiation into religious rites): - mystery."]},{"k":"G3467","v":["μυωπάζω","muōpazō","moo-ope-ad'-zo","From a compound of the base of G3466 and ωψōps (the face: from G3700); to shut the eyes, that is, blink (see indistinctly): - cannot see afar off."]},{"k":"G3468","v":["μώλωψ","mōlōps","mo'-lopes","From μῶλος mōlos (“moil”; probably akin to the base of G3433) and probably ὤψ ōps (the face; from G3700); a mole (“black eye”) or blow mark: - stripe."]},{"k":"G3469","v":["μωμάομαι","mōmaomai","mo-mah'-om-ahee","From G3470; to carp at, that is, censure (discredit): - blame."]},{"k":"G3470","v":["μῶμος","mōmos","mo'-mos","Perhaps from G3201; a flaw or blot, that is, (figuratively) disgraceful person: - blemish."]},{"k":"G3471","v":["μωραίνω","mōrainō","mo-rah'ee-no","From G3474; to become insipid; figuratively to make (passively act) as a simpleton: - become fool, make foolish, lose savour."]},{"k":"G3472","v":["μωρία","mōria","mo-ree'-ah","From G3474; silliness, that is, absurdity: - foolishness."]},{"k":"G3473","v":["μωρολογία","mōrologia","mo-rol-og-ee'-ah","From a compound of G3474 and G3004; silly talk, that is, buffoonery: - foolish talking."]},{"k":"G3474","v":["μωρός","mōros","mo-ros'","Probably form the base of G3466; dull or stupid (as if shut up), that is, heedless, (morally) blockhead, (apparently) absurd: - fool (-ish, X -ishness)."]},{"k":"G3475","v":["Μωσεύς, Μωσῆς, Μωΰσῆς","Mōseus    Mōsēs    Mōusēs","moce-yoos', mo-sace'","Of Hebrew origin [H4872]; Moseus, Moses or Mouses (that is, Mosheh), the Hebrew lawgiver: - Moses."]},{"k":"G3476","v":["Ναασσών","Naassōn","nah-as-sone'","Of Hebrew origin [H5177]; Naasson (that is, Nachshon), an Israelite: - Naasson."]},{"k":"G3477","v":["Ναγγαί","Naggai","nang-gah'ee","Probably of Hebrew origin (compare [H5052]); Nangae (that is, perhaps Nogach), an Israelite: - Nagge."]},{"k":"G3478","v":["Ναζαρέθ, Ναζαρέτ","Nazareth    Nazaret","nad-zar-eth', nad-zar-et'","Of uncertain derivation; Nazareth or Nazaret, a place in Palestine: - Nazareth."]},{"k":"G3479","v":["Ναζαρηνός","Nazarēnos","nad-zar-ay-nos'","From G3478; a Nazarene, that is, inhabitant of Nazareth: - of Nazareth."]},{"k":"G3480","v":["Ναζωραῖος","Nazōraios","nad-zo-rah'-yos","From G3478; a Nazoraean, that is, inhabitant of Nazareth; by extension a Christian: - Nazarene, of Nazareth."]},{"k":"G3481","v":["Ναθάν","Nathan","nath-an'","Of Hebrew origin [H5416]; Nathan, an Israelite: - Nathan."]},{"k":"G3482","v":["Ναθαναήλ","Nathanaēl","nath-an-ah-ale'","Of Hebrew origin [H5417]; Nathanael (that is, Nathanel), an Israelite and Christian: - Nathanael."]},{"k":"G3483","v":["ναί","nai","nahee","A primary particle of strong affirmation; yes: - even so, surely, truth, verily, yea, yes."]},{"k":"G3484","v":["Ναΐ́ν","Nain","nah-in'","Probably of Hebrew origin (compare [H4999]); Nain, a place in Palestine: - Nain."]},{"k":"G3485","v":["ναός","naos","nah-os'","From a primary word ναίω naiō (to dwell); a fane, shrine, temple: - shrine, temple. Compare G2411."]},{"k":"G3486","v":["Ναούμ","Naoum","nah-oom'","Of Hebrew origin [H5151]; Naum (that is, Nachum), an Israelite: - Naum."]},{"k":"G3487","v":["νάρδος","nardos","nar'-dos","Of foreign origin (compare [H5373]); “nard”: - [spike-] nard."]},{"k":"G3488","v":["Νάρκισσος","Narkissos","nar'-kis-sos","A flower of the same name, from νάρκη narkē (stupefaction, as a “narcotic”); Narcissus, a Roman: - Narcissus."]},{"k":"G3489","v":["ναυαγέω","nauageō","now-ag-eh'-o","From a compound of G3491 and G71; to be shipwrecked (stranded, “navigate”), literally or figuratively: - make (suffer) shipwreck."]},{"k":"G3490","v":["ναύκληρος","nauklēros","now'-klay-ros","From G3491 and G2819 (“clerk”); a captain: - owner of a ship."]},{"k":"G3491","v":["ναῦς","naus","nowce","From νάω naō̄ and νέω neō (to float); a boat (of any size): - ship."]},{"k":"G3492","v":["ναύτης","nautēs","now'-tace","From G3491; a boatman, that is, seaman: - sailor, shipman."]},{"k":"G3493","v":["Ναχώρ","Nachōr","nakh-ore'","Of Hebrew origin [H5152]; Nachor, the grandfather of Abraham: - Nachor."]},{"k":"G3494","v":["νεανίας","neanias","neh-an-ee'-as","From a derivative of G3501; a youth (up to about forty years): - young man."]},{"k":"G3495","v":["νεανίσκος","neaniskos","neh-an-is'-kos","From the same as G3494; a youth (under forty): - young man."]},{"k":"G3496","v":["Νεάπολις","Neapolis","neh-ap'-ol-is","From G3501 and G4172; new town; Neapolis, a place in Macedonia: - Neapolis."]},{"k":"G3497","v":["Νεεμάν","Neeman","neh-eh-man'","Of Hebrew origin [H5283]; Neeman (that is, Naaman), a Syrian: - Naaman."]},{"k":"G3498","v":["νεκρός","nekros","nek-ros'","From an apparently primary word νέκυς nekus (a corpse); dead (literally or figuratively; also as noun): - dead."]},{"k":"G3499","v":["νεκρόω","nekroō","nek-ro'-o","From G3498; to deaden, that is, (figuratively) to subdue: - be dead, mortify."]},{"k":"G3500","v":["νέκρωσις","nekrōsis","nek'-ro-sis","From G3499; decease; figuratively impotency: - deadness, dying."]},{"k":"G3501","v":["νέος, νεώτερος","neos    neōteros","neh'-os, neh-o'-ter-os","A primary word, including the comparative (second form); “new”, that is, (of persons) youthful, or (of things) fresh; figuratively regenerate: - new, young."]},{"k":"G3502","v":["νεοσσός","neossos","neh-os-sos'","From G3501; a youngling (nestling): - young."]},{"k":"G3503","v":["νεότης","neotēs","neh-ot'-ace","From G3501; newness, that is, youthfulness: - youth."]},{"k":"G3504","v":["νεόφυτος","neophutos","neh-of'-oo-tos","From G3501 and a derivative of G5453; newly planted, that is, (figuratively) a young convert (“neophyte”): - novice."]},{"k":"G3505","v":["Νέρων","Nerōn","ner'-ohn","Of Latin origin; Neron (that is, Nero), a Roman emperor: - Nero."]},{"k":"G3506","v":["νεύω","neuō","nyoo'-o","Apparently a primary verb; to “nod”, that is, (by analogy) to signal: - beckon."]},{"k":"G3507","v":["νεφέλη","nephelē","nef-el'-ay","From G3509; properly cloudiness, that is, (concretely) a cloud: - cloud."]},{"k":"G3508","v":["Νεφθαλείμ","Nephthaleim","nef-thal-ime'","Of Hebrew origin [H5321]; Nephthaleim (that is, Naphthali), a tribe in Palestine: - Nephthalim."]},{"k":"G3509","v":["νέφος","nephos","nef'-os","Apparently a primary word; a cloud: - cloud."]},{"k":"G3510","v":["νεφρός","nephros","nef-ros'","Of uncertain affinity; a kidney (plural), that is, (figuratively) the inmost mind: - reins."]},{"k":"G3511","v":["νεωκόρος","neōkoros","neh-o-kor'-os","From a form of G3485 and κορέω koreō (to sweep); a temple servant, that is, (by implication) a votary: - worshipper."]},{"k":"G3512","v":["νεωτερικός","neōterikos","neh-o-ter'-ik-os","From the compound of G3501; appertaining to younger persons, that is, juvenile: - youthful."]},{"k":"G3513","v":["νή","nē","nay","Probably an intensive form of G3483; a particle of attestation (accompanied by the object invoked or appealed to in confirmation); as sure as: - I protest by."]},{"k":"G3514","v":["νήθω","nēthō","nay'-tho","From νέω neō of like meaning; to spin: - spin."]},{"k":"G3515","v":["νηπιάζω","nēpiazō","nay-pee-ad'-zo","From G3516; to act as a babe, that is, (figuratively) innocently: - be a child."]},{"k":"G3516","v":["νήπιος","nēpios","nay'-pee-os","From an obsolete particle νη ne; implying negation and G2031; not speaking, that is, an infant (minor); figuratively a simple minded person, an immature Christian: - babe, child (+ -ish)."]},{"k":"G3517","v":["Νηρεύς","Nēreus","nare-yoos'","Apparently from a derivative of the base of G3491 (meaning wet); Nereus, a Christian: - Nereus."]},{"k":"G3518","v":["Νηρί","Nēri","nay-ree'","Of Hebrew origin [H5374]; Neri (that is, Nerijah), an Israelite: - Neri."]},{"k":"G3519","v":["νησίον","nēsion","nay-see'-on","Diminutive of G3520; an islet: - island."]},{"k":"G3520","v":["νῆσος","nēsos","nay'-sos","Probably from the base of G3491; an island: - island, isle."]},{"k":"G3521","v":["νηστεία","nēsteia","nace-ti'-ah","From G3522; abstinence (from lack of food, or voluntary and religious); specifically the fast of the Day of Atonement: - fast (-ing.)"]},{"k":"G3522","v":["νηστεύω","nēsteuō","nace-tyoo'-o","From G3523; to abstain from food (religiously): - fast."]},{"k":"G3523","v":["νῆστις","nēstis","nace'-tis","From the negative particle νη nē and G2068; not eating, that is, abstinent from food (religiously): - fasting."]},{"k":"G3524","v":["νηφάλεος, νηφάλιος","nēphaleos    nēphalios","nah-fal'-eh-os, nay-fal'-ee-os","From G3525; sober, that is, (figuratively) circumspect: - sober, vigilant."]},{"k":"G3525","v":["νήφω","nēphō","nay'-fo","Of uncertain affinity; to abstain from wine (keep sober), that is, (figuratively) be discreet: - be sober, watch."]},{"k":"G3526","v":["Νίγερ","Niger","neeg'-er","Of Latin origin; black; Niger, a Christian: - Niger."]},{"k":"G3527","v":["Νικάνωρ","Nikanōr","nik-an'-ore","Probably from G3528; victorious; Nicanor, a Christian: - Nicanor."]},{"k":"G3528","v":["νικάω","nikaō","nik-ah'-o","From G3529; to subdue (literally or figuratively): - conquer, overcome, prevail, get the victory."]},{"k":"G3529","v":["νίκη","nikē","nee'-kay","Apparently a primary word; conquest (abstractly), that is, (figuratively) the means of success: - victory."]},{"k":"G3530","v":["Νικόδημος","Nikodēmos","nik-od'-ay-mos","From G3534 and G1218; victorious among his people; Nicodemus, an Israelite: - Nicodemus."]},{"k":"G3531","v":["Νικολαΐ́της","Nikolaitēs","nik-ol-ah-ee'-tace","From G3532; a Nicolaite, that is, adherent of Nicolaus: - Nicolaitane."]},{"k":"G3532","v":["Νικόλαος","Nikolaos","nik-ol'-ah-os","From G3534 and G2004; victorious over the people; Nicolaus, a heretic: - Nicolaus."]},{"k":"G3533","v":["Νικόπολις","Nikopolis","nik-op'-ol-is","From G3534 and G4172; victorious city; Nicopolis, a place in Macedonia: - Nicopolis."]},{"k":"G3534","v":["νῖκος","nikos","nee'-kos","From G3529; a conquest (concretely), that is, (by implication) triumph: - victory."]},{"k":"G3535","v":["Νινευΐ́","Nineui","nin-yoo-ee'","Of Hebrew origin [H5210]; Ninevi (that is, Nineveh), the capital of Assyria: - Nineve."]},{"k":"G3536","v":["Νινευΐ́της","Nineuitēs","nin-yoo-ee'-tace","From G3535; a Ninevite, that is, inhabitant of Nineveh: - of Nineve, Ninevite."]},{"k":"G3537","v":["νιπτήρ","niptēr","nip-tare'","From G3538; a ewer: - bason."]},{"k":"G3538","v":["νίπτω","niptō","nip'-to","To cleanse (especially the hands or the feet or the face); ceremonially to perform ablution: - wash. Compare G3068."]},{"k":"G3539","v":["νοιέω","noieō","noy-eh'-o","From G3563; to exercise the mind (observe), that is, (figuratively) to comprehend, heed: - consider, perceive, think, understand."]},{"k":"G3540","v":["νόημα","noēma","no'-ay-mah","From G3539; a perception, that is, purpose, or (by implication) the intellect, disposition, itself: - device, mind, thought."]},{"k":"G3541","v":["νόθος","nothos","noth'-os","Of uncertain affinity; a spurious or illegitimate son: - bastard."]},{"k":"G3542","v":["νομή","nomē","nom-ah'","Feminine from the same as G3551; pasture, that is, (the act) feeding (figuratively spreading of a gangrene), or (the food) pasturage: - X eat, pasture."]},{"k":"G3543","v":["νομίζω","nomizō","nom-id'-zo","From G3551; properly to do by law (usage), that is, to accustom (passively be usual); by extension to deem or regard: - suppose, think, be wont."]},{"k":"G3544","v":["νομικός","nomikos","nom-ik-os'","From G3551; according (or pertaining) to law, that is, legal (ceremonially); as noun, an expert in the (Mosaic) law: - about the law, lawyer."]},{"k":"G3545","v":["νομίμως","nomimōs","nom-im'-oce","Adverb from a derivative of G3551; legitimately (specifically agreeably to the rules of the lists): - lawfully."]},{"k":"G3546","v":["νόμισμα","nomisma","nom'-is-mah","From G3543; what is reckoned as of value (after the Latin numisma), that is, current coin: - money."]},{"k":"G3547","v":["νομοδιδάσκαλος","nomodidaskalos","nom-od-id-as'-kal-os","From G3551 and G1320; an expounder of the (Jewish) law, that is, a Rabbi: - doctor (teacher) of the law."]},{"k":"G3548","v":["νομοθεσία","nomothesia","nom-oth-es-ee'-ah","From G3550; legislation (specifically the institution of the Mosaic code): - giving of the law."]},{"k":"G3549","v":["νομοθετέω","nomotheteō","nom-oth-et-eh'-o","From G3550; to legislate, that is, (passively) to have (the Mosaic) enactments injoined, be sanctioned (by them): - establish, receive the law."]},{"k":"G3550","v":["νομοθέτης","nomothetēs","nom-oth-et'-ace","From G3551 and a derivative of G5087; a legislator: - lawgiver."]},{"k":"G3551","v":["νόμος","nomos","nom'-os","From a primary word νέμω nemō (to parcel out, especially food or grazing to animals); law (through the idea of prescriptive usage), generally (regulation), specifically (of Moses [including the volume]; also of the Gospel), or figuratively (a principle): - law."]},{"k":"G3552","v":["νοσέω","noseō","nos-eh'-o","From G3554; to be sick, that is, (by implication of a diseased appetite) to hanker after (figuratively to harp upon): - dote."]},{"k":"G3553","v":["νόσημα","nosēma","nos'-ah-ma","From G3552; an ailment: - disease."]},{"k":"G3554","v":["νόσος","nosos","nos'-os","Of uncertain affinity; a malady (rarely figurative of moral disability): - disease, infirmity, sickness."]},{"k":"G3555","v":["νοσσιά","nossia","nos-see-ah'","From G3502; a brood (of chickens): - brood."]},{"k":"G3556","v":["νοσσίον","nossion","nos-see'-on","Diminutive of G3502; a birdling: - chicken."]},{"k":"G3557","v":["νοσφίζομαι","nosphizomai","nos-fid'-som-ahee","Middle voice from νοσφί nosphi (apart or clandestinely); to sequestrate for oneself, that is, embezzle: - keep back, purloin."]},{"k":"G3558","v":["νότος","notos","not'-os","Of uncertain affinity; the south (southwest) wind; by extension the southern quarter itself: - south (wind)."]},{"k":"G3559","v":["νουθεσία","nouthesia","noo-thes-ee'-ah","From G3563 and a derivative of G5087; calling attention to, that is, (by implication) mild rebuke or warning: - admonition."]},{"k":"G3560","v":["νουθετέω","noutheteō","noo-thet-eh'-o","From the same as G3559; to put in mind, that is, (by implication) to caution or reprove gently: - admonish, warn."]},{"k":"G3561","v":["νουμηνία","noumēnia","noo-may-nee'-ah","Feminine of a compound of G3501 and G3376 (as noun by implication of G2250); the festival of new moon: - new moon."]},{"k":"G3562","v":["νουνεχῶς","nounechōs","noon-ekh-oce'","Adverb from a compound of the accusative of G3563 and G2192; in a mind having way, that is, prudently: - discreetly."]},{"k":"G3563","v":["νοῦς","nous","nooce","Probably from the base of G1097; the intellect, that is, mind (divine or human; in thought, feeling, or will); by implication meaning: - mind, understanding. Compare G5590."]},{"k":"G3564","v":["Νυμφᾶς","Numphas","noom-fas'","Probably contracted for a compound of G3565 and G1435; nymph given (that is, born); Nymphas, a Christian: - Nymphas."]},{"k":"G3565","v":["νύμφη","numphē","noom-fay'","From a primary but obsolete verb νύπτω nuptō (to veil as a bride; compare the Latin “nupto”, to marry); a young married woman (as veiled), including a betrothed girl; by implication, a son's wife: - bride, daughter in law."]},{"k":"G3566","v":["νυμφίος","numphios","noom-fee'-os","From G3565; a bride groom (literally or figuratively): - bridegroom."]},{"k":"G3567","v":["νυμφών","numphōn","noom-fohn'","From G3565; the bridal room: - bridechamber."]},{"k":"G3568","v":["νῦν","nun","noon","A primary particle of present time; “now” (as adverb of date, a transition or emphasis); also as noun or adjective present or immediate: - henceforth, + hereafter, of late, soon, present, this (time). See also G3569, G3570."]},{"k":"G3569","v":["τανῦν, τὰ νῦν","tanun    ta nun","tan-oon', tah noon","From neuter plural of G3588 and G3568; the things now, that is, (adverb) at present: - (but) now."]},{"k":"G3570","v":["νυνί","nuni","noo-nee'","A prolonged form of G3568 for emphasis; just now: - now."]},{"k":"G3571","v":["νύξ","nux","noox","A primary word; “night” (literally or figuratively): - (mid-) night."]},{"k":"G3572","v":["νύσσω","nussō","noos'-so","Apparently a primary word; to prick (“nudge”): - pierce."]},{"k":"G3573","v":["νυστάζω","nustazō","noos-tad'-zo","From a presumed derivative of G3506; to nod, that is, (by implication) to fall asleep; figuratively to delay: - slumber."]},{"k":"G3574","v":["νυχθήμερον","nuchthēmeron","nookh-thay'-mer-on","From G3571 and G2250; a day and night, that is, full day of twenty four hours: - night and day."]},{"k":"G3575","v":["Νῶε","Nōe","no'-eh","Of Hebrew origin [H5146]; Noe, (that is, Noach), a patriarch: - Noe."]},{"k":"G3576","v":["νωθρός","nōthros","no-thros'","From a derivative of G3541; sluggish, that is, (literally) lazy, or (figuratively) stupid: - dull, slothful."]},{"k":"G3577","v":["νῶτος","nōtos","no'-tos","Of uncertain affinity; the back: - back."]},{"k":"G3578","v":["ξενία","xenia","xen-ee'-ah","From G3581; hospitality, that is, (by implication) a place of entertainment: - lodging."]},{"k":"G3579","v":["ξενίζω","xenizō","xen-id'-xo","From G3581; to be a host (passively a guest); by implication be (make, appear) strange: - entertain, lodge, (think it) strange."]},{"k":"G3580","v":["ξενοδοχέω","xenodocheō","xen-od-okh-eh'-o","From a compound of G3581 and G1209; to be hospitable: - lodge strangers."]},{"k":"G3581","v":["ξένος","xenos","xen'-os","Apparently a primary word; foreign (literally alien, or figuratively novel); by implication a guest or (vice-versa) entertainer: - host, strange (-r)."]},{"k":"G3582","v":["ξέστης","xestēs","xes'-tace","As if from ξέω xeō (which properly means to smooth; by implication [of friction] to boil or heat); a vessel (as fashioned or for cooking), (or perhaps by corruption from the Latin sextarius, the sixth of a modius, that is, about a pint), that is, (specifically) a measure for liquids or solids, (by analogy a pitcher): - pot."]},{"k":"G3583","v":["ξηραίνω","xērainō","xay-rah'ee-no","From G3584; to desiccate; by implication to shrivel, to mature: - dry up, pine away, be ripe, wither (away)."]},{"k":"G3584","v":["ξηρός","xēros","xay-ros'","From the base of G3582 (through the idea of scorching); arid; by implication shrunken, earth (as opposed to water): - dry, land, withered."]},{"k":"G3585","v":["ξύλινος","xulinos","xoo'-lin-os","From G3586; wooden: - of wood."]},{"k":"G3586","v":["ξύλον","xulon","xoo'-lon","From another form of the base of G3582; timber (as fuel or material); by implication a stick, club or tree or other wooden article or substance: - staff, stocks, tree, wood."]},{"k":"G3587","v":["ξυράω","xuraō","xoo-rah'-o","From a derivative of the same as G3586 (meaning a razor); to shave or “shear” the hair: - shave."]},{"k":"G3588","v":["ὁ, ἡ, τό","ho    hē    to","ho, hay, to","The masculine, feminine (second) and neuter (third) forms, in all their inflections; the definite article; the (sometimes to be supplied, at others omitted, in English idiom): - the, this, that, one, he, she, it, etc."]},{"k":"G3589","v":["ὀγδοήκοντα","ogdoēkonta","og-do-ay'-kon-tah","From G3590; ten times eight: - fourscore."]},{"k":"G3590","v":["ὄγδοος","ogdoos","og'-do-os","From G3638; the eighth: - eighth."]},{"k":"G3591","v":["ὄγκος","ogkos","ong'-kos","Probably from the same as G43; a mass (as bending or bulging by its load), that is, burden (hindrance): - weight."]},{"k":"G3592","v":["ὅδε, ἥδε, τόδε","hode    hēde    tode","hod'-eh, hay'-deh, tod'-e","The masculine, feminine (second) and neuter (third) forms. From G3588 and G1161; the same, that is, this or that one (plural these or those); often used as personal pronoun: - he, she, such, these, thus."]},{"k":"G3593","v":["ὁδεύω","hodeuō","hod-yoo'-o","From G3598; to travel: - journey."]},{"k":"G3594","v":["ὁδηγέω","hodēgeō","hod-ayg-eh'-o","From G3595; to show the way (literally or figuratively [teach]): - guide, lead."]},{"k":"G3595","v":["ὁδηγός","hodēgos","hod-ayg-os'","From G3598 and G2233; a conductor (literally or figuratively [teacher]): - guide, leader."]},{"k":"G3596","v":["ὁδοιπορέω","hodoiporeō","hod-oy-por-eh'-o","From a compound of G3598 and G4198; to be a wayfarer, that is, travel: - go on a journey."]},{"k":"G3597","v":["ὁδοιπορία","hodoiporia","hod-oy-por-ee'-ah","From the same as G3596; travel: - journey (-ing)."]},{"k":"G3598","v":["ὁδός","hodos","hod-os'","Apparently a primary word; a road; by implication a progress (the route, act or distance); figuratively a mode or means: - journey, (high-) way."]},{"k":"G3599","v":["ὀδούς","odous","od-ooce","Perhaps from the base of G2068; a “tooth”: - tooth."]},{"k":"G3600","v":["ὀδυνάω","odunaō","od-oo-nah'-o","From G3601; to grieve: - sorrow, torment."]},{"k":"G3601","v":["ὀδύνη","odunē","od-oo'-nay","From G1416; grief (as dejecting): - sorrow."]},{"k":"G3602","v":["ὀδυρμός","odurmos","od-oor-mos'","From a derivative of the base of G1416; moaning, that is, lamentation: - mourning."]},{"k":"G3603","v":["ὅ εστι","ho esti","ho es-tee'","From the neuter of G3739 and the third person singular present indicative of G1510; which is: - called, which is (make), that is (to say)."]},{"k":"G3604","v":["Ὀζίας","Ŏzias","od-zee'-as","Of Hebrew origin [H5818]; Ozias (that is, Uzzijah), an Israelite: - Ozias."]},{"k":"G3605","v":["ὄζω","ozō","od'-zo","A primary verb (in a strengthened form); to scent (usually an ill “oder”): - stink."]},{"k":"G3606","v":["ὅθεν","hothen","hoth'-en","From G3739 with the directive enclitic of source; from which place or source or cause (adverbially or conjugationally): - from thence, (from) whence, where (-by, -fore, -upon)."]},{"k":"G3607","v":["ὀθόνη","othonē","oth-on'-ay","Of uncertain affinity; a linen cloth, that is, (especially) a sail: - sheet."]},{"k":"G3608","v":["ὀθόνιον","othonion","oth-on'-ee-on","Neuter of a presumed derivative of G3607; a linen bandage: - linen clothes."]},{"k":"G3609","v":["οἰκεῖος","oikeios","oy-ki'-os","From G3624; domestic, that is, (as noun), a relative, adherent: - (those) of the (his own) house (-hold)."]},{"k":"G3610","v":["οἰκέτης","oiketēs","oy-ket'-ace","From G3611; a fellow resident, that is, menial domestic: - (household) servant."]},{"k":"G3611","v":["οἰκέω","oikeō","oy-key'-o","From G3624; to occupy a house that is, reside (figuratively inhabit, remain, inhere); by implication to cohabit: - dwell. See also G3625."]},{"k":"G3612","v":["οἴκημα","oikēma","oy'-kay-mah","From G3611; a tenement, that is, (specifically) a jail: - prison."]},{"k":"G3613","v":["οἰκητήριον","oikētērion","oy-kay-tay'-ree-on","Neuter of a presumed derivative of G3611 (equivalent to G3612); a residence (literally or figuratively): - habitation, house."]},{"k":"G3614","v":["οἰκία","oikia","oy-kee'-ah","From G3624; properly residence (abstractly), but usually (concretely) an abode (literally or figuratively); by implication a family (especially domestics): - home, house (-hold)."]},{"k":"G3615","v":["οἰκιακός","oikiakos","oy-kee-ak-os'","From G3614; familiar, that is, (as noun) relatives: - they (them) of (his own) household."]},{"k":"G3616","v":["οἰκοδεσποτέω","oikodespoteō","oy-kod-es-pot-eh'-o","From G3617; to be the head of (that is, rule) a family: - guide the house."]},{"k":"G3617","v":["οἰκοδεσπότης","oikodespotēs","oy-kod-es-pot'-ace","From G3624 and G1203; the head of a family: - goodman (of the house), householder, master of the house."]},{"k":"G3618","v":["οἰκοδομέω","oikodomeō","oy-kod-om-eh'-o","From the same as G3619; to be a house builder, that is, construct or (figuratively) confirm: - (be in) build (-er, -ing, up), edify, embolden."]},{"k":"G3619","v":["οἰκοδομή","oikodomē","oy-kod-om-ay'","Feminine (abstraction) of a compound of G3624 and the base of G1430; architecture, that is, (concretely) a structure; figuratively confirmation: - building, edify (-ication, -ing)."]},{"k":"G3620","v":["οἰκοδομία","oikodomia","oy-kod-om-ee'-ah","From the same as G3619; confirmation: - edifying."]},{"k":"G3621","v":["οἰκονομέω","oikonomeō","oy-kon-om-eh'-o","From G3623; to manage (a house, that is, an estate): - be steward."]},{"k":"G3622","v":["οἰκονομία","oikonomia","oy-kon-om-ee'-ah","From G3623; administration (of a household or estate); specifically a (religious) “economy”: - dispensation, stewardship."]},{"k":"G3623","v":["οἰκονόμος","oikonomos","oy-kon-om'-os","From G3624 and the base of G3551; a house distributor (that is, manager), or overseer, that is, an employee in that capacity; by extension a fiscal agent (treasurer); figuratively a preacher (of the Gospel): - chamberlain, governor, steward."]},{"k":"G3624","v":["οἶκος","oikos","oy'-kos","Of uncertain affinity; a dwelling (more or less extensive, literally or figuratively); by implication a family (more or less related, literally or figuratively): - home, house (-hold), temple."]},{"k":"G3625","v":["οἰκουμένη","oikoumenē","oy-kou-men'-ay","Feminine participle present passive of G3611 (as noun, by implication of G1093); land, that is, the (terrene part of the) globe; specifically the Roman empire: - earth, world."]},{"k":"G3626","v":["οἰκουρός","oikouros","oy-koo-ros'","From G3624 and οὖρος ouros (a guard; be “ware”); a stayer at home, that is, domestically inclined (a “good housekeeper”): - keeper at home."]},{"k":"G3627","v":["οἰκτείρω","oikteirō","oyk-ti'-ro","Also in certain tenses οἰκτερέω oiktereō oyk-ter-eh'-o; from οἰκτος oiktos (pity); to exercise pity: - have compassion on."]},{"k":"G3628","v":["οἰκτιρμός","oiktirmos","oyk-tir-mos'","From G3627; pity: - mercy."]},{"k":"G3629","v":["οἰκτίρμων","oiktirmōn","oyk-tir'-mone","From G3627; compassionate: - merciful, of tender mercy."]},{"k":"G3630","v":["οἰνοπότης","oinopotēs","oy-nop-ot'-ace","From G3631 and a derivative of the alternate of G4095; a tippler: - winebibber."]},{"k":"G3631","v":["οἶνος","oinos","oy'-nos","A primary word (or perhaps of Hebrew origin [H3196]); “wine” (literally or figuratively): - wine."]},{"k":"G3632","v":["οἰνοφλυγία","oinophlugia","oy-nof-loog-ee'-ah","From G3631 and a form of the base of G5397; an overflow (or surplus) of wine, that is, vinolency (drunkenness): - excess of wine."]},{"k":"G3633","v":["οἴομαι, οἶμαι","oiomai    oimai","oy'-om-ahee, oy'-mahee","Middle voice apparently from G3634; to make like (oneself), that is, imagine (be of the opinion): - suppose, think."]},{"k":"G3634","v":["οἷος","oios","hoy'-os","Probably akin to G3588, G3739, and G3745; such or what sort of (as a correlation or exclamation); especially the neuter (adverb) with the negative not so: - so (as), such as, what (manner of), which."]},{"k":"G3635","v":["ὀκνέω","okneō","ok-neh'-o","From ὄκνος oknos (hesitation); to be slow (figuratively loath): - delay."]},{"k":"G3636","v":["ὀκνηρός","oknēros","ok-nay-ros'","From G3635; tardy, that is, indolent; (figuratively) irksome: - grievous, slothful."]},{"k":"G3637","v":["ὀκταήμερος","oktaēmeros","ok-tah-ay'-mer-os","From G3638 and G2250; an eight day old person or act: - the eighth day."]},{"k":"G3638","v":["ὀκτώ","oktō","ok-to'","A primary numeral; “eight”: - eight."]},{"k":"G3639","v":["ὄλεθρος","olethros","ol'-eth-ros","From ὄλλυμι ollumi a primary word (to destroy; a prolonged form); ruin, that is, death, punishment: - destruction."]},{"k":"G3640","v":["ὀλιγόπιστος","oligopistos","ol-ig-op'-is-tos","From G3641 and G4102; incredulous, that is, lacking confidence (in Christ): - of little faith."]},{"k":"G3641","v":["ὀλίγος","oligos","ol-ee'-gos","Of uncertain affinity; puny (in extent, degree, number, duration or value); especially neuter (adverbially) somewhat: - + almost, brief [-ly], few, (a) little, + long, a season, short, small, a while."]},{"k":"G3642","v":["ὀλιγόψυχος","oligopsuchos","ol-ig-op'-soo-khos","From G3641 and G5590; little spirited, that is, faint hearted: - feebleminded."]},{"k":"G3643","v":["ὀλιγωρέω","oligōreō","ol-ig-o-reh'-o","From a compound of G3641 and ὤρα ōra (“care”); to have little regard for, that is, to disesteem: - despise."]},{"k":"G3644","v":["ὀλοθρευτής","olothreutēs","ol-oth-ryoo-tace'","From G3645; a ruiner, that is, (specifically) a venomous serpent: - destroyer."]},{"k":"G3645","v":["ὀλοθρεύω","olothreuō","ol-oth-ryoo'-o","From G3639; to spoil, that is, slay: - destroy."]},{"k":"G3646","v":["ὁλοκαύτωμα","holokautōma","hol-ok-ow'-to-mah","From a derivative of a compound of G3650 and a derivative of G2545; a wholly consumed sacrifice (“holocaust”): - (whole) burnt offering."]},{"k":"G3647","v":["ὁλοκληρία","holoklēria","hol-ok-lay-ree'-ah","From G3648; integrity, that is, physical wholeness: - perfect soundness."]},{"k":"G3648","v":["ὁλόκληρος","holoklēros","hol-ok'-lay-ros","From G3650 and G2819; complete in every part, that is, perfectly sound (in body): - entire, whole."]},{"k":"G3649","v":["ὀλολύζω","ololuzō","ol-ol-ood'-zo","A reduplicated primary verb; to “howl” or “halloo”, that is, shriek: - howl."]},{"k":"G3650","v":["ὅλος","holos","hol'-os","A primary word; “whole” or “all”, that is, complete (in extent, amount, time or degree), especially (neuter) as noun or adverb: - all, altogether, every whit, + throughout, whole."]},{"k":"G3651","v":["ὁλοτελής","holotelēs","hol-ot-el-ace'","From G3650 and G5056; complete to the end, that is, absolutely perfect: - wholly."]},{"k":"G3652","v":["Ὀλυμπᾶς","Ŏlumpas","ol-oom-pas'","Probably a contraction from Ὀλυμπιόδωρος Ŏlumpiodōros (Olympian bestowed, that is, heaven descended); Olympas, a Christian: - Olympas."]},{"k":"G3653","v":["ὄλυνθος","olunthos","ol'-oon-thos","Of uncertain derivative; an unripe (because out of season) fig: - untimely fig."]},{"k":"G3654","v":["ὅλως","holōs","hol'-oce","Adverb from G3650; completely, that is, altogether; (by analogy) everywhere; (negative) not by any means: - at all, commonly, utterly."]},{"k":"G3655","v":["ὄμβρος","ombros","om'-bros","Of uncertain affinity; a thunder storm: - shower."]},{"k":"G3656","v":["ὁμιλέω","homileō","hom-il-eh'-o","From G3658; to be in company with, that is, (by implication) to converse: - commune, talk."]},{"k":"G3657","v":["ὁμιλία","homilia","hom-il-ee'-ah","From G3658; companionship (“homily”), that is, (by implication) intercourse: - communication."]},{"k":"G3658","v":["ὅμιλος","homilos","hom'-il-os","From the base of G3674 and a derivative of the alternate of G138 (meaning a crowd); association together, that is, a multitude: - company."]},{"k":"G3659","v":["ὄμμα","omma","om'-mah","From G3700; a sight, that is, (by implication) the eye: - eye."]},{"k":"G3660","v":["ὀμνύω","omnuō","om-noo'-o","A prolonged form of a primary but obsolete word, ὄμω omō, for which another prolonged form (ὀμόω omoō    om-o'-o) is used in certain tenses. To swear, that is, take (or declare on) oath: - swear."]},{"k":"G3661","v":["ὁμοθυμαδόν","homothumadon","hom-oth-oo-mad-on'","Adverb from a compound of the base of G3674 and G2372; unanimously: - with one accord (mind)."]},{"k":"G3662","v":["ὁμοιάζω","homoiazō","hom-oy-ad'-zo","From G3664; to resemble: - agree."]},{"k":"G3663","v":["ὁμοιοπαθής","homoiopathēs","hom-oy-op-ath-ace'","From G3664 and the alternate of G3958; similarly affected: - of (subject to) like passions."]},{"k":"G3664","v":["ὅμοιος","homoios","hom'-oy-os","From the base of G3674; similar (in appearance or character): - like, + manner."]},{"k":"G3665","v":["ὁμοιότης","homoiotēs","hom-oy-ot'ace","From G3664; resemblance: - like as, similitude."]},{"k":"G3666","v":["ὁμοιόω","homoioō","hom-oy-o'-o","From G3664; to assimilate, that is, compare; passively to become similar: - be (make) like, (in the) liken (-ess), resemble."]},{"k":"G3667","v":["ὁμοίωμα","homoiōma","hom-oy'-o-mah","From G3666; a form; abstractly resemblance: - made like to, likeness, shape, similitude."]},{"k":"G3668","v":["ὁμοίως","homoiōs","hom-oy'-oce","Adverb from G3664; similarly: - likewise, so."]},{"k":"G3669","v":["ὁμοίωσις","homoiōsis","hom-oy'-o-sis","From G3666; assimilation, that is, resemblance: - similitude."]},{"k":"G3670","v":["ὁμολογέω","homologeō","hom-ol-og-eh'-o","From a compound of the base of G3674 and G3056; to assent, that is, covenant, acknowledge: - con- (pro-) fess, confession is made, give thanks, promise."]},{"k":"G3671","v":["ὁμολογία","homologia","hom-ol-og-ee'-ah","From the same as G3670; acknowledgment: - con- (pro-) fession, professed."]},{"k":"G3672","v":["ὁμολογουμένως","homologoumenōs","hom-ol-og-ow-men'-oce","Adverb of present passive participle of G3670; confessedly: - without controversy."]},{"k":"G3673","v":["ὁμότεχνος","homotechnos","hom-ot'-ekh-nos","From the base of G3674 and G5078; a fellow artificer: - of the same craft."]},{"k":"G3674","v":["ὁμοῦ","homou","hom-oo'","Genitive case of ὁμός homos (the same; akin to G260) as adverb; at the same place or time: - together."]},{"k":"G3675","v":["ὁμόφρων","homophrōn","hom-of'-rone","From the base of G3674 and G5424; like minded, that is, harmonious: - of one mind."]},{"k":"G3676","v":["ὅμως","homōs","hom'-oce","Adverb from the base of G3674; at the same time, that is, (conjugationally) notwithstanding, yet still: - and even, nevertheless, though but."]},{"k":"G3677","v":["ὄναρ","onar","on'-ar","Of uncertain derivation; a dream: - dream."]},{"k":"G3678","v":["ὀνάριον","onarion","on-ar'-ee-on","Neuter of a presumed derivative of G3688; a little ass: - young ass."]},{"k":"G3679","v":["ὀνειδέζω","oneidezō","on-i-did'-zo","From G3681; to defame, that is, rail at, chide, taunt: - cast in teeth, (suffer) reproach, revile, upbraid."]},{"k":"G3680","v":["ὀνειδισμός","oneidismos","on-i-dis-mos'","From G3679; contumely: - reproach."]},{"k":"G3681","v":["ὄνειδος","oneidos","on'-i-dos","Probably akin to the base of G3686; notoriety, that is, a taunt (disgrace): - reproach."]},{"k":"G3682","v":["Ὀνήσιμος","Ŏnēsimos","on-ay'-sim-os","From G3685; profitable; Onesimus, a Christian: - Onesimus."]},{"k":"G3683","v":["Ὀνησίφορος","Ŏnēsiphoros","on-ay-sif'-or-os","From a derivative of G3685 and G5411; profit bearer; Onesiphorus, a Christian: - Onesiphorus."]},{"k":"G3684","v":["ὀνικός","onikos","on-ik-os'","From G3688; belonging to an ass, that is, large (so as to be turned by an ass): - millstone."]},{"k":"G3685","v":["ὀνίνημι","oninēmi","on-in'-ay-mee","A prolonged form of an apparent primary verb ὄνομαι onomai; for which another prolonged form ὀνάω onaō is used as an alternate in some tenses (unless indeed it be identical with the base of G3686 through the idea of notoriety); to gratify, that is, (middle voice) to derive pleasure or advantage from: - have joy."]},{"k":"G3686","v":["ὄνομα","onoma","on'-om-ah","From a presumed derivative of the base of G1097 (compare G3685); a “name” (literally or figuratively), (authority, character): - called, (+ sur-) name (-d)."]},{"k":"G3687","v":["ὀνομάζω","onomazō","on-om-ad'-zo","From G3686; to name, that is, assign an appellation; by extension to utter, mention, profess: - call, name."]},{"k":"G3688","v":["ὄνος","onos","on'-os","Apparently a primary word; a donkey: - ass."]},{"k":"G3689","v":["ὄντως","ontōs","on'-toce","Adverb of the oblique cases of G5607; really: - certainly, clean, indeed, of a truth, verily."]},{"k":"G3690","v":["ὄξος","oxos","ox'-os","From G3691; vinegar, that is, sour wine: - vinegar."]},{"k":"G3691","v":["ὀξύς","oxus","ox-oos'","Probably akin to the base of G188 (“acid”); keen; by analogy rapid: - sharp, swift."]},{"k":"G3692","v":["ὀπή","opē","op-ay'","Probably from G3700; a hole (as if for light), that is, cavern; by analogy a spring (of water): - cave, place."]},{"k":"G3693","v":["ὄπισθεν","opisthen","op'-is-then","From ὄπις opis (regard; from G3700) with enclitic of source; from the rear (as a secure aspect), that is, at the back (adverb and preposition of palce or time): - after, backside, behind."]},{"k":"G3694","v":["ὄπίσω","opisō","op-is'-o","From the same as G3693 with enclitic of direction; to the back, that is, aback (as adverb or preposition of time or place; or as noun): - after, back (-ward), (+ get) behind, + follow."]},{"k":"G3695","v":["ὁπλίζω","hoplizō","hop-lid'-zo","From G3696; to equip (with weapons [middle voice and figuratively]): - arm self."]},{"k":"G3696","v":["ὅπλον","hoplon","hop'-lon","Probably from the primary word ἕπω hepō(to be busy about); an implement or utensil or tool (literally or figuratively, especially offensive for war): - armour, instrument, weapon."]},{"k":"G3697","v":["ὁποῖος","hopoios","hop-oy'-os","From G3739 and G4169; of what kind that, that is, how (as) great (excellent) (specifically as indefinite correlation to antecedent definitely G5108 of quality): - what manner (sort) of, such as, whatsoever."]},{"k":"G3698","v":["ὁπότε","hopote","hop-ot'-eh","From G3739 and G4218; what (-ever) then, that is, (of time) as soon as: - when."]},{"k":"G3699","v":["ὅπου","hopou","hop'-oo","From G3739 and G4225; what (-ever) where, that is, at whichever spot: - in what place, where (-as, -soever), whither (+ soever)."]},{"k":"G3700","v":["ὀπτάνομαι, ὄπτομαι","optanomai    optomai","op-tan'-om-ahee, op'-tom-ahee","The first a (middle voice) prolonged form of the second (primary) which is used for it in certain tenses; and both as alternates of G3708; to gaze (that is, with wide open eyes, as at something remarkable; and thus differing from G991, which denotes simply voluntary observation; and from G1492, which expresses merely mechanical, passive or casual vision; while G2300, and still more emphatically its intensive G2334, signifies an earnest but more continued inspection; and G4648 a watching from a distance): - appear, look, see, shew self."]},{"k":"G3701","v":["ὀπτασία","optasia","op-tas-ee'-ah","From a presumed derivative of G3700; visuality, that is, (concretely) an apparition: - vision."]},{"k":"G3702","v":["ὀπτός","optos","op-tos'","From an obsolete verb akin to ἕψω hepsō (to steep); cooked, that is, roasted: - broiled."]},{"k":"G3703","v":["ὀπώρα","opōra","op-o'-rah","Apparently from the base of G3796 and G5610; properly even tide of the (summer) season (dog days), that is, (by implication) ripe fruit: - fruit."]},{"k":"G3704","v":["ὅπως","hopōs","hop'-oce","From G3739 nad G4459; what (-ever) how, that is, in the manner that (as adverb or conjugation of coincidence, intentional or actual): - because, how, (so) that, to, when."]},{"k":"G3705","v":["ὅραμα","horama","hor'-am-ah","From G3708; something gazed at, that is, a spectacle (especially supernatural): - sight, vision."]},{"k":"G3706","v":["ὅρασις","horasis","hor'-as-is","From G3708; the act of gazing, that is, (external) an aspect or (internal) an inspired appearance: - sight, vision."]},{"k":"G3707","v":["ὁρατός","horatos","hor-at-os'","From G3708; gazed at, that is, (by implication) capable of being seen: - visible."]},{"k":"G3708","v":["ὁράω","horaō","hor-ah'-o","Properly to stare at (compare G3700), that is, (by implication) to discern clearly (physically or mentally); by extension to attend to; by Hebraism to experience; passively to appear: - behold, perceive, see, take heed."]},{"k":"G3709","v":["ὀργή","orgē","or-gay'","From G3713; properly desire (as a reaching forth or excitement of the mind), that is, (by analogy) violent passion (ire, or [justifiable] abhorrence); by implication punishment: - anger, indignation, vengeance, wrath."]},{"k":"G3710","v":["ὀργίζω","orgizō","or-gid'-zo","From G3709; to provoke or enrage, that is, (passively) become exasperated: - be angry (wroth)."]},{"k":"G3711","v":["ὀργίλος","orgilos","org-ee'-los","From G3709; irascible: - soon angry."]},{"k":"G3712","v":["ὀργυιά","orguia","org-wee-ah'","From G3713; a stretch of the arms, that is, a fathom: - fathom."]},{"k":"G3713","v":["ὀρέγομαι","oregomai","or-eg'-om-ahee","Middle voice of apparently a prolonged form of an obsolete primary (compare G3735); to stretch oneself, that is, reach out after (long for): - covet after, desire."]},{"k":"G3714","v":["ὀρεινός","oreinos","or-i-nos'","From G3735; mountainous, that is, (feminine by implication of G5561) the Highlands (of Judaea): - hill country."]},{"k":"G3715","v":["ὄρεξις","orexis","or'-ex-is","From G3713; excitement of the mind, that is, longing after: - lust."]},{"k":"G3716","v":["ὀρθοποδέω","orthopodeō","or-thop-od-eh'-o","From a compound of G3717 and G4228; to be straight footed, that is, (figuratively) to go directly forward: - walk uprightly."]},{"k":"G3717","v":["ὀρθός","orthos","or-thos'","Probably from the base of G3735; right (as rising), that is, (perpendicularly) erect (figuratively honest), or (horizontally) level or direct: - straight, upright."]},{"k":"G3718","v":["ὀρθοτομέω","orthotomeō","or-thot-om-eh'-o","From a compound of G3717 and the base of G5114; to make a straight cut, that is, (figuratively) to dissect (expound) correctly (the divine message): - rightly divide."]},{"k":"G3719","v":["ὀρθρίζω","orthrizō","or-thrid'-zo","From G3722; to use the dawn, that is, (by implication) to repair betimes: - come early in the morning."]},{"k":"G3720","v":["ὀρθρινός","orthrinos","or-thrin-os'","From G3722; relating to the dawn, that is, matutinal (as an epithet of Venus, especially brilliant in the early day): - morning."]},{"k":"G3721","v":["ὄρθριος","orthrios","or'-three-os","From G3722; in the dawn, that is, up at day break: - early."]},{"k":"G3722","v":["ὄρθρος","orthros","or'-thros","From the same as G3735; dawn (as sun rise, rising of light); by extension morn: - early in the morning."]},{"k":"G3723","v":["ὀρθῶς","orthōs","or-thoce'","Adverb from G3717; in a straight manner, that is, (figuratively) correctly (also morally): - plain, right (-ly)."]},{"k":"G3724","v":["ὁρίζω","horizō","hor-id'-zo","From G3725; to mark out or bound (“horizon”), that is, (figuratively) to appoint, decree, specify: - declare, determine, limit, ordain."]},{"k":"G3725","v":["ὅριον","horion","hor'-ee-on","Neuter of a derivative of an apparently primary word ὅρος horos (a bound or limit); a boundary line, that is, (by implication) a frontier (region): - border, coast."]},{"k":"G3726","v":["ὁρκίζω","horkizō","hor-kid'-zo","From G3727; to put on oath, that is, make swear; by analogy to solemnly enjoin: - adjure, charge."]},{"k":"G3727","v":["ὅρκος","horkos","hor'-kos, her'-kos","From ἕρκος herkos (a fence; perhaps akin to G3725); a limit, that is, (sacred) restraint (specifically oath): - oath."]},{"k":"G3728","v":["ὁρκωμοσία","horkōmosia","hor-ko-mos-ee'-ah","From a compound of G3727 and a derivative of G3660; asseveration on oath: - oath."]},{"k":"G3729","v":["ὁρμάω","hormaō","hor-mah'-o","From G3730; to start, spur or urge on, that is, (reflexively) to dash or plunge: - run (violently), rush."]},{"k":"G3730","v":["ὁρμή","hormē","hor-may'","Of uncertain affinity; a violent impulse, that is, onset: - assault."]},{"k":"G3731","v":["ὅρμημα","hormēma","hor'-may-mah","From G3730; an attack, that is, (abstractly) precipitancy: - violence."]},{"k":"G3732","v":["ὄρνεον","orneon","or'-neh-on","Neuter of a presumed derivative of G3733; a birdling: - bird, fowl."]},{"k":"G3733","v":["ὄρνις","ornis","or'-nis","Probably from a prolonged form of the base of G3735; a bird (as rising in the air), that is, (specifically) a hen (or female domestic fowl): - hen."]},{"k":"G3734","v":["ὁροθεσία","horothesia","hor-oth-es-ee'-ah","From a compound of the base of G3725 and a derivative of G5087; a limit placing, that is, (concretely) boundary line: - bound."]},{"k":"G3735","v":["ὄρος","oros","or'-os","Probably a from an obsolete word ὄρω orō (to rise or “rear”; perhaps akin to G142; compare G3733); a mountain (as lifting itself above the plain): - hill, mount (-ain)."]},{"k":"G3736","v":["ὀρύσσω","orussō","or-oos'-so","Apparently a primary verb; to “burrow” in the ground, that is, dig: - dig."]},{"k":"G3737","v":["ὀρφανός","orphanos","or-fan-os'","Of uncertain affinity; bereaved (“orphan”), that is, parentless: - comfortless, fatherless."]},{"k":"G3738","v":["ὀρχέομαι","orcheomai","or-kheh'-om-ahee","Middle voice from όρχος orchos (a row or ring); to dance (from the ranklike or regular motion): - dance."]},{"k":"G3739","v":["ὅς, ἥ, ὅ","hos    hē    ho","hos, hay, ho","Probably a primary word (or perhaps a form of the article G3588); the relative (sometimes demonstrative) pronoun, who, which, what, that: - one, (an-, the) other, some, that, what, which, who (-m, -se), etc. See also G3757."]},{"k":"G3740","v":["ὁσάκις","hosakis","hos-ak'-is","Multiple adverb from G3739; how (that is, with G302, so) many times as: - as oft (-en) as."]},{"k":"G3741","v":["ὅσιος","hosios","hos'-ee-os","Of uncertain affinity; properly right (by intrinsic or divine character; thus distinguished from G1342, which refers rather to human statutes and relations; from G2413, which denotes formal consecration; and from G40, which relates to purity from defilement), that is, hallowed (pious, sacred, sure): - holy, mercy, shalt be."]},{"k":"G3742","v":["ὁσιότης","hosiotēs","hos-ee-ot'-ace","From G3741; piety: - holiness."]},{"k":"G3743","v":["ὁσίως","hosiōs","hos-ee'-oce","Adverb from G3741; piously: - holily."]},{"k":"G3744","v":["ὀσμή","osmē","os-may'","From G3605; fragrance (literally or figuratively): - odour, savour."]},{"k":"G3745","v":["ὅσος","hosos","hos'-os","By reduplication from G3739; as (much, great, long, etc.) as: - all (that), as (long, many, much) (as), how great (many, much), [in-] asmuch as, so many as, that (ever), the more, those things, what (great, -soever), wheresoever, wherewithsoever, which, X while, who (-soever)."]},{"k":"G3746","v":["ὅσπερ","hosper","hos'-per","From G3739 and G4007; who especially: - whomsoever."]},{"k":"G3747","v":["ὀστέον, ὀστοῦν","osteon    ostoun","os-teh'-on, os-toon'","Of uncertain affinity; a bone: - bone."]},{"k":"G3748","v":["ὅστις, ἥτις, ὅ,τι","hostis    hētis    ho,ti","hos'-tis, hay'-tis, hot'-ee","From G3739 and G5100; which some, that is, any that; also (definitely) which same: - X and (they), (such) as, (they) that, in that they, what (-soever), whereas ye, (they) which, who (-soever). Compare G3754."]},{"k":"G3749","v":["ὀστράκινος","ostrakinos","os-tra'-kin-os","From ὄστρακον ostrakon (“oyster”), (a tile, that is, terra cotta); earthen ware, that is, clayey; by implication frail: - of earth, earthen."]},{"k":"G3750","v":["ὄσφρησις","osphrēsis","os'-fray-sis","From a derivative of G3605; smell (the sense): - smelling."]},{"k":"G3751","v":["ὀσφύς","osphus","os-foos'","Of uncertain affinity; the loin (externally), that is, the hip; internally (by extension) procreative power: - loin."]},{"k":"G3752","v":["ὅταν","hotan","hot'-an","From G3753 and G302; whenever (implying hypothesis or more or less uncertainty); also causative (conjugationally) inasmuch as: - as long (soon) as, that, + till, when (-soever), while."]},{"k":"G3753","v":["ὅτε","hote, ho, te, hē te, tō te","hot'-eh, ho, t'-eh, hay'-the, tot'-eh","From G3739 and G5037; at which (thing) too, that is, when: - after (that), as soon as, that, when, while."]},{"k":"G3754","v":["ὅτι","hoti","hot'-ee","Neuter of G3748 as conjugation; demonstrative that (sometimes redundant); causatively because: - as concerning that, as though, because (that), for (that), how (that), (in) that, though, why."]},{"k":"G3755","v":["ὅτου","hotou","hot'-oo","From the genitive case of G3748 (as adverb); during which same time, that is, whilst: - whiles."]},{"k":"G3756","v":["οὐ","ou","oo","Also οὐκ ouk ook used before a vowel and οὐχ ouch ookh before an aspirate. A primary word; the absolutely negative (compare G3361) adverb; no or not: - + long, nay, neither, never, no (X man), none, [can-] not, + nothing, + special, un ([-worthy]), when, + without, + yet but. See also G3364, G3372."]},{"k":"G3757","v":["οὗ","hou","hoo","Genitive case of G3739 as adverb; at which place, that is, where: - where (-in), whither ([-soever])."]},{"k":"G3758","v":["οὐά","oua","oo-ah'","A primary exclamation of surprise; “ah”: - ah."]},{"k":"G3759","v":["οὐαί","ouai","oo-ah'ee","A primary excamation of grief; “woe”: - alas, woe."]},{"k":"G3760","v":["οὐδαμῶς","oudamōs","oo-dam-oce'","Adverb from (the feminine) of G3762; by no means: - not."]},{"k":"G3761","v":["οὐδέ","oude","oo-deh'","From G3756 and G1161; not however, that is, neither, nor, not even: - neither (indeed), never, no (more, nor, not), nor (yet), (also, even, then) not (even, so much as), + nothing, so much as."]},{"k":"G3762","v":["οὐδείς","oudeis","oo-dice'","Including the feminine οὐδεμία oudemiaoo-dem-ee'-ah and the neuter οὐδέν ouden oo-den'. From G3761 and G1520; not even one (man woman or thing) that is none: nobody nothing: - any (man) aught man neither any (thing) never (man) no (man) none (+ of these things) not (any at all -thing) nought."]},{"k":"G3763","v":["οὐδέποτε","oudepote","oo-dep'-ot-eh","From G3761 and G4218; not even at any time, that is, never at all: - neither at any time, never, nothing at any time."]},{"k":"G3764","v":["οὐδέπω","oudepō","oo-dep'-o","From G3761 and G4452; not even yet: - as yet not, never before (yet), (not) yet."]},{"k":"G3765","v":["οὐκέτι","ouketi","ook-et'-ee","Also (separately) οὐκ ἔτι ouk eti ook et'-ee. From G3756 and G2089; not yet, no longer: - after that (not), (not) any more, henceforth (hereafter), not, no longer (more), not as yet (now), now no more (not), yet (not)."]},{"k":"G3766","v":["οὐκοῦν","oukoun","ook-oon'","From G3756 and G3767; is it not therefore that, that is, (affirmatively) hence or so: - then."]},{"k":"G3767","v":["οὖν","oun","oon","Apparently a primary word; (adverbially) certainly, or (conjugationally) accordingly: - and (so, truly), but, now (then), so (likewise then), then, therefore, verily, wherefore."]},{"k":"G3768","v":["οὔπω","oupō","oo'-po","From G3756 and G4452; not yet: - hitherto not, (no . . .) as yet, not yet."]},{"k":"G3769","v":["οὐρά","oura","oo-rah'","Apparently a primary word; a tail: - tail."]},{"k":"G3770","v":["οὐράνιος","ouranios","oo-ran'-ee-os","From G3772; celestial, that is, belonging to or coming from the sky: - heavenly."]},{"k":"G3771","v":["οὐρανόθεν","ouranothen","oo-ran-oth'-en","From G3772 and the enclitic of source; from the sky: - from heaven."]},{"k":"G3772","v":["οὐρανός","ouranos","oo-ran-os'","Perhaps from the same as G3735 (through the idea of elevation); the sky; by extension heaven (as the abode of God); by implication happiness, power, eternity; specifically the Gospel (Christianity): - air, heaven ([-ly]), sky."]},{"k":"G3773","v":["Οὐρβανός","Ourbanos","oor-ban-os'","Of Latin origin; Urbanus (of the city, “urbane”), a Christian: - Urbanus."]},{"k":"G3774","v":["Οὐρίας","Ourias","oo-ree'-as","Of Hebrew origin [H223]; Urias (that is, Urijah), a Hittite: - Urias."]},{"k":"G3775","v":["οὖς","ous","ooce","Apparently a primary word; the ear (physically or mentally): - ear."]},{"k":"G3776","v":["οὐσία","ousia","oo-see'-ah","From the feminine of G5607; substance, that is, property (possessions): - goods, substance."]},{"k":"G3777","v":["οὔτε","oute","oo'-teh","From G3756 and G5037; not too, that is, neither or nor; by analogy not even: - neither, none, nor (yet), (no, yet) not, nothing."]},{"k":"G3778","v":["οὗτος, οὗτοι, αὕτη, αὕται","houtos    houtoi    hautē    hautai","hoo'-tos, hoo'-toy, how'-tay, how'-tahee","Including the nominative masculine plural (second form), nominative feminine signular (third form), and the nominate feminine plural, (fourth form). From the article G3588 and G846; the he (she or it), that is, this or that (often with the article repeated): - he (it was that), hereof, it, she, such as, the same, these, they, this (man, same, woman), which, who."]},{"k":"G3779","v":["οὕτω","houtō","hoo'-to","Or, before a vowel, οὕτως houtōs hoo'-toce. From G3778; in this way (referring to what precedes or follows): - after that, after (in) this manner, as, even (so), for all that, like (-wise), no more, on this fashion (-wise), so (in like manner), thus, what."]},{"k":"G3780","v":["οὐχί","ouchi","oo-khee'","Intensive of G3756; not indeed: - nay, not."]},{"k":"G3781","v":["ὀφειλέτης","opheiletēs","of-i-let'-ace","From G3784; an ower, that is, a person indebted; figuratively a delinquent; morally a transgressor (against God): - debtor, which owed, sinner."]},{"k":"G3782","v":["ὀφειλή","opheilē","of-i-lay'","From G3784; indebtedness, that is, (concretely) a sum owed; figuratively obligation, that is, (conjugal) duty: - debt, due."]},{"k":"G3783","v":["ὀφείλημα","opheilēma","of-i'-lay-mah","From (the alternate of) G3784; something owed, that is, (figuratively) a due.; morally a fault: - debt."]},{"k":"G3784","v":["ὀφείλω, ὀφειλέω","opheilō    opheileō","of-i'-lo, of-i-leh'-o","Including its prolonged form (second form) used in certain tenses. Probably from the base of G3786 (through the idea of accruing); to owe (pecuniarily); figuratively to be under obligation (ought, must, should); morally to fail in duty: - behove, be bound, (be) debt (-or), (be) due (-ty), be guilty (indebted), (must) need (-s), ought, owe, should. See also G3785."]},{"k":"G3785","v":["ὄφελον","ophelon","of'-el-on","First person singular of a past tense of G3784; I ought (wish), that is, (interjectionally) oh that!: - would (to God)."]},{"k":"G3786","v":["ὄφελος","ophelos","of'-el-os","From ὀφέλλω ophellō (to heap up, that is, accumulate or benefit); gain: - advantageth, profit."]},{"k":"G3787","v":["ὀφθαλμοδουλεία","ophthalmodouleia","of-thal-mod-oo-li'-ah","From G3788 and G1397; sight labor, that is, that needs watching (remissness): - eye-service."]},{"k":"G3788","v":["ὀφθαλμός","ophthalmos","of-thal-mos'","From G3700; the eye (literally or figuratively); by implication vision; figuratively envy (from the jealous side glance): - eye, sight."]},{"k":"G3789","v":["ὄφις","ophis","of'-is","Probably from G3700 (through the idea of sharpness of vision); a snake, figuratively (as a type of sly cunning) an artful malicious person, especially Satan: - serpent."]},{"k":"G3790","v":["ὀφρύς","ophrus","of-roos'","Perhaps from G3700 (through the idea of the shading or proximity to the organ of vision); the eye “brow” or forehead, that is, (figuratively) the brink of a precipice: - brow."]},{"k":"G3791","v":["ὀχλέω","ochleō","okh-leh'-o","From G3793; to mob, that is, (by implication) to harass: - vex."]},{"k":"G3792","v":["ὀχλοποιέω","ochlopoieō","okh-lop-oy-eh'-o","From G3793 and G4160; to make a crowd, that is, raise a public disturbance: - gather a company."]},{"k":"G3793","v":["ὄχλος","ochlos","okh'-los","From a derivative of G2192 (meaning a vehicle); a throng (as borne along); by implication the rabble; by extension a class of people; figuratively a riot: - company, multitude, number (of people), people, press."]},{"k":"G3794","v":["ὀχύρωμα","ochurōma","okh-oo'-ro-mah","From a remote derivative of G2192 (meaning to fortify, through the idea of holding safely); a castle (figuratively argument): - stronghold."]},{"k":"G3795","v":["ὀψάριον","opsarion","op-sar'-ee-on","Neuter of a presumed derivative of the base of G3702; a relish to other food (as if cooked sauce), that is, (specifically) fish (presumably salted and dried as a condiment): - fish."]},{"k":"G3796","v":["ὀψέ","opse","op-seh'","From the same as G3694 (through the idea of backwardness); (adverbially) late in the day; by extension after the close of the day: - (at) even, in the end."]},{"k":"G3797","v":["ὄψιμος","opsimos","op'-sim-os","From G3796; later, that is, vernal (showering): - latter."]},{"k":"G3798","v":["ὄψίος","opsios","op'-see-os","From G3796; late; feminine (as noun) afternoon (early eve) or nightfall (later eve): - even (-ing, [-tide])."]},{"k":"G3799","v":["ὄψις","opsis","op'-sis","From G3700; properly sight (the act), that is, (by implication) the visage, an external show: - appearance, countenance, face."]},{"k":"G3800","v":["ὀψώνιον","opsōnion","op-so'-nee-on","Neuter of a presumed derivative of the same as G3795; rations for a soldier, that is, (by extension) his stipend or pay: - wages."]},{"k":"G3801","v":["ὁ ὢν ὁ ἦν ὁ ἐρχόμενος","ho ōn ho ēn ho erchomenos","ho own ho ane ho er-khom'-enos","A phrase combining G3588 with the present participle and imperfect of G1510 and the present participle of G2064 by means of G2532; the one being and the one that was and the one coming, that is, the Eternal, as a divine epithet of Christ. (Each “and” (G2532) was ommited from the phrase because of limited space.): - which art (is, was), and (which) wast (is, was), and art (is) to come (shalt be)."]},{"k":"G3802","v":["παγιδεύω","pagideuō","pag-id-yoo'-o","From G3803; to ensnare (figuratively): - entangle."]},{"k":"G3803","v":["παγίς","pagis","pag-ece'","From G4078; a trap (as fastened by a noose or notch); figuratively a trick or stratagem (temptation): - snare"]},{"k":"G3804","v":["πάθημα","pathēma","path'-ay-mah","From a presumed derivative of G3806; something undergone, that is, hardship or pain; subjectively an emotion or influence: - affection, affliction, motion, suffering."]},{"k":"G3805","v":["παθητός","pathētos","path-ay-tos'","From the same as G3804; liable (that is, doomed) to experience pain: - suffer."]},{"k":"G3806","v":["πάθος","pathos","path'-os","From the alternate of G3958; properly suffering (“pathos”), that is, (subjectively) a passion (especially concupiscence): - (inordinate) affection, lust."]},{"k":"G3807","v":["παιδαγωγός","paidagōgos","pahee-dag-o-gos'","From G3816 and a reduplication form of G71; a boy leader, that is, a servant whose office it was to take the children to school; (by implication [figuratively] a tutor [“paedagogue”]): - instructor, schoolmaster."]},{"k":"G3808","v":["παιδάριον","paidarion","pahee-dar'-ee-on","Neuter of a presumed derivative of G3816; a little boy: - child, lad."]},{"k":"G3809","v":["παιδεία","paideia","pahee-di'-ah","From G3811; tutorage, that is, education or training; by implication disciplinary correction: - chastening, chastisement, instruction, nurture."]},{"k":"G3810","v":["παιδευτής","paideutēs","pahee-dyoo-tace'","From G3811; a trainer, that is, teacher or (by implication) discipliner: - which corrected, instructor."]},{"k":"G3811","v":["παιδεύω","paideuō","pahee-dyoo'-o","From G3816; to train up a child, that is, educate, or (by implication) discipline (by punishment): - chasten (-ise), instruct, learn, teach."]},{"k":"G3812","v":["παιδιόθεν","paidiothen","pahee-dee-oth'-en","Adverb (of source) from G3813; from infancy: - of a child."]},{"k":"G3813","v":["παιδίον","paidion","pahee-dee'-on","Neuter diminutive of G3816; a childling (of either sex), that is, (properly) an infant, or (by extension) a half grown boy or girl; figuratively an immature Christian: - (little, young) child, damsel."]},{"k":"G3814","v":["παιδίσκη","paidiskē","pahee-dis'-kay","Feminine diminutive of G3816; a girl, that is, (specifically) a female slave or servant: - bondmaid (-woman), damsel, maid (-en)."]},{"k":"G3815","v":["παίζω","paizō","paheed'-zo","From G3816; to sport (as a boy): - play."]},{"k":"G3816","v":["παῖς","pais","paheece","Perhaps from G3817; a boy (as often beaten with impunity), or (by analogy) a girl, and (generally) a child; specifically a slave or servant (especially a minister to a king; and by eminence to God): - child, maid (-en), (man) servant, son, young man."]},{"k":"G3817","v":["παίω","paiō","pah'-yo","A primary verb; to hit (as if by a single blow and less violently than G5180); specifically to sting (as a scorpion): - smite, strike."]},{"k":"G3818","v":["Πακατιανή","Pakatianē","pak-at-ee-an-ay'","Feminine of an adjective of uncertain derivation; Pacatianian, a section of Phrygia: - Pacatiana."]},{"k":"G3819","v":["πάλαι","palai","pal'-ahee","Probably another form for G3825 (through the idea of retrocession); (adverbially) formerly, or (relatively) sometime since; (elliptically as adjective) ancient: - any while, a great while ago, (of) old, in time past."]},{"k":"G3820","v":["παλαιός","palaios","pal-ah-yos'","From G3819; antique, that is, not recent, worn out: - old."]},{"k":"G3821","v":["παλαιότης","palaiotēs","pal-ah-yot'-ace","From G3820; antiquatedness: - oldness."]},{"k":"G3822","v":["παλαιόω","palaioō","pal-ah-yo'-o","From G3820; to make (passively become) worn out, or declare obsolete: - decay, make (wax) old."]},{"k":"G3823","v":["πάλη","palē","pal'-ay","From πάλλω pallō (to vibrate; another form for G906); wrestling: - + wrestle."]},{"k":"G3824","v":["παλιγγενεσία","paliggenesia","pal-ing-ghen-es-ee'-ah","From G3825 and G1078; (spiritual) rebirth (the state or the act), that is, (figuratively) spiritual renovation; specifically Messianic restoration: - regeneration."]},{"k":"G3825","v":["πάλιν","palin","pal'-in","Probably from the same as G3823 (through the idea of oscillatory repetition); (adverbially) anew, that is, (of place) back, (of time) once more, or (conjugationally) furthermore or on the other hand: - again."]},{"k":"G3826","v":["παμπληθεί","pamplēthei","pam-play-thi'","Dative case (adverb) of a compound of G3956 and G4128; in full multitude, that is, concertedly or simultaneously: - all at once."]},{"k":"G3827","v":["πάμπολυς","pampolus","pam'-pol-ooce","From G3956 and G4183; full many, that is, immense: - very great."]},{"k":"G3828","v":["Παμφυλία","Pamphulia","pam-fool-ee'-ah","From a compound of G3956 and G5443; every tribal, that is, heterogeneous (G5561 being implied); Pamphylia, a region of Asia Minor: - Pamphylia."]},{"k":"G3829","v":["πανδοχεῖον","pandocheion","pan-dokh-i'-on","Neuter of a presumed compound of G3956 and a derivative of G1209; all receptive, that is, a public lodging place (caravanserai or khan): - inn."]},{"k":"G3830","v":["πανδοχεύς","pandocheus","pan-dokh-yoos'","From the same as G3829; an innkeeper (warden of a caravanserai): - host."]},{"k":"G3831","v":["πανήγυρις","panēguris","pan-ay'-goo-ris","From G3956 and a derivative of G58; a mass meeting, that is, (figuratively) universal companionship: - general assembly."]},{"k":"G3832","v":["πανοικί","panoiki","pan-oy-kee'","Adverb from G3956 and G3624; with the whole family: - with all his house."]},{"k":"G3833","v":["πανοπλία","panoplia","pan-op-lee'-ah","From a compound of G3956 and G3696; full armor (“panoply”): - all (whole) armour."]},{"k":"G3834","v":["πανουργία","panourgia","pan-oorg-ee'-ah","From G3835; adroitness, that is, (in a bad sense) trickery or sophistry: - (cunning) craftiness, subtilty."]},{"k":"G3835","v":["πανοῦργος","panourgos","pan-oor'-gos","From G3956 and G2041; all working, that is, adroit (shrewd): - crafty."]},{"k":"G3836","v":["πανταχόθεν","pantachothen","pan-takh-oth'-en","Adverb (of source) from G3837; from all directions: - from every quarter."]},{"k":"G3837","v":["πανταχοῦ","pantachou","pan-takh-oo'","Genitive case (as adverb of place) of a presumed derivative of G3956; universally: - in all places, everywhere."]},{"k":"G3838","v":["παντελής","pantelēs","pan-tel-ace'","From G3956 and G5056; full ended, that is, entire (neuter as noun, completion): -    + in [no] wise, uttermost."]},{"k":"G3839","v":["πάντη","pantē","pan'-tay","Adverb (of manner) from G3956; wholly: - always."]},{"k":"G3840","v":["παντόθεν","pantothen","pan-toth'-en","Adverb (of source) from G3956; from (that is, on) all sides: - on every side, round about."]},{"k":"G3841","v":["παντοκράτωρ","pantokratōr","pan-tok-rat'-ore","From G3956 and G2904; the all ruling, that is, God (as absolute and universal sovereign): - Almighty, Omnipotent."]},{"k":"G3842","v":["πάντοτε","pantote","pan'-tot-eh","From G3956 and G3753; every when, that is, at all times: - always (-s), ever (-more)."]},{"k":"G3843","v":["πάντως","pantōs","pan'-toce","From G3956; entirely; specifically at all events, (with negative following) in no event: - by all means, altogether, at all, needs, no doubt, in [no] wise, surely."]},{"k":"G3844","v":["παρά","para","par-ah'","A primary preposition; properly near, that is, (with genitive case) from beside (literally or figuratively), (with dative case) at (or in) the vicinity of (objectively or subjectively), (with accusative case) to the proximity with (local [especially beyond or opposed to] or causal [on account of]). In compounds it retains the same variety of application: - above, against, among, at, before, by, contrary to, X friend, from, + give [such things as they], + that [she] had, X his, in, more than, nigh unto, (out) of, past, save, side . . . by, in the sight of, than, [there-] fore, with. In compounds it retains the same variety of application."]},{"k":"G3845","v":["παραβαίνω","parabainō","par-ab-ah'ee-no","From G3844 and the base of G939; to go contrary to, that is, violate a command: - (by) transgress (-ion)."]},{"k":"G3846","v":["παραβάλλω","paraballō","par-ab-al'-lo","From G3844 and G906; to throw alongside, that is, (reflexively) to reach a place, or (figuratively) to liken: - arrive, compare."]},{"k":"G3847","v":["παράβασις","parabasis","par-ab'-as-is","From G3845; violation: - breaking, transgression."]},{"k":"G3848","v":["παραβάτης","parabatēs","par-ab-at'-ace","From G3845; a violator: - breaker, transgress (-or)."]},{"k":"G3849","v":["παραβιάζομαι","parabiazomai","par-ab-ee-ad'-zom-ahee","From G3844 and the middle voice of G971; to force contrary to (nature), that is, compel (by entreaty): - constrain."]},{"k":"G3850","v":["παραβολή","parabolē","par-ab-ol-ay'","From G3846; a similitude (“parable”), that is, (symbolically) fictitious narrative (of common life conveying a moral), apoth gm or adage: - comparison, figure, parable, proverb."]},{"k":"G3851","v":["παραβουλεύομαι","parabouleuomai","par-ab-ool-yoo'-om-ahee","From G3844 and the middle of G1011; to misconsult, that is, disregard: - not (to) regard (-ing)."]},{"k":"G3852","v":["παραγγελία","paraggelia","par-ang-gel-ee'-ah","From G3853; a mandate: - charge, command."]},{"k":"G3853","v":["παραγγέλλω","paraggellō","par-ang-gel'-lo","From G3844 and the base of G32; to transmit a message, that is, (by implication) to enjoin: - (give in) charge, (give) command (-ment), declare."]},{"k":"G3854","v":["παραγίνομαι","paraginomai","par-ag-in'-om-ahee","From G3844 and G1096; to become near, that is, approach (have arrived); by implication to appear publicly: - come, go, be present."]},{"k":"G3855","v":["παράγω","paragō","par-ag'-o","From G3844 and G71; to lead near, that is, (reflexively or intransitively) to go along or away: - depart, pass (away, by, forth)."]},{"k":"G3856","v":["παραδειγματίζω","paradeigmatizō","par-ad-igue-mat-id'-zo","From G3844 and G1165; to show alongside (the public), that is, expose to infamy: - make a public example, put to an open shame."]},{"k":"G3857","v":["παράδεισος","paradeisos","par-ad'-i-sos","Of Oriental origin (compare [H6508]); a park, that is, (specifically) an Eden (place of future happiness, “paradise”): - paradise."]},{"k":"G3858","v":["παραδέχομαι","paradechomai","par-ad-ekh'-om-ahee","From G3844 and G1209; to accept near, that is, admit or (by implication) delight in: - receive."]},{"k":"G3859","v":["παραδιατριβή","paradiatribē","par-ad-ee-at-ree-bay'","From a compound of G3844 and G1304; misemployment, that is, meddlesomeness: - perverse disputing."]},{"k":"G3860","v":["παραδίδωμι","paradidōmi","par-ad-id'-o-mee","From G3844 and G1325; to surrender, that is, yield up, intrust, transmit: - betray, bring forth, cast, commit, deliver (up), give (over, up), hazard, put in prison, recommend."]},{"k":"G3861","v":["παράδοξος","paradoxos","par-ad'-ox-os","From G3844 and G1391 (in the sense of seeming); contrary to expectation, that is, extraordinary (“paradox”): - strange."]},{"k":"G3862","v":["παράδοσις","paradosis","par-ad'-os-is","From G3860; transmission, that is, (concretely) a precept; specifically the Jewish traditionary law: - ordinance, tradition."]},{"k":"G3863","v":["παραζηλόω","parazēloō","par-ad-zay-lo'-o","From G3844 and G2206; to stimulate alongside, that is, excite to rivalry: - provoke to emulation (jealousy)."]},{"k":"G3864","v":["παραθαλάσσιος","parathalassios","par-ath-al-as'-see-os","From G3844 and G2281; along the sea, that is, maritime (lacustrine): - upon the sea coast."]},{"k":"G3865","v":["παραθεωρέω","paratheōreō","par-ath-eh-o-reh'-o","From G3844 and G2334; to overlook or disregard: - neglect."]},{"k":"G3866","v":["παραθήκη","parathēkē","par-ath-ah'-kay","From G3908; a deposit, that is, (figuratively) trust: - committed unto."]},{"k":"G3867","v":["παραινέω","paraineō","par-ahee-neh'-o","From G3844 and G134; to mispraise, that is, recommend or advise (a different course): - admonish, exhort."]},{"k":"G3868","v":["παραιτέομαι","paraiteomai","par-ahee-teh'-om-ahee","From G3844 and the middle of G154; to beg off, that is, deprecate, decline, shun: - avoid, (make) excuse, intreat, refuse, reject."]},{"k":"G3869","v":["παρακαθίζω","parakathizō","par-ak-ath-id'-zo","From G3844 and G2523; to sit down near: - sit."]},{"k":"G3870","v":["παρακαλέω","parakaleō","par-ak-al-eh'-o","From G3844 and G2564; to call near, that is, invite, invoke (by imploration, hortation or consolation): - beseech, call for, (be of good) comfort, desire, (give) exhort (-ation), intreat, pray."]},{"k":"G3871","v":["παρακαλύπτω","parakaluptō","par-ak-al-oop'-to","From G3844 and G2572; to cover alongside, that is, veil (figuratively): - hide."]},{"k":"G3872","v":["παρακαταθήκη","parakatathēkē","par-ak-at-ath-ay'-kay","From a compound of G3844 and G2698; something put down alongside, that is, a deposit (sacred trust): - that (thing) which is committed (un-) to (trust)."]},{"k":"G3873","v":["παράκειμαι","parakeimai","par-ak'-i-mahee","From G3844 and G2749; to lie near, that is, be at hand (figuratively be prompt or easy): - be present."]},{"k":"G3874","v":["παράκλησις","paraklēsis","par-ak'-lay-sis","From G3870; imploration, hortation, solace: - comfort, consolation, exhortation, intreaty."]},{"k":"G3875","v":["παράκλητος","paraklētos","par-ak'-lay-tos","An intercessor, consoler: - advocate, comforter."]},{"k":"G3876","v":["παρακοή","parakoē","par-ak-o-ay'","From G3878; inattention, that is, (by implication) disobedience: - disobedience."]},{"k":"G3877","v":["παρακολουθέω","parakoloutheō","par-ak-ol-oo-theh'-o","From G3844 and G190; to follow near, that is, (figuratively) attend (as a result), trace out, conform to: - attain, follow, fully know, have understanding."]},{"k":"G3878","v":["παρακούω","parakouō","par-ak-oo'-o","From G3844 and G191; to mishear, that is, (by implication) to disobey: - neglect to hear."]},{"k":"G3879","v":["παρακύπτω","parakuptō","par-ak-oop'-to","From G3844 and G2955; to bend beside, that is, lean over (so as to peer within): - look (into), stoop down."]},{"k":"G3880","v":["παραλαμβάνω","paralambanō","par-al-am-ban'-o","From G3844 and G2983; to receive near, that is, associate with oneself (in any familiar or intimate act or relation); by analogy to assume an office; figuratively to learn: - receive, take (unto, with)."]},{"k":"G3881","v":["παραλέγομαι","paralegomai","par-al-eg'-om-ahee","From G3844 and the middle of G3004 (in its original sense); (specifically) to lay one’s course near, that is, sail past: - pass, sail by."]},{"k":"G3882","v":["παράλιος","paralios","par-al'-ee-os","From G3844 and G251; beside the salt (sea), that is, maritime: - sea coast."]},{"k":"G3883","v":["παραλλαγή","parallagē","par-al-lag-ay'","From a compound of G3844 and G236; transmutation (of phase or orbit), that is, (figuratively) fickleness: - variableness."]},{"k":"G3884","v":["παραλογίζομαι","paralogizomai","par-al-og-id'-zom-ahee","From G3844 and G3049; to misreckon, that is, delude: - beguile, deceive."]},{"k":"G3885","v":["παραλυτικός","paralutikos","par-al-oo-tee-kos'","From a derivative of G3886; as if dissolved, that is, “paralytic”: - that had (sick of) the palsy."]},{"k":"G3886","v":["παραλύω","paraluō","par-al-oo'-o","From G3844 and G3089; to loosen beside, that is, relax (perfect passive participle paralyzed or enfeebled): - feeble, sick of the (taken with) palsy."]},{"k":"G3887","v":["παραμένω","paramenō","par-am-en'-o","From G3844 and G3306; to stay near, that is, remain (literally tarry; or figuratively be permanent, persevere): - abide, continue."]},{"k":"G3888","v":["παραμυθέομαι","paramutheomai","par-am-oo-theh'-om-ahee","From G3844 and the middle of a derivative of G3454; to relate near, that is, (by implication) encourage, console: - comfort."]},{"k":"G3889","v":["παραμυθία","paramuthia","par-am-oo-thee'-ah","From G3888; consolation (properly abstract): - comfort."]},{"k":"G3890","v":["παραμύθιον","paramuthion","par-am-oo'-thee-on","Neuter of G3889; consolation (properly concrete): - comfort."]},{"k":"G3891","v":["παρανομέω","paranomeō","par-an-om-eh'-o","From a compound of G3844 and G3551; to be opposed to law, that is, to transgress: - contrary to law."]},{"k":"G3892","v":["παρανομία","paranomia","par-an-om-ee'-ah","From the same as G3891; transgression: - iniquity."]},{"k":"G3893","v":["παραπικραίνω","parapikrainō","par-ap-ik-rah'ee-no","From G3844 and G4087; to embitter alongside, that is, (figuratively) to exasperate: - provoke."]},{"k":"G3894","v":["παραπικρασμός","parapikrasmos","par-ap-ik-ras-mos'","From G3893; irritation: - provocation."]},{"k":"G3895","v":["παραπίπτω","parapiptō","par-ap-ip'-to","From G3844 and G4098; to fall aside, that is, (figuratively) to apostatize: - fall away."]},{"k":"G3896","v":["παραπλέω","parapleō","par-ap-leh'-o","From G3844 and G4126; to sail near: - sail by."]},{"k":"G3897","v":["παραπλήσιον","paraplēsion","par-ap-lay'-see-on","Neuter of a compound of G3844 and the base of G4139 (as adverb); close by, that is, (figuratively) almost: - nigh unto."]},{"k":"G3898","v":["παραπλησίως","paraplēsiōs","par-ap-lay-see'-oce","Adverb from the same as G3897; in a manner near by, that is, (figuratively) similarly: - likewise."]},{"k":"G3899","v":["παραπορεύομαι","paraporeuomai","par-ap-or-yoo'-om-ahee","From G3844 and G4198; to travel near: - go, pass (by)."]},{"k":"G3900","v":["παράπτωμα","paraptōma","par-ap'-to-mah","From G3895; a side slip (lapse or deviation), that is, (unintentional) error or (wilful) transgression: - fall, fault, offence, sin, trespass."]},{"k":"G3901","v":["παραῤῥυέω","pararrhueō","par-ar-hroo-eh'-o","From G3844 and the alternate of G4482; to flow by, that is, (figuratively) carelessly pass (miss): - let slip."]},{"k":"G3902","v":["παράσημος","parasēmos","par-as'-ay-mos","From G3844 and the base of G4591; side marked, that is, labelled (with a badge [figure head] of a ship): - sign."]},{"k":"G3903","v":["παρασκευάζω","paraskeuazō","par-ask-yoo-ad'-zo","From G3844 and a derivative of G4632; to furnish aside, that is, get ready: - prepare self, be (make) ready."]},{"k":"G3904","v":["παρασκευή","paraskeuē","par-ask-yoo-ay'","As if from G3903; readiness: - preparation."]},{"k":"G3905","v":["παρατείνω","parateinō","par-at-i'-no","From G3844 and τείνω teinō (to stretch); to extend along, that is, prolong (in point of time): - continue."]},{"k":"G3906","v":["παρατηρέω","paratēreō","par-at-ay-reh'-o","From G3844 and G5083; to inspect alongside, that is, note insidiously or scrupulously: - observe, watch."]},{"k":"G3907","v":["παρατήρησις","paratērēsis","par-at-ay'-ray-sis","From G3906; inspection, that is, ocular evidence: - observation."]},{"k":"G3908","v":["παρατίθημι","paratithēmi","par-at-ith'-ay-mee","From G3844 and G5087; to place alongside, that is, present (food, truth); by implication to deposit (as a trust or for protection): - allege, commend, commit (the keeping of), put forth, set before."]},{"k":"G3909","v":["παρατυγχάνω","paratugchanō","par-at-oong-khan'-o","From G3844 and G5177; to chance near, that is, fall in with: - meet with."]},{"k":"G3910","v":["παραυτίκα","parautika","par-ow-tee'-kah","From G3844 and a derivative of G846; at the very instant, that is, momentary: - but for a moment."]},{"k":"G3911","v":["παραφέρω","parapherō","par-af-er'-o","From G3844 and G5342 (including its alternate forms); to bear along or aside, that is, carry off (literally or figuratively); by implication to avert: - remove, take away."]},{"k":"G3912","v":["παραφρονέω","paraphroneō","par-af-ron-eh'-o","From G3844 and G5426; to misthink, that is, be insane (silly): - as a fool."]},{"k":"G3913","v":["παραφρονία","paraphronia","par-af-ron-ee'-ah","From G3912; insanity, that is, foolhardiness: - madness."]},{"k":"G3914","v":["παραχειμάζω","paracheimazō","par-akh-i-mad'-zo","From G3844 and G5492; to winter near, that is, stay with over the rainy season: - winter."]},{"k":"G3915","v":["παραχειμασία","paracheimasia","par-akh-i-mas-ee'-ah","From G3914; a wintering over: - winter in."]},{"k":"G3916","v":["παραχρῆμα","parachrēma","par-akh-ray'-mah","From G3844 and G5536 (in its original sense); at the thing itself, that is, instantly: - forthwith, immediately, presently, straightway, soon."]},{"k":"G3917","v":["πάρδαλις","pardalis","par'-dal-is","Feminine of πάρδος pardos (a panther); a leopard: - leopard."]},{"k":"G3918","v":["πάρειμι","pareimi","par'-i-mee","From G3844 and G1510 (including its various forms); to be near, that is, at hand; neuter present participle (singular) time being, or (plural) property: - come, X have, be here, + lack, (be here) present."]},{"k":"G3919","v":["παρεισάγω","pareisagō","par-ice-ag'-o","From G3844 and G1521; to lead in aside, that is, introduce surreptitiously: - privily bring in."]},{"k":"G3920","v":["παρείσακτος","pareisaktos","par-ice'-ak-tos","From G3919; smuggled in: - unawares brought in."]},{"k":"G3921","v":["παρεισδύνω","pareisdunō","par-ice-doo'-no","From G3844 and a compound of G1519 and G1416; to settle in alongside, that is, lodge stealthily: - creep in unawares."]},{"k":"G3922","v":["παρεισέρχομαι","pareiserchomai","par-ice-er'-khom-ahee","From G3844 and G1525; to come in along side, that is, supervene additionally or stealthily: - come in privily, enter."]},{"k":"G3923","v":["παρεισφέρω","pareispherō","par-ice-fer'-o","From G3844 and G1533; to bear in alongside, that is, introduce simultaneously: - give."]},{"k":"G3924","v":["παρεκτός","parektos","par-ek-tos'","From G3844 and G1622; near outside, that is, besides: - except, saving, without."]},{"k":"G3925","v":["παρεμβολή","parembolē","par-em-bol-ay'","From a compound of G3844 and G1685; a throwing in beside (juxtaposition), that is, (specifically) battle array, encampment or barracks (tower Antonia): - army, camp, castle."]},{"k":"G3926","v":["παρενοχλέω","parenochleō","par-en-okh-leh'-o","From G3844 and G1776; to harass further, that is, annoy: - trouble."]},{"k":"G3927","v":["παρεπίδημος","parepidēmos","par-ep-id'-ay-mos","From G3844 and the base of G1927; an alien alongside, that is, a resident foreigner: - pilgrim, stranger."]},{"k":"G3928","v":["παρέρχομαι","parerchomai","par-er'-khom-ahee","From G3844 and G2064; to come near or aside, that is, to approach (arrive), go by (or away), (figuratively) perish or neglect, (causatively) avert: - come (forth), go, pass (away, by, over), past, transgress."]},{"k":"G3929","v":["πάρεσις","paresis","par'-es-is","From G2935; praetermission, that is, toleration: - remission."]},{"k":"G3930","v":["παρέχω","parechō","par-ekh'-o","From G3844 and G2192; to hold near, that is, present, afford, exhibit, furnish occasion: - bring, do, give, keep, minister, offer, shew, + trouble."]},{"k":"G3931","v":["παρηγορία","parēgoria","par-ay-gor-ee'-ah","From a compound of G3844 and a derivative of G58 (meaning to harangue an assembly); an address alongside, that is, (specifically) consolation: - comfort."]},{"k":"G3932","v":["παρθενία","parthenia","par-then-ee'-ah","From G3933; maidenhood: - virginity."]},{"k":"G3933","v":["παρθένος","parthenos","par-then'-os","Of unknown origin; a maiden; by implication an unmarried daughter: - virgin."]},{"k":"G3934","v":["Πάρθος","Parthos","par'-thos","Probably of foreign origin; a Parthian, that is, inhabitant of Parthia: - Parthian."]},{"k":"G3935","v":["παρίημι","pariēmi","par-ee'-ay-mi","From G3844 and ίημι    hiēmi (to send); to let by, that is, relax: - hang down."]},{"k":"G3936","v":["παρίστημι, παριστάνω","paristēmi    paristanō","par-is'-tay-mee, par-is-tan'-o","From G3488 and G2476; to stand beside, that is, (transitively) to exhibit, proffer, (specifically) recommend, (figuratively) substantiate; or (intransitively) to be at hand (or ready), aid: - assist, bring before, command, commend, give presently, present, prove, provide, shew, stand (before, by, here, up, with), yield."]},{"k":"G3937","v":["Παρμενᾶς","Parmenas","par-men-as'","Probaby by contraction for Παρμενίδης Parmenidēs (a derivative of a compound of G3844 and G3306); constant; Parmenas, a Christian: - Parmenas."]},{"k":"G3938","v":["πάροδος","parodos","par'-od-os","From G3844 adn G3598; a by road, that is, (actively) a route: - way."]},{"k":"G3939","v":["παροικέω","paroikeō","par-oy-keh'-o","From G3844 and G3611; to dwell near, that is, reside as a foreigner: - sojourn in, be a stranger."]},{"k":"G3940","v":["παροικία","paroikia","par-oy-kee'-ah","From G3941; foreign residence: - sojourning, X as strangers."]},{"k":"G3941","v":["πάροικος","paroikos","par'-oy-kos","From G3844 and G3624; having a home near, that is, (as noun) a by-dweller (alien resident): - foreigner, sojourn, stranger."]},{"k":"G3942","v":["παροιμία","paroimia","par-oy-mee'-ah","From a compound of G3844 and perhaps a derivative of G3633; apparently a state alongside of supposition, that is, (concretely) an adage; specifically an enigmatical or fictitious illustration: - parable, proverb."]},{"k":"G3943","v":["πάροινος","paroinos","par'-oy-nos","From G3844 and G3631; staying near wine, that is, tippling (a toper): - given to wine."]},{"k":"G3944","v":["παροίχομαι","paroichomai","par-oy'-khom-ahee","From G3844 and οίχομαι oichomai (to depart); to escape along, that is, be gone: - past."]},{"k":"G3945","v":["παρομοιάζω","paromoiazō","par-om-oy-ad'-zo","From G3946; to resemble: - be like unto."]},{"k":"G3946","v":["παρόμοιος","paromoios","par-om'-oy-os","From G3844 and G3664; alike nearly, that is, similar: - like."]},{"k":"G3947","v":["παροξύνω","paroxunō","par-ox-oo'-no","From G3844 and a derivative of G3691; to sharpen alongside, that is, (figuratively) to exasperate: - easily provoke, stir."]},{"k":"G3948","v":["παροξυσμός","paroxusmos","par-ox-oos-mos'","From G3947 (“paroxysm”); incitement (to good), or dispute (in anger): - contention, provoke unto."]},{"k":"G3949","v":["παροργίζω","parorgizō","par-org-id'-zo","From G3844 and G3710; to anger alongside, that is, enrage: - anger, provoke to wrath."]},{"k":"G3950","v":["παροργισμός","parorgismos","par-org-is-mos'","From G3949; rage: - wrath."]},{"k":"G3951","v":["παροτρύνω","parotrunō","par-ot-roo'-no","From G3844 and ὀτρύνω    otrunō (to spur); to urge along, that is, stimulate (to hostility): - stir up."]},{"k":"G3952","v":["παρουσία","parousia","par-oo-see'-ah","From the present participle of G3918; a being near, that is, advent (often, return; specifically of Christ to punish Jerusalem, or finally the wicked); (by implication) physical aspect: - coming, presence."]},{"k":"G3953","v":["παροψίς","paropsis","par-op-sis'","From G3844 and the base of G3795; a side dish (the receptacle): - platter."]},{"k":"G3954","v":["παῤῥησία","parrhēsia","par-rhay-see'-ah","From G3956 and a derivative of G4483; all out spokenness, that is, frankness, bluntness, publicity; by implication assurance: - bold (X -ly, -ness, -ness of speech), confidence, X freely, X openly, X plainly (-ness)."]},{"k":"G3955","v":["παῤῥησιάζομαι","parrhēsiazomai","par-hray-see-ad'-zom-ahee","Middle voice from G3954; to be frank in utterance, or confident in spirit and demeanor: - be (wax) bold, (preach, speak) boldly."]},{"k":"G3956","v":["πᾶς","pas","pas","Including all the forms of declension; apparently a primary word; all, any, every, the whole: - all (manner of, means) alway (-s), any (one), X daily, + ever, every (one, way), as many as, + no (-thing), X throughly, whatsoever, whole, whosoever."]},{"k":"G3957","v":["πάσχα","pascha","pas'-khah","Of Chaldee origin (compare [H6453]); the Passover (the meal, the day, the festival or the special sacrifices connected with it): - Easter, Passover."]},{"k":"G3958","v":["πάσχω, πάθω, πένθω","paschō    pathō    penthō","pas'-kho, path'-o, pen'-tho","Apparently a primary verb (the third form used only in certain tenses for it); to experience a sensation or impression (usually painful): - feel, passion, suffer, vex."]},{"k":"G3959","v":["Πάταρα","Patara","pat'-ar-ah","Probably of foreign origin; Patara, a place in Asia Minor: - Patara."]},{"k":"G3960","v":["πατάσσω","patassō","pat-as'-so","Probably a prolongation from G3817; to knock (gently or with a weapon or fatally): - smite, strike. Compare G5180."]},{"k":"G3961","v":["πατέω","pateō","pat-eh'-o","From a derivative probably of G3817 (meaning a “path”); to trample (literally or figuratively): - tread (down, under foot)."]},{"k":"G3962","v":["πατήρ","patēr","pat-ayr'","Apparently a primary word; a “father” (literally or figuratively, near or more remote): - father, parent."]},{"k":"G3963","v":["Πάτμος","Patmos","pat'-mos","Of uncertain derivation; Patmus, an islet in the Mediterranean: - Patmos."]},{"k":"G3964","v":["πατραλῴας","patralōas","pat-ral-o'-as","From G3962 and the same as the latter part of G3389; a parricide: - murderer of fathers."]},{"k":"G3965","v":["πατριά","patria","pat-ree-ah'","As if feminine of a derivative of G3962; paternal descent, that is, (concretely) a group of families or a whole race (nation): - family, kindred, lineage."]},{"k":"G3966","v":["πατριάρχης","patriarchēs","pat-ree-arkh'-ace","From G3965 and G757; a progenitor (“patriarch”): - patriarch."]},{"k":"G3967","v":["πατρικός","patrikos","pat-ree-kos'","From G3962; paternal, that is, ancestral: - of fathers."]},{"k":"G3968","v":["πατρίς","patris","pat-rece'","From G3962; a father land, that is, native town; (figuratively) heavenly home: - (own) country."]},{"k":"G3969","v":["Πατρόβας","Patrobas","pat-rob'-as","Perhaps a contraction for “patrobios” (a compound of G3962 and G979); father's life; Patrobas, a Christian: - Patrobas."]},{"k":"G3970","v":["πατροπαράδοτος","patroparadotos","pat-rop-ar-ad'-ot-os","From G3962 and a derivative of G3860 (in the sense of handing over or down); traditionary: - received by tradition from fathers."]},{"k":"G3971","v":["πατρῷος","patrōos","pat-ro'-os","From G3962; paternal, that is, hereditary: - of fathers."]},{"k":"G3972","v":["Παῦλος","Paulos","pow'-los","Of Latin origin; (little; but remotely from a derivative of G3973, meaning the same); Paulus, the name of a Roman and of an apostle: - Paul, Paulus."]},{"k":"G3973","v":["παύω","pauō","pow'-o","A primn. verb (“pause”); to stop (transitive or intransitive), that is, restrain, quit, desist, come to an end: - cease, leave, refrain."]},{"k":"G3974","v":["Πάφος","Paphos","paf'-os","Of uncertain derivative; Paphus, a place in Cyprus: - Paphos."]},{"k":"G3975","v":["παχύνω","pachunō","pakh-oo'-no","From a derivative of G4078 (meaning thick); to thicken, that is, (by implication) to fatten (figuratively stupefy or render callous): - wax gross."]},{"k":"G3976","v":["πέδη","pedē","ped'-ay","Ultimately from G4228; a shackle for the feet: - fetter."]},{"k":"G3977","v":["πεδινός","pedinos","ped-ee-nos'","From a derivative of G4228 (meaning the ground); level (as easy for the feet): - plain."]},{"k":"G3978","v":["πεζεύω","pezeuō","ped-zyoo'-o","From the same as G3979; to foot a journey, that is, travel by land: - go afoot."]},{"k":"G3979","v":["πεζῇ","pezē","ped-zay'","Dative feminine of a derivative of G4228 (as adverb); foot wise, that is, by walking: - a- (on) foot."]},{"k":"G3980","v":["πειθαρχέω","peitharcheō","pi-tharkh-eh'-o","From a compound of G3982 and G757; to be persuaded by a ruler, that is, (generally) to submit to authority; by analogy to conform to advice: - hearken, obey (magistrates)."]},{"k":"G3981","v":["πειθός","peithos","pi-thos'","From G3982; persuasive: - enticing."]},{"k":"G3982","v":["πείθω","peithō","pi'-tho","A primary verb; to convince (by argument, true or false); by analogy to pacify or conciliate (by other fair means); reflexively or passively to assent (to evidence or authority), to rely (by inward certainty): - agree, assure, believe, have confidence, be (wax) content, make friend, obey, persuade, trust, yield."]},{"k":"G3983","v":["πεινάω","peinaō","pi-nah'-o","From the same as G3993 (through the idea of pinching toil; “pine”); to famish (absolutely or comparatively); figuratively to crave: - be an hungered."]},{"k":"G3984","v":["πεῖρα","peira","pi'-rah","From the base of G4008 (through the idea of piercing); a test, that is, attempt, experience: - assaying, trial."]},{"k":"G3985","v":["πειράζω","peirazō","pi-rad'-zo","From G3984; to test (objectively), that is, endeavor, scrutinize, entice, discipline: - assay, examine, go about, prove, tempt (-er), try."]},{"k":"G3986","v":["πειρασμός","peirasmos","pi-ras-mos'","From G3985; a putting to proof (by experiment [of good], experience [of evil], solicitation, discipline or provocation); by implication adversity: - temptation, X try."]},{"k":"G3987","v":["πειράω","peiraō","pi-rah'-o","From G3984; to test (subjectively), that is, (reflexively) to attempt: - assay."]},{"k":"G3988","v":["πεισμονή","peismonē","pice-mon-ay'","From a presumed derivative of G3982; persuadableness, that is, credulity: - persuasion."]},{"k":"G3989","v":["πέλαγος","pelagos","pel'-ag-os","Of uncertain affinity; deep or open sea, that is, the main: - depth, sea."]},{"k":"G3990","v":["πελεκίζω","pelekizō","pel-ek-id'-zo","From a derivative of G4141 (meaning an axe); to chop off (the head), that is, truncate: - behead."]},{"k":"G3991","v":["πέμπτος","pemptos","pemp'-tos","From G4002; fifth: - fifth."]},{"k":"G3992","v":["πέμπω","pempō","pem'-po","Apparently a primary verb; to dispatch (from the subjective view or point of departure, whereas ἵημι hiēmi [as a stronger form of εἶμι eimi] refers rather to the objective point or terminus ad quem, and G4724 denotes properly the orderly motion involved), especially on a temporary errand; also to transmit, bestow, or wield: - send, thrust in."]},{"k":"G3993","v":["πένης","penēs","pen'-ace","From a primary “peno” (to toil for daily subsistence); starving, that is, indigent: - poor. Compare G4434."]},{"k":"G3994","v":["πενθερά","penthera","pen-ther-ah'","Feminine of G3995; a wife's mother: - mother in law, wife’s mother."]},{"k":"G3995","v":["πενθερός","pentheros","pen-ther-os'","Of uncertain affinity; a wife's father: - father in law."]},{"k":"G3996","v":["πενθέω","pentheō","pen-theh'-o","From G3997; to grieve (the feeling or the act): - mourn, (be-) wail."]},{"k":"G3997","v":["πένθος","penthos","pen'-thos","Strengthened from the alternate of G3958; grief: - mourning, sorrow."]},{"k":"G3998","v":["πεντιχρός","pentichros","pen-tikh-ros'","Prolonged from the base of G3993; necessitous: - poor."]},{"k":"G3999","v":["πεντακίς","pentakis","pen-tak-ece'","Multiplicative adverb from G4002; five times: - five times."]},{"k":"G4000","v":["πεντακισχίλιοι","pentakischilioi","pen-tak-is-khil'-ee-oy","From G3999 and G5507; five times a thousand: - five thousand."]},{"k":"G4001","v":["πεντακόσιοι","pentakosioi","pen-tak-os'-ee-oy","From G4002 and G1540; five hundred: - five hundred."]},{"k":"G4002","v":["πέντε","pente","pen'-teh","A primary number; “five”: - five."]},{"k":"G4003","v":["πεντεκαιδέκατος","pentekaidekatos","pen-tek-ahee-dek'-at-os","From G4002 and G2532 and G1182; five and tenth: - fifteenth."]},{"k":"G4004","v":["πεντήκοντα","pentēkonta","pen-tay'-kon-tah","Multiplicative of G4002; fifty: - fifty."]},{"k":"G4005","v":["πεντηκοστή","pentēkostē","pen-tay-kos-tay'","Feminine of G4004; fiftieth (G2250 being implied) from Passover, that is, the festival of “pentecost”: - Pentecost."]},{"k":"G4006","v":["πεποίθησις","pepoithēsis","pep-oy'-thay-sis","From the perfect of the alternate of G3958; reliance: - confidence, trust."]},{"k":"G4007","v":["περ","per","per","From the base of G4008; an enclitic particle significant of abundance (thoroughness), that is, emphasis; much, very or ever: - [whom-] soever."]},{"k":"G4008","v":["πέραν","peran","per'-an","Apparently the accusative case of an obsolete derivation of πείρω peirō (to “peirce”); through (as adverb or preposition), that is, across: - beyond, farther (other) side, over."]},{"k":"G4009","v":["πέρας","peras","per'-as","From the same as G4008; an extremity: - end, ut- (ter-) most part."]},{"k":"G4010","v":["Πέργαμος","Pergamos","per'-gam-os","From G4444; fortified; Pergamus, a place in Asia Minor: - Pergamos."]},{"k":"G4011","v":["Πέργη","Pergē","perg'-ay","Probably from the same as G4010; a tower; Perga, a place in Asia Minor: - Perga."]},{"k":"G4012","v":["περί","peri","per-ee'","From the base of G4008; properly through (all over), that is, around; figuratively with respect to; used in various applications, of place, cause or time (with the genitive case denoting the subject or occasion or superlative point; with the accusative case the locality, circuit, matter, circumstance or general period): - (there-) about, above, against, at, on behalf of, X and his company, which concern, (as) concerning, for, X how it will go with, ([there-, where-]) of, on, over, pertaining (to), for sake, X (e-) state, (as) touching, [where-] by (in), with. In compounds it retains substantially the same meaning of circuit (around), excess (beyond), or completeness (through)."]},{"k":"G4013","v":["περιάγω","periagō","per-ee-ag'-o","From G4012 and G71; to take around (as a companion); reflexively to walk around: - compass, go (round) about, lead about."]},{"k":"G4014","v":["περιαιρέω","periaireō","per-ee-ahee-reh'-o","From G4012 and G138 (including its alternate); to remove all around, that is, unveil, cast off (anchor); figuratively to expiate: - take away (up)."]},{"k":"G4015","v":["περιαστράπτω","periastraptō","per-ee-as-trap'-to","From G4012 and G797; to flash all around, that is, envelop in light: - shine round (about)."]},{"k":"G4016","v":["περιβάλλω","periballō","per-ee-bal'-lo","From G4012 and G906; to throw all around, that is, invest (with a palisade or with clothing): - array, cast about, clothe (-d me), put on."]},{"k":"G4017","v":["περιβλέπω","periblepō","per-ee-blep'-o","From G4012 and G991; to look all around: - look (round) about (on)."]},{"k":"G4018","v":["περιβόλαιον","peribolaion","per-ib-ol'-ah-yon","Neuter of a presumed derivative of G4016; something thrown around one, that is, a mantle, veil: - covering, vesture."]},{"k":"G4019","v":["περιδέω","perideō","per-ee-deh'-o","From G4012 and G1210; to bind around one, that is, enwrap: - bind about."]},{"k":"G4020","v":["περιεργάζομαι","periergazomai","per-ee-er-gad'-zom-ahee","From G4012 and G2038; to work all around, that is, bustle about (meddle): - be a busybody."]},{"k":"G4021","v":["περίεργος","periergos","per-ee'-er-gos","From G4012 and G2041; working all around, that is, officious (meddlesome, neuter plural magic): - busybody, curious arts."]},{"k":"G4022","v":["περιέρχομαι","perierchomai","per-ee-er'-khom-ahee","From G4012 and G2064 (including its alternate); to come all around, that is, stroll, vacillate, veer: - fetch a compass, vagabond, wandering about."]},{"k":"G4023","v":["περιέχω","periechō","per-ee-ekh'-o","From G4012 and G2192; to hold all around, that is, include, clasp (figuratively): - + astonished, contain, after [this manner]."]},{"k":"G4024","v":["περιζώννυμι","perizōnnumi","per-id-zone'-noo-mee","From G4012 and G2224; to gird all around, that is, (middle or passive voice) to fasten on one's belt (literally or figuratively): - gird (about, self)."]},{"k":"G4025","v":["περίθεσις","perithesis","per-ith'-es-is","From G4060; a putting all around, that is, decorating oneself with: - wearing."]},{"k":"G4026","v":["περιΐ́στημι","periistēmi","per-ee-is'-tay-mee","From G4012 and G2476; to stand all around, that is, (near) to be a bystander, or (aloof) to keep away from: - avoid, shun, stand by (round about)."]},{"k":"G4027","v":["περικάθαρμα","perikatharma","per-ee-kath'-ar-mah","From a compound of G4012 and G2508; something cleaned off all around, that is, refuse (figuratively): - filth."]},{"k":"G4028","v":["περικαλύπτω","perikaluptō","per-ee-kal-oop'-to","From G4012 and G2572; to cover all around, that is, entirely (the face, a surface): - blindfold, cover, overlay."]},{"k":"G4029","v":["περίκειμαι","perikeimai","per-ik'-i-mahee","From G4012 and G2749; to lie all around, that is, inclose, encircle, hamper (literally or figuratively): - be bound (compassed) with, hang about."]},{"k":"G4030","v":["περικεφαλαία","perikephalaia","per-ee-kef-al-ah'-yah","Feminine of a compound of G4012 and G2776; encirclement of the head, that is, a helmet: - helmet."]},{"k":"G4031","v":["περικρατής","perikratēs","per-ee-krat-ace'","From G4012 and G2904; strong all around, that is, a master (manager): - + come by."]},{"k":"G4032","v":["περικρύπτω","perikruptō","per-ee-kroop'-to","From G4012 and G2928; to conceal all around, that is, entirely: - hide."]},{"k":"G4033","v":["περικυκλόω","perikukloō","per-ee-koo-klo'-o","From G4012 and G2944; to encircle all around, that is, blockade completely: - compass round."]},{"k":"G4034","v":["περιλάμπω","perilampō","per-ee-lam'-po","From G4012 and G2989; to illuminate all around, that is, invest with a halo: - shine round about."]},{"k":"G4035","v":["περιλείπω","perileipō","per-ee-li'-po","From G4012 and G3007; to leave all around, that is, (passively) survive: - remain."]},{"k":"G4036","v":["περίλυπος","perilupos","per-il'-oo-pos","From G4012 and G3077; grieved all around, that is, intensely sad: - exceeding (very) sorry (-owful)."]},{"k":"G4037","v":["περιμένω","perimenō","per-ee-men'-o","From G4012 and G3306; to stay around, that is, await: - wait for."]},{"k":"G4038","v":["πέριξ","perix","per'-ix","Adverb from G4012; all around, that is, (as adjective) circumjacent: - round about."]},{"k":"G4039","v":["περιοικέω","perioikeō","per-ee-oy-keh'-o","From G4012 and G3611; to reside around, that is, be a neighbor: - dwell round about."]},{"k":"G4040","v":["περίοικος","perioikos","per-ee'-oy-kos","From G4012 and G3624; housed around, that is, neighboring (elliptically as noun): - neighbour."]},{"k":"G4041","v":["περιούσιος","periousios","per-ee-oo'-see-os","From the present participle feminine of a compound of G4012 and G1510; being beyond usual, that is, special (one’s own): - peculiar."]},{"k":"G4042","v":["περιοχή","periochē","per-ee-okh-ay'","From G4023; a being held around, that is, (concretely) a passage (of Scripture, as circumscribed): - place."]},{"k":"G4043","v":["περιπατέω","peripateō","per-ee-pat-eh'-o","From G4012 and G3961; to tread all around, that is, walk at large (especially as proof of ability); figuratively to live, deport oneself, follow (as a companion or votary): - go, be occupied with, walk (about)."]},{"k":"G4044","v":["περιπείρω","peripeirō","per-ee-pi'-ro","From G4012 and the base of G4008; to penetrate entirely, that is, transfix (figuratively): - pierce through."]},{"k":"G4045","v":["περιπίπτω","peripiptō","per-ee-pip'-to","From G4012 and G4098; to fall into something that is all around, that is, light among or upon, be surrounded with: - fall among (into)."]},{"k":"G4046","v":["περιποιέομαι","peripoieomai","per-ee-poy-eh'-om-ahee","Middle voice from G4012 and G4160; to make around oneself, that is, acquire (buy): - purchase."]},{"k":"G4047","v":["περιποίησις","peripoiēsis","per-ee-poy'-ay-sis","From G4046; acquisition (the act or the thing); by extension preservation: - obtain (-ing), peculiar, purchased, possession, saving."]},{"k":"G4048","v":["περιῤῥήγνυμι","perirrhēgnumi","per-ir-hrayg'-noo-mee","From G4012 and G4486; to tear all around, that is, completely away: - rend off."]},{"k":"G4049","v":["περισπάω","perispaō","per-ee-spah'-o","From G4012 and G4685; to drag all around, that is, (figuratively) to distract (with care): - cumber."]},{"k":"G4050","v":["περισσεία","perisseia","per-is-si'-ah","From G4052; surplusage, that is, superabundance: - abundance (-ant, [-ly]), superfluity."]},{"k":"G4051","v":["περίσσευμα","perisseuma","per-is'-syoo-mah","From G4052; a surplus, or superabundance: - abundance, that was left, over and above."]},{"k":"G4052","v":["περισσεύω","perisseuō","per-is-syoo'-o","From G4053; to superabound (in quantity or quality), be in excess, be superfluous; also (transitively) to cause to superabound or excel: - (make, more) abound, (have, have more) abundance, (be more) abundant, be the better, enough and to spare, exceed, excel, increase, be left, redound, remain (over and above)."]},{"k":"G4053","v":["περισσός","perissos","per-is-sos'","From G4012 (in the sense of beyond); superabundant (in quantity) or superior (in quality); by implication excessive; adverb (with G1537) violently; neuter (as noun) preeminence: - exceeding abundantly above, more abundantly, advantage, exceedingly, very highly, beyond measure, more, superfluous, vehement [-ly]."]},{"k":"G4054","v":["περισσότερον","perissoteron","per-is-sot'-er-on","Neuter of G4055 (as adverb); in a more superabundant way: - more abundantly, a great deal, far more."]},{"k":"G4055","v":["περισσότερος","perissoteros","per-is-sot'-er-os","Comparative of G4053; more superabundant (in number, degree or character): - more abundant, greater (much) more, overmuch."]},{"k":"G4056","v":["περισσοτέρως","perissoterōs","per-is-sot-er'-oce","Adverb from G4055; more superabundantly: - more abundant (-ly), X the more earnest, (more) exceedingly, more frequent, much more, the rather."]},{"k":"G4057","v":["περισσῶς","perissōs","per-is-soce'","Adverb from G4053; superabundantly: - exceedingly, out of measure, the more."]},{"k":"G4058","v":["περιστερά","peristera","per-is-ter-ah'","Of uncertain derivation; a pigeon: - dove, pigeon."]},{"k":"G4059","v":["περιτέμνω","peritemnō","per-ee-tem'-no","From G4012 and the base of G5114; to cut around, that is, (specifically) to circumcise: - circumcise."]},{"k":"G4060","v":["περιτίθημι","peritithēmi","per-ee-tith'-ay-mee","From G4012 and G5087; to place around; by implication to present: - bestow upon, hedge round about, put about (on, upon), set about."]},{"k":"G4061","v":["περιτομή","peritomē","per-it-om-ay'","From G4059; circumcision (the rite, the condition or the people, literally or figuratively): - X circumcised, circumcision."]},{"k":"G4062","v":["περιτρέπω","peritrepō","per-ee-trep'-o","From G4012 and the base of G5157; to turn around, that is, (mentally) to craze: - + make mad."]},{"k":"G4063","v":["περιτρέχω","peritrechō","per-ee-trekh'-o","From G4012 and G5143 (including its alternate); to run around, that is, traverse: - run through."]},{"k":"G4064","v":["περιφέρω","peripherō","per-ee-fer'-o","From G4012 and G5342; to convey around, that is, transport hither and thither: - bear (carry) about."]},{"k":"G4065","v":["περιφρονέω","periphroneō","per-ee-fron-eh'-o","From G4012 and G5426; to think beyond, that is, depreciate (contemn): - despise."]},{"k":"G4066","v":["περίχωρος","perichōros","per-ikh'-o-ros","From G4012 and G5561; around the region, that is, circumjacent (as noun, with G1093 implied, vicinity): - country (round) about, region (that lieth) round about."]},{"k":"G4067","v":["περίψωμα","peripsōma","per-ip'-so-mah","From a compound of G4012 and “psao” (to rub); something brushed all around, that is, off scrapings (figuratively scum): - offscouring."]},{"k":"G4068","v":["περπερεύομαι","perpereuomai","per-per-yoo'-om-ahee","Middle voice from πέρπερος perperos (braggart; perhaps by reduplication of the base of G4008); to boast: - vaunt itself."]},{"k":"G4069","v":["Περσίς","Persis","per-sece'","A Persian woman; Persis, a Christian female: - Persis."]},{"k":"G4070","v":["πέρυσι","perusi","per'-oo-si","Adverb from G4009; the by gone, that is, (as noun) last year: - + a year ago."]},{"k":"G4071","v":["πετεινόν","peteinon","pet-i-non'","Neuter of a derivative of G4072; a flying animal, that is, bird: - bird, fowl."]},{"k":"G4072","v":["πέτομαι, πετάομαι, πτάομαι","petomai    petaomai    ptaomai","pet'-om-ahee, pet-ah'-om-ahee, ptah'-om-ahee","Including the prolonged form (second form) and contraction (third form) of the middle voice of a primary verb; to fly: - fly (-ing)."]},{"k":"G4073","v":["πέτρα","petra","pet'-ra","Feminine of the same as G4074; a (mass of) rock (literally or figuratively): - rock."]},{"k":"G4074","v":["Πέτρος","Petros","pet'-ros","Apparently a primary word; a (piece of) rock (larger than G3037); as a name, Petrus, an apostle: - Peter, rock. Compare G2786."]},{"k":"G4075","v":["πετρώδης","petrōdēs","pet-ro'-dace","From G4073 and G1491; rock like, that is, rocky: - stony."]},{"k":"G4076","v":["πήγανον","pēganon","pay'-gan-on","From G4078; rue (from its thick or fleshy leaves): - rue."]},{"k":"G4077","v":["πηγή","pēgē","pay-gay'","Probably from G4078 (through the idea of gushing plumply); a fount (literally or figuratively), that is, source or supply (of water, blood, enjoyment), (not necessarily the original spring): - fountain, well."]},{"k":"G4078","v":["πήγνυμι","pēgnumi","payg'-noo-mee","A prolonged form of a primary verb (which in its simpler form occurs only as an alternate in certain tenses); to fix (“peg”), that is, (specifically) to set up (a tent): - pitch."]},{"k":"G4079","v":["πηδάλιον","pēdalion","pay-dal'-ee-on","Neuter of a (presumed) derivative of πηδόν pēdon (the blade of an oar; from the same as G3976); a “pedal”, that is, helm: - rudder."]},{"k":"G4080","v":["πηλίκος","pēlikos","pay-lee'-kos","A quantitative form (the feminine) of the base of G4225; how much (as indefinite), that is, in size or (figuratively) dignity: - how great (large)."]},{"k":"G4081","v":["πηλός","pēlos","pay-los'","Perhaps a primary word; clay: - clay."]},{"k":"G4082","v":["πήρα","pēra","pay'-rah","Of uncertain affinity; a wallet or leather pouch for food: - scrip."]},{"k":"G4083","v":["πῆχυς","pēchus","pay'-khoos","Of uncertain affinity; the fore arm, that is, (as a measure) a cubit: - cubit."]},{"k":"G4084","v":["πιάζω","piazō","pee-ad'-zo","Probably another form of G971; to squeeze, that is, seize (gently by the hand [press], or officially [arrest], or in hunting [capture]): - apprehend, catch, lay hand on, take. Compare G4085."]},{"k":"G4085","v":["πιέζω","piezō","pee-ed'-zo","Another form for G4084; to pack: - press down."]},{"k":"G4086","v":["πιθανολογία","pithanologia","pith-an-ol-og-ee'-ah","From a compound of a derivative of G3982 and G3056; persuasive language: - enticing words."]},{"k":"G4087","v":["πικραίνω","pikrainō","pik-rah'ee-no","From G4089; to embitter (literally or figuratively): - be (make) bitter."]},{"k":"G4088","v":["πικρία","pikria","pik-ree'-ah","From G4089; acridity (especially poison), literally or figuratively: - bitterness."]},{"k":"G4089","v":["πικρός","pikros","pik-ros'","Perhaps from G4078 (through the idea of piercing); sharp (pungent), that is, acrid (literally or figuratively): - bitter."]},{"k":"G4090","v":["πικρῶς","pikrōs","pik-roce'","Adverb from G4089; bitterly, that is, (figuratively) violently: - bitterly."]},{"k":"G4091","v":["Πιλάτος","Pilatos","pil-at'-os","Of Latin origin; close pressed, that is, firm; Pilatus, a Roman: - Pilate."]},{"k":"G4092","v":["πίμπρημι","pimprēmi","pim'-pray-mee","A reduplicated and prolonged form of a primary word, πρέω preō, (which occurs only as an alternate in certain tenses); to fire, that is, burn (figuratively and passively become inflamed with fever): - be (X should have) swollen."]},{"k":"G4093","v":["πινακίδιον","pinakidion","pin-ak-id'-ee-on","Diminutive of G4094; a tablet (for writing on): - writing table."]},{"k":"G4094","v":["πίναξ","pinax","pin'-ax","Apparently a form of G4109; a plate: - charger, platter."]},{"k":"G4095","v":["πίνω, πίω, πόω","pinō    piō    poō","pee'-no, pee'-o, po'-o","The first is a prolonged form of the second, which (together with the third form) occurs only as an alternate in certain tenses; to imbibe (literally or figuratively): - drink."]},{"k":"G4096","v":["πιότης","piotēs","pee-ot'-ace","From πίων piōn (fat; perhaps akin to the alternate of G4095 through the idea of repletion); plumpness, that is, (by implication) richness (oiliness): - fatness."]},{"k":"G4097","v":["πιπράσκω, πράω","pipraskō    praō","pip-ras'-ko, prah'-o","The first is a reduplicated and prolonged form of the second (which occurs only as an alternate in certain tenses); contracted from περάω peraō (to traverse; from the base of G4008); to traffic (by travelling), that is, dispose of as merchandise or into slavery (literally or figuratively): - sell."]},{"k":"G4098","v":["πίπτω, πέτω","piptō    petō","pip'-to, pet'-o","The first is a reduplicated and contracted form of the second (which occurs only as an alternate in certain tenses); probably akin to G4072 through the idea of alighting; to fall (literally of figuratively): - fail, fall (down), light on."]},{"k":"G4099","v":["Πισιδία","Pisidia","pis-id-ee'-ah","Probably of foreign origin; Pisidia, a region of Asia Minor: - Pisidia."]},{"k":"G4100","v":["πιστεύω","pisteuō","pist-yoo'-o","From G4102; to have faith (in, upon, or with respect to, a person or thing), that is, credit; by implication to entrust (especially one’s spiritual well being to Christ): - believe (-r), commit (to trust), put in trust with."]},{"k":"G4101","v":["πιστικός","pistikos","pis-tik-os'","From G4102; trustworthy, that is, genuine (unadulterated): - spike-[nard]."]},{"k":"G4102","v":["πίστις","pistis","pis'-tis","From G3982; persuasion, that is, credence; moral conviction (of religious truth, or the truthfulness of God or a religious teacher), especially reliance upon Christ for salvation; abstractly constancy in such profession; by extension the system of religious (Gospel) truth itself: - assurance, belief, believe, faith, fidelity."]},{"k":"G4103","v":["πιστός","pistos","pis-tos'","From G3982; objectively trustworthy; subjectively trustful: - believe (-ing, -r), faithful (-ly), sure, true."]},{"k":"G4104","v":["πιστόω","pistoō","pis-to'-o","From G4103; to assure: - assure of."]},{"k":"G4105","v":["πλανάω","planaō","plan-ah'-o","From G4106; to (properly cause to) roam (from safety, truth, or virtue): - go astray, deceive, err, seduce, wander, be out of the way."]},{"k":"G4106","v":["πλάνη","planē","plan'-ay","Feminine of G4108 (as abstraction); objectively fraudulence; subjectively a straying from orthodoxy or piety: - deceit, to deceive, delusion, error."]},{"k":"G4107","v":["πλανήτης","planētēs","plan-ay'-tace","From G4108; a rover (“planet”), that is, (figuratively) an erratic teacher: - wandering."]},{"k":"G4108","v":["πλάνος","planos","plan'-os","Of uncertain affinity; roving (as a tramp), that is, (by implication) an impostor or misleader: - deceiver, seducing."]},{"k":"G4109","v":["πλάξ","plax","plax","From G4111; a moulding board, that is, flat surface (“plate”, or tablet, literally or figuratively): - table."]},{"k":"G4110","v":["πλάσμα","plasma","plas'-mah","From G4111; something moulded: - thing formed."]},{"k":"G4111","v":["πλάσσω","plassō","plas'-so","A primary verb; to mould, that is, shape or fabricate: - form."]},{"k":"G4112","v":["πλαστός","plastos","plas-tos'","From G4111; moulded, that is, (by implication) artificial or (figuratively) fictitious (false): - feigned."]},{"k":"G4113","v":["πλατεῖα","plateia","plat-i'-ah","Feminine of G4116; a wide “plat” or “place”, that is, open square: - street."]},{"k":"G4114","v":["πλάτος","platos","plat'-os","From G4116; width: - breadth."]},{"k":"G4115","v":["πλατύνω","platunō","plat-oo'-no","From G4116; to widen (literally or figuratively): - make broad, enlarge."]},{"k":"G4116","v":["πλατύς","platus","plat-oos'","From G4111; spread out “flat” (“plot”), that is, broad: - wide."]},{"k":"G4117","v":["πλέγμα","plegma","pleg'-mah","From G4120; a plait (of hair): - broidered hair."]},{"k":"G4118","v":["πλεῖστος","pleistos","plice'-tos","Irregular superlative of G4183; the largest number or very large: - very great, most."]},{"k":"G4119","v":["πλείων, πλεῖον, πλέον","pleiōn    pleion    pleon","pli'-own, pli'-on, pleh'-on","Comparative of G4183; more in quantity, number, or quality; also (in plural) the major portion: - X above, + exceed, more excellent, further, (very) great (-er), long (-er), (very) many, greater (more) part, + yet but."]},{"k":"G4120","v":["πλέκω","plekō","plek'-o","A primary word; to twine or braid: - plait."]},{"k":"G4121","v":["πλεονάζω","pleonazō","pleh-on-ad'-zo","From G4119; to do, make or be more, that is, increase (transitively or intransitively); by extension to superabound: - abound, abundant, make to increase, have over."]},{"k":"G4122","v":["πλεονεκτέω","pleonekteō","pleh-on-ek-teh'-o","From G4123; to be covetous, that is, (by implication) to over reach: - get an advantage, defraud, make a gain."]},{"k":"G4123","v":["πλεονέκτης","pleonektēs","pleh-on-ek'-tace","From G4119 and G2192; holding (desiring) more, that is, eager for gain (avaricious, hence a defrauder): - covetous."]},{"k":"G4124","v":["πλεονεξία","pleonexia","pleh-on-ex-ee'-ah","From G4123; avarice, that is, (by implication) fraudulency, extortion: - covetous (-ness) practices, greediness."]},{"k":"G4125","v":["πλευρά","pleura","plyoo-rah'","Of uncertain affinity; a rib, that is, (by extension) side: - side."]},{"k":"G4126","v":["πλέω, πλεύω","pleō    pleuō","pleh'-o, plyoo'-o","The first is another form for the second which is used as an alternate in certain tenses; probably a form of G4150 (through the idea of plunging through the water); to pass in a vessel: - sail. See also G4130."]},{"k":"G4127","v":["πληγή","plēgē","play-gay'","From G4141; a stroke; by implication a wound; figuratively a calamity: - plague, stripe, wound (-ed)."]},{"k":"G4128","v":["πλῆθος","plēthos","play'-thos","From G4130; a fulness, that is, a large number, throng, populace: - bundle, company, multitude."]},{"k":"G4129","v":["πληθύνω","plēthunō","play-thoo'-no","From another form of G4128; to increase (transitively or intransitively): - abound, multiply."]},{"k":"G4130","v":["πλήθω","plēthō","play'-tho, pleh'-o,","A prolonged form of a primary word πλέω pleō (which appears only as an alternate in certain tenses and in the reduplicated form of πίμπλημι pimplēmi to “fill” (literally or figuratively [imbue, influence, supply]); specifically to fulfil (time): - accomplish, full (. . . come), furnish."]},{"k":"G4131","v":["πλήκτης","plēktēs","plake'-tace","From G4141; a smiter, that is, pugnacious (quarrelsome): - striker."]},{"k":"G4132","v":["πλημμύρα","plēmmura","plame-moo'-rah","Prolongation from G4130; flood tide, that is, (by analogy) a freshet: - flood."]},{"k":"G4133","v":["πλήν","plēn","plane","From G4119; moreover (besides), that is, albeit, save that, rather, yet: - but (rather), except, nevertheless, notwithstanding, save, than."]},{"k":"G4134","v":["πλήρης","plērēs","play'-race","From G4130; replete, or covered over; by analogy complete: - full."]},{"k":"G4135","v":["πληροφορέω","plērophoreō","play-rof-or-eh'-o","From G4134 and G5409; to carry out fully (in evidence), that is, completely assure (or convince), entirely accomplish: - most surely believe, fully know (persuade), make full proof of."]},{"k":"G4136","v":["πληροφορία","plērophoria","play-rof-or-ee'-ah","From G4135; entire confidence: - (full) assurance."]},{"k":"G4137","v":["πληρόω","plēroō","play-ro'-o","From G4134; to make replete, that is, (literally) to cram (a net), level up (a hollow), or (figuratively) to furnish (or imbue, diffuse, influence), satisfy, execute (an office), finish (a period or task), verify (or coincide with a prediction), etc.: - accomplish, X after, (be) complete, end, expire, fill (up), fulfil, (be, make) full (come), fully preach, perfect, supply."]},{"k":"G4138","v":["πλήρωμα","plērōma","play'-ro-mah","From G4137; repletion or completion, that is, (subjectively) what fills (as contents, supplement, copiousness, multitude), or (objectively) what is filled (as container, performance, period): - which is put in to fill up, piece that filled up, fulfilling, full, fulness."]},{"k":"G4139","v":["πλησίον","plēsion","play-see'-on","Neuter of a derivative of πέλας pelas (near); (adverb) close by; as noun, a neighbor, that is, fellow (as man, countryman, Christian or friend): - near, neighbour."]},{"k":"G4140","v":["πλησμονή","plēsmonē","place-mon-ay'","From a presumed derivative of G4130; a filling up, that is, (figuratively) gratification: - satisfying."]},{"k":"G4141","v":["πλήσσω","plēssō","place'-so","Apparently another form of G4111 (through the idea of flattening out); to pound, that is, (figuratively) to inflict with (calamity): - smite. Compare G5180."]},{"k":"G4142","v":["πλοιάριον","ploiarion","ploy-ar'-ee-on","Neuter of a presumed derivative of G4143; a boat: - boat, little (small) ship."]},{"k":"G4143","v":["πλοῖον","ploion","ploy'-on","From G4126; a sailer, that is, vessel: - ship (-ping)."]},{"k":"G4144","v":["πλόος","ploos","plo'-os","From G4126; a sail, that is, navigation: - course, sailing, voyage."]},{"k":"G4145","v":["πλούσιος","plousios","ploo'-see-os","From G4149; wealthy; figuratively abounding with: - rich."]},{"k":"G4146","v":["πλουσίως","plousiōs","ploo-see'-oce","From G4145; copiously: - abundantly, richly."]},{"k":"G4147","v":["πλουτέω","plouteō","ploo-teh'-o","From G4148; to be (or become) wealthy (literally or figuratively): - be increased with goods, (be made, wax) rich."]},{"k":"G4148","v":["πλουτίζω","ploutizō","ploo-tid'-zo","From G4149; to make wealthy (figuratively): - en- (make) rich."]},{"k":"G4149","v":["πλοῦτος","ploutos","ploo'-tos","From the base of G4130; wealth (as fulness), that is, (literally) money, possessions, or (figuratively) abundance, richness, (specifically) valuable bestowment: - riches."]},{"k":"G4150","v":["πλύνω","plunō","ploo'-no, ploo'-o","A prolonged form of an obsolete πλύω pluō ploo'-o (to “flow”); to “plunge”, that is, launder clothing: - wash. Compare G3068, G3538."]},{"k":"G4151","v":["πνεῦμα","pneuma","pnyoo'-mah","From G4154; a current of air, that is, breath (blast) or a breeze; by analogy or figuratively a spirit, that is, (human) the rational soul, (by implication) vital principle, mental disposition, etc., or (superhuman) an angel, daemon, or (divine) God, Christ’s spirit, the Holy spirit: - ghost, life, spirit (-ual, -ually), mind. Compare G5590."]},{"k":"G4152","v":["πνευματικός","pneumatikos","phyoo-mat-ik-os'","From G4151; non-carnal, that is, (humanly) ethereal (as opposed to gross), or (daemoniacally) a spirit (concretely), or (divinely) supernatural, regenerate, religious: - spiritual. Compare G5591."]},{"k":"G4153","v":["πνευματικῶς","pneumatikōs","pnyoo-mat-ik-oce'","Adverb from G4152; non-physically, that is, divinely, figuratively: - spiritually."]},{"k":"G4154","v":["πνέω","pneō","pneh'-o","A primary word; to breathe hard, that is, breeze: - blow. Compare G5594."]},{"k":"G4155","v":["πνίγω","pnigō","pnee'-go","Strengthened from G4154; to wheeze, that is, (causative by implication) to throttle or strangle (drown): - choke, take by the throat."]},{"k":"G4156","v":["πνικτός","pniktos","pnik-tos'","From G4155; throttled, that is, (neuter concretely) an animal choked to death (not bled): - strangled."]},{"k":"G4157","v":["πνοή","pnoē","pno-ay'","From G4154; respiration, a breeze: - breath, wind."]},{"k":"G4158","v":["ποδήρης","podērēs","pod-ay'-race","From G4228 and another element of uncertain affinity; a dress (G2066 implied) reaching the ankles: - garment down to the foot."]},{"k":"G4159","v":["πόθεν","pothen","poth'-en","From the base of G4213 with enclitic adverb of origin; from which (as interrogitive) or what (as relative) place, state, source or cause: - whence."]},{"k":"G4160","v":["ποιέω","poieō","poy-eh'-o","Apparently a prolonged form of an obsolete primary; to make or do (in a very wide application, more or less direct): - abide, + agree, appoint, X avenge, + band together, be, bear, + bewray, bring (forth), cast out, cause, commit, + content, continue, deal, + without any delay, (would) do (-ing), execute, exercise, fulfil, gain, give, have, hold, X journeying, keep, + lay wait, + lighten the ship, make, X mean, + none of these things move me, observe, ordain, perform, provide, + have purged, purpose, put, + raising up, X secure, shew, X shoot out, spend, take, tarry, + transgress the law, work, yield. Compare G4238."]},{"k":"G4161","v":["ποίημα","poiēma","poy'-ay-mah","From G4160; a product, that is, fabric (literally or figuratively): - thing that is made, workmanship."]},{"k":"G4162","v":["ποίησις","poiēsis","poy'-ay-sis","From G4160; action, that is, performance (of the law): - deed."]},{"k":"G4163","v":["ποιητής","poiētēs","poy-ay-tace'","From G4160; a performer; specifically a “poet”: - doer, poet."]},{"k":"G4164","v":["ποικίλος","poikilos","poy-kee'-los","Of uncertain derivation; motley, that is, various in character: - divers, manifold."]},{"k":"G4165","v":["ποιμαίνω","poimainō","poy-mah'ee-no","From G4166; to tend as a shepherd (or figuratively superviser): - feed (cattle), rule."]},{"k":"G4166","v":["ποιμήν","poimēn","poy-mane'","Of uncertain affinity; a shepherd (literally or figuratively): - shepherd, pastor."]},{"k":"G4167","v":["ποίμνη","poimnē","poym'-nay","Contracted from G4165; a flock (literally or figuratively): - flock, fold."]},{"k":"G4168","v":["ποίμνιον","poimnion","poym'-nee-on","Neuter of a presumed derivative of G4167; a flock, that is, (figuratively) group (of believers): - flock."]},{"k":"G4169","v":["ποῖος","poios","poy'-os","From the base of G4226 and G3634; individualizing interrogitive (of character) what sort of, or (of number) which one: - what (manner of), which."]},{"k":"G4170","v":["πολεμέω","polemeō","pol-em-eh'-o","From G4171; to be (engaged) in warfare, that is, to battle (literally or figuratively): - fight, (make) war."]},{"k":"G4171","v":["πόλεμος","polēmos","pol'-em-os","From πέλομαι pelomai (to bustle); warfare (literally or figuratively; a single encounter or a series): - battle, fight, war."]},{"k":"G4172","v":["πόλις","polis","pol'-is","Probably from the same as G4171, or perhaps from G4183; a town (properly with walls, of greater or less size): - city."]},{"k":"G4173","v":["πολιτάρχης","politarchēs","pol-it-ar'-khace","From G4172 and G757; a town officer, that is, magistrate: - ruler of the city."]},{"k":"G4174","v":["πολιτεία","politeia","pol-ee-ti'-ah","From G4177 (“polity”); citizenship; concretely a community: - commonwealth, freedom."]},{"k":"G4175","v":["πολίτευμα","politeuma","pol-it'-yoo-mah","From G4176; a community, that is, (abstractly) citizenship (figuratively): - conversation."]},{"k":"G4176","v":["πολιτεύομαι","politeuomai","pol-it-yoo'-om-ahee","Middle voice of a derivative of G4177; to behave as a citizen (figuratively): - let conversation be, live."]},{"k":"G4177","v":["πολίτης","politēs","pol-ee'-tace","From G4172; a townsman: - citizen."]},{"k":"G4178","v":["πολλάκις","pollakis","pol-lak'-is","Multiplicative adverb from G4183; many times, that is, frequently: - oft (-en, -en-times, -times)."]},{"k":"G4179","v":["πολλαπλασίων","pollaplasiōn","pol-lap-las-ee'-ohn","From G4183 and probably a derivative of G4120; manifold, that is, (neuter as noun) very much more: - manifold more."]},{"k":"G4180","v":["πολυλογία","polulogia","pol-oo-log-ee'-ah","From a compound of G4183 and G3056; loquacity, that is, prolixity: - much speaking."]},{"k":"G4181","v":["πολυμέρως","polumerōs","pol-oo-mer'-oce","Adverb from a compound of G4183 and G3313; in many portions, that is, variously as to time and agency (piecemeal): - at sundry times."]},{"k":"G4182","v":["πολυποίκιλος","polupoikilos","pol-oo-poy'-kil-os","From G4183 and G4164; much variegated, that is, multifarious: - manifold."]},{"k":"G4183","v":["πολύς, πολλός","polus    polos","pol-oos'","Including the forms from the alternate “pollos”; (singular) much (in any respect) or (plural) many; neuter (singular) as adverb largely; neuter (plural) as adverb or noun often, mostly, largely: - abundant, + altogether, common, + far (passed, spent), (+ be of a) great (age, deal, -ly, while), long, many, much, oft (-en [-times]), plenteous, sore, straitly. Compare G4118, G4119."]},{"k":"G4184","v":["πολύσπλαγχνος","polusplagchnos","pol-oo'-splankh-nos","From G4183 and G4698 (figuratively), extremely compassionate: - very pitiful."]},{"k":"G4185","v":["πολυτελής","polutelēs","pol-oo-tel-ace'","From G4183 and G5056; extremely expensive: - costly, very precious, of great price."]},{"k":"G4186","v":["πολύτιμος","polutimos","pol-oot'-ee-mos","From G4183 and G5092; extremely valuable: - very costly, of great price."]},{"k":"G4187","v":["πολυτρόπως","polutropōs","pol-oot-rop'-oce","Adverb from a compound of G4183 and G5158; in many ways, that is, variously as to method or form: - in divers manners."]},{"k":"G4188","v":["πόμα","poma","pom'-ah","From the alternate of G4095; a beverage: - drink."]},{"k":"G4189","v":["πονηρία","ponēria","pon-ay-ree'-ah","From G4190; depravity, that is, (specifically) malice; plural (concretely) plots, sins: - iniquity, wickedness."]},{"k":"G4190","v":["πονηρός","ponēros","pon-ay-ros'","From a derivative of G4192; hurtful, that is, evil (properly in effect or influence, and thus differing from G2556, which refers rather to essential character, as well as from G4550, which indicates degeneracy from original virtue); figuratively calamitous; also (passively) ill, that is, diseased; but especially (morally) culpable, that is, derelict, vicious, facinorous; neuter (singular) mischief, malice, or (plural) guilt; masculine (singular) the devil, or (plural) sinners: - bad, evil, grievous, harm, lewd, malicious, wicked (-ness). See also G4191."]},{"k":"G4191","v":["πονηρότερος","ponēroteros","pon-ay-rot'-er-os","Comparative of G4190; more evil: - more wicked."]},{"k":"G4192","v":["πόνος","ponos","pon'-os","From the base of G3993; toil, that is, (by implication) anguish: - pain."]},{"k":"G4193","v":["Ποντικός","Pontikos","pon-tik-os'","From G4195; a Pontican, that is, native of Pontus: - born in Pontus."]},{"k":"G4194","v":["Πόντιος","Pontios","pon'-tee-os","Of Latin origin; apparently bridged; Pontius, a Roman: - Pontius."]},{"k":"G4195","v":["Πόντος","Pontos","pon'-tos","A sea; Pontus, a region of Asia Minor: - Pontus."]},{"k":"G4196","v":["Πόπλιος","Poplios","pop'-lee-os","Of Latin origin; apparently “popular”; Poplius (that is, Publius), a Roman: - Publius."]},{"k":"G4197","v":["πορεία","poreia","por-i'-ah","From G4198; travel (by land); figuratively (plural) proceedings, that is, career: - journey [-ing], ways."]},{"k":"G4198","v":["πορεύομαι","poreuomai","por-yoo'-om-ahee","Middle voice from a derivative of the same as G3984; to traverse, that is, travel (literally or figuratively; especially to remove [figuratively die], live, etc.): - depart, go (away, forth, one’s way, up), (make a, take a) journey, walk."]},{"k":"G4199","v":["πορθέω","portheō","por-theh'-o","Prolonged version of πέρθω porthō (to sack); to ravage (figuratively): - destroy, waste."]},{"k":"G4200","v":["πορισμός","porismos","por-is-mos'","From a derivative of πόρος poros (a way, that is, means); furnishing (procuring), that is, (by implication) money getting (acquisition): - gain."]},{"k":"G4201","v":["Πόρκιος","Porkios","por'-kee-os","Of Latin origin; apparently swinish; Porcius, a Roman: - Porcius."]},{"k":"G4202","v":["πορνεία","porneia","por-ni'-ah","From G4203; harlotry (including adultery and incest); figuratively idolatry: - fornication."]},{"k":"G4203","v":["πορνεύω","porneuō","porn-yoo'-o","From G4204; to act the harlot, that is, (literally) indulge unlawful lust (of either sex), or (figuratively) practise idolatry: - commit (fornication)."]},{"k":"G4204","v":["πόρνη","pornē","por'-nay","Feminine of G4205; a strumpet; figuratively an idolater: - harlot, whore."]},{"k":"G4205","v":["πόρνος","pornos","por'-nos","From πέρνημι pernēmi (to sell; akin to the base of G4097); a (male) prostitute (as venal), that is, (by analogy) a debauchee (libertine): - fornicator, whoremonger."]},{"k":"G4206","v":["πόῤῥω","porrhō","por'-rho","Adverb from G4253; forwards, that is, at a distance: - far, a great way off. See also G4207."]},{"k":"G4207","v":["πόῤῥωθεν","porrhōthen","por'-rho-then","From G4206 with adverbial enclitic of source; from far, or (by implication) at a distance, that is, distantly: - afar off."]},{"k":"G4208","v":["ποῤῥωτέρω","porrhōterō","por-rho-ter'-o","Adverb comparative of G4206; farther, that is, a greater distance: - further."]},{"k":"G4209","v":["πορφύρα","porphura","por-foo'-rah","Of Latin origin; the “purple” mussel, that is, (by implication) the red blue color itself, and finally, a garment dyed with it: - purple."]},{"k":"G4210","v":["πορφυροῦς","porphurous","por-foo-rooce'","From G4209; purpureal, that is, bluish red: - purple."]},{"k":"G4211","v":["πορφυρόπωλις","porphuropōlis","por-foo-rop'-o-lis","Feminine of a compound of G4209 and G4453; a female trader in purple cloth: - seller of purple."]},{"k":"G4212","v":["ποσάκις","posakis","pos-ak'-is","Multiplicative from G4214; how many times: - how oft (-en)."]},{"k":"G4213","v":["πόσις","posis","pos'-is","From the alternate of G4095; a drinking (the act), that is, (concretely) a draught: - drink."]},{"k":"G4214","v":["πόσος","posos","pos'-os","From an obsolete “pos” (who, what) and G3739; interrogitive pronoun (of amount) how much (large, long or [plural] many): - how great (long, many), what."]},{"k":"G4215","v":["ποταμός","potamos","pot-am-os'","Probably from a derivative of the alternate of G4095 (compare G4224); a current, brook or freshet (as drinkable), that is, running water: - flood, river, stream, water."]},{"k":"G4216","v":["ποταμοφόρητος","potamophorētos","pot-am-of-or'-ay-tos","From G4215 and a derivative of G5409; river borne, that is, overwhelmed by a stream: - carried away of the flood."]},{"k":"G4217","v":["ποταπός","potapos","pot-ap-os'","Apparently from G4219 and the base of G4226; interrogitive whatever, that is, of what possible sort: - what (manner of)."]},{"k":"G4218","v":["ποτέ","pote","pot-eh'","From the base of G4225 and G5037; indefinite adverb, at some time, ever: - afore- (any, some-) time (-s), at length (the last), (+ n-) ever, in the old time, in time past, once, when."]},{"k":"G4219","v":["πότε","pote","pot'-eh","From the base of G4226 and G5037; interrogitive adverb, at what time: - + how long, when."]},{"k":"G4220","v":["πότερον","poteron","pot'-er-on","Neuter of a comparative of the base of G4226; interrogitive as adverb, which (of two), that is, is it this or that: - whether."]},{"k":"G4221","v":["ποτήριον","potērion","pot-ay'-ree-on","Neuter of a derivative of the alternate of G4095; a drinking vessel; by extension the contents thereof, that is, a cupful (draught); figuratively a lot or fate: - cup."]},{"k":"G4222","v":["ποτίζω","potizō","pot-id'-zo","From a derivative of the alternate of G4095; to furnish drink, irrigate: - give (make) to drink, feed, water."]},{"k":"G4223","v":["Ποτίολοι","Potioloi","pot-ee'-ol-oy","Of Latin origin; little wells, that is, mineral springs; Potioli (that is, Puteoli), a place in Italy: - Puteoli."]},{"k":"G4224","v":["πότος","potos","pot'-os","From the alternate of G4095; a drinking bout or carousal: - banqueting."]},{"k":"G4225","v":["πού","pou","poo","Genitive case of πός pos, an indefinite pronoun    (some) otherwise obsolete (compare G4214); as adverb of place, somewhere, that is, nearly: - about, a certain place."]},{"k":"G4226","v":["ποῦ","pou","poo","Genitive case of πός pos, an interrogitive pronoun, (what) otherwise obsolete (perhaps the same as G4225 used with the rising slide of inquiry); as adverb of place; at (by implication to) what locality: - where, whither."]},{"k":"G4227","v":["Πούδης","Poudēs","poo'-dace","Of Latin origin; modest; Pudes (that is, Pudens), a Christian: - Pudens."]},{"k":"G4228","v":["πούς","pous","pooce","A primary word; a “foot” (figuratively or literally): - foot (-stool)."]},{"k":"G4229","v":["πρᾶγμα","pragma","prag'-mah","From G4238; a deed; by implication an affair; by extension an object (material): - business, matter, thing, work."]},{"k":"G4230","v":["πραγματεία","pragmateia","prag-mat-i'-ah","From G4231; a transaction, that is, negotiation: - affair."]},{"k":"G4231","v":["πραγματεύομαι","pragmateuomai","prag-mat-yoo'-om-ahee","From G4229; to busy oneself with, that is, to trade: - occupy."]},{"k":"G4232","v":["πραιτώριον","praitōrion","prahee-to'-ree-on","Of Latin origin; the praetorium or governor’s court room (sometimes including the whole edifice and camp): - (common, judgment) hall (of judgment), palace, praetorium."]},{"k":"G4233","v":["πράκτωρ","praktōr","prak'-tore","From a derivative of G4238; a practiser, that is, (specifically) an official collector: - officer."]},{"k":"G4234","v":["πρᾶξις","praxis","prax'-is","From G4238; practice, that is, (concretely) an act; by extension a function: - deed, office, work."]},{"k":"G4235","v":["πρᾴος","praos","prah'-os","A form of G4239, used in certain parts; gentle, that is, humble: - meek."]},{"k":"G4236","v":["πρᾳότης","praotēs","prah-ot'-ace","From G4235; gentleness; by implication humility: - meekness."]},{"k":"G4237","v":["πρασιά","prasia","pras-ee-ah'","Perhaps from πράσον prason (a leek, and so an onion patch); a garden plot, that is, (by implication of regular beds) a row (repeated in plural by Hebraism to indicate an arrangement): - in ranks."]},{"k":"G4238","v":["πράσσω","prassō","pras'-so","A primary verb; to “practise”, that is, perform repeatedly or habitually (thus differing from G4160, which properly refers to a single act); by implication to execute, accomplish, etc.; specifically to collect (dues), fare (personally): - commit, deeds, do, exact, keep, require, use arts."]},{"k":"G4239","v":["πραΰ́ς","praus","prah-ooce'","Apparently a primary word; mild, that is, (by implication) humble: - meek. See also G4235."]},{"k":"G4240","v":["πραΰ́της","prautēs","prah-oo'-tace","From G4239; mildness, that is, (by implication) humility: - meekness."]},{"k":"G4241","v":["πρέπω","prepō","prep'-o","Apparently a primary verb; to tower up (be conspicuous), that is, (by implication) to be suitable or proper (third person singular present indicative, often used impersonally, it is fit or right): - become, comely."]},{"k":"G4242","v":["πρεσβεία","presbeia","pres-bi'-ah","From G4243; seniority (eldership), that is, (by implication) an embassy (concretely ambassadors): - ambassage, message."]},{"k":"G4243","v":["πρεσβεύω","presbeuō","pres-byoo'-o","From the base of G4245; to be a senior, that is, (by implication) act as a representative (figuratively preacher): - be an ambassador."]},{"k":"G4244","v":["πρεσβυτέριον","presbuterion","pres-boo-ter'-ee-on","Neuter of a presumed derivative of G4245; the order of elders, that is, (specifically) Israelite Sanhedrim or Christian “presbytery”: - (estate of) elder (-s), presbytery."]},{"k":"G4245","v":["πρεσβύτερος","presbuteros","pres-boo'-ter-os","Comparative of πρέσβυς presbus (elderly); older; as noun, a senior; specifically an Israelite Sanhedrist (also figuratively, member of the celestial council) or Christian “presbyter”: - elder (-est), old."]},{"k":"G4246","v":["πρεσβύτης","presbutēs","pres-boo'-tace","From the same as G4245; an old man: - aged (man), old man."]},{"k":"G4247","v":["πρεσβύτις","presbutis","pres-boo'-tis","Feminine of G4246; an old woman: - aged woman."]},{"k":"G4248","v":["πρηνής","prēnēs","pray-nace'","From G4253; leaning (falling) forward (“prone”), that is, head foremost: - headlong."]},{"k":"G4249","v":["πρίζω","prizō","prid'-zo","A strengthened form of a primary word πρίω priō, (to saw); to saw in two: - saw asunder."]},{"k":"G4250","v":["πρίν","prin","prin","Adverb from G4253; prior, sooner: - before (that), ere."]},{"k":"G4251","v":["Πρίσκα","Priska","pris'-kah","Of Latin origin; feminine of Priscus, ancient; Priska, a Christian woman: - Prisca. See also G4252."]},{"k":"G4252","v":["Πρίσκιλλα","Priscilla","pris'-cil-lah","Diminutive of G4251; Priscilla (that is, little Prisca), a Christian woman: - Priscilla."]},{"k":"G4253","v":["πρό","pro","pro","A primary preposition; “fore”, that is, in front of, prior (figuratively superior) to. In compounds it retains the same significations: - above, ago, before, or ever. In compounds it retains the same significations."]},{"k":"G4254","v":["προάγω","proagō","pro-ag'-o","From G4253 and G71; to lead forward (magisterially); intransitively to precede (in place or time [participle previous]): - bring (forth, out), go before."]},{"k":"G4255","v":["προαιρέομαι","proaireomai","pro-ahee-reh'-om-ahee","From G4253 and G138; to choose for oneself before another thing (prefer), that is, (by implication) to propose (intend): - purpose."]},{"k":"G4256","v":["προαιτιάομαι","proaitiaomai","pro-ahee-tee-ah'-om-ahee","From G4253 and a derivative of G156; to accuse already, that is, previously charge: - prove before."]},{"k":"G4257","v":["προακούω","proakouō","pro-ak-oo'-o","From G4253 and G191; to hear already, that is, anticipate: - hear before."]},{"k":"G4258","v":["προαμαρτάνω","proamartanō","pro-am-ar-tan'-o","From G4253 and G264; to sin previously (to conversion): - sin already, heretofore sin."]},{"k":"G4259","v":["προαύλιον","proaulion","pro-ow'-lee-on","Neuter of a presumed compound of G4253 and G833; a fore-court, that is, vestibule (alley way): - porch."]},{"k":"G4260","v":["προβαίνω","probainō","prob-ah'ee-no","From G4253 and the base of G939; to walk forward, that is, advance (literally or in years): - + be of a great age, go farther (on), be well stricken."]},{"k":"G4261","v":["προβάλλω","proballō","prob-al'-lo","From G4253 and G906; to throw forward, that is, push to the front, germinate: - put forward, shoot forth."]},{"k":"G4262","v":["προβατικος","probatikos","prob-at-ik-os'","From G4263; relating to sheep, that is, (a gate) through which they were led into Jerusalem: - sheep (market)."]},{"k":"G4263","v":["πρόβατον","probaton","prob'-at-on","Properly the neuter of a presumed derivative of G4260; something that walks forward (a quadruped), that is, (specifically) a sheep (literally or figuratively): - sheep ([-fold])."]},{"k":"G4264","v":["προβιβάζω","probibazō","prob-ib-ad'-zo","From G4253 and a reduplicated form of G971; to force forward, that is, bring to the front, instigate: - draw, before instruct."]},{"k":"G4265","v":["προβλέπω","problepō","prob-lep'-o","From G4253 and G991; to look out beforehand, that is, furnish in advance: - provide."]},{"k":"G4266","v":["προγίνομαι","proginomai","prog-in'-om-ahee","From G4253 and G1096; to be already, that is, have previously transpired: - be past."]},{"k":"G4267","v":["προγινώσκω","proginōskō","prog-in-oce'-ko","From G4253 and G1097; to know beforehand, that is, foresee: - foreknow (ordain), know (before)."]},{"k":"G4268","v":["πρόγνωσις","prognōsis","prog'-no-sis","From G4267; forethought: - foreknowledge."]},{"k":"G4269","v":["πρόγονος","progonos","prog'-on-os","From G4266; an ancestor, (grand-) parent: - forefather, parent."]},{"k":"G4270","v":["προγράφω","prographō","prog-raf'-o","From G4253 and G1125; to write previously; figuratively to announce, prescribe: - before ordain, evidently set forth, write (afore, aforetime)."]},{"k":"G4271","v":["πρόδηλος","prodēlos","prod'-ay-los","From G4253 and G1212; plain before all men, that is, obvious: - evident, manifest (open) beforehand."]},{"k":"G4272","v":["προδίδωμι","prodidōmi","prod-id'-o-mee","From G4253 and G1325; to give before the other party has given: - first give."]},{"k":"G4273","v":["προδότης","prodotēs","prod-ot'-ace","From G4272 (in the sense of giving forward into another’s [the enemy’s] hands); a surrender: - betrayer, traitor."]},{"k":"G4274","v":["πρόδρομος","prodromos","prod'-rom-os","From the alternate of G4390; a runner ahead, that is, scout (figuratively precursor): - forerunner."]},{"k":"G4275","v":["προείδω","proeidō","pro-i'-do","From G4253 and G1492; foresee: - foresee, saw before."]},{"k":"G4276","v":["προελπίζω","proelpizō","pro-il-pid'-zo","From G4253 and G1679; to hope in advance of other confirmation: - first trust."]},{"k":"G4277","v":["προέπω","proepō","pro-ep'-o","From G4253 and G2036; to say already, to predict: - forewarn, say (speak, tell) before. Compare G4280."]},{"k":"G4278","v":["προενάρχομαι","proenarchomai","pro'-en-ar'-khom-ahee","From G4253 and G1728; to commence already: - begin (before)."]},{"k":"G4279","v":["προεπαγγέλλομαι","proepaggellomai","pro-ep-ang-ghel'-lom-ahee","Middle voice from G4253 and G1861; to promise of old: - promise before."]},{"k":"G4280","v":["προερέω","proereō","pro-er-eh'-o","From G4253 and G2046; used as alternate of G4277; to say already, predict: - foretell, say (speak, tell) before."]},{"k":"G4281","v":["προέρχομαι","proerchomai","pro-er'-khom-ahee","From G4253 and G2064 (including its alternate); to go onward, precede (in place or time): - go before (farther, forward), outgo, pass on."]},{"k":"G4282","v":["προετοιμάζω","proetoimazō","pro-et-oy-mad'-zo","From G4253 and G2090; to fit up in advance (literally or figuratively): - ordain before, prepare afore."]},{"k":"G4283","v":["προευαγγελίζομαι","proeuaggelizomai","pro-yoo-ang-ghel-id'-zom-ahee","Middle voice from G4253 and G2097; to announce glad news in advance: - preach before the gospel."]},{"k":"G4284","v":["προέχομαι","proechomai","pro-ekh-om-ahee","Middle voice from G4253 and G2192; to hold oneself before others, that is, (figuratively) to excel: - be better."]},{"k":"G4285","v":["προηγέομαι","proēgeomai","pro-ay-geh'-om-ahee","From G4253 and G2233; to lead the way for others, that is, show deference: - prefer."]},{"k":"G4286","v":["πρόθεσις","prothesis","proth'-es-is","From G4388; a setting forth, that is, (figuratively) proposal (intention); specifically the show bread (in the Temple) as exposed before God: - purpose, shew [-bread]."]},{"k":"G4287","v":["προθέσμιος","prothesmios","proth-es'-mee-os","From G4253 and a derivative of G5087; fixed beforehand, that is, (feminine with G2250 implied) a designated day: - time appointed."]},{"k":"G4288","v":["προθυμία","prothumia","proth-oo-mee'-ah","From G4289; predisposition, that is, alacrity: - forwardness of mind, readiness (of mind), ready (willing) mind."]},{"k":"G4289","v":["πρόθυμος","prothumos","proth'-oo-mos","From G4253 and G2372; forward in spirit, that is, predisposed; neuter (as noun) alacrity: - ready, willing."]},{"k":"G4290","v":["προθύμως","prothumōs","proth-oo'-moce","Adverb from G4289; with alacrity: - willingly."]},{"k":"G4291","v":["προΐ́στημι","proistēmi","pro-is'-tay-mee","From G4253 and G2476; to stand before, that is, (in rank) to preside, or (by implication) to practise: - maintain, be over, rule."]},{"k":"G4292","v":["προκαλέομαι","prokaleomai","prok-al-eh'-om-ahee","Middle voice from G4253 and G2564; to call forth to oneself (challenge), that is, (by implication) to irritate: - provoke."]},{"k":"G4293","v":["προκαταγγέλλω","prokataggellō","prok-at-ang-ghel'-lo","From G4253 and G2605; to announce beforehand, that is, predict, promise: - foretell, have notice (shew) before."]},{"k":"G4294","v":["προκαταρτίζω","prokatartizō","prok-at-ar-tid'-zo","From G4253 and G2675; to prepare in advance: - make up beforehand."]},{"k":"G4295","v":["πρόκειμαι","prokeimai","prok'-i-mahee","From G4253 and G2749; to lie before the view, that is, (figuratively) to be present (to the mind), to stand forth (as an example or reward): - be first, set before (forth)."]},{"k":"G4296","v":["προκηρύσσω","prokērussō","prok-ay-rooce'-so","From G4253 and G2784; to herald (that is, proclaim) in advance: - before (first) preach."]},{"k":"G4297","v":["προκοπή","prokopē","prok-op-ay'","From G4298; progress, that is, advancement (subjectively or objectively): - furtherance, profit."]},{"k":"G4298","v":["προκόπτω","prokoptō","prok-op'-to","From G4253 and G2875; to drive forward (as if by beating), that is, (figuratively and intransitively) to advance (in amount, to grow; in time, to be well along): - increase, proceed, profit, be far spent, wax."]},{"k":"G4299","v":["πρόκριμα","prokrima","prok'-ree-mah","From a compound of G4253 and G2919; a prejudgment (prejudice), that is, prepossession: - prefer one before another."]},{"k":"G4300","v":["προκυρόω","prokuroō","prok-oo-ro'-o","From G4253 and G2964; to ratify previously: - confirm before."]},{"k":"G4301","v":["προλαμβάνω","prolambanō","prol-am-ban'-o","From G4253 and G2983; to take in advance, that is, (literally) eat before others have an opportunity; (figuratively) to anticipate, surprise: - come aforehand, overtake, take before."]},{"k":"G4302","v":["προλέγω","prolegō","prol-eg'-o","From G4253 and G3004; to say beforehand, that is, predict, forewarn: - foretell, tell before."]},{"k":"G4303","v":["προμαρτύρομαι","promarturomai","prom-ar-too'-rom-ahee","From G4253 and G3143; to be a witness in advance, that is, predict: - testify beforehand."]},{"k":"G4304","v":["προμελετάω","promeletaō","prom-el-et-ah'-o","From G4253 and G3191; to premeditate: - meditate before."]},{"k":"G4305","v":["προμεριμνάω","promerimnaō","prom-er-im-nah'-o","From G4253 and G3309; to care (anxiously) in advance: - take thought beforehand."]},{"k":"G4306","v":["προνοέω","pronoeō","pron-o-eh'-o","From G4253 and G3539; to consider in advance, that is, look out for beforehand (active voice by way of maintenance for others; middle voice by way of circumspection for oneself): - provide (for)."]},{"k":"G4307","v":["πρόνοια","pronoia","pron'-oy-ah","From G4306; forethought, that is, provident care or supply: - providence, provision."]},{"k":"G4308","v":["προοράω","prooraō","pro-or-ah'-o","From G4253 and G3708; to behold in advance, that is, (active voice) to notice (another) previously, or (middle voice) to keep in (one’s own) view: - foresee, see before."]},{"k":"G4309","v":["προορίζω","proorizō","pro-or-id'-zo","From G4253 and G3724; to limit in advance, that is, (figuratively) predetermine: - determine before, ordain, predestinate."]},{"k":"G4310","v":["προπάσχω","propaschō","prop-as'-kho","From G4253 and G3958; to undergo hardship previously: - suffer before."]},{"k":"G4311","v":["προπέμπω","propempō","prop-em'-po","From G4253 and G3992; to send forward, that is, escort or aid in travel: - accompany, bring (forward) on journey (way), conduct forth."]},{"k":"G4312","v":["προπετής","propetēs","prop-et-ace'","From a compound of G4253 and G4098; falling forward, that is, headlong (figuratively precipitate): - heady, rash [-ly]."]},{"k":"G4313","v":["προπορεύομαι","proporeuomai","prop-or-yoo'-om-ahee","From G4253 and G4198; to precede (as guide or herald): - go before."]},{"k":"G4314","v":["πρός","pros","pros","A strengthened form of G4253; a preposition of direction; forward to, that is, toward (with the genitive case the side of, that is, pertaining to; with the dative case by the side of, that is, near to; usually with the accusative case the place, time, occasion, or respect, which is the destination of the relation, that is, whither or for which it is predicated): - about, according to, against, among, at, because of, before, between, ([where-]) by, for, X at thy house, in, for intent, nigh unto, of, which pertain to, that, to (the end that), + together, to ([you]) -ward, unto, with (-in). In compounds it denotes essentially the same applications, namely, motion towards, accession to, or nearness at."]},{"k":"G4315","v":["προσάββατον","prosabbaton","pros-ab'-bat-on","From G4253 and G4521; a fore sabbath, that is, the sabbath eve: - day before the sabbath. Compare G3904."]},{"k":"G4316","v":["προσαγορεύω","prosagoreuō","pros-ag-or-yoo'-o","From G4314 and a derivative of G58 (meaning to harangue); to address, that is, salute by name: - call."]},{"k":"G4317","v":["προσάγω","prosagō","pros-ag'-o","From G4314 and G71; to lead towards, that is, (transitively) to conduct near (summon, present), or (intransitively) to approach: - bring, draw near,"]},{"k":"G4318","v":["προσαγωγή","prosagōgē","pros-ag-ogue-ay'","From G4317 (compare G72); admission: - access."]},{"k":"G4319","v":["προσαιτέω","prosaiteō","pros-ahee-teh'-o","From G4314 and G154; to ask repeatedly (importune), that is, solicit: - beg."]},{"k":"G4320","v":["προσαναβαίνω","prosanabainō","pros-an-ab-ah'ee-no","From G4314 and G305; to ascend farther, that is, be promoted (take an upper (more honorable) seat): - go up."]},{"k":"G4321","v":["προσαναλίσκω","prosanaliskō","pros-an-al-is'-ko","From G4314 and G355; to expend further: - spend."]},{"k":"G4322","v":["προσαναπληρόω","prosanaplēroō","pros-an-ap-lay-ro'-o","From G4314 and G378; to fill up further, that is, furnish fully: - supply."]},{"k":"G4323","v":["προσανατίθημι","prosanatithēmi","pros-an-at-ith'-ay-mee","From G4314 and G394; to lay up in addition, that is, (middle voice and figuratively) to impart or (by implication) to consult: - in conference add, confer."]},{"k":"G4324","v":["προσαπειλέω","prosapeileō","pros-ap-i-leh'-o","From G4314 and G546; to menace additionally: - threaten further."]},{"k":"G4325","v":["προσδαπανάω","prosdapanaō","pros-dap-an-ah'-o","From G4314 and G1159; to expend additionally: - spend more."]},{"k":"G4326","v":["προσδέομαι","prosdeomai","pros-deh'-om-ahee","From G4314 and G1189; to require additionally, that is, want further: - need."]},{"k":"G4327","v":["προσδέχομαι","prosdechomai","pros-dekh'-om-ahee","From G4314 and G1209; to admit (to intercourse, hospitality, credence or (figuratively) endurance); by implication to await (with confidence or patience): - accept, allow, look (wait) for, take."]},{"k":"G4328","v":["προσδοκάω","prosdokaō","pros-dok-ah'-o","From G4314 and δοκεύω dokeuō (to watch); to anticipate (in thought, hope or fear); by implication to await: - (be in) expect (-ation), look (for), when looked, tarry, wait for."]},{"k":"G4329","v":["προσδοκία","prosdokia","pros-dok-ee'-ah","From G4328; apprehension (of evil); by implication infliction anticipated: - expectation, looking after."]},{"k":"G4330","v":["προσεάω","proseaō","pros-eh-ah'-o","From G4314 and G1439; to permit further progress: - suffer."]},{"k":"G4331","v":["προσεγγίζω","proseggizō","pros-eng-ghid'-zo","From G4314 and G1448; to approach near: - come nigh."]},{"k":"G4332","v":["προσεδρεύω","prosedreuō","pros-ed-ryoo'-o","From a compound of G4314 and the base of G1476; to sit near, that is, attend as a servant: - wait at."]},{"k":"G4333","v":["προσεργάζομαι","prosergazomai","pros-er-gad'-zom-ahee","From G4314 and G2038; to work additionally, that is, (by implication) acquire besides: - gain."]},{"k":"G4334","v":["προσέρχομαι","proserchomai","pros-er'-khom-ahee","From G4314 and G2064 (including its alternate); to approach, that is, (literally) come near, visit, or (figuratively) worship, assent to: - (as soon as he) come (unto), come thereunto, consent, draw near, go (near, to, unto)."]},{"k":"G4335","v":["προσευχή","proseuchē","pros-yoo-khay'","From G4336; prayer (worship); by implication an oratory (chapel): - X pray earnestly, prayer."]},{"k":"G4336","v":["προσεύχομαι","proseuchomai","pros-yoo'-khom-ahee","From G4314 and G2172; to pray to God, that is, supplicate, worship: - pray (X earnestly, for), make prayer."]},{"k":"G4337","v":["προσέχω","prosechō","pros-ekh'-o","From G4314 and G2192; (figuratively) to hold the mind (G3563 implied) towards, that is, pay attention to, be cautious about, apply oneself to, adhere to: - (give) attend (-ance, -ance at, -ance to, unto), beware, be given to, give (take) heed (to, unto) have regard."]},{"k":"G4338","v":["προσηλόω","prosēloō","pros-ay-lo'-o","From G4314 and a derivative of G2247; to peg to, that is, spike fast: - nail to."]},{"k":"G4339","v":["προσήλυτος","prosēlutos","pros-ah'-loo-tos","From the alternate of G4334; an arriver from a foreign region, that is, (specifically) an acceder (convert) to Judaism (“proselyte”): - proselyte."]},{"k":"G4340","v":["πρόσκαιρος","proskairos","pros'-kahee-ros","From G4314 and G2540; for the occasion only, that is, temporary: - dur- [eth] for awhile, endure for a time, for a season, temporal."]},{"k":"G4341","v":["προσκαλέομαι","proskaleomai","pros-kal-eh'-om-ahee","Middle voice from G4314 and G2564; to call toward oneself, that is, summon, invite: - call (for, to, unto)."]},{"k":"G4342","v":["προσκαρτερέω","proskartereō","pros-kar-ter-eh'-o","From G4314 and G2594; to be earnest towards, that is, (to a thing) to persevere, be constantly diligent, or (in a place) to attend assiduously all the exercises, or (to a person) to adhere closely to (as a servitor): - attend (give self) continually (upon), continue (in, instant in, with), wait on (continually)."]},{"k":"G4343","v":["προσκαρτέρησις","proskarterēsis","pros-kar-ter'-ay-sis","From G4342; persistency: - perseverance."]},{"k":"G4344","v":["προσκεφάλαιον","proskephalaion","pros-kef-al'-ahee-on","Neuter of a presumed compound of G4314 and G2776; something for the head, that is, a cushion: - pillow."]},{"k":"G4345","v":["προσκληρόω","prosklēroō","pros-klay-ro'-o","From G4314 and G2820; to give a common lot to, that is, (figuratively) to associate with: - consort with."]},{"k":"G4346","v":["πρόσκλισις","prosklisis","pros'-klis-is","From a compound of G4314 and G2827; a leaning towards, that is, (figuratively) proclivity (favoritism): - partiality."]},{"k":"G4347","v":["προσκολλάω","proskollaō","pros-kol-lay'-o","From G4314 and G2853; to glue to, that is, (figuratively) to adhere: - cleave, join (self)."]},{"k":"G4348","v":["πρόσκομμα","proskomma","pros'-kom-mah","From G4350; a stub, that is, (figuratively) occasion of apostasy: - offence, stumbling (-block,[-stone])."]},{"k":"G4349","v":["προσκοπή","proskopē","pros-kop-ay'","From G4350; a stumbling, that is, (figuratively and concretely) occasion of sin: - offence."]},{"k":"G4350","v":["προσκόπτω","proskoptō","pros-kop'-to","From G4314 and G2875; to strike at, that is, surge against (as water); specifically to stub on, that is, trip up (literally or figuratively): - beat upon, dash, stumble (at)."]},{"k":"G4351","v":["προσκυλίω","proskuliō","pros-koo-lee'-o","From G4314 and G2947; to roll towards, that is, block against: - roll (to)."]},{"k":"G4352","v":["προσκυνέω","proskuneō","pros-koo-neh'-o","From G4314 and probably a derivative of G2965 (meaning to kiss, like a dog licking his master’s hand); to fawn or crouch to, that is, (literally or figuratively) prostrate oneself in homage (do reverence to, adore): - worship."]},{"k":"G4353","v":["προσκυνητής","proskunētēs","pros-koo-nay-tace'","From G4352; an adorer: - worshipper."]},{"k":"G4354","v":["προσλαλέω","proslaleō","pros-lal-eh'-o","From G4314 and G2980; to talk to, that is, converse with: - speak to (with)."]},{"k":"G4355","v":["προσλαμβάνω","proslambanō","pros-lam-ban'-o","From G4314 and G2983; to take to oneself, that is, use (food), lead (aside), admit (to friendship or hospitality): - receive, take (unto)."]},{"k":"G4356","v":["πρόσληψις","proslēpsis","pros'-lape-sis","From G4355; admission: - receiving."]},{"k":"G4357","v":["προσμένω","prosmenō","pros-men'-o","From G4314 and G3306; to stay further, that is, remain in a place, with a person; figuratively to adhere to, persevere in: - abide still, be with, cleave unto, continue in (with)."]},{"k":"G4358","v":["προσορμίζω","prosormizō","pros-or-mid'-zo","From G4314 and a derivative of the same as G3730 (meaning to tie (anchor) or lull); to moor to, that is, (by implication) land at: - draw to the shore."]},{"k":"G4359","v":["προσοφείλω","prosopheilō","pros-of-i'-lo","From G4314 and G3784; to be indebted additionally: - over besides."]},{"k":"G4360","v":["προσοχθίζω","prosochthizō̄","pros-okh-thid'-zo","From G4314 and a form of ὀχθέω ochtheō (to be vexed with something irksome); to feel indignant at: - be grieved with."]},{"k":"G4361","v":["πρόσπεινος","prospeinos","pros'-pi-nos","From G4314 and the same as G3983; hungering further, that is, intensely hungry: - very hungry."]},{"k":"G4362","v":["προσπήγνυμι","prospēgnumi","pros-payg'-noo-mee","From G4314 and G4078; to fasten to, that is, (specifically) to impale (on a cross): - crucify."]},{"k":"G4363","v":["προσπίπτω","prospiptō","pros-pip'-to","From G4314 and G4098; to fall towards, that is, (gently) prostrate oneself (in supplication or homage), or (violently) to rush upon (in storm): - beat upon, fall (down) at (before)."]},{"k":"G4364","v":["προσποιέομαι","prospoieomai","pros-poy-eh'-om-ahee","Middle voice from G4314 and G4160; to do forward for oneself, that is, pretend (as if about to do a thing): - make as though."]},{"k":"G4365","v":["προσπορεύομαι","prosporeuomai","pros-por-yoo'-om-ahee","From G4314 and G4198; to journey towards, that is, approach (not the same as G4313): - go before."]},{"k":"G4366","v":["προσρήγνυμι","prosrēgnumi","pros-rayg'-noo-mee","From G4314 and G4486; to tear towards, that is, burst upon (as a tempest or flood): - beat vehemently against (upon)."]},{"k":"G4367","v":["προστάσσω","prostassō","pros-tas'-so","From G4314 and G5021; to arrange towards, that is, (figuratively) enjoin: - bid, command."]},{"k":"G4368","v":["προστάτις","prostatis","pros-tat'-is","Feminine of a derivative of G4291; a patroness, that is, assistant: - succourer."]},{"k":"G4369","v":["προστίθημι","prostithēmi","pros-tith'-ay-mee","From G4314 and G5087; to place additionally, that is, lay beside, annex, repeat: - add, again, give more, increase, lay unto, proceed further, speak to any more."]},{"k":"G4370","v":["προστρέχω","prostrechō","pros-trekh'-o","From G4314 and G5143 (including its alternate); to run towards, that is, hasten to meet or join: - run (thither to, to)."]},{"k":"G4371","v":["προσφάγιον","prosphagion","pros-fag'-ee-on","Neuter of a presumed derivative of a compound of G4314 and G5315; something eaten in addition to bread, that is, a relish (specifically fish; compare G3795): - meat."]},{"k":"G4372","v":["πρόσφατος","prosphatos","pros'-fat-os","From G4253 and a derivative of G4969; previously (recently) slain (fresh), that is, (figuratively) lately made: - new."]},{"k":"G4373","v":["προσφάτως","prosphatōs","pros-fat'-oce","Adverb from G4372; recently: - lately."]},{"k":"G4374","v":["προσφέρω","prospherō","pros-fer'-o","From G4314 and G5342 (including its alternate); to bear towards, that is, lead to, tender (especially to God), treat: - bring (to, unto), deal with, do, offer (unto, up), present unto, put to."]},{"k":"G4375","v":["προσφιλής","prosphilēs","pros-fee-lace'","From a presumed compound of G4314 and G5368; friendly towards, that is, acceptable: - lovely."]},{"k":"G4376","v":["προσφορά","prosphora","pros-for-ah'","From G4374; presentation; concretely an oblation (bloodless) or sacrifice: - offering (up)."]},{"k":"G4377","v":["προσφωνέω","prosphōneō","pros-fo-neh'-o","From G4314 and G5455; to sound towards, that is, address, exclaim, summon: - call unto, speak (un-) to."]},{"k":"G4378","v":["πρόσχυσις","proschusis","pros'-khoo-sis","From a compound of G4314 and χέω cheō (to pour); a shedding forth, that is, affusion: - sprinkling."]},{"k":"G4379","v":["προσψαύω","prospsauo","pros-psow'-o","From G4314 and ψαύω psauō (to touch); to impinge, that is, lay a finger on (in order to relieve): - touch."]},{"k":"G4380","v":["προσωποληπτέω","prosōpolēpteō","pros-o-pol-ape-teh'-o","From G4381; to favor an individual, that is, show partiality: - have respect to persons."]},{"k":"G4381","v":["προσωπολήπτης","prosōpolēptēs","pros-o-pol-ape'-tace","From G4383 and G2983; an accepter of a face (individual), that is, (specifically) one exhibiting partiality: - respecter of persons."]},{"k":"G4382","v":["προσωποληψία","prosōpolēpsia","pros-o-pol-ape-see'-ah","From G4381; partiality, that is, favoritism: - respect of persons."]},{"k":"G4383","v":["πρόσωπον","prosōpon","pros'-o-pon","From G4314 and ὤψ ōps (the visage; from G3700); the front (as being towards view), that is, the countenance, aspect, appearance, surface; by implication presence, person: - (outward) appearance, X before, countenance, face, fashion, (men’s) person, presence."]},{"k":"G4384","v":["προτάσσω","protassō","prot-as'-so","From G4253 and G5021; to pre-arrange, that is, prescribe: - before appoint."]},{"k":"G4385","v":["προτείνω","proteinō","prot-i'-no","From G4253 and τείνω teinō (to stretch); to protend, that is, tie prostrate (for scourging): - bind."]},{"k":"G4386","v":["πρότερον","proteron","prot'-er-on","Neuter of G4387 as adverb (with or without the article); previously: - before, (at the) first, former."]},{"k":"G4387","v":["πρότερος","proteros","prot'-er-os","Comparative of G4253; prior or previous: - former."]},{"k":"G4388","v":["προτίθεμαι","protithemai","prot-ith'-em-ahee","Middle voice from G4253 and G5087; to place before, that is, (for oneself) to exhibit; (to oneself) to propose (determine): - purpose, set forth."]},{"k":"G4389","v":["προτρέπομαι","protrepomai","prot-rep'-om-ahee","Middle voice from G4253 and the base of G5157; to turn forward for oneself, that is, encourage: - exhort."]},{"k":"G4390","v":["προτρέχω","protrechō","prot-rekh'-o","From G4253 and G5143 (including its alternate); to run forward, that is, outstrip, precede: - outrun, run before."]},{"k":"G4391","v":["προΰπάρχω","prouparchō","pro-oop-ar'-kho","From G4253 and G5225; to exist before, that is, (adverbially) to be or do something previously: - + be before (-time)."]},{"k":"G4392","v":["πρόφασις","prophasis","prof'-as-is","From a compound of G4253 and G5316; an outward showing, that is, pretext: - cloke, colour, pretence, show."]},{"k":"G4393","v":["προφέρω","propherō","prof-er'-o","From G4253 and G5342; to bear forward, that is, produce: - bring forth."]},{"k":"G4394","v":["προφητεία","prophēteia","prof-ay-ti'-ah","From G4396 (“prophecy”); prediction (scriptural or other): - prophecy, prophesying."]},{"k":"G4395","v":["προφητεύω","prophēteuō","prof-ate-yoo'-o","From G4396; to foretell events, divine, speak under inspiration, exercise the prophetic office: - prophesy."]},{"k":"G4396","v":["προφήτης","prophētēs","prof-ay'-tace","From a compound of G4253 and G5346; a foreteller (“prophet”); by analogy an inspired speaker; by extension a poet: - prophet."]},{"k":"G4397","v":["προφητικός","prophētikos","prof-ay-tik-os'","From G4396; pertaining to a foreteller (“prophetic”): - of prophecy, of the prophets."]},{"k":"G4398","v":["προφῆτις","prophētis","prof-ay'-tis","Feminine of G4396; a female foreteller or an inspired woman: - prophetess."]},{"k":"G4399","v":["προφθάνω","prophthanō","prof-than'-o","From G4253 and G5348; to get an earlier start of, that is, anticipate: - prevent."]},{"k":"G4400","v":["προχειρίζομαι","procheirizomai","prokh-i-rid'-zom-ahee","Middle voice from G4253 and a derivative of G5495; to handle for oneself in advance, that is, (figuratively) to purpose: - choose, make."]},{"k":"G4401","v":["προχειροτονέω","procheirotoneō","prokh-i-rot-on-eh'-o","From G4253 and G5500; to elect in advance: - choose before."]},{"k":"G4402","v":["Πρόχορος","Prochoros","prokh'-or-os","From G4253 and G5525; before the dance; Prochorus, a Christian: - Prochorus."]},{"k":"G4403","v":["πρύμνα","prumna","proom'-nah","Feminine of πρυμνύς prumnus (hindmost); the stern of a ship: - hinder part, stern."]},{"k":"G4404","v":["πρωΐ́","prōi","pro-ee'","Adverb from G4253; at dawn; by implication the day break watch: - early (in the morning), (in the) morning."]},{"k":"G4405","v":["πρωΐ́α","prōia","pro-ee'-ah","Feminine of a derivative of G4404 as noun; day dawn: - early, morning."]},{"k":"G4406","v":["πρώΐμος","prōimos","pro'-ee-mos","From G4404; dawning, that is, (by analogy) autumnal (showering, the first of the rainy season): - early."]},{"k":"G4407","v":["πρωΐνός","prōinos","pro-ee-nos'","From G4404; pertaining to the dawn, that is, matutinal: - morning."]},{"k":"G4408","v":["πρώρα","prōra","pro'-ra","Feminine of a presumed derivation of G4253 as noun; the prow, that is, forward part of a vessel: - forepart (-ship)."]},{"k":"G4409","v":["πρωτεύω","prōteuō","prote-yoo'-o","From G4413; to be first (in rank or influence): - have the preeminence."]},{"k":"G4410","v":["πρωτοκαθεδρία","prōtokathedria","pro-tok-ath-ed-ree'-ah","From G4413 and G2515; a sitting first (in the front row), that is, preeminence in council: - chief (highest, uppermost) seat."]},{"k":"G4411","v":["πρωτοκλισία","prōtoklisia","pro-tok-lis-ee'-ah","From G4413 and G2828; a reclining first (in the place of honor) at the dinner bed, that is, preeminence at meals: - chief (highest, uppermost) room."]},{"k":"G4412","v":["πρῶτον","prōton","pro'-ton","Neuter of G4413 as an adverb (with or without G3588); firstly (in time, place, order, or importance): - before, at the beginning, chiefly, (at, at the) first (of all)."]},{"k":"G4413","v":["πρῶτος","prōtos","pro'-tos","Contracted superlative of G4253; foremost (in time, place, order or importance): - before, beginning, best, chief (-est), first (of all), former."]},{"k":"G4414","v":["πρωτοστάτης","prōtostatēs","pro-tos-tat'-ace","From G4413 and G2476; one standing first in the ranks, that is, a captain (champion): - ringleader."]},{"k":"G4415","v":["πρωτοτόκια","prōtotokia","pro-tot-ok'-ee-ah","From G4416; primogeniture (as a privilege): - birthright."]},{"k":"G4416","v":["πρωτοτόκος","prōtotokos","pro-tot-ok'-os","From G4413 and the alternate of G5088; first born (usually as noun, literally or figuratively): - firstbegotten (-born)."]},{"k":"G4417","v":["πταίω","ptaiō","ptah'-yo","A form of G4098; to trip, that is, (figuratively) to err, sin, fail (of salvation): - fall, offend, stumble."]},{"k":"G4418","v":["πτέρνα","pterna","pter'-nah","Of uncertain derivation; the heel (figuratively): - heel."]},{"k":"G4419","v":["πτερύγιον","pterugion","pter-oog'-ee-on","Neuter of a presumed derivative of G4420; a winglet, that is, (figuratively) extremity (top corner): - pinnacle."]},{"k":"G4420","v":["πτέρυξ","pterux","pter'-oox","From a derivative of G4072 (meaning a feather); a wing: - wing."]},{"k":"G4421","v":["πτηνόν","ptēnon","ptay-non'","Contraction for G4071; a bird: - bird."]},{"k":"G4422","v":["πτοέω","ptoeō","pto-eh'-o","Probably akin to the alternate of G4098 (through the idea of causing to fall) or to G4072 (through that of causing to fly away); to scare: - frighten."]},{"k":"G4423","v":["πτόησις","ptoēsis","pto'-ay-sis","From G4422; alarm: - amazement."]},{"k":"G4424","v":["Πτολεμαΐ́ς","Ptolemais","ptol-em-ah-is'","From “ptolemaios” (Ptolemy, after whom it was named); Ptolemais, a place in Palestine: - Ptolemais."]},{"k":"G4425","v":["πτύον","ptuon","ptoo'-on","From G4429; a winnowing fork (as scattering like spittle): - fan."]},{"k":"G4426","v":["πτύρω","pturō","ptoo'-ro","From a presumed derivative of G4429 (and thus akin to G4422); to frighten: - terrify."]},{"k":"G4427","v":["πτύσμα","ptusma","ptoos'-mah","From G4429; saliva: - spittle."]},{"k":"G4428","v":["πτύσσω","ptussō","ptoos'-so","Probably akin to πετάννυμι petannumi (to spread; and thus apparently allied to G4072 through the idea of expansion, and to G4429 through that of flattening; compare G3961); to fold, that is, furl a scroll: - close."]},{"k":"G4429","v":["πτύω","ptuō","ptoo'-o","A primary verb (compare G4428); to spit: - spit."]},{"k":"G4430","v":["πτῶμα","ptōma","pto'-mah","From the alternate of G4098; a ruin, that is, (specifically) lifeless body (corpse, carrion): - dead body, carcase, corpse."]},{"k":"G4431","v":["πτῶσις","ptōsis","pto'-sis","From the alternate of G4098; a crash, that is, downfall (literally or figuratively): - fall."]},{"k":"G4432","v":["πτωχεία","ptōcheia","pto-khi'-ah","From G4433; beggary, that is, indigence (literally or figuratively): - poverty."]},{"k":"G4433","v":["πτωχεύω","ptōcheuō","pto-khyoo'-o","From G4434; to be a beggar, that is, (by implication) to become indigent (figuratively): - become poor."]},{"k":"G4434","v":["πτωχός","ptōchos","pto-khos'","From πτώσσω ptōssō (to crouch; akin to G4422 and the alternate of G4098); a beggar (as cringing), that is, pauper (strictly denoting absolute or public mendicancy, although also used in a qualified or relative sense; whereas G3993 properly means only straitened circumstances in private), literally (often as noun) or figuratively (distressed): - beggar (-ly), poor."]},{"k":"G4435","v":["πυγμή","pugmē","poog-may'","From a primary word, πύζ pux, (the fist as a weapon); the clenched hand, that is, (only in the dative case as adverb) with the fist (hard scrubbing): - oft."]},{"k":"G4436","v":["Πύθων","Puthōn","poo'-thone","From Πυθώ Puthō (the name of the region where Delphi, the seat of the famous oracle, was located); a Python, that is, (by analogy with the supposed diviner there) inspiration (soothsaying): - divination."]},{"k":"G4437","v":["πυκνός","puknos","pook-nos'","From the same as G4635; clasped (thick), that is, (figuratively) frequent; neuter plural (as adverb) frequently: - often (-er)."]},{"k":"G4438","v":["πυκτέω","pukteō","pook-teh'-o","From a derivative of the same as G4435; to box (with the fist), that is, contend (as a boxer) at the games (figuratively): - fight."]},{"k":"G4439","v":["πύλη","pulē","poo'-lay","Apparently a primary word; a gate, that is, the leaf or wing of a folding entrance (literally or figuratively): - gate."]},{"k":"G4440","v":["πυλών","pulōn","poo-lone'","From G4439; a gateway, door way or a building or city; by implication a portal or vestibule: - gate, porch."]},{"k":"G4441","v":["πυνθάνομαι","punthanomai","poon-than'-om-ahee","Middle voice prolonged from πύθω puthō, a primary word, (which occurs only as an alternate in certain tenses); to question, that is, ascertain by inquiry (as a matter of information merely; and thus differing from G2065, which properly means a request as a favor; and from G154, which is strictly a demand of something due; as well as from G2212, which implies a search for something hidden; and from G1189, which involves the idea of urgent need); by implication to learn (by casual intelligence): - ask, demand, enquire, understand."]},{"k":"G4442","v":["πῦρ","pur","poor","A primary word; “fire” (literally or figuratively, specifically lightning): - fiery, fire."]},{"k":"G4443","v":["πυρά","pura","poo-rah'","From G4442; a fire (concretely): - fire."]},{"k":"G4444","v":["πύργος","purgos","poor'-gos","Apparently a primary word (“burgh”); a tower or castle: - tower."]},{"k":"G4445","v":["πυρέσσω","puressō","poo-res'-so","From G4443; to be on fire, that is, (specifically) to have a fever: - be sick of a fever."]},{"k":"G4446","v":["πυρετός","puretos","poo-ret-os'","From G4445; inflamed, that is, (by implication) feverish (as noun, fever): - fever."]},{"k":"G4447","v":["πύρινος","purinos","poo'-ree-nos","From G4443; fiery, that is, (by implication) flaming: - of fire."]},{"k":"G4448","v":["πυρόω","puroō","poo-ro'-o","From G4442; to kindle, that is, (passively) to be ignited, glow (literally), be refined (by implication), or (figuratively) to be inflamed (with anger, grief, lust): - burn, fiery, be on fire, try."]},{"k":"G4449","v":["πυῤῥάζω","purrhazō","poor-hrad'-zo","From G4450; to redden (intransitively): - be red."]},{"k":"G4450","v":["πυῤῥός","purrhos","poor-hros'","From G4442; fire like, that is, (specifically) flame colored: - red."]},{"k":"G4451","v":["πύρωσις","purōsis","poo'-ro-sis","From G4448; ignition, that is, (specifically) smelting (figuratively conflagration, calamity as a test): - burning, trial."]},{"k":"G4452","v":["-πω","-pō","po","Another form of the base of G4458; an enclitic particle of indefiniteness; yet, even; used only in compounds."]},{"k":"G4453","v":["πωλέω","pōleō","po-leh'-o","Probably ultimately from πέλομαι pelomai (to be busy, to trade); to barter (as a pedlar), that is, to sell: - sell, whatever is sold."]},{"k":"G4454","v":["πῶλος","pōlos","po'-los","Apparently a primary word; a “foal” or “filly”, that is, (specifically) a young ass: - colt."]},{"k":"G4455","v":["πώποτε","pōpote","po'-pot-e","From G4452 and G4218; at any time, that is, (with negative particle) at no time: - at any time, + never (. . . to any man), + yet never man."]},{"k":"G4456","v":["πωρόω","pōroō","po-ro'-o","Apparently from πῶρος pōros (a kind of stone); to petrify, that is, (figuratively) to indurate (render stupid or callous): - blind, harden."]},{"k":"G4457","v":["πώρωσις","pōrōsis","po'-ro-sis","From G4456; stupidity or callousness: - blindness, hardness."]},{"k":"G4458","v":["πώς","pōs","poce","Adverb from the base of G4225; an enclitic particle of indefiniteness of manner; somehow or anyhow; used only in compounds: - haply, by any (some) means, perhaps. See G1513, G3381. Compare G4459."]},{"k":"G4459","v":["πῶς","pōs","poce","Adverb from the base of G4226; an interrogitive particle of manner; in what way? (sometimes the question is indirect, how?); also as exclamation, how much!: - how, after (by) what manner (means), that. [Occasionally unexpressed in English.]"]},{"k":"G4460","v":["Ῥαάβ","Rhaab","hrah-ab'","Of Hebrew origin [H7343]; Raab (that is, Rachab), a Canaanitess: - Rahab. See also G4477."]},{"k":"G4461","v":["ῥαββί","rhabbi","hrab-bee'","Of Hebrew origin [H7227] with pronominal suffix; my master, that is, Rabbi, as an official title of honor: - Master, Rabbi."]},{"k":"G4462","v":["ῥαββονί, ῥαββουνί","rhabboni    rhabbouni","hrab-bon-ee', hrab-boo-nee'","Of Chaldee origin; corresponding to G4461: - Lord, Rabboni."]},{"k":"G4463","v":["ῥαβδίζω","rhabdizō","hrab-did'-zo","From G4464; to strike with a stick, that is, bastinado: - beat (with rods)."]},{"k":"G4464","v":["ῥάβδος","rhabdos","hrab'-dos","From the base of G4474; a stick or wand (as a cudgel, a cane or a baton of royalty): - rod, sceptre, staff."]},{"k":"G4465","v":["ῥαβδοῦχος","rhabdouchos","hrab-doo'-khos","From G4464 and G2192; a rod (the Latin fasces) holder, that is, a Roman lictor (constable or executioner): - serjeant."]},{"k":"G4466","v":["Ῥαγαῦ","Rhagau","hrag-ow'","Of Hebrew origin [H7466]; Ragau (that is, Reu), a patriarch: - Ragau."]},{"k":"G4467","v":["ῥᾳδιούργημα","rhadiourgēma","hrad-ee-oorg'-ay-mah","From a compound of ῥᾳδιος rhadios (easy, that is, reckless) and G2041; easy going behavior, that is, (by extension) a crime: - lewdness."]},{"k":"G4468","v":["ῥᾳδιουργία","rhadiourgia","hrad-ee-oorg-ee'-a","From the same as G4467; recklessness, that is, (by extension) malignity: - mischief."]},{"k":"G4469","v":["ῥακά","rhaka","rhak-ah'","Of Chaldee origin (compare [H7386]); O empty one, that is, thou worthless (as a term of utter vilification): - Raca."]},{"k":"G4470","v":["ῥάκος","rhakos","hrak'-os","From G4486; a “rag”, i. e. piece of cloth: - cloth."]},{"k":"G4471","v":["Ῥαμᾶ","Rhama","hram-ah'","Of Hebrew origin [H7414]; Rama (that is, Ramah), a place in Palestine: - Rama."]},{"k":"G4472","v":["ῥαντίζω","rhantizō","hran-tid'-zo","From a derivative of ῥαίνω rhainō (to sprinkle); to render besprinkled, that is, asperse (ceremonially or figuratively): - sprinkle."]},{"k":"G4473","v":["ῥαντισμός","rhantismos","hran-tis-mos'","From G4472; aspersion (ceremonially or figuratively): - sprinkling."]},{"k":"G4474","v":["ῥαπίζω","rhapizō","hrap-id'-zo","From a derivative of ῥέπω rhepō, a primary word, (to let fall, “rap”); to slap (with the palm of the hand): - smite (with the palm of the hand). Compare G5180."]},{"k":"G4475","v":["ῥάπισμα","rhapisma","hrap'-is-mah","From G4474; a slap: - (+ strike with the) palm of the hand, smite with the hand."]},{"k":"G4476","v":["ῥαφίς","rhaphis","hraf-ece'","From ῥάπτω rhaptō, a primary word, (to sew; perhaps rather akin to the base of G4474 through the idea of puncturing); a needle: - needle."]},{"k":"G4477","v":["Ῥαχάβ","Rhachab","hrakh-ab'","From the same as G4460; Rachab, a Canaanitess: - Rachab."]},{"k":"G4478","v":["Ῥαχήλ","Rhachēl","hrakh-ale'","Of Hebrew origin [H7354]; Rachel, the wife of Jacob: - Rachel."]},{"k":"G4479","v":["Ῥεβέκκα","Rhebekka","hreb-bek'-kah","Of Hebrew origin [H7259]; Rebecca (that is, Ribkah), the wife of Isaac: - Rebecca."]},{"k":"G4480","v":["ῥέδα","rheda","hred'-ah","Of Latin origin; a rheda, that is, four wheeled carriage (wagon for riding): - chariot."]},{"k":"G4481","v":["Ῥεμφάν","Rhemphan","hrem-fan'","By incorrect transliteration for a word of Hebrew origin [H3594]; Remphan (that is, Kijun), an Egyptian idol: - Remphan."]},{"k":"G4482","v":["ῥέω","rheō","hreh'-o","A primary verb; for some tenses of which a prolonged form (ῥεύω rheuō) is used; to flow (“run”, as water): - flow."]},{"k":"G4483","v":["ῥέω","rheō","hreh'-o","For certain tenses of which a prolonged form (ἐρέω ereō) is used; and both as alternate for G2036; perhaps akin (or identical) with G4482 (through the idea of pouring forth); to utter, that is, speak or say: - command, make, say, speak (of). Compare G3004."]},{"k":"G4484","v":["Ῥήγιον","Rhēgion","hrayg'-ee-on","Of Latin origin; Rhegium, a place in Italy: - Rhegium."]},{"k":"G4485","v":["ῥῆγμα","rhēgma","hrayg'-mah","From G4486; something torn, that is, a fragment (by implication and abstraction, a fall): - ruin."]},{"k":"G4486","v":["ῥήγνυμι, ῥήσσω","rhēgnumi    rhēssō","hrayg'-noo-mee, hrace'-so","Both are prolonged forms of ῥήκω rhēko (which appears only in certain forms, and is itself probably a strengthened form of ἄγνυμι agnumi (see in G2608)); to “break”, “wreck” or “crack”, that is, (especially) to sunder (by separation of the parts; G2608 being its intensive (with the preposition in compounds), and G2352 a shattering to minute fragments; but not a reduction to the constituent particles, like G3089) or disrupt, lacerate; by implication to convulse (with spasms); figuratively to give vent to joyful emotions: - break (forth), burst, rend, tear."]},{"k":"G4487","v":["ῥῆμα","rhēma","hray'-mah","From G4483; an utterance (individually, collectively or specifically); by implication a matter or topic (especially of narration, command or dispute); with a negative naught whatever: - + evil, + nothing, saying, word."]},{"k":"G4488","v":["Ῥησά","Rhēsa","hray-sah'","Probably of Hebrew origin (apparently for [H7509]); Resa (that is, Rephajah), an Israelite: - Rhesa."]},{"k":"G4489","v":["ῥήτωρ","rhētōr","hray'-tore","From G4483; a speaker, that is, (by implication) a forensic advocate: - orator."]},{"k":"G4490","v":["ῥητῶς","rhētōs","hray-toce'","Adverb from a derivative of G4483; out spokenly, that is, distinctly: - expressly."]},{"k":"G4491","v":["ῥίζα","rhiza","hrid'-zah","Apparently a primary word; a “root” (literally or figuratively): - root."]},{"k":"G4492","v":["ῥιζόω","rhizoō","hrid-zo'-o","From G4491; to root (figuratively become stable): - root."]},{"k":"G4493","v":["ῥιπή","rhipē","hree-pay'","From G4496; a jerk (of the eye, that is, (by analogy) an instant): - twinkling."]},{"k":"G4494","v":["ῥιπίζω","rhipizō","hrip-id'-zo","From a derivative of G4496 (meaning a fan or bellows); to breeze up, that is, (by analogy) to agitate (into waves): - toss."]},{"k":"G4495","v":["ῥιπτέω","rhipteō","hrip-teh'-o","From a derivative of G4496; to toss up: - cast off."]},{"k":"G4496","v":["ῥίπτω","rhiptō̄","hrip'-to","A primary verb (perhaps rather akin to the base of G4474, through the idea of sudden motion); to fling (properly with a quick toss, thus differing from G906, which denotes a deliberate hurl; and from τείνω teinō (see in G1614), which indicates an extended projection); by qualification, to deposit (as if a load); by extension to disperse: - cast (down, out), scatter abroad, throw."]},{"k":"G4497","v":["Ῥοβοάμ","Rhoboam","hrob-o-am'","Of Hebrew origin [H7346]; Roboam (that is, Rechabam), an Israelite: - Roboam."]},{"k":"G4498","v":["Ῥόδη","Rhodē","hrod'-ay","Probably for ῥόδή rhodē (a rose); Rode, a servant girl: - Rhoda."]},{"k":"G4499","v":["Ῥόδος","Rhodos","hrod'-os","Probably from ῥόδον rhodon (a rose); Rhodus, an island of the Mediterranean: - Rhodes."]},{"k":"G4500","v":["ῥοιζηδόν","rhoizēdon","hroyd-zay-don'","Adverb from a derivative of ῥοῖζος rhoizos (a whir); whizzingly, that is, with a crash: - with a great noise."]},{"k":"G4501","v":["ῥομφαία","rhomphaia","hrom-fah'-yah","Probably of foreign origin; a sabre, that is, a long and broad cutlass (any weapon of the kind, literally or figuratively): - sword."]},{"k":"G4502","v":["Ῥουβήν","Rhoubēn","hroo-bane'","Of Hebrew origin [H7205]; Ruben (that is, Reuben), an Israelite: - Reuben."]},{"k":"G4503","v":["Ῥούθ","Rhouth","hrooth","Of Hebrew origin [H7327]; Ruth, a Moabitess: - Ruth."]},{"k":"G4504","v":["Ῥοῦφος","Rhouphos","hroo'-fos","Of Latin origin; red; Rufus, a Christian: - Rufus."]},{"k":"G4505","v":["ῥύμη","rhumē","hroo'-may","Prolonged from G4506 in its original sense; an alley or avenue (as crowded): - lane, street."]},{"k":"G4506","v":["ῥύομαι","rhuomai","rhoo'-om-ahee","Middle voice of an obsolete verb, akin to G4482 (through the idea of a current; compare G4511); to rush or draw (for oneself), that is, rescue: - deliver (-er)."]},{"k":"G4507","v":["ῥυπαρία","rhuparia","hroo-par-ee'-ah","From G4508; dirtiness (morally): - filthiness."]},{"k":"G4508","v":["ῥυπαρός","rhuparos","rhoo-par-os'","From G4509; dirty, that is, (relatively) cheap or shabby; morally wicked: - vile."]},{"k":"G4509","v":["ῥύπος","rhupos","hroo'-pos","Of uncertain affinity; dirt, that is, (moral) depravity: - filth."]},{"k":"G4510","v":["ῥυπόω","rhupoō","rhoo-po'-o","From G4509; to soil, that is, (intransitively) to become dirty (morally): - be filthy."]},{"k":"G4511","v":["ῥύσις","rhusis","hroo'-sis","From G4506 in the sense of its congener G4482; a flux (of blood): - issue."]},{"k":"G4512","v":["ῥυτίς","rhutis","hroo-tece'","From G4506; a fold (as drawing together), that is, a wrinkle (especially on the face): - wrinkle."]},{"k":"G4513","v":["Ῥωμαΐκός","Rhōmaikos","rho-mah-ee-kos'","From G4514; Romaic, that is, Latin: - Latin."]},{"k":"G4514","v":["Ῥωμαῖος","Rhōmaios","hro-mah'-yos","From G4516; Romaean, that is, Roman (as noun): - Roman, of Rome."]},{"k":"G4515","v":["Ῥωμαΐστί","Rhōmaisti","hro-mah-is-tee'","Adverb from a presumed derivative of G4516; Romaistically, that is, in the Latin language: - Latin."]},{"k":"G4516","v":["Ῥώμη","Rhōmē","hro'-may","From the base of G4517; strength; Roma, the capital of Italy: - Rome."]},{"k":"G4517","v":["ῥώννυμι","rhōnnumi","hrone'-noo-mee","Prolonged from ῥώομαι rhōomai (to dart; probably akin to G4506); to strengthen, that is, (imperative passive) have health (as parting exclamation, good bye): - farewell."]},{"k":"G4518","v":["σαβαχθανί","sabachthani","sab-akh-than-ee'","Of Chaldee origin [H7662] with pronominal suffix; thou hast left me; sabachthani (that is, shebakthani), a cry of distress: - sabachthani."]},{"k":"G4519","v":["σαβαώθ","sabaōth","sab-ah-owth'","Of Hebrew origin ([H6635] in feminine plural); armies; sabaoth (that is, tsebaoth), a military epithet of God: - sabaoth."]},{"k":"G4520","v":["σαββατισμός","sabbatismos","sab-bat-is-mos'","From a derivative of G4521; a “sabbatism”, that is, (figuratively) the repose of Christianity (as a type of heaven): - rest."]},{"k":"G4521","v":["σάββατον","sabbaton","sab'-bat-on","Of Hebrew origin [H7676]; the Sabbath (that is, Shabbath), or day of weekly repose from secular avocations (also the observance or institution itself); by extension a se'nnight, that is, the interval between two Sabbaths; likewise the plural in all the above applications: - sabbath (day), week."]},{"k":"G4522","v":["σαγήνη","sagēnē","sag-ay'-nay","From a derivative of σάττω sattō (to equip) meaning furniture, especially a pack saddle (which in the East is merely a bag of netted rope); a “seine” for fishing: - net."]},{"k":"G4523","v":["Σαδδουκαῖος","Saddoukaios","sad-doo-kah'-yos","Probably from G4524; a Sadducaean (that is, Tsadokian), or follower of a certain heretical Israelite: - Sadducee."]},{"k":"G4524","v":["Σαδώκ","Sadōk","sad-oke'","Of Hebrew origin [H6659]; Sadoc (that is, Tsadok), an Israelite: - Sadoc."]},{"k":"G4525","v":["σαίνω","sainō","sah'ee-no","Akin to G4579; to wag (as a dog its tail fawningly), that is, (generally) to shake (figuratively disturb): - move."]},{"k":"G4526","v":["σάκκος","sakkos","sak'-kos","Of Hebrew origin [H8242]; “sack” cloth, that is, mohair (the material or garments made of it, worn as a sign of grief): - sackcloth."]},{"k":"G4527","v":["Σαλά","Sala","sal-ah'","Of Hebrew origin [H7974]; Sala (that is, Shelach), a patriarch: - Sala."]},{"k":"G4528","v":["Σαλαθιήλ","Salathiēl","sal-ath-ee-ale'","Of Hebrew origin [H7597]; Salathiel (that is, Shealtiel), an Israelite: - Salathiel."]},{"k":"G4529","v":["Σαλαμίς","Salamis","sal-am-ece'","Probably from G4535 (from the surge on the shore); Salamis, a place in Cyprus: - Salamis."]},{"k":"G4530","v":["Σαλείμ","Saleim","sal-ime'","Probably from the same as G4531; Salim, a place in Palestine: - Salim."]},{"k":"G4531","v":["σαλεύω","saleuō","sal-yoo'-o","From G4535; to waver, that is, agitate, rock, topple or (by implication) destroy; figuratively to disturb, incite: - move, shake (together), which can [-not] be shaken, stir up."]},{"k":"G4532","v":["Σαλήμ","Salēm","sal-ame'","Of Hebrew origin [H8004]; Salem (that is, Shalem), a place in Palestine: - Salem."]},{"k":"G4533","v":["Σαλμών","Salmōn","sal-mone'","Of Hebrew origin [H8012]; Salmon, an Israelite: - Salmon."]},{"k":"G4534","v":["Σαλμώνη","Salmōnē","sal-mo'-nay","Perhaps of similar origin to G4529; Salmone, a place in Crete: - Salmone."]},{"k":"G4535","v":["σάλος","salos","sal'-os","Probably from the base of G4525; a vibration, that is, (specifically) billow: - wave."]},{"k":"G4536","v":["σάλπιγξ","salpigx","sal'-pinx","Perhaps from G4535 (through the idea of quavering or reverberation); a trumpet: - trump (-et)."]},{"k":"G4537","v":["σαλπίζω","salpizō","sal-pid'-zo","From G4536; to trumpet, that is, sound a blast (literally or figuratively): - (which are yet to) sound (a trumpet)."]},{"k":"G4538","v":["σαλπιστής","salpistēs","sal-pis-tace'","From G4537; a trumpeter: - trumpeter."]},{"k":"G4539","v":["Σαλώμη","Salōmē","sal-o'-may","Probably of Hebrew origin (feminine from [H7965]); Salome (that is, Shelomah), an Israelitess: - Salome."]},{"k":"G4540","v":["Σαμάρεια","Samareia","sam-ar'-i-ah","Of Hebrew origin [H8111]; Samaria (that is, Shomeron), a city and region of Palestine: - Samaria."]},{"k":"G4541","v":["Σαμαρείτης","Samareitēs","sam-ar-i'-tace","From G4540; a Samarite, that is, inhabitants of Samaria: - Samaritan."]},{"k":"G4542","v":["Σαμαρεῖτις","Samareitis","sam-ar-i'-tis","Feminine of G4541; a Samaritess, that is, woman of Samaria: - of Samaria."]},{"k":"G4543","v":["Σαμοθρᾴκη","Samothrakē","sam-oth-rak'-ay","From G4544 and Θρᾴκη Thrakē (Thrace); Samo-thrace (Samos of Thrace), an island in the Mediterranean: - Samothrace."]},{"k":"G4544","v":["Σάμος","Samos","sam'-os","Of uncertain affinity; Samus, an island of the Mediterranean: - Samos."]},{"k":"G4545","v":["Σαμουήλ","Samouēl","sam-oo-ale'","Of Hebrew origin [H8050]; Samuel (that is, Shemuel), an Israelite: - Samuel."]},{"k":"G4546","v":["Σαμψών","Sampsōn","samp-sone'","Of Hebrew origin [H8123]; Sampson (that is, Shimshon), an Israelite: - Samson."]},{"k":"G4547","v":["σανδάλιον","sandalion","san-dal'-ee-on","Neuter of a derivative of σάνδαλον sandalon (a “sandal”; of uncertain origin); a slipper or sole pad: - sandal."]},{"k":"G4548","v":["σανίς","sanis","san-ece'","Of uncertain affinity; a plank: - board."]},{"k":"G4549","v":["Σαούλ","Saoul","sah-ool'","Of Hebrew origin [H7586]; Saul (that is, Shaul), the Jewish name of Paul: - Saul. Compare G4569."]},{"k":"G4550","v":["σαπρός","sapros","sap-ros'","From G4595; rotten, that is, worthless (literally or morally): - bad, corrupt. Compt. G4190."]},{"k":"G4551","v":["Σαπφείρη","Sappheirē","sap-fi'-ray","Feminine of G4552; Sapphire, an Israelitess: - Sapphira."]},{"k":"G4552","v":["σάπφειρος","sappheiros","sap'-fi-ros","Of Hebrew origin [H5601]; a “sapphire” or lapis-lazuli gem: - sapphire."]},{"k":"G4553","v":["σαργάνη","sarganē","sar-gan'-ay","Apparently of Hebrew origin [H8276]; a basket (as interwoven or wicker work): - basket."]},{"k":"G4554","v":["Σάρδεις","Sardeis","sar'-dice","Plural of uncertain derivation; Sardis, a place in Asia Minor: - Sardis."]},{"k":"G4555","v":["σάρδινος","sardinos","sar'-dee-nos","From the same as G4556; sardine (G3037 being implied), that is, a gem, so called: - sardine."]},{"k":"G4556","v":["σάρδιος","sardios","sar'-dee-os","Proper adjective from an uncertain base; sardian (G3037 being implied), that is, (as noun) the gem so called: - sardius."]},{"k":"G4557","v":["σαρδόνυξ","sardonux","sar-don'-oox","From the base of G4556 and ὄνυξ onux (the nail of a finger; hence the “onyx” stone); a “sardonyx”, that is, the gem so called: - sardonyx."]},{"k":"G4558","v":["Σάρεπτα","Sarepta","sar'-ep-tah","Of Hebrew origin [H6886]; Sarepta (that is, Tsarephath), a place in Palestine: - Sarepta."]},{"k":"G4559","v":["σαρκικός","sarkikos","sar-kee-kos'","From G4561; pertaining to flesh, that is, (by extension) bodily, temporal, or (by implication) animal, unregenerate: - carnal, fleshly."]},{"k":"G4560","v":["σάρκινος","sarkinos","sar'-kee-nos","From G4561; similar to flesh, that is, (by analogy) soft: - fleshly."]},{"k":"G4561","v":["σάρξ","sarx","sarx","Probably from the base of G4563; flesh (as stripped of the skin), that is, (strictly) the meat of an animal (as food), or (by extension) the body (as opposed to the soul (or spirit), or as the symbol of what is external, or as the means of kindred, or (by implication) human nature (with its frailties (physically or morally) and passions), or (specifically) a human being (as such): - carnal (-ly, + -ly minded), flesh ([-ly])."]},{"k":"G4562","v":["Σαρούχ","Sarouch","sar-ooch'","Of Hebrew origin [H8286]; Saruch (that is, Serug), a patriarch: - Saruch."]},{"k":"G4563","v":["σαρόω","saroō","sar-o'-o","From a derivative of σαιρω sairō (to brush off; akin to G4951) meaning a broom; to sweep: - sweep."]},{"k":"G4564","v":["Σάῤῥα","Sarrha","sar'-hrah","Of Hebrew origin [H8283]; Sarra (that is, Sarah), the wife of Abraham: - Sara, Sarah."]},{"k":"G4565","v":["Σάρων","Sarōn","sar'-one","Of Hebrew origin [H8289]; Saron (that is, Sharon), a district of Palestine: - Saron."]},{"k":"G4566","v":["Σατᾶν","Satan","sat-an'","Of Hebrew origin [H7854]; Satan, that is, the devil: - Satan. Compare G4567."]},{"k":"G4567","v":["Σατανᾶς","Satanas","sat-an-as'","Of Chaldee origin corresponding to G4566 (with the definite article affixed); the accuser, that is, the devil: - Satan."]},{"k":"G4568","v":["σάτον","saton","sat'-on","Of Hebrew origin [H5429]; a certain measure for things dry: - measure."]},{"k":"G4569","v":["Σαῦλος","Saulos","sow'-los","Of Hebrew origin, the same as G4549; Saulus (that is, Shaul), the Jewish name of Paul: - Saul."]},{"k":"G4570","v":["σβέννυμι","sbennumi","sben'-noo-mee","A prolonged form of an apparently primary verb; to extinguish (literally or figuratively): - go out, quench."]},{"k":"G4571","v":["σέ","se","seh","Accusative singular of G4771; thee: - thee, thou, X thy house."]},{"k":"G4572","v":["σεαυτοῦ, σεαυτῷ, σεαυτόν, σαυτοῦ, σαυτῷ, σαυτόν","seautou    seautō    seauton    sautou    sautō    sauton","seh-ow-too', she-ow-to', she-ow-ton', sow-too', sow-to', sow-ton'","The genitive case from G4571 and G846, with the dative and accusative of the same with contractions, respectively, of (with, to) thyself: - thee, thine own self, (thou) thy (-self)."]},{"k":"G4573","v":["σεβάζομαι","sebazomai","seb-ad'-zom-ahee","Middle voice from a derivative of G4576; to venerate, that is, adore: - worship."]},{"k":"G4574","v":["σέβασμα","sebasma","seb'-as-mah","From G4573; something adored, that is, an object of worship (god, altar, etc.): - devotion, that is worshipped."]},{"k":"G4575","v":["σεβαστός","sebastos","seb-as-tos'","From G4573; venerable (august), that is, (as noun) a title of the Roman Emperor, or (as adjective) imperial: - Augustus (-’)."]},{"k":"G4576","v":["σέβομαι","sebomai","seb'-om-ahee","Middle voice of an apparently primary verb; to revere, that is, adore: - devout, religious, worship."]},{"k":"G4577","v":["σειρά","seira","si-rah'","Probably from G4951 through its congener εἴρω eirō (to fasten; akin to G138); a chain (as binding or drawing): - chain."]},{"k":"G4578","v":["σεισμός","seismos","sice-mos'","From G4579; a commotion, that is, (of the air) a gale, (of the ground) an earthquake: - earthquake, tempest."]},{"k":"G4579","v":["σείω","seiō","si'-o","Apparently a primary verb; to rock (vibrate, properly sideways or to and fro), that is, (generally) to agitate (in any direction; cause to tremble); figuratively to throw into a tremor (of fear or concern): - move, quake, shake."]},{"k":"G4580","v":["Σεκοῦνδος","Sekoundos","sek-oon'-dos","Of Latin origin; “second”; Secundus, a Christian: - Secundus."]},{"k":"G4581","v":["Σελεύκεια","Seleukeia","sel-yook'-i-ah","From Σέλευκος Seleukos (Seleucus, a Syran king); Seleuceia, a place in Syria: - Seleucia."]},{"k":"G4582","v":["σελήνη","selēnē","sel-ay'-nay","From σέλας selas (brilliancy; probably akin to the alternate of G138, through the idea of attractiveness); the moon: - moon."]},{"k":"G4583","v":["σεληνιάζομαι","selēniazomai","sel-ay-nee-ad'-zom-ahee","Middle or passive voice from a presumed derivative of G4582; to be moon struck, that is, crazy: - be lunatic."]},{"k":"G4584","v":["Σεμῖ","Semi","sem-eh-ee'","Of Hebrew origin [H8096]; Semei (that is, Shimi), an Israelite: - Semei."]},{"k":"G4585","v":["σεμίδαλις","semidalis","sem-id'-al-is","Probably of foreign origin; fine wheaten flour: - fine flour."]},{"k":"G4586","v":["σεμνός","semnos","sem-nos'","From G4576; venerable, that is, honorable: - grave, honest."]},{"k":"G4587","v":["σεμνότης","semnotēs","sem-not'-ace","From G4586; venerableness, that is, probity: - gravity, honesty."]},{"k":"G4588","v":["Σέργιος","Sergios","serg'-ee-os","Of Lat origin; Sergius, a Roman: - Sergius."]},{"k":"G4589","v":["Σήθ","Sēth","sayth","Of Hebrew origin [H8352]; Seth (that is, Sheth), a patriarch: - Seth."]},{"k":"G4590","v":["Σήμ","Sēm","same","Of Hebrew origin [H8035]; Sem (that is, Shem), a patriarch: - Sem."]},{"k":"G4591","v":["σημαίνω","sēmainō","say-mah'ee-no","From σῆμα sēma (a mark; of uncertain derivation); to indicate: - signify."]},{"k":"G4592","v":["σημεῖον","sēmeion","say-mi'-on","Neuter of a presumed derivative of the base of G4591; an indication, especially ceremonially or supernaturally: - miracle, sign, token, wonder."]},{"k":"G4593","v":["σημειόω","sēmeioō","say-mi-o'-o","From G4592; to distinguish, that is, mark (for avoidance): - note."]},{"k":"G4594","v":["σήμερον","sēmeron","say'-mer-on","Neuter (as adverb) of a presumed compound of the article G3588 (“tau” changed to “sigma”) and G2250; on the (that is, this) day (or night current or just passed); genitively now (that is, at present, hitherto): - this (to-) day."]},{"k":"G4595","v":["σήπω","sēpō","say'-po","Apparently a primary verb; to putrefy, that is, (figuratively) perish: - be corrupted."]},{"k":"G4596","v":["σηρικός","sērikos","say-ree-kos'","From Σήρ Sēr (an Indian tribe from whom silk was procured; hence the name of the silkworm); Seric, that is, silken (neuter as noun, a silky fabric): - silk."]},{"k":"G4597","v":["σής","sēs","sace","Apparently of Hebrew origin [H5580]; a moth: - moth."]},{"k":"G4598","v":["σητόβρωτος","sētobrōtos","say-tob'-ro-tos","From G4597 and a derivative of G977; moth eaten: - motheaten."]},{"k":"G4599","v":["σθενόω","sthenoō","sthen-o'-o","From σθένος sthenos (bodily vigor; probably akin to the base of G2476); to strengthen, that is, (figuratively) confirm (in spiritual knowledge and power): - strengthen."]},{"k":"G4600","v":["σιαγών","siagōn","see-ag-one'","Of uncertain derivation; the jaw bone, that is, (by implication) the cheek or side of the face: - cheek."]},{"k":"G4601","v":["σιγάω","sigaō","see-gah'-o","From G4602; to keep silent (transitive or intransitive): - keep close (secret, silence), hold peace."]},{"k":"G4602","v":["σιγή","sigē","see-gay'","Apparently from σίζω sizō (to hiss, that is, hist or hush); silence: - silence. Compare G4623."]},{"k":"G4603","v":["σιδήρεος","sidēreos","sid-ay'-reh-os","From G4604; made of iron: - (of) iron."]},{"k":"G4604","v":["σίδηρος","sidēros","sid'-ay-ros","Of uncertain derivation; iron: - iron."]},{"k":"G4605","v":["Σιδών","Sidōn","sid-one'","Of Hebrew origin [H6721]; Sidon (that is, Tsidon), a place in Palestine: - Sidon."]},{"k":"G4606","v":["Σιδώνιος","Sidōnios","sid-o'-nee-os","From G4605; a Sidonian, that is, inhabitant of Sidon: - of Sidon."]},{"k":"G4607","v":["σικάριος","sikarios","sik-ar'-ee-os","Of Latin origin; a dagger man or assassin; a freebooter (Jewish fanatic outlawed by the Romans): - murderer. Compare G5406."]},{"k":"G4608","v":["σίκερα","sikera","sik'-er-ah","Of Hebrew origin [H7941]; an intoxicant, that is, intensely fermented liquor: - strong drink."]},{"k":"G4609","v":["Σίλας","Silas","see'-las","Contraction for G4610; Silas, a Christian: - Silas."]},{"k":"G4610","v":["Σιλουανός","Silouanos","sil-oo-an-os'","Of Latin origin; “silvan”; Silvanus, a Christian: - Silvanus. Compare G4609."]},{"k":"G4611","v":["Σιλωάμ","Silōam","sil-o-am'","Of Hebrew origin [H7975]; Siloam (that is, Shiloach), a pool of Jerusalem: - Siloam."]},{"k":"G4612","v":["σιμικίνθιον","simikinthion","sim-ee-kin'-thee-on","Of Latin origin; a semicinctium or half girding, that is, narrow covering (apron): - apron."]},{"k":"G4613","v":["Σίμων","Simōn","see'-mone","Of Hebrew origin [H8095]; Simon (that is, Shimon), the name of nine Israelites: - Simon. Compare G4826."]},{"k":"G4614","v":["Σινᾶ","Sina","see-nah'","Of Hebrew origin [H5514]; Sina (that is, Sinai), a mountain in Arabia: - Sina."]},{"k":"G4615","v":["σίναπι","sinapi","sin'-ap-ee","Perhaps from σίνομαι sinomai (to hurt, that is, sting); mustard (the plant): - mustard."]},{"k":"G4616","v":["σινδών","sindōn","sin-done'","Of uncertain (perhaps foreign) origin; byssos, that is, bleached linen (the cloth or a garment of it): - (fine) linen (cloth)."]},{"k":"G4617","v":["σινιάζω","siniazō","sin-ee-ad'-zo","From σινιον sinion (a sieve); to riddle (figuratively): - sift."]},{"k":"G4618","v":["σιτευτός","siteutos","sit-yoo-tos'","From a derivative of G4621; grain fed, that is, fattened: - fatted."]},{"k":"G4619","v":["σιτιστός","sitistos","sit-is-tos'","From a derivative of G4621; grained that is, fatted: - fatling."]},{"k":"G4620","v":["σιτόμετρον","sitometron","sit-om'-et-ron","From G4621 and G3358; a grain measure, that is, (by implication) ration (allowance of food): - portion of meat."]},{"k":"G4621","v":["σῖτος","sitos","see'-tos","σῖτα sita see'-tah is the plural irregular neuter of the first form. Of uncertain derivation; grain, especially wheat: - corn, wheat."]},{"k":"G4622","v":["Σιών","Siōn","see-own'","Of Hebrew origin [H6726]; Sion (that is, Tsijon), a hill of Jerusalem; figuratively the Church (militant or triumphant): - Sion."]},{"k":"G4623","v":["σιωπάω","siōpaō","see-o-pah'-o","From σιωπη siōpē (silence, that is, a hush; properly muteness, that is, involuntary stillness, or inability ot speak; and thus differing from G4602, which is rather a voluntary refusal or indisposition to speak, although the terms are often used synonymously); to be dumb (but not deaf also, like G2974 properly); figuratively to be calm (as quiet water): - dumb, (hold) peace."]},{"k":"G4624","v":["σκανδαλίζω","skandalizō","skan-dal-id'-zo","To “scandalize”; from G4625; to entrap, that is, trip up (figuratively stumble [transitively] or entice to sin, apostasy or displeasure): - (make to) offend."]},{"k":"G4625","v":["σκάνδαλον","skandalon","skan'-dal-on","A “scandal”; probably from a derivative of G2578; a trap stick (bent sapling), that is, snare (figuratively cause of displeasure or sin): - occasion to fall (of stumbling), offence, thing that offends, stumbling-block."]},{"k":"G4626","v":["σκάπτω","skaptō","skap'-to","Apparently a primary verb; to dig: - dig."]},{"k":"G4627","v":["σκάφη","skaphē","skaf'-ay","A “skiff” (as if dug out), or yawl (carried aboard a large vessel for landing): - boat."]},{"k":"G4628","v":["σκέλος","skelos","skel'-os","Apparently from σκέλλω skellō (to parch; through the idea of leanness); the leg (as lank): - leg."]},{"k":"G4629","v":["σκέπασμα","skepasma","skep'-as-mah","From a derivative of “skepas” (a covering; perhaps akin to the base of G4649 through the idea of noticeableness); clothing: - raiment."]},{"k":"G4630","v":["Σκευᾶς","Skeuas","skyoo-as'","Apparently of Latin origin; left handed; Scevas (that is, Scaevus), an Israelite: - Sceva."]},{"k":"G4631","v":["σκευή","skeuē","skyoo-ay'","From G4632; furniture, that is, spare tackle: - tackling."]},{"k":"G4632","v":["σκεῦος","skeuos","skyoo'-os","Of uncertain affinity; a vessel, implement, equipment or apparatus (literally or figuratively [specifically a wife as contributing to the usefulness of the husband]): - goods, sail, stuff, vessel."]},{"k":"G4633","v":["σκηνή","skēnē","skay-nay'","Apparently akin to G4632 and G4639; a tent or cloth hut (literally or figuratively): - habitation, tabernacle."]},{"k":"G4634","v":["σκηνοπηγία","skēnopēgia","skay-nop-ayg-ee'-ah","From G4636 and G4078; the Festival of Tabernacles (so called from the custom of erecting booths for temporary homes): - tabernacles."]},{"k":"G4635","v":["σκηνοποιός","skēnopoios","skay-nop-oy-os'","From G4633 and G4160; a manufacturer of tents: - tentmaker."]},{"k":"G4636","v":["σκῆνος","skēnos","skay'-nos","From G4633; a hut or temporary residence, that is, (figuratively) the human body (as the abode of the spirit): - tabernacle."]},{"k":"G4637","v":["σκηνόω","skēnoō","skay-no'-o","From G4636; to tent or encamp, that is, (figuratively) to occupy (as a mansion) or (specifically) to reside (as God did in the Tabernacle of old, a symbol fo protection and communion): - dwell."]},{"k":"G4638","v":["σκήνωμα","skēnōma","skay'-no-mah","From G4637; an encampment, that is, (figuratively) the Temple (as God’s residence), the body (as a tenement for the soul): - tabernacle."]},{"k":"G4639","v":["σκία","skia","skee'-ah","Apparently a primary word; “shade” or a shadow (literally or figuratively [darkness of error or an adumbration]): - shadow."]},{"k":"G4640","v":["σκιρτάω","skirtaō","skeer-tah'-o","Akin to σκαίρω skairō (to skip); to jump, that is, sympathetically move (as the quickening of a fetus): - leap (for joy)."]},{"k":"G4641","v":["σκληροκαρδία","sklērokardia","sklay-rok-ar-dee'-ah","Feminine of a compound of G4642 and G2588; hard heartedness, that is, (specifically) destitution of (spiritual) perception: - hardness of heart."]},{"k":"G4642","v":["σκληρός","sklēros","sklay-ros'","From the base of G4628; dry, that is, hard or tough (figuratively harsh, severe): - fierce, hard."]},{"k":"G4643","v":["σκληρότης","sklērotēs","sklay-rot'-ace","From G4642; callousness, that is, (figuratively) stubbornness: - hardness."]},{"k":"G4644","v":["σκληροτράχηλος","sklērotrachēlos","sklay-rot-rakh'-ah-los","From G4642 and G5137; hard naped, that is, (figuratively) obstinate: - stiffnecked."]},{"k":"G4645","v":["σκληρύνω","sklērunō","sklay-roo'-no","From G4642; to indurate, that is, (figuratively) render stubborn: - harden."]},{"k":"G4646","v":["σκολιός","skolios","skol-ee-os'","From the base of G4628; warped, that is, winding; figuratively perverse: - crooked, froward, untoward."]},{"k":"G4647","v":["σκόλοψ","skolops","skol'-ops","Perhaps form the base of G4628 and G3700; withered at the front, that is, a point or prickle (figuratively a bodily annoyance or disability): - thorn."]},{"k":"G4648","v":["σκοπέω","skopeō","skop-eh'-o","From G4649; to take aim at (spy), that is, (figuratively) regard: - consider, take heed, look at (on), mark. Compare G3700."]},{"k":"G4649","v":["σκοπός","skopos","skop-os'","(“scope”); From σκέπτομαι skeptomai (to peer about [“skeptic”]; perhaps akin to G4626 through the idea of concealment; compare G4629); a watch (sentry or scout), that is, (by implication) a goal: - mark."]},{"k":"G4650","v":["σκορπίζω","skorpizō","skor-pid'-zo","Apparently from the same as G4651 (through the idea of penetrating); to dissipate, that is, (figuratively) put to flight, waste, be liberal: - disperse abroad, scatter (abroad)."]},{"k":"G4651","v":["σκορπίος","skorpios","skor-pee'-os","Probably from σκέρπω skerpō, an obsolete word, (perhaps strengthened from the base of G4649 and meaning to pierce); a “scorpion” (from its sting): - scorpion."]},{"k":"G4652","v":["σκοτεινός","skoteinos","skot-i-nos'","From G4655; opaque, that is, (figuratively) benighted: - dark, full of darkness."]},{"k":"G4653","v":["σκοτία","skotia","skot-ee'-ah","From G4655; dimness, obscurity (literally or figuratively): - dark (-ness)."]},{"k":"G4654","v":["σκοτίζω","skotizō","skot-id'-zo","From G4655; to obscure (literally or figuratively): - darken."]},{"k":"G4655","v":["σκότος","skotos","skot'-os","From the base of G4639; shadiness, that is, obscurity (literally or figuratively): - darkness."]},{"k":"G4656","v":["σκοτόω","skotoō","skot-o'-o","From G4655; to obscure or blind (literally or figuratively): - be full of darkness."]},{"k":"G4657","v":["σκύβαλον","skubalon","skoo'-bal-on","Neuter of a presumed derivative of G1519 and G2965 and G906; what is thrown to the dogs, that is, refuse (ordure): - dung."]},{"k":"G4658","v":["Σκύθης","Skuthēs","skoo'-thace","Probably of foreign origin; a Scythene or Scythian, that is, (by implication) a savage: - Scythian."]},{"k":"G4659","v":["σκυθρωπός","skuthrōpos","skoo-thro-pos'","From σκυθρός skuthros (sullen) and a derivative of G3700; angry visaged, that is, gloomy or affecting a mournful appearance: - of a sad countenance."]},{"k":"G4660","v":["σκύλλω","skullō","skool'-lo","Apparently a primary verb; to flay, that is, (figuratively) to harass: - trouble (self)."]},{"k":"G4661","v":["σκῦλον","skulon","skoo'-lon","Neuter from G4660; something stripped (as a hide), that is, booty: - spoil."]},{"k":"G4662","v":["σκωληκόβρωτος","skōlēkobrōtos","sko-lay-kob'-ro-tos","From G4663 and a derivative of G977; worm eaten, that is, diseased with maggots: - eaten of worms."]},{"k":"G4663","v":["σκώληξ","skōlēx","sko'-lakes","Of uncertain derivative; a grub, maggot or earth worm: - worm."]},{"k":"G4664","v":["σμαράγδινος","smaragdinos","smar-ag'-dee-nos","From G4665; consisting of emerald: - emerald."]},{"k":"G4665","v":["σμάραγδος","smaragdos","smar'-ag-dos","Of uncertain derivation; the emerald or green gem so called: - emerald."]},{"k":"G4666","v":["σμύρνα","smurna","smoor'-nah","Apparently strengthened for G3464; myrrh: - myrrh."]},{"k":"G4667","v":["Σμύρνα","Smurna","smoor'-nah","The same as G4666; Smyrna, a place in Asia Minor: - Smyrna."]},{"k":"G4668","v":["Σμυρναῖος","Smurnaios","smmor-nah'-yos","From G4667; a Smyrnaean: - in Smyrna."]},{"k":"G4669","v":["σμυρνίζω","smurnizō","smoor-nid'-zo","From G4667; to tincture with myrrh, that is, embitter (as a narcotic): - mingle with myrrh."]},{"k":"G4670","v":["Σόδομα","Sodoma","sod'-om-ah","Plural, of Hebrew origin [H5467]; Sodoma (that is, Sedom), a place in Palestine: - Sodom."]},{"k":"G4671","v":["σοί","soi","soy","Dative case of G4771; to thee: - thee, thine own, thou, thy."]},{"k":"G4672","v":["Σολομών, Σολομῶν","Solomōn    Solomōn","sol-om-one'","Of Hebrew origin [H8010]; Solomon (that is, Shelomoh), the son of David: - Solomon."]},{"k":"G4673","v":["σορός","soros","sor-os'","Probably akin to the base of G4987; a funereal receptacle (urn, coffin), that is, (by analogy) a bier: - bier."]},{"k":"G4674","v":["σός","sos","sos","From G4771; thine: - thine (own), thy (friend)."]},{"k":"G4675","v":["σοῦ","sou","soo","Genitive case of G4771; of thee, thy: - X home, thee, thine (own), thou, thy."]},{"k":"G4676","v":["σουδάριον","soudarion","soo-dar'-ee-on","Of Latin origin; a sudarium (sweat cloth), that is, towel (for wiping the perspiration from the face, or binding the face of a corpse): - handerchief, napkin."]},{"k":"G4677","v":["Σουσάννα","Sousanna","soo-san'-nah","Of Hebrew origin [H7799] (feminine); lily; Susannah (that is, Shoshannah), an Israelitess: - Susanna."]},{"k":"G4678","v":["σοφία","sophia","sof-ee'-ah","From G4680; wisdom (higher or lower, worldly or spiritual): - wisdom."]},{"k":"G4679","v":["σοφίζω","sophizō","sof-id'-zo","From G4680; to render wise; in a sinister acceptation, to form “sophisms”, that is, continue plausible error: - cunningly devised, make wise."]},{"k":"G4680","v":["σοφός","sophos","sof-os'","Akin to σαφής saphēs (clear); wise (in a most general application): - wise. Compare G5429."]},{"k":"G4681","v":["Σπανία","Spania","span-ee'-ah","Probably of foreign origin; Spania, a region of Europe: - Spain."]},{"k":"G4682","v":["σπαράσσω","sparassō","spar-as'-so","Prolongation from σπαίρω spairō̄ (to gasp; apparently strengthened from G4685 through the idea of spasmodic contraction); to mangle, that is, convulse with epilepsy: - rend, tear."]},{"k":"G4683","v":["σπαργανόω","sparganoō","spar-gan-o'-o","From σπάργανον sparganon (a strip; from a derivative of the base of G4682 meaning to strap or wrap with strips); to swathe (an infant after the Oriental custom): - wrap in swaddling clothes."]},{"k":"G4684","v":["σπαταλάω","spatalaō","spat-al-ah'-o","From σπατάλη spatalē (luxury); to be voluptuous: - live in pleasure, be wanton."]},{"k":"G4685","v":["σπάω","spaō","spah'-o","A primary verb; to draw: - draw (out)."]},{"k":"G4686","v":["σπεῖρα","speira","spi'-rah","Of immediate Latin origin, but ultimately a derivative of G138 in the sense of its cognate, G1507; a coil (spira, “spire”), that is, (figuratively) a mass of men (a Roman military cohort; also [by analogy] a squad of Levitical janitors): - band."]},{"k":"G4687","v":["σπείρω","speirō","spi'-ro","Probably strengthened from G4685 (through the idea of extending); to scatter, that is, sow (literally or figuratively): - sow (-er), receive seed."]},{"k":"G4688","v":["σπεκουλάτωρ","spekoulatōr","spek-oo-lat'-ore","Of Latin origin; a speculator, that is, military scout (spy or [by extension] life guardsman): - executioner."]},{"k":"G4689","v":["σπένδω","spendō","spen'-do","Apparently a primary verb; to pour out as a libation, that is, (figuratively) to devote (one’s life or blood, as a sacrifice) (“spend”): - (be ready to) be offered."]},{"k":"G4690","v":["σπέρμα","sperma","sper'-mah","From G4687; somethng sown, that is, seed (including the male “sperm”); by implication offspring; specifically a remnant (figuratively as if kept over for planting): - issue, seed."]},{"k":"G4691","v":["σπερμολόγος","spermologos","sper-mol-og'-os","From G4690 and G3004; a seed picker (as the crow), that is, (figuratively) a sponger, loafer (specifically a gossip or trifler in talk): - babbler."]},{"k":"G4692","v":["σπεύδω","speudō","spyoo'-do","Probably strengthened from G4228; to “speed” (“study”), that is, urge on (diligently or earnestly); by implication to await eagerly: - (make, with) haste unto."]},{"k":"G4693","v":["σπήλαιον","spēlaion","spay'-lah-yon","Neuter of a presumed derivation of σπέος speos (a grotto); a cavern; by implication a hiding place or resort: - cave, den."]},{"k":"G4694","v":["σπιλάς","spilas","spee-las'","Of uncertain derivation; a ledge or reef of rock in the sea: - spot [by confusion with G4696]."]},{"k":"G4695","v":["σπιλόω","spiloō","spee-lo'-o","From G4696; to stain or soil (literally or figuratively): - defile, spot."]},{"k":"G4696","v":["σπίλος","spilos","spee'-los","Of uncertain derivation; a stain or blemish, that is, (figuratively) defect, disgrace: - spot."]},{"k":"G4697","v":["σπλαγχνίζομαι","splagchnizomai","splangkh-nid'-zom-ahee","Middle voice from G4698; to have the bowels yearn, that is, (figuratively) feel sympathy, to pity: - have (be moved with) compassion."]},{"k":"G4698","v":["σπλάγχνον","splagchnon","splangkh'-non","Probably strengthened from σπλήν splēn (the spleen); an intestine (plural); figuratively pity or sympathy: - bowels, inward affection, + tender mercy."]},{"k":"G4699","v":["σπόγγος","spoggos","spong'-gos","Perhaps of foreign origin; a “sponge”: - spunge."]},{"k":"G4700","v":["σποδός","spodos","spod-os'","Of uncertain derivation; ashes: - ashes."]},{"k":"G4701","v":["σπορά","spora","spor-ah'","From G4687; a sowing, that is, (by implication) parentage: - seed."]},{"k":"G4702","v":["σπόριμος","sporimos","spor'-ee-mos","From G4703; sown, that is, (neuter plural) a planted field: - corn (-field)."]},{"k":"G4703","v":["σπόρος","sporos","spor'-os","From G4687; a scattering (of seed), that is, (concretely) seed (as sown): - seed (X sown)."]},{"k":"G4704","v":["σπουδάζω","spoudazō","spoo-dad'-zo","From G4710; to use speed, that is, to make effort, be prompt or earnest: - do (give) diligence, be diligent (forward), endeavour, labour, study."]},{"k":"G4705","v":["σπουδαῖος","spoudaios","spoo-dah'-yos","From G4710; prompt, energetic, earnest: - diligent."]},{"k":"G4706","v":["σπουδαιότερον","spoudaioteron","spoo-dah-yot'-er-on","Neuter of G4707 as adverb; more earnestly than others), that is, very promptly: - very diligently."]},{"k":"G4707","v":["σπουδαιότερος","spoudaioteros","spoo-dah-yot'-er-os","Comparative of G4705; more prompt, more earnest: - more diligent (forward)."]},{"k":"G4708","v":["σπουδαιοτέρως","spoudaioterōs","spoo-dah-yot-er'-oce","Adverb from G4707; more speedily, that is, sooner than otherwise: - more carefully."]},{"k":"G4709","v":["σπουδαίως","spoudaiōs","spoo-dah'-yoce","Adverb from G4705; earnestly, promptly: - diligently, instantly."]},{"k":"G4710","v":["σπουδή","spoudē","spoo-day'","From G4692; “speed”, that is, (by implication) despatch, eagerness, earnestness: - business, (earnest) care (-fulness), diligence forwardness, haste."]},{"k":"G4711","v":["σπυρίς","spuris","spoo-rece'","From G4687 (as woven); a hamper or lunch receptacle: - basket."]},{"k":"G4712","v":["στάδιον","stadion","stad'-ee-on","Or the masculine plural form, στάδιος stadios stad'-ee-os. From the base of G2476 (as fixed); a stade or certain measure of distance; by implication a stadium or race course: - furlong, race."]},{"k":"G4713","v":["στάμνος","stamnos","stam'-nos","From the base of G2476 (as stationary); a jar or earthen tank: - pot."]},{"k":"G4714","v":["στάσις","stasis","stas'-is","From the base of G2476; a standing (properly the act), that is, (by analogy) position (existence); by implication a popular uprising; figuratively controversy: - dissension, insurrection, X standing, uproar."]},{"k":"G4715","v":["στατήρ","statēr","stat-air'","From the base of G2746; a stander (standard of value), that is, (specifically) a stater or certain coin: - piece of money."]},{"k":"G4716","v":["σταυρός","stauros","stow-ros'","From the base of G2476; a stake or post (as set upright), that is, (specifically) a pole or cross (as an instrument of capital punishment); figuratively exposure to death, that is, self denial; by implication the atonement of Christ: - cross."]},{"k":"G4717","v":["σταυρόω","stauroō","stow-ro'-o","From G4716; to impale on the cross; figuratively to extinguish (subdue) passion or selfishness: - crucify."]},{"k":"G4718","v":["σταφυλή","staphulē","staf-oo-lay'","Probably from the base of G4735; a cluster of grapes (as if intertwined): - grapes."]},{"k":"G4719","v":["στάχυς","stachus","stakh'-oos","From the base of G2476; a head of grain (as standing out from the stalk): - ear (of corn)."]},{"k":"G4720","v":["Στάχυς","Stachus","stakh'-oos","The same as G4719; Stachys, a Christian: - Stachys."]},{"k":"G4721","v":["στέγη","stegē","steg'-ay","Strengthened from a primary word τέγος tegos (a “thatch” or “deck” of building); a roof: - roof."]},{"k":"G4722","v":["στέγω","stegō","steg'-o","From G4721; to roof over, that is, (figuratively) to cover with silence (endure patiently): - (for-) bear, suffer."]},{"k":"G4723","v":["στείρος","steiros","sti'-ros","A contraction from G4731 (as stiff and unnatural); “sterile”: - barren."]},{"k":"G4724","v":["στέλλω","stellō","stel'-lo","Probably strengthened from the base of G2476; properly to set fast (“stall”), that is, (figuratively) to repress (reflexively abstain from associating with): - avoid, withdraw self."]},{"k":"G4725","v":["στέμμα","stemma","stem'-mah","From the base of G4735; a wreath for show: - garland."]},{"k":"G4726","v":["στεναγμός","stenagmos","sten-ag-mos'","From G4727; a sigh: - groaning."]},{"k":"G4727","v":["στενάζω","stenazō","sten-ad'-zo","From G4728; to make (intransitively be) in straits, that is, (by implication) to sigh, murmur, pray inaudibly: - with grief, groan, grudge, sigh."]},{"k":"G4728","v":["στενός","stenos","sten-os'","Probably from the base of G2476; narrow (from obstacles standing close about): - strait."]},{"k":"G4729","v":["στενοχωρέω","stenochōreō","sten-okh-o-reh'-o","From the same as G4730; to hem in closely, that is, (figuratively) cramp: - distress, straiten."]},{"k":"G4730","v":["στενοχωρία","stenochōria","sten-okh-o-ree'-ah","From a compound of G4728 and G5561; narrowness of room, that is, (figuratively) calamity: - anguish, distress."]},{"k":"G4731","v":["στερεός","stereos","ster-eh-os'","From G2476; stiff, that is, solid, stable (literally or figuratively): - stedfast, strong, sure."]},{"k":"G4732","v":["στερεόω","stereoō","ster-eh-o'-o","From G4731; to solidify, that is, confirm (literally or figuratively): - establish, receive strength, make strong."]},{"k":"G4733","v":["στερέωμα","stereōma","ster-eh'-o-mah","From G4732; something established, that is, (abstractly) confirmation (stability): - stedfastness."]},{"k":"G4734","v":["Στεφανᾶς","Stephanas","stef-an-as'","Probably contraction for στεφανωτός stephanōtos (crowned; from G4737); Stephanas, a Christian: - Stephanas."]},{"k":"G4735","v":["στέφανος","stephanos","stef'-an-os","From an apparently primary “stepho” (to twine or wreathe); a chaplet (as a badge of royalty, a prize in the public games or a symbol of honor generally; but more conspicuous and elaborate than the simple fillet, G1238), literally or figuratively: - crown."]},{"k":"G4736","v":["Στέφανος","Stephanos","stef'-an-os","The same as G4735; Stephanus, a Christian: - Stephen."]},{"k":"G4737","v":["στεφανόω","stephanoō","stef-an-o'-o","From G4735; to adorn with an honorary wreath (literally or figuratively): - crown."]},{"k":"G4738","v":["στῆθος","stēthos","stay'-thos","From G2476 (as standing prominently); the (entire external) bosom, that is, chest: - breast."]},{"k":"G4739","v":["στήκω","stēkō","stay'-ko","From the perfect tense of G2476; to be stationary, that is, (figuratively) to persevere: - stand (fast)."]},{"k":"G4740","v":["στηριγμός","stērigmos","stay-rig-mos'","From G4741; stability (figuratively): - stedfastness"]},{"k":"G4741","v":["στηρίζω","stērizō","stay-rid'-zo","From a presumed derivative of G2476 (like G4731); to set fast, that is, (literally) to turn resolutely in a certain direction, or (figuratively) to confirm: - fix, (e-) stablish, stedfastly set, strengthen."]},{"k":"G4742","v":["στίγμα","stigma","stig'-mah","From a primary word στίζω stizō (to “stick”, that is, prick); a mark incised or punched (for recognition of ownership), that is, (figuratively) scar of service: - mark."]},{"k":"G4743","v":["στιγμή","stigmē","stig-may'","Feminine of G4742; a point of time, that is, an instant: - moment."]},{"k":"G4744","v":["στίλβω","stilbō","stil'-bo","Apparently a primary verb; to gleam, that is, flash intensely: - shining."]},{"k":"G4745","v":["στοά","stoa","sto-ah'","Probably from G2476; a colonnade or interior piazza: - porch."]},{"k":"G4746","v":["στοιβάς","stoibas","stoy-bas'","From a primary word στείβω steibō (to “step” or “stamp”); a spread (as if tramped flat) of loose materials for a couch, that is, (by implication) a bough of a tree so employed: - branch."]},{"k":"G4747","v":["στοιχεῖον","stoicheion","stoy-khi'-on","Neuter of a presumed derivative of the base of G4748; something orderly in arrangement, that is, (by implication) a serial (basal, fundamental, initial) constituent (literally), proposition (figuratively): - element, principle, rudiment."]},{"k":"G4748","v":["στοιχέω","stoicheō","stoy-kheh'-o","From a derivative of στείχω steichō̄ (to range in regular line); to march in (military) rank (keep step), that is, (figuratively) to conform to virtue and piety: - walk (orderly)."]},{"k":"G4749","v":["στολή","stolē","stol-ay'","From G4724; equipment, that is, (specifically) a “stole” or long fitting gown (as a mark of dignity): - long clothing (garment), (long) robe."]},{"k":"G4750","v":["στόμα","stoma","stom'-a","Probably stregthened from a presumed derivative of the base of G5114; the mouth (as if a gash in the face); by implication language (and its relations); figuratively an opening (in the earth); specifically the front or edge (of a weapon): - edge, face, mouth."]},{"k":"G4751","v":["στόμαχος","stomachos","stom'-akh-os","From G4750; an orifice (the gullet), that is, (specifically) the “stomach”: - stomach."]},{"k":"G4752","v":["στρατεία","strateia","strat-i'-ah","From G4754; military service, that is, (figuratively) the apostolic career (as one of hardship and danger): - warfare."]},{"k":"G4753","v":["στράτευμα","strateuma","strat'-yoo-mah","From G4754; an armament, that is, (by implication) a body of troops (more or less extensive or systematic): - army, soldier, man of war."]},{"k":"G4754","v":["στρατεύομαι","strateuomai","strat-yoo'-om-ahee","Middle voice from the base of G4756; to serve in a military campaign; figuratively to execute the apostolate (with its arduous duties and functions), to contend with carnal inclinations: - soldier, (go to) war (-fare)."]},{"k":"G4755","v":["στρατηγός","stratēgos","strat-ay-gos'","From the base of G4756 and G71 or G2233; a general, that is, (by implication or analogy) a (military) governor (praetor), the chief (praefect) of the (Levitical) temple wardens: - captain, magistrate."]},{"k":"G4756","v":["στρατία","stratia","strat-ee'-ah","Feminine of a derivative of στρατός stratos (an army; from the base of G4766, as encamped); camp likeness, that is, an army, that is, (figuratively) the angels, the celestial luminaries: - host."]},{"k":"G4757","v":["στρατιώτης","stratiōtēs","strat-ee-o'-tace","From a presumed derivative of the same as G4756; a camperout, that is, a (common) warrior (literally or figuratively): - soldier."]},{"k":"G4758","v":["στρατολογέω","stratologeō","strat-ol-og-eh'-o","From a compound of the base of G4756 and G3004 (in its original sense); to gather (or select) as a warrior, that is, enlist in the army: - choose to be a soldier."]},{"k":"G4759","v":["στρατοπεδάρχης","stratopedarchēs","strat-op-ed-ar'-khace","From G4760 and G757; a ruler of an army, that is, (specifically) a Praetorian praefect: - captain of the guard."]},{"k":"G4760","v":["στρατόπεδον","stratopedon","strat-op'-ed-on","From the base of G4756 and the same as G3977; a camping ground, that is, (by implication) a body of troops: - army."]},{"k":"G4761","v":["στρεβλόω","strebloō","streb-lo'-o","From a derivative of G4762; to wrench, that is, (specifically) to torture (by the rack), but only figuratively to pervert: - wrest."]},{"k":"G4762","v":["στρέφω","strephō","stref'-o","Strengthened from the base of G5157; to twist, that is, turn quite around or reverse (literally or figuratively): - convert, turn (again, back again, self, self about)."]},{"k":"G4763","v":["στρηνιάω","strēniaō","stray-nee-ah'-o","From a presumed derivative of G4764; to be luxurious: - live deliciously."]},{"k":"G4764","v":["στρῆνος","strēnos","stray'-nos","Akin to G4731; a “straining”, “strenuousness” or “strength”, that is, (figuratively) luxury (voluptuousness): - delicacy."]},{"k":"G4765","v":["στρουθίον","strouthion","stroo-thee'-on","Diminutive of στρουθός strouthos (a sparrow); a little sparrow: - sparrow."]},{"k":"G4766","v":["στρώννυμι","strōnnumi","strone'-noo-mee","Or a simpler form στρωννύω strōnnuō strone'-noo'-o, prolonged from a still simpler form στρόω stroō stro'-o (used only as an alternate in certain tenses; probably akin to G4731 through the idea of positing); to “strew”, that is, spread (as a carpet or couch): - make bed, furnish, spread, strew."]},{"k":"G4767","v":["στυγνητός","stugnētos","stoog-nay-tos'","From a derivative of an obsolete, apparently primary, word στύγω stugō (to hate); hated, that is, odious: - hateful."]},{"k":"G4768","v":["στυγνάζω","stugnazō","stoog-nad'-zo","From the same as G4767; to render gloomy, that is, (by implication) glower (be overcast with clouds, or sombreness of speech): - lower, be sad."]},{"k":"G4769","v":["στύλος","stulos","stoo'-los","From στύω stuō (to stiffen; properly akin to the base of G2476); a post (“style”), that is, (figuratively) support: - pillar."]},{"k":"G4770","v":["Στωΐκός","Stōikos","sto-ik-os'","From G4745; a “stoic” (as occupying a particular porch in Athens), that is, adherent of a certain philosophy: - Stoick."]},{"k":"G4771","v":["σύ","su","soo","The personal pronoun of the second person singular; thou: - thou. See also G4571, G4671, G4675; and for the plur. G5209, G5210, G5213, G5216."]},{"k":"G4772","v":["συγγένεια","suggeneia","soong-ghen'-i-ah","From G4773; relationship, that is, (concretely) relatives: - kindred."]},{"k":"G4773","v":["συγγενής","suggenēs","soong-ghen-ace'","From G4862 and G1085; a relative (by blood); by extension a fellow countryman: - cousin, kin (-sfolk, -sman)."]},{"k":"G4774","v":["συγγνώμη","suggnōmē","soong-gno'-may","From a compound of G4862 and G1097; fellow knowledge, that is, concession: - permission."]},{"k":"G4775","v":["συγκάθημαι","sugkathēmai","soong-kath'-ay-mahee","From G4862 and G2521; to seat oneself in company with: - sit with."]},{"k":"G4776","v":["συγκαθίζω","sugkathizō","soong-kath-id'-zo","From G4862 and G2523; to give (or take) a seat in company with: - (make) sit (down) together."]},{"k":"G4777","v":["συγκακοπαθέω","sugkakopatheō","soong-kak-op-ath-eh'-o","From G4862 and G2553; to suffer hardship in company with: - be partaker of afflictions."]},{"k":"G4778","v":["συγκακουχέω","sugkakoucheō","soong-kak-oo-kheh'-o","From G4862 and G2558; to maltreat in company with, that is, (passively) endure persecution together: - suffer affliction with."]},{"k":"G4779","v":["συγκαλέω","sugkaleō","soong-kal-eh'-o","From G4862 and G2564; to convoke: - call together."]},{"k":"G4780","v":["συγκαλύπτω","sugkaluptō","soong-kal-oop'-to","From G4862 and G2572; to conceal altogether: - cover."]},{"k":"G4781","v":["συγκάμπτω","sugkamptō","soong-kamp'-to","From G4862 and G2578; to bend together, that is, (figuratively) to afflict: - bow down."]},{"k":"G4782","v":["συγκαταβαίνω","sugkatabainō","soong-kat-ab-ah'ee-no","From G4862 and G2597; to descend in company with: - go down with."]},{"k":"G4783","v":["συγκατάθεσις","sugkatathesis","soong-kat-ath'-es-is","From G4784; a deposition (of sentiment) in company with, that is, (figuratively) accord with: - agreement."]},{"k":"G4784","v":["συγκατατίθεμαι","sugkatatithemai","soong-kat-at-ith'-em-ahee","Middle voice from G4862 and G2698; to deposit (one’s vote or opinion) in company with, that is, (figuratively) to accord with: - consent."]},{"k":"G4785","v":["συγκαταψηφίζω","sugkatapsēphizō","soong-kat-aps-ay-fid'-zo","From G4862 and a compound of G2596 and G5585; to count down in company with, that is, enroll among: - number with."]},{"k":"G4786","v":["συγκεράννυμι","sugkerannumi","soong-ker-an'-noo-mee","From G4862 and G2767; to commingle, that is, (figuratively) to combine or assimilate: - mix with, temper together."]},{"k":"G4787","v":["συγκινέω","sugkineō","soong-kin-eh'-o","From G4682 and G2795; to move together, that is, (specifically) to excite as a mass (to sedition): - stir up."]},{"k":"G4788","v":["συγκλείω","sugkleiō","soong-kli'-o","From G4862 and G2808; to shut together, that is, include or (figuratively) embrace in a common subjection to: - conclude, inclose, shut up."]},{"k":"G4789","v":["συγκληρονόμος","sugklēronomos","soong-klay-ron-om'-os","From G4862 and G2818; a co-heir, that is, (by analogy) participant in common: - fellow (joint) -heir, heir together, heir with."]},{"k":"G4790","v":["συγκοινωνέω","sugkoinōneō","soong-koy-no-neh'-o","From G4862 and G2841; to share in company with, that is, co-participate in: - communicate (have fellowship) with, be partaker of."]},{"k":"G4791","v":["συγκοινωνός","sugkoinōnos","soong-koy-no-nos'","From G4862 and G2844; a co-participant: - companion, partake (-r, -r with)."]},{"k":"G4792","v":["συγκομίζω","sugkomizō","soong-kom-id'-zo","From G4862 and G2865; to convey together, that is, collect or bear away in company with others: - carry."]},{"k":"G4793","v":["συγκρίνω","sugkrinō","soong-kree'-no","From G4862 and G2919; to judge of one thing in connection with another, that is, combine (spiritual ideas with appropriate expressions) or collate (one person with another by way of contrast or resemblance): - compare among (with)."]},{"k":"G4794","v":["συγκύπτω","sugkuptō","soong-koop'-to","From G4862 and G2955; to stoop altogether, that is, be completely overcome by: - bow together."]},{"k":"G4795","v":["συγκυρία","sugkuria","soong-koo-ree'-ah","From a compound of G4862 and κυρέω kureō (to light or happen; from the base of G2962); concurrence, that is, accident: - chance."]},{"k":"G4796","v":["συγχαίρω","sugchairō","soong-khah'ee-ro","From G4862 and G5463; to sympathize in gladness, congratulate: - rejoice in (with)."]},{"k":"G4797","v":["συγχέω","sugcheō","soong-kheh'-o","Or συγχύνω sugchunō soong-khoo'-no. From G4862 and χέω cheō (to pour) or its alternate; to commingle promiscuously, that is, (figuratively) to throw (an assembly) into disorder, to perplex (the mind): - confound, confuse, stir up, be in an uproar."]},{"k":"G4798","v":["συγχράομαι","sugchraomai","soong-khrah'-om-ahee","From G4862 and G5530; to use jointly, that is, (by implication) to hold intercourse in common: - have dealings with."]},{"k":"G4799","v":["σύγχυσις","sugchusis","soong'-khoo-sis","From G4797; commixture, that is, (figuratively) riotous disturbance: - confusion."]},{"k":"G4800","v":["συζάω","suzaō","sood-zah'-o","From G4862 and G2198; to continue to live in common with, that is, co-survive (literally or figuratively): - live with."]},{"k":"G4801","v":["συζεύγνυμι","suzeugnumi","sood-zyoog'-noo-mee","From G4862 and the base of G2201; to yoke together, that is, (figuratively) conjoin (in marriage): - join together."]},{"k":"G4802","v":["συζητέω","suzēteō","sood-zay-teh'-o","From G4862 and G2212; to investigate jointly, that is, discuss, controvert, cavil: - dispute (with), enquire, question (with), reason (together)."]},{"k":"G4803","v":["συζήτησις","suzētēsis","sood-zay'-tay-sis","From G4802; mutual questioning, that is, discussion: - disputation (-ting), reasoning."]},{"k":"G4804","v":["συζητητής","suzētētēs","sood-zay-tay-tace'","From G4802; a disputant, that is, sophist: - disputer."]},{"k":"G4805","v":["σύζυγος","suzugos","sood'-zoo-gos","From G4801; co-yoked, that is, (figuratively) as noun, a colleague; probably rather as proper name; Syzygus, a Christian: - yokefellow."]},{"k":"G4806","v":["συζωοποιέω","suzōopoieō","sood-zo-op-oy-eh'-o","From G4862 and G2227; to reanimate conjointly with (figuratively): - quicken together with."]},{"k":"G4807","v":["συκάμινος","sukaminos","soo-kam'-ee-nos","Of Hebrew origin [H8256] in imitation of G4809; a sycamore or fig tree: - sycamine tree."]},{"k":"G4808","v":["συκῆ","sukē","soo-kay'","From G4810; a fig tree: - fig tree."]},{"k":"G4809","v":["συκομωραία","sukomōraia","soo-kom-o-rah'-yah","From G4810 and μόρον moron (the mulberry); the “sycamore” or fig tree: - sycamore tree. Compare G4807."]},{"k":"G4810","v":["σῦκον","sukon","soo'-kon","Apparently a primary word; a fig: - fig."]},{"k":"G4811","v":["συκοφαντέω","sukophanteō","soo-kof-an-teh'-o","From a compound of G4810 and a derivative of G5316; to be a fig informer (reporter of the law forbidding the exportation of figs from Greece), “sycopant”, that is, (generally and by extension) to defraud (exact unlawfully, extort): - accuse falsely, take by false accusation."]},{"k":"G4812","v":["συλαγωγέω","sulagōgeō","soo-lag-ogue-eh'-o","From the base of G4813 and (the reduplicated form of) G71; to lead away as booty, that is, (figuratively) seduce: - spoil."]},{"k":"G4813","v":["συλάω","sulaō","soo-lah'-o","From a derivative of σύλλω sullō̄ (to strip; probably akin to G138; compare G4661); to despoil: - rob."]},{"k":"G4814","v":["συλλαλέω","sullaleō","sool-lal-eh'-o","From G4862 and G2980; to talk together, that is, converse: - commune (confer, talk) with, speak among."]},{"k":"G4815","v":["συλλαμβάνω","sullambanō","sool-lam-ban'-o","From G4862 and G2983; to clasp, that is, seize (arrest, capture); specifically to conceive (literally or figuratively); by implication to aid: - catch, conceive, help, take."]},{"k":"G4816","v":["συλλέγω","sullegō","sool-leg'-o","From G4862 and G3004 in its original sense; to collect: - gather (together, up)."]},{"k":"G4817","v":["συλλογίζομαι","sullogizomai","sool-log-id'-zom-ahee","From G4862 and G3049; to reckon together (with oneself), that is, deliberate: - reason with."]},{"k":"G4818","v":["συλλυπέω","sullupeō","sool-loop-eh'-o","From G4862 and G3076; to afflict jointly, that is, (passively) sorrow at (on account of) some one: - be grieved."]},{"k":"G4819","v":["συμβαίνω","sumbainō","soom-bah'ee-no","From G4862 and the base of G939; to walk (figuratively transpire) together, that is, concur (take place): - be (-fall), happen (unto)."]},{"k":"G4820","v":["συμβάλλω","sumballō","soom-bal'-lo","From G4862 and G906; to combine, that is, (in speaking) to converse, consult, dispute, (mentally) to consider, (by implication) to aid, (personally) to join, attack: - confer, encounter, help, make, meet with, ponder."]},{"k":"G4821","v":["συμβασιλεύω","sumbasileuō","soom-bas-il-yoo'-o","From G4862 and G936; to be co-regent (figuratively): - reign with."]},{"k":"G4822","v":["συμβιβάζω","sumbibazō","soom-bib-ad'-zo","From G4862 and βιβάζω bibazō (to force; causatively [by reduplication] of the base of G939); to drive together, that is, unite (in association or affection), (mentally) to infer, show, teach: - compact, assuredly, gather, instruct, knit together, prove."]},{"k":"G4823","v":["συμβουλεύω","sumbouleuō","soom-bool-yoo'-o","From G4862 and G1011; to give (or take) advice jointly, that is, recommend, deliberate or determine: - consult, (give, take) counsel (together)."]},{"k":"G4824","v":["συμβούλιον","sumboulion","soom-boo'-lee-on","Neuter of a presumed derivative of G4825; advisement; specifically a deliberative body, that is, the provincial assessors or lay court: - consultation, counsel, council."]},{"k":"G4825","v":["σύμβουλος","sumboulos","soom'-boo-los","From G4862 and G1012; a consultor, that is, adviser: - counsellor."]},{"k":"G4826","v":["Συμεών","Sumeōn","soom-eh-one'","From the same as G4613; Symeon (that is, Shimon), the name of five Israelites: - Simeon, Simon."]},{"k":"G4827","v":["συμμαθητής","summathētēs","soom-math-ay-tace'","From a compound of G4862 and G3129; a co-learner (of Christianity): - fellowdisciple."]},{"k":"G4828","v":["συμμαρτυρέω","summartureō","soom-mar-too-reh'-o","From G4862 and G3140; to testify jointly, that is, corroborate by (concurrent) evidence: - testify unto, (also) bear witness (with)."]},{"k":"G4829","v":["συμμερίζομαι","summerizomai","soom-mer-id'-zom-ahee","Middle voice from G4862 and G3307; to share jointly, that is, participate in: - be partaker with."]},{"k":"G4830","v":["συμμέτοχος","summetochos","soom-met'-okh-os","From G4862 and G3353; a co-participant: - partaker."]},{"k":"G4831","v":["συμμιμητής","summimētēs","soom-mim-ay-tace'","From a presumed compound of G4862 and G3401; a co-imitator, that is, fellow votary: - follower together."]},{"k":"G4832","v":["συμμορφός","summorphos","soom-mor-fos'","From G4862 and G3444; jointly formed, that is, (figuratively) similar: - conformed to, fashioned like unto."]},{"k":"G4833","v":["συμμορφόω","summorphoō","soom-mor-fo'-o","From G4832; to render like, that is, (figuratively) to assimilate: - make conformable unto."]},{"k":"G4834","v":["συμπαθέω","sumpatheō","soom-path-eh'-o","From G4835; to feel “sympathy” with, that is, (by implication) to commiserate: - have compassion, be touched with a feeling of."]},{"k":"G4835","v":["συμπαθής","sumpathēs","soom-path-ace'","From G4841; having a fellow feeling (“sympathetic”), that is, (by implication) mutually commiserative: - having compassion one of another."]},{"k":"G4836","v":["συμπαραγίνομαι","sumparaginomai","soom-par-ag-in'-om-ahee","From G4862 and G3854; to be present together, that is, to convene; by implication to appear in aid: - come together, stand with."]},{"k":"G4837","v":["συμπαρακαλέω","sumparakaleō","soom-par-ak-al-eh'-o","From G4862 and G3870; to console jointly: - comfort together."]},{"k":"G4838","v":["συμπαραλαμβάνω","sumparalambanō","soom-par-al-am-ban'-o","From G4862 and G3880; to take along in company: - take with."]},{"k":"G4839","v":["συμπαραμένω","sumparamenō","soom-par-am-en'-o","From G4862 and G3887; to remain in company, that is, still live: - continue with."]},{"k":"G4840","v":["συμπάρειμι","sumpareimi","soom-par'-i-mee","From G4862 and G3918; to be at hand together, that is, now present: - be here present with."]},{"k":"G4841","v":["συμπάσχω","sumpaschō","soom-pas'-kho","From G4862 and G3958 (including its alternate); to experience pain jointly or of the same kind (specifically persecution; to “sympathize”): - suffer with."]},{"k":"G4842","v":["συμπέμπω","sumpempō","soom-pem'-po","From G4862 and G3992; to despatch in company: - send with."]},{"k":"G4843","v":["συμπεριλαμβάνω","sumperilambanō","soom-per-ee-lam-ban'-o","From G4862 and a compound of G4012 and G2983; to take by inclosing altogether, that is, earnestly throw the arms about one: - embrace."]},{"k":"G4844","v":["συμπίνω","sumpinō","soom-pee'-no","From G4862 and G4095; to partake a beverage in company: - drink with."]},{"k":"G4845","v":["συμπληρόω","sumplēroō","soom-play-ro'-o","From G4862 and G4137; to implenish completely, that is, (of space) to swamp (a boat), or (of time) to accomplish (passively be complete): - (fully) come, fill up."]},{"k":"G4846","v":["συμπνίγω","sumpnigō","soom-pnee'-go","From G4862 and G4155; to strangle completely, that is, (literally) to drown, or (figuratively) to crowd: - choke, throng."]},{"k":"G4847","v":["συμπολίτης","sumpolitēs","soom-pol-ee'-tace","From G4862 and G4177; a native of the same town, that is, (figuratively) co-religionist (fellow Christian): - fellow-citizen."]},{"k":"G4848","v":["συμπορεύομαι","sumporeuomai","soom-por-yoo'-om-ahee","From G4862 and G4198; to journey together; by implication to assemble: - go with, resort."]},{"k":"G4849","v":["συμπόσιον","sumposion","soom-pos'-ee-on","Neuter of a derivative of the alternate of G4844; a drinking party (“symposium”), that is, (by extension) a room of guests: - company."]},{"k":"G4850","v":["συμπρεσβύτερος","sumpresbuteros","soom-pres-boo'-ter-os","From G4862 and G4245; a co-presbyter: - presbyter, also an elder."]},{"k":"G4851","v":["συμφέρω","sumpherō","soom-fer'-o","From G4862 and G5342 (including its alternate); to bear together (contribute), that is, (literally) to collect, or (figuratively) to conduce; especially (neuter participle as noun) advantage: - be better for, bring together, be expedient (for), be good, (be) profit (-able for)."]},{"k":"G4852","v":["σύμφημι","sumphēmi","soom'-fay-mee","From G4862 and G5346; to say jointly, that is, assent to: - consent unto."]},{"k":"G4853","v":["συμφυλέτης","sumphuletēs","soom-foo-let'-ace","From G4862 and a derivative of G5443; a co-tribesman, that is, native of the same country: - countryman."]},{"k":"G4854","v":["σύμφυτος","sumphutos","soom'-foo-tos","From G4862 and a derivative of G5453; grown along with (connate), that is, (figuratively) closely united to: - planted together."]},{"k":"G4855","v":["συμφύω","sumphuō","soom-foo'-o","From G4862 and G5453; passively to grow jointly: - spring up with."]},{"k":"G4856","v":["συμφωνέω","sumphōneō","soom-fo-neh'-o","From G4859; to be harmonious, that is, (figuratively) to accord (be suitable, concur) or stipulate (by compact): - agree (together, with)."]},{"k":"G4857","v":["συμφόνησις","sumphonēsis","soom-fo'-nay-sis","From G4856; accordance: - concord."]},{"k":"G4858","v":["συμφωνία","sumphōnia","soom-fo-nee'-ah","From G4859; unison of sound (“symphony”), that is, a concert of instruments (harmonious note): - music."]},{"k":"G4859","v":["σύμφωνος","sumphōnos","soom'-fo-nos","From G4862 and G5456; sounding together (alike), that is, (figuratively) accordant (neuter as noun, agreement): - consent."]},{"k":"G4860","v":["συμψηφίζω","sumpsēphizō","soom-psay-fid'-zo","From G4862 and G5585; to compute jointly: - reckon."]},{"k":"G4861","v":["σύμψυχος","sumpsuchos","soom'-psoo-khos","From G4862 and G5590; co-spirited, that is, similar in sentiment: - like-minded."]},{"k":"G4862","v":["σύν","sun","soon","A primary preposition denoting union; with or together (but much closer than G3326 or G3844), that is, by association, companionship, process, resemblance, possession, instrumentality, addition, etc.: - beside, with. In compounds it has similar applications, including completeness."]},{"k":"G4863","v":["συνάγω","sunagō","soon-ag'-o","From G4862 and G71; to lead together, that is, collect or convene; specifically to entertain (hospitably): - + accompany, assemble (selves, together), bestow, come together, gather (selves together, up, together), lead into, resort, take in."]},{"k":"G4864","v":["συναγωγή","sunagōgē","soon-ag-o-gay'","From (the reduplicated form of) G4863; an assemblage of persons; specifically a Jewish “synagogue” (the meeting or the place); by analogy a Christian church: - assembly, congregation, synagogue."]},{"k":"G4865","v":["συναγωνίζομαι","sunagōnizomai","soon-ag-o-nid'-zom-ahee","From G4862 and G75; to struggle in company with, that is, (figuratively) to be a partner (assistant): - strive together with."]},{"k":"G4866","v":["συναθλέω","sunathleō","soon-ath-leh'-o","From G4862 and G118; to wrestle in company with, that is, (figuratively) to seek jointly: - labour with, strive together for."]},{"k":"G4867","v":["συναθροίζω","sunathroizō","soon-ath-royd'-zo","From G4862 and ἀθροίζω athroizō (to hoard); to convene: - call (gather) together."]},{"k":"G4868","v":["συναίρω","sunairō","soon-ah'ee-ro","From G4862 and G142; to make up together, that is, (figuratively) to compute (an account): - reckon, take."]},{"k":"G4869","v":["συναιχμάλωτος","sunaichmalōtos","soon-aheekh-mal'-o-tos","From G4862 and G164; a co-captive: - fellowprisoner."]},{"k":"G4870","v":["συνακολουθέω","sunakoloutheō","soon-ak-ol-oo-theh'-o","From G4862 and G190; to accompany: - follow."]},{"k":"G4871","v":["συναλίζω","sunalizō","soon-al-id'-zo","From G4862 and ἁλίζω halizō (to throng); to accumulate, that is, convene: - assemble together."]},{"k":"G4872","v":["συναναβαίνω","sunanabainō","soon-an-ab-ah'ee-no","From G4862 and G305; to ascend in company with: - come up with."]},{"k":"G4873","v":["συνανάκειμαι","sunanakeimai","soon-an-ak'-i-mahee","From G4862 and G345; to recline in company with (at a meal): - sit (down, at the table, together) with (at meat)."]},{"k":"G4874","v":["συναναμίγνυμι","sunanamignumi","soon-an-am-ig'-noo-mee","From G4862 and a compound of G303 and G3396; to mix up together, that is, (figuratively) associate with: - (have, keep) company (with)."]},{"k":"G4875","v":["συναναπαύομαι","sunanapauomai","soon-an-ap-ow'-om-ahee","Middle voice from G4862 and G373; to recruit oneself in company with: - refresh with."]},{"k":"G4876","v":["συναντάω","sunantaō","soon-an-tah'-o","From G4862 and a derivative of G473; to meet with; figuratively to occur: - befall, meet."]},{"k":"G4877","v":["συνάντησις","sunantēsis","soon-an'-tay-sis","From G4876; a meeting with: - meet."]},{"k":"G4878","v":["συναντιλαμβάνομαι","sunantilambanomai","soon-an-tee-lam-ban'-om-ahee","From G4862 and G482; to take hold of opposite together, that is, co-operate (assist): - help."]},{"k":"G4879","v":["συναπαγω","sunapagō","soon-ap-ag'-o","From G4862 and G520; to take off together, that is, transport with (seduce, passively yield): - carry (lead) away with, condescend."]},{"k":"G4880","v":["συναποθνήσκω","sunapothnēskō","soon-ap-oth-nace'-ko","From G4862 and G599; to decease (literally) in company with, or (figuratively) similarly to: - be dead (die) with."]},{"k":"G4881","v":["συναπόλλυμι","sunapollumi","soon-ap-ol'-loo-mee","From G4862 and G622; to destroy (middle voice or passive voice, be slain) in company with: - perish with."]},{"k":"G4882","v":["συναποστέλλω","sunapostellō","soon-ap-os-tel'-lo","From G4862 and G649; to despatch (on an errand) in company with: - send you."]},{"k":"G4883","v":["συναρμολογέω","sunarmologeō","soon-ar-mol-og-eh'-o","From G4862 and a derivative of a compound of G719 and G3004 (in its original sense of laying); to render close jointed together, that is, organize compactly: - be fitly framed (joined) together."]},{"k":"G4884","v":["συναρπάζω","sunarpazō","soon-ar-pad'-zo","From G4862 and G726; to snatch together, that is, seize: - catch."]},{"k":"G4885","v":["συναυξάνω","sunauxanō","soon-owx-an'-o","From G4862 and G837; to increase (grow up) together: - grow together."]},{"k":"G4886","v":["σύνδεσμος","sundesmos","soon'-des-mos","From G4862 and G1199; a joint tie, that is, ligament, (figuratively) uniting principle, control: - band, bond."]},{"k":"G4887","v":["συνδέω","sundeō","soon-deh'-o","From G4862 and G1210; to bind with, that is, (passively) be a fellow prisoner (figuratively): - be bound with."]},{"k":"G4888","v":["συνδοξάζω","sundoxazō","soon-dox-ad'-zo","From G4862 and G1392; to exalt to dignity in company (that is, similarly) with: - glorify together."]},{"k":"G4889","v":["σύνδουλος","sundoulos","soon'-doo-los","From G4862 and G1401; a co-slave, that is, servitor or ministrant of the same master (human or divine): - fellowservant."]},{"k":"G4890","v":["συνδρομή","sundromē","soon-drom-ay'","From (the alternate of) G4936; a running together, that is, (riotous) concourse: - run together."]},{"k":"G4891","v":["συνεγείρω","sunegeirō","soon-eg-i'-ro","From G4862 and G1453; to rouse (from death) in company with, that is, (figuratively) to revivify (spiritually) in resemblance to: - raise up together, rise with."]},{"k":"G4892","v":["συνέδριον","sunedrion","soon-ed'-ree-on","Neuter of a presumed derivative of a compound of G4862 and the base of G1476; a joint session, that is, (specifically) the Jewish Sanhedrim; by analogy a subordinate tribunal: - council."]},{"k":"G4893","v":["συνείδησις","suneidēsis","soon-i'-day-sis","From a prolonged form of G4894; co-perception, that is, moral consciousness: - conscience."]},{"k":"G4894","v":["συνείδω","suneidō","soon-i'-do","From G4862 and G1492; to see completely; used (like its primary) only in two past tenses, respectively meaning to understand or become aware, and to be conscious or (clandestinely) informed of: - consider, know, be privy, be ware of."]},{"k":"G4895","v":["σύνειμι","suneimi","soon'-i-mee","From G4862 and G1510 (including its various inflections); to be in company with, that is, present at the time: - be with."]},{"k":"G4896","v":["σύνειμ","suneimi","soon'-i-mee","From G4862 and εῖμι eimi (to go); to assemble: - gather together."]},{"k":"G4897","v":["συνεισέρχομαι","suneiserchomai","soon-ice-er'-khom-ahee","From G4862 and G1525; to enter in company with: - go in with, go with into."]},{"k":"G4898","v":["συνέκδημος","sunekdēmos","soon-ek'-day-mos","From G4862 and the base of G1553; a co-absentee from home, that is, fellow traveller: - companion in travel, travel with."]},{"k":"G4899","v":["συνεκλεκτός","suneklektos","soon-ek-lek-tos'","From a compound of G4862 and G1586; chosen in company with, that is, co-elect (fellow Christian): - elected together with."]},{"k":"G4900","v":["συνελαύνω","sunelaunō","soon-el-ow'-no","From G4862 and G1643; to drive together, that is, (figuratively) exhort (to reconciliation): - + set at one again."]},{"k":"G4901","v":["συνεπιμαρτυρέω","sunepimartureō","soon-ep-ee-mar-too-reh'-o","From G4862 and G1957; to testify further jointly, that is, unite in adding evidence: - also bear witness."]},{"k":"G4902","v":["συνέπομαι","sunepomai","soon-ep'-om-ahee","Middle voice from G4862 and a primary word ἕπω hepō (to follow); to attend (travel) in company with: - accompany."]},{"k":"G4903","v":["συνεργέω","sunergeō","soon-erg-eh'-o","From G4904; to be a fellow worker, that is, co-operate: - help (work) with, work (-er) together."]},{"k":"G4904","v":["συνεργός","sunergos","soon-er-gos'","From a presumed compound of G4862 and the base of G2041; a co-laborer, that is, coadjutor: - companion in labour, (fellow-) helper (-labourer, -worker), labourer together with, workfellow."]},{"k":"G4905","v":["συνέρχομαι","sunerchomai","soon-er'-khom-ahee","From G4862 and G2064; to convene, depart in company with, associate with, or (specifically) cohabit (conjugally): - accompany, assemble (with), come (together), come (company, go) with, resort."]},{"k":"G4906","v":["συνεσθίω","sunesthiō","soon-es-thee'-o","From G4862 and G2068 (including its alternate); to take food in company with: - eat with."]},{"k":"G4907","v":["σύνεσις","sunesis","soon'-es-is","From G4920; a mental putting together, that is, intelligence or (concretely) the intellect: - knowledge, understanding."]},{"k":"G4908","v":["συνετός","sunetos","soon-et'-os","From G4920; mentally put (or putting) together, that is, sagacious: - prudent. Compare G5429."]},{"k":"G4909","v":["συνευδοκέω","suneudokeō","soon-yoo-dok-eh'-o","From G4862 and G2106; to think well of in common, that is, assent to, feel gratified with: - allow, assent, be pleased, have pleasure."]},{"k":"G4910","v":["συνευωχέω","suneuōcheō","soon-yoo-o-kheh'-o","From G4862 and a derivative of a presumed compound of G2095 and a derivative of G2192 (meaning to be in good condition, that is, [by implication] to fare well, or feast); to entertain sumptuously in company with, that is, (middle or passive voice) to revel together: - feast with."]},{"k":"G4911","v":["συνεφίστημι","sunephistēmi","soon-ef-is'-tay-mee","From G4862 and G2186; to stand up together, that is, to resist (or assault) jointly: - rise up together."]},{"k":"G4912","v":["συνέχω","sunechō","soon-ekh'-o","From G4862 and G2192; to hold together, that is, to compress (the ears, with a crowd or siege) or arrest (a prisoner); figuratively to compel, perplex, afflict, preoccupy: - constrain, hold, keep in, press, lie sick of, stop, be in a strait, straiten, be taken with, throng."]},{"k":"G4913","v":["συνήδομαι","sunēdomai","soon-ay'-dom-ahee","Middle voice from G4862 and the base of G2237; to rejoice in with oneself, that is, feel satisfaction concerning: - delight."]},{"k":"G4914","v":["συνήθεια","sunētheia","soon-ay'-thi-ah","From a compound of G4862 and G2239; mutual habituation, that is, usage: - custom."]},{"k":"G4915","v":["συνηλικιώτης","sunēlikiōtēs","soon-ay-lik-ee-o'-tace","From G4862 and a derivative of G2244; a co-aged person, that is, alike in years: - equal."]},{"k":"G4916","v":["συνθάπτω","sunthaptō","soon-thap'-to","From G4862 and G2290; to inter in company with, that is, (figuratively) to assimilate spiritually (to Christ by a sepulture as to sin): - bury with."]},{"k":"G4917","v":["συνθλάω","sunthlaō","soon-thlah'-o","From G4862 and θλάω thlaō (to crush); to dash together, that is, shatter: - break."]},{"k":"G4918","v":["συνθλίβω","sunthlibō","soon-thlee'-bo","From G4862 and G2346; to compress, that is, crowd on all sides: - throng."]},{"k":"G4919","v":["συνθρύπτω","sunthruptō","soon-throop'-to","From G4862 and θρύπτω thruptō (to crumble); to crush together, that is, (figuratively) to dispirit: - break."]},{"k":"G4920","v":["συνίημι","suniēmi","soon-ee'-ay-mee","From G4862 and ἵημι hiēmi (to send); to put together, that is, (mentally) to comprehend; by implication to act piously: - consider, understand, be wise."]},{"k":"G4921","v":["συνιστάω, συνιστάνω, συνίστημι","sunistaō    sunistanō    sunistēmi","soon-is-tah'-o, soon-is-tah'-an'-o, soon-is-tah'-ay-mee","From G4862 and G2476 (including its collateral forms); to set together, that is, (by implication) to introduce (favorably), or (figuratively) to exhibit; intransitively to stand near, or (figuratively) to constitute: - approve, commend, consist, make, stand (with)."]},{"k":"G4922","v":["συνοδεύω","sunodeuō","soon-od-yoo'-o","From G4862 and G3593; to travel in company with: - journey with."]},{"k":"G4923","v":["συνοδία","sunodia","soon-od-ee'-ah","From a compound of G4862 and G3598 (“synod”); companionship on a journey, that is, (by implication) a caravan: - company."]},{"k":"G4924","v":["συνοικέω","sunoikeō","soon-oy-key'-o","From G4862 and G3611; to reside together (as a family): - dwell together."]},{"k":"G4925","v":["συνοικοδομέω","sunoikodomeō","soon-oy-kod-om-eh'-o","From G4862 and G3618; to construct, that is, (passively) to compose (in company with other Christians, figuratively): - build together."]},{"k":"G4926","v":["συνομιλέω","sunomileō","soon-om-il-eh'-o","From G4862 and G3656; to converse mutually: - talk with."]},{"k":"G4927","v":["συνομορέω","sunomoreō","soon-om-or-eh'-o","From G4862 and a derivative of a compound of the base of G3674 and the base of G3725; to border together, that is, adjoin: - join hard."]},{"k":"G4928","v":["συνόχη","sunochē","soon-okh'-ay","From G4912; restraint, that is, (figuratively) anxiety: - anguish, distress."]},{"k":"G4929","v":["συντάσσω","suntassō","soon-tas'-so","From G4862 and G5021; to arrange jointly, that is, (figuratively) to direct: - appoint."]},{"k":"G4930","v":["συντέλεια","sunteleia","soon-tel'-i-ah","From G4931; entire completion, that is, consummation (of a dispensation): - end."]},{"k":"G4931","v":["συντελέω","sunteleō","soon-tel-eh'-o","From G4862 and G5055; to complete entirely; generally to execute (literally or figuratively): - end, finish, fulfil, make."]},{"k":"G4932","v":["συντέμνω","suntemnō","soon-tem'-no","From G4862 and the base of G5114; to contract by cutting, that is, (figuratively) do concisely (speedily): - (cut) short."]},{"k":"G4933","v":["συντηρέω","suntēreō","soon-tay-reh'-o","From G4862 and G5083; to keep closely together, that is, (by implication) to conserve (from ruin); mentally to remember (and obey): - keep, observe, preserve."]},{"k":"G4934","v":["συντίθεμαι","suntithemai","soon-tith'-em-ahee","Middle voice from G4862 and G5087; to place jointly, that is, (figuratively) to consent (bargain, stipulate), concur: - agree assent, covenant."]},{"k":"G4935","v":["συντόμως","suntomōs","soon-tom'-oce","Adverb from a derivative of G4932; concisely (briefly): - a few words."]},{"k":"G4936","v":["συντρέχω","suntrechō","soon-trekh'-o","From G4862 and G5143 (including its alternate); to rush together (hastily assemble) or headlong (figuratively): - run (together, with)."]},{"k":"G4937","v":["συντρίβω","suntribō","soon-tree'-bo","From G4862 and the base of G5147; to crush completely, that is, to shatter (literally or figuratively): - break (in pieces), broken to shivers (+ -hearted), bruise."]},{"k":"G4938","v":["σύντριμμα","suntrimma","soon-trim'-mah","From G4937; concussion or utter fracture (properly concretely), that is, complete ruin: - destruction."]},{"k":"G4939","v":["σύντροφος","suntrophos","soon'-trof-os","From G4862 and G5162 (in a passive sense); a fellow nursling, that is, comrade: - brought up with."]},{"k":"G4940","v":["συντυγχάνω","suntugchanō","soon-toong-khan'-o","From G4862 and G5177; to chance together, that is, meet with (reach): - come at."]},{"k":"G4941","v":["Συντύχη","Suntuchē","soon-too'-khay","From G4940; an accident; Syntyche, a Christian female: - Syntyche."]},{"k":"G4942","v":["συνυποκρίνομαι","sunupokrinomai","soon-oo-pok-rin'-om-ahee","From G4862 and G5271; to act hypocritically in concert with: - dissemble with."]},{"k":"G4943","v":["συνυπουργέω","sunupourgeō","soon-oop-oorg-eh'-o","From G4862 and a derivative of a compound of G5259 and the base of G2041; to be a co-auxiliary, that is, assist: - help together."]},{"k":"G4944","v":["συνωδίνω","sunōdinō","soon-o-dee'-no","From G4862 and G5605; to have (parturition) pangs in company (concert, simultaneously) with, that is, (figuratively) to sympathize (in expectation of relief from suffering): - travail in pain together."]},{"k":"G4945","v":["συνωμοσία","sunōmosia","soon-o-mos-ee'-ah","From a compound of G4862 and G3660; a swearing together, that is, (by implication) a plot: - conspiracy."]},{"k":"G4946","v":["Συράκουσαι","Surakousai","soo-rak'-oo-sahee","Plural of uncertain derivation; Syracusae, the capital of Sicily: - Syracuse."]},{"k":"G4947","v":["Συρία","Suria","soo-ree'-ah","Probably of Hebrew origin [H6865]; Syria (that is, Tsyria or Tyre), a region of Asia: - Syria."]},{"k":"G4948","v":["Σύρος","Suros","soo'-ros","From the same as G4947; a Syran (that is, probably Tyrian), a native of Syria: - Syrian."]},{"k":"G4949","v":["Συροφοίνισσα","Surophoinissa","soo-rof-oy'-nis-sah","Feminine of a compound of G4948 and the same as G5403; a Syro-Phaenician woman, that is, a female native of Phaenicia in Syria: - Syrophenician."]},{"k":"G4950","v":["σύρτις","surtis","soor'-tis","From G4951; a shoal (from the sand drawn thither by the waves), that is, the Syrtis Major or great bay on the North coast of Africa: - quicksands."]},{"k":"G4951","v":["σύρω","surō","soo'-ro","Probably akin to G138; to trail: - drag, draw, hale."]},{"k":"G4952","v":["συσπαράσσω","susparassō","soos-par-as'-so","From G4862 and G4682; to rend completely, that is, (by analogy) to convulse violently: - throw down."]},{"k":"G4953","v":["σύσσημον","sussēmon","soos'-say-mon","Neuter of a compound of G4862 and the base of G4591; a sign in common, that is, preconcerted signal: - token."]},{"k":"G4954","v":["σύσσωμος","sussōmos","soos'-so-mos","From G4862 and G4983; of a joint body, that is, (figuratively) a fellow member of the Christian community: - of the same body."]},{"k":"G4955","v":["συστασιαστής","sustasiastēs","soos-tas-ee-as-tace'","From a compound of G4862 and a derivative of G4714; a fellow insurgent: - make insurrection with."]},{"k":"G4956","v":["συστατικός","sustatikos","soos-tat-ee-kos'","From a derivative of G4921; introductory, that is, recommendatory: - of commendation."]},{"k":"G4957","v":["συσταυρόω","sustauroō","soos-tow-ro'-o","From G4862 and G4717; to impale in company with (literally or figuratively): - crucify with."]},{"k":"G4958","v":["συστέλλω","sustellō","soos-tel'-lo","From G4862 and G4724; to send (draw) together, that is, enwrap (enshroud a corpse for burial), contract (an interval): - short, wind up."]},{"k":"G4959","v":["συστενάζω","sustenazō","soos-ten-ad'-zo","From G4862 and G4727; to moan jointly, that is, (figuratively) experience a common calamity: - groan together."]},{"k":"G4960","v":["συστοιχέω","sustoicheō","soos-toy-kheh'-o","From G4862 and G4748; to file together (as soldiers in ranks), that is, (figuratively) to correspond to: - answer to."]},{"k":"G4961","v":["συστρατιώτης","sustratiōtēs","soos-trat-ee-o'-tace","From G4862 and G4757; a co-campaigner, that is, (figuratively) an associate in Christian toil: - fellowsoldier."]},{"k":"G4962","v":["συστρέφω","sustrephō","soos-tref'-o","From G4862 and G4762; to twist together, that is, collect (a bundle, a crowd): - gather."]},{"k":"G4963","v":["συστροφή","sustrophē","soos-trof-ay'","From G4962; a twisting together, that is, (figuratively) a secret coalition, riotous crowd: - + band together, concourse."]},{"k":"G4964","v":["συσχηματίζω","suschēmatizō","soos-khay-mat-id'-zo","From G4862 and a derivative of G4976; to fashion alike, that is, conform to the same pattern (figuratively): - conform to, fashion self according to."]},{"k":"G4965","v":["Συχάρ","Suchar","soo-khar'","Of Hebrew origin [H7941]; Sychar (that is, Shekar), a place in Palestine: - Sychar."]},{"k":"G4966","v":["Συχέμ","Suchem","soo-khar'","Of Hebrew origin [H7927]; Sychem (that is, Shekem), the name of a Canaanite and of a place in Palestine: - Sychem."]},{"k":"G4967","v":["σφαγή","sphagē","sfag-ay'","From G4969; butchery (of animals for food or sacrifice, or [figuratively] of men [destruction]): - slaughter."]},{"k":"G4968","v":["σφάγιον","sphagion","sfag'-ee-on","Neuter of a derivative of G4967; a victim (in sacrifice): - slain beast."]},{"k":"G4969","v":["σφάζω","sphazō","sfad'-zo","A primary verb; to butcher (especially an animal for food or in sacrifice) or (generally) to slaughter, or (specifically) to maim (violently): - kill, slay, wound."]},{"k":"G4970","v":["σφόδρα","sphodra","sfod'-rah","Neuter plural of σφοδρός sphodros (violent; of uncertain derivation) as adverb; vehemently, that is, in a high degree, much: - exceeding (-ly), greatly, sore, very."]},{"k":"G4971","v":["σφοδρῶς","sphodrōs","sfod-roce'","Adverbially from the same as G4970; very much: - exceedingly."]},{"k":"G4972","v":["σφραγίζω","sphragizō","sfrag-id'-zo","From G4973; to stamp (with a signet or private mark) for security or preservation (literally or figuratively); by implication to keep secret, to attest: - (set a, set to) seal up, stop."]},{"k":"G4973","v":["σφραγίς","sphragis","sfrag-ece'","Probably strengthened from G5420; a signet (as fencing in or protecting from misappropriation); by implication the stamp impressed (as a mark of privacy, or genuineness), literally or figuratively: - seal."]},{"k":"G4974","v":["σφυρόν","sphuron","sfoo-ron'","Neuter of a presumed derivative probably of the same as σφαῖρα sphaira (a ball, “sphere”; compare the feminine σφῦρα sphura , a hammer); the ankle (as globular): - ancle bone."]},{"k":"G4975","v":["σχεδόν","schedon","skhed-on'","Neuter of a presumed derivative of the alternate of G2192 as an adverb; nigh, that is, nearly: - almost."]},{"k":"G4976","v":["σχῆμα","schēma","skhay'-mah","From the alternate of G2192; a figure (as a mode or circumstance), that is, (by implication) external condition: - fashion."]},{"k":"G4977","v":["σχίζω","schizō","skhid'-zo","Apparently a primary verb; to split or sever (literally or figuratively): - break, divide, open, rend, make a rent."]},{"k":"G4978","v":["σχίσμα","schisma","skhis'-mah","From G4977; a split or gap (“schism”), literally or figuratively: - division, rent, schism."]},{"k":"G4979","v":["σχοινίον","schoinion","skhoy-nee'-on","Diminutive of σχοῖνος schoinos (a rush or flag plant; of uncertain derivation); a rushlet, that is, grass withe or tie (genitive case): - small cord, rope."]},{"k":"G4980","v":["σχολάζω","scholazō","skhol-ad'-zo","From G4981; to take a holiday, that is, be at leisure for (by implication devote oneself wholly to); figuratively to be vacant (of a house): - empty, give self."]},{"k":"G4981","v":["σχολή","scholē","schol-ay'","Probably feminine of a presumed derivative of the alternate of G2192; properly loitering (as a withholding of oneself from work) or leisure, that is, (by implication) a “school” (as vacation from physical employment): - school."]},{"k":"G4982","v":["σώζω","sōzō","sode'-zo","From a primary word σῶς sōs̄ (contraction for the obsolete σάος saos, “safe”); to save, that is, deliver or protect (literally or figuratively): - heal, preserve, save (self), do well, be (make) whole."]},{"k":"G4983","v":["σῶμα","sōma","so'-mah","From G4982; the body (as a sound whole), used in a very wide application, literally or figuratively: - bodily, body, slave."]},{"k":"G4984","v":["σωματικός","sōmatikos","so-mat-ee-kos'","From G4983; corporeal or physical: - bodily."]},{"k":"G4985","v":["σωματικῶς","sōmatikōs","so-mat-ee-koce'","Adverb from G4984; corporeally or physically: - bodily."]},{"k":"G4986","v":["Σώπατρος","Sōpatros","so'-pat-ros","From the base of G4982 and G3962; of a safe father; Sopatrus, a Christian: - Sopater. Compare G4989."]},{"k":"G4987","v":["σωρεύω","sōreuō","sore-yoo'-o","From another form of G4673; to pile up (literally or figuratively): - heap, load."]},{"k":"G4988","v":["Σωσθένης","Sōsthenēs","soce-then'-ace","From the base of G4982 and that of G4599; of safe strength; Sosthenes, a Christian: - Sosthenes."]},{"k":"G4989","v":["Σωσίπατρος","Sōsipatros","so-sip'-at-ros","Prolongation for G4986; Sosipatrus, a Christian: - Sosipater."]},{"k":"G4990","v":["σωτήρ","sōtēr","so-tare'","From G4982; a deliverer, that is, God or Christ: - saviour."]},{"k":"G4991","v":["σωτηρία","sōtēria","so-tay-ree'-ah","Feminine of a derivative of G4990 as (properly abstract) noun; rescue or safety (physically or morally): - deliver, health, salvation, save, saving."]},{"k":"G4992","v":["σωτήριον","sōtērion","so-tay'-ree-on","Neuter of the same as G4991 as (properly concrete) noun; defender or (by implication) defence: - salvation."]},{"k":"G4993","v":["σωφρονέω","sōphroneō","so-fron-eh'-o","From G4998; to be of sound mind, that is, sane, (figuratively) moderate: - be in right mind, be sober (minded), soberly."]},{"k":"G4994","v":["σωφρονίζω","sōphronizō","so-fron-id'-zo","From G4998; to make of sound mind, that is, (figuratively) to discipline or correct: - teach to be sober."]},{"k":"G4995","v":["σωφρονισμός","sōphronismos","so-fron-is-mos'","From G4994; discipline, that is, self control: - sound mind."]},{"k":"G4996","v":["σωφρόνως","sōphronōs","so-fron'-oce","Adverb from G4998; with sound mind, that is, moderately: - soberly."]},{"k":"G4997","v":["σωφροσύνη","sōphrosunē","so-fros-oo'-nay","From G4998; soundness of mind, that is, (literally) sanity or (figuratively) self control: - soberness, sobriety."]},{"k":"G4998","v":["σώφρων","sōphrōn","so'-frone","From the base of G4982 and that of G5424; safe (sound) in mind, that is, self controlled (moderate as to opinion or passion): - discreet, sober, temperate."]},{"k":"G4999","v":["Ταβέρναι","Tabernai","tab-er'-nahee","Plural of Latin origin; huts or wooden walled buildings; Tabernae: - taverns."]},{"k":"G5000","v":["Ταβιθά","Tabitha","tab-ee-thah'","Of Chaldee origin (compare [H6646]); the gazelle; Tabitha (that is, Tabjetha), a Christian female: - Tabitha."]},{"k":"G5001","v":["τάγμα","tagma","tag'-mah","From G5021; something orderly in arrangement (a troop), that is, (figuratively) a series or succession: - order."]},{"k":"G5002","v":["τακτός","taktos","tak-tos'","From G5021; arranged, that is, appointed or stated: - set."]},{"k":"G5003","v":["ταλαιπωρέω","talaipōreō","tal-ahee-po-reh'-o","From G5005; to be wretched, that is, realize one’s own misery: - be afflicted."]},{"k":"G5004","v":["ταλαιπωρία","talaipōria","tal-ahee-po-ree'-ah","From G5005; wretchedness, that is, calamity: - misery."]},{"k":"G5005","v":["ταλαίπωρος","talaipōros","tal-ah'ee-po-ros","From the base of G5007 and a derivative of the base of G3984; enduring trial, that is, miserable: - wretched."]},{"k":"G5006","v":["ταλαντιαῖος","talantiaios","tal-an-tee-ah'-yos","From G5007; talent like in weight: - weight of a talent."]},{"k":"G5007","v":["τάλαντον","talanton","tal'-an-ton","Neuter of a presumed derivative of the original form of τλάω tlao4 (to bear; equivalent to G5342); a balance (as supporting weights), that is, (by implication) a certain weight (and thence a coin or rather sum of money) or “talent”: - talent."]},{"k":"G5008","v":["ταλιθά","talitha","tal-ee-thah'","Of Chaldee origin (compare [H2924]); the fresh, that is, young girl; talitha (O maiden): - talitha."]},{"k":"G5009","v":["ταμεῖον","tameion","tam-i'-on","Neuter contraction of a presumed derivative of ταμίας tamias (a dispenser or distributor; akin to τέμνω temnō, to cut); a dispensary or magazine, that is, a chamber on the ground floor or interior of an Oriental house (generally used for storage or privacy, a spot for retirement): - secret chamber, closet, storehouse."]},{"k":"G5010","v":["τάξις","taxis","tax'-is","From G5021; regular arrangement, that is, (in time) fixed succession (of rank or character), official dignity: - order."]},{"k":"G5011","v":["ταπεινός","tapeinos","tap-i-nos'","Of uncertain derivation; depressed, that is, (figuratively) humiliated (in circumstances or disposition): - base, cast down, humble, of low degree (estate), lowly."]},{"k":"G5012","v":["ταπεινοφροσύνη","tapeinophrosunē","tap-i-nof-ros-oo'-nay","From a compound of G5011 and the base of G5424; humiliation of mind, that is, modesty: - humbleness of mind, humility (of mind), lowliness (of mind)."]},{"k":"G5013","v":["ταπεινόω","tapeinoō","tap-i-no'-o","From G5011; to depress; figuratively to humiliate (in condition or heart): - abase, bring low, humble (self)."]},{"k":"G5014","v":["ταπείνωσις","tapeinōsis","tap-i'-no-sis","From G5013; depression (in rank or feeling): - humiliation, be made low, low estate, vile."]},{"k":"G5015","v":["ταράσσω","tarassō","tar-as'-so","Of uncertain affinity; to stir or agitate (roil water): - trouble."]},{"k":"G5016","v":["ταραχή","tarachē","tar-akh-ay'","Feminine from G5015; disturbance, that is, (of water) roiling, or (of a mob) sedition: - trouble (-ing)."]},{"k":"G5017","v":["τάραχος","tarachos","tar'-akh-os","Masculine From G5015; a disturbance, that is, (popular) tumult: - stir."]},{"k":"G5018","v":["Ταρσεύς","Tarseus","tar-syoos'","From G5019; a Tarsean, that is, native of Tarsus: - of Tarsus."]},{"k":"G5019","v":["Ταρσός","Tarsos","tar-sos'","Perhaps the same as ταρσός tarsos (a flat basket); Tarsus, a place in Asia Minor: - Tarsus."]},{"k":"G5020","v":["ταρταρόω","tartaroō","tar-tar-o'-o","From Τάρταρος Tartaros̄ (the deepest abyss of Hades); to incarcerate in eternal torment: - cast down to hell."]},{"k":"G5021","v":["τάσσω","tassō","tas'-so","A prolonged form of a primary verb (which latter appears only in certain tenses); to arrange in an orderly manner, that is, assign or dispose (to a certain position or lot): - addict, appoint, determine, ordain, set."]},{"k":"G5022","v":["ταῦρος","tauros","tow'-ros","Apparently a primary word (compare [H8450], “steer”); a bullock: - bull, ox."]},{"k":"G5023","v":["ταῦτα","tauta","tow'-tah","Nomitive or accusative neuter plural of G3778; these things: - + afterward, follow, + hereafter, X him, the same, so, such, that, then, these, they, this, those, thus."]},{"k":"G5024","v":["ταὐτά","tauta","tow-tah'","Neuter plural of G3588 and G846 as adverb; in the same way: - even thus, (manner) like, so."]},{"k":"G5025","v":["ταύταις, ταύτας","tautais    tautas","tow'-taheece, tow'-tas","Dative and accusative feminine plural respectively of G3778; (to or with or by, etc.) these: - hence, that, then, these, those."]},{"k":"G5026","v":["ταύτῃ, ταύτην, ταύτης","tautē    tautēn    tautēs","tow-'tay, tow'-tane, tow'-tace","Dative, accusative and genitive case respectively of the feminine singular of G3778; (towards or of) this: - her, + hereof, it, that, + thereby, the (same), this (same)."]},{"k":"G5027","v":["ταφή","taphē","taf-ay'","feminine from G2290; burial (the act): - X bury."]},{"k":"G5028","v":["τάφος","taphos","taf'-os","Masculine from G2290; a grave (the place of interment): - sepulchre, tomb."]},{"k":"G5029","v":["τάχα","tacha","takh'-ah","As if neuter plural of G5036 (adverbially); shortly, that is, (figuratively) possibly: - peradventure (-haps)."]},{"k":"G5030","v":["ταχέως","tacheōs","takh-eh'-oce","Adverb from G5036; briefly, that is, (in time) speedily, or (in manner) rapidly: - hastily, quickly, shortly, soon, suddenly."]},{"k":"G5031","v":["ταχινός","tachinos","takh-ee-nos'","From G5034; curt, that is, impending: - shortly, swift."]},{"k":"G5032","v":["τάχιον","tachion","takh'-ee-on","Neuter singular of the comparative of G5036 (as adverb); more swiftly, that is, (in manner) more rapidly, or (in time) more speedily: - out [run], quickly, shortly, sooner."]},{"k":"G5033","v":["τάχιστα","tachista","takh'-is-tah","Neuter plural of the superlative of G5036 (as adverb); most quickly, that is, (with G5613 prefixed) as soon as possible: - + with all speed."]},{"k":"G5034","v":["τάχος","tachos","takh'-os","From the same as G5036; a brief space (of time), that is, (with G1722 prefixed) in haste: - + quickly, + shortly, + speedily."]},{"k":"G5035","v":["ταχύ","tachu","takh-oo'","Neuter singular of G5036 (as adverb); shortly, that is, without delay, soon, or (by surprise) suddenly, or (by implication of ease) readily: - lightly, quickly."]},{"k":"G5036","v":["ταχύς","tachus","takh-oos'","Of uncertain affinity; fleet, that is, (figuratively) prompt or ready: - swift."]},{"k":"G5037","v":["τε","te","teh","A primary particle (enclitic) of connection or addition; both or also (properly as a correlation of G2532): - also, and, both, even, then whether. Often used in compounds, usually as the latter part."]},{"k":"G5038","v":["τεῖχος","teichos","ti'-khos","Akin to the base of G5088; a wall (as formative of a house): - wall."]},{"k":"G5039","v":["τεκμήριον","tekmērion","tek-may'-ree-on;","Neuter of a presumed derivative of τεκμάρ tekmar (a goal or fixed limit); a token (as defining a fact), that is, criterion of certainty: - infallible proof."]},{"k":"G5040","v":["τεκνίον","teknion","tek-nee'-on","Diminutive of G5043; an infant, that is, (plural figurative) darlings (Christian converts): - little children."]},{"k":"G5041","v":["τεκνογονέω","teknogoneō","tek-nog-on-eh'-o","From a compound of G5043 and the base of G1096; to be a child bearer, that is, parent (mother): - bear children."]},{"k":"G5042","v":["τεκνογονία","teknogonia","tek-nog-on-ee'-ah","From the same as G5041; childbirth (parentage), that is, (by implication) maternity (the performance of maternal duties): - childbearing."]},{"k":"G5043","v":["τέκνον","teknon","tek'-non","From the base of G5098; a child (as produced): - child, daughter, son."]},{"k":"G5044","v":["τεκνοτροφέω","teknotropheō","tek-not-rof-eh'-o","From a compound of G5043 and G5142; to be a child rearer, that is, fulfil the duties of a female parent: - bring up children."]},{"k":"G5045","v":["τέκτων","tektōn","tek'-tone","From the base of G5098; an artificer (as producer of fabrics), that is, (specifically) a craftsman in wood: - carpenter."]},{"k":"G5046","v":["τέλειος","teleios","tel'-i-os","From G5056; complete (in various applications of labor, growth, mental and moral character, etc.); neuter (as noun, with G3588) completeness: - of full age, man, perfect."]},{"k":"G5047","v":["τελειότης","teleiotēs","tel-i-ot'-ace","From G5046; (the state) completeness (mentally or morally): - perfection (-ness)."]},{"k":"G5048","v":["τελειόω","teleioō","tel-i-o'-o","From G5046; to complete, that is, (literally) accomplish, or (figuratively) consummate (in character): - consecrate, finish, fulfil, (make) perfect."]},{"k":"G5049","v":["τελείως","teleiōs","tel-i'-oce","Adverb from G5046; completely, that is, (of hope) without wavering: - to the end."]},{"k":"G5050","v":["τελείωσις","teleiōsis","tel-i'-o-sis","From G5448; (the act) completion, that is, (of prophecy) verification, or (of expiation) absolution: - perfection, performance."]},{"k":"G5051","v":["τελειωτής","teleiōtēs","tel-i-o-tace'","From G5048; a completer, that is, consummater: - finisher."]},{"k":"G5052","v":["τελεσφορέω","telesphoreō","tel-es-for-eh'-o","From a compound of G5056 and G5342; to be a bearer to completion (maturity), that is, to ripen fruit (figuratively): - bring fruit to perfection."]},{"k":"G5053","v":["τελευτάω","teleutaō","tel-yoo-tah'-o","From a presumed derivative of G5055; to finish life (by implication of G979), that is, expire (demise): - be dead, decease, die."]},{"k":"G5054","v":["τελευτή","teleutē","tel-yoo-tay'","From G5053; decease: - death."]},{"k":"G5055","v":["τελέω","teleō","tel-eh'-o","From G5056; to end, that is, complete, execute, conclude, discharge (a debt): - accomplish, make an end, expire, fill up, finish, go over, pay, perform."]},{"k":"G5056","v":["τέλος","telos","tel'-os","From a primary word τέλλω tellō (to set out for a definite point or goal); properly the point aimed at as a limit, that is, (by implication) the conclusion of an act or state (termination [literally, figuratively or indefinitely], result [immediate, ultimate or prophetic], purpose); specifically an impost or levy (as paid): - + continual, custom, end (-ing), finally, uttermost. Compare G5411."]},{"k":"G5057","v":["τελώνης","telōnēs","tel-o'-nace","From G5056 and G5608; a tax farmer, that is, collector of public revenue: - publican."]},{"k":"G5058","v":["τελώνιον","telōnion","tel-o'-nee-on","Neuter of a presumed derivative of G5057; a tax gatherer's place of business: - receipt of custom."]},{"k":"G5059","v":["τέρας","teras","ter'-as","Of uncertain affinity; a prodigy or omen: - wonder."]},{"k":"G5060","v":["Τέρτιος","Tertios","ter'-tee-os","Of Latin origin; third; Tertius, a Christian: - Tertius."]},{"k":"G5061","v":["Τέρτυλλος","Tertullos","ter'-tool-los","Of uncertain derivation; Tertullus, a Roman: - Tertullus."]},{"k":"G5062","v":["τεσσαράκοντα","tessarakonta","tes-sar-ak'-on-tah","The decade of G5064; forty: - forty."]},{"k":"G5063","v":["τεσσαρακονταετής","tessarakontaetēs","tes-sar-ak-on-tah-et-ace'","From G5062 and G2094; of forty years of age: - (+ full, of) forty years (old)."]},{"k":"G5064","v":["τέσσαρες, τέσσαρα","tessares    tessara","tes'-sar-es, tes'-sar-ah","Neuter and a plural number; four: - four."]},{"k":"G5065","v":["τεσσαρεσκαιδέκατος","tessareskaidekatos","tes-sar-es-kahee-dek'-at-os","From G5064 and G2532 and G1182; fourteenth: - fourteenth."]},{"k":"G5066","v":["τεταρταῖος","tetartaios","tet-ar-tah'-yos","From G5064; pertaining to the fourth day: - four days."]},{"k":"G5067","v":["τέταρτος","tetartos","tet'-ar-tos","From G5064; fourth: - four (-th)."]},{"k":"G5068","v":["τετράγωνος","tetragōnos","tet-rag'-on-nos","From G5064 and G1137; four cornered, that is, square: - foursquare."]},{"k":"G5069","v":["τετράδιον","tetradion","tet-rad'-ee-on","Neuter of a presumed derivative of τέτρας tetras (a tetrad; from G5064); a quaternion or squad (picket) of four Roman soldiers: - quaternion."]},{"k":"G5070","v":["τετρακισχίλιοι","tetrakischilioi","tet-rak-is-khil'-ee-oy","From the multiplicative adverb of G5064 and G5507; four times a thousand: - four thousand."]},{"k":"G5071","v":["τετρακόσιοι τετρακόσια","tetrakosioi    tetrakosia","tet-rak-os'-ee-oy, tet-rak-os'-ee-ah)","Neuter and plural from G5064 and G1540; four hundred: - four hundred."]},{"k":"G5072","v":["τετράμηνον","tetramēnon","tet-ram'-ay-non","Neuter of a compound of G5064 and G3376; a four months' space: - four months."]},{"k":"G5073","v":["τετραπλόος","tetraploos","tet-rap-lo'-os","From G5064 and a derivative of the base of G4118; quadruple: - fourfold."]},{"k":"G5074","v":["τετράπους","tetrapous","tet-rap'-ooce","From G5064 and G4228; a quadruped: - fourfooted beast."]},{"k":"G5075","v":["τετραρχέω","tetrarcheō","tet-rar-kheh'-o","From G5076; to be a tetrarch: - (be) tetrarch."]},{"k":"G5076","v":["τετράρχης","tetrarchēs","tet-rar'-khace","From G5064 and G757; the ruler of a fourth part of a country (“tetrarch”): - tetrarch."]},{"k":"G5077","v":["τεφρόω","tephroō","tef-ro'-o","From τέφρα tephra (ashes); to incinerate, that is, consume: - turn to ashes."]},{"k":"G5078","v":["τέχνη","technē","tekh'-nay","From the base of G5088; art (as productive), that is, (specifically) a trade, or (generally) skill: - art, craft, occupation."]},{"k":"G5079","v":["τεχνίτης","technitēs","tekh-nee'-tace","From G5078; an artisan; figuratively a founder (Creator): - builder, craftsman."]},{"k":"G5080","v":["τήκω","tēkō","tay'-ko","Apparently a primary verb; to liquefy: - melt."]},{"k":"G5081","v":["τηλαυγῶς","tēlaugōs","tay-low-goce","Adverb from a compound of a derivative of G5056 and G827; in a far shining manner, that is, plainly: - clearly."]},{"k":"G5082","v":["τηλικοῦτος τηλικαύτη","tēlikoutos    tēlikautē","tay-lik-oo'-tos, tay-lik-ow'-tay)","Masculine and feminine; from a compound of G3588 with G2245 and G3778; such as this, that is, (in [figuratively] magnitude) so vast: - so great, so mighty."]},{"k":"G5083","v":["τηρέω","tēreō","tay-reh'-o","From τηρός teros (a watch; perhaps akin to G2334); to guard (from loss or injury, properly by keeping the eye upon; and thus differing from G5442, which is properly to prevent escaping; and from G2892, which implies a fortress or full military lines of apparatus), that is, to note (a prophecy; figuratively to fulfil a command); by implication to detain (in custody; figuratively to maintain); by extension to withhold (for personal ends; figuratively to keep unmarried): - hold fast, keep (-er), (ob-, pre-, re) serve, watch."]},{"k":"G5084","v":["τήρησις","tērēsis","tay'-ray-sis","From G5083; a watching, that is, (figuratively) observance, or (concretely) a prison: - hold."]},{"k":"G5085","v":["Τιβεριάς","Tiberias","tib-er-ee-as'","From G5086; Tiberias, the name of a town and a lake in Palestine: - Tiberias."]},{"k":"G5086","v":["Τιβέριος","Tiberios","tib-er'-ee-os","Of Latin origin; probably pertaining to the river Tiberis or Tiber; Tiberius, a Roman emperor: - Tiberius."]},{"k":"G5087","v":["τίθημι","tithēmi","tith'-ay-mee","A prolonged form of a primary word θέω theō (which is used only as an alternate in certain tenses); to place (in the widest application, literally and figuratively; properly in a passive or horizontal posture, and thus different from G2476, which properly denotes an upright and active position, while G2749 is properly reflexive and utterly prostrate): - + advise, appoint, bow, commit, conceive, give, X kneel down, lay (aside, down, up), make, ordain, purpose, put, set (forth), settle, sink down."]},{"k":"G5088","v":["τίκτω","tiktō","tik'-to","A strengthened from of a primary word τέκω tekō (which is used only as an alternate in certain tenses); to produce (from seed, as a mother, a plant, the earth, etc.), literal or figurative: - bear, be born, bring forth, be delivered, be in travail."]},{"k":"G5089","v":["τίλλω","tillō","til'-lo","Perhaps akin to the alternate of G138, and thus to G4951; to pull off: - pluck."]},{"k":"G5090","v":["Τίμαιος","Timaios","tim'-ah-yos","Probably of Chaldee origin (compare [H2931]); Timoeus (that is, Timay), an Israelite: - Timaeus."]},{"k":"G5091","v":["τιμάω","timaō","tim-ah'-o","From G5093; to prize, that is, fix a valuation upon; by implication to revere: - honour, value."]},{"k":"G5092","v":["τιμή","timē","tee-may'","From G5099; a value, that is, money paid, or (concretely and collectively) valuables; by analogy esteem (especially of the highest degree), or the dignity itself: - honour, precious, price, some."]},{"k":"G5093","v":["τίμιος","timios","tim'-ee-os","Including the comparative τίμιώτερος timiōteros and the superlative τίμιώτατος timiōtatos; from G5092; valuable, that is, (objectively) costly, or (subjectively) honored, esteemed, or (figuratively) beloved: - dear, honourable, (more, most) precious, had in reputation."]},{"k":"G5094","v":["τιμιότης","timiotēs","tim-ee-ot'-ace","From G5093; expensiveness, that is, (by implication) magnificence: - costliness."]},{"k":"G5095","v":["Τιμόθεος","Timotheos","tee-moth'-eh-os","From G5092 and G2316; dear to God; Timotheus, a Christian: - Timotheus, Timothy."]},{"k":"G5096","v":["Τίμων","Timōn","tee'-mone","From G5092; valuable; Timon, a Christian: - Timon."]},{"k":"G5097","v":["τιμωρέω","timōreō","tim-o-reh'-o","From a compound of G5092 and οὖρος ouros (a guard); properly to protect one’s honor, that is, to avenge (inflict a penalty): - punish."]},{"k":"G5098","v":["τιμωρία","timōria","tee-mo-ree'-ah","From G5097; vindication, that is, (by implication) a penalty: - punishment."]},{"k":"G5099","v":["τίνω","tinō","tee'-no","Strengthened for a primary word τίω tiō (which is only used as an alternate in certain tenses); to pay a price, that is, as a penalty: - be punished with."]},{"k":"G5100","v":["τίς","tis","tis","An enclitic indefinite pronoun; some or any person or object: - a (kind of), any (man, thing, thing at all), certain (thing), divers, he (every) man, one (X thing), ought, + partly, some (man, -body, -thing, -what), (+ that no-) thing, what (-soever), X wherewith, whom [-soever], whose ([-soever])."]},{"k":"G5101","v":["τίς","tis","tis","Probably emphatic of G5100; an interrogitive pronoun, who, which or what (in direct or indirect questions): - every man, how (much), + no (-ne, thing), what (manner, thing), where ([-by, -fore, -of, -unto, -with, -withal]), whether, which, who (-m, -se), why."]},{"k":"G5102","v":["τίτλος","titlos","tit'-los","Of Latin origin; a titulus or “title” (placard): - title."]},{"k":"G5103","v":["Τίτος","Titos","tee'-tos","Of Latin origin but uncertain significance; Titus, a Christian: - Titus."]},{"k":"G5104","v":["τοί","toi","toy","Probably for the dative case of G3588; an enclitic particle of asseveration by way of contrast; in sooth: - [used only with other particles in compounds, as G2544, G3305, G5105, G5106, etc.]"]},{"k":"G5105","v":["τοιγαροῦν","toigaroun","toy-gar-oon'","From G5104 and G1063 and G3767; truly for then, that is, consequently: - there- (where-) fore."]},{"k":"G5106","v":["τοίνυν","toinun","toy'-noon","From G5104 and G3568; truly now, that is, accordingly: - then, therefore."]},{"k":"G5107","v":["τοιόσδε","toiosde","toy-os'-deh","(Including the other inflections); from a derivative of G5104 and G1161; such like then, that is, so great: - such."]},{"k":"G5108","v":["τοιοῦτος","toioutos","toy-oo'-tos","(Including the other inflections); from G5104 and G3778; truly this, that is, of this sort (to denote character or individuality): - like, such (an one)."]},{"k":"G5109","v":["τοῖχος","toichos","toy'-khos","Another form of G5038; a wall: - wall."]},{"k":"G5110","v":["τόκος","tokos","tok'-os","From the base of G5088; interest on money loaned (as a produce): - usury."]},{"k":"G5111","v":["τολμάω","tolmaō","tol-mah'-o","From τόλμα tolma (boldness; probably itself from the base of G5056 through the idea of extreme conduct); to venture (objectively or in act; while G2292 is rather subjective or in feeling); by implication to be courageous: - be bold, boldly, dare, durst."]},{"k":"G5112","v":["τολμηρότερον","tolmēroteron","tol-may-rot'-er-on","Neuter of the compound of a derivative of the bse of G5111 (as adverb); more daringly, that is, with greater confidence than otherwise: - the more boldly."]},{"k":"G5113","v":["τολμητής","tolmētēs","tol-may-tace'","From G5111; a daring (audacious) man: - presumptuous."]},{"k":"G5114","v":["τομώτερος","tomōteros","tom-o'-ter-os","Compound of a derivative of the primary word τέμνω temnō (to cut; more comprehensive or decisive than G2875, as if by a single stroke; whereas that implies repeated blows, like hacking); more keen: - sharper."]},{"k":"G5115","v":["τόξον","toxon","tox'-on","From the base of G5088; a bow (apparently as the simplest fabric): - bow."]},{"k":"G5116","v":["τοπάζιον","topazion","top-ad'-zee-on","Neuter of a presumed derivative (alternate) of τόπάζος topazos (a “topaz”; of uncertain origin); a gem, probably the chrysolite: - topaz."]},{"k":"G5117","v":["τόπος","topos","top'-os","Apparently a primary word; a spot (generally in space, but limited by occupancy; whereas G5561 is a larger but particular locality), that is, location (as a position, home, tract, etc.); figuratively condition, opportunity; specifically a scabbard: - coast, licence, place, X plain, quarter, + rock, room, where."]},{"k":"G5118","v":["τοσοῦτος","tosoutos","tos-oo'-tos","From τόσος tosos (so much; apparently from G3588 and G3739) and G3778 (including its variations); so vast as this, that is, such (in quantity, amount, number or space): - as large, so great (long, many, much), these many."]},{"k":"G5119","v":["τότε","tote","tot'-eh","From (the neuter of) G3588 and G3753; the when, that is, at the time that (of the past or future, also in consecution): - that time, then."]},{"k":"G5120","v":["τοῦ","tou","too","Properly the genitive case of G3588; sometimes used for G5127; of this person: - his."]},{"k":"G5121","v":["τοὐναντίον","tounantion","too-nan-tee'-on","Contraction for the neuter of G3588 and G1726; on the contrary: - contrariwise."]},{"k":"G5122","v":["τοὔνομα","tounoma","too'-no-mah","Contraction for the neuter of G3588 and G3686; the name (is): - named."]},{"k":"G5123","v":["τουτέστι","toutesti","toot-es'-tee","Contraction for G5124 and G2076; that is: - that is (to say)."]},{"k":"G5124","v":["τοῦτο","touto","too'-to","Neuter, singular, nomitive or accusative of G3778; that thing: - here [-unto], it, partly, self [-same], so, that (intent), the same, there [-fore, -unto], this, thus, where [-fore]."]},{"k":"G5125","v":["τούτοις","toutois","too'-toice","Dative, plural, masculine or neuter of G3778; to (for, in, with or by) these (persons or things): - such, them, there [-in, -with], these, this, those."]},{"k":"G5126","v":["τοῦτον","touton","too'-ton","Accusative, singular, masculine of G3778; this (person, as object of verb or preposition): - him, the same, that, this."]},{"k":"G5127","v":["τούτου","toutou","too'-too","Genitive singular masculine or neuter of G3778; of (from or concerning) this (person or thing): - here [-by], him, it, + such manner of, that, thence [-forth], thereabout, this, thus."]},{"k":"G5128","v":["τούτους","toutous","too'-tooce","Accusative plural masculine of G3778; these (persons, as object of verb or preposition): - such, them, these, this."]},{"k":"G5129","v":["τούτῳ","toutō","too'-to","Dative singular masculine or neuter of G3778; to (in, with or by) this (person or thing): - here [-by, -in], him, one, the same, there [-in], this."]},{"k":"G5130","v":["τούτων","toutōn","too'-tone","Genitive plural masculine or neuter of G3778; of (from or concerning) these (persons or things): - such, their, these (things), they, this sort, those."]},{"k":"G5131","v":["τράγος","tragos","trag'-os","From the base of G5176; a he goat (as a gnawer): - goat."]},{"k":"G5132","v":["τράπεζα","trapeza","trap'-ed-zah","Probably contracted from G5064 and G3979; a table or stool (as being four legged), usually for food (figuratively a meal); also a counter for money (figuratively a broker’s office for loans at interest): - bank, meat, table."]},{"k":"G5133","v":["τραπεζίτης","trapezitēs","trap-ed-zee'-tace","From G5132; a money broker or banker: - exchanger."]},{"k":"G5134","v":["τραῦμα","trauma","trow'-mah","From the base of τιτρώσκω titrōskō (to wound; akin to the base of G2352, G5147, G5149, etc.); a wound: - wound."]},{"k":"G5135","v":["τραυματίζω","traumatizō","trow-mat-id'-zo","From G5134; to inflict a wound: - wound."]},{"k":"G5136","v":["τραχηλίζω","trachēlizō","trakh-ay-lid'-zo","From G5137; to seize by the throat or neck, that is, to expose the gullet of a victim for killing (generally to lay bare): - opened."]},{"k":"G5137","v":["τράχηλος","trachēlos","trakh'-ay-los","Probably from G5143 (through the idea of mobility); the throat (neck), that is, (figuratively) life: - neck."]},{"k":"G5138","v":["τραχύς","trachus","trakh-oos'","Perhaps strengthened from the base of G4486 (as if jagged by rents); uneven, rocky (reefy): - rock, rough."]},{"k":"G5139","v":["Τραχωνῖτις","Trachōnitis","trakh-o-nee'-tis","From a derivative of G5138; rough district; Trachonitis, a region of Syria: - Trachonitis."]},{"k":"G5140","v":["τρεῖς, τρία","treis    tria","trice, tree'-ah","A primary (plural) number; “three”: - three."]},{"k":"G5141","v":["τρέμω","tremō","trem'-o","Strengthened from a primary word τρέω treō (to “dread”, “terrify”); to “tremble” or fear: - be afraid, trembling."]},{"k":"G5142","v":["τρέφω","trephō","tref'-o","A primary verb (properly θρέφω threphō; but perhaps strengthened from the base of G5157 through the idea of convolution); properly to stiffen, that is, fatten (by implication to cherish [with food, etc.], pamper, rear): - bring up, feed, nourish."]},{"k":"G5143","v":["τρέχω","trechō","trekh'-o","Apparently a primary verb (properly θρέχω threchō; compare G2359); which uses δρέμω dremō, drem'-o (the base of G1408) as an alternate in certain tenses; to run or walk hastily (literally or figuratively): - have course, run."]},{"k":"G5144","v":["τριάκοντα","triakonta","tree-ak'-on-tah","The decade of G5140; thirty: - thirty."]},{"k":"G5145","v":["τριακόσιοι","triakosioi","tree-ak-os'-ee-oy","Plural from G5140 and G1540; three hundred: - three hundred."]},{"k":"G5146","v":["τρίβολος","tribolos","trib'-ol-os","From G5140 and G956; properly a crow foot (three pronged obstruction in war), that is, (by analogy) a thorny plant (caltrop): - brier, thistle."]},{"k":"G5147","v":["τρίβος","tribos","tree'-bos","From τρίβω tribō (to “rub”; akin to τείρω teirō, τρύω truō, and the base of G5131, G5134); a rut or worn track: - path."]},{"k":"G5148","v":["τριετία","trietia","tree-et-ee'-ah","From a compound of G5140 and G2094; a three years' period (triennium): - space of three years."]},{"k":"G5149","v":["τρίζο","trizo","trid'-zo","Apparently a primary verb; to creak (squeak), that is, (by analogy) to grate the teeth (in frenzy): - gnash."]},{"k":"G5150","v":["τρίμηνον","trimēnon","trim'-ay-non","Neuter of a compound of G5140 and G3376 as noun; a three months' space: - three months."]},{"k":"G5151","v":["τρίς","tris","trece","Adverb from G5140; three times: - three times, thrice."]},{"k":"G5152","v":["τρίστεγον","tristegon","tris'-teg-on","Neuter of a compound of G5140 and G4721 as noun; a third roof (story): - third loft."]},{"k":"G5153","v":["τρισχίλιοι","trischilioi","tris-khil'-ee-oy","From G5151 and G5507; three times a thousand: - three thousand."]},{"k":"G5154","v":["τρίτος","tritos","tree'-tos","From G5140; third; neuter (as noun) a third part, or (as adverb) a (or the) third time, thirdly: - third (-ly)."]},{"k":"G5155","v":["τρίχινος","trichinos","trikh'-ee-nos","From G2359; hairy, that is, made of hair (mohair): - of hair."]},{"k":"G5156","v":["τρόμος","tromos","trom'-os","From G5141; a “trembling”, that is, quaking with fear: - + tremble (-ing)."]},{"k":"G5157","v":["τροπή","tropē","trop-ay'","From an apparently primary word τρέπω trepō (to turn); a turn (“trope”), that is, revolution (figuratively variation): - turning."]},{"k":"G5158","v":["τρόπος","tropos","trop'-os","From the same as G5157; a turn, that is, (by implication) mode or style (especially with preposition or relatively prefixed as adverb like); figuratively deportment or character: - (even) as, conversation, [+ like] manner (+ by any) means, way."]},{"k":"G5159","v":["τροποφορέω","tropophoreō","trop-of-or-eh'-o","From G5158 and G5409; to endure one’s habits: - suffer the manners."]},{"k":"G5160","v":["τροφή","trophē","trof-ay'","From G5142; nourishment (literally or figuratively); by implication rations (wages): - food, meat."]},{"k":"G5161","v":["Τρόφιμος","Trophimos","trof'-ee-mos","From G5160; nutritive; Trophimus, a Christian: - Trophimus."]},{"k":"G5162","v":["τροφός","trophos","trof-os'","From G5142; a nourisher, that is, nurse: - nurse."]},{"k":"G5163","v":["τροχιά","trochia","trokh-ee-ah'","From G5164; a track (as a wheel rut), that is, (figuratively) a course of conduct: - path."]},{"k":"G5164","v":["τροχός","trochos","trokh-os'","From G5143; a wheel (as a runner), that is, (figuratively) a circuit of physical effects: - course."]},{"k":"G5165","v":["τρύβλιον","trublion","troob'-lee-on","Neuter of a presumed derivation of uncertain affinity; a bowl: - dish."]},{"k":"G5166","v":["τρυγάω","trugaō","troo-gah'-o","From a derivative of τρύγω trugō (to dry) meaning ripe fruit (as if dry); to collect the vintage: - gather."]},{"k":"G5167","v":["τρυγών","trugōn","troo-gone'","From τρύζω truzō (to murmur; akin to G5149, but denoting a duller sound); a turtle dove (as cooing): - turtle-dove."]},{"k":"G5168","v":["τρυμαλιά","trumalia","troo-mal-ee-ah'","From a derivative of τρύώ truō (to wear away; akin to the base of G5134, G5147 and G5176); an orifice, that is, a needle’s eye: - eye. Compare G5169."]},{"k":"G5169","v":["τρύπημα","trupēma","troo'-pay-mah","From a derivative of the base of G5168; an aperture, that is, a needle’s eye: - eye."]},{"k":"G5170","v":["Τρύφαινα","Truphaina","troo'-fahee-nah","From G5172; luxurious; Tryphaena, a Christian woman: - Tryphena."]},{"k":"G5171","v":["τρυφάω","truphaō","troo-fah'-o","From G5172; to indulge in luxury: - live in pleasure."]},{"k":"G5172","v":["τρυφή","truphē","troo-fay'","From θρύπτω thruptō̄ (to break up or [figuratively] enfeeble, especially the mind and body by indulgence); effeminacy, that is, luxury or debauchery: - delicately, riot."]},{"k":"G5173","v":["Τρυφῶσα","Truphōsa","troo-fo'-sah","From G5172; luxuriating; Tryphosa, a Christian female: - Tryphosa."]},{"k":"G5174","v":["Τρωάς","Trōas","tro-as'","From Τρός Tros (a Trojan); the Troad (or plain of Troy), that is, Troas, a place in Asia Minor: - Troas."]},{"k":"G5175","v":["Τρωγύλλιον","Trōgullion","tro-gool'-lee-on","Of uncertain derivation; Trogyllium, a place in Asia Minor: - Trogyllium."]},{"k":"G5176","v":["τρώγω","trōgō","tro'-go","Probably strengthened from a collateral form of the base of G5134 and G5147 through the idea of corrosion or wear; or perhaps rather of a base of G5167 and G5149 through the idea of a craunching sound; to gnaw or chew, that is, (genitive case) to eat: - eat."]},{"k":"G5177","v":["τυγχάνω","tugchanō","toong-khan'-o","Probably for an obsolete τύχω tuchō (for which the middle voice of another alternate τεύχω teuchō [to make ready or bring to pass] is used in certain tenses; akin to the base of G5088 through the idea of effecting; properly to affect; or (specifically) to hit or light upon (as a mark to be reached), that is, (transitively) to attain or secure an object or end, or (intransitively) to happen (as if meeting with); but in the latter application only impersonally (with G1487), that is, perchance; or (present participle) as adjective usual (as if commonly met with, with G3756, extraordinary), neuter (as adverb) perhaps; or (with another verb) as adverb by accident (as it were): - be, chance, enjoy, little, obtain, X refresh . . . self, + special. Compare G5180."]},{"k":"G5178","v":["τυμπανίζω","tumpanizō","toom-pan-id'-zo","From a derivative of G5180 (meaning a drum, “tympanum”); to stretch on an instrument of torture resembling a drum, and thus beat to death: - torture."]},{"k":"G5179","v":["τύπος","tupos","too'-pos","From G5180; a die (as struck), that is, (by implication) a stamp or scar; by analogy a shape, that is, a statue, (figuratively) style or resemblance; specifically a sampler (“type”), that is, a model (for imitation) or instance (for warning): - en- (ex-) ample, fashion, figure, form, manner, pattern, print."]},{"k":"G5180","v":["τύπτω","tuptō","toop'-to","A primary verb (in a strengthened form); to “thump”, that is, cudgel or pummel (properly with a stick or bastinado), but in any case by repeated blows; thus differing from G3817 and G3960, which denote a [usually single] blow with the hand or any instrument, or G4141 with the fist [or a hammer], or G4474 with the palm; as well as from G5177, an accidental collision); by implication to punish; figuratively to offend (the conscience): - beat, smite, strike, wound."]},{"k":"G5181","v":["Τύραννος","Turannos","too'-ran-nos","A provincial form of the derivative of the base of G2962; a “tyrant”; Tyrannus, an Ephesian: - Tyrannus."]},{"k":"G5182","v":["τυρβάζω","turbazō","toor-bad'-zo","From τύρβη turbē̄ (Latin turba, a crowd; akin to G2351); to make “turbid”, that is, disturb: - trouble."]},{"k":"G5183","v":["Τύριος","Turios","too'-ree-os","From G5184; a Tyrian, that is, inhabitant of Tyrus: - of Tyre."]},{"k":"G5184","v":["Τύρος","Turos","too'-ros","Of Hebrew origin [H6865]; Tyrus (that is, Tsor), a place in Palestine: - Tyre."]},{"k":"G5185","v":["τυφλός","tuphlos","toof-los'","From G5187; opaque (as if smoky), that is, (by analogy) blind (physically or mentally): - blind."]},{"k":"G5186","v":["τυφλόω","tuphloō","toof-lo'-o","From G5185; to make blind, that is, (figuratively) to obscure: - blind."]},{"k":"G5187","v":["τυφόω","tuphoō","toof-o'-o","From a derivative of G5188; to envelop with smoke, that is, (figuratively) to inflate with self conceit: - high-minded, be lifted up with pride, be proud."]},{"k":"G5188","v":["τυφώ","tuphō","too'-fo","Apparently a primary verb; to make a smoke, that is, slowly consume without flame: - smoke."]},{"k":"G5189","v":["τυφωνικός","tuphōnikos","too-fo-nee-kos'","From a derivative of G5188; stormy (as if smoky): - tempestuous."]},{"k":"G5190","v":["Τυχικός","Tuchikos","too-khee-kos'","From a derivative of G5177; fortuitous, that is, fortunate; Tychicus, a Christian: - Tychicus."]},{"k":"G5191","v":["ὑακίνθινος","huakinthinos","hoo-ak-in'-thee-nos","From G5192; “hyacinthine” or “jacinthine”, that is, deep blue: - jacinth."]},{"k":"G5192","v":["ὑάκινθος","huakinthos","hoo-ak'-in-thos","Of uncertain derivation; the “hyacinth” or “jacinth”, that is, some gem of a deep blue color, probably the zirkon: - jacinth."]},{"k":"G5193","v":["ὑάλινος","hualinos","hoo-al'-ee-nos","From G5194; glassy, that is, transparent: - of glass."]},{"k":"G5194","v":["ὕαλος","hualos","hoo'-al-os","Perhaps from the same as G5205 (as being transparent like rain); glass: - glass."]},{"k":"G5195","v":["ὑβρίζω","hubrizō","hoo-brid'-zo","From G5196; to exercise violence, that is, abuse: - use despitefully, reproach, entreat shamefully (spitefully)."]},{"k":"G5196","v":["ὕβρις","hubris","hoo'-bris","From G5228; insolence (as over bearing), that is, insult, injury: - harm, hurt, reproach."]},{"k":"G5197","v":["ὑβριστής","hubristēs","hoo-bris-tace'","From G5195; an insulter, that is, maltreater: - de-spiteful, injurious."]},{"k":"G5198","v":["ὑγιαίνω","hugiainō","hoog-ee-ah'ee-no","From G5199; to have sound health, that is, be well (in body); figuratively to be uncorrupt (true in doctrine): - be in health, (be safe and) sound, (be) whole (-some)."]},{"k":"G5199","v":["ὑγιής","hugiēs","hoog-ee-ace'","From the base of G837; healthy, that is, well (in body); figuratively true (in doctrine): - sound, whole."]},{"k":"G5200","v":["ὑγρός","hugros","hoo-gros'","From the base of G5205; wet (as if with rain), that is, (by implication) sappy (fresh): - green."]},{"k":"G5201","v":["ὑδριά","hudria","hoo-dree-ah'","From G5204; a water jar, that is, receptacle for family supply: - waterpot."]},{"k":"G5202","v":["ὑδροποτέω","hudropoteō","hoo-drop-ot-eh'-o","From a compound of G5204 and a derivative of G4095; to be a water drinker, that is, to abstain from vinous beverages: - drink water."]},{"k":"G5203","v":["ὑδρωπικός","hudrōpikos","hoo-dro-pik-os'","From a compound of G5204 and a derivative of G3700 (as if looking watery); to be “dropsical”: - have the dropsy."]},{"k":"G5204","v":["ὕδωρ, ὕδατος","hudōr    hudatos","hoo'-dor, hoo'-dat-os, etc.","From the base of G5205; water (as if rainy) literally or figuratively: - water."]},{"k":"G5205","v":["ὑετός","huetos","hoo-et-os'","From a primary word ὕω huō (to rain); rain, especially a shower: - rain."]},{"k":"G5206","v":["υἱοθεσία","uihothesia","hwee-oth-es-ee'-ah","From a presumed compound of G5207 and a derivative of G5087; the placing as a son, that is, adoption (figuratively Christian sonship in respect to God): - adoption (of children, of sons)."]},{"k":"G5207","v":["υἱός","uihos","hwee-os'","Apparently a primary word; a “son” (sometimes of animals), used very widely of immediate, remote or figurative kinship: - child, foal, son."]},{"k":"G5208","v":["ὕλη","hulē","hoo'-lay","Perhaps akin to G3586; a forest, that is, (by implication) fuel: - matter."]},{"k":"G5209","v":["ὑμᾶς","humas","hoo-mas'","Accusative of G5210; you (as the object of a verb or preposition): - ye, you, (+ -ward), your (+ own)."]},{"k":"G5210","v":["ὑμείς","humeis","hoo-mice'","Irregular plural of G4771; you (as subject of verb): - ye (yourselves), you."]},{"k":"G5211","v":["Ὑμεναῖος","Humenaios","hoo-men-ah'-yos","From Ὑμήν Humēn (the god of weddings); “hymenaeal”; Hymenaeus, an opponent of Christianity: - Hymenus."]},{"k":"G5212","v":["ὑμέτερος","humeteros","hoo-met'-er-os","From G5210; yours, that is, pertaining to you: - your (own)."]},{"k":"G5213","v":["ὑμῖν","humin","hoo-min'","Irregular dative case of G5210; to (with or by) you: - ye, you, your (-selves)."]},{"k":"G5214","v":["ὑμνέω","humneō","hoom-neh'-o","From G5215; to hymn, that is, sing a religious ode; by implication to celebrate (God) in song: - sing an hymn (praise unto)."]},{"k":"G5215","v":["ὕμνος","humnos","hoom'-nos","Apparently from a simpler (obsolete) form of ὕδέω hudeō (to celebrate; probably akin to G103; compare G5567); a “hymn” or religious ode (one of the Psalms): - hymn."]},{"k":"G5216","v":["ὑμῶν","humōn","hoo-mone'","Genitive case of G5210; of (from or concerning) you: - ye, you, your (own, -selves)."]},{"k":"G5217","v":["ὑπάγω","hupagō","hoop-ag'-o","From G5259 and G71; to lead (oneself) under, that is, withdraw or retire (as if sinking out of sight), literally or figuratively: - depart, get hence, go (a-) way."]},{"k":"G5218","v":["ὑπακοή","hupakoē","hoop-ak-o-ay'","From G5219; attentive hearkening, that is, (by implication) compliance or submission: - obedience, (make) obedient, obey (-ing)."]},{"k":"G5219","v":["ὑπακούω","hupakouō","hoop-ak-oo'-o","From G5259 and G191; to hear under (as a subordinate), that is, to listen attentively; by implication to heed or conform to a command or authority: - hearken, be obedient to, obey."]},{"k":"G5220","v":["ὕπανδρος","hupandros","hoop'-an-dros","From G5259 and G435; in subjection under a man, that is, a married woman: - which hath an husband."]},{"k":"G5221","v":["ὑπαντάω","hupantaō","hoop-an-tah'-o","From G5259 and a derivative of G473; to go opposite (meet) under (quietly), that is, to encounter, fall in with: - (go to) meet."]},{"k":"G5222","v":["ὑπάντησις","hupantēsis","hoop-an'-tay-sis","From G5221; an encounter or concurrence (with G1519 for infinitive, in order to fall in with): - meeting."]},{"k":"G5223","v":["ὕπαρξις","huparxis","hoop'-arx-is","From G5225; existency or proprietorship, that is, (concretely) property, wealth: - goods, substance."]},{"k":"G5224","v":["ὑπάρχοντα","huparchonta","hoop-ar'-khon-tah","Neuter plural of present participle active of G5225 as noun; things extant or in hand, that is, property or possessions: - goods, that which one has, things which (one) possesseth, substance, that hast."]},{"k":"G5225","v":["ὑπάρχω","huparchō","hoop-ar'-kho","From G5259 and G756; to begin under (quietly), that is, come into existence (be present or at hand); expletively, to exist (as copula or subordinate to an adjective, participle, adverb or preposition, or as auxilliary to principal verb): - after behave, live."]},{"k":"G5226","v":["ὑπείκω","hupeikō","hoop-i'-ko","From G5259 and εἴκω eikō (to yield, be “weak”); to surrender: - submit self."]},{"k":"G5227","v":["ὑπεναντίος","hupenantios","hoop-en-an-tee'-os","From G5259 and G1727; under (covertly) contrary to, that is, opposed or (as noun) an opponent: - adversary, against."]},{"k":"G5228","v":["ὑπέρ","huper","hoop-er'","A primary preposition; “over”, that is, (with the genitive case) of place, above, beyond, across, or causal, for the sake of, instead, regarding; with the accusative case superior to, more than. In compounds it retains many of the listed applications: - (+ exceeding abundantly) above, in (on) behalf of, beyond, by, + very chiefest, concerning, exceeding (above, -ly), for, + very highly, more (than), of, over, on the part of, for sake of, in stead, than, to (-ward), very. In compounds it retains many of the above applications."]},{"k":"G5229","v":["ὑπεραίρομαι","huperairomai","hoop-er-ah'ee-rom-ahee","Middle voice from G5228 and G142; to raise oneself over, that is, (figuratively) to become haughty: - exalt self, be exalted above measure."]},{"k":"G5230","v":["ὑπέρακμος","huperakmos","hoop-er'-ak-mos","From G5228 and the base of G188; beyond the “acme”, that is, figuratively (of a daughter) past the bloom (prime) of youth: - + pass the flower of (her) age."]},{"k":"G5231","v":["ὑπεράνω","huperanō","hoop-er-an'-o","From G5228 and G507; above upward, that is, greatly higher (in place or rank): - far above, over."]},{"k":"G5232","v":["ὑπεραυξάνω","huperauxanō","hoop-er-owx-an'-o","From G5228 and G837; to increase above ordinary degree: - grow exceedingly."]},{"k":"G5233","v":["ὑπερβαίνω","huperbainō","hoop-er-bah'ee-no","From G5228 and the base of G939; to transcend; that is, (figuratively) to overreach: - go beyond."]},{"k":"G5234","v":["ὑπερβαλλόντως","huperballontōs","hoop-er-bal-lon'-toce","Adverb from present participle active of G5235; excessively: - beyond measure."]},{"k":"G5235","v":["ὑπερβάλλω","huperballō","hoop-er-bal'-lo","From G5228 and G906; to throw beyond the usual mark, that is, (figuratively) to surpass (only active participle supereminent): - exceeding, excel, pass."]},{"k":"G5236","v":["ὑπερβολή","huperbolē","hoop-er-bol-ay'","From G5235; a throwing beyond others, that is, (figuratively) supereminence; adverbially (with G1519 or G2596) pre-eminently: - abundance, (far more) exceeding, excellency, more excellent, beyond (out of) measure."]},{"k":"G5237","v":["ὑπερείδω","hupereidō","hoop-er-i'-do","From G5228 and G1492; to overlook, that is, not punish: - wink at."]},{"k":"G5238","v":["ὑπερέκεινα","huperekeina","hoop-er-ek'-i-nah","From G5228 and the neuter plural of G1565; above those parts, that is, still farther: - beyond."]},{"k":"G5239","v":["ὑπερεκτείνω","huperekteinō","hoop-er-ek-ti'-no","From G5228 and G1614; to extend inordinately: - stretch beyond."]},{"k":"G5240","v":["ὑπερεκχύνω","huperekchunō","hoop-er-ek-khoo'-no","From G5228 and the alternate form of G1632; to pour out over, that is, (passively) to overflow: - run over."]},{"k":"G5241","v":["ὑπερεντυγχάνω","huperentugchanō","hoop-er-en-toong-khan'-o","From G5228 and G1793; to intercede in behalf of: - make intercession for."]},{"k":"G5242","v":["ὑπερέχω","huperechō","hoop-er-ekh'-o","From G5228 and G2192; to hold oneself above, that is, (figuratively) to excel; participle (as adjective, or neuter as noun) superior, superiority: - better, excellency, higher, pass, supreme."]},{"k":"G5243","v":["ὑπερηφανία","huperēphania","hoop-er-ay-fan-ee'-ah","From G5244; haughtiness: - pride."]},{"k":"G5244","v":["ὑπερήφανος","huperēphanos","hoop-er-ay'-fan-os","From G5228 and G5316; appearing above others (conspicuous), that is, (figuratively) haughty: - proud."]},{"k":"G5245","v":["ὑπερνικάω","hupernikaō","hoop-er-nik-ah'-o","From G5228 and G3528; to vanquish beyond, that is, gain a decisive victory: - more than conquer."]},{"k":"G5246","v":["ὑπέρογκος","huperogkos","hoop-er'-ong-kos","From G5228 and G3591; bulging over, that is, (figuratively) insolent: - great swelling."]},{"k":"G5247","v":["ὑπεροχή","huperochē","hoop-er-okh-ay'","From G5242; prominence, that is, (figuratively) superiority (in rank or character): - authority, excellency."]},{"k":"G5248","v":["ὑπερπερισσεύω","huperperisseuō","hoop-er-per-is-syoo'-o","From G5228 and G4052; to super abound: - abound much more, exceeding."]},{"k":"G5249","v":["ὑπερπερισσῶς","huperperissōs","hoop-er-per-is-soce'","From G5228 and G4057; superabundantly, that is, exceedingly: - beyond measure."]},{"k":"G5250","v":["ὑπερπλεονάζω","huperpleonazō","hoop-er-pleh-on-ad'-zo","From G5228 and G4121; to super abound: - be exceeding abundant."]},{"k":"G5251","v":["ὑπερυψόω","huperupsoō","hoop-er-oop-so'-o","From G5228 and G5312; to elevate above others, that is, raise to the highest position: - highly exalt."]},{"k":"G5252","v":["ὑπερφρονεώ","huperphroneō","hoop-er-fron-eh'-o","From G5228 and G5426; to esteem oneself overmuch, that is, be vain or arrogant: - think more highly."]},{"k":"G5253","v":["ὑπερῷον","huperōon","hoop-er-o'-on","Neuter of a derivative of G5228; a higher part of the house, that is, apartment in the third story: - upper chamber (room)."]},{"k":"G5254","v":["ὑπέχω","hupechō","hoop-ekh'-o","From G5259 and G2192; to hold oneself under, that is, endure with patience: - suffer."]},{"k":"G5255","v":["ὑπήκοος","hupēkoos","hoop-ay'-ko-os","From G5219; attentively listening, that is, (by implication) submissive: - obedient."]},{"k":"G5256","v":["ὑπηρετέω","hupēreteō","hoop-ay-ret-eh'-o","From G5257; to be a subordinate, that is, (by implication) subserve: - minister (unto), serve."]},{"k":"G5257","v":["ὑπηρέτης","hupēretēs","hoop-ay-ret'-ace","From G5259 and a derivative of ἐρέσσω eressō (to row); an under oarsman, that is, (genitive case) subordinate (assistant, sexton, constable): - minister, officer, servant."]},{"k":"G5258","v":["ὕπνος","hupnos","hoop'-nos","From an obsolete primary (perhaps akin to G5259 through the idea of subsilience); sleep, that is, (figuratively) spiritual torpor: - sleep."]},{"k":"G5259","v":["ὑπό","hupo","hoop-o'","A primary preposition; under, that is, (with the genitive) of place (beneath), or with verbs (the agency or means, through); (with the accusative) of place (whither [underneath] or where [below]) or time (when [at]): - among, by, from, in, of, under, with. In compounds it retains the same genitive applications, especially of inferior position or condition, and specifically covertly or moderately."]},{"k":"G5260","v":["ὑποβάλλω","hupoballō","hoop-ob-al'-lo","From G5259 and G906; to throw in stealthily, that is, introduce by collusion: - suborn."]},{"k":"G5261","v":["ὑπογραμμός","hupogrammos","hoop-og-ram-mos'","From a compound of G5259 and G1125; an underwriting, that is, copy for imitation (figuratively): - example."]},{"k":"G5262","v":["ὑπόδειγμα","hupodeigma","hoop-od'-igue-mah","From G5263; an exhibit for imitation or warning (figuratively specimen, adumbration): - en- (ex-) ample, pattern."]},{"k":"G5263","v":["ὑποδείκνυμι","hupodeiknumi","hoop-od-ike'-noo-mee","From G5259 and G1166; to exhibit under the eyes, (figuratively) to exemplify (instruct, admonish): - show, (fore-) warn."]},{"k":"G5264","v":["ὑποδέχομαι","hupodechomai","hoop-od-ekh'-om-ahee","From G5259 and G1209; to admit under one’s roof, that is, entertain hospitably: - receive."]},{"k":"G5265","v":["ὑποδέω","hupodeō","hoop-od-eh'-o","From G5259 and G1210; to bind under one’s feet, that is, put on shoes or sandals: - bind on, (be) shod."]},{"k":"G5266","v":["ὑπόδημα","hupodēma","hoop-od'-ah-mah","From G5265; something bound under the feet, that is, a shoe or sandal: - shoe."]},{"k":"G5267","v":["ὑπόδικος","hupodikos","hoop-od'-ee-kos","From G5259 and G1349; under sentence, that is, (by implication) condemned: - guilty."]},{"k":"G5268","v":["ὑποζύγιον","hupozugion","hoop-od-zoog'-ee-on","Neuter of a compound of G5259 and G2218; an animal under the yoke (draught beast), that is, (specifically) a donkey: - ass."]},{"k":"G5269","v":["ὑποζώννυμι","hupozōnnumi","hoop-od-zone'-noo-mee","From G5259 and G2224; to gird under, that is, frap (a vessel with cables across the keel, sides and deck): - undergirt."]},{"k":"G5270","v":["ὑποκάτω","hupokatō","hoop-ok-at'-o","From G5259 and G2736; down under, that is, beneath: - under."]},{"k":"G5271","v":["ὑποκρίνομαι","hupokrinomai","hoop-ok-rin'-om-ahee","Middle voice from G5259 and G2919; to decide (speak or act) under a false part, that is, (figuratively) dissemble (pretend): - feign."]},{"k":"G5272","v":["ὑπόκρισις","hupokrisis","hoop-ok'-ree-sis","From G5271; acting under a feigned part; that is, (figuratively) deceit (“hypocrisy”): - condemnation, dissimulation, hypocrisy."]},{"k":"G5273","v":["ὑποκριτής","hupokritēs","hoop-ok-ree-tace'","From G5271; an actor under an assumed character (stage player), that is, (figuratively) a dissembler (“hypocrite”): - hypocrite."]},{"k":"G5274","v":["ὑπολαμβάνω","hupolambanō","hoop-ol-am-ban'-o","From G5259 and G2983; to take from below, that is, carry upward; figuratively to take up, that is, continue a discourse or topic; mentally to assume (presume): - answer, receive, suppose."]},{"k":"G5275","v":["ὑπολείπω","hupoleipō","hoop-ol-i'-po","From G5295 and G3007; to leave under (behind), that is, (passively) to remain (survive): - be left."]},{"k":"G5276","v":["ὑπολήνιον","hupolēnion","hoop-ol-ah'-nee-on","Neuter of a presumed compound of G5259 and G3025; vessel or receptacle under the press, that is, lower winevat: - winefat."]},{"k":"G5277","v":["ὑπολιμπάνω","hupolimpanō","hoop-ol-im-pan'-o","A prolonged form for G5275; to leave behind, that is, bequeath: - leave."]},{"k":"G5278","v":["ὑπομένω","hupomenō","hoop-om-en'-o","From G5259 and G3306; to stay under (behind), that is, remain; figuratively to undergo, that is, bear (trials), have fortitude, persevere: - abide, endure, (take) patient (-ly), suffer, tarry behind."]},{"k":"G5279","v":["ὑπομιμνήσκω","hupomimnēskō","hoop-om-im-nace'-ko","From G5259 and G3403; to remind quietly, that is, suggest to the (middle voice, one’s own) memory: - put in mind, remember, bring to (put in) remembrance."]},{"k":"G5280","v":["ὑπόμνησις","hupomnēsis","hoop-om'-nay-sis","From G5279; a reminding or (reflexively) recollection: - remembrance."]},{"k":"G5281","v":["ὑπομονή","hupomonē","hoop-om-on-ay'","From G5278; cheerful (or hopeful) endurance, constancy: - enduring, patience, patient continuance (waiting)."]},{"k":"G5282","v":["ὑπονοέω","huponoeō","hoop-on-o-eh'-o","From G5259 and G3539; to think under (privately), that is, to surmise or conjecture: - think, suppose, deem."]},{"k":"G5283","v":["ὑπόνοια","huponoia","hoop-on'-oy-ah","From G5282; suspicion: - surmising."]},{"k":"G5284","v":["ὑποπλέω","hupopleō","hoop-op-leh'-o","From G5259 and G4126; to sail under the lee of: - sail under."]},{"k":"G5285","v":["ὑποπνέω","hupopneō","hoop-op-neh'-o","From G5259 and G4154; to breathe gently, that is, breeze: - blow softly."]},{"k":"G5286","v":["ὑποπόδιον","hupopodion","hoop-op-od'-ee-on","Neuter of a compound of G5259 and G4228; something under the feet, that is, a footrest (figuratively): - footstool."]},{"k":"G5287","v":["ὑπόστασις","hupostasis","hoop-os'-tas-is","From a compound of G5259 and G2476; a setting under (support), that is, (figuratively) concretely essence, or abstractly assurance (objectively or subjectively): - confidence, confident, person, substance."]},{"k":"G5288","v":["ὑποστέλλω","hupostellō","hoop-os-tel'-lo","From G5259 and G4724; to withhold under (out of sight), that is, (reflexively) to cower or shrink, (figuratively) to conceal (reserve): - draw (keep) back, shun, withdraw."]},{"k":"G5289","v":["ὑποστολή","hupostolē","hoop-os-tol-ay'","From G5288; shrinkage (timidity), that is, (by implication) apostasy: - draw back."]},{"k":"G5290","v":["ὑποστρέφω","hupostrephō","hoop-os-tref'-o","From G5259 and G4762; to turn under (behind), that is, to return (literally or figuratively): - come again, return (again, back again), turn back (again)."]},{"k":"G5291","v":["ὑποστρώννυμι","hupostrōnnumi","hoop-os-trone'-noo-mee","From G5259 and G4766; to strew underneath (the feet as a carpet): - spread."]},{"k":"G5292","v":["ὑποταγή","hupotagē","hoop-ot-ag-ay'","From G5293; subordination: - subjection."]},{"k":"G5293","v":["ὑποτάσσω","hupotassō","hoop-ot-as'-so","From G5259 and G5021; to subordinate; reflexively to obey: - be under obedience (obedient), put under, subdue unto, (be, make) subject (to, unto), be (put) in subjection (to, under), submit self unto."]},{"k":"G5294","v":["ὑποτίθημι","hupotithēmi","hoop-ot-ith'-ay-mee","From G5259 and G5087; to place underneath, that is, (figuratively) to hazard, (reflexively) to suggest: - lay down, put in remembrance."]},{"k":"G5295","v":["ὑποτρέχω","hupotrechō","hoop-ot-rekh'-o","From G5259 and G5143 (including its alternate); to run under, that is, (specifically) to sail past: - run under."]},{"k":"G5296","v":["ὑποτύπωσις","hupotupōsis","hoop-ot-oop'-o-sis","From a compound of G5259 and a derivative of G5179; typification under (after), that is, (concretely) a sketch (figuratively) for imitation: - form, pattern."]},{"k":"G5297","v":["ὑποφέρω","hupopherō","hoop-of-er'-o","From G5259 and G5342; to bear from underneath, that is, (figuratively) to undergo hardship: - bear, endure."]},{"k":"G5298","v":["ὑποχωρέω","hupochōreō","hoop-okh-o-reh'-o","From G5259 and G5562; to vacate down, that is, retire quietly: - go aside, withdraw self."]},{"k":"G5299","v":["ὑπωπιάζω","hupōpiazō","hoop-o-pee-ad'-zo","From a compound of G5259 and a derivative of G3700; to hit under the eye (buffet or disable an antagonist as a pugilist), that is, (figuratively) to tease or annoy (into compliance), subdue (one’s passions): - keep under, weary."]},{"k":"G5300","v":["ὗς","us","hoos","Apparently a primary word; a hog (“swine”): - sow."]},{"k":"G5301","v":["ὕσσωπος","hussōpos","hoos'-so-pos","Of foreign origin [H231]; “hyssop”: - hyssop."]},{"k":"G5302","v":["ὑστερέω","hustereō","hoos-ter-eh'-o","From G5306; to be later, that is, (by implication) to be inferior; genitively to fall short (be deficient): - come behind (short), be destitute, fall, lack, suffer need, (be in) want, be the worse."]},{"k":"G5303","v":["ὑστέρημα","husterēma","hoos-ter'-ay-mah","From G5302; a deficit; specifically poverty: - that which is behind, (that which was) lack (-ing), penury, want."]},{"k":"G5304","v":["ὑστέρησις","husterēsis","hoos-ter'-ay-sis","From G5302; a falling short, that is, (specifically) penury: - want."]},{"k":"G5305","v":["ὕστερον","husteron","hoos'-ter-on","Neuter of G5306 as adverb; more lately, that is, eventually: - afterward, (at the) last (of all)."]},{"k":"G5306","v":["ὕστερος","husteros","hoos'-ter-os","Comparatively from G5259 (in the sense of behind); later: - latter."]},{"k":"G5307","v":["ὑφαντός","huphantos","hoo-fan-tos'","From ὑφαίνω huphainō (to weave); woven, that is, (perhaps) knitted: - woven."]},{"k":"G5308","v":["ὑψηλός","hupsēlos","hoop-say-los'","From G5311; lofty (in place or character): - high (-er, -ly) (esteemed)."]},{"k":"G5309","v":["ὑψηλοφρονέω","hupsēlophroneō","hoop-say-lo-fron-eh'-o","From a compound of G5308 and G5424; to be lofty in mind, that is, arrogant: - be highminded."]},{"k":"G5310","v":["ὕψιστος","hupsistos","hoop'-sis-tos","Superlative from the base of G5311; highest, that is, (masculine singular) the Supreme (God), or (neuter plural) the heavens: - most high, highest."]},{"k":"G5311","v":["ὕψος","hupsos","hoop'-sos","From a derivative of G5228; elevation, that is, (abstractly) altitude, (specifically) the sky, or (figuratively) dignity: - be exalted, height, (on) high."]},{"k":"G5312","v":["ὑψόω","hupsoō","hoop-so'-o","From G5311; to elevate (literally or figuratively): - exalt, lift up."]},{"k":"G5313","v":["ὕψωμα","hupsōma","hoop'-so-mah","From G5312; an elevated place or thing, that is, (abstractly) altitude, or (by implication) a barrier (figurative): - height, high thing."]},{"k":"G5314","v":["φάγος","phagos","fag'-os","From G5315; a glutton: - gluttonous."]},{"k":"G5315","v":["φάγω","phagō","fag'-o","A primary verb (used as an alternate of G2068 in certain tenses); to eat (literally or figuratively): - eat, meat."]},{"k":"G5316","v":["φαίνω","phainō","fah'ee-no","Prolongation for the base of G5457; to lighten (shine), that is, show (transitive or intransitive, literal or figurative): - appear, seem, be seen, shine, X think."]},{"k":"G5317","v":["Φάλεκ","Phalek","fal'-ek","Of Hebrew origin [H6389]; Phalek (that is, Peleg), a patriarch: - Phalec."]},{"k":"G5318","v":["φανερός","phaneros","fan-er-os'","From G5316; shining, that is, apparent (literally or figuratively); neuter (as adverb) publicly, externally: - abroad, + appear, known, manifest, open [+ -ly], outward ([+ -ly])."]},{"k":"G5319","v":["φανερόω","phaneroō","fan-er-o'-o","From G5318; to render apparent (literally or figuratively): - appear, manifestly declare, (make) manifest (forth), shew (self)."]},{"k":"G5320","v":["φανερῶς","phanerōs","fan-er-oce'","Adverb from G5318; plainly, that is, clearly or publicly: - evidently, openly."]},{"k":"G5321","v":["φανερωσις","phanerōsis","fan-er'-o-sis","From G5319; exhibition, that is, (figuratively) expression, (by extension) a bestowment: - manifestation."]},{"k":"G5322","v":["φανός","phanos","fan-os'","From G5316; a lightener, that is, light: - lantern."]},{"k":"G5323","v":["Φανουήλ","Phanouēl","fan-oo-ale'","Of Hebrew origin [H6439]; Phanuel (that is, Penuel), an Israelite: - Phanuel."]},{"k":"G5324","v":["φαντάζω","phantazō","fan-tad'-zo","From a derivative of G5316; to make apparent, that is, (passively) to appear (neuter participle as noun, a spectacle): - sight."]},{"k":"G5325","v":["φαντασία","phantasia","fan-tas-ee'-ah","From a derivative of G5324; (properly abstractly) a (vain) show (“fantasy”): - pomp."]},{"k":"G5326","v":["φάντασμα","phantasma","fan'-tas-mah","From G5324; (properly concretely) a (mere) show (“phantasm”), that is, spectre: - spirit."]},{"k":"G5327","v":["φάραγξ","pharagx","far'-anx","Properly strengthened from the base of G4008 or rather of G4486; a gap or chasm, that is, ravine (winter torrent): - valley."]},{"k":"G5328","v":["Φαραώ","Pharaō","far-ah-o'","Of foreign origin [H6547]; Pharao (that is, Pharoh), an Egyptian king: - Pharaoh."]},{"k":"G5329","v":["Φαρές","Phares","far-es'","Of Hebrew origin [H6557]; Phares (that is, Perets), an Israelite: - Phares."]},{"k":"G5330","v":["Φαρισαῖος","Pharisaios","far-is-ah'-yos","Of Hebrew origin (compare [H6567]); a separatist, that is, exclusively religious; a Pharisaean, that is, Jewish sectary: - Pharisee."]},{"k":"G5331","v":["φαρμακεία","pharmakeia","far-mak-i'-ah","From G5332; medication (“pharmacy”), that is, (by extension) magic (literal or figurative): - sorcery, witchcraft."]},{"k":"G5332","v":["φαρμακεύς","pharmakeus","far-mak-yoos'","From φάρμακον pharmakon (a drug, that is, spell giving potion); a druggist (“pharmacist”) or poisoner, that is, (by extension) a magician: - sorcerer."]},{"k":"G5333","v":["φαρμακός","pharmakos","far-mak-os'","The same as G5332: - sorcerer."]},{"k":"G5334","v":["φάσις","phasis","fas'-is","From G5346 (not the same as “phase”, which is from G5316); a saying, that is, report: - tidings."]},{"k":"G5335","v":["φάσκω","phaskō","fas'-ko","Prolongation from the same as G5346; to assert: - affirm, profess, say."]},{"k":"G5336","v":["φάτνη","phatnē","fat'-nay","From πατέομαι pateomai (to eat); a crib (for fodder): - manger, stall."]},{"k":"G5337","v":["φαῦλος","phaulos","fow'-los","Apparently a primary word; “foul” or “flawy”, that is, (figuratively) wicked: - evil."]},{"k":"G5338","v":["φέγγος","pheggos","feng'-gos","Probably akin to the base of G5457 (compare G5350); brilliancy: - light."]},{"k":"G5339","v":["φείδομαι","pheidomai","fi'-dom-ahee","Of uncertain affinity; to be chary of, that is, (subjectively) to abstain or (objectively) to treat leniently: - forbear, spare."]},{"k":"G5340","v":["φειδομένως","pheidomenōs","fi-dom-en'-oce","Adverb from participle of G5339; abstemiously, that is, stingily: - sparingly."]},{"k":"G5341","v":["φελόνης","phelonēs","fel-on'-ace","By transposition for a derivation probably of G5316 (as showing outside the other garments); a mantle (surtout): - cloke."]},{"k":"G5342","v":["φέρω","pherō̄","fer'-o","A primary verb (for which other and apparently not cognate ones are used in certain tenses only; namely οἴω oiō̄̄ and ἐνέγκω enegkō̄ to “bear” or carry (in a very wide application, literally and figuratively: - be, bear, bring (forth), carry, come, + let her drive, be driven, endure, go on, lay, lead, move, reach, rushing, uphold."]},{"k":"G5343","v":["φεύγω","pheugō","fyoo'-go","Apparently a primary verb; to run away (literally or figuratively); by implication to shun; by analogy to vanish: - escape, flee (away)."]},{"k":"G5344","v":["Φῆλιξ","Phēlix","fay'-lix","Of Latin origin; happy; Phelix (that is, Felix), a Roman: - Felix."]},{"k":"G5345","v":["φήμη","phēmē","fay'-may","From G5346; a saying, that is, rumor (“fame”): - fame."]},{"k":"G5346","v":["φημί","phēmi","fay-mee'","Properly the same as the base of G5457 and G5316; to show or make known one’s thoughts, that is, speak or say: - affirm, say. Compare G3004."]},{"k":"G5347","v":["Φῆστος","Phēstos","face'-tos","Of Latin derivation; festal; Phestus (that is, Festus), a Roman: - Festus."]},{"k":"G5348","v":["φθάνω","phthanō","fthan'-o","Apparently a primary verb; to be beforehand, that is, anticipate or precede; by extension to have arrived at: - (already) attain, come, prevent."]},{"k":"G5349","v":["φθαρτός","phthartos","fthar-tos'","From G5351; decayed, that is, (by implication) perishable: - corruptible."]},{"k":"G5350","v":["φθέγγομαι","phtheggomai","ftheng'-gom-ahee","Probably akin to G5338 and thus to G5346; to utter a clear sound, that is, (genitive case) to proclaim: - speak."]},{"k":"G5351","v":["φθείρω","phtheirō","fthi'-ro","Probably strengthened from φθίω phthiō (to pine or waste): properly to shrivel or wither, that is, to spoil (by any process) or (genitive) to ruin (especially figuratively by moral influences, to deprave): - corrupt (self), defile, destroy."]},{"k":"G5352","v":["φθινοπωρινός","phthinopōrinos","fthin-op-o-ree-nos'","From a derivative of φθίνω phthinō (to wane; akin to the base of G5351) and G3703 (meaning late autumn) autumnal (as stripped of leaves): - whose fruit withereth."]},{"k":"G5353","v":["φθόγγος","phthoggos","fthong'-gos","From G5350; utterance, that is, a musical note (vocal or instrumental): - sound."]},{"k":"G5354","v":["φθονέω","phthoneō","fthon-eh'-o","From G5355; to be jealous of: - envy."]},{"k":"G5355","v":["φθόνος","phthonos","fthon'-os","Probably akin to the base of G5351; ill will (as detraction), that is, jealousy (spite): - envy."]},{"k":"G5356","v":["φθορά","phthora","fthor-ah'","From G5351; decay, that is, ruin (spontaneous or inflicted, literally or figuratively): - corruption, destroy, perish."]},{"k":"G5357","v":["φιάλη","phialē","fee-al'-ay","Of uncertain affinity; a broad shallow cup (“phial”): - vial."]},{"k":"G5358","v":["φιλάγαθος","philagathos","fil-ag'-ath-os","From G5384 and G18; fond of good, that is, a promoter of virtue: - love of good men."]},{"k":"G5359","v":["Φιλαδέλφεια","Philadelpheia","fil-ad-el'-fee-ah","From Φιλάδέλφος Philadelphos (the same as G5361), a king of Pergamos; Philadelphia, a place in Asia Minor: - Philadelphia."]},{"k":"G5360","v":["φιλαδελφία","philadelphia","fil-ad-el-fee'-ah","From G5361; fraternal affection: - brotherly love (kindness), love of the brethren."]},{"k":"G5361","v":["φιλάδελφος","philadelphos","fil-ad'-el-fos","From G5384 and G80; fond of brethren, that is, fraternal: - love as brethren."]},{"k":"G5362","v":["φίλανδρος","philandros","fil'-an-dros","From G5384 and G435; fond of man, that is, affectionate as a wife: - love their husbands."]},{"k":"G5363","v":["φιλανθρωπία","philanthrōpia","fil-an-thro-pee'-ah","From the same as G5364; fondness of mankind, that is, benevolence (“philanthropy”): - kindness, love towards man."]},{"k":"G5364","v":["φιλανθρώπως","philanthrōpōs","fil-an-thro'-poce","Adverb from a compound of G5384 and G444; fondly to man (philanthropically), that is, humanely: - courteously."]},{"k":"G5365","v":["φιλαργυρία","philarguria","fil-ar-goo-ree'-ah","From G5366; avarice: - love of money."]},{"k":"G5366","v":["φιλάργυρος","philarguros","fil-ar'-goo-ros","From G5384 and G696; fond of silver (money), that is, avaricious: - covetous."]},{"k":"G5367","v":["φίλαυτος","philautos","fil'-ow-tos","From G5384 and G846; fond of self, that is, selfish: - lover of own self."]},{"k":"G5368","v":["φιλέω","phileō","fil-eh'-o","From G5384; to be a friend to (fond of [an individual or an object]), that is, have affection for (denoting personal attachment, as a matter of sentiment or feeling; while G25 is wider, embracing especially the judgment and the deliberate assent of the will as a matter of principle, duty and propriety: the two thus stand related very much as G2309 and G1014, or as G2372 and G3563 respectively; the former being chiefly of the heart and the latter of the head); specifically to kiss (as a mark of tenderness): - kiss, love."]},{"k":"G5369","v":["φιλήδονος","philēdonos","fil-ay'-don-os","From G5384 and G2237; fond of pleasure, that is, voluptuous: - lover of pleasure."]},{"k":"G5370","v":["φίλημα","philēma","fil'-ay-mah","From G5368; a kiss: - kiss."]},{"k":"G5371","v":["Φιλήμων","Philēmōn","fil-ah'-mone","From G5368; friendly; Philemon, a Christian: - Philemon."]},{"k":"G5372","v":["Φιλητός","Philētos","fil-ay-tos'","From G5368; amiable; Philetus, an opposer of Christianity: - Philetus."]},{"k":"G5373","v":["φιλία","philia","fil-ee'-ah","From G5384; fondness: - friendship."]},{"k":"G5374","v":["Φιλιππήσιος","Philippēsios","fil-ip-pay'-see-os","From G5375; a Philippesian (Philippian), that is, native of Philippi: - Philippian."]},{"k":"G5375","v":["Φίλιπποι","Philippoi","fil'-ip-poy","Plural of G5376; Philippi, a place in Macedonia: - Philippi."]},{"k":"G5376","v":["Φίλιππος","Philippos","fil'-ip-pos","From G5384 and G2462; fond of horses; Philippus, the name of four Israelites: - Philip."]},{"k":"G5377","v":["φιλόθεος","philotheos","fil-oth'-eh-os","From G5384 and G2316; fond of God, that is, pious: - lover of God."]},{"k":"G5378","v":["Φιλόλογος","Philologos","fil-ol'-og-os","From G5384 and G3056; fond of words, that is, talkative (argumentative, learned, “philological”); Philologus, a Christian: - Philologus."]},{"k":"G5379","v":["φιλονεικία","philoneikia","fil-on-i-kee'-ah","From G5380; quarrelsomeness, that is, a dispute: - strife."]},{"k":"G5380","v":["φιλόνεικος","philoneikos","fil-on'-i-kos","From G5384 and νεῖκος neikos (a quarrel; probably akin to G3534); fond of strife, that is, disputatious: - contentious."]},{"k":"G5381","v":["φιλονεξία","philonexia","fil-on-ex-ee'-ah","From G5382; hospitableness: - entertain strangers, hospitality."]},{"k":"G5382","v":["φιλόξενος","philoxenos","fil-ox'-en-os","From G5384 and G3581; fond of guests, that is, hospitable: - given to (lover of, use) hospitality."]},{"k":"G5383","v":["φιλοπρωτεύω","philoprōteuō","fil-op-rot-yoo'-o","From a compound of G5384 and G4413; to be fond of being first, that is, ambitious of distinction: - love to have the preeminence."]},{"k":"G5384","v":["φίλος","philos","fee'-los","Properly dear, that is, a friend; actively fond, that is, friendly (still as a noun, an associate, neighbor, etc.): - friend."]},{"k":"G5385","v":["φιλοσοφία","philosophia","fil-os-of-ee'-ah","From G5386; “philosophy”, that is, (specifically) Jewish sophistry: - philosophy."]},{"k":"G5386","v":["φιλόσοφος","philosophos","fil-os'-of-os","From G5384 and G4680; fond of wise things, that is, a “philosopher”: - philosopher."]},{"k":"G5387","v":["φιλόστοργος","philostorgos","fil-os'-tor-gos","From G5384 and στοργή storgē (cherishing one’s kindred, especially parents or children); fond of natural relatives, that is, fraternal towards fellow Christians: - kindly affectioned."]},{"k":"G5388","v":["φιλότεκνος","philoteknos","fil-ot'-ek-nos","From G5384 and G5043; fond of one’s children, that is, maternal: - love their children."]},{"k":"G5389","v":["φιλοτιμέομαι","philotimeomai","fil-ot-im-eh'-om-ahee","Middle voice from a compound of G5384 and G5092; to be fond of honor, that is, emulous (eager or earnest to do somethng.): - labour, strive, study."]},{"k":"G5390","v":["φιλοφρόνως","philophronōs","fil-of-ron'-oce","Adverb from G5391; with friendliness of mind, that is, kindly: - courteously."]},{"k":"G5391","v":["φιλόφρων","philophrōn","fil-of'-rone","From G5384 and G5424; friendly of mind, that is, kind: - courteous."]},{"k":"G5392","v":["φιμόω","phimoō","fee-mo'-o","From φιμός phimos (a muzzle); to muzzle: - muzzle."]},{"k":"G5393","v":["Φλέγων","Phlegōn","fleg'-one","Active participle of the base of G5395; blazing; Phlegon, a Christian: - Phlegon."]},{"k":"G5394","v":["φλογίζω","phlogizō","flog-id'-zo","From G5395; to cause a blaze, that is, ignite (figuratively to inflame with passion): - set on fire."]},{"k":"G5395","v":["φλόξ","phlox","flox","From a primary φλέγω phlegō (to “flash” or “flame”); a blaze: - flame (-ing)."]},{"k":"G5396","v":["φλυαρέω","phluareō","floo-ar-eh'-o","From G5397; to be a babbler or trifler, that is, (by implication) to berate idly or mischievously: - prate against."]},{"k":"G5397","v":["φλύαρος","phluaros","floo'-ar-os","From φλύω phluō (to bubble); a garrulous person, that is, prater: - tattler."]},{"k":"G5398","v":["φοβερός","phoberos","fob-er-os'","From G5401; frightful, that is, (objectively) formidable: - fearful, terrible."]},{"k":"G5399","v":["φοβέω","phobeō","fob-eh'-o","From G5401; to frighten, that is, (passively) to be alarmed; by analogy to be in awe of, that is, revere: - be (+ sore) afraid, fear (exceedingly), reverence."]},{"k":"G5400","v":["φόβητρον","phobētron","fob'-ay-tron","Neuter of a derivative of G5399; a frightening thing, that is, terrific portent: - fearful sight."]},{"k":"G5401","v":["φόβος","phobos","fob'-os","From a primary φέβομαι phebomai (to be put in fear); alarm or fright: - be afraid, + exceedingly, fear, terror."]},{"k":"G5402","v":["Φοίβη","Phoibē","foy'-bay","Feminine of Φοῖβος Phoibos (bright; probably akin to the base of G5457); Phaebe, a Christian woman: - Phebe."]},{"k":"G5403","v":["Φοινίκη","Phoinikē","foy-nee'-kay","From G5404; palm country; Phaenice (or Phaenicia), a region of Palestine: - Phenice, Phenicia."]},{"k":"G5404","v":["φοῖνιξ","phoinix","foy'-nix","Of uncertain derivation; a palm tree: - palm (tree)."]},{"k":"G5405","v":["Φοῖνιξ","Phoinix","foy'-nix","Probably the same as G5404; Phaenix, a place in Crete: - Phenice."]},{"k":"G5406","v":["φονεύς","phoneus","fon-yooce'","From G5408; a murderer (always of criminal [or at least intentional] homicide; which G443 does not necessarily imply; while G4607 is a special term for a public bandit): - murderer."]},{"k":"G5407","v":["φονεύω","phoneuō","fon-yoo'-o","From G5406; to be a murderer (of): - kill, do murder, slay."]},{"k":"G5408","v":["φόνος","phonos","fon'-os","From an obsolete primary φένω phenō (to slay); murder: - murder, + be slain with, slaughter."]},{"k":"G5409","v":["φορέω","phoreō","for-eh'-o","From G5411; to have a burden, that is, (by analogy) to wear as clothing or a constant accompaniment: - bear, wear."]},{"k":"G5410","v":["Φόρον","Phoron","for'-on","Of Latin origin; a forum or market place; only in compounds with G675; a station on the Appian road: - forum."]},{"k":"G5411","v":["φόρος","phoros","for'-os","From G5342; a load (as borne), that is, (figuratively) a tax (properly an individual assessment on persons or property; whereas G5056 is usually a general toll on goods or travel): - tribute."]},{"k":"G5412","v":["φορτίζω","phortizō","for-tid'-zo","From G5414; to load up (properly as a vessel or animal), that is, (figuratively) to overburden with ceremony (or spiritual anxiety): - lade, be heavy laden."]},{"k":"G5413","v":["φορτίον","phortion","for-tee'-on","Diminutive of G5414; an invoice (as part of freight), that is, (figuratively) a task or service: - burden."]},{"k":"G5414","v":["φόρτος","phortos","for'-tos","From G5342; something carried, that is, the cargo of a ship: - lading."]},{"k":"G5415","v":["Φορτουνάτος","Phortounatos","for-too-nat'-os","Of Latin origin; “fortunate”; Fortunatus, a Christian: - Fortunatus."]},{"k":"G5416","v":["φραγέλλιον","phragellion","frag-el'-le-on","Neuter of a derivative from the base of G5417; a whip, that is, Roman lash as a public punishment: - scourge."]},{"k":"G5417","v":["φραγελλόω","phragelloō","frag-el-lo'-o","From a presumed equivalent of the Latin flagellum; to whip, that is, lash as a public punishment: - scourge."]},{"k":"G5418","v":["φραγμός","phragmos","frag-mos'","From G5420; a fence, or inclosing barrier (literally or figuratively): - hedge (+ round about), partition."]},{"k":"G5419","v":["φράζω","phrazō","frad'-zo","Probably akin to G5420 through the idea of defining; to indicate (by word or act), that is, (specifically) to expound: - declare."]},{"k":"G5420","v":["φράσσω","phrassō","fras'-so","Apparently a strengthened form of the base of G5424; to fence or inclose, that is, (specifically) to block up (figuratively to silence): - stop."]},{"k":"G5421","v":["φρέαρ","phrear","freh'-ar","Of uncertain derivation; a hole in the ground (dug for obtaining or holding water or other purposes), that is, a cistern or well; figuratively an abyss (as a prison): - well, pit."]},{"k":"G5422","v":["φρεναπατάω","phrenapataō","fren-ap-at-ah'-o","From G5423; to be a mind misleader, that is, delude: - deceive."]},{"k":"G5423","v":["φρεναπάτης","phrenapatēs","fren-ap-at'-ace","From G5424 and G539; a mind misleader, that is, seducer: - deceiver."]},{"k":"G5424","v":["φρήν","phrēn","frane","Probably from an obsolete φράω phraō (to rein in or curb; compare G5420); the midrif (as a partition of the body), that is, (figuratively and by implication of sympathy) the feelings (or sensitive nature; by extension [also in the plural] the mind or cognitive faculties): - understanding."]},{"k":"G5425","v":["φρίσσω","phrissō","fris'-so","Apparently a primary verb; to “bristle” or chill, that is, shudder (fear): - tremble."]},{"k":"G5426","v":["φρονέω","phroneō","fron-eh'-o","From G5424; to exercise the mind, that is, entertain or have a sentiment or opinion; by implication to be (mentally) disposed (more or less earnestly in a certain direction); intensively to interest oneself in (with concern or obedience): - set the affection on, (be) care (-ful), (be like-, + be of one, + be of the same, + let this) mind (-ed, regard, savour, think."]},{"k":"G5427","v":["φρόνημα","phronēma","fron'-ay-mah","From G5426; (mental) inclination or purpose: - (be, + be carnally, + be spiritually) mind (-ed)."]},{"k":"G5428","v":["φρόνησις","phronēsis","fron'-ay-sis","From G5426; mental action or activity, that is, intellectual or moral insight: - prudence, wisdom."]},{"k":"G5429","v":["φρόνιμος","phronimos","fron'-ee-mos","From G5424; thoughtful, that is, sagacious or discreet (implying a cautious character; while G4680 denotes practical skill or acumen; and G4908 indicates rather intelligence or mental acquirement); in a bad sense conceited (also in the comparative): - wise (-r)."]},{"k":"G5430","v":["φρονίμως","phronimōs","fron-im'-oce","Adverb from G5429; prudently: - wisely."]},{"k":"G5431","v":["φροντίζω","phrontizō","fron-tid'-zo","From a derivative of G5424; to exercise thought, that is, be anxious: - be careful."]},{"k":"G5432","v":["φρουρέω","phroureō","froo-reh'-o","From a compound of G4253 and G3708; to be a watcher in advance, that is, to mount guard as a sentinel (post spies at gates); figuratively to hem in, protect: - keep (with a garrison). Compare G5083."]},{"k":"G5433","v":["φρυάσσω","phruassō","froo-as'-so","Akin to G1032, G1031; to snort (as a spirited horse), that is, (figuratively) to make a tumult: - rage."]},{"k":"G5434","v":["φρύγανον","phruganon","froo'-gan-on","Neuter of a presumed derivative of φρύγω phrugō (to roast or parch; akin to the base of G5395); something desiccated, that is, a dry twig: - stick."]},{"k":"G5435","v":["Φρυγία","Phrugia","froog-ee'-ah","Probably of foreign origin; Phrygia, a region of Asia Minor: - Phrygia."]},{"k":"G5436","v":["Φύγελλος","Phugellos","foog'-el-los","Probably from G5343; fugitive; Phygellus, an apostate Christian: - Phygellus."]},{"k":"G5437","v":["φυγή","phugē","foog-ay'","From G5343; a fleeing, that is, escape: - flight."]},{"k":"G5438","v":["φυλακή","phulakē","foo-lak-ay'","From G5442; a guarding or (concretely guard), the act, the parson; figuratively the place, the condition, or (specifically) the time (as a division of day or night), literally or figuratively: - cage, hold, (im-) prison (-ment), ward, watch."]},{"k":"G5439","v":["φυλακίζω","phulakizō","foo-lak-id'-zo","From G5441; to incarcerate: - imprison."]},{"k":"G5440","v":["φυλακτήριον","phulaktērion","foo-lak-tay'-ree-on","Neuter of a derivative of G5442; a guard case, that is, “phylactery” for wearing slips of Scripture texts: - phylactery."]},{"k":"G5441","v":["φύλαξ","phulax","foo'-lax","From G5442; a watcher or sentry: - keeper."]},{"k":"G5442","v":["φυλάσσω","phulassō","foo-las'-so","Probably from G5443 through the idea of isolation; to watch, that is, be on guard (literally or figuratively); by implication to preserve. obey, avoid: - beware, keep (self), observe, save. Compare G5083."]},{"k":"G5443","v":["φυλή","phulē","foo-lay'","From G5453 (compare G5444); an offshoot, that is, race or clan: - kindred, tribe."]},{"k":"G5444","v":["φύλλον","phullon","fool'-lon","From the same as G5443; a sprout, that is, leaf: - leaf."]},{"k":"G5445","v":["φύραμα","phurama","foo'-ram-ah","From a prolonged form of φύρω phurō (to mix a liquid with a solid; perhaps akin to G5453 through the idea of swelling in bulk), mean to knead; a mass of dough: - lump."]},{"k":"G5446","v":["φυσικός","phusikos","foo-see-kos'","From G5449; “physical”, that is, (by implication) instinctive: - natural. Compare G5591."]},{"k":"G5447","v":["φυσικῶς","phusikōs","foo-see-koce'","Adverb frm G5446; “physically”, that is, (by implication) instinctively: - naturally."]},{"k":"G5448","v":["φυσιόω","phusioō","foo-see-o'-o","From G5449 in the primary sense of blowing; to inflate, that is, (figuratively) make proud (haughty): - puff up."]},{"k":"G5449","v":["φύσις","phusis","foo'-sis","From G5453; growth (by germination or expansion), that is, (by implication) natural production (lineal descent); by extension a genus or sort; figuratively native disposition, constitution or usage: - ([man-]) kind, nature ([-al])."]},{"k":"G5450","v":["φυσίωσις","phusiōsis","foo-see'-o-sis","From G5448; inflation, that is, (figuratively) haughtiness: - swelling."]},{"k":"G5451","v":["φυτεία","phuteia","foo-ti'-ah","From G5452; trans planting, that is, (concretely) a shrub or vegetable: - plant."]},{"k":"G5452","v":["φυτεύω","phuteuō","foot-yoo'-o","From a derivative of G5453; to set out in the earth, that is, implant. Figuratively to instil doctrine: - plant."]},{"k":"G5453","v":["φύω","phuō","foo'-o","A primary verb; probably originally to “puff” or blow, that is, to swell up; but only used in the implied sense, to germinate or grow (sprout, produce), literally or figuratively: - spring (up)."]},{"k":"G5454","v":["φωλεός","phōleos","fo-leh-os'","Of uncertain derivation; a burrow or lurking place: - hole."]},{"k":"G5455","v":["φωνέω","phōneō","fo-neh'-o","From G5456; to emit a sound (animal, human or instrumental); by implication to address in words or by name, also in imitation: - call (for), crow, cry."]},{"k":"G5456","v":["φωνή","phōnē","fo-nay'","Probably akin to G5316 through the idea of disclosure; a tone (articulate, bestial or artificial); by implication an address (for any purpose), saying or language: - noise, sound, voice."]},{"k":"G5457","v":["φῶς","phōs","foce","From an obsolete φάω phaō (to shine or make manifest, especially by rays; compare G5316 and G5346); luminousness (in the widest application, natural or artificial, abstract or concrete, literal or figurative): - fire, light."]},{"k":"G5458","v":["φωστήρ","phōstēr","foce-tare'","From G5457; an illuminator, that is, (concretely) a luminary, or (abstractly) brilliancy: - light."]},{"k":"G5459","v":["φωσφόρος","phōsphoros","foce-for'-os","From G5457 and G5342; light bearing (“phosphorus”), that is, (specifically) the morning star (figuratively): - day star."]},{"k":"G5460","v":["φωτεινός","phōteinos","fo-ti-nos'","From G5457; lustrous, that is, transparent or well illuminated (figurative): - bright, full of light."]},{"k":"G5461","v":["φωτίζω","phōtizō","fo-tid'-zo","From G5457; to shed rays, that is, to shine or (transitively) to brighten up (literally or figuratively): - enlighten, illuminate, (bring to, give) light, make to see."]},{"k":"G5462","v":["φωτισμός","phōtismos","fo-tis-mos'","From G5461; illumination (figurative): - light."]},{"k":"G5463","v":["χαίρω","chairō","khah'ee-ro","A primary verb; to be full of “cheer”, that is, calmly happy or well off; impersonal especially as a salutation (on meeting or parting), be well: - farewell, be glad, God speed, greeting, hail, joy (-fully), rejoice."]},{"k":"G5464","v":["χάλαζα","chalaza","khal'-ad-zah","Probably from G5465; hail: - hail."]},{"k":"G5465","v":["χαλάω","chalaō","khal-ah'-o","From the base of G5490; to lower (as into a void): - let down, strike."]},{"k":"G5466","v":["Χαλδαῖος","Chaldaios","khal-dah'-yos","Probably of Hebrew origin [H3778]; a Chaldaean (that is, Kasdi), or native of the region of the lower Euphrates: - Chaldan."]},{"k":"G5467","v":["χαλεπός","chalepos","khal-ep-os'","Perhaps from G5465 through the idea of reducing the strength; difficult, that is, dangerous, or (by implication) furious: - fierce, perilous."]},{"k":"G5468","v":["χαλιναγωγέω","chalinagōgeō","khal-in-ag-ogue-eh'-o","From a compound of G5469 and the reduplicated form of G71; to be a bit leader, that is, to curb (figuratively): - bridle."]},{"k":"G5469","v":["χαλινός","chalinos","khal-ee-nos'","From G5465 a curb or head stall (as curbing the spirit): - bit, bridle."]},{"k":"G5470","v":["χάλκεος","chalkeos","khal'-key-os","From G5475; coppery: - brass."]},{"k":"G5471","v":["χαλκεύς","chalkeus","khalk-yooce'","From G5475; a copper worker or brazier: - coppersmith."]},{"k":"G5472","v":["χαλκηδών","chalkēdōn","khal-kay-dohn'","From G5475 and perhaps G1491; copper like, that is, “chalcedony”: - chalcedony."]},{"k":"G5473","v":["χαλκίον","chalkion","khal-kee'-on","Diminutive from G5475; a copper dish: - brazen vessel."]},{"k":"G5474","v":["χαλκαλίβανον","chalkalibanon","khal-kol-ib'-an-on","Neuter of a compound of G5475 and G3030 (in the implied mean of whiteness or brilliancy); burnished copper, an alloy of copper (or gold) and silver having a brilliant lustre: - fine brass."]},{"k":"G5475","v":["χαλκός","chalkos","khal-kos'","Perhaps from G5465 through the idea of hollowing out as a vessel (this metal being chiefly used for that purpose); copper (the substance, or some implement or coin made of it): - brass, money."]},{"k":"G5476","v":["χαμαί","chamai","kham-ah'ee","Adverb perhaps from the base of G5490 through the idea of a fissure in the soil; earthward, that is, prostrate: - on (to) the ground."]},{"k":"G5477","v":["Χαναάν","Chanaan","khan-ah-an'","Of Hebrew origin [H3667]; Chanaan (that is, Kenaan), the early name of Palestine: - Chanaan."]},{"k":"G5478","v":["Χανααναῖος","Chanaanaios","khan-ah-an-ah'-yos","From G5477; a Chanaanaean (that is, Kenaanite), or native of gentile Palestine: - of Canaan."]},{"k":"G5479","v":["χαρά","chara","khar-ah'","From G5463; cheerfulness, that is, calm delight: - gladness, X greatly, (X be exceeding) joy (-ful, -fully, -fulness, -ous)."]},{"k":"G5480","v":["χάραγμα","charagma","khar'-ag-mah","From the same as G5482; a scratch or etching, that is, stamp (as a badge of servitude), or sculptured figure (statue): - graven, mark."]},{"k":"G5481","v":["χαρακτήρ","charaktēr","khar-ak-tar'","From the same as G5482; a graver (the tool or the person), that is, (by implication) engraving ([“character”], the figure stamped, that is, an exact copy or [figuratively] representation): - express image."]},{"k":"G5482","v":["χάραξ","charax","khar'-ax","From “charasso” (to sharpen to a point; akin to G1125 through the idea of scratching); a stake, that is, (by implication) a palisade or rampart (millitary mound for circumvallation in a siege): - trench."]},{"k":"G5483","v":["χαρίζομαι","charizomai","khar-id'-zom-ahee","Middle voice from G5485; to grant as a favor, that is, gratuitously, in kindness, pardon or rescue: - deliver, (frankly) forgive, (freely) give, grant."]},{"k":"G5484","v":["χάριν","charin","khar'-in","Accusative case of G5485 as preposition; through favor of, that is, on account of: - be- (for) cause of, for sake of, + . . . fore, X reproachfully."]},{"k":"G5485","v":["χάρις","charis","khar'-ece","From G5463; graciousness (as gratifying), of manner or act (abstract or concrete; literal, figurative or spiritual; especially the divine influence upon the heart, and its reflection in the life; including gratitude): - acceptable, benefit, favour, gift, grace (-ious), joy liberality, pleasure, thank (-s, -worthy)."]},{"k":"G5486","v":["χάρισμα","charisma","char'-is-mah","From G5483; a (divine) gratuity, that is, deliverance (from danger or passion); (specifically) a (spiritual) endowment, that is, (subjectively) religious qualification, or (objectively) miraculous faculty: - (free) gift."]},{"k":"G5487","v":["χαριτόω","charitoō","khar-ee-to'-o","From G5485; to grace, that is, indue with special honor: - make accepted, be highly favoured."]},{"k":"G5488","v":["Χαῤῥάν","Charrhan","khar-hran'","Of Hebrew origin [H2771]; Charrhan (that is, Charan), a place in Mesopotamia: - Charran."]},{"k":"G5489","v":["χάρτης","chartēs","khar'-tace","From the same as G5482; a sheet (“chart”) of writing material (as to be scribbled over): - paper."]},{"k":"G5490","v":["χάσμα","chasma","khas'-mah","From a form of an obsolete primary “chao” (to “gape” or “yawn”); a “chasm” or vacancy (impassable interval): - gulf."]},{"k":"G5491","v":["χεῖλος","cheilos","khi'-los","From a form of the same as G5490; a lip (as a pouring place); figuratively a margin (of water): - lip, shore."]},{"k":"G5492","v":["χειμάζω","cheimazō","khi-mad'-zo","From the same as G5494; to storm, that is, (passively) to labor under a gale: - to tossed with tempest."]},{"k":"G5493","v":["χείμαῤῥος","cheimarrhos","khi'-mar-hros","From the base of G5494 and G4482; a storm runlet, that is, winter torrent: - brook."]},{"k":"G5494","v":["χειμών","cheimōn","khi-mone'","From a derivation of χέω cheō (to pour; akin to the base of G5490 through the idea of a channel), meaning a storm (as pouring rain); by implication the rainy season, that is, winter: - tempest, foul weather, winter."]},{"k":"G5495","v":["χείρ","cheir","khire","Perhaps from the base of G5494 in the sense of its congener the base of G5490 (through the idea of hollowness for grasping); the hand (literally or figuratively [power]; especially [by Hebraism] a means or instrument): - hand."]},{"k":"G5496","v":["χειραγωγέω","cheiragōgeō","khi-rag-ogue-eh'-o","From G5497; to be a hand leader, that is, to guide (a blind person): - lead by the hand."]},{"k":"G5497","v":["χειραγωγός","cheiragōgos","khi-rag-o-gos'","From G5495 and a reduplicated form of G71; a hand leader, that is, personal conductor (of a blind person): - some to lead by the hand."]},{"k":"G5498","v":["χειρόγραφον","cheirographon","khi-rog'-raf-on","Neuter of a compound of G5495 and G1125; something hand written (“chirograph”), that is, a manuscript (specifically a legal document or bond (figuratively)): - handwriting."]},{"k":"G5499","v":["χειροποίητος","cheiropoiētos","khi-rop-oy'-ay-tos","From G5495 and a derivative of G4160; manufactured, that is, of human construction: - made by (make with) -    hands."]},{"k":"G5500","v":["χειροτονέω","cheirotoneō","khi-rot-on-eh'-o","From a compound of G5495 and τείνω teinō (to stretch); to be a hand reacher or voter (by raising the hand), that is, (genitive) to select or appoint: - choose, ordain."]},{"k":"G5501","v":["χείρων","cheirōn","khi'-rone","Irregular compound of G2556; from an obsolete equivalent χέρης cherēs (of uncertain derivation); more evil or aggravated (physically, mentally or morally): - sorer, worse."]},{"k":"G5502","v":["χερουβίμ","cheroubim","kher-oo-beem'","Plural of Hebrew origin [H3742]; “cherubim” (that is, cherubs or kerubim): - cherubims."]},{"k":"G5503","v":["χήρα","chēra","khay'-rah","Feminine of a presumed derivation apparently from the base of G5490 through the idea of deficiency; a widow (as lacking a husband), literally or figuratively: - widow."]},{"k":"G5504","v":["χθές","chthes","khthes","Of uncertain derivation; “yesterday”; by extension in time past or hitherto: - yesterday."]},{"k":"G5505","v":["χιλιάς","chilias","khil-ee-as'","From G5507; one thousand (“chiliad”): - thousand."]},{"k":"G5506","v":["χιλίαρχος","chiliarchos","khil-ee'-ar-khos","From G5507 and G757; the commander of a thousand soldiers (“chiliarch”), that is, colonel: - (chief, high) captain."]},{"k":"G5507","v":["χίλιοι","chilioi","khil'-ee-oy","Plural of uncertain affinity; a thousand: - thousand."]},{"k":"G5508","v":["Χίος","Chios","khee'-os","Of uncertain derivation; Chios, an island in the Mediterranean: - Chios."]},{"k":"G5509","v":["χιτών","chitōn","khee-tone'","Of foreign origin [H3801]; a tunic or shirt: - clothes, coat, garment."]},{"k":"G5510","v":["χιών","chiōn","khee-one'","Perhaps akin to the base of G5490 (G5465) or G5494 (as descending or empty); snow: - snow."]},{"k":"G5511","v":["χλαμύς","chlamus","khlam-ooce'","Of uncertain derivation; a military cloak: - robe."]},{"k":"G5512","v":["χλευάζω","chleuazō","khlyoo-ad'-zo","From a derivative probably of G5491; to throw out the lip, that is, jeer at: - mock."]},{"k":"G5513","v":["χλιαρός","chliaros","khlee-ar-os'","From χλίω chliō (to warm); tepid: - lukewarm."]},{"k":"G5514","v":["Χλόη","Chloē","khlo'-ay","Feminine of apparently a primary word; “green”; Chloe, a Christian female: - Chloe."]},{"k":"G5515","v":["χλωρός","chlōros","khlo-ros'","From the same as G5514; greenish, that is, verdant, dun-colored: - green, pale."]},{"k":"G5516","v":["χξς","chi xi stigma","khee xee stig'-ma","The 22nd, 14th and an obsolete letter (G4742 as a cross) of the Greek alphabet (intermediate between the 5th and 6th), used as numbers; denoting respectively 600, 60 and 6; 666 as a numeral: - six hundred threescore and six."]},{"k":"G5517","v":["χοΐκός","choikos","kho-ik-os'","From G5522; dusty or dirty (soil like), that is, (by implication) terrene: - earthy."]},{"k":"G5518","v":["χοῖνιξ","choinix","khoy'-nix","Of uncertain derivation; a chaenix or certain dry measure: - measure."]},{"k":"G5519","v":["χοῖρος","choiros","khoy-'ros","Of uncertain derivation; a hog: - swine."]},{"k":"G5520","v":["χολάω","cholaō","khol-ah'-o","From G5521; to be bilious, that is, (by implication) irritable (enraged, “choleric”): - be angry."]},{"k":"G5521","v":["χολή","cholē","khol-ay'","Feminine of an equivalent perhaps akin to the same as G5514 (from the greenish hue); “gall” or bile, that is, (by analogy) poison or an anodyne (wormwood, poppy, etc.): - gall."]},{"k":"G5522","v":["χόος","choos","kho'-os","From the base of G5494; a heap (as poured out), that is, rubbish; lose dirt: - dust."]},{"k":"G5523","v":["Χοραζίν","Chorazin","khor-ad-zin'","Of uncertain derivation, Chorazin, a place in Palestine: - Chorazin."]},{"k":"G5524","v":["χορηγέω","chorēgeō","khor-ayg-eh'-o","From a compound of G5525 and G71; to be a dance leader, that is, (genitive case) to furnish: - give, minister."]},{"k":"G5525","v":["χορός","choros","khor-os'","Of uncertain derivation; a ring, that is, round dance (“choir”): - dancing."]},{"k":"G5526","v":["χορτάζω","chortazō","khor-tad'-zo","From G5528; to fodder, that is, (genitive case) to gorge (supply food in abundance): - feed, fill, satisfy."]},{"k":"G5527","v":["χόρτασμα","chortasma","khor'-tas-mah","From G5526; forage, that is, food: - sustenance."]},{"k":"G5528","v":["χόρτος","chortos","khor'-tos","Apparently a primary word; a “court” or “garden”, that is, (by implication of pasture) herbage or vegetation: - blade, grass, hay."]},{"k":"G5529","v":["Χουζᾶς","Chouzas","khood-zas'","Of uncertain origin, Chuzas, an officer of Herod: - Chuza."]},{"k":"G5530","v":["χράομαι","chraomai","khrah'-om-ahee","Middle voice of a primary verb (perhaps rather from G5495, to handle); to furnish what is needed; (give an oracle, “graze” [touch slightly], light upon, etc.), that is, (by implication) to employ or (by extension) to act towards one in a given manner: - entreat, use. Compare G5531, G5534."]},{"k":"G5531","v":["χράω","chraō","khrah'-o","Probably the same as the base of G5530; to loan: - lend."]},{"k":"G5532","v":["χρεία","chreia","khri'-ah","From the base of G5530 or G5534; employment, that is, an affair; also (by implication) occasion, demand, requirement or destitution: - business, lack, necessary (-ity), need (-ful), use, want."]},{"k":"G5533","v":["χρεωφειλέτης","chreōpheiletēs","khreh-o-fi-let'-ace","From a derivative of G5531 and G3781; a loan ower, that is, indebted person: - debtor."]},{"k":"G5534","v":["χρή","chrē","khray","Third person singular of the same as G5530 or G5531 used impersonally; it needs (must or should) be: - ought."]},{"k":"G5535","v":["χρῄζω","chrēzō","khrade'-zo","From G5532; to make (that is, have) necessity, that is, be in want of: - (have) need."]},{"k":"G5536","v":["χρῆμα","chrēma","khray'-mah","Something useful or needed, that is, wealth, price: - money, riches."]},{"k":"G5537","v":["χρηματίζω","chrēmatizō","khray-mat-id'-zo","From G5536; to utter an oracle (compare the original sense of G5530), that is, divinely intimate; by implication (compare the secular sense of G5532) to constitute a firm for business, that is, (genitive) bear as a title: - be called, be admonished (warned) of God, reveal, speak."]},{"k":"G5538","v":["χρηματισμός","chrēmatismos","khray-mat-is-mos'","From G5537; a divine response or revelation: - answer of God."]},{"k":"G5539","v":["χρήσιμος","chrēsimos","khray'-see-mos","From G5540; serviceable: - profit."]},{"k":"G5540","v":["χρῆσις","chrēsis","khray'-sis","From G5530; employment, that is, (specifically) sexual intercourse (as an occupation of the body): - use."]},{"k":"G5541","v":["χρηστεῦομαι","chrēsteuomai","khraste-yoo'-om-ahee","Middle voice from G5543; to show oneself useful, that is, act benevolently: - be kind."]},{"k":"G5542","v":["χρηστολογία","chrēstologia","khrase-tol-og-ee'-ah","From a compound of G5543 and G3004; fair speech, that is, plausibility: - good words."]},{"k":"G5543","v":["χρηστός","chrēstos","khrase-tos'","From G5530; employed, that is, (by implication) useful (in manner or morals): - better, easy, good (-ness), gracious, kind."]},{"k":"G5544","v":["χρηστότης","chrēstotēs","khray-stot'-ace","From G5543; usefulness, that is, moral excellence (in character or demeanor): - gentleness, good (-ness), kindness."]},{"k":"G5545","v":["χρίσμα","chrisma","khris'-mah","From G5548; an unguent or smearing, that is, (figuratively) the special endowment (“chrism”) of the Holy Spirit: - anointing, unction."]},{"k":"G5546","v":["Χριστιανός","Christianos","khris-tee-an-os'","From G5547; a Christian, that is, follower of Christ: - Christian."]},{"k":"G5547","v":["Χριστός","Christos","khris-tos'","From G5548; anointed, that is, the Messiah, an epithet of Jesus: - Christ."]},{"k":"G5548","v":["χρίω","chriō","khree'-o","Probably akin to G5530 through the idea of contact; to smear or rub with oil, that is, (by implication) to consecrate to an office or religious service: - anoint."]},{"k":"G5549","v":["χρονίζω","chronizō","khron-id'-zo","From G5550; to take time, that is, linger: - delay, tarry."]},{"k":"G5550","v":["χρόνος","chronos","khron'-os","Of uncertain derivation; a space of time (in genitive case, and thus properly distinguished from G2540, which designates a fixed or special occasion; and from G165, which denotes a particular period) or interval; by extension an individual opportunity; by implication delay: - + years old, season, space, (X often-) time (-s), (a) while."]},{"k":"G5551","v":["χρονοτριβέω","chronotribeō","khron-ot-rib-eh'-o","From a presumed compound of G5550 and the base of G5147; to be a time wearer, that is, to procrastinate (linger): - spend time."]},{"k":"G5552","v":["χρύσεος","chruseos","khroo'-seh-os","From G5557; made of gold: - of gold, golden."]},{"k":"G5553","v":["χρυσίον","chrusion","khroo-see'-on","Diminutive of G5557; a golden article, that is, gold plating, ornament, or coin: - gold."]},{"k":"G5554","v":["χρυσοδακτύλιος","chrusodaktulios","khroo-sod-ak-too'-lee-os","From G5557 and G1146; gold ringed, that is, wearing a golden finger ring or similar jewelry: - with a gold ring."]},{"k":"G5555","v":["χρυσόλιθος","chrusolithos","khroo-sol'-ee-thos","From G5557 and G3037; gold stone, that is, a yellow gem (“chrysolite”): - chrysolite."]},{"k":"G5556","v":["χρυσόπρασος","chrusoprasos","khroo-sop'-ras-os","From G5557 and πράσον prason (a leek); a greenish yellow gem (“chrysoprase”): - chrysoprase."]},{"k":"G5557","v":["χρυσός","chrusos","khroo-sos'","Perhaps from the base of G5530 (through the idea of the utility of the metal); gold; by extension a golden article, as an ornament or coin: - gold."]},{"k":"G5558","v":["χρυσόω","chrusoō","khroo-so'-o","From G5557; to gild, that is, bespangle with golden ornaments: - deck."]},{"k":"G5559","v":["χρώς","chrōs","khroce","Probably akin to the base of G5530 through the idea of handling; the body (properly its surface or skin): - body."]},{"k":"G5560","v":["χωλός","chōlos","kho-los'","Apparently a primary word; “halt”, that is, limping: - cripple, halt, lame."]},{"k":"G5561","v":["χώρα","chōra","kho'-rah","Feminine of a derivative of the base of G5490 through the idea of empty expanse; room, that is, a space of territory (more or less extensive; often including its inhabitants): - coast, county, fields, grounds, land, region. Compare G5117."]},{"k":"G5562","v":["χωρέω","chōreō","kho-reh'-o","From G5561; to be in (give) space, that is, (intransitively) to pass, enter, or (transitively) to hold, admit (literally or figuratively): - come, contain, go, have, place, (can, be room to) receive."]},{"k":"G5563","v":["χωρίζω","chōrizō","kho-rid'-zo","From G5561; to place room between, that is, part; reflexively to go away: - depart, put asunder, separate."]},{"k":"G5564","v":["χωρίον","chōrion","kho-ree'-on","Diminutive of G5561; a spot or plot of ground: - field, land, parcel of ground, place, possession."]},{"k":"G5565","v":["χωρίς","chōris","kho-rece'","Adverb from G5561; at a space, that is, separately or apart from (often as preposition): - beside, by itself, without."]},{"k":"G5566","v":["χῶρος","chōros","kho'-ros","Of Latin origin; the north west wind: - north west."]},{"k":"G5567","v":["ψάλλω","psallō","psal'-lo","Probably strengthened from ψάω psaō (to rub or touch the surface; compare G5597); to twitch or twang, that is, to play on a stringed instrument (celebrate the divine worship with music and accompanying odes): - make melody, sing (psalms)."]},{"k":"G5568","v":["ψαλμός","psalmos","psal-mos'","From G5567; a set piece of music, that is, a sacred ode (accompanied with the voice, harp or other instrument; a “psalm”); collectively the book of the Psalms: - psalm. Compare G5603."]},{"k":"G5569","v":["ψευδάδελφος","pseudadelphos","psyoo-dad'-el-fos","From G5571 and G80; a spurious brother, that is, pretended associate: - false brethren."]},{"k":"G5570","v":["ψευδαπόστολος","pseudapostolos","psyoo-dap-os'-tol-os","From G5571 and G652; a spurious apostle, that is, pretended preacher: - false teacher."]},{"k":"G5571","v":["ψευδής","pseudēs","psyoo-dace'","From G5574; untrue, that is, erroneous, deceitful, wicked: - false, liar."]},{"k":"G5572","v":["ψευδοδιδάσκαλος","pseudodidaskalos","psyoo-dod-id-as'-kal-os","From G5571 and G1320; a spurious teacher, that is, propagator of erroneous Christian doctrine: - false teacher."]},{"k":"G5573","v":["ψευδολόγος","pseudologos","psyoo-dol-og'-os","From G5571 and G3004; mendacious, that is, promulgating erroneous Christian doctrine: - speaking lies."]},{"k":"G5574","v":["ψεύδομαι","pseudomai","psyoo'-dom-ahee","Middle voice of an apparently primary verb; to utter an untruth or attempt to deceive by falsehood: - falsely, lie."]},{"k":"G5575","v":["ψευδομάρτυρ","pseudomartur","psyoo-dom-ar'-toor","From G5571 and a kindred form of G3144; a spurious witness, that is, bearer of untrue testimony: - false witness."]},{"k":"G5576","v":["ψευδομαρτυρέω","pseudomartureō","psyoo-dom-ar-too-reh'-o","From G5575; to be an untrue testifier, that is, offer falsehood in evidence: - be a false witness."]},{"k":"G5577","v":["ψευδομαρτυρία","pseudomarturia","psyoo-dom-ar-too-ree'-ah","From G5575; untrue testimony: - false witness."]},{"k":"G5578","v":["ψευδοπροφήτης","pseudoprophētēs","psyoo-dop-rof-ay'-tace","From G5571 and G4396; a spurious prophet, that is, pretended foreteller or religious impostor: - false prophet."]},{"k":"G5579","v":["ψεῦδος","pseudos","psyoo'-dos","From G5574; a falsehood: - lie, lying."]},{"k":"G5580","v":["ψευδόχριστος","pseudochristos","psyoo-dokh'-ris-tos","From G5571 and G5547; a spurious Messiah: - false Christ."]},{"k":"G5581","v":["ψευδώνυμος","pseudōnumos","psyoo-do'-noo-mos","From G5571 and G3686; untruly named: - falsely so called."]},{"k":"G5582","v":["ψεῦσμα","pseusma","psyoos'-mah","From G5574; a fabrication, that is, falsehood: - lie."]},{"k":"G5583","v":["ψεύστης","pseustēs","psyoos-tace'","From G5574; a falsifier: - liar."]},{"k":"G5584","v":["ψηλαφάω","psēlaphaō","psay-laf-ah'-o","From the base of G5567 (compare G5586); to manipulate, that is, verify by contact; figuratively to search for: - feel after, handle, touch."]},{"k":"G5585","v":["ψηφίζω","psēphizō","psay-fid'-zo","From G5586; to use pebbles in enumeration, that is, (genitive case) to compute: - count."]},{"k":"G5586","v":["ψῆφος","psēphos","psay'-fos","From the same as G5584; a pebble (as worn smooth by handling), that is, (by implication of use as a counter or ballot) a verdict (of acquittal) or ticket (of admission); a vote: - stone, voice."]},{"k":"G5587","v":["ψιθυρισμός","psithurismos","psith-oo-ris-mos'","From a derivative of ψίθος psithos (a whisper; by implication a slander; probably akin to G5574); whispering, that is, secret detraction: - whispering."]},{"k":"G5588","v":["ψιθυριστής","psithuristēs","psith-oo-ris-tace'","From the same as G5587; a secret calumniator: - whisperer."]},{"k":"G5589","v":["ψιχίον","psichion","psikh-ee'-on","Diminutive from a derivative of the base of G5567 (meaning a crumb); a little bit or morsel: - crumb."]},{"k":"G5590","v":["ψυχή","psuchē","psoo-khay'","From G5594; breath, that is, (by implication) spirit, abstractly or concretely (the animal sentient principle only; thus distinguished on the one hand from G4151, which is the rational and immortal soul; and on the other from G2222, which is mere vitality, even of plants: these terms thus exactly correspond respectively to the Hebrew [H5315], [H7307] and [H2416]: - heart (+ -ily), life, mind, soul, + us, + you."]},{"k":"G5591","v":["ψυχικός","psuchikos","psoo-khee-kos'","From G5590; sensitive that is, animate (in distinction on the one hand from G4152, which is the higher or renovated nature; and on the other from G5446, which is the lower or bestial nature): - natural, sensual."]},{"k":"G5592","v":["ψύχος","psuchos","psoo'-khos","From G5594; coolness: - cold."]},{"k":"G5593","v":["ψυχρός","psuchros","psoo-chros'","From G5592; chilly (literally or figuratively): - cold."]},{"k":"G5594","v":["ψύχω","psuchō","psoo'-kho","A primary verb; to breathe (voluntarily but gently; thus differing on the one hand from G4154, which denotes properly a forcible respiration; and on the other from the base of G109, which refers properly to an inanimate breeze), that is, (by implication of reduction of temperature by evaporation) to chill (figuratively): - wax cold."]},{"k":"G5595","v":["ψωμίζω","psōmizō","pso-mid'-zo","From the base of G5596; to supply with bits, that is, (genitive case) to nourish: - (bestow to) feed."]},{"k":"G5596","v":["ψωμίον","psōmion","pso-mee'-on","Diminutive from a derivation of the base of G5597; a crumb or morsel (as if rubbed off), that is, a mouthful: - sop."]},{"k":"G5597","v":["ψώχω","psōchō","pso'-kho","Prolongation from the same base as G5567; to triturate, that is, (by analogy) to rub out (kernels from husks with the fingers or hand): - rub."]},{"k":"G5598","v":["Ω","Ō","o'-meg-ah","The last letter of the Greek alphabet, that is, (figuratively) the finality: - Omega."]},{"k":"G5599","v":["ὦ","ō","o","As a sign of the vocative O; as a note of exclamation. oh: - O."]},{"k":"G5600","v":["ὦ","ō","o","Including the oblique forms, as well as ἦς ēs ace; ἦ ē ay, etc.; the subjunctive of G1510; (may, might, can, could, would, must, etc.; also with G1487 and its compounds, as well as with other particles) be: - + appear, are, (may, might, should) be, X have, is, + pass the flower of her age, should stand, were."]},{"k":"G5601","v":["̓Ωβήδ","Ōbēd","o-bade'","Of Hebrew origin [H5744]; Obed, an Israelite: - Obed."]},{"k":"G5602","v":["ὧδε","hōde","ho'-deh","From an adverb form of G3592; in this same spot, that is, here or hither: - here, hither, (in) this place, there."]},{"k":"G5603","v":["ᾠδή","ōdē","o-day'","From G103; a chant or “ode” (the general term for any words sung; while G5215 denotes especially a religious metrical composition, and G5568 still more specifically a Hebrew cantillation: - song."]},{"k":"G5604","v":["ὠδίν","ōdin","o-deen'","Akin to G3601; a pang or throe, especially of childbirth: - pain, sorrow, travail."]},{"k":"G5605","v":["ὠδίνω","ōdinō","o-dee'-no","From G5604; to experience the pains of parturition (literally or figuratively): - travail in (birth)."]},{"k":"G5606","v":["ὦμος","ōmos","o'-mos","Perhaps from the alternate of G5342; the shoulder (as that on which burdens are borne): - shoulder."]},{"k":"G5607","v":["ὤν,    οὖσα,    ὄν","ōn    ousa  on","oan, oo'-sah, on","The feminine, the neuter and the present participle of G1510; being: - be, come, have."]},{"k":"G5608","v":["ὠνέομαι","ōneomai","o-neh'-om-ahee","Middle voice from an apparently primary word ὦνος ōnos (a sum or price); to purchase (synonymous with the earlier G4092): - buy."]},{"k":"G5609","v":["ὠόν","ōon","o-on'","Apparently a primary word; an egg: - egg."]},{"k":"G5610","v":["ὥρα","hōra","ho'-rah","Apparently a primary word; an “hour” (literally or figuratively): - day, hour, instant, season, X short, [even-] tide, (high) time."]},{"k":"G5611","v":["ὡραῖος","hōraios","ho-rah'-yos","From G5610; belonging to the right hour or season (timely), that is, (by implication) flourishing (beauteous [figuratively]): - beautiful."]},{"k":"G5612","v":["ὠρύομαι","ōruomai","o-roo'-om-ahee","Middle voice of an apparently primary verb; to “roar”: - roar."]},{"k":"G5613","v":["ὡς","hōs","hoce","Probably adverb of compound from G3739; which how, that is, in that manner (very variously used as shown): - about, after (that), (according) as (it had been, it were), as soon (as), even as (like), for, how (greatly), like (as, unto), since, so (that), that, to wit, unto, when ([-soever]), while, X with all speed."]},{"k":"G5614","v":["ὡσαννά","hōsanna","ho-san-nah'","Of Hebrew origin [H3467] and [H4994]; oh save!; hosanna (that is, hoshia-na), an exclamation of adoration: - hosanna."]},{"k":"G5615","v":["ὡσαύτως","hōsautōs","ho-sow'-toce","From G5613 and an adverb from G846; as thus, that is, in the same way: - even so, likewise, after the same (in like) manner."]},{"k":"G5616","v":["ὡσεί","hōsei","ho-si'","From G5613 and G1487; as if: - about, as (it had been, it were), like (as)."]},{"k":"G5617","v":["Ὡσηέ","Hōsēe","ho-say-eh'","Of Hebrew origin [H1954]; Hosee (that is, Hoshea), an Israelite: - Osee."]},{"k":"G5618","v":["ὥσπερ","hōsper","hoce'-per","From G5613 and G4007; just as, that is, exactly like: - (even, like) as."]},{"k":"G5619","v":["ὡσπερεί","hōsperei","hoce-per-i'","From G5618 and G1487; just as if, that is, as it were: - as."]},{"k":"G5620","v":["ὥστε","hōste","hoce'-teh","From G5613 and G5037; so too, that is, thus therefore (in various relations of consecution, as shown): - (insomuch) as, so that (then), (insomuch) that, therefore, to, wherefore."]},{"k":"G5621","v":["ὠτίον","ōtion","o-tee'-on","Diminutive of G3775; an earlet, that is, one of the ears, or perhaps the lobe of the ear: - ear."]},{"k":"G5622","v":["ὠφέλεια","ōpheleia","o-fel'-i-ah","From a derivative of the base of G5624; usefulness, that is, benefit: - advantage, profit."]},{"k":"G5623","v":["ὠφελέω","ōpheleō","o-fel-eh'-o","From the same as G5622; to be useful, that is, to benefit: - advantage, better, prevail, profit."]},{"k":"G5624","v":["ὠφέλιμος","ōphelimos","o-fel'-ee-mos","From a form of G3786; helpful or serviceable, that is, advantageous: - profit (-able)."]}],"maps":[{"k":0,"v":[[0,3,["H7225"]],[3,4,["H430"]],[4,5,["H1254","(H853)"]],[5,7,["H8064"]],[7,10,["H776"]]]},{"k":1,"v":[[0,3,["H776"]],[3,4,["H1961"]],[4,6,["H8414"]],[6,8,["H922"]],[8,10,["H2822"]],[10,12,["H5921"]],[12,14,["H6440"]],[14,17,["H8415"]],[17,20,["H7307"]],[20,22,["H430"]],[22,23,["H7363"]],[23,24,["H5921"]],[24,26,["H6440"]],[26,29,["H4325"]]]},{"k":2,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,6,["H1961"]],[6,7,["H216"]],[7,10,["H1961"]],[10,11,["H216"]]]},{"k":3,"v":[[0,2,["H430"]],[2,3,["H7200","(H853)"]],[3,5,["H216"]],[5,6,["H3588"]],[6,9,["H2896"]],[9,11,["H430"]],[11,12,["H914","H996"]],[12,14,["H216"]],[14,15,["H996"]],[15,17,["H2822"]]]},{"k":4,"v":[[0,2,["H430"]],[2,3,["H7121"]],[3,5,["H216"]],[5,6,["H3117"]],[6,9,["H2822"]],[9,11,["H7121"]],[11,12,["H3915"]],[12,15,["H6153"]],[15,18,["H1242"]],[18,19,["H1961"]],[19,21,["H259"]],[21,22,["H3117"]]]},{"k":5,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,6,["H1961"]],[6,8,["H7549"]],[8,11,["H8432"]],[11,14,["H4325"]],[14,16,["H1961"]],[16,18,["H914","H996"]],[18,20,["H4325"]],[20,23,["H4325"]]]},{"k":6,"v":[[0,2,["H430"]],[2,3,["H6213","(H853)"]],[3,5,["H7549"]],[5,7,["H914","H996"]],[7,9,["H4325"]],[9,10,["H834"]],[10,12,["H4480","H8478"]],[12,14,["H7549"]],[14,15,["H996"]],[15,17,["H4325"]],[17,18,["H834"]],[18,20,["H4480","H5921"]],[20,22,["H7549"]],[22,25,["H1961"]],[25,26,["H3651"]]]},{"k":7,"v":[[0,2,["H430"]],[2,3,["H7121"]],[3,5,["H7549"]],[5,6,["H8064"]],[6,9,["H6153"]],[9,12,["H1242"]],[12,13,["H1961"]],[13,15,["H8145"]],[15,16,["H3117"]]]},{"k":8,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,6,["H4325"]],[6,7,["H4480","H8478"]],[7,9,["H8064"]],[9,12,["H6960"]],[12,13,["H413"]],[13,14,["H259"]],[14,15,["H4725"]],[15,19,["H3004"]],[19,21,["H7200"]],[21,24,["H1961"]],[24,25,["H3651"]]]},{"k":9,"v":[[0,2,["H430"]],[2,3,["H7121"]],[3,5,["H3004"]],[5,7,["H776"]],[7,11,["H4723"]],[11,14,["H4325"]],[14,15,["H7121"]],[15,17,["H3220"]],[17,19,["H430"]],[19,20,["H7200"]],[20,21,["H3588"]],[21,24,["H2896"]]]},{"k":10,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,6,["H776"]],[6,8,["H1876"]],[8,9,["H1877"]],[9,11,["H6212"]],[11,12,["H2232"]],[12,13,["H2233"]],[13,16,["H6529"]],[16,17,["H6086"]],[17,18,["H6213"]],[18,19,["H6529"]],[19,22,["H4327"]],[22,23,["H834"]],[23,24,["H2233"]],[24,28,["H5921"]],[28,30,["H776"]],[30,33,["H1961"]],[33,34,["H3651"]]]},{"k":11,"v":[[0,3,["H776"]],[3,5,["H3318"]],[5,6,["H1877"]],[6,8,["H6212"]],[8,9,["H2232"]],[9,10,["H2233"]],[10,13,["H4327"]],[13,16,["H6086"]],[16,17,["H6213"]],[17,18,["H6529"]],[18,19,["H834"]],[19,20,["H2233"]],[20,26,["H4327"]],[26,28,["H430"]],[28,29,["H7200"]],[29,30,["H3588"]],[30,33,["H2896"]]]},{"k":12,"v":[[0,3,["H6153"]],[3,6,["H1242"]],[6,7,["H1961"]],[7,9,["H7992"]],[9,10,["H3117"]]]},{"k":13,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,6,["H1961"]],[6,7,["H3974"]],[7,10,["H7549"]],[10,13,["H8064"]],[13,15,["H914","H996"]],[15,17,["H3117"]],[17,18,["H996"]],[18,20,["H3915"]],[20,24,["H1961"]],[24,26,["H226"]],[26,29,["H4150"]],[29,32,["H3117"]],[32,34,["H8141"]]]},{"k":14,"v":[[0,4,["H1961"]],[4,6,["H3974"]],[6,9,["H7549"]],[9,12,["H8064"]],[12,15,["H215"]],[15,16,["H5921"]],[16,18,["H776"]],[18,21,["H1961"]],[21,22,["H3651"]]]},{"k":15,"v":[[0,2,["H430"]],[2,3,["H6213","(H853)"]],[3,4,["H8147"]],[4,5,["H1419"]],[5,6,["H3974","(H853)"]],[6,8,["H1419"]],[8,9,["H3974"]],[9,11,["H4475"]],[11,13,["H3117"]],[13,16,["H6996"]],[16,17,["H3974"]],[17,19,["H4475"]],[19,21,["H3915"]],[21,25,["H3556"]],[25,26,[]]]},{"k":16,"v":[[0,2,["H430"]],[2,3,["H5414"]],[3,7,["H7549"]],[7,10,["H8064"]],[10,13,["H215"]],[13,14,["H5921"]],[14,16,["H776"]]]},{"k":17,"v":[[0,3,["H4910"]],[3,6,["H3117"]],[6,10,["H3915"]],[10,13,["H914","H996"]],[13,15,["H216"]],[15,16,["H996"]],[16,18,["H2822"]],[18,20,["H430"]],[20,21,["H7200"]],[21,22,["H3588"]],[22,25,["H2896"]]]},{"k":18,"v":[[0,3,["H6153"]],[3,6,["H1242"]],[6,7,["H1961"]],[7,9,["H7243"]],[9,10,["H3117"]]]},{"k":19,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,6,["H4325"]],[6,9,["H8317"]],[9,12,["H8318"]],[12,15,["H5315","H2416"]],[15,17,["H5775"]],[17,20,["H5774"]],[20,21,["H5921"]],[21,23,["H776"]],[23,24,["H5921"]],[24,26,["H6440"]],[26,27,["H7549"]],[27,29,["H8064"]]]},{"k":20,"v":[[0,2,["H430"]],[2,3,["H1254","(H853)"]],[3,4,["H1419"]],[4,5,["H8577"]],[5,7,["H3605"]],[7,8,["H2416"]],[8,9,["H5315"]],[9,11,["H7430"]],[11,12,["H834"]],[12,14,["H4325"]],[14,17,["H8317"]],[17,20,["H4327"]],[20,22,["H3605"]],[22,23,["H3671"]],[23,24,["H5775"]],[24,27,["H4327"]],[27,29,["H430"]],[29,30,["H7200"]],[30,31,["H3588"]],[31,34,["H2896"]]]},{"k":21,"v":[[0,2,["H430"]],[2,3,["H1288"]],[3,5,["H559"]],[5,7,["H6509"]],[7,9,["H7235"]],[9,11,["H4390","(H853)"]],[11,13,["H4325"]],[13,16,["H3220"]],[16,19,["H5775"]],[19,20,["H7235"]],[20,23,["H776"]]]},{"k":22,"v":[[0,3,["H6153"]],[3,6,["H1242"]],[6,7,["H1961"]],[7,9,["H2549"]],[9,10,["H3117"]]]},{"k":23,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,6,["H776"]],[6,8,["H3318"]],[8,10,["H2416"]],[10,11,["H5315"]],[11,14,["H4327"]],[14,15,["H929"]],[15,18,["H7431"]],[18,20,["H2416"]],[20,23,["H776"]],[23,26,["H4327"]],[26,29,["H1961"]],[29,30,["H3651"]]]},{"k":24,"v":[[0,2,["H430"]],[2,3,["H6213","(H853)"]],[3,5,["H2416"]],[5,8,["H776"]],[8,11,["H4327"]],[11,13,["H929"]],[13,16,["H4327"]],[16,19,["H3605"]],[19,21,["H7431"]],[21,24,["H127"]],[24,27,["H4327"]],[27,29,["H430"]],[29,30,["H7200"]],[30,31,["H3588"]],[31,34,["H2896"]]]},{"k":25,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,6,["H6213"]],[6,7,["H120"]],[7,10,["H6754"]],[10,13,["H1823"]],[13,18,["H7287"]],[18,21,["H1710"]],[21,24,["H3220"]],[24,28,["H5775"]],[28,31,["H8064"]],[31,35,["H929"]],[35,38,["H3605"]],[38,40,["H776"]],[40,43,["H3605"]],[43,45,["H7431"]],[45,47,["H7430"]],[47,48,["H5921"]],[48,50,["H776"]]]},{"k":26,"v":[[0,2,["H430"]],[2,3,["H1254","(H853)"]],[3,4,["H120"]],[4,8,["H6754"]],[8,11,["H6754"]],[11,13,["H430"]],[13,14,["H1254"]],[14,17,["H2145"]],[17,19,["H5347"]],[19,20,["H1254"]],[20,22,[]]]},{"k":27,"v":[[0,2,["H430"]],[2,3,["H1288"]],[3,6,["H430"]],[6,7,["H559"]],[7,11,["H6509"]],[11,13,["H7235"]],[13,15,["H4390","(H853)"]],[15,17,["H776"]],[17,19,["H3533"]],[19,23,["H7287"]],[23,26,["H1710"]],[26,29,["H3220"]],[29,33,["H5775"]],[33,36,["H8064"]],[36,39,["H3605"]],[39,41,["H2416"]],[41,43,["H7430"]],[43,44,["H5921"]],[44,46,["H776"]]]},{"k":28,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H2009"]],[4,7,["H5414"]],[7,8,["(H853)"]],[8,9,["H3605"]],[9,10,["H6212"]],[10,11,["H2232"]],[11,12,["H2233"]],[12,13,["H834"]],[13,15,["H5921"]],[15,17,["H6440"]],[17,19,["H3605"]],[19,21,["H776"]],[21,23,["H3605"]],[23,24,["H6086"]],[24,27,["H834"]],[27,30,["H6529"]],[30,33,["H6086"]],[33,34,["H2232"]],[34,35,["H2233"]],[35,40,["H1961"]],[40,42,["H402"]]]},{"k":29,"v":[[0,3,["H3605"]],[3,4,["H2416"]],[4,7,["H776"]],[7,10,["H3605"]],[10,11,["H5775"]],[11,14,["H8064"]],[14,18,["H3605"]],[18,20,["H7430"]],[20,21,["H5921"]],[21,23,["H776"]],[23,24,["H834"]],[24,27,["H5315","H2416"]],[27,30,["(H853)"]],[30,31,["H3605"]],[31,32,["H3418"]],[32,33,["H6212"]],[33,35,["H402"]],[35,38,["H1961"]],[38,39,["H3651"]]]},{"k":30,"v":[[0,2,["H430"]],[2,3,["H7200","(H853)"]],[3,5,["H3605"]],[5,6,["H834"]],[6,9,["H6213"]],[9,11,["H2009"]],[11,14,["H3966"]],[14,15,["H2896"]],[15,18,["H6153"]],[18,21,["H1242"]],[21,22,["H1961"]],[22,24,["H8345"]],[24,25,["H3117"]]]},{"k":31,"v":[[0,3,["H8064"]],[3,6,["H776"]],[6,8,["H3615"]],[8,10,["H3605"]],[10,12,["H6635"]],[12,14,[]]]},{"k":32,"v":[[0,4,["H7637"]],[4,5,["H3117"]],[5,6,["H430"]],[6,7,["H3615"]],[7,9,["H4399"]],[9,10,["H834"]],[10,13,["H6213"]],[13,16,["H7673"]],[16,19,["H7637"]],[19,20,["H3117"]],[20,22,["H4480","H3605"]],[22,24,["H4399"]],[24,25,["H834"]],[25,28,["H6213"]]]},{"k":33,"v":[[0,2,["H430"]],[2,3,["H1288","(H853)"]],[3,5,["H7637"]],[5,6,["H3117"]],[6,8,["H6942"]],[8,10,["H3588"]],[10,16,["H7673"]],[16,18,["H4480","H3605"]],[18,20,["H4399"]],[20,21,["H834"]],[21,22,["H430"]],[22,23,["H1254"]],[23,25,["H6213"]]]},{"k":34,"v":[[0,1,["H428"]],[1,4,["H8435"]],[4,7,["H8064"]],[7,11,["H776"]],[11,15,["H1254"]],[15,18,["H3117"]],[18,21,["H3068"]],[21,22,["H430"]],[22,23,["H6213"]],[23,25,["H776"]],[25,28,["H8064"]]]},{"k":35,"v":[[0,2,["H3605"]],[2,3,["H7880"]],[3,6,["H7704"]],[6,7,["H2962"]],[7,9,["H1961"]],[9,12,["H776"]],[12,14,["H3605"]],[14,15,["H6212"]],[15,18,["H7704"]],[18,19,["H2962"]],[19,21,["H6779"]],[21,22,["H3588"]],[22,24,["H3068"]],[24,25,["H430"]],[25,27,["H3808"]],[27,31,["H4305"]],[31,32,["H5921"]],[32,34,["H776"]],[34,38,["H369"]],[38,40,["H120"]],[40,42,["H5647","(H853)"]],[42,44,["H127"]]]},{"k":36,"v":[[0,4,["H5927"]],[4,6,["H108"]],[6,7,["H4480"]],[7,9,["H776"]],[9,11,["H8248","(H853)"]],[11,13,["H3605"]],[13,14,["H6440"]],[14,17,["H127"]]]},{"k":37,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,5,["H3335","(H853)"]],[5,6,["H120"]],[6,9,["H6083"]],[9,10,["H4480"]],[10,12,["H127"]],[12,14,["H5301"]],[14,17,["H639"]],[17,19,["H5397"]],[19,21,["H2416"]],[21,23,["H120"]],[23,24,["H1961"]],[24,26,["H2416"]],[26,27,["H5315"]]]},{"k":38,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,5,["H5193"]],[5,7,["H1588"]],[7,8,["H4480","H6924"]],[8,10,["H5731"]],[10,12,["H8033"]],[12,14,["H7760","(H853)"]],[14,16,["H120"]],[16,17,["H834"]],[17,20,["H3335"]]]},{"k":39,"v":[[0,3,["H4480"]],[3,5,["H127"]],[5,8,["H3068"]],[8,9,["H430"]],[9,11,["H6779"]],[11,12,["H3605"]],[12,13,["H6086"]],[13,16,["H2530"]],[16,19,["H4758"]],[19,21,["H2896"]],[21,23,["H3978"]],[23,25,["H6086"]],[25,27,["H2416"]],[27,31,["H8432"]],[31,34,["H1588"]],[34,37,["H6086"]],[37,39,["H1847"]],[39,41,["H2896"]],[41,43,["H7451"]]]},{"k":40,"v":[[0,3,["H5104"]],[3,5,["H3318"]],[5,7,["H4480","H5731"]],[7,9,["H8248","(H853)"]],[9,11,["H1588"]],[11,14,["H4480","H8033"]],[14,17,["H6504"]],[17,19,["H1961"]],[19,21,["H702"]],[21,22,["H7218"]]]},{"k":41,"v":[[0,2,["H8034"]],[2,5,["H259"]],[5,7,["H6376"]],[7,10,["H1931"]],[10,12,["H5437","(H853)"]],[12,14,["H3605"]],[14,15,["H776"]],[15,17,["H2341"]],[17,18,["H834","H8033"]],[18,21,["H2091"]]]},{"k":42,"v":[[0,3,["H2091"]],[3,5,["H1931"]],[5,6,["H776"]],[6,8,["H2896"]],[8,9,["H8033"]],[9,11,["H916"]],[11,14,["H7718"]],[14,15,["H68"]]]},{"k":43,"v":[[0,3,["H8034"]],[3,6,["H8145"]],[6,7,["H5104"]],[7,9,["H1521"]],[9,11,["H1931"]],[11,15,["H5437","(H853)"]],[15,17,["H3605"]],[17,18,["H776"]],[18,20,["H3568"]]]},{"k":44,"v":[[0,3,["H8034"]],[3,6,["H7992"]],[6,7,["H5104"]],[7,9,["H2313"]],[9,12,["H1931"]],[12,14,["H1980"]],[14,17,["H6926"]],[17,19,["H804"]],[19,22,["H7243"]],[22,23,["H5104"]],[23,25,["H6578"]]]},{"k":45,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,5,["H3947","(H853)"]],[5,7,["H120"]],[7,9,["H5117"]],[9,13,["H1588"]],[13,15,["H5731"]],[15,17,["H5647"]],[17,21,["H8104"]],[21,22,[]]]},{"k":46,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,5,["H6680","H5921"]],[5,7,["H120"]],[7,8,["H559"]],[8,10,["H4480","H3605"]],[10,11,["H6086"]],[11,14,["H1588"]],[14,18,["H398","H398"]]]},{"k":47,"v":[[0,4,["H4480","H6086"]],[4,7,["H1847"]],[7,9,["H2896"]],[9,11,["H7451"]],[11,14,["H3808"]],[14,15,["H398"]],[15,16,["H4480"]],[16,18,["H3588"]],[18,21,["H3117"]],[21,24,["H398"]],[24,25,["H4480"]],[25,29,["H4191","H4191"]]]},{"k":48,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,5,["H559"]],[5,8,["H3808"]],[8,9,["H2896"]],[9,12,["H120"]],[12,14,["H1961"]],[14,15,["H905"]],[15,18,["H6213"]],[18,21,["H5828"]],[21,24,["H5048"]]]},{"k":49,"v":[[0,3,["H4480"]],[3,5,["H127"]],[5,7,["H3068"]],[7,8,["H430"]],[8,9,["H3335"]],[9,10,["H3605"]],[10,11,["H2416"]],[11,14,["H7704"]],[14,16,["H3605"]],[16,17,["H5775"]],[17,20,["H8064"]],[20,22,["H935"]],[22,24,["H413"]],[24,25,["H121"]],[25,27,["H7200"]],[27,28,["H4100"]],[28,31,["H7121"]],[31,34,["H3605","H834"]],[34,35,["H121"]],[35,36,["H7121"]],[36,38,["H2416"]],[38,39,["H5315"]],[39,40,["H1931"]],[40,43,["H8034"]],[43,44,[]]]},{"k":50,"v":[[0,2,["H121"]],[2,3,["H7121"]],[3,4,["H8034"]],[4,6,["H3605"]],[6,7,["H929"]],[7,11,["H5775"]],[11,14,["H8064"]],[14,17,["H3605"]],[17,18,["H2416"]],[18,21,["H7704"]],[21,24,["H121"]],[24,27,["H3808"]],[27,28,["H4672"]],[28,30,["H5828"]],[30,33,["H5048"]]]},{"k":51,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,8,["H8639"]],[8,10,["H5307"]],[10,11,["H5921"]],[11,12,["H121"]],[12,15,["H3462"]],[15,18,["H3947"]],[18,19,["H259"]],[19,22,["H4480","H6763"]],[22,25,["H5462"]],[25,27,["H1320"]],[27,28,["H8478"]],[28,29,[]]]},{"k":52,"v":[[0,1,["(H853)"]],[1,3,["H6763"]],[3,4,["H834"]],[4,6,["H3068"]],[6,7,["H430"]],[7,9,["H3947"]],[9,10,["H4480"]],[10,11,["H120"]],[11,12,["H1129"]],[12,15,["H802"]],[15,17,["H935"]],[17,19,["H413"]],[19,21,["H120"]]]},{"k":53,"v":[[0,2,["H121"]],[2,3,["H559"]],[3,4,["H2063"]],[4,6,["H6471"]],[6,7,["H6106"]],[7,10,["H4480","H6106"]],[10,12,["H1320"]],[12,15,["H4480","H1320"]],[15,16,["H2063"]],[16,19,["H7121"]],[19,20,["H802"]],[20,21,["H3588"]],[21,22,["H2063"]],[22,24,["H3947"]],[24,27,["H4480","H376"]]]},{"k":54,"v":[[0,1,["H5921","H3651"]],[1,4,["H376"]],[4,5,["H5800","(H853)"]],[5,7,["H1"]],[7,10,["H517"]],[10,13,["H1692"]],[13,16,["H802"]],[16,20,["H1961"]],[20,21,["H259"]],[21,22,["H1320"]]]},{"k":55,"v":[[0,3,["H1961"]],[3,4,["H8147"]],[4,5,["H6174"]],[5,7,["H120"]],[7,10,["H802"]],[10,13,["H3808"]],[13,14,["H954"]]]},{"k":56,"v":[[0,3,["H5175"]],[3,4,["H1961"]],[4,6,["H6175"]],[6,8,["H4480","H3605"]],[8,9,["H2416"]],[9,12,["H7704"]],[12,13,["H834"]],[13,15,["H3068"]],[15,16,["H430"]],[16,18,["H6213"]],[18,21,["H559"]],[21,22,["H413"]],[22,24,["H802"]],[24,25,["H637","H3588"]],[25,27,["H430"]],[27,28,["H559"]],[28,31,["H3808"]],[31,32,["H398"]],[32,34,["H4480","H3605"]],[34,35,["H6086"]],[35,38,["H1588"]]]},{"k":57,"v":[[0,3,["H802"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H5175"]],[7,10,["H398"]],[10,13,["H4480","H6529"]],[13,16,["H6086"]],[16,19,["H1588"]]]},{"k":58,"v":[[0,4,["H4480","H6529"]],[4,7,["H6086"]],[7,8,["H834"]],[8,12,["H8432"]],[12,15,["H1588"]],[15,16,["H430"]],[16,18,["H559"]],[18,21,["H3808"]],[21,22,["H398"]],[22,23,["H4480"]],[23,25,["H3808"]],[25,28,["H5060"]],[28,30,["H6435"]],[30,32,["H4191"]]]},{"k":59,"v":[[0,3,["H5175"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H802"]],[7,10,["H3808"]],[10,12,["H4191","H4191"]]]},{"k":60,"v":[[0,1,["H3588"]],[1,2,["H430"]],[2,4,["H3045"]],[4,5,["H3588"]],[5,8,["H3117"]],[8,10,["H398"]],[10,11,["H4480"]],[11,14,["H5869"]],[14,17,["H6491"]],[17,21,["H1961"]],[21,23,["H430"]],[23,24,["H3045"]],[24,25,["H2896"]],[25,27,["H7451"]]]},{"k":61,"v":[[0,4,["H802"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,8,["H6086"]],[8,10,["H2896"]],[10,12,["H3978"]],[12,14,["H3588"]],[14,15,["H1931"]],[15,17,["H8378"]],[17,20,["H5869"]],[20,23,["H6086"]],[23,26,["H2530"]],[26,30,["H7919"]],[30,32,["H3947"]],[32,35,["H4480","H6529"]],[35,39,["H398"]],[39,41,["H5414"]],[41,42,["H1571"]],[42,45,["H376"]],[45,46,["H5973"]],[46,51,["H398"]]]},{"k":62,"v":[[0,3,["H5869"]],[3,6,["H8147"]],[6,8,["H6491"]],[8,11,["H3045"]],[11,12,["H3588"]],[12,13,["H1992"]],[13,15,["H5903"]],[15,18,["H8609"]],[18,19,["H8384"]],[19,20,["H5929"]],[20,23,["H6213"]],[23,25,["H2290"]]]},{"k":63,"v":[[0,3,["H8085","(H853)"]],[3,5,["H6963"]],[5,8,["H3068"]],[8,9,["H430"]],[9,10,["H1980"]],[10,13,["H1588"]],[13,16,["H7307"]],[16,19,["H3117"]],[19,21,["H121"]],[21,24,["H802"]],[24,26,["H2244"]],[26,29,["H4480","H6440"]],[29,32,["H3068"]],[32,33,["H430"]],[33,34,["H8432"]],[34,36,["H6086"]],[36,39,["H1588"]]]},{"k":64,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,5,["H7121"]],[5,6,["H413"]],[6,7,["H121"]],[7,9,["H559"]],[9,12,["H335"]],[12,14,[]]]},{"k":65,"v":[[0,3,["H559"]],[3,5,["H8085","(H853)"]],[5,7,["H6963"]],[7,10,["H1588"]],[10,14,["H3372"]],[14,15,["H3588"]],[15,16,["H595"]],[16,18,["H5903"]],[18,22,["H2244"]]]},{"k":66,"v":[[0,3,["H559"]],[3,4,["H4310"]],[4,5,["H5046"]],[5,7,["H3588"]],[7,8,["H859"]],[8,10,["H5903"]],[10,13,["H398"]],[13,14,["H4480"]],[14,16,["H6086"]],[16,17,["H834","H4480"]],[17,19,["H6680"]],[19,24,["H1115"]],[24,25,["H398"]]]},{"k":67,"v":[[0,3,["H120"]],[3,4,["H559"]],[4,6,["H802"]],[6,7,["H834"]],[7,9,["H5414"]],[9,12,["H5973"]],[12,14,["H1931"]],[14,15,["H5414"]],[15,17,["H4480"]],[17,19,["H6086"]],[19,23,["H398"]]]},{"k":68,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,5,["H559"]],[5,8,["H802"]],[8,9,["H4100"]],[9,11,["H2063"]],[11,15,["H6213"]],[15,18,["H802"]],[18,19,["H559"]],[19,21,["H5175"]],[21,22,["H5377"]],[22,27,["H398"]]]},{"k":69,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,5,["H559"]],[5,6,["H413"]],[6,8,["H5175"]],[8,9,["H3588"]],[9,12,["H6213"]],[12,13,["H2063"]],[13,14,["H859"]],[14,16,["H779"]],[16,18,["H4480","H3605"]],[18,19,["H929"]],[19,22,["H4480","H3605"]],[22,23,["H2416"]],[23,26,["H7704"]],[26,27,["H5921"]],[27,29,["H1512"]],[29,32,["H1980"]],[32,34,["H6083"]],[34,37,["H398"]],[37,38,["H3605"]],[38,40,["H3117"]],[40,43,["H2416"]]]},{"k":70,"v":[[0,4,["H7896"]],[4,5,["H342"]],[5,6,["H996"]],[6,10,["H802"]],[10,12,["H996"]],[12,14,["H2233"]],[14,17,["H2233"]],[17,18,["H1931"]],[18,20,["H7779"]],[20,22,["H7218"]],[22,24,["H859"]],[24,26,["H7779"]],[26,28,["H6119"]]]},{"k":71,"v":[[0,1,["H413"]],[1,3,["H802"]],[3,5,["H559"]],[5,8,["H7235"]],[8,9,["H7235"]],[9,11,["H6093"]],[11,14,["H2032"]],[14,16,["H6089"]],[16,20,["H3205"]],[20,21,["H1121"]],[21,24,["H8669"]],[24,27,["H413"]],[27,29,["H376"]],[29,31,["H1931"]],[31,33,["H4910"]],[33,35,[]]]},{"k":72,"v":[[0,3,["H121"]],[3,5,["H559"]],[5,6,["H3588"]],[6,9,["H8085"]],[9,12,["H6963"]],[12,15,["H802"]],[15,18,["H398"]],[18,19,["H4480"]],[19,21,["H6086"]],[21,23,["H834"]],[23,25,["H6680"]],[25,27,["H559"]],[27,30,["H3808"]],[30,31,["H398"]],[31,32,["H4480"]],[32,34,["H779"]],[34,37,["H127"]],[37,40,["H5668"]],[40,42,["H6093"]],[42,45,["H398"]],[45,48,["H3605"]],[48,50,["H3117"]],[50,53,["H2416"]]]},{"k":73,"v":[[0,1,["H6975"]],[1,4,["H1863"]],[4,8,["H6779"]],[8,14,["H398","(H853)"]],[14,16,["H6212"]],[16,19,["H7704"]]]},{"k":74,"v":[[0,3,["H2188"]],[3,6,["H639"]],[6,9,["H398"]],[9,10,["H3899"]],[10,11,["H5704"]],[11,13,["H7725"]],[13,14,["H413"]],[14,16,["H127"]],[16,17,["H3588"]],[17,19,["H4480"]],[19,23,["H3947"]],[23,24,["H3588"]],[24,25,["H6083"]],[25,26,["H859"]],[26,29,["H413"]],[29,30,["H6083"]],[30,33,["H7725"]]]},{"k":75,"v":[[0,2,["H121"]],[2,3,["H7121"]],[3,5,["H802"]],[5,6,["H8034"]],[6,7,["H2332"]],[7,8,["H3588"]],[8,9,["H1931"]],[9,10,["H1961"]],[10,12,["H517"]],[12,14,["H3605"]],[14,15,["H2416"]]]},{"k":76,"v":[[0,2,["H121"]],[2,7,["H802"]],[7,10,["H3068"]],[10,11,["H430"]],[11,12,["H6213"]],[12,13,["H3801"]],[13,15,["H5785"]],[15,17,["H3847"]],[17,18,[]]]},{"k":77,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,5,["H559"]],[5,6,["H2005"]],[6,8,["H120"]],[8,10,["H1961"]],[10,12,["H259"]],[12,13,["H4480"]],[13,16,["H3045"]],[16,17,["H2896"]],[17,19,["H7451"]],[19,21,["H6258"]],[21,22,["H6435"]],[22,25,["H7971"]],[25,27,["H3027"]],[27,29,["H3947"]],[29,30,["H1571"]],[30,33,["H4480","H6086"]],[33,35,["H2416"]],[35,37,["H398"]],[37,39,["H2425"]],[39,41,["H5769"]]]},{"k":78,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,7,["H7971"]],[7,10,["H4480","H1588"]],[10,12,["H5731"]],[12,14,["H5647","(H853)"]],[14,16,["H127"]],[16,18,["H4480","H8033","H834"]],[18,21,["H3947"]]]},{"k":79,"v":[[0,4,["H1644","(H853)"]],[4,6,["H120"]],[6,9,["H7931"]],[9,12,["H4480","H6924"]],[12,15,["H1588"]],[15,17,["H5731","(H853)"]],[17,18,["H3742"]],[18,21,["H3858"]],[21,22,["H2719"]],[22,26,["H2015"]],[26,28,["H8104","(H853)"]],[28,30,["H1870"]],[30,33,["H6086"]],[33,35,["H2416"]]]},{"k":80,"v":[[0,2,["H121"]],[2,3,["H3045","(H853)"]],[3,4,["H2332"]],[4,6,["H802"]],[6,9,["H2029"]],[9,11,["H3205","(H853)"]],[11,12,["H7014"]],[12,14,["H559"]],[14,17,["H7069"]],[17,19,["H376"]],[19,20,["H854"]],[20,22,["H3068"]]]},{"k":81,"v":[[0,3,["H3254"]],[3,4,["H3205","(H853)"]],[4,6,["H251","(H853)"]],[6,7,["H1893"]],[7,9,["H1893"]],[9,10,["H1961"]],[10,12,["H7462"]],[12,14,["H6629"]],[14,16,["H7014"]],[16,17,["H1961"]],[17,19,["H5647"]],[19,22,["H127"]]]},{"k":82,"v":[[0,3,["H4480","H7093"]],[3,5,["H3117"]],[5,9,["H1961"]],[9,11,["H7014"]],[11,12,["H935"]],[12,15,["H4480","H6529"]],[15,18,["H127"]],[18,20,["H4503"]],[20,23,["H3068"]]]},{"k":83,"v":[[0,2,["H1893"]],[2,3,["H1931"]],[3,4,["H1571"]],[4,5,["H935"]],[5,8,["H4480","H1062"]],[8,11,["H6629"]],[11,15,["H4480","H2459"]],[15,19,["H3068"]],[19,21,["H8159"]],[21,22,["H413"]],[22,23,["H1893"]],[23,25,["H413"]],[25,27,["H4503"]]]},{"k":84,"v":[[0,2,["H413"]],[2,3,["H7014"]],[3,5,["H413"]],[5,7,["H4503"]],[7,11,["H8159","H3808"]],[11,13,["H7014"]],[13,15,["H3966"]],[15,16,["H2734"]],[16,19,["H6440"]],[19,20,["H5307"]]]},{"k":85,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H7014"]],[6,7,["H4100"]],[7,10,["H2734"]],[10,12,["H4100"]],[12,15,["H6440"]],[15,16,["H5307"]]]},{"k":86,"v":[[0,1,["H518"]],[1,4,["H3190"]],[4,7,["H3808"]],[7,9,["H7613"]],[9,11,["H518"]],[11,14,["H3808"]],[14,15,["H3190"]],[15,16,["H2403"]],[16,17,["H7257"]],[17,20,["H6607"]],[20,22,["H413"]],[22,27,["H8669"]],[27,29,["H859"]],[29,31,["H4910"]],[31,33,[]]]},{"k":87,"v":[[0,2,["H7014"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1893"]],[5,7,["H251"]],[7,12,["H1961"]],[12,15,["H1961"]],[15,18,["H7704"]],[18,20,["H7014"]],[20,22,["H6965"]],[22,23,["H413"]],[23,24,["H1893"]],[24,26,["H251"]],[26,28,["H2026"]],[28,29,[]]]},{"k":88,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H7014"]],[6,7,["H335"]],[7,9,["H1893"]],[9,11,["H251"]],[11,14,["H559"]],[14,16,["H3045"]],[16,17,["H3808"]],[17,19,["H595"]],[19,21,["H251"]],[21,22,["H8104"]]]},{"k":89,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,7,["H6213"]],[7,9,["H6963"]],[9,12,["H251"]],[12,13,["H1818"]],[13,14,["H6817"]],[14,15,["H413"]],[15,17,["H4480"]],[17,19,["H127"]]]},{"k":90,"v":[[0,2,["H6258"]],[2,4,["H859"]],[4,5,["H779"]],[5,6,["H4480"]],[6,8,["H127"]],[8,9,["H834"]],[9,11,["H6475","(H853)"]],[11,13,["H6310"]],[13,15,["H3947"]],[15,17,["H251","(H853)"]],[17,18,["H1818"]],[18,21,["H4480","H3027"]]]},{"k":91,"v":[[0,1,["H3588"]],[1,3,["H5647","(H853)"]],[3,5,["H127"]],[5,8,["H3808"]],[8,9,["H3254"]],[9,10,["H5414"]],[10,14,["H3581"]],[14,16,["H5128"]],[16,19,["H5110"]],[19,22,["H1961"]],[22,25,["H776"]]]},{"k":92,"v":[[0,2,["H7014"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H5771"]],[8,10,["H1419"]],[10,14,["H4480","H5375"]]]},{"k":93,"v":[[0,1,["H2005"]],[1,6,["H1644","(H853)"]],[6,8,["H3117"]],[8,9,["H4480","H5921"]],[9,11,["H6440"]],[11,14,["H127"]],[14,18,["H4480","H6440"]],[18,22,["H5641"]],[22,26,["H1961"]],[26,28,["H5128"]],[28,31,["H5110"]],[31,34,["H776"]],[34,40,["H1961"]],[40,43,["H3605"]],[43,45,["H4672"]],[45,48,["H2026"]],[48,49,[]]]},{"k":94,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,7,["H3651"]],[7,8,["H3605"]],[8,9,["H2026"]],[9,10,["H7014"]],[10,14,["H5358"]],[14,17,["H7659"]],[17,20,["H3068"]],[20,21,["H7760"]],[21,23,["H226"]],[23,25,["H7014"]],[25,26,["H1115"]],[26,27,["H3605"]],[27,28,["H4672"]],[28,31,["H5221"]],[31,32,[]]]},{"k":95,"v":[[0,2,["H7014"]],[2,4,["H3318"]],[4,7,["H4480","H6440"]],[7,10,["H3068"]],[10,12,["H3427"]],[12,15,["H776"]],[15,17,["H5113"]],[17,20,["H6926"]],[20,22,["H5731"]]]},{"k":96,"v":[[0,2,["H7014"]],[2,3,["H3045","(H853)"]],[3,5,["H802"]],[5,8,["H2029"]],[8,10,["H3205","(H853)"]],[10,11,["H2585"]],[11,14,["H1961","H1129"]],[14,16,["H5892"]],[16,18,["H7121"]],[18,20,["H8034"]],[20,23,["H5892"]],[23,26,["H8034"]],[26,29,["H1121"]],[29,30,["H2585"]]]},{"k":97,"v":[[0,3,["H2585"]],[3,5,["H3205","(H853)"]],[5,6,["H5897"]],[6,8,["H5897"]],[8,9,["H3205","(H853)"]],[9,10,["H4232"]],[10,12,["H4232"]],[12,13,["H3205","(H853)"]],[13,14,["H4967"]],[14,16,["H4967"]],[16,17,["H3205","(H853)"]],[17,18,["H3929"]]]},{"k":98,"v":[[0,2,["H3929"]],[2,3,["H3947"]],[3,6,["H8147"]],[6,7,["H802"]],[7,9,["H8034"]],[9,12,["H259"]],[12,14,["H5711"]],[14,17,["H8034"]],[17,20,["H8145"]],[20,21,["H6741"]]]},{"k":99,"v":[[0,2,["H5711"]],[2,3,["H3205","(H853)"]],[3,4,["H2989"]],[4,5,["H1931"]],[5,6,["H1961"]],[6,8,["H1"]],[8,12,["H3427"]],[12,14,["H168"]],[14,20,["H4735"]]]},{"k":100,"v":[[0,3,["H251"]],[3,4,["H8034"]],[4,6,["H3106"]],[6,7,["H1931"]],[7,8,["H1961"]],[8,10,["H1"]],[10,12,["H3605"]],[12,15,["H8610"]],[15,17,["H3658"]],[17,19,["H5748"]]]},{"k":101,"v":[[0,2,["H6741"]],[2,3,["H1931"]],[3,4,["H1571"]],[4,5,["H3205","(H853)"]],[5,6,["H8423"]],[6,8,["H3913"]],[8,10,["H3605"]],[10,11,["H2794"]],[11,13,["H5178"]],[13,15,["H1270"]],[15,18,["H269"]],[18,20,["H8423"]],[20,22,["H5279"]]]},{"k":102,"v":[[0,2,["H3929"]],[2,3,["H559"]],[3,6,["H802"]],[6,7,["H5711"]],[7,9,["H6741"]],[9,10,["H8085"]],[10,12,["H6963"]],[12,14,["H802"]],[14,16,["H3929"]],[16,17,["H238"]],[17,20,["H565"]],[20,21,["H3588"]],[21,24,["H2026"]],[24,26,["H376"]],[26,29,["H6482"]],[29,33,["H3206"]],[33,36,["H2250"]]]},{"k":103,"v":[[0,1,["H3588"]],[1,2,["H7014"]],[2,5,["H5358"]],[5,6,["H7659"]],[6,8,["H3929"]],[8,9,["H7657"]],[9,11,["H7651"]]]},{"k":104,"v":[[0,2,["H121"]],[2,3,["H3045","(H853)"]],[3,5,["H802"]],[5,6,["H5750"]],[6,9,["H3205"]],[9,11,["H1121"]],[11,13,["H7121"]],[13,14,["(H853)"]],[14,15,["H8034"]],[15,16,["H8352"]],[16,17,["H3588"]],[17,18,["H430"]],[18,22,["H7896"]],[22,24,["H312"]],[24,25,["H2233"]],[25,27,["H8478"]],[27,28,["H1893"]],[28,30,["H7014"]],[30,31,["H2026"]]]},{"k":105,"v":[[0,3,["H8352"]],[3,5,["H1931"]],[5,6,["H1571"]],[6,9,["H3205"]],[9,11,["H1121"]],[11,14,["H7121","(H853)"]],[14,16,["H8034"]],[16,17,["H583"]],[17,18,["H227"]],[18,19,["H2490"]],[19,22,["H7121"]],[22,25,["H8034"]],[25,28,["H3068"]]]},{"k":106,"v":[[0,1,["H2088"]],[1,4,["H5612"]],[4,7,["H8435"]],[7,9,["H121"]],[9,12,["H3117"]],[12,14,["H430"]],[14,15,["H1254"]],[15,16,["H120"]],[16,19,["H1823"]],[19,21,["H430"]],[21,22,["H6213"]],[22,24,[]]]},{"k":107,"v":[[0,1,["H2145"]],[1,3,["H5347"]],[3,4,["H1254"]],[4,8,["H1288"]],[8,11,["H7121","(H853)"]],[11,13,["H8034"]],[13,14,["H121"]],[14,17,["H3117"]],[17,21,["H1254"]]]},{"k":108,"v":[[0,2,["H121"]],[2,3,["H2421"]],[3,5,["H3967"]],[5,7,["H7970"]],[7,8,["H8141"]],[8,10,["H3205"]],[10,16,["H1823"]],[16,19,["H6754"]],[19,21,["H7121","(H853)"]],[21,23,["H8034"]],[23,24,["H8352"]]]},{"k":109,"v":[[0,3,["H3117"]],[3,5,["H121"]],[5,6,["H310"]],[6,9,["H3205","(H853)"]],[9,10,["H8352"]],[10,11,["H1961"]],[11,12,["H8083"]],[12,13,["H3967"]],[13,14,["H8141"]],[14,17,["H3205"]],[17,18,["H1121"]],[18,20,["H1323"]]]},{"k":110,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,5,["H834"]],[5,6,["H121"]],[6,7,["H2425"]],[7,8,["H1961"]],[8,9,["H8672"]],[9,10,["H3967"]],[10,12,["H7970"]],[12,13,["H8141"]],[13,16,["H4191"]]]},{"k":111,"v":[[0,2,["H8352"]],[2,3,["H2421"]],[3,5,["H3967"]],[5,7,["H2568"]],[7,8,["H8141"]],[8,10,["H3205","(H853)"]],[10,11,["H583"]]]},{"k":112,"v":[[0,2,["H8352"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H583"]],[7,8,["H8083"]],[8,9,["H3967"]],[9,11,["H7651"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":113,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,6,["H8352"]],[6,7,["H1961"]],[7,8,["H8672"]],[8,9,["H3967"]],[9,11,["H8147","H6240"]],[11,12,["H8141"]],[12,15,["H4191"]]]},{"k":114,"v":[[0,2,["H583"]],[2,3,["H2421"]],[3,4,["H8673"]],[4,5,["H8141"]],[5,7,["H3205","(H853)"]],[7,8,["H7018"]]]},{"k":115,"v":[[0,2,["H583"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H7018"]],[7,8,["H8083"]],[8,9,["H3967"]],[9,11,["H2568","H6240"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":116,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,6,["H583"]],[6,7,["H1961"]],[7,8,["H8672"]],[8,9,["H3967"]],[9,11,["H2568"]],[11,12,["H8141"]],[12,15,["H4191"]]]},{"k":117,"v":[[0,2,["H7018"]],[2,3,["H2421"]],[3,4,["H7657"]],[4,5,["H8141"]],[5,7,["H3205","(H853)"]],[7,8,["H4111"]]]},{"k":118,"v":[[0,2,["H7018"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H4111"]],[7,8,["H8083"]],[8,9,["H3967"]],[9,11,["H705"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":119,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,6,["H7018"]],[6,7,["H1961"]],[7,8,["H8672"]],[8,9,["H3967"]],[9,11,["H6235"]],[11,12,["H8141"]],[12,15,["H4191"]]]},{"k":120,"v":[[0,2,["H4111"]],[2,3,["H2421"]],[3,4,["H8346"]],[4,6,["H2568"]],[6,7,["H8141"]],[7,9,["H3205","(H853)"]],[9,10,["H3382"]]]},{"k":121,"v":[[0,2,["H4111"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H3382"]],[7,8,["H8083"]],[8,9,["H3967"]],[9,11,["H7970"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":122,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,6,["H4111"]],[6,7,["H1961"]],[7,8,["H8083"]],[8,9,["H3967"]],[9,10,["H8673"]],[10,12,["H2568"]],[12,13,["H8141"]],[13,16,["H4191"]]]},{"k":123,"v":[[0,2,["H3382"]],[2,3,["H2421"]],[3,5,["H3967"]],[5,6,["H8346"]],[6,8,["H8147"]],[8,9,["H8141"]],[9,12,["H3205","(H853)"]],[12,13,["H2585"]]]},{"k":124,"v":[[0,2,["H3382"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H2585"]],[7,8,["H8083"]],[8,9,["H3967"]],[9,10,["H8141"]],[10,12,["H3205"]],[12,13,["H1121"]],[13,15,["H1323"]]]},{"k":125,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,6,["H3382"]],[6,7,["H1961"]],[7,8,["H8672"]],[8,9,["H3967"]],[9,10,["H8346"]],[10,12,["H8147"]],[12,13,["H8141"]],[13,16,["H4191"]]]},{"k":126,"v":[[0,2,["H2585"]],[2,3,["H2421"]],[3,4,["H8346"]],[4,6,["H2568"]],[6,7,["H8141"]],[7,9,["H3205","(H853)"]],[9,10,["H4968"]]]},{"k":127,"v":[[0,2,["H2585"]],[2,3,["H1980"]],[3,4,["H854"]],[4,5,["H430"]],[5,6,["H310"]],[6,8,["H3205","(H853)"]],[8,9,["H4968"]],[9,10,["H7969"]],[10,11,["H3967"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":128,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,6,["H2585"]],[6,7,["H1961"]],[7,8,["H7969"]],[8,9,["H3967"]],[9,10,["H8346"]],[10,12,["H2568"]],[12,13,["H8141"]]]},{"k":129,"v":[[0,2,["H2585"]],[2,3,["H1980"]],[3,4,["H854"]],[4,5,["H430"]],[5,9,["H369"]],[9,10,["H3588"]],[10,11,["H430"]],[11,12,["H3947"]],[12,13,[]]]},{"k":130,"v":[[0,2,["H4968"]],[2,3,["H2421"]],[3,5,["H3967"]],[5,6,["H8084"]],[6,8,["H7651"]],[8,9,["H8141"]],[9,11,["H3205","(H853)"]],[11,12,["H3929"]]]},{"k":131,"v":[[0,2,["H4968"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H3929"]],[7,8,["H7651"]],[8,9,["H3967"]],[9,10,["H8084"]],[10,12,["H8147"]],[12,13,["H8141"]],[13,15,["H3205"]],[15,16,["H1121"]],[16,18,["H1323"]]]},{"k":132,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,6,["H4968"]],[6,7,["H1961"]],[7,8,["H8672"]],[8,9,["H3967"]],[9,10,["H8346"]],[10,12,["H8672"]],[12,13,["H8141"]],[13,16,["H4191"]]]},{"k":133,"v":[[0,2,["H3929"]],[2,3,["H2421"]],[3,5,["H3967"]],[5,6,["H8084"]],[6,8,["H8147"]],[8,9,["H8141"]],[9,11,["H3205"]],[11,13,["H1121"]]]},{"k":134,"v":[[0,3,["H7121","(H853)"]],[3,5,["H8034"]],[5,6,["H5146"]],[6,7,["H559"]],[7,8,["H2088"]],[8,11,["H5162"]],[11,15,["H4480","H4639"]],[15,17,["(H4480)","H6093"]],[17,20,["H3027"]],[20,22,["H4480"]],[22,24,["H127"]],[24,25,["H834"]],[25,27,["H3068"]],[27,29,["H779"]]]},{"k":135,"v":[[0,2,["H3929"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H5146"]],[7,8,["H2568"]],[8,9,["H3967"]],[9,10,["H8673"]],[10,12,["H2568"]],[12,13,["H8141"]],[13,15,["H3205"]],[15,16,["H1121"]],[16,18,["H1323"]]]},{"k":136,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,6,["H3929"]],[6,7,["H1961"]],[7,8,["H7651"]],[8,9,["H3967"]],[9,10,["H7657"]],[10,12,["H7651"]],[12,13,["H8141"]],[13,16,["H4191"]]]},{"k":137,"v":[[0,2,["H5146"]],[2,3,["H1961"]],[3,4,["H2568"]],[4,5,["H3967"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,9,["H5146"]],[9,10,["H3205","(H853)"]],[10,11,["H8035","(H853)"]],[11,12,["H2526"]],[12,14,["H3315"]]]},{"k":138,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,7,["H120"]],[7,8,["H2490"]],[8,10,["H7231"]],[10,11,["H5921"]],[11,13,["H6440"]],[13,16,["H127"]],[16,18,["H1323"]],[18,20,["H3205"]],[20,22,[]]]},{"k":139,"v":[[0,3,["H1121"]],[3,5,["H430"]],[5,6,["H7200","(H853)"]],[6,8,["H1323"]],[8,10,["H120"]],[10,11,["H3588"]],[11,12,["H2007"]],[12,14,["H2896"]],[14,17,["H3947"]],[17,19,["H802"]],[19,21,["H4480","H3605"]],[21,22,["H834"]],[22,24,["H977"]]]},{"k":140,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,6,["H7307"]],[6,8,["H3808"]],[8,9,["H5769"]],[9,10,["H1777"]],[10,12,["H120"]],[12,15,["H1931"]],[15,16,["H7945","H1571"]],[16,18,["H1320"]],[18,21,["H3117"]],[21,23,["H1961"]],[23,25,["H3967"]],[25,27,["H6242"]],[27,28,["H8141"]]]},{"k":141,"v":[[0,2,["H1961"]],[2,3,["H5303"]],[3,6,["H776"]],[6,8,["H1992"]],[8,9,["H3117"]],[9,11,["H1571"]],[11,12,["H310"]],[12,13,["H3651"]],[13,14,["H834"]],[14,16,["H1121"]],[16,18,["H430"]],[18,20,["H935"]],[20,21,["H413"]],[21,23,["H1323"]],[23,25,["H120"]],[25,28,["H3205"]],[28,33,["H1992"]],[33,36,["H1368"]],[36,37,["H834"]],[37,40,["H4480","H5769"]],[40,41,["H376"]],[41,43,["H8034"]]]},{"k":142,"v":[[0,2,["H3068"]],[2,3,["H7200"]],[3,4,["H3588"]],[4,6,["H7451"]],[6,8,["H120"]],[8,10,["H7227"]],[10,13,["H776"]],[13,16,["H3605"]],[16,17,["H3336"]],[17,20,["H4284"]],[20,23,["H3820"]],[23,25,["H7535"]],[25,26,["H7451"]],[26,27,["H3605","H3117"]]]},{"k":143,"v":[[0,3,["H5162"]],[3,5,["H3068"]],[5,6,["H3588"]],[6,9,["H6213","(H853)"]],[9,10,["H120"]],[10,13,["H776"]],[13,16,["H6087"]],[16,18,["H413"]],[18,20,["H3820"]]]},{"k":144,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,7,["H4229","(H853)"]],[7,8,["H120"]],[8,9,["H834"]],[9,12,["H1254"]],[12,13,["H4480","H5921"]],[13,15,["H6440"]],[15,18,["H127"]],[18,20,["H4480","H120"]],[20,21,["H5704"]],[21,22,["H929"]],[22,23,["H5704"]],[23,26,["H7431"]],[26,27,["H5704"]],[27,29,["H5775"]],[29,32,["H8064"]],[32,33,["H3588"]],[33,35,["H5162"]],[35,37,["H3588"]],[37,40,["H6213"]],[40,41,[]]]},{"k":145,"v":[[0,2,["H5146"]],[2,3,["H4672"]],[3,4,["H2580"]],[4,7,["H5869"]],[7,10,["H3068"]]]},{"k":146,"v":[[0,1,["H428"]],[1,4,["H8435"]],[4,6,["H5146"]],[6,7,["H5146"]],[7,8,["H1961"]],[8,10,["H6662"]],[10,11,["H376"]],[11,13,["H8549"]],[13,16,["H1755"]],[16,18,["H5146"]],[18,19,["H1980"]],[19,20,["H854"]],[20,21,["H430"]]]},{"k":147,"v":[[0,2,["H5146"]],[2,3,["H3205"]],[3,4,["H7969"]],[4,5,["H1121","(H853)"]],[5,6,["H8035","(H853)"]],[6,7,["H2526"]],[7,9,["H3315"]]]},{"k":148,"v":[[0,2,["H776"]],[2,5,["H7843"]],[5,6,["H6440"]],[6,7,["H430"]],[7,10,["H776"]],[10,12,["H4390"]],[12,14,["H2555"]]]},{"k":149,"v":[[0,2,["H430"]],[2,4,["H7200","(H853)"]],[4,6,["H776"]],[6,8,["H2009"]],[8,11,["H7843"]],[11,12,["H3588"]],[12,13,["H3605"]],[13,14,["H1320"]],[14,16,["H7843","(H853)"]],[16,18,["H1870"]],[18,19,["H5921"]],[19,21,["H776"]]]},{"k":150,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,5,["H5146"]],[5,7,["H7093"]],[7,9,["H3605"]],[9,10,["H1320"]],[10,12,["H935"]],[12,13,["H6440"]],[13,15,["H3588"]],[15,17,["H776"]],[17,19,["H4390"]],[19,21,["H2555"]],[21,23,["H4480","H6440"]],[23,25,["H2009"]],[25,28,["H7843"]],[28,30,["H854"]],[30,32,["H776"]]]},{"k":151,"v":[[0,1,["H6213"]],[1,4,["H8392"]],[4,6,["H1613"]],[6,7,["H6086"]],[7,8,["H7064"]],[8,11,["H6213","(H853)"]],[11,14,["H8392"]],[14,17,["H3722"]],[17,19,["H4480","H1004"]],[19,21,["H4480","H2351"]],[21,23,["H3724"]]]},{"k":152,"v":[[0,2,["H2088"]],[2,6,["H834"]],[6,9,["H6213"]],[9,13,["H753"]],[13,16,["H8392"]],[16,19,["H7969"]],[19,20,["H3967"]],[20,21,["H520"]],[21,23,["H7341"]],[23,26,["H2572"]],[26,27,["H520"]],[27,30,["H6967"]],[30,33,["H7970"]],[33,34,["H520"]]]},{"k":153,"v":[[0,2,["H6672"]],[2,5,["H6213"]],[5,8,["H8392"]],[8,10,["H413"]],[10,12,["H520"]],[12,15,["H3615"]],[15,17,["H4480","H4605"]],[17,20,["H6607"]],[20,23,["H8392"]],[23,26,["H7760"]],[26,29,["H6654"]],[29,32,["H8482"]],[32,33,["H8145"]],[33,35,["H7992"]],[35,39,["H6213"]],[39,40,[]]]},{"k":154,"v":[[0,2,["H2009"]],[2,5,["H589"]],[5,7,["H935","(H853)"]],[7,9,["H3999"]],[9,11,["H4325"]],[11,12,["H5921"]],[12,14,["H776"]],[14,16,["H7843"]],[16,17,["H3605"]],[17,18,["H1320"]],[18,19,["H834"]],[19,22,["H7307"]],[22,24,["H2416"]],[24,26,["H4480","H8478"]],[26,27,["H8064"]],[27,30,["H3605"]],[30,31,["H834"]],[31,35,["H776"]],[35,37,["H1478"]]]},{"k":155,"v":[[0,2,["H854"]],[2,6,["H6965","(H853)"]],[6,8,["H1285"]],[8,12,["H935"]],[12,13,["H413"]],[13,15,["H8392"]],[15,16,["H859"]],[16,19,["H1121"]],[19,22,["H802"]],[22,25,["H1121"]],[25,26,["H802"]],[26,27,["H854"]],[27,28,[]]]},{"k":156,"v":[[0,3,["H4480","H3605"]],[3,5,["H2416"]],[5,7,["H4480","H3605"]],[7,8,["H1320"]],[8,9,["H8147"]],[9,11,["H4480","H3605"]],[11,15,["H935"]],[15,16,["H413"]],[16,18,["H8392"]],[18,22,["H2421"]],[22,23,["H854"]],[23,27,["H1961"]],[27,28,["H2145"]],[28,30,["H5347"]]]},{"k":157,"v":[[0,2,["H4480","H5775"]],[2,5,["H4327"]],[5,7,["H4480"]],[7,8,["H929"]],[8,11,["H4327"]],[11,13,["H4480","H3605"]],[13,15,["H7431"]],[15,18,["H127"]],[18,21,["H4327"]],[21,22,["H8147"]],[22,24,["H4480","H3605"]],[24,27,["H935"]],[27,28,["H413"]],[28,33,["H2421"]]]},{"k":158,"v":[[0,2,["H3947"]],[2,3,["H859"]],[3,7,["H4480","H3605"]],[7,8,["H3978"]],[8,9,["H834"]],[9,11,["H398"]],[11,15,["H622"]],[15,17,["H413"]],[17,22,["H1961"]],[22,24,["H402"]],[24,29,[]]]},{"k":159,"v":[[0,2,["H6213"]],[2,3,["H5146"]],[3,6,["H3605"]],[6,7,["H834"]],[7,8,["H430"]],[8,9,["H6680"]],[9,11,["H3651"]],[11,12,["H6213"]],[12,13,[]]]},{"k":160,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,6,["H5146"]],[6,7,["H935"]],[7,8,["H859"]],[8,10,["H3605"]],[10,12,["H1004"]],[12,13,["H413"]],[13,15,["H8392"]],[15,16,["H3588"]],[16,20,["H7200"]],[20,21,["H6662"]],[21,22,["H6440"]],[22,25,["H2088"]],[25,26,["H1755"]]]},{"k":161,"v":[[0,2,["H4480","H3605"]],[2,3,["H2889"]],[3,4,["H929"]],[4,7,["H3947"]],[7,11,["H7651","H7651"]],[11,13,["H376"]],[13,16,["H802"]],[16,18,["H4480"]],[18,19,["H929"]],[19,20,["H834"]],[20,22,["H3808"]],[22,23,["H2889"]],[23,25,["H8147"]],[25,27,["H376"]],[27,30,["H802"]]]},{"k":162,"v":[[0,2,["H4480","H5775"]],[2,3,["H1571"]],[3,6,["H8064"]],[6,8,["H7651","H7651"]],[8,10,["H2145"]],[10,13,["H5347"]],[13,16,["H2233"]],[16,17,["H2421"]],[17,18,["H5921"]],[18,20,["H6440"]],[20,22,["H3605"]],[22,24,["H776"]]]},{"k":163,"v":[[0,1,["H3588"]],[1,2,["H5750"]],[2,3,["H7651"]],[3,4,["H3117"]],[4,6,["H595"]],[6,11,["H4305"]],[11,12,["H5921"]],[12,14,["H776"]],[14,15,["H705"]],[15,16,["H3117"]],[16,18,["H705"]],[18,19,["H3915"]],[19,20,["(H853)"]],[20,21,["H3605"]],[21,23,["H3351"]],[23,24,["H834"]],[24,27,["H6213"]],[27,30,["H4229"]],[30,32,["H4480","H5921"]],[32,34,["H6440"]],[34,37,["H127"]]]},{"k":164,"v":[[0,2,["H5146"]],[2,3,["H6213"]],[3,6,["H3605"]],[6,7,["H834"]],[7,9,["H3068"]],[9,10,["H6680"]],[10,11,[]]]},{"k":165,"v":[[0,2,["H5146"]],[2,4,["H8337"]],[4,5,["H3967"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,10,["H3999"]],[10,12,["H4325"]],[12,13,["H1961"]],[13,14,["H5921"]],[14,16,["H776"]]]},{"k":166,"v":[[0,2,["H5146"]],[2,4,["H935"]],[4,7,["H1121"]],[7,10,["H802"]],[10,13,["H1121"]],[13,14,["H802"]],[14,15,["H854"]],[15,17,["H413"]],[17,19,["H8392"]],[19,20,["H4480","H6440"]],[20,23,["H4325"]],[23,26,["H3999"]]]},{"k":167,"v":[[0,1,["H4480"]],[1,2,["H2889"]],[2,3,["H929"]],[3,5,["H4480"]],[5,6,["H929"]],[6,7,["H834"]],[7,9,["H369"]],[9,10,["H2889"]],[10,12,["H4480"]],[12,13,["H5775"]],[13,17,["H3605"]],[17,18,["H834"]],[18,19,["H7430"]],[19,20,["H5921"]],[20,22,["H127"]]]},{"k":168,"v":[[0,3,["H935"]],[3,4,["H8147"]],[4,6,["H8147"]],[6,7,["H413"]],[7,8,["H5146"]],[8,9,["H413"]],[9,11,["H8392"]],[11,13,["H2145"]],[13,16,["H5347"]],[16,17,["H834"]],[17,18,["H430"]],[18,20,["H6680","(H853)"]],[20,21,["H5146"]]]},{"k":169,"v":[[0,5,["H1961"]],[5,7,["H7651"]],[7,8,["H3117"]],[8,11,["H4325"]],[11,14,["H3999"]],[14,15,["H1961"]],[15,16,["H5921"]],[16,18,["H776"]]]},{"k":170,"v":[[0,3,["H8337"]],[3,4,["H3967"]],[4,5,["H8141"]],[5,7,["H5146"]],[7,8,["H2416"]],[8,11,["H8145"]],[11,12,["H2320"]],[12,14,["H7651","H6240"]],[14,15,["H3117"]],[15,18,["H2320"]],[18,20,["H2320"]],[20,21,["H3117"]],[21,23,["H3605"]],[23,25,["H4599"]],[25,28,["H7227"]],[28,29,["H8415"]],[29,31,["H1234"]],[31,34,["H699"]],[34,36,["H8064"]],[36,38,["H6605"]]]},{"k":171,"v":[[0,3,["H1653"]],[3,4,["H1961"]],[4,5,["H5921"]],[5,7,["H776"]],[7,8,["H705"]],[8,9,["H3117"]],[9,11,["H705"]],[11,12,["H3915"]]]},{"k":172,"v":[[0,3,["H6106","H2088"]],[3,4,["H3117"]],[4,5,["H935"]],[5,6,["H5146"]],[6,8,["H8035"]],[8,10,["H2526"]],[10,12,["H3315"]],[12,14,["H1121"]],[14,16,["H5146"]],[16,18,["H5146"]],[18,19,["H802"]],[19,22,["H7969"]],[22,23,["H802"]],[23,26,["H1121"]],[26,27,["H854"]],[27,29,["H413"]],[29,31,["H8392"]]]},{"k":173,"v":[[0,1,["H1992"]],[1,3,["H3605"]],[3,4,["H2416"]],[4,7,["H4327"]],[7,9,["H3605"]],[9,11,["H929"]],[11,14,["H4327"]],[14,16,["H3605"]],[16,18,["H7431"]],[18,20,["H7430"]],[20,21,["H5921"]],[21,23,["H776"]],[23,26,["H4327"]],[26,28,["H3605"]],[28,29,["H5775"]],[29,32,["H4327"]],[32,33,["H3605"]],[33,34,["H6833"]],[34,36,["H3605"]],[36,37,["H3671"]]]},{"k":174,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,6,["H5146"]],[6,7,["H413"]],[7,9,["H8392"]],[9,10,["H8147"]],[10,12,["H8147"]],[12,14,["H4480","H3605"]],[14,15,["H1320"]],[15,16,["H834"]],[16,19,["H7307"]],[19,21,["H2416"]]]},{"k":175,"v":[[0,5,["H935"]],[5,7,["H935"]],[7,8,["H2145"]],[8,10,["H5347"]],[10,12,["H4480","H3605"]],[12,13,["H1320"]],[13,14,["H834"]],[14,15,["H430"]],[15,17,["H6680"]],[17,21,["H3068"]],[21,24,["H5462","H1157"]]]},{"k":176,"v":[[0,3,["H3999"]],[3,4,["H1961"]],[4,5,["H705"]],[5,6,["H3117"]],[6,7,["H5921"]],[7,9,["H776"]],[9,12,["H4325"]],[12,13,["H7235"]],[13,16,["H5375","(H853)"]],[16,18,["H8392"]],[18,23,["H7311"]],[23,24,["H4480","H5921"]],[24,26,["H776"]]]},{"k":177,"v":[[0,3,["H4325"]],[3,4,["H1396"]],[4,7,["H7235"]],[7,8,["H3966"]],[8,9,["H5921"]],[9,11,["H776"]],[11,14,["H8392"]],[14,15,["H1980"]],[15,16,["H5921"]],[16,18,["H6440"]],[18,21,["H4325"]]]},{"k":178,"v":[[0,3,["H4325"]],[3,4,["H1396"]],[4,5,["H3966","H3966"]],[5,6,["H5921"]],[6,8,["H776"]],[8,10,["H3605"]],[10,12,["H1364"]],[12,13,["H2022"]],[13,14,["H834"]],[14,16,["H8478"]],[16,18,["H3605"]],[18,19,["H8064"]],[19,21,["H3680"]]]},{"k":179,"v":[[0,1,["H2568","H6240"]],[1,2,["H520"]],[2,3,["H4480","H4605"]],[3,6,["H4325"]],[6,7,["H1396"]],[7,10,["H2022"]],[10,12,["H3680"]]]},{"k":180,"v":[[0,2,["H3605"]],[2,3,["H1320"]],[3,4,["H1478"]],[4,6,["H7430"]],[6,7,["H5921"]],[7,9,["H776"]],[9,12,["H5775"]],[12,15,["H929"]],[15,18,["H2416"]],[18,21,["H3605"]],[21,23,["H8318"]],[23,25,["H8317"]],[25,26,["H5921"]],[26,28,["H776"]],[28,30,["H3605"]],[30,31,["H120"]]]},{"k":181,"v":[[0,1,["H3605"]],[1,4,["H639"]],[4,7,["H5397","H7307"]],[7,9,["H2416"]],[9,11,["H4480","H3605"]],[11,12,["H834"]],[12,16,["H2724"]],[16,18,["H4191"]]]},{"k":182,"v":[[0,1,["(H853)"]],[1,2,["H3605"]],[2,4,["H3351"]],[4,6,["H4229"]],[6,7,["H834"]],[7,9,["H5921"]],[9,11,["H6440"]],[11,14,["H127"]],[14,16,["H4480","H120"]],[16,17,["H5704"]],[17,18,["H929"]],[18,19,["H5704"]],[19,22,["H7431"]],[22,23,["H5704"]],[23,25,["H5775"]],[25,28,["H8064"]],[28,32,["H4229"]],[32,33,["H4480"]],[33,35,["H776"]],[35,37,["H5146"]],[37,38,["H389"]],[38,39,["H7604"]],[39,43,["H834"]],[43,45,["H854"]],[45,49,["H8392"]]]},{"k":183,"v":[[0,3,["H4325"]],[3,4,["H1396"]],[4,5,["H5921"]],[5,7,["H776"]],[7,9,["H3967"]],[9,11,["H2572"]],[11,12,["H3117"]]]},{"k":184,"v":[[0,2,["H430"]],[2,3,["H2142","(H853)"]],[3,4,["H5146"]],[4,6,["H3605"]],[6,8,["H2416"]],[8,10,["H3605"]],[10,12,["H929"]],[12,13,["H834"]],[13,15,["H854"]],[15,19,["H8392"]],[19,21,["H430"]],[21,24,["H7307"]],[24,26,["H5674"]],[26,27,["H5921"]],[27,29,["H776"]],[29,32,["H4325"]],[32,33,["H7918"]]]},{"k":185,"v":[[0,2,["H4599"]],[2,6,["H8415"]],[6,9,["H699"]],[9,11,["H8064"]],[11,13,["H5534"]],[13,16,["H1653"]],[16,17,["H4480"]],[17,18,["H8064"]],[18,20,["H3607"]]]},{"k":186,"v":[[0,3,["H4325"]],[3,4,["H7725"]],[4,6,["H4480","H5921"]],[6,8,["H776"]],[8,9,["H1980","H7725"]],[9,13,["H4480","H7097"]],[13,16,["H3967"]],[16,18,["H2572"]],[18,19,["H3117"]],[19,21,["H4325"]],[21,23,["H2637"]]]},{"k":187,"v":[[0,3,["H8392"]],[3,4,["H5117"]],[4,7,["H7637"]],[7,8,["H2320"]],[8,11,["H7651","H6240"]],[11,12,["H3117"]],[12,15,["H2320"]],[15,16,["H5921"]],[16,18,["H2022"]],[18,20,["H780"]]]},{"k":188,"v":[[0,3,["H4325"]],[3,4,["H2637"]],[4,5,["H1961","H1980"]],[5,6,["H5704"]],[6,8,["H6224"]],[8,9,["H2320"]],[9,12,["H6224"]],[12,16,["H259"]],[16,20,["H2320"]],[20,23,["H7218"]],[23,26,["H2022"]],[26,27,["H7200"]]]},{"k":189,"v":[[0,5,["H1961"]],[5,8,["H4480","H7093"]],[8,10,["H705"]],[10,11,["H3117"]],[11,13,["H5146"]],[13,14,["H6605","(H853)"]],[14,16,["H2474"]],[16,19,["H8392"]],[19,20,["H834"]],[20,23,["H6213"]]]},{"k":190,"v":[[0,4,["H7971","(H853)"]],[4,6,["H6158"]],[6,9,["H3318"]],[9,12,["H3318","H7725"]],[12,13,["H5704"]],[13,15,["H4325"]],[15,18,["H3001"]],[18,20,["H4480","H5921"]],[20,22,["H776"]]]},{"k":191,"v":[[0,4,["H7971","(H853)"]],[4,6,["H3123"]],[6,7,["H4480","H854"]],[7,10,["H7200"]],[10,13,["H4325"]],[13,15,["H7043"]],[15,17,["H4480","H5921"]],[17,19,["H6440"]],[19,22,["H127"]]]},{"k":192,"v":[[0,3,["H3123"]],[3,4,["H4672"]],[4,5,["H3808"]],[5,6,["H4494"]],[6,9,["H3709"]],[9,12,["H7272"]],[12,15,["H7725"]],[15,16,["H413"]],[16,18,["H413"]],[18,20,["H8392"]],[20,21,["H3588"]],[21,23,["H4325"]],[23,25,["H5921"]],[25,27,["H6440"]],[27,30,["H3605"]],[30,31,["H776"]],[31,35,["H7971"]],[35,37,["H3027"]],[37,39,["H3947"]],[39,44,["H935","(H853)"]],[44,45,["H413"]],[45,47,["H413"]],[47,49,["H8392"]]]},{"k":193,"v":[[0,3,["H2342"]],[3,4,["H5750"]],[4,5,["H312"]],[5,6,["H7651"]],[6,7,["H3117"]],[7,9,["H3254"]],[9,12,["H7971","(H853)"]],[12,14,["H3123"]],[14,16,["H4480"]],[16,18,["H8392"]]]},{"k":194,"v":[[0,3,["H3123"]],[3,5,["H935"]],[5,6,["H413"]],[6,8,["H6256"]],[8,10,["H6153"]],[10,12,["H2009"]],[12,15,["H6310"]],[15,18,["H2132"]],[18,19,["H5929"]],[19,21,["H2965"]],[21,23,["H5146"]],[23,24,["H3045"]],[24,25,["H3588"]],[25,27,["H4325"]],[27,29,["H7043"]],[29,31,["H4480","H5921"]],[31,33,["H776"]]]},{"k":195,"v":[[0,3,["H3176"]],[3,4,["H5750"]],[4,5,["H312"]],[5,6,["H7651"]],[6,7,["H3117"]],[7,10,["H7971","(H853)"]],[10,12,["H3123"]],[12,14,["H7725"]],[14,15,["H3808"]],[15,16,["H3254"]],[16,17,["H413"]],[17,20,["H5750"]]]},{"k":196,"v":[[0,5,["H1961"]],[5,8,["H8337"]],[8,9,["H3967"]],[9,11,["H259"]],[11,12,["H8141"]],[12,15,["H7223"]],[15,18,["H259"]],[18,22,["H2320"]],[22,24,["H4325"]],[24,27,["H2717"]],[27,29,["H4480","H5921"]],[29,31,["H776"]],[31,33,["H5146"]],[33,34,["H5493","(H853)"]],[34,36,["H4372"]],[36,39,["H8392"]],[39,41,["H7200"]],[41,43,["H2009"]],[43,45,["H6440"]],[45,48,["H127"]],[48,50,["H2717"]]]},{"k":197,"v":[[0,4,["H8145"]],[4,5,["H2320"]],[5,8,["H7651"]],[8,10,["H6242"]],[10,11,["H3117"]],[11,14,["H2320"]],[14,17,["H776"]],[17,18,["H3001"]]]},{"k":198,"v":[[0,2,["H430"]],[2,3,["H1696"]],[3,4,["H413"]],[4,5,["H5146"]],[5,6,["H559"]]]},{"k":199,"v":[[0,2,["H3318"]],[2,3,["H4480"]],[3,5,["H8392"]],[5,6,["H859"]],[6,9,["H802"]],[9,12,["H1121"]],[12,15,["H1121"]],[15,16,["H802"]],[16,17,["H854"]],[17,18,[]]]},{"k":200,"v":[[0,2,["H3318"]],[2,3,["H854"]],[3,5,["H3605"]],[5,7,["H2416"]],[7,8,["H834"]],[8,10,["H854"]],[10,13,["H4480","H3605"]],[13,14,["H1320"]],[14,17,["H5775"]],[17,20,["H929"]],[20,23,["H3605"]],[23,25,["H7431"]],[25,27,["H7430"]],[27,28,["H5921"]],[28,30,["H776"]],[30,35,["H8317"]],[35,38,["H776"]],[38,41,["H6509"]],[41,43,["H7235"]],[43,44,["H5921"]],[44,46,["H776"]]]},{"k":201,"v":[[0,2,["H5146"]],[2,4,["H3318"]],[4,7,["H1121"]],[7,10,["H802"]],[10,13,["H1121"]],[13,14,["H802"]],[14,15,["H854"]],[15,16,[]]]},{"k":202,"v":[[0,1,["H3605"]],[1,2,["H2416"]],[2,3,["H3605"]],[3,5,["H7431"]],[5,7,["H3605"]],[7,8,["H5775"]],[8,10,["H3605"]],[10,11,["H7430"]],[11,12,["H5921"]],[12,14,["H776"]],[14,17,["H4940"]],[17,19,["H3318"]],[19,21,["H4480"]],[21,23,["H8392"]]]},{"k":203,"v":[[0,2,["H5146"]],[2,3,["H1129"]],[3,5,["H4196"]],[5,8,["H3068"]],[8,10,["H3947"]],[10,12,["H4480","H3605"]],[12,13,["H2889"]],[13,14,["H929"]],[14,17,["H4480","H3605"]],[17,18,["H2889"]],[18,19,["H5775"]],[19,21,["H5927"]],[21,23,["H5930"]],[23,26,["H4196"]]]},{"k":204,"v":[[0,3,["H3068"]],[3,4,["H7306"]],[4,6,["H5207","(H853)"]],[6,7,["H7381"]],[7,10,["H3068"]],[10,11,["H559"]],[11,12,["H413"]],[12,14,["H3820"]],[14,17,["H3808"]],[17,18,["H3254"]],[18,19,["H7043","(H853)"]],[19,21,["H127"]],[21,23,["H5750"]],[23,26,["H5668","H120"]],[26,27,["H3588"]],[27,29,["H3336"]],[29,31,["H120"]],[31,32,["H3820"]],[32,34,["H7451"]],[34,37,["H4480","H5271"]],[37,38,["H3808"]],[38,41,["H3254"]],[41,42,["H5221"]],[42,44,["H5750","(H853)"]],[44,46,["H3605"]],[46,47,["H2416"]],[47,48,["H834"]],[48,51,["H6213"]]]},{"k":205,"v":[[0,1,["H5750"]],[1,3,["H776"]],[3,4,["H3605","H3117"]],[4,5,["H2233"]],[5,7,["H7105"]],[7,9,["H7120"]],[9,11,["H2527"]],[11,13,["H7019"]],[13,15,["H2779"]],[15,17,["H3117"]],[17,19,["H3915"]],[19,21,["H3808"]],[21,22,["H7673"]]]},{"k":206,"v":[[0,2,["H430"]],[2,3,["H1288","(H853)"]],[3,4,["H5146"]],[4,7,["H1121"]],[7,9,["H559"]],[9,13,["H6509"]],[13,15,["H7235"]],[15,17,["H4390","(H853)"]],[17,19,["H776"]]]},{"k":207,"v":[[0,3,["H4172"]],[3,8,["H2844"]],[8,12,["H1961"]],[12,13,["H5921"]],[13,14,["H3605"]],[14,15,["H2416"]],[15,18,["H776"]],[18,20,["H5921"]],[20,21,["H3605"]],[21,22,["H5775"]],[22,25,["H8064"]],[25,27,["H3605"]],[27,28,["H834"]],[28,29,["H7430"]],[29,32,["H127"]],[32,35,["H3605"]],[35,37,["H1709"]],[37,40,["H3220"]],[40,43,["H3027"]],[43,46,["H5414"]]]},{"k":208,"v":[[0,1,["H3605"]],[1,3,["H7431"]],[3,4,["H834"]],[4,5,["H2416"]],[5,7,["H1961"]],[7,8,["H402"]],[8,14,["H3418"]],[14,15,["H6212"]],[15,18,["H5414"]],[18,19,["(H853)"]],[19,21,["H3605"]]]},{"k":209,"v":[[0,1,["H389"]],[1,2,["H1320"]],[2,5,["H5315"]],[5,10,["H1818"]],[10,14,["H3808"]],[14,15,["H398"]]]},{"k":210,"v":[[0,2,["H389","(H853)"]],[2,4,["H1818"]],[4,7,["H5315"]],[7,10,["H1875"]],[10,13,["H4480","H3027"]],[13,15,["H3605"]],[15,16,["H2416"]],[16,19,["H1875"]],[19,24,["H4480","H3027"]],[24,26,["H120"]],[26,29,["H4480","H3027"]],[29,32,["H376"]],[32,33,["H251"]],[33,36,["H1875","(H853)"]],[36,38,["H5315"]],[38,40,["H120"]]]},{"k":211,"v":[[0,2,["H8210"]],[2,3,["H120"]],[3,4,["H1818"]],[4,6,["H120"]],[6,9,["H1818"]],[9,11,["H8210"]],[11,12,["H3588"]],[12,15,["H6754"]],[15,17,["H430"]],[17,18,["H6213"]],[18,19,["(H853)"]],[19,20,["H120"]]]},{"k":212,"v":[[0,2,["H859"]],[2,5,["H6509"]],[5,7,["H7235"]],[7,10,["H8317"]],[10,13,["H776"]],[13,15,["H7235"]],[15,16,[]]]},{"k":213,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H5146"]],[5,7,["H413"]],[7,9,["H1121"]],[9,10,["H854"]],[10,12,["H559"]]]},{"k":214,"v":[[0,2,["H589"]],[2,3,["H2009"]],[3,5,["H6965","(H853)"]],[5,7,["H1285"]],[7,8,["H854"]],[8,11,["H854"]],[11,13,["H2233"]],[13,14,["H310"]],[14,15,[]]]},{"k":215,"v":[[0,2,["H854"]],[2,3,["H3605"]],[3,4,["H2416"]],[4,5,["H5315"]],[5,6,["H834"]],[6,8,["H854"]],[8,12,["H5775"]],[12,15,["H929"]],[15,18,["H3605"]],[18,19,["H2416"]],[19,22,["H776"]],[22,23,["H854"]],[23,26,["H4480","H3605"]],[26,29,["H3318"]],[29,32,["H8392"]],[32,34,["H3605"]],[34,35,["H2416"]],[35,38,["H776"]]]},{"k":216,"v":[[0,4,["H6965","(H853)"]],[4,6,["H1285"]],[6,7,["H854"]],[7,9,["H3808"]],[9,11,["H3605"]],[11,12,["H1320"]],[12,15,["H3772"]],[15,17,["H5750"]],[17,20,["H4480","H4325"]],[20,23,["H3999"]],[23,24,["H3808"]],[24,28,["H5750"]],[28,29,["H1961"]],[29,31,["H3999"]],[31,33,["H7843"]],[33,35,["H776"]]]},{"k":217,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H2063"]],[4,7,["H226"]],[7,10,["H1285"]],[10,11,["H834"]],[11,12,["H589"]],[12,13,["H5414"]],[13,14,["H996"]],[14,19,["H3605"]],[19,20,["H2416"]],[20,21,["H5315"]],[21,22,["H834"]],[22,24,["H854"]],[24,27,["H5769"]],[27,28,["H1755"]]]},{"k":218,"v":[[0,3,["H5414","(H853)"]],[3,5,["H7198"]],[5,8,["H6051"]],[8,12,["H1961"]],[12,15,["H226"]],[15,18,["H1285"]],[18,19,["H996"]],[19,23,["H776"]]]},{"k":219,"v":[[0,6,["H1961"]],[6,9,["H6049"]],[9,11,["H6051"]],[11,12,["H5921"]],[12,14,["H776"]],[14,17,["H7198"]],[17,20,["H7200"]],[20,23,["H6051"]]]},{"k":220,"v":[[0,4,["H2142","(H853)"]],[4,6,["H1285"]],[6,7,["H834"]],[7,9,["H996"]],[9,14,["H3605"]],[14,15,["H2416"]],[15,16,["H5315"]],[16,18,["H3605"]],[18,19,["H1320"]],[19,22,["H4325"]],[22,24,["H3808"]],[24,25,["H5750"]],[25,26,["H1961"]],[26,28,["H3999"]],[28,30,["H7843"]],[30,31,["H3605"]],[31,32,["H1320"]]]},{"k":221,"v":[[0,3,["H7198"]],[3,5,["H1961"]],[5,8,["H6051"]],[8,13,["H7200"]],[13,18,["H2142"]],[18,20,["H5769"]],[20,21,["H1285"]],[21,22,["H996"]],[22,23,["H430"]],[23,25,["H3605"]],[25,26,["H2416"]],[26,27,["H5315"]],[27,29,["H3605"]],[29,30,["H1320"]],[30,31,["H834"]],[31,33,["H5921"]],[33,35,["H776"]]]},{"k":222,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H5146"]],[5,6,["H2063"]],[6,9,["H226"]],[9,12,["H1285"]],[12,13,["H834"]],[13,16,["H6965"]],[16,17,["H996"]],[17,20,["H3605"]],[20,21,["H1320"]],[21,22,["H834"]],[22,24,["H5921"]],[24,26,["H776"]]]},{"k":223,"v":[[0,3,["H1121"]],[3,5,["H5146"]],[5,8,["H3318"]],[8,9,["H4480"]],[9,11,["H8392"]],[11,12,["H1961"]],[12,13,["H8035"]],[13,15,["H2526"]],[15,17,["H3315"]],[17,19,["H2526"]],[19,22,["H1"]],[22,24,["H3667"]]]},{"k":224,"v":[[0,1,["H428"]],[1,4,["H7969"]],[4,5,["H1121"]],[5,7,["H5146"]],[7,10,["H4480","H428"]],[10,13,["H3605"]],[13,14,["H776"]],[14,15,["H5310"]]]},{"k":225,"v":[[0,2,["H5146"]],[2,3,["H2490"]],[3,7,["H376","H127"]],[7,10,["H5193"]],[10,12,["H3754"]]]},{"k":226,"v":[[0,3,["H8354"]],[3,4,["H4480"]],[4,6,["H3196"]],[6,9,["H7937"]],[9,13,["H1540"]],[13,14,["H8432"]],[14,16,["H168"]]]},{"k":227,"v":[[0,2,["H2526"]],[2,4,["H1"]],[4,6,["H3667"]],[6,7,["H7200","(H853)"]],[7,9,["H6172"]],[9,12,["H1"]],[12,14,["H5046"]],[14,16,["H8147"]],[16,17,["H251"]],[17,18,["H2351"]]]},{"k":228,"v":[[0,2,["H8035"]],[2,4,["H3315"]],[4,5,["H3947","(H853)"]],[5,7,["H8071"]],[7,9,["H7760"]],[9,11,["H5921"]],[11,12,["H8147"]],[12,14,["H7926"]],[14,16,["H1980"]],[16,17,["H322"]],[17,19,["H3680","(H853)"]],[19,21,["H6172"]],[21,24,["H1"]],[24,27,["H6440"]],[27,29,["H322"]],[29,32,["H7200"]],[32,33,["H3808"]],[33,35,["H1"]],[35,36,["H6172"]]]},{"k":229,"v":[[0,2,["H5146"]],[2,3,["H3364"]],[3,6,["H4480","H3196"]],[6,8,["H3045","(H853)"]],[8,9,["H834"]],[9,11,["H6996"]],[11,12,["H1121"]],[12,14,["H6213"]],[14,16,[]]]},{"k":230,"v":[[0,3,["H559"]],[3,4,["H779"]],[4,6,["H3667"]],[6,8,["H5650"]],[8,10,["H5650"]],[10,13,["H1961"]],[13,16,["H251"]]]},{"k":231,"v":[[0,3,["H559"]],[3,4,["H1288"]],[4,7,["H3068"]],[7,8,["H430"]],[8,10,["H8035"]],[10,12,["H3667"]],[12,14,["H1961"]],[14,16,["H5650"]]]},{"k":232,"v":[[0,1,["H430"]],[1,3,["H6601"]],[3,4,["H3315"]],[4,8,["H7931"]],[8,11,["H168"]],[11,13,["H8035"]],[13,15,["H3667"]],[15,17,["H1961"]],[17,19,["H5650"]]]},{"k":233,"v":[[0,2,["H5146"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3999"]],[6,7,["H7969"]],[7,8,["H3967"]],[8,10,["H2572"]],[10,11,["H8141"]]]},{"k":234,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,6,["H5146"]],[6,7,["H1961"]],[7,8,["H8672"]],[8,9,["H3967"]],[9,11,["H2572"]],[11,12,["H8141"]],[12,15,["H4191"]]]},{"k":235,"v":[[0,2,["H428"]],[2,5,["H8435"]],[5,8,["H1121"]],[8,10,["H5146"]],[10,11,["H8035"]],[11,12,["H2526"]],[12,14,["H3315"]],[14,19,["H1121"]],[19,20,["H3205"]],[20,21,["H310"]],[21,23,["H3999"]]]},{"k":236,"v":[[0,2,["H1121"]],[2,4,["H3315"]],[4,5,["H1586"]],[5,7,["H4031"]],[7,9,["H4074"]],[9,11,["H3120"]],[11,13,["H8422"]],[13,15,["H4902"]],[15,17,["H8494"]]]},{"k":237,"v":[[0,3,["H1121"]],[3,5,["H1586"]],[5,6,["H813"]],[6,8,["H7384"]],[8,10,["H8425"]]]},{"k":238,"v":[[0,3,["H1121"]],[3,5,["H3120"]],[5,6,["H473"]],[6,8,["H8659"]],[8,9,["H3794"]],[9,11,["H1721"]]]},{"k":239,"v":[[0,2,["H4480","H428"]],[2,5,["H339"]],[5,8,["H1471"]],[8,9,["H6504"]],[9,12,["H776"]],[12,14,["H376"]],[14,17,["H3956"]],[17,20,["H4940"]],[20,23,["H1471"]]]},{"k":240,"v":[[0,3,["H1121"]],[3,5,["H2526"]],[5,6,["H3568"]],[6,8,["H4714"]],[8,10,["H6316"]],[10,12,["H3667"]]]},{"k":241,"v":[[0,3,["H1121"]],[3,5,["H3568"]],[5,6,["H5434"]],[6,8,["H2341"]],[8,10,["H5454"]],[10,12,["H7484"]],[12,14,["H5455"]],[14,17,["H1121"]],[17,19,["H7484"]],[19,20,["H7614"]],[20,22,["H1719"]]]},{"k":242,"v":[[0,2,["H3568"]],[2,3,["H3205","(H853)"]],[3,4,["H5248"]],[4,5,["H1931"]],[5,6,["H2490"]],[6,8,["H1961"]],[8,11,["H1368"]],[11,14,["H776"]]]},{"k":243,"v":[[0,1,["H1931"]],[1,2,["H1961"]],[2,4,["H1368"]],[4,5,["H6718"]],[5,6,["H6440"]],[6,8,["H3068"]],[8,9,["H5921","H3651"]],[9,12,["H559"]],[12,15,["H5248"]],[15,17,["H1368"]],[17,18,["H6718"]],[18,19,["H6440"]],[19,21,["H3068"]]]},{"k":244,"v":[[0,3,["H7225"]],[3,6,["H4467"]],[6,7,["H1961"]],[7,8,["H894"]],[8,10,["H751"]],[10,12,["H390"]],[12,14,["H3641"]],[14,17,["H776"]],[17,19,["H8152"]]]},{"k":245,"v":[[0,2,["H4480"]],[2,3,["H1931"]],[3,4,["H776"]],[4,6,["H3318"]],[6,7,["H804"]],[7,9,["H1129","(H853)"]],[9,10,["H5210"]],[10,13,["H5892"]],[13,14,["H7344"]],[14,16,["H3625"]]]},{"k":246,"v":[[0,2,["H7449"]],[2,3,["H996"]],[3,4,["H5210"]],[4,6,["H3625"]],[6,8,["H1931"]],[8,11,["H1419"]],[11,12,["H5892"]]]},{"k":247,"v":[[0,2,["H4714"]],[2,3,["H3205","(H853)"]],[3,4,["H3866"]],[4,6,["H6047"]],[6,8,["H3853"]],[8,10,["H5320"]]]},{"k":248,"v":[[0,2,["H6625"]],[2,4,["H3695"]],[4,7,["H4480","H8033","H834"]],[7,8,["H3318"]],[8,9,["H6430"]],[9,11,["H3732"]]]},{"k":249,"v":[[0,2,["H3667"]],[2,3,["H3205","(H853)"]],[3,4,["H6721"]],[4,6,["H1060"]],[6,8,["H2845"]]]},{"k":250,"v":[[0,3,["H2983"]],[3,6,["H567"]],[6,9,["H1622"]]]},{"k":251,"v":[[0,3,["H2340"]],[3,6,["H6208"]],[6,9,["H5513"]]]},{"k":252,"v":[[0,3,["H721"]],[3,6,["H6786"]],[6,9,["H2577"]],[9,11,["H310"]],[11,14,["H4940"]],[14,17,["H3669"]],[17,19,["H6327"]]]},{"k":253,"v":[[0,3,["H1366"]],[3,6,["H3669"]],[6,7,["H1961"]],[7,9,["H4480","H6721"]],[9,12,["H935"]],[12,14,["H1642"]],[14,15,["H5704"]],[15,16,["H5804"]],[16,19,["H935"]],[19,21,["H5467"]],[21,23,["H6017"]],[23,25,["H126"]],[25,27,["H6636"]],[27,29,["H5704"]],[29,30,["H3962"]]]},{"k":254,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H2526"]],[6,9,["H4940"]],[9,12,["H3956"]],[12,15,["H776"]],[15,19,["H1471"]]]},{"k":255,"v":[[0,2,["H8035"]],[2,5,["H1"]],[5,7,["H3605"]],[7,9,["H1121"]],[9,11,["H5677"]],[11,13,["H251"]],[13,15,["H3315"]],[15,17,["H1419"]],[17,18,["H1571"]],[18,20,["H1931"]],[20,23,["H3205"]]]},{"k":256,"v":[[0,2,["H1121"]],[2,4,["H8035"]],[4,5,["H5867"]],[5,7,["H804"]],[7,9,["H775"]],[9,11,["H3865"]],[11,13,["H758"]]]},{"k":257,"v":[[0,3,["H1121"]],[3,5,["H758"]],[5,6,["H5780"]],[6,8,["H2343"]],[8,10,["H1666"]],[10,12,["H4851"]]]},{"k":258,"v":[[0,2,["H775"]],[2,3,["H3205","(H853)"]],[3,4,["H7974"]],[4,6,["H7974"]],[6,7,["H3205","(H853)"]],[7,8,["H5677"]]]},{"k":259,"v":[[0,3,["H5677"]],[3,5,["H3205"]],[5,6,["H8147"]],[6,7,["H1121"]],[7,9,["H8034"]],[9,11,["H259"]],[11,13,["H6389"]],[13,14,["H3588"]],[14,17,["H3117"]],[17,20,["H776"]],[20,21,["H6385"]],[21,24,["H251"]],[24,25,["H8034"]],[25,27,["H3355"]]]},{"k":260,"v":[[0,2,["H3355"]],[2,3,["H3205","(H853)"]],[3,4,["H486"]],[4,6,["H8026"]],[6,8,["H2700"]],[8,10,["H3392"]]]},{"k":261,"v":[[0,2,["H1913"]],[2,4,["H187"]],[4,6,["H1853"]]]},{"k":262,"v":[[0,2,["H5745"]],[2,4,["H39"]],[4,6,["H7614"]]]},{"k":263,"v":[[0,2,["H211"]],[2,4,["H2341"]],[4,6,["H3103"]],[6,7,["H3605"]],[7,8,["H428"]],[8,11,["H1121"]],[11,13,["H3355"]]]},{"k":264,"v":[[0,3,["H4186"]],[3,4,["H1961"]],[4,6,["H4480","H4852"]],[6,9,["H935"]],[9,11,["H5611"]],[11,13,["H2022"]],[13,16,["H6924"]]]},{"k":265,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H8035"]],[6,9,["H4940"]],[9,12,["H3956"]],[12,15,["H776"]],[15,18,["H1471"]]]},{"k":266,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,7,["H1121"]],[7,9,["H5146"]],[9,12,["H8435"]],[12,15,["H1471"]],[15,18,["H4480","H428"]],[18,21,["H1471"]],[21,22,["H6504"]],[22,25,["H776"]],[25,26,["H310"]],[26,28,["H3999"]]]},{"k":267,"v":[[0,3,["H3605"]],[3,4,["H776"]],[4,5,["H1961"]],[5,7,["H259"]],[7,8,["H8193"]],[8,11,["H259"]],[11,12,["H1697"]]]},{"k":268,"v":[[0,5,["H1961"]],[5,8,["H5265"]],[8,11,["H4480","H6924"]],[11,14,["H4672"]],[14,16,["H1237"]],[16,19,["H776"]],[19,21,["H8152"]],[21,24,["H3427"]],[24,25,["H8033"]]]},{"k":269,"v":[[0,3,["H559"]],[3,4,["H376"]],[4,5,["H413"]],[5,6,["H7453"]],[6,8,["H3051"]],[8,11,["H3835"]],[11,12,["H3843"]],[12,14,["H8313"]],[14,16,["H8316"]],[16,19,["H1961"]],[19,20,["H3843"]],[20,22,["H68"]],[22,24,["H2564"]],[24,25,["H1961"]],[25,28,["H2563"]]]},{"k":270,"v":[[0,3,["H559"]],[3,5,["H3051"]],[5,8,["H1129"]],[8,11,["H5892"]],[11,14,["H4026"]],[14,16,["H7218"]],[16,20,["H8064"]],[20,24,["H6213"]],[24,27,["H8034"]],[27,28,["H6435"]],[28,32,["H6327"]],[32,33,["H5921"]],[33,35,["H6440"]],[35,38,["H3605"]],[38,39,["H776"]]]},{"k":271,"v":[[0,3,["H3068"]],[3,5,["H3381"]],[5,7,["H7200","(H853)"]],[7,9,["H5892"]],[9,12,["H4026"]],[12,13,["H834"]],[13,15,["H1121"]],[15,17,["H120"]],[17,18,["H1129"]]]},{"k":272,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H2005"]],[5,7,["H5971"]],[7,9,["H259"]],[9,13,["H3605"]],[13,14,["H259"]],[14,15,["H8193"]],[15,17,["H2088"]],[17,19,["H2490"]],[19,21,["H6213"]],[21,23,["H6258"]],[23,24,["H3808","H3605"]],[24,27,["H1219"]],[27,28,["H4480"]],[28,30,["H834"]],[30,33,["H2161"]],[33,35,["H6213"]]]},{"k":273,"v":[[0,2,["H3051"]],[2,6,["H3381"]],[6,8,["H8033"]],[8,9,["H1101"]],[9,11,["H8193"]],[11,12,["H834"]],[12,15,["H3808"]],[15,16,["H8085"]],[16,17,["H376"]],[17,18,["H7453"]],[18,19,["H8193"]]]},{"k":274,"v":[[0,3,["H3068"]],[3,6,["H6327","(H853)"]],[6,8,["H4480","H8033"]],[8,9,["H5921"]],[9,11,["H6440"]],[11,13,["H3605"]],[13,15,["H776"]],[15,19,["H2308"]],[19,21,["H1129"]],[21,23,["H5892"]]]},{"k":275,"v":[[0,1,["H5921","H3651"]],[1,4,["H8034"]],[4,7,["H7121"]],[7,8,["H894"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,13,["H8033"]],[13,14,["H1101"]],[14,16,["H8193"]],[16,18,["H3605"]],[18,20,["H776"]],[20,23,["H4480","H8033"]],[23,26,["H3068"]],[26,29,["H6327"]],[29,30,["H5921"]],[30,32,["H6440"]],[32,34,["H3605"]],[34,36,["H776"]]]},{"k":276,"v":[[0,1,["H428"]],[1,4,["H8435"]],[4,6,["H8035"]],[6,7,["H8035"]],[7,10,["H3967"]],[10,11,["H8141"]],[11,12,["H1121"]],[12,14,["H3205","(H853)"]],[14,15,["H775"]],[15,17,["H8141"]],[17,18,["H310"]],[18,20,["H3999"]]]},{"k":277,"v":[[0,2,["H8035"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H775"]],[7,8,["H2568"]],[8,9,["H3967"]],[9,10,["H8141"]],[10,12,["H3205"]],[12,13,["H1121"]],[13,15,["H1323"]]]},{"k":278,"v":[[0,2,["H775"]],[2,3,["H2425"]],[3,4,["H2568"]],[4,6,["H7970"]],[6,7,["H8141"]],[7,9,["H3205","(H853)"]],[9,10,["H7974"]]]},{"k":279,"v":[[0,2,["H775"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H7974"]],[7,8,["H702"]],[8,9,["H3967"]],[9,11,["H7969"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":280,"v":[[0,2,["H7974"]],[2,3,["H2425"]],[3,4,["H7970"]],[4,5,["H8141"]],[5,7,["H3205","(H853)"]],[7,8,["H5677"]]]},{"k":281,"v":[[0,2,["H7974"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H5677"]],[7,8,["H702"]],[8,9,["H3967"]],[9,11,["H7969"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":282,"v":[[0,2,["H5677"]],[2,3,["H2421"]],[3,4,["H702"]],[4,6,["H7970"]],[6,7,["H8141"]],[7,9,["H3205","(H853)"]],[9,10,["H6389"]]]},{"k":283,"v":[[0,2,["H5677"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H6389"]],[7,8,["H702"]],[8,9,["H3967"]],[9,11,["H7970"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":284,"v":[[0,2,["H6389"]],[2,3,["H2421"]],[3,4,["H7970"]],[4,5,["H8141"]],[5,7,["H3205","(H853)"]],[7,8,["H7466"]]]},{"k":285,"v":[[0,2,["H6389"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H7466"]],[7,9,["H3967"]],[9,11,["H8672"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":286,"v":[[0,2,["H7466"]],[2,3,["H2421"]],[3,4,["H8147"]],[4,6,["H7970"]],[6,7,["H8141"]],[7,9,["H3205","(H853)"]],[9,10,["H8286"]]]},{"k":287,"v":[[0,2,["H7466"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H8286"]],[7,9,["H3967"]],[9,11,["H7651"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":288,"v":[[0,2,["H8286"]],[2,3,["H2421"]],[3,4,["H7970"]],[4,5,["H8141"]],[5,7,["H3205","(H853)"]],[7,8,["H5152"]]]},{"k":289,"v":[[0,2,["H8286"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H5152"]],[7,9,["H3967"]],[9,10,["H8141"]],[10,12,["H3205"]],[12,13,["H1121"]],[13,15,["H1323"]]]},{"k":290,"v":[[0,2,["H5152"]],[2,3,["H2421"]],[3,4,["H8672"]],[4,6,["H6242"]],[6,7,["H8141"]],[7,9,["H3205","(H853)"]],[9,10,["H8646"]]]},{"k":291,"v":[[0,2,["H5152"]],[2,3,["H2421"]],[3,4,["H310"]],[4,6,["H3205","(H853)"]],[6,7,["H8646"]],[7,9,["H3967"]],[9,11,["H8672","H6240"]],[11,12,["H8141"]],[12,14,["H3205"]],[14,15,["H1121"]],[15,17,["H1323"]]]},{"k":292,"v":[[0,2,["H8646"]],[2,3,["H2421"]],[3,4,["H7657"]],[4,5,["H8141"]],[5,7,["H3205","(H853)"]],[7,8,["H87","(H853)"]],[8,9,["H5152"]],[9,11,["H2039"]]]},{"k":293,"v":[[0,2,["H428"]],[2,5,["H8435"]],[5,7,["H8646"]],[7,8,["H8646"]],[8,9,["H3205","(H853)"]],[9,10,["H87","(H853)"]],[10,11,["H5152"]],[11,13,["H2039"]],[13,15,["H2039"]],[15,16,["H3205","(H853)"]],[16,17,["H3876"]]]},{"k":294,"v":[[0,2,["H2039"]],[2,3,["H4191"]],[3,4,["H5921","H6440"]],[4,6,["H1"]],[6,7,["H8646"]],[7,10,["H776"]],[10,13,["H4138"]],[13,15,["H218"]],[15,18,["H3778"]]]},{"k":295,"v":[[0,2,["H87"]],[2,4,["H5152"]],[4,5,["H3947"]],[5,7,["H802"]],[7,9,["H8034"]],[9,11,["H87"]],[11,12,["H802"]],[12,14,["H8297"]],[14,17,["H8034"]],[17,19,["H5152"]],[19,20,["H802"]],[20,21,["H4435"]],[21,23,["H1323"]],[23,25,["H2039"]],[25,27,["H1"]],[27,29,["H4435"]],[29,32,["H1"]],[32,34,["H3252"]]]},{"k":296,"v":[[0,2,["H8297"]],[2,3,["H1961"]],[3,4,["H6135"]],[4,7,["H369"]],[7,8,["H2056"]]]},{"k":297,"v":[[0,2,["H8646"]],[2,3,["H3947","(H853)"]],[3,4,["H87"]],[4,6,["H1121"]],[6,8,["H3876"]],[8,10,["H1121"]],[10,12,["H2039"]],[12,14,["H1121"]],[14,15,["H1121"]],[15,17,["H8297"]],[17,21,["H3618"]],[21,23,["H1121"]],[23,24,["H87"]],[24,25,["H802"]],[25,29,["H3318"]],[29,30,["H854"]],[30,33,["H4480","H218"]],[33,36,["H3778"]],[36,38,["H1980"]],[38,41,["H776"]],[41,43,["H3667"]],[43,46,["H935"]],[46,47,["H5704"]],[47,48,["H2771"]],[48,50,["H3427"]],[50,51,["H8033"]]]},{"k":298,"v":[[0,3,["H3117"]],[3,5,["H8646"]],[5,6,["H1961"]],[6,8,["H3967"]],[8,10,["H2568"]],[10,11,["H8141"]],[11,13,["H8646"]],[13,14,["H4191"]],[14,16,["H2771"]]]},{"k":299,"v":[[0,3,["H3068"]],[3,5,["H559"]],[5,6,["H413"]],[6,7,["H87"]],[7,10,["H1980"]],[10,13,["H4480","H776"]],[13,17,["H4480","H4138"]],[17,22,["H4480","H1004","H1"]],[22,23,["H413"]],[23,25,["H776"]],[25,26,["H834"]],[26,29,["H7200"]],[29,30,[]]]},{"k":300,"v":[[0,4,["H6213"]],[4,8,["H1419"]],[8,9,["H1471"]],[9,13,["H1288"]],[13,19,["H1431","H8034"]],[19,23,["H1961"]],[23,25,["H1293"]]]},{"k":301,"v":[[0,4,["H1288"]],[4,7,["H1288"]],[7,10,["H779"]],[10,13,["H7043"]],[13,19,["H3605"]],[19,20,["H4940"]],[20,23,["H127"]],[23,25,["H1288"]]]},{"k":302,"v":[[0,2,["H87"]],[2,3,["H1980"]],[3,4,["H834"]],[4,6,["H3068"]],[6,8,["H1696"]],[8,9,["H413"]],[9,12,["H3876"]],[12,13,["H1980"]],[13,14,["H854"]],[14,17,["H87"]],[17,19,["H7657"]],[19,21,["H2568"]],[21,22,["H8141"]],[22,23,["H1121"]],[23,26,["H3318"]],[26,29,["H4480","H2771"]]]},{"k":303,"v":[[0,2,["H87"]],[2,3,["H3947","(H853)"]],[3,4,["H8297"]],[4,6,["H802"]],[6,8,["H3876"]],[8,10,["H251"]],[10,11,["H1121"]],[11,13,["H3605"]],[13,15,["H7399"]],[15,16,["H834"]],[16,19,["H7408"]],[19,22,["H5315"]],[22,23,["H834"]],[23,26,["H6213"]],[26,28,["H2771"]],[28,32,["H3318"]],[32,34,["H1980"]],[34,37,["H776"]],[37,39,["H3667"]],[39,43,["H776"]],[43,45,["H3667"]],[45,47,["H935"]]]},{"k":304,"v":[[0,2,["H87"]],[2,4,["H5674"]],[4,6,["H776"]],[6,7,["H5704"]],[7,9,["H4725"]],[9,11,["H7927"]],[11,12,["H5704"]],[12,14,["H436"]],[14,16,["H4176"]],[16,19,["H3669"]],[19,21,["H227"]],[21,24,["H776"]]]},{"k":305,"v":[[0,3,["H3068"]],[3,4,["H7200"]],[4,5,["H413"]],[5,6,["H87"]],[6,8,["H559"]],[8,11,["H2233"]],[11,14,["H5414","(H853)"]],[14,15,["H2063"]],[15,16,["H776"]],[16,18,["H8033"]],[18,19,["H1129"]],[19,22,["H4196"]],[22,25,["H3068"]],[25,27,["H7200"]],[27,28,["H413"]],[28,29,[]]]},{"k":306,"v":[[0,3,["H6275"]],[3,5,["H4480","H8033"]],[5,8,["H2022"]],[8,11,["H4480","H6924"]],[11,13,["H1008"]],[13,15,["H5186"]],[15,17,["H168"]],[17,19,["H1008"]],[19,22,["H4480","H3220"]],[22,24,["H5857"]],[24,27,["H4480","H6924"]],[27,29,["H8033"]],[29,31,["H1129"]],[31,33,["H4196"]],[33,36,["H3068"]],[36,38,["H7121"]],[38,41,["H8034"]],[41,44,["H3068"]]]},{"k":307,"v":[[0,2,["H87"]],[2,3,["H5265"]],[3,5,["H1980"]],[5,6,["H5265"]],[6,9,["H5045"]]]},{"k":308,"v":[[0,3,["H1961"]],[3,5,["H7458"]],[5,8,["H776"]],[8,10,["H87"]],[10,12,["H3381"]],[12,14,["H4714"]],[14,16,["H1481"]],[16,17,["H8033"]],[17,18,["H3588"]],[18,20,["H7458"]],[20,22,["H3515"]],[22,25,["H776"]]]},{"k":309,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,10,["H7126"]],[10,12,["H935"]],[12,14,["H4714"]],[14,17,["H559"]],[17,18,["H413"]],[18,19,["H8297"]],[19,21,["H802"]],[21,22,["H2009"]],[22,23,["H4994"]],[23,25,["H3045"]],[25,26,["H3588"]],[26,27,["H859"]],[27,30,["H3303"]],[30,31,["H802"]],[31,34,["H4758"]]]},{"k":310,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,9,["H4713"]],[9,11,["H7200"]],[11,16,["H559"]],[16,17,["H2063"]],[17,20,["H802"]],[20,24,["H2026"]],[24,31,["H2421"]]]},{"k":311,"v":[[0,1,["H559"]],[1,4,["H4994"]],[4,5,["H859"]],[5,8,["H269"]],[8,9,["H4616"]],[9,13,["H3190"]],[13,18,["H5668"]],[18,21,["H5315"]],[21,23,["H2421"]],[23,25,["H1558"]],[25,26,[]]]},{"k":312,"v":[[0,5,["H1961"]],[5,8,["H87"]],[8,10,["H935"]],[10,12,["H4714"]],[12,14,["H4713"]],[14,15,["H7200","(H853)"]],[15,17,["H802"]],[17,18,["H3588"]],[18,19,["H1931"]],[19,21,["H3966"]],[21,22,["H3303"]]]},{"k":313,"v":[[0,2,["H8269"]],[2,5,["H6547"]],[5,6,["H7200"]],[6,9,["H1984"]],[9,11,["H413"]],[11,12,["H6547"]],[12,15,["H802"]],[15,17,["H3947"]],[17,19,["H6547"]],[19,20,["H1004"]]]},{"k":314,"v":[[0,5,["H3190","H87"]],[5,8,["H5668"]],[8,11,["H1961"]],[11,12,["H6629"]],[12,14,["H1241"]],[14,17,["H2543"]],[17,19,["H5650"]],[19,21,["H8198"]],[21,24,["H860"]],[24,26,["H1581"]]]},{"k":315,"v":[[0,3,["H3068"]],[3,4,["H5060","(H853)"]],[4,5,["H6547"]],[5,8,["H1004"]],[8,10,["H1419"]],[10,11,["H5061"]],[11,13,["H5921","H1697"]],[13,14,["H8297"]],[14,15,["H87"]],[15,16,["H802"]]]},{"k":316,"v":[[0,2,["H6547"]],[2,3,["H7121"]],[3,4,["H87"]],[4,6,["H559"]],[6,7,["H4100"]],[7,9,["H2063"]],[9,13,["H6213"]],[13,16,["H4100"]],[16,19,["H3808"]],[19,20,["H5046"]],[20,22,["H3588"]],[22,23,["H1931"]],[23,26,["H802"]]]},{"k":317,"v":[[0,1,["H4100"]],[1,2,["H559"]],[2,4,["H1931"]],[4,7,["H269"]],[7,12,["H3947"]],[12,17,["H802"]],[17,19,["H6258"]],[19,20,["H2009"]],[20,22,["H802"]],[22,23,["H3947"]],[23,28,["H1980"]]]},{"k":318,"v":[[0,2,["H6547"]],[2,3,["H6680"]],[3,5,["H376"]],[5,6,["H5921"]],[6,12,["H7971","(H853)"]],[12,15,["H802"]],[15,17,["H3605"]],[17,18,["H834"]],[18,20,[]]]},{"k":319,"v":[[0,2,["H87"]],[2,4,["H5927"]],[4,7,["H4480","H4714"]],[7,8,["H1931"]],[8,11,["H802"]],[11,13,["H3605"]],[13,14,["H834"]],[14,18,["H3876"]],[18,19,["H5973"]],[19,23,["H5045"]]]},{"k":320,"v":[[0,2,["H87"]],[2,4,["H3966"]],[4,5,["H3515"]],[5,7,["H4735"]],[7,9,["H3701"]],[9,12,["H2091"]]]},{"k":321,"v":[[0,3,["H1980"]],[3,6,["H4550"]],[6,9,["H4480","H5045"]],[9,11,["H5704"]],[11,12,["H1008"]],[12,13,["H5704"]],[13,15,["H4725"]],[15,16,["H834","H8033"]],[16,18,["H168"]],[18,20,["H1961"]],[20,23,["H8462"]],[23,24,["H996"]],[24,25,["H1008"]],[25,27,["H5857"]]]},{"k":322,"v":[[0,1,["H413"]],[1,3,["H4725"]],[3,6,["H4196"]],[6,7,["H834"]],[7,10,["H6213"]],[10,11,["H8033"]],[11,14,["H7223"]],[14,16,["H8033"]],[16,17,["H87"]],[17,18,["H7121"]],[18,21,["H8034"]],[21,24,["H3068"]]]},{"k":323,"v":[[0,2,["H3876"]],[2,3,["H1571"]],[3,5,["H1980"]],[5,6,["H854"]],[6,7,["H87"]],[7,8,["H1961"]],[8,9,["H6629"]],[9,11,["H1241"]],[11,13,["H168"]]]},{"k":324,"v":[[0,3,["H776"]],[3,5,["H3808"]],[5,8,["H5375"]],[8,13,["H3427"]],[13,14,["H3162"]],[14,15,["H3588"]],[15,17,["H7399"]],[17,18,["H1961"]],[18,19,["H7227"]],[19,23,["H3201"]],[23,24,["H3808"]],[24,25,["H3427"]],[25,26,["H3162"]]]},{"k":325,"v":[[0,3,["H1961"]],[3,5,["H7379"]],[5,6,["H996"]],[6,8,["H7462"]],[8,10,["H87"]],[10,11,["H4735"]],[11,14,["H7462"]],[14,16,["H3876"]],[16,17,["H4735"]],[17,20,["H3669"]],[20,23,["H6522"]],[23,24,["H3427"]],[24,25,["H227"]],[25,28,["H776"]]]},{"k":326,"v":[[0,2,["H87"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3876"]],[5,8,["H1961"]],[8,9,["H408"]],[9,10,["H4808"]],[10,13,["H4994"]],[13,14,["H996"]],[14,19,["H996"]],[19,21,["H7462"]],[21,24,["H7462"]],[24,25,["H3588"]],[25,26,["H587"]],[26,28,["H251"]]]},{"k":327,"v":[[0,2,["H3808"]],[2,4,["H3605"]],[4,5,["H776"]],[5,6,["H6440"]],[6,9,["H6504"]],[9,12,["H4994"]],[12,13,["H4480","H5921"]],[13,15,["H518"]],[15,21,["H8040"]],[21,28,["H3231"]],[28,30,["H518"]],[30,36,["H3225"]],[36,43,["H8041"]]]},{"k":328,"v":[[0,2,["H3876"]],[2,4,["H5375","(H853)"]],[4,6,["H5869"]],[6,8,["H7200","(H853)"]],[8,9,["H3605"]],[9,11,["H3603"]],[11,13,["H3383"]],[13,14,["H3588"]],[14,18,["H4945"]],[18,20,["H3605"]],[20,21,["H6440"]],[21,23,["H3068"]],[23,24,["H7843","(H853)"]],[24,25,["H5467"]],[25,27,["H6017"]],[27,31,["H1588"]],[31,34,["H3068"]],[34,37,["H776"]],[37,39,["H4714"]],[39,42,["H935"]],[42,44,["H6820"]]]},{"k":329,"v":[[0,2,["H3876"]],[2,3,["H977"]],[3,4,["(H853)"]],[4,5,["H3605"]],[5,7,["H3603"]],[7,9,["H3383"]],[9,11,["H3876"]],[11,12,["H5265"]],[12,13,["H4480","H6924"]],[13,17,["H6504"]],[17,19,["H376"]],[19,20,["H4480","H5921"]],[20,22,["H251"]]]},{"k":330,"v":[[0,1,["H87"]],[1,2,["H3427"]],[2,5,["H776"]],[5,7,["H3667"]],[7,9,["H3876"]],[9,10,["H3427"]],[10,13,["H5892"]],[13,16,["H3603"]],[16,20,["H167"]],[20,21,["H5704"]],[21,22,["H5467"]]]},{"k":331,"v":[[0,3,["H376"]],[3,5,["H5467"]],[5,7,["H7451"]],[7,9,["H2400"]],[9,12,["H3068"]],[12,13,["H3966"]]]},{"k":332,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H87"]],[6,8,["H310"]],[8,9,["H3876"]],[9,11,["H6504"]],[11,12,["H4480","H5973"]],[12,15,["H5375"]],[15,16,["H4994"]],[16,18,["H5869"]],[18,20,["H7200"]],[20,21,["H4480"]],[21,23,["H4725"]],[23,24,["H834","H8033"]],[24,25,["H859"]],[25,27,["H6828"]],[27,29,["H5045"]],[29,31,["H6924"]],[31,33,["H3220"]]]},{"k":333,"v":[[0,1,["H3588","(H853)"]],[1,2,["H3605"]],[2,4,["H776"]],[4,5,["H834"]],[5,6,["H859"]],[6,7,["H7200"]],[7,12,["H5414"]],[12,17,["H2233"]],[17,19,["H5704","H5769"]]]},{"k":334,"v":[[0,4,["H7760","(H853)"]],[4,6,["H2233"]],[6,9,["H6083"]],[9,12,["H776"]],[12,14,["H834"]],[14,15,["H518"]],[15,17,["H376"]],[17,18,["H3201"]],[18,19,["H4487","(H853)"]],[19,21,["H6083"]],[21,24,["H776"]],[24,28,["H2233"]],[28,29,["H1571"]],[29,31,["H4487"]]]},{"k":335,"v":[[0,1,["H6965"]],[1,2,["H1980"]],[2,5,["H776"]],[5,8,["H753"]],[8,14,["H7341"]],[14,17,["H3588"]],[17,20,["H5414"]],[20,23,[]]]},{"k":336,"v":[[0,2,["H87"]],[2,5,["H167"]],[5,7,["H935"]],[7,9,["H3427"]],[9,12,["H436"]],[12,14,["H4471"]],[14,15,["H834"]],[15,18,["H2275"]],[18,20,["H1129"]],[20,21,["H8033"]],[21,23,["H4196"]],[23,26,["H3068"]]]},{"k":337,"v":[[0,5,["H1961"]],[5,8,["H3117"]],[8,10,["H569"]],[10,11,["H4428"]],[11,13,["H8152"]],[13,14,["H746"]],[14,15,["H4428"]],[15,17,["H495"]],[17,18,["H3540"]],[18,19,["H4428"]],[19,21,["H5867"]],[21,23,["H8413"]],[23,24,["H4428"]],[24,26,["H1471"]]]},{"k":338,"v":[[0,3,["H6213"]],[3,4,["H4421"]],[4,5,["H854"]],[5,6,["H1298"]],[6,7,["H4428"]],[7,9,["H5467"]],[9,11,["H854"]],[11,12,["H1306"]],[12,13,["H4428"]],[13,15,["H6017"]],[15,16,["H8134"]],[16,17,["H4428"]],[17,19,["H126"]],[19,21,["H8038"]],[21,22,["H4428"]],[22,24,["H6636"]],[24,27,["H4428"]],[27,29,["H1106"]],[29,30,["H1931"]],[30,32,["H6820"]]]},{"k":339,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,5,["H2266"]],[5,6,["H413"]],[6,8,["H6010"]],[8,10,["H7708"]],[10,11,["H1931"]],[11,14,["H4417"]],[14,15,["H3220"]]]},{"k":340,"v":[[0,1,["H8147","H6240"]],[1,2,["H8141"]],[2,4,["H5647","(H853)"]],[4,5,["H3540"]],[5,9,["H7969","H6240"]],[9,10,["H8141"]],[10,12,["H4775"]]]},{"k":341,"v":[[0,4,["H702","H6240"]],[4,5,["H8141"]],[5,6,["H935"]],[6,7,["H3540"]],[7,10,["H4428"]],[10,11,["H834"]],[11,13,["H854"]],[13,16,["H5221","(H853)"]],[16,18,["H7497"]],[18,21,["H6255"]],[21,24,["H2104"]],[24,26,["H1990"]],[26,29,["H368"]],[29,32,["H7741"]]]},{"k":342,"v":[[0,3,["H2752"]],[3,6,["H2042"]],[6,7,["H8165"]],[7,8,["H5704"]],[8,9,["H364"]],[9,10,["H834"]],[10,12,["H5921"]],[12,14,["H4057"]]]},{"k":343,"v":[[0,3,["H7725"]],[3,5,["H935"]],[5,6,["H413"]],[6,7,["H5880"]],[7,8,["H1931"]],[8,10,["H6946"]],[10,12,["H5221","(H853)"]],[12,13,["H3605"]],[13,15,["H7704"]],[15,18,["H6003"]],[18,20,["H1571","(H853)"]],[20,22,["H567"]],[22,24,["H3427"]],[24,26,["H2688"]]]},{"k":344,"v":[[0,4,["H3318"]],[4,6,["H4428"]],[6,8,["H5467"]],[8,11,["H4428"]],[11,13,["H6017"]],[13,16,["H4428"]],[16,18,["H126"]],[18,21,["H4428"]],[21,23,["H6636"]],[23,26,["H4428"]],[26,28,["H1106"]],[28,30,["H1931"]],[30,32,["H6820"]],[32,35,["H6186"]],[35,36,["H4421"]],[36,37,["H854"]],[37,41,["H6010"]],[41,43,["H7708"]]]},{"k":345,"v":[[0,1,["H854"]],[1,2,["H3540"]],[2,4,["H4428"]],[4,6,["H5867"]],[6,9,["H8413"]],[9,10,["H4428"]],[10,12,["H1471"]],[12,14,["H569"]],[14,15,["H4428"]],[15,17,["H8152"]],[17,19,["H746"]],[19,20,["H4428"]],[20,22,["H495"]],[22,23,["H702"]],[23,24,["H4428"]],[24,25,["H854"]],[25,26,["H2568"]]]},{"k":346,"v":[[0,3,["H6010"]],[3,5,["H7708"]],[5,9,["H875","H875","H2564"]],[9,12,["H4428"]],[12,14,["H5467"]],[14,16,["H6017"]],[16,17,["H5127"]],[17,19,["H5307"]],[19,20,["H8033"]],[20,24,["H7604"]],[24,25,["H5127"]],[25,28,["H2022"]]]},{"k":347,"v":[[0,3,["H3947","(H853)"]],[3,4,["H3605"]],[4,6,["H7399"]],[6,8,["H5467"]],[8,10,["H6017"]],[10,12,["H3605"]],[12,14,["H400"]],[14,18,["H1980"]]]},{"k":348,"v":[[0,3,["H3947","(H853)"]],[3,4,["H3876"]],[4,5,["H87"]],[5,6,["H251"]],[6,7,["H1121"]],[7,8,["H1931"]],[8,9,["H3427"]],[9,11,["H5467"]],[11,14,["H7399"]],[14,16,["H1980"]]]},{"k":349,"v":[[0,3,["H935"]],[3,7,["H6412"]],[7,9,["H5046"]],[9,10,["H87"]],[10,12,["H5680"]],[12,14,["H1931"]],[14,15,["H7931"]],[15,18,["H436"]],[18,20,["H4471"]],[20,22,["H567"]],[22,23,["H251"]],[23,25,["H812"]],[25,27,["H251"]],[27,29,["H6063"]],[29,31,["H1992"]],[31,33,["H1167","H1285"]],[33,35,["H87"]]]},{"k":350,"v":[[0,3,["H87"]],[3,4,["H8085"]],[4,5,["H3588"]],[5,7,["H251"]],[7,10,["H7617"]],[10,12,["H7324","(H853)"]],[12,14,["H2593"]],[14,16,["H3211"]],[16,20,["H1004"]],[20,21,["H7969"]],[21,22,["H3967"]],[22,24,["H8083","H6240"]],[24,26,["H7291"]],[26,28,["H5704"]],[28,29,["H1835"]]]},{"k":351,"v":[[0,4,["H2505"]],[4,5,["H5921"]],[5,7,["H1931"]],[7,10,["H5650"]],[10,12,["H3915"]],[12,14,["H5221"]],[14,17,["H7291"]],[17,19,["H5704"]],[19,20,["H2327"]],[20,21,["H834"]],[21,26,["H4480","H8040"]],[26,28,["H1834"]]]},{"k":352,"v":[[0,4,["H7725","(H853)"]],[4,5,["H3605"]],[5,7,["H7399"]],[7,9,["H1571"]],[9,11,["H7725"]],[11,13,["H251","(H853)"]],[13,14,["H3876"]],[14,17,["H7399"]],[17,18,["(H853)"]],[18,20,["H802"]],[20,21,["H1571"]],[21,24,["H5971"]]]},{"k":353,"v":[[0,3,["H4428"]],[3,5,["H5467"]],[5,7,["H3318"]],[7,9,["H7125"]],[9,11,["H310"]],[11,13,["H7725"]],[13,16,["H4480","H5221"]],[16,17,["(H853)"]],[17,18,["H3540"]],[18,22,["H4428"]],[22,23,["H834"]],[23,25,["H854"]],[25,27,["H413"]],[27,29,["H6010"]],[29,31,["H7740"]],[31,32,["H1931"]],[32,35,["H4428"]],[35,36,["H6010"]]]},{"k":354,"v":[[0,2,["H4442"]],[2,3,["H4428"]],[3,5,["H8004"]],[5,7,["H3318"]],[7,8,["H3899"]],[8,10,["H3196"]],[10,12,["H1931"]],[12,15,["H3548"]],[15,19,["H5945"]],[19,20,["H410"]]]},{"k":355,"v":[[0,3,["H1288"]],[3,6,["H559"]],[6,7,["H1288"]],[7,9,["H87"]],[9,13,["H5945"]],[13,14,["H410"]],[14,15,["H7069"]],[15,17,["H8064"]],[17,19,["H776"]]]},{"k":356,"v":[[0,2,["H1288"]],[2,6,["H5945"]],[6,7,["H410"]],[7,8,["H834"]],[8,10,["H4042"]],[10,12,["H6862"]],[12,15,["H3027"]],[15,18,["H5414"]],[18,20,["H4643"]],[20,22,["H4480","H3605"]]]},{"k":357,"v":[[0,3,["H4428"]],[3,5,["H5467"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H87"]],[8,9,["H5414"]],[9,12,["H5315"]],[12,14,["H3947"]],[14,16,["H7399"]],[16,18,[]]]},{"k":358,"v":[[0,2,["H87"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,8,["H5467"]],[8,12,["H7311"]],[12,14,["H3027"]],[14,15,["H413"]],[15,17,["H3068"]],[17,20,["H5945"]],[20,21,["H410"]],[21,23,["H7069"]],[23,25,["H8064"]],[25,27,["H776"]]]},{"k":359,"v":[[0,4,["H518"]],[4,8,["H4480","H2339"]],[8,10,["H5704"]],[10,12,["H8288","H5275"]],[12,17,["H518"]],[17,18,["H3947"]],[18,20,["H4480","H3605"]],[20,21,["H834"]],[21,24,["H3808"]],[24,27,["H559"]],[27,28,["H589"]],[28,32,["H6238","(H853)","H87"]]]},{"k":360,"v":[[0,1,["H1107"]],[1,2,["H7535"]],[2,4,["H834"]],[4,7,["H5288"]],[7,9,["H398"]],[9,12,["H2506"]],[12,15,["H376"]],[15,16,["H834"]],[16,17,["H1980"]],[17,18,["H854"]],[18,20,["H6063"]],[20,21,["H812"]],[21,23,["H4471"]],[23,25,["H1992"]],[25,26,["H3947"]],[26,28,["H2506"]]]},{"k":361,"v":[[0,1,["H310"]],[1,2,["H428"]],[2,3,["H1697"]],[3,5,["H1697"]],[5,8,["H3068"]],[8,9,["H1961"]],[9,10,["H413"]],[10,11,["H87"]],[11,14,["H4236"]],[14,15,["H559"]],[15,16,["H3372"]],[16,17,["H408"]],[17,18,["H87"]],[18,19,["H595"]],[19,22,["H4043"]],[22,25,["H3966"]],[25,26,["H7235"]],[26,27,["H7939"]]]},{"k":362,"v":[[0,2,["H87"]],[2,3,["H559"]],[3,4,["H136"]],[4,5,["H3069"]],[5,6,["H4100"]],[6,9,["H5414"]],[9,12,["H595"]],[12,13,["H1980"]],[13,14,["H6185"]],[14,17,["H1121","H4943"]],[17,20,["H1004"]],[20,22,["H1931"]],[22,23,["H461"]],[23,25,["H1834"]]]},{"k":363,"v":[[0,2,["H87"]],[2,3,["H559"]],[3,4,["H2005"]],[4,9,["H5414"]],[9,10,["H3808"]],[10,11,["H2233"]],[11,13,["H2009"]],[13,15,["H1121"]],[15,18,["H1004"]],[18,21,["H3423"]]]},{"k":364,"v":[[0,2,["H2009"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,9,["H413"]],[9,11,["H559"]],[11,12,["H2088"]],[12,14,["H3808"]],[14,17,["H3423"]],[17,18,["H3588","H518"]],[18,20,["H834"]],[20,23,["H3318"]],[23,28,["H4480","H4578"]],[28,32,["H3423"]]]},{"k":365,"v":[[0,5,["H3318","(H853)"]],[5,6,["H2351"]],[6,8,["H559"]],[8,9,["H5027"]],[9,10,["H4994"]],[10,12,["H8064"]],[12,14,["H5608"]],[14,16,["H3556"]],[16,17,["H518"]],[17,20,["H3201"]],[20,22,["H5608"]],[22,26,["H559"]],[26,29,["H3541"]],[29,32,["H2233"]],[32,33,["H1961"]]]},{"k":366,"v":[[0,3,["H539"]],[3,6,["H3068"]],[6,9,["H2803"]],[9,14,["H6666"]]]},{"k":367,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H589"]],[6,9,["H3068"]],[9,10,["H834"]],[10,11,["H3318"]],[11,15,["H4480","H218"]],[15,18,["H3778"]],[18,20,["H5414"]],[20,21,["(H853)"]],[21,22,["H2063"]],[22,23,["H776"]],[23,25,["H3423"]],[25,26,[]]]},{"k":368,"v":[[0,3,["H559"]],[3,4,["H136"]],[4,5,["H3069"]],[5,6,["H4100"]],[6,9,["H3045"]],[9,10,["H3588"]],[10,13,["H3423"]],[13,14,[]]]},{"k":369,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3947"]],[6,9,["H5697"]],[9,13,["H8027"]],[13,17,["H5795"]],[17,21,["H8027"]],[21,24,["H352"]],[24,28,["H8027"]],[28,31,["H8449"]],[31,35,["H1469"]]]},{"k":370,"v":[[0,3,["H3947"]],[3,5,["(H853)"]],[5,6,["H3605"]],[6,7,["H428"]],[7,9,["H1334"]],[9,13,["H8432"]],[13,15,["H5414"]],[15,16,["H376"]],[16,17,["H1335"]],[17,19,["H7125"]],[19,20,["H7453"]],[20,23,["H6833"]],[23,24,["H1334"]],[24,26,["H3808"]]]},{"k":371,"v":[[0,4,["H5861"]],[4,6,["H3381"]],[6,7,["H5921"]],[7,9,["H6297"]],[9,10,["H87"]],[10,13,["H5380","(H853)"]]]},{"k":372,"v":[[0,4,["H8121"]],[4,7,["H935"]],[7,10,["H8639"]],[10,11,["H5307"]],[11,12,["H5921"]],[12,13,["H87"]],[13,15,["H2009"]],[15,17,["H367"]],[17,19,["H1419"]],[19,20,["H2825"]],[20,21,["H5307"]],[21,22,["H5921"]],[22,23,[]]]},{"k":373,"v":[[0,3,["H559"]],[3,5,["H87"]],[5,9,["H3045","H3045"]],[9,10,["H3588"]],[10,12,["H2233"]],[12,14,["H1961"]],[14,16,["H1616"]],[16,19,["H776"]],[19,22,["H3808"]],[22,26,["H5647"]],[26,31,["H6031"]],[31,33,["H702"]],[33,34,["H3967"]],[34,35,["H8141"]]]},{"k":374,"v":[[0,2,["H1571","(H853)"]],[2,4,["H1471"]],[4,5,["H834"]],[5,8,["H5647"]],[8,10,["H595"]],[10,11,["H1777"]],[11,13,["H310","H3651"]],[13,17,["H3318"]],[17,19,["H1419"]],[19,20,["H7399"]]]},{"k":375,"v":[[0,2,["H859"]],[2,4,["H935"]],[4,5,["H413"]],[5,7,["H1"]],[7,9,["H7965"]],[9,13,["H6912"]],[13,16,["H2896"]],[16,18,["H7872"]]]},{"k":376,"v":[[0,4,["H7243"]],[4,5,["H1755"]],[5,10,["H7725","H2008"]],[10,11,["H3588"]],[11,13,["H5771"]],[13,16,["H567"]],[16,18,["H3808"]],[18,19,["H5704","H2008"]],[19,20,["H8003"]]]},{"k":377,"v":[[0,5,["H1961"]],[5,9,["H8121"]],[9,11,["H935"]],[11,14,["H1961"]],[14,15,["H5939"]],[15,16,["H2009"]],[16,18,["H6227"]],[18,19,["H8574"]],[19,22,["H784"]],[22,23,["H3940"]],[23,24,["H834"]],[24,25,["H5674"]],[25,26,["H996"]],[26,27,["H428"]],[27,28,["H1506"]]]},{"k":378,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,6,["H3068"]],[6,7,["H3772"]],[7,9,["H1285"]],[9,10,["H854"]],[10,11,["H87"]],[11,12,["H559"]],[12,15,["H2233"]],[15,18,["H5414"]],[18,19,["H2063","(H853)"]],[19,20,["H776"]],[20,23,["H4480","H5104"]],[23,25,["H4714"]],[25,26,["H5704"]],[26,28,["H1419"]],[28,29,["H5104"]],[29,31,["H5104"]],[31,32,["H6578"]]]},{"k":379,"v":[[0,0,["(H853)"]],[0,2,["H7017"]],[2,5,["H7074"]],[5,8,["H6935"]]]},{"k":380,"v":[[0,3,["H2850"]],[3,6,["H6522"]],[6,9,["H7497"]]]},{"k":381,"v":[[0,3,["H567"]],[3,6,["H3669"]],[6,9,["H1622"]],[9,12,["H2983"]]]},{"k":382,"v":[[0,2,["H8297"]],[2,3,["H87"]],[3,4,["H802"]],[4,8,["H3205","H3808"]],[8,13,["H8198"]],[13,15,["H4713"]],[15,17,["H8034"]],[17,19,["H1904"]]]},{"k":383,"v":[[0,2,["H8297"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H87"]],[5,6,["H2009"]],[6,7,["H4994"]],[7,9,["H3068"]],[9,11,["H6113"]],[11,14,["H4480","H3205"]],[14,17,["H4994"]],[17,19,["H935"]],[19,20,["H413"]],[20,22,["H8198"]],[22,25,["H194"]],[25,30,["H1129"]],[30,31,["H4480"]],[31,34,["H87"]],[34,35,["H8085"]],[35,38,["H6963"]],[38,40,["H8297"]]]},{"k":384,"v":[[0,2,["H8297"]],[2,3,["H87"]],[3,4,["H802"]],[4,5,["H3947","(H853)"]],[5,6,["H1904"]],[6,8,["H8198"]],[8,10,["H4713"]],[10,11,["H4480","H7093"]],[11,12,["H87"]],[12,14,["H3427"]],[14,15,["H6235"]],[15,16,["H8141"]],[16,19,["H776"]],[19,21,["H3667"]],[21,23,["H5414"]],[23,27,["H376"]],[27,28,["H87"]],[28,32,["H802"]]]},{"k":385,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,6,["H1904"]],[6,9,["H2029"]],[9,13,["H7200"]],[13,14,["H3588"]],[14,17,["H2029"]],[17,19,["H1404"]],[19,21,["H7043"]],[21,24,["H5869"]]]},{"k":386,"v":[[0,2,["H8297"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H87"]],[5,7,["H2555"]],[7,9,["H5921"]],[9,11,["H595"]],[11,13,["H5414"]],[13,15,["H8198"]],[15,18,["H2436"]],[18,22,["H7200"]],[22,23,["H3588"]],[23,26,["H2029"]],[26,29,["H7043"]],[29,32,["H5869"]],[32,34,["H3068"]],[34,35,["H8199"]],[35,36,["H996"]],[36,39,[]]]},{"k":387,"v":[[0,2,["H87"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H8297"]],[5,6,["H2009"]],[6,8,["H8198"]],[8,12,["H3027"]],[12,13,["H6213"]],[13,18,["H2896","H5869"]],[18,22,["H8297"]],[22,24,["H6031"]],[24,28,["H1272"]],[28,31,["H4480","H6440"]]]},{"k":388,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H4672"]],[7,9,["H5921"]],[9,11,["H5869"]],[11,13,["H4325"]],[13,16,["H4057"]],[16,17,["H5921"]],[17,19,["H5869"]],[19,22,["H1870"]],[22,24,["H7793"]]]},{"k":389,"v":[[0,3,["H559"]],[3,4,["H1904"]],[4,5,["H8297"]],[5,6,["H8198"]],[6,7,["H335","H4480","H2088"]],[7,8,["H935"]],[8,11,["H575"]],[11,14,["H1980"]],[14,17,["H559"]],[17,18,["H595"]],[18,19,["H1272"]],[19,22,["H4480","H6440"]],[22,25,["H1404"]],[25,26,["H8297"]]]},{"k":390,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H559"]],[7,10,["H7725"]],[10,11,["H413"]],[11,13,["H1404"]],[13,16,["H6031"]],[16,17,["H8478"]],[17,19,["H3027"]]]},{"k":391,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H559"]],[7,15,["H7235","H7235","(H853)","H2233"]],[15,19,["H3808"]],[19,21,["H5608"]],[21,23,["H4480","H7230"]]]},{"k":392,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H559"]],[7,10,["H2009"]],[10,14,["H2030"]],[14,17,["H3205"]],[17,19,["H1121"]],[19,22,["H7121"]],[22,24,["H8034"]],[24,25,["H3458"]],[25,26,["H3588"]],[26,28,["H3068"]],[28,30,["H8085","H413"]],[30,32,["H6040"]]]},{"k":393,"v":[[0,2,["H1931"]],[2,4,["H1961"]],[4,6,["H6501"]],[6,7,["H120"]],[7,9,["H3027"]],[9,14,["H3605"]],[14,17,["H3605"]],[17,18,["H3027"]],[18,24,["H7931"]],[24,27,["H5921","H6440"]],[27,29,["H3605"]],[29,31,["H251"]]]},{"k":394,"v":[[0,3,["H7121"]],[3,5,["H8034"]],[5,8,["H3068"]],[8,10,["H1696"]],[10,11,["H413"]],[11,13,["H859"]],[13,14,["H410"]],[14,15,["H7210"]],[15,17,["H3588"]],[17,19,["H559"]],[19,22,["H1571"]],[22,23,["H1988"]],[23,24,["H7200"]],[24,25,["H310"]],[25,28,["H7200"]],[28,29,[]]]},{"k":395,"v":[[0,1,["H5921","H3651"]],[1,3,["H875"]],[3,5,["H7121"]],[5,6,["H883"]],[6,7,["H2009"]],[7,10,["H996"]],[10,11,["H6946"]],[11,13,["H1260"]]]},{"k":396,"v":[[0,2,["H1904"]],[2,3,["H3205"]],[3,4,["H87"]],[4,6,["H1121"]],[6,8,["H87"]],[8,9,["H7121"]],[9,11,["H1121"]],[11,12,["H8034"]],[12,13,["H834"]],[13,14,["H1904"]],[14,15,["H3205"]],[15,16,["H3458"]]]},{"k":397,"v":[[0,2,["H87"]],[2,4,["H8084"]],[4,6,["H8337"]],[6,7,["H8141"]],[7,8,["H1121"]],[8,10,["H1904"]],[10,11,["H3205","(H853)"]],[11,12,["H3458"]],[12,14,["H87"]]]},{"k":398,"v":[[0,3,["H87"]],[3,4,["H1961"]],[4,5,["H8673"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,9,["H8672"]],[9,11,["H3068"]],[11,12,["H7200"]],[12,13,["H413"]],[13,14,["H87"]],[14,16,["H559"]],[16,17,["H413"]],[17,19,["H589"]],[19,22,["H7706"]],[22,23,["H410"]],[23,24,["H1980"]],[24,25,["H6440"]],[25,28,["H1961"]],[28,30,["H8549"]]]},{"k":399,"v":[[0,4,["H5414"]],[4,6,["H1285"]],[6,7,["H996"]],[7,13,["H7235"]],[13,15,["H3966","H3966"]]]},{"k":400,"v":[[0,2,["H87"]],[2,3,["H5307"]],[3,4,["H5921"]],[4,6,["H6440"]],[6,8,["H430"]],[8,9,["H1696"]],[9,10,["H854"]],[10,12,["H559"]]]},{"k":401,"v":[[0,3,["H589"]],[3,4,["H2009"]],[4,6,["H1285"]],[6,8,["H854"]],[8,13,["H1961"]],[13,15,["H1"]],[15,17,["H1995"]],[17,18,["H1471"]]]},{"k":402,"v":[[0,1,["H3808"]],[1,2,["(H853)"]],[2,4,["H8034"]],[4,6,["H5750"]],[6,8,["H7121"]],[8,9,["H87"]],[9,12,["H8034"]],[12,14,["H1961"]],[14,15,["H85"]],[15,16,["H3588"]],[16,18,["H1"]],[18,20,["H1995"]],[20,21,["H1471"]],[21,24,["H5414"]],[24,25,[]]]},{"k":403,"v":[[0,6,["H3966","H3966"]],[6,7,["H6509"]],[7,11,["H5414"]],[11,12,["H1471"]],[12,16,["H4428"]],[16,19,["H3318"]],[19,20,["H4480"]],[20,21,[]]]},{"k":404,"v":[[0,4,["H6965","(H853)"]],[4,6,["H1285"]],[6,7,["H996"]],[7,13,["H2233"]],[13,14,["H310"]],[14,18,["H1755"]],[18,21,["H5769"]],[21,22,["H1285"]],[22,24,["H1961"]],[24,26,["H430"]],[26,32,["H2233"]],[32,33,["H310"]],[33,34,[]]]},{"k":405,"v":[[0,4,["H5414"]],[4,10,["H2233"]],[10,11,["H310"]],[11,12,["(H853)"]],[12,14,["H776"]],[14,19,["H4033","(H853)"]],[19,20,["H3605"]],[20,22,["H776"]],[22,24,["H3667"]],[24,27,["H5769"]],[27,28,["H272"]],[28,32,["H1961"]],[32,34,["H430"]]]},{"k":406,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H85"]],[5,6,["H859"]],[6,8,["H8104","(H853)"]],[8,10,["H1285"]],[10,12,["H859"]],[12,15,["H2233"]],[15,16,["H310"]],[16,20,["H1755"]]]},{"k":407,"v":[[0,1,["H2063"]],[1,4,["H1285"]],[4,5,["H834"]],[5,8,["H8104"]],[8,9,["H996"]],[9,15,["H2233"]],[15,16,["H310"]],[16,18,["H3605"]],[18,20,["H2145"]],[20,25,["H4135"]]]},{"k":408,"v":[[0,4,["H4135","(H853)"]],[4,6,["H1320"]],[6,9,["H6190"]],[9,13,["H1961"]],[13,15,["H226"]],[15,18,["H1285"]],[18,19,["H996"]],[19,22,[]]]},{"k":409,"v":[[0,5,["H8083"]],[5,6,["H3117"]],[6,7,["H1121"]],[7,10,["H4135"]],[10,13,["H3605"]],[13,15,["H2145"]],[15,18,["H1755"]],[18,22,["H3211"]],[22,25,["H1004"]],[25,27,["H4736"]],[27,29,["H3701"]],[29,31,["H4480","H3605"]],[31,32,["H1121","H5236"]],[32,33,["H834"]],[33,35,["H3808"]],[35,38,["H4480","H2233"]]]},{"k":410,"v":[[0,4,["H3211"]],[4,7,["H1004"]],[7,12,["H4736"]],[12,15,["H3701"]],[15,19,["H4135","H4135"]],[19,22,["H1285"]],[22,24,["H1961"]],[24,27,["H1320"]],[27,30,["H5769"]],[30,31,["H1285"]]]},{"k":411,"v":[[0,3,["H6189"]],[3,5,["H2145"]],[5,6,["H834","(H853)"]],[6,7,["H1320"]],[7,10,["H6190"]],[10,12,["H3808"]],[12,13,["H4135"]],[13,14,["H1931"]],[14,15,["H5315"]],[15,19,["H3772"]],[19,22,["H4480","H5971"]],[22,25,["H6565","(H853)"]],[25,27,["H1285"]]]},{"k":412,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H85"]],[5,8,["H8297"]],[8,10,["H802"]],[10,13,["H3808"]],[13,14,["H7121","(H853)"]],[14,16,["H8034"]],[16,17,["H8297"]],[17,18,["H3588"]],[18,19,["H8283"]],[19,22,["H8034"]],[22,23,[]]]},{"k":413,"v":[[0,4,["H1288"]],[4,7,["H5414"]],[7,10,["H1121"]],[10,11,["H1571"]],[11,12,["H4480"]],[12,17,["H1288"]],[17,22,["H1961"]],[22,26,["H1471"]],[26,27,["H4428"]],[27,29,["H5971"]],[29,31,["H1961"]],[31,32,["H4480"]],[32,33,[]]]},{"k":414,"v":[[0,2,["H85"]],[2,3,["H5307"]],[3,4,["H5921"]],[4,6,["H6440"]],[6,8,["H6711"]],[8,10,["H559"]],[10,13,["H3820"]],[13,18,["H3205"]],[18,24,["H3967"]],[24,25,["H8141"]],[25,26,["H1121"]],[26,29,["H8283"]],[29,32,["H8673"]],[32,33,["H8141"]],[33,34,["H1323"]],[34,35,["H3205"]]]},{"k":415,"v":[[0,2,["H85"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H430"]],[5,7,["H3863"]],[7,8,["H3458"]],[8,10,["H2421"]],[10,11,["H6440"]],[11,12,[]]]},{"k":416,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H8283"]],[4,6,["H802"]],[6,8,["H3205"]],[8,11,["H1121"]],[11,12,["H61"]],[12,16,["H7121","(H853)"]],[16,18,["H8034"]],[18,19,["H3327"]],[19,23,["H6965","(H853)"]],[23,25,["H1285"]],[25,26,["H854"]],[26,30,["H5769"]],[30,31,["H1285"]],[31,35,["H2233"]],[35,36,["H310"]],[36,37,[]]]},{"k":417,"v":[[0,4,["H3458"]],[4,7,["H8085"]],[7,9,["H2009"]],[9,12,["H1288"]],[12,18,["H6509","(H853)"]],[18,21,["H7235"]],[21,23,["H3966","H3966"]],[23,24,["H8147","H6240"]],[24,25,["H5387"]],[25,28,["H3205"]],[28,32,["H5414"]],[32,35,["H1419"]],[35,36,["H1471"]]]},{"k":418,"v":[[0,3,["H1285"]],[3,6,["H6965"]],[6,7,["H854"]],[7,8,["H3327"]],[8,9,["H834"]],[9,10,["H8283"]],[10,12,["H3205"]],[12,16,["H2088"]],[16,18,["H4150"]],[18,21,["H312"]],[21,22,["H8141"]]]},{"k":419,"v":[[0,4,["H3615"]],[4,5,["H1696"]],[5,6,["H854"]],[6,9,["H430"]],[9,11,["H5927"]],[11,12,["H4480","H5921"]],[12,13,["H85"]]]},{"k":420,"v":[[0,2,["H85"]],[2,3,["H3947","(H853)"]],[3,4,["H3458"]],[4,6,["H1121"]],[6,8,["H3605"]],[8,11,["H3211"]],[11,14,["H1004"]],[14,16,["H3605"]],[16,19,["H4736"]],[19,22,["H3701"]],[22,23,["H3605"]],[23,24,["H2145"]],[24,27,["H376"]],[27,29,["H85"]],[29,30,["H1004"]],[30,32,["H4135","(H853)"]],[32,34,["H1320"]],[34,37,["H6190"]],[37,40,["H6106","H2088"]],[40,41,["H3117"]],[41,42,["H834"]],[42,43,["H430"]],[43,45,["H1696"]],[45,46,["H854"]],[46,47,[]]]},{"k":421,"v":[[0,2,["H85"]],[2,4,["H8673"]],[4,5,["H8141"]],[5,6,["H1121"]],[6,8,["H8672"]],[8,12,["H4135"]],[12,15,["H1320"]],[15,18,["H6190"]]]},{"k":422,"v":[[0,2,["H3458"]],[2,4,["H1121"]],[4,6,["H7969","H6240"]],[6,7,["H8141"]],[7,8,["H1121"]],[8,12,["H4135","(H853)"]],[12,15,["H1320"]],[15,18,["H6190"]]]},{"k":423,"v":[[0,3,["H6106","H2088"]],[3,4,["H3117"]],[4,6,["H85"]],[6,7,["H4135"]],[7,9,["H3458"]],[9,11,["H1121"]]]},{"k":424,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,7,["H1004"]],[7,8,["H3211"]],[8,11,["H1004"]],[11,13,["H4736"]],[13,15,["H3701"]],[15,16,["H4480","H854"]],[16,18,["H1121","H5236"]],[18,20,["H4135"]],[20,21,["H854"]],[21,22,[]]]},{"k":425,"v":[[0,3,["H3068"]],[3,4,["H7200"]],[4,5,["H413"]],[5,9,["H436"]],[9,11,["H4471"]],[11,13,["H1931"]],[13,14,["H3427"]],[14,17,["H168"]],[17,18,["H6607"]],[18,21,["H2527"]],[21,24,["H3117"]]]},{"k":426,"v":[[0,4,["H5375"]],[4,6,["H5869"]],[6,8,["H7200"]],[8,10,["H2009"]],[10,11,["H7969"]],[11,12,["H376"]],[12,13,["H5324"]],[13,14,["H5921"]],[14,19,["H7200"]],[19,22,["H7323"]],[22,24,["H7125"]],[24,29,["H4480","H6607","H168"]],[29,32,["H7812"]],[32,35,["H776"]]]},{"k":427,"v":[[0,2,["H559"]],[2,4,["H136"]],[4,5,["H518"]],[5,6,["H4994"]],[6,9,["H4672"]],[9,10,["H2580"]],[10,13,["H5869"]],[13,16,["H5674","H408"]],[16,19,["H4994"]],[19,20,["H4480","H5921"]],[20,22,["H5650"]]]},{"k":428,"v":[[0,3,["H4592"]],[3,4,["H4325"]],[4,7,["H4994"]],[7,9,["H3947"]],[9,11,["H7364"]],[11,13,["H7272"]],[13,16,["H8172"]],[16,17,["H8478"]],[17,19,["H6086"]]]},{"k":429,"v":[[0,4,["H3947"]],[4,6,["H6595"]],[6,8,["H3899"]],[8,10,["H5582"]],[10,13,["H3820"]],[13,15,["H310"]],[15,19,["H5674"]],[19,20,["H3588"]],[20,21,["H5921","H3651"]],[21,24,["H5674"]],[24,25,["H5921"]],[25,27,["H5650"]],[27,30,["H559"]],[30,31,["H3651"]],[31,32,["H6213"]],[32,33,["H834"]],[33,36,["H1696"]]]},{"k":430,"v":[[0,2,["H85"]],[2,3,["H4116"]],[3,6,["H168"]],[6,7,["H413"]],[7,8,["H8283"]],[8,10,["H559"]],[10,13,["H4116"]],[13,14,["H7969"]],[14,15,["H5429"]],[15,17,["H5560"]],[17,18,["H7058"]],[18,19,["H3888"]],[19,22,["H6213"]],[22,26,["H5692"]]]},{"k":431,"v":[[0,2,["H85"]],[2,3,["H7323"]],[3,4,["H413"]],[4,6,["H1241"]],[6,8,["H3947"]],[8,10,["H1121","H1241"]],[10,11,["H7390"]],[11,13,["H2896"]],[13,15,["H5414"]],[15,17,["H413"]],[17,20,["H5288"]],[20,23,["H4116"]],[23,25,["H6213"]],[25,26,[]]]},{"k":432,"v":[[0,3,["H3947"]],[3,4,["H2529"]],[4,6,["H2461"]],[6,9,["H1121","H1241"]],[9,10,["H834"]],[10,13,["H6213"]],[13,15,["H5414"]],[15,17,["H6440"]],[17,20,["H1931"]],[20,21,["H5975"]],[21,22,["H5921"]],[22,24,["H8478"]],[24,26,["H6086"]],[26,30,["H398"]]]},{"k":433,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H346"]],[6,8,["H8283"]],[8,10,["H802"]],[10,13,["H559"]],[13,14,["H2009"]],[14,17,["H168"]]]},{"k":434,"v":[[0,3,["H559"]],[3,7,["H7725","H7725"]],[7,8,["H413"]],[8,13,["H6256"]],[13,15,["H2416"]],[15,17,["H2009"]],[17,18,["H8283"]],[18,20,["H802"]],[20,24,["H1121"]],[24,26,["H8283"]],[26,27,["H8085"]],[27,31,["H168"]],[31,32,["H6607"]],[32,33,["H1931"]],[33,35,["H310"]],[35,36,[]]]},{"k":435,"v":[[0,2,["H85"]],[2,4,["H8283"]],[4,6,["H2205"]],[6,9,["H935"]],[9,11,["H3117"]],[11,14,["H2308"]],[14,16,["H1961"]],[16,18,["H8283"]],[18,21,["H734"]],[21,23,["H802"]]]},{"k":436,"v":[[0,2,["H8283"]],[2,3,["H6711"]],[3,4,["H7130"]],[4,6,["H559"]],[6,7,["H310"]],[7,11,["H1086"]],[11,14,["H1961"]],[14,15,["H5730"]],[15,17,["H113"]],[17,19,["H2204"]],[19,20,[]]]},{"k":437,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H85"]],[6,7,["H4100","H2088"]],[7,9,["H8283"]],[9,10,["H6711"]],[10,11,["H559"]],[11,16,["H637","H552"]],[16,19,["H3205"]],[19,20,["H589"]],[20,22,["H2204"]]]},{"k":438,"v":[[0,3,["H1697"]],[3,5,["H6381"]],[5,8,["H4480","H3068"]],[8,12,["H4150"]],[12,15,["H7725"]],[15,16,["H413"]],[16,21,["H6256"]],[21,23,["H2416"]],[23,25,["H8283"]],[25,29,["H1121"]]]},{"k":439,"v":[[0,2,["H8283"]],[2,3,["H3584"]],[3,4,["H559"]],[4,6,["H6711"]],[6,7,["H3808"]],[7,8,["H3588"]],[8,11,["H3372"]],[11,14,["H559"]],[14,15,["H3808"]],[15,16,["H3588"]],[16,19,["H6711"]]]},{"k":440,"v":[[0,3,["H376"]],[3,5,["H6965"]],[5,7,["H4480","H8033"]],[7,9,["H8259"]],[9,10,["H5921","H6440"]],[10,11,["H5467"]],[11,13,["H85"]],[13,14,["H1980"]],[14,15,["H5973"]],[15,22,["H7971"]]]},{"k":441,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,6,["H589"]],[6,7,["H3680"]],[7,9,["H4480","H85"]],[9,12,["H834"]],[12,13,["H589"]],[13,14,["H6213"]]]},{"k":442,"v":[[0,3,["H85"]],[3,6,["H1961","H1961"]],[6,8,["H1419"]],[8,10,["H6099"]],[10,11,["H1471"]],[11,13,["H3605"]],[13,15,["H1471"]],[15,18,["H776"]],[18,21,["H1288"]],[21,23,[]]]},{"k":443,"v":[[0,1,["H3588"]],[1,3,["H3045"]],[3,5,["H4616","H834"]],[5,8,["H6680","(H853)"]],[8,10,["H1121"]],[10,13,["H1004"]],[13,14,["H310"]],[14,19,["H8104"]],[19,21,["H1870"]],[21,24,["H3068"]],[24,26,["H6213"]],[26,27,["H6666"]],[27,29,["H4941"]],[29,30,["H4616"]],[30,32,["H3068"]],[32,34,["H935"]],[34,35,["H5921"]],[35,36,["H85","(H853)"]],[36,38,["H834"]],[38,41,["H1696"]],[41,42,["H5921"]],[42,43,[]]]},{"k":444,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H3588"]],[5,7,["H2201"]],[7,9,["H5467"]],[9,11,["H6017"]],[11,13,["H7231"]],[13,15,["H3588"]],[15,17,["H2403"]],[17,19,["H3966"]],[19,20,["H3513"]]]},{"k":445,"v":[[0,4,["H3381"]],[4,5,["H4994"]],[5,7,["H7200"]],[7,11,["H6213"]],[11,12,["H3617"]],[12,16,["H6818"]],[16,21,["H935"]],[21,22,["H413"]],[22,25,["H518"]],[25,26,["H3808"]],[26,29,["H3045"]]]},{"k":446,"v":[[0,3,["H376"]],[3,6,["H6437"]],[6,8,["H4480","H8033"]],[8,10,["H1980"]],[10,12,["H5467"]],[12,14,["H85"]],[14,15,["H5975"]],[15,16,["H5750"]],[16,17,["H6440"]],[17,19,["H3068"]]]},{"k":447,"v":[[0,2,["H85"]],[2,4,["H5066"]],[4,6,["H559"]],[6,9,["H637"]],[9,10,["H5595"]],[10,12,["H6662"]],[12,13,["H5973"]],[13,15,["H7563"]]]},{"k":448,"v":[[0,1,["H194"]],[1,3,["H3426"]],[3,4,["H2572"]],[4,5,["H6662"]],[5,6,["H8432"]],[6,8,["H5892"]],[8,11,["H637"]],[11,12,["H5595"]],[12,14,["H3808"]],[14,15,["H5375"]],[15,17,["H4725"]],[17,18,["H4616"]],[18,20,["H2572"]],[20,21,["H6662"]],[21,22,["H834"]],[22,24,["H7130"]]]},{"k":449,"v":[[0,3,["H2486"]],[3,7,["H4480","H6213"]],[7,9,["H2088"]],[9,10,["H1697"]],[10,12,["H4191"]],[12,14,["H6662"]],[14,15,["H5973"]],[15,17,["H7563"]],[17,21,["H6662"]],[21,23,["H1961"]],[23,26,["H7563"]],[26,29,["H2486"]],[29,33,["H3808"]],[33,35,["H8199"]],[35,37,["H3605"]],[37,39,["H776"]],[39,40,["H6213"]],[40,41,["H4941"]]]},{"k":450,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H518"]],[5,7,["H4672"]],[7,9,["H5467"]],[9,10,["H2572"]],[10,11,["H6662"]],[11,12,["H8432"]],[12,14,["H5892"]],[14,18,["H5375"]],[18,19,["H3605"]],[19,21,["H4725"]],[21,24,["H5668"]]]},{"k":451,"v":[[0,2,["H85"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H2009"]],[6,7,["H4994"]],[7,11,["H2974"]],[11,14,["H1696"]],[14,15,["H413"]],[15,17,["H136"]],[17,18,["H595"]],[18,21,["H6083"]],[21,23,["H665"]]]},{"k":452,"v":[[0,1,["H194"]],[1,4,["H2637"]],[4,5,["H2568"]],[5,8,["H2572"]],[8,9,["H6662"]],[9,12,["H7843","(H853)"]],[12,13,["H3605"]],[13,15,["H5892"]],[15,19,["H2568"]],[19,22,["H559"]],[22,23,["H518"]],[23,25,["H4672"]],[25,26,["H8033"]],[26,27,["H705"]],[27,29,["H2568"]],[29,32,["H3808"]],[32,33,["H7843"]],[33,34,[]]]},{"k":453,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H5750"]],[6,7,["H3254"]],[7,9,["H559"]],[9,10,["H194"]],[10,14,["H705"]],[14,15,["H4672"]],[15,16,["H8033"]],[16,19,["H559"]],[19,22,["H3808"]],[22,23,["H6213"]],[23,27,["H5668","H705"]]]},{"k":454,"v":[[0,3,["H559"]],[3,6,["H4994"]],[6,8,["H408"]],[8,10,["H136"]],[10,12,["H2734"]],[12,16,["H1696"]],[16,17,["H194"]],[17,20,["H7970"]],[20,22,["H4672"]],[22,23,["H8033"]],[23,26,["H559"]],[26,29,["H3808"]],[29,30,["H6213"]],[30,32,["H518"]],[32,34,["H4672"]],[34,35,["H7970"]],[35,36,["H8033"]]]},{"k":455,"v":[[0,3,["H559"]],[3,4,["H2009"]],[4,5,["H4994"]],[5,9,["H2974"]],[9,12,["H1696"]],[12,13,["H413"]],[13,15,["H136"]],[15,16,["H194"]],[16,20,["H6242"]],[20,21,["H4672"]],[21,22,["H8033"]],[22,25,["H559"]],[25,28,["H3808"]],[28,29,["H7843"]],[29,33,["H5668","H6242"]]]},{"k":456,"v":[[0,3,["H559"]],[3,4,["H4994"]],[4,6,["H408"]],[6,8,["H136"]],[8,10,["H2734"]],[10,14,["H1696"]],[14,15,["H389"]],[15,18,["H6471"]],[18,19,["H194"]],[19,20,["H6235"]],[20,23,["H4672"]],[23,24,["H8033"]],[24,27,["H559"]],[27,30,["H3808"]],[30,31,["H7843"]],[31,35,["H5668","H6235"]]]},{"k":457,"v":[[0,3,["H3068"]],[3,6,["H1980"]],[6,9,["H834"]],[9,12,["H3615"]],[12,13,["H1696"]],[13,14,["H413"]],[14,15,["H85"]],[15,17,["H85"]],[17,18,["H7725"]],[18,21,["H4725"]]]},{"k":458,"v":[[0,3,["H935"]],[3,4,["H8147"]],[4,5,["H4397"]],[5,7,["H5467"]],[7,9,["H6153"]],[9,11,["H3876"]],[11,12,["H3427"]],[12,15,["H8179"]],[15,17,["H5467"]],[17,19,["H3876"]],[19,20,["H7200"]],[20,23,["H6965"]],[23,25,["H7125"]],[25,30,["H7812"]],[30,33,["H639"]],[33,36,["H776"]]]},{"k":459,"v":[[0,3,["H559"]],[3,4,["H2009"]],[4,5,["H4994"]],[5,7,["H113"]],[7,9,["H5493"]],[9,12,["H4994"]],[12,13,["H413"]],[13,15,["H5650"]],[15,16,["H1004"]],[16,20,["H3885"]],[20,22,["H7364"]],[22,24,["H7272"]],[24,30,["H7925"]],[30,32,["H1980"]],[32,35,["H1870"]],[35,38,["H559"]],[38,39,["H3808"]],[39,40,["H3588"]],[40,48,["H3885","H7339"]]]},{"k":460,"v":[[0,3,["H6484"]],[3,6,["H3966"]],[6,10,["H5493"]],[10,11,["H413"]],[11,14,["H935"]],[14,15,["H413"]],[15,17,["H1004"]],[17,20,["H6213"]],[20,23,["H4960"]],[23,26,["H644"]],[26,28,["H4682"]],[28,32,["H398"]]]},{"k":461,"v":[[0,2,["H2962"]],[2,5,["H7901"]],[5,7,["H582"]],[7,10,["H5892"]],[10,13,["H582"]],[13,15,["H5467"]],[15,16,["H5437","H5921"]],[16,18,["H1004"]],[18,21,["H2205"]],[21,23,["H4480","H5288"]],[23,24,["H3605"]],[24,26,["H5971"]],[26,29,["H4480","H7097"]]]},{"k":462,"v":[[0,3,["H7121"]],[3,4,["H413"]],[4,5,["H3876"]],[5,7,["H559"]],[7,10,["H346"]],[10,13,["H376"]],[13,14,["H834"]],[14,16,["H935"]],[16,17,["H413"]],[17,20,["H3915"]],[20,23,["H3318"]],[23,24,["H413"]],[24,29,["H3045"]],[29,30,[]]]},{"k":463,"v":[[0,2,["H3876"]],[2,4,["H3318"]],[4,7,["H6607"]],[7,8,["H413"]],[8,11,["H5462"]],[11,13,["H1817"]],[13,14,["H310"]],[14,15,[]]]},{"k":464,"v":[[0,2,["H559"]],[2,5,["H4994"]],[5,6,["H251"]],[6,10,["H7489","H408"]]]},{"k":465,"v":[[0,1,["H2009"]],[1,2,["H4994"]],[2,5,["H8147"]],[5,6,["H1323"]],[6,7,["H834"]],[7,9,["H3808"]],[9,10,["H3045"]],[10,11,["H376"]],[11,16,["H4994"]],[16,19,["H3318","(H853)"]],[19,20,["H413"]],[20,23,["H6213"]],[23,29,["H2896"]],[29,32,["H5869"]],[32,33,["H7535"]],[33,35,["H411"]],[35,36,["H376"]],[36,37,["H6213"]],[37,38,["H408","H1697"]],[38,39,["H3588"]],[39,40,["H5921","H3651"]],[40,41,["H935"]],[41,45,["H6738"]],[45,48,["H6982"]]]},{"k":466,"v":[[0,3,["H559"]],[3,4,["H5066"]],[4,5,["H1973"]],[5,8,["H559"]],[8,11,["H259"]],[11,14,["H935"]],[14,16,["H1481"]],[16,23,["H8199","H8199"]],[23,24,["H6258"]],[24,28,["H7489"]],[28,31,["H4480"]],[31,36,["H6484"]],[36,37,["H3966"]],[37,40,["H376"]],[40,42,["H3876"]],[42,45,["H5066"]],[45,47,["H7665"]],[47,49,["H1817"]]]},{"k":467,"v":[[0,3,["H376"]],[3,5,["H7971","(H853)"]],[5,7,["H3027"]],[7,9,["H935","(H853)"]],[9,10,["H3876"]],[10,13,["H1004"]],[13,14,["H413"]],[14,18,["H5462"]],[18,20,["H1817"]]]},{"k":468,"v":[[0,3,["H5221"]],[3,5,["H376"]],[5,6,["H834"]],[6,10,["H6607"]],[10,13,["H1004"]],[13,15,["H5575"]],[15,17,["H4480","H6996"]],[17,19,["H1419"]],[19,24,["H3811"]],[24,26,["H4672"]],[26,28,["H6607"]]]},{"k":469,"v":[[0,3,["H376"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3876"]],[6,9,["H6311"]],[9,10,["H4310"]],[10,11,["H5750"]],[11,14,["H2860"]],[14,17,["H1121"]],[17,20,["H1323"]],[20,22,["H3605","H834"]],[22,27,["H5892"]],[27,28,["H3318"]],[28,31,["H4480"]],[31,33,["H4725"]]]},{"k":470,"v":[[0,1,["H3588"]],[1,2,["H587"]],[2,4,["H7843","(H853)"]],[4,5,["H2088"]],[5,6,["H4725"]],[6,7,["H3588"]],[7,9,["H6818"]],[9,14,["H1431","(H853)"]],[14,17,["H6440"]],[17,20,["H3068"]],[20,23,["H3068"]],[23,25,["H7971"]],[25,28,["H7843"]],[28,29,[]]]},{"k":471,"v":[[0,2,["H3876"]],[2,4,["H3318"]],[4,6,["H1696"]],[6,7,["H413"]],[7,11,["H2860"]],[11,13,["H3947"]],[13,15,["H1323"]],[15,17,["H559"]],[17,18,["H6965"]],[18,21,["H3318"]],[21,22,["H4480"]],[22,23,["H2088"]],[23,24,["H4725"]],[24,25,["H3588"]],[25,27,["H3068"]],[27,29,["H7843","(H853)"]],[29,31,["H5892"]],[31,34,["H1961"]],[34,38,["H6711"]],[38,39,["H5869"]],[39,43,["H2860"]]]},{"k":472,"v":[[0,2,["H3644"]],[2,4,["H7837"]],[4,5,["H5927"]],[5,8,["H4397"]],[8,9,["H213"]],[9,10,["H3876"]],[10,11,["H559"]],[11,12,["H6965"]],[12,13,["H3947","(H853)"]],[13,15,["H802"]],[15,18,["H8147"]],[18,19,["H1323"]],[19,22,["H4672"]],[22,23,["H6435"]],[23,26,["H5595"]],[26,29,["H5771"]],[29,32,["H5892"]]]},{"k":473,"v":[[0,4,["H4102"]],[4,6,["H376"]],[6,8,["H2388"]],[8,11,["H3027"]],[11,15,["H3027"]],[15,18,["H802"]],[18,22,["H3027"]],[22,25,["H8147"]],[25,26,["H1323"]],[26,28,["H3068"]],[28,30,["H2551"]],[30,31,["H5921"]],[31,37,["H3318"]],[37,39,["H5117"]],[39,41,["H4480","H2351"]],[41,43,["H5892"]]]},{"k":474,"v":[[0,5,["H1961"]],[5,11,["H3318","(H853)"]],[11,12,["H2351"]],[12,15,["H559"]],[15,16,["H4422"]],[16,17,["H5921"]],[17,19,["H5315"]],[19,20,["H5027"]],[20,21,["H408"]],[21,22,["H310"]],[22,24,["H408"]],[24,25,["H5975"]],[25,28,["H3605"]],[28,30,["H3603"]],[30,31,["H4422"]],[31,34,["H2022"]],[34,35,["H6435"]],[35,38,["H5595"]]]},{"k":475,"v":[[0,2,["H3876"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4994"]],[6,7,["H408"]],[7,10,["H136"]]]},{"k":476,"v":[[0,1,["H2009"]],[1,2,["H4994"]],[2,4,["H5650"]],[4,6,["H4672"]],[6,7,["H2580"]],[7,10,["H5869"]],[10,14,["H1431"]],[14,16,["H2617"]],[16,17,["H834"]],[17,20,["H6213"]],[20,21,["H5973"]],[21,24,["H2421","(H853)"]],[24,26,["H5315"]],[26,28,["H595"]],[28,29,["H3808","H3201"]],[29,30,["H4422"]],[30,33,["H2022"]],[33,34,["H6435"]],[34,36,["H7451"]],[36,37,["H1692"]],[37,41,["H4191"]]]},{"k":477,"v":[[0,1,["H2009"]],[1,2,["H4994"]],[2,3,["H2063"]],[3,4,["H5892"]],[4,6,["H7138"]],[6,8,["H5127"]],[8,9,["H8033"]],[9,11,["H1931"]],[11,15,["H4705"]],[15,16,["H4994"]],[16,19,["H4422"]],[19,20,["H8033"]],[20,22,["H1931"]],[22,23,["H3808"]],[23,26,["H4705"]],[26,29,["H5315"]],[29,31,["H2421"]]]},{"k":478,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H2009"]],[6,9,["H5375","H6440"]],[9,12,["H2088"]],[12,13,["H1697"]],[13,14,["H1571"]],[14,18,["H1115"]],[18,19,["H2015","(H853)"]],[19,21,["H5892"]],[21,24,["H834"]],[24,27,["H1696"]]]},{"k":479,"v":[[0,1,["H4116"]],[1,3,["H4422"]],[3,4,["H8033"]],[4,5,["H3588"]],[5,7,["H3808","H3201"]],[7,8,["H6213"]],[8,10,["H1697"]],[10,11,["H5704"]],[11,14,["H935"]],[14,15,["H8033"]],[15,16,["H5921","H3651"]],[16,18,["H8034"]],[18,21,["H5892"]],[21,23,["H7121"]],[23,24,["H6820"]]]},{"k":480,"v":[[0,2,["H8121"]],[2,4,["H3318"]],[4,5,["H5921"]],[5,7,["H776"]],[7,9,["H3876"]],[9,10,["H935"]],[10,12,["H6820"]]]},{"k":481,"v":[[0,3,["H3068"]],[3,4,["H4305"]],[4,5,["H5921"]],[5,6,["H5467"]],[6,8,["H5921"]],[8,9,["H6017"]],[9,10,["H1614"]],[10,12,["H784"]],[12,13,["H4480","H854"]],[13,15,["H3068"]],[15,17,["H4480"]],[17,18,["H8064"]]]},{"k":482,"v":[[0,3,["H2015","(H853)"]],[3,4,["H411"]],[4,5,["H5892"]],[5,7,["H3605"]],[7,9,["H3603"]],[9,11,["H3605"]],[11,13,["H3427"]],[13,16,["H5892"]],[16,20,["H6780"]],[20,23,["H127"]]]},{"k":483,"v":[[0,3,["H802"]],[3,4,["H5027"]],[4,7,["H4480","H310"]],[7,11,["H1961"]],[11,13,["H5333"]],[13,15,["H4417"]]]},{"k":484,"v":[[0,2,["H85"]],[2,5,["H7925"]],[5,8,["H1242"]],[8,9,["H413"]],[9,11,["H4725"]],[11,12,["H834","H8033"]],[12,14,["H5975","(H853)"]],[14,15,["H6440"]],[15,17,["H3068"]]]},{"k":485,"v":[[0,3,["H8259"]],[3,4,["H5921","H6440"]],[4,5,["H5467"]],[5,7,["H6017"]],[7,9,["H5921","H6440"]],[9,10,["H3605"]],[10,12,["H776"]],[12,15,["H3603"]],[15,17,["H7200"]],[17,19,["H2009"]],[19,21,["H7008"]],[21,24,["H776"]],[24,26,["H5927"]],[26,29,["H7008"]],[29,32,["H3536"]]]},{"k":486,"v":[[0,5,["H1961"]],[5,7,["H430"]],[7,8,["H7843","(H853)"]],[8,10,["H5892"]],[10,13,["H3603"]],[13,15,["H430"]],[15,16,["H2142","(H853)"]],[16,17,["H85"]],[17,19,["H7971","(H853)"]],[19,20,["H3876"]],[20,24,["H4480","H8432"]],[24,27,["H2018"]],[27,30,["H2015","(H853)"]],[30,32,["H5892"]],[32,35,["H2004","H834"]],[35,36,["H3876"]],[36,37,["H3427"]]]},{"k":487,"v":[[0,2,["H3876"]],[2,4,["H5927"]],[4,7,["H4480","H6820"]],[7,9,["H3427"]],[9,12,["H2022"]],[12,15,["H8147"]],[15,16,["H1323"]],[16,17,["H5973"]],[17,19,["H3588"]],[19,21,["H3372"]],[21,23,["H3427"]],[23,25,["H6820"]],[25,28,["H3427"]],[28,31,["H4631"]],[31,32,["H1931"]],[32,35,["H8147"]],[35,36,["H1323"]]]},{"k":488,"v":[[0,3,["H1067"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H6810"]],[7,9,["H1"]],[9,11,["H2204"]],[11,15,["H369"]],[15,17,["H376"]],[17,20,["H776"]],[20,23,["H935"]],[23,24,["H5921"]],[24,28,["H1870"]],[28,30,["H3605"]],[30,32,["H776"]]]},{"k":489,"v":[[0,1,["H1980"]],[1,4,["(H853)"]],[4,6,["H1"]],[6,7,["H8248"]],[7,8,["H3196"]],[8,12,["H7901"]],[12,13,["H5973"]],[13,18,["H2421"]],[18,19,["H2233"]],[19,22,["H4480","H1"]]]},{"k":490,"v":[[0,3,["(H853)"]],[3,5,["H1"]],[5,6,["H8248"]],[6,7,["H3196"]],[7,8,["H1931"]],[8,9,["H3915"]],[9,12,["H1067"]],[12,14,["H935"]],[14,16,["H7901"]],[16,17,["H854"]],[17,19,["H1"]],[19,22,["H3045"]],[22,23,["H3808"]],[23,27,["H7901"]],[27,31,["H6965"]]]},{"k":491,"v":[[0,5,["H1961"]],[5,8,["H4480","H4283"]],[8,11,["H1067"]],[11,12,["H559"]],[12,13,["H413"]],[13,15,["H6810"]],[15,16,["H2005"]],[16,18,["H7901"]],[18,19,["H570"]],[19,20,["H854"]],[20,22,["H1"]],[22,27,["H8248"]],[27,28,["H3196"]],[28,30,["H3915"]],[30,31,["H1571"]],[31,35,["H935"]],[35,37,["H7901"]],[37,38,["H5973"]],[38,43,["H2421"]],[43,44,["H2233"]],[44,47,["H4480","H1"]]]},{"k":492,"v":[[0,3,["(H853)"]],[3,5,["H1"]],[5,6,["H8248"]],[6,7,["H3196"]],[7,8,["H1931"]],[8,9,["H3915"]],[9,10,["H1571"]],[10,13,["H6810"]],[13,14,["H6965"]],[14,16,["H7901"]],[16,17,["H5973"]],[17,21,["H3045"]],[21,22,["H3808"]],[22,26,["H7901"]],[26,30,["H6965"]]]},{"k":493,"v":[[0,3,["H8147"]],[3,5,["H1323"]],[5,7,["H3876"]],[7,9,["H2029"]],[9,12,["H4480","H1"]]]},{"k":494,"v":[[0,3,["H1067"]],[3,4,["H3205"]],[4,6,["H1121"]],[6,8,["H7121"]],[8,10,["H8034"]],[10,11,["H4124"]],[11,13,["H1931"]],[13,16,["H1"]],[16,19,["H4124"]],[19,20,["H5704"]],[20,22,["H3117"]]]},{"k":495,"v":[[0,3,["H6810"]],[3,4,["H1931"]],[4,5,["H1571"]],[5,6,["H3205"]],[6,8,["H1121"]],[8,10,["H7121"]],[10,12,["H8034"]],[12,13,["H1151"]],[13,15,["H1931"]],[15,18,["H1"]],[18,21,["H1121"]],[21,23,["H5983"]],[23,24,["H5704"]],[24,26,["H3117"]]]},{"k":496,"v":[[0,2,["H85"]],[2,3,["H5265"]],[3,5,["H4480","H8033"]],[5,8,["H5045"]],[8,9,["H776"]],[9,11,["H3427"]],[11,12,["H996"]],[12,13,["H6946"]],[13,15,["H7793"]],[15,17,["H1481"]],[17,19,["H1642"]]]},{"k":497,"v":[[0,2,["H85"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H8283"]],[5,7,["H802"]],[7,8,["H1931"]],[8,11,["H269"]],[11,13,["H40"]],[13,14,["H4428"]],[14,16,["H1642"]],[16,17,["H7971"]],[17,19,["H3947","(H853)"]],[19,20,["H8283"]]]},{"k":498,"v":[[0,2,["H430"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H40"]],[5,8,["H2472"]],[8,10,["H3915"]],[10,12,["H559"]],[12,15,["H2009"]],[15,21,["H4191"]],[21,22,["H5921"]],[22,24,["H802"]],[24,25,["H834"]],[25,28,["H3947"]],[28,30,["H1931"]],[30,33,["H1167"]],[33,34,["H1166"]]]},{"k":499,"v":[[0,2,["H40"]],[2,4,["H3808"]],[4,6,["H7126","H413"]],[6,10,["H559"]],[10,11,["H136"]],[11,14,["H2026"]],[14,15,["H1571"]],[15,17,["H6662"]],[17,18,["H1471"]]]},{"k":500,"v":[[0,1,["H559"]],[1,2,["H1931"]],[2,3,["H3808"]],[3,6,["H1931"]],[6,9,["H269"]],[9,11,["H1931"]],[11,12,["H1571"]],[12,14,["H1931"]],[14,15,["H559"]],[15,16,["H1931"]],[16,19,["H251"]],[19,22,["H8537"]],[22,25,["H3824"]],[25,27,["H5356"]],[27,30,["H3709"]],[30,33,["H6213"]],[33,34,["H2063"]]]},{"k":501,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,8,["H2472"]],[8,9,["H1571"]],[9,10,["H595"]],[10,11,["H3045"]],[11,12,["H3588"]],[12,14,["H6213"]],[14,15,["H2063"]],[15,18,["H8537"]],[18,21,["H3824"]],[21,23,["H595"]],[23,24,["H1571"]],[24,25,["H2820"]],[25,28,["H4480","H2398"]],[28,31,["H5921","H3651"]],[31,32,["H5414"]],[32,35,["H3808"]],[35,37,["H5060","H413"]],[37,38,[]]]},{"k":502,"v":[[0,1,["H6258"]],[1,3,["H7725"]],[3,5,["H376"]],[5,7,["H802"]],[7,8,["H3588"]],[8,9,["H1931"]],[9,12,["H5030"]],[12,16,["H6419"]],[16,17,["H1157"]],[17,22,["H2421"]],[22,24,["H518"]],[24,26,["H7725"]],[26,28,["H369"]],[28,29,["H3045"]],[29,31,["H3588"]],[31,35,["H4191","H4191"]],[35,36,["H859"]],[36,38,["H3605"]],[38,39,["H834"]],[39,41,[]]]},{"k":503,"v":[[0,2,["H40"]],[2,4,["H7925"]],[4,7,["H1242"]],[7,9,["H7121"]],[9,10,["H3605"]],[10,12,["H5650"]],[12,14,["H1696","(H853)"]],[14,15,["H3605"]],[15,16,["H428"]],[16,17,["H1697"]],[17,20,["H241"]],[20,23,["H376"]],[23,26,["H3372","H3966"]]]},{"k":504,"v":[[0,2,["H40"]],[2,3,["H7121"]],[3,4,["H85"]],[4,6,["H559"]],[6,9,["H4100"]],[9,12,["H6213"]],[12,16,["H4100"]],[16,19,["H2398"]],[19,21,["H3588"]],[21,24,["H935"]],[24,25,["H5921"]],[25,28,["H5921"]],[28,30,["H4467"]],[30,32,["H1419"]],[32,33,["H2401"]],[33,36,["H6213"]],[36,37,["H4639"]],[37,38,["H5973"]],[38,40,["H834"]],[40,42,["H3808"]],[42,45,["H6213"]]]},{"k":505,"v":[[0,2,["H40"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H85"]],[5,6,["H4100"]],[6,7,["H7200"]],[7,9,["H3588"]],[9,12,["H6213","(H853)"]],[12,13,["H2088"]],[13,14,["H1697"]]]},{"k":506,"v":[[0,2,["H85"]],[2,3,["H559"]],[3,4,["H3588"]],[4,6,["H559"]],[6,7,["H7535"]],[7,9,["H3374"]],[9,11,["H430"]],[11,13,["H369"]],[13,15,["H2088"]],[15,16,["H4725"]],[16,20,["H2026"]],[20,22,["H5921"]],[22,24,["H802"]],[24,25,["H1697"]]]},{"k":507,"v":[[0,2,["H1571"]],[2,3,["H546"]],[3,7,["H269"]],[7,8,["H1931"]],[8,11,["H1323"]],[11,14,["H1"]],[14,15,["H389"]],[15,16,["H3808"]],[16,18,["H1323"]],[18,21,["H517"]],[21,24,["H1961"]],[24,26,["H802"]]]},{"k":508,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H430"]],[7,11,["H8582"]],[11,15,["H4480","H1004","H1"]],[15,18,["H559"]],[18,21,["H2088"]],[21,24,["H2617"]],[24,25,["H834"]],[25,28,["H6213"]],[28,29,["H5973"]],[29,31,["H413"]],[31,32,["H3605"]],[32,33,["H4725"]],[33,34,["H834","H8033"]],[34,37,["H935"]],[37,38,["H559"]],[38,41,["H1931"]],[41,44,["H251"]]]},{"k":509,"v":[[0,2,["H40"]],[2,3,["H3947"]],[3,4,["H6629"]],[4,6,["H1241"]],[6,8,["H5650"]],[8,10,["H8198"]],[10,12,["H5414"]],[12,15,["H85"]],[15,17,["H7725"]],[17,18,["(H853)"]],[18,19,["H8283"]],[19,21,["H802"]]]},{"k":510,"v":[[0,2,["H40"]],[2,3,["H559"]],[3,4,["H2009"]],[4,6,["H776"]],[6,8,["H6440"]],[8,10,["H3427"]],[10,13,["H2896","H5869"]],[13,14,[]]]},{"k":511,"v":[[0,3,["H8283"]],[3,5,["H559"]],[5,6,["H2009"]],[6,9,["H5414"]],[9,11,["H251"]],[11,13,["H505"]],[13,16,["H3701"]],[16,17,["H2009"]],[17,18,["H1931"]],[18,23,["H3682"]],[23,26,["H5869"]],[26,28,["H3605"]],[28,29,["H834"]],[29,31,["H854"]],[31,34,["H854"]],[34,35,["H3605"]],[35,40,["H3198"]]]},{"k":512,"v":[[0,2,["H85"]],[2,3,["H6419"]],[3,4,["H413"]],[4,5,["H430"]],[5,7,["H430"]],[7,8,["H7495","(H853)"]],[8,9,["H40"]],[9,12,["H802"]],[12,15,["H519"]],[15,18,["H3205"]],[18,19,[]]]},{"k":513,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,7,["H6113","H6113","H1157"]],[7,8,["H3605"]],[8,10,["H7358"]],[10,13,["H1004"]],[13,15,["H40"]],[15,16,["H5921","H1697"]],[16,18,["H8283"]],[18,19,["H85"]],[19,20,["H802"]]]},{"k":514,"v":[[0,3,["H3068"]],[3,4,["H6485","(H853)"]],[4,5,["H8283"]],[5,6,["H834"]],[6,9,["H559"]],[9,12,["H3068"]],[12,13,["H6213"]],[13,15,["H8283"]],[15,16,["H834"]],[16,19,["H1696"]]]},{"k":515,"v":[[0,2,["H8283"]],[2,3,["H2029"]],[3,5,["H3205"]],[5,6,["H85"]],[6,8,["H1121"]],[8,12,["H2208"]],[12,16,["H4150"]],[16,18,["H834"]],[18,19,["H430"]],[19,21,["H1696"]],[21,23,[]]]},{"k":516,"v":[[0,2,["H85"]],[2,3,["H7121","(H853)"]],[3,5,["H8034"]],[5,8,["H1121"]],[8,11,["H3205"]],[11,14,["H834"]],[14,15,["H8283"]],[15,16,["H3205"]],[16,19,["H3327"]]]},{"k":517,"v":[[0,2,["H85"]],[2,3,["H4135"]],[3,5,["H1121"]],[5,6,["H3327"]],[6,8,["H8083"]],[8,9,["H3117"]],[9,10,["H1121"]],[10,11,["H834"]],[11,12,["H430"]],[12,14,["H6680"]],[14,15,[]]]},{"k":518,"v":[[0,2,["H85"]],[2,5,["H3967"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,8,["(H853)"]],[8,10,["H1121"]],[10,11,["H3327"]],[11,13,["H3205"]],[13,15,[]]]},{"k":519,"v":[[0,2,["H8283"]],[2,3,["H559"]],[3,4,["H430"]],[4,6,["H6213"]],[6,9,["H6712"]],[9,12,["H3605"]],[12,14,["H8085"]],[14,16,["H6711"]],[16,18,[]]]},{"k":520,"v":[[0,3,["H559"]],[3,4,["H4310"]],[4,7,["H4448"]],[7,9,["H85"]],[9,11,["H8283"]],[11,16,["H3243","H1121"]],[16,17,["H3588"]],[17,20,["H3205"]],[20,23,["H1121"]],[23,27,["H2208"]]]},{"k":521,"v":[[0,3,["H3206"]],[3,4,["H1431"]],[4,7,["H1580"]],[7,9,["H85"]],[9,10,["H6213"]],[10,12,["H1419"]],[12,13,["H4960"]],[13,16,["H3117"]],[16,17,["(H853)"]],[17,18,["H3327"]],[18,20,["H1580"]]]},{"k":522,"v":[[0,2,["H8283"]],[2,3,["H7200","(H853)"]],[3,5,["H1121"]],[5,7,["H1904"]],[7,9,["H4713"]],[9,10,["H834"]],[10,13,["H3205"]],[13,15,["H85"]],[15,16,["H6711"]]]},{"k":523,"v":[[0,3,["H559"]],[3,5,["H85"]],[5,7,["H1644"]],[7,8,["H2063"]],[8,9,["H519"]],[9,12,["H1121"]],[12,13,["H3588"]],[13,15,["H1121"]],[15,17,["H2063"]],[17,18,["H519"]],[18,20,["H3808"]],[20,22,["H3423"]],[22,23,["H5973"]],[23,25,["H1121"]],[25,27,["H5973"]],[27,28,["H3327"]]]},{"k":524,"v":[[0,3,["H1697"]],[3,6,["H7489","H3966"]],[6,8,["H85"]],[8,9,["H5869"]],[9,10,["H5921","H182"]],[10,13,["H1121"]]]},{"k":525,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H85"]],[5,8,["H408"]],[8,10,["H7489"]],[10,13,["H5869"]],[13,15,["H5921"]],[15,17,["H5288"]],[17,20,["H5921"]],[20,22,["H519"]],[22,24,["H3605"]],[24,25,["H834"]],[25,26,["H8283"]],[26,28,["H559"]],[28,29,["H413"]],[29,31,["H8085"]],[31,34,["H6963"]],[34,35,["H3588"]],[35,37,["H3327"]],[37,40,["H2233"]],[40,42,["H7121"]]]},{"k":526,"v":[[0,2,["H1571","(H853)"]],[2,5,["H1121"]],[5,8,["H519"]],[8,11,["H7760"]],[11,13,["H1471"]],[13,14,["H3588"]],[14,15,["H1931"]],[15,18,["H2233"]]]},{"k":527,"v":[[0,2,["H85"]],[2,5,["H7925"]],[5,8,["H1242"]],[8,10,["H3947"]],[10,11,["H3899"]],[11,14,["H2573"]],[14,16,["H4325"]],[16,18,["H5414"]],[18,20,["H413"]],[20,21,["H1904"]],[21,22,["H7760"]],[22,24,["H5921"]],[24,26,["H7926"]],[26,29,["H3206"]],[29,33,["H7971"]],[33,36,["H1980"]],[36,38,["H8582"]],[38,41,["H4057"]],[41,43,["H884"]]]},{"k":528,"v":[[0,3,["H4325"]],[3,5,["H3615"]],[5,6,["H4480"]],[6,8,["H2573"]],[8,11,["H7993","(H853)"]],[11,13,["H3206"]],[13,14,["H8478"]],[14,15,["H259"]],[15,18,["H7880"]]]},{"k":529,"v":[[0,3,["H1980"]],[3,7,["H3427"]],[7,9,["H4480","H5048"]],[9,14,["H7368"]],[14,19,["H2909","H7198"]],[19,20,["H3588"]],[20,22,["H559"]],[22,25,["H408"]],[25,26,["H7200"]],[26,28,["H4194"]],[28,31,["H3206"]],[31,34,["H3427"]],[34,36,["H4480","H5048"]],[36,40,["H5375","(H853)"]],[40,42,["H6963"]],[42,44,["H1058"]]]},{"k":530,"v":[[0,2,["H430"]],[2,3,["H8085","(H853)"]],[3,5,["H6963"]],[5,8,["H5288"]],[8,11,["H4397"]],[11,13,["H430"]],[13,14,["H7121"]],[14,15,["H413"]],[15,16,["H1904"]],[16,18,["H4480"]],[18,19,["H8064"]],[19,21,["H559"]],[21,24,["H4100"]],[24,27,["H1904"]],[27,28,["H3372"]],[28,29,["H408"]],[29,30,["H3588"]],[30,31,["H430"]],[31,33,["H8085","H413"]],[33,35,["H6963"]],[35,38,["H5288"]],[38,39,["H834","H8033"]],[39,40,["H1931"]],[40,41,[]]]},{"k":531,"v":[[0,1,["H6965"]],[1,3,["H5375","(H853)"]],[3,5,["H5288"]],[5,7,["H2388"]],[7,9,["H854"]],[9,11,["H3027"]],[11,12,["H3588"]],[12,15,["H7760"]],[15,18,["H1419"]],[18,19,["H1471"]]]},{"k":532,"v":[[0,2,["H430"]],[2,3,["H6491","(H853)"]],[3,5,["H5869"]],[5,8,["H7200"]],[8,10,["H875"]],[10,12,["H4325"]],[12,15,["H1980"]],[15,17,["H4390","(H853)"]],[17,19,["H2573"]],[19,21,["H4325"]],[21,23,["(H853)"]],[23,25,["H5288"]],[25,26,["H8248"]]]},{"k":533,"v":[[0,2,["H430"]],[2,3,["H1961"]],[3,4,["H854"]],[4,6,["H5288"]],[6,9,["H1431"]],[9,11,["H3427"]],[11,14,["H4057"]],[14,16,["H1961"]],[16,18,["H7235","H7199"]]]},{"k":534,"v":[[0,3,["H3427"]],[3,6,["H4057"]],[6,8,["H6290"]],[8,11,["H517"]],[11,12,["H3947"]],[12,15,["H802"]],[15,19,["H4480","H776"]],[19,21,["H4714"]]]},{"k":535,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,8,["H6256"]],[8,10,["H40"]],[10,12,["H6369"]],[12,15,["H8269"]],[15,18,["H6635"]],[18,19,["H559"]],[19,20,["H413"]],[20,21,["H85"]],[21,22,["H559"]],[22,23,["H430"]],[23,25,["H5973"]],[25,28,["H3605"]],[28,29,["H834"]],[29,30,["H859"]],[30,31,["H6213"]]]},{"k":536,"v":[[0,1,["H6258"]],[1,3,["H7650"]],[3,6,["H2008"]],[6,8,["H430"]],[8,14,["H8266"]],[14,20,["H5209"]],[20,25,["H5220"]],[25,30,["H2617"]],[30,31,["H834"]],[31,34,["H6213"]],[34,35,["H5973"]],[35,39,["H6213"]],[39,40,["H5978"]],[40,43,["H5973"]],[43,45,["H776"]],[45,46,["H834"]],[46,49,["H1481"]]]},{"k":537,"v":[[0,2,["H85"]],[2,3,["H559"]],[3,4,["H595"]],[4,6,["H7650"]]]},{"k":538,"v":[[0,2,["H85"]],[2,3,["H3198","(H853)"]],[3,4,["H40"]],[4,6,["H5921","H182"]],[6,8,["H875"]],[8,10,["H4325"]],[10,11,["H834"]],[11,12,["H40"]],[12,13,["H5650"]],[13,17,["H1497"]]]},{"k":539,"v":[[0,2,["H40"]],[2,3,["H559"]],[3,5,["H3045"]],[5,6,["H3808"]],[6,7,["H4310"]],[7,9,["H6213","(H853)"]],[9,10,["H2088"]],[10,11,["H1697"]],[11,12,["H3808"]],[12,14,["H859"]],[14,15,["H5046"]],[15,17,["H3808"]],[17,18,["H1571"]],[18,19,["H8085"]],[19,20,["H595"]],[20,23,["H1115"]],[23,25,["H3117"]]]},{"k":540,"v":[[0,2,["H85"]],[2,3,["H3947"]],[3,4,["H6629"]],[4,6,["H1241"]],[6,8,["H5414"]],[8,11,["H40"]],[11,13,["H8147"]],[13,16,["H3772"]],[16,18,["H1285"]]]},{"k":541,"v":[[0,2,["H85"]],[2,3,["H5324","(H853)"]],[3,4,["H7651"]],[4,6,["H3535"]],[6,9,["H6629"]],[9,11,["H905"]]]},{"k":542,"v":[[0,2,["H40"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H85"]],[5,6,["H4100"]],[6,8,["H428"]],[8,9,["H7651"]],[9,11,["H3535"]],[11,12,["H834"]],[12,15,["H5324"]],[15,17,["H905"]]]},{"k":543,"v":[[0,3,["H559"]],[3,4,["H3588"]],[4,5,["(H853)"]],[5,6,["H7651"]],[6,8,["H3535"]],[8,11,["H3947"]],[11,14,["H4480","H3027"]],[14,15,["H5668"]],[15,18,["H1961"]],[18,20,["H5713"]],[20,23,["H3588"]],[23,26,["H2658","(H853)"]],[26,27,["H2088"]],[27,28,["H875"]]]},{"k":544,"v":[[0,1,["H5921","H3651"]],[1,3,["H7121"]],[3,4,["H1931"]],[4,5,["H4725"]],[5,6,["H884"]],[6,7,["H3588"]],[7,8,["H8033"]],[8,10,["H7650"]],[10,11,["H8147"]],[11,13,[]]]},{"k":545,"v":[[0,3,["H3772"]],[3,5,["H1285"]],[5,7,["H884"]],[7,9,["H40"]],[9,11,["H6965"]],[11,13,["H6369"]],[13,16,["H8269"]],[16,19,["H6635"]],[19,22,["H7725"]],[22,23,["H413"]],[23,25,["H776"]],[25,28,["H6430"]]]},{"k":546,"v":[[0,3,["H5193"]],[3,5,["H815"]],[5,7,["H884"]],[7,9,["H7121"]],[9,10,["H8033"]],[10,13,["H8034"]],[13,16,["H3068"]],[16,18,["H5769"]],[18,19,["H410"]]]},{"k":547,"v":[[0,2,["H85"]],[2,3,["H1481"]],[3,6,["H6430"]],[6,7,["H776"]],[7,8,["H7227"]],[8,9,["H3117"]]]},{"k":548,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H428"]],[7,8,["H1697"]],[8,10,["H430"]],[10,12,["H5254","(H853)"]],[12,13,["H85"]],[13,15,["H559"]],[15,16,["H413"]],[16,18,["H85"]],[18,21,["H559"]],[21,22,["H2009"]],[22,25,[]]]},{"k":549,"v":[[0,3,["H559"]],[3,4,["H3947"]],[4,5,["H4994","(H853)"]],[5,7,["H1121","(H853)"]],[7,9,["H3173"]],[9,10,["(H853)"]],[10,11,["H3327"]],[11,12,["H834"]],[12,14,["H157"]],[14,16,["H1980"]],[16,18,["H413"]],[18,20,["H776"]],[20,22,["H4179"]],[22,24,["H5927"]],[24,26,["H8033"]],[26,30,["H5930"]],[30,31,["H5921"]],[31,32,["H259"]],[32,35,["H2022"]],[35,36,["H834"]],[36,39,["H559"]],[39,41,["H413"]]]},{"k":550,"v":[[0,2,["H85"]],[2,5,["H7925"]],[5,8,["H1242"]],[8,10,["H2280","(H853)"]],[10,12,["H2543"]],[12,14,["H3947","(H853)"]],[14,15,["H8147"]],[15,19,["H5288"]],[19,20,["H854"]],[20,23,["H3327"]],[23,25,["H1121"]],[25,27,["H1234"]],[27,29,["H6086"]],[29,33,["H5930"]],[33,36,["H6965"]],[36,38,["H1980"]],[38,39,["H413"]],[39,41,["H4725"]],[41,43,["H834"]],[43,44,["H430"]],[44,46,["H559"]],[46,47,[]]]},{"k":551,"v":[[0,4,["H7992"]],[4,5,["H3117"]],[5,6,["H85"]],[6,8,["H5375","(H853)"]],[8,10,["H5869"]],[10,12,["H7200","(H853)"]],[12,14,["H4725"]],[14,16,["H4480","H7350"]]]},{"k":552,"v":[[0,2,["H85"]],[2,3,["H559"]],[3,4,["H413"]],[4,7,["H5288"]],[7,8,["H3427"]],[8,10,["H6311"]],[10,11,["H5973"]],[11,13,["H2543"]],[13,15,["H589"]],[15,18,["H5288"]],[18,20,["H1980"]],[20,21,["H5704","H3541"]],[21,23,["H7812"]],[23,26,["H7725"]],[26,27,["H413"]],[27,28,[]]]},{"k":553,"v":[[0,2,["H85"]],[2,3,["H3947","(H853)"]],[3,5,["H6086"]],[5,9,["H5930"]],[9,11,["H7760"]],[11,13,["H5921"]],[13,14,["H3327"]],[14,16,["H1121"]],[16,19,["H3947","(H853)"]],[19,21,["H784"]],[21,24,["H3027"]],[24,27,["H3979"]],[27,30,["H1980"]],[30,31,["H8147"]],[31,34,["H3162"]]]},{"k":554,"v":[[0,2,["H3327"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H85"]],[5,7,["H1"]],[7,9,["H559"]],[9,11,["H1"]],[11,14,["H559"]],[14,15,["H2009"]],[15,19,["H1121"]],[19,22,["H559"]],[22,23,["H2009"]],[23,25,["H784"]],[25,28,["H6086"]],[28,30,["H346"]],[30,33,["H7716"]],[33,37,["H5930"]]]},{"k":555,"v":[[0,2,["H85"]],[2,3,["H559"]],[3,5,["H1121"]],[5,6,["H430"]],[6,8,["H7200"]],[8,11,["H7716"]],[11,15,["H5930"]],[15,18,["H1980"]],[18,19,["H8147"]],[19,22,["H3162"]]]},{"k":556,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H4725"]],[6,7,["H834"]],[7,8,["H430"]],[8,10,["H559"]],[10,14,["H85"]],[14,15,["H1129","(H853)"]],[15,17,["H4196"]],[17,18,["H8033"]],[18,24,["H6186","(H853)","H6086"]],[24,26,["H6123","(H853)"]],[26,27,["H3327"]],[27,29,["H1121"]],[29,31,["H7760"]],[31,33,["H5921"]],[33,35,["H4196"]],[35,36,["H4480","H4605"]],[36,38,["H6086"]]]},{"k":557,"v":[[0,2,["H85"]],[2,4,["H7971","(H853)"]],[4,6,["H3027"]],[6,8,["H3947","(H853)"]],[8,10,["H3979"]],[10,12,["H7819","(H853)"]],[12,14,["H1121"]]]},{"k":558,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H7121"]],[7,8,["H413"]],[8,11,["H4480"]],[11,12,["H8064"]],[12,14,["H559"]],[14,15,["H85"]],[15,16,["H85"]],[16,19,["H559"]],[19,20,["H2009"]],[20,22,[]]]},{"k":559,"v":[[0,3,["H559"]],[3,4,["H7971"]],[4,5,["H408"]],[5,7,["H3027"]],[7,8,["H413"]],[8,10,["H5288"]],[10,11,["H408"]],[11,12,["H6213"]],[12,15,["H3972"]],[15,18,["H3588"]],[18,19,["H6258"]],[19,21,["H3045"]],[21,22,["H3588"]],[22,23,["H859"]],[23,24,["H3373"]],[24,25,["H430"]],[25,29,["H3808"]],[29,30,["H2820","(H853)"]],[30,32,["H1121","(H853)"]],[32,34,["H3173"]],[34,36,["H4480"]],[36,37,[]]]},{"k":560,"v":[[0,2,["H85"]],[2,4,["H5375","(H853)"]],[4,6,["H5869"]],[6,8,["H7200"]],[8,10,["H2009"]],[10,11,["H310"]],[11,14,["H352"]],[14,15,["H270"]],[15,18,["H5442"]],[18,21,["H7161"]],[21,23,["H85"]],[23,24,["H1980"]],[24,26,["H3947","(H853)"]],[26,28,["H352"]],[28,32,["H5927"]],[32,36,["H5930"]],[36,40,["H8478"]],[40,42,["H1121"]]]},{"k":561,"v":[[0,2,["H85"]],[2,3,["H7121"]],[3,5,["H8034"]],[5,7,["H1931"]],[7,8,["H4725"]],[8,9,["H3070"]],[9,10,["H834"]],[10,13,["H559"]],[13,16,["H3117"]],[16,19,["H2022"]],[19,22,["H3068"]],[22,26,["H7200"]]]},{"k":562,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H7121"]],[7,8,["H413"]],[8,9,["H85"]],[9,11,["H4480"]],[11,12,["H8064"]],[12,15,["H8145"]]]},{"k":563,"v":[[0,2,["H559"]],[2,7,["H7650"]],[7,8,["H5002"]],[8,10,["H3068"]],[10,11,["H3588"]],[11,12,["H3282","H834"]],[12,15,["H6213","(H853)"]],[15,16,["H2088"]],[16,17,["H1697"]],[17,20,["H3808"]],[20,21,["H2820","(H853)"]],[21,23,["H1121","(H853)"]],[23,25,["H3173"]],[25,26,[]]]},{"k":564,"v":[[0,1,["H3588"]],[1,3,["H1288"]],[3,6,["H1288"]],[6,10,["H7235"]],[10,13,["H7235","(H853)"]],[13,15,["H2233"]],[15,18,["H3556"]],[18,21,["H8064"]],[21,25,["H2344"]],[25,26,["H834"]],[26,28,["H5921"]],[28,30,["H3220"]],[30,31,["H8193"]],[31,34,["H2233"]],[34,36,["H3423","(H853)"]],[36,38,["H8179"]],[38,41,["H341"]]]},{"k":565,"v":[[0,4,["H2233"]],[4,6,["H3605"]],[6,8,["H1471"]],[8,11,["H776"]],[11,13,["H1288"]],[13,14,["H6118","H834"]],[14,17,["H8085"]],[17,19,["H6963"]]]},{"k":566,"v":[[0,2,["H85"]],[2,3,["H7725"]],[3,4,["H413"]],[4,7,["H5288"]],[7,11,["H6965"]],[11,13,["H1980"]],[13,14,["H3162"]],[14,15,["H413"]],[15,16,["H884"]],[16,18,["H85"]],[18,19,["H3427"]],[19,21,["H884"]]]},{"k":567,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H428"]],[7,8,["H1697"]],[8,12,["H5046"]],[12,13,["H85"]],[13,14,["H559"]],[14,15,["H2009"]],[15,16,["H4435"]],[16,17,["H1931"]],[17,19,["H1571"]],[19,20,["H3205"]],[20,21,["H1121"]],[21,24,["H251"]],[24,25,["H5152"]]]},{"k":568,"v":[[0,0,["(H853)"]],[0,1,["H5780"]],[1,3,["H1060"]],[3,5,["H938"]],[5,7,["H251"]],[7,9,["H7055"]],[9,11,["H1"]],[11,13,["H758"]]]},{"k":569,"v":[[0,2,["H3777"]],[2,4,["H2375"]],[4,6,["H6394"]],[6,8,["H3044"]],[8,10,["H1328"]]]},{"k":570,"v":[[0,2,["H1328"]],[2,3,["H3205","(H853)"]],[3,4,["H7259"]],[4,5,["H428"]],[5,6,["H8083"]],[6,7,["H4435"]],[7,9,["H3205"]],[9,11,["H5152"]],[11,12,["H85"]],[12,13,["H251"]]]},{"k":571,"v":[[0,3,["H6370"]],[3,5,["H8034"]],[5,7,["H7208"]],[7,8,["H1931"]],[8,9,["H3205"]],[9,10,["H1571","(H853)"]],[10,11,["H2875"]],[11,13,["H1514"]],[13,15,["H8477"]],[15,17,["H4601"]]]},{"k":572,"v":[[0,2,["H8283"]],[2,3,["H1961"]],[3,5,["H3967"]],[5,7,["H7651"]],[7,9,["H6242"]],[9,10,["H8141"]],[10,11,["H2416"]],[11,15,["H8141"]],[15,18,["H2416"]],[18,20,["H8283"]]]},{"k":573,"v":[[0,2,["H8283"]],[2,3,["H4191"]],[3,5,["H7153"]],[5,7,["H1931"]],[7,9,["H2275"]],[9,12,["H776"]],[12,14,["H3667"]],[14,16,["H85"]],[16,17,["H935"]],[17,19,["H5594"]],[19,21,["H8283"]],[21,24,["H1058"]],[24,26,[]]]},{"k":574,"v":[[0,2,["H85"]],[2,4,["H6965"]],[4,6,["H4480","H5921","H6440"]],[6,8,["H4191"]],[8,10,["H1696"]],[10,11,["H413"]],[11,13,["H1121"]],[13,15,["H2845"]],[15,16,["H559"]]]},{"k":575,"v":[[0,1,["H595"]],[1,4,["H1616"]],[4,7,["H8453"]],[7,8,["H5973"]],[8,10,["H5414"]],[10,13,["H272"]],[13,16,["H6913"]],[16,17,["H5973"]],[17,22,["H6912"]],[22,24,["H4191"]],[24,28,["H4480","H6440"]]]},{"k":576,"v":[[0,3,["H1121"]],[3,5,["H2845"]],[5,6,["H6030","(H853)"]],[6,7,["H85"]],[7,8,["H559"]],[8,10,[]]]},{"k":577,"v":[[0,1,["H8085"]],[1,4,["H113"]],[4,5,["H859"]],[5,8,["H430"]],[8,9,["H5387"]],[9,10,["H8432"]],[10,14,["H4005"]],[14,17,["H6913"]],[17,18,["H6912","(H853)"]],[18,20,["H4191"]],[20,21,["H376","H3808"]],[21,22,["H4480"]],[22,25,["H3607"]],[25,26,["H4480"]],[26,27,["(H853)"]],[27,29,["H6913"]],[29,34,["H4480","H6912"]],[34,36,["H4191"]]]},{"k":578,"v":[[0,2,["H85"]],[2,4,["H6965"]],[4,7,["H7812"]],[7,10,["H5971"]],[10,13,["H776"]],[13,17,["H1121"]],[17,19,["H2845"]]]},{"k":579,"v":[[0,3,["H1696"]],[3,4,["H854"]],[4,6,["H559"]],[6,7,["H518"]],[7,9,["H3426","(H853)"]],[9,11,["H5315"]],[11,15,["H6912","(H853)"]],[15,17,["H4191"]],[17,21,["H4480","H6440"]],[21,22,["H8085"]],[22,25,["H6293"]],[25,29,["H6085"]],[29,31,["H1121"]],[31,33,["H6714"]]]},{"k":580,"v":[[0,4,["H5414"]],[4,5,["(H853)"]],[5,7,["H4631"]],[7,9,["H4375"]],[9,10,["H834"]],[10,13,["H834"]],[13,17,["H7097"]],[17,20,["H7704"]],[20,24,["H3701"]],[24,28,["H4392"]],[28,31,["H5414"]],[31,36,["H272"]],[36,39,["H6913"]],[39,40,["H8432"]],[40,41,[]]]},{"k":581,"v":[[0,2,["H6085"]],[2,3,["H3427"]],[3,4,["H8432"]],[4,6,["H1121"]],[6,8,["H2845"]],[8,10,["H6085"]],[10,12,["H2850"]],[12,13,["H6030","(H853)"]],[13,14,["H85"]],[14,17,["H241"]],[17,20,["H1121"]],[20,22,["H2845"]],[22,25,["H3605"]],[25,28,["H935"]],[28,31,["H8179"]],[31,34,["H5892"]],[34,35,["H559"]]]},{"k":582,"v":[[0,1,["H3808"]],[1,3,["H113"]],[3,4,["H8085"]],[4,7,["H7704"]],[7,8,["H5414"]],[8,13,["H4631"]],[13,14,["H834"]],[14,18,["H5414"]],[18,23,["H5869"]],[23,26,["H1121"]],[26,29,["H5971"]],[29,30,["H5414"]],[30,34,["H6912"]],[34,36,["H4191"]]]},{"k":583,"v":[[0,2,["H85"]],[2,5,["H7812"]],[5,6,["H6440"]],[6,8,["H5971"]],[8,11,["H776"]]]},{"k":584,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,5,["H6085"]],[5,8,["H241"]],[8,11,["H5971"]],[11,14,["H776"]],[14,15,["H559"]],[15,16,["H389"]],[16,17,["H518"]],[17,18,["H859"]],[18,24,["H3863"]],[24,25,["H8085"]],[25,29,["H5414"]],[29,31,["H3701"]],[31,34,["H7704"]],[34,35,["H3947"]],[35,37,["H4480"]],[37,42,["H6912","(H853)"]],[42,44,["H4191"]],[44,45,["H8033"]]]},{"k":585,"v":[[0,2,["H6085"]],[2,3,["H6030","(H853)"]],[3,4,["H85"]],[4,5,["H559"]],[5,7,[]]]},{"k":586,"v":[[0,2,["H113"]],[2,3,["H8085"]],[3,7,["H776"]],[7,10,["H702"]],[10,11,["H3967"]],[11,12,["H8255"]],[12,14,["H3701"]],[14,15,["H4100"]],[15,17,["H1931"]],[17,18,["H996"]],[18,22,["H6912"]],[22,25,["H4191"]]]},{"k":587,"v":[[0,2,["H85"]],[2,3,["H8085"]],[3,4,["H413"]],[4,5,["H6085"]],[5,7,["H85"]],[7,8,["H8254"]],[8,10,["H6085","(H853)"]],[10,12,["H3701"]],[12,13,["H834"]],[13,16,["H1696"]],[16,19,["H241"]],[19,22,["H1121"]],[22,24,["H2845"]],[24,25,["H702"]],[25,26,["H3967"]],[26,27,["H8255"]],[27,29,["H3701"]],[29,30,["H5674"]],[30,34,["H5503"]]]},{"k":588,"v":[[0,3,["H7704"]],[3,5,["H6085"]],[5,6,["H834"]],[6,9,["H4375"]],[9,10,["H834"]],[10,12,["H6440"]],[12,13,["H4471"]],[13,15,["H7704"]],[15,18,["H4631"]],[18,19,["H834"]],[19,23,["H3605"]],[23,25,["H6086"]],[25,26,["H834"]],[26,30,["H7704"]],[30,31,["H834"]],[31,34,["H3605"]],[34,36,["H1366"]],[36,38,["H5439"]],[38,41,["H6965"]]]},{"k":589,"v":[[0,2,["H85"]],[2,5,["H4736"]],[5,8,["H5869"]],[8,11,["H1121"]],[11,13,["H2845"]],[13,15,["H3605"]],[15,18,["H935"]],[18,21,["H8179"]],[21,24,["H5892"]]]},{"k":590,"v":[[0,2,["H310"]],[2,3,["H3651"]],[3,4,["H85"]],[4,5,["H6912","(H853)"]],[5,6,["H8283"]],[6,8,["H802"]],[8,9,["H413"]],[9,11,["H4631"]],[11,14,["H7704"]],[14,16,["H4375"]],[16,17,["H5921","H6440"]],[17,18,["H4471"]],[18,20,["H1931"]],[20,22,["H2275"]],[22,25,["H776"]],[25,27,["H3667"]]]},{"k":591,"v":[[0,3,["H7704"]],[3,6,["H4631"]],[6,7,["H834"]],[7,12,["H6965"]],[12,14,["H85"]],[14,17,["H272"]],[17,20,["H6913"]],[20,21,["H4480","H854"]],[21,23,["H1121"]],[23,25,["H2845"]]]},{"k":592,"v":[[0,2,["H85"]],[2,4,["H2204"]],[4,7,["H935"]],[7,9,["H3117"]],[9,12,["H3068"]],[12,14,["H1288","(H853)"]],[14,15,["H85"]],[15,18,["H3605"]]]},{"k":593,"v":[[0,2,["H85"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H2205"]],[6,7,["H5650"]],[7,10,["H1004"]],[10,12,["H4910"]],[12,14,["H3605"]],[14,15,["H834"]],[15,18,["H7760"]],[18,21,["H4994"]],[21,23,["H3027"]],[23,24,["H8478"]],[24,26,["H3409"]]]},{"k":594,"v":[[0,6,["H7650"]],[6,9,["H3068"]],[9,11,["H430"]],[11,13,["H8064"]],[13,16,["H430"]],[16,19,["H776"]],[19,20,["H834"]],[20,23,["H3808"]],[23,24,["H3947"]],[24,26,["H802"]],[26,29,["H1121"]],[29,32,["H4480","H1323"]],[32,35,["H3669"]],[35,36,["H7130"]],[36,37,["H834"]],[37,38,["H595"]],[38,39,["H3427"]]]},{"k":595,"v":[[0,1,["H3588"]],[1,4,["H1980"]],[4,5,["H413"]],[5,7,["H776"]],[7,9,["H413"]],[9,11,["H4138"]],[11,13,["H3947"]],[13,15,["H802"]],[15,18,["H1121"]],[18,19,["H3327"]]]},{"k":596,"v":[[0,3,["H5650"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H194"]],[7,9,["H802"]],[9,11,["H3808"]],[11,13,["H14"]],[13,15,["H1980","H310"]],[15,17,["H413"]],[17,18,["H2063"]],[18,19,["H776"]],[19,23,["H7725","H7725","(H853)"]],[23,25,["H1121"]],[25,27,["H413"]],[27,29,["H776"]],[29,31,["H834","H4480","H8033"]],[31,33,["H3318"]]]},{"k":597,"v":[[0,2,["H85"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H8104"]],[6,8,["H6435"]],[8,10,["H7725"]],[10,11,["(H853)"]],[11,13,["H1121"]],[13,14,["H8033"]],[14,15,[]]]},{"k":598,"v":[[0,2,["H3068"]],[2,3,["H430"]],[3,5,["H8064"]],[5,6,["H834"]],[6,7,["H3947"]],[7,12,["H4480","H1004","H1"]],[12,16,["H4480","H776"]],[16,19,["H4138"]],[19,21,["H834"]],[21,22,["H1696"]],[22,26,["H834"]],[26,27,["H7650"]],[27,30,["H559"]],[30,33,["H2233"]],[33,36,["H5414","(H853)"]],[36,37,["H2063"]],[37,38,["H776"]],[38,39,["H1931"]],[39,41,["H7971"]],[41,43,["H4397"]],[43,44,["H6440"]],[44,49,["H3947"]],[49,51,["H802"]],[51,54,["H1121"]],[54,56,["H4480","H8033"]]]},{"k":599,"v":[[0,2,["H518"]],[2,4,["H802"]],[4,6,["H3808"]],[6,8,["H14"]],[8,10,["H1980","H310"]],[10,16,["H5352"]],[16,20,["H4480","H7621","H2063"]],[20,21,["H7535"]],[21,22,["H7725"]],[22,23,["H3808","(H853)"]],[23,25,["H1121"]],[25,26,["H8033"]],[26,27,[]]]},{"k":600,"v":[[0,3,["H5650"]],[3,4,["H7760","(H853)"]],[4,6,["H3027"]],[6,7,["H8478"]],[7,9,["H3409"]],[9,11,["H85"]],[11,13,["H113"]],[13,15,["H7650"]],[15,18,["H5921"]],[18,19,["H2088"]],[19,20,["H1697"]]]},{"k":601,"v":[[0,3,["H5650"]],[3,4,["H3947"]],[4,5,["H6235"]],[5,6,["H1581"]],[6,9,["H4480","H1581"]],[9,12,["H113"]],[12,14,["H1980"]],[14,16,["H3605"]],[16,18,["H2898"]],[18,21,["H113"]],[21,25,["H3027"]],[25,28,["H6965"]],[28,30,["H1980"]],[30,31,["H413"]],[31,32,["H763"]],[32,33,["H413"]],[33,35,["H5892"]],[35,37,["H5152"]]]},{"k":602,"v":[[0,5,["H1581"]],[5,8,["H1288"]],[8,9,["H4480","H2351"]],[9,11,["H5892"]],[11,12,["H413"]],[12,14,["H875"]],[14,16,["H4325"]],[16,19,["H6256"]],[19,22,["H6153"]],[22,25,["H6256"]],[25,29,["H3318"]],[29,31,["H7579"]],[31,32,[]]]},{"k":603,"v":[[0,3,["H559"]],[3,5,["H3068"]],[5,6,["H430"]],[6,9,["H113"]],[9,10,["H85"]],[10,13,["H4994"]],[13,17,["H7136","H6440"]],[17,19,["H3117"]],[19,21,["H6213"]],[21,22,["H2617"]],[22,23,["H5973"]],[23,25,["H113"]],[25,26,["H85"]]]},{"k":604,"v":[[0,1,["H2009"]],[1,2,["H595"]],[2,3,["H5324"]],[3,5,["H5921"]],[5,7,["H5869"]],[7,9,["H4325"]],[9,12,["H1323"]],[12,15,["H376"]],[15,18,["H5892"]],[18,20,["H3318"]],[20,22,["H7579"]],[22,23,["H4325"]]]},{"k":605,"v":[[0,6,["H1961"]],[6,9,["H5291"]],[9,11,["H834"]],[11,14,["H559","H413"]],[14,16,["H5186"]],[16,18,["H3537"]],[18,21,["H4994"]],[21,25,["H8354"]],[25,29,["H559"]],[29,30,["H8354"]],[30,36,["H1581"]],[36,37,["H8248"]],[37,38,["H1571"]],[38,47,["H3198"]],[47,50,["H5650"]],[50,51,["H3327"]],[51,56,["H3045"]],[56,57,["H3588"]],[57,60,["H6213"]],[60,61,["H2617"]],[61,62,["H5973"]],[62,64,["H113"]]]},{"k":606,"v":[[0,5,["H1961"]],[5,6,["H2962"]],[6,7,["H1931"]],[7,9,["H3615"]],[9,10,["H1696"]],[10,12,["H2009"]],[12,13,["H7259"]],[13,15,["H3318"]],[15,16,["H834"]],[16,18,["H3205"]],[18,20,["H1328"]],[20,21,["H1121"]],[21,23,["H4435"]],[23,25,["H802"]],[25,27,["H5152"]],[27,28,["H85"]],[28,29,["H251"]],[29,32,["H3537"]],[32,33,["H5921"]],[33,35,["H7926"]]]},{"k":607,"v":[[0,3,["H5291"]],[3,5,["H3966"]],[5,6,["H2896"]],[6,9,["H4758"]],[9,11,["H1330"]],[11,12,["H3808"]],[12,15,["H376"]],[15,16,["H3045"]],[16,21,["H3381"]],[21,24,["H5869"]],[24,26,["H4390"]],[26,28,["H3537"]],[28,31,["H5927"]]]},{"k":608,"v":[[0,3,["H5650"]],[3,4,["H7323"]],[4,6,["H7125"]],[6,9,["H559"]],[9,14,["H4994"]],[14,15,["H1572"]],[15,17,["H4592"]],[17,18,["H4325"]],[18,21,["H4480","H3537"]]]},{"k":609,"v":[[0,3,["H559"]],[3,4,["H8354"]],[4,6,["H113"]],[6,9,["H4116"]],[9,12,["H3381"]],[12,14,["H3537"]],[14,15,["H5921"]],[15,17,["H3027"]],[17,21,["H8248"]]]},{"k":610,"v":[[0,5,["H3615"]],[5,8,["H8248"]],[8,10,["H559"]],[10,13,["H7579"]],[13,17,["H1581"]],[17,18,["H1571"]],[18,19,["H5704","H518"]],[19,22,["H3615"]],[22,23,["H8354"]]]},{"k":611,"v":[[0,3,["H4116"]],[3,5,["H6168"]],[5,7,["H3537"]],[7,8,["H413"]],[8,10,["H8268"]],[10,12,["H7323"]],[12,13,["H5750"]],[13,14,["H413"]],[14,16,["H875"]],[16,18,["H7579"]],[18,21,["H7579"]],[21,23,["H3605"]],[23,25,["H1581"]]]},{"k":612,"v":[[0,3,["H376"]],[3,4,["H7583"]],[4,9,["H2790"]],[9,11,["H3045"]],[11,14,["H3068"]],[14,18,["H1870"]],[18,19,["H6743"]],[19,20,["H518"]],[20,21,["H3808"]]]},{"k":613,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,8,["H1581"]],[8,10,["H3615"]],[10,11,["H8354"]],[11,14,["H376"]],[14,15,["H3947"]],[15,17,["H2091"]],[17,18,["H5141"]],[18,22,["H1235"]],[22,23,["H4948"]],[23,25,["H8147"]],[25,26,["H6781"]],[26,27,["H5921"]],[27,29,["H3027"]],[29,31,["H6235"]],[31,33,["H4948"]],[33,35,["H2091"]]]},{"k":614,"v":[[0,2,["H559"]],[2,3,["H4310"]],[3,4,["H1323"]],[4,6,["H859"]],[6,7,["H5046"]],[7,11,["H4994"]],[11,13,["H3426"]],[13,14,["H4725"]],[14,17,["H1"]],[17,18,["H1004"]],[18,23,["H3885"]]]},{"k":615,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H595"]],[6,9,["H1323"]],[9,11,["H1328"]],[11,13,["H1121"]],[13,15,["H4435"]],[15,16,["H834"]],[16,18,["H3205"]],[18,20,["H5152"]]]},{"k":616,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,8,["H1571"]],[8,9,["H8401"]],[9,10,["H1571"]],[10,11,["H4554"]],[11,12,["H7227"]],[12,13,["H1571"]],[13,14,["H4725"]],[14,17,["H3885"]]]},{"k":617,"v":[[0,3,["H376"]],[3,7,["H6915"]],[7,9,["H7812"]],[9,11,["H3068"]]]},{"k":618,"v":[[0,3,["H559"]],[3,4,["H1288"]],[4,7,["H3068"]],[7,8,["H430"]],[8,11,["H113"]],[11,12,["H85"]],[12,13,["H834"]],[13,15,["H3808"]],[15,17,["H5800","H4480","H5973"]],[17,19,["H113"]],[19,22,["H2617"]],[22,25,["H571"]],[25,26,["H595"]],[26,30,["H1870"]],[30,32,["H3068"]],[32,33,["H5148"]],[33,37,["H1004"]],[37,40,["H113"]],[40,41,["H251"]]]},{"k":619,"v":[[0,3,["H5291"]],[3,4,["H7323"]],[4,6,["H5046"]],[6,10,["H517"]],[10,11,["H1004"]],[11,12,["H428"]],[12,13,["H1697"]]]},{"k":620,"v":[[0,2,["H7259"]],[2,5,["H251"]],[5,8,["H8034"]],[8,10,["H3837"]],[10,12,["H3837"]],[12,13,["H7323"]],[13,14,["H2351"]],[14,15,["H413"]],[15,17,["H376"]],[17,18,["H413"]],[18,20,["H5869"]]]},{"k":621,"v":[[0,5,["H1961"]],[5,8,["H7200","(H853)"]],[8,10,["H5141"]],[10,12,["H6781"]],[12,13,["H5921"]],[13,15,["H269"]],[15,16,["H3027"]],[16,20,["H8085","(H853)"]],[20,22,["H1697"]],[22,24,["H7259"]],[24,26,["H269"]],[26,27,["H559"]],[27,28,["H3541"]],[28,29,["H1696"]],[29,31,["H376"]],[31,32,["H413"]],[32,36,["H935"]],[36,37,["H413"]],[37,39,["H376"]],[39,41,["H2009"]],[41,43,["H5975"]],[43,44,["H5921"]],[44,46,["H1581"]],[46,47,["H5921"]],[47,49,["H5869"]]]},{"k":622,"v":[[0,3,["H559"]],[3,5,["H935"]],[5,7,["H1288"]],[7,10,["H3068"]],[10,11,["H4100"]],[11,12,["H5975"]],[12,14,["H2351"]],[14,16,["H595"]],[16,18,["H6437"]],[18,20,["H1004"]],[20,22,["H4725"]],[22,25,["H1581"]]]},{"k":623,"v":[[0,3,["H376"]],[3,4,["H935"]],[4,7,["H1004"]],[7,10,["H6605"]],[10,12,["H1581"]],[12,14,["H5414"]],[14,15,["H8401"]],[15,17,["H4554"]],[17,20,["H1581"]],[20,22,["H4325"]],[22,24,["H7364"]],[24,26,["H7272"]],[26,29,["H376"]],[29,30,["H7272"]],[30,31,["H834"]],[31,33,["H854"]],[33,34,[]]]},{"k":624,"v":[[0,4,["H7760"]],[4,6,["H6440"]],[6,9,["H398"]],[9,12,["H559"]],[12,15,["H3808"]],[15,16,["H398"]],[16,17,["H5704","H518"]],[17,20,["H1696"]],[20,22,["H1697"]],[22,25,["H559"]],[25,27,["H1696"]]]},{"k":625,"v":[[0,3,["H559"]],[3,4,["H595"]],[4,6,["H85"]],[6,7,["H5650"]]]},{"k":626,"v":[[0,3,["H3068"]],[3,5,["H1288","(H853)"]],[5,7,["H113"]],[7,8,["H3966"]],[8,13,["H1431"]],[13,17,["H5414"]],[17,19,["H6629"]],[19,21,["H1241"]],[21,23,["H3701"]],[23,25,["H2091"]],[25,27,["H5650"]],[27,29,["H8198"]],[29,31,["H1581"]],[31,33,["H2543"]]]},{"k":627,"v":[[0,2,["H8283"]],[2,4,["H113"]],[4,5,["H802"]],[5,6,["H3205"]],[6,8,["H1121"]],[8,11,["H113"]],[11,12,["H310"]],[12,15,["H2209"]],[15,21,["H5414","(H853)"]],[21,22,["H3605"]],[22,23,["H834"]],[23,25,[]]]},{"k":628,"v":[[0,3,["H113"]],[3,6,["H7650"]],[6,7,["H559"]],[7,10,["H3808"]],[10,11,["H3947"]],[11,13,["H802"]],[13,16,["H1121"]],[16,19,["H4480","H1323"]],[19,22,["H3669"]],[22,24,["H834"]],[24,25,["H776"]],[25,26,["H595"]],[26,27,["H3427"]]]},{"k":629,"v":[[0,1,["H518","H3808"]],[1,4,["H1980"]],[4,5,["H413"]],[5,7,["H1"]],[7,8,["H1004"]],[8,10,["H413"]],[10,12,["H4940"]],[12,14,["H3947"]],[14,16,["H802"]],[16,19,["H1121"]]]},{"k":630,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H113"]],[6,7,["H194"]],[7,9,["H802"]],[9,11,["H3808"]],[11,12,["H1980","H310"]],[12,13,[]]]},{"k":631,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H3068"]],[7,8,["H6440"]],[8,9,["H834"]],[9,11,["H1980"]],[11,13,["H7971"]],[13,15,["H4397"]],[15,16,["H854"]],[16,19,["H6743"]],[19,21,["H1870"]],[21,25,["H3947"]],[25,27,["H802"]],[27,30,["H1121"]],[30,33,["H4480","H4940"]],[33,38,["H4480","H1004","H1"]]]},{"k":632,"v":[[0,1,["H227"]],[1,5,["H5352"]],[5,9,["H4480","H423"]],[9,10,["H3588"]],[10,12,["H935"]],[12,13,["H413"]],[13,15,["H4940"]],[15,17,["H518"]],[17,19,["H5414"]],[19,20,["H3808"]],[20,25,["H1961"]],[25,26,["H5355"]],[26,29,["H4480","H423"]]]},{"k":633,"v":[[0,3,["H935"]],[3,5,["H3117"]],[5,6,["H413"]],[6,8,["H5869"]],[8,10,["H559"]],[10,12,["H3068"]],[12,13,["H430"]],[13,16,["H113"]],[16,17,["H85"]],[17,18,["H518"]],[18,19,["H4994"]],[19,21,["H3426"]],[21,22,["H6743"]],[22,24,["H1870"]],[24,25,["H834","H5921"]],[25,26,["H595"]],[26,27,["H1980"]]]},{"k":634,"v":[[0,1,["H2009"]],[1,2,["H595"]],[2,3,["H5324"]],[3,4,["H5921"]],[4,6,["H5869"]],[6,8,["H4325"]],[8,14,["H1961"]],[14,18,["H5959"]],[18,20,["H3318"]],[20,22,["H7579"]],[22,26,["H559"]],[26,27,["H413"]],[27,33,["H4994"]],[33,35,["H4592"]],[35,36,["H4325"]],[36,39,["H4480","H3537"]],[39,41,["H8248"]]]},{"k":635,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1571"]],[6,7,["H8354"]],[7,8,["H859"]],[8,12,["H1571"]],[12,13,["H7579"]],[13,16,["H1581"]],[16,19,["H1931"]],[19,22,["H802"]],[22,23,["H834"]],[23,25,["H3068"]],[25,28,["H3198"]],[28,31,["H113"]],[31,32,["H1121"]]]},{"k":636,"v":[[0,2,["H2962"]],[2,3,["H589"]],[3,5,["H3615"]],[5,6,["H1696"]],[6,7,["H413"]],[7,9,["H3820"]],[9,10,["H2009"]],[10,11,["H7259"]],[11,13,["H3318"]],[13,16,["H3537"]],[16,17,["H5921"]],[17,19,["H7926"]],[19,23,["H3381"]],[23,26,["H5869"]],[26,28,["H7579"]],[28,32,["H559"]],[32,33,["H413"]],[33,37,["H8248"]],[37,40,["H4994"]]]},{"k":637,"v":[[0,4,["H4116"]],[4,7,["H3381"]],[7,9,["H3537"]],[9,10,["H4480","H5921"]],[10,14,["H559"]],[14,15,["H8354"]],[15,21,["H1581"]],[21,22,["H8248"]],[22,23,["H1571"]],[23,26,["H8354"]],[26,31,["H1581"]],[31,32,["H8354"]],[32,33,["H1571"]]]},{"k":638,"v":[[0,3,["H7592"]],[3,6,["H559"]],[6,7,["H4310"]],[7,8,["H1323"]],[8,10,["H859"]],[10,13,["H559"]],[13,15,["H1323"]],[15,17,["H1328"]],[17,18,["H5152"]],[18,19,["H1121"]],[19,20,["H834"]],[20,21,["H4435"]],[21,22,["H3205"]],[22,27,["H7760"]],[27,29,["H5141"]],[29,30,["H5921"]],[30,32,["H639"]],[32,35,["H6781"]],[35,36,["H5921"]],[36,38,["H3027"]]]},{"k":639,"v":[[0,6,["H6915"]],[6,8,["H7812"]],[8,10,["H3068"]],[10,12,["H1288","(H853)"]],[12,14,["H3068"]],[14,15,["H430"]],[15,18,["H113"]],[18,19,["H85"]],[19,20,["H834"]],[20,22,["H5148"]],[22,26,["H571"]],[26,27,["H1870"]],[27,29,["H3947","(H853)"]],[29,31,["H113"]],[31,32,["H251"]],[32,33,["H1323"]],[33,36,["H1121"]]]},{"k":640,"v":[[0,2,["H6258"]],[2,3,["H518"]],[3,5,["H3426"]],[5,6,["H6213"]],[6,7,["H2617"]],[7,9,["H571"]],[9,10,["H854"]],[10,12,["H113"]],[12,13,["H5046"]],[13,16,["H518"]],[16,17,["H3808"]],[17,18,["H5046"]],[18,23,["H6437"]],[23,24,["H5921"]],[24,27,["H3225"]],[27,28,["H176"]],[28,29,["H5921"]],[29,31,["H8040"]]]},{"k":641,"v":[[0,2,["H3837"]],[2,4,["H1328"]],[4,5,["H6030"]],[5,7,["H559"]],[7,9,["H1697"]],[9,10,["H3318"]],[10,13,["H4480","H3068"]],[13,15,["H3201","H3808"]],[15,16,["H1696"]],[16,17,["H413"]],[17,19,["H7451"]],[19,20,["H176"]],[20,21,["H2896"]]]},{"k":642,"v":[[0,1,["H2009"]],[1,2,["H7259"]],[2,4,["H6440"]],[4,6,["H3947"]],[6,9,["H1980"]],[9,13,["H1961"]],[13,15,["H113"]],[15,16,["H1121"]],[16,17,["H802"]],[17,18,["H834"]],[18,20,["H3068"]],[20,22,["H1696"]]]},{"k":643,"v":[[0,5,["H1961"]],[5,7,["H834"]],[7,8,["H85"]],[8,9,["H5650"]],[9,10,["H8085","(H853)"]],[10,12,["H1697"]],[12,14,["H7812"]],[14,16,["H3068"]],[16,21,["H776"]]]},{"k":644,"v":[[0,3,["H5650"]],[3,5,["H3318"]],[5,6,["H3627"]],[6,8,["H3701"]],[8,10,["H3627"]],[10,12,["H2091"]],[12,14,["H899"]],[14,16,["H5414"]],[16,19,["H7259"]],[19,21,["H5414"]],[21,25,["H251"]],[25,29,["H517"]],[29,31,["H4030"]]]},{"k":645,"v":[[0,4,["H398"]],[4,6,["H8354"]],[6,7,["H1931"]],[7,10,["H376"]],[10,11,["H834"]],[11,13,["H5973"]],[13,18,["H3885"]],[18,22,["H6965"]],[22,25,["H1242"]],[25,28,["H559"]],[28,31,["H7971"]],[31,34,["H113"]]]},{"k":646,"v":[[0,3,["H251"]],[3,6,["H517"]],[6,7,["H559"]],[7,10,["H5291"]],[10,11,["H3427"]],[11,12,["H854"]],[12,16,["H3117"]],[16,19,["H176"]],[19,20,["H6218"]],[20,22,["H310"]],[22,25,["H1980"]]]},{"k":647,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H309"]],[6,8,["H408"]],[8,11,["H3068"]],[11,13,["H6743"]],[13,15,["H1870"]],[15,18,["H7971"]],[18,22,["H1980"]],[22,25,["H113"]]]},{"k":648,"v":[[0,3,["H559"]],[3,6,["H7121"]],[6,8,["H5291"]],[8,10,["H7592"]],[10,11,["(H853)"]],[11,13,["H6310"]]]},{"k":649,"v":[[0,3,["H7121"]],[3,4,["H7259"]],[4,6,["H559"]],[6,7,["H413"]],[7,11,["H1980"]],[11,12,["H5973"]],[12,13,["H2088"]],[13,14,["H376"]],[14,17,["H559"]],[17,20,["H1980"]]]},{"k":650,"v":[[0,4,["H7971","(H853)"]],[4,5,["H7259"]],[5,7,["H269"]],[7,10,["H3243"]],[10,12,["H85"]],[12,13,["H5650"]],[13,16,["H376"]]]},{"k":651,"v":[[0,3,["H1288","(H853)"]],[3,4,["H7259"]],[4,6,["H559"]],[6,9,["H859"]],[9,12,["H269"]],[12,13,["H1961"]],[13,18,["H505"]],[18,20,["H7233"]],[20,24,["H2233"]],[24,25,["H3423","(H853)"]],[25,27,["H8179"]],[27,31,["H8130"]],[31,32,[]]]},{"k":652,"v":[[0,2,["H7259"]],[2,3,["H6965"]],[3,6,["H5291"]],[6,9,["H7392"]],[9,10,["H5921"]],[10,12,["H1581"]],[12,14,["H1980","H310"]],[14,16,["H376"]],[16,19,["H5650"]],[19,20,["H3947","(H853)"]],[20,21,["H7259"]],[21,25,["H1980"]]]},{"k":653,"v":[[0,2,["H3327"]],[2,3,["H935"]],[3,6,["H4480","H935"]],[6,10,["H883"]],[10,12,["H1931"]],[12,13,["H3427"]],[13,16,["H5045"]],[16,17,["H776"]]]},{"k":654,"v":[[0,2,["H3327"]],[2,4,["H3318"]],[4,6,["H7742"]],[6,9,["H7704"]],[9,12,["H6437","H6153"]],[12,16,["H5375"]],[16,18,["H5869"]],[18,20,["H7200"]],[20,22,["H2009"]],[22,24,["H1581"]],[24,26,["H935"]]]},{"k":655,"v":[[0,2,["H7259"]],[2,4,["H5375","(H853)"]],[4,6,["H5869"]],[6,10,["H7200","(H853)"]],[10,11,["H3327"]],[11,13,["H5307"]],[13,14,["H4480","H5921"]],[14,16,["H1581"]]]},{"k":656,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H5650"]],[7,8,["H4310"]],[8,9,["H376"]],[9,11,["H1976"]],[11,13,["H1980"]],[13,16,["H7704"]],[16,18,["H7125"]],[18,22,["H5650"]],[22,24,["H559"]],[24,25,["H1931"]],[25,28,["H113"]],[28,31,["H3947"]],[31,33,["H6809"]],[33,36,["H3680"]]]},{"k":657,"v":[[0,3,["H5650"]],[3,4,["H5608"]],[4,5,["H3327","(H853)"]],[5,6,["H3605"]],[6,7,["H1697"]],[7,8,["H834"]],[8,11,["H6213"]]]},{"k":658,"v":[[0,2,["H3327"]],[2,3,["H935"]],[3,7,["H517"]],[7,8,["H8283"]],[8,9,["H168"]],[9,11,["H3947","(H853)"]],[11,12,["H7259"]],[12,15,["H1961"]],[15,17,["H802"]],[17,20,["H157"]],[20,23,["H3327"]],[23,25,["H5162"]],[25,26,["H310"]],[26,28,["H517"]],[28,29,[]]]},{"k":659,"v":[[0,2,["H3254"]],[2,3,["H85"]],[3,4,["H3947"]],[4,6,["H802"]],[6,9,["H8034"]],[9,11,["H6989"]]]},{"k":660,"v":[[0,3,["H3205"]],[3,4,["(H853)"]],[4,5,["H2175"]],[5,7,["H3370"]],[7,9,["H4091"]],[9,11,["H4080"]],[11,13,["H3435"]],[13,15,["H7744"]]]},{"k":661,"v":[[0,2,["H3370"]],[2,3,["H3205","(H853)"]],[3,4,["H7614"]],[4,6,["H1719"]],[6,9,["H1121"]],[9,11,["H1719"]],[11,12,["H1961"]],[12,13,["H805"]],[13,15,["H3912"]],[15,17,["H3817"]]]},{"k":662,"v":[[0,3,["H1121"]],[3,5,["H4080"]],[5,6,["H5891"]],[6,8,["H6081"]],[8,10,["H2585"]],[10,12,["H28"]],[12,14,["H420"]],[14,15,["H3605"]],[15,16,["H428"]],[16,19,["H1121"]],[19,21,["H6989"]]]},{"k":663,"v":[[0,2,["H85"]],[2,3,["H5414","(H853)"]],[3,4,["H3605"]],[4,5,["H834"]],[5,9,["H3327"]]]},{"k":664,"v":[[0,4,["H1121"]],[4,7,["H6370"]],[7,8,["H834"]],[8,9,["H85"]],[9,11,["H85"]],[11,12,["H5414"]],[12,13,["H4979"]],[13,17,["H7971"]],[17,18,["H4480","H5921"]],[18,19,["H3327"]],[19,21,["H1121"]],[21,24,["H5750"]],[24,25,["H2416"]],[25,26,["H6924"]],[26,27,["H413"]],[27,29,["H6924"]],[29,30,["H776"]]]},{"k":665,"v":[[0,2,["H428"]],[2,5,["H3117"]],[5,8,["H8141"]],[8,10,["H85"]],[10,11,["H2416"]],[11,12,["H834"]],[12,14,["H2416"]],[14,16,["H3967"]],[16,19,["H7657","(H8141)","H2568"]],[19,20,["H8141"]]]},{"k":666,"v":[[0,2,["H85"]],[2,6,["H1478"]],[6,8,["H4191"]],[8,11,["H2896"]],[11,13,["H7872"]],[13,16,["H2205"]],[16,18,["H7649"]],[18,23,["H622"]],[23,24,["H413"]],[24,26,["H5971"]]]},{"k":667,"v":[[0,3,["H1121"]],[3,4,["H3327"]],[4,6,["H3458"]],[6,7,["H6912"]],[7,9,["H413"]],[9,11,["H4631"]],[11,13,["H4375"]],[13,14,["H413"]],[14,16,["H7704"]],[16,18,["H6085"]],[18,20,["H1121"]],[20,22,["H6714"]],[22,24,["H2850"]],[24,25,["H834"]],[25,27,["H5921","H6440"]],[27,28,["H4471"]]]},{"k":668,"v":[[0,2,["H7704"]],[2,3,["H834"]],[3,4,["H85"]],[4,5,["H7069"]],[5,6,["H4480","H854"]],[6,8,["H1121"]],[8,10,["H2845"]],[10,11,["H8033"]],[11,13,["H85"]],[13,14,["H6912"]],[14,16,["H8283"]],[16,18,["H802"]]]},{"k":669,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,8,["H4194"]],[8,10,["H85"]],[10,12,["H430"]],[12,13,["H1288"]],[13,15,["H1121","(H853)"]],[15,16,["H3327"]],[16,18,["H3327"]],[18,19,["H3427"]],[19,20,["H5973"]],[20,23,["H883"]]]},{"k":670,"v":[[0,2,["H428"]],[2,5,["H8435"]],[5,7,["H3458"]],[7,8,["H85"]],[8,9,["H1121"]],[9,10,["H834"]],[10,11,["H1904"]],[11,13,["H4713"]],[13,14,["H8283"]],[14,15,["H8198"]],[15,16,["H3205"]],[16,18,["H85"]]]},{"k":671,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H1121"]],[8,10,["H3458"]],[10,13,["H8034"]],[13,17,["H8435"]],[17,19,["H1060"]],[19,21,["H3458"]],[21,22,["H5032"]],[22,24,["H6938"]],[24,26,["H110"]],[26,28,["H4017"]]]},{"k":672,"v":[[0,2,["H4927"]],[2,4,["H1746"]],[4,6,["H4854"]]]},{"k":673,"v":[[0,1,["H2316"]],[1,3,["H8485"]],[3,4,["H3195"]],[4,5,["H5305"]],[5,7,["H6929"]]]},{"k":674,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H3458"]],[6,8,["H428"]],[8,11,["H8034"]],[11,14,["H2691"]],[14,18,["H2918"]],[18,19,["H8147","H6240"]],[19,20,["H5387"]],[20,24,["H523"]]]},{"k":675,"v":[[0,2,["H428"]],[2,5,["H8141"]],[5,8,["H2416"]],[8,10,["H3458"]],[10,12,["H3967"]],[12,14,["H7970"]],[14,16,["H7651"]],[16,17,["H8141"]],[17,23,["H1478"]],[23,25,["H4191"]],[25,28,["H622"]],[28,29,["H413"]],[29,31,["H5971"]]]},{"k":676,"v":[[0,3,["H7931"]],[3,5,["H4480","H2341"]],[5,6,["H5704"]],[6,7,["H7793"]],[7,8,["H834"]],[8,10,["H5921","H6440"]],[10,11,["H4714"]],[11,14,["H935"]],[14,16,["H804"]],[16,19,["H5307"]],[19,20,["H5921"]],[20,22,["H6440"]],[22,24,["H3605"]],[24,26,["H251"]]]},{"k":677,"v":[[0,2,["H428"]],[2,5,["H8435"]],[5,7,["H3327"]],[7,8,["H85"]],[8,9,["H1121"]],[9,10,["H85"]],[10,11,["H3205","(H853)"]],[11,12,["H3327"]]]},{"k":678,"v":[[0,2,["H3327"]],[2,3,["H1961"]],[3,4,["H705"]],[4,5,["H8141"]],[5,6,["H1121"]],[6,9,["H3947","(H853)"]],[9,10,["H7259"]],[10,12,["H802"]],[12,14,["H1323"]],[14,16,["H1328"]],[16,18,["H761"]],[18,20,["H4480","H6307"]],[20,22,["H269"]],[22,24,["H3837"]],[24,26,["H761"]]]},{"k":679,"v":[[0,2,["H3327"]],[2,3,["H6279"]],[3,5,["H3068"]],[5,6,["H5227"]],[6,8,["H802"]],[8,9,["H3588"]],[9,10,["H1931"]],[10,12,["H6135"]],[12,15,["H3068"]],[15,17,["H6279"]],[17,21,["H7259"]],[21,23,["H802"]],[23,24,["H2029"]]]},{"k":680,"v":[[0,3,["H1121"]],[3,5,["H7533"]],[5,6,["H7130"]],[6,10,["H559"]],[10,11,["H518"]],[11,14,["H3651"]],[14,15,["H4100"]],[15,17,["H595"]],[17,18,["H2088"]],[18,21,["H1980"]],[21,23,["H1875"]],[23,24,["(H853)"]],[24,26,["H3068"]]]},{"k":681,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,7,["H8147"]],[7,8,["H1471"]],[8,12,["H990"]],[12,14,["H8147"]],[14,17,["H3816"]],[17,20,["H6504"]],[20,23,["H4480","H4578"]],[23,27,["H3816"]],[27,30,["H553"]],[30,34,["H4480","H3816"]],[34,37,["H7227"]],[37,39,["H5647"]],[39,41,["H6810"]]]},{"k":682,"v":[[0,4,["H3117"]],[4,7,["H3205"]],[7,9,["H4390"]],[9,10,["H2009"]],[10,13,["H8380"]],[13,16,["H990"]]]},{"k":683,"v":[[0,3,["H7223"]],[3,5,["H3318"]],[5,6,["H132"]],[6,8,["H3605"]],[8,11,["H8181"]],[11,12,["H155"]],[12,15,["H7121"]],[15,17,["H8034"]],[17,18,["H6215"]]]},{"k":684,"v":[[0,3,["H310","H3651"]],[3,4,["H3318"]],[4,6,["H251"]],[6,10,["H3027"]],[10,12,["H270"]],[12,14,["H6215"]],[14,15,["H6119"]],[15,18,["H8034"]],[18,20,["H7121"]],[20,21,["H3290"]],[21,23,["H3327"]],[23,25,["H8346"]],[25,26,["H8141"]],[26,27,["H1121"]],[27,30,["H3205"]],[30,31,[]]]},{"k":685,"v":[[0,3,["H5288"]],[3,4,["H1431"]],[4,6,["H6215"]],[6,7,["H1961"]],[7,9,["H3045"]],[9,10,["H6718"]],[10,12,["H376"]],[12,15,["H7704"]],[15,17,["H3290"]],[17,20,["H8535"]],[20,21,["H376"]],[21,22,["H3427"]],[22,24,["H168"]]]},{"k":686,"v":[[0,2,["H3327"]],[2,3,["H157","(H853)"]],[3,4,["H6215"]],[4,5,["H3588"]],[5,8,["H6310"]],[8,11,["H6718"]],[11,13,["H7259"]],[13,14,["H157","(H853)"]],[14,15,["H3290"]]]},{"k":687,"v":[[0,2,["H3290"]],[2,3,["H2102"]],[3,4,["H5138"]],[4,6,["H6215"]],[6,7,["H935"]],[7,8,["H4480"]],[8,10,["H7704"]],[10,12,["H1931"]],[12,14,["H5889"]]]},{"k":688,"v":[[0,2,["H6215"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3290"]],[5,6,["H3938"]],[6,10,["H4994"]],[10,11,["H4480"]],[11,13,["H2088"]],[13,14,["H122"]],[14,16,["H3588"]],[16,17,["H595"]],[17,19,["H5889"]],[19,20,["H5921","H3651"]],[20,23,["H8034"]],[23,24,["H7121"]],[24,25,["H123"]]]},{"k":689,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,4,["H4376"]],[4,7,["H3117","(H853)"]],[7,9,["H1062"]]]},{"k":690,"v":[[0,2,["H6215"]],[2,3,["H559"]],[3,4,["H2009"]],[4,5,["H595"]],[5,9,["H1980"]],[9,11,["H4191"]],[11,14,["H4100"]],[14,16,["H2088"]],[16,17,["H1062"]],[17,20,[]]]},{"k":691,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,4,["H7650"]],[4,8,["H3117"]],[8,11,["H7650"]],[11,16,["H4376","(H853)"]],[16,18,["H1062"]],[18,20,["H3290"]]]},{"k":692,"v":[[0,2,["H3290"]],[2,3,["H5414"]],[3,4,["H6215"]],[4,5,["H3899"]],[5,7,["H5138"]],[7,9,["H5742"]],[9,13,["H398"]],[13,15,["H8354"]],[15,18,["H6965"]],[18,22,["H1980"]],[22,24,["H6215"]],[24,25,["H959","(H853)"]],[25,27,["H1062"]]]},{"k":693,"v":[[0,3,["H1961"]],[3,5,["H7458"]],[5,8,["H776"]],[8,9,["H4480","H905"]],[9,11,["H7223"]],[11,12,["H7458"]],[12,13,["H834"]],[13,14,["H1961"]],[14,17,["H3117"]],[17,19,["H85"]],[19,21,["H3327"]],[21,22,["H1980"]],[22,23,["H413"]],[23,24,["H40"]],[24,25,["H4428"]],[25,28,["H6430"]],[28,30,["H1642"]]]},{"k":694,"v":[[0,3,["H3068"]],[3,4,["H7200"]],[4,5,["H413"]],[5,8,["H559"]],[8,11,["H3381","H408"]],[11,13,["H4714"]],[13,14,["H7931"]],[14,17,["H776"]],[17,18,["H834"]],[18,21,["H559"]],[21,23,["H413"]]]},{"k":695,"v":[[0,1,["H1481"]],[1,3,["H2063"]],[3,4,["H776"]],[4,8,["H1961"]],[8,9,["H5973"]],[9,13,["H1288"]],[13,15,["H3588"]],[15,21,["H2233"]],[21,24,["H5414","(H853)"]],[24,25,["H3605"]],[25,26,["H411"]],[26,27,["H776"]],[27,31,["H6965","(H853)"]],[31,33,["H7621"]],[33,34,["H834"]],[34,36,["H7650"]],[36,38,["H85"]],[38,40,["H1"]]]},{"k":696,"v":[[0,4,["(H853)"]],[4,6,["H2233"]],[6,8,["H7235"]],[8,11,["H3556"]],[11,13,["H8064"]],[13,16,["H5414"]],[16,19,["H2233","(H853)"]],[19,20,["H3605"]],[20,21,["H411"]],[21,22,["H776"]],[22,26,["H2233"]],[26,28,["H3605"]],[28,30,["H1471"]],[30,33,["H776"]],[33,35,["H1288"]]]},{"k":697,"v":[[0,1,["H6118"]],[1,2,["H834"]],[2,3,["H85"]],[3,4,["H8085"]],[4,6,["H6963"]],[6,8,["H8104"]],[8,10,["H4931"]],[10,12,["H4687"]],[12,14,["H2708"]],[14,17,["H8451"]]]},{"k":698,"v":[[0,2,["H3327"]],[2,3,["H3427"]],[3,5,["H1642"]]]},{"k":699,"v":[[0,3,["H376"]],[3,6,["H4725"]],[6,7,["H7592"]],[7,11,["H802"]],[11,14,["H559"]],[14,15,["H1931"]],[15,18,["H269"]],[18,19,["H3588"]],[19,21,["H3372"]],[21,23,["H559"]],[23,27,["H802"]],[27,28,["H6435"]],[28,32,["H376"]],[32,35,["H4725"]],[35,37,["H2026"]],[37,39,["H5921"]],[39,40,["H7259"]],[40,41,["H3588"]],[41,42,["H1931"]],[42,44,["H2896"]],[44,47,["H4758"]]]},{"k":700,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,10,["H8033"]],[10,12,["H748"]],[12,13,["H3117"]],[13,15,["H40"]],[15,16,["H4428"]],[16,19,["H6430"]],[19,21,["H8259"]],[21,22,["H1157"]],[22,24,["H2474"]],[24,26,["H7200"]],[26,28,["H2009"]],[28,29,["H3327"]],[29,31,["H6711"]],[31,32,["(H853)"]],[32,33,["H7259"]],[33,35,["H802"]]]},{"k":701,"v":[[0,2,["H40"]],[2,3,["H7121"]],[3,4,["H3327"]],[4,6,["H559"]],[6,7,["H2009"]],[7,10,["H389"]],[10,11,["H1931"]],[11,14,["H802"]],[14,16,["H349"]],[16,17,["H559"]],[17,19,["H1931"]],[19,22,["H269"]],[22,24,["H3327"]],[24,25,["H559"]],[25,26,["H413"]],[26,28,["H3588"]],[28,30,["H559"]],[30,31,["H6435"]],[31,33,["H4191"]],[33,34,["H5921"]],[34,35,[]]]},{"k":702,"v":[[0,2,["H40"]],[2,3,["H559"]],[3,4,["H4100"]],[4,6,["H2063"]],[6,9,["H6213"]],[9,12,["H259"]],[12,15,["H5971"]],[15,17,["H4592"]],[17,19,["H7901"]],[19,20,["H854"]],[20,22,["H802"]],[22,27,["H935"]],[27,28,["H817"]],[28,29,["H5921"]],[29,30,[]]]},{"k":703,"v":[[0,2,["H40"]],[2,3,["H6680","(H853)"]],[3,4,["H3605"]],[4,6,["H5971"]],[6,7,["H559"]],[7,10,["H5060"]],[10,11,["H2088"]],[11,12,["H376"]],[12,15,["H802"]],[15,21,["H4191","H4191"]]]},{"k":704,"v":[[0,2,["H3327"]],[2,3,["H2232"]],[3,5,["H1931"]],[5,6,["H776"]],[6,8,["H4672"]],[8,11,["H1931"]],[11,12,["H8141"]],[12,14,["H3967","H8180"]],[14,17,["H3068"]],[17,18,["H1288"]],[18,19,[]]]},{"k":705,"v":[[0,3,["H376"]],[3,5,["H1431"]],[5,7,["H1980"]],[7,8,["H1980"]],[8,10,["H1432"]],[10,11,["H5704","H3588"]],[11,15,["H1431","H3966"]]]},{"k":706,"v":[[0,3,["H1961"]],[3,4,["H4735"]],[4,6,["H6629"]],[6,8,["H4735"]],[8,10,["H1241"]],[10,13,["H7227"]],[13,15,["H5657"]],[15,18,["H6430"]],[18,19,["H7065"]],[19,20,[]]]},{"k":707,"v":[[0,2,["H3605"]],[2,4,["H875"]],[4,5,["H834"]],[5,7,["H1"]],[7,8,["H5650"]],[8,10,["H2658"]],[10,13,["H3117"]],[13,15,["H85"]],[15,17,["H1"]],[17,19,["H6430"]],[19,21,["H5640"]],[21,24,["H4390"]],[24,27,["H6083"]]]},{"k":708,"v":[[0,2,["H40"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3327"]],[5,6,["H1980"]],[6,7,["H4480","H5973"]],[7,9,["H3588"]],[9,13,["H6105","H3966"]],[13,14,["H4480"]],[14,15,[]]]},{"k":709,"v":[[0,2,["H3327"]],[2,3,["H1980"]],[3,4,["H4480","H8033"]],[4,8,["H2583"]],[8,11,["H5158"]],[11,13,["H1642"]],[13,15,["H3427"]],[15,16,["H8033"]]]},{"k":710,"v":[[0,2,["H3327"]],[2,3,["H2658"]],[3,4,["H7725","(H853)"]],[4,6,["H875"]],[6,8,["H4325"]],[8,9,["H834"]],[9,12,["H2658"]],[12,15,["H3117"]],[15,17,["H85"]],[17,19,["H1"]],[19,22,["H6430"]],[22,24,["H5640"]],[24,26,["H310"]],[26,28,["H4194"]],[28,30,["H85"]],[30,33,["H7121"]],[33,35,["H8034"]],[35,38,["H8034"]],[38,40,["H834"]],[40,42,["H1"]],[42,44,["H7121"]],[44,45,[]]]},{"k":711,"v":[[0,2,["H3327"]],[2,3,["H5650"]],[3,4,["H2658"]],[4,7,["H5158"]],[7,9,["H4672"]],[9,10,["H8033"]],[10,12,["H875"]],[12,14,["H2416"]],[14,15,["H4325"]]]},{"k":712,"v":[[0,3,["H7462"]],[3,5,["H1642"]],[5,7,["H7378"]],[7,8,["H5973"]],[8,9,["H3327"]],[9,10,["H7462"]],[10,11,["H559"]],[11,13,["H4325"]],[13,18,["H7121"]],[18,20,["H8034"]],[20,23,["H875"]],[23,24,["H6230"]],[24,25,["H3588"]],[25,27,["H6229"]],[27,28,["H5973"]],[28,29,[]]]},{"k":713,"v":[[0,3,["H2658"]],[3,4,["H312"]],[4,5,["H875"]],[5,7,["H7378"]],[7,8,["H5921"]],[8,10,["H1571"]],[10,13,["H7121"]],[13,15,["H8034"]],[15,18,["H7856"]]]},{"k":714,"v":[[0,3,["H6275"]],[3,5,["H4480","H8033"]],[5,7,["H2658"]],[7,8,["H312"]],[8,9,["H875"]],[9,11,["H5921"]],[11,14,["H7378"]],[14,15,["H3808"]],[15,18,["H7121"]],[18,20,["H8034"]],[20,23,["H7344"]],[23,26,["H559"]],[26,27,["H3588"]],[27,28,["H6258"]],[28,30,["H3068"]],[30,33,["H7337"]],[33,40,["H6509"]],[40,43,["H776"]]]},{"k":715,"v":[[0,4,["H5927"]],[4,6,["H4480","H8033"]],[6,8,["H884"]]]},{"k":716,"v":[[0,3,["H3068"]],[3,4,["H7200"]],[4,5,["H413"]],[5,8,["H1931"]],[8,9,["H3915"]],[9,11,["H559"]],[11,12,["H595"]],[12,15,["H430"]],[15,17,["H85"]],[17,19,["H1"]],[19,20,["H3372"]],[20,21,["H408"]],[21,22,["H3588"]],[22,23,["H595"]],[23,25,["H854"]],[25,29,["H1288"]],[29,32,["H7235","(H853)"]],[32,34,["H2233"]],[34,35,["H5668"]],[35,37,["H5650"]],[37,38,["H85"]],[38,39,[]]]},{"k":717,"v":[[0,3,["H1129"]],[3,5,["H4196"]],[5,6,["H8033"]],[6,8,["H7121"]],[8,11,["H8034"]],[11,14,["H3068"]],[14,16,["H5186"]],[16,18,["H168"]],[18,19,["H8033"]],[19,21,["H8033"]],[21,22,["H3327"]],[22,23,["H5650"]],[23,24,["H3738"]],[24,26,["H875"]]]},{"k":718,"v":[[0,2,["H40"]],[2,3,["H1980"]],[3,4,["H413"]],[4,7,["H4480","H1642"]],[7,9,["H276"]],[9,13,["H4828"]],[13,15,["H6369"]],[15,18,["H8269"]],[18,21,["H6635"]]]},{"k":719,"v":[[0,2,["H3327"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4069"]],[6,7,["H935"]],[7,9,["H413"]],[9,12,["H859"]],[12,13,["H8130"]],[13,19,["H7971"]],[19,20,["H4480"]],[20,21,[]]]},{"k":720,"v":[[0,3,["H559"]],[3,6,["H7200","H7200"]],[6,7,["H3588"]],[7,9,["H3068"]],[9,10,["H1961"]],[10,11,["H5973"]],[11,15,["H559"]],[15,18,["H1961"]],[18,19,["H4994"]],[19,21,["H423"]],[21,22,["H996"]],[22,25,["H996"]],[25,32,["H3772"]],[32,34,["H1285"]],[34,35,["H5973"]],[35,36,[]]]},{"k":721,"v":[[0,1,["H518"]],[1,4,["H6213"]],[4,7,["H7451"]],[7,8,["H834"]],[8,11,["H3808"]],[11,12,["H5060"]],[12,15,["H834"]],[15,18,["H6213"]],[18,19,["H5973"]],[19,22,["H7535"]],[22,23,["H2896"]],[23,28,["H7971"]],[28,30,["H7965"]],[30,31,["H859"]],[31,33,["H6258"]],[33,35,["H1288"]],[35,38,["H3068"]]]},{"k":722,"v":[[0,3,["H6213"]],[3,6,["H4960"]],[6,10,["H398"]],[10,12,["H8354"]]]},{"k":723,"v":[[0,5,["H7925"]],[5,8,["H1242"]],[8,10,["H7650"]],[10,11,["H376"]],[11,13,["H251"]],[13,15,["H3327"]],[15,18,["H7971"]],[18,21,["H1980"]],[21,22,["H4480","H854"]],[22,25,["H7965"]]]},{"k":724,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,8,["H3117"]],[8,10,["H3327"]],[10,11,["H5650"]],[11,12,["H935"]],[12,14,["H5046"]],[14,16,["H5921","H182"]],[16,18,["H875"]],[18,19,["H834"]],[19,22,["H2658"]],[22,24,["H559"]],[24,29,["H4672"]],[29,30,["H4325"]]]},{"k":725,"v":[[0,3,["H7121"]],[3,5,["H7656"]],[5,6,["H5921","H3651"]],[6,8,["H8034"]],[8,11,["H5892"]],[11,13,["H884"]],[13,14,["H5704"]],[14,15,["H2088"]],[15,16,["H3117"]]]},{"k":726,"v":[[0,2,["H6215"]],[2,3,["H1961"]],[3,4,["H705"]],[4,5,["H8141"]],[5,6,["H1121"]],[6,9,["H3947"]],[9,11,["H802","(H853)"]],[11,12,["H3067"]],[12,14,["H1323"]],[14,16,["H882"]],[16,18,["H2850"]],[18,20,["H1315"]],[20,22,["H1323"]],[22,24,["H356"]],[24,26,["H2850"]]]},{"k":727,"v":[[0,2,["H1961"]],[2,4,["H4786"]],[4,6,["H7307"]],[6,8,["H3327"]],[8,11,["H7259"]]]},{"k":728,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,8,["H3327"]],[8,10,["H2204"]],[10,13,["H5869"]],[13,15,["H3543"]],[15,21,["H4480","H7200"]],[21,23,["H7121","(H853)"]],[23,24,["H6215"]],[24,26,["H1419"]],[26,27,["H1121"]],[27,29,["H559"]],[29,30,["H413"]],[30,33,["H1121"]],[33,36,["H559"]],[36,37,["H413"]],[37,39,["H2009"]],[39,42,[]]]},{"k":729,"v":[[0,3,["H559"]],[3,4,["H2009"]],[4,5,["H4994"]],[5,8,["H2204"]],[8,10,["H3045"]],[10,11,["H3808"]],[11,13,["H3117"]],[13,16,["H4194"]]]},{"k":730,"v":[[0,1,["H6258"]],[1,3,["H5375"]],[3,6,["H4994"]],[6,8,["H3627"]],[8,10,["H8522"]],[10,13,["H7198"]],[13,16,["H3318"]],[16,19,["H7704"]],[19,21,["H6679"]],[21,24,["H6718"]]]},{"k":731,"v":[[0,2,["H6213"]],[2,5,["H4303"]],[5,7,["H834"]],[7,9,["H157"]],[9,11,["H935"]],[11,18,["H398"]],[18,19,["H5668"]],[19,21,["H5315"]],[21,23,["H1288"]],[23,25,["H2962"]],[25,27,["H4191"]]]},{"k":732,"v":[[0,2,["H7259"]],[2,3,["H8085"]],[3,5,["H3327"]],[5,6,["H1696"]],[6,7,["H413"]],[7,8,["H6215"]],[8,10,["H1121"]],[10,12,["H6215"]],[12,13,["H1980"]],[13,16,["H7704"]],[16,18,["H6679"]],[18,20,["H6718"]],[20,23,["H935"]],[23,24,[]]]},{"k":733,"v":[[0,2,["H7259"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3290"]],[5,7,["H1121"]],[7,8,["H559"]],[8,9,["H2009"]],[9,11,["H8085","(H853)"]],[11,13,["H1"]],[13,14,["H1696"]],[14,15,["H413"]],[15,16,["H6215"]],[16,18,["H251"]],[18,19,["H559"]]]},{"k":734,"v":[[0,1,["H935"]],[1,3,["H6718"]],[3,5,["H6213"]],[5,8,["H4303"]],[8,12,["H398"]],[12,14,["H1288"]],[14,16,["H6440"]],[16,18,["H3068"]],[18,19,["H6440"]],[19,21,["H4194"]]]},{"k":735,"v":[[0,1,["H6258"]],[1,4,["H1121"]],[4,5,["H8085"]],[5,7,["H6963"]],[7,11,["H834"]],[11,12,["H589"]],[12,13,["H6680"]],[13,14,[]]]},{"k":736,"v":[[0,1,["H1980"]],[1,2,["H4994"]],[2,3,["H413"]],[3,5,["H6629"]],[5,7,["H3947"]],[7,10,["H4480","H8033"]],[10,11,["H8147"]],[11,12,["H2896"]],[12,13,["H1423"]],[13,16,["H5795"]],[16,20,["H6213"]],[20,23,["H4303"]],[23,26,["H1"]],[26,28,["H834"]],[28,30,["H157"]]]},{"k":737,"v":[[0,4,["H935"]],[4,8,["H1"]],[8,12,["H398"]],[12,14,["H5668","H834"]],[14,17,["H1288"]],[17,19,["H6440"]],[19,21,["H4194"]]]},{"k":738,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7259"]],[5,7,["H517"]],[7,8,["H2005"]],[8,9,["H6215"]],[9,11,["H251"]],[11,14,["H8163"]],[14,15,["H376"]],[15,17,["H595"]],[17,20,["H2509"]],[20,21,["H376"]]]},{"k":739,"v":[[0,2,["H1"]],[2,3,["H194"]],[3,5,["H4959"]],[5,10,["H1961"]],[10,12,["H5869"]],[12,15,["H8591"]],[15,19,["H935"]],[19,21,["H7045"]],[21,22,["H5921"]],[22,25,["H3808"]],[25,27,["H1293"]]]},{"k":740,"v":[[0,3,["H517"]],[3,4,["H559"]],[4,7,["H5921"]],[7,11,["H7045"]],[11,13,["H1121"]],[13,14,["H389"]],[14,15,["H8085"]],[15,17,["H6963"]],[17,19,["H1980"]],[19,20,["H3947"]],[20,22,[]]]},{"k":741,"v":[[0,3,["H1980"]],[3,5,["H3947"]],[5,7,["H935"]],[7,11,["H517"]],[11,14,["H517"]],[14,15,["H6213"]],[15,17,["H4303"]],[17,19,["H834"]],[19,21,["H1"]],[21,22,["H157"]]]},{"k":742,"v":[[0,2,["H7259"]],[2,3,["H3947","(H853)"]],[3,4,["H2530"]],[4,5,["H899"]],[5,8,["H1419"]],[8,9,["H1121"]],[9,10,["H6215"]],[10,11,["H834"]],[11,13,["H854"]],[13,17,["H1004"]],[17,21,["H3847","(H853)"]],[21,22,["H3290"]],[22,24,["H6996"]],[24,25,["H1121"]]]},{"k":743,"v":[[0,3,["H3847"]],[3,5,["H5785"]],[5,8,["H1423"]],[8,11,["H5795"]],[11,12,["H5921"]],[12,14,["H3027"]],[14,16,["H5921"]],[16,18,["H2513"]],[18,21,["H6677"]]]},{"k":744,"v":[[0,3,["H5414","(H853)"]],[3,6,["H4303"]],[6,9,["H3899"]],[9,10,["H834"]],[10,13,["H6213"]],[13,16,["H3027"]],[16,19,["H1121"]],[19,20,["H3290"]]]},{"k":745,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H1"]],[6,8,["H559"]],[8,10,["H1"]],[10,13,["H559"]],[13,14,["H2009"]],[14,17,["H4310"]],[17,19,["H859"]],[19,21,["H1121"]]]},{"k":746,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1"]],[6,7,["H595"]],[7,9,["H6215"]],[9,11,["H1060"]],[11,14,["H6213"]],[14,16,["H834"]],[16,18,["H1696","H413"]],[18,20,["H6965"]],[20,23,["H4994"]],[23,24,["H3427"]],[24,26,["H398"]],[26,29,["H4480","H6718"]],[29,30,["H5668"]],[30,32,["H5315"]],[32,34,["H1288"]],[34,35,[]]]},{"k":747,"v":[[0,2,["H3327"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,7,["H4100"]],[7,10,["H2088"]],[10,13,["H4672"]],[13,16,["H4116"]],[16,18,["H1121"]],[18,21,["H559"]],[21,22,["H3588"]],[22,24,["H3068"]],[24,26,["H430"]],[26,27,["H7136"]],[27,29,["H6440"]],[29,30,[]]]},{"k":748,"v":[[0,2,["H3327"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3290"]],[5,7,["H5066"]],[7,10,["H4994"]],[10,14,["H4184"]],[14,17,["H1121"]],[17,19,["H859"]],[19,22,["H2088"]],[22,23,["H1121"]],[23,24,["H6215"]],[24,25,["H518"]],[25,26,["H3808"]]]},{"k":749,"v":[[0,2,["H3290"]],[2,4,["H5066"]],[4,5,["H413"]],[5,6,["H3327"]],[6,8,["H1"]],[8,11,["H4959"]],[11,14,["H559"]],[14,16,["H6963"]],[16,18,["H3290"]],[18,19,["H6963"]],[19,22,["H3027"]],[22,25,["H3027"]],[25,27,["H6215"]]]},{"k":750,"v":[[0,3,["H5234"]],[3,5,["H3808"]],[5,6,["H3588"]],[6,8,["H3027"]],[8,9,["H1961"]],[9,10,["H8163"]],[10,13,["H251"]],[13,14,["H6215"]],[14,15,["H3027"]],[15,18,["H1288"]],[18,19,[]]]},{"k":751,"v":[[0,3,["H559"]],[3,5,["H859"]],[5,7,["H2088"]],[7,8,["H1121"]],[8,9,["H6215"]],[9,12,["H559"]],[12,13,["H589"]],[13,14,[]]]},{"k":752,"v":[[0,3,["H559"]],[3,6,["H5066"]],[6,12,["H398"]],[12,15,["H1121"]],[15,16,["H4480","H6718"]],[16,17,["H4616"]],[17,19,["H5315"]],[19,21,["H1288"]],[21,27,["H5066"]],[27,33,["H398"]],[33,36,["H935"]],[36,38,["H3196"]],[38,41,["H8354"]]]},{"k":753,"v":[[0,3,["H1"]],[3,4,["H3327"]],[4,5,["H559"]],[5,6,["H413"]],[6,9,["H5066"]],[9,10,["H4994"]],[10,12,["H5401"]],[12,15,["H1121"]]]},{"k":754,"v":[[0,4,["H5066"]],[4,6,["H5401"]],[6,10,["H7306","(H853)"]],[10,12,["H7381"]],[12,15,["H899"]],[15,17,["H1288"]],[17,20,["H559"]],[20,21,["H7200"]],[21,23,["H7381"]],[23,26,["H1121"]],[26,30,["H7381"]],[30,33,["H7704"]],[33,34,["H834"]],[34,36,["H3068"]],[36,38,["H1288"]]]},{"k":755,"v":[[0,2,["H430"]],[2,3,["H5414"]],[3,7,["H4480","H2919"]],[7,9,["H8064"]],[9,12,["H4924"]],[12,15,["H776"]],[15,17,["H7230"]],[17,19,["H1715"]],[19,21,["H8492"]]]},{"k":756,"v":[[0,2,["H5971"]],[2,3,["H5647"]],[3,6,["H3816"]],[6,8,["H7812"]],[8,11,["H1933"]],[11,12,["H1376"]],[12,15,["H251"]],[15,19,["H517"]],[19,20,["H1121"]],[20,22,["H7812"]],[22,25,["H779"]],[25,30,["H779"]],[30,33,["H1288"]],[33,37,["H1288"]],[37,38,[]]]},{"k":757,"v":[[0,5,["H1961"]],[5,8,["H834"]],[8,9,["H3327"]],[9,13,["H3615"]],[13,15,["H1288","(H853)"]],[15,16,["H3290"]],[16,18,["H3290"]],[18,19,["H1961"]],[19,20,["H389"]],[20,23,["H3318","H3318"]],[23,24,["H4480","H854"]],[24,26,["H6440"]],[26,28,["H3327"]],[28,30,["H1"]],[30,32,["H6215"]],[32,34,["H251"]],[34,36,["H935"]],[36,39,["H4480","H6718"]]]},{"k":758,"v":[[0,2,["H1931"]],[2,3,["H1571"]],[3,5,["H6213"]],[5,7,["H4303"]],[7,9,["H935"]],[9,13,["H1"]],[13,15,["H559"]],[15,18,["H1"]],[18,21,["H1"]],[21,22,["H6965"]],[22,24,["H398"]],[24,27,["H1121"]],[27,28,["H4480","H6718"]],[28,29,["H5668"]],[29,31,["H5315"]],[31,33,["H1288"]],[33,34,[]]]},{"k":759,"v":[[0,2,["H3327"]],[2,4,["H1"]],[4,5,["H559"]],[5,8,["H4310"]],[8,10,["H859"]],[10,13,["H559"]],[13,14,["H589"]],[14,17,["H1121"]],[17,19,["H1060"]],[19,20,["H6215"]]]},{"k":760,"v":[[0,2,["H3327"]],[2,3,["H2729"]],[3,5,["H2731","H1419","H5704","H3966"]],[5,7,["H559"]],[7,8,["H4310"]],[8,9,["H645"]],[9,11,["H1931"]],[11,14,["H6679"]],[14,15,["H6718"]],[15,17,["H935"]],[17,23,["H398"]],[23,25,["H4480","H3605"]],[25,26,["H2962"]],[26,28,["H935"]],[28,31,["H1288"]],[31,33,["H1571"]],[33,37,["H1961"]],[37,38,["H1288"]]]},{"k":761,"v":[[0,3,["H6215"]],[3,4,["H8085","(H853)"]],[4,6,["H1697"]],[6,9,["H1"]],[9,11,["H6817"]],[11,14,["H1419"]],[14,15,["H5704"]],[15,16,["H3966"]],[16,17,["H4751"]],[17,18,["H6818"]],[18,20,["H559"]],[20,23,["H1"]],[23,24,["H1288"]],[24,27,["H589"]],[27,28,["H1571"]],[28,31,["H1"]]]},{"k":762,"v":[[0,3,["H559"]],[3,5,["H251"]],[5,6,["H935"]],[6,8,["H4820"]],[8,12,["H3947"]],[12,14,["H1293"]]]},{"k":763,"v":[[0,3,["H559"]],[3,7,["H3588"]],[7,8,["H7121","H8034"]],[8,9,["H3290"]],[9,13,["H6117"]],[13,15,["H2088"]],[15,17,["H6471"]],[17,20,["H3947","(H853)"]],[20,22,["H1062"]],[22,24,["H2009"]],[24,25,["H6258"]],[25,29,["H3947"]],[29,31,["H1293"]],[31,34,["H559"]],[34,37,["H3808"]],[37,38,["H680"]],[38,40,["H1293"]],[40,42,[]]]},{"k":764,"v":[[0,2,["H3327"]],[2,3,["H6030"]],[3,5,["H559"]],[5,7,["H6215"]],[7,8,["H2005"]],[8,11,["H7760"]],[11,14,["H1376"]],[14,16,["H3605"]],[16,18,["H251"]],[18,21,["H5414"]],[21,25,["H5650"]],[25,28,["H1715"]],[28,30,["H8492"]],[30,33,["H5564"]],[33,36,["H4100"]],[36,39,["H6213"]],[39,40,["H645"]],[40,44,["H1121"]]]},{"k":765,"v":[[0,2,["H6215"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1"]],[6,10,["H259"]],[10,11,["H1293"]],[11,13,["H1"]],[13,14,["H1288"]],[14,17,["H589"]],[17,18,["H1571"]],[18,21,["H1"]],[21,23,["H6215"]],[23,25,["H5375"]],[25,27,["H6963"]],[27,29,["H1058"]]]},{"k":766,"v":[[0,2,["H3327"]],[2,4,["H1"]],[4,5,["H6030"]],[5,7,["H559"]],[7,8,["H413"]],[8,10,["H2009"]],[10,12,["H4186"]],[12,14,["H1961"]],[14,16,["H4480","H4924"]],[16,19,["H776"]],[19,23,["H4480","H2919"]],[23,25,["H8064"]],[25,27,["H4480","H5920"]]]},{"k":767,"v":[[0,2,["H5921"]],[2,4,["H2719"]],[4,7,["H2421"]],[7,10,["H5647"]],[10,12,["H251"]],[12,18,["H1961"]],[18,19,["H834"]],[19,24,["H7300"]],[24,28,["H6561"]],[28,30,["H5923"]],[30,32,["H4480","H5921"]],[32,34,["H6677"]]]},{"k":768,"v":[[0,2,["H6215"]],[2,3,["H7852","(H853)"]],[3,4,["H3290"]],[4,6,["H5921"]],[6,8,["H1293"]],[8,9,["H834"]],[9,11,["H1"]],[11,12,["H1288"]],[12,15,["H6215"]],[15,16,["H559"]],[16,19,["H3820"]],[19,21,["H3117"]],[21,23,["H60"]],[23,26,["H1"]],[26,29,["H7126"]],[29,33,["H2026","(H853)"]],[33,35,["H251"]],[35,36,["H3290"]]]},{"k":769,"v":[[0,1,["(H853)"]],[1,3,["H1697"]],[3,5,["H6215"]],[5,7,["H1419"]],[7,8,["H1121"]],[8,10,["H5046"]],[10,12,["H7259"]],[12,15,["H7971"]],[15,17,["H7121"]],[17,18,["H3290"]],[18,20,["H6996"]],[20,21,["H1121"]],[21,23,["H559"]],[23,24,["H413"]],[24,26,["H2009"]],[26,28,["H251"]],[28,29,["H6215"]],[29,35,["H5162"]],[35,38,["H2026"]],[38,39,[]]]},{"k":770,"v":[[0,1,["H6258"]],[1,4,["H1121"]],[4,5,["H8085"]],[5,7,["H6963"]],[7,9,["H6965"]],[9,10,["H1272"]],[10,12,["H413"]],[12,13,["H3837"]],[13,15,["H251"]],[15,17,["H2771"]]]},{"k":771,"v":[[0,2,["H3427"]],[2,3,["H5973"]],[3,6,["H259"]],[6,7,["H3117"]],[7,8,["H5704","H834"]],[8,10,["H251"]],[10,11,["H2534"]],[11,13,["H7725"]]]},{"k":772,"v":[[0,1,["H5704"]],[1,3,["H251"]],[3,4,["H639"]],[4,6,["H7725"]],[6,7,["H4480"]],[7,11,["H7911","(H853)"]],[11,13,["H834"]],[13,16,["H6213"]],[16,22,["H7971"]],[22,24,["H3947"]],[24,27,["H4480","H8033"]],[27,28,["H4100"]],[28,32,["H7921"]],[32,33,["H1571"]],[33,36,["H8147"]],[36,38,["H259"]],[38,39,["H3117"]]]},{"k":773,"v":[[0,2,["H7259"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3327"]],[5,8,["H6973"]],[8,11,["H2416"]],[11,12,["H4480","H6440"]],[12,15,["H1323"]],[15,17,["H2845"]],[17,18,["H518"]],[18,19,["H3290"]],[19,20,["H3947"]],[20,22,["H802"]],[22,25,["H4480","H1323"]],[25,27,["H2845"]],[27,30,["H428"]],[30,35,["H4480","H1323"]],[35,38,["H776"]],[38,40,["H4100"]],[40,43,["H2416"]],[43,45,[]]]},{"k":774,"v":[[0,2,["H3327"]],[2,3,["H7121","H413"]],[3,4,["H3290"]],[4,6,["H1288"]],[6,9,["H6680"]],[9,12,["H559"]],[12,17,["H3808"]],[17,18,["H3947"]],[18,20,["H802"]],[20,23,["H4480","H1323"]],[23,25,["H3667"]]]},{"k":775,"v":[[0,1,["H6965"]],[1,2,["H1980"]],[2,4,["H6307"]],[4,7,["H1004"]],[7,9,["H1328"]],[9,11,["H517"]],[11,12,["H1"]],[12,14,["H3947"]],[14,17,["H802"]],[17,19,["H4480","H8033"]],[19,22,["H4480","H1323"]],[22,24,["H3837"]],[24,26,["H517"]],[26,27,["H251"]]]},{"k":776,"v":[[0,2,["H410"]],[2,3,["H7706"]],[3,4,["H1288"]],[4,9,["H6509"]],[9,11,["H7235"]],[11,16,["H1961"]],[16,18,["H6951"]],[18,20,["H5971"]]]},{"k":777,"v":[[0,2,["H5414"]],[2,3,["(H853)"]],[3,5,["H1293"]],[5,7,["H85"]],[7,13,["H2233"]],[13,14,["H854"]],[14,19,["H3423","(H853)"]],[19,21,["H776"]],[21,26,["H4033"]],[26,27,["H834"]],[27,28,["H430"]],[28,29,["H5414"]],[29,31,["H85"]]]},{"k":778,"v":[[0,2,["H3327"]],[2,4,["H7971","(H853)"]],[4,5,["H3290"]],[5,8,["H1980"]],[8,10,["H6307"]],[10,11,["H413"]],[11,12,["H3837"]],[12,13,["H1121"]],[13,15,["H1328"]],[15,17,["H761"]],[17,19,["H251"]],[19,21,["H7259"]],[21,22,["H3290"]],[22,24,["H6215"]],[24,25,["H517"]]]},{"k":779,"v":[[0,2,["H6215"]],[2,3,["H7200"]],[3,4,["H3588"]],[4,5,["H3327"]],[5,7,["H1288","(H853)"]],[7,8,["H3290"]],[8,12,["H7971","(H853)"]],[12,14,["H6307"]],[14,16,["H3947"]],[16,19,["H802"]],[19,21,["H4480","H8033"]],[21,26,["H1288"]],[26,32,["H6680","H5921"]],[32,33,["H559"]],[33,36,["H3808"]],[36,37,["H3947"]],[37,39,["H802"]],[39,42,["H4480","H1323"]],[42,44,["H3667"]]]},{"k":780,"v":[[0,3,["H3290"]],[3,4,["H8085","H413"]],[4,6,["H1"]],[6,9,["H517"]],[9,12,["H1980"]],[12,14,["H6307"]]]},{"k":781,"v":[[0,2,["H6215"]],[2,3,["H7200"]],[3,4,["H3588"]],[4,6,["H1323"]],[6,8,["H3667"]],[8,10,["H7451","H5869"]],[10,11,["H3327"]],[11,13,["H1"]]]},{"k":782,"v":[[0,2,["H1980"]],[2,3,["H6215"]],[3,4,["H413"]],[4,5,["H3458"]],[5,7,["H3947"]],[7,8,["H5921"]],[8,10,["H802"]],[10,13,["(H853)"]],[13,14,["H4258"]],[14,16,["H1323"]],[16,18,["H3458"]],[18,19,["H85"]],[19,20,["H1121"]],[20,22,["H269"]],[22,24,["H5032"]],[24,28,["H802"]]]},{"k":783,"v":[[0,2,["H3290"]],[2,4,["H3318"]],[4,6,["H4480","H884"]],[6,8,["H1980"]],[8,10,["H2771"]]]},{"k":784,"v":[[0,3,["H6293"]],[3,7,["H4725"]],[7,12,["H3885","H8033"]],[12,13,["H3588"]],[13,15,["H8121"]],[15,17,["H935"]],[17,20,["H3947"]],[20,23,["H4480","H68"]],[23,26,["H4725"]],[26,28,["H7760"]],[28,32,["H4763"]],[32,35,["H7901"]],[35,37,["H1931"]],[37,38,["H4725"]],[38,40,[]]]},{"k":785,"v":[[0,3,["H2492"]],[3,5,["H2009"]],[5,7,["H5551"]],[7,9,["H5324"]],[9,12,["H776"]],[12,15,["H7218"]],[15,18,["H5060"]],[18,20,["H8064"]],[20,22,["H2009"]],[22,24,["H4397"]],[24,26,["H430"]],[26,27,["H5927"]],[27,29,["H3381"]],[29,31,[]]]},{"k":786,"v":[[0,2,["H2009"]],[2,4,["H3068"]],[4,5,["H5324"]],[5,6,["H5921"]],[6,9,["H559"]],[9,10,["H589"]],[10,13,["H3068"]],[13,14,["H430"]],[14,16,["H85"]],[16,18,["H1"]],[18,21,["H430"]],[21,23,["H3327"]],[23,25,["H776"]],[25,26,["H834","H5921"]],[26,27,["H859"]],[27,28,["H7901"]],[28,33,["H5414"]],[33,38,["H2233"]]]},{"k":787,"v":[[0,3,["H2233"]],[3,5,["H1961"]],[5,8,["H6083"]],[8,11,["H776"]],[11,16,["H6555"]],[16,19,["H3220"]],[19,23,["H6924"]],[23,27,["H6828"]],[27,31,["H5045"]],[31,38,["H2233"]],[38,40,["H3605"]],[40,42,["H4940"]],[42,45,["H127"]],[45,47,["H1288"]]]},{"k":788,"v":[[0,2,["H2009"]],[2,3,["H595"]],[3,5,["H5973"]],[5,9,["H8104"]],[9,12,["H3605"]],[12,14,["H834"]],[14,16,["H1980"]],[16,21,["H7725"]],[21,22,["H413"]],[22,23,["H2063"]],[23,24,["H127"]],[24,25,["H3588"]],[25,28,["H3808"]],[28,29,["H5800"]],[29,31,["H5704","H834","H518"]],[31,34,["H6213","(H853)"]],[34,36,["H834"]],[36,39,["H1696"]],[39,42,[]]]},{"k":789,"v":[[0,2,["H3290"]],[2,3,["H3364"]],[3,7,["H4480","H8142"]],[7,10,["H559"]],[10,11,["H403"]],[11,13,["H3068"]],[13,14,["H3426"]],[14,16,["H2088"]],[16,17,["H4725"]],[17,19,["H595"]],[19,20,["H3045"]],[20,22,["H3808"]]]},{"k":790,"v":[[0,4,["H3372"]],[4,6,["H559"]],[6,7,["H4100"]],[7,8,["H3372"]],[8,10,["H2088"]],[10,11,["H4725"]],[11,12,["H2088"]],[12,14,["H369"]],[14,16,["H3588","H518"]],[16,18,["H1004"]],[18,20,["H430"]],[20,22,["H2088"]],[22,25,["H8179"]],[25,27,["H8064"]]]},{"k":791,"v":[[0,2,["H3290"]],[2,5,["H7925"]],[5,8,["H1242"]],[8,10,["H3947","(H853)"]],[10,12,["H68"]],[12,13,["H834"]],[13,16,["H7760"]],[16,19,["H4763"]],[19,23,["H7760","(H853)"]],[23,26,["H4676"]],[26,28,["H3332"]],[28,29,["H8081"]],[29,30,["H5921"]],[30,32,["H7218"]],[32,34,[]]]},{"k":792,"v":[[0,3,["H7121","(H853)"]],[3,5,["H8034"]],[5,7,["H1931"]],[7,8,["H4725"]],[8,9,["H1008"]],[9,10,["H199"]],[10,12,["H8034"]],[12,15,["H5892"]],[15,18,["H3870"]],[18,21,["H7223"]]]},{"k":793,"v":[[0,2,["H3290"]],[2,3,["H5087"]],[3,5,["H5088"]],[5,6,["H559"]],[6,7,["H518"]],[7,8,["H430"]],[8,10,["H1961"]],[10,11,["H5973"]],[11,15,["H8104"]],[15,18,["H2088"]],[18,19,["H1870"]],[19,20,["H834"]],[20,21,["H595"]],[21,22,["H1980"]],[22,25,["H5414"]],[25,27,["H3899"]],[27,29,["H398"]],[29,31,["H899"]],[31,34,["H3847"]]]},{"k":794,"v":[[0,5,["H7725"]],[5,6,["H413"]],[6,8,["H1"]],[8,9,["H1004"]],[9,11,["H7965"]],[11,15,["H3068"]],[15,16,["H1961"]],[16,18,["H430"]]]},{"k":795,"v":[[0,2,["H2063"]],[2,3,["H68"]],[3,4,["H834"]],[4,7,["H7760"]],[7,10,["H4676"]],[10,12,["H1961"]],[12,13,["H430"]],[13,14,["H1004"]],[14,17,["H3605"]],[17,18,["H834"]],[18,21,["H5414"]],[21,28,["H6237","H6237"]],[28,30,[]]]},{"k":796,"v":[[0,2,["H3290"]],[2,6,["H5375","H7272"]],[6,8,["H1980"]],[8,11,["H776"]],[11,14,["H1121"]],[14,17,["H6924"]]]},{"k":797,"v":[[0,3,["H7200"]],[3,5,["H2009"]],[5,7,["H875"]],[7,10,["H7704"]],[10,12,["H2009"]],[12,13,["H8033"]],[13,15,["H7969"]],[15,16,["H5739"]],[16,18,["H6629"]],[18,19,["H7257"]],[19,20,["H5921"]],[20,22,["H3588"]],[22,24,["H4480"]],[24,25,["H1931"]],[25,26,["H875"]],[26,28,["H8248"]],[28,30,["H5739"]],[30,33,["H1419"]],[33,34,["H68"]],[34,36,["H5921"]],[36,38,["H875"]],[38,39,["H6310"]]]},{"k":798,"v":[[0,2,["H8033"]],[2,4,["H3605"]],[4,6,["H5739"]],[6,7,["H622"]],[7,10,["H1556","(H853)"]],[10,12,["H68"]],[12,13,["H4480","H5921"]],[13,15,["H875"]],[15,16,["H6310"]],[16,18,["H8248","(H853)"]],[18,20,["H6629"]],[20,22,["H7725","(H853)"]],[22,24,["H68"]],[24,26,["H5921"]],[26,28,["H875"]],[28,29,["H6310"]],[29,32,["H4725"]]]},{"k":799,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,7,["H251"]],[7,8,["H4480","H370"]],[8,10,["H859"]],[10,13,["H559"]],[13,15,["H4480","H2771"]],[15,17,["H587"]]]},{"k":800,"v":[[0,3,["H559"]],[3,6,["H3045"]],[6,7,["(H853)"]],[7,8,["H3837"]],[8,10,["H1121"]],[10,12,["H5152"]],[12,15,["H559"]],[15,17,["H3045"]],[17,18,[]]]},{"k":801,"v":[[0,3,["H559"]],[3,8,["H7965"]],[8,11,["H559"]],[11,14,["H7965"]],[14,16,["H2009"]],[16,17,["H7354"]],[17,19,["H1323"]],[19,20,["H935"]],[20,21,["H5973"]],[21,23,["H6629"]]]},{"k":802,"v":[[0,3,["H559"]],[3,4,["H2005"]],[4,7,["H5750"]],[7,8,["H1419"]],[8,9,["H3117"]],[9,10,["H3808"]],[10,13,["H6256"]],[13,16,["H4735"]],[16,20,["H622"]],[20,21,["H8248"]],[21,24,["H6629"]],[24,26,["H1980"]],[26,28,["H7462"]],[28,29,[]]]},{"k":803,"v":[[0,3,["H559"]],[3,5,["H3808","H3201"]],[5,6,["H5704","H834"]],[6,7,["H3605"]],[7,9,["H5739"]],[9,12,["H622"]],[12,16,["H1556","(H853)"]],[16,18,["H68"]],[18,19,["H4480","H5921"]],[19,21,["H875"]],[21,22,["H6310"]],[22,25,["H8248"]],[25,27,["H6629"]]]},{"k":804,"v":[[0,4,["H5750"]],[4,5,["H1696"]],[5,6,["H5973"]],[6,8,["H7354"]],[8,9,["H935"]],[9,10,["H5973"]],[10,12,["H1"]],[12,13,["H6629"]],[13,14,["H3588"]],[14,15,["H1931"]],[15,16,["H7462"]],[16,17,[]]]},{"k":805,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H3290"]],[7,8,["H7200","(H853)"]],[8,9,["H7354"]],[9,11,["H1323"]],[11,13,["H3837"]],[13,15,["H517"]],[15,16,["H251"]],[16,19,["H6629"]],[19,21,["H3837"]],[21,23,["H517"]],[23,24,["H251"]],[24,26,["H3290"]],[26,28,["H5066"]],[28,30,["H1556","(H853)"]],[30,32,["H68"]],[32,33,["H4480","H5921"]],[33,35,["H875"]],[35,36,["H6310"]],[36,38,["H8248","(H853)"]],[38,40,["H6629"]],[40,42,["H3837"]],[42,44,["H517"]],[44,45,["H251"]]]},{"k":806,"v":[[0,2,["H3290"]],[2,3,["H5401"]],[3,4,["H7354"]],[4,7,["H5375","(H853)"]],[7,9,["H6963"]],[9,11,["H1058"]]]},{"k":807,"v":[[0,2,["H3290"]],[2,3,["H5046"]],[3,4,["H7354"]],[4,5,["H3588"]],[5,6,["H1931"]],[6,9,["H1"]],[9,10,["H251"]],[10,12,["H3588"]],[12,13,["H1931"]],[13,15,["H7259"]],[15,16,["H1121"]],[16,19,["H7323"]],[19,21,["H5046"]],[21,23,["H1"]]]},{"k":808,"v":[[0,5,["H1961"]],[5,7,["H3837"]],[7,8,["H8085","(H853)"]],[8,10,["H8088"]],[10,12,["H3290"]],[12,14,["H269"]],[14,15,["H1121"]],[15,18,["H7323"]],[18,20,["H7125"]],[20,23,["H2263"]],[23,26,["H5401"]],[26,29,["H935"]],[29,31,["H413"]],[31,33,["H1004"]],[33,36,["H5608"]],[36,37,["H3837","(H853)"]],[37,38,["H3605"]],[38,39,["H428"]],[39,40,["H1697"]]]},{"k":809,"v":[[0,2,["H3837"]],[2,3,["H559"]],[3,6,["H389"]],[6,7,["H859"]],[7,10,["H6106"]],[10,13,["H1320"]],[13,16,["H3427"]],[16,17,["H5973"]],[17,20,["H3117"]],[20,23,["H2320"]]]},{"k":810,"v":[[0,2,["H3837"]],[2,3,["H559"]],[3,5,["H3290"]],[5,6,["H3588"]],[6,7,["H859"]],[7,10,["H251"]],[10,14,["H5647"]],[14,17,["H2600"]],[17,18,["H5046"]],[18,20,["H4100"]],[20,23,["H4909"]],[23,24,[]]]},{"k":811,"v":[[0,2,["H3837"]],[2,4,["H8147"]],[4,5,["H1323"]],[5,7,["H8034"]],[7,10,["H1419"]],[10,12,["H3812"]],[12,15,["H8034"]],[15,18,["H6996"]],[18,20,["H7354"]]]},{"k":812,"v":[[0,1,["H3812"]],[1,3,["H7390"]],[3,4,["H5869"]],[4,6,["H7354"]],[6,7,["H1961"]],[7,8,["H3303","H8389"]],[8,10,["H3303"]],[10,11,["H4758"]]]},{"k":813,"v":[[0,2,["H3290"]],[2,3,["H157","(H853)"]],[3,4,["H7354"]],[4,6,["H559"]],[6,9,["H5647"]],[9,11,["H7651"]],[11,12,["H8141"]],[12,14,["H7354"]],[14,16,["H6996"]],[16,17,["H1323"]]]},{"k":814,"v":[[0,2,["H3837"]],[2,3,["H559"]],[3,6,["H2896"]],[6,9,["H5414"]],[9,17,["H4480","H5414"]],[17,20,["H312"]],[20,21,["H376"]],[21,22,["H3427"]],[22,23,["H5973"]],[23,24,[]]]},{"k":815,"v":[[0,2,["H3290"]],[2,3,["H5647"]],[3,4,["H7651"]],[4,5,["H8141"]],[5,7,["H7354"]],[7,10,["H1961","H5869"]],[10,15,["H259"]],[15,16,["H3117"]],[16,19,["H160"]],[19,23,[]]]},{"k":816,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3837"]],[5,6,["H3051"]],[6,7,["(H853)"]],[7,9,["H802"]],[9,10,["H3588"]],[10,12,["H3117"]],[12,14,["H4390"]],[14,19,["H935"]],[19,20,["H413"]],[20,21,[]]]},{"k":817,"v":[[0,2,["H3837"]],[2,4,["H622","(H853)"]],[4,5,["H3605"]],[5,7,["H376"]],[7,10,["H4725"]],[10,12,["H6213"]],[12,14,["H4960"]]]},{"k":818,"v":[[0,5,["H1961"]],[5,8,["H6153"]],[8,11,["H3947","(H853)"]],[11,12,["H3812"]],[12,14,["H1323"]],[14,16,["H935"]],[16,18,["H413"]],[18,23,["H935"]],[23,24,["H413"]],[24,25,[]]]},{"k":819,"v":[[0,2,["H3837"]],[2,3,["H5414"]],[3,6,["H1323"]],[6,7,["H3812","(H853)"]],[7,8,["H2153"]],[8,10,["H8198"]],[10,13,["H8198"]]]},{"k":820,"v":[[0,5,["H1961"]],[5,9,["H1242"]],[9,10,["H2009"]],[10,11,["H1931"]],[11,13,["H3812"]],[13,16,["H559"]],[16,17,["H413"]],[17,18,["H3837"]],[18,19,["H4100"]],[19,21,["H2063"]],[21,24,["H6213"]],[24,28,["H3808"]],[28,30,["H5647"]],[30,31,["H5973"]],[31,34,["H7354"]],[34,35,["H4100"]],[35,39,["H7411"]],[39,40,[]]]},{"k":821,"v":[[0,2,["H3837"]],[2,3,["H559"]],[3,6,["H3808"]],[6,8,["H3651"]],[8,9,["H6213"]],[9,12,["H4725"]],[12,14,["H5414"]],[14,16,["H6810"]],[16,17,["H6440"]],[17,19,["H1067"]]]},{"k":822,"v":[[0,1,["H4390"]],[1,2,["H2063"]],[2,3,["H7620"]],[3,7,["H5414"]],[7,8,["(H853)"]],[8,9,["H2063"]],[9,10,["H1571"]],[10,13,["H5656"]],[13,14,["H834"]],[14,17,["H5647"]],[17,18,["H5973"]],[18,20,["H5750"]],[20,21,["H7651"]],[21,22,["H312"]],[22,23,["H8141"]]]},{"k":823,"v":[[0,2,["H3290"]],[2,3,["H6213"]],[3,4,["H3651"]],[4,6,["H4390"]],[6,7,["H2063"]],[7,8,["H7620"]],[8,11,["H5414"]],[11,12,["(H853)"]],[12,13,["H7354"]],[13,15,["H1323"]],[15,17,["H802"]],[17,18,[]]]},{"k":824,"v":[[0,2,["H3837"]],[2,3,["H5414"]],[3,5,["H7354"]],[5,7,["H1323","(H853)"]],[7,8,["H1090"]],[8,10,["H8198"]],[10,14,["H8198"]]]},{"k":825,"v":[[0,4,["H935"]],[4,5,["H1571"]],[5,6,["H413"]],[6,7,["H7354"]],[7,10,["H157"]],[10,11,["H1571","(H853)"]],[11,12,["H7354"]],[12,15,["H4480","H3812"]],[15,17,["H5647"]],[17,18,["H5973"]],[18,20,["H5750"]],[20,21,["H7651"]],[21,22,["H312"]],[22,23,["H8141"]]]},{"k":826,"v":[[0,4,["H3068"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,7,["H3812"]],[7,9,["H8130"]],[9,11,["H6605","(H853)"]],[11,13,["H7358"]],[13,15,["H7354"]],[15,17,["H6135"]]]},{"k":827,"v":[[0,2,["H3812"]],[2,3,["H2029"]],[3,5,["H3205"]],[5,7,["H1121"]],[7,10,["H7121"]],[10,12,["H8034"]],[12,13,["H7205"]],[13,14,["H3588"]],[14,16,["H559"]],[16,17,["H3588"]],[17,19,["H3068"]],[19,21,["H7200"]],[21,24,["H6040"]],[24,25,["H6258"]],[25,26,["H3588"]],[26,28,["H376"]],[28,30,["H157"]],[30,31,[]]]},{"k":828,"v":[[0,3,["H2029"]],[3,4,["H5750"]],[4,6,["H3205"]],[6,8,["H1121"]],[8,10,["H559"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,15,["H8085"]],[15,16,["H3588"]],[16,17,["H595"]],[17,19,["H8130"]],[19,23,["H5414"]],[23,24,["(H853)"]],[24,25,["H2088"]],[25,27,["H1571"]],[27,30,["H7121"]],[30,32,["H8034"]],[32,33,["H8095"]]]},{"k":829,"v":[[0,3,["H2029"]],[3,4,["H5750"]],[4,6,["H3205"]],[6,8,["H1121"]],[8,10,["H559"]],[10,11,["H6258"]],[11,13,["H6471"]],[13,16,["H376"]],[16,18,["H3867"]],[18,19,["H413"]],[19,21,["H3588"]],[21,24,["H3205"]],[24,26,["H7969"]],[26,27,["H1121"]],[27,28,["H5921","H3651"]],[28,31,["H8034"]],[31,32,["H7121"]],[32,33,["H3878"]]]},{"k":830,"v":[[0,3,["H2029"]],[3,4,["H5750"]],[4,6,["H3205"]],[6,8,["H1121"]],[8,11,["H559"]],[11,12,["H6471"]],[12,15,["H3034","(H853)"]],[15,17,["H3068"]],[17,18,["H5921","H3651"]],[18,20,["H7121"]],[20,22,["H8034"]],[22,23,["H3063"]],[23,25,["H5975"]],[25,26,["H4480","H3205"]]]},{"k":831,"v":[[0,3,["H7354"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,10,["H3205","H3808","H3290"]],[10,11,["H7354"]],[11,12,["H7065"]],[12,14,["H269"]],[14,16,["H559"]],[16,17,["H413"]],[17,18,["H3290"]],[18,19,["H3051"]],[19,21,["H1121"]],[21,22,["H518"]],[22,23,["H369"]],[23,24,["H595"]],[24,25,["H4191"]]]},{"k":832,"v":[[0,2,["H3290"]],[2,3,["H639"]],[3,5,["H2734"]],[5,7,["H7354"]],[7,10,["H559"]],[10,12,["H595"]],[12,14,["H430"]],[14,15,["H8478"]],[15,16,["H834"]],[16,18,["H4513"]],[18,19,["H4480"]],[19,22,["H6529"]],[22,25,["H990"]]]},{"k":833,"v":[[0,3,["H559"]],[3,4,["H2009"]],[4,6,["H519"]],[6,7,["H1090"]],[7,9,["H935"]],[9,10,["H413"]],[10,15,["H3205"]],[15,16,["H5921"]],[16,18,["H1290"]],[18,20,["H595"]],[20,22,["H1571"]],[22,24,["H1129"]],[24,25,["H4480"]],[25,26,[]]]},{"k":834,"v":[[0,3,["H5414"]],[3,4,["(H853)"]],[4,5,["H1090"]],[5,7,["H8198"]],[7,9,["H802"]],[9,11,["H3290"]],[11,13,["H935"]],[13,14,["H413"]],[14,15,[]]]},{"k":835,"v":[[0,2,["H1090"]],[2,3,["H2029"]],[3,5,["H3205"]],[5,6,["H3290"]],[6,8,["H1121"]]]},{"k":836,"v":[[0,2,["H7354"]],[2,3,["H559"]],[3,4,["H430"]],[4,6,["H1777"]],[6,10,["H1571"]],[10,11,["H8085"]],[11,13,["H6963"]],[13,16,["H5414"]],[16,19,["H1121"]],[19,20,["H5921","H3651"]],[20,21,["H7121"]],[21,24,["H8034"]],[24,25,["H1835"]]]},{"k":837,"v":[[0,2,["H1090"]],[2,3,["H7354"]],[3,4,["H8198"]],[4,5,["H2029"]],[5,6,["H5750"]],[6,8,["H3205"]],[8,9,["H3290"]],[9,11,["H8145"]],[11,12,["H1121"]]]},{"k":838,"v":[[0,2,["H7354"]],[2,3,["H559"]],[3,5,["H430"]],[5,6,["H5319"]],[6,9,["H6617"]],[9,10,["H5973"]],[10,12,["H269"]],[12,13,["H1571"]],[13,16,["H3201"]],[16,19,["H7121"]],[19,21,["H8034"]],[21,22,["H5321"]]]},{"k":839,"v":[[0,2,["H3812"]],[2,3,["H7200"]],[3,4,["H3588"]],[4,7,["H5975"]],[7,8,["H4480","H3205"]],[8,10,["H3947","(H853)"]],[10,11,["H2153"]],[11,13,["H8198"]],[13,15,["H5414"]],[15,17,["H3290"]],[17,19,["H802"]]]},{"k":840,"v":[[0,2,["H2153"]],[2,3,["H3812"]],[3,4,["H8198"]],[4,5,["H3205"]],[5,6,["H3290"]],[6,8,["H1121"]]]},{"k":841,"v":[[0,2,["H3812"]],[2,3,["H559"]],[3,6,["H1413"]],[6,9,["H7121","(H853)"]],[9,11,["H8034"]],[11,12,["H1410"]]]},{"k":842,"v":[[0,2,["H2153"]],[2,3,["H3812"]],[3,4,["H8198"]],[4,5,["H3205"]],[5,6,["H3290"]],[6,8,["H8145"]],[8,9,["H1121"]]]},{"k":843,"v":[[0,2,["H3812"]],[2,3,["H559"]],[3,4,["H837"]],[4,7,["H3588"]],[7,9,["H1323"]],[9,13,["H833"]],[13,16,["H7121","(H853)"]],[16,18,["H8034"]],[18,19,["H836"]]]},{"k":844,"v":[[0,2,["H7205"]],[2,3,["H1980"]],[3,6,["H3117"]],[6,8,["H2406"]],[8,9,["H7105"]],[9,11,["H4672"]],[11,12,["H1736"]],[12,15,["H7704"]],[15,17,["H935"]],[17,19,["H413"]],[19,21,["H517"]],[21,22,["H3812"]],[22,24,["H7354"]],[24,25,["H559"]],[25,26,["H413"]],[26,27,["H3812"]],[27,28,["H5414"]],[28,32,["H4994"]],[32,35,["H1121"]],[35,36,["H4480","H1736"]]]},{"k":845,"v":[[0,3,["H559"]],[3,10,["H4592"]],[10,14,["H3947","(H853)"]],[14,16,["H376"]],[16,21,["H3947","(H853)"]],[21,23,["H1121"]],[23,24,["H1736"]],[24,25,["H1571"]],[25,27,["H7354"]],[27,28,["H559"]],[28,29,["H3651"]],[29,32,["H7901"]],[32,33,["H5973"]],[33,36,["H3915"]],[36,37,["H8478"]],[37,39,["H1121"]],[39,40,["H1736"]]]},{"k":846,"v":[[0,2,["H3290"]],[2,3,["H935"]],[3,5,["H4480"]],[5,7,["H7704"]],[7,10,["H6153"]],[10,12,["H3812"]],[12,14,["H3318"]],[14,16,["H7125"]],[16,19,["H559"]],[19,23,["H935"]],[23,24,["H413"]],[24,26,["H3588"]],[26,30,["H7936","H7936"]],[30,34,["H1121"]],[34,35,["H1736"]],[35,38,["H7901"]],[38,39,["H5973"]],[39,41,["H1931"]],[41,42,["H3915"]]]},{"k":847,"v":[[0,2,["H430"]],[2,3,["H8085"]],[3,4,["H413"]],[4,5,["H3812"]],[5,8,["H2029"]],[8,10,["H3205"]],[10,11,["H3290"]],[11,13,["H2549"]],[13,14,["H1121"]]]},{"k":848,"v":[[0,2,["H3812"]],[2,3,["H559"]],[3,4,["H430"]],[4,6,["H5414"]],[6,9,["H7939"]],[9,10,["H834"]],[10,13,["H5414"]],[13,15,["H8198"]],[15,18,["H376"]],[18,21,["H7121"]],[21,23,["H8034"]],[23,24,["H3485"]]]},{"k":849,"v":[[0,2,["H3812"]],[2,3,["H2029"]],[3,4,["H5750"]],[4,6,["H3205"]],[6,7,["H3290"]],[7,9,["H8345"]],[9,10,["H1121"]]]},{"k":850,"v":[[0,2,["H3812"]],[2,3,["H559"]],[3,4,["H430"]],[4,6,["H2064"]],[6,10,["H2896"]],[10,11,["H2065"]],[11,12,["H6471"]],[12,15,["H376"]],[15,17,["H2082"]],[17,19,["H3588"]],[19,22,["H3205"]],[22,24,["H8337"]],[24,25,["H1121"]],[25,28,["H7121","(H853)"]],[28,30,["H8034"]],[30,31,["H2074"]]]},{"k":851,"v":[[0,2,["H310"]],[2,4,["H3205"]],[4,6,["H1323"]],[6,8,["H7121","(H853)"]],[8,10,["H8034"]],[10,11,["H1783"]]]},{"k":852,"v":[[0,2,["H430"]],[2,3,["H2142","(H853)"]],[3,4,["H7354"]],[4,6,["H430"]],[6,7,["H8085"]],[7,8,["H413"]],[8,11,["H6605","(H853)"]],[11,13,["H7358"]]]},{"k":853,"v":[[0,3,["H2029"]],[3,5,["H3205"]],[5,7,["H1121"]],[7,9,["H559"]],[9,10,["H430"]],[10,13,["H622","(H853)"]],[13,15,["H2781"]]]},{"k":854,"v":[[0,3,["H7121","(H853)"]],[3,5,["H8034"]],[5,6,["H3130"]],[6,8,["H559"]],[8,10,["H3068"]],[10,12,["H3254"]],[12,15,["H312"]],[15,16,["H1121"]]]},{"k":855,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H7354"]],[7,9,["H3205","(H853)"]],[9,10,["H3130"]],[10,12,["H3290"]],[12,13,["H559"]],[13,14,["H413"]],[14,15,["H3837"]],[15,18,["H7971"]],[18,22,["H1980"]],[22,23,["H413"]],[23,26,["H4725"]],[26,30,["H776"]]]},{"k":856,"v":[[0,1,["H5414"]],[1,2,["(H853)"]],[2,4,["H802"]],[4,7,["H3206"]],[7,9,["H834","H2004"]],[9,12,["H5647"]],[12,17,["H1980"]],[17,18,["H3588"]],[18,19,["H859"]],[19,20,["H3045","(H853)"]],[20,22,["H5656"]],[22,23,["H834"]],[23,26,["H5647"]],[26,27,[]]]},{"k":857,"v":[[0,2,["H3837"]],[2,3,["H559"]],[3,4,["H413"]],[4,8,["H4994"]],[8,9,["H518"]],[9,12,["H4672"]],[12,13,["H2580"]],[13,16,["H5869"]],[16,23,["H5172"]],[23,26,["H3068"]],[26,28,["H1288"]],[28,32,["H1558"]]]},{"k":858,"v":[[0,3,["H559"]],[3,4,["H5344","H5921"]],[4,7,["H7939"]],[7,11,["H5414"]],[11,12,[]]]},{"k":859,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H859"]],[6,7,["H3045","(H853)"]],[7,8,["H834"]],[8,11,["H5647"]],[11,14,["H834"]],[14,16,["H4735"]],[16,17,["H1961"]],[17,18,["H854"]],[18,19,[]]]},{"k":860,"v":[[0,1,["H3588"]],[1,4,["H4592"]],[4,5,["H834"]],[5,7,["H1961"]],[7,8,["H6440"]],[8,15,["H6555"]],[15,18,["H7230"]],[18,21,["H3068"]],[21,23,["H1288"]],[23,27,["H7272"]],[27,29,["H6258"]],[29,30,["H4970"]],[30,32,["H595"]],[32,33,["H6213"]],[33,37,["H1004"]],[37,38,["H1571"]]]},{"k":861,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,7,["H5414"]],[7,10,["H3290"]],[10,11,["H559"]],[11,14,["H3808"]],[14,15,["H5414"]],[15,18,["H3972"]],[18,19,["H518"]],[19,22,["H6213"]],[22,23,["H2088"]],[23,24,["H1697"]],[24,29,["H7725"]],[29,30,["H7462"]],[30,32,["H8104"]],[32,34,["H6629"]]]},{"k":862,"v":[[0,4,["H5674"]],[4,5,["H3605"]],[5,7,["H6629"]],[7,9,["H3117"]],[9,10,["H5493"]],[10,12,["H4480","H8033"]],[12,13,["H3605"]],[13,15,["H5348"]],[15,17,["H2921"]],[17,18,["H7716"]],[18,20,["H3605"]],[20,22,["H2345"]],[22,23,["H7716"]],[23,26,["H3775"]],[26,29,["H2921"]],[29,31,["H5348"]],[31,34,["H5795"]],[34,39,["H1961"]],[39,41,["H7939"]]]},{"k":863,"v":[[0,4,["H6666"]],[4,5,["H6030"]],[5,9,["H3117"]],[9,11,["H4279"]],[11,12,["H3588"]],[12,15,["H935"]],[15,16,["H5921"]],[16,18,["H7939"]],[18,21,["H6440"]],[21,23,["H3605"]],[23,24,["H834"]],[24,26,["H369"]],[26,27,["H5348"]],[27,29,["H2921"]],[29,32,["H5795"]],[32,34,["H2345"]],[34,37,["H3775"]],[37,38,["H1931"]],[38,42,["H1589"]],[42,43,["H854"]],[43,44,[]]]},{"k":864,"v":[[0,2,["H3837"]],[2,3,["H559"]],[3,4,["H2005"]],[4,6,["H3863"]],[6,9,["H1961"]],[9,13,["H1697"]]]},{"k":865,"v":[[0,3,["H5493"]],[3,4,["H1931"]],[4,5,["H3117","(H853)"]],[5,8,["H8495"]],[8,11,["H6124"]],[11,13,["H2921"]],[13,15,["H3605"]],[15,18,["H5795"]],[18,21,["H5348"]],[21,23,["H2921"]],[23,26,["H3605"]],[26,27,["H834"]],[27,30,["H3836"]],[30,34,["H3605"]],[34,36,["H2345"]],[36,39,["H3775"]],[39,41,["H5414"]],[41,45,["H3027"]],[45,48,["H1121"]]]},{"k":866,"v":[[0,3,["H7760"]],[3,4,["H7969"]],[4,5,["H3117"]],[5,6,["H1870"]],[6,7,["H996"]],[7,10,["H3290"]],[10,12,["H3290"]],[12,13,["H7462","(H853)"]],[13,15,["H3498"]],[15,17,["H3837"]],[17,18,["H6629"]]]},{"k":867,"v":[[0,2,["H3290"]],[2,3,["H3947"]],[3,5,["H4731"]],[5,7,["H3892"]],[7,8,["H3839"]],[8,12,["H3869"]],[12,15,["H6196"]],[15,17,["H6478"]],[17,18,["H3836"]],[18,19,["H6479"]],[19,21,["H2004"]],[21,25,["H3836"]],[25,26,["H4286"]],[26,27,["H834"]],[27,29,["H5921"]],[29,31,["H4731"]]]},{"k":868,"v":[[0,3,["H3322","(H853)"]],[3,5,["H4731"]],[5,6,["H834"]],[6,9,["H6478"]],[9,10,["H5227"]],[10,12,["H6629"]],[12,15,["H7298"]],[15,18,["H4325"]],[18,19,["H8268"]],[19,20,["H834"]],[20,22,["H6629"]],[22,23,["H935"]],[23,25,["H8354"]],[25,29,["H3179"]],[29,32,["H935"]],[32,34,["H8354"]]]},{"k":869,"v":[[0,3,["H6629"]],[3,4,["H3179"]],[4,5,["H413"]],[5,7,["H4731"]],[7,10,["H3205"]],[10,11,["H6629"]],[11,12,["H6124"]],[12,13,["H5348"]],[13,15,["H2921"]]]},{"k":870,"v":[[0,2,["H3290"]],[2,4,["H6504"]],[4,6,["H3775"]],[6,8,["H5414"]],[8,10,["H6440"]],[10,13,["H6629"]],[13,14,["H413"]],[14,16,["H6124"]],[16,18,["H3605"]],[18,20,["H2345"]],[20,23,["H6629"]],[23,25,["H3837"]],[25,28,["H7896"]],[28,31,["H5739"]],[31,33,["H905"]],[33,35,["H7896"]],[35,37,["H3808"]],[37,38,["H5921"]],[38,39,["H3837"]],[39,40,["H6629"]]]},{"k":871,"v":[[0,5,["H1961"]],[5,6,["H3605"]],[6,8,["H7194"]],[8,9,["H6629"]],[9,11,["H3179"]],[11,13,["H3290"]],[13,14,["H7760","(H853)"]],[14,16,["H4731"]],[16,19,["H5869"]],[19,22,["H6629"]],[22,25,["H7298"]],[25,29,["H3179"]],[29,32,["H4731"]]]},{"k":872,"v":[[0,4,["H6629"]],[4,6,["H5848"]],[6,8,["H7760"]],[8,10,["H3808"]],[10,14,["H5848"]],[14,15,["H1961"]],[15,16,["H3837"]],[16,19,["H7194"]],[19,20,["H3290"]]]},{"k":873,"v":[[0,3,["H376"]],[3,4,["H6555"]],[4,5,["H3966","H3966"]],[5,7,["H1961"]],[7,8,["H7227"]],[8,9,["H6629"]],[9,11,["H8198"]],[11,13,["H5650"]],[13,15,["H1581"]],[15,17,["H2543"]]]},{"k":874,"v":[[0,3,["H8085","(H853)"]],[3,5,["H1697"]],[5,7,["H3837"]],[7,8,["H1121"]],[8,9,["H559"]],[9,10,["H3290"]],[10,13,["H3947","(H853)"]],[13,14,["H3605"]],[14,15,["H834"]],[15,18,["H1"]],[18,22,["H4480","H834"]],[22,25,["H1"]],[25,28,["H6213","(H853)"]],[28,29,["H3605"]],[29,30,["H2088"]],[30,31,["H3519"]]]},{"k":875,"v":[[0,2,["H3290"]],[2,3,["H7200","(H853)"]],[3,5,["H6440"]],[5,7,["H3837"]],[7,9,["H2009"]],[9,12,["H369"]],[12,13,["H5973"]],[13,16,["H8543","H8032"]]]},{"k":876,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3290"]],[6,7,["H7725"]],[7,8,["H413"]],[8,10,["H776"]],[10,13,["H1"]],[13,17,["H4138"]],[17,21,["H1961"]],[21,22,["H5973"]],[22,23,[]]]},{"k":877,"v":[[0,2,["H3290"]],[2,3,["H7971"]],[3,5,["H7121"]],[5,6,["H7354"]],[6,8,["H3812"]],[8,11,["H7704"]],[11,12,["H413"]],[12,14,["H6629"]]]},{"k":878,"v":[[0,2,["H559"]],[2,5,["H595"]],[5,6,["H7200","(H853)"]],[6,8,["H1"]],[8,9,["H6440"]],[9,10,["H3588"]],[10,13,["H369"]],[13,14,["H413"]],[14,17,["H8543","H8032"]],[17,20,["H430"]],[20,23,["H1"]],[23,25,["H1961"]],[25,26,["H5973"]],[26,27,[]]]},{"k":879,"v":[[0,2,["H859"]],[2,3,["H3045"]],[3,4,["H3588"]],[4,6,["H3605"]],[6,8,["H3581"]],[8,11,["H5647","(H853)"]],[11,13,["H1"]]]},{"k":880,"v":[[0,3,["H1"]],[3,5,["H2048"]],[5,8,["H2498","(H853)"]],[8,10,["H4909"]],[10,11,["H6235"]],[11,12,["H4489"]],[12,14,["H430"]],[14,15,["H5414"]],[15,17,["H3808"]],[17,19,["H7489","H5978"]],[19,20,[]]]},{"k":881,"v":[[0,1,["H518"]],[1,3,["H559"]],[3,4,["H3541"]],[4,6,["H5348"]],[6,8,["H1961"]],[8,10,["H7939"]],[10,12,["H3605"]],[12,14,["H6629"]],[14,15,["H3205"]],[15,16,["H5348"]],[16,18,["H518"]],[18,20,["H559"]],[20,21,["H3541"]],[21,23,["H6124"]],[23,25,["H1961"]],[25,27,["H7939"]],[27,29,["H3205"]],[29,30,["H3605"]],[30,32,["H6629"]],[32,33,["H6124"]]]},{"k":882,"v":[[0,2,["H430"]],[2,5,["H5337","(H853)"]],[5,7,["H4735"]],[7,10,["H1"]],[10,12,["H5414"]],[12,15,[]]]},{"k":883,"v":[[0,5,["H1961"]],[5,8,["H6256"]],[8,11,["H6629"]],[11,12,["H3179"]],[12,16,["H5375"]],[16,18,["H5869"]],[18,20,["H7200"]],[20,23,["H2472"]],[23,25,["H2009"]],[25,27,["H6260"]],[27,29,["H5927"]],[29,30,["H5921"]],[30,32,["H6629"]],[32,34,["H6124"]],[34,35,["H5348"]],[35,37,["H1261"]]]},{"k":884,"v":[[0,3,["H4397"]],[3,5,["H430"]],[5,6,["H559"]],[6,7,["H413"]],[7,11,["H2472"]],[11,13,["H3290"]],[13,16,["H559"]],[16,17,["H2009"]],[17,19,[]]]},{"k":885,"v":[[0,3,["H559"]],[3,5,["H5375"]],[5,6,["H4994"]],[6,8,["H5869"]],[8,10,["H7200"]],[10,11,["H3605"]],[11,13,["H6260"]],[13,15,["H5927"]],[15,16,["H5921"]],[16,18,["H6629"]],[18,20,["H6124"]],[20,21,["H5348"]],[21,23,["H1261"]],[23,24,["H3588"]],[24,27,["H7200","(H853)"]],[27,28,["H3605"]],[28,29,["H834"]],[29,30,["H3837"]],[30,31,["H6213"]],[31,33,[]]]},{"k":886,"v":[[0,1,["H595"]],[1,4,["H410"]],[4,6,["H1008"]],[6,7,["H834","H8033"]],[7,9,["H4886"]],[9,11,["H4676"]],[11,13,["H834","H8033"]],[13,15,["H5087"]],[15,17,["H5088"]],[17,20,["H6258"]],[20,21,["H6965"]],[21,24,["H3318"]],[24,25,["H4480"]],[25,26,["H2063"]],[26,27,["H776"]],[27,29,["H7725"]],[29,30,["H413"]],[30,32,["H776"]],[32,35,["H4138"]]]},{"k":887,"v":[[0,2,["H7354"]],[2,4,["H3812"]],[4,5,["H6030"]],[5,7,["H559"]],[7,12,["H5750"]],[12,14,["H2506"]],[14,16,["H5159"]],[16,21,["H1"]],[21,22,["H1004"]]]},{"k":888,"v":[[0,3,["H3808"]],[3,4,["H2803"]],[4,7,["H5237"]],[7,8,["H3588"]],[8,11,["H4376"]],[11,16,["H398","H398"]],[16,17,["H1571","(H853)"]],[17,19,["H3701"]]]},{"k":889,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H6239"]],[4,5,["H834"]],[5,6,["H430"]],[6,8,["H5337"]],[8,11,["H4480","H1"]],[11,12,["H1931"]],[12,17,["H1121"]],[17,18,["H6258"]],[18,20,["H3605","H834"]],[20,21,["H430"]],[21,23,["H559"]],[23,24,["H413"]],[24,26,["H6213"]]]},{"k":890,"v":[[0,2,["H3290"]],[2,4,["H6965"]],[4,6,["H5375","(H853)"]],[6,8,["H1121"]],[8,11,["H802"]],[11,12,["H5921"]],[12,13,["H1581"]]]},{"k":891,"v":[[0,4,["H5090","(H853)"]],[4,5,["H3605"]],[5,7,["H4735"]],[7,9,["H3605"]],[9,11,["H7399"]],[11,12,["H834"]],[12,15,["H7408"]],[15,17,["H4735"]],[17,20,["H7075"]],[20,21,["H834"]],[21,24,["H7408"]],[24,26,["H6307"]],[26,29,["H935"]],[29,30,["H413"]],[30,31,["H3327"]],[31,33,["H1"]],[33,36,["H776"]],[36,38,["H3667"]]]},{"k":892,"v":[[0,2,["H3837"]],[2,3,["H1980"]],[3,5,["H1494","(H853)"]],[5,7,["H6629"]],[7,9,["H7354"]],[9,11,["H1589","(H853)"]],[11,13,["H8655"]],[13,14,["H834"]],[14,17,["H1"]]]},{"k":893,"v":[[0,2,["H3290"]],[2,4,["H1589","(H853)"]],[4,5,["H3820"]],[5,7,["H3837"]],[7,9,["H761"]],[9,11,["H5921"]],[11,13,["H5046"]],[13,15,["H1097"]],[15,16,["H3588"]],[16,17,["H1931"]],[17,18,["H1272"]]]},{"k":894,"v":[[0,2,["H1931"]],[2,3,["H1272"]],[3,5,["H3605"]],[5,6,["H834"]],[6,12,["H6965"]],[12,15,["H5674","(H853)"]],[15,17,["H5104"]],[17,19,["H7760","(H853)"]],[19,21,["H6440"]],[21,24,["H2022"]],[24,25,["H1568"]]]},{"k":895,"v":[[0,4,["H5046"]],[4,5,["H3837"]],[5,8,["H7992"]],[8,9,["H3117"]],[9,10,["H3588"]],[10,11,["H3290"]],[11,13,["H1272"]]]},{"k":896,"v":[[0,3,["H3947","(H853)"]],[3,5,["H251"]],[5,6,["H5973"]],[6,9,["H7291"]],[9,10,["H310"]],[10,12,["H7651"]],[12,13,["H3117"]],[13,14,["H1870"]],[14,17,["H1692"]],[17,21,["H2022"]],[21,22,["H1568"]]]},{"k":897,"v":[[0,2,["H430"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H3837"]],[5,7,["H761"]],[7,10,["H2472"]],[10,12,["H3915"]],[12,14,["H559"]],[14,18,["H8104"]],[18,19,["H6435"]],[19,21,["H1696"]],[21,23,["H5973"]],[23,24,["H3290"]],[24,26,["H4480","H2896"]],[26,27,["H5704"]],[27,28,["H7451"]]]},{"k":898,"v":[[0,2,["H3837"]],[2,3,["H5381","(H853)"]],[3,4,["H3290"]],[4,6,["H3290"]],[6,8,["H8628","(H853)"]],[8,10,["H168"]],[10,13,["H2022"]],[13,15,["H3837"]],[15,16,["H854"]],[16,18,["H251"]],[18,19,["H8628"]],[19,22,["H2022"]],[22,24,["H1568"]]]},{"k":899,"v":[[0,2,["H3837"]],[2,3,["H559"]],[3,5,["H3290"]],[5,6,["H4100"]],[6,9,["H6213"]],[9,14,["H1589","(H853)"]],[14,15,["H3824"]],[15,20,["H5090","(H853)"]],[20,22,["H1323"]],[22,24,["H7617"]],[24,28,["H2719"]]]},{"k":900,"v":[[0,1,["H4100"]],[1,5,["H1272"]],[5,6,["H2244"]],[6,9,["H1589"]],[9,14,["H3808"]],[14,15,["H5046"]],[15,23,["H7971"]],[23,25,["H8057"]],[25,28,["H7892"]],[28,30,["H8596"]],[30,33,["H3658"]]]},{"k":901,"v":[[0,3,["H3808"]],[3,4,["H5203"]],[4,7,["H5401"]],[7,9,["H1121"]],[9,12,["H1323"]],[12,15,["H6258"]],[15,17,["H5528"]],[17,20,["H6213"]]]},{"k":902,"v":[[0,2,["H3426"]],[2,5,["H410"]],[5,8,["H3027"]],[8,10,["H6213"]],[10,12,["H7451"]],[12,15,["H430"]],[15,18,["H1"]],[18,19,["H559"]],[19,20,["H413"]],[20,22,["H570"]],[22,23,["H559"]],[23,26,["H8104"]],[26,29,["H4480","H1696"]],[29,31,["H5973"]],[31,32,["H3290"]],[32,34,["H4480","H2896"]],[34,35,["H5704"]],[35,36,["H7451"]]]},{"k":903,"v":[[0,2,["H6258"]],[2,8,["H1980","H1980"]],[8,9,["H3588"]],[9,12,["H3700","H3700"]],[12,15,["H1"]],[15,16,["H1004"]],[16,18,["H4100"]],[18,21,["H1589","(H853)"]],[21,23,["H430"]]]},{"k":904,"v":[[0,2,["H3290"]],[2,3,["H6030"]],[3,5,["H559"]],[5,7,["H3837"]],[7,8,["H3588"]],[8,11,["H3372"]],[11,12,["H3588"]],[12,14,["H559"]],[14,15,["H6435"]],[15,20,["H1497","(H853)"]],[20,22,["H1323"]],[22,23,["H4480","H5973"]],[23,24,[]]]},{"k":905,"v":[[0,1,["H5973"]],[1,2,["H834"]],[2,4,["H4672","(H853)"]],[4,6,["H430"]],[6,9,["H3808"]],[9,10,["H2421"]],[10,11,["H5048"]],[11,13,["H251"]],[13,14,["H5234"]],[14,16,["H4100"]],[16,19,["H5973"]],[19,22,["H3947"]],[22,27,["H3290"]],[27,28,["H3045"]],[28,29,["H3808"]],[29,30,["H3588"]],[30,31,["H7354"]],[31,33,["H1589"]],[33,34,[]]]},{"k":906,"v":[[0,2,["H3837"]],[2,3,["H935"]],[3,5,["H3290"]],[5,6,["H168"]],[6,9,["H3812"]],[9,10,["H168"]],[10,14,["H8147"]],[14,15,["H519"]],[15,16,["H168"]],[16,19,["H4672"]],[19,21,["H3808"]],[21,23,["H3318"]],[23,28,["H4480","H168","H3812"]],[28,30,["H935"]],[30,32,["H7354"]],[32,33,["H168"]]]},{"k":907,"v":[[0,2,["H7354"]],[2,4,["H3947","(H853)"]],[4,6,["H8655"]],[6,8,["H7760"]],[8,12,["H1581"]],[12,13,["H3733"]],[13,15,["H3427"]],[15,16,["H5921"]],[16,19,["H3837"]],[19,20,["H4959","(H853)"]],[20,21,["H3605"]],[21,23,["H168"]],[23,25,["H4672"]],[25,27,["H3808"]]]},{"k":908,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1"]],[6,9,["H408"]],[9,10,["H2734","H5869"]],[10,12,["H113"]],[12,13,["H3588"]],[13,15,["H3808","H3201"]],[15,17,["H6965"]],[17,18,["H4480","H6440"]],[18,20,["H3588"]],[20,22,["H1870"]],[22,24,["H802"]],[24,30,["H2664"]],[30,32,["H4672"]],[32,33,["H3808","(H853)"]],[33,35,["H8655"]]]},{"k":909,"v":[[0,2,["H3290"]],[2,4,["H2734"]],[4,6,["H7378"]],[6,8,["H3837"]],[8,10,["H3290"]],[10,11,["H6030"]],[11,13,["H559"]],[13,15,["H3837"]],[15,16,["H4100"]],[16,19,["H6588"]],[19,20,["H4100"]],[20,23,["H2403"]],[23,24,["H3588"]],[24,29,["H1814"]],[29,30,["H310"]],[30,31,[]]]},{"k":910,"v":[[0,1,["H3588"]],[1,4,["H4959","(H853)"]],[4,5,["H3605"]],[5,7,["H3627"]],[7,8,["H4100"]],[8,11,["H4672"]],[11,13,["H4480","H3605"]],[13,15,["H1004"]],[15,16,["H3627"]],[16,17,["H7760"]],[17,19,["H3541"]],[19,20,["H5048"]],[20,22,["H251"]],[22,25,["H251"]],[25,29,["H3198"]],[29,30,["H996"]],[30,32,["H8147"]]]},{"k":911,"v":[[0,1,["H2088"]],[1,2,["H6242"]],[2,3,["H8141"]],[3,5,["H595"]],[5,7,["H5973"]],[7,10,["H7353"]],[10,14,["H5795"]],[14,16,["H3808"]],[16,19,["H7921"]],[19,22,["H352"]],[22,25,["H6629"]],[25,28,["H3808"]],[28,29,["H398"]]]},{"k":912,"v":[[0,4,["H2966"]],[4,8,["H935"]],[8,9,["H3808"]],[9,10,["H413"]],[10,12,["H595"]],[12,15,["H2398"]],[15,20,["H4480","H3027"]],[20,23,["H1245"]],[23,26,["H1589"]],[26,28,["H3117"]],[28,30,["H1589"]],[30,32,["H3915"]]]},{"k":913,"v":[[0,3,["H1961"]],[3,6,["H3117"]],[6,8,["H2721"]],[8,9,["H398"]],[9,13,["H7140"]],[13,15,["H3915"]],[15,18,["H8142"]],[18,19,["H5074"]],[19,22,["H4480","H5869"]]]},{"k":914,"v":[[0,1,["H2088"]],[1,5,["H6242"]],[5,6,["H8141"]],[6,9,["H1004"]],[9,11,["H5647"]],[11,13,["H702","H6240"]],[13,14,["H8141"]],[14,17,["H8147"]],[17,18,["H1323"]],[18,20,["H8337"]],[20,21,["H8141"]],[21,24,["H6629"]],[24,28,["H2498","(H853)"]],[28,30,["H4909"]],[30,31,["H6235"]],[31,32,["H4489"]]]},{"k":915,"v":[[0,1,["H3884"]],[1,3,["H430"]],[3,6,["H1"]],[6,8,["H430"]],[8,10,["H85"]],[10,13,["H6343"]],[13,15,["H3327"]],[15,17,["H1961"]],[17,20,["H3588"]],[20,25,["H7971"]],[25,26,["H6258"]],[26,27,["H7387"]],[27,28,["H430"]],[28,30,["H7200","(H853)"]],[30,32,["H6040"]],[32,35,["H3018"]],[35,38,["H3709"]],[38,40,["H3198"]],[40,42,["H570"]]]},{"k":916,"v":[[0,2,["H3837"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H413"]],[6,7,["H3290"]],[7,9,["H1323"]],[9,12,["H1323"]],[12,15,["H1121"]],[15,18,["H1121"]],[18,21,["H6629"]],[21,24,["H6629"]],[24,26,["H3605"]],[26,27,["H834"]],[27,28,["H859"]],[28,29,["H7200"]],[29,33,["H4100"]],[33,36,["H6213"]],[36,38,["H3117"]],[38,40,["H428"]],[40,42,["H1323"]],[42,43,["H176"]],[43,46,["H1121"]],[46,47,["H834"]],[47,50,["H3205"]]]},{"k":917,"v":[[0,1,["H6258"]],[1,3,["H1980"]],[3,7,["H3772"]],[7,9,["H1285"]],[9,10,["H589"]],[10,12,["H859"]],[12,16,["H1961"]],[16,19,["H5707"]],[19,20,["H996"]],[20,23,[]]]},{"k":918,"v":[[0,2,["H3290"]],[2,3,["H3947"]],[3,5,["H68"]],[5,9,["H7311"]],[9,12,["H4676"]]]},{"k":919,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,6,["H251"]],[6,7,["H3950"]],[7,8,["H68"]],[8,11,["H3947"]],[11,12,["H68"]],[12,14,["H6213"]],[14,16,["H1530"]],[16,20,["H398"]],[20,21,["H8033"]],[21,22,["H5921"]],[22,24,["H1530"]]]},{"k":920,"v":[[0,2,["H3837"]],[2,3,["H7121"]],[3,5,["H3026"]],[5,7,["H3290"]],[7,8,["H7121"]],[8,10,["H1567"]]]},{"k":921,"v":[[0,2,["H3837"]],[2,3,["H559"]],[3,4,["H2088"]],[4,5,["H1530"]],[5,8,["H5707"]],[8,9,["H996"]],[9,14,["H3117"]],[14,15,["H5921","H3651"]],[15,18,["H8034"]],[18,21,["H7121"]],[21,22,["H1567"]]]},{"k":922,"v":[[0,2,["H4709"]],[2,3,["H834"]],[3,5,["H559"]],[5,7,["H3068"]],[7,8,["H6822"]],[8,9,["H996"]],[9,13,["H3588"]],[13,16,["H5641"]],[16,17,["H376"]],[17,19,["H4480","H7453"]]]},{"k":923,"v":[[0,1,["H518"]],[1,4,["H6031","(H853)"]],[4,6,["H1323"]],[6,8,["H518"]],[8,11,["H3947"]],[11,13,["H802"]],[13,14,["H5921"]],[14,16,["H1323"]],[16,17,["H369"]],[17,18,["H376"]],[18,20,["H5973"]],[20,22,["H7200"]],[22,23,["H430"]],[23,25,["H5707"]],[25,26,["H996"]],[26,29,[]]]},{"k":924,"v":[[0,2,["H3837"]],[2,3,["H559"]],[3,5,["H3290"]],[5,6,["H2009"]],[6,7,["H2088"]],[7,8,["H1530"]],[8,10,["H2009"]],[10,12,["H4676"]],[12,13,["H834"]],[13,16,["H3384"]],[16,17,["H996"]],[17,20,[]]]},{"k":925,"v":[[0,1,["H2088"]],[1,2,["H1530"]],[2,4,["H5707"]],[4,7,["H4676"]],[7,9,["H5713"]],[9,10,["H518"]],[10,11,["H589"]],[11,13,["H3808"]],[13,15,["H5674","(H853)"]],[15,16,["H2088"]],[16,17,["H1530"]],[17,18,["H413"]],[18,21,["H518"]],[21,22,["H859"]],[22,24,["H3808"]],[24,26,["H5674","(H853)"]],[26,27,["H2088"]],[27,28,["H1530"]],[28,30,["H2063"]],[30,31,["H4676"]],[31,32,["H413"]],[32,35,["H7451"]]]},{"k":926,"v":[[0,2,["H430"]],[2,4,["H85"]],[4,7,["H430"]],[7,9,["H5152"]],[9,11,["H430"]],[11,14,["H1"]],[14,15,["H8199"]],[15,16,["H996"]],[16,19,["H3290"]],[19,20,["H7650"]],[20,23,["H6343"]],[23,26,["H1"]],[26,27,["H3327"]]]},{"k":927,"v":[[0,2,["H3290"]],[2,3,["H2076"]],[3,4,["H2077"]],[4,7,["H2022"]],[7,9,["H7121"]],[9,11,["H251"]],[11,13,["H398"]],[13,14,["H3899"]],[14,18,["H398"]],[18,19,["H3899"]],[19,23,["H3885"]],[23,26,["H2022"]]]},{"k":928,"v":[[0,5,["H1242"]],[5,6,["H3837"]],[6,8,["H7925"]],[8,10,["H5401"]],[10,12,["H1121"]],[12,15,["H1323"]],[15,17,["H1288"]],[17,20,["H3837"]],[20,21,["H1980"]],[21,23,["H7725"]],[23,26,["H4725"]]]},{"k":929,"v":[[0,2,["H3290"]],[2,3,["H1980"]],[3,6,["H1870"]],[6,9,["H4397"]],[9,11,["H430"]],[11,12,["H6293"]],[12,13,[]]]},{"k":930,"v":[[0,2,["H834"]],[2,3,["H3290"]],[3,4,["H7200"]],[4,7,["H559"]],[7,8,["H2088"]],[8,10,["H430"]],[10,11,["H4264"]],[11,14,["H7121"]],[14,16,["H8034"]],[16,18,["H1931"]],[18,19,["H4725"]],[19,20,["H4266"]]]},{"k":931,"v":[[0,2,["H3290"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H6440"]],[5,7,["H413"]],[7,8,["H6215"]],[8,10,["H251"]],[10,13,["H776"]],[13,15,["H8165"]],[15,17,["H7704"]],[17,19,["H123"]]]},{"k":932,"v":[[0,3,["H6680"]],[3,5,["H559"]],[5,6,["H3541"]],[6,9,["H559"]],[9,12,["H113"]],[12,13,["H6215"]],[13,15,["H5650"]],[15,16,["H3290"]],[16,17,["H559"]],[17,18,["H3541"]],[18,21,["H1481"]],[21,22,["H5973"]],[22,23,["H3837"]],[23,26,["H309"]],[26,27,["H5704"]],[27,28,["H6258"]]]},{"k":933,"v":[[0,3,["H1961"]],[3,4,["H7794"]],[4,6,["H2543"]],[6,7,["H6629"]],[7,9,["H5650"]],[9,11,["H8198"]],[11,15,["H7971"]],[15,17,["H5046"]],[17,19,["H113"]],[19,23,["H4672"]],[23,24,["H2580"]],[24,27,["H5869"]]]},{"k":934,"v":[[0,3,["H4397"]],[3,4,["H7725"]],[4,5,["H413"]],[5,6,["H3290"]],[6,7,["H559"]],[7,9,["H935"]],[9,10,["H413"]],[10,12,["H251"]],[12,13,["H6215"]],[13,15,["H1571"]],[15,17,["H1980"]],[17,19,["H7125"]],[19,22,["H702"]],[22,23,["H3967"]],[23,24,["H376"]],[24,25,["H5973"]],[25,26,[]]]},{"k":935,"v":[[0,2,["H3290"]],[2,5,["H3372","H3966"]],[5,7,["H3334"]],[7,10,["H2673","(H853)"]],[10,12,["H5971"]],[12,13,["H834"]],[13,15,["H854"]],[15,19,["H6629"]],[19,21,["H1241"]],[21,24,["H1581"]],[24,26,["H8147"]],[26,27,["H4264"]]]},{"k":936,"v":[[0,2,["H559"]],[2,3,["H518"]],[3,4,["H6215"]],[4,5,["H935"]],[5,6,["H413"]],[6,8,["H259"]],[8,9,["H4264"]],[9,11,["H5221"]],[11,16,["H4264"]],[16,19,["H7604"]],[19,21,["H6413"]]]},{"k":937,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,5,["H430"]],[5,8,["H1"]],[8,9,["H85"]],[9,11,["H430"]],[11,14,["H1"]],[14,15,["H3327"]],[15,17,["H3068"]],[17,19,["H559"]],[19,20,["H413"]],[20,22,["H7725"]],[22,25,["H776"]],[25,29,["H4138"]],[29,34,["H3190"]],[34,35,["H5973"]],[35,36,[]]]},{"k":938,"v":[[0,4,["H6994"]],[4,9,["H4480","H3605"]],[9,11,["H2617"]],[11,14,["H4480","H3605"]],[14,16,["H571"]],[16,17,["H834"]],[17,20,["H6213"]],[20,21,["(H853)"]],[21,23,["H5650"]],[23,24,["H3588"]],[24,27,["H4731"]],[27,30,["H5674","(H853)"]],[30,31,["H2088"]],[31,32,["H3383"]],[32,34,["H6258"]],[34,37,["H1961"]],[37,38,["H8147"]],[38,39,["H4264"]]]},{"k":939,"v":[[0,1,["H5337"]],[1,5,["H4994"]],[5,8,["H4480","H3027"]],[8,11,["H251"]],[11,14,["H4480","H3027"]],[14,16,["H6215"]],[16,17,["H3588"]],[17,18,["H595"]],[18,19,["H3372"]],[19,21,["H6435"]],[21,24,["H935"]],[24,26,["H5221"]],[26,30,["H517"]],[30,31,["H5921"]],[31,33,["H1121"]]]},{"k":940,"v":[[0,2,["H859"]],[2,3,["H559"]],[3,9,["H3190","H3190","H5973"]],[9,11,["H7760","(H853)"]],[11,13,["H2233"]],[13,16,["H2344"]],[16,19,["H3220"]],[19,20,["H834"]],[20,21,["H3808"]],[21,23,["H5608"]],[23,25,["H4480","H7230"]]]},{"k":941,"v":[[0,3,["H3885"]],[3,4,["H8033"]],[4,6,["H1931"]],[6,7,["H3915"]],[7,9,["H3947"]],[9,10,["H4480"]],[10,13,["H935"]],[13,16,["H3027"]],[16,18,["H4503"]],[18,20,["H6215"]],[20,22,["H251"]]]},{"k":942,"v":[[0,2,["H3967"]],[2,4,["H5795"]],[4,6,["H6242"]],[6,8,["H8495"]],[8,10,["H3967"]],[10,11,["H7353"]],[11,13,["H6242"]],[13,14,["H352"]]]},{"k":943,"v":[[0,1,["H7970"]],[1,2,["H3243"]],[2,3,["H1581"]],[3,6,["H1121"]],[6,7,["H705"]],[7,8,["H6510"]],[8,10,["H6235"]],[10,11,["H6499"]],[11,12,["H6242"]],[12,14,["H860"]],[14,16,["H6235"]],[16,17,["H5895"]]]},{"k":944,"v":[[0,3,["H5414"]],[3,7,["H3027"]],[7,10,["H5650"]],[10,12,["H5739","H5739"]],[12,14,["H905"]],[14,16,["H559"]],[16,17,["H413"]],[17,19,["H5650"]],[19,21,["H5674"]],[21,22,["H6440"]],[22,25,["H7760"]],[25,27,["H7305"]],[27,28,["H996"]],[28,29,["H5739"]],[29,31,["H5739"]]]},{"k":945,"v":[[0,3,["H6680","(H853)"]],[3,5,["H7223"]],[5,6,["H559"]],[6,7,["H3588"]],[7,8,["H6215"]],[8,10,["H251"]],[10,11,["H6298"]],[11,14,["H7592"]],[14,16,["H559"]],[16,17,["H4310"]],[17,19,["H859"]],[19,21,["H575"]],[21,22,["H1980"]],[22,25,["H4310"]],[25,27,["H428"]],[27,28,["H6440"]],[28,29,[]]]},{"k":946,"v":[[0,4,["H559"]],[4,8,["H5650"]],[8,9,["H3290"]],[9,10,["H1931"]],[10,13,["H4503"]],[13,14,["H7971"]],[14,17,["H113"]],[17,18,["H6215"]],[18,20,["H2009"]],[20,21,["H1571"]],[21,22,["H1931"]],[22,24,["H310"]],[24,25,[]]]},{"k":947,"v":[[0,2,["H1571"]],[2,3,["H6680"]],[3,4,["(H853)"]],[4,6,["H8145"]],[6,7,["H1571","(H853)"]],[7,9,["H7992"]],[9,10,["H1571","(H853)"]],[10,11,["H3605"]],[11,13,["H1980","H310"]],[13,15,["H5739"]],[15,16,["H559"]],[16,18,["H2088"]],[18,19,["H1697"]],[19,22,["H1696"]],[22,23,["H413"]],[23,24,["H6215"]],[24,27,["H4672"]],[27,28,[]]]},{"k":948,"v":[[0,2,["H559"]],[2,4,["H1571"]],[4,5,["H2009"]],[5,7,["H5650"]],[7,8,["H3290"]],[8,10,["H310"]],[10,12,["H3588"]],[12,14,["H559"]],[14,17,["H3722","H6440"]],[17,21,["H4503"]],[21,23,["H1980"]],[23,24,["H6440"]],[24,27,["H310","H3651"]],[27,30,["H7200"]],[30,32,["H6440"]],[32,33,["H194"]],[33,36,["H5375","H6440"]],[36,38,[]]]},{"k":949,"v":[[0,2,["H5674"]],[2,4,["H4503"]],[4,6,["H5921","H6440"]],[6,9,["H1931"]],[9,10,["H3885"]],[10,11,["H1931"]],[11,12,["H3915"]],[12,15,["H4264"]]]},{"k":950,"v":[[0,4,["H6965"]],[4,5,["H1931"]],[5,6,["H3915"]],[6,8,["H3947","(H853)"]],[8,10,["H8147"]],[10,11,["H802"]],[11,14,["H8147"]],[14,15,["H8198"]],[15,18,["H259","H6240"]],[18,19,["H3206"]],[19,22,["H5674","(H853)"]],[22,24,["H4569"]],[24,25,["H2999"]]]},{"k":951,"v":[[0,3,["H3947"]],[3,8,["H5674","(H853)"]],[8,10,["H5158"]],[10,13,["H5674","(H853)"]],[13,14,["H834"]],[14,16,[]]]},{"k":952,"v":[[0,2,["H3290"]],[2,4,["H3498"]],[4,5,["H905"]],[5,8,["H79"]],[8,10,["H376"]],[10,11,["H5973"]],[11,13,["H5704"]],[13,15,["H5927"]],[15,18,["H7837"]]]},{"k":953,"v":[[0,4,["H7200"]],[4,5,["H3588"]],[5,7,["H3201"]],[7,8,["H3808"]],[8,12,["H5060"]],[12,14,["H3709"]],[14,17,["H3409"]],[17,20,["H3709"]],[20,22,["H3290"]],[22,23,["H3409"]],[23,27,["H3363"]],[27,30,["H79"]],[30,31,["H5973"]],[31,32,[]]]},{"k":954,"v":[[0,3,["H559"]],[3,6,["H7971"]],[6,7,["H3588"]],[7,9,["H7837"]],[9,10,["H5927"]],[10,13,["H559"]],[13,16,["H3808"]],[16,19,["H7971"]],[19,20,["H3588","H518"]],[20,22,["H1288"]],[22,23,[]]]},{"k":955,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H4100"]],[6,9,["H8034"]],[9,12,["H559"]],[12,13,["H3290"]]]},{"k":956,"v":[[0,3,["H559"]],[3,5,["H8034"]],[5,8,["H559"]],[8,9,["H3808"]],[9,10,["H5750"]],[10,11,["H3290"]],[11,12,["H3588","H518"]],[12,13,["H3478"]],[13,14,["H3588"]],[14,20,["H8280"]],[20,21,["H5973"]],[21,22,["H430"]],[22,24,["H5973"]],[24,25,["H376"]],[25,28,["H3201"]]]},{"k":957,"v":[[0,2,["H3290"]],[2,3,["H7592"]],[3,6,["H559"]],[6,7,["H5046"]],[7,11,["H4994"]],[11,13,["H8034"]],[13,16,["H559"]],[16,17,["H4100"]],[17,19,["H2088"]],[19,23,["H7592"]],[23,26,["H8034"]],[26,29,["H1288"]],[29,31,["H8033"]]]},{"k":958,"v":[[0,2,["H3290"]],[2,3,["H7121"]],[3,5,["H8034"]],[5,8,["H4725"]],[8,9,["H6439"]],[9,10,["H3588"]],[10,13,["H7200"]],[13,14,["H430"]],[14,15,["H6440"]],[15,16,["H413"]],[16,17,["H6440"]],[17,20,["H5315"]],[20,22,["H5337"]]]},{"k":959,"v":[[0,2,["H834"]],[2,5,["H5674","(H853)"]],[5,6,["H6439"]],[6,8,["H8121"]],[8,9,["H2224"]],[9,13,["H1931"]],[13,14,["H6760"]],[14,15,["H5921"]],[15,17,["H3409"]]]},{"k":960,"v":[[0,1,["H5921","H3651"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,6,["H398"]],[6,7,["H3808"]],[7,8,["(H853)"]],[8,10,["H1517"]],[10,12,["H5384"]],[12,13,["H834"]],[13,15,["H5921"]],[15,17,["H3709"]],[17,20,["H3409"]],[20,21,["H5704"]],[21,22,["H2088"]],[22,23,["H3117"]],[23,24,["H3588"]],[24,26,["H5060"]],[26,28,["H3709"]],[28,30,["H3290"]],[30,31,["H3409"]],[31,34,["H1517"]],[34,36,["H5384"]]]},{"k":961,"v":[[0,2,["H3290"]],[2,4,["H5375"]],[4,6,["H5869"]],[6,8,["H7200"]],[8,10,["H2009"]],[10,11,["H6215"]],[11,12,["H935"]],[12,14,["H5973"]],[14,16,["H702"]],[16,17,["H3967"]],[17,18,["H376"]],[18,21,["H2673","(H853)"]],[21,23,["H3206"]],[23,24,["H5921"]],[24,25,["H3812"]],[25,27,["H5921"]],[27,28,["H7354"]],[28,30,["H5921"]],[30,32,["H8147"]],[32,33,["H8198"]]]},{"k":962,"v":[[0,3,["H7760","(H853)"]],[3,5,["H8198"]],[5,8,["H3206"]],[8,9,["H7223"]],[9,11,["H3812"]],[11,14,["H3206"]],[14,15,["H314"]],[15,17,["H7354"]],[17,19,["H3130"]],[19,20,["H314"]]]},{"k":963,"v":[[0,2,["H1931"]],[2,4,["H5674"]],[4,5,["H6440"]],[5,9,["H7812"]],[9,12,["H776"]],[12,13,["H7651"]],[13,14,["H6471"]],[14,15,["H5704"]],[15,18,["H5066"]],[18,19,["H5704"]],[19,21,["H251"]]]},{"k":964,"v":[[0,2,["H6215"]],[2,3,["H7323"]],[3,5,["H7125"]],[5,8,["H2263"]],[8,11,["H5307"]],[11,12,["H5921"]],[12,14,["H6677"]],[14,16,["H5401"]],[16,20,["H1058"]]]},{"k":965,"v":[[0,4,["H5375","(H853)"]],[4,6,["H5869"]],[6,8,["H7200","(H853)"]],[8,10,["H802"]],[10,13,["H3206"]],[13,15,["H559"]],[15,16,["H4310"]],[16,18,["H428"]],[18,23,["H559"]],[23,25,["H3206"]],[25,26,["H834"]],[26,27,["H430"]],[27,30,["H2603","(H853)"]],[30,32,["H5650"]]]},{"k":966,"v":[[0,3,["H8198"]],[3,5,["H5066"]],[5,6,["H2007"]],[6,9,["H3206"]],[9,13,["H7812"]]]},{"k":967,"v":[[0,2,["H3812"]],[2,3,["H1571"]],[3,6,["H3206"]],[6,8,["H5066"]],[8,11,["H7812"]],[11,13,["H310"]],[13,16,["H5066","H3130"]],[16,18,["H7354"]],[18,22,["H7812"]]]},{"k":968,"v":[[0,3,["H559"]],[3,4,["H4310"]],[4,8,["H3605"]],[8,9,["H2088"]],[9,10,["H4264"]],[10,11,["H834"]],[11,13,["H6298"]],[13,16,["H559"]],[16,20,["H4672"]],[20,21,["H2580"]],[21,24,["H5869"]],[24,27,["H113"]]]},{"k":969,"v":[[0,2,["H6215"]],[2,3,["H559"]],[3,5,["H3426"]],[5,6,["H7227"]],[6,8,["H251"]],[8,9,["H1961"]],[9,10,["H834"]],[10,14,[]]]},{"k":970,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,4,["H408"]],[4,7,["H4994"]],[7,8,["H518"]],[8,9,["H4994"]],[9,12,["H4672"]],[12,13,["H2580"]],[13,16,["H5869"]],[16,18,["H3947"]],[18,20,["H4503"]],[20,23,["H4480","H3027"]],[23,24,["H3588"]],[24,25,["H5921","H3651"]],[25,28,["H7200"]],[28,30,["H6440"]],[30,35,["H7200"]],[35,37,["H6440"]],[37,39,["H430"]],[39,43,["H7521"]],[43,45,[]]]},{"k":971,"v":[[0,1,["H3947"]],[1,4,["H4994","(H853)"]],[4,6,["H1293"]],[6,7,["H834"]],[7,9,["H935"]],[9,12,["H3588"]],[12,13,["H430"]],[13,16,["H2603"]],[16,20,["H3588"]],[20,22,["H3426"]],[22,23,["H3605"]],[23,26,["H6484"]],[26,30,["H3947"]],[30,31,[]]]},{"k":972,"v":[[0,3,["H559"]],[3,8,["H5265"]],[8,12,["H1980"]],[12,16,["H1980"]],[16,17,["H5048"]],[17,18,[]]]},{"k":973,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H113"]],[7,8,["H3045"]],[8,9,["H3588"]],[9,11,["H3206"]],[11,13,["H7390"]],[13,16,["H6629"]],[16,18,["H1241"]],[18,20,["H5763"]],[20,22,["H5921"]],[22,28,["H1849"]],[28,30,["H259"]],[30,31,["H3117"]],[31,32,["H3605"]],[32,34,["H6629"]],[34,36,["H4191"]]]},{"k":974,"v":[[0,3,["H113"]],[3,6,["H4994"]],[6,8,["H5674"]],[8,9,["H6440"]],[9,11,["H5650"]],[11,13,["H589"]],[13,16,["H5095"]],[16,17,["H328"]],[17,19,["H7272"]],[19,21,["H4399"]],[21,22,["H834"]],[22,24,["H6440"]],[24,28,["H3206"]],[28,32,["H7272"]],[32,33,["H5704","H834"]],[33,35,["H935"]],[35,36,["H413"]],[36,38,["H113"]],[38,40,["H8165"]]]},{"k":975,"v":[[0,2,["H6215"]],[2,3,["H559"]],[3,6,["H4994"]],[6,7,["H3322"]],[7,8,["H5973"]],[8,11,["H4480"]],[11,13,["H5971"]],[13,14,["H834"]],[14,16,["H854"]],[16,20,["H559"]],[20,21,["H4100"]],[21,23,["H2088"]],[23,26,["H4672"]],[26,27,["H2580"]],[27,30,["H5869"]],[30,33,["H113"]]]},{"k":976,"v":[[0,2,["H6215"]],[2,3,["H7725"]],[3,4,["H1931"]],[4,5,["H3117"]],[5,8,["H1870"]],[8,10,["H8165"]]]},{"k":977,"v":[[0,2,["H3290"]],[2,3,["H5265"]],[3,5,["H5523"]],[5,7,["H1129"]],[7,10,["H1004"]],[10,12,["H6213"]],[12,13,["H5521"]],[13,16,["H4735"]],[16,17,["H5921","H3651"]],[17,19,["H8034"]],[19,22,["H4725"]],[22,24,["H7121"]],[24,25,["H5523"]]]},{"k":978,"v":[[0,2,["H3290"]],[2,3,["H935"]],[3,5,["H8003"]],[5,7,["H5892"]],[7,9,["H7927"]],[9,10,["H834"]],[10,14,["H776"]],[14,16,["H3667"]],[16,19,["H935"]],[19,21,["H4480","H6307"]],[21,25,["H2583","(H853)"]],[25,26,["H6440"]],[26,28,["H5892"]]]},{"k":979,"v":[[0,3,["H7069","(H853)"]],[3,5,["H2513"]],[5,8,["H7704"]],[8,9,["H834","H8033"]],[9,12,["H5186"]],[12,14,["H168"]],[14,17,["H4480","H3027"]],[17,20,["H1121"]],[20,22,["H2544"]],[22,23,["H7928"]],[23,24,["H1"]],[24,27,["H3967"]],[27,30,["H7192"]]]},{"k":980,"v":[[0,3,["H5324"]],[3,4,["H8033"]],[4,6,["H4196"]],[6,8,["H7121"]],[8,10,["H415"]]]},{"k":981,"v":[[0,2,["H1783"]],[2,4,["H1323"]],[4,6,["H3812"]],[6,7,["H834"]],[7,9,["H3205"]],[9,11,["H3290"]],[11,13,["H3318"]],[13,15,["H7200"]],[15,17,["H1323"]],[17,20,["H776"]]]},{"k":982,"v":[[0,3,["H7928"]],[3,5,["H1121"]],[5,7,["H2544"]],[7,9,["H2340"]],[9,10,["H5387"]],[10,13,["H776"]],[13,14,["H7200"]],[14,17,["H3947"]],[17,21,["H7901"]],[21,24,["H6031"]],[24,25,[]]]},{"k":983,"v":[[0,3,["H5315"]],[3,4,["H1692"]],[4,6,["H1783"]],[6,8,["H1323"]],[8,10,["H3290"]],[10,13,["H157","(H853)"]],[13,15,["H5291"]],[15,17,["H1696"]],[17,18,["H5921","H3820"]],[18,21,["H5291"]]]},{"k":984,"v":[[0,2,["H7928"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1"]],[6,7,["H2544"]],[7,8,["H559"]],[8,9,["H3947"]],[9,10,["(H853)"]],[10,11,["H2063"]],[11,12,["H3207"]],[12,14,["H802"]]]},{"k":985,"v":[[0,2,["H3290"]],[2,3,["H8085"]],[3,4,["H3588"]],[4,7,["H2930","(H853)"]],[7,8,["H1783"]],[8,10,["H1323"]],[10,13,["H1121"]],[13,14,["H1961"]],[14,15,["H854"]],[15,17,["H4735"]],[17,20,["H7704"]],[20,22,["H3290"]],[22,25,["H2790"]],[25,26,["H5704"]],[26,29,["H935"]]]},{"k":986,"v":[[0,2,["H2544"]],[2,4,["H1"]],[4,6,["H7927"]],[6,8,["H3318"]],[8,9,["H413"]],[9,10,["H3290"]],[10,12,["H1696"]],[12,13,["H854"]],[13,14,[]]]},{"k":987,"v":[[0,3,["H1121"]],[3,5,["H3290"]],[5,6,["H935"]],[6,8,["H4480"]],[8,10,["H7704"]],[10,13,["H8085"]],[13,17,["H376"]],[17,19,["H6087"]],[19,24,["H2734","H3966"]],[24,25,["H3588"]],[25,28,["H6213"]],[28,29,["H5039"]],[29,31,["H3478"]],[31,34,["H7901","(H853)"]],[34,35,["H3290"]],[35,36,["H1323"]],[36,38,["H3651"]],[38,40,["H3808"]],[40,43,["H6213"]]]},{"k":988,"v":[[0,2,["H2544"]],[2,3,["H1696"]],[3,4,["H854"]],[4,6,["H559"]],[6,8,["H5315"]],[8,11,["H1121"]],[11,12,["H7928"]],[12,13,["H2836"]],[13,16,["H1323"]],[16,19,["H4994"]],[19,20,["H5414"]],[20,24,["H802"]]]},{"k":989,"v":[[0,4,["H2859"]],[4,5,["H854"]],[5,8,["H5414"]],[8,10,["H1323"]],[10,14,["H3947"]],[14,16,["H1323"]],[16,18,[]]]},{"k":990,"v":[[0,4,["H3427"]],[4,5,["H854"]],[5,9,["H776"]],[9,11,["H1961"]],[11,12,["H6440"]],[12,14,["H3427"]],[14,16,["H5503"]],[16,22,["H270"]],[22,23,[]]]},{"k":991,"v":[[0,2,["H7928"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1"]],[6,8,["H413"]],[8,10,["H251"]],[10,13,["H4672"]],[13,14,["H2580"]],[14,17,["H5869"]],[17,19,["H834"]],[19,22,["H559"]],[22,23,["H413"]],[23,27,["H5414"]]]},{"k":992,"v":[[0,1,["H7235","H5921"]],[1,5,["H3966"]],[5,6,["H4119"]],[6,8,["H4976"]],[8,12,["H5414"]],[12,14,["H834"]],[14,17,["H559"]],[17,18,["H413"]],[18,21,["H5414"]],[21,22,["(H853)"]],[22,24,["H5291"]],[24,26,["H802"]]]},{"k":993,"v":[[0,3,["H1121"]],[3,5,["H3290"]],[5,6,["H6030","(H853)"]],[6,7,["H7928"]],[7,9,["H2544"]],[9,11,["H1"]],[11,12,["H4820"]],[12,14,["H1696"]],[14,15,["H834"]],[15,18,["H2930","(H853)"]],[18,19,["H1783"]],[19,21,["H269"]]]},{"k":994,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H3808","H3201"]],[7,8,["H6213"]],[8,9,["H2088"]],[9,10,["H1697"]],[10,12,["H5414","(H853)"]],[12,14,["H269"]],[14,16,["H376"]],[16,17,["H834"]],[17,19,["H6190"]],[19,20,["H3588"]],[20,21,["H1931"]],[21,24,["H2781"]],[24,26,[]]]},{"k":995,"v":[[0,1,["H389"]],[1,3,["H2063"]],[3,6,["H225"]],[6,9,["H518"]],[9,12,["H1961"]],[12,17,["H3605"]],[17,18,["H2145"]],[18,22,["H4135"]]]},{"k":996,"v":[[0,4,["H5414","(H853)"]],[4,6,["H1323"]],[6,12,["H3947"]],[12,14,["H1323"]],[14,20,["H3427"]],[20,21,["H854"]],[21,26,["H1961"]],[26,27,["H259"]],[27,28,["H5971"]]]},{"k":997,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H8085"]],[6,7,["H413"]],[7,11,["H4135"]],[11,15,["H3947","(H853)"]],[15,17,["H1323"]],[17,22,["H1980"]]]},{"k":998,"v":[[0,3,["H1697"]],[3,4,["H3190","H5869"]],[4,5,["H2544"]],[5,7,["H7928"]],[7,8,["H2544"]],[8,9,["H1121"]]]},{"k":999,"v":[[0,4,["H5288"]],[4,5,["H309"]],[5,6,["H3808"]],[6,8,["H6213"]],[8,10,["H1697"]],[10,11,["H3588"]],[11,14,["H2654"]],[14,16,["H3290"]],[16,17,["H1323"]],[17,19,["H1931"]],[19,22,["H3513"]],[22,24,["H4480","H3605"]],[24,26,["H1004"]],[26,29,["H1"]]]},{"k":1000,"v":[[0,2,["H2544"]],[2,4,["H7928"]],[4,6,["H1121"]],[6,7,["H935"]],[7,8,["H413"]],[8,10,["H8179"]],[10,13,["H5892"]],[13,15,["H1696"]],[15,16,["H413"]],[16,18,["H376"]],[18,21,["H5892"]],[21,22,["H559"]]]},{"k":1001,"v":[[0,1,["H428"]],[1,2,["H376"]],[2,4,["H8003"]],[4,5,["H854"]],[5,10,["H3427"]],[10,13,["H776"]],[13,15,["H5503"]],[15,19,["H776"]],[19,20,["H2009"]],[20,24,["H7342","H3027"]],[24,25,["H6440"]],[25,29,["H3947","(H853)"]],[29,31,["H1323"]],[31,35,["H802"]],[35,39,["H5414"]],[39,42,["H1323"]]]},{"k":1002,"v":[[0,1,["H389"]],[1,2,["H2063"]],[2,5,["H376"]],[5,6,["H225"]],[6,11,["H3427"]],[11,12,["H854"]],[12,15,["H1961"]],[15,16,["H259"]],[16,17,["H5971"]],[17,19,["H3605"]],[19,20,["H2145"]],[20,24,["H4135"]],[24,25,["H834"]],[25,26,["H1992"]],[26,28,["H4135"]]]},{"k":1003,"v":[[0,2,["H3808"]],[2,4,["H4735"]],[4,7,["H7075"]],[7,9,["H3605"]],[9,10,["H929"]],[10,15,["H389"]],[15,18,["H225"]],[18,24,["H3427"]],[24,25,["H854"]],[25,26,[]]]},{"k":1004,"v":[[0,2,["H413"]],[2,3,["H2544"]],[3,5,["H413"]],[5,6,["H7928"]],[6,8,["H1121"]],[8,9,["H8085"]],[9,10,["H3605"]],[10,13,["H3318"]],[13,16,["H8179"]],[16,19,["H5892"]],[19,21,["H3605"]],[21,22,["H2145"]],[22,24,["H4135"]],[24,25,["H3605"]],[25,28,["H3318"]],[28,31,["H8179"]],[31,34,["H5892"]]]},{"k":1005,"v":[[0,5,["H1961"]],[5,8,["H7992"]],[8,9,["H3117"]],[9,12,["H1961"]],[12,13,["H3510"]],[13,15,["H8147"]],[15,18,["H1121"]],[18,20,["H3290"]],[20,21,["H8095"]],[21,23,["H3878"]],[23,24,["H1783"]],[24,25,["H251"]],[25,26,["H3947"]],[26,28,["H376"]],[28,30,["H2719"]],[30,32,["H935"]],[32,33,["H5921"]],[33,35,["H5892"]],[35,36,["H983"]],[36,38,["H2026"]],[38,39,["H3605"]],[39,41,["H2145"]]]},{"k":1006,"v":[[0,3,["H2026"]],[3,4,["H2544"]],[4,6,["H7928"]],[6,8,["H1121"]],[8,11,["H6310"]],[11,14,["H2719"]],[14,16,["H3947","(H853)"]],[16,17,["H1783"]],[17,20,["H7928"]],[20,21,["H4480","H1004"]],[21,24,["H3318"]]]},{"k":1007,"v":[[0,2,["H1121"]],[2,4,["H3290"]],[4,5,["H935"]],[5,6,["H5921"]],[6,8,["H2491"]],[8,10,["H962"]],[10,12,["H5892"]],[12,13,["H834"]],[13,16,["H2930"]],[16,18,["H269"]]]},{"k":1008,"v":[[0,2,["H3947","(H853)"]],[2,4,["H6629"]],[4,7,["H1241"]],[7,10,["H2543"]],[10,13,["H834"]],[13,17,["H5892"]],[17,20,["H834"]],[20,24,["H7704"]]]},{"k":1009,"v":[[0,2,["H3605"]],[2,4,["H2428"]],[4,6,["H3605"]],[6,9,["H2945"]],[9,12,["H802"]],[12,15,["H7617"]],[15,17,["H962"]],[17,19,["H3605"]],[19,20,["H834"]],[20,24,["H1004"]]]},{"k":1010,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H8095"]],[5,7,["H3878"]],[7,10,["H5916"]],[10,16,["H887"]],[16,19,["H3427"]],[19,22,["H776"]],[22,25,["H3669"]],[25,28,["H6522"]],[28,30,["H589"]],[30,32,["H4962"]],[32,34,["H4557"]],[34,39,["H622"]],[39,40,["H5921"]],[40,43,["H5221"]],[43,49,["H8045"]],[49,50,["H589"]],[50,53,["H1004"]]]},{"k":1011,"v":[[0,3,["H559"]],[3,7,["H6213","(H853)"]],[7,9,["H269"]],[9,13,["H2181"]]]},{"k":1012,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3290"]],[5,6,["H6965"]],[6,8,["H5927"]],[8,10,["H1008"]],[10,12,["H3427"]],[12,13,["H8033"]],[13,15,["H6213"]],[15,16,["H8033"]],[16,18,["H4196"]],[18,20,["H410"]],[20,22,["H7200"]],[22,23,["H413"]],[23,27,["H1272"]],[27,30,["H4480","H6440"]],[30,32,["H6215"]],[32,34,["H251"]]]},{"k":1013,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1004"]],[6,8,["H413"]],[8,9,["H3605"]],[9,10,["H834"]],[10,12,["H5973"]],[12,15,["H5493","(H853)"]],[15,17,["H5236"]],[17,18,["H430"]],[18,19,["H834"]],[19,21,["H8432"]],[21,25,["H2891"]],[25,27,["H2498"]],[27,29,["H8071"]]]},{"k":1014,"v":[[0,4,["H6965"]],[4,7,["H5927"]],[7,9,["H1008"]],[9,13,["H6213"]],[13,14,["H8033"]],[14,16,["H4196"]],[16,18,["H410"]],[18,20,["H6030"]],[20,24,["H3117"]],[24,27,["H6869"]],[27,29,["H1961"]],[29,30,["H5973"]],[30,34,["H1870"]],[34,35,["H834"]],[35,37,["H1980"]]]},{"k":1015,"v":[[0,3,["H5414"]],[3,4,["H413"]],[4,5,["H3290","(H853)"]],[5,6,["H3605"]],[6,8,["H5236"]],[8,9,["H430"]],[9,10,["H834"]],[10,14,["H3027"]],[14,18,["H5141"]],[18,19,["H834"]],[19,23,["H241"]],[23,25,["H3290"]],[25,26,["H2934"]],[26,28,["H8478"]],[28,30,["H424"]],[30,31,["H834"]],[31,33,["H5973"]],[33,34,["H7927"]]]},{"k":1016,"v":[[0,3,["H5265"]],[3,6,["H2847"]],[6,8,["H430"]],[8,9,["H1961"]],[9,10,["H5921"]],[10,12,["H5892"]],[12,13,["H834"]],[13,16,["H5439"]],[16,21,["H3808"]],[21,22,["H7291"]],[22,23,["H310"]],[23,25,["H1121"]],[25,27,["H3290"]]]},{"k":1017,"v":[[0,2,["H3290"]],[2,3,["H935"]],[3,5,["H3870"]],[5,6,["H834"]],[6,10,["H776"]],[10,12,["H3667"]],[12,13,["H1931"]],[13,15,["H1008"]],[15,16,["H1931"]],[16,18,["H3605"]],[18,20,["H5971"]],[20,21,["H834"]],[21,23,["H5973"]],[23,24,[]]]},{"k":1018,"v":[[0,3,["H1129"]],[3,4,["H8033"]],[4,6,["H4196"]],[6,8,["H7121"]],[8,10,["H4725"]],[10,11,["H416"]],[11,12,["H3588"]],[12,13,["H8033"]],[13,14,["H430"]],[14,15,["H1540"]],[15,16,["H413"]],[16,20,["H1272"]],[20,23,["H4480","H6440"]],[23,26,["H251"]]]},{"k":1019,"v":[[0,2,["H1683"]],[2,3,["H7259"]],[3,4,["H3243"]],[4,5,["H4191"]],[5,9,["H6912"]],[9,10,["H4480","H8478"]],[10,11,["H1008"]],[11,12,["H8478"]],[12,14,["H437"]],[14,17,["H8034"]],[17,21,["H7121"]],[21,22,["H439"]]]},{"k":1020,"v":[[0,2,["H430"]],[2,3,["H7200"]],[3,4,["H413"]],[4,5,["H3290"]],[5,6,["H5750"]],[6,9,["H935"]],[9,12,["H4480","H6307"]],[12,14,["H1288"]],[14,15,[]]]},{"k":1021,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,7,["H8034"]],[7,9,["H3290"]],[9,11,["H8034"]],[11,13,["H3808"]],[13,15,["H7121"]],[15,17,["H5750"]],[17,18,["H3290"]],[18,19,["H3588","H518"]],[19,20,["H3478"]],[20,22,["H1961"]],[22,24,["H8034"]],[24,27,["H7121","(H853)"]],[27,29,["H8034"]],[29,30,["H3478"]]]},{"k":1022,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,6,["H589"]],[6,8,["H410"]],[8,9,["H7706"]],[9,11,["H6509"]],[11,13,["H7235"]],[13,15,["H1471"]],[15,18,["H6951"]],[18,20,["H1471"]],[20,22,["H1961"]],[22,23,["H4480"]],[23,26,["H4428"]],[26,29,["H3318"]],[29,32,["H4480","H2504"]]]},{"k":1023,"v":[[0,3,["H776"]],[3,4,["H834"]],[4,6,["H5414"]],[6,7,["H85"]],[7,9,["H3327"]],[9,14,["H5414"]],[14,19,["H2233"]],[19,20,["H310"]],[20,24,["H5414","(H853)"]],[24,26,["H776"]]]},{"k":1024,"v":[[0,2,["H430"]],[2,4,["H5927"]],[4,5,["H4480","H5921"]],[5,9,["H4725"]],[9,10,["H834"]],[10,12,["H1696"]],[12,13,["H854"]],[13,14,[]]]},{"k":1025,"v":[[0,2,["H3290"]],[2,4,["H5324"]],[4,6,["H4676"]],[6,9,["H4725"]],[9,10,["H834"]],[10,12,["H1696"]],[12,13,["H854"]],[13,17,["H4678"]],[17,19,["H68"]],[19,22,["H5258"]],[22,25,["H5262"]],[25,26,["H5921"]],[26,29,["H3332"]],[29,30,["H8081"]],[30,31,["H5921"]]]},{"k":1026,"v":[[0,2,["H3290"]],[2,3,["H7121","(H853)"]],[3,5,["H8034"]],[5,8,["H4725"]],[8,9,["H834"]],[9,10,["H430"]],[10,11,["H1696"]],[11,12,["H854"]],[12,14,["H1008"]]]},{"k":1027,"v":[[0,3,["H5265"]],[3,5,["H4480","H1008"]],[5,8,["H1961"]],[8,9,["H5750"]],[9,12,["H3530","H776"]],[12,14,["H935"]],[14,16,["H672"]],[16,18,["H7354"]],[18,19,["H3205"]],[19,23,["H7185"]],[23,24,["H3205"]]]},{"k":1028,"v":[[0,5,["H1961"]],[5,10,["H7185"]],[10,11,["H3205"]],[11,14,["H3205"]],[14,15,["H559"]],[15,18,["H3372"]],[18,19,["H408"]],[19,23,["H2088"]],[23,24,["H1121"]],[24,25,["H1571"]]]},{"k":1029,"v":[[0,5,["H1961"]],[5,8,["H5315"]],[8,11,["H3318"]],[11,12,["H3588"]],[12,14,["H4191"]],[14,17,["H7121"]],[17,19,["H8034"]],[19,20,["H1126"]],[20,23,["H1"]],[23,24,["H7121"]],[24,26,["H1144"]]]},{"k":1030,"v":[[0,2,["H7354"]],[2,3,["H4191"]],[3,6,["H6912"]],[6,9,["H1870"]],[9,11,["H672"]],[11,12,["H1931"]],[12,14,["H1035"]]]},{"k":1031,"v":[[0,2,["H3290"]],[2,3,["H5324"]],[3,5,["H4676"]],[5,6,["H5921"]],[6,8,["H6900"]],[8,9,["H1931"]],[9,12,["H4678"]],[12,14,["H7354"]],[14,15,["H6900"]],[15,16,["H5704"]],[16,18,["H3117"]]]},{"k":1032,"v":[[0,2,["H3478"]],[2,3,["H5265"]],[3,5,["H5186"]],[5,7,["H168"]],[7,8,["H4480","H1973"]],[8,10,["H4026"]],[10,12,["H4029"]]]},{"k":1033,"v":[[0,5,["H1961"]],[5,7,["H3478"]],[7,8,["H7931"]],[8,10,["H1931"]],[10,11,["H776"]],[11,13,["H7205"]],[13,14,["H1980"]],[14,17,["H7901","(H853)"]],[17,18,["H1090"]],[18,20,["H1"]],[20,21,["H6370"]],[21,23,["H3478"]],[23,24,["H8085"]],[24,28,["H1121"]],[28,30,["H3290"]],[30,31,["H1961"]],[31,32,["H8147","H6240"]]]},{"k":1034,"v":[[0,2,["H1121"]],[2,4,["H3812"]],[4,5,["H7205"]],[5,6,["H3290"]],[6,7,["H1060"]],[7,9,["H8095"]],[9,11,["H3878"]],[11,13,["H3063"]],[13,15,["H3485"]],[15,17,["H2074"]]]},{"k":1035,"v":[[0,2,["H1121"]],[2,4,["H7354"]],[4,5,["H3130"]],[5,7,["H1144"]]]},{"k":1036,"v":[[0,3,["H1121"]],[3,5,["H1090"]],[5,6,["H7354"]],[6,7,["H8198"]],[7,8,["H1835"]],[8,10,["H5321"]]]},{"k":1037,"v":[[0,3,["H1121"]],[3,5,["H2153"]],[5,6,["H3812"]],[6,7,["H8198"]],[7,8,["H1410"]],[8,10,["H836"]],[10,11,["H428"]],[11,14,["H1121"]],[14,16,["H3290"]],[16,17,["H834"]],[17,19,["H3205"]],[19,23,["H6307"]]]},{"k":1038,"v":[[0,2,["H3290"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H3327"]],[5,7,["H1"]],[7,9,["H4471"]],[9,14,["H7153"]],[14,15,["H1931"]],[15,17,["H2275"]],[17,18,["H834","H8033"]],[18,19,["H85"]],[19,21,["H3327"]],[21,22,["H1481"]]]},{"k":1039,"v":[[0,3,["H3117"]],[3,5,["H3327"]],[5,6,["H1961"]],[6,8,["H3967"]],[8,10,["H8084"]],[10,11,["H8141"]]]},{"k":1040,"v":[[0,2,["H3327"]],[2,6,["H1478"]],[6,8,["H4191"]],[8,11,["H622"]],[11,12,["H413"]],[12,14,["H5971"]],[14,16,["H2205"]],[16,18,["H7649"]],[18,20,["H3117"]],[20,23,["H1121"]],[23,24,["H6215"]],[24,26,["H3290"]],[26,27,["H6912"]],[27,28,[]]]},{"k":1041,"v":[[0,2,["H428"]],[2,5,["H8435"]],[5,7,["H6215"]],[7,8,["H1931"]],[8,10,["H123"]]]},{"k":1042,"v":[[0,1,["H6215"]],[1,2,["H3947","(H853)"]],[2,4,["H802"]],[4,7,["H4480","H1323"]],[7,9,["H3667","(H853)"]],[9,10,["H5711"]],[10,12,["H1323"]],[12,14,["H356"]],[14,16,["H2850"]],[16,18,["H173"]],[18,20,["H1323"]],[20,22,["H6034"]],[22,24,["H1323"]],[24,26,["H6649"]],[26,28,["H2340"]]]},{"k":1043,"v":[[0,2,["H1315"]],[2,3,["H3458"]],[3,4,["H1323"]],[4,5,["H269"]],[5,7,["H5032"]]]},{"k":1044,"v":[[0,2,["H5711"]],[2,3,["H3205"]],[3,5,["H6215","(H853)"]],[5,6,["H464"]],[6,8,["H1315"]],[8,9,["H3205","(H853)"]],[9,10,["H7467"]]]},{"k":1045,"v":[[0,2,["H173"]],[2,3,["H3205","(H853)"]],[3,4,["H3266"]],[4,6,["H3281"]],[6,8,["H7141"]],[8,9,["H428"]],[9,12,["H1121"]],[12,14,["H6215"]],[14,15,["H834"]],[15,17,["H3205"]],[17,22,["H776"]],[22,24,["H3667"]]]},{"k":1046,"v":[[0,2,["H6215"]],[2,3,["H3947","(H853)"]],[3,5,["H802"]],[5,8,["H1121"]],[8,11,["H1323"]],[11,13,["H3605"]],[13,15,["H5315"]],[15,18,["H1004"]],[18,21,["H4735"]],[21,23,["H3605"]],[23,25,["H929"]],[25,27,["H3605"]],[27,29,["H7075"]],[29,30,["H834"]],[30,33,["H7408"]],[33,36,["H776"]],[36,38,["H3667"]],[38,40,["H1980"]],[40,41,["H413"]],[41,43,["H776"]],[43,46,["H4480","H6440"]],[46,49,["H251"]],[49,50,["H3290"]]]},{"k":1047,"v":[[0,1,["H3588"]],[1,3,["H7399"]],[3,4,["H1961"]],[4,6,["H7227"]],[6,10,["H4480","H3427"]],[10,11,["H3162"]],[11,14,["H776"]],[14,18,["H4033"]],[18,19,["H3201"]],[19,20,["H3808"]],[20,21,["H5375"]],[21,23,["H4480","H6440"]],[23,26,["H4735"]]]},{"k":1048,"v":[[0,2,["H3427"]],[2,3,["H6215"]],[3,5,["H2022"]],[5,6,["H8165"]],[6,7,["H6215"]],[7,9,["H123"]]]},{"k":1049,"v":[[0,2,["H428"]],[2,5,["H8435"]],[5,7,["H6215"]],[7,9,["H1"]],[9,12,["H123"]],[12,14,["H2022"]],[14,15,["H8165"]]]},{"k":1050,"v":[[0,1,["H428"]],[1,4,["H8034"]],[4,6,["H6215"]],[6,7,["H1121"]],[7,8,["H464"]],[8,10,["H1121"]],[10,12,["H5711"]],[12,14,["H802"]],[14,16,["H6215"]],[16,17,["H7467"]],[17,19,["H1121"]],[19,21,["H1315"]],[21,23,["H802"]],[23,25,["H6215"]]]},{"k":1051,"v":[[0,3,["H1121"]],[3,5,["H464"]],[5,6,["H1961"]],[6,7,["H8487"]],[7,8,["H201"]],[8,9,["H6825"]],[9,11,["H1609"]],[11,13,["H7073"]]]},{"k":1052,"v":[[0,2,["H8555"]],[2,3,["H1961"]],[3,4,["H6370"]],[4,6,["H464"]],[6,7,["H6215"]],[7,8,["H1121"]],[8,11,["H3205"]],[11,13,["H464","(H853)"]],[13,14,["H6002"]],[14,15,["H428"]],[15,18,["H1121"]],[18,20,["H5711"]],[20,21,["H6215"]],[21,22,["H802"]]]},{"k":1053,"v":[[0,2,["H428"]],[2,5,["H1121"]],[5,7,["H7467"]],[7,8,["H5184"]],[8,10,["H2226"]],[10,11,["H8048"]],[11,13,["H4199"]],[13,14,["H428"]],[14,15,["H1961"]],[15,17,["H1121"]],[17,19,["H1315"]],[19,20,["H6215"]],[20,21,["H802"]]]},{"k":1054,"v":[[0,2,["H428"]],[2,3,["H1961"]],[3,5,["H1121"]],[5,7,["H173"]],[7,9,["H1323"]],[9,11,["H6034"]],[11,13,["H1323"]],[13,15,["H6649"]],[15,16,["H6215"]],[16,17,["H802"]],[17,20,["H3205"]],[20,22,["H6215","(H853)"]],[22,23,["H3266"]],[23,25,["H3281"]],[25,27,["H7141"]]]},{"k":1055,"v":[[0,1,["H428"]],[1,3,["H441"]],[3,6,["H1121"]],[6,8,["H6215"]],[8,10,["H1121"]],[10,12,["H464"]],[12,14,["H1060"]],[14,17,["H6215"]],[17,18,["H441"]],[18,19,["H8487"]],[19,20,["H441"]],[20,21,["H201"]],[21,22,["H441"]],[22,23,["H6825"]],[23,24,["H441"]],[24,25,["H7073"]]]},{"k":1056,"v":[[0,1,["H441"]],[1,2,["H7141"]],[2,3,["H441"]],[3,4,["H1609"]],[4,6,["H441"]],[6,7,["H6002"]],[7,8,["H428"]],[8,11,["H441"]],[11,15,["H464"]],[15,18,["H776"]],[18,20,["H123"]],[20,21,["H428"]],[21,24,["H1121"]],[24,26,["H5711"]]]},{"k":1057,"v":[[0,2,["H428"]],[2,5,["H1121"]],[5,7,["H7467"]],[7,8,["H6215"]],[8,9,["H1121"]],[9,10,["H441"]],[10,11,["H5184"]],[11,12,["H441"]],[12,13,["H2226"]],[13,14,["H441"]],[14,15,["H8048"]],[15,16,["H441"]],[16,17,["H4199"]],[17,18,["H428"]],[18,21,["H441"]],[21,25,["H7467"]],[25,28,["H776"]],[28,30,["H123"]],[30,31,["H428"]],[31,34,["H1121"]],[34,36,["H1315"]],[36,37,["H6215"]],[37,38,["H802"]]]},{"k":1058,"v":[[0,2,["H428"]],[2,5,["H1121"]],[5,7,["H173"]],[7,8,["H6215"]],[8,9,["H802"]],[9,10,["H441"]],[10,11,["H3266"]],[11,12,["H441"]],[12,13,["H3281"]],[13,14,["H441"]],[14,15,["H7141"]],[15,16,["H428"]],[16,19,["H441"]],[19,23,["H173"]],[23,25,["H1323"]],[25,27,["H6034"]],[27,28,["H6215"]],[28,29,["H802"]]]},{"k":1059,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H6215"]],[6,7,["H1931"]],[7,9,["H123"]],[9,11,["H428"]],[11,14,["H441"]]]},{"k":1060,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H8165"]],[6,8,["H2752"]],[8,10,["H3427"]],[10,12,["H776"]],[12,13,["H3877"]],[13,15,["H7732"]],[15,17,["H6649"]],[17,19,["H6034"]]]},{"k":1061,"v":[[0,2,["H1787"]],[2,4,["H687"]],[4,6,["H1789"]],[6,7,["H428"]],[7,10,["H441"]],[10,13,["H2752"]],[13,15,["H1121"]],[15,17,["H8165"]],[17,20,["H776"]],[20,22,["H123"]]]},{"k":1062,"v":[[0,3,["H1121"]],[3,5,["H3877"]],[5,6,["H1961"]],[6,7,["H2753"]],[7,9,["H1967"]],[9,11,["H3877"]],[11,12,["H269"]],[12,14,["H8555"]]]},{"k":1063,"v":[[0,3,["H1121"]],[3,5,["H7732"]],[5,7,["H428"]],[7,8,["H5935"]],[8,10,["H4506"]],[10,12,["H5858"]],[12,13,["H8195"]],[13,15,["H208"]]]},{"k":1064,"v":[[0,2,["H428"]],[2,5,["H1121"]],[5,7,["H6649"]],[7,9,["H345"]],[9,11,["H6034"]],[11,12,["H1931"]],[12,15,["H6034"]],[15,16,["H834"]],[16,17,["H4672","(H853)"]],[17,19,["H3222"]],[19,22,["H4057"]],[22,25,["H7462","(H853)"]],[25,27,["H2543"]],[27,29,["H6649"]],[29,31,["H1"]]]},{"k":1065,"v":[[0,3,["H1121"]],[3,5,["H6034"]],[5,7,["H428"]],[7,8,["H1787"]],[8,10,["H173"]],[10,12,["H1323"]],[12,14,["H6034"]]]},{"k":1066,"v":[[0,2,["H428"]],[2,5,["H1121"]],[5,7,["H1787"]],[7,8,["H2533"]],[8,10,["H790"]],[10,12,["H3506"]],[12,14,["H3763"]]]},{"k":1067,"v":[[0,2,["H1121"]],[2,4,["H687"]],[4,6,["H428"]],[6,7,["H1092"]],[7,9,["H2190"]],[9,11,["H6130"]]]},{"k":1068,"v":[[0,2,["H1121"]],[2,4,["H1789"]],[4,6,["H428"]],[6,7,["H5780"]],[7,9,["H765"]]]},{"k":1069,"v":[[0,1,["H428"]],[1,4,["H441"]],[4,9,["H2752"]],[9,10,["H441"]],[10,11,["H3877"]],[11,12,["H441"]],[12,13,["H7732"]],[13,14,["H441"]],[14,15,["H6649"]],[15,16,["H441"]],[16,17,["H6034"]]]},{"k":1070,"v":[[0,1,["H441"]],[1,2,["H1787"]],[2,3,["H441"]],[3,4,["H687"]],[4,5,["H441"]],[5,6,["H1789"]],[6,7,["H428"]],[7,10,["H441"]],[10,14,["H2753"]],[14,17,["H441"]],[17,20,["H776"]],[20,22,["H8165"]]]},{"k":1071,"v":[[0,2,["H428"]],[2,5,["H4428"]],[5,6,["H834"]],[6,7,["H4427"]],[7,10,["H776"]],[10,12,["H123"]],[12,13,["H6440"]],[13,15,["H4427"]],[15,17,["H4428"]],[17,20,["H1121"]],[20,22,["H3478"]]]},{"k":1072,"v":[[0,2,["H1106"]],[2,4,["H1121"]],[4,6,["H1160"]],[6,7,["H4427"]],[7,9,["H123"]],[9,12,["H8034"]],[12,15,["H5892"]],[15,17,["H1838"]]]},{"k":1073,"v":[[0,2,["H1106"]],[2,3,["H4191"]],[3,5,["H3103"]],[5,7,["H1121"]],[7,9,["H2226"]],[9,11,["H4480","H1224"]],[11,12,["H4427"]],[12,15,["H8478"]]]},{"k":1074,"v":[[0,2,["H3103"]],[2,3,["H4191"]],[3,5,["H2367"]],[5,8,["H4480","H776"]],[8,10,["H8489"]],[10,11,["H4427"]],[11,14,["H8478"]]]},{"k":1075,"v":[[0,2,["H2367"]],[2,3,["H4191"]],[3,5,["H1908"]],[5,7,["H1121"]],[7,9,["H911"]],[9,11,["H5221","(H853)"]],[11,12,["H4080"]],[12,15,["H7704"]],[15,17,["H4124"]],[17,18,["H4427"]],[18,21,["H8478"]],[21,24,["H8034"]],[24,27,["H5892"]],[27,29,["H5762"]]]},{"k":1076,"v":[[0,2,["H1908"]],[2,3,["H4191"]],[3,5,["H8072"]],[5,7,["H4480","H4957"]],[7,8,["H4427"]],[8,11,["H8478"]]]},{"k":1077,"v":[[0,2,["H8072"]],[2,3,["H4191"]],[3,5,["H7586"]],[5,7,["H4480","H7344"]],[7,10,["H5104"]],[10,11,["H4427"]],[11,14,["H8478"]]]},{"k":1078,"v":[[0,2,["H7586"]],[2,3,["H4191"]],[3,5,["H1177"]],[5,7,["H1121"]],[7,9,["H5907"]],[9,10,["H4427"]],[10,13,["H8478"]]]},{"k":1079,"v":[[0,2,["H1177"]],[2,4,["H1121"]],[4,6,["H5907"]],[6,7,["H4191"]],[7,9,["H1924"]],[9,10,["H4427"]],[10,13,["H8478"]],[13,16,["H8034"]],[16,19,["H5892"]],[19,21,["H6464"]],[21,24,["H802"]],[24,25,["H8034"]],[25,27,["H4105"]],[27,29,["H1323"]],[29,31,["H4308"]],[31,33,["H1323"]],[33,35,["H4314"]]]},{"k":1080,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H441"]],[8,12,["H6215"]],[12,16,["H4940"]],[16,19,["H4725"]],[19,22,["H8034"]],[22,23,["H441"]],[23,24,["H8555"]],[24,25,["H441"]],[25,26,["H5933"]],[26,27,["H441"]],[27,28,["H3509"]]]},{"k":1081,"v":[[0,1,["H441"]],[1,2,["H173"]],[2,3,["H441"]],[3,4,["H425"]],[4,5,["H441"]],[5,6,["H6373"]]]},{"k":1082,"v":[[0,1,["H441"]],[1,2,["H7073"]],[2,3,["H441"]],[3,4,["H8487"]],[4,5,["H441"]],[5,6,["H4014"]]]},{"k":1083,"v":[[0,1,["H441"]],[1,2,["H4025"]],[2,3,["H441"]],[3,4,["H5902"]],[4,5,["H428"]],[5,8,["H441"]],[8,10,["H123"]],[10,14,["H4186"]],[14,17,["H776"]],[17,20,["H272"]],[20,21,["H1931"]],[21,23,["H6215"]],[23,25,["H1"]],[25,28,["H123"]]]},{"k":1084,"v":[[0,2,["H3290"]],[2,3,["H3427"]],[3,6,["H776"]],[6,9,["H1"]],[9,12,["H4033"]],[12,15,["H776"]],[15,17,["H3667"]]]},{"k":1085,"v":[[0,1,["H428"]],[1,4,["H8435"]],[4,6,["H3290"]],[6,7,["H3130"]],[7,9,["H7651","H6240"]],[9,10,["H8141"]],[10,11,["H1121"]],[11,12,["H1961"]],[12,13,["H7462"]],[13,15,["H6629"]],[15,16,["H854"]],[16,18,["H251"]],[18,21,["H5288"]],[21,23,["H854"]],[23,25,["H1121"]],[25,27,["H1090"]],[27,29,["H854"]],[29,31,["H1121"]],[31,33,["H2153"]],[33,35,["H1"]],[35,36,["H802"]],[36,38,["H3130"]],[38,39,["H935"]],[39,40,["H413"]],[40,42,["H1"]],[42,43,["(H853)"]],[43,44,["H7451"]],[44,45,["H1681"]]]},{"k":1086,"v":[[0,2,["H3478"]],[2,3,["H157","(H853)"]],[3,4,["H3130"]],[4,7,["H4480","H3605"]],[7,9,["H1121"]],[9,10,["H3588"]],[10,11,["H1931"]],[11,14,["H1121"]],[14,18,["H2208"]],[18,21,["H6213"]],[21,24,["H3801"]],[24,27,["H6446"]]]},{"k":1087,"v":[[0,4,["H251"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,8,["H1"]],[8,9,["H157"]],[9,13,["H4480","H3605"]],[13,15,["H251"]],[15,17,["H8130"]],[17,20,["H3201"]],[20,21,["H3808"]],[21,22,["H1696"]],[22,23,["H7965"]],[23,25,[]]]},{"k":1088,"v":[[0,2,["H3130"]],[2,3,["H2492"]],[3,5,["H2472"]],[5,8,["H5046"]],[8,11,["H251"]],[11,14,["H8130"]],[14,16,["H5750"]],[16,18,["H3254"]]]},{"k":1089,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H8085"]],[6,9,["H4994"]],[9,10,["H2088"]],[10,11,["H2472"]],[11,12,["H834"]],[12,15,["H2492"]]]},{"k":1090,"v":[[0,2,["H2009"]],[2,3,["H587"]],[3,5,["H481"]],[5,6,["H485"]],[6,7,["H8432"]],[7,9,["H7704"]],[9,11,["H2009"]],[11,13,["H485"]],[13,14,["H6965"]],[14,16,["H1571"]],[16,18,["H5324"]],[18,20,["H2009"]],[20,22,["H485"]],[22,25,["H5437"]],[25,28,["H7812"]],[28,31,["H485"]]]},{"k":1091,"v":[[0,3,["H251"]],[3,4,["H559"]],[4,10,["H4427","H4427"]],[10,11,["H5921"]],[11,13,["H518"]],[13,18,["H4910","H4910"]],[18,23,["H8130"]],[23,25,["H5750"]],[25,27,["H3254"]],[27,28,["H5921"]],[28,30,["H2472"]],[30,32,["H5921"]],[32,34,["H1697"]]]},{"k":1092,"v":[[0,3,["H2492"]],[3,4,["H5750"]],[4,5,["H312"]],[5,6,["H2472"]],[6,8,["H5608"]],[8,11,["H251"]],[11,13,["H559"]],[13,14,["H2009"]],[14,17,["H2492"]],[17,19,["H2472"]],[19,20,["H5750"]],[20,22,["H2009"]],[22,24,["H8121"]],[24,27,["H3394"]],[27,30,["H259","H6240"]],[30,31,["H3556"]],[31,33,["H7812"]],[33,35,[]]]},{"k":1093,"v":[[0,3,["H5608"]],[3,5,["H413"]],[5,7,["H1"]],[7,9,["H413"]],[9,11,["H251"]],[11,14,["H1"]],[14,15,["H1605"]],[15,18,["H559"]],[18,21,["H4100"]],[21,23,["H2088"]],[23,24,["H2472"]],[24,25,["H834"]],[25,28,["H2492"]],[28,30,["H589"]],[30,33,["H517"]],[33,36,["H251"]],[36,38,["H935","H935"]],[38,42,["H7812"]],[42,47,["H776"]]]},{"k":1094,"v":[[0,3,["H251"]],[3,4,["H7065"]],[4,8,["H1"]],[8,9,["H8104","(H853)"]],[9,11,["H1697"]]]},{"k":1095,"v":[[0,3,["H251"]],[3,4,["H1980"]],[4,6,["H7462","(H853)"]],[6,8,["H1"]],[8,9,["H6629"]],[9,11,["H7927"]]]},{"k":1096,"v":[[0,2,["H3478"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,7,["H3808"]],[7,9,["H251"]],[9,10,["H7462"]],[10,14,["H7927"]],[14,15,["H1980"]],[15,19,["H7971"]],[19,21,["H413"]],[21,25,["H559"]],[25,28,["H2009"]],[28,30,[]]]},{"k":1097,"v":[[0,3,["H559"]],[3,6,["H1980"]],[6,9,["H4994"]],[9,10,["H7200"]],[10,11,["(H853)"]],[11,14,["H7965"]],[14,17,["H251"]],[17,19,["H7965"]],[19,22,["H6629"]],[22,24,["H7725"]],[24,26,["H1697"]],[26,30,["H7971"]],[30,35,["H4480","H6010"]],[35,37,["H2275"]],[37,40,["H935"]],[40,42,["H7927"]]]},{"k":1098,"v":[[0,4,["H376"]],[4,5,["H4672"]],[5,8,["H2009"]],[8,11,["H8582"]],[11,14,["H7704"]],[14,17,["H376"]],[17,18,["H7592"]],[18,20,["H559"]],[20,21,["H4100"]],[21,22,["H1245"]],[22,23,[]]]},{"k":1099,"v":[[0,3,["H559"]],[3,4,["H595"]],[4,5,["H1245","(H853)"]],[5,7,["H251"]],[7,8,["H5046"]],[8,12,["H4994"]],[12,13,["H375"]],[13,14,["H1992"]],[14,15,["H7462"]],[15,17,[]]]},{"k":1100,"v":[[0,3,["H376"]],[3,4,["H559"]],[4,7,["H5265"]],[7,8,["H4480","H2088"]],[8,9,["H3588"]],[9,11,["H8085"]],[11,13,["H559"]],[13,16,["H1980"]],[16,18,["H1886"]],[18,20,["H3130"]],[20,21,["H1980"]],[21,22,["H310"]],[22,24,["H251"]],[24,26,["H4672"]],[26,29,["H1886"]]]},{"k":1101,"v":[[0,4,["H7200"]],[4,7,["H4480","H7350"]],[7,9,["H2962"]],[9,12,["H7126"]],[12,13,["H413"]],[13,16,["H5230"]],[16,20,["H4191"]],[20,21,[]]]},{"k":1102,"v":[[0,3,["H559"]],[3,4,["H376"]],[4,5,["H413"]],[5,6,["H251"]],[6,7,["H2009"]],[7,8,["H1976"]],[8,9,["H1167","H2472"]],[9,10,["H935"]]]},{"k":1103,"v":[[0,1,["H1980"]],[1,2,["H6258"]],[2,7,["H2026"]],[7,10,["H7993"]],[10,13,["H259"]],[13,14,["H953"]],[14,18,["H559"]],[18,20,["H7451"]],[20,21,["H2416"]],[21,23,["H398"]],[23,28,["H7200"]],[28,29,["H4100"]],[29,31,["H1961"]],[31,34,["H2472"]]]},{"k":1104,"v":[[0,2,["H7205"]],[2,3,["H8085"]],[3,7,["H5337"]],[7,12,["H4480","H3027"]],[12,14,["H559"]],[14,17,["H3808"]],[17,18,["H5221"]],[18,19,[]]]},{"k":1105,"v":[[0,2,["H7205"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H8210"]],[6,7,["H408"]],[7,8,["H1818"]],[8,10,["H7993"]],[10,12,["H413"]],[12,13,["H2088"]],[13,14,["H953"]],[14,15,["H834"]],[15,19,["H4057"]],[19,21,["H7971"]],[21,22,["H408"]],[22,23,["H3027"]],[23,26,["H4616"]],[26,29,["H5337"]],[29,34,["H4480","H3027"]],[34,36,["H7725"]],[36,38,["H413"]],[38,40,["H1"]],[40,41,[]]]},{"k":1106,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H3130"]],[7,9,["H935"]],[9,10,["H413"]],[10,12,["H251"]],[12,15,["H6584","(H853)"]],[15,16,["H3130"]],[16,18,["(H853)"]],[18,20,["H3801"]],[20,21,["(H853)"]],[21,22,["H3801"]],[22,25,["H6446"]],[25,26,["H834"]],[26,28,["H5921"]],[28,29,[]]]},{"k":1107,"v":[[0,3,["H3947"]],[3,6,["H7993"]],[6,10,["H953"]],[10,13,["H953"]],[13,15,["H7386"]],[15,18,["H369"]],[18,19,["H4325"]],[19,21,[]]]},{"k":1108,"v":[[0,4,["H3427"]],[4,6,["H398"]],[6,7,["H3899"]],[7,11,["H5375"]],[11,13,["H5869"]],[13,15,["H7200"]],[15,17,["H2009"]],[17,19,["H736"]],[19,21,["H3459"]],[21,22,["H935"]],[22,24,["H4480","H1568"]],[24,27,["H1581"]],[27,28,["H5375"]],[28,29,["H5219"]],[29,31,["H6875"]],[31,33,["H3910"]],[33,34,["H1980"]],[34,38,["H3381"]],[38,40,["H4714"]]]},{"k":1109,"v":[[0,2,["H3063"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H251"]],[6,7,["H4100"]],[7,8,["H1215"]],[8,11,["H3588"]],[11,13,["H2026","(H853)"]],[13,15,["H251"]],[15,17,["H3680","(H853)"]],[17,19,["H1818"]]]},{"k":1110,"v":[[0,1,["H1980"]],[1,5,["H4376"]],[5,9,["H3459"]],[9,12,["H408"]],[12,14,["H3027"]],[14,15,["H1961"]],[15,18,["H3588"]],[18,19,["H1931"]],[19,22,["H251"]],[22,25,["H1320"]],[25,28,["H251"]],[28,30,["H8085"]]]},{"k":1111,"v":[[0,4,["H5674"]],[4,5,["H376","H4084"]],[5,6,["H5503"]],[6,9,["H4900"]],[9,12,["H5927","(H853)"]],[12,13,["H3130"]],[13,15,["H4480"]],[15,17,["H953"]],[17,19,["H4376","(H853)"]],[19,20,["H3130"]],[20,23,["H3459"]],[23,25,["H6242"]],[25,28,["H3701"]],[28,31,["H935","(H853)"]],[31,32,["H3130"]],[32,34,["H4714"]]]},{"k":1112,"v":[[0,2,["H7205"]],[2,3,["H7725"]],[3,4,["H413"]],[4,6,["H953"]],[6,8,["H2009"]],[8,9,["H3130"]],[9,11,["H369"]],[11,14,["H953"]],[14,17,["H7167","(H853)"]],[17,19,["H899"]]]},{"k":1113,"v":[[0,3,["H7725"]],[3,4,["H413"]],[4,6,["H251"]],[6,8,["H559"]],[8,10,["H3206"]],[10,12,["H369"]],[12,14,["H589"]],[14,15,["H575"]],[15,17,["H589"]],[17,18,["H935"]]]},{"k":1114,"v":[[0,3,["H3947","(H853)"]],[3,4,["H3130"]],[4,5,["H3801"]],[5,7,["H7819"]],[7,9,["H8163"]],[9,12,["H5795"]],[12,14,["H2881","(H853)"]],[14,16,["H3801"]],[16,19,["H1818"]]]},{"k":1115,"v":[[0,3,["H7971","(H853)"]],[3,5,["H3801"]],[5,8,["H6446"]],[8,11,["H935"]],[11,13,["H413"]],[13,15,["H1"]],[15,17,["H559"]],[17,18,["H2063"]],[18,21,["H4672"]],[21,22,["H5234"]],[22,23,["H4994"]],[23,25,["H1931"]],[25,28,["H1121"]],[28,29,["H3801"]],[29,30,["H518"]],[30,31,["H3808"]]]},{"k":1116,"v":[[0,3,["H5234"]],[3,6,["H559"]],[6,10,["H1121"]],[10,11,["H3801"]],[11,13,["H7451"]],[13,14,["H2416"]],[14,16,["H398"]],[16,18,["H3130"]],[18,24,["H2963","H2963"]]]},{"k":1117,"v":[[0,2,["H3290"]],[2,3,["H7167"]],[3,5,["H8071"]],[5,7,["H7760"]],[7,8,["H8242"]],[8,11,["H4975"]],[11,13,["H56"]],[13,14,["H5921"]],[14,16,["H1121"]],[16,17,["H7227"]],[17,18,["H3117"]]]},{"k":1118,"v":[[0,2,["H3605"]],[2,4,["H1121"]],[4,6,["H3605"]],[6,8,["H1323"]],[8,10,["H6965"]],[10,12,["H5162"]],[12,16,["H3985"]],[16,19,["H5162"]],[19,22,["H559"]],[22,23,["H3588"]],[23,27,["H3381"]],[27,30,["H7585"]],[30,31,["H413"]],[31,33,["H1121"]],[33,34,["H57"]],[34,37,["H1"]],[37,38,["H1058"]],[38,40,[]]]},{"k":1119,"v":[[0,3,["H4092"]],[3,4,["H4376"]],[4,6,["H413"]],[6,7,["H4714"]],[7,9,["H6318"]],[9,11,["H5631"]],[11,13,["H6547"]],[13,15,["H8269"]],[15,18,["H2876"]]]},{"k":1120,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,8,["H6256"]],[8,10,["H3063"]],[10,12,["H3381"]],[12,13,["H4480","H854"]],[13,15,["H251"]],[15,18,["H5186"]],[18,19,["H5704"]],[19,21,["H376"]],[21,22,["H5726"]],[22,24,["H8034"]],[24,26,["H2437"]]]},{"k":1121,"v":[[0,2,["H3063"]],[2,3,["H7200"]],[3,4,["H8033"]],[4,6,["H1323"]],[6,9,["H376"]],[9,10,["H3669"]],[10,12,["H8034"]],[12,14,["H7770"]],[14,17,["H3947"]],[17,21,["H935"]],[21,22,["H413"]],[22,23,[]]]},{"k":1122,"v":[[0,3,["H2029"]],[3,5,["H3205"]],[5,7,["H1121"]],[7,10,["H7121","(H853)"]],[10,12,["H8034"]],[12,13,["H6147"]]]},{"k":1123,"v":[[0,3,["H2029"]],[3,4,["H5750"]],[4,6,["H3205"]],[6,8,["H1121"]],[8,11,["H7121","(H853)"]],[11,13,["H8034"]],[13,14,["H209"]]]},{"k":1124,"v":[[0,4,["H5750"]],[4,5,["H3254"]],[5,7,["H3205"]],[7,9,["H1121"]],[9,11,["H7121","(H853)"]],[11,13,["H8034"]],[13,14,["H7956"]],[14,17,["H1961"]],[17,19,["H3580"]],[19,22,["H3205"]],[22,23,[]]]},{"k":1125,"v":[[0,2,["H3063"]],[2,3,["H3947"]],[3,5,["H802"]],[5,7,["H6147"]],[7,9,["H1060"]],[9,11,["H8034"]],[11,13,["H8559"]]]},{"k":1126,"v":[[0,2,["H6147"]],[2,3,["H3063"]],[3,4,["H1060"]],[4,5,["H1961"]],[5,6,["H7451"]],[6,9,["H5869"]],[9,12,["H3068"]],[12,15,["H3068"]],[15,16,["H4191"]],[16,17,[]]]},{"k":1127,"v":[[0,2,["H3063"]],[2,3,["H559"]],[3,5,["H209"]],[5,7,["H935"]],[7,8,["H413"]],[8,10,["H251"]],[10,11,["H802"]],[11,13,["H2992"]],[13,17,["H6965"]],[17,18,["H2233"]],[18,21,["H251"]]]},{"k":1128,"v":[[0,2,["H209"]],[2,3,["H3045"]],[3,4,["H3588"]],[4,6,["H2233"]],[6,8,["H3808"]],[8,9,["H1961"]],[9,15,["H1961"]],[15,16,["H518"]],[16,19,["H935"]],[19,20,["H413"]],[20,22,["H251"]],[22,23,["H802"]],[23,26,["H7843"]],[26,30,["H776"]],[30,31,["H1115"]],[31,35,["H5414"]],[35,36,["H2233"]],[36,39,["H251"]]]},{"k":1129,"v":[[0,4,["H834"]],[4,6,["H6213"]],[6,7,["H7489","H5869"]],[7,9,["H3068"]],[9,12,["H4191"]],[12,14,["H1571"]]]},{"k":1130,"v":[[0,2,["H559"]],[2,3,["H3063"]],[3,5,["H8559"]],[5,9,["H3618"]],[9,10,["H3427"]],[10,12,["H490"]],[12,15,["H1"]],[15,16,["H1004"]],[16,17,["H5704"]],[17,18,["H7956"]],[18,20,["H1121"]],[20,22,["H1431"]],[22,23,["H3588"]],[23,25,["H559"]],[25,27,["H6435"]],[27,28,["H1931"]],[28,29,["H4191"]],[29,30,["H1571"]],[30,33,["H251"]],[33,36,["H8559"]],[36,37,["H1980"]],[37,39,["H3427"]],[39,42,["H1"]],[42,43,["H1004"]]]},{"k":1131,"v":[[0,5,["H7235","H3117"]],[5,7,["H1323"]],[7,9,["H7770"]],[9,10,["H3063"]],[10,11,["H802"]],[11,12,["H4191"]],[12,14,["H3063"]],[14,16,["H5162"]],[16,19,["H5927"]],[19,20,["H5921"]],[20,22,["H1494","H6629"]],[22,24,["H8553"]],[24,25,["H1931"]],[25,28,["H7453"]],[28,29,["H2437"]],[29,31,["H5726"]]]},{"k":1132,"v":[[0,4,["H5046"]],[4,5,["H8559"]],[5,6,["H559"]],[6,7,["H2009"]],[7,11,["H2524"]],[11,13,["H5927"]],[13,15,["H8553"]],[15,17,["H1494"]],[17,19,["H6629"]]]},{"k":1133,"v":[[0,3,["H5493"]],[3,5,["H491"]],[5,6,["H899"]],[6,8,["H4480","H5921"]],[8,11,["H3680"]],[11,15,["H6809"]],[15,18,["H5968"]],[18,20,["H3427"]],[20,23,["H5879"]],[23,24,["H6607"]],[24,25,["H834"]],[25,27,["H5921"]],[27,29,["H1870"]],[29,31,["H8553"]],[31,32,["H3588"]],[32,34,["H7200"]],[34,35,["H3588"]],[35,36,["H7956"]],[36,38,["H1431"]],[38,40,["H1931"]],[40,42,["H3808"]],[42,43,["H5414"]],[43,47,["H802"]]]},{"k":1134,"v":[[0,2,["H3063"]],[2,3,["H7200"]],[3,6,["H2803"]],[6,11,["H2181"]],[11,12,["H3588"]],[12,15,["H3680"]],[15,17,["H6440"]]]},{"k":1135,"v":[[0,3,["H5186"]],[3,4,["H413"]],[4,6,["H413"]],[6,8,["H1870"]],[8,10,["H559"]],[10,12,["H3051"]],[12,15,["H4994"]],[15,19,["H935"]],[19,20,["H413"]],[20,22,["H3588"]],[22,24,["H3045"]],[24,25,["H3808"]],[25,26,["H3588"]],[26,27,["H1931"]],[27,32,["H3618"]],[32,35,["H559"]],[35,36,["H4100"]],[36,39,["H5414"]],[39,41,["H3588"]],[41,45,["H935"]],[45,46,["H413"]],[46,47,[]]]},{"k":1136,"v":[[0,3,["H559"]],[3,4,["H595"]],[4,6,["H7971"]],[6,9,["H1423","H5795"]],[9,10,["H4480"]],[10,12,["H6629"]],[12,15,["H559"]],[15,18,["H5414"]],[18,21,["H6162"]],[21,22,["H5704"]],[22,24,["H7971"]],[24,25,[]]]},{"k":1137,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,5,["H6162"]],[5,8,["H5414"]],[8,12,["H559"]],[12,14,["H2368"]],[14,17,["H6616"]],[17,20,["H4294"]],[20,21,["H834"]],[21,25,["H3027"]],[25,28,["H5414"]],[28,33,["H935"]],[33,34,["H413"]],[34,38,["H2029"]],[38,40,[]]]},{"k":1138,"v":[[0,3,["H6965"]],[3,6,["H1980"]],[6,9,["H5493"]],[9,11,["H6809"]],[11,12,["H4480","H5921"]],[12,16,["H3847"]],[16,18,["H899"]],[18,21,["H491"]]]},{"k":1139,"v":[[0,2,["H3063"]],[2,3,["H7971","(H853)"]],[3,5,["H1423","H5795"]],[5,8,["H3027"]],[8,11,["H7453"]],[11,13,["H5726"]],[13,15,["H3947"]],[15,17,["H6162"]],[17,20,["H802"]],[20,21,["H4480","H3027"]],[21,24,["H4672"]],[24,26,["H3808"]]]},{"k":1140,"v":[[0,3,["H7592","(H853)"]],[3,5,["H376"]],[5,8,["H4725"]],[8,9,["H559"]],[9,10,["H346"]],[10,13,["H6948"]],[13,14,["H1931"]],[14,16,["H5879"]],[16,17,["H5921"]],[17,20,["H1870"]],[20,23,["H559"]],[23,25,["H1961"]],[25,26,["H3808"]],[26,27,["H6948"]],[27,29,["H2088"]],[29,30,[]]]},{"k":1141,"v":[[0,3,["H7725"]],[3,4,["H413"]],[4,5,["H3063"]],[5,7,["H559"]],[7,9,["H3808"]],[9,10,["H4672"]],[10,13,["H1571"]],[13,15,["H376"]],[15,18,["H4725"]],[18,19,["H559"]],[19,22,["H1961"]],[22,23,["H3808"]],[23,24,["H6948"]],[24,26,["H2088"]],[26,27,[]]]},{"k":1142,"v":[[0,2,["H3063"]],[2,3,["H559"]],[3,6,["H3947"]],[6,10,["H6435"]],[10,12,["H1961"]],[12,13,["H937"]],[13,14,["H2009"]],[14,16,["H7971"]],[16,17,["H2088"]],[17,18,["H1423"]],[18,20,["H859"]],[20,22,["H3808"]],[22,23,["H4672"]],[23,24,[]]]},{"k":1143,"v":[[0,5,["H1961"]],[5,7,["H4480","H7969"]],[7,8,["H2320"]],[8,13,["H5046"]],[13,14,["H3063"]],[14,15,["H559"]],[15,16,["H8559"]],[16,20,["H3618"]],[20,24,["H2181"]],[24,26,["H1571"]],[26,27,["H2009"]],[27,31,["H2030"]],[31,33,["H2183"]],[33,35,["H3063"]],[35,36,["H559"]],[36,39,["H3318"]],[39,44,["H8313"]]]},{"k":1144,"v":[[0,2,["H1931"]],[2,5,["H3318"]],[5,6,["H1931"]],[6,7,["H7971"]],[7,8,["H413"]],[8,12,["H2524"]],[12,13,["H559"]],[13,16,["H376"]],[16,17,["H834"]],[17,18,["H428"]],[18,21,["H595"]],[21,23,["H2030"]],[23,26,["H559"]],[26,27,["H5234"]],[27,30,["H4994"]],[30,31,["H4310"]],[31,33,["H428"]],[33,35,["H2858"]],[35,37,["H6616"]],[37,39,["H4294"]]]},{"k":1145,"v":[[0,2,["H3063"]],[2,3,["H5234"]],[3,6,["H559"]],[6,11,["H6663"]],[11,12,["H4480"]],[12,14,["H3588"]],[14,15,["H5921","H3651"]],[15,17,["H5414"]],[17,19,["H3808"]],[19,21,["H7956"]],[21,23,["H1121"]],[23,26,["H3045"]],[26,28,["H3254"]],[28,29,["H3808"]],[29,30,["H5750"]]]},{"k":1146,"v":[[0,5,["H1961"]],[5,8,["H6256"]],[8,11,["H3205"]],[11,13,["H2009"]],[13,14,["H8380"]],[14,18,["H990"]]]},{"k":1147,"v":[[0,5,["H1961"]],[5,8,["H3205"]],[8,13,["H5414"]],[13,15,["H3027"]],[15,18,["H3205"]],[18,19,["H3947"]],[19,21,["H7194"]],[21,22,["H5921"]],[22,24,["H3027"]],[24,27,["H8144"]],[27,28,["H559"]],[28,29,["H2088"]],[29,31,["H3318"]],[31,32,["H7223"]]]},{"k":1148,"v":[[0,5,["H1961"]],[5,9,["H7725"]],[9,11,["H3027"]],[11,13,["H2009"]],[13,15,["H251"]],[15,17,["H3318"]],[17,20,["H559"]],[20,21,["H4100"]],[21,25,["H6555"]],[25,27,["H6556"]],[27,29,["H5921"]],[29,33,["H8034"]],[33,35,["H7121"]],[35,36,["H6557"]]]},{"k":1149,"v":[[0,2,["H310"]],[2,4,["H3318"]],[4,6,["H251"]],[6,7,["H834"]],[7,11,["H8144"]],[11,12,["H5921"]],[12,14,["H3027"]],[14,17,["H8034"]],[17,19,["H7121"]],[19,20,["H2226"]]]},{"k":1150,"v":[[0,2,["H3130"]],[2,5,["H3381"]],[5,7,["H4714"]],[7,9,["H6318"]],[9,11,["H5631"]],[11,13,["H6547"]],[13,14,["H8269"]],[14,17,["H2876"]],[17,19,["H376","H4713"]],[19,20,["H7069"]],[20,24,["H4480","H3027"]],[24,27,["H3459"]],[27,28,["H834"]],[28,32,["H3381"]],[32,33,["H8033"]]]},{"k":1151,"v":[[0,3,["H3068"]],[3,4,["H1961"]],[4,5,["H854"]],[5,6,["H3130"]],[6,9,["H1961"]],[9,11,["H6743"]],[11,12,["H376"]],[12,15,["H1961"]],[15,18,["H1004"]],[18,21,["H113"]],[21,23,["H4713"]]]},{"k":1152,"v":[[0,3,["H113"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,7,["H3068"]],[7,9,["H854"]],[9,14,["H3068"]],[14,16,["H3605"]],[16,17,["H834"]],[17,18,["H1931"]],[18,19,["H6213"]],[19,21,["H6743"]],[21,24,["H3027"]]]},{"k":1153,"v":[[0,2,["H3130"]],[2,3,["H4672"]],[3,4,["H2580"]],[4,7,["H5869"]],[7,10,["H8334"]],[10,16,["H6485"]],[16,17,["H5921"]],[17,19,["H1004"]],[19,21,["H3605"]],[21,24,["H3426"]],[24,26,["H5414"]],[26,29,["H3027"]]]},{"k":1154,"v":[[0,5,["H1961"]],[5,8,["H4480","H227"]],[8,14,["H6485","(H853)"]],[14,17,["H1004"]],[17,19,["H5921"]],[19,20,["H3605"]],[20,21,["H834"]],[21,23,["H3426"]],[23,26,["H3068"]],[26,27,["H1288","(H853)"]],[27,29,["H4713"]],[29,30,["H1004"]],[30,33,["H1558","H3130"]],[33,36,["H1293"]],[36,39,["H3068"]],[39,40,["H1961"]],[40,42,["H3605"]],[42,43,["H834"]],[43,45,["H3426"]],[45,48,["H1004"]],[48,52,["H7704"]]]},{"k":1155,"v":[[0,3,["H5800"]],[3,4,["H3605"]],[4,5,["H834"]],[5,9,["H3130"]],[9,10,["H3027"]],[10,13,["H3045"]],[13,14,["H3808"]],[14,15,["H3972"]],[15,17,["H854"]],[17,18,["H3588","H518"]],[18,20,["H3899"]],[20,21,["H834"]],[21,22,["H1931"]],[22,24,["H398"]],[24,26,["H3130"]],[26,27,["H1961"]],[27,29,["H3303","H8389"]],[29,32,["H3303"]],[32,33,["H4758"]]]},{"k":1156,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H428"]],[7,8,["H1697"]],[8,11,["H113"]],[11,12,["H802"]],[12,13,["H5375","(H853)"]],[13,15,["H5869"]],[15,16,["H413"]],[16,17,["H3130"]],[17,20,["H559"]],[20,21,["H7901"]],[21,22,["H5973"]],[22,23,[]]]},{"k":1157,"v":[[0,3,["H3985"]],[3,5,["H559"]],[5,6,["H413"]],[6,8,["H113"]],[8,9,["H802"]],[9,10,["H2005"]],[10,12,["H113"]],[12,13,["H3045"]],[13,14,["H3808"]],[14,15,["H4100"]],[15,17,["H854"]],[17,21,["H1004"]],[21,25,["H5414"]],[25,26,["H3605"]],[26,27,["H834"]],[27,29,["H3426"]],[29,32,["H3027"]]]},{"k":1158,"v":[[0,3,["H369"]],[3,4,["H1419"]],[4,6,["H2088"]],[6,7,["H1004"]],[7,8,["H4480"]],[8,10,["H3808"]],[10,14,["H2820"]],[14,16,["H3972"]],[16,17,["H4480"]],[17,19,["H3588","H518"]],[19,21,["H834"]],[21,22,["H859"]],[22,25,["H802"]],[25,26,["H349"]],[26,30,["H6213"]],[30,31,["H2063"]],[31,32,["H1419"]],[32,33,["H7451"]],[33,35,["H2398"]],[35,37,["H430"]]]},{"k":1159,"v":[[0,5,["H1961"]],[5,8,["H1696"]],[8,9,["H413"]],[9,10,["H3130"]],[10,11,["H3117"]],[11,13,["H3117"]],[13,16,["H8085"]],[16,17,["H3808"]],[17,18,["H413"]],[18,21,["H7901"]],[21,22,["H681"]],[22,26,["H1961"]],[26,27,["H5973"]],[27,28,[]]]},{"k":1160,"v":[[0,5,["H1961"]],[5,7,["H2088"]],[7,8,["H3117"]],[8,11,["H935"]],[11,14,["H1004"]],[14,16,["H6213"]],[16,18,["H4399"]],[18,22,["H369","H376"]],[22,25,["H4480","H376"]],[25,28,["H1004"]],[28,29,["H8033"]],[29,30,["H1004"]]]},{"k":1161,"v":[[0,3,["H8610"]],[3,7,["H899"]],[7,8,["H559"]],[8,9,["H7901"]],[9,10,["H5973"]],[10,14,["H5800"]],[14,16,["H899"]],[16,19,["H3027"]],[19,21,["H5127"]],[21,23,["H3318"]],[23,25,["H2351"]]]},{"k":1162,"v":[[0,5,["H1961"]],[5,8,["H7200"]],[8,9,["H3588"]],[9,12,["H5800"]],[12,14,["H899"]],[14,17,["H3027"]],[17,20,["H5127"]],[20,21,["H2351"]]]},{"k":1163,"v":[[0,3,["H7121"]],[3,6,["H376"]],[6,9,["H1004"]],[9,11,["H559"]],[11,14,["H559"]],[14,15,["H7200"]],[15,19,["H935"]],[19,21,["H376","H5680"]],[21,25,["H6711"]],[25,29,["H935"]],[29,30,["H413"]],[30,33,["H7901"]],[33,34,["H5973"]],[34,38,["H7121"]],[38,41,["H1419"]],[41,42,["H6963"]]]},{"k":1164,"v":[[0,5,["H1961"]],[5,8,["H8085"]],[8,9,["H3588"]],[9,12,["H7311"]],[12,14,["H6963"]],[14,16,["H7121"]],[16,19,["H5800"]],[19,21,["H899"]],[21,22,["H681"]],[22,25,["H5127"]],[25,27,["H3318"]],[27,29,["H2351"]]]},{"k":1165,"v":[[0,4,["H5117"]],[4,6,["H899"]],[6,7,["H681"]],[7,9,["H5704"]],[9,11,["H113"]],[11,12,["H935","H413"]],[12,13,["H1004"]]]},{"k":1166,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,8,["H428"]],[8,9,["H1697"]],[9,10,["H559"]],[10,12,["H5680"]],[12,13,["H5650"]],[13,14,["H834"]],[14,17,["H935"]],[17,21,["H935"]],[21,22,["H413"]],[22,25,["H6711"]],[25,26,[]]]},{"k":1167,"v":[[0,5,["H1961"]],[5,9,["H7311"]],[9,11,["H6963"]],[11,13,["H7121"]],[13,16,["H5800"]],[16,18,["H899"]],[18,19,["H681"]],[19,22,["H5127"]],[22,23,["H2351"]]]},{"k":1168,"v":[[0,5,["H1961"]],[5,8,["H113"]],[8,9,["H8085","(H853)"]],[9,11,["H1697"]],[11,14,["H802"]],[14,15,["H834"]],[15,17,["H1696"]],[17,18,["H413"]],[18,20,["H559"]],[20,22,["H428"]],[22,23,["H1697"]],[23,24,["H6213"]],[24,26,["H5650"]],[26,31,["H639"]],[31,33,["H2734"]]]},{"k":1169,"v":[[0,2,["H3130"]],[2,3,["H113"]],[3,4,["H3947"]],[4,7,["H5414"]],[7,9,["H413"]],[9,11,["H1004","H5470"]],[11,13,["H4725"]],[13,14,["H834"]],[14,16,["H4428"]],[16,17,["H615"]],[17,19,["H631"]],[19,22,["H1961"]],[22,23,["H8033"]],[23,26,["H1004","H5470"]]]},{"k":1170,"v":[[0,3,["H3068"]],[3,4,["H1961"]],[4,5,["H854"]],[5,6,["H3130"]],[6,8,["H5186","H413"]],[8,10,["H2617"]],[10,12,["H5414"]],[12,14,["H2580"]],[14,17,["H5869"]],[17,20,["H8269"]],[20,23,["H1004","H5470"]]]},{"k":1171,"v":[[0,3,["H8269"]],[3,6,["H1004","H5470"]],[6,7,["H5414"]],[7,9,["H3130"]],[9,10,["H3027","(H853)"]],[10,11,["H3605"]],[11,13,["H615"]],[13,14,["H834"]],[14,18,["H1004","H5470"]],[18,20,["H3605","H834"]],[20,22,["H6213"]],[22,23,["H8033"]],[23,24,["H1931"]],[24,25,["H1961"]],[25,27,["H6213"]],[27,29,[]]]},{"k":1172,"v":[[0,2,["H8269"]],[2,5,["H1004","H5470"]],[5,6,["H7200"]],[6,7,["H369"]],[7,8,["(H853)"]],[8,10,["H3605","H3972"]],[10,15,["H3027"]],[15,16,["H834"]],[16,18,["H3068"]],[18,20,["H854"]],[20,24,["H834"]],[24,25,["H1931"]],[25,26,["H6213"]],[26,28,["H3068"]],[28,32,["H6743"]]]},{"k":1173,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H428"]],[7,8,["H1697"]],[8,11,["H4945"]],[11,14,["H4428"]],[14,16,["H4714"]],[16,19,["H644"]],[19,21,["H2398"]],[21,23,["H113"]],[23,25,["H4428"]],[25,27,["H4714"]]]},{"k":1174,"v":[[0,2,["H6547"]],[2,4,["H7107"]],[4,5,["H5921"]],[5,6,["H8147"]],[6,9,["H5631"]],[9,10,["H5921"]],[10,12,["H8269"]],[12,15,["H4945"]],[15,17,["H5921"]],[17,19,["H8269"]],[19,22,["H644"]]]},{"k":1175,"v":[[0,3,["H5414"]],[3,6,["H4929"]],[6,9,["H1004"]],[9,12,["H8269"]],[12,15,["H2876"]],[15,16,["H413"]],[16,18,["H1004","H5470"]],[18,20,["H4725"]],[20,21,["H834","H8033"]],[21,22,["H3130"]],[22,24,["H631"]]]},{"k":1176,"v":[[0,3,["H8269"]],[3,6,["H2876"]],[6,7,["H6485","(H853)"]],[7,8,["H3130"]],[8,9,["H854"]],[9,13,["H8334"]],[13,17,["H1961"]],[17,19,["H3117"]],[19,21,["H4929"]]]},{"k":1177,"v":[[0,3,["H2492"]],[3,5,["H2472"]],[5,6,["H8147"]],[6,10,["H376"]],[10,12,["H2472"]],[12,14,["H259"]],[14,15,["H3915"]],[15,17,["H376"]],[17,21,["H6623"]],[21,24,["H2472"]],[24,26,["H4945"]],[26,29,["H644"]],[29,32,["H4428"]],[32,34,["H4714"]],[34,35,["H834"]],[35,37,["H631"]],[37,40,["H1004","H5470"]]]},{"k":1178,"v":[[0,2,["H3130"]],[2,4,["H935"]],[4,5,["H413"]],[5,9,["H1242"]],[9,12,["H7200"]],[12,15,["H2009"]],[15,18,["H2196"]]]},{"k":1179,"v":[[0,3,["H7592","(H853)"]],[3,4,["H6547"]],[4,5,["H5631"]],[5,6,["H834"]],[6,8,["H854"]],[8,12,["H4929"]],[12,15,["H113"]],[15,16,["H1004"]],[16,17,["H559"]],[17,18,["H4069"]],[18,19,["H6440"]],[19,22,["H7451"]],[22,24,["H3117"]]]},{"k":1180,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,8,["H2492"]],[8,10,["H2472"]],[10,14,["H369"]],[14,15,["H6622"]],[15,19,["H3130"]],[19,20,["H559"]],[20,21,["H413"]],[21,24,["H3808"]],[24,25,["H6623"]],[25,28,["H430"]],[28,29,["H5608"]],[29,34,["H4994"]]]},{"k":1181,"v":[[0,3,["H8269"]],[3,4,["H4945"]],[4,5,["H5608","(H853)"]],[5,7,["H2472"]],[7,9,["H3130"]],[9,11,["H559"]],[11,16,["H2472"]],[16,17,["H2009"]],[17,19,["H1612"]],[19,21,["H6440"]],[21,22,[]]]},{"k":1182,"v":[[0,4,["H1612"]],[4,6,["H7969"]],[6,7,["H8299"]],[7,14,["H6524"]],[14,16,["H1931"]],[16,17,["H5322"]],[17,19,["H5927"]],[19,22,["H811"]],[22,25,["H1310"]],[25,27,["H6025"]]]},{"k":1183,"v":[[0,2,["H6547"]],[2,3,["H3563"]],[3,7,["H3027"]],[7,10,["H3947","(H853)"]],[10,12,["H6025"]],[12,14,["H7818"]],[14,16,["H413"]],[16,17,["H6547"]],[17,18,["H3563"]],[18,21,["H5414","(H853)"]],[21,23,["H3563"]],[23,24,["H5921"]],[24,25,["H6547"]],[25,26,["H3709"]]]},{"k":1184,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,6,["H2088"]],[6,9,["H6623"]],[9,13,["H7969"]],[13,14,["H8299"]],[14,16,["H7969"]],[16,17,["H3117"]]]},{"k":1185,"v":[[0,1,["H5750"]],[1,3,["H7969"]],[3,4,["H3117"]],[4,6,["H6547"]],[6,8,["H5375","(H853)"]],[8,10,["H7218"]],[10,12,["H7725"]],[12,14,["H5921"]],[14,16,["H3653"]],[16,20,["H5414"]],[20,21,["H6547"]],[21,22,["H3563"]],[22,25,["H3027"]],[25,28,["H7223"]],[28,29,["H4941"]],[29,30,["H834"]],[30,32,["H1961"]],[32,34,["H4945"]]]},{"k":1186,"v":[[0,1,["H3588","H518"]],[1,3,["H2142"]],[3,5,["H834"]],[5,9,["H3190"]],[9,13,["H6213"]],[13,14,["H2617"]],[14,17,["H4994"]],[17,18,["H5973"]],[18,22,["H2142"]],[22,25,["H413"]],[25,26,["H6547"]],[26,30,["H3318"]],[30,31,["H4480"]],[31,32,["H2088"]],[32,33,["H1004"]]]},{"k":1187,"v":[[0,1,["H3588"]],[1,6,["H1589","H1589"]],[6,10,["H4480","H776"]],[10,13,["H5680"]],[13,15,["H6311"]],[15,16,["H1571"]],[16,19,["H6213"]],[19,20,["H3808","H3972"]],[20,21,["H3588"]],[21,24,["H7760"]],[24,28,["H953"]]]},{"k":1188,"v":[[0,3,["H8269"]],[3,4,["H644"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,8,["H6622"]],[8,10,["H2896"]],[10,12,["H559"]],[12,13,["H413"]],[13,14,["H3130"]],[14,15,["H589"]],[15,16,["H637"]],[16,20,["H2472"]],[20,22,["H2009"]],[22,25,["H7969"]],[25,26,["H2751"]],[26,27,["H5536"]],[27,28,["H5921"]],[28,30,["H7218"]]]},{"k":1189,"v":[[0,4,["H5945"]],[4,5,["H5536"]],[5,10,["H4480","H3605"]],[10,12,["H3978","H4639","H644"]],[12,14,["H6547"]],[14,17,["H5775"]],[17,19,["H398"]],[19,22,["H4480"]],[22,24,["H5536"]],[24,25,["H4480","H5921"]],[25,27,["H7218"]]]},{"k":1190,"v":[[0,2,["H3130"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H2088"]],[6,9,["H6623"]],[9,12,["H7969"]],[12,13,["H5536"]],[13,15,["H7969"]],[15,16,["H3117"]]]},{"k":1191,"v":[[0,1,["H5750"]],[1,3,["H7969"]],[3,4,["H3117"]],[4,6,["H6547"]],[6,8,["H5375","(H853)"]],[8,10,["H7218"]],[10,12,["H4480","H5921"]],[12,16,["H8518"]],[16,18,["H5921"]],[18,20,["H6086"]],[20,23,["H5775"]],[23,25,["H398","(H853)"]],[25,27,["H1320"]],[27,29,["H4480","H5921"]],[29,30,[]]]},{"k":1192,"v":[[0,5,["H1961"]],[5,7,["H7992"]],[7,8,["H3117"]],[8,10,["(H853)"]],[10,11,["H6547"]],[11,12,["H3117","H3205"]],[12,15,["H6213"]],[15,17,["H4960"]],[17,19,["H3605"]],[19,21,["H5650"]],[21,25,["H5375","(H853)"]],[25,27,["H7218"]],[27,30,["H8269"]],[30,31,["H4945"]],[31,35,["H8269"]],[35,36,["H644"]],[36,37,["H8432"]],[37,39,["H5650"]]]},{"k":1193,"v":[[0,3,["H7725","(H853)"]],[3,5,["H8269"]],[5,6,["H4945"]],[6,7,["H5921"]],[7,9,["H4945"]],[9,13,["H5414"]],[13,15,["H3563"]],[15,16,["H5921"]],[16,17,["H6547"]],[17,18,["H3709"]]]},{"k":1194,"v":[[0,3,["H8518"]],[3,5,["H8269"]],[5,6,["H644"]],[6,7,["H834"]],[7,8,["H3130"]],[8,10,["H6622"]],[10,12,[]]]},{"k":1195,"v":[[0,3,["H3808"]],[3,5,["H8269"]],[5,6,["H4945"]],[6,7,["H2142","(H853)"]],[7,8,["H3130"]],[8,10,["H7911"]],[10,11,[]]]},{"k":1196,"v":[[0,5,["H1961"]],[5,8,["H4480","H7093"]],[8,12,["H8141","H3117"]],[12,14,["H6547"]],[14,15,["H2492"]],[15,17,["H2009"]],[17,19,["H5975"]],[19,20,["H5921"]],[20,22,["H2975"]]]},{"k":1197,"v":[[0,2,["H2009"]],[2,5,["H5927"]],[5,7,["H4480"]],[7,9,["H2975"]],[9,10,["H7651"]],[10,11,["H3303"]],[11,12,["H4758"]],[12,13,["H6510"]],[13,15,["H1277","H1320"]],[15,18,["H7462"]],[18,21,["H260"]]]},{"k":1198,"v":[[0,2,["H2009"]],[2,3,["H7651"]],[3,4,["H312"]],[4,5,["H6510"]],[5,7,["H5927"]],[7,8,["H310"]],[8,11,["H4480"]],[11,13,["H2975"]],[13,14,["H7451"]],[14,15,["H4758"]],[15,17,["H1851","H1320"]],[17,19,["H5975"]],[19,20,["H681"]],[20,23,["H6510"]],[23,24,["H5921"]],[24,26,["H8193"]],[26,29,["H2975"]]]},{"k":1199,"v":[[0,3,["H7451"]],[3,4,["H4758"]],[4,6,["H1851","H1320"]],[6,7,["H6510"]],[7,10,["H398","(H853)"]],[10,12,["H7651"]],[12,13,["H3303"]],[13,14,["H4758"]],[14,16,["H1277"]],[16,17,["H6510"]],[17,19,["H6547"]],[19,20,["H3364"]]]},{"k":1200,"v":[[0,3,["H3462"]],[3,5,["H2492"]],[5,8,["H8145"]],[8,10,["H2009"]],[10,11,["H7651"]],[11,14,["H7641"]],[14,16,["H5927"]],[16,18,["H259"]],[18,19,["H7070"]],[19,20,["H1277"]],[20,22,["H2896"]]]},{"k":1201,"v":[[0,2,["H2009"]],[2,3,["H7651"]],[3,4,["H1851"]],[4,5,["H7641"]],[5,7,["H7710"]],[7,11,["H6921"]],[11,13,["H6779"]],[13,14,["H310"]],[14,15,[]]]},{"k":1202,"v":[[0,4,["H1851"]],[4,5,["H7641"]],[5,6,["H1104","(H853)"]],[6,8,["H7651"]],[8,9,["H1277"]],[9,11,["H4392"]],[11,12,["H7641"]],[12,14,["H6547"]],[14,15,["H3364"]],[15,17,["H2009"]],[17,21,["H2472"]]]},{"k":1203,"v":[[0,5,["H1961"]],[5,8,["H1242"]],[8,11,["H7307"]],[11,13,["H6470"]],[13,16,["H7971"]],[16,19,["H7121","(H853)"]],[19,20,["H3605"]],[20,22,["H2748"]],[22,24,["H4714"]],[24,26,["H3605"]],[26,29,["H2450"]],[29,32,["H6547"]],[32,33,["H5608"]],[33,34,["(H853)"]],[34,36,["H2472"]],[36,40,["H369"]],[40,43,["H6622"]],[43,46,["H6547"]]]},{"k":1204,"v":[[0,2,["H1696"]],[2,4,["H8269"]],[4,5,["H4945","(H853)"]],[5,7,["H6547"]],[7,8,["H559"]],[8,9,["H589"]],[9,11,["H2142","(H853)"]],[11,13,["H2399"]],[13,15,["H3117"]]]},{"k":1205,"v":[[0,1,["H6547"]],[1,3,["H7107"]],[3,4,["H5921"]],[4,6,["H5650"]],[6,8,["H5414"]],[8,11,["H4929"]],[11,14,["H8269"]],[14,17,["H2876"]],[17,18,["H1004"]],[18,23,["H8269"]],[23,24,["H644"]]]},{"k":1206,"v":[[0,3,["H2492"]],[3,5,["H2472"]],[5,7,["H259"]],[7,8,["H3915"]],[8,9,["H589"]],[9,11,["H1931"]],[11,13,["H2492"]],[13,15,["H376"]],[15,19,["H6623"]],[19,22,["H2472"]]]},{"k":1207,"v":[[0,4,["H8033"]],[4,5,["H854"]],[5,9,["H5288"]],[9,11,["H5680"]],[11,12,["H5650"]],[12,15,["H8269"]],[15,18,["H2876"]],[18,21,["H5608"]],[21,25,["H6622"]],[25,27,["(H853)"]],[27,29,["H2472"]],[29,32,["H376"]],[32,36,["H2472"]],[36,39,["H6622"]]]},{"k":1208,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,8,["H6622"]],[8,11,["H3651"]],[11,13,["H1961"]],[13,16,["H7725"]],[16,17,["H5921"]],[17,19,["H3653"]],[19,23,["H8518"]]]},{"k":1209,"v":[[0,2,["H6547"]],[2,3,["H7971"]],[3,5,["H7121","(H853)"]],[5,6,["H3130"]],[6,11,["H7323"]],[11,13,["H4480"]],[13,15,["H953"]],[15,18,["H1548"]],[18,21,["H2498"]],[21,23,["H8071"]],[23,26,["H935"]],[26,27,["H413"]],[27,28,["H6547"]]]},{"k":1210,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,8,["H2492"]],[8,10,["H2472"]],[10,14,["H369"]],[14,17,["H6622"]],[17,20,["H589"]],[20,22,["H8085"]],[22,23,["H559"]],[23,24,["H5921"]],[24,29,["H8085"]],[29,31,["H2472"]],[31,33,["H6622"]],[33,34,[]]]},{"k":1211,"v":[[0,2,["H3130"]],[2,3,["H6030","(H853)"]],[3,4,["H6547"]],[4,5,["H559"]],[5,9,["H1107"]],[9,11,["H430"]],[11,16,["H6030","H6547"]],[16,17,["(H853)"]],[17,18,["H7965"]]]},{"k":1212,"v":[[0,2,["H6547"]],[2,3,["H1696"]],[3,4,["H413"]],[4,5,["H3130"]],[5,8,["H2472"]],[8,9,["H2009"]],[9,11,["H5975"]],[11,12,["H5921"]],[12,14,["H8193"]],[14,17,["H2975"]]]},{"k":1213,"v":[[0,2,["H2009"]],[2,5,["H5927"]],[5,7,["H4480"]],[7,9,["H2975"]],[9,10,["H7651"]],[10,11,["H6510"]],[11,12,["H1277","H1320"]],[12,14,["H3303"]],[14,15,["H8389"]],[15,18,["H7462"]],[18,21,["H260"]]]},{"k":1214,"v":[[0,2,["H2009"]],[2,3,["H7651"]],[3,4,["H312"]],[4,5,["H6510"]],[5,7,["H5927"]],[7,8,["H310"]],[8,10,["H1800"]],[10,12,["H3966"]],[12,13,["H7451"]],[13,14,["H8389"]],[14,16,["H7534","H1320"]],[16,17,["H2007"]],[17,20,["H3808"]],[20,21,["H7200"]],[21,23,["H3605"]],[23,25,["H776"]],[25,27,["H4714"]],[27,29,["H7455"]]]},{"k":1215,"v":[[0,3,["H7534"]],[3,7,["H7451"]],[7,8,["H6510"]],[8,11,["H398","(H853)"]],[11,13,["H7223"]],[13,14,["H7651"]],[14,15,["H1277"]],[15,16,["H6510"]]]},{"k":1216,"v":[[0,7,["H935","H413","H7130"]],[7,10,["H3808"]],[10,12,["H3045"]],[12,13,["H3588"]],[13,16,["H935","H413","H7130"]],[16,23,["H4758","H7451"]],[23,24,["H834"]],[24,27,["H8462"]],[27,30,["H3364"]]]},{"k":1217,"v":[[0,3,["H7200"]],[3,6,["H2472"]],[6,8,["H2009"]],[8,9,["H7651"]],[9,10,["H7641"]],[10,12,["H5927"]],[12,14,["H259"]],[14,15,["H7070"]],[15,16,["H4392"]],[16,18,["H2896"]]]},{"k":1218,"v":[[0,2,["H2009"]],[2,3,["H7651"]],[3,4,["H7641"]],[4,5,["H6798"]],[5,6,["H1851"]],[6,8,["H7710"]],[8,12,["H6921"]],[12,14,["H6779"]],[14,15,["H310"]],[15,16,[]]]},{"k":1219,"v":[[0,3,["H1851"]],[3,4,["H7641"]],[4,5,["H1104","(H853)"]],[5,7,["H7651"]],[7,8,["H2896"]],[8,9,["H7641"]],[9,12,["H559"]],[12,14,["H413"]],[14,16,["H2748"]],[16,20,["H369"]],[20,23,["H5046"]],[23,26,[]]]},{"k":1220,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H6547"]],[5,7,["H2472"]],[7,9,["H6547"]],[9,11,["H259"]],[11,12,["H430"]],[12,14,["H5046"]],[14,15,["H6547","(H853)"]],[15,16,["H834"]],[16,21,["H6213"]]]},{"k":1221,"v":[[0,2,["H7651"]],[2,3,["H2896"]],[3,4,["H6510"]],[4,6,["H7651"]],[6,7,["H8141"]],[7,10,["H7651"]],[10,11,["H2896"]],[11,12,["H7641"]],[12,14,["H7651"]],[14,15,["H8141"]],[15,17,["H2472"]],[17,19,["H259"]]]},{"k":1222,"v":[[0,3,["H7651"]],[3,4,["H7534"]],[4,7,["H7451"]],[7,8,["H6510"]],[8,11,["H5927"]],[11,12,["H310"]],[12,15,["H7651"]],[15,16,["H8141"]],[16,19,["H7651"]],[19,20,["H7386"]],[20,21,["H7641"]],[21,22,["H7710"]],[22,26,["H6921"]],[26,28,["H1961"]],[28,29,["H7651"]],[29,30,["H8141"]],[30,32,["H7458"]]]},{"k":1223,"v":[[0,1,["H1931"]],[1,4,["H1697"]],[4,5,["H834"]],[5,8,["H1696"]],[8,9,["H413"]],[9,10,["H6547"]],[10,11,["H834"]],[11,12,["H430"]],[12,16,["H6213"]],[16,18,["H7200","(H853)"]],[18,20,["H6547"]]]},{"k":1224,"v":[[0,1,["H2009"]],[1,3,["H935"]],[3,4,["H7651"]],[4,5,["H8141"]],[5,7,["H1419"]],[7,8,["H7647"]],[8,10,["H3605"]],[10,12,["H776"]],[12,14,["H4714"]]]},{"k":1225,"v":[[0,4,["H6965"]],[4,5,["H310"]],[5,7,["H7651"]],[7,8,["H8141"]],[8,10,["H7458"]],[10,12,["H3605"]],[12,14,["H7647"]],[14,17,["H7911"]],[17,20,["H776"]],[20,22,["H4714"]],[22,25,["H7458"]],[25,27,["H3615","(H853)"]],[27,29,["H776"]]]},{"k":1226,"v":[[0,3,["H7647"]],[3,5,["H3808"]],[5,7,["H3045"]],[7,10,["H776"]],[10,13,["H4480","H6440"]],[13,14,["H1931"]],[14,15,["H7458"]],[15,16,["H310","H3651"]],[16,17,["H3588"]],[17,18,["H1931"]],[18,21,["H3966"]],[21,22,["H3515"]]]},{"k":1227,"v":[[0,2,["H5921"]],[2,5,["H2472"]],[5,7,["H8138"]],[7,8,["H413"]],[8,9,["H6547"]],[9,10,["H6471"]],[10,13,["H3588"]],[13,15,["H1697"]],[15,17,["H3559"]],[17,18,["H4480","H5973"]],[18,19,["H430"]],[19,21,["H430"]],[21,23,["H4116"]],[23,27,["H6213"]]]},{"k":1228,"v":[[0,1,["H6258"]],[1,4,["H6547"]],[4,6,["H7200"]],[6,8,["H376"]],[8,9,["H995"]],[9,11,["H2450"]],[11,13,["H7896"]],[13,15,["H5921"]],[15,17,["H776"]],[17,19,["H4714"]]]},{"k":1229,"v":[[0,2,["H6547"]],[2,3,["H6213"]],[3,8,["H6485"]],[8,9,["H6496"]],[9,10,["H5921"]],[10,12,["H776"]],[12,18,["H2567"]],[18,19,["(H853)"]],[19,21,["H776"]],[21,23,["H4714"]],[23,26,["H7651"]],[26,27,["H7647"]],[27,28,["H8141"]]]},{"k":1230,"v":[[0,4,["H6908","(H853)"]],[4,5,["H3605"]],[5,7,["H400"]],[7,9,["H428"]],[9,10,["H2896"]],[10,11,["H8141"]],[11,13,["H935"]],[13,16,["H6651"]],[16,17,["H1250"]],[17,18,["H8478"]],[18,20,["H3027"]],[20,22,["H6547"]],[22,26,["H8104"]],[26,27,["H400"]],[27,30,["H5892"]]]},{"k":1231,"v":[[0,3,["H400"]],[3,5,["H1961"]],[5,7,["H6487"]],[7,10,["H776"]],[10,13,["H7651"]],[13,14,["H8141"]],[14,16,["H7458"]],[16,17,["H834"]],[17,19,["H1961"]],[19,22,["H776"]],[22,24,["H4714"]],[24,27,["H776"]],[27,28,["H3772"]],[28,29,["H3808"]],[29,32,["H7458"]]]},{"k":1232,"v":[[0,3,["H1697"]],[3,5,["H3190"]],[5,8,["H5869"]],[8,10,["H6547"]],[10,14,["H5869"]],[14,16,["H3605"]],[16,18,["H5650"]]]},{"k":1233,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5650"]],[6,9,["H4672"]],[9,14,["H2088"]],[14,17,["H376"]],[17,19,["H834"]],[19,21,["H7307"]],[21,23,["H430"]],[23,24,[]]]},{"k":1234,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,6,["H310"]],[6,8,["H430"]],[8,10,["H3045"]],[10,11,["(H853)"]],[11,12,["H3605"]],[12,13,["H2063"]],[13,16,["H369"]],[16,18,["H995"]],[18,20,["H2450"]],[20,22,["H3644"]],[22,23,[]]]},{"k":1235,"v":[[0,1,["H859"]],[1,3,["H1961"]],[3,4,["H5921"]],[4,6,["H1004"]],[6,9,["H5921"]],[9,11,["H6310"]],[11,13,["H3605"]],[13,15,["H5971"]],[15,17,["H5401"]],[17,18,["H7535"]],[18,21,["H3678"]],[21,25,["H1431"]],[25,26,["H4480"]],[26,27,[]]]},{"k":1236,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,6,["H7200"]],[6,9,["H5414"]],[9,11,["H5921"]],[11,12,["H3605"]],[12,14,["H776"]],[14,16,["H4714"]]]},{"k":1237,"v":[[0,2,["H6547"]],[2,4,["H5493","(H853)"]],[4,6,["H2885"]],[6,7,["H4480","H5921"]],[7,9,["H3027"]],[9,11,["H5414"]],[11,13,["H5921"]],[13,14,["H3130"]],[14,15,["H3027"]],[15,17,["H3847"]],[17,20,["H899"]],[20,23,["H8336"]],[23,25,["H7760"]],[25,27,["H2091"]],[27,28,["H7242"]],[28,29,["H5921"]],[29,31,["H6677"]]]},{"k":1238,"v":[[0,6,["H7392"]],[6,9,["H4932"]],[9,10,["H4818"]],[10,11,["H834"]],[11,16,["H7121"]],[16,17,["H6440"]],[17,21,["H86"]],[21,24,["H5414"]],[24,27,["H5921"]],[27,28,["H3605"]],[28,30,["H776"]],[30,32,["H4714"]]]},{"k":1239,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,6,["H589"]],[6,8,["H6547"]],[8,10,["H1107"]],[10,13,["H3808"]],[13,14,["H376"]],[14,16,["H7311","(H853)"]],[16,18,["H3027"]],[18,20,["H7272"]],[20,22,["H3605"]],[22,24,["H776"]],[24,26,["H4714"]]]},{"k":1240,"v":[[0,2,["H6547"]],[2,3,["H7121"]],[3,4,["H3130"]],[4,5,["H8034"]],[5,6,["H6847"]],[6,9,["H5414"]],[9,12,["H802","(H853)"]],[12,13,["H621"]],[13,15,["H1323"]],[15,17,["H6319"]],[17,18,["H3548"]],[18,20,["H204"]],[20,22,["H3130"]],[22,24,["H3318"]],[24,25,["H5921"]],[25,28,["H776"]],[28,30,["H4714"]]]},{"k":1241,"v":[[0,2,["H3130"]],[2,4,["H7970"]],[4,5,["H8141"]],[5,6,["H1121"]],[6,9,["H5975"]],[9,10,["H6440"]],[10,11,["H6547"]],[11,12,["H4428"]],[12,14,["H4714"]],[14,16,["H3130"]],[16,18,["H3318"]],[18,21,["H4480","H6440"]],[21,23,["H6547"]],[23,25,["H5674"]],[25,27,["H3605"]],[27,29,["H776"]],[29,31,["H4714"]]]},{"k":1242,"v":[[0,4,["H7651"]],[4,5,["H7647"]],[5,6,["H8141"]],[6,8,["H776"]],[8,10,["H6213"]],[10,12,["H7062"]]]},{"k":1243,"v":[[0,4,["H6908","(H853)"]],[4,5,["H3605"]],[5,7,["H400"]],[7,10,["H7651"]],[10,11,["H8141"]],[11,12,["H834"]],[12,13,["H1961"]],[13,16,["H776"]],[16,18,["H4714"]],[18,21,["H5414"]],[21,23,["H400"]],[23,26,["H5892"]],[26,28,["H400"]],[28,31,["H7704"]],[31,32,["H834"]],[32,35,["H5439"]],[35,37,["H5892"]],[37,40,["H5414"]],[40,43,["H8432"]]]},{"k":1244,"v":[[0,2,["H3130"]],[2,3,["H6651"]],[3,4,["H1250"]],[4,7,["H2344"]],[7,10,["H3220"]],[10,11,["H3966"]],[11,12,["H7235"]],[12,13,["H5704"]],[13,15,["H2308"]],[15,16,["H5608"]],[16,17,["H3588"]],[17,20,["H369"]],[20,21,["H4557"]]]},{"k":1245,"v":[[0,3,["H3130"]],[3,5,["H3205"]],[5,6,["H8147"]],[6,7,["H1121"]],[7,8,["H2962"]],[8,10,["H8141"]],[10,12,["H7458"]],[12,13,["H935"]],[13,14,["H834"]],[14,15,["H621"]],[15,17,["H1323"]],[17,19,["H6319"]],[19,20,["H3548"]],[20,22,["H204"]],[22,23,["H3205"]],[23,25,[]]]},{"k":1246,"v":[[0,2,["H3130"]],[2,3,["H7121","(H853)"]],[3,5,["H8034"]],[5,8,["H1060"]],[8,9,["H4519"]],[9,10,["H3588"]],[10,11,["H430"]],[11,17,["H5382","(H853)"]],[17,18,["H3605"]],[18,20,["H5999"]],[20,22,["H3605"]],[22,24,["H1"]],[24,25,["H1004"]]]},{"k":1247,"v":[[0,3,["H8034"]],[3,6,["H8145"]],[6,7,["H7121"]],[7,9,["H669"]],[9,10,["H3588"]],[10,11,["H430"]],[11,17,["H6509"]],[17,20,["H776"]],[20,23,["H6040"]]]},{"k":1248,"v":[[0,3,["H7651"]],[3,4,["H8141"]],[4,6,["H7647"]],[6,7,["H834"]],[7,8,["H1961"]],[8,11,["H776"]],[11,13,["H4714"]],[13,15,["H3615"]]]},{"k":1249,"v":[[0,3,["H7651"]],[3,4,["H8141"]],[4,6,["H7458"]],[6,7,["H2490"]],[7,9,["H935"]],[9,11,["H834"]],[11,12,["H3130"]],[12,14,["H559"]],[14,17,["H7458"]],[17,18,["H1961"]],[18,20,["H3605"]],[20,21,["H776"]],[21,24,["H3605"]],[24,26,["H776"]],[26,28,["H4714"]],[28,30,["H1961"]],[30,31,["H3899"]]]},{"k":1250,"v":[[0,3,["H3605"]],[3,5,["H776"]],[5,7,["H4714"]],[7,9,["H7456"]],[9,11,["H5971"]],[11,12,["H6817"]],[12,13,["H413"]],[13,14,["H6547"]],[14,16,["H3899"]],[16,18,["H6547"]],[18,19,["H559"]],[19,21,["H3605"]],[21,23,["H4714"]],[23,24,["H1980"]],[24,25,["H413"]],[25,26,["H3130"]],[26,27,["H834"]],[27,29,["H559"]],[29,32,["H6213"]]]},{"k":1251,"v":[[0,3,["H7458"]],[3,4,["H1961"]],[4,5,["H5921"]],[5,6,["H3605"]],[6,8,["H6440"]],[8,11,["H776"]],[11,13,["H3130"]],[13,14,["H6605","(H853)"]],[14,15,["H3605"]],[15,17,["H834"]],[17,19,["H7666"]],[19,22,["H4714"]],[22,25,["H7458"]],[25,27,["H2388"]],[27,30,["H776"]],[30,32,["H4714"]]]},{"k":1252,"v":[[0,2,["H3605"]],[2,3,["H776"]],[3,4,["H935"]],[4,6,["H4714"]],[6,7,["H413"]],[7,8,["H3130"]],[8,11,["H7666"]],[11,13,["H3588"]],[13,16,["H7458"]],[16,19,["H2388"]],[19,21,["H3605"]],[21,22,["H776"]]]},{"k":1253,"v":[[0,3,["H3290"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,7,["H3426"]],[7,8,["H7668"]],[8,10,["H4714"]],[10,11,["H3290"]],[11,12,["H559"]],[12,15,["H1121"]],[15,16,["H4100"]],[16,22,["H7200"]]]},{"k":1254,"v":[[0,3,["H559"]],[3,4,["H2009"]],[4,7,["H8085"]],[7,8,["H3588"]],[8,10,["H3426"]],[10,11,["H7668"]],[11,13,["H4714"]],[13,16,["H3381"]],[16,17,["H8033"]],[17,19,["H7666"]],[19,23,["H4480","H8033"]],[23,27,["H2421"]],[27,29,["H3808"]],[29,30,["H4191"]]]},{"k":1255,"v":[[0,2,["H3130"]],[2,3,["H6235"]],[3,4,["H251"]],[4,6,["H3381"]],[6,8,["H7666"]],[8,9,["H1250"]],[9,11,["H4480","H4714"]]]},{"k":1256,"v":[[0,2,["H1144"]],[2,3,["H3130"]],[3,4,["H251"]],[4,5,["H3290"]],[5,6,["H7971"]],[6,7,["H3808"]],[7,8,["H854"]],[8,10,["H251"]],[10,11,["H3588"]],[11,13,["H559"]],[13,15,["H6435"]],[15,16,["H611"]],[16,17,["H7122"]],[17,18,[]]]},{"k":1257,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H935"]],[6,8,["H7666"]],[8,10,["H8432"]],[10,13,["H935"]],[13,14,["H3588"]],[14,16,["H7458"]],[16,17,["H1961"]],[17,20,["H776"]],[20,22,["H3667"]]]},{"k":1258,"v":[[0,2,["H3130"]],[2,5,["H7989"]],[5,6,["H5921"]],[6,8,["H776"]],[8,10,["H1931"]],[10,14,["H7666"]],[14,16,["H3605"]],[16,18,["H5971"]],[18,21,["H776"]],[21,23,["H3130"]],[23,24,["H251"]],[24,25,["H935"]],[25,29,["H7812"]],[29,34,["H639"]],[34,37,["H776"]]]},{"k":1259,"v":[[0,2,["H3130"]],[2,3,["H7200","(H853)"]],[3,5,["H251"]],[5,8,["H5234"]],[8,13,["H5234"]],[13,14,["H413"]],[14,17,["H1696"]],[17,18,["H7186"]],[18,19,["H854"]],[19,23,["H559"]],[23,24,["H413"]],[24,26,["H4480","H370"]],[26,27,["H935"]],[27,31,["H559"]],[31,34,["H4480","H776"]],[34,36,["H3667"]],[36,38,["H7666"]],[38,39,["H400"]]]},{"k":1260,"v":[[0,2,["H3130"]],[2,3,["H5234","(H853)"]],[3,5,["H251"]],[5,7,["H1992"]],[7,8,["H5234"]],[8,9,["H3808"]],[9,10,[]]]},{"k":1261,"v":[[0,2,["H3130"]],[2,3,["H2142","(H853)"]],[3,5,["H2472"]],[5,6,["H834"]],[6,8,["H2492"]],[8,12,["H559"]],[12,13,["H413"]],[13,15,["H859"]],[15,17,["H7270"]],[17,19,["H7200","(H853)"]],[19,21,["H6172"]],[21,24,["H776"]],[24,27,["H935"]]]},{"k":1262,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3808"]],[6,8,["H113"]],[8,11,["H7666"]],[11,12,["H400"]],[12,15,["H5650"]],[15,16,["H935"]]]},{"k":1263,"v":[[0,1,["H5168"]],[1,3,["H3605"]],[3,4,["H259"]],[4,5,["H376"]],[5,6,["H1121"]],[6,7,["H587"]],[7,9,["H3651"]],[9,12,["H5650"]],[12,13,["H1961"]],[13,14,["H3808"]],[14,15,["H7270"]]]},{"k":1264,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3808"]],[6,7,["H3588"]],[7,9,["H7200"]],[9,11,["H6172"]],[11,14,["H776"]],[14,17,["H935"]]]},{"k":1265,"v":[[0,3,["H559"]],[3,5,["H5650"]],[5,7,["H8147","H6240"]],[7,8,["H251"]],[8,10,["H1121"]],[10,12,["H259"]],[12,13,["H376"]],[13,16,["H776"]],[16,18,["H3667"]],[18,20,["H2009"]],[20,22,["H6996"]],[22,25,["H3117"]],[25,26,["H854"]],[26,28,["H1"]],[28,30,["H259"]],[30,32,["H369"]]]},{"k":1266,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1931"]],[6,9,["H834"]],[9,11,["H1696"]],[11,12,["H413"]],[12,14,["H559"]],[14,15,["H859"]],[15,17,["H7270"]]]},{"k":1267,"v":[[0,1,["H2063"]],[1,5,["H974"]],[5,8,["H2416"]],[8,10,["H6547"]],[10,15,["H3318"]],[15,16,["H4480","H2088"]],[16,17,["H3588","H518"]],[17,19,["H6996"]],[19,20,["H251"]],[20,21,["H935"]],[21,22,["H2008"]]]},{"k":1268,"v":[[0,1,["H7971"]],[1,2,["H259"]],[2,3,["H4480"]],[3,8,["H3947","(H853)"]],[8,10,["H251"]],[10,12,["H859"]],[12,17,["H631"]],[17,20,["H1697"]],[20,23,["H974"]],[23,28,["H571"]],[28,29,["H854"]],[29,32,["H518","H3808"]],[32,35,["H2416"]],[35,37,["H6547"]],[37,38,["H3588"]],[38,39,["H859"]],[39,41,["H7270"]]]},{"k":1269,"v":[[0,6,["H622","(H853)"]],[6,7,["H413"]],[7,8,["H4929"]],[8,9,["H7969"]],[9,10,["H3117"]]]},{"k":1270,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,7,["H7992"]],[7,8,["H3117"]],[8,9,["H2063"]],[9,10,["H6213"]],[10,12,["H2421"]],[12,14,["H589"]],[14,15,["H3373","(H853)"]],[15,16,["H430"]]]},{"k":1271,"v":[[0,1,["H518"]],[1,2,["H859"]],[2,4,["H3651"]],[4,7,["H259"]],[7,10,["H251"]],[10,12,["H631"]],[12,15,["H1004"]],[15,18,["H4929"]],[18,19,["H1980"]],[19,20,["H859"]],[20,21,["H935"]],[21,22,["H7668"]],[22,25,["H7459"]],[25,28,["H1004"]]]},{"k":1272,"v":[[0,2,["H935"]],[2,4,["H6996"]],[4,5,["H251"]],[5,6,["H413"]],[6,11,["H1697"]],[11,13,["H539"]],[13,17,["H3808"]],[17,18,["H4191"]],[18,21,["H6213"]],[21,22,["H3651"]]]},{"k":1273,"v":[[0,3,["H559"]],[3,4,["H376"]],[4,5,["H413"]],[5,6,["H251"]],[6,7,["H587"]],[7,9,["H61"]],[9,10,["H818"]],[10,11,["H5921"]],[11,13,["H251"]],[13,15,["H834"]],[15,17,["H7200"]],[17,19,["H6869"]],[19,22,["H5315"]],[22,25,["H2603","H413"]],[25,30,["H3808"]],[30,31,["H8085"]],[31,32,["H5921","H3651"]],[32,34,["H2063"]],[34,35,["H6869"]],[35,36,["H935"]],[36,37,["H413"]],[37,38,[]]]},{"k":1274,"v":[[0,2,["H7205"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H559"]],[6,8,["H3808"]],[8,9,["H413"]],[9,11,["H559"]],[11,13,["H408"]],[13,14,["H2398"]],[14,17,["H3206"]],[17,21,["H3808"]],[21,22,["H8085"]],[22,24,["H2009"]],[24,25,["H1571"]],[25,27,["H1818"]],[27,29,["H1875"]]]},{"k":1275,"v":[[0,2,["H1992"]],[2,3,["H3045"]],[3,4,["H3808"]],[4,5,["H3588"]],[5,6,["H3130"]],[6,7,["H8085"]],[7,9,["H3588"]],[9,12,["H996"]],[12,16,["H3887"]]]},{"k":1276,"v":[[0,5,["H5437"]],[5,6,["H4480","H5921"]],[6,9,["H1058"]],[9,11,["H7725"]],[11,12,["H413"]],[12,16,["H1696"]],[16,17,["H413"]],[17,20,["H3947"]],[20,21,["H4480","H854"]],[21,22,["(H853)"]],[22,23,["H8095"]],[23,25,["H631"]],[25,29,["H5869"]]]},{"k":1277,"v":[[0,2,["H3130"]],[2,3,["H6680"]],[3,5,["H4390","(H853)"]],[5,7,["H3627"]],[7,9,["H1250"]],[9,12,["H7725"]],[12,14,["H376"]],[14,15,["H3701"]],[15,16,["H413"]],[16,18,["H8242"]],[18,21,["H5414"]],[21,23,["H6720"]],[23,26,["H1870"]],[26,28,["H3651"]],[28,29,["H6213"]],[29,32,[]]]},{"k":1278,"v":[[0,3,["H5375","H5921"]],[3,5,["H2543"]],[5,6,["(H853)"]],[6,8,["H7668"]],[8,10,["H1980"]],[10,11,["H4480","H8033"]]]},{"k":1279,"v":[[0,3,["H259"]],[3,6,["H6605","(H853)"]],[6,8,["H8242"]],[8,10,["H5414"]],[10,12,["H2543"]],[12,13,["H4554"]],[13,16,["H4411"]],[16,18,["H7200","(H853)"]],[18,20,["H3701"]],[20,22,["H2009"]],[22,23,["H1931"]],[23,27,["H572"]],[27,28,["H6310"]]]},{"k":1280,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H251"]],[6,8,["H3701"]],[8,10,["H7725"]],[10,12,["H2009"]],[12,15,["H1571"]],[15,18,["H572"]],[18,21,["H3820"]],[21,22,["H3318"]],[22,27,["H2729"]],[27,28,["H559"]],[28,29,["H376"]],[29,30,["H413"]],[30,31,["H251"]],[31,32,["H4100"]],[32,34,["H2063"]],[34,36,["H430"]],[36,38,["H6213"]],[38,40,[]]]},{"k":1281,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,5,["H3290"]],[5,7,["H1"]],[7,10,["H776"]],[10,12,["H3667"]],[12,14,["H5046"]],[14,15,["(H853)"]],[15,16,["H3605"]],[16,18,["H7136"]],[18,21,["H559"]]]},{"k":1282,"v":[[0,2,["H376"]],[2,6,["H113"]],[6,9,["H776"]],[9,10,["H1696"]],[10,11,["H7186"]],[11,12,["H854"]],[12,15,["H5414"]],[15,18,["H7270"]],[18,19,["(H853)"]],[19,21,["H776"]]]},{"k":1283,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H587"]],[6,8,["H3651"]],[8,11,["H1961"]],[11,12,["H3808"]],[12,13,["H7270"]]]},{"k":1284,"v":[[0,1,["H587"]],[1,3,["H8147","H6240"]],[3,4,["H251"]],[4,5,["H1121"]],[5,8,["H1"]],[8,9,["H259"]],[9,11,["H369"]],[11,14,["H6996"]],[14,17,["H3117"]],[17,18,["H854"]],[18,20,["H1"]],[20,23,["H776"]],[23,25,["H3667"]]]},{"k":1285,"v":[[0,3,["H376"]],[3,5,["H113"]],[5,8,["H776"]],[8,9,["H559"]],[9,10,["H413"]],[10,12,["H2063"]],[12,15,["H3045"]],[15,16,["H3588"]],[16,17,["H859"]],[17,19,["H3651"]],[19,21,["H5117"]],[21,22,["H259"]],[22,25,["H251"]],[25,27,["H854"]],[27,30,["H3947"]],[30,34,["H7459"]],[34,37,["H1004"]],[37,40,["H1980"]]]},{"k":1286,"v":[[0,2,["H935","(H853)"]],[2,4,["H6996"]],[4,5,["H251"]],[5,6,["H413"]],[6,11,["H3045"]],[11,12,["H3588"]],[12,13,["H859"]],[13,15,["H3808"]],[15,16,["H7270"]],[16,17,["H3588"]],[17,19,["H859"]],[19,21,["H3651"]],[21,26,["H5414"]],[26,27,["(H853)"]],[27,29,["H251"]],[29,33,["H5503"]],[33,36,["H776"]]]},{"k":1287,"v":[[0,5,["H1961"]],[5,7,["H1992"]],[7,8,["H7324"]],[8,10,["H8242"]],[10,12,["H2009"]],[12,14,["H376"]],[14,15,["H6872"]],[15,17,["H3701"]],[17,21,["H8242"]],[21,25,["H1992"]],[25,28,["H1"]],[28,29,["H7200","(H853)"]],[29,31,["H6872"]],[31,33,["H3701"]],[33,36,["H3372"]]]},{"k":1288,"v":[[0,2,["H3290"]],[2,4,["H1"]],[4,5,["H559"]],[5,6,["H413"]],[6,11,["H7921"]],[11,15,["H3130"]],[15,17,["H369"]],[17,19,["H8095"]],[19,21,["H369"]],[21,25,["H3947"]],[25,26,["H1144"]],[26,28,["H3605"]],[28,31,["H1961"]],[31,32,["H5921"]],[32,33,[]]]},{"k":1289,"v":[[0,2,["H7205"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1"]],[6,7,["H559"]],[7,8,["H4191","(H853)"]],[8,10,["H8147"]],[10,11,["H1121"]],[11,12,["H518"]],[12,14,["H935"]],[14,16,["H3808"]],[16,17,["H413"]],[17,19,["H5414"]],[19,21,["H5921"]],[21,23,["H3027"]],[23,25,["H589"]],[25,27,["H7725"]],[27,29,["H413"]],[29,31,[]]]},{"k":1290,"v":[[0,3,["H559"]],[3,5,["H1121"]],[5,7,["H3808"]],[7,9,["H3381"]],[9,10,["H5973"]],[10,12,["H3588"]],[12,14,["H251"]],[14,16,["H4191"]],[16,18,["H1931"]],[18,20,["H7604"]],[20,21,["H905"]],[21,23,["H611"]],[23,24,["H7122"]],[24,28,["H1870"]],[28,31,["H834"]],[31,33,["H1980"]],[33,38,["H3381","(H853)"]],[38,41,["H7872"]],[41,43,["H3015"]],[43,46,["H7585"]]]},{"k":1291,"v":[[0,3,["H7458"]],[3,5,["H3515"]],[5,8,["H776"]]]},{"k":1292,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,10,["H3615","H398","(H853)"]],[10,12,["H7668"]],[12,13,["H834"]],[13,16,["H935"]],[16,19,["H4480","H4714"]],[19,21,["H1"]],[21,22,["H559"]],[22,23,["H413"]],[23,26,["H7725"]],[26,27,["H7666"]],[27,30,["H4592"]],[30,31,["H400"]]]},{"k":1293,"v":[[0,2,["H3063"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H559"]],[6,8,["H376"]],[8,11,["H5749","H5749"]],[11,14,["H559"]],[14,17,["H3808"]],[17,18,["H7200"]],[18,20,["H6440"]],[20,21,["H1115"]],[21,23,["H251"]],[23,25,["H854"]],[25,26,[]]]},{"k":1294,"v":[[0,1,["H518"]],[1,3,["H3426"]],[3,4,["H7971","(H853)"]],[4,6,["H251"]],[6,7,["H854"]],[7,12,["H3381"]],[12,14,["H7666"]],[14,16,["H400"]]]},{"k":1295,"v":[[0,2,["H518"]],[2,5,["H369"]],[5,6,["H7971"]],[6,10,["H3808"]],[10,12,["H3381"]],[12,13,["H3588"]],[13,15,["H376"]],[15,16,["H559"]],[16,17,["H413"]],[17,21,["H3808"]],[21,22,["H7200"]],[22,24,["H6440"]],[24,25,["H1115"]],[25,27,["H251"]],[27,29,["H854"]],[29,30,[]]]},{"k":1296,"v":[[0,2,["H3478"]],[2,3,["H559"]],[3,4,["H4100"]],[4,8,["H7489"]],[8,13,["H5046"]],[13,15,["H376"]],[15,19,["H5750"]],[19,21,["H251"]]]},{"k":1297,"v":[[0,3,["H559"]],[3,5,["H376"]],[5,8,["H7592","H7592"]],[8,15,["H4138"]],[15,16,["H559"]],[16,19,["H1"]],[19,20,["H5750"]],[20,21,["H2416"]],[21,22,["H3426"]],[22,25,["H251"]],[25,28,["H5046"]],[28,31,["H5921"]],[31,33,["H6310"]],[33,35,["H428"]],[35,36,["H1697"]],[36,40,["H3045","H3045"]],[40,41,["H3588"]],[41,44,["H559"]],[44,48,["H3381","(H853)","H251"]]]},{"k":1298,"v":[[0,2,["H3063"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3478"]],[5,7,["H1"]],[7,8,["H7971"]],[8,10,["H5288"]],[10,11,["H854"]],[11,16,["H6965"]],[16,18,["H1980"]],[18,22,["H2421"]],[22,24,["H3808"]],[24,25,["H4191"]],[25,26,["H1571"]],[26,27,["H587"]],[27,28,["H1571"]],[28,29,["H859"]],[29,31,["H1571"]],[31,34,["H2945"]]]},{"k":1299,"v":[[0,1,["H595"]],[1,4,["H6148"]],[4,9,["H4480","H3027"]],[9,12,["H1245"]],[12,14,["H518"]],[14,16,["H935"]],[16,18,["H3808"]],[18,19,["H413"]],[19,22,["H3322"]],[22,24,["H6440"]],[24,31,["H2398"]],[31,33,["H3605","H3117"]]]},{"k":1300,"v":[[0,1,["H3588"]],[1,2,["H3884"]],[2,5,["H4102"]],[5,6,["H3588"]],[6,7,["H6258"]],[7,10,["H7725"]],[10,11,["H2088"]],[11,13,["H6471"]]]},{"k":1301,"v":[[0,3,["H1"]],[3,4,["H3478"]],[4,5,["H559"]],[5,6,["H413"]],[6,8,["H518"]],[8,12,["H3651"]],[12,13,["H645"]],[13,14,["H6213"]],[14,15,["H2063"]],[15,16,["H3947"]],[16,20,["H4480","H2173"]],[20,23,["H776"]],[23,26,["H3627"]],[26,29,["H3381"]],[29,31,["H376"]],[31,33,["H4503"]],[33,35,["H4592"]],[35,36,["H6875"]],[36,39,["H4592"]],[39,40,["H1706"]],[40,41,["H5219"]],[41,43,["H3910"]],[43,44,["H992"]],[44,46,["H8247"]]]},{"k":1302,"v":[[0,2,["H3947"]],[2,3,["H4932"]],[3,4,["H3701"]],[4,7,["H3027"]],[7,10,["H3701"]],[10,14,["H7725"]],[14,17,["H6310"]],[17,20,["H572"]],[20,23,["H7725"]],[23,26,["H3027"]],[26,27,["H194"]],[27,28,["H1931"]],[28,31,["H4870"]]]},{"k":1303,"v":[[0,1,["H3947"]],[1,4,["H251"]],[4,6,["H6965"]],[6,8,["H7725"]],[8,9,["H413"]],[9,11,["H376"]]]},{"k":1304,"v":[[0,2,["H410"]],[2,3,["H7706"]],[3,4,["H5414"]],[4,6,["H7356"]],[6,7,["H6440"]],[7,9,["H376"]],[9,14,["H7971","(H853)"]],[14,16,["H312"]],[16,17,["H251"]],[17,19,["H1144"]],[19,20,["H834"]],[20,21,["H589"]],[21,23,["H7921"]],[23,29,["H7921"]]]},{"k":1305,"v":[[0,3,["H376"]],[3,4,["H3947","(H853)"]],[4,5,["H2063"]],[5,6,["H4503"]],[6,9,["H3947"]],[9,10,["H4932"]],[10,11,["H3701"]],[11,14,["H3027"]],[14,16,["H1144"]],[16,19,["H6965"]],[19,22,["H3381"]],[22,24,["H4714"]],[24,26,["H5975"]],[26,27,["H6440"]],[27,28,["H3130"]]]},{"k":1306,"v":[[0,3,["H3130"]],[3,4,["H7200","(H853)"]],[4,5,["H1144"]],[5,6,["H854"]],[6,9,["H559"]],[9,13,["H834","H5921"]],[13,15,["H1004"]],[15,16,["H935","(H853)"]],[16,18,["H376"]],[18,19,["H1004"]],[19,21,["H2873","H2874"]],[21,24,["H3559"]],[24,25,["H3588"]],[25,27,["H376"]],[27,29,["H398"]],[29,30,["H854"]],[30,33,["H6672"]]]},{"k":1307,"v":[[0,3,["H376"]],[3,4,["H6213"]],[4,5,["H834"]],[5,6,["H3130"]],[6,7,["H559"]],[7,10,["H376"]],[10,11,["H935","(H853)"]],[11,13,["H376"]],[13,15,["H3130"]],[15,16,["H1004"]]]},{"k":1308,"v":[[0,3,["H376"]],[3,5,["H3372"]],[5,6,["H3588"]],[6,9,["H935"]],[9,11,["H3130"]],[11,12,["H1004"]],[12,15,["H559"]],[15,17,["H5921","H1697"]],[17,19,["H3701"]],[19,22,["H7725"]],[22,25,["H572"]],[25,29,["H8462"]],[29,31,["H587"]],[31,33,["H935"]],[33,38,["H1556"]],[38,39,["H5921"]],[39,42,["H5307"]],[42,43,["H5921"]],[43,46,["H3947"]],[46,49,["H5650"]],[49,52,["H2543"]]]},{"k":1309,"v":[[0,4,["H5066"]],[4,5,["H413"]],[5,7,["H376","H834","H5921"]],[7,9,["H3130"]],[9,10,["H1004"]],[10,13,["H1696"]],[13,14,["H413"]],[14,18,["H6607"]],[18,21,["H1004"]]]},{"k":1310,"v":[[0,2,["H559"]],[2,3,["H994"]],[3,4,["H113"]],[4,8,["H3381","H3381"]],[8,12,["H8462"]],[12,14,["H7666"]],[14,15,["H400"]]]},{"k":1311,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,8,["H935"]],[8,9,["H413"]],[9,11,["H4411"]],[11,14,["H6605","(H853)"]],[14,16,["H572"]],[16,18,["H2009"]],[18,20,["H376"]],[20,21,["H3701"]],[21,25,["H6310"]],[25,28,["H572"]],[28,30,["H3701"]],[30,33,["H4948"]],[33,39,["H7725","(H853)"]],[39,42,["H3027"]]]},{"k":1312,"v":[[0,2,["H312"]],[2,3,["H3701"]],[3,7,["H3381"]],[7,10,["H3027"]],[10,12,["H7666"]],[12,13,["H400"]],[13,15,["H3808"]],[15,16,["H3045"]],[16,17,["H4310"]],[17,18,["H7760"]],[18,20,["H3701"]],[20,23,["H572"]]]},{"k":1313,"v":[[0,3,["H559"]],[3,4,["H7965"]],[4,8,["H3372"]],[8,9,["H408"]],[9,11,["H430"]],[11,14,["H430"]],[14,17,["H1"]],[17,19,["H5414"]],[19,21,["H4301"]],[21,24,["H572"]],[24,26,["H935"]],[26,28,["H3701"]],[28,33,["H3318","(H853)","H8095"]],[33,34,["H413"]],[34,35,[]]]},{"k":1314,"v":[[0,3,["H376"]],[3,4,["H935","(H853)"]],[4,6,["H376"]],[6,8,["H3130"]],[8,9,["H1004"]],[9,11,["H5414"]],[11,13,["H4325"]],[13,16,["H7364"]],[16,18,["H7272"]],[18,21,["H5414"]],[21,23,["H2543"]],[23,24,["H4554"]]]},{"k":1315,"v":[[0,4,["H3559","(H853)"]],[4,6,["H4503"]],[6,7,["H5704"]],[7,8,["H3130"]],[8,9,["H935"]],[9,11,["H6672"]],[11,12,["H3588"]],[12,14,["H8085"]],[14,15,["H3588"]],[15,18,["H398"]],[18,19,["H3899"]],[19,20,["H8033"]]]},{"k":1316,"v":[[0,3,["H3130"]],[3,4,["H935"]],[4,5,["H1004"]],[5,7,["H935"]],[7,8,["(H853)"]],[8,10,["H4503"]],[10,11,["H834"]],[11,15,["H3027"]],[15,18,["H1004"]],[18,21,["H7812"]],[21,26,["H776"]]]},{"k":1317,"v":[[0,3,["H7592"]],[3,7,["H7965"]],[7,9,["H559"]],[9,12,["H1"]],[12,13,["H7965"]],[13,16,["H2205"]],[16,18,["H834"]],[18,20,["H559"]],[20,23,["H5750"]],[23,24,["H2416"]]]},{"k":1318,"v":[[0,3,["H559"]],[3,5,["H5650"]],[5,7,["H1"]],[7,11,["H7965"]],[11,14,["H5750"]],[14,15,["H2416"]],[15,21,["H6915"]],[21,24,["H7812"]]]},{"k":1319,"v":[[0,4,["H5375"]],[4,6,["H5869"]],[6,8,["H7200"]],[8,10,["H251","(H853)"]],[10,11,["H1144"]],[11,13,["H517"]],[13,14,["H1121"]],[14,16,["H559"]],[16,18,["H2088"]],[18,20,["H6996"]],[20,21,["H251"]],[21,23,["H834"]],[23,25,["H559"]],[25,26,["H413"]],[26,30,["H559"]],[30,31,["H430"]],[31,33,["H2603"]],[33,37,["H1121"]]]},{"k":1320,"v":[[0,2,["H3130"]],[2,4,["H4116"]],[4,5,["H3588"]],[5,7,["H7356"]],[7,9,["H3648"]],[9,10,["H413"]],[10,12,["H251"]],[12,15,["H1245"]],[15,18,["H1058"]],[18,22,["H935"]],[22,24,["H2315"]],[24,26,["H1058"]],[26,27,["H8033"]]]},{"k":1321,"v":[[0,3,["H7364"]],[3,5,["H6440"]],[5,8,["H3318"]],[8,11,["H662"]],[11,13,["H559"]],[13,15,["H7760"]],[15,16,["H3899"]]]},{"k":1322,"v":[[0,4,["H7760"]],[4,8,["H905"]],[8,13,["H905"]],[13,17,["H4713"]],[17,20,["H398"]],[20,21,["H854"]],[21,24,["H905"]],[24,25,["H3588"]],[25,27,["H4713"]],[27,28,["H3201"]],[28,29,["H3808"]],[29,30,["H398"]],[30,31,["H3899"]],[31,32,["H854"]],[32,34,["H5680"]],[34,35,["H3588"]],[35,36,["H1931"]],[36,39,["H8441"]],[39,42,["H4714"]]]},{"k":1323,"v":[[0,3,["H3427"]],[3,4,["H6440"]],[4,7,["H1060"]],[7,11,["H1062"]],[11,14,["H6810"]],[14,18,["H6812"]],[18,21,["H376"]],[21,22,["H8539"]],[22,23,["H376"]],[23,24,["H413"]],[24,25,["H7453"]]]},{"k":1324,"v":[[0,3,["H5375"]],[3,6,["H4864"]],[6,7,["H413"]],[7,9,["H4480","H854"]],[9,10,["H6440"]],[10,13,["H1144"]],[13,14,["H4864"]],[14,20,["H7235","H4480","H4864","H2568","H3027"]],[20,21,["H3605"]],[21,26,["H8354"]],[26,29,["H7937"]],[29,30,["H5973"]],[30,31,[]]]},{"k":1325,"v":[[0,3,["H6680","(H853)"]],[3,5,["H834","H5921"]],[5,8,["H1004"]],[8,9,["H559"]],[9,10,["H4390","(H853)"]],[10,12,["H376"]],[12,13,["H572"]],[13,15,["H400"]],[15,18,["H834"]],[18,20,["H3201"]],[20,21,["H5375"]],[21,23,["H7760"]],[23,25,["H376"]],[25,26,["H3701"]],[26,29,["H572"]],[29,30,["H6310"]]]},{"k":1326,"v":[[0,2,["H7760"]],[2,4,["H1375"]],[4,6,["H3701"]],[6,7,["H1375"]],[7,10,["H572"]],[10,11,["H6310"]],[11,14,["H6996"]],[14,17,["H7668"]],[17,18,["H3701"]],[18,21,["H6213"]],[21,25,["H1697"]],[25,26,["H834"]],[26,27,["H3130"]],[27,29,["H1696"]]]},{"k":1327,"v":[[0,5,["H1242"]],[5,7,["H215"]],[7,9,["H376"]],[9,12,["H7971"]],[12,13,["H1992"]],[13,16,["H2543"]]]},{"k":1328,"v":[[0,3,["H1992"]],[3,7,["H3318","(H853)"]],[7,9,["H5892"]],[9,11,["H3808"]],[11,14,["H7368"]],[14,15,["H3130"]],[15,16,["H559"]],[16,19,["H834","H5921","H1004"]],[19,20,["H6965"]],[20,21,["H7291"]],[21,22,["H310"]],[22,24,["H376"]],[24,29,["H5381"]],[29,31,["H559"]],[31,32,["H413"]],[32,34,["H4100"]],[34,37,["H7999"]],[37,38,["H7451"]],[38,39,["H8478"]],[39,40,["H2896"]]]},{"k":1329,"v":[[0,2,["H3808"]],[2,3,["H2088"]],[3,6,["H834"]],[6,8,["H113"]],[8,9,["H8354"]],[9,14,["H1931","H5172","H5172"]],[14,18,["H7489"]],[18,20,["H834"]],[20,21,["H6213"]]]},{"k":1330,"v":[[0,3,["H5381"]],[3,7,["H1696"]],[7,8,["H413"]],[8,9,["(H853)"]],[9,11,["H428"]],[11,12,["H1697"]]]},{"k":1331,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H4100"]],[6,7,["H1696"]],[7,9,["H113"]],[9,10,["H428"]],[10,11,["H1697"]],[11,13,["H2486"]],[13,16,["H5650"]],[16,18,["H4480","H6213"]],[18,21,["H2088"]],[21,22,["H1697"]]]},{"k":1332,"v":[[0,1,["H2005"]],[1,3,["H3701"]],[3,4,["H834"]],[4,6,["H4672"]],[6,9,["H572"]],[9,10,["H6310"]],[10,13,["H7725"]],[13,14,["H413"]],[14,19,["H4480","H776"]],[19,21,["H3667"]],[21,22,["H349"]],[22,26,["H1589"]],[26,31,["H4480","H1004","H113"]],[31,32,["H3701"]],[32,33,["H176"]],[33,34,["H2091"]]]},{"k":1333,"v":[[0,1,["H854"]],[1,2,["H834"]],[2,5,["H4480","H5650"]],[5,8,["H4672"]],[8,12,["H4191"]],[12,14,["H587"]],[14,15,["H1571"]],[15,17,["H1961"]],[17,19,["H113"]],[19,20,["H5650"]]]},{"k":1334,"v":[[0,3,["H559"]],[3,4,["H6258"]],[4,5,["H1571","H3651"]],[5,7,["H1931"]],[7,12,["H1697"]],[12,14,["H854"]],[14,15,["H834"]],[15,18,["H4672"]],[18,20,["H1961"]],[20,22,["H5650"]],[22,24,["H859"]],[24,26,["H1961"]],[26,27,["H5355"]]]},{"k":1335,"v":[[0,3,["H4116"]],[3,5,["H3381"]],[5,7,["H376","(H853)"]],[7,9,["H572"]],[9,12,["H776"]],[12,14,["H6605"]],[14,16,["H376"]],[16,18,["H572"]]]},{"k":1336,"v":[[0,3,["H2664"]],[3,5,["H2490"]],[5,8,["H1419"]],[8,10,["H3615"]],[10,13,["H6996"]],[13,16,["H1375"]],[16,18,["H4672"]],[18,20,["H1144"]],[20,21,["H572"]]]},{"k":1337,"v":[[0,3,["H7167"]],[3,5,["H8071"]],[5,7,["H6006"]],[7,9,["H376"]],[9,11,["H2543"]],[11,13,["H7725"]],[13,16,["H5892"]]]},{"k":1338,"v":[[0,2,["H3063"]],[2,5,["H251"]],[5,6,["H935"]],[6,8,["H3130"]],[8,9,["H1004"]],[9,11,["H1931"]],[11,13,["H5750"]],[13,14,["H8033"]],[14,17,["H5307"]],[17,18,["H6440"]],[18,22,["H776"]]]},{"k":1339,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,6,["H4100"]],[6,7,["H4639"]],[7,9,["H2088"]],[9,10,["H834"]],[10,13,["H6213"]],[13,14,["H3045"]],[14,16,["H3808"]],[16,17,["H3588"]],[17,20,["H376"]],[20,22,["H3644"]],[22,25,["H5172","H5172"]]]},{"k":1340,"v":[[0,2,["H3063"]],[2,3,["H559"]],[3,4,["H4100"]],[4,7,["H559"]],[7,10,["H113"]],[10,11,["H4100"]],[11,14,["H1696"]],[14,16,["H4100"]],[16,20,["H6663"]],[20,21,["H430"]],[21,24,["H4672","(H853)"]],[24,26,["H5771"]],[26,29,["H5650"]],[29,30,["H2009"]],[30,34,["H113"]],[34,35,["H5650"]],[35,36,["H1571"]],[36,37,["H587"]],[37,40,["H1571"]],[40,42,["H834","H3027"]],[42,44,["H1375"]],[44,46,["H4672"]]]},{"k":1341,"v":[[0,3,["H559"]],[3,5,["H2486"]],[5,9,["H4480","H6213"]],[9,10,["H2063"]],[10,13,["H376"]],[13,15,["H834"]],[15,16,["H3027"]],[16,18,["H1375"]],[18,20,["H4672"]],[20,21,["H1931"]],[21,23,["H1961"]],[23,25,["H5650"]],[25,29,["H859"]],[29,32,["H5927"]],[32,34,["H7965"]],[34,35,["H413"]],[35,37,["H1"]]]},{"k":1342,"v":[[0,2,["H3063"]],[2,4,["H5066"]],[4,6,["H413"]],[6,8,["H559"]],[8,9,["H994"]],[9,11,["H113"]],[11,14,["H5650"]],[14,17,["H4994"]],[17,18,["H1696"]],[18,20,["H1697"]],[20,23,["H113"]],[23,24,["H241"]],[24,27,["H408"]],[27,29,["H639"]],[29,30,["H2734"]],[30,33,["H5650"]],[33,34,["H3588"]],[34,38,["H3644"]],[38,39,["H6547"]]]},{"k":1343,"v":[[0,2,["H113"]],[2,3,["H7592","(H853)"]],[3,5,["H5650"]],[5,6,["H559"]],[6,7,["H3426"]],[7,10,["H1"]],[10,11,["H176"]],[11,13,["H251"]]]},{"k":1344,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H113"]],[6,8,["H3426"]],[8,10,["H1"]],[10,13,["H2205"]],[13,16,["H3206"]],[16,20,["H2208"]],[20,23,["H6996"]],[23,26,["H251"]],[26,28,["H4191"]],[28,30,["H1931"]],[30,31,["H905"]],[31,33,["H3498"]],[33,36,["H517"]],[36,39,["H1"]],[39,40,["H157"]],[40,41,[]]]},{"k":1345,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H5650"]],[6,9,["H3381"]],[9,10,["H413"]],[10,15,["H7760"]],[15,17,["H5869"]],[17,18,["H5921"]],[18,19,[]]]},{"k":1346,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H113"]],[6,8,["H5288"]],[8,9,["H3808","H3201"]],[9,10,["H5800","(H853)"]],[10,12,["H1"]],[12,17,["H5800","(H853)"]],[17,19,["H1"]],[19,23,["H4191"]]]},{"k":1347,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H5650"]],[6,7,["H518","H3808"]],[7,9,["H6996"]],[9,10,["H251"]],[10,12,["H3381"]],[12,13,["H854"]],[13,17,["H7200"]],[17,19,["H6440"]],[19,20,["H3808"]],[20,21,["H3254"]]]},{"k":1348,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,9,["H5927"]],[9,10,["H413"]],[10,12,["H5650"]],[12,14,["H1"]],[14,16,["H5046"]],[16,17,["(H853)"]],[17,19,["H1697"]],[19,22,["H113"]]]},{"k":1349,"v":[[0,3,["H1"]],[3,4,["H559"]],[4,6,["H7725"]],[6,8,["H7666"]],[8,11,["H4592"]],[11,12,["H400"]]]},{"k":1350,"v":[[0,3,["H559"]],[3,5,["H3808","H3201"]],[5,7,["H3381"]],[7,8,["H518"]],[8,10,["H6996"]],[10,11,["H251"]],[11,12,["H3426"]],[12,13,["H854"]],[13,19,["H3381"]],[19,20,["H3588"]],[20,22,["H3201"]],[22,23,["H3808"]],[23,24,["H7200"]],[24,26,["H376"]],[26,27,["H6440"]],[27,28,["H369"]],[28,30,["H6996"]],[30,31,["H251"]],[31,33,["H854"]],[33,34,[]]]},{"k":1351,"v":[[0,3,["H5650"]],[3,5,["H1"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H859"]],[9,10,["H3045"]],[10,11,["H3588"]],[11,13,["H802"]],[13,14,["H3205"]],[14,16,["H8147"]],[16,17,[]]]},{"k":1352,"v":[[0,3,["H259"]],[3,5,["H3318"]],[5,6,["H4480","H854"]],[6,10,["H559"]],[10,11,["H389"]],[11,16,["H2963","H2963"]],[16,19,["H7200"]],[19,21,["H3808"]],[21,22,["H5704","H2008"]]]},{"k":1353,"v":[[0,4,["H3947","(H853)"]],[4,5,["H2088"]],[5,6,["H1571"]],[6,7,["H4480","H5973"]],[7,8,["H6440"]],[8,10,["H611"]],[10,11,["H7136"]],[11,16,["H3381","(H853)"]],[16,19,["H7872"]],[19,21,["H7451"]],[21,24,["H7585"]]]},{"k":1354,"v":[[0,1,["H6258"]],[1,5,["H935"]],[5,6,["H413"]],[6,8,["H5650"]],[8,10,["H1"]],[10,13,["H5288"]],[13,15,["H369"]],[15,16,["H854"]],[16,21,["H5315"]],[21,24,["H7194"]],[24,28,["H5315"]]]},{"k":1355,"v":[[0,5,["H1961"]],[5,8,["H7200"]],[8,9,["H3588"]],[9,11,["H5288"]],[11,13,["H369"]],[13,19,["H4191"]],[19,22,["H5650"]],[22,25,["H3381","(H853)"]],[25,28,["H7872"]],[28,31,["H5650"]],[31,33,["H1"]],[33,35,["H3015"]],[35,38,["H7585"]]]},{"k":1356,"v":[[0,1,["H3588"]],[1,3,["H5650"]],[3,5,["H6148"]],[5,6,["(H853)"]],[6,8,["H5288"]],[8,9,["H4480","H5973"]],[9,11,["H1"]],[11,12,["H559"]],[12,13,["H518"]],[13,15,["H935"]],[15,17,["H3808"]],[17,18,["H413"]],[18,25,["H2398"]],[25,28,["H1"]],[28,30,["H3605","H3117"]]]},{"k":1357,"v":[[0,1,["H6258"]],[1,5,["H4994"]],[5,8,["H5650"]],[8,9,["H3427"]],[9,11,["H8478"]],[11,13,["H5288"]],[13,15,["H5650"]],[15,18,["H113"]],[18,22,["H5288"]],[22,24,["H5927"]],[24,25,["H5973"]],[25,27,["H251"]]]},{"k":1358,"v":[[0,1,["H3588"]],[1,2,["H349"]],[2,6,["H5927"]],[6,7,["H413"]],[7,9,["H1"]],[9,12,["H5288"]],[12,14,["H369"]],[14,15,["H854"]],[15,18,["H6435"]],[18,20,["H7200"]],[20,22,["H7451"]],[22,23,["H834"]],[23,26,["H4672","(H853)"]],[26,28,["H1"]]]},{"k":1359,"v":[[0,2,["H3130"]],[2,3,["H3201"]],[3,4,["H3808"]],[4,6,["H662"]],[6,8,["H3605"]],[8,11,["H5324"]],[11,12,["H5921"]],[12,16,["H7121"]],[16,18,["H3605"]],[18,19,["H376"]],[19,22,["H3318"]],[22,23,["H4480","H5921"]],[23,27,["H5975"]],[27,28,["H3808"]],[28,29,["H376"]],[29,30,["H854"]],[30,33,["H3130"]],[33,36,["H3045"]],[36,37,["H413"]],[37,39,["H251"]]]},{"k":1360,"v":[[0,4,["H5414","(H853)","H6963","H1065"]],[4,7,["H4714"]],[7,10,["H1004"]],[10,12,["H6547"]],[12,13,["H8085"]]]},{"k":1361,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H251"]],[6,7,["H589"]],[7,9,["H3130"]],[9,12,["H1"]],[12,13,["H5750"]],[13,14,["H2416"]],[14,17,["H251"]],[17,18,["H3201"]],[18,19,["H3808"]],[19,20,["H6030"]],[20,22,["H3588"]],[22,25,["H926"]],[25,28,["H4480","H6440"]]]},{"k":1362,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H251"]],[6,8,["H5066"]],[8,9,["H413"]],[9,13,["H4994"]],[13,17,["H5066"]],[17,20,["H559"]],[20,21,["H589"]],[21,23,["H3130"]],[23,25,["H251"]],[25,26,["H834"]],[26,28,["H4376"]],[28,30,["H4714"]]]},{"k":1363,"v":[[0,1,["H6258"]],[1,4,["H408"]],[4,5,["H6087"]],[5,6,["H408"]],[6,7,["H2734"]],[7,9,["H5869"]],[9,10,["H3588"]],[10,12,["H4376"]],[12,14,["H2008"]],[14,15,["H3588"]],[15,16,["H430"]],[16,18,["H7971"]],[18,20,["H6440"]],[20,24,["H4241"]]]},{"k":1364,"v":[[0,1,["H3588"]],[1,2,["H2088"]],[2,4,["H8141"]],[4,7,["H7458"]],[7,9,["H7130"]],[9,11,["H776"]],[11,13,["H5750"]],[13,16,["H2568"]],[16,17,["H8141"]],[17,20,["H834"]],[20,23,["H369"]],[23,25,["H2758"]],[25,27,["H7105"]]]},{"k":1365,"v":[[0,2,["H430"]],[2,3,["H7971"]],[3,5,["H6440"]],[5,8,["H7760"]],[8,11,["H7611"]],[11,14,["H776"]],[14,19,["H2421"]],[19,22,["H1419"]],[22,23,["H6413"]]]},{"k":1366,"v":[[0,2,["H6258"]],[2,5,["H3808"]],[5,6,["H859"]],[6,8,["H7971"]],[8,10,["H2008"]],[10,11,["H3588"]],[11,12,["H430"]],[12,16,["H7760"]],[16,19,["H1"]],[19,21,["H6547"]],[21,23,["H113"]],[23,25,["H3605"]],[25,27,["H1004"]],[27,30,["H4910"]],[30,32,["H3605"]],[32,34,["H776"]],[34,36,["H4714"]]]},{"k":1367,"v":[[0,1,["H4116"]],[1,5,["H5927"]],[5,6,["H413"]],[6,8,["H1"]],[8,10,["H559"]],[10,11,["H413"]],[11,13,["H3541"]],[13,14,["H559"]],[14,16,["H1121"]],[16,17,["H3130"]],[17,18,["H430"]],[18,20,["H7760"]],[20,22,["H113"]],[22,24,["H3605"]],[24,25,["H4714"]],[25,27,["H3381"]],[27,28,["H413"]],[28,30,["H5975"]],[30,31,["H408"]]]},{"k":1368,"v":[[0,4,["H3427"]],[4,7,["H776"]],[7,9,["H1657"]],[9,13,["H1961"]],[13,14,["H7138"]],[14,15,["H413"]],[15,17,["H859"]],[17,20,["H1121"]],[20,23,["H1121"]],[23,24,["H1121"]],[24,27,["H6629"]],[27,30,["H1241"]],[30,32,["H3605"]],[32,33,["H834"]],[33,35,[]]]},{"k":1369,"v":[[0,2,["H8033"]],[2,5,["H3557"]],[5,7,["H3588"]],[7,8,["H5750"]],[8,11,["H2568"]],[11,12,["H8141"]],[12,14,["H7458"]],[14,15,["H6435"]],[15,16,["H859"]],[16,19,["H1004"]],[19,21,["H3605"]],[21,22,["H834"]],[22,27,["H3423"]]]},{"k":1370,"v":[[0,2,["H2009"]],[2,4,["H5869"]],[4,5,["H7200"]],[5,8,["H5869"]],[8,11,["H251"]],[11,12,["H1144"]],[12,13,["H3588"]],[13,17,["H6310"]],[17,19,["H1696"]],[19,20,["H413"]],[20,21,[]]]},{"k":1371,"v":[[0,4,["H5046"]],[4,6,["H1"]],[6,7,["(H853)"]],[7,8,["H3605"]],[8,10,["H3519"]],[10,12,["H4714"]],[12,15,["H3605"]],[15,16,["H834"]],[16,19,["H7200"]],[19,23,["H4116"]],[23,26,["H3381","(H853)"]],[26,28,["H1"]],[28,29,["H2008"]]]},{"k":1372,"v":[[0,3,["H5307"]],[3,4,["H5921"]],[4,6,["H251"]],[6,7,["H1144"]],[7,8,["H6677"]],[8,10,["H1058"]],[10,12,["H1144"]],[12,13,["H1058"]],[13,14,["H5921"]],[14,16,["H6677"]]]},{"k":1373,"v":[[0,3,["H5401"]],[3,4,["H3605"]],[4,6,["H251"]],[6,8,["H1058"]],[8,9,["H5921"]],[9,12,["H310"]],[12,13,["H3651"]],[13,15,["H251"]],[15,16,["H1696"]],[16,17,["H854"]],[17,18,[]]]},{"k":1374,"v":[[0,3,["H6963"]],[3,6,["H8085"]],[6,8,["H6547"]],[8,9,["H1004"]],[9,10,["H559"]],[10,11,["H3130"]],[11,12,["H251"]],[12,14,["H935"]],[14,19,["H3190","H5869","H6547"]],[19,22,["H5650"]]]},{"k":1375,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H251"]],[9,10,["H2063"]],[10,11,["H6213"]],[11,13,["H2943","(H853)"]],[13,15,["H1165"]],[15,17,["H1980"]],[17,18,["H935"]],[18,22,["H776"]],[22,24,["H3667"]]]},{"k":1376,"v":[[0,2,["H3947","(H853)"]],[2,4,["H1"]],[4,7,["H1004"]],[7,9,["H935"]],[9,10,["H413"]],[10,15,["H5414"]],[15,16,["(H853)"]],[16,18,["H2898"]],[18,21,["H776"]],[21,23,["H4714"]],[23,27,["H398","(H853)"]],[27,29,["H2459"]],[29,32,["H776"]]]},{"k":1377,"v":[[0,2,["H859"]],[2,4,["H6680"]],[4,5,["H2063"]],[5,6,["H6213"]],[6,8,["H3947"]],[8,10,["H5699"]],[10,14,["H4480","H776"]],[14,16,["H4714"]],[16,20,["H2945"]],[20,24,["H802"]],[24,26,["H5375","(H853)"]],[26,28,["H1"]],[28,30,["H935"]]]},{"k":1378,"v":[[0,2,["H5869","H2347"]],[2,3,["H408"]],[3,5,["H3627"]],[5,6,["H3588"]],[6,8,["H2898"]],[8,10,["H3605"]],[10,12,["H776"]],[12,14,["H4714"]],[14,16,[]]]},{"k":1379,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,7,["H3651"]],[7,9,["H3130"]],[9,10,["H5414"]],[10,12,["H5699"]],[12,14,["H5921"]],[14,16,["H6310"]],[16,18,["H6547"]],[18,20,["H5414"]],[20,22,["H6720"]],[22,25,["H1870"]]]},{"k":1380,"v":[[0,2,["H3605"]],[2,6,["H5414"]],[6,8,["H376"]],[8,9,["H2487"]],[9,11,["H8071"]],[11,14,["H1144"]],[14,16,["H5414"]],[16,17,["H7969"]],[17,18,["H3967"]],[18,21,["H3701"]],[21,23,["H2568"]],[23,24,["H2487"]],[24,26,["H8071"]]]},{"k":1381,"v":[[0,4,["H1"]],[4,6,["H7971"]],[6,8,["H2063"]],[8,10,["H6235"]],[10,11,["H2543"]],[11,12,["H5375"]],[12,16,["H4480","H2898"]],[16,18,["H4714"]],[18,20,["H6235"]],[20,22,["H860"]],[22,23,["H5375"]],[23,25,["H1250"]],[25,27,["H3899"]],[27,29,["H4202"]],[29,32,["H1"]],[32,35,["H1870"]]]},{"k":1382,"v":[[0,3,["H7971","(H853)"]],[3,5,["H251"]],[5,9,["H1980"]],[9,12,["H559"]],[12,13,["H413"]],[13,20,["H7264","H408"]],[20,23,["H1870"]]]},{"k":1383,"v":[[0,4,["H5927"]],[4,7,["H4480","H4714"]],[7,9,["H935"]],[9,12,["H776"]],[12,14,["H3667"]],[14,15,["H413"]],[15,16,["H3290"]],[16,18,["H1"]]]},{"k":1384,"v":[[0,2,["H5046"]],[2,4,["H559"]],[4,5,["H3130"]],[5,7,["H5750"]],[7,8,["H2416"]],[8,10,["H1931"]],[10,12,["H4910"]],[12,14,["H3605"]],[14,16,["H776"]],[16,18,["H4714"]],[18,21,["H3820"]],[21,22,["H6313"]],[22,23,["H3588"]],[23,25,["H539"]],[25,27,["H3808"]]]},{"k":1385,"v":[[0,3,["H1696","H413"]],[3,4,["(H853)"]],[4,5,["H3605"]],[5,7,["H1697"]],[7,9,["H3130"]],[9,10,["H834"]],[10,13,["H1696"]],[13,14,["H413"]],[14,19,["H7200","(H853)"]],[19,21,["H5699"]],[21,22,["H834"]],[22,23,["H3130"]],[23,25,["H7971"]],[25,27,["H5375"]],[27,30,["H7307"]],[30,32,["H3290"]],[32,34,["H1"]],[34,35,["H2421"]]]},{"k":1386,"v":[[0,2,["H3478"]],[2,3,["H559"]],[3,6,["H7227"]],[6,7,["H3130"]],[7,9,["H1121"]],[9,11,["H5750"]],[11,12,["H2416"]],[12,15,["H1980"]],[15,17,["H7200"]],[17,19,["H2962"]],[19,21,["H4191"]]]},{"k":1387,"v":[[0,2,["H3478"]],[2,5,["H5265"]],[5,7,["H3605"]],[7,8,["H834"]],[8,12,["H935"]],[12,14,["H884"]],[14,16,["H2076"]],[16,17,["H2077"]],[17,20,["H430"]],[20,23,["H1"]],[23,24,["H3327"]]]},{"k":1388,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,5,["H3478"]],[5,8,["H4759"]],[8,11,["H3915"]],[11,13,["H559"]],[13,14,["H3290"]],[14,15,["H3290"]],[15,18,["H559"]],[18,19,["H2009"]],[19,21,[]]]},{"k":1389,"v":[[0,3,["H559"]],[3,4,["H595"]],[4,6,["H410"]],[6,8,["H430"]],[8,11,["H1"]],[11,12,["H3372"]],[12,13,["H408"]],[13,16,["H4480","H3381"]],[16,18,["H4714"]],[18,19,["H3588"]],[19,22,["H8033"]],[22,23,["H7760"]],[23,27,["H1419"]],[27,28,["H1471"]]]},{"k":1390,"v":[[0,1,["H595"]],[1,4,["H3381"]],[4,5,["H5973"]],[5,8,["H4714"]],[8,10,["H595"]],[10,12,["H1571"]],[12,16,["H5927","H5927"]],[16,19,["H3130"]],[19,21,["H7896"]],[21,23,["H3027"]],[23,24,["H5921"]],[24,26,["H5869"]]]},{"k":1391,"v":[[0,2,["H3290"]],[2,4,["H6965"]],[4,6,["H4480","H884"]],[6,9,["H1121"]],[9,11,["H3478"]],[11,12,["H5375","(H853)"]],[12,13,["H3290"]],[13,15,["H1"]],[15,19,["H2945"]],[19,22,["H802"]],[22,25,["H5699"]],[25,26,["H834"]],[26,27,["H6547"]],[27,29,["H7971"]],[29,31,["H5375"]],[31,32,[]]]},{"k":1392,"v":[[0,3,["H3947","(H853)"]],[3,5,["H4735"]],[5,8,["H7399"]],[8,9,["H834"]],[9,12,["H7408"]],[12,15,["H776"]],[15,17,["H3667"]],[17,19,["H935"]],[19,21,["H4714"]],[21,22,["H3290"]],[22,24,["H3605"]],[24,26,["H2233"]],[26,27,["H854"]],[27,28,[]]]},{"k":1393,"v":[[0,2,["H1121"]],[2,5,["H1121"]],[5,6,["H1121"]],[6,7,["H854"]],[7,10,["H1323"]],[10,13,["H1121"]],[13,14,["H1323"]],[14,16,["H3605"]],[16,18,["H2233"]],[18,19,["H935"]],[19,21,["H854"]],[21,24,["H4714"]]]},{"k":1394,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H1121"]],[8,10,["H3478"]],[10,12,["H935"]],[12,14,["H4714"]],[14,15,["H3290"]],[15,18,["H1121"]],[18,19,["H7205"]],[19,20,["H3290"]],[20,21,["H1060"]]]},{"k":1395,"v":[[0,3,["H1121"]],[3,5,["H7205"]],[5,6,["H2585"]],[6,8,["H6396"]],[8,10,["H2696"]],[10,12,["H3756"]]]},{"k":1396,"v":[[0,3,["H1121"]],[3,5,["H8095"]],[5,6,["H3223"]],[6,8,["H3226"]],[8,10,["H161"]],[10,12,["H3199"]],[12,14,["H6714"]],[14,16,["H7586"]],[16,18,["H1121"]],[18,22,["H3669"]]]},{"k":1397,"v":[[0,3,["H1121"]],[3,5,["H3878"]],[5,6,["H1648"]],[6,7,["H6955"]],[7,9,["H4847"]]]},{"k":1398,"v":[[0,3,["H1121"]],[3,5,["H3063"]],[5,6,["H6147"]],[6,8,["H209"]],[8,10,["H7956"]],[10,12,["H6557"]],[12,14,["H2226"]],[14,16,["H6147"]],[16,18,["H209"]],[18,19,["H4191"]],[19,22,["H776"]],[22,24,["H3667"]],[24,27,["H1121"]],[27,29,["H6557"]],[29,30,["H1961"]],[30,31,["H2696"]],[31,33,["H2538"]]]},{"k":1399,"v":[[0,3,["H1121"]],[3,5,["H3485"]],[5,6,["H8439"]],[6,8,["H6312"]],[8,10,["H3102"]],[10,12,["H8110"]]]},{"k":1400,"v":[[0,3,["H1121"]],[3,5,["H2074"]],[5,6,["H5624"]],[6,8,["H356"]],[8,10,["H3177"]]]},{"k":1401,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H3812"]],[6,7,["H834"]],[7,9,["H3205"]],[9,11,["H3290"]],[11,13,["H6307"]],[13,14,["H854"]],[14,16,["H1323"]],[16,17,["H1783"]],[17,18,["H3605"]],[18,20,["H5315"]],[20,23,["H1121"]],[23,26,["H1323"]],[26,28,["H7970"]],[28,30,["H7969"]]]},{"k":1402,"v":[[0,3,["H1121"]],[3,5,["H1410"]],[5,6,["H6837"]],[6,8,["H2291"]],[8,9,["H7764"]],[9,11,["H675"]],[11,12,["H6179"]],[12,14,["H722"]],[14,16,["H692"]]]},{"k":1403,"v":[[0,3,["H1121"]],[3,5,["H836"]],[5,6,["H3232"]],[6,8,["H3438"]],[8,10,["H3440"]],[10,12,["H1283"]],[12,14,["H8294"]],[14,16,["H269"]],[16,19,["H1121"]],[19,21,["H1283"]],[21,22,["H2268"]],[22,24,["H4439"]]]},{"k":1404,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H2153"]],[6,7,["H834"]],[7,8,["H3837"]],[8,9,["H5414"]],[9,11,["H3812"]],[11,13,["H1323"]],[13,14,["(H853)"]],[14,15,["H428"]],[15,17,["H3205"]],[17,19,["H3290"]],[19,21,["H8337","H6240"]],[21,22,["H5315"]]]},{"k":1405,"v":[[0,2,["H1121"]],[2,4,["H7354"]],[4,5,["H3290"]],[5,6,["H802"]],[6,7,["H3130"]],[7,9,["H1144"]]]},{"k":1406,"v":[[0,3,["H3130"]],[3,6,["H776"]],[6,8,["H4714"]],[8,10,["H3205","(H853)"]],[10,11,["H4519"]],[11,13,["H669"]],[13,14,["H834"]],[14,15,["H621"]],[15,17,["H1323"]],[17,19,["H6319"]],[19,20,["H3548"]],[20,22,["H204"]],[22,23,["H3205"]],[23,25,[]]]},{"k":1407,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,7,["H1106"]],[7,9,["H1071"]],[9,11,["H788"]],[11,12,["H1617"]],[12,14,["H5283"]],[14,15,["H278"]],[15,17,["H7220"]],[17,18,["H4649"]],[18,20,["H2650"]],[20,22,["H714"]]]},{"k":1408,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H7354"]],[6,7,["H834"]],[7,9,["H3205"]],[9,11,["H3290"]],[11,12,["H3605"]],[12,14,["H5315"]],[14,16,["H702","H6240"]]]},{"k":1409,"v":[[0,3,["H1121"]],[3,5,["H1835"]],[5,6,["H2366"]]]},{"k":1410,"v":[[0,3,["H1121"]],[3,5,["H5321"]],[5,6,["H3183"]],[6,8,["H1476"]],[8,10,["H3337"]],[10,12,["H8006"]]]},{"k":1411,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H1090"]],[6,7,["H834"]],[7,8,["H3837"]],[8,9,["H5414"]],[9,11,["H7354"]],[11,13,["H1323"]],[13,16,["H3205","(H853)"]],[16,17,["H428"]],[17,19,["H3290"]],[19,20,["H3605"]],[20,22,["H5315"]],[22,24,["H7651"]]]},{"k":1412,"v":[[0,1,["H3605"]],[1,3,["H5315"]],[3,5,["H935"]],[5,7,["H3290"]],[7,9,["H4714"]],[9,12,["H3318"]],[12,15,["H3409"]],[15,16,["H4480","H905"]],[16,17,["H3290"]],[17,18,["H1121"]],[18,19,["H802"]],[19,20,["H3605"]],[20,22,["H5315"]],[22,24,["H8346"]],[24,26,["H8337"]]]},{"k":1413,"v":[[0,3,["H1121"]],[3,5,["H3130"]],[5,6,["H834"]],[6,8,["H3205"]],[8,11,["H4714"]],[11,13,["H8147"]],[13,14,["H5315"]],[14,15,["H3605"]],[15,17,["H5315"]],[17,20,["H1004"]],[20,22,["H3290"]],[22,24,["H935"]],[24,26,["H4714"]],[26,30,["H7657"]]]},{"k":1414,"v":[[0,3,["H7971"]],[3,4,["H3063"]],[4,5,["H6440"]],[5,7,["H413"]],[7,8,["H3130"]],[8,10,["H3384"]],[10,12,["H6440"]],[12,14,["H1657"]],[14,17,["H935"]],[17,20,["H776"]],[20,22,["H1657"]]]},{"k":1415,"v":[[0,2,["H3130"]],[2,4,["H631"]],[4,6,["H4818"]],[6,9,["H5927"]],[9,11,["H7125"]],[11,12,["H3478"]],[12,14,["H1"]],[14,16,["H1657"]],[16,19,["H7200"]],[19,20,["H413"]],[20,24,["H5307"]],[24,25,["H5921"]],[25,27,["H6677"]],[27,29,["H1058"]],[29,30,["H5921"]],[30,32,["H6677"]],[32,35,["H5750"]]]},{"k":1416,"v":[[0,2,["H3478"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,6,["H6471"]],[6,9,["H4191"]],[9,10,["H310"]],[10,13,["H7200","(H853)"]],[13,15,["H6440"]],[15,16,["H3588"]],[16,19,["H5750"]],[19,20,["H2416"]]]},{"k":1417,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H251"]],[6,8,["H413"]],[8,10,["H1"]],[10,11,["H1004"]],[11,15,["H5927"]],[15,17,["H5046"]],[17,18,["H6547"]],[18,20,["H559"]],[20,21,["H413"]],[21,24,["H251"]],[24,27,["H1"]],[27,28,["H1004"]],[28,29,["H834"]],[29,33,["H776"]],[33,35,["H3667"]],[35,37,["H935"]],[37,38,["H413"]],[38,39,[]]]},{"k":1418,"v":[[0,3,["H376"]],[3,5,["H7462","H6629"]],[5,6,["H3588"]],[6,8,["H376"]],[8,10,["H1961"]],[10,13,["H4735"]],[13,17,["H935"]],[17,19,["H6629"]],[19,22,["H1241"]],[22,24,["H3605"]],[24,25,["H834"]],[25,27,[]]]},{"k":1419,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,8,["H6547"]],[8,10,["H7121"]],[10,14,["H559"]],[14,15,["H4100"]],[15,18,["H4639"]]]},{"k":1420,"v":[[0,4,["H559"]],[4,6,["H5650"]],[6,7,["H376"]],[7,9,["H1961"]],[9,11,["H4735"]],[11,14,["H4480","H5271"]],[14,16,["H5704"]],[16,17,["H6258"]],[17,18,["H1571"]],[18,19,["H587"]],[19,21,["H1571"]],[21,23,["H1"]],[23,24,["H5668"]],[24,27,["H3427"]],[27,30,["H776"]],[30,32,["H1657"]],[32,33,["H3588"]],[33,34,["H3605"]],[34,35,["H7462","H6629"]],[35,38,["H8441"]],[38,41,["H4714"]]]},{"k":1421,"v":[[0,2,["H3130"]],[2,3,["H935"]],[3,5,["H5046"]],[5,6,["H6547"]],[6,8,["H559"]],[8,10,["H1"]],[10,13,["H251"]],[13,16,["H6629"]],[16,19,["H1241"]],[19,21,["H3605"]],[21,22,["H834"]],[22,26,["H935"]],[26,30,["H4480","H776"]],[30,32,["H3667"]],[32,34,["H2009"]],[34,39,["H776"]],[39,41,["H1657"]]]},{"k":1422,"v":[[0,3,["H3947"]],[3,4,["H4480","H7097"]],[4,7,["H251"]],[7,9,["H2568"]],[9,10,["H376"]],[10,12,["H3322"]],[12,14,["H6440"]],[14,15,["H6547"]]]},{"k":1423,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H251"]],[6,7,["H4100"]],[7,10,["H4639"]],[10,13,["H559"]],[13,14,["H413"]],[14,15,["H6547"]],[15,17,["H5650"]],[17,19,["H7462","H6629"]],[19,20,["H1571"]],[20,21,["H587"]],[21,23,["H1571"]],[23,25,["H1"]]]},{"k":1424,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,5,["H6547"]],[5,8,["H1481"]],[8,11,["H776"]],[11,14,["H935"]],[14,15,["H3588","H834"]],[15,17,["H5650"]],[17,19,["H369"]],[19,20,["H4829"]],[20,23,["H6629"]],[23,24,["H3588"]],[24,26,["H7458"]],[26,28,["H3515"]],[28,31,["H776"]],[31,33,["H3667"]],[33,34,["H6258"]],[34,38,["H4994"]],[38,41,["H5650"]],[41,42,["H3427"]],[42,45,["H776"]],[45,47,["H1657"]]]},{"k":1425,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,6,["H559"]],[6,8,["H1"]],[8,11,["H251"]],[11,13,["H935"]],[13,14,["H413"]],[14,15,[]]]},{"k":1426,"v":[[0,2,["H776"]],[2,4,["H4714"]],[4,6,["H6440"]],[6,10,["H4315"]],[10,13,["H776"]],[13,14,["(H853)"]],[14,16,["H1"]],[16,18,["H251"]],[18,20,["H3427"]],[20,23,["H776"]],[23,25,["H1657"]],[25,28,["H3427"]],[28,30,["H518"]],[30,32,["H3045"]],[32,34,["H376"]],[34,36,["H2428"]],[36,40,["H7760"]],[40,42,["H8269"]],[42,44,["H5921","H834"]],[44,45,["H4735"]]]},{"k":1427,"v":[[0,2,["H3130"]],[2,4,["H935","(H853)"]],[4,5,["H3290"]],[5,7,["H1"]],[7,9,["H5975"]],[9,11,["H6440"]],[11,12,["H6547"]],[12,14,["H3290"]],[14,15,["H1288","(H853)"]],[15,16,["H6547"]]]},{"k":1428,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3290"]],[5,6,["H4100"]],[6,7,["H3117","H8141","H2416"]],[7,9,[]]]},{"k":1429,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H6547"]],[5,7,["H3117"]],[7,10,["H8141"]],[10,13,["H4033"]],[13,16,["H3967"]],[16,18,["H7970"]],[18,19,["H8141"]],[19,20,["H4592"]],[20,22,["H7451"]],[22,25,["H3117"]],[25,28,["H8141"]],[28,31,["H2416"]],[31,32,["H1961"]],[32,35,["H3808"]],[35,37,["H5381","(H853)"]],[37,39,["H3117"]],[39,42,["H8141"]],[42,45,["H2416"]],[45,48,["H1"]],[48,51,["H3117"]],[51,54,["H4033"]]]},{"k":1430,"v":[[0,2,["H3290"]],[2,3,["H1288","(H853)"]],[3,4,["H6547"]],[4,7,["H3318"]],[7,9,["H4480","H6440"]],[9,10,["H6547"]]]},{"k":1431,"v":[[0,2,["H3130"]],[2,3,["H3427","(H853)"]],[3,5,["H1"]],[5,8,["H251"]],[8,10,["H5414"]],[10,13,["H272"]],[13,16,["H776"]],[16,18,["H4714"]],[18,21,["H4315"]],[21,24,["H776"]],[24,27,["H776"]],[27,29,["H7486"]],[29,30,["H834"]],[30,31,["H6547"]],[31,33,["H6680"]]]},{"k":1432,"v":[[0,2,["H3130"]],[2,3,["H3557","(H853)"]],[3,5,["H1"]],[5,8,["H251"]],[8,10,["H3605"]],[10,12,["H1"]],[12,13,["H1004"]],[13,15,["H3899"]],[15,17,["H6310"]],[17,19,["H2945"]]]},{"k":1433,"v":[[0,4,["H369"]],[4,5,["H3899"]],[5,7,["H3605"]],[7,9,["H776"]],[9,10,["H3588"]],[10,12,["H7458"]],[12,14,["H3966"]],[14,15,["H3515"]],[15,19,["H776"]],[19,21,["H4714"]],[21,25,["H776"]],[25,27,["H3667"]],[27,28,["H3856"]],[28,31,["H4480","H6440"]],[31,33,["H7458"]]]},{"k":1434,"v":[[0,2,["H3130"]],[2,4,["H3950","(H853)"]],[4,5,["H3605"]],[5,7,["H3701"]],[7,10,["H4672"]],[10,13,["H776"]],[13,15,["H4714"]],[15,19,["H776"]],[19,21,["H3667"]],[21,24,["H7668"]],[24,25,["H834"]],[25,26,["H1992"]],[26,27,["H7666"]],[27,29,["H3130"]],[29,30,["H935","(H853)"]],[30,32,["H3701"]],[32,34,["H6547"]],[34,35,["H1004"]]]},{"k":1435,"v":[[0,3,["H3701"]],[3,4,["H8552"]],[4,7,["H4480","H776"]],[7,9,["H4714"]],[9,13,["H4480","H776"]],[13,15,["H3667"]],[15,16,["H3605"]],[16,18,["H4714"]],[18,19,["H935"]],[19,20,["H413"]],[20,21,["H3130"]],[21,23,["H559"]],[23,24,["H3051"]],[24,26,["H3899"]],[26,28,["H4100"]],[28,31,["H4191"]],[31,34,["H5048"]],[34,35,["H3588"]],[35,37,["H3701"]],[37,38,["H656"]]]},{"k":1436,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H3051"]],[4,6,["H4735"]],[6,10,["H5414"]],[10,14,["H4735"]],[14,15,["H518"]],[15,16,["H3701"]],[16,17,["H656"]]]},{"k":1437,"v":[[0,3,["H935","(H853)"]],[3,5,["H4735"]],[5,6,["H413"]],[6,7,["H3130"]],[7,9,["H3130"]],[9,10,["H5414"]],[10,12,["H3899"]],[12,16,["H5483"]],[16,20,["H4735","H6629"]],[20,24,["H4735"]],[24,27,["H1241"]],[27,31,["H2543"]],[31,34,["H5095"]],[34,37,["H3899"]],[37,39,["H3605"]],[39,41,["H4735"]],[41,43,["H1931"]],[43,44,["H8141"]]]},{"k":1438,"v":[[0,2,["H1931"]],[2,3,["H8141"]],[3,5,["H8552"]],[5,7,["H935"]],[7,8,["H413"]],[8,11,["H8145"]],[11,12,["H8141"]],[12,14,["H559"]],[14,19,["H3808"]],[19,20,["H3582"]],[20,22,["H4480"]],[22,24,["H113"]],[24,26,["H3588","H518"]],[26,28,["H3701"]],[28,30,["H8552"]],[30,32,["H113"]],[32,34,["H413"]],[34,36,["H4735"]],[36,38,["H929"]],[38,41,["H3808"]],[41,43,["H7604"]],[43,46,["H6440"]],[46,49,["H113"]],[49,50,["H1115","H518"]],[50,52,["H1472"]],[52,55,["H127"]]]},{"k":1439,"v":[[0,1,["H4100"]],[1,4,["H4191"]],[4,7,["H5869"]],[7,8,["H1571"]],[8,9,["H587"]],[9,10,["H1571"]],[10,12,["H127"]],[12,13,["H7069"]],[13,17,["H127"]],[17,19,["H3899"]],[19,21,["H587"]],[21,24,["H127"]],[24,26,["H1961"]],[26,27,["H5650"]],[27,29,["H6547"]],[29,31,["H5414"]],[31,33,["H2233"]],[33,37,["H2421"]],[37,39,["H3808"]],[39,40,["H4191"]],[40,43,["H127"]],[43,46,["H3456","H3808"]]]},{"k":1440,"v":[[0,2,["H3130"]],[2,3,["H7069","(H853)"]],[3,4,["H3605"]],[4,6,["H127"]],[6,8,["H4714"]],[8,10,["H6547"]],[10,11,["H3588"]],[11,13,["H4714"]],[13,14,["H4376"]],[14,16,["H376"]],[16,18,["H7704"]],[18,19,["H3588"]],[19,21,["H7458"]],[21,22,["H2388"]],[22,23,["H5921"]],[23,27,["H776"]],[27,28,["H1961"]],[28,29,["H6547"]]]},{"k":1441,"v":[[0,5,["H5971"]],[5,7,["H5674"]],[7,10,["H5892"]],[10,13,["H4480","H7097"]],[13,16,["H1366"]],[16,18,["H4714"]],[18,20,["H5704"]],[20,23,["H7097"]],[23,24,[]]]},{"k":1442,"v":[[0,1,["H7535"]],[1,3,["H127"]],[3,6,["H3548"]],[6,7,["H7069"]],[7,9,["H3808"]],[9,10,["H3588"]],[10,12,["H3548"]],[12,15,["H2706"]],[15,18,["H4480","H854"]],[18,19,["H6547"]],[19,22,["H398","(H853)"]],[22,24,["H2706"]],[24,25,["H834"]],[25,26,["H6547"]],[26,27,["H5414"]],[27,29,["H5921","H3651"]],[29,31,["H4376"]],[31,32,["H3808","(H853)"]],[32,34,["H127"]]]},{"k":1443,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H2005"]],[7,10,["H7069"]],[10,13,["H3117"]],[13,16,["H127"]],[16,18,["H6547"]],[18,19,["H1887"]],[19,22,["H2233"]],[22,28,["H2232","(H853)"]],[28,30,["H127"]]]},{"k":1444,"v":[[0,6,["H1961"]],[6,9,["H8393"]],[9,13,["H5414"]],[13,15,["H2549"]],[15,18,["H6547"]],[18,20,["H702"]],[20,21,["H3027"]],[21,23,["H1961"]],[23,27,["H2233"]],[27,30,["H7704"]],[30,34,["H400"]],[34,37,["H834"]],[37,40,["H1004"]],[40,43,["H398"]],[43,47,["H2945"]]]},{"k":1445,"v":[[0,3,["H559"]],[3,8,["H2421"]],[8,11,["H4672"]],[11,12,["H2580"]],[12,15,["H5869"]],[15,18,["H113"]],[18,22,["H1961"]],[22,23,["H6547"]],[23,24,["H5650"]]]},{"k":1446,"v":[[0,2,["H3130"]],[2,3,["H7760"]],[3,6,["H2706"]],[6,7,["H5921"]],[7,9,["H127"]],[9,11,["H4714"]],[11,12,["H5704"]],[12,13,["H2088"]],[13,14,["H3117"]],[14,16,["H6547"]],[16,20,["H2569"]],[20,22,["H7535"]],[22,24,["H127"]],[24,27,["H3548"]],[27,28,["H905"]],[28,30,["H1961"]],[30,31,["H3808"]],[31,32,["H6547"]]]},{"k":1447,"v":[[0,2,["H3478"]],[2,3,["H3427"]],[3,6,["H776"]],[6,8,["H4714"]],[8,11,["H776"]],[11,13,["H1657"]],[13,17,["H270"]],[17,20,["H6509"]],[20,22,["H7235"]],[22,23,["H3966"]]]},{"k":1448,"v":[[0,2,["H3290"]],[2,3,["H2421"]],[3,6,["H776"]],[6,8,["H4714"]],[8,9,["H7651","H6240"]],[9,10,["H8141"]],[10,14,["H3117","H8141","H2416"]],[14,16,["H3290"]],[16,17,["H1961"]],[17,19,["H3967"]],[19,20,["H705"]],[20,22,["H7651"]],[22,23,["H8141"]]]},{"k":1449,"v":[[0,3,["H3117"]],[3,5,["H7126"]],[5,7,["H3478"]],[7,9,["H4191"]],[9,12,["H7121"]],[12,14,["H1121"]],[14,15,["H3130"]],[15,17,["H559"]],[17,20,["H518"]],[20,21,["H4994"]],[21,24,["H4672"]],[24,25,["H2580"]],[25,28,["H5869"]],[28,29,["H7760"]],[29,32,["H4994"]],[32,34,["H3027"]],[34,35,["H8478"]],[35,37,["H3409"]],[37,39,["H6213"]],[39,40,["H2617"]],[40,42,["H571"]],[42,43,["H5973"]],[43,45,["H6912"]],[45,47,["H408"]],[47,50,["H4994"]],[50,52,["H4714"]]]},{"k":1450,"v":[[0,4,["H7901"]],[4,5,["H5973"]],[5,7,["H1"]],[7,11,["H5375"]],[11,15,["H4480","H4714"]],[15,17,["H6912"]],[17,21,["H6900"]],[21,24,["H559"]],[24,25,["H595"]],[25,27,["H6213"]],[27,31,["H1697"]]]},{"k":1451,"v":[[0,3,["H559"]],[3,4,["H7650"]],[4,9,["H7650"]],[9,13,["H3478"]],[13,15,["H7812"]],[15,16,["H5921"]],[16,18,["H4296"]],[18,19,["H7218"]]]},{"k":1452,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H428"]],[7,8,["H1697"]],[8,11,["H559"]],[11,12,["H3130"]],[12,13,["H2009"]],[13,15,["H1"]],[15,17,["H2470"]],[17,20,["H3947"]],[20,21,["H5973"]],[21,22,["(H853)"]],[22,24,["H8147"]],[24,25,["H1121","(H853)"]],[25,26,["H4519"]],[26,28,["H669"]]]},{"k":1453,"v":[[0,3,["H5046"]],[3,4,["H3290"]],[4,6,["H559"]],[6,7,["H2009"]],[7,9,["H1121"]],[9,10,["H3130"]],[10,11,["H935"]],[11,12,["H413"]],[12,15,["H3478"]],[15,17,["H2388"]],[17,19,["H3427"]],[19,20,["H5921"]],[20,22,["H4296"]]]},{"k":1454,"v":[[0,2,["H3290"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,6,["H410"]],[6,7,["H7706"]],[7,8,["H7200"]],[8,9,["H413"]],[9,12,["H3870"]],[12,15,["H776"]],[15,17,["H3667"]],[17,19,["H1288"]],[19,20,[]]]},{"k":1455,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H2009"]],[5,10,["H6509"]],[10,12,["H7235"]],[12,17,["H5414"]],[17,21,["H6951"]],[21,23,["H5971"]],[23,26,["H5414","(H853)"]],[26,27,["H2063"]],[27,28,["H776"]],[28,31,["H2233"]],[31,32,["H310"]],[32,36,["H5769"]],[36,37,["H272"]]]},{"k":1456,"v":[[0,2,["H6258"]],[2,4,["H8147"]],[4,5,["H1121"]],[5,6,["H669"]],[6,8,["H4519"]],[8,11,["H3205"]],[11,16,["H776"]],[16,18,["H4714"]],[18,19,["H5704"]],[19,21,["H935"]],[21,22,["H413"]],[22,25,["H4714"]],[25,29,["H7205"]],[29,31,["H8095"]],[31,34,["H1961"]],[34,35,[]]]},{"k":1457,"v":[[0,3,["H4138"]],[3,4,["H834"]],[4,6,["H3205"]],[6,7,["H310"]],[7,10,["H1961"]],[10,15,["H7121"]],[15,16,["H5921"]],[16,18,["H8034"]],[18,21,["H251"]],[21,24,["H5159"]]]},{"k":1458,"v":[[0,4,["H589"]],[4,7,["H935"]],[7,9,["H4480","H6307"]],[9,10,["H7354"]],[10,11,["H4191"]],[11,12,["H5921"]],[12,16,["H776"]],[16,18,["H3667"]],[18,21,["H1870"]],[21,23,["H5750"]],[23,28,["H3530"]],[28,29,["H776"]],[29,31,["H935"]],[31,33,["H672"]],[33,36,["H6912"]],[36,38,["H8033"]],[38,41,["H1870"]],[41,43,["H672"]],[43,45,["H1931"]],[45,47,["H1035"]]]},{"k":1459,"v":[[0,2,["H3478"]],[2,3,["H7200"]],[3,4,["H3130","(H853)"]],[4,5,["H1121"]],[5,7,["H559"]],[7,8,["H4310"]],[8,10,["H428"]]]},{"k":1460,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1"]],[6,7,["H1992"]],[7,10,["H1121"]],[10,11,["H834"]],[11,12,["H430"]],[12,14,["H5414"]],[14,17,["H2088"]],[17,21,["H559"]],[21,22,["H3947"]],[22,26,["H4994"]],[26,27,["H413"]],[27,32,["H1288"]],[32,33,[]]]},{"k":1461,"v":[[0,3,["H5869"]],[3,5,["H3478"]],[5,7,["H3513"]],[7,9,["H4480","H2207"]],[9,13,["H3201"]],[13,14,["H3808"]],[14,15,["H7200"]],[15,20,["H5066","(H853)"]],[20,21,["H413"]],[21,25,["H5401"]],[25,28,["H2263"]],[28,29,[]]]},{"k":1462,"v":[[0,2,["H3478"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,8,["H3808"]],[8,9,["H6419"]],[9,11,["H7200"]],[11,13,["H6440"]],[13,15,["H2009"]],[15,16,["H430"]],[16,18,["H7200"]],[18,20,["H1571","(H853)"]],[20,22,["H2233"]]]},{"k":1463,"v":[[0,2,["H3130"]],[2,5,["H3318","(H853)"]],[5,7,["H4480","H5973"]],[7,9,["H1290"]],[9,13,["H7812"]],[13,16,["H639"]],[16,19,["H776"]]]},{"k":1464,"v":[[0,2,["H3130"]],[2,3,["H3947","(H853)"]],[3,5,["H8147","(H853)"]],[5,6,["H669"]],[6,10,["H3225"]],[10,12,["H3478"]],[12,14,["H4480","H8040"]],[14,16,["H4519"]],[16,20,["H8040"]],[20,22,["H3478"]],[22,24,["H4480","H3225"]],[24,28,["H5066"]],[28,29,["H413"]],[29,30,[]]]},{"k":1465,"v":[[0,2,["H3478"]],[2,4,["H7971","(H853)"]],[4,7,["H3225"]],[7,9,["H7896"]],[9,11,["H5921"]],[11,12,["H669"]],[12,13,["H7218"]],[13,14,["H1931"]],[14,17,["H6810"]],[17,21,["H8040"]],[21,22,["H5921"]],[22,23,["H4519"]],[23,24,["H7218"]],[24,28,["H7919","(H853)","H3027"]],[28,29,["H3588"]],[29,30,["H4519"]],[30,33,["H1060"]]]},{"k":1466,"v":[[0,3,["H1288","(H853)"]],[3,4,["H3130"]],[4,6,["H559"]],[6,7,["H430"]],[7,8,["H6440"]],[8,9,["H834"]],[9,11,["H1"]],[11,12,["H85"]],[12,14,["H3327"]],[14,16,["H1980"]],[16,18,["H430"]],[18,20,["H7462"]],[20,25,["H4480","H5750"]],[25,26,["H5704"]],[26,27,["H2088"]],[27,28,["H3117"]]]},{"k":1467,"v":[[0,2,["H4397"]],[2,4,["H1350"]],[4,7,["H4480","H3605"]],[7,8,["H7451"]],[8,9,["H1288","(H853)"]],[9,11,["H5288"]],[11,15,["H8034"]],[15,17,["H7121"]],[17,22,["H8034"]],[22,25,["H1"]],[25,26,["H85"]],[26,28,["H3327"]],[28,32,["H1711"]],[32,35,["H7230"]],[35,38,["H7130"]],[38,41,["H776"]]]},{"k":1468,"v":[[0,3,["H3130"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,7,["H1"]],[7,8,["H7896"]],[8,10,["H3225"]],[10,11,["H3027"]],[11,12,["H5921"]],[12,14,["H7218"]],[14,16,["H669"]],[16,18,["H7489","H5869"]],[18,23,["H8551"]],[23,25,["H1"]],[25,26,["H3027"]],[26,28,["H5493"]],[28,30,["H4480","H5921"]],[30,31,["H669"]],[31,32,["H7218"]],[32,33,["H5921"]],[33,34,["H4519"]],[34,35,["H7218"]]]},{"k":1469,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1"]],[6,7,["H3808"]],[7,8,["H3651"]],[8,10,["H1"]],[10,11,["H3588"]],[11,12,["H2088"]],[12,15,["H1060"]],[15,16,["H7760"]],[16,19,["H3225"]],[19,20,["H5921"]],[20,22,["H7218"]]]},{"k":1470,"v":[[0,3,["H1"]],[3,4,["H3985"]],[4,6,["H559"]],[6,8,["H3045"]],[8,11,["H1121"]],[11,13,["H3045"]],[13,15,["H1931"]],[15,16,["H1571"]],[16,18,["H1961"]],[18,20,["H5971"]],[20,22,["H1931"]],[22,23,["H1571"]],[23,26,["H1431"]],[26,28,["H199"]],[28,30,["H6996"]],[30,31,["H251"]],[31,34,["H1431"]],[34,35,["H4480"]],[35,39,["H2233"]],[39,41,["H1961"]],[41,43,["H4393"]],[43,45,["H1471"]]]},{"k":1471,"v":[[0,3,["H1288"]],[3,5,["H1931"]],[5,6,["H3117"]],[6,7,["H559"]],[7,11,["H3478"]],[11,12,["H1288"]],[12,13,["H559"]],[13,14,["H430"]],[14,15,["H7760"]],[15,18,["H669"]],[18,21,["H4519"]],[21,24,["H7760","(H853)"]],[24,25,["H669"]],[25,26,["H6440"]],[26,27,["H4519"]]]},{"k":1472,"v":[[0,2,["H3478"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3130"]],[5,6,["H2009"]],[6,7,["H595"]],[7,8,["H4191"]],[8,10,["H430"]],[10,12,["H1961"]],[12,13,["H5973"]],[13,18,["H7725","(H853)"]],[18,19,["H413"]],[19,21,["H776"]],[21,24,["H1"]]]},{"k":1473,"v":[[0,2,["H589"]],[2,4,["H5414"]],[4,7,["H259"]],[7,8,["H7926"]],[8,9,["H5921"]],[9,11,["H251"]],[11,12,["H834"]],[12,14,["H3947"]],[14,18,["H4480","H3027"]],[18,21,["H567"]],[21,24,["H2719"]],[24,28,["H7198"]]]},{"k":1474,"v":[[0,2,["H3290"]],[2,3,["H7121"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H559"]],[8,11,["H622"]],[11,15,["H5046"]],[15,17,["(H853)"]],[17,18,["H834"]],[18,20,["H7122"]],[20,24,["H319"]],[24,25,["H3117"]]]},{"k":1475,"v":[[0,3,["H6908"]],[3,5,["H8085"]],[5,7,["H1121"]],[7,9,["H3290"]],[9,11,["H8085"]],[11,12,["H413"]],[12,13,["H3478"]],[13,15,["H1"]]]},{"k":1476,"v":[[0,1,["H7205"]],[1,2,["H859"]],[2,5,["H1060"]],[5,7,["H3581"]],[7,10,["H7225"]],[10,13,["H202"]],[13,15,["H3499"]],[15,17,["H7613"]],[17,20,["H3499"]],[20,22,["H5794"]]]},{"k":1477,"v":[[0,1,["H6349"]],[1,3,["H4325"]],[3,6,["H408"]],[6,7,["H3498"]],[7,8,["H3588"]],[8,11,["H5927"]],[11,14,["H1"]],[14,15,["H4904"]],[15,16,["H227"]],[16,17,["H2490"]],[17,22,["H5927"]],[22,25,["H3326"]]]},{"k":1478,"v":[[0,1,["H8095"]],[1,3,["H3878"]],[3,5,["H251"]],[5,6,["H3627"]],[6,8,["H2555"]],[8,12,["H4380"]]]},{"k":1479,"v":[[0,3,["H5315"]],[3,4,["H935"]],[4,5,["H408"]],[5,9,["H5475"]],[9,12,["H6951"]],[12,14,["H3519"]],[14,16,["H408"]],[16,18,["H3161"]],[18,19,["H3588"]],[19,22,["H639"]],[22,24,["H2026"]],[24,26,["H376"]],[26,30,["H7522"]],[30,33,["H6131"]],[33,35,["H7791"]]]},{"k":1480,"v":[[0,1,["H779"]],[1,4,["H639"]],[4,5,["H3588"]],[5,8,["H5794"]],[8,11,["H5678"]],[11,12,["H3588"]],[12,15,["H7185"]],[15,18,["H2505"]],[18,21,["H3290"]],[21,23,["H6327"]],[23,26,["H3478"]]]},{"k":1481,"v":[[0,1,["H3063"]],[1,2,["H859"]],[2,7,["H251"]],[7,9,["H3034"]],[9,11,["H3027"]],[11,16,["H6203"]],[16,19,["H341"]],[19,21,["H1"]],[21,22,["H1121"]],[22,25,["H7812"]],[25,27,[]]]},{"k":1482,"v":[[0,1,["H3063"]],[1,4,["H738"]],[4,5,["H1482"]],[5,8,["H4480","H2964"]],[8,10,["H1121"]],[10,14,["H5927"]],[14,17,["H3766"]],[17,19,["H7257"]],[19,22,["H738"]],[22,27,["H3833"]],[27,28,["H4310"]],[28,32,["H6965"]]]},{"k":1483,"v":[[0,2,["H7626"]],[2,4,["H3808"]],[4,5,["H5493"]],[5,7,["H4480","H3063"]],[7,10,["H2710"]],[10,12,["H4480","H996"]],[12,14,["H7272"]],[14,15,["H5704","H3588"]],[15,16,["H7886"]],[16,17,["H935"]],[17,23,["H3349"]],[23,26,["H5971"]],[26,27,[]]]},{"k":1484,"v":[[0,1,["H631"]],[1,3,["H5895"]],[3,6,["H1612"]],[6,9,["H860"]],[9,10,["H1121"]],[10,14,["H8321"]],[14,16,["H3526"]],[16,18,["H3830"]],[18,20,["H3196"]],[20,23,["H5497"]],[23,26,["H1818"]],[26,28,["H6025"]]]},{"k":1485,"v":[[0,2,["H5869"]],[2,5,["H2447"]],[5,7,["H4480","H3196"]],[7,10,["H8127"]],[10,11,["H3836"]],[11,13,["H4480","H2461"]]]},{"k":1486,"v":[[0,1,["H2074"]],[1,3,["H7931"]],[3,6,["H2348"]],[6,9,["H3220"]],[9,11,["H1931"]],[11,16,["H2348"]],[16,18,["H591"]],[18,21,["H3411"]],[21,24,["H5921"]],[24,25,["H6721"]]]},{"k":1487,"v":[[0,1,["H3485"]],[1,4,["H1634"]],[4,5,["H2543"]],[5,7,["H7257"]],[7,8,["H996"]],[8,10,["H4942"]]]},{"k":1488,"v":[[0,3,["H7200"]],[3,4,["H3588"]],[4,5,["H4496"]],[5,7,["H2896"]],[7,10,["H776"]],[10,11,["H3588"]],[11,14,["H5276"]],[14,16,["H5186"]],[16,18,["H7926"]],[18,20,["H5445"]],[20,22,["H1961"]],[22,24,["H5647"]],[24,26,["H4522"]]]},{"k":1489,"v":[[0,1,["H1835"]],[1,3,["H1777"]],[3,5,["H5971"]],[5,7,["H259"]],[7,10,["H7626"]],[10,12,["H3478"]]]},{"k":1490,"v":[[0,1,["H1835"]],[1,3,["H1961"]],[3,5,["H5175"]],[5,6,["H5921"]],[6,8,["H1870"]],[8,10,["H8207"]],[10,11,["H5921"]],[11,13,["H734"]],[13,15,["H5391"]],[15,17,["H5483"]],[17,18,["H6119"]],[18,22,["H7392"]],[22,24,["H5307"]],[24,25,["H268"]]]},{"k":1491,"v":[[0,3,["H6960"]],[3,6,["H3444"]],[6,8,["H3068"]]]},{"k":1492,"v":[[0,1,["H1410"]],[1,3,["H1416"]],[3,5,["H1464"]],[5,8,["H1931"]],[8,10,["H1464"]],[10,13,["H6119"]]]},{"k":1493,"v":[[0,3,["H4480","H836"]],[3,5,["H3899"]],[5,8,["H8082"]],[8,10,["H1931"]],[10,12,["H5414"]],[12,13,["H4428"]],[13,14,["H4574"]]]},{"k":1494,"v":[[0,1,["H5321"]],[1,4,["H355"]],[4,6,["H7971"]],[6,8,["H5414"]],[8,9,["H8233"]],[9,10,["H561"]]]},{"k":1495,"v":[[0,1,["H3130"]],[1,4,["H6509"]],[4,5,["H1121"]],[5,8,["H6509"]],[8,9,["H1121"]],[9,10,["H5921"]],[10,12,["H5869"]],[12,14,["H1323"]],[14,15,["H6805"]],[15,16,["H5921"]],[16,18,["H7791"]]]},{"k":1496,"v":[[0,2,["H1167","H2671"]],[2,5,["H4843"]],[5,8,["H7232"]],[8,12,["H7852"]],[12,13,[]]]},{"k":1497,"v":[[0,3,["H7198"]],[3,4,["H3427"]],[4,6,["H386"]],[6,9,["H2220"]],[9,12,["H3027"]],[12,15,["H6339"]],[15,18,["H4480","H3027"]],[18,21,["H46"]],[21,24,["H3290"]],[24,26,["H4480","H8033"]],[26,29,["H7462"]],[29,31,["H68"]],[31,33,["H3478"]]]},{"k":1498,"v":[[0,4,["H4480","H410"]],[4,7,["H1"]],[7,10,["H5826"]],[10,15,["H7706"]],[15,18,["H1288"]],[18,21,["H1293"]],[21,23,["H8064"]],[23,24,["H4480","H5920"]],[24,25,["H1293"]],[25,28,["H8415"]],[28,30,["H7257"]],[30,31,["H8478"]],[31,32,["H1293"]],[32,35,["H7699"]],[35,39,["H7356"]]]},{"k":1499,"v":[[0,2,["H1293"]],[2,5,["H1"]],[5,7,["H1396"]],[7,8,["H5921"]],[8,10,["H1293"]],[10,13,["H2029"]],[13,14,["H5704"]],[14,17,["H8379"]],[17,20,["H5769"]],[20,21,["H1389"]],[21,24,["H1961"]],[24,27,["H7218"]],[27,29,["H3130"]],[29,36,["H6936"]],[36,42,["H5139"]],[42,44,["H251"]]]},{"k":1500,"v":[[0,1,["H1144"]],[1,3,["H2963"]],[3,6,["H2061"]],[6,9,["H1242"]],[9,12,["H398"]],[12,14,["H5706"]],[14,17,["H6153"]],[17,20,["H2505"]],[20,22,["H7998"]]]},{"k":1501,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,5,["H8147","H6240"]],[5,6,["H7626"]],[6,8,["H3478"]],[8,10,["H2063"]],[10,13,["H834"]],[13,15,["H1"]],[15,16,["H1696"]],[16,20,["H1288"]],[20,23,["H376","H834"]],[23,27,["H1293"]],[27,29,["H1288"]],[29,30,[]]]},{"k":1502,"v":[[0,3,["H6680"]],[3,6,["H559"]],[6,7,["H413"]],[7,9,["H589"]],[9,13,["H622"]],[13,14,["H413"]],[14,16,["H5971"]],[16,17,["H6912"]],[17,19,["H413"]],[19,21,["H1"]],[21,22,["H413"]],[22,24,["H4631"]],[24,25,["H834"]],[25,29,["H7704"]],[29,31,["H6085"]],[31,33,["H2850"]]]},{"k":1503,"v":[[0,3,["H4631"]],[3,4,["H834"]],[4,8,["H7704"]],[8,10,["H4375"]],[10,11,["H834"]],[11,13,["H5921","H6440"]],[13,14,["H4471"]],[14,17,["H776"]],[17,19,["H3667"]],[19,20,["H834"]],[20,21,["H85"]],[21,22,["H7069"]],[22,23,["H854"]],[23,25,["H7704"]],[25,26,["H4480","H854"]],[26,27,["H6085"]],[27,29,["H2850"]],[29,32,["H272"]],[32,35,["H6913"]]]},{"k":1504,"v":[[0,1,["H8033"]],[1,3,["H6912","(H853)"]],[3,4,["H85"]],[4,6,["H8283"]],[6,8,["H802"]],[8,9,["H8033"]],[9,11,["H6912","(H853)"]],[11,12,["H3327"]],[12,14,["H7259"]],[14,16,["H802"]],[16,18,["H8033"]],[18,20,["H6912","(H853)"]],[20,21,["H3812"]]]},{"k":1505,"v":[[0,2,["H4735"]],[2,5,["H7704"]],[5,9,["H4631"]],[9,10,["H834"]],[10,14,["H4480","H854"]],[14,16,["H1121"]],[16,18,["H2845"]]]},{"k":1506,"v":[[0,3,["H3290"]],[3,7,["H3615"]],[7,9,["H6680","(H853)"]],[9,11,["H1121"]],[11,14,["H622"]],[14,16,["H7272"]],[16,17,["H413"]],[17,19,["H4296"]],[19,24,["H1478"]],[24,27,["H622"]],[27,28,["H413"]],[28,30,["H5971"]]]},{"k":1507,"v":[[0,2,["H3130"]],[2,3,["H5307"]],[3,4,["H5921"]],[4,6,["H1"]],[6,7,["H6440"]],[7,9,["H1058"]],[9,10,["H5921"]],[10,13,["H5401"]],[13,14,[]]]},{"k":1508,"v":[[0,2,["H3130"]],[2,3,["H6680","(H853)"]],[3,5,["H5650","(H853)"]],[5,7,["H7495"]],[7,9,["H2590","(H853)"]],[9,11,["H1"]],[11,14,["H7495"]],[14,15,["H2590","(H853)"]],[15,16,["H3478"]]]},{"k":1509,"v":[[0,2,["H705"]],[2,3,["H3117"]],[3,5,["H4390"]],[5,8,["H3588"]],[8,9,["H3651"]],[9,11,["H4390"]],[11,13,["H3117"]],[13,18,["H2590"]],[18,21,["H4714"]],[21,22,["H1058"]],[22,27,["H7657"]],[27,28,["H3117"]]]},{"k":1510,"v":[[0,4,["H3117"]],[4,7,["H1068"]],[7,9,["H5674"]],[9,10,["H3130"]],[10,11,["H1696"]],[11,12,["H413"]],[12,14,["H1004"]],[14,16,["H6547"]],[16,17,["H559"]],[17,18,["H518"]],[18,19,["H4994"]],[19,22,["H4672"]],[22,23,["H2580"]],[23,26,["H5869"]],[26,27,["H1696"]],[27,30,["H4994"]],[30,33,["H241"]],[33,35,["H6547"]],[35,36,["H559"]]]},{"k":1511,"v":[[0,2,["H1"]],[2,5,["H7650"]],[5,6,["H559"]],[6,7,["H2009"]],[7,8,["H595"]],[8,9,["H4191"]],[9,12,["H6913"]],[12,13,["H834"]],[13,16,["H3738"]],[16,21,["H776"]],[21,23,["H3667"]],[23,24,["H8033"]],[24,27,["H6912"]],[27,29,["H6258"]],[29,34,["H5927"]],[34,37,["H4994"]],[37,39,["H6912","(H853)"]],[39,41,["H1"]],[41,46,["H7725"]]]},{"k":1512,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,5,["H5927"]],[5,7,["H6912","(H853)"]],[7,9,["H1"]],[9,11,["H834"]],[11,15,["H7650"]]]},{"k":1513,"v":[[0,2,["H3130"]],[2,4,["H5927"]],[4,6,["H6912","(H853)"]],[6,8,["H1"]],[8,10,["H854"]],[10,13,["H5927"]],[13,14,["H3605"]],[14,16,["H5650"]],[16,18,["H6547"]],[18,20,["H2205"]],[20,23,["H1004"]],[23,25,["H3605"]],[25,27,["H2205"]],[27,30,["H776"]],[30,32,["H4714"]]]},{"k":1514,"v":[[0,2,["H3605"]],[2,4,["H1004"]],[4,6,["H3130"]],[6,9,["H251"]],[9,12,["H1"]],[12,13,["H1004"]],[13,14,["H7535"]],[14,17,["H2945"]],[17,20,["H6629"]],[20,23,["H1241"]],[23,25,["H5800"]],[25,28,["H776"]],[28,30,["H1657"]]]},{"k":1515,"v":[[0,4,["H5927"]],[4,5,["H5973"]],[5,7,["H1571"]],[7,8,["H7393"]],[8,9,["H1571"]],[9,10,["H6571"]],[10,13,["H1961"]],[13,15,["H3966"]],[15,16,["H3515"]],[16,17,["H4264"]]]},{"k":1516,"v":[[0,3,["H935"]],[3,4,["H5704"]],[4,6,["H1637"]],[6,8,["H329"]],[8,9,["H834"]],[9,11,["H5676"]],[11,12,["H3383"]],[12,14,["H8033"]],[14,16,["H5594"]],[16,19,["H1419"]],[19,21,["H3966"]],[21,22,["H3515"]],[22,23,["H4553"]],[23,26,["H6213"]],[26,28,["H60"]],[28,31,["H1"]],[31,32,["H7651"]],[32,33,["H3117"]]]},{"k":1517,"v":[[0,4,["H3427"]],[4,7,["H776"]],[7,9,["H3669"]],[9,10,["H7200","(H853)"]],[10,12,["H60"]],[12,15,["H1637"]],[15,17,["H329"]],[17,19,["H559"]],[19,20,["H2088"]],[20,23,["H3515"]],[23,24,["H60"]],[24,27,["H4714"]],[27,28,["H5921","H3651"]],[28,30,["H8034"]],[30,34,["H7121"]],[34,35,["H67"]],[35,36,["H834"]],[36,38,["H5676"]],[38,39,["H3383"]]]},{"k":1518,"v":[[0,3,["H1121"]],[3,4,["H6213"]],[4,8,["H3651","H834"]],[8,10,["H6680"]],[10,11,[]]]},{"k":1519,"v":[[0,3,["H1121"]],[3,4,["H5375"]],[4,8,["H776"]],[8,10,["H3667"]],[10,12,["H6912"]],[12,16,["H4631"]],[16,19,["H7704"]],[19,21,["H4375"]],[21,22,["H834"]],[22,23,["H85"]],[23,24,["H7069"]],[24,25,["H854"]],[25,27,["H7704"]],[27,30,["H272"]],[30,33,["H6913"]],[33,34,["H4480","H854"]],[34,35,["H6085"]],[35,37,["H2850"]],[37,38,["H5921","H6440"]],[38,39,["H4471"]]]},{"k":1520,"v":[[0,2,["H3130"]],[2,3,["H7725"]],[3,5,["H4714"]],[5,6,["H1931"]],[6,9,["H251"]],[9,11,["H3605"]],[11,14,["H5927"]],[14,15,["H854"]],[15,18,["H6912","(H853)"]],[18,20,["H1"]],[20,21,["H310"]],[21,24,["H6912","(H853)"]],[24,26,["H1"]]]},{"k":1521,"v":[[0,3,["H3130"]],[3,4,["H251"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,8,["H1"]],[8,10,["H4191"]],[10,12,["H559"]],[12,13,["H3130"]],[13,15,["H3863"]],[15,16,["H7852"]],[16,21,["H7725","H7725"]],[21,22,["(H853)"]],[22,23,["H3605"]],[23,25,["H7451"]],[25,26,["H834"]],[26,28,["H1580"]],[28,30,[]]]},{"k":1522,"v":[[0,5,["H6680"]],[5,6,["H413"]],[6,7,["H3130"]],[7,8,["H559"]],[8,10,["H1"]],[10,12,["H6680"]],[12,13,["H6440"]],[13,15,["H4194"]],[15,16,["H559"]]]},{"k":1523,"v":[[0,1,["H3541"]],[1,4,["H559"]],[4,6,["H3130"]],[6,7,["H5375"]],[7,10,["H577"]],[10,11,["H4994"]],[11,13,["H6588"]],[13,16,["H251"]],[16,19,["H2403"]],[19,20,["H3588"]],[20,22,["H1580"]],[22,25,["H7451"]],[25,27,["H6258"]],[27,30,["H4994"]],[30,31,["H5375"]],[31,33,["H6588"]],[33,36,["H5650"]],[36,39,["H430"]],[39,42,["H1"]],[42,44,["H3130"]],[44,45,["H1058"]],[45,48,["H1696"]],[48,49,["H413"]],[49,50,[]]]},{"k":1524,"v":[[0,3,["H251"]],[3,4,["H1571"]],[4,5,["H1980"]],[5,8,["H5307"]],[8,11,["H6440"]],[11,14,["H559"]],[14,15,["H2009"]],[15,19,["H5650"]]]},{"k":1525,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3372"]],[6,7,["H408"]],[7,8,["H3588"]],[8,10,["H589"]],[10,13,["H8478"]],[13,15,["H430"]]]},{"k":1526,"v":[[0,4,["H859"]],[4,6,["H2803"]],[6,7,["H7451"]],[7,8,["H5921"]],[8,11,["H430"]],[11,12,["H2803"]],[12,15,["H2896"]],[15,16,["H4616"]],[16,19,["H6213"]],[19,23,["H2088"]],[23,24,["H3117"]],[24,29,["H2421","H5971","H7227"]]]},{"k":1527,"v":[[0,1,["H6258"]],[1,3,["H3372"]],[3,5,["H408"]],[5,6,["H595"]],[6,8,["H3557"]],[8,13,["H2945"]],[13,16,["H5162"]],[16,19,["H1696"]],[19,20,["H5921","H3820"]],[20,22,[]]]},{"k":1528,"v":[[0,2,["H3130"]],[2,3,["H3427"]],[3,5,["H4714"]],[5,6,["H1931"]],[6,9,["H1"]],[9,10,["H1004"]],[10,12,["H3130"]],[12,13,["H2421"]],[13,15,["H3967"]],[15,17,["H6235"]],[17,18,["H8141"]]]},{"k":1529,"v":[[0,2,["H3130"]],[2,3,["H7200"]],[3,4,["H669"]],[4,5,["H1121"]],[5,8,["H8029"]],[8,11,["H1121"]],[11,12,["H1571"]],[12,14,["H4353"]],[14,16,["H1121"]],[16,18,["H4519"]],[18,21,["H3205"]],[21,22,["H5921"]],[22,23,["H3130"]],[23,24,["H1290"]]]},{"k":1530,"v":[[0,2,["H3130"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H251"]],[6,7,["H595"]],[7,8,["H4191"]],[8,10,["H430"]],[10,13,["H6485","H6485"]],[13,16,["H5927"]],[16,19,["H4480"]],[19,20,["H2063"]],[20,21,["H776"]],[21,22,["H413"]],[22,24,["H776"]],[24,25,["H834"]],[25,27,["H7650"]],[27,29,["H85"]],[29,31,["H3327"]],[31,34,["H3290"]]]},{"k":1531,"v":[[0,2,["H3130"]],[2,5,["H7650"]],[5,6,["(H853)"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,11,["H559"]],[11,12,["H430"]],[12,15,["H6485","H6485"]],[15,21,["H5927","(H853)"]],[21,23,["H6106"]],[23,25,["H4480","H2088"]]]},{"k":1532,"v":[[0,2,["H3130"]],[2,3,["H4191"]],[3,6,["H3967"]],[6,8,["H6235"]],[8,9,["H8141"]],[9,10,["H1121"]],[10,13,["H2590"]],[13,18,["H3455"]],[18,21,["H727"]],[21,23,["H4714"]]]},{"k":1533,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H1121"]],[8,10,["H3478"]],[10,12,["H935"]],[12,14,["H4714"]],[14,16,["H376"]],[16,19,["H1004"]],[19,20,["H935"]],[20,21,["H854"]],[21,22,["H3290"]]]},{"k":1534,"v":[[0,1,["H7205"]],[1,2,["H8095"]],[2,3,["H3878"]],[3,5,["H3063"]]]},{"k":1535,"v":[[0,1,["H3485"]],[1,2,["H2074"]],[2,4,["H1144"]]]},{"k":1536,"v":[[0,1,["H1835"]],[1,3,["H5321"]],[3,4,["H1410"]],[4,6,["H836"]]]},{"k":1537,"v":[[0,2,["H3605"]],[2,4,["H5315"]],[4,7,["H3318"]],[7,10,["H3409"]],[10,12,["H3290"]],[12,13,["H1961"]],[13,14,["H7657"]],[14,15,["H5315"]],[15,17,["H3130"]],[17,18,["H1961"]],[18,20,["H4714"]],[20,21,[]]]},{"k":1538,"v":[[0,2,["H3130"]],[2,3,["H4191"]],[3,5,["H3605"]],[5,7,["H251"]],[7,9,["H3605"]],[9,10,["H1931"]],[10,11,["H1755"]]]},{"k":1539,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H6509"]],[7,10,["H8317"]],[10,12,["H7235"]],[12,16,["H6105","H3966","H3966"]],[16,19,["H776"]],[19,21,["H4390"]],[21,22,["H854"]],[22,23,[]]]},{"k":1540,"v":[[0,4,["H6965"]],[4,6,["H2319"]],[6,7,["H4428"]],[7,8,["H5921"]],[8,9,["H4714"]],[9,10,["H834"]],[10,11,["H3045"]],[11,12,["H3808","(H853)"]],[12,13,["H3130"]]]},{"k":1541,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H2009"]],[7,9,["H5971"]],[9,12,["H1121"]],[12,14,["H3478"]],[14,16,["H7227"]],[16,18,["H6099"]],[18,19,["H4480"]],[19,20,[]]]},{"k":1542,"v":[[0,1,["H3051"]],[1,6,["H2449"]],[6,9,["H6435"]],[9,11,["H7235"]],[11,16,["H1961"]],[16,18,["H3588"]],[18,21,["H7122"]],[21,23,["H4421"]],[23,24,["H1931"]],[24,25,["H3254"]],[25,26,["H1571"]],[26,27,["H5921"]],[27,29,["H8130"]],[29,31,["H3898"]],[31,38,["H5927"]],[38,40,["H4480"]],[40,42,["H776"]]]},{"k":1543,"v":[[0,4,["H7760"]],[4,5,["H5921"]],[5,7,["H8269","H4522"]],[7,8,["H4616"]],[8,9,["H6031"]],[9,13,["H5450"]],[13,16,["H1129"]],[16,18,["H6547"]],[18,19,["H4543"]],[19,20,["H5892","(H853)"]],[20,21,["H6619"]],[21,23,["H7486"]]]},{"k":1544,"v":[[0,3,["H834"]],[3,5,["H6031"]],[5,8,["H3651"]],[8,10,["H7235"]],[10,12,["H3651","H6555"]],[12,16,["H6973"]],[16,17,["H4480","H6440"]],[17,20,["H1121"]],[20,22,["H3478"]]]},{"k":1545,"v":[[0,3,["H4714"]],[3,4,["(H853)"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,10,["H5647"]],[10,12,["H6531"]]]},{"k":1546,"v":[[0,3,["(H853)"]],[3,5,["H2416"]],[5,6,["H4843"]],[6,8,["H7186"]],[8,9,["H5656"]],[9,11,["H2563"]],[11,14,["H3843"]],[14,18,["H3605"]],[18,20,["H5656"]],[20,23,["H7704","(H853)"]],[23,24,["H3605"]],[24,26,["H5656"]],[26,27,["H834"]],[27,31,["H5647"]],[31,34,["H6531"]]]},{"k":1547,"v":[[0,3,["H4428"]],[3,5,["H4714"]],[5,6,["H559"]],[6,9,["H5680"]],[9,10,["H3205"]],[10,12,["H834"]],[12,14,["H8034"]],[14,17,["H259"]],[17,19,["H8236"]],[19,22,["H8034"]],[22,25,["H8145"]],[25,26,["H6326"]]]},{"k":1548,"v":[[0,3,["H559"]],[3,11,["H3205"]],[11,12,["(H853)"]],[12,15,["H5680"]],[15,17,["H7200"]],[17,19,["H5921"]],[19,21,["H70"]],[21,22,["H518"]],[22,23,["H1931"]],[23,26,["H1121"]],[26,30,["H4191"]],[30,33,["H518"]],[33,34,["H1931"]],[34,37,["H1323"]],[37,41,["H2425"]]]},{"k":1549,"v":[[0,3,["H3205"]],[3,4,["H3372","(H853)"]],[4,5,["H430"]],[5,7,["H6213"]],[7,8,["H3808"]],[8,9,["H834"]],[9,11,["H4428"]],[11,13,["H4714"]],[13,14,["H1696","H413"]],[14,17,["H2421","(H853)"]],[17,20,["H3206"]],[20,21,[]]]},{"k":1550,"v":[[0,3,["H4428"]],[3,5,["H4714"]],[5,7,["H7121"]],[7,9,["H3205"]],[9,11,["H559"]],[11,14,["H4069"]],[14,17,["H6213"]],[17,18,["H2088"]],[18,19,["H1697"]],[19,22,["H2421","(H853)"]],[22,25,["H3206"]],[25,26,[]]]},{"k":1551,"v":[[0,3,["H3205"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H6547"]],[6,7,["H3588"]],[7,10,["H5680"]],[10,12,["H3808"]],[12,15,["H4713"]],[15,16,["H802"]],[16,17,["H3588"]],[17,18,["H2007"]],[18,20,["H2422"]],[20,23,["H3205"]],[23,24,["H2962"]],[24,26,["H3205"]],[26,28,["H935"]],[28,29,["H413"]],[29,30,[]]]},{"k":1552,"v":[[0,2,["H430"]],[2,4,["H3190"]],[4,7,["H3205"]],[7,10,["H5971"]],[10,11,["H7235"]],[11,15,["H6105","H3966"]]]},{"k":1553,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,8,["H3205"]],[8,9,["H3372","(H853)"]],[9,10,["H430"]],[10,13,["H6213"]],[13,15,["H1004"]]]},{"k":1554,"v":[[0,2,["H6547"]],[2,3,["H6680"]],[3,4,["H3605"]],[4,6,["H5971"]],[6,7,["H559"]],[7,8,["H3605"]],[8,9,["H1121"]],[9,12,["H3209"]],[12,15,["H7993"]],[15,18,["H2975"]],[18,20,["H3605"]],[20,21,["H1323"]],[21,25,["H2421"]]]},{"k":1555,"v":[[0,3,["H1980"]],[3,5,["H376"]],[5,8,["H4480","H1004"]],[8,10,["H3878"]],[10,12,["H3947"]],[12,15,["(H853)"]],[15,16,["H1323"]],[16,18,["H3878"]]]},{"k":1556,"v":[[0,3,["H802"]],[3,4,["H2029"]],[4,6,["H3205"]],[6,8,["H1121"]],[8,12,["H7200"]],[12,14,["H3588"]],[14,15,["H1931"]],[15,18,["H2896"]],[18,21,["H6845"]],[21,23,["H7969"]],[23,24,["H3391"]]]},{"k":1557,"v":[[0,4,["H3201"]],[4,5,["H3808"]],[5,6,["H5750"]],[6,7,["H6845"]],[7,10,["H3947"]],[10,14,["H8392"]],[14,16,["H1573"]],[16,18,["H2560"]],[18,21,["H2564"]],[21,24,["H2203"]],[24,26,["H7760","(H853)"]],[26,28,["H3206"]],[28,32,["H7760"]],[32,36,["H5488"]],[36,37,["H5921"]],[37,39,["H2975"]],[39,40,["H8193"]]]},{"k":1558,"v":[[0,3,["H269"]],[3,4,["H3320"]],[4,6,["H4480","H7350"]],[6,8,["H3045"]],[8,9,["H4100"]],[9,12,["H6213"]],[12,14,[]]]},{"k":1559,"v":[[0,3,["H1323"]],[3,5,["H6547"]],[5,7,["H3381"]],[7,9,["H7364"]],[9,11,["H5921"]],[11,13,["H2975"]],[13,16,["H5291"]],[16,18,["H1980"]],[18,19,["H5921"]],[19,21,["H2975"]],[21,22,["H3027"]],[22,26,["H7200","(H853)"]],[26,28,["H8392"]],[28,29,["H8432"]],[29,31,["H5488"]],[31,33,["H7971","(H853)"]],[33,35,["H519"]],[35,37,["H3947"]],[37,38,[]]]},{"k":1560,"v":[[0,5,["H6605"]],[5,8,["H7200","(H853)"]],[8,10,["H3206"]],[10,12,["H2009"]],[12,14,["H5288"]],[14,15,["H1058"]],[15,19,["H2550"]],[19,20,["H5921"]],[20,23,["H559"]],[23,24,["H2088"]],[24,30,["H4480","H3206","H5680"]]]},{"k":1561,"v":[[0,2,["H559"]],[2,4,["H269"]],[4,5,["H413"]],[5,6,["H6547"]],[6,7,["H1323"]],[7,10,["H1980"]],[10,12,["H7121"]],[12,16,["H802","H3243"]],[16,17,["H4480"]],[17,20,["H5680"]],[20,24,["H3243","(H853)"]],[24,26,["H3206"]],[26,28,[]]]},{"k":1562,"v":[[0,2,["H6547"]],[2,3,["H1323"]],[3,4,["H559"]],[4,7,["H1980"]],[7,10,["H5959"]],[10,11,["H1980"]],[11,13,["H7121"]],[13,15,["H3206","(H853)"]],[15,16,["H517"]]]},{"k":1563,"v":[[0,2,["H6547"]],[2,3,["H1323"]],[3,4,["H559"]],[4,10,["H1980","(H853)","H2088","H3206"]],[10,12,["H3243"]],[12,17,["H589"]],[17,19,["H5414"]],[19,20,["(H853)"]],[20,22,["H7939"]],[22,25,["H802"]],[25,26,["H3947"]],[26,28,["H3206"]],[28,30,["H5134"]],[30,31,[]]]},{"k":1564,"v":[[0,3,["H3206"]],[3,4,["H1431"]],[4,7,["H935"]],[7,10,["H6547"]],[10,11,["H1323"]],[11,14,["H1961"]],[14,16,["H1121"]],[16,19,["H7121"]],[19,21,["H8034"]],[21,22,["H4872"]],[22,25,["H559"]],[25,26,["H3588"]],[26,28,["H4871"]],[28,31,["H4480"]],[31,33,["H4325"]]]},{"k":1565,"v":[[0,5,["H1961"]],[5,7,["H1992"]],[7,8,["H3117"]],[8,10,["H4872"]],[10,12,["H1431"]],[12,16,["H3318"]],[16,17,["H413"]],[17,19,["H251"]],[19,21,["H7200"]],[21,24,["H5450"]],[24,27,["H7200"]],[27,29,["H376","H4713"]],[29,30,["H5221"]],[30,32,["H376","H5680"]],[32,36,["H4480","H251"]]]},{"k":1566,"v":[[0,3,["H6437"]],[3,5,["H3541"]],[5,8,["H3541"]],[8,12,["H7200"]],[12,13,["H3588"]],[13,16,["H369"]],[16,17,["H376"]],[17,19,["H5221","(H853)"]],[19,21,["H4713"]],[21,23,["H2934"]],[23,27,["H2344"]]]},{"k":1567,"v":[[0,5,["H3318"]],[5,7,["H8145"]],[7,8,["H3117"]],[8,9,["H2009"]],[9,10,["H8147"]],[10,11,["H376"]],[11,14,["H5680"]],[14,16,["H5327"]],[16,19,["H559"]],[19,25,["H7563"]],[25,26,["H4100"]],[26,27,["H5221"]],[27,30,["H7453"]]]},{"k":1568,"v":[[0,3,["H559"]],[3,4,["H4310"]],[4,5,["H7760"]],[5,8,["H8269"]],[8,11,["H8199"]],[11,12,["H5921"]],[12,14,["H559"]],[14,15,["H859"]],[15,17,["H2026"]],[17,19,["H834"]],[19,21,["H2026","(H853)"]],[21,23,["H4713"]],[23,25,["H4872"]],[25,26,["H3372"]],[26,28,["H559"]],[28,29,["H403"]],[29,31,["H1697"]],[31,33,["H3045"]]]},{"k":1569,"v":[[0,3,["H6547"]],[3,4,["H8085"]],[4,5,["H2088","(H853)"]],[5,6,["H1697"]],[6,8,["H1245"]],[8,10,["H2026","(H853)"]],[10,11,["H4872"]],[11,13,["H4872"]],[13,14,["H1272"]],[14,17,["H4480","H6440"]],[17,19,["H6547"]],[19,21,["H3427"]],[21,24,["H776"]],[24,26,["H4080"]],[26,30,["H3427"]],[30,31,["H5921"]],[31,33,["H875"]]]},{"k":1570,"v":[[0,3,["H3548"]],[3,5,["H4080"]],[5,7,["H7651"]],[7,8,["H1323"]],[8,11,["H935"]],[11,13,["H1802"]],[13,16,["H4390","(H853)"]],[16,18,["H7298"]],[18,20,["H8248"]],[20,22,["H1"]],[22,23,["H6629"]]]},{"k":1571,"v":[[0,3,["H7462"]],[3,4,["H935"]],[4,8,["H1644"]],[8,10,["H4872"]],[10,12,["H6965"]],[12,14,["H3467"]],[14,17,["H8248","(H853)"]],[17,19,["H6629"]]]},{"k":1572,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,6,["H7467"]],[6,8,["H1"]],[8,10,["H559"]],[10,11,["H4069"]],[11,17,["H935"]],[17,19,["H4116"]],[19,21,["H3117"]]]},{"k":1573,"v":[[0,3,["H559"]],[3,5,["H376","H4713"]],[5,6,["H5337"]],[6,11,["H4480","H3027"]],[11,14,["H7462"]],[14,16,["H1571"]],[16,19,["H1802","H1802"]],[19,23,["H8248","(H853)"]],[23,25,["H6629"]]]},{"k":1574,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1323"]],[6,8,["H346"]],[8,11,["H4100"]],[11,13,["H2088"]],[13,17,["H5800","(H853)"]],[17,19,["H376"]],[19,20,["H7121"]],[20,25,["H398"]],[25,26,["H3899"]]]},{"k":1575,"v":[[0,2,["H4872"]],[2,4,["H2974"]],[4,6,["H3427"]],[6,7,["H854"]],[7,9,["H376"]],[9,12,["H5414"]],[12,13,["H4872","(H853)"]],[13,14,["H6855"]],[14,16,["H1323"]]]},{"k":1576,"v":[[0,3,["H3205"]],[3,6,["H1121"]],[6,9,["H7121","(H853)"]],[9,11,["H8034"]],[11,12,["H1648"]],[12,13,["H3588"]],[13,15,["H559"]],[15,18,["H1961"]],[18,20,["H1616"]],[20,23,["H5237"]],[23,24,["H776"]]]},{"k":1577,"v":[[0,5,["H1961"]],[5,9,["H3117","H7227","H1992"]],[9,12,["H4428"]],[12,14,["H4714"]],[14,15,["H4191"]],[15,18,["H1121"]],[18,20,["H3478"]],[20,21,["H584"]],[21,24,["H4480"]],[24,26,["H5656"]],[26,29,["H2199"]],[29,32,["H7775"]],[32,34,["H5927"]],[34,35,["H413"]],[35,36,["H430"]],[36,39,["H4480"]],[39,41,["H5656"]]]},{"k":1578,"v":[[0,2,["H430"]],[2,3,["H8085","(H853)"]],[3,5,["H5009"]],[5,7,["H430"]],[7,8,["H2142","(H853)"]],[8,10,["H1285"]],[10,11,["H854"]],[11,12,["H85"]],[12,13,["H854"]],[13,14,["H3327"]],[14,16,["H854"]],[16,17,["H3290"]]]},{"k":1579,"v":[[0,2,["H430"]],[2,4,["H7200","(H853)"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,10,["H430"]],[10,12,["H3045"]],[12,14,[]]]},{"k":1580,"v":[[0,2,["H4872"]],[2,3,["H1961","H7462","(H853)"]],[3,5,["H6629"]],[5,7,["H3503"]],[7,11,["H2859"]],[11,13,["H3548"]],[13,15,["H4080"]],[15,18,["H5090","(H853)"]],[18,20,["H6629"]],[20,23,["H310"]],[23,26,["H4057"]],[26,28,["H935"]],[28,29,["H413"]],[29,31,["H2022"]],[31,33,["H430"]],[33,36,["H2722"]]]},{"k":1581,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H7200"]],[7,8,["H413"]],[8,12,["H3827"]],[12,14,["H784"]],[14,18,["H4480","H8432"]],[18,21,["H5572"]],[21,24,["H7200"]],[24,26,["H2009"]],[26,28,["H5572"]],[28,29,["H1197"]],[29,31,["H784"]],[31,34,["H5572"]],[34,36,["H369"]],[36,37,["H398"]]]},{"k":1582,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,6,["H4994"]],[6,8,["H5493"]],[8,10,["H7200"]],[10,11,["H2088"]],[11,12,["H1419","(H853)"]],[12,13,["H4758"]],[13,14,["H4069"]],[14,16,["H5572"]],[16,18,["H3808"]],[18,19,["H1197"]]]},{"k":1583,"v":[[0,4,["H3068"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,9,["H5493"]],[9,11,["H7200"]],[11,12,["H430"]],[12,13,["H7121"]],[13,14,["H413"]],[14,19,["H4480","H8432"]],[19,22,["H5572"]],[22,24,["H559"]],[24,25,["H4872"]],[25,26,["H4872"]],[26,29,["H559"]],[29,30,["H2009"]],[30,32,[]]]},{"k":1584,"v":[[0,3,["H559"]],[3,6,["H7126","H408"]],[6,7,["H1988"]],[7,9,["H5394"]],[9,11,["H5275"]],[11,13,["H4480","H5921"]],[13,15,["H7272"]],[15,16,["H3588"]],[16,18,["H4725"]],[18,19,["H834","H5921"]],[19,20,["H859"]],[20,21,["H5975"]],[21,23,["H6944"]],[23,24,["H127"]]]},{"k":1585,"v":[[0,3,["H559"]],[3,4,["H595"]],[4,7,["H430"]],[7,10,["H1"]],[10,12,["H430"]],[12,14,["H85"]],[14,16,["H430"]],[16,18,["H3327"]],[18,21,["H430"]],[21,23,["H3290"]],[23,25,["H4872"]],[25,26,["H5641"]],[26,28,["H6440"]],[28,29,["H3588"]],[29,32,["H3372"]],[32,34,["H4480","H5027"]],[34,35,["H413"]],[35,36,["H430"]]]},{"k":1586,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,8,["H7200","H7200","(H853)"]],[8,10,["H6040"]],[10,13,["H5971"]],[13,14,["H834"]],[14,17,["H4714"]],[17,20,["H8085"]],[20,22,["H6818"]],[22,25,["H4480","H6440"]],[25,27,["H5065"]],[27,28,["H3588"]],[28,30,["H3045","(H853)"]],[30,32,["H4341"]]]},{"k":1587,"v":[[0,5,["H3381"]],[5,7,["H5337"]],[7,12,["H4480","H3027"]],[12,15,["H4714"]],[15,20,["H5927"]],[20,22,["H4480"]],[22,23,["H1931"]],[23,24,["H776"]],[24,25,["H413"]],[25,27,["H2896"]],[27,28,["H776"]],[28,31,["H7342"]],[31,32,["H413"]],[32,34,["H776"]],[34,35,["H2100"]],[35,37,["H2461"]],[37,39,["H1706"]],[39,40,["H413"]],[40,42,["H4725"]],[42,45,["H3669"]],[45,48,["H2850"]],[48,51,["H567"]],[51,54,["H6522"]],[54,57,["H2340"]],[57,60,["H2983"]]]},{"k":1588,"v":[[0,1,["H6258"]],[1,3,["H2009"]],[3,5,["H6818"]],[5,8,["H1121"]],[8,10,["H3478"]],[10,12,["H935"]],[12,13,["H413"]],[13,18,["H1571"]],[18,19,["H7200","(H853)"]],[19,21,["H3906"]],[21,22,["H834"]],[22,24,["H4714"]],[24,25,["H3905"]],[25,26,[]]]},{"k":1589,"v":[[0,1,["H1980"]],[1,2,["H6258"]],[2,7,["H7971"]],[7,9,["H413"]],[9,10,["H6547"]],[10,15,["H3318","(H853)"]],[15,17,["H5971"]],[17,19,["H1121"]],[19,21,["H3478"]],[21,24,["H4480","H4714"]]]},{"k":1590,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H430"]],[5,6,["H4310"]],[6,8,["H595"]],[8,9,["H3588"]],[9,12,["H1980"]],[12,13,["H413"]],[13,14,["H6547"]],[14,16,["H3588"]],[16,20,["H3318","(H853)"]],[20,22,["H1121"]],[22,24,["H3478"]],[24,27,["H4480","H4714"]]]},{"k":1591,"v":[[0,3,["H559"]],[3,4,["H3588"]],[4,7,["H1961"]],[7,8,["H5973"]],[8,11,["H2088"]],[11,15,["H226"]],[15,18,["H3588"]],[18,19,["H595"]],[19,21,["H7971"]],[21,27,["H3318","(H853)"]],[27,29,["H5971"]],[29,32,["H4480","H4714"]],[32,35,["H5647","(H853)"]],[35,36,["H430"]],[36,37,["H5921"]],[37,38,["H2088"]],[38,39,["H2022"]]]},{"k":1592,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H430"]],[5,6,["H2009"]],[6,8,["H595"]],[8,9,["H935"]],[9,10,["H413"]],[10,12,["H1121"]],[12,14,["H3478"]],[14,17,["H559"]],[17,21,["H430"]],[21,24,["H1"]],[24,26,["H7971"]],[26,28,["H413"]],[28,33,["H559"]],[33,36,["H4100"]],[36,39,["H8034"]],[39,40,["H4100"]],[40,43,["H559"]],[43,44,["H413"]],[44,45,[]]]},{"k":1593,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H4872"]],[5,7,["H1961"]],[7,8,["H834"]],[8,10,["H1961"]],[10,13,["H559"]],[13,14,["H3541"]],[14,17,["H559"]],[17,20,["H1121"]],[20,22,["H3478"]],[22,24,["H1961"]],[24,26,["H7971"]],[26,28,["H413"]],[28,29,[]]]},{"k":1594,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H5750"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H3541"]],[7,10,["H559"]],[10,11,["H413"]],[11,13,["H1121"]],[13,15,["H3478"]],[15,17,["H3068"]],[17,18,["H430"]],[18,21,["H1"]],[21,23,["H430"]],[23,25,["H85"]],[25,27,["H430"]],[27,29,["H3327"]],[29,32,["H430"]],[32,34,["H3290"]],[34,36,["H7971"]],[36,38,["H413"]],[38,40,["H2088"]],[40,43,["H8034"]],[43,45,["H5769"]],[45,47,["H2088"]],[47,50,["H2143"]],[50,53,["H1755","H1755"]]]},{"k":1595,"v":[[0,1,["H1980"]],[1,3,["H622","(H853)"]],[3,5,["H2205"]],[5,7,["H3478"]],[7,10,["H559"]],[10,11,["H413"]],[11,14,["H3068"]],[14,15,["H430"]],[15,18,["H1"]],[18,20,["H430"]],[20,22,["H85"]],[22,24,["H3327"]],[24,27,["H3290"]],[27,28,["H7200"]],[28,29,["H413"]],[29,31,["H559"]],[31,35,["H6485","H6485"]],[35,42,["H6213"]],[42,46,["H4714"]]]},{"k":1596,"v":[[0,4,["H559"]],[4,9,["H5927","(H853)"]],[9,13,["H4480","H6040"]],[13,15,["H4714"]],[15,16,["H413"]],[16,18,["H776"]],[18,21,["H3669"]],[21,24,["H2850"]],[24,27,["H567"]],[27,30,["H6522"]],[30,33,["H2340"]],[33,36,["H2983"]],[36,37,["H413"]],[37,39,["H776"]],[39,40,["H2100"]],[40,42,["H2461"]],[42,44,["H1706"]]]},{"k":1597,"v":[[0,4,["H8085"]],[4,7,["H6963"]],[7,11,["H935"]],[11,12,["H859"]],[12,15,["H2205"]],[15,17,["H3478"]],[17,18,["H413"]],[18,20,["H4428"]],[20,22,["H4714"]],[22,26,["H559"]],[26,27,["H413"]],[27,30,["H3068"]],[30,31,["H430"]],[31,34,["H5680"]],[34,36,["H7136"]],[36,37,["H5921"]],[37,40,["H6258"]],[40,43,["H1980"]],[43,46,["H4994"]],[46,47,["H7969"]],[47,48,["H3117"]],[48,49,["H1870"]],[49,52,["H4057"]],[52,56,["H2076"]],[56,59,["H3068"]],[59,61,["H430"]]]},{"k":1598,"v":[[0,2,["H589"]],[2,4,["H3045"]],[4,5,["H3588"]],[5,7,["H4428"]],[7,9,["H4714"]],[9,11,["H3808"]],[11,12,["H5414"]],[12,14,["H1980"]],[14,15,["H3808"]],[15,19,["H2389"]],[19,20,["H3027"]]]},{"k":1599,"v":[[0,5,["H7971","(H853)"]],[5,7,["H3027"]],[7,9,["H5221","(H853)"]],[9,10,["H4714"]],[10,12,["H3605"]],[12,14,["H6381"]],[14,15,["H834"]],[15,18,["H6213"]],[18,21,["H7130"]],[21,24,["H310"]],[24,25,["H3651"]],[25,30,["H7971"]]]},{"k":1600,"v":[[0,4,["H5414"]],[4,5,["H2088"]],[5,6,["H5971","(H853)"]],[6,7,["H2580"]],[7,10,["H5869"]],[10,13,["H4714"]],[13,19,["H1961"]],[19,21,["H3588"]],[21,23,["H1980"]],[23,26,["H3808"]],[26,27,["H1980"]],[27,28,["H7387"]]]},{"k":1601,"v":[[0,3,["H802"]],[3,5,["H7592"]],[5,8,["H4480","H7934"]],[8,13,["H4480","H1481"]],[13,16,["H1004"]],[16,17,["H3627"]],[17,19,["H3701"]],[19,21,["H3627"]],[21,23,["H2091"]],[23,25,["H8071"]],[25,29,["H7760"]],[29,31,["H5921"]],[31,33,["H1121"]],[33,35,["H5921"]],[35,37,["H1323"]],[37,41,["H5337","(H853)"]],[41,43,["H4714"]]]},{"k":1602,"v":[[0,2,["H4872"]],[2,3,["H6030"]],[3,5,["H559"]],[5,7,["H2005"]],[7,10,["H3808"]],[10,11,["H539"]],[11,13,["H3808"]],[13,14,["H8085"]],[14,17,["H6963"]],[17,18,["H3588"]],[18,21,["H559"]],[21,23,["H3068"]],[23,25,["H3808"]],[25,26,["H7200"]],[26,27,["H413"]],[27,28,[]]]},{"k":1603,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,9,["H4100","H2088"]],[9,12,["H3027"]],[12,15,["H559"]],[15,17,["H4294"]]]},{"k":1604,"v":[[0,3,["H559"]],[3,4,["H7993"]],[4,8,["H776"]],[8,11,["H7993"]],[11,15,["H776"]],[15,18,["H1961"]],[18,20,["H5175"]],[20,22,["H4872"]],[22,23,["H5127"]],[23,25,["H4480","H6440"]],[25,26,[]]]},{"k":1605,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H7971"]],[8,10,["H3027"]],[10,12,["H270"]],[12,16,["H2180"]],[16,20,["H7971"]],[20,22,["H3027"]],[22,24,["H2388"]],[24,28,["H1961"]],[28,30,["H4294"]],[30,33,["H3709"]]]},{"k":1606,"v":[[0,1,["H4616"]],[1,4,["H539"]],[4,5,["H3588"]],[5,7,["H3068"]],[7,8,["H430"]],[8,11,["H1"]],[11,13,["H430"]],[13,15,["H85"]],[15,17,["H430"]],[17,19,["H3327"]],[19,22,["H430"]],[22,24,["H3290"]],[24,26,["H7200"]],[26,27,["H413"]],[27,28,[]]]},{"k":1607,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H5750"]],[5,8,["H935"]],[8,9,["H4994"]],[9,11,["H3027"]],[11,14,["H2436"]],[14,17,["H935"]],[17,19,["H3027"]],[19,22,["H2436"]],[22,28,["H3318"]],[28,29,["H2009"]],[29,31,["H3027"]],[31,33,["H6879"]],[33,35,["H7950"]]]},{"k":1608,"v":[[0,3,["H559"]],[3,4,["H7725"]],[4,6,["H3027"]],[6,7,["H413"]],[7,9,["H2436"]],[9,13,["H7725"]],[13,15,["H3027"]],[15,16,["H413"]],[16,18,["H2436"]],[18,23,["H3318"]],[23,26,["H4480","H2436"]],[26,28,["H2009"]],[28,32,["H7725"]],[32,36,["H1320"]]]},{"k":1609,"v":[[0,6,["H1961"]],[6,7,["H518"]],[7,10,["H3808"]],[10,11,["H539"]],[11,13,["H3808"]],[13,14,["H8085"]],[14,17,["H6963"]],[17,20,["H7223"]],[20,21,["H226"]],[21,25,["H539"]],[25,27,["H6963"]],[27,30,["H314"]],[30,31,["H226"]]]},{"k":1610,"v":[[0,6,["H1961"]],[6,7,["H518"]],[7,10,["H3808"]],[10,11,["H539"]],[11,12,["H1571"]],[12,13,["H428"]],[13,14,["H8147"]],[14,15,["H226"]],[15,16,["H3808"]],[16,17,["H8085"]],[17,20,["H6963"]],[20,24,["H3947"]],[24,27,["H4480","H4325"]],[27,30,["H2975"]],[30,32,["H8210"]],[32,36,["H3004"]],[36,40,["H4325"]],[40,41,["H834"]],[41,43,["H3947"]],[43,45,["H4480"]],[45,47,["H2975"]],[47,49,["H1961"]],[49,50,["H1818"]],[50,53,["H3006"]],[53,54,[]]]},{"k":1611,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3068"]],[6,7,["H994"]],[7,9,["H136"]],[9,10,["H595"]],[10,12,["H3808"]],[12,13,["H376","H1697"]],[13,14,["H1571"]],[14,15,["H4480","H8543","H1571","H4480","H8032"]],[15,16,["H1571"]],[16,17,["H4480","H227"]],[17,20,["H1696"]],[20,21,["H413"]],[21,23,["H5650"]],[23,24,["H3588"]],[24,25,["H595"]],[25,27,["H3515"]],[27,29,["H6310"]],[29,33,["H3515"]],[33,34,["H3956"]]]},{"k":1612,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H4310"]],[7,9,["H7760"]],[9,10,["H120"]],[10,11,["H6310"]],[11,12,["H176"]],[12,13,["H4310"]],[13,14,["H7760"]],[14,16,["H483"]],[16,17,["H176"]],[17,18,["H2795"]],[18,19,["H176"]],[19,21,["H6493"]],[21,22,["H176"]],[22,24,["H5787"]],[24,26,["H3808"]],[26,27,["H595"]],[27,29,["H3068"]]]},{"k":1613,"v":[[0,1,["H6258"]],[1,3,["H1980"]],[3,5,["H595"]],[5,7,["H1961"]],[7,8,["H5973"]],[8,10,["H6310"]],[10,12,["H3384"]],[12,14,["H834"]],[14,17,["H1696"]]]},{"k":1614,"v":[[0,3,["H559"]],[3,4,["H994"]],[4,6,["H136"]],[6,7,["H7971"]],[7,10,["H4994"]],[10,13,["H3027"]],[13,19,["H7971"]]]},{"k":1615,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,10,["H4872"]],[10,13,["H559"]],[13,15,["H3808"]],[15,16,["H175"]],[16,18,["H3881"]],[18,20,["H251"]],[20,22,["H3045"]],[22,23,["H3588"]],[23,24,["H1931"]],[24,27,["H1696","H1696"]],[27,29,["H1571"]],[29,30,["H2009"]],[30,31,["H1931"]],[31,33,["H3318"]],[33,35,["H7125"]],[35,40,["H7200"]],[40,45,["H8055"]],[45,48,["H3820"]]]},{"k":1616,"v":[[0,4,["H1696"]],[4,5,["H413"]],[5,8,["H7760","(H853)"]],[8,9,["H1697"]],[9,12,["H6310"]],[12,14,["H595"]],[14,16,["H1961"]],[16,17,["H5973"]],[17,19,["H6310"]],[19,21,["H5973"]],[21,23,["H6310"]],[23,26,["H3384"]],[26,27,["(H853)"]],[27,28,["H834"]],[28,31,["H6213"]]]},{"k":1617,"v":[[0,2,["H1931"]],[2,6,["H1696"]],[6,7,["H413"]],[7,9,["H5971"]],[9,13,["H1961"]],[13,15,["H1931"]],[15,17,["H1961"]],[17,23,["H6310"]],[23,25,["H859"]],[25,27,["H1961"]],[27,32,["H430"]]]},{"k":1618,"v":[[0,4,["H3947"]],[4,5,["H2088"]],[5,6,["H4294"]],[6,9,["H3027"]],[9,10,["H834"]],[10,13,["H6213","(H853)"]],[13,14,["H226"]]]},{"k":1619,"v":[[0,2,["H4872"]],[2,3,["H1980"]],[3,5,["H7725"]],[5,6,["H413"]],[6,7,["H3503"]],[7,11,["H2859"]],[11,13,["H559"]],[13,18,["H1980"]],[18,21,["H4994"]],[21,23,["H7725"]],[23,24,["H413"]],[24,26,["H251"]],[26,27,["H834"]],[27,30,["H4714"]],[30,32,["H7200"]],[32,36,["H5750"]],[36,37,["H2416"]],[37,39,["H3503"]],[39,40,["H559"]],[40,42,["H4872"]],[42,43,["H1980"]],[43,45,["H7965"]]]},{"k":1620,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H4080"]],[8,9,["H1980"]],[9,10,["H7725"]],[10,12,["H4714"]],[12,13,["H3588"]],[13,14,["H3605"]],[14,16,["H376"]],[16,18,["H4191"]],[18,20,["H1245","(H853)"]],[20,22,["H5315"]]]},{"k":1621,"v":[[0,2,["H4872"]],[2,3,["H3947","(H853)"]],[3,5,["H802"]],[5,8,["H1121"]],[8,10,["H7392"]],[10,12,["H5921"]],[12,14,["H2543"]],[14,17,["H7725"]],[17,20,["H776"]],[20,22,["H4714"]],[22,24,["H4872"]],[24,25,["H3947","(H853)"]],[25,27,["H4294"]],[27,29,["H430"]],[29,32,["H3027"]]]},{"k":1622,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H1980"]],[9,11,["H7725"]],[11,13,["H4714"]],[13,14,["H7200"]],[14,17,["H6213"]],[17,18,["H3605"]],[18,20,["H4159"]],[20,21,["H6440"]],[21,22,["H6547"]],[22,23,["H834"]],[23,26,["H7760"]],[26,29,["H3027"]],[29,31,["H589"]],[31,33,["H2388","(H853)"]],[33,35,["H3820"]],[35,39,["H3808"]],[39,40,["(H853)"]],[40,42,["H5971"]],[42,43,["H7971"]]]},{"k":1623,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,6,["H6547"]],[6,7,["H3541"]],[7,8,["H559"]],[8,10,["H3068"]],[10,11,["H3478"]],[11,14,["H1121"]],[14,17,["H1060"]]]},{"k":1624,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["(H853)"]],[6,8,["H1121"]],[8,9,["H7971"]],[9,13,["H5647"]],[13,18,["H3985"]],[18,22,["H7971"]],[22,23,["H2009"]],[23,24,["H595"]],[24,26,["H2026","(H853)"]],[26,28,["H1121"]],[28,31,["H1060"]]]},{"k":1625,"v":[[0,5,["H1961"]],[5,8,["H1870"]],[8,11,["H4411"]],[11,14,["H3068"]],[14,15,["H6298"]],[15,18,["H1245"]],[18,20,["H4191"]],[20,21,[]]]},{"k":1626,"v":[[0,2,["H6855"]],[2,3,["H3947"]],[3,6,["H6864"]],[6,9,["H3772","(H853)"]],[9,11,["H6190"]],[11,14,["H1121"]],[14,16,["H5060"]],[16,20,["H7272"]],[20,22,["H559"]],[22,23,["H3588"]],[23,25,["H1818"]],[25,26,["H2860"]],[26,28,["H859"]],[28,30,[]]]},{"k":1627,"v":[[0,5,["H7503","H4480"]],[5,6,["H227"]],[6,8,["H559"]],[8,10,["H1818"]],[10,11,["H2860"]],[11,17,["H4139"]]]},{"k":1628,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H175"]],[6,7,["H1980"]],[7,10,["H4057"]],[10,12,["H7125"]],[12,13,["H4872"]],[13,16,["H1980"]],[16,18,["H6298"]],[18,22,["H2022"]],[22,24,["H430"]],[24,26,["H5401"]],[26,27,[]]]},{"k":1629,"v":[[0,2,["H4872"]],[2,3,["H5046"]],[3,4,["H175","(H853)"]],[4,5,["H3605"]],[5,7,["H1697"]],[7,10,["H3068"]],[10,11,["H834"]],[11,13,["H7971"]],[13,16,["H3605"]],[16,18,["H226"]],[18,19,["H834"]],[19,22,["H6680"]],[22,23,[]]]},{"k":1630,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,5,["H1980"]],[5,8,["H622","(H853)"]],[8,9,["H3605"]],[9,11,["H2205"]],[11,14,["H1121"]],[14,16,["H3478"]]]},{"k":1631,"v":[[0,2,["H175"]],[2,3,["H1696","(H853)"]],[3,4,["H3605"]],[4,6,["H1697"]],[6,7,["H834"]],[7,9,["H3068"]],[9,11,["H1696"]],[11,12,["H413"]],[12,13,["H4872"]],[13,15,["H6213"]],[15,17,["H226"]],[17,20,["H5869"]],[20,23,["H5971"]]]},{"k":1632,"v":[[0,3,["H5971"]],[3,4,["H539"]],[4,8,["H8085"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,13,["H6485","(H853)"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,19,["H3588"]],[19,23,["H7200","(H853)"]],[23,25,["H6040"]],[25,30,["H6915"]],[30,32,["H7812"]]]},{"k":1633,"v":[[0,2,["H310"]],[2,3,["H4872"]],[3,5,["H175"]],[5,7,["H935"]],[7,9,["H559","H413"]],[9,10,["H6547"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H3068"]],[14,15,["H430"]],[15,17,["H3478"]],[17,18,["(H853)"]],[18,20,["H5971"]],[20,21,["H7971"]],[21,27,["H2287"]],[27,32,["H4057"]]]},{"k":1634,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H4310"]],[4,7,["H3068"]],[7,8,["H834"]],[8,11,["H8085"]],[11,13,["H6963"]],[13,15,["(H853)"]],[15,16,["H3478"]],[16,17,["H7971"]],[17,19,["H3045"]],[19,20,["H3808","(H853)"]],[20,22,["H3068"]],[22,23,["H1571","H3808"]],[23,26,["(H853)"]],[26,27,["H3478"]],[27,28,["H7971"]]]},{"k":1635,"v":[[0,3,["H559"]],[3,5,["H430"]],[5,8,["H5680"]],[8,10,["H7122"]],[10,11,["H5921"]],[11,15,["H1980"]],[15,18,["H4994"]],[18,19,["H7969"]],[19,20,["H3117"]],[20,21,["H1870"]],[21,24,["H4057"]],[24,26,["H2076"]],[26,29,["H3068"]],[29,31,["H430"]],[31,32,["H6435"]],[32,35,["H6293"]],[35,38,["H1698"]],[38,39,["H176"]],[39,42,["H2719"]]]},{"k":1636,"v":[[0,3,["H4428"]],[3,5,["H4714"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H4100"]],[9,12,["H4872"]],[12,14,["H175"]],[14,15,["H6544","(H853)"]],[15,17,["H5971"]],[17,20,["H4480","H4639"]],[20,21,["H1980"]],[21,25,["H5450"]]]},{"k":1637,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H2005"]],[4,6,["H5971"]],[6,9,["H776"]],[9,10,["H6258"]],[10,12,["H7227"]],[12,17,["H7673","(H853)"]],[17,20,["H4480","H5450"]]]},{"k":1638,"v":[[0,2,["H6547"]],[2,3,["H6680"]],[3,5,["H1931"]],[5,6,["H3117","(H853)"]],[6,8,["H5065"]],[8,11,["H5971"]],[11,14,["H7860"]],[14,15,["H559"]]]},{"k":1639,"v":[[0,3,["H3808"]],[3,4,["H3254"]],[4,5,["H5414"]],[5,7,["H5971"]],[7,8,["H8401"]],[8,10,["H3835"]],[10,11,["H3843"]],[11,13,["H8543","H8032"]],[13,15,["H1992"]],[15,16,["H1980"]],[16,18,["H7197"]],[18,19,["H8401"]],[19,21,[]]]},{"k":1640,"v":[[0,3,["H4971"]],[3,6,["H3843"]],[6,7,["H834"]],[7,8,["H1992"]],[8,10,["H6213"]],[10,11,["H8543","H8032"]],[11,14,["H7760"]],[14,15,["H5921"]],[15,19,["H3808"]],[19,20,["H1639"]],[20,22,["H4480"]],[22,23,["H3588"]],[23,24,["H1992"]],[24,26,["H7503"]],[26,27,["H5921","H3651"]],[27,28,["H1992"]],[28,29,["H6817"]],[29,30,["H559"]],[30,33,["H1980"]],[33,35,["H2076"]],[35,38,["H430"]]]},{"k":1641,"v":[[0,6,["H3513","H5656"]],[6,7,["H5921"]],[7,9,["H376"]],[9,13,["H6213"]],[13,18,["H408"]],[18,19,["H8159"]],[19,20,["H8267"]],[20,21,["H1697"]]]},{"k":1642,"v":[[0,3,["H5065"]],[3,6,["H5971"]],[6,8,["H3318"]],[8,11,["H7860"]],[11,14,["H559"]],[14,15,["H413"]],[15,17,["H5971"]],[17,18,["H559"]],[18,19,["H3541"]],[19,20,["H559"]],[20,21,["H6547"]],[21,24,["H369"]],[24,25,["H5414"]],[25,27,["H8401"]]]},{"k":1643,"v":[[0,1,["H1980"]],[1,2,["H859"]],[2,3,["H3947"]],[3,5,["H8401"]],[5,6,["H4480","H834"]],[6,9,["H4672"]],[9,11,["H3588"]],[11,12,["H369"]],[12,13,["H1697"]],[13,16,["H4480","H5656"]],[16,19,["H1639"]]]},{"k":1644,"v":[[0,3,["H5971"]],[3,6,["H6327"]],[6,8,["H3605"]],[8,10,["H776"]],[10,12,["H4714"]],[12,14,["H7197"]],[14,15,["H7179"]],[15,18,["H8401"]]]},{"k":1645,"v":[[0,3,["H5065"]],[3,4,["H213"]],[4,6,["H559"]],[6,7,["H3615"]],[7,9,["H4639"]],[9,11,["H3117","H3117"]],[11,12,["H1697"]],[12,14,["H834"]],[14,16,["H1961"]],[16,17,["H8401"]]]},{"k":1646,"v":[[0,3,["H7860"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,9,["H834"]],[9,10,["H6547"]],[10,11,["H5065"]],[11,13,["H7760"]],[13,14,["H5921"]],[14,17,["H5221"]],[17,19,["H559"]],[19,20,["H4069"]],[20,23,["H3808"]],[23,24,["H3615"]],[24,26,["H2706"]],[26,29,["H3835"]],[29,30,["H1571"]],[30,31,["H8543"]],[31,32,["H1571"]],[32,34,["H3117"]],[34,36,["H8543","H8032"]]]},{"k":1647,"v":[[0,3,["H7860"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,9,["H935"]],[9,11,["H6817"]],[11,12,["H413"]],[12,13,["H6547"]],[13,14,["H559"]],[14,15,["H4100"]],[15,16,["H6213"]],[16,18,["H3541"]],[18,21,["H5650"]]]},{"k":1648,"v":[[0,3,["H369"]],[3,4,["H8401"]],[4,5,["H5414"]],[5,8,["H5650"]],[8,11,["H559"]],[11,14,["H6213"]],[14,15,["H3843"]],[15,17,["H2009"]],[17,19,["H5650"]],[19,21,["H5221"]],[21,24,["H2398"]],[24,29,["H5971"]]]},{"k":1649,"v":[[0,3,["H559"]],[3,4,["H859"]],[4,6,["H7503"]],[6,9,["H7503"]],[9,10,["H5921","H3651"]],[10,11,["H859"]],[11,12,["H559"]],[12,15,["H1980"]],[15,18,["H2076"]],[18,21,["H3068"]]]},{"k":1650,"v":[[0,1,["H1980"]],[1,3,["H6258"]],[3,5,["H5647"]],[5,9,["H3808"]],[9,10,["H8401"]],[10,12,["H5414"]],[12,17,["H5414"]],[17,19,["H8506"]],[19,21,["H3843"]]]},{"k":1651,"v":[[0,3,["H7860"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,10,["H7200"]],[10,15,["H7451"]],[15,20,["H559"]],[20,23,["H3808"]],[23,24,["H1639"]],[24,28,["H4480","H3843"]],[28,31,["H3117","H3117"]],[31,32,["H1697"]]]},{"k":1652,"v":[[0,3,["H6293","(H853)"]],[3,4,["H4872"]],[4,6,["H175"]],[6,8,["H5324"]],[8,11,["H7125"]],[11,15,["H3318"]],[15,16,["H4480","H854"]],[16,17,["H6547"]]]},{"k":1653,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H3068"]],[7,8,["H7200"]],[8,9,["H5921"]],[9,12,["H8199"]],[12,13,["H834"]],[13,16,["(H853)"]],[16,18,["H7381"]],[18,21,["H887"]],[21,24,["H5869"]],[24,26,["H6547"]],[26,30,["H5869"]],[30,33,["H5650"]],[33,35,["H5414"]],[35,37,["H2719"]],[37,40,["H3027"]],[40,42,["H2026"]],[42,43,[]]]},{"k":1654,"v":[[0,2,["H4872"]],[2,3,["H7725"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H559"]],[8,9,["H136"]],[9,10,["H4100"]],[10,15,["H7489"]],[15,16,["H2088"]],[16,17,["H5971"]],[17,18,["H4100"]],[18,20,["H2088"]],[20,24,["H7971"]],[24,25,[]]]},{"k":1655,"v":[[0,2,["H4480","H227"]],[2,4,["H935"]],[4,5,["H413"]],[5,6,["H6547"]],[6,8,["H1696"]],[8,11,["H8034"]],[11,15,["H7489"]],[15,17,["H2088"]],[17,18,["H5971"]],[18,19,["H3808"]],[19,22,["H5337","(H853)"]],[22,24,["H5971"]],[24,26,["H5337"]]]},{"k":1656,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H6258"]],[7,10,["H7200"]],[10,11,["H834"]],[11,14,["H6213"]],[14,16,["H6547"]],[16,17,["H3588"]],[17,20,["H2389"]],[20,21,["H3027"]],[21,26,["H7971"]],[26,30,["H2389"]],[30,31,["H3027"]],[31,36,["H1644"]],[36,39,["H4480","H776"]]]},{"k":1657,"v":[[0,2,["H430"]],[2,3,["H1696"]],[3,4,["H413"]],[4,5,["H4872"]],[5,7,["H559"]],[7,8,["H413"]],[8,10,["H589"]],[10,13,["H3068"]]]},{"k":1658,"v":[[0,3,["H7200"]],[3,4,["H413"]],[4,5,["H85"]],[5,6,["H413"]],[6,7,["H3327"]],[7,9,["H413"]],[9,10,["H3290"]],[10,15,["H410"]],[15,16,["H7706"]],[16,20,["H8034"]],[20,21,["H3068"]],[21,24,["H3808"]],[24,25,["H3045"]],[25,27,[]]]},{"k":1659,"v":[[0,4,["H1571"]],[4,5,["H6965","(H853)"]],[5,7,["H1285"]],[7,8,["H854"]],[8,11,["H5414"]],[11,12,["(H853)"]],[12,14,["H776"]],[14,16,["H3667","(H853)"]],[16,18,["H776"]],[18,21,["H4033"]],[21,22,["H834"]],[22,25,["H1481"]]]},{"k":1660,"v":[[0,2,["H589"]],[2,4,["H1571"]],[4,5,["H8085","(H853)"]],[5,7,["H5009"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,13,["H834","(H853)"]],[13,15,["H4714"]],[15,18,["H5647"]],[18,22,["H2142","(H853)"]],[22,24,["H1285"]]]},{"k":1661,"v":[[0,1,["H3651"]],[1,2,["H559"]],[2,5,["H1121"]],[5,7,["H3478"]],[7,8,["H589"]],[8,11,["H3068"]],[11,17,["H3318","(H853)"]],[17,19,["H4480","H8478"]],[19,21,["H5450"]],[21,24,["H4714"]],[24,28,["H5337"]],[28,33,["H4480","H5656"]],[33,37,["H1350"]],[37,42,["H5186"]],[42,43,["H2220"]],[43,46,["H1419"]],[46,47,["H8201"]]]},{"k":1662,"v":[[0,4,["H3947"]],[4,10,["H5971"]],[10,14,["H1961"]],[14,18,["H430"]],[18,22,["H3045"]],[22,23,["H3588"]],[23,24,["H589"]],[24,27,["H3068"]],[27,29,["H430"]],[29,33,["H3318","(H853)"]],[33,35,["H4480","H8478"]],[35,37,["H5450"]],[37,40,["H4714"]]]},{"k":1663,"v":[[0,6,["H935","(H853)"]],[6,7,["H413"]],[7,9,["H776"]],[9,12,["H834"]],[12,15,["H5375","(H853)","H3027"]],[15,17,["H5414"]],[17,20,["H85"]],[20,22,["H3327"]],[22,25,["H3290"]],[25,29,["H5414"]],[29,34,["H4181"]],[34,35,["H589"]],[35,38,["H3068"]]]},{"k":1664,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,4,["H3651"]],[4,5,["H413"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,12,["H8085"]],[12,13,["H3808"]],[13,14,["H413"]],[14,15,["H4872"]],[15,17,["H4480","H7115"]],[17,19,["H7307"]],[19,23,["H4480","H5656","H7186"]]]},{"k":1665,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":1666,"v":[[0,2,["H935"]],[2,3,["H1696"]],[3,4,["H413"]],[4,5,["H6547"]],[5,6,["H4428"]],[6,8,["H4714"]],[8,11,["(H853)"]],[11,13,["H1121"]],[13,15,["H3478"]],[15,16,["H7971"]],[16,20,["H4480","H776"]]]},{"k":1667,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,4,["H6440"]],[4,6,["H3068"]],[6,7,["H559"]],[7,8,["H2005"]],[8,10,["H1121"]],[10,12,["H3478"]],[12,14,["H3808"]],[14,15,["H8085"]],[15,16,["H413"]],[16,18,["H349"]],[18,21,["H6547"]],[21,22,["H8085"]],[22,24,["H589"]],[24,27,["H6189"]],[27,28,["H8193"]]]},{"k":1668,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,14,["H6680"]],[14,15,["H413"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,21,["H413"]],[21,22,["H6547"]],[22,23,["H4428"]],[23,25,["H4714"]],[25,27,["H3318","(H853)"]],[27,29,["H1121"]],[29,31,["H3478"]],[31,35,["H4480","H776"]],[35,37,["H4714"]]]},{"k":1669,"v":[[0,1,["H428"]],[1,4,["H7218"]],[4,7,["H1"]],[7,8,["H1004"]],[8,10,["H1121"]],[10,12,["H7205"]],[12,14,["H1060"]],[14,16,["H3478"]],[16,17,["H2585"]],[17,19,["H6396"]],[19,20,["H2696"]],[20,22,["H3756"]],[22,23,["H428"]],[23,26,["H4940"]],[26,28,["H7205"]]]},{"k":1670,"v":[[0,3,["H1121"]],[3,5,["H8095"]],[5,6,["H3223"]],[6,8,["H3226"]],[8,10,["H161"]],[10,12,["H3199"]],[12,14,["H6714"]],[14,16,["H7586"]],[16,18,["H1121"]],[18,22,["H3669"]],[22,23,["H428"]],[23,26,["H4940"]],[26,28,["H8095"]]]},{"k":1671,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H1121"]],[8,10,["H3878"]],[10,14,["H8435"]],[14,15,["H1648"]],[15,17,["H6955"]],[17,19,["H4847"]],[19,22,["H8141"]],[22,25,["H2416"]],[25,27,["H3878"]],[27,30,["H3967"]],[30,31,["H7970"]],[31,33,["H7651"]],[33,34,["H8141"]]]},{"k":1672,"v":[[0,2,["H1121"]],[2,4,["H1648"]],[4,5,["H3845"]],[5,7,["H8096"]],[7,11,["H4940"]]]},{"k":1673,"v":[[0,3,["H1121"]],[3,5,["H6955"]],[5,6,["H6019"]],[6,8,["H3324"]],[8,10,["H2275"]],[10,12,["H5816"]],[12,15,["H8141"]],[15,18,["H2416"]],[18,20,["H6955"]],[20,23,["H3967"]],[23,24,["H7970"]],[24,26,["H7969"]],[26,27,["H8141"]]]},{"k":1674,"v":[[0,3,["H1121"]],[3,5,["H4847"]],[5,6,["H4249"]],[6,8,["H4187"]],[8,9,["H428"]],[9,12,["H4940"]],[12,14,["H3878"]],[14,18,["H8435"]]]},{"k":1675,"v":[[0,2,["H6019"]],[2,3,["H3947"]],[3,4,["(H853)"]],[4,5,["H3115"]],[5,8,["H1733"]],[8,10,["H802"]],[10,13,["H3205"]],[13,14,["(H853)"]],[14,15,["H175"]],[15,17,["H4872"]],[17,20,["H8141"]],[20,23,["H2416"]],[23,25,["H6019"]],[25,28,["H3967"]],[28,30,["H7970"]],[30,32,["H7651"]],[32,33,["H8141"]]]},{"k":1676,"v":[[0,3,["H1121"]],[3,5,["H3324"]],[5,6,["H7141"]],[6,8,["H5298"]],[8,10,["H2147"]]]},{"k":1677,"v":[[0,3,["H1121"]],[3,5,["H5816"]],[5,6,["H4332"]],[6,8,["H469"]],[8,10,["H5644"]]]},{"k":1678,"v":[[0,2,["H175"]],[2,3,["H3947"]],[3,4,["(H853)"]],[4,5,["H472"]],[5,6,["H1323"]],[6,8,["H5992"]],[8,9,["H269"]],[9,11,["H5177"]],[11,13,["H802"]],[13,16,["H3205"]],[16,17,["(H853)"]],[17,18,["H5070"]],[18,20,["H30","(H853)"]],[20,21,["H499"]],[21,23,["H385"]]]},{"k":1679,"v":[[0,3,["H1121"]],[3,5,["H7141"]],[5,6,["H617"]],[6,8,["H511"]],[8,10,["H23"]],[10,11,["H428"]],[11,14,["H4940"]],[14,17,["H7145"]]]},{"k":1680,"v":[[0,2,["H499"]],[2,3,["H175"]],[3,4,["H1121"]],[4,5,["H3947"]],[5,10,["H4480","H1323"]],[10,12,["H6317"]],[12,14,["H802"]],[14,17,["H3205"]],[17,18,["(H853)"]],[18,19,["H6372"]],[19,20,["H428"]],[20,23,["H7218"]],[23,26,["H1"]],[26,29,["H3881"]],[29,33,["H4940"]]]},{"k":1681,"v":[[0,1,["H1931"]],[1,4,["H175"]],[4,6,["H4872"]],[6,8,["H834"]],[8,10,["H3068"]],[10,11,["H559"]],[11,13,["H3318","(H853)"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,20,["H4480","H776"]],[20,22,["H4714"]],[22,24,["H5921"]],[24,26,["H6635"]]]},{"k":1682,"v":[[0,1,["H1992"]],[1,5,["H1696"]],[5,6,["H413"]],[6,7,["H6547"]],[7,8,["H4428"]],[8,10,["H4714"]],[10,13,["H3318","(H853)"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,19,["H4480","H4714"]],[19,22,["H1931"]],[22,23,["H4872"]],[23,25,["H175"]]]},{"k":1683,"v":[[0,5,["H1961"]],[5,8,["H3117"]],[8,11,["H3068"]],[11,12,["H1696"]],[12,13,["H413"]],[13,14,["H4872"]],[14,17,["H776"]],[17,19,["H4714"]]]},{"k":1684,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]],[7,8,["H589"]],[8,11,["H3068"]],[11,12,["H1696"]],[12,14,["H413"]],[14,15,["H6547"]],[15,16,["H4428"]],[16,18,["H4714","(H853)"]],[18,19,["H3605"]],[19,20,["H834"]],[20,21,["H589"]],[21,22,["H1696"]],[22,23,["H413"]],[23,24,[]]]},{"k":1685,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H6440"]],[4,6,["H3068"]],[6,7,["H2005"]],[7,8,["H589"]],[8,11,["H6189"]],[11,12,["H8193"]],[12,14,["H349"]],[14,16,["H6547"]],[16,17,["H8085"]],[17,18,["H413"]],[18,19,[]]]},{"k":1686,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H7200"]],[7,10,["H5414"]],[10,13,["H430"]],[13,15,["H6547"]],[15,17,["H175"]],[17,19,["H251"]],[19,21,["H1961"]],[21,23,["H5030"]]]},{"k":1687,"v":[[0,1,["H859"]],[1,3,["H1696","(H853)"]],[3,4,["H3605"]],[4,5,["H834"]],[5,7,["H6680"]],[7,10,["H175"]],[10,12,["H251"]],[12,14,["H1696"]],[14,15,["H413"]],[15,16,["H6547"]],[16,19,["H7971","(H853)"]],[19,21,["H1121"]],[21,23,["H3478"]],[23,27,["H4480","H776"]]]},{"k":1688,"v":[[0,2,["H589"]],[2,4,["H7185","(H853)"]],[4,5,["H6547"]],[5,6,["H3820"]],[6,8,["H7235","(H853)"]],[8,10,["H226"]],[10,13,["H4159"]],[13,16,["H776"]],[16,18,["H4714"]]]},{"k":1689,"v":[[0,2,["H6547"]],[2,4,["H3808"]],[4,5,["H8085"]],[5,6,["H413"]],[6,11,["H5414","(H853)"]],[11,13,["H3027"]],[13,15,["H4714"]],[15,18,["H3318","(H853)"]],[18,20,["H6635"]],[20,21,["(H853)"]],[21,23,["H5971"]],[23,25,["H1121"]],[25,27,["H3478"]],[27,31,["H4480","H776"]],[31,33,["H4714"]],[33,35,["H1419"]],[35,36,["H8201"]]]},{"k":1690,"v":[[0,3,["H4714"]],[3,5,["H3045"]],[5,6,["H3588"]],[6,7,["H589"]],[7,10,["H3068"]],[10,14,["H5186","(H853)"]],[14,16,["H3027"]],[16,17,["H5921"]],[17,18,["H4714"]],[18,21,["H3318","(H853)"]],[21,23,["H1121"]],[23,25,["H3478"]],[25,27,["H4480","H8432"]],[27,28,[]]]},{"k":1691,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,5,["H6213"]],[5,6,["H834"]],[6,8,["H3068"]],[8,9,["H6680"]],[9,11,["H3651"]],[11,12,["H6213"]],[12,13,[]]]},{"k":1692,"v":[[0,2,["H4872"]],[2,4,["H8084"]],[4,5,["H8141"]],[5,6,["H1121"]],[6,8,["H175"]],[8,9,["H8084"]],[9,11,["H7969"]],[11,12,["H8141"]],[12,13,["H1121"]],[13,16,["H1696"]],[16,17,["H413"]],[17,18,["H6547"]]]},{"k":1693,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H559"]]]},{"k":1694,"v":[[0,1,["H3588"]],[1,2,["H6547"]],[2,4,["H1696"]],[4,5,["H413"]],[5,7,["H559"]],[7,8,["H5414"]],[8,10,["H4159"]],[10,16,["H559"]],[16,17,["H413"]],[17,18,["H175"]],[18,19,["H3947","(H853)"]],[19,21,["H4294"]],[21,23,["H7993"]],[23,25,["H6440"]],[25,26,["H6547"]],[26,30,["H1961"]],[30,32,["H8577"]]]},{"k":1695,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,6,["H935"]],[6,7,["H413"]],[7,8,["H6547"]],[8,11,["H6213"]],[11,12,["H3651"]],[12,13,["H834"]],[13,15,["H3068"]],[15,17,["H6680"]],[17,19,["H175"]],[19,21,["H7993","(H853)"]],[21,23,["H4294"]],[23,24,["H6440"]],[24,25,["H6547"]],[25,27,["H6440"]],[27,29,["H5650"]],[29,32,["H1961"]],[32,34,["H8577"]]]},{"k":1696,"v":[[0,2,["H6547"]],[2,3,["H1571"]],[3,4,["H7121"]],[4,7,["H2450"]],[7,10,["H3784"]],[10,13,["H2748"]],[13,15,["H4714"]],[15,16,["H1992"]],[16,17,["H1571"]],[17,18,["H6213"]],[18,21,["H3651"]],[21,24,["H3858"]]]},{"k":1697,"v":[[0,4,["H7993"]],[4,6,["H376"]],[6,8,["H4294"]],[8,11,["H1961"]],[11,12,["H8577"]],[12,14,["H175"]],[14,15,["H4294"]],[15,17,["H1104","(H853)"]],[17,19,["H4294"]]]},{"k":1698,"v":[[0,3,["H2388"]],[3,4,["H6547"]],[4,5,["H3820"]],[5,8,["H8085"]],[8,9,["H3808"]],[9,10,["H413"]],[10,12,["H834"]],[12,14,["H3068"]],[14,16,["H1696"]]]},{"k":1699,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H6547"]],[7,8,["H3820"]],[8,10,["H3515"]],[10,12,["H3985"]],[12,16,["H5971"]],[16,17,["H7971"]]]},{"k":1700,"v":[[0,1,["H1980"]],[1,3,["H413"]],[3,4,["H6547"]],[4,7,["H1242"]],[7,8,["H2009"]],[8,11,["H3318"]],[11,14,["H4325"]],[14,18,["H5324"]],[18,19,["H5921"]],[19,21,["H2975"]],[21,22,["H8193"]],[22,25,["H7125"]],[25,28,["H4294"]],[28,29,["H834"]],[29,31,["H2015"]],[31,34,["H5175"]],[34,37,["H3947"]],[37,40,["H3027"]]]},{"k":1701,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,8,["H3068"]],[8,9,["H430"]],[9,12,["H5680"]],[12,14,["H7971"]],[14,16,["H413"]],[16,18,["H559"]],[18,19,["(H853)"]],[19,21,["H5971"]],[21,22,["H7971"]],[22,26,["H5647"]],[26,30,["H4057"]],[30,32,["H2009"]],[32,33,["H5704","H3541"]],[33,36,["H3808"]],[36,37,["H8085"]]]},{"k":1702,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H2063"]],[6,9,["H3045"]],[9,10,["H3588"]],[10,11,["H589"]],[11,14,["H3068"]],[14,15,["H2009"]],[15,16,["H595"]],[16,18,["H5221"]],[18,21,["H4294"]],[21,22,["H834"]],[22,26,["H3027"]],[26,27,["H5921"]],[27,29,["H4325"]],[29,30,["H834"]],[30,34,["H2975"]],[34,39,["H2015"]],[39,41,["H1818"]]]},{"k":1703,"v":[[0,3,["H1710"]],[3,4,["H834"]],[4,8,["H2975"]],[8,10,["H4191"]],[10,13,["H2975"]],[13,15,["H887"]],[15,18,["H4714"]],[18,20,["H3811"]],[20,22,["H8354"]],[22,25,["H4325"]],[25,26,["H4480"]],[26,28,["H2975"]]]},{"k":1704,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H175"]],[9,10,["H3947"]],[10,12,["H4294"]],[12,15,["H5186"]],[15,17,["H3027"]],[17,18,["H5921"]],[18,20,["H4325"]],[20,22,["H4714"]],[22,23,["H5921"]],[23,25,["H5104"]],[25,26,["H5921"]],[26,28,["H2975"]],[28,30,["H5921"]],[30,32,["H98"]],[32,34,["H5921"]],[34,35,["H3605"]],[35,37,["H4723"]],[37,39,["H4325"]],[39,43,["H1961"]],[43,44,["H1818"]],[44,49,["H1961"]],[49,50,["H1818"]],[50,52,["H3605"]],[52,54,["H776"]],[54,56,["H4714"]],[56,61,["H6086"]],[61,66,["H68"]]]},{"k":1705,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,5,["H6213"]],[5,6,["H3651"]],[6,7,["H834"]],[7,9,["H3068"]],[9,10,["H6680"]],[10,14,["H7311"]],[14,16,["H4294"]],[16,18,["H5221","(H853)"]],[18,20,["H4325"]],[20,21,["H834"]],[21,25,["H2975"]],[25,28,["H5869"]],[28,30,["H6547"]],[30,34,["H5869"]],[34,37,["H5650"]],[37,39,["H3605"]],[39,41,["H4325"]],[41,42,["H834"]],[42,46,["H2975"]],[46,48,["H2015"]],[48,50,["H1818"]]]},{"k":1706,"v":[[0,3,["H1710"]],[3,4,["H834"]],[4,8,["H2975"]],[8,9,["H4191"]],[9,12,["H2975"]],[12,13,["H887"]],[13,16,["H4714"]],[16,17,["H3201"]],[17,18,["H3808"]],[18,19,["H8354"]],[19,22,["H4325"]],[22,23,["H4480"]],[23,25,["H2975"]],[25,28,["H1961"]],[28,29,["H1818"]],[29,31,["H3605"]],[31,33,["H776"]],[33,35,["H4714"]]]},{"k":1707,"v":[[0,3,["H2748"]],[3,5,["H4714"]],[5,6,["H6213"]],[6,7,["H3651"]],[7,10,["H3909"]],[10,12,["H6547"]],[12,13,["H3820"]],[13,15,["H2388"]],[15,16,["H3808"]],[16,19,["H8085"]],[19,20,["H413"]],[20,22,["H834"]],[22,24,["H3068"]],[24,26,["H1696"]]]},{"k":1708,"v":[[0,2,["H6547"]],[2,3,["H6437"]],[3,5,["H935"]],[5,6,["H413"]],[6,8,["H1004"]],[8,9,["H3808"]],[9,12,["H7896"]],[12,14,["H3820"]],[14,16,["H2063"]],[16,17,["H1571"]]]},{"k":1709,"v":[[0,2,["H3605"]],[2,4,["H4714"]],[4,5,["H2658"]],[5,7,["H5439"]],[7,9,["H2975"]],[9,11,["H4325"]],[11,13,["H8354"]],[13,14,["H3588"]],[14,16,["H3201"]],[16,17,["H3808"]],[17,18,["H8354"]],[18,21,["H4480","H4325"]],[21,24,["H2975"]]]},{"k":1710,"v":[[0,2,["H7651"]],[2,3,["H3117"]],[3,5,["H4390"]],[5,6,["H310"]],[6,9,["H3068"]],[9,11,["H5221","(H853)"]],[11,13,["H2975"]]]},{"k":1711,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H935"]],[7,8,["H413"]],[8,9,["H6547"]],[9,11,["H559"]],[11,12,["H413"]],[12,14,["H3541"]],[14,15,["H559"]],[15,17,["H3068"]],[17,18,["(H853)"]],[18,20,["H5971"]],[20,21,["H7971"]],[21,25,["H5647"]],[25,26,[]]]},{"k":1712,"v":[[0,2,["H518"]],[2,3,["H859"]],[3,4,["H3986"]],[4,8,["H7971"]],[8,9,["H2009"]],[9,10,["H595"]],[10,12,["H5062","(H853)"]],[12,13,["H3605"]],[13,15,["H1366"]],[15,17,["H6854"]]]},{"k":1713,"v":[[0,3,["H2975"]],[3,8,["H8317","H6854"]],[8,12,["H5927"]],[12,14,["H935"]],[14,17,["H1004"]],[17,21,["H2315","H4904"]],[21,23,["H5921"]],[23,25,["H4296"]],[25,29,["H1004"]],[29,32,["H5650"]],[32,36,["H5971"]],[36,40,["H8574"]],[40,44,["H4863"]]]},{"k":1714,"v":[[0,3,["H6854"]],[3,6,["H5927"]],[6,13,["H5971"]],[13,16,["H3605"]],[16,18,["H5650"]]]},{"k":1715,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H175"]],[9,11,["H5186","(H853)"]],[11,13,["H3027"]],[13,16,["H4294"]],[16,17,["H5921"]],[17,19,["H5104"]],[19,20,["H5921"]],[20,22,["H2975"]],[22,24,["H5921"]],[24,26,["H98"]],[26,28,["(H853)"]],[28,29,["H6854"]],[29,32,["H5927"]],[32,33,["H5921"]],[33,35,["H776"]],[35,37,["H4714"]]]},{"k":1716,"v":[[0,2,["H175"]],[2,4,["H5186","(H853)"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,9,["H4325"]],[9,11,["H4714"]],[11,14,["H6854"]],[14,16,["H5927"]],[16,18,["H3680","(H853)"]],[18,20,["H776"]],[20,22,["H4714"]]]},{"k":1717,"v":[[0,3,["H2748"]],[3,4,["H6213"]],[4,5,["H3651"]],[5,8,["H3909"]],[8,11,["H5927","(H853)"]],[11,12,["H6854"]],[12,13,["H5921"]],[13,15,["H776"]],[15,17,["H4714"]]]},{"k":1718,"v":[[0,2,["H6547"]],[2,3,["H7121"]],[3,5,["H4872"]],[5,7,["H175"]],[7,9,["H559"]],[9,10,["H6279","H413"]],[10,12,["H3068"]],[12,17,["H5493"]],[17,19,["H6854"]],[19,20,["H4480"]],[20,25,["H4480","H5971"]],[25,29,["(H853)"]],[29,31,["H5971"]],[31,32,["H7971"]],[32,37,["H2076"]],[37,40,["H3068"]]]},{"k":1719,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,5,["H6547"]],[5,6,["H6286"]],[6,7,["H5921"]],[7,9,["H4970"]],[9,12,["H6279"]],[12,18,["H5650"]],[18,22,["H5971"]],[22,24,["H3772"]],[24,26,["H6854"]],[26,27,["H4480"]],[27,31,["(H4480)","H1004"]],[31,35,["H7604"]],[35,38,["H2975"]],[38,39,["H7535"]]]},{"k":1720,"v":[[0,3,["H559"]],[3,5,["H4279"]],[5,8,["H559"]],[8,14,["H1697"]],[14,15,["H4616"]],[15,18,["H3045"]],[18,19,["H3588"]],[19,22,["H369"]],[22,26,["H3068"]],[26,28,["H430"]]]},{"k":1721,"v":[[0,3,["H6854"]],[3,5,["H5493"]],[5,6,["H4480"]],[6,11,["H4480","H1004"]],[11,15,["H4480","H5650"]],[15,19,["H4480","H5971"]],[19,22,["H7604"]],[22,25,["H2975"]],[25,26,["H7535"]]]},{"k":1722,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,6,["H3318"]],[6,7,["H4480","H5973"]],[7,8,["H6547"]],[8,10,["H4872"]],[10,11,["H6817"]],[11,12,["H413"]],[12,14,["H3068"]],[14,16,["H5921","H1697"]],[16,18,["H6854"]],[18,19,["H834"]],[19,22,["H7760"]],[22,24,["H6547"]]]},{"k":1723,"v":[[0,3,["H3068"]],[3,4,["H6213"]],[4,8,["H1697"]],[8,10,["H4872"]],[10,13,["H6854"]],[13,14,["H4191"]],[14,16,["H4480"]],[16,18,["H1004"]],[18,20,["H4480"]],[20,22,["H2691"]],[22,25,["H4480"]],[25,27,["H7704"]]]},{"k":1724,"v":[[0,5,["H6651","(H853)"]],[5,7,["H2563","H2563"]],[7,10,["H776"]],[10,11,["H887"]]]},{"k":1725,"v":[[0,3,["H6547"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,7,["H1961"]],[7,8,["H7309"]],[8,10,["H3513","(H853)"]],[10,12,["H3820"]],[12,14,["H8085"]],[14,15,["H3808"]],[15,16,["H413"]],[16,18,["H834"]],[18,20,["H3068"]],[20,22,["H1696"]]]},{"k":1726,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H175"]],[9,11,["H5186","(H853)"]],[11,13,["H4294"]],[13,15,["H5221","(H853)"]],[15,17,["H6083"]],[17,20,["H776"]],[20,24,["H1961"]],[24,25,["H3654"]],[25,27,["H3605"]],[27,29,["H776"]],[29,31,["H4714"]]]},{"k":1727,"v":[[0,3,["H6213"]],[3,4,["H3651"]],[4,6,["H175"]],[6,8,["H5186","(H853)"]],[8,10,["H3027"]],[10,13,["H4294"]],[13,15,["H5221","(H853)"]],[15,17,["H6083"]],[17,20,["H776"]],[20,23,["H1961"]],[23,24,["H3654"]],[24,26,["H120"]],[26,29,["H929"]],[29,30,["H3605"]],[30,32,["H6083"]],[32,35,["H776"]],[35,36,["H1961"]],[36,37,["H3654"]],[37,39,["H3605"]],[39,41,["H776"]],[41,43,["H4714"]]]},{"k":1728,"v":[[0,3,["H2748"]],[3,4,["H6213"]],[4,5,["H3651"]],[5,8,["H3909"]],[8,11,["H3318","(H853)"]],[11,12,["H3654"]],[12,15,["H3201"]],[15,16,["H3808"]],[16,19,["H1961"]],[19,20,["H3654"]],[20,22,["H120"]],[22,25,["H929"]]]},{"k":1729,"v":[[0,3,["H2748"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H6547"]],[6,7,["H1931"]],[7,10,["H676"]],[10,12,["H430"]],[12,14,["H6547"]],[14,15,["H3820"]],[15,17,["H2388"]],[17,20,["H8085"]],[20,21,["H3808"]],[21,22,["H413"]],[22,24,["H834"]],[24,26,["H3068"]],[26,28,["H1696"]]]},{"k":1730,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H7925"]],[9,12,["H1242"]],[12,14,["H3320"]],[14,15,["H6440"]],[15,16,["H6547"]],[16,17,["H2009"]],[17,20,["H3318"]],[20,23,["H4325"]],[23,25,["H559"]],[25,26,["H413"]],[26,28,["H3541"]],[28,29,["H559"]],[29,31,["H3068"]],[31,34,["H5971"]],[34,35,["H7971"]],[35,39,["H5647"]],[39,40,[]]]},{"k":1731,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,5,["H369"]],[5,6,["(H853)"]],[6,8,["H5971"]],[8,9,["H7971"]],[9,10,["H2009"]],[10,13,["H7971","(H853)"]],[13,14,["H6157"]],[14,22,["H5650"]],[22,26,["H5971"]],[26,30,["H1004"]],[30,33,["H1004"]],[33,36,["H4714"]],[36,39,["H4390"]],[39,40,["(H853)"]],[40,41,["H6157"]],[41,45,["H1571"]],[45,47,["H127"]],[47,48,["H834","H5921"]],[48,49,["H1992"]],[49,50,[]]]},{"k":1732,"v":[[0,4,["H6395"]],[4,6,["H1931"]],[6,7,["H3117","(H853)"]],[7,9,["H776"]],[9,11,["H1657"]],[11,12,["H5921"]],[12,13,["H834"]],[13,15,["H5971"]],[15,16,["H5975"]],[16,18,["H1115"]],[18,19,["H6157"]],[19,23,["H1961"]],[23,24,["H8033"]],[24,27,["H4616"]],[27,30,["H3045"]],[30,31,["H3588"]],[31,32,["H589"]],[32,35,["H3068"]],[35,38,["H7130"]],[38,41,["H776"]]]},{"k":1733,"v":[[0,4,["H7760"]],[4,6,["H6304"]],[6,7,["H996"]],[7,9,["H5971"]],[9,12,["H5971"]],[12,14,["H4279"]],[14,16,["H2088"]],[16,17,["H226"]],[17,18,["H1961"]]]},{"k":1734,"v":[[0,3,["H3068"]],[3,4,["H6213"]],[4,5,["H3651"]],[5,8,["H935"]],[8,10,["H3515"]],[10,11,["H6157"]],[11,16,["H1004"]],[16,18,["H6547"]],[18,22,["H5650"]],[22,23,["H1004"]],[23,26,["H3605"]],[26,28,["H776"]],[28,30,["H4714"]],[30,32,["H776"]],[32,34,["H7843"]],[34,37,["H4480","H6440"]],[37,39,["H6157"]],[39,41,[]]]},{"k":1735,"v":[[0,2,["H6547"]],[2,3,["H7121"]],[3,4,["H413"]],[4,5,["H4872"]],[5,8,["H175"]],[8,10,["H559"]],[10,11,["H1980"]],[11,13,["H2076"]],[13,16,["H430"]],[16,19,["H776"]]]},{"k":1736,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,6,["H3808"]],[6,7,["H3559"]],[7,8,["H3651"]],[8,10,["H6213"]],[10,11,["H3588"]],[11,14,["H2076"]],[14,16,["H8441"]],[16,19,["H4714"]],[19,22,["H3068"]],[22,24,["H430"]],[24,25,["H2005"]],[25,28,["H2076","(H853)"]],[28,30,["H8441"]],[30,33,["H4714"]],[33,36,["H5869"]],[36,40,["H3808"]],[40,41,["H5619"]],[41,42,[]]]},{"k":1737,"v":[[0,3,["H1980"]],[3,4,["H7969"]],[4,5,["H3117"]],[5,6,["H1870"]],[6,9,["H4057"]],[9,11,["H2076"]],[11,14,["H3068"]],[14,16,["H430"]],[16,17,["H834"]],[17,20,["H559","H413"]],[20,21,[]]]},{"k":1738,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,4,["H595"]],[4,8,["H7971"]],[8,12,["H2076"]],[12,15,["H3068"]],[15,17,["H430"]],[17,20,["H4057"]],[20,21,["H7535"]],[21,24,["H3808"]],[24,25,["H1980"]],[25,28,["H7368","H7368"]],[28,29,["H6279"]],[29,30,["H1157"]],[30,31,[]]]},{"k":1739,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H2009"]],[4,5,["H595"]],[5,7,["H3318"]],[7,8,["H4480","H5973"]],[8,13,["H6279","H413"]],[13,15,["H3068"]],[15,18,["H6157"]],[18,22,["H5493"]],[22,24,["H4480","H6547"]],[24,27,["H4480","H5650"]],[27,31,["H4480","H5971"]],[31,33,["H4279"]],[33,34,["H7535"]],[34,36,["H408"]],[36,37,["H6547"]],[37,39,["H2048"]],[39,41,["H3254"]],[41,43,["H1115"]],[43,44,["(H853)"]],[44,46,["H5971"]],[46,47,["H7971"]],[47,49,["H2076"]],[49,52,["H3068"]]]},{"k":1740,"v":[[0,2,["H4872"]],[2,4,["H3318"]],[4,5,["H4480","H5973"]],[5,6,["H6547"]],[6,8,["H6279","H413"]],[8,10,["H3068"]]]},{"k":1741,"v":[[0,3,["H3068"]],[3,4,["H6213"]],[4,8,["H1697"]],[8,10,["H4872"]],[10,13,["H5493"]],[13,15,["H6157"]],[15,19,["H4480","H6547"]],[19,22,["H4480","H5650"]],[22,26,["H4480","H5971"]],[26,28,["H7604"]],[28,29,["H3808"]],[29,30,["H259"]]]},{"k":1742,"v":[[0,2,["H6547"]],[2,3,["H3513","(H853)"]],[3,5,["H3820"]],[5,7,["H2063"]],[7,8,["H6471"]],[8,9,["H1571"]],[9,10,["H3808"]],[10,13,["(H853)"]],[13,15,["H5971"]],[15,16,["H7971"]]]},{"k":1743,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H935"]],[8,9,["H413"]],[9,10,["H6547"]],[10,12,["H1696","H413"]],[12,14,["H3541"]],[14,15,["H559"]],[15,17,["H3068"]],[17,18,["H430"]],[18,21,["H5680"]],[21,22,["(H853)"]],[22,24,["H5971"]],[24,25,["H7971"]],[25,29,["H5647"]],[29,30,[]]]},{"k":1744,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,3,["H859"]],[3,4,["H3986"]],[4,8,["H7971"]],[8,11,["H2388"]],[11,13,["H5750"]]]},{"k":1745,"v":[[0,1,["H2009"]],[1,3,["H3027"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,10,["H4735"]],[10,11,["H834"]],[11,15,["H7704"]],[15,18,["H5483"]],[18,21,["H2543"]],[21,24,["H1581"]],[24,27,["H1241"]],[27,31,["H6629"]],[31,36,["H3966"]],[36,37,["H3515"]],[37,38,["H1698"]]]},{"k":1746,"v":[[0,3,["H3068"]],[3,5,["H6395"]],[5,6,["H996"]],[6,8,["H4735"]],[8,10,["H3478"]],[10,13,["H4735"]],[13,15,["H4714"]],[15,19,["H3808","H1697"]],[19,20,["H4191"]],[20,22,["H4480","H3605"]],[22,26,["H1121"]],[26,28,["H3478"]]]},{"k":1747,"v":[[0,3,["H3068"]],[3,4,["H7760"]],[4,7,["H4150"]],[7,8,["H559"]],[8,10,["H4279"]],[10,12,["H3068"]],[12,14,["H6213"]],[14,15,["H2088"]],[15,16,["H1697"]],[16,19,["H776"]]]},{"k":1748,"v":[[0,3,["H3068"]],[3,4,["H6213","(H853)"]],[4,5,["H2088"]],[5,6,["H1697"]],[6,9,["H4480","H4283"]],[9,11,["H3605"]],[11,13,["H4735"]],[13,15,["H4714"]],[15,16,["H4191"]],[16,20,["H4480","H4735"]],[20,23,["H1121"]],[23,25,["H3478"]],[25,26,["H4191"]],[26,27,["H3808"]],[27,28,["H259"]]]},{"k":1749,"v":[[0,2,["H6547"]],[2,3,["H7971"]],[3,5,["H2009"]],[5,8,["H3808"]],[8,9,["H259"]],[9,12,["H4480","H4735"]],[12,15,["H3478"]],[15,16,["H4191"]],[16,19,["H3820"]],[19,21,["H6547"]],[21,23,["H3513"]],[23,27,["H3808"]],[27,28,["(H853)"]],[28,30,["H5971"]],[30,31,["H7971"]]]},{"k":1750,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H3947"]],[10,13,["H4393","H2651"]],[13,15,["H6368"]],[15,18,["H3536"]],[18,21,["H4872"]],[21,22,["H2236"]],[22,26,["H8064"]],[26,29,["H5869"]],[29,31,["H6547"]]]},{"k":1751,"v":[[0,4,["H1961"]],[4,6,["H80"]],[6,7,["H5921"]],[7,8,["H3605"]],[8,10,["H776"]],[10,12,["H4714"]],[12,15,["H1961"]],[15,17,["H7822"]],[17,19,["H6524"]],[19,21,["H76"]],[21,22,["H5921"]],[22,23,["H120"]],[23,25,["H5921"]],[25,26,["H929"]],[26,28,["H3605"]],[28,30,["H776"]],[30,32,["H4714"]]]},{"k":1752,"v":[[0,3,["H3947","(H853)"]],[3,4,["H6368"]],[4,7,["H3536"]],[7,9,["H5975"]],[9,10,["H6440"]],[10,11,["H6547"]],[11,13,["H4872"]],[13,14,["H2236"]],[14,18,["H8064"]],[18,21,["H1961"]],[21,23,["H7822"]],[23,25,["H6524"]],[25,27,["H76"]],[27,29,["H120"]],[29,32,["H929"]]]},{"k":1753,"v":[[0,3,["H2748"]],[3,4,["H3201"]],[4,5,["H3808"]],[5,6,["H5975"]],[6,7,["H6440"]],[7,8,["H4872"]],[8,10,["H4480","H6440"]],[10,12,["H7822"]],[12,13,["H3588"]],[13,15,["H7822"]],[15,16,["H1961"]],[16,19,["H2748"]],[19,22,["H3605"]],[22,24,["H4714"]]]},{"k":1754,"v":[[0,3,["H3068"]],[3,4,["H2388","(H853)"]],[4,6,["H3820"]],[6,8,["H6547"]],[8,11,["H8085"]],[11,12,["H3808"]],[12,13,["H413"]],[13,15,["H834"]],[15,17,["H3068"]],[17,19,["H1696"]],[19,20,["H413"]],[20,21,["H4872"]]]},{"k":1755,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H7925"]],[9,12,["H1242"]],[12,14,["H3320"]],[14,15,["H6440"]],[15,16,["H6547"]],[16,18,["H559"]],[18,19,["H413"]],[19,21,["H3541"]],[21,22,["H559"]],[22,24,["H3068"]],[24,25,["H430"]],[25,28,["H5680"]],[28,29,["(H853)"]],[29,31,["H5971"]],[31,32,["H7971"]],[32,36,["H5647"]],[36,37,[]]]},{"k":1756,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,5,["H2063"]],[5,6,["H6471"]],[6,7,["H7971","(H853)"]],[7,8,["H3605"]],[8,10,["H4046"]],[10,11,["H413"]],[11,13,["H3820"]],[13,17,["H5650"]],[17,21,["H5971"]],[21,22,["H5668"]],[22,25,["H3045"]],[25,26,["H3588"]],[26,29,["H369"]],[29,31,["H3644"]],[31,33,["H3605"]],[33,35,["H776"]]]},{"k":1757,"v":[[0,1,["H3588"]],[1,2,["H6258"]],[2,6,["H7971","(H853)"]],[6,8,["H3027"]],[8,12,["H5221"]],[12,16,["H5971"]],[16,18,["H1698"]],[18,24,["H3582"]],[24,25,["H4480"]],[25,27,["H776"]]]},{"k":1758,"v":[[0,4,["H199"]],[4,5,["H5668"]],[5,6,["H2063"]],[6,12,["H5975"]],[12,13,["H5668"]],[13,15,["H7200"]],[15,17,["(H853)"]],[17,19,["H3581"]],[19,21,["H4616"]],[21,23,["H8034"]],[23,26,["H5608"]],[26,28,["H3605"]],[28,30,["H776"]]]},{"k":1759,"v":[[0,2,["H5750"]],[2,5,["H5549"]],[5,8,["H5971"]],[8,12,["H1115"]],[12,15,["H7971"]]]},{"k":1760,"v":[[0,1,["H2009"]],[1,3,["H4279"]],[3,6,["H6256"]],[6,12,["H4305"]],[12,14,["H3966"]],[14,15,["H3515"]],[15,16,["H1259"]],[16,17,["H834"]],[17,18,["H3644"]],[18,20,["H3808"]],[20,21,["H1961"]],[21,23,["H4714"]],[23,24,["H4480","H3117"]],[24,26,["H3245"]],[26,29,["H5704"]],[29,30,["H6258"]]]},{"k":1761,"v":[[0,1,["H7971"]],[1,3,["H6258"]],[3,5,["H5756","(H853)"]],[5,7,["H4735"]],[7,9,["H3605"]],[9,10,["H834"]],[10,15,["H7704"]],[15,18,["H3605"]],[18,19,["H120"]],[19,21,["H929"]],[21,22,["H834"]],[22,25,["H4672"]],[25,28,["H7704"]],[28,31,["H3808"]],[31,33,["H622"]],[33,34,["H1004"]],[34,36,["H1259"]],[36,39,["H3381"]],[39,40,["H5921"]],[40,45,["H4191"]]]},{"k":1762,"v":[[0,3,["H3372","(H853)"]],[3,5,["H1697"]],[5,8,["H3068"]],[8,11,["H4480","H5650"]],[11,13,["H6547"]],[13,14,["(H853)"]],[14,16,["H5650"]],[16,19,["H4735"]],[19,20,["H5127"]],[20,21,["H413"]],[21,23,["H1004"]]]},{"k":1763,"v":[[0,3,["H834"]],[3,4,["H7760","H3820"]],[4,5,["H3808"]],[5,7,["H1697"]],[7,10,["H3068"]],[10,11,["H5800","(H853)"]],[11,13,["H5650"]],[13,16,["H4735"]],[16,19,["H7704"]]]},{"k":1764,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H5186","(H853)"]],[8,10,["H3027"]],[10,11,["H5921"]],[11,12,["H8064"]],[12,16,["H1961"]],[16,17,["H1259"]],[17,19,["H3605"]],[19,21,["H776"]],[21,23,["H4714"]],[23,24,["H5921"]],[24,25,["H120"]],[25,27,["H5921"]],[27,28,["H929"]],[28,30,["H5921"]],[30,31,["H3605"]],[31,32,["H6212"]],[32,35,["H7704"]],[35,38,["H776"]],[38,40,["H4714"]]]},{"k":1765,"v":[[0,2,["H4872"]],[2,4,["H5186","(H853)"]],[4,6,["H4294"]],[6,7,["H5921"]],[7,8,["H8064"]],[8,11,["H3068"]],[11,12,["H5414"]],[12,13,["H6963"]],[13,15,["H1259"]],[15,18,["H784"]],[18,20,["H1980"]],[20,23,["H776"]],[23,26,["H3068"]],[26,27,["H4305"]],[27,28,["H1259"]],[28,29,["H5921"]],[29,31,["H776"]],[31,33,["H4714"]]]},{"k":1766,"v":[[0,3,["H1961"]],[3,4,["H1259"]],[4,6,["H784"]],[6,7,["H3947"]],[7,8,["H8432"]],[8,10,["H1259"]],[10,11,["H3966"]],[11,12,["H3515"]],[12,14,["H834"]],[14,16,["H1961"]],[16,17,["H3808"]],[17,19,["H3644"]],[19,21,["H3605"]],[21,23,["H776"]],[23,25,["H4714"]],[25,26,["H4480","H227"]],[26,28,["H1961"]],[28,30,["H1471"]]]},{"k":1767,"v":[[0,3,["H1259"]],[3,4,["H5221"]],[4,6,["H3605"]],[6,8,["H776"]],[8,10,["H4714","(H853)"]],[10,11,["H3605"]],[11,12,["H834"]],[12,16,["H7704"]],[16,18,["H4480","H120"]],[18,20,["H929"]],[20,23,["H1259"]],[23,24,["H5221"]],[24,25,["H3605"]],[25,26,["H6212"]],[26,29,["H7704"]],[29,31,["H7665"]],[31,32,["H3605"]],[32,33,["H6086"]],[33,36,["H7704"]]]},{"k":1768,"v":[[0,1,["H7535"]],[1,4,["H776"]],[4,6,["H1657"]],[6,7,["H834","H8033"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,13,["H1961"]],[13,15,["H3808"]],[15,16,["H1259"]]]},{"k":1769,"v":[[0,2,["H6547"]],[2,3,["H7971"]],[3,5,["H7121"]],[5,7,["H4872"]],[7,9,["H175"]],[9,11,["H559"]],[11,12,["H413"]],[12,16,["H2398"]],[16,18,["H6471"]],[18,20,["H3068"]],[20,22,["H6662"]],[22,24,["H589"]],[24,27,["H5971"]],[27,29,["H7563"]]]},{"k":1770,"v":[[0,1,["H6279","H413"]],[1,3,["H3068"]],[3,7,["H7227"]],[7,11,["H4480","H1961"]],[11,13,["H430"]],[13,14,["H6963"]],[14,16,["H1259"]],[16,22,["H7971"]],[22,26,["H5975"]],[26,27,["H3808"]],[27,28,["H3254"]]]},{"k":1771,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,12,["H3318"]],[12,13,["(H853)"]],[13,15,["H5892"]],[15,19,["H6566","(H853)"]],[19,21,["H3709"]],[21,22,["H413"]],[22,24,["H3068"]],[24,27,["H6963"]],[27,29,["H2308"]],[29,30,["H3808"]],[30,33,["H1961"]],[33,35,["H5750"]],[35,36,["H1259"]],[36,37,["H4616"]],[37,40,["H3045"]],[40,42,["H3588"]],[42,44,["H776"]],[44,47,["H3068"]]]},{"k":1772,"v":[[0,4,["H859"]],[4,7,["H5650"]],[7,9,["H3045"]],[9,10,["H3588"]],[10,14,["H2962"]],[14,15,["H3372","H4480","H6440"]],[15,17,["H3068"]],[17,18,["H430"]]]},{"k":1773,"v":[[0,3,["H6594"]],[3,6,["H8184"]],[6,8,["H5221"]],[8,9,["H3588"]],[9,11,["H8184"]],[11,15,["H24"]],[15,18,["H6594"]],[18,20,["H1392"]]]},{"k":1774,"v":[[0,3,["H2406"]],[3,6,["H3698"]],[6,8,["H3808"]],[8,9,["H5221"]],[9,10,["H3588"]],[10,11,["H2007"]],[11,15,["H648"]]]},{"k":1775,"v":[[0,2,["H4872"]],[2,4,["H3318"]],[4,5,["(H853)"]],[5,7,["H5892"]],[7,8,["H4480","H5973"]],[8,9,["H6547"]],[9,12,["H6566"]],[12,14,["H3709"]],[14,15,["H413"]],[15,17,["H3068"]],[17,20,["H6963"]],[20,22,["H1259"]],[22,23,["H2308"]],[23,26,["H4306"]],[26,28,["H3808"]],[28,29,["H5413"]],[29,32,["H776"]]]},{"k":1776,"v":[[0,3,["H6547"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,7,["H4306"]],[7,10,["H1259"]],[10,13,["H6963"]],[13,15,["H2308"]],[15,17,["H2398"]],[17,19,["H3254"]],[19,21,["H3513"]],[21,23,["H3820"]],[23,24,["H1931"]],[24,27,["H5650"]]]},{"k":1777,"v":[[0,3,["H3820"]],[3,5,["H6547"]],[5,7,["H2388"]],[7,8,["H3808"]],[8,11,["(H853)"]],[11,13,["H1121"]],[13,15,["H3478"]],[15,16,["H7971"]],[16,17,["H834"]],[17,19,["H3068"]],[19,21,["H1696"]],[21,22,["H3027"]],[22,23,["H4872"]]]},{"k":1778,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H935"]],[8,9,["H413"]],[9,10,["H6547"]],[10,11,["H3588"]],[11,12,["H589"]],[12,14,["H3513","(H853)"]],[14,16,["H3820"]],[16,19,["H3820"]],[19,22,["H5650"]],[22,23,["H4616"]],[23,26,["H7896"]],[26,27,["H428"]],[27,29,["H226"]],[29,30,["H7130"]],[30,31,[]]]},{"k":1779,"v":[[0,2,["H4616"]],[2,5,["H5608"]],[5,8,["H241"]],[8,11,["H1121"]],[11,15,["H1121"]],[15,16,["H1121","(H853)"]],[16,18,["H834"]],[18,21,["H5953"]],[21,23,["H4714"]],[23,26,["H226"]],[26,27,["H834"]],[27,30,["H7760"]],[30,36,["H3045"]],[36,38,["H3588"]],[38,39,["H589"]],[39,42,["H3068"]]]},{"k":1780,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,6,["H935"]],[6,7,["H413"]],[7,8,["H6547"]],[8,10,["H559"]],[10,11,["H413"]],[11,13,["H3541"]],[13,14,["H559"]],[14,16,["H3068"]],[16,17,["H430"]],[17,20,["H5680"]],[20,22,["H5704","H4970"]],[22,25,["H3985"]],[25,28,["H6031"]],[28,29,["H4480","H6440"]],[29,33,["H5971"]],[33,34,["H7971"]],[34,38,["H5647"]],[38,39,[]]]},{"k":1781,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,3,["H859"]],[3,4,["H3986"]],[4,6,["(H853)"]],[6,8,["H5971"]],[8,9,["H7971"]],[9,10,["H2009"]],[10,12,["H4279"]],[12,15,["H935"]],[15,17,["H697"]],[17,20,["H1366"]]]},{"k":1782,"v":[[0,4,["H3680","(H853)"]],[4,6,["H5869"]],[6,9,["H776"]],[9,12,["H3808"]],[12,14,["H3201"]],[14,16,["H7200","(H853)"]],[16,18,["H776"]],[18,22,["H398","(H853)"]],[22,24,["H3499"]],[24,29,["H6413"]],[29,31,["H7604"]],[31,34,["H4480"]],[34,36,["H1259"]],[36,39,["H398","(H853)"]],[39,40,["H3605"]],[40,41,["H6086"]],[41,43,["H6779"]],[43,47,["H4480"]],[47,49,["H7704"]]]},{"k":1783,"v":[[0,4,["H4390"]],[4,6,["H1004"]],[6,9,["H1004"]],[9,11,["H3605"]],[11,13,["H5650"]],[13,16,["H1004"]],[16,18,["H3605"]],[18,20,["H4714"]],[20,21,["H834"]],[21,22,["H3808"]],[22,24,["H1"]],[24,27,["H1"]],[27,28,["H1"]],[28,30,["H7200"]],[30,33,["H4480","H3117"]],[33,36,["H1961"]],[36,37,["H5921"]],[37,39,["H127"]],[39,40,["H5704"]],[40,41,["H2088"]],[41,42,["H3117"]],[42,45,["H6437"]],[45,49,["H3318"]],[49,50,["H4480","H5973"]],[50,51,["H6547"]]]},{"k":1784,"v":[[0,2,["H6547"]],[2,3,["H5650"]],[3,4,["H559"]],[4,5,["H413"]],[5,8,["H5704","H4970"]],[8,11,["H2088"]],[11,12,["H1961"]],[12,14,["H4170"]],[14,17,["(H853)"]],[17,19,["H376"]],[19,20,["H7971"]],[20,24,["H5647","(H853)"]],[24,26,["H3068"]],[26,28,["H430"]],[28,29,["H3045"]],[29,32,["H2962"]],[32,33,["H3588"]],[33,34,["H4714"]],[34,36,["H6"]]]},{"k":1785,"v":[[0,1,["(H853)"]],[1,2,["H4872"]],[2,4,["H175"]],[4,7,["H7725"]],[7,8,["H413"]],[8,9,["H6547"]],[9,12,["H559"]],[12,13,["H413"]],[13,15,["H1980"]],[15,16,["H5647","(H853)"]],[16,18,["H3068"]],[18,20,["H430"]],[20,22,["H4310","H4310"]],[22,27,["H1980"]]]},{"k":1786,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,6,["H1980"]],[6,9,["H5288"]],[9,13,["H2205"]],[13,16,["H1121"]],[16,20,["H1323"]],[20,23,["H6629"]],[23,27,["H1241"]],[27,30,["H1980"]],[30,31,["H3588"]],[31,36,["H2282"]],[36,39,["H3068"]]]},{"k":1787,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,8,["H3068"]],[8,9,["H1961"]],[9,10,["H3651"]],[10,11,["H5973"]],[11,13,["H834"]],[13,18,["H7971"]],[18,22,["H2945"]],[22,23,["H7200"]],[23,26,["H3588"]],[26,27,["H7451"]],[27,29,["H5048","H6440"]],[29,30,[]]]},{"k":1788,"v":[[0,1,["H3808"]],[1,2,["H3651"]],[2,3,["H1980"]],[3,4,["H4994"]],[4,8,["H1397"]],[8,10,["H5647","(H853)"]],[10,12,["H3068"]],[12,13,["H3588"]],[13,15,["H859"]],[15,17,["H1245"]],[17,22,["H1644"]],[22,23,["H4480","H854"]],[23,24,["H6547"]],[24,25,["H6440"]]]},{"k":1789,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H5186"]],[8,10,["H3027"]],[10,11,["H5921"]],[11,13,["H776"]],[13,15,["H4714"]],[15,18,["H697"]],[18,23,["H5927"]],[23,24,["H5921"]],[24,26,["H776"]],[26,28,["H4714"]],[28,30,["H398","(H853)"]],[30,31,["H3605"]],[31,32,["H6212"]],[32,35,["H776"]],[35,36,["(H853)"]],[36,37,["H3605"]],[37,38,["H834"]],[38,40,["H1259"]],[40,42,["H7604"]]]},{"k":1790,"v":[[0,2,["H4872"]],[2,4,["H5186","(H853)"]],[4,6,["H4294"]],[6,7,["H5921"]],[7,9,["H776"]],[9,11,["H4714"]],[11,14,["H3068"]],[14,15,["H5090"]],[15,17,["H6921"]],[17,18,["H7307"]],[18,21,["H776"]],[21,22,["H3605"]],[22,23,["H1931"]],[23,24,["H3117"]],[24,26,["H3605"]],[26,28,["H3915"]],[28,32,["H1961"]],[32,33,["H1242"]],[33,35,["H6921"]],[35,36,["H7307"]],[36,37,["H5375","(H853)"]],[37,39,["H697"]]]},{"k":1791,"v":[[0,3,["H697"]],[3,5,["H5927"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,9,["H776"]],[9,11,["H4714"]],[11,13,["H5117"]],[13,15,["H3605"]],[15,17,["H1366"]],[17,19,["H4714"]],[19,20,["H3966"]],[20,21,["H3515"]],[21,24,["H6440"]],[24,27,["H1961"]],[27,28,["H3808"]],[28,29,["H3651"]],[29,30,["H697"]],[30,33,["H3808"]],[33,34,["H310"]],[34,37,["H1961"]],[37,38,["H3651"]]]},{"k":1792,"v":[[0,3,["H3680","(H853)"]],[3,5,["H5869"]],[5,8,["H3605"]],[8,9,["H776"]],[9,13,["H776"]],[13,15,["H2821"]],[15,19,["H398","(H853)"]],[19,20,["H3605"]],[20,21,["H6212"]],[21,24,["H776"]],[24,26,["H3605"]],[26,28,["H6529"]],[28,31,["H6086"]],[31,32,["H834"]],[32,34,["H1259"]],[34,36,["H3498"]],[36,39,["H3498"]],[39,40,["H3808"]],[40,41,["H3605"]],[41,43,["H3418"]],[43,46,["H6086"]],[46,50,["H6212"]],[50,53,["H7704"]],[53,55,["H3605"]],[55,57,["H776"]],[57,59,["H4714"]]]},{"k":1793,"v":[[0,2,["H6547"]],[2,3,["H7121"]],[3,5,["H4872"]],[5,7,["H175"]],[7,9,["H4116"]],[9,12,["H559"]],[12,15,["H2398"]],[15,18,["H3068"]],[18,20,["H430"]],[20,23,[]]]},{"k":1794,"v":[[0,1,["H6258"]],[1,3,["H5375"]],[3,6,["H4994"]],[6,8,["H2403"]],[8,9,["H389"]],[9,11,["H6471"]],[11,13,["H6279"]],[13,15,["H3068"]],[15,17,["H430"]],[17,22,["H5493"]],[22,23,["H4480","H5921"]],[23,25,["H2088","(H853)"]],[25,26,["H4194"]],[26,27,["H7535"]]]},{"k":1795,"v":[[0,4,["H3318"]],[4,5,["H4480","H5973"]],[5,6,["H6547"]],[6,8,["H6279","H413"]],[8,10,["H3068"]]]},{"k":1796,"v":[[0,3,["H3068"]],[3,4,["H2015"]],[4,6,["H3966"]],[6,7,["H2389"]],[7,8,["H3220"]],[8,9,["H7307"]],[9,12,["H5375","(H853)"]],[12,14,["H697"]],[14,16,["H8628"]],[16,20,["H5488"]],[20,21,["H3220"]],[21,23,["H7604"]],[23,24,["H3808"]],[24,25,["H259"]],[25,26,["H697"]],[26,28,["H3605"]],[28,30,["H1366"]],[30,32,["H4714"]]]},{"k":1797,"v":[[0,3,["H3068"]],[3,4,["H2388","(H853)"]],[4,5,["H6547"]],[5,6,["H3820"]],[6,11,["H3808"]],[11,12,["(H853)"]],[12,14,["H1121"]],[14,16,["H3478"]],[16,17,["H7971"]]]},{"k":1798,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H5186"]],[8,10,["H3027"]],[10,11,["H5921"]],[11,12,["H8064"]],[12,16,["H1961"]],[16,17,["H2822"]],[17,18,["H5921"]],[18,20,["H776"]],[20,22,["H4714"]],[22,24,["H2822"]],[24,28,["H4959"]]]},{"k":1799,"v":[[0,2,["H4872"]],[2,4,["H5186","(H853)"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,8,["H8064"]],[8,11,["H1961"]],[11,13,["H653"]],[13,14,["H2822"]],[14,16,["H3605"]],[16,18,["H776"]],[18,20,["H4714"]],[20,21,["H7969"]],[21,22,["H3117"]]]},{"k":1800,"v":[[0,2,["H7200"]],[2,3,["H3808"]],[3,4,["H376","(H853)"]],[4,5,["H251"]],[5,6,["H3808"]],[6,7,["H6965"]],[7,8,["H376"]],[8,11,["H4480","H8478"]],[11,13,["H7969"]],[13,14,["H3117"]],[14,16,["H3605"]],[16,18,["H1121"]],[18,20,["H3478"]],[20,21,["H1961"]],[21,22,["H216"]],[22,25,["H4186"]]]},{"k":1801,"v":[[0,2,["H6547"]],[2,3,["H7121"]],[3,4,["H413"]],[4,5,["H4872"]],[5,7,["H559"]],[7,8,["H1980"]],[8,10,["H5647","(H853)"]],[10,12,["H3068"]],[12,13,["H7535"]],[13,16,["H6629"]],[16,19,["H1241"]],[19,21,["H3322"]],[21,25,["H2945"]],[25,26,["H1571"]],[26,27,["H1980"]],[27,28,["H5973"]],[28,29,[]]]},{"k":1802,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H859"]],[4,6,["H5414"]],[6,7,["H3027"]],[7,8,["H1571"]],[8,9,["H2077"]],[9,12,["H5930"]],[12,16,["H6213"]],[16,19,["H3068"]],[19,21,["H430"]]]},{"k":1803,"v":[[0,2,["H4735"]],[2,3,["H1571"]],[3,5,["H1980"]],[5,6,["H5973"]],[6,10,["H3808"]],[10,12,["H6541"]],[12,15,["H7604"]],[15,16,["H3588"]],[16,17,["H4480"]],[17,20,["H3947"]],[20,22,["H5647","(H853)"]],[22,24,["H3068"]],[24,26,["H430"]],[26,28,["H587"]],[28,29,["H3045"]],[29,30,["H3808"]],[30,32,["H4100"]],[32,35,["H5647","(H853)"]],[35,37,["H3068"]],[37,38,["H5704"]],[38,40,["H935"]],[40,41,["H8033"]]]},{"k":1804,"v":[[0,3,["H3068"]],[3,4,["H2388","(H853)"]],[4,5,["H6547"]],[5,6,["H3820"]],[6,9,["H14"]],[9,10,["H3808"]],[10,13,["H7971"]]]},{"k":1805,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,6,["H1980"]],[6,8,["H4480","H5921"]],[8,11,["H8104"]],[11,14,["H7200"]],[14,16,["H6440"]],[16,17,["H408"]],[17,18,["H3254"]],[18,19,["H3588"]],[19,22,["H3117"]],[22,24,["H7200"]],[24,26,["H6440"]],[26,29,["H4191"]]]},{"k":1806,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,6,["H1696"]],[6,7,["H3651"]],[7,10,["H7200"]],[10,12,["H6440"]],[12,13,["H3254"]],[13,14,["H3808"]],[14,15,["H5750"]]]},{"k":1807,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H5750"]],[7,10,["H935"]],[10,11,["H259"]],[11,12,["H5061"]],[12,14,["H5921"]],[14,15,["H6547"]],[15,17,["H5921"]],[17,18,["H4714"]],[18,19,["H310","H3651"]],[19,24,["H7971"]],[24,25,["H4480","H2088"]],[25,31,["H7971"]],[31,37,["H1644","H1644","(H853)"]],[37,38,["H4480","H2088"]],[38,39,["H3617"]]]},{"k":1808,"v":[[0,1,["H1696"]],[1,2,["H4994"]],[2,5,["H241"]],[5,8,["H5971"]],[8,12,["H376"]],[12,13,["H7592"]],[13,14,["H4480","H854"]],[14,16,["H7453"]],[16,19,["H802"]],[19,20,["H4480","H854"]],[20,22,["H7468"]],[22,23,["H3627"]],[23,25,["H3701"]],[25,27,["H3627"]],[27,29,["H2091"]]]},{"k":1809,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,6,["H5971","(H853)"]],[6,7,["H2580"]],[7,10,["H5869"]],[10,13,["H4714"]],[13,14,["H1571"]],[14,16,["H376"]],[16,17,["H4872"]],[17,19,["H3966"]],[19,20,["H1419"]],[20,23,["H776"]],[23,25,["H4714"]],[25,28,["H5869"]],[28,30,["H6547"]],[30,31,["H5650"]],[31,35,["H5869"]],[35,38,["H5971"]]]},{"k":1810,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H3541"]],[4,5,["H559"]],[5,7,["H3068"]],[7,9,["H2676","H3915"]],[9,11,["H589"]],[11,13,["H3318"]],[13,16,["H8432"]],[16,18,["H4714"]]]},{"k":1811,"v":[[0,2,["H3605"]],[2,4,["H1060"]],[4,7,["H776"]],[7,9,["H4714"]],[9,11,["H4191"]],[11,14,["H4480","H1060"]],[14,16,["H6547"]],[16,18,["H3427"]],[18,19,["H5921"]],[19,21,["H3678"]],[21,23,["H5704"]],[23,25,["H1060"]],[25,28,["H8198"]],[28,29,["H834"]],[29,31,["H310"]],[31,33,["H7347"]],[33,35,["H3605"]],[35,37,["H1060"]],[37,39,["H929"]]]},{"k":1812,"v":[[0,4,["H1961"]],[4,6,["H1419"]],[6,7,["H6818"]],[7,9,["H3605"]],[9,11,["H776"]],[11,13,["H4714"]],[13,15,["H834"]],[15,17,["H1961"]],[17,18,["H3808"]],[18,20,["H3644"]],[20,21,["H3808"]],[21,25,["H3644"]],[25,27,["H3254"]]]},{"k":1813,"v":[[0,3,["H3605"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,10,["H3808"]],[10,12,["H3611"]],[12,13,["H2782"]],[13,15,["H3956"]],[15,17,["H4480","H376"]],[17,18,["H5704"]],[18,19,["H929"]],[19,20,["H4616"]],[20,23,["H3045"]],[23,25,["H834"]],[25,27,["H3068"]],[27,31,["H6395"]],[31,32,["H996"]],[32,34,["H4714"]],[34,36,["H3478"]]]},{"k":1814,"v":[[0,2,["H3605"]],[2,3,["H428"]],[3,5,["H5650"]],[5,8,["H3381"]],[8,9,["H413"]],[9,14,["H7812"]],[14,17,["H559"]],[17,20,["H3318","H859"]],[20,22,["H3605"]],[22,24,["H5971"]],[24,25,["H834"]],[25,26,["H7272"]],[26,29,["H310"]],[29,30,["H3651"]],[30,34,["H3318"]],[34,38,["H3318"]],[38,39,["H4480","H5973"]],[39,40,["H6547"]],[40,43,["H2750"]],[43,44,["H639"]]]},{"k":1815,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H6547"]],[7,9,["H3808"]],[9,10,["H8085"]],[10,11,["H413"]],[11,13,["H4616"]],[13,15,["H4159"]],[15,18,["H7235"]],[18,21,["H776"]],[21,23,["H4714"]]]},{"k":1816,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,5,["H6213","(H853)"]],[5,6,["H3605"]],[6,7,["H428"]],[7,8,["H4159"]],[8,9,["H6440"]],[9,10,["H6547"]],[10,13,["H3068"]],[13,14,["H2388","(H853)"]],[14,15,["H6547"]],[15,16,["H3820"]],[16,21,["H3808"]],[21,22,["(H853)"]],[22,24,["H1121"]],[24,26,["H3478"]],[26,27,["H7971"]],[27,31,["H4480","H776"]]]},{"k":1817,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H175"]],[8,11,["H776"]],[11,13,["H4714"]],[13,14,["H559"]]]},{"k":1818,"v":[[0,1,["H2088"]],[1,2,["H2320"]],[2,8,["H7218"]],[8,10,["H2320"]],[10,11,["H1931"]],[11,15,["H7223"]],[15,16,["H2320"]],[16,19,["H8141"]],[19,21,[]]]},{"k":1819,"v":[[0,1,["H1696"]],[1,3,["H413"]],[3,4,["H3605"]],[4,6,["H5712"]],[6,8,["H3478"]],[8,9,["H559"]],[9,12,["H6218"]],[12,15,["H2088"]],[15,16,["H2320"]],[16,19,["H3947"]],[19,23,["H376"]],[23,25,["H7716"]],[25,29,["H1004"]],[29,32,["H1"]],[32,34,["H7716"]],[34,37,["H1004"]]]},{"k":1820,"v":[[0,2,["H518"]],[2,4,["H1004"]],[4,7,["H4591"]],[7,10,["H4480","H1961","H4480","H7716"]],[10,12,["H1931"]],[12,15,["H7934"]],[15,16,["H7138"]],[16,17,["H413"]],[17,19,["H1004"]],[19,20,["H3947"]],[20,25,["H4373"]],[25,28,["H5315"]],[28,30,["H376"]],[30,32,["H6310"]],[32,34,["H400"]],[34,38,["H3699"]],[38,39,["H5921"]],[39,41,["H7716"]]]},{"k":1821,"v":[[0,2,["H7716"]],[2,4,["H1961"]],[4,6,["H8549"]],[6,8,["H2145"]],[8,11,["H1121"]],[11,12,["H8141"]],[12,17,["H3947"]],[17,18,["H4480"]],[18,20,["H3532"]],[20,22,["H4480"]],[22,24,["H5795"]]]},{"k":1822,"v":[[0,4,["H1961","H4931"]],[4,7,["H5704"]],[7,9,["H702","H6240"]],[9,10,["H3117"]],[10,13,["H2088"]],[13,14,["H2320"]],[14,17,["H3605"]],[17,18,["H6951"]],[18,21,["H5712"]],[21,23,["H3478"]],[23,25,["H7819"]],[25,27,["H996"]],[27,29,["H6153"]]]},{"k":1823,"v":[[0,4,["H3947"]],[4,5,["H4480"]],[5,7,["H1818"]],[7,9,["H5414"]],[9,11,["H5921"]],[11,13,["H8147"]],[13,15,["H4201"]],[15,17,["H5921"]],[17,21,["H4947"]],[21,22,["H5921"]],[22,24,["H1004"]],[24,25,["H834"]],[25,28,["H398"]],[28,29,[]]]},{"k":1824,"v":[[0,4,["H398","(H853)"]],[4,6,["H1320"]],[6,8,["H2088"]],[8,9,["H3915"]],[9,10,["H6748"]],[10,12,["H784"]],[12,15,["H4682"]],[15,17,["H5921"]],[17,18,["H4844"]],[18,22,["H398"]],[22,23,[]]]},{"k":1825,"v":[[0,1,["H398"]],[1,2,["H408"]],[2,3,["H4480"]],[3,5,["H4995"]],[5,9,["H1311","H1310"]],[9,11,["H4325"]],[11,12,["H3588","H518"]],[12,13,["H6748"]],[13,15,["H784"]],[15,17,["H7218"]],[17,18,["H5921"]],[18,20,["H3767"]],[20,22,["H5921"]],[22,24,["H7130"]],[24,25,[]]]},{"k":1826,"v":[[0,5,["H3808"]],[5,6,["H4480"]],[6,8,["H3498"]],[8,9,["H5704"]],[9,11,["H1242"]],[11,15,["H3498"]],[15,16,["H4480"]],[16,18,["H5704"]],[18,20,["H1242"]],[20,23,["H8313"]],[23,25,["H784"]]]},{"k":1827,"v":[[0,2,["H3602"]],[2,5,["H398"]],[5,9,["H4975"]],[9,10,["H2296"]],[10,12,["H5275"]],[12,15,["H7272"]],[15,18,["H4731"]],[18,21,["H3027"]],[21,25,["H398"]],[25,28,["H2649"]],[28,29,["H1931"]],[29,32,["H3068"]],[32,33,["H6453"]]]},{"k":1828,"v":[[0,5,["H5674"]],[5,7,["H776"]],[7,9,["H4714"]],[9,10,["H2088"]],[10,11,["H3915"]],[11,14,["H5221"]],[14,15,["H3605"]],[15,17,["H1060"]],[17,20,["H776"]],[20,22,["H4714"]],[22,24,["H4480","H120"]],[24,26,["H929"]],[26,29,["H3605"]],[29,31,["H430"]],[31,33,["H4714"]],[33,36,["H6213"]],[36,37,["H8201"]],[37,38,["H589"]],[38,41,["H3068"]]]},{"k":1829,"v":[[0,3,["H1818"]],[3,5,["H1961"]],[5,10,["H226"]],[10,11,["H5921"]],[11,13,["H1004"]],[13,14,["H834"]],[14,15,["H859"]],[15,20,["H7200","(H853)"]],[20,22,["H1818"]],[22,25,["H6452"]],[25,26,["H5921"]],[26,30,["H5063"]],[30,32,["H3808"]],[32,33,["H1961"]],[33,37,["H4889"]],[37,41,["H5221"]],[41,43,["H776"]],[43,45,["H4714"]]]},{"k":1830,"v":[[0,2,["H2088"]],[2,3,["H3117"]],[3,5,["H1961"]],[5,10,["H2146"]],[10,14,["H2287"]],[14,17,["H2282"]],[17,20,["H3068"]],[20,23,["H1755"]],[23,29,["H2287"]],[29,32,["H2708"]],[32,34,["H5769"]]]},{"k":1831,"v":[[0,1,["H7651"]],[1,2,["H3117"]],[2,5,["H398"]],[5,7,["H4682"]],[7,8,["H389"]],[8,10,["H7223"]],[10,11,["H3117"]],[11,15,["H7673"]],[15,16,["H7603"]],[16,20,["H4480","H1004"]],[20,21,["H3588"]],[21,22,["H3605"]],[22,23,["H398"]],[23,25,["H2557"]],[25,29,["H4480","H7223","H3117"]],[29,30,["H5704"]],[30,32,["H7637"]],[32,33,["H3117"]],[33,34,["H1931"]],[34,35,["H5315"]],[35,39,["H3772"]],[39,41,["H4480","H3478"]]]},{"k":1832,"v":[[0,4,["H7223"]],[4,5,["H3117"]],[5,10,["H6944"]],[10,11,["H4744"]],[11,15,["H7637"]],[15,16,["H3117"]],[16,19,["H1961"]],[19,21,["H6944"]],[21,22,["H4744"]],[22,25,["H3808"]],[25,26,["H3605"]],[26,28,["H4399"]],[28,31,["H6213"]],[31,34,["H389"]],[34,36,["H834"]],[36,37,["H3605"]],[37,38,["H5315"]],[38,40,["H398"]],[40,41,["H1931"]],[41,42,["H905"]],[42,45,["H6213"]],[45,47,[]]]},{"k":1833,"v":[[0,4,["H8104","(H853)"]],[4,9,["H4682"]],[9,10,["H3588"]],[10,12,["H2088"]],[12,13,["H6106"]],[13,14,["H3117"]],[14,20,["H3318","(H853)","H6635"]],[20,23,["H4480","H776"]],[23,25,["H4714"]],[25,29,["H8104","(H853)"]],[29,30,["H2088"]],[30,31,["H3117"]],[31,34,["H1755"]],[34,37,["H2708"]],[37,39,["H5769"]]]},{"k":1834,"v":[[0,3,["H7223"]],[3,7,["H702","H6240"]],[7,8,["H3117"]],[8,11,["H2320"]],[11,13,["H6153"]],[13,16,["H398"]],[16,18,["H4682"]],[18,19,["H5704"]],[19,21,["H259"]],[21,23,["H6242"]],[23,24,["H3117"]],[24,27,["H2320"]],[27,29,["H6153"]]]},{"k":1835,"v":[[0,1,["H7651"]],[1,2,["H3117"]],[2,6,["H3808"]],[6,7,["H7603"]],[7,8,["H4672"]],[8,11,["H1004"]],[11,12,["H3588"]],[12,13,["H3605"]],[13,14,["H398"]],[14,18,["H2557"]],[18,20,["H1931"]],[20,21,["H5315"]],[21,25,["H3772"]],[25,28,["H4480","H5712"]],[28,30,["H3478"]],[30,35,["H1616"]],[35,37,["H249"]],[37,40,["H776"]]]},{"k":1836,"v":[[0,3,["H398"]],[3,4,["H3605","H3808"]],[4,5,["H2557"]],[5,7,["H3605"]],[7,9,["H4186"]],[9,12,["H398"]],[12,14,["H4682"]]]},{"k":1837,"v":[[0,2,["H4872"]],[2,3,["H7121"]],[3,5,["H3605"]],[5,7,["H2205"]],[7,9,["H3478"]],[9,11,["H559"]],[11,12,["H413"]],[12,15,["H4900"]],[15,17,["H3947"]],[17,20,["H6629"]],[20,24,["H4940"]],[24,26,["H7819"]],[26,28,["H6453"]]]},{"k":1838,"v":[[0,4,["H3947"]],[4,6,["H92"]],[6,8,["H231"]],[8,10,["H2881"]],[10,14,["H1818"]],[14,15,["H834"]],[15,19,["H5592"]],[19,21,["H5060","H413"]],[21,23,["H4947"]],[23,26,["H8147"]],[26,28,["H4201"]],[28,29,["H4480"]],[29,31,["H1818"]],[31,32,["H834"]],[32,36,["H5592"]],[36,38,["H3808","H376"]],[38,40,["H859"]],[40,43,["H3318"]],[43,46,["H4480","H6607"]],[46,49,["H1004"]],[49,50,["H5704"]],[50,52,["H1242"]]]},{"k":1839,"v":[[0,3,["H3068"]],[3,6,["H5674"]],[6,8,["H5062","(H853)"]],[8,10,["H4714"]],[10,14,["H7200","(H853)"]],[14,16,["H1818"]],[16,17,["H5921"]],[17,19,["H4947"]],[19,21,["H5921"]],[21,23,["H8147"]],[23,25,["H4201"]],[25,27,["H3068"]],[27,29,["H6452"]],[29,30,["H5921"]],[30,32,["H6607"]],[32,35,["H3808"]],[35,36,["H5414"]],[36,38,["H7843"]],[38,41,["H935"]],[41,42,["H413"]],[42,44,["H1004"]],[44,46,["H5062"]],[46,47,[]]]},{"k":1840,"v":[[0,4,["H8104","(H853)"]],[4,5,["H2088"]],[5,6,["H1697"]],[6,9,["H2706"]],[9,15,["H1121"]],[15,17,["H5704","H5769"]]]},{"k":1841,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,10,["H935"]],[10,11,["H413"]],[11,13,["H776"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H5414"]],[18,21,["H834"]],[21,24,["H1696"]],[24,28,["H8104","(H853)"]],[28,29,["H2063"]],[29,30,["H5656"]]]},{"k":1842,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,9,["H1121"]],[9,11,["H559"]],[11,12,["H413"]],[12,14,["H4100"]],[14,18,["H2063"]],[18,19,["H5656"]]]},{"k":1843,"v":[[0,4,["H559"]],[4,5,["H1931"]],[5,8,["H2077"]],[8,11,["H3068"]],[11,12,["H6453"]],[12,13,["H834"]],[13,14,["H6452"]],[14,15,["H5921"]],[15,17,["H1004"]],[17,20,["H1121"]],[20,22,["H3478"]],[22,24,["H4714"]],[24,27,["H5062","(H853)"]],[27,29,["H4714"]],[29,31,["H5337"]],[31,33,["H1004"]],[33,36,["H5971"]],[36,39,["H6915"]],[39,41,["H7812"]]]},{"k":1844,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H1980"]],[7,9,["H6213"]],[9,10,["H834"]],[10,12,["H3068"]],[12,14,["H6680","(H853)"]],[14,15,["H4872"]],[15,17,["H175"]],[17,18,["H3651"]],[18,19,["H6213"]],[19,20,[]]]},{"k":1845,"v":[[0,5,["H1961"]],[5,8,["H2677","H3915"]],[8,10,["H3068"]],[10,11,["H5221"]],[11,12,["H3605"]],[12,14,["H1060"]],[14,17,["H776"]],[17,19,["H4714"]],[19,22,["H4480","H1060"]],[22,24,["H6547"]],[24,26,["H3427"]],[26,27,["H5921"]],[27,29,["H3678"]],[29,30,["H5704"]],[30,32,["H1060"]],[32,35,["H7628"]],[35,36,["H834"]],[36,40,["H1004","H953"]],[40,42,["H3605"]],[42,44,["H1060"]],[44,46,["H929"]]]},{"k":1846,"v":[[0,2,["H6547"]],[2,4,["H6965"]],[4,7,["H3915"]],[7,8,["H1931"]],[8,10,["H3605"]],[10,12,["H5650"]],[12,14,["H3605"]],[14,16,["H4714"]],[16,19,["H1961"]],[19,21,["H1419"]],[21,22,["H6818"]],[22,24,["H4714"]],[24,25,["H3588"]],[25,28,["H369"]],[28,30,["H1004"]],[30,31,["H834","H8033"]],[31,34,["H369"]],[34,36,["H4191"]]]},{"k":1847,"v":[[0,3,["H7121"]],[3,5,["H4872"]],[5,7,["H175"]],[7,9,["H3915"]],[9,11,["H559"]],[11,13,["H6965"]],[13,17,["H3318"]],[17,19,["H4480","H8432"]],[19,21,["H5971"]],[21,22,["H1571"]],[22,23,["H859"]],[23,24,["H1571"]],[24,26,["H1121"]],[26,28,["H3478"]],[28,30,["H1980"]],[30,31,["H5647","(H853)"]],[31,33,["H3068"]],[33,37,["H1696"]]]},{"k":1848,"v":[[0,1,["H1571"]],[1,2,["H3947"]],[2,4,["H6629"]],[4,5,["H1571"]],[5,7,["H1241"]],[7,8,["H834"]],[8,11,["H1696"]],[11,14,["H1980"]],[14,16,["H1288"]],[16,18,["H1571"]]]},{"k":1849,"v":[[0,3,["H4714"]],[3,5,["H2388"]],[5,6,["H5921"]],[6,8,["H5971"]],[8,14,["H7971"]],[14,15,["H4480"]],[15,17,["H776"]],[17,19,["H4116"]],[19,20,["H3588"]],[20,22,["H559"]],[22,25,["H3605"]],[25,26,["H4191"]],[26,27,[]]]},{"k":1850,"v":[[0,3,["H5971"]],[3,4,["H5375","(H853)"]],[4,6,["H1217"]],[6,7,["H2962"]],[7,10,["H2556"]],[10,12,["H4863"]],[12,15,["H6887"]],[15,18,["H8071"]],[18,19,["H5921"]],[19,21,["H7926"]]]},{"k":1851,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,10,["H1697"]],[10,12,["H4872"]],[12,15,["H7592"]],[15,18,["H4480","H4714"]],[18,19,["H3627"]],[19,21,["H3701"]],[21,23,["H3627"]],[23,25,["H2091"]],[25,27,["H8071"]]]},{"k":1852,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,6,["H5971","(H853)"]],[6,7,["H2580"]],[7,10,["H5869"]],[10,13,["H4714"]],[13,17,["H7592"]],[17,27,["H5337","(H853)"]],[27,29,["H4714"]]]},{"k":1853,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5265"]],[6,8,["H4480","H7486"]],[8,10,["H5523"]],[10,12,["H8337"]],[12,13,["H3967"]],[13,14,["H505"]],[14,16,["H7273"]],[16,19,["H1397"]],[19,20,["H905"]],[20,21,["H4480","H2945"]]]},{"k":1854,"v":[[0,3,["H6154"]],[3,4,["H7227"]],[4,6,["H5927"]],[6,7,["H1571"]],[7,8,["H854"]],[8,11,["H6629"]],[11,13,["H1241"]],[13,15,["H3966"]],[15,16,["H3515"]],[16,17,["H4735"]]]},{"k":1855,"v":[[0,3,["H644"]],[3,4,["H4682"]],[4,5,["H5692"]],[5,6,["(H853)"]],[6,8,["H1217"]],[8,9,["H834"]],[9,12,["H3318"]],[12,15,["H4480","H4714"]],[15,16,["H3588"]],[16,20,["H3808","H2556"]],[20,21,["H3588"]],[21,25,["H1644"]],[25,27,["H4480","H4714"]],[27,29,["H3201"]],[29,30,["H3808"]],[30,31,["H4102"]],[31,32,["H1571","H3808"]],[32,35,["H6213"]],[35,39,["H6720"]]]},{"k":1856,"v":[[0,3,["H4186"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,9,["H834"]],[9,10,["H3427"]],[10,12,["H4714"]],[12,14,["H702"]],[14,15,["H3967"]],[15,17,["H7970"]],[17,18,["H8141"]]]},{"k":1857,"v":[[0,5,["H1961"]],[5,8,["H4480","H7093"]],[8,11,["H702"]],[11,12,["H3967"]],[12,14,["H7970"]],[14,15,["H8141"]],[15,18,["H2088","H6106"]],[18,19,["H3117"]],[19,23,["H1961"]],[23,25,["H3605"]],[25,27,["H6635"]],[27,30,["H3068"]],[30,32,["H3318"]],[32,35,["H4480","H776"]],[35,37,["H4714"]]]},{"k":1858,"v":[[0,1,["H1931"]],[1,4,["H3915"]],[4,8,["H8107"]],[8,11,["H3068"]],[11,15,["H3318"]],[15,18,["H4480","H776"]],[18,20,["H4714"]],[20,21,["H2088"]],[21,23,["H1931"]],[23,24,["H3915"]],[24,27,["H3068"]],[27,30,["H8107"]],[30,32,["H3605"]],[32,34,["H1121"]],[34,36,["H3478"]],[36,39,["H1755"]]]},{"k":1859,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H175"]],[8,9,["H2063"]],[9,12,["H2708"]],[12,15,["H6453"]],[15,18,["H3808","H3605"]],[18,19,["H1121","H5236"]],[19,20,["H398"]],[20,21,[]]]},{"k":1860,"v":[[0,2,["H3605"]],[2,3,["H376"]],[3,4,["H5650"]],[4,7,["H4736"]],[7,9,["H3701"]],[9,13,["H4135"]],[13,15,["H227"]],[15,18,["H398"]],[18,19,[]]]},{"k":1861,"v":[[0,2,["H8453"]],[2,6,["H7916"]],[6,8,["H3808"]],[8,9,["H398"]],[9,10,[]]]},{"k":1862,"v":[[0,2,["H259"]],[2,3,["H1004"]],[3,7,["H398"]],[7,10,["H3808"]],[10,12,["H3318"]],[12,14,["H4480"]],[14,16,["H1320"]],[16,17,["H2351"]],[17,19,["H4480"]],[19,21,["H1004"]],[21,22,["H3808"]],[22,25,["H7665"]],[25,27,["H6106"]],[27,28,[]]]},{"k":1863,"v":[[0,1,["H3605"]],[1,3,["H5712"]],[3,5,["H3478"]],[5,7,["H6213"]],[7,8,[]]]},{"k":1864,"v":[[0,2,["H3588"]],[2,4,["H1616"]],[4,6,["H1481"]],[6,7,["H854"]],[7,11,["H6213"]],[11,13,["H6453"]],[13,16,["H3068"]],[16,18,["H3605"]],[18,20,["H2145"]],[20,22,["H4135"]],[22,24,["H227"]],[24,28,["H7126"]],[28,30,["H6213"]],[30,35,["H1961"]],[35,41,["H249"]],[41,43,["H776"]],[43,47,["H3808","H3605","H6189"]],[47,49,["H398"]],[49,50,[]]]},{"k":1865,"v":[[0,1,["H259"]],[1,2,["H8451"]],[2,4,["H1961"]],[4,9,["H249"]],[9,13,["H1616"]],[13,15,["H1481"]],[15,16,["H8432"]],[16,17,[]]]},{"k":1866,"v":[[0,2,["H6213"]],[2,3,["H3605"]],[3,5,["H1121"]],[5,7,["H3478"]],[7,8,["H834"]],[8,10,["H3068"]],[10,11,["H6680","(H853)"]],[11,12,["H4872"]],[12,14,["H175"]],[14,15,["H3651"]],[15,16,["H6213"]],[16,17,[]]]},{"k":1867,"v":[[0,5,["H1961"]],[5,7,["H2088","H6106"]],[7,8,["H3117"]],[8,11,["H3068"]],[11,13,["H3318","(H853)"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,21,["H4480","H776"]],[21,23,["H4714"]],[23,24,["H5921"]],[24,26,["H6635"]]]},{"k":1868,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":1869,"v":[[0,1,["H6942"]],[1,4,["H3605"]],[4,6,["H1060"]],[6,7,["H3605"]],[7,8,["H6363"]],[8,10,["H7358"]],[10,13,["H1121"]],[13,15,["H3478"]],[15,18,["H120"]],[18,21,["H929"]],[21,22,["H1931"]],[22,24,[]]]},{"k":1870,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H2142","(H853)"]],[7,8,["H2088"]],[8,9,["H3117"]],[9,11,["H834"]],[11,14,["H3318"]],[14,16,["H4480","H4714"]],[16,20,["H4480","H1004"]],[20,22,["H5650"]],[22,23,["H3588"]],[23,25,["H2392"]],[25,27,["H3027"]],[27,29,["H3068"]],[29,32,["H3318","(H853)"]],[32,34,["H4480","H2088"]],[34,38,["H3808"]],[38,40,["H2557"]],[40,42,["H398"]]]},{"k":1871,"v":[[0,2,["H3117"]],[2,5,["H3318","H859"]],[5,8,["H2320"]],[8,9,["H24"]]]},{"k":1872,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,7,["H3068"]],[7,9,["H935"]],[9,11,["H413"]],[11,13,["H776"]],[13,16,["H3669"]],[16,19,["H2850"]],[19,22,["H567"]],[22,25,["H2340"]],[25,28,["H2983"]],[28,29,["H834"]],[29,31,["H7650"]],[31,34,["H1"]],[34,36,["H5414"]],[36,39,["H776"]],[39,40,["H2100"]],[40,42,["H2461"]],[42,44,["H1706"]],[44,48,["H5647","(H853)"]],[48,49,["H2063"]],[49,50,["H5656"]],[50,52,["H2088"]],[52,53,["H2320"]]]},{"k":1873,"v":[[0,1,["H7651"]],[1,2,["H3117"]],[2,5,["H398"]],[5,7,["H4682"]],[7,11,["H7637"]],[11,12,["H3117"]],[12,16,["H2282"]],[16,19,["H3068"]]]},{"k":1874,"v":[[0,2,["H4682"]],[2,5,["H398","(H853)"]],[5,6,["H7651"]],[6,7,["H3117"]],[7,11,["H3808"]],[11,13,["H2557"]],[13,15,["H7200"]],[15,18,["H3808"]],[18,22,["H7603"]],[22,23,["H7200"]],[23,27,["H3605"]],[27,29,["H1366"]]]},{"k":1875,"v":[[0,4,["H5046"]],[4,6,["H1121"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,10,["H559"]],[10,14,["H5668"]],[14,16,["H2088"]],[16,19,["H3068"]],[19,20,["H6213"]],[20,26,["H3318"]],[26,29,["H4480","H4714"]]]},{"k":1876,"v":[[0,4,["H1961"]],[4,7,["H226"]],[7,10,["H5921"]],[10,12,["H3027"]],[12,16,["H2146"]],[16,17,["H996"]],[17,19,["H5869"]],[19,20,["H4616"]],[20,22,["H3068"]],[22,23,["H8451"]],[23,25,["H1961"]],[25,28,["H6310"]],[28,29,["H3588"]],[29,32,["H2389"]],[32,33,["H3027"]],[33,36,["H3068"]],[36,39,["H3318"]],[39,41,["H4480","H4714"]]]},{"k":1877,"v":[[0,4,["H8104","(H853)"]],[4,5,["H2063"]],[5,6,["H2708"]],[6,9,["H4150"]],[9,11,["H4480","H3117"]],[11,13,["H3117"]]]},{"k":1878,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,7,["H3068"]],[7,9,["H935"]],[9,11,["H413"]],[11,13,["H776"]],[13,16,["H3669"]],[16,17,["H834"]],[17,19,["H7650"]],[19,25,["H1"]],[25,28,["H5414"]],[28,30,[]]]},{"k":1879,"v":[[0,5,["H5674"]],[5,8,["H3068"]],[8,9,["H3605"]],[9,11,["H6363"]],[11,13,["H7358"]],[13,15,["H3605"]],[15,16,["H6363"]],[16,18,["H7698"]],[18,21,["H929"]],[21,22,["H834"]],[22,24,["H1961"]],[24,26,["H2145"]],[26,30,["H3068"]]]},{"k":1880,"v":[[0,2,["H3605"]],[2,3,["H6363"]],[3,6,["H2543"]],[6,9,["H6299"]],[9,12,["H7716"]],[12,14,["H518"]],[14,17,["H3808"]],[17,18,["H6299"]],[18,25,["H6202"]],[25,27,["H3605"]],[27,29,["H1060"]],[29,31,["H120"]],[31,34,["H1121"]],[34,37,["H6299"]]]},{"k":1881,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,7,["H1121"]],[7,8,["H7592"]],[8,13,["H4279"]],[13,14,["H559"]],[14,15,["H4100"]],[15,17,["H2063"]],[17,21,["H559"]],[21,22,["H413"]],[22,25,["H2392"]],[25,27,["H3027"]],[27,29,["H3068"]],[29,32,["H3318"]],[32,34,["H4480","H4714"]],[34,37,["H4480","H1004"]],[37,39,["H5650"]]]},{"k":1882,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,7,["H6547"]],[7,9,["H7185"]],[9,12,["H7971"]],[12,15,["H3068"]],[15,16,["H2026"]],[16,17,["H3605"]],[17,19,["H1060"]],[19,22,["H776"]],[22,24,["H4714"]],[24,27,["H4480","H1060"]],[27,29,["H120"]],[29,32,["H1060"]],[32,34,["H929"]],[34,35,["H5921","H3651"]],[35,36,["H589"]],[36,37,["H2076"]],[37,40,["H3068"]],[40,41,["H3605"]],[41,43,["H6363"]],[43,45,["H7358"]],[45,47,["H2145"]],[47,49,["H3605"]],[49,51,["H1060"]],[51,54,["H1121"]],[54,56,["H6299"]]]},{"k":1883,"v":[[0,4,["H1961"]],[4,7,["H226"]],[7,8,["H5921"]],[8,10,["H3027"]],[10,13,["H2903"]],[13,14,["H996"]],[14,16,["H5869"]],[16,17,["H3588"]],[17,19,["H2392"]],[19,21,["H3027"]],[21,23,["H3068"]],[23,26,["H3318"]],[26,29,["H4480","H4714"]]]},{"k":1884,"v":[[0,5,["H1961"]],[5,7,["H6547"]],[7,9,["(H853)"]],[9,11,["H5971"]],[11,12,["H7971"]],[12,14,["H430"]],[14,15,["H5148"]],[15,17,["H3808"]],[17,20,["H1870"]],[20,23,["H776"]],[23,26,["H6430"]],[26,27,["H3588"]],[27,28,["H1931"]],[28,30,["H7138"]],[30,31,["H3588"]],[31,32,["H430"]],[32,33,["H559"]],[33,35,["H6435"]],[35,37,["H5971"]],[37,38,["H5162"]],[38,41,["H7200"]],[41,42,["H4421"]],[42,45,["H7725"]],[45,47,["H4714"]]]},{"k":1885,"v":[[0,2,["H430"]],[2,6,["H5437","(H853)","H5971"]],[6,9,["H1870"]],[9,12,["H4057"]],[12,15,["H5488"]],[15,16,["H3220"]],[16,19,["H1121"]],[19,21,["H3478"]],[21,23,["H5927"]],[23,24,["H2571"]],[24,28,["H4480","H776"]],[28,30,["H4714"]]]},{"k":1886,"v":[[0,2,["H4872"]],[2,3,["H3947","(H853)"]],[3,5,["H6106"]],[5,7,["H3130"]],[7,8,["H5973"]],[8,10,["H3588"]],[10,14,["H7650","H7650","(H853)"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,19,["H559"]],[19,20,["H430"]],[20,23,["H6485","H6485"]],[23,32,["H5927","(H853)","H6106"]],[32,33,["H4480","H2088"]],[33,34,["H854"]],[34,35,[]]]},{"k":1887,"v":[[0,5,["H5265"]],[5,7,["H4480","H5523"]],[7,9,["H2583"]],[9,11,["H864"]],[11,14,["H7097"]],[14,17,["H4057"]]]},{"k":1888,"v":[[0,3,["H3068"]],[3,4,["H1980"]],[4,5,["H6440"]],[5,8,["H3119"]],[8,11,["H5982"]],[11,14,["H6051"]],[14,16,["H5148"]],[16,19,["H1870"]],[19,22,["H3915"]],[22,25,["H5982"]],[25,27,["H784"]],[27,31,["H215"]],[31,33,["H1980"]],[33,35,["H3119"]],[35,37,["H3915"]]]},{"k":1889,"v":[[0,4,["H4185","H3808"]],[4,6,["H5982"]],[6,9,["H6051"]],[9,11,["H3119"]],[11,14,["H5982"]],[14,16,["H784"]],[16,18,["H3915"]],[18,20,["H6440"]],[20,22,["H5971"]]]},{"k":1890,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":1891,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,9,["H7725"]],[9,11,["H2583"]],[11,12,["H6440"]],[12,13,["H6367"]],[13,14,["H996"]],[14,15,["H4024"]],[15,18,["H3220"]],[18,20,["H6440"]],[20,21,["H1189"]],[21,22,["H5226"]],[22,26,["H2583"]],[26,27,["H5921"]],[27,29,["H3220"]]]},{"k":1892,"v":[[0,2,["H6547"]],[2,4,["H559"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,10,["H1992"]],[10,12,["H943"]],[12,15,["H776"]],[15,17,["H4057"]],[17,21,["H5462","H5921"]]]},{"k":1893,"v":[[0,4,["H2388","(H853)"]],[4,5,["H6547"]],[5,6,["H3820"]],[6,10,["H7291"]],[10,11,["H310"]],[11,17,["H3513"]],[17,19,["H6547"]],[19,22,["H3605"]],[22,24,["H2428"]],[24,27,["H4714"]],[27,29,["H3045"]],[29,30,["H3588"]],[30,31,["H589"]],[31,34,["H3068"]],[34,37,["H6213"]],[37,38,["H3651"]]]},{"k":1894,"v":[[0,4,["H5046"]],[4,6,["H4428"]],[6,8,["H4714"]],[8,9,["H3588"]],[9,11,["H5971"]],[11,12,["H1272"]],[12,15,["H3824"]],[15,17,["H6547"]],[17,21,["H5650"]],[21,23,["H2015"]],[23,24,["H413"]],[24,26,["H5971"]],[26,29,["H559"]],[29,30,["H4100"]],[30,33,["H6213"]],[33,34,["H2063"]],[34,35,["H3588"]],[35,38,["(H853)"]],[38,39,["H3478"]],[39,40,["H7971"]],[40,42,["H4480","H5647"]],[42,43,[]]]},{"k":1895,"v":[[0,4,["H631","(H853)"]],[4,6,["H7393"]],[6,8,["H3947"]],[8,10,["H5971"]],[10,11,["H5973"]],[11,12,[]]]},{"k":1896,"v":[[0,3,["H3947"]],[3,4,["H8337"]],[4,5,["H3967"]],[5,6,["H977"]],[6,7,["H7393"]],[7,9,["H3605"]],[9,11,["H7393"]],[11,13,["H4714"]],[13,15,["H7991"]],[15,16,["H5921"]],[16,18,["H3605"]],[18,20,[]]]},{"k":1897,"v":[[0,3,["H3068"]],[3,4,["H2388","(H853)"]],[4,6,["H3820"]],[6,8,["H6547"]],[8,9,["H4428"]],[9,11,["H4714"]],[11,14,["H7291"]],[14,15,["H310"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,26,["H3318"]],[26,29,["H7311"]],[29,30,["H3027"]]]},{"k":1898,"v":[[0,3,["H4714"]],[3,4,["H7291"]],[4,5,["H310"]],[5,7,["H3605"]],[7,9,["H5483"]],[9,11,["H7393"]],[11,13,["H6547"]],[13,16,["H6571"]],[16,19,["H2428"]],[19,21,["H5381"]],[21,23,["H2583"]],[23,24,["H5921"]],[24,26,["H3220"]],[26,27,["H5921"]],[27,28,["H6367"]],[28,29,["H6440"]],[29,30,["H1189"]]]},{"k":1899,"v":[[0,3,["H6547"]],[3,5,["H7126"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,11,["H5375","(H853)"]],[11,13,["H5869"]],[13,15,["H2009"]],[15,17,["H4714"]],[17,18,["H5265"]],[18,19,["H310"]],[19,24,["H3966"]],[24,25,["H3372"]],[25,28,["H1121"]],[28,30,["H3478"]],[30,32,["H6817"]],[32,33,["H413"]],[33,35,["H3068"]]]},{"k":1900,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H4872"]],[5,6,["H4480","H1097"]],[6,9,["H369"]],[9,10,["H6913"]],[10,12,["H4714"]],[12,17,["H3947"]],[17,19,["H4191"]],[19,22,["H4057"]],[22,23,["H4100"]],[23,26,["H6213"]],[26,27,["H2063"]],[27,33,["H3318"]],[33,36,["H4480","H4714"]]]},{"k":1901,"v":[[0,2,["H3808"]],[2,3,["H2088"]],[3,5,["H1697"]],[5,6,["H834"]],[6,9,["H1696","H413"]],[9,12,["H4714"]],[12,13,["H559"]],[13,16,["H2308","H4480"]],[16,20,["H5647","(H853)"]],[20,22,["H4714"]],[22,23,["H3588"]],[23,27,["H2896"]],[27,31,["H5647","(H853)"]],[31,33,["H4714"]],[33,38,["H4480","H4191"]],[38,41,["H4057"]]]},{"k":1902,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H3372"]],[7,9,["H408"]],[9,11,["H3320"]],[11,13,["H7200","(H853)"]],[13,15,["H3444"]],[15,18,["H3068"]],[18,19,["H834"]],[19,22,["H6213"]],[22,26,["H3117"]],[26,27,["H3588","(H853)"]],[27,29,["H4714"]],[29,30,["H834"]],[30,33,["H7200"]],[33,35,["H3117"]],[35,38,["H7200"]],[38,40,["H5750"]],[40,41,["H3808"]],[41,42,["H3254"]],[42,44,["H5921","H5769"]]]},{"k":1903,"v":[[0,2,["H3068"]],[2,4,["H3898"]],[4,8,["H859"]],[8,12,["H2790"]]]},{"k":1904,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H4100"]],[7,8,["H6817"]],[8,10,["H413"]],[10,12,["H1696"]],[12,13,["H413"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,21,["H5265"]]]},{"k":1905,"v":[[0,4,["H7311","H859","(H853)"]],[4,6,["H4294"]],[6,9,["H5186","(H853)"]],[9,11,["H3027"]],[11,12,["H5921"]],[12,14,["H3220"]],[14,16,["H1234"]],[16,20,["H1121"]],[20,22,["H3478"]],[22,24,["H935"]],[24,26,["H3004"]],[26,30,["H8432"]],[30,33,["H3220"]]]},{"k":1906,"v":[[0,2,["H589"]],[2,3,["H2009"]],[3,6,["H2388","(H853)"]],[6,8,["H3820"]],[8,11,["H4714"]],[11,15,["H935","H310"]],[15,22,["H3513"]],[22,24,["H6547"]],[24,27,["H3605"]],[27,29,["H2428"]],[29,32,["H7393"]],[32,36,["H6571"]]]},{"k":1907,"v":[[0,3,["H4714"]],[3,5,["H3045"]],[5,6,["H3588"]],[6,7,["H589"]],[7,10,["H3068"]],[10,16,["H3513"]],[16,18,["H6547"]],[18,21,["H7393"]],[21,25,["H6571"]]]},{"k":1908,"v":[[0,3,["H4397"]],[3,5,["H430"]],[5,7,["H1980"]],[7,8,["H6440"]],[8,10,["H4264"]],[10,12,["H3478"]],[12,13,["H5265"]],[13,15,["H1980"]],[15,16,["H4480","H310"]],[16,20,["H5982"]],[20,23,["H6051"]],[23,24,["H5265"]],[24,28,["H4480","H6440"]],[28,30,["H5975"]],[30,31,["H4480","H310"]],[31,32,[]]]},{"k":1909,"v":[[0,3,["H935"]],[3,4,["H996"]],[4,6,["H4264"]],[6,9,["H4714"]],[9,12,["H4264"]],[12,14,["H3478"]],[14,17,["H1961"]],[17,19,["H6051"]],[19,21,["H2822"]],[21,27,["H215","(H853)"]],[27,29,["H3915"]],[29,35,["H2088"]],[35,38,["H7126","H3808"]],[38,40,["H2088"]],[40,41,["H3605"]],[41,43,["H3915"]]]},{"k":1910,"v":[[0,2,["H4872"]],[2,4,["H5186","(H853)"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,9,["H3220"]],[9,12,["H3068"]],[12,13,["(H853)"]],[13,15,["H3220"]],[15,17,["H1980"]],[17,21,["H5794"]],[21,22,["H6921"]],[22,23,["H7307"]],[23,24,["H3605"]],[24,26,["H3915"]],[26,28,["H7760","(H853)"]],[28,30,["H3220"]],[30,31,["H2724"]],[31,35,["H4325"]],[35,37,["H1234"]]]},{"k":1911,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H935"]],[6,9,["H8432"]],[9,12,["H3220"]],[12,15,["H3004"]],[15,19,["H4325"]],[19,22,["H2346"]],[22,28,["H4480","H3225"]],[28,32,["H4480","H8040"]]]},{"k":1912,"v":[[0,3,["H4714"]],[3,4,["H7291"]],[4,7,["H935"]],[7,8,["H310"]],[8,10,["H413"]],[10,12,["H8432"]],[12,15,["H3220"]],[15,17,["H3605"]],[17,18,["H6547"]],[18,19,["H5483"]],[19,21,["H7393"]],[21,24,["H6571"]]]},{"k":1913,"v":[[0,5,["H1961"]],[5,9,["H1242"]],[9,10,["H821"]],[10,12,["H3068"]],[12,13,["H8259"]],[13,14,["H413"]],[14,16,["H4264"]],[16,19,["H4714"]],[19,22,["H5982"]],[22,24,["H784"]],[24,28,["H6051"]],[28,30,["H2000","(H853)"]],[30,32,["H4264"]],[32,35,["H4714"]]]},{"k":1914,"v":[[0,3,["H5493","(H853)"]],[3,5,["H4818"]],[5,6,["H212"]],[6,9,["H5090"]],[9,11,["H3517"]],[11,15,["H4714"]],[15,16,["H559"]],[16,19,["H5127"]],[19,22,["H4480","H6440"]],[22,24,["H3478"]],[24,25,["H3588"]],[25,27,["H3068"]],[27,28,["H3898"]],[28,33,["H4714"]]]},{"k":1915,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H5186","(H853)"]],[8,10,["H3027"]],[10,11,["H5921"]],[11,13,["H3220"]],[13,16,["H4325"]],[16,19,["H7725"]],[19,20,["H5921"]],[20,22,["H4714"]],[22,23,["H5921"]],[23,25,["H7393"]],[25,27,["H5921"]],[27,29,["H6571"]]]},{"k":1916,"v":[[0,2,["H4872"]],[2,4,["H5186","(H853)"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,9,["H3220"]],[9,12,["H3220"]],[12,13,["H7725"]],[13,16,["H386"]],[16,19,["H1242"]],[19,20,["H6437"]],[20,23,["H4714"]],[23,24,["H5127"]],[24,25,["H7125"]],[25,29,["H3068"]],[29,30,["H5287","(H853)"]],[30,32,["H4714"]],[32,35,["H8432"]],[35,38,["H3220"]]]},{"k":1917,"v":[[0,3,["H4325"]],[3,4,["H7725"]],[4,6,["H3680","(H853)"]],[6,8,["H7393"]],[8,11,["H6571"]],[11,13,["H3605"]],[13,15,["H2428"]],[15,17,["H6547"]],[17,19,["H935"]],[19,22,["H3220"]],[22,23,["H310"]],[23,26,["H7604"]],[26,27,["H3808"]],[27,30,["H5704"]],[30,31,["H259"]],[31,33,[]]]},{"k":1918,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H1980"]],[6,8,["H3004"]],[8,12,["H8432"]],[12,15,["H3220"]],[15,18,["H4325"]],[18,21,["H2346"]],[21,27,["H4480","H3225"]],[27,31,["H4480","H8040"]]]},{"k":1919,"v":[[0,3,["H3068"]],[3,4,["H3467","(H853)"]],[4,5,["H3478"]],[5,6,["H1931"]],[6,7,["H3117"]],[7,11,["H4480","H3027"]],[11,14,["H4714"]],[14,16,["H3478"]],[16,17,["H7200","(H853)"]],[17,19,["H4714"]],[19,20,["H4191"]],[20,21,["H5921"]],[21,23,["H3220"]],[23,24,["H8193"]]]},{"k":1920,"v":[[0,2,["H3478"]],[2,3,["H7200","(H853)"]],[3,5,["H1419"]],[5,6,["H3027"]],[6,7,["H834"]],[7,9,["H3068"]],[9,10,["H6213"]],[10,13,["H4714"]],[13,16,["H5971"]],[16,17,["H3372","(H853)"]],[17,19,["H3068"]],[19,21,["H539"]],[21,23,["H3068"]],[23,26,["H5650"]],[26,27,["H4872"]]]},{"k":1921,"v":[[0,1,["H227"]],[1,2,["H7891"]],[2,3,["H4872"]],[3,6,["H1121"]],[6,8,["H3478","(H853)"]],[8,9,["H2063"]],[9,10,["H7892"]],[10,13,["H3068"]],[13,15,["H559"]],[15,16,["H559"]],[16,19,["H7891"]],[19,22,["H3068"]],[22,23,["H3588"]],[23,27,["H1342","H1342"]],[27,29,["H5483"]],[29,32,["H7392"]],[32,35,["H7411"]],[35,38,["H3220"]]]},{"k":1922,"v":[[0,2,["H3050"]],[2,5,["H5797"]],[5,7,["H2176"]],[7,11,["H1961"]],[11,13,["H3444"]],[13,14,["H2088"]],[14,17,["H410"]],[17,24,["H5115"]],[24,26,["H1"]],[26,27,["H430"]],[27,31,["H7311"]],[31,32,[]]]},{"k":1923,"v":[[0,2,["H3068"]],[2,5,["H376"]],[5,7,["H4421"]],[7,9,["H3068"]],[9,12,["H8034"]]]},{"k":1924,"v":[[0,1,["H6547"]],[1,2,["H4818"]],[2,5,["H2428"]],[5,8,["H3384"]],[8,11,["H3220"]],[11,13,["H4005"]],[13,14,["H7991"]],[14,17,["H2883"]],[17,20,["H5488"]],[20,21,["H3220"]]]},{"k":1925,"v":[[0,2,["H8415"]],[2,4,["H3680"]],[4,7,["H3381"]],[7,10,["H4688"]],[10,11,["H3644"]],[11,13,["H68"]]]},{"k":1926,"v":[[0,3,["H3225"]],[3,5,["H3068"]],[5,8,["H142"]],[8,10,["H3581"]],[10,13,["H3225"]],[13,15,["H3068"]],[15,19,["H7492"]],[19,21,["H341"]]]},{"k":1927,"v":[[0,4,["H7230"]],[4,7,["H1347"]],[7,10,["H2040"]],[10,15,["H6965"]],[15,19,["H7971"]],[19,21,["H2740"]],[21,23,["H398"]],[23,26,["H7179"]]]},{"k":1928,"v":[[0,4,["H7307"]],[4,7,["H639"]],[7,9,["H4325"]],[9,12,["H6192"]],[12,14,["H5140"]],[14,16,["H5324"]],[16,17,["H3644"]],[17,19,["H5067"]],[19,22,["H8415"]],[22,24,["H7087"]],[24,27,["H3820"]],[27,30,["H3220"]]]},{"k":1929,"v":[[0,2,["H341"]],[2,3,["H559"]],[3,6,["H7291"]],[6,9,["H5381"]],[9,12,["H2505"]],[12,14,["H7998"]],[14,16,["H5315"]],[16,19,["H4390"]],[19,24,["H7324"]],[24,26,["H2719"]],[26,28,["H3027"]],[28,30,["H3423"]],[30,31,[]]]},{"k":1930,"v":[[0,3,["H5398"]],[3,6,["H7307"]],[6,8,["H3220"]],[8,9,["H3680"]],[9,12,["H6749"]],[12,14,["H5777"]],[14,17,["H117"]],[17,18,["H4325"]]]},{"k":1931,"v":[[0,1,["H4310"]],[1,5,["H3644"]],[5,7,["H3068"]],[7,10,["H410"]],[10,11,["H4310"]],[11,14,["H3644"]],[14,15,["H142"]],[15,17,["H6944"]],[17,18,["H3372"]],[18,20,["H8416"]],[20,21,["H6213"]],[21,22,["H6382"]]]},{"k":1932,"v":[[0,3,["H5186"]],[3,6,["H3225"]],[6,8,["H776"]],[8,9,["H1104"]],[9,10,[]]]},{"k":1933,"v":[[0,4,["H2617"]],[4,7,["H5148"]],[7,9,["H5971"]],[9,10,["H2098"]],[10,13,["H1350"]],[13,16,["H5095"]],[16,20,["H5797"]],[20,21,["H413"]],[21,23,["H6944"]],[23,24,["H5116"]]]},{"k":1934,"v":[[0,2,["H5971"]],[2,4,["H8085"]],[4,7,["H7264"]],[7,8,["H2427"]],[8,11,["H270"]],[11,14,["H3427"]],[14,16,["H6429"]]]},{"k":1935,"v":[[0,1,["H227"]],[1,3,["H441"]],[3,5,["H123"]],[5,8,["H926"]],[8,11,["H352"]],[11,13,["H4124"]],[13,14,["H7461"]],[14,18,["H270"]],[18,20,["H3605"]],[20,22,["H3427"]],[22,24,["H3667"]],[24,27,["H4127"]]]},{"k":1936,"v":[[0,1,["H367"]],[1,3,["H6343"]],[3,5,["H5307"]],[5,6,["H5921"]],[6,10,["H1419"]],[10,13,["H2220"]],[13,18,["H1826"]],[18,21,["H68"]],[21,22,["H5704"]],[22,24,["H5971"]],[24,26,["H5674"]],[26,28,["H3068"]],[28,29,["H5704"]],[29,31,["H5971"]],[31,33,["H5674"]],[33,34,["H2098"]],[34,37,["H7069"]]]},{"k":1937,"v":[[0,5,["H935"]],[5,7,["H5193"]],[7,11,["H2022"]],[11,14,["H5159"]],[14,17,["H4349"]],[17,19,["H3068"]],[19,23,["H6466"]],[23,28,["H3427"]],[28,31,["H4720"]],[31,33,["H136"]],[33,36,["H3027"]],[36,38,["H3559"]]]},{"k":1938,"v":[[0,2,["H3068"]],[2,4,["H4427"]],[4,6,["H5769"]],[6,8,["H5703"]]]},{"k":1939,"v":[[0,1,["H3588"]],[1,3,["H5483"]],[3,5,["H6547"]],[5,7,["H935"]],[7,10,["H7393"]],[10,14,["H6571"]],[14,17,["H3220"]],[17,20,["H3068"]],[20,22,["H7725","(H853)"]],[22,24,["H4325"]],[24,27,["H3220"]],[27,28,["H5921"]],[28,32,["H1121"]],[32,34,["H3478"]],[34,35,["H1980"]],[35,37,["H3004"]],[37,41,["H8432"]],[41,44,["H3220"]]]},{"k":1940,"v":[[0,2,["H4813"]],[2,4,["H5031"]],[4,6,["H269"]],[6,8,["H175"]],[8,9,["H3947","(H853)"]],[9,11,["H8596"]],[11,14,["H3027"]],[14,16,["H3605"]],[16,18,["H802"]],[18,20,["H3318"]],[20,21,["H310"]],[21,24,["H8596"]],[24,27,["H4246"]]]},{"k":1941,"v":[[0,2,["H4813"]],[2,3,["H6030"]],[3,5,["H7891"]],[5,9,["H3068"]],[9,10,["H3588"]],[10,14,["H1342","H1342"]],[14,16,["H5483"]],[16,19,["H7392"]],[19,22,["H7411"]],[22,25,["H3220"]]]},{"k":1942,"v":[[0,2,["H4872"]],[2,3,["H5265","(H853)"]],[3,4,["H3478"]],[4,8,["H4480","H3220","H5488"]],[8,12,["H3318"]],[12,13,["H413"]],[13,15,["H4057"]],[15,17,["H7793"]],[17,20,["H1980"]],[20,21,["H7969"]],[21,22,["H3117"]],[22,25,["H4057"]],[25,27,["H4672"]],[27,28,["H3808"]],[28,29,["H4325"]]]},{"k":1943,"v":[[0,4,["H935"]],[4,6,["H4785"]],[6,8,["H3201"]],[8,9,["H3808"]],[9,10,["H8354"]],[10,13,["H4325"]],[13,15,["H4480","H4785"]],[15,16,["H3588"]],[16,17,["H1992"]],[17,19,["H4751"]],[19,20,["H5921","H3651"]],[20,22,["H8034"]],[22,26,["H7121"]],[26,27,["H4785"]]]},{"k":1944,"v":[[0,3,["H5971"]],[3,4,["H3885"]],[4,5,["H5921"]],[5,6,["H4872"]],[6,7,["H559"]],[7,8,["H4100"]],[8,11,["H8354"]]]},{"k":1945,"v":[[0,3,["H6817"]],[3,4,["H413"]],[4,6,["H3068"]],[6,9,["H3068"]],[9,10,["H3384"]],[10,13,["H6086"]],[13,18,["H7993"]],[18,19,["H413"]],[19,21,["H4325"]],[21,23,["H4325"]],[23,26,["H4985"]],[26,27,["H8033"]],[27,29,["H7760"]],[29,33,["H2706"]],[33,36,["H4941"]],[36,38,["H8033"]],[38,40,["H5254"]],[40,41,[]]]},{"k":1946,"v":[[0,2,["H559"]],[2,3,["H518"]],[3,7,["H8085","H8085"]],[7,10,["H6963"]],[10,13,["H3068"]],[13,15,["H430"]],[15,18,["H6213"]],[18,22,["H3477"]],[22,25,["H5869"]],[25,29,["H238"]],[29,32,["H4687"]],[32,34,["H8104"]],[34,35,["H3605"]],[35,37,["H2706"]],[37,40,["H7760"]],[40,41,["H3808","H3605"]],[41,44,["H4245"]],[44,45,["H5921"]],[45,47,["H834"]],[47,50,["H7760"]],[50,53,["H4714"]],[53,54,["H3588"]],[54,55,["H589"]],[55,58,["H3068"]],[58,60,["H7495"]],[60,61,[]]]},{"k":1947,"v":[[0,3,["H935"]],[3,5,["H362"]],[5,6,["H8033"]],[6,8,["H8147","H6240"]],[8,9,["H5869"]],[9,11,["H4325"]],[11,15,["H7657"]],[15,17,["H8558"]],[17,20,["H2583"]],[20,21,["H8033"]],[21,22,["H5921"]],[22,24,["H4325"]]]},{"k":1948,"v":[[0,5,["H5265"]],[5,7,["H4480","H362"]],[7,9,["H3605"]],[9,11,["H5712"]],[11,14,["H1121"]],[14,16,["H3478"]],[16,17,["H935"]],[17,18,["H413"]],[18,20,["H4057"]],[20,22,["H5512"]],[22,23,["H834"]],[23,25,["H996"]],[25,26,["H362"]],[26,28,["H5514"]],[28,31,["H2568","H6240"]],[31,32,["H3117"]],[32,35,["H8145"]],[35,36,["H2320"]],[36,40,["H3318"]],[40,43,["H4480","H776"]],[43,45,["H4714"]]]},{"k":1949,"v":[[0,3,["H3605"]],[3,4,["H5712"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,10,["H3885"]],[10,11,["H5921"]],[11,12,["H4872"]],[12,14,["H175"]],[14,17,["H4057"]]]},{"k":1950,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,11,["H4310","H5414"]],[11,14,["H4191"]],[14,17,["H3027"]],[17,20,["H3068"]],[20,23,["H776"]],[23,25,["H4714"]],[25,28,["H3427"]],[28,29,["H5921"]],[29,31,["H1320"]],[31,32,["H5518"]],[32,37,["H398"]],[37,38,["H3899"]],[38,41,["H7648"]],[41,42,["H3588"]],[42,47,["H3318","(H853)"]],[47,48,["H413"]],[48,49,["H2088"]],[49,50,["H4057"]],[50,52,["H4191","(H853)"]],[52,53,["H2088"]],[53,54,["H3605"]],[54,55,["H6951"]],[55,57,["H7458"]]]},{"k":1951,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H2009"]],[7,10,["H4305"]],[10,11,["H3899"]],[11,12,["H4480"]],[12,13,["H8064"]],[13,18,["H5971"]],[18,21,["H3318"]],[21,23,["H3950"]],[23,28,["H1697","H3117","H3117"]],[28,29,["H4616"]],[29,32,["H5254"]],[32,37,["H1980"]],[37,40,["H8451"]],[40,41,["H518"]],[41,42,["H3808"]]]},{"k":1952,"v":[[0,6,["H1961"]],[6,10,["H8345"]],[10,11,["H3117"]],[11,14,["H3559","(H853)"]],[14,16,["H834"]],[16,19,["H935"]],[19,23,["H1961"]],[23,24,["H4932"]],[24,27,["H5921","H834"]],[27,29,["H3950"]],[29,30,["H3117","H3117"]]]},{"k":1953,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,5,["H559"]],[5,6,["H413"]],[6,7,["H3605"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,13,["H6153"]],[13,17,["H3045"]],[17,18,["H3588"]],[18,20,["H3068"]],[20,24,["H3318","(H853)"]],[24,27,["H4480","H776"]],[27,29,["H4714"]]]},{"k":1954,"v":[[0,4,["H1242"]],[4,8,["H7200","(H853)"]],[8,10,["H3519"]],[10,13,["H3068"]],[13,17,["H8085","(H853)"]],[17,19,["H8519"]],[19,20,["H5921"]],[20,22,["H3068"]],[22,24,["H4100"]],[24,26,["H5168"]],[26,27,["H3588"]],[27,29,["H3885"]],[29,30,["H5921"]],[30,31,[]]]},{"k":1955,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,9,["H3068"]],[9,11,["H5414"]],[11,15,["H6153"]],[15,16,["H1320"]],[16,18,["H398"]],[18,22,["H1242"]],[22,23,["H3899"]],[23,26,["H7646"]],[26,30,["H3068"]],[30,31,["H8085","(H853)"]],[31,33,["H8519"]],[33,34,["H834"]],[34,35,["H859"]],[35,36,["H3885"]],[36,37,["H5921"]],[37,40,["H4100"]],[40,42,["H5168"]],[42,44,["H8519"]],[44,46,["H3808"]],[46,47,["H5921"]],[47,49,["H3588"]],[49,50,["H5921"]],[50,52,["H3068"]]]},{"k":1956,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H175"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3605"]],[8,10,["H5712"]],[10,13,["H1121"]],[13,15,["H3478"]],[15,17,["H7126"]],[17,18,["H6440"]],[18,20,["H3068"]],[20,21,["H3588"]],[21,24,["H8085","(H853)"]],[24,26,["H8519"]]]},{"k":1957,"v":[[0,5,["H1961"]],[5,7,["H175"]],[7,8,["H1696"]],[8,9,["H413"]],[9,11,["H3605"]],[11,12,["H5712"]],[12,15,["H1121"]],[15,17,["H3478"]],[17,20,["H6437"]],[20,21,["H413"]],[21,23,["H4057"]],[23,25,["H2009"]],[25,27,["H3519"]],[27,30,["H3068"]],[30,31,["H7200"]],[31,34,["H6051"]]]},{"k":1958,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":1959,"v":[[0,3,["H8085","(H853)"]],[3,5,["H8519"]],[5,8,["H1121"]],[8,10,["H3478"]],[10,11,["H1696"]],[11,12,["H413"]],[12,14,["H559"]],[14,15,["H996"]],[15,16,["H6153"]],[16,19,["H398"]],[19,20,["H1320"]],[20,24,["H1242"]],[24,28,["H7646"]],[28,30,["H3899"]],[30,34,["H3045"]],[34,35,["H3588"]],[35,36,["H589"]],[36,39,["H3068"]],[39,41,["H430"]]]},{"k":1960,"v":[[0,5,["H1961"]],[5,8,["H6153"]],[8,10,["H7958"]],[10,12,["H5927"]],[12,14,["H3680","(H853)"]],[14,16,["H4264"]],[16,20,["H1242"]],[20,22,["H2919"]],[22,23,["H1961","H7902"]],[23,25,["H5439"]],[25,27,["H4264"]]]},{"k":1961,"v":[[0,4,["H2919"]],[4,6,["H7902"]],[6,9,["H5927"]],[9,10,["H2009"]],[10,11,["H5921"]],[11,13,["H6440"]],[13,16,["H4057"]],[16,20,["H1851"]],[20,22,["H2636"]],[22,24,["H1851"]],[24,28,["H3713"]],[28,29,["H5921"]],[29,31,["H776"]]]},{"k":1962,"v":[[0,4,["H1121"]],[4,6,["H3478"]],[6,7,["H7200"]],[7,10,["H559"]],[10,11,["H376"]],[11,12,["H413"]],[12,13,["H251"]],[13,14,["H1931"]],[14,16,["H4478"]],[16,17,["H3588"]],[17,19,["H3045"]],[19,20,["H3808"]],[20,21,["H4100"]],[21,22,["H1931"]],[22,25,["H4872"]],[25,26,["H559"]],[26,27,["H413"]],[27,29,["H1931"]],[29,32,["H3899"]],[32,33,["H834"]],[33,35,["H3068"]],[35,37,["H5414"]],[37,40,["H402"]]]},{"k":1963,"v":[[0,1,["H2088"]],[1,4,["H1697"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H6680"]],[9,10,["H3950"]],[10,11,["H4480"]],[11,14,["H376"]],[14,16,["H6310"]],[16,18,["H400"]],[18,20,["H6016"]],[20,23,["H1538"]],[23,27,["H4557"]],[27,30,["H5315"]],[30,31,["H3947"]],[31,34,["H376"]],[34,37,["H834"]],[37,41,["H168"]]]},{"k":1964,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,7,["H3651"]],[7,9,["H3950"]],[9,11,["H7235"]],[11,13,["H4591"]]]},{"k":1965,"v":[[0,5,["H4058"]],[5,9,["H6016"]],[9,13,["H7235"]],[13,16,["H5736","H3808"]],[16,21,["H4591"]],[21,23,["H3808"]],[23,24,["H2637"]],[24,26,["H3950"]],[26,28,["H376"]],[28,30,["H6310"]],[30,32,["H400"]]]},{"k":1966,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,5,["H408"]],[5,6,["H376"]],[6,7,["H3498"]],[7,8,["H4480"]],[8,10,["H5704"]],[10,12,["H1242"]]]},{"k":1967,"v":[[0,3,["H8085"]],[3,4,["H3808"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H376"]],[8,11,["H3498"]],[11,12,["H4480"]],[12,14,["H5704"]],[14,16,["H1242"]],[16,19,["H7311"]],[19,20,["H8438"]],[20,22,["H887"]],[22,24,["H4872"]],[24,26,["H7107"]],[26,27,["H5921"]],[27,28,[]]]},{"k":1968,"v":[[0,3,["H3950"]],[3,6,["H1242","H1242"]],[6,8,["H376"]],[8,10,["H6310"]],[10,12,["H400"]],[12,16,["H8121"]],[16,18,["H2552"]],[18,20,["H4549"]]]},{"k":1969,"v":[[0,5,["H1961"]],[5,9,["H8345"]],[9,10,["H3117"]],[10,12,["H3950"]],[12,15,["H4932"]],[15,16,["H3899"]],[16,17,["H8147"]],[17,18,["H6016"]],[18,20,["H259"]],[20,23,["H3605"]],[23,25,["H5387"]],[25,28,["H5712"]],[28,29,["H935"]],[29,31,["H5046"]],[31,32,["H4872"]]]},{"k":1970,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1931"]],[6,9,["H834"]],[9,11,["H3068"]],[11,13,["H1696"]],[13,15,["H4279"]],[15,18,["H7677"]],[18,21,["H6944"]],[21,22,["H7676"]],[22,25,["H3068"]],[25,26,["H644"]],[26,27,["(H853)"]],[27,28,["H834"]],[28,31,["H644"]],[31,35,["H1310"]],[35,36,["H834"]],[36,39,["H1310"]],[39,42,["H3605"]],[42,44,["H5736"]],[44,46,["H5117"]],[46,51,["H4931"]],[51,52,["H5704"]],[52,54,["H1242"]]]},{"k":1971,"v":[[0,5,["H5117","(H853)"]],[5,6,["H5704"]],[6,8,["H1242"]],[8,9,["H834"]],[9,10,["H4872"]],[10,11,["H6680"]],[11,15,["H3808"]],[15,16,["H887"]],[16,17,["H3808"]],[17,18,["H1961"]],[18,21,["H7415"]],[21,22,[]]]},{"k":1972,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H398"]],[4,7,["H3117"]],[7,8,["H3588"]],[8,10,["H3117"]],[10,13,["H7676"]],[13,16,["H3068"]],[16,18,["H3117"]],[18,21,["H3808"]],[21,22,["H4672"]],[22,26,["H7704"]]]},{"k":1973,"v":[[0,1,["H8337"]],[1,2,["H3117"]],[2,5,["H3950"]],[5,10,["H7637"]],[10,11,["H3117"]],[11,15,["H7676"]],[15,20,["H1961"]],[20,21,["H3808"]]]},{"k":1974,"v":[[0,5,["H1961"]],[5,9,["H3318"]],[9,11,["H4480"]],[11,13,["H5971"]],[13,16,["H7637"]],[16,17,["H3117"]],[17,20,["H3950"]],[20,23,["H4672"]],[23,24,["H3808"]]]},{"k":1975,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H5704","H575"]],[8,9,["H3985"]],[9,12,["H8104"]],[12,14,["H4687"]],[14,17,["H8451"]]]},{"k":1976,"v":[[0,1,["H7200"]],[1,2,["H3588"]],[2,5,["H3068"]],[5,7,["H5414"]],[7,10,["H7676"]],[10,11,["H5921","H3651"]],[11,12,["H1931"]],[12,13,["H5414"]],[13,17,["H8345"]],[17,18,["H3117"]],[18,20,["H3899"]],[20,23,["H3117"]],[23,24,["H3427"]],[24,27,["H376"]],[27,30,["H8478"]],[30,32,["H408"]],[32,33,["H376"]],[33,35,["H3318"]],[35,38,["H4480","H4725"]],[38,41,["H7637"]],[41,42,["H3117"]]]},{"k":1977,"v":[[0,3,["H5971"]],[3,4,["H7673"]],[4,7,["H7637"]],[7,8,["H3117"]]]},{"k":1978,"v":[[0,3,["H1004"]],[3,5,["H3478"]],[5,6,["H7121","(H853)"]],[6,8,["H8034"]],[8,10,["H4478"]],[10,12,["H1931"]],[12,15,["H1407"]],[15,16,["H2233"]],[16,17,["H3836"]],[17,20,["H2940"]],[20,25,["H6838"]],[25,28,["H1706"]]]},{"k":1979,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H2088"]],[4,7,["H1697"]],[7,8,["H834"]],[8,10,["H3068"]],[10,11,["H6680"]],[11,12,["H4393"]],[12,14,["H6016"]],[14,15,["H4480"]],[15,19,["H4931"]],[19,22,["H1755"]],[22,23,["H4616"]],[23,26,["H7200","(H853)"]],[26,28,["H3899"]],[28,29,["H834"]],[29,32,["H398"]],[32,36,["H4057"]],[36,41,["H3318","(H853)"]],[41,44,["H4480","H776"]],[44,46,["H4714"]]]},{"k":1980,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H175"]],[5,6,["H3947"]],[6,7,["H259"]],[7,8,["H6803"]],[8,10,["H5414"]],[10,12,["H6016"]],[12,13,["H4393"]],[13,15,["H4478"]],[15,16,["H8033"]],[16,20,["H5117","(H853)"]],[20,21,["H6440"]],[21,23,["H3068"]],[23,26,["H4931"]],[26,29,["H1755"]]]},{"k":1981,"v":[[0,1,["H834"]],[1,3,["H3068"]],[3,4,["H6680","H413"]],[4,5,["H4872"]],[5,7,["H175"]],[7,10,["H5117"]],[10,11,["H6440"]],[11,13,["H5715"]],[13,16,["H4931"]]]},{"k":1982,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H398","(H853)"]],[7,8,["H4478"]],[8,9,["H705"]],[9,10,["H8141"]],[10,11,["H5704"]],[11,13,["H935"]],[13,14,["H413"]],[14,16,["H776"]],[16,17,["H3427"]],[17,20,["H398","(H853)"]],[20,21,["H4478"]],[21,22,["H5704"]],[22,24,["H935"]],[24,25,["H413"]],[25,27,["H7097"]],[27,30,["H776"]],[30,32,["H3667"]]]},{"k":1983,"v":[[0,3,["H6016"]],[3,6,["H6224"]],[6,10,["H374"]]]},{"k":1984,"v":[[0,2,["H3605"]],[2,4,["H5712"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,10,["H5265"]],[10,13,["H4480","H4057"]],[13,15,["H5512"]],[15,18,["H4550"]],[18,20,["H5921"]],[20,22,["H6310"]],[22,25,["H3068"]],[25,27,["H2583"]],[27,29,["H7508"]],[29,33,["H369"]],[33,34,["H4325"]],[34,37,["H5971"]],[37,39,["H8354"]]]},{"k":1985,"v":[[0,3,["H5971"]],[3,5,["H7378"]],[5,6,["H5973"]],[6,7,["H4872"]],[7,9,["H559"]],[9,10,["H5414"]],[10,12,["H4325"]],[12,16,["H8354"]],[16,18,["H4872"]],[18,19,["H559"]],[19,22,["H4100"]],[22,23,["H7378"]],[23,25,["H5978"]],[25,27,["H4100"]],[27,30,["H5254","(H853)"]],[30,32,["H3068"]]]},{"k":1986,"v":[[0,3,["H5971"]],[3,4,["H6770"]],[4,5,["H8033"]],[5,7,["H4325"]],[7,10,["H5971"]],[10,11,["H3885"]],[11,12,["H5921"]],[12,13,["H4872"]],[13,15,["H559"]],[15,16,["H4100"]],[16,18,["H2088"]],[18,24,["H5927"]],[24,27,["H4480","H4714"]],[27,29,["H4191"]],[29,33,["H1121"]],[33,36,["H4735"]],[36,38,["H6772"]]]},{"k":1987,"v":[[0,2,["H4872"]],[2,3,["H6817"]],[3,4,["H413"]],[4,6,["H3068"]],[6,7,["H559"]],[7,8,["H4100"]],[8,11,["H6213"]],[11,13,["H2088"]],[13,14,["H5971"]],[14,17,["H4592"]],[17,18,["H5750"]],[18,20,["H5619"]],[20,21,[]]]},{"k":1988,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H5674"]],[8,9,["H6440"]],[9,11,["H5971"]],[11,13,["H3947"]],[13,14,["H854"]],[14,18,["H4480","H2205"]],[18,20,["H3478"]],[20,23,["H4294"]],[23,24,["H834"]],[24,26,["H5221","(H853)"]],[26,28,["H2975"]],[28,29,["H3947"]],[29,32,["H3027"]],[32,34,["H1980"]]]},{"k":1989,"v":[[0,1,["H2009"]],[1,4,["H5975"]],[4,5,["H6440"]],[5,7,["H8033"]],[7,8,["H5921"]],[8,10,["H6697"]],[10,12,["H2722"]],[12,16,["H5221"]],[16,18,["H6697"]],[18,22,["H3318"]],[22,23,["H4325"]],[23,25,["H4480"]],[25,29,["H5971"]],[29,31,["H8354"]],[31,33,["H4872"]],[33,34,["H6213"]],[34,35,["H3651"]],[35,38,["H5869"]],[38,41,["H2205"]],[41,43,["H3478"]]]},{"k":1990,"v":[[0,3,["H7121"]],[3,5,["H8034"]],[5,8,["H4725"]],[8,9,["H4532"]],[9,11,["H4809"]],[11,13,["H5921"]],[13,15,["H7379"]],[15,18,["H1121"]],[18,20,["H3478"]],[20,22,["H5921"]],[22,24,["H5254","(H853)"]],[24,26,["H3068"]],[26,27,["H559"]],[27,28,["H3426"]],[28,30,["H3068"]],[30,31,["H7130"]],[31,33,["H518"]],[33,34,["H369"]]]},{"k":1991,"v":[[0,2,["H935"]],[2,3,["H6002"]],[3,5,["H3898"]],[5,6,["H5973"]],[6,7,["H3478"]],[7,9,["H7508"]]]},{"k":1992,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3091"]],[5,8,["H977"]],[8,9,["H376"]],[9,12,["H3318"]],[12,13,["H3898"]],[13,15,["H6002"]],[15,17,["H4279"]],[17,18,["H595"]],[18,20,["H5324"]],[20,21,["H5921"]],[21,23,["H7218"]],[23,26,["H1389"]],[26,29,["H4294"]],[29,31,["H430"]],[31,34,["H3027"]]]},{"k":1993,"v":[[0,2,["H3091"]],[2,3,["H6213"]],[3,4,["H834"]],[4,5,["H4872"]],[5,7,["H559"]],[7,11,["H3898"]],[11,13,["H6002"]],[13,15,["H4872"]],[15,16,["H175"]],[16,18,["H2354"]],[18,20,["H5927"]],[20,23,["H7218"]],[23,26,["H1389"]]]},{"k":1994,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H4872"]],[7,9,["H7311"]],[9,11,["H3027"]],[11,13,["H3478"]],[13,14,["H1396"]],[14,16,["H834"]],[16,19,["H5117"]],[19,21,["H3027"]],[21,22,["H6002"]],[22,23,["H1396"]]]},{"k":1995,"v":[[0,2,["H4872"]],[2,3,["H3027"]],[3,5,["H3515"]],[5,8,["H3947"]],[8,10,["H68"]],[10,12,["H7760"]],[12,14,["H8478"]],[14,18,["H3427"]],[18,19,["H5921"]],[19,21,["H175"]],[21,23,["H2354"]],[23,25,["H8551"]],[25,27,["H3027"]],[27,29,["H259"]],[29,33,["H4480","H2088"]],[33,36,["H259"]],[36,40,["H4480","H2088"]],[40,43,["H3027"]],[43,44,["H1961"]],[44,45,["H530"]],[45,46,["H5704"]],[46,49,["H935"]],[49,52,["H8121"]]]},{"k":1996,"v":[[0,2,["H3091"]],[2,3,["H2522","(H853)"]],[3,4,["H6002"]],[4,7,["H5971"]],[7,10,["H6310"]],[10,13,["H2719"]]]},{"k":1997,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H3789"]],[7,8,["H2063"]],[8,11,["H2146"]],[11,14,["H5612"]],[14,16,["H7760"]],[16,20,["H241"]],[20,22,["H3091"]],[22,23,["H3588"]],[23,28,["H4229","H4229","(H853)"]],[28,30,["H2143"]],[30,32,["H6002"]],[32,34,["H4480","H8478"]],[34,35,["H8064"]]]},{"k":1998,"v":[[0,2,["H4872"]],[2,3,["H1129"]],[3,5,["H4196"]],[5,7,["H7121"]],[7,9,["H8034"]],[9,12,["H3071"]]]},{"k":1999,"v":[[0,3,["H559"]],[3,4,["H3588"]],[4,6,["H3050"]],[6,8,["H3027","H5921","H3676"]],[8,11,["H3068"]],[11,14,["H4421"]],[14,16,["H6002"]],[16,18,["H4480","H1755"]],[18,20,["H1755"]]]},{"k":2000,"v":[[0,2,["H3503"]],[2,4,["H3548"]],[4,6,["H4080"]],[6,7,["H4872"]],[7,10,["H2859"]],[10,11,["H8085","(H853)"]],[11,13,["H3605"]],[13,14,["H834"]],[14,15,["H430"]],[15,17,["H6213"]],[17,19,["H4872"]],[19,22,["H3478"]],[22,24,["H5971"]],[24,26,["H3588"]],[26,28,["H3068"]],[28,32,["H3318","(H853)","H3478"]],[32,34,["H4480","H4714"]]]},{"k":2001,"v":[[0,2,["H3503"]],[2,3,["H4872"]],[3,6,["H2859"]],[6,7,["H3947","(H853)"]],[7,8,["H6855"]],[8,9,["H4872"]],[9,10,["H802"]],[10,11,["H310"]],[11,16,["H7964"]]]},{"k":2002,"v":[[0,3,["H8147"]],[3,4,["H1121"]],[4,6,["H834"]],[6,8,["H8034"]],[8,11,["H259"]],[11,13,["H1648"]],[13,14,["H3588"]],[14,16,["H559"]],[16,19,["H1961"]],[19,21,["H1616"]],[21,24,["H5237"]],[24,25,["H776"]]]},{"k":2003,"v":[[0,3,["H8034"]],[3,6,["H259"]],[6,8,["H461"]],[8,9,["H3588"]],[9,11,["H430"]],[11,14,["H1"]],[14,19,["H5828"]],[19,21,["H5337"]],[21,25,["H4480","H2719"]],[25,27,["H6547"]]]},{"k":2004,"v":[[0,2,["H3503"]],[2,3,["H4872"]],[3,6,["H2859"]],[6,7,["H935"]],[7,10,["H1121"]],[10,13,["H802"]],[13,14,["H413"]],[14,15,["H4872"]],[15,16,["H413"]],[16,18,["H4057"]],[18,19,["H834","H8033"]],[19,20,["H1931"]],[20,21,["H2583"]],[21,24,["H2022"]],[24,26,["H430"]]]},{"k":2005,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H4872"]],[5,6,["H589"]],[6,10,["H2859"]],[10,11,["H3503"]],[11,13,["H935"]],[13,14,["H413"]],[14,18,["H802"]],[18,21,["H8147"]],[21,22,["H1121"]],[22,23,["H5973"]],[23,24,[]]]},{"k":2006,"v":[[0,2,["H4872"]],[2,4,["H3318"]],[4,6,["H7125"]],[6,10,["H2859"]],[10,13,["H7812"]],[13,15,["H5401"]],[15,19,["H7592"]],[19,20,["H376"]],[20,21,["H7453"]],[21,24,["H7965"]],[24,27,["H935"]],[27,30,["H168"]]]},{"k":2007,"v":[[0,2,["H4872"]],[2,3,["H5608"]],[3,7,["H2859","(H853)"]],[7,8,["H3605"]],[8,9,["H834"]],[9,11,["H3068"]],[11,13,["H6213"]],[13,15,["H6547"]],[15,19,["H4714"]],[19,20,["H5921"]],[20,21,["H3478"]],[21,22,["H182"]],[22,23,["(H853)"]],[23,24,["H3605"]],[24,26,["H8513"]],[26,27,["H834"]],[27,30,["H4672"]],[30,34,["H1870"]],[34,38,["H3068"]],[38,39,["H5337"]],[39,40,[]]]},{"k":2008,"v":[[0,2,["H3503"]],[2,3,["H2302"]],[3,4,["H5921"]],[4,5,["H3605"]],[5,7,["H2896"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H6213"]],[12,14,["H3478"]],[14,15,["H834"]],[15,18,["H5337"]],[18,22,["H4480","H3027"]],[22,25,["H4714"]]]},{"k":2009,"v":[[0,2,["H3503"]],[2,3,["H559"]],[3,4,["H1288"]],[4,7,["H3068"]],[7,8,["H834"]],[8,10,["H5337"]],[10,15,["H4480","H3027"]],[15,18,["H4714"]],[18,23,["H4480","H3027"]],[23,25,["H6547"]],[25,26,["H834"]],[26,28,["H5337","(H853)"]],[28,30,["H5971"]],[30,32,["H4480","H8478"]],[32,34,["H3027"]],[34,37,["H4714"]]]},{"k":2010,"v":[[0,1,["H6258"]],[1,3,["H3045"]],[3,4,["H3588"]],[4,6,["H3068"]],[6,8,["H1419"]],[8,10,["H4480","H3605"]],[10,11,["H430"]],[11,12,["H3588"]],[12,15,["H1697"]],[15,16,["H834"]],[16,19,["H2102"]],[19,22,["H5921"]],[22,23,[]]]},{"k":2011,"v":[[0,2,["H3503"]],[2,3,["H4872"]],[3,6,["H2859"]],[6,7,["H3947"]],[7,10,["H5930"]],[10,12,["H2077"]],[12,14,["H430"]],[14,16,["H175"]],[16,17,["H935"]],[17,19,["H3605"]],[19,21,["H2205"]],[21,23,["H3478"]],[23,25,["H398"]],[25,26,["H3899"]],[26,27,["H5973"]],[27,28,["H4872"]],[28,31,["H2859"]],[31,32,["H6440"]],[32,33,["H430"]]]},{"k":2012,"v":[[0,5,["H1961"]],[5,8,["H4480","H4283"]],[8,10,["H4872"]],[10,11,["H3427"]],[11,13,["H8199","(H853)"]],[13,15,["H5971"]],[15,18,["H5971"]],[18,19,["H5975"]],[19,20,["H5921"]],[20,21,["H4872"]],[21,22,["H4480"]],[22,24,["H1242"]],[24,25,["H5704"]],[25,27,["H6153"]]]},{"k":2013,"v":[[0,3,["H4872"]],[3,6,["H2859"]],[6,7,["H7200","(H853)"]],[7,8,["H3605"]],[8,9,["H834"]],[9,10,["H1931"]],[10,11,["H6213"]],[11,14,["H5971"]],[14,16,["H559"]],[16,17,["H4100"]],[17,19,["H2088"]],[19,20,["H1697"]],[20,21,["H834"]],[21,22,["H859"]],[22,23,["H6213"]],[23,26,["H5971"]],[26,27,["H4069"]],[27,28,["H3427"]],[28,29,["H859"]],[29,31,["H905"]],[31,33,["H3605"]],[33,35,["H5971"]],[35,36,["H5324"]],[36,37,["H5921"]],[37,39,["H4480"]],[39,40,["H1242"]],[40,41,["H5704"]],[41,42,["H6153"]]]},{"k":2014,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,8,["H2859"]],[8,9,["H3588"]],[9,11,["H5971"]],[11,12,["H935"]],[12,13,["H413"]],[13,16,["H1875"]],[16,18,["H430"]]]},{"k":2015,"v":[[0,1,["H3588"]],[1,3,["H1961"]],[3,5,["H1697"]],[5,7,["H935"]],[7,8,["H413"]],[8,12,["H8199"]],[12,13,["H996"]],[13,14,["H376"]],[14,16,["H7453"]],[16,22,["H3045","(H853)"]],[22,24,["H2706"]],[24,26,["H430"]],[26,29,["H8451"]]]},{"k":2016,"v":[[0,2,["H4872"]],[2,5,["H2859"]],[5,6,["H559"]],[6,7,["H413"]],[7,10,["H1697"]],[10,11,["H834"]],[11,12,["H859"]],[12,13,["H6213"]],[13,15,["H3808"]],[15,16,["H2896"]]]},{"k":2017,"v":[[0,5,["H5034","H5034"]],[5,6,["H1571"]],[6,7,["H859"]],[7,8,["H1571"]],[8,9,["H2088"]],[9,10,["H5971"]],[10,11,["H834"]],[11,13,["H5973"]],[13,15,["H3588"]],[15,17,["H1697"]],[17,20,["H3515"]],[20,21,["H4480"]],[21,25,["H3808"]],[25,26,["H3201"]],[26,28,["H6213"]],[28,31,["H905"]]]},{"k":2018,"v":[[0,1,["H8085"]],[1,2,["H6258"]],[2,5,["H6963"]],[5,10,["H3289"]],[10,12,["H430"]],[12,14,["H1961"]],[14,15,["H5973"]],[15,17,["H1961"]],[17,18,["H859"]],[18,21,["H5971"]],[21,23,["H4136","H430"]],[23,25,["H859"]],[25,27,["H935","(H853)"]],[27,29,["H1697"]],[29,30,["H413"]],[30,31,["H430"]]]},{"k":2019,"v":[[0,4,["H2094"]],[4,5,["(H853)"]],[5,6,["H2706"]],[6,8,["H8451"]],[8,11,["H3045"]],[11,12,["(H853)"]],[12,14,["H1870"]],[14,18,["H1980"]],[18,21,["H4640"]],[21,22,["H834"]],[22,25,["H6213"]]]},{"k":2020,"v":[[0,2,["H859"]],[2,4,["H2372"]],[4,7,["H4480","H3605"]],[7,9,["H5971"]],[9,10,["H2428"]],[10,11,["H376"]],[11,14,["H3373"]],[14,15,["H430"]],[15,16,["H376"]],[16,18,["H571"]],[18,19,["H8130"]],[19,20,["H1215"]],[20,22,["H7760"]],[22,24,["H5921"]],[24,28,["H8269"]],[28,30,["H505"]],[30,32,["H8269"]],[32,34,["H3967"]],[34,35,["H8269"]],[35,37,["H2572"]],[37,39,["H8269"]],[39,41,["H6235"]]]},{"k":2021,"v":[[0,4,["H8199","(H853)"]],[4,6,["H5971"]],[6,8,["H3605"]],[8,9,["H6256"]],[9,13,["H1961"]],[13,15,["H3605"]],[15,16,["H1419"]],[16,17,["H1697"]],[17,20,["H935"]],[20,21,["H413"]],[21,24,["H3605"]],[24,25,["H6996"]],[25,26,["H1697"]],[26,27,["H1992"]],[27,29,["H8199"]],[29,34,["H7043"]],[34,35,["H4480","H5921"]],[35,40,["H5375"]],[40,43,["H854"]],[43,44,[]]]},{"k":2022,"v":[[0,1,["H518"]],[1,4,["H6213","(H853)"]],[4,5,["H2088"]],[5,6,["H1697"]],[6,8,["H430"]],[8,9,["H6680"]],[9,16,["H3201"]],[16,18,["H5975"]],[18,20,["H3605"]],[20,21,["H2088"]],[21,22,["H5971"]],[22,24,["H1571"]],[24,25,["H935"]],[25,26,["H5921"]],[26,28,["H4725"]],[28,30,["H7965"]]]},{"k":2023,"v":[[0,2,["H4872"]],[2,3,["H8085"]],[3,6,["H6963"]],[6,11,["H2859"]],[11,13,["H6213"]],[13,14,["H3605"]],[14,15,["H834"]],[15,18,["H559"]]]},{"k":2024,"v":[[0,2,["H4872"]],[2,3,["H977"]],[3,4,["H2428"]],[4,5,["H376"]],[5,8,["H4480","H3605"]],[8,9,["H3478"]],[9,11,["H5414"]],[11,13,["H7218"]],[13,14,["H5921"]],[14,16,["H5971"]],[16,17,["H8269"]],[17,19,["H505"]],[19,20,["H8269"]],[20,22,["H3967"]],[22,23,["H8269"]],[23,25,["H2572"]],[25,27,["H8269"]],[27,29,["H6235"]]]},{"k":2025,"v":[[0,3,["H8199","(H853)"]],[3,5,["H5971"]],[5,7,["H3605"]],[7,8,["H6256"]],[8,10,["H7186","(H853)"]],[10,11,["H1697"]],[11,13,["H935"]],[13,14,["H413"]],[14,15,["H4872"]],[15,17,["H3605"]],[17,18,["H6996"]],[18,19,["H1697"]],[19,21,["H8199"]],[21,22,["H1992"]]]},{"k":2026,"v":[[0,2,["H4872"]],[2,3,["(H853)"]],[3,7,["H2859"]],[7,8,["H7971"]],[8,13,["H1980"]],[13,14,["H413"]],[14,17,["H776"]]]},{"k":2027,"v":[[0,3,["H7992"]],[3,4,["H2320"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,12,["H3318"]],[12,16,["H4480","H776"]],[16,18,["H4714"]],[18,20,["H2088"]],[20,21,["H3117"]],[21,22,["H935"]],[22,26,["H4057"]],[26,28,["H5514"]]]},{"k":2028,"v":[[0,4,["H5265"]],[4,6,["H4480","H7508"]],[6,9,["H935"]],[9,12,["H4057"]],[12,14,["H5514"]],[14,17,["H2583"]],[17,20,["H4057"]],[20,22,["H8033"]],[22,23,["H3478"]],[23,24,["H2583"]],[24,25,["H5048"]],[25,27,["H2022"]]]},{"k":2029,"v":[[0,2,["H4872"]],[2,4,["H5927"]],[4,5,["H413"]],[5,6,["H430"]],[6,9,["H3068"]],[9,10,["H7121"]],[10,11,["H413"]],[11,14,["H4480"]],[14,16,["H2022"]],[16,17,["H559"]],[17,18,["H3541"]],[18,21,["H559"]],[21,24,["H1004"]],[24,26,["H3290"]],[26,28,["H5046"]],[28,30,["H1121"]],[30,32,["H3478"]]]},{"k":2030,"v":[[0,1,["H859"]],[1,3,["H7200"]],[3,4,["H834"]],[4,6,["H6213"]],[6,9,["H4714"]],[9,13,["H5375"]],[13,15,["H5921"]],[15,16,["H5404"]],[16,17,["H3671"]],[17,19,["H935"]],[19,21,["H413"]],[21,22,[]]]},{"k":2031,"v":[[0,1,["H6258"]],[1,3,["H518"]],[3,9,["H8085","H8085","H6963"]],[9,11,["H8104","(H853)"]],[11,13,["H1285"]],[13,17,["H1961"]],[17,20,["H5459"]],[20,24,["H4480","H3605"]],[24,25,["H5971"]],[25,26,["H3588"]],[26,27,["H3605"]],[27,29,["H776"]],[29,31,[]]]},{"k":2032,"v":[[0,2,["H859"]],[2,4,["H1961"]],[4,8,["H4467"]],[8,10,["H3548"]],[10,13,["H6918"]],[13,14,["H1471"]],[14,15,["H428"]],[15,18,["H1697"]],[18,19,["H834"]],[19,22,["H1696"]],[22,23,["H413"]],[23,25,["H1121"]],[25,27,["H3478"]]]},{"k":2033,"v":[[0,2,["H4872"]],[2,3,["H935"]],[3,5,["H7121"]],[5,8,["H2205"]],[8,11,["H5971"]],[11,13,["H7760"]],[13,16,["H6440","(H853)"]],[16,17,["H3605"]],[17,18,["H428"]],[18,19,["H1697"]],[19,20,["H834"]],[20,22,["H3068"]],[22,23,["H6680"]],[23,24,[]]]},{"k":2034,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H6030"]],[5,6,["H3162"]],[6,8,["H559"]],[8,9,["H3605"]],[9,10,["H834"]],[10,12,["H3068"]],[12,14,["H1696"]],[14,17,["H6213"]],[17,19,["H4872"]],[19,20,["H7725","(H853)"]],[20,22,["H1697"]],[22,25,["H5971"]],[25,26,["H413"]],[26,28,["H3068"]]]},{"k":2035,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H2009"]],[7,8,["H595"]],[8,9,["H935"]],[9,10,["H413"]],[10,14,["H5645"]],[14,15,["H6051"]],[15,16,["H5668"]],[16,18,["H5971"]],[18,20,["H8085"]],[20,23,["H1696"]],[23,24,["H5973"]],[24,27,["H539"]],[27,30,["H5769"]],[30,32,["H4872"]],[32,33,["H5046","(H853)"]],[33,35,["H1697"]],[35,38,["H5971"]],[38,39,["H413"]],[39,41,["H3068"]]]},{"k":2036,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H1980"]],[7,8,["H413"]],[8,10,["H5971"]],[10,12,["H6942"]],[12,15,["H3117"]],[15,18,["H4279"]],[18,22,["H3526"]],[22,24,["H8071"]]]},{"k":2037,"v":[[0,2,["H1961"]],[2,3,["H3559"]],[3,6,["H7992"]],[6,7,["H3117"]],[7,8,["H3588"]],[8,10,["H7992"]],[10,11,["H3117"]],[11,13,["H3068"]],[13,16,["H3381"]],[16,19,["H5869"]],[19,21,["H3605"]],[21,23,["H5971"]],[23,24,["H5921"]],[24,25,["H2022"]],[25,26,["H5514"]]]},{"k":2038,"v":[[0,5,["H1379","(H853)"]],[5,8,["H5971"]],[8,10,["H5439"]],[10,11,["H559"]],[11,13,["H8104"]],[13,20,["H5927"]],[20,23,["H2022"]],[23,25,["H5060"]],[25,27,["H7097"]],[27,30,["H3605"]],[30,31,["H5060"]],[31,33,["H2022"]],[33,39,["H4191","H4191"]]]},{"k":2039,"v":[[0,3,["H3808"]],[3,5,["H3027"]],[5,6,["H5060"]],[6,8,["H3588"]],[8,13,["H5619","H5619"]],[13,14,["H176"]],[14,16,["H3384","H3384"]],[16,17,["H518"]],[17,20,["H929"]],[20,21,["H518"]],[21,22,["H376"]],[22,25,["H3808"]],[25,26,["H2421"]],[26,29,["H3104"]],[29,31,["H4900"]],[31,32,["H1992"]],[32,35,["H5927"]],[35,38,["H2022"]]]},{"k":2040,"v":[[0,2,["H4872"]],[2,4,["H3381"]],[4,5,["H4480"]],[5,7,["H2022"]],[7,8,["H413"]],[8,10,["H5971"]],[10,12,["H6942","(H853)"]],[12,14,["H5971"]],[14,17,["H3526"]],[17,19,["H8071"]]]},{"k":2041,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H1961"]],[7,8,["H3559"]],[8,11,["H7969"]],[11,12,["H3117"]],[12,13,["H5066"]],[13,14,["H408"]],[14,15,["H413"]],[15,17,["H802"]]]},{"k":2042,"v":[[0,5,["H1961"]],[5,8,["H7992"]],[8,9,["H3117"]],[9,12,["H1242"]],[12,15,["H1961"]],[15,16,["H6963"]],[16,18,["H1300"]],[18,21,["H3515"]],[21,22,["H6051"]],[22,23,["H5921"]],[23,25,["H2022"]],[25,28,["H6963"]],[28,31,["H7782"]],[31,32,["H3966"]],[32,33,["H2389"]],[33,36,["H3605"]],[36,38,["H5971"]],[38,39,["H834"]],[39,43,["H4264"]],[43,44,["H2729"]]]},{"k":2043,"v":[[0,2,["H4872"]],[2,4,["H3318","(H853)"]],[4,6,["H5971"]],[6,8,["H4480"]],[8,10,["H4264"]],[10,12,["H7125"]],[12,14,["H430"]],[14,17,["H3320"]],[17,21,["H8482"]],[21,24,["H2022"]]]},{"k":2044,"v":[[0,2,["H2022"]],[2,3,["H5514"]],[3,5,["H3605"]],[5,8,["H6225"]],[8,9,["H4480","H6440","H834"]],[9,11,["H3068"]],[11,12,["H3381"]],[12,13,["H5921"]],[13,16,["H784"]],[16,19,["H6227"]],[19,21,["H5927"]],[21,24,["H6227"]],[24,27,["H3536"]],[27,30,["H3605"]],[30,31,["H2022"]],[31,32,["H2729"]],[32,33,["H3966"]]]},{"k":2045,"v":[[0,2,["H1961"]],[2,4,["H6963"]],[4,7,["H7782"]],[7,9,["H1980"]],[9,14,["H2388","H3966"]],[14,15,["H4872"]],[15,16,["H1696"]],[16,18,["H430"]],[18,19,["H6030"]],[19,23,["H6963"]]]},{"k":2046,"v":[[0,3,["H3068"]],[3,5,["H3381"]],[5,6,["H5921"]],[6,7,["H2022"]],[7,8,["H5514"]],[8,9,["H413"]],[9,11,["H7218"]],[11,14,["H2022"]],[14,17,["H3068"]],[17,18,["H7121"]],[18,19,["H4872"]],[19,21,["H413"]],[21,23,["H7218"]],[23,26,["H2022"]],[26,28,["H4872"]],[28,30,["H5927"]]]},{"k":2047,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H3381"]],[8,9,["H5749"]],[9,11,["H5971"]],[11,12,["H6435"]],[12,15,["H2040"]],[15,16,["H413"]],[16,18,["H3068"]],[18,20,["H7200"]],[20,22,["H7227"]],[22,23,["H4480"]],[23,25,["H5307"]]]},{"k":2048,"v":[[0,4,["H3548"]],[4,5,["H1571"]],[5,8,["H5066"]],[8,9,["H413"]],[9,11,["H3068"]],[11,13,["H6942"]],[13,14,["H6435"]],[14,16,["H3068"]],[16,18,["H6555"]],[18,20,[]]]},{"k":2049,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H5971"]],[8,9,["H3808","H3201"]],[9,11,["H5927"]],[11,12,["H413"]],[12,13,["H2022"]],[13,14,["H5514"]],[14,15,["H3588"]],[15,16,["H859"]],[16,17,["H5749"]],[17,19,["H559"]],[19,21,["H1379","(H853)"]],[21,24,["H2022"]],[24,26,["H6942"]],[26,27,[]]]},{"k":2050,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H1980"]],[7,10,["H3381"]],[10,15,["H5927"]],[15,16,["H859"]],[16,18,["H175"]],[18,19,["H5973"]],[19,23,["H408"]],[23,25,["H3548"]],[25,28,["H5971"]],[28,30,["H2040"]],[30,33,["H5927"]],[33,34,["H413"]],[34,36,["H3068"]],[36,37,["H6435"]],[37,40,["H6555"]],[40,42,[]]]},{"k":2051,"v":[[0,2,["H4872"]],[2,4,["H3381"]],[4,5,["H413"]],[5,7,["H5971"]],[7,9,["H559"]],[9,10,["H413"]],[10,11,[]]]},{"k":2052,"v":[[0,2,["H430"]],[2,3,["H1696","(H853)"]],[3,4,["H3605"]],[4,5,["H428"]],[5,6,["H1697"]],[6,7,["H559"]]]},{"k":2053,"v":[[0,1,["H595"]],[1,4,["H3068"]],[4,6,["H430"]],[6,7,["H834"]],[7,11,["H3318"]],[11,14,["H4480","H776"]],[14,16,["H4714"]],[16,20,["H4480","H1004"]],[20,22,["H5650"]]]},{"k":2054,"v":[[0,3,["H1961"]],[3,4,["H3808"]],[4,5,["H312"]],[5,6,["H430"]],[6,7,["H5921","H6440"]],[7,8,[]]]},{"k":2055,"v":[[0,3,["H3808"]],[3,4,["H6213"]],[4,9,["H6459"]],[9,11,["H3605"]],[11,12,["H8544"]],[12,16,["H834"]],[16,19,["H8064"]],[19,20,["H4480","H4605"]],[20,22,["H834"]],[22,26,["H776"]],[26,27,["H4480","H8478"]],[27,29,["H834"]],[29,33,["H4325"]],[33,34,["H4480","H8478"]],[34,36,["H776"]]]},{"k":2056,"v":[[0,3,["H3808"]],[3,6,["H7812"]],[6,9,["H3808"]],[9,10,["H5647"]],[10,12,["H3588"]],[12,13,["H595"]],[13,15,["H3068"]],[15,17,["H430"]],[17,20,["H7067"]],[20,21,["H410"]],[21,22,["H6485"]],[22,24,["H5771"]],[24,27,["H1"]],[27,28,["H5921"]],[28,30,["H1121"]],[30,31,["H5921"]],[31,33,["H8029"]],[33,35,["H7256"]],[35,40,["H8130"]],[40,41,[]]]},{"k":2057,"v":[[0,2,["H6213"]],[2,3,["H2617"]],[3,5,["H505"]],[5,9,["H157"]],[9,12,["H8104"]],[12,14,["H4687"]]]},{"k":2058,"v":[[0,3,["H3808"]],[3,4,["H5375","(H853)"]],[4,6,["H8034"]],[6,9,["H3068"]],[9,11,["H430"]],[11,13,["H7723"]],[13,14,["H3588"]],[14,16,["H3068"]],[16,18,["H3808"]],[18,21,["H5352","(H853)"]],[21,22,["H834"]],[22,23,["H5375","(H853)"]],[23,25,["H8034"]],[25,27,["H7723"]]]},{"k":2059,"v":[[0,1,["H2142"]],[1,2,["(H853)"]],[2,3,["H7676"]],[3,4,["H3117"]],[4,8,["H6942"]]]},{"k":2060,"v":[[0,1,["H8337"]],[1,2,["H3117"]],[2,5,["H5647"]],[5,7,["H6213"]],[7,8,["H3605"]],[8,10,["H4399"]]]},{"k":2061,"v":[[0,3,["H7637"]],[3,4,["H3117"]],[4,7,["H7676"]],[7,10,["H3068"]],[10,12,["H430"]],[12,17,["H3808"]],[17,18,["H6213"]],[18,19,["H3605"]],[19,20,["H4399"]],[20,21,["H859"]],[21,24,["H1121"]],[24,27,["H1323"]],[27,29,["H5650"]],[29,32,["H519"]],[32,35,["H929"]],[35,38,["H1616"]],[38,39,["H834"]],[39,43,["H8179"]]]},{"k":2062,"v":[[0,1,["H3588"]],[1,3,["H8337"]],[3,4,["H3117"]],[4,6,["H3068"]],[6,7,["H6213","(H853)"]],[7,8,["H8064"]],[8,10,["H776","(H853)"]],[10,12,["H3220"]],[12,14,["H3605"]],[14,15,["H834"]],[15,20,["H5117"]],[20,22,["H7637"]],[22,23,["H3117"]],[23,24,["H5921","H3651"]],[24,26,["H3068"]],[26,27,["H1288"]],[27,28,["(H853)"]],[28,29,["H7676"]],[29,30,["H3117"]],[30,32,["H6942"]],[32,33,[]]]},{"k":2063,"v":[[0,1,["H3513","(H853)"]],[1,3,["H1"]],[3,6,["H517"]],[6,7,["H4616"]],[7,9,["H3117"]],[9,12,["H748"]],[12,13,["H5921"]],[13,15,["H127"]],[15,16,["H834"]],[16,18,["H3068"]],[18,20,["H430"]],[20,21,["H5414"]],[21,22,[]]]},{"k":2064,"v":[[0,3,["H3808"]],[3,4,["H7523"]]]},{"k":2065,"v":[[0,3,["H3808"]],[3,5,["H5003"]]]},{"k":2066,"v":[[0,3,["H3808"]],[3,4,["H1589"]]]},{"k":2067,"v":[[0,3,["H3808"]],[3,4,["H6030"]],[4,5,["H8267"]],[5,6,["H5707"]],[6,9,["H7453"]]]},{"k":2068,"v":[[0,3,["H3808"]],[3,4,["H2530"]],[4,6,["H7453"]],[6,7,["H1004"]],[7,10,["H3808"]],[10,11,["H2530"]],[11,13,["H7453"]],[13,14,["H802"]],[14,17,["H5650"]],[17,20,["H519"]],[20,23,["H7794"]],[23,26,["H2543"]],[26,29,["H3605"]],[29,30,["H834"]],[30,33,["H7453"]]]},{"k":2069,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H7200","(H853)"]],[5,7,["H6963"]],[7,10,["H3940"]],[10,13,["H6963"]],[13,16,["H7782"]],[16,19,["H2022"]],[19,20,["H6226"]],[20,24,["H5971"]],[24,25,["H7200"]],[25,28,["H5128"]],[28,30,["H5975"]],[30,32,["H4480","H7350"]]]},{"k":2070,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H4872"]],[5,6,["H1696"]],[6,7,["H859"]],[7,8,["H5973"]],[8,13,["H8085"]],[13,16,["H408"]],[16,17,["H430"]],[17,18,["H1696"]],[18,19,["H5973"]],[19,21,["H6435"]],[21,23,["H4191"]]]},{"k":2071,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H3372"]],[7,8,["H408"]],[8,9,["H3588"]],[9,10,["H430"]],[10,12,["H935"]],[12,13,["H5668"]],[13,14,["H5254"]],[14,17,["H5668"]],[17,19,["H3374"]],[19,21,["H1961"]],[21,22,["H5921"]],[22,24,["H6440"]],[24,27,["H2398"]],[27,28,["H1115"]]]},{"k":2072,"v":[[0,3,["H5971"]],[3,4,["H5975"]],[4,6,["H4480","H7350"]],[6,8,["H4872"]],[8,10,["H5066"]],[10,11,["H413"]],[11,14,["H6205"]],[14,15,["H834","H8033"]],[15,16,["H430"]],[16,17,[]]]},{"k":2073,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H3541"]],[7,10,["H559"]],[10,11,["H413"]],[11,13,["H1121"]],[13,15,["H3478"]],[15,16,["H859"]],[16,18,["H7200"]],[18,19,["H3588"]],[19,22,["H1696"]],[22,23,["H5973"]],[23,25,["H4480"]],[25,26,["H8064"]]]},{"k":2074,"v":[[0,3,["H3808"]],[3,4,["H6213"]],[4,5,["H854"]],[5,7,["H430"]],[7,9,["H3701"]],[9,10,["H3808"]],[10,13,["H6213"]],[13,16,["H430"]],[16,18,["H2091"]]]},{"k":2075,"v":[[0,2,["H4196"]],[2,4,["H127"]],[4,7,["H6213"]],[7,12,["H2076"]],[12,13,["H5921","(H853)"]],[13,16,["H5930"]],[16,20,["H8002","(H853)"]],[20,22,["H6629"]],[22,25,["H1241"]],[25,27,["H3605"]],[27,28,["H4725"]],[28,29,["H834"]],[29,31,["H2142","(H853)"]],[31,33,["H8034"]],[33,36,["H935"]],[36,37,["H413"]],[37,42,["H1288"]],[42,43,[]]]},{"k":2076,"v":[[0,2,["H518"]],[2,5,["H6213"]],[5,8,["H4196"]],[8,10,["H68"]],[10,13,["H3808"]],[13,14,["H1129"]],[14,18,["H1496"]],[18,19,["H3588"]],[19,23,["H5130"]],[23,25,["H2719"]],[25,26,["H5921"]],[26,30,["H2490"]],[30,31,[]]]},{"k":2077,"v":[[0,1,["H3808"]],[1,5,["H5927"]],[5,7,["H4609"]],[7,8,["H5921"]],[8,10,["H4196"]],[10,11,["H834"]],[11,13,["H6172"]],[13,15,["H3808"]],[15,16,["H1540"]],[16,17,["H5921"]]]},{"k":2078,"v":[[0,2,["H428"]],[2,5,["H4941"]],[5,6,["H834"]],[6,9,["H7760"]],[9,10,["H6440"]],[10,11,[]]]},{"k":2079,"v":[[0,1,["H3588"]],[1,3,["H7069"]],[3,5,["H5680"]],[5,6,["H5650"]],[6,7,["H8337"]],[7,8,["H8141"]],[8,11,["H5647"]],[11,15,["H7637"]],[15,19,["H3318"]],[19,20,["H2670"]],[20,22,["H2600"]]]},{"k":2080,"v":[[0,1,["H518"]],[1,4,["H935"]],[4,6,["H1610"]],[6,10,["H3318"]],[10,12,["H1610"]],[12,13,["H518"]],[13,14,["H1931"]],[14,16,["H1167","H802"]],[16,19,["H802"]],[19,22,["H3318"]],[22,23,["H5973"]],[23,24,[]]]},{"k":2081,"v":[[0,1,["H518"]],[1,3,["H113"]],[3,5,["H5414"]],[5,8,["H802"]],[8,12,["H3205"]],[12,14,["H1121"]],[14,15,["H176"]],[15,16,["H1323"]],[16,18,["H802"]],[18,21,["H3206"]],[21,23,["H1961"]],[23,25,["H113"]],[25,27,["H1931"]],[27,30,["H3318"]],[30,32,["H1610"]]]},{"k":2082,"v":[[0,2,["H518"]],[2,4,["H5650"]],[4,7,["H559","H559"]],[7,9,["H157","(H853)"]],[9,11,["H113","(H853)"]],[11,13,["H802"]],[13,16,["H1121"]],[16,19,["H3808"]],[19,21,["H3318"]],[21,22,["H2670"]]]},{"k":2083,"v":[[0,3,["H113"]],[3,5,["H5066"]],[5,7,["H413"]],[7,9,["H430"]],[9,13,["H5066"]],[13,15,["H413"]],[15,17,["H1817"]],[17,18,["H176"]],[18,19,["H413"]],[19,22,["H4201"]],[22,25,["H113"]],[25,30,["H7527","(H853)","H241"]],[30,33,["H4836"]],[33,37,["H5647"]],[37,40,["H5769"]]]},{"k":2084,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H4376","(H853)"]],[5,7,["H1323"]],[7,11,["H519"]],[11,14,["H3808"]],[14,16,["H3318"]],[16,19,["H5650"]],[19,20,["H3318"]]]},{"k":2085,"v":[[0,1,["H518"]],[1,4,["H7451","H5869"]],[4,6,["H113"]],[6,7,["H834"]],[7,9,["(H3808)","H3259"]],[9,19,["H6299"]],[19,21,["H4376"]],[21,25,["H5237"]],[25,26,["H5971"]],[26,30,["H3808"]],[30,31,["H4910"]],[31,36,["H898"]],[36,38,[]]]},{"k":2086,"v":[[0,2,["H518"]],[2,5,["H3259"]],[5,9,["H1121"]],[9,12,["H6213"]],[12,17,["H4941"]],[17,19,["H1323"]]]},{"k":2087,"v":[[0,1,["H518"]],[1,3,["H3947"]],[3,5,["H312"]],[5,8,["H7607"]],[8,10,["H3682"]],[10,15,["H5772"]],[15,18,["H3808"]],[18,19,["H1639"]]]},{"k":2088,"v":[[0,2,["H518"]],[2,4,["H6213"]],[4,5,["H3808"]],[5,6,["H428"]],[6,7,["H7969"]],[7,14,["H3318"]],[14,15,["H2600"]],[15,16,["H369"]],[16,17,["H3701"]]]},{"k":2089,"v":[[0,3,["H5221"]],[3,5,["H376"]],[5,9,["H4191"]],[9,15,["H4191","H4191"]]]},{"k":2090,"v":[[0,2,["H834"]],[2,8,["H6658","H3808"]],[8,10,["H430"]],[10,11,["H579"]],[11,15,["H3027"]],[15,19,["H7760"]],[19,22,["H4725"]],[22,23,["H834","H8033"]],[23,26,["H5127"]]]},{"k":2091,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,6,["H2102"]],[6,7,["H5921"]],[7,9,["H7453"]],[9,11,["H2026"]],[11,14,["H6195"]],[14,17,["H3947"]],[17,19,["H4480","H5973"]],[19,21,["H4196"]],[21,25,["H4191"]]]},{"k":2092,"v":[[0,4,["H5221"]],[4,6,["H1"]],[6,9,["H517"]],[9,15,["H4191","H4191"]]]},{"k":2093,"v":[[0,4,["H1589"]],[4,6,["H376"]],[6,8,["H4376"]],[8,14,["H4672"]],[14,17,["H3027"]],[17,24,["H4191","H4191"]]]},{"k":2094,"v":[[0,4,["H7043"]],[4,6,["H1"]],[6,9,["H517"]],[9,15,["H4191","H4191"]]]},{"k":2095,"v":[[0,2,["H3588"]],[2,3,["H376"]],[3,5,["H7378"]],[5,7,["H376"]],[7,8,["H5221","(H853)"]],[8,9,["H7453"]],[9,12,["H68"]],[12,13,["H176"]],[13,16,["H106"]],[16,19,["H4191"]],[19,20,["H3808"]],[20,22,["H5307"]],[22,24,["H4904"]]]},{"k":2096,"v":[[0,1,["H518"]],[1,4,["H6965"]],[4,6,["H1980"]],[6,7,["H2351"]],[7,8,["H5921"]],[8,10,["H4938"]],[10,15,["H5221"]],[15,18,["H5352"]],[18,19,["H7535"]],[19,22,["H5414"]],[22,28,["H7674"]],[28,36,["H7495","H7495"]]]},{"k":2097,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H5221","(H853)"]],[5,7,["H5650"]],[7,8,["H176","(H853)"]],[8,10,["H519"]],[10,13,["H7626"]],[13,16,["H4191"]],[16,17,["H8478"]],[17,19,["H3027"]],[19,24,["H5358","H5358"]]]},{"k":2098,"v":[[0,1,["H389"]],[1,2,["H518"]],[2,4,["H5975"]],[4,6,["H3117"]],[6,7,["H176"]],[7,8,["H3117"]],[8,11,["H3808"]],[11,13,["H5358"]],[13,14,["H3588"]],[14,15,["H1931"]],[15,18,["H3701"]]]},{"k":2099,"v":[[0,1,["H3588"]],[1,2,["H376"]],[2,3,["H5327"]],[3,5,["H5062"]],[5,7,["H802"]],[7,9,["H2030"]],[9,13,["H3206"]],[13,14,["H3318"]],[14,19,["H3808"]],[19,20,["H611"]],[20,21,["H1961"]],[21,26,["H6064","H6064"]],[26,28,["H834"]],[28,30,["H802"]],[30,31,["H1167"]],[31,33,["H7896"]],[33,34,["H5921"]],[34,39,["H5414"]],[39,42,["H6414"]],[42,43,[]]]},{"k":2100,"v":[[0,2,["H518"]],[2,4,["H611"]],[4,5,["H1961"]],[5,9,["H5414"]],[9,10,["H5315"]],[10,11,["H8478"]],[11,12,["H5315"]]]},{"k":2101,"v":[[0,1,["H5869"]],[1,2,["H8478"]],[2,3,["H5869"]],[3,4,["H8127"]],[4,5,["H8478"]],[5,6,["H8127"]],[6,7,["H3027"]],[7,8,["H8478"]],[8,9,["H3027"]],[9,10,["H7272"]],[10,11,["H8478"]],[11,12,["H7272"]]]},{"k":2102,"v":[[0,1,["H3555"]],[1,2,["H8478"]],[2,3,["H3555"]],[3,4,["H6482"]],[4,5,["H8478"]],[5,6,["H6482"]],[6,7,["H2250"]],[7,8,["H8478"]],[8,9,["H2250"]]]},{"k":2103,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H5221","(H853)"]],[5,7,["H5869"]],[7,10,["H5650"]],[10,11,["H176","(H853)"]],[11,13,["H5869"]],[13,16,["H519"]],[16,19,["H7843"]],[19,24,["H7971"]],[24,25,["H2670"]],[25,29,["H8478","H5869"]]]},{"k":2104,"v":[[0,2,["H518"]],[2,5,["H5307"]],[5,7,["H5650"]],[7,8,["H8127"]],[8,9,["H176"]],[9,11,["H519"]],[11,12,["H8127"]],[12,17,["H7971"]],[17,18,["H2670"]],[18,22,["H8478","H8127"]]]},{"k":2105,"v":[[0,1,["H3588"]],[1,3,["H7794"]],[3,4,["H5055","(H853)"]],[4,6,["H376"]],[6,7,["H176","(H853)"]],[7,9,["H802"]],[9,12,["H4191"]],[12,15,["H7794"]],[15,19,["H5619","H5619"]],[19,20,["(H853)"]],[20,22,["H1320"]],[22,24,["H3808"]],[24,26,["H398"]],[26,29,["H1167"]],[29,32,["H7794"]],[32,35,["H5355"]]]},{"k":2106,"v":[[0,2,["H518"]],[2,4,["H7794"]],[4,11,["H5056"]],[11,14,["H4480","H8543","H8032"]],[14,19,["H5749"]],[19,22,["H1167"]],[22,26,["H3808"]],[26,29,["H8104"]],[29,34,["H4191"]],[34,36,["H376"]],[36,37,["H176"]],[37,39,["H802"]],[39,41,["H7794"]],[41,44,["H5619"]],[44,47,["H1167"]],[47,48,["H1571"]],[48,53,["H4191"]]]},{"k":2107,"v":[[0,1,["H518"]],[1,4,["H7896"]],[4,5,["H5921"]],[5,10,["H3724"]],[10,14,["H5414"]],[14,17,["H6306"]],[17,20,["H5315"]],[20,21,["H3605","H834"]],[21,23,["H7896"]],[23,24,["H5921"]],[24,25,[]]]},{"k":2108,"v":[[0,1,["H176"]],[1,4,["H5055"]],[4,6,["H1121"]],[6,7,["H176"]],[7,9,["H5055"]],[9,11,["H1323"]],[11,14,["H2088"]],[14,15,["H4941"]],[15,19,["H6213"]],[19,21,[]]]},{"k":2109,"v":[[0,1,["H518"]],[1,3,["H7794"]],[3,5,["H5055"]],[5,7,["H5650"]],[7,8,["H176"]],[8,10,["H519"]],[10,13,["H5414"]],[13,16,["H113"]],[16,17,["H7970"]],[17,18,["H8255"]],[18,20,["H3701"]],[20,23,["H7794"]],[23,26,["H5619"]]]},{"k":2110,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,6,["H6605"]],[6,8,["H953"]],[8,9,["H176"]],[9,10,["H3588"]],[10,12,["H376"]],[12,14,["H3738"]],[14,16,["H953"]],[16,18,["H3808"]],[18,19,["H3680"]],[19,23,["H7794"]],[23,24,["H176"]],[24,26,["H2543"]],[26,27,["H5307"]],[27,28,["H8033"]]]},{"k":2111,"v":[[0,2,["H1167"]],[2,5,["H953"]],[5,9,["H7999"]],[9,11,["H7725"]],[11,12,["H3701"]],[12,15,["H1167"]],[15,20,["H4191"]],[20,23,["H1961"]],[23,24,[]]]},{"k":2112,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H7794"]],[5,6,["H5062","(H853)"]],[6,7,["H7794","H7453"]],[7,10,["H4191"]],[10,14,["H4376","(H853)"]],[14,16,["H2416"]],[16,17,["H7794"]],[17,19,["H2673","(H853)"]],[19,21,["H3701"]],[21,24,["(H853)"]],[24,26,["H4191"]],[26,28,["H1571"]],[28,31,["H2673"]]]},{"k":2113,"v":[[0,1,["H176"]],[1,5,["H3045"]],[5,6,["H3588"]],[6,8,["H7794"]],[8,12,["H5056"]],[12,15,["H4480","H8543","H8032"]],[15,18,["H1167"]],[18,20,["H3808"]],[20,23,["H8104"]],[23,27,["H7999","H7999"]],[27,28,["H7794"]],[28,29,["H8478"]],[29,30,["H7794"]],[30,33,["H4191"]],[33,35,["H1961"]],[35,37,[]]]},{"k":2114,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,5,["H1589"]],[5,7,["H7794"]],[7,8,["H176"]],[8,10,["H7716"]],[10,12,["H2873"]],[12,14,["H176"]],[14,15,["H4376"]],[15,19,["H7999"]],[19,20,["H2568"]],[20,21,["H1241"]],[21,22,["H8478"]],[22,24,["H7794"]],[24,26,["H702"]],[26,27,["H6629"]],[27,28,["H8478"]],[28,30,["H7716"]]]},{"k":2115,"v":[[0,1,["H518"]],[1,3,["H1590"]],[3,5,["H4672"]],[5,7,["H4290"]],[7,10,["H5221"]],[10,13,["H4191"]],[13,16,["H369"]],[16,17,["H1818"]],[17,21,[]]]},{"k":2116,"v":[[0,1,["H518"]],[1,3,["H8121"]],[3,5,["H2224"]],[5,6,["H5921"]],[6,11,["H1818"]],[11,20,["H7999","H7999"]],[20,21,["H518"]],[21,24,["H369"]],[24,29,["H4376"]],[29,32,["H1591"]]]},{"k":2117,"v":[[0,1,["H518"]],[1,3,["H1591"]],[3,6,["H4672","H4672"]],[6,9,["H3027"]],[9,10,["H2416"]],[10,14,["H4480","H7794"]],[14,15,["H5704"]],[15,16,["H2543"]],[16,17,["H5704"]],[17,18,["H7716"]],[18,21,["H7999"]],[21,22,["H8147"]]]},{"k":2118,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,7,["H7704"]],[7,8,["H176"]],[8,9,["H3754"]],[9,12,["H1197"]],[12,16,["H7971","(H853)"]],[16,18,["H1165"]],[18,21,["H1197"]],[21,24,["H312"]],[24,25,["H7704"]],[25,28,["H4315"]],[28,32,["H7704"]],[32,36,["H4315"]],[36,40,["H3754"]],[40,44,["H7999"]]]},{"k":2119,"v":[[0,1,["H3588"]],[1,2,["H784"]],[2,4,["H3318"]],[4,6,["H4672"]],[6,8,["H6975"]],[8,14,["H1430"]],[14,15,["H176"]],[15,18,["H7054"]],[18,19,["H176"]],[19,21,["H7704"]],[21,23,["H398"]],[23,27,["H1197","(H853)"]],[27,29,["H1200"]],[29,33,["H7999","H7999"]]]},{"k":2120,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,5,["H5414"]],[5,6,["H413"]],[6,8,["H7453"]],[8,9,["H3701"]],[9,10,["H176"]],[10,11,["H3627"]],[11,13,["H8104"]],[13,17,["H1589"]],[17,22,["H4480","H1004","H376"]],[22,23,["H518"]],[23,25,["H1590"]],[25,27,["H4672"]],[27,30,["H7999"]],[30,31,["H8147"]]]},{"k":2121,"v":[[0,1,["H518"]],[1,3,["H1590"]],[3,5,["H3808"]],[5,6,["H4672"]],[6,9,["H1167"]],[9,12,["H1004"]],[12,15,["H7126"]],[15,16,["H413"]],[16,18,["H430"]],[18,21,["H518","H3808"]],[21,24,["H7971"]],[24,26,["H3027"]],[26,29,["H7453"]],[29,30,["H4399"]]]},{"k":2122,"v":[[0,1,["H5921"]],[1,2,["H3605"]],[2,3,["H1697"]],[3,5,["H6588"]],[5,9,["H5921"]],[9,10,["H7794"]],[10,11,["H5921"]],[11,12,["H2543"]],[12,13,["H5921"]],[13,14,["H7716"]],[14,15,["H5921"]],[15,16,["H8008"]],[16,18,["H5921"]],[18,20,["H3605"]],[20,23,["H9"]],[23,24,["H834"]],[24,26,["H559"]],[26,29,["H3588","H1931","H2088"]],[29,31,["H1697"]],[31,34,["H8147"]],[34,36,["H935"]],[36,37,["H5704"]],[37,39,["H430"]],[39,41,["H834"]],[41,43,["H430"]],[43,45,["H7561"]],[45,48,["H7999"]],[48,49,["H8147"]],[49,52,["H7453"]]]},{"k":2123,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,4,["H5414"]],[4,5,["H413"]],[5,7,["H7453"]],[7,9,["H2543"]],[9,10,["H176"]],[10,12,["H7794"]],[12,13,["H176"]],[13,15,["H7716"]],[15,17,["H3605"]],[17,18,["H929"]],[18,20,["H8104"]],[20,23,["H4191"]],[23,24,["H176"]],[24,26,["H7665"]],[26,27,["H176"]],[27,29,["H7617"]],[29,31,["H369"]],[31,32,["H7200"]],[32,33,[]]]},{"k":2124,"v":[[0,4,["H7621"]],[4,7,["H3068"]],[7,8,["H1961"]],[8,9,["H996"]],[9,11,["H8147"]],[11,12,["H518"]],[12,15,["H3808"]],[15,16,["H7971"]],[16,18,["H3027"]],[18,21,["H7453"]],[21,22,["H4399"]],[22,25,["H1167"]],[25,29,["H3947"]],[29,34,["H3808"]],[34,37,["H7999"]]]},{"k":2125,"v":[[0,2,["H518"]],[2,5,["H1589","H1589"]],[5,6,["H4480","H5973"]],[6,11,["H7999"]],[11,14,["H1167"]],[14,15,[]]]},{"k":2126,"v":[[0,1,["H518"]],[1,6,["H2963","H2963"]],[6,10,["H935"]],[10,13,["H5707"]],[13,17,["H3808"]],[17,19,["H7999"]],[19,23,["H2966"]]]},{"k":2127,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H7592"]],[5,7,["H4480","H5973"]],[7,9,["H7453"]],[9,13,["H7665"]],[13,14,["H176"]],[14,15,["H4191"]],[15,17,["H1167"]],[17,20,["H369"]],[20,21,["H5973"]],[21,28,["H7999","H7999"]]]},{"k":2128,"v":[[0,2,["H518"]],[2,4,["H1167"]],[4,7,["H5973"]],[7,11,["H3808"]],[11,14,["H7999"]],[14,15,["H518"]],[15,16,["H1931"]],[16,19,["H7916"]],[19,22,["H935"]],[22,25,["H7939"]]]},{"k":2129,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H6601"]],[5,7,["H1330"]],[7,8,["H834"]],[8,10,["H3808"]],[10,11,["H781"]],[11,13,["H7901"]],[13,14,["H5973"]],[14,19,["H4117","H4117"]],[19,24,["H802"]]]},{"k":2130,"v":[[0,1,["H518"]],[1,3,["H1"]],[3,5,["H3985","H3985"]],[5,7,["H5414"]],[7,13,["H8254"]],[13,14,["H3701"]],[14,18,["H4119"]],[18,20,["H1330"]]]},{"k":2131,"v":[[0,3,["H3808"]],[3,8,["H2421","H3784"]]]},{"k":2132,"v":[[0,1,["H3605"]],[1,2,["H7901"]],[2,3,["H5973"]],[3,5,["H929"]],[5,11,["H4191","H4191"]]]},{"k":2133,"v":[[0,3,["H2076"]],[3,6,["H430"]],[6,7,["H1115"]],[7,10,["H3068"]],[10,11,["H905"]],[11,16,["H2763"]]]},{"k":2134,"v":[[0,3,["H3808"]],[3,4,["H3238"]],[4,6,["H1616"]],[6,7,["H3808"]],[7,8,["H3905"]],[8,10,["H3588"]],[10,12,["H1961"]],[12,13,["H1616"]],[13,16,["H776"]],[16,18,["H4714"]]]},{"k":2135,"v":[[0,3,["H3808"]],[3,4,["H6031"]],[4,5,["H3605"]],[5,6,["H490"]],[6,9,["H3490"]]]},{"k":2136,"v":[[0,1,["H518"]],[1,7,["H6031","H6031","(H853)"]],[7,8,["H3588"]],[8,12,["H6817","H6817"]],[12,13,["H413"]],[13,18,["H8085","H8085"]],[18,20,["H6818"]]]},{"k":2137,"v":[[0,3,["H639"]],[3,6,["H2734"]],[6,10,["H2026"]],[10,14,["H2719"]],[14,17,["H802"]],[17,19,["H1961"]],[19,20,["H490"]],[20,23,["H1121"]],[23,24,["H3490"]]]},{"k":2138,"v":[[0,1,["H518"]],[1,3,["H3867"]],[3,4,["H3701"]],[4,7,["(H853)"]],[7,9,["H5971"]],[9,11,["(H853)"]],[11,12,["H6041"]],[12,13,["H5973"]],[13,17,["H3808"]],[17,18,["H1961"]],[18,23,["H5383"]],[23,24,["H3808"]],[24,27,["H7760"]],[27,28,["H5921"]],[28,30,["H5392"]]]},{"k":2139,"v":[[0,1,["H518"]],[1,10,["H2254","H2254","H7453","H8008"]],[10,13,["H7725"]],[13,18,["H5704"]],[18,20,["H8121"]],[20,22,["H935"]]]},{"k":2140,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,5,["H3682"]],[5,6,["H905"]],[6,7,["H1931"]],[7,10,["H8071"]],[10,13,["H5785"]],[13,14,["H4100"]],[14,17,["H7901"]],[17,23,["H1961"]],[23,24,["H3588"]],[24,26,["H6817"]],[26,27,["H413"]],[27,32,["H8085"]],[32,33,["H3588"]],[33,34,["H589"]],[34,36,["H2587"]]]},{"k":2141,"v":[[0,3,["H3808"]],[3,4,["H7043"]],[4,6,["H430"]],[6,7,["H3808"]],[7,8,["H779"]],[8,10,["H5387"]],[10,13,["H5971"]]]},{"k":2142,"v":[[0,3,["H3808"]],[3,4,["H309"]],[4,12,["H4395"]],[12,16,["H1831"]],[16,18,["H1060"]],[18,21,["H1121"]],[21,24,["H5414"]],[24,26,[]]]},{"k":2143,"v":[[0,1,["H3651"]],[1,4,["H6213"]],[4,7,["H7794"]],[7,11,["H6629"]],[11,12,["H7651"]],[12,13,["H3117"]],[13,16,["H1961"]],[16,17,["H5973"]],[17,19,["H517"]],[19,22,["H8066"]],[22,23,["H3117"]],[23,26,["H5414"]],[26,28,[]]]},{"k":2144,"v":[[0,4,["H1961"]],[4,5,["H6944"]],[5,6,["H376"]],[6,9,["H3808"]],[9,12,["H398"]],[12,14,["H1320"]],[14,19,["H2966"]],[19,22,["H7704"]],[22,25,["H7993"]],[25,29,["H3611"]]]},{"k":2145,"v":[[0,3,["H3808"]],[3,4,["H5375"]],[4,6,["H7723"]],[6,7,["H8088"]],[7,8,["H7896"]],[8,9,["H408"]],[9,11,["H3027"]],[11,12,["H5973"]],[12,14,["H7563"]],[14,16,["H1961"]],[16,18,["H2555"]],[18,19,["H5707"]]]},{"k":2146,"v":[[0,3,["H3808"]],[3,4,["H1961","H310"]],[4,6,["H7227"]],[6,9,["H7451"]],[9,10,["H3808"]],[10,13,["H6030"]],[13,14,["H5921"]],[14,16,["H7379"]],[16,18,["H5186"]],[18,19,["H310"]],[19,20,["H7227"]],[20,22,["H5186"]],[22,23,[]]]},{"k":2147,"v":[[0,1,["H3808"]],[1,4,["H1921"]],[4,7,["H1800"]],[7,10,["H7379"]]]},{"k":2148,"v":[[0,1,["H3588"]],[1,3,["H6293"]],[3,5,["H341"]],[5,6,["H7794"]],[6,7,["H176"]],[7,9,["H2543"]],[9,11,["H8582"]],[11,20,["H7725","H7725"]]]},{"k":2149,"v":[[0,1,["H3588"]],[1,3,["H7200"]],[3,5,["H2543"]],[5,9,["H8130"]],[9,11,["H7257"]],[11,12,["H8478"]],[12,14,["H4853"]],[14,17,["H2308"]],[17,19,["H4480","H5800"]],[19,24,["H5800","H5800"]],[24,25,["H5973"]],[25,26,[]]]},{"k":2150,"v":[[0,3,["H3808"]],[3,4,["H5186"]],[4,6,["H4941"]],[6,9,["H34"]],[9,12,["H7379"]]]},{"k":2151,"v":[[0,3,["H7368"]],[3,7,["H4480","H1697","H8267"]],[7,10,["H5355"]],[10,12,["H6662"]],[12,13,["H2026"]],[13,15,["H408"]],[15,16,["H3588"]],[16,19,["H3808"]],[19,20,["H6663"]],[20,22,["H7563"]]]},{"k":2152,"v":[[0,4,["H3947"]],[4,5,["H3808"]],[5,6,["H7810"]],[6,7,["H3588"]],[7,9,["H7810"]],[9,10,["H5786"]],[10,12,["H6493"]],[12,14,["H5557"]],[14,16,["H1697"]],[16,19,["H6662"]]]},{"k":2153,"v":[[0,4,["H3808"]],[4,5,["H3905"]],[5,7,["H1616"]],[7,9,["H859"]],[9,10,["H3045","(H853)"]],[10,12,["H5315"]],[12,15,["H1616"]],[15,16,["H3588"]],[16,18,["H1961"]],[18,19,["H1616"]],[19,22,["H776"]],[22,24,["H4714"]]]},{"k":2154,"v":[[0,2,["H8337"]],[2,3,["H8141"]],[3,6,["H2232","(H853)"]],[6,8,["H776"]],[8,12,["H622","(H853)"]],[12,14,["H8393"]],[14,15,[]]]},{"k":2155,"v":[[0,3,["H7637"]],[3,9,["H8058"]],[9,12,["H5203"]],[12,15,["H34"]],[15,18,["H5971"]],[18,20,["H398"]],[20,24,["H3499"]],[24,26,["H2416"]],[26,29,["H7704"]],[29,31,["H398"]],[31,34,["H3651"]],[34,37,["H6213"]],[37,40,["H3754"]],[40,44,["H2132"]]]},{"k":2156,"v":[[0,1,["H8337"]],[1,2,["H3117"]],[2,5,["H6213"]],[5,7,["H4639"]],[7,11,["H7637"]],[11,12,["H3117"]],[12,15,["H7673"]],[15,16,["H4616"]],[16,18,["H7794"]],[18,21,["H2543"]],[21,23,["H5117"]],[23,26,["H1121"]],[26,29,["H519"]],[29,32,["H1616"]],[32,35,["H5314"]]]},{"k":2157,"v":[[0,3,["H3605"]],[3,5,["H834"]],[5,8,["H559"]],[8,9,["H413"]],[9,12,["H8104"]],[12,16,["H2142","H3808"]],[16,19,["H8034"]],[19,21,["H312"]],[21,22,["H430"]],[22,23,["H3808"]],[23,27,["H8085"]],[27,29,["H5921"]],[29,31,["H6310"]]]},{"k":2158,"v":[[0,1,["H7969"]],[1,2,["H7272"]],[2,7,["H2287"]],[7,12,["H8141"]]]},{"k":2159,"v":[[0,3,["H8104","(H853)"]],[3,5,["H2282"]],[5,8,["H4682"]],[8,11,["H398"]],[11,13,["H4682"]],[13,14,["H7651"]],[14,15,["H3117"]],[15,16,["H834"]],[16,18,["H6680"]],[18,23,["H4150"]],[23,26,["H2320"]],[26,27,["H24"]],[27,28,["H3588"]],[28,33,["H3318"]],[33,35,["H4480","H4714"]],[35,37,["H3808"]],[37,39,["H7200"]],[39,40,["H6440"]],[40,42,["H7387"]]]},{"k":2160,"v":[[0,3,["H2282"]],[3,5,["H7105"]],[5,7,["H1061"]],[7,10,["H4639"]],[10,11,["H834"]],[11,14,["H2232"]],[14,17,["H7704"]],[17,20,["H2282"]],[20,22,["H614"]],[22,27,["H3318"]],[27,30,["H8141"]],[30,35,["H622","(H853)"]],[35,37,["H4639"]],[37,39,["H4480"]],[39,41,["H7704"]]]},{"k":2161,"v":[[0,1,["H7969"]],[1,2,["H6471"]],[2,5,["H8141"]],[5,6,["H3605"]],[6,8,["H2138"]],[8,10,["H7200"]],[10,11,["H413","H6440"]],[11,13,["H113"]],[13,14,["H3068"]]]},{"k":2162,"v":[[0,3,["H3808"]],[3,4,["H2076"]],[4,6,["H1818"]],[6,9,["H2077"]],[9,10,["H5921"]],[10,12,["H2557"]],[12,13,["H3808"]],[13,16,["H2459"]],[16,19,["H2282"]],[19,20,["H3885"]],[20,21,["H5704"]],[21,23,["H1242"]]]},{"k":2163,"v":[[0,2,["H7225"]],[2,5,["H1061"]],[5,8,["H127"]],[8,11,["H935"]],[11,14,["H1004"]],[14,17,["H3068"]],[17,19,["H430"]],[19,22,["H3808"]],[22,23,["H1310"]],[23,25,["H1423"]],[25,28,["H517"]],[28,29,["H2461"]]]},{"k":2164,"v":[[0,1,["H2009"]],[1,2,["H595"]],[2,3,["H7971"]],[3,5,["H4397"]],[5,6,["H6440"]],[6,9,["H8104"]],[9,13,["H1870"]],[13,16,["H935"]],[16,18,["H413"]],[18,20,["H4725"]],[20,21,["H834"]],[21,24,["H3559"]]]},{"k":2165,"v":[[0,1,["H8104"]],[1,2,["H4480","H6440"]],[2,5,["H8085"]],[5,7,["H6963"]],[7,8,["H4843"]],[8,10,["H408"]],[10,11,["H3588"]],[11,14,["H3808"]],[14,15,["H5375"]],[15,17,["H6588"]],[17,18,["H3588"]],[18,20,["H8034"]],[20,22,["H7130"]],[22,23,[]]]},{"k":2166,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,6,["H8085","H8085"]],[6,8,["H6963"]],[8,10,["H6213"]],[10,11,["H3605"]],[11,12,["H834"]],[12,14,["H1696"]],[14,20,["H340","(H853)"]],[20,23,["H341"]],[23,26,["H6696","(H853)"]],[26,29,["H6887"]]]},{"k":2167,"v":[[0,1,["H3588"]],[1,3,["H4397"]],[3,5,["H1980"]],[5,6,["H6440"]],[6,11,["H935"]],[11,12,["H413"]],[12,14,["H567"]],[14,17,["H2850"]],[17,20,["H6522"]],[20,23,["H3669"]],[23,25,["H2340"]],[25,28,["H2983"]],[28,34,["H3582"]]]},{"k":2168,"v":[[0,3,["H3808"]],[3,5,["H7812"]],[5,8,["H430"]],[8,9,["H3808"]],[9,10,["H5647"]],[10,12,["H3808"]],[12,13,["H6213"]],[13,16,["H4639"]],[16,17,["H3588"]],[17,21,["H2040","H2040"]],[21,26,["H7665","H7665"]],[26,28,["H4676"]]]},{"k":2169,"v":[[0,4,["H5647","(H853)"]],[4,6,["H3068"]],[6,8,["H430"]],[8,12,["H1288","(H853)"]],[12,14,["H3899"]],[14,17,["H4325"]],[17,23,["H5493","H4245"]],[23,26,["H4480","H7130"]],[26,28,[]]]},{"k":2170,"v":[[0,3,["H3808"]],[3,6,["H1961","H7921"]],[6,9,["H6135"]],[9,12,["H776","(H853)"]],[12,14,["H4557"]],[14,17,["H3117"]],[17,20,["H4390"]]]},{"k":2171,"v":[[0,3,["H7971","(H853)"]],[3,5,["H367"]],[5,6,["H6440"]],[6,10,["H2000","(H853)"]],[10,11,["H3605"]],[11,13,["H5971"]],[13,15,["H834"]],[15,18,["H935"]],[18,22,["H5414","(H853)"]],[22,23,["H3605"]],[23,25,["H341"]],[25,28,["H6203"]],[28,29,["H413"]],[29,30,[]]]},{"k":2172,"v":[[0,4,["H7971","(H853)"]],[4,5,["H6880"]],[5,6,["H6440"]],[6,11,["H1644","(H853)"]],[11,13,["H2340","(H853)"]],[13,15,["H3669"]],[15,18,["H2850"]],[18,20,["H4480","H6440"]],[20,21,[]]]},{"k":2173,"v":[[0,3,["H3808"]],[3,6,["H1644"]],[6,8,["H4480","H6440"]],[8,11,["H259"]],[11,12,["H8141"]],[12,13,["H6435"]],[13,15,["H776"]],[15,16,["H1961"]],[16,17,["H8077"]],[17,20,["H2416"]],[20,23,["H7704"]],[23,24,["H7227"]],[24,25,["H5921"]],[25,26,[]]]},{"k":2174,"v":[[0,2,["H4592"]],[2,4,["H4592"]],[4,9,["H1644"]],[9,11,["H4480","H6440"]],[11,13,["H5704","H834"]],[13,16,["H6509"]],[16,18,["H5157","(H853)"]],[18,20,["H776"]]]},{"k":2175,"v":[[0,4,["H7896","(H853)"]],[4,6,["H1366"]],[6,10,["H4480","H3220","H5488"]],[10,12,["H5704"]],[12,14,["H3220"]],[14,17,["H6430"]],[17,21,["H4480","H4057"]],[21,22,["H5704"]],[22,24,["H5104"]],[24,25,["H3588"]],[25,28,["H5414","(H853)"]],[28,30,["H3427"]],[30,33,["H776"]],[33,36,["H3027"]],[36,42,["H1644"]],[42,43,["H4480","H6440"]],[43,44,[]]]},{"k":2176,"v":[[0,3,["H3772"]],[3,4,["H3808"]],[4,5,["H1285"]],[5,11,["H430"]]]},{"k":2177,"v":[[0,3,["H3808"]],[3,4,["H3427"]],[4,7,["H776"]],[7,8,["H6435"]],[8,12,["H2398","(H853)"]],[12,15,["H3588"]],[15,18,["H5647","(H853)"]],[18,20,["H430"]],[20,23,["H3588"]],[23,24,["H1961"]],[24,26,["H4170"]],[26,28,[]]]},{"k":2178,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H4872"]],[5,7,["H5927"]],[7,8,["H413"]],[8,10,["H3068"]],[10,11,["H859"]],[11,13,["H175"]],[13,14,["H5070"]],[14,16,["H30"]],[16,18,["H7657"]],[18,21,["H4480","H2205"]],[21,23,["H3478"]],[23,25,["H7812"]],[25,28,["H4480","H7350"]]]},{"k":2179,"v":[[0,2,["H4872"]],[2,3,["H905"]],[3,6,["H5066","H413"]],[6,8,["H3068"]],[8,10,["H1992"]],[10,12,["H3808"]],[12,14,["H5066"]],[14,15,["H3808"]],[15,18,["H5971"]],[18,20,["H5927"]],[20,21,["H5973"]],[21,22,[]]]},{"k":2180,"v":[[0,2,["H4872"]],[2,3,["H935"]],[3,5,["H5608"]],[5,7,["H5971","(H853)"]],[7,8,["H3605"]],[8,10,["H1697"]],[10,13,["H3068"]],[13,15,["H3605"]],[15,17,["H4941"]],[17,19,["H3605"]],[19,21,["H5971"]],[21,22,["H6030"]],[22,24,["H259"]],[24,25,["H6963"]],[25,27,["H559"]],[27,28,["H3605"]],[28,30,["H1697"]],[30,31,["H834"]],[31,33,["H3068"]],[33,35,["H1696"]],[35,38,["H6213"]]]},{"k":2181,"v":[[0,2,["H4872"]],[2,3,["H3789","(H853)"]],[3,4,["H3605"]],[4,6,["H1697"]],[6,9,["H3068"]],[9,13,["H7925"]],[13,16,["H1242"]],[16,18,["H1129"]],[18,20,["H4196"]],[20,21,["H8478"]],[21,23,["H2022"]],[23,25,["H8147","H6240"]],[25,26,["H4676"]],[26,30,["H8147","H6240"]],[30,31,["H7626"]],[31,33,["H3478"]]]},{"k":2182,"v":[[0,3,["H7971","(H853)"]],[3,5,["H5288"]],[5,8,["H1121"]],[8,10,["H3478"]],[10,12,["H5927"]],[12,14,["H5930"]],[14,16,["H2076"]],[16,17,["H8002"]],[17,18,["H2077"]],[18,20,["H6499"]],[20,23,["H3068"]]]},{"k":2183,"v":[[0,2,["H4872"]],[2,3,["H3947"]],[3,4,["H2677"]],[4,7,["H1818"]],[7,9,["H7760"]],[9,12,["H101"]],[12,14,["H2677"]],[14,17,["H1818"]],[17,19,["H2236"]],[19,20,["H5921"]],[20,22,["H4196"]]]},{"k":2184,"v":[[0,3,["H3947"]],[3,5,["H5612"]],[5,8,["H1285"]],[8,10,["H7121"]],[10,13,["H241"]],[13,16,["H5971"]],[16,19,["H559"]],[19,20,["H3605"]],[20,21,["H834"]],[21,23,["H3068"]],[23,25,["H1696"]],[25,28,["H6213"]],[28,31,["H8085"]]]},{"k":2185,"v":[[0,2,["H4872"]],[2,3,["H3947","(H853)"]],[3,5,["H1818"]],[5,7,["H2236"]],[7,9,["H5921"]],[9,11,["H5971"]],[11,13,["H559"]],[13,14,["H2009"]],[14,16,["H1818"]],[16,19,["H1285"]],[19,20,["H834"]],[20,22,["H3068"]],[22,24,["H3772"]],[24,25,["H5973"]],[25,27,["H5921"]],[27,28,["H3605"]],[28,29,["H428"]],[29,30,["H1697"]]]},{"k":2186,"v":[[0,3,["H5927"]],[3,4,["H4872"]],[4,6,["H175"]],[6,7,["H5070"]],[7,9,["H30"]],[9,11,["H7657"]],[11,14,["H4480","H2205"]],[14,16,["H3478"]]]},{"k":2187,"v":[[0,3,["H7200","(H853)"]],[3,5,["H430"]],[5,7,["H3478"]],[7,11,["H8478"]],[11,13,["H7272"]],[13,18,["H3840"]],[18,19,["H4639"]],[19,23,["H5601"]],[23,29,["H6106"]],[29,31,["H8064"]],[31,34,["H2892"]]]},{"k":2188,"v":[[0,2,["H413"]],[2,4,["H678"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,11,["H7971"]],[11,12,["H3808"]],[12,14,["H3027"]],[14,17,["H2372","(H853)"]],[17,18,["H430"]],[18,21,["H398"]],[21,23,["H8354"]]]},{"k":2189,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H5927"]],[8,9,["H413"]],[9,13,["H2022"]],[13,15,["H1961"]],[15,16,["H8033"]],[16,20,["H5414"]],[20,21,["(H853)"]],[21,22,["H3871"]],[22,24,["H68"]],[24,27,["H8451"]],[27,29,["H4687"]],[29,30,["H834"]],[30,33,["H3789"]],[33,37,["H3384"]],[37,38,[]]]},{"k":2190,"v":[[0,2,["H4872"]],[2,4,["H6965"]],[4,7,["H8334"]],[7,8,["H3091"]],[8,10,["H4872"]],[10,12,["H5927"]],[12,13,["H413"]],[13,15,["H2022"]],[15,17,["H430"]]]},{"k":2191,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H2205"]],[6,7,["H3427"]],[7,9,["H2088"]],[9,12,["H5704","H834"]],[12,15,["H7725"]],[15,16,["H413"]],[16,19,["H2009"]],[19,20,["H175"]],[20,22,["H2354"]],[22,24,["H5973"]],[24,27,["H4310"]],[27,28,["H1167"]],[28,31,["H1697"]],[31,36,["H5066"]],[36,37,["H413"]],[37,38,[]]]},{"k":2192,"v":[[0,2,["H4872"]],[2,4,["H5927"]],[4,5,["H413"]],[5,7,["H2022"]],[7,10,["H6051"]],[10,11,["H3680","(H853)"]],[11,13,["H2022"]]]},{"k":2193,"v":[[0,3,["H3519"]],[3,6,["H3068"]],[6,7,["H7931"]],[7,8,["H5921"]],[8,9,["H2022"]],[9,10,["H5514"]],[10,13,["H6051"]],[13,14,["H3680"]],[14,16,["H8337"]],[16,17,["H3117"]],[17,20,["H7637"]],[20,21,["H3117"]],[21,23,["H7121"]],[23,24,["H413"]],[24,25,["H4872"]],[25,29,["H4480","H8432"]],[29,32,["H6051"]]]},{"k":2194,"v":[[0,3,["H4758"]],[3,6,["H3519"]],[6,9,["H3068"]],[9,12,["H398"]],[12,13,["H784"]],[13,16,["H7218"]],[16,19,["H2022"]],[19,22,["H5869"]],[22,25,["H1121"]],[25,27,["H3478"]]]},{"k":2195,"v":[[0,2,["H4872"]],[2,3,["H935"]],[3,6,["H8432"]],[6,9,["H6051"]],[9,13,["H5927"]],[13,14,["H413"]],[14,16,["H2022"]],[16,18,["H4872"]],[18,19,["H1961"]],[19,22,["H2022"]],[22,23,["H705"]],[23,24,["H3117"]],[24,26,["H705"]],[26,27,["H3915"]]]},{"k":2196,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2197,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,9,["H3947"]],[9,12,["H8641"]],[12,13,["H4480","H854"]],[13,14,["H3605"]],[14,15,["H376"]],[15,16,["H834"]],[16,19,["H5068"]],[19,22,["H3820"]],[22,25,["H3947","(H853)"]],[25,27,["H8641"]]]},{"k":2198,"v":[[0,2,["H2063"]],[2,5,["H8641"]],[5,6,["H834"]],[6,9,["H3947"]],[9,10,["H4480","H854"]],[10,12,["H2091"]],[12,14,["H3701"]],[14,16,["H5178"]]]},{"k":2199,"v":[[0,2,["H8504"]],[2,4,["H713"]],[4,6,["H8438","H8144"]],[6,9,["H8336"]],[9,11,["H5795"]],[11,12,[]]]},{"k":2200,"v":[[0,2,["H352"]],[2,3,["H5785"]],[3,5,["H119"]],[5,7,["H8476"]],[7,8,["H5785"]],[8,10,["H7848"]],[10,11,["H6086"]]]},{"k":2201,"v":[[0,1,["H8081"]],[1,4,["H3974"]],[4,5,["H1314"]],[5,7,["H4888"]],[7,8,["H8081"]],[8,11,["H5561"]],[11,12,["H7004"]]]},{"k":2202,"v":[[0,1,["H7718"]],[1,2,["H68"]],[2,4,["H68"]],[4,7,["H4394"]],[7,10,["H646"]],[10,14,["H2833"]]]},{"k":2203,"v":[[0,4,["H6213"]],[4,7,["H4720"]],[7,11,["H7931"]],[11,12,["H8432"]],[12,13,[]]]},{"k":2204,"v":[[0,3,["H3605"]],[3,4,["H834"]],[4,5,["H589"]],[5,6,["H7200"]],[6,8,["(H853)"]],[8,10,["H8403"]],[10,13,["H4908"]],[13,16,["H8403"]],[16,18,["H3605"]],[18,20,["H3627"]],[20,23,["H3651"]],[23,26,["H6213"]],[26,27,[]]]},{"k":2205,"v":[[0,4,["H6213"]],[4,6,["H727"]],[6,8,["H7848"]],[8,9,["H6086"]],[9,11,["H520"]],[11,14,["H2677"]],[14,18,["H753"]],[18,22,["H520"]],[22,25,["H2677"]],[25,27,["H7341"]],[27,31,["H520"]],[31,34,["H2677"]],[34,36,["H6967"]],[36,37,[]]]},{"k":2206,"v":[[0,4,["H6823"]],[4,7,["H2889"]],[7,8,["H2091"]],[8,9,["H4480","H1004"]],[9,11,["H4480","H2351"]],[11,14,["H6823"]],[14,18,["H6213"]],[18,19,["H5921"]],[19,22,["H2213"]],[22,24,["H2091"]],[24,26,["H5439"]]]},{"k":2207,"v":[[0,4,["H3332"]],[4,5,["H702"]],[5,6,["H2885"]],[6,8,["H2091"]],[8,12,["H5414"]],[12,14,["H5921"]],[14,16,["H702"]],[16,17,["H6471"]],[17,20,["H8147"]],[20,21,["H2885"]],[21,24,["H5921"]],[24,26,["H259"]],[26,27,["H6763"]],[27,31,["H8147"]],[31,32,["H2885"]],[32,33,["H5921"]],[33,35,["H8145"]],[35,36,["H6763"]],[36,38,[]]]},{"k":2208,"v":[[0,4,["H6213"]],[4,5,["H905"]],[5,7,["H7848"]],[7,8,["H6086"]],[8,10,["H6823"]],[10,13,["H2091"]]]},{"k":2209,"v":[[0,4,["H935","(H853)"]],[4,6,["H905"]],[6,9,["H2885"]],[9,10,["H5921"]],[10,12,["H6763"]],[12,15,["H727"]],[15,16,["(H853)"]],[16,18,["H727"]],[18,21,["H5375"]],[21,23,[]]]},{"k":2210,"v":[[0,2,["H905"]],[2,4,["H1961"]],[4,7,["H2885"]],[7,10,["H727"]],[10,13,["H3808"]],[13,15,["H5493"]],[15,16,["H4480"]],[16,17,[]]]},{"k":2211,"v":[[0,4,["H5414"]],[4,5,["H413"]],[5,7,["H727","(H853)"]],[7,9,["H5715"]],[9,10,["H834"]],[10,13,["H5414","H413"]],[13,14,[]]]},{"k":2212,"v":[[0,4,["H6213"]],[4,7,["H3727"]],[7,9,["H2889"]],[9,10,["H2091"]],[10,12,["H520"]],[12,15,["H2677"]],[15,19,["H753"]],[19,23,["H520"]],[23,26,["H2677"]],[26,28,["H7341"]],[28,29,[]]]},{"k":2213,"v":[[0,4,["H6213"]],[4,5,["H8147"]],[5,6,["H3742"]],[6,8,["H2091"]],[8,11,["H4749"]],[11,14,["H6213"]],[14,18,["H4480","H8147"]],[18,19,["H7098"]],[19,23,["H3727"]]]},{"k":2214,"v":[[0,2,["H6213"]],[2,3,["H259"]],[3,4,["H3742"]],[4,8,["H4480","H2088","H4480","H7098"]],[8,11,["H259"]],[11,12,["H3742"]],[12,16,["H4480","H2088","H4480","H7098"]],[16,18,["H4480"]],[18,21,["H3727"]],[21,24,["H6213","(H853)"]],[24,26,["H3742"]],[26,27,["H5921"]],[27,29,["H8147"]],[29,30,["H7098"]],[30,31,[]]]},{"k":2215,"v":[[0,3,["H3742"]],[3,4,["H1961"]],[4,6,["H6566"]],[6,8,["H3671"]],[8,10,["H4605"]],[10,11,["H5526","H5921"]],[11,14,["H3727"]],[14,17,["H3671"]],[17,20,["H6440"]],[20,23,["H376"]],[23,24,["H413"]],[24,25,["H251"]],[25,26,["H413"]],[26,29,["H3727"]],[29,32,["H6440"]],[32,35,["H3742"]],[35,36,["H1961"]]]},{"k":2216,"v":[[0,4,["H5414","(H853)"]],[4,7,["H3727"]],[7,8,["H4480","H4605"]],[8,9,["H5921"]],[9,11,["H727"]],[11,13,["H413"]],[13,15,["H727"]],[15,18,["H5414","(H853)"]],[18,20,["H5715"]],[20,21,["H834"]],[21,24,["H5414","H413"]],[24,25,[]]]},{"k":2217,"v":[[0,2,["H8033"]],[2,5,["H3259"]],[5,11,["H1696"]],[11,12,["H854"]],[12,15,["H4480","H5921"]],[15,18,["H3727"]],[18,20,["H4480","H996"]],[20,22,["H8147"]],[22,23,["H3742"]],[23,24,["H834"]],[24,26,["H5921"]],[26,28,["H727"]],[28,31,["H5715","(H853)"]],[31,33,["H3605"]],[33,35,["H834"]],[35,41,["H6680","(H853)"]],[41,42,["H413"]],[42,44,["H1121"]],[44,46,["H3478"]]]},{"k":2218,"v":[[0,4,["H6213"]],[4,6,["H7979"]],[6,8,["H7848"]],[8,9,["H6086"]],[9,11,["H520"]],[11,15,["H753"]],[15,19,["H520"]],[19,21,["H7341"]],[21,25,["H520"]],[25,28,["H2677"]],[28,30,["H6967"]],[30,31,[]]]},{"k":2219,"v":[[0,4,["H6823"]],[4,7,["H2889"]],[7,8,["H2091"]],[8,10,["H6213"]],[10,13,["H2213"]],[13,15,["H2091"]],[15,17,["H5439"]]]},{"k":2220,"v":[[0,4,["H6213"]],[4,8,["H4526"]],[8,12,["H2948"]],[12,14,["H5439"]],[14,18,["H6213"]],[18,20,["H2091"]],[20,21,["H2213"]],[21,24,["H4526"]],[24,27,["H5439"]]]},{"k":2221,"v":[[0,4,["H6213"]],[4,7,["H702"]],[7,8,["H2885"]],[8,10,["H2091"]],[10,12,["H5414","(H853)"]],[12,14,["H2885"]],[14,15,["H5921"]],[15,17,["H702"]],[17,18,["H6285"]],[18,19,["H834"]],[19,23,["H702"]],[23,24,["H7272"]],[24,25,[]]]},{"k":2222,"v":[[0,2,["H5980"]],[2,4,["H4526"]],[4,7,["H2885"]],[7,8,["H1961"]],[8,10,["H1004"]],[10,13,["H905"]],[13,15,["H5375","(H853)"]],[15,17,["H7979"]]]},{"k":2223,"v":[[0,4,["H6213","(H853)"]],[4,6,["H905"]],[6,8,["H7848"]],[8,9,["H6086"]],[9,11,["H6823"]],[11,14,["H2091"]],[14,15,["(H853)"]],[15,17,["H7979"]],[17,20,["H5375"]],[20,22,[]]]},{"k":2224,"v":[[0,4,["H6213"]],[4,6,["H7086"]],[6,9,["H3709"]],[9,12,["H7184"]],[12,15,["H4518"]],[15,18,["H5258"]],[18,19,["H834","H2004"]],[19,21,["H2889"]],[21,22,["H2091"]],[22,25,["H6213"]],[25,26,[]]]},{"k":2225,"v":[[0,4,["H5414"]],[4,5,["H5921"]],[5,7,["H7979"]],[7,8,["H3899","H6440"]],[8,9,["H6440"]],[9,11,["H8548"]]]},{"k":2226,"v":[[0,4,["H6213"]],[4,6,["H4501"]],[6,8,["H2889"]],[8,9,["H2091"]],[9,12,["H4749"]],[12,15,["H4501"]],[15,17,["H6213"]],[17,19,["H3409"]],[19,22,["H7070"]],[22,24,["H1375"]],[24,26,["H3730"]],[26,29,["H6525"]],[29,31,["H1961"]],[31,32,["H4480"]],[32,34,[]]]},{"k":2227,"v":[[0,2,["H8337"]],[2,3,["H7070"]],[3,6,["H3318"]],[6,9,["H4480","H6654"]],[9,12,["H7969"]],[12,13,["H7070"]],[13,16,["H4501"]],[16,21,["H4480","H6654","H259"]],[21,23,["H7969"]],[23,24,["H7070"]],[24,27,["H4501"]],[27,32,["H4480","H6654","H8145"]]]},{"k":2228,"v":[[0,1,["H7969"]],[1,2,["H1375"]],[2,6,["H8246"]],[6,9,["H3730"]],[9,12,["H6525"]],[12,14,["H259"]],[14,15,["H7070"]],[15,17,["H7969"]],[17,18,["H1375"]],[18,21,["H8246"]],[21,24,["H259"]],[24,25,["H7070"]],[25,28,["H3730"]],[28,31,["H6525"]],[31,32,["H3651"]],[32,35,["H8337"]],[35,36,["H7070"]],[36,39,["H3318"]],[39,40,["H4480"]],[40,42,["H4501"]]]},{"k":2229,"v":[[0,4,["H4501"]],[4,7,["H702"]],[7,8,["H1375"]],[8,12,["H8246"]],[12,15,["H3730"]],[15,18,["H6525"]]]},{"k":2230,"v":[[0,6,["H3730"]],[6,7,["H8478"]],[7,8,["H8147"]],[8,9,["H7070"]],[9,10,["H4480"]],[10,15,["H3730"]],[15,16,["H8478"]],[16,17,["H8147"]],[17,18,["H7070"]],[18,19,["H4480"]],[19,24,["H3730"]],[24,25,["H8478"]],[25,26,["H8147"]],[26,27,["H7070"]],[27,28,["H4480"]],[28,34,["H8337"]],[34,35,["H7070"]],[35,38,["H3318"]],[38,39,["H4480"]],[39,41,["H4501"]]]},{"k":2231,"v":[[0,2,["H3730"]],[2,5,["H7070"]],[5,7,["H1961"]],[7,8,["H4480"]],[8,11,["H3605"]],[11,15,["H259"]],[15,17,["H4749"]],[17,19,["H2889"]],[19,20,["H2091"]]]},{"k":2232,"v":[[0,4,["H6213"]],[4,5,["(H853)"]],[5,6,["H7651"]],[6,7,["H5216"]],[7,12,["H5927","(H853)"]],[12,14,["H5216"]],[14,20,["H215"]],[20,22,["H5921","H5676","H6440"]],[22,23,[]]]},{"k":2233,"v":[[0,3,["H4457"]],[3,7,["H4289"]],[7,12,["H2889"]],[12,13,["H2091"]]]},{"k":2234,"v":[[0,3,["H3603"]],[3,5,["H2889"]],[5,6,["H2091"]],[6,9,["H6213"]],[9,11,["H854"]],[11,12,["H3605"]],[12,13,["H428"]],[13,14,["H3627"]]]},{"k":2235,"v":[[0,2,["H7200"]],[2,5,["H6213"]],[5,9,["H8403"]],[9,10,["H834"]],[10,12,["H7200"]],[12,13,["H859"]],[13,16,["H2022"]]]},{"k":2236,"v":[[0,4,["H6213"]],[4,6,["H4908"]],[6,8,["H6235"]],[8,9,["H3407"]],[9,13,["H8336","H7806"]],[13,15,["H8504"]],[15,17,["H713"]],[17,19,["H8438","H8144"]],[19,21,["H3742"]],[21,23,["H2803"]],[23,24,["H4639"]],[24,27,["H6213"]],[27,28,[]]]},{"k":2237,"v":[[0,2,["H753"]],[2,4,["H259"]],[4,5,["H3407"]],[5,8,["H8083"]],[8,10,["H6242"]],[10,11,["H520"]],[11,14,["H7341"]],[14,16,["H259"]],[16,17,["H3407"]],[17,18,["H702"]],[18,19,["H520"]],[19,22,["H3605"]],[22,25,["H3407"]],[25,28,["H259"]],[28,29,["H4060"]]]},{"k":2238,"v":[[0,2,["H2568"]],[2,3,["H3407"]],[3,5,["H1961"]],[5,7,["H2266"]],[7,8,["H802"]],[8,9,["H413"]],[9,10,["H269"]],[10,13,["H2568"]],[13,14,["H3407"]],[14,17,["H2266"]],[17,18,["H802"]],[18,19,["H413"]],[19,20,["H269"]]]},{"k":2239,"v":[[0,4,["H6213"]],[4,5,["H3924"]],[5,7,["H8504"]],[7,8,["H5921"]],[8,10,["H8193"]],[10,13,["H259"]],[13,14,["H3407"]],[14,17,["H4480","H7098"]],[17,20,["H2279"]],[20,22,["H3651"]],[22,25,["H6213"]],[25,28,["H7020"]],[28,29,["H8193"]],[29,32,["H3407"]],[32,35,["H4225"]],[35,38,["H8145"]]]},{"k":2240,"v":[[0,1,["H2572"]],[1,2,["H3924"]],[2,5,["H6213"]],[5,8,["H259"]],[8,9,["H3407"]],[9,11,["H2572"]],[11,12,["H3924"]],[12,15,["H6213"]],[15,18,["H7097"]],[18,21,["H3407"]],[21,22,["H834"]],[22,26,["H4225"]],[26,29,["H8145"]],[29,32,["H3924"]],[32,35,["H6901"]],[35,36,["H802"]],[36,37,["H413"]],[37,38,["H269"]]]},{"k":2241,"v":[[0,4,["H6213"]],[4,5,["H2572"]],[5,6,["H7165"]],[6,8,["H2091"]],[8,10,["H2266","(H853)"]],[10,12,["H3407"]],[12,13,["H802","H413","H269"]],[13,16,["H7165"]],[16,20,["H1961"]],[20,21,["H259"]],[21,22,["H4908"]]]},{"k":2242,"v":[[0,4,["H6213"]],[4,5,["H3407"]],[5,7,["H5795"]],[7,12,["H168"]],[12,13,["H5921"]],[13,15,["H4908"]],[15,16,["H6249","H6240"]],[16,17,["H3407"]],[17,20,["H6213"]]]},{"k":2243,"v":[[0,2,["H753"]],[2,4,["H259"]],[4,5,["H3407"]],[5,8,["H7970"]],[8,9,["H520"]],[9,12,["H7341"]],[12,14,["H259"]],[14,15,["H3407"]],[15,16,["H702"]],[16,17,["H520"]],[17,20,["H6249","H6240"]],[20,21,["H3407"]],[21,26,["H259"]],[26,27,["H4060"]]]},{"k":2244,"v":[[0,4,["H2266","(H853)"]],[4,5,["H2568"]],[5,6,["H3407"]],[6,8,["H905"]],[8,10,["H8337"]],[10,11,["H3407"]],[11,13,["H905"]],[13,16,["H3717"]],[16,18,["H8345","(H853)"]],[18,19,["H3407"]],[19,22,["H413","H4136","H6440"]],[22,25,["H168"]]]},{"k":2245,"v":[[0,4,["H6213"]],[4,5,["H2572"]],[5,6,["H3924"]],[6,7,["H5921"]],[7,9,["H8193"]],[9,12,["H259"]],[12,13,["H3407"]],[13,16,["H7020"]],[16,19,["H2279"]],[19,21,["H2572"]],[21,22,["H3924"]],[22,23,["H5921"]],[23,25,["H8193"]],[25,28,["H3407"]],[28,30,["H2279"]],[30,32,["H8145"]]]},{"k":2246,"v":[[0,4,["H6213"]],[4,5,["H2572"]],[5,6,["H7165"]],[6,8,["H5178"]],[8,10,["H935","(H853)"]],[10,12,["H7165"]],[12,15,["H3924"]],[15,20,["H2266","(H853)","H168"]],[20,24,["H1961"]],[24,25,["H259"]]]},{"k":2247,"v":[[0,3,["H5629"]],[3,5,["H5736"]],[5,8,["H3407"]],[8,11,["H168"]],[11,13,["H2677"]],[13,14,["H3407"]],[14,16,["H5736"]],[16,18,["H5628"]],[18,19,["H5921"]],[19,21,["H268"]],[21,24,["H4908"]]]},{"k":2248,"v":[[0,3,["H520"]],[3,7,["H4480","H2088"]],[7,10,["H520"]],[10,14,["H4480","H2088"]],[14,18,["H5736"]],[18,21,["H753"]],[21,24,["H3407"]],[24,27,["H168"]],[27,29,["H1961"]],[29,30,["H5628"]],[30,31,["H5921"]],[31,33,["H6654"]],[33,36,["H4908"]],[36,39,["H4480","H2088"]],[39,43,["H4480","H2088"]],[43,45,["H3680"]],[45,46,[]]]},{"k":2249,"v":[[0,4,["H6213"]],[4,6,["H4372"]],[6,9,["H168"]],[9,11,["H352"]],[11,12,["H5785"]],[12,14,["H119"]],[14,17,["H4372"]],[17,18,["H4480","H4605"]],[18,20,["H8476"]],[20,21,["H5785"]]]},{"k":2250,"v":[[0,4,["H6213","(H853)"]],[4,5,["H7175"]],[5,8,["H4908"]],[8,10,["H7848"]],[10,11,["H6086"]],[11,13,["H5975"]]]},{"k":2251,"v":[[0,1,["H6235"]],[1,2,["H520"]],[2,6,["H753"]],[6,9,["H7175"]],[9,12,["H520"]],[12,15,["H2677"]],[15,19,["H7341"]],[19,21,["H259"]],[21,22,["H7175"]]]},{"k":2252,"v":[[0,1,["H8147"]],[1,2,["H3027"]],[2,7,["H259"]],[7,8,["H7175"]],[8,11,["H7947"]],[11,12,["H802"]],[12,13,["H413"]],[13,14,["H269"]],[14,15,["H3651"]],[15,18,["H6213"]],[18,20,["H3605"]],[20,22,["H7175"]],[22,25,["H4908"]]]},{"k":2253,"v":[[0,4,["H6213","(H853)"]],[4,6,["H7175"]],[6,9,["H4908"]],[9,10,["H6242"]],[10,11,["H7175"]],[11,14,["H5045"]],[14,15,["H6285"]],[15,16,["H8486"]]]},{"k":2254,"v":[[0,4,["H6213"]],[4,5,["H705"]],[5,6,["H134"]],[6,8,["H3701"]],[8,9,["H8478"]],[9,11,["H6242"]],[11,12,["H7175"]],[12,13,["H8147"]],[13,14,["H134"]],[14,15,["H8478"]],[15,16,["H259"]],[16,17,["H7175"]],[17,20,["H8147"]],[20,21,["H3027"]],[21,23,["H8147"]],[23,24,["H134"]],[24,25,["H8478"]],[25,26,["H259"]],[26,27,["H7175"]],[27,30,["H8147"]],[30,31,["H3027"]]]},{"k":2255,"v":[[0,4,["H8145"]],[4,5,["H6763"]],[5,8,["H4908"]],[8,11,["H6828"]],[11,12,["H6285"]],[12,16,["H6242"]],[16,17,["H7175"]]]},{"k":2256,"v":[[0,3,["H705"]],[3,4,["H134"]],[4,6,["H3701"]],[6,7,["H8147"]],[7,8,["H134"]],[8,9,["H8478"]],[9,10,["H259"]],[10,11,["H7175"]],[11,13,["H8147"]],[13,14,["H134"]],[14,15,["H8478"]],[15,16,["H259"]],[16,17,["H7175"]]]},{"k":2257,"v":[[0,4,["H3411"]],[4,7,["H4908"]],[7,8,["H3220"]],[8,11,["H6213"]],[11,12,["H8337"]],[12,13,["H7175"]]]},{"k":2258,"v":[[0,2,["H8147"]],[2,3,["H7175"]],[3,6,["H6213"]],[6,9,["H4742"]],[9,12,["H4908"]],[12,16,["H3411"]]]},{"k":2259,"v":[[0,4,["H1961"]],[4,6,["H8382"]],[6,7,["H4480","H4295"]],[7,11,["H1961"]],[11,13,["H8382"]],[13,14,["H3162","H5921"]],[14,16,["H7218"]],[16,19,["H413"]],[19,20,["H259"]],[20,21,["H2885"]],[21,22,["H3651"]],[22,25,["H1961"]],[25,28,["H8147"]],[28,31,["H1961"]],[31,34,["H8147"]],[34,35,["H4740"]]]},{"k":2260,"v":[[0,4,["H1961"]],[4,5,["H8083"]],[5,6,["H7175"]],[6,9,["H134"]],[9,11,["H3701"]],[11,12,["H8337","H6240"]],[12,13,["H134"]],[13,14,["H8147"]],[14,15,["H134"]],[15,16,["H8478"]],[16,17,["H259"]],[17,18,["H7175"]],[18,20,["H8147"]],[20,21,["H134"]],[21,22,["H8478"]],[22,23,["H259"]],[23,24,["H7175"]]]},{"k":2261,"v":[[0,4,["H6213"]],[4,5,["H1280"]],[5,7,["H7848"]],[7,8,["H6086"]],[8,9,["H2568"]],[9,12,["H7175"]],[12,15,["H259"]],[15,16,["H6763"]],[16,19,["H4908"]]]},{"k":2262,"v":[[0,2,["H2568"]],[2,3,["H1280"]],[3,6,["H7175"]],[6,9,["H8145"]],[9,10,["H6763"]],[10,13,["H4908"]],[13,15,["H2568"]],[15,16,["H1280"]],[16,19,["H7175"]],[19,22,["H6763"]],[22,25,["H4908"]],[25,29,["H3411"]],[29,30,["H3220"]]]},{"k":2263,"v":[[0,3,["H8484"]],[3,4,["H1280"]],[4,7,["H8432"]],[7,10,["H7175"]],[10,12,["H1272"]],[12,13,["H4480"]],[13,14,["H7097"]],[14,15,["H413"]],[15,16,["H7097"]]]},{"k":2264,"v":[[0,4,["H6823"]],[4,6,["H7175"]],[6,8,["H2091"]],[8,10,["H6213"]],[10,12,["H2885"]],[12,14,["H2091"]],[14,16,["H1004"]],[16,19,["H1280"]],[19,23,["H6823","(H853)"]],[23,25,["H1280"]],[25,27,["H2091"]]]},{"k":2265,"v":[[0,5,["H6965","(H853)"]],[5,7,["H4908"]],[7,11,["H4941"]],[11,13,["H834"]],[13,15,["H7200"]],[15,19,["H2022"]]]},{"k":2266,"v":[[0,4,["H6213"]],[4,6,["H6532"]],[6,8,["H8504"]],[8,10,["H713"]],[10,12,["H8438","H8144"]],[12,16,["H8336","H7806"]],[16,18,["H2803"]],[18,19,["H4639"]],[19,21,["H3742"]],[21,25,["H6213"]]]},{"k":2267,"v":[[0,4,["H5414"]],[4,6,["H5921"]],[6,7,["H702"]],[7,8,["H5982"]],[8,10,["H7848"]],[10,12,["H6823"]],[12,14,["H2091"]],[14,16,["H2053"]],[16,20,["H2091"]],[20,21,["H5921"]],[21,23,["H702"]],[23,24,["H134"]],[24,26,["H3701"]]]},{"k":2268,"v":[[0,5,["H5414","(H853)"]],[5,7,["H6532"]],[7,8,["H8478"]],[8,10,["H7165"]],[10,15,["H935"]],[15,16,["H8033"]],[16,17,["H4480","H1004"]],[17,19,["H6532","(H853)"]],[19,21,["H727"]],[21,24,["H5715"]],[24,27,["H6532"]],[27,29,["H914"]],[29,32,["H996"]],[32,34,["H6944"]],[34,39,["H6944","H6944"]]]},{"k":2269,"v":[[0,4,["H5414","(H853)"]],[4,7,["H3727"]],[7,8,["H5921"]],[8,10,["H727"]],[10,13,["H5715"]],[13,17,["H6944","H6944"]],[17,18,[]]]},{"k":2270,"v":[[0,4,["H7760","(H853)"]],[4,6,["H7979"]],[6,7,["H4480","H2351"]],[7,9,["H6532"]],[9,12,["H4501"]],[12,14,["H5227"]],[14,16,["H7979"]],[16,17,["H5921"]],[17,19,["H6763"]],[19,22,["H4908"]],[22,25,["H8486"]],[25,29,["H5414"]],[29,31,["H7979"]],[31,32,["H5921"]],[32,34,["H6828"]],[34,35,["H6763"]]]},{"k":2271,"v":[[0,4,["H6213"]],[4,6,["H4539"]],[6,9,["H6607"]],[9,12,["H168"]],[12,14,["H8504"]],[14,16,["H713"]],[16,18,["H8438","H8144"]],[18,22,["H8336","H7806"]],[22,25,["H4639","H7551"]]]},{"k":2272,"v":[[0,4,["H6213"]],[4,7,["H4539"]],[7,8,["H2568"]],[8,9,["H5982"]],[9,11,["H7848"]],[11,14,["H6823"]],[14,17,["H2091"]],[17,20,["H2053"]],[20,24,["H2091"]],[24,28,["H3332"]],[28,29,["H2568"]],[29,30,["H134"]],[30,32,["H5178"]],[32,34,[]]]},{"k":2273,"v":[[0,4,["H6213","(H853)"]],[4,6,["H4196"]],[6,8,["H7848"]],[8,9,["H6086"]],[9,10,["H2568"]],[10,11,["H520"]],[11,12,["H753"]],[12,14,["H2568"]],[14,15,["H520"]],[15,16,["H7341"]],[16,18,["H4196"]],[18,20,["H1961"]],[20,21,["H7251"]],[21,24,["H6967"]],[24,28,["H7969"]],[28,29,["H520"]]]},{"k":2274,"v":[[0,4,["H6213"]],[4,6,["H7161"]],[6,9,["H5921"]],[9,11,["H702"]],[11,12,["H6438"]],[12,15,["H7161"]],[15,17,["H1961"]],[17,18,["H4480"]],[18,24,["H6823"]],[24,27,["H5178"]]]},{"k":2275,"v":[[0,4,["H6213"]],[4,6,["H5518"]],[6,10,["H1878"]],[10,13,["H3257"]],[13,16,["H4219"]],[16,19,["H4207"]],[19,22,["H4289"]],[22,23,["H3605"]],[23,25,["H3627"]],[25,29,["H6213"]],[29,31,["H5178"]]]},{"k":2276,"v":[[0,4,["H6213"]],[4,8,["H4345"]],[8,10,["H4639","H7568"]],[10,12,["H5178"]],[12,14,["H5921"]],[14,16,["H7568"]],[16,19,["H6213"]],[19,20,["H702"]],[20,21,["H5178"]],[21,22,["H2885"]],[22,23,["H5921"]],[23,25,["H702"]],[25,26,["H7098"]],[26,27,[]]]},{"k":2277,"v":[[0,4,["H5414"]],[4,6,["H8478"]],[6,8,["H3749"]],[8,11,["H4196"]],[11,12,["H4480","H4295"]],[12,15,["H7568"]],[15,17,["H1961"]],[17,19,["H5704"]],[19,21,["H2677"]],[21,24,["H4196"]]]},{"k":2278,"v":[[0,4,["H6213"]],[4,5,["H905"]],[5,8,["H4196"]],[8,9,["H905"]],[9,11,["H7848"]],[11,12,["H6086"]],[12,14,["H6823"]],[14,17,["H5178"]]]},{"k":2279,"v":[[0,1,["(H853)"]],[1,3,["H905"]],[3,6,["H935"]],[6,9,["H2885"]],[9,12,["H905"]],[12,14,["H1961"]],[14,15,["H5921"]],[15,17,["H8147"]],[17,18,["H6763"]],[18,21,["H4196"]],[21,23,["H5375"]],[23,24,[]]]},{"k":2280,"v":[[0,1,["H5014"]],[1,3,["H3871"]],[3,6,["H6213"]],[6,8,["H834"]],[8,11,["H7200"]],[11,15,["H2022"]],[15,16,["H3651"]],[16,19,["H6213"]],[19,20,[]]]},{"k":2281,"v":[[0,4,["H6213","(H853)"]],[4,6,["H2691"]],[6,9,["H4908"]],[9,12,["H5045"]],[12,13,["H6285"]],[13,14,["H8486"]],[14,18,["H7050"]],[18,21,["H2691"]],[21,25,["H8336","H7806"]],[25,28,["H3967"]],[28,29,["H520"]],[29,30,["H753"]],[30,32,["H259"]],[32,33,["H6285"]]]},{"k":2282,"v":[[0,3,["H6242"]],[3,4,["H5982"]],[4,8,["H6242"]],[8,9,["H134"]],[9,13,["H5178"]],[13,15,["H2053"]],[15,18,["H5982"]],[18,21,["H2838"]],[21,25,["H3701"]]]},{"k":2283,"v":[[0,2,["H3651"]],[2,5,["H6828"]],[5,6,["H6285"]],[6,8,["H753"]],[8,12,["H7050"]],[12,15,["H3967"]],[15,17,["H753"]],[17,20,["H6242"]],[20,21,["H5982"]],[21,24,["H6242"]],[24,25,["H134"]],[25,27,["H5178"]],[27,29,["H2053"]],[29,32,["H5982"]],[32,35,["H2838"]],[35,37,["H3701"]]]},{"k":2284,"v":[[0,4,["H7341"]],[4,7,["H2691"]],[7,10,["H3220"]],[10,11,["H6285"]],[11,14,["H7050"]],[14,16,["H2572"]],[16,17,["H520"]],[17,19,["H5982"]],[19,20,["H6235"]],[20,23,["H134"]],[23,24,["H6235"]]]},{"k":2285,"v":[[0,3,["H7341"]],[3,6,["H2691"]],[6,9,["H6924"]],[9,10,["H6285"]],[10,11,["H4217"]],[11,14,["H2572"]],[14,15,["H520"]]]},{"k":2286,"v":[[0,2,["H7050"]],[2,5,["H3802"]],[5,11,["H2568","H6240"]],[11,12,["H520"]],[12,14,["H5982"]],[14,15,["H7969"]],[15,18,["H134"]],[18,19,["H7969"]]]},{"k":2287,"v":[[0,4,["H8145"]],[4,5,["H3802"]],[5,8,["H7050"]],[8,9,["H2568","H6240"]],[9,12,["H5982"]],[12,13,["H7969"]],[13,16,["H134"]],[16,17,["H7969"]]]},{"k":2288,"v":[[0,4,["H8179"]],[4,7,["H2691"]],[7,11,["H4539"]],[11,13,["H6242"]],[13,14,["H520"]],[14,16,["H8504"]],[16,18,["H713"]],[18,20,["H8438","H8144"]],[20,24,["H8336","H7806"]],[24,27,["H4639","H7551"]],[27,30,["H5982"]],[30,33,["H702"]],[33,36,["H134"]],[36,37,["H702"]]]},{"k":2289,"v":[[0,1,["H3605"]],[1,3,["H5982"]],[3,5,["H5439"]],[5,7,["H2691"]],[7,10,["H2836"]],[10,12,["H3701"]],[12,14,["H2053"]],[14,18,["H3701"]],[18,21,["H134"]],[21,23,["H5178"]]]},{"k":2290,"v":[[0,2,["H753"]],[2,5,["H2691"]],[5,9,["H3967"]],[9,10,["H520"]],[10,13,["H7341"]],[13,16,["H2572","H2572"]],[16,19,["H6967"]],[19,20,["H2568"]],[20,21,["H520"]],[21,25,["H8336","H7806"]],[25,28,["H134"]],[28,30,["H5178"]]]},{"k":2291,"v":[[0,1,["H3605"]],[1,3,["H3627"]],[3,6,["H4908"]],[6,8,["H3605"]],[8,10,["H5656"]],[10,13,["H3605"]],[13,15,["H3489"]],[15,18,["H3605"]],[18,20,["H3489"]],[20,23,["H2691"]],[23,27,["H5178"]]]},{"k":2292,"v":[[0,2,["H859"]],[2,4,["H6680","(H853)"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,11,["H3947","H413"]],[11,13,["H2134"]],[13,14,["H8081"]],[14,15,["H2132"]],[15,16,["H3795"]],[16,19,["H3974"]],[19,23,["H5216"]],[23,25,["H5927"]],[25,26,["H8548"]]]},{"k":2293,"v":[[0,3,["H168"]],[3,6,["H4150"]],[6,7,["H4480","H2351"]],[7,9,["H6532"]],[9,10,["H834"]],[10,12,["H5921"]],[12,14,["H5715"]],[14,15,["H175"]],[15,18,["H1121"]],[18,20,["H6186"]],[20,23,["H4480","H6153"]],[23,24,["H5704"]],[24,25,["H1242"]],[25,26,["H6440"]],[26,28,["H3068"]],[28,33,["H2708"]],[33,35,["H5769"]],[35,38,["H1755"]],[38,41,["H4480","H854"]],[41,44,["H1121"]],[44,46,["H3478"]]]},{"k":2294,"v":[[0,2,["H7126"]],[2,3,["H859"]],[3,4,["H413"]],[4,5,["(H853)"]],[5,6,["H175"]],[6,8,["H251"]],[8,11,["H1121"]],[11,12,["H854"]],[12,15,["H4480","H8432"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,29,["H3547"]],[29,31,["H175"]],[31,32,["H5070"]],[32,34,["H30"]],[34,35,["H499"]],[35,37,["H385"]],[37,38,["H175"]],[38,39,["H1121"]]]},{"k":2295,"v":[[0,4,["H6213"]],[4,5,["H6944"]],[5,6,["H899"]],[6,8,["H175"]],[8,10,["H251"]],[10,12,["H3519"]],[12,15,["H8597"]]]},{"k":2296,"v":[[0,2,["H859"]],[2,4,["H1696"]],[4,5,["H413"]],[5,6,["H3605"]],[6,9,["H2450"]],[9,10,["H3820"]],[10,11,["H834"]],[11,15,["H4390"]],[15,17,["H7307"]],[17,19,["H2451"]],[19,23,["H6213","(H853)"]],[23,24,["H175"]],[24,25,["H899"]],[25,27,["H6942"]],[27,38,["H3547"]]]},{"k":2297,"v":[[0,2,["H428"]],[2,5,["H899"]],[5,6,["H834"]],[6,9,["H6213"]],[9,11,["H2833"]],[11,14,["H646"]],[14,17,["H4598"]],[17,20,["H8665"]],[20,21,["H3801"]],[21,23,["H4701"]],[23,26,["H73"]],[26,30,["H6213"]],[30,31,["H6944"]],[31,32,["H899"]],[32,34,["H175"]],[34,36,["H251"]],[36,39,["H1121"]],[39,49,["H3547"]]]},{"k":2298,"v":[[0,2,["H1992"]],[2,4,["H3947","(H853)"]],[4,5,["H2091"]],[5,7,["H8504"]],[7,9,["H713"]],[9,11,["H8438","H8144"]],[11,14,["H8336"]]]},{"k":2299,"v":[[0,4,["H6213","(H853)"]],[4,6,["H646"]],[6,8,["H2091"]],[8,10,["H8504"]],[10,13,["H713"]],[13,15,["H8438","H8144"]],[15,19,["H8336","H7806"]],[19,21,["H2803"]],[21,22,["H4639"]]]},{"k":2300,"v":[[0,3,["H1961"]],[3,5,["H8147"]],[5,6,["H3802"]],[6,8,["H2266"]],[8,9,["H413"]],[9,11,["H8147"]],[11,12,["H7098"]],[12,20,["H2266"]]]},{"k":2301,"v":[[0,4,["H2805"]],[4,7,["H642"]],[7,8,["H834"]],[8,10,["H5921"]],[10,13,["H1961"]],[13,14,["H4480"]],[14,20,["H4639"]],[20,24,["H2091"]],[24,26,["H8504"]],[26,28,["H713"]],[28,30,["H8438","H8144"]],[30,34,["H8336","H7806"]]]},{"k":2302,"v":[[0,4,["H3947","(H853)"]],[4,5,["H8147"]],[5,6,["H7718"]],[6,7,["H68"]],[7,9,["H6605"]],[9,10,["H5921"]],[10,13,["H8034"]],[13,16,["H1121"]],[16,18,["H3478"]]]},{"k":2303,"v":[[0,1,["H8337"]],[1,4,["H4480","H8034"]],[4,5,["H5921"]],[5,6,["H259"]],[6,7,["H68"]],[7,11,["H8337"]],[11,12,["H8034"]],[12,15,["H3498"]],[15,16,["H5921"]],[16,18,["H8145"]],[18,19,["H68"]],[19,23,["H8435"]]]},{"k":2304,"v":[[0,3,["H4639"]],[3,6,["H2796"]],[6,8,["H68"]],[8,11,["H6603"]],[11,14,["H2368"]],[14,17,["H6605","(H853)"]],[17,19,["H8147"]],[19,20,["H68"]],[20,21,["H5921"]],[21,23,["H8034"]],[23,26,["H1121"]],[26,28,["H3478"]],[28,31,["H6213"]],[31,35,["H4142"]],[35,37,["H4865"]],[37,39,["H2091"]]]},{"k":2305,"v":[[0,4,["H7760","(H853)"]],[4,6,["H8147"]],[6,7,["H68"]],[7,8,["H5921"]],[8,10,["H3802"]],[10,13,["H646"]],[13,15,["H68"]],[15,17,["H2146"]],[17,20,["H1121"]],[20,22,["H3478"]],[22,24,["H175"]],[24,26,["H5375","(H853)"]],[26,28,["H8034"]],[28,29,["H6440"]],[29,31,["H3068"]],[31,32,["H5921"]],[32,34,["H8147"]],[34,35,["H3802"]],[35,38,["H2146"]]]},{"k":2306,"v":[[0,4,["H6213"]],[4,5,["H4865"]],[5,7,["H2091"]]]},{"k":2307,"v":[[0,2,["H8147"]],[2,3,["H8333"]],[3,5,["H2889"]],[5,6,["H2091"]],[6,9,["H4020"]],[9,11,["H5688"]],[11,12,["H4639"]],[12,15,["H6213"]],[15,18,["H5414","(H853)"]],[18,20,["H5688"]],[20,21,["H8333"]],[21,22,["H5921"]],[22,24,["H4865"]]]},{"k":2308,"v":[[0,4,["H6213"]],[4,6,["H2833"]],[6,8,["H4941"]],[8,10,["H2803"]],[10,11,["H4639"]],[11,14,["H4639"]],[14,17,["H646"]],[17,20,["H6213"]],[20,23,["H2091"]],[23,25,["H8504"]],[25,28,["H713"]],[28,31,["H8438","H8144"]],[31,36,["H8336","H7806"]],[36,39,["H6213"]],[39,40,[]]]},{"k":2309,"v":[[0,1,["H7251"]],[1,4,["H1961"]],[4,6,["H3717"]],[6,8,["H2239"]],[8,12,["H753"]],[12,16,["H2239"]],[16,20,["H7341"]],[20,21,[]]]},{"k":2310,"v":[[0,4,["H4390"]],[4,7,["H4396"]],[7,9,["H68"]],[9,11,["H702"]],[11,12,["H2905"]],[12,14,["H68"]],[14,17,["H2905"]],[17,21,["H124"]],[21,23,["H6357"]],[23,26,["H1304"]],[26,31,["H259"]],[31,32,["H2905"]]]},{"k":2311,"v":[[0,3,["H8145"]],[3,4,["H2905"]],[4,8,["H5306"]],[8,10,["H5601"]],[10,13,["H3095"]]]},{"k":2312,"v":[[0,3,["H7992"]],[3,4,["H2905"]],[4,6,["H3958"]],[6,8,["H7618"]],[8,11,["H306"]]]},{"k":2313,"v":[[0,3,["H7243"]],[3,4,["H2905"]],[4,6,["H8658"]],[6,9,["H7718"]],[9,12,["H3471"]],[12,15,["H1961"]],[15,16,["H7660"]],[16,18,["H2091"]],[18,21,["H4396"]]]},{"k":2314,"v":[[0,3,["H68"]],[3,5,["H1961"]],[5,6,["H5921"]],[6,8,["H8034"]],[8,11,["H1121"]],[11,13,["H3478"]],[13,14,["H8147","H6240"]],[14,16,["H5921"]],[16,18,["H8034"]],[18,21,["H6603"]],[21,24,["H2368"]],[24,26,["H376"]],[26,27,["H5921"]],[27,29,["H8034"]],[29,32,["H1961"]],[32,36,["H8147","H6240"]],[36,37,["H7626"]]]},{"k":2315,"v":[[0,4,["H6213"]],[4,5,["H5921"]],[5,7,["H2833"]],[7,8,["H8331"]],[8,11,["H1383"]],[11,13,["H5688"]],[13,14,["H4639"]],[14,16,["H2889"]],[16,17,["H2091"]]]},{"k":2316,"v":[[0,4,["H6213"]],[4,5,["H5921"]],[5,7,["H2833"]],[7,8,["H8147"]],[8,9,["H2885"]],[9,11,["H2091"]],[11,14,["H5414","(H853)"]],[14,16,["H8147"]],[16,17,["H2885"]],[17,18,["H5921"]],[18,20,["H8147"]],[20,21,["H7098"]],[21,24,["H2833"]]]},{"k":2317,"v":[[0,4,["H5414","(H853)"]],[4,6,["H8147"]],[6,7,["H5688"]],[7,10,["H2091"]],[10,11,["H5921"]],[11,13,["H8147"]],[13,14,["H2885"]],[14,17,["H413"]],[17,19,["H7098"]],[19,22,["H2833"]]]},{"k":2318,"v":[[0,4,["H8147"]],[4,5,["H7098"]],[5,8,["H8147"]],[8,9,["H5688"]],[9,13,["H5414"]],[13,14,["H5921"]],[14,16,["H8147"]],[16,17,["H4865"]],[17,19,["H5414"]],[19,21,["H5921"]],[21,23,["H3802"]],[23,26,["H646"]],[26,27,["H413","H4136","H6440"]],[27,28,[]]]},{"k":2319,"v":[[0,4,["H6213"]],[4,5,["H8147"]],[5,6,["H2885"]],[6,8,["H2091"]],[8,12,["H7760"]],[12,14,["H5921"]],[14,16,["H8147"]],[16,17,["H7098"]],[17,20,["H2833"]],[20,21,["H5921"]],[21,23,["H8193"]],[23,25,["H834"]],[25,27,["H413"]],[27,29,["H5676"]],[29,32,["H646"]],[32,33,["H1004"]]]},{"k":2320,"v":[[0,2,["H8147"]],[2,4,["H2885"]],[4,6,["H2091"]],[6,9,["H6213"]],[9,12,["H5414"]],[12,14,["H5921"]],[14,16,["H8147"]],[16,17,["H3802"]],[17,20,["H646"]],[20,21,["H4480","H4295"]],[21,22,["H4480","H4136"]],[22,24,["H6440"]],[24,27,["H5980"]],[27,30,["H4225"]],[30,32,["H4480","H4605"]],[32,35,["H2805"]],[35,38,["H646"]]]},{"k":2321,"v":[[0,4,["H7405","(H853)"]],[4,6,["H2833"]],[6,9,["H4480","H2885"]],[9,11,["H413"]],[11,13,["H2885"]],[13,16,["H646"]],[16,19,["H6616"]],[19,21,["H8504"]],[21,25,["H1961"]],[25,26,["H5921"]],[26,29,["H2805"]],[29,32,["H646"]],[32,36,["H2833"]],[36,38,["H3808"]],[38,39,["H2118"]],[39,40,["H4480","H5921"]],[40,42,["H646"]]]},{"k":2322,"v":[[0,2,["H175"]],[2,4,["H5375","(H853)"]],[4,6,["H8034"]],[6,9,["H1121"]],[9,11,["H3478"]],[11,14,["H2833"]],[14,16,["H4941"]],[16,17,["H5921"]],[17,19,["H3820"]],[19,23,["H935"]],[23,24,["H413"]],[24,26,["H6944"]],[26,30,["H2146"]],[30,31,["H6440"]],[31,33,["H3068"]],[33,34,["H8548"]]]},{"k":2323,"v":[[0,4,["H5414"]],[4,5,["H413"]],[5,7,["H2833"]],[7,9,["H4941","(H853)"]],[9,11,["H224"]],[11,14,["H8550"]],[14,18,["H1961"]],[18,19,["H5921"]],[19,20,["H175"]],[20,21,["H3820"]],[21,25,["H935"]],[25,26,["H6440"]],[26,28,["H3068"]],[28,30,["H175"]],[30,32,["H5375","(H853)"]],[32,34,["H4941"]],[34,37,["H1121"]],[37,39,["H3478"]],[39,40,["H5921"]],[40,42,["H3820"]],[42,43,["H6440"]],[43,45,["H3068"]],[45,46,["H8548"]]]},{"k":2324,"v":[[0,4,["H6213","(H853)"]],[4,6,["H4598"]],[6,9,["H646"]],[9,10,["H3632"]],[10,12,["H8504"]]]},{"k":2325,"v":[[0,4,["H1961"]],[4,6,["H6310"]],[6,9,["H7218"]],[9,14,["H8432"]],[14,18,["H1961"]],[18,20,["H8193"]],[20,22,["H707"]],[22,23,["H4639"]],[23,25,["H5439"]],[25,27,["H6310"]],[27,34,["H6310"]],[34,37,["H8473"]],[37,40,["H1961"]],[40,41,["H3808"]],[41,42,["H7167"]]]},{"k":2326,"v":[[0,3,["H5921"]],[3,5,["H7757"]],[5,10,["H6213"]],[10,11,["H7416"]],[11,13,["H8504"]],[13,16,["H713"]],[16,19,["H8438","H8144"]],[19,21,["H5439","H5921"]],[21,23,["H7757"]],[23,26,["H6472"]],[26,28,["H2091"]],[28,29,["H8432"]],[29,32,["H5439"]]]},{"k":2327,"v":[[0,2,["H2091"]],[2,3,["H6472"]],[3,6,["H7416"]],[6,8,["H2091"]],[8,9,["H6472"]],[9,12,["H7416"]],[12,13,["H5921"]],[13,15,["H7757"]],[15,18,["H4598"]],[18,20,["H5439"]]]},{"k":2328,"v":[[0,4,["H1961"]],[4,5,["H5921"]],[5,6,["H175"]],[6,8,["H8334"]],[8,11,["H6963"]],[11,14,["H8085"]],[14,18,["H935"]],[18,19,["H413"]],[19,21,["H6944"]],[21,23,["H6440"]],[23,25,["H3068"]],[25,30,["H3318"]],[30,33,["H4191"]],[33,34,["H3808"]]]},{"k":2329,"v":[[0,4,["H6213"]],[4,6,["H6731"]],[6,8,["H2889"]],[8,9,["H2091"]],[9,11,["H6605"]],[11,12,["H5921"]],[12,16,["H6603"]],[16,19,["H2368"]],[19,20,["H6944"]],[20,23,["H3068"]]]},{"k":2330,"v":[[0,4,["H7760"]],[4,6,["H5921"]],[6,8,["H8504"]],[8,9,["H6616"]],[9,13,["H1961"]],[13,14,["H5921"]],[14,16,["H4701"]],[16,17,["H413"]],[17,19,["H4136","H6440"]],[19,22,["H4701"]],[22,25,["H1961"]]]},{"k":2331,"v":[[0,4,["H1961"]],[4,5,["H5921"]],[5,6,["H175"]],[6,7,["H4696"]],[7,9,["H175"]],[9,11,["H5375","(H853)"]],[11,13,["H5771"]],[13,17,["H6944"]],[17,18,["H834"]],[18,20,["H1121"]],[20,22,["H3478"]],[22,24,["H6942"]],[24,26,["H3605"]],[26,28,["H6944"]],[28,29,["H4979"]],[29,33,["H1961"]],[33,34,["H8548"]],[34,35,["H5921"]],[35,37,["H4696"]],[37,42,["H7522"]],[42,43,["H6440"]],[43,45,["H3068"]]]},{"k":2332,"v":[[0,4,["H7660"]],[4,6,["H3801"]],[6,9,["H8336"]],[9,13,["H6213"]],[13,15,["H4701"]],[15,18,["H8336"]],[18,22,["H6213"]],[22,24,["H73"]],[24,26,["H4639","H7551"]]]},{"k":2333,"v":[[0,3,["H175"]],[3,4,["H1121"]],[4,7,["H6213"]],[7,8,["H3801"]],[8,12,["H6213"]],[12,15,["H73"]],[15,17,["H4021"]],[17,20,["H6213"]],[20,24,["H3519"]],[24,27,["H8597"]]]},{"k":2334,"v":[[0,6,["H3847","(H853)","(H853)"]],[6,7,["H175"]],[7,9,["H251"]],[9,12,["H1121"]],[12,13,["H854"]],[13,17,["H4886"]],[17,20,["H4390","(H853)","H3027"]],[20,23,["H6942"]],[23,34,["H3547"]]]},{"k":2335,"v":[[0,4,["H6213"]],[4,6,["H906"]],[6,7,["H4370"]],[7,9,["H3680"]],[9,11,["H1320","H6172"]],[11,14,["H4480","H4975"]],[14,16,["H5704"]],[16,18,["H3409"]],[18,21,["H1961"]]]},{"k":2336,"v":[[0,4,["H1961"]],[4,5,["H5921"]],[5,6,["H175"]],[6,8,["H5921"]],[8,10,["H1121"]],[10,14,["H935"]],[14,15,["H413"]],[15,17,["H168"]],[17,20,["H4150"]],[20,21,["H176"]],[21,25,["H5066"]],[25,26,["H413"]],[26,28,["H4196"]],[28,30,["H8334"]],[30,33,["H6944"]],[33,37,["H5375"]],[37,38,["H3808"]],[38,39,["H5771"]],[39,41,["H4191"]],[41,46,["H2708"]],[46,48,["H5769"]],[48,53,["H2233"]],[53,54,["H310"]],[54,55,[]]]},{"k":2337,"v":[[0,2,["H2088"]],[2,5,["H1697"]],[5,6,["H834"]],[6,9,["H6213"]],[9,13,["H6942"]],[13,22,["H3547"]],[22,23,["H3947"]],[23,24,["H259"]],[24,25,["H1121","H1241"]],[25,26,["H6499"]],[26,28,["H8147"]],[28,29,["H352"]],[29,31,["H8549"]]]},{"k":2338,"v":[[0,2,["H4682"]],[2,3,["H3899"]],[3,5,["H2471"]],[5,6,["H4682"]],[6,7,["H1101"]],[7,9,["H8081"]],[9,11,["H7550"]],[11,12,["H4682"]],[12,13,["H4886"]],[13,15,["H8081"]],[15,17,["H2406"]],[17,18,["H5560"]],[18,21,["H6213"]],[21,22,[]]]},{"k":2339,"v":[[0,4,["H5414"]],[4,6,["H5921"]],[6,7,["H259"]],[7,8,["H5536"]],[8,10,["H7126"]],[10,14,["H5536"]],[14,17,["H6499"]],[17,20,["H8147"]],[20,21,["H352"]]]},{"k":2340,"v":[[0,2,["H175"]],[2,5,["H1121"]],[5,8,["H7126"]],[8,9,["H413"]],[9,11,["H6607"]],[11,14,["H168"]],[14,17,["H4150"]],[17,20,["H7364"]],[20,23,["H4325"]]]},{"k":2341,"v":[[0,4,["H3947","(H853)"]],[4,6,["H899"]],[6,9,["H3847","(H853)"]],[9,10,["H175","(H853)"]],[10,12,["H3801"]],[12,15,["H4598"]],[15,18,["H646"]],[18,21,["H646"]],[21,24,["H2833"]],[24,26,["H640"]],[26,31,["H2805"]],[31,34,["H646"]]]},{"k":2342,"v":[[0,4,["H7760"]],[4,6,["H4701"]],[6,7,["H5921"]],[7,9,["H7218"]],[9,11,["H5414","(H853)"]],[11,13,["H6944"]],[13,14,["H5145"]],[14,15,["H5921"]],[15,17,["H4701"]]]},{"k":2343,"v":[[0,4,["H3947","(H853)"]],[4,6,["H4888"]],[6,7,["H8081"]],[7,9,["H3332"]],[9,11,["H5921"]],[11,13,["H7218"]],[13,15,["H4886"]],[15,16,[]]]},{"k":2344,"v":[[0,4,["H7126"]],[4,6,["H1121"]],[6,10,["H3847","H3801"]],[10,11,[]]]},{"k":2345,"v":[[0,4,["H2296"]],[4,7,["H73"]],[7,8,["H175"]],[8,11,["H1121"]],[11,13,["H2280"]],[13,15,["H4021"]],[15,21,["H3550"]],[21,23,["H1961"]],[23,27,["H5769"]],[27,28,["H2708"]],[28,32,["H4390","H3027"]],[32,33,["H175"]],[33,36,["H1121"]]]},{"k":2346,"v":[[0,4,["(H853)"]],[4,6,["H6499"]],[6,9,["H7126"]],[9,10,["H6440"]],[10,12,["H168"]],[12,15,["H4150"]],[15,17,["H175"]],[17,20,["H1121"]],[20,22,["H5564","(H853)"]],[22,24,["H3027"]],[24,25,["H5921"]],[25,27,["H7218"]],[27,30,["H6499"]]]},{"k":2347,"v":[[0,4,["H7819","(H853)"]],[4,6,["H6499"]],[6,7,["H6440"]],[7,9,["H3068"]],[9,12,["H6607"]],[12,15,["H168"]],[15,18,["H4150"]]]},{"k":2348,"v":[[0,4,["H3947"]],[4,7,["H4480","H1818"]],[7,10,["H6499"]],[10,12,["H5414"]],[12,14,["H5921"]],[14,16,["H7161"]],[16,19,["H4196"]],[19,22,["H676"]],[22,24,["H8210"]],[24,25,["H3605"]],[25,27,["H1818"]],[27,28,["H413"]],[28,30,["H3247"]],[30,33,["H4196"]]]},{"k":2349,"v":[[0,4,["H3947","(H853)"]],[4,5,["H3605"]],[5,7,["H2459"]],[7,9,["H3680","(H853)"]],[9,11,["H7130"]],[11,14,["H3508"]],[14,17,["H5921"]],[17,19,["H3516"]],[19,22,["H8147"]],[22,23,["H3629"]],[23,26,["H2459"]],[26,27,["H834"]],[27,29,["H5921"]],[29,32,["H6999"]],[32,36,["H4196"]]]},{"k":2350,"v":[[0,3,["H1320"]],[3,6,["H6499"]],[6,9,["H5785"]],[9,12,["H6569"]],[12,15,["H8313"]],[15,17,["H784"]],[17,18,["H4480","H2351"]],[18,20,["H4264"]],[20,21,["H1931"]],[21,25,["H2403"]]]},{"k":2351,"v":[[0,4,["H3947"]],[4,5,["H259"]],[5,6,["H352"]],[6,8,["H175"]],[8,11,["H1121"]],[11,13,["H5564","(H853)"]],[13,15,["H3027"]],[15,16,["H5921"]],[16,18,["H7218"]],[18,21,["H352"]]]},{"k":2352,"v":[[0,4,["H7819","(H853)"]],[4,6,["H352"]],[6,10,["H3947","(H853)"]],[10,12,["H1818"]],[12,14,["H2236"]],[14,17,["H5439"]],[17,18,["H5921"]],[18,20,["H4196"]]]},{"k":2353,"v":[[0,4,["H5408"]],[4,6,["H352"]],[6,8,["H5409"]],[8,10,["H7364"]],[10,12,["H7130"]],[12,17,["H3767"]],[17,19,["H5414"]],[19,21,["H5921"]],[21,23,["H5409"]],[23,25,["H5921"]],[25,27,["H7218"]]]},{"k":2354,"v":[[0,4,["H6999","(H853)"]],[4,6,["H3605"]],[6,7,["H352"]],[7,10,["H4196"]],[10,11,["H1931"]],[11,15,["H5930"]],[15,18,["H3068"]],[18,22,["H5207"]],[22,23,["H7381"]],[23,28,["H801"]],[28,31,["H3068"]]]},{"k":2355,"v":[[0,4,["H3947","(H853)"]],[4,6,["H8145"]],[6,7,["H352"]],[7,9,["H175"]],[9,12,["H1121"]],[12,14,["H5564","(H853)"]],[14,16,["H3027"]],[16,17,["H5921"]],[17,19,["H7218"]],[19,22,["H352"]]]},{"k":2356,"v":[[0,4,["H7819","(H853)"]],[4,6,["H352"]],[6,8,["H3947"]],[8,11,["H4480","H1818"]],[11,13,["H5414"]],[13,15,["H5921"]],[15,17,["H8571"]],[17,21,["H241"]],[21,23,["H175"]],[23,25,["H5921"]],[25,27,["H8571"]],[27,30,["H3233"]],[30,31,["H241"]],[31,34,["H1121"]],[34,36,["H5921"]],[36,38,["H931"]],[38,41,["H3233"]],[41,42,["H3027"]],[42,44,["H5921"]],[44,47,["H931"]],[47,50,["H3233"]],[50,51,["H7272"]],[51,53,["H2236","(H853)"]],[53,55,["H1818"]],[55,56,["H5921"]],[56,58,["H4196"]],[58,60,["H5439"]]]},{"k":2357,"v":[[0,4,["H3947"]],[4,5,["H4480"]],[5,7,["H1818"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H4196"]],[12,17,["H4480","H8081","H4888"]],[17,19,["H5137"]],[19,21,["H5921"]],[21,22,["H175"]],[22,24,["H5921"]],[24,26,["H899"]],[26,28,["H5921"]],[28,30,["H1121"]],[30,32,["H5921"]],[32,34,["H899"]],[34,37,["H1121"]],[37,38,["H854"]],[38,41,["H1931"]],[41,44,["H6942"]],[44,47,["H899"]],[47,50,["H1121"]],[50,53,["H1121"]],[53,54,["H899"]],[54,55,["H854"]],[55,56,[]]]},{"k":2358,"v":[[0,4,["H3947"]],[4,5,["H4480"]],[5,7,["H352"]],[7,9,["H2459"]],[9,12,["H451"]],[12,15,["H2459"]],[15,17,["H3680","(H853)"]],[17,19,["H7130"]],[19,22,["H3508"]],[22,25,["H3516"]],[25,28,["H8147"]],[28,29,["H3629"]],[29,32,["H2459"]],[32,33,["H834"]],[33,35,["H5921"]],[35,39,["H3225"]],[39,40,["H7785"]],[40,41,["H3588"]],[41,42,["H1931"]],[42,45,["H352"]],[45,47,["H4394"]]]},{"k":2359,"v":[[0,2,["H259"]],[2,3,["H3603"]],[3,5,["H3899"]],[5,7,["H259"]],[7,8,["H2471"]],[8,10,["H8081"]],[10,11,["H3899"]],[11,13,["H259"]],[13,14,["H7550"]],[14,18,["H4480","H5536"]],[18,22,["H4682"]],[22,23,["H834"]],[23,25,["H6440"]],[25,27,["H3068"]]]},{"k":2360,"v":[[0,4,["H7760"]],[4,5,["H3605"]],[5,6,["H5921"]],[6,8,["H3709"]],[8,10,["H175"]],[10,12,["H5921"]],[12,14,["H3709"]],[14,17,["H1121"]],[17,20,["H5130"]],[20,25,["H8573"]],[25,26,["H6440"]],[26,28,["H3068"]]]},{"k":2361,"v":[[0,4,["H3947"]],[4,8,["H4480","H3027"]],[8,10,["H6999"]],[10,14,["H4196"]],[14,15,["H5921"]],[15,18,["H5930"]],[18,21,["H5207"]],[21,22,["H7381"]],[22,23,["H6440"]],[23,25,["H3068"]],[25,26,["H1931"]],[26,32,["H801"]],[32,35,["H3068"]]]},{"k":2362,"v":[[0,4,["H3947","(H853)"]],[4,6,["H2373"]],[6,9,["H4480","H352"]],[9,11,["H175"]],[11,12,["H4394"]],[12,14,["H5130"]],[14,19,["H8573"]],[19,20,["H6440"]],[20,22,["H3068"]],[22,26,["H1961"]],[26,28,["H4490"]]]},{"k":2363,"v":[[0,4,["H6942","(H853)"]],[4,6,["H2373"]],[6,10,["H8573"]],[10,13,["H7785"]],[13,17,["H8641"]],[17,18,["H834"]],[18,20,["H5130"]],[20,22,["H834"]],[22,25,["H7311"]],[25,28,["H4480","H352"]],[28,31,["H4394"]],[31,35,["H4480","H834"]],[35,38,["H175"]],[38,42,["H4480","H834"]],[42,46,["H1121"]]]},{"k":2364,"v":[[0,4,["H1961"]],[4,5,["H175"]],[5,8,["H1121"]],[8,11,["H2706"]],[11,13,["H5769"]],[13,14,["H4480","H854"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,19,["H3588"]],[19,20,["H1931"]],[20,24,["H8641"]],[24,28,["H1961"]],[28,31,["H8641"]],[31,32,["H4480","H854"]],[32,34,["H1121"]],[34,36,["H3478"]],[36,39,["H4480","H2077"]],[39,43,["H8002"]],[43,47,["H8641"]],[47,50,["H3068"]]]},{"k":2365,"v":[[0,3,["H6944"]],[3,4,["H899"]],[4,6,["H175"]],[6,8,["H1961"]],[8,10,["H1121"]],[10,11,["H310"]],[11,15,["H4886"]],[15,20,["H4390","(H853)","H3027"]],[20,22,[]]]},{"k":2366,"v":[[0,3,["H4480","H1121"]],[3,6,["H3548"]],[6,9,["H8478"]],[9,13,["H3847"]],[13,14,["H7651"]],[14,15,["H3117"]],[15,16,["H834"]],[16,18,["H935"]],[18,19,["H413"]],[19,21,["H168"]],[21,24,["H4150"]],[24,26,["H8334"]],[26,29,["H6944"]],[29,30,[]]]},{"k":2367,"v":[[0,4,["H3947"]],[4,6,["H352"]],[6,9,["H4394"]],[9,11,["H1310","(H853)"]],[11,13,["H1320"]],[13,16,["H6918"]],[16,17,["H4725"]]]},{"k":2368,"v":[[0,2,["H175"]],[2,5,["H1121"]],[5,7,["H398","(H853)"]],[7,9,["H1320"]],[9,12,["H352"]],[12,15,["H3899"]],[15,16,["H834"]],[16,20,["H5536"]],[20,23,["H6607"]],[23,26,["H168"]],[26,29,["H4150"]]]},{"k":2369,"v":[[0,4,["H398"]],[4,7,["H834"]],[7,11,["H3722"]],[11,13,["H4390","(H853)","H3027"]],[13,16,["H6942"]],[16,20,["H2114"]],[20,22,["H3808"]],[22,23,["H398"]],[23,25,["H3588"]],[25,26,["H1992"]],[26,28,["H6944"]]]},{"k":2370,"v":[[0,2,["H518"]],[2,6,["H4480","H1320"]],[6,9,["H4394"]],[9,11,["H4480"]],[11,13,["H3899"]],[13,14,["H3498"]],[14,15,["H5704"]],[15,17,["H1242"]],[17,21,["H8313","(H853)"]],[21,23,["H3498"]],[23,25,["H784"]],[25,28,["H3808"]],[28,30,["H398"]],[30,31,["H3588"]],[31,32,["H1931"]],[32,34,["H6944"]]]},{"k":2371,"v":[[0,2,["H3602"]],[2,5,["H6213"]],[5,7,["H175"]],[7,11,["H1121"]],[11,14,["H3605"]],[14,16,["H834"]],[16,19,["H6680"]],[19,21,["H7651"]],[21,22,["H3117"]],[22,25,["H4390","H3027"]],[25,26,[]]]},{"k":2372,"v":[[0,4,["H6213"]],[4,6,["H3117"]],[6,8,["H6499"]],[8,12,["H2403"]],[12,13,["H5921"]],[13,14,["H3725"]],[14,18,["H2398","H5921"]],[18,20,["H4196"]],[20,26,["H3722"]],[26,27,["H5921"]],[27,32,["H4886"]],[32,35,["H6942"]],[35,36,[]]]},{"k":2373,"v":[[0,1,["H7651"]],[1,2,["H3117"]],[2,7,["H3722"]],[7,8,["H5921"]],[8,10,["H4196"]],[10,12,["H6942"]],[12,17,["H1961"]],[17,19,["H4196"]],[19,21,["H6944","H6944"]],[21,22,["H3605"]],[22,23,["H5060"]],[23,25,["H4196"]],[25,28,["H6942"]]]},{"k":2374,"v":[[0,2,["H2088"]],[2,5,["H834"]],[5,8,["H6213"]],[8,9,["H5921"]],[9,11,["H4196"]],[11,12,["H8147"]],[12,13,["H3532"]],[13,16,["H1121"]],[16,17,["H8141"]],[17,20,["H3117"]],[20,21,["H8548"]]]},{"k":2375,"v":[[0,0,["(H853)"]],[0,2,["H259"]],[2,3,["H3532"]],[3,6,["H6213"]],[6,9,["H1242"]],[9,12,["H8145"]],[12,13,["H3532"]],[13,16,["H6213"]],[16,17,["H996"]],[17,18,["H6153"]]]},{"k":2376,"v":[[0,4,["H259"]],[4,5,["H3532"]],[5,8,["H6241"]],[8,10,["H5560"]],[10,11,["H1101"]],[11,15,["H7253"]],[15,18,["H1969"]],[18,20,["H3795"]],[20,21,["H8081"]],[21,25,["H7243"]],[25,28,["H1969"]],[28,30,["H3196"]],[30,34,["H5262"]]]},{"k":2377,"v":[[0,3,["H8145"]],[3,4,["H3532"]],[4,7,["H6213"]],[7,8,["H996"]],[8,9,["H6153"]],[9,12,["H6213"]],[12,18,["H4503"]],[18,21,["H1242"]],[21,27,["H5262"]],[27,31,["H5207"]],[31,32,["H7381"]],[32,37,["H801"]],[37,40,["H3068"]]]},{"k":2378,"v":[[0,5,["H8548"]],[5,7,["H5930"]],[7,10,["H1755"]],[10,13,["H6607"]],[13,16,["H168"]],[16,19,["H4150"]],[19,20,["H6440"]],[20,22,["H3068"]],[22,23,["H834","H8033"]],[23,26,["H3259"]],[26,29,["H1696"]],[29,30,["H8033"]],[30,31,["H413"]],[31,32,[]]]},{"k":2379,"v":[[0,2,["H8033"]],[2,5,["H3259"]],[5,8,["H1121"]],[8,10,["H3478"]],[10,16,["H6942"]],[16,19,["H3519"]]]},{"k":2380,"v":[[0,4,["H6942","(H853)"]],[4,6,["H168"]],[6,9,["H4150"]],[9,12,["H4196"]],[12,15,["H6942"]],[15,18,["H175"]],[18,21,["H1121"]],[21,29,["H3547"]]]},{"k":2381,"v":[[0,4,["H7931"]],[4,5,["H8432"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,12,["H1961"]],[12,14,["H430"]]]},{"k":2382,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,11,["H430"]],[11,12,["H834"]],[12,15,["H3318","(H853)"]],[15,19,["H4480","H776"]],[19,21,["H4714"]],[21,25,["H7931"]],[25,26,["H8432"]],[26,28,["H589"]],[28,31,["H3068"]],[31,33,["H430"]]]},{"k":2383,"v":[[0,4,["H6213"]],[4,6,["H4196"]],[6,8,["H4729"]],[8,9,["H7004"]],[9,12,["H7848"]],[12,13,["H6086"]],[13,16,["H6213"]],[16,17,[]]]},{"k":2384,"v":[[0,2,["H520"]],[2,6,["H753"]],[6,10,["H520"]],[10,12,["H7341"]],[12,14,["H7251"]],[14,17,["H1961"]],[17,20,["H520"]],[20,24,["H6967"]],[24,27,["H7161"]],[27,31,["H4480"]],[31,33,[]]]},{"k":2385,"v":[[0,4,["H6823"]],[4,7,["H2889"]],[7,8,["H2091","(H853)"]],[8,10,["H1406"]],[10,14,["H7023"]],[14,17,["H5439"]],[17,20,["H7161"]],[20,25,["H6213"]],[25,29,["H2213"]],[29,31,["H2091"]],[31,33,["H5439"]]]},{"k":2386,"v":[[0,2,["H8147"]],[2,3,["H2091"]],[3,4,["H2885"]],[4,7,["H6213"]],[7,10,["H4480","H8478"]],[10,12,["H2213"]],[12,15,["H5921"]],[15,17,["H8147"]],[17,18,["H6763"]],[18,20,["H5921"]],[20,22,["H8147"]],[22,23,["H6654"]],[23,28,["H6213"]],[28,33,["H1961"]],[33,35,["H1004"]],[35,38,["H905"]],[38,40,["H5375"]],[40,42,["H1992"]]]},{"k":2387,"v":[[0,4,["H6213","(H853)"]],[4,6,["H905"]],[6,8,["H7848"]],[8,9,["H6086"]],[9,11,["H6823"]],[11,14,["H2091"]]]},{"k":2388,"v":[[0,4,["H5414"]],[4,6,["H6440"]],[6,8,["H6532"]],[8,9,["H834"]],[9,11,["H5921"]],[11,13,["H727"]],[13,16,["H5715"]],[16,17,["H6440"]],[17,20,["H3727"]],[20,21,["H834"]],[21,23,["H5921"]],[23,25,["H5715"]],[25,26,["H834","H8033"]],[26,29,["H3259"]],[29,31,[]]]},{"k":2389,"v":[[0,2,["H175"]],[2,4,["H6999"]],[4,5,["H5921"]],[5,6,["H5561"]],[6,7,["H7004"]],[7,9,["H1242","H1242"]],[9,12,["H3190","(H853)"]],[12,14,["H5216"]],[14,18,["H6999"]],[18,20,[]]]},{"k":2390,"v":[[0,3,["H175"]],[3,4,["H5927","(H853)"]],[4,6,["H5216"]],[6,7,["H996"]],[7,8,["H6153"]],[8,12,["H6999"]],[12,16,["H8548"]],[16,17,["H7004"]],[17,18,["H6440"]],[18,20,["H3068"]],[20,23,["H1755"]]]},{"k":2391,"v":[[0,3,["H5927"]],[3,4,["H3808"]],[4,5,["H2114"]],[5,6,["H7004"]],[6,7,["H5921"]],[7,10,["H5930"]],[10,13,["H4503"]],[13,14,["H3808"]],[14,17,["H5258"]],[17,19,["H5262"]],[19,20,["H5921"]]]},{"k":2392,"v":[[0,2,["H175"]],[2,6,["H3722"]],[6,7,["H5921"]],[7,9,["H7161"]],[9,12,["H259"]],[12,15,["H8141"]],[15,18,["H4480","H1818"]],[18,22,["H2403"]],[22,24,["H3725"]],[24,25,["H259"]],[25,28,["H8141"]],[28,32,["H3722"]],[32,33,["H5921"]],[33,37,["H1755"]],[37,38,["H1931"]],[38,41,["H6944","H6944"]],[41,44,["H3068"]]]},{"k":2393,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2394,"v":[[0,1,["H3588"]],[1,3,["H5375","(H853)"]],[3,5,["H7218"]],[5,8,["H1121"]],[8,10,["H3478"]],[10,13,["H6485"]],[13,17,["H5414"]],[17,19,["H376"]],[19,21,["H3724"]],[21,24,["H5315"]],[24,27,["H3068"]],[27,30,["H6485"]],[30,34,["H1961"]],[34,35,["H3808"]],[35,36,["H5063"]],[36,41,["H6485"]],[41,42,[]]]},{"k":2395,"v":[[0,1,["H2088"]],[1,4,["H5414"]],[4,6,["H3605"]],[6,8,["H5674"]],[8,9,["H5921"]],[9,13,["H6485"]],[13,14,["H4276"]],[14,16,["H8255"]],[16,19,["H8255"]],[19,22,["H6944"]],[22,24,["H8255"]],[24,26,["H6242"]],[26,27,["H1626"]],[27,29,["H4276"]],[29,30,["H8255"]],[30,34,["H8641"]],[34,37,["H3068"]]]},{"k":2396,"v":[[0,2,["H3605"]],[2,4,["H5674"]],[4,5,["H5921"]],[5,9,["H6485"]],[9,11,["H6242"]],[11,12,["H8141"]],[12,13,["H4480","H1121"]],[13,15,["H4605"]],[15,17,["H5414"]],[17,19,["H8641"]],[19,22,["H3068"]]]},{"k":2397,"v":[[0,2,["H6223"]],[2,4,["H3808"]],[4,6,["H7235"]],[6,9,["H1800"]],[9,11,["H3808"]],[11,13,["H4591"]],[13,15,["H4480","H4276"]],[15,17,["H8255"]],[17,20,["H5414","(H853)"]],[20,22,["H8641"]],[22,25,["H3068"]],[25,29,["H3722"]],[29,30,["H5921"]],[30,32,["H5315"]]]},{"k":2398,"v":[[0,4,["H3947","(H853)"]],[4,6,["H3725"]],[6,7,["H3701"]],[7,8,["H4480","H854"]],[8,10,["H1121"]],[10,12,["H3478"]],[12,15,["H5414"]],[15,17,["H5921"]],[17,19,["H5656"]],[19,22,["H168"]],[22,25,["H4150"]],[25,29,["H1961"]],[29,31,["H2146"]],[31,34,["H1121"]],[34,36,["H3478"]],[36,37,["H6440"]],[37,39,["H3068"]],[39,43,["H3722"]],[43,44,["H5921"]],[44,46,["H5315"]]]},{"k":2399,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2400,"v":[[0,4,["H6213"]],[4,6,["H3595"]],[6,8,["H5178"]],[8,11,["H3653"]],[11,14,["H5178"]],[14,16,["H7364"]],[16,21,["H5414"]],[21,23,["H996"]],[23,25,["H168"]],[25,28,["H4150"]],[28,31,["H4196"]],[31,35,["H5414"]],[35,36,["H4325"]],[36,37,["H8033"]]]},{"k":2401,"v":[[0,2,["H175"]],[2,5,["H1121"]],[5,7,["H7364","(H853)"]],[7,9,["H3027"]],[9,12,["H7272"]],[12,13,["H4480"]]]},{"k":2402,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H168"]],[6,9,["H4150"]],[9,12,["H7364"]],[12,14,["H4325"]],[14,17,["H4191"]],[17,18,["H3808"]],[18,19,["H176"]],[19,23,["H5066"]],[23,24,["H413"]],[24,26,["H4196"]],[26,28,["H8334"]],[28,30,["H6999"]],[30,34,["H801"]],[34,37,["H3068"]]]},{"k":2403,"v":[[0,4,["H7364"]],[4,6,["H3027"]],[6,9,["H7272"]],[9,12,["H4191"]],[12,13,["H3808"]],[13,17,["H1961"]],[17,19,["H2706"]],[19,21,["H5769"]],[21,30,["H2233"]],[30,33,["H1755"]]]},{"k":2404,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2405,"v":[[0,1,["H3947"]],[1,2,["H859"]],[2,6,["H7218"]],[6,7,["H1314"]],[7,9,["H1865"]],[9,10,["H4753"]],[10,11,["H2568"]],[11,12,["H3967"]],[12,16,["H1314"]],[16,17,["H7076"]],[17,20,["H4276"]],[20,23,["H3967"]],[23,25,["H2572"]],[25,29,["H1314"]],[29,30,["H7070"]],[30,32,["H3967"]],[32,34,["H2572"]],[34,35,[]]]},{"k":2406,"v":[[0,3,["H6916"]],[3,4,["H2568"]],[4,5,["H3967"]],[5,9,["H8255"]],[9,12,["H6944"]],[12,15,["H8081"]],[15,16,["H2132"]],[16,18,["H1969"]]]},{"k":2407,"v":[[0,4,["H6213"]],[4,7,["H8081"]],[7,9,["H6944"]],[9,10,["H4888"]],[10,12,["H7545"]],[12,13,["H4842"]],[13,16,["H4639"]],[16,19,["H7543"]],[19,22,["H1961"]],[22,24,["H6944"]],[24,25,["H4888"]],[25,26,["H8081"]]]},{"k":2408,"v":[[0,4,["H4886","(H853)"]],[4,6,["H168"]],[6,9,["H4150"]],[9,13,["H727"]],[13,16,["H5715"]]]},{"k":2409,"v":[[0,3,["H7979"]],[3,5,["H3605"]],[5,7,["H3627"]],[7,10,["H4501"]],[10,13,["H3627"]],[13,16,["H4196"]],[16,18,["H7004"]]]},{"k":2410,"v":[[0,3,["H4196"]],[3,6,["H5930"]],[6,8,["H3605"]],[8,10,["H3627"]],[10,13,["H3595"]],[13,16,["H3653"]]]},{"k":2411,"v":[[0,4,["H6942"]],[4,9,["H1961"]],[9,11,["H6944","H6944"]],[11,12,["H3605"]],[12,13,["H5060"]],[13,17,["H6942"]]]},{"k":2412,"v":[[0,4,["H4886"]],[4,5,["H175"]],[5,8,["H1121"]],[8,10,["H6942"]],[10,21,["H3547"]]]},{"k":2413,"v":[[0,4,["H1696"]],[4,5,["H413"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,10,["H559"]],[10,11,["H2088"]],[11,13,["H1961"]],[13,15,["H6944"]],[15,16,["H4888"]],[16,17,["H8081"]],[17,22,["H1755"]]]},{"k":2414,"v":[[0,1,["H5921"]],[1,2,["H120"]],[2,3,["H1320"]],[3,6,["H3808"]],[6,8,["H3251"]],[8,9,["H3808"]],[9,12,["H6213"]],[12,16,["H3644"]],[16,19,["H4971"]],[19,22,["H1931"]],[22,24,["H6944"]],[24,28,["H1961"]],[28,29,["H6944"]],[29,31,[]]]},{"k":2415,"v":[[0,1,["H376","H834"]],[1,2,["H7543"]],[2,5,["H3644"]],[5,7,["H834"]],[7,8,["H5414"]],[8,10,["H4480"]],[10,12,["H5921"]],[12,14,["H2114"]],[14,19,["H3772"]],[19,22,["H4480","H5971"]]]},{"k":2416,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H3947"]],[7,11,["H5561"]],[11,12,["H5198"]],[12,14,["H7827"]],[14,16,["H2464"]],[16,19,["H5561"]],[19,21,["H2134"]],[21,22,["H3828"]],[22,24,["H905"]],[24,27,["H1961"]],[27,29,["H905"]],[29,30,[]]]},{"k":2417,"v":[[0,4,["H6213"]],[4,7,["H7004"]],[7,9,["H7545"]],[9,12,["H4639"]],[12,15,["H7543"]],[15,17,["H4414"]],[17,18,["H2889"]],[18,20,["H6944"]]]},{"k":2418,"v":[[0,4,["H7833"]],[4,6,["H4480"]],[6,9,["H1854"]],[9,11,["H5414"]],[11,12,["H4480"]],[12,14,["H6440"]],[14,16,["H5715"]],[16,19,["H168"]],[19,22,["H4150"]],[22,23,["H834","H8033"]],[23,26,["H3259"]],[26,31,["H1961"]],[31,35,["H6944","H6944"]]]},{"k":2419,"v":[[0,5,["H7004"]],[5,6,["H834"]],[6,9,["H6213"]],[9,12,["H3808"]],[12,13,["H6213"]],[13,19,["H4971"]],[19,23,["H1961"]],[23,26,["H6944"]],[26,29,["H3068"]]]},{"k":2420,"v":[[0,1,["H376","H834"]],[1,3,["H6213"]],[3,6,["H3644"]],[6,8,["H7306"]],[8,14,["H3772"]],[14,17,["H4480","H5971"]]]},{"k":2421,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2422,"v":[[0,1,["H7200"]],[1,4,["H7121"]],[4,6,["H8034"]],[6,7,["H1212"]],[7,9,["H1121"]],[9,11,["H221"]],[11,13,["H1121"]],[13,15,["H2354"]],[15,18,["H4294"]],[18,20,["H3063"]]]},{"k":2423,"v":[[0,4,["H4390"]],[4,8,["H7307"]],[8,10,["H430"]],[10,12,["H2451"]],[12,15,["H8394"]],[15,18,["H1847"]],[18,22,["H3605"]],[22,24,["H4399"]]]},{"k":2424,"v":[[0,2,["H2803"]],[2,4,["H4284"]],[4,6,["H6213"]],[6,8,["H2091"]],[8,11,["H3701"]],[11,14,["H5178"]]]},{"k":2425,"v":[[0,3,["H2799"]],[3,5,["H68"]],[5,7,["H4390"]],[7,11,["H2799"]],[11,13,["H6086"]],[13,15,["H6213"]],[15,18,["H3605"]],[18,20,["H4399"]]]},{"k":2426,"v":[[0,2,["H589"]],[2,3,["H2009"]],[3,6,["H5414"]],[6,7,["H854"]],[7,8,["(H853)"]],[8,9,["H171"]],[9,11,["H1121"]],[11,13,["H294"]],[13,16,["H4294"]],[16,18,["H1835"]],[18,22,["H3820"]],[22,24,["H3605"]],[24,27,["H2450"]],[27,28,["H3820"]],[28,31,["H5414"]],[31,32,["H2451"]],[32,36,["H6213","(H853)"]],[36,37,["H3605"]],[37,38,["H834"]],[38,41,["H6680"]],[41,42,[]]]},{"k":2427,"v":[[0,0,["(H853)"]],[0,2,["H168"]],[2,5,["H4150"]],[5,8,["H727"]],[8,11,["H5715"]],[11,15,["H3727"]],[15,16,["H834"]],[16,18,["H5921"]],[18,20,["H3605"]],[20,22,["H3627"]],[22,25,["H168"]]]},{"k":2428,"v":[[0,3,["H7979"]],[3,6,["H3627"]],[6,9,["H2889"]],[9,10,["H4501"]],[10,12,["H3605"]],[12,14,["H3627"]],[14,17,["H4196"]],[17,19,["H7004"]]]},{"k":2429,"v":[[0,3,["H4196"]],[3,6,["H5930"]],[6,8,["H3605"]],[8,10,["H3627"]],[10,13,["H3595"]],[13,16,["H3653"]]]},{"k":2430,"v":[[0,3,["H899"]],[3,5,["H8278"]],[5,8,["H6944"]],[8,9,["H899"]],[9,11,["H175"]],[11,13,["H3548"]],[13,16,["H899"]],[16,19,["H1121"]],[19,25,["H3547"]]]},{"k":2431,"v":[[0,3,["H4888"]],[3,4,["H8081"]],[4,6,["H5561"]],[6,7,["H7004"]],[7,10,["H6944"]],[10,14,["H3605"]],[14,15,["H834"]],[15,18,["H6680"]],[18,22,["H6213"]]]},{"k":2432,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2433,"v":[[0,1,["H1696"]],[1,2,["H859"]],[2,4,["H413"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,9,["H559"]],[9,10,["H389","(H853)"]],[10,12,["H7676"]],[12,15,["H8104"]],[15,16,["H3588"]],[16,17,["H1931"]],[17,20,["H226"]],[20,21,["H996"]],[21,27,["H1755"]],[27,31,["H3045"]],[31,32,["H3588"]],[32,33,["H589"]],[33,36,["H3068"]],[36,39,["H6942"]],[39,40,[]]]},{"k":2434,"v":[[0,3,["H8104","(H853)"]],[3,5,["H7676"]],[5,7,["H3588"]],[7,8,["H1931"]],[8,10,["H6944"]],[10,16,["H2490"]],[16,23,["H4191","H4191"]],[23,24,["H3588"]],[24,25,["H3605"]],[25,26,["H6213"]],[26,28,["H4399"]],[28,30,["H1931"]],[30,31,["H5315"]],[31,35,["H3772"]],[35,37,["H4480","H7130"]],[37,39,["H5971"]]]},{"k":2435,"v":[[0,1,["H8337"]],[1,2,["H3117"]],[2,4,["H4399"]],[4,6,["H6213"]],[6,10,["H7637"]],[10,13,["H7676"]],[13,15,["H7677"]],[15,16,["H6944"]],[16,19,["H3068"]],[19,20,["H3605"]],[20,21,["H6213"]],[21,23,["H4399"]],[23,26,["H7676"]],[26,27,["H3117"]],[27,34,["H4191","H4191"]]]},{"k":2436,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H8104","(H853)"]],[7,9,["H7676"]],[9,11,["H6213","(H853)"]],[11,13,["H7676"]],[13,16,["H1755"]],[16,19,["H5769"]],[19,20,["H1285"]]]},{"k":2437,"v":[[0,1,["H1931"]],[1,4,["H226"]],[4,5,["H996"]],[5,9,["H1121"]],[9,11,["H3478"]],[11,13,["H5769"]],[13,14,["H3588"]],[14,16,["H8337"]],[16,17,["H3117"]],[17,19,["H3068"]],[19,20,["H6213","(H853)"]],[20,21,["H8064"]],[21,23,["H776"]],[23,27,["H7637"]],[27,28,["H3117"]],[28,30,["H7673"]],[30,33,["H5314"]]]},{"k":2438,"v":[[0,3,["H5414"]],[3,4,["H413"]],[4,5,["H4872"]],[5,11,["H3615"]],[11,13,["H1696"]],[13,14,["H854"]],[14,17,["H2022"]],[17,18,["H5514"]],[18,19,["H8147"]],[19,20,["H3871"]],[20,22,["H5715"]],[22,23,["H3871"]],[23,25,["H68"]],[25,26,["H3789"]],[26,29,["H676"]],[29,31,["H430"]]]},{"k":2439,"v":[[0,4,["H5971"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,7,["H4872"]],[7,8,["H954"]],[8,11,["H3381"]],[11,13,["H4480"]],[13,15,["H2022"]],[15,17,["H5971"]],[17,20,["H6950"]],[20,21,["H5921"]],[21,22,["H175"]],[22,24,["H559"]],[24,25,["H413"]],[25,27,["H6965"]],[27,28,["H6213"]],[28,30,["H430"]],[30,31,["H834"]],[31,33,["H1980"]],[33,34,["H6440"]],[34,36,["H3588"]],[36,39,["H2088"]],[39,40,["H4872"]],[40,42,["H376"]],[42,43,["H834"]],[43,46,["H5927"]],[46,50,["H4480","H776"]],[50,52,["H4714"]],[52,54,["H3045"]],[54,55,["H3808"]],[55,56,["H4100"]],[56,58,["H1961"]],[58,60,[]]]},{"k":2440,"v":[[0,2,["H175"]],[2,3,["H559"]],[3,4,["H413"]],[4,7,["H6561"]],[7,9,["H2091"]],[9,10,["H5141"]],[10,11,["H834"]],[11,15,["H241"]],[15,18,["H802"]],[18,21,["H1121"]],[21,25,["H1323"]],[25,27,["H935"]],[27,29,["H413"]],[29,30,[]]]},{"k":2441,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H6561","(H853)"]],[6,8,["H2091"]],[8,9,["H5141"]],[9,10,["H834"]],[10,14,["H241"]],[14,16,["H935"]],[16,18,["H413"]],[18,19,["H175"]]]},{"k":2442,"v":[[0,3,["H3947"]],[3,7,["H4480","H3027"]],[7,9,["H6696"]],[9,14,["H2747"]],[14,18,["H6213"]],[18,21,["H4541"]],[21,22,["H5695"]],[22,25,["H559"]],[25,26,["H428"]],[26,29,["H430"]],[29,31,["H3478"]],[31,32,["H834"]],[32,35,["H5927"]],[35,39,["H4480","H776"]],[39,41,["H4714"]]]},{"k":2443,"v":[[0,3,["H175"]],[3,4,["H7200"]],[4,7,["H1129"]],[7,9,["H4196"]],[9,10,["H6440"]],[10,13,["H175"]],[13,15,["H7121"]],[15,17,["H559"]],[17,19,["H4279"]],[19,22,["H2282"]],[22,25,["H3068"]]]},{"k":2444,"v":[[0,5,["H7925"]],[5,8,["H4480","H4283"]],[8,10,["H5927"]],[10,12,["H5930"]],[12,14,["H5066"]],[14,16,["H8002"]],[16,19,["H5971"]],[19,21,["H3427"]],[21,23,["H398"]],[23,26,["H8354"]],[26,29,["H6965"]],[29,31,["H6711"]]]},{"k":2445,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H1980"]],[7,10,["H3381"]],[10,11,["H3588"]],[11,13,["H5971"]],[13,14,["H834"]],[14,16,["H5927"]],[16,20,["H4480","H776"]],[20,22,["H4714"]],[22,24,["H7843"]],[24,25,[]]]},{"k":2446,"v":[[0,4,["H5493"]],[4,5,["H4118"]],[5,7,["H4480"]],[7,9,["H1870"]],[9,10,["H834"]],[10,12,["H6680"]],[12,16,["H6213"]],[16,19,["H4541"]],[19,20,["H5695"]],[20,23,["H7812"]],[23,27,["H2076"]],[27,30,["H559"]],[30,31,["H428"]],[31,34,["H430"]],[34,36,["H3478"]],[36,37,["H834"]],[37,41,["H5927"]],[41,45,["H4480","H776"]],[45,47,["H4714"]]]},{"k":2447,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H7200","(H853)"]],[9,10,["H2088"]],[10,11,["H5971"]],[11,13,["H2009"]],[13,14,["H1931"]],[14,17,["H7186","H6203"]],[17,18,["H5971"]]]},{"k":2448,"v":[[0,1,["H6258"]],[1,5,["H5117"]],[5,8,["H639"]],[8,11,["H2734"]],[11,18,["H3615"]],[18,23,["H6213"]],[23,27,["H1419"]],[27,28,["H1471"]]]},{"k":2449,"v":[[0,2,["H4872"]],[2,3,["H2470","(H853)"]],[3,5,["H3068"]],[5,7,["H430"]],[7,9,["H559"]],[9,10,["H3068"]],[10,11,["H4100"]],[11,14,["H639"]],[14,16,["H2734"]],[16,19,["H5971"]],[19,20,["H834"]],[20,24,["H3318"]],[24,28,["H4480","H776"]],[28,30,["H4714"]],[30,32,["H1419"]],[32,33,["H3581"]],[33,37,["H2389"]],[37,38,["H3027"]]]},{"k":2450,"v":[[0,1,["H4100"]],[1,4,["H4714"]],[4,5,["H559"]],[5,7,["H559"]],[7,9,["H7451"]],[9,14,["H3318"]],[14,16,["H2026"]],[16,20,["H2022"]],[20,23,["H3615"]],[23,25,["H4480","H5921"]],[25,27,["H6440"]],[27,30,["H127"]],[30,31,["H7725"]],[31,35,["H4480","H2740","H639"]],[35,37,["H5162"]],[37,38,["H5921"]],[38,40,["H7451"]],[40,43,["H5971"]]]},{"k":2451,"v":[[0,1,["H2142"]],[1,2,["H85"]],[2,3,["H3327"]],[3,5,["H3478"]],[5,7,["H5650"]],[7,9,["H834"]],[9,11,["H7650"]],[11,17,["H1696"]],[17,18,["H413"]],[18,22,["H7235","(H853)"]],[22,24,["H2233"]],[24,27,["H3556"]],[27,29,["H8064"]],[29,31,["H3605"]],[31,32,["H2063"]],[32,33,["H776"]],[33,34,["H834"]],[34,37,["H559"]],[37,41,["H5414"]],[41,44,["H2233"]],[44,48,["H5157"]],[48,51,["H5769"]]]},{"k":2452,"v":[[0,3,["H3068"]],[3,4,["H5162"]],[4,5,["H5921"]],[5,7,["H7451"]],[7,8,["H834"]],[8,10,["H1696"]],[10,12,["H6213"]],[12,15,["H5971"]]]},{"k":2453,"v":[[0,2,["H4872"]],[2,3,["H6437"]],[3,6,["H3381"]],[6,7,["H4480"]],[7,9,["H2022"]],[9,12,["H8147"]],[12,13,["H3871"]],[13,16,["H5715"]],[16,20,["H3027"]],[20,22,["H3871"]],[22,24,["H3789"]],[24,26,["H4480","H8147"]],[26,28,["H5676"]],[28,32,["H4480","H2088"]],[32,36,["H4480","H2088"]],[36,38,["H1992"]],[38,39,["H3789"]]]},{"k":2454,"v":[[0,3,["H3871"]],[3,6,["H4639"]],[6,8,["H430"]],[8,11,["H4385"]],[11,14,["H4385"]],[14,16,["H430"]],[16,17,["H2801"]],[17,18,["H5921"]],[18,20,["H3871"]]]},{"k":2455,"v":[[0,3,["H3091"]],[3,4,["H8085","(H853)"]],[4,6,["H6963"]],[6,9,["H5971"]],[9,12,["H7452"]],[12,14,["H559"]],[14,15,["H413"]],[15,16,["H4872"]],[16,20,["H6963"]],[20,22,["H4421"]],[22,25,["H4264"]]]},{"k":2456,"v":[[0,3,["H559"]],[3,6,["H369"]],[6,8,["H6963"]],[8,12,["H6030"]],[12,14,["H1369"]],[14,15,["H369"]],[15,19,["H6963"]],[19,23,["H6030"]],[23,26,["H2476"]],[26,29,["H6963"]],[29,33,["H6031"]],[33,35,["H595"]],[35,36,["H8085"]]]},{"k":2457,"v":[[0,5,["H1961"]],[5,8,["H834"]],[8,11,["H7126"]],[11,12,["H413"]],[12,14,["H4264"]],[14,17,["H7200","(H853)"]],[17,19,["H5695"]],[19,22,["H4246"]],[22,24,["H4872"]],[24,25,["H639"]],[25,27,["H2734"]],[27,30,["H7993","(H853)"]],[30,32,["H3871"]],[32,36,["H4480","H3027"]],[36,38,["H7665"]],[38,40,["H8478"]],[40,42,["H2022"]]]},{"k":2458,"v":[[0,3,["H3947","(H853)"]],[3,5,["H5695"]],[5,6,["H834"]],[6,9,["H6213"]],[9,11,["H8313"]],[11,15,["H784"]],[15,17,["H2912"]],[17,19,["H5704"]],[19,20,["H834","H1854"]],[20,22,["H2219"]],[22,24,["H5921","H6440"]],[24,26,["H4325"]],[26,28,["(H853)"]],[28,30,["H1121"]],[30,32,["H3478"]],[32,33,["H8248"]],[33,35,[]]]},{"k":2459,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H175"]],[5,6,["H4100"]],[6,7,["H6213"]],[7,8,["H2088"]],[8,9,["H5971"]],[9,12,["H3588"]],[12,15,["H935"]],[15,17,["H1419"]],[17,19,["H2401"]],[19,20,["H5921"]],[20,21,[]]]},{"k":2460,"v":[[0,2,["H175"]],[2,3,["H559"]],[3,5,["H408"]],[5,7,["H639"]],[7,10,["H113"]],[10,12,["H2734"]],[12,13,["H859"]],[13,14,["H3045","(H853)"]],[14,16,["H5971"]],[16,17,["H3588"]],[17,18,["H1931"]],[18,22,["H7451"]]]},{"k":2461,"v":[[0,3,["H559"]],[3,6,["H6213"]],[6,8,["H430"]],[8,9,["H834"]],[9,11,["H1980"]],[11,12,["H6440"]],[12,14,["H3588"]],[14,17,["H2088"]],[17,18,["H4872"]],[18,20,["H376"]],[20,21,["H834"]],[21,24,["H5927"]],[24,28,["H4480","H776"]],[28,30,["H4714"]],[30,32,["H3045"]],[32,33,["H3808"]],[33,34,["H4100"]],[34,36,["H1961"]],[36,38,[]]]},{"k":2462,"v":[[0,3,["H559"]],[3,6,["H4310"]],[6,9,["H2091"]],[9,14,["H6561"]],[14,17,["H5414"]],[17,22,["H7993"]],[22,26,["H784"]],[26,30,["H3318"]],[30,31,["H2088"]],[31,32,["H5695"]]]},{"k":2463,"v":[[0,3,["H4872"]],[3,4,["H7200"]],[4,5,["H3588","(H853)"]],[5,7,["H5971"]],[7,9,["H6544"]],[9,10,["H3588"]],[10,11,["H175"]],[11,15,["H6544"]],[15,18,["H8103"]],[18,21,["H6965"]]]},{"k":2464,"v":[[0,2,["H4872"]],[2,3,["H5975"]],[3,6,["H8179"]],[6,9,["H4264"]],[9,11,["H559"]],[11,12,["H4310"]],[12,16,["H3068"]],[16,21,["H413"]],[21,24,["H3605"]],[24,26,["H1121"]],[26,28,["H3878"]],[28,31,["H622"]],[31,32,["H413"]],[32,33,[]]]},{"k":2465,"v":[[0,3,["H559"]],[3,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,10,["H430"]],[10,12,["H3478"]],[12,13,["H7760"]],[13,15,["H376"]],[15,17,["H2719"]],[17,18,["H5921"]],[18,20,["H3409"]],[20,23,["H5674"]],[23,25,["H7725"]],[25,27,["H4480","H8179"]],[27,29,["H8179"]],[29,32,["H4264"]],[32,34,["H2026"]],[34,36,["H376","(H853)"]],[36,38,["H251"]],[38,41,["H376","(H853)"]],[41,43,["H7453"]],[43,46,["H376","(H853)"]],[46,48,["H7138"]]]},{"k":2466,"v":[[0,3,["H1121"]],[3,5,["H3878"]],[5,6,["H6213"]],[6,10,["H1697"]],[10,12,["H4872"]],[12,15,["H5307"]],[15,16,["H4480"]],[16,18,["H5971"]],[18,19,["H1931"]],[19,20,["H3117"]],[20,22,["H7969"]],[22,23,["H505"]],[23,24,["H376"]]]},{"k":2467,"v":[[0,2,["H4872"]],[2,4,["H559"]],[4,5,["H4390","H3027"]],[5,8,["H3117"]],[8,11,["H3068"]],[11,12,["H3588"]],[12,14,["H376"]],[14,17,["H1121"]],[17,21,["H251"]],[21,25,["H5414"]],[25,26,["H5921"]],[26,29,["H1293"]],[29,31,["H3117"]]]},{"k":2468,"v":[[0,5,["H1961"]],[5,8,["H4480","H4283"]],[8,10,["H4872"]],[10,11,["H559"]],[11,12,["H413"]],[12,14,["H5971"]],[14,15,["H859"]],[15,17,["H2398"]],[17,19,["H1419"]],[19,20,["H2401"]],[20,22,["H6258"]],[22,26,["H5927"]],[26,27,["H413"]],[27,29,["H3068"]],[29,30,["H194"]],[30,35,["H3722"]],[35,36,["H1157"]],[36,38,["H2403"]]]},{"k":2469,"v":[[0,2,["H4872"]],[2,3,["H7725"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H559"]],[8,9,["H577"]],[9,10,["H2088"]],[10,11,["H5971"]],[11,13,["H2398"]],[13,15,["H1419"]],[15,16,["H2401"]],[16,19,["H6213"]],[19,21,["H430"]],[21,23,["H2091"]]]},{"k":2470,"v":[[0,2,["H6258"]],[2,3,["H518"]],[3,6,["H5375"]],[6,8,["H2403"]],[8,10,["H518"]],[10,11,["H369"]],[11,12,["H4229"]],[12,16,["H4994"]],[16,20,["H4480","H5612"]],[20,21,["H834"]],[21,24,["H3789"]]]},{"k":2471,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H4310","H834"]],[7,9,["H2398"]],[9,16,["H4229"]],[16,19,["H4480","H5612"]]]},{"k":2472,"v":[[0,2,["H6258"]],[2,3,["H1980"]],[3,4,["H5148","(H853)"]],[4,6,["H5971"]],[6,7,["H413"]],[7,11,["H834"]],[11,14,["H1696"]],[14,17,["H2009"]],[17,19,["H4397"]],[19,21,["H1980"]],[21,22,["H6440"]],[22,27,["H3117"]],[27,30,["H6485"]],[30,33,["H6485"]],[33,35,["H2403"]],[35,36,["H5921"]],[36,37,[]]]},{"k":2473,"v":[[0,3,["H3068"]],[3,4,["H5062","(H853)"]],[4,6,["H5971"]],[6,7,["H5921","H834"]],[7,9,["H6213","(H853)"]],[9,11,["H5695"]],[11,12,["H834"]],[12,13,["H175"]],[13,14,["H6213"]]]},{"k":2474,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H1980"]],[7,10,["H5927"]],[10,11,["H4480","H2088"]],[11,12,["H859"]],[12,15,["H5971"]],[15,16,["H834"]],[16,20,["H5927"]],[20,24,["H4480","H776"]],[24,26,["H4714"]],[26,27,["H413"]],[27,29,["H776"]],[29,30,["H834"]],[30,32,["H7650"]],[32,34,["H85"]],[34,36,["H3327"]],[36,39,["H3290"]],[39,40,["H559"]],[40,43,["H2233"]],[43,46,["H5414"]],[46,47,[]]]},{"k":2475,"v":[[0,4,["H7971"]],[4,6,["H4397"]],[6,7,["H6440"]],[7,13,["H1644","(H853)"]],[13,15,["H3669"]],[15,17,["H567"]],[17,20,["H2850"]],[20,23,["H6522"]],[23,25,["H2340"]],[25,28,["H2983"]]]},{"k":2476,"v":[[0,1,["H413"]],[1,3,["H776"]],[3,4,["H2100"]],[4,6,["H2461"]],[6,8,["H1706"]],[8,9,["H3588"]],[9,12,["H3808"]],[12,14,["H5927"]],[14,17,["H7130"]],[17,20,["H3588"]],[20,21,["H859"]],[21,24,["H7186","H6203"]],[24,25,["H5971"]],[25,26,["H6435"]],[26,28,["H3615"]],[28,32,["H1870"]]]},{"k":2477,"v":[[0,4,["H5971"]],[4,5,["H8085","(H853)"]],[5,6,["H2088"]],[6,7,["H7451"]],[7,8,["H1697"]],[8,10,["H56"]],[10,12,["H3808"]],[12,13,["H376"]],[13,15,["H7896"]],[15,16,["H5921"]],[16,19,["H5716"]]]},{"k":2478,"v":[[0,3,["H3068"]],[3,5,["H559"]],[5,6,["H413"]],[6,7,["H4872"]],[7,8,["H559"]],[8,9,["H413"]],[9,11,["H1121"]],[11,13,["H3478"]],[13,14,["H859"]],[14,17,["H7186","H6203"]],[17,18,["H5971"]],[18,22,["H5927"]],[22,25,["H7130"]],[25,29,["H259"]],[29,30,["H7281"]],[30,32,["H3615"]],[32,35,["H6258"]],[35,37,["H3381"]],[37,39,["H5716"]],[39,40,["H4480","H5921"]],[40,45,["H3045"]],[45,46,["H4100"]],[46,48,["H6213"]],[48,50,[]]]},{"k":2479,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H5337"]],[7,8,["(H853)"]],[8,10,["H5716"]],[10,13,["H4480","H2022"]],[13,14,["H2722"]]]},{"k":2480,"v":[[0,2,["H4872"]],[2,3,["H3947","(H853)"]],[3,5,["H168"]],[5,7,["H5186"]],[7,9,["H4480","H2351"]],[9,11,["H4264"]],[11,13,["H7368"]],[13,14,["H4480"]],[14,16,["H4264"]],[16,18,["H7121"]],[18,21,["H168"]],[21,24,["H4150"]],[24,29,["H1961"]],[29,32,["H3605"]],[32,34,["H1245"]],[34,36,["H3068"]],[36,38,["H3318"]],[38,39,["H413"]],[39,41,["H168"]],[41,44,["H4150"]],[44,45,["H834"]],[45,47,["H4480","H2351"]],[47,49,["H4264"]]]},{"k":2481,"v":[[0,5,["H1961"]],[5,7,["H4872"]],[7,9,["H3318"]],[9,10,["H413"]],[10,12,["H168"]],[12,14,["H3605"]],[14,16,["H5971"]],[16,18,["H6965"]],[18,20,["H5324"]],[20,22,["H376"]],[22,25,["H168"]],[25,26,["H6607"]],[26,28,["H5027"]],[28,29,["H310"]],[29,30,["H4872"]],[30,31,["H5704"]],[31,34,["H935"]],[34,37,["H168"]]]},{"k":2482,"v":[[0,5,["H1961"]],[5,7,["H4872"]],[7,9,["H935"]],[9,11,["H168"]],[11,13,["H6051"]],[13,14,["H5982"]],[14,15,["H3381"]],[15,17,["H5975"]],[17,20,["H6607"]],[20,23,["H168"]],[23,27,["H1696"]],[27,28,["H5973"]],[28,29,["H4872"]]]},{"k":2483,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H7200","(H853)"]],[5,7,["H6051"]],[7,8,["H5982"]],[8,9,["H5975"]],[9,12,["H168"]],[12,13,["H6607"]],[13,15,["H3605"]],[15,17,["H5971"]],[17,19,["H6965"]],[19,21,["H7812"]],[21,23,["H376"]],[23,26,["H168"]],[26,27,["H6607"]]]},{"k":2484,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H6440"]],[7,8,["H413"]],[8,9,["H6440"]],[9,10,["H834"]],[10,12,["H376"]],[12,13,["H1696"]],[13,14,["H413"]],[14,16,["H7453"]],[16,20,["H7725"]],[20,21,["H413"]],[21,23,["H4264"]],[23,26,["H8334"]],[26,27,["H3091"]],[27,29,["H1121"]],[29,31,["H5126"]],[31,34,["H5288"]],[34,35,["H4185"]],[35,36,["H3808"]],[36,38,["H4480","H8432"]],[38,40,["H168"]]]},{"k":2485,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3068"]],[6,7,["H7200"]],[7,8,["H859"]],[8,9,["H559"]],[9,10,["H413"]],[10,13,["H5927","(H853)"]],[13,14,["H2088"]],[14,15,["H5971"]],[15,17,["H859"]],[17,19,["H3808"]],[19,22,["H3045","(H853)"]],[22,23,["H834"]],[23,26,["H7971"]],[26,27,["H5973"]],[27,30,["H859"]],[30,32,["H559"]],[32,34,["H3045"]],[34,37,["H8034"]],[37,41,["H1571"]],[41,42,["H4672"]],[42,43,["H2580"]],[43,46,["H5869"]]]},{"k":2486,"v":[[0,1,["H6258"]],[1,5,["H4994"]],[5,6,["H518"]],[6,9,["H4672"]],[9,10,["H2580"]],[10,13,["H5869"]],[13,14,["H3045"]],[14,16,["H4994","(H853)"]],[16,18,["H1870"]],[18,19,["H4616"]],[19,22,["H3045"]],[22,27,["H4672"]],[27,28,["H2580"]],[28,31,["H5869"]],[31,33,["H7200"]],[33,34,["H3588"]],[34,35,["H2088"]],[35,36,["H1471"]],[36,39,["H5971"]]]},{"k":2487,"v":[[0,3,["H559"]],[3,5,["H6440"]],[5,7,["H1980"]],[7,15,["H5117"]]]},{"k":2488,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H518"]],[6,8,["H6440"]],[8,9,["H1980"]],[9,10,["H369"]],[10,16,["H5927","H408"]],[16,17,["H4480","H2088"]]]},{"k":2489,"v":[[0,2,["H4100"]],[2,6,["H3045"]],[6,7,["H645"]],[7,8,["H3588"]],[8,9,["H589"]],[9,12,["H5971"]],[12,14,["H4672"]],[14,15,["H2580"]],[15,18,["H5869"]],[18,21,["H3808"]],[21,25,["H1980"]],[25,26,["H5973"]],[26,32,["H6395"]],[32,33,["H589"]],[33,36,["H5971"]],[36,38,["H4480","H3605"]],[38,40,["H5971"]],[40,41,["H834"]],[41,43,["H5921"]],[43,45,["H6440"]],[45,48,["H127"]]]},{"k":2490,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H6213","(H853)"]],[9,10,["H2088"]],[10,11,["H1697"]],[11,12,["H1571"]],[12,13,["H834"]],[13,16,["H1696"]],[16,17,["H3588"]],[17,20,["H4672"]],[20,21,["H2580"]],[21,24,["H5869"]],[24,27,["H3045"]],[27,30,["H8034"]]]},{"k":2491,"v":[[0,3,["H559"]],[3,6,["H4994"]],[6,7,["H7200"]],[7,8,["(H853)"]],[8,10,["H3519"]]]},{"k":2492,"v":[[0,3,["H559"]],[3,4,["H589"]],[4,7,["H3605"]],[7,9,["H2898"]],[9,10,["H5674"]],[10,11,["H5921","H6440"]],[11,16,["H7121"]],[16,18,["H8034"]],[18,21,["H3068"]],[21,22,["H6440"]],[22,27,["H2603","(H853)"]],[27,29,["H834"]],[29,33,["H2603"]],[33,37,["H7355","(H853)"]],[37,39,["H834"]],[39,43,["H7355"]]]},{"k":2493,"v":[[0,3,["H559"]],[3,5,["H3201"]],[5,6,["H3808"]],[6,7,["H7200","(H853)"]],[7,9,["H6440"]],[9,10,["H3588"]],[10,13,["H3808"]],[13,14,["H120"]],[14,15,["H7200"]],[15,18,["H2425"]]]},{"k":2494,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H2009"]],[5,9,["H4725"]],[9,10,["H854"]],[10,15,["H5324"]],[15,16,["H5921"]],[16,18,["H6697"]]]},{"k":2495,"v":[[0,6,["H1961"]],[6,9,["H3519"]],[9,11,["H5674"]],[11,15,["H7760"]],[15,19,["H5366"]],[19,22,["H6697"]],[22,25,["H5526","H5921"]],[25,29,["H3709"]],[29,30,["H5704"]],[30,33,["H5674"]]]},{"k":2496,"v":[[0,5,["H5493","(H853)"]],[5,7,["H3709"]],[7,11,["H7200","(H853)"]],[11,14,["H268"]],[14,17,["H6440"]],[17,19,["H3808"]],[19,21,["H7200"]]]},{"k":2497,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H6458"]],[7,9,["H8147"]],[9,10,["H3871"]],[10,12,["H68"]],[12,16,["H7223"]],[16,20,["H3789"]],[20,21,["H5921"]],[21,23,["H3871","(H853)"]],[23,25,["H1697"]],[25,26,["H834"]],[26,27,["H1961"]],[27,28,["H5921"]],[28,30,["H7223"]],[30,31,["H3871"]],[31,32,["H834"]],[32,34,["H7665"]]]},{"k":2498,"v":[[0,2,["H1961"]],[2,3,["H3559"]],[3,6,["H1242"]],[6,9,["H5927"]],[9,12,["H1242"]],[12,13,["H413"]],[13,14,["H2022"]],[14,15,["H5514"]],[15,18,["H5324"]],[18,19,["H8033"]],[19,22,["H5921"]],[22,24,["H7218"]],[24,27,["H2022"]]]},{"k":2499,"v":[[0,2,["H3808"]],[2,3,["H376"]],[3,6,["H5927"]],[6,7,["H5973"]],[7,9,["H408","H1571"]],[9,12,["H376"]],[12,14,["H7200"]],[14,16,["H3605"]],[16,18,["H2022"]],[18,19,["H408","H1571"]],[19,22,["H6629"]],[22,24,["H1241"]],[24,25,["H7462"]],[25,26,["H413","H4136"]],[26,27,["H1931"]],[27,28,["H2022"]]]},{"k":2500,"v":[[0,3,["H6458"]],[3,4,["H8147"]],[4,5,["H3871"]],[5,7,["H68"]],[7,11,["H7223"]],[11,13,["H4872"]],[13,16,["H7925"]],[16,19,["H1242"]],[19,22,["H5927"]],[22,23,["H413"]],[23,24,["H2022"]],[24,25,["H5514"]],[25,26,["H834"]],[26,28,["H3068"]],[28,30,["H6680"]],[30,33,["H3947"]],[33,36,["H3027"]],[36,38,["H8147"]],[38,39,["H3871"]],[39,41,["H68"]]]},{"k":2501,"v":[[0,3,["H3068"]],[3,4,["H3381"]],[4,7,["H6051"]],[7,9,["H3320"]],[9,10,["H5973"]],[10,12,["H8033"]],[12,14,["H7121"]],[14,16,["H8034"]],[16,19,["H3068"]]]},{"k":2502,"v":[[0,3,["H3068"]],[3,5,["H5674"]],[5,6,["H5921","H6440"]],[6,9,["H7121"]],[9,11,["H3068"]],[11,13,["H3068"]],[13,14,["H410"]],[14,15,["H7349"]],[15,17,["H2587"]],[17,18,["H750","H639"]],[18,20,["H7227"]],[20,22,["H2617"]],[22,24,["H571"]]]},{"k":2503,"v":[[0,1,["H5341"]],[1,2,["H2617"]],[2,4,["H505"]],[4,5,["H5375"]],[5,6,["H5771"]],[6,8,["H6588"]],[8,10,["H2403"]],[10,17,["H3808","H5352","H5352"]],[17,20,["H6485"]],[20,22,["H5771"]],[22,25,["H1"]],[25,26,["H5921"]],[26,28,["H1121"]],[28,30,["H5921"]],[30,32,["H1121"]],[32,33,["H1121"]],[33,34,["H5921"]],[34,36,["H8029"]],[36,38,["H5921"]],[38,40,["H7256"]],[40,41,[]]]},{"k":2504,"v":[[0,2,["H4872"]],[2,4,["H4116"]],[4,8,["H6915"]],[8,11,["H776"]],[11,13,["H7812"]]]},{"k":2505,"v":[[0,3,["H559"]],[3,4,["H518"]],[4,5,["H4994"]],[5,8,["H4672"]],[8,9,["H2580"]],[9,12,["H5869"]],[12,14,["H136"]],[14,17,["H136"]],[17,20,["H4994"]],[20,21,["H1980"]],[21,22,["H7130"]],[22,24,["H3588"]],[24,25,["H1931"]],[25,28,["H7186","H6203"]],[28,29,["H5971"]],[29,31,["H5545"]],[31,33,["H5771"]],[33,36,["H2403"]],[36,42,["H5157"]]]},{"k":2506,"v":[[0,3,["H559"]],[3,4,["H2009"]],[4,5,["H595"]],[5,6,["H3772"]],[6,8,["H1285"]],[8,9,["H5048"]],[9,10,["H3605"]],[10,12,["H5971"]],[12,15,["H6213"]],[15,16,["H6381"]],[16,18,["H834"]],[18,20,["H3808"]],[20,22,["H1254"]],[22,24,["H3605"]],[24,26,["H776"]],[26,29,["H3605"]],[29,30,["H1471"]],[30,32,["H3605"]],[32,34,["H5971"]],[34,35,["H7130"]],[35,36,["H834"]],[36,37,["H859"]],[37,40,["H7200","(H853)"]],[40,42,["H4639"]],[42,45,["H3068"]],[45,46,["H3588"]],[46,47,["H1931"]],[47,51,["H3372"]],[51,52,["H834"]],[52,53,["H589"]],[53,55,["H6213"]],[55,56,["H5973"]],[56,57,[]]]},{"k":2507,"v":[[0,1,["H8104"]],[1,2,["(H853)"]],[2,4,["H834"]],[4,5,["H595"]],[5,6,["H6680"]],[6,9,["H3117"]],[9,10,["H2009"]],[10,13,["H1644"]],[13,14,["H4480","H6440"]],[14,15,["(H853)"]],[15,17,["H567"]],[17,20,["H3669"]],[20,23,["H2850"]],[23,26,["H6522"]],[26,29,["H2340"]],[29,32,["H2983"]]]},{"k":2508,"v":[[0,2,["H8104"]],[2,5,["H6435"]],[5,7,["H3772"]],[7,9,["H1285"]],[9,12,["H3427"]],[12,15,["H776"]],[15,16,["H834","H5921"]],[16,17,["H859"]],[17,18,["H935"]],[18,19,["H6435"]],[19,21,["H1961"]],[21,24,["H4170"]],[24,27,["H7130"]],[27,29,[]]]},{"k":2509,"v":[[0,1,["H3588"]],[1,4,["H5422","(H853)"]],[4,6,["H4196"]],[6,7,["H7665"]],[7,9,["H4676"]],[9,12,["H3772"]],[12,14,["H842"]]]},{"k":2510,"v":[[0,1,["H3588"]],[1,4,["H7812"]],[4,5,["H3808"]],[5,6,["H312"]],[6,7,["H410"]],[7,8,["H3588"]],[8,10,["H3068"]],[10,12,["H8034"]],[12,14,["H7067"]],[14,17,["H7067"]],[17,18,["H410"]]]},{"k":2511,"v":[[0,1,["H6435"]],[1,3,["H3772"]],[3,5,["H1285"]],[5,8,["H3427"]],[8,11,["H776"]],[11,16,["H2181"]],[16,17,["H310"]],[17,19,["H430"]],[19,22,["H2076"]],[22,25,["H430"]],[25,28,["H7121"]],[28,32,["H398"]],[32,35,["H4480","H2077"]]]},{"k":2512,"v":[[0,3,["H3947"]],[3,6,["H4480","H1323"]],[6,9,["H1121"]],[9,12,["H1323"]],[12,15,["H2181"]],[15,16,["H310"]],[16,18,["H430"]],[18,20,["(H853)"]],[20,22,["H1121"]],[22,25,["H2181"]],[25,26,["H310"]],[26,28,["H430"]]]},{"k":2513,"v":[[0,3,["H6213"]],[3,5,["H3808"]],[5,6,["H4541"]],[6,7,["H430"]]]},{"k":2514,"v":[[0,0,["(H853)"]],[0,2,["H2282"]],[2,5,["H4682"]],[5,8,["H8104"]],[8,9,["H7651"]],[9,10,["H3117"]],[10,13,["H398"]],[13,15,["H4682"]],[15,16,["H834"]],[16,18,["H6680"]],[18,22,["H4150"]],[22,25,["H2320"]],[25,26,["H24"]],[26,27,["H3588"]],[27,30,["H2320"]],[30,31,["H24"]],[31,34,["H3318"]],[34,36,["H4480","H4714"]]]},{"k":2515,"v":[[0,1,["H3605"]],[1,3,["H6363"]],[3,5,["H7358"]],[5,9,["H3605"]],[9,10,["H6363"]],[10,13,["H4735"]],[13,15,["H7794"]],[15,17,["H7716"]],[17,20,[]]]},{"k":2516,"v":[[0,3,["H6363"]],[3,6,["H2543"]],[6,9,["H6299"]],[9,12,["H7716"]],[12,14,["H518"]],[14,16,["H6299"]],[16,18,["H3808"]],[18,24,["H6202"]],[24,25,["H3605"]],[25,27,["H1060"]],[27,30,["H1121"]],[30,33,["H6299"]],[33,35,["H3808"]],[35,37,["H7200"]],[37,38,["H6440"]],[38,40,["H7387"]]]},{"k":2517,"v":[[0,1,["H8337"]],[1,2,["H3117"]],[2,5,["H5647"]],[5,9,["H7637"]],[9,10,["H3117"]],[10,13,["H7673"]],[13,16,["H2758"]],[16,19,["H7105"]],[19,22,["H7673"]]]},{"k":2518,"v":[[0,4,["H6213"]],[4,6,["H2282"]],[6,8,["H7620"]],[8,11,["H1061"]],[11,13,["H2406"]],[13,14,["H7105"]],[14,17,["H2282"]],[17,19,["H614"]],[19,22,["H8141"]],[22,23,["H8622"]]]},{"k":2519,"v":[[0,1,["H7969","H6471"]],[1,4,["H8141"]],[4,6,["H3605"]],[6,9,["H2138"]],[9,10,["H7200","(H853)"]],[10,11,["H6440"]],[11,13,["H113"]],[13,14,["H3068"]],[14,16,["H430"]],[16,18,["H3478"]]]},{"k":2520,"v":[[0,1,["H3588"]],[1,5,["H3423"]],[5,7,["H1471"]],[7,8,["H4480","H6440"]],[8,11,["H7337","(H853)"]],[11,13,["H1366"]],[13,14,["H3808"]],[14,17,["H376"]],[17,18,["H2530","(H853)"]],[18,20,["H776"]],[20,25,["H5927"]],[25,27,["H7200","(H853)"]],[27,28,["H6440"]],[28,30,["H3068"]],[30,32,["H430"]],[32,33,["H7969","H6471"]],[33,36,["H8141"]]]},{"k":2521,"v":[[0,3,["H3808"]],[3,4,["H7819"]],[4,6,["H1818"]],[6,9,["H2077"]],[9,10,["H5921"]],[10,11,["H2557"]],[11,12,["H3808"]],[12,15,["H2077"]],[15,18,["H2282"]],[18,21,["H6453"]],[21,23,["H3885"]],[23,26,["H1242"]]]},{"k":2522,"v":[[0,2,["H7225"]],[2,5,["H1061"]],[5,8,["H127"]],[8,11,["H935"]],[11,14,["H1004"]],[14,17,["H3068"]],[17,19,["H430"]],[19,22,["H3808"]],[22,23,["H1310"]],[23,25,["H1423"]],[25,28,["H517"]],[28,29,["H2461"]]]},{"k":2523,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H3789"]],[7,8,["(H853)"]],[8,9,["H428"]],[9,10,["H1697"]],[10,11,["H3588"]],[11,12,["H5921"]],[12,14,["H6310"]],[14,16,["H428"]],[16,17,["H1697"]],[17,20,["H3772"]],[20,22,["H1285"]],[22,23,["H854"]],[23,26,["H854"]],[26,27,["H3478"]]]},{"k":2524,"v":[[0,3,["H1961"]],[3,4,["H8033"]],[4,5,["H5973"]],[5,7,["H3068"]],[7,8,["H705"]],[8,9,["H3117"]],[9,11,["H705"]],[11,12,["H3915"]],[12,15,["H3808"]],[15,16,["H398"]],[16,17,["H3899"]],[17,18,["H3808"]],[18,19,["H8354"]],[19,20,["H4325"]],[20,23,["H3789"]],[23,24,["H5921"]],[24,26,["H3871","(H853)"]],[26,28,["H1697"]],[28,31,["H1285"]],[31,33,["H6235"]],[33,34,["H1697"]]]},{"k":2525,"v":[[0,5,["H1961"]],[5,7,["H4872"]],[7,9,["H3381"]],[9,11,["H4480","H2022"]],[11,12,["H5514"]],[12,15,["H8147"]],[15,16,["H3871"]],[16,18,["H5715"]],[18,20,["H4872"]],[20,21,["H3027"]],[21,25,["H3381"]],[25,26,["H4480"]],[26,28,["H2022"]],[28,30,["H4872"]],[30,31,["H3045"]],[31,32,["H3808"]],[32,33,["H3588"]],[33,35,["H5785"]],[35,38,["H6440"]],[38,39,["H7160"]],[39,42,["H1696"]],[42,43,["H854"]],[43,44,[]]]},{"k":2526,"v":[[0,3,["H175"]],[3,5,["H3605"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,10,["H7200","(H853)"]],[10,11,["H4872"]],[11,12,["H2009"]],[12,14,["H5785"]],[14,17,["H6440"]],[17,18,["H7160"]],[18,22,["H3372"]],[22,25,["H4480","H5066","H413"]],[25,26,[]]]},{"k":2527,"v":[[0,2,["H4872"]],[2,3,["H7121"]],[3,4,["H413"]],[4,7,["H175"]],[7,9,["H3605"]],[9,11,["H5387"]],[11,14,["H5712"]],[14,15,["H7725"]],[15,16,["H413"]],[16,19,["H4872"]],[19,20,["H1696"]],[20,21,["H413"]],[21,22,[]]]},{"k":2528,"v":[[0,2,["H310","H3651"]],[2,3,["H3605"]],[3,5,["H1121"]],[5,7,["H3478"]],[7,9,["H5066"]],[9,15,["H6680","(H853)"]],[15,16,["H3605"]],[16,17,["H834"]],[17,19,["H3068"]],[19,21,["H1696"]],[21,22,["H854"]],[22,25,["H2022"]],[25,26,["H5514"]]]},{"k":2529,"v":[[0,3,["H4872"]],[3,5,["H3615"]],[5,6,["H4480","H1696"]],[6,7,["H854"]],[7,10,["H5414"]],[10,12,["H4533"]],[12,13,["H5921"]],[13,15,["H6440"]]]},{"k":2530,"v":[[0,3,["H4872"]],[3,5,["H935"]],[5,6,["H6440"]],[6,8,["H3068"]],[8,10,["H1696"]],[10,11,["H854"]],[11,17,["H5493","(H853)","H4533"]],[17,18,["H5704"]],[18,21,["H3318"]],[21,25,["H3318"]],[25,27,["H1696"]],[27,28,["H413"]],[28,30,["H1121"]],[30,32,["H3478","(H853)"]],[32,34,["H834"]],[34,37,["H6680"]]]},{"k":2531,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H7200","(H853)"]],[6,8,["H6440"]],[8,10,["H4872"]],[10,11,["H3588"]],[11,13,["H5785"]],[13,15,["H4872"]],[15,16,["H6440"]],[16,17,["H7160"]],[17,19,["H4872"]],[19,20,["H7725","(H853)"]],[20,22,["H4533"]],[22,23,["H5921"]],[23,25,["H6440"]],[25,27,["H5704"]],[27,30,["H935"]],[30,32,["H1696"]],[32,33,["H854"]],[33,34,[]]]},{"k":2532,"v":[[0,2,["H4872"]],[2,3,["H6950","(H853)"]],[3,4,["H3605"]],[4,6,["H5712"]],[6,9,["H1121"]],[9,11,["H3478"]],[11,14,["H559"]],[14,15,["H413"]],[15,17,["H428"]],[17,20,["H1697"]],[20,21,["H834"]],[21,23,["H3068"]],[23,25,["H6680"]],[25,29,["H6213"]],[29,30,[]]]},{"k":2533,"v":[[0,1,["H8337"]],[1,2,["H3117"]],[2,4,["H4399"]],[4,6,["H6213"]],[6,10,["H7637"]],[10,11,["H3117"]],[11,14,["H1961"]],[14,18,["H6944"]],[18,21,["H7676"]],[21,23,["H7677"]],[23,26,["H3068"]],[26,27,["H3605"]],[27,28,["H6213"]],[28,29,["H4399"]],[29,35,["H4191"]]]},{"k":2534,"v":[[0,3,["H1197"]],[3,4,["H3808"]],[4,5,["H784"]],[5,6,["H3605"]],[6,8,["H4186"]],[8,11,["H7676"]],[11,12,["H3117"]]]},{"k":2535,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3605"]],[5,7,["H5712"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,13,["H559"]],[13,14,["H2088"]],[14,17,["H1697"]],[17,18,["H834"]],[18,20,["H3068"]],[20,21,["H6680"]],[21,22,["H559"]]]},{"k":2536,"v":[[0,1,["H3947"]],[1,4,["H4480","H854"]],[4,7,["H8641"]],[7,10,["H3068"]],[10,11,["H3605"]],[11,15,["H5081"]],[15,16,["H3820"]],[16,19,["H935"]],[19,20,["(H853)"]],[20,22,["H8641"]],[22,25,["H3068"]],[25,26,["H2091"]],[26,28,["H3701"]],[28,30,["H5178"]]]},{"k":2537,"v":[[0,2,["H8504"]],[2,4,["H713"]],[4,6,["H8438","H8144"]],[6,9,["H8336"]],[9,11,["H5795"]],[11,12,[]]]},{"k":2538,"v":[[0,2,["H352"]],[2,3,["H5785"]],[3,5,["H119"]],[5,7,["H8476"]],[7,8,["H5785"]],[8,10,["H7848"]],[10,11,["H6086"]]]},{"k":2539,"v":[[0,2,["H8081"]],[2,5,["H3974"]],[5,7,["H1314"]],[7,9,["H4888"]],[9,10,["H8081"]],[10,14,["H5561"]],[14,15,["H7004"]]]},{"k":2540,"v":[[0,2,["H7718"]],[2,3,["H68"]],[3,5,["H68"]],[5,8,["H4394"]],[8,11,["H646"]],[11,15,["H2833"]]]},{"k":2541,"v":[[0,2,["H3605"]],[2,3,["H2450"]],[3,4,["H3820"]],[4,8,["H935"]],[8,10,["H6213","(H853)"]],[10,11,["H3605"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H6680"]]]},{"k":2542,"v":[[0,0,["(H853)"]],[0,2,["H4908","(H853)"]],[2,4,["H168"]],[4,7,["H4372","(H853)"]],[7,9,["H7165"]],[9,12,["H7175","(H853)"]],[12,14,["H1280","(H853)"]],[14,16,["H5982"]],[16,19,["H134"]]]},{"k":2543,"v":[[0,0,["(H853)"]],[0,2,["H727"]],[2,5,["H905"]],[5,7,["(H853)"]],[7,10,["H3727"]],[10,13,["H6532"]],[13,16,["H4539"]]]},{"k":2544,"v":[[0,0,["(H853)"]],[0,2,["H7979"]],[2,5,["H905"]],[5,7,["H3605"]],[7,9,["H3627"]],[9,12,["H3899","H6440"]]]},{"k":2545,"v":[[0,2,["H4501"]],[2,6,["H3974"]],[6,9,["H3627"]],[9,12,["H5216"]],[12,15,["H8081"]],[15,18,["H3974"]]]},{"k":2546,"v":[[0,3,["H7004"]],[3,4,["H4196"]],[4,7,["H905"]],[7,10,["H4888"]],[10,11,["H8081"]],[11,14,["H5561"]],[14,15,["H7004"]],[15,18,["H4539"]],[18,21,["H6607"]],[21,25,["H6607"]],[25,28,["H4908"]]]},{"k":2547,"v":[[0,0,["(H853)"]],[0,2,["H4196"]],[2,5,["H5930"]],[5,7,["H834"]],[7,8,["H5178"]],[8,9,["H4345","(H853)"]],[9,11,["H905"]],[11,13,["H3605"]],[13,15,["H3627","(H853)"]],[15,17,["H3595"]],[17,20,["H3653"]]]},{"k":2548,"v":[[0,0,["(H853)"]],[0,2,["H7050"]],[2,5,["H2691","(H853)"]],[5,7,["H5982"]],[7,10,["H134"]],[10,13,["H4539"]],[13,16,["H8179"]],[16,19,["H2691"]]]},{"k":2549,"v":[[0,0,["(H853)"]],[0,2,["H3489"]],[2,5,["H4908"]],[5,8,["H3489"]],[8,11,["H2691"]],[11,14,["H4340"]]]},{"k":2550,"v":[[0,0,["(H853)"]],[0,2,["H899"]],[2,4,["H8278"]],[4,7,["H8334"]],[7,10,["H6944"]],[10,11,["(H853)"]],[11,13,["H6944"]],[13,14,["H899"]],[14,16,["H175"]],[16,18,["H3548"]],[18,21,["H899"]],[21,24,["H1121"]],[24,30,["H3547"]]]},{"k":2551,"v":[[0,2,["H3605"]],[2,4,["H5712"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,10,["H3318"]],[10,13,["H4480","H6440"]],[13,15,["H4872"]]]},{"k":2552,"v":[[0,3,["H935"]],[3,4,["H3605"]],[4,5,["H376"]],[5,6,["H834"]],[6,7,["H3820"]],[7,10,["H5375"]],[10,13,["H3605"]],[13,14,["H834","(H853)"]],[14,16,["H7307"]],[16,18,["H5068"]],[18,21,["H935","(H853)"]],[21,23,["H3068"]],[23,24,["H8641"]],[24,27,["H4399"]],[27,30,["H168"]],[30,33,["H4150"]],[33,36,["H3605"]],[36,38,["H5656"]],[38,42,["H6944"]],[42,43,["H899"]]]},{"k":2553,"v":[[0,3,["H935"]],[3,5,["H376"]],[5,7,["H802"]],[7,10,["H3605"]],[10,12,["H5081"]],[12,13,["H3820"]],[13,15,["H935"]],[15,16,["H2397"]],[16,18,["H5141"]],[18,20,["H2885"]],[20,22,["H3558"]],[22,23,["H3605"]],[23,24,["H3627"]],[24,26,["H2091"]],[26,28,["H3605"]],[28,29,["H376"]],[29,30,["H834"]],[30,31,["H5130"]],[31,34,["H8573"]],[34,36,["H2091"]],[36,39,["H3068"]]]},{"k":2554,"v":[[0,2,["H3605"]],[2,3,["H376"]],[3,4,["H854"]],[4,5,["H834"]],[5,7,["H4672"]],[7,8,["H8504"]],[8,10,["H713"]],[10,12,["H8438","H8144"]],[12,15,["H8336"]],[15,17,["H5795"]],[17,20,["H119"]],[20,21,["H5785"]],[21,23,["H352"]],[23,25,["H8476"]],[25,26,["H5785"]],[26,27,["H935"]],[27,28,[]]]},{"k":2555,"v":[[0,2,["H3605"]],[2,5,["H7311"]],[5,7,["H8641"]],[7,9,["H3701"]],[9,11,["H5178"]],[11,12,["H935","(H853)"]],[12,14,["H3068"]],[14,15,["H8641"]],[15,18,["H3605"]],[18,19,["H854"]],[19,20,["H834"]],[20,22,["H4672"]],[22,23,["H7848"]],[23,24,["H6086"]],[24,26,["H3605"]],[26,27,["H4399"]],[27,30,["H5656"]],[30,31,["H935"]],[31,32,[]]]},{"k":2556,"v":[[0,2,["H3605"]],[2,4,["H802"]],[4,7,["H2450"]],[7,8,["H3820"]],[8,10,["H2901"]],[10,13,["H3027"]],[13,15,["H935"]],[15,20,["H4299"]],[20,21,["(H853)"]],[21,23,["H8504"]],[23,26,["H713"]],[26,27,["(H853)"]],[27,29,["H8438","H8144"]],[29,33,["H8336"]]]},{"k":2557,"v":[[0,2,["H3605"]],[2,4,["H802"]],[4,5,["H834"]],[5,6,["H3820"]],[6,9,["H5375","(H853)"]],[9,11,["H2451"]],[11,12,["H2901","(H853)"]],[12,13,["H5795"]],[13,14,[]]]},{"k":2558,"v":[[0,3,["H5387"]],[3,4,["H935","(H853)"]],[4,5,["H7718"]],[5,6,["H68"]],[6,8,["H68"]],[8,11,["H4394"]],[11,14,["H646"]],[14,18,["H2833"]]]},{"k":2559,"v":[[0,2,["H1314"]],[2,4,["H8081"]],[4,7,["H3974"]],[7,11,["H4888"]],[11,12,["H8081"]],[12,16,["H5561"]],[16,17,["H7004"]]]},{"k":2560,"v":[[0,2,["H1121"]],[2,4,["H3478"]],[4,5,["H935"]],[5,8,["H5071"]],[8,11,["H3068"]],[11,12,["H3605"]],[12,13,["H376"]],[13,15,["H802"]],[15,16,["H834"]],[16,17,["H3820"]],[17,20,["H5068","(H853)"]],[20,22,["H935"]],[22,25,["H3605"]],[25,27,["H4399"]],[27,28,["H834"]],[28,30,["H3068"]],[30,32,["H6680"]],[32,35,["H6213"]],[35,38,["H3027"]],[38,40,["H4872"]]]},{"k":2561,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,9,["H7200"]],[9,11,["H3068"]],[11,13,["H7121"]],[13,15,["H8034"]],[15,16,["H1212"]],[16,18,["H1121"]],[18,20,["H221"]],[20,22,["H1121"]],[22,24,["H2354"]],[24,27,["H4294"]],[27,29,["H3063"]]]},{"k":2562,"v":[[0,4,["H4390"]],[4,8,["H7307"]],[8,10,["H430"]],[10,12,["H2451"]],[12,14,["H8394"]],[14,17,["H1847"]],[17,21,["H3605"]],[21,23,["H4399"]]]},{"k":2563,"v":[[0,3,["H2803"]],[3,5,["H4284"]],[5,7,["H6213"]],[7,9,["H2091"]],[9,12,["H3701"]],[12,15,["H5178"]]]},{"k":2564,"v":[[0,4,["H2799"]],[4,6,["H68"]],[6,8,["H4390"]],[8,12,["H2799"]],[12,14,["H6086"]],[14,16,["H6213"]],[16,18,["H3605"]],[18,20,["H4284"]],[20,21,["H4399"]]]},{"k":2565,"v":[[0,4,["H5414"]],[4,7,["H3820"]],[7,11,["H3384"]],[11,13,["H1931"]],[13,15,["H171"]],[15,17,["H1121"]],[17,19,["H294"]],[19,22,["H4294"]],[22,24,["H1835"]]]},{"k":2566,"v":[[0,4,["H4390"]],[4,6,["H2451"]],[6,8,["H3820"]],[8,10,["H6213"]],[10,12,["H3605"]],[12,14,["H4399"]],[14,17,["H2796"]],[17,22,["H2803"]],[22,26,["H7551"]],[26,28,["H8504"]],[28,31,["H713"]],[31,33,["H8438","H8144"]],[33,37,["H8336"]],[37,41,["H707"]],[41,46,["H6213"]],[46,47,["H3605"]],[47,48,["H4399"]],[48,53,["H2803"]],[53,55,["H4284"]]]},{"k":2567,"v":[[0,2,["H6213"]],[2,3,["H1212"]],[3,5,["H171"]],[5,7,["H3605"]],[7,8,["H2450"]],[8,9,["H3820"]],[9,10,["H376"]],[10,12,["H834","H1992"]],[12,14,["H3068"]],[14,15,["H5414"]],[15,16,["H2451"]],[16,18,["H8394"]],[18,20,["H3045"]],[20,23,["H6213","(H853)"]],[23,25,["H3605"]],[25,27,["H4399"]],[27,30,["H5656"]],[30,33,["H6944"]],[33,36,["H3605"]],[36,37,["H834"]],[37,39,["H3068"]],[39,41,["H6680"]]]},{"k":2568,"v":[[0,2,["H4872"]],[2,3,["H7121","H413"]],[3,4,["H1212"]],[4,6,["H171"]],[6,8,["H3605"]],[8,9,["H2450"]],[9,10,["H3820"]],[10,11,["H376"]],[11,13,["H834"]],[13,14,["H3820"]],[14,16,["H3068"]],[16,18,["H5414"]],[18,19,["H2451"]],[19,22,["H3605"]],[22,23,["H834"]],[23,24,["H3820"]],[24,27,["H5375"]],[27,29,["H7126"]],[29,30,["H413"]],[30,32,["H4399"]],[32,34,["H6213"]],[34,35,[]]]},{"k":2569,"v":[[0,3,["H3947"]],[3,4,["H4480","H6440"]],[4,5,["H4872","(H853)"]],[5,6,["H3605"]],[6,8,["H8641"]],[8,9,["H834"]],[9,11,["H1121"]],[11,13,["H3478"]],[13,15,["H935"]],[15,18,["H4399"]],[18,21,["H5656"]],[21,24,["H6944"]],[24,26,["H6213"]],[26,30,["H1992"]],[30,31,["H935"]],[31,32,["H5750"]],[32,33,["H413"]],[33,36,["H5071"]],[36,38,["H1242","H1242"]]]},{"k":2570,"v":[[0,2,["H3605"]],[2,5,["H2450"]],[5,7,["H6213","(H853)"]],[7,8,["H3605"]],[8,10,["H4399"]],[10,13,["H6944"]],[13,14,["H935"]],[14,16,["H376","H376"]],[16,19,["H4480","H4399"]],[19,20,["H834"]],[20,21,["H1992"]],[21,22,["H6213"]]]},{"k":2571,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H4872"]],[5,6,["H559"]],[6,8,["H5971"]],[8,9,["H935"]],[9,11,["H7235"]],[11,13,["H4480","H1767"]],[13,16,["H5656"]],[16,19,["H4399"]],[19,20,["H834","(H853)"]],[20,22,["H3068"]],[22,23,["H6680"]],[23,25,["H6213"]]]},{"k":2572,"v":[[0,2,["H4872"]],[2,4,["H6680"]],[4,11,["H5674","H6963"]],[11,14,["H4264"]],[14,15,["H559"]],[15,17,["H408"]],[17,18,["H376"]],[18,20,["H802"]],[20,21,["H6213"]],[21,23,["H5750"]],[23,24,["H4399"]],[24,27,["H8641"]],[27,30,["H6944"]],[30,33,["H5971"]],[33,35,["H3607"]],[35,37,["H4480","H935"]]]},{"k":2573,"v":[[0,3,["H4399"]],[3,5,["H1961"]],[5,7,["H1767"]],[7,9,["H3605"]],[9,11,["H4399"]],[11,13,["H6213"]],[13,17,["H3498"]]]},{"k":2574,"v":[[0,2,["H3605"]],[2,3,["H2450"]],[3,4,["H3820"]],[4,9,["H6213"]],[9,11,["H4399"]],[11,12,["(H853)"]],[12,14,["H4908"]],[14,15,["H6213"]],[15,16,["H6235"]],[16,17,["H3407"]],[17,21,["H8336","H7806"]],[21,23,["H8504"]],[23,25,["H713"]],[25,27,["H8438","H8144"]],[27,29,["H3742"]],[29,31,["H2803"]],[31,32,["H4639"]],[32,33,["H6213"]],[33,35,[]]]},{"k":2575,"v":[[0,2,["H753"]],[2,4,["H259"]],[4,5,["H3407"]],[5,7,["H6242"]],[7,9,["H8083"]],[9,10,["H520"]],[10,13,["H7341"]],[13,15,["H259"]],[15,16,["H3407"]],[16,17,["H702"]],[17,18,["H520"]],[18,20,["H3407"]],[20,22,["H3605"]],[22,24,["H259"]],[24,25,["H4060"]]]},{"k":2576,"v":[[0,3,["H2266","(H853)"]],[3,5,["H2568"]],[5,6,["H3407"]],[6,7,["H259"]],[7,8,["H413"]],[8,9,["H259"]],[9,13,["H2568"]],[13,14,["H3407"]],[14,16,["H2266"]],[16,17,["H259"]],[17,18,["H413"]],[18,19,["H259"]]]},{"k":2577,"v":[[0,3,["H6213"]],[3,4,["H3924"]],[4,6,["H8504"]],[6,7,["H5921"]],[7,9,["H8193"]],[9,11,["H259"]],[11,12,["H3407"]],[12,15,["H4480","H7098"]],[15,18,["H4225"]],[18,19,["H3651"]],[19,21,["H6213"]],[21,24,["H7020"]],[24,25,["H8193"]],[25,28,["H3407"]],[28,31,["H4225"]],[31,34,["H8145"]]]},{"k":2578,"v":[[0,1,["H2572"]],[1,2,["H3924"]],[2,3,["H6213"]],[3,6,["H259"]],[6,7,["H3407"]],[7,9,["H2572"]],[9,10,["H3924"]],[10,11,["H6213"]],[11,15,["H7097"]],[15,18,["H3407"]],[18,19,["H834"]],[19,23,["H4225"]],[23,26,["H8145"]],[26,28,["H3924"]],[28,29,["H6901"]],[29,30,["H259"]],[30,32,["H413"]],[32,33,["H259"]]]},{"k":2579,"v":[[0,3,["H6213"]],[3,4,["H2572"]],[4,5,["H7165"]],[5,7,["H2091"]],[7,9,["H2266","(H853)"]],[9,11,["H3407"]],[11,12,["H259"]],[12,13,["H413"]],[13,14,["H259"]],[14,17,["H7165"]],[17,20,["H1961"]],[20,21,["H259"]],[21,22,["H4908"]]]},{"k":2580,"v":[[0,3,["H6213"]],[3,4,["H3407"]],[4,6,["H5795"]],[6,10,["H168"]],[10,11,["H5921"]],[11,13,["H4908"]],[13,14,["H6249","H6240"]],[14,15,["H3407"]],[15,17,["H6213"]],[17,18,[]]]},{"k":2581,"v":[[0,2,["H753"]],[2,4,["H259"]],[4,5,["H3407"]],[5,7,["H7970"]],[7,8,["H520"]],[8,10,["H702"]],[10,11,["H520"]],[11,14,["H7341"]],[14,16,["H259"]],[16,17,["H3407"]],[17,19,["H6249","H6240"]],[19,20,["H3407"]],[20,23,["H259"]],[23,24,["H4060"]]]},{"k":2582,"v":[[0,3,["H2266","(H853)"]],[3,4,["H2568"]],[4,5,["H3407"]],[5,7,["H905"]],[7,9,["H8337"]],[9,10,["H3407"]],[10,12,["H905"]]]},{"k":2583,"v":[[0,3,["H6213"]],[3,4,["H2572"]],[4,5,["H3924"]],[5,6,["H5921"]],[6,8,["H7020"]],[8,9,["H8193"]],[9,12,["H3407"]],[12,15,["H4225"]],[15,17,["H2572"]],[17,18,["H3924"]],[18,19,["H6213"]],[19,21,["H5921"]],[21,23,["H8193"]],[23,26,["H3407"]],[26,28,["H2279"]],[28,30,["H8145"]]]},{"k":2584,"v":[[0,3,["H6213"]],[3,4,["H2572"]],[4,5,["H7165"]],[5,7,["H5178"]],[7,12,["H2266","(H853)","H168"]],[12,16,["H1961"]],[16,17,["H259"]]]},{"k":2585,"v":[[0,3,["H6213"]],[3,5,["H4372"]],[5,8,["H168"]],[8,10,["H352"]],[10,11,["H5785"]],[11,13,["H119"]],[13,16,["H4372"]],[16,18,["H8476"]],[18,19,["H5785"]],[19,20,["H4480","H4605"]],[20,21,[]]]},{"k":2586,"v":[[0,3,["H6213","(H853)"]],[3,4,["H7175"]],[4,7,["H4908"]],[7,9,["H7848"]],[9,10,["H6086"]],[10,12,["H5975"]]]},{"k":2587,"v":[[0,2,["H753"]],[2,5,["H7175"]],[5,7,["H6235"]],[7,8,["H520"]],[8,11,["H7341"]],[11,13,["H259"]],[13,14,["H7175"]],[14,16,["H520"]],[16,19,["H2677"]]]},{"k":2588,"v":[[0,1,["H259"]],[1,2,["H7175"]],[2,4,["H8147"]],[4,5,["H3027"]],[5,7,["H7947"]],[7,8,["H259"]],[8,9,["H413"]],[9,10,["H259"]],[10,11,["H3651"]],[11,14,["H6213"]],[14,16,["H3605"]],[16,18,["H7175"]],[18,21,["H4908"]]]},{"k":2589,"v":[[0,3,["H6213","(H853)"]],[3,4,["H7175"]],[4,7,["H4908"]],[7,8,["H6242"]],[8,9,["H7175"]],[9,12,["H5045"]],[12,13,["H6285"]],[13,14,["H8486"]]]},{"k":2590,"v":[[0,2,["H705"]],[2,3,["H134"]],[3,5,["H3701"]],[5,7,["H6213"]],[7,8,["H8478"]],[8,10,["H6242"]],[10,11,["H7175"]],[11,12,["H8147"]],[12,13,["H134"]],[13,14,["H8478"]],[14,15,["H259"]],[15,16,["H7175"]],[16,19,["H8147"]],[19,20,["H3027"]],[20,22,["H8147"]],[22,23,["H134"]],[23,24,["H8478"]],[24,25,["H259"]],[25,26,["H7175"]],[26,29,["H8147"]],[29,30,["H3027"]]]},{"k":2591,"v":[[0,4,["H8145"]],[4,5,["H6763"]],[5,8,["H4908"]],[8,13,["H6828"]],[13,14,["H6285"]],[14,16,["H6213"]],[16,17,["H6242"]],[17,18,["H7175"]]]},{"k":2592,"v":[[0,3,["H705"]],[3,4,["H134"]],[4,6,["H3701"]],[6,7,["H8147"]],[7,8,["H134"]],[8,9,["H8478"]],[9,10,["H259"]],[10,11,["H7175"]],[11,13,["H8147"]],[13,14,["H134"]],[14,15,["H8478"]],[15,16,["H259"]],[16,17,["H7175"]]]},{"k":2593,"v":[[0,4,["H3411"]],[4,7,["H4908"]],[7,8,["H3220"]],[8,10,["H6213"]],[10,11,["H8337"]],[11,12,["H7175"]]]},{"k":2594,"v":[[0,2,["H8147"]],[2,3,["H7175"]],[3,4,["H6213"]],[4,8,["H4742"]],[8,11,["H4908"]],[11,15,["H3411"]]]},{"k":2595,"v":[[0,3,["H1961"]],[3,4,["H8382"]],[4,5,["H4480","H4295"]],[5,7,["H1961","H8382"]],[7,8,["H3162"]],[8,9,["H413"]],[9,11,["H7218"]],[11,13,["H413"]],[13,14,["H259"]],[14,15,["H2885"]],[15,16,["H3651"]],[16,18,["H6213"]],[18,20,["H8147"]],[20,24,["H8147"]],[24,26,["H4740"]]]},{"k":2596,"v":[[0,3,["H1961"]],[3,4,["H8083"]],[4,5,["H7175"]],[5,8,["H134"]],[8,10,["H8337","H6240"]],[10,11,["H134"]],[11,13,["H3701"]],[13,14,["H8478"]],[14,15,["H259"]],[15,16,["H7175"]],[16,17,["H8147"]],[17,18,["H134"]]]},{"k":2597,"v":[[0,3,["H6213"]],[3,4,["H1280"]],[4,6,["H7848"]],[6,7,["H6086"]],[7,8,["H2568"]],[8,11,["H7175"]],[11,14,["H259"]],[14,15,["H6763"]],[15,18,["H4908"]]]},{"k":2598,"v":[[0,2,["H2568"]],[2,3,["H1280"]],[3,6,["H7175"]],[6,9,["H8145"]],[9,10,["H6763"]],[10,13,["H4908"]],[13,15,["H2568"]],[15,16,["H1280"]],[16,19,["H7175"]],[19,22,["H4908"]],[22,25,["H3411"]],[25,26,["H3220"]]]},{"k":2599,"v":[[0,3,["H6213","(H853)"]],[3,5,["H8484"]],[5,6,["H1280"]],[6,8,["H1272"]],[8,9,["H8432"]],[9,11,["H7175"]],[11,12,["H4480"]],[12,15,["H7097"]],[15,16,["H413"]],[16,18,["H7097"]]]},{"k":2600,"v":[[0,3,["H6823"]],[3,5,["H7175"]],[5,7,["H2091"]],[7,9,["H6213"]],[9,11,["H2885"]],[11,13,["H2091"]],[13,16,["H1004"]],[16,19,["H1280"]],[19,21,["H6823","(H853)"]],[21,23,["H1280"]],[23,25,["H2091"]]]},{"k":2601,"v":[[0,3,["H6213","(H853)"]],[3,5,["H6532"]],[5,7,["H8504"]],[7,9,["H713"]],[9,11,["H8438","H8144"]],[11,15,["H8336","H7806"]],[15,17,["H3742"]],[17,18,["H6213"]],[18,22,["H2803"]],[22,23,["H4639"]]]},{"k":2602,"v":[[0,3,["H6213"]],[3,5,["H702"]],[5,6,["H5982"]],[6,8,["H7848"]],[8,11,["H6823"]],[11,14,["H2091"]],[14,16,["H2053"]],[16,19,["H2091"]],[19,22,["H3332"]],[22,25,["H702"]],[25,26,["H134"]],[26,28,["H3701"]]]},{"k":2603,"v":[[0,3,["H6213"]],[3,5,["H4539"]],[5,8,["H168"]],[8,9,["H6607"]],[9,11,["H8504"]],[11,13,["H713"]],[13,15,["H8438","H8144"]],[15,19,["H8336","H7806"]],[19,21,["H4639","H7551"]]]},{"k":2604,"v":[[0,3,["H2568"]],[3,4,["H5982"]],[4,9,["H2053"]],[9,12,["H6823"]],[12,14,["H7218"]],[14,17,["H2838"]],[17,19,["H2091"]],[19,22,["H2568"]],[22,23,["H134"]],[23,26,["H5178"]]]},{"k":2605,"v":[[0,2,["H1212"]],[2,3,["H6213","(H853)"]],[3,5,["H727"]],[5,7,["H7848"]],[7,8,["H6086"]],[8,10,["H520"]],[10,13,["H2677"]],[13,16,["H753"]],[16,21,["H520"]],[21,24,["H2677"]],[24,26,["H7341"]],[26,31,["H520"]],[31,34,["H2677"]],[34,36,["H6967"]],[36,38,[]]]},{"k":2606,"v":[[0,3,["H6823"]],[3,6,["H2889"]],[6,7,["H2091"]],[7,8,["H4480","H1004"]],[8,10,["H4480","H2351"]],[10,12,["H6213"]],[12,14,["H2213"]],[14,16,["H2091"]],[16,20,["H5439"]]]},{"k":2607,"v":[[0,3,["H3332"]],[3,6,["H702"]],[6,7,["H2885"]],[7,9,["H2091"]],[9,13,["H5921"]],[13,15,["H702"]],[15,16,["H6471"]],[16,20,["H8147"]],[20,21,["H2885"]],[21,22,["H5921"]],[22,24,["H259"]],[24,25,["H6763"]],[25,29,["H8147"]],[29,30,["H2885"]],[30,31,["H5921"]],[31,33,["H8145"]],[33,34,["H6763"]],[34,36,[]]]},{"k":2608,"v":[[0,3,["H6213"]],[3,4,["H905"]],[4,6,["H7848"]],[6,7,["H6086"]],[7,9,["H6823"]],[9,12,["H2091"]]]},{"k":2609,"v":[[0,3,["H935","(H853)"]],[3,5,["H905"]],[5,8,["H2885"]],[8,9,["H5921"]],[9,11,["H6763"]],[11,14,["H727"]],[14,16,["H5375","(H853)"]],[16,18,["H727"]]]},{"k":2610,"v":[[0,3,["H6213"]],[3,6,["H3727"]],[6,8,["H2889"]],[8,9,["H2091"]],[9,11,["H520"]],[11,14,["H2677"]],[14,17,["H753"]],[17,21,["H520"]],[21,24,["H2677"]],[24,26,["H7341"]],[26,27,[]]]},{"k":2611,"v":[[0,3,["H6213"]],[3,4,["H8147"]],[4,5,["H3742"]],[5,7,["H2091"]],[7,12,["H4749"]],[12,13,["H6213"]],[13,18,["H4480","H8147"]],[18,19,["H7098"]],[19,23,["H3727"]]]},{"k":2612,"v":[[0,1,["H259"]],[1,2,["H3742"]],[2,5,["H4480","H7098"]],[5,8,["H4480","H2088"]],[8,10,["H259"]],[10,11,["H3742"]],[11,15,["H4480","H7098"]],[15,18,["H4480","H2088"]],[18,20,["H4480"]],[20,23,["H3727"]],[23,24,["H6213"]],[24,25,["(H853)"]],[25,27,["H3742"]],[27,30,["H4480","H8147"]],[30,31,["H7098"]],[31,32,[]]]},{"k":2613,"v":[[0,3,["H3742"]],[3,5,["H6566"]],[5,7,["H3671"]],[7,9,["H4605"]],[9,11,["H5526"]],[11,14,["H3671"]],[14,15,["H5921"]],[15,18,["H3727"]],[18,21,["H6440"]],[21,22,["H376"]],[22,23,["H413"]],[23,24,["H251"]],[24,26,["H413"]],[26,29,["H3727"]],[29,30,["H1961"]],[30,32,["H6440"]],[32,35,["H3742"]]]},{"k":2614,"v":[[0,3,["H6213","(H853)"]],[3,5,["H7979"]],[5,7,["H7848"]],[7,8,["H6086"]],[8,10,["H520"]],[10,13,["H753"]],[13,17,["H520"]],[17,19,["H7341"]],[19,23,["H520"]],[23,26,["H2677"]],[26,28,["H6967"]],[28,29,[]]]},{"k":2615,"v":[[0,3,["H6823"]],[3,6,["H2889"]],[6,7,["H2091"]],[7,9,["H6213"]],[9,12,["H2213"]],[12,14,["H2091"]],[14,16,["H5439"]]]},{"k":2616,"v":[[0,3,["H6213"]],[3,6,["H4526"]],[6,9,["H2948"]],[9,11,["H5439"]],[11,13,["H6213"]],[13,15,["H2213"]],[15,17,["H2091"]],[17,20,["H4526"]],[20,23,["H5439"]]]},{"k":2617,"v":[[0,3,["H3332"]],[3,6,["H702"]],[6,7,["H2885"]],[7,9,["H2091"]],[9,11,["H5414","(H853)"]],[11,13,["H2885"]],[13,14,["H5921"]],[14,16,["H702"]],[16,17,["H6285"]],[17,18,["H834"]],[18,22,["H702"]],[22,23,["H7272"]],[23,24,[]]]},{"k":2618,"v":[[0,2,["H5980"]],[2,4,["H4526"]],[4,5,["H1961"]],[5,7,["H2885"]],[7,9,["H1004"]],[9,12,["H905"]],[12,14,["H5375","(H853)"]],[14,16,["H7979"]]]},{"k":2619,"v":[[0,3,["H6213","(H853)"]],[3,5,["H905"]],[5,7,["H7848"]],[7,8,["H6086"]],[8,10,["H6823"]],[10,13,["H2091"]],[13,15,["H5375","(H853)"]],[15,17,["H7979"]]]},{"k":2620,"v":[[0,3,["H6213","(H853)"]],[3,5,["H3627"]],[5,6,["H834"]],[6,8,["H5921"]],[8,10,["H7979","(H853)"]],[10,12,["H7086"]],[12,15,["H3709"]],[15,18,["H4518"]],[18,21,["H7184"]],[21,23,["H5258"]],[23,24,["H2004"]],[24,26,["H2889"]],[26,27,["H2091"]]]},{"k":2621,"v":[[0,3,["H6213","(H853)"]],[3,5,["H4501"]],[5,7,["H2889"]],[7,8,["H2091"]],[8,11,["H4749"]],[11,12,["H6213"]],[12,13,["(H853)"]],[13,15,["H4501"]],[15,17,["H3409"]],[17,20,["H7070"]],[20,22,["H1375"]],[22,24,["H3730"]],[24,27,["H6525"]],[27,28,["H1961"]],[28,29,["H4480"]],[29,31,[]]]},{"k":2622,"v":[[0,2,["H8337"]],[2,3,["H7070"]],[3,5,["H3318"]],[5,8,["H4480","H6654"]],[8,10,["H7969"]],[10,11,["H7070"]],[11,14,["H4501"]],[14,19,["H4480","H6654","H259"]],[19,22,["H7969"]],[22,23,["H7070"]],[23,26,["H4501"]],[26,31,["H4480","H6654","H8145"]],[31,32,[]]]},{"k":2623,"v":[[0,1,["H7969"]],[1,2,["H1375"]],[2,8,["H8246"]],[8,10,["H259"]],[10,11,["H7070"]],[11,13,["H3730"]],[13,16,["H6525"]],[16,18,["H7969"]],[18,19,["H1375"]],[19,22,["H8246"]],[22,24,["H259"]],[24,25,["H7070"]],[25,27,["H3730"]],[27,30,["H6525"]],[30,31,["H3651"]],[31,34,["H8337"]],[34,35,["H7070"]],[35,37,["H3318"]],[37,38,["H4480"]],[38,40,["H4501"]]]},{"k":2624,"v":[[0,4,["H4501"]],[4,6,["H702"]],[6,7,["H1375"]],[7,10,["H8246"]],[10,12,["H3730"]],[12,15,["H6525"]]]},{"k":2625,"v":[[0,3,["H3730"]],[3,4,["H8478"]],[4,5,["H8147"]],[5,6,["H7070"]],[6,7,["H4480"]],[7,12,["H3730"]],[12,13,["H8478"]],[13,14,["H8147"]],[14,15,["H7070"]],[15,16,["H4480"]],[16,21,["H3730"]],[21,22,["H8478"]],[22,23,["H8147"]],[23,24,["H7070"]],[24,25,["H4480"]],[25,31,["H8337"]],[31,32,["H7070"]],[32,34,["H3318"]],[34,35,["H4480"]],[35,36,[]]]},{"k":2626,"v":[[0,2,["H3730"]],[2,5,["H7070"]],[5,6,["H1961"]],[6,7,["H4480"]],[7,10,["H3605"]],[10,14,["H259"]],[14,16,["H4749"]],[16,18,["H2889"]],[18,19,["H2091"]]]},{"k":2627,"v":[[0,3,["H6213","(H853)"]],[3,5,["H7651"]],[5,6,["H5216"]],[6,9,["H4457"]],[9,12,["H4289"]],[12,14,["H2889"]],[14,15,["H2091"]]]},{"k":2628,"v":[[0,3,["H3603"]],[3,5,["H2889"]],[5,6,["H2091"]],[6,7,["H6213"]],[7,11,["H3605"]],[11,13,["H3627"]],[13,14,[]]]},{"k":2629,"v":[[0,3,["H6213","(H853)"]],[3,5,["H7004"]],[5,6,["H4196"]],[6,8,["H7848"]],[8,9,["H6086"]],[9,11,["H753"]],[11,16,["H520"]],[16,19,["H7341"]],[19,23,["H520"]],[23,26,["H7251"]],[26,29,["H520"]],[29,32,["H6967"]],[32,36,["H7161"]],[36,38,["H1961"]],[38,39,["H4480"]],[39,41,[]]]},{"k":2630,"v":[[0,3,["H6823"]],[3,6,["H2889"]],[6,7,["H2091","(H853)"]],[7,10,["H1406"]],[10,15,["H7023"]],[15,18,["H5439"]],[18,21,["H7161"]],[21,26,["H6213"]],[26,30,["H2213"]],[30,32,["H2091"]],[32,34,["H5439"]]]},{"k":2631,"v":[[0,3,["H6213"]],[3,4,["H8147"]],[4,5,["H2885"]],[5,7,["H2091"]],[7,10,["H4480","H8478"]],[10,12,["H2213"]],[12,14,["H5921"]],[14,16,["H8147"]],[16,17,["H6763"]],[17,20,["H5921"]],[20,22,["H8147"]],[22,23,["H6654"]],[23,27,["H1004"]],[27,30,["H905"]],[30,32,["H5375"]],[32,34,[]]]},{"k":2632,"v":[[0,3,["H6213","(H853)"]],[3,5,["H905"]],[5,7,["H7848"]],[7,8,["H6086"]],[8,10,["H6823"]],[10,13,["H2091"]]]},{"k":2633,"v":[[0,3,["H6213","(H853)"]],[3,5,["H6944"]],[5,6,["H4888"]],[6,7,["H8081"]],[7,10,["H2889"]],[10,11,["H7004"]],[11,14,["H5561"]],[14,18,["H4639"]],[18,21,["H7543"]]]},{"k":2634,"v":[[0,3,["H6213","(H853)"]],[3,5,["H4196"]],[5,8,["H5930"]],[8,10,["H7848"]],[10,11,["H6086"]],[11,12,["H2568"]],[12,13,["H520"]],[13,16,["H753"]],[16,19,["H2568"]],[19,20,["H520"]],[20,22,["H7341"]],[22,26,["H7251"]],[26,28,["H7969"]],[28,29,["H520"]],[29,31,["H6967"]],[31,32,[]]]},{"k":2635,"v":[[0,3,["H6213"]],[3,5,["H7161"]],[5,7,["H5921"]],[7,9,["H702"]],[9,10,["H6438"]],[10,14,["H7161"]],[14,16,["H1961"]],[16,17,["H4480"]],[17,22,["H6823"]],[22,25,["H5178"]]]},{"k":2636,"v":[[0,3,["H6213","(H853)"]],[3,4,["H3605"]],[4,6,["H3627"]],[6,9,["H4196","(H853)"]],[9,11,["H5518"]],[11,14,["H3257"]],[14,17,["H4219"]],[17,18,["(H853)"]],[18,20,["H4207"]],[20,23,["H4289"]],[23,24,["H3605"]],[24,26,["H3627"]],[26,28,["H6213"]],[28,31,["H5178"]]]},{"k":2637,"v":[[0,3,["H6213"]],[3,6,["H4196"]],[6,8,["H5178"]],[8,9,["H4345"]],[9,11,["H4639","H7568"]],[11,12,["H8478"]],[12,14,["H3749"]],[14,16,["H4480","H4295"]],[16,17,["H5704"]],[17,19,["H2677"]],[19,21,[]]]},{"k":2638,"v":[[0,3,["H3332"]],[3,4,["H702"]],[4,5,["H2885"]],[5,8,["H702"]],[8,9,["H7099"]],[9,12,["H4345"]],[12,14,["H5178"]],[14,17,["H1004"]],[17,20,["H905"]]]},{"k":2639,"v":[[0,3,["H6213","(H853)"]],[3,5,["H905"]],[5,7,["H7848"]],[7,8,["H6086"]],[8,10,["H6823"]],[10,13,["H5178"]]]},{"k":2640,"v":[[0,3,["H935","(H853)"]],[3,5,["H905"]],[5,8,["H2885"]],[8,9,["H5921"]],[9,11,["H6763"]],[11,14,["H4196"]],[14,16,["H5375"]],[16,20,["H6213"]],[20,23,["H5014"]],[23,25,["H3871"]]]},{"k":2641,"v":[[0,3,["H6213","(H853)"]],[3,5,["H3595"]],[5,7,["H5178"]],[7,10,["H3653"]],[10,14,["H5178"]],[14,17,["H4759"]],[17,21,["H6633"]],[21,22,["H834"]],[22,23,["H6633"]],[23,26,["H6607"]],[26,29,["H168"]],[29,32,["H4150"]]]},{"k":2642,"v":[[0,3,["H6213","(H853)"]],[3,5,["H2691"]],[5,8,["H5045"]],[8,9,["H6285"]],[9,10,["H8486"]],[10,12,["H7050"]],[12,15,["H2691"]],[15,20,["H8336","H7806"]],[20,22,["H3967"]],[22,23,["H520"]]]},{"k":2643,"v":[[0,2,["H5982"]],[2,4,["H6242"]],[4,7,["H5178"]],[7,8,["H134"]],[8,9,["H6242"]],[9,11,["H2053"]],[11,14,["H5982"]],[14,17,["H2838"]],[17,20,["H3701"]]]},{"k":2644,"v":[[0,4,["H6828"]],[4,5,["H6285"]],[5,10,["H3967"]],[10,11,["H520"]],[11,13,["H5982"]],[13,15,["H6242"]],[15,18,["H134"]],[18,20,["H5178"]],[20,21,["H6242"]],[21,23,["H2053"]],[23,26,["H5982"]],[26,29,["H2838"]],[29,31,["H3701"]]]},{"k":2645,"v":[[0,4,["H3220"]],[4,5,["H6285"]],[5,7,["H7050"]],[7,9,["H2572"]],[9,10,["H520"]],[10,12,["H5982"]],[12,13,["H6235"]],[13,16,["H134"]],[16,17,["H6235"]],[17,19,["H2053"]],[19,22,["H5982"]],[22,25,["H2838"]],[25,27,["H3701"]]]},{"k":2646,"v":[[0,4,["H6924"]],[4,5,["H6285"]],[5,6,["H4217"]],[6,7,["H2572"]],[7,8,["H520"]]]},{"k":2647,"v":[[0,2,["H7050"]],[2,3,["H413"]],[3,6,["H3802"]],[6,11,["H2568","H6240"]],[11,12,["H520"]],[12,14,["H5982"]],[14,15,["H7969"]],[15,18,["H134"]],[18,19,["H7969"]]]},{"k":2648,"v":[[0,4,["H8145"]],[4,5,["H3802"]],[5,8,["H2691"]],[8,9,["H8179"]],[9,12,["H4480","H2088"]],[12,15,["(H4480)","H2088"]],[15,17,["H7050"]],[17,19,["H2568","H6240"]],[19,20,["H520"]],[20,22,["H5982"]],[22,23,["H7969"]],[23,26,["H134"]],[26,27,["H7969"]]]},{"k":2649,"v":[[0,1,["H3605"]],[1,3,["H7050"]],[3,6,["H2691"]],[6,8,["H5439"]],[8,13,["H8336","H7806"]]]},{"k":2650,"v":[[0,3,["H134"]],[3,6,["H5982"]],[6,9,["H5178"]],[9,11,["H2053"]],[11,14,["H5982"]],[14,17,["H2838"]],[17,19,["H3701"]],[19,22,["H6826"]],[22,25,["H7218"]],[25,27,["H3701"]],[27,29,["H3605"]],[29,31,["H5982"]],[31,34,["H2691"]],[34,36,["H2836"]],[36,38,["H3701"]]]},{"k":2651,"v":[[0,3,["H4539"]],[3,6,["H8179"]],[6,9,["H2691"]],[9,11,["H4639","H7551"]],[11,13,["H8504"]],[13,15,["H713"]],[15,17,["H8438","H8144"]],[17,21,["H8336","H7806"]],[21,23,["H6242"]],[23,24,["H520"]],[24,27,["H753"]],[27,30,["H6967"]],[30,33,["H7341"]],[33,35,["H2568"]],[35,36,["H520"]],[36,38,["H5980"]],[38,40,["H7050"]],[40,43,["H2691"]]]},{"k":2652,"v":[[0,3,["H5982"]],[3,5,["H702"]],[5,8,["H134"]],[8,10,["H5178"]],[10,11,["H702"]],[11,13,["H2053"]],[13,15,["H3701"]],[15,18,["H6826"]],[18,21,["H7218"]],[21,24,["H2838"]],[24,26,["H3701"]]]},{"k":2653,"v":[[0,2,["H3605"]],[2,4,["H3489"]],[4,7,["H4908"]],[7,11,["H2691"]],[11,13,["H5439"]],[13,16,["H5178"]]]},{"k":2654,"v":[[0,1,["H428"]],[1,4,["H6485"]],[4,7,["H4908"]],[7,11,["H4908"]],[11,13,["H5715"]],[13,14,["H834"]],[14,17,["H6485"]],[17,18,["H5921"]],[18,21,["H6310"]],[21,23,["H4872"]],[23,26,["H5656"]],[26,29,["H3881"]],[29,32,["H3027"]],[32,34,["H385"]],[34,35,["H1121"]],[35,37,["H175"]],[37,39,["H3548"]]]},{"k":2655,"v":[[0,2,["H1212"]],[2,4,["H1121"]],[4,6,["H221"]],[6,8,["H1121"]],[8,10,["H2354"]],[10,13,["H4294"]],[13,15,["H3063"]],[15,16,["H6213","(H853)"]],[16,17,["H3605"]],[17,18,["H834"]],[18,20,["H3068"]],[20,21,["H6680","(H853)"]],[21,22,["H4872"]]]},{"k":2656,"v":[[0,2,["H854"]],[2,5,["H171"]],[5,6,["H1121"]],[6,8,["H294"]],[8,11,["H4294"]],[11,13,["H1835"]],[13,15,["H2796"]],[15,19,["H2803"]],[19,22,["H7551"]],[22,24,["H8504"]],[24,27,["H713"]],[27,30,["H8438","H8144"]],[30,33,["H8336"]]]},{"k":2657,"v":[[0,1,["H3605"]],[1,3,["H2091"]],[3,6,["H6213"]],[6,9,["H4399"]],[9,11,["H3605"]],[11,13,["H4399"]],[13,16,["H6944"]],[16,20,["H2091"]],[20,23,["H8573"]],[23,24,["H1961"]],[24,25,["H6242"]],[25,27,["H8672"]],[27,28,["H3603"]],[28,30,["H7651"]],[30,31,["H3967"]],[31,33,["H7970"]],[33,34,["H8255"]],[34,37,["H8255"]],[37,40,["H6944"]]]},{"k":2658,"v":[[0,3,["H3701"]],[3,8,["H6485"]],[8,11,["H5712"]],[11,14,["H3967"]],[14,15,["H3603"]],[15,18,["H505"]],[18,19,["H7651"]],[19,20,["H3967"]],[20,24,["H7657","H2568"]],[24,25,["H8255"]],[25,28,["H8255"]],[28,31,["H6944"]]]},{"k":2659,"v":[[0,2,["H1235"]],[2,5,["H1538"]],[5,8,["H4276"]],[8,10,["H8255"]],[10,13,["H8255"]],[13,16,["H6944"]],[16,19,["H3605"]],[19,21,["H5674"]],[21,22,["H5921"]],[22,24,["H6485"]],[24,28,["H4480","H1121","H6242","H8141"]],[28,30,["H4605"]],[30,32,["H8337"]],[32,33,["H3967"]],[33,34,["H505"]],[34,36,["H7969"]],[36,37,["H505"]],[37,39,["H2568"]],[39,40,["H3967"]],[40,42,["H2572"]],[42,43,[]]]},{"k":2660,"v":[[0,4,["H3967"]],[4,5,["H3603"]],[5,7,["H3701"]],[7,8,["H1961"]],[8,9,["H3332","(H853)"]],[9,11,["H134"]],[11,14,["H6944"]],[14,17,["H134"]],[17,20,["H6532"]],[20,22,["H3967"]],[22,23,["H134"]],[23,26,["H3967"]],[26,27,["H3603"]],[27,29,["H3603"]],[29,32,["H134"]]]},{"k":2661,"v":[[0,4,["H505"]],[4,5,["H7651"]],[5,6,["H3967"]],[6,7,["H7657"]],[7,9,["H2568"]],[9,12,["H6213"]],[12,13,["H2053"]],[13,16,["H5982"]],[16,18,["H6823"]],[18,20,["H7218"]],[20,22,["H2836"]],[22,23,[]]]},{"k":2662,"v":[[0,3,["H5178"]],[3,6,["H8573"]],[6,8,["H7657"]],[8,9,["H3603"]],[9,12,["H505"]],[12,14,["H702"]],[14,15,["H3967"]],[15,16,["H8255"]]]},{"k":2663,"v":[[0,4,["H6213","(H853)"]],[4,6,["H134"]],[6,9,["H6607"]],[9,12,["H168"]],[12,15,["H4150"]],[15,18,["H5178"]],[18,19,["H4196"]],[19,22,["H5178"]],[22,23,["H4345"]],[23,27,["H3605"]],[27,29,["H3627"]],[29,32,["H4196"]]]},{"k":2664,"v":[[0,3,["H134"]],[3,6,["H2691"]],[6,8,["H5439"]],[8,11,["H134"]],[11,14,["H2691"]],[14,15,["H8179"]],[15,17,["H3605"]],[17,19,["H3489"]],[19,22,["H4908"]],[22,24,["H3605"]],[24,26,["H3489"]],[26,29,["H2691"]],[29,31,["H5439"]]]},{"k":2665,"v":[[0,2,["H4480"]],[2,4,["H8504"]],[4,6,["H713"]],[6,8,["H8438","H8144"]],[8,10,["H6213"]],[10,11,["H899"]],[11,13,["H8278"]],[13,16,["H8334"]],[16,19,["H6944"]],[19,22,["H6213","(H853)"]],[22,24,["H6944"]],[24,25,["H899"]],[25,27,["H175"]],[27,28,["H834"]],[28,30,["H3068"]],[30,31,["H6680","(H853)"]],[31,32,["H4872"]]]},{"k":2666,"v":[[0,3,["H6213","(H853)"]],[3,5,["H646"]],[5,7,["H2091"]],[7,8,["H8504"]],[8,10,["H713"]],[10,12,["H8438","H8144"]],[12,16,["H8336","H7806"]]]},{"k":2667,"v":[[0,4,["H7554","(H853)"]],[4,6,["H2091"]],[6,9,["H6341"]],[9,11,["H7112"]],[11,14,["H6616"]],[14,16,["H6213"]],[16,18,["H8432"]],[18,20,["H8504"]],[20,22,["H8432"]],[22,24,["H713"]],[24,26,["H8432"]],[26,28,["H8438","H8144"]],[28,30,["H8432"]],[30,33,["H8336"]],[33,35,["H2803"]],[35,36,["H4639"]]]},{"k":2668,"v":[[0,2,["H6213"]],[2,3,["H3802"]],[3,9,["H2266"]],[9,10,["H5921"]],[10,12,["H8147"]],[12,13,["H7098"]],[13,17,["H2266"]]]},{"k":2669,"v":[[0,4,["H2805"]],[4,7,["H642"]],[7,8,["H834"]],[8,10,["H5921"]],[10,13,["H4480"]],[13,15,["H1931"]],[15,19,["H4639"]],[19,22,["H2091"]],[22,23,["H8504"]],[23,25,["H713"]],[25,27,["H8438","H8144"]],[27,31,["H8336","H7806"]],[31,32,["H834"]],[32,34,["H3068"]],[34,35,["H6680","(H853)"]],[35,36,["H4872"]]]},{"k":2670,"v":[[0,3,["H6213","(H853)"]],[3,4,["H7718"]],[4,5,["H68"]],[5,7,["H4142"]],[7,8,["H4865"]],[8,10,["H2091"]],[10,11,["H6605"]],[11,13,["H2368"]],[13,15,["H6603"]],[15,16,["H5921"]],[16,18,["H8034"]],[18,21,["H1121"]],[21,23,["H3478"]]]},{"k":2671,"v":[[0,3,["H7760"]],[3,5,["H5921"]],[5,7,["H3802"]],[7,10,["H646"]],[10,15,["H68"]],[15,18,["H2146"]],[18,21,["H1121"]],[21,23,["H3478"]],[23,24,["H834"]],[24,26,["H3068"]],[26,27,["H6680","(H853)"]],[27,28,["H4872"]]]},{"k":2672,"v":[[0,3,["H6213","(H853)"]],[3,5,["H2833"]],[5,7,["H2803"]],[7,8,["H4639"]],[8,11,["H4639"]],[11,14,["H646"]],[14,16,["H2091"]],[16,17,["H8504"]],[17,19,["H713"]],[19,21,["H8438","H8144"]],[21,25,["H8336","H7806"]]]},{"k":2673,"v":[[0,2,["H1961"]],[2,3,["H7251"]],[3,5,["H6213","(H853)"]],[5,7,["H2833"]],[7,8,["H3717"]],[8,10,["H2239"]],[10,13,["H753"]],[13,17,["H2239"]],[17,19,["H7341"]],[19,22,["H3717"]]]},{"k":2674,"v":[[0,3,["H4390"]],[3,6,["H702"]],[6,7,["H2905"]],[7,9,["H68"]],[9,12,["H2905"]],[12,15,["H124"]],[15,17,["H6357"]],[17,20,["H1304"]],[20,24,["H259"]],[24,25,["H2905"]]]},{"k":2675,"v":[[0,3,["H8145"]],[3,4,["H2905"]],[4,6,["H5306"]],[6,8,["H5601"]],[8,11,["H3095"]]]},{"k":2676,"v":[[0,3,["H7992"]],[3,4,["H2905"]],[4,6,["H3958"]],[6,8,["H7618"]],[8,11,["H306"]]]},{"k":2677,"v":[[0,3,["H7243"]],[3,4,["H2905"]],[4,6,["H8658"]],[6,8,["H7718"]],[8,11,["H3471"]],[11,14,["H4142"]],[14,16,["H4865"]],[16,18,["H2091"]],[18,21,["H4396"]]]},{"k":2678,"v":[[0,3,["H68"]],[3,6,["H5921"]],[6,8,["H8034"]],[8,11,["H1121"]],[11,13,["H3478"]],[13,14,["H8147","H6240"]],[14,16,["H5921"]],[16,18,["H8034"]],[18,21,["H6603"]],[21,24,["H2368"]],[24,26,["H376"]],[26,27,["H5921"]],[27,29,["H8034"]],[29,33,["H8147","H6240"]],[33,34,["H7626"]]]},{"k":2679,"v":[[0,3,["H6213"]],[3,4,["H5921"]],[4,6,["H2833"]],[6,7,["H8333"]],[7,10,["H1383"]],[10,12,["H5688"]],[12,13,["H4639"]],[13,15,["H2889"]],[15,16,["H2091"]]]},{"k":2680,"v":[[0,3,["H6213"]],[3,4,["H8147"]],[4,5,["H4865"]],[5,7,["H2091"]],[7,9,["H8147"]],[9,10,["H2091"]],[10,11,["H2885"]],[11,13,["H5414","(H853)"]],[13,15,["H8147"]],[15,16,["H2885"]],[16,17,["H5921"]],[17,19,["H8147"]],[19,20,["H7098"]],[20,23,["H2833"]]]},{"k":2681,"v":[[0,3,["H5414"]],[3,5,["H8147"]],[5,7,["H5688"]],[7,9,["H2091"]],[9,10,["H5921"]],[10,12,["H8147"]],[12,13,["H2885"]],[13,14,["H5921"]],[14,16,["H7098"]],[16,19,["H2833"]]]},{"k":2682,"v":[[0,3,["H8147"]],[3,4,["H7098"]],[4,7,["H8147"]],[7,9,["H5688"]],[9,11,["H5414"]],[11,12,["H5921"]],[12,14,["H8147"]],[14,15,["H4865"]],[15,17,["H5414"]],[17,19,["H5921"]],[19,21,["H3802"]],[21,24,["H646"]],[24,25,["H413","H4136","H6440"]],[25,26,[]]]},{"k":2683,"v":[[0,3,["H6213"]],[3,4,["H8147"]],[4,5,["H2885"]],[5,7,["H2091"]],[7,9,["H7760"]],[9,11,["H5921"]],[11,13,["H8147"]],[13,14,["H7098"]],[14,17,["H2833"]],[17,18,["H5921"]],[18,20,["H8193"]],[20,23,["H834"]],[23,25,["H413"]],[25,27,["H5676"]],[27,30,["H646"]],[30,31,["H1004"]]]},{"k":2684,"v":[[0,3,["H6213"]],[3,4,["H8147"]],[4,6,["H2091"]],[6,7,["H2885"]],[7,9,["H5414"]],[9,11,["H5921"]],[11,13,["H8147"]],[13,14,["H3802"]],[14,17,["H646"]],[17,18,["H4480","H4295"]],[18,19,["H4480","H4136"]],[19,21,["H6440"]],[21,25,["H5980"]],[25,28,["H4225"]],[28,30,["H4480","H4605"]],[30,33,["H2805"]],[33,36,["H646"]]]},{"k":2685,"v":[[0,4,["H7405","(H853)"]],[4,6,["H2833"]],[6,9,["H4480","H2885"]],[9,10,["H413"]],[10,12,["H2885"]],[12,15,["H646"]],[15,18,["H6616"]],[18,20,["H8504"]],[20,24,["H1961"]],[24,25,["H5921"]],[25,28,["H2805"]],[28,31,["H646"]],[31,35,["H2833"]],[35,37,["H3808"]],[37,39,["H2118"]],[39,40,["H4480","H5921"]],[40,42,["H646"]],[42,43,["H834"]],[43,45,["H3068"]],[45,46,["H6680","(H853)"]],[46,47,["H4872"]]]},{"k":2686,"v":[[0,3,["H6213","(H853)"]],[3,5,["H4598"]],[5,8,["H646"]],[8,10,["H707"]],[10,11,["H4639"]],[11,12,["H3632"]],[12,14,["H8504"]]]},{"k":2687,"v":[[0,5,["H6310"]],[5,8,["H8432"]],[8,11,["H4598"]],[11,14,["H6310"]],[14,17,["H8473"]],[17,20,["H8193"]],[20,22,["H5439"]],[22,24,["H6310"]],[24,28,["H3808"]],[28,29,["H7167"]]]},{"k":2688,"v":[[0,3,["H6213"]],[3,4,["H5921"]],[4,6,["H7757"]],[6,9,["H4598"]],[9,10,["H7416"]],[10,12,["H8504"]],[12,14,["H713"]],[14,16,["H8438","H8144"]],[16,18,["H7806"]],[18,19,[]]]},{"k":2689,"v":[[0,3,["H6213"]],[3,4,["H6472"]],[4,6,["H2889"]],[6,7,["H2091"]],[7,9,["H5414","(H853)"]],[9,11,["H6472"]],[11,12,["H8432"]],[12,14,["H7416"]],[14,15,["H5921"]],[15,17,["H7757"]],[17,20,["H4598"]],[20,22,["H5439"]],[22,23,["H8432"]],[23,25,["H7416"]]]},{"k":2690,"v":[[0,2,["H6472"]],[2,5,["H7416"]],[5,7,["H6472"]],[7,10,["H7416"]],[10,12,["H5439","H5921"]],[12,14,["H7757"]],[14,17,["H4598"]],[17,19,["H8334"]],[19,21,["H8334"]],[21,23,["H3068"]],[23,24,["H6680","(H853)"]],[24,25,["H4872"]]]},{"k":2691,"v":[[0,3,["H6213","(H853)"]],[3,4,["H3801"]],[4,7,["H8336"]],[7,9,["H707"]],[9,10,["H4639"]],[10,12,["H175"]],[12,16,["H1121"]]]},{"k":2692,"v":[[0,3,["H4701"]],[3,6,["H8336"]],[6,8,["H6287"]],[8,9,["H4021"]],[9,12,["H8336"]],[12,14,["H906"]],[14,15,["H4370"]],[15,19,["H8336","H7806"]]]},{"k":2693,"v":[[0,3,["H73"]],[3,7,["H8336","H7806"]],[7,9,["H8504"]],[9,11,["H713"]],[11,13,["H8438","H8144"]],[13,15,["H4639","H7551"]],[15,16,["H834"]],[16,18,["H3068"]],[18,19,["H6680","(H853)"]],[19,20,["H4872"]]]},{"k":2694,"v":[[0,3,["H6213","(H853)"]],[3,5,["H6731"]],[5,8,["H6944"]],[8,9,["H5145"]],[9,11,["H2889"]],[11,12,["H2091"]],[12,14,["H3789"]],[14,15,["H5921"]],[15,18,["H4385"]],[18,22,["H6603"]],[22,25,["H2368"]],[25,26,["H6944"]],[26,29,["H3068"]]]},{"k":2695,"v":[[0,3,["H5414"]],[3,4,["H5921"]],[4,7,["H6616"]],[7,9,["H8504"]],[9,11,["H5414"]],[11,14,["H4480","H4605"]],[14,15,["H5921"]],[15,17,["H4701"]],[17,18,["H834"]],[18,20,["H3068"]],[20,21,["H6680","(H853)"]],[21,22,["H4872"]]]},{"k":2696,"v":[[0,3,["H3605"]],[3,5,["H5656"]],[5,8,["H4908"]],[8,11,["H168"]],[11,14,["H4150"]],[14,15,["H3615"]],[15,18,["H1121"]],[18,20,["H3478"]],[20,21,["H6213"]],[21,24,["H3605"]],[24,25,["H834"]],[25,27,["H3068"]],[27,28,["H6680","(H853)"]],[28,29,["H4872"]],[29,30,["H3651"]],[30,31,["H6213"]],[31,32,[]]]},{"k":2697,"v":[[0,3,["H935","(H853)"]],[3,5,["H4908"]],[5,6,["H413"]],[6,7,["H4872","(H853)"]],[7,9,["H168"]],[9,11,["H3605"]],[11,13,["H3627"]],[13,15,["H7165"]],[15,17,["H7175"]],[17,19,["H1280"]],[19,22,["H5982"]],[22,25,["H134"]]]},{"k":2698,"v":[[0,3,["H4372"]],[3,5,["H352"]],[5,6,["H5785"]],[6,8,["H119"]],[8,11,["H4372"]],[11,13,["H8476"]],[13,14,["H5785"]],[14,17,["H6532"]],[17,20,["H4539"]]]},{"k":2699,"v":[[0,0,["(H853)"]],[0,2,["H727"]],[2,5,["H5715"]],[5,8,["H905"]],[8,13,["H3727"]]]},{"k":2700,"v":[[0,0,["(H853)"]],[0,2,["H7979"]],[2,3,["(H853)"]],[3,4,["H3605"]],[4,6,["H3627"]],[6,10,["H3899","H6440"]]]},{"k":2701,"v":[[0,0,["(H853)"]],[0,2,["H2889"]],[2,3,["H4501"]],[3,4,["(H853)"]],[4,6,["H5216"]],[6,11,["H5216"]],[11,16,["H4634"]],[16,18,["H3605"]],[18,20,["H3627"]],[20,24,["H8081"]],[24,26,["H3974"]]]},{"k":2702,"v":[[0,3,["H2091"]],[3,4,["H4196"]],[4,7,["H4888"]],[7,8,["H8081"]],[8,11,["H5561"]],[11,12,["H7004"]],[12,15,["H4539"]],[15,18,["H168"]],[18,19,["H6607"]]]},{"k":2703,"v":[[0,0,["(H853)"]],[0,2,["H5178"]],[2,3,["H4196"]],[3,5,["H834"]],[5,6,["H4345"]],[6,8,["H5178","(H853)"]],[8,10,["H905"]],[10,12,["H3605"]],[12,14,["H3627","(H853)"]],[14,16,["H3595"]],[16,19,["H3653"]]]},{"k":2704,"v":[[0,0,["(H853)"]],[0,2,["H7050"]],[2,5,["H2691","(H853)"]],[5,7,["H5982"]],[7,10,["H134"]],[10,13,["H4539"]],[13,16,["H2691"]],[16,17,["H8179","(H853)"]],[17,19,["H4340"]],[19,22,["H3489"]],[22,24,["H3605"]],[24,26,["H3627"]],[26,29,["H5656"]],[29,32,["H4908"]],[32,35,["H168"]],[35,38,["H4150"]]]},{"k":2705,"v":[[0,0,["(H853)"]],[0,2,["H899"]],[2,4,["H8278"]],[4,7,["H8334"]],[7,10,["H6944"]],[10,12,["(H853)"]],[12,14,["H6944"]],[14,15,["H899"]],[15,17,["H175"]],[17,19,["H3548"]],[19,22,["H1121"]],[22,23,["H899"]],[23,29,["H3547"]]]},{"k":2706,"v":[[0,3,["H3605"]],[3,4,["H834"]],[4,6,["H3068"]],[6,7,["H6680","(H853)"]],[7,8,["H4872"]],[8,9,["H3651"]],[9,11,["H1121"]],[11,13,["H3478"]],[13,14,["H6213","(H853)"]],[14,15,["H3605"]],[15,17,["H5656"]]]},{"k":2707,"v":[[0,2,["H4872"]],[2,5,["H7200","(H853)"]],[5,6,["H3605"]],[6,8,["H4399"]],[8,10,["H2009"]],[10,13,["H6213"]],[13,15,["H834"]],[15,17,["H3068"]],[17,19,["H6680"]],[19,21,["H3651"]],[21,24,["H6213"]],[24,27,["H4872"]],[27,28,["H1288"]],[28,29,[]]]},{"k":2708,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2709,"v":[[0,4,["H3117","H259","H2320"]],[4,7,["H7223"]],[7,8,["H2320"]],[8,12,["H6965","(H853)"]],[12,14,["H4908"]],[14,17,["H168"]],[17,20,["H4150"]]]},{"k":2710,"v":[[0,4,["H7760"]],[4,5,["H8033","(H853)"]],[5,7,["H727"]],[7,10,["H5715"]],[10,12,["H5526","H5921"]],[12,14,["H727"]],[14,15,["H854"]],[15,17,["H6532"]]]},{"k":2711,"v":[[0,5,["H935","(H853)"]],[5,7,["H7979"]],[7,11,["H6186","(H853)"]],[11,20,["H6187"]],[20,27,["H935","(H853)"]],[27,29,["H4501"]],[29,31,["H5927","(H853)"]],[31,33,["H5216"]],[33,34,[]]]},{"k":2712,"v":[[0,4,["H5414","(H853)"]],[4,6,["H4196"]],[6,8,["H2091"]],[8,11,["H7004"]],[11,12,["H6440"]],[12,14,["H727"]],[14,17,["H5715"]],[17,19,["H7760","(H853)"]],[19,21,["H4539"]],[21,24,["H6607"]],[24,27,["H4908"]]]},{"k":2713,"v":[[0,4,["H5414","(H853)"]],[4,6,["H4196"]],[6,10,["H5930"]],[10,11,["H6440"]],[11,13,["H6607"]],[13,16,["H4908"]],[16,19,["H168"]],[19,22,["H4150"]]]},{"k":2714,"v":[[0,4,["H5414","(H853)"]],[4,6,["H3595"]],[6,7,["H996"]],[7,9,["H168"]],[9,12,["H4150"]],[12,15,["H4196"]],[15,18,["H5414"]],[18,19,["H4325"]],[19,20,["H8033"]]]},{"k":2715,"v":[[0,5,["H7760","(H853)"]],[5,7,["H2691"]],[7,9,["H5439"]],[9,12,["H5414","(H853)"]],[12,14,["H4539"]],[14,17,["H2691"]],[17,18,["H8179"]]]},{"k":2716,"v":[[0,4,["H3947","(H853)"]],[4,6,["H4888"]],[6,7,["H8081"]],[7,9,["H4886","(H853)"]],[9,11,["H4908"]],[11,13,["H3605"]],[13,14,["H834"]],[14,19,["H6942"]],[19,22,["H3605"]],[22,24,["H3627"]],[24,29,["H1961"]],[29,30,["H6944"]]]},{"k":2717,"v":[[0,4,["H4886","(H853)"]],[4,6,["H4196"]],[6,10,["H5930"]],[10,12,["H3605"]],[12,14,["H3627"]],[14,16,["H6942","(H853)"]],[16,18,["H4196"]],[18,22,["H1961"]],[22,24,["H4196"]],[24,26,["H6944","H6944"]]]},{"k":2718,"v":[[0,4,["H4886","(H853)"]],[4,6,["H3595"]],[6,9,["H3653"]],[9,11,["H6942"]],[11,12,[]]]},{"k":2719,"v":[[0,4,["H7126","(H853)"]],[4,5,["H175"]],[5,8,["H1121"]],[8,9,["H413"]],[9,11,["H6607"]],[11,14,["H168"]],[14,17,["H4150"]],[17,19,["H7364"]],[19,22,["H4325"]]]},{"k":2720,"v":[[0,5,["H3847","(H853)"]],[5,6,["H175"]],[6,7,["(H853)"]],[7,8,["H6944"]],[8,9,["H899"]],[9,11,["H4886"]],[11,14,["H6942"]],[14,25,["H3547"]]]},{"k":2721,"v":[[0,4,["H7126"]],[4,6,["H1121"]],[6,8,["H3847"]],[8,11,["H3801"]]]},{"k":2722,"v":[[0,4,["H4886"]],[4,6,["H834"]],[6,9,["H4886","(H853)"]],[9,11,["H1"]],[11,21,["H3547"]],[21,24,["H4886"]],[24,27,["H1961","H1961"]],[27,29,["H5769"]],[29,30,["H3550"]],[30,33,["H1755"]]]},{"k":2723,"v":[[0,2,["H6213"]],[2,3,["H4872"]],[3,6,["H3605"]],[6,7,["H834"]],[7,9,["H3068"]],[9,10,["H6680"]],[10,12,["H3651"]],[12,13,["H6213"]],[13,14,[]]]},{"k":2724,"v":[[0,5,["H1961"]],[5,8,["H7223"]],[8,9,["H2320"]],[9,12,["H8145"]],[12,13,["H8141"]],[13,16,["H259"]],[16,20,["H2320"]],[20,23,["H4908"]],[23,26,["H6965"]]]},{"k":2725,"v":[[0,2,["H4872"]],[2,4,["H6965","(H853)"]],[4,6,["H4908"]],[6,8,["H5414","(H853)"]],[8,10,["H134"]],[10,13,["H7760","(H853)"]],[13,15,["H7175"]],[15,19,["H5414","(H853)"]],[19,21,["H1280"]],[21,25,["H6965","(H853)"]],[25,27,["H5982"]]]},{"k":2726,"v":[[0,4,["H6566","(H853)"]],[4,6,["H168"]],[6,7,["H5921"]],[7,9,["H4908"]],[9,11,["H7760","(H853)"]],[11,13,["H4372"]],[13,16,["H168"]],[16,17,["H4480","H4605"]],[17,18,["H5921"]],[18,20,["H834"]],[20,22,["H3068"]],[22,23,["H6680","(H853)"]],[23,24,["H4872"]]]},{"k":2727,"v":[[0,3,["H3947"]],[3,5,["H5414","(H853)"]],[5,7,["H5715"]],[7,8,["H413"]],[8,10,["H727"]],[10,12,["H7760","(H853)"]],[12,14,["H905"]],[14,15,["H5921"]],[15,17,["H727"]],[17,19,["H5414","(H853)"]],[19,22,["H3727"]],[22,23,["H4480","H4605"]],[23,24,["H5921"]],[24,26,["H727"]]]},{"k":2728,"v":[[0,3,["H935","(H853)"]],[3,5,["H727"]],[5,6,["H413"]],[6,8,["H4908"]],[8,11,["H7760","(H853)"]],[11,13,["H6532"]],[13,16,["H4539"]],[16,18,["H5526","H5921"]],[18,20,["H727"]],[20,23,["H5715"]],[23,24,["H834"]],[24,26,["H3068"]],[26,27,["H6680","(H853)"]],[27,28,["H4872"]]]},{"k":2729,"v":[[0,3,["H5414","(H853)"]],[3,5,["H7979"]],[5,8,["H168"]],[8,11,["H4150"]],[11,12,["H5921"]],[12,14,["H3409"]],[14,17,["H4908"]],[17,18,["H6828"]],[18,19,["H4480","H2351"]],[19,21,["H6532"]]]},{"k":2730,"v":[[0,3,["H6186"]],[3,5,["H3899"]],[5,7,["H6187"]],[7,8,["H5921"]],[8,10,["H6440"]],[10,12,["H3068"]],[12,13,["H834"]],[13,15,["H3068"]],[15,17,["H6680","(H853)"]],[17,18,["H4872"]]]},{"k":2731,"v":[[0,3,["H7760","(H853)"]],[3,5,["H4501"]],[5,8,["H168"]],[8,11,["H4150"]],[11,13,["H5227"]],[13,15,["H7979"]],[15,16,["H5921"]],[16,18,["H3409"]],[18,21,["H4908"]],[21,22,["H5045"]]]},{"k":2732,"v":[[0,3,["H5927"]],[3,5,["H5216"]],[5,6,["H6440"]],[6,8,["H3068"]],[8,9,["H834"]],[9,11,["H3068"]],[11,12,["H6680","(H853)"]],[12,13,["H4872"]]]},{"k":2733,"v":[[0,3,["H7760","(H853)"]],[3,5,["H2091"]],[5,6,["H4196"]],[6,9,["H168"]],[9,12,["H4150"]],[12,13,["H6440"]],[13,15,["H6532"]]]},{"k":2734,"v":[[0,3,["H6999"]],[3,4,["H5561"]],[4,5,["H7004"]],[5,6,["H5921"]],[6,7,["H834"]],[7,9,["H3068"]],[9,10,["H6680","(H853)"]],[10,11,["H4872"]]]},{"k":2735,"v":[[0,4,["H7760","(H853)"]],[4,6,["H4539"]],[6,9,["H6607"]],[9,12,["H4908"]]]},{"k":2736,"v":[[0,3,["H7760"]],[3,5,["H4196"]],[5,8,["H5930"]],[8,11,["H6607"]],[11,14,["H4908"]],[14,17,["H168"]],[17,20,["H4150"]],[20,22,["H5927"]],[22,23,["H5921"]],[23,24,["(H853)"]],[24,27,["H5930"]],[27,31,["H4503"]],[31,32,["H834"]],[32,34,["H3068"]],[34,35,["H6680","(H853)"]],[35,36,["H4872"]]]},{"k":2737,"v":[[0,3,["H7760","(H853)"]],[3,5,["H3595"]],[5,6,["H996"]],[6,8,["H168"]],[8,11,["H4150"]],[11,14,["H4196"]],[14,16,["H5414"]],[16,17,["H4325"]],[17,18,["H8033"]],[18,20,["H7364"]],[20,21,[]]]},{"k":2738,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,7,["H1121"]],[7,8,["H7364","(H853)"]],[8,10,["H3027"]],[10,13,["H7272"]],[13,14,["H4480"]]]},{"k":2739,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H168"]],[6,9,["H4150"]],[9,14,["H7126"]],[14,15,["H413"]],[15,17,["H4196"]],[17,19,["H7364"]],[19,20,["H834"]],[20,22,["H3068"]],[22,23,["H6680","(H853)"]],[23,24,["H4872"]]]},{"k":2740,"v":[[0,4,["H6965","(H853)"]],[4,6,["H2691"]],[6,8,["H5439"]],[8,10,["H4908"]],[10,13,["H4196"]],[13,16,["H5414","(H853)"]],[16,18,["H4539"]],[18,21,["H2691"]],[21,22,["H8179"]],[22,24,["H4872"]],[24,25,["H3615","(H853)"]],[25,27,["H4399"]]]},{"k":2741,"v":[[0,3,["H6051"]],[3,4,["H3680","(H853)"]],[4,6,["H168"]],[6,9,["H4150"]],[9,12,["H3519"]],[12,15,["H3068"]],[15,16,["H4390","(H853)"]],[16,18,["H4908"]]]},{"k":2742,"v":[[0,2,["H4872"]],[2,4,["H3808"]],[4,5,["H3201"]],[5,7,["H935"]],[7,8,["H413"]],[8,10,["H168"]],[10,13,["H4150"]],[13,14,["H3588"]],[14,16,["H6051"]],[16,17,["H7931"]],[17,18,["H5921"]],[18,21,["H3519"]],[21,24,["H3068"]],[24,25,["H4390","(H853)"]],[25,27,["H4908"]]]},{"k":2743,"v":[[0,4,["H6051"]],[4,7,["H5927"]],[7,9,["H4480","H5921"]],[9,11,["H4908"]],[11,13,["H1121"]],[13,15,["H3478"]],[15,17,["H5265"]],[17,19,["H3605"]],[19,21,["H4550"]]]},{"k":2744,"v":[[0,2,["H518"]],[2,4,["H6051"]],[4,6,["H3808"]],[6,8,["H5927"]],[8,11,["H5265"]],[11,12,["H3808"]],[12,13,["H5704"]],[13,15,["H3117"]],[15,20,["H5927"]]]},{"k":2745,"v":[[0,1,["H3588"]],[1,3,["H6051"]],[3,6,["H3068"]],[6,8,["H5921"]],[8,10,["H4908"]],[10,12,["H3119"]],[12,14,["H784"]],[14,15,["H1961"]],[15,19,["H3915"]],[19,22,["H5869"]],[22,24,["H3605"]],[24,26,["H1004"]],[26,28,["H3478"]],[28,30,["H3605"]],[30,32,["H4550"]]]},{"k":2746,"v":[[0,3,["H3068"]],[3,4,["H7121"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H1696"]],[8,9,["H413"]],[9,14,["H4480","H168"]],[14,17,["H4150"]],[17,18,["H559"]]]},{"k":2747,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H3588"]],[11,13,["H120"]],[13,14,["H4480"]],[14,16,["H7126"]],[16,18,["H7133"]],[18,21,["H3068"]],[21,24,["H7126","(H853)"]],[24,26,["H7133"]],[26,27,["H4480"]],[27,29,["H929"]],[29,31,["H4480"]],[31,33,["H1241"]],[33,35,["H4480"]],[35,37,["H6629"]]]},{"k":2748,"v":[[0,1,["H518"]],[1,3,["H7133"]],[3,7,["H5930"]],[7,8,["H4480"]],[8,10,["H1241"]],[10,13,["H7126"]],[13,15,["H2145"]],[15,17,["H8549"]],[17,20,["H7126"]],[20,26,["H7522"]],[26,27,["H413"]],[27,29,["H6607"]],[29,32,["H168"]],[32,35,["H4150"]],[35,36,["H6440"]],[36,38,["H3068"]]]},{"k":2749,"v":[[0,4,["H5564"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,9,["H7218"]],[9,13,["H5930"]],[13,18,["H7521"]],[18,23,["H3722"]],[23,24,["H5921"]],[24,25,[]]]},{"k":2750,"v":[[0,4,["H7819","(H853)"]],[4,6,["H1121","H1241"]],[6,7,["H6440"]],[7,9,["H3068"]],[9,12,["H3548"]],[12,13,["H175"]],[13,14,["H1121"]],[14,16,["H7126","(H853)"]],[16,18,["H1818"]],[18,20,["H2236","(H853)"]],[20,22,["H1818"]],[22,24,["H5439"]],[24,25,["H5921"]],[25,27,["H4196"]],[27,28,["H834"]],[28,32,["H6607"]],[32,35,["H168"]],[35,38,["H4150"]]]},{"k":2751,"v":[[0,4,["H6584","(H853)"]],[4,7,["H5930"]],[7,9,["H5408"]],[9,13,["H5409"]]]},{"k":2752,"v":[[0,3,["H1121"]],[3,5,["H175"]],[5,7,["H3548"]],[7,9,["H5414"]],[9,10,["H784"]],[10,11,["H5921"]],[11,13,["H4196"]],[13,19,["H6186","H6086"]],[19,20,["H5921"]],[20,22,["H784"]]]},{"k":2753,"v":[[0,3,["H3548"]],[3,4,["H175"]],[4,5,["H1121"]],[5,7,["H6186","(H853)"]],[7,9,["H5409","(H853)"]],[9,11,["H7218"]],[11,14,["H6309"]],[14,17,["H5921"]],[17,19,["H6086"]],[19,20,["H834"]],[20,22,["H5921"]],[22,24,["H784"]],[24,25,["H834"]],[25,27,["H5921"]],[27,29,["H4196"]]]},{"k":2754,"v":[[0,3,["H7130"]],[3,6,["H3767"]],[6,9,["H7364"]],[9,11,["H4325"]],[11,14,["H3548"]],[14,16,["H6999","(H853)"]],[16,17,["H3605"]],[17,20,["H4196"]],[20,25,["H5930"]],[25,30,["H801"]],[30,33,["H5207"]],[33,34,["H7381"]],[34,37,["H3068"]]]},{"k":2755,"v":[[0,2,["H518"]],[2,4,["H7133"]],[4,6,["H4480"]],[6,8,["H6629"]],[8,10,["H4480"]],[10,12,["H3775"]],[12,13,["H176"]],[13,14,["H4480"]],[14,16,["H5795"]],[16,20,["H5930"]],[20,23,["H7126"]],[23,26,["H2145"]],[26,28,["H8549"]]]},{"k":2756,"v":[[0,4,["H7819"]],[4,6,["H5921"]],[6,8,["H3409"]],[8,11,["H4196"]],[11,12,["H6828"]],[12,13,["H6440"]],[13,15,["H3068"]],[15,18,["H3548"]],[18,19,["H175"]],[19,20,["H1121"]],[20,22,["H2236","(H853)"]],[22,24,["H1818"]],[24,26,["H5439"]],[26,27,["H5921"]],[27,29,["H4196"]]]},{"k":2757,"v":[[0,4,["H5408"]],[4,8,["H5409"]],[8,9,["H854"]],[9,11,["H7218"]],[11,14,["H6309"]],[14,17,["H3548"]],[17,22,["H6186","(H853)"]],[22,23,["H5921"]],[23,25,["H6086"]],[25,26,["H834"]],[26,28,["H5921"]],[28,30,["H784"]],[30,31,["H834"]],[31,33,["H5921"]],[33,35,["H4196"]]]},{"k":2758,"v":[[0,4,["H7364"]],[4,6,["H7130"]],[6,9,["H3767"]],[9,11,["H4325"]],[11,14,["H3548"]],[14,16,["H7126"]],[16,17,["(H853)"]],[17,18,["H3605"]],[18,20,["H6999"]],[20,24,["H4196"]],[24,25,["H1931"]],[25,29,["H5930"]],[29,34,["H801"]],[34,37,["H5207"]],[37,38,["H7381"]],[38,41,["H3068"]]]},{"k":2759,"v":[[0,2,["H518"]],[2,5,["H5930"]],[5,8,["H7133"]],[8,11,["H3068"]],[11,13,["H4480"]],[13,14,["H5775"]],[14,18,["H7126","(H853)"]],[18,20,["H7133"]],[20,21,["H4480"]],[21,22,["H8449"]],[22,23,["H176"]],[23,24,["H4480"]],[24,25,["H1121"]],[25,26,["H3123"]]]},{"k":2760,"v":[[0,3,["H3548"]],[3,5,["H7126"]],[5,7,["H413"]],[7,9,["H4196"]],[9,12,["H4454","(H853)"]],[12,14,["H7218"]],[14,16,["H6999"]],[16,20,["H4196"]],[20,23,["H1818"]],[23,28,["H4680"]],[28,29,["H5921"]],[29,31,["H7023"]],[31,34,["H4196"]]]},{"k":2761,"v":[[0,5,["H5493","(H853)"]],[5,7,["H4760"]],[7,10,["H5133"]],[10,12,["H7993"]],[12,14,["H681"]],[14,16,["H4196"]],[16,20,["H6924"]],[20,21,["H413"]],[21,23,["H4725"]],[23,26,["H1880"]]]},{"k":2762,"v":[[0,4,["H8156"]],[4,8,["H3671"]],[8,12,["H3808"]],[12,15,["H914"]],[15,18,["H3548"]],[18,20,["H6999"]],[20,24,["H4196"]],[24,25,["H5921"]],[25,27,["H6086"]],[27,28,["H834"]],[28,30,["H5921"]],[30,32,["H784"]],[32,33,["H1931"]],[33,37,["H5930"]],[37,42,["H801"]],[42,45,["H5207"]],[45,46,["H7381"]],[46,49,["H3068"]]]},{"k":2763,"v":[[0,2,["H3588"]],[2,3,["H5315"]],[3,5,["H7126"]],[5,7,["H4503"]],[7,8,["H7133"]],[8,11,["H3068"]],[11,13,["H7133"]],[13,15,["H1961"]],[15,18,["H5560"]],[18,22,["H3332"]],[22,23,["H8081"]],[23,24,["H5921"]],[24,27,["H5414"]],[27,28,["H3828"]],[28,29,["H5921"]]]},{"k":2764,"v":[[0,4,["H935"]],[4,6,["H413"]],[6,7,["H175"]],[7,8,["H1121"]],[8,10,["H3548"]],[10,14,["H7061"]],[14,15,["H4480","H8033"]],[15,17,["H4393","H7062"]],[17,20,["H4480","H5560"]],[20,25,["H4480","H8081"]],[25,27,["H5921"]],[27,28,["H3605"]],[28,30,["H3828"]],[30,34,["H3548"]],[34,36,["H6999","(H853)"]],[36,38,["H234"]],[38,43,["H4196"]],[43,50,["H801"]],[50,53,["H5207"]],[53,54,["H7381"]],[54,57,["H3068"]]]},{"k":2765,"v":[[0,3,["H3498"]],[3,4,["H4480"]],[4,7,["H4503"]],[7,10,["H175"]],[10,13,["H1121"]],[13,19,["H6944","H6944"]],[19,28,["H4480","H801","H3068"]]]},{"k":2766,"v":[[0,2,["H3588"]],[2,4,["H7126"]],[4,6,["H7133"]],[6,10,["H4503"]],[10,11,["H3989"]],[11,14,["H8574"]],[14,18,["H4682"]],[18,19,["H2471"]],[19,22,["H5560"]],[22,23,["H1101"]],[23,25,["H8081"]],[25,27,["H4682"]],[27,28,["H7550"]],[28,29,["H4886"]],[29,31,["H8081"]]]},{"k":2767,"v":[[0,2,["H518"]],[2,4,["H7133"]],[4,8,["H4503"]],[8,10,["H5921"]],[10,12,["H4227"]],[12,15,["H1961"]],[15,18,["H5560"]],[18,19,["H4682"]],[19,20,["H1101"]],[20,22,["H8081"]]]},{"k":2768,"v":[[0,3,["H6626"]],[3,6,["H6595"]],[6,8,["H3332"]],[8,9,["H8081"]],[9,10,["H5921"]],[10,11,["H1931"]],[11,15,["H4503"]]]},{"k":2769,"v":[[0,2,["H518"]],[2,4,["H7133"]],[4,8,["H4503"]],[8,12,["H4802"]],[12,16,["H6213"]],[16,19,["H5560"]],[19,21,["H8081"]]]},{"k":2770,"v":[[0,4,["H935","(H853)"]],[4,7,["H4503"]],[7,8,["H834"]],[8,10,["H6213"]],[10,13,["H4480","H428"]],[13,16,["H3068"]],[16,21,["H7126"]],[21,22,["H413"]],[22,24,["H3548"]],[24,27,["H5066"]],[27,29,["H413"]],[29,31,["H4196"]]]},{"k":2771,"v":[[0,3,["H3548"]],[3,5,["H7311"]],[5,6,["H4480"]],[6,9,["H4503","(H853)"]],[9,11,["H234"]],[11,15,["H6999"]],[15,19,["H4196"]],[19,26,["H801"]],[26,29,["H5207"]],[29,30,["H7381"]],[30,33,["H3068"]]]},{"k":2772,"v":[[0,5,["H3498"]],[5,6,["H4480"]],[6,9,["H4503"]],[9,12,["H175"]],[12,15,["H1121"]],[15,21,["H6944","H6944"]],[21,30,["H4480","H801","H3068"]]]},{"k":2773,"v":[[0,1,["H3808","H3605"]],[1,3,["H4503"]],[3,4,["H834"]],[4,7,["H7126"]],[7,10,["H3068"]],[10,13,["H6213"]],[13,15,["H2557"]],[15,16,["H3588"]],[16,19,["H6999"]],[19,20,["H3808","H3605"]],[20,21,["H7603"]],[21,23,["H3605"]],[23,24,["H1706"]],[24,33,["H801","H3068"]]]},{"k":2774,"v":[[0,4,["H7133"]],[4,7,["H7225"]],[7,10,["H7126"]],[10,14,["H3068"]],[14,18,["H3808"]],[18,20,["H5927"]],[20,21,["H413"]],[21,23,["H4196"]],[23,26,["H5207"]],[26,27,["H7381"]]]},{"k":2775,"v":[[0,2,["H3605"]],[2,3,["H7133"]],[3,7,["H4503"]],[7,10,["H4414"]],[10,12,["H4417"]],[12,13,["H3808"]],[13,18,["H4417"]],[18,21,["H1285"]],[21,24,["H430"]],[24,27,["H7673"]],[27,28,["H4480","H5921"]],[28,31,["H4503"]],[31,32,["H5921"]],[32,33,["H3605"]],[33,35,["H7133"]],[35,38,["H7126"]],[38,39,["H4417"]]]},{"k":2776,"v":[[0,2,["H518"]],[2,4,["H7126"]],[4,7,["H4503"]],[7,10,["H1061"]],[10,13,["H3068"]],[13,16,["H7126","(H853)"]],[16,20,["H4503"]],[20,23,["H1061"]],[23,27,["H24"]],[27,28,["H7033"]],[28,31,["H784"]],[31,34,["H1643"]],[34,38,["H3759"]]]},{"k":2777,"v":[[0,4,["H5414"]],[4,5,["H8081"]],[5,6,["H5921"]],[6,9,["H7760"]],[9,10,["H3828"]],[10,11,["H5921"]],[11,12,["H1931"]],[12,16,["H4503"]]]},{"k":2778,"v":[[0,3,["H3548"]],[3,5,["H6999","(H853)"]],[5,7,["H234"]],[7,14,["H4480","H1643"]],[14,20,["H4480","H8081"]],[20,22,["H5921"]],[22,23,["H3605"]],[23,25,["H3828"]],[25,33,["H801"]],[33,36,["H3068"]]]},{"k":2779,"v":[[0,2,["H518"]],[2,4,["H7133"]],[4,7,["H2077"]],[7,10,["H8002"]],[10,11,["H518"]],[11,12,["H1931"]],[12,13,["H7126"]],[13,15,["H4480"]],[15,17,["H1241"]],[17,18,["H518"]],[18,22,["H2145"]],[22,23,["H518"]],[23,24,["H5347"]],[24,27,["H7126"]],[27,30,["H8549"]],[30,31,["H6440"]],[31,33,["H3068"]]]},{"k":2780,"v":[[0,4,["H5564"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,9,["H7218"]],[9,12,["H7133"]],[12,14,["H7819"]],[14,18,["H6607"]],[18,21,["H168"]],[21,24,["H4150"]],[24,26,["H175"]],[26,27,["H1121"]],[27,29,["H3548"]],[29,31,["H2236","(H853)"]],[31,33,["H1818"]],[33,34,["H5921"]],[34,36,["H4196"]],[36,38,["H5439"]]]},{"k":2781,"v":[[0,4,["H7126"]],[4,7,["H4480","H2077"]],[7,11,["H8002"]],[11,16,["H801"]],[16,19,["H3068","(H853)"]],[19,21,["H2459"]],[21,23,["H3680","(H853)"]],[23,25,["H7130"]],[25,27,["H3605"]],[27,29,["H2459"]],[29,30,["H834"]],[30,32,["H5921"]],[32,34,["H7130"]]]},{"k":2782,"v":[[0,3,["H8147"]],[3,4,["H3629"]],[4,7,["H2459"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H834"]],[12,14,["H5921"]],[14,16,["H3689"]],[16,19,["H3508"]],[19,20,["H5921"]],[20,22,["H3516"]],[22,23,["H5921"]],[23,25,["H3629"]],[25,30,["H5493"]]]},{"k":2783,"v":[[0,2,["H175"]],[2,3,["H1121"]],[3,5,["H6999"]],[5,9,["H4196"]],[9,10,["H5921"]],[10,13,["H5930"]],[13,14,["H834"]],[14,16,["H5921"]],[16,18,["H6086"]],[18,19,["H834"]],[19,21,["H5921"]],[21,23,["H784"]],[23,30,["H801"]],[30,33,["H5207"]],[33,34,["H7381"]],[34,37,["H3068"]]]},{"k":2784,"v":[[0,2,["H518"]],[2,4,["H7133"]],[4,7,["H2077"]],[7,10,["H8002"]],[10,13,["H3068"]],[13,15,["H4480"]],[15,17,["H6629"]],[17,18,["H2145"]],[18,19,["H176"]],[19,20,["H5347"]],[20,23,["H7126"]],[23,26,["H8549"]]]},{"k":2785,"v":[[0,1,["H518"]],[1,2,["H1931"]],[2,3,["H7126"]],[3,5,["H3775","(H853)"]],[5,8,["H7133"]],[8,12,["H7126"]],[12,14,["H6440"]],[14,16,["H3068"]]]},{"k":2786,"v":[[0,4,["H5564","(H853)"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,9,["H7218"]],[9,12,["H7133"]],[12,14,["H7819"]],[14,16,["H6440"]],[16,18,["H168"]],[18,21,["H4150"]],[21,23,["H175"]],[23,24,["H1121"]],[24,26,["H2236","(H853)"]],[26,28,["H1818"]],[28,31,["H5439"]],[31,32,["H5921"]],[32,34,["H4196"]]]},{"k":2787,"v":[[0,4,["H7126"]],[4,7,["H4480","H2077"]],[7,11,["H8002"]],[11,16,["H801"]],[16,19,["H3068"]],[19,21,["H2459"]],[21,25,["H8549"]],[25,26,["H451"]],[26,31,["H5493"]],[31,33,["H5980"]],[33,35,["H6096"]],[35,38,["H2459"]],[38,40,["H3680","(H853)"]],[40,42,["H7130"]],[42,44,["H3605"]],[44,46,["H2459"]],[46,47,["H834"]],[47,49,["H5921"]],[49,51,["H7130"]]]},{"k":2788,"v":[[0,3,["H8147"]],[3,4,["H3629"]],[4,7,["H2459"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H834"]],[12,14,["H5921"]],[14,16,["H3689"]],[16,19,["H3508"]],[19,20,["H5921"]],[20,22,["H3516"]],[22,23,["H5921"]],[23,25,["H3629"]],[25,30,["H5493"]]]},{"k":2789,"v":[[0,3,["H3548"]],[3,5,["H6999"]],[5,9,["H4196"]],[9,13,["H3899"]],[13,19,["H801"]],[19,22,["H3068"]]]},{"k":2790,"v":[[0,2,["H518"]],[2,4,["H7133"]],[4,7,["H5795"]],[7,11,["H7126"]],[11,13,["H6440"]],[13,15,["H3068"]]]},{"k":2791,"v":[[0,4,["H5564","(H853)"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,9,["H7218"]],[9,13,["H7819"]],[13,15,["H6440"]],[15,17,["H168"]],[17,20,["H4150"]],[20,23,["H1121"]],[23,25,["H175"]],[25,27,["H2236","(H853)"]],[27,29,["H1818"]],[29,31,["H5921"]],[31,33,["H4196"]],[33,35,["H5439"]]]},{"k":2792,"v":[[0,4,["H7126"]],[4,5,["H4480"]],[5,7,["H7133"]],[7,13,["H801"]],[13,16,["H3068","(H853)"]],[16,18,["H2459"]],[18,20,["H3680","(H853)"]],[20,22,["H7130"]],[22,24,["H3605"]],[24,26,["H2459"]],[26,27,["H834"]],[27,29,["H5921"]],[29,31,["H7130"]]]},{"k":2793,"v":[[0,3,["H8147"]],[3,4,["H3629"]],[4,7,["H2459"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H834"]],[12,14,["H5921"]],[14,16,["H3689"]],[16,19,["H3508"]],[19,20,["H5921"]],[20,22,["H3516"]],[22,23,["H5921"]],[23,25,["H3629"]],[25,30,["H5493"]]]},{"k":2794,"v":[[0,3,["H3548"]],[3,5,["H6999"]],[5,9,["H4196"]],[9,13,["H3899"]],[13,19,["H801"]],[19,22,["H5207"]],[22,23,["H7381"]],[23,24,["H3605"]],[24,26,["H2459"]],[26,29,["H3068"]]]},{"k":2795,"v":[[0,5,["H5769"]],[5,6,["H2708"]],[6,9,["H1755"]],[9,11,["H3605"]],[11,13,["H4186"]],[13,16,["H398"]],[16,17,["H3808","H3605"]],[17,18,["H2459"]],[18,20,["H1818"]]]},{"k":2796,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2797,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H559"]],[7,8,["H3588"]],[8,10,["H5315"]],[10,12,["H2398"]],[12,14,["H7684"]],[14,16,["H4480","H3605"]],[16,19,["H4687"]],[19,22,["H3068"]],[22,25,["H834"]],[25,27,["H3808"]],[27,30,["H6213"]],[30,33,["H6213"]],[33,35,["H4480","H259"]],[35,37,["H4480","H2007"]]]},{"k":2798,"v":[[0,1,["H518"]],[1,3,["H3548"]],[3,6,["H4899"]],[6,8,["H2398"]],[8,12,["H819"]],[12,15,["H5971"]],[15,19,["H7126"]],[19,20,["H5921"]],[20,22,["H2403"]],[22,23,["H834"]],[23,26,["H2398"]],[26,28,["H1121","H1241"]],[28,29,["H6499"]],[29,31,["H8549"]],[31,34,["H3068"]],[34,38,["H2403"]]]},{"k":2799,"v":[[0,4,["H935","(H853)"]],[4,6,["H6499"]],[6,7,["H413"]],[7,9,["H6607"]],[9,12,["H168"]],[12,15,["H4150"]],[15,16,["H6440"]],[16,18,["H3068"]],[18,21,["H5564","(H853)"]],[21,23,["H3027"]],[23,24,["H5921"]],[24,26,["H6499"]],[26,27,["H7218"]],[27,29,["H7819","(H853)"]],[29,31,["H6499"]],[31,32,["H6440"]],[32,34,["H3068"]]]},{"k":2800,"v":[[0,3,["H3548"]],[3,6,["H4899"]],[6,8,["H3947"]],[8,12,["H4480","H1818","H6499"]],[12,14,["H935"]],[14,16,["H413"]],[16,18,["H168"]],[18,21,["H4150"]]]},{"k":2801,"v":[[0,3,["H3548"]],[3,5,["H2881","(H853)"]],[5,7,["H676"]],[7,10,["H1818"]],[10,12,["H5137"]],[12,13,["H4480"]],[13,15,["H1818"]],[15,16,["H7651"]],[16,17,["H6471"]],[17,18,["H6440"]],[18,20,["H3068","(H853)"]],[20,21,["H6440"]],[21,23,["H6532"]],[23,26,["H6944"]]]},{"k":2802,"v":[[0,3,["H3548"]],[3,5,["H5414"]],[5,7,["H4480"]],[7,9,["H1818"]],[9,10,["H5921"]],[10,12,["H7161"]],[12,15,["H4196"]],[15,17,["H5561"]],[17,18,["H7004"]],[18,19,["H6440"]],[19,21,["H3068"]],[21,22,["H834"]],[22,26,["H168"]],[26,29,["H4150"]],[29,32,["H8210"]],[32,33,["H3605"]],[33,35,["H1818"]],[35,38,["H6499"]],[38,39,["H413"]],[39,41,["H3247"]],[41,44,["H4196"]],[44,48,["H5930"]],[48,49,["H834"]],[49,53,["H6607"]],[53,56,["H168"]],[56,59,["H4150"]]]},{"k":2803,"v":[[0,5,["H7311"]],[5,6,["H4480"]],[6,8,["H3605"]],[8,10,["H2459"]],[10,13,["H6499"]],[13,17,["H2403","(H853)"]],[17,19,["H2459"]],[19,21,["H3680","H5921"]],[21,23,["H7130"]],[23,25,["H3605"]],[25,27,["H2459"]],[27,28,["H834"]],[28,30,["H5921"]],[30,32,["H7130"]]]},{"k":2804,"v":[[0,3,["H8147"]],[3,4,["H3629"]],[4,7,["H2459"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H834"]],[12,14,["H5921"]],[14,16,["H3689"]],[16,19,["H3508"]],[19,20,["H5921"]],[20,22,["H3516"]],[22,23,["H5921"]],[23,25,["H3629"]],[25,30,["H5493"]]]},{"k":2805,"v":[[0,1,["H834"]],[1,5,["H7311"]],[5,8,["H4480","H7794"]],[8,11,["H2077"]],[11,14,["H8002"]],[14,17,["H3548"]],[17,19,["H6999"]],[19,21,["H5921"]],[21,23,["H4196"]],[23,27,["H5930"]]]},{"k":2806,"v":[[0,3,["H5785"]],[3,6,["H6499"]],[6,8,["H3605"]],[8,10,["H1320"]],[10,11,["H5921"]],[11,13,["H7218"]],[13,15,["H5921"]],[15,17,["H3767"]],[17,20,["H7130"]],[20,23,["H6569"]]]},{"k":2807,"v":[[0,1,["(H853)"]],[1,3,["H3605"]],[3,4,["H6499"]],[4,8,["H3318"]],[8,9,["H413","H4480","H2351"]],[9,11,["H4264"]],[11,12,["H413"]],[12,14,["H2889"]],[14,15,["H4725"]],[15,18,["H1880"]],[18,21,["H8211"]],[21,23,["H8313"]],[23,25,["H5921"]],[25,27,["H6086"]],[27,29,["H784"]],[29,30,["H5921"]],[30,32,["H1880"]],[32,35,["H8211"]],[35,39,["H8313"]]]},{"k":2808,"v":[[0,2,["H518"]],[2,4,["H3605"]],[4,5,["H5712"]],[5,7,["H3478"]],[7,10,["H7686"]],[10,13,["H1697"]],[13,15,["H5956"]],[15,18,["H4480","H5869"]],[18,21,["H6951"]],[21,25,["H6213"]],[25,29,["H259","H4480","H3605"]],[29,31,["H4687"]],[31,34,["H3068"]],[34,37,["H834"]],[37,39,["H3808"]],[39,41,["H6213"]],[41,44,["H816"]]]},{"k":2809,"v":[[0,3,["H2403"]],[3,4,["H834"]],[4,7,["H2398"]],[7,8,["H5921"]],[8,11,["H3045"]],[11,14,["H6951"]],[14,16,["H7126"]],[16,18,["H1121","H1241"]],[18,19,["H6499"]],[19,22,["H2403"]],[22,24,["H935"]],[24,26,["H6440"]],[26,28,["H168"]],[28,31,["H4150"]]]},{"k":2810,"v":[[0,3,["H2205"]],[3,6,["H5712"]],[6,8,["H5564","(H853)"]],[8,10,["H3027"]],[10,11,["H5921"]],[11,13,["H7218"]],[13,16,["H6499"]],[16,17,["H6440"]],[17,19,["H3068"]],[19,20,["(H853)"]],[20,22,["H6499"]],[22,25,["H7819"]],[25,26,["H6440"]],[26,28,["H3068"]]]},{"k":2811,"v":[[0,3,["H3548"]],[3,6,["H4899"]],[6,8,["H935"]],[8,12,["H4480","H1818","H6499"]],[12,13,["H413"]],[13,15,["H168"]],[15,18,["H4150"]]]},{"k":2812,"v":[[0,3,["H3548"]],[3,5,["H2881"]],[5,7,["H676"]],[7,10,["H4480"]],[10,12,["H1818"]],[12,14,["H5137"]],[14,16,["H7651"]],[16,17,["H6471"]],[17,18,["H6440"]],[18,20,["H3068"]],[20,21,["(H853)"]],[21,22,["H6440"]],[22,24,["H6532"]]]},{"k":2813,"v":[[0,4,["H5414"]],[4,6,["H4480"]],[6,8,["H1818"]],[8,9,["H5921"]],[9,11,["H7161"]],[11,14,["H4196"]],[14,15,["H834"]],[15,17,["H6440"]],[17,19,["H3068"]],[19,20,["H834"]],[20,24,["H168"]],[24,27,["H4150"]],[27,31,["H8210"]],[31,32,["H3605"]],[32,34,["H1818"]],[34,35,["H413"]],[35,37,["H3247"]],[37,40,["H4196"]],[40,44,["H5930"]],[44,45,["H834"]],[45,49,["H6607"]],[49,52,["H168"]],[52,55,["H4150"]]]},{"k":2814,"v":[[0,4,["H7311"]],[4,5,["H3605"]],[5,7,["H2459"]],[7,8,["H4480"]],[8,11,["H6999"]],[11,15,["H4196"]]]},{"k":2815,"v":[[0,4,["H6213"]],[4,7,["H6499"]],[7,8,["H834"]],[8,10,["H6213"]],[10,13,["H6499"]],[13,17,["H2403"]],[17,18,["H3651"]],[18,21,["H6213"]],[21,26,["H3548"]],[26,30,["H3722"]],[30,31,["H5921"]],[31,37,["H5545"]],[37,38,[]]]},{"k":2816,"v":[[0,5,["H3318","(H853)"]],[5,7,["H6499"]],[7,8,["H413","H4480","H2351"]],[8,10,["H4264"]],[10,12,["H8313"]],[12,14,["H834"]],[14,16,["H8313","(H853)"]],[16,18,["H7223"]],[18,19,["H6499"]],[19,20,["H1931"]],[20,24,["H2403"]],[24,27,["H6951"]]]},{"k":2817,"v":[[0,1,["H834"]],[1,3,["H5387"]],[3,5,["H2398"]],[5,7,["H6213"]],[7,10,["H7684"]],[10,13,["H259","H4480","H3605"]],[13,15,["H4687"]],[15,18,["H3068"]],[18,20,["H430"]],[20,23,["H834"]],[23,25,["H3808"]],[25,27,["H6213"]],[27,30,["H816"]]]},{"k":2818,"v":[[0,1,["H176"]],[1,4,["H2403"]],[4,5,["H834"]],[5,8,["H2398"]],[8,12,["H3045","H413"]],[12,15,["H935","(H853)"]],[15,17,["H7133"]],[17,19,["H8163"]],[19,22,["H5795"]],[22,24,["H2145"]],[24,26,["H8549"]]]},{"k":2819,"v":[[0,4,["H5564"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,9,["H7218"]],[9,12,["H8163"]],[12,14,["H7819"]],[14,18,["H4725"]],[18,19,["H834"]],[19,21,["H7819","(H853)"]],[21,24,["H5930"]],[24,25,["H6440"]],[25,27,["H3068"]],[27,28,["H1931"]],[28,32,["H2403"]]]},{"k":2820,"v":[[0,3,["H3548"]],[3,5,["H3947"]],[5,6,["H4480"]],[6,8,["H1818"]],[8,12,["H2403"]],[12,15,["H676"]],[15,17,["H5414"]],[17,19,["H5921"]],[19,21,["H7161"]],[21,24,["H4196"]],[24,27,["H5930"]],[27,31,["H8210"]],[31,33,["H1818"]],[33,34,["H413"]],[34,36,["H3247"]],[36,39,["H4196"]],[39,42,["H5930"]]]},{"k":2821,"v":[[0,4,["H6999"]],[4,5,["H3605"]],[5,7,["H2459"]],[7,10,["H4196"]],[10,13,["H2459"]],[13,16,["H2077"]],[16,19,["H8002"]],[19,22,["H3548"]],[22,26,["H3722"]],[26,27,["H5921"]],[27,32,["H4480","H2403"]],[32,37,["H5545"]],[37,38,[]]]},{"k":2822,"v":[[0,2,["H518"]],[2,3,["H259"]],[3,4,["H5315"]],[4,8,["H4480","H5971","H776"]],[8,9,["H2398"]],[9,11,["H7684"]],[11,14,["H6213"]],[14,17,["H259"]],[17,20,["H4480","H4687"]],[20,23,["H3068"]],[23,26,["H834"]],[26,28,["H3808"]],[28,31,["H6213"]],[31,34,["H816"]]]},{"k":2823,"v":[[0,1,["H176"]],[1,4,["H2403"]],[4,5,["H834"]],[5,8,["H2398"]],[8,12,["H3045","H413"]],[12,16,["H935"]],[16,18,["H7133"]],[18,20,["H8166"]],[20,23,["H5795"]],[23,25,["H5347"]],[25,27,["H8549"]],[27,28,["H5921"]],[28,30,["H2403"]],[30,31,["H834"]],[31,34,["H2398"]]]},{"k":2824,"v":[[0,4,["H5564","(H853)"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,9,["H7218"]],[9,13,["H2403"]],[13,15,["H7819","(H853)"]],[15,18,["H2403"]],[18,21,["H4725"]],[21,25,["H5930"]]]},{"k":2825,"v":[[0,3,["H3548"]],[3,5,["H3947"]],[5,8,["H4480","H1818"]],[8,12,["H676"]],[12,14,["H5414"]],[14,16,["H5921"]],[16,18,["H7161"]],[18,21,["H4196"]],[21,24,["H5930"]],[24,28,["H8210"]],[28,29,["H3605"]],[29,31,["H1818"]],[31,33,["H413"]],[33,35,["H3247"]],[35,38,["H4196"]]]},{"k":2826,"v":[[0,5,["H5493"]],[5,6,["H3605"]],[6,8,["H2459"]],[8,10,["H834"]],[10,12,["H2459"]],[12,15,["H5493"]],[15,16,["H4480"]],[16,17,["H5921"]],[17,19,["H2077"]],[19,22,["H8002"]],[22,25,["H3548"]],[25,27,["H6999"]],[27,31,["H4196"]],[31,34,["H5207"]],[34,35,["H7381"]],[35,38,["H3068"]],[38,41,["H3548"]],[41,45,["H3722"]],[45,46,["H5921"]],[46,52,["H5545"]],[52,53,[]]]},{"k":2827,"v":[[0,2,["H518"]],[2,4,["H935"]],[4,6,["H3532"]],[6,9,["H2403"]],[9,10,["H7133"]],[10,13,["H935"]],[13,16,["H5347"]],[16,18,["H8549"]]]},{"k":2828,"v":[[0,4,["H5564","(H853)"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,9,["H7218"]],[9,13,["H2403"]],[13,15,["H7819"]],[15,20,["H2403"]],[20,23,["H4725"]],[23,24,["H834"]],[24,26,["H7819","(H853)"]],[26,29,["H5930"]]]},{"k":2829,"v":[[0,3,["H3548"]],[3,5,["H3947"]],[5,8,["H4480","H1818"]],[8,12,["H2403"]],[12,15,["H676"]],[15,17,["H5414"]],[17,19,["H5921"]],[19,21,["H7161"]],[21,24,["H4196"]],[24,27,["H5930"]],[27,31,["H8210"]],[31,32,["H3605"]],[32,34,["H1818"]],[34,36,["H413"]],[36,38,["H3247"]],[38,41,["H4196"]]]},{"k":2830,"v":[[0,5,["H5493"]],[5,6,["H3605"]],[6,8,["H2459"]],[8,10,["H834"]],[10,12,["H2459"]],[12,15,["H3775"]],[15,18,["H5493"]],[18,21,["H4480","H2077"]],[21,25,["H8002"]],[25,28,["H3548"]],[28,30,["H6999"]],[30,34,["H4196"]],[34,36,["H5921"]],[36,41,["H801"]],[41,44,["H3068"]],[44,47,["H3548"]],[47,51,["H3722"]],[51,52,["H5921"]],[52,54,["H2403"]],[54,55,["H834"]],[55,58,["H2398"]],[58,63,["H5545"]],[63,64,[]]]},{"k":2831,"v":[[0,2,["H3588"]],[2,4,["H5315"]],[4,5,["H2398"]],[5,7,["H8085"]],[7,9,["H6963"]],[9,11,["H423"]],[11,15,["H5707"]],[15,16,["H176"]],[16,19,["H7200"]],[19,20,["H176"]],[20,21,["H3045"]],[21,24,["H518"]],[24,27,["H3808"]],[27,28,["H5046"]],[28,33,["H5375"]],[33,35,["H5771"]]]},{"k":2832,"v":[[0,1,["H176"]],[1,4,["H5315"]],[4,5,["H5060"]],[5,6,["H3605"]],[6,7,["H2931"]],[7,8,["H1697"]],[8,9,["H176"]],[9,13,["H5038"]],[13,16,["H2931"]],[16,17,["H2416"]],[17,18,["H176"]],[18,20,["H5038"]],[20,22,["H2931"]],[22,23,["H929"]],[23,24,["H176"]],[24,26,["H5038"]],[26,28,["H2931"]],[28,30,["H8318"]],[30,35,["H5956"]],[35,36,["H4480"]],[36,38,["H1931"]],[38,42,["H2931"]],[42,44,["H816"]]]},{"k":2833,"v":[[0,1,["H176"]],[1,2,["H3588"]],[2,4,["H5060"]],[4,6,["H2932"]],[6,8,["H120"]],[8,9,["H3605"]],[9,10,["H2932"]],[10,13,["H834"]],[13,18,["H2930"]],[18,23,["H5956"]],[23,24,["H4480"]],[24,27,["H1931"]],[27,28,["H3045"]],[28,35,["H816"]]]},{"k":2834,"v":[[0,1,["H176"]],[1,2,["H3588"]],[2,4,["H5315"]],[4,5,["H7650"]],[5,6,["H981"]],[6,9,["H8193"]],[9,12,["H7489"]],[12,13,["H176"]],[13,16,["H3190"]],[16,17,["H3605","H834"]],[17,22,["H120"]],[22,24,["H981"]],[24,27,["H7621"]],[27,31,["H5956"]],[31,32,["H4480"]],[32,35,["H1931"]],[35,36,["H3045"]],[36,43,["H816"]],[43,45,["H259"]],[45,47,["H4480","H428"]]]},{"k":2835,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,9,["H816"]],[9,11,["H259"]],[11,13,["H4480","H428"]],[13,18,["H3034"]],[18,19,["H834"]],[19,22,["H2398"]],[22,23,["H5921"]],[23,25,[]]]},{"k":2836,"v":[[0,4,["H935","(H853)"]],[4,7,["H817"]],[7,10,["H3068"]],[10,11,["H5921"]],[11,13,["H2403"]],[13,14,["H834"]],[14,17,["H2398"]],[17,19,["H5347"]],[19,20,["H4480"]],[20,22,["H6629"]],[22,24,["H3776"]],[24,25,["H176"]],[25,27,["H8166"]],[27,30,["H5795"]],[30,34,["H2403"]],[34,37,["H3548"]],[37,41,["H3722"]],[41,42,["H5921"]],[42,46,["H4480","H2403"]]]},{"k":2837,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,8,["H5060","H3027","H1767"]],[8,10,["H7716"]],[10,14,["H935","(H853)"]],[14,17,["H817"]],[17,18,["H834"]],[18,21,["H2398"]],[21,22,["H8147"]],[22,23,["H8449"]],[23,24,["H176"]],[24,25,["H8147"]],[25,26,["H1121"]],[26,27,["H3123"]],[27,30,["H3068"]],[30,31,["H259"]],[31,35,["H2403"]],[35,38,["H259"]],[38,42,["H5930"]]]},{"k":2838,"v":[[0,4,["H935"]],[4,6,["H413"]],[6,8,["H3548"]],[8,11,["H7126","(H853)"]],[11,13,["H834"]],[13,18,["H2403"]],[18,19,["H7223"]],[19,22,["H4454","(H853)"]],[22,24,["H7218"]],[24,25,["H4480","H4136"]],[25,27,["H6203"]],[27,30,["H3808"]],[30,33,["H914"]]]},{"k":2839,"v":[[0,4,["H5137"]],[4,7,["H4480","H1818"]],[7,11,["H2403"]],[11,12,["H5921"]],[12,14,["H7023"]],[14,17,["H4196"]],[17,20,["H7604"]],[20,23,["H1818"]],[23,27,["H4680"]],[27,28,["H413"]],[28,30,["H3247"]],[30,33,["H4196"]],[33,34,["H1931"]],[34,38,["H2403"]]]},{"k":2840,"v":[[0,4,["H6213"]],[4,6,["H8145"]],[6,10,["H5930"]],[10,14,["H4941"]],[14,17,["H3548"]],[17,21,["H3722"]],[21,22,["H5921"]],[22,26,["H4480","H2403"]],[26,27,["H834"]],[27,30,["H2398"]],[30,35,["H5545"]],[35,36,[]]]},{"k":2841,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,8,["H5381","H3027"]],[8,9,["H8147"]],[9,10,["H8449"]],[10,11,["H176"]],[11,12,["H8147"]],[12,13,["H1121"]],[13,14,["H3123"]],[14,17,["H834"]],[17,18,["H2398"]],[18,20,["H935","(H853)"]],[20,23,["H7133"]],[23,26,["H6224"]],[26,29,["H374"]],[29,32,["H5560"]],[32,36,["H2403"]],[36,39,["H7760"]],[39,40,["H3808"]],[40,41,["H8081"]],[41,42,["H5921"]],[42,44,["H3808"]],[44,47,["H5414"]],[47,49,["H3828"]],[49,50,["H5921"]],[50,51,["H3588"]],[51,52,["H1931"]],[52,56,["H2403"]]]},{"k":2842,"v":[[0,4,["H935"]],[4,6,["H413"]],[6,8,["H3548"]],[8,11,["H3548"]],[11,13,["H7061"]],[13,15,["H4393","H7062"]],[15,16,["H4480"]],[16,18,["(H853)"]],[18,20,["H234"]],[20,23,["H6999"]],[23,27,["H4196"]],[27,29,["H5921"]],[29,34,["H801"]],[34,37,["H3068"]],[37,38,["H1931"]],[38,42,["H2403"]]]},{"k":2843,"v":[[0,3,["H3548"]],[3,7,["H3722"]],[7,8,["H5921"]],[8,11,["H5921"]],[11,13,["H2403"]],[13,14,["H834"]],[14,17,["H2398"]],[17,19,["H4480","H259"]],[19,21,["H4480","H428"]],[21,26,["H5545"]],[26,32,["H1961"]],[32,34,["H3548"]],[34,38,["H4503"]]]},{"k":2844,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2845,"v":[[0,1,["H3588"]],[1,3,["H5315"]],[3,4,["H4603"]],[4,6,["H4604"]],[6,8,["H2398"]],[8,10,["H7684"]],[10,11,["H4480"]],[11,14,["H6944"]],[14,17,["H3068"]],[17,21,["H935","(H853)"]],[21,24,["H817"]],[24,27,["H3068"]],[27,29,["H352"]],[29,31,["H8549"]],[31,33,["H4480"]],[33,35,["H6629"]],[35,38,["H6187"]],[38,40,["H8255"]],[40,42,["H3701"]],[42,45,["H8255"]],[45,48,["H6944"]],[48,52,["H817"]]]},{"k":2846,"v":[[0,5,["H7999"]],[5,12,["H834","H2398"]],[12,13,["H4480"]],[13,16,["H6944"]],[16,19,["H3254"]],[19,22,["H2549"]],[22,23,["H5921"]],[23,25,["H5414"]],[25,29,["H3548"]],[29,32,["H3548"]],[32,36,["H3722"]],[36,37,["H5921"]],[37,41,["H352"]],[41,45,["H817"]],[45,50,["H5545"]],[50,51,[]]]},{"k":2847,"v":[[0,2,["H518"]],[2,4,["H5315"]],[4,5,["H2398"]],[5,7,["H6213"]],[7,8,["H259"]],[8,11,["H4480","H3605"]],[11,12,["H834"]],[12,14,["H3808"]],[14,17,["H6213"]],[17,20,["H4687"]],[20,23,["H3068"]],[23,26,["H3045"]],[26,28,["H3808"]],[28,32,["H816"]],[32,35,["H5375"]],[35,37,["H5771"]]]},{"k":2848,"v":[[0,4,["H935"]],[4,6,["H352"]],[6,8,["H8549"]],[8,10,["H4480"]],[10,12,["H6629"]],[12,15,["H6187"]],[15,19,["H817"]],[19,20,["H413"]],[20,22,["H3548"]],[22,25,["H3548"]],[25,29,["H3722"]],[29,30,["H5921"]],[30,32,["H5921"]],[32,34,["H7684"]],[34,35,["H834"]],[35,37,["H7683"]],[37,39,["H3045"]],[39,41,["H3808"]],[41,46,["H5545"]],[46,47,[]]]},{"k":2849,"v":[[0,1,["H1931"]],[1,5,["H817"]],[5,9,["H816","H816"]],[9,12,["H3068"]]]},{"k":2850,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2851,"v":[[0,1,["H3588"]],[1,3,["H5315"]],[3,4,["H2398"]],[4,6,["H4603"]],[6,8,["H4604"]],[8,11,["H3068"]],[11,13,["H3584"]],[13,16,["H5997"]],[16,24,["H6487"]],[24,25,["H176"]],[25,27,["H8667","H3027"]],[27,28,["H176"]],[28,35,["H1498"]],[35,36,["H176"]],[36,38,["H6231","(H853)"]],[38,40,["H5997"]]]},{"k":2852,"v":[[0,1,["H176"]],[1,3,["H4672"]],[3,7,["H9"]],[7,9,["H3584"]],[9,13,["H7650"]],[13,14,["H5921","H8267"]],[14,15,["H5921"]],[15,16,["H259"]],[16,18,["H4480","H3605"]],[18,20,["H834"]],[20,22,["H120"]],[22,23,["H6213"]],[23,24,["H2398"]],[24,25,["H2007"]]]},{"k":2853,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,8,["H2398"]],[8,11,["H816"]],[11,15,["H7725","(H853)"]],[15,16,["H1500"]],[16,17,["H834"]],[17,21,["H1497"]],[21,22,["H176","(H853)"]],[22,24,["H6233"]],[24,25,["H834"]],[25,29,["H6231"]],[29,30,["H176","(H853)"]],[30,31,["H6487"]],[31,32,["H834"]],[32,37,["H6485","H854"]],[37,38,["H176","(H853)"]],[38,41,["H9"]],[41,42,["H834"]],[42,44,["H4672"]]]},{"k":2854,"v":[[0,1,["H176"]],[1,3,["H4480","H3605"]],[3,5,["H834"]],[5,8,["H7650","H5921"]],[8,9,["H8267"]],[9,13,["H7999"]],[13,17,["H7218"]],[17,20,["H3254"]],[20,23,["H2549"]],[23,25,["H5921"]],[25,27,["H5414"]],[27,32,["H834"]],[32,33,["H1931"]],[33,37,["H3119"]],[37,41,["H819"]]]},{"k":2855,"v":[[0,4,["H935"]],[4,7,["H817"]],[7,10,["H3068"]],[10,12,["H352"]],[12,14,["H8549"]],[14,16,["H4480"]],[16,18,["H6629"]],[18,21,["H6187"]],[21,25,["H817"]],[25,26,["H413"]],[26,28,["H3548"]]]},{"k":2856,"v":[[0,3,["H3548"]],[3,7,["H3722"]],[7,8,["H5921"]],[8,10,["H6440"]],[10,12,["H3068"]],[12,17,["H5545"]],[17,19,["H5921"]],[19,21,["H259"]],[21,23,["H4480","H3605"]],[23,24,["H834"]],[24,27,["H6213"]],[27,29,["H819"]],[29,30,[]]]},{"k":2857,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2858,"v":[[0,1,["H6680","(H853)"]],[1,2,["H175"]],[2,5,["H1121"]],[5,6,["H559"]],[6,7,["H2063"]],[7,10,["H8451"]],[10,14,["H5930"]],[14,15,["H1931"]],[15,19,["H5930"]],[19,21,["H5921"]],[21,23,["H4169"]],[23,24,["H5921"]],[24,26,["H4196"]],[26,27,["H3605"]],[27,28,["H3915"]],[28,29,["H5704"]],[29,31,["H1242"]],[31,34,["H784"]],[34,37,["H4196"]],[37,40,["H3344"]],[40,42,[]]]},{"k":2859,"v":[[0,3,["H3548"]],[3,6,["H3847"]],[6,8,["H906"]],[8,9,["H4055"]],[9,12,["H906"]],[12,13,["H4370"]],[13,16,["H3847"]],[16,17,["H5921"]],[17,19,["H1320"]],[19,22,["H7311","(H853)"]],[22,24,["H1880"]],[24,25,["H834"]],[25,27,["H784"]],[27,29,["H398"]],[29,30,["H854"]],[30,33,["H5930"]],[33,34,["H5921"]],[34,36,["H4196"]],[36,40,["H7760"]],[40,42,["H681"]],[42,44,["H4196"]]]},{"k":2860,"v":[[0,5,["H6584","(H853)"]],[5,7,["H899"]],[7,10,["H3847"]],[10,11,["H312"]],[11,12,["H899"]],[12,15,["H3318","(H853)"]],[15,17,["H1880"]],[17,18,["H413","H4480","H2351"]],[18,20,["H4264"]],[20,21,["H413"]],[21,23,["H2889"]],[23,24,["H4725"]]]},{"k":2861,"v":[[0,3,["H784"]],[3,4,["H5921"]],[4,6,["H4196"]],[6,9,["H3344"]],[9,14,["H3808"]],[14,17,["H3518"]],[17,20,["H3548"]],[20,22,["H1197"]],[22,23,["H6086"]],[23,24,["H5921"]],[24,27,["H1242","H1242"]],[27,29,["H6186"]],[29,32,["H5930"]],[32,35,["H5921"]],[35,40,["H6999"]],[40,41,["H5921"]],[41,43,["H2459"]],[43,47,["H8002"]]]},{"k":2862,"v":[[0,2,["H784"]],[2,4,["H8548"]],[4,6,["H3344"]],[6,7,["H5921"]],[7,9,["H4196"]],[9,12,["H3808"]],[12,14,["H3518"]]]},{"k":2863,"v":[[0,2,["H2063"]],[2,5,["H8451"]],[5,9,["H4503"]],[9,11,["H1121"]],[11,13,["H175"]],[13,15,["H7126"]],[15,17,["H6440"]],[17,19,["H3068"]],[19,20,["H413","H6440"]],[20,22,["H4196"]]]},{"k":2864,"v":[[0,4,["H7311"]],[4,5,["H4480"]],[5,8,["H7062"]],[8,11,["H4480","H5560"]],[11,15,["H4503"]],[15,19,["H4480","H8081"]],[19,22,["H3605"]],[22,24,["H3828"]],[24,25,["H834"]],[25,27,["H5921"]],[27,30,["H4503"]],[30,33,["H6999"]],[33,37,["H4196"]],[37,40,["H5207"]],[40,41,["H7381"]],[41,44,["H234"]],[44,49,["H3068"]]]},{"k":2865,"v":[[0,3,["H3498"]],[3,4,["H4480"]],[4,6,["H175"]],[6,9,["H1121"]],[9,10,["H398"]],[10,13,["H4682"]],[13,17,["H398"]],[17,20,["H6918"]],[20,21,["H4725"]],[21,24,["H2691"]],[24,27,["H168"]],[27,30,["H4150"]],[30,33,["H398"]],[33,34,[]]]},{"k":2866,"v":[[0,3,["H3808"]],[3,5,["H644"]],[5,7,["H2557"]],[7,10,["H5414"]],[10,16,["H2506"]],[16,22,["H4480","H801"]],[22,23,["H1931"]],[23,26,["H6944","H6944"]],[26,31,["H2403"]],[31,36,["H817"]]]},{"k":2867,"v":[[0,1,["H3605"]],[1,3,["H2145"]],[3,6,["H1121"]],[6,8,["H175"]],[8,10,["H398"]],[10,17,["H2706"]],[17,19,["H5769"]],[19,22,["H1755"]],[22,31,["H4480","H801","H3068"]],[31,33,["H3605"]],[33,34,["H834"]],[34,35,["H5060"]],[35,39,["H6942"]]]},{"k":2868,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2869,"v":[[0,1,["H2088"]],[1,4,["H7133"]],[4,6,["H175"]],[6,10,["H1121"]],[10,11,["H834"]],[11,14,["H7126"]],[14,17,["H3068"]],[17,20,["H3117"]],[20,24,["H4886"]],[24,27,["H6224"]],[27,30,["H374"]],[30,33,["H5560"]],[33,37,["H4503"]],[37,38,["H8548"]],[38,39,["H4276"]],[39,44,["H1242"]],[44,46,["H4276"]],[46,49,["H6153"]]]},{"k":2870,"v":[[0,1,["H5921"]],[1,3,["H4227"]],[3,7,["H6213"]],[7,9,["H8081"]],[9,14,["H7246"]],[14,19,["H935"]],[19,22,["H8601"]],[22,23,["H6595"]],[23,27,["H4503"]],[27,30,["H7126"]],[30,33,["H5207"]],[33,34,["H7381"]],[34,37,["H3068"]]]},{"k":2871,"v":[[0,3,["H3548"]],[3,6,["H4480","H1121"]],[6,9,["H4899"]],[9,12,["H8478"]],[12,14,["H6213"]],[14,19,["H2706"]],[19,21,["H5769"]],[21,24,["H3068"]],[24,28,["H3632"]],[28,29,["H6999"]]]},{"k":2872,"v":[[0,2,["H3605"]],[2,4,["H4503"]],[4,7,["H3548"]],[7,9,["H1961"]],[9,10,["H3632"]],[10,14,["H3808"]],[14,16,["H398"]]]},{"k":2873,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2874,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,3,["H175"]],[3,5,["H413"]],[5,7,["H1121"]],[7,8,["H559"]],[8,9,["H2063"]],[9,12,["H8451"]],[12,16,["H2403"]],[16,19,["H4725"]],[19,20,["H834"]],[20,23,["H5930"]],[23,25,["H7819"]],[25,29,["H2403"]],[29,31,["H7819"]],[31,32,["H6440"]],[32,34,["H3068"]],[34,35,["H1931"]],[35,38,["H6944","H6944"]]]},{"k":2875,"v":[[0,2,["H3548"]],[2,7,["H2398","(H853)"]],[7,9,["H398"]],[9,13,["H6918"]],[13,14,["H4725"]],[14,18,["H398"]],[18,21,["H2691"]],[21,24,["H168"]],[24,27,["H4150"]]]},{"k":2876,"v":[[0,1,["H3605","H834"]],[1,3,["H5060"]],[3,5,["H1320"]],[5,9,["H6942"]],[9,11,["H834"]],[11,14,["H5137"]],[14,17,["H4480","H1818"]],[17,19,["H5921"]],[19,21,["H899"]],[21,24,["H3526"]],[24,26,["H834","H5921"]],[26,29,["H5137"]],[29,32,["H6918"]],[32,33,["H4725"]]]},{"k":2877,"v":[[0,3,["H2789"]],[3,4,["H3627"]],[4,5,["H834"]],[5,8,["H1310"]],[8,11,["H7665"]],[11,13,["H518"]],[13,16,["H1310"]],[16,19,["H5178"]],[19,20,["H3627"]],[20,25,["H4838"]],[25,27,["H7857"]],[27,29,["H4325"]]]},{"k":2878,"v":[[0,1,["H3605"]],[1,3,["H2145"]],[3,6,["H3548"]],[6,8,["H398"]],[8,10,["H1931"]],[10,13,["H6944","H6944"]]]},{"k":2879,"v":[[0,2,["H3808","H3605"]],[2,4,["H2403"]],[4,5,["H834"]],[5,9,["H4480","H1818"]],[9,11,["H935"]],[11,12,["H413"]],[12,14,["H168"]],[14,17,["H4150"]],[17,19,["H3722"]],[19,23,["H6944"]],[23,27,["H398"]],[27,31,["H8313"]],[31,34,["H784"]]]},{"k":2880,"v":[[0,2,["H2063"]],[2,5,["H8451"]],[5,9,["H817"]],[9,10,["H1931"]],[10,13,["H6944","H6944"]]]},{"k":2881,"v":[[0,3,["H4725"]],[3,4,["H834"]],[4,6,["H7819","(H853)"]],[6,9,["H5930"]],[9,12,["H7819","(H853)"]],[12,15,["H817"]],[15,18,["H1818"]],[18,22,["H2236"]],[22,24,["H5439"]],[24,25,["H5921"]],[25,27,["H4196"]]]},{"k":2882,"v":[[0,4,["H7126"]],[4,5,["H4480"]],[5,7,["H3605"]],[7,9,["H2459"]],[9,10,["(H853)"]],[10,12,["H451"]],[12,15,["H2459"]],[15,17,["H3680","(H853)"]],[17,19,["H7130"]]]},{"k":2883,"v":[[0,3,["H8147"]],[3,4,["H3629"]],[4,7,["H2459"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H834"]],[12,14,["H5921"]],[14,16,["H3689"]],[16,19,["H3508"]],[19,22,["H5921"]],[22,24,["H3516"]],[24,25,["H5921"]],[25,27,["H3629"]],[27,32,["H5493"]]]},{"k":2884,"v":[[0,3,["H3548"]],[3,5,["H6999"]],[5,9,["H4196"]],[9,15,["H801"]],[15,18,["H3068"]],[18,19,["H1931"]],[19,23,["H817"]]]},{"k":2885,"v":[[0,1,["H3605"]],[1,2,["H2145"]],[2,5,["H3548"]],[5,7,["H398"]],[7,12,["H398"]],[12,15,["H6918"]],[15,16,["H4725"]],[16,17,["H1931"]],[17,20,["H6944","H6944"]]]},{"k":2886,"v":[[0,4,["H2403"]],[4,10,["H817"]],[10,13,["H259"]],[13,14,["H8451"]],[14,18,["H3548"]],[18,19,["H834"]],[19,21,["H3722"]],[21,24,["H1961"]],[24,25,[]]]},{"k":2887,"v":[[0,3,["H3548"]],[3,5,["H7126","(H853)"]],[5,7,["H376"]],[7,9,["H5930"]],[9,12,["H3548"]],[12,14,["H1961"]],[14,18,["H5785"]],[18,22,["H5930"]],[22,23,["H834"]],[23,26,["H7126"]]]},{"k":2888,"v":[[0,2,["H3605"]],[2,5,["H4503"]],[5,6,["H834"]],[6,8,["H644"]],[8,11,["H8574"]],[11,13,["H3605"]],[13,16,["H6213"]],[16,19,["H4802"]],[19,21,["H5921"]],[21,23,["H4227"]],[23,25,["H1961"]],[25,27,["H3548"]],[27,29,["H7126"]],[29,30,[]]]},{"k":2889,"v":[[0,2,["H3605"]],[2,4,["H4503"]],[4,5,["H1101"]],[5,7,["H8081"]],[7,9,["H2720"]],[9,11,["H3605"]],[11,13,["H1121"]],[13,15,["H175"]],[15,16,["H1961"]],[16,17,["H376"]],[17,21,["H251"]]]},{"k":2890,"v":[[0,2,["H2063"]],[2,5,["H8451"]],[5,8,["H2077"]],[8,11,["H8002"]],[11,12,["H834"]],[12,15,["H7126"]],[15,18,["H3068"]]]},{"k":2891,"v":[[0,1,["H518"]],[1,3,["H7126"]],[3,5,["H5921"]],[5,7,["H8426"]],[7,11,["H7126"]],[11,12,["H5921"]],[12,14,["H2077"]],[14,16,["H8426"]],[16,17,["H4682"]],[17,18,["H2471"]],[18,19,["H1101"]],[19,21,["H8081"]],[21,23,["H4682"]],[23,24,["H7550"]],[24,25,["H4886"]],[25,27,["H8081"]],[27,29,["H2471"]],[29,30,["H1101"]],[30,32,["H8081"]],[32,35,["H5560"]],[35,36,["H7246"]]]},{"k":2892,"v":[[0,1,["H5921"]],[1,3,["H2471"]],[3,6,["H7126"]],[6,9,["H7133"]],[9,10,["H2557"]],[10,11,["H3899"]],[11,12,["H5921"]],[12,14,["H2077"]],[14,16,["H8426"]],[16,20,["H8002"]]]},{"k":2893,"v":[[0,2,["H4480"]],[2,6,["H7126"]],[6,7,["H259"]],[7,11,["H4480","H3605"]],[11,12,["H7133"]],[12,16,["H8641"]],[16,19,["H3068"]],[19,23,["H1961"]],[23,25,["H3548"]],[25,27,["H2236","(H853)"]],[27,29,["H1818"]],[29,33,["H8002"]]]},{"k":2894,"v":[[0,3,["H1320"]],[3,6,["H2077"]],[6,10,["H8002"]],[10,12,["H8426"]],[12,15,["H398"]],[15,18,["H3117"]],[18,22,["H7133"]],[22,25,["H3808"]],[25,26,["H5117"]],[26,28,["H4480"]],[28,30,["H5704"]],[30,32,["H1242"]]]},{"k":2895,"v":[[0,2,["H518"]],[2,4,["H2077"]],[4,7,["H7133"]],[7,10,["H5088"]],[10,11,["H176"]],[11,14,["H5071"]],[14,18,["H398"]],[18,21,["H3117"]],[21,24,["H7126","(H853)"]],[24,26,["H2077"]],[26,30,["H4480","H4283"]],[30,33,["H3498"]],[33,34,["H4480"]],[34,38,["H398"]]]},{"k":2896,"v":[[0,3,["H3498"]],[3,6,["H4480","H1320"]],[6,9,["H2077"]],[9,12,["H7992"]],[12,13,["H3117"]],[13,16,["H8313"]],[16,18,["H784"]]]},{"k":2897,"v":[[0,2,["H518"]],[2,6,["H4480","H1320"]],[6,9,["H2077"]],[9,13,["H8002"]],[13,17,["H398","H398"]],[17,20,["H7992"]],[20,21,["H3117"]],[21,24,["H3808"]],[24,26,["H7521"]],[26,27,["H3808"]],[27,31,["H2803"]],[31,35,["H7126"]],[35,39,["H1961"]],[39,41,["H6292"]],[41,44,["H5315"]],[44,46,["H398"]],[46,47,["H4480"]],[47,50,["H5375"]],[50,52,["H5771"]]]},{"k":2898,"v":[[0,3,["H1320"]],[3,4,["H834"]],[4,5,["H5060"]],[5,6,["H3605"]],[6,7,["H2931"]],[7,10,["H3808"]],[10,12,["H398"]],[12,16,["H8313"]],[16,18,["H784"]],[18,23,["H1320"]],[23,24,["H3605"]],[24,27,["H2889"]],[27,29,["H398"]],[29,30,["H1320"]]]},{"k":2899,"v":[[0,3,["H5315"]],[3,4,["H834"]],[4,5,["H398"]],[5,8,["H1320"]],[8,11,["H4480","H2077"]],[11,14,["H8002"]],[14,15,["H834"]],[15,19,["H3068"]],[19,22,["H2932"]],[22,23,["H5921"]],[23,26,["H1931"]],[26,27,["H5315"]],[27,31,["H3772"]],[31,34,["H4480","H5971"]]]},{"k":2900,"v":[[0,3,["H5315"]],[3,4,["H3588"]],[4,6,["H5060"]],[6,7,["H3605"]],[7,8,["H2931"]],[8,12,["H2932"]],[12,14,["H120"]],[14,15,["H176"]],[15,17,["H2931"]],[17,18,["H929"]],[18,19,["H176"]],[19,20,["H3605"]],[20,21,["H8263"]],[21,22,["H2931"]],[22,25,["H398"]],[25,28,["H4480","H1320"]],[28,31,["H2077"]],[31,34,["H8002"]],[34,35,["H834"]],[35,39,["H3068"]],[39,41,["H1931"]],[41,42,["H5315"]],[42,46,["H3772"]],[46,49,["H4480","H5971"]]]},{"k":2901,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2902,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H559"]],[7,10,["H398"]],[10,12,["H3808","H3605"]],[12,14,["H2459"]],[14,16,["H7794"]],[16,19,["H3775"]],[19,22,["H5795"]]]},{"k":2903,"v":[[0,3,["H2459"]],[3,10,["H5038"]],[10,13,["H2459"]],[13,20,["H2966"]],[20,23,["H6213"]],[23,25,["H3605"]],[25,27,["H4399"]],[27,34,["H3808","H398","H398"]],[34,36,[]]]},{"k":2904,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,3,["H398"]],[3,5,["H2459"]],[5,6,["H4480"]],[6,8,["H929"]],[8,10,["H834","H4480"]],[10,12,["H7126"]],[12,17,["H801"]],[17,20,["H3068"]],[20,23,["H5315"]],[23,25,["H398"]],[25,30,["H3772"]],[30,33,["H4480","H5971"]]]},{"k":2905,"v":[[0,4,["H398"]],[4,6,["H3808","H3605"]],[6,8,["H1818"]],[8,13,["H5775"]],[13,16,["H929"]],[16,18,["H3605"]],[18,21,["H4186"]]]},{"k":2906,"v":[[0,1,["H3605"]],[1,2,["H5315"]],[2,5,["H834"]],[5,6,["H398"]],[6,8,["H3605"]],[8,10,["H1818"]],[10,12,["H1931"]],[12,13,["H5315"]],[13,17,["H3772"]],[17,20,["H4480","H5971"]]]},{"k":2907,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2908,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H559"]],[7,10,["H7126","(H853)"]],[10,12,["H2077"]],[12,16,["H8002"]],[16,19,["H3068"]],[19,21,["H935","(H853)"]],[21,23,["H7133"]],[23,26,["H3068"]],[26,29,["H4480","H2077"]],[29,33,["H8002"]]]},{"k":2909,"v":[[0,3,["H3027"]],[3,5,["H935","(H853)"]],[5,13,["H801","H3068","(H853)"]],[13,15,["H2459"]],[15,16,["H5921"]],[16,18,["H2373"]],[18,22,["H935","(H853)"]],[22,25,["H2373"]],[25,28,["H5130","(H853)"]],[28,32,["H8573"]],[32,33,["H6440"]],[33,35,["H3068"]]]},{"k":2910,"v":[[0,3,["H3548"]],[3,5,["H6999","(H853)"]],[5,7,["H2459"]],[7,10,["H4196"]],[10,13,["H2373"]],[13,15,["H1961"]],[15,16,["H175"]],[16,19,["H1121"]]]},{"k":2911,"v":[[0,3,["H3225"]],[3,4,["H7785"]],[4,7,["H5414"]],[7,10,["H3548"]],[10,14,["H8641"]],[14,17,["H4480","H2077"]],[17,21,["H8002"]]]},{"k":2912,"v":[[0,4,["H4480","H1121"]],[4,6,["H175"]],[6,8,["H7126","(H853)"]],[8,10,["H1818"]],[10,14,["H8002"]],[14,17,["H2459"]],[17,19,["H1961"]],[19,21,["H3225"]],[21,22,["H7785"]],[22,25,["H4440"]]]},{"k":2913,"v":[[0,1,["H3588","(H853)"]],[1,3,["H8573"]],[3,4,["H2373"]],[4,7,["H8641"]],[7,8,["H7785"]],[8,11,["H3947"]],[11,12,["H4480","H854"]],[12,14,["H1121"]],[14,16,["H3478"]],[16,20,["H4480","H2077"]],[20,24,["H8002"]],[24,27,["H5414"]],[27,30,["H175"]],[30,32,["H3548"]],[32,36,["H1121"]],[36,39,["H2706"]],[39,41,["H5769"]],[41,43,["H4480","H854"]],[43,45,["H1121"]],[45,47,["H3478"]]]},{"k":2914,"v":[[0,1,["H2063"]],[1,7,["H4888"]],[7,9,["H175"]],[9,13,["H4888"]],[13,16,["H1121"]],[16,26,["H4480","H801","H3068"]],[26,29,["H3117"]],[29,32,["H7126"]],[32,42,["H3547","H3068"]]]},{"k":2915,"v":[[0,1,["H834"]],[1,3,["H3068"]],[3,4,["H6680"]],[4,7,["H5414"]],[7,9,["H4480","H854"]],[9,11,["H1121"]],[11,13,["H3478"]],[13,16,["H3117"]],[16,19,["H4886"]],[19,23,["H2708"]],[23,25,["H5769"]],[25,28,["H1755"]]]},{"k":2916,"v":[[0,1,["H2063"]],[1,4,["H8451"]],[4,8,["H5930"]],[8,12,["H4503"]],[12,17,["H2403"]],[17,22,["H817"]],[22,26,["H4394"]],[26,30,["H2077"]],[30,34,["H8002"]]]},{"k":2917,"v":[[0,1,["H834"]],[1,3,["H3068"]],[3,4,["H6680","(H853)"]],[4,5,["H4872"]],[5,7,["H2022"]],[7,8,["H5514"]],[8,11,["H3117"]],[11,14,["H6680","(H853)"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,20,["H7126","(H853)"]],[20,22,["H7133"]],[22,25,["H3068"]],[25,28,["H4057"]],[28,30,["H5514"]]]},{"k":2918,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":2919,"v":[[0,1,["H3947","(H853)"]],[1,2,["H175"]],[2,5,["H1121"]],[5,6,["H854"]],[6,10,["H899"]],[10,13,["H4888"]],[13,14,["H8081"]],[14,17,["H6499"]],[17,21,["H2403"]],[21,23,["H8147"]],[23,24,["H352"]],[24,27,["H5536"]],[27,30,["H4682"]]]},{"k":2920,"v":[[0,2,["H6950"]],[2,4,["H3605"]],[4,6,["H5712"]],[6,8,["H413"]],[8,10,["H6607"]],[10,13,["H168"]],[13,16,["H4150"]]]},{"k":2921,"v":[[0,2,["H4872"]],[2,3,["H6213"]],[3,4,["H834"]],[4,6,["H3068"]],[6,7,["H6680"]],[7,11,["H5712"]],[11,14,["H6950"]],[14,15,["H413"]],[15,17,["H6607"]],[17,20,["H168"]],[20,23,["H4150"]]]},{"k":2922,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5712"]],[6,7,["H2088"]],[7,10,["H1697"]],[10,11,["H834"]],[11,13,["H3068"]],[13,14,["H6680"]],[14,17,["H6213"]]]},{"k":2923,"v":[[0,2,["H4872"]],[2,3,["H7126","(H853)"]],[3,4,["H175"]],[4,7,["H1121"]],[7,9,["H7364"]],[9,12,["H4325"]]]},{"k":2924,"v":[[0,3,["H5414"]],[3,4,["H5921"]],[4,5,["(H853)"]],[5,7,["H3801"]],[7,9,["H2296"]],[9,13,["H73"]],[13,15,["H3847"]],[15,17,["H854"]],[17,19,["H4598"]],[19,21,["H5414","(H853)"]],[21,23,["H646"]],[23,24,["H5921"]],[24,28,["H2296"]],[28,33,["H2805"]],[33,36,["H646"]],[36,38,["H640"]],[38,42,[]]]},{"k":2925,"v":[[0,3,["H7760","(H853)"]],[3,5,["H2833"]],[5,6,["H5921"]],[6,10,["H5414"]],[10,11,["H413"]],[11,13,["H2833","(H853)"]],[13,15,["H224"]],[15,18,["H8550"]]]},{"k":2926,"v":[[0,3,["H7760","(H853)"]],[3,5,["H4701"]],[5,6,["H5921"]],[6,8,["H7218"]],[8,10,["H5921"]],[10,12,["H4701"]],[12,14,["H413"]],[14,16,["H4136","H6440"]],[16,19,["H7760","(H853)"]],[19,21,["H2091"]],[21,22,["H6731"]],[22,24,["H6944"]],[24,25,["H5145"]],[25,26,["H834"]],[26,28,["H3068"]],[28,29,["H6680","(H853)"]],[29,30,["H4872"]]]},{"k":2927,"v":[[0,2,["H4872"]],[2,3,["H3947","(H853)"]],[3,5,["H4888"]],[5,6,["H8081"]],[6,8,["H4886","(H853)"]],[8,10,["H4908"]],[10,12,["H3605"]],[12,13,["H834"]],[13,17,["H6942"]],[17,18,[]]]},{"k":2928,"v":[[0,3,["H5137"]],[3,4,["H4480"]],[4,5,["H5921"]],[5,7,["H4196"]],[7,8,["H7651"]],[8,9,["H6471"]],[9,11,["H4886","(H853)"]],[11,13,["H4196"]],[13,15,["H3605"]],[15,17,["H3627"]],[17,20,["H3595"]],[20,23,["H3653"]],[23,25,["H6942"]],[25,26,[]]]},{"k":2929,"v":[[0,3,["H3332"]],[3,7,["H4480","H8081","H4888"]],[7,8,["H5921"]],[8,9,["H175"]],[9,10,["H7218"]],[10,12,["H4886"]],[12,15,["H6942"]],[15,16,[]]]},{"k":2930,"v":[[0,2,["H4872"]],[2,3,["H7126","(H853)"]],[3,4,["H175"]],[4,5,["H1121"]],[5,9,["H3847","H3801"]],[9,12,["H2296"]],[12,15,["H73"]],[15,17,["H2280"]],[17,18,["H4021"]],[18,21,["H834"]],[21,23,["H3068"]],[23,24,["H6680","(H853)"]],[24,25,["H4872"]]]},{"k":2931,"v":[[0,3,["H5066","(H853)"]],[3,5,["H6499"]],[5,9,["H2403"]],[9,11,["H175"]],[11,14,["H1121"]],[14,15,["H5564","(H853)"]],[15,17,["H3027"]],[17,18,["H5921"]],[18,20,["H7218"]],[20,23,["H6499"]],[23,27,["H2403"]]]},{"k":2932,"v":[[0,3,["H7819"]],[3,6,["H4872"]],[6,7,["H3947","(H853)"]],[7,9,["H1818"]],[9,11,["H5414"]],[11,13,["H5921"]],[13,15,["H7161"]],[15,18,["H4196"]],[18,20,["H5439"]],[20,23,["H676"]],[23,25,["H2398","(H853)"]],[25,27,["H4196"]],[27,29,["H3332"]],[29,31,["H1818"]],[31,32,["H413"]],[32,34,["H3247"]],[34,37,["H4196"]],[37,39,["H6942"]],[39,43,["H3722"]],[43,44,["H5921"]],[44,45,[]]]},{"k":2933,"v":[[0,3,["H3947","(H853)"]],[3,4,["H3605"]],[4,6,["H2459"]],[6,7,["H834"]],[7,9,["H5921"]],[9,11,["H7130"]],[11,14,["H3508"]],[14,17,["H3516"]],[17,20,["H8147"]],[20,21,["H3629"]],[21,24,["H2459"]],[24,26,["H4872"]],[26,27,["H6999"]],[27,31,["H4196"]]]},{"k":2934,"v":[[0,3,["H6499"]],[3,6,["H5785"]],[6,8,["H1320"]],[8,11,["H6569"]],[11,13,["H8313"]],[13,15,["H784"]],[15,16,["H4480","H2351"]],[16,18,["H4264"]],[18,19,["H834"]],[19,21,["H3068"]],[21,22,["H6680","(H853)"]],[22,23,["H4872"]]]},{"k":2935,"v":[[0,3,["H7126","(H853)"]],[3,5,["H352"]],[5,9,["H5930"]],[9,11,["H175"]],[11,14,["H1121"]],[14,15,["H5564","(H853)"]],[15,17,["H3027"]],[17,18,["H5921"]],[18,20,["H7218"]],[20,23,["H352"]]]},{"k":2936,"v":[[0,3,["H7819"]],[3,6,["H4872"]],[6,7,["H2236","(H853)"]],[7,9,["H1818"]],[9,10,["H5921"]],[10,12,["H4196"]],[12,14,["H5439"]]]},{"k":2937,"v":[[0,3,["H5408"]],[3,5,["H352"]],[5,7,["H5409"]],[7,9,["H4872"]],[9,10,["H6999","(H853)"]],[10,12,["H7218"]],[12,15,["H5409"]],[15,18,["H6309"]]]},{"k":2938,"v":[[0,3,["H7364"]],[3,5,["H7130"]],[5,8,["H3767"]],[8,10,["H4325"]],[10,12,["H4872"]],[12,13,["H6999","(H853)"]],[13,15,["H3605"]],[15,16,["H352"]],[16,19,["H4196"]],[19,20,["H1931"]],[20,24,["H5930"]],[24,27,["H5207"]],[27,28,["H7381"]],[28,34,["H801"]],[34,37,["H3068"]],[37,38,["H834"]],[38,40,["H3068"]],[40,41,["H6680","(H853)"]],[41,42,["H4872"]]]},{"k":2939,"v":[[0,3,["H7126","(H853)"]],[3,5,["H8145"]],[5,6,["H352"]],[6,8,["H352"]],[8,10,["H4394"]],[10,12,["H175"]],[12,15,["H1121"]],[15,16,["H5564","(H853)"]],[16,18,["H3027"]],[18,19,["H5921"]],[19,21,["H7218"]],[21,24,["H352"]]]},{"k":2940,"v":[[0,3,["H7819"]],[3,6,["H4872"]],[6,7,["H3947"]],[7,10,["H4480","H1818"]],[10,14,["H5414"]],[14,16,["H5921"]],[16,18,["H8571"]],[18,20,["H175"]],[20,21,["H3233"]],[21,22,["H241"]],[22,24,["H5921"]],[24,26,["H931"]],[26,29,["H3233"]],[29,30,["H3027"]],[30,32,["H5921"]],[32,35,["H931"]],[35,38,["H3233"]],[38,39,["H7272"]]]},{"k":2941,"v":[[0,3,["H7126","(H853)"]],[3,4,["H175"]],[4,5,["H1121"]],[5,7,["H4872"]],[7,8,["H5414"]],[8,9,["H4480"]],[9,11,["H1818"]],[11,12,["H5921"]],[12,14,["H8571"]],[14,17,["H3233"]],[17,18,["H241"]],[18,20,["H5921"]],[20,22,["H931"]],[22,25,["H3233"]],[25,26,["H3027"]],[26,28,["H5921"]],[28,31,["H931"]],[31,34,["H3233"]],[34,35,["H7272"]],[35,37,["H4872"]],[37,38,["H2236","(H853)"]],[38,40,["H1818"]],[40,41,["H5921"]],[41,43,["H4196"]],[43,45,["H5439"]]]},{"k":2942,"v":[[0,3,["H3947","(H853)"]],[3,5,["H2459"]],[5,8,["H451"]],[8,10,["H3605"]],[10,12,["H2459"]],[12,13,["H834"]],[13,15,["H5921"]],[15,17,["H7130"]],[17,20,["H3508"]],[20,23,["H3516"]],[23,26,["H8147"]],[26,27,["H3629"]],[27,30,["H2459"]],[30,33,["H3225"]],[33,34,["H7785"]]]},{"k":2943,"v":[[0,5,["H4480","H5536"]],[5,8,["H4682"]],[8,9,["H834"]],[9,11,["H6440"]],[11,13,["H3068"]],[13,15,["H3947"]],[15,16,["H259"]],[16,17,["H4682"]],[17,18,["H2471"]],[18,20,["H259"]],[20,21,["H2471"]],[21,23,["H8081"]],[23,24,["H3899"]],[24,26,["H259"]],[26,27,["H7550"]],[27,29,["H7760"]],[29,31,["H5921"]],[31,33,["H2459"]],[33,35,["H5921"]],[35,37,["H3225"]],[37,38,["H7785"]]]},{"k":2944,"v":[[0,3,["H5414","(H853)"]],[3,4,["H3605"]],[4,5,["H5921"]],[5,6,["H175"]],[6,7,["H3709"]],[7,9,["H5921"]],[9,11,["H1121"]],[11,12,["H3709"]],[12,14,["H5130"]],[14,19,["H8573"]],[19,20,["H6440"]],[20,22,["H3068"]]]},{"k":2945,"v":[[0,2,["H4872"]],[2,3,["H3947"]],[3,6,["H4480","H5921"]],[6,8,["H3709"]],[8,10,["H6999"]],[10,14,["H4196"]],[14,15,["H5921"]],[15,18,["H5930"]],[18,19,["H1992"]],[19,21,["H4394"]],[21,24,["H5207"]],[24,25,["H7381"]],[25,26,["H1931"]],[26,32,["H801"]],[32,35,["H3068"]]]},{"k":2946,"v":[[0,2,["H4872"]],[2,3,["H3947","(H853)"]],[3,5,["H2373"]],[5,7,["H5130"]],[7,12,["H8573"]],[12,13,["H6440"]],[13,15,["H3068"]],[15,19,["H4480","H352"]],[19,21,["H4394"]],[21,23,["H1961"]],[23,24,["H4872"]],[24,25,["H4490"]],[25,26,["H834"]],[26,28,["H3068"]],[28,29,["H6680","(H853)"]],[29,30,["H4872"]]]},{"k":2947,"v":[[0,2,["H4872"]],[2,3,["H3947"]],[3,7,["H4480","H8081","H4888"]],[7,9,["H4480"]],[9,11,["H1818"]],[11,12,["H834"]],[12,14,["H5921"]],[14,16,["H4196"]],[16,18,["H5137"]],[18,20,["H5921"]],[20,21,["H175"]],[21,23,["H5921"]],[23,25,["H899"]],[25,27,["H5921"]],[27,29,["H1121"]],[29,31,["H5921"]],[31,33,["H1121"]],[33,34,["H899"]],[34,35,["H854"]],[35,38,["H6942","(H853)"]],[38,39,["H175"]],[39,42,["H899"]],[42,45,["H1121"]],[45,48,["H1121"]],[48,49,["H899"]],[49,50,["H854"]],[50,51,[]]]},{"k":2948,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H175"]],[5,7,["H413"]],[7,9,["H1121"]],[9,10,["H1310","(H853)"]],[10,12,["H1320"]],[12,15,["H6607"]],[15,18,["H168"]],[18,21,["H4150"]],[21,23,["H8033"]],[23,24,["H398"]],[24,28,["H3899"]],[28,29,["H834"]],[29,33,["H5536"]],[33,35,["H4394"]],[35,36,["H834"]],[36,38,["H6680"]],[38,39,["H559"]],[39,40,["H175"]],[40,43,["H1121"]],[43,45,["H398"]],[45,46,[]]]},{"k":2949,"v":[[0,4,["H3498"]],[4,7,["H1320"]],[7,11,["H3899"]],[11,14,["H8313"]],[14,16,["H784"]]]},{"k":2950,"v":[[0,4,["H3808"]],[4,6,["H3318"]],[6,9,["H4480","H6607"]],[9,12,["H168"]],[12,15,["H4150"]],[15,17,["H7651"]],[17,18,["H3117"]],[18,19,["H5704"]],[19,21,["H3117"]],[21,24,["H4394"]],[24,28,["H4390"]],[28,29,["H3588"]],[29,30,["H7651"]],[30,31,["H3117"]],[31,34,["H4390","(H853)","H3027"]],[34,35,[]]]},{"k":2951,"v":[[0,1,["H834"]],[1,4,["H6213"]],[4,5,["H2088"]],[5,6,["H3117"]],[6,9,["H3068"]],[9,11,["H6680"]],[11,13,["H6213"]],[13,17,["H3722"]],[17,18,["H5921"]],[18,19,[]]]},{"k":2952,"v":[[0,4,["H3427"]],[4,7,["H6607"]],[7,10,["H168"]],[10,13,["H4150"]],[13,14,["H3119"]],[14,16,["H3915"]],[16,17,["H7651"]],[17,18,["H3117"]],[18,20,["H8104","(H853)"]],[20,22,["H4931"]],[22,25,["H3068"]],[25,28,["H4191"]],[28,29,["H3808"]],[29,30,["H3588"]],[30,31,["H3651"]],[31,34,["H6680"]]]},{"k":2953,"v":[[0,2,["H175"]],[2,5,["H1121"]],[5,6,["H6213","(H853)"]],[6,7,["H3605"]],[7,8,["H1697"]],[8,9,["H834"]],[9,11,["H3068"]],[11,12,["H6680"]],[12,15,["H3027"]],[15,17,["H4872"]]]},{"k":2954,"v":[[0,5,["H1961"]],[5,8,["H8066"]],[8,9,["H3117"]],[9,11,["H4872"]],[11,12,["H7121"]],[12,13,["H175"]],[13,16,["H1121"]],[16,19,["H2205"]],[19,21,["H3478"]]]},{"k":2955,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H175"]],[5,6,["H3947"]],[6,9,["H1121","H1241"]],[9,10,["H5695"]],[10,14,["H2403"]],[14,17,["H352"]],[17,21,["H5930"]],[21,23,["H8549"]],[23,25,["H7126"]],[25,27,["H6440"]],[27,29,["H3068"]]]},{"k":2956,"v":[[0,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,9,["H1696"]],[9,10,["H559"]],[10,11,["H3947"]],[11,14,["H8163"]],[14,17,["H5795"]],[17,21,["H2403"]],[21,24,["H5695"]],[24,27,["H3532"]],[27,31,["H1121"]],[31,32,["H8141"]],[32,34,["H8549"]],[34,38,["H5930"]]]},{"k":2957,"v":[[0,3,["H7794"]],[3,6,["H352"]],[6,9,["H8002"]],[9,11,["H2076"]],[11,12,["H6440"]],[12,14,["H3068"]],[14,18,["H4503"]],[18,19,["H1101"]],[19,21,["H8081"]],[21,22,["H3588"]],[22,24,["H3117"]],[24,26,["H3068"]],[26,28,["H7200"]],[28,29,["H413"]],[29,30,[]]]},{"k":2958,"v":[[0,3,["H3947","(H853)"]],[3,5,["H834"]],[5,6,["H4872"]],[6,7,["H6680"]],[7,8,["H413","H6440"]],[8,10,["H168"]],[10,13,["H4150"]],[13,15,["H3605"]],[15,17,["H5712"]],[17,19,["H7126"]],[19,21,["H5975"]],[21,22,["H6440"]],[22,24,["H3068"]]]},{"k":2959,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H2088"]],[4,7,["H1697"]],[7,8,["H834"]],[8,10,["H3068"]],[10,11,["H6680"]],[11,15,["H6213"]],[15,18,["H3519"]],[18,21,["H3068"]],[21,23,["H7200"]],[23,24,["H413"]],[24,25,[]]]},{"k":2960,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H175"]],[5,6,["H7126"]],[6,7,["H413"]],[7,9,["H4196"]],[9,11,["H6213","(H853)"]],[11,14,["H2403"]],[14,18,["H5930"]],[18,22,["H3722"]],[22,23,["H1157"]],[23,26,["H1157"]],[26,28,["H5971"]],[28,30,["H6213","(H853)"]],[30,32,["H7133"]],[32,35,["H5971"]],[35,39,["H3722"]],[39,40,["H1157"]],[40,42,["H834"]],[42,44,["H3068"]],[44,45,["H6680"]]]},{"k":2961,"v":[[0,1,["H175"]],[1,3,["H7126"]],[3,4,["H413"]],[4,6,["H4196"]],[6,8,["H7819","(H853)"]],[8,10,["H5695"]],[10,14,["H2403"]],[14,15,["H834"]],[15,18,[]]]},{"k":2962,"v":[[0,3,["H1121"]],[3,5,["H175"]],[5,6,["H7126","(H853)"]],[6,8,["H1818"]],[8,9,["H413"]],[9,13,["H2881"]],[13,15,["H676"]],[15,18,["H1818"]],[18,20,["H5414"]],[20,22,["H5921"]],[22,24,["H7161"]],[24,27,["H4196"]],[27,30,["H3332"]],[30,32,["H1818"]],[32,33,["H413"]],[33,35,["H3247"]],[35,38,["H4196"]]]},{"k":2963,"v":[[0,3,["H2459"]],[3,6,["H3629"]],[6,9,["H3508"]],[9,10,["H4480"]],[10,12,["H3516"]],[12,13,["H4480"]],[13,16,["H2403"]],[16,18,["H6999"]],[18,21,["H4196"]],[21,22,["H834"]],[22,24,["H3068"]],[24,25,["H6680","(H853)"]],[25,26,["H4872"]]]},{"k":2964,"v":[[0,3,["H1320"]],[3,6,["H5785"]],[6,8,["H8313"]],[8,10,["H784"]],[10,11,["H4480","H2351"]],[11,13,["H4264"]]]},{"k":2965,"v":[[0,3,["H7819","(H853)"]],[3,6,["H5930"]],[6,8,["H175"]],[8,9,["H1121"]],[9,10,["H4672"]],[10,11,["H413"]],[11,12,["(H853)"]],[12,14,["H1818"]],[14,17,["H2236"]],[17,19,["H5439"]],[19,20,["H5921"]],[20,22,["H4196"]]]},{"k":2966,"v":[[0,3,["H4672"]],[3,6,["H5930"]],[6,7,["H413"]],[7,11,["H5409"]],[11,15,["H7218"]],[15,18,["H6999"]],[18,20,["H5921"]],[20,22,["H4196"]]]},{"k":2967,"v":[[0,4,["H7364","(H853)"]],[4,6,["H7130"]],[6,9,["H3767"]],[9,11,["H6999"]],[11,13,["H5921"]],[13,16,["H5930"]],[16,19,["H4196"]]]},{"k":2968,"v":[[0,3,["H7126","(H853)"]],[3,5,["H5971"]],[5,6,["H7133"]],[6,8,["H3947","(H853)"]],[8,10,["H8163"]],[10,11,["H834"]],[11,15,["H2403"]],[15,18,["H5971"]],[18,20,["H7819"]],[20,26,["H2398"]],[26,29,["H7223"]]]},{"k":2969,"v":[[0,3,["H7126","(H853)"]],[3,6,["H5930"]],[6,8,["H6213"]],[8,13,["H4941"]]]},{"k":2970,"v":[[0,3,["H7126","(H853)"]],[3,6,["H4503"]],[6,10,["H4390","H3709"]],[10,11,["H4480"]],[11,13,["H6999"]],[13,15,["H5921"]],[15,17,["H4196"]],[17,18,["H4480","H905"]],[18,21,["H5930"]],[21,24,["H1242"]]]},{"k":2971,"v":[[0,2,["H7819"]],[2,3,["(H853)"]],[3,5,["H7794"]],[5,8,["H352"]],[8,11,["H2077"]],[11,14,["H8002"]],[14,15,["H834"]],[15,19,["H5971"]],[19,21,["H175"]],[21,22,["H1121"]],[22,23,["H4672"]],[23,24,["H413"]],[24,27,["H1818"]],[27,30,["H2236"]],[30,31,["H5921"]],[31,33,["H4196"]],[33,35,["H5439"]]]},{"k":2972,"v":[[0,3,["H2459"]],[3,4,["H4480"]],[4,6,["H7794"]],[6,8,["H4480"]],[8,10,["H352"]],[10,12,["H451"]],[12,16,["H4374"]],[16,21,["H3629"]],[21,24,["H3508"]],[24,27,["H3516"]]]},{"k":2973,"v":[[0,3,["H7760","(H853)"]],[3,5,["H2459"]],[5,6,["H5921"]],[6,8,["H2373"]],[8,11,["H6999"]],[11,13,["H2459"]],[13,16,["H4196"]]]},{"k":2974,"v":[[0,3,["H2373"]],[3,6,["H3225"]],[6,7,["H7785"]],[7,8,["H175"]],[8,9,["H5130"]],[9,13,["H8573"]],[13,14,["H6440"]],[14,16,["H3068"]],[16,17,["H834"]],[17,18,["H4872"]],[18,19,["H6680"]]]},{"k":2975,"v":[[0,2,["H175"]],[2,4,["H5375","(H853)"]],[4,6,["H3027"]],[6,7,["H413"]],[7,9,["H5971"]],[9,11,["H1288"]],[11,15,["H3381"]],[15,17,["H4480","H6213"]],[17,21,["H2403"]],[21,25,["H5930"]],[25,28,["H8002"]]]},{"k":2976,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,5,["H935"]],[5,6,["H413"]],[6,8,["H168"]],[8,11,["H4150"]],[11,14,["H3318"]],[14,16,["H1288","(H853)"]],[16,18,["H5971"]],[18,21,["H3519"]],[21,24,["H3068"]],[24,25,["H7200"]],[25,26,["H413"]],[26,27,["H3605"]],[27,29,["H5971"]]]},{"k":2977,"v":[[0,6,["H3318","H784"]],[6,8,["H4480","H6440"]],[8,10,["H3068"]],[10,12,["H398"]],[12,13,["H5921"]],[13,15,["H4196","(H853)"]],[15,18,["H5930"]],[18,21,["H2459"]],[21,24,["H3605"]],[24,26,["H5971"]],[26,27,["H7200"]],[27,29,["H7442"]],[29,31,["H5307"]],[31,32,["H5921"]],[32,34,["H6440"]]]},{"k":2978,"v":[[0,2,["H5070"]],[2,4,["H30"]],[4,6,["H1121"]],[6,8,["H175"]],[8,9,["H3947"]],[9,10,["H376"]],[10,14,["H4289"]],[14,16,["H5414"]],[16,17,["H784"]],[17,18,["H2004"]],[18,20,["H7760"]],[20,21,["H7004"]],[21,22,["H5921"]],[22,24,["H7126"]],[24,25,["H2114"]],[25,26,["H784"]],[26,27,["H6440"]],[27,29,["H3068"]],[29,30,["H834"]],[30,32,["H6680"]],[32,34,["H3808"]]]},{"k":2979,"v":[[0,4,["H3318"]],[4,5,["H784"]],[5,6,["H4480","H6440"]],[6,8,["H3068"]],[8,10,["H398"]],[10,14,["H4191"]],[14,15,["H6440"]],[15,17,["H3068"]]]},{"k":2980,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H175"]],[5,6,["H1931"]],[6,9,["H834"]],[9,11,["H3068"]],[11,12,["H1696"]],[12,13,["H559"]],[13,17,["H6942"]],[17,22,["H7138"]],[22,25,["H5921","H6440"]],[25,26,["H3605"]],[26,28,["H5971"]],[28,32,["H3513"]],[32,34,["H175"]],[34,37,["H1826"]]]},{"k":2981,"v":[[0,2,["H4872"]],[2,3,["H7121","H413"]],[3,4,["H4332"]],[4,6,["H469"]],[6,8,["H1121"]],[8,10,["H5816"]],[10,12,["H1730"]],[12,14,["H175"]],[14,16,["H559"]],[16,17,["H413"]],[17,20,["H7126"]],[20,21,["H5375","(H853)"]],[21,23,["H251"]],[23,24,["H4480","H854"]],[24,25,["H6440"]],[25,27,["H6944"]],[27,29,["H413","H4480","H2351"]],[29,31,["H4264"]]]},{"k":2982,"v":[[0,4,["H7126"]],[4,6,["H5375"]],[6,10,["H3801"]],[10,12,["H413","H4480","H2351"]],[12,14,["H4264"]],[14,15,["H834"]],[15,16,["H4872"]],[16,18,["H1696"]]]},{"k":2983,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H175"]],[5,8,["H499"]],[8,11,["H385"]],[11,13,["H1121"]],[13,14,["H6544"]],[14,15,["H408"]],[15,17,["H7218"]],[17,18,["H3808"]],[18,19,["H6533"]],[19,21,["H899"]],[21,22,["H3808"]],[22,24,["H4191"]],[24,28,["H7107"]],[28,29,["H5921"]],[29,30,["H3605"]],[30,32,["H5712"]],[32,36,["H251"]],[36,38,["H3605"]],[38,39,["H1004"]],[39,41,["H3478"]],[41,42,["H1058","(H853)"]],[42,44,["H8316"]],[44,45,["H834"]],[45,47,["H3068"]],[47,49,["H8313"]]]},{"k":2984,"v":[[0,4,["H3808"]],[4,6,["H3318"]],[6,9,["H4480","H6607"]],[9,12,["H168"]],[12,15,["H4150"]],[15,16,["H6435"]],[16,18,["H4191"]],[18,19,["H3588"]],[19,21,["H4888"]],[21,22,["H8081"]],[22,25,["H3068"]],[25,27,["H5921"]],[27,31,["H6213"]],[31,35,["H1697"]],[35,37,["H4872"]]]},{"k":2985,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H175"]],[6,7,["H559"]]]},{"k":2986,"v":[[0,2,["H408"]],[2,3,["H8354"]],[3,4,["H3196"]],[4,7,["H7941"]],[7,8,["H859"]],[8,11,["H1121"]],[11,12,["H854"]],[12,16,["H935"]],[16,17,["H413"]],[17,19,["H168"]],[19,22,["H4150"]],[22,23,["H3808"]],[23,25,["H4191"]],[25,30,["H2708"]],[30,32,["H5769"]],[32,35,["H1755"]]]},{"k":2987,"v":[[0,6,["H914"]],[6,7,["H996"]],[7,8,["H6944"]],[8,10,["H2455"]],[10,12,["H996"]],[12,13,["H2931"]],[13,15,["H2889"]]]},{"k":2988,"v":[[0,5,["H3384","(H853)"]],[5,7,["H1121"]],[7,9,["H3478","(H853)"]],[9,10,["H3605"]],[10,12,["H2706"]],[12,13,["H834"]],[13,15,["H3068"]],[15,17,["H1696"]],[17,18,["H413"]],[18,22,["H3027"]],[22,24,["H4872"]]]},{"k":2989,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,4,["H413"]],[4,5,["H175"]],[5,7,["H413"]],[7,8,["H499"]],[8,10,["H413"]],[10,11,["H385"]],[11,13,["H1121"]],[13,16,["H3498"]],[16,17,["H3947","(H853)"]],[17,20,["H4503"]],[20,22,["H3498"]],[22,31,["H4480","H801","H3068"]],[31,33,["H398"]],[33,36,["H4682"]],[36,37,["H681"]],[37,39,["H4196"]],[39,40,["H3588"]],[40,41,["H1931"]],[41,44,["H6944","H6944"]]]},{"k":2990,"v":[[0,4,["H398"]],[4,8,["H6918"]],[8,9,["H4725"]],[9,10,["H3588"]],[10,14,["H2706"]],[14,17,["H1121"]],[17,18,["H2706"]],[18,27,["H4480","H801","H3068"]],[27,28,["H3588"]],[28,29,["H3651"]],[29,32,["H6680"]]]},{"k":2991,"v":[[0,3,["H8573"]],[3,4,["H2373"]],[4,6,["H8641"]],[6,7,["H7785"]],[7,10,["H398"]],[10,13,["H2889"]],[13,14,["H4725"]],[14,15,["H859"]],[15,18,["H1121"]],[18,21,["H1323"]],[21,22,["H854"]],[22,24,["H3588"]],[24,28,["H2706"]],[28,31,["H1121"]],[31,32,["H2706"]],[32,35,["H5414"]],[35,39,["H4480","H2077"]],[39,42,["H8002"]],[42,45,["H1121"]],[45,47,["H3478"]]]},{"k":2992,"v":[[0,2,["H8641"]],[2,3,["H7785"]],[3,6,["H8573"]],[6,7,["H2373"]],[7,10,["H935"]],[10,11,["H5921"]],[11,16,["H801"]],[16,19,["H2459"]],[19,21,["H5130"]],[21,26,["H8573"]],[26,27,["H6440"]],[27,29,["H3068"]],[29,33,["H1961"]],[33,37,["H1121"]],[37,38,["H854"]],[38,42,["H2706"]],[42,44,["H5769"]],[44,45,["H834"]],[45,47,["H3068"]],[47,49,["H6680"]]]},{"k":2993,"v":[[0,2,["H4872"]],[2,4,["H1875","H1875"]],[4,6,["H8163"]],[6,10,["H2403"]],[10,12,["H2009"]],[12,15,["H8313"]],[15,19,["H7107"]],[19,20,["H5921"]],[20,21,["H499"]],[21,23,["H385"]],[23,25,["H1121"]],[25,27,["H175"]],[27,30,["H3498"]],[30,32,["H559"]]]},{"k":2994,"v":[[0,1,["H4069"]],[1,4,["H3808"]],[4,5,["H398","(H853)"]],[5,8,["H2403"]],[8,11,["H6944"]],[11,12,["H4725"]],[12,13,["H3588"]],[13,14,["H1931"]],[14,17,["H6944","H6944"]],[17,21,["H5414"]],[21,25,["H5375","(H853)"]],[25,27,["H5771"]],[27,30,["H5712"]],[30,33,["H3722"]],[33,34,["H5921"]],[34,36,["H6440"]],[36,38,["H3068"]]]},{"k":2995,"v":[[0,1,["H2005","(H853)"]],[1,3,["H1818"]],[3,7,["H3808"]],[7,9,["H935"]],[9,10,["H6441","H413"]],[10,12,["H6944"]],[12,18,["H398","H398"]],[18,22,["H6944"]],[22,24,["H834"]],[24,26,["H6680"]]]},{"k":2996,"v":[[0,2,["H175"]],[2,3,["H1696"]],[3,4,["H413"]],[4,5,["H4872"]],[5,6,["H2005"]],[6,8,["H3117"]],[8,11,["H7126","(H853)"]],[11,14,["H2403"]],[14,18,["H5930"]],[18,19,["H6440"]],[19,21,["H3068"]],[21,24,["H428"]],[24,26,["H7122"]],[26,32,["H398"]],[32,35,["H2403"]],[35,37,["H3117"]],[37,42,["H3190"]],[42,45,["H5869"]],[45,48,["H3068"]]]},{"k":2997,"v":[[0,3,["H4872"]],[3,4,["H8085"]],[4,8,["H3190","H5869"]]]},{"k":2998,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H559"]],[10,11,["H413"]],[11,12,[]]]},{"k":2999,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H559"]],[7,8,["H2063"]],[8,11,["H2416"]],[11,12,["H834"]],[12,15,["H398"]],[15,17,["H4480","H3605"]],[17,19,["H929"]],[19,20,["H834"]],[20,22,["H5921"]],[22,24,["H776"]]]},{"k":3000,"v":[[0,1,["H3605"]],[1,2,["H6536"]],[2,4,["H6541"]],[4,7,["H8156","H8157","H6541"]],[7,9,["H5927"]],[9,11,["H1625"]],[11,14,["H929"]],[14,18,["H398"]]]},{"k":3001,"v":[[0,1,["H389","(H853)"]],[1,2,["H2088"]],[2,5,["H3808"]],[5,6,["H398"]],[6,10,["H4480","H5927"]],[10,12,["H1625"]],[12,17,["H4480","H6536"]],[17,19,["H6541"]],[19,20,["(H853)"]],[20,22,["H1581"]],[22,23,["H3588"]],[23,24,["H1931"]],[24,25,["H5927"]],[25,27,["H1625"]],[27,29,["H6536"]],[29,30,["H369"]],[30,32,["H6541"]],[32,33,["H1931"]],[33,35,["H2931"]],[35,37,[]]]},{"k":3002,"v":[[0,3,["H8227"]],[3,4,["H3588"]],[4,5,["H1931"]],[5,6,["H5927"]],[6,8,["H1625"]],[8,10,["H6536"]],[10,11,["H3808"]],[11,13,["H6541"]],[13,14,["H1931"]],[14,16,["H2931"]],[16,18,[]]]},{"k":3003,"v":[[0,3,["H768"]],[3,4,["H3588"]],[4,5,["H1931"]],[5,6,["H5927"]],[6,8,["H1625"]],[8,10,["H6536"]],[10,11,["H3808"]],[11,13,["H6541"]],[13,14,["H1931"]],[14,16,["H2931"]],[16,18,[]]]},{"k":3004,"v":[[0,3,["H2386"]],[3,4,["H3588"]],[4,5,["H1931"]],[5,6,["H6536"]],[6,8,["H6541"]],[8,11,["H8156","H8157","H6541"]],[11,13,["H1931"]],[13,14,["H1641"]],[14,15,["H3808"]],[15,17,["H1625"]],[17,18,["H1931"]],[18,20,["H2931"]],[20,22,[]]]},{"k":3005,"v":[[0,3,["H4480","H1320"]],[3,6,["H3808"]],[6,7,["H398"]],[7,10,["H5038"]],[10,13,["H3808"]],[13,14,["H5060"]],[14,15,["H1992"]],[15,17,["H2931"]],[17,19,[]]]},{"k":3006,"v":[[0,0,["(H853)"]],[0,1,["H2088"]],[1,4,["H398"]],[4,6,["H4480","H3605"]],[6,7,["H834"]],[7,11,["H4325"]],[11,12,["H3605","H834"]],[12,14,["H5579"]],[14,16,["H7193"]],[16,19,["H4325"]],[19,22,["H3220"]],[22,26,["H5158"]],[26,30,["H398"]]]},{"k":3007,"v":[[0,2,["H3605"]],[2,3,["H834"]],[3,5,["H369"]],[5,6,["H5579"]],[6,8,["H7193"]],[8,11,["H3220"]],[11,15,["H5158"]],[15,17,["H4480","H3605"]],[17,19,["H8318"]],[19,22,["H4325"]],[22,25,["H4480","H3605"]],[25,26,["H2416"]],[26,27,["H5315"]],[27,28,["H834"]],[28,32,["H4325"]],[32,33,["H1992"]],[33,37,["H8263"]],[37,39,[]]]},{"k":3008,"v":[[0,3,["H1961"]],[3,6,["H8263"]],[6,11,["H3808"]],[11,12,["H398"]],[12,15,["H4480","H1320"]],[15,23,["H8262","(H853)","H5038"]]]},{"k":3009,"v":[[0,1,["H3605","H834"]],[1,3,["H369"]],[3,4,["H5579"]],[4,6,["H7193"]],[6,9,["H4325"]],[9,10,["H1931"]],[10,14,["H8263"]],[14,16,[]]]},{"k":3010,"v":[[0,2,["H428"]],[2,10,["H8262"]],[10,11,["H4480"]],[11,13,["H5775"]],[13,16,["H3808"]],[16,18,["H398"]],[18,19,["H1992"]],[19,22,["H8263","(H853)"]],[22,24,["H5404"]],[24,27,["H6538"]],[27,30,["H5822"]]]},{"k":3011,"v":[[0,3,["H1676"]],[3,6,["H344"]],[6,9,["H4327"]]]},{"k":3012,"v":[[0,0,["(H853)"]],[0,1,["H3605"]],[1,2,["H6158"]],[2,5,["H4327"]]]},{"k":3013,"v":[[0,3,["H1323","H3284"]],[3,7,["H8464"]],[7,10,["H7828"]],[10,13,["H5322"]],[13,16,["H4327"]]]},{"k":3014,"v":[[0,4,["H3563"]],[4,7,["H7994"]],[7,11,["H3244"]]]},{"k":3015,"v":[[0,3,["H8580"]],[3,6,["H6893"]],[6,10,["H7360"]]]},{"k":3016,"v":[[0,3,["H2624"]],[3,5,["H601"]],[5,8,["H4327"]],[8,11,["H1744"]],[11,14,["H5847"]]]},{"k":3017,"v":[[0,1,["H3605"]],[1,2,["H5775"]],[2,4,["H8318"]],[4,5,["H1980"]],[5,6,["H5921"]],[6,8,["H702"]],[8,12,["H8263"]],[12,14,[]]]},{"k":3018,"v":[[0,1,["H389","(H853)"]],[1,2,["H2088"]],[2,5,["H398"]],[5,7,["H4480","H3605"]],[7,8,["H5775"]],[8,10,["H8318"]],[10,12,["H1980"]],[12,13,["H5921"]],[13,15,["H702"]],[15,16,["H834"]],[16,18,["H3767"]],[18,19,["H4480","H4605"]],[19,21,["H7272"]],[21,23,["H5425"]],[23,24,["H2004"]],[24,25,["H5921"]],[25,27,["H776"]]]},{"k":3019,"v":[[0,1,["(H853)"]],[1,2,["H428"]],[2,3,["H4480"]],[3,7,["H398","(H853)"]],[7,9,["H697"]],[9,12,["H4327"]],[12,16,["H5556"]],[16,19,["H4327"]],[19,22,["H2728"]],[22,25,["H4327"]],[25,28,["H2284"]],[28,31,["H4327"]]]},{"k":3020,"v":[[0,2,["H3605"]],[2,4,["H5775"]],[4,6,["H8318"]],[6,7,["H834"]],[7,9,["H702"]],[9,10,["H7272"]],[10,14,["H8263"]],[14,16,[]]]},{"k":3021,"v":[[0,3,["H428"]],[3,7,["H2930"]],[7,8,["H3605"]],[8,9,["H5060"]],[9,11,["H5038"]],[11,16,["H2930"]],[16,17,["H5704"]],[17,19,["H6153"]]]},{"k":3022,"v":[[0,2,["H3605"]],[2,3,["H5375"]],[3,7,["H4480","H5038"]],[7,11,["H3526"]],[11,13,["H899"]],[13,16,["H2930"]],[16,17,["H5704"]],[17,19,["H6153"]]]},{"k":3023,"v":[[0,4,["H3605"]],[4,5,["H929"]],[5,6,["H834"]],[6,7,["H6536"]],[7,9,["H6541"]],[9,12,["H369"]],[12,13,["H8156","H8157"]],[13,14,["H369"]],[14,15,["H5927"]],[15,17,["H1625"]],[17,19,["H2931"]],[19,23,["H3605"]],[23,25,["H5060"]],[25,29,["H2930"]]]},{"k":3024,"v":[[0,2,["H3605"]],[2,3,["H1980"]],[3,4,["H5921"]],[4,6,["H3709"]],[6,9,["H3605"]],[9,11,["H2416"]],[11,13,["H1980"]],[13,14,["H5921"]],[14,16,["H702"]],[16,17,["H1992"]],[17,19,["H2931"]],[19,22,["H3605"]],[22,23,["H5060"]],[23,25,["H5038"]],[25,28,["H2930"]],[28,29,["H5704"]],[29,31,["H6153"]]]},{"k":3025,"v":[[0,4,["H5375","(H853)"]],[4,6,["H5038"]],[6,10,["H3526"]],[10,12,["H899"]],[12,15,["H2930"]],[15,16,["H5704"]],[16,18,["H6153"]],[18,19,["H1992"]],[19,21,["H2931"]],[21,23,[]]]},{"k":3026,"v":[[0,1,["H2088"]],[1,5,["H2931"]],[5,11,["H8318"]],[11,13,["H8317"]],[13,14,["H5921"]],[14,16,["H776"]],[16,18,["H2467"]],[18,21,["H5909"]],[21,24,["H6632"]],[24,27,["H4327"]]]},{"k":3027,"v":[[0,3,["H604"]],[3,6,["H3581"]],[6,9,["H3911"]],[9,12,["H2546"]],[12,15,["H8580"]]]},{"k":3028,"v":[[0,1,["H428"]],[1,3,["H2931"]],[3,7,["H3605"]],[7,9,["H8318"]],[9,10,["H3605"]],[10,12,["H5060"]],[12,17,["H4194"]],[17,20,["H2930"]],[20,21,["H5704"]],[21,23,["H6153"]]]},{"k":3029,"v":[[0,2,["H5921"]],[2,3,["H3605","H834"]],[3,5,["H4480"]],[5,10,["H4194"]],[10,12,["H5307"]],[12,16,["H2930"]],[16,20,["H4480","H3605"]],[20,21,["H3627"]],[21,23,["H6086"]],[23,24,["H176"]],[24,25,["H899"]],[25,26,["H176"]],[26,27,["H5785"]],[27,28,["H176"]],[28,29,["H8242"]],[29,30,["H3605"]],[30,31,["H3627"]],[31,34,["H834"]],[34,36,["H4399"]],[36,38,["H6213"]],[38,42,["H935"]],[42,44,["H4325"]],[44,49,["H2930"]],[49,50,["H5704"]],[50,52,["H6153"]],[52,57,["H2891"]]]},{"k":3030,"v":[[0,2,["H3605"]],[2,3,["H2789"]],[3,4,["H3627"]],[4,5,["H834","H413","H8432"]],[5,7,["H4480"]],[7,9,["H5307"]],[9,10,["H3605","H834"]],[10,12,["H8432"]],[12,16,["H2930"]],[16,20,["H7665"]],[20,21,[]]]},{"k":3031,"v":[[0,2,["H4480","H3605"]],[2,3,["H400"]],[3,4,["H834"]],[4,7,["H398"]],[7,9,["H5921"]],[9,10,["H834"]],[10,12,["H4325"]],[12,13,["H935"]],[13,16,["H2930"]],[16,18,["H3605"]],[18,19,["H4945"]],[19,20,["H834"]],[20,23,["H8354"]],[23,25,["H3605"]],[25,27,["H3627"]],[27,30,["H2930"]]]},{"k":3032,"v":[[0,2,["H3605"]],[2,4,["H834","H5921"]],[4,9,["H4480","H5038"]],[9,10,["H5307"]],[10,13,["H2930"]],[13,17,["H8574"]],[17,21,["H3600"]],[21,26,["H5422"]],[26,28,["H1992"]],[28,30,["H2931"]],[30,33,["H1961"]],[33,34,["H2931"]],[34,36,[]]]},{"k":3033,"v":[[0,1,["H389"]],[1,3,["H4599"]],[3,5,["H953"]],[5,9,["H4723"]],[9,11,["H4325"]],[11,13,["H1961"]],[13,14,["H2889"]],[14,18,["H5060"]],[18,20,["H5038"]],[20,23,["H2930"]]]},{"k":3034,"v":[[0,2,["H3588"]],[2,5,["H4480"]],[5,7,["H5038"]],[7,8,["H5307"]],[8,9,["H5921"]],[9,10,["H3605"]],[10,11,["H2221"]],[11,12,["H2233"]],[12,13,["H834"]],[13,17,["H2232"]],[17,18,["H1931"]],[18,21,["H2889"]]]},{"k":3035,"v":[[0,2,["H3588"]],[2,4,["H4325"]],[4,6,["H5414"]],[6,7,["H5921"]],[7,9,["H2233"]],[9,15,["H4480","H5038"]],[15,16,["H5307"]],[16,17,["H5921"]],[17,18,["H1931"]],[18,21,["H2931"]],[21,23,[]]]},{"k":3036,"v":[[0,2,["H3588"]],[2,4,["H929"]],[4,5,["H4480"]],[5,6,["H834"]],[6,9,["H402"]],[9,10,["H4191"]],[10,13,["H5060"]],[13,15,["H5038"]],[15,19,["H2930"]],[19,20,["H5704"]],[20,22,["H6153"]]]},{"k":3037,"v":[[0,4,["H398"]],[4,7,["H4480","H5038"]],[7,11,["H3526"]],[11,13,["H899"]],[13,16,["H2930"]],[16,17,["H5704"]],[17,19,["H6153"]],[19,23,["H5375","(H853)"]],[23,25,["H5038"]],[25,29,["H3526"]],[29,31,["H899"]],[31,34,["H2930"]],[34,35,["H5704"]],[35,37,["H6153"]]]},{"k":3038,"v":[[0,2,["H3605"]],[2,4,["H8318"]],[4,6,["H8317"]],[6,7,["H5921"]],[7,9,["H776"]],[9,13,["H8263"]],[13,16,["H3808"]],[16,18,["H398"]]]},{"k":3039,"v":[[0,1,["H3605"]],[1,2,["H1980"]],[2,3,["H5921"]],[3,5,["H1512"]],[5,7,["H3605"]],[7,8,["H1980"]],[8,9,["H5921"]],[9,11,["H702"]],[11,13,["H3605"]],[13,15,["H7235"]],[15,16,["H7272"]],[16,18,["H3605"]],[18,20,["H8318"]],[20,22,["H8317"]],[22,23,["H5921"]],[23,25,["H776"]],[25,29,["H3808"]],[29,30,["H398"]],[30,31,["H3588"]],[31,32,["H1992"]],[32,35,["H8263"]]]},{"k":3040,"v":[[0,3,["H408"]],[3,6,["H8262","(H853)","H5315"]],[6,8,["H3605"]],[8,10,["H8318"]],[10,12,["H8317"]],[12,13,["H3808"]],[13,18,["H2930"]],[18,25,["H2930"]],[25,26,[]]]},{"k":3041,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,5,["H3068"]],[5,7,["H430"]],[7,12,["H6942"]],[12,16,["H1961"]],[16,17,["H6918"]],[17,18,["H3588"]],[18,19,["H589"]],[19,21,["H6918"]],[21,22,["H3808"]],[22,25,["H2930","(H853)"]],[25,26,["H5315"]],[26,29,["H3605"]],[29,32,["H8318"]],[32,34,["H7430"]],[34,35,["H5921"]],[35,37,["H776"]]]},{"k":3042,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,5,["H3068"]],[5,9,["H5927","(H853)"]],[9,13,["H4480","H776"]],[13,15,["H4714"]],[15,17,["H1961"]],[17,19,["H430"]],[19,23,["H1961"]],[23,24,["H6918"]],[24,25,["H3588"]],[25,26,["H589"]],[26,28,["H6918"]]]},{"k":3043,"v":[[0,1,["H2063"]],[1,4,["H8451"]],[4,7,["H929"]],[7,11,["H5775"]],[11,14,["H3605"]],[14,15,["H2416"]],[15,16,["H5315"]],[16,18,["H7430"]],[18,21,["H4325"]],[21,24,["H3605"]],[24,25,["H5315"]],[25,27,["H8317"]],[27,28,["H5921"]],[28,30,["H776"]]]},{"k":3044,"v":[[0,4,["H914"]],[4,5,["H996"]],[5,7,["H2931"]],[7,10,["H2889"]],[10,12,["H996"]],[12,14,["H2416"]],[14,18,["H398"]],[18,21,["H2416"]],[21,22,["H834"]],[22,24,["H3808"]],[24,26,["H398"]]]},{"k":3045,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3046,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H559"]],[7,8,["H3588"]],[8,10,["H802"]],[10,13,["H2232"]],[13,15,["H3205"]],[15,18,["H2145"]],[18,23,["H2930"]],[23,24,["H7651"]],[24,25,["H3117"]],[25,29,["H3117"]],[29,32,["H5079"]],[32,35,["H1738"]],[35,39,["H2930"]]]},{"k":3047,"v":[[0,4,["H8066"]],[4,5,["H3117"]],[5,7,["H1320"]],[7,10,["H6190"]],[10,13,["H4135"]]]},{"k":3048,"v":[[0,5,["H3427"]],[5,8,["H1818"]],[8,11,["H2893"]],[11,12,["H7969"]],[12,14,["H7970"]],[14,15,["H3117"]],[15,18,["H5060"]],[18,19,["H3808","H3605"]],[19,21,["H6944"]],[21,22,["H3808"]],[22,23,["H935"]],[23,24,["H413"]],[24,26,["H4720"]],[26,27,["H5704"]],[27,29,["H3117"]],[29,32,["H2892"]],[32,34,["H4390"]]]},{"k":3049,"v":[[0,2,["H518"]],[2,4,["H3205"]],[4,7,["H5347"]],[7,12,["H2930"]],[12,14,["H7620"]],[14,18,["H5079"]],[18,22,["H3427"]],[22,23,["H5921"]],[23,25,["H1818"]],[25,28,["H2893"]],[28,29,["H8346"]],[29,31,["H8337"]],[31,32,["H3117"]]]},{"k":3050,"v":[[0,4,["H3117"]],[4,7,["H2892"]],[7,9,["H4390"]],[9,12,["H1121"]],[12,13,["H176"]],[13,16,["H1323"]],[16,19,["H935"]],[19,21,["H3532"]],[21,24,["H1121"]],[24,25,["H8141"]],[25,29,["H5930"]],[29,32,["H1121"]],[32,33,["H3123"]],[33,34,["H176"]],[34,36,["H8449"]],[36,40,["H2403"]],[40,41,["H413"]],[41,43,["H6607"]],[43,46,["H168"]],[46,49,["H4150"]],[49,50,["H413"]],[50,52,["H3548"]]]},{"k":3051,"v":[[0,3,["H7126"]],[3,5,["H6440"]],[5,7,["H3068"]],[7,11,["H3722"]],[11,12,["H5921"]],[12,18,["H2891"]],[18,21,["H4480","H4726"]],[21,24,["H1818"]],[24,25,["H2063"]],[25,28,["H8451"]],[28,33,["H3205"]],[33,35,["H2145"]],[35,36,["H176"]],[36,38,["H5347"]]]},{"k":3052,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,8,["H4672","H3027","H1767"]],[8,10,["H7716"]],[10,14,["H3947"]],[14,15,["H8147"]],[15,16,["H8449"]],[16,17,["H176"]],[17,18,["H8147"]],[18,19,["H1121"]],[19,20,["H3123"]],[20,22,["H259"]],[22,26,["H5930"]],[26,29,["H259"]],[29,33,["H2403"]],[33,36,["H3548"]],[36,40,["H3722"]],[40,41,["H5921"]],[41,47,["H2891"]]]},{"k":3053,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H175"]],[8,9,["H559"]]]},{"k":3054,"v":[[0,1,["H3588"]],[1,3,["H120"]],[3,5,["H1961"]],[5,8,["H5785"]],[8,11,["H1320"]],[11,13,["H7613"]],[13,15,["H5597"]],[15,16,["H176"]],[16,18,["H934"]],[18,21,["H1961"]],[21,24,["H5785"]],[24,27,["H1320"]],[27,30,["H5061"]],[30,32,["H6883"]],[32,37,["H935"]],[37,38,["H413"]],[38,39,["H175"]],[39,41,["H3548"]],[41,42,["H176"]],[42,43,["H413"]],[43,44,["H259"]],[44,47,["H4480","H1121"]],[47,49,["H3548"]]]},{"k":3055,"v":[[0,3,["H3548"]],[3,6,["H7200","(H853)"]],[6,8,["H5061"]],[8,11,["H5785"]],[11,14,["H1320"]],[14,18,["H8181"]],[18,21,["H5061"]],[21,23,["H2015"]],[23,24,["H3836"]],[24,27,["H5061"]],[27,29,["H4758"]],[29,31,["H6013"]],[31,34,["H4480","H5785"]],[34,37,["H1320"]],[37,38,["H1931"]],[38,41,["H5061"]],[41,43,["H6883"]],[43,46,["H3548"]],[46,49,["H7200"]],[49,54,["H2930","(H853)"]]]},{"k":3056,"v":[[0,1,["H518"]],[1,4,["H934"]],[4,6,["H3836"]],[6,9,["H5785"]],[9,12,["H1320"]],[12,15,["H4758"]],[15,17,["H369"]],[17,18,["H6013"]],[18,19,["H4480"]],[19,21,["H5785"]],[21,24,["H8181"]],[24,27,["H3808"]],[27,28,["H2015"]],[28,29,["H3836"]],[29,32,["H3548"]],[32,35,["H5462"]],[35,38,["(H853)"]],[38,40,["H5061"]],[40,41,["H7651"]],[41,42,["H3117"]]]},{"k":3057,"v":[[0,3,["H3548"]],[3,6,["H7200"]],[6,9,["H7637"]],[9,10,["H3117"]],[10,12,["H2009"]],[12,15,["H5061"]],[15,18,["H5869"]],[18,22,["H5975"]],[22,25,["H5061"]],[25,26,["H6581"]],[26,27,["H3808"]],[27,30,["H5785"]],[30,33,["H3548"]],[33,37,["H5462"]],[37,38,["H7651"]],[38,39,["H3117"]],[39,40,["H8145"]]]},{"k":3058,"v":[[0,3,["H3548"]],[3,6,["H7200"]],[6,8,["H8145"]],[8,10,["H7637"]],[10,11,["H3117"]],[11,13,["H2009"]],[13,16,["H5061"]],[16,19,["H3544"]],[19,22,["H5061"]],[22,23,["H6581"]],[23,24,["H3808"]],[24,27,["H5785"]],[27,29,["H3548"]],[29,33,["H2891"]],[33,34,["H1931"]],[34,38,["H4556"]],[38,42,["H3526"]],[42,44,["H899"]],[44,47,["H2891"]]]},{"k":3059,"v":[[0,2,["H518"]],[2,4,["H4556"]],[4,7,["H6581","H6581"]],[7,10,["H5785"]],[10,12,["H310"]],[12,16,["H7200"]],[16,17,["H413"]],[17,19,["H3548"]],[19,22,["H2893"]],[22,26,["H7200"]],[26,27,["H413"]],[27,29,["H3548"]],[29,30,["H8145"]]]},{"k":3060,"v":[[0,4,["H3548"]],[4,5,["H7200"]],[5,7,["H2009"]],[7,9,["H4556"]],[9,10,["H6581"]],[10,13,["H5785"]],[13,16,["H3548"]],[16,20,["H2930"]],[20,21,["H1931"]],[21,24,["H6883"]]]},{"k":3061,"v":[[0,1,["H3588"]],[1,3,["H5061"]],[3,5,["H6883"]],[5,6,["H1961"]],[6,9,["H120"]],[9,14,["H935"]],[14,15,["H413"]],[15,17,["H3548"]]]},{"k":3062,"v":[[0,3,["H3548"]],[3,5,["H7200"]],[5,8,["H2009"]],[8,11,["H7613"]],[11,13,["H3836"]],[13,16,["H5785"]],[16,18,["H1931"]],[18,20,["H2015"]],[20,22,["H8181"]],[22,23,["H3836"]],[23,27,["H4241"]],[27,28,["H2416"]],[28,29,["H1320"]],[29,32,["H7613"]]]},{"k":3063,"v":[[0,1,["H1931"]],[1,4,["H3462"]],[4,5,["H6883"]],[5,8,["H5785"]],[8,11,["H1320"]],[11,14,["H3548"]],[14,18,["H2930"]],[18,21,["H3808"]],[21,24,["H5462"]],[24,25,["H3588"]],[25,26,["H1931"]],[26,28,["H2931"]]]},{"k":3064,"v":[[0,2,["H518"]],[2,4,["H6883"]],[4,7,["H6524","H6524"]],[7,10,["H5785"]],[10,13,["H6883"]],[13,14,["H3680","(H853)"]],[14,15,["H3605"]],[15,17,["H5785"]],[17,23,["H5061"]],[23,26,["H4480","H7218"]],[26,28,["H5704"]],[28,30,["H7272"]],[30,31,["H3605"]],[31,33,["H3548"]],[33,34,["H4758","H5869"]]]},{"k":3065,"v":[[0,3,["H3548"]],[3,5,["H7200"]],[5,7,["H2009"]],[7,10,["H6883"]],[10,12,["H3680","(H853)"]],[12,13,["H3605"]],[13,15,["H1320"]],[15,20,["H2891"]],[20,22,["(H853)"]],[22,24,["H5061"]],[24,27,["H3605"]],[27,28,["H2015"]],[28,29,["H3836"]],[29,30,["H1931"]],[30,32,["H2889"]]]},{"k":3066,"v":[[0,2,["H3117"]],[2,3,["H2416"]],[3,4,["H1320"]],[4,5,["H7200"]],[5,11,["H2930"]]]},{"k":3067,"v":[[0,3,["H3548"]],[3,5,["H7200","(H853)"]],[5,7,["H2416"]],[7,8,["H1320"]],[8,14,["H2930"]],[14,17,["H2416"]],[17,18,["H1320"]],[18,20,["H2931"]],[20,21,["H1931"]],[21,24,["H6883"]]]},{"k":3068,"v":[[0,1,["H176"]],[1,2,["H3588"]],[2,4,["H2416"]],[4,5,["H1320"]],[5,7,["H7725"]],[7,10,["H2015"]],[10,12,["H3836"]],[12,15,["H935"]],[15,16,["H413"]],[16,18,["H3548"]]]},{"k":3069,"v":[[0,3,["H3548"]],[3,5,["H7200"]],[5,8,["H2009"]],[8,11,["H5061"]],[11,13,["H2015"]],[13,15,["H3836"]],[15,18,["H3548"]],[18,22,["H2891"]],[22,24,["(H853)"]],[24,26,["H5061"]],[26,27,["H1931"]],[27,29,["H2889"]]]},{"k":3070,"v":[[0,2,["H1320"]],[2,9,["H5785"]],[9,11,["H3588","H1961"]],[11,13,["H7822"]],[13,16,["H7495"]]]},{"k":3071,"v":[[0,4,["H4725"]],[4,7,["H7822"]],[7,9,["H1961"]],[9,11,["H3836"]],[11,12,["H7613"]],[12,13,["H176"]],[13,16,["H934"]],[16,17,["H3836"]],[17,20,["H125"]],[20,24,["H7200"]],[24,25,["H413"]],[25,27,["H3548"]]]},{"k":3072,"v":[[0,5,["H3548"]],[5,6,["H7200"]],[6,8,["H2009"]],[8,12,["H4758"]],[12,13,["H8217"]],[13,14,["H4480"]],[14,16,["H5785"]],[16,19,["H8181"]],[19,22,["H2015"]],[22,23,["H3836"]],[23,25,["H3548"]],[25,29,["H2930"]],[29,30,["H1931"]],[30,33,["H5061"]],[33,35,["H6883"]],[35,37,["H6524"]],[37,40,["H7822"]]]},{"k":3073,"v":[[0,2,["H518"]],[2,4,["H3548"]],[4,6,["H7200"]],[6,9,["H2009"]],[9,12,["H369"]],[12,13,["H3836"]],[13,14,["H8181"]],[14,20,["H369"]],[20,21,["H8217"]],[21,22,["H4480"]],[22,24,["H5785"]],[24,28,["H3544"]],[28,31,["H3548"]],[31,35,["H5462"]],[35,36,["H7651"]],[36,37,["H3117"]]]},{"k":3074,"v":[[0,2,["H518"]],[2,6,["H6581","H6581"]],[6,9,["H5785"]],[9,12,["H3548"]],[12,16,["H2930","(H853)"]],[16,17,["H1931"]],[17,20,["H5061"]]]},{"k":3075,"v":[[0,2,["H518"]],[2,5,["H934"]],[5,6,["H5975"]],[6,9,["H8478"]],[9,11,["H6581"]],[11,12,["H3808"]],[12,13,["H1931"]],[13,16,["H6867"]],[16,17,["H7822"]],[17,20,["H3548"]],[20,24,["H2891"]]]},{"k":3076,"v":[[0,1,["H176"]],[1,2,["H3588"]],[2,4,["H1961"]],[4,6,["H1320"]],[6,9,["H5785"]],[9,14,["H784"]],[14,15,["H4348"]],[15,18,["H4241"]],[18,21,["H4348"]],[21,22,["H1961"]],[22,24,["H3836"]],[24,26,["H934"]],[26,28,["H125"]],[28,29,["H176"]],[29,30,["H3836"]]]},{"k":3077,"v":[[0,3,["H3548"]],[3,6,["H7200"]],[6,9,["H2009"]],[9,12,["H8181"]],[12,16,["H934"]],[16,18,["H2015"]],[18,19,["H3836"]],[19,24,["H4758"]],[24,25,["H6013"]],[25,26,["H4480"]],[26,28,["H5785"]],[28,29,["H1931"]],[29,32,["H6883"]],[32,34,["H6524"]],[34,37,["H4348"]],[37,40,["H3548"]],[40,44,["H2930","(H853)"]],[44,45,["H1931"]],[45,48,["H5061"]],[48,50,["H6883"]]]},{"k":3078,"v":[[0,2,["H518"]],[2,4,["H3548"]],[4,6,["H7200"]],[6,9,["H2009"]],[9,12,["H369"]],[12,13,["H3836"]],[13,14,["H8181"]],[14,18,["H934"]],[18,22,["H369"]],[22,23,["H8217"]],[23,24,["H4480"]],[24,27,["H5785"]],[27,31,["H3544"]],[31,34,["H3548"]],[34,38,["H5462"]],[38,39,["H7651"]],[39,40,["H3117"]]]},{"k":3079,"v":[[0,3,["H3548"]],[3,6,["H7200"]],[6,9,["H7637"]],[9,10,["H3117"]],[10,12,["H518"]],[12,17,["H6581","H6581"]],[17,20,["H5785"]],[20,23,["H3548"]],[23,27,["H2930","(H853)"]],[27,28,["H1931"]],[28,31,["H5061"]],[31,33,["H6883"]]]},{"k":3080,"v":[[0,2,["H518"]],[2,5,["H934"]],[5,6,["H5975"]],[6,9,["H8478"]],[9,11,["H6581"]],[11,12,["H3808"]],[12,15,["H5785"]],[15,17,["H1931"]],[17,20,["H3544"]],[20,21,["H1931"]],[21,24,["H7613"]],[24,27,["H4348"]],[27,30,["H3548"]],[30,34,["H2891"]],[34,35,["H3588"]],[35,36,["H1931"]],[36,39,["H6867"]],[39,42,["H4348"]]]},{"k":3081,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,4,["H176"]],[4,5,["H802"]],[5,6,["H1961"]],[6,8,["H5061"]],[8,11,["H7218"]],[11,12,["H176"]],[12,14,["H2206"]]]},{"k":3082,"v":[[0,3,["H3548"]],[3,5,["H7200","(H853)"]],[5,7,["H5061"]],[7,9,["H2009"]],[9,14,["H4758"]],[14,15,["H6013"]],[15,16,["H4480"]],[16,18,["H5785"]],[18,25,["H6669"]],[25,26,["H1851"]],[26,27,["H8181"]],[27,30,["H3548"]],[30,34,["H2930","(H853)"]],[34,35,["H1931"]],[35,39,["H5424"]],[39,42,["H6883"]],[42,45,["H7218"]],[45,46,["H176"]],[46,47,["H2206"]]]},{"k":3083,"v":[[0,2,["H3588"]],[2,4,["H3548"]],[4,6,["H7200","(H853)"]],[6,8,["H5061"]],[8,11,["H5424"]],[11,13,["H2009"]],[13,16,["H369"]],[16,18,["H4758"]],[18,19,["H6013"]],[19,20,["H4480"]],[20,22,["H5785"]],[22,27,["H369"]],[27,28,["H7838"]],[28,29,["H8181"]],[29,34,["H3548"]],[34,37,["H5462"]],[37,40,["(H853)"]],[40,42,["H5061"]],[42,45,["H5424"]],[45,46,["H7651"]],[46,47,["H3117"]]]},{"k":3084,"v":[[0,4,["H7637"]],[4,5,["H3117"]],[5,7,["H3548"]],[7,10,["H7200","(H853)"]],[10,12,["H5061"]],[12,14,["H2009"]],[14,17,["H5424"]],[17,18,["H6581"]],[18,19,["H3808"]],[19,22,["H1961"]],[22,25,["H3808"]],[25,26,["H6669"]],[26,27,["H8181"]],[27,30,["H5424"]],[30,32,["H369"]],[32,34,["H4758"]],[34,35,["H6013"]],[35,36,["H4480"]],[36,38,["H5785"]]]},{"k":3085,"v":[[0,4,["H1548"]],[4,7,["H5424"]],[7,10,["H3808"]],[10,11,["H1548"]],[11,14,["H3548"]],[14,17,["H5462"]],[17,20,["(H853)"]],[20,22,["H5424"]],[22,23,["H7651"]],[23,24,["H3117"]],[24,25,["H8145"]]]},{"k":3086,"v":[[0,4,["H7637"]],[4,5,["H3117"]],[5,7,["H3548"]],[7,10,["H7200","(H853)"]],[10,12,["H5424"]],[12,14,["H2009"]],[14,17,["H5424"]],[17,19,["H3808"]],[19,20,["H6581"]],[20,23,["H5785"]],[23,24,["H369"]],[24,27,["H4758"]],[27,28,["H6013"]],[28,29,["H4480"]],[29,31,["H5785"]],[31,34,["H3548"]],[34,38,["H2891","(H853)"]],[38,42,["H3526"]],[42,44,["H899"]],[44,47,["H2891"]]]},{"k":3087,"v":[[0,2,["H518"]],[2,4,["H5424"]],[4,6,["H6581","H6581"]],[6,9,["H5785"]],[9,10,["H310"]],[10,12,["H2893"]]]},{"k":3088,"v":[[0,3,["H3548"]],[3,6,["H7200"]],[6,9,["H2009"]],[9,12,["H5424"]],[12,14,["H6581"]],[14,17,["H5785"]],[17,19,["H3548"]],[19,21,["H3808"]],[21,22,["H1239"]],[22,24,["H6669"]],[24,25,["H8181"]],[25,26,["H1931"]],[26,28,["H2931"]]]},{"k":3089,"v":[[0,2,["H518"]],[2,4,["H5424"]],[4,8,["H5869"]],[8,11,["H5975"]],[11,16,["H7838"]],[16,17,["H8181"]],[17,19,["H6779"]],[19,22,["H5424"]],[22,24,["H7495"]],[24,25,["H1931"]],[25,27,["H2889"]],[27,30,["H3548"]],[30,34,["H2891"]]]},{"k":3090,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,5,["H176"]],[5,7,["H802"]],[7,8,["H1961"]],[8,11,["H5785"]],[11,14,["H1320"]],[14,16,["H934"]],[16,18,["H3836"]],[18,20,["H934"]]]},{"k":3091,"v":[[0,3,["H3548"]],[3,5,["H7200"]],[5,7,["H2009"]],[7,11,["H934"]],[11,14,["H5785"]],[14,17,["H1320"]],[17,19,["H3544"]],[19,20,["H3836"]],[20,21,["H1931"]],[21,25,["H933"]],[25,27,["H6524"]],[27,30,["H5785"]],[30,31,["H1931"]],[31,33,["H2889"]]]},{"k":3092,"v":[[0,3,["H376"]],[3,4,["H3588"]],[4,8,["H4803"]],[8,10,["H7218"]],[10,11,["H1931"]],[11,13,["H7142"]],[13,16,["H1931"]],[16,17,["H2889"]]]},{"k":3093,"v":[[0,8,["H4803"]],[8,11,["H4480","H6285"]],[11,14,["H7218"]],[14,17,["H6440"]],[17,18,["H1931"]],[18,21,["H1371"]],[21,24,["H1931"]],[24,25,["H2889"]]]},{"k":3094,"v":[[0,2,["H3588"]],[2,4,["H1961"]],[4,8,["H7146"]],[8,9,["H176"]],[9,11,["H1372"]],[11,13,["H3836"]],[13,14,["H125"]],[14,15,["H5061"]],[15,16,["H1931"]],[16,19,["H6883"]],[19,21,["H6524"]],[21,25,["H7146"]],[25,26,["H176"]],[26,29,["H1372"]]]},{"k":3095,"v":[[0,3,["H3548"]],[3,6,["H7200"]],[6,9,["H2009"]],[9,12,["H7613"]],[12,15,["H5061"]],[15,17,["H3836"]],[17,18,["H125"]],[18,22,["H7146"]],[22,23,["H176"]],[23,27,["H1372"]],[27,30,["H6883"]],[30,31,["H4758"]],[31,34,["H5785"]],[34,37,["H1320"]]]},{"k":3096,"v":[[0,1,["H1931"]],[1,4,["H6879"]],[4,5,["H376"]],[5,6,["H1931"]],[6,8,["H2931"]],[8,10,["H3548"]],[10,15,["H2930","H2930"]],[15,17,["H5061"]],[17,21,["H7218"]]]},{"k":3097,"v":[[0,3,["H6879"]],[3,5,["H834"]],[5,7,["H5061"]],[7,10,["H899"]],[10,12,["H1961"]],[12,13,["H6533"]],[13,16,["H7218"]],[16,17,["H6544"]],[17,23,["H5844"]],[23,24,["H5921"]],[24,27,["H8222"]],[27,30,["H7121"]],[30,31,["H2931"]],[31,32,["H2931"]]]},{"k":3098,"v":[[0,1,["H3605"]],[1,3,["H3117"]],[3,4,["H834"]],[4,6,["H5061"]],[6,14,["H2930"]],[14,15,["H1931"]],[15,17,["H2931"]],[17,20,["H3427"]],[20,21,["H910"]],[21,22,["H4480","H2351"]],[22,24,["H4264"]],[24,27,["H4186"]],[27,28,[]]]},{"k":3099,"v":[[0,2,["H899"]],[2,4,["H3588"]],[4,6,["H5061"]],[6,8,["H6883"]],[8,9,["H1961"]],[9,15,["H6785"]],[15,16,["H899"]],[16,17,["H176"]],[17,19,["H6593"]],[19,20,["H899"]]]},{"k":3100,"v":[[0,1,["H176"]],[1,6,["H8359"]],[6,7,["H176"]],[7,8,["H6154"]],[8,10,["H6593"]],[10,13,["H6785"]],[13,14,["H176"]],[14,17,["H5785"]],[17,18,["H176"]],[18,20,["H3605"]],[20,22,["H4399"]],[22,24,["H5785"]]]},{"k":3101,"v":[[0,4,["H5061"]],[4,5,["H1961"]],[5,6,["H3422"]],[6,7,["H176"]],[7,8,["H125"]],[8,11,["H899"]],[11,12,["H176"]],[12,15,["H5785"]],[15,16,["H176"]],[16,19,["H8359"]],[19,20,["H176"]],[20,23,["H6154"]],[23,24,["H176"]],[24,26,["H3605"]],[26,27,["H3627"]],[27,29,["H5785"]],[29,30,["H1931"]],[30,33,["H5061"]],[33,35,["H6883"]],[35,39,["H7200","(H853)"]],[39,42,["H3548"]]]},{"k":3102,"v":[[0,3,["H3548"]],[3,6,["H7200","(H853)"]],[6,8,["H5061"]],[8,11,["H5462"]],[11,14,["(H853)"]],[14,16,["H5061"]],[16,17,["H7651"]],[17,18,["H3117"]]]},{"k":3103,"v":[[0,5,["H7200","(H853)"]],[5,7,["H5061"]],[7,10,["H7637"]],[10,11,["H3117"]],[11,12,["H3588"]],[12,14,["H5061"]],[14,16,["H6581"]],[16,19,["H899"]],[19,20,["H176"]],[20,23,["H8359"]],[23,24,["H176"]],[24,27,["H6154"]],[27,28,["H176"]],[28,31,["H5785"]],[31,34,["H3605"]],[34,35,["H4399"]],[35,36,["H834"]],[36,38,["H6213"]],[38,40,["H5785"]],[40,42,["H5061"]],[42,45,["H3992"]],[45,46,["H6883"]],[46,47,["H1931"]],[47,49,["H2931"]]]},{"k":3104,"v":[[0,4,["H8313","(H853)"]],[4,6,["H899"]],[6,7,["H176","(H853)"]],[7,8,["H8359"]],[8,9,["H176","(H853)"]],[9,10,["H6154"]],[10,12,["H6785"]],[12,13,["H176"]],[13,15,["H6593"]],[15,16,["H176","(H853)"]],[16,17,["H3605"]],[17,18,["H3627"]],[18,20,["H5785"]],[20,21,["H834"]],[21,23,["H5061"]],[23,24,["H1961"]],[24,25,["H3588"]],[25,26,["H1931"]],[26,29,["H3992"]],[29,30,["H6883"]],[30,34,["H8313"]],[34,37,["H784"]]]},{"k":3105,"v":[[0,2,["H518"]],[2,4,["H3548"]],[4,6,["H7200"]],[6,8,["H2009"]],[8,10,["H5061"]],[10,12,["H3808"]],[12,13,["H6581"]],[13,16,["H899"]],[16,17,["H176"]],[17,20,["H8359"]],[20,21,["H176"]],[21,24,["H6154"]],[24,25,["H176"]],[25,27,["H3605"]],[27,28,["H3627"]],[28,30,["H5785"]]]},{"k":3106,"v":[[0,3,["H3548"]],[3,5,["H6680"]],[5,8,["H3526"]],[8,10,["(H853)"]],[10,11,["H834"]],[11,13,["H5061"]],[13,20,["H5462"]],[20,21,["H7651"]],[21,22,["H3117"]],[22,23,["H8145"]]]},{"k":3107,"v":[[0,3,["H3548"]],[3,6,["H7200","(H853)"]],[6,8,["H5061"]],[8,10,["H310"]],[10,13,["H3526"]],[13,15,["H2009"]],[15,18,["H5061"]],[18,20,["H3808"]],[20,21,["H2015","(H853)"]],[21,23,["H5869"]],[23,26,["H5061"]],[26,28,["H3808"]],[28,29,["H6581"]],[29,30,["H1931"]],[30,32,["H2931"]],[32,35,["H8313"]],[35,39,["H784"]],[39,40,["H1931"]],[40,43,["H6356"]],[43,48,["H7146"]],[48,49,["H176"]],[49,50,["H1372"]]]},{"k":3108,"v":[[0,2,["H518"]],[2,4,["H3548"]],[4,5,["H7200"]],[5,7,["H2009"]],[7,9,["H5061"]],[9,12,["H3544"]],[12,13,["H310"]],[13,15,["H3526"]],[15,21,["H7167"]],[21,24,["H4480"]],[24,26,["H899"]],[26,27,["H176"]],[27,29,["H4480"]],[29,31,["H5785"]],[31,32,["H176"]],[32,34,["H4480"]],[34,36,["H8359"]],[36,37,["H176"]],[37,39,["H4480"]],[39,41,["H6154"]]]},{"k":3109,"v":[[0,2,["H518"]],[2,4,["H7200"]],[4,5,["H5750"]],[5,8,["H899"]],[8,9,["H176"]],[9,12,["H8359"]],[12,13,["H176"]],[13,16,["H6154"]],[16,17,["H176"]],[17,19,["H3605"]],[19,20,["H3627"]],[20,22,["H5785"]],[22,23,["H1931"]],[23,26,["H6524"]],[26,30,["H8313","(H853)"]],[30,32,["H834"]],[32,34,["H5061"]],[34,37,["H784"]]]},{"k":3110,"v":[[0,3,["H899"]],[3,4,["H176"]],[4,5,["H8359"]],[5,6,["H176"]],[6,7,["H6154"]],[7,8,["H176"]],[8,9,["H3605"]],[9,10,["H3627"]],[10,12,["H5785"]],[12,15,["H834"]],[15,18,["H3526"]],[18,21,["H5061"]],[21,23,["H5493"]],[23,24,["H4480"]],[24,30,["H3526"]],[30,33,["H8145"]],[33,37,["H2891"]]]},{"k":3111,"v":[[0,1,["H2063"]],[1,4,["H8451"]],[4,7,["H5061"]],[7,9,["H6883"]],[9,12,["H899"]],[12,14,["H6785"]],[14,15,["H176"]],[15,16,["H6593"]],[16,17,["H176"]],[17,20,["H8359"]],[20,21,["H176"]],[21,22,["H6154"]],[22,23,["H176"]],[23,24,["H3605"]],[24,25,["H3627"]],[25,27,["H5785"]],[27,31,["H2891"]],[31,32,["H176"]],[32,36,["H2930"]]]},{"k":3112,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3113,"v":[[0,1,["H2063"]],[1,3,["H1961"]],[3,5,["H8451"]],[5,8,["H6879"]],[8,11,["H3117"]],[11,14,["H2893"]],[14,18,["H935"]],[18,19,["H413"]],[19,21,["H3548"]]]},{"k":3114,"v":[[0,3,["H3548"]],[3,6,["H3318"]],[6,8,["H413","H4480","H2351"]],[8,10,["H4264"]],[10,13,["H3548"]],[13,15,["H7200"]],[15,17,["H2009"]],[17,20,["H5061"]],[20,22,["H6883"]],[22,24,["H7495"]],[24,25,["H4480"]],[25,27,["H6879"]]]},{"k":3115,"v":[[0,4,["H3548"]],[4,5,["H6680"]],[5,7,["H3947"]],[7,14,["H2891"]],[14,15,["H8147"]],[15,16,["H6833"]],[16,17,["H2416"]],[17,19,["H2889"]],[19,21,["H730"]],[21,22,["H6086"]],[22,24,["H8144","H8438"]],[24,26,["H231"]]]},{"k":3116,"v":[[0,3,["H3548"]],[3,5,["H6680","(H853)"]],[5,7,["H259"]],[7,10,["H6833"]],[10,12,["H7819"]],[12,13,["H413"]],[13,15,["H2789"]],[15,16,["H3627"]],[16,17,["H5921"]],[17,18,["H2416"]],[18,19,["H4325"]]]},{"k":3117,"v":[[0,2,["(H853)"]],[2,4,["H2416"]],[4,5,["H6833"]],[5,8,["H3947"]],[8,12,["H730"]],[12,13,["H6086"]],[13,16,["H8144","H8438"]],[16,19,["H231"]],[19,22,["H2881"]],[22,26,["H2416"]],[26,27,["H6833"]],[27,30,["H1818"]],[30,33,["H6833"]],[33,36,["H7819"]],[36,37,["H5921"]],[37,39,["H2416"]],[39,40,["H4325"]]]},{"k":3118,"v":[[0,4,["H5137"]],[4,5,["H5921"]],[5,11,["H2891"]],[11,12,["H4480"]],[12,14,["H6883"]],[14,15,["H7651"]],[15,16,["H6471"]],[16,21,["H2891"]],[21,24,["(H853)"]],[24,26,["H2416"]],[26,27,["H6833"]],[27,28,["H7971"]],[28,29,["H5921"]],[29,31,["H6440"]],[31,32,["H7704"]]]},{"k":3119,"v":[[0,7,["H2891"]],[7,9,["H3526","(H853)"]],[9,11,["H899"]],[11,14,["H1548","(H853)"]],[14,15,["H3605"]],[15,17,["H8181"]],[17,19,["H7364"]],[19,22,["H4325"]],[22,27,["H2891"]],[27,30,["H310"]],[30,33,["H935"]],[33,34,["H413"]],[34,36,["H4264"]],[36,39,["H3427"]],[39,40,["H4480","H2351"]],[40,44,["H168"]],[44,45,["H7651"]],[45,46,["H3117"]]]},{"k":3120,"v":[[0,4,["H1961"]],[4,7,["H7637"]],[7,8,["H3117"]],[8,16,["H1548","(H853)","H3605","H8181","(H853)"]],[16,18,["H7218"]],[18,21,["H2206"]],[21,24,["H1354","H5869"]],[24,26,["H3605"]],[26,28,["H8181"]],[28,32,["H1548"]],[32,36,["H3526","(H853)"]],[36,38,["H899"]],[38,42,["H7364","(H853)"]],[42,44,["H1320"]],[44,46,["H4325"]],[46,51,["H2891"]]]},{"k":3121,"v":[[0,4,["H8066"]],[4,5,["H3117"]],[5,8,["H3947"]],[8,9,["H8147"]],[9,11,["H3532"]],[11,13,["H8549"]],[13,15,["H259"]],[15,17,["H3535"]],[17,20,["H1323"]],[20,21,["H8141"]],[21,23,["H8549"]],[23,25,["H7969"]],[25,27,["H6241"]],[27,30,["H5560"]],[30,34,["H4503"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,39,["H259"]],[39,40,["H3849"]],[40,42,["H8081"]]]},{"k":3122,"v":[[0,3,["H3548"]],[3,7,["H2891"]],[7,9,["H5975","(H853)"]],[9,11,["H376"]],[11,17,["H2891"]],[17,21,["H6440"]],[21,23,["H3068"]],[23,26,["H6607"]],[26,29,["H168"]],[29,32,["H4150"]]]},{"k":3123,"v":[[0,3,["H3548"]],[3,5,["H3947","(H853)"]],[5,6,["H259"]],[6,8,["H3532"]],[8,10,["H7126"]],[10,15,["H817"]],[15,18,["H3849"]],[18,20,["H8081"]],[20,22,["H5130"]],[22,27,["H8573"]],[27,28,["H6440"]],[28,30,["H3068"]]]},{"k":3124,"v":[[0,4,["H7819","(H853)"]],[4,6,["H3532"]],[6,9,["H4725"]],[9,10,["H834"]],[10,13,["H7819","(H853)"]],[13,16,["H2403"]],[16,20,["H5930"]],[20,23,["H6944"]],[23,24,["H4725"]],[24,25,["H3588"]],[25,29,["H2403"]],[29,32,["H3548"]],[32,37,["H817"]],[37,38,["H1931"]],[38,41,["H6944","H6944"]]]},{"k":3125,"v":[[0,3,["H3548"]],[3,5,["H3947"]],[5,9,["H4480","H1818"]],[9,13,["H817"]],[13,16,["H3548"]],[16,18,["H5414"]],[18,20,["H5921"]],[20,22,["H8571"]],[22,25,["H3233"]],[25,26,["H241"]],[26,33,["H2891"]],[33,35,["H5921"]],[35,37,["H931"]],[37,40,["H3233"]],[40,41,["H3027"]],[41,43,["H5921"]],[43,46,["H931"]],[46,49,["H3233"]],[49,50,["H7272"]]]},{"k":3126,"v":[[0,3,["H3548"]],[3,5,["H3947"]],[5,9,["H4480","H3849"]],[9,11,["H8081"]],[11,13,["H3332"]],[13,15,["H5921"]],[15,17,["H3709"]],[17,20,["H3548"]],[20,22,["H8042"]]]},{"k":3127,"v":[[0,3,["H3548"]],[3,5,["H2881","(H853)"]],[5,7,["H3233"]],[7,8,["H676"]],[8,9,["H4480"]],[9,11,["H8081"]],[11,12,["H834"]],[12,14,["H5921"]],[14,16,["H8042"]],[16,17,["H3709"]],[17,20,["H5137"]],[20,21,["H4480"]],[21,23,["H8081"]],[23,26,["H676"]],[26,27,["H7651"]],[27,28,["H6471"]],[28,29,["H6440"]],[29,31,["H3068"]]]},{"k":3128,"v":[[0,4,["H4480","H3499"]],[4,7,["H8081"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H3709"]],[12,15,["H3548"]],[15,16,["H5414"]],[16,17,["H5921"]],[17,19,["H8571"]],[19,22,["H3233"]],[22,23,["H241"]],[23,30,["H2891"]],[30,32,["H5921"]],[32,34,["H931"]],[34,37,["H3233"]],[37,38,["H3027"]],[38,40,["H5921"]],[40,43,["H931"]],[43,46,["H3233"]],[46,47,["H7272"]],[47,48,["H5921"]],[48,50,["H1818"]],[50,54,["H817"]]]},{"k":3129,"v":[[0,3,["H3498"]],[3,6,["H8081"]],[6,7,["H834"]],[7,9,["H5921"]],[9,11,["H3548"]],[11,12,["H3709"]],[12,15,["H5414"]],[15,16,["H5921"]],[16,18,["H7218"]],[18,25,["H2891"]],[25,28,["H3548"]],[28,32,["H3722"]],[32,33,["H5921"]],[33,35,["H6440"]],[35,37,["H3068"]]]},{"k":3130,"v":[[0,3,["H3548"]],[3,5,["H6213","(H853)"]],[5,8,["H2403"]],[8,12,["H3722"]],[12,13,["H5921"]],[13,19,["H2891"]],[19,22,["H4480","H2932"]],[22,24,["H310"]],[24,27,["H7819","(H853)"]],[27,30,["H5930"]]]},{"k":3131,"v":[[0,3,["H3548"]],[3,5,["H5927","(H853)"]],[5,8,["H5930"]],[8,12,["H4503"]],[12,15,["H4196"]],[15,18,["H3548"]],[18,22,["H3722"]],[22,23,["H5921"]],[23,29,["H2891"]]]},{"k":3132,"v":[[0,2,["H518"]],[2,3,["H1931"]],[3,5,["H1800"]],[5,10,["H369","H3027","H5381"]],[10,14,["H3947"]],[14,15,["H259"]],[15,16,["H3532"]],[16,20,["H817"]],[20,23,["H8573"]],[23,27,["H3722"]],[27,28,["H5921"]],[28,31,["H259"]],[31,33,["H6241"]],[33,36,["H5560"]],[36,37,["H1101"]],[37,39,["H8081"]],[39,43,["H4503"]],[43,46,["H3849"]],[46,48,["H8081"]]]},{"k":3133,"v":[[0,2,["H8147"]],[2,3,["H8449"]],[3,4,["H176"]],[4,5,["H8147"]],[5,6,["H1121"]],[6,7,["H3123"]],[7,9,["H834"]],[9,14,["H5381","H3027"]],[14,17,["H259"]],[17,19,["H1961"]],[19,22,["H2403"]],[22,25,["H259"]],[25,28,["H5930"]]]},{"k":3134,"v":[[0,4,["H935"]],[4,8,["H8066"]],[8,9,["H3117"]],[9,12,["H2893"]],[12,13,["H413"]],[13,15,["H3548"]],[15,16,["H413"]],[16,18,["H6607"]],[18,21,["H168"]],[21,24,["H4150"]],[24,25,["H6440"]],[25,27,["H3068"]]]},{"k":3135,"v":[[0,3,["H3548"]],[3,5,["H3947","(H853)"]],[5,7,["H3532"]],[7,11,["H817"]],[11,14,["H3849"]],[14,16,["H8081"]],[16,19,["H3548"]],[19,21,["H5130"]],[21,26,["H8573"]],[26,27,["H6440"]],[27,29,["H3068"]]]},{"k":3136,"v":[[0,4,["H7819","(H853)"]],[4,6,["H3532"]],[6,10,["H817"]],[10,13,["H3548"]],[13,15,["H3947"]],[15,19,["H4480","H1818"]],[19,23,["H817"]],[23,25,["H5414"]],[25,27,["H5921"]],[27,29,["H8571"]],[29,32,["H3233"]],[32,33,["H241"]],[33,40,["H2891"]],[40,42,["H5921"]],[42,44,["H931"]],[44,47,["H3233"]],[47,48,["H3027"]],[48,50,["H5921"]],[50,53,["H931"]],[53,56,["H3233"]],[56,57,["H7272"]]]},{"k":3137,"v":[[0,3,["H3548"]],[3,5,["H3332"]],[5,6,["H4480"]],[6,8,["H8081"]],[8,9,["H5921"]],[9,11,["H3709"]],[11,14,["H3548"]],[14,16,["H8042"]]]},{"k":3138,"v":[[0,3,["H3548"]],[3,5,["H5137"]],[5,8,["H3233"]],[8,9,["H676"]],[9,11,["H4480"]],[11,13,["H8081"]],[13,14,["H834"]],[14,16,["H5921"]],[16,18,["H8042"]],[18,19,["H3709"]],[19,20,["H7651"]],[20,21,["H6471"]],[21,22,["H6440"]],[22,24,["H3068"]]]},{"k":3139,"v":[[0,3,["H3548"]],[3,5,["H5414"]],[5,6,["H4480"]],[6,8,["H8081"]],[8,9,["H834"]],[9,11,["H5921"]],[11,13,["H3709"]],[13,14,["H5921"]],[14,16,["H8571"]],[16,19,["H3233"]],[19,20,["H241"]],[20,27,["H2891"]],[27,29,["H5921"]],[29,31,["H931"]],[31,34,["H3233"]],[34,35,["H3027"]],[35,37,["H5921"]],[37,40,["H931"]],[40,43,["H3233"]],[43,44,["H7272"]],[44,45,["H5921"]],[45,47,["H4725"]],[47,50,["H1818"]],[50,54,["H817"]]]},{"k":3140,"v":[[0,3,["H3498"]],[3,4,["H4480"]],[4,6,["H8081"]],[6,7,["H834"]],[7,9,["H5921"]],[9,11,["H3548"]],[11,12,["H3709"]],[12,15,["H5414"]],[15,16,["H5921"]],[16,18,["H7218"]],[18,25,["H2891"]],[25,29,["H3722"]],[29,30,["H5921"]],[30,32,["H6440"]],[32,34,["H3068"]]]},{"k":3141,"v":[[0,4,["H6213","(H853)"]],[4,6,["H259"]],[6,7,["H4480"]],[7,9,["H8449"]],[9,10,["H176"]],[10,11,["H4480"]],[11,13,["H1121"]],[13,14,["H3123"]],[14,16,["H4480","H834"]],[16,19,["H5381","H3027"]]]},{"k":3142,"v":[[0,1,["(H853)"]],[1,3,["H834"]],[3,8,["H5381","H3027","(H853)"]],[8,10,["H259"]],[10,14,["H2403"]],[14,17,["H259"]],[17,21,["H5930"]],[21,22,["H5921"]],[22,25,["H4503"]],[25,28,["H3548"]],[28,32,["H3722"]],[32,33,["H5921"]],[33,39,["H2891"]],[39,40,["H6440"]],[40,42,["H3068"]]]},{"k":3143,"v":[[0,1,["H2063"]],[1,4,["H8451"]],[4,8,["H834"]],[8,11,["H5061"]],[11,13,["H6883"]],[13,14,["H834"]],[14,15,["H3027"]],[15,17,["H3808"]],[17,20,["H5381"]],[20,26,["H2893"]]]},{"k":3144,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H559"]]]},{"k":3145,"v":[[0,1,["H3588"]],[1,4,["H935"]],[4,5,["H413"]],[5,7,["H776"]],[7,9,["H3667"]],[9,10,["H834"]],[10,11,["H589"]],[11,12,["H5414"]],[12,17,["H272"]],[17,20,["H5414"]],[20,22,["H5061"]],[22,24,["H6883"]],[24,27,["H1004"]],[27,30,["H776"]],[30,33,["H272"]]]},{"k":3146,"v":[[0,4,["H834"]],[4,6,["H1004"]],[6,8,["H935"]],[8,10,["H5046"]],[10,12,["H3548"]],[12,13,["H559"]],[13,15,["H7200"]],[15,24,["H5061"]],[24,27,["H1004"]]]},{"k":3147,"v":[[0,3,["H3548"]],[3,5,["H6680"]],[5,8,["H6437","(H853)"]],[8,10,["H1004"]],[10,11,["H2962"]],[11,13,["H3548"]],[13,14,["H935"]],[14,18,["H7200","(H853)"]],[18,20,["H5061"]],[20,22,["H3605"]],[22,23,["H834"]],[23,27,["H1004"]],[27,29,["H3808"]],[29,31,["H2930"]],[31,33,["H310","H3651"]],[33,35,["H3548"]],[35,38,["H935"]],[38,40,["H7200","(H853)"]],[40,42,["H1004"]]]},{"k":3148,"v":[[0,5,["H7200","(H853)"]],[5,7,["H5061"]],[7,9,["H2009"]],[9,12,["H5061"]],[12,16,["H7023"]],[16,19,["H1004"]],[19,22,["H8258"]],[22,23,["H3422"]],[23,24,["H176"]],[24,25,["H125"]],[25,28,["H4758"]],[28,30,["H8217"]],[30,31,["H4480"]],[31,33,["H7023"]]]},{"k":3149,"v":[[0,3,["H3548"]],[3,6,["H3318"]],[6,7,["H4480"]],[7,9,["H1004"]],[9,10,["H413"]],[10,12,["H6607"]],[12,15,["H1004"]],[15,18,["H5462","(H853)"]],[18,20,["H1004"]],[20,21,["H7651"]],[21,22,["H3117"]]]},{"k":3150,"v":[[0,3,["H3548"]],[3,6,["H7725"]],[6,8,["H7637"]],[8,9,["H3117"]],[9,12,["H7200"]],[12,14,["H2009"]],[14,17,["H5061"]],[17,19,["H6581"]],[19,22,["H7023"]],[22,25,["H1004"]]]},{"k":3151,"v":[[0,3,["H3548"]],[3,5,["H6680"]],[5,9,["H2502","(H853)"]],[9,11,["H68"]],[11,13,["H834","H2004"]],[13,15,["H5061"]],[15,20,["H7993"]],[20,22,["H413"]],[22,24,["H2931"]],[24,25,["H4725"]],[25,26,["H4480","H2351","H413"]],[26,28,["H5892"]]]},{"k":3152,"v":[[0,6,["H1004"]],[6,9,["H7106"]],[9,10,["H4480","H1004"]],[10,12,["H5439"]],[12,17,["H8210","(H853)"]],[17,19,["H6083"]],[19,20,["H834"]],[20,23,["H7096"]],[23,24,["H413","H4480","H2351"]],[24,26,["H5892"]],[26,27,["H413"]],[27,29,["H2931"]],[29,30,["H4725"]]]},{"k":3153,"v":[[0,4,["H3947"]],[4,5,["H312"]],[5,6,["H68"]],[6,8,["H935"]],[8,10,["H413"]],[10,12,["H8478"]],[12,15,["H68"]],[15,19,["H3947"]],[19,20,["H312"]],[20,21,["H6083"]],[21,24,["H2902","(H853)"]],[24,26,["H1004"]]]},{"k":3154,"v":[[0,2,["H518"]],[2,4,["H5061"]],[4,6,["H7725"]],[6,9,["H6524"]],[9,12,["H1004"]],[12,14,["H310"]],[14,18,["H2502","(H853)"]],[18,20,["H68"]],[20,22,["H310"]],[22,25,["H7096","(H853)"]],[25,27,["H1004"]],[27,29,["H310"]],[29,32,["H2902"]]]},{"k":3155,"v":[[0,3,["H3548"]],[3,5,["H935"]],[5,7,["H7200"]],[7,9,["H2009"]],[9,12,["H5061"]],[12,14,["H6581"]],[14,17,["H1004"]],[17,18,["H1931"]],[18,21,["H3992"]],[21,22,["H6883"]],[22,25,["H1004"]],[25,26,["H1931"]],[26,28,["H2931"]]]},{"k":3156,"v":[[0,5,["H5422","(H853)"]],[5,7,["H1004","(H853)"]],[7,9,["H68"]],[9,14,["H6086"]],[14,17,["H3605"]],[17,19,["H6083"]],[19,22,["H1004"]],[22,28,["H3318"]],[28,30,["H413","H4480","H2351"]],[30,32,["H5892"]],[32,33,["H413"]],[33,35,["H2931"]],[35,36,["H4725"]]]},{"k":3157,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H1004"]],[7,8,["H3605"]],[8,10,["H3117"]],[10,15,["H5462"]],[15,18,["H2930"]],[18,19,["H5704"]],[19,21,["H6153"]]]},{"k":3158,"v":[[0,4,["H7901"]],[4,7,["H1004"]],[7,9,["H3526","(H853)"]],[9,11,["H899"]],[11,15,["H398"]],[15,18,["H1004"]],[18,20,["H3526","(H853)"]],[20,22,["H899"]]]},{"k":3159,"v":[[0,2,["H518"]],[2,4,["H3548"]],[4,7,["H935","H935"]],[7,9,["H7200"]],[9,13,["H2009"]],[13,15,["H5061"]],[15,17,["H3808"]],[17,18,["H6581"]],[18,21,["H1004"]],[21,22,["H310","(H853)"]],[22,24,["H1004"]],[24,26,["H2902"]],[26,29,["H3548"]],[29,34,["H2891","(H853)","H1004"]],[34,35,["H3588"]],[35,37,["H5061"]],[37,39,["H7495"]]]},{"k":3160,"v":[[0,4,["H3947"]],[4,6,["H2398","(H853)"]],[6,8,["H1004"]],[8,9,["H8147"]],[9,10,["H6833"]],[10,12,["H730"]],[12,13,["H6086"]],[13,15,["H8144","H8438"]],[15,17,["H231"]]]},{"k":3161,"v":[[0,4,["H7819","(H853)"]],[4,6,["H259"]],[6,9,["H6833"]],[9,10,["H413"]],[10,12,["H2789"]],[12,13,["H3627"]],[13,14,["H5921"]],[14,15,["H2416"]],[15,16,["H4325"]]]},{"k":3162,"v":[[0,4,["H3947","(H853)"]],[4,6,["H730"]],[6,7,["H6086"]],[7,10,["H231"]],[10,13,["H8144","H8438"]],[13,16,["H2416"]],[16,17,["H6833"]],[17,19,["H2881"]],[19,23,["H1818"]],[23,26,["H7819"]],[26,27,["H6833"]],[27,31,["H2416"]],[31,32,["H4325"]],[32,34,["H5137","H413"]],[34,36,["H1004"]],[36,37,["H7651"]],[37,38,["H6471"]]]},{"k":3163,"v":[[0,4,["H2398","(H853)"]],[4,6,["H1004"]],[6,9,["H1818"]],[9,12,["H6833"]],[12,16,["H2416"]],[16,17,["H4325"]],[17,21,["H2416"]],[21,22,["H6833"]],[22,26,["H730"]],[26,27,["H6086"]],[27,31,["H231"]],[31,35,["H8144","H8438"]]]},{"k":3164,"v":[[0,5,["H7971","(H853)"]],[5,7,["H2416"]],[7,8,["H6833"]],[8,10,["H413","H4480","H2351"]],[10,12,["H5892"]],[12,13,["H413"]],[13,15,["H6440"]],[15,16,["H7704"]],[16,20,["H3722"]],[20,21,["H5921"]],[21,23,["H1004"]],[23,28,["H2891"]]]},{"k":3165,"v":[[0,1,["H2063"]],[1,4,["H8451"]],[4,7,["H3605"]],[7,9,["H5061"]],[9,11,["H6883"]],[11,13,["H5424"]]]},{"k":3166,"v":[[0,4,["H6883"]],[4,7,["H899"]],[7,11,["H1004"]]]},{"k":3167,"v":[[0,4,["H7613"]],[4,8,["H5597"]],[8,13,["H934"]]]},{"k":3168,"v":[[0,2,["H3384"]],[2,3,["H3117"]],[3,6,["H2931"]],[6,8,["H3117"]],[8,11,["H2889"]],[11,12,["H2063"]],[12,15,["H8451"]],[15,17,["H6883"]]]},{"k":3169,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H559"]]]},{"k":3170,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H3588"]],[11,13,["H376","H376"]],[13,14,["H1961"]],[14,17,["H2100"]],[17,21,["H4480","H1320"]],[21,25,["H2101"]],[25,26,["H1931"]],[26,28,["H2931"]]]},{"k":3171,"v":[[0,2,["H2063"]],[2,4,["H1961"]],[4,6,["H2932"]],[6,9,["H2101"]],[9,12,["H1320"]],[12,13,["H7325"]],[13,14,["H854"]],[14,16,["H2101"]],[16,17,["H176"]],[17,19,["H1320"]],[19,21,["H2856"]],[21,24,["H4480","H2101"]],[24,25,["H1931"]],[25,28,["H2932"]]]},{"k":3172,"v":[[0,1,["H3605"]],[1,2,["H4904"]],[2,3,["H834","H5921"]],[3,5,["H7901"]],[5,9,["H2100"]],[9,11,["H2930"]],[11,13,["H3605"]],[13,14,["H3627"]],[14,15,["H834","H5921"]],[15,17,["H3427"]],[17,20,["H2930"]]]},{"k":3173,"v":[[0,2,["H376","H834"]],[2,3,["H5060"]],[3,5,["H4904"]],[5,7,["H3526"]],[7,9,["H899"]],[9,11,["H7364"]],[11,14,["H4325"]],[14,17,["H2930"]],[17,18,["H5704"]],[18,20,["H6153"]]]},{"k":3174,"v":[[0,4,["H3427"]],[4,5,["H5921"]],[5,7,["H3627"]],[7,8,["H834","H5921"]],[8,10,["H3427"]],[10,14,["H2100"]],[14,16,["H3526"]],[16,18,["H899"]],[18,20,["H7364"]],[20,23,["H4325"]],[23,26,["H2930"]],[26,27,["H5704"]],[27,29,["H6153"]]]},{"k":3175,"v":[[0,4,["H5060"]],[4,6,["H1320"]],[6,12,["H2100"]],[12,14,["H3526"]],[14,16,["H899"]],[16,18,["H7364"]],[18,21,["H4325"]],[21,24,["H2930"]],[24,25,["H5704"]],[25,27,["H6153"]]]},{"k":3176,"v":[[0,2,["H3588"]],[2,7,["H2100"]],[7,8,["H7556"]],[8,13,["H2889"]],[13,17,["H3526"]],[17,19,["H899"]],[19,21,["H7364"]],[21,24,["H4325"]],[24,27,["H2930"]],[27,28,["H5704"]],[28,30,["H6153"]]]},{"k":3177,"v":[[0,4,["H3605","H4817","H834"]],[4,6,["H7392"]],[6,7,["H5921"]],[7,11,["H2100"]],[11,14,["H2930"]]]},{"k":3178,"v":[[0,2,["H3605"]],[2,3,["H5060"]],[3,5,["H3605"]],[5,6,["H834"]],[6,7,["H1961"]],[7,8,["H8478"]],[8,12,["H2930"]],[12,13,["H5704"]],[13,15,["H6153"]],[15,19,["H5375"]],[19,25,["H3526"]],[25,27,["H899"]],[27,29,["H7364"]],[29,32,["H4325"]],[32,35,["H2930"]],[35,36,["H5704"]],[36,38,["H6153"]]]},{"k":3179,"v":[[0,2,["H3605","H834"]],[2,4,["H5060"]],[4,8,["H2100"]],[8,11,["H3808"]],[11,12,["H7857"]],[12,14,["H3027"]],[14,16,["H4325"]],[16,19,["H3526"]],[19,21,["H899"]],[21,23,["H7364"]],[23,26,["H4325"]],[26,29,["H2930"]],[29,30,["H5704"]],[30,32,["H6153"]]]},{"k":3180,"v":[[0,3,["H3627"]],[3,5,["H2789"]],[5,6,["H834"]],[6,8,["H5060"]],[8,12,["H2100"]],[12,15,["H7665"]],[15,17,["H3605"]],[17,18,["H3627"]],[18,20,["H6086"]],[20,23,["H7857"]],[23,25,["H4325"]]]},{"k":3181,"v":[[0,2,["H3588"]],[2,7,["H2100"]],[7,9,["H2891"]],[9,12,["H4480","H2101"]],[12,16,["H5608"]],[16,19,["H7651"]],[19,20,["H3117"]],[20,23,["H2893"]],[23,25,["H3526"]],[25,27,["H899"]],[27,29,["H7364"]],[29,31,["H1320"]],[31,33,["H2416"]],[33,34,["H4325"]],[34,38,["H2891"]]]},{"k":3182,"v":[[0,4,["H8066"]],[4,5,["H3117"]],[5,8,["H3947"]],[8,11,["H8147"]],[11,12,["H8449"]],[12,13,["H176"]],[13,14,["H8147"]],[14,15,["H1121"]],[15,16,["H3123"]],[16,18,["H935"]],[18,19,["H6440"]],[19,21,["H3068"]],[21,22,["H413"]],[22,24,["H6607"]],[24,27,["H168"]],[27,30,["H4150"]],[30,32,["H5414"]],[32,34,["H413"]],[34,36,["H3548"]]]},{"k":3183,"v":[[0,3,["H3548"]],[3,5,["H6213"]],[5,8,["H259"]],[8,12,["H2403"]],[12,15,["H259"]],[15,19,["H5930"]],[19,22,["H3548"]],[22,26,["H3722"]],[26,27,["H5921"]],[27,29,["H6440"]],[29,31,["H3068"]],[31,34,["H4480","H2101"]]]},{"k":3184,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H2233"]],[5,7,["H7902"]],[7,9,["H3318"]],[9,10,["H4480"]],[10,15,["H7364","(H853)"]],[15,16,["H3605"]],[16,18,["H1320"]],[18,20,["H4325"]],[20,23,["H2930"]],[23,24,["H5704"]],[24,26,["H6153"]]]},{"k":3185,"v":[[0,2,["H3605"]],[2,3,["H899"]],[3,5,["H3605"]],[5,6,["H5785"]],[6,7,["H834","H5921"]],[7,8,["H1961"]],[8,10,["H2233"]],[10,12,["H7902"]],[12,15,["H3526"]],[15,17,["H4325"]],[17,20,["H2930"]],[20,21,["H5704"]],[21,23,["H6153"]]]},{"k":3186,"v":[[0,2,["H802"]],[2,5,["H834","(H853)"]],[5,6,["H376"]],[6,8,["H7901"]],[8,10,["H2233"]],[10,12,["H7902"]],[12,16,["H7364"]],[16,19,["H4325"]],[19,22,["H2930"]],[22,23,["H5704"]],[23,25,["H6153"]]]},{"k":3187,"v":[[0,2,["H3588"]],[2,4,["H802"]],[4,5,["H1961"]],[5,7,["H2100"]],[7,10,["H2101"]],[10,13,["H1320"]],[13,14,["H1961"]],[14,15,["H1818"]],[15,18,["H1961"]],[18,20,["H5079"]],[20,21,["H7651"]],[21,22,["H3117"]],[22,24,["H3605"]],[24,25,["H5060"]],[25,29,["H2930"]],[29,30,["H5704"]],[30,32,["H6153"]]]},{"k":3188,"v":[[0,3,["H3605"]],[3,4,["H834"]],[4,6,["H7901"]],[6,7,["H5921"]],[7,10,["H5079"]],[10,13,["H2930"]],[13,15,["H3605"]],[15,17,["H834"]],[17,19,["H3427"]],[19,20,["H5921"]],[20,23,["H2930"]]]},{"k":3189,"v":[[0,2,["H3605"]],[2,3,["H5060"]],[3,5,["H4904"]],[5,7,["H3526"]],[7,9,["H899"]],[9,11,["H7364"]],[11,14,["H4325"]],[14,17,["H2930"]],[17,18,["H5704"]],[18,20,["H6153"]]]},{"k":3190,"v":[[0,2,["H3605"]],[2,3,["H5060"]],[3,4,["H3605"]],[4,5,["H3627"]],[5,6,["H834"]],[6,8,["H3427"]],[8,9,["H5921"]],[9,11,["H3526"]],[11,13,["H899"]],[13,15,["H7364"]],[15,18,["H4325"]],[18,21,["H2930"]],[21,22,["H5704"]],[22,24,["H6153"]]]},{"k":3191,"v":[[0,2,["H518"]],[2,3,["H1931"]],[3,5,["H5921"]],[5,7,["H4904"]],[7,8,["H176"]],[8,9,["H5921"]],[9,11,["H3627"]],[11,12,["H834","H5921"]],[12,13,["H1931"]],[13,14,["H3427"]],[14,17,["H5060"]],[17,22,["H2930"]],[22,23,["H5704"]],[23,25,["H6153"]]]},{"k":3192,"v":[[0,2,["H518"]],[2,4,["H376"]],[4,9,["H7901","H7901","(H853)"]],[9,12,["H5079"]],[12,13,["H1961"]],[13,14,["H5921"]],[14,19,["H2930"]],[19,20,["H7651"]],[20,21,["H3117"]],[21,23,["H3605"]],[23,25,["H4904"]],[25,26,["H834","H5921"]],[26,28,["H7901"]],[28,31,["H2930"]]]},{"k":3193,"v":[[0,2,["H3588"]],[2,4,["H802"]],[4,7,["H2100","H2101"]],[7,10,["H1818"]],[10,11,["H7227"]],[11,12,["H3117"]],[12,14,["H3808"]],[14,16,["H6256"]],[16,19,["H5079"]],[19,20,["H176"]],[20,21,["H3588"]],[21,23,["H2100"]],[23,24,["H5921"]],[24,29,["H5079"]],[29,30,["H3605"]],[30,32,["H3117"]],[32,35,["H2101"]],[35,38,["H2932"]],[38,40,["H1961"]],[40,43,["H3117"]],[43,46,["H5079"]],[46,47,["H1931"]],[47,50,["H2931"]]]},{"k":3194,"v":[[0,1,["H3605"]],[1,2,["H4904"]],[2,3,["H834","H5921"]],[3,5,["H7901"]],[5,6,["H3605"]],[6,8,["H3117"]],[8,11,["H2101"]],[11,13,["H1961"]],[13,18,["H4904"]],[18,21,["H5079"]],[21,23,["H3605","H3627"]],[23,25,["H3427"]],[25,26,["H834","H5921"]],[26,28,["H1961"]],[28,29,["H2931"]],[29,32,["H2932"]],[32,35,["H5079"]]]},{"k":3195,"v":[[0,2,["H3605"]],[2,3,["H5060"]],[3,8,["H2930"]],[8,11,["H3526"]],[11,13,["H899"]],[13,15,["H7364"]],[15,18,["H4325"]],[18,21,["H2930"]],[21,22,["H5704"]],[22,24,["H6153"]]]},{"k":3196,"v":[[0,2,["H518"]],[2,5,["H2891"]],[5,8,["H4480","H2101"]],[8,12,["H5608"]],[12,15,["H7651"]],[15,16,["H3117"]],[16,19,["H310"]],[19,23,["H2891"]]]},{"k":3197,"v":[[0,4,["H8066"]],[4,5,["H3117"]],[5,8,["H3947"]],[8,11,["H8147"]],[11,12,["H8449"]],[12,13,["H176"]],[13,14,["H8147"]],[14,15,["H1121"]],[15,16,["H3123"]],[16,18,["H935"]],[18,20,["H413"]],[20,22,["H3548"]],[22,23,["H413"]],[23,25,["H6607"]],[25,28,["H168"]],[28,31,["H4150"]]]},{"k":3198,"v":[[0,3,["H3548"]],[3,5,["H6213","(H853)"]],[5,7,["H259"]],[7,11,["H2403"]],[11,14,["H259"]],[14,18,["H5930"]],[18,21,["H3548"]],[21,25,["H3722"]],[25,26,["H5921"]],[26,28,["H6440"]],[28,30,["H3068"]],[30,33,["H4480","H2101"]],[33,36,["H2932"]]]},{"k":3199,"v":[[0,4,["H5144","(H853)"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,11,["H4480","H2932"]],[11,14,["H4191"]],[14,15,["H3808"]],[15,18,["H2932"]],[18,21,["H2930","(H853)"]],[21,23,["H4908"]],[23,24,["H834"]],[24,26,["H8432"]],[26,27,[]]]},{"k":3200,"v":[[0,1,["H2063"]],[1,4,["H8451"]],[4,10,["H2100"]],[10,14,["H834"]],[14,15,["H7902","H2233"]],[15,16,["H3318"]],[16,17,["H4480"]],[17,21,["H2930"]],[21,22,[]]]},{"k":3201,"v":[[0,6,["H1739"]],[6,9,["H5079"]],[9,16,["H2100","(H853)","H2101"]],[16,19,["H2145"]],[19,23,["H5347"]],[23,26,["H376"]],[26,27,["H834"]],[27,28,["H7901"]],[28,29,["H5973"]],[29,33,["H2931"]]]},{"k":3202,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H310"]],[7,9,["H4194"]],[9,12,["H8147"]],[12,13,["H1121"]],[13,15,["H175"]],[15,18,["H7126"]],[18,19,["H6440"]],[19,21,["H3068"]],[21,23,["H4191"]]]},{"k":3203,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H1696"]],[7,8,["H413"]],[8,9,["H175"]],[9,11,["H251"]],[11,14,["H935"]],[14,15,["H408"]],[15,17,["H3605"]],[17,18,["H6256"]],[18,19,["H413"]],[19,21,["H6944"]],[21,23,["H4480","H1004"]],[23,25,["H6532"]],[25,26,["H413","H6440"]],[26,29,["H3727"]],[29,30,["H834"]],[30,32,["H5921"]],[32,34,["H727"]],[34,37,["H4191"]],[37,38,["H3808"]],[38,39,["H3588"]],[39,42,["H7200"]],[42,45,["H6051"]],[45,46,["H5921"]],[46,49,["H3727"]]]},{"k":3204,"v":[[0,1,["H2063"]],[1,3,["H175"]],[3,4,["H935"]],[4,5,["H413"]],[5,7,["H6944"]],[7,11,["H1121","H1241"]],[11,12,["H6499"]],[12,16,["H2403"]],[16,19,["H352"]],[19,23,["H5930"]]]},{"k":3205,"v":[[0,4,["H3847"]],[4,6,["H6944"]],[6,7,["H906"]],[7,8,["H3801"]],[8,12,["H1961"]],[12,14,["H906"]],[14,15,["H4370"]],[15,16,["H5921"]],[16,18,["H1320"]],[18,22,["H2296"]],[22,25,["H906"]],[25,26,["H73"]],[26,30,["H906"]],[30,31,["H4701"]],[31,35,["H6801"]],[35,36,["H1992"]],[36,38,["H6944"]],[38,39,["H899"]],[39,43,["H7364","(H853)"]],[43,45,["H1320"]],[45,47,["H4325"]],[47,52,["H3847"]]]},{"k":3206,"v":[[0,4,["H3947"]],[4,5,["H4480","H854"]],[5,7,["H5712"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,13,["H8147"]],[13,14,["H8163"]],[14,17,["H5795"]],[17,21,["H2403"]],[21,23,["H259"]],[23,24,["H352"]],[24,28,["H5930"]]]},{"k":3207,"v":[[0,2,["H175"]],[2,4,["H7126","(H853)"]],[4,6,["H6499"]],[6,10,["H2403"]],[10,11,["H834"]],[11,18,["H3722"]],[18,19,["H1157"]],[19,22,["H1157"]],[22,24,["H1004"]]]},{"k":3208,"v":[[0,4,["H3947","(H853)"]],[4,6,["H8147"]],[6,7,["H8163"]],[7,9,["H5975"]],[9,11,["H6440"]],[11,13,["H3068"]],[13,16,["H6607"]],[16,19,["H168"]],[19,22,["H4150"]]]},{"k":3209,"v":[[0,2,["H175"]],[2,4,["H5414"]],[4,5,["H1486"]],[5,6,["H5921"]],[6,8,["H8147"]],[8,9,["H8163"]],[9,10,["H259"]],[10,11,["H1486"]],[11,14,["H3068"]],[14,17,["H259"]],[17,18,["H1486"]],[18,21,["H5799"]]]},{"k":3210,"v":[[0,2,["H175"]],[2,4,["H7126","(H853)"]],[4,6,["H8163"]],[6,7,["H5921"]],[7,8,["H834"]],[8,10,["H3068"]],[10,11,["H1486"]],[11,12,["H5927"]],[12,14,["H6213"]],[14,19,["H2403"]]]},{"k":3211,"v":[[0,3,["H8163"]],[3,4,["H5921"]],[4,5,["H834"]],[5,7,["H1486"]],[7,8,["H5927"]],[8,12,["H5799"]],[12,15,["H5975"]],[15,16,["H2416"]],[16,17,["H6440"]],[17,19,["H3068"]],[19,23,["H3722"]],[23,24,["H5921"]],[24,30,["H7971","(H853)"]],[30,33,["H5799"]],[33,36,["H4057"]]]},{"k":3212,"v":[[0,2,["H175"]],[2,4,["H7126","(H853)"]],[4,6,["H6499"]],[6,10,["H2403"]],[10,11,["H834"]],[11,19,["H3722"]],[19,20,["H1157"]],[20,23,["H1157"]],[23,25,["H1004"]],[25,28,["H7819","(H853)"]],[28,30,["H6499"]],[30,34,["H2403"]],[34,35,["H834"]],[35,38,[]]]},{"k":3213,"v":[[0,4,["H3947"]],[4,6,["H4289"]],[6,7,["H4393"]],[7,10,["H1513"]],[10,12,["H784"]],[12,14,["H4480","H5921"]],[14,16,["H4196"]],[16,17,["H4480","H6440"]],[17,19,["H3068"]],[19,22,["H2651"]],[22,23,["H4393"]],[23,25,["H5561"]],[25,26,["H7004"]],[26,28,["H1851"]],[28,30,["H935"]],[30,32,["H4480","H1004"]],[32,34,["H6532"]]]},{"k":3214,"v":[[0,4,["H5414","(H853)"]],[4,6,["H7004"]],[6,7,["H5921"]],[7,9,["H784"]],[9,10,["H6440"]],[10,12,["H3068"]],[12,15,["H6051"]],[15,18,["H7004"]],[18,20,["H3680","(H853)"]],[20,23,["H3727"]],[23,24,["H834"]],[24,26,["H5921"]],[26,28,["H5715"]],[28,31,["H4191"]],[31,32,["H3808"]]]},{"k":3215,"v":[[0,4,["H3947"]],[4,7,["H4480","H1818"]],[7,10,["H6499"]],[10,12,["H5137"]],[12,16,["H676"]],[16,17,["H5921","H6440"]],[17,20,["H3727"]],[20,21,["H6924"]],[21,23,["H6440"]],[23,26,["H3727"]],[26,29,["H5137"]],[29,30,["H4480"]],[30,32,["H1818"]],[32,35,["H676"]],[35,36,["H7651"]],[36,37,["H6471"]]]},{"k":3216,"v":[[0,4,["H7819","(H853)"]],[4,6,["H8163"]],[6,10,["H2403"]],[10,11,["H834"]],[11,15,["H5971"]],[15,17,["H935","(H853)"]],[17,19,["H1818"]],[19,20,["H413","H4480","H1004"]],[20,22,["H6532"]],[22,24,["H6213"]],[24,25,["H854"]],[25,27,["H1818"]],[27,28,["H834"]],[28,30,["H6213"]],[30,33,["H1818"]],[33,36,["H6499"]],[36,38,["H5137"]],[38,40,["H5921"]],[40,43,["H3727"]],[43,45,["H6440"]],[45,48,["H3727"]]]},{"k":3217,"v":[[0,6,["H3722"]],[6,7,["H5921"]],[7,9,["H6944"]],[9,14,["H4480","H2932"]],[14,17,["H1121"]],[17,19,["H3478"]],[19,24,["H4480","H6588"]],[24,26,["H3605"]],[26,28,["H2403"]],[28,30,["H3651"]],[30,33,["H6213"]],[33,36,["H168"]],[36,39,["H4150"]],[39,41,["H7931"]],[41,42,["H854"]],[42,46,["H8432"]],[46,49,["H2932"]]]},{"k":3218,"v":[[0,4,["H1961"]],[4,5,["H3808","H3605"]],[5,6,["H120"]],[6,9,["H168"]],[9,12,["H4150"]],[12,16,["H935"]],[16,20,["H3722"]],[20,23,["H6944"]],[23,25,["H5704"]],[25,28,["H3318"]],[28,33,["H3722"]],[33,34,["H1157"]],[34,37,["H1157"]],[37,39,["H1004"]],[39,41,["H1157"]],[41,42,["H3605"]],[42,44,["H6951"]],[44,46,["H3478"]]]},{"k":3219,"v":[[0,5,["H3318"]],[5,6,["H413"]],[6,8,["H4196"]],[8,9,["H834"]],[9,11,["H6440"]],[11,13,["H3068"]],[13,17,["H3722"]],[17,18,["H5921"]],[18,22,["H3947"]],[22,25,["H4480","H1818"]],[25,28,["H6499"]],[28,32,["H4480","H1818"]],[32,35,["H8163"]],[35,37,["H5414"]],[37,39,["H5921"]],[39,41,["H7161"]],[41,44,["H4196"]],[44,46,["H5439"]]]},{"k":3220,"v":[[0,4,["H5137"]],[4,5,["H4480"]],[5,7,["H1818"]],[7,8,["H5921"]],[8,12,["H676"]],[12,13,["H7651"]],[13,14,["H6471"]],[14,16,["H2891"]],[16,19,["H6942"]],[19,23,["H4480","H2932"]],[23,26,["H1121"]],[26,28,["H3478"]]]},{"k":3221,"v":[[0,7,["H3615"]],[7,9,["H4480","H3722","(H853)"]],[9,11,["H6944"]],[11,15,["H168"]],[15,18,["H4150"]],[18,21,["H4196"]],[21,24,["H7126","(H853)"]],[24,26,["H2416"]],[26,27,["H8163"]]]},{"k":3222,"v":[[0,2,["H175"]],[2,4,["H5564","(H853)"]],[4,5,["H8147"]],[5,7,["H3027"]],[7,8,["H5921"]],[8,10,["H7218"]],[10,13,["H2416"]],[13,14,["H8163"]],[14,16,["H3034"]],[16,17,["H5921"]],[17,18,["(H853)"]],[18,19,["H3605"]],[19,21,["H5771"]],[21,24,["H1121"]],[24,26,["H3478"]],[26,28,["H3605"]],[28,30,["H6588"]],[30,32,["H3605"]],[32,34,["H2403"]],[34,35,["H5414"]],[35,37,["H5921"]],[37,39,["H7218"]],[39,42,["H8163"]],[42,47,["H7971"]],[47,50,["H3027"]],[50,53,["H6261"]],[53,54,["H376"]],[54,57,["H4057"]]]},{"k":3223,"v":[[0,3,["H8163"]],[3,5,["H5375"]],[5,6,["H5921"]],[6,7,["(H853)"]],[7,8,["H3605"]],[8,10,["H5771"]],[10,11,["H413"]],[11,13,["H776"]],[13,15,["H1509"]],[15,20,["H7971","(H853)"]],[20,22,["H8163"]],[22,25,["H4057"]]]},{"k":3224,"v":[[0,2,["H175"]],[2,4,["H935"]],[4,5,["H413"]],[5,7,["H168"]],[7,10,["H4150"]],[10,14,["H6584","(H853)"]],[14,16,["H906"]],[16,17,["H899"]],[17,18,["H834"]],[18,21,["H3847"]],[21,24,["H935"]],[24,25,["H413"]],[25,27,["H6944"]],[27,31,["H5117"]],[31,33,["H8033"]]]},{"k":3225,"v":[[0,4,["H7364","(H853)"]],[4,6,["H1320"]],[6,8,["H4325"]],[8,11,["H6918"]],[11,12,["H4725"]],[12,15,["H3847","(H853)"]],[15,17,["H899"]],[17,20,["H3318"]],[20,22,["H6213","(H853)"]],[22,25,["H5930"]],[25,29,["H5930"]],[29,32,["H5971"]],[32,36,["H3722"]],[36,37,["H1157"]],[37,40,["H1157"]],[40,42,["H5971"]]]},{"k":3226,"v":[[0,3,["H2459"]],[3,7,["H2403"]],[7,10,["H6999"]],[10,13,["H4196"]]]},{"k":3227,"v":[[0,5,["H7971","(H853)"]],[5,7,["H8163"]],[7,10,["H5799"]],[10,12,["H3526"]],[12,14,["H899"]],[14,16,["H7364","(H853)"]],[16,18,["H1320"]],[18,20,["H4325"]],[20,22,["H310","H3651"]],[22,23,["H935"]],[23,24,["H413"]],[24,26,["H4264"]]]},{"k":3228,"v":[[0,3,["H6499"]],[3,7,["H2403"]],[7,10,["H8163"]],[10,14,["H2403","(H853)"]],[14,15,["H834"]],[15,16,["H1818"]],[16,19,["H935"]],[19,22,["H3722"]],[22,25,["H6944"]],[25,30,["H3318"]],[30,31,["H413","H4480","H2351"]],[31,33,["H4264"]],[33,37,["H8313"]],[37,40,["H784","(H853)"]],[40,42,["H5785"]],[42,45,["H1320"]],[45,48,["H6569"]]]},{"k":3229,"v":[[0,4,["H8313"]],[4,7,["H3526"]],[7,9,["H899"]],[9,11,["H7364","(H853)"]],[11,13,["H1320"]],[13,15,["H4325"]],[15,17,["H310","H3651"]],[17,20,["H935"]],[20,21,["H413"]],[21,23,["H4264"]]]},{"k":3230,"v":[[0,4,["H1961"]],[4,6,["H2708"]],[6,8,["H5769"]],[8,14,["H7637"]],[14,15,["H2320"]],[15,18,["H6218"]],[18,22,["H2320"]],[22,25,["H6031","(H853)"]],[25,27,["H5315"]],[27,29,["H6213"]],[29,30,["H3808"]],[30,31,["H4399"]],[31,33,["H3605"]],[33,41,["H249"]],[41,44,["H1616"]],[44,46,["H1481"]],[46,47,["H8432"]],[47,48,[]]]},{"k":3231,"v":[[0,1,["H3588"]],[1,3,["H2088"]],[3,4,["H3117"]],[4,10,["H3722"]],[10,11,["H5921"]],[11,14,["H2891"]],[14,20,["H2891"]],[20,22,["H4480","H3605"]],[22,24,["H2403"]],[24,25,["H6440"]],[25,27,["H3068"]]]},{"k":3232,"v":[[0,1,["H1931"]],[1,5,["H7676"]],[5,7,["H7677"]],[7,13,["H6031","(H853)"]],[13,15,["H5315"]],[15,18,["H2708"]],[18,20,["H5769"]]]},{"k":3233,"v":[[0,3,["H3548"]],[3,4,["H834"]],[4,7,["H4886"]],[7,9,["H834"]],[9,12,["H4390","(H853)","H3027"]],[12,18,["H3547"]],[18,22,["H8478","H1"]],[22,26,["H3722"]],[26,30,["H3847","(H853)"]],[30,32,["H906"]],[32,33,["H899"]],[33,36,["H6944"]],[36,37,["H899"]]]},{"k":3234,"v":[[0,6,["H3722"]],[6,7,["(H853)"]],[7,9,["H6944"]],[9,10,["H4720"]],[10,16,["H3722"]],[16,19,["H168"]],[19,22,["H4150"]],[22,26,["H4196"]],[26,32,["H3722"]],[32,33,["H5921"]],[33,35,["H3548"]],[35,37,["H5921"]],[37,38,["H3605"]],[38,40,["H5971"]],[40,43,["H6951"]]]},{"k":3235,"v":[[0,2,["H2063"]],[2,4,["H1961"]],[4,6,["H5769"]],[6,7,["H2708"]],[7,13,["H3722"]],[13,14,["H5921"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,20,["H4480","H3605"]],[20,22,["H2403"]],[22,23,["H259"]],[23,25,["H8141"]],[25,28,["H6213"]],[28,29,["H834"]],[29,31,["H3068"]],[31,32,["H6680","(H853)"]],[32,33,["H4872"]]]},{"k":3236,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3237,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,3,["H175"]],[3,5,["H413"]],[5,7,["H1121"]],[7,9,["H413"]],[9,10,["H3605"]],[10,12,["H1121"]],[12,14,["H3478"]],[14,16,["H559"]],[16,17,["H413"]],[17,19,["H2088"]],[19,22,["H1697"]],[22,23,["H834"]],[23,25,["H3068"]],[25,27,["H6680"]],[27,28,["H559"]]]},{"k":3238,"v":[[0,3,["H376","H376"]],[3,8,["H4480","H1004"]],[8,10,["H3478"]],[10,11,["H834"]],[11,12,["H7819"]],[12,14,["H7794"]],[14,15,["H176"]],[15,16,["H3775"]],[16,17,["H176"]],[17,18,["H5795"]],[18,21,["H4264"]],[21,22,["H176"]],[22,23,["H834"]],[23,24,["H7819"]],[24,27,["H4480","H2351"]],[27,29,["H4264"]]]},{"k":3239,"v":[[0,2,["H935"]],[2,4,["H3808"]],[4,5,["H413"]],[5,7,["H6607"]],[7,10,["H168"]],[10,13,["H4150"]],[13,15,["H7126"]],[15,17,["H7133"]],[17,20,["H3068"]],[20,21,["H6440"]],[21,23,["H4908"]],[23,26,["H3068"]],[26,27,["H1818"]],[27,30,["H2803"]],[30,32,["H1931"]],[32,33,["H376"]],[33,36,["H8210"]],[36,37,["H1818"]],[37,39,["H1931"]],[39,40,["H376"]],[40,44,["H3772"]],[44,46,["H4480","H7130"]],[46,48,["H5971"]]]},{"k":3240,"v":[[0,3,["H4616"]],[3,4,["H834"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,10,["H935","(H853)"]],[10,12,["H2077"]],[12,13,["H834"]],[13,14,["H1992"]],[14,15,["H2076"]],[15,16,["H5921"]],[16,18,["H6440"]],[18,19,["H7704"]],[19,24,["H935"]],[24,28,["H3068"]],[28,29,["H413"]],[29,31,["H6607"]],[31,34,["H168"]],[34,37,["H4150"]],[37,38,["H413"]],[38,40,["H3548"]],[40,42,["H2076"]],[42,45,["H8002"]],[45,46,["H2077"]],[46,49,["H3068"]]]},{"k":3241,"v":[[0,3,["H3548"]],[3,5,["H2236","(H853)"]],[5,7,["H1818"]],[7,8,["H5921"]],[8,10,["H4196"]],[10,13,["H3068"]],[13,16,["H6607"]],[16,19,["H168"]],[19,22,["H4150"]],[22,24,["H6999"]],[24,26,["H2459"]],[26,29,["H5207"]],[29,30,["H7381"]],[30,33,["H3068"]]]},{"k":3242,"v":[[0,4,["H3808"]],[4,5,["H5750"]],[5,6,["H2076","(H853)"]],[6,8,["H2077"]],[8,10,["H8163"]],[10,11,["H310"]],[11,12,["H834"]],[12,13,["H1992"]],[13,17,["H2181"]],[17,18,["H2063"]],[18,20,["H1961"]],[20,22,["H2708"]],[22,24,["H5769"]],[24,29,["H1755"]]]},{"k":3243,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,8,["H376","H376"]],[8,13,["H4480","H1004"]],[13,15,["H3478"]],[15,17,["H4480"]],[17,19,["H1616"]],[19,20,["H834"]],[20,21,["H1481"]],[21,22,["H8432"]],[22,24,["H834"]],[24,25,["H5927"]],[25,28,["H5930"]],[28,29,["H176"]],[29,30,["H2077"]]]},{"k":3244,"v":[[0,2,["H935"]],[2,4,["H3808"]],[4,5,["H413"]],[5,7,["H6607"]],[7,10,["H168"]],[10,13,["H4150"]],[13,15,["H6213"]],[15,19,["H3068"]],[19,21,["H1931"]],[21,22,["H376"]],[22,26,["H3772"]],[26,30,["H4480","H5971"]]]},{"k":3245,"v":[[0,3,["H376","H376"]],[3,8,["H4480","H1004"]],[8,10,["H3478"]],[10,12,["H4480"]],[12,14,["H1616"]],[14,16,["H1481"]],[16,17,["H8432"]],[17,19,["H834"]],[19,20,["H398"]],[20,22,["H3605"]],[22,24,["H1818"]],[24,28,["H5414"]],[28,30,["H6440"]],[30,33,["H5315"]],[33,35,["H398","(H853)"]],[35,36,["H1818"]],[36,41,["H3772","(H853)"]],[41,43,["H4480","H7130"]],[43,45,["H5971"]]]},{"k":3246,"v":[[0,1,["H3588"]],[1,3,["H5315"]],[3,6,["H1320"]],[6,10,["H1818"]],[10,12,["H589"]],[12,14,["H5414"]],[14,18,["H5921"]],[18,20,["H4196"]],[20,24,["H3722"]],[24,25,["H5921"]],[25,27,["H5315"]],[27,28,["H3588"]],[28,29,["H1931"]],[29,32,["H1818"]],[32,36,["H3722"]],[36,39,["H5315"]]]},{"k":3247,"v":[[0,1,["H5921","H3651"]],[1,3,["H559"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,9,["H3808","H3605"]],[9,10,["H5315"]],[10,11,["H4480"]],[11,14,["H398"]],[14,15,["H1818"]],[15,16,["H3808"]],[16,19,["H1616"]],[19,21,["H1481"]],[21,22,["H8432"]],[22,24,["H398"]],[24,25,["H1818"]]]},{"k":3248,"v":[[0,3,["H376","H376"]],[3,8,["H4480","H1121"]],[8,10,["H3478"]],[10,12,["H4480"]],[12,14,["H1616"]],[14,16,["H1481"]],[16,17,["H8432"]],[17,19,["H834"]],[19,20,["H6679"]],[20,22,["H6718"]],[22,24,["H2416"]],[24,25,["H176"]],[25,26,["H5775"]],[26,27,["H834"]],[27,30,["H398"]],[30,35,["H8210","(H853)"]],[35,37,["H1818"]],[37,40,["H3680"]],[40,43,["H6083"]]]},{"k":3249,"v":[[0,1,["H3588"]],[1,5,["H5315"]],[5,7,["H3605"]],[7,8,["H1320"]],[8,10,["H1818"]],[10,16,["H5315"]],[16,20,["H559"]],[20,23,["H1121"]],[23,25,["H3478"]],[25,28,["H398"]],[28,30,["H1818"]],[30,33,["H3808","H3605"]],[33,35,["H1320"]],[35,36,["H3588"]],[36,38,["H5315"]],[38,40,["H3605"]],[40,41,["H1320"]],[41,44,["H1818"]],[44,46,["H3605"]],[46,47,["H398"]],[47,52,["H3772"]]]},{"k":3250,"v":[[0,2,["H3605"]],[2,3,["H5315"]],[3,4,["H834"]],[4,5,["H398"]],[5,8,["H5038"]],[8,15,["H2966"]],[15,25,["H249"]],[25,28,["H1616"]],[28,32,["H3526"]],[32,34,["H899"]],[34,36,["H7364"]],[36,39,["H4325"]],[39,42,["H2930"]],[42,43,["H5704"]],[43,45,["H6153"]],[45,50,["H2891"]]]},{"k":3251,"v":[[0,2,["H518"]],[2,4,["H3526"]],[4,6,["H3808"]],[6,7,["H3808"]],[7,8,["H7364"]],[8,10,["H1320"]],[10,14,["H5375"]],[14,16,["H5771"]]]},{"k":3252,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3253,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H589"]],[11,14,["H3068"]],[14,16,["H430"]]]},{"k":3254,"v":[[0,3,["H4639"]],[3,6,["H776"]],[6,8,["H4714"]],[8,9,["H834"]],[9,11,["H3427"]],[11,14,["H3808"]],[14,15,["H6213"]],[15,19,["H4639"]],[19,22,["H776"]],[22,24,["H3667"]],[24,25,["H834","H8033"]],[25,26,["H589"]],[26,27,["H935"]],[27,31,["H3808"]],[31,32,["H6213"]],[32,33,["H3808"]],[33,36,["H1980"]],[36,39,["H2708"]]]},{"k":3255,"v":[[0,3,["H6213","(H853)"]],[3,5,["H4941"]],[5,7,["H8104"]],[7,9,["H2708"]],[9,11,["H1980"]],[11,13,["H589"]],[13,16,["H3068"]],[16,18,["H430"]]]},{"k":3256,"v":[[0,4,["H8104","(H853)"]],[4,6,["H2708"]],[6,9,["H4941"]],[9,10,["H834"]],[10,13,["H120"]],[13,14,["H6213"]],[14,17,["H2425"]],[17,20,["H589"]],[20,23,["H3068"]]]},{"k":3257,"v":[[0,1,["H3808","H376","H376"]],[1,5,["H7126"]],[5,6,["H413"]],[6,7,["H3605"]],[7,10,["H7607"]],[10,12,["H1320"]],[12,16,["H1540"]],[16,18,["H6172"]],[18,19,["H589"]],[19,22,["H3068"]]]},{"k":3258,"v":[[0,2,["H6172"]],[2,5,["H1"]],[5,8,["H6172"]],[8,11,["H517"]],[11,14,["H3808"]],[14,15,["H1540"]],[15,16,["H1931"]],[16,19,["H517"]],[19,22,["H3808"]],[22,23,["H1540"]],[23,25,["H6172"]]]},{"k":3259,"v":[[0,2,["H6172"]],[2,5,["H1"]],[5,6,["H802"]],[6,9,["H3808"]],[9,10,["H1540"]],[10,11,["H1931"]],[11,14,["H1"]],[14,15,["H6172"]]]},{"k":3260,"v":[[0,2,["H6172"]],[2,5,["H269"]],[5,7,["H1323"]],[7,10,["H1"]],[10,11,["H176"]],[11,12,["H1323"]],[12,15,["H517"]],[15,19,["H4138"]],[19,21,["H1004"]],[21,22,["H176"]],[22,23,["H4138"]],[23,24,["H2351"]],[24,27,["H6172"]],[27,30,["H3808"]],[30,31,["H1540"]]]},{"k":3261,"v":[[0,2,["H6172"]],[2,5,["H1121"]],[5,6,["H1323"]],[6,7,["H176"]],[7,10,["H1323"]],[10,11,["H1323"]],[11,14,["H6172"]],[14,17,["H3808"]],[17,18,["H1540"]],[18,19,["H3588"]],[19,20,["H2007"]],[20,24,["H6172"]]]},{"k":3262,"v":[[0,2,["H6172"]],[2,5,["H1"]],[5,6,["H802"]],[6,7,["H1323"]],[7,8,["H4138"]],[8,11,["H1"]],[11,12,["H1931"]],[12,15,["H269"]],[15,18,["H3808"]],[18,19,["H1540"]],[19,21,["H6172"]]]},{"k":3263,"v":[[0,3,["H3808"]],[3,4,["H1540"]],[4,6,["H6172"]],[6,9,["H1"]],[9,10,["H269"]],[10,11,["H1931"]],[11,14,["H1"]],[14,16,["H7607"]]]},{"k":3264,"v":[[0,3,["H3808"]],[3,4,["H1540"]],[4,6,["H6172"]],[6,9,["H517"]],[9,10,["H269"]],[10,11,["H3588"]],[11,12,["H1931"]],[12,15,["H517"]],[15,17,["H7607"]]]},{"k":3265,"v":[[0,3,["H3808"]],[3,4,["H1540"]],[4,6,["H6172"]],[6,9,["H1"]],[9,10,["H251"]],[10,13,["H3808"]],[13,14,["H7126"]],[14,15,["H413"]],[15,17,["H802"]],[17,18,["H1931"]],[18,21,["H1733"]]]},{"k":3266,"v":[[0,3,["H3808"]],[3,4,["H1540"]],[4,6,["H6172"]],[6,11,["H3618"]],[11,12,["H1931"]],[12,15,["H1121"]],[15,16,["H802"]],[16,19,["H3808"]],[19,20,["H1540"]],[20,22,["H6172"]]]},{"k":3267,"v":[[0,3,["H3808"]],[3,4,["H1540"]],[4,6,["H6172"]],[6,9,["H251"]],[9,10,["H802"]],[10,11,["H1931"]],[11,14,["H251"]],[14,15,["H6172"]]]},{"k":3268,"v":[[0,3,["H3808"]],[3,4,["H1540"]],[4,6,["H6172"]],[6,9,["H802"]],[9,12,["H1323"]],[12,13,["H3808"]],[13,16,["H3947","(H853)"]],[16,18,["H1121"]],[18,19,["H1323"]],[19,22,["H1323"]],[22,23,["H1323"]],[23,25,["H1540"]],[25,27,["H6172"]],[27,29,["H2007"]],[29,33,["H7608"]],[33,34,["H1931"]],[34,36,["H2154"]]]},{"k":3269,"v":[[0,1,["H3808"]],[1,4,["H3947"]],[4,6,["H802"]],[6,7,["H413"]],[7,9,["H269"]],[9,11,["H6887"]],[11,14,["H1540"]],[14,16,["H6172"]],[16,17,["H5921"]],[17,22,["H2416"]],[22,23,[]]]},{"k":3270,"v":[[0,4,["H3808"]],[4,5,["H7126"]],[5,6,["H413"]],[6,8,["H802"]],[8,10,["H1540"]],[10,12,["H6172"]],[12,19,["H5079"]],[19,22,["H2932"]]]},{"k":3271,"v":[[0,4,["H3808"]],[4,6,["H5414","H7903","H2233"]],[6,7,["H413"]],[7,9,["H5997"]],[9,10,["H802"]],[10,12,["H2930"]],[12,15,[]]]},{"k":3272,"v":[[0,4,["H3808"]],[4,5,["H5414"]],[5,9,["H4480","H2233"]],[9,11,["H5674"]],[11,15,["H4432"]],[15,16,["H3808"]],[16,19,["H2490","(H853)"]],[19,21,["H8034"]],[21,24,["H430"]],[24,25,["H589"]],[25,28,["H3068"]]]},{"k":3273,"v":[[0,3,["H3808"]],[3,4,["H7901"]],[4,5,["H854"]],[5,6,["H2145"]],[6,8,["H4904"]],[8,9,["H802"]],[9,10,["H1931"]],[10,12,["H8441"]]]},{"k":3274,"v":[[0,1,["H3808"]],[1,4,["H5414","H7903"]],[4,6,["H3605"]],[6,7,["H929"]],[7,9,["H2930"]],[9,12,["H3808"]],[12,15,["H802"]],[15,16,["H5975"]],[16,17,["H6440"]],[17,19,["H929"]],[19,22,["H7250"]],[22,24,["H1931"]],[24,26,["H8397"]]]},{"k":3275,"v":[[0,4,["H2930","H408"]],[4,6,["H3605"]],[6,9,["H428"]],[9,10,["H3588"]],[10,12,["H3605"]],[12,13,["H428"]],[13,15,["H1471"]],[15,17,["H2930"]],[17,18,["H834"]],[18,19,["H589"]],[19,21,["H7971"]],[21,22,["H4480","H6440"]],[22,23,[]]]},{"k":3276,"v":[[0,3,["H776"]],[3,5,["H2930"]],[5,9,["H6485"]],[9,11,["H5771"]],[11,13,["H5921"]],[13,17,["H776"]],[17,20,["H6958","(H853)"]],[20,22,["H3427"]]]},{"k":3277,"v":[[0,1,["H859"]],[1,4,["H8104","(H853)"]],[4,6,["H2708"]],[6,9,["H4941"]],[9,12,["H3808"]],[12,13,["H6213"]],[13,16,["H4480","H3605","H428"]],[16,17,["H8441"]],[17,23,["H249"]],[23,26,["H1616"]],[26,28,["H1481"]],[28,29,["H8432"]],[29,30,[]]]},{"k":3278,"v":[[0,1,["H3588","(H853)"]],[1,2,["H3605"]],[2,3,["H411"]],[3,4,["H8441"]],[4,7,["H376"]],[7,10,["H776"]],[10,11,["H6213"]],[11,12,["H834"]],[12,14,["H6440"]],[14,18,["H776"]],[18,20,["H2930"]]]},{"k":3279,"v":[[0,3,["H776"]],[3,7,["H6958","H3808","(H853)"]],[7,11,["H2930"]],[11,13,["H834"]],[13,16,["H6958","(H853)"]],[16,18,["H1471"]],[18,19,["H834"]],[19,21,["H6440"]],[21,22,[]]]},{"k":3280,"v":[[0,1,["H3588"]],[1,2,["H3605","H834"]],[2,4,["H6213"]],[4,5,["H4480","H3605"]],[5,7,["H428"]],[7,8,["H8441"]],[8,11,["H5315"]],[11,13,["H6213"]],[13,18,["H3772"]],[18,20,["H4480","H7130"]],[20,22,["H5971"]]]},{"k":3281,"v":[[0,4,["H8104","(H853)"]],[4,6,["H4931"]],[6,10,["H6213","H1115"]],[10,16,["H4480","H2708","H8441"]],[16,17,["H834"]],[17,19,["H6213"]],[19,20,["H6440"]],[20,27,["H2930","H3808"]],[27,29,["H589"]],[29,32,["H3068"]],[32,34,["H430"]]]},{"k":3282,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3283,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,3,["H3605"]],[3,5,["H5712"]],[5,8,["H1121"]],[8,10,["H3478"]],[10,12,["H559"]],[12,13,["H413"]],[13,17,["H1961"]],[17,18,["H6918"]],[18,19,["H3588"]],[19,20,["H589"]],[20,22,["H3068"]],[22,24,["H430"]],[24,26,["H6918"]]]},{"k":3284,"v":[[0,3,["H3372"]],[3,5,["H376"]],[5,7,["H517"]],[7,10,["H1"]],[10,12,["H8104"]],[12,14,["H7676"]],[14,15,["H589"]],[15,18,["H3068"]],[18,20,["H430"]]]},{"k":3285,"v":[[0,1,["H6437"]],[1,3,["H408"]],[3,4,["H413"]],[4,5,["H457"]],[5,6,["H3808"]],[6,7,["H6213"]],[7,10,["H4541"]],[10,11,["H430"]],[11,12,["H589"]],[12,15,["H3068"]],[15,17,["H430"]]]},{"k":3286,"v":[[0,2,["H3588"]],[2,4,["H2076"]],[4,6,["H2077"]],[6,9,["H8002"]],[9,12,["H3068"]],[12,15,["H2076"]],[15,20,["H7522"]]]},{"k":3287,"v":[[0,4,["H398"]],[4,7,["H3117"]],[7,9,["H2077"]],[9,14,["H4480","H4283"]],[14,18,["H3498"]],[18,19,["H5704"]],[19,21,["H7992"]],[21,22,["H3117"]],[22,26,["H8313"]],[26,29,["H784"]]]},{"k":3288,"v":[[0,2,["H518"]],[2,7,["H398","H398"]],[7,10,["H7992"]],[10,11,["H3117"]],[11,12,["H1931"]],[12,14,["H6292"]],[14,17,["H3808"]],[17,19,["H7521"]]]},{"k":3289,"v":[[0,5,["H398"]],[5,8,["H5375"]],[8,10,["H5771"]],[10,11,["H3588"]],[11,14,["H2490","(H853)"]],[14,17,["H6944"]],[17,20,["H3068"]],[20,22,["H1931"]],[22,23,["H5315"]],[23,27,["H3772"]],[27,31,["H4480","H5971"]]]},{"k":3290,"v":[[0,4,["H7114","(H853)"]],[4,6,["H7105"]],[6,9,["H776"]],[9,12,["H3808"]],[12,14,["H3615","H7114"]],[14,16,["H6285"]],[16,19,["H7704"]],[19,20,["H3808"]],[20,23,["H3950"]],[23,25,["H3951"]],[25,28,["H7105"]]]},{"k":3291,"v":[[0,4,["H3808"]],[4,5,["H5953"]],[5,7,["H3754"]],[7,8,["H3808"]],[8,11,["H3950"]],[11,13,["H6528"]],[13,16,["H3754"]],[16,19,["H5800"]],[19,23,["H6041"]],[23,25,["H1616"]],[25,26,["H589"]],[26,29,["H3068"]],[29,31,["H430"]]]},{"k":3292,"v":[[0,3,["H3808"]],[3,4,["H1589"]],[4,5,["H3808"]],[5,7,["H3584"]],[7,8,["H3808"]],[8,9,["H8266"]],[9,10,["H376"]],[10,12,["H5997"]]]},{"k":3293,"v":[[0,4,["H3808"]],[4,5,["H7650"]],[5,8,["H8034"]],[8,9,["H8267"]],[9,13,["H2490","(H853)"]],[13,15,["H8034"]],[15,18,["H430"]],[18,19,["H589"]],[19,22,["H3068"]]]},{"k":3294,"v":[[0,3,["H3808"]],[3,4,["H6231","(H853)"]],[4,6,["H7453"]],[6,7,["H3808"]],[7,8,["H1497"]],[8,11,["H6468"]],[11,16,["H7916"]],[16,18,["H3808"]],[18,23,["H3885","H854"]],[23,24,["H5704"]],[24,26,["H1242"]]]},{"k":3295,"v":[[0,3,["H3808"]],[3,4,["H7043"]],[4,6,["H2795"]],[6,7,["H3808"]],[7,8,["H5414"]],[8,10,["H4383"]],[10,11,["H6440"]],[11,13,["H5787"]],[13,18,["H3372","H4480","H430"]],[18,19,["H589"]],[19,22,["H3068"]]]},{"k":3296,"v":[[0,3,["H6213"]],[3,4,["H3808"]],[4,5,["H5766"]],[5,7,["H4941"]],[7,10,["H3808"]],[10,11,["H5375"]],[11,13,["H6440"]],[13,16,["H1800"]],[16,17,["H3808"]],[17,18,["H1921"]],[18,20,["H6440"]],[20,23,["H1419"]],[23,26,["H6664"]],[26,29,["H8199"]],[29,31,["H5997"]]]},{"k":3297,"v":[[0,3,["H3808"]],[3,7,["H1980"]],[7,10,["H7400"]],[10,13,["H5971"]],[13,14,["H3808"]],[14,17,["H5975"]],[17,18,["H5921"]],[18,20,["H1818"]],[20,23,["H7453"]],[23,24,["H589"]],[24,27,["H3068"]]]},{"k":3298,"v":[[0,3,["H3808"]],[3,4,["H8130","(H853)"]],[4,6,["H251"]],[6,9,["H3824"]],[9,15,["H3198","H3198","(H853)"]],[15,17,["H5997"]],[17,19,["H3808"]],[19,20,["H5375"]],[20,21,["H2399"]],[21,22,["H5921"]],[22,23,[]]]},{"k":3299,"v":[[0,3,["H3808"]],[3,4,["H5358"]],[4,5,["H3808"]],[5,8,["H5201"]],[8,9,["(H853)"]],[9,11,["H1121"]],[11,14,["H5971"]],[14,18,["H157"]],[18,20,["H7453"]],[20,22,["H3644"]],[22,23,["H589"]],[23,26,["H3068"]]]},{"k":3300,"v":[[0,3,["H8104","(H853)"]],[3,5,["H2708"]],[5,8,["H3808"]],[8,11,["H929"]],[11,12,["H7250"]],[12,16,["H3610"]],[16,19,["H3808"]],[19,20,["H2232"]],[20,22,["H7704"]],[22,25,["H3610"]],[25,26,["H3808"]],[26,29,["H899"]],[29,30,["H3610"]],[30,34,["H8162"]],[34,35,["H5927"]],[35,36,["H5921"]],[36,37,[]]]},{"k":3301,"v":[[0,2,["H376","H3588"]],[2,3,["H7901"]],[3,4,["H7902","H2233"]],[4,5,["H854"]],[5,7,["H802"]],[7,8,["H1931"]],[8,11,["H8198"]],[11,12,["H2778"]],[12,15,["H376"]],[15,17,["H3808"]],[17,20,["H6299","H6299"]],[20,21,["H176","H3808"]],[21,22,["H2668"]],[22,23,["H5414"]],[23,27,["H1961"]],[27,28,["H1244"]],[28,31,["H3808"]],[31,35,["H4191"]],[35,36,["H3588"]],[36,40,["H2666","H3808"]]]},{"k":3302,"v":[[0,4,["H935","(H853)"]],[4,7,["H817"]],[7,10,["H3068"]],[10,11,["H413"]],[11,13,["H6607"]],[13,16,["H168"]],[16,19,["H4150"]],[19,22,["H352"]],[22,26,["H817"]]]},{"k":3303,"v":[[0,3,["H3548"]],[3,7,["H3722"]],[7,8,["H5921"]],[8,12,["H352"]],[12,16,["H817"]],[16,17,["H6440"]],[17,19,["H3068"]],[19,20,["H5921"]],[20,22,["H2403"]],[22,23,["H834"]],[23,26,["H2398"]],[26,29,["H4480","H2403"]],[29,30,["H834"]],[30,33,["H2398"]],[33,36,["H5545"]],[36,37,[]]]},{"k":3304,"v":[[0,2,["H3588"]],[2,5,["H935"]],[5,6,["H413"]],[6,8,["H776"]],[8,12,["H5193"]],[12,14,["H3605"]],[14,16,["H6086"]],[16,18,["H3978"]],[18,22,["H6188","(H853)"]],[22,24,["H6529"]],[24,27,["H6189"]],[27,28,["H7969"]],[28,29,["H8141"]],[29,32,["H1961"]],[32,34,["H6189"]],[34,39,["H3808"]],[39,41,["H398"]],[41,42,[]]]},{"k":3305,"v":[[0,4,["H7243"]],[4,5,["H8141"]],[5,6,["H3605"]],[6,8,["H6529"]],[8,11,["H1961"]],[11,12,["H6944"]],[12,14,["H1974"]],[14,16,["H3068"]],[16,17,[]]]},{"k":3306,"v":[[0,4,["H2549"]],[4,5,["H8141"]],[5,8,["H398","(H853)"]],[8,11,["H6529"]],[11,16,["H3254"]],[16,20,["H8393"]],[20,22,["H589"]],[22,25,["H3068"]],[25,27,["H430"]]]},{"k":3307,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,7,["H5921"]],[7,9,["H1818"]],[9,10,["H3808"]],[10,14,["H5172"]],[14,15,["H3808"]],[15,17,["H6049"]]]},{"k":3308,"v":[[0,3,["H3808"]],[3,4,["H5362"]],[4,6,["H6285"]],[6,9,["H7218"]],[9,10,["H3808"]],[10,13,["H7843","(H853)"]],[13,15,["H6285"]],[15,18,["H2206"]]]},{"k":3309,"v":[[0,3,["H3808"]],[3,4,["H5414"]],[4,6,["H8296"]],[6,9,["H1320"]],[9,12,["H5315"]],[12,13,["H3808"]],[13,14,["H5414"]],[14,16,["H3793","H7085"]],[16,19,["H589"]],[19,22,["H3068"]]]},{"k":3310,"v":[[0,2,["H408"]],[2,3,["H2490","(H853)"]],[3,5,["H1323"]],[5,12,["H2181"]],[12,13,["H3808"]],[13,15,["H776"]],[15,18,["H2181"]],[18,21,["H776"]],[21,23,["H4390"]],[23,25,["H2154"]]]},{"k":3311,"v":[[0,3,["H8104","(H853)"]],[3,5,["H7676"]],[5,7,["H3372"]],[7,9,["H4720"]],[9,10,["H589"]],[10,13,["H3068"]]]},{"k":3312,"v":[[0,1,["H6437"]],[1,2,["H408"]],[2,7,["H178"]],[7,8,["H408"]],[8,9,["H1245"]],[9,10,["H413"]],[10,11,["H3049"]],[11,14,["H2930"]],[14,17,["H589"]],[17,20,["H3068"]],[20,22,["H430"]]]},{"k":3313,"v":[[0,4,["H6965"]],[4,5,["H4480","H6440"]],[5,8,["H7872"]],[8,10,["H1921"]],[10,12,["H6440"]],[12,16,["H2205"]],[16,20,["H3372","H4480","H430"]],[20,21,["H589"]],[21,24,["H3068"]]]},{"k":3314,"v":[[0,2,["H3588"]],[2,4,["H1616"]],[4,5,["H1481"]],[5,6,["H854"]],[6,10,["H776"]],[10,13,["H3808"]],[13,14,["H3238"]],[14,15,[]]]},{"k":3315,"v":[[0,3,["H1616"]],[3,5,["H1481"]],[5,6,["H854"]],[6,9,["H1961"]],[9,15,["H249","H4480"]],[15,20,["H157"]],[20,23,["H3644"]],[23,24,["H3588"]],[24,26,["H1961"]],[26,27,["H1616"]],[27,30,["H776"]],[30,32,["H4714"]],[32,33,["H589"]],[33,36,["H3068"]],[36,38,["H430"]]]},{"k":3316,"v":[[0,3,["H6213"]],[3,4,["H3808"]],[4,5,["H5766"]],[5,7,["H4941"]],[7,9,["H4060"]],[9,11,["H4948"]],[11,14,["H4884"]]]},{"k":3317,"v":[[0,1,["H6664"]],[1,2,["H3976"]],[2,3,["H6664"]],[3,4,["H68"]],[4,6,["H6664"]],[6,7,["H374"]],[7,10,["H6664"]],[10,11,["H1969"]],[11,14,["H1961"]],[14,15,["H589"]],[15,18,["H3068"]],[18,20,["H430"]],[20,21,["H834"]],[21,24,["H3318","(H853)"]],[24,27,["H4480","H776"]],[27,29,["H4714"]]]},{"k":3318,"v":[[0,4,["H8104","(H853)"]],[4,5,["H3605"]],[5,7,["H2708"]],[7,9,["H3605"]],[9,11,["H4941"]],[11,13,["H6213"]],[13,15,["H589"]],[15,18,["H3068"]]]},{"k":3319,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3320,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,10,["H376","H376"]],[10,15,["H4480","H1121"]],[15,17,["H3478"]],[17,19,["H4480"]],[19,21,["H1616"]],[21,23,["H1481"]],[23,25,["H3478"]],[25,26,["H834"]],[26,27,["H5414"]],[27,31,["H4480","H2233"]],[31,33,["H4432"]],[33,40,["H4191","H4191"]],[40,42,["H5971"]],[42,45,["H776"]],[45,47,["H7275"]],[47,50,["H68"]]]},{"k":3321,"v":[[0,2,["H589"]],[2,4,["H5414","(H853)"]],[4,6,["H6440"]],[6,8,["H1931"]],[8,9,["H376"]],[9,14,["H3772","(H853)"]],[14,16,["H4480","H7130"]],[16,18,["H5971"]],[18,19,["H3588"]],[19,22,["H5414"]],[22,25,["H4480","H2233"]],[25,27,["H4432"]],[27,28,["H4616"]],[28,29,["H2930","(H853)"]],[29,31,["H4720"]],[31,34,["H2490","(H853)"]],[34,36,["H6944"]],[36,37,["H8034"]]]},{"k":3322,"v":[[0,2,["H518"]],[2,4,["H5971"]],[4,7,["H776"]],[7,11,["H5956","H5956","(H853)"]],[11,13,["H5869"]],[13,16,["H4480","H376","H1931"]],[16,19,["H5414"]],[19,22,["H4480","H2233"]],[22,24,["H4432"]],[24,26,["H4191"]],[26,28,["H1115"]]]},{"k":3323,"v":[[0,2,["H589"]],[2,4,["H7760","(H853)"]],[4,6,["H6440"]],[6,8,["H1931"]],[8,9,["H376"]],[9,13,["H4940"]],[13,18,["H3772","(H853)"]],[18,20,["H3605"]],[20,24,["H2181"]],[24,25,["H310"]],[25,29,["H2181"]],[29,30,["H310"]],[30,31,["H4432"]],[31,33,["H4480","H7130"]],[33,35,["H5971"]]]},{"k":3324,"v":[[0,3,["H5315"]],[3,4,["H834"]],[4,5,["H6437"]],[5,6,["H413"]],[6,11,["H178"]],[11,13,["H413"]],[13,14,["H3049"]],[14,18,["H2181"]],[18,19,["H310"]],[19,24,["H5414","(H853)"]],[24,26,["H6440"]],[26,28,["H1931"]],[28,29,["H5315"]],[29,34,["H3772","(H853)"]],[34,36,["H4480","H7130"]],[36,38,["H5971"]]]},{"k":3325,"v":[[0,2,["H6942"]],[2,5,["H1961"]],[5,7,["H6918"]],[7,8,["H3588"]],[8,9,["H589"]],[9,12,["H3068"]],[12,14,["H430"]]]},{"k":3326,"v":[[0,4,["H8104","(H853)"]],[4,6,["H2708"]],[6,8,["H6213"]],[8,10,["H589"]],[10,13,["H3068"]],[13,15,["H6942"]],[15,16,[]]]},{"k":3327,"v":[[0,1,["H3588"]],[1,3,["H376","H376"]],[3,4,["H834"]],[4,5,["H7043","(H853)"]],[5,7,["H1"]],[7,10,["H517"]],[10,16,["H4191","H4191"]],[16,19,["H7043"]],[19,21,["H1"]],[21,24,["H517"]],[24,26,["H1818"]],[26,30,[]]]},{"k":3328,"v":[[0,3,["H376"]],[3,4,["H834"]],[4,6,["H5003"]],[6,7,["H854"]],[7,9,["H376"]],[9,10,["H802"]],[10,13,["H834"]],[13,15,["H5003"]],[15,16,["H854"]],[16,18,["H7453"]],[18,19,["H802"]],[19,21,["H5003"]],[21,24,["H5003"]],[24,30,["H4191","H4191"]]]},{"k":3329,"v":[[0,3,["H376"]],[3,4,["H834"]],[4,5,["H7901"]],[5,6,["H854"]],[6,8,["H1"]],[8,9,["H802"]],[9,11,["H1540"]],[11,13,["H1"]],[13,14,["H6172"]],[14,15,["H8147"]],[15,23,["H4191","H4191"]],[23,25,["H1818"]],[25,29,[]]]},{"k":3330,"v":[[0,2,["H834"]],[2,4,["H376"]],[4,5,["H7901"]],[5,6,["H854"]],[6,10,["H3618"]],[10,11,["H8147"]],[11,19,["H4191","H4191"]],[19,22,["H6213"]],[22,23,["H8397"]],[23,25,["H1818"]],[25,29,[]]]},{"k":3331,"v":[[0,1,["H834"]],[1,3,["H376"]],[3,5,["H7901"]],[5,6,["H854"]],[6,7,["H2145"]],[7,10,["H4904"]],[10,13,["H802"]],[13,14,["H8147"]],[14,18,["H6213"]],[18,20,["H8441"]],[20,27,["H4191","H4191"]],[27,29,["H1818"]],[29,33,[]]]},{"k":3332,"v":[[0,2,["H834"]],[2,4,["H376"]],[4,5,["H3947","(H853)"]],[5,7,["H802"]],[7,10,["H517"]],[10,11,["H1931"]],[11,13,["H2154"]],[13,17,["H8313"]],[17,19,["H784"]],[19,26,["H1961"]],[26,27,["H3808"]],[27,28,["H2154"]],[28,29,["H8432"]],[29,30,[]]]},{"k":3333,"v":[[0,2,["H834"]],[2,4,["H376"]],[4,5,["H5414","H7903"]],[5,8,["H929"]],[8,15,["H4191","H4191"]],[15,19,["H2026"]],[19,21,["H929"]]]},{"k":3334,"v":[[0,2,["H834"]],[2,4,["H802"]],[4,5,["H7126"]],[5,6,["H413"]],[6,7,["H3605"]],[7,8,["H929"]],[8,11,["H7250"]],[11,15,["H2026","(H853)"]],[15,17,["H802"]],[17,20,["H929"]],[20,27,["H4191","H4191"]],[27,29,["H1818"]],[29,33,[]]]},{"k":3335,"v":[[0,2,["H834"]],[2,4,["H376"]],[4,6,["H3947","(H853)"]],[6,8,["H269"]],[8,10,["H1"]],[10,11,["H1323"]],[11,12,["H176"]],[12,14,["H517"]],[14,15,["H1323"]],[15,17,["H7200","(H853)"]],[17,19,["H6172"]],[19,21,["H1931"]],[21,22,["H7200","(H853)"]],[22,24,["H6172"]],[24,25,["H1931"]],[25,29,["H2617"]],[29,35,["H3772"]],[35,38,["H5869"]],[38,41,["H1121","H5971"]],[41,44,["H1540"]],[44,46,["H269"]],[46,47,["H6172"]],[47,50,["H5375"]],[50,52,["H5771"]]]},{"k":3336,"v":[[0,2,["H834"]],[2,4,["H376"]],[4,6,["H7901"]],[6,7,["H854"]],[7,9,["H802"]],[9,12,["H1739"]],[12,15,["H1540","(H853)"]],[15,17,["H6172"]],[17,20,["H6168","(H853)"]],[20,22,["H4726"]],[22,24,["H1931"]],[24,26,["H1540","(H853)"]],[26,28,["H4726"]],[28,31,["H1818"]],[31,33,["H8147"]],[33,39,["H3772"]],[39,41,["H4480","H7130"]],[41,43,["H5971"]]]},{"k":3337,"v":[[0,4,["H3808"]],[4,5,["H1540"]],[5,7,["H6172"]],[7,10,["H517"]],[10,11,["H269"]],[11,15,["H1"]],[15,16,["H269"]],[16,17,["H3588"]],[17,19,["H6168","(H853)"]],[19,22,["H7607"]],[22,25,["H5375"]],[25,27,["H5771"]]]},{"k":3338,"v":[[0,2,["H834"]],[2,4,["H376"]],[4,6,["H7901"]],[6,7,["H854"]],[7,10,["H1733"]],[10,13,["H1540"]],[13,15,["H1730"]],[15,16,["H6172"]],[16,19,["H5375"]],[19,21,["H2399"]],[21,24,["H4191"]],[24,25,["H6185"]]]},{"k":3339,"v":[[0,2,["H834"]],[2,4,["H376"]],[4,6,["H3947","(H853)"]],[6,8,["H251"]],[8,9,["H802"]],[9,10,["H1931"]],[10,14,["H5079"]],[14,17,["H1540"]],[17,19,["H251"]],[19,20,["H6172"]],[20,23,["H1961"]],[23,24,["H6185"]]]},{"k":3340,"v":[[0,4,["H8104","(H853)"]],[4,5,["H3605"]],[5,7,["H2708"]],[7,9,["H3605"]],[9,11,["H4941"]],[11,13,["H6213"]],[13,17,["H776"]],[17,18,["H834","H8033"]],[18,19,["H589"]],[19,20,["H935"]],[20,23,["H3427"]],[23,28,["H6958","(H853)","H3808"]]]},{"k":3341,"v":[[0,4,["H3808"]],[4,5,["H1980"]],[5,8,["H2708"]],[8,11,["H1471"]],[11,12,["H834"]],[12,13,["H589"]],[13,15,["H7971"]],[15,16,["H4480","H6440"]],[16,18,["H3588"]],[18,20,["H6213","(H853)"]],[20,21,["H3605"]],[21,23,["H428"]],[23,27,["H6973"]],[27,28,[]]]},{"k":3342,"v":[[0,4,["H559"]],[4,7,["H859"]],[7,9,["H3423","(H853)"]],[9,11,["H127"]],[11,13,["H589"]],[13,15,["H5414"]],[15,20,["H3423"]],[20,23,["H776"]],[23,25,["H2100"]],[25,27,["H2461"]],[27,29,["H1706"]],[29,30,["H589"]],[30,33,["H3068"]],[33,35,["H430"]],[35,36,["H834"]],[36,38,["H914"]],[38,40,["H4480"]],[40,42,["H5971"]]]},{"k":3343,"v":[[0,5,["H914"]],[5,6,["H996"]],[6,7,["H2889"]],[7,8,["H929"]],[8,10,["H2931"]],[10,12,["H996"]],[12,13,["H2931"]],[13,14,["H5775"]],[14,16,["H2889"]],[16,20,["H3808"]],[20,24,["H8262","(H853)","H5315"]],[24,26,["H929"]],[26,29,["H5775"]],[29,33,["H3605"]],[33,38,["H7430","H834"]],[38,41,["H127"]],[41,42,["H834"]],[42,45,["H914"]],[45,49,["H2930"]]]},{"k":3344,"v":[[0,4,["H1961"]],[4,5,["H6918"]],[5,8,["H3588"]],[8,9,["H589"]],[9,11,["H3068"]],[11,13,["H6918"]],[13,16,["H914"]],[16,18,["H4480"]],[18,20,["H5971"]],[20,24,["H1961"]],[24,25,[]]]},{"k":3345,"v":[[0,2,["H376"]],[2,4,["H176"]],[4,5,["H802"]],[5,6,["H3588"]],[6,7,["H1961"]],[7,10,["H178"]],[10,11,["H176"]],[11,15,["H3049"]],[15,21,["H4191","H4191"]],[21,24,["H7275"]],[24,27,["H68"]],[27,29,["H1818"]],[29,33,[]]]},{"k":3346,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]],[7,8,["H413"]],[8,10,["H3548"]],[10,12,["H1121"]],[12,14,["H175"]],[14,16,["H559"]],[16,17,["H413"]],[17,21,["H3808"]],[21,23,["H2930"]],[23,26,["H5315"]],[26,29,["H5971"]]]},{"k":3347,"v":[[0,1,["H3588","H518"]],[1,4,["H7607"]],[4,7,["H7138"]],[7,8,["H413"]],[8,14,["H517"]],[14,18,["H1"]],[18,22,["H1121"]],[22,26,["H1323"]],[26,30,["H251"]]]},{"k":3348,"v":[[0,4,["H269"]],[4,6,["H1330"]],[6,9,["H7138"]],[9,10,["H413"]],[10,12,["H834"]],[12,14,["H1961"]],[14,15,["H3808"]],[15,16,["H376"]],[16,22,["H2930"]]]},{"k":3349,"v":[[0,4,["H3808"]],[4,6,["H2930"]],[6,10,["H1167"]],[10,13,["H5971"]],[13,16,["H2490"]]]},{"k":3350,"v":[[0,3,["H3808"]],[3,4,["H7139"]],[4,5,["H7144"]],[5,8,["H7218"]],[8,9,["H3808"]],[9,13,["H1548"]],[13,15,["H6285"]],[15,18,["H2206"]],[18,19,["H3808"]],[19,20,["H8295"]],[20,22,["H8296"]],[22,25,["H1320"]]]},{"k":3351,"v":[[0,3,["H1961"]],[3,4,["H6918"]],[4,7,["H430"]],[7,9,["H3808"]],[9,10,["H2490"]],[10,12,["H8034"]],[12,15,["H430"]],[15,16,["H3588","(H853)"]],[16,24,["H801","H3068"]],[24,27,["H3899"]],[27,30,["H430"]],[30,31,["H1992"]],[31,33,["H7126"]],[33,37,["H1961"]],[37,38,["H6944"]]]},{"k":3352,"v":[[0,3,["H3808"]],[3,4,["H3947"]],[4,6,["H802"]],[6,10,["H2181"]],[10,12,["H2491"]],[12,13,["H3808"]],[13,16,["H3947"]],[16,18,["H802"]],[18,20,["H1644"]],[20,23,["H4480","H376"]],[23,24,["H3588"]],[24,25,["H1931"]],[25,27,["H6918"]],[27,30,["H430"]]]},{"k":3353,"v":[[0,3,["H6942"]],[3,6,["H3588"]],[6,7,["H1931"]],[7,8,["H7126","(H853)"]],[8,10,["H3899"]],[10,13,["H430"]],[13,16,["H1961"]],[16,17,["H6918"]],[17,20,["H3588"]],[20,21,["H589"]],[21,23,["H3068"]],[23,25,["H6942"]],[25,28,["H6918"]]]},{"k":3354,"v":[[0,3,["H1323"]],[3,5,["H376"]],[5,6,["H3548"]],[6,7,["H3588"]],[7,10,["H2490"]],[10,14,["H2181"]],[14,15,["H1931"]],[15,16,["H2490","(H853)"]],[16,18,["H1"]],[18,22,["H8313"]],[22,24,["H784"]]]},{"k":3355,"v":[[0,6,["H1419"]],[6,7,["H3548"]],[7,10,["H4480","H251"]],[10,11,["H5921"]],[11,12,["H834"]],[12,13,["H7218"]],[13,15,["H4888"]],[15,16,["H8081"]],[16,18,["H3332"]],[18,22,["H4390","(H853)","H3027"]],[22,25,["H3847","(H853)"]],[25,27,["H899"]],[27,29,["H3808"]],[29,30,["H6544","(H853)"]],[30,32,["H7218"]],[32,33,["H3808"]],[33,34,["H6533"]],[34,36,["H899"]]]},{"k":3356,"v":[[0,1,["H3808"]],[1,5,["H935"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,8,["H4191"]],[8,9,["H5315"]],[9,10,["H3808"]],[10,12,["H2930"]],[12,15,["H1"]],[15,19,["H517"]]]},{"k":3357,"v":[[0,1,["H3808"]],[1,5,["H3318"]],[5,6,["H4480"]],[6,8,["H4720"]],[8,9,["H3808"]],[9,10,["H2490","(H853)"]],[10,12,["H4720"]],[12,15,["H430"]],[15,16,["H3588"]],[16,18,["H5145"]],[18,21,["H4888"]],[21,22,["H8081"]],[22,25,["H430"]],[25,27,["H5921"]],[27,29,["H589"]],[29,32,["H3068"]]]},{"k":3358,"v":[[0,2,["H1931"]],[2,4,["H3947"]],[4,6,["H802"]],[6,9,["H1331"]]]},{"k":3359,"v":[[0,2,["H490"]],[2,6,["H1644"]],[6,8,["H2491"]],[8,11,["H2181","(H853)"]],[11,12,["H428"]],[12,15,["H3808"]],[15,16,["H3947"]],[16,17,["H3588","H518"]],[17,20,["H3947"]],[20,22,["H1330"]],[22,26,["H4480","H5971"]],[26,28,["H802"]]]},{"k":3360,"v":[[0,1,["H3808"]],[1,4,["H2490"]],[4,6,["H2233"]],[6,9,["H5971"]],[9,10,["H3588"]],[10,11,["H589"]],[11,13,["H3068"]],[13,15,["H6942"]],[15,16,[]]]},{"k":3361,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3362,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,3,["H175"]],[3,4,["H559"]],[4,5,["H376","H834"]],[5,10,["H4480","H2233"]],[10,13,["H1755"]],[13,15,["H1961"]],[15,17,["H3971"]],[17,20,["H3808"]],[20,21,["H7126"]],[21,23,["H7126"]],[23,25,["H3899"]],[25,28,["H430"]]]},{"k":3363,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,3,["H376"]],[3,6,["H834"]],[6,9,["H3971"]],[9,12,["H3808"]],[12,13,["H7126"]],[13,15,["H5787"]],[15,16,["H376"]],[16,17,["H176"]],[17,19,["H6455"]],[19,20,["H176"]],[20,26,["H2763"]],[26,27,["H176"]],[27,30,["H8311"]]]},{"k":3364,"v":[[0,1,["H176"]],[1,3,["H376"]],[3,4,["H834"]],[4,5,["H1961"]],[5,6,["H7667","H7272"]],[6,7,["H176"]],[7,8,["H7667","H3027"]]]},{"k":3365,"v":[[0,1,["H176"]],[1,2,["H1384"]],[2,3,["H176"]],[3,5,["H1851"]],[5,6,["H176"]],[6,10,["H8400"]],[10,13,["H5869"]],[13,14,["H176"]],[14,16,["H1618"]],[16,17,["H176"]],[17,18,["H3217"]],[18,19,["H176"]],[19,22,["H810"]],[22,23,["H4790"]]]},{"k":3366,"v":[[0,1,["H3808","H3605"]],[1,2,["H376"]],[2,3,["H834"]],[3,6,["H3971"]],[6,9,["H4480","H2233"]],[9,11,["H175"]],[11,13,["H3548"]],[13,16,["H5066"]],[16,18,["H7126","(H853)"]],[18,26,["H801","H3068"]],[26,30,["H3971"]],[30,33,["H3808"]],[33,35,["H5066"]],[35,37,["H7126","(H853)"]],[37,39,["H3899"]],[39,42,["H430"]]]},{"k":3367,"v":[[0,3,["H398"]],[3,5,["H3899"]],[5,8,["H430"]],[8,13,["H4480","H6944","H6944"]],[13,15,["H4480"]],[15,17,["H6944"]]]},{"k":3368,"v":[[0,1,["H389"]],[1,4,["H3808"]],[4,6,["H935"]],[6,7,["H413"]],[7,9,["H6532"]],[9,10,["H3808"]],[10,12,["H5066"]],[12,13,["H413"]],[13,15,["H4196"]],[15,16,["H3588"]],[16,20,["H3971"]],[20,23,["H2490"]],[23,24,["H3808","(H853)"]],[24,26,["H4720"]],[26,27,["H3588"]],[27,28,["H589"]],[28,30,["H3068"]],[30,32,["H6942"]],[32,33,[]]]},{"k":3369,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,5,["H413"]],[5,6,["H175"]],[6,8,["H413"]],[8,10,["H1121"]],[10,12,["H413"]],[12,13,["H3605"]],[13,15,["H1121"]],[15,17,["H3478"]]]},{"k":3370,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3371,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,3,["H175"]],[3,5,["H413"]],[5,7,["H1121"]],[7,11,["H5144"]],[11,15,["H4480","H6944"]],[15,18,["H1121"]],[18,20,["H3478"]],[20,24,["H2490"]],[24,25,["H3808","(H853)"]],[25,27,["H6944"]],[27,28,["H8034"]],[28,32,["H834"]],[32,33,["H1992"]],[33,34,["H6942"]],[34,37,["H589"]],[37,40,["H3068"]]]},{"k":3372,"v":[[0,1,["H559"]],[1,2,["H413"]],[2,4,["H3605","H376"]],[4,8,["H4480","H3605"]],[8,10,["H2233"]],[10,13,["H1755"]],[13,14,["H834"]],[14,15,["H7126"]],[15,16,["H413"]],[16,19,["H6944"]],[19,20,["H834"]],[20,22,["H1121"]],[22,24,["H3478"]],[24,25,["H6942"]],[25,28,["H3068"]],[28,31,["H2932"]],[31,32,["H5921"]],[32,34,["H1931"]],[34,35,["H5315"]],[35,39,["H3772"]],[39,42,["H4480","H6440"]],[42,43,["H589"]],[43,46,["H3068"]]]},{"k":3373,"v":[[0,3,["H376","H376"]],[3,6,["H4480","H2233"]],[6,8,["H175"]],[8,11,["H6879"]],[11,12,["H176"]],[12,16,["H2100"]],[16,19,["H3808"]],[19,20,["H398"]],[20,24,["H6944"]],[24,25,["H5704","H834"]],[25,28,["H2891"]],[28,31,["H5060"]],[31,33,["H3605"]],[33,36,["H2931"]],[36,39,["H5315"]],[39,40,["H176"]],[40,42,["H376"]],[42,43,["H834"]],[43,44,["H7902","H2233"]],[44,45,["H3318"]],[45,46,["H4480"]],[46,47,[]]]},{"k":3374,"v":[[0,1,["H176"]],[1,2,["H376","H834"]],[2,3,["H5060"]],[3,4,["H3605"]],[4,6,["H8318"]],[6,7,["H834"]],[7,12,["H2930"]],[12,13,["H176"]],[13,15,["H120"]],[15,17,["H834"]],[17,21,["H2930"]],[21,22,["H3605"]],[22,23,["H2932"]],[23,25,[]]]},{"k":3375,"v":[[0,2,["H5315"]],[2,3,["H834"]],[3,5,["H5060"]],[5,10,["H2930"]],[10,11,["H5704"]],[11,12,["H6153"]],[12,15,["H3808"]],[15,16,["H398"]],[16,17,["H4480"]],[17,20,["H6944"]],[20,21,["H3588","H518"]],[21,23,["H7364"]],[23,25,["H1320"]],[25,27,["H4325"]]]},{"k":3376,"v":[[0,4,["H8121"]],[4,6,["H935"]],[6,10,["H2891"]],[10,13,["H310"]],[13,14,["H398"]],[14,15,["H4480"]],[15,18,["H6944"]],[18,19,["H3588"]],[19,20,["H1931"]],[20,23,["H3899"]]]},{"k":3377,"v":[[0,5,["H5038"]],[5,8,["H2966"]],[8,13,["H3808"]],[13,14,["H398"]],[14,16,["H2930"]],[16,19,["H589"]],[19,22,["H3068"]]]},{"k":3378,"v":[[0,4,["H8104","(H853)"]],[4,6,["H4931"]],[6,7,["H3808"]],[7,9,["H5375"]],[9,10,["H2399"]],[10,11,["H5921"]],[11,14,["H4191"]],[14,16,["H3588"]],[16,18,["H2490"]],[18,20,["H589"]],[20,22,["H3068"]],[22,24,["H6942"]],[24,25,[]]]},{"k":3379,"v":[[0,3,["H3808","H3605"]],[3,4,["H2114"]],[4,5,["H398"]],[5,9,["H6944"]],[9,11,["H8453"]],[11,14,["H3548"]],[14,18,["H7916"]],[18,20,["H3808"]],[20,21,["H398"]],[21,25,["H6944"]]]},{"k":3380,"v":[[0,2,["H3588"]],[2,4,["H3548"]],[4,5,["H7069"]],[5,7,["H5315"]],[7,10,["H7075","H3701"]],[10,11,["H1931"]],[11,13,["H398"]],[13,20,["H3211"]],[20,23,["H1004"]],[23,24,["H1992"]],[24,26,["H398"]],[26,29,["H3899"]]]},{"k":3381,"v":[[0,1,["H3588"]],[1,3,["H3548"]],[3,4,["H1323"]],[4,6,["H1961"]],[6,10,["H376","H2114"]],[10,11,["H1931"]],[11,13,["H3808"]],[13,14,["H398"]],[14,17,["H8641"]],[17,21,["H6944"]]]},{"k":3382,"v":[[0,2,["H3588"]],[2,4,["H3548"]],[4,5,["H1323"]],[5,6,["H1961"]],[6,8,["H490"]],[8,10,["H1644"]],[10,13,["H369"]],[13,14,["H2233"]],[14,17,["H7725"]],[17,18,["H413"]],[18,20,["H1"]],[20,21,["H1004"]],[21,25,["H5271"]],[25,28,["H398"]],[28,32,["H4480","H3899","H1"]],[32,36,["H3605","H3808"]],[36,37,["H2114"]],[37,38,["H398"]],[38,39,[]]]},{"k":3383,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H398"]],[5,9,["H6944"]],[9,10,["H7684"]],[10,14,["H3254"]],[14,16,["H2549"]],[16,19,["H5921"]],[19,23,["H5414"]],[23,27,["H3548","(H853)"]],[27,31,["H6944"]]]},{"k":3384,"v":[[0,4,["H3808"]],[4,5,["H2490","(H853)"]],[5,8,["H6944"]],[8,11,["H1121"]],[11,13,["H3478","(H853)"]],[13,14,["H834"]],[14,16,["H7311"]],[16,19,["H3068"]]]},{"k":3385,"v":[[0,5,["H5375"]],[5,7,["H5771"]],[7,9,["H819"]],[9,12,["H398","(H853)"]],[12,15,["H6944"]],[15,16,["H3588"]],[16,17,["H589"]],[17,19,["H3068"]],[19,21,["H6942"]],[21,22,[]]]},{"k":3386,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3387,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,3,["H175"]],[3,5,["H413"]],[5,7,["H1121"]],[7,9,["H413"]],[9,10,["H3605"]],[10,12,["H1121"]],[12,14,["H3478"]],[14,16,["H559"]],[16,17,["H413"]],[17,19,["H376","H376"]],[19,24,["H4480","H1004"]],[24,26,["H3478"]],[26,28,["H4480"]],[28,30,["H1616"]],[30,32,["H3478"]],[32,33,["H834"]],[33,35,["H7126"]],[35,37,["H7133"]],[37,39,["H3605"]],[39,41,["H5088"]],[41,44,["H3605"]],[44,47,["H5071"]],[47,48,["H834"]],[48,51,["H7126"]],[51,54,["H3068"]],[54,58,["H5930"]]]},{"k":3388,"v":[[0,7,["H7522"]],[7,9,["H2145"]],[9,11,["H8549"]],[11,14,["H1241"]],[14,17,["H3775"]],[17,21,["H5795"]]]},{"k":3389,"v":[[0,2,["H3605","H834"]],[2,5,["H3971"]],[5,9,["H3808"]],[9,10,["H7126"]],[10,11,["H3588"]],[11,14,["H3808"]],[14,15,["H1961"]],[15,16,["H7522"]],[16,18,[]]]},{"k":3390,"v":[[0,2,["H376","H3588"]],[2,3,["H7126"]],[3,5,["H2077"]],[5,8,["H8002"]],[8,11,["H3068"]],[11,13,["H6381"]],[13,15,["H5088"]],[15,16,["H176"]],[16,19,["H5071"]],[19,21,["H1241"]],[21,22,["H176"]],[22,23,["H6629"]],[23,26,["H1961"]],[26,27,["H8549"]],[27,30,["H7522"]],[30,33,["H1961"]],[33,34,["H3808","H3605"]],[34,35,["H3971"]],[35,36,[]]]},{"k":3391,"v":[[0,1,["H5788"]],[1,2,["H176"]],[2,3,["H7665"]],[3,4,["H176"]],[4,5,["H2782"]],[5,6,["H176"]],[6,9,["H2990"]],[9,10,["H176"]],[10,11,["H1618"]],[11,12,["H176"]],[12,13,["H3217"]],[13,16,["H3808"]],[16,17,["H7126"]],[17,18,["H428"]],[18,21,["H3068"]],[21,22,["H3808"]],[22,23,["H5414"]],[23,27,["H801"]],[27,28,["H4480"]],[28,30,["H5921"]],[30,32,["H4196"]],[32,35,["H3068"]]]},{"k":3392,"v":[[0,3,["H7794"]],[3,6,["H7716"]],[6,11,["H8311"]],[11,16,["H7038"]],[16,20,["H6213"]],[20,24,["H5071"]],[24,28,["H5088"]],[28,31,["H3808"]],[31,33,["H7521"]]]},{"k":3393,"v":[[0,3,["H3808"]],[3,4,["H7126"]],[4,7,["H3068"]],[7,11,["H4600"]],[11,13,["H3807"]],[13,15,["H5423"]],[15,17,["H3772"]],[17,18,["H3808"]],[18,21,["H6213"]],[21,27,["H776"]]]},{"k":3394,"v":[[0,1,["H3808"]],[1,5,["H4480","H3027","H1121","H5236"]],[5,8,["H7126","(H853)"]],[8,10,["H3899"]],[10,13,["H430"]],[13,15,["H4480","H3605"]],[15,17,["H428"]],[17,18,["H3588"]],[18,20,["H4893"]],[20,25,["H3971"]],[25,31,["H3808"]],[31,33,["H7521"]],[33,35,[]]]},{"k":3395,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3396,"v":[[0,1,["H3588"]],[1,3,["H7794"]],[3,4,["H176"]],[4,6,["H3775"]],[6,7,["H176"]],[7,9,["H5795"]],[9,12,["H3205"]],[12,16,["H1961"]],[16,17,["H7651"]],[17,18,["H3117"]],[18,19,["H8478"]],[19,21,["H517"]],[21,26,["H4480","H3117","H8066"]],[26,28,["H1973"]],[28,32,["H7521"]],[32,35,["H7133"]],[35,38,["H801"]],[38,41,["H3068"]]]},{"k":3397,"v":[[0,5,["H7794"]],[5,6,["H176"]],[6,7,["H7716"]],[7,10,["H3808"]],[10,11,["H7819"]],[11,15,["H1121"]],[15,18,["H259"]],[18,19,["H3117"]]]},{"k":3398,"v":[[0,2,["H3588"]],[2,5,["H2076"]],[5,7,["H2077"]],[7,9,["H8426"]],[9,12,["H3068"]],[12,13,["H2076"]],[13,18,["H7522"]]]},{"k":3399,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,9,["H398"]],[9,12,["H3498"]],[12,13,["H3808"]],[13,14,["H4480"]],[14,16,["H5704"]],[16,18,["H1242"]],[18,19,["H589"]],[19,22,["H3068"]]]},{"k":3400,"v":[[0,4,["H8104"]],[4,6,["H4687"]],[6,8,["H6213"]],[8,10,["H589"]],[10,13,["H3068"]]]},{"k":3401,"v":[[0,1,["H3808"]],[1,4,["H2490","(H853)"]],[4,6,["H6944"]],[6,7,["H8034"]],[7,12,["H6942"]],[12,13,["H8432"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,18,["H589"]],[18,21,["H3068"]],[21,23,["H6942"]],[23,24,[]]]},{"k":3402,"v":[[0,4,["H3318","(H853)"]],[4,7,["H4480","H776"]],[7,9,["H4714"]],[9,11,["H1961"]],[11,13,["H430"]],[13,14,["H589"]],[14,17,["H3068"]]]},{"k":3403,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3404,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,13,["H4150"]],[13,16,["H3068"]],[16,17,["H834","(H853)"]],[17,20,["H7121"]],[20,23,["H6944"]],[23,24,["H4744"]],[24,26,["H428"]],[26,29,["H4150"]]]},{"k":3405,"v":[[0,1,["H8337"]],[1,2,["H3117"]],[2,4,["H4399"]],[4,6,["H6213"]],[6,9,["H7637"]],[9,10,["H3117"]],[10,13,["H7676"]],[13,15,["H7677"]],[15,17,["H6944"]],[17,18,["H4744"]],[18,21,["H6213"]],[21,22,["H3808","H3605"]],[22,23,["H4399"]],[23,25,["H1931"]],[25,28,["H7676"]],[28,31,["H3068"]],[31,33,["H3605"]],[33,35,["H4186"]]]},{"k":3406,"v":[[0,1,["H428"]],[1,4,["H4150"]],[4,7,["H3068"]],[7,9,["H6944"]],[9,10,["H4744"]],[10,11,["H834"]],[11,14,["H7121"]],[14,17,["H4150"]]]},{"k":3407,"v":[[0,3,["H702","H6240"]],[3,7,["H7223"]],[7,8,["H2320"]],[8,9,["H996"]],[9,10,["H6153"]],[10,13,["H3068"]],[13,14,["H6453"]]]},{"k":3408,"v":[[0,4,["H2568","H6240"]],[4,5,["H3117"]],[5,8,["H2088"]],[8,9,["H2320"]],[9,12,["H2282"]],[12,15,["H4682"]],[15,18,["H3068"]],[18,19,["H7651"]],[19,20,["H3117"]],[20,23,["H398"]],[23,25,["H4682"]]]},{"k":3409,"v":[[0,3,["H7223"]],[3,4,["H3117"]],[4,7,["H1961"]],[7,9,["H6944"]],[9,10,["H4744"]],[10,13,["H6213"]],[13,14,["H3808","H3605"]],[14,15,["H5656"]],[15,16,["H4399"]],[16,17,[]]]},{"k":3410,"v":[[0,4,["H7126"]],[4,9,["H801"]],[9,12,["H3068"]],[12,13,["H7651"]],[13,14,["H3117"]],[14,17,["H7637"]],[17,18,["H3117"]],[18,21,["H6944"]],[21,22,["H4744"]],[22,25,["H6213"]],[25,26,["H3808","H3605"]],[26,27,["H5656"]],[27,28,["H4399"]],[28,29,[]]]},{"k":3411,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3412,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H3588"]],[11,14,["H935"]],[14,15,["H413"]],[15,17,["H776"]],[17,18,["H834"]],[18,19,["H589"]],[19,20,["H5414"]],[20,25,["H7114","(H853)"]],[25,27,["H7105"]],[27,32,["H935","(H853)"]],[32,34,["H6016"]],[34,37,["H7225"]],[37,40,["H7105"]],[40,41,["H413"]],[41,43,["H3548"]]]},{"k":3413,"v":[[0,4,["H5130","(H853)"]],[4,6,["H6016"]],[6,7,["H6440"]],[7,9,["H3068"]],[9,12,["H7522"]],[12,17,["H4480","H4283"]],[17,20,["H7676"]],[20,22,["H3548"]],[22,24,["H5130"]],[24,25,[]]]},{"k":3414,"v":[[0,4,["H6213"]],[4,6,["H3117"]],[6,9,["H5130","(H853)"]],[9,11,["H6016"]],[11,14,["H3532"]],[14,16,["H8549"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,24,["H5930"]],[24,27,["H3068"]]]},{"k":3415,"v":[[0,4,["H4503"]],[4,8,["H8147"]],[8,10,["H6241"]],[10,13,["H5560"]],[13,14,["H1101"]],[14,16,["H8081"]],[16,21,["H801"]],[21,24,["H3068"]],[24,27,["H5207"]],[27,28,["H7381"]],[28,32,["H5262"]],[32,37,["H3196"]],[37,39,["H7243"]],[39,43,["H1969"]]]},{"k":3416,"v":[[0,4,["H398"]],[4,5,["H3808"]],[5,6,["H3899"]],[6,9,["H7039"]],[9,12,["H3759"]],[12,13,["H5704"]],[13,15,["H2088","H6106"]],[15,16,["H3117"]],[16,17,["H5704"]],[17,20,["H935","(H853)"]],[20,22,["H7133"]],[22,25,["H430"]],[25,30,["H2708"]],[30,32,["H5769"]],[32,35,["H1755"]],[35,37,["H3605"]],[37,39,["H4186"]]]},{"k":3417,"v":[[0,4,["H5608"]],[4,9,["H4480","H4283"]],[9,12,["H7676"]],[12,15,["H4480","H3117"]],[15,18,["H935","(H853)"]],[18,20,["H6016"]],[20,24,["H8573"]],[24,25,["H7651"]],[25,26,["H7676"]],[26,28,["H1961"]],[28,29,["H8549"]]]},{"k":3418,"v":[[0,2,["H5704"]],[2,4,["H4480","H4283"]],[4,7,["H7637"]],[7,8,["H7676"]],[8,11,["H5608"]],[11,12,["H2572"]],[12,13,["H3117"]],[13,17,["H7126"]],[17,19,["H2319"]],[19,21,["H4503"]],[21,24,["H3068"]]]},{"k":3419,"v":[[0,3,["H935"]],[3,7,["H4480","H4186"]],[7,8,["H8147"]],[8,9,["H8573"]],[9,10,["H3899"]],[10,12,["H8147"]],[12,14,["H6241"]],[14,17,["H1961"]],[17,20,["H5560"]],[20,24,["H644"]],[24,26,["H2557"]],[26,30,["H1061"]],[30,33,["H3068"]]]},{"k":3420,"v":[[0,4,["H7126"]],[4,5,["H5921"]],[5,7,["H3899"]],[7,8,["H7651"]],[8,9,["H3532"]],[9,11,["H8549"]],[11,14,["H1121"]],[14,15,["H8141"]],[15,17,["H259"]],[17,18,["H1121","H1241"]],[18,19,["H6499"]],[19,21,["H8147"]],[21,22,["H352"]],[22,25,["H1961"]],[25,29,["H5930"]],[29,32,["H3068"]],[32,36,["H4503"]],[36,40,["H5262"]],[40,46,["H801"]],[46,48,["H5207"]],[48,49,["H7381"]],[49,52,["H3068"]]]},{"k":3421,"v":[[0,4,["H6213"]],[4,5,["H259"]],[5,6,["H8163"]],[6,9,["H5795"]],[9,13,["H2403"]],[13,15,["H8147"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,23,["H2077"]],[23,26,["H8002"]]]},{"k":3422,"v":[[0,3,["H3548"]],[3,5,["H5130"]],[5,7,["H5921"]],[7,9,["H3899"]],[9,12,["H1061"]],[12,16,["H8573"]],[16,17,["H6440"]],[17,19,["H3068"]],[19,20,["H5921"]],[20,22,["H8147"]],[22,23,["H3532"]],[23,26,["H1961"]],[26,27,["H6944"]],[27,30,["H3068"]],[30,33,["H3548"]]]},{"k":3423,"v":[[0,4,["H7121"]],[4,7,["H2088","H6106"]],[7,8,["H3117"]],[8,12,["H1961"]],[12,14,["H6944"]],[14,15,["H4744"]],[15,20,["H6213"]],[20,21,["H3808","H3605"]],[21,22,["H5656"]],[22,23,["H4399"]],[23,29,["H2708"]],[29,31,["H5769"]],[31,33,["H3605"]],[33,35,["H4186"]],[35,38,["H1755"]]]},{"k":3424,"v":[[0,4,["H7114","(H853)"]],[4,6,["H7105"]],[6,9,["H776"]],[9,12,["H3808"]],[12,15,["H3615"]],[15,18,["H6285"]],[18,21,["H7704"]],[21,24,["H7114"]],[24,25,["H3808"]],[25,28,["H3950"]],[28,30,["H3951"]],[30,33,["H7105"]],[33,36,["H5800"]],[36,40,["H6041"]],[40,44,["H1616"]],[44,45,["H589"]],[45,48,["H3068"]],[48,50,["H430"]]]},{"k":3425,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3426,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H559"]],[7,10,["H7637"]],[10,11,["H2320"]],[11,14,["H259"]],[14,18,["H2320"]],[18,21,["H1961"]],[21,23,["H7677"]],[23,25,["H2146"]],[25,29,["H8643"]],[29,31,["H6944"]],[31,32,["H4744"]]]},{"k":3427,"v":[[0,3,["H6213"]],[3,4,["H3808","H3605"]],[4,5,["H5656"]],[5,6,["H4399"]],[6,11,["H7126"]],[11,16,["H801"]],[16,19,["H3068"]]]},{"k":3428,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3429,"v":[[0,1,["H389"]],[1,4,["H6218"]],[4,7,["H2088"]],[7,8,["H7637"]],[8,9,["H2320"]],[9,14,["H3117"]],[14,16,["H3725"]],[16,19,["H1961"]],[19,21,["H6944"]],[21,22,["H4744"]],[22,28,["H6031","(H853)"]],[28,30,["H5315"]],[30,32,["H7126"]],[32,37,["H801"]],[37,40,["H3068"]]]},{"k":3430,"v":[[0,4,["H6213"]],[4,5,["H3808","H3605"]],[5,6,["H4399"]],[6,8,["H2088"]],[8,9,["H6106"]],[9,10,["H3117"]],[10,11,["H3588"]],[11,12,["H1931"]],[12,15,["H3117"]],[15,17,["H3725"]],[17,21,["H3722"]],[21,22,["H5921"]],[22,24,["H6440"]],[24,26,["H3068"]],[26,28,["H430"]]]},{"k":3431,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,3,["H5315"]],[3,6,["H834"]],[6,8,["H3808"]],[8,10,["H6031"]],[10,12,["H2088"]],[12,13,["H6106"]],[13,14,["H3117"]],[14,19,["H3772"]],[19,23,["H4480","H5971"]]]},{"k":3432,"v":[[0,2,["H3605"]],[2,3,["H5315"]],[3,6,["H834"]],[6,7,["H6213"]],[7,8,["H3605"]],[8,9,["H4399"]],[9,11,["H2088"]],[11,12,["H6106"]],[12,13,["H3117","(H853)"]],[13,15,["H1931"]],[15,16,["H5315"]],[16,19,["H6"]],[19,21,["H4480","H7130"]],[21,23,["H5971"]]]},{"k":3433,"v":[[0,3,["H6213"]],[3,4,["H3808"]],[4,5,["H3605"]],[5,7,["H4399"]],[7,12,["H2708"]],[12,14,["H5769"]],[14,17,["H1755"]],[17,19,["H3605"]],[19,21,["H4186"]]]},{"k":3434,"v":[[0,1,["H1931"]],[1,7,["H7676"]],[7,9,["H7677"]],[9,13,["H6031","(H853)"]],[13,15,["H5315"]],[15,18,["H8672"]],[18,22,["H2320"]],[22,24,["H6153"]],[24,26,["H4480","H6153"]],[26,27,["H5704"]],[27,28,["H6153"]],[28,31,["H7673"]],[31,33,["H7676"]]]},{"k":3435,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3436,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H559"]],[7,9,["H2568","H6240"]],[9,10,["H3117"]],[10,12,["H2088"]],[12,13,["H7637"]],[13,14,["H2320"]],[14,18,["H2282"]],[18,20,["H5521"]],[20,22,["H7651"]],[22,23,["H3117"]],[23,26,["H3068"]]]},{"k":3437,"v":[[0,3,["H7223"]],[3,4,["H3117"]],[4,8,["H6944"]],[8,9,["H4744"]],[9,12,["H6213"]],[12,13,["H3808","H3605"]],[13,14,["H5656"]],[14,15,["H4399"]],[15,16,[]]]},{"k":3438,"v":[[0,1,["H7651"]],[1,2,["H3117"]],[2,5,["H7126"]],[5,10,["H801"]],[10,13,["H3068"]],[13,16,["H8066"]],[16,17,["H3117"]],[17,19,["H1961"]],[19,21,["H6944"]],[21,22,["H4744"]],[22,28,["H7126"]],[28,33,["H801"]],[33,36,["H3068"]],[36,37,["H1931"]],[37,41,["H6116"]],[41,45,["H6213"]],[45,46,["H3808","H3605"]],[46,47,["H5656"]],[47,48,["H4399"]],[48,49,[]]]},{"k":3439,"v":[[0,1,["H428"]],[1,4,["H4150"]],[4,7,["H3068"]],[7,8,["H834","(H853)"]],[8,11,["H7121"]],[11,14,["H6944"]],[14,15,["H4744"]],[15,17,["H7126"]],[17,22,["H801"]],[22,25,["H3068"]],[25,28,["H5930"]],[28,32,["H4503"]],[32,34,["H2077"]],[34,37,["H5262"]],[37,39,["H1697"]],[39,42,["H3117","H3117"]]]},{"k":3440,"v":[[0,1,["H4480","H905"]],[1,3,["H7676"]],[3,6,["H3068"]],[6,8,["H4480","H905"]],[8,10,["H4979"]],[10,12,["H4480","H905"]],[12,13,["H3605"]],[13,15,["H5088"]],[15,17,["H4480","H905"]],[17,18,["H3605"]],[18,21,["H5071"]],[21,22,["H834"]],[22,24,["H5414"]],[24,27,["H3068"]]]},{"k":3441,"v":[[0,1,["H389"]],[1,4,["H2568","H6240"]],[4,5,["H3117"]],[5,8,["H7637"]],[8,9,["H2320"]],[9,14,["H622","(H853)"]],[14,16,["H8393"]],[16,19,["H776"]],[19,22,["H2287","(H853)"]],[22,24,["H2282"]],[24,27,["H3068"]],[27,28,["H7651"]],[28,29,["H3117"]],[29,32,["H7223"]],[32,33,["H3117"]],[33,37,["H7677"]],[37,41,["H8066"]],[41,42,["H3117"]],[42,46,["H7677"]]]},{"k":3442,"v":[[0,4,["H3947"]],[4,8,["H7223"]],[8,9,["H3117"]],[9,11,["H6529"]],[11,13,["H1926"]],[13,14,["H6086"]],[14,15,["H3709"]],[15,18,["H8558"]],[18,21,["H6057"]],[21,23,["H5687"]],[23,24,["H6086"]],[24,26,["H6155"]],[26,29,["H5158"]],[29,33,["H8055"]],[33,34,["H6440"]],[34,36,["H3068"]],[36,38,["H430"]],[38,39,["H7651"]],[39,40,["H3117"]]]},{"k":3443,"v":[[0,4,["H2287"]],[4,7,["H2282"]],[7,10,["H3068"]],[10,11,["H7651"]],[11,12,["H3117"]],[12,15,["H8141"]],[15,20,["H2708"]],[20,22,["H5769"]],[22,25,["H1755"]],[25,28,["H2287"]],[28,32,["H7637"]],[32,33,["H2320"]]]},{"k":3444,"v":[[0,3,["H3427"]],[3,5,["H5521"]],[5,6,["H7651"]],[6,7,["H3117"]],[7,8,["H3605"]],[8,11,["H3478"]],[11,12,["H249"]],[12,14,["H3427"]],[14,16,["H5521"]]]},{"k":3445,"v":[[0,1,["H4616"]],[1,3,["H1755"]],[3,5,["H3045"]],[5,6,["H3588"]],[6,8,["(H853)"]],[8,10,["H1121"]],[10,12,["H3478"]],[12,14,["H3427"]],[14,16,["H5521"]],[16,21,["H3318","(H853)"]],[21,24,["H4480","H776"]],[24,26,["H4714"]],[26,27,["H589"]],[27,30,["H3068"]],[30,32,["H430"]]]},{"k":3446,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H3478","(H853)"]],[8,10,["H4150"]],[10,13,["H3068"]]]},{"k":3447,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3448,"v":[[0,1,["H6680","(H853)"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,8,["H3947"]],[8,9,["H413"]],[9,11,["H2134"]],[11,12,["H8081"]],[12,13,["H2132"]],[13,14,["H3795"]],[14,17,["H3974"]],[17,21,["H5216"]],[21,23,["H5927"]],[23,24,["H8548"]]]},{"k":3449,"v":[[0,1,["H4480","H2351"]],[1,3,["H6532"]],[3,6,["H5715"]],[6,9,["H168"]],[9,12,["H4150"]],[12,14,["H175"]],[14,15,["H6186"]],[15,19,["H4480","H6153"]],[19,20,["H5704"]],[20,22,["H1242"]],[22,23,["H6440"]],[23,25,["H3068"]],[25,26,["H8548"]],[26,31,["H2708"]],[31,33,["H5769"]],[33,36,["H1755"]]]},{"k":3450,"v":[[0,3,["H6186","(H853)"]],[3,5,["H5216"]],[5,6,["H5921"]],[6,8,["H2889"]],[8,9,["H4501"]],[9,10,["H6440"]],[10,12,["H3068"]],[12,13,["H8548"]]]},{"k":3451,"v":[[0,4,["H3947"]],[4,6,["H5560"]],[6,8,["H644"]],[8,9,["H8147","H6240"]],[9,10,["H2471"]],[10,12,["H8147"]],[12,14,["H6241"]],[14,16,["H1961"]],[16,18,["H259"]],[18,19,["H2471"]]]},{"k":3452,"v":[[0,4,["H7760"]],[4,7,["H8147"]],[7,8,["H4634"]],[8,9,["H8337"]],[9,12,["H4635"]],[12,13,["H5921"]],[13,15,["H2889"]],[15,16,["H7979"]],[16,17,["H6440"]],[17,19,["H3068"]]]},{"k":3453,"v":[[0,4,["H5414"]],[4,5,["H2134"]],[5,6,["H3828"]],[6,7,["H5921"]],[7,9,["H4635"]],[9,13,["H1961"]],[13,16,["H3899"]],[16,19,["H234"]],[19,25,["H801"]],[25,28,["H3068"]]]},{"k":3454,"v":[[0,2,["H3117","H7676","H3117","H7676"]],[2,8,["H6186"]],[8,9,["H6440"]],[9,11,["H3068"]],[11,12,["H8548"]],[12,15,["H4480","H854"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,22,["H5769"]],[22,23,["H1285"]]]},{"k":3455,"v":[[0,4,["H1961"]],[4,5,["H175"]],[5,8,["H1121"]],[8,12,["H398"]],[12,16,["H6918"]],[16,17,["H4725"]],[17,18,["H3588"]],[18,19,["H1931"]],[19,22,["H6944","H6944"]],[22,33,["H4480","H801","H3068"]],[33,36,["H5769"]],[36,37,["H2706"]]]},{"k":3456,"v":[[0,3,["H1121"]],[3,6,["H3482"]],[6,7,["H802"]],[7,8,["H1931"]],[8,9,["H1121","H376"]],[9,12,["H4713"]],[12,14,["H3318"]],[14,15,["H8432"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,22,["H1121"]],[22,25,["H3482"]],[25,29,["H376"]],[29,31,["H3481"]],[31,33,["H5327"]],[33,36,["H4264"]]]},{"k":3457,"v":[[0,3,["H3482"]],[3,4,["H802"]],[4,5,["H1121"]],[5,6,["H5344","(H853)"]],[6,8,["H8034"]],[8,13,["H7043"]],[13,16,["H935"]],[16,18,["H413"]],[18,19,["H4872"]],[19,22,["H517"]],[22,23,["H8034"]],[23,25,["H8019"]],[25,27,["H1323"]],[27,29,["H1704"]],[29,32,["H4294"]],[32,34,["H1835"]]]},{"k":3458,"v":[[0,3,["H5117"]],[3,6,["H4929"]],[6,7,["H5921"]],[7,9,["H6310"]],[9,12,["H3068"]],[12,15,["H6567"]],[15,16,[]]]},{"k":3459,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3460,"v":[[0,2,["H3318","(H853)"]],[2,6,["H7043"]],[6,7,["H413","H4480","H2351"]],[7,9,["H4264"]],[9,12,["H3605"]],[12,14,["H8085"]],[14,16,["H5564","(H853)"]],[16,18,["H3027"]],[18,19,["H5921"]],[19,21,["H7218"]],[21,24,["H3605"]],[24,26,["H5712"]],[26,27,["H7275"]],[27,28,[]]]},{"k":3461,"v":[[0,4,["H1696"]],[4,5,["H413"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,10,["H559"]],[10,11,["H376","H376","H3588"]],[11,12,["H7043"]],[12,14,["H430"]],[14,16,["H5375"]],[16,18,["H2399"]]]},{"k":3462,"v":[[0,4,["H5344"]],[4,6,["H8034"]],[6,9,["H3068"]],[9,16,["H4191","H4191"]],[16,18,["H3605"]],[18,20,["H5712"]],[20,23,["H7275","H7275"]],[23,28,["H1616"]],[28,36,["H249"]],[36,39,["H5344"]],[39,41,["H8034"]],[41,49,["H4191"]]]},{"k":3463,"v":[[0,2,["H376"]],[2,3,["H3588"]],[3,4,["H5221"]],[4,5,["H3605"]],[5,6,["H5315","H120"]],[6,12,["H4191","H4191"]]]},{"k":3464,"v":[[0,4,["H5221"]],[4,6,["H5315","H929"]],[6,10,["H7999"]],[10,11,["H5315"]],[11,12,["H8478"]],[12,13,["H5315"]]]},{"k":3465,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H5414"]],[5,7,["H3971"]],[7,10,["H5997"]],[10,11,["H834"]],[11,14,["H6213"]],[14,15,["H3651"]],[15,19,["H6213"]],[19,21,[]]]},{"k":3466,"v":[[0,1,["H7667"]],[1,2,["H8478"]],[2,3,["H7667"]],[3,4,["H5869"]],[4,5,["H8478"]],[5,6,["H5869"]],[6,7,["H8127"]],[7,8,["H8478"]],[8,9,["H8127"]],[9,10,["H834"]],[10,13,["H5414"]],[13,15,["H3971"]],[15,18,["H120"]],[18,19,["H3651"]],[19,23,["H5414"]],[23,26,[]]]},{"k":3467,"v":[[0,4,["H5221"]],[4,6,["H929"]],[6,9,["H7999"]],[9,14,["H5221"]],[14,16,["H120"]],[16,22,["H4191"]]]},{"k":3468,"v":[[0,3,["H1961"]],[3,4,["H259"]],[4,7,["H4941"]],[7,9,["H1961"]],[9,12,["H1616"]],[12,19,["H249"]],[19,20,["H3588"]],[20,21,["H589"]],[21,24,["H3068"]],[24,26,["H430"]]]},{"k":3469,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,13,["H3318","(H853)"]],[13,17,["H7043"]],[17,19,["H413","H4480","H2351"]],[19,21,["H4264"]],[21,23,["H7275"]],[23,26,["H68"]],[26,29,["H1121"]],[29,31,["H3478"]],[31,32,["H6213"]],[32,33,["H834"]],[33,35,["H3068"]],[35,36,["H6680","(H853)"]],[36,37,["H4872"]]]},{"k":3470,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H2022"]],[8,9,["H5514"]],[9,10,["H559"]]]},{"k":3471,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H3588"]],[11,13,["H935"]],[13,14,["H413"]],[14,16,["H776"]],[16,17,["H834"]],[17,18,["H589"]],[18,19,["H5414"]],[19,24,["H776"]],[24,25,["H7673"]],[25,27,["H7676"]],[27,30,["H3068"]]]},{"k":3472,"v":[[0,1,["H8337"]],[1,2,["H8141"]],[2,5,["H2232"]],[5,7,["H7704"]],[7,9,["H8337"]],[9,10,["H8141"]],[10,13,["H2168"]],[13,15,["H3754"]],[15,18,["H622","(H853)"]],[18,20,["H8393"]],[20,21,[]]]},{"k":3473,"v":[[0,4,["H7637"]],[4,5,["H8141"]],[5,7,["H1961"]],[7,9,["H7676"]],[9,11,["H7677"]],[11,14,["H776"]],[14,16,["H7676"]],[16,19,["H3068"]],[19,22,["H3808"]],[22,23,["H2232"]],[23,25,["H7704"]],[25,26,["H3808"]],[26,27,["H2168"]],[27,29,["H3754"]]]},{"k":3474,"v":[[0,0,["(H853)"]],[0,7,["H5599"]],[7,10,["H7105"]],[10,13,["H3808"]],[13,14,["H7114"]],[14,15,["H3808"]],[15,16,["H1219"]],[16,18,["H6025"]],[18,22,["H5139"]],[22,25,["H1961"]],[25,27,["H8141"]],[27,29,["H7677"]],[29,32,["H776"]]]},{"k":3475,"v":[[0,3,["H7676"]],[3,6,["H776"]],[6,8,["H1961"]],[8,9,["H402"]],[9,17,["H5650"]],[17,21,["H519"]],[21,26,["H7916"]],[26,30,["H8453"]],[30,32,["H1481"]],[32,33,["H5973"]],[33,34,[]]]},{"k":3476,"v":[[0,4,["H929"]],[4,8,["H2416"]],[8,9,["H834"]],[9,13,["H776"]],[13,15,["H3605"]],[15,17,["H8393"]],[17,19,["H1961"]],[19,20,["H398"]]]},{"k":3477,"v":[[0,4,["H5608"]],[4,5,["H7651"]],[5,6,["H7676"]],[6,8,["H8141"]],[8,11,["H7651"]],[11,12,["H6471"]],[12,13,["H7651"]],[13,14,["H8141"]],[14,17,["H3117"]],[17,20,["H7651"]],[20,21,["H7676"]],[21,23,["H8141"]],[23,25,["H1961"]],[25,28,["H705"]],[28,30,["H8672"]],[30,31,["H8141"]]]},{"k":3478,"v":[[0,6,["H7782"]],[6,9,["H8643"]],[9,11,["H5674"]],[11,14,["H6218"]],[14,18,["H7637"]],[18,19,["H2320"]],[19,22,["H3117"]],[22,24,["H3725"]],[24,29,["H7782"]],[29,30,["H5674"]],[30,32,["H3605"]],[32,34,["H776"]]]},{"k":3479,"v":[[0,4,["H6942","(H853)"]],[4,6,["H2572"]],[6,7,["H8141"]],[7,9,["H7121"]],[9,10,["H1865"]],[10,14,["H776"]],[14,16,["H3605"]],[16,18,["H3427"]],[18,20,["H1931"]],[20,22,["H1961"]],[22,24,["H3104"]],[24,30,["H7725"]],[30,32,["H376"]],[32,33,["H413"]],[33,35,["H272"]],[35,39,["H7725"]],[39,41,["H376"]],[41,42,["H413"]],[42,44,["H4940"]]]},{"k":3480,"v":[[0,2,["H3104"]],[2,4,["H1931"]],[4,5,["H2572"]],[5,6,["H8141"]],[6,7,["H1961"]],[7,12,["H3808"]],[12,13,["H2232"]],[13,14,["H3808"]],[14,15,["H7114","(H853)"]],[15,20,["H5599"]],[20,23,["H3808"]],[23,24,["H1219"]],[24,28,["(H853)"]],[28,32,["H5139"]]]},{"k":3481,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,5,["H3104"]],[5,8,["H1961"]],[8,9,["H6944"]],[9,14,["H398","(H853)"]],[14,16,["H8393"]],[16,19,["H4480"]],[19,21,["H7704"]]]},{"k":3482,"v":[[0,3,["H8141"]],[3,5,["H2063"]],[5,6,["H3104"]],[6,9,["H7725"]],[9,11,["H376"]],[11,12,["H413"]],[12,14,["H272"]]]},{"k":3483,"v":[[0,2,["H3588"]],[2,4,["H4376"]],[4,5,["H4465"]],[5,8,["H5997"]],[8,9,["H176"]],[9,10,["H7069"]],[10,15,["H4480","H3027","H5997"]],[15,18,["H408"]],[18,19,["H3238"]],[19,20,["H376","(H853)"]],[20,21,["H251"]]]},{"k":3484,"v":[[0,4,["H4557"]],[4,6,["H8141"]],[6,7,["H310"]],[7,9,["H3104"]],[9,12,["H7069"]],[12,13,["H4480","H854"]],[13,15,["H5997"]],[15,20,["H4557"]],[20,22,["H8141"]],[22,25,["H8393"]],[25,28,["H4376"]],[28,30,[]]]},{"k":3485,"v":[[0,2,["H6310"]],[2,4,["H7230"]],[4,6,["H8141"]],[6,9,["H7235"]],[9,11,["H4736"]],[11,15,["H6310"]],[15,17,["H4591"]],[17,19,["H8141"]],[19,22,["H4591"]],[22,24,["H4736"]],[24,27,["H3588"]],[27,31,["H4557"]],[31,37,["H8393"]],[37,39,["H1931"]],[39,40,["H4376"]],[40,42,[]]]},{"k":3486,"v":[[0,3,["H3808"]],[3,5,["H3238","(H853)"]],[5,6,["H376"]],[6,7,["H5997"]],[7,13,["H3372","H4480","H430"]],[13,14,["H3588"]],[14,15,["H589"]],[15,18,["H3068"]],[18,20,["H430"]]]},{"k":3487,"v":[[0,4,["H6213","(H853)"]],[4,6,["H2708"]],[6,8,["H8104"]],[8,10,["H4941"]],[10,12,["H6213"]],[12,17,["H3427"]],[17,18,["H5921"]],[18,20,["H776"]],[20,22,["H983"]]]},{"k":3488,"v":[[0,3,["H776"]],[3,5,["H5414"]],[5,7,["H6529"]],[7,11,["H398"]],[11,13,["H7648"]],[13,15,["H3427"]],[15,16,["H5921"]],[16,18,["H983"]]]},{"k":3489,"v":[[0,2,["H3588"]],[2,5,["H559"]],[5,6,["H4100"]],[6,9,["H398"]],[9,11,["H7637"]],[11,12,["H8141"]],[12,13,["H2005"]],[13,16,["H3808"]],[16,17,["H2232"]],[17,18,["H3808"]],[18,20,["H622","(H853)"]],[20,22,["H8393"]]]},{"k":3490,"v":[[0,4,["H6680","(H853)"]],[4,6,["H1293"]],[6,11,["H8345"]],[11,12,["H8141"]],[12,17,["H6213","(H853)"]],[17,18,["H8393"]],[18,20,["H7969"]],[20,21,["H8141"]]]},{"k":3491,"v":[[0,4,["H2232"]],[4,5,["(H853)"]],[5,6,["H8066"]],[6,7,["H8141"]],[7,9,["H398"]],[9,11,["H4480"]],[11,12,["H3465"]],[12,13,["H8393"]],[13,14,["H5704"]],[14,16,["H8671"]],[16,17,["H8141"]],[17,18,["H5704"]],[18,20,["H8393"]],[20,22,["H935"]],[22,25,["H398"]],[25,28,["H3465"]],[28,29,[]]]},{"k":3492,"v":[[0,2,["H776"]],[2,4,["H3808"]],[4,6,["H4376"]],[6,8,["H6783"]],[8,9,["H3588"]],[9,11,["H776"]],[11,14,["H3588"]],[14,15,["H859"]],[15,17,["H1616"]],[17,19,["H8453"]],[19,20,["H5973"]],[20,21,[]]]},{"k":3493,"v":[[0,3,["H3605"]],[3,5,["H776"]],[5,8,["H272"]],[8,11,["H5414"]],[11,13,["H1353"]],[13,16,["H776"]]]},{"k":3494,"v":[[0,1,["H3588"]],[1,3,["H251"]],[3,6,["H4134"]],[6,10,["H4376"]],[10,14,["H4480","H272"]],[14,20,["H7138","H413"]],[20,21,["H935"]],[21,23,["H1350"]],[23,28,["H1350","(H853)"]],[28,33,["H4465","H251"]]]},{"k":3495,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H1961"]],[5,8,["H3808","H1350"]],[8,11,["H5381","H3027"]],[11,13,["H4672","H1767"]],[13,15,["H1353"]],[15,16,[]]]},{"k":3496,"v":[[0,4,["H2803","(H853)"]],[4,6,["H8141"]],[6,9,["H4465"]],[9,12,["H7725","(H853)"]],[12,14,["H5736"]],[14,17,["H376"]],[17,19,["H834"]],[19,21,["H4376"]],[21,26,["H7725"]],[26,29,["H272"]]]},{"k":3497,"v":[[0,2,["H518"]],[2,3,["H3027"]],[3,6,["H3808","H4672","H1767"]],[6,8,["H7725"]],[8,16,["H4465"]],[16,18,["H1961"]],[18,21,["H3027"]],[21,26,["H7069"]],[26,28,["H5704"]],[28,30,["H8141"]],[30,32,["H3104"]],[32,36,["H3104"]],[36,40,["H3318"]],[40,44,["H7725"]],[44,47,["H272"]]]},{"k":3498,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H4376"]],[5,7,["H4186"]],[7,8,["H1004"]],[8,11,["H2346"]],[11,12,["H5892"]],[12,16,["H1961","H1353"]],[16,18,["H5704"]],[18,20,["H8552"]],[20,21,["H8141"]],[21,25,["H4465"]],[25,29,["H3117"]],[29,32,["H1961","H1353"]],[32,33,[]]]},{"k":3499,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H1350"]],[6,7,["H5704"]],[7,9,["H4390"]],[9,12,["H8549"]],[12,13,["H8141"]],[13,16,["H1004"]],[16,17,["H834"]],[17,21,["H834","H2346"]],[21,22,["H5892"]],[22,25,["H6965"]],[25,27,["H6783"]],[27,31,["H7069"]],[31,35,["H1755"]],[35,38,["H3808"]],[38,40,["H3318"]],[40,43,["H3104"]]]},{"k":3500,"v":[[0,3,["H1004"]],[3,6,["H2691"]],[6,7,["H834"]],[7,9,["H369"]],[9,10,["H2346"]],[10,12,["H5439"]],[12,16,["H2803"]],[16,17,["H5921"]],[17,19,["H7704"]],[19,22,["H776"]],[22,25,["H1961"]],[25,26,["H1353"]],[26,31,["H3318"]],[31,34,["H3104"]]]},{"k":3501,"v":[[0,3,["H5892"]],[3,6,["H3881"]],[6,9,["H1004"]],[9,12,["H5892"]],[12,15,["H272"]],[15,18,["H3881"]],[18,19,["H1961","H1353"]],[19,22,["H5769"]]]},{"k":3502,"v":[[0,4,["H834"]],[4,5,["H1350"]],[5,6,["H4480"]],[6,8,["H3881"]],[8,11,["H1004"]],[11,14,["H4465"]],[14,17,["H5892"]],[17,20,["H272"]],[20,23,["H3318"]],[23,28,["H3104"]],[28,29,["H3588"]],[29,31,["H1004"]],[31,34,["H5892"]],[34,37,["H3881"]],[37,40,["H272"]],[40,41,["H8432"]],[41,43,["H1121"]],[43,45,["H3478"]]]},{"k":3503,"v":[[0,3,["H7704"]],[3,6,["H4054"]],[6,9,["H5892"]],[9,11,["H3808"]],[11,13,["H4376"]],[13,14,["H3588"]],[14,15,["H1931"]],[15,18,["H5769"]],[18,19,["H272"]]]},{"k":3504,"v":[[0,2,["H3588"]],[2,4,["H251"]],[4,7,["H4134"]],[7,11,["H4131","H3027"]],[11,12,["H5973"]],[12,17,["H2388"]],[17,24,["H1616"]],[24,27,["H8453"]],[27,31,["H2421"]],[31,32,["H5973"]],[32,33,[]]]},{"k":3505,"v":[[0,1,["H3947"]],[1,3,["H408"]],[3,4,["H5392"]],[4,5,["H4480","H854"]],[5,8,["H8636"]],[8,12,["H3372","H4480","H430"]],[12,15,["H251"]],[15,17,["H2421"]],[17,18,["H5973"]],[18,19,[]]]},{"k":3506,"v":[[0,3,["H3808"]],[3,4,["H5414"]],[4,5,["(H853)"]],[5,7,["H3701"]],[7,9,["H5392"]],[9,10,["H3808"]],[10,11,["H5414"]],[11,14,["H400"]],[14,16,["H4768"]]]},{"k":3507,"v":[[0,1,["H589"]],[1,4,["H3068"]],[4,6,["H430"]],[6,7,["H834"]],[7,10,["H3318","(H853)"]],[10,14,["H4480","H776"]],[14,16,["H4714"]],[16,18,["H5414"]],[18,19,["(H853)"]],[19,21,["H776"]],[21,23,["H3667"]],[23,26,["H1961"]],[26,28,["H430"]]]},{"k":3508,"v":[[0,2,["H3588"]],[2,4,["H251"]],[4,7,["H5973"]],[7,11,["H4134"]],[11,14,["H4376"]],[14,19,["H3808"]],[19,23,["H5647"]],[23,26,["H5656","H5650"]]]},{"k":3509,"v":[[0,5,["H7916"]],[5,9,["H8453"]],[9,12,["H1961"]],[12,13,["H5973"]],[13,17,["H5647","H5973"]],[17,19,["H5704"]],[19,21,["H8141"]],[21,23,["H3104"]]]},{"k":3510,"v":[[0,5,["H3318"]],[5,6,["H4480","H5973"]],[6,9,["H1931"]],[9,12,["H1121"]],[12,13,["H5973"]],[13,17,["H7725"]],[17,18,["H413"]],[18,21,["H4940"]],[21,23,["H413"]],[23,25,["H272"]],[25,28,["H1"]],[28,31,["H7725"]]]},{"k":3511,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,5,["H5650"]],[5,6,["H834"]],[6,9,["H3318"]],[9,13,["H4480","H776"]],[13,15,["H4714"]],[15,18,["H3808"]],[18,20,["H4376"]],[20,22,["H4466","H5650"]]]},{"k":3512,"v":[[0,3,["H3808"]],[3,4,["H7287"]],[4,8,["H6531"]],[8,13,["H3372","H4480","H430"]]]},{"k":3513,"v":[[0,3,["H5650"]],[3,6,["H519"]],[6,7,["H834"]],[7,10,["H1961"]],[10,13,["H4480","H854"]],[13,15,["H1471"]],[15,16,["H834"]],[16,19,["H5439"]],[19,21,["H4480"]],[21,25,["H7069"]],[25,26,["H5650"]],[26,28,["H519"]]]},{"k":3514,"v":[[0,1,["H1571"]],[1,4,["H4480","H1121"]],[4,7,["H8453"]],[7,10,["H1481"]],[10,11,["H5973"]],[11,13,["H4480"]],[13,17,["H7069"]],[17,21,["H4480","H4940"]],[21,22,["H834"]],[22,24,["H5973"]],[24,26,["H834"]],[26,28,["H3205"]],[28,31,["H776"]],[31,35,["H1961"]],[35,37,["H272"]]]},{"k":3515,"v":[[0,8,["H5157","(H853)"]],[8,11,["H1121"]],[11,12,["H310"]],[12,15,["H3423"]],[15,19,["H272"]],[19,24,["H5647"]],[24,26,["H5769"]],[26,30,["H251"]],[30,32,["H1121"]],[32,34,["H3478"]],[34,37,["H3808"]],[37,38,["H7287"]],[38,39,["H376"]],[39,41,["H251"]],[41,43,["H6531"]]]},{"k":3516,"v":[[0,2,["H3588"]],[2,4,["H3027","H1616"]],[4,6,["H8453"]],[6,8,["H5381"]],[8,9,["H5973"]],[9,13,["H251"]],[13,16,["H5973"]],[16,19,["H4134"]],[19,22,["H4376"]],[22,25,["H1616"]],[25,27,["H8453"]],[27,28,["H5973"]],[28,30,["H176"]],[30,33,["H6133"]],[33,36,["H1616"]],[36,37,["H4940"]]]},{"k":3517,"v":[[0,2,["H310"]],[2,5,["H4376"]],[5,8,["H1961"]],[8,10,["H1353"]],[10,11,["H259"]],[11,14,["H4480","H251"]],[14,16,["H1350"]],[16,17,[]]]},{"k":3518,"v":[[0,1,["H176"]],[1,3,["H1730"]],[3,4,["H176"]],[4,6,["H1730"]],[6,7,["H1121"]],[7,9,["H1350"]],[9,11,["H176"]],[11,15,["H4480","H7607"]],[15,17,["H1320"]],[17,22,["H4480","H4940"]],[22,24,["H1350"]],[24,26,["H176"]],[26,30,["H5381","H3027"]],[30,34,["H1350"]]]},{"k":3519,"v":[[0,4,["H2803"]],[4,5,["H5973"]],[5,8,["H7069"]],[8,12,["H4480","H8141"]],[12,16,["H4376"]],[16,19,["H5704"]],[19,21,["H8141"]],[21,23,["H3104"]],[23,26,["H3701"]],[26,29,["H4465"]],[29,31,["H1961"]],[31,35,["H4557"]],[35,37,["H8141"]],[37,41,["H3117"]],[41,45,["H7916"]],[45,48,["H1961"]],[48,49,["H5973"]],[49,50,[]]]},{"k":3520,"v":[[0,1,["H518"]],[1,4,["H5750"]],[4,5,["H7227"]],[5,6,["H8141"]],[6,9,["H6310"]],[9,14,["H7725"]],[14,19,["H1353"]],[19,23,["H4480","H3701"]],[23,27,["H4736"]],[27,28,[]]]},{"k":3521,"v":[[0,2,["H518"]],[2,4,["H7604"]],[4,6,["H4592"]],[6,7,["H8141"]],[7,8,["H5704"]],[8,10,["H8141"]],[10,12,["H3104"]],[12,16,["H2803"]],[16,21,["H6310"]],[21,23,["H8141"]],[23,28,["H7725","(H853)"]],[28,33,["H1353"]]]},{"k":3522,"v":[[0,4,["H8141","H8141"]],[4,6,["H7916"]],[6,9,["H1961"]],[9,10,["H5973"]],[10,16,["H3808"]],[16,20,["H7287","H6531"]],[20,24,["H5869"]]]},{"k":3523,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H1350"]],[6,8,["H428"]],[8,14,["H3318"]],[14,17,["H8141"]],[17,19,["H3104"]],[19,21,["H1931"]],[21,24,["H1121"]],[24,25,["H5973"]],[25,26,[]]]},{"k":3524,"v":[[0,1,["H3588"]],[1,5,["H1121"]],[5,7,["H3478"]],[7,9,["H5650"]],[9,10,["H1992"]],[10,13,["H5650"]],[13,14,["H834","(H853)"]],[14,17,["H3318"]],[17,21,["H4480","H776"]],[21,23,["H4714"]],[23,24,["H589"]],[24,27,["H3068"]],[27,29,["H430"]]]},{"k":3525,"v":[[0,3,["H6213"]],[3,5,["H3808"]],[5,6,["H457"]],[6,9,["H6459"]],[9,10,["H3808"]],[10,13,["H6965"]],[13,16,["H4676"]],[16,17,["H3808"]],[17,21,["H5414"]],[21,23,["H4906"]],[23,25,["H68"]],[25,28,["H776"]],[28,31,["H7812"]],[31,32,["H5921"]],[32,34,["H3588"]],[34,35,["H589"]],[35,38,["H3068"]],[38,40,["H430"]]]},{"k":3526,"v":[[0,3,["H8104","(H853)"]],[3,5,["H7676"]],[5,7,["H3372"]],[7,9,["H4720"]],[9,10,["H589"]],[10,13,["H3068"]]]},{"k":3527,"v":[[0,1,["H518"]],[1,3,["H1980"]],[3,6,["H2708"]],[6,8,["H8104"]],[8,10,["H4687"]],[10,12,["H6213"]],[12,13,[]]]},{"k":3528,"v":[[0,4,["H5414"]],[4,6,["H1653"]],[6,9,["H6256"]],[9,12,["H776"]],[12,14,["H5414"]],[14,16,["H2981"]],[16,19,["H6086"]],[19,22,["H7704"]],[22,24,["H5414"]],[24,26,["H6529"]]]},{"k":3529,"v":[[0,3,["H1786"]],[3,5,["H5381","(H853)"]],[5,8,["H1210"]],[8,11,["H1210"]],[11,13,["H5381","(H853)"]],[13,17,["H2233"]],[17,21,["H398"]],[21,23,["H3899"]],[23,26,["H7648"]],[26,28,["H3427"]],[28,31,["H776"]],[31,32,["H983"]]]},{"k":3530,"v":[[0,4,["H5414"]],[4,5,["H7965"]],[5,8,["H776"]],[8,13,["H7901"]],[13,15,["H369"]],[15,19,["H2729"]],[19,23,["H7673"]],[23,24,["H7451"]],[24,25,["H2416"]],[25,27,["H4480"]],[27,29,["H776"]],[29,30,["H3808"]],[30,33,["H2719"]],[33,34,["H5674"]],[34,37,["H776"]]]},{"k":3531,"v":[[0,4,["H7291","(H853)"]],[4,6,["H341"]],[6,10,["H5307"]],[10,11,["H6440"]],[11,15,["H2719"]]]},{"k":3532,"v":[[0,2,["H2568"]],[2,3,["H4480"]],[3,6,["H7291"]],[6,8,["H3967"]],[8,11,["H3967"]],[11,12,["H4480"]],[12,19,["H7291","H7233"]],[19,22,["H341"]],[22,24,["H5307"]],[24,25,["H6440"]],[25,29,["H2719"]]]},{"k":3533,"v":[[0,5,["H6437"]],[5,6,["H413"]],[6,11,["H6509","(H853)"]],[11,13,["H7235"]],[13,16,["H6965","(H853)"]],[16,18,["H1285"]],[18,19,["H854"]],[19,20,[]]]},{"k":3534,"v":[[0,4,["H398"]],[4,6,["H3465","H3462"]],[6,9,["H3318"]],[9,11,["H3465"]],[11,12,["H4480","H6440"]],[12,15,["H2319"]]]},{"k":3535,"v":[[0,4,["H5414"]],[4,6,["H4908"]],[6,7,["H8432"]],[7,11,["H5315"]],[11,13,["H3808"]],[13,14,["H1602"]],[14,15,[]]]},{"k":3536,"v":[[0,4,["H1980"]],[4,5,["H8432"]],[5,9,["H1961"]],[9,11,["H430"]],[11,13,["H859"]],[13,15,["H1961"]],[15,17,["H5971"]]]},{"k":3537,"v":[[0,1,["H589"]],[1,4,["H3068"]],[4,6,["H430"]],[6,7,["H834"]],[7,10,["H3318","(H853)"]],[10,14,["H4480","H776"]],[14,16,["H4714"]],[16,21,["H4480","H1961"]],[21,23,["H5650"]],[23,27,["H7665"]],[27,29,["H4133"]],[29,32,["H5923"]],[32,36,["H1980","(H853)"]],[36,37,["H6968"]]]},{"k":3538,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H8085"]],[6,11,["H3808"]],[11,12,["H6213","(H853)"]],[12,13,["H3605"]],[13,14,["H428"]],[14,15,["H4687"]]]},{"k":3539,"v":[[0,2,["H518"]],[2,5,["H3988"]],[5,7,["H2708"]],[7,9,["H518"]],[9,11,["H5315"]],[11,12,["H1602","(H853)"]],[12,14,["H4941"]],[14,19,["H1115"]],[19,20,["H6213","(H853)"]],[20,21,["H3605"]],[21,23,["H4687"]],[23,27,["H6565","(H853)"]],[27,29,["H1285"]]]},{"k":3540,"v":[[0,1,["H589"]],[1,2,["H637"]],[2,4,["H6213"]],[4,5,["H2063"]],[5,11,["H6485"]],[11,12,["H5921"]],[12,14,["H928","(H853)"]],[14,15,["H7829"]],[15,19,["H6920"]],[19,22,["H3615"]],[22,24,["H5869"]],[24,27,["H1727"]],[27,29,["H5315"]],[29,33,["H2232"]],[33,35,["H2233"]],[35,37,["H7385"]],[37,40,["H341"]],[40,42,["H398"]],[42,43,[]]]},{"k":3541,"v":[[0,4,["H5414"]],[4,6,["H6440"]],[6,13,["H5062"]],[13,14,["H6440"]],[14,16,["H341"]],[16,19,["H8130"]],[19,22,["H7287"]],[22,28,["H5127"]],[28,30,["H369"]],[30,31,["H7291"]],[31,32,[]]]},{"k":3542,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,7,["H5704"]],[7,9,["H428"]],[9,10,["H8085"]],[10,16,["H3256"]],[16,19,["H7651"]],[19,20,["H3254"]],[20,21,["H5921"]],[21,23,["H2403"]]]},{"k":3543,"v":[[0,4,["H7665","(H853)"]],[4,6,["H1347"]],[6,9,["H5797"]],[9,13,["H5414","(H853)"]],[13,15,["H8064"]],[15,17,["H1270"]],[17,20,["H776"]],[20,22,["H5154"]]]},{"k":3544,"v":[[0,3,["H3581"]],[3,6,["H8552"]],[6,8,["H7385"]],[8,11,["H776"]],[11,13,["H3808"]],[13,14,["H5414","(H853)"]],[14,16,["H2981"]],[16,17,["H3808"]],[17,20,["H6086"]],[20,23,["H776"]],[23,24,["H5414"]],[24,26,["H6529"]]]},{"k":3545,"v":[[0,2,["H518"]],[2,4,["H1980"]],[4,5,["H7147"]],[5,6,["H5973"]],[6,9,["H14"]],[9,10,["H3808"]],[10,11,["H8085"]],[11,19,["H3254","H7651"]],[19,20,["H4347"]],[20,21,["H5921"]],[21,26,["H2403"]]]},{"k":3546,"v":[[0,4,["H7971","(H853)"]],[4,5,["H7704"]],[5,6,["H2416"]],[6,15,["H7921","(H853)"]],[15,17,["H3772","(H853)"]],[17,19,["H929"]],[19,25,["H4591","(H853)"]],[25,29,["H1870"]],[29,32,["H8074"]]]},{"k":3547,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,7,["H3256"]],[7,12,["H428"]],[12,15,["H1980"]],[15,16,["H7147"]],[16,17,["H5973"]],[17,18,[]]]},{"k":3548,"v":[[0,3,["H589"]],[3,4,["H637"]],[4,5,["H1980"]],[5,6,["H7147"]],[6,7,["H5973"]],[7,11,["H5221"]],[11,13,["H1571"]],[13,15,["H7651"]],[15,16,["H5921"]],[16,18,["H2403"]]]},{"k":3549,"v":[[0,4,["H935"]],[4,6,["H2719"]],[6,7,["H5921"]],[7,11,["H5358"]],[11,13,["H5359"]],[13,16,["H1285"]],[16,22,["H622"]],[22,23,["H413"]],[23,25,["H5892"]],[25,28,["H7971"]],[28,30,["H1698"]],[30,31,["H8432"]],[31,37,["H5414"]],[37,40,["H3027"]],[40,43,["H341"]]]},{"k":3550,"v":[[0,5,["H7665"]],[5,7,["H4294"]],[7,10,["H3899"]],[10,11,["H6235"]],[11,12,["H802"]],[12,14,["H644"]],[14,16,["H3899"]],[16,18,["H259"]],[18,19,["H8574"]],[19,27,["H7725","H3899"]],[27,29,["H4948"]],[29,33,["H398"]],[33,35,["H3808"]],[35,37,["H7646"]]]},{"k":3551,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,8,["H2063"]],[8,9,["H8085"]],[9,13,["H1980"]],[13,14,["H7147"]],[14,15,["H5973"]],[15,16,[]]]},{"k":3552,"v":[[0,4,["H1980"]],[4,5,["H7147"]],[5,6,["H5973"]],[6,10,["H2534"]],[10,13,["H637"]],[13,14,["H589"]],[14,16,["H3256"]],[16,19,["H7651"]],[19,20,["H5921"]],[20,22,["H2403"]]]},{"k":3553,"v":[[0,4,["H398"]],[4,6,["H1320"]],[6,9,["H1121"]],[9,12,["H1320"]],[12,15,["H1323"]],[15,18,["H398"]]]},{"k":3554,"v":[[0,4,["H8045","(H853)"]],[4,7,["H1116"]],[7,10,["H3772","(H853)"]],[10,12,["H2553"]],[12,14,["H5414","(H853)"]],[14,16,["H6297"]],[16,17,["H5921"]],[17,19,["H6297"]],[19,22,["H1544"]],[22,25,["H5315"]],[25,27,["H1602"]],[27,28,[]]]},{"k":3555,"v":[[0,4,["H5414","(H853)"]],[4,6,["H5892"]],[6,7,["H2723"]],[7,13,["H8074","(H853)","H4720"]],[13,17,["H3808"]],[17,18,["H7306"]],[18,20,["H7381"]],[20,24,["H5207"]]]},{"k":3556,"v":[[0,2,["H589"]],[2,8,["H8074","(H853)","H776"]],[8,11,["H341"]],[11,13,["H3427"]],[13,17,["H8074"]],[17,18,["H5921"]],[18,19,[]]]},{"k":3557,"v":[[0,4,["H2219"]],[4,8,["H1471"]],[8,12,["H7324"]],[12,14,["H2719"]],[14,15,["H310"]],[15,19,["H776"]],[19,21,["H1961"]],[21,22,["H8077"]],[22,25,["H5892"]],[25,26,["H2723"]]]},{"k":3558,"v":[[0,1,["H227"]],[1,4,["H776"]],[4,5,["H7521","(H853)"]],[5,7,["H7676"]],[7,10,["H3605","H3117"]],[10,13,["H8074"]],[13,15,["H859"]],[15,19,["H341"]],[19,20,["H776"]],[20,22,["H227"]],[22,25,["H776"]],[25,26,["H7673"]],[26,28,["H7521","(H853)"]],[28,30,["H7676"]]]},{"k":3559,"v":[[0,3,["H3605","H3117"]],[3,6,["H8074"]],[6,9,["H7673","(H853)"]],[9,10,["H834"]],[10,13,["H3808"]],[13,14,["H7673"]],[14,17,["H7676"]],[17,20,["H3427"]],[20,21,["H5921"]],[21,22,[]]]},{"k":3560,"v":[[0,6,["H7604"]],[6,12,["H935"]],[12,14,["H4816"]],[14,17,["H3824"]],[17,20,["H776"]],[20,23,["H341"]],[23,26,["H6963"]],[26,29,["H5086"]],[29,30,["H5929"]],[30,32,["H7291"]],[32,37,["H5127"]],[37,39,["H4499"]],[39,42,["H2719"]],[42,46,["H5307"]],[46,48,["H369"]],[48,49,["H7291"]]]},{"k":3561,"v":[[0,4,["H3782"]],[4,5,["H376"]],[5,7,["H251"]],[7,11,["H4480","H6440"]],[11,13,["H2719"]],[13,15,["H369"]],[15,16,["H7291"]],[16,20,["H1961"]],[20,21,["H3808"]],[21,24,["H8617"]],[24,25,["H6440"]],[25,27,["H341"]]]},{"k":3562,"v":[[0,4,["H6"]],[4,7,["H1471"]],[7,10,["H776"]],[10,13,["H341"]],[13,17,["H398","(H853)"]]]},{"k":3563,"v":[[0,5,["H7604"]],[5,10,["H4743"]],[10,13,["H5771"]],[13,16,["H341"]],[16,17,["H776"]],[17,19,["H637"]],[19,22,["H5771"]],[22,25,["H1"]],[25,29,["H4743"]],[29,30,["H854"]],[30,31,[]]]},{"k":3564,"v":[[0,4,["H3034","(H853)"]],[4,6,["H5771"]],[6,9,["H5771"]],[9,12,["H1"]],[12,15,["H4604"]],[15,16,["H834"]],[16,18,["H4603"]],[18,22,["H834"]],[22,23,["H637"]],[23,26,["H1980"]],[26,27,["H7147"]],[27,28,["H5973"]],[28,29,[]]]},{"k":3565,"v":[[0,3,["H589"]],[3,4,["H637"]],[4,6,["H1980"]],[6,7,["H7147"]],[7,8,["H5973"]],[8,12,["H935"]],[12,16,["H776"]],[16,19,["H341"]],[19,20,["H176"]],[20,21,["H227"]],[21,23,["H6189"]],[23,24,["H3824"]],[24,26,["H3665"]],[26,29,["H227"]],[29,30,["H7521"]],[30,31,["(H853)"]],[31,36,["H5771"]]]},{"k":3566,"v":[[0,4,["H2142","(H853)"]],[4,6,["H1285"]],[6,8,["H3290"]],[8,10,["H637","(H853)"]],[10,12,["H1285"]],[12,14,["H3327"]],[14,16,["H637","(H853)"]],[16,18,["H1285"]],[18,20,["H85"]],[20,23,["H2142"]],[23,27,["H2142"]],[27,29,["H776"]]]},{"k":3567,"v":[[0,2,["H776"]],[2,6,["H5800"]],[6,7,["H4480"]],[7,11,["H7521","(H853)"]],[11,13,["H7676"]],[13,17,["H8074"]],[17,18,["H4480"]],[18,21,["H1992"]],[21,23,["H7521","(H853)"]],[23,29,["H5771"]],[29,30,["H3282"]],[30,32,["H3282"]],[32,34,["H3988"]],[34,36,["H4941"]],[36,40,["H5315"]],[40,41,["H1602"]],[41,43,["H2708"]]]},{"k":3568,"v":[[0,2,["H637"]],[2,5,["H1571","H2063"]],[5,8,["H1961"]],[8,11,["H776"]],[11,14,["H341"]],[14,17,["H3808"]],[17,20,["H3988"]],[20,21,["H3808"]],[21,24,["H1602"]],[24,29,["H3615"]],[29,32,["H6565"]],[32,34,["H1285"]],[34,35,["H854"]],[35,37,["H3588"]],[37,38,["H589"]],[38,41,["H3068"]],[41,43,["H430"]]]},{"k":3569,"v":[[0,7,["H2142"]],[7,9,["H1285"]],[9,12,["H7223"]],[12,13,["H834","(H853)"]],[13,16,["H3318"]],[16,20,["H4480","H776"]],[20,22,["H4714"]],[22,25,["H5869"]],[25,28,["H1471"]],[28,32,["H1961"]],[32,34,["H430"]],[34,35,["H589"]],[35,38,["H3068"]]]},{"k":3570,"v":[[0,1,["H428"]],[1,4,["H2706"]],[4,6,["H4941"]],[6,8,["H8451"]],[8,9,["H834"]],[9,11,["H3068"]],[11,12,["H5414"]],[12,13,["H996"]],[13,17,["H1121"]],[17,19,["H3478"]],[19,21,["H2022"]],[21,22,["H5514"]],[22,25,["H3027"]],[25,27,["H4872"]]]},{"k":3571,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3572,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H3588"]],[11,13,["H376"]],[13,17,["H6381"]],[17,18,["H5088"]],[18,20,["H5315"]],[20,25,["H3068"]],[25,28,["H6187"]]]},{"k":3573,"v":[[0,3,["H6187"]],[3,5,["H1961"]],[5,8,["H2145"]],[8,12,["H4480","H1121","H6242","H8141"]],[12,14,["H5704"]],[14,15,["H8346"]],[15,16,["H8141"]],[16,17,["H1121"]],[17,20,["H6187"]],[20,22,["H1961"]],[22,23,["H2572"]],[23,24,["H8255"]],[24,26,["H3701"]],[26,29,["H8255"]],[29,32,["H6944"]]]},{"k":3574,"v":[[0,2,["H518"]],[2,3,["H1931"]],[3,6,["H5347"]],[6,9,["H6187"]],[9,11,["H1961"]],[11,12,["H7970"]],[12,13,["H8255"]]]},{"k":3575,"v":[[0,2,["H518"]],[2,8,["H4480","H1121","H2568","H8141"]],[8,10,["H5704"]],[10,11,["H6242"]],[11,12,["H8141"]],[12,13,["H1121"]],[13,16,["H6187"]],[16,18,["H1961"]],[18,21,["H2145"]],[21,22,["H6242"]],[22,23,["H8255"]],[23,27,["H5347"]],[27,28,["H6235"]],[28,29,["H8255"]]]},{"k":3576,"v":[[0,2,["H518"]],[2,8,["H4480","H1121","H2320"]],[8,10,["H5704"]],[10,11,["H2568"]],[11,12,["H8141"]],[12,13,["H1121"]],[13,16,["H6187"]],[16,18,["H1961"]],[18,21,["H2145"]],[21,22,["H2568"]],[22,23,["H8255"]],[23,25,["H3701"]],[25,29,["H5347"]],[29,31,["H6187"]],[31,34,["H7969"]],[34,35,["H8255"]],[35,37,["H3701"]]]},{"k":3577,"v":[[0,2,["H518"]],[2,8,["H4480","H1121","H8346","H8141"]],[8,10,["H4605"]],[10,11,["H518"]],[11,15,["H2145"]],[15,18,["H6187"]],[18,20,["H1961"]],[20,21,["H2568","H6240"]],[21,22,["H8255"]],[22,26,["H5347"]],[26,27,["H6235"]],[27,28,["H8255"]]]},{"k":3578,"v":[[0,2,["H518"]],[2,3,["H1931"]],[3,5,["H4134"]],[5,8,["H4480","H6187"]],[8,13,["H5975"]],[13,14,["H6440"]],[14,16,["H3548"]],[16,19,["H3548"]],[19,21,["H6186"]],[21,24,["H5921","H6310","H834"]],[24,26,["H5381","H3027"]],[26,28,["H5087"]],[28,31,["H3548"]],[31,32,["H6186"]],[32,33,[]]]},{"k":3579,"v":[[0,2,["H518"]],[2,6,["H929"]],[6,7,["H834","H4480"]],[7,9,["H7126"]],[9,11,["H7133"]],[11,14,["H3068"]],[14,15,["H3605"]],[15,16,["H834"]],[16,19,["H5414"]],[19,20,["H4480"]],[20,24,["H3068"]],[24,26,["H1961"]],[26,27,["H6944"]]]},{"k":3580,"v":[[0,3,["H3808"]],[3,4,["H2498"]],[4,6,["H3808"]],[6,7,["H4171"]],[7,10,["H2896"]],[10,13,["H7451"]],[13,14,["H176"]],[14,16,["H7451"]],[16,19,["H2896"]],[19,21,["H518"]],[21,26,["H4171","H4171"]],[26,27,["H929"]],[27,29,["H929"]],[29,31,["H1931"]],[31,34,["H8545"]],[34,37,["H1961"]],[37,38,["H6944"]]]},{"k":3581,"v":[[0,2,["H518"]],[2,5,["H3605"]],[5,6,["H2931"]],[6,7,["H929"]],[7,9,["H834","H4480"]],[9,12,["H3808"]],[12,13,["H7126"]],[13,15,["H7133"]],[15,18,["H3068"]],[18,22,["H5975","(H853)"]],[22,24,["H929"]],[24,25,["H6440"]],[25,27,["H3548"]]]},{"k":3582,"v":[[0,3,["H3548"]],[3,5,["H6186"]],[5,7,["H996"]],[7,10,["H2896"]],[10,12,["H7451"]],[12,15,["H6187"]],[15,20,["H3548"]],[20,21,["H3651"]],[21,24,["H1961"]]]},{"k":3583,"v":[[0,2,["H518"]],[2,7,["H1350","H1350"]],[7,12,["H3254"]],[12,14,["H2549"]],[14,17,["H5921"]],[17,19,["H6187"]]]},{"k":3584,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,6,["H6942","(H853)"]],[6,8,["H1004"]],[8,11,["H6944"]],[11,14,["H3068"]],[14,17,["H3548"]],[17,19,["H6186"]],[19,21,["H996"]],[21,24,["H2896"]],[24,26,["H7451"]],[26,27,["H834"]],[27,29,["H3548"]],[29,31,["H6186"]],[31,33,["H3651"]],[33,36,["H6965"]]]},{"k":3585,"v":[[0,2,["H518"]],[2,5,["H6942"]],[5,8,["H1350","(H853)"]],[8,10,["H1004"]],[10,14,["H3254"]],[14,16,["H2549"]],[16,20,["H3701"]],[20,23,["H6187"]],[23,24,["H5921"]],[24,29,["H1961"]],[29,30,[]]]},{"k":3586,"v":[[0,2,["H518"]],[2,4,["H376"]],[4,6,["H6942"]],[6,9,["H3068"]],[9,14,["H4480","H7704"]],[14,17,["H272"]],[17,20,["H6187"]],[20,22,["H1961"]],[22,24,["H6310"]],[24,26,["H2233"]],[26,29,["H2563"]],[29,31,["H8184"]],[31,32,["H2233"]],[32,37,["H2572"]],[37,38,["H8255"]],[38,40,["H3701"]]]},{"k":3587,"v":[[0,1,["H518"]],[1,3,["H6942"]],[3,5,["H7704"]],[5,8,["H4480","H8141"]],[8,10,["H3104"]],[10,14,["H6187"]],[14,17,["H6965"]]]},{"k":3588,"v":[[0,2,["H518"]],[2,4,["H6942"]],[4,6,["H7704"]],[6,7,["H310"]],[7,9,["H3104"]],[9,12,["H3548"]],[12,14,["H2803"]],[14,16,["(H853)"]],[16,18,["H3701"]],[18,20,["H5921","H6310"]],[20,22,["H8141"]],[22,24,["H3498"]],[24,26,["H5704"]],[26,28,["H8141"]],[28,31,["H3104"]],[31,36,["H1639"]],[36,39,["H4480","H6187"]]]},{"k":3589,"v":[[0,2,["H518"]],[2,5,["H6942","(H853)"]],[5,7,["H7704"]],[7,12,["H1350","H1350"]],[12,17,["H3254"]],[17,19,["H2549"]],[19,23,["H3701"]],[23,26,["H6187"]],[26,27,["H5921"]],[27,33,["H6965"]],[33,35,[]]]},{"k":3590,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H1350","(H853)"]],[6,8,["H7704"]],[8,10,["H518"]],[10,13,["H4376","(H853)"]],[13,15,["H7704"]],[15,17,["H312"]],[17,18,["H376"]],[18,21,["H3808"]],[21,23,["H1350"]],[23,25,["H5750"]]]},{"k":3591,"v":[[0,3,["H7704"]],[3,7,["H3318"]],[7,10,["H3104"]],[10,12,["H1961"]],[12,13,["H6944"]],[13,16,["H3068"]],[16,19,["H7704"]],[19,20,["H2764"]],[20,22,["H272"]],[22,25,["H1961"]],[25,27,["H3548"]]]},{"k":3592,"v":[[0,2,["H518"]],[2,5,["H6942"]],[5,8,["H3068","(H853)"]],[8,10,["H7704"]],[10,14,["H4736"]],[14,15,["H834"]],[15,17,["H3808"]],[17,20,["H4480","H7704"]],[20,23,["H272"]]]},{"k":3593,"v":[[0,3,["H3548"]],[3,5,["H2803"]],[5,7,["(H853)"]],[7,9,["H4373"]],[9,12,["H6187"]],[12,14,["H5704"]],[14,16,["H8141"]],[16,19,["H3104"]],[19,23,["H5414","(H853)"]],[23,25,["H6187"]],[25,27,["H1931"]],[27,28,["H3117"]],[28,32,["H6944"]],[32,35,["H3068"]]]},{"k":3594,"v":[[0,3,["H8141"]],[3,6,["H3104"]],[6,8,["H7704"]],[8,10,["H7725"]],[10,12,["H834"]],[12,14,["H4480","H854"]],[14,17,["H7069"]],[17,22,["H834"]],[22,24,["H272"]],[24,27,["H776"]],[27,29,[]]]},{"k":3595,"v":[[0,2,["H3605"]],[2,4,["H6187"]],[4,6,["H1961"]],[6,10,["H8255"]],[10,13,["H6944"]],[13,14,["H6242"]],[14,15,["H1626"]],[15,17,["H1961"]],[17,19,["H8255"]]]},{"k":3596,"v":[[0,1,["H389"]],[1,3,["H1060"]],[3,6,["H929"]],[6,7,["H834"]],[7,11,["H3068"]],[11,12,["H1069"]],[12,13,["H3808"]],[13,14,["H376"]],[14,16,["H6942"]],[16,18,["H518"]],[18,21,["H7794"]],[21,22,["H518"]],[22,23,["H7716"]],[23,24,["H1931"]],[24,27,["H3068"]]]},{"k":3597,"v":[[0,2,["H518"]],[2,7,["H2931"]],[7,8,["H929"]],[8,12,["H6299"]],[12,17,["H6187"]],[17,20,["H3254"]],[20,22,["H2549"]],[22,26,["H5921"]],[26,28,["H518"]],[28,31,["H3808"]],[31,32,["H1350"]],[32,37,["H4376"]],[37,41,["H6187"]]]},{"k":3598,"v":[[0,1,["H389"]],[1,2,["H3808","H3605"]],[2,4,["H2764"]],[4,5,["H834"]],[5,7,["H376"]],[7,9,["H2763"]],[9,12,["H3068"]],[12,14,["H4480","H3605"]],[14,15,["H834"]],[15,20,["H4480","H120"]],[20,22,["H929"]],[22,26,["H4480","H7704"]],[26,29,["H272"]],[29,32,["H4376"]],[32,34,["H1350"]],[34,35,["H3605"]],[35,37,["H2764"]],[37,40,["H6944","H6944"]],[40,43,["H3068"]]]},{"k":3599,"v":[[0,1,["H3808","H3605"]],[1,2,["H2764"]],[2,3,["H834"]],[3,6,["H2763"]],[6,7,["H4480"]],[7,8,["H120"]],[8,11,["H6299"]],[11,18,["H4191","H4191"]]]},{"k":3600,"v":[[0,2,["H3605"]],[2,4,["H4643"]],[4,7,["H776"]],[7,11,["H4480","H2233"]],[11,14,["H776"]],[14,18,["H4480","H6529"]],[18,21,["H6086"]],[21,24,["H3068"]],[24,27,["H6944"]],[27,30,["H3068"]]]},{"k":3601,"v":[[0,2,["H518"]],[2,4,["H376"]],[4,8,["H1350","H1350"]],[8,12,["H4480","H4643"]],[12,15,["H3254"]],[15,16,["H5921"]],[16,18,["H2549"]],[18,20,[]]]},{"k":3602,"v":[[0,2,["H3605"]],[2,4,["H4643"]],[4,7,["H1241"]],[7,11,["H6629"]],[11,14,["H3605","H834"]],[14,15,["H5674"]],[15,16,["H8478"]],[16,18,["H7626"]],[18,20,["H6224"]],[20,22,["H1961"]],[22,23,["H6944"]],[23,26,["H3068"]]]},{"k":3603,"v":[[0,3,["H3808"]],[3,4,["H1239"]],[4,5,["H996"]],[5,8,["H2896"]],[8,10,["H7451"]],[10,11,["H3808"]],[11,14,["H4171"]],[14,17,["H518"]],[17,22,["H4171","H4171"]],[22,25,["H1931"]],[25,28,["H8545"]],[28,31,["H1961"]],[31,32,["H6944"]],[32,35,["H3808"]],[35,37,["H1350"]]]},{"k":3604,"v":[[0,1,["H428"]],[1,4,["H4687"]],[4,5,["H834"]],[5,7,["H3068"]],[7,8,["H6680","(H853)"]],[8,9,["H4872"]],[9,10,["H413"]],[10,12,["H1121"]],[12,14,["H3478"]],[14,16,["H2022"]],[16,17,["H5514"]]]},{"k":3605,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H4057"]],[9,11,["H5514"]],[11,14,["H168"]],[14,17,["H4150"]],[17,20,["H259"]],[20,24,["H8145"]],[24,25,["H2320"]],[25,28,["H8145"]],[28,29,["H8141"]],[29,34,["H3318"]],[34,37,["H4480","H776"]],[37,39,["H4714"]],[39,40,["H559"]]]},{"k":3606,"v":[[0,1,["H5375"]],[1,2,["(H853)"]],[2,4,["H7218"]],[4,6,["H3605"]],[6,8,["H5712"]],[8,11,["H1121"]],[11,13,["H3478"]],[13,16,["H4940"]],[16,19,["H1004"]],[19,22,["H1"]],[22,25,["H4557"]],[25,28,["H8034"]],[28,29,["H3605"]],[29,30,["H2145"]],[30,33,["H1538"]]]},{"k":3607,"v":[[0,2,["H6242"]],[2,3,["H8141"]],[3,4,["H4480","H1121"]],[4,6,["H4605"]],[6,7,["H3605"]],[7,13,["H3318"]],[13,15,["H6635"]],[15,17,["H3478"]],[17,18,["H859"]],[18,20,["H175"]],[20,22,["H6485"]],[22,26,["H6635"]]]},{"k":3608,"v":[[0,2,["H854"]],[2,6,["H1961"]],[6,8,["H376"]],[8,10,["H376"]],[10,11,["H4294"]],[11,13,["H376"]],[13,14,["H7218"]],[14,17,["H1004"]],[17,20,["H1"]]]},{"k":3609,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H376"]],[8,9,["H834"]],[9,11,["H5975"]],[11,12,["H854"]],[12,18,["H7205"]],[18,19,["H468"]],[19,21,["H1121"]],[21,23,["H7707"]]]},{"k":3610,"v":[[0,2,["H8095"]],[2,3,["H8017"]],[3,5,["H1121"]],[5,7,["H6701"]]]},{"k":3611,"v":[[0,2,["H3063"]],[2,3,["H5177"]],[3,5,["H1121"]],[5,7,["H5992"]]]},{"k":3612,"v":[[0,2,["H3485"]],[2,3,["H5417"]],[3,5,["H1121"]],[5,7,["H6686"]]]},{"k":3613,"v":[[0,2,["H2074"]],[2,3,["H446"]],[3,5,["H1121"]],[5,7,["H2497"]]]},{"k":3614,"v":[[0,3,["H1121"]],[3,5,["H3130"]],[5,7,["H669"]],[7,8,["H476"]],[8,10,["H1121"]],[10,12,["H5989"]],[12,14,["H4519"]],[14,15,["H1583"]],[15,17,["H1121"]],[17,19,["H6301"]]]},{"k":3615,"v":[[0,2,["H1144"]],[2,3,["H27"]],[3,5,["H1121"]],[5,7,["H1441"]]]},{"k":3616,"v":[[0,2,["H1835"]],[2,3,["H295"]],[3,5,["H1121"]],[5,7,["H5996"]]]},{"k":3617,"v":[[0,2,["H836"]],[2,3,["H6295"]],[3,5,["H1121"]],[5,7,["H5918"]]]},{"k":3618,"v":[[0,2,["H1410"]],[2,3,["H460"]],[3,5,["H1121"]],[5,7,["H1845"]]]},{"k":3619,"v":[[0,2,["H5321"]],[2,3,["H299"]],[3,5,["H1121"]],[5,7,["H5881"]]]},{"k":3620,"v":[[0,1,["H428"]],[1,4,["H7121"]],[4,7,["H5712"]],[7,8,["H5387"]],[8,11,["H4294"]],[11,14,["H1"]],[14,15,["H7218"]],[15,17,["H505"]],[17,19,["H3478"]]]},{"k":3621,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,5,["H3947","(H853)"]],[5,6,["H428"]],[6,7,["H376"]],[7,8,["H834"]],[8,10,["H5344"]],[10,13,["H8034"]]]},{"k":3622,"v":[[0,3,["H6950"]],[3,4,["H3605"]],[4,6,["H5712"]],[6,10,["H259"]],[10,14,["H8145"]],[14,15,["H2320"]],[15,20,["H3205"]],[20,21,["H5921"]],[21,23,["H4940"]],[23,26,["H1004"]],[26,29,["H1"]],[29,33,["H4557"]],[33,36,["H8034"]],[36,38,["H6242"]],[38,39,["H8141"]],[39,40,["H4480","H1121"]],[40,42,["H4605"]],[42,45,["H1538"]]]},{"k":3623,"v":[[0,1,["H834"]],[1,3,["H3068"]],[3,4,["H6680","(H853)"]],[4,5,["H4872"]],[5,8,["H6485"]],[8,12,["H4057"]],[12,14,["H5514"]]]},{"k":3624,"v":[[0,3,["H1121"]],[3,5,["H7205"]],[5,6,["H3478"]],[6,8,["H1060"]],[8,11,["H8435"]],[11,14,["H4940"]],[14,17,["H1004"]],[17,20,["H1"]],[20,24,["H4557"]],[24,27,["H8034"]],[27,30,["H1538"]],[30,31,["H3605"]],[31,32,["H2145"]],[32,34,["H6242"]],[34,35,["H8141"]],[35,36,["H4480","H1121"]],[36,38,["H4605"]],[38,39,["H3605"]],[39,45,["H3318"]],[45,47,["H6635"]]]},{"k":3625,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H7205"]],[12,14,["H705"]],[14,16,["H8337"]],[16,17,["H505"]],[17,19,["H2568"]],[19,20,["H3967"]]]},{"k":3626,"v":[[0,3,["H1121"]],[3,5,["H8095"]],[5,8,["H8435"]],[8,11,["H4940"]],[11,14,["H1004"]],[14,17,["H1"]],[17,21,["H6485"]],[21,27,["H4557"]],[27,30,["H8034"]],[30,33,["H1538"]],[33,34,["H3605"]],[34,35,["H2145"]],[35,37,["H6242"]],[37,38,["H8141"]],[38,39,["H4480","H1121"]],[39,41,["H4605"]],[41,42,["H3605"]],[42,48,["H3318"]],[48,50,["H6635"]]]},{"k":3627,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H8095"]],[12,14,["H2572"]],[14,16,["H8672"]],[16,17,["H505"]],[17,19,["H7969"]],[19,20,["H3967"]]]},{"k":3628,"v":[[0,3,["H1121"]],[3,5,["H1410"]],[5,8,["H8435"]],[8,11,["H4940"]],[11,14,["H1004"]],[14,17,["H1"]],[17,21,["H4557"]],[21,24,["H8034"]],[24,26,["H6242"]],[26,27,["H8141"]],[27,28,["H4480","H1121"]],[28,30,["H4605"]],[30,31,["H3605"]],[31,37,["H3318"]],[37,39,["H6635"]]]},{"k":3629,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H1410"]],[12,14,["H705"]],[14,16,["H2568"]],[16,17,["H505"]],[17,18,["H8337"]],[18,19,["H3967"]],[19,21,["H2572"]]]},{"k":3630,"v":[[0,3,["H1121"]],[3,5,["H3063"]],[5,8,["H8435"]],[8,11,["H4940"]],[11,14,["H1004"]],[14,17,["H1"]],[17,21,["H4557"]],[21,24,["H8034"]],[24,26,["H6242"]],[26,27,["H8141"]],[27,28,["H4480","H1121"]],[28,30,["H4605"]],[30,31,["H3605"]],[31,37,["H3318"]],[37,39,["H6635"]]]},{"k":3631,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H3063"]],[12,16,["H7657","H702"]],[16,17,["H505"]],[17,19,["H8337"]],[19,20,["H3967"]]]},{"k":3632,"v":[[0,3,["H1121"]],[3,5,["H3485"]],[5,8,["H8435"]],[8,11,["H4940"]],[11,14,["H1004"]],[14,17,["H1"]],[17,21,["H4557"]],[21,24,["H8034"]],[24,26,["H6242"]],[26,27,["H8141"]],[27,28,["H4480","H1121"]],[28,30,["H4605"]],[30,31,["H3605"]],[31,37,["H3318"]],[37,39,["H6635"]]]},{"k":3633,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H3485"]],[12,14,["H2572"]],[14,16,["H702"]],[16,17,["H505"]],[17,19,["H702"]],[19,20,["H3967"]]]},{"k":3634,"v":[[0,3,["H1121"]],[3,5,["H2074"]],[5,8,["H8435"]],[8,11,["H4940"]],[11,14,["H1004"]],[14,17,["H1"]],[17,21,["H4557"]],[21,24,["H8034"]],[24,26,["H6242"]],[26,27,["H8141"]],[27,28,["H4480","H1121"]],[28,30,["H4605"]],[30,31,["H3605"]],[31,37,["H3318"]],[37,39,["H6635"]]]},{"k":3635,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H2074"]],[12,14,["H2572"]],[14,16,["H7651"]],[16,17,["H505"]],[17,19,["H702"]],[19,20,["H3967"]]]},{"k":3636,"v":[[0,3,["H1121"]],[3,5,["H3130"]],[5,9,["H1121"]],[9,11,["H669"]],[11,14,["H8435"]],[14,17,["H4940"]],[17,20,["H1004"]],[20,23,["H1"]],[23,27,["H4557"]],[27,30,["H8034"]],[30,32,["H6242"]],[32,33,["H8141"]],[33,34,["H4480","H1121"]],[34,36,["H4605"]],[36,37,["H3605"]],[37,43,["H3318"]],[43,45,["H6635"]]]},{"k":3637,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H669"]],[12,14,["H705"]],[14,15,["H505"]],[15,17,["H2568"]],[17,18,["H3967"]]]},{"k":3638,"v":[[0,3,["H1121"]],[3,5,["H4519"]],[5,8,["H8435"]],[8,11,["H4940"]],[11,14,["H1004"]],[14,17,["H1"]],[17,21,["H4557"]],[21,24,["H8034"]],[24,26,["H6242"]],[26,27,["H8141"]],[27,28,["H4480","H1121"]],[28,30,["H4605"]],[30,31,["H3605"]],[31,37,["H3318"]],[37,39,["H6635"]]]},{"k":3639,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H4519"]],[12,14,["H7970"]],[14,16,["H8147"]],[16,17,["H505"]],[17,20,["H3967"]]]},{"k":3640,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,8,["H8435"]],[8,11,["H4940"]],[11,14,["H1004"]],[14,17,["H1"]],[17,21,["H4557"]],[21,24,["H8034"]],[24,26,["H6242"]],[26,27,["H8141"]],[27,28,["H4480","H1121"]],[28,30,["H4605"]],[30,31,["H3605"]],[31,37,["H3318"]],[37,39,["H6635"]]]},{"k":3641,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H1144"]],[12,14,["H7970"]],[14,16,["H2568"]],[16,17,["H505"]],[17,19,["H702"]],[19,20,["H3967"]]]},{"k":3642,"v":[[0,3,["H1121"]],[3,5,["H1835"]],[5,8,["H8435"]],[8,11,["H4940"]],[11,14,["H1004"]],[14,17,["H1"]],[17,21,["H4557"]],[21,24,["H8034"]],[24,26,["H6242"]],[26,27,["H8141"]],[27,28,["H4480","H1121"]],[28,30,["H4605"]],[30,31,["H3605"]],[31,37,["H3318"]],[37,39,["H6635"]]]},{"k":3643,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H1835"]],[12,14,["H8346"]],[14,16,["H8147"]],[16,17,["H505"]],[17,19,["H7651"]],[19,20,["H3967"]]]},{"k":3644,"v":[[0,3,["H1121"]],[3,5,["H836"]],[5,8,["H8435"]],[8,11,["H4940"]],[11,14,["H1004"]],[14,17,["H1"]],[17,21,["H4557"]],[21,24,["H8034"]],[24,26,["H6242"]],[26,27,["H8141"]],[27,28,["H4480","H1121"]],[28,30,["H4605"]],[30,31,["H3605"]],[31,37,["H3318"]],[37,39,["H6635"]]]},{"k":3645,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H836"]],[12,14,["H705"]],[14,16,["H259"]],[16,17,["H505"]],[17,19,["H2568"]],[19,20,["H3967"]]]},{"k":3646,"v":[[0,3,["H1121"]],[3,5,["H5321"]],[5,8,["H8435"]],[8,11,["H4940"]],[11,14,["H1004"]],[14,17,["H1"]],[17,21,["H4557"]],[21,24,["H8034"]],[24,26,["H6242"]],[26,27,["H8141"]],[27,28,["H4480","H1121"]],[28,30,["H4605"]],[30,31,["H3605"]],[31,37,["H3318"]],[37,39,["H6635"]]]},{"k":3647,"v":[[0,4,["H6485"]],[4,10,["H4294"]],[10,12,["H5321"]],[12,14,["H2572"]],[14,16,["H7969"]],[16,17,["H505"]],[17,19,["H702"]],[19,20,["H3967"]]]},{"k":3648,"v":[[0,1,["H428"]],[1,6,["H6485"]],[6,7,["H834"]],[7,8,["H4872"]],[8,10,["H175"]],[10,11,["H6485"]],[11,14,["H5387"]],[14,16,["H3478"]],[16,18,["H8147","H6240"]],[18,19,["H376"]],[19,20,["H376"]],[20,21,["H259"]],[21,22,["H1961"]],[22,25,["H1004"]],[25,28,["H1"]]]},{"k":3649,"v":[[0,2,["H1961"]],[2,3,["H3605"]],[3,7,["H6485"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,15,["H1004"]],[15,18,["H1"]],[18,20,["H6242"]],[20,21,["H8141"]],[21,22,["H4480","H1121"]],[22,24,["H4605"]],[24,25,["H3605"]],[25,31,["H3318"]],[31,33,["H6635"]],[33,35,["H3478"]]]},{"k":3650,"v":[[0,2,["H3605"]],[2,6,["H6485"]],[6,7,["H1961"]],[7,8,["H8337"]],[8,9,["H3967"]],[9,10,["H505"]],[10,12,["H7969"]],[12,13,["H505"]],[13,15,["H2568"]],[15,16,["H3967"]],[16,18,["H2572"]]]},{"k":3651,"v":[[0,3,["H3881"]],[3,6,["H4294"]],[6,9,["H1"]],[9,11,["H3808"]],[11,12,["H6485"]],[12,13,["H8432"]],[13,14,[]]]},{"k":3652,"v":[[0,3,["H3068"]],[3,5,["H1696"]],[5,6,["H413"]],[6,7,["H4872"]],[7,8,["H559"]]]},{"k":3653,"v":[[0,1,["H389"]],[1,4,["H3808"]],[4,5,["H6485","(H853)"]],[5,7,["H4294"]],[7,9,["H3878"]],[9,10,["H3808"]],[10,11,["H5375"]],[11,13,["H7218"]],[13,16,["H8432"]],[16,18,["H1121"]],[18,20,["H3478"]]]},{"k":3654,"v":[[0,2,["H859"]],[2,4,["H6485","(H853)"]],[4,6,["H3881"]],[6,7,["H5921"]],[7,9,["H4908"]],[9,11,["H5715"]],[11,13,["H5921"]],[13,14,["H3605"]],[14,16,["H3627"]],[16,19,["H5921"]],[19,21,["H3605"]],[21,22,["H834"]],[22,26,["H1992"]],[26,28,["H5375","(H853)"]],[28,30,["H4908"]],[30,32,["H3605"]],[32,34,["H3627"]],[34,37,["H1992"]],[37,39,["H8334"]],[39,44,["H2583"]],[44,46,["H5439"]],[46,48,["H4908"]]]},{"k":3655,"v":[[0,4,["H4908"]],[4,6,["H5265"]],[6,8,["H3881"]],[8,12,["H3381","(H853)"]],[12,16,["H4908"]],[16,20,["H2583"]],[20,22,["H3881"]],[22,26,["H6965","(H853)"]],[26,29,["H2114"]],[29,32,["H7131"]],[32,37,["H4191"]]]},{"k":3656,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,9,["H2583"]],[9,11,["H376"]],[11,12,["H5921"]],[12,15,["H4264"]],[15,18,["H376"]],[18,19,["H5921"]],[19,22,["H1714"]],[22,25,["H6635"]]]},{"k":3657,"v":[[0,3,["H3881"]],[3,5,["H2583"]],[5,7,["H5439"]],[7,9,["H4908"]],[9,11,["H5715"]],[11,14,["H1961"]],[14,15,["H3808"]],[15,16,["H7110"]],[16,17,["H5921"]],[17,19,["H5712"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,27,["H3881"]],[27,29,["H8104","(H853)"]],[29,31,["H4931"]],[31,34,["H4908"]],[34,36,["H5715"]]]},{"k":3658,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,9,["H3605"]],[9,10,["H834"]],[10,12,["H3068"]],[12,13,["H6680","(H853)"]],[13,14,["H4872"]],[14,15,["H3651"]],[15,16,["H6213"]],[16,17,[]]]},{"k":3659,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H559"]]]},{"k":3660,"v":[[0,2,["H376"]],[2,5,["H1121"]],[5,7,["H3478"]],[7,9,["H2583"]],[9,10,["H5921"]],[10,13,["H1714"]],[13,16,["H226"]],[16,19,["H1"]],[19,20,["H1004"]],[20,22,["H4480","H5048"]],[22,23,["H5439"]],[23,25,["H168"]],[25,28,["H4150"]],[28,31,["H2583"]]]},{"k":3661,"v":[[0,5,["H6924"]],[5,11,["H4217"]],[11,16,["H1714"]],[16,19,["H4264"]],[19,21,["H3063"]],[21,22,["H2583"]],[22,25,["H6635"]],[25,27,["H5177"]],[27,29,["H1121"]],[29,31,["H5992"]],[31,34,["H5387"]],[34,37,["H1121"]],[37,39,["H3063"]]]},{"k":3662,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,14,["H702","H7657"]],[14,15,["H505"]],[15,17,["H8337"]],[17,18,["H3967"]]]},{"k":3663,"v":[[0,5,["H2583"]],[5,7,["H5921"]],[7,12,["H4294"]],[12,14,["H3485"]],[14,16,["H5417"]],[16,18,["H1121"]],[18,20,["H6686"]],[20,23,["H5387"]],[23,26,["H1121"]],[26,28,["H3485"]]]},{"k":3664,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,11,["H2572"]],[11,13,["H702"]],[13,14,["H505"]],[14,16,["H702"]],[16,17,["H3967"]]]},{"k":3665,"v":[[0,3,["H4294"]],[3,5,["H2074"]],[5,7,["H446"]],[7,9,["H1121"]],[9,11,["H2497"]],[11,14,["H5387"]],[14,17,["H1121"]],[17,19,["H2074"]]]},{"k":3666,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,11,["H2572"]],[11,13,["H7651"]],[13,14,["H505"]],[14,16,["H702"]],[16,17,["H3967"]]]},{"k":3667,"v":[[0,1,["H3605"]],[1,4,["H6485"]],[4,7,["H4264"]],[7,9,["H3063"]],[9,12,["H3967"]],[12,13,["H505"]],[13,15,["H8084"]],[15,16,["H505"]],[16,18,["H8337"]],[18,19,["H505"]],[19,21,["H702"]],[21,22,["H3967"]],[22,25,["H6635"]],[25,28,["H7223"]],[28,30,["H5265"]]]},{"k":3668,"v":[[0,4,["H8486"]],[4,8,["H1714"]],[8,11,["H4264"]],[11,13,["H7205"]],[13,17,["H6635"]],[17,20,["H5387"]],[20,23,["H1121"]],[23,25,["H7205"]],[25,28,["H468"]],[28,30,["H1121"]],[30,32,["H7707"]]]},{"k":3669,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,11,["H705"]],[11,13,["H8337"]],[13,14,["H505"]],[14,16,["H2568"]],[16,17,["H3967"]]]},{"k":3670,"v":[[0,4,["H2583"]],[4,5,["H5921"]],[5,10,["H4294"]],[10,12,["H8095"]],[12,15,["H5387"]],[15,18,["H1121"]],[18,20,["H8095"]],[20,23,["H8017"]],[23,25,["H1121"]],[25,27,["H6701"]]]},{"k":3671,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,12,["H2572"]],[12,14,["H8672"]],[14,15,["H505"]],[15,17,["H7969"]],[17,18,["H3967"]]]},{"k":3672,"v":[[0,3,["H4294"]],[3,5,["H1410"]],[5,8,["H5387"]],[8,11,["H1121"]],[11,13,["H1410"]],[13,16,["H460"]],[16,18,["H1121"]],[18,20,["H7467"]]]},{"k":3673,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,12,["H705"]],[12,14,["H2568"]],[14,15,["H505"]],[15,17,["H8337"]],[17,18,["H3967"]],[18,20,["H2572"]]]},{"k":3674,"v":[[0,1,["H3605"]],[1,4,["H6485"]],[4,7,["H4264"]],[7,9,["H7205"]],[9,12,["H3967"]],[12,13,["H505"]],[13,15,["H2572"]],[15,17,["H259"]],[17,18,["H505"]],[18,20,["H702"]],[20,21,["H3967"]],[21,23,["H2572"]],[23,26,["H6635"]],[26,31,["H5265"]],[31,34,["H8145"]],[34,35,[]]]},{"k":3675,"v":[[0,3,["H168"]],[3,6,["H4150"]],[6,9,["H5265"]],[9,12,["H4264"]],[12,15,["H3881"]],[15,18,["H8432"]],[18,21,["H4264"]],[21,22,["H834"]],[22,24,["H2583"]],[24,25,["H3651"]],[25,29,["H5265"]],[29,31,["H376"]],[31,32,["H5921"]],[32,34,["H3027"]],[34,37,["H1714"]]]},{"k":3676,"v":[[0,4,["H3220"]],[4,8,["H1714"]],[8,11,["H4264"]],[11,13,["H669"]],[13,17,["H6635"]],[17,20,["H5387"]],[20,23,["H1121"]],[23,25,["H669"]],[25,28,["H476"]],[28,30,["H1121"]],[30,32,["H5989"]]]},{"k":3677,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,12,["H705"]],[12,13,["H505"]],[13,15,["H2568"]],[15,16,["H3967"]]]},{"k":3678,"v":[[0,2,["H5921"]],[2,7,["H4294"]],[7,9,["H4519"]],[9,12,["H5387"]],[12,15,["H1121"]],[15,17,["H4519"]],[17,20,["H1583"]],[20,22,["H1121"]],[22,24,["H6301"]]]},{"k":3679,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,12,["H7970"]],[12,14,["H8147"]],[14,15,["H505"]],[15,18,["H3967"]]]},{"k":3680,"v":[[0,3,["H4294"]],[3,5,["H1144"]],[5,8,["H5387"]],[8,11,["H1121"]],[11,13,["H1144"]],[13,16,["H27"]],[16,18,["H1121"]],[18,20,["H1441"]]]},{"k":3681,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,12,["H7970"]],[12,14,["H2568"]],[14,15,["H505"]],[15,17,["H702"]],[17,18,["H3967"]]]},{"k":3682,"v":[[0,1,["H3605"]],[1,4,["H6485"]],[4,7,["H4264"]],[7,9,["H669"]],[9,12,["H3967"]],[12,13,["H505"]],[13,15,["H8083"]],[15,16,["H505"]],[16,19,["H3967"]],[19,22,["H6635"]],[22,27,["H5265"]],[27,30,["H7992"]],[30,31,[]]]},{"k":3683,"v":[[0,2,["H1714"]],[2,5,["H4264"]],[5,7,["H1835"]],[7,13,["H6828"]],[13,16,["H6635"]],[16,19,["H5387"]],[19,22,["H1121"]],[22,24,["H1835"]],[24,27,["H295"]],[27,29,["H1121"]],[29,31,["H5996"]]]},{"k":3684,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,12,["H8346"]],[12,14,["H8147"]],[14,15,["H505"]],[15,17,["H7651"]],[17,18,["H3967"]]]},{"k":3685,"v":[[0,4,["H2583"]],[4,5,["H5921"]],[5,10,["H4294"]],[10,12,["H836"]],[12,15,["H5387"]],[15,18,["H1121"]],[18,20,["H836"]],[20,23,["H6295"]],[23,25,["H1121"]],[25,27,["H5918"]]]},{"k":3686,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,12,["H705"]],[12,14,["H259"]],[14,15,["H505"]],[15,17,["H2568"]],[17,18,["H3967"]]]},{"k":3687,"v":[[0,3,["H4294"]],[3,5,["H5321"]],[5,8,["H5387"]],[8,11,["H1121"]],[11,13,["H5321"]],[13,16,["H299"]],[16,18,["H1121"]],[18,20,["H5881"]]]},{"k":3688,"v":[[0,3,["H6635"]],[3,8,["H6485"]],[8,12,["H2572"]],[12,14,["H7969"]],[14,15,["H505"]],[15,17,["H702"]],[17,18,["H3967"]]]},{"k":3689,"v":[[0,1,["H3605"]],[1,5,["H6485"]],[5,8,["H4264"]],[8,10,["H1835"]],[10,13,["H3967"]],[13,14,["H505"]],[14,16,["H2572"]],[16,18,["H7651"]],[18,19,["H505"]],[19,21,["H8337"]],[21,22,["H3967"]],[22,25,["H5265"]],[25,26,["H314"]],[26,29,["H1714"]]]},{"k":3690,"v":[[0,1,["H428"]],[1,6,["H6485"]],[6,9,["H1121"]],[9,11,["H3478"]],[11,14,["H1004"]],[14,17,["H1"]],[17,18,["H3605"]],[18,22,["H6485"]],[22,25,["H4264"]],[25,28,["H6635"]],[28,30,["H8337"]],[30,31,["H3967"]],[31,32,["H505"]],[32,34,["H7969"]],[34,35,["H505"]],[35,37,["H2568"]],[37,38,["H3967"]],[38,40,["H2572"]]]},{"k":3691,"v":[[0,3,["H3881"]],[3,5,["H3808"]],[5,6,["H6485"]],[6,7,["H8432"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,12,["H834"]],[12,14,["H3068"]],[14,15,["H6680","(H853)"]],[15,16,["H4872"]]]},{"k":3692,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,9,["H3605"]],[9,10,["H834"]],[10,12,["H3068"]],[12,13,["H6680","(H853)"]],[13,14,["H4872"]],[14,15,["H3651"]],[15,17,["H2583"]],[17,20,["H1714"]],[20,22,["H3651"]],[22,25,["H5265"]],[25,27,["H376"]],[27,30,["H4940"]],[30,32,["H5921"]],[32,34,["H1004"]],[34,37,["H1"]]]},{"k":3693,"v":[[0,1,["H428"]],[1,5,["H8435"]],[5,7,["H175"]],[7,9,["H4872"]],[9,12,["H3117"]],[12,15,["H3068"]],[15,16,["H1696"]],[16,17,["H854"]],[17,18,["H4872"]],[18,20,["H2022"]],[20,21,["H5514"]]]},{"k":3694,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H1121"]],[8,10,["H175"]],[10,11,["H5070"]],[11,13,["H1060"]],[13,15,["H30"]],[15,16,["H499"]],[16,18,["H385"]]]},{"k":3695,"v":[[0,1,["H428"]],[1,4,["H8034"]],[4,7,["H1121"]],[7,9,["H175"]],[9,11,["H3548"]],[11,14,["H4886"]],[14,15,["H834"]],[15,17,["H4390","H3027"]],[17,23,["H3547"]]]},{"k":3696,"v":[[0,2,["H5070"]],[2,4,["H30"]],[4,5,["H4191"]],[5,6,["H6440"]],[6,8,["H3068"]],[8,11,["H7126"]],[11,12,["H2114"]],[12,13,["H784"]],[13,14,["H6440"]],[14,16,["H3068"]],[16,19,["H4057"]],[19,21,["H5514"]],[21,24,["H1961"]],[24,25,["H3808"]],[25,26,["H1121"]],[26,28,["H499"]],[28,30,["H385"]],[30,35,["H3547"]],[35,36,["H5921"]],[36,38,["H6440"]],[38,40,["H175"]],[40,42,["H1"]]]},{"k":3697,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3698,"v":[[0,6,["H7126","(H853)","H4294","H3878"]],[6,8,["H5975"]],[8,10,["H6440"]],[10,11,["H175"]],[11,13,["H3548"]],[13,17,["H8334"]],[17,19,[]]]},{"k":3699,"v":[[0,4,["H8104","(H853)"]],[4,6,["H4931"]],[6,9,["H4931"]],[9,12,["H3605"]],[12,13,["H5712"]],[13,14,["H6440"]],[14,16,["H168"]],[16,19,["H4150"]],[19,21,["H5647","(H853)"]],[21,23,["H5656"]],[23,26,["H4908"]]]},{"k":3700,"v":[[0,4,["H8104","(H853)"]],[4,5,["H3605"]],[5,7,["H3627"]],[7,10,["H168"]],[10,13,["H4150"]],[13,16,["H4931"]],[16,19,["H1121"]],[19,21,["H3478"]],[21,23,["H5647","(H853)"]],[23,25,["H5656"]],[25,28,["H4908"]]]},{"k":3701,"v":[[0,4,["H5414","(H853)"]],[4,6,["H3881"]],[6,8,["H175"]],[8,12,["H1121"]],[12,13,["H1992"]],[13,16,["H5414","H5414"]],[16,20,["H4480","H854"]],[20,22,["H1121"]],[22,24,["H3478"]]]},{"k":3702,"v":[[0,4,["H6485"]],[4,5,["H175"]],[5,8,["H1121"]],[8,13,["H8104","(H853)"]],[13,16,["H3550"]],[16,19,["H2114"]],[19,22,["H7131"]],[22,27,["H4191"]]]},{"k":3703,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3704,"v":[[0,2,["H589"]],[2,3,["H2009"]],[3,6,["H3947","(H853)"]],[6,8,["H3881"]],[8,10,["H4480","H8432"]],[10,12,["H1121"]],[12,14,["H3478"]],[14,16,["H8478"]],[16,17,["H3605"]],[17,19,["H1060"]],[19,21,["H6363"]],[21,23,["H7358"]],[23,26,["H4480","H1121"]],[26,28,["H3478"]],[28,31,["H3881"]],[31,33,["H1961"]],[33,34,[]]]},{"k":3705,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H1060"]],[4,10,["H3117"]],[10,13,["H5221"]],[13,14,["H3605"]],[14,16,["H1060"]],[16,19,["H776"]],[19,21,["H4714"]],[21,23,["H6942"]],[23,26,["H3605"]],[26,28,["H1060"]],[28,30,["H3478"]],[30,32,["H4480","H120"]],[32,33,["H5704"]],[33,34,["H929"]],[34,38,["H1961"]],[38,39,["H589"]],[39,42,["H3068"]]]},{"k":3706,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H4057"]],[9,11,["H5514"]],[11,12,["H559"]]]},{"k":3707,"v":[[0,1,["H6485","(H853)"]],[1,3,["H1121"]],[3,5,["H3878"]],[5,8,["H1004"]],[8,11,["H1"]],[11,14,["H4940"]],[14,15,["H3605"]],[15,16,["H2145"]],[16,19,["H2320"]],[19,20,["H4480","H1121"]],[20,22,["H4605"]],[22,25,["H6485"]],[25,26,[]]]},{"k":3708,"v":[[0,2,["H4872"]],[2,3,["H6485"]],[3,6,["H5921"]],[6,8,["H6310"]],[8,11,["H3068"]],[11,12,["H834"]],[12,15,["H6680"]]]},{"k":3709,"v":[[0,2,["H428"]],[2,3,["H1961"]],[3,5,["H1121"]],[5,7,["H3878"]],[7,10,["H8034"]],[10,11,["H1648"]],[11,13,["H6955"]],[13,15,["H4847"]]]},{"k":3710,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H1121"]],[8,10,["H1648"]],[10,13,["H4940"]],[13,14,["H3845"]],[14,16,["H8096"]]]},{"k":3711,"v":[[0,3,["H1121"]],[3,5,["H6955"]],[5,8,["H4940"]],[8,9,["H6019"]],[9,11,["H3324"]],[11,12,["H2275"]],[12,14,["H5816"]]]},{"k":3712,"v":[[0,3,["H1121"]],[3,5,["H4847"]],[5,8,["H4940"]],[8,9,["H4249"]],[9,11,["H4187"]],[11,12,["H428"]],[12,15,["H4940"]],[15,18,["H3881"]],[18,22,["H1004"]],[22,25,["H1"]]]},{"k":3713,"v":[[0,2,["H1648"]],[2,5,["H4940"]],[5,8,["H3846"]],[8,11,["H4940"]],[11,14,["H8097"]],[14,15,["H428"]],[15,18,["H4940"]],[18,21,["H1649"]]]},{"k":3714,"v":[[0,4,["H6485"]],[4,10,["H4557"]],[10,12,["H3605"]],[12,14,["H2145"]],[14,17,["H2320"]],[17,18,["H4480","H1121"]],[18,20,["H4605"]],[20,25,["H6485"]],[25,29,["H7651"]],[29,30,["H505"]],[30,32,["H2568"]],[32,33,["H3967"]]]},{"k":3715,"v":[[0,2,["H4940"]],[2,5,["H1649"]],[5,7,["H2583"]],[7,8,["H310"]],[8,10,["H4908"]],[10,11,["H3220"]]]},{"k":3716,"v":[[0,3,["H5387"]],[3,6,["H1004"]],[6,9,["H1"]],[9,12,["H1649"]],[12,15,["H460"]],[15,17,["H1121"]],[17,19,["H3815"]]]},{"k":3717,"v":[[0,3,["H4931"]],[3,6,["H1121"]],[6,8,["H1647"]],[8,11,["H168"]],[11,14,["H4150"]],[14,18,["H4908"]],[18,21,["H168"]],[21,23,["H4372"]],[23,27,["H4539"]],[27,30,["H6607"]],[30,33,["H168"]],[33,36,["H4150"]]]},{"k":3718,"v":[[0,3,["H7050"]],[3,6,["H2691"]],[6,9,["H4539"]],[9,12,["H6607"]],[12,15,["H2691"]],[15,16,["H834"]],[16,18,["H5921"]],[18,20,["H4908"]],[20,22,["H5921"]],[22,24,["H4196"]],[24,26,["H5439"]],[26,29,["H4340"]],[29,33,["H3605"]],[33,35,["H5656"]],[35,36,[]]]},{"k":3719,"v":[[0,3,["H6955"]],[3,6,["H4940"]],[6,9,["H6020"]],[9,12,["H4940"]],[12,15,["H3325"]],[15,18,["H4940"]],[18,21,["H2276"]],[21,24,["H4940"]],[24,27,["H5817"]],[27,28,["H428"]],[28,31,["H4940"]],[31,34,["H6956"]]]},{"k":3720,"v":[[0,3,["H4557"]],[3,5,["H3605"]],[5,7,["H2145"]],[7,10,["H2320"]],[10,11,["H4480","H1121"]],[11,13,["H4605"]],[13,15,["H8083"]],[15,16,["H505"]],[16,18,["H8337"]],[18,19,["H3967"]],[19,20,["H8104"]],[20,22,["H4931"]],[22,25,["H6944"]]]},{"k":3721,"v":[[0,2,["H4940"]],[2,5,["H1121"]],[5,7,["H6955"]],[7,9,["H2583"]],[9,10,["H5921"]],[10,12,["H3409"]],[12,15,["H4908"]],[15,16,["H8486"]]]},{"k":3722,"v":[[0,3,["H5387"]],[3,6,["H1004"]],[6,9,["H1"]],[9,12,["H4940"]],[12,15,["H6956"]],[15,18,["H469"]],[18,20,["H1121"]],[20,22,["H5816"]]]},{"k":3723,"v":[[0,3,["H4931"]],[3,7,["H727"]],[7,10,["H7979"]],[10,13,["H4501"]],[13,16,["H4196"]],[16,19,["H3627"]],[19,22,["H6944"]],[22,23,["H834"]],[23,25,["H8334"]],[25,28,["H4539"]],[28,30,["H3605"]],[30,32,["H5656"]],[32,33,[]]]},{"k":3724,"v":[[0,2,["H499"]],[2,4,["H1121"]],[4,6,["H175"]],[6,8,["H3548"]],[8,11,["H5387"]],[11,14,["H5387"]],[14,17,["H3881"]],[17,21,["H6486"]],[21,25,["H8104"]],[25,27,["H4931"]],[27,30,["H6944"]]]},{"k":3725,"v":[[0,2,["H4847"]],[2,5,["H4940"]],[5,8,["H4250"]],[8,11,["H4940"]],[11,14,["H4188"]],[14,15,["H428"]],[15,18,["H4940"]],[18,20,["H4847"]]]},{"k":3726,"v":[[0,5,["H6485"]],[5,11,["H4557"]],[11,13,["H3605"]],[13,15,["H2145"]],[15,18,["H2320"]],[18,19,["H4480","H1121"]],[19,21,["H4605"]],[21,23,["H8337"]],[23,24,["H505"]],[24,27,["H3967"]]]},{"k":3727,"v":[[0,3,["H5387"]],[3,6,["H1004"]],[6,9,["H1"]],[9,12,["H4940"]],[12,14,["H4847"]],[14,16,["H6700"]],[16,18,["H1121"]],[18,20,["H32"]],[20,23,["H2583"]],[23,24,["H5921"]],[24,26,["H3409"]],[26,29,["H4908"]],[29,30,["H6828"]]]},{"k":3728,"v":[[0,4,["H6486"]],[4,6,["H4931"]],[6,9,["H1121"]],[9,11,["H4847"]],[11,15,["H7175"]],[15,18,["H4908"]],[18,21,["H1280"]],[21,25,["H5982"]],[25,29,["H134"]],[29,32,["H3605"]],[32,34,["H3627"]],[34,37,["H3605"]],[37,39,["H5656"]],[39,40,[]]]},{"k":3729,"v":[[0,3,["H5982"]],[3,6,["H2691"]],[6,8,["H5439"]],[8,11,["H134"]],[11,14,["H3489"]],[14,17,["H4340"]]]},{"k":3730,"v":[[0,4,["H2583"]],[4,5,["H6440"]],[5,7,["H4908"]],[7,10,["H6924"]],[10,12,["H6440"]],[12,14,["H168"]],[14,17,["H4150"]],[17,18,["H4217"]],[18,21,["H4872"]],[21,23,["H175"]],[23,26,["H1121"]],[26,27,["H8104"]],[27,29,["H4931"]],[29,32,["H4720"]],[32,35,["H4931"]],[35,38,["H1121"]],[38,40,["H3478"]],[40,43,["H2114"]],[43,46,["H7131"]],[46,51,["H4191"]]]},{"k":3731,"v":[[0,1,["H3605"]],[1,4,["H6485"]],[4,7,["H3881"]],[7,8,["H834"]],[8,9,["H4872"]],[9,11,["H175"]],[11,12,["H6485"]],[12,13,["H5921"]],[13,15,["H6310"]],[15,18,["H3068"]],[18,21,["H4940"]],[21,22,["H3605"]],[22,24,["H2145"]],[24,27,["H2320"]],[27,28,["H4480","H1121"]],[28,30,["H4605"]],[30,32,["H6242"]],[32,34,["H8147"]],[34,35,["H505"]]]},{"k":3732,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H6485"]],[7,8,["H3605"]],[8,10,["H1060"]],[10,13,["H2145"]],[13,16,["H1121"]],[16,18,["H3478"]],[18,21,["H2320"]],[21,22,["H4480","H1121"]],[22,24,["H4605"]],[24,26,["H5375","(H853)"]],[26,28,["H4557"]],[28,31,["H8034"]]]},{"k":3733,"v":[[0,4,["H3947","(H853)"]],[4,6,["H3881"]],[6,9,["H589"]],[9,12,["H3068"]],[12,14,["H8478"]],[14,15,["H3605"]],[15,17,["H1060"]],[17,20,["H1121"]],[20,22,["H3478"]],[22,25,["H929"]],[25,28,["H3881"]],[28,30,["H8478"]],[30,31,["H3605"]],[31,33,["H1060"]],[33,36,["H929"]],[36,39,["H1121"]],[39,41,["H3478"]]]},{"k":3734,"v":[[0,2,["H4872"]],[2,3,["H6485"]],[3,4,["H834"]],[4,6,["H3068"]],[6,7,["H6680"]],[7,8,["(H853)"]],[8,9,["H3605"]],[9,11,["H1060"]],[11,14,["H1121"]],[14,16,["H3478"]]]},{"k":3735,"v":[[0,2,["H3605"]],[2,4,["H1060"]],[4,5,["H2145"]],[5,8,["H4557"]],[8,10,["H8034"]],[10,13,["H2320"]],[13,14,["H4480","H1121"]],[14,16,["H4605"]],[16,21,["H6485"]],[21,24,["H1961"]],[24,25,["H6242"]],[25,27,["H8147"]],[27,28,["H505"]],[28,30,["H3967"]],[30,34,["H7969","H7657"]]]},{"k":3736,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3737,"v":[[0,1,["H3947","(H853)"]],[1,3,["H3881"]],[3,5,["H8478"]],[5,6,["H3605"]],[6,8,["H1060"]],[8,11,["H1121"]],[11,13,["H3478"]],[13,16,["H929"]],[16,19,["H3881"]],[19,21,["H8478"]],[21,23,["H929"]],[23,26,["H3881"]],[26,28,["H1961"]],[28,30,["H589"]],[30,33,["H3068"]]]},{"k":3738,"v":[[0,8,["H6302"]],[8,12,["H3967"]],[12,16,["H7969","H7657"]],[16,19,["H4480","H1060"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,27,["H5736"]],[27,28,["H5921"]],[28,30,["H3881"]]]},{"k":3739,"v":[[0,4,["H3947"]],[4,7,["H2568","H2568","H8255"]],[7,10,["H1538"]],[10,13,["H8255"]],[13,16,["H6944"]],[16,19,["H3947"]],[19,22,["H8255"]],[22,24,["H6242"]],[24,25,["H1626"]]]},{"k":3740,"v":[[0,4,["H5414"]],[4,6,["H3701"]],[6,10,["H5736"]],[10,16,["H6302"]],[16,18,["H175"]],[18,22,["H1121"]]]},{"k":3741,"v":[[0,2,["H4872"]],[2,3,["H3947"]],[3,5,["H6306","(H853)"]],[5,6,["H3701"]],[6,7,["H4480","H854"]],[7,11,["H5736"]],[11,13,["H5921"]],[13,17,["H6306"]],[17,20,["H3881"]]]},{"k":3742,"v":[[0,1,["H4480","H854"]],[1,3,["H1060"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,9,["H3947"]],[9,10,["(H853)"]],[10,12,["H3701"]],[12,14,["H505"]],[14,15,["H7969"]],[15,16,["H3967"]],[16,18,["H8346"]],[18,20,["H2568"]],[20,24,["H8255"]],[24,27,["H6944"]]]},{"k":3743,"v":[[0,2,["H4872"]],[2,3,["H5414","(H853)"]],[3,5,["H3701"]],[5,10,["H6306"]],[10,12,["H175"]],[12,16,["H1121"]],[16,18,["H5921"]],[18,20,["H6310"]],[20,23,["H3068"]],[23,24,["H834"]],[24,26,["H3068"]],[26,27,["H6680","(H853)"]],[27,28,["H4872"]]]},{"k":3744,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H559"]]]},{"k":3745,"v":[[0,1,["H5375","(H853)"]],[1,3,["H7218"]],[3,6,["H1121"]],[6,8,["H6955"]],[8,10,["H4480","H8432"]],[10,12,["H1121"]],[12,14,["H3878"]],[14,17,["H4940"]],[17,20,["H1004"]],[20,23,["H1"]]]},{"k":3746,"v":[[0,2,["H7970"]],[2,3,["H8141"]],[3,4,["H4480","H1121"]],[4,6,["H4605"]],[6,8,["H5704"]],[8,9,["H2572"]],[9,10,["H8141"]],[10,11,["H1121"]],[11,12,["H3605"]],[12,14,["H935"]],[14,17,["H6635"]],[17,19,["H6213"]],[19,21,["H4399"]],[21,24,["H168"]],[24,27,["H4150"]]]},{"k":3747,"v":[[0,1,["H2063"]],[1,5,["H5656"]],[5,8,["H1121"]],[8,10,["H6955"]],[10,13,["H168"]],[13,16,["H4150"]],[16,21,["H6944","H6944"]]]},{"k":3748,"v":[[0,4,["H4264"]],[4,6,["H5265"]],[6,7,["H175"]],[7,9,["H935"]],[9,12,["H1121"]],[12,17,["H3381"]],[17,19,["H4539","(H853)"]],[19,20,["H6532"]],[20,22,["H3680","(H853)"]],[22,24,["H727"]],[24,26,["H5715"]],[26,28,[]]]},{"k":3749,"v":[[0,3,["H5414"]],[3,4,["H5921"]],[4,6,["H3681"]],[6,8,["H8476"]],[8,9,["H5785"]],[9,12,["H6566"]],[12,13,["H4480","H4605"]],[13,16,["H899"]],[16,17,["H3632"]],[17,19,["H8504"]],[19,22,["H7760"]],[22,25,["H905"]],[25,26,[]]]},{"k":3750,"v":[[0,2,["H5921"]],[2,4,["H7979"]],[4,6,["H6440"]],[6,9,["H6566"]],[9,11,["H899"]],[11,13,["H8504"]],[13,15,["H5414"]],[15,16,["H5921","(H853)"]],[16,18,["H7086"]],[18,21,["H3709"]],[21,24,["H4518"]],[24,26,["H7184"]],[26,28,["H5262"]],[28,32,["H8548"]],[32,33,["H3899"]],[33,35,["H1961"]],[35,36,["H5921"]]]},{"k":3751,"v":[[0,4,["H6566"]],[4,5,["H5921"]],[5,8,["H899"]],[8,10,["H8438","H8144"]],[10,12,["H3680"]],[12,17,["H4372"]],[17,19,["H8476"]],[19,20,["H5785"]],[20,24,["H7760","(H853)"]],[24,26,["H905"]],[26,27,[]]]},{"k":3752,"v":[[0,4,["H3947"]],[4,6,["H899"]],[6,8,["H8504"]],[8,10,["H3680","(H853)"]],[10,12,["H4501"]],[12,15,["H3974"]],[15,18,["H5216"]],[18,21,["H4457"]],[21,24,["H4289"]],[24,26,["H3605"]],[26,28,["H8081"]],[28,29,["H3627"]],[29,31,["H834"]],[31,33,["H8334"]],[33,35,[]]]},{"k":3753,"v":[[0,4,["H5414"]],[4,7,["H3605"]],[7,9,["H3627"]],[9,11,["H413"]],[11,13,["H4372"]],[13,15,["H8476"]],[15,16,["H5785"]],[16,19,["H5414"]],[19,21,["H5921"]],[21,23,["H4132"]]]},{"k":3754,"v":[[0,2,["H5921"]],[2,4,["H2091"]],[4,5,["H4196"]],[5,8,["H6566"]],[8,10,["H899"]],[10,12,["H8504"]],[12,14,["H3680"]],[14,18,["H4372"]],[18,20,["H8476"]],[20,21,["H5785"]],[21,24,["H7725","(H853)"]],[24,27,["H905"]],[27,28,[]]]},{"k":3755,"v":[[0,4,["H3947","(H853)"]],[4,5,["H3605"]],[5,7,["H3627"]],[7,9,["H8335"]],[9,10,["H834"]],[10,12,["H8334"]],[12,15,["H6944"]],[15,17,["H5414"]],[17,19,["H413"]],[19,21,["H899"]],[21,23,["H8504"]],[23,25,["H3680"]],[25,29,["H4372"]],[29,31,["H8476"]],[31,32,["H5785"]],[32,35,["H5414"]],[35,37,["H5921"]],[37,39,["H4132"]]]},{"k":3756,"v":[[0,7,["H1878","(H853)"]],[7,10,["H4196"]],[10,12,["H6566"]],[12,14,["H713"]],[14,15,["H899"]],[15,16,["H5921"]]]},{"k":3757,"v":[[0,4,["H5414"]],[4,5,["H5921"]],[5,6,["(H853)"]],[6,7,["H3605"]],[7,9,["H3627"]],[9,11,["H834"]],[11,13,["H8334"]],[13,14,["H5921"]],[14,16,["(H853)"]],[16,18,["H4289","(H853)"]],[18,20,["H4207"]],[20,23,["H3257"]],[23,26,["H4219"]],[26,27,["H3605"]],[27,29,["H3627"]],[29,32,["H4196"]],[32,36,["H6566"]],[36,37,["H5921"]],[37,40,["H3681"]],[40,42,["H8476"]],[42,43,["H5785"]],[43,45,["H7760"]],[45,48,["H905"]],[48,50,[]]]},{"k":3758,"v":[[0,3,["H175"]],[3,6,["H1121"]],[6,10,["H3615"]],[10,12,["H3680","(H853)"]],[12,14,["H6944"]],[14,16,["H3605"]],[16,18,["H3627"]],[18,21,["H6944"]],[21,24,["H4264"]],[24,28,["H5265"]],[28,29,["H310"]],[29,30,["H3651"]],[30,32,["H1121"]],[32,34,["H6955"]],[34,36,["H935"]],[36,38,["H5375"]],[38,43,["H3808"]],[43,44,["H5060","H413"]],[44,47,["H6944"]],[47,50,["H4191"]],[50,51,["H428"]],[51,55,["H4853"]],[55,58,["H1121"]],[58,60,["H6955"]],[60,63,["H168"]],[63,66,["H4150"]]]},{"k":3759,"v":[[0,4,["H6486"]],[4,6,["H499"]],[6,8,["H1121"]],[8,10,["H175"]],[10,12,["H3548"]],[12,15,["H8081"]],[15,18,["H3974"]],[18,21,["H5561"]],[21,22,["H7004"]],[22,25,["H8548"]],[25,27,["H4503"]],[27,30,["H4888"]],[30,31,["H8081"]],[31,34,["H6486"]],[34,36,["H3605"]],[36,38,["H4908"]],[38,41,["H3605"]],[41,42,["H834"]],[42,47,["H6944"]],[47,51,["H3627"]],[51,52,[]]]},{"k":3760,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H559"]]]},{"k":3761,"v":[[0,4,["H3772","H408","(H853)"]],[4,6,["H7626"]],[6,9,["H4940"]],[9,12,["H6956"]],[12,14,["H4480","H8432"]],[14,16,["H3881"]]]},{"k":3762,"v":[[0,2,["H2063"]],[2,3,["H6213"]],[3,9,["H2421"]],[9,11,["H3808"]],[11,12,["H4191"]],[12,15,["H5066","(H853)"]],[15,20,["H6944","H6944"]],[20,21,["H175"]],[21,24,["H1121"]],[24,27,["H935"]],[27,29,["H7760"]],[29,32,["H376","H376"]],[32,33,["H5921"]],[33,35,["H5656"]],[35,37,["H413"]],[37,39,["H4853"]]]},{"k":3763,"v":[[0,4,["H3808"]],[4,6,["H935"]],[6,8,["H7200"]],[8,9,["(H853)"]],[9,12,["H6944"]],[12,14,["H1104"]],[14,17,["H4191"]]]},{"k":3764,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3765,"v":[[0,1,["H5375"]],[1,2,["H1571","(H853)"]],[2,4,["H7218"]],[4,7,["H1121"]],[7,9,["H1648"]],[9,12,["H1004"]],[12,15,["H1"]],[15,18,["H4940"]]]},{"k":3766,"v":[[0,2,["H7970"]],[2,3,["H8141"]],[3,4,["H4480","H1121"]],[4,6,["H4605"]],[6,7,["H5704"]],[7,8,["H2572"]],[8,9,["H8141"]],[9,10,["H1121"]],[10,13,["H6485"]],[13,15,["H3605"]],[15,18,["H935"]],[18,20,["H6633"]],[20,22,["H5656"]],[22,24,["H5647"]],[24,26,["H5656"]],[26,29,["H168"]],[29,32,["H4150"]]]},{"k":3767,"v":[[0,1,["H2063"]],[1,4,["H5656"]],[4,7,["H4940"]],[7,10,["H1649"]],[10,12,["H5647"]],[12,15,["H4853"]]]},{"k":3768,"v":[[0,4,["H5375","(H853)"]],[4,6,["H3407"]],[6,9,["H4908"]],[9,12,["H168"]],[12,15,["H4150"]],[15,17,["H4372"]],[17,20,["H4372"]],[20,24,["H8476"]],[24,25,["H834"]],[25,27,["H4480","H4605"]],[27,28,["H5921"]],[28,32,["H4539"]],[32,35,["H6607"]],[35,38,["H168"]],[38,41,["H4150"]]]},{"k":3769,"v":[[0,3,["H7050"]],[3,6,["H2691"]],[6,9,["H4539"]],[9,12,["H6607"]],[12,15,["H8179"]],[15,18,["H2691"]],[18,19,["H834"]],[19,21,["H5921"]],[21,23,["H4908"]],[23,25,["H5921"]],[25,27,["H4196"]],[27,29,["H5439"]],[29,32,["H4340"]],[32,34,["H3605"]],[34,36,["H3627"]],[36,39,["H5656"]],[39,41,["H3605"]],[41,42,["H834"]],[42,44,["H6213"]],[44,50,["H5647"]]]},{"k":3770,"v":[[0,1,["H5921"]],[1,3,["H6310"]],[3,5,["H175"]],[5,8,["H1121"]],[8,10,["H1961"]],[10,11,["H3605"]],[11,13,["H5656"]],[13,16,["H1121"]],[16,19,["H1649"]],[19,21,["H3605"]],[21,23,["H4853"]],[23,26,["H3605"]],[26,28,["H5656"]],[28,32,["H6485"]],[32,33,["H5921"]],[33,36,["H4931","(H853)"]],[36,37,["H3605"]],[37,39,["H4853"]]]},{"k":3771,"v":[[0,1,["H2063"]],[1,4,["H5656"]],[4,7,["H4940"]],[7,10,["H1121"]],[10,12,["H1649"]],[12,15,["H168"]],[15,18,["H4150"]],[18,21,["H4931"]],[21,26,["H3027"]],[26,28,["H385"]],[28,30,["H1121"]],[30,32,["H175"]],[32,34,["H3548"]]]},{"k":3772,"v":[[0,4,["H1121"]],[4,6,["H4847"]],[6,9,["H6485"]],[9,13,["H4940"]],[13,16,["H1004"]],[16,19,["H1"]]]},{"k":3773,"v":[[0,2,["H7970"]],[2,3,["H8141"]],[3,4,["H4480","H1121"]],[4,6,["H4605"]],[6,8,["H5704"]],[8,9,["H2572"]],[9,10,["H8141"]],[10,11,["H1121"]],[11,14,["H6485"]],[14,17,["H3605"]],[17,19,["H935"]],[19,22,["H6635"]],[22,24,["H5647","(H853)"]],[24,26,["H5656"]],[26,29,["H168"]],[29,32,["H4150"]]]},{"k":3774,"v":[[0,2,["H2063"]],[2,5,["H4931"]],[5,8,["H4853"]],[8,11,["H3605"]],[11,13,["H5656"]],[13,16,["H168"]],[16,19,["H4150"]],[19,21,["H7175"]],[21,24,["H4908"]],[24,27,["H1280"]],[27,31,["H5982"]],[31,34,["H134"]],[34,35,[]]]},{"k":3775,"v":[[0,3,["H5982"]],[3,6,["H2691"]],[6,8,["H5439"]],[8,11,["H134"]],[11,14,["H3489"]],[14,17,["H4340"]],[17,19,["H3605"]],[19,21,["H3627"]],[21,24,["H3605"]],[24,26,["H5656"]],[26,29,["H8034"]],[29,32,["H6485","(H853)"]],[32,34,["H3627"]],[34,37,["H4931"]],[37,40,["H4853"]]]},{"k":3776,"v":[[0,1,["H2063"]],[1,4,["H5656"]],[4,7,["H4940"]],[7,10,["H1121"]],[10,12,["H4847"]],[12,15,["H3605"]],[15,17,["H5656"]],[17,20,["H168"]],[20,23,["H4150"]],[23,26,["H3027"]],[26,28,["H385"]],[28,30,["H1121"]],[30,32,["H175"]],[32,34,["H3548"]]]},{"k":3777,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,7,["H5387"]],[7,10,["H5712"]],[10,11,["H6485","(H853)"]],[11,13,["H1121"]],[13,16,["H6956"]],[16,19,["H4940"]],[19,23,["H1004"]],[23,26,["H1"]]]},{"k":3778,"v":[[0,2,["H7970"]],[2,3,["H8141"]],[3,4,["H4480","H1121"]],[4,6,["H4605"]],[6,8,["H5704"]],[8,9,["H2572"]],[9,10,["H8141"]],[10,11,["H1121"]],[11,13,["H3605"]],[13,15,["H935"]],[15,18,["H6635"]],[18,21,["H5656"]],[21,24,["H168"]],[24,27,["H4150"]]]},{"k":3779,"v":[[0,5,["H6485"]],[5,10,["H4940"]],[10,11,["H1961"]],[11,13,["H505"]],[13,14,["H7651"]],[14,15,["H3967"]],[15,17,["H2572"]]]},{"k":3780,"v":[[0,1,["H428"]],[1,6,["H6485"]],[6,9,["H4940"]],[9,12,["H6956"]],[12,13,["H3605"]],[13,17,["H5647"]],[17,20,["H168"]],[20,23,["H4150"]],[23,24,["H834"]],[24,25,["H4872"]],[25,27,["H175"]],[27,29,["H6485"]],[29,31,["H5921"]],[31,33,["H6310"]],[33,36,["H3068"]],[36,39,["H3027"]],[39,41,["H4872"]]]},{"k":3781,"v":[[0,5,["H6485"]],[5,8,["H1121"]],[8,10,["H1648"]],[10,13,["H4940"]],[13,17,["H1004"]],[17,20,["H1"]]]},{"k":3782,"v":[[0,2,["H7970"]],[2,3,["H8141"]],[3,4,["H4480","H1121"]],[4,6,["H4605"]],[6,8,["H5704"]],[8,9,["H2572"]],[9,10,["H8141"]],[10,11,["H1121"]],[11,13,["H3605"]],[13,15,["H935"]],[15,18,["H6635"]],[18,21,["H5656"]],[21,24,["H168"]],[24,27,["H4150"]]]},{"k":3783,"v":[[0,5,["H6485"]],[5,10,["H4940"]],[10,13,["H1004"]],[13,16,["H1"]],[16,17,["H1961"]],[17,19,["H505"]],[19,21,["H8337"]],[21,22,["H3967"]],[22,24,["H7970"]]]},{"k":3784,"v":[[0,1,["H428"]],[1,6,["H6485"]],[6,9,["H4940"]],[9,12,["H1121"]],[12,14,["H1648"]],[14,16,["H3605"]],[16,20,["H5647"]],[20,23,["H168"]],[23,26,["H4150"]],[26,27,["H834"]],[27,28,["H4872"]],[28,30,["H175"]],[30,32,["H6485"]],[32,34,["H5921"]],[34,36,["H6310"]],[36,39,["H3068"]]]},{"k":3785,"v":[[0,5,["H6485"]],[5,8,["H4940"]],[8,11,["H1121"]],[11,13,["H4847"]],[13,16,["H4940"]],[16,19,["H1004"]],[19,22,["H1"]]]},{"k":3786,"v":[[0,2,["H7970"]],[2,3,["H8141"]],[3,4,["H4480","H1121"]],[4,6,["H4605"]],[6,8,["H5704"]],[8,9,["H2572"]],[9,10,["H8141"]],[10,11,["H1121"]],[11,13,["H3605"]],[13,15,["H935"]],[15,18,["H6635"]],[18,21,["H5656"]],[21,24,["H168"]],[24,27,["H4150"]]]},{"k":3787,"v":[[0,5,["H6485"]],[5,10,["H4940"]],[10,11,["H1961"]],[11,12,["H7969"]],[12,13,["H505"]],[13,16,["H3967"]]]},{"k":3788,"v":[[0,1,["H428"]],[1,6,["H6485"]],[6,9,["H4940"]],[9,12,["H1121"]],[12,14,["H4847"]],[14,15,["H834"]],[15,16,["H4872"]],[16,18,["H175"]],[18,19,["H6485"]],[19,21,["H5921"]],[21,23,["H6310"]],[23,26,["H3068"]],[26,29,["H3027"]],[29,31,["H4872"]]]},{"k":3789,"v":[[0,1,["H3605"]],[1,5,["H6485","(H853)"]],[5,8,["H3881"]],[8,9,["H834"]],[9,10,["H4872"]],[10,12,["H175"]],[12,15,["H5387"]],[15,17,["H3478"]],[17,18,["H6485"]],[18,21,["H4940"]],[21,25,["H1004"]],[25,28,["H1"]]]},{"k":3790,"v":[[0,2,["H7970"]],[2,3,["H8141"]],[3,4,["H4480","H1121"]],[4,6,["H4605"]],[6,8,["H5704"]],[8,9,["H2572"]],[9,10,["H8141"]],[10,11,["H1121"]],[11,13,["H3605"]],[13,15,["H935"]],[15,17,["H5647"]],[17,19,["H5656"]],[19,22,["H5656"]],[22,25,["H5656"]],[25,28,["H4853"]],[28,31,["H168"]],[31,34,["H4150"]]]},{"k":3791,"v":[[0,5,["H6485"]],[5,8,["H1961"]],[8,9,["H8083"]],[9,10,["H505"]],[10,12,["H2568"]],[12,13,["H3967"]],[13,15,["H8084"]]]},{"k":3792,"v":[[0,2,["H5921"]],[2,4,["H6310"]],[4,7,["H3068"]],[7,10,["H6485"]],[10,13,["H3027"]],[13,15,["H4872"]],[15,17,["H376","H376"]],[17,19,["H5921"]],[19,21,["H5656"]],[21,24,["H5921"]],[24,26,["H4853"]],[26,30,["H6485"]],[30,33,["H834"]],[33,35,["H3068"]],[35,36,["H6680","(H853)"]],[36,37,["H4872"]]]},{"k":3793,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3794,"v":[[0,1,["H6680","(H853)"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,9,["H7971"]],[9,10,["H4480"]],[10,12,["H4264"]],[12,13,["H3605"]],[13,14,["H6879"]],[14,17,["H3605"]],[17,21,["H2100"]],[21,23,["H3605"]],[23,25,["H2931"]],[25,28,["H5315"]]]},{"k":3795,"v":[[0,2,["H4480","H2145"]],[2,3,["H5704"]],[3,4,["H5347"]],[4,8,["H7971"]],[8,9,["H413","H4480","H2351"]],[9,11,["H4264"]],[11,14,["H7971"]],[14,18,["H2930"]],[18,19,["H3808","(H853)"]],[19,21,["H4264"]],[21,24,["H8432"]],[24,25,["H834"]],[25,26,["H589"]],[26,27,["H7931"]]]},{"k":3796,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,7,["H3651"]],[7,11,["H7971","(H853)"]],[11,12,["H413","H4480","H2351"]],[12,14,["H4264"]],[14,15,["H834"]],[15,17,["H3068"]],[17,18,["H1696"]],[18,19,["H413"]],[19,20,["H4872"]],[20,21,["H3651"]],[21,22,["H6213"]],[22,24,["H1121"]],[24,26,["H3478"]]]},{"k":3797,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3798,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H3588"]],[7,9,["H376"]],[9,10,["H176"]],[10,11,["H802"]],[11,13,["H6213"]],[13,14,["H4480","H3605"]],[14,15,["H2403"]],[15,17,["H120"]],[17,20,["H4603"]],[20,22,["H4604"]],[22,25,["H3068"]],[25,27,["H1931"]],[27,28,["H5315"]],[28,30,["H816"]]]},{"k":3799,"v":[[0,4,["H3034","(H853)"]],[4,6,["H2403"]],[6,7,["H834"]],[7,10,["H6213"]],[10,14,["H7725"]],[14,15,["(H853)"]],[15,16,["H817"]],[16,19,["H7218"]],[19,22,["H3254"]],[22,23,["H5921"]],[23,26,["H2549"]],[26,30,["H5414"]],[30,35,["H834"]],[35,38,["H816"]]]},{"k":3800,"v":[[0,2,["H518"]],[2,4,["H376"]],[4,6,["H369"]],[6,7,["H1350"]],[7,9,["H7725"]],[9,11,["H817"]],[11,12,["H413"]],[12,15,["H817"]],[15,17,["H7725"]],[17,20,["H3068"]],[20,24,["H3548"]],[24,25,["H4480","H905"]],[25,27,["H352"]],[27,30,["H3725"]],[30,31,["H834"]],[31,36,["H3722"]],[36,37,["H5921"]],[37,38,[]]]},{"k":3801,"v":[[0,2,["H3605"]],[2,3,["H8641"]],[3,5,["H3605"]],[5,8,["H6944"]],[8,11,["H1121"]],[11,13,["H3478"]],[13,14,["H834"]],[14,16,["H7126"]],[16,19,["H3548"]],[19,21,["H1961"]],[21,22,[]]]},{"k":3802,"v":[[0,3,["H376","(H853)"]],[3,5,["H6944"]],[5,7,["H1961"]],[7,9,["H834"]],[9,11,["H376"]],[11,12,["H5414"]],[12,14,["H3548"]],[14,17,["H1961"]],[17,18,[]]]},{"k":3803,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3804,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H3588"]],[11,13,["H376","H376"]],[13,14,["H802"]],[14,16,["H7847"]],[16,18,["H4603"]],[18,20,["H4604"]],[20,22,[]]]},{"k":3805,"v":[[0,3,["H376"]],[3,4,["H7901"]],[4,5,["H854"]],[5,7,["H7902","H2233"]],[7,11,["H5956"]],[11,14,["H4480","H5869"]],[14,17,["H376"]],[17,21,["H5641"]],[21,23,["H1931"]],[23,25,["H2930"]],[25,29,["H369"]],[29,30,["H5707"]],[30,33,["H3808"]],[33,34,["H1931"]],[34,36,["H8610"]],[36,39,[]]]},{"k":3806,"v":[[0,3,["H7307"]],[3,5,["H7068"]],[5,6,["H5674"]],[6,7,["H5921"]],[7,12,["H7065","(H853)"]],[12,15,["H802"]],[15,17,["H1931"]],[17,19,["H2930"]],[19,20,["H176"]],[20,23,["H7307"]],[23,25,["H7068"]],[25,26,["H5674"]],[26,27,["H5921"]],[27,32,["H7065","(H853)"]],[32,35,["H802"]],[35,37,["H1931"]],[37,39,["H3808"]],[39,40,["H2930"]]]},{"k":3807,"v":[[0,4,["H376"]],[4,5,["H935","(H853)"]],[5,7,["H802"]],[7,8,["H413"]],[8,10,["H3548"]],[10,14,["H935","(H853)"]],[14,16,["H7133"]],[16,17,["H5921"]],[17,20,["H6224"]],[20,24,["H374"]],[24,26,["H8184"]],[26,27,["H7058"]],[27,30,["H3332"]],[30,31,["H3808"]],[31,32,["H8081"]],[32,33,["H5921"]],[33,35,["H3808"]],[35,36,["H5414"]],[36,37,["H3828"]],[37,38,["H5921"]],[38,39,["H3588"]],[39,40,["H1931"]],[40,43,["H4503"]],[43,45,["H7068"]],[45,47,["H4503"]],[47,49,["H2146"]],[49,53,["H2142","H5771"]]]},{"k":3808,"v":[[0,3,["H3548"]],[3,7,["H7126","(H853)"]],[7,9,["H5975"]],[9,11,["H6440"]],[11,13,["H3068"]]]},{"k":3809,"v":[[0,3,["H3548"]],[3,5,["H3947"]],[5,6,["H6918"]],[6,7,["H4325"]],[7,10,["H2789"]],[10,11,["H3627"]],[11,13,["H4480"]],[13,15,["H6083"]],[15,16,["H834"]],[16,17,["H1961"]],[17,20,["H7172"]],[20,23,["H4908"]],[23,25,["H3548"]],[25,27,["H3947"]],[27,29,["H5414"]],[29,31,["H413"]],[31,33,["H4325"]]]},{"k":3810,"v":[[0,3,["H3548"]],[3,5,["H5975","(H853)"]],[5,7,["H802"]],[7,8,["H6440"]],[8,10,["H3068"]],[10,12,["H6544","(H853)"]],[12,14,["H802"]],[14,15,["H7218"]],[15,17,["H5414","(H853)"]],[17,19,["H4503"]],[19,21,["H2146"]],[21,22,["H5921"]],[22,24,["H3709"]],[24,25,["H1931"]],[25,28,["H7068"]],[28,29,["H4503"]],[29,32,["H3548"]],[32,34,["H1961"]],[34,37,["H3027"]],[37,39,["H4751"]],[39,40,["H4325"]],[40,44,["H779"]]]},{"k":3811,"v":[[0,3,["H3548"]],[3,9,["H7650","(H853)"]],[9,11,["H559"]],[11,12,["H413"]],[12,14,["H802"]],[14,15,["H518"]],[15,16,["H3808"]],[16,17,["H376"]],[17,19,["H7901"]],[19,20,["H854"]],[20,23,["H518"]],[23,26,["H3808"]],[26,28,["H7847"]],[28,30,["H2932"]],[30,34,["H8478"]],[34,36,["H376"]],[36,39,["H5352"]],[39,41,["H428"]],[41,42,["H4751"]],[42,43,["H4480","H4325"]],[43,47,["H779"]]]},{"k":3812,"v":[[0,2,["H3588"]],[2,3,["H859"]],[3,6,["H7847"]],[6,10,["H8478"]],[10,12,["H376"]],[12,14,["H3588"]],[14,17,["H2930"]],[17,20,["H376"]],[20,22,["H5414","(H853)","H7903"]],[22,25,["H4480","H1107"]],[25,27,["H376"]]]},{"k":3813,"v":[[0,3,["H3548"]],[3,5,["H7650","(H853)"]],[5,7,["H802"]],[7,10,["H7621"]],[10,12,["H423"]],[12,15,["H3548"]],[15,17,["H559"]],[17,20,["H802"]],[20,22,["H3068"]],[22,23,["H5414"]],[23,26,["H423"]],[26,29,["H7621"]],[29,30,["H8432"]],[30,32,["H5971"]],[32,35,["H3068"]],[35,37,["H5414","(H853)"]],[37,39,["H3409"]],[39,41,["H5307"]],[41,44,["H990"]],[44,46,["H6639"]]]},{"k":3814,"v":[[0,2,["H428"]],[2,3,["H4325"]],[3,7,["H779"]],[7,9,["H935"]],[9,12,["H4578"]],[12,16,["H990"]],[16,18,["H6638"]],[18,21,["H3409"]],[21,23,["H5307"]],[23,26,["H802"]],[26,28,["H559"]],[28,29,["H543"]],[29,30,["H543"]]]},{"k":3815,"v":[[0,3,["H3548"]],[3,5,["H3789"]],[5,6,["H428","(H853)"]],[6,7,["H423"]],[7,10,["H5612"]],[10,16,["H4229"]],[16,17,["H413"]],[17,19,["H4751"]],[19,20,["H4325"]]]},{"k":3816,"v":[[0,4,["(H853)"]],[4,6,["H802"]],[6,8,["H8248","(H853)"]],[8,10,["H4751"]],[10,11,["H4325"]],[11,15,["H779"]],[15,18,["H4325"]],[18,22,["H779"]],[22,24,["H935"]],[24,29,["H4751"]]]},{"k":3817,"v":[[0,3,["H3548"]],[3,5,["H3947","(H853)"]],[5,7,["H7068"]],[7,8,["H4503"]],[8,12,["H802"]],[12,13,["H4480","H3027"]],[13,16,["H5130","(H853)"]],[16,18,["H4503"]],[18,19,["H6440"]],[19,21,["H3068"]],[21,23,["H7126"]],[23,25,["H413"]],[25,27,["H4196"]]]},{"k":3818,"v":[[0,3,["H3548"]],[3,7,["H7061"]],[7,8,["H4480"]],[8,10,["H4503"]],[10,11,["(H853)"]],[11,13,["H234"]],[13,16,["H6999"]],[16,20,["H4196"]],[20,22,["H310"]],[22,24,["(H853)"]],[24,26,["H802"]],[26,28,["H8248","(H853)"]],[28,30,["H4325"]]]},{"k":3819,"v":[[0,8,["H8248","(H853)"]],[8,10,["H4325"]],[10,16,["H1961"]],[16,18,["H518"]],[18,21,["H2930"]],[21,24,["H4603"]],[24,25,["H4604"]],[25,28,["H376"]],[28,31,["H4325"]],[31,35,["H779"]],[35,37,["H935"]],[37,42,["H4751"]],[42,45,["H990"]],[45,47,["H6638"]],[47,50,["H3409"]],[50,52,["H5307"]],[52,55,["H802"]],[55,57,["H1961"]],[57,59,["H423"]],[59,60,["H7130"]],[60,62,["H5971"]]]},{"k":3820,"v":[[0,2,["H518"]],[2,4,["H802"]],[4,6,["H3808"]],[6,7,["H2930"]],[7,10,["H2889"]],[10,15,["H5352"]],[15,18,["H2232"]],[18,19,["H2233"]]]},{"k":3821,"v":[[0,1,["H2063"]],[1,4,["H8451"]],[4,6,["H7068"]],[6,7,["H834"]],[7,9,["H802"]],[9,11,["H7847"]],[11,15,["H8478"]],[15,17,["H376"]],[17,20,["H2930"]]]},{"k":3822,"v":[[0,1,["H176"]],[1,2,["H834"]],[2,4,["H7307"]],[4,6,["H7068"]],[6,7,["H5674"]],[7,8,["H5921"]],[8,13,["H7065","(H853)"]],[13,16,["H802"]],[16,19,["H5975","(H853)"]],[19,21,["H802"]],[21,22,["H6440"]],[22,24,["H3068"]],[24,27,["H3548"]],[27,29,["H6213"]],[29,31,["(H853)"]],[31,32,["H3605"]],[32,33,["H2063"]],[33,34,["H8451"]]]},{"k":3823,"v":[[0,4,["H376"]],[4,6,["H5352"]],[6,8,["H4480","H5771"]],[8,10,["H1931"]],[10,11,["H802"]],[11,13,["H5375","(H853)"]],[13,15,["H5771"]]]},{"k":3824,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3825,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H3588"]],[11,13,["H376"]],[13,14,["H176"]],[14,15,["H802"]],[15,17,["H6381"]],[17,20,["H5087"]],[20,22,["H5088"]],[22,25,["H5139"]],[25,27,["H5144"]],[27,31,["H3068"]]]},{"k":3826,"v":[[0,3,["H5144"]],[3,6,["H4480","H3196"]],[6,9,["H7941"]],[9,12,["H8354"]],[12,13,["H3808"]],[13,14,["H2558"]],[14,16,["H3196"]],[16,18,["H2558"]],[18,21,["H7941"]],[21,22,["H3808"]],[22,25,["H8354"]],[25,26,["H3605"]],[26,27,["H4952"]],[27,29,["H6025"]],[29,30,["H3808"]],[30,31,["H398"]],[31,32,["H3892"]],[32,33,["H6025"]],[33,35,["H3002"]]]},{"k":3827,"v":[[0,1,["H3605"]],[1,3,["H3117"]],[3,6,["H5145"]],[6,9,["H398"]],[9,10,["H3808","H4480","H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,16,["H3196"]],[16,17,["H4480","H1612"]],[17,20,["H4480","H2785"]],[20,22,["H5704"]],[22,24,["H2085"]]]},{"k":3828,"v":[[0,1,["H3605"]],[1,3,["H3117"]],[3,6,["H5088"]],[6,9,["H5145"]],[9,12,["H3808"]],[12,13,["H8593"]],[13,14,["H5674"]],[14,15,["H5921"]],[15,17,["H7218"]],[17,18,["H5704"]],[18,20,["H3117"]],[20,22,["H4390"]],[22,25,["H834"]],[25,27,["H5144"]],[27,31,["H3068"]],[31,34,["H1961"]],[34,35,["H6918"]],[35,40,["H6545"]],[40,43,["H8181"]],[43,46,["H7218"]],[46,47,["H1431"]]]},{"k":3829,"v":[[0,1,["H3605"]],[1,3,["H3117"]],[3,6,["H5144"]],[6,10,["H3068"]],[10,13,["H935"]],[13,14,["H5921"]],[14,15,["H3808"]],[15,16,["H4191"]],[16,17,["H5315"]]]},{"k":3830,"v":[[0,3,["H3808"]],[3,6,["H2930"]],[6,9,["H1"]],[9,13,["H517"]],[13,16,["H251"]],[16,20,["H269"]],[20,23,["H4191"]],[23,24,["H3588"]],[24,26,["H5145"]],[26,29,["H430"]],[29,31,["H5921"]],[31,33,["H7218"]]]},{"k":3831,"v":[[0,1,["H3605"]],[1,3,["H3117"]],[3,6,["H5145"]],[6,7,["H1931"]],[7,9,["H6918"]],[9,12,["H3068"]]]},{"k":3832,"v":[[0,2,["H3588"]],[2,4,["H4191"]],[4,5,["H4191"]],[5,6,["H6621"]],[6,7,["H6597"]],[7,8,["H5921"]],[8,13,["H2930"]],[13,15,["H7218"]],[15,18,["H5145"]],[18,22,["H1548"]],[22,24,["H7218"]],[24,27,["H3117"]],[27,30,["H2893"]],[30,33,["H7637"]],[33,34,["H3117"]],[34,37,["H1548"]],[37,38,[]]]},{"k":3833,"v":[[0,4,["H8066"]],[4,5,["H3117"]],[5,8,["H935"]],[8,9,["H8147"]],[9,10,["H8449"]],[10,11,["H176"]],[11,12,["H8147"]],[12,13,["H1121"]],[13,14,["H3123"]],[14,15,["H413"]],[15,17,["H3548"]],[17,18,["H413"]],[18,20,["H6607"]],[20,23,["H168"]],[23,26,["H4150"]]]},{"k":3834,"v":[[0,3,["H3548"]],[3,5,["H6213"]],[5,7,["H259"]],[7,11,["H2403"]],[11,14,["H259"]],[14,18,["H5930"]],[18,22,["H3722"]],[22,23,["H5921"]],[23,26,["H4480","H834"]],[26,28,["H2398"]],[28,29,["H5921"]],[29,31,["H5315"]],[31,34,["H6942","(H853)"]],[34,36,["H7218"]],[36,38,["H1931"]],[38,39,["H3117"]]]},{"k":3835,"v":[[0,4,["H5144"]],[4,7,["H3068","(H853)"]],[7,9,["H3117"]],[9,12,["H5145"]],[12,15,["H935"]],[15,17,["H3532"]],[17,20,["H1121"]],[20,21,["H8141"]],[21,25,["H817"]],[25,28,["H3117"]],[28,31,["H7223"]],[31,34,["H5307"]],[34,35,["H3588"]],[35,37,["H5145"]],[37,39,["H2930"]]]},{"k":3836,"v":[[0,2,["H2063"]],[2,5,["H8451"]],[5,8,["H5139"]],[8,9,["H3117"]],[9,11,["H3117"]],[11,14,["H5145"]],[14,16,["H4390"]],[16,20,["H935"]],[20,21,["H413"]],[21,23,["H6607"]],[23,26,["H168"]],[26,29,["H4150"]]]},{"k":3837,"v":[[0,4,["H7126","(H853)"]],[4,6,["H7133"]],[6,9,["H3068"]],[9,10,["H259"]],[10,12,["H3532"]],[12,15,["H1121"]],[15,16,["H8141"]],[16,18,["H8549"]],[18,22,["H5930"]],[22,24,["H259"]],[24,26,["H3535"]],[26,29,["H1323"]],[29,30,["H8141"]],[30,32,["H8549"]],[32,36,["H2403"]],[36,38,["H259"]],[38,39,["H352"]],[39,41,["H8549"]],[41,44,["H8002"]]]},{"k":3838,"v":[[0,3,["H5536"]],[3,6,["H4682"]],[6,7,["H2471"]],[7,10,["H5560"]],[10,11,["H1101"]],[11,13,["H8081"]],[13,15,["H7550"]],[15,18,["H4682"]],[18,19,["H4886"]],[19,21,["H8081"]],[21,25,["H4503"]],[25,29,["H5262"]]]},{"k":3839,"v":[[0,3,["H3548"]],[3,5,["H7126"]],[5,7,["H6440"]],[7,9,["H3068"]],[9,12,["H6213","(H853)"]],[12,15,["H2403"]],[15,19,["H5930"]]]},{"k":3840,"v":[[0,4,["H6213"]],[4,6,["H352"]],[6,9,["H2077"]],[9,12,["H8002"]],[12,15,["H3068"]],[15,16,["H5921"]],[16,18,["H5536"]],[18,21,["H4682"]],[21,23,["H3548"]],[23,25,["H6213"]],[25,26,["(H853)"]],[26,29,["H4503"]],[29,33,["H5262"]]]},{"k":3841,"v":[[0,3,["H5139"]],[3,5,["H1548","(H853)"]],[5,7,["H7218"]],[7,10,["H5145"]],[10,13,["H6607"]],[13,16,["H168"]],[16,19,["H4150"]],[19,22,["H3947","(H853)"]],[22,24,["H8181"]],[24,27,["H7218"]],[27,30,["H5145"]],[30,32,["H5414"]],[32,34,["H5921"]],[34,36,["H784"]],[36,37,["H834"]],[37,39,["H8478"]],[39,41,["H2077"]],[41,45,["H8002"]]]},{"k":3842,"v":[[0,3,["H3548"]],[3,5,["H3947","(H853)"]],[5,7,["H1311"]],[7,8,["H2220"]],[8,9,["H4480"]],[9,11,["H352"]],[11,13,["H259"]],[13,14,["H4682"]],[14,15,["H2471"]],[15,17,["H4480"]],[17,19,["H5536"]],[19,21,["H259"]],[21,22,["H4682"]],[22,23,["H7550"]],[23,26,["H5414"]],[26,28,["H5921"]],[28,30,["H3709"]],[30,33,["H5139"]],[33,34,["H310","(H853)"]],[34,39,["H5145"]],[39,41,["H1548"]]]},{"k":3843,"v":[[0,3,["H3548"]],[3,5,["H5130"]],[5,10,["H8573"]],[10,11,["H6440"]],[11,13,["H3068"]],[13,14,["H1931"]],[14,16,["H6944"]],[16,19,["H3548"]],[19,20,["H5921"]],[20,22,["H8573"]],[22,23,["H2373"]],[23,25,["H8641"]],[25,26,["H7785"]],[26,29,["H310"]],[29,31,["H5139"]],[31,33,["H8354"]],[33,34,["H3196"]]]},{"k":3844,"v":[[0,1,["H2063"]],[1,4,["H8451"]],[4,7,["H5139"]],[7,8,["H834"]],[8,10,["H5087"]],[10,14,["H7133"]],[14,17,["H3068"]],[17,18,["H5921"]],[18,20,["H5145"]],[20,21,["H4480","H905"]],[21,23,["H834"]],[23,25,["H3027"]],[25,27,["H5381"]],[27,29,["H6310"]],[29,31,["H5088"]],[31,32,["H834"]],[32,34,["H5087"]],[34,35,["H3651"]],[35,38,["H6213"]],[38,39,["H5921"]],[39,41,["H8451"]],[41,44,["H5145"]]]},{"k":3845,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3846,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,3,["H175"]],[3,5,["H413"]],[5,7,["H1121"]],[7,8,["H559"]],[8,11,["H3541"]],[11,14,["H1288","(H853)"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,19,["H559"]],[19,21,[]]]},{"k":3847,"v":[[0,2,["H3068"]],[2,3,["H1288"]],[3,6,["H8104"]],[6,7,[]]]},{"k":3848,"v":[[0,2,["H3068"]],[2,5,["H6440"]],[5,6,["H215"]],[6,7,["H413"]],[7,11,["H2603"]],[11,13,[]]]},{"k":3849,"v":[[0,2,["H3068"]],[2,4,["H5375"]],[4,6,["H6440"]],[6,7,["H413"]],[7,10,["H7760"]],[10,12,["H7965"]]]},{"k":3850,"v":[[0,4,["H7760","(H853)"]],[4,6,["H8034"]],[6,7,["H5921"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,13,["H589"]],[13,15,["H1288"]],[15,16,[]]]},{"k":3851,"v":[[0,5,["H1961"]],[5,8,["H3117"]],[8,10,["H4872"]],[10,12,["H3615"]],[12,14,["H6965","(H853)"]],[14,16,["H4908"]],[16,19,["H4886"]],[19,22,["H6942"]],[22,25,["H3605"]],[25,27,["H3627"]],[27,31,["H4196"]],[31,33,["H3605"]],[33,35,["H3627"]],[35,39,["H4886"]],[39,42,["H6942"]],[42,43,[]]]},{"k":3852,"v":[[0,3,["H5387"]],[3,5,["H3478"]],[5,6,["H7218"]],[6,9,["H1004"]],[9,12,["H1"]],[12,13,["H1992"]],[13,16,["H5387"]],[16,19,["H4294"]],[19,22,["H5975"]],[22,23,["H1992"]],[23,26,["H5921","H6485"]],[26,27,["H7126"]]]},{"k":3853,"v":[[0,3,["H935","(H853)"]],[3,5,["H7133"]],[5,6,["H6440"]],[6,8,["H3068"]],[8,9,["H8337"]],[9,10,["H6632"]],[10,11,["H5699"]],[11,13,["H8147","H6240"]],[13,14,["H1241"]],[14,16,["H5699"]],[16,17,["H5921"]],[17,18,["H8147"]],[18,21,["H5387"]],[21,25,["H259"]],[25,27,["H7794"]],[27,30,["H7126"]],[30,32,["H6440"]],[32,34,["H4908"]]]},{"k":3854,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3855,"v":[[0,1,["H3947"]],[1,3,["H4480","H854"]],[3,8,["H1961"]],[8,10,["H5647","(H853)"]],[10,12,["H5656"]],[12,15,["H168"]],[15,18,["H4150"]],[18,22,["H5414"]],[22,24,["H413"]],[24,26,["H3881"]],[26,29,["H376"]],[29,31,["H6310"]],[31,33,["H5656"]]]},{"k":3856,"v":[[0,2,["H4872"]],[2,3,["H3947","(H853)"]],[3,5,["H5699"]],[5,8,["H1241"]],[8,10,["H5414"]],[10,12,["H413"]],[12,14,["H3881"]]]},{"k":3857,"v":[[0,0,["(H853)"]],[0,1,["H8147"]],[1,2,["H5699"]],[2,4,["H702"]],[4,5,["H1241"]],[5,7,["H5414"]],[7,10,["H1121"]],[10,12,["H1648"]],[12,14,["H6310"]],[14,16,["H5656"]]]},{"k":3858,"v":[[0,2,["H702"]],[2,3,["H5699"]],[3,5,["H8083"]],[5,6,["H1241"]],[6,8,["H5414"]],[8,11,["H1121"]],[11,13,["H4847"]],[13,15,["H6310"]],[15,17,["H5656"]],[17,20,["H3027"]],[20,22,["H385"]],[22,24,["H1121"]],[24,26,["H175"]],[26,28,["H3548"]]]},{"k":3859,"v":[[0,4,["H1121"]],[4,6,["H6955"]],[6,8,["H5414"]],[8,9,["H3808"]],[9,10,["H3588"]],[10,12,["H5656"]],[12,15,["H6944"]],[15,17,["H5921"]],[17,23,["H5375"]],[23,26,["H3802"]]]},{"k":3860,"v":[[0,3,["H5387"]],[3,4,["H7126","(H853)"]],[4,6,["H2598"]],[6,9,["H4196"]],[9,12,["H3117"]],[12,16,["H4886"]],[16,19,["H5387"]],[19,20,["H7126","(H853)"]],[20,22,["H7133"]],[22,23,["H6440"]],[23,25,["H4196"]]]},{"k":3861,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H7126","(H853)"]],[9,11,["H7133"]],[11,12,["H259"]],[12,13,["H5387"]],[13,16,["H3117","H259","H5387","H3117"]],[16,19,["H2598"]],[19,22,["H4196"]]]},{"k":3862,"v":[[0,4,["H7126","(H853)"]],[4,6,["H7133"]],[6,8,["H7223"]],[8,9,["H3117"]],[9,10,["H1961"]],[10,11,["H5177"]],[11,13,["H1121"]],[13,15,["H5992"]],[15,18,["H4294"]],[18,20,["H3063"]]]},{"k":3863,"v":[[0,3,["H7133"]],[3,5,["H259"]],[5,6,["H3701"]],[6,7,["H7086"]],[7,9,["H4948"]],[9,13,["H3967"]],[13,15,["H7970"]],[15,17,["H259"]],[17,18,["H3701"]],[18,19,["H4219"]],[19,21,["H7657"]],[21,22,["H8255"]],[22,25,["H8255"]],[25,28,["H6944"]],[28,29,["H8147"]],[29,33,["H4392"]],[33,36,["H5560"]],[36,37,["H1101"]],[37,39,["H8081"]],[39,43,["H4503"]]]},{"k":3864,"v":[[0,1,["H259"]],[1,2,["H3709"]],[2,4,["H6235"]],[4,7,["H2091"]],[7,8,["H4392"]],[8,10,["H7004"]]]},{"k":3865,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3866,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3867,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H5177"]],[26,28,["H1121"]],[28,30,["H5992"]]]},{"k":3868,"v":[[0,3,["H8145"]],[3,4,["H3117"]],[4,5,["H5417"]],[5,7,["H1121"]],[7,9,["H6686"]],[9,10,["H5387"]],[10,12,["H3485"]],[12,14,["H7126"]]]},{"k":3869,"v":[[0,2,["H7126"]],[2,3,["(H853)"]],[3,5,["H7133"]],[5,6,["H259"]],[6,7,["H3701"]],[7,8,["H7086"]],[8,10,["H4948"]],[10,14,["H3967"]],[14,16,["H7970"]],[16,18,["H259"]],[18,19,["H3701"]],[19,20,["H4219"]],[20,22,["H7657"]],[22,23,["H8255"]],[23,26,["H8255"]],[26,29,["H6944"]],[29,30,["H8147"]],[30,33,["H4392"]],[33,36,["H5560"]],[36,37,["H1101"]],[37,39,["H8081"]],[39,43,["H4503"]]]},{"k":3870,"v":[[0,1,["H259"]],[1,2,["H3709"]],[2,4,["H2091"]],[4,6,["H6235"]],[6,8,["H4392"]],[8,10,["H7004"]]]},{"k":3871,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3872,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3873,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H5417"]],[26,28,["H1121"]],[28,30,["H6686"]]]},{"k":3874,"v":[[0,3,["H7992"]],[3,4,["H3117"]],[4,5,["H446"]],[5,7,["H1121"]],[7,9,["H2497"]],[9,10,["H5387"]],[10,13,["H1121"]],[13,15,["H2074"]],[15,17,[]]]},{"k":3875,"v":[[0,2,["H7133"]],[2,4,["H259"]],[4,5,["H3701"]],[5,6,["H7086"]],[6,8,["H4948"]],[8,12,["H3967"]],[12,14,["H7970"]],[14,16,["H259"]],[16,17,["H3701"]],[17,18,["H4219"]],[18,20,["H7657"]],[20,21,["H8255"]],[21,24,["H8255"]],[24,27,["H6944"]],[27,28,["H8147"]],[28,31,["H4392"]],[31,34,["H5560"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,41,["H4503"]]]},{"k":3876,"v":[[0,1,["H259"]],[1,2,["H2091"]],[2,3,["H3709"]],[3,5,["H6235"]],[5,7,["H4392"]],[7,9,["H7004"]]]},{"k":3877,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3878,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3879,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H446"]],[26,28,["H1121"]],[28,30,["H2497"]]]},{"k":3880,"v":[[0,3,["H7243"]],[3,4,["H3117"]],[4,5,["H468"]],[5,7,["H1121"]],[7,9,["H7707"]],[9,10,["H5387"]],[10,13,["H1121"]],[13,15,["H7205"]],[15,17,[]]]},{"k":3881,"v":[[0,2,["H7133"]],[2,4,["H259"]],[4,5,["H3701"]],[5,6,["H7086"]],[6,9,["H4948"]],[9,12,["H3967"]],[12,14,["H7970"]],[14,16,["H259"]],[16,17,["H3701"]],[17,18,["H4219"]],[18,20,["H7657"]],[20,21,["H8255"]],[21,24,["H8255"]],[24,27,["H6944"]],[27,28,["H8147"]],[28,31,["H4392"]],[31,34,["H5560"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,41,["H4503"]]]},{"k":3882,"v":[[0,1,["H259"]],[1,2,["H2091"]],[2,3,["H3709"]],[3,5,["H6235"]],[5,7,["H4392"]],[7,9,["H7004"]]]},{"k":3883,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3884,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3885,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H468"]],[26,28,["H1121"]],[28,30,["H7707"]]]},{"k":3886,"v":[[0,3,["H2549"]],[3,4,["H3117"]],[4,5,["H8017"]],[5,7,["H1121"]],[7,9,["H6701"]],[9,10,["H5387"]],[10,13,["H1121"]],[13,15,["H8095"]],[15,17,[]]]},{"k":3887,"v":[[0,2,["H7133"]],[2,4,["H259"]],[4,5,["H3701"]],[5,6,["H7086"]],[6,8,["H4948"]],[8,12,["H3967"]],[12,14,["H7970"]],[14,16,["H259"]],[16,17,["H3701"]],[17,18,["H4219"]],[18,20,["H7657"]],[20,21,["H8255"]],[21,24,["H8255"]],[24,27,["H6944"]],[27,28,["H8147"]],[28,31,["H4392"]],[31,34,["H5560"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,41,["H4503"]]]},{"k":3888,"v":[[0,1,["H259"]],[1,2,["H2091"]],[2,3,["H3709"]],[3,5,["H6235"]],[5,7,["H4392"]],[7,9,["H7004"]]]},{"k":3889,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3890,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3891,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H8017"]],[26,28,["H1121"]],[28,30,["H6701"]]]},{"k":3892,"v":[[0,3,["H8345"]],[3,4,["H3117"]],[4,5,["H460"]],[5,7,["H1121"]],[7,9,["H1845"]],[9,10,["H5387"]],[10,13,["H1121"]],[13,15,["H1410"]],[15,16,[]]]},{"k":3893,"v":[[0,2,["H7133"]],[2,4,["H259"]],[4,5,["H3701"]],[5,6,["H7086"]],[6,9,["H4948"]],[9,12,["H3967"]],[12,14,["H7970"]],[14,16,["H259"]],[16,17,["H3701"]],[17,18,["H4219"]],[18,20,["H7657"]],[20,21,["H8255"]],[21,24,["H8255"]],[24,27,["H6944"]],[27,28,["H8147"]],[28,31,["H4392"]],[31,34,["H5560"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,41,["H4503"]]]},{"k":3894,"v":[[0,1,["H259"]],[1,2,["H2091"]],[2,3,["H3709"]],[3,5,["H6235"]],[5,7,["H4392"]],[7,9,["H7004"]]]},{"k":3895,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3896,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3897,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H460"]],[26,28,["H1121"]],[28,30,["H1845"]]]},{"k":3898,"v":[[0,3,["H7637"]],[3,4,["H3117"]],[4,5,["H476"]],[5,7,["H1121"]],[7,9,["H5989"]],[9,10,["H5387"]],[10,13,["H1121"]],[13,15,["H669"]],[15,16,[]]]},{"k":3899,"v":[[0,2,["H7133"]],[2,4,["H259"]],[4,5,["H3701"]],[5,6,["H7086"]],[6,8,["H4948"]],[8,12,["H3967"]],[12,14,["H7970"]],[14,16,["H259"]],[16,17,["H3701"]],[17,18,["H4219"]],[18,20,["H7657"]],[20,21,["H8255"]],[21,24,["H8255"]],[24,27,["H6944"]],[27,28,["H8147"]],[28,31,["H4392"]],[31,34,["H5560"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,41,["H4503"]]]},{"k":3900,"v":[[0,1,["H259"]],[1,2,["H2091"]],[2,3,["H3709"]],[3,5,["H6235"]],[5,7,["H4392"]],[7,9,["H7004"]]]},{"k":3901,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3902,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3903,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H476"]],[26,28,["H1121"]],[28,30,["H5989"]]]},{"k":3904,"v":[[0,3,["H8066"]],[3,4,["H3117"]],[4,6,["H1583"]],[6,8,["H1121"]],[8,10,["H6301"]],[10,11,["H5387"]],[11,14,["H1121"]],[14,16,["H4519"]]]},{"k":3905,"v":[[0,2,["H7133"]],[2,4,["H259"]],[4,5,["H3701"]],[5,6,["H7086"]],[6,9,["H4948"]],[9,12,["H3967"]],[12,14,["H7970"]],[14,16,["H259"]],[16,17,["H3701"]],[17,18,["H4219"]],[18,20,["H7657"]],[20,21,["H8255"]],[21,24,["H8255"]],[24,27,["H6944"]],[27,28,["H8147"]],[28,31,["H4392"]],[31,34,["H5560"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,41,["H4503"]]]},{"k":3906,"v":[[0,1,["H259"]],[1,2,["H2091"]],[2,3,["H3709"]],[3,5,["H6235"]],[5,7,["H4392"]],[7,9,["H7004"]]]},{"k":3907,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3908,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3909,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H1583"]],[26,28,["H1121"]],[28,30,["H6301"]]]},{"k":3910,"v":[[0,3,["H8671"]],[3,4,["H3117"]],[4,5,["H27"]],[5,7,["H1121"]],[7,9,["H1441"]],[9,10,["H5387"]],[10,13,["H1121"]],[13,15,["H1144"]],[15,16,[]]]},{"k":3911,"v":[[0,2,["H7133"]],[2,4,["H259"]],[4,5,["H3701"]],[5,6,["H7086"]],[6,8,["H4948"]],[8,12,["H3967"]],[12,14,["H7970"]],[14,16,["H259"]],[16,17,["H3701"]],[17,18,["H4219"]],[18,20,["H7657"]],[20,21,["H8255"]],[21,24,["H8255"]],[24,27,["H6944"]],[27,28,["H8147"]],[28,31,["H4392"]],[31,34,["H5560"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,41,["H4503"]]]},{"k":3912,"v":[[0,1,["H259"]],[1,2,["H2091"]],[2,3,["H3709"]],[3,5,["H6235"]],[5,7,["H4392"]],[7,9,["H7004"]]]},{"k":3913,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3914,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3915,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H27"]],[26,28,["H1121"]],[28,30,["H1441"]]]},{"k":3916,"v":[[0,3,["H6224"]],[3,4,["H3117"]],[4,5,["H295"]],[5,7,["H1121"]],[7,9,["H5996"]],[9,10,["H5387"]],[10,13,["H1121"]],[13,15,["H1835"]],[15,16,[]]]},{"k":3917,"v":[[0,2,["H7133"]],[2,4,["H259"]],[4,5,["H3701"]],[5,6,["H7086"]],[6,8,["H4948"]],[8,12,["H3967"]],[12,14,["H7970"]],[14,16,["H259"]],[16,17,["H3701"]],[17,18,["H4219"]],[18,20,["H7657"]],[20,21,["H8255"]],[21,24,["H8255"]],[24,27,["H6944"]],[27,28,["H8147"]],[28,31,["H4392"]],[31,34,["H5560"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,41,["H4503"]]]},{"k":3918,"v":[[0,1,["H259"]],[1,2,["H2091"]],[2,3,["H3709"]],[3,5,["H6235"]],[5,7,["H4392"]],[7,9,["H7004"]]]},{"k":3919,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3920,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3921,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H295"]],[26,28,["H1121"]],[28,30,["H5996"]]]},{"k":3922,"v":[[0,3,["H6249","H6240","(H3117)"]],[3,4,["H3117"]],[4,5,["H6295"]],[5,7,["H1121"]],[7,9,["H5918"]],[9,10,["H5387"]],[10,13,["H1121"]],[13,15,["H836"]],[15,16,[]]]},{"k":3923,"v":[[0,2,["H7133"]],[2,4,["H259"]],[4,5,["H3701"]],[5,6,["H7086"]],[6,8,["H4948"]],[8,12,["H3967"]],[12,14,["H7970"]],[14,16,["H259"]],[16,17,["H3701"]],[17,18,["H4219"]],[18,20,["H7657"]],[20,21,["H8255"]],[21,24,["H8255"]],[24,27,["H6944"]],[27,28,["H8147"]],[28,31,["H4392"]],[31,34,["H5560"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,41,["H4503"]]]},{"k":3924,"v":[[0,1,["H259"]],[1,2,["H2091"]],[2,3,["H3709"]],[3,5,["H6235"]],[5,7,["H4392"]],[7,9,["H7004"]]]},{"k":3925,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3926,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3927,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H6295"]],[26,28,["H1121"]],[28,30,["H5918"]]]},{"k":3928,"v":[[0,3,["H8147","H6240","(H3117)"]],[3,4,["H3117"]],[4,5,["H299"]],[5,7,["H1121"]],[7,9,["H5881"]],[9,10,["H5387"]],[10,13,["H1121"]],[13,15,["H5321"]],[15,16,[]]]},{"k":3929,"v":[[0,2,["H7133"]],[2,4,["H259"]],[4,5,["H3701"]],[5,6,["H7086"]],[6,8,["H4948"]],[8,12,["H3967"]],[12,14,["H7970"]],[14,16,["H259"]],[16,17,["H3701"]],[17,18,["H4219"]],[18,20,["H7657"]],[20,21,["H8255"]],[21,24,["H8255"]],[24,27,["H6944"]],[27,28,["H8147"]],[28,31,["H4392"]],[31,34,["H5560"]],[34,35,["H1101"]],[35,37,["H8081"]],[37,41,["H4503"]]]},{"k":3930,"v":[[0,1,["H259"]],[1,2,["H2091"]],[2,3,["H3709"]],[3,5,["H6235"]],[5,7,["H4392"]],[7,9,["H7004"]]]},{"k":3931,"v":[[0,1,["H259"]],[1,2,["H1121","H1241"]],[2,3,["H6499"]],[3,4,["H259"]],[4,5,["H352"]],[5,6,["H259"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,15,["H5930"]]]},{"k":3932,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]]]},{"k":3933,"v":[[0,4,["H2077"]],[4,7,["H8002"]],[7,8,["H8147"]],[8,9,["H1241"]],[9,10,["H2568"]],[10,11,["H352"]],[11,12,["H2568"]],[12,14,["H6260"]],[14,15,["H2568"]],[15,16,["H3532"]],[16,19,["H1121"]],[19,20,["H8141"]],[20,21,["H2088"]],[21,24,["H7133"]],[24,26,["H299"]],[26,28,["H1121"]],[28,30,["H5881"]]]},{"k":3934,"v":[[0,1,["H2063"]],[1,4,["H2598"]],[4,7,["H4196"]],[7,10,["H3117"]],[10,14,["H4886"]],[14,15,["H4480","H854"]],[15,17,["H5387"]],[17,19,["H3478"]],[19,20,["H8147","H6240"]],[20,21,["H7086"]],[21,23,["H3701"]],[23,24,["H8147","H6240"]],[24,25,["H3701"]],[25,26,["H4219"]],[26,27,["H8147","H6240"]],[27,28,["H3709"]],[28,30,["H2091"]]]},{"k":3935,"v":[[0,1,["H259"]],[1,2,["H7086"]],[2,4,["H3701"]],[4,7,["H3967"]],[7,9,["H7970"]],[9,11,["H259"]],[11,12,["H4219"]],[12,13,["H7657"]],[13,14,["H3605"]],[14,16,["H3701"]],[16,17,["H3627"]],[17,20,["H505"]],[20,22,["H702"]],[22,23,["H3967"]],[23,27,["H8255"]],[27,30,["H6944"]]]},{"k":3936,"v":[[0,2,["H2091"]],[2,3,["H3709"]],[3,5,["H8147","H6240"]],[5,6,["H4392"]],[6,8,["H7004"]],[8,12,["H6235","H6235","H3709"]],[12,15,["H8255"]],[15,18,["H6944"]],[18,19,["H3605"]],[19,21,["H2091"]],[21,24,["H3709"]],[24,27,["H3967"]],[27,29,["H6242"]],[29,30,[]]]},{"k":3937,"v":[[0,1,["H3605"]],[1,3,["H1241"]],[3,7,["H5930"]],[7,9,["H8147","H6240"]],[9,10,["H6499"]],[10,12,["H352"]],[12,13,["H8147","H6240"]],[13,15,["H3532"]],[15,18,["H1121"]],[18,19,["H8141"]],[19,20,["H8147","H6240"]],[20,24,["H4503"]],[24,27,["H8163"]],[27,30,["H5795"]],[30,33,["H2403"]],[33,34,["H8147","H6240"]]]},{"k":3938,"v":[[0,2,["H3605"]],[2,4,["H1241"]],[4,7,["H2077"]],[7,11,["H8002"]],[11,13,["H6242"]],[13,15,["H702"]],[15,16,["H6499"]],[16,18,["H352"]],[18,19,["H8346"]],[19,22,["H6260"]],[22,23,["H8346"]],[23,25,["H3532"]],[25,28,["H1121"]],[28,29,["H8141"]],[29,30,["H8346"]],[30,31,["H2063"]],[31,34,["H2598"]],[34,37,["H4196"]],[37,39,["H310"]],[39,42,["H4886"]]]},{"k":3939,"v":[[0,3,["H4872"]],[3,5,["H935"]],[5,6,["H413"]],[6,8,["H168"]],[8,11,["H4150"]],[11,13,["H1696"]],[13,14,["H854"]],[14,18,["H8085","(H853)"]],[18,20,["H6963"]],[20,23,["H1696"]],[23,24,["H413"]],[24,27,["H4480","H5921"]],[27,30,["H3727"]],[30,31,["H834"]],[31,33,["H5921"]],[33,35,["H727"]],[35,37,["H5715"]],[37,39,["H4480","H996"]],[39,41,["H8147"]],[41,42,["H3742"]],[42,45,["H1696"]],[45,46,["H413"]],[46,47,[]]]},{"k":3940,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3941,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,3,["H175"]],[3,5,["H559"]],[5,6,["H413"]],[6,10,["H5927","(H853)"]],[10,12,["H5216"]],[12,14,["H7651"]],[14,15,["H5216"]],[15,18,["H215"]],[18,20,["H413","H4136","H6440"]],[20,22,["H4501"]]]},{"k":3942,"v":[[0,2,["H175"]],[2,3,["H6213"]],[3,4,["H3651"]],[4,6,["H5927"]],[6,8,["H5216"]],[8,11,["H413","H4136","H6440"]],[11,13,["H4501"]],[13,14,["H834"]],[14,16,["H3068"]],[16,17,["H6680","(H853)"]],[17,18,["H4872"]]]},{"k":3943,"v":[[0,2,["H2088"]],[2,3,["H4639"]],[3,6,["H4501"]],[6,9,["H4749"]],[9,10,["H2091"]],[10,11,["H5704"]],[11,13,["H3409"]],[13,15,["H5704"]],[15,17,["H6525"]],[17,21,["H4749"]],[21,25,["H4758"]],[25,26,["H834"]],[26,28,["H3068"]],[28,30,["H7200","(H853)"]],[30,31,["H4872"]],[31,32,["H3651"]],[32,34,["H6213","(H853)"]],[34,36,["H4501"]]]},{"k":3944,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3945,"v":[[0,1,["H3947","(H853)"]],[1,3,["H3881"]],[3,5,["H4480","H8432"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,11,["H2891"]],[11,12,[]]]},{"k":3946,"v":[[0,2,["H3541"]],[2,5,["H6213"]],[5,9,["H2891"]],[9,11,["H5137"]],[11,12,["H4325"]],[12,14,["H2403"]],[14,15,["H5921"]],[15,20,["H5674","H8593","H5921"]],[20,21,["H3605"]],[21,23,["H1320"]],[23,27,["H3526"]],[27,29,["H899"]],[29,34,["H2891"]]]},{"k":3947,"v":[[0,4,["H3947"]],[4,6,["H1121","H1241"]],[6,7,["H6499"]],[7,11,["H4503"]],[11,14,["H5560"]],[14,15,["H1101"]],[15,17,["H8081"]],[17,19,["H8145"]],[19,20,["H1121","H1241"]],[20,21,["H6499"]],[21,24,["H3947"]],[24,28,["H2403"]]]},{"k":3948,"v":[[0,4,["H7126","(H853)"]],[4,6,["H3881"]],[6,7,["H6440"]],[7,9,["H168"]],[9,12,["H4150"]],[12,16,["H6950","(H853)"]],[16,18,["H3605"]],[18,19,["H5712"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,25,[]]]},{"k":3949,"v":[[0,4,["H7126","(H853)"]],[4,6,["H3881"]],[6,7,["H6440"]],[7,9,["H3068"]],[9,12,["H1121"]],[12,14,["H3478"]],[14,16,["H5564","(H853)"]],[16,18,["H3027"]],[18,19,["H5921"]],[19,21,["H3881"]]]},{"k":3950,"v":[[0,2,["H175"]],[2,4,["H5130","(H853)"]],[4,6,["H3881"]],[6,7,["H6440"]],[7,9,["H3068"]],[9,12,["H8573"]],[12,13,["H4480","H854"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,21,["H1961","H5647","(H853)"]],[21,23,["H5656"]],[23,26,["H3068"]]]},{"k":3951,"v":[[0,3,["H3881"]],[3,5,["H5564","(H853)"]],[5,7,["H3027"]],[7,8,["H5921"]],[8,10,["H7218"]],[10,13,["H6499"]],[13,17,["H6213","(H853)"]],[17,19,["H259"]],[19,23,["H2403"]],[23,26,["H259"]],[26,30,["H5930"]],[30,33,["H3068"]],[33,37,["H3722"]],[37,38,["H5921"]],[38,40,["H3881"]]]},{"k":3952,"v":[[0,4,["H5975","(H853)"]],[4,6,["H3881"]],[6,7,["H6440"]],[7,8,["H175"]],[8,10,["H6440"]],[10,12,["H1121"]],[12,14,["H5130"]],[14,18,["H8573"]],[18,21,["H3068"]]]},{"k":3953,"v":[[0,4,["H914","(H853)"]],[4,6,["H3881"]],[6,8,["H4480","H8432"]],[8,10,["H1121"]],[10,12,["H3478"]],[12,15,["H3881"]],[15,17,["H1961"]],[17,18,[]]]},{"k":3954,"v":[[0,2,["H310"]],[2,3,["H3651"]],[3,6,["H3881"]],[6,8,["H935"]],[8,12,["H5647","(H853)"]],[12,15,["H168"]],[15,18,["H4150"]],[18,22,["H2891"]],[22,25,["H5130"]],[25,29,["H8573"]]]},{"k":3955,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,5,["H5414","H5414"]],[5,9,["H4480","H8432"]],[9,11,["H1121"]],[11,13,["H3478"]],[13,15,["H8478"]],[15,18,["H6363"]],[18,19,["H3605"]],[19,20,["H7358"]],[20,25,["H1060"]],[25,27,["H3605"]],[27,29,["H4480","H1121"]],[29,31,["H3478"]],[31,34,["H3947"]],[34,37,[]]]},{"k":3956,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H1060"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,13,["H120"]],[13,15,["H929"]],[15,18,["H3117"]],[18,21,["H5221"]],[21,22,["H3605"]],[22,23,["H1060"]],[23,26,["H776"]],[26,28,["H4714"]],[28,30,["H6942"]],[30,33,[]]]},{"k":3957,"v":[[0,4,["H3947","(H853)"]],[4,6,["H3881"]],[6,7,["H8478"]],[7,8,["H3605"]],[8,10,["H1060"]],[10,13,["H1121"]],[13,15,["H3478"]]]},{"k":3958,"v":[[0,4,["H5414","(H853)"]],[4,6,["H3881"]],[6,9,["H5414"]],[9,11,["H175"]],[11,15,["H1121"]],[15,17,["H4480","H8432"]],[17,19,["H1121"]],[19,21,["H3478"]],[21,23,["H5647","(H853)"]],[23,25,["H5656"]],[25,28,["H1121"]],[28,30,["H3478"]],[30,33,["H168"]],[33,36,["H4150"]],[36,41,["H3722"]],[41,42,["H5921"]],[42,44,["H1121"]],[44,46,["H3478"]],[46,49,["H1961"]],[49,50,["H3808"]],[50,51,["H5063"]],[51,54,["H1121"]],[54,56,["H3478"]],[56,59,["H1121"]],[59,61,["H3478"]],[61,63,["H5066"]],[63,64,["H413"]],[64,66,["H6944"]]]},{"k":3959,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,6,["H3605"]],[6,8,["H5712"]],[8,11,["H1121"]],[11,13,["H3478"]],[13,14,["H6213"]],[14,17,["H3881"]],[17,20,["H3605"]],[20,21,["H834"]],[21,23,["H3068"]],[23,24,["H6680","(H853)"]],[24,25,["H4872"]],[25,28,["H3881"]],[28,29,["H3651"]],[29,30,["H6213"]],[30,32,["H1121"]],[32,34,["H3478"]],[34,36,[]]]},{"k":3960,"v":[[0,3,["H3881"]],[3,5,["H2398"]],[5,8,["H3526"]],[8,10,["H899"]],[10,12,["H175"]],[12,13,["H5130"]],[13,17,["H8573"]],[17,18,["H6440"]],[18,20,["H3068"]],[20,22,["H175"]],[22,25,["H3722"]],[25,26,["H5921"]],[26,29,["H2891"]],[29,30,[]]]},{"k":3961,"v":[[0,2,["H310"]],[2,3,["H3651"]],[3,7,["H935","H3881"]],[7,9,["H5647","(H853)"]],[9,11,["H5656"]],[11,14,["H168"]],[14,17,["H4150"]],[17,18,["H6440"]],[18,19,["H175"]],[19,21,["H6440"]],[21,23,["H1121"]],[23,24,["H834"]],[24,26,["H3068"]],[26,28,["H6680","(H853)"]],[28,29,["H4872"]],[29,30,["H5921"]],[30,32,["H3881"]],[32,33,["H3651"]],[33,34,["H6213"]],[34,37,[]]]},{"k":3962,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3963,"v":[[0,1,["H2063"]],[1,4,["H834"]],[4,8,["H3881"]],[8,10,["H6242"]],[10,12,["H2568"]],[12,13,["H8141"]],[13,14,["H4480","H1121"]],[14,16,["H4605"]],[16,20,["H935"]],[20,23,["H6633","(H6635)"]],[23,25,["H5656"]],[25,28,["H168"]],[28,31,["H4150"]]]},{"k":3964,"v":[[0,4,["H4480","H1121"]],[4,6,["H2572"]],[6,7,["H8141"]],[7,12,["H7725","H4480","H6635"]],[12,14,["H5656"]],[14,18,["H5647"]],[18,19,["H3808"]],[19,20,["H5750"]]]},{"k":3965,"v":[[0,3,["H8334"]],[3,4,["H854"]],[4,6,["H251"]],[6,9,["H168"]],[9,12,["H4150"]],[12,14,["H8104"]],[14,16,["H4931"]],[16,19,["H5647"]],[19,20,["H3808"]],[20,21,["H5656"]],[21,22,["H3602"]],[22,25,["H6213"]],[25,28,["H3881"]],[28,31,["H4931"]]]},{"k":3966,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H4057"]],[9,11,["H5514"]],[11,14,["H7223"]],[14,15,["H2320"]],[15,18,["H8145"]],[18,19,["H8141"]],[19,24,["H3318"]],[24,27,["H4480","H776"]],[27,29,["H4714"]],[29,30,["H559"]]]},{"k":3967,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H6213","(H853)"]],[7,9,["H6453"]],[9,13,["H4150"]]]},{"k":3968,"v":[[0,3,["H702","H6240"]],[3,4,["H3117"]],[4,6,["H2088"]],[6,7,["H2320"]],[7,8,["H996"]],[8,9,["H6153"]],[9,12,["H6213"]],[12,17,["H4150"]],[17,20,["H3605"]],[20,22,["H2708"]],[22,28,["H3605"]],[28,30,["H4941"]],[30,34,["H6213"]],[34,35,[]]]},{"k":3969,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,12,["H6213"]],[12,14,["H6453"]]]},{"k":3970,"v":[[0,3,["H6213","(H853)"]],[3,5,["H6453"]],[5,8,["H702","H6240"]],[8,9,["H3117"]],[9,12,["H7223"]],[12,13,["H2320"]],[13,14,["H996"]],[14,15,["H6153"]],[15,18,["H4057"]],[18,20,["H5514"]],[20,23,["H3605"]],[23,24,["H834"]],[24,26,["H3068"]],[26,27,["H6680","(H853)"]],[27,28,["H4872"]],[28,29,["H3651"]],[29,30,["H6213"]],[30,32,["H1121"]],[32,34,["H3478"]]]},{"k":3971,"v":[[0,3,["H1961"]],[3,5,["H376"]],[5,6,["H834"]],[6,7,["H1961"]],[7,8,["H2931"]],[8,12,["H5315"]],[12,15,["H120"]],[15,18,["H3201"]],[18,19,["H3808"]],[19,20,["H6213"]],[20,22,["H6453"]],[22,24,["H1931"]],[24,25,["H3117"]],[25,28,["H7126"]],[28,29,["H6440"]],[29,30,["H4872"]],[30,32,["H6440"]],[32,33,["H175"]],[33,35,["H1931"]],[35,36,["H3117"]]]},{"k":3972,"v":[[0,2,["H1992"]],[2,3,["H376"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H587"]],[7,9,["H2931"]],[9,13,["H5315"]],[13,16,["H120"]],[16,17,["H4100"]],[17,21,["H1639"]],[21,25,["H1115"]],[25,26,["H7126","(H853)"]],[26,28,["H7133"]],[28,31,["H3068"]],[31,35,["H4150"]],[35,36,["H8432"]],[36,38,["H1121"]],[38,40,["H3478"]]]},{"k":3973,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,7,["H5975"]],[7,11,["H8085"]],[11,12,["H4100"]],[12,14,["H3068"]],[14,16,["H6680"]],[16,18,[]]]},{"k":3974,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3975,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H559"]],[7,8,["H3588"]],[8,10,["H376","H376"]],[10,13,["H176"]],[13,16,["H1755"]],[16,18,["H1961"]],[18,19,["H2931"]],[19,25,["H5315"]],[25,26,["H176"]],[26,30,["H1870"]],[30,32,["H7350"]],[32,36,["H6213"]],[36,38,["H6453"]],[38,41,["H3068"]]]},{"k":3976,"v":[[0,2,["H702","H6240"]],[2,3,["H3117"]],[3,6,["H8145"]],[6,7,["H2320"]],[7,8,["H996"]],[8,9,["H6153"]],[9,12,["H6213"]],[12,15,["H398"]],[15,17,["H5921"]],[17,19,["H4682"]],[19,21,["H4844"]],[21,22,[]]]},{"k":3977,"v":[[0,3,["H7604"]],[3,4,["H3808"]],[4,5,["H4480"]],[5,7,["H5704"]],[7,9,["H1242"]],[9,10,["H3808"]],[10,11,["H7665"]],[11,13,["H6106"]],[13,18,["H3605"]],[18,20,["H2708"]],[20,23,["H6453"]],[23,26,["H6213"]],[26,27,[]]]},{"k":3978,"v":[[0,3,["H376"]],[3,4,["H834"]],[4,6,["H2889"]],[6,8,["H1961"]],[8,9,["H3808"]],[9,12,["H1870"]],[12,14,["H2308"]],[14,16,["H6213"]],[16,18,["H6453"]],[18,21,["H1931"]],[21,22,["H5315"]],[22,26,["H3772"]],[26,30,["H4480","H5971"]],[30,31,["H3588"]],[31,33,["H7126"]],[33,34,["H3808"]],[34,36,["H7133"]],[36,39,["H3068"]],[39,43,["H4150"]],[43,44,["H1931"]],[44,45,["H376"]],[45,47,["H5375"]],[47,49,["H2399"]]]},{"k":3979,"v":[[0,2,["H3588"]],[2,4,["H1616"]],[4,6,["H1481"]],[6,7,["H854"]],[7,11,["H6213"]],[11,13,["H6453"]],[13,16,["H3068"]],[16,20,["H2708"]],[20,23,["H6453"]],[23,28,["H4941"]],[28,30,["H3651"]],[30,33,["H6213"]],[33,36,["H1961"]],[36,37,["H259"]],[37,38,["H2708"]],[38,42,["H1616"]],[42,48,["H249"]],[48,51,["H776"]]]},{"k":3980,"v":[[0,4,["H3117"]],[4,5,["(H853)"]],[5,7,["H4908"]],[7,10,["H6965"]],[10,12,["H6051"]],[12,13,["H3680","(H853)"]],[13,15,["H4908"]],[15,18,["H168"]],[18,21,["H5715"]],[21,24,["H6153"]],[24,26,["H1961"]],[26,27,["H5921"]],[27,29,["H4908"]],[29,34,["H4758"]],[34,36,["H784"]],[36,37,["H5704"]],[37,39,["H1242"]]]},{"k":3981,"v":[[0,1,["H3651"]],[1,3,["H1961"]],[3,4,["H8548"]],[4,6,["H6051"]],[6,7,["H3680"]],[7,13,["H4758"]],[13,15,["H784"]],[15,17,["H3915"]]]},{"k":3982,"v":[[0,2,["H6310"]],[2,4,["H6051"]],[4,7,["H5927"]],[7,8,["H4480","H5921"]],[8,10,["H168"]],[10,12,["H310"]],[12,13,["H3651"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,18,["H5265"]],[18,22,["H4725"]],[22,23,["H834"]],[23,25,["H6051"]],[25,26,["H7931"]],[26,27,["H8033"]],[27,29,["H1121"]],[29,31,["H3478"]],[31,34,["H2583"]]]},{"k":3983,"v":[[0,1,["H5921"]],[1,3,["H6310"]],[3,6,["H3068"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,11,["H5265"]],[11,13,["H5921"]],[13,15,["H6310"]],[15,18,["H3068"]],[18,20,["H2583"]],[20,23,["H3605","H3117","H834"]],[23,25,["H6051"]],[25,26,["H7931"]],[26,27,["H5921"]],[27,29,["H4908"]],[29,34,["H2583"]]]},{"k":3984,"v":[[0,4,["H6051"]],[4,6,["H748"]],[6,7,["H5921"]],[7,9,["H4908"]],[9,10,["H7227"]],[10,11,["H3117"]],[11,14,["H1121"]],[14,16,["H3478"]],[16,17,["H8104","(H853)"]],[17,19,["H4931"]],[19,22,["H3068"]],[22,24,["H5265"]],[24,25,["H3808"]]]},{"k":3985,"v":[[0,4,["H3426"]],[4,5,["H834"]],[5,7,["H6051"]],[7,8,["H1961"]],[8,10,["H4557"]],[10,11,["H3117"]],[11,12,["H5921"]],[12,14,["H4908"]],[14,16,["H5921"]],[16,18,["H6310"]],[18,21,["H3068"]],[21,26,["H2583"]],[26,29,["H5921"]],[29,31,["H6310"]],[31,34,["H3068"]],[34,36,["H5265"]]]},{"k":3986,"v":[[0,4,["H3426"]],[4,5,["H834"]],[5,7,["H6051"]],[7,8,["H1961"]],[8,10,["H4480","H6153"]],[10,11,["H5704"]],[11,13,["H1242"]],[13,17,["H6051"]],[17,20,["H5927"]],[20,23,["H1242"]],[23,26,["H5265"]],[26,27,["H176"]],[27,31,["H3119"]],[31,34,["H3915"]],[34,37,["H6051"]],[37,40,["H5927"]],[40,42,["H5265"]]]},{"k":3987,"v":[[0,1,["H176"]],[1,6,["H3117"]],[6,7,["H176"]],[7,9,["H2320"]],[9,10,["H176"]],[10,12,["H3117"]],[12,15,["H6051"]],[15,16,["H748"]],[16,17,["H5921"]],[17,19,["H4908"]],[19,20,["H7931"]],[20,21,["H5921"]],[21,23,["H1121"]],[23,25,["H3478"]],[25,29,["H2583"]],[29,31,["H5265"]],[31,32,["H3808"]],[32,38,["H5927"]],[38,40,["H5265"]]]},{"k":3988,"v":[[0,1,["H5921"]],[1,3,["H6310"]],[3,6,["H3068"]],[6,11,["H2583"]],[11,13,["H5921"]],[13,15,["H6310"]],[15,18,["H3068"]],[18,20,["H5265"]],[20,22,["H8104","(H853)"]],[22,24,["H4931"]],[24,27,["H3068"]],[27,28,["H5921"]],[28,30,["H6310"]],[30,33,["H3068"]],[33,36,["H3027"]],[36,38,["H4872"]]]},{"k":3989,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":3990,"v":[[0,1,["H6213"]],[1,3,["H8147"]],[3,4,["H2689"]],[4,6,["H3701"]],[6,10,["H4749"]],[10,13,["H6213"]],[13,18,["H1961"]],[18,22,["H4744"]],[22,25,["H5712"]],[25,29,["H4550","(H853)"]],[29,32,["H4264"]]]},{"k":3991,"v":[[0,5,["H8628"]],[5,8,["H3605"]],[8,10,["H5712"]],[10,13,["H3259"]],[13,14,["H413"]],[14,16,["H413"]],[16,18,["H6607"]],[18,21,["H168"]],[21,24,["H4150"]]]},{"k":3992,"v":[[0,2,["H518"]],[2,4,["H8628"]],[4,7,["H259"]],[7,11,["H5387"]],[11,14,["H7218"]],[14,17,["H505"]],[17,19,["H3478"]],[19,22,["H3259"]],[22,23,["H413"]],[23,24,[]]]},{"k":3993,"v":[[0,3,["H8628"]],[3,5,["H8643"]],[5,8,["H4264"]],[8,10,["H2583"]],[10,14,["H6924"]],[14,17,["H5265"]]]},{"k":3994,"v":[[0,3,["H8628"]],[3,5,["H8643"]],[5,8,["H8145"]],[8,11,["H4264"]],[11,13,["H2583"]],[13,17,["H8486"]],[17,21,["H5265"]],[21,24,["H8628"]],[24,26,["H8643"]],[26,29,["H4550"]]]},{"k":3995,"v":[[0,2,["(H853)"]],[2,4,["H6951"]],[4,9,["H6950"]],[9,12,["H8628"]],[12,16,["H3808"]],[16,19,["H7321"]]]},{"k":3996,"v":[[0,3,["H1121"]],[3,5,["H175"]],[5,7,["H3548"]],[7,9,["H8628"]],[9,12,["H2689"]],[12,16,["H1961"]],[16,21,["H2708"]],[21,23,["H5769"]],[23,26,["H1755"]]]},{"k":3997,"v":[[0,2,["H3588"]],[2,4,["H935"]],[4,6,["H4421"]],[6,9,["H776"]],[9,10,["H5921"]],[10,12,["H6862"]],[12,14,["H6887"]],[14,21,["H7321"]],[21,24,["H2689"]],[24,29,["H2142"]],[29,30,["H6440"]],[30,32,["H3068"]],[32,34,["H430"]],[34,39,["H3467"]],[39,42,["H4480","H341"]]]},{"k":3998,"v":[[0,4,["H3117"]],[4,7,["H8057"]],[7,12,["H4150"]],[12,16,["H7218"]],[16,19,["H2320"]],[19,22,["H8628"]],[22,25,["H2689"]],[25,26,["H5921"]],[26,29,["H5930"]],[29,31,["H5921"]],[31,33,["H2077"]],[33,37,["H8002"]],[37,41,["H1961"]],[41,46,["H2146"]],[46,47,["H6440"]],[47,49,["H430"]],[49,50,["H589"]],[50,53,["H3068"]],[53,55,["H430"]]]},{"k":3999,"v":[[0,5,["H1961"]],[5,8,["H6242"]],[8,12,["H8145"]],[12,13,["H2320"]],[13,16,["H8145"]],[16,17,["H8141"]],[17,20,["H6051"]],[20,23,["H5927"]],[23,25,["H4480","H5921"]],[25,27,["H4908"]],[27,30,["H5715"]]]},{"k":4000,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5265"]],[6,8,["H4550"]],[8,12,["H4480","H4057"]],[12,14,["H5514"]],[14,17,["H6051"]],[17,18,["H7931"]],[18,21,["H4057"]],[21,23,["H6290"]]]},{"k":4001,"v":[[0,3,["H7223"]],[3,6,["H5265"]],[6,8,["H5921"]],[8,10,["H6310"]],[10,13,["H3068"]],[13,16,["H3027"]],[16,18,["H4872"]]]},{"k":4002,"v":[[0,3,["H7223"]],[3,5,["H5265"]],[5,7,["H1714"]],[7,10,["H4264"]],[10,13,["H1121"]],[13,15,["H3063"]],[15,19,["H6635"]],[19,21,["H5921"]],[21,23,["H6635"]],[23,25,["H5177"]],[25,27,["H1121"]],[27,29,["H5992"]]]},{"k":4003,"v":[[0,2,["H5921"]],[2,4,["H6635"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H3485"]],[12,14,["H5417"]],[14,16,["H1121"]],[16,18,["H6686"]]]},{"k":4004,"v":[[0,2,["H5921"]],[2,4,["H6635"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H2074"]],[12,14,["H446"]],[14,16,["H1121"]],[16,18,["H2497"]]]},{"k":4005,"v":[[0,3,["H4908"]],[3,6,["H3381"]],[6,9,["H1121"]],[9,11,["H1648"]],[11,14,["H1121"]],[14,16,["H4847"]],[16,18,["H5265"]],[18,19,["H5375"]],[19,21,["H4908"]]]},{"k":4006,"v":[[0,3,["H1714"]],[3,6,["H4264"]],[6,8,["H7205"]],[8,10,["H5265"]],[10,14,["H6635"]],[14,16,["H5921"]],[16,18,["H6635"]],[18,20,["H468"]],[20,22,["H1121"]],[22,24,["H7707"]]]},{"k":4007,"v":[[0,2,["H5921"]],[2,4,["H6635"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H8095"]],[12,14,["H8017"]],[14,16,["H1121"]],[16,18,["H6701"]]]},{"k":4008,"v":[[0,2,["H5921"]],[2,4,["H6635"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H1410"]],[12,14,["H460"]],[14,16,["H1121"]],[16,18,["H1845"]]]},{"k":4009,"v":[[0,3,["H6956"]],[3,5,["H5265"]],[5,6,["H5375"]],[6,8,["H4720"]],[8,14,["H6965","(H853)"]],[14,16,["H4908"]],[16,17,["H5704"]],[17,19,["H935"]]]},{"k":4010,"v":[[0,3,["H1714"]],[3,6,["H4264"]],[6,9,["H1121"]],[9,11,["H669"]],[11,13,["H5265"]],[13,17,["H6635"]],[17,19,["H5921"]],[19,21,["H6635"]],[21,23,["H476"]],[23,25,["H1121"]],[25,27,["H5989"]]]},{"k":4011,"v":[[0,2,["H5921"]],[2,4,["H6635"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H4519"]],[12,14,["H1583"]],[14,16,["H1121"]],[16,18,["H6301"]]]},{"k":4012,"v":[[0,2,["H5921"]],[2,4,["H6635"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H1144"]],[12,14,["H27"]],[14,16,["H1121"]],[16,18,["H1441"]]]},{"k":4013,"v":[[0,3,["H1714"]],[3,6,["H4264"]],[6,9,["H1121"]],[9,11,["H1835"]],[11,13,["H5265"]],[13,17,["H622"]],[17,19,["H3605"]],[19,21,["H4264"]],[21,24,["H6635"]],[24,26,["H5921"]],[26,28,["H6635"]],[28,30,["H295"]],[30,32,["H1121"]],[32,34,["H5996"]]]},{"k":4014,"v":[[0,2,["H5921"]],[2,4,["H6635"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H836"]],[12,14,["H6295"]],[14,16,["H1121"]],[16,18,["H5918"]]]},{"k":4015,"v":[[0,2,["H5921"]],[2,4,["H6635"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H5321"]],[12,14,["H299"]],[14,16,["H1121"]],[16,18,["H5881"]]]},{"k":4016,"v":[[0,1,["H428"]],[1,4,["H4550"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,13,["H6635"]],[13,17,["H5265"]]]},{"k":4017,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,5,["H2246"]],[5,7,["H1121"]],[7,9,["H7467"]],[9,11,["H4084"]],[11,12,["H4872"]],[12,15,["H2859"]],[15,16,["H587"]],[16,18,["H5265"]],[18,19,["H413"]],[19,21,["H4725"]],[21,23,["H834"]],[23,25,["H3068"]],[25,26,["H559"]],[26,29,["H5414"]],[29,32,["H1980"]],[32,34,["H854"]],[34,41,["H3190"]],[41,42,["H3588"]],[42,44,["H3068"]],[44,46,["H1696"]],[46,47,["H2896"]],[47,48,["H5921"]],[48,49,["H3478"]]]},{"k":4018,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,8,["H3808"]],[8,9,["H1980"]],[9,10,["H3588"]],[10,11,["H518"]],[11,13,["H1980"]],[13,14,["H413"]],[14,17,["H776"]],[17,19,["H413"]],[19,21,["H4138"]]]},{"k":4019,"v":[[0,3,["H559"]],[3,4,["H5800"]],[4,6,["H408"]],[6,9,["H4994"]],[9,10,["H3588","H5921","H3651"]],[10,13,["H3045"]],[13,18,["H2583"]],[18,21,["H4057"]],[21,25,["H1961"]],[25,30,["H5869"]]]},{"k":4020,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,7,["H1980"]],[7,8,["H5973"]],[8,13,["H1961"]],[13,15,["H834"]],[15,16,["H2896"]],[16,18,["H3068"]],[18,20,["H3190"]],[20,21,["H5973"]],[21,27,["H3190"]],[27,29,[]]]},{"k":4021,"v":[[0,3,["H5265"]],[3,6,["H4480","H2022"]],[6,9,["H3068"]],[9,10,["H7969"]],[10,11,["H3117"]],[11,12,["H1870"]],[12,15,["H727"]],[15,18,["H1285"]],[18,21,["H3068"]],[21,22,["H5265"]],[22,23,["H6440"]],[23,27,["H7969"]],[27,28,["H3117"]],[28,29,["H1870"]],[29,32,["H8446"]],[32,35,["H4496"]],[35,37,[]]]},{"k":4022,"v":[[0,3,["H6051"]],[3,6,["H3068"]],[6,8,["H5921"]],[8,11,["H3119"]],[11,14,["H5265"]],[14,16,["H4480"]],[16,18,["H4264"]]]},{"k":4023,"v":[[0,5,["H1961"]],[5,8,["H727"]],[8,10,["H5265"]],[10,12,["H4872"]],[12,13,["H559"]],[13,15,["H6965"]],[15,16,["H3068"]],[16,20,["H341"]],[20,22,["H6327"]],[22,27,["H8130"]],[27,29,["H5127"]],[29,30,["H4480","H6440"]],[30,31,[]]]},{"k":4024,"v":[[0,4,["H5117"]],[4,6,["H559"]],[6,7,["H7725"]],[7,9,["H3068"]],[9,12,["H7233"]],[12,13,["H505"]],[13,15,["H3478"]]]},{"k":4025,"v":[[0,4,["H5971"]],[4,5,["H596"]],[5,7,["H7451","H241"]],[7,9,["H3068"]],[9,12,["H3068"]],[12,13,["H8085"]],[13,17,["H639"]],[17,19,["H2734"]],[19,22,["H784"]],[22,25,["H3068"]],[25,26,["H1197"]],[26,30,["H398"]],[30,37,["H7097"]],[37,40,["H4264"]]]},{"k":4026,"v":[[0,3,["H5971"]],[3,4,["H6817"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H4872"]],[9,10,["H6419"]],[10,11,["H413"]],[11,13,["H3068"]],[13,15,["H784"]],[15,17,["H8257"]]]},{"k":4027,"v":[[0,3,["H7121"]],[3,5,["H8034"]],[5,8,["H4725"]],[8,9,["H8404"]],[9,10,["H3588"]],[10,12,["H784"]],[12,15,["H3068"]],[15,16,["H1197"]],[16,18,[]]]},{"k":4028,"v":[[0,4,["H628"]],[4,5,["H834"]],[5,7,["H7130"]],[7,11,["H183","H8378"]],[11,14,["H1121"]],[14,16,["H3478"]],[16,17,["H1571"]],[17,18,["H1058"]],[18,19,["H7725"]],[19,21,["H559"]],[21,22,["H4310"]],[22,26,["H1320"]],[26,28,["H398"]]]},{"k":4029,"v":[[0,2,["H2142","(H853)"]],[2,4,["H1710"]],[4,5,["H834"]],[5,8,["H398"]],[8,10,["H4714"]],[10,11,["H2600","(H853)"]],[11,13,["H7180"]],[13,16,["H20"]],[16,19,["H2682"]],[19,22,["H1211"]],[22,25,["H7762"]]]},{"k":4030,"v":[[0,2,["H6258"]],[2,4,["H5315"]],[4,7,["H3002"]],[7,10,["H369"]],[10,12,["H3605"]],[12,13,["H1115","H413"]],[13,15,["H4478"]],[15,18,["H5869"]]]},{"k":4031,"v":[[0,3,["H4478"]],[3,6,["H1407"]],[6,7,["H2233"]],[7,10,["H5869"]],[10,14,["H5869"]],[14,16,["H916"]]]},{"k":4032,"v":[[0,3,["H5971"]],[3,5,["H7751"]],[5,7,["H3950"]],[7,10,["H2912"]],[10,13,["H7347"]],[13,14,["H176"]],[14,15,["H1743"]],[15,19,["H4085"]],[19,21,["H1310"]],[21,24,["H6517"]],[24,26,["H6213"]],[26,27,["H5692"]],[27,32,["H2940"]],[32,35,["H1961"]],[35,38,["H2940"]],[38,40,["H3955"]],[40,41,["H8081"]]]},{"k":4033,"v":[[0,4,["H2919"]],[4,5,["H3381"]],[5,6,["H5921"]],[6,8,["H4264"]],[8,11,["H3915"]],[11,13,["H4478"]],[13,14,["H3381"]],[14,15,["H5921"]],[15,16,[]]]},{"k":4034,"v":[[0,2,["H4872"]],[2,3,["H8085","(H853)"]],[3,5,["H5971"]],[5,6,["H1058"]],[6,9,["H4940"]],[9,11,["H376"]],[11,14,["H6607"]],[14,17,["H168"]],[17,20,["H639"]],[20,23,["H3068"]],[23,25,["H2734"]],[25,26,["H3966"]],[26,27,["H4872"]],[27,30,["H5869","H7451"]]]},{"k":4035,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3068"]],[6,7,["H4100"]],[7,10,["H7489"]],[10,12,["H5650"]],[12,14,["H4100"]],[14,17,["H3808"]],[17,18,["H4672"]],[18,19,["H2580"]],[19,22,["H5869"]],[22,25,["H7760","(H853)"]],[25,27,["H4853"]],[27,29,["H3605"]],[29,30,["H2088"]],[30,31,["H5971"]],[31,32,["H5921"]],[32,33,[]]]},{"k":4036,"v":[[0,2,["H595"]],[2,3,["H2030","(H853)"]],[3,4,["H3605"]],[4,5,["H2088"]],[5,6,["H5971"]],[6,8,["H595"]],[8,9,["H3205"]],[9,11,["H3588"]],[11,14,["H559"]],[14,15,["H413"]],[15,17,["H5375"]],[17,21,["H2436"]],[21,22,["H834"]],[22,25,["H539"]],[25,26,["H5375","(H853)"]],[26,29,["H3243"]],[29,30,["H5921"]],[30,32,["H127"]],[32,33,["H834"]],[33,35,["H7650"]],[35,38,["H1"]]]},{"k":4037,"v":[[0,1,["H4480","H370"]],[1,5,["H1320"]],[5,7,["H5414"]],[7,9,["H3605"]],[9,10,["H2088"]],[10,11,["H5971"]],[11,12,["H3588"]],[12,14,["H1058"]],[14,15,["H5921"]],[15,17,["H559"]],[17,18,["H5414"]],[18,20,["H1320"]],[20,24,["H398"]]]},{"k":4038,"v":[[0,1,["H595"]],[1,4,["H3201","H3808"]],[4,6,["H5375","(H853)"]],[6,7,["H3605"]],[7,8,["H2088"]],[8,9,["H5971"]],[9,10,["H905"]],[10,11,["H3588"]],[11,15,["H3515"]],[15,16,["H4480"]],[16,17,[]]]},{"k":4039,"v":[[0,2,["H518"]],[2,3,["H859"]],[3,4,["H6213"]],[4,5,["H3602"]],[5,8,["H2026"]],[8,12,["H4994"]],[12,15,["H2026"]],[15,16,["H518"]],[16,19,["H4672"]],[19,20,["H2580"]],[20,23,["H5869"]],[23,27,["H408"]],[27,28,["H7200"]],[28,30,["H7451"]]]},{"k":4040,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H622"]],[7,10,["H7657"]],[10,11,["H376"]],[11,14,["H4480","H2205"]],[14,16,["H3478"]],[16,17,["H834"]],[17,19,["H3045"]],[19,23,["H2205"]],[23,26,["H5971"]],[26,28,["H7860"]],[28,32,["H3947"]],[32,34,["H413"]],[34,36,["H168"]],[36,39,["H4150"]],[39,43,["H3320"]],[43,44,["H8033"]],[44,45,["H5973"]],[45,46,[]]]},{"k":4041,"v":[[0,5,["H3381"]],[5,7,["H1696"]],[7,8,["H5973"]],[8,10,["H8033"]],[10,14,["H680"]],[14,15,["H4480"]],[15,17,["H7307"]],[17,18,["H834"]],[18,20,["H5921"]],[20,24,["H7760"]],[24,26,["H5921"]],[26,31,["H5375"]],[31,33,["H4853"]],[33,36,["H5971"]],[36,37,["H854"]],[37,40,["H859"]],[40,41,["H5375"]],[41,43,["H3808"]],[43,45,["H905"]]]},{"k":4042,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H5971"]],[6,8,["H6942"]],[8,11,["H4279"]],[11,15,["H398"]],[15,16,["H1320"]],[16,17,["H3588"]],[17,20,["H1058"]],[20,23,["H241"]],[23,26,["H3068"]],[26,27,["H559"]],[27,28,["H4310"]],[28,32,["H1320"]],[32,34,["H398"]],[34,35,["H3588"]],[35,38,["H2895"]],[38,42,["H4714"]],[42,45,["H3068"]],[45,47,["H5414"]],[47,49,["H1320"]],[49,53,["H398"]]]},{"k":4043,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,5,["H259"]],[5,6,["H3117"]],[6,7,["H3808"]],[7,9,["H3117"]],[9,10,["H3808"]],[10,11,["H2568"]],[11,12,["H3117"]],[12,13,["H3808"]],[13,14,["H6235"]],[14,15,["H3117"]],[15,16,["H3808"]],[16,17,["H6242"]],[17,18,["H3117"]]]},{"k":4044,"v":[[0,2,["H5704"]],[2,4,["H3117"]],[4,5,["H2320"]],[5,6,["H5704","H834"]],[6,9,["H3318"]],[9,12,["H4480","H639"]],[12,15,["H1961"]],[15,16,["H2214"]],[16,19,["H3282"]],[19,20,["H3588"]],[20,23,["H3988","(H853)"]],[23,25,["H3068"]],[25,26,["H834"]],[26,28,["H7130"]],[28,32,["H1058"]],[32,33,["H6440"]],[33,35,["H559"]],[35,36,["H4100","H2088"]],[36,39,["H3318"]],[39,42,["H4480","H4714"]]]},{"k":4045,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,5,["H5971"]],[5,6,["H7130"]],[6,7,["H834"]],[7,8,["H595"]],[8,11,["H8337"]],[11,12,["H3967"]],[12,13,["H505"]],[13,14,["H7273"]],[14,16,["H859"]],[16,18,["H559"]],[18,21,["H5414"]],[21,23,["H1320"]],[23,27,["H398"]],[27,29,["H3117"]],[29,30,["H2320"]]]},{"k":4046,"v":[[0,3,["H6629"]],[3,6,["H1241"]],[6,8,["H7819"]],[8,12,["H4672"]],[12,14,["H518","(H853)"]],[14,16,["H3605"]],[16,18,["H1709"]],[18,21,["H3220"]],[21,24,["H622"]],[24,28,["H4672"]],[28,29,[]]]},{"k":4047,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H3068"]],[9,10,["H3027"]],[10,12,["H7114"]],[12,15,["H7200"]],[15,16,["H6258"]],[16,19,["H1697"]],[19,23,["H7136"]],[23,26,["H518"]],[26,27,["H3808"]]]},{"k":4048,"v":[[0,2,["H4872"]],[2,4,["H3318"]],[4,6,["H1696","H413"]],[6,8,["H5971","(H853)"]],[8,10,["H1697"]],[10,13,["H3068"]],[13,15,["H622"]],[15,17,["H7657"]],[17,18,["H376"]],[18,21,["H4480","H2205"]],[21,24,["H5971"]],[24,26,["H5975"]],[26,29,["H5439"]],[29,31,["H168"]]]},{"k":4049,"v":[[0,3,["H3068"]],[3,5,["H3381"]],[5,8,["H6051"]],[8,10,["H1696"]],[10,11,["H413"]],[11,14,["H680"]],[14,15,["H4480"]],[15,17,["H7307"]],[17,18,["H834"]],[18,20,["H5921"]],[20,23,["H5414"]],[23,25,["H5921"]],[25,27,["H7657"]],[27,28,["H376","H2205"]],[28,33,["H1961"]],[33,37,["H7307"]],[37,38,["H5117"]],[38,39,["H5921"]],[39,42,["H5012"]],[42,45,["H3808"]],[45,46,["H3254"]]]},{"k":4050,"v":[[0,3,["H7604"]],[3,4,["H8147"]],[4,7,["H376"]],[7,10,["H4264"]],[10,12,["H8034"]],[12,15,["H259"]],[15,17,["H419"]],[17,20,["H8034"]],[20,23,["H8145"]],[23,24,["H4312"]],[24,27,["H7307"]],[27,28,["H5117"]],[28,29,["H5921"]],[29,32,["H1992"]],[32,38,["H3789"]],[38,42,["H3318","H3808"]],[42,45,["H168"]],[45,48,["H5012"]],[48,51,["H4264"]]]},{"k":4051,"v":[[0,3,["H7323"]],[3,6,["H5288"]],[6,8,["H5046"]],[8,9,["H4872"]],[9,11,["H559"]],[11,12,["H419"]],[12,14,["H4312"]],[14,16,["H5012"]],[16,19,["H4264"]]]},{"k":4052,"v":[[0,2,["H3091"]],[2,4,["H1121"]],[4,6,["H5126"]],[6,8,["H8334"]],[8,10,["H4872"]],[10,15,["H4480","H979"]],[15,16,["H6030"]],[16,18,["H559"]],[18,20,["H113"]],[20,21,["H4872"]],[21,22,["H3607"]],[22,23,[]]]},{"k":4053,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,6,["H7065"]],[6,7,["H859"]],[7,12,["H4310","H5414"]],[12,14,["H3605"]],[14,16,["H3068"]],[16,17,["H5971"]],[17,19,["H5030"]],[19,21,["H3588"]],[21,23,["H3068"]],[23,25,["H5414","(H853)"]],[25,27,["H7307"]],[27,28,["H5921"]],[28,29,[]]]},{"k":4054,"v":[[0,2,["H4872"]],[2,3,["H622"]],[3,5,["H413"]],[5,7,["H4264"]],[7,8,["H1931"]],[8,11,["H2205"]],[11,13,["H3478"]]]},{"k":4055,"v":[[0,4,["H5265"]],[4,6,["H7307"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,11,["H1468"]],[11,12,["H7958"]],[12,13,["H4480"]],[13,15,["H3220"]],[15,19,["H5203"]],[19,20,["H5921"]],[20,22,["H4264"]],[22,27,["H3117"]],[27,28,["H1870"]],[28,31,["H3541"]],[31,37,["H3117"]],[37,38,["H1870"]],[38,42,["H3541"]],[42,44,["H5439"]],[44,46,["H4264"]],[46,52,["H520"]],[52,54,["H5921"]],[54,56,["H6440"]],[56,59,["H776"]]]},{"k":4056,"v":[[0,3,["H5971"]],[3,5,["H6965"]],[5,6,["H3605"]],[6,7,["H1931"]],[7,8,["H3117"]],[8,10,["H3605"]],[10,12,["H3915"]],[12,14,["H3605"]],[14,16,["H4283"]],[16,17,["H3117"]],[17,20,["H622","(H853)"]],[20,22,["H7958"]],[22,26,["H4591"]],[26,27,["H622"]],[27,28,["H6235"]],[28,29,["H2563"]],[29,35,["H7849","H7849"]],[35,39,["H5439"]],[39,41,["H4264"]]]},{"k":4057,"v":[[0,4,["H1320"]],[4,6,["H5750"]],[6,7,["H996"]],[7,9,["H8127"]],[9,10,["H2962"]],[10,13,["H3772"]],[13,15,["H639"]],[15,18,["H3068"]],[18,20,["H2734"]],[20,23,["H5971"]],[23,26,["H3068"]],[26,27,["H5221"]],[27,29,["H5971"]],[29,32,["H3966"]],[32,33,["H7227"]],[33,34,["H4347"]]]},{"k":4058,"v":[[0,3,["H7121","(H853)"]],[3,5,["H8034"]],[5,7,["H1931"]],[7,8,["H4725"]],[8,9,["H6914"]],[9,10,["H3588"]],[10,11,["H8033"]],[11,13,["H6912","(H853)"]],[13,15,["H5971"]],[15,17,["H183"]]]},{"k":4059,"v":[[0,3,["H5971"]],[3,4,["H5265"]],[4,6,["H4480","H6914"]],[6,8,["H2698"]],[8,10,["H1961"]],[10,12,["H2698"]]]},{"k":4060,"v":[[0,2,["H4813"]],[2,4,["H175"]],[4,5,["H1696"]],[5,7,["H4872"]],[7,8,["H5921","H182"]],[8,11,["H3571"]],[11,12,["H802"]],[12,13,["H834"]],[13,16,["H3947"]],[16,17,["H3588"]],[17,20,["H3947"]],[20,22,["H3571"]],[22,23,["H802"]]]},{"k":4061,"v":[[0,3,["H559"]],[3,6,["H3068"]],[6,7,["H389"]],[7,8,["H1696"]],[8,9,["H7535"]],[9,11,["H4872"]],[11,14,["H3808"]],[14,15,["H1696"]],[15,16,["H1571"]],[16,21,["H3068"]],[21,22,["H8085"]],[22,23,[]]]},{"k":4062,"v":[[0,3,["H376"]],[3,4,["H4872"]],[4,6,["H3966"]],[6,7,["H6035"]],[7,9,["H4480","H3605"]],[9,11,["H120"]],[11,12,["H834"]],[12,14,["H5921"]],[14,16,["H6440"]],[16,19,["H127"]]]},{"k":4063,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H6597"]],[5,6,["H413"]],[6,7,["H4872"]],[7,9,["H413"]],[9,10,["H175"]],[10,12,["H413"]],[12,13,["H4813"]],[13,15,["H3318"]],[15,17,["H7969"]],[17,18,["H413"]],[18,20,["H168"]],[20,23,["H4150"]],[23,26,["H7969"]],[26,28,["H3318"]]]},{"k":4064,"v":[[0,3,["H3068"]],[3,5,["H3381"]],[5,8,["H5982"]],[8,11,["H6051"]],[11,13,["H5975"]],[13,16,["H6607"]],[16,19,["H168"]],[19,21,["H7121"]],[21,22,["H175"]],[22,24,["H4813"]],[24,27,["H8147"]],[27,29,["H3318"]]]},{"k":4065,"v":[[0,3,["H559"]],[3,4,["H8085"]],[4,5,["H4994"]],[5,7,["H1697"]],[7,8,["H518"]],[8,10,["H1961"]],[10,12,["H5030"]],[12,17,["H3068"]],[17,21,["H3045"]],[21,22,["H413"]],[22,26,["H4759"]],[26,29,["H1696"]],[29,34,["H2472"]]]},{"k":4066,"v":[[0,2,["H5650"]],[2,3,["H4872"]],[3,5,["H3808"]],[5,6,["H3651"]],[6,7,["H1931"]],[7,9,["H539"]],[9,11,["H3605"]],[11,13,["H1004"]]]},{"k":4067,"v":[[0,5,["H1696"]],[5,6,["H6310"]],[6,7,["H413"]],[7,8,["H6310"]],[8,10,["H4758"]],[10,12,["H3808"]],[12,15,["H2420"]],[15,18,["H8544"]],[18,21,["H3068"]],[21,24,["H5027"]],[24,25,["H4069"]],[25,30,["H3372","H3808"]],[30,32,["H1696"]],[32,35,["H5650"]],[35,36,["H4872"]]]},{"k":4068,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,13,["H1980"]]]},{"k":4069,"v":[[0,3,["H6051"]],[3,4,["H5493"]],[4,6,["H4480","H5921"]],[6,8,["H168"]],[8,10,["H2009"]],[10,11,["H4813"]],[11,13,["H6879"]],[13,16,["H7950"]],[16,18,["H175"]],[18,19,["H6437"]],[19,20,["H413"]],[20,21,["H4813"]],[21,23,["H2009"]],[23,26,["H6879"]]]},{"k":4070,"v":[[0,2,["H175"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H4872"]],[5,6,["H994"]],[6,8,["H113"]],[8,11,["H4994"]],[11,12,["H7896"]],[12,13,["H408"]],[13,15,["H2403"]],[15,16,["H5921"]],[16,18,["H834"]],[18,22,["H2973"]],[22,24,["H834"]],[24,27,["H2398"]]]},{"k":4071,"v":[[0,1,["H4994"]],[1,3,["H408"]],[3,4,["H1961"]],[4,7,["H4191"]],[7,9,["H834"]],[9,11,["H1320"]],[11,13,["H2677"]],[13,14,["H398"]],[14,18,["H3318"]],[18,21,["H517"]],[21,22,["H4480","H7358"]]]},{"k":4072,"v":[[0,2,["H4872"]],[2,3,["H6817"]],[3,4,["H413"]],[4,6,["H3068"]],[6,7,["H559"]],[7,8,["H7495"]],[8,10,["H4994"]],[10,12,["H410"]],[12,15,["H4994"]]]},{"k":4073,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H1"]],[9,12,["H3417","H3417"]],[12,15,["H6440"]],[15,18,["H3808"]],[18,20,["H3637"]],[20,21,["H7651"]],[21,22,["H3117"]],[22,27,["H5462"]],[27,28,["H4480","H2351"]],[28,30,["H4264"]],[30,31,["H7651"]],[31,32,["H3117"]],[32,35,["H310"]],[35,40,["H622"]],[40,41,[]]]},{"k":4074,"v":[[0,2,["H4813"]],[2,5,["H5462"]],[5,6,["H4480","H2351"]],[6,8,["H4264"]],[8,9,["H7651"]],[9,10,["H3117"]],[10,13,["H5971"]],[13,14,["H5265"]],[14,15,["H3808"]],[15,16,["H5704"]],[16,17,["H4813"]],[17,20,["H622"]],[20,21,[]]]},{"k":4075,"v":[[0,2,["H310"]],[2,4,["H5971"]],[4,5,["H5265"]],[5,7,["H4480","H2698"]],[7,9,["H2583"]],[9,12,["H4057"]],[12,14,["H6290"]]]},{"k":4076,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4077,"v":[[0,1,["H7971"]],[1,3,["H376"]],[3,7,["H8446","(H853)"]],[7,9,["H776"]],[9,11,["H3667"]],[11,12,["H834"]],[12,13,["H589"]],[13,14,["H5414"]],[14,17,["H1121"]],[17,19,["H3478"]],[19,22,["H4294"]],[22,25,["H1"]],[25,28,["H7971"]],[28,29,["H259"]],[29,30,["H376"]],[30,32,["H3605"]],[32,34,["H5387"]],[34,36,[]]]},{"k":4078,"v":[[0,2,["H4872"]],[2,3,["H5921"]],[3,5,["H6310"]],[5,8,["H3068"]],[8,9,["H7971"]],[9,13,["H4480","H4057"]],[13,15,["H6290"]],[15,16,["H3605"]],[16,17,["H1992"]],[17,18,["H376"]],[18,20,["H7218"]],[20,23,["H1121"]],[23,25,["H3478"]]]},{"k":4079,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H4294"]],[8,10,["H7205"]],[10,11,["H8051"]],[11,13,["H1121"]],[13,15,["H2139"]]]},{"k":4080,"v":[[0,3,["H4294"]],[3,5,["H8095"]],[5,6,["H8202"]],[6,8,["H1121"]],[8,10,["H2753"]]]},{"k":4081,"v":[[0,3,["H4294"]],[3,5,["H3063"]],[5,6,["H3612"]],[6,8,["H1121"]],[8,10,["H3312"]]]},{"k":4082,"v":[[0,3,["H4294"]],[3,5,["H3485"]],[5,6,["H3008"]],[6,8,["H1121"]],[8,10,["H3130"]]]},{"k":4083,"v":[[0,3,["H4294"]],[3,5,["H669"]],[5,6,["H1954"]],[6,8,["H1121"]],[8,10,["H5126"]]]},{"k":4084,"v":[[0,3,["H4294"]],[3,5,["H1144"]],[5,6,["H6406"]],[6,8,["H1121"]],[8,10,["H7505"]]]},{"k":4085,"v":[[0,3,["H4294"]],[3,5,["H2074"]],[5,6,["H1427"]],[6,8,["H1121"]],[8,10,["H5476"]]]},{"k":4086,"v":[[0,3,["H4294"]],[3,5,["H3130"]],[5,9,["H4294"]],[9,11,["H4519"]],[11,12,["H1426"]],[12,14,["H1121"]],[14,16,["H5485"]]]},{"k":4087,"v":[[0,3,["H4294"]],[3,5,["H1835"]],[5,6,["H5988"]],[6,8,["H1121"]],[8,10,["H1582"]]]},{"k":4088,"v":[[0,3,["H4294"]],[3,5,["H836"]],[5,6,["H5639"]],[6,8,["H1121"]],[8,10,["H4317"]]]},{"k":4089,"v":[[0,3,["H4294"]],[3,5,["H5321"]],[5,6,["H5147"]],[6,8,["H1121"]],[8,10,["H2058"]]]},{"k":4090,"v":[[0,3,["H4294"]],[3,5,["H1410"]],[5,6,["H1345"]],[6,8,["H1121"]],[8,10,["H4352"]]]},{"k":4091,"v":[[0,1,["H428"]],[1,4,["H8034"]],[4,7,["H376"]],[7,8,["H834"]],[8,9,["H4872"]],[9,10,["H7971"]],[10,13,["H8446","(H853)"]],[13,15,["H776"]],[15,17,["H4872"]],[17,18,["H7121"]],[18,19,["H1954"]],[19,21,["H1121"]],[21,23,["H5126"]],[23,24,["H3091"]]]},{"k":4092,"v":[[0,2,["H4872"]],[2,3,["H7971"]],[3,7,["H8446","(H853)"]],[7,9,["H776"]],[9,11,["H3667"]],[11,13,["H559"]],[13,14,["H413"]],[14,18,["H5927"]],[18,19,["H2088"]],[19,21,["H5045"]],[21,24,["H5927"]],[24,25,["H854"]],[25,27,["H2022"]]]},{"k":4093,"v":[[0,2,["H7200","(H853)"]],[2,4,["H776"]],[4,5,["H4100"]],[5,6,["H1931"]],[6,10,["H5971"]],[10,12,["H3427"]],[12,13,["H5921"]],[13,15,["H1931"]],[15,17,["H2389"]],[17,19,["H7504"]],[19,20,["H4592"]],[20,21,["H518"]],[21,22,["H7227"]]]},{"k":4094,"v":[[0,2,["H4100"]],[2,4,["H776"]],[4,6,["H834"]],[6,7,["H1931"]],[7,8,["H3427"]],[8,11,["H1931"]],[11,13,["H2896"]],[13,14,["H518"]],[14,15,["H7451"]],[15,17,["H4100"]],[17,18,["H5892"]],[18,21,["H834"]],[21,22,["H1931"]],[22,23,["H3427"]],[23,24,["H2007"]],[24,27,["H4264"]],[27,28,["H518"]],[28,31,["H4013"]]]},{"k":4095,"v":[[0,2,["H4100"]],[2,4,["H776"]],[4,7,["H1931"]],[7,9,["H8082"]],[9,10,["H518"]],[10,11,["H7330"]],[11,14,["H3426"]],[14,15,["H6086"]],[15,17,["H518"]],[17,18,["H369"]],[18,24,["H2388"]],[24,26,["H3947"]],[26,29,["H4480","H6529"]],[29,32,["H776"]],[32,35,["H3117"]],[35,38,["H3117"]],[38,41,["H1061"]],[41,42,["H6025"]]]},{"k":4096,"v":[[0,4,["H5927"]],[4,6,["H8446","(H853)"]],[6,8,["H776"]],[8,11,["H4480","H4057"]],[11,13,["H6790"]],[13,14,["H5704"]],[14,15,["H7340"]],[15,18,["H935"]],[18,20,["H2574"]]]},{"k":4097,"v":[[0,3,["H5927"]],[3,6,["H5045"]],[6,8,["H935"]],[8,9,["H5704"]],[9,10,["H2275"]],[10,11,["H8033"]],[11,12,["H289"]],[12,13,["H8344"]],[13,15,["H8526"]],[15,17,["H3211"]],[17,19,["H6061"]],[19,22,["H2275"]],[22,24,["H1129"]],[24,25,["H7651"]],[25,26,["H8141"]],[26,27,["H6440"]],[27,28,["H6814"]],[28,30,["H4714"]]]},{"k":4098,"v":[[0,3,["H935"]],[3,4,["H5704"]],[4,6,["H5158"]],[6,8,["H812"]],[8,11,["H3772"]],[11,13,["H4480","H8033"]],[13,15,["H2156"]],[15,17,["H259"]],[17,18,["H811"]],[18,20,["H6025"]],[20,23,["H5375"]],[23,26,["H8147"]],[26,29,["H4132"]],[29,33,["H4480"]],[33,35,["H7416"]],[35,37,["H4480"]],[37,39,["H8384"]]]},{"k":4099,"v":[[0,2,["H4725"]],[2,4,["H7121"]],[4,6,["H5158"]],[6,7,["H812"]],[7,8,["H5921","H182"]],[8,13,["H811"]],[13,14,["H834"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,20,["H3772"]],[20,22,["H4480","H8033"]]]},{"k":4100,"v":[[0,3,["H7725"]],[3,5,["H4480","H8446"]],[5,8,["H776"]],[8,9,["H4480","H7093"]],[9,10,["H705"]],[10,11,["H3117"]]]},{"k":4101,"v":[[0,3,["H1980"]],[3,5,["H935"]],[5,6,["H413"]],[6,7,["H4872"]],[7,9,["H413"]],[9,10,["H175"]],[10,12,["H413"]],[12,13,["H3605"]],[13,15,["H5712"]],[15,18,["H1121"]],[18,20,["H3478"]],[20,21,["H413"]],[21,23,["H4057"]],[23,25,["H6290"]],[25,27,["H6946"]],[27,30,["H7725"]],[30,31,["H1697"]],[31,36,["H3605"]],[36,38,["H5712"]],[38,40,["H7200"]],[40,41,["(H853)"]],[41,43,["H6529"]],[43,46,["H776"]]]},{"k":4102,"v":[[0,3,["H5608"]],[3,6,["H559"]],[6,8,["H935"]],[8,9,["H413"]],[9,11,["H776"]],[11,12,["H834"]],[12,14,["H7971"]],[14,17,["H1571"]],[17,18,["H1931"]],[18,19,["H2100"]],[19,21,["H2461"]],[21,23,["H1706"]],[23,25,["H2088"]],[25,28,["H6529"]],[28,30,[]]]},{"k":4103,"v":[[0,1,["H657","H3588"]],[1,3,["H5971"]],[3,5,["H5794"]],[5,7,["H3427"]],[7,10,["H776"]],[10,13,["H5892"]],[13,15,["H1219"]],[15,17,["H3966"]],[17,18,["H1419"]],[18,20,["H1571"]],[20,22,["H7200"]],[22,24,["H3211"]],[24,26,["H6061"]],[26,27,["H8033"]]]},{"k":4104,"v":[[0,2,["H6003"]],[2,3,["H3427"]],[3,6,["H776"]],[6,9,["H5045"]],[9,12,["H2850"]],[12,15,["H2983"]],[15,18,["H567"]],[18,19,["H3427"]],[19,22,["H2022"]],[22,25,["H3669"]],[25,26,["H3427"]],[26,27,["H5921"]],[27,29,["H3220"]],[29,31,["H5921"]],[31,33,["H3027"]],[33,35,["H3383"]]]},{"k":4105,"v":[[0,2,["H3612"]],[2,3,["H2013","(H853)"]],[3,5,["H5971"]],[5,6,["H413"]],[6,7,["H4872"]],[7,9,["H559"]],[9,15,["H5927","H5927"]],[15,17,["H3423"]],[17,19,["H3588"]],[19,23,["H3201"]],[23,25,["H3201"]],[25,26,[]]]},{"k":4106,"v":[[0,3,["H376"]],[3,4,["H834"]],[4,6,["H5927"]],[6,7,["H5973"]],[7,9,["H559"]],[9,13,["H3201","H3808"]],[13,16,["H5927"]],[16,17,["H413"]],[17,19,["H5971"]],[19,20,["H3588"]],[20,21,["H1931"]],[21,23,["H2389"]],[23,24,["H4480"]],[24,25,[]]]},{"k":4107,"v":[[0,4,["H3318"]],[4,7,["H1681"]],[7,10,["H776"]],[10,11,["H834"]],[11,14,["H8446"]],[14,15,["H413"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,20,["H559"]],[20,22,["H776"]],[22,24,["H834"]],[24,27,["H5674"]],[27,29,["H8446"]],[29,33,["H776"]],[33,34,["H1931"]],[34,36,["H398"]],[36,38,["H3427"]],[38,41,["H3605"]],[41,43,["H5971"]],[43,44,["H834"]],[44,46,["H7200"]],[46,47,["H8432"]],[47,50,["H376"]],[50,54,["H4060"]]]},{"k":4108,"v":[[0,2,["H8033"]],[2,4,["H7200","(H853)"]],[4,6,["H5303"]],[6,8,["H1121"]],[8,10,["H6061"]],[10,13,["H4480"]],[13,15,["H5303"]],[15,18,["H1961"]],[18,22,["H5869"]],[22,24,["H2284"]],[24,26,["H3651"]],[26,28,["H1961"]],[28,31,["H5869"]]]},{"k":4109,"v":[[0,2,["H3605"]],[2,4,["H5712"]],[4,6,["H5375","(H853)"]],[6,8,["H6963"]],[8,10,["H5414"]],[10,13,["H5971"]],[13,14,["H1058"]],[14,15,["H1931"]],[15,16,["H3915"]]]},{"k":4110,"v":[[0,2,["H3605"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H3885"]],[7,8,["H5921"]],[8,9,["H4872"]],[9,11,["H5921"]],[11,12,["H175"]],[12,15,["H3605"]],[15,16,["H5712"]],[16,17,["H559"]],[17,18,["H413"]],[18,22,["H3863"]],[22,25,["H4191"]],[25,28,["H776"]],[28,30,["H4714"]],[30,31,["H176"]],[31,33,["H3863"]],[33,36,["H4191"]],[36,38,["H2088"]],[38,39,["H4057"]]]},{"k":4111,"v":[[0,2,["H4100"]],[2,5,["H3068"]],[5,6,["H935"]],[6,8,["H413"]],[8,9,["H2063"]],[9,10,["H776"]],[10,12,["H5307"]],[12,15,["H2719"]],[15,18,["H802"]],[18,21,["H2945"]],[21,23,["H1961"]],[23,25,["H957"]],[25,28,["H3808"]],[28,29,["H2896"]],[29,33,["H7725"]],[33,35,["H4714"]]]},{"k":4112,"v":[[0,3,["H559"]],[3,4,["H376"]],[4,5,["H413"]],[5,6,["H251"]],[6,9,["H5414"]],[9,11,["H7218"]],[11,15,["H7725"]],[15,17,["H4714"]]]},{"k":4113,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,5,["H5307"]],[5,6,["H5921"]],[6,8,["H6440"]],[8,9,["H6440"]],[9,10,["H3605"]],[10,12,["H6951"]],[12,15,["H5712"]],[15,18,["H1121"]],[18,20,["H3478"]]]},{"k":4114,"v":[[0,2,["H3091"]],[2,4,["H1121"]],[4,6,["H5126"]],[6,8,["H3612"]],[8,10,["H1121"]],[10,12,["H3312"]],[12,15,["H4480"]],[15,18,["H8446","(H853)"]],[18,20,["H776"]],[20,21,["H7167"]],[21,23,["H899"]]]},{"k":4115,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H3605"]],[5,7,["H5712"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,13,["H559"]],[13,15,["H776"]],[15,16,["H834"]],[16,19,["H5674"]],[19,21,["H8446"]],[21,25,["H3966","H3966"]],[25,26,["H2896"]],[26,27,["H776"]]]},{"k":4116,"v":[[0,1,["H518"]],[1,3,["H3068"]],[3,4,["H2654"]],[4,10,["H935"]],[10,12,["H413"]],[12,13,["H2063"]],[13,14,["H776"]],[14,16,["H5414"]],[16,20,["H776"]],[20,21,["H834"]],[21,22,["H2100"]],[22,24,["H2461"]],[24,26,["H1706"]]]},{"k":4117,"v":[[0,1,["H389"]],[1,2,["H4775"]],[2,3,["H408"]],[3,7,["H3068"]],[7,8,["H408"]],[8,9,["H3372"]],[9,10,["H859","(H853)"]],[10,12,["H5971"]],[12,15,["H776"]],[15,16,["H3588"]],[16,17,["H1992"]],[17,19,["H3899"]],[19,23,["H6738"]],[23,25,["H5493"]],[25,26,["H4480","H5921"]],[26,30,["H3068"]],[30,32,["H854"]],[32,34,["H3372"]],[34,36,["H408"]]]},{"k":4118,"v":[[0,2,["H3605"]],[2,4,["H5712"]],[4,5,["H559"]],[5,6,["H7275"]],[6,9,["H68"]],[9,12,["H3519"]],[12,15,["H3068"]],[15,16,["H7200"]],[16,19,["H168"]],[19,22,["H4150"]],[22,23,["H413"]],[23,24,["H3605"]],[24,26,["H1121"]],[26,28,["H3478"]]]},{"k":4119,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H5704","H575"]],[8,10,["H2088"]],[10,11,["H5971"]],[11,12,["H5006"]],[12,16,["H5704","H575"]],[16,20,["H3808"]],[20,22,["H539"]],[22,25,["H3605"]],[25,27,["H226"]],[27,28,["H834"]],[28,31,["H6213"]],[31,32,["H7130"]],[32,33,[]]]},{"k":4120,"v":[[0,3,["H5221"]],[3,7,["H1698"]],[7,9,["H3423"]],[9,13,["H6213"]],[13,17,["H1419"]],[17,18,["H1471"]],[18,20,["H6099"]],[20,21,["H4480"]],[21,22,[]]]},{"k":4121,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3068"]],[6,9,["H4714"]],[9,11,["H8085"]],[11,13,["H3588"]],[13,16,["H5927","(H853)"]],[16,17,["H2088"]],[17,18,["H5971"]],[18,21,["H3581"]],[21,23,["H4480","H7130"]],[23,24,[]]]},{"k":4122,"v":[[0,4,["H559"]],[4,6,["H413"]],[6,8,["H3427"]],[8,10,["H2063"]],[10,11,["H776"]],[11,15,["H8085"]],[15,16,["H3588"]],[16,17,["H859"]],[17,18,["H3068"]],[18,20,["H7130"]],[20,21,["H2088"]],[21,22,["H5971"]],[22,23,["H834"]],[23,24,["H859"]],[24,25,["H3068"]],[25,27,["H7200"]],[27,28,["H5869"]],[28,30,["H5869"]],[30,34,["H6051"]],[34,35,["H5975"]],[35,36,["H5921"]],[36,40,["H859"]],[40,41,["H1980"]],[41,42,["H6440"]],[42,46,["H3119"]],[46,49,["H5982"]],[49,52,["H6051"]],[52,56,["H5982"]],[56,58,["H784"]],[58,60,["H3915"]]]},{"k":4123,"v":[[0,5,["H4191"]],[5,6,["(H853)"]],[6,7,["H2088"]],[7,8,["H5971"]],[8,10,["H259"]],[10,11,["H376"]],[11,14,["H1471"]],[14,15,["H834"]],[15,17,["H8085","(H853)"]],[17,19,["H8088"]],[19,23,["H559"]],[23,24,["H559"]]]},{"k":4124,"v":[[0,1,["H4480","H1115"]],[1,3,["H3068"]],[3,6,["H3201"]],[6,8,["H935","(H853)"]],[8,9,["H2088"]],[9,10,["H5971"]],[10,11,["H413"]],[11,13,["H776"]],[13,14,["H834"]],[14,16,["H7650"]],[16,22,["H7819"]],[22,26,["H4057"]]]},{"k":4125,"v":[[0,2,["H6258"]],[2,5,["H4994"]],[5,8,["H3581"]],[8,11,["H136"]],[11,13,["H1431"]],[13,15,["H834"]],[15,18,["H1696"]],[18,19,["H559"]]]},{"k":4126,"v":[[0,2,["H3068"]],[2,4,["H750","H639"]],[4,7,["H7227"]],[7,8,["H2617"]],[8,9,["H5375"]],[9,10,["H5771"]],[10,12,["H6588"]],[12,17,["H5352","H5352","H3808"]],[17,20,["H6485"]],[20,22,["H5771"]],[22,25,["H1"]],[25,26,["H5921"]],[26,28,["H1121"]],[28,29,["H5921"]],[29,31,["H8029"]],[31,33,["H7256"]],[33,34,[]]]},{"k":4127,"v":[[0,1,["H5545"]],[1,4,["H4994"]],[4,6,["H5771"]],[6,8,["H2088"]],[8,9,["H5971"]],[9,13,["H1433"]],[13,16,["H2617"]],[16,18,["H834"]],[18,21,["H5375"]],[21,22,["H2088"]],[22,23,["H5971"]],[23,25,["H4480","H4714"]],[25,27,["H5704"]],[27,28,["H2008"]]]},{"k":4128,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,7,["H5545"]],[7,11,["H1697"]]]},{"k":4129,"v":[[0,3,["H199"]],[3,5,["H589"]],[5,6,["H2416","(H853)"]],[6,7,["H3605"]],[7,9,["H776"]],[9,12,["H4390"]],[12,15,["H3519"]],[15,18,["H3068"]]]},{"k":4130,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H376"]],[4,7,["H7200","(H853)"]],[7,9,["H3519"]],[9,12,["H226"]],[12,13,["H834"]],[13,15,["H6213"]],[15,17,["H4714"]],[17,21,["H4057"]],[21,24,["H5254"]],[24,27,["H2088"]],[27,28,["H6235"]],[28,29,["H6471"]],[29,32,["H3808"]],[32,33,["H8085"]],[33,36,["H6963"]]]},{"k":4131,"v":[[0,1,["H518"]],[1,5,["H7200","(H853)"]],[5,7,["H776"]],[7,8,["H834"]],[8,10,["H7650"]],[10,13,["H1"]],[13,14,["H3808"]],[14,16,["H3605"]],[16,20,["H5006"]],[20,22,["H7200"]],[22,23,[]]]},{"k":4132,"v":[[0,3,["H5650"]],[3,4,["H3612"]],[4,5,["H6118"]],[5,7,["H1961"]],[7,8,["H312"]],[8,9,["H7307"]],[9,10,["H5973"]],[10,16,["H4390","H310"]],[16,20,["H935"]],[20,21,["H413"]],[21,23,["H776"]],[23,24,["H834","H8033"]],[24,26,["H935"]],[26,29,["H2233"]],[29,31,["H3423"]],[31,32,[]]]},{"k":4133,"v":[[0,3,["H6003"]],[3,6,["H3669"]],[6,7,["H3427"]],[7,10,["H6010"]],[10,12,["H4279"]],[12,13,["H6437"]],[13,16,["H5265"]],[16,20,["H4057"]],[20,23,["H1870"]],[23,26,["H5488"]],[26,27,["H3220"]]]},{"k":4134,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H559"]]]},{"k":4135,"v":[[0,2,["H5704","H4970"]],[2,7,["H2063"]],[7,8,["H7451"]],[8,9,["H5712"]],[9,10,["H834"]],[10,11,["H3885"]],[11,12,["H5921"]],[12,16,["H8085","(H853)"]],[16,18,["H8519"]],[18,21,["H1121"]],[21,23,["H3478"]],[23,24,["H834"]],[24,25,["H1992"]],[25,26,["H3885"]],[26,27,["H5921"]],[27,28,[]]]},{"k":4136,"v":[[0,1,["H559"]],[1,2,["H413"]],[2,7,["H589"]],[7,8,["H2416"]],[8,9,["H5002"]],[9,11,["H3068"]],[11,12,["H834"]],[12,15,["H1696"]],[15,18,["H241"]],[18,19,["H3651"]],[19,22,["H6213"]],[22,24,[]]]},{"k":4137,"v":[[0,2,["H6297"]],[2,4,["H5307"]],[4,6,["H2088"]],[6,7,["H4057"]],[7,9,["H3605"]],[9,12,["H6485"]],[12,18,["H3605"]],[18,19,["H4557"]],[19,21,["H6242"]],[21,22,["H8141"]],[22,23,["H4480","H1121"]],[23,25,["H4605"]],[25,26,["H834"]],[26,28,["H3885"]],[28,29,["H5921"]],[29,30,[]]]},{"k":4138,"v":[[0,1,["H518"]],[1,2,["H859"]],[2,5,["H935"]],[5,6,["H413"]],[6,8,["H776"]],[8,10,["H834"]],[10,12,["H5375","(H853)","H3027"]],[12,16,["H7931"]],[16,18,["H3588","H518"]],[18,19,["H3612"]],[19,21,["H1121"]],[21,23,["H3312"]],[23,25,["H3091"]],[25,27,["H1121"]],[27,29,["H5126"]]]},{"k":4139,"v":[[0,4,["H2945"]],[4,5,["H834"]],[5,7,["H559"]],[7,9,["H1961"]],[9,11,["H957"]],[11,16,["H935"]],[16,20,["H3045","(H853)"]],[20,22,["H776"]],[22,23,["H834"]],[23,26,["H3988"]]]},{"k":4140,"v":[[0,4,["H859"]],[4,6,["H6297"]],[6,9,["H5307"]],[9,11,["H2088"]],[11,12,["H4057"]]]},{"k":4141,"v":[[0,3,["H1121"]],[3,5,["H1961","H7462"]],[5,8,["H4057"]],[8,9,["H705"]],[9,10,["H8141"]],[10,12,["H5375","(H853)"]],[12,14,["H2184"]],[14,15,["H5704"]],[15,17,["H6297"]],[17,19,["H8552"]],[19,22,["H4057"]]]},{"k":4142,"v":[[0,3,["H4557"]],[3,6,["H3117"]],[6,8,["H834"]],[8,10,["H8446","(H853)"]],[10,12,["H776"]],[12,14,["H705"]],[14,15,["H3117"]],[15,20,["H3117","H8141","H3117","H8141"]],[20,23,["H5375","(H853)"]],[23,25,["H5771"]],[25,27,["H705"]],[27,28,["H8141"]],[28,32,["H3045","(H853)"]],[32,36,["H8569"]]]},{"k":4143,"v":[[0,1,["H589"]],[1,3,["H3068"]],[3,5,["H1696"]],[5,8,["H518","H3808"]],[8,9,["H6213"]],[9,10,["H2063"]],[10,12,["H3605"]],[12,13,["H2063"]],[13,14,["H7451"]],[14,15,["H5712"]],[15,19,["H3259"]],[19,20,["H5921"]],[20,23,["H2088"]],[23,24,["H4057"]],[24,28,["H8552"]],[28,30,["H8033"]],[30,33,["H4191"]]]},{"k":4144,"v":[[0,3,["H376"]],[3,4,["H834"]],[4,5,["H4872"]],[5,6,["H7971"]],[6,8,["H8446","(H853)"]],[8,10,["H776"]],[10,12,["H7725"]],[12,14,["(H853)"]],[14,15,["H3605"]],[15,17,["H5712"]],[17,19,["H3885"]],[19,20,["H5921"]],[20,24,["H3318"]],[24,26,["H1681"]],[26,27,["H5921"]],[27,29,["H776"]]]},{"k":4145,"v":[[0,3,["H376"]],[3,7,["H3318"]],[7,9,["H7451"]],[9,10,["H1681"]],[10,13,["H776"]],[13,14,["H4191"]],[14,17,["H4046"]],[17,18,["H6440"]],[18,20,["H3068"]]]},{"k":4146,"v":[[0,2,["H3091"]],[2,4,["H1121"]],[4,6,["H5126"]],[6,8,["H3612"]],[8,10,["H1121"]],[10,12,["H3312"]],[12,15,["H4480"]],[15,17,["H376"]],[17,19,["H1980"]],[19,21,["H8446","(H853)"]],[21,23,["H776"]],[23,24,["H2421"]],[24,25,[]]]},{"k":4147,"v":[[0,2,["H4872"]],[2,3,["H1696","(H853)"]],[3,4,["H428"]],[4,5,["H1697"]],[5,6,["H413"]],[6,7,["H3605"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,14,["H5971"]],[14,15,["H56"]],[15,16,["H3966"]]]},{"k":4148,"v":[[0,5,["H7925"]],[5,8,["H1242"]],[8,12,["H5927"]],[12,13,["H413"]],[13,15,["H7218"]],[15,18,["H2022"]],[18,19,["H559"]],[19,20,["H2009"]],[20,27,["H5927"]],[27,28,["H413"]],[28,30,["H4725"]],[30,31,["H834"]],[31,33,["H3068"]],[33,35,["H559"]],[35,36,["H3588"]],[36,39,["H2398"]]]},{"k":4149,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H4100"]],[4,5,["H2088"]],[5,7,["H859"]],[7,8,["H5674","(H853)"]],[8,10,["H6310"]],[10,13,["H3068"]],[13,15,["H1931"]],[15,17,["H3808"]],[17,18,["H6743"]]]},{"k":4150,"v":[[0,3,["H5927","H408"]],[3,4,["H3588"]],[4,6,["H3068"]],[6,8,["H369"]],[8,9,["H7130"]],[9,14,["H3808"]],[14,15,["H5062"]],[15,16,["H6440"]],[16,18,["H341"]]]},{"k":4151,"v":[[0,1,["H3588"]],[1,3,["H6003"]],[3,6,["H3669"]],[6,8,["H8033"]],[8,9,["H6440"]],[9,14,["H5307"]],[14,17,["H2719"]],[17,18,["H3588","H5921","H3651"]],[18,22,["H7725"]],[22,23,["H4480","H310"]],[23,25,["H3068"]],[25,28,["H3068"]],[28,30,["H3808"]],[30,31,["H1961"]],[31,32,["H5973"]],[32,33,[]]]},{"k":4152,"v":[[0,3,["H6075"]],[3,6,["H5927"]],[6,7,["H413"]],[7,9,["H2022"]],[9,10,["H7218"]],[10,13,["H727"]],[13,16,["H1285"]],[16,19,["H3068"]],[19,21,["H4872"]],[21,22,["H4185"]],[22,23,["H3808"]],[23,25,["H4480","H7130"]],[25,27,["H4264"]]]},{"k":4153,"v":[[0,3,["H6003"]],[3,5,["H3381"]],[5,8,["H3669"]],[8,10,["H3427"]],[10,12,["H1931"]],[12,13,["H2022"]],[13,15,["H5221"]],[15,18,["H3807"]],[18,21,["H5704"]],[21,22,["H2767"]]]},{"k":4154,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4155,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H3588"]],[11,14,["H935"]],[14,15,["H413"]],[15,17,["H776"]],[17,20,["H4186"]],[20,21,["H834"]],[21,22,["H589"]],[22,23,["H5414"]],[23,25,[]]]},{"k":4156,"v":[[0,3,["H6213"]],[3,7,["H801"]],[7,10,["H3068"]],[10,13,["H5930"]],[13,14,["H176"]],[14,16,["H2077"]],[16,18,["H6381"]],[18,20,["H5088"]],[20,21,["H176"]],[21,25,["H5071"]],[25,26,["H176"]],[26,30,["H4150"]],[30,32,["H6213"]],[32,34,["H5207"]],[34,35,["H7381"]],[35,38,["H3068"]],[38,39,["H4480"]],[39,41,["H1241"]],[41,42,["H176"]],[42,43,["H4480"]],[43,45,["H6629"]]]},{"k":4157,"v":[[0,5,["H7126"]],[5,7,["H7133"]],[7,10,["H3068"]],[10,11,["H7126"]],[11,14,["H4503"]],[14,18,["H6241"]],[18,20,["H5560"]],[20,21,["H1101"]],[21,24,["H7243"]],[24,28,["H1969"]],[28,30,["H8081"]]]},{"k":4158,"v":[[0,3,["H7243"]],[3,7,["H1969"]],[7,9,["H3196"]],[9,13,["H5262"]],[13,16,["H6213"]],[16,17,["H5921"]],[17,20,["H5930"]],[20,21,["H176"]],[21,22,["H2077"]],[22,24,["H259"]],[24,25,["H3532"]]]},{"k":4159,"v":[[0,1,["H176"]],[1,4,["H352"]],[4,7,["H6213"]],[7,11,["H4503"]],[11,12,["H8147"]],[12,14,["H6241"]],[14,16,["H5560"]],[16,17,["H1101"]],[17,20,["H7992"]],[20,24,["H1969"]],[24,26,["H8081"]]]},{"k":4160,"v":[[0,5,["H5262"]],[5,8,["H7126"]],[8,10,["H7992"]],[10,14,["H1969"]],[14,16,["H3196"]],[16,19,["H5207"]],[19,20,["H7381"]],[20,23,["H3068"]]]},{"k":4161,"v":[[0,2,["H3588"]],[2,4,["H6213"]],[4,6,["H1121","H1241"]],[6,10,["H5930"]],[10,11,["H176"]],[11,14,["H2077"]],[14,16,["H6381"]],[16,18,["H5088"]],[18,19,["H176"]],[19,21,["H8002"]],[21,24,["H3068"]]]},{"k":4162,"v":[[0,4,["H7126"]],[4,5,["H5921"]],[5,7,["H1121","H1241"]],[7,10,["H4503"]],[10,12,["H7969"]],[12,14,["H6241"]],[14,16,["H5560"]],[16,17,["H1101"]],[17,19,["H2677"]],[19,21,["H1969"]],[21,23,["H8081"]]]},{"k":4163,"v":[[0,4,["H7126"]],[4,8,["H5262"]],[8,9,["H2677"]],[9,11,["H1969"]],[11,13,["H3196"]],[13,19,["H801"]],[19,22,["H5207"]],[22,23,["H7381"]],[23,26,["H3068"]]]},{"k":4164,"v":[[0,1,["H3602"]],[1,5,["H6213"]],[5,7,["H259"]],[7,8,["H7794"]],[8,9,["H176"]],[9,11,["H259"]],[11,12,["H352"]],[12,13,["H176"]],[13,16,["H7716","H3532"]],[16,17,["H176"]],[17,19,["H5795"]]]},{"k":4165,"v":[[0,4,["H4557"]],[4,5,["H834"]],[5,8,["H6213"]],[8,9,["H3602"]],[9,12,["H6213"]],[12,15,["H259"]],[15,19,["H4557"]]]},{"k":4166,"v":[[0,1,["H3605"]],[1,7,["H249"]],[7,9,["H6213","(H853)"]],[9,11,["H428"]],[11,14,["H3602"]],[14,16,["H7126"]],[16,21,["H801"]],[21,24,["H5207"]],[24,25,["H7381"]],[25,28,["H3068"]]]},{"k":4167,"v":[[0,2,["H3588"]],[2,4,["H1616"]],[4,5,["H1481"]],[5,6,["H854"]],[6,8,["H176"]],[8,9,["H834"]],[9,11,["H8432"]],[11,15,["H1755"]],[15,18,["H6213"]],[18,23,["H801"]],[23,26,["H5207"]],[26,27,["H7381"]],[27,30,["H3068"]],[30,31,["H834"]],[31,33,["H6213"]],[33,34,["H3651"]],[34,37,["H6213"]]]},{"k":4168,"v":[[0,1,["H259"]],[1,2,["H2708"]],[2,10,["H6951"]],[10,15,["H1616"]],[15,17,["H1481"]],[17,21,["H2708"]],[21,23,["H5769"]],[23,26,["H1755"]],[26,33,["H1616"]],[33,34,["H1961"]],[34,35,["H6440"]],[35,37,["H3068"]]]},{"k":4169,"v":[[0,1,["H259"]],[1,2,["H8451"]],[2,4,["H259"]],[4,5,["H4941"]],[5,7,["H1961"]],[7,13,["H1616"]],[13,15,["H1481"]],[15,16,["H854"]],[16,17,[]]]},{"k":4170,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4171,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,13,["H935"]],[13,14,["H413"]],[14,16,["H776"]],[16,17,["H834","H8033"]],[17,18,["H589"]],[18,19,["H935"]],[19,20,[]]]},{"k":4172,"v":[[0,4,["H1961"]],[4,8,["H398"]],[8,11,["H4480","H3899"]],[11,14,["H776"]],[14,18,["H7311"]],[18,21,["H8641"]],[21,24,["H3068"]]]},{"k":4173,"v":[[0,4,["H7311"]],[4,6,["H2471"]],[6,9,["H7225"]],[9,12,["H6182"]],[12,16,["H8641"]],[16,22,["H8641"]],[22,25,["H1637"]],[25,26,["H3651"]],[26,29,["H7311"]],[29,30,[]]]},{"k":4174,"v":[[0,3,["H4480","H7225"]],[3,6,["H6182"]],[6,9,["H5414"]],[9,12,["H3068"]],[12,15,["H8641"]],[15,18,["H1755"]]]},{"k":4175,"v":[[0,2,["H3588"]],[2,5,["H7686"]],[5,7,["H3808"]],[7,8,["H6213","(H853)"]],[8,9,["H3605"]],[9,10,["H428"]],[10,11,["H4687"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H1696"]],[16,17,["H413"]],[17,18,["H4872"]]]},{"k":4176,"v":[[0,1,["(H853)"]],[1,2,["H3605"]],[2,3,["H834"]],[3,5,["H3068"]],[5,7,["H6680","H413"]],[7,11,["H3027"]],[11,13,["H4872"]],[13,14,["H4480"]],[14,16,["H3117"]],[16,17,["H834"]],[17,19,["H3068"]],[19,20,["H6680"]],[20,23,["H1973"]],[23,26,["H1755"]]]},{"k":4177,"v":[[0,4,["H1961"]],[4,5,["H518"]],[5,8,["H6213"]],[8,10,["H7684"]],[10,13,["H4480","H5869"]],[13,16,["H5712"]],[16,18,["H3605"]],[18,20,["H5712"]],[20,22,["H6213"]],[22,23,["H259"]],[23,24,["H1121","H1241"]],[24,25,["H6499"]],[25,29,["H5930"]],[29,32,["H5207"]],[32,33,["H7381"]],[33,36,["H3068"]],[36,40,["H4503"]],[40,44,["H5262"]],[44,48,["H4941"]],[48,50,["H259"]],[50,51,["H8163"]],[51,54,["H5795"]],[54,58,["H2403"]]]},{"k":4178,"v":[[0,3,["H3548"]],[3,7,["H3722"]],[7,8,["H5921"]],[8,9,["H3605"]],[9,11,["H5712"]],[11,14,["H1121"]],[14,16,["H3478"]],[16,21,["H5545"]],[21,23,["H3588"]],[23,24,["H1931"]],[24,26,["H7684"]],[26,28,["H1992"]],[28,30,["H935","(H853)"]],[30,32,["H7133"]],[32,37,["H801"]],[37,40,["H3068"]],[40,44,["H2403"]],[44,45,["H6440"]],[45,47,["H3068"]],[47,48,["H5921"]],[48,50,["H7684"]]]},{"k":4179,"v":[[0,5,["H5545"]],[5,6,["H3605"]],[6,8,["H5712"]],[8,11,["H1121"]],[11,13,["H3478"]],[13,16,["H1616"]],[16,18,["H1481"]],[18,19,["H8432"]],[19,21,["H3588"]],[21,22,["H3605"]],[22,24,["H5971"]],[24,27,["H7684"]]]},{"k":4180,"v":[[0,2,["H518"]],[2,3,["H259"]],[3,4,["H5315"]],[4,5,["H2398"]],[5,7,["H7684"]],[7,11,["H7126"]],[11,14,["H5795"]],[14,17,["H1323"]],[17,18,["H8141"]],[18,22,["H2403"]]]},{"k":4181,"v":[[0,3,["H3548"]],[3,7,["H3722"]],[7,8,["H5921"]],[8,10,["H5315"]],[10,13,["H7683"]],[13,16,["H2398"]],[16,18,["H7684"]],[18,19,["H6440"]],[19,21,["H3068"]],[21,25,["H3722"]],[25,26,["H5921"]],[26,32,["H5545"]],[32,33,[]]]},{"k":4182,"v":[[0,3,["H1961"]],[3,4,["H259"]],[4,5,["H8451"]],[5,9,["H6213"]],[9,11,["H7684"]],[11,17,["H249"]],[17,20,["H1121"]],[20,22,["H3478"]],[22,26,["H1616"]],[26,28,["H1481"]],[28,29,["H8432"]],[29,30,[]]]},{"k":4183,"v":[[0,3,["H5315"]],[3,4,["H834"]],[4,5,["H6213"]],[5,7,["H3027","H7311"]],[7,14,["H4480","H249"]],[14,17,["H1616"]],[17,19,["H1931"]],[19,20,["H1442","(H853)"]],[20,22,["H3068"]],[22,24,["H1931"]],[24,25,["H5315"]],[25,29,["H3772"]],[29,31,["H4480","H7130"]],[31,33,["H5971"]]]},{"k":4184,"v":[[0,1,["H3588"]],[1,4,["H959"]],[4,6,["H1697"]],[6,9,["H3068"]],[9,12,["H6565"]],[12,14,["H4687"]],[14,15,["H1931"]],[15,16,["H5315"]],[16,21,["H3772","H3772"]],[21,23,["H5771"]],[23,27,[]]]},{"k":4185,"v":[[0,4,["H1121"]],[4,6,["H3478"]],[6,7,["H1961"]],[7,10,["H4057"]],[10,12,["H4672"]],[12,14,["H376"]],[14,16,["H7197"]],[16,17,["H6086"]],[17,20,["H7676"]],[20,21,["H3117"]]]},{"k":4186,"v":[[0,4,["H4672"]],[4,6,["H7197"]],[6,7,["H6086"]],[7,8,["H7126"]],[8,10,["H413"]],[10,11,["H4872"]],[11,13,["H175"]],[13,15,["H413"]],[15,16,["H3605"]],[16,18,["H5712"]]]},{"k":4187,"v":[[0,3,["H5117"]],[3,6,["H4929"]],[6,7,["H3588"]],[7,10,["H3808"]],[10,11,["H6567"]],[11,12,["H4100"]],[12,15,["H6213"]],[15,17,[]]]},{"k":4188,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H376"]],[8,14,["H4191","H4191"]],[14,15,["H3605"]],[15,17,["H5712"]],[17,19,["H7275"]],[19,22,["H68"]],[22,23,["H4480","H2351"]],[23,25,["H4264"]]]},{"k":4189,"v":[[0,2,["H3605"]],[2,4,["H5712"]],[4,5,["H3318"]],[5,7,["H413","H4480","H2351"]],[7,9,["H4264"]],[9,11,["H7275"]],[11,14,["H68"]],[14,17,["H4191"]],[17,18,["H834"]],[18,20,["H3068"]],[20,21,["H6680","(H853)"]],[21,22,["H4872"]]]},{"k":4190,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4191,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559","H413"]],[8,12,["H6213"]],[12,14,["H6734"]],[14,15,["H5921"]],[15,17,["H3671"]],[17,20,["H899"]],[20,23,["H1755"]],[23,27,["H5414"]],[27,28,["H5921"]],[28,30,["H6734"]],[30,33,["H3671"]],[33,35,["H6616"]],[35,37,["H8504"]]]},{"k":4192,"v":[[0,4,["H1961"]],[4,9,["H6734"]],[9,14,["H7200"]],[14,17,["H2142","(H853)"]],[17,18,["H3605"]],[18,20,["H4687"]],[20,23,["H3068"]],[23,25,["H6213"]],[25,30,["H8446"]],[30,31,["H3808"]],[31,32,["H310"]],[32,35,["H3824"]],[35,39,["H5869"]],[39,40,["H310"]],[40,41,["H834"]],[41,42,["H859"]],[42,47,["H2181"]]]},{"k":4193,"v":[[0,1,["H4616"]],[1,4,["H2142"]],[4,6,["H6213","(H853)"]],[6,7,["H3605"]],[7,9,["H4687"]],[9,11,["H1961"]],[11,12,["H6918"]],[12,15,["H430"]]]},{"k":4194,"v":[[0,1,["H589"]],[1,4,["H3068"]],[4,6,["H430"]],[6,7,["H834"]],[7,10,["H3318","(H853)"]],[10,13,["H4480","H776"]],[13,15,["H4714"]],[15,17,["H1961"]],[17,19,["H430"]],[19,20,["H589"]],[20,23,["H3068"]],[23,25,["H430"]]]},{"k":4195,"v":[[0,2,["H7141"]],[2,4,["H1121"]],[4,6,["H3324"]],[6,8,["H1121"]],[8,10,["H6955"]],[10,12,["H1121"]],[12,14,["H3878"]],[14,16,["H1885"]],[16,18,["H48"]],[18,20,["H1121"]],[20,22,["H446"]],[22,24,["H203"]],[24,26,["H1121"]],[26,28,["H6431"]],[28,29,["H1121"]],[29,31,["H7205"]],[31,32,["H3947"]],[32,33,[]]]},{"k":4196,"v":[[0,4,["H6965"]],[4,5,["H6440"]],[5,6,["H4872"]],[6,8,["H376"]],[8,11,["H4480","H1121"]],[11,13,["H3478"]],[13,15,["H3967"]],[15,17,["H2572"]],[17,18,["H5387"]],[18,21,["H5712"]],[21,22,["H7148"]],[22,25,["H4150"]],[25,26,["H376"]],[26,28,["H8034"]]]},{"k":4197,"v":[[0,5,["H6950"]],[5,6,["H5921"]],[6,7,["H4872"]],[7,9,["H5921"]],[9,10,["H175"]],[10,12,["H559"]],[12,13,["H413"]],[13,18,["H7227"]],[18,21,["H3588"]],[21,22,["H3605"]],[22,24,["H5712"]],[24,26,["H6918"]],[26,28,["H3605"]],[28,33,["H3068"]],[33,35,["H8432"]],[35,37,["H4069"]],[37,42,["H5375"]],[42,43,["H5921"]],[43,45,["H6951"]],[45,48,["H3068"]]]},{"k":4198,"v":[[0,3,["H4872"]],[3,4,["H8085"]],[4,7,["H5307"]],[7,8,["H5921"]],[8,10,["H6440"]]]},{"k":4199,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,5,["H7141"]],[5,7,["H413"]],[7,8,["H3605"]],[8,10,["H5712"]],[10,11,["H559"]],[11,14,["H1242"]],[14,16,["H3068"]],[16,18,["H3045","(H853)"]],[18,19,["H834"]],[19,25,["H6918"]],[25,32,["H7126"]],[32,33,["H413"]],[33,37,["H834"]],[37,40,["H977"]],[40,46,["H7126"]],[46,47,["H413"]],[47,48,[]]]},{"k":4200,"v":[[0,1,["H2063"]],[1,2,["H6213"]],[2,3,["H3947"]],[3,5,["H4289"]],[5,6,["H7141"]],[6,8,["H3605"]],[8,10,["H5712"]]]},{"k":4201,"v":[[0,2,["H5414"]],[2,3,["H784"]],[3,6,["H7760"]],[6,7,["H7004"]],[7,8,["H5921"]],[8,10,["H6440"]],[10,12,["H3068"]],[12,14,["H4279"]],[14,18,["H1961"]],[18,21,["H376"]],[21,22,["H834"]],[22,24,["H3068"]],[24,26,["H977"]],[26,27,["H1931"]],[27,30,["H6918"]],[30,34,["H7227"]],[34,38,["H1121"]],[38,40,["H3878"]]]},{"k":4202,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7141"]],[5,6,["H8085"]],[6,9,["H4994"]],[9,11,["H1121"]],[11,13,["H3878"]]]},{"k":4203,"v":[[0,6,["H4592"]],[6,7,["H4480"]],[7,9,["H3588"]],[9,11,["H430"]],[11,13,["H3478"]],[13,15,["H914"]],[15,19,["H4480","H5712"]],[19,21,["H3478"]],[21,25,["H7126","(H853)"]],[25,26,["H413"]],[26,29,["H5647","(H853)"]],[29,31,["H5656"]],[31,34,["H4908"]],[34,37,["H3068"]],[37,40,["H5975"]],[40,41,["H6440"]],[41,43,["H5712"]],[43,45,["H8334"]],[45,47,[]]]},{"k":4204,"v":[[0,6,["H7126","(H853)"]],[6,10,["H3605"]],[10,12,["H251"]],[12,14,["H1121"]],[14,16,["H3878"]],[16,17,["H854"]],[17,20,["H1245"]],[20,23,["H3550"]],[23,24,["H1571"]]]},{"k":4205,"v":[[0,3,["H3651"]],[3,5,["H859"]],[5,7,["H3605"]],[7,9,["H5712"]],[9,12,["H3259"]],[12,13,["H5921"]],[13,15,["H3068"]],[15,17,["H4100"]],[17,19,["H175"]],[19,20,["H3588"]],[20,22,["H3885"]],[22,23,["H5921"]],[23,24,[]]]},{"k":4206,"v":[[0,2,["H4872"]],[2,3,["H7971"]],[3,5,["H7121"]],[5,6,["H1885"]],[6,8,["H48"]],[8,10,["H1121"]],[10,12,["H446"]],[12,14,["H559"]],[14,17,["H3808"]],[17,19,["H5927"]]]},{"k":4207,"v":[[0,5,["H4592"]],[5,6,["H3588"]],[6,11,["H5927"]],[11,15,["H4480","H776"]],[15,17,["H2100"]],[17,19,["H2461"]],[19,21,["H1706"]],[21,23,["H4191"]],[23,27,["H4057"]],[27,28,["H3588"]],[28,34,["H8323","H8323","H1571"]],[34,35,["H5921"]],[35,36,[]]]},{"k":4208,"v":[[0,1,["H637"]],[1,4,["H3808"]],[4,5,["H935"]],[5,7,["H413"]],[7,9,["H776"]],[9,11,["H2100"]],[11,13,["H2461"]],[13,15,["H1706"]],[15,17,["H5414"]],[17,19,["H5159"]],[19,21,["H7704"]],[21,23,["H3754"]],[23,27,["H5365"]],[27,29,["H5869"]],[29,31,["H1992"]],[31,32,["H376"]],[32,35,["H3808"]],[35,37,["H5927"]]]},{"k":4209,"v":[[0,2,["H4872"]],[2,5,["H2734","H3966"]],[5,7,["H559"]],[7,8,["H413"]],[8,10,["H3068"]],[10,11,["H6437","H413"]],[11,12,["H408"]],[12,15,["H4503"]],[15,18,["H3808"]],[18,19,["H5375"]],[19,20,["H259"]],[20,21,["H2543"]],[21,22,["H4480"]],[22,24,["H3808"]],[24,27,["H7489","(H853)"]],[27,28,["H259"]],[28,29,["H4480"]],[29,30,[]]]},{"k":4210,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7141"]],[5,6,["H1961"]],[6,7,["H859"]],[7,9,["H3605"]],[9,11,["H5712"]],[11,12,["H6440"]],[12,14,["H3068"]],[14,15,["H859"]],[15,17,["H1992"]],[17,19,["H175"]],[19,21,["H4279"]]]},{"k":4211,"v":[[0,2,["H3947"]],[2,4,["H376"]],[4,6,["H4289"]],[6,8,["H5414"]],[8,9,["H7004"]],[9,10,["H5921"]],[10,13,["H7126"]],[13,15,["H6440"]],[15,17,["H3068"]],[17,19,["H376"]],[19,21,["H4289"]],[21,23,["H3967"]],[23,25,["H2572"]],[25,26,["H4289"]],[26,27,["H859"]],[27,30,["H175"]],[30,31,["H376"]],[31,35,["H4289"]]]},{"k":4212,"v":[[0,3,["H3947"]],[3,5,["H376"]],[5,7,["H4289"]],[7,9,["H5414"]],[9,10,["H784"]],[10,11,["H413"]],[11,14,["H7760"]],[14,15,["H7004"]],[15,16,["H413"]],[16,18,["H5975"]],[18,21,["H6607"]],[21,24,["H168"]],[24,27,["H4150"]],[27,29,["H4872"]],[29,31,["H175"]]]},{"k":4213,"v":[[0,2,["H7141"]],[2,3,["H6950","(H853)"]],[3,4,["H3605"]],[4,6,["H5712"]],[6,7,["H5921"]],[7,9,["H413"]],[9,11,["H6607"]],[11,14,["H168"]],[14,17,["H4150"]],[17,20,["H3519"]],[20,23,["H3068"]],[23,24,["H7200"]],[24,25,["H413"]],[25,26,["H3605"]],[26,28,["H5712"]]]},{"k":4214,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H559"]]]},{"k":4215,"v":[[0,2,["H914"]],[2,4,["H4480","H8432"]],[4,5,["H2063"]],[5,6,["H5712"]],[6,10,["H3615"]],[10,14,["H7281"]]]},{"k":4216,"v":[[0,3,["H5307"]],[3,4,["H5921"]],[4,6,["H6440"]],[6,8,["H559"]],[8,10,["H410"]],[10,12,["H430"]],[12,15,["H7307"]],[15,17,["H3605"]],[17,18,["H1320"]],[18,20,["H259"]],[20,21,["H376"]],[21,22,["H2398"]],[22,27,["H7107"]],[27,28,["H5921"]],[28,29,["H3605"]],[29,31,["H5712"]]]},{"k":4217,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4218,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H5712"]],[4,5,["H559"]],[5,8,["H5927"]],[8,10,["H4480","H5439"]],[10,12,["H4908"]],[12,14,["H7141"]],[14,15,["H1885"]],[15,17,["H48"]]]},{"k":4219,"v":[[0,2,["H4872"]],[2,4,["H6965"]],[4,6,["H1980"]],[6,7,["H413"]],[7,8,["H1885"]],[8,10,["H48"]],[10,13,["H2205"]],[13,15,["H3478"]],[15,16,["H1980","H310"]],[16,17,[]]]},{"k":4220,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H5712"]],[6,7,["H559"]],[7,8,["H5493"]],[8,11,["H4994"]],[11,12,["H4480","H5921"]],[12,14,["H168"]],[14,16,["H428"]],[16,17,["H7563"]],[17,18,["H376"]],[18,20,["H5060"]],[20,21,["H408","H3605"]],[21,24,["H6435"]],[24,27,["H5595"]],[27,29,["H3605"]],[29,31,["H2403"]]]},{"k":4221,"v":[[0,4,["H5927"]],[4,5,["H4480","H5921"]],[5,7,["H4908"]],[7,9,["H7141"]],[9,10,["H1885"]],[10,12,["H48"]],[12,15,["H4480","H5439"]],[15,17,["H1885"]],[17,19,["H48"]],[19,21,["H3318"]],[21,23,["H5324"]],[23,26,["H6607"]],[26,29,["H168"]],[29,32,["H802"]],[32,35,["H1121"]],[35,39,["H2945"]]]},{"k":4222,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H2063"]],[4,7,["H3045"]],[7,8,["H3588"]],[8,10,["H3068"]],[10,12,["H7971"]],[12,15,["H6213","(H853)"]],[15,16,["H3605"]],[16,17,["H428"]],[17,18,["H4639"]],[18,19,["H3588"]],[19,22,["H3808"]],[22,28,["H4480","H3820"]]]},{"k":4223,"v":[[0,1,["H518"]],[1,2,["H428"]],[2,4,["H4191"]],[4,7,["H4194"]],[7,9,["H3605"]],[9,10,["H120"]],[10,15,["H6485"]],[15,16,["H5921"]],[16,18,["H6486"]],[18,20,["H3605"]],[20,21,["H120"]],[21,24,["H3068"]],[24,26,["H3808"]],[26,27,["H7971"]],[27,28,[]]]},{"k":4224,"v":[[0,2,["H518"]],[2,4,["H3068"]],[4,5,["H1254"]],[5,8,["H1278"]],[8,11,["H127"]],[11,12,["H6475","(H853)"]],[12,14,["H6310"]],[14,18,["H1104","(H853)"]],[18,20,["H3605"]],[20,21,["H834"]],[21,28,["H3381"]],[28,29,["H2416"]],[29,32,["H7585"]],[32,36,["H3045"]],[36,37,["H3588"]],[37,38,["H428"]],[38,39,["H376"]],[39,41,["H5006","(H853)"]],[41,43,["H3068"]]]},{"k":4225,"v":[[0,5,["H1961"]],[5,11,["H3615"]],[11,13,["H1696","(H853)"]],[13,14,["H3605"]],[14,15,["H428"]],[15,16,["H1697"]],[16,19,["H127"]],[19,21,["H1234"]],[21,22,["H834"]],[22,24,["H8478"]],[24,25,[]]]},{"k":4226,"v":[[0,3,["H776"]],[3,4,["H6605","(H853)"]],[4,6,["H6310"]],[6,10,["H1104","(H853)"]],[10,13,["H1004"]],[13,15,["H3605"]],[15,17,["H120"]],[17,18,["H834"]],[18,21,["H7141"]],[21,23,["H3605"]],[23,25,["H7399"]]]},{"k":4227,"v":[[0,1,["H1992"]],[1,3,["H3605"]],[3,4,["H834"]],[4,9,["H3381"]],[9,10,["H2416"]],[10,13,["H7585"]],[13,16,["H776"]],[16,17,["H3680"]],[17,18,["H5921"]],[18,22,["H6"]],[22,24,["H4480","H8432"]],[24,26,["H6951"]]]},{"k":4228,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,4,["H834"]],[4,7,["H5439"]],[7,9,["H5127"]],[9,12,["H6963"]],[12,15,["H3588"]],[15,17,["H559"]],[17,18,["H6435"]],[18,20,["H776"]],[20,23,["H1104"]],[23,24,[]]]},{"k":4229,"v":[[0,4,["H3318"]],[4,6,["H784"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,11,["H398"]],[11,12,["(H853)"]],[12,14,["H3967"]],[14,16,["H2572"]],[16,17,["H376"]],[17,19,["H7126"]],[19,20,["H7004"]]]},{"k":4230,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4231,"v":[[0,1,["H559"]],[1,2,["H413"]],[2,3,["H499"]],[3,5,["H1121"]],[5,7,["H175"]],[7,9,["H3548"]],[9,13,["H7311","(H853)"]],[13,15,["H4289"]],[15,17,["H4480","H996"]],[17,19,["H8316"]],[19,21,["H2219"]],[21,24,["H784"]],[24,25,["H1973"]],[25,26,["H3588"]],[26,29,["H6942"]]]},{"k":4232,"v":[[0,0,["(H853)"]],[0,2,["H4289"]],[2,4,["H428"]],[4,5,["H2400"]],[5,9,["H5315"]],[9,12,["H6213","(H853)"]],[12,14,["H7555"]],[14,15,["H6341"]],[15,18,["H6826"]],[18,21,["H4196"]],[21,22,["H3588"]],[22,24,["H7126"]],[24,26,["H6440"]],[26,28,["H3068"]],[28,32,["H6942"]],[32,36,["H1961"]],[36,38,["H226"]],[38,41,["H1121"]],[41,43,["H3478"]]]},{"k":4233,"v":[[0,2,["H499"]],[2,4,["H3548"]],[4,5,["H3947","(H853)"]],[5,7,["H5178"]],[7,8,["H4289"]],[8,9,["H834"]],[9,13,["H8313"]],[13,15,["H7126"]],[15,20,["H7554"]],[20,24,["H6826"]],[24,27,["H4196"]]]},{"k":4234,"v":[[0,4,["H2146"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,10,["H4616","H834"]],[10,11,["H3808"]],[11,12,["H376","H2114"]],[12,13,["H1931"]],[13,15,["H3808"]],[15,18,["H4480","H2233"]],[18,20,["H175"]],[20,22,["H7126"]],[22,24,["H6999"]],[24,25,["H7004"]],[25,26,["H6440"]],[26,28,["H3068"]],[28,31,["H1961"]],[31,32,["H3808"]],[32,34,["H7141"]],[34,38,["H5712"]],[38,39,["H834"]],[39,41,["H3068"]],[41,42,["H1696"]],[42,47,["H3027"]],[47,49,["H4872"]]]},{"k":4235,"v":[[0,4,["H4480","H4283"]],[4,5,["H3605"]],[5,7,["H5712"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,13,["H3885"]],[13,14,["H5921"]],[14,15,["H4872"]],[15,17,["H5921"]],[17,18,["H175"]],[18,19,["H559"]],[19,20,["H859"]],[20,22,["H4191","(H853)"]],[22,24,["H5971"]],[24,27,["H3068"]]]},{"k":4236,"v":[[0,5,["H1961"]],[5,8,["H5712"]],[8,10,["H6950"]],[10,11,["H5921"]],[11,12,["H4872"]],[12,14,["H5921"]],[14,15,["H175"]],[15,18,["H6437"]],[18,19,["H413"]],[19,21,["H168"]],[21,24,["H4150"]],[24,26,["H2009"]],[26,28,["H6051"]],[28,29,["H3680"]],[29,33,["H3519"]],[33,36,["H3068"]],[36,37,["H7200"]]]},{"k":4237,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,5,["H935"]],[5,6,["H413","H6440"]],[6,8,["H168"]],[8,11,["H4150"]]]},{"k":4238,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4239,"v":[[0,3,["H7426"]],[3,5,["H4480","H8432"]],[5,6,["H2063"]],[6,7,["H5712"]],[7,11,["H3615"]],[11,16,["H7281"]],[16,19,["H5307"]],[19,20,["H5921"]],[20,22,["H6440"]]]},{"k":4240,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H175"]],[5,6,["H3947","(H853)"]],[6,8,["H4289"]],[8,10,["H5414"]],[10,11,["H784"]],[11,12,["H5921"]],[12,14,["H4480","H5921"]],[14,16,["H4196"]],[16,19,["H7760"]],[19,20,["H7004"]],[20,22,["H1980"]],[22,23,["H4120"]],[23,24,["H413"]],[24,26,["H5712"]],[26,30,["H3722"]],[30,31,["H5921"]],[31,33,["H3588"]],[33,36,["H7110"]],[36,38,["H3318"]],[38,39,["H4480","H6440"]],[39,41,["H3068"]],[41,43,["H5063"]],[43,45,["H2490"]]]},{"k":4241,"v":[[0,2,["H175"]],[2,3,["H3947"]],[3,4,["H834"]],[4,5,["H4872"]],[5,6,["H1696"]],[6,8,["H7323"]],[8,9,["H413"]],[9,11,["H8432"]],[11,14,["H6951"]],[14,16,["H2009"]],[16,18,["H5063"]],[18,20,["H2490"]],[20,23,["H5971"]],[23,27,["H5414","(H853)"]],[27,28,["H7004"]],[28,32,["H3722"]],[32,33,["H5921"]],[33,35,["H5971"]]]},{"k":4242,"v":[[0,3,["H5975"]],[3,4,["H996"]],[4,6,["H4191"]],[6,9,["H2416"]],[9,12,["H4046"]],[12,14,["H6113"]]]},{"k":4243,"v":[[0,4,["H4191"]],[4,7,["H4046"]],[7,8,["H1961"]],[8,9,["H702","H6240"]],[9,10,["H505"]],[10,12,["H7651"]],[12,13,["H3967"]],[13,14,["H4480","H905"]],[14,17,["H4191"]],[17,18,["H5921"]],[18,20,["H1697"]],[20,22,["H7141"]]]},{"k":4244,"v":[[0,2,["H175"]],[2,3,["H7725"]],[3,4,["H413"]],[4,5,["H4872"]],[5,6,["H413"]],[6,8,["H6607"]],[8,11,["H168"]],[11,14,["H4150"]],[14,17,["H4046"]],[17,19,["H6113"]]]},{"k":4245,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4246,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H3947"]],[8,9,["H4480","H854"]],[9,15,["H4294"]],[15,19,["H1004"]],[19,22,["H1"]],[22,23,["H4480","H854"]],[23,24,["H3605"]],[24,26,["H5387"]],[26,30,["H1004"]],[30,33,["H1"]],[33,34,["H8147","H6240"]],[34,35,["H4294"]],[35,36,["H3789"]],[36,37,["(H853)"]],[37,39,["H376"]],[39,40,["H8034"]],[40,41,["H5921"]],[41,43,["H4294"]]]},{"k":4247,"v":[[0,4,["H3789"]],[4,5,["H175"]],[5,6,["H8034"]],[6,7,["H5921"]],[7,9,["H4294"]],[9,11,["H3878"]],[11,12,["H3588"]],[12,13,["H259"]],[13,14,["H4294"]],[14,19,["H7218"]],[19,22,["H1004"]],[22,25,["H1"]]]},{"k":4248,"v":[[0,6,["H5117"]],[6,9,["H168"]],[9,12,["H4150"]],[12,13,["H6440"]],[13,15,["H5715"]],[15,16,["H834","H8033"]],[16,19,["H3259"]],[19,21,[]]]},{"k":4249,"v":[[0,6,["H1961"]],[6,9,["H376"]],[9,10,["H4294"]],[10,11,["H834"]],[11,14,["H977"]],[14,16,["H6524"]],[16,22,["H7918"]],[22,23,["H4480","H5921"]],[23,24,["(H853)"]],[24,26,["H8519"]],[26,29,["H1121"]],[29,31,["H3478"]],[31,32,["H834"]],[32,33,["H1992"]],[33,34,["H3885"]],[34,35,["H5921"]],[35,36,[]]]},{"k":4250,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,11,["H3605"]],[11,14,["H5387"]],[14,15,["H5414","H413"]],[15,18,["H4294"]],[18,19,["H5387","H259","H4294"]],[19,22,["H5387"]],[22,23,["H259"]],[23,27,["H1"]],[27,28,["H1004"]],[28,30,["H8147","H6240"]],[30,31,["H4294"]],[31,34,["H4294"]],[34,36,["H175"]],[36,38,["H8432"]],[38,40,["H4294"]]]},{"k":4251,"v":[[0,2,["H4872"]],[2,4,["H5117","(H853)"]],[4,6,["H4294"]],[6,7,["H6440"]],[7,9,["H3068"]],[9,12,["H168"]],[12,14,["H5715"]]]},{"k":4252,"v":[[0,5,["H1961"]],[5,9,["H4480","H4283"]],[9,10,["H4872"]],[10,11,["H935"]],[11,12,["H413"]],[12,14,["H168"]],[14,16,["H5715"]],[16,18,["H2009"]],[18,20,["H4294"]],[20,22,["H175"]],[22,25,["H1004"]],[25,27,["H3878"]],[27,29,["H6524"]],[29,32,["H3318"]],[32,33,["H6525"]],[33,35,["H6692"]],[35,36,["H6731"]],[36,38,["H1580"]],[38,39,["H8247"]]]},{"k":4253,"v":[[0,2,["H4872"]],[2,4,["H3318","(H853)"]],[4,5,["H3605"]],[5,7,["H4294"]],[7,9,["H4480","H6440"]],[9,11,["H3068"]],[11,12,["H413"]],[12,13,["H3605"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,20,["H7200"]],[20,22,["H3947"]],[22,24,["H376"]],[24,26,["H4294"]]]},{"k":4254,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H7725","(H853)"]],[7,8,["H175"]],[8,9,["H4294"]],[9,11,["H6440"]],[11,13,["H5715"]],[13,16,["H4931"]],[16,19,["H226"]],[19,22,["H1121","H4805"]],[22,28,["H3615"]],[28,30,["H8519"]],[30,31,["H4480","H5921"]],[31,35,["H4191"]],[35,36,["H3808"]]]},{"k":4255,"v":[[0,2,["H4872"]],[2,3,["H6213"]],[3,5,["H834"]],[5,7,["H3068"]],[7,8,["H6680"]],[8,10,["H3651"]],[10,11,["H6213"]],[11,12,[]]]},{"k":4256,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H4872"]],[8,9,["H559"]],[9,10,["H2005"]],[10,12,["H1478"]],[12,14,["H6"]],[14,16,["H3605"]],[16,17,["H6"]]]},{"k":4257,"v":[[0,1,["H3605"]],[1,5,["H7131","H7131"]],[5,6,["H413"]],[6,8,["H4908"]],[8,11,["H3068"]],[11,13,["H4191"]],[13,17,["H8552"]],[17,19,["H1478"]]]},{"k":4258,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H175"]],[6,7,["H859"]],[7,10,["H1121"]],[10,13,["H1"]],[13,14,["H1004"]],[14,15,["H854"]],[15,18,["H5375","(H853)"]],[18,20,["H5771"]],[20,23,["H4720"]],[23,25,["H859"]],[25,28,["H1121"]],[28,29,["H854"]],[29,32,["H5375","(H853)"]],[32,34,["H5771"]],[34,37,["H3550"]]]},{"k":4259,"v":[[0,1,["(H853)"]],[1,3,["H251"]],[3,4,["H1571"]],[4,7,["H4294"]],[7,9,["H3878"]],[9,11,["H7626"]],[11,14,["H1"]],[14,15,["H7126"]],[15,17,["H854"]],[17,23,["H3867"]],[23,24,["H5921"]],[24,27,["H8334"]],[27,31,["H859"]],[31,34,["H1121"]],[34,35,["H854"]],[35,39,["H6440"]],[39,41,["H168"]],[41,43,["H5715"]]]},{"k":4260,"v":[[0,4,["H8104"]],[4,6,["H4931"]],[6,9,["H4931"]],[9,11,["H3605"]],[11,13,["H168"]],[13,14,["H389"]],[14,17,["H3808"]],[17,19,["H7126","H413"]],[19,21,["H3627"]],[21,24,["H6944"]],[24,27,["H4196"]],[27,29,["H3808","H1571"]],[29,30,["H1992"]],[30,32,["H859"]],[32,33,["H1571"]],[33,34,["H4191"]]]},{"k":4261,"v":[[0,5,["H3867"]],[5,6,["H5921"]],[6,9,["H8104","(H853)"]],[9,11,["H4931"]],[11,14,["H168"]],[14,17,["H4150"]],[17,19,["H3605"]],[19,21,["H5656"]],[21,24,["H168"]],[24,27,["H2114"]],[27,29,["H3808"]],[29,31,["H7126"]],[31,32,["H413"]],[32,33,[]]]},{"k":4262,"v":[[0,4,["H8104","(H853)"]],[4,6,["H4931"]],[6,9,["H6944"]],[9,12,["H4931"]],[12,15,["H4196"]],[15,18,["H1961"]],[18,19,["H3808"]],[19,20,["H7110"]],[20,22,["H5750"]],[22,23,["H5921"]],[23,25,["H1121"]],[25,27,["H3478"]]]},{"k":4263,"v":[[0,2,["H589"]],[2,3,["H2009"]],[3,6,["H3947","(H853)"]],[6,8,["H251"]],[8,10,["H3881"]],[10,12,["H4480","H8432"]],[12,14,["H1121"]],[14,16,["H3478"]],[16,21,["H5414"]],[21,24,["H4979"]],[24,27,["H3068"]],[27,29,["H5647","(H853)"]],[29,31,["H5656"]],[31,34,["H168"]],[34,37,["H4150"]]]},{"k":4264,"v":[[0,2,["H859"]],[2,5,["H1121"]],[5,6,["H854"]],[6,9,["H8104","(H853)"]],[9,12,["H3550"]],[12,14,["H3605"]],[14,15,["H1697"]],[15,18,["H4196"]],[18,20,["H4480","H1004"]],[20,22,["H6532"]],[22,26,["H5647"]],[26,29,["H5414","(H853)"]],[29,32,["H3550"]],[32,37,["H5656"]],[37,39,["H4979"]],[39,42,["H2114"]],[42,45,["H7131"]],[45,50,["H4191"]]]},{"k":4265,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H175"]],[6,7,["H2009"]],[7,8,["H589"]],[8,11,["H5414"]],[11,12,["(H853)"]],[12,14,["H4931"]],[14,18,["H8641"]],[18,20,["H3605"]],[20,23,["H6944"]],[23,26,["H1121"]],[26,28,["H3478"]],[28,33,["H5414"]],[33,39,["H4888"]],[39,43,["H1121"]],[43,46,["H2706"]],[46,48,["H5769"]]]},{"k":4266,"v":[[0,1,["H2088"]],[1,3,["H1961"]],[3,9,["H4480","H6944","H6944"]],[9,11,["H4480"]],[11,13,["H784"]],[13,14,["H3605"]],[14,15,["H7133"]],[15,18,["H3605"]],[18,20,["H4503"]],[20,24,["H3605"]],[24,26,["H2403"]],[26,30,["H3605"]],[30,32,["H817"]],[32,35,["H834"]],[35,38,["H7725"]],[38,44,["H6944","H6944"]],[44,50,["H1121"]]]},{"k":4267,"v":[[0,4,["H6944","H6944"]],[4,8,["H398"]],[8,10,["H3605"]],[10,11,["H2145"]],[11,13,["H398"]],[13,17,["H1961"]],[17,18,["H6944"]],[18,20,[]]]},{"k":4268,"v":[[0,2,["H2088"]],[2,7,["H8641"]],[7,10,["H4976"]],[10,12,["H3605"]],[12,15,["H8573"]],[15,18,["H1121"]],[18,20,["H3478"]],[20,23,["H5414"]],[23,30,["H1121"]],[30,34,["H1323"]],[34,35,["H854"]],[35,39,["H2706"]],[39,41,["H5769"]],[41,43,["H3605"]],[43,46,["H2889"]],[46,49,["H1004"]],[49,51,["H398"]],[51,53,[]]]},{"k":4269,"v":[[0,1,["H3605"]],[1,3,["H2459"]],[3,6,["H3323"]],[6,8,["H3605"]],[8,10,["H2459"]],[10,13,["H8492"]],[13,17,["H1715"]],[17,19,["H7225"]],[19,22,["H834"]],[22,25,["H5414"]],[25,28,["H3068"]],[28,32,["H5414"]],[32,33,[]]]},{"k":4270,"v":[[0,2,["H3605","H834"]],[2,5,["H1061"]],[5,8,["H776"]],[8,9,["H834"]],[9,12,["H935"]],[12,15,["H3068"]],[15,17,["H1961"]],[17,20,["H3605"]],[20,23,["H2889"]],[23,26,["H1004"]],[26,28,["H398"]],[28,30,[]]]},{"k":4271,"v":[[0,2,["H3605"]],[2,3,["H2764"]],[3,5,["H3478"]],[5,7,["H1961"]],[7,8,[]]]},{"k":4272,"v":[[0,2,["H3605"]],[2,4,["H6363"]],[4,6,["H7358"]],[6,8,["H3605"]],[8,9,["H1320"]],[9,10,["H834"]],[10,12,["H7126"]],[12,15,["H3068"]],[15,20,["H120"]],[20,22,["H929"]],[22,24,["H1961"]],[24,26,["H389","(H853)"]],[26,28,["H1060"]],[28,30,["H120"]],[30,34,["H6299","H6299"]],[34,37,["H1060"]],[37,39,["H2931"]],[39,40,["H929"]],[40,43,["H6299"]]]},{"k":4273,"v":[[0,7,["H6299"]],[7,10,["H2320"]],[10,11,["H4480","H1121"]],[11,14,["H6299"]],[14,18,["H6187"]],[18,21,["H3701"]],[21,23,["H2568"]],[23,24,["H8255"]],[24,27,["H8255"]],[27,30,["H6944"]],[30,31,["H1931"]],[31,33,["H6242"]],[33,34,["H1626"]]]},{"k":4274,"v":[[0,1,["H389"]],[1,3,["H1060"]],[3,6,["H7794"]],[6,7,["H176"]],[7,9,["H1060"]],[9,12,["H3775"]],[12,13,["H176"]],[13,15,["H1060"]],[15,18,["H5795"]],[18,21,["H3808"]],[21,22,["H6299"]],[22,23,["H1992"]],[23,25,["H6944"]],[25,28,["H2236","(H853)"]],[28,30,["H1818"]],[30,31,["H5921"]],[31,33,["H4196"]],[33,36,["H6999"]],[36,38,["H2459"]],[38,44,["H801"]],[44,47,["H5207"]],[47,48,["H7381"]],[48,51,["H3068"]]]},{"k":4275,"v":[[0,3,["H1320"]],[3,7,["H1961"]],[7,11,["H8573"]],[11,12,["H2373"]],[12,16,["H3225"]],[16,17,["H7785"]],[17,18,["H1961"]],[18,19,[]]]},{"k":4276,"v":[[0,1,["H3605"]],[1,4,["H8641"]],[4,8,["H6944"]],[8,9,["H834"]],[9,11,["H1121"]],[11,13,["H3478"]],[13,14,["H7311"]],[14,17,["H3068"]],[17,20,["H5414"]],[20,24,["H1121"]],[24,27,["H1323"]],[27,28,["H854"]],[28,32,["H2706"]],[32,34,["H5769"]],[34,35,["H1931"]],[35,38,["H1285"]],[38,40,["H4417"]],[40,42,["H5769"]],[42,43,["H6440"]],[43,45,["H3068"]],[45,51,["H2233"]],[51,52,["H854"]],[52,53,[]]]},{"k":4277,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H175"]],[6,11,["H5157","H3808"]],[11,14,["H776"]],[14,15,["H3808"]],[15,18,["H1961"]],[18,20,["H2506"]],[20,21,["H8432"]],[21,23,["H589"]],[23,26,["H2506"]],[26,29,["H5159"]],[29,30,["H8432"]],[30,32,["H1121"]],[32,34,["H3478"]]]},{"k":4278,"v":[[0,2,["H2009"]],[2,5,["H5414"]],[5,7,["H1121"]],[7,9,["H3878"]],[9,10,["H3605"]],[10,12,["H4643"]],[12,14,["H3478"]],[14,17,["H5159"]],[17,18,["H2500"]],[18,20,["H5656"]],[20,21,["H834"]],[21,22,["H1992"]],[22,23,["H5647"]],[23,24,["(H853)"]],[24,26,["H5656"]],[26,29,["H168"]],[29,32,["H4150"]]]},{"k":4279,"v":[[0,1,["H3808"]],[1,4,["H1121"]],[4,6,["H3478"]],[6,7,["H5750"]],[7,9,["H7126","H413"]],[9,11,["H168"]],[11,14,["H4150"]],[14,17,["H5375"]],[17,18,["H2399"]],[18,20,["H4191"]]]},{"k":4280,"v":[[0,3,["H3881"]],[3,5,["H5647","(H853)"]],[5,7,["H5656"]],[7,10,["H168"]],[10,13,["H4150"]],[13,15,["H1992"]],[15,17,["H5375"]],[17,19,["H5771"]],[19,24,["H2708"]],[24,26,["H5769"]],[26,29,["H1755"]],[29,31,["H8432"]],[31,33,["H1121"]],[33,35,["H3478"]],[35,37,["H5157"]],[37,38,["H3808"]],[38,39,["H5159"]]]},{"k":4281,"v":[[0,1,["H3588","(H853)"]],[1,3,["H4643"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,9,["H834"]],[9,11,["H7311"]],[11,15,["H8641"]],[15,18,["H3068"]],[18,21,["H5414"]],[21,24,["H3881"]],[24,26,["H5159"]],[26,27,["H5921","H3651"]],[27,30,["H559"]],[30,33,["H8432"]],[33,35,["H1121"]],[35,37,["H3478"]],[37,40,["H5157"]],[40,41,["H3808"]],[41,42,["H5159"]]]},{"k":4282,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4283,"v":[[0,2,["H1696"]],[2,3,["H413"]],[3,5,["H3881"]],[5,7,["H559"]],[7,8,["H413"]],[8,10,["H3588"]],[10,12,["H3947"]],[12,13,["H4480","H854"]],[13,15,["H1121"]],[15,17,["H3478","(H853)"]],[17,19,["H4643"]],[19,20,["H834"]],[20,23,["H5414"]],[23,25,["H4480","H854"]],[25,29,["H5159"]],[29,34,["H7311"]],[34,37,["H8641"]],[37,38,["H4480"]],[38,42,["H3068"]],[42,45,["H4643"]],[45,47,["H4480"]],[47,49,["H4643"]]]},{"k":4284,"v":[[0,5,["H8641"]],[5,8,["H2803"]],[8,16,["H1715"]],[16,17,["H4480"]],[17,19,["H1637"]],[19,23,["H4395"]],[23,24,["H4480"]],[24,26,["H3342"]]]},{"k":4285,"v":[[0,1,["H3651"]],[1,2,["H859"]],[2,3,["H1571"]],[3,5,["H7311"]],[5,8,["H8641"]],[8,11,["H3068"]],[11,13,["H4480","H3605"]],[13,15,["H4643"]],[15,16,["H834"]],[16,18,["H3947"]],[18,19,["H4480","H854"]],[19,21,["H1121"]],[21,23,["H3478"]],[23,27,["H5414"]],[27,28,["H4480","(H853)"]],[28,30,["H3068"]],[30,32,["H8641"]],[32,34,["H175"]],[34,36,["H3548"]]]},{"k":4286,"v":[[0,3,["H4480","H3605"]],[3,5,["H4979"]],[5,8,["H7311","(H853)"]],[8,9,["H3605"]],[9,11,["H8641"]],[11,14,["H3068"]],[14,16,["H4480","H3605"]],[16,18,["H2459"]],[18,20,["(H853)"]],[20,23,["H4720"]],[23,26,["H4480"]],[26,27,[]]]},{"k":4287,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,10,["H7311","(H853)"]],[10,12,["H2459"]],[12,14,["H4480"]],[14,20,["H2803"]],[20,23,["H3881"]],[23,26,["H8393"]],[26,29,["H1637"]],[29,33,["H8393"]],[33,36,["H3342"]]]},{"k":4288,"v":[[0,4,["H398"]],[4,7,["H3605"]],[7,8,["H4725"]],[8,9,["H859"]],[9,12,["H1004"]],[12,13,["H3588"]],[13,14,["H1931"]],[14,17,["H7939"]],[17,18,["H2500"]],[18,20,["H5656"]],[20,23,["H168"]],[23,26,["H4150"]]]},{"k":4289,"v":[[0,4,["H5375"]],[4,5,["H3808"]],[5,6,["H2399"]],[6,9,["H5921"]],[9,14,["H7311"]],[14,16,["(H853)"]],[16,18,["H2459"]],[18,19,["H4480"]],[19,21,["H3808"]],[21,24,["H2490"]],[24,27,["H6944"]],[27,30,["H1121"]],[30,32,["H3478"]],[32,33,["H3808"]],[33,35,["H4191"]]]},{"k":4290,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H413"]],[8,9,["H175"]],[9,10,["H559"]]]},{"k":4291,"v":[[0,1,["H2063"]],[1,4,["H2708"]],[4,7,["H8451"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H6680"]],[12,13,["H559"]],[13,14,["H1696"]],[14,15,["H413"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,22,["H3947","H413"]],[22,25,["H122"]],[25,26,["H6510"]],[26,28,["H8549"]],[28,29,["H834"]],[29,31,["H369"]],[31,32,["H3971"]],[32,34,["H5921"]],[34,35,["H834"]],[35,36,["H3808"]],[36,37,["H5927"]],[37,38,["H5923"]]]},{"k":4292,"v":[[0,4,["H5414"]],[4,6,["H413"]],[6,7,["H499"]],[7,9,["H3548"]],[9,15,["H3318","(H853)"]],[15,16,["H413","H4480","H2351"]],[16,18,["H4264"]],[18,22,["H7819"]],[22,24,["H6440"]],[24,26,[]]]},{"k":4293,"v":[[0,2,["H499"]],[2,4,["H3548"]],[4,6,["H3947"]],[6,9,["H4480","H1818"]],[9,12,["H676"]],[12,14,["H5137"]],[14,17,["H4480","H1818"]],[17,18,["H413","H5227"]],[18,19,["H6440"]],[19,21,["H168"]],[21,24,["H4150"]],[24,25,["H7651"]],[25,26,["H6471"]]]},{"k":4294,"v":[[0,4,["H8313","(H853)"]],[4,6,["H6510"]],[6,9,["H5869","(H853)"]],[9,11,["H5785"]],[11,14,["H1320"]],[14,17,["H1818"]],[17,18,["H5921"]],[18,20,["H6569"]],[20,23,["H8313"]]]},{"k":4295,"v":[[0,3,["H3548"]],[3,5,["H3947"]],[5,6,["H730"]],[6,7,["H6086"]],[7,9,["H231"]],[9,11,["H8144","H8438"]],[11,13,["H7993"]],[13,15,["H413"]],[15,17,["H8432"]],[17,20,["H8316"]],[20,23,["H6510"]]]},{"k":4296,"v":[[0,3,["H3548"]],[3,5,["H3526"]],[5,7,["H899"]],[7,11,["H7364"]],[11,13,["H1320"]],[13,15,["H4325"]],[15,17,["H310"]],[17,20,["H935"]],[20,21,["H413"]],[21,23,["H4264"]],[23,26,["H3548"]],[26,29,["H2930"]],[29,30,["H5704"]],[30,32,["H6153"]]]},{"k":4297,"v":[[0,4,["H8313"]],[4,7,["H3526"]],[7,9,["H899"]],[9,11,["H4325"]],[11,13,["H7364"]],[13,15,["H1320"]],[15,17,["H4325"]],[17,21,["H2930"]],[21,22,["H5704"]],[22,24,["H6153"]]]},{"k":4298,"v":[[0,3,["H376"]],[3,6,["H2889"]],[6,9,["H622","(H853)"]],[9,11,["H665"]],[11,14,["H6510"]],[14,18,["H5117"]],[18,19,["H4480","H2351"]],[19,21,["H4264"]],[21,24,["H2889"]],[24,25,["H4725"]],[25,29,["H1961"]],[29,30,["H4931"]],[30,33,["H5712"]],[33,36,["H1121"]],[36,38,["H3478"]],[38,41,["H4325"]],[41,43,["H5079"]],[43,44,["H1931"]],[44,49,["H2403"]]]},{"k":4299,"v":[[0,4,["H622","(H853)"]],[4,6,["H665"]],[6,9,["H6510"]],[9,11,["H3526","(H853)"]],[11,13,["H899"]],[13,16,["H2930"]],[16,17,["H5704"]],[17,19,["H6153"]],[19,23,["H1961"]],[23,26,["H1121"]],[26,28,["H3478"]],[28,32,["H1616"]],[32,34,["H1481"]],[34,35,["H8432"]],[35,39,["H2708"]],[39,41,["H5769"]]]},{"k":4300,"v":[[0,3,["H5060"]],[3,5,["H4191"]],[5,6,["H5315"]],[6,8,["H3605"]],[8,9,["H120"]],[9,12,["H2930"]],[12,13,["H7651"]],[13,14,["H3117"]]]},{"k":4301,"v":[[0,1,["H1931"]],[1,4,["H2398"]],[4,9,["H7992"]],[9,10,["H3117"]],[10,14,["H7637"]],[14,15,["H3117"]],[15,19,["H2891"]],[19,21,["H518"]],[21,25,["H2398","H3808"]],[25,27,["H7992"]],[27,28,["H3117"]],[28,31,["H7637"]],[31,32,["H3117"]],[32,35,["H3808"]],[35,37,["H2891"]]]},{"k":4302,"v":[[0,1,["H3605"]],[1,2,["H5060"]],[2,4,["H4191"]],[4,5,["H5315"]],[5,8,["H120"]],[8,9,["H834"]],[9,11,["H4191"]],[11,15,["H2398","H3808"]],[15,16,["H2930","(H853)"]],[16,18,["H4908"]],[18,21,["H3068"]],[21,23,["H1931"]],[23,24,["H5315"]],[24,28,["H3772"]],[28,30,["H4480","H3478"]],[30,31,["H3588"]],[31,33,["H4325"]],[33,35,["H5079"]],[35,37,["H3808"]],[37,38,["H2236"]],[38,39,["H5921"]],[39,43,["H1961"]],[43,44,["H2931"]],[44,46,["H2932"]],[46,48,["H5750"]],[48,50,[]]]},{"k":4303,"v":[[0,1,["H2063"]],[1,4,["H8451"]],[4,5,["H3588"]],[5,7,["H120"]],[7,8,["H4191"]],[8,11,["H168"]],[11,12,["H3605"]],[12,14,["H935"]],[14,15,["H413"]],[15,17,["H168"]],[17,19,["H3605"]],[19,20,["H834"]],[20,24,["H168"]],[24,27,["H2930"]],[27,28,["H7651"]],[28,29,["H3117"]]]},{"k":4304,"v":[[0,2,["H3605"]],[2,3,["H6605"]],[3,4,["H3627"]],[4,5,["H834"]],[5,7,["H369"]],[7,8,["H6781"]],[8,9,["H6616"]],[9,10,["H5921"]],[10,11,["H1931"]],[11,13,["H2931"]]]},{"k":4305,"v":[[0,2,["H3605","H834"]],[2,3,["H5060"]],[3,7,["H2491"]],[7,10,["H2719"]],[10,11,["H5921"]],[11,13,["H6440"]],[13,14,["H7704"]],[14,15,["H176"]],[15,18,["H4191"]],[18,19,["H176"]],[19,21,["H6106"]],[21,24,["H120"]],[24,25,["H176"]],[25,27,["H6913"]],[27,30,["H2930"]],[30,31,["H7651"]],[31,32,["H3117"]]]},{"k":4306,"v":[[0,4,["H2931"]],[4,8,["H3947"]],[8,11,["H4480","H6083"]],[11,15,["H8316"]],[15,19,["H2403"]],[19,21,["H2416"]],[21,22,["H4325"]],[22,25,["H5414"]],[25,26,["H5921"]],[26,27,["H413"]],[27,29,["H3627"]]]},{"k":4307,"v":[[0,3,["H2889"]],[3,4,["H376"]],[4,6,["H3947"]],[6,7,["H231"]],[7,9,["H2881"]],[9,13,["H4325"]],[13,15,["H5137"]],[15,17,["H5921"]],[17,19,["H168"]],[19,21,["H5921"]],[21,22,["H3605"]],[22,24,["H3627"]],[24,26,["H5921"]],[26,28,["H5315"]],[28,29,["H834"]],[29,30,["H1961"]],[30,31,["H8033"]],[31,33,["H5921"]],[33,36,["H5060"]],[36,38,["H6106"]],[38,39,["H176"]],[39,41,["H2491"]],[41,42,["H176"]],[42,44,["H4191"]],[44,45,["H176"]],[45,47,["H6913"]]]},{"k":4308,"v":[[0,3,["H2889"]],[3,6,["H5137"]],[6,7,["H5921"]],[7,9,["H2931"]],[9,12,["H7992"]],[12,13,["H3117"]],[13,17,["H7637"]],[17,18,["H3117"]],[18,22,["H7637"]],[22,23,["H3117"]],[23,26,["H2398"]],[26,29,["H3526"]],[29,31,["H899"]],[31,33,["H7364"]],[33,36,["H4325"]],[36,40,["H2891"]],[40,42,["H6153"]]]},{"k":4309,"v":[[0,3,["H376"]],[3,4,["H834"]],[4,7,["H2930"]],[7,10,["H3808"]],[10,12,["H2398"]],[12,13,["H1931"]],[13,14,["H5315"]],[14,18,["H3772"]],[18,20,["H4480","H8432"]],[20,22,["H6951"]],[22,23,["H3588"]],[23,26,["H2930","(H853)"]],[26,28,["H4720"]],[28,31,["H3068"]],[31,33,["H4325"]],[33,35,["H5079"]],[35,37,["H3808"]],[37,39,["H2236"]],[39,40,["H5921"]],[40,42,["H1931"]],[42,44,["H2931"]]]},{"k":4310,"v":[[0,4,["H1961"]],[4,6,["H5769"]],[6,7,["H2708"]],[7,13,["H5137"]],[13,15,["H4325"]],[15,17,["H5079"]],[17,19,["H3526"]],[19,21,["H899"]],[21,25,["H5060"]],[25,27,["H4325"]],[27,29,["H5079"]],[29,32,["H2930"]],[32,33,["H5704"]],[33,34,["H6153"]]]},{"k":4311,"v":[[0,2,["H3605","H834"]],[2,4,["H2931"]],[4,6,["H5060"]],[6,9,["H2930"]],[9,12,["H5315"]],[12,14,["H5060"]],[14,18,["H2930"]],[18,19,["H5704"]],[19,20,["H6153"]]]},{"k":4312,"v":[[0,2,["H935"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,9,["H3605"]],[9,10,["H5712"]],[10,13,["H4057"]],[13,15,["H6790"]],[15,18,["H7223"]],[18,19,["H2320"]],[19,22,["H5971"]],[22,23,["H3427"]],[23,25,["H6946"]],[25,27,["H4813"]],[27,28,["H4191"]],[28,29,["H8033"]],[29,32,["H6912"]],[32,33,["H8033"]]]},{"k":4313,"v":[[0,3,["H1961"]],[3,4,["H3808"]],[4,5,["H4325"]],[5,8,["H5712"]],[8,13,["H6950"]],[13,14,["H5921"]],[14,15,["H4872"]],[15,17,["H5921"]],[17,18,["H175"]]]},{"k":4314,"v":[[0,3,["H5971"]],[3,4,["H7378"]],[4,5,["H5973"]],[5,6,["H4872"]],[6,8,["H559"]],[8,9,["H559"]],[9,11,["H3863"]],[11,15,["H1478"]],[15,18,["H251"]],[18,19,["H1478"]],[19,20,["H6440"]],[20,22,["H3068"]]]},{"k":4315,"v":[[0,2,["H4100"]],[2,6,["H935","(H853)"]],[6,8,["H6951"]],[8,11,["H3068"]],[11,12,["H413"]],[12,13,["H2088"]],[13,14,["H4057"]],[14,16,["H587"]],[16,19,["H1165"]],[19,21,["H4191"]],[21,22,["H8033"]]]},{"k":4316,"v":[[0,2,["H4100"]],[2,9,["H5927"]],[9,12,["H4480","H4714"]],[12,16,["H935","(H853)"]],[16,17,["H413"]],[17,18,["H2088"]],[18,19,["H7451"]],[19,20,["H4725"]],[20,23,["H3808"]],[23,24,["H4725"]],[24,26,["H2233"]],[26,29,["H8384"]],[29,32,["H1612"]],[32,35,["H7416"]],[35,36,["H369"]],[36,40,["H4325"]],[40,42,["H8354"]]]},{"k":4317,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,5,["H935"]],[5,8,["H4480","H6440"]],[8,11,["H6951"]],[11,12,["H413"]],[12,14,["H6607"]],[14,17,["H168"]],[17,20,["H4150"]],[20,23,["H5307"]],[23,24,["H5921"]],[24,26,["H6440"]],[26,29,["H3519"]],[29,32,["H3068"]],[32,33,["H7200"]],[33,34,["H413"]],[34,35,[]]]},{"k":4318,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4319,"v":[[0,1,["H3947","(H853)"]],[1,3,["H4294"]],[3,9,["H6950","(H853)","H5712"]],[9,10,["H859"]],[10,12,["H175"]],[12,14,["H251"]],[14,16,["H1696"]],[16,18,["H413"]],[18,20,["H5553"]],[20,23,["H5869"]],[23,28,["H5414"]],[28,30,["H4325"]],[30,35,["H3318"]],[35,38,["H4325"]],[38,40,["H4480"]],[40,42,["H5553"]],[42,46,["(H853)"]],[46,48,["H5712"]],[48,51,["H1165"]],[51,52,["H8248"]]]},{"k":4320,"v":[[0,2,["H4872"]],[2,3,["H3947","(H853)"]],[3,5,["H4294"]],[5,7,["H4480","H6440"]],[7,9,["H3068"]],[9,10,["H834"]],[10,12,["H6680"]],[12,13,[]]]},{"k":4321,"v":[[0,2,["H4872"]],[2,4,["H175"]],[4,8,["H6950","(H853)","H6951"]],[8,9,["H413","H6440"]],[9,11,["H5553"]],[11,14,["H559"]],[14,17,["H8085"]],[17,18,["H4994"]],[18,20,["H4784"]],[20,23,["H3318"]],[23,25,["H4325"]],[25,27,["H4480"]],[27,28,["H2088"]],[28,29,["H5553"]]]},{"k":4322,"v":[[0,2,["H4872"]],[2,4,["H7311","(H853)"]],[4,6,["H3027"]],[6,10,["H4294"]],[10,12,["H5221","(H853)"]],[12,14,["H5553"]],[14,15,["H6471"]],[15,18,["H4325"]],[18,20,["H3318"]],[20,21,["H7227"]],[21,24,["H5712"]],[24,25,["H8354"]],[25,28,["H1165"]],[28,29,[]]]},{"k":4323,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H175"]],[8,9,["H3282"]],[9,11,["H539"]],[11,13,["H3808"]],[13,15,["H6942"]],[15,19,["H5869"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,25,["H3651"]],[25,28,["H3808"]],[28,29,["H935","(H853)"]],[29,30,["H2088"]],[30,31,["H6951"]],[31,32,["H413"]],[32,34,["H776"]],[34,35,["H834"]],[35,38,["H5414"]],[38,39,[]]]},{"k":4324,"v":[[0,1,["H1992"]],[1,4,["H4325"]],[4,6,["H4809"]],[6,7,["H834"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,12,["H7378"]],[12,13,["H854"]],[13,15,["H3068"]],[15,19,["H6942"]],[19,21,[]]]},{"k":4325,"v":[[0,2,["H4872"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,6,["H4480","H6946"]],[6,7,["H413"]],[7,9,["H4428"]],[9,11,["H123"]],[11,12,["H3541"]],[12,13,["H559"]],[13,15,["H251"]],[15,16,["H3478"]],[16,17,["H859"]],[17,18,["H3045","(H853)"]],[18,19,["H3605"]],[19,21,["H8513"]],[21,22,["H834"]],[22,24,["H4672"]],[24,25,[]]]},{"k":4326,"v":[[0,3,["H1"]],[3,5,["H3381"]],[5,7,["H4714"]],[7,11,["H3427"]],[11,13,["H4714"]],[13,15,["H7227"]],[15,16,["H3117"]],[16,19,["H4714"]],[19,20,["H7489"]],[20,24,["H1"]]]},{"k":4327,"v":[[0,4,["H6817"]],[4,5,["H413"]],[5,7,["H3068"]],[7,9,["H8085"]],[9,11,["H6963"]],[11,13,["H7971"]],[13,15,["H4397"]],[15,20,["H3318"]],[20,23,["H4480","H4714"]],[23,25,["H2009"]],[25,26,["H587"]],[26,29,["H6946"]],[29,31,["H5892"]],[31,34,["H7097"]],[34,37,["H1366"]]]},{"k":4328,"v":[[0,3,["H5674"]],[3,6,["H4994"]],[6,9,["H776"]],[9,12,["H3808"]],[12,14,["H5674"]],[14,16,["H7704"]],[16,20,["H3754"]],[20,21,["H3808"]],[21,24,["H8354"]],[24,27,["H4325"]],[27,30,["H875"]],[30,33,["H1980"]],[33,36,["H4428"]],[36,38,["H1870"]],[38,41,["H3808"]],[41,42,["H5186"]],[42,46,["H3225"]],[46,50,["H8040"]],[50,51,["H5704","H834"]],[51,54,["H5674"]],[54,56,["H1366"]]]},{"k":4329,"v":[[0,2,["H123"]],[2,3,["H559"]],[3,4,["H413"]],[4,8,["H3808"]],[8,9,["H5674"]],[9,12,["H6435"]],[12,15,["H3318"]],[15,16,["H7125"]],[16,20,["H2719"]]]},{"k":4330,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,11,["H5927"]],[11,15,["H4546"]],[15,17,["H518"]],[17,18,["H589"]],[18,21,["H4735"]],[21,22,["H8354"]],[22,25,["H4325"]],[25,29,["H5414","H4377"]],[29,34,["H7535"]],[34,35,["H369"]],[35,38,["H1697"]],[38,41,["H5674"]],[41,44,["H7272"]]]},{"k":4331,"v":[[0,3,["H559"]],[3,6,["H3808"]],[6,8,["H5674"]],[8,10,["H123"]],[10,12,["H3318"]],[12,13,["H7125"]],[13,16,["H3515"]],[16,17,["H5971"]],[17,21,["H2389"]],[21,22,["H3027"]]]},{"k":4332,"v":[[0,2,["H123"]],[2,3,["H3985"]],[3,5,["H5414","(H853)"]],[5,6,["H3478"]],[6,7,["H5674"]],[7,10,["H1366"]],[10,12,["H3478"]],[12,14,["H5186"]],[14,15,["H4480","H5921"]],[15,16,[]]]},{"k":4333,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,8,["H3605"]],[8,9,["H5712"]],[9,10,["H5265"]],[10,12,["H4480","H6946"]],[12,14,["H935"]],[14,16,["H2022"]],[16,17,["H2023"]]]},{"k":4334,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H175"]],[8,10,["H2022"]],[10,11,["H2023"]],[11,12,["H5921"]],[12,14,["H1366"]],[14,17,["H776"]],[17,19,["H123"]],[19,20,["H559"]]]},{"k":4335,"v":[[0,1,["H175"]],[1,4,["H622"]],[4,5,["H413"]],[5,7,["H5971"]],[7,8,["H3588"]],[8,11,["H3808"]],[11,12,["H935"]],[12,13,["H413"]],[13,15,["H776"]],[15,16,["H834"]],[16,19,["H5414"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,25,["H5921","H834"]],[25,28,["H4784","(H853)"]],[28,30,["H6310"]],[30,33,["H4325"]],[33,35,["H4809"]]]},{"k":4336,"v":[[0,1,["H3947","(H853)"]],[1,2,["H175"]],[2,4,["H499"]],[4,6,["H1121"]],[6,10,["H5927","(H853)"]],[10,12,["H2022"]],[12,13,["H2023"]]]},{"k":4337,"v":[[0,2,["H6584","(H853)"]],[2,3,["H175","(H853)"]],[3,6,["H899"]],[6,10,["H3847","(H853)"]],[10,11,["H499"]],[11,13,["H1121"]],[13,15,["H175"]],[15,18,["H622"]],[18,24,["H4191"]],[24,25,["H8033"]]]},{"k":4338,"v":[[0,2,["H4872"]],[2,3,["H6213"]],[3,4,["H834"]],[4,6,["H3068"]],[6,7,["H6680"]],[7,11,["H5927"]],[11,12,["H413"]],[12,13,["H2022"]],[13,14,["H2023"]],[14,17,["H5869"]],[17,19,["H3605"]],[19,21,["H5712"]]]},{"k":4339,"v":[[0,2,["H4872"]],[2,3,["H6584","(H853)"]],[3,4,["H175","(H853)"]],[4,7,["H899"]],[7,11,["H3847","(H853)","(H853)"]],[11,12,["H499"]],[12,14,["H1121"]],[14,16,["H175"]],[16,17,["H4191"]],[17,18,["H8033"]],[18,21,["H7218"]],[21,24,["H2022"]],[24,26,["H4872"]],[26,28,["H499"]],[28,30,["H3381"]],[30,31,["H4480"]],[31,33,["H2022"]]]},{"k":4340,"v":[[0,3,["H3605"]],[3,5,["H5712"]],[5,6,["H7200"]],[6,7,["H3588"]],[7,8,["H175"]],[8,10,["H1478"]],[10,12,["H1058"]],[12,13,["(H853)"]],[13,14,["H175"]],[14,15,["H7970"]],[15,16,["H3117"]],[16,18,["H3605"]],[18,20,["H1004"]],[20,22,["H3478"]]]},{"k":4341,"v":[[0,3,["H4428"]],[3,4,["H6166"]],[4,6,["H3669"]],[6,8,["H3427"]],[8,11,["H5045"]],[11,13,["H8085"]],[13,14,["H3588"]],[14,15,["H3478"]],[15,16,["H935"]],[16,19,["H1870"]],[19,22,["H871"]],[22,25,["H3898"]],[25,27,["H3478"]],[27,29,["H7617"]],[29,31,["H4480"]],[31,33,["H7628"]]]},{"k":4342,"v":[[0,2,["H3478"]],[2,3,["H5087"]],[3,5,["H5088"]],[5,8,["H3068"]],[8,10,["H559"]],[10,11,["H518"]],[11,15,["H5414","H5414","(H853)"]],[15,16,["H2088"]],[16,17,["H5971"]],[17,20,["H3027"]],[20,25,["H2763","(H853)"]],[25,27,["H5892"]]]},{"k":4343,"v":[[0,3,["H3068"]],[3,4,["H8085"]],[4,7,["H6963"]],[7,9,["H3478"]],[9,12,["H5414","(H853)"]],[12,14,["H3669"]],[14,18,["H2763"]],[18,22,["H5892"]],[22,25,["H7121"]],[25,27,["H8034"]],[27,30,["H4725"]],[30,31,["H2767"]]]},{"k":4344,"v":[[0,3,["H5265"]],[3,5,["H2022"]],[5,6,["H4480","H2023"]],[6,9,["H1870"]],[9,12,["H5488"]],[12,13,["H3220"]],[13,15,["H5437","(H853)"]],[15,17,["H776"]],[17,19,["H123"]],[19,22,["H5315"]],[22,25,["H5971"]],[25,28,["H7114"]],[28,32,["H1870"]]]},{"k":4345,"v":[[0,3,["H5971"]],[3,4,["H1696"]],[4,6,["H430"]],[6,9,["H4872"]],[9,10,["H4100"]],[10,15,["H5927"]],[15,18,["H4480","H4714"]],[18,20,["H4191"]],[20,23,["H4057"]],[23,24,["H3588"]],[24,27,["H369"]],[27,28,["H3899"]],[28,29,["H369"]],[29,33,["H4325"]],[33,36,["H5315"]],[36,37,["H6973"]],[37,39,["H7052"]],[39,40,["H3899"]]]},{"k":4346,"v":[[0,3,["H3068"]],[3,4,["H7971","(H853)"]],[4,5,["H8314"]],[5,6,["H5175"]],[6,9,["H5971"]],[9,12,["H5391","(H853)"]],[12,14,["H5971"]],[14,16,["H7227"]],[16,17,["H5971"]],[17,19,["H4480","H3478"]],[19,20,["H4191"]]]},{"k":4347,"v":[[0,3,["H5971"]],[3,4,["H935"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H559"]],[8,11,["H2398"]],[11,12,["H3588"]],[12,15,["H1696"]],[15,18,["H3068"]],[18,22,["H6419"]],[22,23,["H413"]],[23,25,["H3068"]],[25,29,["H5493","(H853)"]],[29,31,["H5175"]],[31,32,["H4480","H5921"]],[32,35,["H4872"]],[35,36,["H6419"]],[36,37,["H1157"]],[37,39,["H5971"]]]},{"k":4348,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H6213"]],[7,11,["H8314"]],[11,13,["H7760"]],[13,15,["H5921"]],[15,17,["H5251"]],[17,23,["H1961"]],[23,26,["H3605"]],[26,29,["H5391"]],[29,33,["H7200"]],[33,36,["H2425"]]]},{"k":4349,"v":[[0,2,["H4872"]],[2,3,["H6213"]],[3,5,["H5175"]],[5,7,["H5178"]],[7,9,["H7760"]],[9,11,["H5921"]],[11,13,["H5251"]],[13,18,["H1961"]],[18,20,["H518"]],[20,22,["H5175"]],[22,24,["H5391","(H853)"]],[24,26,["H376"]],[26,29,["H5027","H413"]],[29,31,["H5175"]],[31,33,["H5178"]],[33,35,["H2425"]]]},{"k":4350,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H5265"]],[7,9,["H2583"]],[9,11,["H88"]]]},{"k":4351,"v":[[0,3,["H5265"]],[3,5,["H4480","H88"]],[5,7,["H2583"]],[7,9,["H5863"]],[9,12,["H4057"]],[12,13,["H834"]],[13,15,["H5921","H6440"]],[15,16,["H4124"]],[16,19,["H4480","H4217","H8121"]]]},{"k":4352,"v":[[0,2,["H4480","H8033"]],[2,4,["H5265"]],[4,6,["H2583"]],[6,9,["H5158"]],[9,11,["H2218"]]]},{"k":4353,"v":[[0,2,["H4480","H8033"]],[2,4,["H5265"]],[4,6,["H2583"]],[6,10,["H4480","H5676"]],[10,12,["H769"]],[12,13,["H834"]],[13,17,["H4057"]],[17,20,["H3318"]],[20,23,["H4480","H1366"]],[23,26,["H567"]],[26,27,["H3588"]],[27,28,["H769"]],[28,31,["H1366"]],[31,33,["H4124"]],[33,34,["H996"]],[34,35,["H4124"]],[35,38,["H567"]]]},{"k":4354,"v":[[0,1,["H5921","H3651"]],[1,4,["H559"]],[4,7,["H5612"]],[7,10,["H4421"]],[10,13,["H3068","(H853)"]],[13,16,["H2052"]],[16,20,["H5492"]],[20,24,["H5158"]],[24,26,["H769"]]]},{"k":4355,"v":[[0,4,["H793"]],[4,7,["H5158"]],[7,8,["H834"]],[8,10,["H5186"]],[10,13,["H7675"]],[13,15,["H6144"]],[15,17,["H8172"]],[17,20,["H1366"]],[20,22,["H4124"]]]},{"k":4356,"v":[[0,3,["H4480","H8033"]],[3,7,["H876"]],[7,8,["H1931"]],[8,11,["H875"]],[11,12,["H834"]],[12,14,["H3068"]],[14,15,["H559"]],[15,17,["H4872"]],[17,21,["H622","(H853)","H5971"]],[21,25,["H5414"]],[25,27,["H4325"]]]},{"k":4357,"v":[[0,1,["H227"]],[1,2,["H3478"]],[2,3,["H7891","(H853)"]],[3,4,["H2063"]],[4,5,["H7892"]],[5,7,["H5927"]],[7,9,["H875"]],[9,10,["H6030"]],[10,13,[]]]},{"k":4358,"v":[[0,2,["H8269"]],[2,3,["H2658"]],[3,5,["H875"]],[5,7,["H5081"]],[7,10,["H5971"]],[10,11,["H3738"]],[11,18,["H2710"]],[18,21,["H4938"]],[21,25,["H4480","H4057"]],[25,29,["H4980"]]]},{"k":4359,"v":[[0,3,["H4480","H4980"]],[3,5,["H5160"]],[5,8,["H4480","H5160"]],[8,10,["H1120"]]]},{"k":4360,"v":[[0,3,["H4480","H1120"]],[3,6,["H1516"]],[6,7,["H834"]],[7,11,["H7704"]],[11,13,["H4124"]],[13,16,["H7218"]],[16,18,["H6449"]],[18,20,["H8259"]],[20,21,["H5921","H6440"]],[21,22,["H3452"]]]},{"k":4361,"v":[[0,2,["H3478"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H5511"]],[6,7,["H4428"]],[7,10,["H567"]],[10,11,["H559"]]]},{"k":4362,"v":[[0,3,["H5674"]],[3,6,["H776"]],[6,9,["H3808"]],[9,10,["H5186"]],[10,13,["H7704"]],[13,17,["H3754"]],[17,20,["H3808"]],[20,21,["H8354"]],[21,24,["H4325"]],[24,27,["H875"]],[27,32,["H1980"]],[32,35,["H4428"]],[35,37,["H1870"]],[37,38,["H5704","H834"]],[38,41,["H5674"]],[41,43,["H1366"]]]},{"k":4363,"v":[[0,2,["H5511"]],[2,4,["H3808"]],[4,5,["H5414","(H853)"]],[5,6,["H3478"]],[6,8,["H5674"]],[8,11,["H1366"]],[11,13,["H5511"]],[13,18,["H622","(H853)","H3605","H5971"]],[18,21,["H3318"]],[21,22,["H7125"]],[22,23,["H3478"]],[23,26,["H4057"]],[26,29,["H935"]],[29,31,["H3096"]],[31,33,["H3898"]],[33,35,["H3478"]]]},{"k":4364,"v":[[0,2,["H3478"]],[2,3,["H5221"]],[3,7,["H6310"]],[7,10,["H2719"]],[10,12,["H3423","(H853)"]],[12,14,["H776"]],[14,16,["H4480","H769"]],[16,17,["H5704"]],[17,18,["H2999"]],[18,20,["H5704"]],[20,22,["H1121"]],[22,24,["H5983"]],[24,25,["H3588"]],[25,27,["H1366"]],[27,30,["H1121"]],[30,32,["H5983"]],[32,34,["H5794"]]]},{"k":4365,"v":[[0,2,["H3478"]],[2,3,["H3947","(H853)"]],[3,4,["H3605"]],[4,5,["H428"]],[5,6,["H5892"]],[6,8,["H3478"]],[8,9,["H3427"]],[9,11,["H3605"]],[11,13,["H5892"]],[13,16,["H567"]],[16,18,["H2809"]],[18,21,["H3605"]],[21,23,["H1323"]],[23,24,[]]]},{"k":4366,"v":[[0,1,["H3588"]],[1,2,["H2809"]],[2,5,["H5892"]],[5,7,["H5511"]],[7,9,["H4428"]],[9,12,["H567"]],[12,13,["H1931"]],[13,15,["H3898"]],[15,18,["H7223"]],[18,19,["H4428"]],[19,21,["H4124"]],[21,23,["H3947","(H853)"]],[23,24,["H3605"]],[24,26,["H776"]],[26,30,["H4480","H3027"]],[30,32,["H5704"]],[32,33,["H769"]]]},{"k":4367,"v":[[0,1,["H5921","H3651"]],[1,6,["H4911"]],[6,7,["H559"]],[7,8,["H935"]],[8,10,["H2809"]],[10,13,["H5892"]],[13,15,["H5511"]],[15,17,["H1129"]],[17,19,["H3559"]]]},{"k":4368,"v":[[0,1,["H3588"]],[1,5,["H784"]],[5,7,["H3318"]],[7,9,["H4480","H2809"]],[9,11,["H3852"]],[11,14,["H4480","H7151"]],[14,16,["H5511"]],[16,19,["H398"]],[19,20,["H6144"]],[20,22,["H4124"]],[22,25,["H1167"]],[25,29,["H1116"]],[29,31,["H769"]]]},{"k":4369,"v":[[0,1,["H188"]],[1,4,["H4124"]],[4,7,["H6"]],[7,9,["H5971"]],[9,11,["H3645"]],[11,14,["H5414"]],[14,16,["H1121"]],[16,18,["H6412"]],[18,21,["H1323"]],[21,23,["H7628"]],[23,25,["H5511"]],[25,26,["H4428"]],[26,29,["H567"]]]},{"k":4370,"v":[[0,3,["H3384"]],[3,6,["H2809"]],[6,8,["H6"]],[8,10,["H5704"]],[10,11,["H1769"]],[11,17,["H8074"]],[17,19,["H5704"]],[19,20,["H5302"]],[20,21,["H834"]],[21,23,["H5704"]],[23,24,["H4311"]]]},{"k":4371,"v":[[0,2,["H3478"]],[2,3,["H3427"]],[3,6,["H776"]],[6,9,["H567"]]]},{"k":4372,"v":[[0,2,["H4872"]],[2,3,["H7971"]],[3,6,["H7270","(H853)"]],[6,7,["H3270"]],[7,10,["H3920"]],[10,12,["H1323"]],[12,16,["H3423","(H853)"]],[16,18,["H567"]],[18,19,["H834"]],[19,21,["H8033"]]]},{"k":4373,"v":[[0,3,["H6437"]],[3,6,["H5927"]],[6,9,["H1870"]],[9,11,["H1316"]],[11,13,["H5747"]],[13,15,["H4428"]],[15,17,["H1316"]],[17,19,["H3318"]],[19,20,["H7125"]],[20,22,["H1931"]],[22,24,["H3605"]],[24,26,["H5971"]],[26,29,["H4421"]],[29,31,["H154"]]]},{"k":4374,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H3372"]],[7,9,["H408"]],[9,10,["H3588"]],[10,13,["H5414"]],[13,17,["H3027"]],[17,19,["H3605"]],[19,21,["H5971"]],[21,24,["H776"]],[24,28,["H6213"]],[28,31,["H834"]],[31,33,["H6213"]],[33,35,["H5511"]],[35,36,["H4428"]],[36,39,["H567"]],[39,40,["H834"]],[40,41,["H3427"]],[41,43,["H2809"]]]},{"k":4375,"v":[[0,3,["H5221"]],[3,7,["H1121"]],[7,9,["H3605"]],[9,11,["H5971"]],[11,12,["H5704"]],[12,15,["H1115"]],[15,16,["H7604"]],[16,18,["H8300"]],[18,21,["H3423","(H853)"]],[21,23,["H776"]]]},{"k":4376,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H5265"]],[7,9,["H2583"]],[9,12,["H6160"]],[12,14,["H4124"]],[14,17,["H4480","H5676"]],[17,18,["H3383"]],[18,20,["H3405"]]]},{"k":4377,"v":[[0,2,["H1111"]],[2,4,["H1121"]],[4,6,["H6834"]],[6,7,["H7200","(H853)"]],[7,8,["H3605"]],[8,9,["H834"]],[9,10,["H3478"]],[10,12,["H6213"]],[12,15,["H567"]]]},{"k":4378,"v":[[0,2,["H4124"]],[2,5,["H1481","H3966"]],[5,6,["H4480","H6440"]],[6,8,["H5971"]],[8,9,["H3588"]],[9,10,["H1931"]],[10,12,["H7227"]],[12,14,["H4124"]],[14,16,["H6973"]],[16,17,["H4480","H6440"]],[17,20,["H1121"]],[20,22,["H3478"]]]},{"k":4379,"v":[[0,2,["H4124"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H2205"]],[6,8,["H4080"]],[8,9,["H6258"]],[9,12,["H6951"]],[12,14,["H3897","(H853)"]],[14,15,["H3605"]],[15,19,["H5439"]],[19,23,["H7794"]],[23,25,["H3897","(H853)"]],[25,27,["H3418"]],[27,30,["H7704"]],[30,32,["H1111"]],[32,34,["H1121"]],[34,36,["H6834"]],[36,38,["H4428"]],[38,41,["H4124"]],[41,43,["H1931"]],[43,44,["H6256"]]]},{"k":4380,"v":[[0,2,["H7971"]],[2,3,["H4397"]],[3,5,["H413"]],[5,6,["H1109"]],[6,8,["H1121"]],[8,10,["H1160"]],[10,12,["H6604"]],[12,13,["H834"]],[13,15,["H5921"]],[15,17,["H5104"]],[17,20,["H776"]],[20,23,["H1121"]],[23,26,["H5971"]],[26,28,["H7121"]],[28,30,["H559"]],[30,31,["H2009"]],[31,35,["H5971"]],[35,37,["H3318"]],[37,39,["H4480","H4714"]],[39,40,["H2009"]],[40,42,["H3680","(H853)"]],[42,44,["H5869"]],[44,47,["H776"]],[47,49,["H1931"]],[49,50,["H3427"]],[50,52,["H4480","H4136"]],[52,53,[]]]},{"k":4381,"v":[[0,1,["H1980"]],[1,2,["H6258"]],[2,6,["H4994"]],[6,7,["H779"]],[7,8,["(H853)"]],[8,9,["H2088"]],[9,10,["H5971"]],[10,11,["H3588"]],[11,12,["H1931"]],[12,16,["H6099","H4480"]],[16,18,["H194"]],[18,21,["H3201"]],[21,25,["H5221"]],[25,33,["H1644"]],[33,34,["H4480"]],[34,36,["H776"]],[36,37,["H3588"]],[37,39,["H3045","(H853)"]],[39,42,["H834"]],[42,44,["H1288"]],[44,46,["H1288"]],[46,49,["H834"]],[49,51,["H779"]],[51,53,["H779"]]]},{"k":4382,"v":[[0,3,["H2205"]],[3,5,["H4124"]],[5,8,["H2205"]],[8,10,["H4080"]],[10,11,["H1980"]],[11,16,["H7081"]],[16,19,["H3027"]],[19,22,["H935"]],[22,23,["H413"]],[23,24,["H1109"]],[24,26,["H1696"]],[26,27,["H413"]],[27,30,["H1697"]],[30,32,["H1111"]]]},{"k":4383,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3885"]],[6,7,["H6311"]],[7,9,["H3915"]],[9,13,["H7725"]],[13,15,["H1697"]],[15,17,["H834"]],[17,19,["H3068"]],[19,21,["H1696"]],[21,22,["H413"]],[22,26,["H8269"]],[26,28,["H4124"]],[28,29,["H3427"]],[29,30,["H5973"]],[30,31,["H1109"]]]},{"k":4384,"v":[[0,2,["H430"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H1109"]],[5,7,["H559"]],[7,8,["H4310"]],[8,9,["H376"]],[9,11,["H428"]],[11,12,["H5973"]],[12,13,[]]]},{"k":4385,"v":[[0,2,["H1109"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H430"]],[5,6,["H1111"]],[6,8,["H1121"]],[8,10,["H6834"]],[10,11,["H4428"]],[11,13,["H4124"]],[13,15,["H7971"]],[15,16,["H413"]],[16,18,[]]]},{"k":4386,"v":[[0,1,["H2009"]],[1,5,["H5971"]],[5,7,["H3318"]],[7,9,["H4480","H4714"]],[9,11,["H3680","(H853)"]],[11,13,["H5869"]],[13,16,["H776"]],[16,17,["H1980"]],[17,18,["H6258"]],[18,19,["H6895"]],[19,22,["H194"]],[22,26,["H3201"]],[26,28,["H3898"]],[28,33,["H1644"]]]},{"k":4387,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1109"]],[5,8,["H3808"]],[8,9,["H1980"]],[9,10,["H5973"]],[10,14,["H3808"]],[14,15,["H779","(H853)"]],[15,17,["H5971"]],[17,18,["H3588"]],[18,19,["H1931"]],[19,21,["H1288"]]]},{"k":4388,"v":[[0,2,["H1109"]],[2,4,["H6965"]],[4,7,["H1242"]],[7,9,["H559"]],[9,10,["H413"]],[10,12,["H8269"]],[12,14,["H1111"]],[14,15,["H1980"]],[15,17,["H413"]],[17,19,["H776"]],[19,20,["H3588"]],[20,22,["H3068"]],[22,23,["H3985"]],[23,27,["H5414"]],[27,29,["H1980"]],[29,30,["H5973"]],[30,31,[]]]},{"k":4389,"v":[[0,3,["H8269"]],[3,5,["H4124"]],[5,7,["H6965"]],[7,10,["H935"]],[10,11,["H413"]],[11,12,["H1111"]],[12,14,["H559"]],[14,15,["H1109"]],[15,16,["H3985"]],[16,18,["H1980"]],[18,19,["H5973"]],[19,20,[]]]},{"k":4390,"v":[[0,2,["H1111"]],[2,3,["H7971"]],[3,4,["H5750"]],[4,5,["H3254"]],[5,6,["H8269"]],[6,7,["H7227"]],[7,10,["H3513"]],[10,12,["H4480","H428"]]]},{"k":4391,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,5,["H1109"]],[5,7,["H559"]],[7,10,["H3541"]],[10,11,["H559"]],[11,12,["H1111"]],[12,14,["H1121"]],[14,16,["H6834"]],[16,18,["H408"]],[18,21,["H4994"]],[21,22,["H4513"]],[22,25,["H4480","H1980"]],[25,26,["H413"]],[26,27,[]]]},{"k":4392,"v":[[0,1,["H3588"]],[1,9,["H3513","H3513","H3966"]],[9,13,["H6213"]],[13,14,["H3605","H834"]],[14,16,["H559"]],[16,17,["H413"]],[17,19,["H1980"]],[19,23,["H4994"]],[23,24,["H6895"]],[24,25,["(H853)"]],[25,26,["H2088"]],[26,27,["H5971"]]]},{"k":4393,"v":[[0,2,["H1109"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H413"]],[6,8,["H5650"]],[8,10,["H1111"]],[10,11,["H518"]],[11,12,["H1111"]],[12,14,["H5414"]],[14,17,["H1004"]],[17,18,["H4393"]],[18,20,["H3701"]],[20,22,["H2091"]],[22,24,["H3201","H3808"]],[24,26,["H5674","(H853)"]],[26,28,["H6310"]],[28,31,["H3068"]],[31,33,["H430"]],[33,35,["H6213"]],[35,36,["H6996"]],[36,37,["H176"]],[37,38,["H1419"]]]},{"k":4394,"v":[[0,1,["H6258"]],[1,5,["H4994"]],[5,6,["H3427"]],[6,7,["H859"]],[7,8,["H1571"]],[8,9,["H2088"]],[9,11,["H3915"]],[11,15,["H3045"]],[15,16,["H4100"]],[16,18,["H3068"]],[18,20,["H1696"]],[20,21,["H5973"]],[21,23,["H3254"]]]},{"k":4395,"v":[[0,2,["H430"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H1109"]],[5,7,["H3915"]],[7,9,["H559"]],[9,12,["H518"]],[12,14,["H376"]],[14,15,["H935"]],[15,17,["H7121"]],[17,20,["H6965"]],[20,22,["H1980"]],[22,23,["H854"]],[23,26,["H389","(H853)"]],[26,28,["H1697"]],[28,29,["H834"]],[29,32,["H1696"]],[32,33,["H413"]],[33,38,["H6213"]]]},{"k":4396,"v":[[0,2,["H1109"]],[2,4,["H6965"]],[4,7,["H1242"]],[7,9,["H2280","(H853)"]],[9,11,["H860"]],[11,13,["H1980"]],[13,14,["H5973"]],[14,16,["H8269"]],[16,18,["H4124"]]]},{"k":4397,"v":[[0,2,["H430"]],[2,3,["H639"]],[3,5,["H2734"]],[5,6,["H3588"]],[6,7,["H1931"]],[7,8,["H1980"]],[8,11,["H4397"]],[11,14,["H3068"]],[14,15,["H3320"]],[15,18,["H1870"]],[18,21,["H7854"]],[21,25,["H1931"]],[25,27,["H7392"]],[27,28,["H5921"]],[28,30,["H860"]],[30,33,["H8147"]],[33,34,["H5288"]],[34,36,["H5973"]],[36,37,[]]]},{"k":4398,"v":[[0,3,["H860"]],[3,4,["H7200","(H853)"]],[4,6,["H4397"]],[6,9,["H3068"]],[9,10,["H5324"]],[10,13,["H1870"]],[13,16,["H2719"]],[16,17,["H8025"]],[17,20,["H3027"]],[20,23,["H860"]],[23,25,["H5186"]],[25,27,["H4480"]],[27,29,["H1870"]],[29,31,["H1980"]],[31,34,["H7704"]],[34,36,["H1109"]],[36,37,["H5221","(H853)"]],[37,39,["H860"]],[39,41,["H5186"]],[41,45,["H1870"]]]},{"k":4399,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H5975"]],[7,10,["H4934"]],[10,13,["H3754"]],[13,15,["H1447"]],[15,19,["H4480","H2088"]],[19,22,["H1447"]],[22,25,["H4480","H2088"]]]},{"k":4400,"v":[[0,4,["H860"]],[4,5,["H7200","(H853)"]],[5,7,["H4397"]],[7,10,["H3068"]],[10,13,["H3905"]],[13,14,["H413"]],[14,16,["H7023"]],[16,18,["H3905","(H853)"]],[18,19,["H1109"]],[19,20,["H7272"]],[20,21,["H413"]],[21,23,["H7023"]],[23,26,["H5221"]],[26,28,["H3254"]]]},{"k":4401,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H5674"]],[7,8,["H3254"]],[8,10,["H5975"]],[10,13,["H6862"]],[13,14,["H4725"]],[14,15,["H834"]],[15,17,["H369"]],[17,18,["H1870"]],[18,20,["H5186"]],[20,25,["H3225"]],[25,29,["H8040"]]]},{"k":4402,"v":[[0,4,["H860"]],[4,5,["H7200","(H853)"]],[5,7,["H4397"]],[7,10,["H3068"]],[10,13,["H7257"]],[13,14,["H8478"]],[14,15,["H1109"]],[15,17,["H1109"]],[17,18,["H639"]],[18,20,["H2734"]],[20,23,["H5221","(H853)"]],[23,25,["H860"]],[25,28,["H4731"]]]},{"k":4403,"v":[[0,3,["H3068"]],[3,4,["H6605","(H853)"]],[4,6,["H6310"]],[6,9,["H860"]],[9,12,["H559"]],[12,14,["H1109"]],[14,15,["H4100"]],[15,18,["H6213"]],[18,21,["H3588"]],[21,24,["H5221"]],[24,26,["H2088"]],[26,27,["H7969"]],[27,28,["H7272"]]]},{"k":4404,"v":[[0,2,["H1109"]],[2,3,["H559"]],[3,6,["H860"]],[6,7,["H3588"]],[7,10,["H5953"]],[10,13,["H3863"]],[13,15,["H3426"]],[15,17,["H2719"]],[17,20,["H3027"]],[20,21,["H3588"]],[21,22,["H6258"]],[22,25,["H2026"]],[25,26,[]]]},{"k":4405,"v":[[0,3,["H860"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H1109"]],[6,8,["H3808"]],[8,9,["H595"]],[9,11,["H860"]],[11,12,["H5921"]],[12,13,["H834"]],[13,16,["H7392"]],[16,18,["H4480","H5750"]],[18,22,["H5704"]],[22,23,["H2088"]],[23,24,["H3117"]],[24,28,["H5532","H5532"]],[28,30,["H6213"]],[30,31,["H3541"]],[31,36,["H559"]],[36,37,["H3808"]]]},{"k":4406,"v":[[0,3,["H3068"]],[3,4,["H1540","(H853)"]],[4,6,["H5869"]],[6,8,["H1109"]],[8,11,["H7200","(H853)"]],[11,13,["H4397"]],[13,16,["H3068"]],[16,17,["H5324"]],[17,20,["H1870"]],[20,23,["H2719"]],[23,24,["H8025"]],[24,27,["H3027"]],[27,33,["H6915"]],[33,36,["H7812"]],[36,39,["H639"]]]},{"k":4407,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H559"]],[7,8,["H413"]],[8,10,["H5921","H4100"]],[10,13,["H5221","(H853)"]],[13,15,["H860"]],[15,16,["H2088"]],[16,17,["H7969"]],[17,18,["H7272"]],[18,19,["H2009"]],[19,20,["H595"]],[20,22,["H3318"]],[22,24,["H7854"]],[24,26,["H3588"]],[26,28,["H1870"]],[28,30,["H3399"]],[30,31,["H5048"]],[31,32,[]]]},{"k":4408,"v":[[0,3,["H860"]],[3,4,["H7200"]],[4,7,["H5186"]],[7,8,["H6440"]],[8,10,["H2088"]],[10,11,["H7969"]],[11,12,["H7272"]],[12,13,["H194"]],[13,16,["H5186"]],[16,17,["H4480","H6440"]],[17,19,["H3588"]],[19,20,["H6258"]],[20,21,["H1571"]],[21,24,["H2026"]],[24,29,["H2421","(H853)"]]]},{"k":4409,"v":[[0,2,["H1109"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4397"]],[6,9,["H3068"]],[9,12,["H2398"]],[12,13,["H3588"]],[13,15,["H3045"]],[15,16,["H3808"]],[16,17,["H3588"]],[17,18,["H859"]],[18,19,["H5324"]],[19,22,["H1870"]],[22,23,["H7125"]],[23,25,["H6258"]],[25,27,["H518"]],[27,29,["H7489","H5869"]],[29,36,["H7725"]]]},{"k":4410,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H1109"]],[9,10,["H1980"]],[10,11,["H5973"]],[11,13,["H376"]],[13,15,["H657","(H853)"]],[15,17,["H1697"]],[17,18,["H834"]],[18,21,["H1696"]],[21,22,["H413"]],[22,27,["H1696"]],[27,29,["H1109"]],[29,30,["H1980"]],[30,31,["H5973"]],[31,33,["H8269"]],[33,35,["H1111"]]]},{"k":4411,"v":[[0,3,["H1111"]],[3,4,["H8085"]],[4,5,["H3588"]],[5,6,["H1109"]],[6,8,["H935"]],[8,11,["H3318"]],[11,13,["H7125"]],[13,15,["H413"]],[15,17,["H5892"]],[17,19,["H4124"]],[19,20,["H834"]],[20,22,["H5921"]],[22,24,["H1366"]],[24,26,["H769"]],[26,27,["H834"]],[27,31,["H7097"]],[31,32,["H1366"]]]},{"k":4412,"v":[[0,2,["H1111"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1109"]],[5,8,["H3808"]],[8,10,["H7971","H7971"]],[10,11,["H413"]],[11,14,["H7121"]],[14,16,["H4100"]],[16,17,["H1980"]],[17,19,["H3808"]],[19,20,["H413"]],[20,25,["H3201","H3808"]],[25,26,["H552"]],[26,31,["H3513"]]]},{"k":4413,"v":[[0,2,["H1109"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1111"]],[5,6,["H2009"]],[6,9,["H935"]],[9,10,["H413"]],[10,14,["H6258"]],[14,18,["H3201","H3201"]],[18,20,["H1696"]],[20,22,["H3972"]],[22,24,["H1697"]],[24,25,["H834"]],[25,26,["H430"]],[26,27,["H7760"]],[27,30,["H6310"]],[30,34,["H1696"]]]},{"k":4414,"v":[[0,2,["H1109"]],[2,3,["H1980"]],[3,4,["H5973"]],[4,5,["H1111"]],[5,8,["H935"]],[8,10,["H7155"]]]},{"k":4415,"v":[[0,2,["H1111"]],[2,3,["H2076"]],[3,4,["H1241"]],[4,6,["H6629"]],[6,8,["H7971"]],[8,10,["H1109"]],[10,14,["H8269"]],[14,15,["H834"]],[15,17,["H854"]],[17,18,[]]]},{"k":4416,"v":[[0,5,["H1961"]],[5,8,["H1242"]],[8,10,["H1111"]],[10,11,["H3947","(H853)"]],[11,12,["H1109"]],[12,16,["H5927"]],[16,20,["H1116"]],[20,22,["H1168"]],[22,24,["H4480","H8033"]],[24,27,["H7200"]],[27,29,["H7097"]],[29,33,["H5971"]]]},{"k":4417,"v":[[0,2,["H1109"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1111"]],[5,6,["H1129"]],[6,8,["H2088"]],[8,9,["H7651"]],[9,10,["H4196"]],[10,12,["H3559"]],[12,14,["H2088"]],[14,15,["H7651"]],[15,16,["H6499"]],[16,18,["H7651"]],[18,19,["H352"]]]},{"k":4418,"v":[[0,2,["H1111"]],[2,3,["H6213"]],[3,4,["H834"]],[4,5,["H1109"]],[5,7,["H1696"]],[7,9,["H1111"]],[9,11,["H1109"]],[11,12,["H5927"]],[12,15,["H4196"]],[15,17,["H6499"]],[17,20,["H352"]]]},{"k":4419,"v":[[0,2,["H1109"]],[2,3,["H559"]],[3,5,["H1111"]],[5,6,["H3320"]],[6,7,["H5921"]],[7,10,["H5930"]],[10,14,["H1980"]],[14,15,["H194"]],[15,17,["H3068"]],[17,19,["H7136"]],[19,21,["H7125"]],[21,24,["H1697","H4100"]],[24,26,["H7200"]],[26,30,["H5046"]],[30,34,["H1980"]],[34,38,["H8205"]]]},{"k":4420,"v":[[0,2,["H430"]],[2,3,["H7136","H413"]],[3,4,["H1109"]],[4,7,["H559"]],[7,8,["H413"]],[8,12,["H6186","(H853)"]],[12,13,["H7651"]],[13,14,["H4196"]],[14,18,["H5927"]],[18,21,["H4196"]],[21,23,["H6499"]],[23,26,["H352"]]]},{"k":4421,"v":[[0,3,["H3068"]],[3,4,["H7760"]],[4,6,["H1697"]],[6,8,["H1109"]],[8,9,["H6310"]],[9,11,["H559"]],[11,12,["H7725"]],[12,13,["H413"]],[13,14,["H1111"]],[14,16,["H3541"]],[16,19,["H1696"]]]},{"k":4422,"v":[[0,3,["H7725"]],[3,4,["H413"]],[4,7,["H2009"]],[7,9,["H5324"]],[9,10,["H5921"]],[10,13,["H5930"]],[13,14,["H1931"]],[14,16,["H3605"]],[16,18,["H8269"]],[18,20,["H4124"]]]},{"k":4423,"v":[[0,4,["H5375"]],[4,6,["H4912"]],[6,8,["H559"]],[8,9,["H1111"]],[9,11,["H4428"]],[11,13,["H4124"]],[13,15,["H5148"]],[15,17,["H4480"]],[17,18,["H758"]],[18,22,["H4480","H2042"]],[22,25,["H6924"]],[25,27,["H1980"]],[27,28,["H779"]],[28,30,["H3290"]],[30,32,["H1980"]],[32,33,["H2194"]],[33,34,["H3478"]]]},{"k":4424,"v":[[0,1,["H4100"]],[1,4,["H6895"]],[4,6,["H410"]],[6,8,["H3808"]],[8,9,["H6895"]],[9,11,["H4100"]],[11,14,["H2194"]],[14,17,["H3068"]],[17,19,["H3808"]],[19,20,["H2194"]]]},{"k":4425,"v":[[0,1,["H3588"]],[1,4,["H4480","H7218"]],[4,7,["H6697"]],[7,9,["H7200"]],[9,14,["H4480","H1389"]],[14,16,["H7789"]],[16,18,["H2005"]],[18,20,["H5971"]],[20,22,["H7931"]],[22,23,["H910"]],[23,26,["H3808"]],[26,28,["H2803"]],[28,31,["H1471"]]]},{"k":4426,"v":[[0,1,["H4310"]],[1,3,["H4487"]],[3,5,["H6083"]],[5,7,["H3290"]],[7,10,["H4557"]],[10,11,["(H853)"]],[11,13,["H7255"]],[13,16,["H3478"]],[16,18,["H5315"]],[18,19,["H4191"]],[19,21,["H4194"]],[21,24,["H3477"]],[24,29,["H319"]],[29,30,["H1961"]],[30,32,["H3644"]]]},{"k":4427,"v":[[0,2,["H1111"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1109"]],[5,6,["H4100"]],[6,9,["H6213"]],[9,13,["H3947"]],[13,16,["H6895"]],[16,18,["H341"]],[18,20,["H2009"]],[20,25,["H1288","H1288"]]]},{"k":4428,"v":[[0,3,["H6030"]],[3,5,["H559"]],[5,8,["H3808"]],[8,10,["H8104"]],[10,12,["H1696"]],[12,13,["(H853)"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H7760"]],[18,21,["H6310"]]]},{"k":4429,"v":[[0,2,["H1111"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1980"]],[6,9,["H4994"]],[9,10,["H854"]],[10,12,["H413"]],[12,13,["H312"]],[13,14,["H4725"]],[14,16,["H834","H4480","H8033"]],[16,19,["H7200"]],[19,23,["H7200"]],[23,24,["H657"]],[24,27,["H7097"]],[27,32,["H3808"]],[32,33,["H7200"]],[33,35,["H3605"]],[35,37,["H6895"]],[37,41,["H4480","H8033"]]]},{"k":4430,"v":[[0,3,["H3947"]],[3,7,["H7704"]],[7,9,["H6839"]],[9,10,["H413"]],[10,12,["H7218"]],[12,14,["H6449"]],[14,16,["H1129"]],[16,17,["H7651"]],[17,18,["H4196"]],[18,20,["H5927"]],[20,22,["H6499"]],[22,25,["H352"]],[25,28,["H4196"]]]},{"k":4431,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H1111"]],[5,6,["H3320"]],[6,7,["H3541"]],[7,8,["H5921"]],[8,11,["H5930"]],[11,13,["H595"]],[13,14,["H7136"]],[14,17,["H3541"]]]},{"k":4432,"v":[[0,3,["H3068"]],[3,4,["H7136","H413"]],[4,5,["H1109"]],[5,7,["H7760"]],[7,9,["H1697"]],[9,12,["H6310"]],[12,14,["H559"]],[14,16,["H7725"]],[16,17,["H413"]],[17,18,["H1111"]],[18,20,["H1696"]],[20,21,["H3541"]]]},{"k":4433,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H2009"]],[7,9,["H5324"]],[9,10,["H5921"]],[10,13,["H5930"]],[13,16,["H8269"]],[16,18,["H4124"]],[18,19,["H854"]],[19,22,["H1111"]],[22,23,["H559"]],[23,26,["H4100"]],[26,29,["H3068"]],[29,30,["H1696"]]]},{"k":4434,"v":[[0,4,["H5375"]],[4,6,["H4912"]],[6,8,["H559"]],[8,10,["H6965"]],[10,11,["H1111"]],[11,13,["H8085"]],[13,14,["H238"]],[14,15,["H5704"]],[15,18,["H1121"]],[18,20,["H6834"]]]},{"k":4435,"v":[[0,1,["H410"]],[1,3,["H3808"]],[3,5,["H376"]],[5,9,["H3576"]],[9,12,["H1121"]],[12,14,["H120"]],[14,18,["H5162"]],[18,20,["H1931"]],[20,21,["H559"]],[21,25,["H3808"]],[25,26,["H6213"]],[26,31,["H1696"]],[31,35,["H3808"]],[35,38,["H6965"]]]},{"k":4436,"v":[[0,1,["H2009"]],[1,4,["H3947"]],[4,7,["H1288"]],[7,11,["H1288"]],[11,14,["H3808"]],[14,15,["H7725"]],[15,16,[]]]},{"k":4437,"v":[[0,3,["H3808"]],[3,4,["H5027"]],[4,5,["H205"]],[5,7,["H3290"]],[7,8,["H3808"]],[8,11,["H7200"]],[11,12,["H5999"]],[12,14,["H3478"]],[14,16,["H3068"]],[16,18,["H430"]],[18,20,["H5973"]],[20,24,["H8643"]],[24,27,["H4428"]],[27,30,[]]]},{"k":4438,"v":[[0,1,["H410"]],[1,4,["H3318"]],[4,6,["H4480","H4714"]],[6,13,["H8443"]],[13,16,["H7214"]]]},{"k":4439,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H5173"]],[5,7,["H3290"]],[7,8,["H3808"]],[8,12,["H7081"]],[12,14,["H3478"]],[14,18,["H6256"]],[18,22,["H559"]],[22,24,["H3290"]],[24,27,["H3478"]],[27,28,["H4100"]],[28,30,["H410"]],[30,31,["H6466"]]]},{"k":4440,"v":[[0,1,["H2005"]],[1,3,["H5971"]],[3,6,["H6965"]],[6,10,["H3833"]],[10,14,["H5375"]],[14,18,["H738"]],[18,21,["H3808"]],[21,23,["H7901"]],[23,24,["H5704"]],[24,26,["H398"]],[26,29,["H2964"]],[29,31,["H8354"]],[31,33,["H1818"]],[33,36,["H2491"]]]},{"k":4441,"v":[[0,2,["H1111"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1109"]],[5,6,["H1571","H3808"]],[6,10,["H6895","H6895"]],[10,11,["H1571","H3808"]],[11,15,["H1288","H1288"]]]},{"k":4442,"v":[[0,2,["H1109"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H413"]],[6,7,["H1111"]],[7,8,["H1696","H413"]],[8,9,["H3808"]],[9,12,["H559"]],[12,13,["H3605"]],[13,14,["H834"]],[14,16,["H3068"]],[16,17,["H1696"]],[17,21,["H6213"]]]},{"k":4443,"v":[[0,2,["H1111"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1109"]],[5,6,["H1980"]],[6,9,["H4994"]],[9,12,["H3947"]],[12,14,["H413"]],[14,15,["H312"]],[15,16,["H4725"]],[16,17,["H194"]],[17,20,["H3474","H5869"]],[20,21,["H430"]],[21,25,["H6895"]],[25,29,["H4480","H8033"]]]},{"k":4444,"v":[[0,2,["H1111"]],[2,3,["H3947","(H853)"]],[3,4,["H1109"]],[4,7,["H7218"]],[7,9,["H6465"]],[9,11,["H8259"]],[11,12,["H5921","H6440"]],[12,13,["H3452"]]]},{"k":4445,"v":[[0,2,["H1109"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1111"]],[5,6,["H1129"]],[6,8,["H2088"]],[8,9,["H7651"]],[9,10,["H4196"]],[10,12,["H3559"]],[12,14,["H2088"]],[14,15,["H7651"]],[15,16,["H6499"]],[16,18,["H7651"]],[18,19,["H352"]]]},{"k":4446,"v":[[0,2,["H1111"]],[2,3,["H6213"]],[3,4,["H834"]],[4,5,["H1109"]],[5,7,["H559"]],[7,9,["H5927"]],[9,11,["H6499"]],[11,14,["H352"]],[14,17,["H4196"]]]},{"k":4447,"v":[[0,3,["H1109"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,7,["H2895","H5869"]],[7,9,["H3068"]],[9,11,["H1288","(H853)"]],[11,12,["H3478"]],[12,14,["H1980"]],[14,15,["H3808"]],[15,19,["H6471","H6471"]],[19,21,["H7125"]],[21,23,["H5173"]],[23,26,["H7896"]],[26,28,["H6440"]],[28,29,["H413"]],[29,31,["H4057"]]]},{"k":4448,"v":[[0,2,["H1109"]],[2,4,["H5375","(H853)"]],[4,6,["H5869"]],[6,9,["H7200","(H853)"]],[9,10,["H3478"]],[10,11,["H7931"]],[11,18,["H7626"]],[18,21,["H7307"]],[21,23,["H430"]],[23,24,["H1961"]],[24,25,["H5921"]],[25,26,[]]]},{"k":4449,"v":[[0,4,["H5375"]],[4,6,["H4912"]],[6,8,["H559"]],[8,9,["H1109"]],[9,11,["H1121"]],[11,13,["H1160"]],[13,15,["H5002"]],[15,18,["H1397"]],[18,20,["H5869"]],[20,22,["H8365"]],[22,24,["H5002"]]]},{"k":4450,"v":[[0,3,["H5002"]],[3,5,["H8085"]],[5,7,["H561"]],[7,9,["H410"]],[9,10,["H834"]],[10,11,["H2372"]],[11,13,["H4236"]],[13,16,["H7706"]],[16,17,["H5307"]],[17,24,["H5869"]],[24,25,["H1540"]]]},{"k":4451,"v":[[0,1,["H4100"]],[1,2,["H2895"]],[2,5,["H168"]],[5,7,["H3290"]],[7,10,["H4908"]],[10,12,["H3478"]]]},{"k":4452,"v":[[0,3,["H5158"]],[3,7,["H5186"]],[7,9,["H1593"]],[9,10,["H5921"]],[10,12,["H5104"]],[12,19,["H174"]],[19,22,["H3068"]],[22,24,["H5193"]],[24,28,["H730"]],[28,29,["H5921"]],[29,31,["H4325"]]]},{"k":4453,"v":[[0,3,["H5140"]],[3,5,["H4325"]],[5,9,["H4480","H1805"]],[9,12,["H2233"]],[12,16,["H7227"]],[16,17,["H4325"]],[17,20,["H4428"]],[20,23,["H7311"]],[23,25,["H4480","H90"]],[25,28,["H4438"]],[28,31,["H5375"]]]},{"k":4454,"v":[[0,1,["H410"]],[1,4,["H3318"]],[4,7,["H4480","H4714"]],[7,14,["H8443"]],[14,17,["H7214"]],[17,21,["H398"]],[21,23,["H1471"]],[23,25,["H6862"]],[25,28,["H1633"]],[28,30,["H6106"]],[30,34,["H4272"]],[34,37,["H2671"]]]},{"k":4455,"v":[[0,2,["H3766"]],[2,5,["H7901"]],[5,8,["H738"]],[8,13,["H3833"]],[13,14,["H4310"]],[14,18,["H6965"]],[18,19,["H1288"]],[19,23,["H1288"]],[23,26,["H779"]],[26,30,["H779"]],[30,31,[]]]},{"k":4456,"v":[[0,2,["H1111"]],[2,3,["H639"]],[3,5,["H2734"]],[5,6,["H413"]],[6,7,["H1109"]],[7,13,["H5606","(H853)","H3709"]],[13,15,["H1111"]],[15,16,["H559"]],[16,17,["H413"]],[17,18,["H1109"]],[18,20,["H7121"]],[20,23,["H6895"]],[23,25,["H341"]],[25,27,["H2009"]],[27,31,["H1288","H1288"]],[31,33,["H2088"]],[33,34,["H7969"]],[34,35,["H6471"]]]},{"k":4457,"v":[[0,2,["H6258"]],[2,3,["H1272"]],[3,5,["H413"]],[5,7,["H4725"]],[7,9,["H559"]],[9,15,["H3513","H3513"]],[15,17,["H2009"]],[17,19,["H3068"]],[19,23,["H4513"]],[23,25,["H4480","H3519"]]]},{"k":4458,"v":[[0,2,["H1109"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1111"]],[5,6,["H1696"]],[6,8,["H3808"]],[8,9,["H1571"]],[9,10,["H413"]],[10,12,["H4397"]],[12,13,["H834"]],[13,15,["H7971"]],[15,16,["H413"]],[16,18,["H559"]]]},{"k":4459,"v":[[0,1,["H518"]],[1,2,["H1111"]],[2,4,["H5414"]],[4,7,["H1004"]],[7,8,["H4393"]],[8,10,["H3701"]],[10,12,["H2091"]],[12,14,["H3808","H3201"]],[14,16,["H5674","(H853)"]],[16,18,["H6310"]],[18,21,["H3068"]],[21,23,["H6213"]],[23,25,["H2896"]],[25,26,["H176"]],[26,27,["H7451"]],[27,31,["H4480","H3820"]],[31,33,["H834"]],[33,35,["H3068"]],[35,36,["H1696"]],[36,40,["H1696"]]]},{"k":4460,"v":[[0,2,["H6258"]],[2,3,["H2009"]],[3,5,["H1980"]],[5,8,["H5971"]],[8,9,["H1980"]],[9,14,["H3289"]],[14,16,["H834"]],[16,17,["H2088"]],[17,18,["H5971"]],[18,20,["H6213"]],[20,23,["H5971"]],[23,26,["H319"]],[26,27,["H3117"]]]},{"k":4461,"v":[[0,4,["H5375"]],[4,6,["H4912"]],[6,8,["H559"]],[8,9,["H1109"]],[9,11,["H1121"]],[11,13,["H1160"]],[13,15,["H5002"]],[15,18,["H1397"]],[18,20,["H5869"]],[20,22,["H8365"]],[22,24,["H5002"]]]},{"k":4462,"v":[[0,3,["H5002"]],[3,5,["H8085"]],[5,7,["H561"]],[7,9,["H410"]],[9,11,["H3045"]],[11,13,["H1847"]],[13,17,["H5945"]],[17,19,["H2372"]],[19,21,["H4236"]],[21,24,["H7706"]],[24,25,["H5307"]],[25,32,["H5869"]],[32,33,["H1540"]]]},{"k":4463,"v":[[0,3,["H7200"]],[3,6,["H3808"]],[6,7,["H6258"]],[7,10,["H7789"]],[10,13,["H3808"]],[13,14,["H7138"]],[14,17,["H1869"]],[17,19,["H3556"]],[19,22,["H4480","H3290"]],[22,25,["H7626"]],[25,27,["H6965"]],[27,30,["H4480","H3478"]],[30,33,["H4272"]],[33,35,["H6285"]],[35,37,["H4124"]],[37,39,["H4272"]],[39,40,["H3605"]],[40,42,["H1121"]],[42,44,["H8352"]]]},{"k":4464,"v":[[0,2,["H123"]],[2,4,["H1961"]],[4,6,["H3424"]],[6,7,["H8165"]],[7,10,["H1961"]],[10,12,["H3424"]],[12,15,["H341"]],[15,17,["H3478"]],[17,19,["H6213"]],[19,20,["H2428"]]]},{"k":4465,"v":[[0,3,["H4480","H3290"]],[3,10,["H7287"]],[10,13,["H6"]],[13,16,["H8300"]],[16,19,["H4480","H5892"]]]},{"k":4466,"v":[[0,5,["H7200","(H853)"]],[5,6,["H6002"]],[6,9,["H5375"]],[9,11,["H4912"]],[11,13,["H559"]],[13,14,["H6002"]],[14,17,["H7225"]],[17,20,["H1471"]],[20,24,["H319"]],[24,29,["H8"]],[29,31,["H5703"]]]},{"k":4467,"v":[[0,4,["H7200","(H853)"]],[4,6,["H7017"]],[6,9,["H5375"]],[9,11,["H4912"]],[11,13,["H559"]],[13,14,["H386"]],[14,17,["H4186"]],[17,20,["H7760"]],[20,22,["H7064"]],[22,25,["H5553"]]]},{"k":4468,"v":[[0,1,["H3588","H518"]],[1,3,["H7014"]],[3,5,["H1961"]],[5,6,["H1197"]],[6,7,["H5704","H4100"]],[7,8,["H804"]],[8,13,["H7617"]]]},{"k":4469,"v":[[0,4,["H5375"]],[4,6,["H4912"]],[6,8,["H559"]],[8,9,["H188"]],[9,10,["H4310"]],[10,12,["H2421"]],[12,14,["H410"]],[14,15,["H4480","H7760"]],[15,16,[]]]},{"k":4470,"v":[[0,2,["H6716"]],[2,7,["H4480","H3027"]],[7,9,["H3794"]],[9,12,["H6031"]],[12,13,["H804"]],[13,16,["H6031"]],[16,17,["H5677"]],[17,19,["H1931"]],[19,20,["H1571"]],[20,22,["H8"]],[22,24,["H5703"]]]},{"k":4471,"v":[[0,2,["H1109"]],[2,4,["H6965"]],[4,6,["H1980"]],[6,8,["H7725"]],[8,11,["H4725"]],[11,13,["H1111"]],[13,14,["H1571"]],[14,15,["H1980"]],[15,17,["H1870"]]]},{"k":4472,"v":[[0,2,["H3478"]],[2,3,["H3427"]],[3,5,["H7851"]],[5,8,["H5971"]],[8,9,["H2490"]],[9,12,["H2181"]],[12,13,["H413"]],[13,15,["H1323"]],[15,17,["H4124"]]]},{"k":4473,"v":[[0,3,["H7121"]],[3,5,["H5971"]],[5,8,["H2077"]],[8,11,["H430"]],[11,14,["H5971"]],[14,16,["H398"]],[16,19,["H7812"]],[19,22,["H430"]]]},{"k":4474,"v":[[0,2,["H3478"]],[2,4,["H6775"]],[4,6,["H1187"]],[6,9,["H639"]],[9,12,["H3068"]],[12,14,["H2734"]],[14,16,["H3478"]]]},{"k":4475,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H3947","(H853)"]],[7,8,["H3605"]],[8,10,["H7218"]],[10,13,["H5971"]],[13,17,["H3363","(H853)"]],[17,20,["H3068"]],[20,21,["H5048"]],[21,23,["H8121"]],[23,26,["H2740"]],[26,27,["H639"]],[27,30,["H3068"]],[30,34,["H7725"]],[34,36,["H4480","H3478"]]]},{"k":4476,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H8199"]],[6,8,["H3478"]],[8,9,["H2026"]],[9,12,["H376"]],[12,14,["H582"]],[14,17,["H6775"]],[17,19,["H1187"]]]},{"k":4477,"v":[[0,2,["H2009"]],[2,3,["H376"]],[3,6,["H4480","H1121"]],[6,8,["H3478"]],[8,9,["H935"]],[9,11,["H7126"]],[11,12,["H413"]],[12,14,["H251","(H853)"]],[14,17,["H4084"]],[17,20,["H5869"]],[20,22,["H4872"]],[22,26,["H5869"]],[26,28,["H3605"]],[28,30,["H5712"]],[30,33,["H1121"]],[33,35,["H3478"]],[35,36,["H1992"]],[36,38,["H1058"]],[38,41,["H6607"]],[41,44,["H168"]],[44,47,["H4150"]]]},{"k":4478,"v":[[0,3,["H6372"]],[3,5,["H1121"]],[5,7,["H499"]],[7,9,["H1121"]],[9,11,["H175"]],[11,13,["H3548"]],[13,14,["H7200"]],[14,18,["H6965"]],[18,20,["H4480","H8432"]],[20,22,["H5712"]],[22,24,["H3947"]],[24,26,["H7420"]],[26,29,["H3027"]]]},{"k":4479,"v":[[0,3,["H935"]],[3,4,["H310"]],[4,6,["H376"]],[6,8,["H3478"]],[8,9,["H413"]],[9,11,["H6898"]],[11,13,["H1856","(H853)"]],[13,14,["H8147"]],[14,17,["(H853)"]],[17,19,["H376"]],[19,21,["H3478"]],[21,24,["H802"]],[24,25,["H413"]],[25,27,["H6897"]],[27,30,["H4046"]],[30,32,["H6113"]],[32,33,["H4480","H5921"]],[33,35,["H1121"]],[35,37,["H3478"]]]},{"k":4480,"v":[[0,4,["H4191"]],[4,7,["H4046"]],[7,8,["H1961"]],[8,9,["H6242"]],[9,11,["H702"]],[11,12,["H505"]]]},{"k":4481,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4482,"v":[[0,1,["H6372"]],[1,3,["H1121"]],[3,5,["H499"]],[5,7,["H1121"]],[7,9,["H175"]],[9,11,["H3548"]],[11,16,["H7725","(H853)","H2534"]],[16,17,["H4480","H5921"]],[17,19,["H1121"]],[19,21,["H3478"]],[21,25,["H7065"]],[25,28,["H854","H7068"]],[28,29,["H8432"]],[29,33,["H3615"]],[33,34,["H3808","(H853)"]],[34,36,["H1121"]],[36,38,["H3478"]],[38,41,["H7068"]]]},{"k":4483,"v":[[0,1,["H3651"]],[1,2,["H559"]],[2,3,["H2009"]],[3,5,["H5414"]],[5,7,["(H853)"]],[7,9,["H1285"]],[9,11,["H7965"]]]},{"k":4484,"v":[[0,4,["H1961"]],[4,8,["H2233"]],[8,9,["H310"]],[9,13,["H1285"]],[13,16,["H5769"]],[16,17,["H3550"]],[17,18,["H8478","H834"]],[18,21,["H7065"]],[21,24,["H430"]],[24,28,["H3722"]],[28,29,["H5921"]],[29,31,["H1121"]],[31,33,["H3478"]]]},{"k":4485,"v":[[0,3,["H8034"]],[3,6,["H376","H3478"]],[6,9,["H5221"]],[9,11,["H834"]],[11,13,["H5221"]],[13,14,["H854"]],[14,17,["H4084"]],[17,19,["H2174"]],[19,21,["H1121"]],[21,23,["H5543"]],[23,25,["H5387"]],[25,28,["H1"]],[28,29,["H1004"]],[29,32,["H8099"]]]},{"k":4486,"v":[[0,3,["H8034"]],[3,6,["H4084"]],[6,7,["H802"]],[7,10,["H5221"]],[10,12,["H3579"]],[12,14,["H1323"]],[14,16,["H6698"]],[16,17,["H1931"]],[17,19,["H7218"]],[19,22,["H523"]],[22,26,["H1"]],[26,27,["H1004"]],[27,29,["H4080"]]]},{"k":4487,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4488,"v":[[0,1,["H6887","(H853)"]],[1,3,["H4084"]],[3,5,["H5221"]],[5,6,[]]]},{"k":4489,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,3,["H6887"]],[3,7,["H5231"]],[7,8,["H834"]],[8,11,["H5230"]],[11,13,["H5921"]],[13,15,["H1697"]],[15,17,["H6465"]],[17,19,["H5921"]],[19,21,["H1697"]],[21,23,["H3579"]],[23,25,["H1323"]],[25,28,["H5387"]],[28,30,["H4080"]],[30,32,["H269"]],[32,35,["H5221"]],[35,38,["H3117"]],[38,41,["H4046"]],[41,44,["H5921","H1697","H6465"]]]},{"k":4490,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,8,["H4046"]],[8,11,["H3068"]],[11,12,["H559"]],[12,13,["H413"]],[13,14,["H4872"]],[14,16,["H413"]],[16,17,["H499"]],[17,19,["H1121"]],[19,21,["H175"]],[21,23,["H3548"]],[23,24,["H559"]]]},{"k":4491,"v":[[0,1,["H5375","(H853)"]],[1,3,["H7218"]],[3,5,["H3605"]],[5,7,["H5712"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,14,["H6242"]],[14,15,["H8141"]],[15,16,["H4480","H1121"]],[16,18,["H4605"]],[18,21,["H1"]],[21,22,["H1004"]],[22,23,["H3605"]],[23,28,["H3318"]],[28,30,["H6635"]],[30,32,["H3478"]]]},{"k":4492,"v":[[0,2,["H4872"]],[2,4,["H499"]],[4,6,["H3548"]],[6,7,["H1696"]],[7,8,["H854"]],[8,12,["H6160"]],[12,14,["H4124"]],[14,15,["H5921"]],[15,16,["H3383"]],[16,18,["H3405"]],[18,19,["H559"]]]},{"k":4493,"v":[[0,8,["H6242"]],[8,9,["H8141"]],[9,10,["H4480","H1121"]],[10,12,["H4605"]],[12,13,["H834"]],[13,15,["H3068"]],[15,16,["H6680","(H853)"]],[16,17,["H4872"]],[17,20,["H1121"]],[20,22,["H3478"]],[22,25,["H3318"]],[25,29,["H4480","H776"]],[29,31,["H4714"]]]},{"k":4494,"v":[[0,1,["H7205"]],[1,4,["H1060"]],[4,6,["H3478"]],[6,8,["H1121"]],[8,10,["H7205"]],[10,11,["H2585"]],[11,16,["H4940"]],[16,19,["H2599"]],[19,21,["H6396"]],[21,23,["H4940"]],[23,26,["H6384"]]]},{"k":4495,"v":[[0,2,["H2696"]],[2,4,["H4940"]],[4,7,["H2697"]],[7,9,["H3756"]],[9,11,["H4940"]],[11,14,["H3757"]]]},{"k":4496,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,7,["H7206"]],[7,12,["H6485"]],[12,15,["H1961"]],[15,16,["H705"]],[16,18,["H7969"]],[18,19,["H505"]],[19,21,["H7651"]],[21,22,["H3967"]],[22,24,["H7970"]]]},{"k":4497,"v":[[0,3,["H1121"]],[3,5,["H6396"]],[5,6,["H446"]]]},{"k":4498,"v":[[0,3,["H1121"]],[3,5,["H446"]],[5,6,["H5241"]],[6,8,["H1885"]],[8,10,["H48"]],[10,11,["H1931"]],[11,14,["H1885"]],[14,16,["H48"]],[16,19,["H7148"]],[19,22,["H5712"]],[22,23,["H834"]],[23,24,["H5327"]],[24,25,["H5921"]],[25,26,["H4872"]],[26,28,["H5921"]],[28,29,["H175"]],[29,32,["H5712"]],[32,34,["H7141"]],[34,37,["H5327"]],[37,38,["H5921"]],[38,40,["H3068"]]]},{"k":4499,"v":[[0,3,["H776"]],[3,4,["H6605","(H853)"]],[4,6,["H6310"]],[6,11,["H1104","(H853)"]],[11,12,["H854"]],[12,13,["H7141"]],[13,16,["H5712"]],[16,17,["H4191"]],[17,21,["H784"]],[21,22,["H398"]],[22,24,["H3967"]],[24,25,["(H853)"]],[25,26,["H2572"]],[26,27,["H376"]],[27,30,["H1961"]],[30,32,["H5251"]]]},{"k":4500,"v":[[0,3,["H1121"]],[3,5,["H7141"]],[5,6,["H4191"]],[6,7,["H3808"]]]},{"k":4501,"v":[[0,2,["H1121"]],[2,4,["H8095"]],[4,7,["H4940"]],[7,9,["H5241"]],[9,11,["H4940"]],[11,14,["H5242"]],[14,16,["H3226"]],[16,18,["H4940"]],[18,21,["H3228"]],[21,23,["H3199"]],[23,25,["H4940"]],[25,28,["H3200"]]]},{"k":4502,"v":[[0,2,["H2226"]],[2,4,["H4940"]],[4,7,["H2227"]],[7,9,["H7586"]],[9,11,["H4940"]],[11,14,["H7587"]]]},{"k":4503,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,7,["H8099"]],[7,8,["H6242"]],[8,10,["H8147"]],[10,11,["H505"]],[11,14,["H3967"]]]},{"k":4504,"v":[[0,2,["H1121"]],[2,4,["H1410"]],[4,7,["H4940"]],[7,9,["H6827"]],[9,11,["H4940"]],[11,14,["H6831"]],[14,16,["H2291"]],[16,18,["H4940"]],[18,21,["H2291"]],[21,23,["H7764"]],[23,25,["H4940"]],[25,28,["H7765"]]]},{"k":4505,"v":[[0,2,["H244"]],[2,4,["H4940"]],[4,7,["H244"]],[7,9,["H6179"]],[9,11,["H4940"]],[11,14,["H6180"]]]},{"k":4506,"v":[[0,2,["H720"]],[2,4,["H4940"]],[4,7,["H722"]],[7,9,["H692"]],[9,11,["H4940"]],[11,14,["H692"]]]},{"k":4507,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,7,["H1121"]],[7,9,["H1410"]],[9,15,["H6485"]],[15,18,["H705"]],[18,19,["H505"]],[19,21,["H2568"]],[21,22,["H3967"]]]},{"k":4508,"v":[[0,2,["H1121"]],[2,4,["H3063"]],[4,6,["H6147"]],[6,8,["H209"]],[8,10,["H6147"]],[10,12,["H209"]],[12,13,["H4191"]],[13,16,["H776"]],[16,18,["H3667"]]]},{"k":4509,"v":[[0,3,["H1121"]],[3,5,["H3063"]],[5,8,["H4940"]],[8,9,["H1961"]],[9,11,["H7956"]],[11,13,["H4940"]],[13,16,["H8024"]],[16,18,["H6557"]],[18,20,["H4940"]],[20,23,["H6558"]],[23,25,["H2226"]],[25,27,["H4940"]],[27,30,["H2227"]]]},{"k":4510,"v":[[0,3,["H1121"]],[3,5,["H6557"]],[5,6,["H1961"]],[6,8,["H2696"]],[8,10,["H4940"]],[10,13,["H2697"]],[13,15,["H2538"]],[15,17,["H4940"]],[17,20,["H2539"]]]},{"k":4511,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,6,["H3063"]],[6,12,["H6485"]],[12,17,["H8337","H7657"]],[17,18,["H505"]],[18,20,["H2568"]],[20,21,["H3967"]]]},{"k":4512,"v":[[0,3,["H1121"]],[3,5,["H3485"]],[5,8,["H4940"]],[8,10,["H8439"]],[10,12,["H4940"]],[12,15,["H8440"]],[15,17,["H6312"]],[17,19,["H4940"]],[19,22,["H6324"]]]},{"k":4513,"v":[[0,2,["H3437"]],[2,4,["H4940"]],[4,7,["H3432"]],[7,9,["H8110"]],[9,11,["H4940"]],[11,14,["H8117"]]]},{"k":4514,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,6,["H3485"]],[6,12,["H6485"]],[12,15,["H8346"]],[15,17,["H702"]],[17,18,["H505"]],[18,20,["H7969"]],[20,21,["H3967"]]]},{"k":4515,"v":[[0,3,["H1121"]],[3,5,["H2074"]],[5,8,["H4940"]],[8,10,["H5624"]],[10,12,["H4940"]],[12,15,["H5625"]],[15,17,["H356"]],[17,19,["H4940"]],[19,22,["H440"]],[22,24,["H3177"]],[24,26,["H4940"]],[26,29,["H3178"]]]},{"k":4516,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,7,["H2075"]],[7,13,["H6485"]],[13,16,["H8346"]],[16,17,["H505"]],[17,19,["H2568"]],[19,20,["H3967"]]]},{"k":4517,"v":[[0,2,["H1121"]],[2,4,["H3130"]],[4,7,["H4940"]],[7,9,["H4519"]],[9,11,["H669"]]]},{"k":4518,"v":[[0,3,["H1121"]],[3,5,["H4519"]],[5,7,["H4353"]],[7,9,["H4940"]],[9,12,["H4354"]],[12,14,["H4353"]],[14,15,["H3205","(H853)"]],[15,16,["H1568"]],[16,18,["H1568"]],[18,21,["H4940"]],[21,24,["H1569"]]]},{"k":4519,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H1568"]],[6,8,["H372"]],[8,10,["H4940"]],[10,13,["H373"]],[13,15,["H2507"]],[15,17,["H4940"]],[17,20,["H2516"]]]},{"k":4520,"v":[[0,3,["H844"]],[3,5,["H4940"]],[5,8,["H845"]],[8,11,["H7928"]],[11,13,["H4940"]],[13,16,["H7930"]]]},{"k":4521,"v":[[0,3,["H8061"]],[3,5,["H4940"]],[5,8,["H8062"]],[8,11,["H2660"]],[11,13,["H4940"]],[13,16,["H2662"]]]},{"k":4522,"v":[[0,2,["H6765"]],[2,4,["H1121"]],[4,6,["H2660"]],[6,7,["H1961"]],[7,8,["H3808"]],[8,9,["H1121"]],[9,10,["H3588","H518"]],[10,11,["H1323"]],[11,14,["H8034"]],[14,17,["H1323"]],[17,19,["H6765"]],[19,21,["H4244"]],[21,23,["H5270"]],[23,24,["H2295"]],[24,25,["H4435"]],[25,27,["H8656"]]]},{"k":4523,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,6,["H4519"]],[6,11,["H6485"]],[11,14,["H2572"]],[14,16,["H8147"]],[16,17,["H505"]],[17,19,["H7651"]],[19,20,["H3967"]]]},{"k":4524,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H669"]],[6,9,["H4940"]],[9,11,["H7803"]],[11,13,["H4940"]],[13,16,["H8364"]],[16,18,["H1071"]],[18,20,["H4940"]],[20,23,["H1076"]],[23,25,["H8465"]],[25,27,["H4940"]],[27,30,["H8470"]]]},{"k":4525,"v":[[0,2,["H428"]],[2,5,["H1121"]],[5,7,["H7803"]],[7,9,["H6197"]],[9,11,["H4940"]],[11,14,["H6198"]]]},{"k":4526,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,7,["H1121"]],[7,9,["H669"]],[9,15,["H6485"]],[15,18,["H7970"]],[18,20,["H8147"]],[20,21,["H505"]],[21,23,["H2568"]],[23,24,["H3967"]],[24,25,["H428"]],[25,28,["H1121"]],[28,30,["H3130"]],[30,33,["H4940"]]]},{"k":4527,"v":[[0,2,["H1121"]],[2,4,["H1144"]],[4,7,["H4940"]],[7,9,["H1106"]],[9,11,["H4940"]],[11,14,["H1108"]],[14,16,["H788"]],[16,18,["H4940"]],[18,21,["H789"]],[21,23,["H297"]],[23,25,["H4940"]],[25,28,["H298"]]]},{"k":4528,"v":[[0,2,["H8197"]],[2,4,["H4940"]],[4,7,["H7781"]],[7,9,["H2349"]],[9,11,["H4940"]],[11,14,["H2350"]]]},{"k":4529,"v":[[0,3,["H1121"]],[3,5,["H1106"]],[5,6,["H1961"]],[6,7,["H714"]],[7,9,["H5283"]],[9,13,["H4940"]],[13,16,["H716"]],[16,19,["H5283"]],[19,21,["H4940"]],[21,24,["H5280"]]]},{"k":4530,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H1144"]],[6,9,["H4940"]],[9,14,["H6485"]],[14,18,["H705"]],[18,20,["H2568"]],[20,21,["H505"]],[21,23,["H8337"]],[23,24,["H3967"]]]},{"k":4531,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H1835"]],[6,9,["H4940"]],[9,11,["H7748"]],[11,13,["H4940"]],[13,16,["H7749"]],[16,17,["H428"]],[17,20,["H4940"]],[20,22,["H1835"]],[22,25,["H4940"]]]},{"k":4532,"v":[[0,1,["H3605"]],[1,3,["H4940"]],[3,6,["H7749"]],[6,12,["H6485"]],[12,16,["H8346"]],[16,18,["H702"]],[18,19,["H505"]],[19,21,["H702"]],[21,22,["H3967"]]]},{"k":4533,"v":[[0,3,["H1121"]],[3,5,["H836"]],[5,8,["H4940"]],[8,10,["H3232"]],[10,12,["H4940"]],[12,15,["H3232"]],[15,17,["H3440"]],[17,19,["H4940"]],[19,22,["H3441"]],[22,24,["H1283"]],[24,26,["H4940"]],[26,29,["H1284"]]]},{"k":4534,"v":[[0,3,["H1121"]],[3,5,["H1283"]],[5,7,["H2268"]],[7,9,["H4940"]],[9,12,["H2277"]],[12,14,["H4439"]],[14,16,["H4940"]],[16,19,["H4440"]]]},{"k":4535,"v":[[0,3,["H8034"]],[3,6,["H1323"]],[6,8,["H836"]],[8,10,["H8294"]]]},{"k":4536,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,7,["H1121"]],[7,9,["H836"]],[9,15,["H6485"]],[15,20,["H2572"]],[20,22,["H7969"]],[22,23,["H505"]],[23,25,["H702"]],[25,26,["H3967"]]]},{"k":4537,"v":[[0,3,["H1121"]],[3,5,["H5321"]],[5,8,["H4940"]],[8,10,["H3183"]],[10,12,["H4940"]],[12,15,["H3184"]],[15,17,["H1476"]],[17,19,["H4940"]],[19,22,["H1477"]]]},{"k":4538,"v":[[0,2,["H3337"]],[2,4,["H4940"]],[4,7,["H3339"]],[7,9,["H8006"]],[9,11,["H4940"]],[11,14,["H8016"]]]},{"k":4539,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,6,["H5321"]],[6,10,["H4940"]],[10,15,["H6485"]],[15,19,["H705"]],[19,21,["H2568"]],[21,22,["H505"]],[22,24,["H702"]],[24,25,["H3967"]]]},{"k":4540,"v":[[0,1,["H428"]],[1,4,["H6485"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,10,["H8337"]],[10,11,["H3967"]],[11,12,["H505"]],[12,15,["H505"]],[15,16,["H7651"]],[16,17,["H3967"]],[17,19,["H7970"]]]},{"k":4541,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4542,"v":[[0,2,["H428"]],[2,4,["H776"]],[4,7,["H2505"]],[7,10,["H5159"]],[10,14,["H4557"]],[14,16,["H8034"]]]},{"k":4543,"v":[[0,2,["H7227"]],[2,7,["H7235"]],[7,8,["H5159"]],[8,11,["H4592"]],[11,16,["H4591"]],[16,17,["H5159"]],[17,20,["H376"]],[20,23,["H5159"]],[23,25,["H5414"]],[25,27,["H6310"]],[27,31,["H6485"]],[31,33,[]]]},{"k":4544,"v":[[0,1,["H389","(H853)"]],[1,3,["H776"]],[3,6,["H2505"]],[6,8,["H1486"]],[8,12,["H8034"]],[12,15,["H4294"]],[15,18,["H1"]],[18,21,["H5157"]]]},{"k":4545,"v":[[0,2,["H5921","H6310"]],[2,4,["H1486"]],[4,7,["H5159"]],[7,10,["H2505"]],[10,11,["H996"]],[11,12,["H7227"]],[12,14,["H4592"]]]},{"k":4546,"v":[[0,2,["H428"]],[2,7,["H6485"]],[7,10,["H3881"]],[10,13,["H4940"]],[13,15,["H1648"]],[15,17,["H4940"]],[17,20,["H1649"]],[20,22,["H6955"]],[22,24,["H4940"]],[24,27,["H6956"]],[27,29,["H4847"]],[29,31,["H4940"]],[31,34,["H4848"]]]},{"k":4547,"v":[[0,1,["H428"]],[1,4,["H4940"]],[4,7,["H3881"]],[7,9,["H4940"]],[9,12,["H3864"]],[12,14,["H4940"]],[14,17,["H2276"]],[17,19,["H4940"]],[19,22,["H4250"]],[22,24,["H4940"]],[24,27,["H4188"]],[27,29,["H4940"]],[29,32,["H7145"]],[32,34,["H6955"]],[34,35,["H3205","(H853)"]],[35,36,["H6019"]]]},{"k":4548,"v":[[0,3,["H8034"]],[3,5,["H6019"]],[5,6,["H802"]],[6,8,["H3115"]],[8,10,["H1323"]],[10,12,["H3878"]],[12,13,["H834"]],[13,16,["H3205"]],[16,18,["H3878"]],[18,20,["H4714"]],[20,23,["H3205"]],[23,25,["H6019","(H853)"]],[25,26,["H175"]],[26,28,["H4872"]],[28,30,["H4813"]],[30,32,["H269"]]]},{"k":4549,"v":[[0,3,["H175"]],[3,5,["H3205","(H853)"]],[5,6,["H5070"]],[6,8,["H30","(H853)"]],[8,9,["H499"]],[9,11,["H385"]]]},{"k":4550,"v":[[0,2,["H5070"]],[2,4,["H30"]],[4,5,["H4191"]],[5,8,["H7126"]],[8,9,["H2114"]],[9,10,["H784"]],[10,11,["H6440"]],[11,13,["H3068"]]]},{"k":4551,"v":[[0,5,["H6485"]],[5,8,["H1961"]],[8,9,["H6242"]],[9,11,["H7969"]],[11,12,["H505"]],[12,13,["H3605"]],[13,14,["H2145"]],[14,17,["H2320"]],[17,18,["H4480","H1121"]],[18,20,["H4605"]],[20,21,["H3588"]],[21,24,["H3808"]],[24,25,["H6485"]],[25,26,["H8432"]],[26,28,["H1121"]],[28,30,["H3478"]],[30,31,["H3588"]],[31,34,["H3808"]],[34,35,["H5159"]],[35,36,["H5414"]],[36,38,["H8432"]],[38,40,["H1121"]],[40,42,["H3478"]]]},{"k":4552,"v":[[0,1,["H428"]],[1,6,["H6485"]],[6,8,["H4872"]],[8,10,["H499"]],[10,12,["H3548"]],[12,13,["H834"]],[13,14,["H6485","(H853)"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,21,["H6160"]],[21,23,["H4124"]],[23,24,["H5921"]],[24,25,["H3383"]],[25,27,["H3405"]]]},{"k":4553,"v":[[0,3,["H428"]],[3,5,["H1961"]],[5,6,["H3808"]],[6,8,["H376"]],[8,12,["H4872"]],[12,14,["H175"]],[14,16,["H3548"]],[16,17,["H4480","H6485"]],[17,18,["H834"]],[18,20,["H6485","(H853)"]],[20,22,["H1121"]],[22,24,["H3478"]],[24,27,["H4057"]],[27,29,["H5514"]]]},{"k":4554,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H559"]],[5,11,["H4191","H4191"]],[11,14,["H4057"]],[14,18,["H3808"]],[18,19,["H3498"]],[19,21,["H376"]],[21,22,["H4480"]],[22,24,["H3588","H518"]],[24,25,["H3612"]],[25,27,["H1121"]],[27,29,["H3312"]],[29,31,["H3091"]],[31,33,["H1121"]],[33,35,["H5126"]]]},{"k":4555,"v":[[0,2,["H7126"]],[2,4,["H1323"]],[4,6,["H6765"]],[6,8,["H1121"]],[8,10,["H2660"]],[10,12,["H1121"]],[12,14,["H1568"]],[14,16,["H1121"]],[16,18,["H4353"]],[18,20,["H1121"]],[20,22,["H4519"]],[22,25,["H4940"]],[25,27,["H4519"]],[27,29,["H1121"]],[29,31,["H3130"]],[31,33,["H428"]],[33,36,["H8034"]],[36,39,["H1323"]],[39,40,["H4244"]],[40,41,["H5270"]],[41,43,["H2295"]],[43,45,["H4435"]],[45,47,["H8656"]]]},{"k":4556,"v":[[0,3,["H5975"]],[3,4,["H6440"]],[4,5,["H4872"]],[5,7,["H6440"]],[7,8,["H499"]],[8,10,["H3548"]],[10,12,["H6440"]],[12,14,["H5387"]],[14,16,["H3605"]],[16,18,["H5712"]],[18,21,["H6607"]],[21,24,["H168"]],[24,27,["H4150"]],[27,28,["H559"]]]},{"k":4557,"v":[[0,2,["H1"]],[2,3,["H4191"]],[3,6,["H4057"]],[6,8,["H1931"]],[8,9,["H1961"]],[9,10,["H3808"]],[10,11,["H8432"]],[11,13,["H5712"]],[13,19,["H3259"]],[19,20,["H5921"]],[20,22,["H3068"]],[22,25,["H5712"]],[25,27,["H7141"]],[27,28,["H3588"]],[28,29,["H4191"]],[29,33,["H2399"]],[33,35,["H1961"]],[35,36,["H3808"]],[36,37,["H1121"]]]},{"k":4558,"v":[[0,1,["H4100"]],[1,4,["H8034"]],[4,7,["H1"]],[7,10,["H1639"]],[10,12,["H4480","H8432"]],[12,14,["H4940"]],[14,15,["H3588"]],[15,18,["H369"]],[18,19,["H1121"]],[19,20,["H5414"]],[20,25,["H272"]],[25,26,["H8432"]],[26,28,["H251"]],[28,31,["H1"]]]},{"k":4559,"v":[[0,2,["H4872"]],[2,3,["H7126","(H853)"]],[3,5,["H4941"]],[5,6,["H6440"]],[6,8,["H3068"]]]},{"k":4560,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4561,"v":[[0,2,["H1323"]],[2,4,["H6765"]],[4,5,["H1696"]],[5,6,["H3651"]],[6,10,["H5414","H5414"]],[10,13,["H272"]],[13,16,["H5159"]],[16,17,["H8432"]],[17,19,["H1"]],[19,20,["H251"]],[20,24,["(H853)"]],[24,26,["H5159"]],[26,29,["H1"]],[29,31,["H5674"]],[31,33,[]]]},{"k":4562,"v":[[0,4,["H1696"]],[4,5,["H413"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,10,["H559"]],[10,11,["H3588"]],[11,13,["H376"]],[13,14,["H4191"]],[14,17,["H369"]],[17,18,["H1121"]],[18,22,["(H853)"]],[22,24,["H5159"]],[24,26,["H5674"]],[26,29,["H1323"]]]},{"k":4563,"v":[[0,2,["H518"]],[2,5,["H369"]],[5,6,["H1323"]],[6,10,["H5414","(H853)"]],[10,12,["H5159"]],[12,15,["H251"]]]},{"k":4564,"v":[[0,2,["H518"]],[2,5,["H369"]],[5,6,["H251"]],[6,10,["H5414","(H853)"]],[10,12,["H5159"]],[12,15,["H1"]],[15,16,["H251"]]]},{"k":4565,"v":[[0,2,["H518"]],[2,4,["H1"]],[4,6,["H369"]],[6,7,["H251"]],[7,11,["H5414","(H853)"]],[11,13,["H5159"]],[13,16,["H7607"]],[16,19,["H7138"]],[19,20,["H413"]],[20,24,["H4480","H4940"]],[24,28,["H3423"]],[28,33,["H1961"]],[33,36,["H1121"]],[36,38,["H3478"]],[38,40,["H2708"]],[40,42,["H4941"]],[42,43,["H834"]],[43,45,["H3068"]],[45,46,["H6680","(H853)"]],[46,47,["H4872"]]]},{"k":4566,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H5927"]],[9,10,["H413"]],[10,11,["H2088"]],[11,12,["H2022"]],[12,13,["H5682"]],[13,15,["H7200","(H853)"]],[15,17,["H776"]],[17,18,["H834"]],[18,21,["H5414"]],[21,24,["H1121"]],[24,26,["H3478"]]]},{"k":4567,"v":[[0,5,["H7200"]],[5,7,["H859"]],[7,8,["H1571"]],[8,11,["H622"]],[11,12,["H413"]],[12,14,["H5971"]],[14,15,["H834"]],[15,16,["H175"]],[16,18,["H251"]],[18,20,["H622"]]]},{"k":4568,"v":[[0,1,["H834"]],[1,4,["H4784"]],[4,6,["H6310"]],[6,9,["H4057"]],[9,11,["H6790"]],[11,14,["H4808"]],[14,17,["H5712"]],[17,19,["H6942"]],[19,23,["H4325"]],[23,26,["H5869"]],[26,27,["H1992"]],[27,30,["H4325"]],[30,32,["H4809"]],[32,34,["H6946"]],[34,37,["H4057"]],[37,39,["H6790"]]]},{"k":4569,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,4,["H413"]],[4,6,["H3068"]],[6,7,["H559"]]]},{"k":4570,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,8,["H7307"]],[8,10,["H3605"]],[10,11,["H1320"]],[11,12,["H6485"]],[12,14,["H376"]],[14,15,["H5921"]],[15,17,["H5712"]]]},{"k":4571,"v":[[0,1,["H834"]],[1,4,["H3318"]],[4,5,["H6440"]],[5,8,["H834"]],[8,11,["H935"]],[11,12,["H6440"]],[12,15,["H834"]],[15,19,["H3318"]],[19,21,["H834"]],[21,25,["H935"]],[25,28,["H5712"]],[28,31,["H3068"]],[31,32,["H1961"]],[32,33,["H3808"]],[33,35,["H6629"]],[35,36,["H834"]],[36,38,["H369"]],[38,39,["H7462"]]]},{"k":4572,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H3947"]],[7,8,["(H853)"]],[8,9,["H3091"]],[9,11,["H1121"]],[11,13,["H5126"]],[13,15,["H376"]],[15,17,["H834"]],[17,20,["H7307"]],[20,22,["H5564","(H853)"]],[22,24,["H3027"]],[24,25,["H5921"]],[25,26,[]]]},{"k":4573,"v":[[0,2,["H5975"]],[2,4,["H6440"]],[4,5,["H499"]],[5,7,["H3548"]],[7,9,["H6440"]],[9,10,["H3605"]],[10,12,["H5712"]],[12,17,["H6680","(H853)"]],[17,20,["H5869"]]]},{"k":4574,"v":[[0,4,["H5414"]],[4,8,["H4480","H1935"]],[8,9,["H5921"]],[9,11,["H4616"]],[11,12,["H3605"]],[12,14,["H5712"]],[14,17,["H1121"]],[17,19,["H3478"]],[19,22,["H8085"]]]},{"k":4575,"v":[[0,4,["H5975"]],[4,5,["H6440"]],[5,6,["H499"]],[6,8,["H3548"]],[8,11,["H7592"]],[11,17,["H4941"]],[17,19,["H224"]],[19,20,["H6440"]],[20,22,["H3068"]],[22,23,["H5921"]],[23,25,["H6310"]],[25,29,["H3318"]],[29,31,["H5921"]],[31,33,["H6310"]],[33,37,["H935"]],[37,39,["H1931"]],[39,41,["H3605"]],[41,43,["H1121"]],[43,45,["H3478"]],[45,46,["H854"]],[46,49,["H3605"]],[49,51,["H5712"]]]},{"k":4576,"v":[[0,2,["H4872"]],[2,3,["H6213"]],[3,4,["H834"]],[4,6,["H3068"]],[6,7,["H6680"]],[7,11,["H3947","(H853)"]],[11,12,["H3091"]],[12,14,["H5975"]],[14,16,["H6440"]],[16,17,["H499"]],[17,19,["H3548"]],[19,21,["H6440"]],[21,22,["H3605"]],[22,24,["H5712"]]]},{"k":4577,"v":[[0,3,["H5564","(H853)"]],[3,5,["H3027"]],[5,6,["H5921"]],[6,12,["H6680"]],[12,13,["H834"]],[13,15,["H3068"]],[15,16,["H1696"]],[16,19,["H3027"]],[19,21,["H4872"]]]},{"k":4578,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4579,"v":[[0,1,["H6680","(H853)"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,7,["H559"]],[7,8,["H413"]],[8,9,["(H853)"]],[9,11,["H7133"]],[11,14,["H3899"]],[14,20,["H801"]],[20,23,["H5207"]],[23,24,["H7381"]],[24,29,["H8104"]],[29,31,["H7126"]],[31,37,["H4150"]]]},{"k":4580,"v":[[0,4,["H559"]],[4,7,["H2088"]],[7,13,["H801"]],[13,14,["H834"]],[14,17,["H7126"]],[17,20,["H3068"]],[20,21,["H8147"]],[21,22,["H3532"]],[22,25,["H1121"]],[25,26,["H8141"]],[26,28,["H8549"]],[28,31,["H3117"]],[31,34,["H8548"]],[34,36,["H5930"]]]},{"k":4581,"v":[[0,0,["(H853)"]],[0,2,["H259"]],[2,3,["H3532"]],[3,6,["H6213"]],[6,9,["H1242"]],[9,12,["H8145"]],[12,13,["H3532"]],[13,16,["H6213"]],[16,17,["H996"]],[17,18,["H6153"]]]},{"k":4582,"v":[[0,3,["H6224"]],[3,7,["H374"]],[7,9,["H5560"]],[9,13,["H4503"]],[13,14,["H1101"]],[14,17,["H7243"]],[17,21,["H1969"]],[21,23,["H3795"]],[23,24,["H8081"]]]},{"k":4583,"v":[[0,4,["H8548"]],[4,6,["H5930"]],[6,9,["H6213"]],[9,11,["H2022"]],[11,12,["H5514"]],[12,15,["H5207"]],[15,16,["H7381"]],[16,21,["H801"]],[21,24,["H3068"]]]},{"k":4584,"v":[[0,4,["H5262"]],[4,9,["H7243"]],[9,13,["H1969"]],[13,16,["H259"]],[16,17,["H3532"]],[17,20,["H6944"]],[20,27,["H7941"]],[27,30,["H5258"]],[30,33,["H3068"]],[33,37,["H5262"]]]},{"k":4585,"v":[[0,3,["H8145"]],[3,4,["H3532"]],[4,7,["H6213"]],[7,8,["H996"]],[8,9,["H6153"]],[9,13,["H4503"]],[13,16,["H1242"]],[16,21,["H5262"]],[21,25,["H6213"]],[25,31,["H801"]],[31,34,["H5207"]],[34,35,["H7381"]],[35,38,["H3068"]]]},{"k":4586,"v":[[0,4,["H7676"]],[4,5,["H3117"]],[5,6,["H8147"]],[6,7,["H3532"]],[7,10,["H1121"]],[10,11,["H8141"]],[11,13,["H8549"]],[13,15,["H8147"]],[15,17,["H6241"]],[17,19,["H5560"]],[19,23,["H4503"]],[23,24,["H1101"]],[24,26,["H8081"]],[26,30,["H5262"]],[30,31,[]]]},{"k":4587,"v":[[0,5,["H5930"]],[5,8,["H7676","H7676"]],[8,9,["H5921"]],[9,11,["H8548"]],[11,13,["H5930"]],[13,17,["H5262"]]]},{"k":4588,"v":[[0,4,["H7218"]],[4,7,["H2320"]],[7,10,["H7126"]],[10,13,["H5930"]],[13,16,["H3068"]],[16,17,["H8147"]],[17,18,["H1121","H1241"]],[18,19,["H6499"]],[19,21,["H259"]],[21,22,["H352"]],[22,23,["H7651"]],[23,24,["H3532"]],[24,27,["H1121"]],[27,28,["H8141"]],[28,30,["H8549"]]]},{"k":4589,"v":[[0,2,["H7969"]],[2,4,["H6241"]],[4,6,["H5560"]],[6,10,["H4503"]],[10,11,["H1101"]],[11,13,["H8081"]],[13,15,["H259"]],[15,16,["H6499"]],[16,18,["H8147"]],[18,20,["H6241"]],[20,22,["H5560"]],[22,26,["H4503"]],[26,27,["H1101"]],[27,29,["H8081"]],[29,31,["H259"]],[31,32,["H352"]]]},{"k":4590,"v":[[0,5,["H6241","H6241"]],[5,7,["H5560"]],[7,8,["H1101"]],[8,10,["H8081"]],[10,14,["H4503"]],[14,16,["H259"]],[16,17,["H3532"]],[17,21,["H5930"]],[21,24,["H5207"]],[24,25,["H7381"]],[25,30,["H801"]],[30,33,["H3068"]]]},{"k":4591,"v":[[0,4,["H5262"]],[4,6,["H1961"]],[6,7,["H2677"]],[7,9,["H1969"]],[9,11,["H3196"]],[11,14,["H6499"]],[14,17,["H7992"]],[17,21,["H1969"]],[21,24,["H352"]],[24,27,["H7243"]],[27,31,["H1969"]],[31,34,["H3532"]],[34,35,["H2063"]],[35,39,["H5930"]],[39,42,["H2320","H2320"]],[42,45,["H2320"]],[45,48,["H8141"]]]},{"k":4592,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,6,["H5795"]],[6,10,["H2403"]],[10,13,["H3068"]],[13,16,["H6213"]],[16,17,["H5921"]],[17,19,["H8548"]],[19,21,["H5930"]],[21,25,["H5262"]]]},{"k":4593,"v":[[0,4,["H702","H6240"]],[4,5,["H3117"]],[5,8,["H7223"]],[8,9,["H2320"]],[9,12,["H6453"]],[12,15,["H3068"]]]},{"k":4594,"v":[[0,4,["H2568","H6240"]],[4,5,["H3117"]],[5,7,["H2088"]],[7,8,["H2320"]],[8,11,["H2282"]],[11,12,["H7651"]],[12,13,["H3117"]],[13,16,["H4682"]],[16,18,["H398"]]]},{"k":4595,"v":[[0,3,["H7223"]],[3,4,["H3117"]],[4,8,["H6944"]],[8,9,["H4744"]],[9,12,["H6213"]],[12,14,["H3808","H3605"]],[14,16,["H5656"]],[16,17,["H4399"]],[17,18,[]]]},{"k":4596,"v":[[0,4,["H7126"]],[4,9,["H801"]],[9,13,["H5930"]],[13,16,["H3068"]],[16,17,["H8147"]],[17,18,["H1121","H1241"]],[18,19,["H6499"]],[19,21,["H259"]],[21,22,["H352"]],[22,24,["H7651"]],[24,25,["H3532"]],[25,28,["H1121"]],[28,29,["H8141"]],[29,32,["H1961"]],[32,36,["H8549"]]]},{"k":4597,"v":[[0,4,["H4503"]],[4,8,["H5560"]],[8,9,["H1101"]],[9,11,["H8081"]],[11,12,["H7969"]],[12,14,["H6241"]],[14,17,["H6213"]],[17,20,["H6499"]],[20,22,["H8147"]],[22,24,["H6241"]],[24,27,["H352"]]]},{"k":4598,"v":[[0,4,["H6241","H6241"]],[4,7,["H6213"]],[7,9,["H259"]],[9,10,["H3532"]],[10,13,["H7651"]],[13,14,["H3532"]]]},{"k":4599,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,7,["H2403"]],[7,11,["H3722"]],[11,12,["H5921"]],[12,13,[]]]},{"k":4600,"v":[[0,3,["H6213","(H853)"]],[3,4,["H428"]],[4,5,["H4480","H905"]],[5,8,["H5930"]],[8,11,["H1242"]],[11,12,["H834"]],[12,16,["H8548"]],[16,18,["H5930"]]]},{"k":4601,"v":[[0,3,["H428"]],[3,6,["H6213"]],[6,7,["H3117"]],[7,10,["H7651"]],[10,11,["H3117"]],[11,13,["H3899"]],[13,19,["H801"]],[19,22,["H5207"]],[22,23,["H7381"]],[23,26,["H3068"]],[26,30,["H6213"]],[30,31,["H5921"]],[31,33,["H8548"]],[33,35,["H5930"]],[35,39,["H5262"]]]},{"k":4602,"v":[[0,4,["H7637"]],[4,5,["H3117"]],[5,8,["H1961"]],[8,10,["H6944"]],[10,11,["H4744"]],[11,14,["H6213"]],[14,15,["H3808","H3605"]],[15,16,["H5656"]],[16,17,["H4399"]]]},{"k":4603,"v":[[0,4,["H3117"]],[4,7,["H1061"]],[7,10,["H7126"]],[10,12,["H2319"]],[12,14,["H4503"]],[14,17,["H3068"]],[17,20,["H7620"]],[20,25,["H1961"]],[25,27,["H6944"]],[27,28,["H4744"]],[28,31,["H6213"]],[31,32,["H3808","H3605"]],[32,33,["H5656"]],[33,34,["H4399"]]]},{"k":4604,"v":[[0,4,["H7126"]],[4,7,["H5930"]],[7,10,["H5207"]],[10,11,["H7381"]],[11,14,["H3068"]],[14,15,["H8147"]],[15,16,["H1121","H1241"]],[16,17,["H6499"]],[17,18,["H259"]],[18,19,["H352"]],[19,20,["H7651"]],[20,21,["H3532"]],[21,24,["H1121"]],[24,25,["H8141"]]]},{"k":4605,"v":[[0,4,["H4503"]],[4,6,["H5560"]],[6,7,["H1101"]],[7,9,["H8081"]],[9,10,["H7969"]],[10,12,["H6241"]],[12,14,["H259"]],[14,15,["H6499"]],[15,16,["H8147"]],[16,18,["H6241"]],[18,20,["H259"]],[20,21,["H352"]]]},{"k":4606,"v":[[0,4,["H6241","H6241"]],[4,6,["H259"]],[6,7,["H3532"]],[7,10,["H7651"]],[10,11,["H3532"]]]},{"k":4607,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,6,["H5795"]],[6,10,["H3722"]],[10,11,["H5921"]],[11,12,[]]]},{"k":4608,"v":[[0,3,["H6213"]],[3,5,["H4480","H905"]],[5,7,["H8548"]],[7,9,["H5930"]],[9,13,["H4503"]],[13,16,["H1961"]],[16,20,["H8549"]],[20,24,["H5262"]]]},{"k":4609,"v":[[0,4,["H7637"]],[4,5,["H2320"]],[5,8,["H259"]],[8,12,["H2320"]],[12,15,["H1961"]],[15,17,["H6944"]],[17,18,["H4744"]],[18,21,["H6213"]],[21,22,["H3808","H3605"]],[22,23,["H5656"]],[23,24,["H4399"]],[24,26,["H1961"]],[26,28,["H3117"]],[28,32,["H8643"]],[32,34,[]]]},{"k":4610,"v":[[0,4,["H6213"]],[4,7,["H5930"]],[7,10,["H5207"]],[10,11,["H7381"]],[11,14,["H3068"]],[14,15,["H259"]],[15,16,["H1121","H1241"]],[16,17,["H6499"]],[17,18,["H259"]],[18,19,["H352"]],[19,21,["H7651"]],[21,22,["H3532"]],[22,25,["H1121"]],[25,26,["H8141"]],[26,28,["H8549"]]]},{"k":4611,"v":[[0,4,["H4503"]],[4,8,["H5560"]],[8,9,["H1101"]],[9,11,["H8081"]],[11,12,["H7969"]],[12,14,["H6241"]],[14,17,["H6499"]],[17,19,["H8147"]],[19,21,["H6241"]],[21,24,["H352"]]]},{"k":4612,"v":[[0,2,["H259"]],[2,4,["H6241"]],[4,6,["H259"]],[6,7,["H3532"]],[7,10,["H7651"]],[10,11,["H3532"]]]},{"k":4613,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,6,["H5795"]],[6,10,["H2403"]],[10,14,["H3722"]],[14,15,["H5921"]],[15,16,[]]]},{"k":4614,"v":[[0,1,["H4480","H905"]],[1,4,["H5930"]],[4,7,["H2320"]],[7,11,["H4503"]],[11,14,["H8548"]],[14,16,["H5930"]],[16,20,["H4503"]],[20,24,["H5262"]],[24,28,["H4941"]],[28,31,["H5207"]],[31,32,["H7381"]],[32,37,["H801"]],[37,40,["H3068"]]]},{"k":4615,"v":[[0,4,["H1961"]],[4,7,["H6218"]],[7,10,["H2088"]],[10,11,["H7637"]],[11,12,["H2320"]],[12,14,["H6944"]],[14,15,["H4744"]],[15,19,["H6031","(H853)"]],[19,21,["H5315"]],[21,24,["H3808"]],[24,25,["H6213"]],[25,26,["H3605"]],[26,27,["H4399"]],[27,28,[]]]},{"k":4616,"v":[[0,4,["H7126"]],[4,7,["H5930"]],[7,10,["H3068"]],[10,13,["H5207"]],[13,14,["H7381"]],[14,15,["H259"]],[15,16,["H1121","H1241"]],[16,17,["H6499"]],[17,18,["H259"]],[18,19,["H352"]],[19,21,["H7651"]],[21,22,["H3532"]],[22,25,["H1121"]],[25,26,["H8141"]],[26,29,["H1961"]],[29,33,["H8549"]]]},{"k":4617,"v":[[0,4,["H4503"]],[4,8,["H5560"]],[8,9,["H1101"]],[9,11,["H8081"]],[11,12,["H7969"]],[12,14,["H6241"]],[14,17,["H6499"]],[17,19,["H8147"]],[19,21,["H6241"]],[21,23,["H259"]],[23,24,["H352"]]]},{"k":4618,"v":[[0,4,["H6241","H6241"]],[4,6,["H259"]],[6,7,["H3532"]],[7,10,["H7651"]],[10,11,["H3532"]]]},{"k":4619,"v":[[0,1,["H259"]],[1,2,["H8163"]],[2,5,["H5795"]],[5,9,["H2403"]],[9,10,["H4480","H905"]],[10,13,["H2403"]],[13,15,["H3725"]],[15,18,["H8548"]],[18,20,["H5930"]],[20,24,["H4503"]],[24,30,["H5262"]]]},{"k":4620,"v":[[0,4,["H2568","H6240"]],[4,5,["H3117"]],[5,8,["H7637"]],[8,9,["H2320"]],[9,12,["H1961"]],[12,14,["H6944"]],[14,15,["H4744"]],[15,18,["H6213"]],[18,19,["H3808","H3605"]],[19,20,["H5656"]],[20,21,["H4399"]],[21,25,["H2287"]],[25,27,["H2282"]],[27,30,["H3068"]],[30,31,["H7651"]],[31,32,["H3117"]]]},{"k":4621,"v":[[0,4,["H7126"]],[4,7,["H5930"]],[7,12,["H801"]],[12,15,["H5207"]],[15,16,["H7381"]],[16,19,["H3068"]],[19,20,["H7969","H6240"]],[20,21,["H1121","H1241"]],[21,22,["H6499"]],[22,23,["H8147"]],[23,24,["H352"]],[24,26,["H702","H6240"]],[26,27,["H3532"]],[27,30,["H1121"]],[30,31,["H8141"]],[31,34,["H1961"]],[34,36,["H8549"]]]},{"k":4622,"v":[[0,4,["H4503"]],[4,8,["H5560"]],[8,9,["H1101"]],[9,11,["H8081"]],[11,12,["H7969"]],[12,14,["H6241"]],[14,16,["H259"]],[16,17,["H6499"]],[17,20,["H7969","H6240"]],[20,21,["H6499"]],[21,22,["H8147"]],[22,24,["H6241"]],[24,26,["H259"]],[26,27,["H352"]],[27,30,["H8147"]],[30,31,["H352"]]]},{"k":4623,"v":[[0,5,["H6241","H6241"]],[5,7,["H259"]],[7,8,["H3532"]],[8,11,["H702","H6240"]],[11,12,["H3532"]]]},{"k":4624,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,6,["H5795"]],[6,10,["H2403"]],[10,11,["H4480","H905"]],[11,13,["H8548"]],[13,15,["H5930"]],[15,18,["H4503"]],[18,22,["H5262"]]]},{"k":4625,"v":[[0,4,["H8145"]],[4,5,["H3117"]],[5,9,["H8147","H6240"]],[9,10,["H1121","H1241"]],[10,11,["H6499"]],[11,12,["H8147"]],[12,13,["H352"]],[13,14,["H702","H6240"]],[14,15,["H3532"]],[15,18,["H1121"]],[18,19,["H8141"]],[19,21,["H8549"]]]},{"k":4626,"v":[[0,4,["H4503"]],[4,8,["H5262"]],[8,11,["H6499"]],[11,14,["H352"]],[14,18,["H3532"]],[18,24,["H4557"]],[24,27,["H4941"]]]},{"k":4627,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,6,["H5795"]],[6,10,["H2403"]],[10,11,["H4480","H905"]],[11,13,["H8548"]],[13,15,["H5930"]],[15,19,["H4503"]],[19,24,["H5262"]]]},{"k":4628,"v":[[0,4,["H7992"]],[4,5,["H3117"]],[5,6,["H6249","H6240"]],[6,7,["H6499"]],[7,8,["H8147"]],[8,9,["H352"]],[9,10,["H702","H6240"]],[10,11,["H3532"]],[11,14,["H1121"]],[14,15,["H8141"]],[15,17,["H8549"]]]},{"k":4629,"v":[[0,4,["H4503"]],[4,8,["H5262"]],[8,11,["H6499"]],[11,14,["H352"]],[14,18,["H3532"]],[18,24,["H4557"]],[24,27,["H4941"]]]},{"k":4630,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,7,["H2403"]],[7,8,["H4480","H905"]],[8,10,["H8548"]],[10,12,["H5930"]],[12,16,["H4503"]],[16,20,["H5262"]]]},{"k":4631,"v":[[0,4,["H7243"]],[4,5,["H3117"]],[5,6,["H6235"]],[6,7,["H6499"]],[7,8,["H8147"]],[8,9,["H352"]],[9,11,["H702","H6240"]],[11,12,["H3532"]],[12,15,["H1121"]],[15,16,["H8141"]],[16,18,["H8549"]]]},{"k":4632,"v":[[0,3,["H4503"]],[3,7,["H5262"]],[7,10,["H6499"]],[10,13,["H352"]],[13,17,["H3532"]],[17,23,["H4557"]],[23,26,["H4941"]]]},{"k":4633,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,6,["H5795"]],[6,10,["H2403"]],[10,11,["H4480","H905"]],[11,13,["H8548"]],[13,15,["H5930"]],[15,18,["H4503"]],[18,22,["H5262"]]]},{"k":4634,"v":[[0,4,["H2549"]],[4,5,["H3117"]],[5,6,["H8672"]],[6,7,["H6499"]],[7,8,["H8147"]],[8,9,["H352"]],[9,11,["H702","H6240"]],[11,12,["H3532"]],[12,15,["H1121"]],[15,16,["H8141"]],[16,18,["H8549"]]]},{"k":4635,"v":[[0,4,["H4503"]],[4,8,["H5262"]],[8,11,["H6499"]],[11,14,["H352"]],[14,18,["H3532"]],[18,24,["H4557"]],[24,27,["H4941"]]]},{"k":4636,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,7,["H2403"]],[7,8,["H4480","H905"]],[8,10,["H8548"]],[10,12,["H5930"]],[12,16,["H4503"]],[16,20,["H5262"]]]},{"k":4637,"v":[[0,4,["H8345"]],[4,5,["H3117"]],[5,6,["H8083"]],[6,7,["H6499"]],[7,8,["H8147"]],[8,9,["H352"]],[9,11,["H702","H6240"]],[11,12,["H3532"]],[12,15,["H1121"]],[15,16,["H8141"]],[16,18,["H8549"]]]},{"k":4638,"v":[[0,4,["H4503"]],[4,8,["H5262"]],[8,11,["H6499"]],[11,14,["H352"]],[14,18,["H3532"]],[18,24,["H4557"]],[24,27,["H4941"]]]},{"k":4639,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,7,["H2403"]],[7,8,["H4480","H905"]],[8,10,["H8548"]],[10,12,["H5930"]],[12,15,["H4503"]],[15,19,["H5262"]]]},{"k":4640,"v":[[0,4,["H7637"]],[4,5,["H3117"]],[5,6,["H7651"]],[6,7,["H6499"]],[7,8,["H8147"]],[8,9,["H352"]],[9,11,["H702","H6240"]],[11,12,["H3532"]],[12,15,["H1121"]],[15,16,["H8141"]],[16,18,["H8549"]]]},{"k":4641,"v":[[0,4,["H4503"]],[4,8,["H5262"]],[8,11,["H6499"]],[11,14,["H352"]],[14,18,["H3532"]],[18,24,["H4557"]],[24,27,["H4941"]]]},{"k":4642,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,7,["H2403"]],[7,8,["H4480","H905"]],[8,10,["H8548"]],[10,12,["H5930"]],[12,15,["H4503"]],[15,19,["H5262"]]]},{"k":4643,"v":[[0,3,["H8066"]],[3,4,["H3117"]],[4,7,["H1961"]],[7,10,["H6116"]],[10,13,["H6213"]],[13,14,["H3808","H3605"]],[14,15,["H5656"]],[15,16,["H4399"]],[16,17,[]]]},{"k":4644,"v":[[0,4,["H7126"]],[4,7,["H5930"]],[7,12,["H801"]],[12,15,["H5207"]],[15,16,["H7381"]],[16,19,["H3068"]],[19,20,["H259"]],[20,21,["H6499"]],[21,22,["H259"]],[22,23,["H352"]],[23,24,["H7651"]],[24,25,["H3532"]],[25,28,["H1121"]],[28,29,["H8141"]],[29,31,["H8549"]]]},{"k":4645,"v":[[0,3,["H4503"]],[3,7,["H5262"]],[7,10,["H6499"]],[10,13,["H352"]],[13,17,["H3532"]],[17,23,["H4557"]],[23,26,["H4941"]]]},{"k":4646,"v":[[0,2,["H259"]],[2,3,["H8163"]],[3,7,["H2403"]],[7,8,["H4480","H905"]],[8,10,["H8548"]],[10,12,["H5930"]],[12,16,["H4503"]],[16,20,["H5262"]]]},{"k":4647,"v":[[0,1,["H428"]],[1,5,["H6213"]],[5,8,["H3068"]],[8,12,["H4150"]],[12,13,["H905"]],[13,15,["H4480","H5088"]],[15,19,["H5071"]],[19,23,["H5930"]],[23,28,["H4503"]],[28,33,["H5262"]],[33,38,["H8002"]]]},{"k":4648,"v":[[0,2,["H4872"]],[2,3,["H559","H413"]],[3,5,["H1121"]],[5,7,["H3478"]],[7,10,["H3605"]],[10,11,["H834"]],[11,13,["H3068"]],[13,14,["H6680","(H853)"]],[14,15,["H4872"]]]},{"k":4649,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,4,["H413"]],[4,6,["H7218"]],[6,9,["H4294"]],[9,12,["H1121"]],[12,14,["H3478"]],[14,15,["H559"]],[15,16,["H2088"]],[16,19,["H1697"]],[19,20,["H834"]],[20,22,["H3068"]],[22,24,["H6680"]]]},{"k":4650,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,4,["H5087"]],[4,6,["H5088"]],[6,9,["H3068"]],[9,10,["H176"]],[10,11,["H7650"]],[11,13,["H7621"]],[13,15,["H631","H5921"]],[15,17,["H5315"]],[17,20,["H632"]],[20,23,["H3808"]],[23,24,["H2490"]],[24,26,["H1697"]],[26,29,["H6213"]],[29,32,["H3605"]],[32,35,["H3318"]],[35,38,["H4480","H6310"]]]},{"k":4651,"v":[[0,1,["H3588"]],[1,3,["H802"]],[3,5,["H5087"]],[5,7,["H5088"]],[7,10,["H3068"]],[10,12,["H631"]],[12,16,["H632"]],[16,20,["H1"]],[20,21,["H1004"]],[21,24,["H5271"]]]},{"k":4652,"v":[[0,3,["H1"]],[3,4,["H8085","(H853)"]],[4,6,["H5088"]],[6,9,["H632"]],[9,10,["H834"]],[10,13,["H631","H5921"]],[13,15,["H5315"]],[15,18,["H1"]],[18,22,["H2790"]],[22,26,["H3605"]],[26,28,["H5088"]],[28,30,["H6965"]],[30,32,["H3605"]],[32,33,["H632"]],[33,34,["H834"]],[34,37,["H631","H5921"]],[37,39,["H5315"]],[39,41,["H6965"]]]},{"k":4653,"v":[[0,2,["H518"]],[2,4,["H1"]],[4,5,["H5106"]],[5,9,["H3117"]],[9,12,["H8085"]],[12,13,["H3808"]],[13,14,["H3605"]],[14,17,["H5088"]],[17,21,["H632"]],[21,22,["H834"]],[22,25,["H631","H5921"]],[25,27,["H5315"]],[27,29,["H6965"]],[29,32,["H3068"]],[32,34,["H5545"]],[34,36,["H3588"]],[36,38,["H1"]],[38,39,["H5106"]],[39,40,[]]]},{"k":4654,"v":[[0,2,["H518"]],[2,6,["H1961","H1961"]],[6,8,["H376"]],[8,11,["H5088","H5921"]],[11,12,["H176"]],[12,13,["H4008"]],[13,18,["H8193"]],[18,19,["H834"]],[19,21,["H631","H5921"]],[21,23,["H5315"]]]},{"k":4655,"v":[[0,3,["H376"]],[3,4,["H8085"]],[4,9,["H2790"]],[9,14,["H3117"]],[14,17,["H8085"]],[17,21,["H5088"]],[21,23,["H6965"]],[23,26,["H632"]],[26,27,["H834"]],[27,29,["H631","H5921"]],[29,31,["H5315"]],[31,33,["H6965"]]]},{"k":4656,"v":[[0,2,["H518"]],[2,4,["H376"]],[4,5,["H5106"]],[5,9,["H3117"]],[9,12,["H8085"]],[12,17,["(H853)"]],[17,19,["H5088"]],[19,22,["H834","H5921"]],[22,27,["H4008"]],[27,30,["H8193"]],[30,31,["H834"]],[31,33,["H631","H5921"]],[33,35,["H5315"]],[35,38,["H6565"]],[38,41,["H3068"]],[41,43,["H5545"]],[43,44,[]]]},{"k":4657,"v":[[0,2,["H3605"]],[2,3,["H5088"]],[3,6,["H490"]],[6,12,["H1644"]],[12,13,["H834"]],[13,16,["H631","H5921"]],[16,18,["H5315"]],[18,20,["H6965"]],[20,21,["H5921"]],[21,22,[]]]},{"k":4658,"v":[[0,2,["H518"]],[2,4,["H5087"]],[4,7,["H376"]],[7,8,["H1004"]],[8,9,["H176"]],[9,10,["H631","H5921"]],[10,12,["H5315"]],[12,15,["H632"]],[15,18,["H7621"]]]},{"k":4659,"v":[[0,3,["H376"]],[3,4,["H8085"]],[4,9,["H2790"]],[9,13,["H5106"]],[13,15,["H3808"]],[15,17,["H3605"]],[17,19,["H5088"]],[19,21,["H6965"]],[21,23,["H3605"]],[23,24,["H632"]],[24,25,["H834"]],[25,27,["H631","H5921"]],[27,29,["H5315"]],[29,31,["H6965"]]]},{"k":4660,"v":[[0,2,["H518"]],[2,4,["H376"]],[4,9,["H6565","H6565","(H853)"]],[9,12,["H3117"]],[12,14,["H8085"]],[14,17,["H3605"]],[17,19,["H4161"]],[19,22,["H8193"]],[22,25,["H5088"]],[25,29,["H632"]],[29,32,["H5315"]],[32,34,["H3808"]],[34,35,["H6965"]],[35,37,["H376"]],[37,41,["H6565"]],[41,44,["H3068"]],[44,46,["H5545"]],[46,47,[]]]},{"k":4661,"v":[[0,1,["H3605"]],[1,2,["H5088"]],[2,4,["H3605"]],[4,5,["H632"]],[5,6,["H7621"]],[6,8,["H6031"]],[8,10,["H5315"]],[10,12,["H376"]],[12,14,["H6965"]],[14,18,["H376"]],[18,22,["H6565"]]]},{"k":4662,"v":[[0,2,["H518"]],[2,4,["H376"]],[4,8,["H2790","H2790"]],[8,12,["H4480","H3117"]],[12,13,["H413"]],[13,14,["H3117"]],[14,17,["H6965","(H853)"]],[17,18,["H3605"]],[18,20,["H5088"]],[20,21,["H176","(H853)"]],[21,22,["H3605"]],[22,24,["H632"]],[24,25,["H834"]],[25,27,["H5921"]],[27,30,["H6965"]],[30,32,["H3588"]],[32,36,["H2790"]],[36,41,["H3117"]],[41,44,["H8085"]],[44,45,[]]]},{"k":4663,"v":[[0,2,["H518"]],[2,9,["H6565","H6565","(H853)"]],[9,11,["H310"]],[11,14,["H8085"]],[14,19,["H5375","(H853)"]],[19,21,["H5771"]]]},{"k":4664,"v":[[0,1,["H428"]],[1,4,["H2706"]],[4,5,["H834"]],[5,7,["H3068"]],[7,8,["H6680","(H853)"]],[8,9,["H4872"]],[9,10,["H996"]],[10,12,["H376"]],[12,15,["H802"]],[15,16,["H996"]],[16,18,["H1"]],[18,21,["H1323"]],[21,26,["H5271"]],[26,29,["H1"]],[29,30,["H1004"]]]},{"k":4665,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4666,"v":[[0,1,["H5358","H5360"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,6,["H4480","H854"]],[6,8,["H4084"]],[8,9,["H310"]],[9,13,["H622"]],[13,14,["H413"]],[14,16,["H5971"]]]},{"k":4667,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H559"]],[7,8,["H2502"]],[8,9,["H376"]],[9,11,["H4480","H854"]],[11,14,["H6635"]],[14,18,["H1961"]],[18,19,["H5921"]],[19,21,["H4080"]],[21,23,["H5414","H5360"]],[23,25,["H3068"]],[25,27,["H4080"]]]},{"k":4668,"v":[[0,5,["H4294","H505","H4294","H505"]],[5,7,["H3605"]],[7,9,["H4294"]],[9,11,["H3478"]],[11,14,["H7971"]],[14,17,["H6635"]]]},{"k":4669,"v":[[0,4,["H4560"]],[4,8,["H4480","H505"]],[8,10,["H3478"]],[10,12,["H505"]],[12,15,["H4294"]],[15,16,["H8147","H6240"]],[16,17,["H505"]],[17,18,["H2502"]],[18,20,["H6635"]]]},{"k":4670,"v":[[0,2,["H4872"]],[2,3,["H7971"]],[3,7,["H6635"]],[7,9,["H505"]],[9,12,["H4294"]],[12,15,["H6372"]],[15,17,["H1121"]],[17,19,["H499"]],[19,21,["H3548"]],[21,24,["H6635"]],[24,27,["H6944"]],[27,28,["H3627"]],[28,31,["H2689"]],[31,33,["H8643"]],[33,36,["H3027"]]]},{"k":4671,"v":[[0,3,["H6633"]],[3,4,["H5921"]],[4,6,["H4080"]],[6,7,["H834"]],[7,9,["H3068"]],[9,10,["H6680","(H853)"]],[10,11,["H4872"]],[11,14,["H2026"]],[14,15,["H3605"]],[15,17,["H2145"]]]},{"k":4672,"v":[[0,3,["H2026"]],[3,5,["H4428"]],[5,7,["H4080"]],[7,8,["H5921"]],[8,15,["H2491"]],[15,16,["(H853)"]],[16,17,["H189"]],[17,19,["H7552"]],[19,21,["H6698"]],[21,23,["H2354"]],[23,25,["H7254"]],[25,26,["H2568"]],[26,27,["H4428"]],[27,29,["H4080"]],[29,30,["H1109"]],[30,33,["H1121"]],[33,35,["H1160"]],[35,37,["H2026"]],[37,40,["H2719"]]]},{"k":4673,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["(H853)"]],[7,9,["H802"]],[9,11,["H4080"]],[11,12,["H7617"]],[12,16,["H2945"]],[16,20,["H962"]],[20,22,["H3605"]],[22,24,["H929"]],[24,26,["H3605"]],[26,28,["H4735"]],[28,30,["H3605"]],[30,32,["H2428"]]]},{"k":4674,"v":[[0,3,["H8313"]],[3,4,["H3605"]],[4,6,["H5892"]],[6,9,["H4186"]],[9,11,["H3605"]],[11,14,["H2918"]],[14,16,["H784"]]]},{"k":4675,"v":[[0,3,["H3947","(H853)"]],[3,4,["H3605"]],[4,6,["H7998"]],[6,8,["H3605"]],[8,10,["H4455"]],[10,13,["H120"]],[13,16,["H929"]]]},{"k":4676,"v":[[0,3,["H935","(H853)"]],[3,5,["H7628"]],[5,8,["H4455"]],[8,11,["H7998"]],[11,12,["H413"]],[12,13,["H4872"]],[13,15,["H499"]],[15,17,["H3548"]],[17,19,["H413"]],[19,21,["H5712"]],[21,24,["H1121"]],[24,26,["H3478"]],[26,27,["H413"]],[27,29,["H4264"]],[29,30,["H413"]],[30,32,["H6160"]],[32,34,["H4124"]],[34,35,["H834"]],[35,37,["H5921"]],[37,38,["H3383"]],[38,40,["H3405"]]]},{"k":4677,"v":[[0,2,["H4872"]],[2,4,["H499"]],[4,6,["H3548"]],[6,8,["H3605"]],[8,10,["H5387"]],[10,13,["H5712"]],[13,15,["H3318"]],[15,17,["H7125"]],[17,19,["H413","H4480","H2351"]],[19,21,["H4264"]]]},{"k":4678,"v":[[0,2,["H4872"]],[2,4,["H7107"]],[4,5,["H5921"]],[5,7,["H6485"]],[7,10,["H2428"]],[10,13,["H8269"]],[13,15,["H505"]],[15,17,["H8269"]],[17,19,["H3967"]],[19,21,["H935"]],[21,24,["H4480","H6635","H4421"]]]},{"k":4679,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,12,["H2421","H3605","H5347"]]]},{"k":4680,"v":[[0,1,["H2005"]],[1,2,["H2007"]],[2,3,["H1961"]],[3,5,["H1121"]],[5,7,["H3478"]],[7,10,["H1697"]],[10,12,["H1109"]],[12,14,["H4560"]],[14,15,["H4604"]],[15,18,["H3068"]],[18,19,["H5921"]],[19,21,["H1697"]],[21,23,["H6465"]],[23,26,["H1961"]],[26,28,["H4046"]],[28,31,["H5712"]],[31,34,["H3068"]]]},{"k":4681,"v":[[0,1,["H6258"]],[1,3,["H2026"]],[3,4,["H3605"]],[4,5,["H2145"]],[5,9,["H2945"]],[9,11,["H2026"]],[11,12,["H3605"]],[12,13,["H802"]],[13,16,["H3045"]],[16,17,["H376"]],[17,19,["H4904"]],[19,21,["H2145"]]]},{"k":4682,"v":[[0,2,["H3605"]],[2,4,["H802"]],[4,5,["H2945"]],[5,6,["H834"]],[6,8,["H3808"]],[8,9,["H3045"]],[9,11,["H2145"]],[11,13,["H4904"]],[13,17,["H2421"]],[17,19,[]]]},{"k":4683,"v":[[0,3,["H859"]],[3,4,["H2583"]],[4,5,["H4480","H2351"]],[5,7,["H4264"]],[7,8,["H7651"]],[8,9,["H3117"]],[9,10,["H3605"]],[10,12,["H2026"]],[12,14,["H5315"]],[14,16,["H3605"]],[16,18,["H5060"]],[18,20,["H2491"]],[20,21,["H2398"]],[21,23,["H859"]],[23,26,["H7628"]],[26,29,["H7992"]],[29,30,["H3117"]],[30,34,["H7637"]],[34,35,["H3117"]]]},{"k":4684,"v":[[0,2,["H2398"]],[2,3,["H3605"]],[3,5,["H899"]],[5,7,["H3605"]],[7,10,["H3627"]],[10,12,["H5785"]],[12,14,["H3605"]],[14,15,["H4639"]],[15,17,["H5795"]],[17,20,["H3605"]],[20,21,["H3627"]],[21,24,["H6086"]]]},{"k":4685,"v":[[0,2,["H499"]],[2,4,["H3548"]],[4,5,["H559"]],[5,6,["H413"]],[6,8,["H376"]],[8,10,["H6635"]],[10,12,["H935"]],[12,15,["H4421"]],[15,16,["H2063"]],[16,19,["H2708"]],[19,22,["H8451"]],[22,23,["H834"]],[23,25,["H3068"]],[25,26,["H6680","(H853)"]],[26,27,["H4872"]]]},{"k":4686,"v":[[0,1,["H389","(H853)"]],[1,3,["H2091"]],[3,6,["H3701","(H853)"]],[6,8,["H5178","(H853)"]],[8,10,["H1270","(H853)"]],[10,12,["H913"]],[12,15,["H5777"]]]},{"k":4687,"v":[[0,1,["H3605"]],[1,2,["H1697"]],[2,3,["H834"]],[3,5,["H935"]],[5,7,["H784"]],[7,12,["H5674"]],[12,15,["H784"]],[15,20,["H2891"]],[20,21,["H389"]],[21,25,["H2398"]],[25,28,["H4325"]],[28,30,["H5079"]],[30,32,["H3605"]],[32,33,["H834"]],[33,34,["H935"]],[34,35,["H3808"]],[35,37,["H784"]],[37,41,["H5674"]],[41,44,["H4325"]]]},{"k":4688,"v":[[0,4,["H3526"]],[4,6,["H899"]],[6,9,["H7637"]],[9,10,["H3117"]],[10,15,["H2891"]],[15,17,["H310"]],[17,20,["H935"]],[20,21,["H413"]],[21,23,["H4264"]]]},{"k":4689,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4690,"v":[[0,1,["H5375","(H853)"]],[1,3,["H7218"]],[3,6,["H4455"]],[6,9,["H7628"]],[9,12,["H120"]],[12,15,["H929"]],[15,16,["H859"]],[16,18,["H499"]],[18,20,["H3548"]],[20,23,["H7218"]],[23,24,["H1"]],[24,27,["H5712"]]]},{"k":4691,"v":[[0,2,["H2673","(H853)"]],[2,4,["H4455"]],[4,8,["H996"]],[8,11,["H8610"]],[11,13,["H4421"]],[13,18,["H3318"]],[18,20,["H6635"]],[20,22,["H996"]],[22,23,["H3605"]],[23,25,["H5712"]]]},{"k":4692,"v":[[0,2,["H7311"]],[2,4,["H4371"]],[4,7,["H3068"]],[7,8,["H4480","H854"]],[8,10,["H376"]],[10,12,["H4421"]],[12,15,["H3318"]],[15,17,["H6635"]],[17,18,["H259"]],[18,19,["H5315"]],[19,21,["H4480","H2568"]],[21,22,["H3967"]],[22,24,["H4480"]],[24,26,["H120"]],[26,28,["H4480"]],[28,30,["H1241"]],[30,32,["H4480"]],[32,34,["H2543"]],[34,36,["H4480"]],[36,38,["H6629"]]]},{"k":4693,"v":[[0,1,["H3947"]],[1,5,["H4480","H4276"]],[5,7,["H5414"]],[7,10,["H499"]],[10,12,["H3548"]],[12,16,["H8641"]],[16,19,["H3068"]]]},{"k":4694,"v":[[0,4,["H1121"]],[4,6,["H3478"]],[6,7,["H4480","H4276"]],[7,10,["H3947"]],[10,11,["H259"]],[11,12,["H270"]],[12,13,["H4480"]],[13,14,["H2572"]],[14,15,["H4480"]],[15,17,["H120"]],[17,18,["H4480"]],[18,20,["H1241"]],[20,21,["H4480"]],[21,23,["H2543"]],[23,25,["H4480"]],[25,27,["H6629"]],[27,30,["H4480","H3605"]],[30,32,["H929"]],[32,34,["H5414"]],[34,38,["H3881"]],[38,40,["H8104"]],[40,42,["H4931"]],[42,45,["H4908"]],[45,48,["H3068"]]]},{"k":4695,"v":[[0,2,["H4872"]],[2,4,["H499"]],[4,6,["H3548"]],[6,7,["H6213"]],[7,8,["H834"]],[8,10,["H3068"]],[10,11,["H6680","(H853)"]],[11,12,["H4872"]]]},{"k":4696,"v":[[0,3,["H4455"]],[3,6,["H3499"]],[6,9,["H957"]],[9,10,["H834"]],[10,12,["H5971"]],[12,14,["H6635"]],[14,16,["H962"]],[16,17,["H1961"]],[17,18,["H8337"]],[18,19,["H3967"]],[19,20,["H505"]],[20,22,["H7657"]],[22,23,["H505"]],[23,25,["H2568"]],[25,26,["H505"]],[26,27,["H6629"]]]},{"k":4697,"v":[[0,4,["H8147","H7657"]],[4,5,["H505"]],[5,6,["H1241"]]]},{"k":4698,"v":[[0,2,["H8346"]],[2,4,["H259"]],[4,5,["H505"]],[5,6,["H2543"]]]},{"k":4699,"v":[[0,2,["H7970"]],[2,4,["H8147"]],[4,5,["H505"]],[5,6,["H5315","H120"]],[6,8,["H3605","H5315"]],[8,9,["H4480"]],[9,10,["H802"]],[10,11,["H834"]],[11,13,["H3808"]],[13,14,["H3045"]],[14,18,["H4904"]],[18,19,["H2145"]]]},{"k":4700,"v":[[0,3,["H4275"]],[3,7,["H2506"]],[7,12,["H3318"]],[12,14,["H6635"]],[14,15,["H1961"]],[15,17,["H4557"]],[17,18,["H7969"]],[18,19,["H3967"]],[19,20,["H505"]],[20,22,["H7651"]],[22,24,["H7970"]],[24,25,["H505"]],[25,27,["H2568"]],[27,28,["H3967"]],[28,29,["H6629"]]]},{"k":4701,"v":[[0,3,["H3068"]],[3,4,["H4371"]],[4,5,["H4480"]],[5,7,["H6629"]],[7,8,["H1961"]],[8,9,["H8337"]],[9,10,["H3967"]],[10,14,["H2568","H7657"]]]},{"k":4702,"v":[[0,3,["H1241"]],[3,5,["H7970"]],[5,7,["H8337"]],[7,8,["H505"]],[8,12,["H3068"]],[12,13,["H4371"]],[13,17,["H8147","H7657"]]]},{"k":4703,"v":[[0,3,["H2543"]],[3,5,["H7970"]],[5,6,["H505"]],[6,8,["H2568"]],[8,9,["H3967"]],[9,13,["H3068"]],[13,14,["H4371"]],[14,16,["H8346"]],[16,18,["H259"]]]},{"k":4704,"v":[[0,3,["H5315","H120"]],[3,5,["H8337","H6240"]],[5,6,["H505"]],[6,10,["H3068"]],[10,11,["H4371"]],[11,13,["H7970"]],[13,15,["H8147"]],[15,16,["H5315"]]]},{"k":4705,"v":[[0,2,["H4872"]],[2,3,["H5414","(H853)"]],[3,5,["H4371"]],[5,9,["H3068"]],[9,11,["H8641"]],[11,13,["H499"]],[13,15,["H3548"]],[15,16,["H834"]],[16,18,["H3068"]],[18,19,["H6680","(H853)"]],[19,20,["H4872"]]]},{"k":4706,"v":[[0,4,["H1121"]],[4,6,["H3478"]],[6,7,["H4480","H4276"]],[7,8,["H834"]],[8,9,["H4872"]],[9,10,["H2673"]],[10,11,["H4480"]],[11,13,["H376"]],[13,15,["H6633"]]]},{"k":4707,"v":[[0,3,["H4275"]],[3,8,["H5712"]],[8,9,["H1961"]],[9,10,["H7969"]],[10,11,["H3967"]],[11,12,["H505"]],[12,14,["H7970"]],[14,15,["H505"]],[15,17,["H7651"]],[17,18,["H505"]],[18,20,["H2568"]],[20,21,["H3967"]],[21,22,["H6629"]]]},{"k":4708,"v":[[0,2,["H7970"]],[2,4,["H8337"]],[4,5,["H505"]],[5,6,["H1241"]]]},{"k":4709,"v":[[0,2,["H7970"]],[2,3,["H505"]],[3,4,["H2543"]],[4,6,["H2568"]],[6,7,["H3967"]]]},{"k":4710,"v":[[0,2,["H8337","H6240"]],[2,3,["H505"]],[3,4,["H5315","H120"]]]},{"k":4711,"v":[[0,4,["H1121"]],[4,6,["H3478"]],[6,7,["H4480","H4276"]],[7,8,["H4872"]],[8,9,["H3947"]],[9,10,["H259","(H853)"]],[10,11,["H270"]],[11,12,["H4480"]],[12,13,["H2572"]],[13,15,["H4480"]],[15,16,["H120"]],[16,18,["H4480"]],[18,19,["H929"]],[19,21,["H5414"]],[21,25,["H3881"]],[25,27,["H8104"]],[27,29,["H4931"]],[29,32,["H4908"]],[32,35,["H3068"]],[35,36,["H834"]],[36,38,["H3068"]],[38,39,["H6680","(H853)"]],[39,40,["H4872"]]]},{"k":4712,"v":[[0,3,["H6485"]],[3,4,["H834"]],[4,7,["H505"]],[7,10,["H6635"]],[10,12,["H8269"]],[12,14,["H505"]],[14,16,["H8269"]],[16,18,["H3967"]],[18,20,["H7126"]],[20,21,["H413"]],[21,22,["H4872"]]]},{"k":4713,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H4872"]],[5,7,["H5650"]],[7,9,["H5375","(H853)"]],[9,11,["H7218"]],[11,14,["H376"]],[14,16,["H4421"]],[16,17,["H834"]],[17,21,["H3027"]],[21,24,["H6485"]],[24,25,["H3808"]],[25,27,["H376"]],[27,28,["H4480"]],[28,29,[]]]},{"k":4714,"v":[[0,4,["H7126","(H853)"]],[4,6,["H7133"]],[6,9,["H3068"]],[9,10,["H834"]],[10,12,["H376"]],[12,14,["H4672"]],[14,16,["H3627"]],[16,18,["H2091"]],[18,19,["H685"]],[19,21,["H6781"]],[21,22,["H2885"]],[22,23,["H5694"]],[23,25,["H3558"]],[25,29,["H3722"]],[29,30,["H5921"]],[30,32,["H5315"]],[32,33,["H6440"]],[33,35,["H3068"]]]},{"k":4715,"v":[[0,2,["H4872"]],[2,4,["H499"]],[4,6,["H3548"]],[6,7,["H3947","(H853)"]],[7,9,["H2091"]],[9,10,["H4480","H854"]],[10,13,["H3605"]],[13,14,["H4639"]],[14,15,["H3627"]]]},{"k":4716,"v":[[0,2,["H3605"]],[2,4,["H2091"]],[4,7,["H8641"]],[7,8,["H834"]],[8,11,["H7311"]],[11,14,["H3068"]],[14,15,["H4480","H854"]],[15,17,["H8269"]],[17,19,["H505"]],[19,21,["H4480","H854"]],[21,23,["H8269"]],[23,25,["H3967"]],[25,26,["H1961"]],[26,27,["H8337","H6240"]],[27,28,["H505"]],[28,29,["H7651"]],[29,30,["H3967"]],[30,32,["H2572"]],[32,33,["H8255"]]]},{"k":4717,"v":[[0,3,["H376"]],[3,5,["H6635"]],[5,8,["H962"]],[8,10,["H376"]],[10,12,[]]]},{"k":4718,"v":[[0,2,["H4872"]],[2,4,["H499"]],[4,6,["H3548"]],[6,7,["H3947","(H853)"]],[7,9,["H2091"]],[9,10,["H4480","H854"]],[10,12,["H8269"]],[12,14,["H505"]],[14,17,["H3967"]],[17,19,["H935"]],[19,21,["H413"]],[21,23,["H168"]],[23,26,["H4150"]],[26,29,["H2146"]],[29,32,["H1121"]],[32,34,["H3478"]],[34,35,["H6440"]],[35,37,["H3068"]]]},{"k":4719,"v":[[0,3,["H1121"]],[3,5,["H7205"]],[5,8,["H1121"]],[8,10,["H1410"]],[10,11,["H1961"]],[11,13,["H3966"]],[13,14,["H6099"]],[14,15,["H7227"]],[15,17,["H4735"]],[17,21,["H7200","(H853)"]],[21,23,["H776"]],[23,25,["H3270"]],[25,28,["H776"]],[28,30,["H1568"]],[30,32,["H2009"]],[32,34,["H4725"]],[34,37,["H4725"]],[37,39,["H4735"]]]},{"k":4720,"v":[[0,2,["H1121"]],[2,4,["H1410"]],[4,7,["H1121"]],[7,9,["H7205"]],[9,10,["H935"]],[10,12,["H559"]],[12,13,["H413"]],[13,14,["H4872"]],[14,16,["H413"]],[16,17,["H499"]],[17,19,["H3548"]],[19,21,["H413"]],[21,23,["H5387"]],[23,26,["H5712"]],[26,27,["H559"]]]},{"k":4721,"v":[[0,1,["H5852"]],[1,3,["H1769"]],[3,5,["H3270"]],[5,7,["H5247"]],[7,9,["H2809"]],[9,11,["H500"]],[11,13,["H7643"]],[13,15,["H5015"]],[15,17,["H1194"]]]},{"k":4722,"v":[[0,3,["H776"]],[3,4,["H834"]],[4,6,["H3068"]],[6,7,["H5221"]],[7,8,["H6440"]],[8,10,["H5712"]],[10,12,["H3478"]],[12,15,["H776"]],[15,17,["H4735"]],[17,20,["H5650"]],[20,22,["H4735"]]]},{"k":4723,"v":[[0,2,["H559"]],[2,4,["H518"]],[4,7,["H4672"]],[7,8,["H2580"]],[8,11,["H5869"]],[11,12,["(H853)"]],[12,13,["H2063"]],[13,14,["H776"]],[14,16,["H5414"]],[16,19,["H5650"]],[19,22,["H272"]],[22,27,["H5674","H408","(H853)"]],[27,28,["H3383"]]]},{"k":4724,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,6,["H1121"]],[6,8,["H1410"]],[8,12,["H1121"]],[12,14,["H7205"]],[14,17,["H251"]],[17,18,["H935"]],[18,20,["H4421"]],[20,23,["H859"]],[23,24,["H3427"]],[24,25,["H6311"]]]},{"k":4725,"v":[[0,2,["H4100"]],[2,3,["H5106"]],[3,4,["(H853)"]],[4,6,["H3820"]],[6,9,["H1121"]],[9,11,["H3478"]],[11,14,["H4480","H5674"]],[14,15,["H413"]],[15,17,["H776"]],[17,18,["H834"]],[18,20,["H3068"]],[20,22,["H5414"]],[22,23,[]]]},{"k":4726,"v":[[0,1,["H3541"]],[1,2,["H6213"]],[2,4,["H1"]],[4,7,["H7971"]],[7,10,["H4480","H6947"]],[10,12,["H7200","(H853)"]],[12,14,["H776"]]]},{"k":4727,"v":[[0,5,["H5927"]],[5,6,["H5704"]],[6,8,["H5158"]],[8,10,["H812"]],[10,12,["H7200","(H853)"]],[12,14,["H776"]],[14,16,["H5106","(H853)"]],[16,18,["H3820"]],[18,21,["H1121"]],[21,23,["H3478"]],[23,27,["H1115"]],[27,28,["H935"]],[28,29,["H413"]],[29,31,["H776"]],[31,32,["H834"]],[32,34,["H3068"]],[34,36,["H5414"]],[36,37,[]]]},{"k":4728,"v":[[0,3,["H3068"]],[3,4,["H639"]],[4,6,["H2734"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H7650"]],[12,13,["H559"]]]},{"k":4729,"v":[[0,1,["H518"]],[1,5,["H376"]],[5,8,["H5927"]],[8,11,["H4480","H4714"]],[11,13,["H6242"]],[13,14,["H8141"]],[14,15,["H4480","H1121"]],[15,17,["H4605"]],[17,19,["H7200","(H853)"]],[19,21,["H127"]],[21,22,["H834"]],[22,24,["H7650"]],[24,26,["H85"]],[26,28,["H3327"]],[28,31,["H3290"]],[31,32,["H3588"]],[32,35,["H3808"]],[35,36,["H4390"]],[36,37,["H310"]],[37,38,[]]]},{"k":4730,"v":[[0,1,["H1115"]],[1,2,["H3612"]],[2,4,["H1121"]],[4,6,["H3312"]],[6,8,["H7074"]],[8,10,["H3091"]],[10,12,["H1121"]],[12,14,["H5126"]],[14,15,["H3588"]],[15,18,["H4390"]],[18,19,["H310"]],[19,21,["H3068"]]]},{"k":4731,"v":[[0,3,["H3068"]],[3,4,["H639"]],[4,6,["H2734"]],[6,8,["H3478"]],[8,13,["H5128"]],[13,16,["H4057"]],[16,17,["H705"]],[17,18,["H8141"]],[18,19,["H5704"]],[19,20,["H3605"]],[20,22,["H1755"]],[22,25,["H6213"]],[25,26,["H7451"]],[26,29,["H5869"]],[29,32,["H3068"]],[32,34,["H8552"]]]},{"k":4732,"v":[[0,2,["H2009"]],[2,6,["H6965"]],[6,10,["H8478","H1"]],[10,12,["H8635"]],[12,14,["H2400"]],[14,15,["H376"]],[15,17,["H5595","H5921"]],[17,18,["H5750"]],[18,20,["H2740"]],[20,21,["H639"]],[21,24,["H3068"]],[24,25,["H413"]],[25,26,["H3478"]]]},{"k":4733,"v":[[0,1,["H3588"]],[1,5,["H7725"]],[5,7,["H4480","H310"]],[7,11,["H5750"]],[11,12,["H3254"]],[12,13,["H5117"]],[13,17,["H4057"]],[17,21,["H7843"]],[21,22,["H3605"]],[22,23,["H2088"]],[23,24,["H5971"]]]},{"k":4734,"v":[[0,4,["H5066"]],[4,5,["H413"]],[5,8,["H559"]],[8,11,["H1129"]],[11,12,["H1448","H6629"]],[12,13,["H6311"]],[13,16,["H4735"]],[16,18,["H5892"]],[18,22,["H2945"]]]},{"k":4735,"v":[[0,2,["H587"]],[2,7,["H2502","H2363"]],[7,8,["H6440"]],[8,10,["H1121"]],[10,12,["H3478"]],[12,13,["H5704","H834","H518"]],[13,16,["H935"]],[16,18,["H413"]],[18,20,["H4725"]],[20,24,["H2945"]],[24,26,["H3427"]],[26,29,["H4013"]],[29,30,["H5892"]],[30,31,["H4480","H6440"]],[31,34,["H3427"]],[34,37,["H776"]]]},{"k":4736,"v":[[0,3,["H3808"]],[3,4,["H7725"]],[4,5,["H413"]],[5,7,["H1004"]],[7,8,["H5704"]],[8,10,["H1121"]],[10,12,["H3478"]],[12,14,["H5157"]],[14,16,["H376"]],[16,18,["H5159"]]]},{"k":4737,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H5157"]],[5,6,["H854"]],[6,10,["H4480","H5676"]],[10,11,["H3383"]],[11,13,["H1973"]],[13,14,["H3588"]],[14,16,["H5159"]],[16,18,["H935"]],[18,19,["H413"]],[19,23,["H4480","H5676"]],[23,24,["H3383"]],[24,25,["H4217"]]]},{"k":4738,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H518"]],[6,9,["H6213","(H853)"]],[9,10,["H2088"]],[10,11,["H1697"]],[11,12,["H518"]],[12,16,["H2502"]],[16,17,["H6440"]],[17,19,["H3068"]],[19,21,["H4421"]]]},{"k":4739,"v":[[0,3,["H5674"]],[3,4,["H3605"]],[4,7,["H2502"]],[7,8,["(H853)"]],[8,9,["H3383"]],[9,10,["H6440"]],[10,12,["H3068"]],[12,13,["H5704"]],[13,17,["H3423","(H853)"]],[17,19,["H341"]],[19,21,["H4480","H6440"]],[21,22,[]]]},{"k":4740,"v":[[0,3,["H776"]],[3,5,["H3533"]],[5,6,["H6440"]],[6,8,["H3068"]],[8,10,["H310"]],[10,13,["H7725"]],[13,15,["H1961"]],[15,16,["H5355"]],[16,19,["H4480","H3068"]],[19,22,["H4480","H3478"]],[22,24,["H2063"]],[24,25,["H776"]],[25,27,["H1961"]],[27,29,["H272"]],[29,30,["H6440"]],[30,32,["H3068"]]]},{"k":4741,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H6213"]],[6,7,["H3651"]],[7,8,["H2009"]],[8,11,["H2398"]],[11,14,["H3068"]],[14,17,["H3045"]],[17,19,["H2403"]],[19,23,["H4672","(H853)"]]]},{"k":4742,"v":[[0,1,["H1129"]],[1,3,["H5892"]],[3,7,["H2945"]],[7,9,["H1448"]],[9,12,["H6792"]],[12,14,["H6213"]],[14,19,["H3318"]],[19,22,["H4480","H6310"]]]},{"k":4743,"v":[[0,3,["H1121"]],[3,5,["H1410"]],[5,8,["H1121"]],[8,10,["H7205"]],[10,11,["H559"]],[11,12,["H413"]],[12,13,["H4872"]],[13,14,["H559"]],[14,16,["H5650"]],[16,18,["H6213"]],[18,19,["H834"]],[19,21,["H113"]],[21,22,["H6680"]]]},{"k":4744,"v":[[0,3,["H2945"]],[3,5,["H802"]],[5,7,["H4735"]],[7,9,["H3605"]],[9,11,["H929"]],[11,13,["H1961"]],[13,14,["H8033"]],[14,17,["H5892"]],[17,19,["H1568"]]]},{"k":4745,"v":[[0,3,["H5650"]],[3,6,["H5674"]],[6,8,["H3605"]],[8,9,["H2502"]],[9,11,["H6635"]],[11,12,["H6440"]],[12,14,["H3068"]],[14,16,["H4421"]],[16,17,["H834"]],[17,19,["H113"]],[19,20,["H1696"]]]},{"k":4746,"v":[[0,4,["H4872"]],[4,5,["H6680","(H853)"]],[5,6,["H499"]],[6,8,["H3548"]],[8,10,["H3091"]],[10,12,["H1121"]],[12,14,["H5126"]],[14,17,["H7218"]],[17,18,["H1"]],[18,21,["H4294"]],[21,24,["H1121"]],[24,26,["H3478"]]]},{"k":4747,"v":[[0,2,["H4872"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H518"]],[6,8,["H1121"]],[8,10,["H1410"]],[10,13,["H1121"]],[13,15,["H7205"]],[15,20,["H5674","H854","(H853)"]],[20,21,["H3383"]],[21,23,["H3605"]],[23,24,["H2502"]],[24,26,["H4421"]],[26,27,["H6440"]],[27,29,["H3068"]],[29,32,["H776"]],[32,35,["H3533"]],[35,36,["H6440"]],[36,41,["H5414"]],[41,42,["(H853)"]],[42,44,["H776"]],[44,46,["H1568"]],[46,49,["H272"]]]},{"k":4748,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,7,["H5674"]],[7,8,["H854"]],[8,10,["H2502"]],[10,14,["H270"]],[14,15,["H8432"]],[15,19,["H776"]],[19,21,["H3667"]]]},{"k":4749,"v":[[0,3,["H1121"]],[3,5,["H1410"]],[5,8,["H1121"]],[8,10,["H7205"]],[10,11,["H6030"]],[11,12,["H559","(H853)"]],[12,13,["H834"]],[13,15,["H3068"]],[15,17,["H1696"]],[17,18,["H413"]],[18,20,["H5650"]],[20,21,["H3651"]],[21,24,["H6213"]]]},{"k":4750,"v":[[0,1,["H5168"]],[1,4,["H5674"]],[4,5,["H2502"]],[5,6,["H6440"]],[6,8,["H3068"]],[8,11,["H776"]],[11,13,["H3667"]],[13,16,["H272"]],[16,19,["H5159"]],[19,22,["H4480","H5676"]],[22,23,["H3383"]],[23,26,[]]]},{"k":4751,"v":[[0,2,["H4872"]],[2,3,["H5414"]],[3,9,["H1121"]],[9,11,["H1410"]],[11,15,["H1121"]],[15,17,["H7205"]],[17,20,["H2677"]],[20,22,["H7626"]],[22,24,["H4519"]],[24,26,["H1121"]],[26,28,["H3130","(H853)"]],[28,30,["H4467"]],[30,32,["H5511"]],[32,33,["H4428"]],[33,36,["H567"]],[36,39,["H4467"]],[39,41,["H5747"]],[41,42,["H4428"]],[42,44,["H1316"]],[44,46,["H776"]],[46,49,["H5892"]],[49,53,["H1367"]],[53,56,["H5892"]],[56,59,["H776"]],[59,61,["H5439"]]]},{"k":4752,"v":[[0,3,["H1121"]],[3,5,["H1410"]],[5,6,["H1129","(H853)"]],[6,7,["H1769"]],[7,9,["H5852"]],[9,11,["H6177"]]]},{"k":4753,"v":[[0,2,["H5852"]],[2,3,["H5855"]],[3,5,["H3270"]],[5,7,["H3011"]]]},{"k":4754,"v":[[0,2,["H1039"]],[2,4,["H1028"]],[4,5,["H4013"]],[5,6,["H5892"]],[6,8,["H1448"]],[8,10,["H6629"]]]},{"k":4755,"v":[[0,3,["H1121"]],[3,5,["H7205"]],[5,6,["H1129","(H853)"]],[6,7,["H2809"]],[7,9,["H500"]],[9,11,["H7156"]]]},{"k":4756,"v":[[0,2,["H5015"]],[2,4,["H1186"]],[4,6,["H8034"]],[6,8,["H5437"]],[8,9,["(H853)"]],[9,10,["H7643"]],[10,14,["H7121","H8034","(H853)","H8034"]],[14,17,["H5892"]],[17,18,["H834"]],[18,20,["H1129"]]]},{"k":4757,"v":[[0,3,["H1121"]],[3,5,["H4353"]],[5,7,["H1121"]],[7,9,["H4519"]],[9,10,["H1980"]],[10,12,["H1568"]],[12,14,["H3920"]],[14,17,["H3423","(H853)"]],[17,19,["H567"]],[19,20,["H834"]],[20,23,[]]]},{"k":4758,"v":[[0,2,["H4872"]],[2,3,["H5414","(H853)"]],[3,4,["H1568"]],[4,6,["H4353"]],[6,8,["H1121"]],[8,10,["H4519"]],[10,13,["H3427"]],[13,14,[]]]},{"k":4759,"v":[[0,2,["H2971"]],[2,4,["H1121"]],[4,6,["H4519"]],[6,7,["H1980"]],[7,9,["H3920","(H853)"]],[9,12,["H2333"]],[12,15,["H7121"]],[15,17,["H2334"]]]},{"k":4760,"v":[[0,2,["H5025"]],[2,3,["H1980"]],[3,5,["H3920","(H853)"]],[5,6,["H7079"]],[6,9,["H1323"]],[9,12,["H7121"]],[12,14,["H5025"]],[14,18,["H8034"]]]},{"k":4761,"v":[[0,1,["H428"]],[1,4,["H4550"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,10,["H834"]],[10,12,["H3318"]],[12,16,["H4480","H776"]],[16,18,["H4714"]],[18,21,["H6635"]],[21,24,["H3027"]],[24,26,["H4872"]],[26,28,["H175"]]]},{"k":4762,"v":[[0,2,["H4872"]],[2,3,["H3789","(H853)"]],[3,6,["H4161"]],[6,10,["H4550"]],[10,11,["H5921"]],[11,13,["H6310"]],[13,16,["H3068"]],[16,18,["H428"]],[18,21,["H4550"]],[21,26,["H4161"]]]},{"k":4763,"v":[[0,3,["H5265"]],[3,5,["H4480","H7486"]],[5,8,["H7223"]],[8,9,["H2320"]],[9,12,["H2568","H6240"]],[12,13,["H3117"]],[13,16,["H7223"]],[16,17,["H2320"]],[17,20,["H4480","H4283"]],[20,23,["H6453"]],[23,25,["H1121"]],[25,27,["H3478"]],[27,29,["H3318"]],[29,32,["H7311"]],[32,33,["H3027"]],[33,36,["H5869"]],[36,38,["H3605"]],[38,40,["H4714"]]]},{"k":4764,"v":[[0,3,["H4714"]],[3,4,["H6912"]],[4,5,["H3605"]],[5,7,["H1060","(H853)"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H5221"]],[12,17,["H430"]],[17,20,["H3068"]],[20,21,["H6213"]],[21,22,["H8201"]]]},{"k":4765,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5265"]],[6,8,["H4480","H7486"]],[8,10,["H2583"]],[10,12,["H5523"]]]},{"k":4766,"v":[[0,3,["H5265"]],[3,5,["H4480","H5523"]],[5,7,["H2583"]],[7,9,["H864"]],[9,10,["H834"]],[10,14,["H7097"]],[14,17,["H4057"]]]},{"k":4767,"v":[[0,3,["H5265"]],[3,5,["H4480","H864"]],[5,8,["H7725"]],[8,9,["H5921"]],[9,10,["H6367"]],[10,11,["H834"]],[11,13,["H5921","H6440"]],[13,14,["H1189"]],[14,17,["H2583"]],[17,18,["H6440"]],[18,19,["H4024"]]]},{"k":4768,"v":[[0,3,["H5265"]],[3,5,["H4480","H6440"]],[5,6,["H6367"]],[6,9,["H5674"]],[9,11,["H8432"]],[11,14,["H3220"]],[14,17,["H4057"]],[17,19,["H1980"]],[19,20,["H7969"]],[20,21,["H3117"]],[21,22,["H1870"]],[22,25,["H4057"]],[25,27,["H864"]],[27,29,["H2583"]],[29,31,["H4785"]]]},{"k":4769,"v":[[0,3,["H5265"]],[3,5,["H4480","H4785"]],[5,7,["H935"]],[7,9,["H362"]],[9,12,["H362"]],[12,14,["H8147","H6240"]],[14,15,["H5869"]],[15,17,["H4325"]],[17,21,["H7657"]],[21,23,["H8558"]],[23,26,["H2583"]],[26,27,["H8033"]]]},{"k":4770,"v":[[0,3,["H5265"]],[3,5,["H4480","H362"]],[5,7,["H2583"]],[7,8,["H5921"]],[8,10,["H5488"]],[10,11,["H3220"]]]},{"k":4771,"v":[[0,3,["H5265"]],[3,6,["H5488"]],[6,7,["H4480","H3220"]],[7,9,["H2583"]],[9,12,["H4057"]],[12,14,["H5512"]]]},{"k":4772,"v":[[0,5,["H5265"]],[5,9,["H4480","H4057"]],[9,11,["H5512"]],[11,13,["H2583"]],[13,15,["H1850"]]]},{"k":4773,"v":[[0,3,["H5265"]],[3,5,["H4480","H1850"]],[5,7,["H2583"]],[7,9,["H442"]]]},{"k":4774,"v":[[0,3,["H5265"]],[3,5,["H4480","H442"]],[5,7,["H2583"]],[7,9,["H7508"]],[9,10,["H8033"]],[10,11,["H1961"]],[11,12,["H3808"]],[12,13,["H4325"]],[13,16,["H5971"]],[16,18,["H8354"]]]},{"k":4775,"v":[[0,3,["H5265"]],[3,5,["H4480","H7508"]],[5,7,["H2583"]],[7,10,["H4057"]],[10,12,["H5514"]]]},{"k":4776,"v":[[0,3,["H5265"]],[3,6,["H4480","H4057"]],[6,8,["H5514"]],[8,10,["H2583"]],[10,12,["H6914"]]]},{"k":4777,"v":[[0,3,["H5265"]],[3,5,["H4480","H6914"]],[5,7,["H2583"]],[7,9,["H2698"]]]},{"k":4778,"v":[[0,3,["H5265"]],[3,5,["H4480","H2698"]],[5,7,["H2583"]],[7,9,["H7575"]]]},{"k":4779,"v":[[0,3,["H5265"]],[3,5,["H4480","H7575"]],[5,7,["H2583"]],[7,9,["H7428"]]]},{"k":4780,"v":[[0,3,["H5265"]],[3,5,["H4480","H7428"]],[5,7,["H2583"]],[7,9,["H3841"]]]},{"k":4781,"v":[[0,3,["H5265"]],[3,5,["H4480","H3841"]],[5,7,["H2583"]],[7,9,["H7446"]]]},{"k":4782,"v":[[0,3,["H5265"]],[3,5,["H4480","H7446"]],[5,7,["H2583"]],[7,9,["H6954"]]]},{"k":4783,"v":[[0,3,["H5265"]],[3,5,["H4480","H6954"]],[5,7,["H2583"]],[7,9,["H2022"]],[9,10,["H8234"]]]},{"k":4784,"v":[[0,3,["H5265"]],[3,5,["H4480","H2022"]],[5,6,["H8234"]],[6,8,["H2583"]],[8,10,["H2732"]]]},{"k":4785,"v":[[0,3,["H5265"]],[3,5,["H4480","H2732"]],[5,7,["H2583"]],[7,9,["H4722"]]]},{"k":4786,"v":[[0,3,["H5265"]],[3,5,["H4480","H4722"]],[5,7,["H2583"]],[7,9,["H8480"]]]},{"k":4787,"v":[[0,3,["H5265"]],[3,5,["H4480","H8480"]],[5,7,["H2583"]],[7,9,["H8646"]]]},{"k":4788,"v":[[0,3,["H5265"]],[3,5,["H4480","H8646"]],[5,7,["H2583"]],[7,9,["H4989"]]]},{"k":4789,"v":[[0,3,["H5265"]],[3,5,["H4480","H4989"]],[5,7,["H2583"]],[7,9,["H2832"]]]},{"k":4790,"v":[[0,3,["H5265"]],[3,5,["H4480","H2832"]],[5,7,["H2583"]],[7,9,["H4149"]]]},{"k":4791,"v":[[0,3,["H5265"]],[3,5,["H4480","H4149"]],[5,7,["H2583"]],[7,9,["H1142"]]]},{"k":4792,"v":[[0,3,["H5265"]],[3,5,["H4480","H1142"]],[5,7,["H2583"]],[7,9,["H2735"]]]},{"k":4793,"v":[[0,3,["H5265"]],[3,5,["H4480","H2735"]],[5,7,["H2583"]],[7,9,["H3193"]]]},{"k":4794,"v":[[0,3,["H5265"]],[3,5,["H4480","H3193"]],[5,7,["H2583"]],[7,9,["H5684"]]]},{"k":4795,"v":[[0,3,["H5265"]],[3,5,["H4480","H5684"]],[5,7,["H2583"]],[7,9,["H6100"]]]},{"k":4796,"v":[[0,3,["H5265"]],[3,5,["H4480","H6100"]],[5,7,["H2583"]],[7,10,["H4057"]],[10,12,["H6790"]],[12,13,["H1931"]],[13,15,["H6946"]]]},{"k":4797,"v":[[0,3,["H5265"]],[3,5,["H4480","H6946"]],[5,7,["H2583"]],[7,9,["H2022"]],[9,10,["H2023"]],[10,13,["H7097"]],[13,16,["H776"]],[16,18,["H123"]]]},{"k":4798,"v":[[0,2,["H175"]],[2,4,["H3548"]],[4,6,["H5927"]],[6,7,["H413"]],[7,8,["H2022"]],[8,9,["H2023"]],[9,10,["H5921"]],[10,12,["H6310"]],[12,15,["H3068"]],[15,17,["H4191"]],[17,18,["H8033"]],[18,21,["H705"]],[21,22,["H8141"]],[22,25,["H1121"]],[25,27,["H3478"]],[27,30,["H3318"]],[30,33,["H4480","H776"]],[33,35,["H4714"]],[35,38,["H259"]],[38,42,["H2549"]],[42,43,["H2320"]]]},{"k":4799,"v":[[0,2,["H175"]],[2,5,["H3967"]],[5,7,["H6242"]],[7,9,["H7969"]],[9,10,["H8141"]],[10,11,["H1121"]],[11,14,["H4194"]],[14,16,["H2022"]],[16,17,["H2023"]]]},{"k":4800,"v":[[0,2,["H4428"]],[2,3,["H6166"]],[3,5,["H3669"]],[5,6,["H1931"]],[6,7,["H3427"]],[7,10,["H5045"]],[10,13,["H776"]],[13,15,["H3667"]],[15,16,["H8085"]],[16,19,["H935"]],[19,22,["H1121"]],[22,24,["H3478"]]]},{"k":4801,"v":[[0,3,["H5265"]],[3,5,["H2022"]],[5,6,["H4480","H2023"]],[6,8,["H2583"]],[8,10,["H6758"]]]},{"k":4802,"v":[[0,3,["H5265"]],[3,5,["H4480","H6758"]],[5,7,["H2583"]],[7,9,["H6325"]]]},{"k":4803,"v":[[0,3,["H5265"]],[3,5,["H4480","H6325"]],[5,7,["H2583"]],[7,9,["H88"]]]},{"k":4804,"v":[[0,3,["H5265"]],[3,5,["H4480","H88"]],[5,7,["H2583"]],[7,9,["H5863"]],[9,12,["H1366"]],[12,14,["H4124"]]]},{"k":4805,"v":[[0,3,["H5265"]],[3,5,["H4480","H5864"]],[5,7,["H2583"]],[7,9,["H1769"]]]},{"k":4806,"v":[[0,3,["H5265"]],[3,5,["H4480","H1769"]],[5,7,["H2583"]],[7,9,["H5963"]]]},{"k":4807,"v":[[0,3,["H5265"]],[3,5,["H4480","H5963"]],[5,7,["H2583"]],[7,10,["H2022"]],[10,12,["H5682"]],[12,13,["H6440"]],[13,14,["H5015"]]]},{"k":4808,"v":[[0,3,["H5265"]],[3,6,["H4480","H2022"]],[6,8,["H5682"]],[8,10,["H2583"]],[10,13,["H6160"]],[13,15,["H4124"]],[15,16,["H5921"]],[16,17,["H3383"]],[17,19,["H3405"]]]},{"k":4809,"v":[[0,3,["H2583"]],[3,4,["H5921"]],[4,5,["H3383"]],[5,7,["H4480","H1020"]],[7,9,["H5704"]],[9,10,["H63"]],[10,13,["H6160"]],[13,15,["H4124"]]]},{"k":4810,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H6160"]],[9,11,["H4124"]],[11,12,["H5921"]],[12,13,["H3383"]],[13,15,["H3405"]],[15,16,["H559"]]]},{"k":4811,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H3588"]],[11,12,["H859"]],[12,15,["H5674","(H853)"]],[15,16,["H3383"]],[16,17,["H413"]],[17,19,["H776"]],[19,21,["H3667"]]]},{"k":4812,"v":[[0,5,["H3423","(H853)"]],[5,6,["H3605"]],[6,8,["H3427"]],[8,11,["H776"]],[11,13,["H4480","H6440"]],[13,16,["H6","(H853)"]],[16,17,["H3605"]],[17,19,["H4906"]],[19,21,["H6"]],[21,22,["H3605"]],[22,24,["H4541"]],[24,25,["H6754"]],[25,29,["H8045"]],[29,30,["H3605"]],[30,33,["H1116"]]]},{"k":4813,"v":[[0,4,["H3423"]],[4,6,["(H853)"]],[6,9,["H776"]],[9,11,["H3427"]],[11,13,["H3588"]],[13,16,["H5414"]],[16,17,["(H853)"]],[17,19,["H776"]],[19,21,["H3423"]],[21,22,[]]]},{"k":4814,"v":[[0,4,["H5157","(H853)"]],[4,6,["H776"]],[6,8,["H1486"]],[8,14,["H4940"]],[14,18,["H7227"]],[18,23,["H7235","(H853)"]],[23,24,["H5159"]],[24,28,["H4592"]],[28,33,["H4591","(H853)"]],[33,34,["H5159"]],[34,39,["H1961"]],[39,43,["H413","H834","H8033"]],[43,45,["H1486"]],[45,46,["H3318"]],[46,50,["H4294"]],[50,53,["H1"]],[53,56,["H5157"]]]},{"k":4815,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,7,["H3423","(H853)"]],[7,9,["H3427"]],[9,12,["H776"]],[12,14,["H4480","H6440"]],[14,21,["H1961"]],[21,24,["H834"]],[24,27,["H3498"]],[27,28,["H4480"]],[28,32,["H7899"]],[32,35,["H5869"]],[35,37,["H6796"]],[37,40,["H6654"]],[40,43,["H6887"]],[43,45,["H5921"]],[45,47,["H776"]],[47,48,["H834"]],[48,49,["H859"]],[49,50,["H3427"]]]},{"k":4816,"v":[[0,6,["H1961"]],[6,10,["H6213"]],[10,13,["H834"]],[13,15,["H1819"]],[15,17,["H6213"]],[17,19,[]]]},{"k":4817,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4818,"v":[[0,1,["H6680","(H853)"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,7,["H559"]],[7,8,["H413"]],[8,10,["H3588"]],[10,11,["H859"]],[11,12,["H935"]],[12,13,["H413"]],[13,15,["H776"]],[15,17,["H3667"]],[17,18,["H2063"]],[18,21,["H776"]],[21,22,["H834"]],[22,24,["H5307"]],[24,29,["H5159"]],[29,32,["H776"]],[32,34,["H3667"]],[34,37,["H1367"]],[37,38,[]]]},{"k":4819,"v":[[0,3,["H5045"]],[3,4,["H6285"]],[4,6,["H1961"]],[6,9,["H4480","H4057"]],[9,11,["H6790"]],[11,13,["H5921"]],[13,15,["H3027"]],[15,17,["H123"]],[17,20,["H5045"]],[20,21,["H1366"]],[21,23,["H1961"]],[23,26,["H4480","H7097"]],[26,29,["H4417"]],[29,30,["H3220"]],[30,31,["H6924"]]]},{"k":4820,"v":[[0,3,["H1366"]],[3,5,["H5437"]],[5,8,["H4480","H5045"]],[8,11,["H4608"]],[11,13,["H6137"]],[13,16,["H5674"]],[16,18,["H6790"]],[18,22,["H8444"]],[22,25,["H1961"]],[25,28,["H4480","H5045"]],[28,30,["H6947"]],[30,34,["H3318"]],[34,36,["H2692"]],[36,39,["H5674"]],[39,41,["H6111"]]]},{"k":4821,"v":[[0,3,["H1366"]],[3,7,["H5437"]],[7,9,["H4480","H6111"]],[9,12,["H5158"]],[12,14,["H4714"]],[14,18,["H8444"]],[18,22,["H1961"]],[22,25,["H3220"]]]},{"k":4822,"v":[[0,5,["H3220"]],[5,6,["H1366"]],[6,10,["H1961"]],[10,12,["H1419"]],[12,13,["H3220"]],[13,16,["H1366"]],[16,17,["H2088"]],[17,19,["H1961"]],[19,21,["H3220"]],[21,22,["H1366"]]]},{"k":4823,"v":[[0,2,["H2088"]],[2,4,["H1961"]],[4,6,["H6828"]],[6,7,["H1366"]],[7,8,["H4480"]],[8,10,["H1419"]],[10,11,["H3220"]],[11,15,["H8376"]],[15,18,["H2022"]],[18,19,["H2023"]]]},{"k":4824,"v":[[0,2,["H2022"]],[2,3,["H4480","H2023"]],[3,7,["H8376"]],[7,12,["H935"]],[12,14,["H2574"]],[14,18,["H8444"]],[18,21,["H1366"]],[21,23,["H1961"]],[23,25,["H6657"]]]},{"k":4825,"v":[[0,3,["H1366"]],[3,6,["H3318"]],[6,8,["H2202"]],[8,12,["H8444"]],[12,16,["H1961"]],[16,18,["H2704"]],[18,19,["H2088"]],[19,21,["H1961"]],[21,23,["H6828"]],[23,24,["H1366"]]]},{"k":4826,"v":[[0,5,["H184"]],[5,7,["H6924"]],[7,8,["H1366"]],[8,10,["H4480","H2704"]],[10,12,["H8221"]]]},{"k":4827,"v":[[0,3,["H1366"]],[3,6,["H3381"]],[6,8,["H4480","H8221"]],[8,10,["H7247"]],[10,14,["H4480","H6924"]],[14,16,["H5871"]],[16,19,["H1366"]],[19,21,["H3381"]],[21,24,["H4229"]],[24,25,["H5921"]],[25,27,["H3802"]],[27,30,["H3220"]],[30,32,["H3672"]],[32,33,["H6924"]]]},{"k":4828,"v":[[0,3,["H1366"]],[3,6,["H3381"]],[6,8,["H3383"]],[8,12,["H8444"]],[12,16,["H1961"]],[16,19,["H4417"]],[19,20,["H3220"]],[20,21,["H2063"]],[21,23,["H1961"]],[23,25,["H776"]],[25,28,["H1367"]],[28,31,["H5439"]]]},{"k":4829,"v":[[0,2,["H4872"]],[2,3,["H6680","(H853)"]],[3,5,["H1121"]],[5,7,["H3478"]],[7,8,["H559"]],[8,9,["H2063"]],[9,12,["H776"]],[12,13,["H834"]],[13,16,["H5157"]],[16,18,["H1486"]],[18,19,["H834"]],[19,21,["H3068"]],[21,22,["H6680"]],[22,24,["H5414"]],[24,27,["H8672"]],[27,28,["H4294"]],[28,32,["H2677"]],[32,33,["H4294"]]]},{"k":4830,"v":[[0,1,["H3588"]],[1,3,["H4294"]],[3,6,["H1121"]],[6,8,["H7206"]],[8,12,["H1004"]],[12,15,["H1"]],[15,18,["H4294"]],[18,21,["H1121"]],[21,23,["H1410"]],[23,27,["H1004"]],[27,30,["H1"]],[30,32,["H3947"]],[32,36,["H2677"]],[36,38,["H4294"]],[38,40,["H4519"]],[40,42,["H3947"]],[42,44,["H5159"]]]},{"k":4831,"v":[[0,2,["H8147"]],[2,3,["H4294"]],[3,6,["H2677"]],[6,7,["H4294"]],[7,9,["H3947"]],[9,11,["H5159"]],[11,14,["H4480","H5676"]],[14,15,["H3383"]],[15,17,["H3405"]],[17,18,["H6924"]],[18,21,["H4217"]]]},{"k":4832,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4833,"v":[[0,1,["H428"]],[1,4,["H8034"]],[4,7,["H376"]],[7,8,["H834"]],[8,10,["H5157","(H853)"]],[10,12,["H776"]],[12,15,["H499"]],[15,17,["H3548"]],[17,19,["H3091"]],[19,21,["H1121"]],[21,23,["H5126"]]]},{"k":4834,"v":[[0,4,["H3947"]],[4,6,["H259","H5387","H259","H5387"]],[6,9,["H4480","H4294"]],[9,15,["H5157","(H853)","H776"]]]},{"k":4835,"v":[[0,3,["H8034"]],[3,6,["H376"]],[6,8,["H428"]],[8,11,["H4294"]],[11,13,["H3063"]],[13,14,["H3612"]],[14,16,["H1121"]],[16,18,["H3312"]]]},{"k":4836,"v":[[0,4,["H4294"]],[4,7,["H1121"]],[7,9,["H8095"]],[9,10,["H8050"]],[10,12,["H1121"]],[12,14,["H5989"]]]},{"k":4837,"v":[[0,3,["H4294"]],[3,5,["H1144"]],[5,6,["H449"]],[6,8,["H1121"]],[8,10,["H3692"]]]},{"k":4838,"v":[[0,3,["H5387"]],[3,6,["H4294"]],[6,9,["H1121"]],[9,11,["H1835"]],[11,12,["H1231"]],[12,14,["H1121"]],[14,16,["H3020"]]]},{"k":4839,"v":[[0,2,["H5387"]],[2,5,["H1121"]],[5,7,["H3130"]],[7,10,["H4294"]],[10,13,["H1121"]],[13,15,["H4519"]],[15,16,["H2592"]],[16,18,["H1121"]],[18,20,["H641"]]]},{"k":4840,"v":[[0,3,["H5387"]],[3,6,["H4294"]],[6,9,["H1121"]],[9,11,["H669"]],[11,12,["H7055"]],[12,14,["H1121"]],[14,16,["H8204"]]]},{"k":4841,"v":[[0,3,["H5387"]],[3,6,["H4294"]],[6,9,["H1121"]],[9,11,["H2074"]],[11,12,["H469"]],[12,14,["H1121"]],[14,16,["H6535"]]]},{"k":4842,"v":[[0,3,["H5387"]],[3,6,["H4294"]],[6,9,["H1121"]],[9,11,["H3485"]],[11,12,["H6409"]],[12,14,["H1121"]],[14,16,["H5821"]]]},{"k":4843,"v":[[0,3,["H5387"]],[3,6,["H4294"]],[6,9,["H1121"]],[9,11,["H836"]],[11,12,["H282"]],[12,14,["H1121"]],[14,16,["H8015"]]]},{"k":4844,"v":[[0,3,["H5387"]],[3,6,["H4294"]],[6,9,["H1121"]],[9,11,["H5321"]],[11,12,["H6300"]],[12,14,["H1121"]],[14,16,["H5989"]]]},{"k":4845,"v":[[0,1,["H428"]],[1,4,["H834"]],[4,6,["H3068"]],[6,7,["H6680"]],[7,11,["H5157","(H853)"]],[11,14,["H1121"]],[14,16,["H3478"]],[16,19,["H776"]],[19,21,["H3667"]]]},{"k":4846,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,9,["H6160"]],[9,11,["H4124"]],[11,12,["H5921"]],[12,13,["H3383"]],[13,15,["H3405"]],[15,16,["H559"]]]},{"k":4847,"v":[[0,1,["H6680","(H853)"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,8,["H5414"]],[8,11,["H3881"]],[11,14,["H4480","H5159"]],[14,17,["H272"]],[17,18,["H5892"]],[18,21,["H3427"]],[21,25,["H5414"]],[25,29,["H3881"]],[29,30,["H4054"]],[30,33,["H5892"]],[33,35,["H5439"]],[35,36,[]]]},{"k":4848,"v":[[0,3,["H5892"]],[3,6,["H1961"]],[6,9,["H3427"]],[9,12,["H4054"]],[12,16,["H1961"]],[16,19,["H929"]],[19,23,["H7399"]],[23,26,["H3605"]],[26,28,["H2416"]]]},{"k":4849,"v":[[0,3,["H4054"]],[3,6,["H5892"]],[6,7,["H834"]],[7,10,["H5414"]],[10,13,["H3881"]],[13,18,["H4480","H7023"]],[18,21,["H5892"]],[21,23,["H2351"]],[23,25,["H505"]],[25,26,["H520"]],[26,28,["H5439"]]]},{"k":4850,"v":[[0,4,["H4058"]],[4,6,["H4480","H2351"]],[6,8,["H5892"]],[8,9,["(H853)"]],[9,11,["H6924"]],[11,12,["H6285"]],[12,14,["H505"]],[14,15,["H520"]],[15,19,["H5045"]],[19,20,["H6285"]],[20,22,["H505"]],[22,23,["H520"]],[23,27,["H3220"]],[27,28,["H6285"]],[28,30,["H505"]],[30,31,["H520"]],[31,35,["H6828"]],[35,36,["H6285"]],[36,38,["H505"]],[38,39,["H520"]],[39,42,["H5892"]],[42,47,["H8432"]],[47,48,["H2088"]],[48,50,["H1961"]],[50,54,["H4054"]],[54,57,["H5892"]]]},{"k":4851,"v":[[0,2,["H854"]],[2,4,["H5892"]],[4,5,["H834"]],[5,8,["H5414"]],[8,11,["H3881"]],[11,14,["(H853)"]],[14,15,["H8337"]],[15,16,["H5892"]],[16,18,["H4733"]],[18,19,["H834"]],[19,22,["H5414"]],[22,25,["H7523"]],[25,29,["H5127"]],[29,30,["H8033"]],[30,32,["H5921"]],[32,36,["H5414"]],[36,37,["H705"]],[37,39,["H8147"]],[39,40,["H5892"]]]},{"k":4852,"v":[[0,2,["H3605"]],[2,4,["H5892"]],[4,5,["H834"]],[5,8,["H5414"]],[8,11,["H3881"]],[11,14,["H705"]],[14,16,["H8083"]],[16,17,["H5892"]],[17,22,["H854"]],[22,24,["H4054"]]]},{"k":4853,"v":[[0,3,["H5892"]],[3,4,["H834"]],[4,7,["H5414"]],[7,12,["H4480","H272"]],[12,15,["H1121"]],[15,17,["H3478"]],[17,18,["H4480","H854"]],[18,22,["H7227"]],[22,26,["H7235"]],[26,28,["H4480","H854"]],[28,32,["H4592"]],[32,36,["H4591"]],[36,38,["H376"]],[38,40,["H5414"]],[40,43,["H4480","H5892"]],[43,46,["H3881"]],[46,48,["H6310"]],[48,50,["H5159"]],[50,51,["H834"]],[51,53,["H5157"]]]},{"k":4854,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H559"]]]},{"k":4855,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H3588"]],[11,12,["H859"]],[12,15,["H5674","(H853)"]],[15,16,["H3383"]],[16,19,["H776"]],[19,21,["H3667"]]]},{"k":4856,"v":[[0,4,["H7136"]],[4,6,["H5892"]],[6,8,["H1961"]],[8,9,["H5892"]],[9,11,["H4733"]],[11,16,["H7523"]],[16,18,["H5127"]],[18,19,["H8033"]],[19,21,["H5221"]],[21,23,["H5315"]],[23,25,["H7684"]]]},{"k":4857,"v":[[0,4,["H1961"]],[4,7,["H5892"]],[7,9,["H4733"]],[9,12,["H4480","H1350"]],[12,15,["H7523"]],[15,16,["H4191"]],[16,17,["H3808"]],[17,18,["H5704"]],[18,20,["H5975"]],[20,21,["H6440"]],[21,23,["H5712"]],[23,25,["H4941"]]]},{"k":4858,"v":[[0,4,["H5892"]],[4,5,["H834"]],[5,8,["H5414"]],[8,9,["H8337"]],[9,10,["H5892"]],[10,13,["H1961"]],[13,15,["H4733"]]]},{"k":4859,"v":[[0,3,["H5414","(H853)"]],[3,4,["H7969"]],[4,5,["H5892"]],[5,8,["H4480","H5676"]],[8,9,["H3383"]],[9,11,["H7969"]],[11,12,["H5892"]],[12,15,["H5414"]],[15,18,["H776"]],[18,20,["H3667"]],[20,23,["H1961"]],[23,24,["H5892"]],[24,26,["H4733"]]]},{"k":4860,"v":[[0,1,["H428"]],[1,2,["H8337"]],[2,3,["H5892"]],[3,5,["H1961"]],[5,7,["H4733"]],[7,11,["H1121"]],[11,13,["H3478"]],[13,17,["H1616"]],[17,21,["H8453"]],[21,22,["H8432"]],[22,26,["H3605"]],[26,28,["H5221"]],[28,30,["H5315"]],[30,31,["H7684"]],[31,33,["H5127"]],[33,34,["H8033"]]]},{"k":4861,"v":[[0,2,["H518"]],[2,4,["H5221"]],[4,8,["H3627"]],[8,10,["H1270"]],[10,14,["H4191"]],[14,15,["H1931"]],[15,18,["H7523"]],[18,20,["H7523"]],[20,26,["H4191","H4191"]]]},{"k":4862,"v":[[0,2,["H518"]],[2,4,["H5221"]],[4,7,["H3027"]],[7,9,["H68"]],[9,10,["H834"]],[10,13,["H4191"]],[13,16,["H4191"]],[16,17,["H1931"]],[17,20,["H7523"]],[20,22,["H7523"]],[22,28,["H4191","H4191"]]]},{"k":4863,"v":[[0,1,["H176"]],[1,4,["H5221"]],[4,8,["H3027"]],[8,9,["H3627"]],[9,11,["H6086"]],[11,12,["H834"]],[12,15,["H4191"]],[15,18,["H4191"]],[18,19,["H1931"]],[19,22,["H7523"]],[22,24,["H7523"]],[24,30,["H4191","H4191"]]]},{"k":4864,"v":[[0,2,["H1350"]],[2,4,["H1818"]],[4,5,["H1931"]],[5,7,["H4191","(H853)"]],[7,9,["H7523"]],[9,12,["H6293"]],[12,14,["H1931"]],[14,16,["H4191"]],[16,17,[]]]},{"k":4865,"v":[[0,2,["H518"]],[2,4,["H1920"]],[4,7,["H8135"]],[7,8,["H176"]],[8,9,["H7993"]],[9,10,["H5921"]],[10,15,["H6660"]],[15,18,["H4191"]]]},{"k":4866,"v":[[0,1,["H176"]],[1,3,["H342"]],[3,4,["H5221"]],[4,8,["H3027"]],[8,11,["H4191"]],[11,14,["H5221"]],[14,21,["H4191","H4191"]],[21,23,["H1931"]],[23,26,["H7523"]],[26,28,["H1350"]],[28,30,["H1818"]],[30,32,["H4191","(H853)"]],[32,34,["H7523"]],[34,37,["H6293"]],[37,38,[]]]},{"k":4867,"v":[[0,2,["H518"]],[2,4,["H1920"]],[4,6,["H6621"]],[6,7,["H3808"]],[7,8,["H342"]],[8,9,["H176"]],[9,11,["H7993"]],[11,12,["H5921"]],[12,15,["H3605","H3627"]],[15,16,["H3808"]],[16,19,["H6660"]]]},{"k":4868,"v":[[0,1,["H176"]],[1,3,["H3605"]],[3,4,["H68"]],[4,5,["H834"]],[5,9,["H4191"]],[9,10,["H7200"]],[10,12,["H3808"]],[12,14,["H5307"]],[14,16,["H5921"]],[16,20,["H4191"]],[20,23,["H3808"]],[23,25,["H341"]],[25,26,["H3808"]],[26,27,["H1245"]],[27,29,["H7451"]]]},{"k":4869,"v":[[0,3,["H5712"]],[3,5,["H8199"]],[5,6,["H996"]],[6,8,["H5221"]],[8,11,["H1350"]],[11,13,["H1818"]],[13,15,["H5921"]],[15,16,["H428"]],[16,17,["H4941"]]]},{"k":4870,"v":[[0,3,["H5712"]],[3,5,["H5337","(H853)"]],[5,7,["H7523"]],[7,11,["H4480","H3027"]],[11,14,["H1350"]],[14,16,["H1818"]],[16,19,["H5712"]],[19,21,["H7725"]],[21,23,["H413"]],[23,25,["H5892"]],[25,28,["H4733"]],[28,29,["H834","H8033"]],[29,32,["H5127"]],[32,36,["H3427"]],[36,39,["H5704"]],[39,41,["H4194"]],[41,44,["H1419"]],[44,45,["H3548"]],[45,46,["H834"]],[46,48,["H4886"]],[48,51,["H6944"]],[51,52,["H8081"]]]},{"k":4871,"v":[[0,2,["H518"]],[2,4,["H7523"]],[4,10,["H3318","H3318","(H853)"]],[10,12,["H1366"]],[12,15,["H5892"]],[15,18,["H4733"]],[18,19,["H834","H8033"]],[19,22,["H5127"]]]},{"k":4872,"v":[[0,3,["H1350"]],[3,5,["H1818"]],[5,6,["H4672"]],[6,8,["H4480","H2351"]],[8,10,["H1366"]],[10,13,["H5892"]],[13,16,["H4733"]],[16,19,["H1350"]],[19,21,["H1818"]],[21,22,["H7523","(H853)"]],[22,24,["H7523"]],[24,27,["H369"]],[27,31,["H1818"]]]},{"k":4873,"v":[[0,1,["H3588"]],[1,5,["H3427"]],[5,8,["H5892"]],[8,11,["H4733"]],[11,12,["H5704"]],[12,14,["H4194"]],[14,17,["H1419"]],[17,18,["H3548"]],[18,20,["H310"]],[20,22,["H4194"]],[22,25,["H1419"]],[25,26,["H3548"]],[26,28,["H7523"]],[28,30,["H7725"]],[30,31,["H413"]],[31,33,["H776"]],[33,36,["H272"]]]},{"k":4874,"v":[[0,2,["H428"]],[2,5,["H1961"]],[5,8,["H2708"]],[8,10,["H4941"]],[10,15,["H1755"]],[15,17,["H3605"]],[17,19,["H4186"]]]},{"k":4875,"v":[[0,1,["H3605"]],[1,2,["H5221"]],[2,4,["H5315","(H853)"]],[4,6,["H7523"]],[6,11,["H7523"]],[11,14,["H6310"]],[14,16,["H5707"]],[16,18,["H259"]],[18,19,["H5707"]],[19,21,["H3808"]],[21,22,["H6030"]],[22,25,["H5315"]],[25,30,["H4191"]]]},{"k":4876,"v":[[0,4,["H3947"]],[4,5,["H3808"]],[5,6,["H3724"]],[6,9,["H5315"]],[9,12,["H7523"]],[12,13,["H834"]],[13,15,["H7563"]],[15,17,["H4191"]],[17,18,["H3588"]],[18,25,["H4191","H4191"]]]},{"k":4877,"v":[[0,4,["H3947"]],[4,5,["H3808"]],[5,6,["H3724"]],[6,11,["H5127"]],[11,12,["H413"]],[12,14,["H5892"]],[14,17,["H4733"]],[17,22,["H7725"]],[22,24,["H3427"]],[24,27,["H776"]],[27,28,["H5704"]],[28,30,["H4194"]],[30,33,["H3548"]]]},{"k":4878,"v":[[0,4,["H3808"]],[4,5,["H2610","(H853)"]],[5,7,["H776"]],[7,8,["H834"]],[8,9,["H859"]],[9,11,["H3588"]],[11,12,["H1818"]],[12,13,["H1931"]],[13,14,["H2610","(H853)"]],[14,16,["H776"]],[16,19,["H776"]],[19,20,["H3808"]],[20,22,["H3722"]],[22,25,["H1818"]],[25,26,["H834"]],[26,28,["H8210"]],[28,30,["H3588","H518"]],[30,33,["H1818"]],[33,37,["H8210"]],[37,38,[]]]},{"k":4879,"v":[[0,1,["H2930"]],[1,2,["H3808"]],[2,3,["(H853)"]],[3,5,["H776"]],[5,6,["H834"]],[6,7,["H859"]],[7,9,["H3427"]],[9,10,["H834","H8432"]],[10,11,["H589"]],[11,12,["H7931"]],[12,13,["H3588"]],[13,14,["H589"]],[14,16,["H3068"]],[16,17,["H7931"]],[17,18,["H8432"]],[18,20,["H1121"]],[20,22,["H3478"]]]},{"k":4880,"v":[[0,3,["H7218"]],[3,4,["H1"]],[4,7,["H4940"]],[7,10,["H1121"]],[10,12,["H1568"]],[12,14,["H1121"]],[14,16,["H4353"]],[16,18,["H1121"]],[18,20,["H4519"]],[20,23,["H4480","H4940"]],[23,26,["H1121"]],[26,28,["H3130"]],[28,30,["H7126"]],[30,32,["H1696"]],[32,33,["H6440"]],[33,34,["H4872"]],[34,36,["H6440"]],[36,38,["H5387"]],[38,40,["H7218"]],[40,41,["H1"]],[41,44,["H1121"]],[44,46,["H3478"]]]},{"k":4881,"v":[[0,3,["H559"]],[3,5,["H3068"]],[5,6,["H6680","(H853)"]],[6,8,["H113"]],[8,10,["H5414","(H853)"]],[10,12,["H776"]],[12,15,["H5159"]],[15,17,["H1486"]],[17,20,["H1121"]],[20,22,["H3478"]],[22,25,["H113"]],[25,27,["H6680"]],[27,30,["H3068"]],[30,32,["H5414","(H853)"]],[32,34,["H5159"]],[34,36,["H6765"]],[36,38,["H251"]],[38,41,["H1323"]]]},{"k":4882,"v":[[0,5,["H1961","H802"]],[5,7,["H259"]],[7,10,["H4480","H1121"]],[10,14,["H7626"]],[14,17,["H1121"]],[17,19,["H3478"]],[19,23,["H5159"]],[23,25,["H1639"]],[25,28,["H4480","H5159"]],[28,31,["H1"]],[31,35,["H3254"]],[35,36,["H5921"]],[36,38,["H5159"]],[38,41,["H4294"]],[41,42,["H834"]],[42,45,["H1961"]],[45,50,["H1639"]],[50,53,["H4480","H1486"]],[53,56,["H5159"]]]},{"k":4883,"v":[[0,2,["H518"]],[2,4,["H3104"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,11,["H1961"]],[11,15,["H5159"]],[15,17,["H3254"]],[17,18,["H5921"]],[18,20,["H5159"]],[20,23,["H4294"]],[23,24,["H834"]],[24,27,["H1961"]],[27,31,["H5159"]],[31,34,["H1639"]],[34,37,["H4480","H5159"]],[37,40,["H4294"]],[40,43,["H1"]]]},{"k":4884,"v":[[0,2,["H4872"]],[2,3,["H6680","(H853)"]],[3,5,["H1121"]],[5,7,["H3478"]],[7,9,["H5921"]],[9,11,["H6310"]],[11,14,["H3068"]],[14,15,["H559"]],[15,17,["H4294"]],[17,20,["H1121"]],[20,22,["H3130"]],[22,24,["H1696"]],[24,25,["H3651"]]]},{"k":4885,"v":[[0,1,["H2088"]],[1,4,["H1697"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H6680"]],[9,12,["H1323"]],[12,14,["H6765"]],[14,15,["H559"]],[15,18,["H1961","H802"]],[18,23,["H2896","H5869"]],[23,24,["H389"]],[24,27,["H4940"]],[27,30,["H4294"]],[30,33,["H1"]],[33,36,["H1961","H802"]]]},{"k":4886,"v":[[0,3,["H3808"]],[3,5,["H5159"]],[5,8,["H1121"]],[8,10,["H3478"]],[10,11,["H5437"]],[11,13,["H4480","H4294"]],[13,14,["H413"]],[14,15,["H4294"]],[15,16,["H3588"]],[16,18,["H376"]],[18,21,["H1121"]],[21,23,["H3478"]],[23,25,["H1692"]],[25,29,["H5159"]],[29,32,["H4294"]],[32,35,["H1"]]]},{"k":4887,"v":[[0,2,["H3605"]],[2,3,["H1323"]],[3,5,["H3423"]],[5,7,["H5159"]],[7,10,["H4480","H4294"]],[10,13,["H1121"]],[13,15,["H3478"]],[15,17,["H1961"]],[17,18,["H802"]],[18,20,["H259"]],[20,23,["H4480","H4940"]],[23,26,["H4294"]],[26,29,["H1"]],[29,30,["H4616"]],[30,32,["H1121"]],[32,34,["H3478"]],[34,36,["H3423"]],[36,38,["H376"]],[38,40,["H5159"]],[40,43,["H1"]]]},{"k":4888,"v":[[0,1,["H3808"]],[1,4,["H5159"]],[4,5,["H5437"]],[5,8,["H4480","H4294"]],[8,10,["H312"]],[10,11,["H4294"]],[11,12,["H3588"]],[12,14,["H376"]],[14,17,["H4294"]],[17,20,["H1121"]],[20,22,["H3478"]],[22,24,["H1692"]],[24,29,["H5159"]]]},{"k":4889,"v":[[0,2,["H834"]],[2,4,["H3068"]],[4,5,["H6680","(H853)"]],[5,6,["H4872"]],[6,7,["H3651"]],[7,8,["H6213"]],[8,10,["H1323"]],[10,12,["H6765"]]]},{"k":4890,"v":[[0,2,["H4244"]],[2,3,["H8656"]],[3,5,["H2295"]],[5,7,["H4435"]],[7,9,["H5270"]],[9,11,["H1323"]],[11,13,["H6765"]],[13,15,["H1961","H802"]],[15,19,["H1730"]],[19,20,["H1121"]]]},{"k":4891,"v":[[0,4,["H1961","H802"]],[4,7,["H4480","H4940"]],[7,10,["H1121"]],[10,12,["H4519"]],[12,14,["H1121"]],[14,16,["H3130"]],[16,19,["H5159"]],[19,20,["H1961"]],[20,21,["H5921"]],[21,23,["H4294"]],[23,26,["H4940"]],[26,29,["H1"]]]},{"k":4892,"v":[[0,1,["H428"]],[1,4,["H4687"]],[4,7,["H4941"]],[7,8,["H834"]],[8,10,["H3068"]],[10,11,["H6680"]],[11,14,["H3027"]],[14,16,["H4872"]],[16,17,["H413"]],[17,19,["H1121"]],[19,21,["H3478"]],[21,24,["H6160"]],[24,26,["H4124"]],[26,27,["H5921"]],[27,28,["H3383"]],[28,30,["H3405"]]]},{"k":4893,"v":[[0,1,["H428"]],[1,4,["H1697"]],[4,5,["H834"]],[5,6,["H4872"]],[6,7,["H1696"]],[7,8,["H413"]],[8,9,["H3605"]],[9,10,["H3478"]],[10,13,["H5676"]],[13,14,["H3383"]],[14,17,["H4057"]],[17,20,["H6160"]],[20,22,["H4136"]],[22,24,["H5489"]],[24,26,["H996"]],[26,27,["H6290"]],[27,29,["H8603"]],[29,31,["H3837"]],[31,33,["H2698"]],[33,35,["H1774"]]]},{"k":4894,"v":[[0,3,["H259","H6240"]],[3,4,["H3117"]],[4,7,["H4480","H2722"]],[7,10,["H1870"]],[10,12,["H2022"]],[12,13,["H8165"]],[13,14,["H5704"]],[14,15,["H6947"]]]},{"k":4895,"v":[[0,5,["H1961"]],[5,8,["H705"]],[8,9,["H8141"]],[9,12,["H6249","H6240"]],[12,13,["H2320"]],[13,16,["H259"]],[16,20,["H2320"]],[20,22,["H4872"]],[22,23,["H1696"]],[23,24,["H413"]],[24,26,["H1121"]],[26,28,["H3478"]],[28,31,["H3605"]],[31,32,["H834"]],[32,34,["H3068"]],[34,39,["H6680","(H853)"]],[39,40,["H413"]],[40,41,[]]]},{"k":4896,"v":[[0,1,["H310"]],[1,4,["H5221","(H853)"]],[4,5,["H5511"]],[5,7,["H4428"]],[7,10,["H567"]],[10,11,["H834"]],[11,12,["H3427"]],[12,14,["H2809"]],[14,16,["H5747"]],[16,18,["H4428"]],[18,20,["H1316"]],[20,21,["H834"]],[21,22,["H3427"]],[22,24,["H6252"]],[24,26,["H154"]]]},{"k":4897,"v":[[0,3,["H5676"]],[3,4,["H3383"]],[4,7,["H776"]],[7,9,["H4124"]],[9,10,["H2974"]],[10,11,["H4872"]],[11,13,["H874","(H853)"]],[13,14,["H2063"]],[14,15,["H8451"]],[15,16,["H559"]]]},{"k":4898,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,5,["H1696"]],[5,6,["H413"]],[6,9,["H2722"]],[9,10,["H559"]],[10,13,["H3427"]],[13,15,["H7227"]],[15,17,["H2088"]],[17,18,["H2022"]]]},{"k":4899,"v":[[0,1,["H6437"]],[1,6,["H5265"]],[6,8,["H935"]],[8,11,["H2022"]],[11,14,["H567"]],[14,16,["H413"]],[16,17,["H3605"]],[17,20,["H7934"]],[20,24,["H6160"]],[24,27,["H2022"]],[27,31,["H8219"]],[31,35,["H5045"]],[35,39,["H3220"]],[39,40,["H2348"]],[40,43,["H776"]],[43,46,["H3669"]],[46,49,["H3844"]],[49,50,["H5704"]],[50,52,["H1419"]],[52,53,["H5104"]],[53,55,["H5104"]],[55,56,["H6578"]]]},{"k":4900,"v":[[0,1,["H7200"]],[1,4,["H5414","(H853)"]],[4,6,["H776"]],[6,7,["H6440"]],[7,10,["H935"]],[10,12,["H3423","(H853)"]],[12,14,["H776"]],[14,15,["H834"]],[15,17,["H3068"]],[17,18,["H7650"]],[18,21,["H1"]],[21,22,["H85"]],[22,23,["H3327"]],[23,25,["H3290"]],[25,27,["H5414"]],[27,33,["H2233"]],[33,34,["H310"]],[34,35,[]]]},{"k":4901,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H1931"]],[7,8,["H6256"]],[8,9,["H559"]],[9,13,["H3201","H3808"]],[13,15,["H5375"]],[15,18,["H905"]]]},{"k":4902,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,6,["H7235"]],[6,9,["H2009"]],[9,13,["H3117"]],[13,16,["H3556"]],[16,18,["H8064"]],[18,20,["H7230"]]]},{"k":4903,"v":[[0,2,["H3068"]],[2,3,["H430"]],[3,6,["H1"]],[6,10,["H505"]],[10,11,["H6471"]],[11,14,["H3254"]],[14,19,["H1288"]],[19,21,["H834"]],[21,24,["H1696"]],[24,25,[]]]},{"k":4904,"v":[[0,1,["H349"]],[1,5,["H905"]],[5,6,["H5375"]],[6,8,["H2960"]],[8,11,["H4853"]],[11,14,["H7379"]]]},{"k":4905,"v":[[0,1,["H3051"]],[1,3,["H2450"]],[3,4,["H376"]],[4,6,["H995"]],[6,8,["H3045"]],[8,11,["H7626"]],[11,15,["H7760"]],[15,17,["H7218"]],[17,19,[]]]},{"k":4906,"v":[[0,3,["H6030"]],[3,6,["H559"]],[6,8,["H1697"]],[8,9,["H834"]],[9,12,["H1696"]],[12,14,["H2896"]],[14,18,["H6213"]]]},{"k":4907,"v":[[0,3,["H3947","(H853)"]],[3,5,["H7218"]],[5,8,["H7626"]],[8,9,["H2450"]],[9,10,["H376"]],[10,12,["H3045"]],[12,14,["H5414"]],[14,16,["H7218"]],[16,17,["H5921"]],[17,19,["H8269"]],[19,21,["H505"]],[21,23,["H8269"]],[23,25,["H3967"]],[25,27,["H8269"]],[27,29,["H2572"]],[29,31,["H8269"]],[31,33,["H6235"]],[33,35,["H7860"]],[35,38,["H7626"]]]},{"k":4908,"v":[[0,3,["H6680","(H853)"]],[3,5,["H8199"]],[5,7,["H1931"]],[7,8,["H6256"]],[8,9,["H559"]],[9,10,["H8085"]],[10,13,["H996"]],[13,15,["H251"]],[15,17,["H8199"]],[17,18,["H6664"]],[18,19,["H996"]],[19,21,["H376"]],[21,24,["H251"]],[24,27,["H1616"]],[27,31,[]]]},{"k":4909,"v":[[0,3,["H3808"]],[3,4,["H5234"]],[4,5,["H6440"]],[5,7,["H4941"]],[7,11,["H8085"]],[11,13,["H6996"]],[13,18,["H1419"]],[18,21,["H3808"]],[21,23,["H1481"]],[23,26,["H4480","H6440"]],[26,28,["H376"]],[28,29,["H3588"]],[29,31,["H4941"]],[31,33,["H430"]],[33,36,["H1697"]],[36,37,["H834"]],[37,40,["H7185"]],[40,41,["H4480"]],[41,43,["H7126"]],[43,45,["H413"]],[45,50,["H8085"]],[50,51,[]]]},{"k":4910,"v":[[0,3,["H6680"]],[3,6,["H1931"]],[6,7,["H6256","(H853)"]],[7,8,["H3605"]],[8,10,["H1697"]],[10,11,["H834"]],[11,14,["H6213"]]]},{"k":4911,"v":[[0,4,["H5265"]],[4,6,["H4480","H2722"]],[6,9,["H1980","(H853)"]],[9,10,["H3605"]],[10,11,["H1931"]],[11,12,["H1419"]],[12,14,["H3372"]],[14,15,["H4057"]],[15,16,["H834"]],[16,18,["H7200"]],[18,21,["H1870"]],[21,24,["H2022"]],[24,27,["H567"]],[27,28,["H834"]],[28,30,["H3068"]],[30,32,["H430"]],[32,33,["H6680"]],[33,37,["H935"]],[37,38,["H5704"]],[38,39,["H6947"]]]},{"k":4912,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,8,["H935"]],[8,9,["H5704"]],[9,11,["H2022"]],[11,14,["H567"]],[14,15,["H834"]],[15,17,["H3068"]],[17,19,["H430"]],[19,21,["H5414"]],[21,23,[]]]},{"k":4913,"v":[[0,1,["H7200"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H5414","(H853)"]],[7,9,["H776"]],[9,10,["H6440"]],[10,13,["H5927"]],[13,15,["H3423"]],[15,17,["H834"]],[17,19,["H3068"]],[19,20,["H430"]],[20,23,["H1"]],[23,25,["H1696"]],[25,28,["H3372"]],[28,29,["H408"]],[29,30,["H408"]],[30,32,["H2865"]]]},{"k":4914,"v":[[0,4,["H7126"]],[4,5,["H413"]],[5,8,["H3605"]],[8,12,["H559"]],[12,15,["H7971"]],[15,16,["H376"]],[16,17,["H6440"]],[17,24,["H2658","(H853)"]],[24,26,["H776"]],[26,28,["H7725"]],[28,30,["H1697"]],[30,31,["(H853)"]],[31,33,["H834"]],[33,34,["H1870"]],[34,38,["H5927"]],[38,39,["(H853)"]],[39,40,["H413"]],[40,41,["H834"]],[41,42,["H5892"]],[42,45,["H935"]]]},{"k":4915,"v":[[0,3,["H1697"]],[3,6,["H3190","H5869"]],[6,9,["H3947"]],[9,10,["H8147","H6240"]],[10,11,["H376"]],[11,12,["H4480"]],[12,14,["H259"]],[14,17,["H7626"]]]},{"k":4916,"v":[[0,3,["H6437"]],[3,6,["H5927"]],[6,9,["H2022"]],[9,11,["H935"]],[11,12,["H5704"]],[12,14,["H5158"]],[14,16,["H812"]],[16,20,["H7270","(H853)"]]]},{"k":4917,"v":[[0,3,["H3947"]],[3,6,["H4480","H6529"]],[6,9,["H776"]],[9,12,["H3027"]],[12,16,["H3381"]],[16,17,["H413"]],[17,20,["H7725"]],[20,22,["H1697"]],[22,25,["H559"]],[25,29,["H2896"]],[29,30,["H776"]],[30,31,["H834"]],[31,33,["H3068"]],[33,35,["H430"]],[35,37,["H5414"]],[37,38,[]]]},{"k":4918,"v":[[0,3,["H14"]],[3,4,["H3808"]],[4,6,["H5927"]],[6,9,["H4784","(H853)"]],[9,11,["H6310"]],[11,14,["H3068"]],[14,16,["H430"]]]},{"k":4919,"v":[[0,3,["H7279"]],[3,6,["H168"]],[6,8,["H559"]],[8,11,["H3068"]],[11,12,["H8135"]],[12,18,["H3318"]],[18,22,["H4480","H776"]],[22,24,["H4714"]],[24,26,["H5414"]],[26,30,["H3027"]],[30,33,["H567"]],[33,35,["H8045"]],[35,36,[]]]},{"k":4920,"v":[[0,1,["H575"]],[1,3,["H587"]],[3,5,["H5927"]],[5,7,["H251"]],[7,9,["H4549","(H853)"]],[9,11,["H3824"]],[11,12,["H559"]],[12,14,["H5971"]],[14,16,["H1419"]],[16,18,["H7311"]],[18,19,["H4480"]],[19,22,["H5892"]],[22,24,["H1419"]],[24,26,["H1219"]],[26,29,["H8064"]],[29,31,["H1571"]],[31,34,["H7200"]],[34,36,["H1121"]],[36,39,["H6062"]],[39,40,["H8033"]]]},{"k":4921,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H6206"]],[6,7,["H3808"]],[7,8,["H3808"]],[8,10,["H3372"]],[10,11,["H4480"]],[11,12,[]]]},{"k":4922,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,6,["H1980"]],[6,7,["H6440"]],[7,9,["H1931"]],[9,11,["H3898"]],[11,16,["H3605"]],[16,17,["H834"]],[17,19,["H6213"]],[19,20,["H854"]],[20,23,["H4714"]],[23,26,["H5869"]]]},{"k":4923,"v":[[0,4,["H4057"]],[4,5,["H834"]],[5,8,["H7200"]],[8,10,["H834"]],[10,12,["H3068"]],[12,14,["H430"]],[14,15,["H5375"]],[15,17,["H834"]],[17,19,["H376"]],[19,21,["H5375","(H853)"]],[21,23,["H1121"]],[23,25,["H3605"]],[25,27,["H1870"]],[27,28,["H834"]],[28,30,["H1980"]],[30,31,["H5704"]],[31,33,["H935"]],[33,34,["H5704"]],[34,35,["H2088"]],[35,36,["H4725"]]]},{"k":4924,"v":[[0,3,["H2088"]],[3,4,["H1697"]],[4,7,["H369"]],[7,8,["H539"]],[8,10,["H3068"]],[10,12,["H430"]]]},{"k":4925,"v":[[0,2,["H1980"]],[2,5,["H1870"]],[5,6,["H6440"]],[6,11,["H8446"]],[11,13,["H4725"]],[13,17,["H2583"]],[17,20,["H784"]],[20,22,["H3915"]],[22,24,["H7200"]],[24,27,["H834"]],[27,28,["H1870"]],[28,31,["H1980"]],[31,35,["H6051"]],[35,37,["H3119"]]]},{"k":4926,"v":[[0,3,["H3068"]],[3,4,["H8085","(H853)"]],[4,6,["H6963"]],[6,9,["H1697"]],[9,12,["H7107"]],[12,14,["H7650"]],[14,15,["H559"]]]},{"k":4927,"v":[[0,1,["H518"]],[1,5,["H376"]],[5,7,["H428"]],[7,8,["H376"]],[8,10,["H2088"]],[10,11,["H7451"]],[11,12,["H1755"]],[12,13,["H7200","(H853)"]],[13,15,["H2896"]],[15,16,["H776"]],[16,17,["H834"]],[17,19,["H7650"]],[19,21,["H5414"]],[21,24,["H1"]]]},{"k":4928,"v":[[0,1,["H2108"]],[1,2,["H3612"]],[2,4,["H1121"]],[4,6,["H3312"]],[6,7,["H1931"]],[7,9,["H7200"]],[9,16,["H5414","(H853)"]],[16,18,["H776"]],[18,19,["H834"]],[19,22,["H1869"]],[22,27,["H1121"]],[27,28,["H3282","H834"]],[28,31,["H4390"]],[31,32,["H310"]],[32,34,["H3068"]]]},{"k":4929,"v":[[0,1,["H1571"]],[1,3,["H3068"]],[3,5,["H599"]],[5,10,["H1558"]],[10,11,["H559"]],[11,12,["H859"]],[12,13,["H1571"]],[13,15,["H3808"]],[15,17,["H935"]],[17,18,["H8033"]]]},{"k":4930,"v":[[0,2,["H3091"]],[2,4,["H1121"]],[4,6,["H5126"]],[6,8,["H5975"]],[8,9,["H6440"]],[9,11,["H1931"]],[11,14,["H935"]],[14,15,["H8033"]],[15,16,["H2388"]],[16,18,["H3588"]],[18,19,["H1931"]],[19,21,["(H853)"]],[21,22,["H3478"]],[22,24,["H5157"]],[24,25,[]]]},{"k":4931,"v":[[0,4,["H2945"]],[4,5,["H834"]],[5,7,["H559"]],[7,9,["H1961"]],[9,11,["H957"]],[11,14,["H1121"]],[14,15,["H834"]],[15,18,["H3117"]],[18,21,["H3045","H3808"]],[21,23,["H2896"]],[23,25,["H7451"]],[25,26,["H1992"]],[26,29,["H935"]],[29,30,["H8033"]],[30,36,["H5414"]],[36,39,["H1992"]],[39,41,["H3423"]],[41,42,[]]]},{"k":4932,"v":[[0,4,["H859"]],[4,5,["H6437"]],[5,10,["H5265"]],[10,13,["H4057"]],[13,16,["H1870"]],[16,19,["H5488"]],[19,20,["H3220"]]]},{"k":4933,"v":[[0,3,["H6030"]],[3,5,["H559"]],[5,6,["H413"]],[6,10,["H2398"]],[10,13,["H3068"]],[13,14,["H587"]],[14,17,["H5927"]],[17,19,["H3898"]],[19,22,["H3605"]],[22,23,["H834"]],[23,25,["H3068"]],[25,27,["H430"]],[27,28,["H6680"]],[28,35,["H2296"]],[35,37,["H376","(H853)"]],[37,39,["H3627"]],[39,41,["H4421"]],[41,44,["H1951"]],[44,47,["H5927"]],[47,50,["H2022"]]]},{"k":4934,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H559"]],[7,12,["H5927","H3808"]],[12,13,["H3808"]],[13,14,["H3898"]],[14,15,["H3588"]],[15,18,["H369"]],[18,19,["H7130"]],[19,21,["H3808"]],[21,24,["H5062"]],[24,25,["H6440"]],[25,27,["H341"]]]},{"k":4935,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,9,["H3808"]],[9,10,["H8085"]],[10,13,["H4784","(H853)"]],[13,15,["H6310"]],[15,18,["H3068"]],[18,22,["H5927","H2102"]],[22,25,["H2022"]]]},{"k":4936,"v":[[0,3,["H567"]],[3,5,["H3427"]],[5,7,["H1931"]],[7,8,["H2022"]],[8,10,["H3318"]],[10,11,["H7125"]],[11,14,["H7291"]],[14,16,["H834"]],[16,17,["H1682"]],[17,18,["H6213"]],[18,20,["H3807"]],[20,23,["H8165"]],[23,25,["H5704"]],[25,26,["H2767"]]]},{"k":4937,"v":[[0,3,["H7725"]],[3,5,["H1058"]],[5,6,["H6440"]],[6,8,["H3068"]],[8,11,["H3068"]],[11,13,["H3808"]],[13,14,["H8085"]],[14,17,["H6963"]],[17,18,["H3808"]],[18,20,["H238"]],[20,21,["H413"]],[21,22,[]]]},{"k":4938,"v":[[0,3,["H3427"]],[3,5,["H6946"]],[5,6,["H7227"]],[6,7,["H3117"]],[7,11,["H3117"]],[11,12,["H834"]],[12,14,["H3427"]],[14,15,[]]]},{"k":4939,"v":[[0,3,["H6437"]],[3,7,["H5265"]],[7,10,["H4057"]],[10,13,["H1870"]],[13,16,["H5488"]],[16,17,["H3220"]],[17,18,["H834"]],[18,20,["H3068"]],[20,21,["H1696"]],[21,22,["H413"]],[22,26,["H5437","(H853)"]],[26,27,["H2022"]],[27,28,["H8165"]],[28,29,["H7227"]],[29,30,["H3117"]]]},{"k":4940,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H559"]]]},{"k":4941,"v":[[0,3,["H5437","(H853)"]],[3,4,["H2088"]],[4,5,["H2022"]],[5,7,["H7227"]],[7,8,["H6437"]],[8,10,["H6828"]]]},{"k":4942,"v":[[0,2,["H6680"]],[2,5,["H5971"]],[5,6,["H559"]],[6,7,["H859"]],[7,11,["H5674"]],[11,13,["H1366"]],[13,16,["H251"]],[16,18,["H1121"]],[18,20,["H6215"]],[20,22,["H3427"]],[22,24,["H8165"]],[24,29,["H3372"]],[29,30,["H4480"]],[30,38,["H8104","H3966"]]]},{"k":4943,"v":[[0,1,["H1624"]],[1,2,["H408"]],[2,5,["H3588"]],[5,8,["H3808"]],[8,9,["H5414"]],[9,13,["H4480","H776"]],[13,17,["H5704"]],[17,21,["H4096","H3709","H7272"]],[21,22,["H3588"]],[22,25,["H5414","(H853)"]],[25,26,["H2022"]],[26,27,["H8165"]],[27,29,["H6215"]],[29,32,["H3425"]]]},{"k":4944,"v":[[0,3,["H7666"]],[3,4,["H400"]],[4,5,["H4480","H854"]],[5,8,["H3701"]],[8,12,["H398"]],[12,16,["H1571"]],[16,17,["H3739"]],[17,18,["H4325"]],[18,19,["H4480","H854"]],[19,22,["H3701"]],[22,26,["H8354"]]]},{"k":4945,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H1288"]],[7,10,["H3605"]],[10,12,["H4639"]],[12,15,["H3027"]],[15,17,["H3045"]],[17,20,["H1980","(H853)"]],[20,21,["H2088"]],[21,22,["H1419"]],[22,23,["H4057"]],[23,24,["H2088"]],[24,25,["H705"]],[25,26,["H8141"]],[26,28,["H3068"]],[28,30,["H430"]],[30,33,["H5973"]],[33,37,["H2637"]],[37,38,["H3808","H1697"]]]},{"k":4946,"v":[[0,5,["H5674"]],[5,6,["H4480","H854"]],[6,8,["H251"]],[8,10,["H1121"]],[10,12,["H6215"]],[12,14,["H3427"]],[14,16,["H8165"]],[16,19,["H4480","H1870"]],[19,22,["H6160"]],[22,24,["H4480","H359"]],[24,27,["H4480","H6100"]],[27,29,["H6437"]],[29,31,["H5674"]],[31,34,["H1870"]],[34,37,["H4057"]],[37,39,["H4124"]]]},{"k":4947,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H6696"]],[7,8,["H408","(H853)"]],[8,10,["H4124"]],[10,11,["H408"]],[11,12,["H1624"]],[12,16,["H4421"]],[16,17,["H3588"]],[17,20,["H3808"]],[20,21,["H5414"]],[21,25,["H4480","H776"]],[25,28,["H3425"]],[28,29,["H3588"]],[29,32,["H5414","(H853)"]],[32,33,["H6144"]],[33,36,["H1121"]],[36,38,["H3876"]],[38,41,["H3425"]]]},{"k":4948,"v":[[0,2,["H368"]],[2,3,["H3427"]],[3,7,["H6440"]],[7,9,["H5971"]],[9,10,["H1419"]],[10,12,["H7227"]],[12,14,["H7311"]],[14,17,["H6062"]]]},{"k":4949,"v":[[0,1,["H1992"]],[1,2,["H637"]],[2,4,["H2803"]],[4,5,["H7497"]],[5,8,["H6062"]],[8,11,["H4125"]],[11,12,["H7121"]],[12,14,["H368"]]]},{"k":4950,"v":[[0,2,["H2752"]],[2,4,["H3427"]],[4,6,["H8165"]],[6,7,["H6440"]],[7,10,["H1121"]],[10,12,["H6215"]],[12,13,["H3423"]],[13,18,["H8045"]],[18,21,["H4480","H6440"]],[21,24,["H3427"]],[24,27,["H8478"]],[27,28,["H834"]],[28,29,["H3478"]],[29,30,["H6213"]],[30,33,["H776"]],[33,36,["H3425"]],[36,37,["H834"]],[37,39,["H3068"]],[39,40,["H5414"]],[40,42,[]]]},{"k":4951,"v":[[0,1,["H6258"]],[1,3,["H6965"]],[3,9,["H5674","(H853)"]],[9,11,["H5158"]],[11,12,["H2218"]],[12,16,["H5674","(H853)"]],[16,18,["H5158"]],[18,19,["H2218"]]]},{"k":4952,"v":[[0,3,["H3117"]],[3,5,["H834"]],[5,7,["H1980"]],[7,9,["H4480","H6947"]],[9,10,["H5704","H834"]],[10,14,["H5674","(H853)"]],[14,16,["H5158"]],[16,17,["H2218"]],[17,19,["H7970"]],[19,21,["H8083"]],[21,22,["H8141"]],[22,23,["H5704"]],[23,24,["H3605"]],[24,26,["H1755"]],[26,29,["H376"]],[29,31,["H4421"]],[31,33,["H8552"]],[33,36,["H4480","H7130"]],[36,38,["H4264"]],[38,39,["H834"]],[39,41,["H3068"]],[41,42,["H7650"]],[42,44,[]]]},{"k":4953,"v":[[0,2,["H1571"]],[2,4,["H3027"]],[4,7,["H3068"]],[7,8,["H1961"]],[8,12,["H2000"]],[12,15,["H4480","H7130"]],[15,17,["H4264"]],[17,18,["H5704"]],[18,21,["H8552"]]]},{"k":4954,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H3605"]],[7,9,["H376"]],[9,11,["H4421"]],[11,13,["H8552"]],[13,15,["H4191"]],[15,17,["H4480","H7130"]],[17,19,["H5971"]]]},{"k":4955,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,7,["H559"]]]},{"k":4956,"v":[[0,1,["H859"]],[1,5,["H5674"]],[5,6,["(H853)"]],[6,7,["H6144","(H853)"]],[7,9,["H1366"]],[9,11,["H4124"]],[11,13,["H3117"]]]},{"k":4957,"v":[[0,5,["H7126"]],[5,7,["H4136"]],[7,9,["H1121"]],[9,11,["H5983"]],[11,12,["H6696"]],[12,14,["H408"]],[14,15,["H408"]],[15,16,["H1624"]],[16,19,["H3588"]],[19,22,["H3808"]],[22,23,["H5414"]],[23,27,["H4480","H776"]],[27,30,["H1121"]],[30,32,["H5983"]],[32,34,["H3425"]],[34,35,["H3588"]],[35,38,["H5414"]],[38,42,["H1121"]],[42,44,["H3876"]],[44,47,["H3425"]]]},{"k":4958,"v":[[0,1,["H1931"]],[1,2,["H637"]],[2,4,["H2803"]],[4,6,["H776"]],[6,8,["H7497"]],[8,9,["H7497"]],[9,10,["H3427"]],[10,14,["H6440"]],[14,17,["H5984"]],[17,18,["H7121"]],[18,20,["H2157"]]]},{"k":4959,"v":[[0,2,["H5971"]],[2,3,["H1419"]],[3,5,["H7227"]],[5,7,["H7311"]],[7,10,["H6062"]],[10,13,["H3068"]],[13,14,["H8045"]],[14,16,["H4480","H6440"]],[16,20,["H3423"]],[20,23,["H3427"]],[23,26,["H8478"]]]},{"k":4960,"v":[[0,1,["H834"]],[1,3,["H6213"]],[3,6,["H1121"]],[6,8,["H6215"]],[8,10,["H3427"]],[10,12,["H8165"]],[12,13,["H834"]],[13,15,["H8045","(H853)"]],[15,17,["H2752"]],[17,19,["H4480","H6440"]],[19,23,["H3423"]],[23,26,["H3427"]],[26,29,["H8478"]],[29,31,["H5704"]],[31,32,["H2088"]],[32,33,["H3117"]]]},{"k":4961,"v":[[0,3,["H5757"]],[3,5,["H3427"]],[5,7,["H2699"]],[7,9,["H5704"]],[9,10,["H5804"]],[10,12,["H3732"]],[12,15,["H3318"]],[15,18,["H4480","H3731"]],[18,19,["H8045"]],[19,22,["H3427"]],[22,25,["H8478"]]]},{"k":4962,"v":[[0,3,["H6965"]],[3,6,["H5265"]],[6,9,["H5674","(H853)"]],[9,11,["H5158"]],[11,12,["H769"]],[12,13,["H7200"]],[13,16,["H5414"]],[16,19,["H3027","(H853)"]],[19,20,["H5511"]],[20,22,["H567"]],[22,23,["H4428"]],[23,25,["H2809"]],[25,28,["H776"]],[28,29,["H2490"]],[29,31,["H3423"]],[31,34,["H1624"]],[34,38,["H4421"]]]},{"k":4963,"v":[[0,1,["H2088"]],[1,2,["H3117"]],[2,5,["H2490"]],[5,7,["H5414"]],[7,9,["H6343"]],[9,14,["H3374"]],[14,17,["H5921"]],[17,19,["H5971"]],[19,22,["H8478"]],[22,24,["H3605"]],[24,25,["H8064"]],[25,26,["H834"]],[26,28,["H8085"]],[28,29,["H8088"]],[29,34,["H7264"]],[34,38,["H2342"]],[38,39,["H4480","H6440"]],[39,41,[]]]},{"k":4964,"v":[[0,3,["H7971"]],[3,4,["H4397"]],[4,8,["H4480","H4057"]],[8,10,["H6932"]],[10,11,["H413"]],[11,12,["H5511"]],[12,13,["H4428"]],[13,15,["H2809"]],[15,17,["H1697"]],[17,19,["H7965"]],[19,20,["H559"]]]},{"k":4965,"v":[[0,3,["H5674"]],[3,6,["H776"]],[6,9,["H1980"]],[9,14,["H1870","H1870"]],[14,17,["H3808"]],[17,18,["H5493"]],[18,22,["H3225"]],[22,26,["H8040"]]]},{"k":4966,"v":[[0,3,["H7666"]],[3,5,["H400"]],[5,7,["H3701"]],[7,11,["H398"]],[11,13,["H5414"]],[13,15,["H4325"]],[15,17,["H3701"]],[17,21,["H8354"]],[21,22,["H7535"]],[22,26,["H5674"]],[26,29,["H7272"]]]},{"k":4967,"v":[[0,1,["H834"]],[1,3,["H1121"]],[3,5,["H6215"]],[5,7,["H3427"]],[7,9,["H8165"]],[9,12,["H4125"]],[12,14,["H3427"]],[14,16,["H6144"]],[16,17,["H6213"]],[17,20,["H5704","H834"]],[20,24,["H5674","(H853)"]],[24,25,["H3383"]],[25,26,["H413"]],[26,28,["H776"]],[28,29,["H834"]],[29,31,["H3068"]],[31,33,["H430"]],[33,34,["H5414"]],[34,35,[]]]},{"k":4968,"v":[[0,2,["H5511"]],[2,3,["H4428"]],[3,5,["H2809"]],[5,6,["H14"]],[6,7,["H3808"]],[7,10,["H5674"]],[10,13,["H3588"]],[13,15,["H3068"]],[15,17,["H430"]],[17,18,["H7185","(H853)"]],[18,20,["H7307"]],[20,25,["H553","(H853)","H3824"]],[25,26,["H4616"]],[26,29,["H5414"]],[29,33,["H3027"]],[33,36,["H2088"]],[36,37,["H3117"]]]},{"k":4969,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H7200"]],[7,10,["H2490"]],[10,12,["H5414","(H853)"]],[12,13,["H5511"]],[13,16,["H776"]],[16,17,["H6440"]],[17,19,["H2490"]],[19,21,["H3423"]],[21,25,["H3423","(H853)"]],[25,27,["H776"]]]},{"k":4970,"v":[[0,2,["H5511"]],[2,4,["H3318"]],[4,5,["H7125"]],[5,7,["H1931"]],[7,9,["H3605"]],[9,11,["H5971"]],[11,13,["H4421"]],[13,15,["H3096"]]]},{"k":4971,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,6,["H5414"]],[6,8,["H6440"]],[8,12,["H5221","(H853)"]],[12,16,["H1121"]],[16,18,["H3605"]],[18,20,["H5971"]]]},{"k":4972,"v":[[0,3,["H3920","(H853)"]],[3,4,["H3605"]],[4,6,["H5892"]],[6,8,["H1931"]],[8,9,["H6256"]],[9,12,["H2763"]],[12,14,["H4962"]],[14,17,["H802"]],[17,21,["H2945","(H853)"]],[21,23,["H3605"]],[23,24,["H5892"]],[24,26,["H7604"]],[26,27,["H3808"]],[27,29,["H8300"]]]},{"k":4973,"v":[[0,1,["H7535"]],[1,3,["H929"]],[3,8,["H962"]],[8,13,["H7998"]],[13,16,["H5892"]],[16,17,["H834"]],[17,19,["H3920"]]]},{"k":4974,"v":[[0,1,["H4480"]],[1,2,["H6177"]],[2,3,["H834"]],[3,5,["H5921"]],[5,7,["H8193"]],[7,10,["H5158"]],[10,12,["H769"]],[12,16,["H5892"]],[16,17,["H834"]],[17,21,["H5158"]],[21,23,["H5704"]],[23,24,["H1568"]],[24,26,["H1961"]],[26,27,["H3808"]],[27,29,["H7151"]],[29,31,["H7682"]],[31,32,["H4480"]],[32,35,["H3068"]],[35,37,["H430"]],[37,38,["H5414","(H853)"]],[38,39,["H3605"]],[39,40,["H6440"]],[40,41,[]]]},{"k":4975,"v":[[0,1,["H7535"]],[1,2,["H413"]],[2,4,["H776"]],[4,7,["H1121"]],[7,9,["H5983"]],[9,11,["H7126"]],[11,12,["H3808"]],[12,15,["H3605"]],[15,16,["H3027"]],[16,19,["H5158"]],[19,20,["H2999"]],[20,24,["H5892"]],[24,27,["H2022"]],[27,30,["H3605"]],[30,32,["H3068"]],[32,34,["H430"]],[34,35,["H6680"]],[35,36,[]]]},{"k":4976,"v":[[0,3,["H6437"]],[3,6,["H5927"]],[6,8,["H1870"]],[8,10,["H1316"]],[10,12,["H5747"]],[12,14,["H4428"]],[14,16,["H1316"]],[16,18,["H3318"]],[18,19,["H7125"]],[19,21,["H1931"]],[21,23,["H3605"]],[23,25,["H5971"]],[25,27,["H4421"]],[27,29,["H154"]]]},{"k":4977,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H3372"]],[7,9,["H408"]],[9,10,["H3588"]],[10,13,["H5414"]],[13,16,["H3605"]],[16,18,["H5971"]],[18,21,["H776"]],[21,24,["H3027"]],[24,28,["H6213"]],[28,31,["H834"]],[31,33,["H6213"]],[33,35,["H5511"]],[35,36,["H4428"]],[36,39,["H567"]],[39,40,["H834"]],[40,41,["H3427"]],[41,43,["H2809"]]]},{"k":4978,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,6,["H5414"]],[6,9,["H3027","(H853)"]],[9,10,["H5747"]],[10,11,["H1571"]],[11,13,["H4428"]],[13,15,["H1316"]],[15,17,["H3605"]],[17,19,["H5971"]],[19,22,["H5221"]],[22,24,["H5704"]],[24,25,["H1115"]],[25,27,["H7604"]],[27,30,["H8300"]]]},{"k":4979,"v":[[0,3,["H3920","(H853)"]],[3,4,["H3605"]],[4,6,["H5892"]],[6,8,["H1931"]],[8,9,["H6256"]],[9,11,["H1961"]],[11,12,["H3808"]],[12,14,["H7151"]],[14,15,["H834"]],[15,17,["H3947"]],[17,18,["H3808"]],[18,19,["H4480","H854"]],[19,21,["H8346"]],[21,22,["H5892"]],[22,23,["H3605"]],[23,25,["H2256"]],[25,27,["H709"]],[27,29,["H4467"]],[29,31,["H5747"]],[31,33,["H1316"]]]},{"k":4980,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,3,["H5892"]],[3,5,["H1219"]],[5,7,["H1364"]],[7,8,["H2346"]],[8,9,["H1817"]],[9,11,["H1280"]],[11,12,["H905"]],[12,13,["H6521"]],[13,14,["H4480","H5892"]],[14,16,["H3966"]],[16,17,["H7235"]]]},{"k":4981,"v":[[0,4,["H2763"]],[4,6,["H834"]],[6,8,["H6213"]],[8,10,["H5511"]],[10,11,["H4428"]],[11,13,["H2809"]],[13,15,["H2763"]],[15,17,["H4962"]],[17,18,["H802"]],[18,20,["H2945"]],[20,22,["H3605"]],[22,23,["H5892"]]]},{"k":4982,"v":[[0,2,["H3605"]],[2,4,["H929"]],[4,7,["H7998"]],[7,10,["H5892"]],[10,15,["H962"]],[15,17,[]]]},{"k":4983,"v":[[0,3,["H3947"]],[3,5,["H1931"]],[5,6,["H6256"]],[6,10,["H4480","H3027"]],[10,13,["H8147"]],[13,14,["H4428"]],[14,17,["H567","(H853)"]],[17,19,["H776"]],[19,20,["H834"]],[20,24,["H5676"]],[24,25,["H3383"]],[25,28,["H4480","H5158"]],[28,30,["H769"]],[30,31,["H5704"]],[31,32,["H2022"]],[32,33,["H2768"]]]},{"k":4984,"v":[[0,2,["H2768"]],[2,4,["H6722"]],[4,5,["H7121"]],[5,6,["H8303"]],[6,9,["H567"]],[9,10,["H7121"]],[10,12,["H8149"]]]},{"k":4985,"v":[[0,1,["H3605"]],[1,3,["H5892"]],[3,6,["H4334"]],[6,8,["H3605"]],[8,9,["H1568"]],[9,11,["H3605"]],[11,12,["H1316"]],[12,13,["H5704"]],[13,14,["H5548"]],[14,16,["H154"]],[16,17,["H5892"]],[17,20,["H4467"]],[20,22,["H5747"]],[22,24,["H1316"]]]},{"k":4986,"v":[[0,1,["H3588"]],[1,2,["H7535"]],[2,3,["H5747"]],[3,4,["H4428"]],[4,6,["H1316"]],[6,7,["H7604"]],[7,10,["H4480","H3499"]],[10,12,["H7497"]],[12,13,["H2009"]],[13,15,["H6210"]],[15,18,["H6210"]],[18,20,["H1270"]],[20,22,["H1931"]],[22,23,["H3808"]],[23,25,["H7237"]],[25,28,["H1121"]],[28,30,["H5983"]],[30,31,["H8672"]],[31,32,["H520"]],[32,35,["H753"]],[35,38,["H702"]],[38,39,["H520"]],[39,41,["H7341"]],[41,46,["H520"]],[46,49,["H376"]]]},{"k":4987,"v":[[0,2,["H2063"]],[2,3,["H776"]],[3,6,["H3423"]],[6,8,["H1931"]],[8,9,["H6256"]],[9,11,["H4480","H6177"]],[11,12,["H834"]],[12,14,["H5921"]],[14,16,["H5158"]],[16,17,["H769"]],[17,19,["H2677"]],[19,20,["H2022"]],[20,21,["H1568"]],[21,24,["H5892"]],[24,26,["H5414"]],[26,30,["H7206"]],[30,34,["H1425"]]]},{"k":4988,"v":[[0,3,["H3499"]],[3,5,["H1568"]],[5,7,["H3605"]],[7,8,["H1316"]],[8,11,["H4467"]],[11,13,["H5747"]],[13,14,["H5414"]],[14,18,["H2677"]],[18,19,["H7626"]],[19,21,["H4519"]],[21,22,["H3605"]],[22,24,["H2256"]],[24,26,["H709"]],[26,28,["H3605"]],[28,29,["H1316"]],[29,30,["H1931"]],[30,32,["H7121"]],[32,34,["H776"]],[34,36,["H7497"]]]},{"k":4989,"v":[[0,1,["H2971"]],[1,3,["H1121"]],[3,5,["H4519"]],[5,6,["H3947","(H853)"]],[6,7,["H3605"]],[7,9,["H2256"]],[9,11,["H709"]],[11,12,["H5704"]],[12,14,["H1366"]],[14,16,["H1651"]],[16,18,["H4602"]],[18,20,["H7121"]],[20,22,["H5921"]],[22,25,["H8034","(H853)"]],[25,26,["H1316","H2334"]],[26,27,["H5704"]],[27,28,["H2088"]],[28,29,["H3117"]]]},{"k":4990,"v":[[0,3,["H5414","(H853)"]],[3,4,["H1568"]],[4,6,["H4353"]]]},{"k":4991,"v":[[0,4,["H7206"]],[4,8,["H1425"]],[8,10,["H5414"]],[10,11,["H4480"]],[11,12,["H1568"]],[12,14,["H5704"]],[14,16,["H5158"]],[16,17,["H769"]],[17,18,["H8432"]],[18,20,["H5158"]],[20,23,["H1366"]],[23,25,["H5704"]],[25,27,["H5158"]],[27,28,["H2999"]],[28,32,["H1366"]],[32,35,["H1121"]],[35,37,["H5983"]]]},{"k":4992,"v":[[0,2,["H6160"]],[2,5,["H3383"]],[5,8,["H1366"]],[8,11,["H4480","H3672"]],[11,13,["H5704"]],[13,15,["H3220"]],[15,18,["H6160"]],[18,21,["H4417"]],[21,22,["H3220"]],[22,23,["H8478"]],[23,24,["H798","H6449"]],[24,25,["H4217"]]]},{"k":4993,"v":[[0,3,["H6680"]],[3,6,["H1931"]],[6,7,["H6256"]],[7,8,["H559"]],[8,10,["H3068"]],[10,12,["H430"]],[12,14,["H5414"]],[14,15,["(H853)"]],[15,16,["H2063"]],[16,17,["H776"]],[17,19,["H3423"]],[19,24,["H5674"]],[24,25,["H2502"]],[25,26,["H6440"]],[26,28,["H251"]],[28,30,["H1121"]],[30,32,["H3478"]],[32,33,["H3605"]],[33,39,["H1121","H2428"]]]},{"k":4994,"v":[[0,1,["H7535"]],[1,3,["H802"]],[3,7,["H2945"]],[7,10,["H4735"]],[10,13,["H3045"]],[13,14,["H3588"]],[14,17,["H7227"]],[17,18,["H4735"]],[18,20,["H3427"]],[20,23,["H5892"]],[23,24,["H834"]],[24,27,["H5414"]],[27,28,[]]]},{"k":4995,"v":[[0,1,["H5704","H834"]],[1,3,["H3068"]],[3,6,["H5117"]],[6,9,["H251"]],[9,17,["H1992"]],[17,18,["H1571"]],[18,19,["H3423","(H853)"]],[19,21,["H776"]],[21,22,["H834"]],[22,24,["H3068"]],[24,26,["H430"]],[26,28,["H5414"]],[28,30,["H5676"]],[30,31,["H3383"]],[31,36,["H7725"]],[36,38,["H376"]],[38,41,["H3425"]],[41,42,["H834"]],[42,45,["H5414"]],[45,46,[]]]},{"k":4996,"v":[[0,3,["H6680"]],[3,4,["H3091"]],[4,6,["H1931"]],[6,7,["H6256"]],[7,8,["H559"]],[8,10,["H5869"]],[10,12,["H7200","(H853)"]],[12,13,["H3605"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H430"]],[18,20,["H6213"]],[20,22,["H428"]],[22,23,["H8147"]],[23,24,["H4428"]],[24,25,["H3651"]],[25,28,["H3068"]],[28,29,["H6213"]],[29,31,["H3605"]],[31,33,["H4467"]],[33,34,["H834","H8033"]],[34,35,["H859"]],[35,36,["H5674"]]]},{"k":4997,"v":[[0,3,["H3808"]],[3,4,["H3372"]],[4,6,["H3588"]],[6,8,["H3068"]],[8,10,["H430"]],[10,11,["H1931"]],[11,13,["H3898"]],[13,15,[]]]},{"k":4998,"v":[[0,3,["H2603","H413"]],[3,5,["H3068"]],[5,7,["H1931"]],[7,8,["H6256"]],[8,9,["H559"]]]},{"k":4999,"v":[[0,2,["H136"]],[2,3,["H3069"]],[3,4,["H859"]],[4,6,["H2490"]],[6,8,["H7200","(H853)"]],[8,10,["H5650","(H853)"]],[10,12,["H1433"]],[12,15,["H2389"]],[15,16,["H3027"]],[16,17,["H834"]],[17,18,["H4310"]],[18,19,["H410"]],[19,23,["H8064"]],[23,26,["H776"]],[26,27,["H834"]],[27,29,["H6213"]],[29,33,["H4639"]],[33,38,["H1369"]]]},{"k":5000,"v":[[0,3,["H4994"]],[3,7,["H5674"]],[7,9,["H7200","(H853)"]],[9,11,["H2896"]],[11,12,["H776"]],[12,13,["H834"]],[13,15,["H5676"]],[15,16,["H3383"]],[16,17,["H2088"]],[17,18,["H2896"]],[18,19,["H2022"]],[19,21,["H3844"]]]},{"k":5001,"v":[[0,3,["H3068"]],[3,5,["H5674"]],[5,10,["H4616"]],[10,13,["H3808"]],[13,14,["H8085","H413"]],[14,18,["H3068"]],[18,19,["H559"]],[19,20,["H413"]],[20,24,["H7227"]],[24,26,["H1696"]],[26,27,["H408"]],[27,28,["H3254","H5750"]],[28,29,["H413"]],[29,32,["H2088"]],[32,33,["H1697"]]]},{"k":5002,"v":[[0,3,["H5927"]],[3,6,["H7218"]],[6,8,["H6449"]],[8,11,["H5375"]],[11,13,["H5869"]],[13,14,["H3220"]],[14,16,["H6828"]],[16,18,["H8486"]],[18,20,["H4217"]],[20,22,["H7200"]],[22,26,["H5869"]],[26,27,["H3588"]],[27,30,["H3808"]],[30,32,["H5674","(H853)"]],[32,33,["H2088"]],[33,34,["H3383"]]]},{"k":5003,"v":[[0,2,["H6680","(H853)"]],[2,3,["H3091"]],[3,5,["H2388"]],[5,8,["H553"]],[8,10,["H3588"]],[10,11,["H1931"]],[11,14,["H5674"]],[14,15,["H6440"]],[15,16,["H2088"]],[16,17,["H5971"]],[17,19,["H1931"]],[19,24,["H5157","(H853)"]],[24,26,["H776"]],[26,27,["H834"]],[27,30,["H7200"]]]},{"k":5004,"v":[[0,3,["H3427"]],[3,6,["H1516"]],[6,8,["H4136"]],[8,9,["H1047"]]]},{"k":5005,"v":[[0,1,["H6258"]],[1,3,["H8085"]],[3,5,["H3478"]],[5,6,["H413"]],[6,8,["H2706"]],[8,10,["H413"]],[10,12,["H4941"]],[12,13,["H834"]],[13,14,["H595"]],[14,15,["H3925"]],[15,19,["H6213"]],[19,21,["H4616"]],[21,24,["H2421"]],[24,27,["H935"]],[27,29,["H3423","(H853)"]],[29,31,["H776"]],[31,32,["H834"]],[32,34,["H3068"]],[34,35,["H430"]],[35,38,["H1"]],[38,39,["H5414"]],[39,40,[]]]},{"k":5006,"v":[[0,3,["H3808"]],[3,4,["H3254"]],[4,5,["H5921"]],[5,7,["H1697"]],[7,8,["H834"]],[8,9,["H595"]],[9,10,["H6680"]],[10,12,["H3808"]],[12,15,["H1639"]],[15,17,["H4480"]],[17,22,["H8104","(H853)"]],[22,24,["H4687"]],[24,27,["H3068"]],[27,29,["H430"]],[29,30,["H834"]],[30,31,["H595"]],[31,32,["H6680"]],[32,33,[]]]},{"k":5007,"v":[[0,2,["H5869"]],[2,4,["H7200","(H853)"]],[4,5,["H834"]],[5,7,["H3068"]],[7,8,["H6213"]],[8,11,["H1187"]],[11,12,["H3588"]],[12,13,["H3605"]],[13,15,["H376"]],[15,16,["H834"]],[16,17,["H1980","H310"]],[17,18,["H1187"]],[18,20,["H3068"]],[20,22,["H430"]],[22,24,["H8045"]],[24,27,["H4480","H7130"]],[27,28,[]]]},{"k":5008,"v":[[0,2,["H859"]],[2,5,["H1695"]],[5,8,["H3068"]],[8,10,["H430"]],[10,12,["H2416"]],[12,14,["H3605"]],[14,18,["H3117"]]]},{"k":5009,"v":[[0,1,["H7200"]],[1,4,["H3925"]],[4,6,["H2706"]],[6,8,["H4941"]],[8,10,["H834"]],[10,12,["H3068"]],[12,14,["H430"]],[14,15,["H6680"]],[15,20,["H6213"]],[20,21,["H3651"]],[21,22,["H7130"]],[22,24,["H776"]],[24,25,["H834","H8033"]],[25,26,["H859"]],[26,27,["H935"]],[27,29,["H3423"]],[29,30,[]]]},{"k":5010,"v":[[0,1,["H8104"]],[1,4,["H6213"]],[4,6,["H3588"]],[6,7,["H1931"]],[7,10,["H2451"]],[10,13,["H998"]],[13,16,["H5869"]],[16,19,["H5971"]],[19,20,["H834"]],[20,22,["H8085","(H853)"]],[22,23,["H3605"]],[23,24,["H428"]],[24,25,["H2706"]],[25,27,["H559"]],[27,28,["H7535"]],[28,29,["H2088"]],[29,30,["H1419"]],[30,31,["H1471"]],[31,34,["H2450"]],[34,36,["H995"]],[36,37,["H5971"]]]},{"k":5011,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,3,["H1471"]],[3,7,["H1419"]],[7,8,["H834"]],[8,10,["H430"]],[10,12,["H7138"]],[12,13,["H413"]],[13,17,["H3068"]],[17,19,["H430"]],[19,22,["H3605"]],[22,26,["H7121"]],[26,27,["H413"]],[27,29,[]]]},{"k":5012,"v":[[0,2,["H4310"]],[2,3,["H1471"]],[3,7,["H1419"]],[7,8,["H834"]],[8,10,["H2706"]],[10,12,["H4941"]],[12,14,["H6662"]],[14,16,["H3605"]],[16,17,["H2063"]],[17,18,["H8451"]],[18,19,["H834"]],[19,20,["H595"]],[20,21,["H5414"]],[21,22,["H6440"]],[22,25,["H3117"]]]},{"k":5013,"v":[[0,1,["H7535"]],[1,3,["H8104"]],[3,7,["H8104"]],[7,9,["H5315"]],[9,10,["H3966"]],[10,11,["H6435"]],[11,13,["H7911","(H853)"]],[13,15,["H1697"]],[15,16,["H834"]],[16,18,["H5869"]],[18,20,["H7200"]],[20,22,["H6435"]],[22,24,["H5493"]],[24,27,["H4480","H3824"]],[27,28,["H3605"]],[28,30,["H3117"]],[30,33,["H2416"]],[33,35,["H3045"]],[35,38,["H1121"]],[38,41,["H1121"]],[41,42,["H1121"]]]},{"k":5014,"v":[[0,3,["H3117"]],[3,4,["H834"]],[4,6,["H5975"]],[6,7,["H6440"]],[7,9,["H3068"]],[9,11,["H430"]],[11,13,["H2722"]],[13,16,["H3068"]],[16,17,["H559"]],[17,18,["H413"]],[18,24,["H6950","(H853)","H5971"]],[24,30,["H8085","(H853)"]],[30,32,["H1697"]],[32,33,["H834"]],[33,36,["H3925"]],[36,38,["H3372"]],[38,40,["H3605"]],[40,42,["H3117"]],[42,43,["H834"]],[43,44,["H1992"]],[44,46,["H2416"]],[46,47,["H5921"]],[47,49,["H127"]],[49,54,["H3925"]],[54,56,["H1121"]]]},{"k":5015,"v":[[0,4,["H7126"]],[4,6,["H5975"]],[6,7,["H8478"]],[7,9,["H2022"]],[9,12,["H2022"]],[12,13,["H1197"]],[13,15,["H784"]],[15,16,["H5704"]],[16,18,["H3820"]],[18,20,["H8064"]],[20,22,["H2822"]],[22,23,["H6051"]],[23,26,["H6205"]]]},{"k":5016,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,10,["H4480","H8432"]],[10,13,["H784"]],[13,14,["H859"]],[14,15,["H8085"]],[15,17,["H6963"]],[17,20,["H1697"]],[20,22,["H7200"]],[22,23,["H369"]],[23,24,["H8544"]],[24,25,["H2108"]],[25,29,["H6963"]]]},{"k":5017,"v":[[0,3,["H5046"]],[3,5,["(H853)"]],[5,7,["H1285"]],[7,8,["H834"]],[8,10,["H6680"]],[10,13,["H6213"]],[13,15,["H6235"]],[15,16,["H1697"]],[16,19,["H3789"]],[19,21,["H5921"]],[21,22,["H8147"]],[22,23,["H3871"]],[23,25,["H68"]]]},{"k":5018,"v":[[0,3,["H3068"]],[3,4,["H6680"]],[4,7,["H1931"]],[7,8,["H6256"]],[8,10,["H3925"]],[10,12,["H2706"]],[12,14,["H4941"]],[14,18,["H6213"]],[18,22,["H776"]],[22,23,["H834","H8033"]],[23,24,["H859"]],[24,26,["H5674"]],[26,28,["H3423"]],[28,29,[]]]},{"k":5019,"v":[[0,5,["H8104","H3966"]],[5,7,["H5315"]],[7,8,["H3588"]],[8,10,["H7200"]],[10,11,["H3808"]],[11,12,["H3605"]],[12,14,["H8544"]],[14,17,["H3117"]],[17,20,["H3068"]],[20,21,["H1696"]],[21,22,["H413"]],[22,25,["H2722"]],[25,29,["H4480","H8432"]],[29,32,["H784"]]]},{"k":5020,"v":[[0,1,["H6435"]],[1,3,["H7843"]],[3,6,["H6213"]],[6,10,["H6459"]],[10,12,["H8544"]],[12,14,["H3605"]],[14,15,["H5566"]],[15,17,["H8403"]],[17,19,["H2145"]],[19,20,["H176"]],[20,21,["H5347"]]]},{"k":5021,"v":[[0,2,["H8403"]],[2,4,["H3605"]],[4,5,["H929"]],[5,6,["H834"]],[6,10,["H776"]],[10,12,["H8403"]],[12,14,["H3605"]],[14,15,["H3671"]],[15,16,["H6833"]],[16,17,["H834"]],[17,18,["H5774"]],[18,21,["H8064"]]]},{"k":5022,"v":[[0,2,["H8403"]],[2,5,["H3605"]],[5,7,["H7430"]],[7,10,["H127"]],[10,12,["H8403"]],[12,14,["H3605"]],[14,15,["H1710"]],[15,16,["H834"]],[16,20,["H4325"]],[20,21,["H4480","H8478"]],[21,23,["H776"]]]},{"k":5023,"v":[[0,2,["H6435"]],[2,5,["H5375"]],[5,7,["H5869"]],[7,9,["H8064"]],[9,13,["H7200","(H853)"]],[13,15,["H8121"]],[15,18,["H3394"]],[18,21,["H3556"]],[21,23,["H3605"]],[23,25,["H6635"]],[25,27,["H8064"]],[27,30,["H5080"]],[30,32,["H7812"]],[32,35,["H5647"]],[35,37,["H834"]],[37,39,["H3068"]],[39,41,["H430"]],[41,43,["H2505","(H853)"]],[43,45,["H3605"]],[45,46,["H5971"]],[46,47,["H8478"]],[47,49,["H3605"]],[49,50,["H8064"]]]},{"k":5024,"v":[[0,3,["H3068"]],[3,5,["H3947"]],[5,10,["H3318","(H853)"]],[10,14,["H1270"]],[14,15,["H4480","H3564"]],[15,19,["H4480","H4714"]],[19,21,["H1961"]],[21,25,["H5971"]],[25,27,["H5159"]],[27,31,["H2088"]],[31,32,["H3117"]]]},{"k":5025,"v":[[0,3,["H3068"]],[3,5,["H599"]],[5,10,["H5921","H1697"]],[10,12,["H7650"]],[12,16,["H1115"]],[16,18,["H5674","(H853)"]],[18,19,["H3383"]],[19,24,["H1115"]],[24,26,["H935"]],[26,27,["H413"]],[27,29,["H2896"]],[29,30,["H776"]],[30,31,["H834"]],[31,33,["H3068"]],[33,35,["H430"]],[35,36,["H5414"]],[36,40,["H5159"]]]},{"k":5026,"v":[[0,1,["H3588"]],[1,2,["H595"]],[2,4,["H4191"]],[4,6,["H2063"]],[6,7,["H776"]],[7,10,["H369"]],[10,12,["H5674","(H853)"]],[12,13,["H3383"]],[13,15,["H859"]],[15,18,["H5674"]],[18,20,["H3423","(H853)"]],[20,21,["H2063"]],[21,22,["H2896"]],[22,23,["H776"]]]},{"k":5027,"v":[[0,2,["H8104"]],[2,5,["H6435"]],[5,7,["H7911","(H853)"]],[7,9,["H1285"]],[9,12,["H3068"]],[12,14,["H430"]],[14,15,["H834"]],[15,17,["H3772"]],[17,18,["H5973"]],[18,21,["H6213"]],[21,25,["H6459"]],[25,28,["H8544"]],[28,30,["H3605"]],[30,32,["H834"]],[32,34,["H3068"]],[34,36,["H430"]],[36,38,["H6680"]],[38,39,[]]]},{"k":5028,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,8,["H398"]],[8,9,["H784"]],[9,12,["H7067"]],[12,13,["H410"]]]},{"k":5029,"v":[[0,1,["H3588"]],[1,4,["H3205"]],[4,5,["H1121"]],[5,7,["H1121"]],[7,8,["H1121"]],[8,14,["H3462"]],[14,17,["H776"]],[17,20,["H7843"]],[20,23,["H6213"]],[23,26,["H6459"]],[26,29,["H8544"]],[29,31,["H3605"]],[31,35,["H6213"]],[35,36,["H7451"]],[36,39,["H5869"]],[39,42,["H3068"]],[42,44,["H430"]],[44,49,["H3707"]]]},{"k":5030,"v":[[0,2,["H5749","(H853)"]],[2,3,["H8064"]],[3,5,["H776"]],[5,7,["H5749"]],[7,11,["H3117"]],[11,12,["H3588"]],[12,15,["H4118"]],[15,17,["H6","H6"]],[17,19,["H4480","H5921"]],[19,21,["H776"]],[21,22,["H834","H8033"]],[22,23,["H859"]],[23,25,["H5674","(H853)"]],[25,26,["H3383"]],[26,28,["H3423"]],[28,32,["H3808"]],[32,33,["H748"]],[33,35,["H3117"]],[35,36,["H5921"]],[36,38,["H3588"]],[38,42,["H8045","H8045"]]]},{"k":5031,"v":[[0,3,["H3068"]],[3,5,["H6327"]],[5,9,["H5971"]],[9,14,["H7604"]],[14,15,["H4962"]],[15,17,["H4557"]],[17,20,["H1471"]],[20,21,["H834","H8033"]],[21,23,["H3068"]],[23,25,["H5090"]],[25,26,[]]]},{"k":5032,"v":[[0,2,["H8033"]],[2,5,["H5647"]],[5,6,["H430"]],[6,8,["H4639"]],[8,10,["H120"]],[10,11,["H3027"]],[11,12,["H6086"]],[12,14,["H68"]],[14,15,["H834"]],[15,16,["H3808"]],[16,17,["H7200"]],[17,18,["H3808"]],[18,19,["H8085"]],[19,20,["H3808"]],[20,21,["H398"]],[21,22,["H3808"]],[22,23,["H7306"]]]},{"k":5033,"v":[[0,4,["H4480","H8033"]],[4,7,["H1245","(H853)"]],[7,9,["H3068"]],[9,11,["H430"]],[11,14,["H4672"]],[14,16,["H3588"]],[16,18,["H1875"]],[18,21,["H3605"]],[21,23,["H3824"]],[23,26,["H3605"]],[26,28,["H5315"]]]},{"k":5034,"v":[[0,5,["H6862"]],[5,7,["H3605"]],[7,8,["H428"]],[8,9,["H1697"]],[9,11,["H4672"]],[11,17,["H319"]],[17,18,["H3117"]],[18,21,["H7725"]],[21,22,["H5704"]],[22,24,["H3068"]],[24,26,["H430"]],[26,30,["H8085"]],[30,33,["H6963"]]]},{"k":5035,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,8,["H7349"]],[8,9,["H410"]],[9,12,["H3808"]],[12,13,["H7503"]],[13,15,["H3808"]],[15,16,["H7843"]],[16,18,["H3808"]],[18,19,["H7911","(H853)"]],[19,21,["H1285"]],[21,24,["H1"]],[24,25,["H834"]],[25,27,["H7650"]],[27,29,[]]]},{"k":5036,"v":[[0,1,["H3588"]],[1,2,["H7592"]],[2,3,["H4994"]],[3,6,["H3117"]],[6,9,["H7223"]],[9,10,["H834"]],[10,11,["H1961"]],[11,12,["H6440"]],[12,14,["H4480"]],[14,16,["H3117"]],[16,17,["H834"]],[17,18,["H430"]],[18,19,["H1254"]],[19,20,["H120"]],[20,21,["H5921"]],[21,23,["H776"]],[23,29,["H4480","H7097"]],[29,31,["H8064"]],[31,32,["H5704"]],[32,34,["H7097","(H8064)"]],[34,38,["H1961"]],[38,43,["H2088"]],[43,44,["H1419"]],[44,45,["H1697"]],[45,47,["H176"]],[47,50,["H8085"]],[50,52,["H3644"]]]},{"k":5037,"v":[[0,3,["H5971"]],[3,4,["H8085"]],[4,6,["H6963"]],[6,8,["H430"]],[8,9,["H1696"]],[9,13,["H4480","H8432"]],[13,16,["H784"]],[16,17,["H834"]],[17,18,["H859"]],[18,20,["H8085"]],[20,22,["H2421"]]]},{"k":5038,"v":[[0,1,["H176"]],[1,3,["H430"]],[3,4,["H5254"]],[4,6,["H935"]],[6,8,["H3947"]],[8,11,["H1471"]],[11,14,["H4480","H7130"]],[14,17,["H1471"]],[17,19,["H4531"]],[19,21,["H226"]],[21,24,["H4159"]],[24,27,["H4421"]],[27,31,["H2389"]],[31,32,["H3027"]],[32,37,["H5186"]],[37,38,["H2220"]],[38,41,["H1419"]],[41,42,["H4172"]],[42,45,["H3605"]],[45,46,["H834"]],[46,48,["H3068"]],[48,50,["H430"]],[50,51,["H6213"]],[51,55,["H4714"]],[55,58,["H5869"]]]},{"k":5039,"v":[[0,2,["H859"]],[2,5,["H7200"]],[5,9,["H3045"]],[9,10,["H3588"]],[10,12,["H3068"]],[12,13,["H1931"]],[13,15,["H430"]],[15,18,["H369"]],[18,19,["H5750"]],[19,20,["H4480","H905"]],[20,21,[]]]},{"k":5040,"v":[[0,2,["H4480"]],[2,3,["H8064"]],[3,8,["H8085","(H853)"]],[8,10,["H6963"]],[10,14,["H3256"]],[14,17,["H5921"]],[17,18,["H776"]],[18,20,["H7200"]],[20,21,["(H853)"]],[21,23,["H1419"]],[23,24,["H784"]],[24,27,["H8085"]],[27,29,["H1697"]],[29,33,["H4480","H8432"]],[33,36,["H784"]]]},{"k":5041,"v":[[0,2,["H8478","H3588"]],[2,4,["H157","(H853)"]],[4,6,["H1"]],[6,9,["H977"]],[9,11,["H2233"]],[11,12,["H310"]],[12,17,["H3318"]],[17,20,["H6440"]],[20,23,["H1419"]],[23,24,["H3581"]],[24,27,["H4480","H4714"]]]},{"k":5042,"v":[[0,3,["H3423"]],[3,4,["H1471"]],[4,6,["H4480","H6440"]],[6,8,["H1419"]],[8,10,["H6099"]],[10,11,["H4480"]],[11,17,["H935"]],[17,19,["H5414"]],[19,20,["(H853)"]],[20,22,["H776"]],[22,25,["H5159"]],[25,29,["H2088"]],[29,30,["H3117"]]]},{"k":5043,"v":[[0,1,["H3045"]],[1,4,["H3117"]],[4,6,["H7725"]],[6,8,["H413"]],[8,10,["H3824"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,14,["H1931"]],[14,16,["H430"]],[16,18,["H8064"]],[18,19,["H4480","H4605"]],[19,21,["H5921"]],[21,23,["H776"]],[23,24,["H4480","H8478"]],[24,27,["H369"]],[27,28,["H5750"]]]},{"k":5044,"v":[[0,3,["H8104"]],[3,4,["(H853)"]],[4,6,["H2706"]],[6,9,["H4687"]],[9,10,["H834"]],[10,11,["H595"]],[11,12,["H6680"]],[12,15,["H3117"]],[15,16,["H834"]],[16,20,["H3190"]],[20,26,["H1121"]],[26,27,["H310"]],[27,30,["H4616"]],[30,33,["H748"]],[33,35,["H3117"]],[35,36,["H5921"]],[36,38,["H127"]],[38,39,["H834"]],[39,41,["H3068"]],[41,43,["H430"]],[43,44,["H5414"]],[44,47,["H3605","H3117"]]]},{"k":5045,"v":[[0,1,["H227"]],[1,2,["H4872"]],[2,3,["H914"]],[3,4,["H7969"]],[4,5,["H5892"]],[5,8,["H5676"]],[8,9,["H3383"]],[9,12,["H4217","H8121"]]]},{"k":5046,"v":[[0,3,["H7523"]],[3,5,["H5127"]],[5,6,["H8033"]],[6,7,["H834"]],[7,9,["H7523","(H853)"]],[9,11,["H7453"]],[11,12,["H1097","H1847"]],[12,14,["H8130"]],[14,16,["H3808"]],[16,19,["H4480","H8543","H8032"]],[19,22,["H5127"]],[22,23,["H413"]],[23,24,["H259"]],[24,25,["H4480"]],[25,26,["H411"]],[26,27,["H5892"]],[27,30,["H2425"]]]},{"k":5047,"v":[[0,1,["(H853)"]],[1,2,["H1221"]],[2,5,["H4057"]],[5,8,["H4334"]],[8,9,["H776"]],[9,12,["H7206"]],[12,14,["H7216"]],[14,16,["H1568"]],[16,19,["H1425"]],[19,21,["H1474"]],[21,23,["H1316"]],[23,26,["H4520"]]]},{"k":5048,"v":[[0,2,["H2063"]],[2,5,["H8451"]],[5,6,["H834"]],[6,7,["H4872"]],[7,8,["H7760"]],[8,9,["H6440"]],[9,11,["H1121"]],[11,13,["H3478"]]]},{"k":5049,"v":[[0,1,["H428"]],[1,4,["H5713"]],[4,7,["H2706"]],[7,10,["H4941"]],[10,11,["H834"]],[11,12,["H4872"]],[12,13,["H1696"]],[13,14,["H413"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,22,["H3318"]],[22,25,["H4480","H4714"]]]},{"k":5050,"v":[[0,3,["H5676"]],[3,4,["H3383"]],[4,7,["H1516"]],[7,9,["H4136"]],[9,10,["H1047"]],[10,13,["H776"]],[13,15,["H5511"]],[15,16,["H4428"]],[16,19,["H567"]],[19,20,["H834"]],[20,21,["H3427"]],[21,23,["H2809"]],[23,24,["H834"]],[24,25,["H4872"]],[25,28,["H1121"]],[28,30,["H3478"]],[30,31,["H5221"]],[31,36,["H3318"]],[36,39,["H4480","H4714"]]]},{"k":5051,"v":[[0,3,["H3423","(H853)"]],[3,5,["H776"]],[5,8,["H776"]],[8,10,["H5747"]],[10,11,["H4428"]],[11,13,["H1316"]],[13,14,["H8147"]],[14,15,["H4428"]],[15,18,["H567"]],[18,19,["H834"]],[19,23,["H5676"]],[23,24,["H3383"]],[24,27,["H4217","H8121"]]]},{"k":5052,"v":[[0,2,["H4480","H6177"]],[2,3,["H834"]],[3,5,["H5921"]],[5,7,["H8193"]],[7,10,["H5158"]],[10,11,["H769"]],[11,13,["H5704"]],[13,14,["H2022"]],[14,15,["H7865"]],[15,16,["H1931"]],[16,18,["H2768"]]]},{"k":5053,"v":[[0,2,["H3605"]],[2,4,["H6160"]],[4,7,["H5676"]],[7,8,["H3383"]],[8,9,["H4217"]],[9,11,["H5704"]],[11,13,["H3220"]],[13,16,["H6160"]],[16,17,["H8478"]],[17,19,["H794"]],[19,21,["H6449"]]]},{"k":5054,"v":[[0,2,["H4872"]],[2,3,["H7121","H413"]],[3,4,["H3605"]],[4,5,["H3478"]],[5,7,["H559"]],[7,8,["H413"]],[8,10,["H8085"]],[10,12,["H3478","(H853)"]],[12,14,["H2706"]],[14,16,["H4941"]],[16,17,["H834"]],[17,18,["H595"]],[18,19,["H1696"]],[19,22,["H241"]],[22,24,["H3117"]],[24,28,["H3925"]],[28,31,["H8104"]],[31,33,["H6213"]],[33,34,[]]]},{"k":5055,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,5,["H3772"]],[5,7,["H1285"]],[7,8,["H5973"]],[8,11,["H2722"]]]},{"k":5056,"v":[[0,2,["H3068"]],[2,3,["H3772"]],[3,4,["H3808","(H853)"]],[4,5,["H2063"]],[5,6,["H1285"]],[6,7,["H854"]],[7,9,["H1"]],[9,10,["H3588"]],[10,11,["H854"]],[11,14,["H587"]],[14,15,["H428"]],[15,17,["H3605"]],[17,20,["H6311"]],[20,21,["H2416"]],[21,23,["H3117"]]]},{"k":5057,"v":[[0,2,["H3068"]],[2,3,["H1696"]],[3,4,["H5973"]],[4,8,["H6440","H6440"]],[8,11,["H2022"]],[11,15,["H4480","H8432"]],[15,18,["H784"]]]},{"k":5058,"v":[[0,1,["H595"]],[1,2,["H5975"]],[2,3,["H996"]],[3,5,["H3068"]],[5,9,["H1931"]],[9,10,["H6256"]],[10,12,["H5046"]],[12,13,["(H853)"]],[13,15,["H1697"]],[15,18,["H3068"]],[18,19,["H3588"]],[19,22,["H3372"]],[22,25,["H4480","H6440"]],[25,27,["H784"]],[27,31,["H5927","H3808"]],[31,34,["H2022"]],[34,35,["H559"]]]},{"k":5059,"v":[[0,1,["H595"]],[1,4,["H3068"]],[4,6,["H430"]],[6,7,["H834"]],[7,8,["H3318"]],[8,13,["H4480","H776"]],[13,15,["H4714"]],[15,18,["H4480","H1004"]],[18,20,["H5650"]]]},{"k":5060,"v":[[0,3,["H1961"]],[3,4,["H3808"]],[4,5,["H312"]],[5,6,["H430"]],[6,7,["H5921","H6440"]],[7,8,[]]]},{"k":5061,"v":[[0,3,["H3808"]],[3,4,["H6213"]],[4,8,["H6459"]],[8,10,["H3605"]],[10,11,["H8544"]],[11,15,["H834"]],[15,18,["H8064"]],[18,19,["H4480","H4605"]],[19,21,["H834"]],[21,25,["H776"]],[25,26,["H4480","H8478"]],[26,28,["H834"]],[28,32,["H4325"]],[32,33,["H4480","H8478"]],[33,35,["H776"]]]},{"k":5062,"v":[[0,3,["H3808"]],[3,6,["H7812"]],[6,9,["H3808"]],[9,10,["H5647"]],[10,12,["H3588"]],[12,13,["H595"]],[13,15,["H3068"]],[15,17,["H430"]],[17,20,["H7067"]],[20,21,["H410"]],[21,22,["H6485"]],[22,24,["H5771"]],[24,27,["H1"]],[27,28,["H5921"]],[28,30,["H1121"]],[30,31,["H5921"]],[31,33,["H8029"]],[33,35,["H7256"]],[35,40,["H8130"]],[40,41,[]]]},{"k":5063,"v":[[0,2,["H6213"]],[2,3,["H2617"]],[3,5,["H505"]],[5,9,["H157"]],[9,12,["H8104"]],[12,14,["H4687"]]]},{"k":5064,"v":[[0,3,["H3808"]],[3,4,["H5375","(H853)"]],[4,6,["H8034"]],[6,9,["H3068"]],[9,11,["H430"]],[11,13,["H7723"]],[13,14,["H3588"]],[14,16,["H3068"]],[16,18,["H3808"]],[18,21,["H5352","(H853)"]],[21,22,["H834"]],[22,23,["H5375","(H853)"]],[23,25,["H8034"]],[25,27,["H7723"]]]},{"k":5065,"v":[[0,1,["H8104","(H853)"]],[1,3,["H7676"]],[3,4,["H3117"]],[4,6,["H6942"]],[6,8,["H834"]],[8,10,["H3068"]],[10,12,["H430"]],[12,14,["H6680"]],[14,15,[]]]},{"k":5066,"v":[[0,1,["H8337"]],[1,2,["H3117"]],[2,5,["H5647"]],[5,7,["H6213"]],[7,8,["H3605"]],[8,10,["H4399"]]]},{"k":5067,"v":[[0,3,["H7637"]],[3,4,["H3117"]],[4,7,["H7676"]],[7,10,["H3068"]],[10,12,["H430"]],[12,17,["H3808"]],[17,18,["H6213"]],[18,19,["H3605"]],[19,20,["H4399"]],[20,21,["H859"]],[21,24,["H1121"]],[24,27,["H1323"]],[27,30,["H5650"]],[30,33,["H519"]],[33,36,["H7794"]],[36,39,["H2543"]],[39,41,["H3605"]],[41,44,["H929"]],[44,47,["H1616"]],[47,48,["H834"]],[48,52,["H8179"]],[52,53,["H4616"]],[53,55,["H5650"]],[55,58,["H519"]],[58,60,["H5117"]],[60,64,[]]]},{"k":5068,"v":[[0,2,["H2142"]],[2,3,["H3588"]],[3,5,["H1961"]],[5,7,["H5650"]],[7,10,["H776"]],[10,12,["H4714"]],[12,16,["H3068"]],[16,18,["H430"]],[18,21,["H3318"]],[21,22,["H4480","H8033"]],[22,25,["H2389"]],[25,26,["H3027"]],[26,31,["H5186"]],[31,32,["H2220"]],[32,33,["H5921","H3651"]],[33,35,["H3068"]],[35,37,["H430"]],[37,38,["H6680"]],[38,41,["H6213","(H853)"]],[41,43,["H7676"]],[43,44,["H3117"]]]},{"k":5069,"v":[[0,1,["H3513","(H853)"]],[1,3,["H1"]],[3,6,["H517"]],[6,7,["H834"]],[7,9,["H3068"]],[9,11,["H430"]],[11,13,["H6680"]],[13,15,["H4616"]],[15,17,["H3117"]],[17,20,["H748"]],[20,22,["H4616"]],[22,26,["H3190"]],[26,29,["H5921"]],[29,31,["H127"]],[31,32,["H834"]],[32,34,["H3068"]],[34,36,["H430"]],[36,37,["H5414"]],[37,38,[]]]},{"k":5070,"v":[[0,3,["H3808"]],[3,4,["H7523"]]]},{"k":5071,"v":[[0,1,["H3808"]],[1,5,["H5003"]]]},{"k":5072,"v":[[0,1,["H3808"]],[1,4,["H1589"]]]},{"k":5073,"v":[[0,1,["H3808"]],[1,4,["H6030"]],[4,5,["H7723"]],[5,6,["H5707"]],[6,9,["H7453"]]]},{"k":5074,"v":[[0,1,["H3808"]],[1,4,["H2530"]],[4,6,["H7453"]],[6,7,["H802"]],[7,8,["H3808"]],[8,11,["H183"]],[11,13,["H7453"]],[13,14,["H1004"]],[14,16,["H7704"]],[16,19,["H5650"]],[19,22,["H519"]],[22,24,["H7794"]],[24,27,["H2543"]],[27,29,["H3605"]],[29,31,["H834"]],[31,34,["H7453"]]]},{"k":5075,"v":[[0,0,["(H853)"]],[0,1,["H428"]],[1,2,["H1697"]],[2,4,["H3068"]],[4,5,["H1696"]],[5,6,["H413"]],[6,7,["H3605"]],[7,9,["H6951"]],[9,12,["H2022"]],[12,16,["H4480","H8432"]],[16,19,["H784"]],[19,22,["H6051"]],[22,27,["H6205"]],[27,30,["H1419"]],[30,31,["H6963"]],[31,36,["H3254","H3808"]],[36,39,["H3789"]],[39,41,["H5921"]],[41,42,["H8147"]],[42,43,["H3871"]],[43,45,["H68"]],[45,47,["H5414"]],[47,49,["H413"]],[49,50,[]]]},{"k":5076,"v":[[0,5,["H1961"]],[5,8,["H8085","(H853)"]],[8,10,["H6963"]],[10,14,["H4480","H8432"]],[14,17,["H2822"]],[17,20,["H2022"]],[20,22,["H1197"]],[22,24,["H784"]],[24,28,["H7126"]],[28,29,["H413"]],[29,32,["H3605"]],[32,34,["H7218"]],[34,37,["H7626"]],[37,40,["H2205"]]]},{"k":5077,"v":[[0,3,["H559"]],[3,4,["H2005"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H7200"]],[10,11,["(H853)"]],[11,13,["H3519"]],[13,16,["H1433"]],[16,20,["H8085"]],[20,22,["H6963"]],[22,26,["H4480","H8432"]],[26,29,["H784"]],[29,32,["H7200"]],[32,33,["H2088"]],[33,34,["H3117"]],[34,35,["H3588"]],[35,36,["H430"]],[36,38,["H1696"]],[38,39,["H854"]],[39,40,["H120"]],[40,43,["H2425"]]]},{"k":5078,"v":[[0,1,["H6258"]],[1,3,["H4100"]],[3,6,["H4191"]],[6,7,["H3588"]],[7,8,["H2063"]],[8,9,["H1419"]],[9,10,["H784"]],[10,12,["H398"]],[12,14,["H518"]],[14,15,["H587"]],[15,16,["H8085","(H853)"]],[16,18,["H6963"]],[18,21,["H3068"]],[21,23,["H430"]],[23,25,["H3254","H5750"]],[25,29,["H4191"]]]},{"k":5079,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,6,["H3605"]],[6,7,["H1320"]],[7,8,["H834"]],[8,10,["H8085"]],[10,12,["H6963"]],[12,15,["H2416"]],[15,16,["H430"]],[16,17,["H1696"]],[17,21,["H4480","H8432"]],[21,24,["H784"]],[24,26,["H3644"]],[26,29,["H2421"]]]},{"k":5080,"v":[[0,3,["H7126","H859"]],[3,5,["H8085","(H853)"]],[5,6,["H3605"]],[6,7,["H834"]],[7,9,["H3068"]],[9,11,["H430"]],[11,13,["H559"]],[13,15,["H1696"]],[15,16,["H859"]],[16,17,["H413"]],[17,18,["(H853)"]],[18,19,["H3605"]],[19,20,["H834"]],[20,22,["H3068"]],[22,24,["H430"]],[24,26,["H1696"]],[26,27,["H413"]],[27,32,["H8085"]],[32,35,["H6213"]],[35,36,[]]]},{"k":5081,"v":[[0,3,["H3068"]],[3,4,["H8085","(H853)"]],[4,6,["H6963"]],[6,9,["H1697"]],[9,12,["H1696"]],[12,13,["H413"]],[13,17,["H3068"]],[17,18,["H559"]],[18,19,["H413"]],[19,23,["H8085","(H853)"]],[23,25,["H6963"]],[25,28,["H1697"]],[28,30,["H2088"]],[30,31,["H5971"]],[31,32,["H834"]],[32,35,["H1696"]],[35,36,["H413"]],[36,41,["H3190"]],[41,42,["H3605"]],[42,43,["H834"]],[43,46,["H1696"]]]},{"k":5082,"v":[[0,2,["H4310","H5414"]],[2,4,["H1961"]],[4,5,["H2088"]],[5,7,["H3824"]],[7,13,["H3372"]],[13,16,["H8104","(H853)"]],[16,17,["H3605"]],[17,19,["H4687"]],[19,20,["H3605","H3117"]],[20,21,["H4616"]],[21,25,["H3190"]],[25,31,["H1121"]],[31,33,["H5769"]]]},{"k":5083,"v":[[0,1,["H1980"]],[1,2,["H559"]],[2,5,["H7725"]],[5,9,["H168"]],[9,10,[]]]},{"k":5084,"v":[[0,4,["H859"]],[4,5,["H5975"]],[5,7,["H6311"]],[7,8,["H5978"]],[8,13,["H1696"]],[13,14,["H413"]],[14,15,["(H853)"]],[15,16,["H3605"]],[16,18,["H4687"]],[18,21,["H2706"]],[21,24,["H4941"]],[24,25,["H834"]],[25,28,["H3925"]],[28,33,["H6213"]],[33,37,["H776"]],[37,38,["H834"]],[38,39,["H595"]],[39,40,["H5414"]],[40,43,["H3423"]],[43,44,[]]]},{"k":5085,"v":[[0,3,["H8104"]],[3,5,["H6213"]],[5,7,["H834"]],[7,9,["H3068"]],[9,11,["H430"]],[11,13,["H6680"]],[13,17,["H3808"]],[17,19,["H5493"]],[19,23,["H3225"]],[23,27,["H8040"]]]},{"k":5086,"v":[[0,3,["H1980"]],[3,5,["H3605"]],[5,7,["H1870"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H430"]],[12,14,["H6680"]],[14,16,["H4616"]],[16,19,["H2421"]],[19,25,["H2895"]],[25,32,["H748"]],[32,34,["H3117"]],[34,37,["H776"]],[37,38,["H834"]],[38,41,["H3423"]]]},{"k":5087,"v":[[0,2,["H2063"]],[2,5,["H4687"]],[5,7,["H2706"]],[7,10,["H4941"]],[10,11,["H834"]],[11,13,["H3068"]],[13,15,["H430"]],[15,16,["H6680"]],[16,18,["H3925"]],[18,23,["H6213"]],[23,27,["H776"]],[27,28,["H834","H8033"]],[28,29,["H859"]],[29,30,["H5674"]],[30,32,["H3423"]],[32,33,[]]]},{"k":5088,"v":[[0,1,["H4616"]],[1,4,["H3372","(H853)"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H8104","(H853)"]],[10,11,["H3605"]],[11,13,["H2708"]],[13,16,["H4687"]],[16,17,["H834"]],[17,18,["H595"]],[18,19,["H6680"]],[19,21,["H859"]],[21,24,["H1121"]],[24,27,["H1121"]],[27,28,["H1121"]],[28,29,["H3605"]],[29,31,["H3117"]],[31,34,["H2416"]],[34,36,["H4616"]],[36,38,["H3117"]],[38,41,["H748"]]]},{"k":5089,"v":[[0,1,["H8085"]],[1,4,["H3478"]],[4,6,["H8104"]],[6,8,["H6213"]],[8,10,["H834"]],[10,14,["H3190"]],[14,18,["H834"]],[18,21,["H7235"]],[21,22,["H3966"]],[22,23,["H834"]],[23,25,["H3068"]],[25,26,["H430"]],[26,29,["H1"]],[29,31,["H1696"]],[31,35,["H776"]],[35,37,["H2100"]],[37,39,["H2461"]],[39,41,["H1706"]]]},{"k":5090,"v":[[0,1,["H8085"]],[1,3,["H3478"]],[3,5,["H3068"]],[5,7,["H430"]],[7,9,["H259"]],[9,10,["H3068"]]]},{"k":5091,"v":[[0,4,["H157","(H853)"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H3605"]],[10,12,["H3824"]],[12,15,["H3605"]],[15,17,["H5315"]],[17,20,["H3605"]],[20,22,["H3966"]]]},{"k":5092,"v":[[0,2,["H428"]],[2,3,["H1697"]],[3,4,["H834"]],[4,5,["H595"]],[5,6,["H6680"]],[6,9,["H3117"]],[9,11,["H1961"]],[11,12,["H5921"]],[12,14,["H3824"]]]},{"k":5093,"v":[[0,6,["H8150"]],[6,9,["H1121"]],[9,12,["H1696"]],[12,17,["H3427"]],[17,20,["H1004"]],[20,24,["H1980"]],[24,27,["H1870"]],[27,32,["H7901"]],[32,37,["H6965"]]]},{"k":5094,"v":[[0,4,["H7194"]],[4,8,["H226"]],[8,9,["H5921"]],[9,11,["H3027"]],[11,15,["H1961"]],[15,17,["H2903"]],[17,18,["H996"]],[18,20,["H5869"]]]},{"k":5095,"v":[[0,4,["H3789"]],[4,6,["H5921"]],[6,8,["H4201"]],[8,11,["H1004"]],[11,15,["H8179"]]]},{"k":5096,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,7,["H3068"]],[7,9,["H430"]],[9,12,["H935"]],[12,14,["H413"]],[14,16,["H776"]],[16,17,["H834"]],[17,19,["H7650"]],[19,22,["H1"]],[22,24,["H85"]],[24,26,["H3327"]],[26,29,["H3290"]],[29,31,["H5414"]],[31,33,["H1419"]],[33,35,["H2896"]],[35,36,["H5892"]],[36,37,["H834"]],[37,39,["H1129"]],[39,40,["H3808"]]]},{"k":5097,"v":[[0,2,["H1004"]],[2,3,["H4392"]],[3,5,["H3605"]],[5,6,["H2898"]],[6,8,["H834"]],[8,10,["H4390"]],[10,11,["H3808"]],[11,13,["H953"]],[13,14,["H2672"]],[14,15,["H834"]],[15,17,["H2672"]],[17,18,["H3808"]],[18,19,["H3754"]],[19,22,["H2132"]],[22,23,["H834"]],[23,25,["H5193"]],[25,26,["H3808"]],[26,31,["H398"]],[31,34,["H7646"]]]},{"k":5098,"v":[[0,2,["H8104"]],[2,3,["H6435"]],[3,5,["H7911","(H853)"]],[5,7,["H3068"]],[7,8,["H834"]],[8,11,["H3318"]],[11,15,["H4480","H776"]],[15,17,["H4714"]],[17,20,["H4480","H1004"]],[20,22,["H5650"]]]},{"k":5099,"v":[[0,3,["H3372","(H853)"]],[3,5,["H3068"]],[5,7,["H430"]],[7,9,["H5647"]],[9,13,["H7650"]],[13,16,["H8034"]]]},{"k":5100,"v":[[0,3,["H3808"]],[3,4,["H1980"]],[4,5,["H310"]],[5,6,["H312"]],[6,7,["H430"]],[7,10,["H4480","H430"]],[10,13,["H5971"]],[13,14,["H834"]],[14,17,["H5439"]],[17,18,[]]]},{"k":5101,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,8,["H7067"]],[8,9,["H410"]],[9,10,["H7130"]],[10,12,["H6435"]],[12,14,["H639"]],[14,17,["H3068"]],[17,19,["H430"]],[19,21,["H2734"]],[21,25,["H8045"]],[25,28,["H4480","H5921"]],[28,30,["H6440"]],[30,33,["H127"]]]},{"k":5102,"v":[[0,3,["H3808"]],[3,4,["H5254","(H853)"]],[4,6,["H3068"]],[6,8,["H430"]],[8,9,["H834"]],[9,11,["H5254"]],[11,14,["H4532"]]]},{"k":5103,"v":[[0,4,["H8104","H8104","(H853)"]],[4,6,["H4687"]],[6,9,["H3068"]],[9,11,["H430"]],[11,14,["H5713"]],[14,17,["H2706"]],[17,18,["H834"]],[18,21,["H6680"]],[21,22,[]]]},{"k":5104,"v":[[0,4,["H6213"]],[4,8,["H3477"]],[8,10,["H2896"]],[10,13,["H5869"]],[13,16,["H3068"]],[16,17,["H4616"]],[17,21,["H3190"]],[21,29,["H935"]],[29,31,["H3423","(H853)"]],[31,33,["H2896"]],[33,34,["H776"]],[34,35,["H834"]],[35,37,["H3068"]],[37,38,["H7650"]],[38,41,["H1"]]]},{"k":5105,"v":[[0,3,["H1920","(H853)"]],[3,4,["H3605"]],[4,6,["H341"]],[6,8,["H4480","H6440"]],[8,10,["H834"]],[10,12,["H3068"]],[12,14,["H1696"]]]},{"k":5106,"v":[[0,2,["H3588"]],[2,4,["H1121"]],[4,5,["H7592"]],[5,10,["H4279"]],[10,11,["H559"]],[11,12,["H4100"]],[12,15,["H5713"]],[15,18,["H2706"]],[18,21,["H4941"]],[21,22,["H834"]],[22,24,["H3068"]],[24,26,["H430"]],[26,28,["H6680"]],[28,29,[]]]},{"k":5107,"v":[[0,4,["H559"]],[4,7,["H1121"]],[7,9,["H1961"]],[9,10,["H6547"]],[10,11,["H5650"]],[11,13,["H4714"]],[13,16,["H3068"]],[16,19,["H3318"]],[19,21,["H4480","H4714"]],[21,24,["H2389"]],[24,25,["H3027"]]]},{"k":5108,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,5,["H226"]],[5,7,["H4159"]],[7,8,["H1419"]],[8,10,["H7451"]],[10,12,["H4714"]],[12,14,["H6547"]],[14,17,["H3605"]],[17,19,["H1004"]],[19,22,["H5869"]]]},{"k":5109,"v":[[0,5,["H3318","(H853)"]],[5,7,["H4480","H8033"]],[7,8,["H4616"]],[8,13,["H935","(H853)"]],[13,15,["H5414"]],[15,16,["(H853)"]],[16,18,["H776"]],[18,19,["H834"]],[19,21,["H7650"]],[21,24,["H1"]]]},{"k":5110,"v":[[0,3,["H3068"]],[3,4,["H6680"]],[4,7,["H6213","(H853)"]],[7,8,["H3605"]],[8,9,["H428"]],[9,10,["H2706"]],[10,12,["H3372"]],[12,13,["(H853)"]],[13,14,["H3068"]],[14,16,["H430"]],[16,19,["H2896"]],[19,20,["H3605","H3117"]],[20,26,["H2421"]],[26,31,["H2088"]],[31,32,["H3117"]]]},{"k":5111,"v":[[0,4,["H1961"]],[4,6,["H6666"]],[6,7,["H3588"]],[7,9,["H8104"]],[9,11,["H6213","(H853)"]],[11,12,["H3605"]],[12,13,["H2063"]],[13,14,["H4687"]],[14,15,["H6440"]],[15,17,["H3068"]],[17,19,["H430"]],[19,20,["H834"]],[20,23,["H6680"]],[23,24,[]]]},{"k":5112,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H935"]],[7,9,["H413"]],[9,11,["H776"]],[11,12,["H834","H8033"]],[12,13,["H859"]],[13,14,["H935"]],[14,16,["H3423"]],[16,21,["H5394"]],[21,22,["H7227"]],[22,23,["H1471"]],[23,24,["H4480","H6440"]],[24,27,["H2850"]],[27,30,["H1622"]],[30,33,["H567"]],[33,36,["H3669"]],[36,39,["H6522"]],[39,42,["H2340"]],[42,45,["H2983"]],[45,46,["H7651"]],[46,47,["H1471"]],[47,48,["H7227"]],[48,50,["H6099"]],[50,51,["H4480"]],[51,52,[]]]},{"k":5113,"v":[[0,4,["H3068"]],[4,6,["H430"]],[6,8,["H5414"]],[8,10,["H6440"]],[10,14,["H5221"]],[14,18,["H2763","H2763"]],[18,22,["H3772"]],[22,23,["H3808"]],[23,24,["H1285"]],[24,27,["H3808"]],[27,29,["H2603"]],[29,31,[]]]},{"k":5114,"v":[[0,1,["H3808"]],[1,5,["H2859"]],[5,9,["H1323"]],[9,12,["H3808"]],[12,13,["H5414"]],[13,16,["H1121"]],[16,17,["H3808"]],[17,19,["H1323"]],[19,22,["H3947"]],[22,25,["H1121"]]]},{"k":5115,"v":[[0,1,["H3588"]],[1,5,["H5493","(H853)"]],[5,7,["H1121"]],[7,9,["H4480","H310"]],[9,14,["H5647"]],[14,15,["H312"]],[15,16,["H430"]],[16,20,["H639"]],[20,23,["H3068"]],[23,25,["H2734"]],[25,29,["H8045"]],[29,31,["H4118"]]]},{"k":5116,"v":[[0,1,["H3588","H518"]],[1,2,["H3541"]],[2,5,["H6213"]],[5,10,["H5422"]],[10,12,["H4196"]],[12,15,["H7665"]],[15,17,["H4676"]],[17,20,["H1438"]],[20,22,["H842"]],[22,24,["H8313"]],[24,27,["H6456"]],[27,29,["H784"]]]},{"k":5117,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,5,["H6918"]],[5,6,["H5971"]],[6,9,["H3068"]],[9,11,["H430"]],[11,13,["H3068"]],[13,15,["H430"]],[15,17,["H977"]],[17,20,["H1961"]],[20,22,["H5459"]],[22,23,["H5971"]],[23,27,["H4480","H3605"]],[27,28,["H5971"]],[28,29,["H834"]],[29,31,["H5921"]],[31,33,["H6440"]],[33,36,["H127"]]]},{"k":5118,"v":[[0,2,["H3068"]],[2,4,["H3808"]],[4,7,["H2836"]],[7,11,["H977"]],[11,18,["H4480","H7230"]],[18,20,["H4480","H3605"]],[20,21,["H5971"]],[21,22,["H3588"]],[22,23,["H859"]],[23,26,["H4592"]],[26,28,["H4480","H3605"]],[28,29,["H5971"]]]},{"k":5119,"v":[[0,1,["H3588"]],[1,4,["H3068"]],[4,5,["H4480","H160"]],[5,11,["H4480","H8104","(H853)"]],[11,13,["H7621"]],[13,14,["H834"]],[14,17,["H7650"]],[17,20,["H1"]],[20,23,["H3068"]],[23,26,["H3318","(H853)"]],[26,29,["H2389"]],[29,30,["H3027"]],[30,32,["H6299"]],[32,37,["H4480","H1004"]],[37,39,["H5650"]],[39,42,["H4480","H3027"]],[42,44,["H6547"]],[44,45,["H4428"]],[45,47,["H4714"]]]},{"k":5120,"v":[[0,1,["H3045"]],[1,3,["H3588"]],[3,5,["H3068"]],[5,7,["H430"]],[7,8,["H1931"]],[8,10,["H430"]],[10,12,["H539"]],[12,13,["H410"]],[13,15,["H8104"]],[15,16,["H1285"]],[16,18,["H2617"]],[18,22,["H157"]],[22,25,["H8104"]],[25,27,["H4687"]],[27,30,["H505"]],[30,31,["H1755"]]]},{"k":5121,"v":[[0,2,["H7999"]],[2,5,["H8130"]],[5,7,["H413"]],[7,9,["H6440"]],[9,11,["H6"]],[11,15,["H3808"]],[15,17,["H309"]],[17,21,["H8130"]],[21,25,["H7999"]],[25,27,["H413"]],[27,29,["H6440"]]]},{"k":5122,"v":[[0,4,["H8104","(H853)"]],[4,6,["H4687"]],[6,9,["H2706"]],[9,12,["H4941"]],[12,13,["H834"]],[13,14,["H595"]],[14,15,["H6680"]],[15,18,["H3117"]],[18,20,["H6213"]],[20,21,[]]]},{"k":5123,"v":[[0,6,["H1961"]],[6,7,["H6118"]],[7,9,["H8085","(H853)"]],[9,11,["H428"]],[11,12,["H4941"]],[12,14,["H8104"]],[14,16,["H6213"]],[16,20,["H3068"]],[20,22,["H430"]],[22,24,["H8104"]],[24,26,["(H853)"]],[26,28,["H1285"]],[28,31,["H2617"]],[31,32,["H834"]],[32,34,["H7650"]],[34,37,["H1"]]]},{"k":5124,"v":[[0,4,["H157"]],[4,7,["H1288"]],[7,10,["H7235"]],[10,15,["H1288"]],[15,17,["H6529"]],[17,20,["H990"]],[20,23,["H6529"]],[23,26,["H127"]],[26,28,["H1715"]],[28,31,["H8492"]],[31,34,["H3323"]],[34,36,["H7698"]],[36,39,["H504"]],[39,42,["H6251"]],[42,45,["H6629"]],[45,46,["H5921"]],[46,48,["H127"]],[48,49,["H834"]],[49,51,["H7650"]],[51,54,["H1"]],[54,56,["H5414"]],[56,57,[]]]},{"k":5125,"v":[[0,3,["H1961"]],[3,4,["H1288"]],[4,6,["H4480","H3605"]],[6,7,["H5971"]],[7,10,["H3808"]],[10,11,["H1961"]],[11,12,["H6135"]],[12,15,["H6135"]],[15,21,["H929"]]]},{"k":5126,"v":[[0,3,["H3068"]],[3,6,["H5493"]],[6,7,["H4480"]],[7,9,["H3605"]],[9,10,["H2483"]],[10,13,["H7760"]],[13,14,["H3605","H3808"]],[14,17,["H7451"]],[17,18,["H4064"]],[18,20,["H4714"]],[20,21,["H834"]],[21,23,["H3045"]],[23,28,["H5414"]],[28,31,["H3605"]],[31,34,["H8130"]],[34,35,[]]]},{"k":5127,"v":[[0,4,["H398","(H853)"]],[4,5,["H3605"]],[5,7,["H5971"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H430"]],[12,14,["H5414"]],[14,17,["H5869"]],[17,21,["H2347","H3808"]],[21,22,["H5921"]],[22,24,["H3808"]],[24,27,["H5647","(H853)"]],[27,29,["H430"]],[29,30,["H3588"]],[30,31,["H1931"]],[31,35,["H4170"]],[35,37,[]]]},{"k":5128,"v":[[0,1,["H3588"]],[1,4,["H559"]],[4,7,["H3824"]],[7,8,["H428"]],[8,9,["H1471"]],[9,11,["H7227"]],[11,12,["H4480"]],[12,14,["H349"]],[14,15,["H3201"]],[15,17,["H3423"]],[17,18,[]]]},{"k":5129,"v":[[0,3,["H3808"]],[3,5,["H3372"]],[5,6,["H4480"]],[6,11,["H2142","H2142","(H853)"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H430"]],[16,17,["H6213"]],[17,19,["H6547"]],[19,22,["H3605"]],[22,23,["H4714"]]]},{"k":5130,"v":[[0,2,["H1419"]],[2,3,["H4531"]],[3,4,["H834"]],[4,6,["H5869"]],[6,7,["H7200"]],[7,10,["H226"]],[10,13,["H4159"]],[13,16,["H2389"]],[16,17,["H3027"]],[17,21,["H5186"]],[21,22,["H2220"]],[22,23,["H834"]],[23,25,["H3068"]],[25,27,["H430"]],[27,30,["H3318"]],[30,31,["H3651"]],[31,34,["H3068"]],[34,36,["H430"]],[36,37,["H6213"]],[37,39,["H3605"]],[39,41,["H5971"]],[41,43,["H834"]],[43,44,["H859"]],[44,46,["H3372","H4480","H6440"]]]},{"k":5131,"v":[[0,1,["H1571"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H7971","(H853)"]],[7,9,["H6880"]],[9,12,["H5704"]],[12,16,["H7604"]],[16,19,["H5641"]],[19,20,["H4480","H6440"]],[20,23,["H6"]]]},{"k":5132,"v":[[0,3,["H3808"]],[3,5,["H6206"]],[5,6,["H4480","H6440"]],[6,8,["H3588"]],[8,10,["H3068"]],[10,12,["H430"]],[12,14,["H7130"]],[14,17,["H1419"]],[17,18,["H410"]],[18,20,["H3372"]]]},{"k":5133,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,8,["H5394","(H853)"]],[8,9,["H411"]],[9,10,["H1471"]],[10,11,["H4480","H6440"]],[11,14,["H4592"]],[14,16,["H4592"]],[16,18,["H3201"]],[18,19,["H3808"]],[19,20,["H3615"]],[20,23,["H4118"]],[23,24,["H6435"]],[24,26,["H2416"]],[26,29,["H7704"]],[29,30,["H7235"]],[30,31,["H5921"]],[31,32,[]]]},{"k":5134,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,7,["H5414"]],[7,9,["H6440"]],[9,13,["H1949"]],[13,17,["H1419"]],[17,18,["H4103"]],[18,19,["H5704"]],[19,22,["H8045"]]]},{"k":5135,"v":[[0,4,["H5414"]],[4,6,["H4428"]],[6,9,["H3027"]],[9,13,["H6","(H853)"]],[13,15,["H8034"]],[15,17,["H4480","H8478"]],[17,18,["H8064"]],[18,21,["H3808"]],[21,22,["H376"]],[22,26,["H3320"]],[26,27,["H6440"]],[27,29,["H5704"]],[29,32,["H8045"]],[32,33,[]]]},{"k":5136,"v":[[0,3,["H6456"]],[3,6,["H430"]],[6,9,["H8313"]],[9,11,["H784"]],[11,14,["H3808"]],[14,15,["H2530"]],[15,17,["H3701"]],[17,19,["H2091"]],[19,22,["H5921"]],[22,25,["H3947"]],[25,29,["H6435"]],[29,32,["H3369"]],[32,34,["H3588"]],[34,35,["H1931"]],[35,38,["H8441"]],[38,41,["H3068"]],[41,43,["H430"]]]},{"k":5137,"v":[[0,1,["H3808"]],[1,4,["H935"]],[4,6,["H8441"]],[6,7,["H413"]],[7,9,["H1004"]],[9,12,["H1961"]],[12,15,["H2764"]],[15,17,["H3644"]],[17,22,["H8262","H8262"]],[22,28,["H8581","H8581"]],[28,30,["H3588"]],[30,31,["H1931"]],[31,35,["H2764"]]]},{"k":5138,"v":[[0,1,["H3605"]],[1,3,["H4687"]],[3,4,["H834"]],[4,5,["H595"]],[5,6,["H6680"]],[6,9,["H3117"]],[9,12,["H8104"]],[12,14,["H6213"]],[14,15,["H4616"]],[15,18,["H2421"]],[18,20,["H7235"]],[20,23,["H935"]],[23,25,["H3423","(H853)"]],[25,27,["H776"]],[27,28,["H834"]],[28,30,["H3068"]],[30,31,["H7650"]],[31,34,["H1"]]]},{"k":5139,"v":[[0,4,["H2142","(H853)"]],[4,5,["H3605"]],[5,7,["H1870"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H430"]],[12,13,["H1980"]],[13,15,["H2088"]],[15,16,["H705"]],[16,17,["H8141"]],[17,20,["H4057"]],[20,21,["H4616"]],[21,22,["H6031"]],[22,26,["H5254"]],[26,29,["H3045","(H853)"]],[29,30,["H834"]],[30,34,["H3824"]],[34,38,["H8104"]],[38,40,["H4687"]],[40,41,["H518"]],[41,42,["H3808"]]]},{"k":5140,"v":[[0,3,["H6031"]],[3,9,["H7456"]],[9,11,["H398"]],[11,13,["H854"]],[13,14,["H4478"]],[14,15,["H834"]],[15,17,["H3045"]],[17,18,["H3808"]],[18,19,["H3808"]],[19,22,["H1"]],[22,23,["H3045"]],[23,24,["H4616"]],[24,29,["H3045"]],[29,30,["H3588"]],[30,31,["H120"]],[31,33,["H3808"]],[33,34,["H2421"]],[34,35,["H5921"]],[35,36,["H3899"]],[36,37,["H905"]],[37,38,["H3588"]],[38,39,["H5921"]],[39,40,["H3605"]],[40,44,["H4161"]],[44,47,["H6310"]],[47,50,["H3068"]],[50,52,["H120"]],[52,53,["H2421"]]]},{"k":5141,"v":[[0,2,["H8071"]],[2,5,["H1086","H3808"]],[5,6,["H4480","H5921"]],[6,8,["H3808"]],[8,11,["H7272"]],[11,12,["H1216"]],[12,13,["H2088"]],[13,14,["H705"]],[14,15,["H8141"]]]},{"k":5142,"v":[[0,4,["H3045"]],[4,5,["H5973"]],[5,7,["H3824"]],[7,8,["H3588"]],[8,9,["H834"]],[9,11,["H376"]],[11,12,["H3256","(H853)"]],[12,14,["H1121"]],[14,17,["H3068"]],[17,19,["H430"]],[19,20,["H3256"]],[20,21,[]]]},{"k":5143,"v":[[0,4,["H8104","(H853)"]],[4,6,["H4687"]],[6,9,["H3068"]],[9,11,["H430"]],[11,13,["H1980"]],[13,16,["H1870"]],[16,19,["H3372"]],[19,20,[]]]},{"k":5144,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,6,["H935"]],[6,8,["H413"]],[8,10,["H2896"]],[10,11,["H776"]],[11,13,["H776"]],[13,15,["H5158"]],[15,17,["H4325"]],[17,19,["H5869"]],[19,21,["H8415"]],[21,24,["H3318"]],[24,26,["H1237"]],[26,28,["H2022"]]]},{"k":5145,"v":[[0,2,["H776"]],[2,4,["H2406"]],[4,6,["H8184"]],[6,8,["H1612"]],[8,11,["H8384"]],[11,13,["H7416"]],[13,15,["H776"]],[15,17,["H8081"]],[17,18,["H2132"]],[18,20,["H1706"]]]},{"k":5146,"v":[[0,2,["H776"]],[2,3,["H834"]],[3,6,["H398"]],[6,7,["H3899"]],[7,8,["H3808"]],[8,9,["H4544"]],[9,12,["H3808"]],[12,13,["H2637"]],[13,14,["H3605"]],[14,19,["H776"]],[19,20,["H834"]],[20,21,["H68"]],[21,23,["H1270"]],[23,28,["H4480","H2042"]],[28,31,["H2672"]],[31,32,["H5178"]]]},{"k":5147,"v":[[0,4,["H398"]],[4,7,["H7646"]],[7,11,["H1288","(H853)"]],[11,13,["H3068"]],[13,15,["H430"]],[15,16,["H5921"]],[16,18,["H2896"]],[18,19,["H776"]],[19,20,["H834"]],[20,23,["H5414"]],[23,24,[]]]},{"k":5148,"v":[[0,1,["H8104"]],[1,5,["H6435","H7911","(H853)"]],[5,7,["H3068"]],[7,9,["H430"]],[9,11,["H1115"]],[11,12,["H8104"]],[12,14,["H4687"]],[14,17,["H4941"]],[17,20,["H2708"]],[20,21,["H834"]],[21,22,["H595"]],[22,23,["H6680"]],[23,26,["H3117"]]]},{"k":5149,"v":[[0,1,["H6435"]],[1,5,["H398"]],[5,8,["H7646"]],[8,11,["H1129"]],[11,12,["H2896"]],[12,13,["H1004"]],[13,15,["H3427"]],[15,16,[]]]},{"k":5150,"v":[[0,4,["H1241"]],[4,7,["H6629"]],[7,8,["H7235"]],[8,11,["H3701"]],[11,14,["H2091"]],[14,16,["H7235"]],[16,18,["H3605"]],[18,19,["H834"]],[19,23,["H7235"]]]},{"k":5151,"v":[[0,3,["H3824"]],[3,6,["H7311"]],[6,9,["H7911","(H853)"]],[9,11,["H3068"]],[11,13,["H430"]],[13,17,["H3318"]],[17,21,["H4480","H776"]],[21,23,["H4714"]],[23,26,["H4480","H1004"]],[26,28,["H5650"]]]},{"k":5152,"v":[[0,2,["H1980"]],[2,6,["H1419"]],[6,8,["H3372"]],[8,9,["H4057"]],[9,12,["H8314"]],[12,13,["H5175"]],[13,15,["H6137"]],[15,17,["H6774"]],[17,18,["H834"]],[18,21,["H369"]],[21,22,["H4325"]],[22,26,["H3318"]],[26,27,["H4325"]],[27,31,["H4480","H6697"]],[31,33,["H2496"]]]},{"k":5153,"v":[[0,2,["H398"]],[2,6,["H4057"]],[6,8,["H4478"]],[8,9,["H834"]],[9,11,["H1"]],[11,12,["H3045"]],[12,13,["H3808"]],[13,14,["H4616"]],[14,17,["H6031"]],[17,20,["H4616"]],[20,23,["H5254"]],[23,28,["H3190"]],[28,32,["H319"]]]},{"k":5154,"v":[[0,3,["H559"]],[3,6,["H3824"]],[6,8,["H3581"]],[8,11,["H6108"]],[11,14,["H3027"]],[14,16,["H6213"]],[16,17,["(H853)"]],[17,18,["H2088"]],[18,19,["H2428"]]]},{"k":5155,"v":[[0,4,["H2142","(H853)"]],[4,6,["H3068"]],[6,8,["H430"]],[8,9,["H3588"]],[9,12,["H1931"]],[12,14,["H5414"]],[14,16,["H3581"]],[16,18,["H6213"]],[18,19,["H2428"]],[19,20,["H4616"]],[20,23,["H6965","(H853)"]],[23,25,["H1285"]],[25,26,["H834"]],[26,28,["H7650"]],[28,31,["H1"]],[31,35,["H2088"]],[35,36,["H3117"]]]},{"k":5156,"v":[[0,4,["H1961"]],[4,5,["H518"]],[5,10,["H7911","H7911","(H853)"]],[10,12,["H3068"]],[12,14,["H430"]],[14,16,["H1980"]],[16,17,["H310"]],[17,18,["H312"]],[18,19,["H430"]],[19,21,["H5647"]],[21,24,["H7812"]],[24,27,["H5749"]],[27,31,["H3117"]],[31,32,["H3588"]],[32,36,["H6","H6"]]]},{"k":5157,"v":[[0,3,["H1471"]],[3,4,["H834"]],[4,6,["H3068"]],[6,7,["H6"]],[7,10,["H4480","H6440"]],[10,11,["H3651"]],[11,14,["H6"]],[14,15,["H6118"]],[15,18,["H3808"]],[18,20,["H8085"]],[20,23,["H6963"]],[23,26,["H3068"]],[26,28,["H430"]]]},{"k":5158,"v":[[0,1,["H8085"]],[1,3,["H3478"]],[3,4,["H859"]],[4,8,["H5674","(H853)"]],[8,9,["H3383"]],[9,11,["H3117"]],[11,14,["H935"]],[14,16,["H3423"]],[16,17,["H1471"]],[17,18,["H1419"]],[18,20,["H6099"]],[20,21,["H4480"]],[21,23,["H5892"]],[23,24,["H1419"]],[24,27,["H1219"]],[27,29,["H8064"]]]},{"k":5159,"v":[[0,2,["H5971"]],[2,3,["H1419"]],[3,5,["H7311"]],[5,7,["H1121"]],[7,10,["H6062"]],[10,11,["H834"]],[11,12,["H859"]],[12,13,["H3045"]],[13,17,["H859"]],[17,19,["H8085"]],[19,21,["H4310"]],[21,23,["H3320"]],[23,24,["H6440"]],[24,26,["H1121"]],[26,28,["H6061"]]]},{"k":5160,"v":[[0,1,["H3045"]],[1,4,["H3117"]],[4,5,["H3588"]],[5,7,["H3068"]],[7,9,["H430"]],[9,11,["H1931"]],[11,14,["H5674"]],[14,15,["H6440"]],[15,19,["H398"]],[19,20,["H784"]],[20,21,["H1931"]],[21,23,["H8045"]],[23,26,["H1931"]],[26,30,["H3665"]],[30,33,["H6440"]],[33,39,["H3423"]],[39,41,["H6"]],[41,43,["H4118"]],[43,44,["H834"]],[44,46,["H3068"]],[46,48,["H1696"]],[48,50,[]]]},{"k":5161,"v":[[0,1,["H559"]],[1,2,["H408"]],[2,6,["H3824"]],[6,10,["H3068"]],[10,12,["H430"]],[12,16,["H1920","(H853)"]],[16,18,["H4480","H6440"]],[18,20,["H559"]],[20,23,["H6666"]],[23,25,["H3068"]],[25,29,["H935"]],[29,31,["H3423","(H853)"]],[31,32,["H2063"]],[32,33,["H776"]],[33,37,["H7564"]],[37,39,["H428"]],[39,40,["H1471"]],[40,42,["H3068"]],[42,46,["H3423"]],[46,48,["H4480","H6440"]],[48,49,[]]]},{"k":5162,"v":[[0,1,["H3808"]],[1,4,["H6666"]],[4,8,["H3476"]],[8,11,["H3824"]],[11,13,["H859"]],[13,14,["H935"]],[14,16,["H3423","(H853)"]],[16,18,["H776"]],[18,19,["H3588"]],[19,22,["H7564"]],[22,24,["H428"]],[24,25,["H1471"]],[25,27,["H3068"]],[27,29,["H430"]],[29,33,["H3423"]],[33,35,["H4480","H6440"]],[35,38,["H4616"]],[38,41,["H6965","(H853)"]],[41,43,["H1697"]],[43,44,["H834"]],[44,46,["H3068"]],[46,47,["H7650"]],[47,50,["H1"]],[50,51,["H85"]],[51,52,["H3327"]],[52,54,["H3290"]]]},{"k":5163,"v":[[0,1,["H3045"]],[1,3,["H3588"]],[3,5,["H3068"]],[5,7,["H430"]],[7,8,["H5414"]],[8,10,["H3808","(H853)"]],[10,11,["H2063"]],[11,12,["H2896"]],[12,13,["H776"]],[13,15,["H3423"]],[15,19,["H6666"]],[19,20,["H3588"]],[20,21,["H859"]],[21,24,["H7186","H6203"]],[24,25,["H5971"]]]},{"k":5164,"v":[[0,1,["H2142"]],[1,3,["H7911"]],[3,4,["H408","(H853)"]],[4,5,["H834"]],[5,7,["H7107","(H853)"]],[7,9,["H3068"]],[9,11,["H430"]],[11,16,["H4057"]],[16,17,["H4480"]],[17,19,["H3117"]],[19,20,["H834"]],[20,23,["H3318"]],[23,27,["H4480","H776"]],[27,29,["H4714"]],[29,30,["H5704"]],[30,32,["H935"]],[32,33,["H5704"]],[33,34,["H2088"]],[34,35,["H4725"]],[35,38,["H1961"]],[38,39,["H4784"]],[39,40,["H5973"]],[40,42,["H3068"]]]},{"k":5165,"v":[[0,3,["H2722"]],[3,5,["H7107","(H853)"]],[5,7,["H3068"]],[7,13,["H3068"]],[13,15,["H599"]],[15,20,["H8045"]],[20,21,[]]]},{"k":5166,"v":[[0,5,["H5927"]],[5,8,["H2022"]],[8,10,["H3947"]],[10,12,["H3871"]],[12,14,["H68"]],[14,17,["H3871"]],[17,20,["H1285"]],[20,21,["H834"]],[21,23,["H3068"]],[23,24,["H3772"]],[24,25,["H5973"]],[25,29,["H3427"]],[29,32,["H2022"]],[32,33,["H705"]],[33,34,["H3117"]],[34,36,["H705"]],[36,37,["H3915"]],[37,39,["H3808"]],[39,41,["H398"]],[41,42,["H3899"]],[42,43,["H3808"]],[43,44,["H8354"]],[44,45,["H4325"]]]},{"k":5167,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,5,["H413"]],[5,6,["(H853)"]],[6,7,["H8147"]],[7,8,["H3871"]],[8,10,["H68"]],[10,11,["H3789"]],[11,14,["H676"]],[14,16,["H430"]],[16,18,["H5921"]],[18,24,["H3605"]],[24,26,["H1697"]],[26,27,["H834"]],[27,29,["H3068"]],[29,30,["H1696"]],[30,31,["H5973"]],[31,35,["H2022"]],[35,39,["H4480","H8432"]],[39,42,["H784"]],[42,45,["H3117"]],[45,48,["H6951"]]]},{"k":5168,"v":[[0,5,["H1961"]],[5,8,["H4480","H7093"]],[8,10,["H705"]],[10,11,["H3117"]],[11,13,["H705"]],[13,14,["H3915"]],[14,17,["H3068"]],[17,18,["H5414","H413"]],[18,19,["(H853)"]],[19,21,["H8147"]],[21,22,["H3871"]],[22,24,["H68"]],[24,27,["H3871"]],[27,30,["H1285"]]]},{"k":5169,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H6965"]],[7,10,["H3381"]],[10,11,["H4118"]],[11,13,["H4480","H2088"]],[13,14,["H3588"]],[14,16,["H5971"]],[16,17,["H834"]],[17,21,["H3318"]],[21,24,["H4480","H4714"]],[24,26,["H7843"]],[26,30,["H4118"]],[30,32,["H5493"]],[32,34,["H4480"]],[34,36,["H1870"]],[36,37,["H834"]],[37,39,["H6680"]],[39,43,["H6213"]],[43,47,["H4541"]]]},{"k":5170,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H559"]],[7,10,["H7200","(H853)"]],[10,11,["H2088"]],[11,12,["H5971"]],[12,14,["H2009"]],[14,15,["H1931"]],[15,18,["H7186","H6203"]],[18,19,["H5971"]]]},{"k":5171,"v":[[0,3,["H7503","H4480"]],[3,7,["H8045"]],[7,11,["H4229","(H853)"]],[11,13,["H8034"]],[13,15,["H4480","H8478"]],[15,16,["H8064"]],[16,20,["H6213"]],[20,24,["H1471"]],[24,25,["H6099"]],[25,27,["H7227"]],[27,28,["H4480"]],[28,29,[]]]},{"k":5172,"v":[[0,3,["H6437"]],[3,6,["H3381"]],[6,7,["H4480"]],[7,9,["H2022"]],[9,12,["H2022"]],[12,13,["H1197"]],[13,15,["H784"]],[15,18,["H8147"]],[18,19,["H3871"]],[19,22,["H1285"]],[22,24,["H5921"]],[24,26,["H8147"]],[26,27,["H3027"]]]},{"k":5173,"v":[[0,3,["H7200"]],[3,5,["H2009"]],[5,8,["H2398"]],[8,11,["H3068"]],[11,13,["H430"]],[13,16,["H6213"]],[16,19,["H4541"]],[19,20,["H5695"]],[20,24,["H5493"]],[24,25,["H4118"]],[25,27,["H4480"]],[27,29,["H1870"]],[29,30,["H834"]],[30,32,["H3068"]],[32,34,["H6680"]],[34,35,[]]]},{"k":5174,"v":[[0,3,["H8610"]],[3,5,["H8147"]],[5,6,["H3871"]],[6,8,["H7993"]],[8,11,["H4480","H5921"]],[11,13,["H8147"]],[13,14,["H3027"]],[14,16,["H7665"]],[16,20,["H5869"]]]},{"k":5175,"v":[[0,4,["H5307"]],[4,5,["H6440"]],[5,7,["H3068"]],[7,11,["H7223"]],[11,12,["H705"]],[12,13,["H3117"]],[13,15,["H705"]],[15,16,["H3915"]],[16,19,["H3808"]],[19,20,["H398"]],[20,21,["H3899"]],[21,22,["H3808"]],[22,23,["H8354"]],[23,24,["H4325"]],[24,26,["H5921"]],[26,27,["H3605"]],[27,29,["H2403"]],[29,30,["H834"]],[30,32,["H2398"]],[32,34,["H6213"]],[34,35,["H7451"]],[35,38,["H5869"]],[38,41,["H3068"]],[41,46,["H3707"]]]},{"k":5176,"v":[[0,1,["H3588"]],[1,4,["H3025"]],[4,5,["H4480","H6440"]],[5,7,["H639"]],[7,10,["H2534"]],[10,11,["H834"]],[11,13,["H3068"]],[13,15,["H7107"]],[15,16,["H5921"]],[16,19,["H8045"]],[19,23,["H3068"]],[23,24,["H8085"]],[24,25,["H413"]],[25,28,["H1931"]],[28,29,["H6471"]],[29,30,["H1571"]]]},{"k":5177,"v":[[0,3,["H3068"]],[3,6,["H599","H3966"]],[6,8,["H175"]],[8,11,["H8045"]],[11,15,["H6419"]],[15,16,["H1157"]],[16,17,["H175"]],[17,18,["H1571"]],[18,20,["H1931"]],[20,21,["H6256"]]]},{"k":5178,"v":[[0,3,["H3947"]],[3,5,["H2403","(H853)"]],[5,7,["H5695"]],[7,8,["H834"]],[8,11,["H6213"]],[11,13,["H8313"]],[13,16,["H784"]],[16,18,["H3807"]],[18,21,["H2912"]],[21,24,["H3190"]],[24,26,["H5704"]],[26,27,["H834"]],[27,30,["H1854"]],[30,32,["H6083"]],[32,35,["H7993","(H853)"]],[35,37,["H6083"]],[37,39,["H413"]],[39,41,["H5158"]],[41,43,["H3381"]],[43,45,["H4480"]],[45,47,["H2022"]]]},{"k":5179,"v":[[0,3,["H8404"]],[3,6,["H4532"]],[6,9,["H6914"]],[9,11,["H7107","(H853)"]],[11,13,["H3068"]],[13,15,[]]]},{"k":5180,"v":[[0,4,["H3068"]],[4,5,["H7971"]],[5,8,["H4480","H6947"]],[8,9,["H559"]],[9,11,["H5927"]],[11,13,["H3423","(H853)"]],[13,15,["H776"]],[15,16,["H834"]],[16,19,["H5414"]],[19,24,["H4784","(H853)"]],[24,26,["H6310"]],[26,29,["H3068"]],[29,31,["H430"]],[31,34,["H539"]],[34,36,["H3808"]],[36,37,["H3808"]],[37,38,["H8085"]],[38,41,["H6963"]]]},{"k":5181,"v":[[0,3,["H1961"]],[3,4,["H4784"]],[4,5,["H5973"]],[5,7,["H3068"]],[7,10,["H4480","H3117"]],[10,13,["H3045"]],[13,14,[]]]},{"k":5182,"v":[[0,4,["H5307"]],[4,5,["H6440"]],[5,7,["H3068","(H853)"]],[7,8,["H705"]],[8,9,["H3117"]],[9,11,["H705"]],[11,12,["H3915"]],[12,13,["H834"]],[13,16,["H5307"]],[16,20,["H3588"]],[20,22,["H3068"]],[22,24,["H559"]],[24,27,["H8045"]],[27,28,[]]]},{"k":5183,"v":[[0,2,["H6419"]],[2,4,["H413"]],[4,6,["H3068"]],[6,8,["H559"]],[8,10,["H136"]],[10,11,["H3069"]],[11,12,["H7843"]],[12,13,["H408"]],[13,15,["H5971"]],[15,18,["H5159"]],[18,19,["H834"]],[19,22,["H6299"]],[22,25,["H1433"]],[25,26,["H834"]],[26,30,["H3318"]],[30,33,["H4480","H4714"]],[33,36,["H2389"]],[36,37,["H3027"]]]},{"k":5184,"v":[[0,1,["H2142"]],[1,3,["H5650"]],[3,4,["H85"]],[4,5,["H3327"]],[5,7,["H3290"]],[7,8,["H6437"]],[8,9,["H408"]],[9,10,["H413"]],[10,12,["H7190"]],[12,14,["H2088"]],[14,15,["H5971"]],[15,17,["H413"]],[17,19,["H7562"]],[19,21,["H413"]],[21,23,["H2403"]]]},{"k":5185,"v":[[0,1,["H6435"]],[1,3,["H776"]],[3,4,["H834","H4480","H8034"]],[4,8,["H3318"]],[8,9,["H559"]],[9,12,["H3068"]],[12,15,["H4480","H1097","H3201"]],[15,17,["H935"]],[17,19,["H413"]],[19,21,["H776"]],[21,22,["H834"]],[22,24,["H1696"]],[24,29,["H4480","H8135"]],[29,35,["H3318"]],[35,37,["H4191"]],[37,41,["H4057"]]]},{"k":5186,"v":[[0,2,["H1992"]],[2,5,["H5971"]],[5,8,["H5159"]],[8,9,["H834"]],[9,12,["H3318"]],[12,15,["H1419"]],[15,16,["H3581"]],[16,21,["H5186"]],[21,22,["H2220"]]]},{"k":5187,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,5,["H3068"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H6458"]],[9,11,["H8147"]],[11,12,["H3871"]],[12,14,["H68"]],[14,18,["H7223"]],[18,21,["H5927"]],[21,22,["H413"]],[22,26,["H2022"]],[26,28,["H6213"]],[28,31,["H727"]],[31,33,["H6086"]]]},{"k":5188,"v":[[0,4,["H3789"]],[4,5,["H5921"]],[5,7,["H3871","(H853)"]],[7,9,["H1697"]],[9,10,["H834"]],[10,11,["H1961"]],[11,12,["H5921"]],[12,14,["H7223"]],[14,15,["H3871"]],[15,16,["H834"]],[16,18,["H7665"]],[18,22,["H7760"]],[22,26,["H727"]]]},{"k":5189,"v":[[0,3,["H6213"]],[3,5,["H727"]],[5,7,["H7848"]],[7,8,["H6086"]],[8,10,["H6458"]],[10,11,["H8147"]],[11,12,["H3871"]],[12,14,["H68"]],[14,18,["H7223"]],[18,21,["H5927"]],[21,24,["H2022"]],[24,27,["H8147"]],[27,28,["H3871"]],[28,31,["H3027"]]]},{"k":5190,"v":[[0,3,["H3789"]],[3,4,["H5921"]],[4,6,["H3871"]],[6,10,["H7223"]],[10,11,["H4385","(H853)"]],[11,13,["H6235"]],[13,14,["H1697"]],[14,15,["H834"]],[15,17,["H3068"]],[17,18,["H1696"]],[18,19,["H413"]],[19,23,["H2022"]],[23,27,["H4480","H8432"]],[27,30,["H784"]],[30,33,["H3117"]],[33,36,["H6951"]],[36,39,["H3068"]],[39,40,["H5414"]],[40,42,["H413"]],[42,43,[]]]},{"k":5191,"v":[[0,4,["H6437"]],[4,7,["H3381"]],[7,8,["H4480"]],[8,10,["H2022"]],[10,12,["H7760","(H853)"]],[12,14,["H3871"]],[14,17,["H727"]],[17,18,["H834"]],[18,21,["H6213"]],[21,23,["H8033"]],[23,25,["H1961"]],[25,26,["H834"]],[26,28,["H3068"]],[28,29,["H6680"]],[29,30,[]]]},{"k":5192,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,8,["H5265"]],[8,10,["H4480","H881"]],[10,13,["H1121"]],[13,15,["H3292"]],[15,17,["H4149"]],[17,18,["H8033"]],[18,19,["H175"]],[19,20,["H4191"]],[20,22,["H8033"]],[22,25,["H6912"]],[25,27,["H499"]],[27,29,["H1121"]],[29,34,["H3547"]],[34,37,["H8478"]]]},{"k":5193,"v":[[0,2,["H4480","H8033"]],[2,4,["H5265"]],[4,6,["H1412"]],[6,8,["H4480"]],[8,9,["H1412"]],[9,11,["H3193"]],[11,13,["H776"]],[13,15,["H5158"]],[15,17,["H4325"]]]},{"k":5194,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,5,["H3068"]],[5,6,["H914","(H853)"]],[6,8,["H7626"]],[8,10,["H3878"]],[10,12,["H5375","(H853)"]],[12,14,["H727"]],[14,17,["H1285"]],[17,20,["H3068"]],[20,22,["H5975"]],[22,23,["H6440"]],[23,25,["H3068"]],[25,27,["H8334"]],[27,32,["H1288"]],[32,35,["H8034"]],[35,36,["H5704"]],[36,37,["H2088"]],[37,38,["H3117"]]]},{"k":5195,"v":[[0,1,["H5921","H3651"]],[1,2,["H3878"]],[2,3,["H1961"]],[3,4,["H3808"]],[4,5,["H2506"]],[5,7,["H5159"]],[7,8,["H5973"]],[8,10,["H251"]],[10,12,["H3068"]],[12,15,["H5159"]],[15,16,["H834"]],[16,19,["H3068"]],[19,21,["H430"]],[21,22,["H1696"]],[22,23,[]]]},{"k":5196,"v":[[0,2,["H595"]],[2,3,["H5975"]],[3,6,["H2022"]],[6,10,["H7223"]],[10,11,["H3117"]],[11,12,["H705"]],[12,13,["H3117"]],[13,15,["H705"]],[15,16,["H3915"]],[16,19,["H3068"]],[19,20,["H8085"]],[20,21,["H413"]],[21,24,["H1931"]],[24,25,["H6471"]],[25,26,["H1571"]],[26,29,["H3068"]],[29,30,["H14"]],[30,31,["H3808"]],[31,32,["H7843"]],[32,33,[]]]},{"k":5197,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H6965"]],[7,8,["H1980"]],[8,10,["H4550"]],[10,11,["H6440"]],[11,13,["H5971"]],[13,18,["H935"]],[18,20,["H3423","(H853)"]],[20,22,["H776"]],[22,23,["H834"]],[23,25,["H7650"]],[25,28,["H1"]],[28,30,["H5414"]],[30,32,[]]]},{"k":5198,"v":[[0,2,["H6258"]],[2,3,["H3478"]],[3,4,["H4100"]],[4,7,["H3068"]],[7,9,["H430"]],[9,10,["H7592"]],[10,11,["H4480","H5973"]],[11,13,["H3588","H518"]],[13,15,["H3372","(H853)"]],[15,17,["H3068"]],[17,19,["H430"]],[19,21,["H1980"]],[21,23,["H3605"]],[23,25,["H1870"]],[25,28,["H157"]],[28,32,["H5647","(H853)"]],[32,34,["H3068"]],[34,36,["H430"]],[36,38,["H3605"]],[38,40,["H3824"]],[40,43,["H3605"]],[43,45,["H5315"]]]},{"k":5199,"v":[[0,2,["H8104","(H853)"]],[2,4,["H4687"]],[4,7,["H3068"]],[7,10,["H2708"]],[10,11,["H834"]],[11,12,["H595"]],[12,13,["H6680"]],[13,16,["H3117"]],[16,19,["H2896"]]]},{"k":5200,"v":[[0,1,["H2005"]],[1,3,["H8064"]],[3,6,["H8064"]],[6,8,["H8064"]],[8,11,["H3068"]],[11,13,["H430"]],[13,15,["H776"]],[15,18,["H3605"]],[18,19,["H834"]],[19,21,[]]]},{"k":5201,"v":[[0,1,["H7535"]],[1,3,["H3068"]],[3,6,["H2836"]],[6,9,["H1"]],[9,11,["H157"]],[11,15,["H977"]],[15,17,["H2233"]],[17,18,["H310"]],[18,23,["H4480","H3605"]],[23,24,["H5971"]],[24,28,["H2088"]],[28,29,["H3117"]]]},{"k":5202,"v":[[0,1,["H4135"]],[1,2,["(H853)"]],[2,4,["H6190"]],[4,7,["H3824"]],[7,10,["H3808"]],[10,11,["H5750"]],[11,12,["H6203","H7185"]]]},{"k":5203,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H430"]],[7,9,["H430"]],[9,11,["H113"]],[11,13,["H113"]],[13,15,["H1419"]],[15,16,["H410"]],[16,18,["H1368"]],[18,21,["H3372"]],[21,22,["H834"]],[22,23,["H5375"]],[23,24,["H3808"]],[24,25,["H6440"]],[25,26,["H3808"]],[26,27,["H3947"]],[27,28,["H7810"]]]},{"k":5204,"v":[[0,3,["H6213"]],[3,5,["H4941"]],[5,8,["H3490"]],[8,10,["H490"]],[10,12,["H157"]],[12,14,["H1616"]],[14,16,["H5414"]],[16,18,["H3899"]],[18,20,["H8071"]]]},{"k":5205,"v":[[0,1,["H157"]],[1,3,["(H853)"]],[3,5,["H1616"]],[5,6,["H3588"]],[6,8,["H1961"]],[8,9,["H1616"]],[9,12,["H776"]],[12,14,["H4714"]]]},{"k":5206,"v":[[0,3,["H3372","(H853)"]],[3,5,["H3068"]],[5,7,["H430"]],[7,11,["H5647"]],[11,17,["H1692"]],[17,19,["H7650"]],[19,22,["H8034"]]]},{"k":5207,"v":[[0,1,["H1931"]],[1,4,["H8416"]],[4,6,["H1931"]],[6,9,["H430"]],[9,10,["H834"]],[10,12,["H6213"]],[12,13,["H854"]],[13,14,["(H853)"]],[14,15,["H428"]],[15,16,["H1419"]],[16,19,["H3372"]],[19,20,["H834"]],[20,22,["H5869"]],[22,24,["H7200"]]]},{"k":5208,"v":[[0,2,["H1"]],[2,4,["H3381"]],[4,6,["H4714"]],[6,10,["H7657"]],[10,11,["H5315"]],[11,13,["H6258"]],[13,15,["H3068"]],[15,17,["H430"]],[17,19,["H7760"]],[19,23,["H3556"]],[23,25,["H8064"]],[25,27,["H7230"]]]},{"k":5209,"v":[[0,4,["H157","(H853)"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H8104"]],[10,12,["H4931"]],[12,15,["H2708"]],[15,18,["H4941"]],[18,21,["H4687"]],[21,22,["H3605","H3117"]]]},{"k":5210,"v":[[0,2,["H3045"]],[2,5,["H3117"]],[5,6,["H3588"]],[6,9,["H3808"]],[9,10,["H854"]],[10,12,["H1121"]],[12,13,["H834"]],[13,15,["H3808"]],[15,16,["H3045"]],[16,18,["H834"]],[18,20,["H3808"]],[20,21,["H7200","(H853)"]],[21,23,["H4148"]],[23,26,["H3068"]],[26,28,["H430","(H853)"]],[28,30,["H1433","(H853)"]],[30,32,["H2389"]],[32,33,["H3027"]],[33,37,["H5186"]],[37,38,["H2220"]]]},{"k":5211,"v":[[0,3,["H226"]],[3,6,["H4639"]],[6,7,["H834"]],[7,9,["H6213"]],[9,12,["H8432"]],[12,14,["H4714"]],[14,16,["H6547"]],[16,18,["H4428"]],[18,20,["H4714"]],[20,23,["H3605"]],[23,25,["H776"]]]},{"k":5212,"v":[[0,2,["H834"]],[2,4,["H6213"]],[4,7,["H2428"]],[7,9,["H4714"]],[9,12,["H5483"]],[12,16,["H7393"]],[16,17,["H834"]],[17,19,["(H853)"]],[19,21,["H4325"]],[21,24,["H5488"]],[24,25,["H3220"]],[25,27,["H6687","H5921","H6440"]],[27,31,["H7291"]],[31,32,["H310"]],[32,37,["H3068"]],[37,39,["H6"]],[39,41,["H5704"]],[41,42,["H2088"]],[42,43,["H3117"]]]},{"k":5213,"v":[[0,2,["H834"]],[2,4,["H6213"]],[4,9,["H4057"]],[9,10,["H5704"]],[10,12,["H935"]],[12,13,["H5704"]],[13,14,["H2088"]],[14,15,["H4725"]]]},{"k":5214,"v":[[0,2,["H834"]],[2,4,["H6213"]],[4,6,["H1885"]],[6,8,["H48"]],[8,10,["H1121"]],[10,12,["H446"]],[12,14,["H1121"]],[14,16,["H7205"]],[16,17,["H834"]],[17,19,["H776"]],[19,20,["H6475","(H853)"]],[20,22,["H6310"]],[22,26,["H1104"]],[26,29,["H1004"]],[29,32,["H168"]],[32,34,["H3605"]],[34,36,["H3351"]],[36,37,["H834"]],[37,41,["H7272"]],[41,44,["H7130"]],[44,46,["H3605"]],[46,47,["H3478"]]]},{"k":5215,"v":[[0,1,["H3588"]],[1,3,["H5869"]],[3,5,["H7200","(H853)"]],[5,6,["H3605"]],[6,8,["H1419"]],[8,9,["H4639"]],[9,12,["H3068"]],[12,13,["H834"]],[13,15,["H6213"]]]},{"k":5216,"v":[[0,4,["H8104","(H853)"]],[4,5,["H3605"]],[5,7,["H4687"]],[7,8,["H834"]],[8,9,["H595"]],[9,10,["H6680"]],[10,13,["H3117"]],[13,14,["H4616"]],[14,18,["H2388"]],[18,21,["H935"]],[21,23,["H3423","(H853)"]],[23,25,["H776"]],[25,26,["H834","H8033"]],[26,27,["H859"]],[27,28,["H5674"]],[28,30,["H3423"]],[30,31,[]]]},{"k":5217,"v":[[0,2,["H4616"]],[2,5,["H748"]],[5,7,["H3117"]],[7,8,["H5921"]],[8,10,["H127"]],[10,11,["H834"]],[11,13,["H3068"]],[13,14,["H7650"]],[14,17,["H1"]],[17,19,["H5414"]],[19,25,["H2233"]],[25,27,["H776"]],[27,29,["H2100"]],[29,31,["H2461"]],[31,33,["H1706"]]]},{"k":5218,"v":[[0,1,["H3588"]],[1,3,["H776"]],[3,4,["H834","H8033"]],[4,5,["H859"]],[5,7,["H935"]],[7,9,["H3423"]],[9,12,["H3808"]],[12,15,["H776"]],[15,17,["H4714"]],[17,19,["H834","H4480","H8033"]],[19,22,["H3318"]],[22,23,["H834"]],[23,25,["H2232","(H853)"]],[25,27,["H2233"]],[27,29,["H8248"]],[29,33,["H7272"]],[33,36,["H1588"]],[36,38,["H3419"]]]},{"k":5219,"v":[[0,3,["H776"]],[3,4,["H834","H8033"]],[4,5,["H859"]],[5,6,["H5674"]],[6,8,["H3423"]],[8,12,["H776"]],[12,14,["H2022"]],[14,16,["H1237"]],[16,18,["H8354"]],[18,19,["H4325"]],[19,22,["H4306"]],[22,24,["H8064"]]]},{"k":5220,"v":[[0,2,["H776"]],[2,3,["H834"]],[3,5,["H3068"]],[5,7,["H430"]],[7,8,["H1875"]],[8,11,["H5869"]],[11,14,["H3068"]],[14,16,["H430"]],[16,18,["H8548"]],[18,23,["H4480","H7225"]],[23,26,["H8141"]],[26,28,["H5704"]],[28,30,["H319"]],[30,33,["H8141"]]]},{"k":5221,"v":[[0,6,["H1961"]],[6,7,["H518"]],[7,11,["H8085","H8085"]],[11,12,["H413"]],[12,14,["H4687"]],[14,15,["H834"]],[15,16,["H595"]],[16,17,["H6680"]],[17,20,["H3117"]],[20,22,["H157","(H853)"]],[22,24,["H3068"]],[24,26,["H430"]],[26,29,["H5647"]],[29,32,["H3605"]],[32,34,["H3824"]],[34,37,["H3605"]],[37,39,["H5315"]]]},{"k":5222,"v":[[0,4,["H5414"]],[4,7,["H4306"]],[7,10,["H776"]],[10,14,["H6256"]],[14,17,["H3138"]],[17,21,["H4456"]],[21,26,["H622"]],[26,28,["H1715"]],[28,31,["H8492"]],[31,34,["H3323"]]]},{"k":5223,"v":[[0,4,["H5414"]],[4,5,["H6212"]],[5,8,["H7704"]],[8,11,["H929"]],[11,15,["H398"]],[15,18,["H7646"]]]},{"k":5224,"v":[[0,2,["H8104"]],[2,5,["H6435"]],[5,7,["H3824"]],[7,10,["H6601"]],[10,14,["H5493"]],[14,16,["H5647"]],[16,17,["H312"]],[17,18,["H430"]],[18,20,["H7812"]],[20,21,[]]]},{"k":5225,"v":[[0,4,["H3068"]],[4,5,["H639"]],[5,7,["H2734"]],[7,13,["H6113","(H853)"]],[13,15,["H8064"]],[15,18,["H1961"]],[18,19,["H3808"]],[19,20,["H4306"]],[20,24,["H127"]],[24,25,["H5414"]],[25,26,["H3808","(H853)"]],[26,28,["H2981"]],[28,32,["H6"]],[32,33,["H4120"]],[33,35,["H4480","H5921"]],[35,37,["H2896"]],[37,38,["H776"]],[38,39,["H834"]],[39,41,["H3068"]],[41,42,["H5414"]],[42,43,[]]]},{"k":5226,"v":[[0,5,["H7760","(H853)"]],[5,6,["H428"]],[6,8,["H1697"]],[8,9,["H5921"]],[9,11,["H3824"]],[11,13,["H5921"]],[13,15,["H5315"]],[15,17,["H7194"]],[17,21,["H226"]],[21,22,["H5921"]],[22,24,["H3027"]],[24,28,["H1961"]],[28,30,["H2903"]],[30,31,["H996"]],[31,33,["H5869"]]]},{"k":5227,"v":[[0,4,["H3925"]],[4,5,["(H853)"]],[5,7,["H1121"]],[7,8,["H1696"]],[8,13,["H3427"]],[13,16,["H1004"]],[16,20,["H1980"]],[20,23,["H1870"]],[23,27,["H7901"]],[27,32,["H6965"]]]},{"k":5228,"v":[[0,4,["H3789"]],[4,6,["H5921"]],[6,9,["H4201"]],[9,12,["H1004"]],[12,16,["H8179"]]]},{"k":5229,"v":[[0,1,["H4616"]],[1,3,["H3117"]],[3,6,["H7235"]],[6,9,["H3117"]],[9,12,["H1121"]],[12,13,["H5921"]],[13,15,["H127"]],[15,16,["H834"]],[16,18,["H3068"]],[18,19,["H7650"]],[19,22,["H1"]],[22,24,["H5414"]],[24,28,["H3117"]],[28,30,["H8064"]],[30,31,["H5921"]],[31,33,["H776"]]]},{"k":5230,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,6,["H8104","H8104","(H853)"]],[6,7,["H3605"]],[7,8,["H2063"]],[8,9,["H4687"]],[9,10,["H834"]],[10,11,["H595"]],[11,12,["H6680"]],[12,15,["H6213"]],[15,18,["H157","(H853)"]],[18,20,["H3068"]],[20,22,["H430"]],[22,24,["H1980"]],[24,26,["H3605"]],[26,28,["H1870"]],[28,31,["H1692"]],[31,33,[]]]},{"k":5231,"v":[[0,4,["H3068"]],[4,6,["H3423","(H853)"]],[6,7,["H3605"]],[7,8,["H428"]],[8,9,["H1471"]],[9,11,["H4480","H6440"]],[11,16,["H3423"]],[16,17,["H1419"]],[17,18,["H1471"]],[18,20,["H6099"]],[20,21,["H4480"]],[21,22,[]]]},{"k":5232,"v":[[0,1,["H3605"]],[1,2,["H4725"]],[2,3,["H834"]],[3,5,["H3709"]],[5,8,["H7272"]],[8,10,["H1869"]],[10,12,["H1961"]],[12,14,["H4480"]],[14,16,["H4057"]],[16,18,["H3844"]],[18,19,["H4480"]],[19,21,["H5104"]],[21,23,["H5104"]],[23,24,["H6578"]],[24,26,["H5704"]],[26,28,["H314"]],[28,29,["H3220"]],[29,32,["H1366"]],[32,33,["H1961"]]]},{"k":5233,"v":[[0,3,["H3808"]],[3,4,["H376"]],[4,8,["H3320"]],[8,9,["H6440"]],[9,13,["H3068"]],[13,15,["H430"]],[15,17,["H5414"]],[17,19,["H6343"]],[19,24,["H4172"]],[24,27,["H5921","H6440"]],[27,28,["H3605"]],[28,30,["H776"]],[30,31,["H834"]],[31,34,["H1869"]],[34,36,["H834"]],[36,39,["H1696"]],[39,41,[]]]},{"k":5234,"v":[[0,1,["H7200"]],[1,2,["H595"]],[2,3,["H5414"]],[3,4,["H6440"]],[4,7,["H3117"]],[7,9,["H1293"]],[9,12,["H7045"]]]},{"k":5235,"v":[[0,0,["(H853)"]],[0,2,["H1293"]],[2,3,["H834"]],[3,5,["H8085","H413"]],[5,7,["H4687"]],[7,10,["H3068"]],[10,12,["H430"]],[12,13,["H834"]],[13,14,["H595"]],[14,15,["H6680"]],[15,18,["H3117"]]]},{"k":5236,"v":[[0,3,["H7045"]],[3,4,["H518"]],[4,7,["H3808"]],[7,8,["H8085","H413"]],[8,10,["H4687"]],[10,13,["H3068"]],[13,15,["H430"]],[15,18,["H5493"]],[18,20,["H4480"]],[20,22,["H1870"]],[22,23,["H834"]],[23,24,["H595"]],[24,25,["H6680"]],[25,28,["H3117"]],[28,30,["H1980"]],[30,31,["H310"]],[31,32,["H312"]],[32,33,["H430"]],[33,34,["H834"]],[34,37,["H3808"]],[37,38,["H3045"]]]},{"k":5237,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,9,["H3068"]],[9,11,["H430"]],[11,15,["H935"]],[15,16,["H413"]],[16,18,["H776"]],[18,19,["H834","H8033"]],[19,20,["H859"]],[20,21,["H935"]],[21,23,["H3423"]],[23,28,["H5414","(H853)"]],[28,30,["H1293"]],[30,31,["H5921"]],[31,32,["H2022"]],[32,33,["H1630"]],[33,36,["H7045"]],[36,37,["H5921"]],[37,38,["H2022"]],[38,39,["H5858"]]]},{"k":5238,"v":[[0,2,["H1992"]],[2,3,["H3808"]],[3,7,["H5676"]],[7,8,["H3383"]],[8,9,["H310"]],[9,11,["H1870"]],[11,14,["H8121"]],[14,16,["H3996"]],[16,19,["H776"]],[19,22,["H3669"]],[22,24,["H3427"]],[24,27,["H6160"]],[27,29,["H4136"]],[29,30,["H1537"]],[30,31,["H681"]],[31,33,["H436"]],[33,35,["H4176"]]]},{"k":5239,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,5,["H5674","(H853)"]],[5,6,["H3383"]],[6,9,["H935"]],[9,11,["H3423","(H853)"]],[11,13,["H776"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H430"]],[18,19,["H5414"]],[19,24,["H3423"]],[24,27,["H3427"]],[27,28,[]]]},{"k":5240,"v":[[0,4,["H8104"]],[4,6,["H6213","(H853)"]],[6,7,["H3605"]],[7,9,["H2706"]],[9,11,["H4941"]],[11,12,["H834"]],[12,13,["H595"]],[13,14,["H5414"]],[14,15,["H6440"]],[15,18,["H3117"]]]},{"k":5241,"v":[[0,1,["H428"]],[1,4,["H2706"]],[4,6,["H4941"]],[6,7,["H834"]],[7,10,["H8104"]],[10,12,["H6213"]],[12,15,["H776"]],[15,16,["H834"]],[16,18,["H3068"]],[18,19,["H430"]],[19,22,["H1"]],[22,23,["H5414"]],[23,26,["H3423"]],[26,28,["H3605"]],[28,30,["H3117"]],[30,31,["H834"]],[31,32,["H859"]],[32,33,["H2416"]],[33,34,["H5921"]],[34,36,["H127"]]]},{"k":5242,"v":[[0,4,["H6","H6","(H853)"]],[4,5,["H3605"]],[5,7,["H4725"]],[7,8,["H834","H8033"]],[8,10,["H1471"]],[10,11,["H834","(H853)"]],[11,12,["H859"]],[12,14,["H3423"]],[14,15,["H5647","(H853)"]],[15,17,["H430"]],[17,18,["H5921"]],[18,20,["H7311"]],[20,21,["H2022"]],[21,23,["H5921"]],[23,25,["H1389"]],[25,27,["H8478"]],[27,28,["H3605"]],[28,29,["H7488"]],[29,30,["H6086"]]]},{"k":5243,"v":[[0,4,["H5422","(H853)"]],[4,6,["H4196"]],[6,8,["H7665","(H853)"]],[8,10,["H4676"]],[10,12,["H8313"]],[12,14,["H842"]],[14,16,["H784"]],[16,21,["H1438"]],[21,24,["H6456"]],[24,27,["H430"]],[27,29,["H6","(H853)"]],[29,31,["H8034"]],[31,35,["H4480"]],[35,36,["H1931"]],[36,37,["H4725"]]]},{"k":5244,"v":[[0,3,["H3808"]],[3,4,["H6213"]],[4,5,["H3651"]],[5,8,["H3068"]],[8,10,["H430"]]]},{"k":5245,"v":[[0,1,["H3588","H518"]],[1,2,["H413"]],[2,4,["H4725"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H430"]],[9,11,["H977"]],[11,14,["H4480","H3605"]],[14,16,["H7626"]],[16,18,["H7760","(H853)"]],[18,20,["H8034"]],[20,21,["H8033"]],[21,25,["H7933"]],[25,28,["H1875"]],[28,30,["H8033"]],[30,33,["H935"]]]},{"k":5246,"v":[[0,2,["H8033"]],[2,5,["H935"]],[5,8,["H5930"]],[8,11,["H2077"]],[11,14,["H4643"]],[14,15,["(H853)"]],[15,17,["H8641"]],[17,20,["H3027"]],[20,23,["H5088"]],[23,27,["H5071"]],[27,30,["H1062"]],[30,33,["H1241"]],[33,37,["H6629"]]]},{"k":5247,"v":[[0,2,["H8033"]],[2,5,["H398"]],[5,6,["H6440"]],[6,8,["H3068"]],[8,10,["H430"]],[10,14,["H8055"]],[14,16,["H3605"]],[16,19,["H4916"]],[19,21,["H3027"]],[21,23,["H859"]],[23,26,["H1004"]],[26,27,["H834"]],[27,29,["H3068"]],[29,31,["H430"]],[31,33,["H1288"]],[33,34,[]]]},{"k":5248,"v":[[0,3,["H3808"]],[3,4,["H6213"]],[4,6,["H3605"]],[6,9,["H834"]],[9,10,["H587"]],[10,11,["H6213"]],[11,12,["H6311"]],[12,14,["H3117"]],[14,16,["H376"]],[16,17,["H3605"]],[17,19,["H3477"]],[19,23,["H5869"]]]},{"k":5249,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,6,["H5704","H6258"]],[6,7,["H935"]],[7,8,["H413"]],[8,10,["H4496"]],[10,12,["H413"]],[12,14,["H5159"]],[14,15,["H834"]],[15,17,["H3068"]],[17,19,["H430"]],[19,20,["H5414"]],[20,21,[]]]},{"k":5250,"v":[[0,5,["H5674","(H853)"]],[5,6,["H3383"]],[6,8,["H3427"]],[8,11,["H776"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H430"]],[16,20,["H5157","(H853)"]],[20,26,["H5117"]],[26,28,["H4480","H3605"]],[28,30,["H341"]],[30,32,["H4480","H5439"]],[32,36,["H3427"]],[36,38,["H983"]]]},{"k":5251,"v":[[0,4,["H1961"]],[4,6,["H4725"]],[6,7,["H834"]],[7,9,["H3068"]],[9,11,["H430"]],[11,13,["H977"]],[13,17,["H8034"]],[17,19,["H7931"]],[19,20,["H8033"]],[20,21,["H8033"]],[21,24,["H935","(H853)"]],[24,25,["H3605"]],[25,26,["H834"]],[26,27,["H595"]],[27,28,["H6680"]],[28,32,["H5930"]],[32,35,["H2077"]],[35,37,["H4643"]],[37,41,["H8641"]],[41,44,["H3027"]],[44,46,["H3605"]],[46,48,["H4005"]],[48,49,["H5088"]],[49,50,["H834"]],[50,52,["H5087"]],[52,55,["H3068"]]]},{"k":5252,"v":[[0,4,["H8055"]],[4,5,["H6440"]],[5,7,["H3068"]],[7,9,["H430"]],[9,10,["H859"]],[10,13,["H1121"]],[13,16,["H1323"]],[16,19,["H5650"]],[19,22,["H519"]],[22,25,["H3881"]],[25,26,["H834"]],[26,30,["H8179"]],[30,31,["H3588"]],[31,35,["H369"]],[35,36,["H2506"]],[36,38,["H5159"]],[38,39,["H854"]],[39,40,[]]]},{"k":5253,"v":[[0,2,["H8104"]],[2,5,["H6435"]],[5,7,["H5927"]],[7,11,["H5930"]],[11,13,["H3605"]],[13,14,["H4725"]],[14,15,["H834"]],[15,17,["H7200"]]]},{"k":5254,"v":[[0,1,["H3588","H518"]],[1,4,["H4725"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H977"]],[9,11,["H259"]],[11,14,["H7626"]],[14,15,["H8033"]],[15,18,["H5927"]],[18,21,["H5930"]],[21,23,["H8033"]],[23,26,["H6213"]],[26,27,["H3605"]],[27,28,["H834"]],[28,29,["H595"]],[29,30,["H6680"]],[30,31,[]]]},{"k":5255,"v":[[0,1,["H7535"]],[1,4,["H2076"]],[4,6,["H398"]],[6,7,["H1320"]],[7,9,["H3605"]],[9,11,["H8179"]],[11,12,["H3605"]],[12,14,["H5315"]],[14,16,["H185"]],[16,20,["H1293"]],[20,23,["H3068"]],[23,25,["H430"]],[25,26,["H834"]],[26,29,["H5414"]],[29,32,["H2931"]],[32,35,["H2889"]],[35,37,["H398"]],[37,42,["H6643"]],[42,47,["H354"]]]},{"k":5256,"v":[[0,1,["H7535"]],[1,4,["H3808"]],[4,5,["H398"]],[5,7,["H1818"]],[7,10,["H8210"]],[10,12,["H5921"]],[12,14,["H776"]],[14,16,["H4325"]]]},{"k":5257,"v":[[0,2,["H3201"]],[2,3,["H3808"]],[3,4,["H398"]],[4,7,["H8179"]],[7,9,["H4643"]],[9,12,["H1715"]],[12,16,["H8492"]],[16,20,["H3323"]],[20,23,["H1062"]],[23,26,["H1241"]],[26,30,["H6629"]],[30,32,["H3605"]],[32,35,["H5088"]],[35,36,["H834"]],[36,38,["H5087"]],[38,42,["H5071"]],[42,45,["H8641"]],[45,48,["H3027"]]]},{"k":5258,"v":[[0,1,["H3588","H518"]],[1,4,["H398"]],[4,6,["H6440"]],[6,8,["H3068"]],[8,10,["H430"]],[10,13,["H4725"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H430"]],[18,20,["H977"]],[20,21,["H859"]],[21,24,["H1121"]],[24,27,["H1323"]],[27,30,["H5650"]],[30,33,["H519"]],[33,36,["H3881"]],[36,37,["H834"]],[37,41,["H8179"]],[41,45,["H8055"]],[45,46,["H6440"]],[46,48,["H3068"]],[48,50,["H430"]],[50,52,["H3605"]],[52,55,["H4916"]],[55,57,["H3027"]],[57,58,[]]]},{"k":5259,"v":[[0,2,["H8104"]],[2,8,["H6435","H5800","(H853)"]],[8,10,["H3881"]],[10,15,["H3605","H3117"]],[15,16,["H5921"]],[16,18,["H127"]]]},{"k":5260,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H7337","(H853)"]],[7,9,["H1366"]],[9,10,["H834"]],[10,13,["H1696"]],[13,18,["H559"]],[18,21,["H398"]],[21,22,["H1320"]],[22,23,["H3588"]],[23,25,["H5315"]],[25,26,["H183"]],[26,28,["H398"]],[28,29,["H1320"]],[29,32,["H398"]],[32,33,["H1320"]],[33,34,["H3605"]],[34,36,["H5315"]],[36,38,["H185"]]]},{"k":5261,"v":[[0,1,["H3588"]],[1,3,["H4725"]],[3,4,["H834"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H977"]],[10,12,["H7760"]],[12,14,["H8034"]],[14,15,["H8033"]],[15,18,["H7368"]],[18,19,["H4480"]],[19,24,["H2076"]],[24,27,["H4480","H1241"]],[27,31,["H4480","H6629"]],[31,32,["H834"]],[32,34,["H3068"]],[34,36,["H5414"]],[36,38,["H834"]],[38,41,["H6680"]],[41,46,["H398"]],[46,49,["H8179"]],[49,50,["H3605"]],[50,52,["H5315"]],[52,54,["H185"]]]},{"k":5262,"v":[[0,1,["H389"]],[1,2,["H834","(H853)"]],[2,4,["H6643"]],[4,7,["H354"]],[7,9,["H398"]],[9,10,["H3651"]],[10,13,["H398"]],[13,16,["H2931"]],[16,19,["H2889"]],[19,21,["H398"]],[21,24,["H3162"]]]},{"k":5263,"v":[[0,1,["H7535"]],[1,3,["H2388"]],[3,6,["H398"]],[6,7,["H1115"]],[7,9,["H1818"]],[9,10,["H3588"]],[10,12,["H1818"]],[12,15,["H5315"]],[15,19,["H3808"]],[19,20,["H398"]],[20,22,["H5315"]],[22,23,["H5973"]],[23,25,["H1320"]]]},{"k":5264,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,8,["H8210"]],[8,10,["H5921"]],[10,12,["H776"]],[12,14,["H4325"]]]},{"k":5265,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,6,["H4616"]],[6,10,["H3190"]],[10,16,["H1121"]],[16,17,["H310"]],[17,19,["H3588"]],[19,22,["H6213"]],[22,26,["H3477"]],[26,29,["H5869"]],[29,32,["H3068"]]]},{"k":5266,"v":[[0,1,["H7535"]],[1,4,["H6944"]],[4,5,["H834"]],[5,7,["H1961"]],[7,10,["H5088"]],[10,13,["H5375"]],[13,15,["H935"]],[15,16,["H413"]],[16,18,["H4725"]],[18,19,["H834"]],[19,21,["H3068"]],[21,23,["H977"]]]},{"k":5267,"v":[[0,4,["H6213"]],[4,7,["H5930"]],[7,9,["H1320"]],[9,12,["H1818"]],[12,13,["H5921"]],[13,15,["H4196"]],[15,18,["H3068"]],[18,20,["H430"]],[20,23,["H1818"]],[23,26,["H2077"]],[26,30,["H8210"]],[30,31,["H5921"]],[31,33,["H4196"]],[33,36,["H3068"]],[36,38,["H430"]],[38,42,["H398"]],[42,44,["H1320"]]]},{"k":5268,"v":[[0,1,["H8104"]],[1,3,["H8085","(H853)"]],[3,4,["H3605"]],[4,5,["H428"]],[5,6,["H1697"]],[6,7,["H834"]],[7,8,["H595"]],[8,9,["H6680"]],[9,11,["H4616"]],[11,15,["H3190"]],[15,21,["H1121"]],[21,22,["H310"]],[22,25,["H5704","H5769"]],[25,26,["H3588"]],[26,28,["H6213"]],[28,32,["H2896"]],[32,34,["H3477"]],[34,37,["H5869"]],[37,40,["H3068"]],[40,42,["H430"]]]},{"k":5269,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,8,["H3772","(H853)"]],[8,10,["H1471"]],[10,12,["H4480","H6440"]],[12,14,["H834","H8033"]],[14,15,["H859"]],[15,16,["H935"]],[16,18,["H3423"]],[18,22,["H3423"]],[22,25,["H3427"]],[25,28,["H776"]]]},{"k":5270,"v":[[0,2,["H8104"]],[2,5,["H6435"]],[5,9,["H5367"]],[9,11,["H310"]],[11,14,["H310"]],[14,17,["H8045"]],[17,19,["H4480","H6440"]],[19,22,["H6435"]],[22,24,["H1875"]],[24,28,["H430"]],[28,29,["H559"]],[29,30,["H349"]],[30,32,["H428"]],[32,33,["H1471"]],[33,34,["H5647","(H853)"]],[34,36,["H430"]],[36,38,["H3651"]],[38,40,["H589"]],[40,41,["H6213"]],[41,42,["H1571"]]]},{"k":5271,"v":[[0,3,["H3808"]],[3,4,["H6213"]],[4,5,["H3651"]],[5,8,["H3068"]],[8,10,["H430"]],[10,11,["H3588"]],[11,12,["H3605"]],[12,13,["H8441"]],[13,16,["H3068"]],[16,17,["H834"]],[17,19,["H8130"]],[19,22,["H6213"]],[22,25,["H430"]],[25,26,["H3588"]],[26,27,["H1571","(H853)"]],[27,29,["H1121"]],[29,32,["H1323"]],[32,35,["H8313"]],[35,38,["H784"]],[38,41,["H430"]]]},{"k":5272,"v":[[0,0,["(H853)"]],[0,3,["H3605","H1697","H834"]],[3,4,["H595"]],[4,5,["H6680"]],[5,7,["H8104"]],[7,9,["H6213"]],[9,13,["H3808"]],[13,14,["H3254"]],[14,15,["H5921"]],[15,16,["H3808"]],[16,17,["H1639"]],[17,18,["H4480"]],[18,19,[]]]},{"k":5273,"v":[[0,1,["H3588"]],[1,3,["H6965"]],[3,4,["H7130"]],[4,7,["H5030"]],[7,8,["H176"]],[8,10,["H2492"]],[10,12,["H2472"]],[12,14,["H5414","H413"]],[14,17,["H226"]],[17,18,["H176"]],[18,20,["H4159"]]]},{"k":5274,"v":[[0,3,["H226"]],[3,6,["H4159"]],[6,9,["H935"]],[9,10,["H834"]],[10,12,["H1696"]],[12,13,["H413"]],[13,15,["H559"]],[15,18,["H1980"]],[18,19,["H310"]],[19,20,["H312"]],[20,21,["H430"]],[21,22,["H834"]],[22,25,["H3808"]],[25,26,["H3045"]],[26,30,["H5647"]],[30,31,[]]]},{"k":5275,"v":[[0,3,["H3808"]],[3,4,["H8085"]],[4,5,["H413"]],[5,7,["H1697"]],[7,9,["H1931"]],[9,10,["H5030"]],[10,11,["H176"]],[11,12,["H1931"]],[12,13,["H2492"]],[13,15,["H2472"]],[15,16,["H3588"]],[16,18,["H3068"]],[18,20,["H430"]],[20,21,["H5254"]],[21,24,["H3045"]],[24,25,["H3426"]],[25,27,["H157","(H853)"]],[27,29,["H3068"]],[29,31,["H430"]],[31,33,["H3605"]],[33,35,["H3824"]],[35,38,["H3605"]],[38,40,["H5315"]]]},{"k":5276,"v":[[0,3,["H1980"]],[3,4,["H310"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H3372"]],[10,13,["H8104"]],[13,15,["H4687"]],[15,17,["H8085"]],[17,19,["H6963"]],[19,23,["H5647"]],[23,26,["H1692"]],[26,28,[]]]},{"k":5277,"v":[[0,2,["H1931"]],[2,3,["H5030"]],[3,4,["H176"]],[4,5,["H1931"]],[5,6,["H2492"]],[6,8,["H2472"]],[8,13,["H4191"]],[13,14,["H3588"]],[14,17,["H1696"]],[17,21,["H5627"]],[21,22,["H5921"]],[22,24,["H3068"]],[24,26,["H430"]],[26,30,["H3318","(H853)"]],[30,33,["H4480","H776"]],[33,35,["H4714"]],[35,37,["H6299"]],[37,42,["H4480","H1004"]],[42,44,["H5650"]],[44,46,["H5080"]],[46,49,["H4480"]],[49,51,["H1870"]],[51,52,["H834"]],[52,54,["H3068"]],[54,56,["H430"]],[56,57,["H6680"]],[57,60,["H1980"]],[60,68,["H1197","H7451"]],[68,71,["H4480","H7130"]],[71,73,[]]]},{"k":5278,"v":[[0,1,["H3588"]],[1,3,["H251"]],[3,5,["H1121"]],[5,8,["H517"]],[8,9,["H176"]],[9,11,["H1121"]],[11,12,["H176"]],[12,14,["H1323"]],[14,15,["H176"]],[15,17,["H802"]],[17,20,["H2436"]],[20,21,["H176"]],[21,23,["H7453"]],[23,24,["H834"]],[24,29,["H5315"]],[29,30,["H5496"]],[30,32,["H5643"]],[32,33,["H559"]],[33,36,["H1980"]],[36,38,["H5647"]],[38,39,["H312"]],[39,40,["H430"]],[40,41,["H834"]],[41,44,["H3808"]],[44,45,["H3045"]],[45,46,["H859"]],[46,49,["H1"]]]},{"k":5279,"v":[[0,4,["H4480","H430"]],[4,7,["H5971"]],[7,8,["H834"]],[8,11,["H5439"]],[11,13,["H7138"]],[13,14,["H413"]],[14,16,["H176"]],[16,18,["H7350"]],[18,19,["H4480"]],[19,24,["H4480","H7097"]],[24,27,["H776"]],[27,29,["H5704"]],[29,32,["H7097"]],[32,35,["H776"]]]},{"k":5280,"v":[[0,3,["H3808"]],[3,4,["H14"]],[4,7,["H3808"]],[7,8,["H8085"]],[8,9,["H413"]],[9,11,["H3808"]],[11,14,["H5869"]],[14,15,["H2347","H5921"]],[15,17,["H3808"]],[17,20,["H2550"]],[20,21,["H3808"]],[21,24,["H3680","H5921"]],[24,25,[]]]},{"k":5281,"v":[[0,1,["H3588"]],[1,5,["H2026","H2026"]],[5,8,["H3027"]],[8,10,["H1961"]],[10,11,["H7223"]],[11,18,["H4191"]],[18,20,["H314"]],[20,22,["H3027"]],[22,24,["H3605"]],[24,26,["H5971"]]]},{"k":5282,"v":[[0,4,["H5619"]],[4,7,["H68"]],[7,10,["H4191"]],[10,11,["H3588"]],[11,14,["H1245"]],[14,18,["H5080"]],[18,19,["H4480","H5921"]],[19,21,["H3068"]],[21,23,["H430"]],[23,27,["H3318"]],[27,30,["H4480","H776"]],[30,32,["H4714"]],[32,35,["H4480","H1004"]],[35,37,["H5650"]]]},{"k":5283,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,5,["H8085"]],[5,7,["H3372"]],[7,10,["H6213"]],[10,11,["H3808"]],[11,12,["H3254"]],[12,13,["H1697"]],[13,15,["H7451"]],[15,17,["H2088"]],[17,19,["H7130"]],[19,20,[]]]},{"k":5284,"v":[[0,1,["H3588"]],[1,4,["H8085"]],[4,7,["H259"]],[7,10,["H5892"]],[10,11,["H834"]],[11,13,["H3068"]],[13,15,["H430"]],[15,17,["H5414"]],[17,20,["H3427"]],[20,21,["H8033"]],[21,22,["H559"]]]},{"k":5285,"v":[[0,2,["H376"]],[2,4,["H1121"]],[4,6,["H1100"]],[6,9,["H3318"]],[9,11,["H4480","H7130"]],[11,15,["H5080","(H853)"]],[15,17,["H3427"]],[17,20,["H5892"]],[20,21,["H559"]],[21,24,["H1980"]],[24,26,["H5647"]],[26,27,["H312"]],[27,28,["H430"]],[28,29,["H834"]],[29,32,["H3808"]],[32,33,["H3045"]]]},{"k":5286,"v":[[0,4,["H1875"]],[4,7,["H2713"]],[7,9,["H7592"]],[9,10,["H3190"]],[10,12,["H2009"]],[12,16,["H571"]],[16,19,["H1697"]],[19,20,["H3559"]],[20,22,["H2063"]],[22,23,["H8441"]],[23,25,["H6213"]],[25,26,["H7130"]],[26,27,[]]]},{"k":5287,"v":[[0,4,["H5221","H5221","(H853)"]],[4,6,["H3427"]],[6,8,["H1931"]],[8,9,["H5892"]],[9,12,["H6310"]],[12,15,["H2719"]],[15,18,["H2763","(H853)"]],[18,20,["H3605"]],[20,21,["H834"]],[21,26,["H929"]],[26,30,["H6310"]],[30,33,["H2719"]]]},{"k":5288,"v":[[0,4,["H6908"]],[4,5,["H3605"]],[5,7,["H7998"]],[7,10,["H413"]],[10,12,["H8432"]],[12,15,["H7339"]],[15,19,["H8313"]],[19,21,["H784","(H853)"]],[21,23,["H5892"]],[23,25,["H3605"]],[25,27,["H7998"]],[27,30,["H3632"]],[30,33,["H3068"]],[33,35,["H430"]],[35,39,["H1961"]],[39,41,["H8510"]],[41,43,["H5769"]],[43,46,["H3808"]],[46,48,["H1129"]],[48,49,["H5750"]]]},{"k":5289,"v":[[0,4,["H1692"]],[4,5,["H3808","H3972"]],[5,6,["H4480"]],[6,9,["H2764"]],[9,12,["H3027"]],[12,13,["H4616"]],[13,15,["H3068"]],[15,17,["H7725"]],[17,20,["H4480","H2740"]],[20,23,["H639"]],[23,25,["H5414"]],[25,27,["H7356"]],[27,30,["H7355"]],[30,34,["H7235"]],[34,36,["H834"]],[36,39,["H7650"]],[39,42,["H1"]]]},{"k":5290,"v":[[0,1,["H3588"]],[1,4,["H8085"]],[4,7,["H6963"]],[7,10,["H3068"]],[10,12,["H430"]],[12,14,["H8104","(H853)"]],[14,15,["H3605"]],[15,17,["H4687"]],[17,18,["H834"]],[18,19,["H595"]],[19,20,["H6680"]],[20,23,["H3117"]],[23,25,["H6213"]],[25,29,["H3477"]],[29,32,["H5869"]],[32,35,["H3068"]],[35,37,["H430"]]]},{"k":5291,"v":[[0,1,["H859"]],[1,4,["H1121"]],[4,7,["H3068"]],[7,9,["H430"]],[9,12,["H3808"]],[12,14,["H1413"]],[14,15,["H3808"]],[15,16,["H7760"]],[16,18,["H7144"]],[18,19,["H996"]],[19,21,["H5869"]],[21,24,["H4191"]]]},{"k":5292,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,5,["H6918"]],[5,6,["H5971"]],[6,9,["H3068"]],[9,11,["H430"]],[11,14,["H3068"]],[14,16,["H977"]],[16,19,["H1961"]],[19,21,["H5459"]],[21,22,["H5971"]],[22,26,["H4480","H3605"]],[26,28,["H5971"]],[28,29,["H834"]],[29,31,["H5921","H6440"]],[31,33,["H127"]]]},{"k":5293,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,5,["H3605"]],[5,7,["H8441"]]]},{"k":5294,"v":[[0,1,["H2063"]],[1,4,["H929"]],[4,5,["H834"]],[5,8,["H398"]],[8,10,["H7794"]],[10,12,["H7716","H3775"]],[12,15,["H7716","H5795"]]]},{"k":5295,"v":[[0,2,["H354"]],[2,5,["H6643"]],[5,9,["H3180"]],[9,13,["H689"]],[13,16,["H1788"]],[16,20,["H8377"]],[20,23,["H2169"]]]},{"k":5296,"v":[[0,2,["H3605"]],[2,3,["H929"]],[3,5,["H6536"]],[5,7,["H6541"]],[7,9,["H8156"]],[9,11,["H8157"]],[11,13,["H8147"]],[13,14,["H6541"]],[14,16,["H5927"]],[16,18,["H1625"]],[18,21,["H929"]],[21,25,["H398"]]]},{"k":5297,"v":[[0,1,["H389","(H853)"]],[1,2,["H2088"]],[2,5,["H3808"]],[5,6,["H398"]],[6,10,["H4480","H5927"]],[10,12,["H1625"]],[12,17,["H4480","H6536"]],[17,19,["H8156"]],[19,20,["H6541"]],[20,21,["(H853)"]],[21,23,["H1581"]],[23,26,["H768"]],[26,29,["H8227"]],[29,30,["H3588"]],[30,31,["H1992"]],[31,32,["H5927"]],[32,34,["H1625"]],[34,36,["H6536"]],[36,37,["H3808"]],[37,39,["H6541"]],[39,41,["H1992"]],[41,43,["H2931"]],[43,45,[]]]},{"k":5298,"v":[[0,3,["H2386"]],[3,4,["H3588"]],[4,5,["H1931"]],[5,6,["H6536"]],[6,8,["H6541"]],[8,11,["H3808"]],[11,13,["H1625"]],[13,14,["H1931"]],[14,16,["H2931"]],[16,21,["H3808"]],[21,22,["H398"]],[22,25,["H4480","H1320"]],[25,26,["H3808"]],[26,27,["H5060"]],[27,30,["H5038"]]]},{"k":5299,"v":[[0,0,["(H853)"]],[0,1,["H2088"]],[1,4,["H398"]],[4,6,["H4480","H3605"]],[6,7,["H834"]],[7,11,["H4325"]],[11,12,["H3605"]],[12,13,["H834"]],[13,15,["H5579"]],[15,17,["H7193"]],[17,20,["H398"]]]},{"k":5300,"v":[[0,2,["H3605","H834"]],[2,4,["H369"]],[4,5,["H5579"]],[5,7,["H7193"]],[7,10,["H3808"]],[10,11,["H398"]],[11,12,["H1931"]],[12,14,["H2931"]],[14,16,[]]]},{"k":5301,"v":[[0,2,["H3605"]],[2,3,["H2889"]],[3,4,["H6833"]],[4,7,["H398"]]]},{"k":5302,"v":[[0,2,["H2088"]],[2,6,["H834"]],[6,9,["H3808"]],[9,10,["H398"]],[10,12,["H5404"]],[12,15,["H6538"]],[15,18,["H5822"]]]},{"k":5303,"v":[[0,3,["H7201"]],[3,6,["H344"]],[6,9,["H1772"]],[9,12,["H4327"]]]},{"k":5304,"v":[[0,2,["H3605"]],[2,3,["H6158"]],[3,6,["H4327"]]]},{"k":5305,"v":[[0,3,["H1323","H3284"]],[3,7,["H8464"]],[7,10,["H7828"]],[10,13,["H5322"]],[13,16,["H4327"]]]},{"k":5306,"v":[[0,0,["(H853)"]],[0,3,["H3563"]],[3,7,["H3244"]],[7,10,["H8580"]]]},{"k":5307,"v":[[0,3,["H6893"]],[3,7,["H7360"]],[7,10,["H7994"]]]},{"k":5308,"v":[[0,3,["H2624"]],[3,6,["H601"]],[6,9,["H4327"]],[9,12,["H1744"]],[12,15,["H5847"]]]},{"k":5309,"v":[[0,2,["H3605"]],[2,4,["H8318"]],[4,6,["H5775"]],[6,8,["H2931"]],[8,13,["H3808"]],[13,15,["H398"]]]},{"k":5310,"v":[[0,3,["H3605"]],[3,4,["H2889"]],[4,5,["H5775"]],[5,8,["H398"]]]},{"k":5311,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,6,["H3605"]],[6,11,["H5038"]],[11,14,["H5414"]],[14,18,["H1616"]],[18,19,["H834"]],[19,23,["H8179"]],[23,27,["H398"]],[27,29,["H176"]],[29,32,["H4376"]],[32,36,["H5237"]],[36,37,["H3588"]],[37,38,["H859"]],[38,41,["H6918"]],[41,42,["H5971"]],[42,45,["H3068"]],[45,47,["H430"]],[47,50,["H3808"]],[50,51,["H1310"]],[51,53,["H1423"]],[53,56,["H517"]],[56,57,["H2461"]]]},{"k":5312,"v":[[0,4,["H6237","H6237","(H853)"]],[4,5,["H3605"]],[5,7,["H8393"]],[7,10,["H2233"]],[10,13,["H7704"]],[13,15,["H3318"]],[15,16,["H8141"]],[16,18,["H8141"]]]},{"k":5313,"v":[[0,4,["H398"]],[4,5,["H6440"]],[5,7,["H3068"]],[7,9,["H430"]],[9,12,["H4725"]],[12,13,["H834"]],[13,16,["H977"]],[16,18,["H7931"]],[18,20,["H8034"]],[20,21,["H8033"]],[21,23,["H4643"]],[23,26,["H1715"]],[26,29,["H8492"]],[29,33,["H3323"]],[33,36,["H1062"]],[36,39,["H1241"]],[39,43,["H6629"]],[43,44,["H4616"]],[44,47,["H3925"]],[47,49,["H3372","(H853)"]],[49,51,["H3068"]],[51,53,["H430"]],[53,54,["H3605","H3117"]]]},{"k":5314,"v":[[0,2,["H3588"]],[2,4,["H1870"]],[4,7,["H7235"]],[7,8,["H4480"]],[8,11,["H3588"]],[11,15,["H3201","H3808"]],[15,17,["H5375"]],[17,20,["H3588"]],[20,22,["H4725"]],[22,25,["H7368"]],[25,26,["H4480"]],[26,28,["H834"]],[28,30,["H3068"]],[30,32,["H430"]],[32,34,["H977"]],[34,36,["H7760"]],[36,38,["H8034"]],[38,39,["H8033"]],[39,40,["H3588"]],[40,42,["H3068"]],[42,44,["H430"]],[44,46,["H1288"]],[46,47,[]]]},{"k":5315,"v":[[0,4,["H5414"]],[4,7,["H3701"]],[7,10,["H6696"]],[10,12,["H3701"]],[12,15,["H3027"]],[15,18,["H1980"]],[18,19,["H413"]],[19,21,["H4725"]],[21,22,["H834"]],[22,24,["H3068"]],[24,26,["H430"]],[26,28,["H977"]]]},{"k":5316,"v":[[0,4,["H5414"]],[4,6,["H3701"]],[6,8,["H3605","H834"]],[8,10,["H5315"]],[10,12,["H183"]],[12,14,["H1241"]],[14,17,["H6629"]],[17,20,["H3196"]],[20,24,["H7941"]],[24,27,["H3605","H834"]],[27,29,["H5315"]],[29,30,["H7592"]],[30,34,["H398"]],[34,35,["H8033"]],[35,36,["H6440"]],[36,38,["H3068"]],[38,40,["H430"]],[40,44,["H8055"]],[44,45,["H859"]],[45,48,["H1004"]]]},{"k":5317,"v":[[0,3,["H3881"]],[3,4,["H834"]],[4,8,["H8179"]],[8,11,["H3808"]],[11,12,["H5800"]],[12,14,["H3588"]],[14,17,["H369"]],[17,18,["H2506"]],[18,20,["H5159"]],[20,21,["H5973"]],[21,22,[]]]},{"k":5318,"v":[[0,3,["H4480","H7097"]],[3,5,["H7969"]],[5,6,["H8141"]],[6,10,["H3318","(H853)"]],[10,11,["H3605"]],[11,13,["H4643"]],[13,16,["H8393"]],[16,18,["H1931"]],[18,19,["H8141"]],[19,24,["H5117"]],[24,27,["H8179"]]]},{"k":5319,"v":[[0,3,["H3881"]],[3,4,["H3588"]],[4,7,["H369"]],[7,8,["H2506"]],[8,10,["H5159"]],[10,11,["H5973"]],[11,15,["H1616"]],[15,18,["H3490"]],[18,21,["H490"]],[21,22,["H834"]],[22,26,["H8179"]],[26,28,["H935"]],[28,31,["H398"]],[31,34,["H7646"]],[34,35,["H4616"]],[35,37,["H3068"]],[37,39,["H430"]],[39,41,["H1288"]],[41,44,["H3605"]],[44,46,["H4639"]],[46,49,["H3027"]],[49,50,["H834"]],[50,52,["H6213"]]]},{"k":5320,"v":[[0,3,["H4480","H7093"]],[3,6,["H7651"]],[6,7,["H8141"]],[7,10,["H6213"]],[10,12,["H8059"]]]},{"k":5321,"v":[[0,2,["H2088"]],[2,5,["H1697"]],[5,8,["H8059"]],[8,9,["H3605"]],[9,10,["H1167","H4874","H3027"]],[10,11,["H834"]],[11,12,["H5383"]],[12,16,["H7453"]],[16,18,["H8058"]],[18,22,["H3808"]],[22,23,["H5065","(H853)"]],[23,27,["H7453"]],[27,31,["H251"]],[31,32,["H3588"]],[32,35,["H7121"]],[35,37,["H3068"]],[37,38,["H8059"]]]},{"k":5322,"v":[[0,1,["(H853)"]],[1,3,["H5237"]],[3,6,["H5065"]],[6,11,["H834"]],[11,12,["H1961"]],[12,14,["H854"]],[14,16,["H251"]],[16,18,["H3027"]],[18,20,["H8058"]]]},{"k":5323,"v":[[0,1,["H657"]],[1,2,["H3588"]],[2,5,["H1961"]],[5,6,["H3808"]],[6,7,["H34"]],[7,10,["H3588"]],[10,12,["H3068"]],[12,15,["H1288","H1288"]],[15,19,["H776"]],[19,20,["H834"]],[20,22,["H3068"]],[22,24,["H430"]],[24,25,["H5414"]],[25,29,["H5159"]],[29,31,["H3423"]],[31,32,[]]]},{"k":5324,"v":[[0,1,["H7535"]],[1,2,["H518"]],[2,5,["H8085","H8085"]],[5,8,["H6963"]],[8,11,["H3068"]],[11,13,["H430"]],[13,15,["H8104"]],[15,17,["H6213","(H853)"]],[17,18,["H3605"]],[18,19,["H2063"]],[19,20,["H4687"]],[20,21,["H834"]],[21,22,["H595"]],[22,23,["H6680"]],[23,26,["H3117"]]]},{"k":5325,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,6,["H1288"]],[6,8,["H834"]],[8,10,["H1696"]],[10,15,["H5670"]],[15,17,["H7227"]],[17,18,["H1471"]],[18,20,["H859"]],[20,22,["H3808"]],[22,23,["H5670"]],[23,27,["H4910"]],[27,29,["H7227"]],[29,30,["H1471"]],[30,34,["H3808"]],[34,35,["H4910"]],[35,37,[]]]},{"k":5326,"v":[[0,1,["H3588"]],[1,3,["H1961"]],[3,8,["H34"]],[8,10,["H4480","H259"]],[10,13,["H251"]],[13,15,["H259"]],[15,18,["H8179"]],[18,21,["H776"]],[21,22,["H834"]],[22,24,["H3068"]],[24,26,["H430"]],[26,27,["H5414"]],[27,31,["H3808"]],[31,32,["H553","(H853)"]],[32,34,["H3824"]],[34,35,["H3808"]],[35,36,["H7092","(H853)"]],[36,38,["H3027"]],[38,41,["H34"]],[41,42,["H4480","H251"]]]},{"k":5327,"v":[[0,1,["H3588"]],[1,4,["H6605","(H853)"]],[4,6,["H3027"]],[6,7,["H6605"]],[7,13,["H5670","H5670"]],[13,15,["H1767"]],[15,18,["H4270"]],[18,21,["H834"]],[21,23,["H2637"]]]},{"k":5328,"v":[[0,1,["H8104"]],[1,2,["H6435"]],[2,4,["H1961"]],[4,7,["H1697"]],[7,8,["H5973"]],[8,10,["H1100"]],[10,11,["H3824"]],[11,12,["H559"]],[12,14,["H7651"]],[14,15,["H8141"]],[15,17,["H8141"]],[17,19,["H8059"]],[19,22,["H7126"]],[22,25,["H5869"]],[25,27,["H7489"]],[27,30,["H34"]],[30,31,["H251"]],[31,34,["H5414"]],[34,36,["H3808"]],[36,39,["H7121"]],[39,40,["H413"]],[40,42,["H3068"]],[42,43,["H5921"]],[43,47,["H1961"]],[47,48,["H2399"]],[48,50,[]]]},{"k":5329,"v":[[0,4,["H5414","H5414"]],[4,8,["H3824"]],[8,10,["H3808"]],[10,12,["H7489"]],[12,15,["H5414"]],[15,19,["H3588"]],[19,20,["H1558"]],[20,21,["H2088"]],[21,22,["H1697"]],[22,24,["H3068"]],[24,26,["H430"]],[26,28,["H1288"]],[28,31,["H3605"]],[31,33,["H4639"]],[33,36,["H3605"]],[36,39,["H4916"]],[39,41,["H3027"]],[41,42,[]]]},{"k":5330,"v":[[0,1,["H3588"]],[1,3,["H34"]],[3,5,["H3808"]],[5,6,["H2308"]],[6,8,["H4480","H7130"]],[8,10,["H776"]],[10,11,["H5921","H3651"]],[11,12,["H595"]],[12,13,["H6680"]],[13,15,["H559"]],[15,18,["H6605","(H853)"]],[18,20,["H3027"]],[20,21,["H6605"]],[21,24,["H251"]],[24,27,["H6041"]],[27,31,["H34"]],[31,34,["H776"]]]},{"k":5331,"v":[[0,2,["H3588"]],[2,4,["H251"]],[4,7,["H5680"]],[7,8,["H176"]],[8,11,["H5680"]],[11,13,["H4376"]],[13,17,["H5647"]],[17,19,["H8337"]],[19,20,["H8141"]],[20,24,["H7637"]],[24,25,["H8141"]],[25,30,["H7971"]],[30,31,["H2670"]],[31,32,["H4480","H5973"]],[32,33,[]]]},{"k":5332,"v":[[0,2,["H3588"]],[2,6,["H7971"]],[6,7,["H2670"]],[7,8,["H4480","H5973"]],[8,12,["H3808"]],[12,16,["H7971"]],[16,17,["H7387"]]]},{"k":5333,"v":[[0,5,["H6059","H6059"]],[5,9,["H4480","H6629"]],[9,14,["H4480","H1637"]],[14,19,["H4480","H3342"]],[19,22,["H834"]],[22,24,["H3068"]],[24,26,["H430"]],[26,28,["H1288"]],[28,32,["H5414"]],[32,34,[]]]},{"k":5334,"v":[[0,4,["H2142"]],[4,5,["H3588"]],[5,7,["H1961"]],[7,9,["H5650"]],[9,12,["H776"]],[12,14,["H4714"]],[14,17,["H3068"]],[17,19,["H430"]],[19,20,["H6299"]],[20,22,["H5921","H3651"]],[22,23,["H595"]],[23,24,["H6680"]],[24,25,["(H853)"]],[25,26,["H2088"]],[26,27,["H1697"]],[27,29,["H3117"]]]},{"k":5335,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,7,["H559"]],[7,8,["H413"]],[8,12,["H3808"]],[12,14,["H3318"]],[14,15,["H4480","H5973"]],[15,17,["H3588"]],[17,19,["H157"]],[19,23,["H1004"]],[23,24,["H3588"]],[24,27,["H2896"]],[27,28,["H5973"]],[28,29,[]]]},{"k":5336,"v":[[0,4,["H3947","(H853)"]],[4,6,["H4836"]],[6,8,["H5414"]],[8,12,["H241"]],[12,15,["H1817"]],[15,19,["H1961"]],[19,21,["H5650"]],[21,23,["H5769"]],[23,25,["H637"]],[25,28,["H519"]],[28,31,["H6213"]],[31,32,["H3651"]]]},{"k":5337,"v":[[0,3,["H3808"]],[3,7,["H7185","H5869"]],[7,12,["H7971","(H853)"]],[12,13,["H2670"]],[13,14,["H4480","H5973"]],[14,16,["H3588"]],[16,20,["H7939"]],[20,22,["H4932"]],[22,24,["H7916"]],[24,28,["H5647"]],[28,30,["H8337"]],[30,31,["H8141"]],[31,34,["H3068"]],[34,36,["H430"]],[36,38,["H1288"]],[38,41,["H3605"]],[41,42,["H834"]],[42,44,["H6213"]]]},{"k":5338,"v":[[0,1,["H3605"]],[1,3,["H1060"]],[3,4,["H2145"]],[4,5,["H834"]],[5,6,["H3205"]],[6,9,["H1241"]],[9,13,["H6629"]],[13,16,["H6942"]],[16,19,["H3068"]],[19,21,["H430"]],[21,25,["H3808"]],[25,26,["H5647"]],[26,29,["H1060"]],[29,32,["H7794"]],[32,33,["H3808"]],[33,34,["H1494"]],[34,36,["H1060"]],[36,39,["H6629"]]]},{"k":5339,"v":[[0,3,["H398"]],[3,5,["H6440"]],[5,7,["H3068"]],[7,9,["H430"]],[9,10,["H8141"]],[10,12,["H8141"]],[12,15,["H4725"]],[15,16,["H834"]],[16,18,["H3068"]],[18,20,["H977"]],[20,21,["H859"]],[21,24,["H1004"]]]},{"k":5340,"v":[[0,2,["H3588"]],[2,4,["H1961"]],[4,6,["H3971"]],[6,12,["H6455"]],[12,13,["H176"]],[13,14,["H5787"]],[14,17,["H3605"]],[17,18,["H7451"]],[18,19,["H3971"]],[19,22,["H3808"]],[22,23,["H2076"]],[23,27,["H3068"]],[27,29,["H430"]]]},{"k":5341,"v":[[0,3,["H398"]],[3,7,["H8179"]],[7,9,["H2931"]],[9,12,["H2889"]],[12,17,["H3162"]],[17,20,["H6643"]],[20,24,["H354"]]]},{"k":5342,"v":[[0,1,["H7535"]],[1,4,["H3808"]],[4,5,["H398","(H853)"]],[5,7,["H1818"]],[7,11,["H8210"]],[11,13,["H5921"]],[13,15,["H776"]],[15,17,["H4325"]]]},{"k":5343,"v":[[0,1,["H8104","(H853)"]],[1,3,["H2320"]],[3,5,["H24"]],[5,7,["H6213"]],[7,9,["H6453"]],[9,12,["H3068"]],[12,14,["H430"]],[14,15,["H3588"]],[15,18,["H2320"]],[18,20,["H24"]],[20,22,["H3068"]],[22,24,["H430"]],[24,27,["H3318"]],[27,30,["H4480","H4714"]],[30,32,["H3915"]]]},{"k":5344,"v":[[0,4,["H2076"]],[4,6,["H6453"]],[6,9,["H3068"]],[9,11,["H430"]],[11,14,["H6629"]],[14,17,["H1241"]],[17,20,["H4725"]],[20,21,["H834"]],[21,23,["H3068"]],[23,25,["H977"]],[25,27,["H7931"]],[27,29,["H8034"]],[29,30,["H8033"]]]},{"k":5345,"v":[[0,3,["H398"]],[3,4,["H3808"]],[4,6,["H2557"]],[6,7,["H5921"]],[7,9,["H7651"]],[9,10,["H3117"]],[10,13,["H398"]],[13,15,["H4682"]],[15,16,["H5921"]],[16,19,["H3899"]],[19,21,["H6040"]],[21,22,["H3588"]],[22,25,["H3318"]],[25,29,["H4480","H776"]],[29,31,["H4714"]],[31,33,["H2649"]],[33,34,["H4616"]],[34,37,["H2142","(H853)"]],[37,39,["H3117"]],[39,43,["H3318"]],[43,47,["H4480","H776"]],[47,49,["H4714"]],[49,50,["H3605"]],[50,52,["H3117"]],[52,55,["H2416"]]]},{"k":5346,"v":[[0,5,["H3808"]],[5,7,["H7603"]],[7,8,["H7200"]],[8,12,["H3605"]],[12,14,["H1366"]],[14,15,["H7651"]],[15,16,["H3117"]],[16,17,["H3808"]],[17,22,["H4480"]],[22,24,["H1320"]],[24,25,["H834"]],[25,27,["H2076"]],[27,29,["H7223"]],[29,30,["H3117"]],[30,32,["H6153"]],[32,35,["H3885"]],[35,38,["H1242"]]]},{"k":5347,"v":[[0,2,["H3201"]],[2,3,["H3808"]],[3,4,["H2076","(H853)"]],[4,6,["H6453"]],[6,8,["H259"]],[8,11,["H8179"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H430"]],[16,17,["H5414"]],[17,18,[]]]},{"k":5348,"v":[[0,1,["H3588","H518"]],[1,2,["H413"]],[2,4,["H4725"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H430"]],[9,11,["H977"]],[11,13,["H7931"]],[13,15,["H8034"]],[15,17,["H8033"]],[17,20,["H2076","(H853)"]],[20,22,["H6453"]],[22,24,["H6153"]],[24,28,["H935"]],[28,31,["H8121"]],[31,34,["H4150"]],[34,38,["H3318"]],[38,41,["H4480","H4714"]]]},{"k":5349,"v":[[0,4,["H1310"]],[4,6,["H398"]],[6,10,["H4725"]],[10,11,["H834"]],[11,13,["H3068"]],[13,15,["H430"]],[15,17,["H977"]],[17,21,["H6437"]],[21,24,["H1242"]],[24,26,["H1980"]],[26,29,["H168"]]]},{"k":5350,"v":[[0,1,["H8337"]],[1,2,["H3117"]],[2,5,["H398"]],[5,7,["H4682"]],[7,11,["H7637"]],[11,12,["H3117"]],[12,17,["H6116"]],[17,20,["H3068"]],[20,22,["H430"]],[22,25,["H6213"]],[25,26,["H3808"]],[26,27,["H4399"]],[27,28,[]]]},{"k":5351,"v":[[0,1,["H7651"]],[1,2,["H7620"]],[2,5,["H5608"]],[5,8,["H2490"]],[8,10,["H5608"]],[10,12,["H7651"]],[12,13,["H7620"]],[13,19,["H4480","H2490"]],[19,23,["H2770"]],[23,26,["H7054"]]]},{"k":5352,"v":[[0,4,["H6213"]],[4,6,["H2282"]],[6,8,["H7620"]],[8,11,["H3068"]],[11,13,["H430"]],[13,16,["H4530"]],[16,20,["H5071"]],[20,23,["H3027"]],[23,24,["H834"]],[24,27,["H5414"]],[27,34,["H834"]],[34,36,["H3068"]],[36,38,["H430"]],[38,40,["H1288"]],[40,41,[]]]},{"k":5353,"v":[[0,4,["H8055"]],[4,5,["H6440"]],[5,7,["H3068"]],[7,9,["H430"]],[9,10,["H859"]],[10,13,["H1121"]],[13,16,["H1323"]],[16,19,["H5650"]],[19,22,["H519"]],[22,25,["H3881"]],[25,26,["H834"]],[26,30,["H8179"]],[30,33,["H1616"]],[33,36,["H3490"]],[36,39,["H490"]],[39,40,["H834"]],[40,42,["H7130"]],[42,46,["H4725"]],[46,47,["H834"]],[47,49,["H3068"]],[49,51,["H430"]],[51,53,["H977"]],[53,55,["H7931"]],[55,57,["H8034"]],[57,58,["H8033"]]]},{"k":5354,"v":[[0,4,["H2142"]],[4,5,["H3588"]],[5,7,["H1961"]],[7,9,["H5650"]],[9,11,["H4714"]],[11,15,["H8104"]],[15,17,["H6213","(H853)"]],[17,18,["H428"]],[18,19,["H2706"]]]},{"k":5355,"v":[[0,3,["H6213"]],[3,5,["H2282"]],[5,7,["H5521"]],[7,8,["H7651"]],[8,9,["H3117"]],[9,14,["H622"]],[14,17,["H4480","H1637"]],[17,20,["H4480","H3342"]]]},{"k":5356,"v":[[0,4,["H8055"]],[4,7,["H2282"]],[7,8,["H859"]],[8,11,["H1121"]],[11,14,["H1323"]],[14,17,["H5650"]],[17,20,["H519"]],[20,23,["H3881"]],[23,25,["H1616"]],[25,28,["H3490"]],[28,31,["H490"]],[31,32,["H834"]],[32,36,["H8179"]]]},{"k":5357,"v":[[0,1,["H7651"]],[1,2,["H3117"]],[2,8,["H2287"]],[8,11,["H3068"]],[11,13,["H430"]],[13,16,["H4725"]],[16,17,["H834"]],[17,19,["H3068"]],[19,21,["H977"]],[21,22,["H3588"]],[22,24,["H3068"]],[24,26,["H430"]],[26,28,["H1288"]],[28,31,["H3605"]],[31,33,["H8393"]],[33,36,["H3605"]],[36,38,["H4639"]],[38,41,["H3027"]],[41,44,["H1961"]],[44,45,["H389"]],[45,46,["H8056"]]]},{"k":5358,"v":[[0,1,["H7969"]],[1,2,["H6471"]],[2,5,["H8141"]],[5,7,["H3605"]],[7,9,["H2138"]],[9,10,["H7200","(H853)"]],[10,11,["H6440"]],[11,13,["H3068"]],[13,15,["H430"]],[15,18,["H4725"]],[18,19,["H834"]],[19,22,["H977"]],[22,25,["H2282"]],[25,28,["H4682"]],[28,32,["H2282"]],[32,34,["H7620"]],[34,38,["H2282"]],[38,40,["H5521"]],[40,44,["H3808"]],[44,45,["H7200","(H853)"]],[45,46,["H6440"]],[46,48,["H3068"]],[48,49,["H7387"]]]},{"k":5359,"v":[[0,2,["H376"]],[2,8,["H4979","H3027"]],[8,12,["H1293"]],[12,15,["H3068"]],[15,17,["H430"]],[17,18,["H834"]],[18,21,["H5414"]],[21,22,[]]]},{"k":5360,"v":[[0,1,["H8199"]],[1,3,["H7860"]],[3,6,["H5414"]],[6,9,["H3605"]],[9,11,["H8179"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H430"]],[16,17,["H5414"]],[17,21,["H7626"]],[21,25,["H8199","(H853)"]],[25,27,["H5971"]],[27,29,["H6664"]],[29,30,["H4941"]]]},{"k":5361,"v":[[0,3,["H3808"]],[3,4,["H5186"]],[4,5,["H4941"]],[5,8,["H3808"]],[8,9,["H5234"]],[9,10,["H6440"]],[10,11,["H3808"]],[11,12,["H3947"]],[12,14,["H7810"]],[14,15,["H3588"]],[15,17,["H7810"]],[17,19,["H5786"]],[19,21,["H5869"]],[21,24,["H2450"]],[24,26,["H5557"]],[26,28,["H1697"]],[28,31,["H6662"]]]},{"k":5362,"v":[[0,5,["H6664","H6664"]],[5,8,["H7291"]],[8,9,["H4616"]],[9,12,["H2421"]],[12,14,["H3423","(H853)"]],[14,16,["H776"]],[16,17,["H834"]],[17,19,["H3068"]],[19,21,["H430"]],[21,22,["H5414"]],[22,23,[]]]},{"k":5363,"v":[[0,3,["H3808"]],[3,4,["H5193"]],[4,7,["H842"]],[7,9,["H3605"]],[9,10,["H6086"]],[10,11,["H681"]],[11,14,["H4196"]],[14,17,["H3068"]],[17,19,["H430"]],[19,20,["H834"]],[20,23,["H6213"]],[23,24,[]]]},{"k":5364,"v":[[0,1,["H3808"]],[1,6,["H6965"]],[6,8,["H4676"]],[8,9,["H834"]],[9,11,["H3068"]],[11,13,["H430"]],[13,14,["H8130"]]]},{"k":5365,"v":[[0,3,["H3808"]],[3,4,["H2076"]],[4,7,["H3068"]],[7,9,["H430"]],[9,11,["H7794"]],[11,13,["H7716"]],[13,14,["H834"]],[14,15,["H1961"]],[15,16,["H3971"]],[16,18,["H3605"]],[18,19,["H1697","H7451"]],[19,20,["H3588"]],[20,21,["H1931"]],[21,24,["H8441"]],[24,27,["H3068"]],[27,29,["H430"]]]},{"k":5366,"v":[[0,1,["H3588"]],[1,4,["H4672"]],[4,5,["H7130"]],[5,8,["H259"]],[8,11,["H8179"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H430"]],[16,17,["H5414"]],[17,19,["H376"]],[19,20,["H176"]],[20,21,["H802"]],[21,22,["H834"]],[22,24,["H6213","(H853)"]],[24,25,["H7451"]],[25,28,["H5869"]],[28,31,["H3068"]],[31,33,["H430"]],[33,35,["H5674"]],[35,37,["H1285"]]]},{"k":5367,"v":[[0,3,["H1980"]],[3,5,["H5647"]],[5,6,["H312"]],[6,7,["H430"]],[7,9,["H7812"]],[9,13,["H8121"]],[13,14,["H176"]],[14,15,["H3394"]],[15,16,["H176"]],[16,17,["H3605"]],[17,20,["H6635"]],[20,22,["H8064"]],[22,23,["H834"]],[23,26,["H3808"]],[26,27,["H6680"]]]},{"k":5368,"v":[[0,4,["H5046"]],[4,9,["H8085"]],[9,13,["H1875"]],[13,14,["H3190"]],[14,16,["H2009"]],[16,19,["H571"]],[19,22,["H1697"]],[22,23,["H3559"]],[23,25,["H2063"]],[25,26,["H8441"]],[26,28,["H6213"]],[28,30,["H3478"]]]},{"k":5369,"v":[[0,5,["H3318","(H853)"]],[5,6,["H1931"]],[6,7,["H376"]],[7,8,["H176"]],[8,9,["H1931"]],[9,10,["H802"]],[10,11,["H834"]],[11,13,["H6213","(H853)"]],[13,14,["H2088"]],[14,15,["H7451"]],[15,16,["H1697"]],[16,17,["H413"]],[17,19,["H8179"]],[19,20,["(H853)"]],[20,22,["H376"]],[22,23,["H176","(H853)"]],[23,25,["H802"]],[25,28,["H5619"]],[28,31,["H68"]],[31,34,["H4191"]]]},{"k":5370,"v":[[0,1,["H5921"]],[1,3,["H6310"]],[3,5,["H8147"]],[5,6,["H5707"]],[6,7,["H176"]],[7,8,["H7969"]],[8,9,["H5707"]],[9,16,["H4191"]],[16,20,["H4191"]],[20,22,["H5921"]],[22,24,["H6310"]],[24,26,["H259"]],[26,27,["H5707"]],[27,30,["H3808"]],[30,34,["H4191"]]]},{"k":5371,"v":[[0,2,["H3027"]],[2,5,["H5707"]],[5,7,["H1961"]],[7,8,["H7223"]],[8,15,["H4191"]],[15,17,["H314"]],[17,19,["H3027"]],[19,21,["H3605"]],[21,23,["H5971"]],[23,30,["H1197","H7451"]],[30,32,["H4480","H7130"]],[32,33,[]]]},{"k":5372,"v":[[0,1,["H3588"]],[1,7,["H6381","H1697"]],[7,8,["H4480"]],[8,11,["H4941"]],[11,12,["H996"]],[12,13,["H1818"]],[13,15,["H1818"]],[15,16,["H996"]],[16,17,["H1779"]],[17,19,["H1779"]],[19,21,["H996"]],[21,22,["H5061"]],[22,24,["H5061"]],[24,26,["H1697"]],[26,28,["H7379"]],[28,31,["H8179"]],[31,35,["H6965"]],[35,39,["H5927"]],[39,40,["H413"]],[40,42,["H4725"]],[42,43,["H834"]],[43,45,["H3068"]],[45,47,["H430"]],[47,49,["H977"]]]},{"k":5373,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H3548"]],[7,9,["H3881"]],[9,11,["H413"]],[11,13,["H8199"]],[13,14,["H834"]],[14,16,["H1961"]],[16,18,["H1992"]],[18,19,["H3117"]],[19,21,["H1875"]],[21,25,["H5046"]],[25,26,["(H853)"]],[26,28,["H1697"]],[28,30,["H4941"]]]},{"k":5374,"v":[[0,4,["H6213"]],[4,6,["H5921","H6310"]],[6,8,["H1697"]],[8,9,["H834"]],[9,11,["H4480"]],[11,12,["H1931"]],[12,13,["H4725"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H977"]],[18,20,["H5046"]],[20,25,["H8104"]],[25,27,["H6213"]],[27,30,["H3605"]],[30,31,["H834"]],[31,33,["H3384"]],[33,34,[]]]},{"k":5375,"v":[[0,2,["H5921"]],[2,4,["H6310"]],[4,7,["H8451"]],[7,8,["H834"]],[8,11,["H3384"]],[11,15,["H5921"]],[15,17,["H4941"]],[17,18,["H834"]],[18,21,["H559"]],[21,25,["H6213"]],[25,28,["H3808"]],[28,29,["H5493"]],[29,30,["H4480"]],[30,32,["H1697"]],[32,33,["H834"]],[33,36,["H5046"]],[36,41,["H3225"]],[41,45,["H8040"]]]},{"k":5376,"v":[[0,3,["H376"]],[3,4,["H834"]],[4,6,["H6213"]],[6,7,["H2087"]],[7,10,["H1115"]],[10,11,["H8085"]],[11,12,["H413"]],[12,14,["H3548"]],[14,16,["H5975"]],[16,18,["H8334"]],[18,19,["H8033"]],[19,20,["H854"]],[20,22,["H3068"]],[22,24,["H430"]],[24,25,["H176"]],[25,26,["H413"]],[26,28,["H8199"]],[28,30,["H1931"]],[30,31,["H376"]],[31,33,["H4191"]],[33,38,["H1197"]],[38,40,["H7451"]],[40,42,["H4480","H3478"]]]},{"k":5377,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H8085"]],[6,8,["H3372"]],[8,11,["H3808"]],[11,12,["H5750"]],[12,13,["H2102"]]]},{"k":5378,"v":[[0,1,["H3588"]],[1,4,["H935"]],[4,5,["H413"]],[5,7,["H776"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H430"]],[12,13,["H5414"]],[13,17,["H3423"]],[17,21,["H3427"]],[21,25,["H559"]],[25,28,["H7760"]],[28,30,["H4428"]],[30,31,["H5921"]],[31,35,["H3605"]],[35,37,["H1471"]],[37,38,["H834"]],[38,40,["H5439"]],[40,41,[]]]},{"k":5379,"v":[[0,6,["H7760","H7760"]],[6,8,["H4428"]],[8,9,["H5921"]],[9,11,["H834"]],[11,13,["H3068"]],[13,15,["H430"]],[15,17,["H977"]],[17,20,["H4480","H7130"]],[20,22,["H251"]],[22,25,["H7760"]],[25,26,["H4428"]],[26,27,["H5921"]],[27,30,["H3201"]],[30,31,["H3808"]],[31,32,["H5414"]],[32,34,["H376","H5237"]],[34,35,["H5921"]],[35,37,["H834"]],[37,39,["H3808"]],[39,41,["H251"]]]},{"k":5380,"v":[[0,1,["H7535"]],[1,4,["H3808"]],[4,5,["H7235"]],[5,6,["H5483"]],[6,9,["H3808"]],[9,10,["(H853)"]],[10,12,["H5971"]],[12,14,["H7725"]],[14,16,["H4714"]],[16,20,["H4616"]],[20,23,["H7235"]],[23,24,["H5483"]],[24,28,["H3068"]],[28,30,["H559"]],[30,35,["H3254"]],[35,36,["H7725"]],[36,37,["H3808"]],[37,38,["H5750"]],[38,39,["H2088"]],[39,40,["H1870"]]]},{"k":5381,"v":[[0,1,["H3808"]],[1,4,["H7235"]],[4,5,["H802"]],[5,10,["H3824"]],[10,13,["H5493","H3808"]],[13,14,["H3808"]],[14,17,["H3966"]],[17,18,["H7235"]],[18,21,["H3701"]],[21,23,["H2091"]]]},{"k":5382,"v":[[0,4,["H1961"]],[4,7,["H3427"]],[7,8,["H5921"]],[8,10,["H3678"]],[10,13,["H4467"]],[13,17,["H3789"]],[17,18,["(H853)"]],[18,20,["H4932"]],[20,22,["H2063"]],[22,23,["H8451"]],[23,24,["H5921"]],[24,26,["H5612"]],[26,32,["H4480","H6440"]],[32,34,["H3548"]],[34,36,["H3881"]]]},{"k":5383,"v":[[0,4,["H1961"]],[4,5,["H5973"]],[5,10,["H7121"]],[10,12,["H3605"]],[12,14,["H3117"]],[14,17,["H2416"]],[17,18,["H4616"]],[18,21,["H3925"]],[21,23,["H3372","(H853)"]],[23,25,["H3068"]],[25,27,["H430"]],[27,29,["H8104","(H853)"]],[29,30,["H3605"]],[30,32,["H1697"]],[32,34,["H2063"]],[34,35,["H8451"]],[35,37,["H428"]],[37,38,["H2706"]],[38,40,["H6213"]],[40,41,[]]]},{"k":5384,"v":[[0,3,["H3824"]],[3,5,["H1115"]],[5,7,["H7311"]],[7,10,["H4480","H251"]],[10,16,["H5493","H1115"]],[16,17,["H4480"]],[17,19,["H4687"]],[19,23,["H3225"]],[23,27,["H8040"]],[27,31,["H4616"]],[31,34,["H748"]],[34,36,["H3117"]],[36,37,["H5921"]],[37,39,["H4467"]],[39,40,["H1931"]],[40,43,["H1121"]],[43,46,["H7130"]],[46,48,["H3478"]]]},{"k":5385,"v":[[0,2,["H3548"]],[2,4,["H3881"]],[4,6,["H3605"]],[6,8,["H7626"]],[8,10,["H3878"]],[10,12,["H1961"]],[12,13,["H3808"]],[13,14,["H2506"]],[14,16,["H5159"]],[16,17,["H5973"]],[17,18,["H3478"]],[18,21,["H398"]],[21,29,["H801","H3068"]],[29,32,["H5159"]]]},{"k":5386,"v":[[0,4,["H1961"]],[4,5,["H3808"]],[5,6,["H5159"]],[6,7,["H7130"]],[7,9,["H251"]],[9,11,["H3068"]],[11,14,["H5159"]],[14,15,["H834"]],[15,18,["H1696"]],[18,20,[]]]},{"k":5387,"v":[[0,2,["H2088"]],[2,4,["H1961"]],[4,6,["H3548"]],[6,7,["H4941"]],[7,8,["H4480","H854"]],[8,10,["H5971"]],[10,11,["H4480","H854"]],[11,14,["H2076"]],[14,16,["H2077"]],[16,17,["H518"]],[17,20,["H7794"]],[20,21,["H518"]],[21,22,["H7716"]],[22,26,["H5414"]],[26,29,["H3548"]],[29,31,["H2220"]],[31,35,["H3895"]],[35,38,["H6896"]]]},{"k":5388,"v":[[0,2,["H7225"]],[2,6,["H1715"]],[6,9,["H8492"]],[9,13,["H3323"]],[13,16,["H7225"]],[16,19,["H1488"]],[19,22,["H6629"]],[22,25,["H5414"]],[25,26,[]]]},{"k":5389,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H977"]],[7,11,["H4480","H3605"]],[11,13,["H7626"]],[13,15,["H5975"]],[15,17,["H8334"]],[17,20,["H8034"]],[20,23,["H3068"]],[23,24,["H1931"]],[24,27,["H1121"]],[27,29,["H3605","H3117"]]]},{"k":5390,"v":[[0,2,["H3588"]],[2,4,["H3881"]],[4,5,["H935"]],[5,7,["H4480","H259"]],[7,10,["H8179"]],[10,13,["H4480","H3605"]],[13,14,["H3478"]],[14,15,["H834","H8033"]],[15,16,["H1931"]],[16,17,["H1481"]],[17,19,["H935"]],[19,21,["H3605"]],[21,23,["H185"]],[23,26,["H5315"]],[26,27,["H413"]],[27,29,["H4725"]],[29,30,["H834"]],[30,32,["H3068"]],[32,34,["H977"]]]},{"k":5391,"v":[[0,4,["H8334"]],[4,7,["H8034"]],[7,10,["H3068"]],[10,12,["H430"]],[12,14,["H3605"]],[14,16,["H251"]],[16,18,["H3881"]],[18,21,["H5975"]],[21,22,["H8033"]],[22,23,["H6440"]],[23,25,["H3068"]]]},{"k":5392,"v":[[0,5,["H2506","H2506"]],[5,7,["H398"]],[7,8,["H905"]],[8,14,["H4480","H4465"]],[14,15,["H5921"]],[15,17,["H1"]]]},{"k":5393,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H935"]],[4,5,["H413"]],[5,7,["H776"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H430"]],[12,13,["H5414"]],[13,17,["H3808"]],[17,18,["H3925"]],[18,20,["H6213"]],[20,23,["H8441"]],[23,25,["H1992"]],[25,26,["H1471"]]]},{"k":5394,"v":[[0,3,["H3808"]],[3,5,["H4672"]],[5,13,["H1121"]],[13,16,["H1323"]],[16,19,["H5674"]],[19,21,["H784"]],[21,24,["H7080"]],[24,25,["H7081"]],[25,30,["H6049"]],[30,33,["H5172"]],[33,36,["H3784"]]]},{"k":5395,"v":[[0,3,["H2266","H2267"]],[3,6,["H7592"]],[6,9,["H178"]],[9,12,["H3049"]],[12,15,["H1875","H413","H4191"]]]},{"k":5396,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H6213"]],[4,6,["H428"]],[6,9,["H8441"]],[9,12,["H3068"]],[12,14,["H1558"]],[14,16,["H428"]],[16,17,["H8441"]],[17,19,["H3068"]],[19,21,["H430"]],[21,25,["H3423","(H853)"]],[25,27,["H4480","H6440"]],[27,28,[]]]},{"k":5397,"v":[[0,3,["H1961"]],[3,4,["H8549"]],[4,5,["H5973"]],[5,7,["H3068"]],[7,9,["H430"]]]},{"k":5398,"v":[[0,1,["H3588"]],[1,2,["H428"]],[2,3,["H1471"]],[3,4,["H834"]],[4,5,["H859"]],[5,7,["H3423","(H853)"]],[7,8,["H8085"]],[8,9,["H413"]],[9,12,["H6049"]],[12,14,["H413"]],[14,15,["H7080"]],[15,19,["H859"]],[19,21,["H3068"]],[21,23,["H430"]],[23,25,["H3808"]],[25,26,["H5414"]],[26,28,["H3651"]],[28,30,[]]]},{"k":5399,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,7,["H6965"]],[7,11,["H5030"]],[11,14,["H4480","H7130"]],[14,19,["H4480","H251"]],[19,22,["H3644"]],[22,23,["H413"]],[23,27,["H8085"]]]},{"k":5400,"v":[[0,3,["H3605"]],[3,4,["H834"]],[4,6,["H7592"]],[6,7,["H4480","H5973"]],[7,9,["H3068"]],[9,11,["H430"]],[11,13,["H2722"]],[13,16,["H3117"]],[16,19,["H6951"]],[19,20,["H559"]],[20,23,["H3808"]],[23,24,["H8085"]],[24,25,["H3254","(H853)"]],[25,27,["H6963"]],[27,30,["H3068"]],[30,32,["H430"]],[32,33,["H3808"]],[33,36,["H7200"]],[36,37,["H2063"]],[37,38,["H1419"]],[38,39,["H784"]],[39,41,["H5750"]],[41,44,["H4191"]],[44,45,["H3808"]]]},{"k":5401,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,9,["H3190"]],[9,12,["H834"]],[12,15,["H1696"]]]},{"k":5402,"v":[[0,5,["H6965"]],[5,7,["H5030"]],[7,9,["H4480","H7130"]],[9,11,["H251"]],[11,14,["H3644"]],[14,17,["H5414"]],[17,19,["H1697"]],[19,22,["H6310"]],[22,26,["H1696"]],[26,27,["H413"]],[27,28,["(H853)"]],[28,29,["H3605"]],[29,30,["H834"]],[30,33,["H6680"]],[33,34,[]]]},{"k":5403,"v":[[0,6,["H1961"]],[6,8,["H376","H834"]],[8,10,["H3808"]],[10,11,["H8085"]],[11,12,["H413"]],[12,14,["H1697"]],[14,15,["H834"]],[15,18,["H1696"]],[18,21,["H8034"]],[21,22,["H595"]],[22,24,["H1875"]],[24,26,["H4480","H5973"]],[26,27,[]]]},{"k":5404,"v":[[0,1,["H389"]],[1,3,["H5030"]],[3,4,["H834"]],[4,6,["H2102"]],[6,8,["H1696"]],[8,10,["H1697"]],[10,13,["H8034","(H853)"]],[13,14,["H834"]],[14,17,["H3808"]],[17,18,["H6680"]],[18,21,["H1696"]],[21,23,["H834"]],[23,25,["H1696"]],[25,28,["H8034"]],[28,30,["H312"]],[30,31,["H430"]],[31,33,["H1931"]],[33,34,["H5030"]],[34,36,["H4191"]]]},{"k":5405,"v":[[0,2,["H3588"]],[2,4,["H559"]],[4,7,["H3824"]],[7,8,["H349"]],[8,11,["H3045","(H853)"]],[11,13,["H1697"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H3808"]],[18,19,["H1696"]]]},{"k":5406,"v":[[0,1,["H834"]],[1,3,["H5030"]],[3,4,["H1696"]],[4,7,["H8034"]],[7,10,["H3068"]],[10,13,["H1697"]],[13,14,["H1961"]],[14,15,["H3808"]],[15,16,["H3808"]],[16,19,["H935"]],[19,20,["H1931"]],[20,23,["H1697"]],[23,24,["H834"]],[24,26,["H3068"]],[26,28,["H3808"]],[28,29,["H1696"]],[29,32,["H5030"]],[32,34,["H1696"]],[34,36,["H2087"]],[36,39,["H3808"]],[39,41,["H1481"]],[41,42,["H4480"]],[42,43,[]]]},{"k":5407,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,8,["H3772","(H853)"]],[8,10,["H1471"]],[10,11,["H834","(H853)"]],[11,12,["H776"]],[12,14,["H3068"]],[14,16,["H430"]],[16,17,["H5414"]],[17,21,["H3423"]],[21,24,["H3427"]],[24,27,["H5892"]],[27,31,["H1004"]]]},{"k":5408,"v":[[0,3,["H914"]],[3,4,["H7969"]],[4,5,["H5892"]],[5,10,["H8432"]],[10,13,["H776"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H430"]],[18,19,["H5414"]],[19,22,["H3423"]],[22,23,[]]]},{"k":5409,"v":[[0,3,["H3559"]],[3,6,["H1870"]],[6,8,["H8027","(H853)"]],[8,10,["H1366"]],[10,13,["H776"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H430"]],[18,22,["H5157"]],[22,27,["H3605"]],[27,28,["H7523"]],[28,29,["H1961"]],[29,30,["H5127"]],[30,31,["H8033"]]]},{"k":5410,"v":[[0,2,["H2088"]],[2,5,["H1697"]],[5,8,["H7523"]],[8,9,["H834"]],[9,11,["H5127"]],[11,12,["H8033"]],[12,16,["H2425"]],[16,17,["H834"]],[17,18,["H5221","(H853)"]],[18,20,["H7453"]],[20,21,["H1097","H1847"]],[21,23,["H1931"]],[23,24,["H8130"]],[24,25,["H3808"]],[25,27,["H8032"]],[27,28,["H4480","H8657"]]]},{"k":5411,"v":[[0,4,["H834"]],[4,5,["H935"]],[5,8,["H3293"]],[8,9,["H854"]],[9,11,["H7453"]],[11,13,["H2404"]],[13,14,["H6086"]],[14,17,["H3027"]],[17,20,["H5080"]],[20,23,["H1631"]],[23,26,["H3772"]],[26,28,["H6086"]],[28,31,["H1270"]],[31,32,["H5394"]],[32,33,["H4480"]],[33,35,["H6086"]],[35,38,["H4672","(H853)"]],[38,40,["H7453"]],[40,43,["H4191"]],[43,44,["H1931"]],[44,46,["H5127"]],[46,47,["H413"]],[47,48,["H259"]],[48,50,["H428"]],[50,51,["H5892"]],[51,53,["H2425"]]]},{"k":5412,"v":[[0,1,["H6435"]],[1,3,["H1350"]],[3,6,["H1818"]],[6,7,["H7291","H310"]],[7,9,["H7523"]],[9,10,["H3588"]],[10,12,["H3824"]],[12,14,["H3179"]],[14,16,["H5381"]],[16,18,["H3588"]],[18,20,["H1870"]],[20,22,["H7235"]],[22,24,["H5221"]],[24,25,["H5315"]],[25,29,["H369"]],[29,32,["H4941","H4194"]],[32,34,["H3588"]],[34,35,["H1931"]],[35,36,["H8130"]],[36,38,["H3808"]],[38,40,["H8032"]],[40,41,["H4480","H8543"]]]},{"k":5413,"v":[[0,1,["H5921","H3651"]],[1,2,["H595"]],[2,3,["H6680"]],[3,5,["H559"]],[5,8,["H914"]],[8,9,["H7969"]],[9,10,["H5892"]],[10,12,[]]]},{"k":5414,"v":[[0,2,["H518"]],[2,4,["H3068"]],[4,6,["H430"]],[6,7,["H7337","(H853)"]],[7,9,["H1366"]],[9,10,["H834"]],[10,13,["H7650"]],[13,16,["H1"]],[16,18,["H5414"]],[18,19,["(H853)"]],[19,20,["H3605"]],[20,22,["H776"]],[22,23,["H834"]],[23,25,["H1696"]],[25,27,["H5414"]],[27,30,["H1"]]]},{"k":5415,"v":[[0,1,["H3588"]],[1,4,["H8104","(H853)"]],[4,5,["H3605"]],[5,6,["H2063"]],[6,7,["H4687"]],[7,9,["H6213"]],[9,11,["H834"]],[11,12,["H595"]],[12,13,["H6680"]],[13,16,["H3117"]],[16,18,["H157","(H853)"]],[18,20,["H3068"]],[20,22,["H430"]],[22,25,["H1980"]],[25,26,["H3605","H3117"]],[26,29,["H1870"]],[29,33,["H3254"]],[33,34,["H7969"]],[34,35,["H5892"]],[35,36,["H5750"]],[36,39,["H5921"]],[39,40,["H428"]],[40,41,["H7969"]]]},{"k":5416,"v":[[0,2,["H5355"]],[2,3,["H1818"]],[3,5,["H3808"]],[5,6,["H8210"]],[6,7,["H7130"]],[7,9,["H776"]],[9,10,["H834"]],[10,12,["H3068"]],[12,14,["H430"]],[14,15,["H5414"]],[15,19,["H5159"]],[19,22,["H1818"]],[22,23,["H1961"]],[23,24,["H5921"]],[24,25,[]]]},{"k":5417,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H1961","H8130"]],[5,7,["H7453"]],[7,11,["H693"]],[11,16,["H6965"]],[16,17,["H5921"]],[17,20,["H5221"]],[20,22,["H5315"]],[22,25,["H4191"]],[25,27,["H5127"]],[27,28,["H413"]],[28,29,["H259"]],[29,31,["H411"]],[31,32,["H5892"]]]},{"k":5418,"v":[[0,3,["H2205"]],[3,6,["H5892"]],[6,8,["H7971"]],[8,10,["H3947"]],[10,12,["H4480","H8033"]],[12,14,["H5414"]],[14,18,["H3027"]],[18,21,["H1350"]],[21,23,["H1818"]],[23,27,["H4191"]]]},{"k":5419,"v":[[0,2,["H5869"]],[2,4,["H3808"]],[4,5,["H2347","H5921"]],[5,11,["H1197"]],[11,15,["H5355"]],[15,16,["H1818"]],[16,18,["H4480","H3478"]],[18,23,["H2895"]],[23,25,[]]]},{"k":5420,"v":[[0,3,["H3808"]],[3,4,["H5253"]],[4,6,["H7453"]],[6,7,["H1366"]],[7,8,["H834"]],[8,12,["H7223"]],[12,14,["H1379"]],[14,17,["H5159"]],[17,18,["H834"]],[18,21,["H5157"]],[21,24,["H776"]],[24,25,["H834"]],[25,27,["H3068"]],[27,29,["H430"]],[29,30,["H5414"]],[30,33,["H3423"]],[33,34,[]]]},{"k":5421,"v":[[0,1,["H259"]],[1,2,["H5707"]],[2,4,["H3808"]],[4,6,["H6965"]],[6,9,["H376"]],[9,11,["H3605"]],[11,12,["H5771"]],[12,15,["H3605"]],[15,16,["H2403"]],[16,18,["H3605"]],[18,19,["H2399"]],[19,20,["H834"]],[20,22,["H2398"]],[22,23,["H5921"]],[23,25,["H6310"]],[25,27,["H8147"]],[27,28,["H5707"]],[28,29,["H176"]],[29,30,["H5921"]],[30,32,["H6310"]],[32,34,["H7969"]],[34,35,["H5707"]],[35,38,["H1697"]],[38,40,["H6965"]]]},{"k":5422,"v":[[0,1,["H3588"]],[1,3,["H2555"]],[3,4,["H5707"]],[4,6,["H6965"]],[6,9,["H376"]],[9,11,["H6030"]],[11,17,["H5627"]]]},{"k":5423,"v":[[0,2,["H8147"]],[2,4,["H376"]],[4,6,["H834"]],[6,8,["H7379"]],[8,11,["H5975"]],[11,12,["H6440"]],[12,14,["H3068"]],[14,15,["H6440"]],[15,17,["H3548"]],[17,20,["H8199"]],[20,21,["H834"]],[21,23,["H1961"]],[23,25,["H1992"]],[25,26,["H3117"]]]},{"k":5424,"v":[[0,3,["H8199"]],[3,7,["H1875","H3190"]],[7,9,["H2009"]],[9,12,["H5707"]],[12,15,["H8267"]],[15,16,["H5707"]],[16,19,["H6030"]],[19,20,["H8267"]],[20,23,["H251"]]]},{"k":5425,"v":[[0,4,["H6213"]],[4,7,["H834"]],[7,10,["H2161"]],[10,13,["H6213"]],[13,16,["H251"]],[16,23,["H1197","H7451"]],[23,25,["H4480","H7130"]],[25,26,[]]]},{"k":5426,"v":[[0,4,["H7604"]],[4,6,["H8085"]],[6,8,["H3372"]],[8,11,["H3254"]],[11,12,["H6213"]],[12,13,["H3808"]],[13,14,["H5750"]],[14,15,["H1697"]],[15,16,["H2088"]],[16,17,["H7451"]],[17,18,["H7130"]],[18,19,[]]]},{"k":5427,"v":[[0,3,["H5869"]],[3,5,["H3808"]],[5,6,["H2347"]],[6,8,["H5315"]],[8,12,["H5315"]],[12,13,["H5869"]],[13,15,["H5869"]],[15,16,["H8127"]],[16,18,["H8127"]],[18,19,["H3027"]],[19,21,["H3027"]],[21,22,["H7272"]],[22,24,["H7272"]]]},{"k":5428,"v":[[0,1,["H3588"]],[1,4,["H3318"]],[4,6,["H4421"]],[6,7,["H5921"]],[7,9,["H341"]],[9,11,["H7200"]],[11,12,["H5483"]],[12,14,["H7393"]],[14,17,["H5971"]],[17,18,["H7227"]],[18,19,["H4480"]],[19,23,["H3372","H3808"]],[23,24,["H4480"]],[24,26,["H3588"]],[26,28,["H3068"]],[28,30,["H430"]],[30,32,["H5973"]],[32,37,["H5927"]],[37,41,["H4480","H776"]],[41,43,["H4714"]]]},{"k":5429,"v":[[0,4,["H1961"]],[4,9,["H7126"]],[9,10,["H413"]],[10,12,["H4421"]],[12,15,["H3548"]],[15,17,["H5066"]],[17,19,["H1696"]],[19,20,["H413"]],[20,22,["H5971"]]]},{"k":5430,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H8085"]],[6,8,["H3478"]],[8,9,["H859"]],[9,10,["H7131"]],[10,12,["H3117"]],[12,14,["H4421"]],[14,15,["H5921"]],[15,17,["H341"]],[17,19,["H408"]],[19,21,["H3824"]],[21,22,["H7401"]],[22,23,["H3372"]],[23,24,["H408"]],[24,27,["H408"]],[27,28,["H2648"]],[28,29,["H408"]],[29,32,["H6206"]],[32,34,["H4480","H6440"]],[34,35,[]]]},{"k":5431,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,9,["H1980"]],[9,10,["H5973"]],[10,13,["H3898"]],[13,16,["H5973"]],[16,18,["H341"]],[18,20,["H3467"]],[20,21,[]]]},{"k":5432,"v":[[0,3,["H7860"]],[3,5,["H1696"]],[5,6,["H413"]],[6,8,["H5971"]],[8,9,["H559"]],[9,10,["H4310"]],[10,11,["H376"]],[11,14,["H834"]],[14,16,["H1129"]],[16,18,["H2319"]],[18,19,["H1004"]],[19,22,["H3808"]],[22,23,["H2596"]],[23,27,["H1980"]],[27,29,["H7725"]],[29,32,["H1004"]],[32,33,["H6435"]],[33,35,["H4191"]],[35,38,["H4421"]],[38,40,["H312"]],[40,41,["H376"]],[41,42,["H2596"]],[42,43,[]]]},{"k":5433,"v":[[0,2,["H4310"]],[2,3,["H376"]],[3,6,["H834"]],[6,8,["H5193"]],[8,10,["H3754"]],[10,13,["H3808"]],[13,15,["H2490"]],[15,21,["H1980"]],[21,23,["H7725"]],[23,26,["H1004"]],[26,27,["H6435"]],[27,29,["H4191"]],[29,32,["H4421"]],[32,34,["H312"]],[34,35,["H376"]],[35,36,["H2490"]],[36,38,[]]]},{"k":5434,"v":[[0,2,["H4310"]],[2,3,["H376"]],[3,6,["H834"]],[6,8,["H781"]],[8,10,["H802"]],[10,13,["H3808"]],[13,14,["H3947"]],[14,18,["H1980"]],[18,20,["H7725"]],[20,23,["H1004"]],[23,24,["H6435"]],[24,26,["H4191"]],[26,29,["H4421"]],[29,31,["H312"]],[31,32,["H376"]],[32,33,["H3947"]],[33,34,[]]]},{"k":5435,"v":[[0,3,["H7860"]],[3,5,["H1696"]],[5,6,["H3254"]],[6,7,["H413"]],[7,9,["H5971"]],[9,13,["H559"]],[13,14,["H4310"]],[14,15,["H376"]],[15,20,["H3373"]],[20,22,["H7390","H3824"]],[22,25,["H1980"]],[25,27,["H7725"]],[27,30,["H1004"]],[30,31,["H3808","(H853)"]],[31,33,["H251"]],[33,34,["H3824"]],[34,35,["H4549"]],[35,40,["H3824"]]]},{"k":5436,"v":[[0,4,["H1961"]],[4,7,["H7860"]],[7,11,["H3615"]],[11,13,["H1696"]],[13,14,["H413"]],[14,16,["H5971"]],[16,20,["H6485"]],[20,21,["H8269"]],[21,24,["H6635"]],[24,26,["H7218"]],[26,28,["H5971"]]]},{"k":5437,"v":[[0,1,["H3588"]],[1,4,["H7126"]],[4,5,["H413"]],[5,7,["H5892"]],[7,9,["H3898"]],[9,10,["H5921"]],[10,13,["H7121"]],[13,14,["H7965"]],[14,15,["H413"]],[15,16,[]]]},{"k":5438,"v":[[0,4,["H1961"]],[4,5,["H518"]],[5,9,["H6030"]],[9,11,["H7965"]],[11,13,["H6605"]],[13,19,["H1961"]],[19,21,["H3605"]],[21,23,["H5971"]],[23,26,["H4672"]],[26,29,["H1961"]],[29,30,["H4522"]],[30,36,["H5647"]],[36,37,[]]]},{"k":5439,"v":[[0,2,["H518"]],[2,7,["H7999","H3808"]],[7,8,["H5973"]],[8,12,["H6213"]],[12,13,["H4421"]],[13,14,["H5973"]],[14,19,["H6696","H5921"]],[19,20,[]]]},{"k":5440,"v":[[0,4,["H3068"]],[4,6,["H430"]],[6,8,["H5414"]],[8,12,["H3027"]],[12,15,["H5221","(H853)"]],[15,16,["H3605"]],[16,17,["H2138"]],[17,21,["H6310"]],[21,24,["H2719"]]]},{"k":5441,"v":[[0,1,["H7535"]],[1,3,["H802"]],[3,7,["H2945"]],[7,10,["H929"]],[10,12,["H3605"]],[12,13,["H834"]],[13,14,["H1961"]],[14,17,["H5892"]],[17,19,["H3605"]],[19,21,["H7998"]],[21,25,["H962"]],[25,31,["H398","(H853)"]],[31,33,["H7998"]],[33,36,["H341"]],[36,37,["H834"]],[37,39,["H3068"]],[39,41,["H430"]],[41,43,["H5414"]],[43,44,[]]]},{"k":5442,"v":[[0,1,["H3651"]],[1,4,["H6213"]],[4,6,["H3605"]],[6,8,["H5892"]],[8,11,["H3966"]],[11,13,["H7350"]],[13,14,["H4480"]],[14,16,["H834"]],[16,18,["H3808"]],[18,21,["H4480","H5892"]],[21,23,["H428"]],[23,24,["H1471"]]]},{"k":5443,"v":[[0,1,["H7535"]],[1,4,["H4480","H5892"]],[4,6,["H428"]],[6,7,["H5971"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H430"]],[12,14,["H5414"]],[14,18,["H5159"]],[18,22,["H2421"]],[22,23,["H3808","H3605"]],[23,25,["H5397"]]]},{"k":5444,"v":[[0,1,["H3588"]],[1,5,["H2763","H2763"]],[5,9,["H2850"]],[9,12,["H567"]],[12,14,["H3669"]],[14,17,["H6522"]],[17,19,["H2340"]],[19,22,["H2983"]],[22,23,["H834"]],[23,25,["H3068"]],[25,27,["H430"]],[27,29,["H6680"]],[29,30,[]]]},{"k":5445,"v":[[0,1,["H4616","H834"]],[1,3,["H3925"]],[3,5,["H3808"]],[5,7,["H6213"]],[7,9,["H3605"]],[9,11,["H8441"]],[11,12,["H834"]],[12,15,["H6213"]],[15,18,["H430"]],[18,22,["H2398"]],[22,25,["H3068"]],[25,27,["H430"]]]},{"k":5446,"v":[[0,1,["H3588"]],[1,4,["H6696","H413"]],[4,6,["H5892"]],[6,8,["H7227"]],[8,9,["H3117"]],[9,12,["H3898"]],[12,13,["H5921"]],[13,16,["H8610"]],[16,20,["H3808"]],[20,21,["H7843","(H853)"]],[21,23,["H6086"]],[23,26,["H5080"]],[26,28,["H1631"]],[28,29,["H5921"]],[29,31,["H3588"]],[31,34,["H398"]],[34,35,["H4480"]],[35,40,["H3808"]],[40,43,["H3772","(H853)"]],[43,44,["H3588"]],[44,46,["H6086"]],[46,49,["H7704"]],[49,51,["H120"]],[51,54,["H935","H4480","H6440"]],[54,58,["H4692"]]]},{"k":5447,"v":[[0,1,["H7535"]],[1,3,["H6086"]],[3,4,["H834"]],[4,6,["H3045"]],[6,7,["H3588"]],[7,8,["H1931"]],[8,10,["H3808"]],[10,11,["H6086"]],[11,13,["H3978"]],[13,16,["H7843"]],[16,20,["H3772"]],[20,24,["H1129"]],[24,25,["H4692"]],[25,26,["H5921"]],[26,28,["H5892"]],[28,29,["H834","H1931"]],[29,30,["H6213"]],[30,31,["H4421"]],[31,32,["H5973"]],[32,34,["H5704"]],[34,37,["H3381"]]]},{"k":5448,"v":[[0,1,["H3588"]],[1,4,["H4672"]],[4,5,["H2491"]],[5,8,["H127"]],[8,9,["H834"]],[9,11,["H3068"]],[11,13,["H430"]],[13,14,["H5414"]],[14,17,["H3423"]],[17,19,["H5307"]],[19,22,["H7704"]],[22,26,["H3808"]],[26,27,["H3045"]],[27,28,["H4310"]],[28,30,["H5221"]],[30,31,[]]]},{"k":5449,"v":[[0,3,["H2205"]],[3,6,["H8199"]],[6,9,["H3318"]],[9,13,["H4058"]],[13,14,["H413"]],[14,16,["H5892"]],[16,17,["H834"]],[17,20,["H5439"]],[20,24,["H2491"]]]},{"k":5450,"v":[[0,4,["H1961"]],[4,7,["H5892"]],[7,10,["H7138"]],[10,11,["H413"]],[11,14,["H2491"]],[14,17,["H2205"]],[17,19,["H1931"]],[19,20,["H5892"]],[20,22,["H3947"]],[22,24,["H5697","H1241"]],[24,25,["H834"]],[25,27,["H3808"]],[27,29,["H5647"]],[29,32,["H834"]],[32,34,["H3808"]],[34,35,["H4900"]],[35,38,["H5923"]]]},{"k":5451,"v":[[0,3,["H2205"]],[3,5,["H1931"]],[5,6,["H5892"]],[6,9,["H3381","(H853)"]],[9,11,["H5697"]],[11,12,["H413"]],[12,14,["H386"]],[14,15,["H5158"]],[15,16,["H834"]],[16,18,["H3808"]],[18,19,["H5647"]],[19,20,["H3808"]],[20,21,["H2232"]],[21,25,["H6203","(H853)"]],[25,27,["H5697"]],[27,28,["H6203"]],[28,29,["H8033"]],[29,32,["H5158"]]]},{"k":5452,"v":[[0,3,["H3548"]],[3,5,["H1121"]],[5,7,["H3878"]],[7,10,["H5066"]],[10,11,["H3588"]],[11,14,["H3068"]],[14,16,["H430"]],[16,18,["H977"]],[18,20,["H8334"]],[20,25,["H1288"]],[25,28,["H8034"]],[28,31,["H3068"]],[31,33,["H5921"]],[33,35,["H6310"]],[35,37,["H3605"]],[37,38,["H7379"]],[38,40,["H3605"]],[40,41,["H5061"]],[41,42,["H1961"]],[42,43,[]]]},{"k":5453,"v":[[0,2,["H3605"]],[2,4,["H2205"]],[4,6,["H1931"]],[6,7,["H5892"]],[7,10,["H7138"]],[10,11,["H413"]],[11,13,["H2491"]],[13,16,["H7364","(H853)"]],[16,18,["H3027"]],[18,19,["H5921"]],[19,21,["H5697"]],[21,24,["H6202"]],[24,27,["H5158"]]]},{"k":5454,"v":[[0,4,["H6030"]],[4,6,["H559"]],[6,8,["H3027"]],[8,10,["H3808"]],[10,11,["H8210","(H853)"]],[11,12,["H2088"]],[12,13,["H1818"]],[13,14,["H3808"]],[14,17,["H5869"]],[17,18,["H7200"]],[18,19,[]]]},{"k":5455,"v":[[0,2,["H3722"]],[2,4,["H3068"]],[4,7,["H5971"]],[7,8,["H3478"]],[8,9,["H834"]],[9,12,["H6299"]],[12,14,["H5414"]],[14,15,["H408"]],[15,16,["H5355"]],[16,17,["H1818"]],[17,20,["H5971"]],[20,22,["H3478"]],[22,23,["H7130"]],[23,26,["H1818"]],[26,29,["H3722"]],[29,30,[]]]},{"k":5456,"v":[[0,3,["H859"]],[3,5,["H1197"]],[5,9,["H5355"]],[9,10,["H1818"]],[10,12,["H4480","H7130"]],[12,14,["H3588"]],[14,17,["H6213"]],[17,21,["H3477"]],[21,24,["H5869"]],[24,27,["H3068"]]]},{"k":5457,"v":[[0,1,["H3588"]],[1,4,["H3318"]],[4,6,["H4421"]],[6,7,["H5921"]],[7,9,["H341"]],[9,12,["H3068"]],[12,14,["H430"]],[14,16,["H5414"]],[16,20,["H3027"]],[20,24,["H7617"]],[24,26,["H7628"]]]},{"k":5458,"v":[[0,2,["H7200"]],[2,5,["H7633"]],[5,7,["H3303","H8389"]],[7,8,["H802"]],[8,12,["H2836"]],[12,18,["H3947"]],[18,22,["H802"]]]},{"k":5459,"v":[[0,4,["H935"]],[4,6,["H8432"]],[6,9,["H1004"]],[9,13,["H1548","(H853)"]],[13,15,["H7218"]],[15,17,["H6213","(H853)"]],[17,19,["H6856"]]]},{"k":5460,"v":[[0,4,["H5493","(H853)"]],[4,6,["H8071"]],[6,9,["H7628"]],[9,11,["H4480","H5921"]],[11,15,["H3427"]],[15,18,["H1004"]],[18,20,["H1058","(H853)"]],[20,22,["H1"]],[22,25,["H517"]],[25,27,["H3117"]],[27,28,["H3391"]],[28,30,["H310"]],[30,31,["H3651"]],[31,35,["H935"]],[35,36,["H413"]],[36,41,["H1167"]],[41,45,["H1961"]],[45,47,["H802"]]]},{"k":5461,"v":[[0,4,["H1961"]],[4,5,["H518"]],[5,9,["H2654","H3808"]],[9,17,["H7971"]],[17,20,["H5315"]],[20,24,["H3808"]],[24,28,["H4376","H4376"]],[28,30,["H3701"]],[30,33,["H3808"]],[33,35,["H6014"]],[35,38,["H8478","H834"]],[38,41,["H6031"]],[41,42,[]]]},{"k":5462,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,4,["H1961"]],[4,5,["H8147"]],[5,6,["H802"]],[6,7,["H259"]],[7,8,["H157"]],[8,10,["H259"]],[10,11,["H8130"]],[11,15,["H3205"]],[15,17,["H1121"]],[17,20,["H157"]],[20,23,["H8130"]],[23,27,["H1060"]],[27,28,["H1121"]],[28,29,["H1961"]],[29,33,["H8146"]]]},{"k":5463,"v":[[0,4,["H1961"]],[4,5,["H3117"]],[5,7,["(H853)"]],[7,9,["H1121"]],[9,11,["H5157","(H853)"]],[11,13,["H834"]],[13,15,["H1961"]],[15,18,["H3201"]],[18,19,["H3808"]],[19,20,["H1069","(H853)"]],[20,22,["H1121"]],[22,25,["H157"]],[25,26,["H1069"]],[26,27,["H5921","H6440"]],[27,29,["H1121"]],[29,32,["H8130"]],[32,37,["H1060"]]]},{"k":5464,"v":[[0,1,["H3588"]],[1,4,["H5234"]],[4,6,["H1121"]],[6,9,["H8130","(H853)"]],[9,12,["H1060"]],[12,14,["H5414"]],[14,17,["H8147"]],[17,18,["H6310"]],[18,20,["H3605"]],[20,21,["H834"]],[21,23,["H4672"]],[23,24,["H3588"]],[24,25,["H1931"]],[25,28,["H7225"]],[28,31,["H202"]],[31,33,["H4941"]],[33,36,["H1062"]],[36,38,[]]]},{"k":5465,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,4,["H1961"]],[4,6,["H5637"]],[6,8,["H4784"]],[8,9,["H1121"]],[9,12,["H369"]],[12,13,["H8085"]],[13,15,["H6963"]],[15,18,["H1"]],[18,21,["H6963"]],[21,24,["H517"]],[24,30,["H3256"]],[30,33,["H3808"]],[33,34,["H8085"]],[34,35,["H413"]],[35,36,[]]]},{"k":5466,"v":[[0,4,["H1"]],[4,7,["H517"]],[7,9,["H8610"]],[9,15,["H3318","(H853)"]],[15,16,["H413"]],[16,18,["H2205"]],[18,21,["H5892"]],[21,23,["H413"]],[23,25,["H8179"]],[25,28,["H4725"]]]},{"k":5467,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H2205"]],[7,10,["H5892"]],[10,11,["H2088"]],[11,13,["H1121"]],[13,15,["H5637"]],[15,17,["H4784"]],[17,20,["H369"]],[20,21,["H8085"]],[21,23,["H6963"]],[23,27,["H2151"]],[27,30,["H5433"]]]},{"k":5468,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,7,["H5892"]],[7,9,["H7275"]],[9,12,["H68"]],[12,15,["H4191"]],[15,21,["H1197","H7451"]],[21,23,["H4480","H7130"]],[23,26,["H3605"]],[26,27,["H3478"]],[27,29,["H8085"]],[29,31,["H3372"]]]},{"k":5469,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,6,["H1961"]],[6,8,["H2399"]],[8,9,["H4941"]],[9,11,["H4194"]],[11,19,["H4191"]],[19,22,["H8518"]],[22,24,["H5921"]],[24,26,["H6086"]]]},{"k":5470,"v":[[0,2,["H5038"]],[2,4,["H3808"]],[4,7,["H3885"]],[7,8,["H5921"]],[8,10,["H6086"]],[10,11,["H3588"]],[11,17,["H6912","H6912"]],[17,19,["H1931"]],[19,20,["H3117"]],[20,21,["H3588"]],[21,25,["H8518"]],[25,27,["H7045"]],[27,29,["H430"]],[29,30,["(H853)"]],[30,32,["H127"]],[32,34,["H3808"]],[34,35,["H2930"]],[35,36,["H834"]],[36,38,["H3068"]],[38,40,["H430"]],[40,41,["H5414"]],[41,45,["H5159"]]]},{"k":5471,"v":[[0,3,["H3808"]],[3,4,["H7200","(H853)"]],[4,6,["H251"]],[6,7,["H7794"]],[7,8,["H176","(H853)"]],[8,10,["H7716"]],[10,12,["H5080"]],[12,15,["H5956"]],[15,16,["H4480"]],[16,25,["H7725","H7725"]],[25,28,["H251"]]]},{"k":5472,"v":[[0,2,["H518"]],[2,4,["H251"]],[4,6,["H3808"]],[6,7,["H7138"]],[7,8,["H413"]],[8,13,["H3045"]],[13,15,["H3808"]],[15,19,["H622"]],[19,21,["H413","H8432"]],[21,24,["H1004"]],[24,28,["H1961"]],[28,29,["H5973"]],[29,31,["H5704"]],[31,33,["H251"]],[33,35,["H1875"]],[35,40,["H7725"]],[40,44,[]]]},{"k":5473,"v":[[0,3,["H3651"]],[3,6,["H6213"]],[6,9,["H2543"]],[9,11,["H3651"]],[11,14,["H6213"]],[14,17,["H8071"]],[17,20,["H3605"]],[20,22,["H9"]],[22,25,["H251"]],[25,26,["H834"]],[26,29,["H6"]],[29,33,["H4672"]],[33,36,["H6213"]],[36,37,["H3651"]],[37,39,["H3201"]],[39,40,["H3808"]],[40,42,["H5956"]]]},{"k":5474,"v":[[0,3,["H3808"]],[3,4,["H7200","(H853)"]],[4,6,["H251"]],[6,7,["H2543"]],[7,8,["H176"]],[8,10,["H7794"]],[10,12,["H5307"]],[12,15,["H1870"]],[15,18,["H5956"]],[18,19,["H4480"]],[19,30,["H6965","H6965","H5973"]]]},{"k":5475,"v":[[0,2,["H802"]],[2,4,["H3808"]],[4,5,["H1961"]],[5,8,["H3627"]],[8,11,["H1397"]],[11,12,["H3808"]],[12,15,["H1397"]],[15,17,["H3847"]],[17,19,["H802"]],[19,20,["H8071"]],[20,21,["H3588"]],[21,22,["H3605"]],[22,24,["H6213"]],[24,25,["H428"]],[25,27,["H8441"]],[27,30,["H3068"]],[30,32,["H430"]]]},{"k":5476,"v":[[0,1,["H3588"]],[1,3,["H6833"]],[3,4,["H7064"]],[4,7,["H7122"]],[7,8,["H6440"]],[8,12,["H1870"]],[12,14,["H3605"]],[14,15,["H6086"]],[15,16,["H176"]],[16,17,["H5921"]],[17,19,["H776"]],[19,24,["H667"]],[24,25,["H176"]],[25,26,["H1000"]],[26,29,["H517"]],[29,30,["H7257"]],[30,31,["H5921"]],[31,33,["H667"]],[33,34,["H176"]],[34,35,["H5921"]],[35,37,["H1000"]],[37,40,["H3808"]],[40,41,["H3947"]],[41,43,["H517"]],[43,44,["H5921"]],[44,46,["H1121"]]]},{"k":5477,"v":[[0,6,["H7971","(H853)"]],[6,9,["H517"]],[9,10,["H7971"]],[10,12,["H3947"]],[12,14,["H1121"]],[14,17,["H4616"]],[17,21,["H3190"]],[21,28,["H748"]],[28,30,["H3117"]]]},{"k":5478,"v":[[0,1,["H3588"]],[1,3,["H1129"]],[3,5,["H2319"]],[5,6,["H1004"]],[6,10,["H6213"]],[10,12,["H4624"]],[12,15,["H1406"]],[15,18,["H7760"]],[18,19,["H3808"]],[19,20,["H1818"]],[20,23,["H1004"]],[23,24,["H3588"]],[24,26,["H5307"]],[26,27,["H5307"]],[27,28,["H4480"]],[28,29,[]]]},{"k":5479,"v":[[0,3,["H3808"]],[3,4,["H2232"]],[4,6,["H3754"]],[6,9,["H3610"]],[9,10,["H6435"]],[10,12,["H4395"]],[12,15,["H2233"]],[15,16,["H834"]],[16,19,["H2232"]],[19,22,["H8393"]],[22,25,["H3754"]],[25,27,["H6942"]]]},{"k":5480,"v":[[0,3,["H3808"]],[3,4,["H2790"]],[4,7,["H7794"]],[7,10,["H2543"]],[10,11,["H3162"]]]},{"k":5481,"v":[[0,3,["H3808"]],[3,4,["H3847"]],[4,9,["H8162"]],[9,12,["H6785"]],[12,14,["H6593"]],[14,15,["H3162"]]]},{"k":5482,"v":[[0,3,["H6213"]],[3,5,["H1434"]],[5,6,["H5921"]],[6,8,["H702"]],[8,9,["H3671"]],[9,12,["H3682"]],[12,13,["H834"]],[13,15,["H3680"]],[15,16,[]]]},{"k":5483,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,4,["H3947"]],[4,6,["H802"]],[6,9,["H935"]],[9,10,["H413"]],[10,13,["H8130"]],[13,14,[]]]},{"k":5484,"v":[[0,2,["H7760"]],[2,3,["H5949"]],[3,5,["H1697"]],[5,10,["H3318"]],[10,12,["H7451"]],[12,13,["H8034"]],[13,14,["H5921"]],[14,17,["H559"]],[17,19,["H3947","(H853)"]],[19,20,["H2063"]],[20,21,["H802"]],[21,25,["H7126"]],[25,26,["H413"]],[26,29,["H4672"]],[29,31,["H3808"]],[31,33,["H1331"]]]},{"k":5485,"v":[[0,4,["H1"]],[4,7,["H5291"]],[7,10,["H517"]],[10,11,["H3947"]],[11,14,["H3318","(H853)"]],[14,19,["H5291"]],[19,20,["H1331"]],[20,21,["H413"]],[21,23,["H2205"]],[23,26,["H5892"]],[26,29,["H8179"]]]},{"k":5486,"v":[[0,3,["H5291"]],[3,4,["H1"]],[4,6,["H559"]],[6,7,["H413"]],[7,9,["H2205"]],[9,11,["H5414","(H853)"]],[11,13,["H1323"]],[13,15,["H2088"]],[15,16,["H376"]],[16,18,["H802"]],[18,21,["H8130"]],[21,22,[]]]},{"k":5487,"v":[[0,2,["H2009"]],[2,3,["H1931"]],[3,5,["H7760"]],[5,6,["H5949"]],[6,8,["H1697"]],[8,11,["H559"]],[11,13,["H4672"]],[13,14,["H3808"]],[14,16,["H1323"]],[16,18,["H1331"]],[18,21,["H428"]],[21,27,["H1323"]],[27,28,["H1331"]],[28,32,["H6566"]],[32,34,["H8071"]],[34,35,["H6440"]],[35,37,["H2205"]],[37,40,["H5892"]]]},{"k":5488,"v":[[0,3,["H2205"]],[3,5,["H1931"]],[5,6,["H5892"]],[6,8,["H3947","(H853)"]],[8,10,["H376"]],[10,12,["H3256"]],[12,13,[]]]},{"k":5489,"v":[[0,4,["H6064"]],[4,8,["H3967"]],[8,11,["H3701"]],[11,13,["H5414"]],[13,17,["H1"]],[17,20,["H5291"]],[20,21,["H3588"]],[21,25,["H3318"]],[25,27,["H7451"]],[27,28,["H8034"]],[28,29,["H5921"]],[29,31,["H1330"]],[31,33,["H3478"]],[33,37,["H1961"]],[37,39,["H802"]],[39,41,["H3201"]],[41,42,["H3808"]],[42,45,["H7971"]],[45,46,["H3605"]],[46,48,["H3117"]]]},{"k":5490,"v":[[0,2,["H518"]],[2,3,["H2088"]],[3,4,["H1697"]],[4,5,["H1961"]],[5,6,["H571"]],[6,11,["H1331"]],[11,13,["H3808"]],[13,14,["H4672"]],[14,17,["H5291"]]]},{"k":5491,"v":[[0,5,["H3318","(H853)"]],[5,7,["H5291"]],[7,8,["H413"]],[8,10,["H6607"]],[10,13,["H1"]],[13,14,["H1004"]],[14,17,["H376"]],[17,20,["H5892"]],[20,22,["H5619"]],[22,25,["H68"]],[25,28,["H4191"]],[28,29,["H3588"]],[29,32,["H6213"]],[32,33,["H5039"]],[33,35,["H3478"]],[35,39,["H2181"]],[39,42,["H1"]],[42,43,["H1004"]],[43,49,["H1197","H7451"]],[49,51,["H4480","H7130"]],[51,52,[]]]},{"k":5492,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,5,["H4672"]],[5,6,["H7901"]],[6,7,["H5973"]],[7,9,["H802"]],[9,10,["H1166"]],[10,13,["H1167"]],[13,17,["H1571","H8147"]],[17,20,["H4191"]],[20,23,["H376"]],[23,25,["H7901"]],[25,26,["H5973"]],[26,28,["H802"]],[28,31,["H802"]],[31,36,["H1197"]],[36,37,["H7451"]],[37,39,["H4480","H3478"]]]},{"k":5493,"v":[[0,1,["H3588"]],[1,3,["H5291"]],[3,7,["H1330"]],[7,8,["H1961"]],[8,9,["H781"]],[9,12,["H376"]],[12,15,["H376"]],[15,16,["H4672"]],[16,20,["H5892"]],[20,22,["H7901"]],[22,23,["H5973"]],[23,24,[]]]},{"k":5494,"v":[[0,7,["H3318","(H853)","H8147"]],[7,8,["H413"]],[8,10,["H8179"]],[10,12,["H1931"]],[12,13,["H5892"]],[13,17,["H5619"]],[17,20,["H68"]],[20,23,["H4191","(H853)"]],[23,25,["H5291"]],[25,26,["H5921","H1697","H834"]],[26,28,["H6817"]],[28,29,["H3808"]],[29,33,["H5892"]],[33,36,["H376"]],[36,37,["H5921","H1697","H834"]],[37,40,["H6031","(H853)"]],[40,42,["H7453"]],[42,43,["H802"]],[43,48,["H1197"]],[48,49,["H7451"]],[49,51,["H4480","H7130"]],[51,52,[]]]},{"k":5495,"v":[[0,2,["H518"]],[2,4,["H376"]],[4,5,["H4672","(H853)"]],[5,7,["H781"]],[7,8,["H5291"]],[8,11,["H7704"]],[11,14,["H376"]],[14,15,["H2388"]],[15,18,["H7901"]],[18,19,["H5973"]],[19,23,["H376"]],[23,24,["H905"]],[24,25,["H834"]],[25,26,["H7901"]],[26,27,["H5973"]],[27,30,["H4191"]]]},{"k":5496,"v":[[0,4,["H5291"]],[4,7,["H6213"]],[7,8,["H3808","H1697"]],[8,13,["H5291"]],[13,14,["H369"]],[14,15,["H2399"]],[15,18,["H4194"]],[18,19,["H3588"]],[19,20,["H834"]],[20,23,["H376"]],[23,24,["H6965"]],[24,25,["H5921"]],[25,27,["H7453"]],[27,29,["H7523","H5315"]],[29,32,["H3651"]],[32,34,["H2088"]],[34,35,["H1697"]]]},{"k":5497,"v":[[0,1,["H3588"]],[1,3,["H4672"]],[3,7,["H7704"]],[7,10,["H781"]],[10,11,["H5291"]],[11,12,["H6817"]],[12,16,["H369"]],[16,18,["H3467"]],[18,19,[]]]},{"k":5498,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,4,["H4672"]],[4,6,["H5291"]],[6,10,["H1330"]],[10,11,["H834"]],[11,13,["H3808"]],[13,14,["H781"]],[14,17,["H8610"]],[17,21,["H7901"]],[21,22,["H5973"]],[22,27,["H4672"]]]},{"k":5499,"v":[[0,3,["H376"]],[3,5,["H7901"]],[5,6,["H5973"]],[6,9,["H5414"]],[9,12,["H5291"]],[12,13,["H1"]],[13,14,["H2572"]],[14,17,["H3701"]],[17,21,["H1961"]],[21,23,["H802"]],[23,24,["H8478","H834"]],[24,27,["H6031"]],[27,30,["H3201"]],[30,31,["H3808"]],[31,34,["H7971"]],[34,35,["H3605"]],[35,37,["H3117"]]]},{"k":5500,"v":[[0,2,["H376"]],[2,4,["H3808"]],[4,5,["H3947","(H853)"]],[5,7,["H1"]],[7,8,["H802"]],[8,9,["H3808"]],[9,10,["H1540"]],[10,12,["H1"]],[12,13,["H3671"]]]},{"k":5501,"v":[[0,7,["H6481","H1795"]],[7,12,["H8212"]],[12,14,["H3772"]],[14,16,["H3808"]],[16,17,["H935"]],[17,20,["H6951"]],[20,23,["H3068"]]]},{"k":5502,"v":[[0,2,["H4464"]],[2,4,["H3808"]],[4,5,["H935"]],[5,8,["H6951"]],[8,11,["H3068"]],[11,12,["H1571"]],[12,15,["H6224"]],[15,16,["H1755"]],[16,19,["H3808"]],[19,20,["H935"]],[20,23,["H6951"]],[23,26,["H3068"]]]},{"k":5503,"v":[[0,2,["H5984"]],[2,4,["H4125"]],[4,6,["H3808"]],[6,7,["H935"]],[7,10,["H6951"]],[10,13,["H3068"]],[13,14,["H1571"]],[14,17,["H6224"]],[17,18,["H1755"]],[18,21,["H3808"]],[21,22,["H935"]],[22,25,["H6951"]],[25,28,["H3068"]],[28,30,["H5704","H5769"]]]},{"k":5504,"v":[[0,1,["H5921","H1697"]],[1,2,["H834"]],[2,3,["H6923"]],[3,5,["H3808"]],[5,7,["H3899"]],[7,10,["H4325"]],[10,13,["H1870"]],[13,17,["H3318"]],[17,20,["H4480","H4714"]],[20,22,["H834"]],[22,24,["H7936"]],[24,25,["H5921"]],[25,26,["(H853)"]],[26,27,["H1109"]],[27,29,["H1121"]],[29,31,["H1160"]],[31,33,["H4480","H6604"]],[33,35,["H763"]],[35,37,["H7043"]],[37,38,[]]]},{"k":5505,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,6,["H14"]],[6,7,["H3808"]],[7,8,["H8085"]],[8,9,["H413"]],[9,10,["H1109"]],[10,13,["H3068"]],[13,15,["H430"]],[15,16,["H2015","(H853)"]],[16,18,["H7045"]],[18,21,["H1293"]],[21,24,["H3588"]],[24,26,["H3068"]],[26,28,["H430"]],[28,29,["H157"]],[29,30,[]]]},{"k":5506,"v":[[0,3,["H3808"]],[3,4,["H1875"]],[4,6,["H7965"]],[6,9,["H2896"]],[9,10,["H3605"]],[10,12,["H3117"]],[12,14,["H5769"]]]},{"k":5507,"v":[[0,3,["H3808"]],[3,4,["H8581"]],[4,6,["H130"]],[6,7,["H3588"]],[7,8,["H1931"]],[8,11,["H251"]],[11,14,["H3808"]],[14,15,["H8581"]],[15,17,["H4713"]],[17,18,["H3588"]],[18,20,["H1961"]],[20,22,["H1616"]],[22,25,["H776"]]]},{"k":5508,"v":[[0,2,["H1121"]],[2,3,["H834"]],[3,5,["H3205"]],[5,9,["H935"]],[9,12,["H6951"]],[12,15,["H3068"]],[15,18,["H7992"]],[18,19,["H1755"]]]},{"k":5509,"v":[[0,1,["H3588"]],[1,3,["H4264"]],[3,5,["H3318"]],[5,6,["H5921"]],[6,8,["H341"]],[8,11,["H8104"]],[11,13,["H4480","H3605"]],[13,14,["H7451"]],[14,15,["H1697"]]]},{"k":5510,"v":[[0,1,["H3588"]],[1,3,["H1961"]],[3,7,["H376"]],[7,8,["H834"]],[8,9,["H1961"]],[9,10,["H3808"]],[10,11,["H2889"]],[11,17,["H4480","H7137"]],[17,20,["H3915"]],[20,25,["H3318"]],[25,27,["H413","H4480","H2351"]],[27,29,["H4264"]],[29,32,["H3808"]],[32,33,["H935"]],[33,34,["H413","H8432"]],[34,36,["H4264"]]]},{"k":5511,"v":[[0,4,["H1961"]],[4,6,["H6153"]],[6,8,["H6437"]],[8,11,["H7364"]],[11,14,["H4325"]],[14,18,["H8121"]],[18,20,["H935"]],[20,23,["H935"]],[23,24,["H413","H8432"]],[24,26,["H4264"]],[26,27,[]]]},{"k":5512,"v":[[0,3,["H1961"]],[3,5,["H3027"]],[5,7,["H4480","H2351"]],[7,9,["H4264"]],[9,10,["H8033"]],[10,14,["H3318"]],[14,15,["H2351"]]]},{"k":5513,"v":[[0,4,["H1961"]],[4,6,["H3489"]],[6,7,["H5921"]],[7,9,["H240"]],[9,13,["H1961"]],[13,17,["H3427"]],[17,19,["H2351"]],[19,22,["H2658"]],[22,27,["H7725"]],[27,29,["H3680","(H853)"]],[29,32,["H6627"]],[32,34,[]]]},{"k":5514,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,6,["H1980"]],[6,9,["H7130"]],[9,12,["H4264"]],[12,14,["H5337"]],[14,19,["H5414"]],[19,21,["H341"]],[21,22,["H6440"]],[22,27,["H4264"]],[27,28,["H1961"]],[28,29,["H6918"]],[29,32,["H7200"]],[32,33,["H3808"]],[33,34,["H6172"]],[34,35,["H1697"]],[35,40,["H7725"]],[40,41,["H4480","H310"]],[41,42,[]]]},{"k":5515,"v":[[0,3,["H3808"]],[3,4,["H5462"]],[4,5,["H413"]],[5,7,["H113"]],[7,9,["H5650"]],[9,10,["H834"]],[10,12,["H5337"]],[12,13,["H4480","H5973"]],[13,15,["H113"]],[15,16,["H413"]],[16,17,[]]]},{"k":5516,"v":[[0,3,["H3427"]],[3,4,["H5973"]],[4,7,["H7130"]],[7,11,["H4725"]],[11,12,["H834"]],[12,15,["H977"]],[15,17,["H259"]],[17,20,["H8179"]],[20,25,["H2896"]],[25,28,["H3808"]],[28,29,["H3238"]],[29,30,[]]]},{"k":5517,"v":[[0,3,["H1961"]],[3,4,["H3808"]],[4,5,["H6948"]],[5,8,["H4480","H1323"]],[8,10,["H3478"]],[10,11,["H3808"]],[11,13,["H6945"]],[13,16,["H4480","H1121"]],[16,18,["H3478"]]]},{"k":5518,"v":[[0,3,["H3808"]],[3,4,["H935"]],[4,6,["H868"]],[6,9,["H2181"]],[9,12,["H4242"]],[12,15,["H3611"]],[15,18,["H1004"]],[18,21,["H3068"]],[21,23,["H430"]],[23,25,["H3605"]],[25,26,["H5088"]],[26,27,["H3588"]],[27,28,["H1571"]],[28,29,["H8147"]],[29,32,["H8441"]],[32,35,["H3068"]],[35,37,["H430"]]]},{"k":5519,"v":[[0,3,["H3808"]],[3,6,["H5391"]],[6,9,["H251"]],[9,10,["H5392"]],[10,12,["H3701"]],[12,13,["H5392"]],[13,15,["H400"]],[15,16,["H5392"]],[16,18,["H3605"]],[18,19,["H1697"]],[19,20,["H834"]],[20,24,["H5391"]]]},{"k":5520,"v":[[0,3,["H5237"]],[3,8,["H5391"]],[8,12,["H251"]],[12,15,["H3808"]],[15,18,["H5391"]],[18,19,["H4616"]],[19,21,["H3068"]],[21,23,["H430"]],[23,25,["H1288"]],[25,28,["H3605"]],[28,31,["H4916"]],[31,33,["H3027"]],[33,35,["H5921"]],[35,37,["H776"]],[37,38,["H834","H8033"]],[38,39,["H859"]],[39,40,["H935"]],[40,42,["H3423"]],[42,43,[]]]},{"k":5521,"v":[[0,1,["H3588"]],[1,4,["H5087"]],[4,6,["H5088"]],[6,9,["H3068"]],[9,11,["H430"]],[11,14,["H3808"]],[14,15,["H309"]],[15,17,["H7999"]],[17,19,["H3588"]],[19,21,["H3068"]],[21,23,["H430"]],[23,26,["H1875","H1875"]],[26,28,["H4480","H5973"]],[28,33,["H1961"]],[33,34,["H2399"]],[34,36,[]]]},{"k":5522,"v":[[0,2,["H3588"]],[2,5,["H2308"]],[5,7,["H5087"]],[7,10,["H1961"]],[10,11,["H3808"]],[11,12,["H2399"]],[12,14,[]]]},{"k":5523,"v":[[0,5,["H4161"]],[5,8,["H8193"]],[8,11,["H8104"]],[11,13,["H6213"]],[13,17,["H5071"]],[17,19,["H834"]],[19,22,["H5087"]],[22,25,["H3068"]],[25,27,["H430"]],[27,28,["H834"]],[28,31,["H1696"]],[31,34,["H6310"]]]},{"k":5524,"v":[[0,1,["H3588"]],[1,3,["H935"]],[3,6,["H7453"]],[6,7,["H3754"]],[7,11,["H398"]],[11,12,["H6025"]],[12,14,["H7648"]],[14,18,["H5315"]],[18,22,["H3808"]],[22,23,["H5414"]],[23,25,["H413"]],[25,27,["H3627"]]]},{"k":5525,"v":[[0,1,["H3588"]],[1,3,["H935"]],[3,7,["H7054"]],[7,10,["H7453"]],[10,14,["H6998"]],[14,16,["H4425"]],[16,19,["H3027"]],[19,23,["H3808"]],[23,24,["H5130"]],[24,26,["H2770"]],[26,27,["H5921"]],[27,29,["H7453"]],[29,31,["H7054"]]]},{"k":5526,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,5,["H3947"]],[5,7,["H802"]],[7,9,["H1166"]],[9,15,["H1961"]],[15,16,["H518"]],[16,18,["H4672"]],[18,19,["H3808"]],[19,20,["H2580"]],[20,23,["H5869"]],[23,24,["H3588"]],[24,27,["H4672"]],[27,28,["H1697"]],[28,29,["H6172"]],[29,35,["H3789"]],[35,38,["H5612"]],[38,40,["H3748"]],[40,42,["H5414"]],[42,46,["H3027"]],[46,48,["H7971"]],[48,53,["H4480","H1004"]]]},{"k":5527,"v":[[0,5,["H3318"]],[5,9,["H4480","H1004"]],[9,12,["H1980"]],[12,14,["H1961"]],[14,15,["H312"]],[15,16,["H376"]],[16,17,[]]]},{"k":5528,"v":[[0,4,["H314"]],[4,5,["H376"]],[5,6,["H8130"]],[6,9,["H3789"]],[9,12,["H5612"]],[12,14,["H3748"]],[14,16,["H5414"]],[16,20,["H3027"]],[20,22,["H7971"]],[22,27,["H4480","H1004"]],[27,28,["H176"]],[28,29,["H3588"]],[29,31,["H314"]],[31,32,["H376"]],[32,33,["H4191"]],[33,34,["H834"]],[34,35,["H3947"]],[35,40,["H802"]]]},{"k":5529,"v":[[0,2,["H7223"]],[2,3,["H1167"]],[3,4,["H834"]],[4,7,["H7971"]],[7,8,["H3201"]],[8,9,["H3808"]],[9,10,["H3947"]],[10,12,["H7725"]],[12,14,["H1961"]],[14,16,["H802"]],[16,18,["H310","H834"]],[18,21,["H2930"]],[21,22,["H3588"]],[22,23,["H1931"]],[23,25,["H8441"]],[25,26,["H6440"]],[26,28,["H3068"]],[28,32,["H3808"]],[32,33,["(H853)"]],[33,35,["H776"]],[35,37,["H2398"]],[37,38,["H834"]],[38,40,["H3068"]],[40,42,["H430"]],[42,43,["H5414"]],[43,47,["H5159"]]]},{"k":5530,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,5,["H3947"]],[5,7,["H2319"]],[7,8,["H802"]],[8,11,["H3808"]],[11,13,["H3318"]],[13,15,["H6635"]],[15,16,["H3808"]],[16,20,["H5674"]],[20,21,["H5921"]],[21,22,["H3605"]],[22,23,["H1697"]],[23,27,["H1961"]],[27,28,["H5355"]],[28,30,["H1004"]],[30,31,["H259"]],[31,32,["H8141"]],[32,36,["H8055","(H853)"]],[36,38,["H802"]],[38,39,["H834"]],[39,42,["H3947"]]]},{"k":5531,"v":[[0,1,["H3808"]],[1,4,["H2254"]],[4,6,["H7347"]],[6,9,["H7393"]],[9,10,["H7347"]],[10,12,["H2254"]],[12,13,["H3588"]],[13,14,["H1931"]],[14,15,["H2254"]],[15,18,["H5315"]],[18,20,["H2254"]]]},{"k":5532,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,5,["H4672"]],[5,6,["H1589"]],[6,7,["H5315"]],[7,10,["H4480","H251"]],[10,13,["H4480","H1121"]],[13,15,["H3478"]],[15,18,["H6014"]],[18,22,["H4376"]],[22,25,["H1931"]],[25,26,["H1590"]],[26,28,["H4191"]],[28,34,["H1197","H7451"]],[34,36,["H4480","H7130"]],[36,37,[]]]},{"k":5533,"v":[[0,2,["H8104"]],[2,5,["H5061"]],[5,7,["H6883"]],[7,10,["H8104"]],[10,11,["H3966"]],[11,13,["H6213"]],[13,16,["H3605"]],[16,17,["H834"]],[17,19,["H3548"]],[19,21,["H3881"]],[21,23,["H3384"]],[23,25,["H834"]],[25,27,["H6680"]],[27,32,["H8104"]],[32,34,["H6213"]]]},{"k":5534,"v":[[0,1,["H2142","(H853)"]],[1,2,["H834"]],[2,4,["H3068"]],[4,6,["H430"]],[6,7,["H6213"]],[7,9,["H4813"]],[9,12,["H1870"]],[12,18,["H3318"]],[18,21,["H4480","H4714"]]]},{"k":5535,"v":[[0,1,["H3588"]],[1,4,["H5383"]],[4,6,["H7453"]],[6,7,["H3972"]],[7,8,["H4859"]],[8,11,["H3808"]],[11,12,["H935"]],[12,13,["H413"]],[13,15,["H1004"]],[15,17,["H5670"]],[17,19,["H5667"]]]},{"k":5536,"v":[[0,3,["H5975"]],[3,4,["H2351"]],[4,7,["H376"]],[7,9,["H834"]],[9,10,["H859"]],[10,12,["H5383"]],[12,15,["H3318","(H853)"]],[15,17,["H5667"]],[17,18,["H2351"]],[18,19,["H413"]],[19,20,[]]]},{"k":5537,"v":[[0,2,["H518"]],[2,4,["H376"]],[4,6,["H6041"]],[6,9,["H3808"]],[9,10,["H7901"]],[10,13,["H5667"]]]},{"k":5538,"v":[[0,6,["H7725","H7725"]],[6,7,["(H853)"]],[7,9,["H5667"]],[9,13,["H8121"]],[13,15,["H935"]],[15,19,["H7901"]],[19,23,["H8008"]],[23,25,["H1288"]],[25,30,["H1961"]],[30,31,["H6666"]],[31,34,["H6440"]],[34,36,["H3068"]],[36,38,["H430"]]]},{"k":5539,"v":[[0,3,["H3808"]],[3,4,["H6231"]],[4,7,["H7916"]],[7,10,["H6041"]],[10,12,["H34"]],[12,18,["H4480","H251"]],[18,19,["H176"]],[19,22,["H4480","H1616"]],[22,23,["H834"]],[23,27,["H776"]],[27,30,["H8179"]]]},{"k":5540,"v":[[0,3,["H3117"]],[3,6,["H5414"]],[6,9,["H7939"]],[9,10,["H3808"]],[10,13,["H8121"]],[13,15,["H935"]],[15,16,["H5921"]],[16,18,["H3588"]],[18,19,["H1931"]],[19,21,["H6041"]],[21,23,["H5375","(H853)"]],[23,25,["H5315"]],[25,26,["H413"]],[26,28,["H3808"]],[28,30,["H7121"]],[30,31,["H5921"]],[31,33,["H413"]],[33,35,["H3068"]],[35,38,["H1961"]],[38,39,["H2399"]],[39,41,[]]]},{"k":5541,"v":[[0,2,["H1"]],[2,4,["H3808"]],[4,8,["H4191"]],[8,9,["H5921"]],[9,11,["H1121"]],[11,12,["H3808"]],[12,15,["H1121"]],[15,19,["H4191"]],[19,20,["H5921"]],[20,22,["H1"]],[22,24,["H376"]],[24,29,["H4191"]],[29,33,["H2399"]]]},{"k":5542,"v":[[0,3,["H3808"]],[3,4,["H5186"]],[4,6,["H4941"]],[6,9,["H1616"]],[9,13,["H3490"]],[13,14,["H3808"]],[14,15,["H2254"]],[15,17,["H490"]],[17,18,["H899"]],[18,20,["H2254"]]]},{"k":5543,"v":[[0,4,["H2142"]],[4,5,["H3588"]],[5,7,["H1961"]],[7,9,["H5650"]],[9,11,["H4714"]],[11,14,["H3068"]],[14,16,["H430"]],[16,17,["H6299"]],[17,19,["H4480","H8033"]],[19,20,["H5921","H3651"]],[20,21,["H595"]],[21,22,["H6680"]],[22,25,["H6213","(H853)"]],[25,26,["H2088"]],[26,27,["H1697"]]]},{"k":5544,"v":[[0,1,["H3588"]],[1,4,["H7114"]],[4,6,["H7105"]],[6,9,["H7704"]],[9,12,["H7911"]],[12,14,["H6016"]],[14,17,["H7704"]],[17,20,["H3808"]],[20,22,["H7725"]],[22,24,["H3947"]],[24,28,["H1961"]],[28,31,["H1616"]],[31,34,["H3490"]],[34,38,["H490"]],[38,39,["H4616"]],[39,41,["H3068"]],[41,43,["H430"]],[43,45,["H1288"]],[45,48,["H3605"]],[48,50,["H4639"]],[50,53,["H3027"]]]},{"k":5545,"v":[[0,1,["H3588"]],[1,3,["H2251"]],[3,6,["H2132"]],[6,9,["H3808"]],[9,13,["H6286"]],[13,14,["H310"]],[14,17,["H1961"]],[17,20,["H1616"]],[20,23,["H3490"]],[23,27,["H490"]]]},{"k":5546,"v":[[0,1,["H3588"]],[1,5,["H1219"]],[5,8,["H3754"]],[8,11,["H3808"]],[11,12,["H5953"]],[12,14,["H310"]],[14,17,["H1961"]],[17,20,["H1616"]],[20,23,["H3490"]],[23,27,["H490"]]]},{"k":5547,"v":[[0,4,["H2142"]],[4,5,["H3588"]],[5,7,["H1961"]],[7,9,["H5650"]],[9,12,["H776"]],[12,14,["H4714"]],[14,15,["H5921","H3651"]],[15,16,["H595"]],[16,17,["H6680"]],[17,20,["H6213","(H853)"]],[20,21,["H2088"]],[21,22,["H1697"]]]},{"k":5548,"v":[[0,1,["H3588"]],[1,3,["H1961"]],[3,5,["H7379"]],[5,6,["H996"]],[6,7,["H376"]],[7,10,["H5066"]],[10,11,["H413"]],[11,12,["H4941"]],[12,17,["H8199"]],[17,22,["H6663","(H853)"]],[22,24,["H6662"]],[24,26,["H7561","(H853)"]],[26,28,["H7563"]]]},{"k":5549,"v":[[0,4,["H1961"]],[4,5,["H518"]],[5,7,["H7563"]],[7,13,["H1121","H5221"]],[13,16,["H8199"]],[16,22,["H5307"]],[22,26,["H5221"]],[26,29,["H6440"]],[29,31,["H1767"]],[31,33,["H7564"]],[33,37,["H4557"]]]},{"k":5550,"v":[[0,1,["H705"]],[1,5,["H5221"]],[5,8,["H3808"]],[8,9,["H3254"]],[9,10,["H6435"]],[10,14,["H3254"]],[14,16,["H5221"]],[16,18,["H5921"]],[18,19,["H428"]],[19,21,["H7227"]],[21,22,["H4347"]],[22,25,["H251"]],[25,28,["H7034"]],[28,29,["H5869"]],[29,30,[]]]},{"k":5551,"v":[[0,3,["H3808"]],[3,4,["H2629"]],[4,6,["H7794"]],[6,10,["H1758"]],[10,12,[]]]},{"k":5552,"v":[[0,1,["H3588"]],[1,2,["H251"]],[2,3,["H3427"]],[3,4,["H3162"]],[4,6,["H259"]],[6,7,["H4480"]],[7,9,["H4191"]],[9,12,["H369"]],[12,13,["H1121"]],[13,15,["H802"]],[15,18,["H4191"]],[18,20,["H3808"]],[20,21,["H1961"]],[21,22,["H2351"]],[22,25,["H376","H2114"]],[25,28,["H2993"]],[28,31,["H935"]],[31,32,["H5921"]],[32,35,["H3947"]],[35,40,["H802"]],[40,48,["H2992"]],[48,50,[]]]},{"k":5553,"v":[[0,4,["H1961"]],[4,7,["H1060"]],[7,8,["H834"]],[8,10,["H3205"]],[10,12,["H6965"]],[12,13,["H5921"]],[13,15,["H8034"]],[15,18,["H251"]],[18,21,["H4191"]],[21,24,["H8034"]],[24,26,["H3808"]],[26,28,["H4229"]],[28,30,["H4480","H3478"]]]},{"k":5554,"v":[[0,2,["H518"]],[2,4,["H376"]],[4,5,["H2654"]],[5,6,["H3808"]],[6,8,["H3947","(H853)"]],[8,11,["H2994"]],[11,16,["H2994"]],[16,18,["H5927"]],[18,21,["H8179"]],[21,22,["H413"]],[22,24,["H2205"]],[24,26,["H559"]],[26,29,["H2993"]],[29,30,["H3985"]],[30,33,["H6965"]],[33,36,["H251"]],[36,38,["H8034"]],[38,40,["H3478"]],[40,42,["H14"]],[42,43,["H3808"]],[43,50,["H2992"]]]},{"k":5555,"v":[[0,3,["H2205"]],[3,6,["H5892"]],[6,8,["H7121"]],[8,11,["H1696"]],[11,12,["H413"]],[12,17,["H5975"]],[17,21,["H559"]],[21,23,["H2654"]],[23,24,["H3808"]],[24,26,["H3947"]],[26,27,[]]]},{"k":5556,"v":[[0,5,["H2994"]],[5,6,["H5066"]],[6,7,["H413"]],[7,11,["H5869"]],[11,14,["H2205"]],[14,16,["H2502"]],[16,18,["H5275"]],[18,20,["H4480","H5921"]],[20,22,["H7272"]],[22,24,["H3417"]],[24,27,["H6440"]],[27,30,["H6030"]],[30,32,["H559"]],[32,33,["H3602"]],[33,37,["H6213"]],[37,40,["H376"]],[40,41,["H834"]],[41,43,["H3808"]],[43,45,["H1129","(H853)"]],[45,47,["H251"]],[47,48,["H1004"]]]},{"k":5557,"v":[[0,3,["H8034"]],[3,6,["H7121"]],[6,8,["H3478"]],[8,10,["H1004"]],[10,16,["H5275"]],[16,17,["H2502"]]]},{"k":5558,"v":[[0,1,["H3588"]],[1,2,["H376"]],[2,3,["H5327"]],[3,4,["H3162"]],[4,5,["H376"]],[5,7,["H251"]],[7,10,["H802"]],[10,13,["H259"]],[13,15,["H7126"]],[15,18,["H5337","(H853)"]],[18,20,["H376"]],[20,24,["H4480","H3027"]],[24,28,["H5221"]],[28,32,["H7971"]],[32,34,["H3027"]],[34,36,["H2388"]],[36,40,["H4016"]]]},{"k":5559,"v":[[0,5,["H7112","(H853)"]],[5,7,["H3709"]],[7,9,["H5869"]],[9,11,["H3808"]],[11,12,["H2347"]],[12,13,[]]]},{"k":5560,"v":[[0,3,["H3808"]],[3,4,["H1961"]],[4,7,["H3599"]],[7,9,["H68","H68"]],[9,11,["H1419"]],[11,14,["H6996"]]]},{"k":5561,"v":[[0,3,["H3808"]],[3,4,["H1961"]],[4,7,["H1004"]],[7,9,["H374","H374"]],[9,11,["H1419"]],[11,14,["H6996"]]]},{"k":5562,"v":[[0,4,["H1961"]],[4,6,["H8003"]],[6,8,["H6664"]],[8,9,["H68"]],[9,11,["H8003"]],[11,13,["H6664"]],[13,14,["H374"]],[14,17,["H1961"]],[17,18,["H4616"]],[18,20,["H3117"]],[20,23,["H748"]],[23,24,["H5921"]],[24,26,["H127"]],[26,27,["H834"]],[27,29,["H3068"]],[29,31,["H430"]],[31,32,["H5414"]],[32,33,[]]]},{"k":5563,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H6213"]],[4,6,["H428"]],[6,8,["H3605"]],[8,10,["H6213"]],[10,11,["H5766"]],[11,14,["H8441"]],[14,17,["H3068"]],[17,19,["H430"]]]},{"k":5564,"v":[[0,1,["H2142","(H853)"]],[1,2,["H834"]],[2,3,["H6002"]],[3,4,["H6213"]],[4,9,["H1870"]],[9,14,["H3318"]],[14,17,["H4480","H4714"]]]},{"k":5565,"v":[[0,1,["H834"]],[1,3,["H7136"]],[3,7,["H1870"]],[7,11,["H2179"]],[11,15,["H3605"]],[15,18,["H2826"]],[18,19,["H310"]],[19,22,["H859"]],[22,24,["H5889"]],[24,26,["H3023"]],[26,29,["H3372"]],[29,30,["H3808"]],[30,31,["H430"]]]},{"k":5566,"v":[[0,4,["H1961"]],[4,7,["H3068"]],[7,9,["H430"]],[9,13,["H5117"]],[13,15,["H4480","H3605"]],[15,17,["H341"]],[17,19,["H4480","H5439"]],[19,22,["H776"]],[22,23,["H834"]],[23,25,["H3068"]],[25,27,["H430"]],[27,28,["H5414"]],[28,32,["H5159"]],[32,34,["H3423"]],[34,40,["H4229","(H853)"]],[40,42,["H2143"]],[42,44,["H6002"]],[44,46,["H4480","H8478"]],[46,47,["H8064"]],[47,50,["H3808"]],[50,51,["H7911"]],[51,52,[]]]},{"k":5567,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,9,["H935"]],[9,10,["H413"]],[10,12,["H776"]],[12,13,["H834"]],[13,15,["H3068"]],[15,17,["H430"]],[17,18,["H5414"]],[18,22,["H5159"]],[22,24,["H3423"]],[24,27,["H3427"]],[27,28,[]]]},{"k":5568,"v":[[0,4,["H3947"]],[4,7,["H4480","H7225"]],[7,9,["H3605"]],[9,11,["H6529"]],[11,14,["H127"]],[14,15,["H834"]],[15,18,["H935"]],[18,21,["H4480","H776"]],[21,22,["H834"]],[22,24,["H3068"]],[24,26,["H430"]],[26,27,["H5414"]],[27,31,["H7760"]],[31,35,["H2935"]],[35,38,["H1980"]],[38,39,["H413"]],[39,41,["H4725"]],[41,42,["H834"]],[42,44,["H3068"]],[44,46,["H430"]],[46,48,["H977"]],[48,50,["H7931"]],[50,52,["H8034"]],[52,53,["H8033"]]]},{"k":5569,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H3548"]],[7,8,["H834"]],[8,10,["H1961"]],[10,12,["H1992"]],[12,13,["H3117"]],[13,15,["H559"]],[15,16,["H413"]],[16,19,["H5046"]],[19,21,["H3117"]],[21,24,["H3068"]],[24,26,["H430"]],[26,27,["H3588"]],[27,30,["H935"]],[30,31,["H413"]],[31,33,["H776"]],[33,34,["H834"]],[34,36,["H3068"]],[36,37,["H7650"]],[37,40,["H1"]],[40,43,["H5414"]],[43,44,[]]]},{"k":5570,"v":[[0,3,["H3548"]],[3,5,["H3947"]],[5,7,["H2935"]],[7,11,["H4480","H3027"]],[11,15,["H5117"]],[15,16,["H6440"]],[16,18,["H4196"]],[18,21,["H3068"]],[21,23,["H430"]]]},{"k":5571,"v":[[0,4,["H6030"]],[4,6,["H559"]],[6,7,["H6440"]],[7,9,["H3068"]],[9,11,["H430"]],[11,13,["H761"]],[13,16,["H6"]],[16,19,["H1"]],[19,23,["H3381"]],[23,25,["H4714"]],[25,27,["H1481"]],[27,28,["H8033"]],[28,31,["H4962","H4592"]],[31,33,["H1961"]],[33,34,["H8033"]],[34,36,["H1471"]],[36,37,["H1419"]],[37,38,["H6099"]],[38,40,["H7227"]]]},{"k":5572,"v":[[0,3,["H4713"]],[3,5,["H7489"]],[5,8,["H6031"]],[8,11,["H5414"]],[11,12,["H5921"]],[12,14,["H7186"]],[14,15,["H5656"]]]},{"k":5573,"v":[[0,4,["H6817"]],[4,5,["H413"]],[5,7,["H3068"]],[7,8,["H430"]],[8,11,["H1"]],[11,13,["H3068"]],[13,14,["H8085","(H853)"]],[14,16,["H6963"]],[16,19,["H7200","(H853)"]],[19,21,["H6040"]],[21,24,["H5999"]],[24,27,["H3906"]]]},{"k":5574,"v":[[0,3,["H3068"]],[3,6,["H3318"]],[6,9,["H4480","H4714"]],[9,12,["H2389"]],[12,13,["H3027"]],[13,17,["H5186"]],[17,18,["H2220"]],[18,21,["H1419"]],[21,22,["H4172"]],[22,25,["H226"]],[25,28,["H4159"]]]},{"k":5575,"v":[[0,4,["H935"]],[4,6,["H413"]],[6,7,["H2088"]],[7,8,["H4725"]],[8,11,["H5414"]],[11,12,["(H853)"]],[12,13,["H2063"]],[13,14,["H776"]],[14,17,["H776"]],[17,19,["H2100"]],[19,21,["H2461"]],[21,23,["H1706"]]]},{"k":5576,"v":[[0,2,["H6258"]],[2,3,["H2009"]],[3,6,["H935","(H853)"]],[6,8,["H7225","H6529"]],[8,11,["H127"]],[11,12,["H834"]],[12,15,["H3068"]],[15,17,["H5414"]],[17,22,["H5117"]],[22,24,["H6440"]],[24,26,["H3068"]],[26,28,["H430"]],[28,30,["H7812"]],[30,31,["H6440"]],[31,33,["H3068"]],[33,35,["H430"]]]},{"k":5577,"v":[[0,4,["H8055"]],[4,6,["H3605"]],[6,7,["H2896"]],[7,9,["H834"]],[9,11,["H3068"]],[11,13,["H430"]],[13,15,["H5414"]],[15,21,["H1004"]],[21,22,["H859"]],[22,25,["H3881"]],[25,28,["H1616"]],[28,29,["H834"]],[29,31,["H7130"]],[31,32,[]]]},{"k":5578,"v":[[0,1,["H3588"]],[1,6,["H3615"]],[6,8,["H6237","(H853)"]],[8,9,["H3605"]],[9,11,["H4643"]],[11,14,["H8393"]],[14,16,["H7992"]],[16,17,["H8141"]],[17,21,["H8141"]],[21,23,["H4643"]],[23,26,["H5414"]],[26,30,["H3881"]],[30,32,["H1616"]],[32,34,["H3490"]],[34,37,["H490"]],[37,41,["H398"]],[41,44,["H8179"]],[44,47,["H7646"]]]},{"k":5579,"v":[[0,4,["H559"]],[4,5,["H6440"]],[5,7,["H3068"]],[7,9,["H430"]],[9,13,["H1197"]],[13,16,["H6944"]],[16,18,["H4480"]],[18,20,["H1004"]],[20,22,["H1571"]],[22,24,["H5414"]],[24,28,["H3881"]],[28,32,["H1616"]],[32,35,["H3490"]],[35,39,["H490"]],[39,42,["H3605"]],[42,44,["H4687"]],[44,45,["H834"]],[45,48,["H6680"]],[48,52,["H3808"]],[52,53,["H5674"]],[53,55,["H4480","H4687"]],[55,56,["H3808"]],[56,59,["H7911"]],[59,60,[]]]},{"k":5580,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,5,["H4480"]],[5,8,["H205"]],[8,9,["H3808"]],[9,13,["H1197"]],[13,15,["H4480"]],[15,18,["H2931"]],[18,20,["H3808"]],[20,21,["H5414"]],[21,23,["H4480"]],[23,26,["H4191"]],[26,30,["H8085"]],[30,33,["H6963"]],[33,36,["H3068"]],[36,38,["H430"]],[38,41,["H6213"]],[41,44,["H3605"]],[44,45,["H834"]],[45,48,["H6680"]],[48,49,[]]]},{"k":5581,"v":[[0,2,["H8259"]],[2,5,["H6944"]],[5,6,["H4480","H4583"]],[6,7,["H4480"]],[7,8,["H8064"]],[8,10,["H1288","(H853)"]],[10,12,["H5971","(H853)"]],[12,13,["H3478"]],[13,16,["H127"]],[16,17,["H834"]],[17,20,["H5414"]],[20,22,["H834"]],[22,24,["H7650"]],[24,27,["H1"]],[27,29,["H776"]],[29,31,["H2100"]],[31,33,["H2461"]],[33,35,["H1706"]]]},{"k":5582,"v":[[0,1,["H2088"]],[1,2,["H3117"]],[2,4,["H3068"]],[4,6,["H430"]],[6,8,["H6680"]],[8,11,["H6213","(H853)"]],[11,12,["H428"]],[12,13,["H2706"]],[13,15,["H4941"]],[15,19,["H8104"]],[19,21,["H6213"]],[21,24,["H3605"]],[24,26,["H3824"]],[26,29,["H3605"]],[29,31,["H5315"]]]},{"k":5583,"v":[[0,3,["H559","(H853)"]],[3,5,["H3068"]],[5,7,["H3117"]],[7,9,["H1961"]],[9,11,["H430"]],[11,14,["H1980"]],[14,17,["H1870"]],[17,20,["H8104"]],[20,22,["H2706"]],[22,25,["H4687"]],[25,28,["H4941"]],[28,31,["H8085"]],[31,34,["H6963"]]]},{"k":5584,"v":[[0,3,["H3068"]],[3,5,["H559"]],[5,8,["H3117"]],[8,10,["H1961"]],[10,12,["H5459"]],[12,13,["H5971"]],[13,14,["H834"]],[14,17,["H1696"]],[17,23,["H8104"]],[23,24,["H3605"]],[24,26,["H4687"]]]},{"k":5585,"v":[[0,3,["H5414"]],[3,5,["H5945"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,8,["H1471"]],[8,9,["H834"]],[9,12,["H6213"]],[12,14,["H8416"]],[14,17,["H8034"]],[17,20,["H8597"]],[20,25,["H1961"]],[25,27,["H6918"]],[27,28,["H5971"]],[28,31,["H3068"]],[31,33,["H430"]],[33,34,["H834"]],[34,37,["H1696"]]]},{"k":5586,"v":[[0,2,["H4872"]],[2,5,["H2205"]],[5,7,["H3478"]],[7,8,["H6680","(H853)"]],[8,10,["H5971"]],[10,11,["H559"]],[11,12,["H8104","(H853)"]],[12,13,["H3605"]],[13,15,["H4687"]],[15,16,["H834"]],[16,17,["H595"]],[17,18,["H6680"]],[18,21,["H3117"]]]},{"k":5587,"v":[[0,4,["H1961"]],[4,7,["H3117"]],[7,8,["H834"]],[8,12,["H5674","(H853)"]],[12,13,["H3383"]],[13,14,["H413"]],[14,16,["H776"]],[16,17,["H834"]],[17,19,["H3068"]],[19,21,["H430"]],[21,22,["H5414"]],[22,29,["H6965"]],[29,30,["H1419"]],[30,31,["H68"]],[31,33,["H7874"]],[33,36,["H7875"]]]},{"k":5588,"v":[[0,4,["H3789"]],[4,5,["H5921"]],[5,6,["(H853)"]],[6,7,["H3605"]],[7,9,["H1697"]],[9,11,["H2063"]],[11,12,["H8451"]],[12,17,["H5674"]],[17,18,["H4616","H834"]],[18,22,["H935"]],[22,23,["H413"]],[23,25,["H776"]],[25,26,["H834"]],[26,28,["H3068"]],[28,30,["H430"]],[30,31,["H5414"]],[31,34,["H776"]],[34,36,["H2100"]],[36,38,["H2461"]],[38,40,["H1706"]],[40,41,["H834"]],[41,43,["H3068"]],[43,44,["H430"]],[44,47,["H1"]],[47,49,["H1696"]],[49,50,[]]]},{"k":5589,"v":[[0,4,["H1961"]],[4,9,["H5674","(H853)"]],[9,10,["H3383"]],[10,15,["H6965","(H853)"]],[15,16,["H428"]],[16,17,["H68"]],[17,18,["H834"]],[18,19,["H595"]],[19,20,["H6680"]],[20,23,["H3117"]],[23,25,["H2022"]],[25,26,["H5858"]],[26,30,["H7874"]],[30,33,["H7875"]]]},{"k":5590,"v":[[0,2,["H8033"]],[2,5,["H1129"]],[5,7,["H4196"]],[7,10,["H3068"]],[10,12,["H430"]],[12,14,["H4196"]],[14,16,["H68"]],[16,19,["H3808"]],[19,21,["H5130"]],[21,23,["H1270"]],[23,25,["H5921"]],[25,26,[]]]},{"k":5591,"v":[[0,3,["H1129","(H853)"]],[3,5,["H4196"]],[5,8,["H3068"]],[8,10,["H430"]],[10,12,["H8003"]],[12,13,["H68"]],[13,17,["H5927"]],[17,19,["H5930"]],[19,20,["H5921"]],[20,23,["H3068"]],[23,25,["H430"]]]},{"k":5592,"v":[[0,4,["H2076"]],[4,6,["H8002"]],[6,9,["H398"]],[9,10,["H8033"]],[10,12,["H8055"]],[12,13,["H6440"]],[13,15,["H3068"]],[15,17,["H430"]]]},{"k":5593,"v":[[0,4,["H3789"]],[4,5,["H5921"]],[5,7,["H68","(H853)"]],[7,8,["H3605"]],[8,10,["H1697"]],[10,12,["H2063"]],[12,13,["H8451"]],[13,15,["H874","H3190"]]]},{"k":5594,"v":[[0,2,["H4872"]],[2,5,["H3548"]],[5,7,["H3881"]],[7,8,["H1696"]],[8,9,["H413"]],[9,10,["H3605"]],[10,11,["H3478"]],[11,12,["H559"]],[12,14,["H5535"]],[14,16,["H8085"]],[16,18,["H3478"]],[18,19,["H2088"]],[19,20,["H3117"]],[20,23,["H1961"]],[23,25,["H5971"]],[25,28,["H3068"]],[28,30,["H430"]]]},{"k":5595,"v":[[0,4,["H8085"]],[4,6,["H6963"]],[6,9,["H3068"]],[9,11,["H430"]],[11,13,["H6213","(H853)"]],[13,15,["H4687"]],[15,18,["H2706"]],[18,19,["H834"]],[19,20,["H595"]],[20,21,["H6680"]],[21,24,["H3117"]]]},{"k":5596,"v":[[0,2,["H4872"]],[2,3,["H6680","(H853)"]],[3,5,["H5971"]],[5,7,["H1931"]],[7,8,["H3117"]],[8,9,["H559"]]]},{"k":5597,"v":[[0,1,["H428"]],[1,3,["H5975"]],[3,4,["H5921"]],[4,5,["H2022"]],[5,6,["H1630"]],[6,8,["H1288","(H853)"]],[8,10,["H5971"]],[10,15,["H5674","(H853)"]],[15,16,["H3383"]],[16,17,["H8095"]],[17,19,["H3878"]],[19,21,["H3063"]],[21,23,["H3485"]],[23,25,["H3130"]],[25,27,["H1144"]]]},{"k":5598,"v":[[0,2,["H428"]],[2,4,["H5975"]],[4,6,["H2022"]],[6,7,["H5858"]],[7,8,["H5921"]],[8,9,["H7045"]],[9,10,["H7205"]],[10,11,["H1410"]],[11,13,["H836"]],[13,15,["H2074"]],[15,16,["H1835"]],[16,18,["H5321"]]]},{"k":5599,"v":[[0,3,["H3881"]],[3,5,["H6030"]],[5,7,["H559"]],[7,8,["H413"]],[8,9,["H3605"]],[9,11,["H376"]],[11,13,["H3478"]],[13,16,["H7311"]],[16,17,["H6963"]]]},{"k":5600,"v":[[0,1,["H779"]],[1,4,["H376"]],[4,5,["H834"]],[5,6,["H6213"]],[6,8,["H6459"]],[8,11,["H4541"]],[11,13,["H8441"]],[13,16,["H3068"]],[16,18,["H4639"]],[18,21,["H3027"]],[21,24,["H2796"]],[24,26,["H7760"]],[26,30,["H5643"]],[30,33,["H3605"]],[33,35,["H5971"]],[35,37,["H6030"]],[37,39,["H559"]],[39,40,["H543"]]]},{"k":5601,"v":[[0,1,["H779"]],[1,6,["H7034"]],[6,9,["H1"]],[9,12,["H517"]],[12,14,["H3605"]],[14,16,["H5971"]],[16,18,["H559"]],[18,19,["H543"]]]},{"k":5602,"v":[[0,1,["H779"]],[1,5,["H5253"]],[5,7,["H7453"]],[7,8,["H1366"]],[8,10,["H3605"]],[10,12,["H5971"]],[12,14,["H559"]],[14,15,["H543"]]]},{"k":5603,"v":[[0,1,["H779"]],[1,7,["H5787"]],[7,9,["H7686"]],[9,13,["H1870"]],[13,15,["H3605"]],[15,17,["H5971"]],[17,19,["H559"]],[19,20,["H543"]]]},{"k":5604,"v":[[0,1,["H779"]],[1,5,["H5186"]],[5,7,["H4941"]],[7,10,["H1616"]],[10,11,["H3490"]],[11,13,["H490"]],[13,15,["H3605"]],[15,17,["H5971"]],[17,19,["H559"]],[19,20,["H543"]]]},{"k":5605,"v":[[0,1,["H779"]],[1,5,["H7901"]],[5,6,["H5973"]],[6,8,["H1"]],[8,9,["H802"]],[9,10,["H3588"]],[10,12,["H1540"]],[12,14,["H1"]],[14,15,["H3671"]],[15,17,["H3605"]],[17,19,["H5971"]],[19,21,["H559"]],[21,22,["H543"]]]},{"k":5606,"v":[[0,1,["H779"]],[1,5,["H7901"]],[5,6,["H5973"]],[6,8,["H3605"]],[8,10,["H929"]],[10,12,["H3605"]],[12,14,["H5971"]],[14,16,["H559"]],[16,17,["H543"]]]},{"k":5607,"v":[[0,1,["H779"]],[1,5,["H7901"]],[5,6,["H5973"]],[6,8,["H269"]],[8,10,["H1323"]],[10,13,["H1"]],[13,14,["H176"]],[14,16,["H1323"]],[16,19,["H517"]],[19,21,["H3605"]],[21,23,["H5971"]],[23,25,["H559"]],[25,26,["H543"]]]},{"k":5608,"v":[[0,1,["H779"]],[1,5,["H7901"]],[5,6,["H5973"]],[6,10,["H2859"]],[10,12,["H3605"]],[12,14,["H5971"]],[14,16,["H559"]],[16,17,["H543"]]]},{"k":5609,"v":[[0,1,["H779"]],[1,5,["H5221"]],[5,7,["H7453"]],[7,8,["H5643"]],[8,10,["H3605"]],[10,12,["H5971"]],[12,14,["H559"]],[14,15,["H543"]]]},{"k":5610,"v":[[0,1,["H779"]],[1,5,["H3947"]],[5,6,["H7810"]],[6,8,["H5221"]],[8,10,["H5355"]],[10,11,["H5315"]],[11,13,["H3605"]],[13,15,["H5971"]],[15,17,["H559"]],[17,18,["H543"]]]},{"k":5611,"v":[[0,1,["H779"]],[1,4,["H834"]],[4,5,["H6965"]],[5,6,["H3808"]],[6,7,["(H853)"]],[7,9,["H1697"]],[9,11,["H2063"]],[11,12,["H8451"]],[12,14,["H6213"]],[14,17,["H3605"]],[17,19,["H5971"]],[19,21,["H559"]],[21,22,["H543"]]]},{"k":5612,"v":[[0,6,["H1961"]],[6,7,["H518"]],[7,11,["H8085","H8085"]],[11,14,["H6963"]],[14,17,["H3068"]],[17,19,["H430"]],[19,21,["H8104"]],[21,24,["H6213","(H853)"]],[24,25,["H3605"]],[25,27,["H4687"]],[27,28,["H834"]],[28,29,["H595"]],[29,30,["H6680"]],[30,33,["H3117"]],[33,36,["H3068"]],[36,38,["H430"]],[38,40,["H5414"]],[40,43,["H5945"]],[43,44,["H5921"]],[44,45,["H3605"]],[45,46,["H1471"]],[46,49,["H776"]]]},{"k":5613,"v":[[0,2,["H3605"]],[2,3,["H428"]],[3,4,["H1293"]],[4,6,["H935"]],[6,7,["H5921"]],[7,10,["H5381"]],[10,12,["H3588"]],[12,15,["H8085"]],[15,18,["H6963"]],[18,21,["H3068"]],[21,23,["H430"]]]},{"k":5614,"v":[[0,1,["H1288"]],[1,3,["H859"]],[3,7,["H5892"]],[7,9,["H1288"]],[9,11,["H859"]],[11,15,["H7704"]]]},{"k":5615,"v":[[0,1,["H1288"]],[1,5,["H6529"]],[5,8,["H990"]],[8,11,["H6529"]],[11,14,["H127"]],[14,17,["H6529"]],[17,20,["H929"]],[20,22,["H7698"]],[22,25,["H504"]],[25,28,["H6251"]],[28,31,["H6629"]]]},{"k":5616,"v":[[0,1,["H1288"]],[1,5,["H2935"]],[5,8,["H4863"]]]},{"k":5617,"v":[[0,1,["H1288"]],[1,3,["H859"]],[3,8,["H935"]],[8,10,["H1288"]],[10,12,["H859"]],[12,17,["H3318"]]]},{"k":5618,"v":[[0,2,["H3068"]],[2,4,["H5414","(H853)"]],[4,6,["H341"]],[6,9,["H6965"]],[9,10,["H5921"]],[10,14,["H5062"]],[14,17,["H6440"]],[17,21,["H3318"]],[21,22,["H413"]],[22,24,["H259"]],[24,25,["H1870"]],[25,27,["H5127"]],[27,28,["H6440"]],[28,30,["H7651"]],[30,31,["H1870"]]]},{"k":5619,"v":[[0,2,["H3068"]],[2,4,["H6680","(H853)"]],[4,6,["H1293"]],[6,7,["H854"]],[7,11,["H618"]],[11,14,["H3605"]],[14,17,["H4916"]],[17,19,["H3027"]],[19,24,["H1288"]],[24,28,["H776"]],[28,29,["H834"]],[29,31,["H3068"]],[31,33,["H430"]],[33,34,["H5414"]],[34,35,[]]]},{"k":5620,"v":[[0,2,["H3068"]],[2,4,["H6965"]],[4,7,["H6918"]],[7,8,["H5971"]],[8,11,["H834"]],[11,14,["H7650"]],[14,17,["H3588"]],[17,20,["H8104","(H853)"]],[20,22,["H4687"]],[22,25,["H3068"]],[25,27,["H430"]],[27,29,["H1980"]],[29,32,["H1870"]]]},{"k":5621,"v":[[0,2,["H3605"]],[2,3,["H5971"]],[3,6,["H776"]],[6,8,["H7200"]],[8,9,["H3588"]],[9,12,["H7121"]],[12,13,["H5921"]],[13,15,["H8034"]],[15,18,["H3068"]],[18,23,["H3372"]],[23,24,["H4480"]],[24,25,[]]]},{"k":5622,"v":[[0,3,["H3068"]],[3,7,["H3498"]],[7,9,["H2896"]],[9,12,["H6529"]],[12,15,["H990"]],[15,19,["H6529"]],[19,22,["H929"]],[22,26,["H6529"]],[26,29,["H127"]],[29,30,["H5921"]],[30,32,["H127"]],[32,33,["H834"]],[33,35,["H3068"]],[35,36,["H7650"]],[36,39,["H1"]],[39,41,["H5414"]],[41,42,[]]]},{"k":5623,"v":[[0,2,["H3068"]],[2,4,["H6605"]],[4,6,["(H853)"]],[6,8,["H2896"]],[8,9,["H214","(H853)"]],[9,11,["H8064"]],[11,13,["H5414"]],[13,15,["H4306"]],[15,18,["H776"]],[18,21,["H6256"]],[21,24,["H1288","(H853)"]],[24,25,["H3605"]],[25,27,["H4639"]],[27,30,["H3027"]],[30,34,["H3867"]],[34,36,["H7227"]],[36,37,["H1471"]],[37,39,["H859"]],[39,41,["H3808"]],[41,42,["H3867"]]]},{"k":5624,"v":[[0,3,["H3068"]],[3,5,["H5414"]],[5,8,["H7218"]],[8,10,["H3808"]],[10,12,["H2180"]],[12,16,["H1961"]],[16,17,["H4605"]],[17,18,["H7535"]],[18,22,["H3808"]],[22,23,["H1961"]],[23,24,["H4295"]],[24,25,["H3588"]],[25,28,["H8085"]],[28,29,["H413"]],[29,31,["H4687"]],[31,34,["H3068"]],[34,36,["H430"]],[36,37,["H834"]],[37,38,["H595"]],[38,39,["H6680"]],[39,42,["H3117"]],[42,44,["H8104"]],[44,47,["H6213"]],[47,48,[]]]},{"k":5625,"v":[[0,4,["H3808"]],[4,6,["H5493"]],[6,8,["H4480","H3605"]],[8,11,["H1697"]],[11,12,["H834"]],[12,13,["H595"]],[13,14,["H6680"]],[14,17,["H3117"]],[17,21,["H3225"]],[21,25,["H8040"]],[25,27,["H1980"]],[27,28,["H310"]],[28,29,["H312"]],[29,30,["H430"]],[30,32,["H5647"]],[32,33,[]]]},{"k":5626,"v":[[0,6,["H1961"]],[6,7,["H518"]],[7,10,["H3808"]],[10,11,["H8085"]],[11,14,["H6963"]],[14,17,["H3068"]],[17,19,["H430"]],[19,21,["H8104"]],[21,23,["H6213","(H853)"]],[23,24,["H3605"]],[24,26,["H4687"]],[26,29,["H2708"]],[29,30,["H834"]],[30,31,["H595"]],[31,32,["H6680"]],[32,35,["H3117"]],[35,37,["H3605"]],[37,38,["H428"]],[38,39,["H7045"]],[39,41,["H935"]],[41,42,["H5921"]],[42,45,["H5381"]],[45,46,[]]]},{"k":5627,"v":[[0,1,["H779"]],[1,3,["H859"]],[3,7,["H5892"]],[7,9,["H779"]],[9,11,["H859"]],[11,15,["H7704"]]]},{"k":5628,"v":[[0,1,["H779"]],[1,5,["H2935"]],[5,8,["H4863"]]]},{"k":5629,"v":[[0,1,["H779"]],[1,5,["H6529"]],[5,8,["H990"]],[8,11,["H6529"]],[11,14,["H127"]],[14,16,["H7698"]],[16,19,["H504"]],[19,22,["H6251"]],[22,25,["H6629"]]]},{"k":5630,"v":[[0,1,["H779"]],[1,3,["H859"]],[3,8,["H935"]],[8,10,["H779"]],[10,12,["H859"]],[12,17,["H3318"]]]},{"k":5631,"v":[[0,2,["H3068"]],[2,4,["H7971"]],[4,6,["(H853)"]],[6,7,["H3994","(H853)"]],[7,8,["H4103"]],[8,10,["H4045"]],[10,12,["H3605"]],[12,15,["H4916"]],[15,17,["H3027"]],[17,19,["H834"]],[19,21,["H6213"]],[21,22,["H5704"]],[22,25,["H8045"]],[25,27,["H5704"]],[27,29,["H6"]],[29,30,["H4118"]],[30,31,["H4480","H6440"]],[31,34,["H7455"]],[34,37,["H4611"]],[37,38,["H834"]],[38,41,["H5800"]],[41,42,[]]]},{"k":5632,"v":[[0,2,["H3068"]],[2,4,["(H853)"]],[4,6,["H1698"]],[6,7,["H1692"]],[7,10,["H5704"]],[10,13,["H3615"]],[13,16,["H4480","H5921"]],[16,18,["H127"]],[18,19,["H834","H8033"]],[19,20,["H859"]],[20,21,["H935"]],[21,23,["H3423"]],[23,24,[]]]},{"k":5633,"v":[[0,2,["H3068"]],[2,4,["H5221"]],[4,8,["H7829"]],[8,12,["H6920"]],[12,16,["H1816"]],[16,21,["H2746"]],[21,25,["H2719"]],[25,28,["H7711"]],[28,31,["H3420"]],[31,35,["H7291"]],[35,37,["H5704"]],[37,39,["H6"]]]},{"k":5634,"v":[[0,3,["H8064"]],[3,4,["H834"]],[4,6,["H5921"]],[6,8,["H7218"]],[8,10,["H1961"]],[10,11,["H5178"]],[11,14,["H776"]],[14,15,["H834"]],[15,17,["H8478"]],[17,21,["H1270"]]]},{"k":5635,"v":[[0,2,["H3068"]],[2,4,["H5414","(H853)"]],[4,6,["H4306"]],[6,9,["H776"]],[9,10,["H80"]],[10,12,["H6083"]],[12,13,["H4480"]],[13,14,["H8064"]],[14,18,["H3381"]],[18,19,["H5921"]],[19,21,["H5704"]],[21,24,["H8045"]]]},{"k":5636,"v":[[0,2,["H3068"]],[2,4,["H5414"]],[4,8,["H5062"]],[8,9,["H6440"]],[9,11,["H341"]],[11,15,["H3318"]],[15,16,["H259"]],[16,17,["H1870"]],[17,18,["H413"]],[18,21,["H5127"]],[21,22,["H7651"]],[22,23,["H1870"]],[23,24,["H6440"]],[24,28,["H1961"]],[28,29,["H2189"]],[29,31,["H3605"]],[31,33,["H4467"]],[33,36,["H776"]]]},{"k":5637,"v":[[0,3,["H5038"]],[3,5,["H1961"]],[5,6,["H3978"]],[6,8,["H3605"]],[8,9,["H5775"]],[9,12,["H8064"]],[12,16,["H929"]],[16,19,["H776"]],[19,22,["H369"]],[22,26,["H2729"]]]},{"k":5638,"v":[[0,2,["H3068"]],[2,4,["H5221"]],[4,8,["H7822"]],[8,10,["H4714"]],[10,14,["H6076"]],[14,18,["H1618"]],[18,22,["H2775"]],[22,23,["H834"]],[23,25,["H3201"]],[25,26,["H3808"]],[26,28,["H7495"]]]},{"k":5639,"v":[[0,2,["H3068"]],[2,4,["H5221"]],[4,7,["H7697"]],[7,9,["H5788"]],[9,11,["H8541"]],[11,13,["H3824"]]]},{"k":5640,"v":[[0,3,["H1961"]],[3,4,["H4959"]],[4,6,["H6672"]],[6,7,["H834"]],[7,9,["H5787"]],[9,10,["H4959"]],[10,12,["H653"]],[12,16,["H3808"]],[16,17,["H6743","(H853)"]],[17,20,["H1870"]],[20,24,["H1961"]],[24,25,["H389"]],[25,26,["H6231"]],[26,28,["H1497"]],[28,29,["H3605","H3117"]],[29,32,["H369"]],[32,34,["H3467"]],[34,35,[]]]},{"k":5641,"v":[[0,3,["H781"]],[3,5,["H802"]],[5,7,["H312"]],[7,8,["H376"]],[8,11,["H7901"]],[11,15,["H1129"]],[15,17,["H1004"]],[17,21,["H3808"]],[21,22,["H3427"]],[22,26,["H5193"]],[26,28,["H3754"]],[28,31,["H3808"]],[31,34,["H2490"]],[34,35,[]]]},{"k":5642,"v":[[0,2,["H7794"]],[2,5,["H2873"]],[5,8,["H5869"]],[8,12,["H3808"]],[12,13,["H398"]],[13,14,["H4480"]],[14,16,["H2543"]],[16,21,["H1497"]],[21,25,["H4480","H6440"]],[25,28,["H3808"]],[28,30,["H7725"]],[30,34,["H6629"]],[34,37,["H5414"]],[37,40,["H341"]],[40,45,["H369"]],[45,47,["H3467"]],[47,48,[]]]},{"k":5643,"v":[[0,2,["H1121"]],[2,5,["H1323"]],[5,8,["H5414"]],[8,10,["H312"]],[10,11,["H5971"]],[11,14,["H5869"]],[14,16,["H7200"]],[16,18,["H3616"]],[18,21,["H413"]],[21,23,["H3605"]],[23,25,["H3117"]],[25,31,["H369"]],[31,32,["H410"]],[32,35,["H3027"]]]},{"k":5644,"v":[[0,2,["H6529"]],[2,5,["H127"]],[5,7,["H3605"]],[7,9,["H3018"]],[9,12,["H5971"]],[12,13,["H834"]],[13,15,["H3045"]],[15,16,["H3808"]],[16,18,["H398"]],[18,22,["H1961"]],[22,23,["H7535"]],[23,24,["H6231"]],[24,26,["H7533"]],[26,27,["H3605","H3117"]]]},{"k":5645,"v":[[0,5,["H1961"]],[5,6,["H7696"]],[6,9,["H4480","H4758"]],[9,12,["H5869"]],[12,13,["H834"]],[13,16,["H7200"]]]},{"k":5646,"v":[[0,2,["H3068"]],[2,4,["H5221"]],[4,6,["H5921"]],[6,8,["H1290"]],[8,10,["H5921"]],[10,12,["H7785"]],[12,15,["H7451"]],[15,16,["H7822"]],[16,17,["H834"]],[17,18,["H3201","H3808"]],[18,20,["H7495"]],[20,23,["H4480","H3709"]],[23,26,["H7272"]],[26,27,["H5704"]],[27,32,["H6936"]]]},{"k":5647,"v":[[0,2,["H3068"]],[2,4,["H1980"]],[4,8,["H4428"]],[8,9,["H834"]],[9,12,["H6965"]],[12,13,["H5921"]],[13,15,["H413"]],[15,17,["H1471"]],[17,18,["H834"]],[18,19,["H3808"]],[19,20,["H859"]],[20,23,["H1"]],[23,25,["H3045"]],[25,27,["H8033"]],[27,30,["H5647"]],[30,31,["H312"]],[31,32,["H430"]],[32,33,["H6086"]],[33,35,["H68"]]]},{"k":5648,"v":[[0,4,["H1961"]],[4,6,["H8047"]],[6,8,["H4912"]],[8,11,["H8148"]],[11,13,["H3605"]],[13,14,["H5971"]],[14,15,["H834","H8033"]],[15,17,["H3068"]],[17,19,["H5090"]],[19,20,[]]]},{"k":5649,"v":[[0,6,["H3318","H7227","H2233"]],[6,9,["H7704"]],[9,15,["H622","H4592"]],[15,16,["H3588"]],[16,18,["H697"]],[18,20,["H2628"]],[20,21,[]]]},{"k":5650,"v":[[0,3,["H5193"]],[3,4,["H3754"]],[4,6,["H5647"]],[6,10,["H3808"]],[10,11,["H8354"]],[11,14,["H3196"]],[14,15,["H3808"]],[15,16,["H103"]],[16,19,["H3588"]],[19,21,["H8438"]],[21,23,["H398"]],[23,24,[]]]},{"k":5651,"v":[[0,3,["H1961"]],[3,5,["H2132"]],[5,7,["H3605"]],[7,9,["H1366"]],[9,13,["H3808"]],[13,14,["H5480"]],[14,18,["H8081"]],[18,19,["H3588"]],[19,21,["H2132"]],[21,23,["H5394"]],[23,25,[]]]},{"k":5652,"v":[[0,3,["H3205"]],[3,4,["H1121"]],[4,6,["H1323"]],[6,10,["H3808"]],[10,11,["H1961"]],[11,13,["H3588"]],[13,16,["H1980"]],[16,18,["H7628"]]]},{"k":5653,"v":[[0,1,["H3605"]],[1,3,["H6086"]],[3,5,["H6529"]],[5,8,["H127"]],[8,11,["H6767"]],[11,12,["H3423"]]]},{"k":5654,"v":[[0,2,["H1616"]],[2,3,["H834"]],[3,5,["H7130"]],[5,9,["H5927"]],[9,10,["H5921"]],[10,13,["H4605","H4605"]],[13,15,["H859"]],[15,18,["H3381"]],[18,20,["H4295","H4295"]]]},{"k":5655,"v":[[0,1,["H1931"]],[1,3,["H3867"]],[3,7,["H859"]],[7,9,["H3808"]],[9,10,["H3867"]],[10,13,["H1931"]],[13,15,["H1961"]],[15,17,["H7218"]],[17,19,["H859"]],[19,21,["H1961"]],[21,23,["H2180"]]]},{"k":5656,"v":[[0,2,["H3605"]],[2,3,["H428"]],[3,4,["H7045"]],[4,6,["H935"]],[6,7,["H5921"]],[7,11,["H7291"]],[11,14,["H5381"]],[14,16,["H5704"]],[16,19,["H8045"]],[19,20,["H3588"]],[20,22,["H8085"]],[22,23,["H3808"]],[23,26,["H6963"]],[26,29,["H3068"]],[29,31,["H430"]],[31,33,["H8104"]],[33,35,["H4687"]],[35,38,["H2708"]],[38,39,["H834"]],[39,41,["H6680"]],[41,42,[]]]},{"k":5657,"v":[[0,4,["H1961"]],[4,9,["H226"]],[9,13,["H4159"]],[13,17,["H2233"]],[17,19,["H5704","H5769"]]]},{"k":5658,"v":[[0,1,["H8478","H834"]],[1,3,["H5647"]],[3,4,["H3808","(H853)"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H8057"]],[10,13,["H2898"]],[13,15,["H3824"]],[15,18,["H4480","H7230"]],[18,20,["H3605"]],[20,21,[]]]},{"k":5659,"v":[[0,4,["H5647","(H853)"]],[4,6,["H341"]],[6,7,["H834"]],[7,9,["H3068"]],[9,11,["H7971"]],[11,15,["H7458"]],[15,18,["H6772"]],[18,21,["H5903"]],[21,24,["H2640"]],[24,26,["H3605"]],[26,31,["H5414"]],[31,33,["H5923"]],[33,35,["H1270"]],[35,36,["H5921"]],[36,38,["H6677"]],[38,39,["H5704"]],[39,42,["H8045"]],[42,43,[]]]},{"k":5660,"v":[[0,2,["H3068"]],[2,4,["H5375"]],[4,6,["H1471"]],[6,7,["H5921"]],[7,10,["H4480","H7350"]],[10,13,["H4480","H7097"]],[13,16,["H776"]],[16,19,["H834"]],[19,21,["H5404"]],[21,22,["H1675"]],[22,24,["H1471"]],[24,25,["H834"]],[25,26,["H3956"]],[26,29,["H3808"]],[29,30,["H8085"]]]},{"k":5661,"v":[[0,2,["H1471"]],[2,4,["H5794"]],[4,5,["H6440"]],[5,6,["H834"]],[6,8,["H3808"]],[8,9,["H5375"]],[9,11,["H6440"]],[11,14,["H2205"]],[14,15,["H3808"]],[15,17,["H2603"]],[17,20,["H5288"]]]},{"k":5662,"v":[[0,4,["H398"]],[4,6,["H6529"]],[6,9,["H929"]],[9,12,["H6529"]],[12,15,["H127"]],[15,16,["H5704"]],[16,19,["H8045"]],[19,20,["H834"]],[20,23,["H3808"]],[23,24,["H7604"]],[24,27,["H1715"]],[27,28,["H8492"]],[28,30,["H3323"]],[30,33,["H7698"]],[33,36,["H504"]],[36,38,["H6251"]],[38,41,["H6629"]],[41,42,["H5704"]],[42,45,["H6"]],[45,46,[]]]},{"k":5663,"v":[[0,4,["H6887"]],[4,7,["H3605"]],[7,9,["H8179"]],[9,10,["H5704"]],[10,12,["H1364"]],[12,14,["H1219"]],[14,15,["H2346"]],[15,17,["H3381"]],[17,18,["H834"]],[18,19,["H859"]],[19,20,["H982"]],[20,22,["H3605"]],[22,24,["H776"]],[24,28,["H6887"]],[28,31,["H3605"]],[31,33,["H8179"]],[33,35,["H3605"]],[35,37,["H776"]],[37,38,["H834"]],[38,40,["H3068"]],[40,42,["H430"]],[42,44,["H5414"]],[44,45,[]]]},{"k":5664,"v":[[0,4,["H398"]],[4,6,["H6529"]],[6,10,["H990"]],[10,12,["H1320"]],[12,15,["H1121"]],[15,19,["H1323"]],[19,20,["H834"]],[20,22,["H3068"]],[22,24,["H430"]],[24,26,["H5414"]],[26,30,["H4692"]],[30,34,["H4689"]],[34,35,["H834"]],[35,37,["H341"]],[37,39,["H6693"]],[39,40,[]]]},{"k":5665,"v":[[0,4,["H376"]],[4,7,["H7390"]],[7,11,["H3966"]],[11,12,["H6028"]],[12,14,["H5869"]],[14,17,["H7489"]],[17,20,["H251"]],[20,24,["H802"]],[24,27,["H2436"]],[27,31,["H3499"]],[31,34,["H1121"]],[34,35,["H834"]],[35,38,["H3498"]]]},{"k":5666,"v":[[0,6,["H4480","H5414"]],[6,8,["H259"]],[8,9,["H4480"]],[9,13,["H4480","H1320"]],[13,16,["H1121"]],[16,17,["H834"]],[17,20,["H398"]],[20,21,["H4480","H1097"]],[21,24,["H3605"]],[24,25,["H7604"]],[25,29,["H4692"]],[29,33,["H4689"]],[33,34,["H834"]],[34,36,["H341"]],[36,38,["H6693"]],[38,41,["H3605"]],[41,43,["H8179"]]]},{"k":5667,"v":[[0,2,["H7390"]],[2,5,["H6028"]],[5,8,["H834"]],[8,10,["H3808"]],[10,11,["H5254"]],[11,13,["H3322"]],[13,15,["H3709"]],[15,18,["H7272"]],[18,19,["H5921"]],[19,21,["H776"]],[21,23,["H4480","H6026"]],[23,25,["H4480","H7391"]],[25,27,["H5869"]],[27,30,["H7489"]],[30,33,["H376"]],[33,36,["H2436"]],[36,40,["H1121"]],[40,44,["H1323"]]]},{"k":5668,"v":[[0,5,["H7988"]],[5,8,["H3318"]],[8,10,["H4480","H996"]],[10,12,["H7272"]],[12,16,["H1121"]],[16,17,["H834"]],[17,20,["H3205"]],[20,21,["H3588"]],[21,24,["H398"]],[24,27,["H2640"]],[27,29,["H3605"]],[29,31,["H5643"]],[31,34,["H4692"]],[34,36,["H4689"]],[36,37,["H834"]],[37,39,["H341"]],[39,41,["H6693"]],[41,45,["H8179"]]]},{"k":5669,"v":[[0,1,["H518"]],[1,4,["H3808"]],[4,5,["H8104"]],[5,7,["H6213","(H853)"]],[7,8,["H3605"]],[8,10,["H1697"]],[10,12,["H2063"]],[12,13,["H8451"]],[13,16,["H3789"]],[16,18,["H2088"]],[18,19,["H5612"]],[19,23,["H3372","(H853)"]],[23,24,["H2088"]],[24,25,["H3513"]],[25,27,["H3372"]],[27,28,["H8034","(H853)"]],[28,30,["H3068"]],[30,32,["H430"]]]},{"k":5670,"v":[[0,3,["H3068"]],[3,5,["(H853)"]],[5,7,["H4347"]],[7,8,["H6381"]],[8,11,["H4347"]],[11,14,["H2233"]],[14,16,["H1419"]],[16,17,["H4347"]],[17,21,["H539"]],[21,23,["H7451"]],[23,24,["H2483"]],[24,28,["H539"]]]},{"k":5671,"v":[[0,4,["H7725"]],[4,6,["(H853)"]],[6,7,["H3605"]],[7,9,["H4064"]],[9,11,["H4714"]],[11,12,["H834"]],[12,15,["H3025"]],[15,16,["H4480","H6440"]],[16,20,["H1692"]],[20,22,[]]]},{"k":5672,"v":[[0,1,["H1571"]],[1,2,["H3605"]],[2,3,["H2483"]],[3,5,["H3605"]],[5,6,["H4347"]],[6,7,["H834"]],[7,9,["H3808"]],[9,10,["H3789"]],[10,13,["H5612"]],[13,15,["H2063"]],[15,16,["H8451"]],[16,20,["H3068"]],[20,21,["H5927"]],[21,22,["H5921"]],[22,24,["H5704"]],[24,27,["H8045"]]]},{"k":5673,"v":[[0,5,["H7604"]],[5,6,["H4592"]],[6,8,["H4962"]],[8,9,["H8478","H834"]],[9,11,["H1961"]],[11,14,["H3556"]],[14,16,["H8064"]],[16,18,["H7230"]],[18,19,["H3588"]],[19,22,["H3808"]],[22,23,["H8085"]],[23,25,["H6963"]],[25,28,["H3068"]],[28,30,["H430"]]]},{"k":5674,"v":[[0,6,["H1961"]],[6,8,["H834"]],[8,10,["H3068"]],[10,11,["H7797"]],[11,12,["H5921"]],[12,17,["H3190","(H853)"]],[17,20,["H7235"]],[20,22,["H3651"]],[22,24,["H3068"]],[24,26,["H7797"]],[26,27,["H5921"]],[27,30,["H6"]],[30,37,["H8045","(H853)"]],[37,42,["H5255"]],[42,44,["H4480","H5921"]],[44,46,["H127"]],[46,47,["H834","H8033"]],[47,48,["H859"]],[48,49,["H935"]],[49,51,["H3423"]],[51,52,[]]]},{"k":5675,"v":[[0,3,["H3068"]],[3,5,["H6327"]],[5,8,["H3605"]],[8,9,["H5971"]],[9,13,["H4480","H7097"]],[13,16,["H776"]],[16,18,["H5704"]],[18,20,["H7097","(H776)"]],[20,22,["H8033"]],[22,25,["H5647"]],[25,26,["H312"]],[26,27,["H430"]],[27,28,["H834"]],[28,29,["H3808"]],[29,30,["H859"]],[30,33,["H1"]],[33,35,["H3045"]],[35,37,["H6086"]],[37,39,["H68"]]]},{"k":5676,"v":[[0,3,["H1992"]],[3,4,["H1471"]],[4,9,["H7280","H3808"]],[9,10,["H3808"]],[10,13,["H3709"]],[13,16,["H7272"]],[16,17,["H1961"]],[17,18,["H4494"]],[18,21,["H3068"]],[21,23,["H5414"]],[23,25,["H8033"]],[25,27,["H7268"]],[27,28,["H3820"]],[28,30,["H3631"]],[30,32,["H5869"]],[32,34,["H1671"]],[34,36,["H5315"]]]},{"k":5677,"v":[[0,3,["H2416"]],[3,5,["H1961"]],[5,7,["H8511"]],[7,8,["H4480","H5048"]],[8,13,["H6342"]],[13,14,["H3119"]],[14,16,["H3915"]],[16,21,["H539","H3808"]],[21,24,["H2416"]]]},{"k":5678,"v":[[0,3,["H1242"]],[3,6,["H559"]],[6,8,["H4310","H5414"]],[8,11,["H6153"]],[11,14,["H6153"]],[14,17,["H559"]],[17,19,["H4310","H5414"]],[19,22,["H1242"]],[22,25,["H4480","H6343"]],[25,28,["H3824"]],[28,29,["H834"]],[29,32,["H6342"]],[32,36,["H4480","H4758"]],[36,39,["H5869"]],[39,40,["H834"]],[40,43,["H7200"]]]},{"k":5679,"v":[[0,3,["H3068"]],[3,5,["H7725"]],[5,8,["H4714"]],[8,11,["H591"]],[11,14,["H1870"]],[14,15,["H834"]],[15,17,["H559"]],[17,22,["H7200"]],[22,24,["H3808"]],[24,25,["H3254"]],[25,26,["H5750"]],[26,28,["H8033"]],[28,32,["H4376"]],[32,35,["H341"]],[35,37,["H5650"]],[37,39,["H8198"]],[39,42,["H369"]],[42,44,["H7069"]],[44,45,[]]]},{"k":5680,"v":[[0,1,["H428"]],[1,4,["H1697"]],[4,7,["H1285"]],[7,8,["H834"]],[8,10,["H3068"]],[10,11,["H6680","(H853)"]],[11,12,["H4872"]],[12,14,["H3772"]],[14,15,["H854"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,22,["H776"]],[22,24,["H4124"]],[24,25,["H4480","H905"]],[25,27,["H1285"]],[27,28,["H834"]],[28,30,["H3772"]],[30,31,["H854"]],[31,34,["H2722"]]]},{"k":5681,"v":[[0,2,["H4872"]],[2,3,["H7121"]],[3,4,["H413"]],[4,5,["H3605"]],[5,6,["H3478"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H859"]],[11,13,["H7200","(H853)"]],[13,14,["H3605"]],[14,15,["H834"]],[15,17,["H3068"]],[17,18,["H6213"]],[18,21,["H5869"]],[21,24,["H776"]],[24,26,["H4714"]],[26,28,["H6547"]],[28,31,["H3605"]],[31,33,["H5650"]],[33,36,["H3605"]],[36,38,["H776"]]]},{"k":5682,"v":[[0,2,["H1419"]],[2,3,["H4531"]],[3,4,["H834"]],[4,6,["H5869"]],[6,8,["H7200"]],[8,10,["H226"]],[10,12,["H1992"]],[12,13,["H1419"]],[13,14,["H4159"]]]},{"k":5683,"v":[[0,3,["H3068"]],[3,5,["H3808"]],[5,6,["H5414"]],[6,9,["H3820"]],[9,11,["H3045"]],[11,13,["H5869"]],[13,15,["H7200"]],[15,17,["H241"]],[17,19,["H8085"]],[19,20,["H5704"]],[20,21,["H2088"]],[21,22,["H3117"]]]},{"k":5684,"v":[[0,4,["H1980"]],[4,6,["H705"]],[6,7,["H8141"]],[7,10,["H4057"]],[10,12,["H8008"]],[12,14,["H3808"]],[14,16,["H1086"]],[16,17,["H4480","H5921"]],[17,21,["H5275"]],[21,23,["H3808"]],[23,25,["H1086"]],[25,26,["H4480","H5921"]],[26,28,["H7272"]]]},{"k":5685,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,5,["H3899"]],[5,6,["H3808"]],[6,9,["H8354"]],[9,10,["H3196"]],[10,13,["H7941"]],[13,14,["H4616"]],[14,17,["H3045"]],[17,18,["H3588"]],[18,19,["H589"]],[19,22,["H3068"]],[22,24,["H430"]]]},{"k":5686,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,6,["H2088"]],[6,7,["H4725"]],[7,8,["H5511"]],[8,10,["H4428"]],[10,12,["H2809"]],[12,14,["H5747"]],[14,16,["H4428"]],[16,18,["H1316"]],[18,20,["H3318"]],[20,21,["H7125"]],[21,24,["H4421"]],[24,27,["H5221"]],[27,28,[]]]},{"k":5687,"v":[[0,3,["H3947","(H853)"]],[3,5,["H776"]],[5,7,["H5414"]],[7,11,["H5159"]],[11,14,["H7206"]],[14,18,["H1425"]],[18,22,["H2677"]],[22,23,["H7626"]],[23,25,["H4520"]]]},{"k":5688,"v":[[0,1,["H8104"]],[1,2,["(H853)"]],[2,4,["H1697"]],[4,6,["H2063"]],[6,7,["H1285"]],[7,9,["H6213"]],[9,11,["H4616"]],[11,14,["H7919","(H853)"]],[14,16,["H3605"]],[16,17,["H834"]],[17,19,["H6213"]]]},{"k":5689,"v":[[0,1,["H859"]],[1,2,["H5324"]],[2,4,["H3117"]],[4,5,["H3605"]],[5,8,["H6440"]],[8,10,["H3068"]],[10,12,["H430"]],[12,14,["H7218"]],[14,17,["H7626"]],[17,19,["H2205"]],[19,22,["H7860"]],[22,24,["H3605"]],[24,26,["H376"]],[26,28,["H3478"]]]},{"k":5690,"v":[[0,3,["H2945"]],[3,5,["H802"]],[5,8,["H1616"]],[8,9,["H834"]],[9,11,["H7130"]],[11,13,["H4264"]],[13,16,["H4480","H2404"]],[16,19,["H6086"]],[19,20,["H5704"]],[20,22,["H7579"]],[22,25,["H4325"]]]},{"k":5691,"v":[[0,4,["H5674"]],[4,6,["H1285"]],[6,9,["H3068"]],[9,11,["H430"]],[11,15,["H423"]],[15,16,["H834"]],[16,18,["H3068"]],[18,20,["H430"]],[20,21,["H3772"]],[21,22,["H5973"]],[22,25,["H3117"]]]},{"k":5692,"v":[[0,1,["H4616"]],[1,4,["H6965"]],[4,7,["H3117"]],[7,10,["H5971"]],[10,15,["H1931"]],[15,17,["H1961"]],[17,21,["H430"]],[21,22,["H834"]],[22,25,["H1696"]],[25,29,["H834"]],[29,32,["H7650"]],[32,35,["H1"]],[35,37,["H85"]],[37,39,["H3327"]],[39,42,["H3290"]]]},{"k":5693,"v":[[0,1,["H3808"]],[1,2,["H854"]],[2,4,["H905"]],[4,6,["H595"]],[6,7,["H3772","(H853)"]],[7,8,["H2063"]],[8,9,["H1285"]],[9,11,["H2063"]],[11,12,["H423"]]]},{"k":5694,"v":[[0,1,["H3588"]],[1,2,["H854"]],[2,4,["H834"]],[4,5,["H5975"]],[5,6,["H6311"]],[6,7,["H5973"]],[7,10,["H3117"]],[10,11,["H6440"]],[11,13,["H3068"]],[13,15,["H430"]],[15,18,["H854"]],[18,20,["H834"]],[20,22,["H369"]],[22,23,["H6311"]],[23,24,["H5973"]],[24,27,["H3117"]]]},{"k":5695,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,3,["H3045","(H853)"]],[3,4,["H834"]],[4,7,["H3427"]],[7,10,["H776"]],[10,12,["H4714"]],[12,14,["H834"]],[14,16,["H5674"]],[16,17,["H7130"]],[17,19,["H1471"]],[19,20,["H834"]],[20,23,["H5674"]]]},{"k":5696,"v":[[0,4,["H7200","(H853)"]],[4,6,["H8251"]],[6,9,["H1544"]],[9,10,["H6086"]],[10,12,["H68"]],[12,13,["H3701"]],[13,15,["H2091"]],[15,16,["H834"]],[16,18,["H5973"]],[18,19,[]]]},{"k":5697,"v":[[0,1,["H6435"]],[1,4,["H3426"]],[4,7,["H376"]],[7,8,["H176"]],[8,9,["H802"]],[9,10,["H176"]],[10,11,["H4940"]],[11,12,["H176"]],[12,13,["H7626"]],[13,14,["H834"]],[14,15,["H3824"]],[15,17,["H6437"]],[17,19,["H3117"]],[19,20,["H4480","H5973"]],[20,22,["H3068"]],[22,24,["H430"]],[24,26,["H1980"]],[26,28,["H5647","(H853)"]],[28,30,["H430"]],[30,32,["H1992"]],[32,33,["H1471"]],[33,34,["H6435"]],[34,37,["H3426"]],[37,41,["H8328"]],[41,43,["H6509"]],[43,44,["H7219"]],[44,46,["H3939"]]]},{"k":5698,"v":[[0,5,["H1961"]],[5,8,["H8085","(H853)"]],[8,10,["H1697"]],[10,12,["H2063"]],[12,13,["H423"]],[13,17,["H1288"]],[17,20,["H3824"]],[20,21,["H559"]],[21,24,["H1961"]],[24,25,["H7965"]],[25,26,["H3588"]],[26,28,["H1980"]],[28,31,["H8307"]],[31,34,["H3820"]],[34,35,["H4616"]],[35,36,["H5595"]],[36,37,["H7302"]],[37,38,["H854"]],[38,39,["H6771"]]]},{"k":5699,"v":[[0,2,["H3068"]],[2,3,["H14"]],[3,4,["H3808"]],[4,5,["H5545"]],[5,7,["H3588"]],[7,8,["H227"]],[8,10,["H639"]],[10,13,["H3068"]],[13,16,["H7068"]],[16,18,["H6225"]],[18,20,["H1931"]],[20,21,["H376"]],[21,23,["H3605"]],[23,25,["H423"]],[25,28,["H3789"]],[28,30,["H2088"]],[30,31,["H5612"]],[31,33,["H7257"]],[33,38,["H3068"]],[38,41,["H4229","(H853)"]],[41,43,["H8034"]],[43,45,["H4480","H8478"]],[45,46,["H8064"]]]},{"k":5700,"v":[[0,3,["H3068"]],[3,5,["H914"]],[5,8,["H7451"]],[8,11,["H4480","H3605"]],[11,13,["H7626"]],[13,15,["H3478"]],[15,18,["H3605"]],[18,20,["H423"]],[20,23,["H1285"]],[23,26,["H3789"]],[26,28,["H2088"]],[28,29,["H5612"]],[29,32,["H8451"]]]},{"k":5701,"v":[[0,4,["H1755"]],[4,6,["H314"]],[6,9,["H1121"]],[9,10,["H834"]],[10,13,["H6965"]],[13,14,["H4480","H310"]],[14,18,["H5237"]],[18,19,["H834"]],[19,21,["H935"]],[21,24,["H7350"]],[24,25,["H4480","H776"]],[25,27,["H559"]],[27,30,["H7200","(H853)"]],[30,32,["H4347"]],[32,34,["H1931"]],[34,35,["H776"]],[35,38,["H8463"]],[38,39,["H834"]],[39,41,["H3068"]],[41,43,["H2470"]],[43,45,[]]]},{"k":5702,"v":[[0,4,["H3605"]],[4,5,["H776"]],[5,8,["H1614"]],[8,10,["H4417"]],[10,12,["H8316"]],[12,16,["H3808"]],[16,17,["H2232"]],[17,18,["H3808"]],[18,19,["H6779"]],[19,20,["H3808"]],[20,21,["H3605"]],[21,22,["H6212"]],[22,23,["H5927"]],[23,27,["H4114"]],[27,29,["H5467"]],[29,31,["H6017"]],[31,32,["H126"]],[32,34,["H6636"]],[34,35,["H834"]],[35,37,["H3068"]],[37,38,["H2015"]],[38,41,["H639"]],[41,45,["H2534"]]]},{"k":5703,"v":[[0,2,["H3605"]],[2,3,["H1471"]],[3,5,["H559"]],[5,6,["H5921","H4100"]],[6,9,["H3068"]],[9,10,["H6213"]],[10,11,["H3602"]],[11,13,["H2063"]],[13,14,["H776"]],[14,15,["H4100"]],[15,18,["H2750"]],[18,20,["H2088"]],[20,21,["H1419"]],[21,22,["H639"]]]},{"k":5704,"v":[[0,4,["H559"]],[4,5,["H5921","H834"]],[5,8,["H5800","(H853)"]],[8,10,["H1285"]],[10,13,["H3068"]],[13,14,["H430"]],[14,17,["H1"]],[17,18,["H834"]],[18,20,["H3772"]],[20,21,["H5973"]],[21,27,["H3318","(H853)"]],[27,31,["H4480","H776"]],[31,33,["H4714"]]]},{"k":5705,"v":[[0,3,["H1980"]],[3,5,["H5647"]],[5,6,["H312"]],[6,7,["H430"]],[7,9,["H7812"]],[9,11,["H430"]],[11,12,["H834"]],[12,14,["H3045"]],[14,15,["H3808"]],[15,20,["H3808"]],[20,21,["H2505"]],[21,23,[]]]},{"k":5706,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,10,["H1931"]],[10,11,["H776"]],[11,13,["H935"]],[13,14,["H5921"]],[14,15,["(H853)"]],[15,16,["H3605"]],[16,18,["H7045"]],[18,21,["H3789"]],[21,23,["H2088"]],[23,24,["H5612"]]]},{"k":5707,"v":[[0,3,["H3068"]],[3,6,["H5428"]],[6,7,["H4480","H5921"]],[7,9,["H127"]],[9,11,["H639"]],[11,14,["H2534"]],[14,17,["H1419"]],[17,18,["H7110"]],[18,20,["H7993"]],[20,22,["H413"]],[22,23,["H312"]],[23,24,["H776"]],[24,28,["H2088"]],[28,29,["H3117"]]]},{"k":5708,"v":[[0,2,["H5641"]],[2,7,["H3068"]],[7,9,["H430"]],[9,15,["H1540"]],[15,22,["H1121"]],[22,24,["H5704","H5769"]],[24,28,["H6213","(H853)"]],[28,29,["H3605"]],[29,31,["H1697"]],[31,33,["H2063"]],[33,34,["H8451"]]]},{"k":5709,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,8,["H3605"]],[8,9,["H428"]],[9,10,["H1697"]],[10,12,["H935"]],[12,13,["H5921"]],[13,16,["H1293"]],[16,19,["H7045"]],[19,20,["H834"]],[20,23,["H5414"]],[23,24,["H6440"]],[24,29,["H7725"]],[29,31,["H413"]],[31,32,["H3824"]],[32,34,["H3605"]],[34,36,["H1471"]],[36,37,["H834","H8033"]],[37,39,["H3068"]],[39,41,["H430"]],[41,43,["H5080"]],[43,44,[]]]},{"k":5710,"v":[[0,3,["H7725"]],[3,4,["H5704"]],[4,6,["H3068"]],[6,8,["H430"]],[8,11,["H8085"]],[11,13,["H6963"]],[13,16,["H3605"]],[16,17,["H834"]],[17,18,["H595"]],[18,19,["H6680"]],[19,22,["H3117"]],[22,23,["H859"]],[23,26,["H1121"]],[26,28,["H3605"]],[28,30,["H3824"]],[30,33,["H3605"]],[33,35,["H5315"]]]},{"k":5711,"v":[[0,4,["H3068"]],[4,6,["H430"]],[6,8,["H7725","(H853)"]],[8,10,["H7622"]],[10,13,["H7355"]],[13,18,["H7725"]],[18,20,["H6908"]],[20,23,["H4480","H3605"]],[23,25,["H5971"]],[25,26,["H834","H8033"]],[26,28,["H3068"]],[28,30,["H430"]],[30,32,["H6327"]],[32,33,[]]]},{"k":5712,"v":[[0,1,["H518"]],[1,5,["H1961"]],[5,7,["H5080"]],[7,10,["H7097"]],[10,13,["H8064"]],[13,15,["H4480","H8033"]],[15,18,["H3068"]],[18,20,["H430"]],[20,21,["H6908"]],[21,25,["H4480","H8033"]],[25,28,["H3947"]],[28,29,[]]]},{"k":5713,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,7,["H935"]],[7,9,["H413"]],[9,11,["H776"]],[11,12,["H834"]],[12,14,["H1"]],[14,15,["H3423"]],[15,19,["H3423"]],[19,26,["H3190"]],[26,28,["H7235"]],[28,32,["H4480","H1"]]]},{"k":5714,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,7,["H4135","(H853)"]],[7,9,["H3824"]],[9,12,["H3824"]],[12,15,["H2233"]],[15,17,["H157","(H853)"]],[17,19,["H3068"]],[19,21,["H430"]],[21,23,["H3605"]],[23,25,["H3824"]],[25,28,["H3605"]],[28,30,["H5315"]],[30,31,["H4616"]],[31,34,["H2416"]]]},{"k":5715,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,7,["H5414","(H853)"]],[7,8,["H3605"]],[8,9,["H428"]],[9,10,["H423"]],[10,11,["H5921"]],[11,13,["H341"]],[13,15,["H5921"]],[15,18,["H8130"]],[18,20,["H834"]],[20,21,["H7291"]],[21,22,[]]]},{"k":5716,"v":[[0,2,["H859"]],[2,4,["H7725"]],[4,6,["H8085"]],[6,8,["H6963"]],[8,11,["H3068"]],[11,13,["H6213","(H853)"]],[13,14,["H3605"]],[14,16,["H4687"]],[16,17,["H834"]],[17,18,["H595"]],[18,19,["H6680"]],[19,22,["H3117"]]]},{"k":5717,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,9,["H3498"]],[9,11,["H3605"]],[11,12,["H4639"]],[12,15,["H3027"]],[15,18,["H6529"]],[18,21,["H990"]],[21,25,["H6529"]],[25,28,["H929"]],[28,32,["H6529"]],[32,35,["H127"]],[35,37,["H2896"]],[37,38,["H3588"]],[38,40,["H3068"]],[40,42,["H7725"]],[42,43,["H7797"]],[43,44,["H5921"]],[44,47,["H2896"]],[47,48,["H834"]],[48,50,["H7797"]],[50,51,["H5921"]],[51,53,["H1"]]]},{"k":5718,"v":[[0,1,["H3588"]],[1,4,["H8085"]],[4,7,["H6963"]],[7,10,["H3068"]],[10,12,["H430"]],[12,14,["H8104"]],[14,16,["H4687"]],[16,19,["H2708"]],[19,22,["H3789"]],[22,24,["H2088"]],[24,25,["H5612"]],[25,28,["H8451"]],[28,30,["H3588"]],[30,32,["H7725"]],[32,33,["H413"]],[33,35,["H3068"]],[35,37,["H430"]],[37,39,["H3605"]],[39,41,["H3824"]],[41,44,["H3605"]],[44,46,["H5315"]]]},{"k":5719,"v":[[0,1,["H3588"]],[1,2,["H2063"]],[2,3,["H4687"]],[3,4,["H834"]],[4,5,["H595"]],[5,6,["H6680"]],[6,9,["H3117"]],[9,10,["H1931"]],[10,12,["H3808"]],[12,13,["H6381"]],[13,14,["H4480"]],[14,16,["H3808"]],[16,18,["H1931"]],[18,20,["H7350"]]]},{"k":5720,"v":[[0,1,["H1931"]],[1,3,["H3808"]],[3,5,["H8064"]],[5,9,["H559"]],[9,10,["H4310"]],[10,13,["H5927"]],[13,17,["H8064"]],[17,19,["H3947"]],[19,26,["H8085"]],[26,29,["H6213"]],[29,30,[]]]},{"k":5721,"v":[[0,1,["H3808"]],[1,3,["H1931"]],[3,4,["H4480","H5676"]],[4,6,["H3220"]],[6,10,["H559"]],[10,11,["H4310"]],[11,13,["H5674"]],[13,14,["H413","H5676"]],[14,16,["H3220"]],[16,20,["H3947"]],[20,27,["H8085"]],[27,30,["H6213"]],[30,31,[]]]},{"k":5722,"v":[[0,1,["H3588"]],[1,3,["H1697"]],[3,5,["H3966"]],[5,6,["H7138"]],[6,7,["H413"]],[7,11,["H6310"]],[11,15,["H3824"]],[15,19,["H6213"]],[19,20,[]]]},{"k":5723,"v":[[0,1,["H7200"]],[1,4,["H5414"]],[4,5,["H6440"]],[5,8,["H3117","(H853)"]],[8,9,["H2416"]],[9,11,["H2896"]],[11,13,["H4194"]],[13,15,["H7451"]]]},{"k":5724,"v":[[0,2,["H834"]],[2,3,["H595"]],[3,4,["H6680"]],[4,7,["H3117"]],[7,9,["H157","(H853)"]],[9,11,["H3068"]],[11,13,["H430"]],[13,15,["H1980"]],[15,18,["H1870"]],[18,21,["H8104"]],[21,23,["H4687"]],[23,26,["H2708"]],[26,29,["H4941"]],[29,33,["H2421"]],[33,35,["H7235"]],[35,38,["H3068"]],[38,40,["H430"]],[40,42,["H1288"]],[42,46,["H776"]],[46,47,["H834","H8033"]],[47,48,["H859"]],[48,49,["H935"]],[49,51,["H3423"]],[51,52,[]]]},{"k":5725,"v":[[0,2,["H518"]],[2,4,["H3824"]],[4,6,["H6437"]],[6,11,["H3808"]],[11,12,["H8085"]],[12,17,["H5080"]],[17,19,["H7812"]],[19,20,["H312"]],[20,21,["H430"]],[21,23,["H5647"]],[23,24,[]]]},{"k":5726,"v":[[0,2,["H5046"]],[2,6,["H3117"]],[6,7,["H3588"]],[7,11,["H6","H6"]],[11,16,["H3808"]],[16,17,["H748"]],[17,19,["H3117"]],[19,20,["H5921"]],[20,22,["H127"]],[22,23,["H834","H8033"]],[23,24,["H859"]],[24,26,["H5674","(H853)"]],[26,27,["H3383"]],[27,29,["H935"]],[29,31,["H3423"]],[31,32,[]]]},{"k":5727,"v":[[0,2,["H5749","(H853)"]],[2,3,["H8064"]],[3,5,["H776"]],[5,9,["H3117"]],[9,15,["H5414"]],[15,16,["H6440"]],[16,18,["H2416"]],[18,20,["H4194"]],[20,21,["H1293"]],[21,23,["H7045"]],[23,25,["H977"]],[25,26,["H2416"]],[26,27,["H4616"]],[27,29,["H859"]],[29,32,["H2233"]],[32,34,["H2421"]]]},{"k":5728,"v":[[0,4,["H157","(H853)"]],[4,6,["H3068"]],[6,8,["H430"]],[8,13,["H8085"]],[13,15,["H6963"]],[15,20,["H1692"]],[20,23,["H3588"]],[23,24,["H1931"]],[24,27,["H2416"]],[27,30,["H753"]],[30,33,["H3117"]],[33,37,["H3427"]],[37,38,["H5921"]],[38,40,["H127"]],[40,41,["H834"]],[41,43,["H3068"]],[43,44,["H7650"]],[44,47,["H1"]],[47,49,["H85"]],[49,51,["H3327"]],[51,54,["H3290"]],[54,56,["H5414"]],[56,57,[]]]},{"k":5729,"v":[[0,2,["H4872"]],[2,3,["H1980"]],[3,5,["H1696","(H853)"]],[5,6,["H428"]],[6,7,["H1697"]],[7,8,["H413"]],[8,9,["H3605"]],[9,10,["H3478"]]]},{"k":5730,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H595"]],[6,9,["H3967"]],[9,11,["H6242"]],[11,12,["H8141"]],[12,13,["H1121"]],[13,15,["H3117"]],[15,17,["H3201"]],[17,18,["H3808"]],[18,19,["H5750"]],[19,21,["H3318"]],[21,24,["H935"]],[24,27,["H3068"]],[27,29,["H559"]],[29,30,["H413"]],[30,34,["H3808"]],[34,36,["H5674","(H853)"]],[36,37,["H2088"]],[37,38,["H3383"]]]},{"k":5731,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,5,["H1931"]],[5,8,["H5674"]],[8,9,["H6440"]],[9,12,["H1931"]],[12,14,["H8045","(H853)"]],[14,15,["H428"]],[15,16,["H1471"]],[16,18,["H4480","H6440"]],[18,23,["H3423"]],[23,26,["H3091"]],[26,27,["H1931"]],[27,30,["H5674"]],[30,31,["H6440"]],[31,33,["H834"]],[33,35,["H3068"]],[35,37,["H1696"]]]},{"k":5732,"v":[[0,3,["H3068"]],[3,5,["H6213"]],[5,8,["H834"]],[8,10,["H6213"]],[10,12,["H5511"]],[12,15,["H5747"]],[15,16,["H4428"]],[16,19,["H567"]],[19,23,["H776"]],[23,26,["H834","(H853)"]],[26,28,["H8045"]]]},{"k":5733,"v":[[0,3,["H3068"]],[3,7,["H5414"]],[7,10,["H6440"]],[10,14,["H6213"]],[14,19,["H3605"]],[19,21,["H4687"]],[21,22,["H834"]],[22,25,["H6680"]],[25,26,[]]]},{"k":5734,"v":[[0,2,["H2388"]],[2,7,["H553"]],[7,8,["H3372"]],[8,9,["H408"]],[9,10,["H408"]],[10,12,["H6206"]],[12,13,["H4480","H6440"]],[13,15,["H3588"]],[15,17,["H3068"]],[17,19,["H430"]],[19,20,["H1931"]],[20,25,["H1980"]],[25,26,["H5973"]],[26,30,["H3808"]],[30,31,["H7503"]],[31,33,["H3808"]],[33,34,["H5800"]],[34,35,[]]]},{"k":5735,"v":[[0,2,["H4872"]],[2,3,["H7121"]],[3,5,["H3091"]],[5,7,["H559"]],[7,8,["H413"]],[8,12,["H5869"]],[12,14,["H3605"]],[14,15,["H3478"]],[15,17,["H2388"]],[17,22,["H553"]],[22,23,["H3588"]],[23,24,["H859"]],[24,26,["H935"]],[26,27,["H854"]],[27,28,["H2088"]],[28,29,["H5971"]],[29,30,["H413"]],[30,32,["H776"]],[32,33,["H834"]],[33,35,["H3068"]],[35,37,["H7650"]],[37,40,["H1"]],[40,42,["H5414"]],[42,45,["H859"]],[45,50,["H5157"]],[50,51,[]]]},{"k":5736,"v":[[0,3,["H3068"]],[3,4,["H1931"]],[4,9,["H1980"]],[9,10,["H6440"]],[10,12,["H1931"]],[12,14,["H1961"]],[14,16,["H5973"]],[16,19,["H3808"]],[19,20,["H7503"]],[20,22,["H3808"]],[22,23,["H5800"]],[23,25,["H3372"]],[25,26,["H3808"]],[26,27,["H3808"]],[27,29,["H2865"]]]},{"k":5737,"v":[[0,2,["H4872"]],[2,3,["H3789","(H853)"]],[3,4,["H2063"]],[4,5,["H8451"]],[5,7,["H5414"]],[7,9,["H413"]],[9,11,["H3548"]],[11,13,["H1121"]],[13,15,["H3878"]],[15,17,["H5375","(H853)"]],[17,19,["H727"]],[19,22,["H1285"]],[22,25,["H3068"]],[25,27,["H413"]],[27,28,["H3605"]],[28,30,["H2205"]],[30,32,["H3478"]]]},{"k":5738,"v":[[0,2,["H4872"]],[2,3,["H6680"]],[3,5,["H559"]],[5,8,["H4480","H7093"]],[8,11,["H7651"]],[11,12,["H8141"]],[12,15,["H4150"]],[15,18,["H8141"]],[18,20,["H8059"]],[20,23,["H2282"]],[23,25,["H5521"]]]},{"k":5739,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,5,["H935"]],[5,7,["H7200","(H853)"]],[7,8,["H6440"]],[8,10,["H3068"]],[10,12,["H430"]],[12,15,["H4725"]],[15,16,["H834"]],[16,19,["H977"]],[19,22,["H7121","(H853)"]],[22,23,["H2063"]],[23,24,["H8451"]],[24,25,["H5048"]],[25,26,["H3605"]],[26,27,["H3478"]],[27,30,["H241"]]]},{"k":5740,"v":[[0,4,["H6950","(H853)","H5971"]],[4,5,["H376"]],[5,7,["H802"]],[7,9,["H2945"]],[9,12,["H1616"]],[12,13,["H834"]],[13,17,["H8179"]],[17,18,["H4616"]],[18,21,["H8085"]],[21,23,["H4616"]],[23,26,["H3925"]],[26,28,["H3372","(H853)"]],[28,30,["H3068"]],[30,32,["H430"]],[32,34,["H8104"]],[34,36,["H6213","(H853)"]],[36,37,["H3605"]],[37,39,["H1697"]],[39,41,["H2063"]],[41,42,["H8451"]]]},{"k":5741,"v":[[0,4,["H1121"]],[4,5,["H834"]],[5,7,["H3808"]],[7,8,["H3045"]],[8,12,["H8085"]],[12,14,["H3925"]],[14,16,["H3372","(H853)"]],[16,18,["H3068"]],[18,20,["H430"]],[20,23,["H3605","H3117","H834"]],[23,24,["H859"]],[24,25,["H2416"]],[25,26,["H5921"]],[26,28,["H127"]],[28,29,["H834","H8033"]],[29,30,["H859"]],[30,32,["H5674","(H853)"]],[32,33,["H3383"]],[33,35,["H3423"]],[35,36,[]]]},{"k":5742,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H2005"]],[7,9,["H3117"]],[9,10,["H7126"]],[10,14,["H4191"]],[14,15,["H7121","(H853)"]],[15,16,["H3091"]],[16,19,["H3320"]],[19,22,["H168"]],[22,25,["H4150"]],[25,32,["H6680"]],[32,34,["H4872"]],[34,36,["H3091"]],[36,37,["H1980"]],[37,40,["H3320"]],[40,43,["H168"]],[43,46,["H4150"]]]},{"k":5743,"v":[[0,3,["H3068"]],[3,4,["H7200"]],[4,7,["H168"]],[7,10,["H5982"]],[10,13,["H6051"]],[13,16,["H5982"]],[16,19,["H6051"]],[19,20,["H5975"]],[20,21,["H5921"]],[21,23,["H6607"]],[23,26,["H168"]]]},{"k":5744,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H2009"]],[7,10,["H7901"]],[10,11,["H5973"]],[11,13,["H1"]],[13,15,["H2088"]],[15,16,["H5971"]],[16,19,["H6965"]],[19,23,["H2181"]],[23,24,["H310"]],[24,26,["H430"]],[26,29,["H5236"]],[29,32,["H776"]],[32,33,["H834","H8033"]],[33,34,["H1931"]],[34,35,["H935"]],[35,38,["H7130"]],[38,42,["H5800"]],[42,45,["H6565","(H853)"]],[45,47,["H1285"]],[47,48,["H834"]],[48,51,["H3772"]],[51,52,["H854"]],[52,53,[]]]},{"k":5745,"v":[[0,3,["H639"]],[3,6,["H2734"]],[6,10,["H1931"]],[10,11,["H3117"]],[11,15,["H5800"]],[15,20,["H5641"]],[20,22,["H6440"]],[22,23,["H4480"]],[23,28,["H1961"]],[28,29,["H398"]],[29,31,["H7227"]],[31,32,["H7451"]],[32,34,["H6869"]],[34,36,["H4672"]],[36,42,["H559"]],[42,44,["H1931"]],[44,45,["H3117"]],[45,47,["H3808"]],[47,48,["H428"]],[48,49,["H7451"]],[49,51,["H4672"]],[51,53,["H5921","H3588"]],[53,55,["H430"]],[55,57,["H369"]],[57,58,["H7130"]],[58,59,[]]]},{"k":5746,"v":[[0,2,["H595"]],[2,5,["H5641","H5641"]],[5,7,["H6440"]],[7,9,["H1931"]],[9,10,["H3117"]],[10,11,["H5921"]],[11,12,["H3605"]],[12,14,["H7451"]],[14,15,["H834"]],[15,19,["H6213"]],[19,21,["H3588"]],[21,24,["H6437"]],[24,25,["H413"]],[25,26,["H312"]],[26,27,["H430"]]]},{"k":5747,"v":[[0,1,["H6258"]],[1,3,["H3789","(H853)"]],[3,5,["H2063"]],[5,6,["H7892"]],[6,10,["H3925"]],[10,11,["(H853)"]],[11,13,["H1121"]],[13,15,["H3478"]],[15,16,["H7760"]],[16,20,["H6310"]],[20,21,["H4616"]],[21,22,["H2063"]],[22,23,["H7892"]],[23,25,["H1961"]],[25,27,["H5707"]],[27,32,["H1121"]],[32,34,["H3478"]]]},{"k":5748,"v":[[0,1,["H3588"]],[1,6,["H935"]],[6,8,["H413"]],[8,10,["H127"]],[10,11,["H834"]],[11,13,["H7650"]],[13,16,["H1"]],[16,18,["H2100"]],[18,20,["H2461"]],[20,22,["H1706"]],[22,27,["H398"]],[27,30,["H7646"]],[30,33,["H1878"]],[33,37,["H6437"]],[37,38,["H413"]],[38,39,["H312"]],[39,40,["H430"]],[40,42,["H5647"]],[42,45,["H5006"]],[45,48,["H6565","(H853)"]],[48,50,["H1285"]]]},{"k":5749,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,8,["H7227"]],[8,9,["H7451"]],[9,11,["H6869"]],[11,13,["H4672"]],[13,16,["H2063"]],[16,17,["H7892"]],[17,19,["H6030"]],[19,20,["H6440"]],[20,24,["H5707"]],[24,25,["H3588"]],[25,28,["H3808"]],[28,30,["H7911"]],[30,34,["H4480","H6310"]],[34,37,["H2233"]],[37,38,["H3588"]],[38,40,["H3045","(H853)"]],[40,42,["H3336"]],[42,43,["H834"]],[43,44,["H1931"]],[44,46,["H6213"]],[46,48,["H3117"]],[48,49,["H2962"]],[49,52,["H935"]],[52,54,["H413"]],[54,56,["H776"]],[56,57,["H834"]],[57,59,["H7650"]]]},{"k":5750,"v":[[0,1,["H4872"]],[1,3,["H3789","(H853)"]],[3,4,["H2063"]],[4,5,["H7892"]],[5,7,["H1931"]],[7,8,["H3117"]],[8,10,["H3925"]],[10,11,["(H853)"]],[11,13,["H1121"]],[13,15,["H3478"]]]},{"k":5751,"v":[[0,3,["H6680","(H853)"]],[3,4,["H3091"]],[4,6,["H1121"]],[6,8,["H5126"]],[8,12,["H559"]],[12,14,["H2388"]],[14,19,["H553"]],[19,20,["H3588"]],[20,21,["H859"]],[21,23,["H935","(H853)"]],[23,25,["H1121"]],[25,27,["H3478"]],[27,28,["H413"]],[28,30,["H776"]],[30,31,["H834"]],[31,33,["H7650"]],[33,37,["H595"]],[37,39,["H1961"]],[39,40,["H5973"]],[40,41,[]]]},{"k":5752,"v":[[0,5,["H1961"]],[5,7,["H4872"]],[7,11,["H3615"]],[11,13,["H3789","(H853)"]],[13,15,["H1697"]],[15,17,["H2063"]],[17,18,["H8451"]],[18,19,["H5921"]],[19,21,["H5612"]],[21,22,["H5704"]],[22,25,["H8552"]]]},{"k":5753,"v":[[0,2,["H4872"]],[2,3,["H6680","(H853)"]],[3,5,["H3881"]],[5,7,["H5375"]],[7,9,["H727"]],[9,12,["H1285"]],[12,15,["H3068"]],[15,16,["H559"]]]},{"k":5754,"v":[[0,1,["H3947","(H853)"]],[1,2,["H2088"]],[2,3,["H5612"]],[3,6,["H8451"]],[6,8,["H7760"]],[8,12,["H4480","H6654"]],[12,15,["H727"]],[15,18,["H1285"]],[18,21,["H3068"]],[21,23,["H430"]],[23,27,["H1961"]],[27,28,["H8033"]],[28,31,["H5707"]],[31,33,[]]]},{"k":5755,"v":[[0,1,["H3588"]],[1,2,["H595"]],[2,3,["H3045","(H853)"]],[3,5,["H4805"]],[5,8,["H7186"]],[8,9,["H6203"]],[9,10,["H2005"]],[10,14,["H5750"]],[14,15,["H2416"]],[15,16,["H5973"]],[16,19,["H3117"]],[19,22,["H1961"]],[22,23,["H4784"]],[23,24,["H5973"]],[24,26,["H3068"]],[26,28,["H3588"]],[28,30,["H637"]],[30,31,["H310"]],[31,33,["H4194"]]]},{"k":5756,"v":[[0,1,["H6950"]],[1,2,["H413"]],[2,3,["(H853)"]],[3,4,["H3605"]],[4,6,["H2205"]],[6,9,["H7626"]],[9,12,["H7860"]],[12,16,["H1696","(H853)"]],[16,17,["H428"]],[17,18,["H1697"]],[18,21,["H241"]],[21,23,["H5749","(H853)"]],[23,24,["H8064"]],[24,26,["H776"]],[26,30,[]]]},{"k":5757,"v":[[0,1,["H3588"]],[1,3,["H3045"]],[3,5,["H310"]],[5,7,["H4194"]],[7,11,["H7843","H7843"]],[11,15,["H5493"]],[15,16,["H4480"]],[16,18,["H1870"]],[18,19,["H834"]],[19,22,["H6680"]],[22,25,["H7451"]],[25,27,["H7122"]],[27,31,["H319"]],[31,32,["H3117"]],[32,33,["H3588"]],[33,36,["H6213","(H853)"]],[36,37,["H7451"]],[37,40,["H5869"]],[40,43,["H3068"]],[43,48,["H3707"]],[48,51,["H4639"]],[51,54,["H3027"]]]},{"k":5758,"v":[[0,2,["H4872"]],[2,3,["H1696"]],[3,6,["H241"]],[6,8,["H3605"]],[8,10,["H6951"]],[10,12,["H3478","(H853)"]],[12,14,["H1697"]],[14,16,["H2063"]],[16,17,["H7892"]],[17,18,["H5704"]],[18,21,["H8552"]]]},{"k":5759,"v":[[0,2,["H238"]],[2,5,["H8064"]],[5,9,["H1696"]],[9,11,["H8085"]],[11,13,["H776"]],[13,15,["H561"]],[15,18,["H6310"]]]},{"k":5760,"v":[[0,2,["H3948"]],[2,4,["H6201"]],[4,7,["H4306"]],[7,9,["H565"]],[9,11,["H5140"]],[11,14,["H2919"]],[14,18,["H8164"]],[18,19,["H5921"]],[19,22,["H1877"]],[22,26,["H7241"]],[26,27,["H5921"]],[27,29,["H6212"]]]},{"k":5761,"v":[[0,1,["H3588"]],[1,4,["H7121"]],[4,6,["H8034"]],[6,9,["H3068"]],[9,10,["H3051"]],[10,12,["H1433"]],[12,15,["H430"]]]},{"k":5762,"v":[[0,4,["H6697"]],[4,6,["H6467"]],[6,8,["H8549"]],[8,9,["H3588"]],[9,10,["H3605"]],[10,12,["H1870"]],[12,14,["H4941"]],[14,16,["H410"]],[16,18,["H530"]],[18,20,["H369"]],[20,21,["H5766"]],[21,22,["H6662"]],[22,24,["H3477"]],[24,26,["H1931"]]]},{"k":5763,"v":[[0,3,["H7843"]],[3,6,["H3971"]],[6,8,["H3808"]],[8,13,["H1121"]],[13,17,["H6141"]],[17,19,["H6618"]],[19,20,["H1755"]]]},{"k":5764,"v":[[0,3,["H2063"]],[3,4,["H1580"]],[4,6,["H3068"]],[6,8,["H5036"]],[8,9,["H5971"]],[9,11,["H3808","H2450"]],[11,13,["H3808"]],[13,14,["H1931"]],[14,16,["H1"]],[16,19,["H7069"]],[19,22,["H1931"]],[22,24,["H6213"]],[24,27,["H3559"]],[27,28,[]]]},{"k":5765,"v":[[0,1,["H2142"]],[1,3,["H3117"]],[3,5,["H5769"]],[5,6,["H995"]],[6,8,["H8141"]],[8,11,["H1755","H1755"]],[11,12,["H7592"]],[12,14,["H1"]],[14,18,["H5046"]],[18,21,["H2205"]],[21,25,["H559"]],[25,26,[]]]},{"k":5766,"v":[[0,4,["H5945"]],[4,5,["H5157"]],[5,8,["H1471"]],[8,13,["H6504"]],[13,15,["H1121"]],[15,17,["H120"]],[17,19,["H5324"]],[19,21,["H1367"]],[21,24,["H5971"]],[24,28,["H4557"]],[28,31,["H1121"]],[31,33,["H3478"]]]},{"k":5767,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,4,["H2506"]],[4,7,["H5971"]],[7,8,["H3290"]],[8,11,["H2256"]],[11,14,["H5159"]]]},{"k":5768,"v":[[0,2,["H4672"]],[2,6,["H4057"]],[6,7,["H776"]],[7,11,["H8414"]],[11,12,["H3214"]],[12,13,["H3452"]],[13,17,["H5437"]],[17,19,["H995"]],[19,22,["H5341"]],[22,26,["H380"]],[26,29,["H5869"]]]},{"k":5769,"v":[[0,3,["H5404"]],[3,5,["H5782"]],[5,7,["H7064"]],[7,8,["H7363"]],[8,9,["H5921"]],[9,11,["H1469"]],[11,13,["H6566"]],[13,15,["H3671"]],[15,16,["H3947"]],[16,18,["H5375"]],[18,20,["H5921"]],[20,22,["H84"]]]},{"k":5770,"v":[[0,3,["H3068"]],[3,4,["H910"]],[4,6,["H5148"]],[6,11,["H369"]],[11,12,["H5236"]],[12,13,["H410"]],[13,14,["H5973"]],[14,15,[]]]},{"k":5771,"v":[[0,4,["H7392"]],[4,5,["H5921"]],[5,8,["H1116"]],[8,11,["H776"]],[11,15,["H398"]],[15,17,["H8570"]],[17,20,["H7704"]],[20,26,["H3243"]],[26,27,["H1706"]],[27,31,["H4480","H5553"]],[31,33,["H8081"]],[33,37,["H4480","H2496"]],[37,38,["H6697"]]]},{"k":5772,"v":[[0,1,["H2529"]],[1,3,["H1241"]],[3,5,["H2461"]],[5,7,["H6629"]],[7,8,["H5973"]],[8,9,["H2459"]],[9,11,["H3733"]],[11,13,["H352"]],[13,16,["H1121"]],[16,18,["H1316"]],[18,20,["H6260"]],[20,21,["H5973"]],[21,23,["H2459"]],[23,25,["H3629"]],[25,27,["H2406"]],[27,31,["H8354"]],[31,33,["H2561"]],[33,34,["H1818"]],[34,37,["H6025"]]]},{"k":5773,"v":[[0,2,["H3484"]],[2,4,["H8080"]],[4,6,["H1163"]],[6,10,["H8080"]],[10,14,["H5666"]],[14,17,["H3780"]],[17,22,["H5203"]],[22,23,["H433"]],[23,25,["H6213"]],[25,29,["H5034"]],[29,31,["H6697"]],[31,34,["H3444"]]]},{"k":5774,"v":[[0,5,["H7065"]],[5,7,["H2114"]],[7,10,["H8441"]],[10,15,["H3707"]]]},{"k":5775,"v":[[0,2,["H2076"]],[2,4,["H7700"]],[4,5,["H3808"]],[5,7,["H433"]],[7,9,["H430"]],[9,12,["H3045"]],[12,13,["H3808"]],[13,15,["H2319"]],[15,18,["H935"]],[18,20,["H4480","H7138"]],[20,23,["H1"]],[23,24,["H8175"]],[24,25,["H3808"]]]},{"k":5776,"v":[[0,3,["H6697"]],[3,5,["H3205"]],[5,9,["H7876"]],[9,12,["H7911"]],[12,13,["H410"]],[13,15,["H2342"]],[15,16,[]]]},{"k":5777,"v":[[0,4,["H3068"]],[4,5,["H7200"]],[5,8,["H5006"]],[8,13,["H4480","H3708"]],[13,16,["H1121"]],[16,20,["H1323"]]]},{"k":5778,"v":[[0,3,["H559"]],[3,6,["H5641"]],[6,8,["H6440"]],[8,9,["H4480"]],[9,13,["H7200"]],[13,14,["H4100"]],[14,16,["H319"]],[16,19,["H3588"]],[19,20,["H1992"]],[20,24,["H8419"]],[24,25,["H1755"]],[25,26,["H1121"]],[26,30,["H3808"]],[30,31,["H529"]]]},{"k":5779,"v":[[0,1,["H1992"]],[1,6,["H7065"]],[6,11,["H3808"]],[11,12,["H410"]],[12,18,["H3707"]],[18,21,["H1892"]],[21,23,["H589"]],[23,28,["H7065"]],[28,33,["H3808"]],[33,35,["H5971"]],[35,41,["H3707"]],[41,44,["H5036"]],[44,45,["H1471"]]]},{"k":5780,"v":[[0,1,["H3588"]],[1,3,["H784"]],[3,5,["H6919"]],[5,8,["H639"]],[8,11,["H3344"]],[11,12,["H5704"]],[12,14,["H8482"]],[14,15,["H7585"]],[15,18,["H398"]],[18,20,["H776"]],[20,23,["H2981"]],[23,27,["H3857"]],[27,29,["H4146"]],[29,32,["H2022"]]]},{"k":5781,"v":[[0,3,["H5595"]],[3,4,["H7451"]],[4,5,["H5921"]],[5,9,["H3615"]],[9,11,["H2671"]],[11,13,[]]]},{"k":5782,"v":[[0,4,["H4198"]],[4,6,["H7458"]],[6,8,["H3898"]],[8,11,["H7565"]],[11,14,["H4815"]],[14,15,["H6986"]],[15,19,["H7971"]],[19,21,["H8127"]],[21,23,["H929"]],[23,26,["H5973"]],[26,28,["H2534"]],[28,30,["H2119"]],[30,33,["H6083"]]]},{"k":5783,"v":[[0,2,["H2719"]],[2,3,["H4480","H2351"]],[3,5,["H367"]],[5,6,["H4480","H2315"]],[6,8,["H7921"]],[8,9,["H1571"]],[9,12,["H970"]],[12,13,["H1571"]],[13,15,["H1330"]],[15,17,["H3243"]],[17,19,["H5973"]],[19,21,["H376"]],[21,24,["H7872"]]]},{"k":5784,"v":[[0,2,["H559"]],[2,8,["H6284"]],[8,13,["H2143"]],[13,17,["H7673"]],[17,20,["H4480","H376"]]]},{"k":5785,"v":[[0,4,["H3884"]],[4,6,["H1481"]],[6,8,["H3708"]],[8,11,["H341"]],[11,12,["H6435"]],[12,14,["H6862"]],[14,18,["H5234"]],[18,20,["H6435"]],[20,23,["H559"]],[23,25,["H3027"]],[25,27,["H7311"]],[27,30,["H3068"]],[30,32,["H3808"]],[32,33,["H6466"]],[33,34,["H3605"]],[34,35,["H2063"]]]},{"k":5786,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,5,["H1471"]],[5,6,["H6"]],[6,8,["H6098"]],[8,9,["H369"]],[9,13,["H8394"]],[13,15,[]]]},{"k":5787,"v":[[0,2,["H3863"]],[2,5,["H2449"]],[5,8,["H7919"]],[8,9,["H2063"]],[9,13,["H995"]],[13,16,["H319"]]]},{"k":5788,"v":[[0,1,["H349"]],[1,3,["H259"]],[3,4,["H7291"]],[4,6,["H505"]],[6,8,["H8147"]],[8,9,["H5127"]],[9,11,["H7233"]],[11,13,["H5127"]],[13,14,["H518","H3808","H3588"]],[14,16,["H6697"]],[16,18,["H4376"]],[18,22,["H3068"]],[22,26,["H5462"]]]},{"k":5789,"v":[[0,1,["H3588"]],[1,3,["H6697"]],[3,5,["H3808"]],[5,8,["H6697"]],[8,11,["H341"]],[11,14,["H6414"]]]},{"k":5790,"v":[[0,1,["H3588"]],[1,3,["H1612"]],[3,7,["H4480","H1612"]],[7,9,["H5467"]],[9,13,["H4480","H7709"]],[13,15,["H6017"]],[15,17,["H6025"]],[17,19,["H6025"]],[19,21,["H7219"]],[21,23,["H811"]],[23,25,["H4846"]]]},{"k":5791,"v":[[0,2,["H3196"]],[2,5,["H2534"]],[5,7,["H8577"]],[7,10,["H393"]],[10,11,["H7219"]],[11,13,["H6620"]]]},{"k":5792,"v":[[0,2,["H3808"]],[2,3,["H1931"]],[3,7,["H3647"]],[7,8,["H5978"]],[8,12,["H2856"]],[12,15,["H214"]]]},{"k":5793,"v":[[0,4,["H5359"]],[4,6,["H8005"]],[6,8,["H7272"]],[8,10,["H4131"]],[10,13,["H6256"]],[13,14,["H3588"]],[14,16,["H3117"]],[16,19,["H343"]],[19,22,["H7138"]],[22,28,["H6264"]],[28,32,["H2363"]]]},{"k":5794,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H1777"]],[5,7,["H5971"]],[7,10,["H5162"]],[10,11,["H5921"]],[11,13,["H5650"]],[13,14,["H3588"]],[14,16,["H7200"]],[16,17,["H3588"]],[17,19,["H3027"]],[19,21,["H235"]],[21,25,["H657"]],[25,27,["H6113"]],[27,29,["H5800"]]]},{"k":5795,"v":[[0,4,["H559"]],[4,5,["H335"]],[5,8,["H430"]],[8,10,["H6697"]],[10,14,["H2620"]]]},{"k":5796,"v":[[0,1,["H834"]],[1,3,["H398"]],[3,5,["H2459"]],[5,8,["H2077"]],[8,10,["H8354"]],[10,12,["H3196"]],[12,16,["H5257"]],[16,20,["H6965"]],[20,22,["H5826"]],[22,25,["H1961","H5921"]],[25,27,["H5643"]]]},{"k":5797,"v":[[0,1,["H7200"]],[1,2,["H6258"]],[2,3,["H3588"]],[3,4,["H589"]],[4,6,["H589"]],[6,8,["H1931"]],[8,12,["H369"]],[12,13,["H430"]],[13,14,["H5978"]],[14,16,["H589"]],[16,17,["H4191"]],[17,21,["H2421"]],[21,23,["H4272"]],[23,25,["H589"]],[25,26,["H7495"]],[26,27,["H369"]],[27,33,["H5337"]],[33,37,["H4480","H3027"]]]},{"k":5798,"v":[[0,1,["H3588"]],[1,4,["H5375"]],[4,6,["H3027"]],[6,7,["H413"]],[7,8,["H8064"]],[8,10,["H559"]],[10,11,["H595"]],[11,12,["H2416"]],[12,14,["H5769"]]]},{"k":5799,"v":[[0,1,["H518"]],[1,3,["H8150"]],[3,5,["H1300"]],[5,6,["H2719"]],[6,9,["H3027"]],[9,11,["H270"]],[11,13,["H4941"]],[13,16,["H7725"]],[16,17,["H5359"]],[17,20,["H6862"]],[20,23,["H7999"]],[23,26,["H8130"]],[26,27,[]]]},{"k":5800,"v":[[0,5,["H2671"]],[5,6,["H7937"]],[6,8,["H4480","H1818"]],[8,11,["H2719"]],[11,13,["H398"]],[13,14,["H1320"]],[14,19,["H4480","H1818"]],[19,22,["H2491"]],[22,26,["H7633"]],[26,29,["H4480","H7218"]],[29,31,["H6546"]],[31,34,["H341"]]]},{"k":5801,"v":[[0,1,["H7442"]],[1,4,["H1471"]],[4,7,["H5971"]],[7,8,["H3588"]],[8,11,["H5358"]],[11,13,["H1818"]],[13,16,["H5650"]],[16,19,["H7725"]],[19,20,["H5359"]],[20,23,["H6862"]],[23,27,["H3722"]],[27,30,["H127"]],[30,34,["H5971"]]]},{"k":5802,"v":[[0,2,["H4872"]],[2,3,["H935"]],[3,5,["H1696","(H853)"]],[5,6,["H3605"]],[6,8,["H1697"]],[8,10,["H2063"]],[10,11,["H7892"]],[11,14,["H241"]],[14,17,["H5971"]],[17,18,["H1931"]],[18,20,["H1954"]],[20,22,["H1121"]],[22,24,["H5126"]]]},{"k":5803,"v":[[0,2,["H4872"]],[2,5,["H3615"]],[5,7,["H1696","(H853)"]],[7,8,["H3605"]],[8,9,["H428"]],[9,10,["H1697"]],[10,11,["H413"]],[11,12,["H3605"]],[12,13,["H3478"]]]},{"k":5804,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H7760"]],[6,8,["H3824"]],[8,10,["H3605"]],[10,12,["H1697"]],[12,13,["H834"]],[13,14,["H595"]],[14,15,["H5749"]],[15,19,["H3117"]],[19,20,["H834"]],[20,23,["H6680","(H853)"]],[23,25,["H1121"]],[25,27,["H8104"]],[27,29,["H6213","(H853)"]],[29,30,["H3605"]],[30,32,["H1697"]],[32,34,["H2063"]],[34,35,["H8451"]]]},{"k":5805,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,4,["H3808"]],[4,6,["H7386"]],[6,7,["H1697"]],[7,8,["H4480"]],[8,10,["H3588"]],[10,11,["H1931"]],[11,14,["H2416"]],[14,17,["H2088"]],[17,18,["H1697"]],[18,21,["H748"]],[21,23,["H3117"]],[23,24,["H5921"]],[24,26,["H127"]],[26,27,["H834","H8033"]],[27,28,["H859"]],[28,30,["H5674","(H853)"]],[30,31,["H3383"]],[31,33,["H3423"]],[33,34,[]]]},{"k":5806,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4872"]],[6,7,["H2088"]],[7,8,["H6106"]],[8,9,["H3117"]],[9,10,["H559"]]]},{"k":5807,"v":[[0,3,["H5927"]],[3,4,["H413"]],[4,5,["H2088"]],[5,6,["H2022"]],[6,7,["H5682"]],[7,9,["H2022"]],[9,10,["H5015"]],[10,11,["H834"]],[11,15,["H776"]],[15,17,["H4124"]],[17,18,["H834"]],[18,20,["H5921"]],[20,21,["H6440"]],[21,22,["H3405"]],[22,24,["H7200","(H853)"]],[24,26,["H776"]],[26,28,["H3667"]],[28,29,["H834"]],[29,30,["H589"]],[30,31,["H5414"]],[31,34,["H1121"]],[34,36,["H3478"]],[36,39,["H272"]]]},{"k":5808,"v":[[0,2,["H4191"]],[2,5,["H2022"]],[5,6,["H834","H8033"]],[6,7,["H859"]],[7,9,["H5927"]],[9,12,["H622"]],[12,13,["H413"]],[13,15,["H5971"]],[15,16,["H834"]],[16,17,["H175"]],[17,19,["H251"]],[19,20,["H4191"]],[20,22,["H2022"]],[22,23,["H2023"]],[23,26,["H622"]],[26,27,["H413"]],[27,29,["H5971"]]]},{"k":5809,"v":[[0,1,["H5921","H834"]],[1,3,["H4603"]],[3,6,["H8432"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,13,["H4325"]],[13,15,["H4809","H6946"]],[15,18,["H4057"]],[18,20,["H6790"]],[20,21,["H5921","H834"]],[21,23,["H6942"]],[23,25,["H3808"]],[25,28,["H8432"]],[28,31,["H1121"]],[31,33,["H3478"]]]},{"k":5810,"v":[[0,1,["H3588"]],[1,4,["H7200","(H853)"]],[4,6,["H776"]],[6,7,["H4480","H5048"]],[7,12,["H3808"]],[12,13,["H935"]],[13,14,["H8033"]],[14,15,["H413"]],[15,17,["H776"]],[17,18,["H834"]],[18,19,["H589"]],[19,20,["H5414"]],[20,22,["H1121"]],[22,24,["H3478"]]]},{"k":5811,"v":[[0,2,["H2063"]],[2,5,["H1293"]],[5,6,["H834"]],[6,7,["H4872"]],[7,9,["H376"]],[9,11,["H430"]],[11,12,["H1288","(H853)"]],[12,14,["H1121"]],[14,16,["H3478"]],[16,17,["H6440"]],[17,19,["H4194"]]]},{"k":5812,"v":[[0,3,["H559"]],[3,5,["H3068"]],[5,6,["H935"]],[6,8,["H4480","H5514"]],[8,11,["H2224"]],[11,13,["H4480","H8165"]],[13,18,["H3313"]],[18,20,["H4480","H2022"]],[20,21,["H6290"]],[21,24,["H857"]],[24,27,["H4480","H7233"]],[27,29,["H6944"]],[29,33,["H4480","H3225"]],[33,37,["H799"]],[37,39,[]]]},{"k":5813,"v":[[0,1,["H637"]],[1,3,["H2245"]],[3,5,["H5971"]],[5,6,["H3605"]],[6,8,["H6918"]],[8,12,["H3027"]],[12,14,["H1992"]],[14,16,["H8497"]],[16,19,["H7272"]],[19,23,["H5375"]],[23,26,["H4480","H1703"]]]},{"k":5814,"v":[[0,1,["H4872"]],[1,2,["H6680"]],[2,5,["H8451"]],[5,8,["H4181"]],[8,11,["H6952"]],[11,13,["H3290"]]]},{"k":5815,"v":[[0,3,["H1961"]],[3,4,["H4428"]],[4,6,["H3484"]],[6,9,["H7218"]],[9,12,["H5971"]],[12,15,["H7626"]],[15,17,["H3478"]],[17,19,["H622"]],[19,20,["H3162"]]]},{"k":5816,"v":[[0,2,["H7205"]],[2,3,["H2421"]],[3,5,["H408"]],[5,6,["H4191"]],[6,11,["H4962"]],[11,12,["H1961"]],[12,13,["H4557"]]]},{"k":5817,"v":[[0,2,["H2063"]],[2,7,["H3063"]],[7,10,["H559"]],[10,11,["H8085"]],[11,12,["H3068"]],[12,14,["H6963"]],[14,16,["H3063"]],[16,18,["H935"]],[18,20,["H413"]],[20,22,["H5971"]],[22,25,["H3027"]],[25,27,["H7227"]],[27,31,["H1961"]],[31,34,["H5828"]],[34,39,["H4480","H6862"]]]},{"k":5818,"v":[[0,3,["H3878"]],[3,5,["H559"]],[5,8,["H8550"]],[8,11,["H224"]],[11,15,["H2623"]],[15,16,["H376"]],[16,17,["H834"]],[17,20,["H5254"]],[20,22,["H4532"]],[22,28,["H7378"]],[28,29,["H5921"]],[29,31,["H4325"]],[31,33,["H4809"]]]},{"k":5819,"v":[[0,2,["H559"]],[2,5,["H1"]],[5,9,["H517"]],[9,12,["H3808"]],[12,13,["H7200"]],[13,15,["H3808"]],[15,18,["H5234"]],[18,20,["H251"]],[20,21,["H3808"]],[21,22,["H3045"]],[22,25,["H1121"]],[25,26,["H3588"]],[26,29,["H8104"]],[29,31,["H565"]],[31,33,["H5341"]],[33,35,["H1285"]]]},{"k":5820,"v":[[0,3,["H3384"]],[3,4,["H3290"]],[4,6,["H4941"]],[6,8,["H3478"]],[8,10,["H8451"]],[10,13,["H7760"]],[13,14,["H6988"]],[14,15,["H639"]],[15,20,["H3632"]],[20,21,["H5921"]],[21,23,["H4196"]]]},{"k":5821,"v":[[0,1,["H1288"]],[1,2,["H3068"]],[2,4,["H2428"]],[4,6,["H7521"]],[6,8,["H6467"]],[8,11,["H3027"]],[11,13,["H4272"]],[13,15,["H4975"]],[15,20,["H6965"]],[20,26,["H8130"]],[26,28,["H4480"]],[28,32,["H6965"]]]},{"k":5822,"v":[[0,3,["H1144"]],[3,5,["H559"]],[5,7,["H3039"]],[7,10,["H3068"]],[10,12,["H7931"]],[12,14,["H983"]],[14,15,["H5921"]],[15,21,["H2653","H5921"]],[21,23,["H3605"]],[23,25,["H3117"]],[25,30,["H7931"]],[30,31,["H996"]],[31,33,["H3802"]]]},{"k":5823,"v":[[0,3,["H3130"]],[3,5,["H559"]],[5,6,["H1288"]],[6,9,["H3068"]],[9,12,["H776"]],[12,16,["H4480","H4022"]],[16,18,["H8064"]],[18,21,["H4480","H2919"]],[21,25,["H4480","H8415"]],[25,27,["H7257"]],[27,28,["H8478"]]]},{"k":5824,"v":[[0,4,["H4480","H4022"]],[4,5,["H8393"]],[5,10,["H8121"]],[10,15,["H4480","H4022"]],[15,17,["H1645"]],[17,20,["H3391"]]]},{"k":5825,"v":[[0,5,["H4480","H7218"]],[5,8,["H6924"]],[8,9,["H2042"]],[9,14,["H4480","H4022"]],[14,17,["H5769"]],[17,18,["H1389"]]]},{"k":5826,"v":[[0,5,["H4480","H4022"]],[5,8,["H776"]],[8,10,["H4393"]],[10,16,["H7522"]],[16,20,["H7931"]],[20,23,["H5572"]],[23,27,["H935"]],[27,30,["H7218"]],[30,32,["H3130"]],[32,39,["H6936"]],[39,44,["H5139"]],[44,47,["H251"]]]},{"k":5827,"v":[[0,2,["H1926"]],[2,6,["H1060"]],[6,9,["H7794"]],[9,12,["H7161"]],[12,16,["H7161"]],[16,18,["H7214"]],[18,23,["H5055"]],[23,25,["H5971"]],[25,26,["H3162"]],[26,29,["H657"]],[29,32,["H776"]],[32,34,["H1992"]],[34,38,["H7233"]],[38,40,["H669"]],[40,42,["H1992"]],[42,45,["H505"]],[45,47,["H4519"]]]},{"k":5828,"v":[[0,3,["H2074"]],[3,5,["H559"]],[5,6,["H8055"]],[6,7,["H2074"]],[7,11,["H3318"]],[11,13,["H3485"]],[13,16,["H168"]]]},{"k":5829,"v":[[0,3,["H7121"]],[3,5,["H5971"]],[5,8,["H2022"]],[8,9,["H8033"]],[9,12,["H2076"]],[12,13,["H2077"]],[13,15,["H6664"]],[15,16,["H3588"]],[16,19,["H3243"]],[19,22,["H8228"]],[22,25,["H3220"]],[25,28,["H8226"]],[28,29,["H2934"]],[29,32,["H2344"]]]},{"k":5830,"v":[[0,3,["H1410"]],[3,5,["H559"]],[5,6,["H1288"]],[6,10,["H7337"]],[10,11,["H1410"]],[11,13,["H7931"]],[13,16,["H3833"]],[16,18,["H2963"]],[18,20,["H2220"]],[20,21,["H637"]],[21,26,["H6936"]]]},{"k":5831,"v":[[0,3,["H7200"]],[3,6,["H7225"]],[6,9,["H3588"]],[9,10,["H8033"]],[10,13,["H2513"]],[13,16,["H2710"]],[16,19,["H5603"]],[19,22,["H857"]],[22,25,["H7218"]],[25,28,["H5971"]],[28,30,["H6213"]],[30,32,["H6666"]],[32,35,["H3068"]],[35,38,["H4941"]],[38,39,["H5973"]],[39,40,["H3478"]]]},{"k":5832,"v":[[0,3,["H1835"]],[3,5,["H559"]],[5,6,["H1835"]],[6,9,["H738"]],[9,10,["H1482"]],[10,13,["H2187"]],[13,14,["H4480"]],[14,15,["H1316"]]]},{"k":5833,"v":[[0,3,["H5321"]],[3,5,["H559"]],[5,7,["H5321"]],[7,8,["H7649"]],[8,10,["H7522"]],[10,12,["H4392"]],[12,15,["H1293"]],[15,18,["H3068"]],[18,19,["H3423"]],[19,22,["H3220"]],[22,25,["H1864"]]]},{"k":5834,"v":[[0,3,["H836"]],[3,5,["H559"]],[5,7,["H836"]],[7,9,["H1288"]],[9,11,["H4480","H1121"]],[11,14,["H1961"]],[14,15,["H7521"]],[15,18,["H251"]],[18,22,["H2881"]],[22,24,["H7272"]],[24,26,["H8081"]]]},{"k":5835,"v":[[0,2,["H4515"]],[2,5,["H1270"]],[5,7,["H5178"]],[7,11,["H3117"]],[11,15,["H1679"]],[15,16,[]]]},{"k":5836,"v":[[0,3,["H369"]],[3,7,["H410"]],[7,9,["H3484"]],[9,12,["H7392"]],[12,14,["H8064"]],[14,17,["H5828"]],[17,21,["H1346"]],[21,24,["H7834"]]]},{"k":5837,"v":[[0,2,["H6924"]],[2,3,["H430"]],[3,6,["H4585"]],[6,8,["H4480","H8478"]],[8,11,["H5769"]],[11,12,["H2220"]],[12,17,["H1644"]],[17,19,["H341"]],[19,21,["H4480","H6440"]],[21,25,["H559"]],[25,26,["H8045"]],[26,27,[]]]},{"k":5838,"v":[[0,1,["H3478"]],[1,4,["H7931"]],[4,6,["H983"]],[6,7,["H910"]],[7,9,["H5869"]],[9,11,["H3290"]],[11,14,["H413"]],[14,16,["H776"]],[16,18,["H1715"]],[18,20,["H8492"]],[20,21,["H637"]],[21,23,["H8064"]],[23,26,["H6201"]],[26,27,["H2919"]]]},{"k":5839,"v":[[0,1,["H835"]],[1,5,["H3478"]],[5,6,["H4310"]],[6,10,["H3644"]],[10,12,["H5971"]],[12,13,["H3467"]],[13,16,["H3068"]],[16,18,["H4043"]],[18,21,["H5828"]],[21,23,["H834"]],[23,26,["H2719"]],[26,29,["H1346"]],[29,32,["H341"]],[32,36,["H3584"]],[36,40,["H859"]],[40,42,["H1869"]],[42,43,["H5921"]],[43,46,["H1116"]]]},{"k":5840,"v":[[0,2,["H4872"]],[2,4,["H5927"]],[4,7,["H4480","H6160"]],[7,9,["H4124"]],[9,10,["H413"]],[10,12,["H2022"]],[12,14,["H5015"]],[14,17,["H7218"]],[17,19,["H6449"]],[19,20,["H834"]],[20,22,["H5921"]],[22,23,["H6440"]],[23,24,["H3405"]],[24,27,["H3068"]],[27,28,["H7200"]],[28,29,["(H853)"]],[29,30,["H3605"]],[30,32,["H776","(H853)"]],[32,34,["H1568"]],[34,35,["H5704"]],[35,36,["H1835"]]]},{"k":5841,"v":[[0,2,["H3605"]],[2,3,["H5321"]],[3,6,["H776"]],[6,8,["H669"]],[8,10,["H4519"]],[10,12,["H3605"]],[12,14,["H776"]],[14,16,["H3063"]],[16,17,["H5704"]],[17,19,["H314"]],[19,20,["H3220"]]]},{"k":5842,"v":[[0,3,["H5045"]],[3,6,["H3603"]],[6,9,["H1237"]],[9,11,["H3405"]],[11,13,["H5892"]],[13,16,["H8558"]],[16,17,["H5704"]],[17,18,["H6820"]]]},{"k":5843,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H2063"]],[7,10,["H776"]],[10,11,["H834"]],[11,13,["H7650"]],[13,15,["H85"]],[15,17,["H3327"]],[17,20,["H3290"]],[20,21,["H559"]],[21,24,["H5414"]],[24,28,["H2233"]],[28,34,["H7200"]],[34,38,["H5869"]],[38,42,["H3808"]],[42,44,["H5674"]],[44,45,["H8033"]]]},{"k":5844,"v":[[0,2,["H4872"]],[2,4,["H5650"]],[4,7,["H3068"]],[7,8,["H4191"]],[8,9,["H8033"]],[9,12,["H776"]],[12,14,["H4124"]],[14,16,["H5921"]],[16,18,["H6310"]],[18,21,["H3068"]]]},{"k":5845,"v":[[0,3,["H6912"]],[3,7,["H1516"]],[7,10,["H776"]],[10,12,["H4124"]],[12,14,["H4136"]],[14,15,["H1047"]],[15,17,["H3808"]],[17,18,["H376"]],[18,19,["H3045"]],[19,20,["(H853)"]],[20,22,["H6900"]],[22,23,["H5704"]],[23,24,["H2088"]],[24,25,["H3117"]]]},{"k":5846,"v":[[0,2,["H4872"]],[2,5,["H3967"]],[5,7,["H6242"]],[7,8,["H8141"]],[8,9,["H1121"]],[9,12,["H4194"]],[12,14,["H5869"]],[14,17,["H3543","H3808"]],[17,18,["H3808"]],[18,21,["H3893"]],[21,22,["H5127"]]]},{"k":5847,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H1058"]],[6,7,["(H853)"]],[7,8,["H4872"]],[8,11,["H6160"]],[11,13,["H4124"]],[13,14,["H7970"]],[14,15,["H3117"]],[15,18,["H3117"]],[18,20,["H1065"]],[20,22,["H60"]],[22,24,["H4872"]],[24,26,["H8552"]]]},{"k":5848,"v":[[0,2,["H3091"]],[2,4,["H1121"]],[4,6,["H5126"]],[6,8,["H4392"]],[8,11,["H7307"]],[11,13,["H2451"]],[13,14,["H3588"]],[14,15,["H4872"]],[15,17,["H5564","(H853)"]],[17,19,["H3027"]],[19,20,["H5921"]],[20,24,["H1121"]],[24,26,["H3478"]],[26,27,["H8085"]],[27,28,["H413"]],[28,31,["H6213"]],[31,32,["H834"]],[32,34,["H3068"]],[34,35,["H6680","(H853)"]],[35,36,["H4872"]]]},{"k":5849,"v":[[0,3,["H6965"]],[3,4,["H3808"]],[4,6,["H5030"]],[6,7,["H5750"]],[7,9,["H3478"]],[9,12,["H4872"]],[12,13,["H834"]],[13,15,["H3068"]],[15,16,["H3045"]],[16,17,["H6440"]],[17,18,["H413"]],[18,19,["H6440"]]]},{"k":5850,"v":[[0,2,["H3605"]],[2,4,["H226"]],[4,7,["H4159"]],[7,8,["H834"]],[8,10,["H3068"]],[10,11,["H7971"]],[11,14,["H6213"]],[14,17,["H776"]],[17,19,["H4714"]],[19,21,["H6547"]],[21,24,["H3605"]],[24,26,["H5650"]],[26,29,["H3605"]],[29,31,["H776"]]]},{"k":5851,"v":[[0,3,["H3605"]],[3,5,["H2389"]],[5,6,["H3027"]],[6,9,["H3605"]],[9,11,["H1419"]],[11,12,["H4172"]],[12,13,["H834"]],[13,14,["H4872"]],[14,15,["H6213"]],[15,18,["H5869"]],[18,20,["H3605"]],[20,21,["H3478"]]]},{"k":5852,"v":[[0,2,["H310"]],[2,4,["H4194"]],[4,6,["H4872"]],[6,8,["H5650"]],[8,11,["H3068"]],[11,15,["H1961"]],[15,18,["H3068"]],[18,19,["H559"]],[19,20,["H413"]],[20,21,["H3091"]],[21,23,["H1121"]],[23,25,["H5126"]],[25,26,["H4872"]],[26,27,["H8334"]],[27,28,["H559"]]]},{"k":5853,"v":[[0,1,["H4872"]],[1,3,["H5650"]],[3,5,["H4191"]],[5,6,["H6258"]],[6,8,["H6965"]],[8,10,["H5674","(H853)"]],[10,11,["H2088"]],[11,12,["H3383"]],[12,13,["H859"]],[13,15,["H3605"]],[15,16,["H2088"]],[16,17,["H5971"]],[17,18,["H413"]],[18,20,["H776"]],[20,21,["H834"]],[21,22,["H595"]],[22,24,["H5414"]],[24,30,["H1121"]],[30,32,["H3478"]]]},{"k":5854,"v":[[0,1,["H3605"]],[1,2,["H4725"]],[2,3,["H834"]],[3,5,["H3709"]],[5,8,["H7272"]],[8,10,["H1869"]],[10,15,["H5414"]],[15,18,["H834"]],[18,20,["H1696"]],[20,21,["H413"]],[21,22,["H4872"]]]},{"k":5855,"v":[[0,3,["H4480","H4057"]],[3,5,["H2088"]],[5,6,["H3844"]],[6,8,["H5704"]],[8,10,["H1419"]],[10,11,["H5104"]],[11,13,["H5104"]],[13,14,["H6578"]],[14,15,["H3605"]],[15,17,["H776"]],[17,20,["H2850"]],[20,22,["H5704"]],[22,24,["H1419"]],[24,25,["H3220"]],[25,29,["H3996"]],[29,32,["H8121"]],[32,34,["H1961"]],[34,36,["H1366"]]]},{"k":5856,"v":[[0,3,["H3808"]],[3,5,["H376"]],[5,9,["H3320"]],[9,10,["H6440"]],[10,12,["H3605"]],[12,14,["H3117"]],[14,17,["H2416"]],[17,18,["H834"]],[18,20,["H1961"]],[20,21,["H5973"]],[21,22,["H4872"]],[22,26,["H1961"]],[26,27,["H5973"]],[27,31,["H3808"]],[31,32,["H7503"]],[32,34,["H3808"]],[34,35,["H5800"]],[35,36,[]]]},{"k":5857,"v":[[0,2,["H2388"]],[2,7,["H553"]],[7,8,["H3588"]],[8,9,["(H853)"]],[9,10,["H2088"]],[10,11,["H5971"]],[11,13,["H859"]],[13,17,["H5157","(H853)"]],[17,19,["H776"]],[19,20,["H834"]],[20,22,["H7650"]],[22,25,["H1"]],[25,27,["H5414"]],[27,28,[]]]},{"k":5858,"v":[[0,1,["H7535"]],[1,4,["H2388"]],[4,6,["H3966"]],[6,7,["H553"]],[7,11,["H8104"]],[11,13,["H6213"]],[13,16,["H3605"]],[16,18,["H8451"]],[18,19,["H834"]],[19,20,["H4872"]],[20,22,["H5650"]],[22,23,["H6680"]],[23,25,["H5493"]],[25,26,["H408"]],[26,27,["H4480"]],[27,32,["H3225"]],[32,36,["H8040"]],[36,37,["H4616"]],[37,40,["H7919"]],[40,41,["H3605","H834"]],[41,43,["H1980"]]]},{"k":5859,"v":[[0,1,["H2088"]],[1,2,["H5612"]],[2,5,["H8451"]],[5,7,["H3808"]],[7,8,["H4185"]],[8,12,["H4480","H6310"]],[12,16,["H1897"]],[16,18,["H3119"]],[18,20,["H3915"]],[20,21,["H4616"]],[21,24,["H8104"]],[24,26,["H6213"]],[26,29,["H3605"]],[29,32,["H3789"]],[32,34,["H3588"]],[34,35,["H227"]],[35,38,["H6743","(H853)"]],[38,40,["H1870"]],[40,41,["H6743"]],[41,43,["H227"]],[43,48,["H7919"]]]},{"k":5860,"v":[[0,2,["H3808"]],[2,4,["H6680"]],[4,7,["H2388"]],[7,12,["H553"]],[12,15,["H6206","H408"]],[15,16,["H408"]],[16,19,["H2865"]],[19,20,["H3588"]],[20,22,["H3068"]],[22,24,["H430"]],[24,26,["H5973"]],[26,28,["H3605","H834"]],[28,30,["H1980"]]]},{"k":5861,"v":[[0,2,["H3091"]],[2,3,["H6680","(H853)"]],[3,5,["H7860"]],[5,8,["H5971"]],[8,9,["H559"]]]},{"k":5862,"v":[[0,1,["H5674"]],[1,2,["H7130"]],[2,4,["H4264"]],[4,6,["H6680","(H853)"]],[6,8,["H5971"]],[8,9,["H559"]],[9,10,["H3559"]],[10,12,["H6720"]],[12,13,["H3588"]],[13,14,["H5750"]],[14,15,["H7969"]],[15,16,["H3117"]],[16,17,["H859"]],[17,20,["H5674","(H853)"]],[20,21,["H2088"]],[21,22,["H3383"]],[22,25,["H935"]],[25,27,["H3423","(H853)"]],[27,29,["H776"]],[29,30,["H834"]],[30,32,["H3068"]],[32,34,["H430"]],[34,35,["H5414"]],[35,38,["H3423"]],[38,39,[]]]},{"k":5863,"v":[[0,4,["H7206"]],[4,8,["H1425"]],[8,11,["H2677"]],[11,13,["H7626"]],[13,15,["H4519"]],[15,16,["H559"]],[16,17,["H3091"]],[17,18,["H559"]]]},{"k":5864,"v":[[0,1,["H2142","(H853)"]],[1,3,["H1697"]],[3,4,["H834"]],[4,5,["H4872"]],[5,7,["H5650"]],[7,10,["H3068"]],[10,11,["H6680"]],[11,13,["H559"]],[13,15,["H3068"]],[15,17,["H430"]],[17,21,["H5117"]],[21,24,["H5414"]],[24,25,["(H853)"]],[25,26,["H2063"]],[26,27,["H776"]]]},{"k":5865,"v":[[0,2,["H802"]],[2,5,["H2945"]],[5,8,["H4735"]],[8,10,["H3427"]],[10,13,["H776"]],[13,14,["H834"]],[14,15,["H4872"]],[15,16,["H5414"]],[16,20,["H5676"]],[20,21,["H3383"]],[21,23,["H859"]],[23,25,["H5674"]],[25,26,["H6440"]],[26,28,["H251"]],[28,29,["H2571"]],[29,30,["H3605"]],[30,33,["H1368"]],[33,35,["H2428"]],[35,37,["H5826"]],[37,38,[]]]},{"k":5866,"v":[[0,1,["H5704","H834"]],[1,3,["H3068"]],[3,5,["H5117"]],[5,7,["H251"]],[7,8,["H5117"]],[8,15,["H1992"]],[15,16,["H1571"]],[16,18,["H3423","(H853)"]],[18,20,["H776"]],[20,21,["H834"]],[21,23,["H3068"]],[23,25,["H430"]],[25,26,["H5414"]],[26,31,["H7725"]],[31,34,["H776"]],[34,37,["H3425"]],[37,39,["H3423"]],[39,41,["H834"]],[41,42,["H4872"]],[42,44,["H3068"]],[44,45,["H5650"]],[45,46,["H5414"]],[46,50,["H5676"]],[50,51,["H3383"]],[51,54,["H4217","H8121"]]]},{"k":5867,"v":[[0,3,["H6030","(H853)"]],[3,4,["H3091"]],[4,5,["H559"]],[5,6,["H3605"]],[6,7,["H834"]],[7,9,["H6680"]],[9,13,["H6213"]],[13,15,["H413","H3605","H834"]],[15,17,["H7971"]],[17,21,["H1980"]]]},{"k":5868,"v":[[0,4,["H8085"]],[4,5,["H413"]],[5,6,["H4872"]],[6,8,["H3605"]],[8,9,["H834"]],[9,10,["H3651"]],[10,13,["H8085"]],[13,14,["H413"]],[14,16,["H7535"]],[16,18,["H3068"]],[18,20,["H430"]],[20,21,["H1961"]],[21,22,["H5973"]],[22,24,["H834"]],[24,26,["H1961"]],[26,27,["H5973"]],[27,28,["H4872"]]]},{"k":5869,"v":[[0,1,["H3605","H376","H834"]],[1,7,["H4784","(H853)"]],[7,9,["H6310"]],[9,12,["H3808"]],[12,14,["H8085","(H853)"]],[14,16,["H1697"]],[16,18,["H3605"]],[18,19,["H834"]],[19,21,["H6680"]],[21,28,["H4191"]],[28,29,["H7535"]],[29,31,["H2388"]],[31,36,["H553"]]]},{"k":5870,"v":[[0,2,["H3091"]],[2,4,["H1121"]],[4,6,["H5126"]],[6,7,["H7971"]],[7,9,["H4480"]],[9,10,["H7851"]],[10,11,["H8147"]],[11,12,["H376"]],[12,14,["H7270"]],[14,15,["H2791"]],[15,16,["H559"]],[16,17,["H1980"]],[17,18,["H7200","(H853)"]],[18,20,["H776"]],[20,22,["H3405"]],[22,25,["H1980"]],[25,28,["H935"]],[28,30,["H802","H2181"]],[30,31,["H1004"]],[31,32,["H8034"]],[32,33,["H7343"]],[33,35,["H7901"]],[35,36,["H8033"]]]},{"k":5871,"v":[[0,4,["H559"]],[4,6,["H4428"]],[6,8,["H3405"]],[8,9,["H559"]],[9,10,["H2009"]],[10,12,["H935"]],[12,13,["H376"]],[13,15,["H2008"]],[15,17,["H3915"]],[17,20,["H4480","H1121"]],[20,22,["H3478"]],[22,25,["H2658","(H853)"]],[25,27,["H776"]]]},{"k":5872,"v":[[0,3,["H4428"]],[3,5,["H3405"]],[5,6,["H7971"]],[6,7,["H413"]],[7,8,["H7343"]],[8,9,["H559"]],[9,11,["H3318"]],[11,13,["H376"]],[13,16,["H935"]],[16,17,["H413"]],[17,19,["H834"]],[19,21,["H935"]],[21,24,["H1004"]],[24,25,["H3588"]],[25,28,["H935"]],[28,31,["H2658","(H853)"]],[31,32,["H3605"]],[32,34,["H776"]]]},{"k":5873,"v":[[0,3,["H802"]],[3,4,["H3947","(H853)"]],[4,6,["H8147"]],[6,7,["H376"]],[7,9,["H6845"]],[9,12,["H559"]],[12,13,["H3651"]],[13,15,["H935"]],[15,16,["H376"]],[16,17,["H413"]],[17,21,["H3045"]],[21,22,["H3808"]],[22,23,["H4480","H370"]],[23,24,["H1992"]],[24,25,[]]]},{"k":5874,"v":[[0,5,["H1961"]],[5,10,["H5462"]],[10,13,["H8179"]],[13,17,["H2822"]],[17,20,["H376"]],[20,22,["H3318"]],[22,23,["H575"]],[23,25,["H376"]],[25,26,["H1980"]],[26,28,["H3045"]],[28,29,["H3808"]],[29,30,["H7291"]],[30,31,["H310"]],[31,33,["H4118"]],[33,34,["H3588"]],[34,37,["H5381"]],[37,38,[]]]},{"k":5875,"v":[[0,2,["H1931"]],[2,6,["H5927"]],[6,9,["H1406"]],[9,14,["H2934"]],[14,18,["H6086"]],[18,20,["H6593"]],[20,26,["H6186"]],[26,27,["H5921"]],[27,29,["H1406"]]]},{"k":5876,"v":[[0,3,["H376"]],[3,4,["H7291"]],[4,5,["H310"]],[5,8,["H1870"]],[8,10,["H3383"]],[10,11,["H5921"]],[11,13,["H4569"]],[13,17,["H310","H834"]],[17,20,["H7291"]],[20,21,["H310"]],[21,25,["H3318"]],[25,27,["H5462"]],[27,29,["H8179"]]]},{"k":5877,"v":[[0,2,["H2962"]],[2,3,["H1992"]],[3,6,["H7901"]],[6,7,["H1931"]],[7,9,["H5927"]],[9,10,["H5921"]],[10,12,["H5921"]],[12,14,["H1406"]]]},{"k":5878,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H376"]],[6,8,["H3045"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,13,["H5414"]],[13,14,["(H853)"]],[14,16,["H776"]],[16,18,["H3588"]],[18,20,["H367"]],[20,22,["H5307"]],[22,23,["H5921"]],[23,26,["H3588"]],[26,27,["H3605"]],[27,29,["H3427"]],[29,32,["H776"]],[32,33,["H4127"]],[33,35,["H4480","H6440"]],[35,36,[]]]},{"k":5879,"v":[[0,1,["H3588"]],[1,4,["H8085","(H853)"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H3001","(H853)"]],[9,11,["H4325"]],[11,14,["H5488"]],[14,15,["H3220"]],[15,16,["H4480","H6440"]],[16,21,["H3318"]],[21,23,["H4480","H4714"]],[23,25,["H834"]],[25,27,["H6213"]],[27,30,["H8147"]],[30,31,["H4428"]],[31,34,["H567"]],[34,35,["H834"]],[35,40,["H5676"]],[40,41,["H3383"]],[41,42,["H5511"]],[42,44,["H5747"]],[44,45,["H834"]],[45,48,["H2763","(H853)"]]]},{"k":5880,"v":[[0,7,["H8085"]],[7,11,["H3824"]],[11,13,["H4549"]],[13,14,["H3808"]],[14,17,["H6965"]],[17,19,["H5750"]],[19,20,["H7307"]],[20,23,["H376"]],[23,25,["H4480","H6440"]],[25,27,["H3588"]],[27,29,["H3068"]],[29,31,["H430"]],[31,32,["H1931"]],[32,34,["H430"]],[34,36,["H8064"]],[36,37,["H4480","H4605"]],[37,39,["H5921"]],[39,40,["H776"]],[40,41,["H4480","H8478"]]]},{"k":5881,"v":[[0,1,["H6258"]],[1,4,["H4994"]],[4,6,["H7650"]],[6,11,["H3068"]],[11,12,["H3588"]],[12,17,["H6213","H5973","H2617"]],[17,19,["H859"]],[19,21,["H1571"]],[21,22,["H6213"]],[22,23,["H2617"]],[23,24,["H5973"]],[24,26,["H1"]],[26,27,["H1004"]],[27,29,["H5414"]],[29,32,["H571"]],[32,33,["H226"]]]},{"k":5882,"v":[[0,6,["H2421","(H853)"]],[6,8,["H1"]],[8,11,["H517"]],[11,14,["H251"]],[14,17,["H269"]],[17,19,["H3605"]],[19,20,["H834"]],[20,24,["H5337","(H853)"]],[24,26,["H5315"]],[26,28,["H4480","H4194"]]]},{"k":5883,"v":[[0,3,["H376"]],[3,4,["H559"]],[4,7,["H5315"]],[7,8,["H8478"]],[8,10,["H518"]],[10,12,["H5046"]],[12,13,["H3808","(H853)"]],[13,14,["H2088"]],[14,16,["H1697"]],[16,20,["H1961"]],[20,23,["H3068"]],[23,25,["H5414"]],[25,26,["(H853)"]],[26,28,["H776"]],[28,32,["H6213"]],[32,33,["H2617"]],[33,35,["H571"]],[35,36,["H5973"]],[36,37,[]]]},{"k":5884,"v":[[0,5,["H3381"]],[5,8,["H2256"]],[8,9,["H1157"]],[9,11,["H2474"]],[11,12,["H3588"]],[12,14,["H1004"]],[14,18,["H2346"]],[18,19,["H7023"]],[19,21,["H1931"]],[21,22,["H3427"]],[22,25,["H2346"]]]},{"k":5885,"v":[[0,3,["H559"]],[3,6,["H1980"]],[6,10,["H2022"]],[10,11,["H6435"]],[11,13,["H7291"]],[13,14,["H6293"]],[14,18,["H2247"]],[18,19,["H8033"]],[19,20,["H7969"]],[20,21,["H3117"]],[21,22,["H5704"]],[22,24,["H7291"]],[24,26,["H7725"]],[26,28,["H310"]],[28,31,["H1980"]],[31,33,["H1870"]]]},{"k":5886,"v":[[0,3,["H376"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H587"]],[7,10,["H5355"]],[10,14,["H4480","H7621","H2088"]],[14,15,["H834"]],[15,20,["H7650"]]]},{"k":5887,"v":[[0,1,["H2009"]],[1,3,["H587"]],[3,4,["H935"]],[4,7,["H776"]],[7,10,["H7194","(H853)"]],[10,11,["H2088"]],[11,12,["H8615"]],[12,14,["H8144"]],[14,15,["H2339"]],[15,18,["H2474"]],[18,19,["H834"]],[19,24,["H3381"]],[24,29,["H622"]],[29,31,["H1"]],[31,34,["H517"]],[34,37,["H251"]],[37,39,["H3605"]],[39,41,["H1"]],[41,42,["H1004"]],[42,43,["H1004"]],[43,44,["H413"]],[44,45,[]]]},{"k":5888,"v":[[0,4,["H1961"]],[4,6,["H3605","H834"]],[6,9,["H3318"]],[9,12,["H4480","H1817"]],[12,15,["H1004"]],[15,18,["H2351"]],[18,20,["H1818"]],[20,25,["H7218"]],[25,27,["H587"]],[27,30,["H5355"]],[30,32,["H3605","H834"]],[32,34,["H1961"]],[34,35,["H854"]],[35,39,["H1004"]],[39,41,["H1818"]],[41,46,["H7218"]],[46,47,["H518"]],[47,49,["H3027"]],[49,50,["H1961"]],[50,52,[]]]},{"k":5889,"v":[[0,2,["H518"]],[2,4,["H5046","(H853)"]],[4,5,["H2088"]],[5,7,["H1697"]],[7,11,["H1961"]],[11,12,["H5355"]],[12,15,["H4480","H7621"]],[15,16,["H834"]],[16,22,["H7650"]]]},{"k":5890,"v":[[0,3,["H559"]],[3,7,["H1697"]],[7,8,["H3651"]],[8,10,["H1931"]],[10,15,["H7971"]],[15,18,["H1980"]],[18,21,["H7194","(H853)"]],[21,23,["H8144"]],[23,24,["H8615"]],[24,27,["H2474"]]]},{"k":5891,"v":[[0,3,["H1980"]],[3,5,["H935"]],[5,8,["H2022"]],[8,10,["H3427"]],[10,11,["H8033"]],[11,12,["H7969"]],[12,13,["H3117"]],[13,14,["H5704"]],[14,16,["H7291"]],[16,18,["H7725"]],[18,21,["H7291"]],[21,22,["H1245"]],[22,25,["H3605"]],[25,27,["H1870"]],[27,29,["H4672"]],[29,31,["H3808"]]]},{"k":5892,"v":[[0,3,["H8147"]],[3,4,["H376"]],[4,5,["H7725"]],[5,7,["H3381"]],[7,10,["H4480","H2022"]],[10,13,["H5674"]],[13,15,["H935"]],[15,16,["H413"]],[16,17,["H3091"]],[17,19,["H1121"]],[19,21,["H5126"]],[21,23,["H5608"]],[23,24,["(H853)"]],[24,25,["H3605"]],[25,28,["H4672"]],[28,29,[]]]},{"k":5893,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H3091"]],[5,6,["H3588"]],[6,8,["H3068"]],[8,10,["H5414"]],[10,13,["H3027","(H853)"]],[13,14,["H3605"]],[14,16,["H776"]],[16,18,["H1571"]],[18,19,["H3605"]],[19,21,["H3427"]],[21,24,["H776"]],[24,26,["H4127"]],[26,28,["H4480","H6440"]],[28,29,[]]]},{"k":5894,"v":[[0,2,["H3091"]],[2,4,["H7925"]],[4,7,["H1242"]],[7,10,["H5265"]],[10,12,["H4480","H7851"]],[12,14,["H935"]],[14,15,["H5704"]],[15,16,["H3383"]],[16,17,["H1931"]],[17,19,["H3605"]],[19,21,["H1121"]],[21,23,["H3478"]],[23,25,["H3885"]],[25,26,["H8033"]],[26,27,["H2962"]],[27,30,["H5674"]]]},{"k":5895,"v":[[0,5,["H1961"]],[5,6,["H4480","H7097"]],[6,7,["H7969"]],[7,8,["H3117"]],[8,11,["H7860"]],[11,12,["H5674"]],[12,13,["H7130"]],[13,15,["H4264"]]]},{"k":5896,"v":[[0,3,["H6680","(H853)"]],[3,5,["H5971"]],[5,6,["H559"]],[6,9,["H7200","(H853)"]],[9,11,["H727"]],[11,14,["H1285"]],[14,17,["H3068"]],[17,19,["H430"]],[19,22,["H3548"]],[22,24,["H3881"]],[24,25,["H5375"]],[25,28,["H859"]],[28,30,["H5265"]],[30,33,["H4480","H4725"]],[33,35,["H1980"]],[35,36,["H310"]],[36,37,[]]]},{"k":5897,"v":[[0,1,["H389"]],[1,4,["H1961"]],[4,6,["H7350"]],[6,7,["H996"]],[7,13,["H505"]],[13,14,["H520"]],[14,16,["H4060"]],[16,19,["H408","H7126"]],[19,20,["H413"]],[20,22,["H4616","H834"]],[22,25,["H3045","(H853)"]],[25,27,["H1870"]],[27,29,["H834"]],[29,32,["H1980"]],[32,33,["H3588"]],[33,36,["H3808"]],[36,37,["H5674"]],[37,39,["H1870"]],[39,40,["H4480","H8543","H8032"]]]},{"k":5898,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,8,["H6942"]],[8,9,["H3588"]],[9,11,["H4279"]],[11,13,["H3068"]],[13,15,["H6213"]],[15,16,["H6381"]],[16,17,["H7130"]],[17,18,[]]]},{"k":5899,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3548"]],[6,7,["H559"]],[7,9,["H5375","(H853)"]],[9,11,["H727"]],[11,14,["H1285"]],[14,17,["H5674"]],[17,18,["H6440"]],[18,20,["H5971"]],[20,24,["H5375","(H853)"]],[24,26,["H727"]],[26,29,["H1285"]],[29,31,["H1980"]],[31,32,["H6440"]],[32,34,["H5971"]]]},{"k":5900,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091"]],[6,7,["H2088"]],[7,8,["H3117"]],[8,11,["H2490"]],[11,13,["H1431"]],[13,17,["H5869"]],[17,19,["H3605"]],[19,20,["H3478"]],[20,21,["H834"]],[21,24,["H3045"]],[24,25,["H3588"]],[25,26,["H834"]],[26,28,["H1961"]],[28,29,["H5973"]],[29,30,["H4872"]],[30,34,["H1961"]],[34,35,["H5973"]],[35,36,[]]]},{"k":5901,"v":[[0,2,["H859"]],[2,4,["H6680","(H853)"]],[4,6,["H3548"]],[6,8,["H5375"]],[8,10,["H727"]],[10,13,["H1285"]],[13,14,["H559"]],[14,18,["H935"]],[18,19,["H5704"]],[19,21,["H7097"]],[21,24,["H4325"]],[24,26,["H3383"]],[26,30,["H5975"]],[30,32,["H3383"]]]},{"k":5902,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,9,["H5066"]],[9,10,["H2008"]],[10,12,["H8085","(H853)"]],[12,14,["H1697"]],[14,17,["H3068"]],[17,19,["H430"]]]},{"k":5903,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H2063"]],[4,7,["H3045"]],[7,8,["H3588"]],[8,10,["H2416"]],[10,11,["H410"]],[11,13,["H7130"]],[13,22,["H3423","H3423"]],[22,24,["H4480","H6440"]],[24,25,["(H853)"]],[25,27,["H3669"]],[27,30,["H2850"]],[30,33,["H2340"]],[33,36,["H6522"]],[36,39,["H1622"]],[39,42,["H567"]],[42,45,["H2983"]]]},{"k":5904,"v":[[0,1,["H2009"]],[1,3,["H727"]],[3,6,["H1285"]],[6,9,["H113"]],[9,11,["H3605"]],[11,13,["H776"]],[13,15,["H5674"]],[15,16,["H6440"]],[16,19,["H3383"]]]},{"k":5905,"v":[[0,1,["H6258"]],[1,3,["H3947"]],[3,5,["H8147","H6240"]],[5,6,["H376"]],[6,10,["H4480","H7626"]],[10,12,["H3478"]],[12,18,["H376","H259","H376","H259","H7626"]]]},{"k":5906,"v":[[0,6,["H1961"]],[6,11,["H3709"]],[11,14,["H7272"]],[14,17,["H3548"]],[17,19,["H5375"]],[19,21,["H727"]],[21,24,["H3068"]],[24,26,["H113"]],[26,28,["H3605"]],[28,30,["H776"]],[30,32,["H5117"]],[32,35,["H4325"]],[35,37,["H3383"]],[37,40,["H4325"]],[40,42,["H3383"]],[42,46,["H3772"]],[46,49,["H4325"]],[49,52,["H3381"]],[52,54,["H4480","H4605"]],[54,58,["H5975"]],[58,60,["H259"]],[60,61,["H5067"]]]},{"k":5907,"v":[[0,5,["H1961"]],[5,8,["H5971"]],[8,9,["H5265"]],[9,12,["H4480","H168"]],[12,15,["H5674","(H853)"]],[15,16,["H3383"]],[16,19,["H3548"]],[19,20,["H5375"]],[20,22,["H727"]],[22,25,["H1285"]],[25,26,["H6440"]],[26,28,["H5971"]]]},{"k":5908,"v":[[0,5,["H5375"]],[5,7,["H727"]],[7,9,["H935"]],[9,10,["H5704"]],[10,11,["H3383"]],[11,14,["H7272"]],[14,17,["H3548"]],[17,19,["H5375"]],[19,21,["H727"]],[21,23,["H2881"]],[23,26,["H7097"]],[26,29,["H4325"]],[29,31,["H3383"]],[31,32,["H4390","H5921"]],[32,33,["H3605"]],[33,35,["H1415"]],[35,36,["H3605"]],[36,38,["H3117"]],[38,40,["H7105"]]]},{"k":5909,"v":[[0,3,["H4325"]],[3,6,["H3381"]],[6,8,["H4480","H4605"]],[8,9,["H5975"]],[9,12,["H6965"]],[12,14,["H259"]],[14,15,["H5067"]],[15,16,["H3966"]],[16,17,["H7368"]],[17,20,["H5892"]],[20,21,["H4480","H121"]],[21,22,["H834"]],[22,24,["H4480","H6654"]],[24,25,["H6891"]],[25,30,["H3381"]],[30,31,["H5921"]],[31,33,["H3220"]],[33,36,["H6160"]],[36,39,["H4417"]],[39,40,["H3220"]],[40,41,["H8552"]],[41,45,["H3772"]],[45,48,["H5971"]],[48,50,["H5674"]],[50,52,["H5048"]],[52,53,["H3405"]]]},{"k":5910,"v":[[0,3,["H3548"]],[3,5,["H5375"]],[5,7,["H727"]],[7,10,["H1285"]],[10,13,["H3068"]],[13,14,["H5975"]],[14,15,["H3559"]],[15,18,["H2724"]],[18,21,["H8432"]],[21,23,["H3383"]],[23,25,["H3605"]],[25,27,["H3478"]],[27,29,["H5674"]],[29,32,["H2724"]],[32,33,["H5704","H834"]],[33,34,["H3605"]],[34,36,["H1471"]],[36,38,["H5674"]],[38,39,["H8552"]],[39,40,["H5674","(H853)"]],[40,41,["H3383"]]]},{"k":5911,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H3605"]],[7,9,["H1471"]],[9,11,["H8552"]],[11,13,["H5674","(H853)"]],[13,14,["H3383"]],[14,17,["H3068"]],[17,18,["H559"]],[18,19,["H413"]],[19,20,["H3091"]],[20,21,["H559"]]]},{"k":5912,"v":[[0,1,["H3947"]],[1,3,["H8147","H6240"]],[3,4,["H376"]],[4,6,["H4480"]],[6,8,["H5971"]],[8,14,["H376","H259","H376","H259","H4480","H7626"]]]},{"k":5913,"v":[[0,2,["H6680"]],[2,5,["H559"]],[5,6,["H5375"]],[6,8,["H4480","H2088"]],[8,12,["H4480","H8432"]],[12,14,["H3383"]],[14,18,["H4480","H4673"]],[18,21,["H3548"]],[21,22,["H7272"]],[22,24,["H3559"]],[24,25,["H8147","H6240"]],[25,26,["H68"]],[26,32,["H5674","(H853)"]],[32,33,["H5973"]],[33,36,["H5117"]],[36,41,["H4411"]],[41,42,["H834"]],[42,45,["H3885"]],[45,47,["H3915"]]]},{"k":5914,"v":[[0,2,["H3091"]],[2,3,["H7121","H413"]],[3,5,["H8147","H6240"]],[5,6,["H376"]],[6,7,["H834"]],[7,10,["H3559"]],[10,13,["H4480","H1121"]],[13,15,["H3478"]],[15,21,["H376","H259","H376","H259","H4480","H7626"]]]},{"k":5915,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,7,["H5674"]],[7,8,["H6440"]],[8,10,["H727"]],[10,13,["H3068"]],[13,15,["H430"]],[15,16,["H413"]],[16,18,["H8432"]],[18,20,["H3383"]],[20,24,["H7311"]],[24,26,["H376"]],[26,29,["H259"]],[29,30,["H68"]],[30,31,["H5921"]],[31,33,["H7926"]],[33,37,["H4557"]],[37,40,["H7626"]],[40,43,["H1121"]],[43,45,["H3478"]]]},{"k":5916,"v":[[0,1,["H4616"]],[1,2,["H2063"]],[2,4,["H1961"]],[4,6,["H226"]],[6,7,["H7130"]],[7,10,["H3588"]],[10,12,["H1121"]],[12,13,["H7592"]],[13,19,["H4279"]],[19,20,["H559"]],[20,21,["H4100"]],[21,25,["H428"]],[25,26,["H68"]]]},{"k":5917,"v":[[0,4,["H559"]],[4,6,["H834"]],[6,8,["H4325"]],[8,10,["H3383"]],[10,13,["H3772"]],[13,14,["H4480","H6440"]],[14,16,["H727"]],[16,19,["H1285"]],[19,22,["H3068"]],[22,26,["H5674"]],[26,27,["H3383"]],[27,29,["H4325"]],[29,31,["H3383"]],[31,34,["H3772"]],[34,36,["H428"]],[36,37,["H68"]],[37,39,["H1961"]],[39,42,["H2146"]],[42,45,["H1121"]],[45,47,["H3478"]],[47,49,["H5704","H5769"]]]},{"k":5918,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,7,["H3651"]],[7,8,["H834"]],[8,9,["H3091"]],[9,10,["H6680"]],[10,13,["H5375"]],[13,14,["H8147","H6240"]],[14,15,["H68"]],[15,19,["H4480","H8432"]],[19,21,["H3383"]],[21,22,["H834"]],[22,24,["H3068"]],[24,25,["H1696"]],[25,26,["H413"]],[26,27,["H3091"]],[27,31,["H4557"]],[31,34,["H7626"]],[34,37,["H1121"]],[37,39,["H3478"]],[39,43,["H5674"]],[43,44,["H5973"]],[44,46,["H413"]],[46,51,["H4411"]],[51,55,["H5117"]],[55,56,["H8033"]]]},{"k":5919,"v":[[0,2,["H3091"]],[2,4,["H6965"]],[4,5,["H8147","H6240"]],[5,6,["H68"]],[6,9,["H8432"]],[9,11,["H3383"]],[11,14,["H8478"]],[14,17,["H7272"]],[17,20,["H3548"]],[20,22,["H5375"]],[22,24,["H727"]],[24,27,["H1285"]],[27,28,["H4673"]],[28,31,["H1961"]],[31,32,["H8033"]],[32,33,["H5704"]],[33,34,["H2088"]],[34,35,["H3117"]]]},{"k":5920,"v":[[0,3,["H3548"]],[3,5,["H5375"]],[5,7,["H727"]],[7,8,["H5975"]],[8,11,["H8432"]],[11,13,["H3383"]],[13,14,["H5704"]],[14,16,["H3605","H1697"]],[16,18,["H8552"]],[18,19,["H834"]],[19,21,["H3068"]],[21,22,["H6680","(H853)"]],[22,23,["H3091"]],[23,25,["H1696"]],[25,26,["H413"]],[26,28,["H5971"]],[28,31,["H3605"]],[31,32,["H834"]],[32,33,["H4872"]],[33,34,["H6680","(H853)"]],[34,35,["H3091"]],[35,38,["H5971"]],[38,39,["H4116"]],[39,42,["H5674"]]]},{"k":5921,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H3605"]],[7,9,["H5971"]],[9,11,["H8552"]],[11,13,["H5674"]],[13,16,["H727"]],[16,19,["H3068"]],[19,21,["H5674"]],[21,24,["H3548"]],[24,27,["H6440"]],[27,30,["H5971"]]]},{"k":5922,"v":[[0,3,["H1121"]],[3,5,["H7205"]],[5,8,["H1121"]],[8,10,["H1410"]],[10,12,["H2677"]],[12,14,["H7626"]],[14,16,["H4519"]],[16,18,["H5674"]],[18,19,["H2571"]],[19,20,["H6440"]],[20,22,["H1121"]],[22,24,["H3478"]],[24,25,["H834"]],[25,26,["H4872"]],[26,27,["H1696"]],[27,28,["H413"]],[28,29,[]]]},{"k":5923,"v":[[0,2,["H705"]],[2,3,["H505"]],[3,4,["H2502"]],[4,6,["H6635"]],[6,8,["H5674"]],[8,9,["H6440"]],[9,11,["H3068"]],[11,13,["H4421"]],[13,14,["H413"]],[14,16,["H6160"]],[16,18,["H3405"]]]},{"k":5924,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H3068"]],[5,6,["H1431","(H853)"]],[6,7,["H3091"]],[7,10,["H5869"]],[10,12,["H3605"]],[12,13,["H3478"]],[13,16,["H3372"]],[16,18,["H834"]],[18,20,["H3372","(H853)"]],[20,21,["H4872"]],[21,22,["H3605"]],[22,24,["H3117"]],[24,27,["H2416"]]]},{"k":5925,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091"]],[6,7,["H559"]]]},{"k":5926,"v":[[0,1,["H6680","(H853)"]],[1,3,["H3548"]],[3,5,["H5375"]],[5,7,["H727"]],[7,10,["H5715"]],[10,14,["H5927"]],[14,16,["H4480"]],[16,17,["H3383"]]]},{"k":5927,"v":[[0,1,["H3091"]],[1,3,["H6680","(H853)"]],[3,5,["H3548"]],[5,6,["H559"]],[6,9,["H5927"]],[9,11,["H4480"]],[11,12,["H3383"]]]},{"k":5928,"v":[[0,5,["H1961"]],[5,8,["H3548"]],[8,10,["H5375"]],[10,12,["H727"]],[12,15,["H1285"]],[15,18,["H3068"]],[18,21,["H5927"]],[21,25,["H4480","H8432"]],[25,27,["H3383"]],[27,30,["H3709"]],[30,33,["H3548"]],[33,34,["H7272"]],[34,37,["H5423"]],[37,38,["H413"]],[38,41,["H2724"]],[41,44,["H4325"]],[44,46,["H3383"]],[46,47,["H7725"]],[47,50,["H4725"]],[50,52,["H1980"]],[52,53,["H5921"]],[53,54,["H3605"]],[54,56,["H1415"]],[56,57,["H8543"]],[57,60,["H8032"]]]},{"k":5929,"v":[[0,3,["H5971"]],[3,5,["H5927"]],[5,7,["H4480"]],[7,8,["H3383"]],[8,11,["H6218"]],[11,15,["H7223"]],[15,16,["H2320"]],[16,18,["H2583"]],[18,20,["H1537"]],[20,23,["H4217"]],[23,24,["H7097"]],[24,26,["H3405"]]]},{"k":5930,"v":[[0,2,["H428"]],[2,3,["H8147","H6240"]],[3,4,["H68"]],[4,5,["H834"]],[5,7,["H3947"]],[7,9,["H4480"]],[9,10,["H3383"]],[10,12,["H3091"]],[12,13,["H6965"]],[13,15,["H1537"]]]},{"k":5931,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,9,["H559"]],[9,10,["H834"]],[10,12,["H1121"]],[12,14,["H7592","(H853)"]],[14,16,["H1"]],[16,20,["H4279"]],[20,21,["H559"]],[21,22,["H4100"]],[22,24,["H428"]],[24,25,["H68"]]]},{"k":5932,"v":[[0,4,["(H853)"]],[4,6,["H1121"]],[6,7,["H3045"]],[7,8,["H559"]],[8,9,["H3478"]],[9,11,["H5674","(H853)"]],[11,12,["H2088"]],[12,13,["H3383"]],[13,16,["H3004"]]]},{"k":5933,"v":[[0,1,["H834"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H3001","(H853)"]],[7,9,["H4325"]],[9,11,["H3383"]],[11,13,["H4480","H6440"]],[13,15,["H5704"]],[15,19,["H5674"]],[19,20,["H834"]],[20,22,["H3068"]],[22,24,["H430"]],[24,25,["H6213"]],[25,28,["H5488"]],[28,29,["H3220"]],[29,30,["H834"]],[30,33,["H3001"]],[33,35,["H4480","H6440"]],[35,37,["H5704"]],[37,41,["H5674"]]]},{"k":5934,"v":[[0,1,["H4616"]],[1,2,["H3605"]],[2,4,["H5971"]],[4,7,["H776"]],[7,9,["H3045","(H853)"]],[9,11,["H3027"]],[11,14,["H3068"]],[14,15,["H3588"]],[15,16,["H1931"]],[16,18,["H2389"]],[18,19,["H4616"]],[19,22,["H3372","(H853)"]],[22,24,["H3068"]],[24,26,["H430"]],[26,28,["H3605","H3117"]]]},{"k":5935,"v":[[0,5,["H1961"]],[5,7,["H3605"]],[7,9,["H4428"]],[9,12,["H567"]],[12,13,["H834"]],[13,17,["H5676"]],[17,19,["H3383"]],[19,20,["H3220"]],[20,22,["H3605"]],[22,24,["H4428"]],[24,27,["H3669"]],[27,28,["H834"]],[28,30,["H5921"]],[30,32,["H3220"]],[32,33,["H8085","(H853)"]],[33,34,["H834"]],[34,36,["H3068"]],[36,39,["H3001","(H853)"]],[39,41,["H4325"]],[41,43,["H3383"]],[43,45,["H4480","H6440"]],[45,47,["H1121"]],[47,49,["H3478"]],[49,50,["H5704"]],[50,54,["H5674"]],[54,57,["H3824"]],[57,58,["H4549"]],[58,59,["H3808"]],[59,60,["H1961"]],[60,62,["H7307"]],[62,66,["H5750"]],[66,67,["H4480","H6440"]],[67,70,["H1121"]],[70,72,["H3478"]]]},{"k":5936,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,5,["H3068"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3091"]],[8,9,["H6213"]],[9,11,["H6864"]],[11,12,["H2719"]],[12,14,["H4135"]],[14,15,["H7725","(H853)"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,21,["H8145"]],[21,22,[]]]},{"k":5937,"v":[[0,2,["H3091"]],[2,3,["H6213"]],[3,5,["H6864"]],[5,6,["H2719"]],[6,8,["H4135","(H853)"]],[8,10,["H1121"]],[10,12,["H3478"]],[12,13,["H413"]],[13,15,["H1389"]],[15,18,["H6190"]]]},{"k":5938,"v":[[0,2,["H2088"]],[2,5,["H1697"]],[5,6,["H834"]],[6,7,["H3091"]],[7,9,["H4135"]],[9,10,["H3605"]],[10,12,["H5971"]],[12,15,["H3318"]],[15,17,["H4480","H4714"]],[17,20,["H2145"]],[20,22,["H3605"]],[22,24,["H376"]],[24,26,["H4421"]],[26,27,["H4191"]],[27,30,["H4057"]],[30,33,["H1870"]],[33,37,["H3318"]],[37,39,["H4480","H4714"]]]},{"k":5939,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H5971"]],[4,7,["H3318"]],[7,8,["H1961"]],[8,9,["H4135"]],[9,11,["H3605"]],[11,13,["H5971"]],[13,16,["H3209"]],[16,19,["H4057"]],[19,22,["H1870"]],[22,26,["H3318"]],[26,29,["H4480","H4714"]],[29,33,["H3808"]],[33,34,["H4135"]]]},{"k":5940,"v":[[0,1,["H3588"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,6,["H1980"]],[6,7,["H705"]],[7,8,["H8141"]],[8,11,["H4057"]],[11,12,["H5704"]],[12,13,["H3605"]],[13,15,["H1471"]],[15,18,["H376"]],[18,20,["H4421"]],[20,23,["H3318"]],[23,25,["H4480","H4714"]],[25,27,["H8552"]],[27,28,["H834"]],[28,30,["H8085"]],[30,31,["H3808"]],[31,33,["H6963"]],[33,36,["H3068"]],[36,38,["H834"]],[38,40,["H3068"]],[40,41,["H7650"]],[41,45,["H1115"]],[45,46,["H7200"]],[46,47,["(H853)"]],[47,49,["H776"]],[49,50,["H834"]],[50,52,["H3068"]],[52,53,["H7650"]],[53,56,["H1"]],[56,60,["H5414"]],[60,63,["H776"]],[63,65,["H2100"]],[65,67,["H2461"]],[67,69,["H1706"]]]},{"k":5941,"v":[[0,3,["H1121"]],[3,7,["H6965"]],[7,10,["H8478"]],[10,12,["H3091"]],[12,13,["H4135"]],[13,14,["H3588"]],[14,16,["H1961"]],[16,17,["H6189"]],[17,18,["H3588"]],[18,21,["H3808"]],[21,22,["H4135"]],[22,26,["H1870"]]]},{"k":5942,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,9,["H8552"]],[9,10,["H4135"]],[10,11,["H3605"]],[11,13,["H1471"]],[13,16,["H3427"]],[16,19,["H8478"]],[19,22,["H4264"]],[22,23,["H5704"]],[23,26,["H2421"]]]},{"k":5943,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091"]],[6,8,["H3117"]],[8,12,["H1556","(H853)"]],[12,14,["H2781"]],[14,16,["H4714"]],[16,18,["H4480","H5921"]],[18,22,["H8034"]],[22,25,["H4725"]],[25,27,["H7121"]],[27,28,["H1537"]],[28,29,["H5704"]],[29,30,["H2088"]],[30,31,["H3117"]]]},{"k":5944,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H2583"]],[6,8,["H1537"]],[8,10,["H6213","(H853)"]],[10,12,["H6453"]],[12,15,["H702","H6240"]],[15,16,["H3117"]],[16,19,["H2320"]],[19,21,["H6153"]],[21,24,["H6160"]],[24,26,["H3405"]]]},{"k":5945,"v":[[0,4,["H398"]],[4,8,["H4480","H5669"]],[8,11,["H776"]],[11,15,["H4480","H4283"]],[15,17,["H6453"]],[17,19,["H4682"]],[19,21,["H7033"]],[21,25,["H6106","H2088"]],[25,26,["H3117"]]]},{"k":5946,"v":[[0,3,["H4478"]],[3,4,["H7673"]],[4,7,["H4480","H4283"]],[7,11,["H398"]],[11,15,["H4480","H5669"]],[15,18,["H776"]],[18,19,["H3808"]],[19,20,["H1961"]],[20,22,["H1121"]],[22,24,["H3478"]],[24,25,["H4478"]],[25,27,["H5750"]],[27,31,["H398"]],[31,34,["H4480","H8393"]],[34,37,["H776"]],[37,39,["H3667"]],[39,40,["H1931"]],[40,41,["H8141"]]]},{"k":5947,"v":[[0,5,["H1961"]],[5,7,["H3091"]],[7,8,["H1961"]],[8,10,["H3405"]],[10,14,["H5375"]],[14,16,["H5869"]],[16,18,["H7200"]],[18,20,["H2009"]],[20,22,["H5975"]],[22,24,["H376"]],[24,26,["H5048"]],[26,30,["H2719"]],[30,31,["H8025"]],[31,34,["H3027"]],[34,36,["H3091"]],[36,37,["H1980"]],[37,39,["H413"]],[39,41,["H559"]],[41,45,["H859"]],[45,48,["H518"]],[48,51,["H6862"]]]},{"k":5948,"v":[[0,3,["H559"]],[3,4,["H3808"]],[4,5,["H3588"]],[5,7,["H8269"]],[7,10,["H6635"]],[10,13,["H3068"]],[13,15,["H589"]],[15,16,["H6258"]],[16,17,["H935"]],[17,19,["H3091"]],[19,20,["H5307"]],[20,21,["H413"]],[21,23,["H6440"]],[23,26,["H776"]],[26,29,["H7812"]],[29,31,["H559"]],[31,34,["H4100"]],[34,35,["H1696"]],[35,37,["H113"]],[37,38,["H413"]],[38,40,["H5650"]]]},{"k":5949,"v":[[0,3,["H8269"]],[3,6,["H3068"]],[6,7,["H6635"]],[7,8,["H559"]],[8,9,["H413"]],[9,10,["H3091"]],[10,11,["H5394"]],[11,13,["H5275"]],[13,15,["H4480","H5921"]],[15,17,["H7272"]],[17,18,["H3588"]],[18,20,["H4725"]],[20,21,["H834","H5921"]],[21,22,["H859"]],[22,23,["H5975"]],[23,25,["H6944"]],[25,27,["H3091"]],[27,28,["H6213"]],[28,29,["H3651"]]]},{"k":5950,"v":[[0,2,["H3405"]],[2,6,["H5462","H5462"]],[6,7,["H4480","H6440"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,13,["H369"]],[13,15,["H3318"]],[15,17,["H369"]],[17,19,["H935"]]]},{"k":5951,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091"]],[6,7,["H7200"]],[7,10,["H5414"]],[10,13,["H3027","(H853)"]],[13,14,["H3405"]],[14,17,["H4428"]],[17,21,["H1368"]],[21,24,["H2428"]]]},{"k":5952,"v":[[0,4,["H5437","(H853)"]],[4,6,["H5892"]],[6,7,["H3605"]],[7,9,["H376"]],[9,11,["H4421"]],[11,15,["H5362","(H853)"]],[15,17,["H5892"]],[17,18,["H259","H6471"]],[18,19,["H3541"]],[19,22,["H6213"]],[22,23,["H8337"]],[23,24,["H3117"]]]},{"k":5953,"v":[[0,2,["H7651"]],[2,3,["H3548"]],[3,5,["H5375"]],[5,6,["H6440"]],[6,8,["H727"]],[8,9,["H7651"]],[9,10,["H7782"]],[10,13,["H3104"]],[13,16,["H7637"]],[16,17,["H3117"]],[17,20,["H5437","(H853)"]],[20,22,["H5892"]],[22,23,["H7651"]],[23,24,["H6471"]],[24,27,["H3548"]],[27,29,["H8628"]],[29,32,["H7782"]]]},{"k":5954,"v":[[0,6,["H1961"]],[6,12,["H4900"]],[12,13,["H4900"]],[13,16,["H3104"]],[16,17,["H7161"]],[17,21,["H8085","(H853)"]],[21,23,["H6963"]],[23,26,["H7782"]],[26,27,["H3605"]],[27,29,["H5971"]],[29,31,["H7321"]],[31,34,["H1419"]],[34,35,["H8643"]],[35,38,["H2346"]],[38,41,["H5892"]],[41,44,["H5307"]],[44,45,["H8478"]],[45,48,["H5971"]],[48,51,["H5927"]],[51,53,["H376"]],[53,55,["H5048"]],[55,56,[]]]},{"k":5955,"v":[[0,2,["H3091"]],[2,4,["H1121"]],[4,6,["H5126"]],[6,7,["H7121","H413"]],[7,9,["H3548"]],[9,11,["H559"]],[11,12,["H413"]],[12,15,["H5375","(H853)"]],[15,17,["H727"]],[17,20,["H1285"]],[20,22,["H5375"]],[22,23,["H7651"]],[23,24,["H3548"]],[24,25,["H5375"]],[25,26,["H7651"]],[26,27,["H7782"]],[27,30,["H3104"]],[30,31,["H6440"]],[31,33,["H727"]],[33,36,["H3068"]]]},{"k":5956,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,8,["H5674"]],[8,10,["H5437","(H853)"]],[10,12,["H5892"]],[12,18,["H2502"]],[18,20,["H5674"]],[20,21,["H6440"]],[21,23,["H727"]],[23,26,["H3068"]]]},{"k":5957,"v":[[0,5,["H1961"]],[5,7,["H3091"]],[7,9,["H559"]],[9,10,["H413"]],[10,12,["H5971"]],[12,15,["H7651"]],[15,16,["H3548"]],[16,17,["H5375"]],[17,19,["H7651"]],[19,20,["H7782"]],[20,23,["H3104"]],[23,25,["H5674"]],[25,26,["H6440"]],[26,28,["H3068"]],[28,30,["H8628"]],[30,33,["H7782"]],[33,36,["H727"]],[36,39,["H1285"]],[39,42,["H3068"]],[42,43,["H1980","H310"]],[43,44,[]]]},{"k":5958,"v":[[0,4,["H2502"]],[4,5,["H1980"]],[5,6,["H6440"]],[6,8,["H3548"]],[8,10,["H8628"]],[10,13,["H7782"]],[13,16,["H622"]],[16,17,["H1980"]],[17,18,["H310"]],[18,20,["H727"]],[20,24,["H1980"]],[24,26,["H8628"]],[26,29,["H7782"]]]},{"k":5959,"v":[[0,2,["H3091"]],[2,4,["H6680"]],[4,6,["H5971"]],[6,7,["H559"]],[7,10,["H3808"]],[10,11,["H7321"]],[11,12,["H3808"]],[12,15,["H8085"]],[15,16,["H854"]],[16,18,["H6963"]],[18,19,["H3808"]],[19,22,["H1697"]],[22,24,["H3318"]],[24,27,["H4480","H6310"]],[27,28,["H5704"]],[28,30,["H3117"]],[30,32,["H559"]],[32,34,["H7321"]],[34,38,["H7321"]]]},{"k":5960,"v":[[0,3,["H727"]],[3,6,["H3068"]],[6,7,["H5437","(H853)"]],[7,9,["H5892"]],[9,11,["H5362"]],[11,13,["H259","H6471"]],[13,16,["H935"]],[16,19,["H4264"]],[19,21,["H3885"]],[21,24,["H4264"]]]},{"k":5961,"v":[[0,2,["H3091"]],[2,4,["H7925"]],[4,7,["H1242"]],[7,10,["H3548"]],[10,12,["H5375","(H853)"]],[12,14,["H727"]],[14,17,["H3068"]]]},{"k":5962,"v":[[0,2,["H7651"]],[2,3,["H3548"]],[3,4,["H5375"]],[4,5,["H7651"]],[5,6,["H7782"]],[6,9,["H3104"]],[9,10,["H6440"]],[10,12,["H727"]],[12,15,["H3068"]],[15,18,["H1980","H1980"]],[18,20,["H8628"]],[20,23,["H7782"]],[23,27,["H2502"]],[27,28,["H1980"]],[28,29,["H6440"]],[29,33,["H622"]],[33,34,["H1980"]],[34,35,["H310"]],[35,37,["H727"]],[37,40,["H3068"]],[40,44,["H1980"]],[44,46,["H8628"]],[46,49,["H7782"]]]},{"k":5963,"v":[[0,3,["H8145"]],[3,4,["H3117"]],[4,6,["H5437","(H853)"]],[6,8,["H5892"]],[8,9,["H259","H6471"]],[9,11,["H7725"]],[11,14,["H4264"]],[14,15,["H3541"]],[15,17,["H6213"]],[17,18,["H8337"]],[18,19,["H3117"]]]},{"k":5964,"v":[[0,5,["H1961"]],[5,8,["H7637"]],[8,9,["H3117"]],[9,13,["H7925"]],[13,16,["H5927"]],[16,19,["H7837"]],[19,21,["H5437","(H853)"]],[21,23,["H5892"]],[23,26,["H2088"]],[26,27,["H4941"]],[27,28,["H7651"]],[28,29,["H6471"]],[29,30,["H7535"]],[30,32,["H2088"]],[32,33,["H3117"]],[33,35,["H5437","(H853)"]],[35,37,["H5892"]],[37,38,["H7651"]],[38,39,["H6471"]]]},{"k":5965,"v":[[0,5,["H1961"]],[5,8,["H7637"]],[8,9,["H6471"]],[9,12,["H3548"]],[12,13,["H8628"]],[13,16,["H7782"]],[16,17,["H3091"]],[17,18,["H559"]],[18,19,["H413"]],[19,21,["H5971"]],[21,22,["H7321"]],[22,23,["H3588"]],[23,25,["H3068"]],[25,27,["H5414"]],[27,28,["(H853)"]],[28,30,["H5892"]]]},{"k":5966,"v":[[0,3,["H5892"]],[3,5,["H1961"]],[5,6,["H2764"]],[6,8,["H1931"]],[8,10,["H3605"]],[10,11,["H834"]],[11,16,["H3068"]],[16,17,["H7535"]],[17,18,["H7343"]],[18,20,["H2181"]],[20,22,["H2421"]],[22,23,["H1931"]],[23,25,["H3605"]],[25,26,["H834"]],[26,28,["H854"]],[28,32,["H1004"]],[32,33,["H3588"]],[33,35,["H2244","(H853)"]],[35,37,["H4397"]],[37,38,["H834"]],[38,40,["H7971"]]]},{"k":5967,"v":[[0,2,["H859"]],[2,5,["H7535"]],[5,6,["H8104"]],[6,8,["H4480"]],[8,11,["H2764"]],[11,12,["H6435"]],[12,16,["H2763"]],[16,19,["H3947"]],[19,20,["H4480"]],[20,23,["H2764"]],[23,25,["H7760","(H853)"]],[25,27,["H4264"]],[27,29,["H3478"]],[29,31,["H2764"]],[31,33,["H5916"]],[33,34,[]]]},{"k":5968,"v":[[0,2,["H3605"]],[2,4,["H3701"]],[4,6,["H2091"]],[6,8,["H3627"]],[8,10,["H5178"]],[10,12,["H1270"]],[12,14,["H6944"]],[14,17,["H3068"]],[17,20,["H935"]],[20,23,["H214"]],[23,26,["H3068"]]]},{"k":5969,"v":[[0,3,["H5971"]],[3,4,["H7321"]],[4,8,["H8628"]],[8,11,["H7782"]],[11,16,["H1961"]],[16,19,["H5971"]],[19,20,["H8085","(H853)"]],[20,22,["H6963"]],[22,25,["H7782"]],[25,28,["H5971"]],[28,29,["H7321"]],[29,32,["H1419"]],[32,33,["H8643"]],[33,36,["H2346"]],[36,38,["H5307"]],[38,39,["H8478"]],[39,43,["H5971"]],[43,45,["H5927"]],[45,48,["H5892"]],[48,50,["H376"]],[50,52,["H5048"]],[52,56,["H3920","(H853)"]],[56,58,["H5892"]]]},{"k":5970,"v":[[0,4,["H2763","(H853)"]],[4,5,["H3605"]],[5,6,["H834"]],[6,10,["H5892"]],[10,12,["H4480","H376"]],[12,14,["H802"]],[14,15,["H4480","H5288"]],[15,17,["H2205"]],[17,19,["H7794"]],[19,21,["H7716"]],[21,23,["H2543"]],[23,26,["H6310"]],[26,29,["H2719"]]]},{"k":5971,"v":[[0,2,["H3091"]],[2,4,["H559"]],[4,7,["H8147"]],[7,8,["H376"]],[8,12,["H7270","(H853)"]],[12,14,["H776"]],[14,16,["H935"]],[16,18,["H802","H2181"]],[18,19,["H1004"]],[19,22,["H3318"]],[22,23,["H4480","H8033","(H853)"]],[23,25,["H802"]],[25,27,["H3605"]],[27,28,["H834"]],[28,31,["H834"]],[31,33,["H7650"]],[33,35,[]]]},{"k":5972,"v":[[0,4,["H5288"]],[4,7,["H7270"]],[7,9,["H935"]],[9,12,["H3318","(H853)"]],[12,13,["H7343"]],[13,16,["H1"]],[16,19,["H517"]],[19,22,["H251"]],[22,24,["H3605"]],[24,25,["H834"]],[25,31,["H3318"]],[31,32,["H3605"]],[32,34,["H4940"]],[34,36,["H5117"]],[36,38,["H4480","H2351"]],[38,40,["H4264"]],[40,42,["H3478"]]]},{"k":5973,"v":[[0,3,["H8313"]],[3,5,["H5892"]],[5,7,["H784"]],[7,9,["H3605"]],[9,10,["H834"]],[10,13,["H7535"]],[13,15,["H3701"]],[15,18,["H2091"]],[18,21,["H3627"]],[21,23,["H5178"]],[23,26,["H1270"]],[26,28,["H5414"]],[28,31,["H214"]],[31,34,["H1004"]],[34,37,["H3068"]]]},{"k":5974,"v":[[0,2,["H3091"]],[2,3,["H2421"]],[3,4,["H7343"]],[4,6,["H2181"]],[6,10,["H1"]],[10,11,["H1004"]],[11,13,["H3605"]],[13,14,["H834"]],[14,19,["H3427"]],[19,20,["H7130"]],[20,21,["H3478"]],[21,23,["H5704"]],[23,24,["H2088"]],[24,25,["H3117"]],[25,26,["H3588"]],[26,28,["H2244","(H853)"]],[28,30,["H4397"]],[30,31,["H834"]],[31,32,["H3091"]],[32,33,["H7971"]],[33,36,["H7270","(H853)"]],[36,37,["H3405"]]]},{"k":5975,"v":[[0,2,["H3091"]],[2,3,["H7650"]],[3,6,["H1931"]],[6,7,["H6256"]],[7,8,["H559"]],[8,9,["H779"]],[9,12,["H376"]],[12,13,["H6440"]],[13,15,["H3068"]],[15,16,["H834"]],[16,18,["H6965"]],[18,20,["H1129","(H853)"]],[20,21,["H2063"]],[21,22,["H5892","(H853)"]],[22,23,["H3405"]],[23,28,["H3245"]],[28,32,["H1060"]],[32,36,["H6810"]],[36,41,["H5324"]],[41,43,["H1817"]],[43,45,[]]]},{"k":5976,"v":[[0,3,["H3068"]],[3,4,["H1961"]],[4,5,["H854"]],[5,6,["H3091"]],[6,9,["H8089"]],[9,10,["H1961"]],[10,13,["H3605"]],[13,15,["H776"]]]},{"k":5977,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H4603"]],[6,8,["H4604"]],[8,12,["H2764"]],[12,14,["H5912"]],[14,16,["H1121"]],[16,18,["H3756"]],[18,20,["H1121"]],[20,22,["H2067"]],[22,24,["H1121"]],[24,26,["H2226"]],[26,29,["H4294"]],[29,31,["H3063"]],[31,32,["H3947"]],[32,33,["H4480"]],[33,36,["H2764"]],[36,39,["H639"]],[39,42,["H3068"]],[42,44,["H2734"]],[44,47,["H1121"]],[47,49,["H3478"]]]},{"k":5978,"v":[[0,2,["H3091"]],[2,3,["H7971"]],[3,4,["H376"]],[4,6,["H4480","H3405"]],[6,8,["H5857"]],[8,9,["H834"]],[9,11,["H5973"]],[11,12,["H1007"]],[12,16,["H4480","H6924"]],[16,18,["H1008"]],[18,20,["H559"]],[20,21,["H413"]],[21,23,["H559"]],[23,25,["H5927"]],[25,27,["H7270","(H853)"]],[27,29,["H776"]],[29,32,["H376"]],[32,34,["H5927"]],[34,36,["H7270","(H853)"]],[36,37,["H5857"]]]},{"k":5979,"v":[[0,3,["H7725"]],[3,4,["H413"]],[4,5,["H3091"]],[5,7,["H559"]],[7,8,["H413"]],[8,11,["H408"]],[11,12,["H3605"]],[12,14,["H5971"]],[14,16,["H5927"]],[16,20,["H505"]],[20,21,["H176"]],[21,22,["H7969"]],[22,23,["H505"]],[23,24,["H376"]],[24,26,["H5927"]],[26,28,["H5221","(H853)"]],[28,29,["H5857"]],[29,32,["H408","(H853)"]],[32,33,["H3605"]],[33,35,["H5971"]],[35,37,["H3021"]],[37,38,["H8033"]],[38,39,["H3588"]],[39,40,["H1992"]],[40,43,["H4592"]]]},{"k":5980,"v":[[0,4,["H5927"]],[4,5,["H8033"]],[5,6,["H4480"]],[6,8,["H5971"]],[8,10,["H7969"]],[10,11,["H505"]],[11,12,["H376"]],[12,15,["H5127"]],[15,16,["H6440"]],[16,18,["H376"]],[18,20,["H5857"]]]},{"k":5981,"v":[[0,3,["H376"]],[3,5,["H5857"]],[5,6,["H5221"]],[6,7,["H4480"]],[7,10,["H7970"]],[10,12,["H8337"]],[12,13,["H376"]],[13,16,["H7291"]],[16,19,["H6440"]],[19,21,["H8179"]],[21,23,["H5704"]],[23,24,["H7671"]],[24,26,["H5221"]],[26,31,["H4174"]],[31,34,["H3824"]],[34,37,["H5971"]],[37,38,["H4549"]],[38,40,["H1961"]],[40,42,["H4325"]]]},{"k":5982,"v":[[0,2,["H3091"]],[2,3,["H7167"]],[3,5,["H8071"]],[5,7,["H5307"]],[7,10,["H776"]],[10,11,["H5921"]],[11,13,["H6440"]],[13,14,["H6440"]],[14,16,["H727"]],[16,19,["H3068"]],[19,20,["H5704"]],[20,22,["H6153"]],[22,23,["H1931"]],[23,26,["H2205"]],[26,28,["H3478"]],[28,30,["H5927"]],[30,31,["H6083"]],[31,32,["H5921"]],[32,34,["H7218"]]]},{"k":5983,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H162"]],[4,6,["H136"]],[6,7,["H3069"]],[7,8,["H4100"]],[8,13,["H5674","H5674","(H853)"]],[13,14,["H2088"]],[14,15,["H5971"]],[15,16,["H5674","(H853)"]],[16,17,["H3383"]],[17,19,["H5414"]],[19,23,["H3027"]],[23,26,["H567"]],[26,28,["H6"]],[28,32,["H3863"]],[32,36,["H2974"]],[36,38,["H3427"]],[38,42,["H5676"]],[42,43,["H3383"]]]},{"k":5984,"v":[[0,1,["H994"]],[1,2,["H136"]],[2,3,["H4100"]],[3,6,["H559"]],[6,7,["H310","H834"]],[7,8,["H3478"]],[8,9,["H2015"]],[9,11,["H6203"]],[11,12,["H6440"]],[12,14,["H341"]]]},{"k":5985,"v":[[0,3,["H3669"]],[3,5,["H3605"]],[5,7,["H3427"]],[7,10,["H776"]],[10,12,["H8085"]],[12,19,["H5437","H5921"]],[19,22,["H3772","(H853)"]],[22,24,["H8034"]],[24,25,["H4480"]],[25,27,["H776"]],[27,29,["H4100"]],[29,32,["H6213"]],[32,35,["H1419"]],[35,36,["H8034"]]]},{"k":5986,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091"]],[6,9,["H6965"]],[9,10,["H4100"]],[10,11,["H5307"]],[11,12,["H859"]],[12,13,["H2088"]],[13,14,["H5921"]],[14,16,["H6440"]]]},{"k":5987,"v":[[0,1,["H3478"]],[1,3,["H2398"]],[3,7,["H1571"]],[7,8,["H5674","(H853)"]],[8,10,["H1285"]],[10,11,["H834"]],[11,13,["H6680"]],[13,18,["H1571"]],[18,19,["H3947"]],[19,20,["H4480"]],[20,23,["H2764"]],[23,26,["H1571"]],[26,27,["H1589"]],[27,29,["H3584"]],[29,30,["H1571"]],[30,34,["H7760"]],[34,36,["H1571"]],[36,40,["H3627"]]]},{"k":5988,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H3201"]],[6,7,["H3808"]],[7,8,["H6965"]],[8,9,["H6440"]],[9,11,["H341"]],[11,13,["H6437"]],[13,15,["H6203"]],[15,16,["H6440"]],[16,18,["H341"]],[18,19,["H3588"]],[19,21,["H1961"]],[21,22,["H2764"]],[22,23,["H3808"]],[23,26,["H1961"]],[26,27,["H5973"]],[27,30,["H3254"]],[30,31,["H518","H3808"]],[31,33,["H8045"]],[33,35,["H2764"]],[35,37,["H4480","H7130"]],[37,38,[]]]},{"k":5989,"v":[[0,1,["H6965"]],[1,2,["H6942","(H853)"]],[2,4,["H5971"]],[4,6,["H559"]],[6,8,["H6942"]],[8,11,["H4279"]],[11,12,["H3588"]],[12,13,["H3541"]],[13,14,["H559"]],[14,16,["H3068"]],[16,17,["H430"]],[17,19,["H3478"]],[19,24,["H2764"]],[24,27,["H7130"]],[27,31,["H3478"]],[31,33,["H3201"]],[33,34,["H3808"]],[34,35,["H6965"]],[35,36,["H6440"]],[36,38,["H341"]],[38,39,["H5704"]],[39,42,["H5493"]],[42,45,["H2764"]],[45,47,["H4480","H7130"]],[47,48,[]]]},{"k":5990,"v":[[0,3,["H1242"]],[3,8,["H7126"]],[8,12,["H7626"]],[12,16,["H1961"]],[16,19,["H7626"]],[19,20,["H834"]],[20,22,["H3068"]],[22,23,["H3920"]],[23,25,["H7126"]],[25,29,["H4940"]],[29,33,["H4940"]],[33,34,["H834"]],[34,36,["H3068"]],[36,38,["H3920"]],[38,40,["H7126"]],[40,42,["H1004"]],[42,45,["H1004"]],[45,46,["H834"]],[46,48,["H3068"]],[48,50,["H3920"]],[50,52,["H7126"]],[52,55,["H1397"]]]},{"k":5991,"v":[[0,4,["H1961"]],[4,9,["H3920"]],[9,13,["H2764"]],[13,16,["H8313"]],[16,18,["H784"]],[18,21,["H3605"]],[21,22,["H834"]],[22,25,["H3588"]],[25,28,["H5674","(H853)"]],[28,30,["H1285"]],[30,33,["H3068"]],[33,35,["H3588"]],[35,38,["H6213"]],[38,39,["H5039"]],[39,41,["H3478"]]]},{"k":5992,"v":[[0,2,["H3091"]],[2,5,["H7925"]],[5,8,["H1242"]],[8,10,["H7126","(H853)"]],[10,11,["H3478"]],[11,14,["H7626"]],[14,17,["H7626"]],[17,19,["H3063"]],[19,21,["H3920"]]]},{"k":5993,"v":[[0,3,["H7126","(H853)"]],[3,5,["H4940"]],[5,7,["H3063"]],[7,10,["H3920","(H853)"]],[10,12,["H4940"]],[12,15,["H2227"]],[15,18,["H7126","(H853)"]],[18,20,["H4940"]],[20,23,["H2227"]],[23,26,["H1397"]],[26,28,["H2067"]],[28,30,["H3920"]]]},{"k":5994,"v":[[0,3,["H7126","(H853)"]],[3,5,["H1004"]],[5,8,["H1397"]],[8,10,["H5912"]],[10,12,["H1121"]],[12,14,["H3756"]],[14,16,["H1121"]],[16,18,["H2067"]],[18,20,["H1121"]],[20,22,["H2226"]],[22,25,["H4294"]],[25,27,["H3063"]],[27,29,["H3920"]]]},{"k":5995,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H5912"]],[5,7,["H1121"]],[7,8,["H7760"]],[8,11,["H4994"]],[11,12,["H3519"]],[12,15,["H3068"]],[15,16,["H430"]],[16,18,["H3478"]],[18,20,["H5414"]],[20,21,["H8426"]],[21,25,["H5046"]],[25,27,["H4994"]],[27,28,["H4100"]],[28,31,["H6213"]],[31,32,["H3582"]],[32,34,["H408"]],[34,35,["H4480"]],[35,36,[]]]},{"k":5996,"v":[[0,2,["H5912"]],[2,3,["H6030","(H853)"]],[3,4,["H3091"]],[4,6,["H559"]],[6,7,["H546"]],[7,8,["H595"]],[8,10,["H2398"]],[10,13,["H3068"]],[13,14,["H430"]],[14,16,["H3478"]],[16,18,["H2063"]],[18,20,["H2063"]],[20,23,["H6213"]]]},{"k":5997,"v":[[0,3,["H7200"]],[3,6,["H7998"]],[6,7,["H259"]],[7,8,["H2896"]],[8,9,["H8152"]],[9,10,["H155"]],[10,13,["H3967"]],[13,14,["H8255"]],[14,16,["H3701"]],[16,18,["H259"]],[18,19,["H3956"]],[19,21,["H2091"]],[21,23,["H2572"]],[23,24,["H8255"]],[24,25,["H4948"]],[25,28,["H2530"]],[28,31,["H3947"]],[31,34,["H2009"]],[34,37,["H2934"]],[37,40,["H776"]],[40,43,["H8432"]],[43,46,["H168"]],[46,49,["H3701"]],[49,50,["H8478"]],[50,51,[]]]},{"k":5998,"v":[[0,2,["H3091"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,7,["H7323"]],[7,10,["H168"]],[10,12,["H2009"]],[12,15,["H2934"]],[15,18,["H168"]],[18,21,["H3701"]],[21,22,["H8478"]],[22,23,[]]]},{"k":5999,"v":[[0,3,["H3947"]],[3,8,["H4480","H8432"]],[8,11,["H168"]],[11,13,["H935"]],[13,15,["H413"]],[15,16,["H3091"]],[16,18,["H413"]],[18,19,["H3605"]],[19,21,["H1121"]],[21,23,["H3478"]],[23,27,["H3332"]],[27,28,["H6440"]],[28,30,["H3068"]]]},{"k":6000,"v":[[0,2,["H3091"]],[2,4,["H3605"]],[4,5,["H3478"]],[5,6,["H5973"]],[6,8,["H3947","(H853)"]],[8,9,["H5912"]],[9,11,["H1121"]],[11,13,["H2226"]],[13,16,["H3701"]],[16,19,["H155"]],[19,22,["H3956"]],[22,24,["H2091"]],[24,27,["H1121"]],[27,30,["H1323"]],[30,33,["H7794"]],[33,36,["H2543"]],[36,39,["H6629"]],[39,42,["H168"]],[42,44,["H3605"]],[44,45,["H834"]],[45,50,["H5927"]],[50,54,["H6010"]],[54,56,["H5911"]]]},{"k":6001,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H4100"]],[4,7,["H5916"]],[7,10,["H3068"]],[10,12,["H5916"]],[12,14,["H2088"]],[14,15,["H3117"]],[15,17,["H3605"]],[17,18,["H3478"]],[18,19,["H5619"]],[19,22,["H68"]],[22,24,["H8313"]],[24,27,["H784"]],[27,31,["H7275"]],[31,34,["H68"]]]},{"k":6002,"v":[[0,3,["H6965"]],[3,4,["H5921"]],[4,7,["H1419"]],[7,8,["H1530"]],[8,10,["H68"]],[10,11,["H5704"]],[11,12,["H2088"]],[12,13,["H3117"]],[13,16,["H3068"]],[16,17,["H7725"]],[17,20,["H4480","H2740"]],[20,23,["H639"]],[23,24,["H5921","H3651"]],[24,26,["H8034"]],[26,28,["H1931"]],[28,29,["H4725"]],[29,31,["H7121"]],[31,33,["H6010"]],[33,35,["H5911"]],[35,36,["H5704"]],[36,37,["H2088"]],[37,38,["H3117"]]]},{"k":6003,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091"]],[6,7,["H3372"]],[7,8,["H408"]],[8,9,["H408"]],[9,12,["H2865"]],[12,13,["H3947","(H853)"]],[13,14,["H3605"]],[14,16,["H5971"]],[16,18,["H4421"]],[18,19,["H5973"]],[19,22,["H6965"]],[22,24,["H5927"]],[24,26,["H5857"]],[26,27,["H7200"]],[27,30,["H5414"]],[30,33,["H3027","(H853)"]],[33,35,["H4428"]],[35,37,["H5857"]],[37,40,["H5971"]],[40,43,["H5892"]],[43,46,["H776"]]]},{"k":6004,"v":[[0,4,["H6213"]],[4,6,["H5857"]],[6,9,["H4428"]],[9,10,["H834"]],[10,12,["H6213"]],[12,14,["H3405"]],[14,17,["H4428"]],[17,18,["H7535"]],[18,20,["H7998"]],[20,24,["H929"]],[24,31,["H962"]],[31,34,["H7760"]],[34,37,["H693"]],[37,40,["H5892"]],[40,41,["H4480","H310"]],[41,42,[]]]},{"k":6005,"v":[[0,2,["H3091"]],[2,3,["H6965"]],[3,5,["H3605"]],[5,7,["H5971"]],[7,9,["H4421"]],[9,12,["H5927"]],[12,14,["H5857"]],[14,16,["H3091"]],[16,18,["H977"]],[18,19,["H7970"]],[19,20,["H505"]],[20,21,["H1368"]],[21,22,["H376"]],[22,24,["H2428"]],[24,28,["H7971"]],[28,30,["H3915"]]]},{"k":6006,"v":[[0,3,["H6680"]],[3,5,["H559"]],[5,6,["H7200"]],[6,7,["H859"]],[7,11,["H693"]],[11,14,["H5892"]],[14,16,["H4480","H310"]],[16,18,["H5892"]],[18,19,["H7368"]],[19,20,["H408"]],[20,21,["H3966"]],[21,23,["H4480"]],[23,25,["H5892"]],[25,27,["H1961"]],[27,29,["H3605"]],[29,30,["H3559"]]]},{"k":6007,"v":[[0,2,["H589"]],[2,4,["H3605"]],[4,6,["H5971"]],[6,7,["H834"]],[7,9,["H854"]],[9,12,["H7126"]],[12,13,["H413"]],[13,15,["H5892"]],[15,21,["H1961"]],[21,22,["H3588"]],[22,25,["H3318"]],[25,26,["H7125"]],[26,28,["H834"]],[28,31,["H7223"]],[31,35,["H5127"]],[35,36,["H6440"]],[36,37,[]]]},{"k":6008,"v":[[0,5,["H3318"]],[5,6,["H310"]],[6,8,["H5704"]],[8,11,["H5423"]],[11,13,["H4480"]],[13,15,["H5892"]],[15,16,["H3588"]],[16,19,["H559"]],[19,21,["H5127"]],[21,22,["H6440"]],[22,24,["H834"]],[24,27,["H7223"]],[27,31,["H5127"]],[31,32,["H6440"]],[32,33,[]]]},{"k":6009,"v":[[0,2,["H859"]],[2,5,["H6965"]],[5,8,["H4480","H693"]],[8,11,["H3423","(H853)"]],[11,13,["H5892"]],[13,16,["H3068"]],[16,18,["H430"]],[18,20,["H5414"]],[20,24,["H3027"]]]},{"k":6010,"v":[[0,4,["H1961"]],[4,8,["H8610","(H853)"]],[8,10,["H5892"]],[10,14,["H3341","(H853)"]],[14,16,["H5892"]],[16,18,["H784"]],[18,22,["H1697"]],[22,25,["H3068"]],[25,28,["H6213"]],[28,29,["H7200"]],[29,32,["H6680"]],[32,33,[]]]},{"k":6011,"v":[[0,1,["H3091"]],[1,5,["H7971"]],[5,8,["H1980"]],[8,9,["H413"]],[9,12,["H3993"]],[12,14,["H3427"]],[14,15,["H996"]],[15,16,["H1008"]],[16,18,["H5857"]],[18,22,["H4480","H3220"]],[22,24,["H5857"]],[24,26,["H3091"]],[26,27,["H3885"]],[27,28,["H1931"]],[28,29,["H3915"]],[29,30,["H8432"]],[30,32,["H5971"]]]},{"k":6012,"v":[[0,2,["H3091"]],[2,5,["H7925"]],[5,8,["H1242"]],[8,10,["H6485","(H853)"]],[10,12,["H5971"]],[12,15,["H5927"]],[15,16,["H1931"]],[16,19,["H2205"]],[19,21,["H3478"]],[21,22,["H6440"]],[22,24,["H5971"]],[24,26,["H5857"]]]},{"k":6013,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,9,["H4421"]],[9,10,["H834"]],[10,12,["H854"]],[12,15,["H5927"]],[15,18,["H5066"]],[18,20,["H935"]],[20,21,["H5048"]],[21,23,["H5892"]],[23,25,["H2583"]],[25,29,["H4480","H6828"]],[29,31,["H5857"]],[31,36,["H1516"]],[36,37,["H996"]],[37,40,["H5857"]]]},{"k":6014,"v":[[0,3,["H3947"]],[3,5,["H2568"]],[5,6,["H505"]],[6,7,["H376"]],[7,9,["H7760"]],[9,14,["H693"]],[14,15,["H996"]],[15,16,["H1008"]],[16,18,["H5857"]],[18,22,["H4480","H3220"]],[22,25,["H5892"]]]},{"k":6015,"v":[[0,5,["H7760"]],[5,7,["H5971"]],[7,8,["(H853)"]],[8,9,["H3605"]],[9,11,["H4264"]],[11,12,["H834"]],[12,16,["H4480","H6828"]],[16,19,["H5892"]],[19,24,["H6119"]],[24,27,["H4480","H3220"]],[27,30,["H5892"]],[30,31,["H3091"]],[31,32,["H1980"]],[32,33,["H1931"]],[33,34,["H3915"]],[34,37,["H8432"]],[37,40,["H6010"]]]},{"k":6016,"v":[[0,5,["H1961"]],[5,8,["H4428"]],[8,10,["H5857"]],[10,11,["H7200"]],[11,15,["H4116"]],[15,19,["H7925"]],[19,22,["H376"]],[22,25,["H5892"]],[25,27,["H3318"]],[27,28,["H7125"]],[28,29,["H3478"]],[29,31,["H4421"]],[31,32,["H1931"]],[32,34,["H3605"]],[34,36,["H5971"]],[36,40,["H4150"]],[40,41,["H6440"]],[41,43,["H6160"]],[43,45,["H1931"]],[45,46,["H3045"]],[46,47,["H3808"]],[47,48,["H3588"]],[48,53,["H693"]],[53,56,["H4480","H310"]],[56,58,["H5892"]]]},{"k":6017,"v":[[0,2,["H3091"]],[2,4,["H3605"]],[4,5,["H3478"]],[5,11,["H5060"]],[11,12,["H6440"]],[12,15,["H5127"]],[15,18,["H1870"]],[18,21,["H4057"]]]},{"k":6018,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H834"]],[5,8,["H5857"]],[8,11,["H2199"]],[11,13,["H7291"]],[13,14,["H310"]],[14,18,["H7291"]],[18,19,["H310"]],[19,20,["H3091"]],[20,24,["H5423"]],[24,25,["H4480"]],[25,27,["H5892"]]]},{"k":6019,"v":[[0,4,["H3808"]],[4,6,["H376"]],[6,7,["H7604"]],[7,9,["H5857"]],[9,11,["H1008"]],[11,12,["H834"]],[12,15,["H3318","H3808"]],[15,16,["H310"]],[16,17,["H3478"]],[17,20,["H5800","(H853)"]],[20,22,["H5892"]],[22,23,["H6605"]],[23,25,["H7291"]],[25,26,["H310"]],[26,27,["H3478"]]]},{"k":6020,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091"]],[6,8,["H5186"]],[8,10,["H3591"]],[10,11,["H834"]],[11,15,["H3027"]],[15,16,["H413"]],[16,17,["H5857"]],[17,18,["H3588"]],[18,21,["H5414"]],[21,25,["H3027"]],[25,27,["H3091"]],[27,29,["H5186"]],[29,31,["H3591"]],[31,32,["H834"]],[32,37,["H3027"]],[37,38,["H413"]],[38,40,["H5892"]]]},{"k":6021,"v":[[0,3,["H693"]],[3,4,["H6965"]],[4,5,["H4120"]],[5,9,["H4480","H4725"]],[9,12,["H7323"]],[12,19,["H5186"]],[19,21,["H3027"]],[21,24,["H935"]],[24,27,["H5892"]],[27,29,["H3920"]],[29,32,["H4116"]],[32,34,["H3341","(H853)"]],[34,36,["H5892"]],[36,38,["H784"]]]},{"k":6022,"v":[[0,4,["H376"]],[4,6,["H5857"]],[6,7,["H6437"]],[7,8,["H310"]],[8,11,["H7200"]],[11,13,["H2009"]],[13,15,["H6227"]],[15,18,["H5892"]],[18,20,["H5927"]],[20,22,["H8064"]],[22,25,["H1961"]],[25,26,["H3808"]],[26,27,["H3027"]],[27,29,["H5127"]],[29,31,["H2008"]],[31,34,["H2008"]],[34,37,["H5971"]],[37,39,["H5127"]],[39,42,["H4057"]],[42,44,["H2015"]],[44,45,["H413"]],[45,47,["H7291"]]]},{"k":6023,"v":[[0,3,["H3091"]],[3,5,["H3605"]],[5,6,["H3478"]],[6,7,["H7200"]],[7,8,["H3588"]],[8,10,["H693"]],[10,12,["H3920","(H853)"]],[12,14,["H5892"]],[14,16,["H3588"]],[16,18,["H6227"]],[18,21,["H5892"]],[21,22,["H5927"]],[22,26,["H7725"]],[26,28,["H5221","(H853)"]],[28,30,["H376"]],[30,32,["H5857"]]]},{"k":6024,"v":[[0,3,["H428"]],[3,5,["H3318"]],[5,6,["H4480"]],[6,8,["H5892"]],[8,9,["H7125"]],[9,13,["H1961"]],[13,16,["H8432"]],[16,18,["H3478"]],[18,19,["H428"]],[19,22,["H4480","H2088"]],[22,24,["H428"]],[24,27,["H4480","H2088"]],[27,30,["H5221"]],[30,32,["H5704"]],[32,36,["H1115"]],[36,39,["H7604"]],[39,41,["H6412"]]]},{"k":6025,"v":[[0,3,["H4428"]],[3,5,["H5857"]],[5,7,["H8610"]],[7,8,["H2416"]],[8,10,["H7126"]],[10,12,["H413"]],[12,13,["H3091"]]]},{"k":6026,"v":[[0,5,["H1961"]],[5,7,["H3478"]],[7,11,["H3615"]],[11,13,["H2026","(H853)"]],[13,14,["H3605"]],[14,16,["H3427"]],[16,18,["H5857"]],[18,21,["H7704"]],[21,24,["H4057"]],[24,25,["H834"]],[25,27,["H7291"]],[27,33,["H3605"]],[33,34,["H5307"]],[34,37,["H6310"]],[37,40,["H2719"]],[40,41,["H5704"]],[41,44,["H8552"]],[44,46,["H3605"]],[46,48,["H3478"]],[48,49,["H7725"]],[49,51,["H5857"]],[51,53,["H5221"]],[53,57,["H6310"]],[57,60,["H2719"]]]},{"k":6027,"v":[[0,4,["H1961"]],[4,6,["H3605"]],[6,8,["H5307"]],[8,9,["H1931"]],[9,10,["H3117"]],[10,13,["H4480","H376"]],[13,15,["H802"]],[15,17,["H8147","H6240"]],[17,18,["H505"]],[18,20,["H3605"]],[20,22,["H376"]],[22,24,["H5857"]]]},{"k":6028,"v":[[0,2,["H3091"]],[2,3,["H7725"]],[3,4,["H3808"]],[4,6,["H3027"]],[6,8,["H834"]],[8,11,["H5186"]],[11,13,["H3591"]],[13,14,["H5704","H834"]],[14,18,["H2763","(H853)"]],[18,19,["H3605"]],[19,21,["H3427"]],[21,23,["H5857"]]]},{"k":6029,"v":[[0,1,["H7535"]],[1,3,["H929"]],[3,6,["H7998"]],[6,8,["H1931"]],[8,9,["H5892"]],[9,10,["H3478"]],[10,14,["H962"]],[14,20,["H1697"]],[20,23,["H3068"]],[23,24,["H834"]],[24,26,["H6680","(H853)"]],[26,27,["H3091"]]]},{"k":6030,"v":[[0,2,["H3091"]],[2,3,["H8313","(H853)"]],[3,4,["H5857"]],[4,6,["H7760"]],[6,9,["H8510"]],[9,11,["H5769"]],[11,14,["H8077"]],[14,15,["H5704"]],[15,16,["H2088"]],[16,17,["H3117"]]]},{"k":6031,"v":[[0,3,["H4428"]],[3,5,["H5857"]],[5,7,["H8518"]],[7,8,["H5921"]],[8,10,["H6086"]],[10,11,["H5704"]],[11,12,["H6256","H6153"]],[12,18,["H8121"]],[18,20,["H935"]],[20,21,["H3091"]],[21,22,["H6680"]],[22,29,["H3381","(H853)","H5038"]],[29,30,["H4480"]],[30,32,["H6086"]],[32,34,["H7993"]],[34,36,["H413"]],[36,38,["H6607"]],[38,41,["H8179"]],[41,44,["H5892"]],[44,46,["H6965"]],[46,47,["H5921"]],[47,49,["H1419"]],[49,50,["H1530"]],[50,52,["H68"]],[52,55,["H5704"]],[55,56,["H2088"]],[56,57,["H3117"]]]},{"k":6032,"v":[[0,1,["H227"]],[1,2,["H3091"]],[2,3,["H1129"]],[3,5,["H4196"]],[5,8,["H3068"]],[8,9,["H430"]],[9,11,["H3478"]],[11,13,["H2022"]],[13,14,["H5858"]]]},{"k":6033,"v":[[0,1,["H834"]],[1,2,["H4872"]],[2,4,["H5650"]],[4,7,["H3068"]],[7,8,["H6680","(H853)"]],[8,10,["H1121"]],[10,12,["H3478"]],[12,16,["H3789"]],[16,19,["H5612"]],[19,22,["H8451"]],[22,24,["H4872"]],[24,26,["H4196"]],[26,28,["H8003"]],[28,29,["H68"]],[29,30,["H5921"]],[30,31,["H834"]],[31,32,["H3808"]],[32,36,["H5130"]],[36,38,["H1270"]],[38,41,["H5927"]],[41,42,["H5921"]],[42,44,["H5930"]],[44,47,["H3068"]],[47,49,["H2076"]],[49,51,["H8002"]]]},{"k":6034,"v":[[0,3,["H3789"]],[3,4,["H8033"]],[4,5,["H5921"]],[5,7,["H68","(H853)"]],[7,9,["H4932"]],[9,12,["H8451"]],[12,14,["H4872"]],[14,15,["H834"]],[15,17,["H3789"]],[17,20,["H6440"]],[20,23,["H1121"]],[23,25,["H3478"]]]},{"k":6035,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,6,["H2205"]],[6,8,["H7860"]],[8,11,["H8199"]],[11,12,["H5975"]],[12,15,["H4480","H2088"]],[15,17,["H727"]],[17,21,["H4480","H2088"]],[21,22,["H5048"]],[22,24,["H3548"]],[24,26,["H3881"]],[26,28,["H5375"]],[28,30,["H727"]],[30,33,["H1285"]],[33,36,["H3068"]],[36,40,["H1616"]],[40,47,["H249"]],[47,48,["H2677"]],[48,51,["H413"]],[51,52,["H4136"]],[52,53,["H2022"]],[53,54,["H1630"]],[54,56,["H2677"]],[56,59,["H413"]],[59,60,["H4136"]],[60,61,["H2022"]],[61,62,["H5858"]],[62,63,["H834"]],[63,64,["H4872"]],[64,66,["H5650"]],[66,69,["H3068"]],[69,71,["H6680"]],[71,72,["H7223"]],[72,76,["H1288","(H853)"]],[76,78,["H5971"]],[78,80,["H3478"]]]},{"k":6036,"v":[[0,2,["H310","H3651"]],[2,4,["H7121","(H853)"]],[4,5,["H3605"]],[5,7,["H1697"]],[7,10,["H8451"]],[10,12,["H1293"]],[12,14,["H7045"]],[14,17,["H3605"]],[17,20,["H3789"]],[20,23,["H5612"]],[23,26,["H8451"]]]},{"k":6037,"v":[[0,2,["H1961"]],[2,3,["H3808"]],[3,5,["H1697"]],[5,7,["H4480","H3605"]],[7,8,["H834"]],[8,9,["H4872"]],[9,10,["H6680"]],[10,11,["H834"]],[11,12,["H3091"]],[12,13,["H7121"]],[13,14,["H3808"]],[14,15,["H5048"]],[15,16,["H3605"]],[16,18,["H6951"]],[18,20,["H3478"]],[20,23,["H802"]],[23,26,["H2945"]],[26,30,["H1616"]],[30,33,["H1980"]],[33,34,["H7130"]],[34,35,[]]]},{"k":6038,"v":[[0,5,["H1961"]],[5,7,["H3605"]],[7,9,["H4428"]],[9,10,["H834"]],[10,14,["H5676"]],[14,15,["H3383"]],[15,18,["H2022"]],[18,22,["H8219"]],[22,25,["H3605"]],[25,27,["H2348"]],[27,30,["H1419"]],[30,31,["H3220"]],[31,32,["H413"]],[32,33,["H4136"]],[33,34,["H3844"]],[34,36,["H2850"]],[36,39,["H567"]],[39,41,["H3669"]],[41,43,["H6522"]],[43,45,["H2340"]],[45,48,["H2983"]],[48,49,["H8085"]],[49,50,[]]]},{"k":6039,"v":[[0,4,["H6908"]],[4,5,["H3162"]],[5,7,["H3898"]],[7,8,["H5973"]],[8,9,["H3091"]],[9,11,["H5973"]],[11,12,["H3478"]],[12,14,["H259"]],[14,15,["H6310"]]]},{"k":6040,"v":[[0,4,["H3427"]],[4,6,["H1391"]],[6,7,["H8085","(H853)"]],[7,8,["H834"]],[8,9,["H3091"]],[9,11,["H6213"]],[11,13,["H3405"]],[13,16,["H5857"]]]},{"k":6041,"v":[[0,1,["H1992"]],[1,3,["H6213"]],[3,4,["H6195"]],[4,6,["H1980"]],[6,14,["H6737"]],[14,16,["H3947"]],[16,17,["H1087"]],[17,18,["H8242"]],[18,21,["H2543"]],[21,23,["H3196"]],[23,24,["H4997"]],[24,25,["H1087"]],[25,27,["H1234"]],[27,30,["H6887"]]]},{"k":6042,"v":[[0,2,["H1087"]],[2,3,["H5275"]],[3,5,["H2921"]],[5,8,["H7272"]],[8,10,["H1087"]],[10,11,["H8008"]],[11,12,["H5921"]],[12,15,["H3605"]],[15,17,["H3899"]],[17,20,["H6718"]],[20,22,["H3001"]],[22,24,["H5350"]]]},{"k":6043,"v":[[0,3,["H1980"]],[3,4,["H413"]],[4,5,["H3091"]],[5,6,["H413"]],[6,8,["H4264"]],[8,10,["H1537"]],[10,12,["H559"]],[12,13,["H413"]],[13,16,["H413"]],[16,18,["H376"]],[18,20,["H3478"]],[20,23,["H935"]],[23,27,["H4480","H776","H7350"]],[27,28,["H6258"]],[28,30,["H3772"]],[30,33,["H1285"]],[33,35,[]]]},{"k":6044,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H2340"]],[9,10,["H194"]],[10,11,["H859"]],[11,12,["H3427"]],[12,13,["H7130"]],[13,16,["H349"]],[16,19,["H3772"]],[19,21,["H1285"]],[21,23,[]]]},{"k":6045,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H3091"]],[5,6,["H587"]],[6,9,["H5650"]],[9,11,["H3091"]],[11,12,["H559"]],[12,13,["H413"]],[13,15,["H4310"]],[15,17,["H859"]],[17,20,["H4480","H370"]],[20,21,["H935"]],[21,22,[]]]},{"k":6046,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,10,["H4480","H776","H3966","H7350"]],[10,12,["H5650"]],[12,14,["H935"]],[14,18,["H8034"]],[18,21,["H3068"]],[21,23,["H430"]],[23,24,["H3588"]],[24,27,["H8085"]],[27,29,["H8089"]],[29,33,["H3605"]],[33,34,["H834"]],[34,36,["H6213"]],[36,38,["H4714"]]]},{"k":6047,"v":[[0,2,["H3605"]],[2,3,["H834"]],[3,5,["H6213"]],[5,8,["H8147"]],[8,9,["H4428"]],[9,12,["H567"]],[12,13,["H834"]],[13,15,["H5676"]],[15,16,["H3383"]],[16,18,["H5511"]],[18,19,["H4428"]],[19,21,["H2809"]],[21,24,["H5747"]],[24,25,["H4428"]],[25,27,["H1316"]],[27,28,["H834"]],[28,31,["H6252"]]]},{"k":6048,"v":[[0,3,["H2205"]],[3,5,["H3605"]],[5,7,["H3427"]],[7,10,["H776"]],[10,11,["H559"]],[11,12,["H413"]],[12,14,["H559"]],[14,15,["H3947"]],[15,16,["H6720"]],[16,18,["H3027"]],[18,21,["H1870"]],[21,23,["H1980"]],[23,25,["H7125"]],[25,28,["H559"]],[28,29,["H413"]],[29,31,["H587"]],[31,34,["H5650"]],[34,36,["H6258"]],[36,37,["H3772"]],[37,40,["H1285"]],[40,42,[]]]},{"k":6049,"v":[[0,1,["H2088"]],[1,3,["H3899"]],[3,6,["H2525"]],[6,9,["H6679"]],[9,13,["H4480","H1004"]],[13,16,["H3117"]],[16,19,["H3318"]],[19,21,["H1980"]],[21,22,["H413"]],[22,25,["H6258"]],[25,26,["H2009"]],[26,29,["H3001"]],[29,32,["H1961"]],[32,33,["H5350"]]]},{"k":6050,"v":[[0,2,["H428"]],[2,3,["H4997"]],[3,5,["H3196"]],[5,6,["H834"]],[6,8,["H4390"]],[8,10,["H2319"]],[10,12,["H2009"]],[12,15,["H1234"]],[15,17,["H428"]],[17,19,["H8008"]],[19,22,["H5275"]],[22,25,["H1086"]],[25,30,["H3966"]],[30,31,["H4480","H7230"]],[31,32,["H1870"]]]},{"k":6051,"v":[[0,3,["H376"]],[3,4,["H3947"]],[4,7,["H4480","H6718"]],[7,9,["H7592"]],[9,10,["H3808"]],[10,14,["H6310"]],[14,17,["H3068"]]]},{"k":6052,"v":[[0,2,["H3091"]],[2,3,["H6213"]],[3,4,["H7965"]],[4,8,["H6213"]],[8,10,["H1285"]],[10,16,["H2421"]],[16,19,["H5387"]],[19,22,["H5712"]],[22,23,["H7650"]],[23,25,[]]]},{"k":6053,"v":[[0,5,["H1961"]],[5,8,["H4480","H7097"]],[8,10,["H7969"]],[10,11,["H3117"]],[11,12,["H310","H834"]],[12,15,["H3772"]],[15,17,["H1285"]],[17,22,["H8085"]],[22,23,["H3588"]],[23,24,["H1992"]],[24,26,["H413"]],[26,27,["H7138"]],[27,30,["H1992"]],[30,31,["H3427"]],[31,32,["H7130"]],[32,33,[]]]},{"k":6054,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5265"]],[6,8,["H935"]],[8,9,["H413"]],[9,11,["H5892"]],[11,14,["H7992"]],[14,15,["H3117"]],[15,18,["H5892"]],[18,20,["H1391"]],[20,22,["H3716"]],[22,24,["H881"]],[24,26,["H7157"]]]},{"k":6055,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5221"]],[6,8,["H3808"]],[8,9,["H3588"]],[9,11,["H5387"]],[11,14,["H5712"]],[14,16,["H7650"]],[16,21,["H3068"]],[21,22,["H430"]],[22,24,["H3478"]],[24,26,["H3605"]],[26,28,["H5712"]],[28,29,["H3885"]],[29,30,["H5921"]],[30,32,["H5387"]]]},{"k":6056,"v":[[0,2,["H3605"]],[2,4,["H5387"]],[4,5,["H559"]],[5,6,["H413"]],[6,7,["H3605"]],[7,9,["H5712"]],[9,10,["H587"]],[10,12,["H7650"]],[12,17,["H3068"]],[17,18,["H430"]],[18,20,["H3478"]],[20,21,["H6258"]],[21,24,["H3201"]],[24,25,["H3808"]],[25,26,["H5060"]],[26,27,[]]]},{"k":6057,"v":[[0,1,["H2063"]],[1,4,["H6213"]],[4,12,["H2421","(H853)"]],[12,13,["H3808"]],[13,14,["H7110"]],[14,15,["H1961"]],[15,16,["H5921"]],[16,19,["H5921"]],[19,21,["H7621"]],[21,22,["H834"]],[22,24,["H7650"]],[24,26,[]]]},{"k":6058,"v":[[0,3,["H5387"]],[3,4,["H559"]],[4,5,["H413"]],[5,9,["H2421"]],[9,13,["H1961"]],[13,14,["H2404"]],[14,16,["H6086"]],[16,18,["H7579"]],[18,20,["H4325"]],[20,22,["H3605"]],[22,24,["H5712"]],[24,25,["H834"]],[25,27,["H5387"]],[27,29,["H1696"]],[29,30,[]]]},{"k":6059,"v":[[0,2,["H3091"]],[2,3,["H7121"]],[3,8,["H1696"]],[8,9,["H413"]],[9,11,["H559"]],[11,12,["H4100"]],[12,15,["H7411"]],[15,17,["H559"]],[17,18,["H587"]],[18,20,["H3966"]],[20,21,["H7350"]],[21,22,["H4480"]],[22,25,["H859"]],[25,26,["H3427"]],[26,27,["H7130"]],[27,28,[]]]},{"k":6060,"v":[[0,1,["H6258"]],[1,3,["H859"]],[3,5,["H779"]],[5,9,["H3808"]],[9,10,["H4480"]],[10,13,["H3772"]],[13,16,["H5650"]],[16,18,["H2404"]],[18,20,["H6086"]],[20,22,["H7579"]],[22,24,["H4325"]],[24,27,["H1004"]],[27,30,["H430"]]]},{"k":6061,"v":[[0,3,["H6030","(H853)"]],[3,4,["H3091"]],[4,6,["H559"]],[6,7,["H3588"]],[7,11,["H5046","H5046"]],[11,13,["H5650","(H853)"]],[13,15,["H834"]],[15,17,["H3068"]],[17,19,["H430"]],[19,20,["H6680"]],[20,22,["H5650","(H853)"]],[22,23,["H4872"]],[23,25,["H5414"]],[25,27,["H3605"]],[27,29,["H776"]],[29,32,["H8045","(H853)"]],[32,33,["H3605"]],[33,35,["H3427"]],[35,38,["H776"]],[38,40,["H4480","H6440"]],[40,45,["H3966"]],[45,46,["H3372"]],[46,49,["H5315"]],[49,51,["H4480","H6440"]],[51,55,["H6213","(H853)"]],[55,56,["H2088"]],[56,57,["H1697"]]]},{"k":6062,"v":[[0,2,["H6258"]],[2,3,["H2009"]],[3,8,["H3027"]],[8,12,["H2896"]],[12,14,["H3477"]],[14,16,["H5869"]],[16,18,["H6213"]],[18,21,["H6213"]]]},{"k":6063,"v":[[0,2,["H3651"]],[2,3,["H6213"]],[3,8,["H5337"]],[8,13,["H4480","H3027"]],[13,16,["H1121"]],[16,18,["H3478"]],[18,21,["H2026"]],[21,23,["H3808"]]]},{"k":6064,"v":[[0,2,["H3091"]],[2,3,["H5414"]],[3,5,["H1931"]],[5,6,["H3117"]],[6,7,["H2404"]],[7,9,["H6086"]],[9,11,["H7579"]],[11,13,["H4325"]],[13,16,["H5712"]],[16,20,["H4196"]],[20,23,["H3068"]],[23,25,["H5704"]],[25,26,["H2088"]],[26,27,["H3117"]],[27,28,["H413"]],[28,30,["H4725"]],[30,31,["H834"]],[31,34,["H977"]]]},{"k":6065,"v":[[0,5,["H1961"]],[5,7,["H139"]],[7,8,["H4428"]],[8,10,["H3389"]],[10,12,["H8085"]],[12,13,["H3588"]],[13,14,["H3091"]],[14,16,["H3920","(H853)"]],[16,17,["H5857"]],[17,21,["H2763"]],[21,23,["H834"]],[23,26,["H6213"]],[26,28,["H3405"]],[28,31,["H4428"]],[31,32,["H3651"]],[32,35,["H6213"]],[35,37,["H5857"]],[37,40,["H4428"]],[40,42,["H3588"]],[42,44,["H3427"]],[44,46,["H1391"]],[46,49,["H7999"]],[49,50,["H854"]],[50,51,["H3478"]],[51,53,["H1961"]],[53,54,["H7130"]],[54,55,[]]]},{"k":6066,"v":[[0,3,["H3372"]],[3,4,["H3966"]],[4,5,["H3588"]],[5,6,["H1391"]],[6,9,["H1419"]],[9,10,["H5892"]],[10,12,["H259"]],[12,15,["H4467"]],[15,16,["H5892"]],[16,18,["H3588"]],[18,19,["H1931"]],[19,21,["H1419"]],[21,22,["H4480"]],[22,23,["H5857"]],[23,25,["H3605"]],[25,27,["H376"]],[27,30,["H1368"]]]},{"k":6067,"v":[[0,2,["H139"]],[2,3,["H4428"]],[3,5,["H3389"]],[5,6,["H7971"]],[6,7,["H413"]],[7,8,["H1944"]],[8,9,["H4428"]],[9,11,["H2275"]],[11,13,["H413"]],[13,14,["H6502"]],[14,15,["H4428"]],[15,17,["H3412"]],[17,19,["H413"]],[19,20,["H3309"]],[20,21,["H4428"]],[21,23,["H3923"]],[23,25,["H413"]],[25,26,["H1688"]],[26,27,["H4428"]],[27,29,["H5700"]],[29,30,["H559"]]]},{"k":6068,"v":[[0,2,["H5927"]],[2,3,["H413"]],[3,6,["H5826"]],[6,11,["H5221","(H853)"]],[11,12,["H1391"]],[12,13,["H3588"]],[13,17,["H7999"]],[17,18,["H854"]],[18,19,["H3091"]],[19,21,["H854"]],[21,23,["H1121"]],[23,25,["H3478"]]]},{"k":6069,"v":[[0,3,["H2568"]],[3,4,["H4428"]],[4,7,["H567"]],[7,9,["H4428"]],[9,11,["H3389"]],[11,13,["H4428"]],[13,15,["H2275"]],[15,17,["H4428"]],[17,19,["H3412"]],[19,21,["H4428"]],[21,23,["H3923"]],[23,25,["H4428"]],[25,27,["H5700"]],[27,30,["H622"]],[30,33,["H5927"]],[33,34,["H1992"]],[34,36,["H3605"]],[36,38,["H4264"]],[38,40,["H2583"]],[40,41,["H5921"]],[41,42,["H1391"]],[42,45,["H3898"]],[45,46,["H5921"]],[46,47,[]]]},{"k":6070,"v":[[0,3,["H376"]],[3,5,["H1391"]],[5,6,["H7971"]],[6,7,["H413"]],[7,8,["H3091"]],[8,9,["H413"]],[9,11,["H4264"]],[11,13,["H1537"]],[13,14,["H559"]],[14,15,["H7503"]],[15,16,["H408"]],[16,18,["H3027"]],[18,21,["H4480","H5650"]],[21,23,["H5927"]],[23,24,["H413"]],[24,26,["H4120"]],[26,28,["H3467"]],[28,31,["H5826"]],[31,33,["H3588"]],[33,34,["H3605"]],[34,36,["H4428"]],[36,39,["H567"]],[39,41,["H3427"]],[41,44,["H2022"]],[44,47,["H6908"]],[47,48,["H413"]],[48,49,[]]]},{"k":6071,"v":[[0,2,["H3091"]],[2,3,["H5927"]],[3,4,["H4480"]],[4,5,["H1537"]],[5,6,["H1931"]],[6,8,["H3605"]],[8,10,["H5971"]],[10,12,["H4421"]],[12,13,["H5973"]],[13,16,["H3605"]],[16,19,["H1368"]],[19,21,["H2428"]]]},{"k":6072,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091"]],[6,7,["H3372"]],[7,9,["H408"]],[9,10,["H3588"]],[10,13,["H5414"]],[13,17,["H3027"]],[17,20,["H3808"]],[20,22,["H376"]],[22,23,["H4480"]],[23,25,["H5975"]],[25,26,["H6440"]],[26,27,[]]]},{"k":6073,"v":[[0,1,["H3091"]],[1,3,["H935"]],[3,4,["H413"]],[4,6,["H6597"]],[6,9,["H5927"]],[9,10,["H4480"]],[10,11,["H1537"]],[11,12,["H3605"]],[12,13,["H3915"]]]},{"k":6074,"v":[[0,3,["H3068"]],[3,4,["H2000"]],[4,6,["H6440"]],[6,7,["H3478"]],[7,9,["H5221"]],[9,13,["H1419"]],[13,14,["H4347"]],[14,16,["H1391"]],[16,18,["H7291"]],[18,22,["H1870"]],[22,25,["H4608"]],[25,27,["H1032"]],[27,29,["H5221"]],[29,31,["H5704"]],[31,32,["H5825"]],[32,34,["H5704"]],[34,35,["H4719"]]]},{"k":6075,"v":[[0,5,["H1961"]],[5,8,["H5127"]],[8,10,["H4480","H6440"]],[10,11,["H3478"]],[11,17,["H4174"]],[17,19,["H1032"]],[19,22,["H3068"]],[22,24,["H7993"]],[24,25,["H1419"]],[25,26,["H68"]],[26,27,["H4480"]],[27,28,["H8064"]],[28,29,["H5921"]],[29,31,["H5704"]],[31,32,["H5825"]],[32,35,["H4191"]],[35,38,["H7227"]],[38,39,["H834"]],[39,40,["H4191"]],[40,42,["H1259","H68"]],[42,45,["H4480","H834"]],[45,47,["H1121"]],[47,49,["H3478"]],[49,50,["H2026"]],[50,53,["H2719"]]]},{"k":6076,"v":[[0,1,["H227"]],[1,2,["H1696"]],[2,3,["H3091"]],[3,6,["H3068"]],[6,9,["H3117"]],[9,12,["H3068"]],[12,14,["H5414","(H853)"]],[14,16,["H567"]],[16,17,["H6440"]],[17,19,["H1121"]],[19,21,["H3478"]],[21,24,["H559"]],[24,27,["H5869"]],[27,29,["H3478"]],[29,30,["H8121"]],[30,33,["H1826"]],[33,35,["H1391"]],[35,38,["H3394"]],[38,41,["H6010"]],[41,43,["H357"]]]},{"k":6077,"v":[[0,3,["H8121"]],[3,5,["H1826"]],[5,8,["H3394"]],[8,9,["H5975"]],[9,10,["H5704"]],[10,12,["H1471"]],[12,14,["H5358"]],[14,18,["H341"]],[18,20,["H3808"]],[20,21,["H1931"]],[21,22,["H3789"]],[22,23,["H5921"]],[23,25,["H5612"]],[25,27,["H3477"]],[27,30,["H8121"]],[30,31,["H5975"]],[31,35,["H2677"]],[35,37,["H8064"]],[37,39,["H213"]],[39,40,["H3808"]],[40,43,["H935"]],[43,46,["H8549"]],[46,47,["H3117"]]]},{"k":6078,"v":[[0,3,["H1961"]],[3,4,["H3808"]],[4,5,["H3117"]],[5,7,["H1931"]],[7,8,["H6440"]],[8,11,["H310"]],[11,15,["H3068"]],[15,16,["H8085"]],[16,19,["H6963"]],[19,22,["H376"]],[22,23,["H3588"]],[23,25,["H3068"]],[25,26,["H3898"]],[26,28,["H3478"]]]},{"k":6079,"v":[[0,2,["H3091"]],[2,3,["H7725"]],[3,5,["H3605"]],[5,6,["H3478"]],[6,7,["H5973"]],[7,9,["H413"]],[9,11,["H4264"]],[11,13,["H1537"]]]},{"k":6080,"v":[[0,2,["H428"]],[2,3,["H2568"]],[3,4,["H4428"]],[4,5,["H5127"]],[5,8,["H2244"]],[8,11,["H4631"]],[11,13,["H4719"]]]},{"k":6081,"v":[[0,4,["H5046"]],[4,5,["H3091"]],[5,6,["H559"]],[6,8,["H2568"]],[8,9,["H4428"]],[9,11,["H4672"]],[11,12,["H2244"]],[12,15,["H4631"]],[15,17,["H4719"]]]},{"k":6082,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H1556"]],[4,5,["H1419"]],[5,6,["H68"]],[6,7,["H413"]],[7,9,["H6310"]],[9,12,["H4631"]],[12,14,["H6485"]],[14,15,["H376"]],[15,16,["H5921"]],[16,20,["H8104"]],[20,21,[]]]},{"k":6083,"v":[[0,2,["H5975"]],[2,3,["H859"]],[3,4,["H408"]],[4,6,["H7291"]],[6,7,["H310"]],[7,9,["H341"]],[9,13,["H2179"]],[13,16,["H5414"]],[16,18,["H408"]],[18,20,["H935"]],[20,21,["H413"]],[21,23,["H5892"]],[23,24,["H3588"]],[24,26,["H3068"]],[26,28,["H430"]],[28,30,["H5414"]],[30,34,["H3027"]]]},{"k":6084,"v":[[0,5,["H1961"]],[5,7,["H3091"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,16,["H3615"]],[16,18,["H5221"]],[18,22,["H3966"]],[22,23,["H1419"]],[23,24,["H4347"]],[24,25,["H5704"]],[25,28,["H8552"]],[28,31,["H8300"]],[31,33,["H8277"]],[33,34,["H4480"]],[34,36,["H935"]],[36,37,["H413"]],[37,38,["H4013"]],[38,39,["H5892"]]]},{"k":6085,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H7725"]],[5,6,["H413"]],[6,8,["H4264"]],[8,9,["H413"]],[9,10,["H3091"]],[10,12,["H4719"]],[12,14,["H7965"]],[14,15,["H3808"]],[15,16,["H2782","(H853)"]],[16,18,["H3956"]],[18,20,["H376"]],[20,23,["H1121"]],[23,25,["H3478"]]]},{"k":6086,"v":[[0,2,["H559"]],[2,3,["H3091"]],[3,4,["H6605","(H853)"]],[4,6,["H6310"]],[6,9,["H4631"]],[9,12,["H3318","(H853)"]],[12,13,["H428"]],[13,14,["H2568"]],[14,15,["H4428"]],[15,16,["H413"]],[16,19,["H4480"]],[19,21,["H4631"]]]},{"k":6087,"v":[[0,3,["H6213"]],[3,4,["H3651"]],[4,7,["H3318","(H853)"]],[7,8,["H428"]],[8,9,["H2568"]],[9,10,["H4428"]],[10,11,["H413"]],[11,14,["H4480"]],[14,16,["H4631","(H853)"]],[16,18,["H4428"]],[18,20,["H3389","(H853)"]],[20,22,["H4428"]],[22,24,["H2275","(H853)"]],[24,26,["H4428"]],[26,28,["H3412","(H853)"]],[28,30,["H4428"]],[30,32,["H3923"]],[32,33,["(H853)"]],[33,35,["H4428"]],[35,37,["H5700"]]]},{"k":6088,"v":[[0,5,["H1961"]],[5,9,["H3318","(H853)"]],[9,10,["H428"]],[10,11,["H4428"]],[11,12,["H413"]],[12,13,["H3091"]],[13,15,["H3091"]],[15,16,["H7121"]],[16,17,["H413"]],[17,18,["H3605"]],[18,20,["H376"]],[20,22,["H3478"]],[22,24,["H559"]],[24,25,["H413"]],[25,27,["H7101"]],[27,30,["H376"]],[30,32,["H4421"]],[32,34,["H1980"]],[34,35,["H854"]],[35,38,["H7126"]],[38,39,["H7760","(H853)"]],[39,41,["H7272"]],[41,42,["H5921"]],[42,44,["H6677"]],[44,46,["H428"]],[46,47,["H4428"]],[47,51,["H7126"]],[51,53,["H7760","(H853)"]],[53,55,["H7272"]],[55,56,["H5921"]],[56,58,["H6677"]],[58,60,[]]]},{"k":6089,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3372"]],[6,7,["H408"]],[7,8,["H408"]],[8,10,["H2865"]],[10,12,["H2388"]],[12,16,["H553"]],[16,17,["H3588"]],[17,18,["H3602"]],[18,21,["H3068"]],[21,22,["H6213"]],[22,24,["H3605"]],[24,26,["H341"]],[26,28,["H834","(H853)"]],[28,29,["H859"]],[29,30,["H3898"]]]},{"k":6090,"v":[[0,2,["H310","H3651"]],[2,3,["H3091"]],[3,4,["H5221"]],[4,7,["H4191"]],[7,10,["H8518"]],[10,12,["H5921"]],[12,13,["H2568"]],[13,14,["H6086"]],[14,17,["H1961"]],[17,18,["H8518"]],[18,19,["H5921"]],[19,21,["H6086"]],[21,22,["H5704"]],[22,24,["H6153"]]]},{"k":6091,"v":[[0,5,["H1961"]],[5,8,["H6256"]],[8,12,["H935"]],[12,15,["H8121"]],[15,17,["H3091"]],[17,18,["H6680"]],[18,23,["H3381"]],[23,26,["H4480","H5921","H6086"]],[26,28,["H7993"]],[28,30,["H413"]],[30,32,["H4631"]],[32,33,["H834","H8033"]],[33,37,["H2244"]],[37,39,["H7760"]],[39,40,["H1419"]],[40,41,["H68"]],[41,42,["H5921"]],[42,44,["H4631"]],[44,45,["H6310"]],[45,48,["H5704"]],[48,49,["H2088"]],[49,50,["H6106"]],[50,51,["H3117"]]]},{"k":6092,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,4,["H3091"]],[4,5,["H3920"]],[5,6,["H4719"]],[6,8,["H5221"]],[8,12,["H6310"]],[12,15,["H2719"]],[15,18,["H4428"]],[18,22,["H2763"]],[22,25,["H3605"]],[25,27,["H5315"]],[27,28,["H834"]],[28,32,["H7604"]],[32,33,["H3808"]],[33,34,["H8300"]],[34,37,["H6213"]],[37,40,["H4428"]],[40,42,["H4719"]],[42,43,["H834"]],[43,45,["H6213"]],[45,48,["H4428"]],[48,50,["H3405"]]]},{"k":6093,"v":[[0,2,["H3091"]],[2,3,["H5674"]],[3,5,["H4480","H4719"]],[5,7,["H3605"]],[7,8,["H3478"]],[8,9,["H5973"]],[9,12,["H3841"]],[12,14,["H3898"]],[14,15,["H5973"]],[15,16,["H3841"]]]},{"k":6094,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,6,["H1571"]],[6,9,["H4428"]],[9,13,["H3027"]],[13,15,["H3478"]],[15,18,["H5221"]],[18,22,["H6310"]],[22,25,["H2719"]],[25,27,["H3605"]],[27,29,["H5315"]],[29,30,["H834"]],[30,34,["H7604"]],[34,35,["H3808"]],[35,36,["H8300"]],[36,40,["H6213"]],[40,43,["H4428"]],[43,45,["H834"]],[45,47,["H6213"]],[47,50,["H4428"]],[50,52,["H3405"]]]},{"k":6095,"v":[[0,2,["H3091"]],[2,3,["H5674"]],[3,5,["H4480","H3841"]],[5,7,["H3605"]],[7,8,["H3478"]],[8,9,["H5973"]],[9,12,["H3923"]],[12,14,["H2583"]],[14,15,["H5921"]],[15,18,["H3898"]],[18,20,[]]]},{"k":6096,"v":[[0,3,["H3068"]],[3,4,["H5414","(H853)"]],[4,5,["H3923"]],[5,8,["H3027"]],[8,10,["H3478"]],[10,12,["H3920"]],[12,16,["H8145"]],[16,17,["H3117"]],[17,19,["H5221"]],[19,23,["H6310"]],[23,26,["H2719"]],[26,28,["H3605"]],[28,30,["H5315"]],[30,31,["H834"]],[31,36,["H3605"]],[36,37,["H834"]],[37,40,["H6213"]],[40,42,["H3841"]]]},{"k":6097,"v":[[0,1,["H227"]],[1,2,["H2036"]],[2,3,["H4428"]],[3,5,["H1507"]],[5,7,["H5927"]],[7,9,["H5826","(H853)"]],[9,10,["H3923"]],[10,12,["H3091"]],[12,13,["H5221"]],[13,17,["H5971"]],[17,18,["H5704"]],[18,21,["H7604"]],[21,23,["H1115"]],[23,24,["H8300"]]]},{"k":6098,"v":[[0,3,["H4480","H3923"]],[3,4,["H3091"]],[4,5,["H5674"]],[5,7,["H5700"]],[7,9,["H3605"]],[9,10,["H3478"]],[10,11,["H5973"]],[11,15,["H2583"]],[15,16,["H5921"]],[16,19,["H3898"]],[19,20,["H5921"]],[20,21,[]]]},{"k":6099,"v":[[0,3,["H3920"]],[3,6,["H1931"]],[6,7,["H3117"]],[7,9,["H5221"]],[9,13,["H6310"]],[13,16,["H2719"]],[16,18,["H3605"]],[18,20,["H5315"]],[20,21,["H834"]],[21,26,["H2763"]],[26,27,["H1931"]],[27,28,["H3117"]],[28,31,["H3605"]],[31,32,["H834"]],[32,35,["H6213"]],[35,37,["H3923"]]]},{"k":6100,"v":[[0,2,["H3091"]],[2,4,["H5927"]],[4,6,["H4480","H5700"]],[6,8,["H3605"]],[8,9,["H3478"]],[9,10,["H5973"]],[10,13,["H2275"]],[13,16,["H3898"]],[16,17,["H5921"]],[17,18,[]]]},{"k":6101,"v":[[0,3,["H3920"]],[3,6,["H5221"]],[6,10,["H6310"]],[10,13,["H2719"]],[13,16,["H4428"]],[16,19,["H3605"]],[19,21,["H5892"]],[21,24,["H3605"]],[24,26,["H5315"]],[26,27,["H834"]],[27,31,["H7604"]],[31,32,["H3808"]],[32,33,["H8300"]],[33,36,["H3605"]],[36,37,["H834"]],[37,40,["H6213"]],[40,42,["H5700"]],[42,44,["H2763"]],[44,48,["H3605"]],[48,50,["H5315"]],[50,51,["H834"]],[51,53,[]]]},{"k":6102,"v":[[0,2,["H3091"]],[2,3,["H7725"]],[3,5,["H3605"]],[5,6,["H3478"]],[6,7,["H5973"]],[7,10,["H1688"]],[10,12,["H3898"]],[12,13,["H5921"]],[13,14,[]]]},{"k":6103,"v":[[0,3,["H3920"]],[3,7,["H4428"]],[7,10,["H3605"]],[10,12,["H5892"]],[12,16,["H5221"]],[16,20,["H6310"]],[20,23,["H2719"]],[23,26,["H2763","(H853)"]],[26,27,["H3605"]],[27,29,["H5315"]],[29,30,["H834"]],[30,34,["H7604"]],[34,35,["H3808"]],[35,36,["H8300"]],[36,37,["H834"]],[37,40,["H6213"]],[40,42,["H2275"]],[42,43,["H3651"]],[43,45,["H6213"]],[45,47,["H1688"]],[47,51,["H4428"]],[51,53,["H834"]],[53,56,["H6213"]],[56,59,["H3841"]],[59,63,["H4428"]]]},{"k":6104,"v":[[0,2,["H3091"]],[2,3,["H5221","(H853)"]],[3,4,["H3605"]],[4,6,["H776"]],[6,9,["H2022"]],[9,13,["H5045"]],[13,17,["H8219"]],[17,21,["H794"]],[21,23,["H3605"]],[23,25,["H4428"]],[25,27,["H7604"]],[27,28,["H3808"]],[28,29,["H8300"]],[29,32,["H2763"]],[32,33,["H3605"]],[33,35,["H5397"]],[35,36,["H834"]],[36,38,["H3068"]],[38,39,["H430"]],[39,41,["H3478"]],[41,42,["H6680"]]]},{"k":6105,"v":[[0,2,["H3091"]],[2,3,["H5221"]],[3,6,["H4480","H6947"]],[6,8,["H5704"]],[8,9,["H5804"]],[9,11,["H3605"]],[11,13,["H776"]],[13,15,["H1657"]],[15,17,["H5704"]],[17,18,["H1391"]]]},{"k":6106,"v":[[0,2,["H3605"]],[2,3,["H428"]],[3,4,["H4428"]],[4,7,["H776"]],[7,9,["H3091"]],[9,10,["H3920"]],[10,12,["H259"]],[12,13,["H6471"]],[13,14,["H3588"]],[14,16,["H3068"]],[16,17,["H430"]],[17,19,["H3478"]],[19,20,["H3898"]],[20,22,["H3478"]]]},{"k":6107,"v":[[0,2,["H3091"]],[2,3,["H7725"]],[3,5,["H3605"]],[5,6,["H3478"]],[6,7,["H5973"]],[7,9,["H413"]],[9,11,["H4264"]],[11,13,["H1537"]]]},{"k":6108,"v":[[0,5,["H1961"]],[5,7,["H2985"]],[7,8,["H4428"]],[8,10,["H2674"]],[10,12,["H8085"]],[12,17,["H7971"]],[17,18,["H413"]],[18,19,["H3103"]],[19,20,["H4428"]],[20,22,["H4068"]],[22,24,["H413"]],[24,26,["H4428"]],[26,28,["H8110"]],[28,30,["H413"]],[30,32,["H4428"]],[32,34,["H407"]]]},{"k":6109,"v":[[0,2,["H413"]],[2,4,["H4428"]],[4,5,["H834"]],[5,9,["H4480","H6828"]],[9,12,["H2022"]],[12,16,["H6160"]],[16,17,["H5045"]],[17,19,["H3672"]],[19,23,["H8219"]],[23,27,["H5299"]],[27,29,["H1756"]],[29,32,["H4480","H3220"]]]},{"k":6110,"v":[[0,4,["H3669"]],[4,7,["H4480","H4217"]],[7,11,["H4480","H3220"]],[11,15,["H567"]],[15,18,["H2850"]],[18,21,["H6522"]],[21,24,["H2983"]],[24,27,["H2022"]],[27,31,["H2340"]],[31,32,["H8478"]],[32,33,["H2768"]],[33,36,["H776"]],[36,38,["H4709"]]]},{"k":6111,"v":[[0,4,["H3318"]],[4,5,["H1992"]],[5,7,["H3605"]],[7,9,["H4264"]],[9,10,["H5973"]],[10,12,["H7227"]],[12,13,["H5971"]],[13,17,["H2344"]],[17,18,["H834"]],[18,20,["H5921"]],[20,22,["H3220"]],[22,23,["H8193"]],[23,25,["H7230"]],[25,27,["H5483"]],[27,29,["H7393"]],[29,30,["H3966"]],[30,31,["H7227"]]]},{"k":6112,"v":[[0,3,["H3605"]],[3,4,["H428"]],[4,5,["H4428"]],[5,8,["H3259"]],[8,10,["H935"]],[10,12,["H2583"]],[12,13,["H3162"]],[13,14,["H413"]],[14,16,["H4325"]],[16,18,["H4792"]],[18,20,["H3898"]],[20,21,["H5973"]],[21,22,["H3478"]]]},{"k":6113,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091"]],[6,8,["H408"]],[8,9,["H3372"]],[9,11,["H4480","H6440"]],[11,13,["H3588"]],[13,15,["H4279"]],[15,17,["H2063"]],[17,18,["H6256"]],[18,20,["H595"]],[20,23,["H5414","(H853)"]],[23,24,["H3605"]],[24,25,["H2491"]],[25,26,["H6440"]],[26,27,["H3478"]],[27,30,["H6131","(H853)"]],[30,32,["H5483"]],[32,34,["H8313"]],[34,36,["H4818"]],[36,38,["H784"]]]},{"k":6114,"v":[[0,2,["H3091"]],[2,3,["H935"]],[3,5,["H3605"]],[5,7,["H5971"]],[7,9,["H4421"]],[9,10,["H5973"]],[10,12,["H5921"]],[12,14,["H5921"]],[14,16,["H4325"]],[16,18,["H4792"]],[18,19,["H6597"]],[19,22,["H5307"]],[22,24,[]]]},{"k":6115,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,8,["H3027"]],[8,10,["H3478"]],[10,12,["H5221"]],[12,15,["H7291"]],[15,17,["H5704"]],[17,18,["H7227"]],[18,19,["H6721"]],[19,21,["H5704"]],[21,22,["H4956"]],[22,24,["H5704"]],[24,26,["H1237"]],[26,28,["H4708"]],[28,29,["H4217"]],[29,32,["H5221"]],[32,34,["H5704"]],[34,36,["H7604"]],[36,38,["H1115"]],[38,39,["H8300"]]]},{"k":6116,"v":[[0,2,["H3091"]],[2,3,["H6213"]],[3,6,["H834"]],[6,8,["H3068"]],[8,9,["H559"]],[9,12,["H6131","(H853)"]],[12,14,["H5483"]],[14,16,["H8313"]],[16,18,["H4818"]],[18,20,["H784"]]]},{"k":6117,"v":[[0,2,["H3091"]],[2,4,["H1931"]],[4,5,["H6256"]],[5,7,["H7725"]],[7,9,["H3920","(H853)"]],[9,10,["H2674"]],[10,12,["H5221"]],[12,14,["H4428"]],[14,18,["H2719"]],[18,19,["H3588"]],[19,20,["H2674"]],[20,21,["H6440"]],[21,24,["H7218"]],[24,26,["H3605"]],[26,27,["H428"]],[27,28,["H4467"]]]},{"k":6118,"v":[[0,3,["H5221","(H853)"]],[3,4,["H3605"]],[4,6,["H5315"]],[6,7,["H834"]],[7,12,["H6310"]],[12,15,["H2719"]],[15,17,["H2763"]],[17,21,["H3808"]],[21,22,["H3605"]],[22,23,["H3498"]],[23,25,["H5397"]],[25,28,["H8313"]],[28,29,["H2674"]],[29,31,["H784"]]]},{"k":6119,"v":[[0,2,["H3605"]],[2,4,["H5892"]],[4,6,["H428"]],[6,7,["H4428"]],[7,9,["H3605"]],[9,11,["H4428"]],[11,15,["H3091"]],[15,16,["H3920"]],[16,18,["H5221"]],[18,22,["H6310"]],[22,25,["H2719"]],[25,29,["H2763"]],[29,31,["H834"]],[31,32,["H4872"]],[32,34,["H5650"]],[34,37,["H3068"]],[37,38,["H6680"]]]},{"k":6120,"v":[[0,1,["H7535"]],[1,5,["H5892"]],[5,8,["H5975"]],[8,9,["H5921"]],[9,11,["H8510"]],[11,12,["H3478"]],[12,13,["H8313"]],[13,14,["H3808"]],[14,17,["H2108","(H853)"]],[17,18,["H2674"]],[18,19,["H905"]],[19,22,["H3091"]],[22,23,["H8313"]]]},{"k":6121,"v":[[0,2,["H3605"]],[2,4,["H7998"]],[4,6,["H428"]],[6,7,["H5892"]],[7,10,["H929"]],[10,12,["H1121"]],[12,14,["H3478"]],[14,18,["H962"]],[18,21,["H7535","(H853)"]],[21,22,["H3605"]],[22,23,["H120"]],[23,25,["H5221"]],[25,28,["H6310"]],[28,31,["H2719"]],[31,32,["H5704"]],[32,35,["H8045"]],[35,37,["H3808"]],[37,38,["H7604"]],[38,40,["H3605"]],[40,42,["H5397"]]]},{"k":6122,"v":[[0,1,["H834"]],[1,3,["H3068"]],[3,4,["H6680","(H853)"]],[4,5,["H4872"]],[5,7,["H5650"]],[7,8,["H3651"]],[8,10,["H4872"]],[10,11,["H6680","(H853)"]],[11,12,["H3091"]],[12,14,["H3651"]],[14,15,["H6213"]],[15,16,["H3091"]],[16,20,["H3808","H5493","H1697"]],[20,22,["H4480","H3605"]],[22,23,["H834"]],[23,25,["H3068"]],[25,26,["H6680","(H853)"]],[26,27,["H4872"]]]},{"k":6123,"v":[[0,2,["H3091"]],[2,3,["H3947","(H853)"]],[3,4,["H3605"]],[4,5,["H2063"]],[5,6,["H776"]],[6,8,["H2022"]],[8,10,["H3605"]],[10,13,["H5045"]],[13,15,["H3605"]],[15,17,["H776"]],[17,19,["H1657"]],[19,22,["H8219"]],[22,25,["H6160"]],[25,28,["H2022"]],[28,30,["H3478"]],[30,33,["H8219"]],[33,36,[]]]},{"k":6124,"v":[[0,2,["H4480"]],[2,4,["H2022"]],[4,5,["H2510"]],[5,8,["H5927"]],[8,10,["H8165"]],[10,12,["H5704"]],[12,13,["H1171"]],[13,16,["H1237"]],[16,18,["H3844"]],[18,19,["H8478"]],[19,20,["H2022"]],[20,21,["H2768"]],[21,23,["H3605"]],[23,25,["H4428"]],[25,27,["H3920"]],[27,29,["H5221"]],[29,32,["H4191"]],[32,33,[]]]},{"k":6125,"v":[[0,1,["H3091"]],[1,2,["H6213"]],[2,3,["H4421"]],[3,5,["H7227"]],[5,6,["H3117"]],[6,7,["H854"]],[7,8,["H3605"]],[8,9,["H428"]],[9,10,["H4428"]]]},{"k":6126,"v":[[0,2,["H1961"]],[2,3,["H3808"]],[3,5,["H5892"]],[5,6,["H834"]],[6,8,["H7999"]],[8,9,["H413"]],[9,11,["H1121"]],[11,13,["H3478"]],[13,14,["H1115"]],[14,16,["H2340"]],[16,18,["H3427"]],[18,20,["H1391","(H853)"]],[20,21,["H3605"]],[21,24,["H3947"]],[24,26,["H4421"]]]},{"k":6127,"v":[[0,1,["H3588"]],[1,3,["H1961"]],[3,4,["H4480","(H853)"]],[4,6,["H3068"]],[6,8,["H2388","(H853)"]],[8,10,["H3820"]],[10,15,["H7125","(H853)"]],[15,16,["H3478"]],[16,18,["H4421"]],[18,19,["H4616"]],[19,22,["H2763"]],[22,29,["H1961"]],[29,30,["H1115"]],[30,31,["H8467"]],[31,32,["H3588"]],[32,33,["H4616"]],[33,36,["H8045"]],[36,38,["H834"]],[38,40,["H3068"]],[40,41,["H6680","(H853)"]],[41,42,["H4872"]]]},{"k":6128,"v":[[0,3,["H1931"]],[3,4,["H6256"]],[4,5,["H935"]],[5,6,["H3091"]],[6,9,["H3772","(H853)"]],[9,11,["H6062"]],[11,12,["H4480"]],[12,14,["H2022"]],[14,15,["H4480"]],[15,16,["H2275"]],[16,17,["H4480"]],[17,18,["H1688"]],[18,19,["H4480"]],[19,20,["H6024"]],[20,23,["H4480","H3605"]],[23,25,["H2022"]],[25,27,["H3063"]],[27,30,["H4480","H3605"]],[30,32,["H2022"]],[32,34,["H3478"]],[34,35,["H3091"]],[35,36,["H2763"]],[36,39,["H5973"]],[39,41,["H5892"]]]},{"k":6129,"v":[[0,3,["H3808"]],[3,6,["H6062"]],[6,7,["H3498"]],[7,10,["H776"]],[10,13,["H1121"]],[13,15,["H3478"]],[15,16,["H7535"]],[16,18,["H5804"]],[18,20,["H1661"]],[20,23,["H795"]],[23,25,["H7604"]]]},{"k":6130,"v":[[0,2,["H3091"]],[2,3,["H3947","(H853)"]],[3,5,["H3605"]],[5,6,["H776"]],[6,9,["H3605"]],[9,10,["H834"]],[10,12,["H3068"]],[12,13,["H1696"]],[13,14,["H413"]],[14,15,["H4872"]],[15,17,["H3091"]],[17,18,["H5414"]],[18,22,["H5159"]],[22,24,["H3478"]],[24,28,["H4256"]],[28,31,["H7626"]],[31,34,["H776"]],[34,35,["H8252"]],[35,37,["H4480","H4421"]]]},{"k":6131,"v":[[0,2,["H428"]],[2,5,["H4428"]],[5,8,["H776"]],[8,9,["H834"]],[9,11,["H1121"]],[11,13,["H3478"]],[13,14,["H5221"]],[14,16,["H3423","(H853)"]],[16,18,["H776"]],[18,22,["H5676"]],[22,23,["H3383"]],[23,26,["H4217"]],[26,29,["H8121"]],[29,32,["H4480","H5158"]],[32,33,["H769"]],[33,34,["H5704"]],[34,35,["H2022"]],[35,36,["H2768"]],[36,38,["H3605"]],[38,40,["H6160"]],[40,43,["H4217"]]]},{"k":6132,"v":[[0,1,["H5511"]],[1,2,["H4428"]],[2,5,["H567"]],[5,7,["H3427"]],[7,9,["H2809"]],[9,11,["H4910"]],[11,13,["H4480","H6177"]],[13,14,["H834"]],[14,16,["H5921"]],[16,18,["H8193"]],[18,21,["H5158"]],[21,22,["H769"]],[22,26,["H8432"]],[26,29,["H5158"]],[29,32,["H2677"]],[32,33,["H1568"]],[33,35,["H5704"]],[35,37,["H5158"]],[37,38,["H2999"]],[38,42,["H1366"]],[42,45,["H1121"]],[45,47,["H5983"]]]},{"k":6133,"v":[[0,4,["H6160"]],[4,5,["H5704"]],[5,7,["H3220"]],[7,9,["H3672"]],[9,12,["H4217"]],[12,14,["H5704"]],[14,16,["H3220"]],[16,19,["H6160"]],[19,22,["H4417"]],[22,23,["H3220"]],[23,26,["H4217"]],[26,28,["H1870"]],[28,30,["H1020"]],[30,34,["H4480","H8486"]],[34,35,["H8478"]],[35,36,["H798"]]]},{"k":6134,"v":[[0,3,["H1366"]],[3,5,["H5747"]],[5,6,["H4428"]],[6,8,["H1316"]],[8,13,["H4480","H3499"]],[13,16,["H7497"]],[16,18,["H3427"]],[18,20,["H6252"]],[20,23,["H154"]]]},{"k":6135,"v":[[0,2,["H4910"]],[2,4,["H2022"]],[4,5,["H2768"]],[5,8,["H5548"]],[8,11,["H3605"]],[11,12,["H1316"]],[12,13,["H5704"]],[13,15,["H1366"]],[15,18,["H1651"]],[18,21,["H4602"]],[21,23,["H2677"]],[23,24,["H1568"]],[24,26,["H1366"]],[26,28,["H5511"]],[28,29,["H4428"]],[29,31,["H2809"]]]},{"k":6136,"v":[[0,3,["H4872"]],[3,5,["H5650"]],[5,8,["H3068"]],[8,11,["H1121"]],[11,13,["H3478"]],[13,14,["H5221"]],[14,16,["H4872"]],[16,18,["H5650"]],[18,21,["H3068"]],[21,22,["H5414"]],[22,26,["H3425"]],[26,29,["H7206"]],[29,32,["H1425"]],[32,35,["H2677"]],[35,36,["H7626"]],[36,38,["H4519"]]]},{"k":6137,"v":[[0,2,["H428"]],[2,5,["H4428"]],[5,8,["H776"]],[8,9,["H834"]],[9,10,["H3091"]],[10,13,["H1121"]],[13,15,["H3478"]],[15,16,["H5221"]],[16,19,["H5676"]],[19,20,["H3383"]],[20,23,["H3220"]],[23,25,["H4480","H1171"]],[25,28,["H1237"]],[28,30,["H3844"]],[30,32,["H5704"]],[32,34,["H2022"]],[34,35,["H2510"]],[35,38,["H5927"]],[38,40,["H8165"]],[40,42,["H3091"]],[42,43,["H5414"]],[43,46,["H7626"]],[46,48,["H3478"]],[48,51,["H3425"]],[51,55,["H4256"]]]},{"k":6138,"v":[[0,3,["H2022"]],[3,7,["H8219"]],[7,11,["H6160"]],[11,15,["H794"]],[15,19,["H4057"]],[19,23,["H5045"]],[23,26,["H2850"]],[26,28,["H567"]],[28,31,["H3669"]],[31,33,["H6522"]],[33,35,["H2340"]],[35,38,["H2983"]]]},{"k":6139,"v":[[0,2,["H4428"]],[2,4,["H3405"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H5857"]],[9,10,["H834"]],[10,12,["H4480","H6654"]],[12,13,["H1008"]],[13,14,["H259"]]]},{"k":6140,"v":[[0,2,["H4428"]],[2,4,["H3389"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H2275"]],[9,10,["H259"]]]},{"k":6141,"v":[[0,2,["H4428"]],[2,4,["H3412"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H3923"]],[9,10,["H259"]]]},{"k":6142,"v":[[0,2,["H4428"]],[2,4,["H5700"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H1507"]],[9,10,["H259"]]]},{"k":6143,"v":[[0,2,["H4428"]],[2,4,["H1688"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H1445"]],[9,10,["H259"]]]},{"k":6144,"v":[[0,2,["H4428"]],[2,4,["H2767"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H6166"]],[9,10,["H259"]]]},{"k":6145,"v":[[0,2,["H4428"]],[2,4,["H3841"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H5725"]],[9,10,["H259"]]]},{"k":6146,"v":[[0,2,["H4428"]],[2,4,["H4719"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H1008"]],[9,10,["H259"]]]},{"k":6147,"v":[[0,2,["H4428"]],[2,4,["H8599"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H2660"]],[9,10,["H259"]]]},{"k":6148,"v":[[0,2,["H4428"]],[2,4,["H663"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H8289"]],[9,10,["H259"]]]},{"k":6149,"v":[[0,2,["H4428"]],[2,4,["H4068"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H2674"]],[9,10,["H259"]]]},{"k":6150,"v":[[0,2,["H4428"]],[2,4,["H8112"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H407"]],[9,10,["H259"]]]},{"k":6151,"v":[[0,2,["H4428"]],[2,4,["H8590"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H4023"]],[9,10,["H259"]]]},{"k":6152,"v":[[0,2,["H4428"]],[2,4,["H6943"]],[4,5,["H259"]],[5,7,["H4428"]],[7,9,["H3362"]],[9,11,["H3760"]],[11,12,["H259"]]]},{"k":6153,"v":[[0,2,["H4428"]],[2,4,["H1756"]],[4,7,["H5299"]],[7,9,["H1756"]],[9,10,["H259"]],[10,12,["H4428"]],[12,15,["H1471"]],[15,17,["H1537"]],[17,18,["H259"]]]},{"k":6154,"v":[[0,2,["H4428"]],[2,4,["H8656"]],[4,5,["H259"]],[5,6,["H3605"]],[6,8,["H4428"]],[8,9,["H7970"]],[9,11,["H259"]]]},{"k":6155,"v":[[0,2,["H3091"]],[2,4,["H2204"]],[4,6,["H935"]],[6,8,["H3117"]],[8,11,["H3068"]],[11,12,["H559"]],[12,13,["H413"]],[13,15,["H859"]],[15,17,["H2204"]],[17,19,["H935"]],[19,21,["H3117"]],[21,24,["H7604"]],[24,26,["H3966"]],[26,27,["H7235"]],[27,28,["H776"]],[28,31,["H3423"]]]},{"k":6156,"v":[[0,1,["H2063"]],[1,4,["H776"]],[4,7,["H7604"]],[7,8,["H3605"]],[8,10,["H1552"]],[10,13,["H6430"]],[13,15,["H3605"]],[15,16,["H1651"]]]},{"k":6157,"v":[[0,1,["H4480"]],[1,2,["H7883"]],[2,3,["H834"]],[3,5,["H5921","H6440"]],[5,6,["H4714"]],[6,8,["H5704"]],[8,10,["H1366"]],[10,12,["H6138"]],[12,13,["H6828"]],[13,16,["H2803"]],[16,19,["H3669"]],[19,20,["H2568"]],[20,21,["H5633"]],[21,24,["H6430"]],[24,26,["H5841"]],[26,29,["H796"]],[29,31,["H832"]],[31,33,["H1663"]],[33,36,["H6139"]],[36,39,["H5757"]]]},{"k":6158,"v":[[0,3,["H4480","H8486"]],[3,4,["H3605"]],[4,6,["H776"]],[6,9,["H3669"]],[9,11,["H4632"]],[11,12,["H834"]],[12,16,["H6722"]],[16,17,["H5704"]],[17,18,["H663"]],[18,19,["H5704"]],[19,21,["H1366"]],[21,24,["H567"]]]},{"k":6159,"v":[[0,3,["H776"]],[3,6,["H1382"]],[6,8,["H3605"]],[8,9,["H3844"]],[9,12,["H4217","H8121"]],[12,14,["H4480","H1171"]],[14,15,["H8478"]],[15,16,["H2022"]],[16,17,["H2768"]],[17,18,["H5704"]],[18,20,["H935"]],[20,22,["H2574"]]]},{"k":6160,"v":[[0,1,["H3605"]],[1,3,["H3427"]],[3,7,["H2022"]],[7,8,["H4480"]],[8,9,["H3844"]],[9,10,["H5704"]],[10,11,["H4956"]],[11,13,["H3605"]],[13,15,["H6722"]],[15,18,["H595"]],[18,20,["H3423"]],[20,22,["H4480","H6440"]],[22,24,["H1121"]],[24,26,["H3478"]],[26,27,["H7535"]],[27,32,["H5307"]],[32,35,["H3478"]],[35,38,["H5159"]],[38,39,["H834"]],[39,42,["H6680"]],[42,43,[]]]},{"k":6161,"v":[[0,1,["H6258"]],[1,3,["H2505","(H853)"]],[3,4,["H2063"]],[4,5,["H776"]],[5,8,["H5159"]],[8,11,["H8672"]],[11,12,["H7626"]],[12,15,["H2677"]],[15,16,["H7626"]],[16,18,["H4519"]]]},{"k":6162,"v":[[0,1,["H5973"]],[1,4,["H7206"]],[4,7,["H1425"]],[7,9,["H3947"]],[9,11,["H5159"]],[11,12,["H834"]],[12,13,["H4872"]],[13,14,["H5414"]],[14,16,["H5676"]],[16,17,["H3383"]],[17,18,["H4217"]],[18,20,["H834"]],[20,21,["H4872"]],[21,23,["H5650"]],[23,26,["H3068"]],[26,27,["H5414"]],[27,28,[]]]},{"k":6163,"v":[[0,2,["H4480","H6177"]],[2,3,["H834"]],[3,5,["H5921"]],[5,7,["H8193"]],[7,10,["H5158"]],[10,11,["H769"]],[11,14,["H5892"]],[14,15,["H834"]],[15,19,["H8432"]],[19,22,["H5158"]],[22,24,["H3605"]],[24,26,["H4334"]],[26,28,["H4311"]],[28,29,["H5704"]],[29,30,["H1769"]]]},{"k":6164,"v":[[0,2,["H3605"]],[2,4,["H5892"]],[4,6,["H5511"]],[6,7,["H4428"]],[7,10,["H567"]],[10,11,["H834"]],[11,12,["H4427"]],[12,14,["H2809"]],[14,15,["H5704"]],[15,17,["H1366"]],[17,20,["H1121"]],[20,22,["H5983"]]]},{"k":6165,"v":[[0,2,["H1568"]],[2,5,["H1366"]],[5,8,["H1651"]],[8,10,["H4602"]],[10,12,["H3605"]],[12,13,["H2022"]],[13,14,["H2768"]],[14,16,["H3605"]],[16,17,["H1316"]],[17,18,["H5704"]],[18,19,["H5548"]]]},{"k":6166,"v":[[0,1,["H3605"]],[1,3,["H4468"]],[3,5,["H5747"]],[5,7,["H1316"]],[7,8,["H834"]],[8,9,["H4427"]],[9,11,["H6252"]],[11,14,["H154"]],[14,15,["H1931"]],[15,16,["H7604"]],[16,19,["H4480","H3499"]],[19,22,["H7497"]],[22,26,["H4872"]],[26,27,["H5221"]],[27,31,["H3423"]]]},{"k":6167,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H3423"]],[6,7,["H3808","(H853)"]],[7,9,["H1651"]],[9,12,["H4602"]],[12,15,["H1650"]],[15,18,["H4601"]],[18,19,["H3427"]],[19,20,["H7130"]],[20,22,["H3478"]],[22,23,["H5704"]],[23,24,["H2088"]],[24,25,["H3117"]]]},{"k":6168,"v":[[0,1,["H7535"]],[1,4,["H7626"]],[4,6,["H3878"]],[6,8,["H5414"]],[8,9,["H3808"]],[9,10,["H5159"]],[10,21,["H801","H3068","H430","H3478"]],[21,24,["H5159"]],[24,25,["H834"]],[25,27,["H1696"]],[27,29,[]]]},{"k":6169,"v":[[0,2,["H4872"]],[2,3,["H5414"]],[3,6,["H4294"]],[6,9,["H1121"]],[9,11,["H7205"]],[11,16,["H4940"]]]},{"k":6170,"v":[[0,3,["H1366"]],[3,4,["H1961"]],[4,6,["H4480","H6177"]],[6,7,["H834"]],[7,9,["H5921"]],[9,11,["H8193"]],[11,14,["H5158"]],[14,15,["H769"]],[15,18,["H5892"]],[18,19,["H834"]],[19,23,["H8432"]],[23,26,["H5158"]],[26,28,["H3605"]],[28,30,["H4334"]],[30,31,["H5921"]],[31,32,["H4311"]]]},{"k":6171,"v":[[0,1,["H2809"]],[1,3,["H3605"]],[3,5,["H5892"]],[5,6,["H834"]],[6,10,["H4334"]],[10,11,["H1769"]],[11,13,["H1120"]],[13,15,["H1010"]]]},{"k":6172,"v":[[0,2,["H3096"]],[2,4,["H6932"]],[4,6,["H4158"]]]},{"k":6173,"v":[[0,2,["H7156"]],[2,4,["H7643"]],[4,6,["H6890"]],[6,9,["H2022"]],[9,12,["H6010"]]]},{"k":6174,"v":[[0,2,["H1047"]],[2,4,["H798"]],[4,6,["H1020"]]]},{"k":6175,"v":[[0,2,["H3605"]],[2,4,["H5892"]],[4,7,["H4334"]],[7,9,["H3605"]],[9,11,["H4468"]],[11,13,["H5511"]],[13,14,["H4428"]],[14,17,["H567"]],[17,18,["H834"]],[18,19,["H4427"]],[19,21,["H2809"]],[21,22,["H834"]],[22,23,["H4872"]],[23,24,["H5221"]],[24,25,["H854"]],[25,27,["H5387"]],[27,29,["H4080","(H853)"]],[29,30,["H189"]],[30,32,["H7552"]],[32,34,["H6698"]],[34,36,["H2354"]],[36,38,["H7254"]],[38,41,["H5257"]],[41,43,["H5511"]],[43,44,["H3427"]],[44,47,["H776"]]]},{"k":6176,"v":[[0,1,["H1109"]],[1,4,["H1121"]],[4,6,["H1160"]],[6,8,["H7080"]],[8,11,["H1121"]],[11,13,["H3478"]],[13,14,["H2026"]],[14,17,["H2719"]],[17,18,["H413"]],[18,22,["H2491"]],[22,24,[]]]},{"k":6177,"v":[[0,3,["H1366"]],[3,6,["H1121"]],[6,8,["H7205"]],[8,9,["H1961"]],[9,10,["H3383"]],[10,13,["H1366"]],[13,15,["H2063"]],[15,18,["H5159"]],[18,21,["H1121"]],[21,23,["H7205"]],[23,26,["H4940"]],[26,28,["H5892"]],[28,31,["H2691"]],[31,32,[]]]},{"k":6178,"v":[[0,2,["H4872"]],[2,3,["H5414"]],[3,7,["H4294"]],[7,9,["H1410"]],[9,13,["H1121"]],[13,15,["H1410"]],[15,19,["H4940"]]]},{"k":6179,"v":[[0,3,["H1366"]],[3,4,["H1961"]],[4,5,["H3270"]],[5,7,["H3605"]],[7,9,["H5892"]],[9,11,["H1568"]],[11,13,["H2677"]],[13,15,["H776"]],[15,18,["H1121"]],[18,20,["H5983"]],[20,21,["H5704"]],[21,22,["H6177"]],[22,23,["H834"]],[23,25,["H5921","H6440"]],[25,26,["H7237"]]]},{"k":6180,"v":[[0,3,["H4480","H2809"]],[3,4,["H5704"]],[4,5,["H7434"]],[5,7,["H993"]],[7,10,["H4480","H4266"]],[10,11,["H5704"]],[11,13,["H1366"]],[13,15,["H1688"]]]},{"k":6181,"v":[[0,4,["H6010"]],[4,5,["H1027"]],[5,7,["H1039"]],[7,9,["H5523"]],[9,11,["H6829"]],[11,13,["H3499"]],[13,16,["H4480","H4468"]],[16,18,["H5511"]],[18,19,["H4428"]],[19,21,["H2809"]],[21,22,["H3383"]],[22,25,["H1366"]],[25,27,["H5704"]],[27,29,["H7097"]],[29,32,["H3220"]],[32,34,["H3672"]],[34,38,["H5676"]],[38,39,["H3383"]],[39,40,["H4217"]]]},{"k":6182,"v":[[0,1,["H2063"]],[1,4,["H5159"]],[4,7,["H1121"]],[7,9,["H1410"]],[9,12,["H4940"]],[12,14,["H5892"]],[14,17,["H2691"]]]},{"k":6183,"v":[[0,2,["H4872"]],[2,3,["H5414"]],[3,7,["H2677"]],[7,8,["H7626"]],[8,10,["H4519"]],[10,13,["H1961"]],[13,18,["H2677"]],[18,19,["H4294"]],[19,22,["H1121"]],[22,24,["H4519"]],[24,27,["H4940"]]]},{"k":6184,"v":[[0,3,["H1366"]],[3,4,["H1961"]],[4,6,["H4480","H4266"]],[6,7,["H3605"]],[7,8,["H1316"]],[8,9,["H3605"]],[9,11,["H4468"]],[11,13,["H5747"]],[13,14,["H4428"]],[14,16,["H1316"]],[16,18,["H3605"]],[18,20,["H2333"]],[20,22,["H2971"]],[22,23,["H834"]],[23,26,["H1316"]],[26,27,["H8346"]],[27,28,["H5892"]]]},{"k":6185,"v":[[0,2,["H2677"]],[2,3,["H1568"]],[3,5,["H6252"]],[5,7,["H154"]],[7,8,["H5892"]],[8,11,["H4468"]],[11,13,["H5747"]],[13,15,["H1316"]],[15,20,["H1121"]],[20,22,["H4353"]],[22,24,["H1121"]],[24,26,["H4519"]],[26,31,["H2677"]],[31,34,["H1121"]],[34,36,["H4353"]],[36,39,["H4940"]]]},{"k":6186,"v":[[0,1,["H428"]],[1,5,["H834"]],[5,6,["H4872"]],[6,10,["H5157"]],[10,13,["H6160"]],[13,15,["H4124"]],[15,19,["H4480","H5676"]],[19,20,["H3383"]],[20,22,["H3405"]],[22,23,["H4217"]]]},{"k":6187,"v":[[0,4,["H7626"]],[4,6,["H3878"]],[6,7,["H4872"]],[7,8,["H5414"]],[8,9,["H3808"]],[9,11,["H5159"]],[11,13,["H3068"]],[13,14,["H430"]],[14,16,["H3478"]],[16,19,["H5159"]],[19,20,["H834"]],[20,22,["H1696"]],[22,24,[]]]},{"k":6188,"v":[[0,2,["H428"]],[2,6,["H834"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,11,["H5157"]],[11,14,["H776"]],[14,16,["H3667"]],[16,17,["H834"]],[17,18,["H499"]],[18,20,["H3548"]],[20,22,["H3091"]],[22,24,["H1121"]],[24,26,["H5126"]],[26,29,["H7218"]],[29,32,["H1"]],[32,35,["H4294"]],[35,38,["H1121"]],[38,40,["H3478"]],[40,43,["H5157"]],[43,45,[]]]},{"k":6189,"v":[[0,2,["H1486"]],[2,5,["H5159"]],[5,6,["H834"]],[6,8,["H3068"]],[8,9,["H6680"]],[9,12,["H3027"]],[12,14,["H4872"]],[14,17,["H8672"]],[17,18,["H4294"]],[18,22,["H2677"]],[22,23,["H4294"]]]},{"k":6190,"v":[[0,1,["H3588"]],[1,2,["H4872"]],[2,4,["H5414"]],[4,6,["H5159"]],[6,8,["H8147"]],[8,9,["H4294"]],[9,12,["H2677"]],[12,13,["H4294"]],[13,17,["H4480","H5676"]],[17,18,["H3383"]],[18,22,["H3881"]],[22,24,["H5414"]],[24,25,["H3808"]],[25,26,["H5159"]],[26,27,["H8432"]],[27,28,[]]]},{"k":6191,"v":[[0,1,["H3588"]],[1,3,["H1121"]],[3,5,["H3130"]],[5,6,["H1961"]],[6,7,["H8147"]],[7,8,["H4294"]],[8,9,["H4519"]],[9,11,["H669"]],[11,14,["H5414"]],[14,15,["H3808"]],[15,16,["H2506"]],[16,19,["H3881"]],[19,22,["H776"]],[22,23,["H3588","H518"]],[23,24,["H5892"]],[24,26,["H3427"]],[26,30,["H4054"]],[30,33,["H4735"]],[33,37,["H7075"]]]},{"k":6192,"v":[[0,1,["H834"]],[1,3,["H3068"]],[3,4,["H6680","(H853)"]],[4,5,["H4872"]],[5,6,["H3651"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,11,["H6213"]],[11,14,["H2505","(H853)"]],[14,16,["H776"]]]},{"k":6193,"v":[[0,3,["H1121"]],[3,5,["H3063"]],[5,6,["H5066"]],[6,7,["H413"]],[7,8,["H3091"]],[8,10,["H1537"]],[10,12,["H3612"]],[12,14,["H1121"]],[14,16,["H3312"]],[16,18,["H7074"]],[18,19,["H559"]],[19,20,["H413"]],[20,22,["H859"]],[22,23,["H3045","(H853)"]],[23,25,["H1697"]],[25,26,["H834"]],[26,28,["H3068"]],[28,29,["H1696"]],[29,30,["H413"]],[30,31,["H4872"]],[31,33,["H376"]],[33,35,["H430"]],[35,36,["H5921","H182"]],[36,41,["H6947"]]]},{"k":6194,"v":[[0,1,["H705"]],[1,2,["H8141"]],[2,3,["H1121"]],[3,5,["H595"]],[5,7,["H4872"]],[7,9,["H5650"]],[9,12,["H3068"]],[12,13,["H7971"]],[13,16,["H4480","H6947"]],[16,19,["H7270","(H853)"]],[19,21,["H776"]],[21,24,["H7725"]],[24,26,["H1697"]],[26,28,["H834"]],[28,31,["H5973"]],[31,33,["H3824"]]]},{"k":6195,"v":[[0,3,["H251"]],[3,4,["H834"]],[4,6,["H5927"]],[6,7,["H5973"]],[7,9,["(H853)"]],[9,11,["H3820"]],[11,14,["H5971"]],[14,15,["H4529"]],[15,17,["H595"]],[17,18,["H4390"]],[18,19,["H310"]],[19,21,["H3068"]],[21,23,["H430"]]]},{"k":6196,"v":[[0,2,["H4872"]],[2,3,["H7650"]],[3,5,["H1931"]],[5,6,["H3117"]],[6,7,["H559"]],[7,8,["H518","H3808"]],[8,10,["H776"]],[10,11,["H834"]],[11,13,["H7272"]],[13,15,["H1869"]],[15,17,["H1961"]],[17,19,["H5159"]],[19,22,["H1121"]],[22,24,["H5704","H5769"]],[24,25,["H3588"]],[25,28,["H4390"]],[28,29,["H310"]],[29,31,["H3068"]],[31,33,["H430"]]]},{"k":6197,"v":[[0,2,["H6258"]],[2,3,["H2009"]],[3,5,["H3068"]],[5,9,["H2421","(H853)"]],[9,10,["H834"]],[10,12,["H1696"]],[12,13,["H2088"]],[13,14,["H705"]],[14,16,["H2568"]],[16,17,["H8141"]],[17,19,["H4480","H227"]],[19,21,["H3068"]],[21,22,["H1696","(H853)"]],[22,23,["H2088"]],[23,24,["H1697"]],[24,25,["H413"]],[25,26,["H4872"]],[26,27,["H834"]],[27,31,["H3478"]],[31,32,["H1980"]],[32,35,["H4057"]],[35,37,["H6258"]],[37,38,["H2009"]],[38,39,["H595"]],[39,42,["H3117"]],[42,43,["H8084"]],[43,45,["H2568"]],[45,46,["H8141"]],[46,47,["H1121"]]]},{"k":6198,"v":[[0,2,["H5750"]],[2,6,["H2389"]],[6,8,["H3117"]],[8,9,["H834"]],[9,14,["H3117"]],[14,16,["H4872"]],[16,17,["H7971"]],[17,21,["H3581"]],[21,23,["H227"]],[23,28,["H3581"]],[28,29,["H6258"]],[29,31,["H4421"]],[31,35,["H3318"]],[35,39,["H935"]]]},{"k":6199,"v":[[0,1,["H6258"]],[1,3,["H5414"]],[3,4,["(H853)"]],[4,5,["H2088"]],[5,6,["H2022"]],[6,7,["H834"]],[7,9,["H3068"]],[9,10,["H1696"]],[10,12,["H1931"]],[12,13,["H3117"]],[13,14,["H3588"]],[14,15,["H859"]],[15,16,["H8085"]],[16,18,["H1931"]],[18,19,["H3117"]],[19,20,["H3588"]],[20,22,["H6062"]],[22,24,["H8033"]],[24,28,["H5892"]],[28,30,["H1419"]],[30,32,["H1219"]],[32,33,["H194"]],[33,37,["H3068"]],[37,40,["H854"]],[40,50,["H3423"]],[50,51,["H834"]],[51,53,["H3068"]],[53,54,["H1696"]]]},{"k":6200,"v":[[0,2,["H3091"]],[2,3,["H1288"]],[3,6,["H5414"]],[6,8,["H3612"]],[8,10,["H1121"]],[10,12,["H3312","(H853)"]],[12,13,["H2275"]],[13,16,["H5159"]]]},{"k":6201,"v":[[0,1,["H2275"]],[1,2,["H5921","H3651"]],[2,3,["H1961"]],[3,5,["H5159"]],[5,7,["H3612"]],[7,9,["H1121"]],[9,11,["H3312"]],[11,13,["H7074"]],[13,14,["H5704"]],[14,15,["H2088"]],[15,16,["H3117"]],[16,17,["H3282"]],[17,18,["H834"]],[18,20,["H4390"]],[20,21,["H310"]],[21,23,["H3068"]],[23,24,["H430"]],[24,26,["H3478"]]]},{"k":6202,"v":[[0,3,["H8034"]],[3,5,["H2275"]],[5,6,["H6440"]],[6,8,["H7153"]],[8,13,["H1419"]],[13,14,["H120"]],[14,17,["H6062"]],[17,20,["H776"]],[20,22,["H8252"]],[22,24,["H4480","H4421"]]]},{"k":6203,"v":[[0,3,["H1961"]],[3,5,["H1486"]],[5,8,["H4294"]],[8,11,["H1121"]],[11,13,["H3063"]],[13,16,["H4940"]],[16,18,["H413"]],[18,20,["H1366"]],[20,22,["H123"]],[22,24,["H4057"]],[24,26,["H6790"]],[26,27,["H5045"]],[27,31,["H4480","H7097"]],[31,35,["H8486"]]]},{"k":6204,"v":[[0,3,["H5045"]],[3,4,["H1366"]],[4,5,["H1961"]],[5,8,["H4480","H7097"]],[8,11,["H4417"]],[11,12,["H3220"]],[12,13,["H4480"]],[13,15,["H3956"]],[15,17,["H6437"]],[17,18,["H5045"]]]},{"k":6205,"v":[[0,4,["H3318"]],[4,5,["H413"]],[5,8,["H4480","H5045"]],[8,10,["H4610"]],[10,13,["H5674"]],[13,15,["H6790"]],[15,18,["H5927"]],[18,22,["H4480","H5045"]],[22,24,["H6947"]],[24,27,["H5674"]],[27,29,["H2696"]],[29,32,["H5927"]],[32,34,["H146"]],[34,38,["H5437"]],[38,40,["H7173"]]]},{"k":6206,"v":[[0,5,["H5674"]],[5,6,["H6111"]],[6,9,["H3318"]],[9,12,["H5158"]],[12,14,["H4714"]],[14,18,["H8444"]],[18,21,["H1366"]],[21,22,["H1961"]],[22,25,["H3220"]],[25,26,["H2088"]],[26,28,["H1961"]],[28,30,["H5045"]],[30,31,["H1366"]]]},{"k":6207,"v":[[0,3,["H6924"]],[3,4,["H1366"]],[4,7,["H4417"]],[7,8,["H3220"]],[8,10,["H5704"]],[10,12,["H7097"]],[12,14,["H3383"]],[14,17,["H1366"]],[17,20,["H6828"]],[20,21,["H6285"]],[21,25,["H4480","H3956"]],[25,28,["H3220"]],[28,32,["H4480","H7097"]],[32,34,["H3383"]]]},{"k":6208,"v":[[0,3,["H1366"]],[3,5,["H5927"]],[5,7,["H1031"]],[7,10,["H5674"]],[10,13,["H4480","H6828"]],[13,15,["H1026"]],[15,18,["H1366"]],[18,20,["H5927"]],[20,23,["H68"]],[23,25,["H932"]],[25,27,["H1121"]],[27,29,["H7205"]]]},{"k":6209,"v":[[0,3,["H1366"]],[3,5,["H5927"]],[5,7,["H1688"]],[7,10,["H4480","H6010"]],[10,12,["H5911"]],[12,15,["H6828"]],[15,16,["H6437"]],[16,17,["H413"]],[17,18,["H1537"]],[18,19,["H834"]],[19,21,["H5227"]],[21,24,["H4608"]],[24,26,["H131"]],[26,27,["H834"]],[27,32,["H4480","H5045"]],[32,35,["H5158"]],[35,38,["H1366"]],[38,39,["H5674"]],[39,40,["H413"]],[40,42,["H4325"]],[42,44,["H5885"]],[44,48,["H8444"]],[48,50,["H1961"]],[50,51,["H413"]],[51,52,["H5883"]]]},{"k":6210,"v":[[0,3,["H1366"]],[3,5,["H5927"]],[5,8,["H1516"]],[8,11,["H1121"]],[11,13,["H2011"]],[13,14,["H413"]],[14,16,["H4480","H5045"]],[16,17,["H3802"]],[17,20,["H2983"]],[20,22,["H1931"]],[22,24,["H3389"]],[24,27,["H1366"]],[27,29,["H5927"]],[29,30,["H413"]],[30,32,["H7218"]],[32,35,["H2022"]],[35,36,["H834"]],[36,38,["H5921"]],[38,40,["H1516"]],[40,42,["H2011"]],[42,43,["H3220"]],[43,44,["H834"]],[44,48,["H7097"]],[48,51,["H6010"]],[51,54,["H7497"]],[54,55,["H6828"]]]},{"k":6211,"v":[[0,3,["H1366"]],[3,5,["H8388"]],[5,8,["H4480","H7218"]],[8,11,["H2022"]],[11,12,["H413"]],[12,14,["H4599"]],[14,17,["H4325"]],[17,19,["H5318"]],[19,22,["H3318"]],[22,23,["H413"]],[23,25,["H5892"]],[25,27,["H2022"]],[27,28,["H6085"]],[28,31,["H1366"]],[31,33,["H8388"]],[33,35,["H1173"]],[35,36,["H1931"]],[36,38,["H7157"]]]},{"k":6212,"v":[[0,3,["H1366"]],[3,4,["H5437"]],[4,6,["H4480","H1173"]],[6,7,["H3220"]],[7,8,["H413"]],[8,9,["H2022"]],[9,10,["H8165"]],[10,13,["H5674"]],[13,14,["H413"]],[14,16,["H3802"]],[16,18,["H2022"]],[18,19,["H3297"]],[19,20,["H1931"]],[20,22,["H3693"]],[22,26,["H4480","H6828"]],[26,29,["H3381"]],[29,31,["H1053"]],[31,34,["H5674"]],[34,36,["H8553"]]]},{"k":6213,"v":[[0,3,["H1366"]],[3,5,["H3318"]],[5,6,["H413"]],[6,8,["H3802"]],[8,10,["H6138"]],[10,11,["H6828"]],[11,14,["H1366"]],[14,16,["H8388"]],[16,18,["H7942"]],[18,21,["H5674"]],[21,23,["H2022"]],[23,24,["H1173"]],[24,27,["H3318"]],[27,29,["H2995"]],[29,33,["H8444"]],[33,36,["H1366"]],[36,37,["H1931"]],[37,40,["H3220"]]]},{"k":6214,"v":[[0,3,["H3220"]],[3,4,["H1366"]],[4,8,["H1419"]],[8,9,["H3220"]],[9,12,["H1366"]],[12,14,["H2088"]],[14,17,["H1366"]],[17,20,["H1121"]],[20,22,["H3063"]],[22,24,["H5439"]],[24,28,["H4940"]]]},{"k":6215,"v":[[0,3,["H3612"]],[3,5,["H1121"]],[5,7,["H3312"]],[7,9,["H5414"]],[9,11,["H2506"]],[11,12,["H8432"]],[12,14,["H1121"]],[14,16,["H3063"]],[16,17,["H413"]],[17,20,["H6310"]],[20,23,["H3068"]],[23,25,["H3091"]],[25,26,["(H853)"]],[26,28,["H7151"]],[28,30,["H704"]],[30,32,["H1"]],[32,34,["H6061"]],[34,35,["H1931"]],[35,38,["H2275"]]]},{"k":6216,"v":[[0,2,["H3612"]],[2,3,["H3423"]],[3,4,["H4480","H8033","(H853)"]],[4,6,["H7969"]],[6,7,["H1121"]],[7,9,["H6061","(H853)"]],[9,10,["H8344"]],[10,12,["H289"]],[12,14,["H8526"]],[14,16,["H3211"]],[16,18,["H6061"]]]},{"k":6217,"v":[[0,4,["H5927"]],[4,5,["H4480","H8033"]],[5,6,["H413"]],[6,8,["H3427"]],[8,10,["H1688"]],[10,13,["H8034"]],[13,15,["H1688"]],[15,16,["H6440"]],[16,18,["H7158"]]]},{"k":6218,"v":[[0,2,["H3612"]],[2,3,["H559"]],[3,5,["H834"]],[5,6,["H5221","(H853)"]],[6,7,["H7158"]],[7,9,["H3920"]],[9,15,["H5414","(H853)"]],[15,16,["H5915"]],[16,18,["H1323"]],[18,20,["H802"]]]},{"k":6219,"v":[[0,2,["H6274"]],[2,4,["H1121"]],[4,6,["H7073"]],[6,8,["H251"]],[8,10,["H3612"]],[10,11,["H3920"]],[11,15,["H5414"]],[15,16,["(H853)"]],[16,17,["H5915"]],[17,19,["H1323"]],[19,21,["H802"]]]},{"k":6220,"v":[[0,5,["H1961"]],[5,8,["H935"]],[8,13,["H5496"]],[13,16,["H7592"]],[16,17,["H4480","H854"]],[17,19,["H1"]],[19,21,["H7704"]],[21,24,["H6795"]],[24,25,["H4480","H5921"]],[25,27,["H2543"]],[27,29,["H3612"]],[29,30,["H559"]],[30,33,["H4100"]],[33,35,[]]]},{"k":6221,"v":[[0,2,["H559"]],[2,3,["H5414"]],[3,6,["H1293"]],[6,7,["H3588"]],[7,10,["H5414"]],[10,13,["H5045"]],[13,14,["H776"]],[14,15,["H5414"]],[15,18,["H1543"]],[18,20,["H4325"]],[20,23,["H5414"]],[23,24,["(H853)"]],[24,26,["H5942"]],[26,27,["H1543"]],[27,30,["H8482"]],[30,31,["H1543"]]]},{"k":6222,"v":[[0,1,["H2063"]],[1,4,["H5159"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H3063"]],[12,16,["H4940"]]]},{"k":6223,"v":[[0,3,["H4480","H7097"]],[3,4,["H5892"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H3063"]],[12,13,["H413"]],[13,15,["H1366"]],[15,17,["H123"]],[17,18,["H5045"]],[18,19,["H1961"]],[19,20,["H6909"]],[20,22,["H5740"]],[22,24,["H3017"]]]},{"k":6224,"v":[[0,2,["H7016"]],[2,4,["H1776"]],[4,6,["H5735"]]]},{"k":6225,"v":[[0,2,["H6943"]],[2,4,["H2674"]],[4,6,["H3497"]]]},{"k":6226,"v":[[0,1,["H2128"]],[1,3,["H2928"]],[3,5,["H1175"]]]},{"k":6227,"v":[[0,2,["H2674"]],[2,3,["H2675"]],[3,5,["H7152"]],[5,7,["H2696"]],[7,8,["H1931"]],[8,10,["H2674"]]]},{"k":6228,"v":[[0,1,["H538"]],[1,3,["H8090"]],[3,5,["H4137"]]]},{"k":6229,"v":[[0,2,["H2693"]],[2,4,["H2829"]],[4,6,["H1046"]]]},{"k":6230,"v":[[0,2,["H2705"]],[2,4,["H884"]],[4,6,["H964"]]]},{"k":6231,"v":[[0,1,["H1173"]],[1,3,["H5864"]],[3,5,["H6107"]]]},{"k":6232,"v":[[0,2,["H513"]],[2,4,["H3686"]],[4,6,["H2767"]]]},{"k":6233,"v":[[0,2,["H6860"]],[2,4,["H4089"]],[4,6,["H5578"]]]},{"k":6234,"v":[[0,2,["H3822"]],[2,4,["H7978"]],[4,6,["H5871"]],[6,8,["H7417"]],[8,9,["H3605"]],[9,11,["H5892"]],[11,13,["H6242"]],[13,15,["H8672"]],[15,18,["H2691"]]]},{"k":6235,"v":[[0,4,["H8219"]],[4,5,["H847"]],[5,7,["H6881"]],[7,9,["H823"]]]},{"k":6236,"v":[[0,2,["H2182"]],[2,4,["H5873"]],[4,5,["H8599"]],[5,7,["H5879"]]]},{"k":6237,"v":[[0,1,["H3412"]],[1,3,["H5725"]],[3,4,["H7755"]],[4,6,["H5825"]]]},{"k":6238,"v":[[0,2,["H8189"]],[2,4,["H5723"]],[4,6,["H1449"]],[6,8,["H1453"]],[8,9,["H702","H6240"]],[9,10,["H5892"]],[10,13,["H2691"]]]},{"k":6239,"v":[[0,1,["H6799"]],[1,3,["H2322"]],[3,5,["H4028"]]]},{"k":6240,"v":[[0,2,["H1810"]],[2,4,["H4708"]],[4,6,["H3371"]]]},{"k":6241,"v":[[0,1,["H3923"]],[1,3,["H1218"]],[3,5,["H5700"]]]},{"k":6242,"v":[[0,2,["H3522"]],[2,4,["H3903"]],[4,6,["H3798"]]]},{"k":6243,"v":[[0,2,["H1450"]],[2,3,["H1016"]],[3,5,["H5279"]],[5,7,["H4719"]],[7,8,["H8337","H6240"]],[8,9,["H5892"]],[9,12,["H2691"]]]},{"k":6244,"v":[[0,1,["H3841"]],[1,3,["H6281"]],[3,5,["H6228"]]]},{"k":6245,"v":[[0,2,["H3316"]],[2,4,["H823"]],[4,6,["H5334"]]]},{"k":6246,"v":[[0,2,["H7084"]],[2,4,["H392"]],[4,6,["H4762"]],[6,7,["H8672"]],[7,8,["H5892"]],[8,11,["H2691"]]]},{"k":6247,"v":[[0,1,["H6138"]],[1,4,["H1323"]],[4,7,["H2691"]]]},{"k":6248,"v":[[0,2,["H4480","H6138"]],[2,6,["H3220"]],[6,7,["H3605"]],[7,8,["H834"]],[8,10,["H5921","H3027"]],[10,11,["H795"]],[11,14,["H2691"]]]},{"k":6249,"v":[[0,1,["H795"]],[1,4,["H1323"]],[4,7,["H2691"]],[7,8,["H5804"]],[8,11,["H1323"]],[11,14,["H2691"]],[14,15,["H5704"]],[15,17,["H5158"]],[17,19,["H4714"]],[19,22,["H1419"]],[22,23,["H3220"]],[23,26,["H1366"]],[26,27,[]]]},{"k":6250,"v":[[0,4,["H2022"]],[4,5,["H8069"]],[5,7,["H3492"]],[7,9,["H7755"]]]},{"k":6251,"v":[[0,2,["H1837"]],[2,4,["H7158"]],[4,5,["H1931"]],[5,7,["H1688"]]]},{"k":6252,"v":[[0,2,["H6024"]],[2,4,["H851"]],[4,6,["H6044"]]]},{"k":6253,"v":[[0,2,["H1657"]],[2,4,["H2473"]],[4,6,["H1542"]],[6,7,["H259","H6240"]],[7,8,["H5892"]],[8,11,["H2691"]]]},{"k":6254,"v":[[0,1,["H694"]],[1,3,["H1746"]],[3,5,["H824"]]]},{"k":6255,"v":[[0,2,["H3241"]],[2,4,["H1054"]],[4,6,["H664"]]]},{"k":6256,"v":[[0,2,["H2547"]],[2,4,["H7153"]],[4,5,["H1931"]],[5,7,["H2275"]],[7,9,["H6730"]],[9,10,["H8672"]],[10,11,["H5892"]],[11,14,["H2691"]]]},{"k":6257,"v":[[0,1,["H4584"]],[1,2,["H3760"]],[2,4,["H2128"]],[4,6,["H3194"]]]},{"k":6258,"v":[[0,2,["H3157"]],[2,4,["H3347"]],[4,6,["H2182"]]]},{"k":6259,"v":[[0,1,["H7014"]],[1,2,["H1390"]],[2,4,["H8553"]],[4,5,["H6235"]],[5,6,["H5892"]],[6,9,["H2691"]]]},{"k":6260,"v":[[0,1,["H2478"]],[1,2,["H1049"]],[2,4,["H1446"]]]},{"k":6261,"v":[[0,2,["H4638"]],[2,4,["H1042"]],[4,6,["H515"]],[6,7,["H8337"]],[7,8,["H5892"]],[8,11,["H2691"]]]},{"k":6262,"v":[[0,1,["H7154"]],[1,2,["H1931"]],[2,4,["H7157"]],[4,6,["H7237"]],[6,7,["H8147"]],[7,8,["H5892"]],[8,11,["H2691"]]]},{"k":6263,"v":[[0,3,["H4057"]],[3,4,["H1026"]],[4,5,["H4081"]],[5,7,["H5527"]]]},{"k":6264,"v":[[0,2,["H5044"]],[2,5,["H5892"]],[5,7,["H5898"]],[7,9,["H5872"]],[9,10,["H8337"]],[10,11,["H5892"]],[11,14,["H2691"]]]},{"k":6265,"v":[[0,4,["H2983"]],[4,6,["H3427"]],[6,8,["H3389"]],[8,10,["H1121"]],[10,12,["H3063"]],[12,13,["H3201"]],[13,14,["H3808"]],[14,17,["H3423"]],[17,20,["H2983"]],[20,21,["H3427"]],[21,22,["H854"]],[22,24,["H1121"]],[24,26,["H3063"]],[26,28,["H3389"]],[28,29,["H5704"]],[29,30,["H2088"]],[30,31,["H3117"]]]},{"k":6266,"v":[[0,3,["H1486"]],[3,6,["H1121"]],[6,8,["H3130"]],[8,9,["H3318"]],[9,11,["H4480","H3383"]],[11,13,["H3405"]],[13,16,["H4325"]],[16,18,["H3405"]],[18,21,["H4217"]],[21,24,["H4057"]],[24,27,["H5927"]],[27,29,["H4480","H3405"]],[29,31,["H2022"]],[31,32,["H1008"]]]},{"k":6267,"v":[[0,3,["H3318"]],[3,5,["H4480","H1008"]],[5,7,["H3870"]],[7,10,["H5674"]],[10,11,["H413"]],[11,13,["H1366"]],[13,15,["H757"]],[15,17,["H5852"]]]},{"k":6268,"v":[[0,3,["H3381"]],[3,4,["H3220"]],[4,5,["H413"]],[5,7,["H1366"]],[7,9,["H3311"]],[9,10,["H5704"]],[10,12,["H1366"]],[12,14,["H1032"]],[14,16,["H8481"]],[16,18,["H5704"]],[18,19,["H1507"]],[19,23,["H8444"]],[23,25,["H1961"]],[25,28,["H3220"]]]},{"k":6269,"v":[[0,3,["H1121"]],[3,5,["H3130"]],[5,6,["H4519"]],[6,8,["H669"]],[8,11,["H5157"]]]},{"k":6270,"v":[[0,3,["H1366"]],[3,6,["H1121"]],[6,8,["H669"]],[8,12,["H4940"]],[12,13,["H1961"]],[13,17,["H1366"]],[17,20,["H5159"]],[20,23,["H4217"]],[23,25,["H1961"]],[25,26,["H5853"]],[26,27,["H5704"]],[27,28,["H1032"]],[28,30,["H5945"]]]},{"k":6271,"v":[[0,3,["H1366"]],[3,5,["H3318"]],[5,8,["H3220"]],[8,10,["H4366"]],[10,14,["H4480","H6828"]],[14,17,["H1366"]],[17,19,["H5437"]],[19,20,["H4217"]],[20,22,["H8387"]],[22,25,["H5674"]],[25,29,["H4480","H4217"]],[29,31,["H3239"]]]},{"k":6272,"v":[[0,4,["H3381"]],[4,6,["H4480","H3239"]],[6,8,["H5852"]],[8,11,["H5292"]],[11,13,["H6293"]],[13,15,["H3405"]],[15,18,["H3318"]],[18,20,["H3383"]]]},{"k":6273,"v":[[0,2,["H1366"]],[2,4,["H1980"]],[4,6,["H4480","H8599"]],[6,7,["H3220"]],[7,10,["H5158"]],[10,11,["H7071"]],[11,15,["H8444"]],[15,17,["H1961"]],[17,20,["H3220"]],[20,21,["H2063"]],[21,24,["H5159"]],[24,27,["H4294"]],[27,30,["H1121"]],[30,32,["H669"]],[32,35,["H4940"]]]},{"k":6274,"v":[[0,3,["H3995"]],[3,4,["H5892"]],[4,7,["H1121"]],[7,9,["H669"]],[9,11,["H8432"]],[11,13,["H5159"]],[13,16,["H1121"]],[16,18,["H4519"]],[18,19,["H3605"]],[19,21,["H5892"]],[21,24,["H2691"]]]},{"k":6275,"v":[[0,5,["H3423","H3808","(H853)"]],[5,7,["H3669"]],[7,9,["H3427"]],[9,11,["H1507"]],[11,14,["H3669"]],[14,15,["H3427"]],[15,16,["H7130"]],[16,18,["H669"]],[18,19,["H5704"]],[19,20,["H2088"]],[20,21,["H3117"]],[21,23,["H5647"]],[23,25,["H4522"]]]},{"k":6276,"v":[[0,2,["H1961"]],[2,5,["H1486"]],[5,8,["H4294"]],[8,10,["H4519"]],[10,11,["H3588"]],[11,12,["H1931"]],[12,15,["H1060"]],[15,17,["H3130"]],[17,21,["H4353"]],[21,23,["H1060"]],[23,25,["H4519"]],[25,27,["H1"]],[27,29,["H1568"]],[29,30,["H3588"]],[30,31,["H1931"]],[31,32,["H1961"]],[32,34,["H376"]],[34,36,["H4421"]],[36,39,["H1961"]],[39,40,["H1568"]],[40,42,["H1316"]]]},{"k":6277,"v":[[0,2,["H1961"]],[2,8,["H3498"]],[8,11,["H1121"]],[11,13,["H4519"]],[13,16,["H4940"]],[16,19,["H1121"]],[19,21,["H44"]],[21,25,["H1121"]],[25,27,["H2507"]],[27,31,["H1121"]],[31,33,["H844"]],[33,37,["H1121"]],[37,39,["H7928"]],[39,43,["H1121"]],[43,45,["H2660"]],[45,49,["H1121"]],[49,51,["H8061"]],[51,52,["H428"]],[52,55,["H2145"]],[55,56,["H1121"]],[56,58,["H4519"]],[58,60,["H1121"]],[60,62,["H3130"]],[62,65,["H4940"]]]},{"k":6278,"v":[[0,2,["H6765"]],[2,4,["H1121"]],[4,6,["H2660"]],[6,8,["H1121"]],[8,10,["H1568"]],[10,12,["H1121"]],[12,14,["H4353"]],[14,16,["H1121"]],[16,18,["H4519"]],[18,19,["H1961"]],[19,20,["H3808"]],[20,21,["H1121"]],[21,22,["H3588","H518"]],[22,23,["H1323"]],[23,25,["H428"]],[25,28,["H8034"]],[28,31,["H1323"]],[31,32,["H4244"]],[32,34,["H5270"]],[34,35,["H2295"]],[35,36,["H4435"]],[36,38,["H8656"]]]},{"k":6279,"v":[[0,4,["H7126"]],[4,5,["H6440"]],[5,6,["H499"]],[6,8,["H3548"]],[8,10,["H6440"]],[10,11,["H3091"]],[11,13,["H1121"]],[13,15,["H5126"]],[15,17,["H6440"]],[17,19,["H5387"]],[19,20,["H559"]],[20,22,["H3068"]],[22,23,["H6680","(H853)"]],[23,24,["H4872"]],[24,26,["H5414"]],[26,29,["H5159"]],[29,30,["H8432"]],[30,32,["H251"]],[32,34,["H413"]],[34,37,["H6310"]],[37,40,["H3068"]],[40,42,["H5414"]],[42,45,["H5159"]],[45,46,["H8432"]],[46,48,["H251"]],[48,51,["H1"]]]},{"k":6280,"v":[[0,3,["H5307"]],[3,4,["H6235"]],[4,5,["H2256"]],[5,7,["H4519"]],[7,8,["H905"]],[8,10,["H4480","H776"]],[10,12,["H1568"]],[12,14,["H1316"]],[14,15,["H834"]],[15,20,["H5676"]],[20,21,["H3383"]]]},{"k":6281,"v":[[0,1,["H3588"]],[1,3,["H1323"]],[3,5,["H4519"]],[5,8,["H5157","H5159"]],[8,9,["H8432"]],[9,11,["H1121"]],[11,14,["H3498"]],[14,16,["H4519"]],[16,17,["H1121"]],[17,18,["H1961"]],[18,20,["H776"]],[20,22,["H1568"]]]},{"k":6282,"v":[[0,3,["H1366"]],[3,5,["H4519"]],[5,6,["H1961"]],[6,8,["H4480","H836"]],[8,10,["H4366"]],[10,11,["H834"]],[11,13,["H5921","H6440"]],[13,14,["H7927"]],[14,17,["H1366"]],[17,19,["H1980"]],[19,20,["H413"]],[20,23,["H3225"]],[23,24,["H413"]],[24,26,["H3427"]],[26,28,["H5887"]]]},{"k":6283,"v":[[0,2,["H4519"]],[2,3,["H1961"]],[3,5,["H776"]],[5,7,["H8599"]],[7,9,["H8599"]],[9,10,["H413"]],[10,12,["H1366"]],[12,14,["H4519"]],[14,18,["H1121"]],[18,20,["H669"]]]},{"k":6284,"v":[[0,3,["H1366"]],[3,4,["H3381"]],[4,7,["H5158"]],[7,8,["H7071"]],[8,9,["H5045"]],[9,12,["H5158"]],[12,13,["H428"]],[13,14,["H5892"]],[14,16,["H669"]],[16,18,["H8432"]],[18,20,["H5892"]],[20,22,["H4519"]],[22,24,["H1366"]],[24,26,["H4519"]],[26,32,["H4480","H6828"]],[32,35,["H5158"]],[35,38,["H8444"]],[38,41,["H1961"]],[41,44,["H3220"]]]},{"k":6285,"v":[[0,1,["H5045"]],[1,4,["H669"]],[4,6,["H6828"]],[6,9,["H4519"]],[9,12,["H3220"]],[12,13,["H1961"]],[13,15,["H1366"]],[15,19,["H6293"]],[19,21,["H836"]],[21,24,["H4480","H6828"]],[24,27,["H3485"]],[27,30,["H4480","H4217"]]]},{"k":6286,"v":[[0,2,["H4519"]],[2,3,["H1961"]],[3,5,["H3485"]],[5,8,["H836"]],[8,9,["H1052"]],[9,12,["H1323"]],[12,14,["H2991"]],[14,17,["H1323"]],[17,20,["H3427"]],[20,22,["H1756"]],[22,25,["H1323"]],[25,28,["H3427"]],[28,30,["H5874"]],[30,33,["H1323"]],[33,36,["H3427"]],[36,38,["H8590"]],[38,41,["H1323"]],[41,44,["H3427"]],[44,46,["H4023"]],[46,49,["H1323"]],[49,51,["H7969"]],[51,52,["H5316"]]]},{"k":6287,"v":[[0,3,["H1121"]],[3,5,["H4519"]],[5,6,["H3201"]],[6,7,["H3808"]],[7,9,["H3423"]],[9,12,["(H853)"]],[12,13,["H428"]],[13,14,["H5892"]],[14,17,["H3669"]],[17,18,["H2974"]],[18,19,["H3427"]],[19,21,["H2088"]],[21,22,["H776"]]]},{"k":6288,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,13,["H2388"]],[13,16,["H5414","(H853)"]],[16,18,["H3669"]],[18,20,["H4522"]],[20,23,["H3808"]],[23,27,["H3423","H3423"]]]},{"k":6289,"v":[[0,3,["H1121"]],[3,5,["H3130"]],[5,6,["H1696"]],[6,7,["H854","(H853)"]],[7,8,["H3091"]],[8,9,["H559"]],[9,10,["H4069"]],[10,13,["H5414"]],[13,16,["H259"]],[16,17,["H1486"]],[17,19,["H259"]],[19,20,["H2256"]],[20,22,["H5159"]],[22,24,["H589"]],[24,27,["H7227"]],[27,28,["H5971"]],[28,29,["H5704"]],[29,32,["H3068"]],[32,34,["H1288"]],[34,36,["H834","H5704","H3541"]]]},{"k":6290,"v":[[0,2,["H3091"]],[2,3,["H559","H413"]],[3,5,["H518"]],[5,6,["H859"]],[6,9,["H7227"]],[9,10,["H5971"]],[10,14,["H5927"]],[14,17,["H3293"]],[17,21,["H1254"]],[21,24,["H8033"]],[24,27,["H776"]],[27,30,["H6522"]],[30,34,["H7497"]],[34,35,["H3588"]],[35,36,["H2022"]],[36,37,["H669"]],[37,40,["H213"]],[40,42,[]]]},{"k":6291,"v":[[0,3,["H1121"]],[3,5,["H3130"]],[5,6,["H559"]],[6,8,["H2022"]],[8,10,["H3808"]],[10,11,["H4672"]],[11,15,["H3605"]],[15,17,["H3669"]],[17,19,["H3427"]],[19,22,["H776"]],[22,25,["H6010"]],[25,27,["H7393"]],[27,29,["H1270"]],[29,32,["H834"]],[32,35,["H1052"]],[35,38,["H1323"]],[38,41,["H834"]],[41,45,["H6010"]],[45,47,["H3157"]]]},{"k":6292,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1004"]],[6,8,["H3130"]],[8,11,["H669"]],[11,14,["H4519"]],[14,15,["H559"]],[15,16,["H859"]],[16,19,["H7227"]],[19,20,["H5971"]],[20,23,["H1419"]],[23,24,["H3581"]],[24,27,["H3808"]],[27,28,["H1961"]],[28,29,["H259"]],[29,30,["H1486"]],[30,31,[]]]},{"k":6293,"v":[[0,1,["H3588"]],[1,3,["H2022"]],[3,5,["H1961"]],[5,7,["H3588"]],[7,8,["H1931"]],[8,11,["H3293"]],[11,17,["H1254"]],[17,20,["H8444"]],[20,24,["H1931"]],[24,26,["H3588"]],[26,30,["H3423","(H853)"]],[30,32,["H3669"]],[32,33,["H3588"]],[33,36,["H1270"]],[36,37,["H7393"]],[37,39,["H3588"]],[39,40,["H1931"]],[40,42,["H2389"]]]},{"k":6294,"v":[[0,3,["H3605"]],[3,4,["H5712"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,11,["H6950"]],[11,13,["H7887"]],[13,16,["H7931","(H853)"]],[16,18,["H168"]],[18,21,["H4150"]],[21,22,["H8033"]],[22,25,["H776"]],[25,27,["H3533"]],[27,28,["H6440"]],[28,29,[]]]},{"k":6295,"v":[[0,3,["H3498"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,9,["H7651"]],[9,10,["H7626"]],[10,11,["H834"]],[11,13,["H3808"]],[13,15,["H2505","(H853)"]],[15,17,["H5159"]]]},{"k":6296,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,10,["H5704","H575"]],[10,12,["H859"]],[12,13,["H7503"]],[13,15,["H935"]],[15,17,["H3423","(H853)"]],[17,19,["H776"]],[19,20,["H834"]],[20,22,["H3068"]],[22,23,["H430"]],[23,26,["H1"]],[26,28,["H5414"]],[28,29,[]]]},{"k":6297,"v":[[0,1,["H3051"]],[1,6,["H7969"]],[6,7,["H376"]],[7,10,["H7626"]],[10,14,["H7971"]],[14,19,["H6965"]],[19,21,["H1980"]],[21,24,["H776"]],[24,26,["H3789"]],[26,28,["H6310"]],[28,31,["H5159"]],[31,37,["H935"]],[37,39,["H413"]],[39,40,[]]]},{"k":6298,"v":[[0,4,["H2505"]],[4,7,["H7651"]],[7,8,["H2506"]],[8,9,["H3063"]],[9,11,["H5975"]],[11,12,["H5921"]],[12,14,["H1366"]],[14,17,["H4480","H5045"]],[17,20,["H1004"]],[20,22,["H3130"]],[22,24,["H5975"]],[24,25,["H5921"]],[25,27,["H1366"]],[27,30,["H4480","H6828"]]]},{"k":6299,"v":[[0,1,["H859"]],[1,4,["H3789","(H853)"]],[4,6,["H776"]],[6,8,["H7651"]],[8,9,["H2506"]],[9,11,["H935"]],[11,14,["H2008"]],[14,15,["H413"]],[15,20,["H3384"]],[20,21,["H1486"]],[21,24,["H6311"]],[24,25,["H6440"]],[25,27,["H3068"]],[27,29,["H430"]]]},{"k":6300,"v":[[0,1,["H3588"]],[1,3,["H3881"]],[3,5,["H369"]],[5,6,["H2506"]],[6,7,["H7130"]],[7,9,["H3588"]],[9,11,["H3550"]],[11,14,["H3068"]],[14,17,["H5159"]],[17,19,["H1410"]],[19,21,["H7205"]],[21,23,["H2677"]],[23,25,["H7626"]],[25,27,["H4519"]],[27,29,["H3947"]],[29,31,["H5159"]],[31,32,["H4480","H5676"]],[32,33,["H3383"]],[33,36,["H4217"]],[36,37,["H834"]],[37,38,["H4872"]],[38,40,["H5650"]],[40,43,["H3068"]],[43,44,["H5414"]],[44,45,[]]]},{"k":6301,"v":[[0,3,["H376"]],[3,4,["H6965"]],[4,7,["H1980"]],[7,9,["H3091"]],[9,10,["H6680","(H853)"]],[10,13,["H1980"]],[13,15,["H3789","(H853)"]],[15,17,["H776"]],[17,18,["H559"]],[18,19,["H1980"]],[19,21,["H1980"]],[21,24,["H776"]],[24,26,["H3789"]],[26,30,["H7725"]],[30,31,["H413"]],[31,36,["H6311"]],[36,37,["H7993"]],[37,38,["H1486"]],[38,41,["H6440"]],[41,43,["H3068"]],[43,45,["H7887"]]]},{"k":6302,"v":[[0,3,["H376"]],[3,4,["H1980"]],[4,7,["H5674"]],[7,9,["H776"]],[9,11,["H3789"]],[11,14,["H5892"]],[14,16,["H7651"]],[16,17,["H2506"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,22,["H935"]],[22,24,["H413"]],[24,25,["H3091"]],[25,26,["H413"]],[26,28,["H4264"]],[28,30,["H7887"]]]},{"k":6303,"v":[[0,2,["H3091"]],[2,3,["H7993"]],[3,4,["H1486"]],[4,8,["H7887"]],[8,9,["H6440"]],[9,11,["H3068"]],[11,13,["H8033"]],[13,14,["H3091"]],[14,15,["H2505","(H853)"]],[15,17,["H776"]],[17,20,["H1121"]],[20,22,["H3478"]],[22,26,["H4256"]]]},{"k":6304,"v":[[0,3,["H1486"]],[3,6,["H4294"]],[6,9,["H1121"]],[9,11,["H1144"]],[11,13,["H5927"]],[13,17,["H4940"]],[17,20,["H1366"]],[20,23,["H1486"]],[23,25,["H3318"]],[25,26,["H996"]],[26,28,["H1121"]],[28,30,["H3063"]],[30,33,["H1121"]],[33,35,["H3130"]]]},{"k":6305,"v":[[0,3,["H1366"]],[3,6,["H6828"]],[6,7,["H6285"]],[7,8,["H1961"]],[8,9,["H4480"]],[9,10,["H3383"]],[10,13,["H1366"]],[13,15,["H5927"]],[15,16,["H413"]],[16,18,["H3802"]],[18,20,["H3405"]],[20,24,["H4480","H6828"]],[24,27,["H5927"]],[27,30,["H2022"]],[30,31,["H3220"]],[31,35,["H8444"]],[35,37,["H1961"]],[37,40,["H4057"]],[40,42,["H1007"]]]},{"k":6306,"v":[[0,3,["H1366"]],[3,5,["H5674"]],[5,7,["H4480","H8033"]],[7,9,["H3870"]],[9,10,["H413"]],[10,12,["H3802"]],[12,14,["H3870"]],[14,15,["H1931"]],[15,17,["H1008"]],[17,18,["H5045"]],[18,21,["H1366"]],[21,22,["H3381"]],[22,24,["H5853"]],[24,25,["H5921"]],[25,27,["H2022"]],[27,28,["H834"]],[28,33,["H4480","H5045"]],[33,36,["H8481"]],[36,37,["H1032"]]]},{"k":6307,"v":[[0,3,["H1366"]],[3,5,["H8388"]],[5,8,["H5437"]],[8,10,["H6285"]],[10,13,["H3220"]],[13,14,["H5045"]],[14,15,["H4480"]],[15,17,["H2022"]],[17,18,["H834"]],[18,20,["H5921","H6440"]],[20,21,["H1032"]],[21,22,["H5045"]],[22,26,["H8444"]],[26,28,["H1961"]],[28,29,["H413"]],[29,30,["H7154"]],[30,31,["H1931"]],[31,33,["H7157"]],[33,35,["H5892"]],[35,38,["H1121"]],[38,40,["H3063"]],[40,41,["H2063"]],[41,44,["H3220"]],[44,45,["H6285"]]]},{"k":6308,"v":[[0,3,["H5045"]],[3,4,["H6285"]],[4,8,["H4480","H7097"]],[8,10,["H7157"]],[10,13,["H1366"]],[13,15,["H3318"]],[15,18,["H3220"]],[18,21,["H3318"]],[21,22,["H413"]],[22,24,["H4599"]],[24,26,["H4325"]],[26,28,["H5318"]]]},{"k":6309,"v":[[0,3,["H1366"]],[3,5,["H3381"]],[5,6,["H413"]],[6,8,["H7097"]],[8,11,["H2022"]],[11,12,["H834"]],[12,14,["H5921","H6440"]],[14,16,["H1516"]],[16,19,["H1121"]],[19,21,["H2011"]],[21,23,["H834"]],[23,27,["H6010"]],[27,30,["H7497"]],[30,33,["H6828"]],[33,35,["H3381"]],[35,38,["H1516"]],[38,40,["H2011"]],[40,41,["H413"]],[41,43,["H3802"]],[43,45,["H2983"]],[45,48,["H5045"]],[48,50,["H3381"]],[50,52,["H5883"]]]},{"k":6310,"v":[[0,3,["H8388"]],[3,6,["H4480","H6828"]],[6,9,["H3318"]],[9,11,["H5885"]],[11,14,["H3318"]],[14,15,["H413"]],[15,16,["H1553"]],[16,17,["H834"]],[17,20,["H5227"]],[20,23,["H4608"]],[23,25,["H131"]],[25,27,["H3381"]],[27,30,["H68"]],[30,32,["H932"]],[32,34,["H1121"]],[34,36,["H7205"]]]},{"k":6311,"v":[[0,2,["H5674"]],[2,4,["H413"]],[4,6,["H3802"]],[6,8,["H4136"]],[8,9,["H6160"]],[9,10,["H6828"]],[10,13,["H3381"]],[13,15,["H6160"]]]},{"k":6312,"v":[[0,3,["H1366"]],[3,5,["H5674"]],[5,6,["H413"]],[6,8,["H3802"]],[8,10,["H1031"]],[10,11,["H6828"]],[11,14,["H8444"]],[14,17,["H1366"]],[17,18,["H1961"]],[18,19,["H413"]],[19,21,["H6828"]],[21,22,["H3956"]],[22,25,["H4417"]],[25,26,["H3220"]],[26,27,["H413"]],[27,29,["H5045"]],[29,30,["H7097"]],[30,32,["H3383"]],[32,33,["H2088"]],[33,36,["H5045"]],[36,37,["H1366"]]]},{"k":6313,"v":[[0,2,["H3383"]],[2,5,["H1379"]],[5,10,["H6924"]],[10,11,["H6285"]],[11,12,["H2063"]],[12,15,["H5159"]],[15,18,["H1121"]],[18,20,["H1144"]],[20,23,["H1367"]],[23,26,["H5439"]],[26,30,["H4940"]]]},{"k":6314,"v":[[0,3,["H5892"]],[3,6,["H4294"]],[6,9,["H1121"]],[9,11,["H1144"]],[11,15,["H4940"]],[15,16,["H1961"]],[16,17,["H3405"]],[17,19,["H1031"]],[19,22,["H6010"]],[22,24,["H7104"]]]},{"k":6315,"v":[[0,2,["H1026"]],[2,4,["H6787"]],[4,6,["H1008"]]]},{"k":6316,"v":[[0,2,["H5761"]],[2,4,["H6511"]],[4,6,["H6084"]]]},{"k":6317,"v":[[0,2,["H3726"]],[2,4,["H6078"]],[4,6,["H1387"]],[6,7,["H8147","H6240"]],[7,8,["H5892"]],[8,11,["H2691"]]]},{"k":6318,"v":[[0,1,["H1391"]],[1,3,["H7414"]],[3,5,["H881"]]]},{"k":6319,"v":[[0,2,["H4708"]],[2,4,["H3716"]],[4,6,["H4681"]]]},{"k":6320,"v":[[0,2,["H7552"]],[2,4,["H3416"]],[4,6,["H8634"]]]},{"k":6321,"v":[[0,2,["H6762"]],[2,3,["H507"]],[3,5,["H2983"]],[5,6,["H1931"]],[6,8,["H3389"]],[8,9,["H1394"]],[9,11,["H7157"]],[11,12,["H702","H6240"]],[12,13,["H5892"]],[13,16,["H2691"]],[16,17,["H2063"]],[17,20,["H5159"]],[20,23,["H1121"]],[23,25,["H1144"]],[25,29,["H4940"]]]},{"k":6322,"v":[[0,3,["H8145"]],[3,4,["H1486"]],[4,6,["H3318"]],[6,8,["H8095"]],[8,12,["H4294"]],[12,15,["H1121"]],[15,17,["H8095"]],[17,21,["H4940"]],[21,24,["H5159"]],[24,25,["H1961"]],[25,26,["H8432"]],[26,28,["H5159"]],[28,31,["H1121"]],[31,33,["H3063"]]]},{"k":6323,"v":[[0,3,["H1961"]],[3,6,["H5159"]],[6,7,["H884"]],[7,9,["H7652"]],[9,11,["H4137"]]]},{"k":6324,"v":[[0,2,["H2705"]],[2,4,["H1088"]],[4,6,["H6107"]]]},{"k":6325,"v":[[0,2,["H513"]],[2,4,["H1329"]],[4,6,["H2767"]]]},{"k":6326,"v":[[0,2,["H6860"]],[2,4,["H1024"]],[4,6,["H2701"]]]},{"k":6327,"v":[[0,2,["H1034"]],[2,4,["H8287"]],[4,5,["H7969","H6240"]],[5,6,["H5892"]],[6,9,["H2691"]]]},{"k":6328,"v":[[0,1,["H5871"]],[1,2,["H7417"]],[2,4,["H6281"]],[4,6,["H6228"]],[6,7,["H702"]],[7,8,["H5892"]],[8,11,["H2691"]]]},{"k":6329,"v":[[0,2,["H3605"]],[2,4,["H2691"]],[4,5,["H834"]],[5,8,["H5439"]],[8,9,["H428"]],[9,10,["H5892"]],[10,11,["H5704"]],[11,12,["H1192"]],[12,13,["H7418"]],[13,16,["H5045"]],[16,17,["H2063"]],[17,20,["H5159"]],[20,23,["H4294"]],[23,26,["H1121"]],[26,28,["H8095"]],[28,32,["H4940"]]]},{"k":6330,"v":[[0,4,["H4480","H2256"]],[4,7,["H1121"]],[7,9,["H3063"]],[9,12,["H5159"]],[12,15,["H1121"]],[15,17,["H8095"]],[17,18,["H3588"]],[18,20,["H2506"]],[20,23,["H1121"]],[23,25,["H3063"]],[25,26,["H1961"]],[26,28,["H7227"]],[28,30,["H4480"]],[30,33,["H1121"]],[33,35,["H8095"]],[35,38,["H5157"]],[38,39,["H8432"]],[39,41,["H5159"]],[41,43,[]]]},{"k":6331,"v":[[0,3,["H7992"]],[3,4,["H1486"]],[4,6,["H5927"]],[6,9,["H1121"]],[9,11,["H2074"]],[11,15,["H4940"]],[15,18,["H1366"]],[18,21,["H5159"]],[21,22,["H1961"]],[22,23,["H5704"]],[23,24,["H8301"]]]},{"k":6332,"v":[[0,3,["H1366"]],[3,5,["H5927"]],[5,8,["H3220"]],[8,10,["H4831"]],[10,12,["H6293"]],[12,14,["H1708"]],[14,16,["H6293"]],[16,17,["H413"]],[17,19,["H5158"]],[19,20,["H834"]],[20,22,["H5921","H6440"]],[22,23,["H3362"]]]},{"k":6333,"v":[[0,2,["H7725"]],[2,4,["H4480","H8301"]],[4,5,["H6924"]],[5,8,["H4217","H8121"]],[8,9,["H5921"]],[9,11,["H1366"]],[11,13,["H3696"]],[13,17,["H3318"]],[17,18,["H413"]],[18,19,["H1705"]],[19,22,["H5927"]],[22,24,["H3309"]]]},{"k":6334,"v":[[0,3,["H4480","H8033"]],[3,6,["H5674"]],[6,9,["H6924"]],[9,11,["H1662"]],[11,13,["H6278"]],[13,16,["H3318"]],[16,18,["H7417"]],[18,20,["H5269"]]]},{"k":6335,"v":[[0,3,["H1366"]],[3,4,["H5437"]],[4,9,["H4480","H6828"]],[9,11,["H2615"]],[11,14,["H8444"]],[14,16,["H1961"]],[16,19,["H1516"]],[19,21,["H3317"]]]},{"k":6336,"v":[[0,2,["H7005"]],[2,4,["H5096"]],[4,6,["H8110"]],[6,8,["H3030"]],[8,10,["H1035"]],[10,11,["H8147","H6240"]],[11,12,["H5892"]],[12,15,["H2691"]]]},{"k":6337,"v":[[0,1,["H2063"]],[1,4,["H5159"]],[4,7,["H1121"]],[7,9,["H2074"]],[9,13,["H4940"]],[13,14,["H428"]],[14,15,["H5892"]],[15,18,["H2691"]]]},{"k":6338,"v":[[0,3,["H7243"]],[3,4,["H1486"]],[4,6,["H3318"]],[6,8,["H3485"]],[8,11,["H1121"]],[11,13,["H3485"]],[13,17,["H4940"]]]},{"k":6339,"v":[[0,3,["H1366"]],[3,4,["H1961"]],[4,6,["H3157"]],[6,8,["H3694"]],[8,10,["H7766"]]]},{"k":6340,"v":[[0,2,["H2663"]],[2,4,["H7866"]],[4,6,["H588"]]]},{"k":6341,"v":[[0,2,["H7245"]],[2,4,["H7191"]],[4,6,["H77"]]]},{"k":6342,"v":[[0,2,["H7432"]],[2,4,["H5873"]],[4,6,["H5876"]],[6,8,["H1048"]]]},{"k":6343,"v":[[0,3,["H1366"]],[3,4,["H6293"]],[4,6,["H8396"]],[6,8,["H7831"]],[8,10,["H1053"]],[10,13,["H8444"]],[13,16,["H1366"]],[16,17,["H1961"]],[17,19,["H3383"]],[19,20,["H8337","H6240"]],[20,21,["H5892"]],[21,24,["H2691"]]]},{"k":6344,"v":[[0,1,["H2063"]],[1,4,["H5159"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H3485"]],[12,16,["H4940"]],[16,18,["H5892"]],[18,21,["H2691"]]]},{"k":6345,"v":[[0,3,["H2549"]],[3,4,["H1486"]],[4,6,["H3318"]],[6,9,["H4294"]],[9,12,["H1121"]],[12,14,["H836"]],[14,18,["H4940"]]]},{"k":6346,"v":[[0,3,["H1366"]],[3,4,["H1961"]],[4,5,["H2520"]],[5,7,["H2482"]],[7,9,["H991"]],[9,11,["H407"]]]},{"k":6347,"v":[[0,2,["H487"]],[2,4,["H6008"]],[4,6,["H4861"]],[6,8,["H6293"]],[8,10,["H3760"]],[10,11,["H3220"]],[11,14,["H7884"]]]},{"k":6348,"v":[[0,2,["H7725"]],[2,5,["H4217","H8121"]],[5,7,["H1016"]],[7,9,["H6293"]],[9,11,["H2074"]],[11,15,["H1516"]],[15,17,["H3317"]],[17,21,["H6828"]],[21,23,["H1025"]],[23,25,["H5272"]],[25,28,["H3318"]],[28,29,["H413"]],[29,30,["H3521"]],[30,34,["H8040"]]]},{"k":6349,"v":[[0,2,["H5683"]],[2,4,["H7340"]],[4,6,["H2540"]],[6,8,["H7071"]],[8,10,["H5704"]],[10,11,["H7227"]],[11,12,["H6721"]]]},{"k":6350,"v":[[0,4,["H1366"]],[4,5,["H7725"]],[5,7,["H7414"]],[7,9,["H5704"]],[9,11,["H4013"]],[11,12,["H5892"]],[12,13,["H6865"]],[13,16,["H1366"]],[16,17,["H7725"]],[17,19,["H2621"]],[19,22,["H8444"]],[22,24,["H1961"]],[24,27,["H3220"]],[27,30,["H4480","H2256"]],[30,32,["H392"]]]},{"k":6351,"v":[[0,1,["H5981"]],[1,4,["H663"]],[4,6,["H7340"]],[6,7,["H6242"]],[7,9,["H8147"]],[9,10,["H5892"]],[10,13,["H2691"]]]},{"k":6352,"v":[[0,1,["H2063"]],[1,4,["H5159"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H836"]],[12,16,["H4940"]],[16,17,["H428"]],[17,18,["H5892"]],[18,21,["H2691"]]]},{"k":6353,"v":[[0,2,["H8345"]],[2,3,["H1486"]],[3,5,["H3318"]],[5,8,["H1121"]],[8,10,["H5321"]],[10,14,["H1121"]],[14,16,["H5321"]],[16,20,["H4940"]]]},{"k":6354,"v":[[0,3,["H1366"]],[3,4,["H1961"]],[4,6,["H4480","H2501"]],[6,8,["H4480","H436"]],[8,10,["H6815"]],[10,12,["H129"]],[12,13,["H5346"]],[13,15,["H2995"]],[15,16,["H5704"]],[16,17,["H3946"]],[17,20,["H8444"]],[20,22,["H1961"]],[22,24,["H3383"]]]},{"k":6355,"v":[[0,4,["H1366"]],[4,5,["H7725"]],[5,6,["H3220"]],[6,8,["H243"]],[8,11,["H3318"]],[11,13,["H4480","H8033"]],[13,15,["H2712"]],[15,17,["H6293"]],[17,19,["H2074"]],[19,23,["H5045"]],[23,25,["H6293"]],[25,27,["H836"]],[27,31,["H4480","H3220"]],[31,34,["H3063"]],[34,36,["H3383"]],[36,39,["H4217","H8121"]]]},{"k":6356,"v":[[0,3,["H4013"]],[3,4,["H5892"]],[4,6,["H6661"]],[6,7,["H6863"]],[7,9,["H2575"]],[9,10,["H7557"]],[10,12,["H3672"]]]},{"k":6357,"v":[[0,2,["H128"]],[2,4,["H7414"]],[4,6,["H2674"]]]},{"k":6358,"v":[[0,2,["H6943"]],[2,4,["H154"]],[4,6,["H5877"]]]},{"k":6359,"v":[[0,2,["H3375"]],[2,4,["H4027"]],[4,5,["H2765"]],[5,7,["H1043"]],[7,9,["H1053"]],[9,10,["H8672","H6240"]],[10,11,["H5892"]],[11,14,["H2691"]]]},{"k":6360,"v":[[0,1,["H2063"]],[1,4,["H5159"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H5321"]],[12,16,["H4940"]],[16,18,["H5892"]],[18,21,["H2691"]]]},{"k":6361,"v":[[0,3,["H7637"]],[3,4,["H1486"]],[4,6,["H3318"]],[6,9,["H4294"]],[9,12,["H1121"]],[12,14,["H1835"]],[14,18,["H4940"]]]},{"k":6362,"v":[[0,3,["H1366"]],[3,6,["H5159"]],[6,7,["H1961"]],[7,8,["H6881"]],[8,10,["H847"]],[10,12,["H5905"]]]},{"k":6363,"v":[[0,2,["H8169"]],[2,4,["H357"]],[4,6,["H3494"]]]},{"k":6364,"v":[[0,2,["H356"]],[2,4,["H8553"]],[4,6,["H6138"]]]},{"k":6365,"v":[[0,2,["H514"]],[2,4,["H1405"]],[4,6,["H1191"]]]},{"k":6366,"v":[[0,2,["H3055"]],[2,4,["H1139"]],[4,6,["H1667"]]]},{"k":6367,"v":[[0,2,["H4313"]],[2,4,["H7542"]],[4,5,["H5973"]],[5,7,["H1366"]],[7,8,["H4136"]],[8,9,["H3305"]]]},{"k":6368,"v":[[0,3,["H1366"]],[3,6,["H1121"]],[6,8,["H1835"]],[8,10,["H3318"]],[10,14,["H4480"]],[14,17,["H1121"]],[17,19,["H1835"]],[19,21,["H5927"]],[21,23,["H3898"]],[23,24,["H5973"]],[24,25,["H3959"]],[25,27,["H3920"]],[27,30,["H5221"]],[30,34,["H6310"]],[34,37,["H2719"]],[37,39,["H3423"]],[39,42,["H3427"]],[42,45,["H7121"]],[45,46,["H3959"]],[46,47,["H1835"]],[47,50,["H8034"]],[50,52,["H1835"]],[52,54,["H1"]]]},{"k":6369,"v":[[0,1,["H2063"]],[1,4,["H5159"]],[4,7,["H4294"]],[7,10,["H1121"]],[10,12,["H1835"]],[12,16,["H4940"]],[16,17,["H428"]],[17,18,["H5892"]],[18,21,["H2691"]]]},{"k":6370,"v":[[0,6,["H3615"]],[6,12,["H5157","(H853)","H776"]],[12,15,["H1367"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,20,["H5414"]],[20,22,["H5159"]],[22,24,["H3091"]],[24,26,["H1121"]],[26,28,["H5126"]],[28,29,["H8432"]],[29,30,[]]]},{"k":6371,"v":[[0,1,["H5921"]],[1,4,["H6310"]],[4,7,["H3068"]],[7,9,["H5414"]],[9,10,["(H853)"]],[10,12,["H5892"]],[12,13,["H834"]],[13,15,["H7592"]],[15,16,["(H853)"]],[16,17,["H8556"]],[17,19,["H2022"]],[19,20,["H669"]],[20,23,["H1129","(H853)"]],[23,25,["H5892"]],[25,27,["H3427"]],[27,28,[]]]},{"k":6372,"v":[[0,1,["H428"]],[1,4,["H5159"]],[4,5,["H834"]],[5,6,["H499"]],[6,8,["H3548"]],[8,10,["H3091"]],[10,12,["H1121"]],[12,14,["H5126"]],[14,17,["H7218"]],[17,20,["H1"]],[20,23,["H4294"]],[23,26,["H1121"]],[26,28,["H3478"]],[28,32,["H5157"]],[32,34,["H1486"]],[34,36,["H7887"]],[36,37,["H6440"]],[37,39,["H3068"]],[39,42,["H6607"]],[42,45,["H168"]],[45,48,["H4150"]],[48,53,["H3615"]],[53,55,["H4480","H2505","(H853)"]],[55,57,["H776"]]]},{"k":6373,"v":[[0,2,["H3068"]],[2,4,["H1696"]],[4,5,["H413"]],[5,6,["H3091"]],[6,7,["H559"]]]},{"k":6374,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,7,["H559"]],[7,8,["H5414"]],[8,11,["(H853)"]],[11,12,["H5892"]],[12,14,["H4733"]],[14,15,["H834"]],[15,17,["H1696"]],[17,18,["H413"]],[18,22,["H3027"]],[22,24,["H4872"]]]},{"k":6375,"v":[[0,3,["H7523"]],[3,5,["H5221"]],[5,7,["H5315"]],[7,8,["H7684"]],[8,10,["H1097","H1847"]],[10,12,["H5127"]],[12,13,["H8033"]],[13,17,["H1961"]],[17,19,["H4733"]],[19,22,["H4480","H1350"]],[22,24,["H1818"]]]},{"k":6376,"v":[[0,6,["H5127"]],[6,7,["H413"]],[7,8,["H259"]],[8,10,["H428"]],[10,11,["H4480","H5892"]],[11,13,["H5975"]],[13,16,["H6607"]],[16,19,["H8179"]],[19,22,["H5892"]],[22,25,["H1696","(H853)"]],[25,27,["H1697"]],[27,30,["H241"]],[30,33,["H2205"]],[33,35,["H1931"]],[35,36,["H5892"]],[36,39,["H622"]],[39,43,["H5892"]],[43,47,["H5414","H413"]],[47,50,["H4725"]],[50,54,["H3427"]],[54,55,["H5973"]],[55,56,[]]]},{"k":6377,"v":[[0,2,["H3588"]],[2,4,["H1350"]],[4,6,["H1818"]],[6,7,["H7291"]],[7,8,["H310"]],[8,13,["H3808"]],[13,14,["H5462","(H853)"]],[14,16,["H7523"]],[16,20,["H3027"]],[20,21,["H3588"]],[21,23,["H5221","(H853)"]],[23,25,["H7453"]],[25,26,["H1097","H1847"]],[26,28,["H8130"]],[28,30,["H3808"]],[30,31,["H8543","H8032"]]]},{"k":6378,"v":[[0,4,["H3427"]],[4,6,["H1931"]],[6,7,["H5892"]],[7,8,["H5704"]],[8,10,["H5975"]],[10,11,["H6440"]],[11,13,["H5712"]],[13,15,["H4941"]],[15,17,["H5704"]],[17,19,["H4194"]],[19,22,["H1419"]],[22,23,["H3548"]],[23,24,["H834"]],[24,26,["H1961"]],[26,28,["H1992"]],[28,29,["H3117"]],[29,30,["H227"]],[30,33,["H7523"]],[33,34,["H7725"]],[34,36,["H935"]],[36,37,["H413"]],[37,40,["H5892"]],[40,42,["H413"]],[42,45,["H1004"]],[45,46,["H413"]],[46,48,["H5892"]],[48,50,["H834","H4480","H8033"]],[50,52,["H5127"]]]},{"k":6379,"v":[[0,3,["H6942","(H853)"]],[3,4,["H6943"]],[4,6,["H1551"]],[6,8,["H2022"]],[8,9,["H5321"]],[9,11,["H7927"]],[11,13,["H2022"]],[13,14,["H669"]],[14,16,["H7153"]],[16,17,["H1931"]],[17,19,["H2275"]],[19,22,["H2022"]],[22,24,["H3063"]]]},{"k":6380,"v":[[0,5,["H4480","H5676"]],[5,6,["H3383"]],[6,8,["H3405"]],[8,9,["H4217"]],[9,11,["H5414","(H853)"]],[11,12,["H1221"]],[12,15,["H4057"]],[15,18,["H4334"]],[18,22,["H4480","H4294"]],[22,24,["H7205"]],[24,26,["H7216"]],[26,28,["H1568"]],[28,32,["H4480","H4294"]],[32,34,["H1410"]],[34,36,["H1474"]],[36,38,["H1316"]],[38,42,["H4480","H4294"]],[42,44,["H4519"]]]},{"k":6381,"v":[[0,1,["H428"]],[1,2,["H1961"]],[2,4,["H5892"]],[4,5,["H4152"]],[5,7,["H3605"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,15,["H1616"]],[15,17,["H1481"]],[17,18,["H8432"]],[18,21,["H3605"]],[21,22,["H5221"]],[22,24,["H5315"]],[24,26,["H7684"]],[26,28,["H5127"]],[28,29,["H8033"]],[29,31,["H3808"]],[31,32,["H4191"]],[32,35,["H3027"]],[35,38,["H1350"]],[38,40,["H1818"]],[40,41,["H5704"]],[41,43,["H5975"]],[43,44,["H6440"]],[44,46,["H5712"]]]},{"k":6382,"v":[[0,3,["H5066"]],[3,5,["H7218"]],[5,8,["H1"]],[8,11,["H3881"]],[11,12,["H413"]],[12,13,["H499"]],[13,15,["H3548"]],[15,17,["H413"]],[17,18,["H3091"]],[18,20,["H1121"]],[20,22,["H5126"]],[22,24,["H413"]],[24,26,["H7218"]],[26,29,["H1"]],[29,32,["H4294"]],[32,35,["H1121"]],[35,37,["H3478"]]]},{"k":6383,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,7,["H7887"]],[7,10,["H776"]],[10,12,["H3667"]],[12,13,["H559"]],[13,15,["H3068"]],[15,16,["H6680"]],[16,19,["H3027"]],[19,21,["H4872"]],[21,23,["H5414"]],[23,25,["H5892"]],[25,27,["H3427"]],[27,31,["H4054"]],[31,35,["H929"]]]},{"k":6384,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5414"]],[6,9,["H3881"]],[9,13,["H4480","H5159"]],[13,14,["H413"]],[14,16,["H6310"]],[16,19,["H3068","(H853)"]],[19,20,["H428"]],[20,21,["H5892"]],[21,24,["H4054"]]]},{"k":6385,"v":[[0,3,["H1486"]],[3,5,["H3318"]],[5,8,["H4940"]],[8,11,["H6956"]],[11,14,["H1121"]],[14,16,["H175"]],[16,18,["H3548"]],[18,21,["H4480"]],[21,23,["H3881"]],[23,24,["H1961"]],[24,26,["H1486"]],[26,30,["H4480","H4294"]],[30,32,["H3063"]],[32,37,["H4480","H4294"]],[37,39,["H8099"]],[39,44,["H4480","H4294"]],[44,46,["H1144"]],[46,47,["H7969","H6240"]],[47,48,["H5892"]]]},{"k":6386,"v":[[0,3,["H3498"]],[3,6,["H1121"]],[6,8,["H6955"]],[8,11,["H1486"]],[11,15,["H4480","H4940"]],[15,18,["H4294"]],[18,20,["H669"]],[20,25,["H4480","H4294"]],[25,27,["H1835"]],[27,32,["H4480","H2677"]],[32,33,["H4294"]],[33,35,["H4519"]],[35,36,["H6235"]],[36,37,["H5892"]]]},{"k":6387,"v":[[0,3,["H1121"]],[3,5,["H1648"]],[5,8,["H1486"]],[8,12,["H4480","H4940"]],[12,15,["H4294"]],[15,17,["H3485"]],[17,22,["H4480","H4294"]],[22,24,["H836"]],[24,29,["H4480","H4294"]],[29,31,["H5321"]],[31,36,["H4480","H2677"]],[36,37,["H4294"]],[37,39,["H4519"]],[39,41,["H1316"]],[41,42,["H7969","H6240"]],[42,43,["H5892"]]]},{"k":6388,"v":[[0,2,["H1121"]],[2,4,["H4847"]],[4,7,["H4940"]],[7,12,["H4480","H4294"]],[12,14,["H7205"]],[14,19,["H4480","H4294"]],[19,21,["H1410"]],[21,26,["H4480","H4294"]],[26,28,["H2074"]],[28,29,["H8147","H6240"]],[29,30,["H5892"]]]},{"k":6389,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5414"]],[6,8,["H1486"]],[8,11,["H3881","(H853)"]],[11,12,["H428"]],[12,13,["H5892"]],[13,14,["H854"]],[14,16,["H4054"]],[16,17,["H834"]],[17,19,["H3068"]],[19,20,["H6680"]],[20,23,["H3027"]],[23,25,["H4872"]]]},{"k":6390,"v":[[0,3,["H5414"]],[3,7,["H4480","H4294"]],[7,10,["H1121"]],[10,12,["H3063"]],[12,17,["H4480","H4294"]],[17,20,["H1121"]],[20,22,["H8095","(H853)"]],[22,23,["H428"]],[23,24,["H5892"]],[24,25,["H834"]],[25,28,["H7121"]],[28,30,["H8034"]]]},{"k":6391,"v":[[0,3,["H1121"]],[3,5,["H175"]],[5,9,["H4480","H4940"]],[9,12,["H6956"]],[12,17,["H4480","H1121"]],[17,19,["H3878"]],[19,20,["H1961"]],[20,21,["H3588"]],[21,23,["H1961"]],[23,25,["H7223"]],[25,26,["H1486"]]]},{"k":6392,"v":[[0,3,["H5414"]],[3,4,["(H853)"]],[4,6,["H7151"]],[6,8,["H704"]],[8,10,["H1"]],[10,12,["H6061"]],[12,13,["H1931"]],[13,16,["H2275"]],[16,19,["H2022"]],[19,22,["H3063"]],[22,23,["H854"]],[23,25,["H4054"]],[25,28,["H5439"]],[28,29,[]]]},{"k":6393,"v":[[0,3,["H7704"]],[3,6,["H5892"]],[6,9,["H2691"]],[9,11,["H5414"]],[11,14,["H3612"]],[14,16,["H1121"]],[16,18,["H3312"]],[18,21,["H272"]]]},{"k":6394,"v":[[0,3,["H5414"]],[3,6,["H1121"]],[6,8,["H175"]],[8,10,["H3548","(H853)"]],[10,11,["H2275"]],[11,12,["H854"]],[12,14,["H4054"]],[14,16,["(H853)"]],[16,18,["H5892"]],[18,20,["H4733"]],[20,23,["H7523"]],[23,25,["H3841"]],[25,26,["H854"]],[26,28,["H4054"]]]},{"k":6395,"v":[[0,2,["H3492"]],[2,3,["H854"]],[3,5,["H4054"]],[5,7,["H851"]],[7,8,["H854"]],[8,10,["H4054"]]]},{"k":6396,"v":[[0,2,["H2473"]],[2,3,["H854"]],[3,5,["H4054"]],[5,7,["H1688"]],[7,8,["H854"]],[8,10,["H4054"]]]},{"k":6397,"v":[[0,2,["H5871"]],[2,3,["H854"]],[3,5,["H4054"]],[5,7,["H3194"]],[7,8,["H854"]],[8,10,["H4054"]],[10,11,["(H853)"]],[11,12,["H1053"]],[12,13,["H854"]],[13,15,["H4054"]],[15,16,["H8672"]],[16,17,["H5892"]],[17,19,["H4480","H854"]],[19,20,["H428"]],[20,21,["H8147"]],[21,22,["H7626"]]]},{"k":6398,"v":[[0,5,["H4480","H4294"]],[5,7,["H1144","(H853)"]],[7,8,["H1391"]],[8,9,["H854"]],[9,11,["H4054","(H853)"]],[11,12,["H1387"]],[12,13,["H854"]],[13,15,["H4054"]]]},{"k":6399,"v":[[0,0,["(H853)"]],[0,1,["H6068"]],[1,2,["H854"]],[2,4,["H4054"]],[4,6,["H5960"]],[6,7,["H854"]],[7,9,["H4054"]],[9,10,["H702"]],[10,11,["H5892"]]]},{"k":6400,"v":[[0,1,["H3605"]],[1,3,["H5892"]],[3,6,["H1121"]],[6,8,["H175"]],[8,10,["H3548"]],[10,12,["H7969","H6240"]],[12,13,["H5892"]],[13,16,["H4054"]]]},{"k":6401,"v":[[0,3,["H4940"]],[3,6,["H1121"]],[6,8,["H6955"]],[8,10,["H3881"]],[10,12,["H3498"]],[12,15,["H4480","H1121"]],[15,17,["H6955"]],[17,20,["H1961"]],[20,22,["H5892"]],[22,25,["H1486"]],[25,29,["H4480","H4294"]],[29,31,["H669"]]]},{"k":6402,"v":[[0,3,["H5414"]],[3,4,["(H853)"]],[4,5,["H7927"]],[5,6,["H854"]],[6,8,["H4054"]],[8,10,["H2022"]],[10,11,["H669"]],[11,13,["(H853)"]],[13,15,["H5892"]],[15,17,["H4733"]],[17,20,["H7523"]],[20,22,["H1507"]],[22,23,["H854"]],[23,25,["H4054"]]]},{"k":6403,"v":[[0,2,["H6911"]],[2,3,["H854"]],[3,5,["H4054"]],[5,7,["H1032"]],[7,8,["H854"]],[8,10,["H4054"]],[10,11,["H702"]],[11,12,["H5892"]]]},{"k":6404,"v":[[0,5,["H4480","H4294"]],[5,7,["H1835","(H853)"]],[7,8,["H514"]],[8,9,["H854"]],[9,11,["H4054","(H853)"]],[11,12,["H1405"]],[12,13,["H854"]],[13,15,["H4054"]]]},{"k":6405,"v":[[0,0,["(H853)"]],[0,1,["H357"]],[1,2,["H854"]],[2,4,["H4054","(H853)"]],[4,5,["H1667"]],[5,6,["H854"]],[6,8,["H4054"]],[8,9,["H702"]],[9,10,["H5892"]]]},{"k":6406,"v":[[0,5,["H4480","H4276"]],[5,6,["H4294"]],[6,8,["H4519","(H853)"]],[8,9,["H8590"]],[9,10,["H854"]],[10,12,["H4054"]],[12,14,["H1667"]],[14,15,["H854"]],[15,17,["H4054"]],[17,18,["H8147"]],[18,19,["H5892"]]]},{"k":6407,"v":[[0,1,["H3605"]],[1,3,["H5892"]],[3,5,["H6235"]],[5,8,["H4054"]],[8,11,["H4940"]],[11,14,["H1121"]],[14,16,["H6955"]],[16,18,["H3498"]]]},{"k":6408,"v":[[0,4,["H1121"]],[4,6,["H1648"]],[6,9,["H4480","H4940"]],[9,12,["H3881"]],[12,17,["H4480","H2677"]],[17,18,["H4294"]],[18,20,["H4519"]],[20,22,["(H853)"]],[22,23,["H1474"]],[23,25,["H1316"]],[25,26,["H854"]],[26,28,["H4054"]],[28,30,["(H853)"]],[30,32,["H5892"]],[32,34,["H4733"]],[34,37,["H7523"]],[37,39,["H1203"]],[39,40,["H854"]],[40,42,["H4054"]],[42,43,["H8147"]],[43,44,["H5892"]]]},{"k":6409,"v":[[0,5,["H4480","H4294"]],[5,7,["H3485","(H853)"]],[7,8,["H7191"]],[8,9,["H854"]],[9,11,["H4054","(H853)"]],[11,12,["H1705"]],[12,13,["H854"]],[13,15,["H4054"]]]},{"k":6410,"v":[[0,1,["H3412"]],[1,2,["H854"]],[2,4,["H4054"]],[4,5,["H5873"]],[5,6,["H854"]],[6,8,["H4054"]],[8,9,["H702"]],[9,10,["H5892"]]]},{"k":6411,"v":[[0,5,["H4480","H4294"]],[5,7,["H836","(H853)"]],[7,8,["H4861"]],[8,9,["H854"]],[9,11,["H4054","(H853)"]],[11,12,["H5658"]],[12,13,["H854"]],[13,15,["H4054"]]]},{"k":6412,"v":[[0,0,["(H853)"]],[0,1,["H2520"]],[1,2,["H854"]],[2,4,["H4054"]],[4,6,["H7340"]],[6,7,["H854"]],[7,9,["H4054"]],[9,10,["H702"]],[10,11,["H5892"]]]},{"k":6413,"v":[[0,5,["H4480","H4294"]],[5,7,["H5321","(H853)"]],[7,8,["H6943"]],[8,10,["H1551"]],[10,11,["H854"]],[11,13,["H4054"]],[13,15,["(H853)"]],[15,17,["H5892"]],[17,19,["H4733"]],[19,22,["H7523"]],[22,24,["H2576"]],[24,25,["H854"]],[25,27,["H4054"]],[27,29,["H7178"]],[29,32,["H4054"]],[32,33,["H7969"]],[33,34,["H5892"]]]},{"k":6414,"v":[[0,1,["H3605"]],[1,3,["H5892"]],[3,6,["H1649"]],[6,10,["H4940"]],[10,12,["H7969","H6240"]],[12,13,["H5892"]],[13,16,["H4054"]]]},{"k":6415,"v":[[0,4,["H4940"]],[4,7,["H1121"]],[7,9,["H4847"]],[9,11,["H3498"]],[11,14,["H3881"]],[14,16,["H4480","H854"]],[16,18,["H4294"]],[18,20,["H2074","(H853)"]],[20,21,["H3362"]],[21,22,["H854"]],[22,24,["H4054"]],[24,25,["(H853)"]],[25,26,["H7177"]],[26,27,["H854"]],[27,29,["H4054"]]]},{"k":6416,"v":[[0,0,["(H853)"]],[0,1,["H1829"]],[1,2,["H854"]],[2,4,["H4054","(H853)"]],[4,5,["H5096"]],[5,6,["H854"]],[6,8,["H4054"]],[8,9,["H702"]],[9,10,["H5892"]]]},{"k":6417,"v":[[0,5,["H4480","H4294"]],[5,7,["H7205","(H853)"]],[7,8,["H1221"]],[8,9,["H854"]],[9,11,["H4054"]],[11,13,["H3096"]],[13,14,["H854"]],[14,16,["H4054"]]]},{"k":6418,"v":[[0,0,["(H853)"]],[0,1,["H6932"]],[1,2,["H854"]],[2,4,["H4054"]],[4,6,["H4158"]],[6,7,["H854"]],[7,9,["H4054"]],[9,10,["H702"]],[10,11,["H5892"]]]},{"k":6419,"v":[[0,5,["H4480","H4294"]],[5,7,["H1410","(H853)"]],[7,8,["H7216"]],[8,10,["H1568"]],[10,11,["H854"]],[11,13,["H4054"]],[13,15,["(H853)"]],[15,17,["H5892"]],[17,19,["H4733"]],[19,22,["H7523"]],[22,24,["H4266"]],[24,25,["H854"]],[25,27,["H4054"]]]},{"k":6420,"v":[[0,0,["(H853)"]],[0,1,["H2809"]],[1,2,["H854"]],[2,4,["H4054","(H853)"]],[4,5,["H3270"]],[5,6,["H854"]],[6,8,["H4054"]],[8,9,["H702"]],[9,10,["H5892"]],[10,12,["H3605"]]]},{"k":6421,"v":[[0,2,["H3605"]],[2,4,["H5892"]],[4,7,["H1121"]],[7,9,["H4847"]],[9,12,["H4940"]],[12,15,["H3498"]],[15,18,["H4480","H4940"]],[18,21,["H3881"]],[21,22,["H1961"]],[22,25,["H1486"]],[25,26,["H8147","H6240"]],[26,27,["H5892"]]]},{"k":6422,"v":[[0,1,["H3605"]],[1,3,["H5892"]],[3,6,["H3881"]],[6,7,["H8432"]],[7,9,["H272"]],[9,12,["H1121"]],[12,14,["H3478"]],[14,16,["H705"]],[16,18,["H8083"]],[18,19,["H5892"]],[19,22,["H4054"]]]},{"k":6423,"v":[[0,1,["H428"]],[1,2,["H5892"]],[2,3,["H1961"]],[3,5,["H5892","H5892"]],[5,8,["H4054"]],[8,10,["H5439"]],[10,12,["H3651"]],[12,14,["H3605"]],[14,15,["H428"]],[15,16,["H5892"]]]},{"k":6424,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,6,["H3478","(H853)"]],[6,7,["H3605"]],[7,9,["H776"]],[9,10,["H834"]],[10,12,["H7650"]],[12,14,["H5414"]],[14,17,["H1"]],[17,20,["H3423"]],[20,23,["H3427"]],[23,24,[]]]},{"k":6425,"v":[[0,3,["H3068"]],[3,6,["H5117"]],[6,8,["H4480","H5439"]],[8,11,["H3605"]],[11,12,["H834"]],[12,14,["H7650"]],[14,17,["H1"]],[17,20,["H5975"]],[20,21,["H3808"]],[21,23,["H376"]],[23,25,["H4480","H3605"]],[25,27,["H341"]],[27,28,["H6440"]],[28,31,["H3068"]],[31,32,["H5414","(H853)"]],[32,33,["H3605"]],[33,35,["H341"]],[35,38,["H3027"]]]},{"k":6426,"v":[[0,2,["H5307"]],[2,3,["H3808"]],[3,4,["H1697"]],[4,6,["H4480","H3605"]],[6,7,["H2896"]],[7,8,["H1697"]],[8,9,["H834"]],[9,11,["H3068"]],[11,13,["H1696"]],[13,14,["H413"]],[14,16,["H1004"]],[16,18,["H3478"]],[18,19,["H3605"]],[19,22,["H935"]]]},{"k":6427,"v":[[0,1,["H227"]],[1,2,["H3091"]],[2,3,["H7121"]],[3,5,["H7206"]],[5,8,["H1425"]],[8,11,["H2677"]],[11,12,["H4294"]],[12,14,["H4519"]]]},{"k":6428,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H859"]],[5,7,["H8104","(H853)"]],[7,8,["H3605"]],[8,9,["H834"]],[9,10,["H4872"]],[10,12,["H5650"]],[12,15,["H3068"]],[15,16,["H6680"]],[16,20,["H8085"]],[20,22,["H6963"]],[22,24,["H3605"]],[24,25,["H834"]],[25,27,["H6680"]],[27,28,[]]]},{"k":6429,"v":[[0,3,["H3808"]],[3,4,["H5800","(H853)"]],[4,6,["H251"]],[6,7,["H2088"]],[7,8,["H7227"]],[8,9,["H3117"]],[9,10,["H5704"]],[10,11,["H2088"]],[11,12,["H3117"]],[12,15,["H8104","(H853)"]],[15,17,["H4931"]],[17,20,["H4687"]],[20,23,["H3068"]],[23,25,["H430"]]]},{"k":6430,"v":[[0,2,["H6258"]],[2,4,["H3068"]],[4,6,["H430"]],[6,9,["H5117"]],[9,12,["H251"]],[12,13,["H834"]],[13,15,["H1696"]],[15,18,["H6258"]],[18,19,["H6437"]],[19,22,["H1980"]],[22,26,["H168"]],[26,28,["H413"]],[28,30,["H776"]],[30,33,["H272"]],[33,34,["H834"]],[34,35,["H4872"]],[35,37,["H5650"]],[37,40,["H3068"]],[40,41,["H5414"]],[41,46,["H5676"]],[46,47,["H3383"]]]},{"k":6431,"v":[[0,1,["H7535"]],[1,3,["H3966"]],[3,4,["H8104"]],[4,6,["H6213","(H853)"]],[6,8,["H4687"]],[8,11,["H8451"]],[11,12,["H834"]],[12,13,["H4872"]],[13,15,["H5650"]],[15,18,["H3068"]],[18,19,["H6680"]],[19,22,["H157","(H853)"]],[22,24,["H3068"]],[24,26,["H430"]],[26,29,["H1980"]],[29,31,["H3605"]],[31,33,["H1870"]],[33,36,["H8104"]],[36,38,["H4687"]],[38,41,["H1692"]],[41,46,["H5647"]],[46,49,["H3605"]],[49,51,["H3824"]],[51,54,["H3605"]],[54,56,["H5315"]]]},{"k":6432,"v":[[0,2,["H3091"]],[2,3,["H1288"]],[3,8,["H7971"]],[8,11,["H1980"]],[11,12,["H413"]],[12,14,["H168"]]]},{"k":6433,"v":[[0,5,["H2677"]],[5,8,["H7626"]],[8,10,["H4519"]],[10,11,["H4872"]],[11,13,["H5414"]],[13,16,["H1316"]],[16,21,["H2677"]],[21,23,["H5414"]],[23,24,["H3091"]],[24,25,["H5973"]],[25,27,["H251"]],[27,30,["H5676"]],[30,31,["H3383"]],[31,32,["H3220"]],[32,34,["H3588"]],[34,35,["H3091"]],[35,38,["H7971"]],[38,39,["H1571"]],[39,40,["H413"]],[40,42,["H168"]],[42,45,["H1288"]],[45,46,[]]]},{"k":6434,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H559"]],[6,7,["H7725"]],[7,9,["H7227"]],[9,10,["H5233"]],[10,11,["H413"]],[11,13,["H168"]],[13,16,["H3966"]],[16,17,["H7227"]],[17,18,["H4735"]],[18,20,["H3701"]],[20,23,["H2091"]],[23,26,["H5178"]],[26,29,["H1270"]],[29,32,["H3966"]],[32,33,["H7235"]],[33,34,["H8008"]],[34,35,["H2505"]],[35,37,["H7998"]],[37,40,["H341"]],[40,41,["H5973"]],[41,43,["H251"]]]},{"k":6435,"v":[[0,3,["H1121"]],[3,5,["H7205"]],[5,8,["H1121"]],[8,10,["H1410"]],[10,13,["H2677"]],[13,14,["H7626"]],[14,16,["H4519"]],[16,17,["H7725"]],[17,19,["H1980"]],[19,20,["H4480","H854"]],[20,22,["H1121"]],[22,24,["H3478"]],[24,27,["H4480","H7887"]],[27,28,["H834"]],[28,32,["H776"]],[32,34,["H3667"]],[34,36,["H1980"]],[36,37,["H413"]],[37,39,["H776"]],[39,41,["H1568"]],[41,42,["H413"]],[42,44,["H776"]],[44,47,["H272"]],[47,48,["H834"]],[48,51,["H270"]],[51,52,["H5921"]],[52,55,["H6310"]],[55,58,["H3068"]],[58,61,["H3027"]],[61,63,["H4872"]]]},{"k":6436,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H1552"]],[7,9,["H3383"]],[9,10,["H834"]],[10,14,["H776"]],[14,16,["H3667"]],[16,18,["H1121"]],[18,20,["H7205"]],[20,23,["H1121"]],[23,25,["H1410"]],[25,28,["H2677"]],[28,29,["H7626"]],[29,31,["H4519"]],[31,32,["H1129"]],[32,33,["H8033"]],[33,35,["H4196"]],[35,36,["H5921"]],[36,37,["H3383"]],[37,39,["H1419"]],[39,40,["H4196"]],[40,42,["H4758"]],[42,43,[]]]},{"k":6437,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H8085"]],[6,7,["H559"]],[7,8,["H2009"]],[8,10,["H1121"]],[10,12,["H7205"]],[12,15,["H1121"]],[15,17,["H1410"]],[17,20,["H2677"]],[20,21,["H7626"]],[21,23,["H4519"]],[23,25,["H1129","(H853)"]],[25,27,["H4196"]],[27,29,["H413","H4136"]],[29,31,["H776"]],[31,33,["H3667"]],[33,34,["H413"]],[34,36,["H1552"]],[36,38,["H3383"]],[38,39,["H413"]],[39,41,["H1552"]],[41,44,["H1121"]],[44,46,["H3478"]]]},{"k":6438,"v":[[0,4,["H1121"]],[4,6,["H3478"]],[6,7,["H8085"]],[7,11,["H3605"]],[11,12,["H5712"]],[12,15,["H1121"]],[15,17,["H3478"]],[17,20,["H6950"]],[20,22,["H7887"]],[22,24,["H5927"]],[24,27,["H6635"]],[27,28,["H5921"]],[28,29,[]]]},{"k":6439,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H7971"]],[6,7,["H413"]],[7,9,["H1121"]],[9,11,["H7205"]],[11,13,["H413"]],[13,15,["H1121"]],[15,17,["H1410"]],[17,19,["H413"]],[19,21,["H2677"]],[21,22,["H7626"]],[22,24,["H4519"]],[24,25,["H413"]],[25,27,["H776"]],[27,29,["H1568","(H853)"]],[29,30,["H6372"]],[30,32,["H1121"]],[32,34,["H499"]],[34,36,["H3548"]]]},{"k":6440,"v":[[0,2,["H5973"]],[2,4,["H6235"]],[4,5,["H5387"]],[5,8,["H5387","H259","H5387","H259"]],[8,9,["H1004"]],[9,11,["H1"]],[11,13,["H3605"]],[13,15,["H4294"]],[15,17,["H3478"]],[17,20,["H376"]],[20,23,["H7218"]],[23,26,["H1004"]],[26,29,["H1"]],[29,32,["H505"]],[32,34,["H3478"]]]},{"k":6441,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H7205"]],[8,10,["H413"]],[10,12,["H1121"]],[12,14,["H1410"]],[14,16,["H413"]],[16,18,["H2677"]],[18,19,["H7626"]],[19,21,["H4519"]],[21,22,["H413"]],[22,24,["H776"]],[24,26,["H1568"]],[26,29,["H1696"]],[29,30,["H854"]],[30,32,["H559"]]]},{"k":6442,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3605"]],[4,5,["H5712"]],[5,8,["H3068"]],[8,9,["H4100"]],[9,10,["H4604"]],[10,12,["H2088"]],[12,13,["H834"]],[13,16,["H4603"]],[16,19,["H430"]],[19,21,["H3478"]],[21,24,["H7725"]],[24,26,["H3117"]],[26,28,["H4480","H310"]],[28,30,["H3068"]],[30,35,["H1129"]],[35,38,["H4196"]],[38,42,["H4775"]],[42,44,["H3117"]],[44,47,["H3068"]]]},{"k":6443,"v":[[0,1,["(H853)"]],[1,3,["H5771"]],[3,5,["H6465"]],[5,7,["H4592"]],[7,10,["H4480"]],[10,11,["H834"]],[11,14,["H3808"]],[14,15,["H2891"]],[15,16,["H5704"]],[16,17,["H2088"]],[17,18,["H3117"]],[18,21,["H1961"]],[21,23,["H5063"]],[23,26,["H5712"]],[26,29,["H3068"]]]},{"k":6444,"v":[[0,3,["H859"]],[3,6,["H7725"]],[6,8,["H3117"]],[8,10,["H4480","H310"]],[10,12,["H3068"]],[12,16,["H1961"]],[16,18,["H859"]],[18,19,["H4775"]],[19,21,["H3117"]],[21,24,["H3068"]],[24,27,["H4279"]],[27,31,["H7107"]],[31,32,["H413"]],[32,34,["H3605"]],[34,35,["H5712"]],[35,37,["H3478"]]]},{"k":6445,"v":[[0,1,["H389"]],[1,2,["H518"]],[2,4,["H776"]],[4,7,["H272"]],[7,9,["H2931"]],[9,13,["H5674"]],[13,14,["H413"]],[14,16,["H776"]],[16,19,["H272"]],[19,22,["H3068"]],[22,23,["H834"]],[23,25,["H3068"]],[25,26,["H4908"]],[26,27,["H7931","H8033"]],[27,30,["H270"]],[30,31,["H8432"]],[31,34,["H4775"]],[34,35,["H408"]],[35,38,["H3068"]],[38,39,["H408"]],[39,40,["H4775"]],[40,44,["H1129"]],[44,47,["H4196"]],[47,48,["H4480","H1107"]],[48,50,["H4196"]],[50,53,["H3068"]],[53,55,["H430"]]]},{"k":6446,"v":[[0,2,["H3808"]],[2,3,["H5912"]],[3,5,["H1121"]],[5,7,["H2226"]],[7,8,["H4603"]],[8,10,["H4604"]],[10,14,["H2764"]],[14,16,["H7110"]],[16,17,["H1961"]],[17,18,["H5921"]],[18,19,["H3605"]],[19,21,["H5712"]],[21,23,["H3478"]],[23,25,["H1931"]],[25,26,["H376"]],[26,27,["H1478"]],[27,28,["H3808"]],[28,29,["H259"]],[29,32,["H5771"]]]},{"k":6447,"v":[[0,3,["H1121"]],[3,5,["H7205"]],[5,8,["H1121"]],[8,10,["H1410"]],[10,13,["H2677"]],[13,14,["H7626"]],[14,16,["H4519"]],[16,17,["H6030"]],[17,19,["H1696"]],[19,20,["(H853)"]],[20,22,["H7218"]],[22,25,["H505"]],[25,27,["H3478"]]]},{"k":6448,"v":[[0,2,["H3068"]],[2,3,["H410"]],[3,5,["H430"]],[5,7,["H3068"]],[7,8,["H410"]],[8,10,["H430"]],[10,11,["H1931"]],[11,12,["H3045"]],[12,14,["H3478"]],[14,15,["H1931"]],[15,17,["H3045"]],[17,18,["H518"]],[18,22,["H4777"]],[22,24,["H518"]],[24,26,["H4604"]],[26,29,["H3068"]],[29,30,["H3467"]],[30,32,["H408"]],[32,33,["H2088"]],[33,34,["H3117"]]]},{"k":6449,"v":[[0,4,["H1129"]],[4,7,["H4196"]],[7,9,["H7725"]],[9,11,["H4480","H310"]],[11,13,["H3068"]],[13,15,["H518"]],[15,17,["H5927"]],[17,18,["H5921"]],[18,20,["H5930"]],[20,23,["H4503"]],[23,25,["H518"]],[25,27,["H6213"]],[27,28,["H8002"]],[28,29,["H2077"]],[29,30,["H5921"]],[30,33,["H3068"]],[33,34,["H1931"]],[34,35,["H1245"]],[35,36,[]]]},{"k":6450,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,7,["H6213","(H853)"]],[7,8,["H2063"]],[8,10,["H4480","H1674"]],[10,13,["H4480","H1697"]],[13,14,["H559"]],[14,18,["H4279"]],[18,20,["H1121"]],[20,22,["H559"]],[22,25,["H1121"]],[25,26,["H559"]],[26,27,["H4100"]],[27,34,["H3068"]],[34,35,["H430"]],[35,37,["H3478"]]]},{"k":6451,"v":[[0,3,["H3068"]],[3,5,["H5414","(H853)"]],[5,6,["H3383"]],[6,8,["H1366"]],[8,9,["H996"]],[9,14,["H1121"]],[14,16,["H7205"]],[16,18,["H1121"]],[18,20,["H1410"]],[20,23,["H369"]],[23,24,["H2506"]],[24,27,["H3068"]],[27,31,["H1121"]],[31,32,["(H853)"]],[32,34,["H1121"]],[34,35,["H7673"]],[35,37,["H3372","(H853)"]],[37,39,["H3068"]]]},{"k":6452,"v":[[0,3,["H559"]],[3,6,["H4994"]],[6,7,["H6213"]],[7,9,["H1129"]],[9,10,["(H853)"]],[10,12,["H4196"]],[12,13,["H3808"]],[13,15,["H5930"]],[15,17,["H3808"]],[17,19,["H2077"]]]},{"k":6453,"v":[[0,1,["H3588"]],[1,3,["H1931"]],[3,7,["H5707"]],[7,8,["H996"]],[8,14,["H1755"]],[14,15,["H310"]],[15,20,["H5647","(H853)"]],[20,22,["H5656"]],[22,25,["H3068"]],[25,26,["H6440"]],[26,31,["H5930"]],[31,35,["H2077"]],[35,40,["H8002"]],[40,43,["H1121"]],[43,45,["H3808"]],[45,46,["H559"]],[46,49,["H1121"]],[49,53,["H4279"]],[53,56,["H369"]],[56,57,["H2506"]],[57,60,["H3068"]]]},{"k":6454,"v":[[0,2,["H559"]],[2,7,["H1961"]],[7,8,["H3588"]],[8,12,["H559"]],[12,13,["H413"]],[13,16,["H413"]],[16,18,["H1755"]],[18,22,["H4279"]],[22,26,["H559"]],[26,28,["H7200","(H853)"]],[28,30,["H8403"]],[30,33,["H4196"]],[33,36,["H3068"]],[36,37,["H834"]],[37,39,["H1"]],[39,40,["H6213"]],[40,41,["H3808"]],[41,44,["H5930"]],[44,45,["H3808"]],[45,47,["H2077"]],[47,48,["H3588"]],[48,49,["H1931"]],[49,52,["H5707"]],[52,53,["H996"]],[53,56,[]]]},{"k":6455,"v":[[0,2,["H2486"]],[2,4,["H4480"]],[4,6,["H4775"]],[6,9,["H3068"]],[9,11,["H7725"]],[11,13,["H3117"]],[13,15,["H4480","H310"]],[15,17,["H3068"]],[17,19,["H1129"]],[19,21,["H4196"]],[21,24,["H5930"]],[24,27,["H4503"]],[27,30,["H2077"]],[30,31,["H4480","H905"]],[31,33,["H4196"]],[33,36,["H3068"]],[36,38,["H430"]],[38,39,["H834"]],[39,41,["H6440"]],[41,43,["H4908"]]]},{"k":6456,"v":[[0,3,["H6372"]],[3,5,["H3548"]],[5,8,["H5387"]],[8,11,["H5712"]],[11,13,["H7218"]],[13,16,["H505"]],[16,18,["H3478"]],[18,19,["H834"]],[19,21,["H854"]],[21,23,["H8085","(H853)"]],[23,25,["H1697"]],[25,26,["H834"]],[26,28,["H1121"]],[28,30,["H7205"]],[30,33,["H1121"]],[33,35,["H1410"]],[35,38,["H1121"]],[38,40,["H4519"]],[40,41,["H1696"]],[41,43,["H3190","H5869"]],[43,44,[]]]},{"k":6457,"v":[[0,2,["H6372"]],[2,4,["H1121"]],[4,6,["H499"]],[6,8,["H3548"]],[8,9,["H559"]],[9,10,["H413"]],[10,12,["H1121"]],[12,14,["H7205"]],[14,16,["H413"]],[16,18,["H1121"]],[18,20,["H1410"]],[20,22,["H413"]],[22,24,["H1121"]],[24,26,["H4519"]],[26,28,["H3117"]],[28,30,["H3045"]],[30,31,["H3588"]],[31,33,["H3068"]],[33,35,["H8432"]],[35,37,["H834"]],[37,40,["H3808"]],[40,41,["H4603"]],[41,42,["H2088"]],[42,43,["H4604"]],[43,46,["H3068"]],[46,47,["H227"]],[47,50,["H5337","(H853)"]],[50,52,["H1121"]],[52,54,["H3478"]],[54,58,["H4480","H3027"]],[58,61,["H3068"]]]},{"k":6458,"v":[[0,2,["H6372"]],[2,4,["H1121"]],[4,6,["H499"]],[6,8,["H3548"]],[8,11,["H5387"]],[11,12,["H7725"]],[12,13,["H4480","H854"]],[13,15,["H1121"]],[15,17,["H7205"]],[17,19,["H4480","H854"]],[19,21,["H1121"]],[21,23,["H1410"]],[23,27,["H4480","H776"]],[27,29,["H1568"]],[29,30,["H413"]],[30,32,["H776"]],[32,34,["H3667"]],[34,35,["H413"]],[35,37,["H1121"]],[37,39,["H3478"]],[39,44,["H7725","(H853)","H1697"]]]},{"k":6459,"v":[[0,3,["H1697"]],[3,4,["H3190","H5869"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,11,["H1121"]],[11,13,["H3478"]],[13,14,["H1288"]],[14,15,["H430"]],[15,18,["H3808"]],[18,19,["H559"]],[19,22,["H5927"]],[22,23,["H5921"]],[23,26,["H6635"]],[26,28,["H7843","(H853)"]],[28,30,["H776"]],[30,31,["H834"]],[31,33,["H1121"]],[33,35,["H7205"]],[35,37,["H1410"]],[37,38,["H3427"]]]},{"k":6460,"v":[[0,3,["H1121"]],[3,5,["H7205"]],[5,8,["H1121"]],[8,10,["H1410"]],[10,11,["H7121"]],[11,13,["H4196"]],[13,15,["H3588"]],[15,16,["H1931"]],[16,20,["H5707"]],[20,21,["H996"]],[21,23,["H3588"]],[23,25,["H3068"]],[25,27,["H430"]]]},{"k":6461,"v":[[0,5,["H1961"]],[5,7,["H7227"]],[7,8,["H4480","H3117"]],[8,9,["H310"]],[9,10,["H834"]],[10,12,["H3068"]],[12,15,["H5117"]],[15,17,["H3478"]],[17,19,["H4480","H3605"]],[19,21,["H341"]],[21,23,["H4480","H5439"]],[23,25,["H3091"]],[25,27,["H2204"]],[27,29,["H935"]],[29,31,["H3117"]]]},{"k":6462,"v":[[0,2,["H3091"]],[2,3,["H7121"]],[3,5,["H3605"]],[5,6,["H3478"]],[6,10,["H2205"]],[10,14,["H7218"]],[14,18,["H8199"]],[18,22,["H7860"]],[22,24,["H559"]],[24,25,["H413"]],[25,27,["H589"]],[27,29,["H2204"]],[29,31,["H935"]],[31,33,["H3117"]]]},{"k":6463,"v":[[0,2,["H859"]],[2,4,["H7200","(H853)"]],[4,5,["H3605"]],[5,6,["H834"]],[6,8,["H3068"]],[8,10,["H430"]],[10,12,["H6213"]],[12,14,["H3605"]],[14,15,["H428"]],[15,16,["H1471"]],[16,17,["H4480","H6440"]],[17,20,["H3588"]],[20,22,["H3068"]],[22,24,["H430"]],[24,26,["H1931"]],[26,29,["H3898"]],[29,31,[]]]},{"k":6464,"v":[[0,1,["H7200"]],[1,8,["H5307","(H853)"]],[8,9,["H428"]],[9,10,["H1471"]],[10,12,["H7604"]],[12,16,["H5159"]],[16,19,["H7626"]],[19,20,["H4480"]],[20,21,["H3383"]],[21,23,["H3605"]],[23,25,["H1471"]],[25,26,["H834"]],[26,30,["H3772"]],[30,34,["H1419"]],[34,35,["H3220"]],[35,36,["H3996","H8121"]]]},{"k":6465,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,6,["H1931"]],[6,8,["H1920"]],[8,11,["H4480","H6440"]],[11,14,["H3423"]],[14,20,["H4480","H6440"]],[20,24,["H3423","(H853)"]],[24,26,["H776"]],[26,27,["H834"]],[27,29,["H3068"]],[29,31,["H430"]],[31,33,["H1696"]],[33,35,[]]]},{"k":6466,"v":[[0,4,["H3966"]],[4,5,["H2388"]],[5,7,["H8104"]],[7,10,["H6213","(H853)"]],[10,11,["H3605"]],[11,14,["H3789"]],[14,17,["H5612"]],[17,20,["H8451"]],[20,22,["H4872"]],[22,25,["H5493"]],[25,26,["H1115"]],[26,27,["H5493"]],[27,28,["H4480"]],[28,32,["H3225"]],[32,36,["H8040"]]]},{"k":6467,"v":[[0,3,["H935"]],[3,4,["H1115"]],[4,6,["H428"]],[6,7,["H1471"]],[7,8,["H428"]],[8,10,["H7604"]],[10,13,["H3808"]],[13,15,["H2142"]],[15,18,["H8034"]],[18,21,["H430"]],[21,22,["H3808"]],[22,25,["H7650"]],[25,28,["H3808"]],[28,29,["H5647"]],[29,31,["H3808"]],[31,33,["H7812"]],[33,35,[]]]},{"k":6468,"v":[[0,1,["H3588","H518"]],[1,2,["H1692"]],[2,5,["H3068"]],[5,7,["H430"]],[7,8,["H834"]],[8,11,["H6213"]],[11,12,["H5704"]],[12,13,["H2088"]],[13,14,["H3117"]]]},{"k":6469,"v":[[0,3,["H3068"]],[3,6,["H3423"]],[6,8,["H4480","H6440"]],[8,10,["H1419"]],[10,11,["H1471"]],[11,13,["H6099"]],[13,17,["H859"]],[17,18,["H3808"]],[18,19,["H376"]],[19,24,["H5975"]],[24,25,["H6440"]],[25,27,["H5704"]],[27,28,["H2088"]],[28,29,["H3117"]]]},{"k":6470,"v":[[0,1,["H259"]],[1,2,["H376"]],[2,3,["H4480"]],[3,6,["H7291"]],[6,8,["H505"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,13,["H430"]],[13,14,["H1931"]],[14,18,["H3898"]],[18,21,["H834"]],[21,24,["H1696"]],[24,25,[]]]},{"k":6471,"v":[[0,2,["H3966"]],[2,3,["H8104"]],[3,6,["H5315"]],[6,9,["H157","(H853)"]],[9,11,["H3068"]],[11,13,["H430"]]]},{"k":6472,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,9,["H7725","H7725"]],[9,11,["H1692"]],[11,14,["H3499"]],[14,16,["H428"]],[16,17,["H1471"]],[17,19,["H428"]],[19,21,["H7604"]],[21,22,["H854"]],[22,27,["H2859"]],[27,32,["H935"]],[32,36,["H1992"]],[36,38,[]]]},{"k":6473,"v":[[0,4,["H3045","H3045"]],[4,5,["H3588"]],[5,7,["H3068"]],[7,9,["H430"]],[9,11,["H3808"]],[11,12,["H3254"]],[12,14,["H3423"]],[14,16,["(H853)"]],[16,17,["H428"]],[17,18,["H1471"]],[18,20,["H4480","H6440"]],[20,25,["H1961"]],[25,26,["H6341"]],[26,28,["H4170"]],[28,32,["H7850"]],[32,35,["H6654"]],[35,37,["H6976"]],[37,40,["H5869"]],[40,41,["H5704"]],[41,43,["H6"]],[43,45,["H4480","H5921"]],[45,46,["H2063"]],[46,47,["H2896"]],[47,48,["H127"]],[48,49,["H834"]],[49,51,["H3068"]],[51,53,["H430"]],[53,55,["H5414"]],[55,56,[]]]},{"k":6474,"v":[[0,2,["H2009"]],[2,4,["H3117"]],[4,5,["H595"]],[5,7,["H1980"]],[7,9,["H1870"]],[9,11,["H3605"]],[11,13,["H776"]],[13,16,["H3045"]],[16,18,["H3605"]],[18,20,["H3824"]],[20,23,["H3605"]],[23,25,["H5315"]],[25,26,["H3588"]],[26,27,["H3808"]],[27,28,["H259"]],[28,29,["H1697"]],[29,31,["H5307"]],[31,33,["H4480","H3605"]],[33,35,["H2896"]],[35,36,["H1697"]],[36,37,["H834"]],[37,39,["H3068"]],[39,41,["H430"]],[41,42,["H1696"]],[42,43,["H5921"]],[43,45,["H3605"]],[45,49,["H935"]],[49,53,["H3808"]],[53,54,["H259"]],[54,55,["H1697"]],[55,57,["H5307"]],[57,58,["H4480"]]]},{"k":6475,"v":[[0,6,["H1961"]],[6,8,["H834"]],[8,9,["H3605"]],[9,10,["H2896"]],[10,11,["H1697"]],[11,13,["H935"]],[13,14,["H5921"]],[14,16,["H834"]],[16,18,["H3068"]],[18,20,["H430"]],[20,21,["H1696","H413"]],[21,23,["H3651"]],[23,26,["H3068"]],[26,27,["H935"]],[27,28,["H5921"]],[28,29,["(H853)"]],[29,30,["H3605"]],[30,31,["H7451"]],[31,32,["H1697"]],[32,33,["H5704"]],[33,36,["H8045"]],[36,39,["H4480","H5921"]],[39,40,["H2063"]],[40,41,["H2896"]],[41,42,["H127"]],[42,43,["H834"]],[43,45,["H3068"]],[45,47,["H430"]],[47,49,["H5414"]],[49,50,[]]]},{"k":6476,"v":[[0,4,["H5674","(H853)"]],[4,6,["H1285"]],[6,9,["H3068"]],[9,11,["H430"]],[11,12,["H834"]],[12,14,["H6680"]],[14,18,["H1980"]],[18,20,["H5647"]],[20,21,["H312"]],[21,22,["H430"]],[22,25,["H7812"]],[25,31,["H639"]],[31,34,["H3068"]],[34,36,["H2734"]],[36,42,["H6"]],[42,43,["H4120"]],[43,45,["H4480","H5921"]],[45,47,["H2896"]],[47,48,["H776"]],[48,49,["H834"]],[49,52,["H5414"]],[52,54,[]]]},{"k":6477,"v":[[0,2,["H3091"]],[2,3,["H622","(H853)"]],[3,4,["H3605"]],[4,6,["H7626"]],[6,8,["H3478"]],[8,10,["H7927"]],[10,12,["H7121"]],[12,15,["H2205"]],[15,17,["H3478"]],[17,21,["H7218"]],[21,25,["H8199"]],[25,29,["H7860"]],[29,33,["H3320"]],[33,34,["H6440"]],[34,35,["H430"]]]},{"k":6478,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3605"]],[5,7,["H5971"]],[7,8,["H3541"]],[8,9,["H559"]],[9,11,["H3068"]],[11,12,["H430"]],[12,14,["H3478"]],[14,16,["H1"]],[16,17,["H3427"]],[17,21,["H5676"]],[21,24,["H5104"]],[24,27,["H4480","H5769"]],[27,29,["H8646"]],[29,31,["H1"]],[31,33,["H85"]],[33,36,["H1"]],[36,38,["H5152"]],[38,41,["H5647"]],[41,42,["H312"]],[42,43,["H430"]]]},{"k":6479,"v":[[0,3,["H3947","(H853)"]],[3,5,["H1","(H853)"]],[5,6,["H85"]],[6,10,["H4480","H5676"]],[10,13,["H5104"]],[13,15,["H1980"]],[15,18,["H3605"]],[18,20,["H776"]],[20,22,["H3667"]],[22,24,["H7235","(H853)"]],[24,26,["H2233"]],[26,28,["H5414"]],[28,29,["(H853)"]],[29,30,["H3327"]]]},{"k":6480,"v":[[0,3,["H5414"]],[3,5,["H3327","(H853)"]],[5,6,["H3290"]],[6,8,["H6215"]],[8,11,["H5414"]],[11,13,["H6215","(H853)"]],[13,14,["H2022"]],[14,15,["H8165"]],[15,17,["H3423"]],[17,20,["H3290"]],[20,23,["H1121"]],[23,25,["H3381"]],[25,27,["H4714"]]]},{"k":6481,"v":[[0,2,["H7971","(H853)"]],[2,3,["H4872"]],[3,6,["H175"]],[6,9,["H5062","(H853)"]],[9,10,["H4714"]],[10,14,["H834"]],[14,16,["H6213"]],[16,17,["H7130"]],[17,20,["H310"]],[20,24,["H3318","(H853)"]]]},{"k":6482,"v":[[0,6,["H3318","(H853)","H1"]],[6,8,["H4480","H4714"]],[8,11,["H935"]],[11,14,["H3220"]],[14,17,["H4714"]],[17,18,["H7291"]],[18,19,["H310"]],[19,21,["H1"]],[21,23,["H7393"]],[23,25,["H6571"]],[25,28,["H5488"]],[28,29,["H3220"]]]},{"k":6483,"v":[[0,4,["H6817"]],[4,5,["H413"]],[5,7,["H3068"]],[7,9,["H7760"]],[9,10,["H3990"]],[10,11,["H996"]],[11,15,["H4713"]],[15,17,["H935","(H853)"]],[17,19,["H3220"]],[19,20,["H5921"]],[20,23,["H3680"]],[23,27,["H5869"]],[27,29,["H7200","(H853)"]],[29,30,["H834"]],[30,33,["H6213"]],[33,35,["H4714"]],[35,38,["H3427"]],[38,41,["H4057"]],[41,43,["H7227"]],[43,44,["H3117"]]]},{"k":6484,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H776"]],[7,10,["H567"]],[10,12,["H3427"]],[12,16,["H5676"]],[16,17,["H3383"]],[17,20,["H3898"]],[20,21,["H854"]],[21,25,["H5414"]],[25,29,["H3027"]],[29,33,["H3423","(H853)"]],[33,35,["H776"]],[35,38,["H8045"]],[38,41,["H4480","H6440"]],[41,42,[]]]},{"k":6485,"v":[[0,2,["H1111"]],[2,4,["H1121"]],[4,6,["H6834"]],[6,7,["H4428"]],[7,9,["H4124"]],[9,10,["H6965"]],[10,12,["H3898"]],[12,14,["H3478"]],[14,16,["H7971"]],[16,18,["H7121"]],[18,19,["H1109"]],[19,21,["H1121"]],[21,23,["H1160"]],[23,25,["H7043"]],[25,26,[]]]},{"k":6486,"v":[[0,3,["H14"]],[3,4,["H3808"]],[4,5,["H8085"]],[5,7,["H1109"]],[7,10,["H1288","H1288"]],[10,15,["H5337"]],[15,20,["H4480","H3027"]]]},{"k":6487,"v":[[0,4,["H5674","(H853)"]],[4,5,["H3383"]],[5,7,["H935"]],[7,8,["H413"]],[8,9,["H3405"]],[9,12,["H1167"]],[12,14,["H3405"]],[14,15,["H3898"]],[15,19,["H567"]],[19,22,["H6522"]],[22,25,["H3669"]],[25,28,["H2850"]],[28,31,["H1622"]],[31,33,["H2340"]],[33,36,["H2983"]],[36,39,["H5414"]],[39,43,["H3027"]]]},{"k":6488,"v":[[0,3,["H7971","(H853)"]],[3,5,["H6880"]],[5,6,["H6440"]],[6,11,["H1644","(H853)"]],[11,13,["H4480","H6440"]],[13,17,["H8147"]],[17,18,["H4428"]],[18,21,["H567"]],[21,23,["H3808"]],[23,26,["H2719"]],[26,27,["H3808"]],[27,30,["H7198"]]]},{"k":6489,"v":[[0,4,["H5414"]],[4,7,["H776"]],[7,9,["H834"]],[9,12,["H3808"]],[12,13,["H3021"]],[13,15,["H5892"]],[15,16,["H834"]],[16,18,["H1129"]],[18,19,["H3808"]],[19,22,["H3427"]],[22,27,["H3754"]],[27,29,["H2132"]],[29,30,["H834"]],[30,32,["H5193"]],[32,33,["H3808"]],[33,35,["H859"]],[35,36,["H398"]]]},{"k":6490,"v":[[0,2,["H6258"]],[2,3,["H3372","(H853)"]],[3,5,["H3068"]],[5,7,["H5647"]],[7,10,["H8549"]],[10,13,["H571"]],[13,16,["H5493","(H853)"]],[16,18,["H430"]],[18,19,["H834"]],[19,21,["H1"]],[21,22,["H5647"]],[22,26,["H5676"]],[26,29,["H5104"]],[29,32,["H4714"]],[32,34,["H5647"]],[34,35,["(H853)"]],[35,37,["H3068"]]]},{"k":6491,"v":[[0,2,["H518"]],[2,5,["H7489"]],[5,7,["H5869"]],[7,9,["H5647","(H853)"]],[9,11,["H3068"]],[11,12,["H977"]],[12,15,["H3117","(H853)"]],[15,16,["H4310"]],[16,19,["H5647"]],[19,20,["H518","(H853)"]],[20,22,["H430"]],[22,23,["H834"]],[23,25,["H1"]],[25,26,["H5647"]],[26,27,["H834"]],[27,32,["H5676"]],[32,35,["H5104"]],[35,36,["H518","(H853)"]],[36,38,["H430"]],[38,41,["H567"]],[41,44,["H776"]],[44,45,["H859"]],[45,46,["H3427"]],[46,50,["H595"]],[50,53,["H1004"]],[53,56,["H5647","(H853)"]],[56,58,["H3068"]]]},{"k":6492,"v":[[0,3,["H5971"]],[3,4,["H6030"]],[4,6,["H559"]],[6,8,["H2486"]],[8,12,["H4480","H5800","(H853)"]],[12,14,["H3068"]],[14,16,["H5647"]],[16,17,["H312"]],[17,18,["H430"]]]},{"k":6493,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,6,["H1931"]],[6,10,["H5927"]],[10,15,["H1"]],[15,19,["H4480","H776"]],[19,21,["H4714"]],[21,24,["H4480","H1004"]],[24,26,["H5650"]],[26,28,["H834"]],[28,29,["H6213"]],[29,30,["H428"]],[30,31,["H1419","(H853)"]],[31,32,["H226"]],[32,35,["H5869"]],[35,37,["H8104"]],[37,40,["H3605"]],[40,42,["H1870"]],[42,43,["H834"]],[43,45,["H1980"]],[45,48,["H3605"]],[48,50,["H5971"]],[50,51,["H7130"]],[51,54,["H5674"]]]},{"k":6494,"v":[[0,3,["H3068"]],[3,5,["H1644"]],[5,7,["H4480","H6440"]],[7,8,["(H853)"]],[8,9,["H3605"]],[9,11,["H5971"]],[11,14,["H567"]],[14,16,["H3427"]],[16,19,["H776"]],[19,22,["H587"]],[22,23,["H1571"]],[23,24,["H5647","(H853)"]],[24,26,["H3068"]],[26,27,["H3588"]],[27,28,["H1931"]],[28,31,["H430"]]]},{"k":6495,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,8,["H3808","H3201"]],[8,9,["H5647","(H853)"]],[9,11,["H3068"]],[11,12,["H3588"]],[12,13,["H1931"]],[13,16,["H6918"]],[16,17,["H430"]],[17,18,["H1931"]],[18,21,["H7072"]],[21,22,["H410"]],[22,25,["H3808"]],[25,26,["H5375"]],[26,28,["H6588"]],[28,31,["H2403"]]]},{"k":6496,"v":[[0,1,["H3588"]],[1,3,["H5800","(H853)"]],[3,5,["H3068"]],[5,7,["H5647"]],[7,8,["H5236"]],[8,9,["H430"]],[9,13,["H7725"]],[13,17,["H7489"]],[17,19,["H3615"]],[19,21,["H310"]],[21,22,["H834"]],[22,27,["H3190"]]]},{"k":6497,"v":[[0,3,["H5971"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091"]],[6,7,["H3808"]],[7,8,["H3588"]],[8,11,["H5647","(H853)"]],[11,13,["H3068"]]]},{"k":6498,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H859"]],[7,9,["H5707"]],[9,12,["H3588"]],[12,13,["H859"]],[13,15,["H977"]],[15,16,["(H853)"]],[16,18,["H3068"]],[18,20,["H5647"]],[20,24,["H559"]],[24,27,["H5707"]]]},{"k":6499,"v":[[0,1,["H6258"]],[1,4,["H5493"]],[4,7,["(H853)"]],[7,8,["H5236"]],[8,9,["H430"]],[9,10,["H834"]],[10,12,["H7130"]],[12,15,["H5186","(H853)"]],[15,17,["H3824"]],[17,18,["H413"]],[18,20,["H3068"]],[20,21,["H430"]],[21,23,["H3478"]]]},{"k":6500,"v":[[0,3,["H5971"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3091","(H853)"]],[6,8,["H3068"]],[8,10,["H430"]],[10,13,["H5647"]],[13,16,["H6963"]],[16,19,["H8085"]]]},{"k":6501,"v":[[0,2,["H3091"]],[2,3,["H3772"]],[3,5,["H1285"]],[5,8,["H5971"]],[8,9,["H1931"]],[9,10,["H3117"]],[10,12,["H7760"]],[12,15,["H2706"]],[15,18,["H4941"]],[18,20,["H7927"]]]},{"k":6502,"v":[[0,2,["H3091"]],[2,3,["H3789"]],[3,4,["H428","(H853)"]],[4,5,["H1697"]],[5,8,["H5612"]],[8,11,["H8451"]],[11,13,["H430"]],[13,15,["H3947"]],[15,17,["H1419"]],[17,18,["H68"]],[18,22,["H6965"]],[22,23,["H8033"]],[23,24,["H8478"]],[24,26,["H427"]],[26,27,["H834"]],[27,31,["H4720"]],[31,34,["H3068"]]]},{"k":6503,"v":[[0,2,["H3091"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3605"]],[5,7,["H5971"]],[7,8,["H2009"]],[8,9,["H2063"]],[9,10,["H68"]],[10,12,["H1961"]],[12,14,["H5713"]],[14,17,["H3588"]],[17,18,["H1931"]],[18,20,["H8085","(H853)"]],[20,21,["H3605"]],[21,23,["H561"]],[23,26,["H3068"]],[26,27,["H834"]],[27,29,["H1696"]],[29,30,["H5973"]],[30,34,["H1961"]],[34,37,["H5713"]],[37,40,["H6435"]],[40,42,["H3584"]],[42,44,["H430"]]]},{"k":6504,"v":[[0,2,["H3091"]],[2,3,["(H853)"]],[3,5,["H5971"]],[5,6,["H7971"]],[6,8,["H376"]],[8,11,["H5159"]]]},{"k":6505,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H428"]],[7,8,["H1697"]],[8,10,["H3091"]],[10,12,["H1121"]],[12,14,["H5126"]],[14,16,["H5650"]],[16,19,["H3068"]],[19,20,["H4191"]],[20,23,["H3967"]],[23,25,["H6235"]],[25,27,["H8141"]]]},{"k":6506,"v":[[0,3,["H6912"]],[3,7,["H1366"]],[7,10,["H5159"]],[10,12,["H8556"]],[12,13,["H834"]],[13,16,["H2022"]],[16,17,["H669"]],[17,21,["H4480","H6828"]],[21,24,["H2022"]],[24,26,["H1608"]]]},{"k":6507,"v":[[0,2,["H3478"]],[2,3,["H5647","(H853)"]],[3,5,["H3068"]],[5,6,["H3605"]],[6,8,["H3117"]],[8,10,["H3091"]],[10,12,["H3605"]],[12,14,["H3117"]],[14,17,["H2205"]],[17,18,["H834"]],[18,19,["H748","H3117","H310"]],[19,20,["H3091"]],[20,22,["H834"]],[22,24,["H3045","(H853)"]],[24,25,["H3605"]],[25,27,["H4639"]],[27,30,["H3068"]],[30,31,["H834"]],[31,34,["H6213"]],[34,36,["H3478"]]]},{"k":6508,"v":[[0,3,["H6106"]],[3,5,["H3130"]],[5,6,["H834"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,12,["H5927"]],[12,15,["H4480","H4714"]],[15,16,["H6912"]],[16,19,["H7927"]],[19,22,["H2513"]],[22,24,["H7704"]],[24,25,["H834"]],[25,26,["H3290"]],[26,27,["H7069"]],[27,28,["H4480","H854"]],[28,30,["H1121"]],[30,32,["H2544"]],[32,34,["H1"]],[34,36,["H7928"]],[36,39,["H3967"]],[39,42,["H7192"]],[42,45,["H1961"]],[45,47,["H5159"]],[47,50,["H1121"]],[50,52,["H3130"]]]},{"k":6509,"v":[[0,2,["H499"]],[2,4,["H1121"]],[4,6,["H175"]],[6,7,["H4191"]],[7,10,["H6912"]],[10,14,["H1389"]],[14,18,["H6372"]],[18,20,["H1121"]],[20,21,["H834"]],[21,23,["H5414"]],[23,26,["H2022"]],[26,27,["H669"]]]},{"k":6510,"v":[[0,2,["H310"]],[2,4,["H4194"]],[4,6,["H3091"]],[6,10,["H1961"]],[10,13,["H1121"]],[13,15,["H3478"]],[15,16,["H7592"]],[16,18,["H3068"]],[18,19,["H559"]],[19,20,["H4310"]],[20,23,["H5927"]],[23,26,["H413"]],[26,28,["H3669"]],[28,29,["H8462"]],[29,31,["H3898"]],[31,33,[]]]},{"k":6511,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H3063"]],[5,8,["H5927"]],[8,9,["H2009"]],[9,12,["H5414","(H853)"]],[12,14,["H776"]],[14,17,["H3027"]]]},{"k":6512,"v":[[0,2,["H3063"]],[2,3,["H559"]],[3,5,["H8095"]],[5,7,["H251"]],[7,9,["H5927"]],[9,10,["H854"]],[10,14,["H1486"]],[14,18,["H3898"]],[18,21,["H3669"]],[21,23,["H589"]],[23,24,["H1571"]],[24,26,["H1980"]],[26,27,["H854"]],[27,31,["H1486"]],[31,33,["H8095"]],[33,34,["H1980"]],[34,35,["H854"]],[35,36,[]]]},{"k":6513,"v":[[0,2,["H3063"]],[2,4,["H5927"]],[4,7,["H3068"]],[7,8,["H5414","(H853)"]],[8,10,["H3669"]],[10,13,["H6522"]],[13,16,["H3027"]],[16,19,["H5221"]],[19,23,["H966"]],[23,24,["H6235"]],[24,25,["H505"]],[25,26,["H376"]]]},{"k":6514,"v":[[0,3,["H4672","(H853)"]],[3,4,["H137"]],[4,6,["H966"]],[6,9,["H3898"]],[9,14,["H5221","(H853)"]],[14,16,["H3669"]],[16,19,["H6522"]]]},{"k":6515,"v":[[0,2,["H137"]],[2,3,["H5127"]],[3,6,["H7291"]],[6,7,["H310"]],[7,10,["H270"]],[10,14,["H7112","(H853)"]],[14,16,["H931","H3027"]],[16,20,["H7272"]]]},{"k":6516,"v":[[0,2,["H137"]],[2,3,["H559"]],[3,6,["H7657"]],[6,7,["H4428"]],[7,10,["H931","H3027"]],[10,14,["H7272"]],[14,16,["H7112"]],[16,17,["H3950"]],[17,20,["H8478"]],[20,22,["H7979"]],[22,23,["H834"]],[23,26,["H6213"]],[26,27,["H3651"]],[27,28,["H430"]],[28,30,["H7999"]],[30,34,["H935"]],[34,37,["H3389"]],[37,39,["H8033"]],[39,41,["H4191"]]]},{"k":6517,"v":[[0,3,["H1121"]],[3,5,["H3063"]],[5,7,["H3898"]],[7,9,["H3389"]],[9,12,["H3920"]],[12,15,["H5221"]],[15,19,["H6310"]],[19,22,["H2719"]],[22,24,["H7971"]],[24,26,["H5892"]],[26,28,["H784"]]]},{"k":6518,"v":[[0,2,["H310"]],[2,4,["H1121"]],[4,6,["H3063"]],[6,8,["H3381"]],[8,10,["H3898"]],[10,13,["H3669"]],[13,15,["H3427"]],[15,18,["H2022"]],[18,22,["H5045"]],[22,26,["H8219"]]]},{"k":6519,"v":[[0,2,["H3063"]],[2,3,["H1980"]],[3,4,["H3413"]],[4,6,["H3669"]],[6,8,["H3427"]],[8,10,["H2275"]],[10,13,["H8034"]],[13,15,["H2275"]],[15,16,["H6440"]],[16,18,["H7153"]],[18,21,["H5221","(H853)"]],[21,22,["H8344"]],[22,24,["H289"]],[24,26,["H8526"]]]},{"k":6520,"v":[[0,3,["H4480","H8033"]],[3,5,["H1980"]],[5,6,["H413"]],[6,8,["H3427"]],[8,10,["H1688"]],[10,13,["H8034"]],[13,15,["H1688"]],[15,16,["H6440"]],[16,18,["H7158"]]]},{"k":6521,"v":[[0,2,["H3612"]],[2,3,["H559"]],[3,5,["H834"]],[5,6,["H5221","(H853)"]],[6,7,["H7158"]],[7,9,["H3920"]],[9,15,["H5414","(H853)"]],[15,16,["H5919"]],[16,18,["H1323"]],[18,20,["H802"]]]},{"k":6522,"v":[[0,2,["H6274"]],[2,4,["H1121"]],[4,6,["H7073"]],[6,7,["H3612"]],[7,8,["H6996"]],[8,9,["H251"]],[9,10,["H3920"]],[10,14,["H5414"]],[14,15,["(H853)"]],[15,16,["H5919"]],[16,18,["H1323"]],[18,20,["H802"]]]},{"k":6523,"v":[[0,5,["H1961"]],[5,8,["H935"]],[8,13,["H5496"]],[13,16,["H7592"]],[16,17,["H4480","H854"]],[17,19,["H1"]],[19,21,["H7704"]],[21,24,["H6795"]],[24,26,["H4480","H5921"]],[26,28,["H2543"]],[28,30,["H3612"]],[30,31,["H559"]],[31,34,["H4100"]],[34,36,[]]]},{"k":6524,"v":[[0,3,["H559"]],[3,6,["H3051"]],[6,9,["H1293"]],[9,10,["H3588"]],[10,13,["H5414"]],[13,16,["H5045"]],[16,17,["H776"]],[17,18,["H5414"]],[18,21,["H1543"]],[21,23,["H4325"]],[23,25,["H3612"]],[25,26,["H5414"]],[26,27,["(H853)"]],[27,29,["H5942"]],[29,30,["H1543"]],[30,33,["H8482"]],[33,34,["H1543"]]]},{"k":6525,"v":[[0,3,["H1121"]],[3,6,["H7017"]],[6,7,["H4872"]],[7,10,["H2859"]],[10,12,["H5927"]],[12,16,["H4480","H5892"]],[16,19,["H8558"]],[19,20,["H854"]],[20,22,["H1121"]],[22,24,["H3063"]],[24,27,["H4480","H4057"]],[27,29,["H3063"]],[29,30,["H834"]],[30,34,["H5045"]],[34,36,["H6166"]],[36,39,["H1980"]],[39,41,["H3427"]],[41,42,["H854"]],[42,44,["H5971"]]]},{"k":6526,"v":[[0,2,["H3063"]],[2,3,["H1980"]],[3,4,["H854"]],[4,5,["H8095"]],[5,7,["H251"]],[7,10,["H5221","(H853)"]],[10,12,["H3669"]],[12,14,["H3427"]],[14,15,["H6857"]],[15,18,["H2763"]],[18,20,["(H853)"]],[20,22,["H8034"]],[22,25,["H5892"]],[25,27,["H7121"]],[27,28,["H2767"]]]},{"k":6527,"v":[[0,2,["H3063"]],[2,3,["H3920","(H853)"]],[3,4,["H5804"]],[4,5,["(H853)"]],[5,7,["H1366"]],[7,10,["H831"]],[10,13,["H1366"]],[13,16,["H6138"]],[16,19,["H1366"]],[19,20,[]]]},{"k":6528,"v":[[0,3,["H3068"]],[3,4,["H1961"]],[4,5,["H854"]],[5,6,["H3063"]],[6,10,["H3423","(H853)"]],[10,15,["H2022"]],[15,16,["H3588"]],[16,18,["H3808"]],[18,20,["H3423","(H853)"]],[20,22,["H3427"]],[22,25,["H6010"]],[25,26,["H3588"]],[26,29,["H7393"]],[29,31,["H1270"]]]},{"k":6529,"v":[[0,3,["H5414","(H853)"]],[3,4,["H2275"]],[4,6,["H3612"]],[6,7,["H834"]],[7,8,["H4872"]],[8,9,["H1696"]],[9,12,["H3423"]],[12,13,["H4480","H8033","(H853)"]],[13,15,["H7969"]],[15,16,["H1121"]],[16,18,["H6061"]]]},{"k":6530,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,7,["H3808"]],[7,9,["H3423"]],[9,11,["H2983"]],[11,13,["H3427"]],[13,14,["H3389"]],[14,17,["H2983"]],[17,18,["H3427"]],[18,19,["H854"]],[19,21,["H1121"]],[21,23,["H1144"]],[23,25,["H3389"]],[25,26,["H5704"]],[26,27,["H2088"]],[27,28,["H3117"]]]},{"k":6531,"v":[[0,3,["H1004"]],[3,5,["H3130"]],[5,6,["H1992"]],[6,7,["H1571"]],[7,9,["H5927"]],[9,11,["H1008"]],[11,14,["H3068"]],[14,16,["H5973"]],[16,17,[]]]},{"k":6532,"v":[[0,3,["H1004"]],[3,5,["H3130"]],[5,8,["H8446"]],[8,9,["H1008"]],[9,12,["H8034"]],[12,15,["H5892"]],[15,16,["H6440"]],[16,18,["H3870"]]]},{"k":6533,"v":[[0,3,["H8104"]],[3,4,["H7200"]],[4,6,["H376"]],[6,8,["H3318"]],[8,10,["H4480"]],[10,12,["H5892"]],[12,15,["H559"]],[15,18,["H7200"]],[18,22,["H4994","(H853)"]],[22,24,["H3996"]],[24,27,["H5892"]],[27,31,["H6213","H5973"]],[31,33,["H2617"]]]},{"k":6534,"v":[[0,4,["H7200"]],[4,5,["(H853)"]],[5,7,["H3996"]],[7,10,["H5892"]],[10,12,["H5221","(H853)"]],[12,14,["H5892"]],[14,17,["H6310"]],[17,20,["H2719"]],[20,24,["H7971"]],[24,26,["H376"]],[26,28,["H3605"]],[28,30,["H4940"]]]},{"k":6535,"v":[[0,3,["H376"]],[3,4,["H1980"]],[4,7,["H776"]],[7,10,["H2850"]],[10,12,["H1129"]],[12,14,["H5892"]],[14,16,["H7121"]],[16,18,["H8034"]],[18,20,["H3870"]],[20,21,["H1931"]],[21,24,["H8034"]],[24,26,["H5704"]],[26,27,["H2088"]],[27,28,["H3117"]]]},{"k":6536,"v":[[0,1,["H3808"]],[1,3,["H4519"]],[3,5,["H3423","(H853)"]],[5,9,["H1052"]],[9,12,["H1323"]],[12,14,["H8590"]],[14,17,["H1323"]],[17,20,["H3427"]],[20,22,["H1756"]],[22,25,["H1323"]],[25,28,["H3427"]],[28,30,["H2991"]],[30,33,["H1323"]],[33,36,["H3427"]],[36,38,["H4023"]],[38,41,["H1323"]],[41,44,["H3669"]],[44,45,["H2974"]],[45,46,["H3427"]],[46,48,["H2063"]],[48,49,["H776"]]]},{"k":6537,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,7,["H3478"]],[7,9,["H2388"]],[9,12,["H7760","(H853)"]],[12,14,["H3669"]],[14,16,["H4522"]],[16,19,["H3808"]],[19,23,["H3423","H3423"]]]},{"k":6538,"v":[[0,1,["H3808"]],[1,3,["H669"]],[3,5,["H3423","(H853)"]],[5,7,["H3669"]],[7,9,["H3427"]],[9,11,["H1507"]],[11,14,["H3669"]],[14,15,["H3427"]],[15,17,["H1507"]],[17,18,["H7130"]],[18,19,[]]]},{"k":6539,"v":[[0,1,["H3808"]],[1,3,["H2074"]],[3,5,["H3423","(H853)"]],[5,7,["H3427"]],[7,9,["H7003"]],[9,12,["H3427"]],[12,14,["H5096"]],[14,17,["H3669"]],[17,18,["H3427"]],[18,19,["H7130"]],[19,22,["H1961"]],[22,23,["H4522"]]]},{"k":6540,"v":[[0,1,["H3808"]],[1,3,["H836"]],[3,5,["H3423","(H853)"]],[5,7,["H3427"]],[7,9,["H5910"]],[9,12,["H3427"]],[12,14,["H6721"]],[14,17,["H303"]],[17,20,["H392"]],[20,23,["H2462"]],[23,26,["H663"]],[26,29,["H7340"]]]},{"k":6541,"v":[[0,3,["H843"]],[3,4,["H3427"]],[4,5,["H7130"]],[5,7,["H3669"]],[7,9,["H3427"]],[9,12,["H776"]],[12,13,["H3588"]],[13,16,["H3808"]],[16,19,["H3423"]]]},{"k":6542,"v":[[0,1,["H3808"]],[1,3,["H5321"]],[3,5,["H3423","(H853)"]],[5,7,["H3427"]],[7,9,["H1053"]],[9,12,["H3427"]],[12,14,["H1043"]],[14,17,["H3427"]],[17,18,["H7130"]],[18,20,["H3669"]],[20,22,["H3427"]],[22,25,["H776"]],[25,28,["H3427"]],[28,30,["H1053"]],[30,33,["H1043"]],[33,34,["H1961"]],[34,35,["H4522"]],[35,37,[]]]},{"k":6543,"v":[[0,3,["H567"]],[3,4,["H3905","(H853)"]],[4,6,["H1121"]],[6,8,["H1835"]],[8,11,["H2022"]],[11,12,["H3588"]],[12,15,["H3808"]],[15,16,["H5414"]],[16,20,["H3381"]],[20,23,["H6010"]]]},{"k":6544,"v":[[0,3,["H567"]],[3,4,["H2974"]],[4,5,["H3427"]],[5,7,["H2022"]],[7,8,["H2776"]],[8,10,["H357"]],[10,13,["H8169"]],[13,16,["H3027"]],[16,19,["H1004"]],[19,21,["H3130"]],[21,22,["H3513"]],[22,26,["H1961"]],[26,27,["H4522"]]]},{"k":6545,"v":[[0,3,["H1366"]],[3,6,["H567"]],[6,11,["H4480","H4608"]],[11,13,["H6137"]],[13,16,["H4480","H5553"]],[16,18,["H4605"]]]},{"k":6546,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,8,["H5927"]],[8,9,["H4480"]],[9,10,["H1537"]],[10,11,["H413"]],[11,12,["H1066"]],[12,14,["H559"]],[14,20,["H5927","(H853)"]],[20,23,["H4480","H4714"]],[23,26,["H935"]],[26,28,["H413"]],[28,30,["H776"]],[30,31,["H834"]],[31,33,["H7650"]],[33,36,["H1"]],[36,39,["H559"]],[39,42,["H3808","H5769"]],[42,43,["H6565"]],[43,45,["H1285"]],[45,46,["H854"]],[46,47,[]]]},{"k":6547,"v":[[0,2,["H859"]],[2,4,["H3772"]],[4,5,["H3808"]],[5,6,["H1285"]],[6,9,["H3427"]],[9,11,["H2063"]],[11,12,["H776"]],[12,16,["H5422"]],[16,18,["H4196"]],[18,22,["H3808"]],[22,23,["H8085"]],[23,25,["H6963"]],[25,26,["H4100"]],[26,29,["H6213"]],[29,30,["H2063"]]]},{"k":6548,"v":[[0,3,["H1571"]],[3,4,["H559"]],[4,7,["H3808"]],[7,10,["H1644","(H853)"]],[10,12,["H4480","H6440"]],[12,17,["H1961"]],[17,22,["H6654"]],[22,25,["H430"]],[25,27,["H1961"]],[27,29,["H4170"]],[29,31,[]]]},{"k":6549,"v":[[0,5,["H1961"]],[5,8,["H4397"]],[8,11,["H3068"]],[11,12,["H1696","(H853)"]],[12,13,["H428"]],[13,14,["H1697"]],[14,15,["H413"]],[15,16,["H3605"]],[16,18,["H1121"]],[18,20,["H3478"]],[20,23,["H5971"]],[23,25,["H5375","(H853)"]],[25,27,["H6963"]],[27,29,["H1058"]]]},{"k":6550,"v":[[0,3,["H7121"]],[3,5,["H8034"]],[5,7,["H1931"]],[7,8,["H4725"]],[8,9,["H1066"]],[9,12,["H2076"]],[12,13,["H8033"]],[13,16,["H3068"]]]},{"k":6551,"v":[[0,3,["H3091"]],[3,5,["(H853)"]],[5,7,["H5971"]],[7,8,["H7971"]],[8,10,["H1121"]],[10,12,["H3478"]],[12,13,["H1980"]],[13,15,["H376"]],[15,18,["H5159"]],[18,20,["H3423","(H853)"]],[20,22,["H776"]]]},{"k":6552,"v":[[0,3,["H5971"]],[3,4,["H5647","(H853)"]],[4,6,["H3068"]],[6,7,["H3605"]],[7,9,["H3117"]],[9,11,["H3091"]],[11,13,["H3605"]],[13,15,["H3117"]],[15,18,["H2205"]],[18,19,["H834"]],[19,20,["H748","H3117","H310"]],[20,21,["H3091"]],[21,22,["H834"]],[22,24,["H7200","(H853)"]],[24,25,["H3605"]],[25,27,["H1419"]],[27,28,["H4639"]],[28,31,["H3068"]],[31,32,["H834"]],[32,34,["H6213"]],[34,36,["H3478"]]]},{"k":6553,"v":[[0,2,["H3091"]],[2,4,["H1121"]],[4,6,["H5126"]],[6,8,["H5650"]],[8,11,["H3068"]],[11,12,["H4191"]],[12,15,["H3967"]],[15,17,["H6235"]],[17,18,["H8141"]],[18,19,["H1121"]]]},{"k":6554,"v":[[0,3,["H6912"]],[3,7,["H1366"]],[7,10,["H5159"]],[10,12,["H8556"]],[12,15,["H2022"]],[15,17,["H669"]],[17,21,["H4480","H6828"]],[21,24,["H2022"]],[24,25,["H1608"]]]},{"k":6555,"v":[[0,2,["H1571"]],[2,3,["H3605"]],[3,4,["H1931"]],[4,5,["H1755"]],[5,7,["H622"]],[7,8,["H413"]],[8,10,["H1"]],[10,13,["H6965"]],[13,14,["H312"]],[14,15,["H1755"]],[15,16,["H310"]],[16,18,["H834"]],[18,19,["H3045"]],[19,20,["H3808","(H853)"]],[20,22,["H3068"]],[22,24,["H1571","(H853)"]],[24,26,["H4639"]],[26,27,["H834"]],[27,30,["H6213"]],[30,32,["H3478"]]]},{"k":6556,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213","(H853)"]],[6,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H5647","(H853)"]],[15,16,["H1168"]]]},{"k":6557,"v":[[0,3,["H5800","(H853)"]],[3,5,["H3068"]],[5,6,["H430"]],[6,9,["H1"]],[9,13,["H3318","(H853)"]],[13,16,["H4480","H776"]],[16,18,["H4714"]],[18,20,["H1980","H310"]],[20,21,["H312"]],[21,22,["H430"]],[22,25,["H4480","H430"]],[25,28,["H5971"]],[28,29,["H834"]],[29,32,["H5439"]],[32,36,["H7812"]],[36,40,["H3707","(H853)"]],[40,42,["H3068"]],[42,44,["H3707"]]]},{"k":6558,"v":[[0,3,["H5800","(H853)"]],[3,5,["H3068"]],[5,7,["H5647"]],[7,8,["H1168"]],[8,10,["H6252"]]]},{"k":6559,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,10,["H3478"]],[10,13,["H5414"]],[13,17,["H3027"]],[17,19,["H8154"]],[19,21,["H8155"]],[21,25,["H4376"]],[25,29,["H3027"]],[29,32,["H341"]],[32,34,["H4480","H5439"]],[34,38,["H3201"]],[38,39,["H3808"]],[39,41,["H5750"]],[41,42,["H5975"]],[42,43,["H6440"]],[43,45,["H341"]]]},{"k":6560,"v":[[0,1,["H3605","H834"]],[1,4,["H3318"]],[4,6,["H3027"]],[6,9,["H3068"]],[9,10,["H1961"]],[10,14,["H7451"]],[14,15,["H834"]],[15,17,["H3068"]],[17,19,["H1696"]],[19,21,["H834"]],[21,23,["H3068"]],[23,25,["H7650"]],[25,31,["H3966"]],[31,32,["H3334"]]]},{"k":6561,"v":[[0,3,["H3068"]],[3,5,["H6965"]],[5,6,["H8199"]],[6,8,["H3467"]],[8,13,["H4480","H3027"]],[13,17,["H8154"]],[17,18,[]]]},{"k":6562,"v":[[0,2,["H1571"]],[2,5,["H3808"]],[5,6,["H8085"]],[6,7,["H413"]],[7,9,["H8199"]],[9,10,["H3588"]],[10,14,["H2181"]],[14,15,["H310"]],[15,16,["H312"]],[16,17,["H430"]],[17,20,["H7812"]],[20,24,["H5493"]],[24,25,["H4118"]],[25,27,["H4480"]],[27,29,["H1870"]],[29,30,["H834"]],[30,32,["H1"]],[32,33,["H1980"]],[33,35,["H8085"]],[35,37,["H4687"]],[37,40,["H3068"]],[40,43,["H6213"]],[43,44,["H3808"]],[44,45,["H3651"]]]},{"k":6563,"v":[[0,2,["H3588"]],[2,4,["H3068"]],[4,7,["H6965"]],[7,8,["H8199"]],[8,11,["H3068"]],[11,12,["H1961"]],[12,13,["H5973"]],[13,15,["H8199"]],[15,17,["H3467"]],[17,22,["H4480","H3027"]],[22,25,["H341"]],[25,26,["H3605"]],[26,28,["H3117"]],[28,31,["H8199"]],[31,32,["H3588"]],[32,34,["H5162"]],[34,36,["H3068"]],[36,40,["H4480","H5009"]],[40,44,["H4480","H6440"]],[44,46,["H3905"]],[46,49,["H1766"]],[49,50,[]]]},{"k":6564,"v":[[0,5,["H1961"]],[5,8,["H8199"]],[8,10,["H4191"]],[10,13,["H7725"]],[13,15,["H7843"]],[15,20,["H4480","H1"]],[20,22,["H1980","H310"]],[22,23,["H312"]],[23,24,["H430"]],[24,26,["H5647"]],[26,31,["H7812"]],[31,35,["H5307"]],[35,36,["H3808"]],[36,40,["H4480","H4611"]],[40,45,["H4480","H1870","H7186"]]]},{"k":6565,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,10,["H3478"]],[10,13,["H559"]],[13,14,["H3282"]],[14,15,["H834"]],[15,16,["H2088"]],[16,17,["H1471"]],[17,19,["H5674","(H853)"]],[19,21,["H1285"]],[21,22,["H834"]],[22,24,["H6680","(H853)"]],[24,26,["H1"]],[26,29,["H3808"]],[29,30,["H8085"]],[30,33,["H6963"]]]},{"k":6566,"v":[[0,1,["H589"]],[1,2,["H1571"]],[2,4,["H3808"]],[4,5,["H3254"]],[5,7,["H3423"]],[7,8,["H376"]],[8,10,["H4480","H6440"]],[10,12,["H4480"]],[12,14,["H1471"]],[14,15,["H834"]],[15,16,["H3091"]],[16,17,["H5800"]],[17,20,["H4191"]]]},{"k":6567,"v":[[0,1,["H4616"]],[1,6,["H5254","(H853)"]],[6,7,["H3478"]],[7,9,["H1992"]],[9,11,["H8104","(H853)"]],[11,13,["H1870"]],[13,16,["H3068"]],[16,18,["H1980"]],[18,20,["H834"]],[20,22,["H1"]],[22,24,["H8104"]],[24,26,["H518"]],[26,27,["H3808"]]]},{"k":6568,"v":[[0,3,["H3068"]],[3,4,["H5117","(H853)"]],[4,5,["H428"]],[5,6,["H1471"]],[6,7,["H1115"]],[7,10,["H3423"]],[10,11,["H4118"]],[11,12,["H3808"]],[12,13,["H5414"]],[13,18,["H3027"]],[18,20,["H3091"]]]},{"k":6569,"v":[[0,2,["H428"]],[2,5,["H1471"]],[5,6,["H834"]],[6,8,["H3068"]],[8,9,["H5117"]],[9,11,["H5254","(H853)"]],[11,12,["H3478"]],[12,15,["(H853)"]],[15,17,["H3605","H834"]],[17,22,["H3808"]],[22,23,["H3045","(H853)"]],[23,24,["H3605"]],[24,26,["H4421"]],[26,28,["H3667"]]]},{"k":6570,"v":[[0,1,["H7535"]],[1,2,["H4616"]],[2,4,["H1755"]],[4,7,["H1121"]],[7,9,["H3478"]],[9,11,["H3045"]],[11,13,["H3925"]],[13,15,["H4421"]],[15,18,["H7535"]],[18,20,["H834"]],[20,21,["H6440"]],[21,22,["H3045"]],[22,23,["H3808"]],[23,24,[]]]},{"k":6571,"v":[[0,2,["H2568"]],[2,3,["H5633"]],[3,6,["H6430"]],[6,8,["H3605"]],[8,10,["H3669"]],[10,13,["H6722"]],[13,16,["H2340"]],[16,18,["H3427"]],[18,20,["H2022"]],[20,21,["H3844"]],[21,23,["H4480","H2022"]],[23,24,["H1179"]],[24,25,["H5704"]],[25,28,["H935"]],[28,30,["H2574"]]]},{"k":6572,"v":[[0,3,["H1961"]],[3,5,["H5254","(H853)"]],[5,6,["H3478"]],[6,10,["H3045"]],[10,14,["H8085"]],[14,15,["(H853)"]],[15,17,["H4687"]],[17,20,["H3068"]],[20,21,["H834"]],[21,23,["H6680","(H853)"]],[23,25,["H1"]],[25,28,["H3027"]],[28,30,["H4872"]]]},{"k":6573,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H3427"]],[6,7,["H7130"]],[7,9,["H3669"]],[9,10,["H2850"]],[10,12,["H567"]],[12,14,["H6522"]],[14,16,["H2340"]],[16,18,["H2983"]]]},{"k":6574,"v":[[0,3,["H3947","(H853)"]],[3,5,["H1323"]],[5,9,["H802"]],[9,11,["H5414"]],[11,13,["H1323"]],[13,16,["H1121"]],[16,18,["H5647","(H853)"]],[18,20,["H430"]]]},{"k":6575,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213","(H853)"]],[6,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H7911","(H853)"]],[15,17,["H3068"]],[17,19,["H430"]],[19,21,["H5647","(H853)"]],[21,22,["H1168"]],[22,25,["H842"]]]},{"k":6576,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,10,["H3478"]],[10,13,["H4376"]],[13,17,["H3027"]],[17,19,["H3573"]],[19,20,["H4428"]],[20,22,["H763"]],[22,25,["H1121"]],[25,27,["H3478"]],[27,28,["H5647","(H853)"]],[28,29,["H3573"]],[29,30,["H8083"]],[30,31,["H8141"]]]},{"k":6577,"v":[[0,4,["H1121"]],[4,6,["H3478"]],[6,7,["H2199"]],[7,8,["H413"]],[8,10,["H3068"]],[10,12,["H3068"]],[12,14,["H6965"]],[14,16,["H3467"]],[16,19,["H1121"]],[19,21,["H3478"]],[21,23,["H3467"]],[23,25,["(H853)"]],[25,26,["H6274"]],[26,28,["H1121"]],[28,30,["H7073"]],[30,31,["H3612"]],[31,32,["H6996"]],[32,33,["H251"]]]},{"k":6578,"v":[[0,3,["H7307"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H5921"]],[8,12,["H8199","(H853)"]],[12,13,["H3478"]],[13,16,["H3318"]],[16,18,["H4421"]],[18,21,["H3068"]],[21,22,["H5414","(H853)"]],[22,23,["H3573"]],[23,24,["H4428"]],[24,26,["H763"]],[26,29,["H3027"]],[29,32,["H3027"]],[32,33,["H5810"]],[33,34,["H5921"]],[34,35,["H3573"]]]},{"k":6579,"v":[[0,3,["H776"]],[3,5,["H8252"]],[5,6,["H705"]],[6,7,["H8141"]],[7,9,["H6274"]],[9,11,["H1121"]],[11,13,["H7073"]],[13,14,["H4191"]]]},{"k":6580,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,7,["H7451"]],[7,8,["H3254"]],[8,11,["H5869"]],[11,14,["H3068"]],[14,17,["H3068"]],[17,18,["H2388","(H853)"]],[18,19,["H5700"]],[19,21,["H4428"]],[21,23,["H4124"]],[23,24,["H5921"]],[24,25,["H3478"]],[25,26,["H5921","H3588"]],[26,29,["H6213","(H853)"]],[29,30,["H7451"]],[30,33,["H5869"]],[33,36,["H3068"]]]},{"k":6581,"v":[[0,3,["H622"]],[3,4,["H413"]],[4,5,["(H853)"]],[5,7,["H1121"]],[7,9,["H5983"]],[9,11,["H6002"]],[11,13,["H1980"]],[13,15,["H5221","(H853)"]],[15,16,["H3478"]],[16,18,["H3423","(H853)"]],[18,20,["H5892"]],[20,23,["H8558"]]]},{"k":6582,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5647","(H853)"]],[6,7,["H5700"]],[7,9,["H4428"]],[9,11,["H4124"]],[11,12,["H8083","H6240"]],[12,13,["H8141"]]]},{"k":6583,"v":[[0,4,["H1121"]],[4,6,["H3478"]],[6,7,["H2199"]],[7,8,["H413"]],[8,10,["H3068"]],[10,12,["H3068"]],[12,15,["H6965"]],[15,17,["H3467","(H853)"]],[17,18,["H261"]],[18,20,["H1121"]],[20,22,["H1617"]],[22,24,["H1121","H1145"]],[24,26,["H376"]],[26,27,["H334","H3027","H3225"]],[27,30,["H3027"]],[30,32,["H1121"]],[32,34,["H3478"]],[34,35,["H7971"]],[35,37,["H4503"]],[37,39,["H5700"]],[39,41,["H4428"]],[41,43,["H4124"]]]},{"k":6584,"v":[[0,2,["H261"]],[2,3,["H6213"]],[3,6,["H2719"]],[6,9,["H8147"]],[9,10,["H6366"]],[10,13,["H1574"]],[13,14,["H753"]],[14,18,["H2296"]],[18,20,["H4480","H8478"]],[20,22,["H4055"]],[22,23,["H5921"]],[23,25,["H3225"]],[25,26,["H3409"]]]},{"k":6585,"v":[[0,3,["H7126","(H853)"]],[3,5,["H4503"]],[5,7,["H5700"]],[7,8,["H4428"]],[8,10,["H4124"]],[10,12,["H5700"]],[12,15,["H3966"]],[15,16,["H1277"]],[16,17,["H376"]]]},{"k":6586,"v":[[0,2,["H834"]],[2,7,["H3615"]],[7,9,["H7126","(H853)"]],[9,11,["H4503"]],[11,14,["H7971","(H853)"]],[14,16,["H5971"]],[16,18,["H5375"]],[18,20,["H4503"]]]},{"k":6587,"v":[[0,2,["H1931"]],[2,5,["H7725"]],[5,6,["H4480"]],[6,8,["H6456"]],[8,9,["H834"]],[9,11,["H854"]],[11,12,["H1537"]],[12,14,["H559"]],[14,18,["H5643"]],[18,19,["H1697"]],[19,23,["H4428"]],[23,25,["H559"]],[25,27,["H2013"]],[27,29,["H3605"]],[29,31,["H5975"]],[31,35,["H3318"]],[35,36,["H4480","H5921"]],[36,37,[]]]},{"k":6588,"v":[[0,2,["H261"]],[2,3,["H935"]],[3,4,["H413"]],[4,7,["H1931"]],[7,9,["H3427"]],[9,12,["H4747"]],[12,13,["H5944"]],[13,14,["H834"]],[14,19,["H905"]],[19,21,["H261"]],[21,22,["H559"]],[22,26,["H1697"]],[26,28,["H430"]],[28,29,["H413"]],[29,33,["H6965"]],[33,35,["H4480","H5921"]],[35,37,["H3678"]]]},{"k":6589,"v":[[0,2,["H261"]],[2,4,["H7971","(H853)"]],[4,6,["H8040"]],[6,7,["H3027"]],[7,9,["H3947","(H853)"]],[9,11,["H2719"]],[11,12,["H4480","H5921"]],[12,14,["H3225"]],[14,15,["H3409"]],[15,17,["H8628"]],[17,21,["H990"]]]},{"k":6590,"v":[[0,3,["H5325"]],[3,4,["H1571"]],[4,6,["H935"]],[6,7,["H310"]],[7,9,["H3851"]],[9,12,["H2459"]],[12,13,["H5462"]],[13,14,["H1157"]],[14,16,["H3851"]],[16,18,["H3588"]],[18,21,["H3808"]],[21,22,["H8025"]],[22,24,["H2719"]],[24,28,["H4480","H990"]],[28,31,["H6574"]],[31,33,["H3318"]]]},{"k":6591,"v":[[0,2,["H261"]],[2,4,["H3318"]],[4,7,["H4528"]],[7,9,["H5462"]],[9,11,["H1817"]],[11,14,["H5944"]],[14,16,["H1157"]],[16,18,["H5274"]],[18,19,[]]]},{"k":6592,"v":[[0,2,["H1931"]],[2,5,["H3318"]],[5,7,["H5650"]],[7,8,["H935"]],[8,12,["H7200"]],[12,14,["H2009"]],[14,16,["H1817"]],[16,19,["H5944"]],[19,21,["H5274"]],[21,23,["H559"]],[23,24,["H389"]],[24,25,["H1931"]],[25,26,["H5526","(H853)"]],[26,28,["H7272"]],[28,31,["H4747"]],[31,32,["H2315"]]]},{"k":6593,"v":[[0,3,["H2342"]],[3,4,["H5704"]],[4,7,["H954"]],[7,9,["H2009"]],[9,11,["H6605"]],[11,12,["H369"]],[12,14,["H1817"]],[14,17,["H5944"]],[17,20,["H3947","(H853)"]],[20,22,["H4668"]],[22,24,["H6605"]],[24,27,["H2009"]],[27,29,["H113"]],[29,32,["H5307"]],[32,33,["H4191"]],[33,36,["H776"]]]},{"k":6594,"v":[[0,2,["H261"]],[2,3,["H4422"]],[3,4,["H5704"]],[4,6,["H4102"]],[6,9,["H5674","(H853)"]],[9,11,["H6456"]],[11,13,["H4422"]],[13,15,["H8167"]]]},{"k":6595,"v":[[0,5,["H1961"]],[5,9,["H935"]],[9,12,["H8628"]],[12,14,["H7782"]],[14,17,["H2022"]],[17,19,["H669"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,26,["H3381"]],[26,27,["H5973"]],[27,29,["H4480"]],[29,31,["H2022"]],[31,33,["H1931"]],[33,34,["H6440"]],[34,35,[]]]},{"k":6596,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H7291"]],[6,7,["H310"]],[7,9,["H3588"]],[9,11,["H3068"]],[11,13,["H5414","(H853)"]],[13,15,["H341","(H853)"]],[15,17,["H4124"]],[17,20,["H3027"]],[20,24,["H3381"]],[24,25,["H310"]],[25,28,["H3920","(H853)"]],[28,30,["H4569"]],[30,32,["H3383"]],[32,34,["H4124"]],[34,36,["H5414"]],[36,37,["H3808"]],[37,39,["H376"]],[39,42,["H5674"]]]},{"k":6597,"v":[[0,3,["H5221"]],[3,4,["(H853)"]],[4,5,["H4124"]],[5,7,["H1931"]],[7,8,["H6256"]],[8,10,["H6235"]],[10,11,["H505"]],[11,12,["H376"]],[12,13,["H3605"]],[13,14,["H8082"]],[14,16,["H3605"]],[16,17,["H376"]],[17,19,["H2428"]],[19,22,["H4422"]],[22,23,["H3808"]],[23,25,["H376"]]]},{"k":6598,"v":[[0,2,["H4124"]],[2,4,["H3665"]],[4,5,["H1931"]],[5,6,["H3117"]],[6,7,["H8478"]],[7,9,["H3027"]],[9,11,["H3478"]],[11,14,["H776"]],[14,16,["H8252"]],[16,17,["H8084"]],[17,18,["H8141"]]]},{"k":6599,"v":[[0,2,["H310"]],[2,4,["H1961"]],[4,5,["H8044"]],[5,7,["H1121"]],[7,9,["H6067"]],[9,11,["H5221"]],[11,12,["(H853)"]],[12,14,["H6430"]],[14,15,["H8337"]],[15,16,["H3967"]],[16,17,["H376"]],[17,20,["H1241"]],[20,21,["H4451"]],[21,23,["H1931"]],[23,24,["H1571"]],[24,25,["H3467","(H853)"]],[25,26,["H3478"]]]},{"k":6600,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H3254"]],[6,7,["H6213"]],[7,8,["H7451"]],[8,11,["H5869"]],[11,14,["H3068"]],[14,16,["H261"]],[16,18,["H4191"]]]},{"k":6601,"v":[[0,3,["H3068"]],[3,4,["H4376"]],[4,8,["H3027"]],[8,10,["H2985"]],[10,11,["H4428"]],[11,13,["H3667"]],[13,14,["H834"]],[14,15,["H4427"]],[15,17,["H2674"]],[17,19,["H8269"]],[19,22,["H6635"]],[22,24,["H5516"]],[24,25,["H1931"]],[25,26,["H3427"]],[26,31,["H2800","H1471"]]]},{"k":6602,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6817"]],[6,7,["H413"]],[7,9,["H3068"]],[9,10,["H3588"]],[10,13,["H8672"]],[13,14,["H3967"]],[14,15,["H7393"]],[15,17,["H1270"]],[17,19,["H6242"]],[19,20,["H8141"]],[20,21,["H1931"]],[21,22,["H2393"]],[22,23,["H3905","(H853)"]],[23,25,["H1121"]],[25,27,["H3478"]]]},{"k":6603,"v":[[0,2,["H1683"]],[2,4,["H5031","H802"]],[4,6,["H802"]],[6,8,["H3941"]],[8,9,["H1931"]],[9,10,["H8199","(H853)"]],[10,11,["H3478"]],[11,13,["H1931"]],[13,14,["H6256"]]]},{"k":6604,"v":[[0,2,["H1931"]],[2,3,["H3427"]],[3,4,["H8478"]],[4,7,["H8560"]],[7,9,["H1683"]],[9,10,["H996"]],[10,11,["H7414"]],[11,13,["H1008"]],[13,15,["H2022"]],[15,16,["H669"]],[16,19,["H1121"]],[19,21,["H3478"]],[21,23,["H5927"]],[23,24,["H413"]],[24,27,["H4941"]]]},{"k":6605,"v":[[0,3,["H7971"]],[3,5,["H7121"]],[5,6,["H1301"]],[6,8,["H1121"]],[8,10,["H42"]],[10,13,["H4480","H6943","H5320"]],[13,15,["H559"]],[15,16,["H413"]],[16,19,["H3808"]],[19,21,["H3068"]],[21,22,["H430"]],[22,24,["H3478"]],[24,25,["H6680"]],[25,27,["H1980"]],[27,29,["H4900"]],[29,31,["H2022"]],[31,32,["H8396"]],[32,34,["H3947"]],[34,35,["H5973"]],[35,37,["H6235"]],[37,38,["H505"]],[38,39,["H376"]],[39,42,["H4480","H1121"]],[42,44,["H5321"]],[44,48,["H4480","H1121"]],[48,50,["H2074"]]]},{"k":6606,"v":[[0,4,["H4900"]],[4,5,["H413"]],[5,7,["H413"]],[7,9,["H5158"]],[9,10,["H7028","(H853)"]],[10,11,["H5516"]],[11,13,["H8269"]],[13,15,["H2985"]],[15,16,["H6635"]],[16,19,["H7393"]],[19,22,["H1995"]],[22,26,["H5414"]],[26,30,["H3027"]]]},{"k":6607,"v":[[0,2,["H1301"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H518"]],[6,9,["H1980"]],[9,10,["H5973"]],[10,15,["H1980"]],[15,17,["H518"]],[17,20,["H3808"]],[20,21,["H1980"]],[21,22,["H5973"]],[22,27,["H3808"]],[27,28,["H1980"]]]},{"k":6608,"v":[[0,3,["H559"]],[3,7,["H1980","H1980"]],[7,8,["H5973"]],[8,10,["H657"]],[10,12,["H1870"]],[12,13,["H834"]],[13,14,["H859"]],[14,15,["H1980"]],[15,17,["H3808"]],[17,18,["H1961"]],[18,21,["H8597"]],[21,22,["H3588"]],[22,24,["H3068"]],[24,26,["H4376","(H853)"]],[26,27,["H5516"]],[27,30,["H3027"]],[30,33,["H802"]],[33,35,["H1683"]],[35,36,["H6965"]],[36,38,["H1980"]],[38,39,["H5973"]],[39,40,["H1301"]],[40,42,["H6943"]]]},{"k":6609,"v":[[0,2,["H1301"]],[2,3,["H2199","(H853)"]],[3,4,["H2074"]],[4,6,["H5321"]],[6,8,["H6943"]],[8,12,["H5927"]],[12,14,["H6235"]],[14,15,["H505"]],[15,16,["H376"]],[16,19,["H7272"]],[19,21,["H1683"]],[21,23,["H5927"]],[23,24,["H5973"]],[24,25,[]]]},{"k":6610,"v":[[0,2,["H2268"]],[2,4,["H7014"]],[4,9,["H4480","H1121"]],[9,11,["H2246"]],[11,15,["H2859"]],[15,17,["H4872"]],[17,20,["H6504"]],[20,23,["H4480","H7017"]],[23,25,["H5186"]],[25,27,["H168"]],[27,28,["H5704"]],[28,30,["H436"]],[30,32,["H6815"]],[32,33,["H834"]],[33,35,["H854"]],[35,36,["H6943"]]]},{"k":6611,"v":[[0,3,["H5046"]],[3,4,["H5516"]],[4,5,["H3588"]],[5,6,["H1301"]],[6,8,["H1121"]],[8,10,["H42"]],[10,13,["H5927"]],[13,15,["H2022"]],[15,16,["H8396"]]]},{"k":6612,"v":[[0,2,["H5516"]],[2,4,["H2199","(H853)"]],[4,5,["H3605"]],[5,7,["H7393"]],[7,9,["H8672"]],[9,10,["H3967"]],[10,11,["H7393"]],[11,13,["H1270"]],[13,15,["H3605"]],[15,17,["H5971"]],[17,18,["H834"]],[18,20,["H854"]],[20,26,["H4480","H2800"]],[26,27,["H413"]],[27,29,["H5158"]],[29,31,["H7028"]]]},{"k":6613,"v":[[0,2,["H1683"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1301"]],[5,6,["H6965"]],[6,7,["H3588"]],[7,8,["H2088"]],[8,11,["H3117"]],[11,13,["H834"]],[13,15,["H3068"]],[15,17,["H5414","(H853)"]],[17,18,["H5516"]],[18,21,["H3027"]],[21,23,["H3808"]],[23,25,["H3068"]],[25,27,["H3318"]],[27,28,["H6440"]],[28,31,["H1301"]],[31,33,["H3381"]],[33,35,["H4480","H2022"]],[35,36,["H8396"]],[36,38,["H6235"]],[38,39,["H505"]],[39,40,["H376"]],[40,41,["H310"]],[41,42,[]]]},{"k":6614,"v":[[0,3,["H3068"]],[3,4,["H2000","(H853)"]],[4,5,["H5516"]],[5,7,["H3605"]],[7,9,["H7393"]],[9,11,["H3605"]],[11,13,["H4264"]],[13,16,["H6310"]],[16,19,["H2719"]],[19,20,["H6440"]],[20,21,["H1301"]],[21,24,["H5516"]],[24,26,["H3381"]],[26,27,["H4480","H5921"]],[27,29,["H4818"]],[29,32,["H5127"]],[32,35,["H7272"]]]},{"k":6615,"v":[[0,2,["H1301"]],[2,3,["H7291"]],[3,4,["H310"]],[4,6,["H7393"]],[6,8,["H310"]],[8,10,["H4264"]],[10,11,["H5704"]],[11,15,["H2800"]],[15,17,["H3605"]],[17,19,["H4264"]],[19,21,["H5516"]],[21,22,["H5307"]],[22,25,["H6310"]],[25,28,["H2719"]],[28,32,["H3808"]],[32,34,["H259"]],[34,35,["H7604"]]]},{"k":6616,"v":[[0,2,["H5516"]],[2,4,["H5127"]],[4,7,["H7272"]],[7,8,["H413"]],[8,10,["H168"]],[10,12,["H3278"]],[12,14,["H802"]],[14,16,["H2268"]],[16,18,["H7017"]],[18,19,["H3588"]],[19,22,["H7965"]],[22,23,["H996"]],[23,24,["H2985"]],[24,26,["H4428"]],[26,28,["H2674"]],[28,31,["H1004"]],[31,33,["H2268"]],[33,35,["H7017"]]]},{"k":6617,"v":[[0,2,["H3278"]],[2,4,["H3318"]],[4,6,["H7125"]],[6,7,["H5516"]],[7,9,["H559"]],[9,10,["H413"]],[10,13,["H5493"]],[13,15,["H113"]],[15,17,["H5493"]],[17,18,["H413"]],[18,20,["H3372"]],[20,21,["H408"]],[21,27,["H5493"]],[27,28,["H413"]],[28,32,["H168"]],[32,34,["H3680"]],[34,38,["H8063"]]]},{"k":6618,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,10,["H4994"]],[10,12,["H4592"]],[12,13,["H4325"]],[13,15,["H8248"]],[15,16,["H3588"]],[16,19,["H6770"]],[19,22,["H6605","(H853)"]],[22,24,["H4997"]],[24,26,["H2461"]],[26,30,["H8248"]],[30,32,["H3680"]],[32,33,[]]]},{"k":6619,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H5975"]],[6,9,["H6607"]],[9,12,["H168"]],[12,16,["H1961"]],[16,17,["H518"]],[17,19,["H376"]],[19,21,["H935"]],[21,23,["H7592"]],[23,27,["H559"]],[27,28,["H3426"]],[28,31,["H376"]],[31,32,["H6311"]],[32,36,["H559"]],[36,37,["H369"]]]},{"k":6620,"v":[[0,2,["H3278"]],[2,3,["H2268"]],[3,4,["H802"]],[4,5,["H3947","(H853)"]],[5,7,["H3489"]],[7,10,["H168"]],[10,12,["H7760","(H853)"]],[12,14,["H4718"]],[14,17,["H3027"]],[17,19,["H935"]],[19,20,["H3814"]],[20,21,["H413"]],[21,24,["H8628","(H853)"]],[24,26,["H3489"]],[26,29,["H7541"]],[29,31,["H6795"]],[31,35,["H776"]],[35,37,["H1931"]],[37,40,["H7290"]],[40,42,["H5774"]],[42,45,["H4191"]]]},{"k":6621,"v":[[0,2,["H2009"]],[2,4,["H1301"]],[4,5,["H7291","(H853)"]],[5,6,["H5516"]],[6,7,["H3278"]],[7,9,["H3318"]],[9,11,["H7125"]],[11,14,["H559"]],[14,17,["H1980"]],[17,21,["H7200"]],[21,22,["(H853)"]],[22,24,["H376"]],[24,25,["H834"]],[25,26,["H859"]],[26,27,["H1245"]],[27,31,["H935"]],[31,32,["H413"]],[32,35,["H2009"]],[35,36,["H5516"]],[36,37,["H5307"]],[37,38,["H4191"]],[38,41,["H3489"]],[41,45,["H7541"]]]},{"k":6622,"v":[[0,2,["H430"]],[2,3,["H3665"]],[3,5,["H1931"]],[5,6,["H3117","(H853)"]],[6,7,["H2985"]],[7,9,["H4428"]],[9,11,["H3667"]],[11,12,["H6440"]],[12,14,["H1121"]],[14,16,["H3478"]]]},{"k":6623,"v":[[0,3,["H3027"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,9,["H1980"]],[9,11,["H1980","H7186"]],[11,12,["H5921"]],[12,13,["H2985"]],[13,15,["H4428"]],[15,17,["H3667"]],[17,18,["H5704","H834"]],[18,21,["H3772","(H853)"]],[21,22,["H2985"]],[22,23,["H4428"]],[23,25,["H3667"]]]},{"k":6624,"v":[[0,2,["H7891"]],[2,3,["H1683"]],[3,5,["H1301"]],[5,7,["H1121"]],[7,9,["H42"]],[9,11,["H1931"]],[11,12,["H3117"]],[12,13,["H559"]]]},{"k":6625,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,7,["H6544","H6546"]],[7,9,["H3478"]],[9,12,["H5971"]],[12,15,["H5068"]]]},{"k":6626,"v":[[0,1,["H8085"]],[1,4,["H4428"]],[4,6,["H238"]],[6,9,["H7336"]],[9,10,["H595"]],[10,12,["H595"]],[12,14,["H7891"]],[14,17,["H3068"]],[17,20,["H2167"]],[20,24,["H3068"]],[24,25,["H430"]],[25,27,["H3478"]]]},{"k":6627,"v":[[0,1,["H3068"]],[1,5,["H3318"]],[5,7,["H4480","H8165"]],[7,10,["H6805"]],[10,14,["H4480","H7704"]],[14,16,["H123"]],[16,18,["H776"]],[18,19,["H7493"]],[19,20,["H1571"]],[20,22,["H8064"]],[22,23,["H5197"]],[23,25,["H5645"]],[25,26,["H1571"]],[26,27,["H5197"]],[27,28,["H4325"]]]},{"k":6628,"v":[[0,2,["H2022"]],[2,3,["H5140"]],[3,5,["H4480","H6440"]],[5,7,["H3068"]],[7,9,["H2088"]],[9,10,["H5514"]],[10,12,["H4480","H6440"]],[12,14,["H3068"]],[14,15,["H430"]],[15,17,["H3478"]]]},{"k":6629,"v":[[0,3,["H3117"]],[3,5,["H8044"]],[5,7,["H1121"]],[7,9,["H6067"]],[9,12,["H3117"]],[12,14,["H3278"]],[14,16,["H734"]],[16,18,["H2308"]],[18,21,["H1980","H5410"]],[21,22,["H1980"]],[22,24,["H734","H6128"]]]},{"k":6630,"v":[[0,5,["H6520"]],[5,6,["H2308"]],[6,8,["H2308"]],[8,10,["H3478"]],[10,12,["H5704"]],[12,14,["H1683"]],[14,15,["H7945","H6965"]],[15,18,["H6965"]],[18,20,["H517"]],[20,22,["H3478"]]]},{"k":6631,"v":[[0,2,["H977"]],[2,3,["H2319"]],[3,4,["H430"]],[4,5,["H227"]],[5,7,["H3901"]],[7,10,["H8179"]],[10,14,["H4043"]],[14,16,["H7420"]],[16,17,["H7200"]],[17,19,["H705"]],[19,20,["H505"]],[20,22,["H3478"]]]},{"k":6632,"v":[[0,2,["H3820"]],[2,6,["H2710"]],[6,8,["H3478"]],[8,12,["H5068"]],[12,15,["H5971"]],[15,16,["H1288"]],[16,19,["H3068"]]]},{"k":6633,"v":[[0,1,["H7878"]],[1,4,["H7392"]],[4,6,["H6715"]],[6,7,["H860"]],[7,10,["H3427"]],[10,11,["H5921"]],[11,12,["H4055"]],[12,14,["H1980"]],[14,15,["H5921"]],[15,17,["H1870"]]]},{"k":6634,"v":[[0,7,["H4480","H6963"]],[7,9,["H2686"]],[9,10,["H996"]],[10,15,["H4857"]],[15,16,["H8033"]],[16,19,["H8567"]],[19,22,["H6666"]],[22,25,["H3068"]],[25,29,["H6666"]],[29,35,["H6520"]],[35,37,["H3478"]],[37,38,["H227"]],[38,41,["H5971"]],[41,44,["H3068"]],[44,46,["H3381"]],[46,49,["H8179"]]]},{"k":6635,"v":[[0,1,["H5782"]],[1,2,["H5782"]],[2,3,["H1683"]],[3,4,["H5782"]],[4,5,["H5782"]],[5,6,["H1696"]],[6,8,["H7892"]],[8,9,["H6965"]],[9,10,["H1301"]],[10,15,["H7617","H7628"]],[15,17,["H1121"]],[17,19,["H42"]]]},{"k":6636,"v":[[0,1,["H227"]],[1,6,["H8300"]],[6,8,["H7287"]],[8,11,["H117"]],[11,14,["H5971"]],[14,16,["H3068"]],[16,20,["H7287"]],[20,23,["H1368"]]]},{"k":6637,"v":[[0,2,["H4480"]],[2,3,["H669"]],[3,7,["H8328"]],[7,11,["H6002"]],[11,12,["H310"]],[12,14,["H1144"]],[14,17,["H5971"]],[17,19,["H4480"]],[19,20,["H4353"]],[20,22,["H3381"]],[22,23,["H2710"]],[23,27,["H4480","H2074"]],[27,30,["H4900"]],[30,32,["H7626"]],[32,35,["H5608"]]]},{"k":6638,"v":[[0,3,["H8269"]],[3,5,["H3485"]],[5,7,["H5973"]],[7,8,["H1683"]],[8,10,["H3485"]],[10,12,["H3651"]],[12,13,["H1301"]],[13,16,["H7971"]],[16,18,["H7272"]],[18,21,["H6010"]],[21,24,["H6391"]],[24,26,["H7205"]],[26,29,["H1419"]],[29,30,["H2711"]],[30,32,["H3820"]]]},{"k":6639,"v":[[0,1,["H4100"]],[1,2,["H3427"]],[2,4,["H996"]],[4,6,["H4942"]],[6,8,["H8085"]],[8,10,["H8292"]],[10,13,["H5739"]],[13,16,["H6391"]],[16,18,["H7205"]],[18,21,["H1419"]],[21,22,["H2714"]],[22,24,["H3820"]]]},{"k":6640,"v":[[0,1,["H1568"]],[1,2,["H7931"]],[2,3,["H5676"]],[3,4,["H3383"]],[4,6,["H4100"]],[6,8,["H1835"]],[8,9,["H1481"]],[9,11,["H591"]],[11,12,["H836"]],[12,13,["H3427"]],[13,16,["H3220"]],[16,17,["H2348"]],[17,19,["H7931"]],[19,20,["H5921"]],[20,22,["H4664"]]]},{"k":6641,"v":[[0,1,["H2074"]],[1,3,["H5321"]],[3,6,["H5971"]],[6,8,["H2778"]],[8,10,["H5315"]],[10,13,["H4191"]],[13,14,["H5921"]],[14,17,["H4791"]],[17,20,["H7704"]]]},{"k":6642,"v":[[0,2,["H4428"]],[2,3,["H935"]],[3,5,["H3898"]],[5,6,["H227"]],[6,7,["H3898"]],[7,9,["H4428"]],[9,11,["H3667"]],[11,13,["H8590"]],[13,14,["H5921"]],[14,16,["H4325"]],[16,18,["H4023"]],[18,20,["H3947"]],[20,21,["H3808"]],[21,22,["H1214"]],[22,24,["H3701"]]]},{"k":6643,"v":[[0,2,["H3898"]],[2,3,["H4480"]],[3,4,["H8064"]],[4,6,["H3556"]],[6,9,["H4480","H4546"]],[9,10,["H3898"]],[10,11,["H5973"]],[11,12,["H5516"]]]},{"k":6644,"v":[[0,2,["H5158"]],[2,4,["H7028"]],[4,7,["H1640"]],[7,9,["H6917"]],[9,10,["H5158"]],[10,12,["H5158"]],[12,13,["H7028"]],[13,16,["H5315"]],[16,20,["H1869"]],[20,21,["H5797"]]]},{"k":6645,"v":[[0,1,["H227"]],[1,4,["H5483","H6119"]],[4,5,["H1986"]],[5,11,["H4480","H1726"]],[11,13,["H1726"]],[13,17,["H47"]]]},{"k":6646,"v":[[0,1,["H779"]],[1,3,["H4789"]],[3,4,["H559"]],[4,6,["H4397"]],[6,9,["H3068"]],[9,12,["H779","H779"]],[12,14,["H3427"]],[14,16,["H3588"]],[16,18,["H935"]],[18,19,["H3808"]],[19,22,["H5833"]],[22,25,["H3068"]],[25,28,["H5833"]],[28,31,["H3068"]],[31,34,["H1368"]]]},{"k":6647,"v":[[0,1,["H1288"]],[1,3,["H4480","H802"]],[3,5,["H3278"]],[5,7,["H802"]],[7,9,["H2268"]],[9,11,["H7017"]],[11,13,["H1288"]],[13,18,["H4480","H802"]],[18,21,["H168"]]]},{"k":6648,"v":[[0,2,["H7592"]],[2,3,["H4325"]],[3,6,["H5414"]],[6,8,["H2461"]],[8,11,["H7126"]],[11,12,["H2529"]],[12,15,["H117"]],[15,16,["H5602"]]]},{"k":6649,"v":[[0,2,["H7971"]],[2,4,["H3027"]],[4,7,["H3489"]],[7,11,["H3225"]],[11,14,["H6001"]],[14,15,["H1989"]],[15,21,["H1986"]],[21,22,["H5516"]],[22,25,["H4277"]],[25,27,["H7218"]],[27,31,["H4272"]],[31,34,["H2498"]],[34,36,["H7541"]]]},{"k":6650,"v":[[0,1,["H996"]],[1,3,["H7272"]],[3,5,["H3766"]],[5,7,["H5307"]],[7,10,["H7901"]],[10,11,["H996"]],[11,13,["H7272"]],[13,15,["H3766"]],[15,17,["H5307"]],[17,18,["H834"]],[18,20,["H3766"]],[20,21,["H8033"]],[21,24,["H5307"]],[24,25,["H7703"]]]},{"k":6651,"v":[[0,2,["H517"]],[2,4,["H5516"]],[4,6,["H8259"]],[6,7,["H1157"]],[7,9,["H2474"]],[9,11,["H2980"]],[11,12,["H1157"]],[12,14,["H822"]],[14,15,["H4069"]],[15,16,["H954"]],[16,18,["H7393"]],[18,20,["H954"]],[20,22,["H935"]],[22,23,["H4069"]],[23,24,["H309"]],[24,26,["H6471"]],[26,29,["H4818"]]]},{"k":6652,"v":[[0,2,["H2450"]],[2,3,["H8282"]],[3,4,["H6030"]],[4,6,["H637"]],[6,7,["H1931"]],[7,8,["H7725"]],[8,9,["H561"]],[9,11,[]]]},{"k":6653,"v":[[0,3,["H3808"]],[3,4,["H4672"]],[4,8,["H2505"]],[8,10,["H7998"]],[10,12,["H7218"]],[12,13,["H1397"]],[13,15,["H7356"]],[15,17,["H7361"]],[17,19,["H5516"]],[19,21,["H7998"]],[21,24,["H6648"]],[24,26,["H7998"]],[26,29,["H6648"]],[29,31,["H7553"]],[31,34,["H6648"]],[34,36,["H7553"]],[36,43,["H6677"]],[43,49,["H7998"]]]},{"k":6654,"v":[[0,1,["H3651"]],[1,3,["H3605"]],[3,5,["H341"]],[5,6,["H6"]],[6,8,["H3068"]],[8,13,["H157"]],[13,18,["H8121"]],[18,22,["H3318"]],[22,25,["H1369"]],[25,28,["H776"]],[28,30,["H8252"]],[30,31,["H705"]],[31,32,["H8141"]]]},{"k":6655,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3068"]],[16,17,["H5414"]],[17,21,["H3027"]],[21,23,["H4080"]],[23,24,["H7651"]],[24,25,["H8141"]]]},{"k":6656,"v":[[0,3,["H3027"]],[3,5,["H4080"]],[5,6,["H5810"]],[6,7,["H5921"]],[7,8,["H3478"]],[8,10,["H4480","H6440"]],[10,13,["H4080"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,18,["H6213"]],[18,19,["(H853)"]],[19,21,["H4492"]],[21,22,["H834"]],[22,26,["H2022"]],[26,28,["H4631"]],[28,31,["H4679"]]]},{"k":6657,"v":[[0,4,["H1961"]],[4,5,["H518"]],[5,6,["H3478"]],[6,8,["H2232"]],[8,11,["H4080"]],[11,13,["H5927"]],[13,16,["H6003"]],[16,19,["H1121"]],[19,22,["H6924"]],[22,26,["H5927"]],[26,27,["H5921"]],[27,28,[]]]},{"k":6658,"v":[[0,3,["H2583"]],[3,4,["H5921"]],[4,7,["H7843","(H853)"]],[7,9,["H2981"]],[9,12,["H776"]],[12,13,["H5704"]],[13,15,["H935"]],[15,17,["H5804"]],[17,19,["H7604"]],[19,20,["H3808"]],[20,21,["H4241"]],[21,23,["H3478"]],[23,25,["H7716"]],[25,27,["H7794"]],[27,29,["H2543"]]]},{"k":6659,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,4,["H5927"]],[4,7,["H4735"]],[7,10,["H168"]],[10,13,["H935"]],[13,14,["H1992"]],[14,15,["H697"]],[15,17,["H7230"]],[17,20,["H1992"]],[20,23,["H1581"]],[23,25,["H369"]],[25,26,["H4557"]],[26,29,["H935"]],[29,32,["H776"]],[32,34,["H7843"]],[34,35,[]]]},{"k":6660,"v":[[0,2,["H3478"]],[2,4,["H3966"]],[4,5,["H1809"]],[5,6,["H4480","H6440"]],[6,9,["H4080"]],[9,12,["H1121"]],[12,14,["H3478"]],[14,15,["H2199"]],[15,16,["H413"]],[16,18,["H3068"]]]},{"k":6661,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,11,["H2199"]],[11,12,["H413"]],[12,14,["H3068"]],[14,16,["H5921","H182"]],[16,18,["H4080"]]]},{"k":6662,"v":[[0,3,["H3068"]],[3,4,["H7971"]],[4,6,["H5030"]],[6,7,["H413"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,13,["H559"]],[13,16,["H3541"]],[16,17,["H559"]],[17,19,["H3068"]],[19,20,["H430"]],[20,22,["H3478"]],[22,23,["H595"]],[23,26,["H5927","(H853)"]],[26,28,["H4480","H4714"]],[28,32,["H3318","(H853)"]],[32,36,["H4480","H1004"]],[36,38,["H5650"]]]},{"k":6663,"v":[[0,3,["H5337"]],[3,8,["H4480","H3027"]],[8,11,["H4714"]],[11,16,["H4480","H3027"]],[16,18,["H3605"]],[18,20,["H3905"]],[20,25,["H1644","(H853)"]],[25,27,["H4480","H6440"]],[27,30,["H5414"]],[30,31,["(H853)"]],[31,33,["H776"]]]},{"k":6664,"v":[[0,3,["H559"]],[3,6,["H589"]],[6,9,["H3068"]],[9,11,["H430"]],[11,12,["H3372"]],[12,13,["H3808","(H853)"]],[13,15,["H430"]],[15,18,["H567"]],[18,20,["H834"]],[20,21,["H776"]],[21,22,["H859"]],[22,23,["H3427"]],[23,27,["H3808"]],[27,28,["H8085"]],[28,30,["H6963"]]]},{"k":6665,"v":[[0,3,["H935"]],[3,5,["H4397"]],[5,8,["H3068"]],[8,10,["H3427"]],[10,11,["H8478"]],[11,13,["H424"]],[13,14,["H834"]],[14,17,["H6084"]],[17,18,["H834"]],[18,21,["H3101"]],[21,23,["H33"]],[23,26,["H1121"]],[26,27,["H1439"]],[27,28,["H2251"]],[28,29,["H2406"]],[29,32,["H1660"]],[32,34,["H5127"]],[34,36,["H4480","H6440"]],[36,38,["H4080"]]]},{"k":6666,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H7200"]],[7,8,["H413"]],[8,11,["H559"]],[11,12,["H413"]],[12,15,["H3068"]],[15,17,["H5973"]],[17,21,["H1368"]],[21,23,["H2428"]]]},{"k":6667,"v":[[0,2,["H1439"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H994"]],[6,8,["H113"]],[8,11,["H3068"]],[11,12,["H3426"]],[12,13,["H5973"]],[13,15,["H4100"]],[15,18,["H3605"]],[18,19,["H2063"]],[19,20,["H4672"]],[20,23,["H346"]],[23,25,["H3605"]],[25,27,["H6381"]],[27,28,["H834"]],[28,30,["H1"]],[30,31,["H5608"]],[31,34,["H559"]],[34,36,["H3808"]],[36,38,["H3068"]],[38,41,["H5927"]],[41,43,["H4480","H4714"]],[43,45,["H6258"]],[45,47,["H3068"]],[47,49,["H5203"]],[49,52,["H5414"]],[52,56,["H3709"]],[56,59,["H4080"]]]},{"k":6668,"v":[[0,3,["H3068"]],[3,4,["H6437"]],[4,5,["H413"]],[5,8,["H559"]],[8,10,["H1980"]],[10,11,["H2088"]],[11,13,["H3581"]],[13,17,["H3467","(H853)"]],[17,18,["H3478"]],[18,21,["H4480","H3709"]],[21,24,["H4080"]],[24,26,["H3808"]],[26,28,["H7971"]],[28,29,[]]]},{"k":6669,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H994"]],[6,8,["H136"]],[8,9,["H4100"]],[9,12,["H3467","(H853)"]],[12,13,["H3478"]],[13,14,["H2009"]],[14,16,["H504"]],[16,18,["H1800"]],[18,20,["H4519"]],[20,22,["H595"]],[22,25,["H6810"]],[25,28,["H1"]],[28,29,["H1004"]]]},{"k":6670,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H3588"]],[7,10,["H1961"]],[10,11,["H5973"]],[11,16,["H5221","(H853)"]],[16,18,["H4080"]],[18,20,["H259"]],[20,21,["H376"]]]},{"k":6671,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H518"]],[6,7,["H4994"]],[7,10,["H4672"]],[10,11,["H2580"]],[11,14,["H5869"]],[14,16,["H6213"]],[16,19,["H226"]],[19,21,["H7945","H859"]],[21,22,["H1696"]],[22,23,["H5973"]],[23,24,[]]]},{"k":6672,"v":[[0,1,["H4185"]],[1,2,["H408"]],[2,3,["H4480","H2088"]],[3,6,["H4994"]],[6,7,["H5704"]],[7,9,["H935"]],[9,10,["H413"]],[10,14,["H3318","(H853)"]],[14,16,["H4503"]],[16,18,["H5117"]],[18,20,["H6440"]],[20,24,["H559"]],[24,25,["H595"]],[25,27,["H3427"]],[27,28,["H5704"]],[28,31,["H7725"]]]},{"k":6673,"v":[[0,2,["H1439"]],[2,4,["H935"]],[4,7,["H6213"]],[7,9,["H1423","H5795"]],[9,12,["H4682"]],[12,15,["H374"]],[15,17,["H7058"]],[17,19,["H1320"]],[19,21,["H7760"]],[21,24,["H5536"]],[24,27,["H7760"]],[27,29,["H4839"]],[29,32,["H6517"]],[32,36,["H3318"]],[36,37,["H413"]],[37,39,["H413","H8478"]],[39,41,["H424"]],[41,43,["H5066"]],[43,44,[]]]},{"k":6674,"v":[[0,3,["H4397"]],[3,5,["H430"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H3947","(H853)"]],[9,11,["H1320"]],[11,15,["H4682"]],[15,17,["H5117"]],[17,19,["H413"]],[19,20,["H1975"]],[20,21,["H5553"]],[21,24,["H8210"]],[24,26,["H4839"]],[26,29,["H6213"]],[29,30,["H3651"]]]},{"k":6675,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,8,["H7971","(H853)"]],[8,10,["H7097"]],[10,13,["H4938"]],[13,14,["H834"]],[14,18,["H3027"]],[18,20,["H5060"]],[20,22,["H1320"]],[22,26,["H4682"]],[26,30,["H5927"]],[30,31,["H784"]],[31,33,["H4480"]],[33,35,["H6697"]],[35,37,["H398","(H853)"]],[37,39,["H1320"]],[39,43,["H4682"]],[43,46,["H4397"]],[46,49,["H3068"]],[49,50,["H1980"]],[50,54,["H4480","H5869"]]]},{"k":6676,"v":[[0,3,["H1439"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,6,["H1931"]],[6,9,["H4397"]],[9,12,["H3068"]],[12,13,["H1439"]],[13,14,["H559"]],[14,15,["H162"]],[15,17,["H136"]],[17,18,["H3069"]],[18,19,["H3588"]],[19,20,["H5921","H3651"]],[20,23,["H7200"]],[23,25,["H4397"]],[25,28,["H3068"]],[28,29,["H6440"]],[29,30,["H413"]],[30,31,["H6440"]]]},{"k":6677,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,7,["H7965"]],[7,11,["H3372"]],[11,12,["H408"]],[12,15,["H3808"]],[15,16,["H4191"]]]},{"k":6678,"v":[[0,2,["H1439"]],[2,3,["H1129"]],[3,5,["H4196"]],[5,6,["H8033"]],[6,9,["H3068"]],[9,11,["H7121"]],[11,13,["H3073"]],[13,14,["H5704"]],[14,15,["H2088"]],[15,16,["H3117"]],[16,19,["H5750"]],[19,21,["H6084"]],[21,24,["H33"]]]},{"k":6679,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,8,["H3915"]],[8,11,["H3068"]],[11,12,["H559"]],[12,15,["H3947","(H853)"]],[15,17,["H1"]],[17,19,["H6499","H7794"]],[19,22,["H8145"]],[22,23,["H6499"]],[23,25,["H7651"]],[25,26,["H8141"]],[26,30,["H2040","(H853)"]],[30,32,["H4196"]],[32,34,["H1168"]],[34,35,["H834"]],[35,37,["H1"]],[37,41,["H3772"]],[41,43,["H842"]],[43,44,["H834"]],[44,46,["H5921"]],[46,47,[]]]},{"k":6680,"v":[[0,2,["H1129"]],[2,4,["H4196"]],[4,7,["H3068"]],[7,9,["H430"]],[9,10,["H5921"]],[10,12,["H7218"]],[12,14,["H2088"]],[14,15,["H4581"]],[15,19,["H4634"]],[19,21,["H3947","(H853)"]],[21,23,["H8145"]],[23,24,["H6499"]],[24,26,["H5927"]],[26,29,["H5930"]],[29,32,["H6086"]],[32,35,["H842"]],[35,36,["H834"]],[36,40,["H3772"]]]},{"k":6681,"v":[[0,2,["H1439"]],[2,3,["H3947"]],[3,4,["H6235"]],[4,5,["H376"]],[5,8,["H4480","H5650"]],[8,10,["H6213"]],[10,11,["H834"]],[11,13,["H3068"]],[13,15,["H1696"]],[15,16,["H413"]],[16,21,["H1961"]],[21,22,["H834"]],[22,24,["H3372","(H853)"]],[24,26,["H1"]],[26,27,["H1004"]],[27,30,["H376"]],[30,33,["H5892"]],[33,38,["H4480","H6213"]],[38,41,["H3119"]],[41,44,["H6213"]],[44,47,["H3915"]]]},{"k":6682,"v":[[0,4,["H376"]],[4,7,["H5892"]],[7,9,["H7925"]],[9,12,["H1242"]],[12,13,["H2009"]],[13,15,["H4196"]],[15,17,["H1168"]],[17,20,["H5422"]],[20,23,["H842"]],[23,26,["H3772"]],[26,27,["H834"]],[27,29,["H5921"]],[29,33,["H8145"]],[33,34,["H6499"]],[34,36,["H5927"]],[36,37,["H5921"]],[37,39,["H4196"]],[39,42,["H1129"]]]},{"k":6683,"v":[[0,3,["H559"]],[3,4,["H376"]],[4,5,["H413"]],[5,6,["H7453"]],[6,7,["H4310"]],[7,9,["H6213"]],[9,10,["H2088"]],[10,11,["H1697"]],[11,15,["H1875"]],[15,17,["H1245"]],[17,19,["H559"]],[19,20,["H1439"]],[20,22,["H1121"]],[22,24,["H3101"]],[24,26,["H6213"]],[26,27,["H2088"]],[27,28,["H1697"]]]},{"k":6684,"v":[[0,3,["H376"]],[3,6,["H5892"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H3101"]],[9,11,["H3318","(H853)"]],[11,13,["H1121"]],[13,17,["H4191"]],[17,18,["H3588"]],[18,22,["H5422","(H853)"]],[22,24,["H4196"]],[24,26,["H1168"]],[26,28,["H3588"]],[28,32,["H3772"]],[32,34,["H842"]],[34,35,["H834"]],[35,37,["H5921"]],[37,38,[]]]},{"k":6685,"v":[[0,2,["H3101"]],[2,3,["H559"]],[3,5,["H3605"]],[5,6,["H834"]],[6,7,["H5975"]],[7,8,["H5921"]],[8,11,["H859"]],[11,12,["H7378"]],[12,14,["H1168"]],[14,16,["H859"]],[16,17,["H3467"]],[17,20,["H834"]],[20,22,["H7378"]],[22,30,["H4191"]],[30,31,["H5704"]],[31,35,["H1242"]],[35,36,["H518"]],[36,37,["H1931"]],[37,40,["H430"]],[40,43,["H7378"]],[43,46,["H3588"]],[46,50,["H5422","(H853)"]],[50,52,["H4196"]]]},{"k":6686,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,6,["H7121"]],[6,8,["H3378"]],[8,9,["H559"]],[9,11,["H1168"]],[11,12,["H7378"]],[12,15,["H3588"]],[15,19,["H5422","(H853)"]],[19,21,["H4196"]]]},{"k":6687,"v":[[0,2,["H3605"]],[2,4,["H4080"]],[4,7,["H6003"]],[7,10,["H1121"]],[10,13,["H6924"]],[13,15,["H622"]],[15,16,["H3162"]],[16,19,["H5674"]],[19,21,["H2583"]],[21,24,["H6010"]],[24,26,["H3157"]]]},{"k":6688,"v":[[0,3,["H7307"]],[3,6,["H3068"]],[6,8,["H3847","(H853)"]],[8,9,["H1439"]],[9,12,["H8628"]],[12,14,["H7782"]],[14,16,["H44"]],[16,18,["H2199"]],[18,19,["H310"]],[19,20,[]]]},{"k":6689,"v":[[0,3,["H7971"]],[3,4,["H4397"]],[4,6,["H3605"]],[6,7,["H4519"]],[7,8,["H1931"]],[8,9,["H1571"]],[9,11,["H2199"]],[11,12,["H310"]],[12,16,["H7971"]],[16,17,["H4397"]],[17,19,["H836"]],[19,22,["H2074"]],[22,25,["H5321"]],[25,29,["H5927"]],[29,31,["H7125"]],[31,32,[]]]},{"k":6690,"v":[[0,2,["H1439"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H430"]],[5,6,["H518"]],[6,7,["(H3426)"]],[7,9,["H3467","(H853)"]],[9,10,["H3478"]],[10,13,["H3027"]],[13,14,["H834"]],[14,17,["H1696"]]]},{"k":6691,"v":[[0,1,["H2009"]],[1,2,["H595"]],[2,4,["H3322","(H853)"]],[4,6,["H1492"]],[6,8,["H6785"]],[8,11,["H1637"]],[11,13,["H518"]],[13,15,["H2919"]],[15,16,["H1961"]],[16,17,["H5921"]],[17,19,["H1492"]],[19,20,["H905"]],[20,24,["H2721"]],[24,25,["H5921"]],[25,26,["H3605"]],[26,28,["H776"]],[28,33,["H3045"]],[33,34,["H3588"]],[34,37,["H3467","(H853)"]],[37,38,["H3478"]],[38,41,["H3027"]],[41,42,["H834"]],[42,45,["H1696"]]]},{"k":6692,"v":[[0,3,["H1961"]],[3,4,["H3651"]],[4,9,["H7925"]],[9,12,["H4480","H4283"]],[12,14,["H2115","(H853)"]],[14,16,["H1492"]],[16,17,["H2115"]],[17,19,["H4680"]],[19,21,["H2919"]],[21,23,["H4480"]],[23,25,["H1492"]],[25,27,["H5602"]],[27,28,["H4392"]],[28,30,["H4325"]]]},{"k":6693,"v":[[0,2,["H1439"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H430"]],[5,7,["H408"]],[7,9,["H639"]],[9,11,["H2734"]],[11,17,["H1696"]],[17,18,["H389"]],[18,20,["H6471"]],[20,23,["H5254"]],[23,26,["H4994"]],[26,27,["H7535"]],[27,29,["H6471"]],[29,32,["H1492"]],[32,35,["H4994"]],[35,36,["H1961"]],[36,37,["H2721"]],[37,38,["H905"]],[38,39,["H413"]],[39,41,["H1492"]],[41,43,["H5921"]],[43,44,["H3605"]],[44,46,["H776"]],[46,49,["H1961"]],[49,50,["H2919"]]]},{"k":6694,"v":[[0,2,["H430"]],[2,3,["H6213"]],[3,4,["H3651"]],[4,5,["H1931"]],[5,6,["H3915"]],[6,9,["H1961"]],[9,10,["H2721"]],[10,11,["H413"]],[11,13,["H1492"]],[13,14,["H905"]],[14,17,["H1961"]],[17,18,["H2919"]],[18,19,["H5921"]],[19,20,["H3605"]],[20,22,["H776"]]]},{"k":6695,"v":[[0,2,["H3378"]],[2,3,["H1931"]],[3,5,["H1439"]],[5,7,["H3605"]],[7,9,["H5971"]],[9,10,["H834"]],[10,12,["H854"]],[12,16,["H7925"]],[16,18,["H2583"]],[18,19,["H5921"]],[19,21,["H5878"]],[21,23,["H5878"]],[23,27,["H4264"]],[27,30,["H4080"]],[30,31,["H1961"]],[31,35,["H4480","H6828"]],[35,40,["H4480","H1389"]],[40,42,["H4176"]],[42,45,["H6010"]]]},{"k":6696,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H1439"]],[6,8,["H5971"]],[8,9,["H834"]],[9,11,["H854"]],[11,15,["H7227"]],[15,19,["H5414","(H853)"]],[19,21,["H4080"]],[21,24,["H3027"]],[24,25,["H6435"]],[25,26,["H3478"]],[26,28,["H6286"]],[28,29,["H5921"]],[29,31,["H559"]],[31,34,["H3027"]],[34,36,["H3467"]],[36,37,[]]]},{"k":6697,"v":[[0,1,["H6258"]],[1,4,["H4994"]],[4,5,["H7121"]],[5,8,["H241"]],[8,11,["H5971"]],[11,12,["H559"]],[12,13,["H4310"]],[13,15,["H3373"]],[15,17,["H2730"]],[17,20,["H7725"]],[20,23,["H6852"]],[23,25,["H4480","H2022"]],[25,26,["H1568"]],[26,29,["H7725"]],[29,30,["H4480"]],[30,32,["H5971"]],[32,33,["H6242"]],[33,35,["H8147"]],[35,36,["H505"]],[36,39,["H7604"]],[39,40,["H6235"]],[40,41,["H505"]]]},{"k":6698,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H1439"]],[6,8,["H5971"]],[8,10,["H5750"]],[10,12,["H7227"]],[12,15,["H3381","(H853)"]],[15,16,["H413"]],[16,18,["H4325"]],[18,22,["H6884"]],[22,26,["H8033"]],[26,30,["H1961"]],[30,33,["H834"]],[33,35,["H559"]],[35,36,["H413"]],[36,38,["H2088"]],[38,40,["H1980"]],[40,41,["H854"]],[41,44,["H1931"]],[44,46,["H1980"]],[46,47,["H854"]],[47,51,["H3605","H834"]],[51,53,["H559"]],[53,54,["H413"]],[54,56,["H2088"]],[56,58,["H3808"]],[58,59,["H1980"]],[59,60,["H5973"]],[60,63,["H1931"]],[63,65,["H3808"]],[65,66,["H1980"]]]},{"k":6699,"v":[[0,4,["H3381","(H853)"]],[4,6,["H5971"]],[6,7,["H413"]],[7,9,["H4325"]],[9,12,["H3068"]],[12,13,["H559"]],[13,14,["H413"]],[14,15,["H1439"]],[15,17,["H3605"]],[17,18,["H834"]],[18,19,["H3952"]],[19,20,["H4480"]],[20,22,["H4325"]],[22,25,["H3956"]],[25,26,["H834"]],[26,28,["H3611"]],[28,29,["H3952"]],[29,33,["H3322"]],[33,35,["H905"]],[35,38,["H3605"]],[38,39,["H834"]],[39,41,["H3766"]],[41,42,["H5921"]],[42,44,["H1290"]],[44,46,["H8354"]]]},{"k":6700,"v":[[0,3,["H4557"]],[3,7,["H3952"]],[7,10,["H3027"]],[10,11,["H413"]],[11,13,["H6310"]],[13,14,["H1961"]],[14,15,["H7969"]],[15,16,["H3967"]],[16,17,["H376"]],[17,19,["H3605"]],[19,21,["H3499"]],[21,24,["H5971"]],[24,26,["H3766"]],[26,27,["H5921"]],[27,29,["H1290"]],[29,31,["H8354"]],[31,32,["H4325"]]]},{"k":6701,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H1439"]],[6,9,["H7969"]],[9,10,["H3967"]],[10,11,["H376"]],[11,13,["H3952"]],[13,16,["H3467"]],[16,19,["H5414","(H853)"]],[19,21,["H4080"]],[21,24,["H3027"]],[24,27,["H3605"]],[27,30,["H5971"]],[30,31,["H1980"]],[31,33,["H376"]],[33,36,["H4725"]]]},{"k":6702,"v":[[0,3,["H5971"]],[3,4,["H3947","(H853)"]],[4,5,["H6720"]],[5,8,["H3027"]],[8,11,["H7782"]],[11,14,["H7971"]],[14,15,["H3605"]],[15,19,["H3478"]],[19,21,["H376"]],[21,24,["H168"]],[24,26,["H2388"]],[26,28,["H7969"]],[28,29,["H3967"]],[29,30,["H376"]],[30,33,["H4264"]],[33,35,["H4080"]],[35,36,["H1961"]],[36,37,["H4480","H8478"]],[37,41,["H6010"]]]},{"k":6703,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,8,["H3915"]],[8,11,["H3068"]],[11,12,["H559"]],[12,13,["H413"]],[13,15,["H6965"]],[15,18,["H3381"]],[18,21,["H4264"]],[21,22,["H3588"]],[22,25,["H5414"]],[25,29,["H3027"]]]},{"k":6704,"v":[[0,2,["H518"]],[2,3,["H859"]],[3,4,["H3372"]],[4,7,["H3381"]],[7,8,["H3381"]],[8,9,["H859"]],[9,11,["H6513"]],[11,13,["H5288"]],[13,14,["H3381"]],[14,15,["H413"]],[15,17,["H4264"]]]},{"k":6705,"v":[[0,4,["H8085"]],[4,5,["H4100"]],[5,7,["H1696"]],[7,9,["H310"]],[9,12,["H3027"]],[12,14,["H2388"]],[14,17,["H3381"]],[17,20,["H4264"]],[20,24,["H3381"]],[24,26,["H6513"]],[26,28,["H5288"]],[28,29,["H413"]],[29,31,["H7097"]],[31,35,["H2571"]],[35,36,["H834"]],[36,40,["H4264"]]]},{"k":6706,"v":[[0,3,["H4080"]],[3,6,["H6003"]],[6,8,["H3605"]],[8,10,["H1121"]],[10,13,["H6924"]],[13,14,["H5307"]],[14,18,["H6010"]],[18,20,["H697"]],[20,22,["H7230"]],[22,25,["H1581"]],[25,27,["H369"]],[27,28,["H4557"]],[28,31,["H2344"]],[31,32,["H7945","H5921"]],[32,34,["H3220"]],[34,35,["H8193"]],[35,37,["H7230"]]]},{"k":6707,"v":[[0,3,["H1439"]],[3,5,["H935"]],[5,6,["H2009"]],[6,10,["H376"]],[10,12,["H5608"]],[12,14,["H2472"]],[14,17,["H7453"]],[17,19,["H559"]],[19,20,["H2009"]],[20,22,["H2492"]],[22,24,["H2472"]],[24,26,["H2009"]],[26,28,["H6742"]],[28,30,["H8184"]],[30,31,["H3899"]],[31,32,["H2015"]],[32,35,["H4264"]],[35,37,["H4080"]],[37,39,["H935"]],[39,40,["H5704"]],[40,42,["H168"]],[42,44,["H5221"]],[44,48,["H5307"]],[48,50,["H2015","H4605"]],[50,54,["H168"]],[54,56,["H5307"]]]},{"k":6708,"v":[[0,3,["H7453"]],[3,4,["H6030"]],[4,6,["H559"]],[6,7,["H2063"]],[7,10,["H369"]],[10,11,["H1115","H518"]],[11,13,["H2719"]],[13,15,["H1439"]],[15,17,["H1121"]],[17,19,["H3101"]],[19,21,["H376"]],[21,23,["H3478"]],[23,27,["H3027"]],[27,29,["H430"]],[29,30,["H5414","(H853)"]],[30,31,["H4080"]],[31,33,["H3605"]],[33,35,["H4264"]]]},{"k":6709,"v":[[0,3,["H1961"]],[3,6,["H1439"]],[6,7,["H8085","(H853)"]],[7,9,["H4557"]],[9,12,["H2472"]],[12,15,["H7667"]],[15,19,["H7812"]],[19,21,["H7725"]],[21,22,["H413"]],[22,24,["H4264"]],[24,26,["H3478"]],[26,28,["H559"]],[28,29,["H6965"]],[29,30,["H3588"]],[30,32,["H3068"]],[32,34,["H5414"]],[34,37,["H3027","(H853)"]],[37,39,["H4264"]],[39,41,["H4080"]]]},{"k":6710,"v":[[0,3,["H2673","(H853)"]],[3,5,["H7969"]],[5,6,["H3967"]],[6,7,["H376"]],[7,9,["H7969"]],[9,10,["H7218"]],[10,13,["H5414"]],[13,15,["H7782"]],[15,18,["H3605"]],[18,19,["H3027"]],[19,21,["H7386"]],[21,22,["H3537"]],[22,24,["H3940"]],[24,25,["H8432"]],[25,27,["H3537"]]]},{"k":6711,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H7200"]],[6,7,["H4480"]],[7,10,["H6213"]],[10,11,["H3651"]],[11,13,["H2009"]],[13,15,["H595"]],[15,16,["H935"]],[16,19,["H7097"]],[19,22,["H4264"]],[22,25,["H1961"]],[25,27,["H834"]],[27,29,["H6213"]],[29,30,["H3651"]],[30,33,["H6213"]]]},{"k":6712,"v":[[0,3,["H8628"]],[3,6,["H7782"]],[6,7,["H595"]],[7,9,["H3605"]],[9,10,["H834"]],[10,12,["H854"]],[12,15,["H8628"]],[15,16,["H859"]],[16,18,["H7782"]],[18,19,["H1571"]],[19,22,["H5439"]],[22,24,["H3605"]],[24,26,["H4264"]],[26,28,["H559"]],[28,33,["H3068"]],[33,36,["H1439"]]]},{"k":6713,"v":[[0,2,["H1439"]],[2,5,["H3967"]],[5,6,["H376"]],[6,7,["H834"]],[7,9,["H854"]],[9,11,["H935"]],[11,14,["H7097"]],[14,17,["H4264"]],[17,20,["H7218"]],[20,23,["H8484"]],[23,24,["H821"]],[24,28,["H389"]],[28,30,["H6965","H6965","(H853)"]],[30,32,["H8104"]],[32,35,["H8628"]],[35,37,["H7782"]],[37,39,["H5310"]],[39,41,["H3537"]],[41,42,["H834"]],[42,46,["H3027"]]]},{"k":6714,"v":[[0,3,["H7969"]],[3,4,["H7218"]],[4,5,["H8628"]],[5,7,["H7782"]],[7,9,["H7665"]],[9,11,["H3537"]],[11,13,["H2388"]],[13,15,["H3940"]],[15,18,["H8040"]],[18,19,["H3027"]],[19,22,["H7782"]],[22,25,["H3225"]],[25,26,["H3027"]],[26,28,["H8628"]],[28,32,["H7121"]],[32,34,["H2719"]],[34,37,["H3068"]],[37,40,["H1439"]]]},{"k":6715,"v":[[0,3,["H5975"]],[3,5,["H376"]],[5,8,["H8478"]],[8,10,["H5439"]],[10,12,["H4264"]],[12,14,["H3605"]],[14,16,["H4264"]],[16,17,["H7323"]],[17,19,["H7321"]],[19,21,["H5127"]]]},{"k":6716,"v":[[0,3,["H7969"]],[3,4,["H3967"]],[4,5,["H8628"]],[5,7,["H7782"]],[7,10,["H3068"]],[10,11,["H7760","(H853)"]],[11,13,["H376"]],[13,14,["H2719"]],[14,17,["H7453"]],[17,20,["H3605"]],[20,22,["H4264"]],[22,25,["H4264"]],[25,26,["H5127"]],[26,27,["H5704"]],[27,28,["H1029"]],[28,30,["H6888"]],[30,32,["H5704"]],[32,34,["H8193"]],[34,36,["H65"]],[36,37,["H5921"]],[37,38,["H2888"]]]},{"k":6717,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,8,["H6817"]],[8,11,["H4480","H5321"]],[11,14,["H4480"]],[14,15,["H836"]],[15,18,["H4480"]],[18,19,["H3605"]],[19,20,["H4519"]],[20,22,["H7291"]],[22,23,["H310"]],[23,25,["H4080"]]]},{"k":6718,"v":[[0,2,["H1439"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,6,["H3605"]],[6,7,["H2022"]],[7,8,["H669"]],[8,9,["H559"]],[9,11,["H3381"]],[11,12,["H7125"]],[12,14,["H4080"]],[14,16,["H3920"]],[16,18,["(H853)"]],[18,20,["H4325"]],[20,21,["H5704"]],[21,22,["H1012"]],[22,24,["H3383"]],[24,26,["H3605"]],[26,28,["H376"]],[28,30,["H669"]],[30,33,["H6817"]],[33,35,["H3920","(H853)"]],[35,37,["H4325"]],[37,38,["H5704"]],[38,39,["H1012"]],[39,41,["H3383"]]]},{"k":6719,"v":[[0,3,["H3920"]],[3,4,["H8147"]],[4,5,["H8269"]],[5,8,["H4080","(H853)"]],[8,9,["H6159"]],[9,11,["H2062"]],[11,14,["H2026","(H853)"]],[14,15,["H6159"]],[15,18,["H6697"]],[18,19,["H6159"]],[19,21,["H2062"]],[21,23,["H2026"]],[23,26,["H3342"]],[26,28,["H2062"]],[28,30,["H7291","H413"]],[30,31,["H4080"]],[31,33,["H935"]],[33,35,["H7218"]],[35,37,["H6159"]],[37,39,["H2062"]],[39,40,["H413"]],[40,41,["H1439"]],[41,45,["H4480","H5676"]],[45,46,["H3383"]]]},{"k":6720,"v":[[0,3,["H376"]],[3,5,["H669"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H4100"]],[9,12,["H6213"]],[12,14,["H2088"]],[14,17,["H7121"]],[17,19,["H1115"]],[19,20,["H3588"]],[20,22,["H1980"]],[22,24,["H3898"]],[24,27,["H4080"]],[27,31,["H7378"]],[31,32,["H854"]],[32,34,["H2394"]]]},{"k":6721,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H4100"]],[6,9,["H6213"]],[9,10,["H6258"]],[10,16,["H3808"]],[16,21,["H5955"]],[21,23,["H669"]],[23,24,["H2896"]],[24,27,["H4480","H1210"]],[27,29,["H44"]]]},{"k":6722,"v":[[0,1,["H430"]],[1,3,["H5414"]],[3,6,["H3027","(H853)"]],[6,8,["H8269"]],[8,10,["H4080","(H853)"]],[10,11,["H6159"]],[11,13,["H2062"]],[13,15,["H4100"]],[15,18,["H3201"]],[18,20,["H6213"]],[20,25,["H227"]],[25,27,["H7307"]],[27,29,["H7503"]],[29,30,["H4480","H5921"]],[30,35,["H1696"]],[35,36,["H2088"]]]},{"k":6723,"v":[[0,2,["H1439"]],[2,3,["H935"]],[3,5,["H3383"]],[5,8,["H5674"]],[8,9,["H1931"]],[9,12,["H7969"]],[12,13,["H3967"]],[13,14,["H376"]],[14,15,["H834"]],[15,17,["H854"]],[17,19,["H5889"]],[19,21,["H7291"]],[21,22,[]]]},{"k":6724,"v":[[0,3,["H559"]],[3,6,["H376"]],[6,8,["H5523"]],[8,9,["H5414"]],[9,12,["H4994"]],[12,13,["H3603"]],[13,15,["H3899"]],[15,18,["H5971"]],[18,19,["H834"]],[19,20,["H7272"]],[20,22,["H3588"]],[22,23,["H1992"]],[23,25,["H5889"]],[25,27,["H595"]],[27,29,["H7291"]],[29,30,["H310"]],[30,31,["H2078"]],[31,33,["H6759"]],[33,34,["H4428"]],[34,36,["H4080"]]]},{"k":6725,"v":[[0,3,["H8269"]],[3,5,["H5523"]],[5,6,["H559"]],[6,9,["H3709"]],[9,11,["H2078"]],[11,13,["H6759"]],[13,14,["H6258"]],[14,17,["H3027"]],[17,18,["H3588"]],[18,21,["H5414"]],[21,22,["H3899"]],[22,25,["H6635"]]]},{"k":6726,"v":[[0,2,["H1439"]],[2,3,["H559"]],[3,4,["H3651"]],[4,7,["H3068"]],[7,9,["H5414","(H853)"]],[9,10,["H2078"]],[10,12,["H6759"]],[12,15,["H3027"]],[15,19,["H1758","(H853)"]],[19,21,["H1320"]],[21,22,["H854"]],[22,24,["H6975"]],[24,27,["H4057"]],[27,29,["H854"]],[29,30,["H1303"]]]},{"k":6727,"v":[[0,4,["H5927"]],[4,5,["H4480","H8033"]],[5,7,["H6439"]],[7,9,["H1696"]],[9,10,["H413"]],[10,12,["H2063"]],[12,15,["H376"]],[15,17,["H6439"]],[17,18,["H6030"]],[18,20,["H834"]],[20,22,["H376"]],[22,24,["H5523"]],[24,26,["H6030"]],[26,27,[]]]},{"k":6728,"v":[[0,3,["H559"]],[3,4,["H1571"]],[4,7,["H376"]],[7,9,["H6439"]],[9,10,["H559"]],[10,14,["H7725"]],[14,16,["H7965"]],[16,20,["H5422","(H853)"]],[20,21,["H2088"]],[21,22,["H4026"]]]},{"k":6729,"v":[[0,2,["H2078"]],[2,4,["H6759"]],[4,7,["H7174"]],[7,10,["H4264"]],[10,11,["H5973"]],[11,14,["H2568","H6240"]],[14,15,["H505"]],[15,17,["H3605"]],[17,20,["H3498"]],[20,22,["H4480","H3605"]],[22,24,["H4264"]],[24,27,["H1121"]],[27,30,["H6924"]],[30,33,["H5307"]],[33,35,["H3967"]],[35,37,["H6242"]],[37,38,["H505"]],[38,39,["H376"]],[39,41,["H8025"]],[41,42,["H2719"]]]},{"k":6730,"v":[[0,2,["H1439"]],[2,4,["H5927"]],[4,7,["H1870"]],[7,11,["H7931"]],[11,13,["H168"]],[13,16,["H4480","H6924"]],[16,18,["H5025"]],[18,20,["H3011"]],[20,22,["H5221","(H853)"]],[22,24,["H4264"]],[24,27,["H4264"]],[27,28,["H1961"]],[28,29,["H983"]]]},{"k":6731,"v":[[0,3,["H2078"]],[3,5,["H6759"]],[5,6,["H5127"]],[6,8,["H7291"]],[8,9,["H310"]],[9,12,["H3920","(H853)"]],[12,14,["H8147"]],[14,15,["H4428"]],[15,17,["H4080","(H853)"]],[17,18,["H2078"]],[18,20,["H6759"]],[20,22,["H2729"]],[22,23,["H3605"]],[23,25,["H4264"]]]},{"k":6732,"v":[[0,2,["H1439"]],[2,4,["H1121"]],[4,6,["H3101"]],[6,7,["H7725"]],[7,8,["H4480"]],[8,9,["H4421"]],[9,10,["H4480","H4608"]],[10,12,["H2775"]],[12,14,[]]]},{"k":6733,"v":[[0,2,["H3920"]],[2,5,["H5288"]],[5,8,["H4480","H376"]],[8,10,["H5523"]],[10,12,["H7592"]],[12,17,["H3789"]],[17,18,["H413"]],[18,19,["(H853)"]],[19,21,["H8269"]],[21,23,["H5523"]],[23,26,["H2205"]],[26,31,["H7657","H7651"]],[31,32,["H376"]]]},{"k":6734,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H376"]],[6,8,["H5523"]],[8,10,["H559"]],[10,11,["H2009"]],[11,12,["H2078"]],[12,14,["H6759"]],[14,16,["H834"]],[16,19,["H2778"]],[19,21,["H559"]],[21,24,["H3709"]],[24,26,["H2078"]],[26,28,["H6759"]],[28,29,["H6258"]],[29,32,["H3027"]],[32,33,["H3588"]],[33,36,["H5414"]],[36,37,["H3899"]],[37,40,["H376"]],[40,43,["H3287"]]]},{"k":6735,"v":[[0,3,["H3947","(H853)"]],[3,5,["H2205"]],[5,8,["H5892"]],[8,10,["H6975"]],[10,13,["H4057"]],[13,15,["H1303"]],[15,20,["H3045","(H853)"]],[20,22,["H376"]],[22,24,["H5523"]]]},{"k":6736,"v":[[0,4,["H5422"]],[4,6,["H4026"]],[6,8,["H6439"]],[8,10,["H2026","(H853)"]],[10,12,["H376"]],[12,15,["H5892"]]]},{"k":6737,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,5,["H2078"]],[5,7,["H6759"]],[7,9,["H375"]],[9,11,["H376"]],[11,14,["H834"]],[14,16,["H2026"]],[16,18,["H8396"]],[18,21,["H559"]],[21,23,["H3644"]],[23,29,["H259"]],[29,30,["H8389"]],[30,32,["H1121"]],[32,35,["H4428"]]]},{"k":6738,"v":[[0,3,["H559"]],[3,4,["H1992"]],[4,7,["H251"]],[7,10,["H1121"]],[10,13,["H517"]],[13,16,["H3068"]],[16,17,["H2416"]],[17,18,["H3863"]],[18,23,["H2421","(H853)"]],[23,26,["H3808"]],[26,27,["H2026"]],[27,28,[]]]},{"k":6739,"v":[[0,3,["H559"]],[3,5,["H3500"]],[5,7,["H1060"]],[7,8,["H6965"]],[8,10,["H2026"]],[10,14,["H5288"]],[14,15,["H8025"]],[15,16,["H3808"]],[16,18,["H2719"]],[18,19,["H3588"]],[19,21,["H3372"]],[21,22,["H3588"]],[22,25,["H5750"]],[25,27,["H5288"]]]},{"k":6740,"v":[[0,2,["H2078"]],[2,4,["H6759"]],[4,5,["H559"]],[5,6,["H6965"]],[6,7,["H859"]],[7,9,["H6293"]],[9,12,["H3588"]],[12,15,["H376"]],[15,20,["H1369"]],[20,22,["H1439"]],[22,23,["H6965"]],[23,25,["H2026","(H853)"]],[25,26,["H2078"]],[26,28,["H6759"]],[28,31,["H3947","(H853)"]],[31,33,["H7720"]],[33,34,["H834"]],[34,38,["H1581"]],[38,39,["H6677"]]]},{"k":6741,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H1439"]],[8,9,["H4910"]],[9,13,["H1571"]],[13,14,["H859"]],[14,15,["H1571"]],[15,17,["H1121"]],[17,20,["H1121"]],[20,21,["H1121"]],[21,22,["H1571"]],[22,23,["H3588"]],[23,26,["H3467"]],[26,30,["H4480","H3027"]],[30,32,["H4080"]]]},{"k":6742,"v":[[0,2,["H1439"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H589"]],[6,8,["H3808"]],[8,9,["H4910"]],[9,12,["H3808"]],[12,15,["H1121"]],[15,16,["H4910"]],[16,20,["H3068"]],[20,22,["H4910"]],[22,24,[]]]},{"k":6743,"v":[[0,2,["H1439"]],[2,3,["H559"]],[3,4,["H413"]],[4,8,["H7592"]],[8,10,["H7596"]],[10,11,["H4480"]],[11,16,["H5414"]],[16,19,["H376"]],[19,21,["H5141"]],[21,24,["H7998"]],[24,25,["H3588"]],[25,28,["H2091"]],[28,29,["H5141"]],[29,30,["H3588"]],[30,31,["H1992"]],[31,33,["H3459"]]]},{"k":6744,"v":[[0,3,["H559"]],[3,7,["H5414","H5414"]],[7,11,["H6566","(H853)"]],[11,13,["H8071"]],[13,16,["H7993"]],[16,17,["H8033"]],[17,19,["H376"]],[19,21,["H5141"]],[21,24,["H7998"]]]},{"k":6745,"v":[[0,3,["H4948"]],[3,6,["H2091"]],[6,7,["H5141"]],[7,8,["H834"]],[8,10,["H7592"]],[10,11,["H1961"]],[11,13,["H505"]],[13,15,["H7651"]],[15,16,["H3967"]],[16,19,["H2091"]],[19,20,["H905","H4480"]],[20,21,["H7720"]],[21,23,["H5188"]],[23,25,["H713"]],[25,26,["H899"]],[26,29,["H7945","H5921"]],[29,31,["H4428"]],[31,33,["H4080"]],[33,35,["H905","H4480"]],[35,37,["H6060"]],[37,38,["H834"]],[38,42,["H1581"]],[42,43,["H6677"]]]},{"k":6746,"v":[[0,2,["H1439"]],[2,3,["H6213"]],[3,5,["H646"]],[5,8,["H3322"]],[8,12,["H5892"]],[12,15,["H6084"]],[15,17,["H3605"]],[17,18,["H3478"]],[18,22,["H2181","H8033"]],[22,23,["H310"]],[23,27,["H1961"]],[27,29,["H4170"]],[29,31,["H1439"]],[31,35,["H1004"]]]},{"k":6747,"v":[[0,3,["H4080"]],[3,4,["H3665"]],[4,5,["H6440"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,14,["H5375"]],[14,16,["H7218"]],[16,17,["H3808"]],[17,18,["H3254"]],[18,21,["H776"]],[21,24,["H8252"]],[24,25,["H705"]],[25,26,["H8141"]],[26,29,["H3117"]],[29,31,["H1439"]]]},{"k":6748,"v":[[0,2,["H3378"]],[2,4,["H1121"]],[4,6,["H3101"]],[6,7,["H1980"]],[7,9,["H3427"]],[9,13,["H1004"]]]},{"k":6749,"v":[[0,2,["H1439"]],[2,3,["H1961"]],[3,6,["H7657"]],[6,7,["H1121"]],[7,10,["H3409"]],[10,11,["H3318"]],[11,12,["H3588"]],[12,14,["H1961"]],[14,15,["H7227"]],[15,16,["H802"]]]},{"k":6750,"v":[[0,3,["H6370"]],[3,4,["H834"]],[4,7,["H7927"]],[7,8,["H1931"]],[8,9,["H1571"]],[9,10,["H3205"]],[10,13,["H1121","(H853)"]],[13,15,["H8034"]],[15,17,["H7760"]],[17,18,["H40"]]]},{"k":6751,"v":[[0,2,["H1439"]],[2,4,["H1121"]],[4,6,["H3101"]],[6,7,["H4191"]],[7,10,["H2896"]],[10,12,["H7872"]],[12,15,["H6912"]],[15,18,["H6913"]],[18,20,["H3101"]],[20,22,["H1"]],[22,24,["H6084"]],[24,27,["H33"]]]},{"k":6752,"v":[[0,5,["H1961"]],[5,8,["H834"]],[8,9,["H1439"]],[9,11,["H4191"]],[11,14,["H1121"]],[14,16,["H3478"]],[16,18,["H7725"]],[18,22,["H2181"]],[22,23,["H310"]],[23,24,["H1168"]],[24,26,["H7760"]],[26,27,["H1170"]],[27,29,["H430"]]]},{"k":6753,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H2142"]],[6,7,["H3808","(H853)"]],[7,9,["H3068"]],[9,11,["H430"]],[11,14,["H5337","(H853)"]],[14,19,["H4480","H3027"]],[19,21,["H3605"]],[21,23,["H341"]],[23,26,["H4480","H5439"]]]},{"k":6754,"v":[[0,1,["H3808"]],[1,2,["H6213"]],[2,4,["H2617"]],[4,5,["H5973"]],[5,7,["H1004"]],[7,9,["H3378"]],[9,11,["H1439"]],[11,14,["H3605"]],[14,16,["H2896"]],[16,17,["H834"]],[17,20,["H6213"]],[20,21,["H5973"]],[21,22,["H3478"]]]},{"k":6755,"v":[[0,2,["H40"]],[2,4,["H1121"]],[4,6,["H3378"]],[6,7,["H1980"]],[7,9,["H7927"]],[9,10,["H413"]],[10,12,["H517"]],[12,13,["H251"]],[13,15,["H1696"]],[15,16,["H413"]],[16,19,["H413"]],[19,20,["H3605"]],[20,22,["H4940"]],[22,25,["H1004"]],[25,28,["H517"]],[28,29,["H1"]],[29,30,["H559"]]]},{"k":6756,"v":[[0,1,["H1696"]],[1,4,["H4994"]],[4,7,["H241"]],[7,9,["H3605"]],[9,11,["H1167"]],[11,13,["H7927"]],[13,14,["H4100"]],[14,16,["H2896"]],[16,21,["H3605"]],[21,23,["H1121"]],[23,25,["H3378"]],[25,30,["H7657"]],[30,31,["H376"]],[31,32,["H4910"]],[32,35,["H518"]],[35,37,["H259"]],[37,38,["H4910"]],[38,41,["H2142"]],[41,43,["H3588"]],[43,44,["H589"]],[44,47,["H6106"]],[47,50,["H1320"]]]},{"k":6757,"v":[[0,3,["H517"]],[3,4,["H251"]],[4,5,["H1696"]],[5,6,["H5921"]],[6,10,["H241"]],[10,12,["H3605"]],[12,14,["H1167"]],[14,16,["H7927","(H853)"]],[16,17,["H3605"]],[17,18,["H428"]],[18,19,["H1697"]],[19,22,["H3820"]],[22,25,["H5186","H310"]],[25,26,["H40"]],[26,27,["H3588"]],[27,29,["H559"]],[29,30,["H1931"]],[30,33,["H251"]]]},{"k":6758,"v":[[0,3,["H5414"]],[3,7,["H7657"]],[7,10,["H3701"]],[10,14,["H4480","H1004"]],[14,16,["H1170"]],[16,18,["H40"]],[18,19,["H7936"]],[19,20,["H7386"]],[20,22,["H6348"]],[22,23,["H376"]],[23,25,["H1980","H310"]],[25,26,[]]]},{"k":6759,"v":[[0,3,["H935"]],[3,6,["H1"]],[6,7,["H1004"]],[7,9,["H6084"]],[9,11,["H2026","(H853)"]],[11,13,["H251"]],[13,15,["H1121"]],[15,17,["H3378"]],[17,21,["H7657"]],[21,22,["H376"]],[22,23,["H5921"]],[23,24,["H259"]],[24,25,["H68"]],[25,28,["H3147"]],[28,30,["H6996"]],[30,31,["H1121"]],[31,33,["H3378"]],[33,35,["H3498"]],[35,36,["H3588"]],[36,39,["H2244"]]]},{"k":6760,"v":[[0,2,["H3605"]],[2,4,["H1167"]],[4,6,["H7927"]],[6,8,["H622"]],[8,10,["H3605"]],[10,14,["H1037"]],[14,16,["H1980"]],[16,18,["H4427","(H853)"]],[18,19,["H40"]],[19,20,["H4428"]],[20,21,["H5973"]],[21,23,["H436"]],[23,26,["H5324"]],[26,27,["H834"]],[27,30,["H7927"]]]},{"k":6761,"v":[[0,4,["H5046"]],[4,7,["H3147"]],[7,9,["H1980"]],[9,11,["H5975"]],[11,14,["H7218"]],[14,16,["H2022"]],[16,17,["H1630"]],[17,20,["H5375"]],[20,22,["H6963"]],[22,24,["H7121"]],[24,26,["H559"]],[26,29,["H8085"]],[29,30,["H413"]],[30,33,["H1167"]],[33,35,["H7927"]],[35,37,["H430"]],[37,39,["H8085"]],[39,40,["H413"]],[40,41,[]]]},{"k":6762,"v":[[0,2,["H6086"]],[2,4,["H1980","H1980"]],[4,9,["H4886"]],[9,11,["H4428"]],[11,12,["H5921"]],[12,16,["H559"]],[16,20,["H2132"]],[20,21,["H4427"]],[21,23,["H5921"]],[23,24,[]]]},{"k":6763,"v":[[0,4,["H2132"]],[4,5,["H559"]],[5,10,["H2308","(H853)"]],[10,12,["H1880"]],[12,13,["H834"]],[13,17,["H3513"]],[17,18,["H430"]],[18,20,["H376"]],[20,22,["H1980"]],[22,25,["H5128"]],[25,26,["H5921"]],[26,28,["H6086"]]]},{"k":6764,"v":[[0,3,["H6086"]],[3,4,["H559"]],[4,8,["H8384"]],[8,9,["H1980"]],[9,10,["H859"]],[10,12,["H4427"]],[12,13,["H5921"]],[13,14,[]]]},{"k":6765,"v":[[0,4,["H8384"]],[4,5,["H559"]],[5,10,["H2308","(H853)"]],[10,12,["H4987"]],[12,15,["H2896"]],[15,16,["H8570"]],[16,18,["H1980"]],[18,21,["H5128"]],[21,22,["H5921"]],[22,24,["H6086"]]]},{"k":6766,"v":[[0,2,["H559"]],[2,4,["H6086"]],[4,7,["H1612"]],[7,8,["H1980"]],[8,9,["H859"]],[9,11,["H4427"]],[11,12,["H5921"]],[12,13,[]]]},{"k":6767,"v":[[0,3,["H1612"]],[3,4,["H559"]],[4,9,["H2308","(H853)"]],[9,11,["H8492"]],[11,13,["H8055"]],[13,14,["H430"]],[14,16,["H376"]],[16,18,["H1980"]],[18,21,["H5128"]],[21,22,["H5921"]],[22,24,["H6086"]]]},{"k":6768,"v":[[0,2,["H559"]],[2,3,["H3605"]],[3,5,["H6086"]],[5,6,["H413"]],[6,8,["H329"]],[8,9,["H1980"]],[9,10,["H859"]],[10,12,["H4427"]],[12,13,["H5921"]],[13,14,[]]]},{"k":6769,"v":[[0,3,["H329"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H6086"]],[7,8,["H518"]],[8,10,["H571"]],[10,11,["H859"]],[11,12,["H4886"]],[12,14,["H4428"]],[14,15,["H5921"]],[15,18,["H935"]],[18,22,["H2620"]],[22,25,["H6738"]],[25,27,["H518"]],[27,28,["H369"]],[28,30,["H784"]],[30,32,["H3318"]],[32,33,["H4480"]],[33,35,["H329"]],[35,37,["H398","(H853)"]],[37,39,["H730"]],[39,41,["H3844"]]]},{"k":6770,"v":[[0,1,["H6258"]],[1,3,["H518"]],[3,6,["H6213"]],[6,7,["H571"]],[7,9,["H8549"]],[9,16,["H4427","(H853)","H40"]],[16,18,["H518"]],[18,21,["H6213"]],[21,22,["H2896"]],[22,23,["H5973"]],[23,24,["H3378"]],[24,27,["H1004"]],[27,30,["H6213"]],[30,36,["H1576"]],[36,39,["H3027"]]]},{"k":6771,"v":[[0,1,["H834"]],[1,3,["H1"]],[3,4,["H3898"]],[4,5,["H5921"]],[5,8,["H7993","(H853)"]],[8,10,["H5315"]],[10,11,["H4480","H5048"]],[11,13,["H5337"]],[13,18,["H4480","H3027"]],[18,20,["H4080"]]]},{"k":6772,"v":[[0,2,["H859"]],[2,5,["H6965"]],[5,6,["H5921"]],[6,8,["H1"]],[8,9,["H1004"]],[9,11,["H3117"]],[11,14,["H2026","(H853)"]],[14,16,["H1121"]],[16,19,["H7657"]],[19,20,["H376"]],[20,21,["H5921"]],[21,22,["H259"]],[22,23,["H68"]],[23,26,["(H853)"]],[26,27,["H40"]],[27,29,["H1121"]],[29,32,["H519"]],[32,33,["H4427"]],[33,34,["H5921"]],[34,36,["H1167"]],[36,38,["H7927"]],[38,39,["H3588"]],[39,40,["H1931"]],[40,43,["H251"]]]},{"k":6773,"v":[[0,1,["H518"]],[1,5,["H6213"]],[5,6,["H571"]],[6,8,["H8549"]],[8,9,["H5973"]],[9,10,["H3378"]],[10,12,["H5973"]],[12,14,["H1004"]],[14,15,["H2088"]],[15,16,["H3117"]],[16,18,["H8055"]],[18,21,["H40"]],[21,24,["H1931"]],[24,25,["H1571"]],[25,26,["H8055"]],[26,28,[]]]},{"k":6774,"v":[[0,2,["H518"]],[2,3,["H369"]],[3,5,["H784"]],[5,7,["H3318"]],[7,9,["H4480","H40"]],[9,11,["H398","(H853)"]],[11,13,["H1167"]],[13,15,["H7927"]],[15,18,["H1004"]],[18,20,["H4407"]],[20,23,["H784"]],[23,25,["H3318"]],[25,28,["H4480","H1167"]],[28,30,["H7927"]],[30,34,["H4480","H1004"]],[34,36,["H4407"]],[36,38,["H398","(H853)"]],[38,39,["H40"]]]},{"k":6775,"v":[[0,2,["H3147"]],[2,4,["H5127"]],[4,6,["H1272"]],[6,8,["H1980"]],[8,10,["H876"]],[10,12,["H3427"]],[12,13,["H8033"]],[13,15,["H4480","H6440"]],[15,17,["H40"]],[17,19,["H251"]]]},{"k":6776,"v":[[0,2,["H40"]],[2,4,["H7786"]],[4,5,["H7969"]],[5,6,["H8141"]],[6,7,["H5921"]],[7,8,["H3478"]]]},{"k":6777,"v":[[0,2,["H430"]],[2,3,["H7971"]],[3,5,["H7451"]],[5,6,["H7307"]],[6,7,["H996"]],[7,8,["H40"]],[8,11,["H1167"]],[11,13,["H7927"]],[13,16,["H1167"]],[16,18,["H7927"]],[18,20,["H898"]],[20,22,["H40"]]]},{"k":6778,"v":[[0,3,["H2555"]],[3,9,["H7657"]],[9,10,["H1121"]],[10,12,["H3378"]],[12,14,["H935"]],[14,17,["H1818"]],[17,19,["H7760"]],[19,20,["H5921"]],[20,21,["H40"]],[21,23,["H251"]],[23,24,["H834"]],[24,25,["H2026"]],[25,28,["H5921"]],[28,30,["H1167"]],[30,32,["H7927"]],[32,33,["H834"]],[33,34,["H2388","(H853)","H3027"]],[34,38,["H2026"]],[38,39,["(H853)"]],[39,41,["H251"]]]},{"k":6779,"v":[[0,3,["H1167"]],[3,5,["H7927"]],[5,6,["H7760"]],[6,9,["H693"]],[9,12,["H5921"]],[12,14,["H7218"]],[14,17,["H2022"]],[17,20,["H1497","(H853)"]],[20,21,["H3605"]],[21,22,["H834"]],[22,24,["H5674"]],[24,26,["H1870"]],[26,27,["H5921"]],[27,32,["H5046"]],[32,33,["H40"]]]},{"k":6780,"v":[[0,2,["H1603"]],[2,4,["H1121"]],[4,6,["H5651"]],[6,7,["H935"]],[7,10,["H251"]],[10,13,["H5674"]],[13,15,["H7927"]],[15,18,["H1167"]],[18,20,["H7927"]],[20,23,["H982"]],[23,25,[]]]},{"k":6781,"v":[[0,4,["H3318"]],[4,7,["H7704"]],[7,9,["H1219","(H853)"]],[9,11,["H3754"]],[11,13,["H1869"]],[13,17,["H6213"]],[17,18,["H1974"]],[18,21,["H935"]],[21,23,["H1004"]],[23,26,["H430"]],[26,29,["H398"]],[29,31,["H8354"]],[31,33,["H7043","(H853)"]],[33,34,["H40"]]]},{"k":6782,"v":[[0,2,["H1603"]],[2,4,["H1121"]],[4,6,["H5651"]],[6,7,["H559"]],[7,8,["H4310"]],[8,10,["H40"]],[10,12,["H4310"]],[12,14,["H7927"]],[14,15,["H3588"]],[15,18,["H5647"]],[18,21,["H3808"]],[21,24,["H1121"]],[24,26,["H3378"]],[26,28,["H2083"]],[28,30,["H6496"]],[30,31,["H5647","(H853)"]],[31,33,["H376"]],[33,35,["H2544"]],[35,37,["H1"]],[37,39,["H7928"]],[39,41,["H4069"]],[41,43,["H587"]],[43,44,["H5647"]],[44,45,[]]]},{"k":6783,"v":[[0,4,["H4310","H5414","(H853)"]],[4,5,["H2088"]],[5,6,["H5971"]],[6,10,["H3027"]],[10,14,["H5493","(H853)"]],[14,15,["H40"]],[15,18,["H559"]],[18,20,["H40"]],[20,21,["H7235"]],[21,23,["H6635"]],[23,26,["H3318"]]]},{"k":6784,"v":[[0,3,["H2083"]],[3,5,["H8269"]],[5,8,["H5892"]],[8,9,["H8085","(H853)"]],[9,11,["H1697"]],[11,13,["H1603"]],[13,15,["H1121"]],[15,17,["H5651"]],[17,19,["H639"]],[19,21,["H2734"]]]},{"k":6785,"v":[[0,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H40"]],[6,7,["H8649"]],[7,8,["H559"]],[8,9,["H2009"]],[9,10,["H1603"]],[10,12,["H1121"]],[12,14,["H5651"]],[14,17,["H251"]],[17,19,["H935"]],[19,21,["H7927"]],[21,23,["H2009"]],[23,25,["H6696","(H853)"]],[25,27,["H5892"]],[27,28,["H5921"]],[28,29,[]]]},{"k":6786,"v":[[0,1,["H6258"]],[1,3,["H6965"]],[3,5,["H3915"]],[5,6,["H859"]],[6,9,["H5971"]],[9,10,["H834"]],[10,12,["H854"]],[12,17,["H693"]],[17,20,["H7704"]]]},{"k":6787,"v":[[0,4,["H1961"]],[4,8,["H1242"]],[8,13,["H8121"]],[13,15,["H2224"]],[15,19,["H7925"]],[19,21,["H6584"]],[21,22,["H5921"]],[22,24,["H5892"]],[24,26,["H2009"]],[26,28,["H1931"]],[28,31,["H5971"]],[31,32,["H834"]],[32,34,["H854"]],[34,37,["H3318"]],[37,38,["H413"]],[38,43,["H6213"]],[43,46,["H834"]],[46,49,["H4672"]],[49,50,["H3027"]]]},{"k":6788,"v":[[0,2,["H40"]],[2,4,["H6965"]],[4,6,["H3605"]],[6,8,["H5971"]],[8,9,["H834"]],[9,11,["H5973"]],[11,14,["H3915"]],[14,18,["H693"]],[18,19,["H5921"]],[19,20,["H7927"]],[20,22,["H702"]],[22,23,["H7218"]]]},{"k":6789,"v":[[0,2,["H1603"]],[2,4,["H1121"]],[4,6,["H5651"]],[6,8,["H3318"]],[8,10,["H5975"]],[10,13,["H6607"]],[13,16,["H8179"]],[16,19,["H5892"]],[19,21,["H40"]],[21,23,["H6965"]],[23,26,["H5971"]],[26,27,["H834"]],[27,29,["H854"]],[29,31,["H4480"]],[31,34,["H3993"]]]},{"k":6790,"v":[[0,3,["H1603"]],[3,4,["H7200","(H853)"]],[4,6,["H5971"]],[6,8,["H559"]],[8,9,["H413"]],[9,10,["H2083"]],[10,11,["H2009"]],[11,15,["H3381","H5971"]],[15,18,["H4480","H7218"]],[18,21,["H2022"]],[21,23,["H2083"]],[23,24,["H559"]],[24,25,["H413"]],[25,27,["H859"]],[27,28,["H7200","(H853)"]],[28,30,["H6738"]],[30,33,["H2022"]],[33,38,["H376"]]]},{"k":6791,"v":[[0,2,["H1603"]],[2,3,["H1696"]],[3,4,["H3254"]],[4,6,["H559"]],[6,7,["H2009"]],[7,11,["H3381","H5971"]],[11,12,["H4480","H5973"]],[12,14,["H2872"]],[14,17,["H776"]],[17,19,["H259"]],[19,20,["H7218"]],[20,21,["H935"]],[21,23,["H4480","H5973"]],[23,25,["H436"]],[25,27,["H6049"]]]},{"k":6792,"v":[[0,2,["H559"]],[2,3,["H2083"]],[3,4,["H413"]],[4,6,["H346"]],[6,8,["H645"]],[8,10,["H6310"]],[10,11,["H834"]],[11,13,["H559"]],[13,14,["H4310"]],[14,16,["H40"]],[16,17,["H3588"]],[17,20,["H5647"]],[20,23,["H3808"]],[23,24,["H2088"]],[24,26,["H5971"]],[26,27,["H834"]],[27,30,["H3988"]],[30,32,["H3318"]],[32,34,["H4994"]],[34,35,["H6258"]],[35,37,["H3898"]],[37,39,[]]]},{"k":6793,"v":[[0,2,["H1603"]],[2,4,["H3318"]],[4,5,["H6440"]],[5,7,["H1167"]],[7,9,["H7927"]],[9,11,["H3898"]],[11,13,["H40"]]]},{"k":6794,"v":[[0,2,["H40"]],[2,3,["H7291"]],[3,7,["H5127"]],[7,8,["H4480","H6440"]],[8,11,["H7227"]],[11,13,["H5307"]],[13,15,["H2491"]],[15,17,["H5704"]],[17,19,["H6607"]],[19,22,["H8179"]]]},{"k":6795,"v":[[0,2,["H40"]],[2,3,["H3427"]],[3,5,["H725"]],[5,7,["H2083"]],[7,9,["H1644","(H853)"]],[9,10,["H1603"]],[10,13,["H251"]],[13,18,["H4480","H3427"]],[18,20,["H7927"]]]},{"k":6796,"v":[[0,5,["H1961"]],[5,8,["H4480","H4283"]],[8,11,["H5971"]],[11,13,["H3318"]],[13,16,["H7704"]],[16,19,["H5046"]],[19,20,["H40"]]]},{"k":6797,"v":[[0,3,["H3947","(H853)"]],[3,5,["H5971"]],[5,7,["H2673"]],[7,10,["H7969"]],[10,11,["H7218"]],[11,14,["H693"]],[14,17,["H7704"]],[17,19,["H7200"]],[19,21,["H2009"]],[21,23,["H5971"]],[23,26,["H3318"]],[26,28,["H4480"]],[28,30,["H5892"]],[30,34,["H6965"]],[34,35,["H5921"]],[35,38,["H5221"]],[38,39,[]]]},{"k":6798,"v":[[0,2,["H40"]],[2,5,["H7218"]],[5,6,["H834"]],[6,8,["H5973"]],[8,11,["H6584"]],[11,13,["H5975"]],[13,16,["H6607"]],[16,19,["H8179"]],[19,22,["H5892"]],[22,25,["H8147"]],[25,27,["H7218"]],[27,28,["H6584"]],[28,29,["H5921"]],[29,30,["H3605"]],[30,33,["H834"]],[33,37,["H7704"]],[37,39,["H5221"]],[39,40,[]]]},{"k":6799,"v":[[0,2,["H40"]],[2,3,["H3898"]],[3,6,["H5892"]],[6,7,["H3605"]],[7,8,["H1931"]],[8,9,["H3117"]],[9,12,["H3920","(H853)"]],[12,14,["H5892"]],[14,16,["H2026"]],[16,18,["H5971"]],[18,19,["H834"]],[19,24,["H5422","(H853)"]],[24,26,["H5892"]],[26,28,["H2232"]],[28,31,["H4417"]]]},{"k":6800,"v":[[0,3,["H3605"]],[3,5,["H1167"]],[5,8,["H4026"]],[8,10,["H7927"]],[10,11,["H8085"]],[11,14,["H935"]],[14,15,["H413"]],[15,17,["H6877"]],[17,20,["H1004"]],[20,23,["H410"]],[23,24,["H1286"]]]},{"k":6801,"v":[[0,4,["H5046"]],[4,5,["H40"]],[5,6,["H3588"]],[6,7,["H3605"]],[7,9,["H1167"]],[9,12,["H4026"]],[12,14,["H7927"]],[14,17,["H6908"]]]},{"k":6802,"v":[[0,2,["H40"]],[2,5,["H5927"]],[5,7,["H2022"]],[7,8,["H6756"]],[8,9,["H1931"]],[9,11,["H3605"]],[11,13,["H5971"]],[13,14,["H834"]],[14,16,["H854"]],[16,19,["H40"]],[19,20,["H3947","(H853)"]],[20,22,["H7134"]],[22,25,["H3027"]],[25,28,["H3772"]],[28,30,["H7754"]],[30,33,["H6086"]],[33,35,["H5375"]],[35,38,["H7760"]],[38,40,["H5921"]],[40,42,["H7926"]],[42,44,["H559"]],[44,45,["H413"]],[45,47,["H5971"]],[47,48,["H834"]],[48,50,["H5973"]],[50,52,["H4100"]],[52,55,["H7200"]],[55,57,["H6213"]],[57,59,["H4116"]],[59,61,["H6213"]],[61,63,["H3644"]],[63,65,[]]]},{"k":6803,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H1571"]],[5,7,["H3772"]],[7,9,["H376"]],[9,11,["H7754"]],[11,13,["H1980","H310"]],[13,14,["H40"]],[14,16,["H7760"]],[16,18,["H5921"]],[18,20,["H6877"]],[20,22,["H3341","(H853)"]],[22,24,["H6877"]],[24,26,["H784"]],[26,27,["H5921"]],[27,31,["H3605"]],[31,33,["H376"]],[33,36,["H4026"]],[36,38,["H7927"]],[38,39,["H4191"]],[39,40,["H1571"]],[40,43,["H505"]],[43,44,["H376"]],[44,46,["H802"]]]},{"k":6804,"v":[[0,2,["H1980"]],[2,3,["H40"]],[3,4,["H413"]],[4,5,["H8405"]],[5,7,["H2583"]],[7,9,["H8405"]],[9,11,["H3920"]],[11,12,[]]]},{"k":6805,"v":[[0,3,["H1961"]],[3,5,["H5797"]],[5,6,["H4026"]],[6,7,["H8432"]],[7,9,["H5892"]],[9,11,["H8033"]],[11,12,["H5127"]],[12,13,["H3605"]],[13,15,["H376"]],[15,17,["H802"]],[17,19,["H3605"]],[19,20,["H1167"]],[20,23,["H5892"]],[23,25,["H5462"]],[25,27,["H1157"]],[27,32,["H5927"]],[32,33,["H5921"]],[33,35,["H1406"]],[35,38,["H4026"]]]},{"k":6806,"v":[[0,2,["H40"]],[2,3,["H935"]],[3,4,["H5704"]],[4,6,["H4026"]],[6,8,["H3898"]],[8,13,["H5066"]],[13,14,["H5704"]],[14,16,["H6607"]],[16,19,["H4026"]],[19,21,["H8313"]],[21,24,["H784"]]]},{"k":6807,"v":[[0,3,["H259"]],[3,4,["H802"]],[4,5,["H7993"]],[5,7,["H6400"]],[7,10,["H7393"]],[10,11,["H5921"]],[11,12,["H40"]],[12,13,["H7218"]],[13,17,["H7533","(H853)"]],[17,19,["H1538"]]]},{"k":6808,"v":[[0,3,["H7121"]],[3,4,["H4120"]],[4,5,["H413"]],[5,8,["H5288"]],[8,10,["H5375","H3627"]],[10,12,["H559"]],[12,15,["H8025"]],[15,17,["H2719"]],[17,19,["H4191"]],[19,21,["H6435"]],[21,23,["H559"]],[23,28,["H802"]],[28,29,["H2026"]],[29,34,["H5288"]],[34,37,["H1856"]],[37,40,["H4191"]]]},{"k":6809,"v":[[0,4,["H376"]],[4,6,["H3478"]],[6,7,["H7200"]],[7,8,["H3588"]],[8,9,["H40"]],[9,11,["H4191"]],[11,13,["H1980"]],[13,15,["H376"]],[15,18,["H4725"]]]},{"k":6810,"v":[[0,2,["H430"]],[2,3,["H7725","(H853)"]],[3,5,["H7451"]],[5,7,["H40"]],[7,8,["H834"]],[8,10,["H6213"]],[10,13,["H1"]],[13,15,["H2026","(H853)"]],[15,17,["H7657"]],[17,18,["H251"]]]},{"k":6811,"v":[[0,2,["H3605"]],[2,4,["H7451"]],[4,7,["H376"]],[7,9,["H7927"]],[9,11,["H430"]],[11,12,["H7725"]],[12,15,["H7218"]],[15,17,["H413"]],[17,19,["H935"]],[19,21,["H7045"]],[21,23,["H3147"]],[23,25,["H1121"]],[25,27,["H3378"]]]},{"k":6812,"v":[[0,2,["H310"]],[2,3,["H40"]],[3,5,["H6965"]],[5,7,["H3467","(H853)"]],[7,8,["H3478"]],[8,9,["H8439"]],[9,11,["H1121"]],[11,13,["H6312"]],[13,15,["H1121"]],[15,17,["H1734"]],[17,19,["H376"]],[19,21,["H3485"]],[21,23,["H1931"]],[23,24,["H3427"]],[24,26,["H8069"]],[26,28,["H2022"]],[28,29,["H669"]]]},{"k":6813,"v":[[0,3,["H8199","(H853)"]],[3,4,["H3478"]],[4,5,["H6242"]],[5,7,["H7969"]],[7,8,["H8141"]],[8,10,["H4191"]],[10,13,["H6912"]],[13,15,["H8069"]]]},{"k":6814,"v":[[0,2,["H310"]],[2,4,["H6965"]],[4,5,["H2971"]],[5,7,["H1569"]],[7,9,["H8199","(H853)"]],[9,10,["H3478"]],[10,11,["H6242"]],[11,13,["H8147"]],[13,14,["H8141"]]]},{"k":6815,"v":[[0,3,["H1961"]],[3,4,["H7970"]],[4,5,["H1121"]],[5,7,["H7392"]],[7,8,["H5921"]],[8,9,["H7970"]],[9,11,["H5895"]],[11,15,["H7970"]],[15,16,["H5892"]],[16,19,["H7121"]],[19,20,["H2334"]],[20,21,["H5704"]],[21,22,["H2088"]],[22,23,["H3117"]],[23,24,["H834"]],[24,28,["H776"]],[28,30,["H1568"]]]},{"k":6816,"v":[[0,2,["H2971"]],[2,3,["H4191"]],[3,6,["H6912"]],[6,8,["H7056"]]]},{"k":6817,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,7,["H7451"]],[7,8,["H3254"]],[8,11,["H5869"]],[11,14,["H3068"]],[14,16,["H5647","(H853)"]],[16,17,["H1168"]],[17,19,["H6252"]],[19,22,["H430"]],[22,24,["H758"]],[24,27,["H430"]],[27,29,["H6721"]],[29,32,["H430"]],[32,34,["H4124"]],[34,37,["H430"]],[37,40,["H1121"]],[40,42,["H5983"]],[42,45,["H430"]],[45,48,["H6430"]],[48,50,["H5800","(H853)"]],[50,52,["H3068"]],[52,54,["H5647"]],[54,55,["H3808"]],[55,56,[]]]},{"k":6818,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,10,["H3478"]],[10,13,["H4376"]],[13,17,["H3027"]],[17,20,["H6430"]],[20,24,["H3027"]],[24,27,["H1121"]],[27,29,["H5983"]]]},{"k":6819,"v":[[0,2,["H1931"]],[2,3,["H8141"]],[3,5,["H7492"]],[5,7,["H7533","(H853)"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,12,["H8083","H6240"]],[12,13,["H8141","(H853)"]],[13,14,["H3605"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,19,["H834"]],[19,24,["H5676"]],[24,25,["H3383"]],[25,28,["H776"]],[28,31,["H567"]],[31,32,["H834"]],[32,35,["H1568"]]]},{"k":6820,"v":[[0,3,["H1121"]],[3,5,["H5983"]],[5,7,["H5674","(H853)"]],[7,8,["H3383"]],[8,10,["H3898"]],[10,11,["H1571"]],[11,13,["H3063"]],[13,16,["H1144"]],[16,20,["H1004"]],[20,22,["H669"]],[22,25,["H3478"]],[25,27,["H3966"]],[27,28,["H3334"]]]},{"k":6821,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H2199"]],[6,7,["H413"]],[7,9,["H3068"]],[9,10,["H559"]],[10,13,["H2398"]],[13,17,["H3588"]],[17,20,["H5800","(H853)"]],[20,22,["H430"]],[22,25,["H5647","(H853)"]],[25,26,["H1168"]]]},{"k":6822,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H3413"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,11,["H3808"]],[11,17,["H4480","H4714"]],[17,19,["H4480"]],[19,21,["H567"]],[21,22,["H4480"]],[22,24,["H1121"]],[24,26,["H5983"]],[26,28,["H4480"]],[28,30,["H6430"]]]},{"k":6823,"v":[[0,2,["H6722"]],[2,6,["H6002"]],[6,9,["H4584"]],[9,11,["H3905"]],[11,15,["H6817"]],[15,16,["H413"]],[16,20,["H3467"]],[20,25,["H4480","H3027"]]]},{"k":6824,"v":[[0,2,["H859"]],[2,4,["H5800"]],[4,7,["H5647"]],[7,8,["H312"]],[8,9,["H430"]],[9,10,["H3651"]],[10,13,["H3467"]],[13,15,["H3808"]],[15,16,["H3254"]]]},{"k":6825,"v":[[0,1,["H1980"]],[1,3,["H2199"]],[3,4,["H413"]],[4,6,["H430"]],[6,7,["H834"]],[7,10,["H977"]],[10,12,["H1992"]],[12,13,["H3467"]],[13,17,["H6256"]],[17,20,["H6869"]]]},{"k":6826,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H3068"]],[9,12,["H2398"]],[12,13,["H6213"]],[13,14,["H859"]],[14,17,["H3605"]],[17,19,["H2896"]],[19,20,["H5869"]],[20,22,["H5337"]],[22,24,["H389"]],[24,27,["H4994"]],[27,28,["H2088"]],[28,29,["H3117"]]]},{"k":6827,"v":[[0,4,["H5493","(H853)"]],[4,6,["H5236"]],[6,7,["H430"]],[7,9,["H4480","H7130"]],[9,12,["H5647","(H853)"]],[12,14,["H3068"]],[14,17,["H5315"]],[17,19,["H7114"]],[19,22,["H5999"]],[22,24,["H3478"]]]},{"k":6828,"v":[[0,3,["H1121"]],[3,5,["H5983"]],[5,8,["H6817"]],[8,10,["H2583"]],[10,12,["H1568"]],[12,15,["H1121"]],[15,17,["H3478"]],[17,20,["H622"]],[20,22,["H2583"]],[22,24,["H4709"]]]},{"k":6829,"v":[[0,3,["H5971"]],[3,5,["H8269"]],[5,7,["H1568"]],[7,8,["H559"]],[8,9,["H376"]],[9,10,["H413"]],[10,11,["H7453"]],[11,12,["H4310"]],[12,13,["H376"]],[13,16,["H834"]],[16,18,["H2490"]],[18,20,["H3898"]],[20,23,["H1121"]],[23,25,["H5983"]],[25,28,["H1961"]],[28,29,["H7218"]],[29,31,["H3605"]],[31,33,["H3427"]],[33,35,["H1568"]]]},{"k":6830,"v":[[0,2,["H3316"]],[2,4,["H1569"]],[4,5,["H1961"]],[5,8,["H1368"]],[8,10,["H2428"]],[10,12,["H1931"]],[12,15,["H1121"]],[15,18,["H802","H2181"]],[18,20,["H1568"]],[20,21,["H3205","(H853)"]],[21,22,["H3316"]]]},{"k":6831,"v":[[0,2,["H1568"]],[2,3,["H802"]],[3,4,["H3205"]],[4,6,["H1121"]],[6,9,["H802"]],[9,10,["H1121"]],[10,12,["H1431"]],[12,16,["H1644","(H853)"]],[16,17,["H3316"]],[17,19,["H559"]],[19,24,["H3808"]],[24,25,["H5157"]],[25,28,["H1"]],[28,29,["H1004"]],[29,30,["H3588"]],[30,31,["H859"]],[31,34,["H1121"]],[34,37,["H312"]],[37,38,["H802"]]]},{"k":6832,"v":[[0,2,["H3316"]],[2,3,["H1272"]],[3,4,["H4480","H6440"]],[4,6,["H251"]],[6,8,["H3427"]],[8,11,["H776"]],[11,13,["H2897"]],[13,17,["H3950"]],[17,18,["H7386"]],[18,19,["H376"]],[19,20,["H413"]],[20,21,["H3316"]],[21,24,["H3318"]],[24,25,["H5973"]],[25,26,[]]]},{"k":6833,"v":[[0,5,["H1961"]],[5,9,["H4480","H3117"]],[9,12,["H1121"]],[12,14,["H5983"]],[14,16,["H3898"]],[16,17,["H5973"]],[17,18,["H3478"]]]},{"k":6834,"v":[[0,3,["H1961"]],[3,6,["H834"]],[6,8,["H1121"]],[8,10,["H5983"]],[10,12,["H3898"]],[12,13,["H5973"]],[13,14,["H3478"]],[14,16,["H2205"]],[16,18,["H1568"]],[18,19,["H1980"]],[19,21,["H3947","(H853)"]],[21,22,["H3316"]],[22,26,["H4480","H776"]],[26,28,["H2897"]]]},{"k":6835,"v":[[0,3,["H559"]],[3,5,["H3316"]],[5,6,["H1980"]],[6,8,["H1961"]],[8,10,["H7101"]],[10,14,["H3898"]],[14,17,["H1121"]],[17,19,["H5983"]]]},{"k":6836,"v":[[0,2,["H3316"]],[2,3,["H559"]],[3,6,["H2205"]],[6,8,["H1568"]],[8,10,["H3808"]],[10,11,["H859"]],[11,12,["H8130"]],[12,15,["H1644"]],[15,20,["H1"]],[20,21,["H4480","H1004"]],[21,23,["H4069"]],[23,26,["H935"]],[26,27,["H413"]],[27,29,["H6258"]],[29,30,["H834"]],[30,34,["H6862"]]]},{"k":6837,"v":[[0,3,["H2205"]],[3,5,["H1568"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3316"]],[8,9,["H3651"]],[9,12,["H7725"]],[12,13,["H413"]],[13,15,["H6258"]],[15,19,["H1980"]],[19,20,["H5973"]],[20,23,["H3898"]],[23,26,["H1121"]],[26,28,["H5983"]],[28,30,["H1961"]],[30,32,["H7218"]],[32,34,["H3605"]],[34,36,["H3427"]],[36,38,["H1568"]]]},{"k":6838,"v":[[0,2,["H3316"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H2205"]],[6,8,["H1568"]],[8,9,["H518"]],[9,10,["H859"]],[10,14,["H7725","(H853)"]],[14,16,["H3898"]],[16,19,["H1121"]],[19,21,["H5983"]],[21,24,["H3068"]],[24,25,["H5414"]],[25,27,["H6440"]],[27,30,["H595"]],[30,31,["H1961"]],[31,33,["H7218"]]]},{"k":6839,"v":[[0,3,["H2205"]],[3,5,["H1568"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3316"]],[8,10,["H3068"]],[10,11,["H1961"]],[11,12,["H8085"]],[12,13,["H996"]],[13,15,["H518"]],[15,17,["H6213"]],[17,18,["H3808"]],[18,19,["H3651"]],[19,23,["H1697"]]]},{"k":6840,"v":[[0,2,["H3316"]],[2,3,["H1980"]],[3,4,["H5973"]],[4,6,["H2205"]],[6,8,["H1568"]],[8,11,["H5971"]],[11,12,["H7760"]],[12,14,["H7218"]],[14,16,["H7101"]],[16,17,["H5921"]],[17,20,["H3316"]],[20,21,["H1696","(H853)"]],[21,22,["H3605"]],[22,24,["H1697"]],[24,25,["H6440"]],[25,27,["H3068"]],[27,29,["H4709"]]]},{"k":6841,"v":[[0,2,["H3316"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,7,["H4428"]],[7,10,["H1121"]],[10,12,["H5983"]],[12,13,["H559"]],[13,14,["H4100"]],[14,21,["H3588"]],[21,24,["H935"]],[24,25,["H413"]],[25,28,["H3898"]],[28,31,["H776"]]]},{"k":6842,"v":[[0,3,["H4428"]],[3,6,["H1121"]],[6,8,["H5983"]],[8,9,["H559"]],[9,10,["H413"]],[10,12,["H4397"]],[12,14,["H3316"]],[14,15,["H3588"]],[15,16,["H3478"]],[16,18,["H3947","(H853)"]],[18,20,["H776"]],[20,24,["H5927"]],[24,27,["H4480","H4714"]],[27,29,["H4480","H769"]],[29,31,["H5704"]],[31,32,["H2999"]],[32,34,["H5704"]],[34,35,["H3383"]],[35,36,["H6258"]],[36,41,["H7725","(H853)"]],[41,42,["H7965"]]]},{"k":6843,"v":[[0,2,["H3316"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H3254","H5750"]],[5,6,["H413"]],[6,8,["H4428"]],[8,11,["H1121"]],[11,13,["H5983"]]]},{"k":6844,"v":[[0,2,["H559"]],[2,5,["H3541"]],[5,6,["H559"]],[6,7,["H3316"]],[7,8,["H3478"]],[8,11,["H3947","H3808","(H853)"]],[11,13,["H776"]],[13,15,["H4124"]],[15,18,["H776"]],[18,21,["H1121"]],[21,23,["H5983"]]]},{"k":6845,"v":[[0,1,["H3588"]],[1,3,["H3478"]],[3,5,["H5927"]],[5,7,["H4480","H4714"]],[7,9,["H1980"]],[9,12,["H4057"]],[12,13,["H5704"]],[13,15,["H5488"]],[15,16,["H3220"]],[16,18,["H935"]],[18,20,["H6946"]]]},{"k":6846,"v":[[0,2,["H3478"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,7,["H4428"]],[7,9,["H123"]],[9,10,["H559"]],[10,15,["H4994"]],[15,16,["H5674"]],[16,19,["H776"]],[19,22,["H4428"]],[22,24,["H123"]],[24,26,["H3808"]],[26,27,["H8085"]],[27,32,["H1571"]],[32,34,["H7971"]],[34,35,["H413"]],[35,37,["H4428"]],[37,39,["H4124"]],[39,42,["H14"]],[42,43,["H3808"]],[43,46,["H3478"]],[46,47,["H3427"]],[47,49,["H6946"]]]},{"k":6847,"v":[[0,4,["H1980"]],[4,7,["H4057"]],[7,9,["H5437","(H853)"]],[9,11,["H776"]],[11,13,["H123"]],[13,16,["H776"]],[16,18,["H4124"]],[18,20,["H935"]],[20,24,["H4480","H4217","H8121"]],[24,27,["H776"]],[27,29,["H4124"]],[29,31,["H2583"]],[31,35,["H5676"]],[35,37,["H769"]],[37,39,["H935"]],[39,40,["H3808"]],[40,43,["H1366"]],[43,45,["H4124"]],[45,46,["H3588"]],[46,47,["H769"]],[47,50,["H1366"]],[50,52,["H4124"]]]},{"k":6848,"v":[[0,2,["H3478"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H5511"]],[6,7,["H4428"]],[7,10,["H567"]],[10,12,["H4428"]],[12,14,["H2809"]],[14,16,["H3478"]],[16,17,["H559"]],[17,22,["H5674"]],[22,25,["H4994"]],[25,28,["H776"]],[28,29,["H5704"]],[29,31,["H4725"]]]},{"k":6849,"v":[[0,2,["H5511"]],[2,3,["H539"]],[3,4,["H3808","(H853)"]],[4,5,["H3478"]],[5,7,["H5674"]],[7,10,["H1366"]],[10,12,["H5511"]],[12,17,["H622","(H853)","H3605","H5971"]],[17,19,["H2583"]],[19,21,["H3096"]],[21,23,["H3898"]],[23,24,["H5973"]],[24,25,["H3478"]]]},{"k":6850,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,6,["H3478"]],[6,7,["H5414","(H853)"]],[7,8,["H5511"]],[8,10,["H3605"]],[10,12,["H5971"]],[12,15,["H3027"]],[15,17,["H3478"]],[17,20,["H5221"]],[20,23,["H3478"]],[23,24,["H3423","(H853)"]],[24,25,["H3605"]],[25,27,["H776"]],[27,30,["H567"]],[30,32,["H3427"]],[32,34,["H1931"]],[34,35,["H776"]]]},{"k":6851,"v":[[0,3,["H3423","(H853)"]],[3,4,["H3605"]],[4,6,["H1366"]],[6,9,["H567"]],[9,11,["H4480","H769"]],[11,13,["H5704"]],[13,14,["H2999"]],[14,16,["H4480"]],[16,18,["H4057"]],[18,20,["H5704"]],[20,21,["H3383"]]]},{"k":6852,"v":[[0,2,["H6258"]],[2,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,9,["H3423","(H853)"]],[9,11,["H567"]],[11,13,["H4480","H6440"]],[13,15,["H5971"]],[15,16,["H3478"]],[16,19,["H859"]],[19,20,["H3423"]],[20,21,[]]]},{"k":6853,"v":[[0,2,["H3808"]],[2,4,["H3423","(H853)"]],[4,6,["H834"]],[6,7,["H3645"]],[7,9,["H430"]],[9,13,["H3423"]],[13,15,["H3605","H834"]],[15,17,["H3068"]],[17,19,["H430"]],[19,22,["H3423"]],[22,24,["H4480","H6440"]],[24,29,["H3423"]]]},{"k":6854,"v":[[0,2,["H6258"]],[2,4,["H859"]],[4,7,["H2896","H2896"]],[7,9,["H4480","H1111"]],[9,11,["H1121"]],[11,13,["H6834"]],[13,14,["H4428"]],[14,16,["H4124"]],[16,20,["H7378","H7378"]],[20,21,["H5973"]],[21,22,["H3478"]],[22,23,["H518"]],[23,27,["H3898","H3898"]],[27,29,[]]]},{"k":6855,"v":[[0,2,["H3478"]],[2,3,["H3427"]],[3,5,["H2809"]],[5,8,["H1323"]],[8,11,["H6177"]],[11,14,["H1323"]],[14,17,["H3605"]],[17,19,["H5892"]],[19,20,["H834"]],[20,23,["H5921"]],[23,25,["H3027"]],[25,27,["H769"]],[27,28,["H7969"]],[28,29,["H3967"]],[29,30,["H8141"]],[30,31,["H4069"]],[31,35,["H3808"]],[35,36,["H5337"]],[36,39,["H1931"]],[39,40,["H6256"]]]},{"k":6856,"v":[[0,2,["H595"]],[2,4,["H3808"]],[4,5,["H2398"]],[5,9,["H859"]],[9,10,["H6213"]],[10,12,["H7451"]],[12,14,["H3898"]],[14,18,["H3068"]],[18,20,["H8199"]],[20,22,["H8199"]],[22,24,["H3117"]],[24,25,["H996"]],[25,27,["H1121"]],[27,29,["H3478"]],[29,32,["H1121"]],[32,34,["H5983"]]]},{"k":6857,"v":[[0,3,["H4428"]],[3,6,["H1121"]],[6,8,["H5983"]],[8,9,["H8085"]],[9,10,["H3808"]],[10,11,["H413"]],[11,13,["H1697"]],[13,15,["H3316"]],[15,16,["H834"]],[16,18,["H7971","H413"]],[18,19,[]]]},{"k":6858,"v":[[0,3,["H7307"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H5921"]],[8,9,["H3316"]],[9,13,["H5674","(H853)"]],[13,14,["H1568"]],[14,16,["H4519"]],[16,19,["H5674","(H853)"]],[19,20,["H4708"]],[20,22,["H1568"]],[22,25,["H4480","H4708"]],[25,27,["H1568"]],[27,30,["H5674"]],[30,33,["H1121"]],[33,35,["H5983"]]]},{"k":6859,"v":[[0,2,["H3316"]],[2,3,["H5087"]],[3,5,["H5088"]],[5,8,["H3068"]],[8,10,["H559"]],[10,11,["H518"]],[11,16,["H5414","H5414","(H853)"]],[16,18,["H1121"]],[18,20,["H5983"]],[20,23,["H3027"]]]},{"k":6860,"v":[[0,4,["H1961"]],[4,6,["H834"]],[6,8,["H3318"]],[8,11,["H4480","H1817"]],[11,14,["H1004"]],[14,16,["H7125"]],[16,20,["H7725"]],[20,22,["H7965"]],[22,25,["H4480","H1121"]],[25,27,["H5983"]],[27,30,["H1961"]],[30,32,["H3068"]],[32,38,["H5927"]],[38,42,["H5930"]]]},{"k":6861,"v":[[0,2,["H3316"]],[2,4,["H5674"]],[4,5,["H413"]],[5,7,["H1121"]],[7,9,["H5983"]],[9,11,["H3898"]],[11,16,["H3068"]],[16,17,["H5414"]],[17,21,["H3027"]]]},{"k":6862,"v":[[0,3,["H5221"]],[3,6,["H4480","H6177"]],[6,8,["H5704"]],[8,10,["H935"]],[10,12,["H4511"]],[12,14,["H6242"]],[14,15,["H5892"]],[15,17,["H5704"]],[17,19,["H58"]],[19,22,["H3754"]],[22,25,["H3966"]],[25,26,["H1419"]],[26,27,["H4347"]],[27,30,["H1121"]],[30,32,["H5983"]],[32,34,["H3665"]],[34,35,["H4480","H6440"]],[35,37,["H1121"]],[37,39,["H3478"]]]},{"k":6863,"v":[[0,2,["H3316"]],[2,3,["H935"]],[3,5,["H4709"]],[5,6,["H413"]],[6,8,["H1004"]],[8,10,["H2009"]],[10,12,["H1323"]],[12,14,["H3318"]],[14,16,["H7125"]],[16,19,["H8596"]],[19,22,["H4246"]],[22,24,["H1931"]],[24,28,["H3173"]],[28,29,["H4480"]],[29,33,["H369"]],[33,34,["H1121"]],[34,35,["H176"]],[35,36,["H1323"]]]},{"k":6864,"v":[[0,5,["H1961"]],[5,8,["H7200"]],[8,12,["H7167","(H853)"]],[12,14,["H899"]],[14,16,["H559"]],[16,17,["H162"]],[17,19,["H1323"]],[19,25,["H3766","H3766"]],[25,27,["H859"]],[27,28,["H1961"]],[28,33,["H5916"]],[33,36,["H595"]],[36,38,["H6475"]],[38,40,["H6310"]],[40,41,["H413"]],[41,43,["H3068"]],[43,46,["H3808","H3201"]],[46,48,["H7725"]]]},{"k":6865,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H1"]],[7,11,["H6475","(H853)"]],[11,13,["H6310"]],[13,14,["H413"]],[14,16,["H3068"]],[16,17,["H6213"]],[17,23,["H834"]],[23,26,["H3318"]],[26,29,["H4480","H6310"]],[29,30,["H310","H834"]],[30,33,["H3068"]],[33,35,["H6213"]],[35,36,["H5360"]],[36,41,["H4480","H341"]],[41,45,["H4480","H1121"]],[45,47,["H5983"]]]},{"k":6866,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1"]],[6,8,["H2088"]],[8,9,["H1697"]],[9,11,["H6213"]],[11,16,["H7503","H4480"]],[16,17,["H8147"]],[17,18,["H2320"]],[18,23,["H1980"]],[23,25,["H3381"]],[25,26,["H5921"]],[26,28,["H2022"]],[28,30,["H1058","H5921"]],[30,32,["H1331"]],[32,33,["H595"]],[33,36,["H7464"]]]},{"k":6867,"v":[[0,3,["H559"]],[3,4,["H1980"]],[4,9,["H7971","(H853)"]],[9,11,["H8147"]],[11,12,["H2320"]],[12,14,["H1931"]],[14,15,["H1980"]],[15,18,["H7464"]],[18,20,["H1058","H5921"]],[20,22,["H1331"]],[22,23,["H5921"]],[23,25,["H2022"]]]},{"k":6868,"v":[[0,5,["H1961"]],[5,8,["H4480","H7093"]],[8,10,["H8147"]],[10,11,["H2320"]],[11,14,["H7725"]],[14,15,["H413"]],[15,17,["H1"]],[17,19,["H6213"]],[19,23,["(H853)"]],[23,25,["H5088"]],[25,26,["H834"]],[26,29,["H5087"]],[29,31,["H1931"]],[31,32,["H3045"]],[32,33,["H3808"]],[33,34,["H376"]],[34,37,["H1961"]],[37,39,["H2706"]],[39,41,["H3478"]]]},{"k":6869,"v":[[0,3,["H1323"]],[3,5,["H3478"]],[5,6,["H1980"]],[6,7,["H4480","H3117","H3117"]],[7,9,["H8567"]],[9,11,["H1323"]],[11,13,["H3316"]],[13,15,["H1569"]],[15,16,["H702"]],[16,17,["H3117"]],[17,20,["H8141"]]]},{"k":6870,"v":[[0,3,["H376"]],[3,5,["H669"]],[5,8,["H6817"]],[8,10,["H5674"]],[10,11,["H6828"]],[11,13,["H559"]],[13,15,["H3316"]],[15,16,["H4069"]],[16,19,["H5674"]],[19,21,["H3898"]],[21,24,["H1121"]],[24,26,["H5983"]],[26,29,["H3808"]],[29,30,["H7121"]],[30,33,["H1980"]],[33,34,["H5973"]],[34,38,["H8313"]],[38,40,["H1004"]],[40,41,["H5921"]],[41,44,["H784"]]]},{"k":6871,"v":[[0,2,["H3316"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H589"]],[6,9,["H5971"]],[9,10,["H1961"]],[10,13,["H376","H7379","H3966"]],[13,16,["H1121"]],[16,18,["H5983"]],[18,22,["H2199"]],[22,25,["H3467"]],[25,27,["H3808"]],[27,31,["H4480","H3027"]]]},{"k":6872,"v":[[0,4,["H7200"]],[4,5,["H3588"]],[5,7,["H3467"]],[7,9,["H369"]],[9,11,["H7760"]],[11,13,["H5315"]],[13,16,["H3709"]],[16,19,["H5674"]],[19,20,["H413"]],[20,22,["H1121"]],[22,24,["H5983"]],[24,27,["H3068"]],[27,28,["H5414"]],[28,32,["H3027"]],[32,33,["H4100"]],[33,38,["H5927"]],[38,39,["H413"]],[39,41,["H2088"]],[41,42,["H3117"]],[42,44,["H3898"]],[44,46,[]]]},{"k":6873,"v":[[0,2,["H3316"]],[2,4,["H6908","(H853)"]],[4,5,["H3605"]],[5,7,["H376"]],[7,9,["H1568"]],[9,11,["H3898"]],[11,12,["H854"]],[12,13,["H669"]],[13,16,["H376"]],[16,18,["H1568"]],[18,19,["H5221","(H853)"]],[19,20,["H669"]],[20,21,["H3588"]],[21,23,["H559"]],[23,24,["H859"]],[24,25,["H1568"]],[25,27,["H6412"]],[27,29,["H669"]],[29,30,["H8432"]],[30,32,["H669"]],[32,34,["H8432"]],[34,36,["H4519"]]]},{"k":6874,"v":[[0,3,["H1568"]],[3,4,["H3920","(H853)"]],[4,6,["H4569"]],[6,8,["H3383"]],[8,11,["H669"]],[11,14,["H1961"]],[14,17,["H3588"]],[17,19,["H669"]],[19,22,["H6412"]],[22,23,["H559"]],[23,27,["H5674"]],[27,30,["H376"]],[30,32,["H1568"]],[32,33,["H559"]],[33,37,["H859"]],[37,39,["H673"]],[39,42,["H559"]],[42,43,["H3808"]]]},{"k":6875,"v":[[0,2,["H559"]],[2,6,["H559"]],[6,7,["H4994"]],[7,8,["H7641"]],[8,11,["H559"]],[11,12,["H5451"]],[12,16,["H3808"]],[16,17,["H3559"]],[17,19,["H1696"]],[19,21,["H3651"]],[21,24,["H270"]],[24,27,["H7819"]],[27,29,["H413"]],[29,31,["H4569"]],[31,33,["H3383"]],[33,36,["H5307"]],[36,38,["H1931"]],[38,39,["H6256"]],[39,42,["H4480","H669"]],[42,43,["H705"]],[43,45,["H8147"]],[45,46,["H505"]]]},{"k":6876,"v":[[0,2,["H3316"]],[2,3,["H8199","(H853)"]],[3,4,["H3478"]],[4,5,["H8337"]],[5,6,["H8141"]],[6,8,["H4191"]],[8,9,["H3316"]],[9,11,["H1569"]],[11,14,["H6912"]],[14,19,["H5892"]],[19,21,["H1568"]]]},{"k":6877,"v":[[0,2,["H310"]],[2,4,["H78"]],[4,6,["H4480","H1035"]],[6,7,["H8199","(H853)"]],[7,8,["H3478"]]]},{"k":6878,"v":[[0,3,["H1961"]],[3,4,["H7970"]],[4,5,["H1121"]],[5,7,["H7970"]],[7,8,["H1323"]],[8,11,["H7971"]],[11,12,["H2351"]],[12,15,["H935"]],[15,16,["H7970"]],[16,17,["H1323"]],[17,18,["H4480"]],[18,19,["H2351"]],[19,22,["H1121"]],[22,25,["H8199","(H853)"]],[25,26,["H3478"]],[26,27,["H7651"]],[27,28,["H8141"]]]},{"k":6879,"v":[[0,2,["H4191"]],[2,3,["H78"]],[3,6,["H6912"]],[6,8,["H1035"]]]},{"k":6880,"v":[[0,2,["H310"]],[2,4,["H356"]],[4,6,["H2075"]],[6,7,["H8199","(H853)"]],[7,8,["H3478"]],[8,11,["H8199","(H853)"]],[11,12,["H3478"]],[12,13,["H6235"]],[13,14,["H8141"]]]},{"k":6881,"v":[[0,2,["H356"]],[2,4,["H2075"]],[4,5,["H4191"]],[5,8,["H6912"]],[8,10,["H357"]],[10,13,["H776"]],[13,15,["H2075"]]]},{"k":6882,"v":[[0,2,["H310"]],[2,4,["H5658"]],[4,6,["H1121"]],[6,8,["H1985"]],[8,10,["H6553"]],[10,11,["H8199","(H853)"]],[11,12,["H3478"]]]},{"k":6883,"v":[[0,3,["H1961"]],[3,4,["H705"]],[4,5,["H1121"]],[5,7,["H7970"]],[7,8,["H1121","H1121"]],[8,10,["H7392"]],[10,11,["H5921"]],[11,14,["H7657"]],[14,16,["H5895"]],[16,19,["H8199","(H853)"]],[19,20,["H3478"]],[20,21,["H8083"]],[21,22,["H8141"]]]},{"k":6884,"v":[[0,2,["H5658"]],[2,4,["H1121"]],[4,6,["H1985"]],[6,8,["H6553"]],[8,9,["H4191"]],[9,12,["H6912"]],[12,14,["H6552"]],[14,17,["H776"]],[17,19,["H669"]],[19,22,["H2022"]],[22,25,["H6003"]]]},{"k":6885,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6213"]],[6,7,["H7451"]],[7,8,["H3254"]],[8,11,["H5869"]],[11,14,["H3068"]],[14,17,["H3068"]],[17,18,["H5414"]],[18,22,["H3027"]],[22,25,["H6430"]],[25,26,["H705"]],[26,27,["H8141"]]]},{"k":6886,"v":[[0,3,["H1961"]],[3,5,["H259"]],[5,6,["H376"]],[6,8,["H4480","H6881"]],[8,11,["H4480","H4940"]],[11,14,["H1839"]],[14,16,["H8034"]],[16,18,["H4495"]],[18,21,["H802"]],[21,23,["H6135"]],[23,25,["H3205"]],[25,26,["H3808"]]]},{"k":6887,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H7200"]],[7,8,["H413"]],[8,10,["H802"]],[10,12,["H559"]],[12,13,["H413"]],[13,15,["H2009"]],[15,16,["H4994"]],[16,17,["H859"]],[17,19,["H6135"]],[19,21,["H3205"]],[21,22,["H3808"]],[22,26,["H2029"]],[26,28,["H3205"]],[28,30,["H1121"]]]},{"k":6888,"v":[[0,1,["H6258"]],[1,3,["H8104"]],[3,6,["H4994"]],[6,8,["H8354"]],[8,9,["H408"]],[9,10,["H3196"]],[10,13,["H7941"]],[13,15,["H398"]],[15,16,["H408"]],[16,17,["H3605"]],[17,18,["H2931"]],[18,19,[]]]},{"k":6889,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,5,["H2029"]],[5,7,["H3205"]],[7,9,["H1121"]],[9,11,["H3808"]],[11,12,["H4177"]],[12,14,["H5927"]],[14,15,["H5921"]],[15,17,["H7218"]],[17,18,["H3588"]],[18,20,["H5288"]],[20,22,["H1961"]],[22,24,["H5139"]],[24,26,["H430"]],[26,27,["H4480"]],[27,29,["H990"]],[29,31,["H1931"]],[31,33,["H2490"]],[33,35,["H3467","(H853)"]],[35,36,["H3478"]],[36,40,["H4480","H3027"]],[40,43,["H6430"]]]},{"k":6890,"v":[[0,3,["H802"]],[3,4,["H935"]],[4,6,["H559"]],[6,8,["H376"]],[8,9,["H559"]],[9,11,["H376"]],[11,13,["H430"]],[13,14,["H935"]],[14,15,["H413"]],[15,19,["H4758"]],[19,23,["H4758"]],[23,26,["H4397"]],[26,28,["H430"]],[28,29,["H3966"]],[29,30,["H3372"]],[30,33,["H7592"]],[33,35,["H3808"]],[35,36,["H335","H4480","H2088"]],[36,37,["H1931"]],[37,39,["H3808"]],[39,40,["H5046"]],[40,44,["H8034"]]]},{"k":6891,"v":[[0,3,["H559"]],[3,6,["H2009"]],[6,9,["H2029"]],[9,11,["H3205"]],[11,13,["H1121"]],[13,15,["H6258"]],[15,16,["H8354"]],[16,17,["H408"]],[17,18,["H3196"]],[18,21,["H7941"]],[21,22,["H408"]],[22,23,["H398"]],[23,24,["H3605"]],[24,25,["H2932"]],[25,27,["H3588"]],[27,29,["H5288"]],[29,31,["H1961"]],[31,33,["H5139"]],[33,35,["H430"]],[35,36,["H4480"]],[36,38,["H990"]],[38,39,["H5704"]],[39,41,["H3117"]],[41,44,["H4194"]]]},{"k":6892,"v":[[0,2,["H4495"]],[2,3,["H6279","H413"]],[3,5,["H3068"]],[5,7,["H559"]],[7,8,["H994"]],[8,10,["H136"]],[10,13,["H376"]],[13,15,["H430"]],[15,16,["H834"]],[16,19,["H7971"]],[19,20,["H935"]],[20,21,["H5750"]],[21,22,["H413"]],[22,25,["H3384"]],[25,27,["H4100"]],[27,30,["H6213"]],[30,33,["H5288"]],[33,37,["H3205"]]]},{"k":6893,"v":[[0,2,["H430"]],[2,3,["H8085"]],[3,6,["H6963"]],[6,8,["H4495"]],[8,11,["H4397"]],[11,13,["H430"]],[13,14,["H935"]],[14,15,["H5750"]],[15,16,["H413"]],[16,18,["H802"]],[18,20,["H1931"]],[20,21,["H3427"]],[21,24,["H7704"]],[24,26,["H4495"]],[26,28,["H376"]],[28,30,["H369"]],[30,31,["H5973"]],[31,32,[]]]},{"k":6894,"v":[[0,3,["H802"]],[3,5,["H4116"]],[5,7,["H7323"]],[7,9,["H5046"]],[9,11,["H376"]],[11,13,["H559"]],[13,14,["H413"]],[14,16,["H2009"]],[16,18,["H376"]],[18,20,["H7200"]],[20,21,["H413"]],[21,23,["H834"]],[23,24,["H935"]],[24,25,["H413"]],[25,29,["H3117"]]]},{"k":6895,"v":[[0,2,["H4495"]],[2,3,["H6965"]],[3,5,["H1980"]],[5,6,["H310"]],[6,8,["H802"]],[8,10,["H935"]],[10,11,["H413"]],[11,13,["H376"]],[13,15,["H559"]],[15,19,["H859"]],[19,21,["H376"]],[21,22,["H834"]],[22,23,["H1696"]],[23,24,["H413"]],[24,26,["H802"]],[26,29,["H559"]],[29,30,["H589"]],[30,31,[]]]},{"k":6896,"v":[[0,2,["H4495"]],[2,3,["H559"]],[3,4,["H6258"]],[4,7,["H1697"]],[7,10,["H935"]],[10,11,["H4100"]],[11,14,["H1961","H4941"]],[14,16,["H5288"]],[16,21,["H4639"]],[21,23,[]]]},{"k":6897,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H4495"]],[9,11,["H4480","H3605"]],[11,12,["H834"]],[12,14,["H559"]],[14,15,["H413"]],[15,17,["H802"]],[17,20,["H8104"]]]},{"k":6898,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,6,["H4480","H3605"]],[6,8,["H834"]],[8,9,["H3318"]],[9,12,["H4480","H1612"]],[12,13,["H408"]],[13,16,["H8354"]],[16,17,["H3196"]],[17,20,["H7941"]],[20,21,["H408"]],[21,22,["H398"]],[22,23,["H3605"]],[23,24,["H2932"]],[24,26,["H3605"]],[26,27,["H834"]],[27,29,["H6680"]],[29,33,["H8104"]]]},{"k":6899,"v":[[0,2,["H4495"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4397"]],[6,9,["H3068"]],[9,12,["H4994"]],[12,15,["H6113"]],[15,22,["H6213"]],[22,24,["H1423","H5795"]],[24,25,["H6440"]],[25,26,[]]]},{"k":6900,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H4495"]],[9,10,["H518"]],[10,12,["H6113"]],[12,16,["H3808"]],[16,17,["H398"]],[17,20,["H3899"]],[20,22,["H518"]],[22,25,["H6213"]],[25,28,["H5930"]],[28,31,["H5927"]],[31,35,["H3068"]],[35,36,["H3588"]],[36,37,["H4495"]],[37,38,["H3045"]],[38,39,["H3808"]],[39,40,["H3588"]],[40,41,["H1931"]],[41,44,["H4397"]],[44,47,["H3068"]]]},{"k":6901,"v":[[0,2,["H4495"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4397"]],[6,9,["H3068"]],[9,10,["H4310"]],[10,13,["H8034"]],[13,15,["H3588"]],[15,17,["H1697"]],[17,20,["H935"]],[20,25,["H3513"]]]},{"k":6902,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H559"]],[7,10,["H4100"]],[10,11,["H7592"]],[11,13,["H2088"]],[13,16,["H8034"]],[16,18,["H1931"]],[18,20,["H6383"]]]},{"k":6903,"v":[[0,2,["H4495"]],[2,3,["H3947","(H853)"]],[3,5,["H1423","H5795"]],[5,6,["H854"]],[6,9,["H4503"]],[9,11,["H5927"]],[11,13,["H5921"]],[13,15,["H6697"]],[15,18,["H3068"]],[18,22,["H6213"]],[22,23,["H6381"]],[23,25,["H4495"]],[25,28,["H802"]],[28,30,["H7200"]]]},{"k":6904,"v":[[0,5,["H1961"]],[5,8,["H3851"]],[8,10,["H5927"]],[10,12,["H8064"]],[12,14,["H4480","H5921"]],[14,16,["H4196"]],[16,19,["H4397"]],[19,22,["H3068"]],[22,23,["H5927"]],[23,26,["H3851"]],[26,29,["H4196"]],[29,31,["H4495"]],[31,34,["H802"]],[34,36,["H7200"]],[36,39,["H5307"]],[39,40,["H5921"]],[40,42,["H6440"]],[42,45,["H776"]]]},{"k":6905,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,8,["H3808"]],[8,9,["H3254"]],[9,10,["H7200"]],[10,11,["H413"]],[11,12,["H4495"]],[12,14,["H413"]],[14,16,["H802"]],[16,17,["H227"]],[17,18,["H4495"]],[18,19,["H3045"]],[19,20,["H3588"]],[20,21,["H1931"]],[21,24,["H4397"]],[24,27,["H3068"]]]},{"k":6906,"v":[[0,2,["H4495"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H802"]],[6,10,["H4191","H4191"]],[10,11,["H3588"]],[11,14,["H7200"]],[14,15,["H430"]]]},{"k":6907,"v":[[0,3,["H802"]],[3,4,["H559"]],[4,7,["H3863"]],[7,9,["H3068"]],[9,11,["H2654"]],[11,13,["H4191"]],[13,17,["H3808"]],[17,19,["H3947"]],[19,22,["H5930"]],[22,26,["H4503"]],[26,29,["H4480","H3027"]],[29,30,["H3808"]],[30,34,["H7200"]],[34,35,["(H853)"]],[35,36,["H3605"]],[36,37,["H428"]],[37,39,["H3808"]],[39,44,["H6256"]],[44,46,["H8085"]],[46,51,["H2063"]]]},{"k":6908,"v":[[0,3,["H802"]],[3,4,["H3205"]],[4,6,["H1121"]],[6,8,["H7121","(H853)"]],[8,10,["H8034"]],[10,11,["H8123"]],[11,14,["H5288"]],[14,15,["H1431"]],[15,18,["H3068"]],[18,19,["H1288"]],[19,20,[]]]},{"k":6909,"v":[[0,3,["H7307"]],[3,6,["H3068"]],[6,7,["H2490"]],[7,9,["H6470"]],[9,15,["H4264"]],[15,17,["H1835"]],[17,18,["H996"]],[18,19,["H6881"]],[19,21,["H847"]]]},{"k":6910,"v":[[0,2,["H8123"]],[2,4,["H3381"]],[4,6,["H8553"]],[6,8,["H7200"]],[8,10,["H802"]],[10,12,["H8553"]],[12,15,["H4480","H1323"]],[15,18,["H6430"]]]},{"k":6911,"v":[[0,4,["H5927"]],[4,6,["H5046"]],[6,8,["H1"]],[8,11,["H517"]],[11,13,["H559"]],[13,16,["H7200"]],[16,18,["H802"]],[18,20,["H8553"]],[20,23,["H4480","H1323"]],[23,26,["H6430"]],[26,27,["H6258"]],[27,29,["H3947"]],[29,34,["H802"]]]},{"k":6912,"v":[[0,3,["H1"]],[3,6,["H517"]],[6,7,["H559"]],[7,12,["H369"]],[12,14,["H802"]],[14,17,["H1323"]],[17,20,["H251"]],[20,23,["H3605"]],[23,25,["H5971"]],[25,26,["H3588"]],[26,27,["H859"]],[27,28,["H1980"]],[28,30,["H3947"]],[30,32,["H802"]],[32,35,["H6189"]],[35,36,["H4480","H6430"]],[36,38,["H8123"]],[38,39,["H559"]],[39,40,["H413"]],[40,42,["H1"]],[42,43,["H3947"]],[43,47,["H3588"]],[47,48,["H1931"]],[48,51,["H3474","H5869"]]]},{"k":6913,"v":[[0,3,["H1"]],[3,6,["H517"]],[6,7,["H3045"]],[7,8,["H3808"]],[8,9,["H3588"]],[9,10,["H1931"]],[10,14,["H4480","H3068"]],[14,15,["H3588"]],[15,16,["H1931"]],[16,17,["H1245"]],[17,19,["H8385"]],[19,22,["H4480","H6430"]],[22,25,["H1931"]],[25,26,["H6256"]],[26,28,["H6430"]],[28,30,["H4910"]],[30,32,["H3478"]]]},{"k":6914,"v":[[0,4,["H3381","H8123"]],[4,7,["H1"]],[7,10,["H517"]],[10,12,["H8553"]],[12,14,["H935"]],[14,15,["H5704"]],[15,17,["H3754"]],[17,19,["H8553"]],[19,21,["H2009"]],[21,23,["H3715"]],[23,24,["H738"]],[24,25,["H7580"]],[25,26,["H7125"]],[26,27,[]]]},{"k":6915,"v":[[0,3,["H7307"]],[3,6,["H3068"]],[6,8,["H6743"]],[8,9,["H5921"]],[9,13,["H8156"]],[13,19,["H8156"]],[19,21,["H1423"]],[21,25,["H3972","H369"]],[25,28,["H3027"]],[28,31,["H5046"]],[31,32,["H3808"]],[32,34,["H1"]],[34,37,["H517","(H853)"]],[37,38,["H834"]],[38,41,["H6213"]]]},{"k":6916,"v":[[0,4,["H3381"]],[4,6,["H1696"]],[6,9,["H802"]],[9,14,["H3474","H5869","H8123"]]]},{"k":6917,"v":[[0,4,["H4480","H3117"]],[4,6,["H7725"]],[6,8,["H3947"]],[8,13,["H5493"]],[13,15,["H7200","(H853)"]],[15,17,["H4658"]],[17,20,["H738"]],[20,22,["H2009"]],[22,26,["H5712"]],[26,28,["H1682"]],[28,30,["H1706"]],[30,33,["H1472"]],[33,36,["H738"]]]},{"k":6918,"v":[[0,3,["H7287"]],[3,5,["H413"]],[5,7,["H3709"]],[7,10,["H1980","H1980"]],[10,11,["H398"]],[11,13,["H1980"]],[13,14,["H413"]],[14,16,["H1"]],[16,18,["H517"]],[18,21,["H5414"]],[21,26,["H398"]],[26,29,["H5046"]],[29,30,["H3808"]],[30,32,["H3588"]],[32,35,["H7287"]],[35,37,["H1706"]],[37,41,["H4480","H1472"]],[41,44,["H738"]]]},{"k":6919,"v":[[0,3,["H1"]],[3,5,["H3381"]],[5,6,["H413"]],[6,8,["H802"]],[8,10,["H8123"]],[10,11,["H6213"]],[11,12,["H8033"]],[12,14,["H4960"]],[14,15,["H3588"]],[15,16,["H3651"]],[16,20,["H970"]],[20,22,["H6213"]]]},{"k":6920,"v":[[0,5,["H1961"]],[5,8,["H7200"]],[8,12,["H3947"]],[12,13,["H7970"]],[13,14,["H4828"]],[14,16,["H1961"]],[16,17,["H854"]],[17,18,[]]]},{"k":6921,"v":[[0,2,["H8123"]],[2,3,["H559"]],[3,8,["H4994"]],[8,10,["H2330"]],[10,12,["H2420"]],[12,15,["H518"]],[15,19,["H5046","H5046"]],[19,24,["H7651"]],[24,25,["H3117"]],[25,28,["H4960"]],[28,32,["H4672"]],[32,36,["H5414"]],[36,38,["H7970"]],[38,39,["H5466"]],[39,41,["H7970"]],[41,42,["H2487"]],[42,44,["H899"]]]},{"k":6922,"v":[[0,2,["H518"]],[2,4,["H3201","H3808"]],[4,5,["H5046"]],[5,10,["H859"]],[10,11,["H5414"]],[11,13,["H7970"]],[13,14,["H5466"]],[14,16,["H7970"]],[16,17,["H2487"]],[17,19,["H899"]],[19,22,["H559"]],[22,26,["H2330"]],[26,28,["H2420"]],[28,32,["H8085"]],[32,33,[]]]},{"k":6923,"v":[[0,3,["H559"]],[3,9,["H4480","H398"]],[9,11,["H3318"]],[11,12,["H3978"]],[12,17,["H4480","H5794"]],[17,19,["H3318"]],[19,20,["H4966"]],[20,23,["H3201"]],[23,24,["H3808"]],[24,26,["H7969"]],[26,27,["H3117"]],[27,28,["H5046"]],[28,30,["H2420"]]]},{"k":6924,"v":[[0,5,["H1961"]],[5,8,["H7637"]],[8,9,["H3117"]],[9,12,["H559"]],[12,14,["H8123"]],[14,15,["H802"]],[15,16,["H6601","(H853)"]],[16,18,["H376"]],[18,22,["H5046"]],[22,24,["(H853)"]],[24,26,["H2420"]],[26,27,["H6435"]],[27,29,["H8313"]],[29,33,["H1"]],[33,34,["H1004"]],[34,36,["H784"]],[36,39,["H7121"]],[39,45,["H3423"]],[45,48,["H3808"]],[48,49,[]]]},{"k":6925,"v":[[0,2,["H8123"]],[2,3,["H802"]],[3,4,["H1058"]],[4,5,["H5921"]],[5,8,["H559"]],[8,11,["H7535"]],[11,12,["H8130"]],[12,15,["H157"]],[15,17,["H3808"]],[17,21,["H2330"]],[21,23,["H2420"]],[23,26,["H1121"]],[26,29,["H5971"]],[29,32,["H3808"]],[32,33,["H5046"]],[33,38,["H559"]],[38,41,["H2009"]],[41,44,["H3808"]],[44,45,["H5046"]],[45,48,["H1"]],[48,51,["H517"]],[51,55,["H5046"]],[55,57,[]]]},{"k":6926,"v":[[0,3,["H1058"]],[3,4,["H5921"]],[4,7,["H7651"]],[7,8,["H3117"]],[8,9,["H834"]],[9,11,["H4960"]],[11,12,["H1961"]],[12,17,["H1961"]],[17,20,["H7637"]],[20,21,["H3117"]],[21,24,["H5046"]],[24,26,["H3588"]],[26,29,["H6693"]],[29,34,["H5046"]],[34,36,["H2420"]],[36,39,["H1121"]],[39,42,["H5971"]]]},{"k":6927,"v":[[0,3,["H376"]],[3,6,["H5892"]],[6,7,["H559"]],[7,12,["H7637"]],[12,13,["H3117"]],[13,14,["H2962"]],[14,16,["H2775"]],[16,18,["H935"]],[18,19,["H4100"]],[19,21,["H4966"]],[21,23,["H4480","H1706"]],[23,25,["H4100"]],[25,27,["H5794"]],[27,30,["H4480","H738"]],[30,33,["H559"]],[33,36,["H3884"]],[36,40,["H2790"]],[40,43,["H5697"]],[43,46,["H3808"]],[46,48,["H4672"]],[48,50,["H2420"]]]},{"k":6928,"v":[[0,3,["H7307"]],[3,6,["H3068"]],[6,7,["H6743"]],[7,8,["H5921"]],[8,13,["H3381"]],[13,15,["H831"]],[15,17,["H5221"]],[17,18,["H7970"]],[18,19,["H376"]],[19,20,["H4480"]],[20,23,["H3947","(H853)"]],[23,25,["H2488"]],[25,27,["H5414"]],[27,30,["H2487"]],[30,34,["H5046"]],[34,36,["H2420"]],[36,39,["H639"]],[39,41,["H2734"]],[41,45,["H5927"]],[45,48,["H1"]],[48,49,["H1004"]]]},{"k":6929,"v":[[0,2,["H8123"]],[2,3,["H802"]],[3,4,["H1961"]],[4,8,["H4828"]],[8,9,["H834"]],[9,15,["H7462"]]]},{"k":6930,"v":[[0,5,["H1961"]],[5,8,["H4480","H3117"]],[8,12,["H3117"]],[12,14,["H2406"]],[14,15,["H7105"]],[15,17,["H8123"]],[17,18,["H6485","(H853)"]],[18,20,["H802"]],[20,23,["H1423","H5795"]],[23,26,["H559"]],[26,30,["H935"]],[30,31,["H413"]],[31,33,["H802"]],[33,36,["H2315"]],[36,39,["H1"]],[39,41,["H3808"]],[41,42,["H5414"]],[42,46,["H935"]]]},{"k":6931,"v":[[0,3,["H1"]],[3,4,["H559"]],[4,7,["H559","H559"]],[7,8,["H3588"]],[8,12,["H8130","H8130"]],[12,16,["H5414"]],[16,20,["H4828"]],[20,22,["H3808"]],[22,24,["H6996"]],[24,25,["H269"]],[25,26,["H2896"]],[26,27,["H4480"]],[27,29,["H1961"]],[29,33,["H4994"]],[33,34,["H8478"]],[34,36,[]]]},{"k":6932,"v":[[0,2,["H8123"]],[2,3,["H559"]],[3,6,["H6471"]],[6,11,["H5352"]],[11,14,["H4480","H6430"]],[14,15,["H3588"]],[15,16,["H589"]],[16,17,["H6213","H5973"]],[17,20,["H7451"]]]},{"k":6933,"v":[[0,2,["H8123"]],[2,3,["H1980"]],[3,5,["H3920"]],[5,6,["H7969"]],[6,7,["H3967"]],[7,8,["H7776"]],[8,10,["H3947"]],[10,11,["H3940"]],[11,13,["H6437"]],[13,14,["H2180"]],[14,15,["H413"]],[15,16,["H2180"]],[16,18,["H7760"]],[18,19,["H259"]],[19,20,["H3940"]],[20,23,["H8432"]],[23,24,["H996"]],[24,25,["H8147"]],[25,26,["H2180"]]]},{"k":6934,"v":[[0,5,["H1197"]],[5,7,["H3940"]],[7,9,["H784"]],[9,13,["H7971"]],[13,17,["H7054"]],[17,20,["H6430"]],[20,23,["H1197"]],[23,26,["H4480","H1430"]],[26,28,["H5704"]],[28,31,["H7054"]],[31,32,["H5704"]],[32,34,["H3754"]],[34,36,["H2132"]]]},{"k":6935,"v":[[0,3,["H6430"]],[3,4,["H559"]],[4,5,["H4310"]],[5,7,["H6213"]],[7,8,["H2063"]],[8,11,["H559"]],[11,12,["H8123"]],[12,16,["H2860"]],[16,19,["H8554"]],[19,20,["H3588"]],[20,23,["H3947","(H853)"]],[23,25,["H802"]],[25,27,["H5414"]],[27,31,["H4828"]],[31,34,["H6430"]],[34,36,["H5927"]],[36,38,["H8313"]],[38,42,["H1"]],[42,44,["H784"]]]},{"k":6936,"v":[[0,2,["H8123"]],[2,3,["H559"]],[3,6,["H518"]],[6,9,["H6213"]],[9,10,["H2063"]],[10,11,["H3588","H518"]],[11,15,["H5358"]],[15,20,["H310"]],[20,23,["H2308"]]]},{"k":6937,"v":[[0,3,["H5221"]],[3,5,["H7785"]],[5,6,["H5921"]],[6,7,["H3409"]],[7,10,["H1419"]],[10,11,["H4347"]],[11,15,["H3381"]],[15,17,["H3427"]],[17,20,["H5585"]],[20,23,["H5553"]],[23,24,["H5862"]]]},{"k":6938,"v":[[0,3,["H6430"]],[3,5,["H5927"]],[5,7,["H2583"]],[7,9,["H3063"]],[9,12,["H5203"]],[12,14,["H3896"]]]},{"k":6939,"v":[[0,3,["H376"]],[3,5,["H3063"]],[5,6,["H559"]],[6,7,["H4100"]],[7,11,["H5927"]],[11,12,["H5921"]],[12,16,["H559"]],[16,18,["H631","(H853)"]],[18,19,["H8123"]],[19,23,["H5927"]],[23,25,["H6213"]],[25,28,["H834"]],[28,31,["H6213"]],[31,33,[]]]},{"k":6940,"v":[[0,2,["H7969"]],[2,3,["H505"]],[3,4,["H376"]],[4,6,["H4480","H3063"]],[6,7,["H3381"]],[7,8,["H413"]],[8,10,["H5585"]],[10,13,["H5553"]],[13,14,["H5862"]],[14,16,["H559"]],[16,18,["H8123"]],[18,19,["H3045"]],[19,21,["H3808"]],[21,22,["H3588"]],[22,24,["H6430"]],[24,26,["H4910"]],[26,29,["H4100"]],[29,31,["H2063"]],[31,35,["H6213"]],[35,40,["H559"]],[40,43,["H834"]],[43,45,["H6213"]],[45,48,["H3651"]],[48,51,["H6213"]],[51,53,[]]]},{"k":6941,"v":[[0,3,["H559"]],[3,9,["H3381"]],[9,11,["H631"]],[11,16,["H5414"]],[16,20,["H3027"]],[20,23,["H6430"]],[23,25,["H8123"]],[25,26,["H559"]],[26,29,["H7650"]],[29,32,["H6435"]],[32,36,["H6293"]],[36,39,["H859"]]]},{"k":6942,"v":[[0,3,["H559"]],[3,6,["H559"]],[6,7,["H3808"]],[7,8,["H3588"]],[8,13,["H631","H631"]],[13,15,["H5414"]],[15,19,["H3027"]],[19,25,["H4191","H3808","H4191"]],[25,29,["H631"]],[29,32,["H8147"]],[32,33,["H2319"]],[33,34,["H5688"]],[34,38,["H5927"]],[38,39,["H4480"]],[39,41,["H5553"]]]},{"k":6943,"v":[[0,3,["H1931"]],[3,4,["H935"]],[4,5,["H5704"]],[5,6,["H3896"]],[6,8,["H6430"]],[8,9,["H7321"]],[9,10,["H7125"]],[10,14,["H7307"]],[14,17,["H3068"]],[17,19,["H6743"]],[19,20,["H5921"]],[20,24,["H5688"]],[24,25,["H834"]],[25,27,["H5921"]],[27,29,["H2220"]],[29,30,["H1961"]],[30,32,["H6593"]],[32,33,["H834"]],[33,35,["H1197"]],[35,37,["H784"]],[37,40,["H612"]],[40,41,["H4549"]],[41,43,["H4480","H5921"]],[43,45,["H3027"]]]},{"k":6944,"v":[[0,3,["H4672"]],[3,5,["H2961"]],[5,6,["H3895"]],[6,9,["H2543"]],[9,12,["H7971"]],[12,14,["H3027"]],[14,16,["H3947"]],[16,19,["H5221"]],[19,21,["H505"]],[21,22,["H376"]],[22,23,[]]]},{"k":6945,"v":[[0,2,["H8123"]],[2,3,["H559"]],[3,6,["H3895"]],[6,9,["H2543"]],[9,12,["H2565","H2565"]],[12,15,["H3895"]],[15,18,["H2543"]],[18,21,["H5221"]],[21,23,["H505"]],[23,24,["H376"]]]},{"k":6946,"v":[[0,5,["H1961"]],[5,11,["H3615"]],[11,13,["H1696"]],[13,17,["H7993"]],[17,19,["H3895"]],[19,23,["H4480","H3027"]],[23,25,["H7121"]],[25,26,["H1931"]],[26,27,["H4725"]],[27,28,["H7437"]]]},{"k":6947,"v":[[0,5,["H6770","H3966"]],[5,7,["H7121"]],[7,8,["H413"]],[8,10,["H3068"]],[10,12,["H559"]],[12,13,["H859"]],[13,15,["H5414","(H853)"]],[15,16,["H2063"]],[16,17,["H1419"]],[17,18,["H8668"]],[18,21,["H3027"]],[21,24,["H5650"]],[24,26,["H6258"]],[26,29,["H4191"]],[29,31,["H6772"]],[31,33,["H5307"]],[33,36,["H3027"]],[36,39,["H6189"]]]},{"k":6948,"v":[[0,2,["H430"]],[2,3,["H1234","(H853)"]],[3,6,["H4388"]],[6,7,["H834"]],[7,11,["H3895"]],[11,14,["H3318"]],[14,15,["H4325"]],[15,16,["H4480"]],[16,21,["H8354"]],[21,23,["H7307"]],[23,25,["H7725"]],[25,28,["H2421"]],[28,29,["H5921","H3651"]],[29,31,["H7121"]],[31,33,["H8034"]],[33,35,["H5875"]],[35,36,["H834"]],[36,39,["H3896"]],[39,40,["H5704"]],[40,41,["H2088"]],[41,42,["H3117"]]]},{"k":6949,"v":[[0,3,["H8199","(H853)"]],[3,4,["H3478"]],[4,7,["H3117"]],[7,10,["H6430"]],[10,11,["H6242"]],[11,12,["H8141"]]]},{"k":6950,"v":[[0,2,["H1980"]],[2,3,["H8123"]],[3,5,["H5804"]],[5,7,["H7200"]],[7,8,["H8033"]],[8,10,["H802","H2181"]],[10,13,["H935"]],[13,14,["H413"]],[14,15,[]]]},{"k":6951,"v":[[0,6,["H5841"]],[6,7,["H559"]],[7,8,["H8123"]],[8,10,["H935"]],[10,11,["H2008"]],[11,14,["H5437"]],[14,19,["H693"]],[19,22,["H3605"]],[22,23,["H3915"]],[23,26,["H8179"]],[26,29,["H5892"]],[29,32,["H2790"]],[32,33,["H3605"]],[33,35,["H3915"]],[35,36,["H559"]],[36,39,["H1242"]],[39,40,["H5704"]],[40,43,["H216"]],[43,46,["H2026"]],[46,47,[]]]},{"k":6952,"v":[[0,2,["H8123"]],[2,3,["H7901"]],[3,4,["H5704"]],[4,5,["H2677","H3915"]],[5,7,["H6965"]],[7,9,["H2677","H3915"]],[9,11,["H270"]],[11,13,["H1817"]],[13,16,["H8179"]],[16,19,["H5892"]],[19,22,["H8147"]],[22,23,["H4201"]],[23,26,["H5265"]],[26,31,["H5973","H1280"]],[31,33,["H7760"]],[33,35,["H5921"]],[35,37,["H3802"]],[37,41,["H5927"]],[41,42,["H413"]],[42,44,["H7218"]],[44,47,["H2022"]],[47,48,["H834"]],[48,50,["H5921","H6440"]],[50,51,["H2275"]]]},{"k":6953,"v":[[0,5,["H1961"]],[5,6,["H310","H3651"]],[6,9,["H157"]],[9,11,["H802"]],[11,14,["H5158"]],[14,16,["H7796"]],[16,18,["H8034"]],[18,20,["H1807"]]]},{"k":6954,"v":[[0,3,["H5633"]],[3,6,["H6430"]],[6,8,["H5927"]],[8,9,["H413"]],[9,12,["H559"]],[12,15,["H6601"]],[15,18,["H7200"]],[18,19,["H4100"]],[19,21,["H1419"]],[21,22,["H3581"]],[22,26,["H4100"]],[26,30,["H3201"]],[30,36,["H631"]],[36,39,["H6031"]],[39,42,["H587"]],[42,44,["H5414"]],[44,47,["H376"]],[47,51,["H505","H3967"]],[51,54,["H3701"]]]},{"k":6955,"v":[[0,2,["H1807"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H8123"]],[5,6,["H5046"]],[6,10,["H4994"]],[10,11,["H4100"]],[11,13,["H1419"]],[13,14,["H3581"]],[14,17,["H4100"]],[17,21,["H631"]],[21,23,["H6031"]],[23,24,[]]]},{"k":6956,"v":[[0,2,["H8123"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H518"]],[6,8,["H631"]],[8,11,["H7651"]],[11,12,["H3892"]],[12,13,["H3499"]],[13,14,["H834"]],[14,16,["H3808"]],[16,17,["H2717"]],[17,22,["H2470"]],[22,24,["H1961"]],[24,26,["H259"]],[26,27,["H120"]]]},{"k":6957,"v":[[0,3,["H5633"]],[3,6,["H6430"]],[6,8,["H5927"]],[8,11,["H7651"]],[11,12,["H3892"]],[12,13,["H3499"]],[13,14,["H834"]],[14,16,["H3808"]],[16,18,["H2717"]],[18,21,["H631"]],[21,24,[]]]},{"k":6958,"v":[[0,7,["H693"]],[7,8,["H3427"]],[8,13,["H2315"]],[13,16,["H559"]],[16,17,["H413"]],[17,20,["H6430"]],[20,22,["H5921"]],[22,24,["H8123"]],[24,27,["H5423","(H853)"]],[27,29,["H3499"]],[29,30,["H834"]],[30,32,["H6616"]],[32,34,["H5296"]],[34,36,["H5423"]],[36,39,["H7306"]],[39,41,["H784"]],[41,44,["H3581"]],[44,46,["H3808"]],[46,47,["H3045"]]]},{"k":6959,"v":[[0,2,["H1807"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H8123"]],[5,6,["H2009"]],[6,9,["H2048"]],[9,12,["H1696","H413"]],[12,14,["H3577"]],[14,15,["H6258"]],[15,16,["H5046"]],[16,20,["H4994"]],[20,21,["H4100"]],[21,25,["H631"]]]},{"k":6960,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H518"]],[6,10,["H631","H631"]],[10,12,["H2319"]],[12,13,["H5688"]],[13,14,["H834"]],[14,15,["H3808"]],[15,17,["H6213","H4399"]],[17,22,["H2470"]],[22,24,["H1961"]],[24,26,["H259"]],[26,27,["H120"]]]},{"k":6961,"v":[[0,1,["H1807"]],[1,3,["H3947"]],[3,4,["H2319"]],[4,5,["H5688"]],[5,7,["H631"]],[7,11,["H559"]],[11,12,["H413"]],[12,15,["H6430"]],[15,17,["H5921"]],[17,19,["H8123"]],[19,25,["H693"]],[25,26,["H3427"]],[26,29,["H2315"]],[29,32,["H5423"]],[32,35,["H4480","H5921"]],[35,37,["H2220"]],[37,40,["H2339"]]]},{"k":6962,"v":[[0,2,["H1807"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H8123"]],[5,6,["H5704","H2008"]],[6,9,["H2048"]],[9,12,["H1696","H413"]],[12,14,["H3576"]],[14,15,["H5046"]],[15,17,["H4100"]],[17,21,["H631"]],[21,24,["H559"]],[24,25,["H413"]],[25,27,["H518"]],[27,29,["H707","(H853)"]],[29,31,["H7651"]],[31,32,["H4253"]],[32,35,["H7218"]],[35,36,["H5973"]],[36,38,["H4545"]]]},{"k":6963,"v":[[0,3,["H8628"]],[3,7,["H3489"]],[7,9,["H559"]],[9,10,["H413"]],[10,13,["H6430"]],[13,15,["H5921"]],[15,17,["H8123"]],[17,20,["H3364"]],[20,24,["H4480","H8142"]],[24,27,["H5265","(H853)"]],[27,30,["H3489"]],[30,33,["H708"]],[33,37,["H4545"]]]},{"k":6964,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H349"]],[6,9,["H559"]],[9,11,["H157"]],[11,15,["H3820"]],[15,17,["H369"]],[17,18,["H854"]],[18,22,["H2048"]],[22,25,["H7969"]],[25,26,["H6471"]],[26,29,["H3808"]],[29,30,["H5046"]],[30,32,["H4100"]],[32,34,["H1419"]],[34,35,["H3581"]],[35,36,[]]]},{"k":6965,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,8,["H6693"]],[8,10,["H3605","H3117"]],[10,13,["H1697"]],[13,15,["H509"]],[15,20,["H5315"]],[20,22,["H7114"]],[22,24,["H4191"]]]},{"k":6966,"v":[[0,3,["H5046"]],[3,4,["(H853)"]],[4,5,["H3605"]],[5,7,["H3820"]],[7,9,["H559"]],[9,14,["H3808"]],[14,15,["H5927"]],[15,17,["H4177"]],[17,18,["H5921"]],[18,20,["H7218"]],[20,21,["H3588"]],[21,22,["H589"]],[22,26,["H5139"]],[26,28,["H430"]],[28,31,["H517"]],[31,32,["H4480","H990"]],[32,33,["H518"]],[33,36,["H1548"]],[36,39,["H3581"]],[39,41,["H5493"]],[41,42,["H4480"]],[42,48,["H2470"]],[48,50,["H1961"]],[50,52,["H3605"]],[52,54,["H120"]]]},{"k":6967,"v":[[0,3,["H1807"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,8,["H5046"]],[8,9,["(H853)"]],[9,10,["H3605"]],[10,12,["H3820"]],[12,14,["H7971"]],[14,16,["H7121"]],[16,19,["H5633"]],[19,22,["H6430"]],[22,23,["H559"]],[23,25,["H5927"]],[25,27,["H6471"]],[27,28,["H3588"]],[28,31,["H5046"]],[31,32,["(H853)"]],[32,33,["H3605"]],[33,35,["H3820"]],[35,38,["H5633"]],[38,41,["H6430"]],[41,43,["H5927"]],[43,44,["H413"]],[44,47,["H5927"]],[47,48,["H3701"]],[48,51,["H3027"]]]},{"k":6968,"v":[[0,5,["H3462"]],[5,6,["H5921"]],[6,8,["H1290"]],[8,11,["H7121"]],[11,14,["H376"]],[14,21,["H1548","(H853)"]],[21,23,["H7651"]],[23,24,["H4253"]],[24,27,["H7218"]],[27,30,["H2490"]],[30,32,["H6031"]],[32,36,["H3581"]],[36,37,["H5493"]],[37,38,["H4480","H5921"]],[38,39,[]]]},{"k":6969,"v":[[0,3,["H559"]],[3,5,["H6430"]],[5,7,["H5921"]],[7,9,["H8123"]],[9,12,["H3364"]],[12,16,["H4480","H8142"]],[16,18,["H559"]],[18,22,["H3318"]],[22,27,["H6471","H6471"]],[27,30,["H5287"]],[30,32,["H1931"]],[32,33,["H3045"]],[33,34,["H3808"]],[34,35,["H3588"]],[35,37,["H3068"]],[37,39,["H5493"]],[39,40,["H4480","H5921"]],[40,41,[]]]},{"k":6970,"v":[[0,3,["H6430"]],[3,4,["H270"]],[4,8,["H5365","(H853)"]],[8,10,["H5869"]],[10,14,["H3381","(H853)"]],[14,16,["H5804"]],[16,18,["H631"]],[18,23,["H5178"]],[23,26,["H1961"]],[26,27,["H2912"]],[27,30,["H615"]],[30,31,["H1004"]]]},{"k":6971,"v":[[0,3,["H8181"]],[3,6,["H7218"]],[6,7,["H2490"]],[7,10,["H6779"]],[10,11,["H834"]],[11,14,["H1548"]]]},{"k":6972,"v":[[0,3,["H5633"]],[3,6,["H6430"]],[6,9,["H622"]],[9,12,["H2076"]],[12,14,["H1419"]],[14,15,["H2077"]],[15,17,["H1712"]],[17,19,["H430"]],[19,22,["H8057"]],[22,25,["H559"]],[25,27,["H430"]],[27,29,["H5414","(H853)"]],[29,30,["H8123"]],[30,32,["H341"]],[32,35,["H3027"]]]},{"k":6973,"v":[[0,4,["H5971"]],[4,5,["H7200"]],[5,8,["H1984","(H853)"]],[8,10,["H430"]],[10,11,["H3588"]],[11,13,["H559"]],[13,15,["H430"]],[15,17,["H5414"]],[17,20,["H3027","(H853)"]],[20,22,["H341"]],[22,25,["H2717"]],[25,28,["H776"]],[28,29,["H834"]],[29,31,["H7235","(H853)","H2491"]],[31,33,[]]]},{"k":6974,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,8,["H3820"]],[8,10,["H2896"]],[10,13,["H559"]],[13,14,["H7121"]],[14,16,["H8123"]],[16,22,["H7832"]],[22,25,["H7121"]],[25,27,["H8123"]],[27,32,["H4480","H1004","H615"]],[32,37,["H6711","H6440"]],[37,40,["H5975"]],[40,42,["H996"]],[42,44,["H5982"]]]},{"k":6975,"v":[[0,2,["H8123"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5288"]],[6,8,["H2388"]],[8,12,["H3027"]],[12,13,["H5117"]],[13,18,["H4184","(H853)"]],[18,20,["H5982"]],[20,21,["H834","H5921"]],[21,23,["H1004"]],[23,24,["H3559"]],[24,28,["H8172"]],[28,29,["H5921"]],[29,30,[]]]},{"k":6976,"v":[[0,3,["H1004"]],[3,5,["H4390"]],[5,7,["H376"]],[7,9,["H802"]],[9,11,["H3605"]],[11,13,["H5633"]],[13,16,["H6430"]],[16,18,["H8033"]],[18,22,["H5921"]],[22,24,["H1406"]],[24,26,["H7969"]],[26,27,["H505"]],[27,28,["H376"]],[28,30,["H802"]],[30,32,["H7200"]],[32,34,["H8123"]],[34,36,["H7832"]]]},{"k":6977,"v":[[0,2,["H8123"]],[2,3,["H7121"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H559"]],[8,10,["H136"]],[10,11,["H3069"]],[11,12,["H2142"]],[12,16,["H4994"]],[16,18,["H2388"]],[18,22,["H4994"]],[22,23,["H389"]],[23,24,["H2088"]],[24,25,["H6471"]],[25,27,["H430"]],[27,34,["H5358","H5359","H259"]],[34,37,["H4480","H6430"]],[37,40,["H4480","H8147"]],[40,41,["H5869"]]]},{"k":6978,"v":[[0,2,["H8123"]],[2,4,["H3943"]],[4,5,["(H853)"]],[5,7,["H8147"]],[7,8,["H8432"]],[8,9,["H5982"]],[9,10,["H5921"]],[10,11,["H834"]],[11,13,["H1004"]],[13,14,["H3559"]],[14,16,["H5921"]],[16,21,["H5564"]],[21,24,["H259"]],[24,28,["H3225"]],[28,32,["H259"]],[32,35,["H8040"]]]},{"k":6979,"v":[[0,2,["H8123"]],[2,3,["H559"]],[3,5,["H5315"]],[5,6,["H4191"]],[6,7,["H5973"]],[7,9,["H6430"]],[9,12,["H5186"]],[12,17,["H3581"]],[17,20,["H1004"]],[20,21,["H5307"]],[21,22,["H5921"]],[22,24,["H5633"]],[24,26,["H5921"]],[26,27,["H3605"]],[27,29,["H5971"]],[29,30,["H834"]],[30,35,["H4191"]],[35,36,["H834"]],[36,38,["H4191"]],[38,41,["H4194"]],[41,42,["H1961"]],[42,43,["H7227"]],[43,46,["H4480","H834"]],[46,48,["H4191"]],[48,51,["H2416"]]]},{"k":6980,"v":[[0,3,["H251"]],[3,5,["H3605"]],[5,7,["H1004"]],[7,10,["H1"]],[10,12,["H3381"]],[12,14,["H5375"]],[14,19,["H5927"]],[19,21,["H6912"]],[21,23,["H996"]],[23,24,["H6881"]],[24,26,["H847"]],[26,29,["H6913"]],[29,31,["H4495"]],[31,33,["H1"]],[33,35,["H1931"]],[35,36,["H8199","(H853)"]],[36,37,["H3478"]],[37,38,["H6242"]],[38,39,["H8141"]]]},{"k":6981,"v":[[0,3,["H1961"]],[3,5,["H376"]],[5,7,["H4480","H2022"]],[7,8,["H669"]],[8,10,["H8034"]],[10,12,["H4321"]]]},{"k":6982,"v":[[0,3,["H559"]],[3,6,["H517"]],[6,9,["H505","H3967"]],[9,12,["H3701"]],[12,13,["H834"]],[13,15,["H3947"]],[15,20,["H859"]],[20,21,["H422"]],[21,23,["H559"]],[23,25,["H1571"]],[25,28,["H241"]],[28,29,["H2009"]],[29,31,["H3701"]],[31,33,["H854"]],[33,35,["H589"]],[35,36,["H3947"]],[36,40,["H517"]],[40,41,["H559"]],[41,42,["H1288"]],[42,47,["H3068"]],[47,49,["H1121"]]]},{"k":6983,"v":[[0,5,["H7725","(H853)"]],[5,8,["H505","H3967"]],[8,11,["H3701"]],[11,14,["H517"]],[14,16,["H517"]],[16,17,["H559"]],[17,21,["H6942","H6942","(H853)"]],[21,23,["H3701"]],[23,26,["H3068"]],[26,29,["H4480","H3027"]],[29,32,["H1121"]],[32,34,["H6213"]],[34,37,["H6459"]],[37,41,["H4541"]],[41,42,["H6258"]],[42,46,["H7725"]],[46,49,[]]]},{"k":6984,"v":[[0,3,["H7725","(H853)"]],[3,5,["H3701"]],[5,8,["H517"]],[8,11,["H517"]],[11,12,["H3947"]],[12,14,["H3967"]],[14,17,["H3701"]],[17,19,["H5414"]],[19,23,["H6884"]],[23,25,["H6213"]],[25,29,["H6459"]],[29,33,["H4541"]],[33,36,["H1961"]],[36,39,["H1004"]],[39,41,["H4321"]]]},{"k":6985,"v":[[0,3,["H376"]],[3,4,["H4318"]],[4,7,["H1004"]],[7,9,["H430"]],[9,11,["H6213"]],[11,13,["H646"]],[13,15,["H8655"]],[15,17,["H4390","(H853)","H3027"]],[17,18,["H259"]],[18,21,["H4480","H1121"]],[21,23,["H1961"]],[23,25,["H3548"]]]},{"k":6986,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,6,["H369"]],[6,7,["H4428"]],[7,9,["H3478"]],[9,12,["H376"]],[12,13,["H6213"]],[13,17,["H3477"]],[17,21,["H5869"]]]},{"k":6987,"v":[[0,3,["H1961"]],[3,6,["H5288"]],[6,9,["H4480","H1035","H3063"]],[9,12,["H4480","H4940"]],[12,14,["H3063"]],[14,15,["H1931"]],[15,18,["H3881"]],[18,20,["H1931"]],[20,21,["H1481"]],[21,22,["H8033"]]]},{"k":6988,"v":[[0,3,["H376"]],[3,4,["H1980"]],[4,8,["H4480","H5892"]],[8,10,["H4480","H1035","H3063"]],[10,12,["H1481"]],[12,13,["H834"]],[13,16,["H4672"]],[16,21,["H935"]],[21,23,["H2022"]],[23,24,["H669"]],[24,25,["H5704"]],[25,27,["H1004"]],[27,29,["H4318"]],[29,32,["H6213","H1870"]]]},{"k":6989,"v":[[0,2,["H4318"]],[2,3,["H559"]],[3,6,["H4480","H370"]],[6,7,["H935"]],[7,11,["H559"]],[11,12,["H413"]],[12,14,["H595"]],[14,17,["H3881"]],[17,19,["H4480","H1035","H3063"]],[19,21,["H595"]],[21,22,["H1980"]],[22,24,["H1481"]],[24,25,["H834"]],[25,28,["H4672"]],[28,30,[]]]},{"k":6990,"v":[[0,2,["H4318"]],[2,3,["H559"]],[3,6,["H3427"]],[6,7,["H5978"]],[7,10,["H1961"]],[10,14,["H1"]],[14,17,["H3548"]],[17,19,["H595"]],[19,21,["H5414"]],[21,23,["H6235"]],[23,26,["H3701"]],[26,29,["H3117"]],[29,32,["H6187"]],[32,34,["H899"]],[34,37,["H4241"]],[37,40,["H3881"]],[40,42,["H1980"]]]},{"k":6991,"v":[[0,3,["H3881"]],[3,5,["H2974"]],[5,7,["H3427"]],[7,8,["H854"]],[8,10,["H376"]],[10,14,["H5288"]],[14,15,["H1961"]],[15,19,["H259"]],[19,22,["H4480","H1121"]]]},{"k":6992,"v":[[0,2,["H4318"]],[2,3,["H4390","(H853)","H3027"]],[3,5,["H3881"]],[5,9,["H5288"]],[9,10,["H1961"]],[10,12,["H3548"]],[12,14,["H1961"]],[14,17,["H1004"]],[17,19,["H4318"]]]},{"k":6993,"v":[[0,2,["H559"]],[2,3,["H4318"]],[3,4,["H6258"]],[4,5,["H3045"]],[5,7,["H3588"]],[7,9,["H3068"]],[9,13,["H3190"]],[13,14,["H3588"]],[14,16,["H1961"]],[16,18,["H3881"]],[18,21,["H3548"]]]},{"k":6994,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,6,["H369"]],[6,7,["H4428"]],[7,9,["H3478"]],[9,12,["H1992"]],[12,13,["H3117"]],[13,15,["H7626"]],[15,18,["H1839"]],[18,19,["H1245"]],[19,22,["H5159"]],[22,24,["H3427"]],[24,26,["H3588"]],[26,27,["H5704"]],[27,28,["H1931"]],[28,29,["H3117"]],[29,32,["H5159"]],[32,34,["H3808"]],[34,35,["H5307"]],[35,38,["H8432"]],[38,40,["H7626"]],[40,42,["H3478"]]]},{"k":6995,"v":[[0,3,["H1121"]],[3,5,["H1835"]],[5,6,["H7971"]],[6,9,["H4480","H4940"]],[9,10,["H2568"]],[10,11,["H376"]],[11,14,["H4480","H7098"]],[14,15,["H376"]],[15,17,["H2428"]],[17,19,["H4480","H6881"]],[19,22,["H4480","H847"]],[22,25,["H7270","(H853)"]],[25,27,["H776"]],[27,30,["H2713"]],[30,34,["H559"]],[34,35,["H413"]],[35,37,["H1980"]],[37,38,["H2713","(H853)"]],[38,40,["H776"]],[40,44,["H935"]],[44,46,["H2022"]],[46,47,["H669"]],[47,48,["H5704"]],[48,50,["H1004"]],[50,52,["H4318"]],[52,54,["H3885"]],[54,55,["H8033"]]]},{"k":6996,"v":[[0,2,["H1992"]],[2,4,["H5973"]],[4,6,["H1004"]],[6,8,["H4318"]],[8,9,["H1992"]],[9,10,["H5234","(H853)"]],[10,12,["H6963"]],[12,16,["H5288"]],[16,18,["H3881"]],[18,22,["H5493"]],[22,23,["H8033"]],[23,25,["H559"]],[25,28,["H4310"]],[28,29,["H935"]],[29,31,["H1988"]],[31,33,["H4100"]],[33,34,["H6213"]],[34,35,["H859"]],[35,37,["H2088"]],[37,40,["H4100"]],[40,43,["H6311"]]]},{"k":6997,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H2090"]],[6,8,["H2090"]],[8,9,["H6213"]],[9,10,["H4318"]],[10,15,["H7936"]],[15,19,["H1961"]],[19,21,["H3548"]]]},{"k":6998,"v":[[0,3,["H559"]],[3,7,["H7592"]],[7,10,["H4994"]],[10,12,["H430"]],[12,16,["H3045"]],[16,19,["H1870"]],[19,20,["H834"]],[20,21,["H587"]],[21,22,["H1980"]],[22,25,["H6743"]]]},{"k":6999,"v":[[0,3,["H3548"]],[3,4,["H559"]],[4,7,["H1980"]],[7,9,["H7965"]],[9,10,["H5227"]],[10,12,["H3068"]],[12,15,["H1870"]],[15,16,["H834"]],[16,18,["H1980"]]]},{"k":7000,"v":[[0,3,["H2568"]],[3,4,["H376"]],[4,5,["H1980"]],[5,7,["H935"]],[7,9,["H3919"]],[9,11,["H7200","(H853)"]],[11,13,["H5971"]],[13,14,["H834"]],[14,16,["H7130"]],[16,19,["H3427"]],[19,20,["H983"]],[20,23,["H4941"]],[23,26,["H6722"]],[26,27,["H8252"]],[27,29,["H982"]],[29,33,["H369"]],[33,34,["H3423","H6114"]],[34,37,["H776"]],[37,43,["H3637"]],[43,46,["H1697"]],[46,48,["H1992"]],[48,50,["H7350"]],[50,53,["H4480","H6722"]],[53,56,["H369"]],[56,57,["H1697"]],[57,58,["H5973"]],[58,60,["H120"]]]},{"k":7001,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H251"]],[6,8,["H6881"]],[8,10,["H847"]],[10,13,["H251"]],[13,14,["H559"]],[14,17,["H4100"]],[17,19,["H859"]]]},{"k":7002,"v":[[0,3,["H559"]],[3,4,["H6965"]],[4,9,["H5927"]],[9,10,["H5921"]],[10,12,["H3588"]],[12,15,["H7200","(H853)"]],[15,17,["H776"]],[17,19,["H2009"]],[19,22,["H3966"]],[22,23,["H2896"]],[23,26,["H859"]],[26,27,["H2814"]],[27,30,["H6101","H408"]],[30,32,["H1980"]],[32,35,["H935"]],[35,37,["H3423","(H853)"]],[37,39,["H776"]]]},{"k":7003,"v":[[0,3,["H935"]],[3,6,["H935"]],[6,7,["H413"]],[7,9,["H5971"]],[9,10,["H982"]],[10,14,["H7342"]],[14,15,["H776"]],[15,16,["H3588"]],[16,17,["H430"]],[17,19,["H5414"]],[19,23,["H3027"]],[23,25,["H4725"]],[25,26,["H834"]],[26,29,["H369"]],[29,30,["H4270"]],[30,32,["H3605"]],[32,33,["H1697"]],[33,34,["H834"]],[34,38,["H776"]]]},{"k":7004,"v":[[0,3,["H5265"]],[3,5,["H4480","H8033"]],[5,8,["H4480","H4940"]],[8,11,["H1839"]],[11,14,["H4480","H6881"]],[14,18,["H4480","H847"]],[18,19,["H8337"]],[19,20,["H3967"]],[20,21,["H376"]],[21,22,["H2296"]],[22,24,["H3627"]],[24,26,["H4421"]]]},{"k":7005,"v":[[0,4,["H5927"]],[4,6,["H2583"]],[6,8,["H7157"]],[8,10,["H3063"]],[10,11,["H5921","H3651"]],[11,13,["H7121"]],[13,14,["H1931"]],[14,15,["H4725"]],[15,16,["H4265"]],[16,17,["H5704"]],[17,18,["H2088"]],[18,19,["H3117"]],[19,20,["H2009"]],[20,23,["H310"]],[23,24,["H7157"]]]},{"k":7006,"v":[[0,3,["H5674"]],[3,4,["H4480","H8033"]],[4,6,["H2022"]],[6,7,["H669"]],[7,9,["H935"]],[9,10,["H5704"]],[10,12,["H1004"]],[12,14,["H4318"]]]},{"k":7007,"v":[[0,2,["H6030"]],[2,4,["H2568"]],[4,5,["H376"]],[5,7,["H1980"]],[7,10,["H7270","(H853)"]],[10,12,["H776"]],[12,14,["H3919"]],[14,16,["H559"]],[16,17,["H413"]],[17,19,["H251"]],[19,22,["H3045"]],[22,23,["H3588"]],[23,25,["H3426"]],[25,27,["H428"]],[27,28,["H1004"]],[28,30,["H646"]],[30,32,["H8655"]],[32,36,["H6459"]],[36,40,["H4541"]],[40,41,["H6258"]],[41,43,["H3045"]],[43,44,["H4100"]],[44,48,["H6213"]]]},{"k":7008,"v":[[0,3,["H5493"]],[3,4,["H8033"]],[4,6,["H935"]],[6,7,["H413"]],[7,9,["H1004"]],[9,13,["H5288"]],[13,15,["H3881"]],[15,19,["H1004"]],[19,21,["H4318"]],[21,23,["H7592","H7965"]],[23,24,[]]]},{"k":7009,"v":[[0,3,["H8337"]],[3,4,["H3967"]],[4,5,["H376"]],[5,6,["H2296"]],[6,9,["H3627"]],[9,11,["H4421"]],[11,12,["H834"]],[12,16,["H4480","H1121"]],[16,18,["H1835"]],[18,19,["H5324"]],[19,22,["H6607"]],[22,25,["H8179"]]]},{"k":7010,"v":[[0,3,["H2568"]],[3,4,["H376"]],[4,6,["H5927"]],[6,9,["H7270","(H853)"]],[9,11,["H776"]],[11,13,["H5927"]],[13,16,["H935"]],[16,17,["H8033"]],[17,19,["H3947","(H853)"]],[19,22,["H6459"]],[22,25,["H646"]],[25,28,["H8655"]],[28,32,["H4541"]],[32,35,["H3548"]],[35,36,["H5324"]],[36,39,["H6607"]],[39,42,["H8179"]],[42,45,["H8337"]],[45,46,["H3967"]],[46,47,["H376"]],[47,50,["H2296"]],[50,52,["H3627"]],[52,54,["H4421"]]]},{"k":7011,"v":[[0,2,["H428"]],[2,3,["H935"]],[3,5,["H4318"]],[5,6,["H1004"]],[6,8,["H3947","(H853)"]],[8,11,["H6459"]],[11,13,["H646"]],[13,16,["H8655"]],[16,20,["H4541"]],[20,22,["H559"]],[22,24,["H3548"]],[24,25,["H413"]],[25,27,["H4100"]],[27,28,["H6213"]],[28,29,["H859"]]]},{"k":7012,"v":[[0,3,["H559"]],[3,8,["H2790"]],[8,9,["H7760"]],[9,11,["H3027"]],[11,12,["H5921"]],[12,14,["H6310"]],[14,16,["H1980"]],[16,17,["H5973"]],[17,20,["H1961"]],[20,24,["H1"]],[24,27,["H3548"]],[27,30,["H2896"]],[30,34,["H1961"]],[34,36,["H3548"]],[36,39,["H1004"]],[39,41,["H259"]],[41,42,["H376"]],[42,43,["H176"]],[43,46,["H1961"]],[46,48,["H3548"]],[48,51,["H7626"]],[51,54,["H4940"]],[54,56,["H3478"]]]},{"k":7013,"v":[[0,3,["H3548"]],[3,4,["H3820"]],[4,6,["H3190"]],[6,9,["H3947","(H853)"]],[9,11,["H646"]],[11,14,["H8655"]],[14,18,["H6459"]],[18,20,["H935"]],[20,23,["H7130"]],[23,26,["H5971"]]]},{"k":7014,"v":[[0,3,["H6437"]],[3,5,["H1980"]],[5,7,["H7760","(H853)"]],[7,10,["H2945"]],[10,13,["H4735"]],[13,16,["H3520"]],[16,17,["H6440"]],[17,18,[]]]},{"k":7015,"v":[[0,3,["H1992"]],[3,7,["H7368"]],[7,10,["H4480","H1004"]],[10,12,["H4318"]],[12,14,["H376"]],[14,15,["H834"]],[15,19,["H1004"]],[19,20,["H5973"]],[20,22,["H4318"]],[22,23,["H1004"]],[23,26,["H2199"]],[26,28,["H1692","(H853)"]],[28,30,["H1121"]],[30,32,["H1835"]]]},{"k":7016,"v":[[0,3,["H7121"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H1835"]],[8,11,["H5437"]],[11,13,["H6440"]],[13,15,["H559"]],[15,17,["H4318"]],[17,18,["H4100"]],[18,21,["H3588"]],[21,27,["H2199"]]]},{"k":7017,"v":[[0,3,["H559"]],[3,7,["H3947","(H853)"]],[7,9,["H430"]],[9,10,["H834"]],[10,12,["H6213"]],[12,15,["H3548"]],[15,20,["H1980"]],[20,22,["H4100"]],[22,25,["H5750"]],[25,27,["H4100"]],[27,29,["H2088"]],[29,32,["H559"]],[32,33,["H413"]],[33,35,["H4100"]],[35,37,[]]]},{"k":7018,"v":[[0,3,["H1121"]],[3,5,["H1835"]],[5,6,["H559"]],[6,7,["H413"]],[7,10,["H408"]],[10,12,["H6963"]],[12,14,["H8085"]],[14,15,["H5973"]],[15,17,["H6435"]],[17,18,["H4751","H5315"]],[18,19,["H376"]],[19,20,["H6293"]],[20,25,["H622"]],[25,27,["H5315"]],[27,30,["H5315"]],[30,33,["H1004"]]]},{"k":7019,"v":[[0,3,["H1121"]],[3,5,["H1835"]],[5,6,["H1980"]],[6,8,["H1870"]],[8,11,["H4318"]],[11,12,["H7200"]],[12,13,["H3588"]],[13,14,["H1992"]],[14,17,["H2389"]],[17,18,["H4480"]],[18,21,["H6437"]],[21,24,["H7725"]],[24,25,["H413"]],[25,27,["H1004"]]]},{"k":7020,"v":[[0,2,["H1992"]],[2,3,["H3947","(H853)"]],[3,6,["H834"]],[6,7,["H4318"]],[7,9,["H6213"]],[9,12,["H3548"]],[12,13,["H834"]],[13,15,["H1961"]],[15,17,["H935"]],[17,18,["H5921"]],[18,19,["H3919"]],[19,20,["H5921"]],[20,22,["H5971"]],[22,26,["H8252"]],[26,28,["H982"]],[28,31,["H5221"]],[31,35,["H6310"]],[35,38,["H2719"]],[38,40,["H8313"]],[40,42,["H5892"]],[42,44,["H784"]]]},{"k":7021,"v":[[0,4,["H369"]],[4,5,["H5337"]],[5,6,["H3588"]],[6,7,["H1931"]],[7,9,["H7350"]],[9,11,["H4480","H6721"]],[11,15,["H369"]],[15,16,["H1697"]],[16,17,["H5973"]],[17,19,["H120"]],[19,21,["H1931"]],[21,25,["H6010"]],[25,26,["H834"]],[26,29,["H1050"]],[29,32,["H1129","(H853)"]],[32,34,["H5892"]],[34,36,["H3427"]],[36,37,[]]]},{"k":7022,"v":[[0,3,["H7121"]],[3,5,["H8034"]],[5,8,["H5892"]],[8,9,["H1835"]],[9,12,["H8034"]],[12,14,["H1835"]],[14,16,["H1"]],[16,17,["H834"]],[17,19,["H3205"]],[19,21,["H3478"]],[21,22,["H199"]],[22,24,["H8034"]],[24,27,["H5892"]],[27,29,["H3919"]],[29,32,["H7223"]]]},{"k":7023,"v":[[0,3,["H1121"]],[3,5,["H1835"]],[5,7,["H6965","(H853)"]],[7,10,["H6459"]],[10,12,["H3083"]],[12,14,["H1121"]],[14,16,["H1648"]],[16,18,["H1121"]],[18,20,["H4519"]],[20,21,["H1931"]],[21,24,["H1121"]],[24,25,["H1961"]],[25,26,["H3548"]],[26,29,["H7626"]],[29,31,["H1839"]],[31,32,["H5704"]],[32,34,["H3117"]],[34,37,["H1540"]],[37,40,["H776"]]]},{"k":7024,"v":[[0,5,["H7760","(H853)"]],[5,6,["H4318"]],[6,8,["H6459"]],[8,9,["H834"]],[9,11,["H6213"]],[11,12,["H3605"]],[12,14,["H3117"]],[14,17,["H1004"]],[17,19,["H430"]],[19,20,["H1961"]],[20,22,["H7887"]]]},{"k":7025,"v":[[0,5,["H1961"]],[5,7,["H1992"]],[7,8,["H3117"]],[8,12,["H369"]],[12,13,["H4428"]],[13,15,["H3478"]],[15,18,["H1961"]],[18,20,["H376"]],[20,21,["H3881"]],[21,22,["H1481"]],[22,25,["H3411"]],[25,27,["H2022"]],[27,28,["H669"]],[28,30,["H3947"]],[30,34,["H802","H6370"]],[34,37,["H4480","H1035","H3063"]]]},{"k":7026,"v":[[0,3,["H6370"]],[3,6,["H2181"]],[6,7,["H5921"]],[7,11,["H1980"]],[11,12,["H4480","H854"]],[12,14,["H413"]],[14,16,["H1"]],[16,17,["H1004"]],[17,18,["H413"]],[18,19,["H1035","H3063"]],[19,21,["H1961"]],[21,22,["H8033"]],[22,23,["H702"]],[23,24,["H3117"]],[24,25,["H2320"]]]},{"k":7027,"v":[[0,3,["H376"]],[3,4,["H6965"]],[4,6,["H1980"]],[6,7,["H310"]],[7,10,["H1696"]],[10,11,["H5921","H3820"]],[11,18,["H7725"]],[18,21,["H5288"]],[21,22,["H5973"]],[22,26,["H6776"]],[26,28,["H2543"]],[28,31,["H935"]],[31,35,["H1"]],[35,36,["H1004"]],[36,40,["H1"]],[40,43,["H5291"]],[43,44,["H7200"]],[44,47,["H8055"]],[47,49,["H7125"]],[49,50,[]]]},{"k":7028,"v":[[0,5,["H2859"]],[5,7,["H5291"]],[7,8,["H1"]],[8,9,["H2388"]],[9,13,["H3427"]],[13,14,["H854"]],[14,16,["H7969"]],[16,17,["H3117"]],[17,21,["H398"]],[21,23,["H8354"]],[23,25,["H3885"]],[25,26,["H8033"]]]},{"k":7029,"v":[[0,5,["H1961"]],[5,8,["H7243"]],[8,9,["H3117"]],[9,13,["H7925"]],[13,16,["H1242"]],[16,20,["H6965"]],[20,22,["H1980"]],[22,25,["H5291"]],[25,26,["H1"]],[26,27,["H559"]],[27,28,["H413"]],[28,32,["H2860"]],[32,33,["H5582"]],[33,35,["H3820"]],[35,38,["H6595"]],[38,40,["H3899"]],[40,42,["H310"]],[42,45,["H1980"]]]},{"k":7030,"v":[[0,4,["H3427"]],[4,7,["H398"]],[7,9,["H8354"]],[9,10,["H8147"]],[10,13,["H3162"]],[13,16,["H5291"]],[16,17,["H1"]],[17,19,["H559"]],[19,20,["H413"]],[20,22,["H376"]],[22,24,["H2974"]],[24,27,["H4994"]],[27,31,["H3885"]],[31,35,["H3820"]],[35,37,["H3190"]]]},{"k":7031,"v":[[0,4,["H376"]],[4,6,["H6965"]],[6,8,["H1980"]],[8,12,["H2859"]],[12,13,["H6484"]],[13,17,["H3885"]],[17,18,["H8033"]],[18,19,["H7725"]]]},{"k":7032,"v":[[0,4,["H7925"]],[4,7,["H1242"]],[7,10,["H2549"]],[10,11,["H3117"]],[11,13,["H1980"]],[13,16,["H5291"]],[16,17,["H1"]],[17,18,["H559"]],[18,19,["H5582"]],[19,21,["H3824"]],[21,24,["H4994"]],[24,27,["H4102"]],[27,28,["H5704"]],[28,29,["H5186","H3117"]],[29,33,["H398"]],[33,34,["H8147"]],[34,36,[]]]},{"k":7033,"v":[[0,4,["H376"]],[4,6,["H6965"]],[6,8,["H1980"]],[8,9,["H1931"]],[9,12,["H6370"]],[12,15,["H5288"]],[15,19,["H2859"]],[19,21,["H5291"]],[21,22,["H1"]],[22,23,["H559"]],[23,26,["H2009"]],[26,27,["H4994"]],[27,29,["H3117"]],[29,30,["H7503"]],[30,32,["H6150"]],[32,35,["H4994"]],[35,38,["H3885"]],[38,39,["H2009"]],[39,41,["H3117"]],[41,45,["H2583"]],[45,46,["H3885"]],[46,47,["H6311"]],[47,50,["H3824"]],[50,53,["H3190"]],[53,56,["H4279"]],[56,59,["H7925"]],[59,62,["H1870"]],[62,66,["H1980"]],[66,67,["H168"]]]},{"k":7034,"v":[[0,3,["H376"]],[3,4,["H14"]],[4,5,["H3808"]],[5,8,["H3885"]],[8,12,["H6965"]],[12,14,["H1980"]],[14,16,["H935"]],[16,18,["H5704","H5227"]],[18,19,["H2982"]],[19,20,["H1931"]],[20,22,["H3389"]],[22,26,["H5973"]],[26,28,["H6776"]],[28,29,["H2543"]],[29,30,["H2280"]],[30,32,["H6370"]],[32,35,["H5973"]],[35,36,[]]]},{"k":7035,"v":[[0,3,["H1992"]],[3,5,["H5973"]],[5,6,["H2982"]],[6,8,["H3117"]],[8,10,["H3966"]],[10,11,["H7286"]],[11,14,["H5288"]],[14,15,["H559"]],[15,16,["H413"]],[16,18,["H113"]],[18,19,["H1980"]],[19,22,["H4994"]],[22,27,["H5493"]],[27,28,["H413"]],[28,29,["H2063"]],[29,30,["H5892"]],[30,33,["H2983"]],[33,35,["H3885"]],[35,37,[]]]},{"k":7036,"v":[[0,3,["H113"]],[3,4,["H559"]],[4,5,["H413"]],[5,9,["H3808"]],[9,11,["H5493"]],[11,13,["H413"]],[13,15,["H5892"]],[15,18,["H5237"]],[18,19,["H834"]],[19,21,["H3808"]],[21,24,["H4480","H1121"]],[24,26,["H3478"]],[26,30,["H5674"]],[30,31,["H5704"]],[31,32,["H1390"]]]},{"k":7037,"v":[[0,3,["H559"]],[3,6,["H5288"]],[6,7,["H1980"]],[7,12,["H7126"]],[12,14,["H259"]],[14,17,["H4725"]],[17,21,["H3885"]],[21,23,["H1390"]],[23,24,["H176"]],[24,26,["H7414"]]]},{"k":7038,"v":[[0,4,["H5674"]],[4,8,["H1980"]],[8,11,["H8121"]],[11,13,["H935"]],[13,19,["H681"]],[19,20,["H1390"]],[20,21,["H834"]],[21,24,["H1144"]]]},{"k":7039,"v":[[0,4,["H5493"]],[4,5,["H8033"]],[5,8,["H935"]],[8,11,["H3885"]],[11,13,["H1390"]],[13,18,["H935"]],[18,22,["H3427"]],[22,25,["H7339"]],[25,28,["H5892"]],[28,32,["H369"]],[32,33,["H376"]],[33,35,["H622"]],[35,39,["H1004"]],[39,41,["H3885"]]]},{"k":7040,"v":[[0,2,["H2009"]],[2,4,["H935"]],[4,6,["H2205"]],[6,7,["H376"]],[7,8,["H4480"]],[8,10,["H4639"]],[10,12,["H4480"]],[12,14,["H7704"]],[14,16,["H6153"]],[16,17,["H3676"]],[17,21,["H4480","H2022"]],[21,22,["H669"]],[22,24,["H1931"]],[24,25,["H1481"]],[25,27,["H1390"]],[27,30,["H376"]],[30,33,["H4725"]],[33,35,["H1145"]]]},{"k":7041,"v":[[0,6,["H5375"]],[6,8,["H5869"]],[8,10,["H7200","(H853)"]],[10,12,["H732"]],[12,13,["H376"]],[13,16,["H7339"]],[16,19,["H5892"]],[19,22,["H2205"]],[22,23,["H376"]],[23,24,["H559"]],[24,25,["H4480","H575"]],[25,26,["H1980"]],[26,29,["H4480","H370"]],[29,30,["H935"]],[30,31,[]]]},{"k":7042,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H587"]],[6,8,["H5674"]],[8,10,["H4480","H1035","H3063"]],[10,11,["H5704"]],[11,13,["H3411"]],[13,15,["H2022"]],[15,16,["H669"]],[16,18,["H4480","H8033"]],[18,20,["H595"]],[20,23,["H1980"]],[23,24,["H5704"]],[24,25,["H1035","H3063"]],[25,27,["H589"]],[27,30,["H1980"]],[30,33,["H1004"]],[33,36,["H3068"]],[36,40,["H369"]],[40,41,["H376"]],[41,43,["H622"]],[43,46,["H1004"]]]},{"k":7043,"v":[[0,3,["H3426"]],[3,4,["H1571"]],[4,5,["H8401"]],[5,6,["H1571"]],[6,7,["H4554"]],[7,10,["H2543"]],[10,13,["H3426"]],[13,14,["H3899"]],[14,16,["H3196"]],[16,17,["H1571"]],[17,23,["H519"]],[23,28,["H5288"]],[28,31,["H5973"]],[31,33,["H5650"]],[33,36,["H369"]],[36,37,["H4270"]],[37,39,["H3605"]],[39,40,["H1697"]]]},{"k":7044,"v":[[0,3,["H2205"]],[3,4,["H376"]],[4,5,["H559"]],[5,6,["H7965"]],[6,10,["H7535"]],[10,12,["H3605"]],[12,14,["H4270"]],[14,16,["H5921"]],[16,18,["H7535"]],[18,19,["H3885"]],[19,20,["H408"]],[20,23,["H7339"]]]},{"k":7045,"v":[[0,3,["H935"]],[3,7,["H1004"]],[7,10,["H1101"]],[10,13,["H2543"]],[13,16,["H7364"]],[16,18,["H7272"]],[18,21,["H398"]],[21,23,["H8354"]]]},{"k":7046,"v":[[0,3,["H1992"]],[3,8,["H3190","(H853)","H3820"]],[8,9,["H2009"]],[9,11,["H376"]],[11,14,["H5892"]],[14,15,["H376"]],[15,16,["H1121"]],[16,18,["H1100"]],[18,23,["H5437","(H853)","H1004"]],[23,25,["H1849"]],[25,26,["H5921"]],[26,28,["H1817"]],[28,30,["H559"]],[30,31,["H413"]],[31,33,["H1167"]],[33,36,["H1004"]],[36,39,["H2205"]],[39,40,["H559"]],[40,42,["H3318","(H853)"]],[42,44,["H376"]],[44,45,["H834"]],[45,46,["H935"]],[46,47,["H413"]],[47,49,["H1004"]],[49,53,["H3045"]],[53,54,[]]]},{"k":7047,"v":[[0,3,["H376"]],[3,5,["H1167"]],[5,8,["H1004"]],[8,10,["H3318"]],[10,11,["H413"]],[11,14,["H559"]],[14,15,["H413"]],[15,17,["H408"]],[17,19,["H251"]],[19,23,["H4994"]],[23,27,["H7489","H408"]],[27,29,["H310","H834"]],[29,30,["H2088"]],[30,31,["H376"]],[31,33,["H935"]],[33,34,["H413"]],[34,36,["H1004"]],[36,37,["H6213"]],[37,38,["H408","(H853)"]],[38,39,["H2063"]],[39,40,["H5039"]]]},{"k":7048,"v":[[0,1,["H2009"]],[1,5,["H1323"]],[5,7,["H1330"]],[7,10,["H6370"]],[10,15,["H3318"]],[15,16,["H4994"]],[16,18,["H6031"]],[18,22,["H6213"]],[22,26,["H5869"]],[26,27,["H2896"]],[27,32,["H2088"]],[32,33,["H376"]],[33,34,["H6213"]],[34,35,["H3808"]],[35,36,["H2063"]],[36,37,["H5039"]],[37,39,["H1697"]]]},{"k":7049,"v":[[0,3,["H376"]],[3,4,["H14"]],[4,5,["H3808"]],[5,6,["H8085"]],[6,11,["H376"]],[11,12,["H2388"]],[12,14,["H6370"]],[14,18,["H3318","H2351"]],[18,19,["H413"]],[19,23,["H3045"]],[23,26,["H5953"]],[26,28,["H3605"]],[28,30,["H3915"]],[30,31,["H5704"]],[31,33,["H1242"]],[33,37,["H7837"]],[37,40,["H5927"]],[40,44,["H7971"]]]},{"k":7050,"v":[[0,2,["H935"]],[2,4,["H802"]],[4,7,["H6437"]],[7,10,["H1242"]],[10,13,["H5307"]],[13,16,["H6607"]],[16,19,["H376"]],[19,20,["H1004"]],[20,21,["H834","H8033"]],[21,23,["H113"]],[23,25,["H5704"]],[25,28,["H216"]]]},{"k":7051,"v":[[0,3,["H113"]],[3,5,["H6965"]],[5,8,["H1242"]],[8,10,["H6605"]],[10,12,["H1817"]],[12,15,["H1004"]],[15,18,["H3318"]],[18,20,["H1980"]],[20,22,["H1870"]],[22,24,["H2009"]],[24,26,["H802"]],[26,28,["H6370"]],[28,31,["H5307"]],[31,34,["H6607"]],[34,37,["H1004"]],[37,40,["H3027"]],[40,42,["H5921"]],[42,44,["H5592"]]]},{"k":7052,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H6965"]],[6,11,["H1980"]],[11,13,["H369"]],[13,14,["H6030"]],[14,18,["H3947"]],[18,21,["H5921"]],[21,23,["H2543"]],[23,26,["H376"]],[26,28,["H6965"]],[28,30,["H1980"]],[30,34,["H4725"]]]},{"k":7053,"v":[[0,5,["H935"]],[5,6,["H413"]],[6,8,["H1004"]],[8,10,["H3947","(H853)"]],[10,12,["H3979"]],[12,15,["H2388"]],[15,18,["H6370"]],[18,20,["H5408"]],[20,25,["H6106"]],[25,27,["H8147","H6240"]],[27,28,["H5409"]],[28,30,["H7971"]],[30,33,["H3605"]],[33,35,["H1366"]],[35,37,["H3478"]]]},{"k":7054,"v":[[0,3,["H1961"]],[3,6,["H3605"]],[6,8,["H7200"]],[8,10,["H559"]],[10,13,["H3808"]],[13,14,["H2063"]],[14,16,["H1961"]],[16,17,["H3808"]],[17,18,["H7200"]],[18,21,["H4480","H3117"]],[21,24,["H1121"]],[24,26,["H3478"]],[26,28,["H5927"]],[28,32,["H4480","H776"]],[32,34,["H4714"]],[34,35,["H5704"]],[35,36,["H2088"]],[36,37,["H3117"]],[37,38,["H7760"]],[38,39,["H5921"]],[39,42,["H5779"]],[42,44,["H1696"]],[44,46,[]]]},{"k":7055,"v":[[0,2,["H3605"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H3318"]],[8,11,["H5712"]],[11,14,["H6950"]],[14,16,["H259"]],[16,17,["H376"]],[17,19,["H4480","H1835"]],[19,21,["H5704"]],[21,22,["H884"]],[22,25,["H776"]],[25,27,["H1568"]],[27,28,["H413"]],[28,30,["H3068"]],[30,32,["H4709"]]]},{"k":7056,"v":[[0,3,["H6438"]],[3,5,["H3605"]],[5,7,["H5971"]],[7,10,["H3605"]],[10,12,["H7626"]],[12,14,["H3478"]],[14,16,["H3320"]],[16,19,["H6951"]],[19,22,["H5971"]],[22,24,["H430"]],[24,25,["H702"]],[25,26,["H3967"]],[26,27,["H505"]],[27,28,["H376","H7273"]],[28,30,["H8025"]],[30,31,["H2719"]]]},{"k":7057,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,6,["H8085"]],[6,7,["H3588"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,14,["H5927"]],[14,16,["H4709"]],[16,18,["H559"]],[18,20,["H1121"]],[20,22,["H3478"]],[22,23,["H1696"]],[23,25,["H349"]],[25,26,["H1961"]],[26,27,["H2063"]],[27,28,["H7451"]]]},{"k":7058,"v":[[0,3,["H376","H3881"]],[3,5,["H376"]],[5,8,["H802"]],[8,11,["H7523"]],[11,12,["H6030"]],[12,14,["H559"]],[14,16,["H935"]],[16,18,["H1390"]],[18,19,["H834"]],[19,22,["H1144"]],[22,23,["H589"]],[23,26,["H6370"]],[26,28,["H3885"]]]},{"k":7059,"v":[[0,3,["H1167"]],[3,5,["H1390"]],[5,6,["H6965"]],[6,7,["H5921"]],[7,14,["H5437","(H853)","H1004"]],[14,15,["H5921"]],[15,18,["H3915"]],[18,20,["H1819"]],[20,23,["H2026"]],[23,27,["H6370"]],[27,30,["H6031"]],[30,34,["H4191"]]]},{"k":7060,"v":[[0,3,["H270"]],[3,5,["H6370"]],[5,10,["H5408"]],[10,12,["H7971"]],[12,15,["H3605"]],[15,17,["H7704"]],[17,20,["H5159"]],[20,22,["H3478"]],[22,23,["H3588"]],[23,26,["H6213"]],[26,27,["H2154"]],[27,29,["H5039"]],[29,31,["H3478"]]]},{"k":7061,"v":[[0,1,["H2009"]],[1,4,["H3605"]],[4,5,["H1121"]],[5,7,["H3478"]],[7,8,["H3051"]],[8,9,["H1988"]],[9,11,["H1697"]],[11,13,["H6098"]]]},{"k":7062,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H6965"]],[5,7,["H259"]],[7,8,["H376"]],[8,9,["H559"]],[9,12,["H3808"]],[12,13,["H376"]],[13,16,["H1980"]],[16,19,["H168"]],[19,20,["H3808"]],[20,23,["H376"]],[23,26,["H5493"]],[26,29,["H1004"]]]},{"k":7063,"v":[[0,2,["H6258"]],[2,3,["H2088"]],[3,7,["H1697"]],[7,8,["H834"]],[8,11,["H6213"]],[11,13,["H1390"]],[13,19,["H1486"]],[19,20,["H5921"]],[20,21,[]]]},{"k":7064,"v":[[0,4,["H3947"]],[4,5,["H6235"]],[5,6,["H376"]],[6,9,["H3967"]],[9,11,["H3605"]],[11,13,["H7626"]],[13,15,["H3478"]],[15,18,["H3967"]],[18,21,["H505"]],[21,24,["H505"]],[24,28,["H7233"]],[28,30,["H3947"]],[30,31,["H6720"]],[31,34,["H5971"]],[34,38,["H6213"]],[38,41,["H935"]],[41,43,["H1387"]],[43,45,["H1144"]],[45,48,["H3605"]],[48,50,["H5039"]],[50,51,["H834"]],[51,54,["H6213"]],[54,56,["H3478"]]]},{"k":7065,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,6,["H3478"]],[6,8,["H622"]],[8,9,["H413"]],[9,11,["H5892"]],[11,13,["H2270"]],[13,15,["H259"]],[15,16,["H376"]]]},{"k":7066,"v":[[0,3,["H7626"]],[3,5,["H3478"]],[5,6,["H7971"]],[6,7,["H376"]],[7,9,["H3605"]],[9,11,["H7626"]],[11,13,["H1144"]],[13,14,["H559"]],[14,15,["H4100"]],[15,16,["H7451"]],[16,18,["H2063"]],[18,19,["H834"]],[19,21,["H1961"]],[21,23,[]]]},{"k":7067,"v":[[0,1,["H6258"]],[1,3,["H5414"]],[3,4,["(H853)"]],[4,6,["H376"]],[6,8,["H1121"]],[8,10,["H1100"]],[10,11,["H834"]],[11,14,["H1390"]],[14,21,["H4191"]],[21,24,["H1197"]],[24,25,["H7451"]],[25,27,["H4480","H3478"]],[27,30,["H1121"]],[30,32,["H1144"]],[32,33,["H14"]],[33,34,["H3808"]],[34,35,["H8085"]],[35,38,["H6963"]],[38,41,["H251"]],[41,43,["H1121"]],[43,45,["H3478"]]]},{"k":7068,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,8,["H622"]],[8,10,["H4480"]],[10,12,["H5892"]],[12,14,["H1390"]],[14,17,["H3318"]],[17,19,["H4421"]],[19,20,["H5973"]],[20,22,["H1121"]],[22,24,["H3478"]]]},{"k":7069,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,7,["H6485"]],[7,9,["H1931"]],[9,10,["H3117"]],[10,14,["H4480","H5892"]],[14,15,["H6242"]],[15,17,["H8337"]],[17,18,["H505"]],[18,19,["H376"]],[19,21,["H8025"]],[21,22,["H2719"]],[22,23,["H905"]],[23,25,["H4480","H3427"]],[25,27,["H1390"]],[27,30,["H6485"]],[30,31,["H7651"]],[31,32,["H3967"]],[32,33,["H970"]],[33,34,["H376"]]]},{"k":7070,"v":[[0,2,["H4480","H3605"]],[2,3,["H2088"]],[3,4,["H5971"]],[4,7,["H7651"]],[7,8,["H3967"]],[8,9,["H977"]],[9,10,["H376"]],[10,11,["H334","H3027","H3225"]],[11,13,["H3605","H2088"]],[13,15,["H7049"]],[15,16,["H68"]],[16,17,["H413"]],[17,19,["H8185"]],[19,22,["H3808"]],[22,23,["H2398"]]]},{"k":7071,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,6,["H905"]],[6,7,["H4480","H1144"]],[7,9,["H6485"]],[9,10,["H702"]],[10,11,["H3967"]],[11,12,["H505"]],[12,13,["H376"]],[13,15,["H8025"]],[15,16,["H2719"]],[16,17,["H3605"]],[17,18,["H2088"]],[18,20,["H376"]],[20,22,["H4421"]]]},{"k":7072,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H6965"]],[6,9,["H5927"]],[9,14,["H1008"]],[14,17,["H7592"]],[17,19,["H430"]],[19,21,["H559"]],[21,22,["H4310"]],[22,27,["H5927"]],[27,28,["H8462"]],[28,31,["H4421"]],[31,32,["H5973"]],[32,34,["H1121"]],[34,36,["H1144"]],[36,39,["H3068"]],[39,40,["H559"]],[40,41,["H3063"]],[41,45,["H8462"]]]},{"k":7073,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H6965"]],[7,10,["H1242"]],[10,12,["H2583"]],[12,13,["H5921"]],[13,14,["H1390"]]]},{"k":7074,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,7,["H3318"]],[7,9,["H4421"]],[9,10,["H5973"]],[10,11,["H1144"]],[11,14,["H376"]],[14,16,["H3478"]],[16,20,["H6186"]],[20,22,["H4421"]],[22,23,["H854"]],[23,25,["H413"]],[25,26,["H1390"]]]},{"k":7075,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,7,["H3318"]],[7,9,["H4480"]],[9,10,["H1390"]],[10,13,["H7843"]],[13,16,["H776"]],[16,19,["H3478"]],[19,20,["H1931"]],[20,21,["H3117"]],[21,22,["H6242"]],[22,24,["H8147"]],[24,25,["H505"]],[25,26,["H376"]]]},{"k":7076,"v":[[0,3,["H5971"]],[3,5,["H376"]],[5,7,["H3478"]],[7,9,["H2388"]],[9,11,["H6186"]],[11,13,["H4421"]],[13,14,["H3254"]],[14,16,["H6186"]],[16,19,["H4725"]],[19,20,["H834","H8033"]],[20,25,["H6186"]],[25,27,["H7223"]],[27,28,["H3117"]]]},{"k":7077,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H5927"]],[7,9,["H1058"]],[9,10,["H6440"]],[10,12,["H3068"]],[12,13,["H5704"]],[13,14,["H6153"]],[14,17,["H7592"]],[17,20,["H3068"]],[20,21,["H559"]],[21,25,["H5066"]],[25,26,["H3254"]],[26,28,["H4421"]],[28,29,["H5973"]],[29,31,["H1121"]],[31,33,["H1144"]],[33,35,["H251"]],[35,38,["H3068"]],[38,39,["H559"]],[39,41,["H5927"]],[41,42,["H413"]],[42,43,[]]]},{"k":7078,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H7126"]],[7,8,["H413"]],[8,10,["H1121"]],[10,12,["H1144"]],[12,14,["H8145"]],[14,15,["H3117"]]]},{"k":7079,"v":[[0,2,["H1144"]],[2,4,["H3318"]],[4,5,["H7125"]],[5,8,["H4480"]],[8,9,["H1390"]],[9,11,["H8145"]],[11,12,["H3117"]],[12,14,["H7843"]],[14,18,["H776"]],[18,21,["H1121"]],[21,23,["H3478"]],[23,24,["H5750"]],[24,25,["H8083","H6240"]],[25,26,["H505"]],[26,27,["H376"]],[27,28,["H3605"]],[28,29,["H428"]],[29,30,["H8025"]],[30,32,["H2719"]]]},{"k":7080,"v":[[0,2,["H3605"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H3605"]],[8,10,["H5971"]],[10,12,["H5927"]],[12,14,["H935"]],[14,19,["H1008"]],[19,21,["H1058"]],[21,23,["H3427"]],[23,24,["H8033"]],[24,25,["H6440"]],[25,27,["H3068"]],[27,29,["H6684"]],[29,30,["H1931"]],[30,31,["H3117"]],[31,32,["H5704"]],[32,33,["H6153"]],[33,35,["H5927"]],[35,37,["H5930"]],[37,40,["H8002"]],[40,41,["H6440"]],[41,43,["H3068"]]]},{"k":7081,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H7592"]],[6,9,["H3068"]],[9,12,["H727"]],[12,15,["H1285"]],[15,17,["H430"]],[17,19,["H8033"]],[19,21,["H1992"]],[21,22,["H3117"]]]},{"k":7082,"v":[[0,2,["H6372"]],[2,4,["H1121"]],[4,6,["H499"]],[6,8,["H1121"]],[8,10,["H175"]],[10,11,["H5975"]],[11,12,["H6440"]],[12,15,["H1992"]],[15,16,["H3117"]],[16,17,["H559"]],[17,20,["H5750"]],[20,21,["H3254"]],[21,23,["H3318"]],[23,25,["H4421"]],[25,26,["H5973"]],[26,28,["H1121"]],[28,30,["H1144"]],[30,32,["H251"]],[32,33,["H518"]],[33,36,["H2308"]],[36,39,["H3068"]],[39,40,["H559"]],[40,42,["H5927"]],[42,43,["H3588"]],[43,45,["H4279"]],[45,48,["H5414"]],[48,52,["H3027"]]]},{"k":7083,"v":[[0,2,["H3478"]],[2,3,["H7760"]],[3,6,["H693"]],[6,8,["H5439","H413"]],[8,9,["H1390"]]]},{"k":7084,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H5927"]],[7,8,["H413"]],[8,10,["H1121"]],[10,12,["H1144"]],[12,15,["H7992"]],[15,16,["H3117"]],[16,21,["H6186"]],[21,22,["H413"]],[22,23,["H1390"]],[23,27,["H6471","H6471"]]]},{"k":7085,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,7,["H3318"]],[7,8,["H7125"]],[8,10,["H5971"]],[10,14,["H5423"]],[14,15,["H4480"]],[15,17,["H5892"]],[17,20,["H2490"]],[20,22,["H5221"]],[22,25,["H4480","H5971"]],[25,27,["H2491"]],[27,31,["H6471","H6471"]],[31,34,["H4546"]],[34,36,["H834"]],[36,37,["H259"]],[37,39,["H5927"]],[39,44,["H1008"]],[44,47,["H259"]],[47,49,["H1390"]],[49,52,["H7704"]],[52,54,["H7970"]],[54,55,["H376"]],[55,57,["H3478"]]]},{"k":7086,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,6,["H559"]],[6,7,["H1992"]],[7,10,["H5062"]],[10,11,["H6440"]],[11,16,["H7223"]],[16,19,["H1121"]],[19,21,["H3478"]],[21,22,["H559"]],[22,25,["H5127"]],[25,27,["H5423"]],[27,29,["H4480"]],[29,31,["H5892"]],[31,32,["H413"]],[32,34,["H4546"]]]},{"k":7087,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,6,["H3478"]],[6,8,["H6965"]],[8,12,["H4480","H4725"]],[12,17,["H6186"]],[17,19,["H1193"]],[19,24,["H693"]],[24,26,["H3478"]],[26,28,["H1518"]],[28,32,["H4480","H4725"]],[32,37,["H4480","H4629"]],[37,39,["H4480","H1390"]]]},{"k":7088,"v":[[0,3,["H935"]],[3,4,["H4480","H5048"]],[4,5,["H1390"]],[5,6,["H6235"]],[6,7,["H505"]],[7,8,["H977"]],[8,9,["H376"]],[9,12,["H4480","H3605"]],[12,13,["H3478"]],[13,16,["H4421"]],[16,18,["H3513"]],[18,20,["H1992"]],[20,21,["H3045"]],[21,22,["H3808"]],[22,23,["H3588"]],[23,24,["H7451"]],[24,26,["H5060"]],[26,27,[]]]},{"k":7089,"v":[[0,3,["H3068"]],[3,4,["H5062","(H853)"]],[4,5,["H1144"]],[5,6,["H6440"]],[6,7,["H3478"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,13,["H7843"]],[13,16,["H1144"]],[16,17,["H1931"]],[17,18,["H3117"]],[18,19,["H6242"]],[19,21,["H2568"]],[21,22,["H505"]],[22,25,["H3967"]],[25,26,["H376"]],[26,27,["H3605"]],[27,28,["H428"]],[28,29,["H8025"]],[29,31,["H2719"]]]},{"k":7090,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,6,["H7200"]],[6,7,["H3588"]],[7,10,["H5062"]],[10,13,["H376"]],[13,15,["H3478"]],[15,16,["H5414"]],[16,17,["H4725"]],[17,20,["H1144"]],[20,21,["H3588"]],[21,23,["H982"]],[23,24,["H413"]],[24,28,["H693"]],[28,29,["H834"]],[29,32,["H7760"]],[32,33,["H413"]],[33,34,["H1390"]]]},{"k":7091,"v":[[0,5,["H693"]],[5,6,["H2363"]],[6,8,["H6584"]],[8,9,["H413"]],[9,10,["H1390"]],[10,15,["H693"]],[15,18,["H4900"]],[18,20,["H5221","(H853)"]],[20,21,["H3605"]],[21,23,["H5892"]],[23,26,["H6310"]],[26,29,["H2719"]]]},{"k":7092,"v":[[0,3,["H1961"]],[3,6,["H4150"]],[6,9,["H376"]],[9,11,["H3478"]],[11,16,["H693"]],[16,22,["H7235"]],[22,23,["H4864"]],[23,25,["H6227"]],[25,27,["H5927"]],[27,29,["H4480"]],[29,31,["H5892"]]]},{"k":7093,"v":[[0,4,["H376"]],[4,6,["H3478"]],[6,7,["H2015"]],[7,10,["H4421"]],[10,11,["H1144"]],[11,12,["H2490"]],[12,14,["H5221"]],[14,16,["H2491"]],[16,19,["H376"]],[19,21,["H3478"]],[21,23,["H7970"]],[23,24,["H376"]],[24,25,["H3588"]],[25,27,["H559"]],[27,28,["H389"]],[28,29,["H1931"]],[29,32,["H5062","H5062"]],[32,33,["H6440"]],[33,38,["H7223"]],[38,39,["H4421"]]]},{"k":7094,"v":[[0,4,["H4864"]],[4,5,["H2490"]],[5,8,["H5927"]],[8,10,["H4480"]],[10,12,["H5892"]],[12,15,["H5982"]],[15,17,["H6227"]],[17,19,["H1144"]],[19,20,["H6437"]],[20,21,["H310"]],[21,24,["H2009"]],[24,26,["H3632"]],[26,29,["H5892"]],[29,31,["H5927"]],[31,33,["H8064"]]]},{"k":7095,"v":[[0,4,["H376"]],[4,6,["H3478"]],[6,8,["H2015"]],[8,10,["H376"]],[10,12,["H1144"]],[12,14,["H926"]],[14,15,["H3588"]],[15,17,["H7200"]],[17,18,["H3588"]],[18,19,["H7451"]],[19,21,["H5060"]],[21,22,["H5921"]],[22,23,[]]]},{"k":7096,"v":[[0,3,["H6437"]],[3,6,["H6440"]],[6,8,["H376"]],[8,10,["H3478"]],[10,11,["H413"]],[11,13,["H1870"]],[13,16,["H4057"]],[16,19,["H4421"]],[19,20,["H1692"]],[20,24,["H834"]],[24,29,["H4480","H5892"]],[29,31,["H7843"]],[31,34,["H8432"]],[34,36,[]]]},{"k":7097,"v":[[0,7,["H3803","(H853)","H1144"]],[7,9,["H7291"]],[9,14,["H1869"]],[14,16,["H4496"]],[16,18,["H5704","H5227"]],[18,19,["H1390"]],[19,22,["H4480","H4217","H8121"]]]},{"k":7098,"v":[[0,3,["H5307"]],[3,5,["H4480","H1144"]],[5,6,["H8083","H6240"]],[6,7,["H505"]],[7,8,["H376","(H853)"]],[8,9,["H3605"]],[9,10,["H428"]],[10,12,["H376"]],[12,14,["H2428"]]]},{"k":7099,"v":[[0,3,["H6437"]],[3,5,["H5127"]],[5,8,["H4057"]],[8,9,["H413"]],[9,11,["H5553"]],[11,13,["H7417"]],[13,16,["H5953"]],[16,21,["H4546"]],[21,22,["H2568"]],[22,23,["H505"]],[23,24,["H376"]],[24,27,["H1692"]],[27,28,["H310"]],[28,30,["H5704"]],[30,31,["H1440"]],[31,33,["H5221"]],[33,35,["H505"]],[35,36,["H376"]],[36,37,["H4480"]],[37,38,[]]]},{"k":7100,"v":[[0,3,["H3605"]],[3,5,["H5307"]],[5,6,["H1931"]],[6,7,["H3117"]],[7,9,["H4480","H1144"]],[9,10,["H1961"]],[10,11,["H6242"]],[11,13,["H2568"]],[13,14,["H505"]],[14,15,["H376"]],[15,17,["H8025"]],[17,19,["H2719","(H853)"]],[19,20,["H3605"]],[20,21,["H428"]],[21,23,["H376"]],[23,25,["H2428"]]]},{"k":7101,"v":[[0,2,["H8337"]],[2,3,["H3967"]],[3,4,["H376"]],[4,5,["H6437"]],[5,7,["H5127"]],[7,10,["H4057"]],[10,11,["H413"]],[11,13,["H5553"]],[13,14,["H7417"]],[14,16,["H3427"]],[16,19,["H5553"]],[19,20,["H7417"]],[20,21,["H702"]],[21,22,["H2320"]]]},{"k":7102,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,7,["H7725"]],[7,8,["H413"]],[8,10,["H1121"]],[10,12,["H1144"]],[12,14,["H5221"]],[14,18,["H6310"]],[18,21,["H2719"]],[21,25,["H4974"]],[25,28,["H4480","H5892"]],[28,29,["H5704"]],[29,31,["H929"]],[31,33,["H3605"]],[33,37,["H4672"]],[37,38,["H1571"]],[38,40,["H7971"]],[40,42,["H784"]],[42,43,["H3605"]],[43,45,["H5892"]],[45,49,["H4672"]]]},{"k":7103,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,7,["H7650"]],[7,9,["H4709"]],[9,10,["H559"]],[10,13,["H3808"]],[13,14,["H376"]],[14,15,["H4480"]],[15,17,["H5414"]],[17,19,["H1323"]],[19,21,["H1144"]],[21,23,["H802"]]]},{"k":7104,"v":[[0,3,["H5971"]],[3,4,["H935"]],[4,9,["H1008"]],[9,11,["H3427"]],[11,12,["H8033"]],[12,13,["H5704"]],[13,14,["H6153"]],[14,15,["H6440"]],[15,16,["H430"]],[16,19,["H5375"]],[19,21,["H6963"]],[21,23,["H1058"]],[23,24,["H1065","H1419"]]]},{"k":7105,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,8,["H4100"]],[8,10,["H2063"]],[10,13,["H1961"]],[13,15,["H3478"]],[15,21,["H3117"]],[21,22,["H259"]],[22,23,["H7626"]],[23,24,["H6485"]],[24,26,["H4480","H3478"]]]},{"k":7106,"v":[[0,5,["H1961"]],[5,8,["H4480","H4283"]],[8,11,["H5971"]],[11,13,["H7925"]],[13,15,["H1129"]],[15,16,["H8033"]],[16,18,["H4196"]],[18,20,["H5927"]],[20,22,["H5930"]],[22,25,["H8002"]]]},{"k":7107,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H4310"]],[7,11,["H4480","H3605"]],[11,13,["H7626"]],[13,15,["H3478"]],[15,16,["H834"]],[16,19,["H5927","H3808"]],[19,22,["H6951"]],[22,23,["H413"]],[23,25,["H3068"]],[25,26,["H3588"]],[26,29,["H1961"]],[29,31,["H1419"]],[31,32,["H7621"]],[32,33,["H834"]],[33,38,["H5927","H3808"]],[38,39,["H413"]],[39,41,["H3068"]],[41,43,["H4709"]],[43,44,["H559"]],[44,51,["H4191","H4191"]]]},{"k":7108,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5162"]],[6,8,["H413"]],[8,9,["H1144"]],[9,11,["H251"]],[11,13,["H559"]],[13,16,["H259"]],[16,17,["H7626"]],[17,19,["H1438"]],[19,21,["H4480","H3478"]],[21,23,["H3117"]]]},{"k":7109,"v":[[0,1,["H4100"]],[1,4,["H6213"]],[4,6,["H802"]],[6,10,["H3498"]],[10,12,["H587"]],[12,14,["H7650"]],[14,17,["H3068"]],[17,21,["H1115"]],[21,22,["H5414"]],[22,26,["H4480","H1323"]],[26,28,["H802"]]]},{"k":7110,"v":[[0,3,["H559"]],[3,4,["H4310"]],[4,5,["H259"]],[5,10,["H4480","H7626"]],[10,12,["H3478"]],[12,13,["H834"]],[13,16,["H5927","H3808"]],[16,18,["H4709"]],[18,19,["H413"]],[19,21,["H3068"]],[21,23,["H2009"]],[23,25,["H935"]],[25,26,["H3808","H376"]],[26,27,["H413"]],[27,29,["H4264"]],[29,31,["H4480","H3003","H1568"]],[31,32,["H413"]],[32,34,["H6951"]]]},{"k":7111,"v":[[0,3,["H5971"]],[3,5,["H6485"]],[5,7,["H2009"]],[7,10,["H369","H376"]],[10,13,["H4480","H3427"]],[13,15,["H3003","H1568"]],[15,16,["H8033"]]]},{"k":7112,"v":[[0,3,["H5712"]],[3,4,["H7971"]],[4,5,["H8033"]],[5,6,["H8147","H6240"]],[6,7,["H505"]],[7,8,["H376"]],[8,11,["H4480","H1121","H2428"]],[11,13,["H6680"]],[13,15,["H559"]],[15,16,["H1980"]],[16,18,["H5221","(H853)"]],[18,20,["H3427"]],[20,22,["H3003","H1568"]],[22,25,["H6310"]],[25,28,["H2719"]],[28,31,["H802"]],[31,34,["H2945"]]]},{"k":7113,"v":[[0,2,["H2088"]],[2,5,["H1697"]],[5,6,["H834"]],[6,9,["H6213"]],[9,13,["H2763"]],[13,14,["H3605"]],[14,15,["H2145"]],[15,17,["H3605"]],[17,18,["H802"]],[18,21,["H3045","H4904"]],[21,23,["H2145"]]]},{"k":7114,"v":[[0,3,["H4672"]],[3,6,["H4480","H3427"]],[6,8,["H3003","H1568"]],[8,9,["H702"]],[9,10,["H3967"]],[10,11,["H5291"]],[11,12,["H1330"]],[12,13,["H834"]],[13,15,["H3045"]],[15,16,["H3808"]],[16,17,["H376"]],[17,19,["H4904"]],[19,22,["H2145"]],[22,25,["H935"]],[25,27,["H413"]],[27,29,["H4264"]],[29,31,["H7887"]],[31,32,["H834"]],[32,36,["H776"]],[36,38,["H3667"]]]},{"k":7115,"v":[[0,3,["H3605"]],[3,4,["H5712"]],[4,5,["H7971"]],[5,8,["H1696"]],[8,9,["H413"]],[9,11,["H1121"]],[11,13,["H1144"]],[13,14,["H834"]],[14,18,["H5553"]],[18,19,["H7417"]],[19,22,["H7121"]],[22,23,["H7965"]],[23,25,[]]]},{"k":7116,"v":[[0,2,["H1144"]],[2,4,["H7725"]],[4,6,["H1931"]],[6,7,["H6256"]],[7,10,["H5414"]],[10,12,["H802"]],[12,13,["H834"]],[13,17,["H2421"]],[17,20,["H4480","H802"]],[20,22,["H3003","H1568"]],[22,25,["H3651"]],[25,27,["H4672"]],[27,29,["H3808"]]]},{"k":7117,"v":[[0,3,["H5971"]],[3,5,["H5162"]],[5,7,["H1144"]],[7,8,["H3588"]],[8,11,["H3068"]],[11,13,["H6213"]],[13,15,["H6556"]],[15,18,["H7626"]],[18,20,["H3478"]]]},{"k":7118,"v":[[0,3,["H2205"]],[3,6,["H5712"]],[6,7,["H559"]],[7,8,["H4100"]],[8,11,["H6213"]],[11,13,["H802"]],[13,17,["H3498"]],[17,18,["H3588"]],[18,20,["H802"]],[20,22,["H8045"]],[22,25,["H4480","H1144"]]]},{"k":7119,"v":[[0,3,["H559"]],[3,8,["H3425"]],[8,13,["H6413"]],[13,15,["H1144"]],[15,18,["H7626"]],[18,20,["H3808"]],[20,21,["H4229"]],[21,24,["H4480","H3478"]]]},{"k":7120,"v":[[0,2,["H587"]],[2,3,["H3201"]],[3,4,["H3808"]],[4,5,["H5414"]],[5,7,["H802"]],[7,10,["H4480","H1323"]],[10,11,["H3588"]],[11,13,["H1121"]],[13,15,["H3478"]],[15,17,["H7650"]],[17,18,["H559"]],[18,19,["H779"]],[19,23,["H5414"]],[23,25,["H802"]],[25,27,["H1144"]]]},{"k":7121,"v":[[0,3,["H559"]],[3,4,["H2009"]],[4,8,["H2282"]],[8,11,["H3068"]],[11,13,["H7887"]],[13,14,["H4480","H3117","H3117"]],[14,18,["H834"]],[18,23,["H4480","H6828"]],[23,25,["H4480","H1008"]],[25,29,["H4217","H8121"]],[29,32,["H4546"]],[32,35,["H5927"]],[35,37,["H4480","H1008"]],[37,39,["H7927"]],[39,43,["H4480","H5045"]],[43,45,["H3829"]]]},{"k":7122,"v":[[0,3,["H6680","(H853)"]],[3,5,["H1121"]],[5,7,["H1144"]],[7,8,["H559"]],[8,9,["H1980"]],[9,13,["H693"]],[13,16,["H3754"]]]},{"k":7123,"v":[[0,2,["H7200"]],[2,4,["H2009"]],[4,5,["H518"]],[5,7,["H1323"]],[7,9,["H7887"]],[9,11,["H3318"]],[11,13,["H2342"]],[13,15,["H4246"]],[15,19,["H3318"]],[19,20,["H4480"]],[20,22,["H3754"]],[22,24,["H2414"]],[24,27,["H376"]],[27,29,["H802"]],[29,32,["H4480","H1323"]],[32,34,["H7887"]],[34,36,["H1980"]],[36,39,["H776"]],[39,41,["H1144"]]]},{"k":7124,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,7,["H1"]],[7,8,["H176"]],[8,10,["H251"]],[10,11,["H935"]],[11,12,["H413"]],[12,15,["H7378"]],[15,19,["H559"]],[19,20,["H413"]],[20,23,["H2603"]],[23,29,["H3588"]],[29,31,["H3947"]],[31,32,["H3808"]],[32,35,["H376"]],[35,37,["H802"]],[37,40,["H4421"]],[40,41,["H3588"]],[41,42,["H859"]],[42,44,["H3808"]],[44,45,["H5414"]],[45,50,["H6256"]],[50,55,["H816"]]]},{"k":7125,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,6,["H6213"]],[6,7,["H3651"]],[7,9,["H5375"]],[9,11,["H802"]],[11,15,["H4557"]],[15,16,["H4480"]],[16,19,["H2342"]],[19,20,["H834"]],[20,22,["H1497"]],[22,25,["H1980"]],[25,27,["H7725"]],[27,28,["H413"]],[28,30,["H5159"]],[30,32,["H1129","(H853)"]],[32,34,["H5892"]],[34,36,["H3427"]],[36,38,[]]]},{"k":7126,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H1980"]],[6,7,["H4480","H8033"]],[7,9,["H1931"]],[9,10,["H6256"]],[10,12,["H376"]],[12,15,["H7626"]],[15,19,["H4940"]],[19,23,["H3318"]],[23,25,["H4480","H8033"]],[25,27,["H376"]],[27,30,["H5159"]]]},{"k":7127,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,6,["H369"]],[6,7,["H4428"]],[7,9,["H3478"]],[9,11,["H376"]],[11,12,["H6213"]],[12,16,["H3477"]],[16,20,["H5869"]]]},{"k":7128,"v":[[0,5,["H1961"]],[5,8,["H3117"]],[8,11,["H8199"]],[11,12,["H8199"]],[12,15,["H1961"]],[15,17,["H7458"]],[17,20,["H776"]],[20,24,["H376"]],[24,26,["H4480","H1035","H3063"]],[26,27,["H1980"]],[27,29,["H1481"]],[29,32,["H7704"]],[32,34,["H4124"]],[34,35,["H1931"]],[35,38,["H802"]],[38,41,["H8147"]],[41,42,["H1121"]]]},{"k":7129,"v":[[0,3,["H8034"]],[3,6,["H376"]],[6,8,["H458"]],[8,11,["H8034"]],[11,14,["H802"]],[14,15,["H5281"]],[15,18,["H8034"]],[18,21,["H8147"]],[21,22,["H1121"]],[22,23,["H4248"]],[23,25,["H3630"]],[25,26,["H673"]],[26,28,["H4480","H1035","H3063"]],[28,31,["H935"]],[31,34,["H7704"]],[34,36,["H4124"]],[36,38,["H1961"]],[38,39,["H8033"]]]},{"k":7130,"v":[[0,2,["H458"]],[2,3,["H5281"]],[3,4,["H376"]],[4,5,["H4191"]],[5,7,["H1931"]],[7,9,["H7604"]],[9,12,["H8147"]],[12,13,["H1121"]]]},{"k":7131,"v":[[0,3,["H5375"]],[3,5,["H802"]],[5,10,["H4125"]],[10,12,["H8034"]],[12,15,["H259"]],[15,17,["H6204"]],[17,20,["H8034"]],[20,23,["H8145"]],[23,24,["H7327"]],[24,27,["H3427"]],[27,28,["H8033"]],[28,30,["H6235"]],[30,31,["H8141"]]]},{"k":7132,"v":[[0,2,["H4248"]],[2,4,["H3630"]],[4,5,["H4191"]],[5,6,["H1571"]],[6,7,["H8147"]],[7,12,["H802"]],[12,14,["H7604"]],[14,18,["H4480","H8147","H3206"]],[18,21,["H4480","H376"]]]},{"k":7133,"v":[[0,2,["H1931"]],[2,3,["H6965"]],[3,8,["H3618"]],[8,12,["H7725"]],[12,15,["H4480","H7704"]],[15,17,["H4124"]],[17,18,["H3588"]],[18,21,["H8085"]],[21,24,["H7704"]],[24,26,["H4124"]],[26,28,["H3588"]],[28,30,["H3068"]],[30,32,["H6485","(H853)"]],[32,34,["H5971"]],[34,36,["H5414"]],[36,38,["H3899"]]]},{"k":7134,"v":[[0,4,["H3318"]],[4,6,["H4480"]],[6,8,["H4725"]],[8,9,["H834","H8033"]],[9,11,["H1961"]],[11,14,["H8147"]],[14,17,["H3618"]],[17,19,["H5973"]],[19,22,["H1980"]],[22,25,["H1870"]],[25,27,["H7725"]],[27,28,["H413"]],[28,30,["H776"]],[30,32,["H3063"]]]},{"k":7135,"v":[[0,2,["H5281"]],[2,3,["H559"]],[3,6,["H8147"]],[6,9,["H3618"]],[9,10,["H1980"]],[10,11,["H7725"]],[11,12,["H802"]],[12,15,["H517"]],[15,16,["H1004"]],[16,18,["H3068"]],[18,19,["H6213"]],[19,20,["H2617"]],[20,21,["H5973"]],[21,23,["H834"]],[23,26,["H6213"]],[26,27,["H5973"]],[27,29,["H4191"]],[29,31,["H5973"]],[31,32,[]]]},{"k":7136,"v":[[0,2,["H3068"]],[2,3,["H5414"]],[3,8,["H4672"]],[8,9,["H4496"]],[9,10,["H802"]],[10,15,["H1004"]],[15,18,["H376"]],[18,21,["H5401"]],[21,26,["H5375"]],[26,28,["H6963"]],[28,30,["H1058"]]]},{"k":7137,"v":[[0,3,["H559"]],[3,6,["H3588"]],[6,9,["H7725"]],[9,10,["H854"]],[10,14,["H5971"]]]},{"k":7138,"v":[[0,2,["H5281"]],[2,3,["H559"]],[3,5,["H7725"]],[5,7,["H1323"]],[7,8,["H4100"]],[8,11,["H1980"]],[11,12,["H5973"]],[12,16,["H5750"]],[16,19,["H1121"]],[19,22,["H4578"]],[22,26,["H1961"]],[26,28,["H376"]]]},{"k":7139,"v":[[0,2,["H7725"]],[2,4,["H1323"]],[4,5,["H1980"]],[5,8,["H3588"]],[8,12,["H2204"]],[12,14,["H4480","H1961"]],[14,16,["H376"]],[16,17,["H3588"]],[17,20,["H559"]],[20,22,["H3426"]],[22,23,["H8615"]],[23,27,["H1961"]],[27,29,["H376"]],[29,30,["H1571"]],[30,32,["H3915"]],[32,35,["H1571"]],[35,36,["H3205"]],[36,37,["H1121"]]]},{"k":7140,"v":[[0,3,["H7663"]],[3,5,["H2004"]],[5,6,["H5704","H834"]],[6,9,["H1431"]],[9,12,["H5702"]],[12,14,["H2004"]],[14,16,["H1961"]],[16,17,["H376"]],[17,18,["H408"]],[18,20,["H1323"]],[20,21,["H3588"]],[21,23,["H4843"]],[23,25,["H3966"]],[25,26,["H4480"]],[26,29,["H3588"]],[29,31,["H3027"]],[31,34,["H3068"]],[34,37,["H3318"]],[37,39,[]]]},{"k":7141,"v":[[0,4,["H5375"]],[4,6,["H6963"]],[6,8,["H1058"]],[8,9,["H5750"]],[9,11,["H6204"]],[11,12,["H5401"]],[12,16,["H2545"]],[16,18,["H7327"]],[18,19,["H1692"]],[19,21,[]]]},{"k":7142,"v":[[0,3,["H559"]],[3,4,["H2009"]],[4,8,["H2994"]],[8,11,["H7725"]],[11,12,["H413"]],[12,14,["H5971"]],[14,16,["H413"]],[16,18,["H430"]],[18,19,["H7725"]],[19,21,["H310"]],[21,25,["H2994"]]]},{"k":7143,"v":[[0,2,["H7327"]],[2,3,["H559"]],[3,4,["H6293"]],[4,6,["H408"]],[6,8,["H5800"]],[8,12,["H7725"]],[12,15,["H4480","H310"]],[15,17,["H3588"]],[17,18,["H413","H834"]],[18,20,["H1980"]],[20,23,["H1980"]],[23,25,["H834"]],[25,27,["H3885"]],[27,30,["H3885"]],[30,32,["H5971"]],[32,36,["H5971"]],[36,39,["H430"]],[39,41,["H430"]]]},{"k":7144,"v":[[0,1,["H834"]],[1,3,["H4191"]],[3,6,["H4191"]],[6,8,["H8033"]],[8,12,["H6912"]],[12,14,["H3068"]],[14,15,["H6213"]],[15,16,["H3541"]],[16,20,["H3254"]],[20,21,["H3541"]],[21,24,["H3588"]],[24,25,["H4194"]],[25,26,["H6504"]],[26,27,["H996"]],[27,29,["H996"]]]},{"k":7145,"v":[[0,3,["H7200"]],[3,4,["H3588"]],[4,5,["H1931"]],[5,8,["H553"]],[8,10,["H1980"]],[10,11,["H854"]],[11,15,["H2308"]],[15,16,["H1696"]],[16,17,["H413"]],[17,18,[]]]},{"k":7146,"v":[[0,3,["H8147"]],[3,4,["H1980"]],[4,5,["H5704"]],[5,7,["H935"]],[7,9,["H1035"]],[9,14,["H1961"]],[14,18,["H935"]],[18,20,["H1035"]],[20,22,["H3605"]],[22,24,["H5892"]],[24,26,["H1949"]],[26,27,["H5921"]],[27,31,["H559"]],[31,33,["H2063"]],[33,34,["H5281"]]]},{"k":7147,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H7121"]],[6,8,["H408"]],[8,9,["H5281"]],[9,10,["H7121"]],[10,12,["H4755"]],[12,13,["H3588"]],[13,15,["H7706"]],[15,19,["H3966","H4843"]],[19,21,[]]]},{"k":7148,"v":[[0,1,["H589"]],[1,3,["H1980"]],[3,4,["H4392"]],[4,7,["H3068"]],[7,12,["H7725"]],[12,13,["H7387"]],[13,14,["H4100"]],[14,16,["H7121"]],[16,19,["H5281"]],[19,22,["H3068"]],[22,24,["H6030"]],[24,29,["H7706"]],[29,31,["H7489"]],[31,32,[]]]},{"k":7149,"v":[[0,2,["H5281"]],[2,3,["H7725"]],[3,5,["H7327"]],[5,7,["H4125"]],[7,11,["H3618"]],[11,13,["H5973"]],[13,15,["H7725"]],[15,19,["H4480","H7704"]],[19,21,["H4124"]],[21,23,["H1992"]],[23,24,["H935"]],[24,26,["H1035"]],[26,29,["H8462"]],[29,31,["H8184"]],[31,32,["H7105"]]]},{"k":7150,"v":[[0,2,["H5281"]],[2,5,["H4129"]],[5,8,["H376"]],[8,10,["H1368"]],[10,11,["H376"]],[11,13,["H2428"]],[13,16,["H4480","H4940"]],[16,18,["H458"]],[18,21,["H8034"]],[21,23,["H1162"]]]},{"k":7151,"v":[[0,2,["H7327"]],[2,4,["H4125"]],[4,5,["H559"]],[5,6,["H413"]],[6,7,["H5281"]],[7,10,["H4994"]],[10,11,["H1980"]],[11,14,["H7704"]],[14,16,["H3950"]],[16,19,["H7641"]],[19,20,["H310","H834"]],[20,24,["H5869"]],[24,27,["H4672"]],[27,28,["H2580"]],[28,31,["H559"]],[31,34,["H1980"]],[34,36,["H1323"]]]},{"k":7152,"v":[[0,3,["H1980"]],[3,5,["H935"]],[5,7,["H3950"]],[7,10,["H7704"]],[10,11,["H310"]],[11,13,["H7114"]],[13,16,["H4745"]],[16,19,["H7136"]],[19,22,["H2513"]],[22,25,["H7704"]],[25,28,["H1162"]],[28,29,["H834"]],[29,33,["H4480","H4940"]],[33,35,["H458"]]]},{"k":7153,"v":[[0,2,["H2009"]],[2,3,["H1162"]],[3,4,["H935"]],[4,6,["H4480","H1035"]],[6,8,["H559"]],[8,11,["H7114"]],[11,13,["H3068"]],[13,15,["H5973"]],[15,19,["H559"]],[19,22,["H3068"]],[22,23,["H1288"]],[23,24,[]]]},{"k":7154,"v":[[0,2,["H559"]],[2,3,["H1162"]],[3,6,["H5288"]],[6,9,["H5324"]],[9,10,["H5921"]],[10,12,["H7114"]],[12,13,["H4310"]],[13,14,["H5291"]],[14,16,["H2063"]]]},{"k":7155,"v":[[0,3,["H5288"]],[3,6,["H5324"]],[6,7,["H5921"]],[7,9,["H7114"]],[9,10,["H6030"]],[10,12,["H559"]],[12,13,["H1931"]],[13,16,["H4125"]],[16,17,["H5291"]],[17,20,["H7725"]],[20,21,["H5973"]],[21,22,["H5281"]],[22,26,["H4480","H7704"]],[26,28,["H4124"]]]},{"k":7156,"v":[[0,3,["H559"]],[3,5,["H4994"]],[5,9,["H3950"]],[9,11,["H622"]],[11,12,["H310"]],[12,14,["H7114"]],[14,17,["H6016"]],[17,20,["H935"]],[20,23,["H5975"]],[23,25,["H4480","H227"]],[25,27,["H1242"]],[27,28,["H5704"]],[28,29,["H6258"]],[29,30,["H2088"]],[30,32,["H3427"]],[32,34,["H4592"]],[34,37,["H1004"]]]},{"k":7157,"v":[[0,2,["H559"]],[2,3,["H1162"]],[3,4,["H413"]],[4,5,["H7327"]],[5,6,["H8085"]],[6,8,["H3808"]],[8,10,["H1323"]],[10,11,["H1980"]],[11,12,["H408"]],[12,14,["H3950"]],[14,16,["H312"]],[16,17,["H7704"]],[17,18,["H1571","H3808"]],[18,19,["H5674"]],[19,21,["H4480","H2088"]],[21,22,["H3541"]],[22,23,["H1692"]],[23,26,["H5973"]],[26,28,["H5291"]]]},{"k":7158,"v":[[0,3,["H5869"]],[3,7,["H7704"]],[7,8,["H834"]],[8,11,["H7114"]],[11,13,["H1980"]],[13,15,["H310"]],[15,19,["H3808"]],[19,20,["H6680","(H853)"]],[20,23,["H5288"]],[23,27,["H1115"]],[27,28,["H5060"]],[28,34,["H6770"]],[34,35,["H1980"]],[35,36,["H413"]],[36,38,["H3627"]],[38,40,["H8354"]],[40,43,["H4480","H834"]],[43,46,["H5288"]],[46,48,["H7579"]]]},{"k":7159,"v":[[0,3,["H5307"]],[3,4,["H5921"]],[4,6,["H6440"]],[6,9,["H7812"]],[9,12,["H776"]],[12,14,["H559"]],[14,15,["H413"]],[15,17,["H4069"]],[17,20,["H4672"]],[20,21,["H2580"]],[21,24,["H5869"]],[24,29,["H5234"]],[29,33,["H595"]],[33,36,["H5237"]]]},{"k":7160,"v":[[0,2,["H1162"]],[2,3,["H6030"]],[3,5,["H559"]],[5,10,["H5046"]],[10,12,["H5046"]],[12,14,["H3605"]],[14,15,["H834"]],[15,18,["H6213"]],[18,19,["(H853)"]],[19,23,["H2545"]],[23,24,["H310"]],[24,26,["H4194"]],[26,29,["H376"]],[29,34,["H5800"]],[34,36,["H1"]],[36,39,["H517"]],[39,42,["H776"]],[42,45,["H4138"]],[45,48,["H1980"]],[48,49,["H413"]],[49,51,["H5971"]],[51,52,["H834"]],[52,54,["H3045"]],[54,55,["H3808"]],[55,56,["H8032","H8543"]]]},{"k":7161,"v":[[0,2,["H3068"]],[2,3,["H7999"]],[3,5,["H6467"]],[5,8,["H8003"]],[8,9,["H4909"]],[9,11,["H1961"]],[11,13,["H4480","H5973"]],[13,15,["H3068"]],[15,16,["H430"]],[16,18,["H3478"]],[18,19,["H8478"]],[19,20,["H834"]],[20,21,["H3671"]],[21,24,["H935"]],[24,26,["H2620"]]]},{"k":7162,"v":[[0,3,["H559"]],[3,6,["H4672"]],[6,7,["H2580"]],[7,10,["H5869"]],[10,12,["H113"]],[12,13,["H3588"]],[13,17,["H5162"]],[17,21,["H3588"]],[21,24,["H1696"]],[24,25,["H5921","H3820"]],[25,28,["H8198"]],[28,30,["H595"]],[30,31,["H1961"]],[31,32,["H3808"]],[32,35,["H259"]],[35,38,["H8198"]]]},{"k":7163,"v":[[0,2,["H1162"]],[2,3,["H559"]],[3,7,["H6256","H400"]],[7,8,["H5066"]],[8,10,["H1988"]],[10,12,["H398"]],[12,13,["H4480"]],[13,15,["H3899"]],[15,17,["H2881"]],[17,19,["H6595"]],[19,22,["H2558"]],[22,25,["H3427"]],[25,26,["H4480","H6654"]],[26,28,["H7114"]],[28,31,["H6642"]],[31,33,["H7039"]],[33,38,["H398"]],[38,41,["H7646"]],[41,43,["H3498"]]]},{"k":7164,"v":[[0,6,["H6965"]],[6,8,["H3950"]],[8,9,["H1162"]],[9,10,["H6680","(H853)"]],[10,13,["H5288"]],[13,14,["H559"]],[14,17,["H3950"]],[17,18,["H1571"]],[18,19,["H996"]],[19,21,["H6016"]],[21,23,["H3637"]],[23,25,["H3808"]]]},{"k":7165,"v":[[0,3,["H7997"]],[3,4,["H1571"]],[4,6,["H4480"]],[6,8,["H6653"]],[8,10,["H7997"]],[10,14,["H5800"]],[14,19,["H3950"]],[19,22,["H1605"]],[22,24,["H3808"]]]},{"k":7166,"v":[[0,3,["H3950"]],[3,6,["H7704"]],[6,7,["H5704"]],[7,8,["H6153"]],[8,11,["H2251","(H853)"]],[11,12,["H834"]],[12,15,["H3950"]],[15,18,["H1961"]],[18,21,["H374"]],[21,23,["H8184"]]]},{"k":7167,"v":[[0,5,["H5375"]],[5,7,["H935"]],[7,10,["H5892"]],[10,15,["H2545"]],[15,16,["H7200","(H853)"]],[16,17,["H834"]],[17,20,["H3950"]],[20,24,["H3318"]],[24,26,["H5414"]],[26,28,["(H853)"]],[28,29,["H834"]],[29,32,["H3498"]],[32,36,["H4480","H7648"]]]},{"k":7168,"v":[[0,5,["H2545"]],[5,6,["H559"]],[6,9,["H375"]],[9,12,["H3950"]],[12,14,["H3117"]],[14,16,["H375"]],[16,17,["H6213"]],[17,19,["H1288"]],[19,20,["H1961"]],[20,25,["H5234"]],[25,30,["H5046"]],[30,34,["H2545","(H853)"]],[34,35,["H5973"]],[35,36,["H834"]],[36,39,["H6213"]],[39,41,["H559"]],[41,43,["H376"]],[43,44,["H8034"]],[44,45,["H5973"]],[45,46,["H834"]],[46,48,["H6213"]],[48,50,["H3117"]],[50,52,["H1162"]]]},{"k":7169,"v":[[0,2,["H5281"]],[2,3,["H559"]],[3,8,["H3618"]],[8,9,["H1288"]],[9,11,["H1931"]],[11,14,["H3068"]],[14,15,["H834"]],[15,17,["H3808"]],[17,19,["H5800"]],[19,21,["H2617"]],[21,22,["H854"]],[22,24,["H2416"]],[24,26,["H854"]],[26,28,["H4191"]],[28,30,["H5281"]],[30,31,["H559"]],[31,35,["H376"]],[35,39,["H7138"]],[39,42,["H1931"]],[42,46,["H4480","H1350"]]]},{"k":7170,"v":[[0,2,["H7327"]],[2,4,["H4125"]],[4,5,["H559"]],[5,7,["H559"]],[7,8,["H413"]],[8,10,["H1571"]],[10,14,["H1692"]],[14,15,["H5973"]],[15,16,["H834"]],[16,18,["H5288"]],[18,19,["H5704","H518"]],[19,22,["H3615","(H853)"]],[22,23,["H3605"]],[23,24,["H834"]],[24,25,["H7105"]]]},{"k":7171,"v":[[0,2,["H5281"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7327"]],[5,9,["H3618"]],[9,12,["H2896"]],[12,14,["H1323"]],[14,15,["H3588"]],[15,18,["H3318"]],[18,19,["H5973"]],[19,21,["H5291"]],[21,24,["H6293"]],[24,26,["H3808"]],[26,29,["H312"]],[29,30,["H7704"]]]},{"k":7172,"v":[[0,4,["H1692"]],[4,7,["H5291"]],[7,9,["H1162"]],[9,11,["H3950"]],[11,12,["H5704"]],[12,14,["H3615"]],[14,16,["H8184"]],[16,17,["H7105"]],[17,20,["H2406"]],[20,21,["H7105"]],[21,23,["H3427"]],[23,24,["H854"]],[24,28,["H2545"]]]},{"k":7173,"v":[[0,2,["H5281"]],[2,6,["H2545"]],[6,7,["H559"]],[7,11,["H1323"]],[11,14,["H3808"]],[14,15,["H1245"]],[15,16,["H4494"]],[16,19,["H834"]],[19,23,["H3190"]],[23,25,[]]]},{"k":7174,"v":[[0,2,["H6258"]],[2,4,["H3808"]],[4,5,["H1162"]],[5,8,["H4130"]],[8,9,["H854"]],[9,10,["H834"]],[10,11,["H5291"]],[11,13,["H1961"]],[13,14,["H2009"]],[14,15,["H1931"]],[15,16,["H2219"]],[16,17,["H8184"]],[17,19,["H3915"]],[19,20,["(H853)"]],[20,22,["H1637"]]]},{"k":7175,"v":[[0,1,["H7364"]],[1,5,["H5480"]],[5,8,["H7760"]],[8,10,["H8071"]],[10,11,["H5921"]],[11,16,["H3381"]],[16,19,["H1637"]],[19,24,["H3045","H408"]],[24,27,["H376"]],[27,28,["H5704"]],[28,32,["H3615"]],[32,33,["H398"]],[33,35,["H8354"]]]},{"k":7176,"v":[[0,4,["H1961"]],[4,8,["H7901"]],[8,12,["H3045","(H853)"]],[12,14,["H4725"]],[14,15,["H834","H8033"]],[15,18,["H7901"]],[18,23,["H935"]],[23,25,["H1540"]],[25,27,["H4772"]],[27,31,["H7901"]],[31,33,["H1931"]],[33,35,["H5046"]],[35,36,["(H853)"]],[36,37,["H834"]],[37,40,["H6213"]]]},{"k":7177,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3605"]],[6,7,["H834"]],[7,9,["H559"]],[9,10,["H413"]],[10,14,["H6213"]]]},{"k":7178,"v":[[0,4,["H3381"]],[4,7,["H1637"]],[7,9,["H6213"]],[9,12,["H3605"]],[12,13,["H834"]],[13,17,["H2545"]],[17,18,["H6680"]],[18,19,[]]]},{"k":7179,"v":[[0,3,["H1162"]],[3,5,["H398"]],[5,7,["H8354"]],[7,10,["H3820"]],[10,12,["H3190"]],[12,14,["H935"]],[14,17,["H7901"]],[17,20,["H7097"]],[20,25,["H6194"]],[25,28,["H935"]],[28,29,["H3909"]],[29,31,["H1540"]],[31,33,["H4772"]],[33,37,["H7901"]]]},{"k":7180,"v":[[0,5,["H1961"]],[5,7,["H2677","H3915"]],[7,10,["H376"]],[10,12,["H2729"]],[12,15,["H3943"]],[15,17,["H2009"]],[17,19,["H802"]],[19,20,["H7901"]],[20,23,["H4772"]]]},{"k":7181,"v":[[0,3,["H559"]],[3,4,["H4310"]],[4,6,["H859"]],[6,9,["H559"]],[9,10,["H595"]],[10,12,["H7327"]],[12,14,["H519"]],[14,15,["H6566"]],[15,18,["H3671"]],[18,19,["H5921"]],[19,21,["H519"]],[21,22,["H3588"]],[22,23,["H859"]],[23,27,["H1350"]]]},{"k":7182,"v":[[0,3,["H559"]],[3,4,["H1288"]],[4,6,["H859"]],[6,9,["H3068"]],[9,11,["H1323"]],[11,16,["H3190"]],[16,17,["H2617"]],[17,21,["H314"]],[21,22,["H4480"]],[22,25,["H7223"]],[25,29,["H1980","H310"]],[29,30,["H1115"]],[30,32,["H970"]],[32,33,["H518"]],[33,34,["H1800"]],[34,35,["H518"]],[35,36,["H6223"]]]},{"k":7183,"v":[[0,2,["H6258"]],[2,4,["H1323"]],[4,5,["H3372"]],[5,6,["H408"]],[6,9,["H6213"]],[9,12,["H3605"]],[12,13,["H834"]],[13,15,["H559"]],[15,16,["H3588"]],[16,17,["H3605"]],[17,19,["H8179"]],[19,22,["H5971"]],[22,24,["H3045"]],[24,25,["H3588"]],[25,29,["H2428"]],[29,30,["H802"]]]},{"k":7184,"v":[[0,2,["H6258","H3588"]],[2,5,["H551"]],[5,6,["H3588","H518"]],[6,7,["H595"]],[7,11,["H1350"]],[11,12,["H1571"]],[12,14,["H3426"]],[14,16,["H1350"]],[16,17,["H7138"]],[17,18,["H4480"]],[18,19,[]]]},{"k":7185,"v":[[0,1,["H3885"]],[1,3,["H3915"]],[3,7,["H1961"]],[7,10,["H1242"]],[10,12,["H518"]],[12,22,["H1350"]],[22,23,["H2896"]],[23,29,["H1350"]],[29,31,["H518"]],[31,33,["H2654"]],[33,34,["H3808"]],[34,40,["H1350"]],[40,45,["H595"]],[45,51,["H1350"]],[51,56,["H3068"]],[56,57,["H2416"]],[57,59,["H7901"]],[59,60,["H5704"]],[60,62,["H1242"]]]},{"k":7186,"v":[[0,3,["H7901"]],[3,6,["H4772"]],[6,7,["H5704"]],[7,9,["H1242"]],[9,13,["H6965"]],[13,14,["H2958"]],[14,15,["H376"]],[15,17,["H5234","(H853)"]],[17,18,["H7453"]],[18,21,["H559"]],[21,24,["H408"]],[24,26,["H3045"]],[26,27,["H3588"]],[27,29,["H802"]],[29,30,["H935"]],[30,33,["H1637"]]]},{"k":7187,"v":[[0,3,["H559"]],[3,4,["H3051"]],[4,6,["H4304"]],[6,7,["H834"]],[7,10,["H5921"]],[10,13,["H270"]],[13,18,["H270"]],[18,21,["H4058"]],[21,22,["H8337"]],[22,25,["H8184"]],[25,27,["H7896"]],[27,29,["H5921"]],[29,34,["H935"]],[34,36,["H5892"]]]},{"k":7188,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,9,["H2545"]],[9,11,["H559"]],[11,12,["H4310"]],[12,14,["H859"]],[14,16,["H1323"]],[16,19,["H5046"]],[19,20,["(H853)"]],[20,21,["H3605"]],[21,22,["H834"]],[22,24,["H376"]],[24,26,["H6213"]],[26,28,[]]]},{"k":7189,"v":[[0,3,["H559"]],[3,4,["H428"]],[4,5,["H8337"]],[5,8,["H8184"]],[8,9,["H5414"]],[9,12,["H3588"]],[12,14,["H559"]],[14,15,["H413"]],[15,17,["H935"]],[17,18,["H408"]],[18,19,["H7387"]],[19,20,["H413"]],[20,24,["H2545"]]]},{"k":7190,"v":[[0,2,["H559"]],[2,5,["H3427"]],[5,7,["H1323"]],[7,8,["H5704","H834"]],[8,10,["H3045"]],[10,11,["H349"]],[11,13,["H1697"]],[13,15,["H5307"]],[15,16,["H3588"]],[16,18,["H376"]],[18,20,["H3808"]],[20,23,["H8252"]],[23,24,["H3588","H518"]],[24,27,["H3615"]],[27,29,["H1697"]],[29,31,["H3117"]]]},{"k":7191,"v":[[0,4,["H5927","H1162"]],[4,7,["H8179"]],[7,11,["H3427"]],[11,12,["H8033"]],[12,14,["H2009"]],[14,16,["H1350"]],[16,19,["H1162"]],[19,20,["H1696"]],[20,22,["H5674"]],[22,24,["H834"]],[24,26,["H559"]],[26,28,["H6423"]],[28,30,["H492"]],[30,32,["H5493"]],[32,34,["H3427"]],[34,35,["H6311"]],[35,39,["H5493"]],[39,42,["H3427"]]]},{"k":7192,"v":[[0,3,["H3947"]],[3,4,["H6235"]],[4,5,["H376"]],[5,8,["H4480","H2205"]],[8,11,["H5892"]],[11,13,["H559"]],[13,16,["H3427"]],[16,17,["H6311"]],[17,21,["H3427"]]]},{"k":7193,"v":[[0,3,["H559"]],[3,6,["H1350"]],[6,7,["H5281"]],[7,11,["H7725"]],[11,15,["H4480","H7704"]],[15,17,["H4124"]],[17,18,["H4376"]],[18,20,["H2513"]],[20,22,["H7704"]],[22,23,["H834"]],[23,26,["H251"]],[26,27,["H458"]]]},{"k":7194,"v":[[0,2,["H589"]],[2,3,["H559"]],[3,5,["H1540","H241"]],[5,7,["H559"]],[7,8,["H7069"]],[8,10,["H5048"]],[10,12,["H3427"]],[12,14,["H5048"]],[14,16,["H2205"]],[16,19,["H5971"]],[19,20,["H518"]],[20,23,["H1350"]],[23,25,["H1350"]],[25,28,["H518"]],[28,31,["H3808"]],[31,32,["H1350"]],[32,35,["H5046"]],[35,40,["H3045"]],[40,41,["H3588"]],[41,44,["H369"]],[44,46,["H1350"]],[46,48,["H2108"]],[48,51,["H595"]],[51,53,["H310"]],[53,57,["H559"]],[57,58,["H595"]],[58,60,["H1350"]],[60,61,[]]]},{"k":7195,"v":[[0,2,["H559"]],[2,3,["H1162"]],[3,5,["H3117"]],[5,7,["H7069"]],[7,9,["H7704"]],[9,12,["H4480","H3027"]],[12,14,["H5281"]],[14,17,["H7069"]],[17,20,["H4480","H854"]],[20,21,["H7327"]],[21,23,["H4125"]],[23,25,["H802"]],[25,28,["H4191"]],[28,31,["H6965"]],[31,33,["H8034"]],[33,36,["H4191"]],[36,37,["H5921"]],[37,39,["H5159"]]]},{"k":7196,"v":[[0,3,["H1350"]],[3,4,["H559"]],[4,6,["H3808","H3201"]],[6,7,["H1350"]],[7,11,["H6435"]],[11,13,["H7843","(H853)"]],[13,16,["H5159"]],[16,17,["H1350"]],[17,18,["H859","(H853)"]],[18,20,["H1353"]],[20,23,["H3588"]],[23,25,["H3808","H3201"]],[25,26,["H1350"]],[26,27,[]]]},{"k":7197,"v":[[0,2,["H2063"]],[2,8,["H6440"]],[8,10,["H3478"]],[10,11,["H5921"]],[11,12,["H1353"]],[12,14,["H5921"]],[14,15,["H8545"]],[15,18,["H6965"]],[18,19,["H3605"]],[19,20,["H1697"]],[20,22,["H376"]],[22,24,["H8025"]],[24,26,["H5275"]],[26,28,["H5414"]],[28,32,["H7453"]],[32,34,["H2063"]],[34,37,["H8584"]],[37,39,["H3478"]]]},{"k":7198,"v":[[0,3,["H1350"]],[3,4,["H559"]],[4,6,["H1162"]],[6,7,["H7069"]],[7,14,["H8025"]],[14,16,["H5275"]]]},{"k":7199,"v":[[0,2,["H1162"]],[2,3,["H559"]],[3,6,["H2205"]],[6,9,["H3605"]],[9,11,["H5971"]],[11,12,["H859"]],[12,14,["H5707"]],[14,16,["H3117"]],[16,17,["H3588"]],[17,20,["H7069","(H853)"]],[20,21,["H3605"]],[21,22,["H834"]],[22,24,["H458"]],[24,26,["H3605"]],[26,27,["H834"]],[27,29,["H3630"]],[29,31,["H4248"]],[31,34,["H4480","H3027"]],[34,36,["H5281"]]]},{"k":7200,"v":[[0,1,["H1571","(H853)"]],[1,2,["H7327"]],[2,4,["H4125"]],[4,6,["H802"]],[6,8,["H4248"]],[8,11,["H7069"]],[11,15,["H802"]],[15,18,["H6965"]],[18,20,["H8034"]],[20,23,["H4191"]],[23,24,["H5921"]],[24,26,["H5159"]],[26,29,["H8034"]],[29,32,["H4191"]],[32,34,["H3808"]],[34,36,["H3772"]],[36,38,["H4480","H5973"]],[38,40,["H251"]],[40,44,["H4480","H8179"]],[44,47,["H4725"]],[47,48,["H859"]],[48,50,["H5707"]],[50,52,["H3117"]]]},{"k":7201,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H834"]],[5,9,["H8179"]],[9,12,["H2205"]],[12,13,["H559"]],[13,16,["H5707"]],[16,18,["H3068"]],[18,19,["H5414","(H853)"]],[19,21,["H802"]],[21,24,["H935"]],[24,25,["H413"]],[25,27,["H1004"]],[27,29,["H7354"]],[29,32,["H3812"]],[32,33,["H834"]],[33,34,["H8147"]],[34,36,["H1129","(H853)"]],[36,38,["H1004"]],[38,40,["H3478"]],[40,42,["H6213"]],[42,44,["H2428"]],[44,46,["H672"]],[46,49,["H7121","H8034"]],[49,51,["H1035"]]]},{"k":7202,"v":[[0,4,["H1004"]],[4,5,["H1961"]],[5,8,["H1004"]],[8,10,["H6557"]],[10,11,["H834"]],[11,12,["H8559"]],[12,13,["H3205"]],[13,15,["H3063"]],[15,16,["H4480"]],[16,18,["H2233"]],[18,19,["H834"]],[19,21,["H3068"]],[21,23,["H5414"]],[23,25,["H4480"]],[25,26,["H2063"]],[26,28,["H5291"]]]},{"k":7203,"v":[[0,2,["H1162"]],[2,3,["H3947","(H853)"]],[3,4,["H7327"]],[4,7,["H1961"]],[7,9,["H802"]],[9,13,["H935"]],[13,15,["H413"]],[15,18,["H3068"]],[18,19,["H5414"]],[19,21,["H2032"]],[21,24,["H3205"]],[24,26,["H1121"]]]},{"k":7204,"v":[[0,3,["H802"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H5281"]],[6,7,["H1288"]],[7,10,["H3068"]],[10,11,["H834"]],[11,13,["H3808"]],[13,14,["H7673"]],[14,17,["H3117"]],[17,20,["H1350"]],[20,23,["H8034"]],[23,26,["H7121"]],[26,28,["H3478"]]]},{"k":7205,"v":[[0,4,["H1961"]],[4,8,["H7725"]],[8,11,["H5315"]],[11,14,["H3557"]],[14,15,["(H853)"]],[15,18,["H7872"]],[18,19,["H3588"]],[19,23,["H3618"]],[23,24,["H834"]],[24,25,["H157"]],[25,27,["H834"]],[27,29,["H2896"]],[29,33,["H4480","H7651"]],[33,34,["H1121"]],[34,36,["H3205"]],[36,37,[]]]},{"k":7206,"v":[[0,2,["H5281"]],[2,3,["H3947","(H853)"]],[3,5,["H3206"]],[5,7,["H7896"]],[7,11,["H2436"]],[11,13,["H1961"]],[13,14,["H539"]],[14,16,[]]]},{"k":7207,"v":[[0,5,["H7934"]],[5,6,["H7121"]],[6,9,["H8034"]],[9,10,["H559"]],[10,14,["H1121"]],[14,15,["H3205"]],[15,17,["H5281"]],[17,20,["H7121"]],[20,22,["H8034"]],[22,23,["H5744"]],[23,24,["H1931"]],[24,27,["H1"]],[27,29,["H3448"]],[29,31,["H1"]],[31,33,["H1732"]]]},{"k":7208,"v":[[0,2,["H428"]],[2,5,["H8435"]],[5,7,["H6557"]],[7,8,["H6557"]],[8,9,["H3205","(H853)"]],[9,10,["H2696"]]]},{"k":7209,"v":[[0,2,["H2696"]],[2,3,["H3205","(H853)"]],[3,4,["H7410"]],[4,6,["H7410","(H853)"]],[6,7,["H3205"]],[7,8,["H5992"]]]},{"k":7210,"v":[[0,2,["H5992"]],[2,3,["H3205","(H853)"]],[3,4,["H5177"]],[4,6,["H5177"]],[6,7,["H3205","(H853)"]],[7,8,["H8009"]]]},{"k":7211,"v":[[0,2,["H8012"]],[2,3,["H3205","(H853)"]],[3,4,["H1162"]],[4,6,["H1162"]],[6,7,["H3205","(H853)"]],[7,8,["H5744"]]]},{"k":7212,"v":[[0,2,["H5744"]],[2,3,["H3205","(H853)"]],[3,4,["H3448"]],[4,6,["H3448"]],[6,7,["H3205","(H853)"]],[7,8,["H1732"]]]},{"k":7213,"v":[[0,3,["H1961"]],[3,5,["H259"]],[5,6,["H376"]],[6,7,["H4480"]],[7,8,["H7436"]],[8,10,["H4480","H2022"]],[10,11,["H669"]],[11,14,["H8034"]],[14,16,["H511"]],[16,18,["H1121"]],[18,20,["H3395"]],[20,22,["H1121"]],[22,24,["H453"]],[24,26,["H1121"]],[26,28,["H8459"]],[28,30,["H1121"]],[30,32,["H6689"]],[32,34,["H673"]]]},{"k":7214,"v":[[0,4,["H8147"]],[4,5,["H802"]],[5,7,["H8034"]],[7,10,["H259"]],[10,12,["H2584"]],[12,15,["H8034"]],[15,18,["H8145"]],[18,19,["H6444"]],[19,21,["H6444"]],[21,22,["H1961"]],[22,23,["H3206"]],[23,25,["H2584"]],[25,27,["H369"]],[27,28,["H3206"]]]},{"k":7215,"v":[[0,2,["H1931"]],[2,3,["H376"]],[3,5,["H5927"]],[5,9,["H4480","H5892"]],[9,10,["H4480","H3117","H3117"]],[10,12,["H7812"]],[12,15,["H2076"]],[15,18,["H3068"]],[18,20,["H6635"]],[20,22,["H7887"]],[22,25,["H8147"]],[25,26,["H1121"]],[26,28,["H5941"]],[28,29,["H2652"]],[29,31,["H6372"]],[31,33,["H3548"]],[33,36,["H3068"]],[36,38,["H8033"]]]},{"k":7216,"v":[[0,4,["H3117"]],[4,5,["H1961"]],[5,7,["H511"]],[7,8,["H2076"]],[8,10,["H5414"]],[10,12,["H6444"]],[12,14,["H802"]],[14,17,["H3605"]],[17,19,["H1121"]],[19,22,["H1323"]],[22,23,["H4490"]]]},{"k":7217,"v":[[0,3,["H2584"]],[3,5,["H5414"]],[5,6,["H259"]],[6,7,["H639"]],[7,8,["H4490"]],[8,9,["H3588"]],[9,11,["H157","(H853)"]],[11,12,["H2584"]],[12,15,["H3068"]],[15,18,["H5462"]],[18,20,["H7358"]]]},{"k":7218,"v":[[0,3,["H6869"]],[3,4,["H1571"]],[4,5,["H3707"]],[5,7,["H3708"]],[7,9,["H5668"]],[9,12,["H7481"]],[12,13,["H3588"]],[13,15,["H3068"]],[15,18,["H5462","H1157"]],[18,20,["H7358"]]]},{"k":7219,"v":[[0,4,["H6213"]],[4,5,["H3651"]],[5,6,["H8141"]],[6,8,["H8141"]],[8,9,["H4480","H1767"]],[9,12,["H5927"]],[12,15,["H4480","H1004"]],[15,18,["H3068"]],[18,19,["H3651"]],[19,21,["H3707"]],[21,25,["H1058"]],[25,28,["H3808"]],[28,29,["H398"]]]},{"k":7220,"v":[[0,2,["H559"]],[2,3,["H511"]],[3,5,["H376"]],[5,8,["H2584"]],[8,9,["H4100"]],[9,10,["H1058"]],[10,13,["H4100"]],[13,14,["H398"]],[14,16,["H3808"]],[16,18,["H4100"]],[18,21,["H3824"]],[21,22,["H7489"]],[22,24,["H3808"]],[24,25,["H595"]],[25,26,["H2896"]],[26,30,["H4480","H6235"]],[30,31,["H1121"]]]},{"k":7221,"v":[[0,2,["H2584"]],[2,4,["H6965"]],[4,5,["H310"]],[5,8,["H398"]],[8,10,["H7887"]],[10,12,["H310"]],[12,15,["H8354"]],[15,17,["H5941"]],[17,19,["H3548"]],[19,20,["H3427"]],[20,21,["H5921"]],[21,23,["H3678"]],[23,24,["H5921"]],[24,26,["H4201"]],[26,29,["H1964"]],[29,32,["H3068"]]]},{"k":7222,"v":[[0,2,["H1931"]],[2,5,["H4751"]],[5,7,["H5315"]],[7,9,["H6419"]],[9,10,["H5921"]],[10,12,["H3068"]],[12,15,["H1058","H1058"]]]},{"k":7223,"v":[[0,3,["H5087"]],[3,5,["H5088"]],[5,7,["H559"]],[7,9,["H3068"]],[9,11,["H6635"]],[11,12,["H518"]],[12,16,["H7200","H7200"]],[16,19,["H6040"]],[19,22,["H519"]],[22,24,["H2142"]],[24,27,["H3808"]],[27,28,["H7911","(H853)"]],[28,30,["H519"]],[30,33,["H5414"]],[33,36,["H519"]],[36,38,["H376"]],[38,39,["H2233"]],[39,43,["H5414"]],[43,47,["H3068"]],[47,48,["H3605"]],[48,50,["H3117"]],[50,53,["H2416"]],[53,57,["H3808"]],[57,58,["H4177"]],[58,59,["H5927"]],[59,60,["H5921"]],[60,62,["H7218"]]]},{"k":7224,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,8,["H7235"]],[8,9,["H6419"]],[9,10,["H6440"]],[10,12,["H3068"]],[12,14,["H5941"]],[14,15,["H8104","(H853)"]],[15,17,["H6310"]]]},{"k":7225,"v":[[0,2,["H2584"]],[2,3,["H1931"]],[3,4,["H1696"]],[4,5,["H5921"]],[5,7,["H3820"]],[7,8,["H7535"]],[8,10,["H8193"]],[10,11,["H5128"]],[11,14,["H6963"]],[14,16,["H3808"]],[16,17,["H8085"]],[17,19,["H5941"]],[19,20,["H2803"]],[20,24,["H7910"]]]},{"k":7226,"v":[[0,2,["H5941"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5704"]],[6,7,["H4970"]],[7,11,["H7937"]],[11,13,["H5493","(H853)"]],[13,15,["H3196"]],[15,16,["H4480","H5921"]],[16,17,[]]]},{"k":7227,"v":[[0,2,["H2584"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H3808"]],[6,8,["H113"]],[8,12,["H802"]],[12,15,["H7186"]],[15,16,["H7307"]],[16,17,["H595"]],[17,19,["H8354"]],[19,20,["H3808"]],[20,21,["H3196"]],[21,24,["H7941"]],[24,28,["H8210","(H853)"]],[28,30,["H5315"]],[30,31,["H6440"]],[31,33,["H3068"]]]},{"k":7228,"v":[[0,1,["H5414"]],[1,2,["H408","(H853)"]],[2,4,["H519"]],[4,5,["H6440"]],[5,9,["H1323","H1100"]],[9,10,["H3588"]],[10,14,["H4480","H7230"]],[14,17,["H7879"]],[17,19,["H3708"]],[19,22,["H1696"]],[22,23,["H5704","H6258"]]]},{"k":7229,"v":[[0,2,["H5941"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H1980"]],[6,8,["H7965"]],[8,11,["H430"]],[11,13,["H3478"]],[13,14,["H5414"]],[14,15,["(H853)"]],[15,17,["H7596"]],[17,18,["H834"]],[18,21,["H7592"]],[21,22,["H4480","H5973"]],[22,23,[]]]},{"k":7230,"v":[[0,3,["H559"]],[3,6,["H8198"]],[6,7,["H4672"]],[7,8,["H2580"]],[8,11,["H5869"]],[11,14,["H802"]],[14,15,["H1980"]],[15,17,["H1870"]],[17,20,["H398"]],[20,23,["H6440"]],[23,24,["H1961"]],[24,25,["H3808"]],[25,26,["H5750"]],[26,27,[]]]},{"k":7231,"v":[[0,8,["H7925","H1242"]],[8,10,["H7812"]],[10,11,["H6440"]],[11,13,["H3068"]],[13,15,["H7725"]],[15,17,["H935"]],[17,18,["H413"]],[18,20,["H1004"]],[20,22,["H7414"]],[22,24,["H511"]],[24,25,["H3045","(H853)"]],[25,26,["H2584"]],[26,28,["H802"]],[28,31,["H3068"]],[31,32,["H2142"]],[32,33,[]]]},{"k":7232,"v":[[0,5,["H1961"]],[5,8,["H3117"]],[8,10,["H8622"]],[10,13,["H2584"]],[13,15,["H2029"]],[15,18,["H3205"]],[18,20,["H1121"]],[20,22,["H7121","(H853)"]],[22,24,["H8034"]],[24,25,["H8050"]],[25,27,["H3588"]],[27,30,["H7592"]],[30,34,["H4480","H3068"]]]},{"k":7233,"v":[[0,3,["H376"]],[3,4,["H511"]],[4,6,["H3605"]],[6,8,["H1004"]],[8,10,["H5927"]],[10,12,["H2076"]],[12,15,["H3068","(H853)"]],[15,17,["H3117"]],[17,18,["H2077"]],[18,21,["H5088"]]]},{"k":7234,"v":[[0,2,["H2584"]],[2,5,["H5927","H3808"]],[5,6,["H3588"]],[6,8,["H559"]],[8,11,["H376"]],[11,17,["H5704"]],[17,19,["H5288"]],[19,21,["H1580"]],[21,26,["H935"]],[26,31,["H7200","(H853)"]],[31,32,["H6440"]],[32,34,["H3068"]],[34,36,["H8033"]],[36,37,["H3427"]],[37,39,["H5704","H5769"]]]},{"k":7235,"v":[[0,2,["H511"]],[2,4,["H376"]],[4,5,["H559"]],[5,8,["H6213"]],[8,10,["H5869"]],[10,12,["H2896"]],[12,13,["H3427"]],[13,14,["H5704"]],[14,17,["H1580"]],[17,19,["H389"]],[19,21,["H3068"]],[21,22,["H6965","(H853)"]],[22,24,["H1697"]],[24,27,["H802"]],[27,28,["H3427"]],[28,33,["H3243","(H853)","H1121"]],[33,34,["H5704"]],[34,36,["H1580"]],[36,37,[]]]},{"k":7236,"v":[[0,2,["H834"]],[2,5,["H1580"]],[5,10,["H5927"]],[10,11,["H5973"]],[11,14,["H7969"]],[14,15,["H6499"]],[15,17,["H259"]],[17,18,["H374"]],[18,20,["H7058"]],[20,23,["H5035"]],[23,25,["H3196"]],[25,27,["H935"]],[27,31,["H1004"]],[31,34,["H3068"]],[34,36,["H7887"]],[36,39,["H5288"]],[39,41,["H5288"]]]},{"k":7237,"v":[[0,3,["H7819","(H853)"]],[3,5,["H6499"]],[5,7,["H935","(H853)"]],[7,9,["H5288"]],[9,10,["H413"]],[10,11,["H5941"]]]},{"k":7238,"v":[[0,3,["H559"]],[3,4,["H994"]],[4,6,["H113"]],[6,9,["H5315"]],[9,10,["H2416"]],[10,12,["H113"]],[12,13,["H589"]],[13,16,["H802"]],[16,18,["H5324"]],[18,19,["H5973"]],[19,21,["H2088"]],[21,22,["H6419"]],[22,23,["H413"]],[23,25,["H3068"]]]},{"k":7239,"v":[[0,1,["H413"]],[1,2,["H2088"]],[2,3,["H5288"]],[3,5,["H6419"]],[5,8,["H3068"]],[8,10,["H5414"]],[10,11,["(H853)"]],[11,13,["H7596"]],[13,14,["H834"]],[14,16,["H7592"]],[16,17,["H4480","H5973"]],[17,18,[]]]},{"k":7240,"v":[[0,2,["H1571"]],[2,3,["H595"]],[3,5,["H7592"]],[5,9,["H3068"]],[9,11,["H3605"]],[11,12,["H834"]],[12,14,["H3117"]],[14,15,["H1931"]],[15,17,["H1961"]],[17,18,["H7592"]],[18,21,["H3068"]],[21,24,["H7812"]],[24,26,["H3068"]],[26,27,["H8033"]]]},{"k":7241,"v":[[0,2,["H2584"]],[2,3,["H6419"]],[3,5,["H559"]],[5,7,["H3820"]],[7,8,["H5970"]],[8,11,["H3068"]],[11,13,["H7161"]],[13,15,["H7311"]],[15,18,["H3068"]],[18,20,["H6310"]],[20,22,["H7337"]],[22,23,["H5921"]],[23,25,["H341"]],[25,26,["H3588"]],[26,28,["H8055"]],[28,31,["H3444"]]]},{"k":7242,"v":[[0,3,["H369"]],[3,4,["H6918"]],[4,7,["H3068"]],[7,8,["H3588"]],[8,11,["H369"]],[11,12,["H1115"]],[12,14,["H369"]],[14,18,["H6697"]],[18,21,["H430"]]]},{"k":7243,"v":[[0,1,["H1696"]],[1,2,["H408"]],[2,3,["H7235"]],[3,6,["H1364","H1364"]],[6,9,["H6277"]],[9,11,["H3318"]],[11,14,["H4480","H6310"]],[14,15,["H3588"]],[15,17,["H3068"]],[17,20,["H410"]],[20,22,["H1844"]],[22,26,["H5949"]],[26,28,["H8505"]]]},{"k":7244,"v":[[0,2,["H7198"]],[2,6,["H1368"]],[6,8,["H2844"]],[8,12,["H3782"]],[12,14,["H247"]],[14,16,["H2428"]]]},{"k":7245,"v":[[0,4,["H7649"]],[4,8,["H7936"]],[8,10,["H3899"]],[10,15,["H7457"]],[15,16,["H2308"]],[16,18,["H5704"]],[18,20,["H6135"]],[20,22,["H3205"]],[22,23,["H7651"]],[23,28,["H7227"]],[28,29,["H1121"]],[29,32,["H535"]]]},{"k":7246,"v":[[0,2,["H3068"]],[2,3,["H4191"]],[3,6,["H2421"]],[6,9,["H3381"]],[9,12,["H7585"]],[12,15,["H5927"]]]},{"k":7247,"v":[[0,2,["H3068"]],[2,4,["H3423"]],[4,7,["H6238"]],[7,10,["H8213"]],[10,11,["H637"]],[11,13,["H7311"]]]},{"k":7248,"v":[[0,3,["H6965"]],[3,5,["H1800"]],[5,9,["H4480","H6083"]],[9,12,["H7311"]],[12,14,["H34"]],[14,17,["H4480","H830"]],[17,19,["H3427"]],[19,21,["H5973"]],[21,22,["H5081"]],[22,27,["H5157"]],[27,29,["H3678"]],[29,31,["H3519"]],[31,32,["H3588"]],[32,34,["H4690"]],[34,37,["H776"]],[37,40,["H3068"]],[40,44,["H7896"]],[44,46,["H8398"]],[46,47,["H5921"]],[47,48,[]]]},{"k":7249,"v":[[0,3,["H8104"]],[3,5,["H7272"]],[5,8,["H2623"]],[8,11,["H7563"]],[11,14,["H1826"]],[14,16,["H2822"]],[16,17,["H3588"]],[17,19,["H3581"]],[19,21,["H3808"]],[21,22,["H376"]],[22,23,["H1396"]]]},{"k":7250,"v":[[0,2,["H7378"]],[2,5,["H3068"]],[5,10,["H2865"]],[10,13,["H8064"]],[13,16,["H7481"]],[16,17,["H5921"]],[17,20,["H3068"]],[20,22,["H1777"]],[22,24,["H657"]],[24,27,["H776"]],[27,31,["H5414"]],[31,32,["H5797"]],[32,35,["H4428"]],[35,37,["H7311"]],[37,39,["H7161"]],[39,42,["H4899"]]]},{"k":7251,"v":[[0,2,["H511"]],[2,3,["H1980"]],[3,5,["H7414"]],[5,6,["H5921"]],[6,8,["H1004"]],[8,11,["H5288"]],[11,12,["H1961"]],[12,13,["H8334"]],[13,14,["(H853)"]],[14,16,["H3068","(H853)"]],[16,17,["H6440"]],[17,18,["H5941"]],[18,20,["H3548"]]]},{"k":7252,"v":[[0,3,["H1121"]],[3,5,["H5941"]],[5,7,["H1121"]],[7,9,["H1100"]],[9,11,["H3045"]],[11,12,["H3808","(H853)"]],[12,14,["H3068"]]]},{"k":7253,"v":[[0,3,["H3548"]],[3,4,["H4941"]],[4,5,["H854"]],[5,7,["H5971"]],[7,11,["H3605"]],[11,12,["H376"]],[12,13,["H2076"]],[13,14,["H2077"]],[14,16,["H3548"]],[16,17,["H5288"]],[17,18,["H935"]],[18,21,["H1320"]],[21,24,["H1310"]],[24,27,["H4207"]],[27,29,["H7969"]],[29,30,["H8127"]],[30,33,["H3027"]]]},{"k":7254,"v":[[0,3,["H5221"]],[3,7,["H3595"]],[7,8,["H176"]],[8,9,["H1731"]],[9,10,["H176"]],[10,11,["H7037"]],[11,12,["H176"]],[12,13,["H6517"]],[13,14,["H3605"]],[14,15,["H834"]],[15,17,["H4207"]],[17,19,["H5927"]],[19,21,["H3548"]],[21,22,["H3947"]],[22,25,["H3602"]],[25,27,["H6213"]],[27,29,["H7887"]],[29,31,["H3605"]],[31,33,["H3478"]],[33,35,["H935"]],[35,36,["H8033"]]]},{"k":7255,"v":[[0,1,["H1571"]],[1,2,["H2962"]],[2,4,["H6999","(H853)"]],[4,6,["H2459"]],[6,8,["H3548"]],[8,9,["H5288"]],[9,10,["H935"]],[10,12,["H559"]],[12,15,["H376"]],[15,17,["H2076"]],[17,18,["H5414"]],[18,19,["H1320"]],[19,21,["H6740"]],[21,24,["H3548"]],[24,28,["H3808"]],[28,29,["H3947"]],[29,31,["H1320","H1310"]],[31,32,["H4480"]],[32,34,["H3588","H518"]],[34,35,["H2416"]]]},{"k":7256,"v":[[0,4,["H376"]],[4,5,["H559"]],[5,6,["H413"]],[6,13,["H6999","H6999"]],[13,15,["H2459"]],[15,16,["H3117"]],[16,19,["H3947"]],[19,22,["H834"]],[22,24,["H5315"]],[24,25,["H183"]],[25,29,["H559"]],[29,32,["H3588"]],[32,35,["H5414"]],[35,38,["H6258"]],[38,40,["H518"]],[40,41,["H3808"]],[41,44,["H3947"]],[44,47,["H2394"]]]},{"k":7257,"v":[[0,3,["H2403"]],[3,7,["H5288"]],[7,8,["H1961"]],[8,9,["H3966"]],[9,10,["H1419","(H853)"]],[10,11,["H6440"]],[11,13,["H3068"]],[13,14,["H3588"]],[14,15,["H376"]],[15,16,["H5006","(H853)"]],[16,18,["H4503"]],[18,21,["H3068"]]]},{"k":7258,"v":[[0,2,["H8050"]],[2,3,["H8334","(H853)"]],[3,4,["H6440"]],[4,6,["H3068"]],[6,9,["H5288"]],[9,10,["H2296"]],[10,13,["H906"]],[13,14,["H646"]]]},{"k":7259,"v":[[0,3,["H517"]],[3,4,["H6213"]],[4,7,["H6996"]],[7,8,["H4598"]],[8,10,["H5927"]],[10,17,["H4480","H3117","H3117"]],[17,21,["H5927"]],[21,22,["H854"]],[22,24,["H376"]],[24,26,["H2076","(H853)"]],[26,28,["H3117"]],[28,29,["H2077"]]]},{"k":7260,"v":[[0,2,["H5941"]],[2,3,["H1288","(H853)"]],[3,4,["H511"]],[4,7,["H802"]],[7,9,["H559"]],[9,11,["H3068"]],[11,12,["H7760"]],[12,14,["H2233"]],[14,15,["H4480"]],[15,16,["H2063"]],[16,17,["H802"]],[17,18,["H8478"]],[18,20,["H7596"]],[20,21,["H834"]],[21,23,["H7592"]],[23,26,["H3068"]],[26,29,["H1980"]],[29,33,["H4725"]]]},{"k":7261,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,4,["H6485","(H853)"]],[4,5,["H2584"]],[5,9,["H2029"]],[9,11,["H3205"]],[11,12,["H7969"]],[12,13,["H1121"]],[13,15,["H8147"]],[15,16,["H1323"]],[16,19,["H5288"]],[19,20,["H8050"]],[20,21,["H1431"]],[21,22,["H5973"]],[22,24,["H3068"]]]},{"k":7262,"v":[[0,2,["H5941"]],[2,4,["H3966"]],[4,5,["H2204"]],[5,7,["H8085","(H853)"]],[7,8,["H3605"]],[8,9,["H834"]],[9,11,["H1121"]],[11,12,["H6213"]],[12,14,["H3605"]],[14,15,["H3478"]],[15,17,["H834"]],[17,19,["H7901"]],[19,20,["H854"]],[20,22,["H802"]],[22,24,["H6633"]],[24,27,["H6607"]],[27,30,["H168"]],[30,33,["H4150"]]]},{"k":7263,"v":[[0,3,["H559"]],[3,6,["H4100"]],[6,7,["H6213"]],[7,9,["H428"]],[9,10,["H1697"]],[10,11,["H834"]],[11,12,["H595"]],[12,13,["H8085"]],[13,14,["(H853)"]],[14,16,["H7451"]],[16,17,["H1697"]],[17,18,["H4480","H854"]],[18,19,["H3605"]],[19,20,["H428"]],[20,21,["H5971"]]]},{"k":7264,"v":[[0,1,["H408"]],[1,3,["H1121"]],[3,4,["H3588"]],[4,7,["H3808"]],[7,8,["H2896"]],[8,9,["H8052"]],[9,10,["H834"]],[10,11,["H595"]],[11,12,["H8085"]],[12,16,["H3068"]],[16,17,["H5971"]],[17,19,["H5674"]]]},{"k":7265,"v":[[0,1,["H518"]],[1,3,["H376"]],[3,4,["H2398"]],[4,6,["H376"]],[6,8,["H430"]],[8,10,["H6419"]],[10,13,["H518"]],[13,15,["H376"]],[15,16,["H2398"]],[16,19,["H3068"]],[19,20,["H4310"]],[20,22,["H6419"]],[22,25,["H3808"]],[25,27,["H8085"]],[27,31,["H6963"]],[31,34,["H1"]],[34,35,["H3588"]],[35,37,["H3068"]],[37,38,["H2654"]],[38,39,["H4191"]],[39,40,[]]]},{"k":7266,"v":[[0,3,["H5288"]],[3,4,["H8050"]],[4,5,["H1980"]],[5,6,["H1432"]],[6,10,["H2896"]],[10,11,["H1571"]],[11,12,["H5973"]],[12,14,["H3068"]],[14,16,["H1571"]],[16,17,["H5973"]],[17,18,["H376"]]]},{"k":7267,"v":[[0,3,["H935"]],[3,5,["H376"]],[5,7,["H430"]],[7,8,["H413"]],[8,9,["H5941"]],[9,11,["H559"]],[11,12,["H413"]],[12,14,["H3541"]],[14,15,["H559"]],[15,17,["H3068"]],[17,21,["H1540","H1540"]],[21,22,["H413"]],[22,24,["H1004"]],[24,27,["H1"]],[27,30,["H1961"]],[30,32,["H4714"]],[32,34,["H6547"]],[34,35,["H1004"]]]},{"k":7268,"v":[[0,4,["H977"]],[4,8,["H4480","H3605"]],[8,10,["H7626"]],[10,12,["H3478"]],[12,16,["H3548"]],[16,18,["H5927"]],[18,19,["H5921"]],[19,21,["H4196"]],[21,23,["H6999"]],[23,24,["H7004"]],[24,26,["H5375"]],[26,28,["H646"]],[28,29,["H6440"]],[29,34,["H5414"]],[34,37,["H1004"]],[37,40,["H1","(H853)"]],[40,41,["H3605"]],[41,46,["H801"]],[46,49,["H1121"]],[49,51,["H3478"]]]},{"k":7269,"v":[[0,1,["H4100"]],[1,2,["H1163"]],[2,6,["H2077"]],[6,10,["H4503"]],[10,11,["H834"]],[11,14,["H6680"]],[14,17,["H4583"]],[17,19,["H3513","(H853)"]],[19,21,["H1121"]],[21,22,["H4480"]],[22,27,["H1254"]],[27,30,["H4480","H7225"]],[30,32,["H3605"]],[32,34,["H4503"]],[34,36,["H3478"]],[36,38,["H5971"]]]},{"k":7270,"v":[[0,1,["H3651"]],[1,3,["H3068"]],[3,4,["H430"]],[4,6,["H3478"]],[6,7,["H5002"]],[7,9,["H559"]],[9,10,["H559"]],[10,13,["H1004"]],[13,16,["H1004"]],[16,19,["H1"]],[19,21,["H1980"]],[21,22,["H6440"]],[22,25,["H5704","H5769"]],[25,27,["H6258"]],[27,29,["H3068"]],[29,30,["H5002"]],[30,33,["H2486"]],[33,36,["H3588"]],[36,39,["H3513"]],[39,43,["H3513"]],[43,47,["H959"]],[47,52,["H7043"]]]},{"k":7271,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,9,["H1438","(H853)"]],[9,11,["H2220"]],[11,14,["H2220"]],[14,17,["H1"]],[17,18,["H1004"]],[18,23,["H4480","H1961"]],[23,26,["H2205"]],[26,29,["H1004"]]]},{"k":7272,"v":[[0,4,["H5027"]],[4,6,["H6862"]],[6,9,["H4583"]],[9,11,["H3605"]],[11,14,["H834"]],[14,17,["H3190","(H853)"]],[17,18,["H3478"]],[18,22,["H3808"]],[22,23,["H1961"]],[23,26,["H2205"]],[26,29,["H1004"]],[29,31,["H3605","H3117"]]]},{"k":7273,"v":[[0,3,["H376"]],[3,9,["H3808"]],[9,11,["H3772"]],[11,12,["H4480","H5973"]],[12,14,["H4196"]],[14,18,["H3615","(H853)"]],[18,20,["H5869"]],[20,23,["H109","(H853)"]],[23,25,["H5315"]],[25,27,["H3605"]],[27,29,["H4768"]],[29,32,["H1004"]],[32,34,["H4191"]],[34,40,["H376"]]]},{"k":7274,"v":[[0,2,["H2088"]],[2,6,["H226"]],[6,9,["H834"]],[9,11,["H935"]],[11,12,["H413"]],[12,14,["H8147"]],[14,15,["H1121"]],[15,16,["H413"]],[16,17,["H2652"]],[17,19,["H6372"]],[19,21,["H259"]],[21,22,["H3117"]],[22,25,["H4191"]],[25,26,["H8147"]],[26,28,[]]]},{"k":7275,"v":[[0,6,["H6965"]],[6,8,["H539"]],[8,9,["H3548"]],[9,12,["H6213"]],[12,16,["H834"]],[16,20,["H3824"]],[20,24,["H5315"]],[24,28,["H1129"]],[28,31,["H539"]],[31,32,["H1004"]],[32,36,["H1980"]],[36,37,["H6440"]],[37,39,["H4899"]],[39,41,["H3605","H3117"]]]},{"k":7276,"v":[[0,6,["H1961"]],[6,9,["H3605"]],[9,12,["H3498"]],[12,15,["H1004"]],[15,17,["H935"]],[17,19,["H7812"]],[19,24,["H95"]],[24,26,["H3701"]],[26,29,["H3603"]],[29,31,["H3899"]],[31,34,["H559"]],[34,35,["H5596"]],[35,39,["H4994"]],[39,40,["H413"]],[40,41,["H259"]],[41,45,["H3550"]],[45,49,["H398"]],[49,51,["H6595"]],[51,53,["H3899"]]]},{"k":7277,"v":[[0,3,["H5288"]],[3,4,["H8050"]],[4,5,["H8334"]],[5,6,["(H853)"]],[6,8,["H3068"]],[8,9,["H6440"]],[9,10,["H5941"]],[10,13,["H1697"]],[13,16,["H3068"]],[16,17,["H1961"]],[17,18,["H3368"]],[18,20,["H1992"]],[20,21,["H3117"]],[21,24,["H369"]],[24,25,["H6555"]],[25,26,["H2377"]]]},{"k":7278,"v":[[0,5,["H1961"]],[5,8,["H3117"]],[8,9,["H1931"]],[9,10,["H5941"]],[10,13,["H7901"]],[13,16,["H4725"]],[16,19,["H5869"]],[19,20,["H2490"]],[20,23,["H3544"]],[23,26,["H3201"]],[26,27,["H3808"]],[27,28,["H7200"]]]},{"k":7279,"v":[[0,2,["H2962"]],[2,4,["H5216"]],[4,6,["H430"]],[6,8,["H3518"]],[8,11,["H1964"]],[11,14,["H3068"]],[14,15,["H834","H8033"]],[15,17,["H727"]],[17,19,["H430"]],[19,22,["H8050"]],[22,25,["H7901"]],[25,27,[]]]},{"k":7280,"v":[[0,3,["H3068"]],[3,4,["H7121","H413"]],[4,5,["H8050"]],[5,8,["H559"]],[8,9,["H2009"]],[9,11,[]]]},{"k":7281,"v":[[0,3,["H7323"]],[3,4,["H413"]],[4,5,["H5941"]],[5,7,["H559"]],[7,8,["H2009"]],[8,11,["H3588"]],[11,13,["H7121"]],[13,17,["H559"]],[17,19,["H7121"]],[19,20,["H3808"]],[20,22,["H7901"]],[22,23,["H7725"]],[23,26,["H1980"]],[26,29,["H7901"]]]},{"k":7282,"v":[[0,3,["H3068"]],[3,4,["H7121"]],[4,5,["H5750"]],[5,6,["H3254"]],[6,7,["H8050"]],[7,9,["H8050"]],[9,10,["H6965"]],[10,12,["H1980"]],[12,13,["H413"]],[13,14,["H5941"]],[14,16,["H559"]],[16,17,["H2009"]],[17,20,["H3588"]],[20,23,["H7121"]],[23,27,["H559"]],[27,29,["H7121"]],[29,30,["H3808"]],[30,32,["H1121"]],[32,34,["H7901"]],[34,35,["H7725"]]]},{"k":7283,"v":[[0,2,["H8050"]],[2,5,["H2962"]],[5,6,["H3045","(H853)"]],[6,8,["H3068"]],[8,12,["H1697"]],[12,15,["H3068"]],[15,16,["H2962"]],[16,17,["H1540"]],[17,18,["H413"]],[18,19,[]]]},{"k":7284,"v":[[0,3,["H3068"]],[3,4,["H7121"]],[4,5,["H8050"]],[5,6,["H3254"]],[6,8,["H7992"]],[8,12,["H6965"]],[12,14,["H1980"]],[14,15,["H413"]],[15,16,["H5941"]],[16,18,["H559"]],[18,19,["H2009"]],[19,22,["H3588"]],[22,25,["H7121"]],[25,28,["H5941"]],[28,29,["H995"]],[29,30,["H3588"]],[30,32,["H3068"]],[32,34,["H7121"]],[34,36,["H5288"]]]},{"k":7285,"v":[[0,2,["H5941"]],[2,3,["H559"]],[3,5,["H8050"]],[5,6,["H1980"]],[6,8,["H7901"]],[8,12,["H1961"]],[12,13,["H518"]],[13,15,["H7121","H413"]],[15,20,["H559"]],[20,21,["H1696"]],[21,22,["H3068"]],[22,23,["H3588"]],[23,25,["H5650"]],[25,26,["H8085"]],[26,28,["H8050"]],[28,29,["H1980"]],[29,32,["H7901"]],[32,35,["H4725"]]]},{"k":7286,"v":[[0,3,["H3068"]],[3,4,["H935"]],[4,6,["H3320"]],[6,8,["H7121"]],[8,12,["H6471","H6471"]],[12,13,["H8050"]],[13,14,["H8050"]],[14,16,["H8050"]],[16,17,["H559"]],[17,18,["H1696"]],[18,19,["H3588"]],[19,21,["H5650"]],[21,22,["H8085"]]]},{"k":7287,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H8050"]],[6,7,["H2009"]],[7,8,["H595"]],[8,10,["H6213"]],[10,12,["H1697"]],[12,14,["H3478"]],[14,16,["H834"]],[16,17,["H8147"]],[17,19,["H241"]],[19,22,["H3605"]],[22,24,["H8085"]],[24,27,["H6750"]]]},{"k":7288,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H6965"]],[6,7,["H413"]],[7,8,["H5941","(H853)"]],[8,9,["H3605"]],[9,11,["H834"]],[11,14,["H1696"]],[14,15,["H413"]],[15,17,["H1004"]],[17,20,["H2490"]],[20,26,["H3615"]]]},{"k":7289,"v":[[0,4,["H5046"]],[4,6,["H3588"]],[6,7,["H589"]],[7,9,["H8199","(H853)"]],[9,11,["H1004"]],[11,13,["H5704","H5769"]],[13,16,["H5771"]],[16,17,["H834"]],[17,19,["H3045"]],[19,20,["H3588"]],[20,22,["H1121"]],[22,25,["H7043"]],[25,28,["H3543"]],[28,30,["H3808"]]]},{"k":7290,"v":[[0,2,["H3651"]],[2,5,["H7650"]],[5,8,["H1004"]],[8,10,["H5941"]],[10,13,["H5771"]],[13,15,["H5941"]],[15,16,["H1004"]],[16,18,["H518"]],[18,20,["H3722"]],[20,22,["H2077"]],[22,24,["H4503"]],[24,26,["H5704","H5769"]]]},{"k":7291,"v":[[0,2,["H8050"]],[2,3,["H7901"]],[3,4,["H5704"]],[4,6,["H1242"]],[6,8,["H6605","(H853)"]],[8,10,["H1817"]],[10,13,["H1004"]],[13,16,["H3068"]],[16,18,["H8050"]],[18,19,["H3372"]],[19,21,["H4480","H5046","H413"]],[21,22,["H5941","(H853)"]],[22,24,["H4759"]]]},{"k":7292,"v":[[0,2,["H5941"]],[2,3,["H7121","(H853)"]],[3,4,["H8050"]],[4,6,["H559"]],[6,7,["H8050"]],[7,9,["H1121"]],[9,12,["H559"]],[12,13,["H2009"]],[13,15,[]]]},{"k":7293,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,7,["H1697"]],[7,8,["H834"]],[8,12,["H1696"]],[12,13,["H413"]],[13,17,["H4994"]],[17,18,["H3582"]],[18,20,["H408"]],[20,21,["H4480"]],[21,23,["H430"]],[23,24,["H6213"]],[24,25,["H3541"]],[25,29,["H3254"]],[29,30,["H3541"]],[30,31,["H518"]],[31,33,["H3582"]],[33,35,["H1697"]],[35,36,["H4480"]],[36,39,["H4480","H3605"]],[39,41,["H1697"]],[41,42,["H834"]],[42,44,["H1696"]],[44,45,["H413"]],[45,46,[]]]},{"k":7294,"v":[[0,2,["H8050"]],[2,3,["H5046"]],[3,4,["(H853)"]],[4,5,["H3605"]],[5,6,["H1697"]],[6,8,["H3582"]],[8,9,["H3808"]],[9,10,["H4480"]],[10,14,["H559"]],[14,15,["H1931"]],[15,18,["H3068"]],[18,21,["H6213"]],[21,23,["H5869"]],[23,25,["H2896"]]]},{"k":7295,"v":[[0,2,["H8050"]],[2,3,["H1431"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H5973"]],[8,13,["H3808","H4480","H3605"]],[13,16,["H1697"]],[16,17,["H5307"]],[17,20,["H776"]]]},{"k":7296,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,5,["H4480","H1835"]],[5,7,["H5704"]],[7,8,["H884"]],[8,9,["H3045"]],[9,10,["H3588"]],[10,11,["H8050"]],[11,13,["H539"]],[13,17,["H5030"]],[17,20,["H3068"]]]},{"k":7297,"v":[[0,3,["H3068"]],[3,4,["H7200"]],[4,5,["H3254"]],[5,7,["H7887"]],[7,8,["H3588"]],[8,10,["H3068"]],[10,12,["H1540"]],[12,13,["H413"]],[13,14,["H8050"]],[14,16,["H7887"]],[16,19,["H1697"]],[19,22,["H3068"]]]},{"k":7298,"v":[[0,3,["H1697"]],[3,5,["H8050"]],[5,6,["H1961"]],[6,8,["H3605"]],[8,9,["H3478"]],[9,11,["H3478"]],[11,13,["H3318"]],[13,14,["H7125"]],[14,16,["H6430"]],[16,18,["H4421"]],[18,20,["H2583"]],[20,21,["H5921"]],[21,22,["H72"]],[22,25,["H6430"]],[25,26,["H2583"]],[26,28,["H663"]]]},{"k":7299,"v":[[0,3,["H6430"]],[3,7,["H6186"]],[7,8,["H7125"]],[8,9,["H3478"]],[9,13,["H5203"]],[13,14,["H4421"]],[14,15,["H3478"]],[15,17,["H5062"]],[17,18,["H6440"]],[18,20,["H6430"]],[20,23,["H5221"]],[23,26,["H4634"]],[26,29,["H7704"]],[29,31,["H702"]],[31,32,["H505"]],[32,33,["H376"]]]},{"k":7300,"v":[[0,4,["H5971"]],[4,6,["H935"]],[6,7,["H413"]],[7,9,["H4264"]],[9,11,["H2205"]],[11,13,["H3478"]],[13,14,["H559"]],[14,15,["H4100"]],[15,18,["H3068"]],[18,19,["H5062"]],[19,22,["H3117"]],[22,23,["H6440"]],[23,25,["H6430"]],[25,28,["H3947","(H853)"]],[28,30,["H727"]],[30,33,["H1285"]],[33,36,["H3068"]],[36,39,["H4480","H7887"]],[39,40,["H413"]],[40,45,["H935"]],[45,46,["H7130"]],[46,50,["H3467"]],[50,55,["H4480","H3709"]],[55,58,["H341"]]]},{"k":7301,"v":[[0,3,["H5971"]],[3,4,["H7971"]],[4,6,["H7887"]],[6,10,["H5375"]],[10,12,["H4480","H8033","(H853)"]],[12,14,["H727"]],[14,17,["H1285"]],[17,20,["H3068"]],[20,22,["H6635"]],[22,24,["H3427"]],[24,27,["H3742"]],[27,30,["H8147"]],[30,31,["H1121"]],[31,33,["H5941"]],[33,34,["H2652"]],[34,36,["H6372"]],[36,38,["H8033"]],[38,39,["H5973"]],[39,41,["H727"]],[41,44,["H1285"]],[44,46,["H430"]]]},{"k":7302,"v":[[0,4,["H727"]],[4,7,["H1285"]],[7,10,["H3068"]],[10,11,["H935"]],[11,12,["H413"]],[12,14,["H4264"]],[14,15,["H3605"]],[15,16,["H3478"]],[16,17,["H7321"]],[17,20,["H1419"]],[20,21,["H8643"]],[21,25,["H776"]],[25,26,["H1949"]],[26,27,[]]]},{"k":7303,"v":[[0,4,["H6430"]],[4,5,["H8085","(H853)"]],[5,7,["H6963"]],[7,10,["H8643"]],[10,12,["H559"]],[12,13,["H4100"]],[13,16,["H6963"]],[16,18,["H2063"]],[18,19,["H1419"]],[19,20,["H8643"]],[20,23,["H4264"]],[23,26,["H5680"]],[26,29,["H3045"]],[29,30,["H3588"]],[30,32,["H727"]],[32,35,["H3068"]],[35,37,["H935"]],[37,38,["H413"]],[38,40,["H4264"]]]},{"k":7304,"v":[[0,3,["H6430"]],[3,5,["H3372"]],[5,6,["H3588"]],[6,8,["H559"]],[8,9,["H430"]],[9,11,["H935"]],[11,12,["H413"]],[12,14,["H4264"]],[14,17,["H559"]],[17,18,["H188"]],[18,21,["H3588"]],[21,24,["H3808"]],[24,25,["H1961"]],[25,28,["H2063"]],[28,29,["H865","H8032"]]]},{"k":7305,"v":[[0,1,["H188"]],[1,4,["H4310"]],[4,6,["H5337"]],[6,11,["H4480","H3027"]],[11,13,["H428"]],[13,14,["H117"]],[14,15,["H430"]],[15,16,["H428"]],[16,19,["H430"]],[19,21,["H5221","(H853)"]],[21,23,["H4714"]],[23,25,["H3605"]],[25,27,["H4347"]],[27,30,["H4057"]]]},{"k":7306,"v":[[0,2,["H2388"]],[2,4,["H1961"]],[4,7,["H376"]],[7,10,["H6430"]],[10,15,["H3645","H5647"]],[15,18,["H5680"]],[18,19,["H834"]],[19,22,["H5647"]],[22,25,["H1961"]],[25,28,["H376"]],[28,30,["H3898"]]]},{"k":7307,"v":[[0,3,["H6430"]],[3,4,["H3898"]],[4,6,["H3478"]],[6,8,["H5062"]],[8,11,["H5127"]],[11,13,["H376"]],[13,16,["H168"]],[16,19,["H1961"]],[19,21,["H3966"]],[21,22,["H1419"]],[22,23,["H4347"]],[23,26,["H5307"]],[26,28,["H4480","H3478"]],[28,29,["H7970"]],[29,30,["H505"]],[30,31,["H7273"]]]},{"k":7308,"v":[[0,3,["H727"]],[3,5,["H430"]],[5,7,["H3947"]],[7,10,["H8147"]],[10,11,["H1121"]],[11,13,["H5941"]],[13,14,["H2652"]],[14,16,["H6372"]],[16,18,["H4191"]]]},{"k":7309,"v":[[0,3,["H7323"]],[3,5,["H376"]],[5,7,["H1144"]],[7,11,["H4480","H4634"]],[11,13,["H935"]],[13,15,["H7887"]],[15,17,["H1931"]],[17,18,["H3117"]],[18,21,["H4055"]],[21,22,["H7167"]],[22,25,["H127"]],[25,26,["H5921"]],[26,28,["H7218"]]]},{"k":7310,"v":[[0,4,["H935"]],[4,5,["H2009"]],[5,6,["H5941"]],[6,7,["H3427"]],[7,8,["H5921"]],[8,10,["H3678"]],[10,13,["H3197","H1870"]],[13,14,["H6822"]],[14,15,["H3588"]],[15,17,["H3820"]],[17,18,["H2730"]],[18,19,["H5921"]],[19,21,["H727"]],[21,23,["H430"]],[23,27,["H376"]],[27,28,["H935"]],[28,31,["H5892"]],[31,33,["H5046"]],[33,35,["H3605"]],[35,37,["H5892"]],[37,39,["H2199"]]]},{"k":7311,"v":[[0,3,["H5941"]],[3,4,["H8085","(H853)"]],[4,6,["H6963"]],[6,9,["H6818"]],[9,11,["H559"]],[11,12,["H4100"]],[12,15,["H6963"]],[15,17,["H2088"]],[17,18,["H1995"]],[18,21,["H376"]],[21,22,["H935"]],[22,24,["H4116"]],[24,26,["H5046"]],[26,27,["H5941"]]]},{"k":7312,"v":[[0,2,["H5941"]],[2,4,["H8375"]],[4,6,["H8083"]],[6,7,["H8141"]],[7,8,["H1121"]],[8,11,["H5869"]],[11,13,["H6965"]],[13,16,["H3201"]],[16,17,["H3808"]],[17,18,["H7200"]]]},{"k":7313,"v":[[0,3,["H376"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H5941"]],[6,7,["H595"]],[7,11,["H935"]],[11,13,["H4480"]],[13,15,["H4634"]],[15,17,["H589"]],[17,18,["H5127"]],[18,20,["H3117"]],[20,22,["H4480"]],[22,24,["H4634"]],[24,27,["H559"]],[27,28,["H4100"]],[28,29,["H1961"]],[29,31,["H1697"]],[31,33,["H1121"]]]},{"k":7314,"v":[[0,3,["H1319"]],[3,4,["H6030"]],[4,6,["H559"]],[6,7,["H3478"]],[7,9,["H5127"]],[9,10,["H6440"]],[10,12,["H6430"]],[12,16,["H1961"]],[16,17,["H1571"]],[17,19,["H1419"]],[19,20,["H4046"]],[20,23,["H5971"]],[23,26,["H8147"]],[26,27,["H1121"]],[27,28,["H1571"]],[28,29,["H2652"]],[29,31,["H6372"]],[31,33,["H4191"]],[33,36,["H727"]],[36,38,["H430"]],[38,40,["H3947"]]]},{"k":7315,"v":[[0,5,["H1961"]],[5,9,["H2142"]],[9,10,["(H853)"]],[10,12,["H727"]],[12,14,["H430"]],[14,17,["H5307"]],[17,19,["H4480","H5921"]],[19,21,["H3678"]],[21,22,["H322"]],[22,23,["H1157"]],[23,25,["H3027"]],[25,28,["H8179"]],[28,31,["H4665"]],[31,32,["H7665"]],[32,35,["H4191"]],[35,36,["H3588"]],[36,40,["H2204"]],[40,41,["H376"]],[41,43,["H3515"]],[43,45,["H1931"]],[45,47,["H8199","(H853)"]],[47,48,["H3478"]],[48,49,["H705"]],[49,50,["H8141"]]]},{"k":7316,"v":[[0,5,["H3618"]],[5,6,["H6372"]],[6,7,["H802"]],[7,10,["H2030"]],[10,14,["H3205"]],[14,18,["H8085","(H853)"]],[18,20,["H8052"]],[20,23,["H727"]],[23,25,["H430"]],[25,27,["H3947"]],[27,33,["H2524"]],[33,36,["H376"]],[36,38,["H4191"]],[38,41,["H3766"]],[41,43,["H3205"]],[43,44,["H3588"]],[44,46,["H6735"]],[46,47,["H2015"]],[47,48,["H5921"]],[48,49,[]]]},{"k":7317,"v":[[0,4,["H6256"]],[4,7,["H4191"]],[7,11,["H5324"]],[11,14,["H1696"]],[14,15,["H5921"]],[15,17,["H3372"]],[17,18,["H408"]],[18,19,["H3588"]],[19,22,["H3205"]],[22,24,["H1121"]],[24,27,["H6030"]],[27,28,["H3808"]],[28,29,["H3808"]],[29,32,["H7896","H3820"]],[32,33,[]]]},{"k":7318,"v":[[0,3,["H7121"]],[3,5,["H5288"]],[5,6,["H350"]],[6,7,["H559"]],[7,9,["H3519"]],[9,11,["H1540"]],[11,13,["H4480","H3478"]],[13,14,["H413"]],[14,16,["H727"]],[16,18,["H430"]],[18,20,["H3947"]],[20,22,["H413"]],[22,27,["H2524"]],[27,30,["H376"]]]},{"k":7319,"v":[[0,3,["H559"]],[3,5,["H3519"]],[5,7,["H1540"]],[7,9,["H4480","H3478"]],[9,10,["H3588"]],[10,12,["H727"]],[12,14,["H430"]],[14,16,["H3947"]]]},{"k":7320,"v":[[0,3,["H6430"]],[3,4,["H3947","(H853)"]],[4,6,["H727"]],[6,8,["H430"]],[8,10,["H935"]],[10,13,["H4480","H72"]],[13,15,["H795"]]]},{"k":7321,"v":[[0,3,["H6430"]],[3,4,["H3947","(H853)"]],[4,6,["H727"]],[6,8,["H430"]],[8,10,["H935"]],[10,14,["H1004"]],[14,16,["H1712"]],[16,18,["H3322"]],[18,20,["H681"]],[20,21,["H1712"]]]},{"k":7322,"v":[[0,5,["H795"]],[5,7,["H7925"]],[7,10,["H4480","H4283"]],[10,11,["H2009"]],[11,12,["H1712"]],[12,14,["H5307"]],[14,17,["H6440"]],[17,20,["H776"]],[20,21,["H6440"]],[21,23,["H727"]],[23,26,["H3068"]],[26,29,["H3947","(H853)"]],[29,30,["H1712"]],[30,32,["H7725"]],[32,36,["H4725"]],[36,37,[]]]},{"k":7323,"v":[[0,5,["H7925"]],[5,8,["H4480","H4283"]],[8,9,["H1242"]],[9,10,["H2009"]],[10,11,["H1712"]],[11,13,["H5307"]],[13,16,["H6440"]],[16,19,["H776"]],[19,20,["H6440"]],[20,22,["H727"]],[22,25,["H3068"]],[25,28,["H7218"]],[28,30,["H1712"]],[30,32,["H8147"]],[32,34,["H3709"]],[34,37,["H3027"]],[37,40,["H3772"]],[40,41,["H413"]],[41,43,["H4670"]],[43,44,["H7535"]],[44,48,["H1712"]],[48,50,["H7604"]],[50,51,["H5921"]],[51,52,[]]]},{"k":7324,"v":[[0,1,["H5921","H3651"]],[1,2,["H3808"]],[2,4,["H3548"]],[4,6,["H1712"]],[6,8,["H3605"]],[8,10,["H935"]],[10,12,["H1712"]],[12,13,["H1004"]],[13,14,["H1869"]],[14,15,["H5921"]],[15,17,["H4670"]],[17,19,["H1712"]],[19,21,["H795"]],[21,22,["H5704"]],[22,23,["H2088"]],[23,24,["H3117"]]]},{"k":7325,"v":[[0,3,["H3027"]],[3,6,["H3068"]],[6,8,["H3513"]],[8,9,["H413"]],[9,12,["H795"]],[12,15,["H8074"]],[15,18,["H5221"]],[18,21,["H6076"]],[21,22,["(H853)"]],[22,23,["H795"]],[23,26,["H1366"]],[26,27,[]]]},{"k":7326,"v":[[0,4,["H376"]],[4,6,["H795"]],[6,7,["H7200"]],[7,8,["H3588"]],[8,11,["H3651"]],[11,13,["H559"]],[13,15,["H727"]],[15,18,["H430"]],[18,20,["H3478"]],[20,22,["H3808"]],[22,23,["H3427"]],[23,24,["H5973"]],[24,26,["H3588"]],[26,28,["H3027"]],[28,30,["H7185"]],[30,31,["H5921"]],[31,34,["H5921"]],[34,35,["H1712"]],[35,37,["H430"]]]},{"k":7327,"v":[[0,2,["H7971"]],[2,5,["H622","(H853)"]],[5,6,["H3605"]],[6,8,["H5633"]],[8,11,["H6430"]],[11,12,["H413"]],[12,15,["H559"]],[15,16,["H4100"]],[16,19,["H6213"]],[19,22,["H727"]],[22,25,["H430"]],[25,27,["H3478"]],[27,30,["H559"]],[30,33,["H727"]],[33,36,["H430"]],[36,38,["H3478"]],[38,41,["H5437"]],[41,43,["H1661"]],[43,46,["H5437","(H853)"]],[46,48,["H727"]],[48,51,["H430"]],[51,53,["H3478"]],[53,55,[]]]},{"k":7328,"v":[[0,3,["H1961"]],[3,6,["H310"]],[6,11,["H5437","(H853)"]],[11,13,["H3027"]],[13,16,["H3068"]],[16,17,["H1961"]],[17,20,["H5892"]],[20,23,["H3966"]],[23,24,["H1419"]],[24,25,["H4103"]],[25,28,["H5221","(H853)"]],[28,30,["H376"]],[30,33,["H5892"]],[33,35,["H4480","H6996"]],[35,37,["H1419"]],[37,41,["H6076"]],[41,45,["H8368"]]]},{"k":7329,"v":[[0,3,["H7971","(H853)"]],[3,5,["H727"]],[5,7,["H430"]],[7,9,["H6138"]],[9,14,["H1961"]],[14,17,["H727"]],[17,19,["H430"]],[19,20,["H935"]],[20,22,["H6138"]],[22,25,["H6139"]],[25,27,["H2199"]],[27,28,["H559"]],[28,32,["H5437","(H853)"]],[32,34,["H727"]],[34,37,["H430"]],[37,39,["H3478"]],[39,40,["H413"]],[40,43,["H4191"]],[43,47,["H5971"]]]},{"k":7330,"v":[[0,3,["H7971"]],[3,6,["H622","(H853)"]],[6,7,["H3605"]],[7,9,["H5633"]],[9,12,["H6430"]],[12,14,["H559"]],[14,16,["H7971","(H853)"]],[16,18,["H727"]],[18,21,["H430"]],[21,23,["H3478"]],[23,28,["H7725"]],[28,32,["H4725"]],[32,35,["H4191"]],[35,37,["H3808"]],[37,40,["H5971"]],[40,41,["H3588"]],[41,43,["H1961"]],[43,45,["H4194"]],[45,46,["H4103"]],[46,48,["H3605"]],[48,50,["H5892"]],[50,52,["H3027"]],[52,54,["H430"]],[54,56,["H3966"]],[56,57,["H3513"]],[57,58,["H8033"]]]},{"k":7331,"v":[[0,3,["H376"]],[3,4,["H834"]],[4,5,["H4191"]],[5,6,["H3808"]],[6,8,["H5221"]],[8,11,["H6076"]],[11,14,["H7775"]],[14,17,["H5892"]],[17,19,["H5927"]],[19,21,["H8064"]]]},{"k":7332,"v":[[0,3,["H727"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,10,["H7704"]],[10,13,["H6430"]],[13,14,["H7651"]],[14,15,["H2320"]]]},{"k":7333,"v":[[0,3,["H6430"]],[3,4,["H7121"]],[4,7,["H3548"]],[7,10,["H7080"]],[10,11,["H559"]],[11,12,["H4100"]],[12,15,["H6213"]],[15,18,["H727"]],[18,21,["H3068"]],[21,22,["H3045"]],[22,24,["H4100"]],[24,27,["H7971"]],[27,31,["H4725"]]]},{"k":7334,"v":[[0,3,["H559"]],[3,4,["H518"]],[4,7,["H7971","(H853)"]],[7,9,["H727"]],[9,12,["H430"]],[12,14,["H3478"]],[14,15,["H7971"]],[15,17,["H408"]],[17,18,["H7387"]],[18,19,["H3588"]],[19,23,["H7725","H7725"]],[23,27,["H817"]],[27,28,["H227"]],[28,32,["H7495"]],[32,37,["H3045"]],[37,40,["H4100"]],[40,42,["H3027"]],[42,44,["H3808"]],[44,45,["H5493"]],[45,46,["H4480"]],[46,47,[]]]},{"k":7335,"v":[[0,2,["H559"]],[2,4,["H4100"]],[4,9,["H817"]],[9,10,["H834"]],[10,13,["H7725"]],[13,17,["H559"]],[17,18,["H2568"]],[18,19,["H2091"]],[19,20,["H6076"]],[20,22,["H2568"]],[22,23,["H2091"]],[23,24,["H5909"]],[24,28,["H4557"]],[28,31,["H5633"]],[31,34,["H6430"]],[34,35,["H3588"]],[35,36,["H259"]],[36,37,["H4046"]],[37,41,["H3605"]],[41,45,["H5633"]]]},{"k":7336,"v":[[0,4,["H6213"]],[4,5,["H6754"]],[5,8,["H6076"]],[8,10,["H6754"]],[10,13,["H5909"]],[13,15,["H7843","(H853)"]],[15,17,["H776"]],[17,21,["H5414"]],[21,22,["H3519"]],[22,25,["H430"]],[25,27,["H3478"]],[27,28,["H194"]],[28,31,["H7043","(H853)"]],[31,33,["H3027"]],[33,35,["H4480","H5921"]],[35,39,["H4480","H5921"]],[39,41,["H430"]],[41,44,["H4480","H5921"]],[44,46,["H776"]]]},{"k":7337,"v":[[0,1,["H4100"]],[1,5,["H3513","(H853)"]],[5,7,["H3824"]],[7,8,["H834"]],[8,10,["H4714"]],[10,12,["H6547"]],[12,13,["H3513","(H853)"]],[13,15,["H3820"]],[15,16,["H834"]],[16,20,["H5953"]],[20,25,["H3808"]],[25,29,["H7971"]],[29,32,["H1980"]]]},{"k":7338,"v":[[0,1,["H6258"]],[1,3,["H6213"]],[3,4,["H259"]],[4,5,["H2319"]],[5,6,["H5699"]],[6,8,["H3947"]],[8,9,["H8147"]],[9,10,["H5763"]],[10,11,["H6510"]],[11,12,["H5921"]],[12,13,["H834"]],[13,16,["H5927"]],[16,17,["H3808"]],[17,18,["H5923"]],[18,20,["H631","(H853)"]],[20,22,["H6510"]],[22,25,["H5699"]],[25,27,["H7725"]],[27,29,["H1121"]],[29,30,["H1004"]],[30,31,["H4480","H310"]],[31,32,[]]]},{"k":7339,"v":[[0,2,["H3947","(H853)"]],[2,4,["H727"]],[4,7,["H3068"]],[7,9,["H5414"]],[9,11,["H413"]],[11,13,["H5699"]],[13,15,["H7760"]],[15,17,["H3627"]],[17,19,["H2091"]],[19,20,["H834"]],[20,22,["H7725"]],[22,27,["H817"]],[27,30,["H712"]],[30,33,["H4480","H6654"]],[33,38,["H7971","(H853)"]],[38,42,["H1980"]]]},{"k":7340,"v":[[0,2,["H7200"]],[2,3,["H518"]],[3,6,["H5927"]],[6,9,["H1870"]],[9,13,["H1366"]],[13,15,["H1053"]],[15,17,["H1931"]],[17,19,["H6213"]],[19,20,["(H853)"]],[20,21,["H2063"]],[21,22,["H1419"]],[22,23,["H7451"]],[23,25,["H518"]],[25,26,["H3808"]],[26,30,["H3045"]],[30,31,["H3588"]],[31,34,["H3808"]],[34,36,["H3027"]],[36,38,["H5060"]],[38,40,["H1931"]],[40,43,["H4745"]],[43,45,["H1961"]],[45,47,[]]]},{"k":7341,"v":[[0,3,["H376"]],[3,4,["H6213"]],[4,5,["H3651"]],[5,7,["H3947"]],[7,8,["H8147"]],[8,9,["H5763"]],[9,10,["H6510"]],[10,12,["H631"]],[12,16,["H5699"]],[16,19,["H3607"]],[19,21,["H1121"]],[21,23,["H1004"]]]},{"k":7342,"v":[[0,3,["H7760","(H853)"]],[3,5,["H727"]],[5,8,["H3068"]],[8,9,["H413"]],[9,11,["H5699"]],[11,14,["H712"]],[14,15,["H854"]],[15,17,["H5909"]],[17,19,["H2091"]],[19,22,["H6754"]],[22,25,["H2914"]]]},{"k":7343,"v":[[0,3,["H6510"]],[3,6,["H3474"]],[6,7,["H1870"]],[7,8,["H5921"]],[8,10,["H1870"]],[10,12,["H1053"]],[12,15,["H1980"]],[15,16,["H259"]],[16,17,["H4546"]],[17,18,["H1600"]],[18,21,["H1980"]],[21,25,["H5493","H3808"]],[25,29,["H3225"]],[29,33,["H8040"]],[33,36,["H5633"]],[36,39,["H6430"]],[39,40,["H1980"]],[40,41,["H310"]],[41,43,["H5704"]],[43,45,["H1366"]],[45,47,["H1053"]]]},{"k":7344,"v":[[0,4,["H1053"]],[4,6,["H7114"]],[6,8,["H2406"]],[8,9,["H7105"]],[9,12,["H6010"]],[12,16,["H5375","(H853)"]],[16,18,["H5869"]],[18,20,["H7200","(H853)"]],[20,22,["H727"]],[22,24,["H8055"]],[24,26,["H7200"]],[26,27,[]]]},{"k":7345,"v":[[0,3,["H5699"]],[3,4,["H935"]],[4,5,["H413"]],[5,7,["H7704"]],[7,9,["H3091"]],[9,11,["H1030"]],[11,13,["H5975"]],[13,14,["H8033"]],[14,15,["H8033"]],[15,19,["H1419"]],[19,20,["H68"]],[20,23,["H1234","(H853)"]],[23,25,["H6086"]],[25,28,["H5699"]],[28,30,["H5927"]],[30,32,["H6510"]],[32,35,["H5930"]],[35,38,["H3068"]]]},{"k":7346,"v":[[0,3,["H3881"]],[3,5,["H3381","(H853)"]],[5,7,["H727"]],[7,10,["H3068"]],[10,13,["H712"]],[13,14,["H834"]],[14,16,["H854"]],[16,18,["H834"]],[18,20,["H3627"]],[20,22,["H2091"]],[22,25,["H7760"]],[25,27,["H413"]],[27,29,["H1419"]],[29,30,["H68"]],[30,33,["H376"]],[33,35,["H1053"]],[35,36,["H5927"]],[36,38,["H5930"]],[38,40,["H2076"]],[40,41,["H2077"]],[41,43,["H1931"]],[43,44,["H3117"]],[44,47,["H3068"]]]},{"k":7347,"v":[[0,4,["H2568"]],[4,5,["H5633"]],[5,8,["H6430"]],[8,10,["H7200"]],[10,13,["H7725"]],[13,15,["H6138"]],[15,17,["H1931"]],[17,18,["H3117"]]]},{"k":7348,"v":[[0,2,["H428"]],[2,5,["H2091"]],[5,6,["H2914"]],[6,7,["H834"]],[7,9,["H6430"]],[9,10,["H7725"]],[10,14,["H817"]],[14,17,["H3068"]],[17,19,["H795"]],[19,20,["H259"]],[20,22,["H5804"]],[22,23,["H259"]],[23,25,["H831"]],[25,26,["H259"]],[26,28,["H1661"]],[28,29,["H259"]],[29,31,["H6138"]],[31,32,["H259"]]]},{"k":7349,"v":[[0,3,["H2091"]],[3,4,["H5909"]],[4,8,["H4557"]],[8,10,["H3605"]],[10,12,["H5892"]],[12,15,["H6430"]],[15,19,["H2568"]],[19,20,["H5633"]],[20,24,["H4480","H5892","H4013"]],[24,26,["H5704"]],[26,27,["H6521"]],[27,28,["H3724"]],[28,30,["H5704"]],[30,32,["H1419"]],[32,35,["H59"]],[35,36,["H834","H5921"]],[36,39,["H5117","(H853)"]],[39,41,["H727"]],[41,44,["H3068"]],[44,48,["H5704"]],[48,49,["H2088"]],[49,50,["H3117"]],[50,53,["H7704"]],[53,55,["H3091"]],[55,57,["H1030"]]]},{"k":7350,"v":[[0,3,["H5221"]],[3,5,["H376"]],[5,7,["H1053"]],[7,8,["H3588"]],[8,11,["H7200"]],[11,14,["H727"]],[14,17,["H3068"]],[17,20,["H5221"]],[20,23,["H5971"]],[23,24,["H2572"]],[24,25,["H505"]],[25,29,["H7657"]],[29,30,["H376"]],[30,33,["H5971"]],[33,34,["H56"]],[34,35,["H3588"]],[35,37,["H3068"]],[37,39,["H5221"]],[39,43,["H5971"]],[43,46,["H1419"]],[46,47,["H4347"]]]},{"k":7351,"v":[[0,3,["H376"]],[3,5,["H1053"]],[5,6,["H559"]],[6,7,["H4310"]],[7,9,["H3201"]],[9,11,["H5975"]],[11,12,["H6440"]],[12,13,["H2088"]],[13,14,["H6918"]],[14,15,["H3068"]],[15,16,["H430"]],[16,18,["H413"]],[18,19,["H4310"]],[19,23,["H5927"]],[23,24,["H4480","H5921"]],[24,25,[]]]},{"k":7352,"v":[[0,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,7,["H3427"]],[7,9,["H7157"]],[9,10,["H559"]],[10,12,["H6430"]],[12,15,["H7725","(H853)"]],[15,17,["H727"]],[17,20,["H3068"]],[20,23,["H3381"]],[23,27,["H5927","(H853)"]],[27,28,["H413"]],[28,29,[]]]},{"k":7353,"v":[[0,3,["H376"]],[3,5,["H7157"]],[5,6,["H935"]],[6,9,["H5927","(H853)"]],[9,11,["H727"]],[11,14,["H3068"]],[14,16,["H935"]],[16,18,["H413"]],[18,20,["H1004"]],[20,22,["H41"]],[22,25,["H1389"]],[25,27,["H6942"]],[27,28,["H499"]],[28,30,["H1121"]],[30,32,["H8104","(H853)"]],[32,34,["H727"]],[34,37,["H3068"]]]},{"k":7354,"v":[[0,5,["H1961"]],[5,6,["H4480","H3117"]],[6,8,["H727"]],[8,9,["H3427"]],[9,11,["H7157"]],[11,14,["H3117"]],[14,16,["H7235"]],[16,19,["H1961"]],[19,20,["H6242"]],[20,21,["H8141"]],[21,23,["H3605"]],[23,25,["H1004"]],[25,27,["H3478"]],[27,28,["H5091"]],[28,29,["H310"]],[29,31,["H3068"]]]},{"k":7355,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3605"]],[5,7,["H1004"]],[7,9,["H3478"]],[9,10,["H559"]],[10,11,["H518"]],[11,12,["H859"]],[12,14,["H7725"]],[14,15,["H413"]],[15,17,["H3068"]],[17,19,["H3605"]],[19,21,["H3824"]],[21,24,["H5493","(H853)"]],[24,26,["H5236"]],[26,27,["H430"]],[27,29,["H6252"]],[29,31,["H4480","H8432"]],[31,34,["H3559"]],[34,36,["H3824"]],[36,37,["H413"]],[37,39,["H3068"]],[39,41,["H5647"]],[41,43,["H905"]],[43,47,["H5337"]],[47,52,["H4480","H3027"]],[52,55,["H6430"]]]},{"k":7356,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,8,["H5493","(H853)"]],[8,9,["H1168"]],[9,11,["H6252"]],[11,13,["H5647","(H853)"]],[13,15,["H3068"]],[15,16,["H905"]]]},{"k":7357,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H6908","(H853)"]],[4,5,["H3605"]],[5,6,["H3478"]],[6,8,["H4709"]],[8,12,["H6419"]],[12,13,["H1157"]],[13,15,["H413"]],[15,17,["H3068"]]]},{"k":7358,"v":[[0,4,["H6908"]],[4,6,["H4709"]],[6,8,["H7579"]],[8,9,["H4325"]],[9,13,["H8210"]],[13,14,["H6440"]],[14,16,["H3068"]],[16,18,["H6684"]],[18,20,["H1931"]],[20,21,["H3117"]],[21,23,["H559"]],[23,24,["H8033"]],[24,27,["H2398"]],[27,30,["H3068"]],[30,32,["H8050"]],[32,33,["H8199","(H853)"]],[33,35,["H1121"]],[35,37,["H3478"]],[37,39,["H4709"]]]},{"k":7359,"v":[[0,4,["H6430"]],[4,5,["H8085"]],[5,6,["H3588"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,13,["H6908"]],[13,15,["H4709"]],[15,17,["H5633"]],[17,20,["H6430"]],[20,22,["H5927"]],[22,23,["H413"]],[23,24,["H3478"]],[24,28,["H1121"]],[28,30,["H3478"]],[30,31,["H8085"]],[31,35,["H3372"]],[35,36,["H4480","H6440"]],[36,38,["H6430"]]]},{"k":7360,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H8050"]],[8,9,["H2790"]],[9,10,["H408"]],[10,12,["H4480","H2199"]],[12,13,["H413"]],[13,15,["H3068"]],[15,17,["H430"]],[17,18,["H4480"]],[18,23,["H3467"]],[23,28,["H4480","H3027"]],[28,31,["H6430"]]]},{"k":7361,"v":[[0,2,["H8050"]],[2,3,["H3947"]],[3,4,["H259"]],[4,5,["H2461"]],[5,6,["H2924"]],[6,8,["H5927"]],[8,13,["H5930"]],[13,14,["H3632"]],[14,17,["H3068"]],[17,19,["H8050"]],[19,20,["H2199"]],[20,21,["H413"]],[21,23,["H3068"]],[23,24,["H1157"]],[24,25,["H3478"]],[25,28,["H3068"]],[28,29,["H6030"]],[29,30,[]]]},{"k":7362,"v":[[0,3,["H8050"]],[3,4,["H1961"]],[4,6,["H5927"]],[6,9,["H5930"]],[9,11,["H6430"]],[11,13,["H5066"]],[13,15,["H4421"]],[15,17,["H3478"]],[17,20,["H3068"]],[20,21,["H7481"]],[21,24,["H1419"]],[24,25,["H6963"]],[25,27,["H1931"]],[27,28,["H3117"]],[28,29,["H5921"]],[29,31,["H6430"]],[31,33,["H2000"]],[33,38,["H5062"]],[38,39,["H6440"]],[39,40,["H3478"]]]},{"k":7363,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,7,["H3318"]],[7,8,["H4480"]],[8,9,["H4709"]],[9,11,["H7291","(H853)"]],[11,13,["H6430"]],[13,15,["H5221"]],[15,17,["H5704"]],[17,20,["H4480","H8478"]],[20,21,["H1033"]]]},{"k":7364,"v":[[0,2,["H8050"]],[2,3,["H3947"]],[3,4,["H259"]],[4,5,["H68"]],[5,7,["H7760"]],[7,9,["H996"]],[9,10,["H4709"]],[10,12,["H8129"]],[12,14,["H7121","(H853)"]],[14,16,["H8034"]],[16,19,["H72"]],[19,20,["H559"]],[20,21,["H5704","H2009"]],[21,24,["H3068"]],[24,25,["H5826"]],[25,26,[]]]},{"k":7365,"v":[[0,3,["H6430"]],[3,5,["H3665"]],[5,8,["H935"]],[8,9,["H3808"]],[9,10,["H3254","H5750"]],[10,13,["H1366"]],[13,15,["H3478"]],[15,18,["H3027"]],[18,21,["H3068"]],[21,22,["H1961"]],[22,25,["H6430"]],[25,26,["H3605"]],[26,28,["H3117"]],[28,30,["H8050"]]]},{"k":7366,"v":[[0,3,["H5892"]],[3,4,["H834"]],[4,6,["H6430"]],[6,8,["H3947"]],[8,9,["H4480","H854"]],[9,10,["H3478"]],[10,12,["H7725"]],[12,14,["H3478"]],[14,16,["H4480","H6138"]],[16,18,["H5704"]],[18,19,["H1661"]],[19,22,["H1366"]],[22,25,["H3478"]],[25,26,["H5337"]],[26,30,["H4480","H3027"]],[30,33,["H6430"]],[33,36,["H1961"]],[36,37,["H7965"]],[37,38,["H996"]],[38,39,["H3478"]],[39,42,["H567"]]]},{"k":7367,"v":[[0,2,["H8050"]],[2,3,["H8199","(H853)"]],[3,4,["H3478"]],[4,5,["H3605"]],[5,7,["H3117"]],[7,10,["H2416"]]]},{"k":7368,"v":[[0,3,["H1980"]],[3,4,["H4880","H1767"]],[4,5,["H8141"]],[5,7,["H8141"]],[7,9,["H5437"]],[9,11,["H1008"]],[11,13,["H1537"]],[13,15,["H4709"]],[15,17,["H8199","(H853)"]],[17,18,["H3478"]],[18,19,["H854"]],[19,20,["H3605"]],[20,21,["H428"]],[21,22,["H4725"]]]},{"k":7369,"v":[[0,3,["H8666"]],[3,6,["H7414"]],[6,7,["H3588"]],[7,8,["H8033"]],[8,11,["H1004"]],[11,13,["H8033"]],[13,15,["H8199","(H853)"]],[15,16,["H3478"]],[16,18,["H8033"]],[18,20,["H1129"]],[20,22,["H4196"]],[22,25,["H3068"]]]},{"k":7370,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H8050"]],[7,9,["H2204"]],[9,12,["H7760","(H853)"]],[12,14,["H1121"]],[14,15,["H8199"]],[15,17,["H3478"]]]},{"k":7371,"v":[[0,3,["H8034"]],[3,6,["H1060"]],[6,7,["H1961"]],[7,8,["H3100"]],[8,11,["H8034"]],[11,14,["H4932"]],[14,15,["H29"]],[15,18,["H8199"]],[18,20,["H884"]]]},{"k":7372,"v":[[0,3,["H1121"]],[3,4,["H1980"]],[4,5,["H3808"]],[5,8,["H1870"]],[8,11,["H5186"]],[11,12,["H310"]],[12,13,["H1215"]],[13,15,["H3947"]],[15,16,["H7810"]],[16,18,["H5186"]],[18,19,["H4941"]]]},{"k":7373,"v":[[0,2,["H3605"]],[2,4,["H2205"]],[4,6,["H3478"]],[6,9,["H6908"]],[9,11,["H935"]],[11,12,["H413"]],[12,13,["H8050"]],[13,15,["H7414"]]]},{"k":7374,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H2009"]],[5,6,["H859"]],[6,8,["H2204"]],[8,11,["H1121"]],[11,12,["H1980"]],[12,13,["H3808"]],[13,16,["H1870"]],[16,17,["H6258"]],[17,18,["H7760"]],[18,21,["H4428"]],[21,23,["H8199"]],[23,26,["H3605"]],[26,28,["H1471"]]]},{"k":7375,"v":[[0,3,["H1697"]],[3,4,["H3415","H5869"]],[4,5,["H8050"]],[5,6,["H834"]],[6,8,["H559"]],[8,9,["H5414"]],[9,12,["H4428"]],[12,14,["H8199"]],[14,17,["H8050"]],[17,18,["H6419"]],[18,19,["H413"]],[19,21,["H3068"]]]},{"k":7376,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H8050"]],[6,7,["H8085"]],[7,10,["H6963"]],[10,13,["H5971"]],[13,15,["H3605"]],[15,16,["H834"]],[16,18,["H559"]],[18,19,["H413"]],[19,21,["H3588"]],[21,24,["H3808"]],[24,25,["H3988"]],[25,27,["H3588"]],[27,30,["H3988"]],[30,36,["H4480","H4427"]],[36,37,["H5921"]],[37,38,[]]]},{"k":7377,"v":[[0,3,["H3605"]],[3,5,["H4639"]],[5,6,["H834"]],[6,9,["H6213"]],[9,12,["H4480","H3117"]],[12,17,["H5927","(H853)"]],[17,20,["H4480","H4714"]],[20,22,["H5704"]],[22,23,["H2088"]],[23,24,["H3117"]],[24,28,["H5800"]],[28,31,["H5647"]],[31,32,["H312"]],[32,33,["H430"]],[33,34,["H3651"]],[34,35,["H6213"]],[35,36,["H1992"]],[36,37,["H1571"]],[37,39,[]]]},{"k":7378,"v":[[0,1,["H6258"]],[1,3,["H8085"]],[3,6,["H6963"]],[6,7,["H389"]],[7,8,["H3588"]],[8,10,["H5749","H5749"]],[10,14,["H5046"]],[14,17,["H4941"]],[17,20,["H4428"]],[20,21,["H834"]],[21,23,["H4427"]],[23,24,["H5921"]],[24,25,[]]]},{"k":7379,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H3605"]],[4,6,["H1697"]],[6,9,["H3068"]],[9,10,["H413"]],[10,12,["H5971"]],[12,14,["H7592"]],[14,15,["H4480","H854"]],[15,18,["H4428"]]]},{"k":7380,"v":[[0,3,["H559"]],[3,4,["H2088"]],[4,6,["H1961"]],[6,8,["H4941"]],[8,11,["H4428"]],[11,12,["H834"]],[12,14,["H4427"]],[14,15,["H5921"]],[15,19,["H3947","(H853)"]],[19,21,["H1121"]],[21,23,["H7760"]],[23,29,["H4818"]],[29,34,["H6571"]],[34,38,["H7323"]],[38,39,["H6440"]],[39,41,["H4818"]]]},{"k":7381,"v":[[0,4,["H7760"]],[4,6,["H8269"]],[6,8,["H505"]],[8,10,["H8269"]],[10,12,["H2572"]],[12,18,["H2790"]],[18,20,["H2758"]],[20,23,["H7114"]],[23,25,["H7105"]],[25,28,["H6213"]],[28,30,["H3627"]],[30,32,["H4421"]],[32,34,["H3627"]],[34,37,["H7393"]]]},{"k":7382,"v":[[0,4,["H3947"]],[4,6,["H1323"]],[6,9,["H7548"]],[9,13,["H2879"]],[13,17,["H644"]]]},{"k":7383,"v":[[0,4,["H3947"]],[4,6,["H7704"]],[6,9,["H3754"]],[9,12,["H2132"]],[12,15,["H2896"]],[15,19,["H5414"]],[19,23,["H5650"]]]},{"k":7384,"v":[[0,6,["H6237"]],[6,9,["H2233"]],[9,13,["H3754"]],[13,15,["H5414"]],[15,18,["H5631"]],[18,22,["H5650"]]]},{"k":7385,"v":[[0,4,["H3947"]],[4,6,["H5650"]],[6,9,["H8198"]],[9,12,["H2896"]],[12,14,["H970"]],[14,17,["H2543"]],[17,19,["H6213"]],[19,23,["H4399"]]]},{"k":7386,"v":[[0,5,["H6237"]],[5,8,["H6629"]],[8,10,["H859"]],[10,12,["H1961"]],[12,14,["H5650"]]]},{"k":7387,"v":[[0,5,["H2199"]],[5,7,["H1931"]],[7,8,["H3117"]],[8,9,["H4480","H6440"]],[9,12,["H4428"]],[12,13,["H834"]],[13,17,["H977"]],[17,21,["H3068"]],[21,23,["H3808"]],[23,24,["H6030"]],[24,27,["H1931"]],[27,28,["H3117"]]]},{"k":7388,"v":[[0,3,["H5971"]],[3,4,["H3985"]],[4,6,["H8085"]],[6,8,["H6963"]],[8,10,["H8050"]],[10,13,["H559"]],[13,14,["H3808"]],[14,15,["H3588","H518"]],[15,18,["H1961"]],[18,20,["H4428"]],[20,21,["H5921"]],[21,22,[]]]},{"k":7389,"v":[[0,2,["H587"]],[2,3,["H1571"]],[3,5,["H1961"]],[5,7,["H3605"]],[7,9,["H1471"]],[9,13,["H4428"]],[13,15,["H8199"]],[15,19,["H3318"]],[19,20,["H6440"]],[20,23,["H3898","(H853)"]],[23,25,["H4421"]]]},{"k":7390,"v":[[0,2,["H8050"]],[2,3,["H8085","(H853)"]],[3,4,["H3605"]],[4,6,["H1697"]],[6,9,["H5971"]],[9,12,["H1696"]],[12,16,["H241"]],[16,19,["H3068"]]]},{"k":7391,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H8050"]],[6,7,["H8085"]],[7,10,["H6963"]],[10,15,["H4427","H4428"]],[15,17,["H8050"]],[17,18,["H559"]],[18,19,["H413"]],[19,21,["H376"]],[21,23,["H3478"]],[23,24,["H1980"]],[24,27,["H376"]],[27,30,["H5892"]]]},{"k":7392,"v":[[0,3,["H1961"]],[3,5,["H376"]],[5,7,["H4480","H1144"]],[7,9,["H8034"]],[9,11,["H7027"]],[11,13,["H1121"]],[13,15,["H22"]],[15,17,["H1121"]],[17,19,["H6872"]],[19,21,["H1121"]],[21,23,["H1064"]],[23,25,["H1121"]],[25,27,["H647"]],[27,29,["H1145"]],[29,32,["H1368"]],[32,34,["H2428"]]]},{"k":7393,"v":[[0,3,["H1961"]],[3,5,["H1121"]],[5,7,["H8034"]],[7,9,["H7586"]],[9,13,["H970"]],[13,16,["H2896"]],[16,20,["H369"]],[20,23,["H4480","H1121"]],[23,25,["H3478"]],[25,27,["H2896"]],[27,28,["H376"]],[28,29,["H4480"]],[29,33,["H4480","H7926"]],[33,35,["H4605"]],[35,38,["H1364"]],[38,40,["H4480","H3605"]],[40,43,["H5971"]]]},{"k":7394,"v":[[0,3,["H860"]],[3,5,["H7027"]],[5,6,["H7586"]],[6,7,["H1"]],[7,9,["H6"]],[9,11,["H7027"]],[11,12,["H559"]],[12,13,["H413"]],[13,14,["H7586"]],[14,16,["H1121"]],[16,17,["H3947"]],[17,18,["H4994","(H853)"]],[18,19,["H259"]],[19,22,["H4480","H5288"]],[22,23,["H854"]],[23,26,["H6965"]],[26,27,["H1980"]],[27,28,["H1245","(H853)"]],[28,30,["H860"]]]},{"k":7395,"v":[[0,4,["H5674"]],[4,5,["H2022"]],[5,6,["H669"]],[6,9,["H5674"]],[9,11,["H776"]],[11,13,["H8031"]],[13,16,["H4672"]],[16,18,["H3808"]],[18,22,["H5674"]],[22,24,["H776"]],[24,26,["H8171"]],[26,31,["H369"]],[31,35,["H5674"]],[35,37,["H776"]],[37,40,["H1145"]],[40,43,["H4672"]],[43,45,["H3808"]]]},{"k":7396,"v":[[0,3,["H1992"]],[3,5,["H935"]],[5,8,["H776"]],[8,10,["H6689"]],[10,11,["H7586"]],[11,12,["H559"]],[12,15,["H5288"]],[15,16,["H834"]],[16,18,["H5973"]],[18,20,["H1980"]],[20,24,["H7725"]],[24,25,["H6435"]],[25,27,["H1"]],[27,28,["H2308"]],[28,30,["H4480"]],[30,32,["H860"]],[32,35,["H1672"]],[35,37,[]]]},{"k":7397,"v":[[0,3,["H559"]],[3,6,["H2009"]],[6,7,["H4994"]],[7,11,["H2063"]],[11,12,["H5892"]],[12,14,["H376"]],[14,16,["H430"]],[16,21,["H3513"]],[21,22,["H376"]],[22,23,["H3605"]],[23,24,["H834"]],[24,26,["H1696"]],[26,30,["H935","H935"]],[30,31,["H4994"]],[31,34,["H1980"]],[34,35,["H8033"]],[35,36,["H194"]],[36,39,["H5046"]],[39,40,["(H853)"]],[40,42,["H1870"]],[42,43,["H834","H5921"]],[43,46,["H1980"]]]},{"k":7398,"v":[[0,2,["H559"]],[2,3,["H7586"]],[3,6,["H5288"]],[6,8,["H2009"]],[8,11,["H1980"]],[11,12,["H4100"]],[12,15,["H935"]],[15,17,["H376"]],[17,18,["H3588"]],[18,20,["H3899"]],[20,22,["H235"]],[22,25,["H4480","H3627"]],[25,29,["H369"]],[29,31,["H8670"]],[31,33,["H935"]],[33,36,["H376"]],[36,38,["H430"]],[38,39,["H4100"]],[39,41,[]]]},{"k":7399,"v":[[0,3,["H5288"]],[3,4,["H6030","(H853)"]],[4,5,["H7586"]],[5,6,["H3254"]],[6,8,["H559"]],[8,9,["H2009"]],[9,12,["H4672"]],[12,14,["H3027"]],[14,17,["H7253"]],[17,20,["H8255"]],[20,22,["H3701"]],[22,26,["H5414"]],[26,29,["H376"]],[29,31,["H430"]],[31,33,["H5046"]],[33,34,["(H853)"]],[34,36,["H1870"]]]},{"k":7400,"v":[[0,1,["H6440"]],[1,3,["H3478"]],[3,6,["H376"]],[6,7,["H1980"]],[7,9,["H1875"]],[9,11,["H430"]],[11,12,["H3541"]],[12,14,["H559"]],[14,15,["H1980"]],[15,19,["H1980"]],[19,20,["H5704"]],[20,22,["H7200"]],[22,23,["H3588"]],[23,27,["H3117"]],[27,30,["H5030"]],[30,32,["H6440"]],[32,33,["H7121"]],[33,35,["H7200"]]]},{"k":7401,"v":[[0,2,["H559"]],[2,3,["H7586"]],[3,6,["H5288"]],[6,7,["H2896"]],[7,8,["H1697"]],[8,9,["H1980"]],[9,12,["H1980"]],[12,15,["H1980"]],[15,16,["H413"]],[16,18,["H5892"]],[18,19,["H834","H8033"]],[19,21,["H376"]],[21,23,["H430"]],[23,24,[]]]},{"k":7402,"v":[[0,3,["H1992"]],[3,5,["H5927"]],[5,7,["H4608"]],[7,10,["H5892"]],[10,11,["H1992"]],[11,12,["H4672"]],[12,14,["H5291"]],[14,16,["H3318"]],[16,18,["H7579"]],[18,19,["H4325"]],[19,21,["H559"]],[21,24,["H3426"]],[24,26,["H7200"]],[26,27,["H2088"]]]},{"k":7403,"v":[[0,3,["H6030"]],[3,6,["H559"]],[6,8,["H3426"]],[8,9,["H2009"]],[9,12,["H6440"]],[12,15,["H4116"]],[15,16,["H6258"]],[16,17,["H3588"]],[17,19,["H935"]],[19,21,["H3117"]],[21,24,["H5892"]],[24,25,["H3588"]],[25,29,["H2077"]],[29,32,["H5971"]],[32,34,["H3117"]],[34,38,["H1116"]]]},{"k":7404,"v":[[0,6,["H935"]],[6,9,["H5892"]],[9,12,["H3651"]],[12,13,["H4672"]],[13,15,["H2962"]],[15,18,["H5927"]],[18,22,["H1116"]],[22,24,["H398"]],[24,25,["H3588"]],[25,27,["H5971"]],[27,29,["H3808"]],[29,30,["H398"]],[30,31,["H5704"]],[31,33,["H935"]],[33,34,["H3588"]],[34,35,["H1931"]],[35,37,["H1288"]],[37,39,["H2077"]],[39,41,["H310","H3651"]],[41,43,["H398"]],[43,46,["H7121"]],[46,47,["H6258"]],[47,51,["H5927"]],[51,52,["H3588"]],[52,55,["H3117"]],[55,58,["H4672"]],[58,59,[]]]},{"k":7405,"v":[[0,4,["H5927"]],[4,7,["H5892"]],[7,10,["H1992"]],[10,12,["H935"]],[12,13,["H8432"]],[13,15,["H5892"]],[15,16,["H2009"]],[16,17,["H8050"]],[17,19,["H3318"]],[19,20,["H7125"]],[20,25,["H5927"]],[25,29,["H1116"]]]},{"k":7406,"v":[[0,3,["H3068"]],[3,5,["H1540"]],[5,6,["H8050"]],[6,7,["H854"]],[7,9,["H241"]],[9,10,["H259"]],[10,11,["H3117"]],[11,12,["H6440"]],[12,13,["H7586"]],[13,14,["H935"]],[14,15,["H559"]]]},{"k":7407,"v":[[0,2,["H4279"]],[2,5,["H6256"]],[5,8,["H7971"]],[8,11,["H376"]],[11,15,["H4480","H776"]],[15,17,["H1144"]],[17,21,["H4886"]],[21,25,["H5057"]],[25,26,["H5921"]],[26,28,["H5971"]],[28,29,["H3478"]],[29,33,["H3467","(H853)"]],[33,35,["H5971"]],[35,39,["H4480","H3027"]],[39,42,["H6430"]],[42,43,["H3588"]],[43,47,["H7200","(H853)"]],[47,49,["H5971"]],[49,50,["H3588"]],[50,52,["H6818"]],[52,54,["H935"]],[54,56,["H413"]]]},{"k":7408,"v":[[0,3,["H8050"]],[3,4,["H7200","(H853)"]],[4,5,["H7586"]],[5,7,["H3068"]],[7,8,["H6030"]],[8,11,["H2009"]],[11,13,["H376"]],[13,14,["H834"]],[14,16,["H559"]],[16,17,["H413"]],[17,21,["H2088"]],[21,23,["H6113"]],[23,26,["H5971"]]]},{"k":7409,"v":[[0,2,["H7586"]],[2,4,["H5066"]],[4,5,["(H853)"]],[5,6,["H8050"]],[6,7,["H8432"]],[7,9,["H8179"]],[9,11,["H559"]],[11,12,["H5046"]],[12,16,["H4994"]],[16,17,["H335","H2088"]],[17,19,["H7200"]],[19,20,["H1004"]],[20,21,[]]]},{"k":7410,"v":[[0,2,["H8050"]],[2,3,["H6030","(H853)"]],[3,4,["H7586"]],[4,6,["H559"]],[6,7,["H595"]],[7,10,["H7200"]],[10,12,["H5927"]],[12,13,["H6440"]],[13,18,["H1116"]],[18,22,["H398"]],[22,23,["H5973"]],[23,26,["H3117"]],[26,29,["H1242"]],[29,34,["H7971"]],[34,37,["H5046"]],[37,39,["H3605"]],[39,40,["H834"]],[40,44,["H3824"]]]},{"k":7411,"v":[[0,5,["H860"]],[5,8,["H6"]],[8,9,["H7969"]],[9,10,["H3117"]],[10,11,["H3117"]],[11,12,["H7760"]],[12,13,["H408","(H853)"]],[13,15,["H3820"]],[15,18,["H3588"]],[18,21,["H4672"]],[21,24,["H4310"]],[24,26,["H3605"]],[26,28,["H2532"]],[28,30,["H3478"]],[30,33,["H3808"]],[33,38,["H3605"]],[38,40,["H1"]],[40,41,["H1004"]]]},{"k":7412,"v":[[0,2,["H7586"]],[2,3,["H6030"]],[3,5,["H559"]],[5,7,["H3808"]],[7,8,["H595"]],[8,10,["H1145"]],[10,13,["H4480","H6996"]],[13,16,["H7626"]],[16,18,["H3478"]],[18,21,["H4940"]],[21,23,["H6810"]],[23,25,["H4480","H3605"]],[25,27,["H4940"]],[27,30,["H7626"]],[30,32,["H1144"]],[32,33,["H4100"]],[33,35,["H1696"]],[35,37,["H1697","H2088"]],[37,38,["H413"]],[38,39,[]]]},{"k":7413,"v":[[0,2,["H8050"]],[2,3,["H3947","(H853)"]],[3,4,["H7586"]],[4,7,["H5288"]],[7,9,["H935"]],[9,13,["H3957"]],[13,17,["H5414"]],[17,20,["H7218"]],[20,21,["H4725"]],[21,26,["H7121"]],[26,27,["H1992"]],[27,30,["H7970"]],[30,31,["H376"]]]},{"k":7414,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,6,["H2876"]],[6,7,["H5414","(H853)"]],[7,9,["H4490"]],[9,10,["H834"]],[10,12,["H5414"]],[12,15,["H834"]],[15,17,["H559"]],[17,18,["H413"]],[18,20,["H7760"]],[20,22,["H5973"]],[22,23,[]]]},{"k":7415,"v":[[0,3,["H2876"]],[3,5,["H7311","(H853)"]],[5,7,["H7785"]],[7,12,["H5921"]],[12,15,["H7760"]],[15,17,["H6440"]],[17,18,["H7586"]],[18,21,["H559"]],[21,22,["H2009"]],[22,26,["H7604"]],[26,27,["H7760"]],[27,29,["H6440"]],[29,32,["H398"]],[32,33,["H3588"]],[33,36,["H4150"]],[36,40,["H8104"]],[40,45,["H559"]],[45,48,["H7121"]],[48,50,["H5971"]],[50,52,["H7586"]],[52,54,["H398"]],[54,55,["H5973"]],[55,56,["H8050"]],[56,57,["H1931"]],[57,58,["H3117"]]]},{"k":7416,"v":[[0,6,["H3381"]],[6,10,["H4480","H1116"]],[10,13,["H5892"]],[13,15,["H1696"]],[15,16,["H5973"]],[16,17,["H7586"]],[17,18,["H5921"]],[18,23,["H1406"]]]},{"k":7417,"v":[[0,4,["H7925"]],[4,9,["H1961"]],[9,12,["H5927"]],[12,15,["H7837"]],[15,17,["H8050"]],[17,18,["H7121","H413"]],[18,19,["H7586"]],[19,25,["H1406"]],[25,26,["H559"]],[26,27,["H6965"]],[27,33,["H7971"]],[33,35,["H7586"]],[35,36,["H6965"]],[36,40,["H3318"]],[40,41,["H8147"]],[41,44,["H1931"]],[44,46,["H8050"]],[46,47,["H2351"]]]},{"k":7418,"v":[[0,3,["H1992"]],[3,6,["H3381"]],[6,9,["H7097"]],[9,12,["H5892"]],[12,13,["H8050"]],[13,14,["H559"]],[14,15,["H413"]],[15,16,["H7586"]],[16,17,["H559"]],[17,19,["H5288"]],[19,21,["H5674"]],[21,22,["H6440"]],[22,27,["H5674"]],[27,31,["H5975","H859"]],[31,33,["H3117"]],[33,37,["H8085"]],[37,38,["(H853)"]],[38,40,["H1697"]],[40,42,["H430"]]]},{"k":7419,"v":[[0,2,["H8050"]],[2,3,["H3947","(H853)"]],[3,5,["H6378"]],[5,7,["H8081"]],[7,9,["H3332"]],[9,11,["H5921"]],[11,13,["H7218"]],[13,15,["H5401"]],[15,18,["H559"]],[18,21,["H3808"]],[21,22,["H3588"]],[22,24,["H3068"]],[24,26,["H4886"]],[26,30,["H5057"]],[30,31,["H5921"]],[31,33,["H5159"]]]},{"k":7420,"v":[[0,4,["H1980"]],[4,5,["H4480","H5973"]],[5,8,["H3117"]],[8,12,["H4672"]],[12,13,["H8147"]],[13,14,["H376"]],[14,15,["H5973"]],[15,16,["H7354"]],[16,17,["H6900"]],[17,20,["H1366"]],[20,22,["H1144"]],[22,24,["H6766"]],[24,28,["H559"]],[28,29,["H413"]],[29,32,["H860"]],[32,33,["H834"]],[33,35,["H1980"]],[35,37,["H1245"]],[37,39,["H4672"]],[39,41,["H2009"]],[41,43,["H1"]],[43,45,["H5203","(H853)"]],[45,47,["H1697"]],[47,50,["H860"]],[50,52,["H1672"]],[52,55,["H559"]],[55,56,["H4100"]],[56,59,["H6213"]],[59,62,["H1121"]]]},{"k":7421,"v":[[0,5,["H2498"]],[5,6,["H1973"]],[6,8,["H4480","H8033"]],[8,12,["H935"]],[12,13,["H5704"]],[13,15,["H436"]],[15,17,["H8396"]],[17,19,["H8033"]],[19,21,["H4672"]],[21,23,["H7969"]],[23,24,["H376"]],[24,26,["H5927"]],[26,27,["H413"]],[27,28,["H430"]],[28,30,["H1008"]],[30,31,["H259"]],[31,32,["H5375"]],[32,33,["H7969"]],[33,34,["H1423"]],[34,36,["H259"]],[36,37,["H5375"]],[37,38,["H7969"]],[38,39,["H3603"]],[39,41,["H3899"]],[41,43,["H259"]],[43,44,["H5375"]],[44,46,["H5035"]],[46,48,["H3196"]]]},{"k":7422,"v":[[0,4,["H7592","H7965"]],[4,7,["H5414"]],[7,9,["H8147"]],[9,12,["H3899"]],[12,16,["H3947"]],[16,19,["H4480","H3027"]]]},{"k":7423,"v":[[0,2,["H310","H3651"]],[2,5,["H935"]],[5,8,["H1389"]],[8,10,["H430"]],[10,11,["H834","H8033"]],[11,14,["H5333"]],[14,17,["H6430"]],[17,23,["H1961"]],[23,27,["H935"]],[27,28,["H8033"]],[28,31,["H5892"]],[31,35,["H6293"]],[35,37,["H2256"]],[37,39,["H5030"]],[39,41,["H3381"]],[41,45,["H4480","H1116"]],[45,48,["H5035"]],[48,51,["H8596"]],[51,54,["H2485"]],[54,57,["H3658"]],[57,58,["H6440"]],[58,61,["H1992"]],[61,63,["H5012"]]]},{"k":7424,"v":[[0,3,["H7307"]],[3,6,["H3068"]],[6,8,["H6743"]],[8,9,["H5921"]],[9,14,["H5012"]],[14,16,["H5973"]],[16,20,["H2015"]],[20,22,["H312"]],[22,23,["H376"]]]},{"k":7425,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,6,["H428"]],[6,7,["H226"]],[7,9,["H935"]],[9,14,["H6213"]],[14,17,["H834","H4672","H3027"]],[17,19,["H3588"]],[19,20,["H430"]],[20,22,["H5973"]],[22,23,[]]]},{"k":7426,"v":[[0,5,["H3381"]],[5,6,["H6440"]],[6,9,["H1537"]],[9,11,["H2009"]],[11,12,["H595"]],[12,15,["H3381"]],[15,16,["H413"]],[16,19,["H5927"]],[19,21,["H5930"]],[21,24,["H2076"]],[24,25,["H2077"]],[25,28,["H8002"]],[28,29,["H7651"]],[29,30,["H3117"]],[30,33,["H3176"]],[33,34,["H5704"]],[34,36,["H935"]],[36,37,["H413"]],[37,40,["H3045"]],[40,41,["(H853)"]],[41,42,["H834"]],[42,45,["H6213"]]]},{"k":7427,"v":[[0,3,["H1961"]],[3,9,["H6437"]],[9,11,["H7926"]],[11,13,["H1980"]],[13,14,["H4480","H5973"]],[14,15,["H8050"]],[15,16,["H430"]],[16,17,["H2015"]],[17,19,["H312"]],[19,20,["H3820"]],[20,22,["H3605"]],[22,23,["H428"]],[23,24,["H226"]],[24,27,["H935"]],[27,28,["H1931"]],[28,29,["H3117"]]]},{"k":7428,"v":[[0,4,["H935"]],[4,5,["H8033"]],[5,8,["H1389"]],[8,9,["H2009"]],[9,11,["H2256"]],[11,13,["H5030"]],[13,14,["H7125"]],[14,18,["H7307"]],[18,20,["H430"]],[20,21,["H6743"]],[21,22,["H5921"]],[22,26,["H5012"]],[26,27,["H8432"]],[27,28,[]]]},{"k":7429,"v":[[0,5,["H1961"]],[5,7,["H3605"]],[7,9,["H3045"]],[9,11,["H4480","H865","H8032"]],[11,12,["H7200"]],[12,14,["H2009"]],[14,16,["H5012"]],[16,17,["H5973"]],[17,19,["H5030"]],[19,22,["H5971"]],[22,23,["H559"]],[23,24,["H376"]],[24,25,["H413"]],[25,26,["H7453"]],[26,27,["H4100"]],[27,29,["H2088"]],[29,32,["H1961"]],[32,35,["H1121"]],[35,37,["H7027"]],[37,39,["H7586"]],[39,40,["H1571"]],[40,43,["H5030"]]]},{"k":7430,"v":[[0,2,["H376"]],[2,6,["H4480","H8033"]],[6,7,["H6030"]],[7,9,["H559"]],[9,11,["H4310"]],[11,14,["H1"]],[14,15,["H5921","H3651"]],[15,17,["H1961"]],[17,19,["H4912"]],[19,21,["H7586"]],[21,22,["H1571"]],[22,25,["H5030"]]]},{"k":7431,"v":[[0,7,["H3615"]],[7,9,["H4480","H5012"]],[9,11,["H935"]],[11,15,["H1116"]]]},{"k":7432,"v":[[0,2,["H7586"]],[2,3,["H1730"]],[3,4,["H559"]],[4,5,["H413"]],[5,8,["H413"]],[8,10,["H5288"]],[10,11,["H575"]],[11,12,["H1980"]],[12,16,["H559"]],[16,18,["H1245","(H853)"]],[18,20,["H860"]],[20,24,["H7200"]],[24,25,["H3588"]],[25,29,["H369"]],[29,31,["H935"]],[31,32,["H413"]],[32,33,["H8050"]]]},{"k":7433,"v":[[0,2,["H7586"]],[2,3,["H1730"]],[3,4,["H559"]],[4,5,["H5046"]],[5,9,["H4994"]],[9,10,["H4100"]],[10,11,["H8050"]],[11,12,["H559"]],[12,14,[]]]},{"k":7434,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1730"]],[6,10,["H5046","H5046"]],[10,11,["H3588"]],[11,13,["H860"]],[13,15,["H4672"]],[15,19,["H1697"]],[19,22,["H4410"]],[22,23,["H834"]],[23,24,["H8050"]],[24,25,["H559"]],[25,27,["H5046"]],[27,29,["H3808"]]]},{"k":7435,"v":[[0,2,["H8050"]],[2,6,["H6817","(H853)","H5971"]],[6,7,["H413"]],[7,9,["H3068"]],[9,11,["H4709"]]]},{"k":7436,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H1121"]],[5,7,["H3478"]],[7,8,["H3541"]],[8,9,["H559"]],[9,11,["H3068"]],[11,12,["H430"]],[12,14,["H3478"]],[14,15,["H595"]],[15,17,["H5927","(H853)"]],[17,18,["H3478"]],[18,21,["H4480","H4714"]],[21,23,["H5337"]],[23,28,["H4480","H3027"]],[28,31,["H4714"]],[31,36,["H4480","H3027"]],[36,38,["H3605"]],[38,39,["H4467"]],[39,44,["H3905"]],[44,45,[]]]},{"k":7437,"v":[[0,2,["H859"]],[2,5,["H3117"]],[5,6,["H3988","(H853)"]],[6,8,["H430"]],[8,9,["H834"]],[9,10,["H1931"]],[10,11,["H3467"]],[11,15,["H4480","H3605"]],[15,17,["H7451"]],[17,20,["H6869"]],[20,24,["H559"]],[24,28,["H3588"]],[28,29,["H7760"]],[29,31,["H4428"]],[31,32,["H5921"]],[32,34,["H6258"]],[34,37,["H3320"]],[37,38,["H6440"]],[38,40,["H3068"]],[40,43,["H7626"]],[43,47,["H505"]]]},{"k":7438,"v":[[0,3,["H8050"]],[3,5,["(H853)"]],[5,6,["H3605"]],[6,8,["H7626"]],[8,10,["H3478"]],[10,13,["H7126"]],[13,15,["H7626"]],[15,17,["H1144"]],[17,19,["H3920"]]]},{"k":7439,"v":[[0,4,["(H853)"]],[4,6,["H7626"]],[6,8,["H1144"]],[8,11,["H7126"]],[11,14,["H4940"]],[14,16,["H4940"]],[16,18,["H4309"]],[18,20,["H3920"]],[20,22,["H7586"]],[22,24,["H1121"]],[24,26,["H7027"]],[26,28,["H3920"]],[28,32,["H1245"]],[32,36,["H3808"]],[36,38,["H4672"]]]},{"k":7440,"v":[[0,3,["H7592"]],[3,6,["H3068"]],[6,7,["H5750"]],[7,10,["H376"]],[10,12,["H5750"]],[12,13,["H935"]],[13,14,["H1988"]],[14,17,["H3068"]],[17,18,["H559"]],[18,19,["H2009"]],[19,20,["H1931"]],[20,23,["H2244"]],[23,24,["H413"]],[24,26,["H3627"]]]},{"k":7441,"v":[[0,3,["H7323"]],[3,5,["H3947"]],[5,7,["H4480","H8033"]],[7,11,["H3320"]],[11,12,["H8432"]],[12,14,["H5971"]],[14,17,["H1361"]],[17,19,["H4480","H3605"]],[19,22,["H5971"]],[22,25,["H4480","H7926"]],[25,27,["H4605"]]]},{"k":7442,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3605"]],[5,7,["H5971"]],[7,8,["H7200"]],[8,11,["H834"]],[11,13,["H3068"]],[13,15,["H977"]],[15,16,["H3588"]],[16,19,["H369"]],[19,21,["H3644"]],[21,23,["H3605"]],[23,25,["H5971"]],[25,27,["H3605"]],[27,29,["H5971"]],[29,30,["H7321"]],[30,32,["H559"]],[32,34,["H2421"]],[34,36,["H4428"]]]},{"k":7443,"v":[[0,2,["H8050"]],[2,3,["H1696","H413"]],[3,5,["H5971","(H853)"]],[5,7,["H4941"]],[7,10,["H4410"]],[10,12,["H3789"]],[12,16,["H5612"]],[16,20,["H5117"]],[20,21,["H6440"]],[21,23,["H3068"]],[23,25,["H8050"]],[25,26,["H7971","(H853)"]],[26,27,["H3605"]],[27,29,["H5971"]],[29,32,["H376"]],[32,35,["H1004"]]]},{"k":7444,"v":[[0,2,["H7586"]],[2,3,["H1571"]],[3,4,["H1980"]],[4,5,["H1004"]],[5,7,["H1390"]],[7,10,["H1980"]],[10,11,["H5973"]],[11,16,["H2428"]],[16,17,["H834"]],[17,18,["H3820"]],[18,19,["H430"]],[19,21,["H5060"]]]},{"k":7445,"v":[[0,3,["H1121"]],[3,5,["H1100"]],[5,6,["H559"]],[6,7,["H4100"]],[7,9,["H2088"]],[9,11,["H3467"]],[11,15,["H959"]],[15,18,["H935"]],[18,20,["H3808"]],[20,21,["H4503"]],[21,26,["H2790"]]]},{"k":7446,"v":[[0,2,["H5176"]],[2,4,["H5984"]],[4,6,["H5927"]],[6,8,["H2583"]],[8,9,["H5921"]],[9,10,["H3003","H1568"]],[10,12,["H3605"]],[12,14,["H376"]],[14,16,["H3003"]],[16,17,["H559"]],[17,18,["H413"]],[18,19,["H5176"]],[19,20,["H3772"]],[20,22,["H1285"]],[22,28,["H5647"]],[28,29,[]]]},{"k":7447,"v":[[0,2,["H5176"]],[2,4,["H5984"]],[4,5,["H559","H413"]],[5,8,["H2063"]],[8,12,["H3772"]],[12,21,["H5365"]],[21,22,["H3605"]],[22,24,["H3225"]],[24,25,["H5869"]],[25,27,["H7760"]],[27,31,["H2781"]],[31,32,["H5921"]],[32,33,["H3605"]],[33,34,["H3478"]]]},{"k":7448,"v":[[0,3,["H2205"]],[3,5,["H3003"]],[5,6,["H559"]],[6,7,["H413"]],[7,11,["H7651"]],[11,12,["H3117"]],[12,13,["H7503"]],[13,17,["H7971"]],[17,18,["H4397"]],[18,20,["H3605"]],[20,22,["H1366"]],[22,24,["H3478"]],[24,27,["H518"]],[27,31,["H369"]],[31,33,["H3467"]],[33,38,["H3318"]],[38,39,["H413"]],[39,40,[]]]},{"k":7449,"v":[[0,2,["H935"]],[2,4,["H4397"]],[4,6,["H1390"]],[6,8,["H7586"]],[8,10,["H1696"]],[10,12,["H1697"]],[12,15,["H241"]],[15,18,["H5971"]],[18,20,["H3605"]],[20,22,["H5971"]],[22,24,["H5375","(H853)"]],[24,26,["H6963"]],[26,28,["H1058"]]]},{"k":7450,"v":[[0,2,["H2009"]],[2,3,["H7586"]],[3,4,["H935"]],[4,5,["H310"]],[5,7,["H1241"]],[7,9,["H4480"]],[9,11,["H7704"]],[11,13,["H7586"]],[13,14,["H559"]],[14,15,["H4100"]],[15,18,["H5971"]],[18,19,["H3588"]],[19,21,["H1058"]],[21,24,["H5608"]],[24,25,["(H853)"]],[25,27,["H1697"]],[27,30,["H376"]],[30,32,["H3003"]]]},{"k":7451,"v":[[0,3,["H7307"]],[3,5,["H430"]],[5,6,["H6743"]],[6,7,["H5921"]],[7,8,["H7586"]],[8,11,["H8085","(H853)"]],[11,12,["H428"]],[12,13,["H1697"]],[13,16,["H639"]],[16,18,["H2734"]],[18,19,["H3966"]]]},{"k":7452,"v":[[0,3,["H3947"]],[3,5,["H6776"]],[5,7,["H1241"]],[7,12,["H5408"]],[12,14,["H7971"]],[14,17,["H3605"]],[17,19,["H1366"]],[19,21,["H3478"]],[21,24,["H3027"]],[24,26,["H4397"]],[26,27,["H559"]],[27,28,["H834"]],[28,31,["H369","H3318"]],[31,32,["H310"]],[32,33,["H7586"]],[33,35,["H310"]],[35,36,["H8050"]],[36,37,["H3541"]],[37,41,["H6213"]],[41,44,["H1241"]],[44,47,["H6343"]],[47,50,["H3068"]],[50,51,["H5307"]],[51,52,["H5921"]],[52,54,["H5971"]],[54,58,["H3318"]],[58,60,["H259"]],[60,61,["H376"]]]},{"k":7453,"v":[[0,4,["H6485"]],[4,7,["H966"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,12,["H1961"]],[12,13,["H7969"]],[13,14,["H3967"]],[14,15,["H505"]],[15,18,["H376"]],[18,20,["H3063"]],[20,21,["H7970"]],[21,22,["H505"]]]},{"k":7454,"v":[[0,3,["H559"]],[3,6,["H4397"]],[6,8,["H935"]],[8,9,["H3541"]],[9,12,["H559"]],[12,15,["H376"]],[15,17,["H3003","H1568"]],[17,19,["H4279"]],[19,24,["H8121"]],[24,26,["H2527"]],[26,29,["H1961"]],[29,30,["H8668"]],[30,33,["H4397"]],[33,34,["H935"]],[34,36,["H5046"]],[36,40,["H376"]],[40,42,["H3003"]],[42,46,["H8055"]]]},{"k":7455,"v":[[0,3,["H376"]],[3,5,["H3003"]],[5,6,["H559"]],[6,8,["H4279"]],[8,12,["H3318"]],[12,13,["H413"]],[13,18,["H6213"]],[18,21,["H3605"]],[21,23,["H5869"]],[23,24,["H2896"]],[24,26,[]]]},{"k":7456,"v":[[0,3,["H1961"]],[3,7,["H4480","H4283"]],[7,9,["H7586"]],[9,10,["H7760","(H853)"]],[10,12,["H5971"]],[12,14,["H7969"]],[14,15,["H7218"]],[15,18,["H935"]],[18,21,["H8432"]],[21,24,["H4264"]],[24,27,["H1242"]],[27,28,["H821"]],[28,30,["H5221","(H853)"]],[30,32,["H5983"]],[32,33,["H5704"]],[33,35,["H2527"]],[35,38,["H3117"]],[38,43,["H1961"]],[43,47,["H7604"]],[47,49,["H6327"]],[49,52,["H8147"]],[52,56,["H3808"]],[56,57,["H7604"]],[57,58,["H3162"]]]},{"k":7457,"v":[[0,3,["H5971"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H8050"]],[6,7,["H4310"]],[7,11,["H559"]],[11,13,["H7586"]],[13,14,["H4427"]],[14,15,["H5921"]],[15,17,["H5414"]],[17,19,["H376"]],[19,26,["H4191"]]]},{"k":7458,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,6,["H3808"]],[6,8,["H376"]],[8,12,["H4191"]],[12,13,["H2088"]],[13,14,["H3117"]],[14,15,["H3588"]],[15,17,["H3117"]],[17,19,["H3068"]],[19,21,["H6213"]],[21,22,["H8668"]],[22,24,["H3478"]]]},{"k":7459,"v":[[0,2,["H559"]],[2,3,["H8050"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H1980"]],[7,11,["H1980"]],[11,13,["H1537"]],[13,15,["H2318"]],[15,17,["H4410"]],[17,18,["H8033"]]]},{"k":7460,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H1980"]],[5,7,["H1537"]],[7,9,["H8033"]],[9,13,["H4427","(H853)","H7586"]],[13,14,["H6440"]],[14,16,["H3068"]],[16,18,["H1537"]],[18,20,["H8033"]],[20,22,["H2076"]],[22,23,["H2077"]],[23,26,["H8002"]],[26,27,["H6440"]],[27,29,["H3068"]],[29,31,["H8033"]],[31,32,["H7586"]],[32,34,["H3605"]],[34,36,["H376"]],[36,38,["H3478"]],[38,39,["H8055"]],[39,40,["H3966"]]]},{"k":7461,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3605"]],[5,6,["H3478"]],[6,7,["H2009"]],[7,10,["H8085"]],[10,13,["H6963"]],[13,15,["H3605"]],[15,16,["H834"]],[16,18,["H559"]],[18,25,["H4427","H4428"]],[25,26,["H5921"]],[26,27,[]]]},{"k":7462,"v":[[0,2,["H6258"]],[2,3,["H2009"]],[3,5,["H4428"]],[5,6,["H1980"]],[6,7,["H6440"]],[7,10,["H589"]],[10,12,["H2204"]],[12,14,["H7867"]],[14,16,["H2009"]],[16,18,["H1121"]],[18,20,["H854"]],[20,23,["H589"]],[23,25,["H1980"]],[25,26,["H6440"]],[26,30,["H4480","H5271"]],[30,31,["H5704"]],[31,32,["H2088"]],[32,33,["H3117"]]]},{"k":7463,"v":[[0,1,["H2009"]],[1,5,["H6030"]],[5,8,["H5048"]],[8,10,["H3068"]],[10,12,["H5048"]],[12,14,["H4899"]],[14,15,["H4310","(H853)"]],[15,16,["H7794"]],[16,19,["H3947"]],[19,21,["H4310"]],[21,22,["H2543"]],[22,25,["H3947"]],[25,27,["H4310"]],[27,30,["H6231","(H853)"]],[30,31,["H4310"]],[31,34,["H7533"]],[34,38,["H4480","H3027","H4310"]],[38,41,["H3947"]],[41,43,["H3724"]],[43,45,["H5956"]],[45,47,["H5869"]],[47,52,["H7725"]],[52,54,[]]]},{"k":7464,"v":[[0,3,["H559"]],[3,6,["H3808"]],[6,7,["H6231"]],[7,9,["H3808"]],[9,10,["H7533"]],[10,12,["H3808"]],[12,15,["H3947"]],[15,16,["H3972"]],[16,20,["H4480","H3027","H376"]]]},{"k":7465,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H3068"]],[7,9,["H5707"]],[9,14,["H4899"]],[14,16,["H5707"]],[16,17,["H2088"]],[17,18,["H3117"]],[18,19,["H3588"]],[19,22,["H3808"]],[22,23,["H4672"]],[23,24,["H3972"]],[24,27,["H3027"]],[27,30,["H559"]],[30,33,["H5707"]]]},{"k":7466,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,10,["H3068"]],[10,11,["H834"]],[11,12,["H6213","(H853)"]],[12,13,["H4872"]],[13,15,["H175"]],[15,17,["H834"]],[17,18,["H5927","(H853)"]],[18,20,["H1"]],[20,25,["H4480","H776"]],[25,27,["H4714"]]]},{"k":7467,"v":[[0,1,["H6258"]],[1,4,["H3320"]],[4,8,["H8199"]],[8,9,["H854"]],[9,11,["H6440"]],[11,13,["H3068"]],[13,14,["(H853)"]],[14,15,["H3605"]],[15,18,["H6666"]],[18,21,["H3068"]],[21,22,["H834"]],[22,24,["H6213"]],[24,25,["H854"]],[25,28,["H854"]],[28,30,["H1"]]]},{"k":7468,"v":[[0,1,["H834"]],[1,2,["H3290"]],[2,4,["H935"]],[4,6,["H4714"]],[6,9,["H1"]],[9,10,["H2199"]],[10,11,["H413"]],[11,13,["H3068"]],[13,16,["H3068"]],[16,17,["H7971","(H853)"]],[17,18,["H4872"]],[18,20,["H175"]],[20,23,["H3318","(H853)"]],[23,25,["H1"]],[25,28,["H4480","H4714"]],[28,32,["H3427"]],[32,34,["H2088"]],[34,35,["H4725"]]]},{"k":7469,"v":[[0,4,["H7911","(H853)"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H4376"]],[10,14,["H3027"]],[14,16,["H5516"]],[16,17,["H8269"]],[17,20,["H6635"]],[20,22,["H2674"]],[22,26,["H3027"]],[26,29,["H6430"]],[29,33,["H3027"]],[33,36,["H4428"]],[36,38,["H4124"]],[38,41,["H3898"]],[41,43,[]]]},{"k":7470,"v":[[0,3,["H2199"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H559"]],[8,11,["H2398"]],[11,12,["H3588"]],[12,15,["H5800","(H853)"]],[15,17,["H3068"]],[17,20,["H5647","(H853)"]],[20,21,["H1168"]],[21,23,["H6252"]],[23,25,["H6258"]],[25,26,["H5337"]],[26,31,["H4480","H3027"]],[31,34,["H341"]],[34,38,["H5647"]],[38,39,[]]]},{"k":7471,"v":[[0,3,["H3068"]],[3,4,["H7971","(H853)"]],[4,5,["H3378"]],[5,7,["H917"]],[7,9,["H3316"]],[9,11,["H8050"]],[11,13,["H5337"]],[13,18,["H4480","H3027"]],[18,21,["H341"]],[21,24,["H4480","H5439"]],[24,27,["H3427"]],[27,28,["H983"]]]},{"k":7472,"v":[[0,4,["H7200"]],[4,5,["H3588"]],[5,6,["H5176"]],[6,8,["H4428"]],[8,11,["H1121"]],[11,13,["H5983"]],[13,14,["H935"]],[14,15,["H5921"]],[15,18,["H559"]],[18,21,["H3808"]],[21,22,["H3588"]],[22,24,["H4428"]],[24,26,["H4427"]],[26,27,["H5921"]],[27,31,["H3068"]],[31,33,["H430"]],[33,36,["H4428"]]]},{"k":7473,"v":[[0,1,["H6258"]],[1,3,["H2009"]],[3,5,["H4428"]],[5,6,["H834"]],[6,9,["H977"]],[9,11,["H834"]],[11,14,["H7592"]],[14,16,["H2009"]],[16,18,["H3068"]],[18,20,["H5414"]],[20,22,["H4428"]],[22,23,["H5921"]],[23,24,[]]]},{"k":7474,"v":[[0,1,["H518"]],[1,4,["H3372","(H853)"]],[4,6,["H3068"]],[6,8,["H5647"]],[8,11,["H8085"]],[11,13,["H6963"]],[13,15,["H3808"]],[15,17,["H4784","(H853)"]],[17,19,["H6310"]],[19,22,["H3068"]],[22,25,["H1571"]],[25,26,["H859"]],[26,28,["H1571"]],[28,30,["H4428"]],[30,31,["H834"]],[31,32,["H4427"]],[32,33,["H5921"]],[33,35,["H1961"]],[35,36,["H310"]],[36,38,["H3068"]],[38,40,["H430"]]]},{"k":7475,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H8085"]],[6,8,["H6963"]],[8,11,["H3068"]],[11,14,["H4784","(H853)"]],[14,16,["H6310"]],[16,19,["H3068"]],[19,23,["H3027"]],[23,26,["H3068"]],[26,27,["H1961"]],[27,35,["H1"]]]},{"k":7476,"v":[[0,1,["H6258"]],[1,2,["H1571"]],[2,3,["H3320"]],[3,5,["H7200","(H853)"]],[5,6,["H2088"]],[6,7,["H1419"]],[7,8,["H1697"]],[8,9,["H834"]],[9,11,["H3068"]],[11,13,["H6213"]],[13,16,["H5869"]]]},{"k":7477,"v":[[0,3,["H3808"]],[3,4,["H2406"]],[4,5,["H7105"]],[5,7,["H3117"]],[7,10,["H7121"]],[10,11,["H413"]],[11,13,["H3068"]],[13,17,["H5414"]],[17,18,["H6963"]],[18,20,["H4306"]],[20,24,["H3045"]],[24,26,["H7200"]],[26,27,["H3588"]],[27,29,["H7451"]],[29,31,["H7227"]],[31,32,["H834"]],[32,35,["H6213"]],[35,38,["H5869"]],[38,41,["H3068"]],[41,43,["H7592"]],[43,46,["H4428"]]]},{"k":7478,"v":[[0,2,["H8050"]],[2,3,["H7121"]],[3,4,["H413"]],[4,6,["H3068"]],[6,9,["H3068"]],[9,10,["H5414"]],[10,11,["H6963"]],[11,13,["H4306"]],[13,14,["H1931"]],[14,15,["H3117"]],[15,17,["H3605"]],[17,19,["H5971"]],[19,20,["H3966"]],[20,21,["H3372","(H853)"]],[21,23,["H3068"]],[23,25,["H8050"]]]},{"k":7479,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H559"]],[5,6,["H413"]],[6,7,["H8050"]],[7,8,["H6419"]],[8,9,["H1157"]],[9,11,["H5650"]],[11,12,["H413"]],[12,14,["H3068"]],[14,16,["H430"]],[16,19,["H4191"]],[19,20,["H408"]],[20,21,["H3588"]],[21,24,["H3254"]],[24,25,["H5921"]],[25,26,["H3605"]],[26,28,["H2403"]],[28,30,["H7451"]],[30,32,["H7592"]],[32,35,["H4428"]]]},{"k":7480,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H3372"]],[7,8,["H408"]],[8,9,["H859"]],[9,11,["H6213","(H853)"]],[11,12,["H3605"]],[12,13,["H2063"]],[13,14,["H7451"]],[14,15,["H389"]],[15,18,["H408","H5493"]],[18,20,["H4480","H310"]],[20,22,["H3068"]],[22,24,["H5647","(H853)"]],[24,26,["H3068"]],[26,28,["H3605"]],[28,30,["H3824"]]]},{"k":7481,"v":[[0,5,["H3808","H5493"]],[5,6,["H3588"]],[6,11,["H310"]],[11,12,["H8414"]],[12,14,["H834"]],[14,15,["H3808"]],[15,16,["H3276"]],[16,17,["H3808"]],[17,18,["H5337"]],[18,19,["H3588"]],[19,20,["H1992"]],[20,22,["H8414"]]]},{"k":7482,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H3808"]],[5,6,["H5203","(H853)"]],[6,8,["H5971"]],[8,11,["H1419"]],[11,12,["H8034"]],[12,13,["H5668"]],[13,14,["H3588"]],[14,17,["H2974"]],[17,19,["H3068"]],[19,21,["H6213"]],[21,24,["H5971"]]]},{"k":7483,"v":[[0,1,["H1571"]],[1,4,["H595"]],[4,6,["H2486"]],[6,10,["H4480","H2398"]],[10,13,["H3068"]],[13,15,["H4480","H2308"]],[15,17,["H6419"]],[17,18,["H1157"]],[18,23,["H3384"]],[23,26,["H2896"]],[26,29,["H3477"]],[29,30,["H1870"]]]},{"k":7484,"v":[[0,1,["H389"]],[1,2,["H3372","(H853)"]],[2,4,["H3068"]],[4,6,["H5647"]],[6,9,["H571"]],[9,11,["H3605"]],[11,13,["H3824"]],[13,14,["H3588"]],[14,15,["H7200","(H853)"]],[15,16,["H834"]],[16,21,["H1431"]],[21,22,["H5973"]],[22,23,[]]]},{"k":7485,"v":[[0,2,["H518"]],[2,7,["H7489","H7489"]],[7,11,["H5595"]],[11,12,["H1571"]],[12,13,["H859"]],[13,14,["H1571"]],[14,16,["H4428"]]]},{"k":7486,"v":[[0,1,["H7586"]],[1,2,["H4427"]],[2,3,["H1121"]],[3,4,["H8141"]],[4,9,["H4427"]],[9,10,["H8147"]],[10,11,["H8141"]],[11,12,["H5921"]],[12,13,["H3478"]]]},{"k":7487,"v":[[0,1,["H7586"]],[1,2,["H977"]],[2,4,["H7969"]],[4,5,["H505"]],[5,8,["H4480","H3478"]],[8,11,["H505"]],[11,12,["H1961"]],[12,13,["H5973"]],[13,14,["H7586"]],[14,16,["H4363"]],[16,19,["H2022"]],[19,20,["H1008"]],[20,23,["H505"]],[23,24,["H1961"]],[24,25,["H5973"]],[25,26,["H3083"]],[26,28,["H1390"]],[28,30,["H1144"]],[30,33,["H3499"]],[33,36,["H5971"]],[36,38,["H7971"]],[38,40,["H376"]],[40,43,["H168"]]]},{"k":7488,"v":[[0,2,["H3083"]],[2,3,["H5221","(H853)"]],[3,5,["H5333"]],[5,8,["H6430"]],[8,9,["H834"]],[9,12,["H1387"]],[12,15,["H6430"]],[15,16,["H8085"]],[16,20,["H7586"]],[20,21,["H8628"]],[21,23,["H7782"]],[23,25,["H3605"]],[25,27,["H776"]],[27,28,["H559"]],[28,31,["H5680"]],[31,32,["H8085"]]]},{"k":7489,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,4,["H8085"]],[4,5,["H559"]],[5,7,["H7586"]],[7,9,["H5221","(H853)"]],[9,11,["H5333"]],[11,14,["H6430"]],[14,17,["H3478"]],[17,18,["H1571"]],[18,22,["H887"]],[22,25,["H6430"]],[25,28,["H5971"]],[28,31,["H6817"]],[31,32,["H310"]],[32,33,["H7586"]],[33,35,["H1537"]]]},{"k":7490,"v":[[0,3,["H6430"]],[3,6,["H622"]],[6,8,["H3898"]],[8,9,["H5973"]],[9,10,["H3478"]],[10,11,["H7970"]],[11,12,["H505"]],[12,13,["H7393"]],[13,15,["H8337"]],[15,16,["H505"]],[16,17,["H6571"]],[17,19,["H5971"]],[19,22,["H2344"]],[22,23,["H834"]],[23,25,["H5921"]],[25,27,["H3220"]],[27,28,["H8193"]],[28,30,["H7230"]],[30,34,["H5927"]],[34,36,["H2583"]],[36,38,["H4363"]],[38,39,["H6926"]],[39,41,["H1007"]]]},{"k":7491,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,6,["H7200"]],[6,7,["H3588"]],[7,12,["H6887"]],[12,13,["H3588"]],[13,15,["H5971"]],[15,17,["H5065"]],[17,20,["H5971"]],[20,23,["H2244"]],[23,25,["H4631"]],[25,28,["H2337"]],[28,31,["H5553"]],[31,35,["H6877"]],[35,38,["H953"]]]},{"k":7492,"v":[[0,5,["H5680"]],[5,7,["H5674","(H853)"]],[7,8,["H3383"]],[8,11,["H776"]],[11,13,["H1410"]],[13,15,["H1568"]],[15,18,["H7586"]],[18,21,["H5750"]],[21,23,["H1537"]],[23,25,["H3605"]],[25,27,["H5971"]],[27,28,["H310"]],[28,30,["H2729"]]]},{"k":7493,"v":[[0,3,["H3176"]],[3,4,["H7651"]],[4,5,["H3117"]],[5,10,["H4150"]],[10,11,["H834"]],[11,12,["H8050"]],[12,16,["H8050"]],[16,17,["H935"]],[17,18,["H3808"]],[18,20,["H1537"]],[20,23,["H5971"]],[23,25,["H6327"]],[25,26,["H4480","H5921"]],[26,27,[]]]},{"k":7494,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,5,["H5066"]],[5,8,["H5930"]],[8,9,["H413"]],[9,13,["H8002"]],[13,16,["H5927"]],[16,19,["H5930"]]]},{"k":7495,"v":[[0,5,["H1961"]],[5,14,["H3615"]],[14,16,["H5927"]],[16,19,["H5930"]],[19,20,["H2009"]],[20,21,["H8050"]],[21,22,["H935"]],[22,24,["H7586"]],[24,26,["H3318"]],[26,28,["H7125"]],[28,33,["H1288"]],[33,34,[]]]},{"k":7496,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H4100"]],[4,7,["H6213"]],[7,9,["H7586"]],[9,10,["H559"]],[10,11,["H3588"]],[11,13,["H7200"]],[13,14,["H3588"]],[14,16,["H5971"]],[16,18,["H5310"]],[18,19,["H4480","H5921"]],[19,23,["H859"]],[23,24,["H935"]],[24,25,["H3808"]],[25,28,["H3117"]],[28,29,["H4150"]],[29,33,["H6430"]],[33,36,["H622"]],[36,38,["H4363"]]]},{"k":7497,"v":[[0,2,["H559"]],[2,5,["H6430"]],[5,8,["H3381"]],[8,9,["H6258"]],[9,10,["H413"]],[10,13,["H1537"]],[13,17,["H3808"]],[17,19,["H2470"]],[19,20,["H6440"]],[20,22,["H3068"]],[22,25,["H662"]],[25,28,["H5927"]],[28,31,["H5930"]]]},{"k":7498,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7586"]],[5,9,["H5528"]],[9,12,["H3808"]],[12,13,["H8104","(H853)"]],[13,15,["H4687"]],[15,18,["H3068"]],[18,20,["H430"]],[20,21,["H834"]],[21,23,["H6680"]],[23,25,["H3588"]],[25,26,["H6258"]],[26,29,["H3068"]],[29,31,["H3559","(H853)"]],[31,33,["H4467"]],[33,34,["H413"]],[34,35,["H3478"]],[35,37,["H5704","H5769"]]]},{"k":7499,"v":[[0,2,["H6258"]],[2,4,["H4467"]],[4,6,["H3808"]],[6,7,["H6965"]],[7,9,["H3068"]],[9,11,["H1245"]],[11,14,["H376"]],[14,18,["H3824"]],[18,21,["H3068"]],[21,23,["H6680"]],[23,27,["H5057"]],[27,28,["H5921"]],[28,30,["H5971"]],[30,31,["H3588"]],[31,34,["H3808"]],[34,35,["H8104"]],[35,36,["(H853)"]],[36,37,["H834"]],[37,39,["H3068"]],[39,40,["H6680"]],[40,41,[]]]},{"k":7500,"v":[[0,2,["H8050"]],[2,3,["H6965"]],[3,7,["H5927"]],[7,8,["H4480"]],[8,9,["H1537"]],[9,11,["H1390"]],[11,13,["H1144"]],[13,15,["H7586"]],[15,16,["H6485","(H853)"]],[16,18,["H5971"]],[18,21,["H4672"]],[21,22,["H5973"]],[22,25,["H8337"]],[25,26,["H3967"]],[26,27,["H376"]]]},{"k":7501,"v":[[0,2,["H7586"]],[2,4,["H3083"]],[4,6,["H1121"]],[6,9,["H5971"]],[9,12,["H4672"]],[12,13,["H5973"]],[13,15,["H3427"]],[15,17,["H1387"]],[17,19,["H1144"]],[19,22,["H6430"]],[22,23,["H2583"]],[23,25,["H4363"]]]},{"k":7502,"v":[[0,3,["H7843"]],[3,5,["H3318"]],[5,8,["H4480","H4264"]],[8,11,["H6430"]],[11,13,["H7969"]],[13,14,["H7218"]],[14,15,["H259"]],[15,16,["H7218"]],[16,17,["H6437"]],[17,18,["H413"]],[18,20,["H1870"]],[20,24,["H6084"]],[24,25,["H413"]],[25,27,["H776"]],[27,29,["H7777"]]]},{"k":7503,"v":[[0,2,["H259"]],[2,3,["H7218"]],[3,4,["H6437"]],[4,6,["H1870"]],[6,8,["H1032"]],[8,10,["H259"]],[10,11,["H7218"]],[11,12,["H6437"]],[12,15,["H1870"]],[15,18,["H1366"]],[18,20,["H8259"]],[20,21,["H5921"]],[21,23,["H1516"]],[23,25,["H6650"]],[25,28,["H4057"]]]},{"k":7504,"v":[[0,4,["H3808"]],[4,5,["H2796"]],[5,6,["H4672"]],[6,8,["H3605"]],[8,10,["H776"]],[10,12,["H3478"]],[12,13,["H3588"]],[13,15,["H6430"]],[15,16,["H559"]],[16,17,["H6435"]],[17,19,["H5680"]],[19,20,["H6213"]],[20,22,["H2719"]],[22,23,["H176"]],[23,24,["H2595"]]]},{"k":7505,"v":[[0,2,["H3605"]],[2,4,["H3478"]],[4,6,["H3381"]],[6,9,["H6430"]],[9,11,["H3913"]],[11,13,["H376","(H853)"]],[13,15,["H4282"]],[15,18,["H855"]],[18,21,["H7134"]],[21,24,["H4281"]]]},{"k":7506,"v":[[0,3,["H1961"]],[3,5,["H6477","H6310"]],[5,8,["H4281"]],[8,12,["H855"]],[12,16,["H7969","H7053"]],[16,20,["H7134"]],[20,23,["H5324"]],[23,25,["H1861"]]]},{"k":7507,"v":[[0,5,["H1961"]],[5,8,["H3117"]],[8,10,["H4421"]],[10,14,["H3808"]],[14,15,["H2719"]],[15,17,["H2595"]],[17,18,["H4672"]],[18,21,["H3027"]],[21,23,["H3605"]],[23,26,["H5971"]],[26,27,["H834"]],[27,29,["H854"]],[29,30,["H7586"]],[30,32,["H3083"]],[32,35,["H7586"]],[35,38,["H3083"]],[38,40,["H1121"]],[40,43,["H4672"]]]},{"k":7508,"v":[[0,3,["H4673"]],[3,6,["H6430"]],[6,8,["H3318"]],[8,9,["H413"]],[9,11,["H4569"]],[11,13,["H4363"]]]},{"k":7509,"v":[[0,5,["H1961"]],[5,8,["H3117"]],[8,10,["H3083"]],[10,12,["H1121"]],[12,14,["H7586"]],[14,15,["H559"]],[15,16,["H413"]],[16,19,["H5288"]],[19,21,["H5375"]],[21,23,["H3627"]],[23,24,["H1980"]],[24,29,["H5674"]],[29,30,["H413"]],[30,32,["H6430"]],[32,33,["H4673"]],[33,34,["H834"]],[34,39,["H4480","H5676","H1975"]],[39,42,["H5046"]],[42,43,["H3808"]],[43,45,["H1"]]]},{"k":7510,"v":[[0,2,["H7586"]],[2,3,["H3427"]],[3,7,["H7097"]],[7,9,["H1390"]],[9,10,["H8478"]],[10,13,["H7416"]],[13,14,["H834"]],[14,17,["H4051"]],[17,20,["H5971"]],[20,21,["H834"]],[21,23,["H5973"]],[23,27,["H8337"]],[27,28,["H3967"]],[28,29,["H376"]]]},{"k":7511,"v":[[0,2,["H281"]],[2,4,["H1121"]],[4,6,["H285"]],[6,7,["H350"]],[7,8,["H251"]],[8,10,["H1121"]],[10,12,["H6372"]],[12,14,["H1121"]],[14,16,["H5941"]],[16,18,["H3068"]],[18,19,["H3548"]],[19,21,["H7887"]],[21,22,["H5375"]],[22,24,["H646"]],[24,27,["H5971"]],[27,28,["H3045"]],[28,29,["H3808"]],[29,30,["H3588"]],[30,31,["H3083"]],[31,33,["H1980"]]]},{"k":7512,"v":[[0,2,["H996"]],[2,4,["H4569"]],[4,6,["H834"]],[6,7,["H3083"]],[7,8,["H1245"]],[8,11,["H5674"]],[11,12,["H5921"]],[12,14,["H6430"]],[14,15,["H4673"]],[15,19,["H8127"]],[19,20,["H5553"]],[20,23,["H4480","H2088"]],[23,24,["H4480","H5676"]],[24,27,["H8127"]],[27,28,["H5553"]],[28,31,["H4480","H2088"]],[31,32,["H4480","H5676"]],[32,35,["H8034"]],[35,38,["H259"]],[38,40,["H949"]],[40,43,["H8034"]],[43,46,["H259"]],[46,47,["H5573"]]]},{"k":7513,"v":[[0,2,["H8127"]],[2,5,["H259"]],[5,7,["H4690"]],[7,8,["H4480","H6828"]],[8,10,["H4136"]],[10,11,["H4363"]],[11,14,["H259"]],[14,15,["H4480","H5045"]],[15,17,["H4136"]],[17,18,["H1387"]]]},{"k":7514,"v":[[0,2,["H3083"]],[2,3,["H559"]],[3,4,["H413"]],[4,7,["H5288"]],[7,9,["H5375"]],[9,11,["H3627"]],[11,12,["H1980"]],[12,17,["H5674"]],[17,18,["H413"]],[18,20,["H4673"]],[20,22,["H428"]],[22,23,["H6189"]],[23,27,["H194"]],[27,29,["H3068"]],[29,31,["H6213"]],[31,34,["H3588"]],[34,37,["H369"]],[37,38,["H4622"]],[38,41,["H3068"]],[41,43,["H3467"]],[43,45,["H7227"]],[45,46,["H176"]],[46,48,["H4592"]]]},{"k":7515,"v":[[0,3,["H3627","H5375"]],[3,4,["H559"]],[4,7,["H6213"]],[7,8,["H3605"]],[8,9,["H834"]],[9,13,["H3824"]],[13,14,["H5186"]],[14,16,["H2009"]],[16,19,["H5973"]],[19,24,["H3824"]]]},{"k":7516,"v":[[0,2,["H559"]],[2,3,["H3083"]],[3,4,["H2009"]],[4,5,["H587"]],[5,8,["H5674"]],[8,9,["H413"]],[9,11,["H376"]],[11,16,["H1540"]],[16,17,["H413"]],[17,18,[]]]},{"k":7517,"v":[[0,1,["H518"]],[1,3,["H559"]],[3,4,["H3541"]],[4,5,["H413"]],[5,7,["H1826"]],[7,8,["H5704"]],[8,10,["H5060"]],[10,11,["H413"]],[11,17,["H5975"]],[17,20,["H8478"]],[20,23,["H3808"]],[23,25,["H5927"]],[25,26,["H413"]],[26,27,[]]]},{"k":7518,"v":[[0,2,["H518"]],[2,4,["H559"]],[4,5,["H3541"]],[5,7,["H5927"]],[7,8,["H5921"]],[8,14,["H5927"]],[14,15,["H3588"]],[15,17,["H3068"]],[17,19,["H5414"]],[19,23,["H3027"]],[23,25,["H2088"]],[25,29,["H226"]],[29,31,[]]]},{"k":7519,"v":[[0,2,["H8147"]],[2,6,["H1540"]],[6,7,["H413"]],[7,9,["H4673"]],[9,12,["H6430"]],[12,15,["H6430"]],[15,16,["H559"]],[16,17,["H2009"]],[17,19,["H5680"]],[19,21,["H3318"]],[21,23,["H4480"]],[23,25,["H2356"]],[25,26,["H834","H8033"]],[26,30,["H2244"]]]},{"k":7520,"v":[[0,3,["H376"]],[3,6,["H4675"]],[6,7,["H6030","(H853)"]],[7,8,["H3083"]],[8,11,["H3627","H5375"]],[11,13,["H559"]],[13,15,["H5927"]],[15,16,["H413"]],[16,21,["H3045"]],[21,24,["H1697"]],[24,26,["H3083"]],[26,27,["H559"]],[27,28,["H413"]],[28,30,["H3627","H5375"]],[30,32,["H5927"]],[32,33,["H310"]],[33,35,["H3588"]],[35,37,["H3068"]],[37,39,["H5414"]],[39,43,["H3027"]],[43,45,["H3478"]]]},{"k":7521,"v":[[0,2,["H3083"]],[2,4,["H5927"]],[4,5,["H5921"]],[5,7,["H3027"]],[7,9,["H5921"]],[9,11,["H7272"]],[11,14,["H3627","H5375"]],[14,15,["H310"]],[15,19,["H5307"]],[19,20,["H6440"]],[20,21,["H3083"]],[21,24,["H3627","H5375"]],[24,25,["H4191"]],[25,26,["H310"]],[26,27,[]]]},{"k":7522,"v":[[0,3,["H7223"]],[3,4,["H4347"]],[4,5,["H834"]],[5,6,["H3083"]],[6,9,["H3627","H5375"]],[9,10,["H5221"]],[10,11,["H1961"]],[11,13,["H6242"]],[13,14,["H376"]],[14,20,["H2677"]],[20,21,["H4618"]],[21,23,["H7704"]],[23,26,["H6776"]],[26,30,[]]]},{"k":7523,"v":[[0,3,["H1961"]],[3,4,["H2731"]],[4,7,["H4264"]],[7,10,["H7704"]],[10,13,["H3605"]],[13,15,["H5971"]],[15,17,["H4673"]],[17,20,["H7843"]],[20,21,["H1992"]],[21,22,["H1571"]],[22,23,["H2729"]],[23,26,["H776"]],[26,27,["H7264"]],[27,30,["H1961"]],[30,33,["H430"]],[33,34,["H2731"]]]},{"k":7524,"v":[[0,3,["H6822"]],[3,5,["H7586"]],[5,7,["H1390"]],[7,9,["H1144"]],[9,10,["H7200"]],[10,12,["H2009"]],[12,14,["H1995"]],[14,16,["H4127"]],[16,19,["H1980"]],[19,22,["H1986"]],[22,24,[]]]},{"k":7525,"v":[[0,2,["H559"]],[2,3,["H7586"]],[3,6,["H5971"]],[6,7,["H834"]],[7,9,["H854"]],[9,11,["H6485"]],[11,12,["H4994"]],[12,14,["H7200"]],[14,15,["H4310"]],[15,17,["H1980"]],[17,18,["H4480","H5973"]],[18,24,["H6485"]],[24,25,["H2009"]],[25,26,["H3083"]],[26,29,["H3627","H5375"]],[29,31,["H369"]],[31,32,[]]]},{"k":7526,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,5,["H281"]],[5,7,["H5066"]],[7,9,["H727"]],[9,11,["H430"]],[11,12,["H3588"]],[12,14,["H727"]],[14,16,["H430"]],[16,17,["H1961"]],[17,19,["H1931"]],[19,20,["H3117"]],[20,23,["H1121"]],[23,25,["H3478"]]]},{"k":7527,"v":[[0,5,["H1961"]],[5,6,["H5704"]],[6,7,["H7586"]],[7,8,["H1696"]],[8,9,["H413"]],[9,11,["H3548"]],[11,14,["H1995"]],[14,15,["H834"]],[15,19,["H4264"]],[19,22,["H6430"]],[22,24,["H1980"]],[24,26,["H1980","H7227"]],[26,28,["H7586"]],[28,29,["H559"]],[29,30,["H413"]],[30,32,["H3548"]],[32,33,["H622"]],[33,35,["H3027"]]]},{"k":7528,"v":[[0,2,["H7586"]],[2,4,["H3605"]],[4,6,["H5971"]],[6,7,["H834"]],[7,9,["H854"]],[9,12,["H2199"]],[12,15,["H935"]],[15,16,["H5704"]],[16,18,["H4421"]],[18,20,["H2009"]],[20,22,["H376"]],[22,23,["H2719"]],[23,24,["H1961"]],[24,27,["H7453"]],[27,32,["H3966"]],[32,33,["H1419"]],[33,34,["H4103"]]]},{"k":7529,"v":[[0,3,["H5680"]],[3,5,["H1961"]],[5,8,["H6430"]],[8,9,["H865"]],[9,11,["H8032"]],[11,12,["H834"]],[12,14,["H5927"]],[14,15,["H5973"]],[15,19,["H4264"]],[19,24,["H5439"]],[24,26,["H1992"]],[26,27,["H1571"]],[27,30,["H1961"]],[30,31,["H5973"]],[31,33,["H3478"]],[33,34,["H834"]],[34,36,["H5973"]],[36,37,["H7586"]],[37,39,["H3083"]]]},{"k":7530,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,6,["H3478"]],[6,10,["H2244"]],[10,12,["H2022"]],[12,13,["H669"]],[13,16,["H8085"]],[16,17,["H3588"]],[17,19,["H6430"]],[19,20,["H5127"]],[20,22,["H1992"]],[22,23,["H1571"]],[23,25,["H1692"]],[25,26,["H310"]],[26,30,["H4421"]]]},{"k":7531,"v":[[0,3,["H3068"]],[3,4,["H3467","(H853)"]],[4,5,["H3478"]],[5,6,["H1931"]],[6,7,["H3117"]],[7,10,["H4421"]],[10,12,["H5674"]],[12,13,["(H853)"]],[13,14,["H1007"]]]},{"k":7532,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,7,["H5065"]],[7,8,["H1931"]],[8,9,["H3117"]],[9,11,["H7586"]],[11,13,["H422","(H853)"]],[13,15,["H5971"]],[15,16,["H559"]],[16,17,["H779"]],[17,20,["H376"]],[20,21,["H834"]],[21,22,["H398"]],[22,24,["H3899"]],[24,25,["H5704"]],[25,26,["H6153"]],[26,31,["H5358"]],[31,34,["H4480","H341"]],[34,36,["H3808","H3605"]],[36,39,["H5971"]],[39,40,["H2938"]],[40,42,["H3899"]]]},{"k":7533,"v":[[0,2,["H3605"]],[2,6,["H776"]],[6,7,["H935"]],[7,10,["H3293"]],[10,13,["H1961"]],[13,14,["H1706"]],[14,15,["H5921","H6440"]],[15,17,["H7704"]]]},{"k":7534,"v":[[0,4,["H5971"]],[4,6,["H935"]],[6,7,["H413"]],[7,9,["H3293"]],[9,10,["H2009"]],[10,12,["H1706"]],[12,13,["H1982"]],[13,15,["H369"]],[15,17,["H5381"]],[17,19,["H3027"]],[19,20,["H413"]],[20,22,["H6310"]],[22,23,["H3588"]],[23,25,["H5971"]],[25,26,["H3372","(H853)"]],[26,28,["H7621"]]]},{"k":7535,"v":[[0,2,["H3083"]],[2,3,["H8085"]],[3,4,["H3808"]],[4,7,["H1"]],[7,13,["H7650","(H853)","H5971"]],[13,17,["H7971","(H853)"]],[17,19,["H7097"]],[19,22,["H4294"]],[22,23,["H834"]],[23,27,["H3027"]],[27,29,["H2881"]],[29,30,["(H853)"]],[30,33,["H3295","H1706"]],[33,35,["H7725"]],[35,37,["H3027"]],[37,38,["H413"]],[38,40,["H6310"]],[40,43,["H5869"]],[43,45,["H215"]]]},{"k":7536,"v":[[0,2,["H6030"]],[2,3,["H376"]],[3,6,["H4480","H5971"]],[6,8,["H559"]],[8,10,["H1"]],[10,17,["H7650","H7650","(H853)","H5971"]],[17,18,["H559"]],[18,19,["H779"]],[19,22,["H376"]],[22,23,["H834"]],[23,24,["H398"]],[24,26,["H3899"]],[26,28,["H3117"]],[28,31,["H5971"]],[31,33,["H5888"]]]},{"k":7537,"v":[[0,2,["H559"]],[2,3,["H3083"]],[3,5,["H1"]],[5,7,["H5916","(H853)"]],[7,9,["H776"]],[9,10,["H7200"]],[10,13,["H4994"]],[13,14,["H3588"]],[14,16,["H5869"]],[16,19,["H215"]],[19,20,["H3588"]],[20,22,["H2938"]],[22,24,["H4592"]],[24,26,["H2088"]],[26,27,["H1706"]]]},{"k":7538,"v":[[0,3,["H637","H3588"]],[3,5,["H3588","H3863"]],[5,7,["H5971"]],[7,10,["H398","H398"]],[10,12,["H3117"]],[12,15,["H4480","H7998"]],[15,18,["H341"]],[18,19,["H834"]],[19,21,["H4672"]],[21,22,["H3588"]],[22,25,["H3808"]],[25,27,["H6258"]],[27,30,["H7235"]],[30,31,["H4347"]],[31,34,["H6430"]]]},{"k":7539,"v":[[0,3,["H5221"]],[3,5,["H6430"]],[5,6,["H1931"]],[6,7,["H3117"]],[7,9,["H4480","H4363"]],[9,11,["H357"]],[11,14,["H5971"]],[14,16,["H3966"]],[16,17,["H5888"]]]},{"k":7540,"v":[[0,3,["H5971"]],[3,4,["H6213"]],[4,5,["H413"]],[5,7,["H7998"]],[7,9,["H3947"]],[9,10,["H6629"]],[10,12,["H1241"]],[12,14,["H1121","H1241"]],[14,16,["H7819"]],[16,20,["H776"]],[20,23,["H5971"]],[23,25,["H398"]],[25,27,["H5921"]],[27,29,["H1818"]]]},{"k":7541,"v":[[0,3,["H5046"]],[3,4,["H7586"]],[4,5,["H559"]],[5,6,["H2009"]],[6,8,["H5971"]],[8,9,["H2398"]],[9,12,["H3068"]],[12,16,["H398"]],[16,17,["H5921"]],[17,19,["H1818"]],[19,22,["H559"]],[22,25,["H898"]],[25,26,["H1556"]],[26,28,["H1419"]],[28,29,["H68"]],[29,30,["H413"]],[30,33,["H3117"]]]},{"k":7542,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,5,["H6327"]],[5,8,["H5971"]],[8,10,["H559"]],[10,15,["H5066","H413"]],[15,17,["H376"]],[17,19,["H7794"]],[19,22,["H376"]],[22,24,["H7716"]],[24,26,["H7819"]],[26,28,["H2088"]],[28,30,["H398"]],[30,32,["H2398"]],[32,33,["H3808"]],[33,36,["H3068"]],[36,38,["H398"]],[38,39,["H413"]],[39,41,["H1818"]],[41,43,["H3605"]],[43,45,["H5971"]],[45,46,["H5066"]],[46,48,["H376"]],[48,50,["H7794"]],[50,51,["H3027"]],[51,54,["H3915"]],[54,56,["H7819"]],[56,58,["H8033"]]]},{"k":7543,"v":[[0,2,["H7586"]],[2,3,["H1129"]],[3,5,["H4196"]],[5,8,["H3068"]],[8,13,["H2490"]],[13,14,["H4196"]],[14,17,["H1129"]],[17,20,["H3068"]]]},{"k":7544,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,7,["H3381"]],[7,8,["H310"]],[8,10,["H6430"]],[10,12,["H3915"]],[12,14,["H962"]],[14,16,["H5704"]],[16,18,["H1242"]],[18,19,["H216"]],[19,23,["H3808"]],[23,24,["H7604"]],[24,26,["H376"]],[26,31,["H559"]],[31,32,["H6213"]],[32,33,["H3605"]],[33,34,["H5869"]],[34,35,["H2896"]],[35,39,["H559"]],[39,41,["H3548"]],[41,45,["H7126"]],[45,46,["H1988"]],[46,47,["H413"]],[47,48,["H430"]]]},{"k":7545,"v":[[0,2,["H7586"]],[2,4,["H7592"]],[4,6,["H430"]],[6,10,["H3381"]],[10,11,["H310"]],[11,13,["H6430"]],[13,16,["H5414"]],[16,20,["H3027"]],[20,22,["H3478"]],[22,25,["H6030"]],[25,27,["H3808"]],[27,28,["H1931"]],[28,29,["H3117"]]]},{"k":7546,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,6,["H5066"]],[6,7,["H1988"]],[7,8,["H3605"]],[8,10,["H6438"]],[10,13,["H5971"]],[13,15,["H3045"]],[15,17,["H7200"]],[17,18,["H4100"]],[18,20,["H2403"]],[20,22,["H1961"]],[22,23,["H2063"]],[23,24,["H3117"]]]},{"k":7547,"v":[[0,1,["H3588"]],[1,4,["H3068"]],[4,5,["H2416"]],[5,7,["H3467","(H853)"]],[7,8,["H3478"]],[8,9,["H3588","H518"]],[9,11,["H3426"]],[11,13,["H3083"]],[13,15,["H1121"]],[15,19,["H4191","H4191"]],[19,25,["H369"]],[25,27,["H4480","H3605"]],[27,29,["H5971"]],[29,31,["H6030"]],[31,32,[]]]},{"k":7548,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,5,["H3605"]],[5,6,["H3478"]],[6,7,["H1961"]],[7,8,["H859"]],[8,10,["H259"]],[10,11,["H5676"]],[11,13,["H589"]],[13,15,["H3083"]],[15,17,["H1121"]],[17,19,["H1961"]],[19,22,["H259"]],[22,23,["H5676"]],[23,26,["H5971"]],[26,27,["H559"]],[27,28,["H413"]],[28,29,["H7586"]],[29,30,["H6213"]],[30,32,["H5869"]],[32,33,["H2896"]],[33,35,[]]]},{"k":7549,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3068"]],[6,7,["H430"]],[7,9,["H3478"]],[9,10,["H3051"]],[10,12,["H8549"]],[12,15,["H7586"]],[15,17,["H3083"]],[17,19,["H3920"]],[19,22,["H5971"]],[22,23,["H3318"]]]},{"k":7550,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H5307"]],[4,6,["H996"]],[6,9,["H3083"]],[9,11,["H1121"]],[11,13,["H3083"]],[13,15,["H3920"]]]},{"k":7551,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3083"]],[5,6,["H5046"]],[6,8,["H4100"]],[8,11,["H6213"]],[11,13,["H3083"]],[13,14,["H5046"]],[14,17,["H559"]],[17,21,["H2938","H2938"]],[21,23,["H4592"]],[23,24,["H1706"]],[24,27,["H7097"]],[27,30,["H4294"]],[30,31,["H834"]],[31,35,["H3027"]],[35,37,["H2009"]],[37,40,["H4191"]]]},{"k":7552,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H430"]],[4,5,["H6213"]],[5,6,["H3541"]],[6,8,["H3254"]],[8,9,["H3541"]],[9,10,["H3588"]],[10,14,["H4191","H4191"]],[14,15,["H3083"]]]},{"k":7553,"v":[[0,3,["H5971"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H7586"]],[6,8,["H3083"]],[8,9,["H4191"]],[9,10,["H834"]],[10,12,["H6213"]],[12,13,["H2063"]],[13,14,["H1419"]],[14,15,["H3444"]],[15,17,["H3478"]],[17,19,["H2486"]],[19,22,["H3068"]],[22,23,["H2416"]],[23,26,["H518"]],[26,28,["H4480","H8185"]],[28,31,["H7218"]],[31,32,["H5307"]],[32,35,["H776"]],[35,36,["H3588"]],[36,39,["H6213"]],[39,40,["H5973"]],[40,41,["H430"]],[41,42,["H2088"]],[42,43,["H3117"]],[43,46,["H5971"]],[46,47,["H6299","(H853)"]],[47,48,["H3083"]],[48,51,["H4191"]],[51,52,["H3808"]]]},{"k":7554,"v":[[0,2,["H7586"]],[2,4,["H5927"]],[4,6,["H4480","H310"]],[6,8,["H6430"]],[8,11,["H6430"]],[11,12,["H1980"]],[12,16,["H4725"]]]},{"k":7555,"v":[[0,2,["H7586"]],[2,3,["H3920"]],[3,5,["H4410"]],[5,6,["H5921"]],[6,7,["H3478"]],[7,9,["H3898"]],[9,11,["H3605"]],[11,13,["H341"]],[13,16,["H5439"]],[16,18,["H4124"]],[18,22,["H1121"]],[22,24,["H5983"]],[24,27,["H123"]],[27,31,["H4428"]],[31,33,["H6678"]],[33,37,["H6430"]],[37,39,["H3605","H834"]],[39,41,["H6437"]],[41,44,["H7561"]],[44,45,[]]]},{"k":7556,"v":[[0,3,["H6213"]],[3,5,["H2428"]],[5,7,["H5221","(H853)"]],[7,9,["H6002"]],[9,11,["H5337","(H853)"]],[11,12,["H3478"]],[12,16,["H4480","H3027"]],[16,20,["H8154"]],[20,21,[]]]},{"k":7557,"v":[[0,3,["H1121"]],[3,5,["H7586"]],[5,6,["H1961"]],[6,7,["H3083"]],[7,9,["H3440"]],[9,11,["H4444"]],[11,14,["H8034"]],[14,17,["H8147"]],[17,18,["H1323"]],[18,22,["H8034"]],[22,25,["H1067"]],[25,26,["H4764"]],[26,29,["H8034"]],[29,32,["H6996"]],[32,33,["H4324"]]]},{"k":7558,"v":[[0,3,["H8034"]],[3,5,["H7586"]],[5,6,["H802"]],[6,8,["H293"]],[8,10,["H1323"]],[10,12,["H290"]],[12,15,["H8034"]],[15,18,["H8269"]],[18,21,["H6635"]],[21,23,["H74"]],[23,25,["H1121"]],[25,27,["H5369"]],[27,28,["H7586"]],[28,29,["H1730"]]]},{"k":7559,"v":[[0,2,["H7027"]],[2,5,["H1"]],[5,7,["H7586"]],[7,9,["H5369"]],[9,11,["H1"]],[11,13,["H74"]],[13,16,["H1121"]],[16,18,["H22"]]]},{"k":7560,"v":[[0,3,["H1961"]],[3,4,["H2389"]],[4,5,["H4421"]],[5,6,["H5921"]],[6,8,["H6430"]],[8,9,["H3605"]],[9,11,["H3117"]],[11,13,["H7586"]],[13,16,["H7586"]],[16,17,["H7200"]],[17,18,["H3605"]],[18,19,["H1368"]],[19,20,["H376"]],[20,22,["H3605"]],[22,23,["H2428"]],[23,24,["H1121"]],[24,26,["H622"]],[26,28,["H413"]],[28,29,[]]]},{"k":7561,"v":[[0,1,["H8050"]],[1,3,["H559"]],[3,4,["H413"]],[4,5,["H7586"]],[5,7,["H3068"]],[7,8,["H7971"]],[8,11,["H4886"]],[11,15,["H4428"]],[15,16,["H5921"]],[16,18,["H5971"]],[18,19,["H5921"]],[19,20,["H3478"]],[20,21,["H6258"]],[21,23,["H8085"]],[23,27,["H6963"]],[27,30,["H1697"]],[30,33,["H3068"]]]},{"k":7562,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H6485"]],[8,9,["(H853)"]],[9,10,["H834"]],[10,11,["H6002"]],[11,12,["H6213"]],[12,14,["H3478"]],[14,15,["H834"]],[15,17,["H7760"]],[17,23,["H1870"]],[23,27,["H5927"]],[27,29,["H4480","H4714"]]]},{"k":7563,"v":[[0,1,["H6258"]],[1,2,["H1980"]],[2,4,["H5221","(H853)"]],[4,5,["H6002"]],[5,8,["H2763","(H853)"]],[8,9,["H3605"]],[9,10,["H834"]],[10,14,["H2550","H5921"]],[14,16,["H3808"]],[16,18,["H4191"]],[18,20,["H4480","H376"]],[20,21,["H5704"]],[21,22,["H802"]],[22,23,["(H4480)","H5768"]],[23,25,["H3243"]],[25,26,["(H4480)","H7794"]],[26,28,["H7716"]],[28,29,["(H4480)","H1581"]],[29,31,["H2543"]]]},{"k":7564,"v":[[0,2,["H7586"]],[2,6,["H8085","(H853)","H5971"]],[6,8,["H6485"]],[8,11,["H2923"]],[11,13,["H3967"]],[13,14,["H505"]],[14,15,["H7273"]],[15,17,["H6235"]],[17,18,["H505","(H853)"]],[18,19,["H376"]],[19,21,["H3063"]]]},{"k":7565,"v":[[0,2,["H7586"]],[2,3,["H935"]],[3,4,["H5704"]],[4,6,["H5892"]],[6,8,["H6002"]],[8,11,["H693"]],[11,14,["H5158"]]]},{"k":7566,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H7017"]],[6,7,["H1980"]],[7,8,["H5493"]],[8,11,["H3381"]],[11,13,["H4480","H8432"]],[13,15,["H6002"]],[15,16,["H6435"]],[16,18,["H622"]],[18,20,["H5973"]],[20,23,["H859"]],[23,24,["H6213"]],[24,25,["H2617"]],[25,26,["H5973"]],[26,27,["H3605"]],[27,29,["H1121"]],[29,31,["H3478"]],[31,35,["H5927"]],[35,38,["H4480","H4714"]],[38,41,["H7017"]],[41,42,["H5493"]],[42,44,["H4480","H8432"]],[44,46,["H6003"]]]},{"k":7567,"v":[[0,2,["H7586"]],[2,3,["H5221","(H853)"]],[3,5,["H6002"]],[5,7,["H4480","H2341"]],[7,10,["H935"]],[10,12,["H7793"]],[12,13,["H834"]],[13,15,["H5921"]],[15,16,["H6440"]],[16,17,["H4714"]]]},{"k":7568,"v":[[0,3,["H8610","(H853)"]],[3,4,["H90"]],[4,6,["H4428"]],[6,9,["H6002"]],[9,10,["H2416"]],[10,13,["H2763"]],[13,14,["H3605"]],[14,16,["H5971"]],[16,19,["H6310"]],[19,22,["H2719"]]]},{"k":7569,"v":[[0,2,["H7586"]],[2,5,["H5971"]],[5,6,["H2550","H5921"]],[6,7,["H90"]],[7,10,["H4315"]],[10,13,["H6629"]],[13,17,["H1241"]],[17,21,["H4932"]],[21,24,["H3733"]],[24,26,["H3605"]],[26,29,["H2896"]],[29,31,["H14"]],[31,32,["H3808"]],[32,34,["H2763"]],[34,37,["H3605"]],[37,38,["H4399"]],[38,41,["H5240"]],[41,43,["H4549"]],[43,47,["H2763"]]]},{"k":7570,"v":[[0,2,["H1961"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H413"]],[8,9,["H8050"]],[9,10,["H559"]]]},{"k":7571,"v":[[0,3,["H5162"]],[3,4,["H3588"]],[4,8,["H4427","(H853)"]],[8,9,["H7586"]],[9,12,["H4428"]],[12,13,["H3588"]],[13,17,["H7725"]],[17,19,["H4480","H310"]],[19,23,["H3808"]],[23,24,["H6965"]],[24,26,["H1697"]],[26,29,["H2734"]],[29,30,["H8050"]],[30,33,["H2199"]],[33,34,["H413"]],[34,36,["H3068"]],[36,37,["H3605"]],[37,38,["H3915"]]]},{"k":7572,"v":[[0,3,["H8050"]],[3,5,["H7925"]],[5,7,["H7125"]],[7,8,["H7586"]],[8,11,["H1242"]],[11,14,["H5046"]],[14,15,["H8050"]],[15,16,["H559"]],[16,17,["H7586"]],[17,18,["H935"]],[18,20,["H3760"]],[20,22,["H2009"]],[22,26,["H5324"]],[26,28,["H3027"]],[28,32,["H5437"]],[32,35,["H5674"]],[35,38,["H3381"]],[38,40,["H1537"]]]},{"k":7573,"v":[[0,2,["H8050"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H7586"]],[5,7,["H7586"]],[7,8,["H559"]],[8,11,["H1288"]],[11,13,["H859"]],[13,16,["H3068"]],[16,19,["H6965","(H853)"]],[19,21,["H1697"]],[21,24,["H3068"]]]},{"k":7574,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H4100"]],[4,7,["H2088"]],[7,8,["H6963"]],[8,11,["H6629"]],[11,14,["H241"]],[14,17,["H6963"]],[17,20,["H1241"]],[20,21,["H834"]],[21,22,["H595"]],[22,23,["H8085"]]]},{"k":7575,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,6,["H935"]],[6,10,["H4480","H6003"]],[10,11,["H834"]],[11,13,["H5971"]],[13,14,["H2550","H5921"]],[14,16,["H4315"]],[16,19,["H6629"]],[19,23,["H1241"]],[23,25,["H4616","H2076"]],[25,28,["H3068"]],[28,30,["H430"]],[30,33,["H3498"]],[33,37,["H2763"]]]},{"k":7576,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7586"]],[5,6,["H7503"]],[6,10,["H5046"]],[10,11,["(H853)"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H1696"]],[16,17,["H413"]],[17,20,["H3915"]],[20,23,["H559"]],[23,27,["H1696"]]]},{"k":7577,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H518"]],[4,5,["H859"]],[5,7,["H6996"]],[7,11,["H5869"]],[11,13,["H859"]],[13,14,["H3808"]],[14,17,["H7218"]],[17,20,["H7626"]],[20,22,["H3478"]],[22,25,["H3068"]],[25,26,["H4886"]],[26,28,["H4428"]],[28,29,["H5921"]],[29,30,["H3478"]]]},{"k":7578,"v":[[0,3,["H3068"]],[3,4,["H7971"]],[4,8,["H1870"]],[8,10,["H559"]],[10,11,["H1980"]],[11,14,["H2763","(H853)"]],[14,16,["H2400","(H853)"]],[16,18,["H6002"]],[18,20,["H3898"]],[20,23,["H5704"]],[23,26,["H3615"]]]},{"k":7579,"v":[[0,1,["H4100"]],[1,5,["H3808"]],[5,6,["H8085"]],[6,8,["H6963"]],[8,11,["H3068"]],[11,14,["H5860"]],[14,15,["H413"]],[15,17,["H7998"]],[17,19,["H6213"]],[19,20,["H7451"]],[20,23,["H5869"]],[23,26,["H3068"]]]},{"k":7580,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H8050"]],[5,6,["H834"]],[6,9,["H8085"]],[9,11,["H6963"]],[11,14,["H3068"]],[14,17,["H1980"]],[17,19,["H1870"]],[19,20,["H834"]],[20,22,["H3068"]],[22,23,["H7971"]],[23,27,["H935","(H853)"]],[27,28,["H90"]],[28,30,["H4428"]],[30,32,["H6002"]],[32,36,["H2763"]],[36,38,["H6002"]]]},{"k":7581,"v":[[0,3,["H5971"]],[3,4,["H3947"]],[4,7,["H4480","H7998"]],[7,8,["H6629"]],[8,10,["H1241"]],[10,12,["H7225"]],[12,21,["H2764"]],[21,23,["H2076"]],[23,26,["H3068"]],[26,28,["H430"]],[28,30,["H1537"]]]},{"k":7582,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,6,["H3068"]],[6,9,["H2656"]],[9,12,["H5930"]],[12,14,["H2077"]],[14,17,["H8085"]],[17,19,["H6963"]],[19,22,["H3068"]],[22,23,["H2009"]],[23,25,["H8085"]],[25,27,["H2896"]],[27,29,["H4480","H2077"]],[29,32,["H7181"]],[32,35,["H4480","H2459"]],[35,37,["H352"]]]},{"k":7583,"v":[[0,1,["H3588"]],[1,2,["H4805"]],[2,6,["H2403"]],[6,8,["H7081"]],[8,10,["H6484"]],[10,13,["H205"]],[13,15,["H8655"]],[15,16,["H3282"]],[16,19,["H3988","(H853)"]],[19,21,["H1697"]],[21,24,["H3068"]],[24,28,["H3988"]],[28,32,["H4480","H4428"]]]},{"k":7584,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H8050"]],[5,8,["H2398"]],[8,9,["H3588"]],[9,12,["H5674","(H853)"]],[12,14,["H6310"]],[14,17,["H3068"]],[17,20,["H1697"]],[20,21,["H3588"]],[21,23,["H3372","(H853)"]],[23,25,["H5971"]],[25,27,["H8085"]],[27,29,["H6963"]]]},{"k":7585,"v":[[0,1,["H6258"]],[1,5,["H4994"]],[5,6,["H5375","(H853)"]],[6,8,["H2403"]],[8,11,["H7725"]],[11,12,["H5973"]],[12,17,["H7812"]],[17,19,["H3068"]]]},{"k":7586,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7586"]],[5,8,["H3808"]],[8,9,["H7725"]],[9,10,["H5973"]],[10,12,["H3588"]],[12,15,["H3988","(H853)"]],[15,17,["H1697"]],[17,20,["H3068"]],[20,23,["H3068"]],[23,25,["H3988"]],[25,28,["H4480","H1961"]],[28,29,["H4428"]],[29,30,["H5921"]],[30,31,["H3478"]]]},{"k":7587,"v":[[0,3,["H8050"]],[3,5,["H5437"]],[5,8,["H1980"]],[8,11,["H2388"]],[11,14,["H3671"]],[14,17,["H4598"]],[17,20,["H7167"]]]},{"k":7588,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,7,["H3068"]],[7,9,["H7167","(H853)"]],[9,11,["H4468"]],[11,13,["H3478"]],[13,14,["H4480","H5921"]],[14,17,["H3117"]],[17,20,["H5414"]],[20,24,["H7453"]],[24,29,["H2896"]],[29,30,["H4480"]],[30,31,[]]]},{"k":7589,"v":[[0,2,["H1571"]],[2,4,["H5331"]],[4,6,["H3478"]],[6,8,["H3808"]],[8,9,["H8266"]],[9,10,["H3808"]],[10,11,["H5162"]],[11,12,["H3588"]],[12,15,["H3808"]],[15,17,["H120"]],[17,19,["H1931"]],[19,21,["H5162"]]]},{"k":7590,"v":[[0,3,["H559"]],[3,6,["H2398"]],[6,8,["H3513"]],[8,10,["H6258"]],[10,13,["H4994"]],[13,14,["H5048"]],[14,16,["H2205"]],[16,19,["H5971"]],[19,21,["H5048"]],[21,22,["H3478"]],[22,25,["H7725"]],[25,26,["H5973"]],[26,31,["H7812"]],[31,33,["H3068"]],[33,35,["H430"]]]},{"k":7591,"v":[[0,2,["H8050"]],[2,4,["H7725"]],[4,5,["H310"]],[5,6,["H7586"]],[6,8,["H7586"]],[8,9,["H7812"]],[9,11,["H3068"]]]},{"k":7592,"v":[[0,2,["H559"]],[2,3,["H8050"]],[3,6,["H5066"]],[6,7,["H413"]],[7,8,["(H853)"]],[8,9,["H90"]],[9,11,["H4428"]],[11,14,["H6002"]],[14,16,["H90"]],[16,17,["H1980"]],[17,18,["H413"]],[18,20,["H4574"]],[20,22,["H90"]],[22,23,["H559"]],[23,24,["H403"]],[24,26,["H4751"]],[26,28,["H4194"]],[28,30,["H5493"]]]},{"k":7593,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H834"]],[4,6,["H2719"]],[6,9,["H802"]],[9,10,["H7921"]],[10,11,["H3651"]],[11,14,["H517"]],[14,16,["H7921"]],[16,18,["H4480","H802"]],[18,20,["H8050"]],[20,24,["H8158","(H853)","H90"]],[24,25,["H6440"]],[25,27,["H3068"]],[27,29,["H1537"]]]},{"k":7594,"v":[[0,2,["H8050"]],[2,3,["H1980"]],[3,5,["H7414"]],[5,7,["H7586"]],[7,9,["H5927"]],[9,10,["H413"]],[10,12,["H1004"]],[12,14,["H1390"]],[14,16,["H7586"]]]},{"k":7595,"v":[[0,2,["H8050"]],[2,4,["H3808"]],[4,5,["H3254"]],[5,7,["H7200","(H853)"]],[7,8,["H7586"]],[8,9,["H5704"]],[9,11,["H3117"]],[11,14,["H4194"]],[14,15,["H3588"]],[15,16,["H8050"]],[16,17,["H56"]],[17,18,["H413"]],[18,19,["H7586"]],[19,22,["H3068"]],[22,23,["H5162"]],[23,24,["H3588"]],[24,29,["H4427","(H853)","H7586"]],[29,30,["H5921"]],[30,31,["H3478"]]]},{"k":7596,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H8050"]],[6,8,["H5704","H4100"]],[8,10,["H859"]],[10,11,["H56"]],[11,12,["H413"]],[12,13,["H7586"]],[13,15,["H589"]],[15,17,["H3988"]],[17,20,["H4480","H4427"]],[20,21,["H5921"]],[21,22,["H3478"]],[22,23,["H4390"]],[23,25,["H7161"]],[25,27,["H8081"]],[27,29,["H1980"]],[29,32,["H7971"]],[32,34,["H413"]],[34,35,["H3448"]],[35,37,["H1022"]],[37,38,["H3588"]],[38,41,["H7200"]],[41,44,["H4428"]],[44,47,["H1121"]]]},{"k":7597,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H349"]],[4,7,["H1980"]],[7,9,["H7586"]],[9,10,["H8085"]],[10,14,["H2026"]],[14,18,["H3068"]],[18,19,["H559"]],[19,20,["H3947"]],[20,22,["H5697","H1241"]],[22,23,["H3027"]],[23,26,["H559"]],[26,29,["H935"]],[29,31,["H2076"]],[31,34,["H3068"]]]},{"k":7598,"v":[[0,2,["H7121"]],[2,3,["H3448"]],[3,6,["H2077"]],[6,8,["H595"]],[8,10,["H3045"]],[10,11,["(H853)"]],[11,12,["H834"]],[12,15,["H6213"]],[15,19,["H4886"]],[19,22,["(H853)"]],[22,23,["H834"]],[23,25,["H559"]],[25,26,["H413"]],[26,27,[]]]},{"k":7599,"v":[[0,2,["H8050"]],[2,3,["H6213","(H853)"]],[3,5,["H834"]],[5,7,["H3068"]],[7,8,["H1696"]],[8,10,["H935"]],[10,12,["H1035"]],[12,15,["H2205"]],[15,18,["H5892"]],[18,19,["H2729"]],[19,22,["H7122"]],[22,24,["H559"]],[24,25,["H935"]],[25,27,["H7965"]]]},{"k":7600,"v":[[0,3,["H559"]],[3,4,["H7965"]],[4,7,["H935"]],[7,9,["H2076"]],[9,12,["H3068"]],[12,14,["H6942"]],[14,16,["H935"]],[16,17,["H854"]],[17,21,["H2077"]],[21,24,["H6942","(H853)"]],[24,25,["H3448"]],[25,28,["H1121"]],[28,30,["H7121"]],[30,34,["H2077"]]]},{"k":7601,"v":[[0,5,["H1961"]],[5,9,["H935"]],[9,13,["H7200","(H853)"]],[13,14,["H446"]],[14,16,["H559"]],[16,17,["H389"]],[17,19,["H3068"]],[19,20,["H4899"]],[20,22,["H5048"]],[22,23,[]]]},{"k":7602,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H8050"]],[6,7,["H5027"]],[7,8,["H408"]],[8,9,["H413"]],[9,11,["H4758"]],[11,13,["H413"]],[13,15,["H1364"]],[15,18,["H6967"]],[18,19,["H3588"]],[19,22,["H3988"]],[22,24,["H3588"]],[24,28,["H3808"]],[28,29,["H834"]],[29,30,["H120"]],[30,31,["H7200"]],[31,32,["H3588"]],[32,33,["H120"]],[33,34,["H7200"]],[34,38,["H5869"]],[38,41,["H3068"]],[41,42,["H7200"]],[42,45,["H3824"]]]},{"k":7603,"v":[[0,2,["H3448"]],[2,3,["H7121","H413"]],[3,4,["H41"]],[4,8,["H5674"]],[8,9,["H6440"]],[9,10,["H8050"]],[10,13,["H559"]],[13,14,["H1571","H3808"]],[14,17,["H3068"]],[17,18,["H977"]],[18,19,["H2088"]]]},{"k":7604,"v":[[0,2,["H3448"]],[2,4,["H8048"]],[4,7,["H5674"]],[7,10,["H559"]],[10,11,["H1571","H3808"]],[11,14,["H3068"]],[14,15,["H977"]],[15,16,["H2088"]]]},{"k":7605,"v":[[0,2,["H3448"]],[2,4,["H7651"]],[4,7,["H1121"]],[7,9,["H5674"]],[9,10,["H6440"]],[10,11,["H8050"]],[11,13,["H8050"]],[13,14,["H559"]],[14,15,["H413"]],[15,16,["H3448"]],[16,18,["H3068"]],[18,20,["H3808"]],[20,21,["H977"]],[21,22,["H428"]]]},{"k":7606,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3448"]],[5,8,["H8552"]],[8,10,["H5288"]],[10,13,["H559"]],[13,15,["H7604"]],[15,16,["H5750"]],[16,18,["H6996"]],[18,20,["H2009"]],[20,22,["H7462"]],[22,24,["H6629"]],[24,26,["H8050"]],[26,27,["H559"]],[27,28,["H413"]],[28,29,["H3448"]],[29,30,["H7971"]],[30,32,["H3947"]],[32,34,["H3588"]],[34,37,["H3808"]],[37,39,["H5437"]],[39,40,["H5704"]],[40,42,["H935"]],[42,43,["H6311"]]]},{"k":7607,"v":[[0,3,["H7971"]],[3,5,["H935"]],[5,9,["H1931"]],[9,11,["H132"]],[11,13,["H5973"]],[13,16,["H3303"]],[16,17,["H5869"]],[17,19,["H2896"]],[19,22,["H7210"]],[22,25,["H3068"]],[25,26,["H559"]],[26,27,["H6965"]],[27,28,["H4886"]],[28,30,["H3588"]],[30,31,["H2088"]],[31,33,["H1931"]]]},{"k":7608,"v":[[0,2,["H8050"]],[2,3,["H3947","(H853)"]],[3,5,["H7161"]],[5,7,["H8081"]],[7,9,["H4886"]],[9,13,["H7130"]],[13,16,["H251"]],[16,19,["H7307"]],[19,22,["H3068"]],[22,23,["H6743"]],[23,24,["H413"]],[24,25,["H1732"]],[25,28,["H4480","H3117","H1931"]],[28,29,["H4605"]],[29,31,["H8050"]],[31,33,["H6965"]],[33,35,["H1980"]],[35,37,["H7414"]]]},{"k":7609,"v":[[0,3,["H7307"]],[3,6,["H3068"]],[6,7,["H5493"]],[7,8,["H4480","H5973"]],[8,9,["H7586"]],[9,12,["H7451"]],[12,13,["H7307"]],[13,14,["H4480","H854"]],[14,16,["H3068"]],[16,17,["H1204"]],[17,18,[]]]},{"k":7610,"v":[[0,2,["H7586"]],[2,3,["H5650"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H2009"]],[7,8,["H4994"]],[8,10,["H7451"]],[10,11,["H7307"]],[11,13,["H430"]],[13,14,["H1204"]],[14,15,[]]]},{"k":7611,"v":[[0,3,["H113"]],[3,4,["H4994"]],[4,5,["H559"]],[5,7,["H5650"]],[7,10,["H6440"]],[10,14,["H1245"]],[14,16,["H376"]],[16,20,["H3045"]],[20,21,["H5059"]],[21,24,["H3658"]],[24,30,["H1961"]],[30,31,["H1961"]],[31,33,["H7451"]],[33,34,["H7307"]],[34,36,["H430"]],[36,38,["H5921"]],[38,43,["H5059"]],[43,46,["H3027"]],[46,51,["H2895"]]]},{"k":7612,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H5650"]],[6,7,["H7200"]],[7,9,["H4994"]],[9,11,["H376"]],[11,14,["H5059"]],[14,15,["H3190"]],[15,17,["H935"]],[17,19,["H413"]],[19,20,[]]]},{"k":7613,"v":[[0,2,["H6030"]],[2,3,["H259"]],[3,6,["H5288"]],[6,8,["H559"]],[8,9,["H2009"]],[9,12,["H7200"]],[12,14,["H1121"]],[14,16,["H3448"]],[16,18,["H1022"]],[18,21,["H3045"]],[21,23,["H5059"]],[23,26,["H1368"]],[26,28,["H2428"]],[28,31,["H376"]],[31,33,["H4421"]],[33,35,["H995"]],[35,37,["H1697"]],[37,40,["H8389"]],[40,41,["H376"]],[41,44,["H3068"]],[44,46,["H5973"]],[46,47,[]]]},{"k":7614,"v":[[0,2,["H7586"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H3448"]],[6,8,["H559"]],[8,9,["H7971"]],[9,10,["(H853)"]],[10,11,["H1732"]],[11,13,["H1121"]],[13,14,["H834"]],[14,18,["H6629"]]]},{"k":7615,"v":[[0,2,["H3448"]],[2,3,["H3947"]],[3,5,["H2543"]],[5,8,["H3899"]],[8,11,["H4997"]],[11,13,["H3196"]],[13,15,["H259"]],[15,16,["H1423","H5795"]],[16,18,["H7971"]],[18,20,["H3027"]],[20,21,["H1732"]],[21,23,["H1121"]],[23,24,["H413"]],[24,25,["H7586"]]]},{"k":7616,"v":[[0,2,["H1732"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H7586"]],[5,7,["H5975"]],[7,8,["H6440"]],[8,12,["H157"]],[12,14,["H3966"]],[14,17,["H1961"]],[17,19,["H3627","H5375"]]]},{"k":7617,"v":[[0,2,["H7586"]],[2,3,["H7971"]],[3,4,["H413"]],[4,5,["H3448"]],[5,6,["H559"]],[6,8,["H1732"]],[8,11,["H4994"]],[11,12,["H5975"]],[12,13,["H6440"]],[13,15,["H3588"]],[15,18,["H4672"]],[18,19,["H2580"]],[19,22,["H5869"]]]},{"k":7618,"v":[[0,5,["H1961"]],[5,6,["H1961"]],[6,9,["H7307"]],[9,11,["H430"]],[11,13,["H413"]],[13,14,["H7586"]],[14,16,["H1732"]],[16,17,["H3947","(H853)"]],[17,19,["H3658"]],[19,21,["H5059"]],[21,24,["H3027"]],[24,26,["H7586"]],[26,28,["H7304"]],[28,31,["H2895"]],[31,34,["H7451"]],[34,35,["H7307"]],[35,36,["H5493"]],[36,37,["H4480","H5921"]],[37,38,[]]]},{"k":7619,"v":[[0,3,["H6430"]],[3,5,["H622","(H853)"]],[5,7,["H4264"]],[7,9,["H4421"]],[9,13,["H622"]],[13,15,["H7755"]],[15,16,["H834"]],[16,19,["H3063"]],[19,21,["H2583"]],[21,22,["H996"]],[22,23,["H7755"]],[23,25,["H5825"]],[25,27,["H658"]]]},{"k":7620,"v":[[0,2,["H7586"]],[2,5,["H376"]],[5,7,["H3478"]],[7,10,["H622"]],[10,12,["H2583"]],[12,15,["H6010"]],[15,17,["H425"]],[17,21,["H4421"]],[21,23,["H6186"]],[23,24,["H7125"]],[24,26,["H6430"]]]},{"k":7621,"v":[[0,3,["H6430"]],[3,4,["H5975"]],[4,5,["H413"]],[5,7,["H2022"]],[7,11,["H4480","H2088"]],[11,13,["H3478"]],[13,14,["H5975"]],[14,15,["H413"]],[15,17,["H2022"]],[17,21,["H4480","H2088"]],[21,26,["H1516"]],[26,27,["H996"]],[27,28,[]]]},{"k":7622,"v":[[0,4,["H3318"]],[4,6,["H376","H1143"]],[6,10,["H4480","H4264"]],[10,13,["H6430"]],[13,14,["H8034"]],[14,15,["H1555"]],[15,17,["H4480","H1661"]],[17,19,["H1363"]],[19,21,["H8337"]],[21,22,["H520"]],[22,25,["H2239"]]]},{"k":7623,"v":[[0,5,["H3553"]],[5,7,["H5178"]],[7,8,["H5921"]],[8,10,["H7218"]],[10,12,["H1931"]],[12,14,["H3847"]],[14,17,["H8302"]],[17,19,["H7193"]],[19,22,["H4948"]],[22,25,["H8302"]],[25,27,["H2568"]],[27,28,["H505"]],[28,29,["H8255"]],[29,31,["H5178"]]]},{"k":7624,"v":[[0,4,["H4697"]],[4,6,["H5178"]],[6,7,["H5921"]],[7,9,["H7272"]],[9,12,["H3591"]],[12,14,["H5178"]],[14,15,["H996"]],[15,17,["H3802"]]]},{"k":7625,"v":[[0,3,["H2671"]],[3,6,["H2595"]],[6,10,["H707"]],[10,11,["H4500"]],[11,14,["H2595"]],[14,15,["H3852"]],[15,17,["H8337"]],[17,18,["H3967"]],[18,19,["H8255"]],[19,21,["H1270"]],[21,24,["H5375"]],[24,26,["H6793"]],[26,27,["H1980"]],[27,28,["H6440"]],[28,29,[]]]},{"k":7626,"v":[[0,3,["H5975"]],[3,5,["H7121"]],[5,6,["H413"]],[6,8,["H4634"]],[8,10,["H3478"]],[10,12,["H559"]],[12,15,["H4100"]],[15,19,["H3318"]],[19,23,["H4421"]],[23,25,["H6186"]],[25,27,["H3808"]],[27,28,["H595"]],[28,30,["H6430"]],[30,32,["H859"]],[32,33,["H5650"]],[33,35,["H7586"]],[35,36,["H1262"]],[36,39,["H376"]],[39,46,["H3381"]],[46,47,["H413"]],[47,48,[]]]},{"k":7627,"v":[[0,1,["H518"]],[1,4,["H3201"]],[4,6,["H3898"]],[6,7,["H854"]],[7,11,["H5221"]],[11,16,["H1961"]],[16,18,["H5650"]],[18,20,["H518"]],[20,21,["H589"]],[21,22,["H3201"]],[22,26,["H5221"]],[26,31,["H1961"]],[31,33,["H5650"]],[33,35,["H5647"]],[35,36,[]]]},{"k":7628,"v":[[0,3,["H6430"]],[3,4,["H559"]],[4,5,["H589"]],[5,6,["H2778","(H853)"]],[6,8,["H4634"]],[8,10,["H3478"]],[10,11,["H2088"]],[11,12,["H3117"]],[12,13,["H5414"]],[13,16,["H376"]],[16,20,["H3898"]],[20,21,["H3162"]]]},{"k":7629,"v":[[0,2,["H7586"]],[2,4,["H3605"]],[4,5,["H3478"]],[5,6,["H8085","(H853)"]],[6,7,["H428"]],[7,8,["H1697"]],[8,11,["H6430"]],[11,14,["H2865"]],[14,16,["H3966"]],[16,17,["H3372"]]]},{"k":7630,"v":[[0,2,["H1732"]],[2,5,["H1121"]],[5,7,["H2088"]],[7,8,["H376","H673"]],[8,10,["H4480","H1035"]],[10,12,["H8034"]],[12,14,["H3448"]],[14,18,["H8083"]],[18,19,["H1121"]],[19,22,["H376"]],[22,23,["H935"]],[23,25,["H376"]],[25,28,["H2204"]],[28,32,["H3117"]],[32,34,["H7586"]]]},{"k":7631,"v":[[0,3,["H7969"]],[3,4,["H1419"]],[4,5,["H1121"]],[5,7,["H3448"]],[7,8,["H1980"]],[8,10,["H1980","H310"]],[10,11,["H7586"]],[11,14,["H4421"]],[14,17,["H8034"]],[17,20,["H7969"]],[20,21,["H1121"]],[21,22,["H834"]],[22,23,["H1980"]],[23,26,["H4421"]],[26,28,["H446"]],[28,30,["H1060"]],[30,32,["H4932"]],[32,35,["H41"]],[35,38,["H7992"]],[38,39,["H8048"]]]},{"k":7632,"v":[[0,2,["H1732"]],[2,5,["H6996"]],[5,8,["H7969"]],[8,9,["H1419"]],[9,10,["H1980","H310"]],[10,11,["H7586"]]]},{"k":7633,"v":[[0,2,["H1732"]],[2,3,["H1980"]],[3,5,["H7725"]],[5,6,["H4480","H5921"]],[6,7,["H7586"]],[7,9,["H7462","(H853)"]],[9,11,["H1"]],[11,12,["H6629"]],[12,14,["H1035"]]]},{"k":7634,"v":[[0,3,["H6430"]],[3,5,["H5066"]],[5,6,["H7925"]],[6,8,["H6150"]],[8,11,["H3320"]],[11,12,["H705"]],[12,13,["H3117"]]]},{"k":7635,"v":[[0,2,["H3448"]],[2,3,["H559"]],[3,5,["H1732"]],[5,7,["H1121"]],[7,8,["H3947"]],[8,9,["H4994"]],[9,12,["H251"]],[12,14,["H374"]],[14,16,["H2088"]],[16,17,["H7039"]],[17,20,["H2088"]],[20,21,["H6235"]],[21,22,["H3899"]],[22,24,["H7323"]],[24,27,["H4264"]],[27,30,["H251"]]]},{"k":7636,"v":[[0,2,["H935"]],[2,3,["H428"]],[3,4,["H6235"]],[4,5,["H2757","H2461"]],[5,8,["H8269"]],[8,11,["H505"]],[11,14,["H6485"]],[14,16,["H251"]],[16,17,["H7965"]],[17,19,["H3947"]],[19,21,["H6161"]]]},{"k":7637,"v":[[0,2,["H7586"]],[2,4,["H1992"]],[4,6,["H3605"]],[6,8,["H376"]],[8,10,["H3478"]],[10,14,["H6010"]],[14,16,["H425"]],[16,17,["H3898"]],[17,18,["H5973"]],[18,20,["H6430"]]]},{"k":7638,"v":[[0,2,["H1732"]],[2,5,["H7925"]],[5,8,["H1242"]],[8,10,["H5203","(H853)"]],[10,12,["H6629"]],[12,13,["H5921"]],[13,15,["H8104"]],[15,17,["H5375"]],[17,19,["H1980"]],[19,20,["H834"]],[20,21,["H3448"]],[21,23,["H6680"]],[23,27,["H935"]],[27,30,["H4570"]],[30,33,["H2428"]],[33,36,["H3318"]],[36,37,["H413"]],[37,39,["H4634"]],[39,41,["H7321"]],[41,44,["H4421"]]]},{"k":7639,"v":[[0,2,["H3478"]],[2,5,["H6430"]],[5,11,["H6186"]],[11,12,["H4634"]],[12,13,["H7125"]],[13,14,["H4634"]]]},{"k":7640,"v":[[0,2,["H1732"]],[2,3,["H5203","(H853)"]],[3,5,["H3627"]],[5,6,["H5921"]],[6,8,["H3027"]],[8,11,["H8104"]],[11,14,["H3627"]],[14,16,["H7323"]],[16,19,["H4634"]],[19,21,["H935"]],[21,23,["H7592","H7965"]],[23,25,["H251"]]]},{"k":7641,"v":[[0,3,["H1931"]],[3,4,["H1696"]],[4,5,["H5973"]],[5,7,["H2009"]],[7,10,["H5927"]],[10,12,["H376","H1143"]],[12,14,["H6430"]],[14,16,["H4480","H1661"]],[16,17,["H1555"]],[17,19,["H8034"]],[19,23,["H4480","H4630"]],[23,26,["H6430"]],[26,28,["H1696"]],[28,32,["H428"]],[32,33,["H1697"]],[33,35,["H1732"]],[35,36,["H8085"]],[36,37,[]]]},{"k":7642,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,6,["H3478"]],[6,9,["H7200","(H853)"]],[9,11,["H376"]],[11,12,["H5127"]],[12,13,["H4480","H6440"]],[13,17,["H3966"]],[17,18,["H3372"]]]},{"k":7643,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,6,["H559"]],[6,9,["H7200"]],[9,10,["H2088"]],[10,11,["H376"]],[11,15,["H5927"]],[15,16,["H3588"]],[16,18,["H2778","(H853)"]],[18,19,["H3478"]],[19,23,["H5927"]],[23,27,["H1961"]],[27,30,["H376"]],[30,31,["H834"]],[31,32,["H5221"]],[32,35,["H4428"]],[35,37,["H6238"]],[37,40,["H1419"]],[40,41,["H6239"]],[41,44,["H5414"]],[44,47,["H1323"]],[47,49,["H6213"]],[49,51,["H1"]],[51,52,["H1004"]],[52,53,["H2670"]],[53,55,["H3478"]]]},{"k":7644,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H376"]],[6,8,["H5975"]],[8,9,["H5973"]],[9,11,["H559"]],[11,12,["H4100"]],[12,15,["H6213"]],[15,18,["H376"]],[18,19,["H834"]],[19,20,["H5221","(H853)"]],[20,21,["H1975"]],[21,22,["H6430"]],[22,25,["H5493"]],[25,27,["H2781"]],[27,28,["H4480","H5921"]],[28,29,["H3478"]],[29,30,["H3588"]],[30,31,["H4310"]],[31,33,["H2088"]],[33,34,["H6189"]],[34,35,["H6430"]],[35,36,["H3588"]],[36,39,["H2778"]],[39,41,["H4634"]],[41,44,["H2416"]],[44,45,["H430"]]]},{"k":7645,"v":[[0,3,["H5971"]],[3,4,["H559"]],[4,7,["H2088"]],[7,8,["H1697"]],[8,9,["H559"]],[9,10,["H3541"]],[10,14,["H6213"]],[14,17,["H376"]],[17,18,["H834"]],[18,19,["H5221"]],[19,20,[]]]},{"k":7646,"v":[[0,2,["H446"]],[2,4,["H1419"]],[4,5,["H251"]],[5,6,["H8085"]],[6,9,["H1696"]],[9,10,["H413"]],[10,12,["H376"]],[12,14,["H446"]],[14,15,["H639"]],[15,17,["H2734"]],[17,19,["H1732"]],[19,22,["H559"]],[22,23,["H4100"]],[23,26,["H3381"]],[26,29,["H5921"]],[29,30,["H4310"]],[30,33,["H5203"]],[33,34,["H2007"]],[34,35,["H4592"]],[35,36,["H6629"]],[36,39,["H4057"]],[39,40,["H589"]],[40,41,["H3045","(H853)"]],[41,43,["H2087"]],[43,46,["H7455"]],[46,49,["H3824"]],[49,50,["H3588"]],[50,54,["H3381"]],[54,55,["H4616"]],[55,58,["H7200"]],[58,60,["H4421"]]]},{"k":7647,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H4100"]],[4,7,["H6258"]],[7,8,["H6213"]],[8,11,["H3808"]],[11,13,["H1697"]]]},{"k":7648,"v":[[0,3,["H5437"]],[3,4,["H4480","H681"]],[4,7,["H413","H4136","H312"]],[7,9,["H559"]],[9,12,["H2088"]],[12,13,["H1697"]],[13,16,["H5971"]],[16,17,["H1697"]],[17,19,["H7725"]],[19,22,["H7223"]],[22,23,["H1697"]]]},{"k":7649,"v":[[0,4,["H1697"]],[4,6,["H8085"]],[6,7,["H834"]],[7,8,["H1732"]],[8,9,["H1696"]],[9,11,["H5046"]],[11,13,["H6440"]],[13,14,["H7586"]],[14,17,["H3947"]],[17,19,[]]]},{"k":7650,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7586"]],[5,7,["H408"]],[7,8,["H120"]],[8,9,["H3820"]],[9,10,["H5307"]],[10,11,["H5921"]],[11,15,["H5650"]],[15,17,["H1980"]],[17,19,["H3898"]],[19,20,["H5973"]],[20,21,["H2088"]],[21,22,["H6430"]]]},{"k":7651,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,8,["H3808"]],[8,9,["H3201"]],[9,11,["H1980"]],[11,12,["H413"]],[12,13,["H2088"]],[13,14,["H6430"]],[14,16,["H3898"]],[16,17,["H5973"]],[17,19,["H3588"]],[19,20,["H859"]],[20,24,["H5288"]],[24,26,["H1931"]],[26,28,["H376"]],[28,30,["H4421"]],[30,33,["H4480","H5271"]]]},{"k":7652,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7586"]],[5,7,["H5650"]],[7,8,["H1961","H7462"]],[8,10,["H1"]],[10,11,["H6629"]],[11,14,["H935"]],[14,16,["H738"]],[16,19,["H1677"]],[19,21,["H5375"]],[21,23,["H7716"]],[23,27,["H4480","H5739"]]]},{"k":7653,"v":[[0,4,["H3318"]],[4,5,["H310"]],[5,8,["H5221"]],[8,11,["H5337"]],[11,16,["H4480","H6310"]],[16,20,["H6965"]],[20,21,["H5921"]],[21,24,["H2388"]],[24,28,["H2206"]],[28,30,["H5221"]],[30,33,["H4191"]],[33,34,[]]]},{"k":7654,"v":[[0,2,["H5650"]],[2,3,["H5221"]],[3,4,["H1571","(H853)"]],[4,6,["H738"]],[6,7,["H1571"]],[7,9,["H1677"]],[9,11,["H2088"]],[11,12,["H6189"]],[12,13,["H6430"]],[13,15,["H1961"]],[15,17,["H259"]],[17,18,["H4480"]],[18,20,["H3588"]],[20,23,["H2778"]],[23,25,["H4634"]],[25,28,["H2416"]],[28,29,["H430"]]]},{"k":7655,"v":[[0,1,["H1732"]],[1,2,["H559"]],[2,5,["H3068"]],[5,6,["H834"]],[6,7,["H5337"]],[7,12,["H4480","H3027"]],[12,15,["H738"]],[15,20,["H4480","H3027"]],[20,23,["H1677"]],[23,24,["H1931"]],[24,26,["H5337"]],[26,31,["H4480","H3027"]],[31,33,["H2088"]],[33,34,["H6430"]],[34,36,["H7586"]],[36,37,["H559"]],[37,38,["H413"]],[38,39,["H1732"]],[39,40,["H1980"]],[40,43,["H3068"]],[43,44,["H1961"]],[44,45,["H5973"]],[45,46,[]]]},{"k":7656,"v":[[0,2,["H7586"]],[2,3,["H3847","(H853)"]],[3,4,["H1732"]],[4,7,["H4055"]],[7,10,["H5414"]],[10,12,["H6959"]],[12,14,["H5178"]],[14,15,["H5921"]],[15,17,["H7218"]],[17,20,["H3847"]],[20,26,["H8302"]]]},{"k":7657,"v":[[0,2,["H1732"]],[2,3,["H2296","(H853)"]],[3,5,["H2719"]],[5,6,["H4480","H5921"]],[6,8,["H4055"]],[8,11,["H2974"]],[11,13,["H1980"]],[13,14,["H3588"]],[14,17,["H3808"]],[17,18,["H5254"]],[18,21,["H1732"]],[21,22,["H559"]],[22,23,["H413"]],[23,24,["H7586"]],[24,26,["H3201","H3808"]],[26,27,["H1980"]],[27,29,["H428"]],[29,30,["H3588"]],[30,33,["H3808"]],[33,34,["H5254"]],[34,37,["H1732"]],[37,38,["H5493"]],[38,40,["H4480","H5921"]],[40,41,[]]]},{"k":7658,"v":[[0,3,["H3947"]],[3,5,["H4731"]],[5,8,["H3027"]],[8,10,["H977"]],[10,12,["H2568"]],[12,13,["H2512"]],[13,14,["H68"]],[14,16,["H4480"]],[16,18,["H5158"]],[18,20,["H7760"]],[20,24,["H7462"]],[24,25,["H3627"]],[25,26,["H834"]],[26,32,["H3219"]],[32,35,["H7050"]],[35,39,["H3027"]],[39,43,["H5066"]],[43,44,["H413"]],[44,46,["H6430"]]]},{"k":7659,"v":[[0,3,["H6430"]],[3,4,["H1980"]],[4,5,["H1980"]],[5,8,["H7131"]],[8,9,["H413"]],[9,10,["H1732"]],[10,13,["H376"]],[13,15,["H5375"]],[15,17,["H6793"]],[17,19,["H6440"]],[19,20,[]]]},{"k":7660,"v":[[0,4,["H6430"]],[4,6,["H5027"]],[6,8,["H7200","(H853)"]],[8,9,["H1732"]],[9,11,["H959"]],[11,13,["H3588"]],[13,15,["H1961"]],[15,18,["H5288"]],[18,20,["H132"]],[20,22,["H5973"]],[22,24,["H3303"]],[24,25,["H4758"]]]},{"k":7661,"v":[[0,3,["H6430"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H1732"]],[6,8,["H595"]],[8,10,["H3611"]],[10,11,["H3588"]],[11,12,["H859"]],[12,13,["H935"]],[13,14,["H413"]],[14,17,["H4731"]],[17,20,["H6430"]],[20,21,["H7043","(H853)"]],[21,22,["H1732"]],[22,25,["H430"]]]},{"k":7662,"v":[[0,3,["H6430"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H1732"]],[6,7,["H1980"]],[7,8,["H413"]],[8,13,["H5414","(H853)"]],[13,15,["H1320"]],[15,18,["H5775"]],[18,21,["H8064"]],[21,25,["H929"]],[25,28,["H7704"]]]},{"k":7663,"v":[[0,2,["H559"]],[2,3,["H1732"]],[3,4,["H413"]],[4,6,["H6430"]],[6,7,["H859"]],[7,8,["H935"]],[8,9,["H413"]],[9,13,["H2719"]],[13,17,["H2595"]],[17,21,["H3591"]],[21,23,["H595"]],[23,24,["H935"]],[24,25,["H413"]],[25,29,["H8034"]],[29,32,["H3068"]],[32,34,["H6635"]],[34,36,["H430"]],[36,39,["H4634"]],[39,41,["H3478"]],[41,42,["H834"]],[42,45,["H2778"]]]},{"k":7664,"v":[[0,1,["H2088"]],[1,2,["H3117"]],[2,5,["H3068"]],[5,6,["H5462"]],[6,10,["H3027"]],[10,14,["H5221"]],[14,17,["H5493","(H853)"]],[17,19,["H7218"]],[19,20,["H4480","H5921"]],[20,25,["H5414"]],[25,27,["H6297"]],[27,30,["H4264"]],[30,33,["H6430"]],[33,34,["H2088"]],[34,35,["H3117"]],[35,38,["H5775"]],[38,41,["H8064"]],[41,46,["H2416"]],[46,49,["H776"]],[49,51,["H3605"]],[51,53,["H776"]],[53,55,["H3045"]],[55,56,["H3588"]],[56,58,["H3426"]],[58,60,["H430"]],[60,62,["H3478"]]]},{"k":7665,"v":[[0,2,["H3605"]],[2,3,["H2088"]],[3,4,["H6951"]],[4,6,["H3045"]],[6,7,["H3588"]],[7,9,["H3068"]],[9,10,["H3467"]],[10,11,["H3808"]],[11,13,["H2719"]],[13,15,["H2595"]],[15,16,["H3588"]],[16,18,["H4421"]],[18,21,["H3068"]],[21,25,["H5414"]],[25,29,["H3027"]]]},{"k":7666,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,8,["H6430"]],[8,9,["H6965"]],[9,11,["H1980"]],[11,14,["H7126"]],[14,16,["H7125"]],[16,17,["H1732"]],[17,19,["H1732"]],[19,20,["H4116"]],[20,22,["H7323"]],[22,25,["H4634"]],[25,27,["H7125"]],[27,29,["H6430"]]]},{"k":7667,"v":[[0,2,["H1732"]],[2,3,["H7971","(H853)"]],[3,5,["H3027"]],[5,6,["H413"]],[6,8,["H3627"]],[8,10,["H3947"]],[10,11,["H4480","H8033"]],[11,13,["H68"]],[13,15,["H7049"]],[15,18,["H5221","(H853)"]],[18,20,["H6430"]],[20,21,["H413"]],[21,23,["H4696"]],[23,26,["H68"]],[26,27,["H2883"]],[27,30,["H4696"]],[30,33,["H5307"]],[33,34,["H5921"]],[34,36,["H6440"]],[36,39,["H776"]]]},{"k":7668,"v":[[0,2,["H1732"]],[2,3,["H2388"]],[3,4,["H4480"]],[4,6,["H6430"]],[6,9,["H7050"]],[9,13,["H68"]],[13,15,["H5221","(H853)"]],[15,17,["H6430"]],[17,19,["H4191"]],[19,24,["H369"]],[24,25,["H2719"]],[25,28,["H3027"]],[28,30,["H1732"]]]},{"k":7669,"v":[[0,2,["H1732"]],[2,3,["H7323"]],[3,5,["H5975"]],[5,6,["H413"]],[6,8,["H6430"]],[8,10,["H3947","(H853)"]],[10,12,["H2719"]],[12,14,["H8025"]],[14,19,["H4480","H8593"]],[19,22,["H4191"]],[22,26,["H3772","(H853)"]],[26,28,["H7218"]],[28,33,["H6430"]],[33,34,["H7200"]],[34,36,["H1368"]],[36,38,["H4191"]],[38,40,["H5127"]]]},{"k":7670,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,8,["H3063"]],[8,9,["H6965"]],[9,11,["H7321"]],[11,13,["H7291","(H853)"]],[13,15,["H6430"]],[15,16,["H5704"]],[16,18,["H935"]],[18,21,["H1516"]],[21,23,["H5704"]],[23,25,["H8179"]],[25,27,["H6138"]],[27,30,["H2491"]],[30,33,["H6430"]],[33,35,["H5307"]],[35,38,["H1870"]],[38,40,["H8189"]],[40,42,["H5704"]],[42,43,["H1661"]],[43,45,["H5704"]],[45,46,["H6138"]]]},{"k":7671,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H7725"]],[6,8,["H4480","H1814"]],[8,9,["H310"]],[9,11,["H6430"]],[11,14,["H8155","(H853)"]],[14,16,["H4264"]]]},{"k":7672,"v":[[0,2,["H1732"]],[2,3,["H3947","(H853)"]],[3,5,["H7218"]],[5,8,["H6430"]],[8,10,["H935"]],[10,13,["H3389"]],[13,16,["H7760"]],[16,18,["H3627"]],[18,21,["H168"]]]},{"k":7673,"v":[[0,3,["H7586"]],[3,4,["H7200","(H853)"]],[4,5,["H1732"]],[5,7,["H3318"]],[7,8,["H7125"]],[8,10,["H6430"]],[10,12,["H559"]],[12,13,["H413"]],[13,14,["H74"]],[14,16,["H8269"]],[16,19,["H6635"]],[19,20,["H74"]],[20,21,["H4310"]],[21,22,["H1121"]],[22,24,["H2088"]],[24,25,["H5288"]],[25,27,["H74"]],[27,28,["H559"]],[28,31,["H5315"]],[31,32,["H2416"]],[32,34,["H4428"]],[34,36,["H518"]],[36,37,["H3045"]]]},{"k":7674,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H7592"]],[5,6,["H859"]],[6,7,["H4310"]],[7,8,["H1121"]],[8,10,["H5958"]],[10,11,[]]]},{"k":7675,"v":[[0,3,["H1732"]],[3,4,["H7725"]],[4,7,["H4480","H5221"]],[7,8,["(H853)"]],[8,10,["H6430"]],[10,11,["H74"]],[11,12,["H3947"]],[12,15,["H935"]],[15,17,["H6440"]],[17,18,["H7586"]],[18,21,["H7218"]],[21,24,["H6430"]],[24,27,["H3027"]]]},{"k":7676,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4310"]],[6,7,["H1121"]],[7,9,["H859"]],[9,12,["H5288"]],[12,14,["H1732"]],[14,15,["H559"]],[15,19,["H1121"]],[19,22,["H5650"]],[22,23,["H3448"]],[23,25,["H1022"]]]},{"k":7677,"v":[[0,5,["H1961"]],[5,11,["H3615"]],[11,13,["H1696"]],[13,14,["H413"]],[14,15,["H7586"]],[15,18,["H5315"]],[18,20,["H3083"]],[20,22,["H7194"]],[22,25,["H5315"]],[25,27,["H1732"]],[27,29,["H3083"]],[29,30,["H157"]],[30,35,["H5315"]]]},{"k":7678,"v":[[0,2,["H7586"]],[2,3,["H3947"]],[3,5,["H1931"]],[5,6,["H3117"]],[6,9,["H5414"]],[9,14,["H7725","H3808"]],[14,17,["H1"]],[17,18,["H1004"]]]},{"k":7679,"v":[[0,2,["H3083"]],[2,4,["H1732"]],[4,5,["H3772"]],[5,7,["H1285"]],[7,10,["H157"]],[10,15,["H5315"]]]},{"k":7680,"v":[[0,2,["H3083"]],[2,4,["H6584"]],[4,5,["(H853)"]],[5,7,["H4598"]],[7,8,["H834"]],[8,10,["H5921"]],[10,13,["H5414"]],[13,16,["H1732"]],[16,19,["H4055"]],[19,21,["H5704"]],[21,23,["H2719"]],[23,25,["H5704"]],[25,27,["H7198"]],[27,29,["H5704"]],[29,31,["H2290"]]]},{"k":7681,"v":[[0,2,["H1732"]],[2,4,["H3318"]],[4,5,["H834","H3605"]],[5,6,["H7586"]],[6,7,["H7971"]],[7,12,["H7919"]],[12,14,["H7586"]],[14,15,["H7760"]],[15,17,["H5921"]],[17,19,["H376"]],[19,21,["H4421"]],[21,25,["H3190"]],[25,28,["H5869"]],[28,30,["H3605"]],[30,32,["H5971"]],[32,34,["H1571"]],[34,37,["H5869"]],[37,39,["H7586"]],[39,40,["H5650"]]]},{"k":7682,"v":[[0,5,["H1961"]],[5,8,["H935"]],[8,10,["H1732"]],[10,12,["H7725"]],[12,15,["H4480","H5221"]],[15,16,["(H853)"]],[16,18,["H6430"]],[18,21,["H802"]],[21,23,["H3318"]],[23,25,["H4480","H3605"]],[25,26,["H5892"]],[26,28,["H3478"]],[28,29,["H7891"]],[29,31,["H4246"]],[31,33,["H7125"]],[33,34,["H4428"]],[34,35,["H7586"]],[35,37,["H8596"]],[37,39,["H8057"]],[39,44,["H7991"]]]},{"k":7683,"v":[[0,3,["H802"]],[3,4,["H6030"]],[4,9,["H7832"]],[9,11,["H559"]],[11,12,["H7586"]],[12,14,["H5221"]],[14,16,["H505"]],[16,18,["H1732"]],[18,21,["H7233"]]]},{"k":7684,"v":[[0,2,["H7586"]],[2,4,["H3966"]],[4,5,["H2734"]],[5,7,["H2088"]],[7,8,["H1697"]],[8,9,["H3415","H5869"]],[9,13,["H559"]],[13,16,["H5414"]],[16,18,["H1732"]],[18,20,["H7233"]],[20,26,["H5414"]],[26,28,["H505"]],[28,34,["H5750"]],[34,35,["H389"]],[35,37,["H4410"]]]},{"k":7685,"v":[[0,2,["H7586"]],[2,3,["H5770","(H853)"]],[3,4,["H1732"]],[4,7,["H4480","H3117","H1931"]],[7,9,["H1973"]]]},{"k":7686,"v":[[0,5,["H1961"]],[5,8,["H4480","H4283"]],[8,11,["H7451"]],[11,12,["H7307"]],[12,14,["H430"]],[14,15,["H6743"]],[15,16,["H413"]],[16,17,["H7586"]],[17,20,["H5012"]],[20,23,["H8432"]],[23,26,["H1004"]],[26,28,["H1732"]],[28,29,["H5059"]],[29,32,["H3027"]],[32,36,["H3117","H3117"]],[36,41,["H2595"]],[41,43,["H7586"]],[43,44,["H3027"]]]},{"k":7687,"v":[[0,2,["H7586"]],[2,3,["H2904","(H853)"]],[3,5,["H2595"]],[5,8,["H559"]],[8,11,["H5221"]],[11,12,["H1732"]],[12,16,["H7023"]],[16,20,["H1732"]],[20,21,["H5437"]],[21,25,["H4480","H6440"]],[25,26,["H6471"]]]},{"k":7688,"v":[[0,2,["H7586"]],[2,4,["H3372"]],[4,5,["H4480","H6440"]],[5,6,["H1732"]],[6,7,["H3588"]],[7,9,["H3068"]],[9,10,["H1961"]],[10,11,["H5973"]],[11,15,["H5493"]],[15,16,["H4480","H5973"]],[16,17,["H7586"]]]},{"k":7689,"v":[[0,2,["H7586"]],[2,3,["H5493"]],[3,5,["H4480","H5973"]],[5,8,["H7760"]],[8,11,["H8269"]],[11,14,["H505"]],[14,18,["H3318"]],[18,21,["H935"]],[21,22,["H6440"]],[22,24,["H5971"]]]},{"k":7690,"v":[[0,2,["H1732"]],[2,5,["H7919"]],[5,7,["H3605"]],[7,9,["H1870"]],[9,12,["H3068"]],[12,14,["H5973"]],[14,15,[]]]},{"k":7691,"v":[[0,3,["H7586"]],[3,4,["H7200"]],[4,5,["H834"]],[5,6,["H1931"]],[6,10,["H7919","H3966"]],[10,13,["H1481"]],[13,14,["H4480","H6440"]],[14,15,[]]]},{"k":7692,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,5,["H3063"]],[5,6,["H157","(H853)"]],[6,7,["H1732"]],[7,8,["H3588"]],[8,9,["H1931"]],[9,11,["H3318"]],[11,14,["H935"]],[14,15,["H6440"]],[15,16,[]]]},{"k":7693,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,6,["H2009"]],[6,8,["H1419"]],[8,9,["H1323"]],[9,10,["H4764"]],[10,14,["H5414"]],[14,17,["H802"]],[17,18,["H389"]],[18,19,["H1961"]],[19,21,["H1121","H2428"]],[21,25,["H3898"]],[25,27,["H3068"]],[27,28,["H4421"]],[28,30,["H7586"]],[30,31,["H559"]],[31,33,["H408"]],[33,35,["H3027"]],[35,36,["H1961"]],[36,42,["H3027"]],[42,45,["H6430"]],[45,46,["H1961"]],[46,48,[]]]},{"k":7694,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7586"]],[5,6,["H4310"]],[6,8,["H595"]],[8,10,["H4310"]],[10,13,["H2416"]],[13,16,["H1"]],[16,17,["H4940"]],[17,19,["H3478"]],[19,20,["H3588"]],[20,23,["H1961"]],[23,26,["H2860"]],[26,29,["H4428"]]]},{"k":7695,"v":[[0,5,["H1961"]],[5,8,["H6256"]],[8,9,["(H853)"]],[9,10,["H4764"]],[10,11,["H7586"]],[11,12,["H1323"]],[12,16,["H5414"]],[16,18,["H1732"]],[18,20,["H1931"]],[20,22,["H5414"]],[22,24,["H5741"]],[24,26,["H4259"]],[26,28,["H802"]]]},{"k":7696,"v":[[0,2,["H4324"]],[2,3,["H7586"]],[3,4,["H1323"]],[4,5,["H157","(H853)"]],[5,6,["H1732"]],[6,9,["H5046"]],[9,10,["H7586"]],[10,13,["H1697"]],[13,14,["H3474","H5869"]],[14,15,[]]]},{"k":7697,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,6,["H5414"]],[6,12,["H1961"]],[12,14,["H4170"]],[14,20,["H3027"]],[20,23,["H6430"]],[23,25,["H1961"]],[25,29,["H7586"]],[29,30,["H559"]],[30,31,["H413"]],[31,32,["H1732"]],[32,36,["H3117"]],[36,41,["H2860"]],[41,47,["H8147"]]]},{"k":7698,"v":[[0,2,["H7586"]],[2,3,["H6680","(H853)"]],[3,5,["H5650"]],[5,7,["H1696"]],[7,8,["H413"]],[8,9,["H1732"]],[9,10,["H3909"]],[10,12,["H559"]],[12,13,["H2009"]],[13,15,["H4428"]],[15,17,["H2654"]],[17,21,["H3605"]],[21,23,["H5650"]],[23,24,["H157"]],[24,26,["H6258"]],[26,30,["H4428"]],[30,33,["H2860"]]]},{"k":7699,"v":[[0,2,["H7586"]],[2,3,["H5650"]],[3,4,["H1696","(H853)"]],[4,5,["H428"]],[5,6,["H1697"]],[6,9,["H241"]],[9,11,["H1732"]],[11,13,["H1732"]],[13,14,["H559"]],[14,15,["H5869"]],[15,20,["H7043"]],[20,25,["H4428"]],[25,28,["H2860"]],[28,31,["H595"]],[31,34,["H7326"]],[34,35,["H376"]],[35,38,["H7034"]]]},{"k":7700,"v":[[0,3,["H5650"]],[3,5,["H7586"]],[5,6,["H5046"]],[6,8,["H559"]],[8,10,["H428"]],[10,11,["H1697"]],[11,12,["H1696"]],[12,13,["H1732"]]]},{"k":7701,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H3541"]],[4,7,["H559"]],[7,9,["H1732"]],[9,11,["H4428"]],[11,12,["H2656"]],[12,13,["H369"]],[13,15,["H4119"]],[15,16,["H3588"]],[16,18,["H3967"]],[18,19,["H6190"]],[19,22,["H6430"]],[22,25,["H5358"]],[25,28,["H4428"]],[28,29,["H341"]],[29,31,["H7586"]],[31,32,["H2803"]],[32,34,["(H853)"]],[34,35,["H1732"]],[35,36,["H5307"]],[36,39,["H3027"]],[39,42,["H6430"]]]},{"k":7702,"v":[[0,4,["H5650"]],[4,5,["H5046"]],[5,6,["H1732","(H853)"]],[6,7,["H428"]],[7,8,["H1697"]],[8,10,["H3474","H1697","H5869"]],[10,11,["H1732"]],[11,16,["H4428"]],[16,19,["H2860"]],[19,22,["H3117"]],[22,24,["H3808"]],[24,25,["H4390"]]]},{"k":7703,"v":[[0,2,["H1732"]],[2,3,["H6965"]],[3,5,["H1980"]],[5,6,["H1931"]],[6,9,["H376"]],[9,11,["H5221"]],[11,14,["H6430"]],[14,16,["H3967"]],[16,17,["H376"]],[17,19,["H1732"]],[19,20,["H935","(H853)"]],[20,22,["H6190"]],[22,29,["H4390"]],[29,32,["H4428"]],[32,38,["H4428"]],[38,41,["H2860"]],[41,43,["H7586"]],[43,44,["H5414"]],[44,45,["(H853)"]],[45,46,["H4324"]],[46,48,["H1323"]],[48,50,["H802"]]]},{"k":7704,"v":[[0,2,["H7586"]],[2,3,["H7200"]],[3,5,["H3045"]],[5,6,["H3588"]],[6,8,["H3068"]],[8,10,["H5973"]],[10,11,["H1732"]],[11,14,["H4324"]],[14,15,["H7586"]],[15,16,["H1323"]],[16,17,["H157"]],[17,18,[]]]},{"k":7705,"v":[[0,2,["H7586"]],[2,4,["H5750"]],[4,6,["H3254"]],[6,7,["H3372"]],[7,8,["H4480","H6440"]],[8,9,["H1732"]],[9,11,["H7586"]],[11,12,["H1961","(H853)"]],[12,13,["H1732"]],[13,14,["H341"]],[14,15,["H3605","H3117"]]]},{"k":7706,"v":[[0,3,["H8269"]],[3,6,["H6430"]],[6,8,["H3318"]],[8,13,["H1961"]],[13,14,["H4480","H167"]],[14,17,["H3318"]],[17,19,["H1732"]],[19,23,["H7919"]],[23,25,["H4480","H3605"]],[25,27,["H5650"]],[27,29,["H7586"]],[29,33,["H8034"]],[33,35,["H3966"]],[35,37,["H3365"]]]},{"k":7707,"v":[[0,2,["H7586"]],[2,3,["H1696"]],[3,4,["H413"]],[4,5,["H3083"]],[5,7,["H1121"]],[7,9,["H413"]],[9,10,["H3605"]],[10,12,["H5650"]],[12,16,["H4191","(H853)"]],[16,17,["H1732"]]]},{"k":7708,"v":[[0,2,["H3083"]],[2,3,["H7586"]],[3,4,["H1121"]],[4,5,["H2654"]],[5,6,["H3966"]],[6,8,["H1732"]],[8,10,["H3083"]],[10,11,["H5046"]],[11,12,["H1732"]],[12,13,["H559"]],[13,14,["H7586"]],[14,16,["H1"]],[16,17,["H1245"]],[17,19,["H4191"]],[19,21,["H6258"]],[21,25,["H4994"]],[25,29,["H8104"]],[29,32,["H1242"]],[32,34,["H3427"]],[34,37,["H5643"]],[37,41,["H2244"]]]},{"k":7709,"v":[[0,2,["H589"]],[2,5,["H3318"]],[5,7,["H5975"]],[7,8,["H3027"]],[8,10,["H1"]],[10,13,["H7704"]],[13,14,["H834","H8033"]],[14,15,["H859"]],[15,18,["H589"]],[18,20,["H1696"]],[20,21,["H413"]],[21,23,["H1"]],[23,27,["H4100"]],[27,29,["H7200"]],[29,33,["H5046"]],[33,34,[]]]},{"k":7710,"v":[[0,2,["H3083"]],[2,3,["H1696"]],[3,4,["H2896"]],[4,6,["H1732"]],[6,7,["H413"]],[7,8,["H7586"]],[8,10,["H1"]],[10,12,["H559"]],[12,13,["H413"]],[13,16,["H408"]],[16,18,["H4428"]],[18,19,["H2398"]],[19,22,["H5650"]],[22,24,["H1732"]],[24,25,["H3588"]],[25,28,["H3808"]],[28,29,["H2398"]],[29,33,["H3588"]],[33,35,["H4639"]],[35,40,["H3966"]],[40,41,["H2896"]]]},{"k":7711,"v":[[0,4,["H7760","(H853)"]],[4,6,["H5315"]],[6,9,["H3709"]],[9,11,["H5221","(H853)"]],[11,13,["H6430"]],[13,16,["H3068"]],[16,17,["H6213"]],[17,19,["H1419"]],[19,20,["H8668"]],[20,22,["H3605"]],[22,23,["H3478"]],[23,25,["H7200"]],[25,29,["H8055"]],[29,30,["H4100"]],[30,34,["H2398"]],[34,36,["H5355"]],[36,37,["H1818"]],[37,39,["H4191","(H853)"]],[39,40,["H1732"]],[40,43,["H2600"]]]},{"k":7712,"v":[[0,2,["H7586"]],[2,3,["H8085"]],[3,6,["H6963"]],[6,8,["H3083"]],[8,10,["H7586"]],[10,11,["H7650"]],[11,14,["H3068"]],[14,15,["H2416"]],[15,18,["H518"]],[18,20,["H4191"]]]},{"k":7713,"v":[[0,2,["H3083"]],[2,3,["H7121"]],[3,4,["H1732"]],[4,6,["H3083"]],[6,7,["H5046"]],[7,8,["(H853)"]],[8,9,["H3605"]],[9,10,["H428"]],[10,11,["H1697"]],[11,13,["H3083"]],[13,14,["H935","(H853)"]],[14,15,["H1732"]],[15,16,["H413"]],[16,17,["H7586"]],[17,20,["H1961"]],[20,23,["H6440"]],[23,27,["H8032","H865"]]]},{"k":7714,"v":[[0,3,["H1961"]],[3,4,["H4421"]],[4,5,["H3254"]],[5,7,["H1732"]],[7,9,["H3318"]],[9,11,["H3898"]],[11,14,["H6430"]],[14,16,["H5221"]],[16,20,["H1419"]],[20,21,["H4347"]],[21,24,["H5127"]],[24,25,["H4480","H6440"]],[25,26,[]]]},{"k":7715,"v":[[0,3,["H7451"]],[3,4,["H7307"]],[4,7,["H3068"]],[7,8,["H1961"]],[8,9,["H413"]],[9,10,["H7586"]],[10,12,["H1931"]],[12,13,["H3427"]],[13,16,["H1004"]],[16,19,["H2595"]],[19,22,["H3027"]],[22,24,["H1732"]],[24,25,["H5059"]],[25,28,["H3027"]]]},{"k":7716,"v":[[0,2,["H7586"]],[2,3,["H1245"]],[3,5,["H5221"]],[5,6,["H1732"]],[6,10,["H7023"]],[10,13,["H2595"]],[13,17,["H6362"]],[17,21,["H4480","H6440","H7586"]],[21,24,["H5221","(H853)"]],[24,26,["H2595"]],[26,29,["H7023"]],[29,31,["H1732"]],[31,32,["H5127"]],[32,34,["H4422"]],[34,35,["H1931"]],[35,36,["H3915"]]]},{"k":7717,"v":[[0,1,["H7586"]],[1,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H1732"]],[6,7,["H1004"]],[7,9,["H8104"]],[9,13,["H4191"]],[13,17,["H1242"]],[17,19,["H4324"]],[19,20,["H1732"]],[20,21,["H802"]],[21,22,["H5046"]],[22,24,["H559"]],[24,25,["H518"]],[25,27,["H4422"]],[27,28,["H369","(H853)"]],[28,30,["H5315"]],[30,32,["H3915"]],[32,34,["H4279"]],[34,35,["H859"]],[35,38,["H4191"]]]},{"k":7718,"v":[[0,2,["H4324"]],[2,5,["H3381","(H853)","H1732"]],[5,6,["H1157"]],[6,8,["H2474"]],[8,11,["H1980"]],[11,13,["H1272"]],[13,15,["H4422"]]]},{"k":7719,"v":[[0,2,["H4324"]],[2,3,["H3947","(H853)"]],[3,5,["H8655"]],[5,7,["H7760"]],[7,9,["H413"]],[9,11,["H4296"]],[11,13,["H7760"]],[13,15,["H3523"]],[15,17,["H5795"]],[17,21,["H4763"]],[21,23,["H3680"]],[23,27,["H899"]]]},{"k":7720,"v":[[0,3,["H7586"]],[3,4,["H7971"]],[4,5,["H4397"]],[5,7,["H3947","(H853)"]],[7,8,["H1732"]],[8,10,["H559"]],[10,11,["H1931"]],[11,13,["H2470"]]]},{"k":7721,"v":[[0,2,["H7586"]],[2,3,["H7971","(H853)"]],[3,5,["H4397"]],[5,8,["H7200","(H853)"]],[8,9,["H1732"]],[9,10,["H559"]],[10,13,["H5927","(H853)"]],[13,14,["H413"]],[14,18,["H4296"]],[18,22,["H4191"]],[22,23,[]]]},{"k":7722,"v":[[0,4,["H4397"]],[4,7,["H935"]],[7,8,["H2009"]],[8,12,["H8655"]],[12,13,["H413"]],[13,15,["H4296"]],[15,18,["H3523"]],[18,20,["H5795"]],[20,24,["H4763"]]]},{"k":7723,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H4324"]],[5,6,["H4100"]],[6,9,["H7411"]],[9,11,["H3602"]],[11,14,["H7971","(H853)"]],[14,16,["H341"]],[16,20,["H4422"]],[20,22,["H4324"]],[22,23,["H559","H413"]],[23,24,["H7586"]],[24,25,["H1931"]],[25,26,["H559"]],[26,27,["H413"]],[27,31,["H7971"]],[31,32,["H4100"]],[32,35,["H4191"]],[35,36,[]]]},{"k":7724,"v":[[0,2,["H1732"]],[2,3,["H1272"]],[3,5,["H4422"]],[5,7,["H935"]],[7,8,["H413"]],[8,9,["H8050"]],[9,11,["H7414"]],[11,13,["H5046"]],[13,14,["(H853)"]],[14,15,["H3605"]],[15,16,["H834"]],[16,17,["H7586"]],[17,19,["H6213"]],[19,23,["H1931"]],[23,25,["H8050"]],[25,26,["H1980"]],[26,28,["H3427"]],[28,30,["H5121"]]]},{"k":7725,"v":[[0,4,["H5046"]],[4,5,["H7586"]],[5,6,["H559"]],[6,7,["H2009"]],[7,8,["H1732"]],[8,11,["H5121"]],[11,13,["H7414"]]]},{"k":7726,"v":[[0,2,["H7586"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,6,["H3947","(H853)"]],[6,7,["H1732"]],[7,11,["H7200","(H853)"]],[11,13,["H3862"]],[13,16,["H5030"]],[16,17,["H5012"]],[17,19,["H8050"]],[19,20,["H5975"]],[20,22,["H5324"]],[22,23,["H5921"]],[23,26,["H7307"]],[26,28,["H430"]],[28,29,["H1961"]],[29,30,["H5921"]],[30,32,["H4397"]],[32,34,["H7586"]],[34,36,["H1992"]],[36,37,["H1571"]],[37,38,["H5012"]]]},{"k":7727,"v":[[0,5,["H5046"]],[5,6,["H7586"]],[6,8,["H7971"]],[8,9,["H312"]],[9,10,["H4397"]],[10,12,["H1992"]],[12,13,["H5012"]],[13,14,["H1571"]],[14,16,["H7586"]],[16,17,["H7971"]],[17,18,["H4397"]],[18,19,["H3254"]],[19,21,["H7992"]],[21,24,["H1992"]],[24,25,["H5012"]],[25,26,["H1571"]]]},{"k":7728,"v":[[0,2,["H1980"]],[2,3,["H1931"]],[3,4,["H1571"]],[4,6,["H7414"]],[6,8,["H935"]],[8,9,["H5704"]],[9,11,["H1419"]],[11,12,["H953"]],[12,13,["H834"]],[13,16,["H7906"]],[16,19,["H7592"]],[19,21,["H559"]],[21,22,["H375"]],[22,24,["H8050"]],[24,26,["H1732"]],[26,29,["H559"]],[29,30,["H2009"]],[30,34,["H5121"]],[34,36,["H7414"]]]},{"k":7729,"v":[[0,3,["H1980"]],[3,4,["H8033"]],[4,5,["H413"]],[5,6,["H5121"]],[6,8,["H7414"]],[8,11,["H7307"]],[11,13,["H430"]],[13,14,["H1961"]],[14,15,["H5921"]],[15,16,["H1931"]],[16,17,["H1571"]],[17,21,["H1980","H1980"]],[21,23,["H5012"]],[23,24,["H5704"]],[24,26,["H935"]],[26,28,["H5121"]],[28,30,["H7414"]]]},{"k":7730,"v":[[0,2,["H1931"]],[2,4,["H6584"]],[4,6,["H899"]],[6,7,["H1571"]],[7,9,["H5012"]],[9,10,["H6440"]],[10,11,["H8050"]],[11,14,["H1571"]],[14,17,["H5307"]],[17,18,["H6174"]],[18,19,["H3605"]],[19,20,["H1931"]],[20,21,["H3117"]],[21,23,["H3605"]],[23,25,["H3915"]],[25,26,["H5921","H3651"]],[26,28,["H559"]],[28,30,["H7586"]],[30,31,["H1571"]],[31,34,["H5030"]]]},{"k":7731,"v":[[0,2,["H1732"]],[2,3,["H1272"]],[3,5,["H4480","H5121"]],[5,7,["H7414"]],[7,9,["H935"]],[9,11,["H559"]],[11,12,["H6440"]],[12,13,["H3083"]],[13,14,["H4100"]],[14,17,["H6213"]],[17,18,["H4100"]],[18,21,["H5771"]],[21,23,["H4100"]],[23,26,["H2403"]],[26,27,["H6440"]],[27,29,["H1"]],[29,30,["H3588"]],[30,32,["H1245","(H853)"]],[32,34,["H5315"]]]},{"k":7732,"v":[[0,3,["H559"]],[3,7,["H2486"]],[7,10,["H3808"]],[10,11,["H4191"]],[11,12,["H2009"]],[12,14,["H1"]],[14,16,["H6213"]],[16,17,["H3808","H1697"]],[17,19,["H1419"]],[19,20,["H176"]],[20,21,["H6996"]],[21,26,["H3808","H1540"]],[26,27,["(H853)"]],[27,28,["H241"]],[28,30,["H4069"]],[30,33,["H1"]],[33,34,["H5641","(H853)"]],[34,35,["H2088"]],[35,36,["H1697"]],[36,37,["H4480"]],[37,39,["H2063"]],[39,41,["H369"]],[41,42,[]]]},{"k":7733,"v":[[0,2,["H1732"]],[2,3,["H7650"]],[3,4,["H5750"]],[4,6,["H559"]],[6,8,["H1"]],[8,10,["H3045","H3045"]],[10,11,["H3588"]],[11,14,["H4672"]],[14,15,["H2580"]],[15,18,["H5869"]],[18,21,["H559"]],[21,23,["H408"]],[23,24,["H3083"]],[24,25,["H3045"]],[25,26,["H2063"]],[26,27,["H6435"]],[27,30,["H6087"]],[30,32,["H199"]],[32,35,["H3068"]],[35,36,["H2416"]],[36,40,["H5315"]],[40,41,["H2416"]],[41,42,["H3588"]],[42,46,["H6587"]],[46,47,["H996"]],[47,50,["H4194"]]]},{"k":7734,"v":[[0,2,["H559"]],[2,3,["H3083"]],[3,4,["H413"]],[4,5,["H1732"]],[5,6,["H4100"]],[6,8,["H5315"]],[8,9,["H559"]],[9,13,["H6213"]],[13,16,[]]]},{"k":7735,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3083"]],[5,6,["H2009"]],[6,8,["H4279"]],[8,12,["H2320"]],[12,14,["H595"]],[14,19,["H3427","H3427"]],[19,20,["H5973"]],[20,22,["H4428"]],[22,24,["H398"]],[24,28,["H7971"]],[28,33,["H5641"]],[33,36,["H7704"]],[36,37,["H5704"]],[37,39,["H7992"]],[39,42,["H6153"]]]},{"k":7736,"v":[[0,1,["H518"]],[1,3,["H1"]],[3,6,["H6485","H6485"]],[6,9,["H559"]],[9,10,["H1732"]],[10,12,["H7592","H7592"]],[12,14,["H4480"]],[14,19,["H7323"]],[19,21,["H1035"]],[21,23,["H5892"]],[23,24,["H3588"]],[24,28,["H3117"]],[28,29,["H2077"]],[29,30,["H8033"]],[30,32,["H3605"]],[32,34,["H4940"]]]},{"k":7737,"v":[[0,1,["H518"]],[1,3,["H559"]],[3,4,["H3541"]],[4,7,["H2896"]],[7,9,["H5650"]],[9,12,["H7965"]],[12,14,["H518"]],[14,18,["H2734","H2734"]],[18,21,["H3045"]],[21,22,["H3588"]],[22,23,["H7451"]],[23,25,["H3615"]],[25,26,["H4480","H5973"]],[26,27,[]]]},{"k":7738,"v":[[0,4,["H6213"]],[4,5,["H2617"]],[5,6,["H5921"]],[6,8,["H5650"]],[8,9,["H3588"]],[9,12,["H935","(H853)"]],[12,14,["H5650"]],[14,17,["H1285"]],[17,20,["H3068"]],[20,21,["H5973"]],[21,24,["H518"]],[24,26,["H3426"]],[26,29,["H5771"]],[29,30,["H4191"]],[30,32,["H859"]],[32,33,["H5704"]],[33,34,["H4100"]],[34,37,["H935"]],[37,41,["H1"]]]},{"k":7739,"v":[[0,2,["H3083"]],[2,3,["H559"]],[3,6,["H2486"]],[6,9,["H3588"]],[9,10,["H518"]],[10,13,["H3045","H3045"]],[13,14,["H3588"]],[14,15,["H7451"]],[15,17,["H3615"]],[17,18,["H4480","H5973"]],[18,20,["H1"]],[20,22,["H935"]],[22,23,["H5921"]],[23,27,["H3808"]],[27,29,["H5046"]],[29,31,[]]]},{"k":7740,"v":[[0,2,["H559"]],[2,3,["H1732"]],[3,4,["H413"]],[4,5,["H3083"]],[5,6,["H4310"]],[6,8,["H5046"]],[8,10,["H176"]],[10,11,["H4100"]],[11,14,["H1"]],[14,15,["H6030"]],[15,17,["H7186"]]]},{"k":7741,"v":[[0,2,["H3083"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,6,["H1980"]],[6,11,["H3318"]],[11,14,["H7704"]],[14,18,["H3318"]],[18,19,["H8147"]],[19,24,["H7704"]]]},{"k":7742,"v":[[0,2,["H3083"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,7,["H3068"]],[7,8,["H430"]],[8,10,["H3478"]],[10,11,["H3588"]],[11,14,["H2713","(H853)"]],[14,16,["H1"]],[16,19,["H4279"]],[19,21,["H6256"]],[21,24,["H7992"]],[24,27,["H2009"]],[27,31,["H2896"]],[31,32,["H413"]],[32,33,["H1732"]],[33,36,["H227"]],[36,37,["H7971"]],[37,38,["H3808"]],[38,39,["H413"]],[39,44,["H1540","(H853)","H241"]]]},{"k":7743,"v":[[0,2,["H3068"]],[2,3,["H6213"]],[3,4,["H3541"]],[4,6,["H3541"]],[6,7,["H3254"]],[7,9,["H3083"]],[9,11,["H3588"]],[11,13,["H3190","H413"]],[13,15,["H1"]],[15,18,["(H853)"]],[18,19,["H7451"]],[19,25,["H1540","(H853)","H241"]],[25,29,["H7971"]],[29,33,["H1980"]],[33,35,["H7965"]],[35,38,["H3068"]],[38,39,["H1961"]],[39,40,["H5973"]],[40,42,["H834"]],[42,45,["H1961"]],[45,46,["H5973"]],[46,48,["H1"]]]},{"k":7744,"v":[[0,4,["H3808"]],[4,6,["H518"]],[6,7,["H5750"]],[7,9,["H2416"]],[9,10,["H6213","H5973"]],[10,13,["H2617"]],[13,16,["H3068"]],[16,19,["H4191"]],[19,20,["H3808"]]]},{"k":7745,"v":[[0,5,["H3808"]],[5,7,["H3772","(H853)"]],[7,9,["H2617"]],[9,10,["H4480","H5973"]],[10,12,["H1004"]],[12,14,["H5704","H5769"]],[14,16,["H3808"]],[16,19,["H3068"]],[19,22,["H3772","(H853)"]],[22,24,["H341"]],[24,26,["H1732"]],[26,28,["H376"]],[28,31,["H4480","H5921","H6440"]],[31,34,["H127"]]]},{"k":7746,"v":[[0,2,["H3083"]],[2,3,["H3772"]],[3,6,["H5973"]],[6,8,["H1004"]],[8,10,["H1732"]],[10,14,["H3068"]],[14,16,["H1245"]],[16,20,["H4480","H3027"]],[20,22,["H1732"]],[22,23,["H341"]]]},{"k":7747,"v":[[0,2,["H3083"]],[2,3,["(H853)"]],[3,4,["H1732"]],[4,6,["H7650"]],[6,7,["H3254"]],[7,10,["H160"]],[10,12,["H3588"]],[12,14,["H157"]],[14,18,["H160"]],[18,21,["H5315"]]]},{"k":7748,"v":[[0,2,["H3083"]],[2,3,["H559"]],[3,7,["H4279"]],[7,11,["H2320"]],[11,16,["H6485"]],[16,17,["H3588"]],[17,19,["H4186"]],[19,22,["H6485"]]]},{"k":7749,"v":[[0,7,["H8027"]],[7,12,["H3381"]],[12,13,["H3966"]],[13,15,["H935"]],[15,16,["H413"]],[16,18,["H4725"]],[18,19,["H834"]],[19,23,["H5641"]],[23,24,["H8033","H3117"]],[24,26,["H4639"]],[26,32,["H3427"]],[32,33,["H681"]],[33,35,["H68"]],[35,36,["H237"]]]},{"k":7750,"v":[[0,2,["H589"]],[2,4,["H3384"]],[4,5,["H7969"]],[5,6,["H2671"]],[6,9,["H6654"]],[9,14,["H7971"]],[14,17,["H4307"]]]},{"k":7751,"v":[[0,2,["H2009"]],[2,5,["H7971","(H853)"]],[5,7,["H5288"]],[7,9,["H1980"]],[9,11,["H4672","(H853)"]],[11,13,["H2671"]],[13,14,["H518"]],[14,17,["H559","H559"]],[17,20,["H5288"]],[20,21,["H2009"]],[21,23,["H2671"]],[23,27,["H4480","H2008"]],[27,30,["H3947"]],[30,33,["H935"]],[33,35,["H3588"]],[35,38,["H7965"]],[38,42,["H369"]],[42,43,["H1697"]],[43,46,["H3068"]],[46,47,["H2416"]]]},{"k":7752,"v":[[0,2,["H518"]],[2,4,["H559"]],[4,5,["H3541"]],[5,9,["H5958"]],[9,10,["H2009"]],[10,12,["H2671"]],[12,14,["H4480","H1973"]],[14,18,["H1980"]],[18,19,["H3588"]],[19,21,["H3068"]],[21,25,["H7971"]]]},{"k":7753,"v":[[0,5,["H1697"]],[5,6,["H834"]],[6,7,["H859"]],[7,9,["H589"]],[9,11,["H1696"]],[11,13,["H2009"]],[13,15,["H3068"]],[15,17,["H996"]],[17,22,["H5704","H5769"]]]},{"k":7754,"v":[[0,2,["H1732"]],[2,4,["H5641"]],[4,7,["H7704"]],[7,12,["H2320"]],[12,14,["H1961"]],[14,16,["H4428"]],[16,19,["H3427"]],[19,21,["H398"]],[21,22,["H3899"]]]},{"k":7755,"v":[[0,3,["H4428"]],[3,4,["H3427"]],[4,5,["H5921"]],[5,7,["H4186"]],[7,11,["H6471","H6471"]],[11,13,["H413"]],[13,15,["H4186"]],[15,18,["H7023"]],[18,20,["H3083"]],[20,21,["H6965"]],[21,23,["H74"]],[23,24,["H3427"]],[24,26,["H7586"]],[26,27,["H4480","H6654"]],[27,29,["H1732"]],[29,30,["H4725"]],[30,32,["H6485"]]]},{"k":7756,"v":[[0,2,["H7586"]],[2,3,["H1696"]],[3,4,["H3808"]],[4,6,["H3972"]],[6,7,["H1931"]],[7,8,["H3117"]],[8,9,["H3588"]],[9,11,["H559"]],[11,14,["H4745"]],[14,16,["H1931"]],[16,18,["H1115"]],[18,19,["H2889"]],[19,20,["H3588"]],[20,23,["H3808"]],[23,24,["H2889"]]]},{"k":7757,"v":[[0,5,["H1961"]],[5,8,["H4480","H4283"]],[8,12,["H8145"]],[12,16,["H2320"]],[16,18,["H1732"]],[18,19,["H4725"]],[19,21,["H6485"]],[21,23,["H7586"]],[23,24,["H559"]],[24,25,["H413"]],[25,26,["H3083"]],[26,28,["H1121"]],[28,29,["H4069"]],[29,30,["H935"]],[30,31,["H3808"]],[31,33,["H1121"]],[33,35,["H3448"]],[35,36,["H413"]],[36,37,["H3899"]],[37,38,["H1571"]],[38,39,["H8543"]],[39,40,["H1571"]],[40,42,["H3117"]]]},{"k":7758,"v":[[0,2,["H3083"]],[2,3,["H6030","(H853)"]],[3,4,["H7586"]],[4,5,["H1732"]],[5,7,["H7592","H7592"]],[7,9,["H4480","H5973"]],[9,13,["H5704"]],[13,14,["H1035"]]]},{"k":7759,"v":[[0,3,["H559"]],[3,6,["H7971"]],[6,9,["H4994"]],[9,10,["H3588"]],[10,12,["H4940"]],[12,15,["H2077"]],[15,18,["H5892"]],[18,21,["H251"]],[21,22,["H1931"]],[22,24,["H6680"]],[24,30,["H6258"]],[30,31,["H518"]],[31,34,["H4672"]],[34,35,["H2580"]],[35,38,["H5869"]],[38,42,["H4422"]],[42,45,["H4994"]],[45,47,["H7200","(H853)"]],[47,49,["H251"]],[49,50,["H5921","H3651"]],[50,52,["H935"]],[52,53,["H3808"]],[53,54,["H413"]],[54,56,["H4428"]],[56,57,["H7979"]]]},{"k":7760,"v":[[0,2,["H7586"]],[2,3,["H639"]],[3,5,["H2734"]],[5,7,["H3083"]],[7,10,["H559"]],[10,14,["H1121"]],[14,17,["H5753"]],[17,18,["H4780"]],[18,21,["H3808"]],[21,23,["H3045"]],[23,24,["H3588"]],[24,25,["H859"]],[25,27,["H977"]],[27,29,["H1121"]],[29,31,["H3448"]],[31,35,["H1322"]],[35,39,["H1322"]],[39,42,["H517"]],[42,43,["H6172"]]]},{"k":7761,"v":[[0,1,["H3588"]],[1,3,["H3605","H3117"]],[3,4,["H834"]],[4,6,["H1121"]],[6,8,["H3448"]],[8,9,["H2416"]],[9,10,["H5921"]],[10,12,["H127"]],[12,13,["H859"]],[13,15,["H3808"]],[15,17,["H3559"]],[17,20,["H4438"]],[20,22,["H6258"]],[22,23,["H7971"]],[23,25,["H3947","(H853)"]],[25,27,["H413"]],[27,29,["H3588"]],[29,30,["H1931"]],[30,33,["H1121","H4194"]]]},{"k":7762,"v":[[0,2,["H3083"]],[2,3,["H6030","(H853)"]],[3,4,["H7586"]],[4,6,["H1"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H4100"]],[11,15,["H4191"]],[15,16,["H4100"]],[16,19,["H6213"]]]},{"k":7763,"v":[[0,2,["H7586"]],[2,3,["H2904","(H853)"]],[3,5,["H2595"]],[5,6,["H5921"]],[6,9,["H5221"]],[9,12,["H3083"]],[12,13,["H3045"]],[13,14,["H3588"]],[14,15,["H1931"]],[15,17,["H3615"]],[17,18,["H4480","H5973"]],[18,20,["H1"]],[20,22,["H4191","(H853)"]],[22,23,["H1732"]]]},{"k":7764,"v":[[0,2,["H3083"]],[2,3,["H6965"]],[3,4,["H4480","H5973"]],[4,6,["H7979"]],[6,8,["H2750"]],[8,9,["H639"]],[9,12,["H398"]],[12,13,["H3808"]],[13,14,["H3899"]],[14,16,["H8145"]],[16,17,["H3117"]],[17,20,["H2320"]],[20,21,["H3588"]],[21,24,["H6087"]],[24,25,["H413"]],[25,26,["H1732"]],[26,27,["H3588"]],[27,29,["H1"]],[29,33,["H3637"]]]},{"k":7765,"v":[[0,5,["H1961"]],[5,8,["H1242"]],[8,10,["H3083"]],[10,12,["H3318"]],[12,15,["H7704"]],[15,19,["H4150"]],[19,21,["H1732"]],[21,24,["H6996"]],[24,25,["H5288"]],[25,26,["H5973"]],[26,27,[]]]},{"k":7766,"v":[[0,3,["H559"]],[3,6,["H5288"]],[6,7,["H7323"]],[7,9,["H4672"]],[9,10,["H4994","(H853)"]],[10,12,["H2671"]],[12,13,["H834"]],[13,14,["H595"]],[14,15,["H3384"]],[15,19,["H5288"]],[19,20,["H7323"]],[20,21,["H1931"]],[21,22,["H3384"]],[22,24,["H2678"]],[24,25,["H5674"]],[25,26,[]]]},{"k":7767,"v":[[0,4,["H5288"]],[4,6,["H935"]],[6,7,["H5704"]],[7,9,["H4725"]],[9,12,["H2678"]],[12,13,["H834"]],[13,14,["H3083"]],[14,16,["H3384"]],[16,17,["H3083"]],[17,18,["H7121"]],[18,19,["H310"]],[19,21,["H5288"]],[21,23,["H559"]],[23,25,["H3808"]],[25,27,["H2678"]],[27,28,["H4480","H1973"]],[28,29,[]]]},{"k":7768,"v":[[0,2,["H3083"]],[2,3,["H7121"]],[3,4,["H310"]],[4,6,["H5288"]],[6,8,["H2363"]],[8,9,["H4120"]],[9,10,["H5975"]],[10,11,["H408"]],[11,13,["H3083"]],[13,14,["H5288"]],[14,16,["H3950","(H853)"]],[16,18,["H2678"]],[18,20,["H935"]],[20,21,["H413"]],[21,23,["H113"]]]},{"k":7769,"v":[[0,3,["H5288"]],[3,4,["H3045"]],[4,5,["H3808"]],[5,7,["H3972"]],[7,8,["H389"]],[8,9,["H3083"]],[9,11,["H1732"]],[11,12,["H3045","(H853)"]],[12,14,["H1697"]]]},{"k":7770,"v":[[0,2,["H3083"]],[2,3,["H5414","(H853)"]],[3,5,["H3627"]],[5,6,["H413"]],[6,7,["H834"]],[7,8,["H5288"]],[8,10,["H559"]],[10,13,["H1980"]],[13,14,["H935"]],[14,18,["H5892"]]]},{"k":7771,"v":[[0,6,["H5288"]],[6,8,["H935"]],[8,9,["H1732"]],[9,10,["H6965"]],[10,15,["H4480","H681"]],[15,17,["H5045"]],[17,19,["H5307"]],[19,22,["H639"]],[22,25,["H776"]],[25,28,["H7812"]],[28,29,["H7969"]],[29,30,["H6471"]],[30,33,["H5401"]],[33,34,["H376","(H853)"]],[34,35,["H7453"]],[35,37,["H1058"]],[37,38,["H376"]],[38,39,["H854"]],[39,40,["H7453"]],[40,41,["H5704"]],[41,42,["H1732"]],[42,43,["H1431"]]]},{"k":7772,"v":[[0,2,["H3083"]],[2,3,["H559"]],[3,5,["H1732"]],[5,6,["H1980"]],[6,8,["H7965"]],[8,10,["H834"]],[10,13,["H7650"]],[13,14,["H8147"]],[14,16,["H587"]],[16,19,["H8034"]],[19,22,["H3068"]],[22,23,["H559"]],[23,25,["H3068"]],[25,26,["H1961"]],[26,27,["H996"]],[27,32,["H996"]],[32,34,["H2233"]],[34,37,["H2233"]],[37,39,["H5704","H5769"]],[39,42,["H6965"]],[42,44,["H1980"]],[44,46,["H3083"]],[46,47,["H935"]],[47,50,["H5892"]]]},{"k":7773,"v":[[0,2,["H935"]],[2,3,["H1732"]],[3,5,["H5011"]],[5,6,["H413"]],[6,7,["H288"]],[7,9,["H3548"]],[9,11,["H288"]],[11,13,["H2729"]],[13,16,["H7125"]],[16,18,["H1732"]],[18,20,["H559"]],[20,23,["H4069"]],[23,25,["H859"]],[25,26,["H905"]],[26,28,["H369"]],[28,29,["H376"]],[29,30,["H854"]],[30,31,[]]]},{"k":7774,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H288"]],[5,7,["H3548"]],[7,9,["H4428"]],[9,11,["H6680"]],[11,14,["H1697"]],[14,17,["H559"]],[17,18,["H413"]],[18,21,["H408"]],[21,22,["H376"]],[22,23,["H3045"]],[23,25,["H3972"]],[25,26,["(H853)"]],[26,28,["H1697"]],[28,29,["H834"]],[29,30,["H595"]],[30,31,["H7971"]],[31,34,["H834"]],[34,37,["H6680"]],[37,42,["H3045"]],[42,44,["H5288"]],[44,45,["H413"]],[45,46,["H6423"]],[46,48,["H492"]],[48,50,["H4725"]]]},{"k":7775,"v":[[0,1,["H6258"]],[1,3,["H4100"]],[3,4,["H3426"]],[4,5,["H8478"]],[5,7,["H3027"]],[7,8,["H5414"]],[8,10,["H2568"]],[10,13,["H3899"]],[13,16,["H3027"]],[16,17,["H176"]],[17,21,["H4672"]]]},{"k":7776,"v":[[0,3,["H3548"]],[3,4,["H6030","(H853)"]],[4,5,["H1732"]],[5,7,["H559"]],[7,10,["H369"]],[10,11,["H2455"]],[11,12,["H3899"]],[12,13,["H413","H8478"]],[13,15,["H3027"]],[15,16,["H3588","H518"]],[16,18,["H3426"]],[18,19,["H6944"]],[19,20,["H3899"]],[20,21,["H518"]],[21,24,["H5288"]],[24,27,["H8104"]],[27,29,["H389"]],[29,31,["H4480","H802"]]]},{"k":7777,"v":[[0,2,["H1732"]],[2,3,["H6030","(H853)"]],[3,5,["H3548"]],[5,7,["H559"]],[7,10,["H3588","H518"]],[10,13,["H802"]],[13,16,["H6113"]],[16,21,["H8032"]],[21,22,["H8543"]],[22,26,["H3318"]],[26,29,["H3627"]],[29,33,["H5288"]],[33,35,["H6944"]],[35,42,["H1870"]],[42,43,["H2455"]],[43,44,["H637"]],[44,45,["H3588"]],[45,48,["H6942"]],[48,50,["H3117"]],[50,53,["H3627"]]]},{"k":7778,"v":[[0,3,["H3548"]],[3,4,["H5414"]],[4,6,["H6944"]],[6,8,["H3588"]],[8,10,["H1961"]],[10,11,["H3808"]],[11,12,["H3899"]],[12,13,["H8033"]],[13,14,["H3588","H518"]],[14,16,["H3899","H6440"]],[16,19,["H5493"]],[19,21,["H4480","H6440"]],[21,23,["H3068"]],[23,25,["H7760"]],[25,26,["H2527"]],[26,27,["H3899"]],[27,30,["H3117"]],[30,35,["H3947"]]]},{"k":7779,"v":[[0,4,["H376"]],[4,7,["H4480","H5650"]],[7,9,["H7586"]],[9,11,["H8033"]],[11,12,["H1931"]],[12,13,["H3117"]],[13,14,["H6113"]],[14,15,["H6440"]],[15,17,["H3068"]],[17,20,["H8034"]],[20,22,["H1673"]],[22,24,["H130"]],[24,26,["H47"]],[26,29,["H7462"]],[29,30,["H834"]],[30,33,["H7586"]]]},{"k":7780,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H288"]],[5,8,["H3426"]],[8,9,["H371"]],[9,10,["H6311"]],[10,11,["H8478"]],[11,13,["H3027"]],[13,14,["H2595"]],[14,15,["H176"]],[15,16,["H2719"]],[16,17,["H3588"]],[17,20,["H1571","H3808"]],[20,21,["H3947"]],[21,23,["H2719"]],[23,24,["H1571"]],[24,26,["H3627"]],[26,27,["H3027"]],[27,29,["H3588"]],[29,31,["H4428"]],[31,32,["H1697"]],[32,33,["H1961"]],[33,34,["H5169"]]]},{"k":7781,"v":[[0,3,["H3548"]],[3,4,["H559"]],[4,6,["H2719"]],[6,8,["H1555"]],[8,10,["H6430"]],[10,11,["H834"]],[11,13,["H5221"]],[13,16,["H6010"]],[16,18,["H425"]],[18,19,["H2009"]],[19,20,["H1931"]],[20,23,["H3874"]],[23,26,["H8071"]],[26,27,["H310"]],[27,29,["H646"]],[29,30,["H518"]],[30,33,["H3947"]],[33,35,["H3947"]],[35,37,["H3588"]],[37,40,["H369"]],[40,41,["H312"]],[41,42,["H2108"]],[42,44,["H2088"]],[44,46,["H1732"]],[46,47,["H559"]],[47,50,["H369"]],[50,53,["H5414"]],[53,55,[]]]},{"k":7782,"v":[[0,2,["H1732"]],[2,3,["H6965"]],[3,5,["H1272"]],[5,6,["H1931"]],[6,7,["H3117"]],[7,10,["H4480","H6440"]],[10,11,["H7586"]],[11,13,["H935"]],[13,14,["H413"]],[14,15,["H397"]],[15,17,["H4428"]],[17,19,["H1661"]]]},{"k":7783,"v":[[0,3,["H5650"]],[3,5,["H397"]],[5,6,["H559"]],[6,7,["H413"]],[7,10,["H3808"]],[10,11,["H2088"]],[11,12,["H1732"]],[12,14,["H4428"]],[14,17,["H776"]],[17,20,["H3808"]],[20,24,["H6030"]],[24,26,["H2088"]],[26,28,["H4246"]],[28,29,["H559"]],[29,30,["H7586"]],[30,32,["H5221"]],[32,34,["H505"]],[34,36,["H1732"]],[36,39,["H7233"]]]},{"k":7784,"v":[[0,2,["H1732"]],[2,4,["H7760","(H853)"]],[4,5,["H428"]],[5,6,["H1697"]],[6,9,["H3824"]],[9,12,["H3966"]],[12,13,["H3372"]],[13,14,["H4480","H6440"]],[14,15,["H397"]],[15,17,["H4428"]],[17,19,["H1661"]]]},{"k":7785,"v":[[0,3,["H8138","(H853)"]],[3,5,["H2940"]],[5,6,["H5869"]],[6,11,["H1984"]],[11,14,["H3027"]],[14,16,["H8427"]],[16,17,["H5921"]],[17,19,["H1817"]],[19,22,["H8179"]],[22,26,["H7388"]],[26,28,["H3381"]],[28,29,["H413"]],[29,31,["H2206"]]]},{"k":7786,"v":[[0,2,["H559"]],[2,3,["H397"]],[3,4,["H413"]],[4,6,["H5650"]],[6,7,["H2009"]],[7,9,["H7200"]],[9,11,["H376"]],[11,13,["H7696"]],[13,14,["H4100"]],[14,18,["H935"]],[18,20,["H413"]],[20,21,[]]]},{"k":7787,"v":[[0,2,["H589"]],[2,3,["H2638"]],[3,6,["H7696"]],[6,7,["H3588"]],[7,10,["H935","(H853)"]],[10,11,["H2088"]],[11,17,["H7696"]],[17,20,["H5921"]],[20,22,["H2088"]],[22,24,["H935"]],[24,25,["H413"]],[25,27,["H1004"]]]},{"k":7788,"v":[[0,1,["H1732"]],[1,3,["H1980"]],[3,4,["H4480","H8033"]],[4,6,["H4422"]],[6,7,["H413"]],[7,9,["H4631"]],[9,10,["H5725"]],[10,14,["H251"]],[14,16,["H3605"]],[16,18,["H1"]],[18,19,["H1004"]],[19,20,["H8085"]],[20,24,["H3381"]],[24,25,["H8033"]],[25,26,["H413"]],[26,27,[]]]},{"k":7789,"v":[[0,2,["H3605"]],[2,3,["H376"]],[3,7,["H4689"]],[7,9,["H3605"]],[9,10,["H376"]],[10,11,["H834"]],[11,14,["H5378"]],[14,16,["H3605"]],[16,17,["H376"]],[17,20,["H4751","H5315"]],[20,22,["H6908"]],[22,23,["H413"]],[23,27,["H1961"]],[27,29,["H8269"]],[29,30,["H5921"]],[30,34,["H1961"]],[34,35,["H5973"]],[35,38,["H702"]],[38,39,["H3967"]],[39,40,["H376"]]]},{"k":7790,"v":[[0,2,["H1732"]],[2,3,["H1980"]],[3,4,["H4480","H8033"]],[4,6,["H4708"]],[6,8,["H4124"]],[8,11,["H559"]],[11,12,["H413"]],[12,14,["H4428"]],[14,16,["H4124"]],[16,19,["H1"]],[19,22,["H517"]],[22,25,["H4994"]],[25,27,["H3318"]],[27,30,["H854"]],[30,32,["H5704","H834"]],[32,34,["H3045"]],[34,35,["H4100"]],[35,36,["H430"]],[36,38,["H6213"]],[38,40,[]]]},{"k":7791,"v":[[0,3,["H5148"]],[3,4,["(H853)"]],[4,5,["H6440"]],[5,7,["H4428"]],[7,9,["H4124"]],[9,12,["H3427"]],[12,13,["H5973"]],[13,15,["H3605"]],[15,17,["H3117"]],[17,19,["H1732"]],[19,20,["H1961"]],[20,23,["H4686"]]]},{"k":7792,"v":[[0,3,["H5030"]],[3,4,["H1410"]],[4,5,["H559"]],[5,6,["H413"]],[6,7,["H1732"]],[7,8,["H3427"]],[8,9,["H3808"]],[9,12,["H4686"]],[12,13,["H1980"]],[13,15,["H935"]],[15,19,["H776"]],[19,21,["H3063"]],[21,23,["H1732"]],[23,24,["H1980"]],[24,26,["H935"]],[26,29,["H3293"]],[29,31,["H2802"]]]},{"k":7793,"v":[[0,2,["H7586"]],[2,3,["H8085"]],[3,4,["H3588"]],[4,5,["H1732"]],[5,7,["H3045"]],[7,10,["H376"]],[10,11,["H834"]],[11,13,["H854"]],[13,16,["H7586"]],[16,17,["H3427"]],[17,19,["H1390"]],[19,20,["H8478"]],[20,22,["H815"]],[22,24,["H7414"]],[24,27,["H2595"]],[27,30,["H3027"]],[30,32,["H3605"]],[32,34,["H5650"]],[34,36,["H5324"]],[36,37,["H5921"]],[37,38,[]]]},{"k":7794,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,6,["H5650"]],[6,8,["H5324"]],[8,9,["H5921"]],[9,11,["H8085"]],[11,12,["H4994"]],[12,14,["H1145"]],[14,17,["H1121"]],[17,19,["H3448"]],[19,20,["H5414"]],[20,22,["H3605"]],[22,25,["H7704"]],[25,27,["H3754"]],[27,29,["H7760"]],[29,31,["H3605"]],[31,32,["H8269"]],[32,34,["H505"]],[34,36,["H8269"]],[36,38,["H3967"]]]},{"k":7795,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,6,["H7194"]],[6,7,["H5921"]],[7,12,["H369"]],[12,14,["H1540","(H853)","H241"]],[14,18,["H1121"]],[18,22,["H3772"]],[22,23,["H5973"]],[23,25,["H1121"]],[25,27,["H3448"]],[27,31,["H369"]],[31,32,["H4480"]],[32,36,["H2470"]],[36,37,["H5921"]],[37,41,["H1540","(H853)","H241"]],[41,43,["H3588"]],[43,45,["H1121"]],[45,48,["H6965","(H853)"]],[48,50,["H5650"]],[50,51,["H5921"]],[51,56,["H693"]],[56,59,["H2088"]],[59,60,["H3117"]]]},{"k":7796,"v":[[0,2,["H6030"]],[2,3,["H1673"]],[3,5,["H130"]],[5,6,["H1931"]],[6,8,["H5324"]],[8,9,["H5921"]],[9,11,["H5650"]],[11,13,["H7586"]],[13,15,["H559"]],[15,17,["H7200","(H853)"]],[17,19,["H1121"]],[19,21,["H3448"]],[21,22,["H935"]],[22,24,["H5011"]],[24,25,["H413"]],[25,26,["H288"]],[26,28,["H1121"]],[28,30,["H285"]]]},{"k":7797,"v":[[0,3,["H7592"]],[3,6,["H3068"]],[6,10,["H5414"]],[10,12,["H6720"]],[12,14,["H5414"]],[14,17,["H2719"]],[17,19,["H1555"]],[19,21,["H6430"]]]},{"k":7798,"v":[[0,3,["H4428"]],[3,4,["H7971"]],[4,6,["H7121","(H853)"]],[6,7,["H288"]],[7,9,["H3548"]],[9,11,["H1121"]],[11,13,["H285"]],[13,15,["H3605"]],[15,17,["H1"]],[17,18,["H1004"]],[18,20,["H3548"]],[20,21,["H834"]],[21,24,["H5011"]],[24,27,["H935"]],[27,28,["H3605"]],[28,31,["H413"]],[31,33,["H4428"]]]},{"k":7799,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H8085"]],[4,5,["H4994"]],[5,7,["H1121"]],[7,9,["H285"]],[9,12,["H559"]],[12,13,["H2009"]],[13,17,["H113"]]]},{"k":7800,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4100"]],[6,9,["H7194"]],[9,10,["H5921"]],[10,12,["H859"]],[12,15,["H1121"]],[15,17,["H3448"]],[17,22,["H5414"]],[22,24,["H3899"]],[24,27,["H2719"]],[27,30,["H7592"]],[30,32,["H430"]],[32,38,["H6965"]],[38,39,["H413"]],[39,44,["H693"]],[44,47,["H2088"]],[47,48,["H3117"]]]},{"k":7801,"v":[[0,2,["H288"]],[2,3,["H6030","(H853)"]],[3,5,["H4428"]],[5,7,["H559"]],[7,9,["H4310"]],[9,12,["H539"]],[12,14,["H3605"]],[14,16,["H5650"]],[16,18,["H1732"]],[18,22,["H4428"]],[22,25,["H2860"]],[25,27,["H5493"]],[27,28,["H413"]],[28,30,["H4928"]],[30,33,["H3513"]],[33,36,["H1004"]]]},{"k":7802,"v":[[0,3,["H3117"]],[3,4,["H2490"]],[4,6,["H7592"]],[6,8,["H430"]],[8,13,["H2486"]],[13,17,["H408"]],[17,19,["H4428"]],[19,20,["H7760"]],[20,22,["H1697"]],[22,25,["H5650"]],[25,28,["H3605"]],[28,30,["H1004"]],[30,33,["H1"]],[33,34,["H3588"]],[34,36,["H5650"]],[36,37,["H3045"]],[37,38,["H3808"]],[38,40,["H3605"]],[40,41,["H2063"]],[41,42,["H6996"]],[42,43,["H176"]],[43,44,["H1419"]]]},{"k":7803,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,8,["H4191","H4191"]],[8,9,["H288"]],[9,10,["H859"]],[10,12,["H3605"]],[12,14,["H1"]],[14,15,["H1004"]]]},{"k":7804,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H7323"]],[7,9,["H5324"]],[9,10,["H5921"]],[10,12,["H5437"]],[12,14,["H4191"]],[14,16,["H3548"]],[16,19,["H3068"]],[19,20,["H3588"]],[20,22,["H3027"]],[22,23,["H1571"]],[23,25,["H5973"]],[25,26,["H1732"]],[26,28,["H3588"]],[28,30,["H3045"]],[30,31,["H3588"]],[31,32,["H1931"]],[32,33,["H1272"]],[33,36,["H3808"]],[36,37,["H1540","(H853)"]],[37,40,["H241"]],[40,43,["H5650"]],[43,46,["H4428"]],[46,47,["H14"]],[47,48,["H3808"]],[48,50,["H7971","(H853)"]],[50,52,["H3027"]],[52,54,["H6293"]],[54,57,["H3548"]],[57,60,["H3068"]]]},{"k":7805,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H1673"]],[6,7,["H5437"]],[7,8,["H859"]],[8,10,["H6293"]],[10,13,["H3548"]],[13,15,["H1673"]],[15,17,["H130"]],[17,18,["H5437"]],[18,20,["H1931"]],[20,21,["H6293"]],[21,24,["H3548"]],[24,26,["H4191"]],[26,28,["H1931"]],[28,29,["H3117"]],[29,30,["H8084"]],[30,32,["H2568"]],[32,33,["H376"]],[33,36,["H5375"]],[36,38,["H906"]],[38,39,["H646"]]]},{"k":7806,"v":[[0,2,["H5011"]],[2,4,["H5892"]],[4,7,["H3548"]],[7,8,["H5221"]],[8,12,["H6310"]],[12,15,["H2719"]],[15,17,["H4480","H376"]],[17,19,["H802"]],[19,20,["H4480","H5768"]],[20,22,["H3243"]],[22,24,["H7794"]],[24,26,["H2543"]],[26,28,["H7716"]],[28,31,["H6310"]],[31,34,["H2719"]]]},{"k":7807,"v":[[0,2,["H259"]],[2,5,["H1121"]],[5,7,["H288"]],[7,9,["H1121"]],[9,11,["H285"]],[11,12,["H8034"]],[12,13,["H54"]],[13,14,["H4422"]],[14,16,["H1272"]],[16,17,["H310"]],[17,18,["H1732"]]]},{"k":7808,"v":[[0,2,["H54"]],[2,3,["H5046"]],[3,4,["H1732"]],[4,5,["H3588"]],[5,6,["H7586"]],[6,8,["H2026","(H853)"]],[8,10,["H3068"]],[10,11,["H3548"]]]},{"k":7809,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H54"]],[5,7,["H3045"]],[7,9,["H1931"]],[9,10,["H3117"]],[10,11,["H3588"]],[11,12,["H1673"]],[12,14,["H130"]],[14,16,["H8033"]],[16,17,["H3588"]],[17,21,["H5046","H5046"]],[21,22,["H7586"]],[22,23,["H595"]],[23,25,["H5437"]],[25,29,["H3605"]],[29,31,["H5315"]],[31,34,["H1"]],[34,35,["H1004"]]]},{"k":7810,"v":[[0,1,["H3427"]],[1,3,["H854"]],[3,5,["H3372"]],[5,6,["H408"]],[6,7,["H3588"]],[7,9,["H834"]],[9,10,["H1245","(H853)"]],[10,12,["H5315"]],[12,13,["H1245","(H853)"]],[13,15,["H5315"]],[15,16,["H3588"]],[16,17,["H5973"]],[17,19,["H859"]],[19,23,["H4931"]]]},{"k":7811,"v":[[0,3,["H5046"]],[3,4,["H1732"]],[4,5,["H559"]],[5,6,["H2009"]],[6,8,["H6430"]],[8,9,["H3898"]],[9,11,["H7084"]],[11,13,["H1992"]],[13,14,["H8154","(H853)"]],[14,16,["H1637"]]]},{"k":7812,"v":[[0,2,["H1732"]],[2,3,["H7592"]],[3,6,["H3068"]],[6,7,["H559"]],[7,10,["H1980"]],[10,12,["H5221"]],[12,13,["H428"]],[13,14,["H6430"]],[14,17,["H3068"]],[17,18,["H559"]],[18,19,["H413"]],[19,20,["H1732"]],[20,21,["H1980"]],[21,23,["H5221"]],[23,25,["H6430"]],[25,27,["H3467","(H853)"]],[27,28,["H7084"]]]},{"k":7813,"v":[[0,2,["H1732"]],[2,3,["H376"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H2009"]],[7,8,["H587"]],[8,10,["H3372"]],[10,11,["H6311"]],[11,13,["H3063"]],[13,15,["H637"]],[15,18,["H3588"]],[18,20,["H1980"]],[20,22,["H7084"]],[22,23,["H413"]],[23,25,["H4634"]],[25,28,["H6430"]]]},{"k":7814,"v":[[0,2,["H1732"]],[2,3,["H7592"]],[3,6,["H3068"]],[6,7,["H5750"]],[7,8,["H3254"]],[8,11,["H3068"]],[11,12,["H6030"]],[12,15,["H559"]],[15,16,["H6965"]],[16,18,["H3381"]],[18,20,["H7084"]],[20,21,["H3588"]],[21,22,["H589"]],[22,24,["H5414","(H853)"]],[24,26,["H6430"]],[26,29,["H3027"]]]},{"k":7815,"v":[[0,2,["H1732"]],[2,5,["H376"]],[5,6,["H1980"]],[6,8,["H7084"]],[8,10,["H3898"]],[10,13,["H6430"]],[13,16,["H5090","(H853)"]],[16,18,["H4735"]],[18,20,["H5221"]],[20,24,["H1419"]],[24,25,["H4347"]],[25,27,["H1732"]],[27,28,["H3467","(H853)"]],[28,30,["H3427"]],[30,32,["H7084"]]]},{"k":7816,"v":[[0,5,["H1961"]],[5,7,["H54"]],[7,9,["H1121"]],[9,11,["H288"]],[11,12,["H1272"]],[12,13,["H413"]],[13,14,["H1732"]],[14,16,["H7084"]],[16,20,["H3381"]],[20,23,["H646"]],[23,26,["H3027"]]]},{"k":7817,"v":[[0,4,["H5046"]],[4,5,["H7586"]],[5,6,["H3588"]],[6,7,["H1732"]],[7,9,["H935"]],[9,11,["H7084"]],[11,13,["H7586"]],[13,14,["H559"]],[14,15,["H430"]],[15,17,["H5234"]],[17,21,["H3027"]],[21,22,["H3588"]],[22,26,["H5462"]],[26,28,["H935"]],[28,31,["H5892"]],[31,34,["H1817"]],[34,36,["H1280"]]]},{"k":7818,"v":[[0,2,["H7586"]],[2,3,["H8085","(H853)"]],[3,4,["H3605"]],[4,6,["H5971"]],[6,9,["H4421"]],[9,12,["H3381"]],[12,14,["H7084"]],[14,16,["H6696","H413"]],[16,17,["H1732"]],[17,20,["H376"]]]},{"k":7819,"v":[[0,2,["H1732"]],[2,3,["H3045"]],[3,4,["H3588"]],[4,5,["H7586"]],[5,7,["H2790"]],[7,8,["H7451"]],[8,9,["H5921"]],[9,13,["H559"]],[13,14,["H413"]],[14,15,["H54"]],[15,17,["H3548"]],[17,19,["H5066"]],[19,21,["H646"]]]},{"k":7820,"v":[[0,2,["H559"]],[2,3,["H1732"]],[3,5,["H3068"]],[5,6,["H430"]],[6,8,["H3478"]],[8,10,["H5650"]],[10,13,["H8085","H8085"]],[13,14,["H3588"]],[14,15,["H7586"]],[15,16,["H1245"]],[16,18,["H935"]],[18,19,["H413"]],[19,20,["H7084"]],[20,22,["H7843"]],[22,24,["H5892"]],[24,27,["H5668"]]]},{"k":7821,"v":[[0,3,["H1167"]],[3,5,["H7084"]],[5,8,["H5462"]],[8,11,["H3027"]],[11,13,["H7586"]],[13,15,["H3381"]],[15,16,["H834"]],[16,18,["H5650"]],[18,20,["H8085"]],[20,22,["H3068"]],[22,23,["H430"]],[23,25,["H3478"]],[25,28,["H4994"]],[28,29,["H5046"]],[29,31,["H5650"]],[31,34,["H3068"]],[34,35,["H559"]],[35,39,["H3381"]]]},{"k":7822,"v":[[0,2,["H559"]],[2,3,["H1732"]],[3,6,["H1167"]],[6,8,["H7084"]],[8,9,["H5462"]],[9,13,["H376"]],[13,16,["H3027"]],[16,18,["H7586"]],[18,21,["H3068"]],[21,22,["H559"]],[22,27,["H5462"]]]},{"k":7823,"v":[[0,2,["H1732"]],[2,5,["H376"]],[5,9,["H8337"]],[9,10,["H3967","(H376)"]],[10,11,["H6965"]],[11,13,["H3318"]],[13,16,["H4480","H7084"]],[16,18,["H1980"]],[18,19,["H834"]],[19,22,["H1980"]],[22,26,["H5046"]],[26,27,["H7586"]],[27,28,["H3588"]],[28,29,["H1732"]],[29,31,["H4422"]],[31,33,["H4480","H7084"]],[33,36,["H2308"]],[36,39,["H3318"]]]},{"k":7824,"v":[[0,2,["H1732"]],[2,3,["H3427"]],[3,6,["H4057"]],[6,9,["H4679"]],[9,11,["H3427"]],[11,14,["H2022"]],[14,17,["H4057"]],[17,19,["H2128"]],[19,21,["H7586"]],[21,22,["H1245"]],[22,24,["H3605"]],[24,25,["H3117"]],[25,27,["H430"]],[27,28,["H5414"]],[28,30,["H3808"]],[30,33,["H3027"]]]},{"k":7825,"v":[[0,2,["H1732"]],[2,3,["H7200"]],[3,4,["H3588"]],[4,5,["H7586"]],[5,8,["H3318"]],[8,10,["H1245","(H853)"]],[10,12,["H5315"]],[12,14,["H1732"]],[14,18,["H4057"]],[18,20,["H2128"]],[20,23,["H2793"]]]},{"k":7826,"v":[[0,2,["H3083"]],[2,3,["H7586"]],[3,4,["H1121"]],[4,5,["H6965"]],[5,7,["H1980"]],[7,8,["H413"]],[8,9,["H1732"]],[9,12,["H2793"]],[12,14,["H2388","(H853)"]],[14,16,["H3027"]],[16,18,["H430"]]]},{"k":7827,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3372"]],[6,7,["H408"]],[7,8,["H3588"]],[8,10,["H3027"]],[10,12,["H7586"]],[12,14,["H1"]],[14,16,["H3808"]],[16,17,["H4672"]],[17,20,["H859"]],[20,23,["H4427"]],[23,24,["H5921"]],[24,25,["H3478"]],[25,27,["H595"]],[27,29,["H1961"]],[29,30,["H4932"]],[30,34,["H3651"]],[34,35,["H1571"]],[35,36,["H7586"]],[36,38,["H1"]],[38,39,["H3045"]]]},{"k":7828,"v":[[0,3,["H8147"]],[3,4,["H3772"]],[4,6,["H1285"]],[6,7,["H6440"]],[7,9,["H3068"]],[9,11,["H1732"]],[11,12,["H3427"]],[12,15,["H2793"]],[15,17,["H3083"]],[17,18,["H1980"]],[18,21,["H1004"]]]},{"k":7829,"v":[[0,3,["H5927"]],[3,5,["H2130"]],[5,6,["H413"]],[6,7,["H7586"]],[7,9,["H1390"]],[9,10,["H559"]],[10,12,["H3808"]],[12,13,["H1732"]],[13,15,["H5641"]],[15,16,["H5973"]],[16,20,["H4679"]],[20,23,["H2793"]],[23,26,["H1389"]],[26,28,["H2444"]],[28,29,["H834"]],[29,33,["H4480","H3225"]],[33,35,["H3452"]]]},{"k":7830,"v":[[0,1,["H6258"]],[1,4,["H4428"]],[4,6,["H3381"]],[6,9,["H3605"]],[9,11,["H185"]],[11,14,["H5315"]],[14,17,["H3381"]],[17,24,["H5462"]],[24,28,["H4428"]],[28,29,["H3027"]]]},{"k":7831,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H1288"]],[4,6,["H859"]],[6,9,["H3068"]],[9,10,["H3588"]],[10,13,["H2550"]],[13,14,["H5921"]],[14,15,[]]]},{"k":7832,"v":[[0,1,["H1980"]],[1,4,["H4994"]],[4,5,["H3559"]],[5,6,["H5750"]],[6,8,["H3045"]],[8,10,["H7200","(H853)"]],[10,12,["H4725"]],[12,13,["H834"]],[13,15,["H7272"]],[15,16,["H1961"]],[16,18,["H4310"]],[18,20,["H7200"]],[20,22,["H8033"]],[22,23,["H3588"]],[23,26,["H559","H413"]],[26,29,["H1931"]],[29,32,["H6191","H6191"]]]},{"k":7833,"v":[[0,1,["H7200"]],[1,5,["H3045"]],[5,7,["H4480","H3605"]],[7,10,["H4224"]],[10,11,["H834"]],[11,14,["H2244"]],[14,18,["H7725"]],[18,19,["H413"]],[19,21,["H413"]],[21,23,["H3559"]],[23,27,["H1980"]],[27,28,["H854"]],[28,35,["H1961"]],[35,36,["H518"]],[36,38,["H1961","H3426"]],[38,41,["H776"]],[41,47,["H2664","(H853)"]],[47,49,["H3605"]],[49,51,["H505"]],[51,53,["H3063"]]]},{"k":7834,"v":[[0,3,["H6965"]],[3,5,["H1980"]],[5,7,["H2128"]],[7,8,["H6440"]],[8,9,["H7586"]],[9,11,["H1732"]],[11,14,["H376"]],[14,18,["H4057"]],[18,20,["H4584"]],[20,23,["H6160"]],[23,24,["H413"]],[24,26,["H3225"]],[26,28,["H3452"]]]},{"k":7835,"v":[[0,1,["H7586"]],[1,5,["H376"]],[5,6,["H1980"]],[6,8,["H1245"]],[8,12,["H5046"]],[12,13,["H1732"]],[13,17,["H3381"]],[17,20,["H5553"]],[20,22,["H3427"]],[22,25,["H4057"]],[25,27,["H4584"]],[27,30,["H7586"]],[30,31,["H8085"]],[31,34,["H7291"]],[34,35,["H310"]],[35,36,["H1732"]],[36,39,["H4057"]],[39,41,["H4584"]]]},{"k":7836,"v":[[0,2,["H7586"]],[2,3,["H1980"]],[3,6,["H4480","H2088","H4480","H6654"]],[6,9,["H2022"]],[9,11,["H1732"]],[11,14,["H376"]],[14,17,["H4480","H2088","H4480","H6654"]],[17,20,["H2022"]],[20,22,["H1732"]],[22,24,["H1961","H2648"]],[24,27,["H1980"]],[27,30,["H4480","H6440"]],[30,31,["H7586"]],[31,33,["H7586"]],[33,36,["H376"]],[36,37,["H5849","H413"]],[37,38,["H1732"]],[38,41,["H376"]],[41,45,["H8610"]],[45,46,[]]]},{"k":7837,"v":[[0,3,["H935"]],[3,5,["H4397"]],[5,6,["H413"]],[6,7,["H7586"]],[7,8,["H559"]],[8,9,["H4116"]],[9,12,["H1980"]],[12,13,["H3588"]],[13,15,["H6430"]],[15,17,["H6584","H5921"]],[17,19,["H776"]]]},{"k":7838,"v":[[0,2,["H7586"]],[2,3,["H7725"]],[3,5,["H4480","H7291"]],[5,6,["H310"]],[6,7,["H1732"]],[7,9,["H1980"]],[9,10,["H7125"]],[10,12,["H6430"]],[12,13,["H5921","H3651"]],[13,15,["H7121"]],[15,16,["H1931"]],[16,17,["H4725"]],[17,18,["H5555","(H5553","H4256)"]]]},{"k":7839,"v":[[0,2,["H1732"]],[2,4,["H5927"]],[4,6,["H4480","H8033"]],[6,8,["H3427"]],[8,11,["H4679"]],[11,13,["H5872"]]]},{"k":7840,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H7586"]],[7,9,["H7725"]],[9,11,["H4480","H310"]],[11,13,["H6430"]],[13,17,["H5046"]],[17,19,["H559"]],[19,20,["H2009"]],[20,21,["H1732"]],[21,25,["H4057"]],[25,27,["H5872"]]]},{"k":7841,"v":[[0,2,["H7586"]],[2,3,["H3947"]],[3,4,["H7969"]],[4,5,["H505"]],[5,6,["H977"]],[6,7,["H376"]],[7,10,["H4480","H3605"]],[10,11,["H3478"]],[11,13,["H1980"]],[13,15,["H1245","(H853)"]],[15,16,["H1732"]],[16,19,["H376"]],[19,20,["H5921","H6440"]],[20,22,["H6697"]],[22,26,["H3277"]]]},{"k":7842,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H1448","H6629"]],[6,7,["H5921"]],[7,9,["H1870"]],[9,10,["H8033"]],[10,13,["H4631"]],[13,15,["H7586"]],[15,17,["H935"]],[17,19,["H5526","(H853)"]],[19,21,["H7272"]],[21,23,["H1732"]],[23,26,["H376"]],[26,27,["H3427"]],[27,30,["H3411"]],[30,33,["H4631"]]]},{"k":7843,"v":[[0,3,["H376"]],[3,5,["H1732"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H2009"]],[9,11,["H3117"]],[11,13,["H834"]],[13,15,["H3068"]],[15,16,["H559"]],[16,17,["H413"]],[17,19,["H2009"]],[19,20,["H595"]],[20,22,["H5414","(H853)"]],[22,24,["H341"]],[24,27,["H3027"]],[27,31,["H6213"]],[31,34,["H834"]],[34,38,["H3190","H5869"]],[38,42,["H1732"]],[42,43,["H6965"]],[43,46,["H3772","(H853)"]],[46,48,["H3671"]],[48,50,["H7586"]],[50,51,["H4598"]],[51,52,["H3909"]]]},{"k":7844,"v":[[0,5,["H1961"]],[5,6,["H310","H3651"]],[6,8,["H1732"]],[8,9,["H3820"]],[9,10,["H5221"]],[10,12,["H5921","H834"]],[12,16,["H3772","(H853)"]],[16,17,["H7586"]],[17,18,["H3671"]]]},{"k":7845,"v":[[0,3,["H559"]],[3,6,["H376"]],[6,8,["H4480","H3068"]],[8,9,["H2486"]],[9,10,["H518"]],[10,13,["H6213","(H853)"]],[13,14,["H2088"]],[14,15,["H1697"]],[15,18,["H113"]],[18,20,["H3068"]],[20,21,["H4899"]],[21,24,["H7971"]],[24,26,["H3027"]],[26,29,["H3588"]],[29,30,["H1931"]],[30,33,["H4899"]],[33,36,["H3068"]]]},{"k":7846,"v":[[0,2,["H1732"]],[2,3,["H8156","(H853)"]],[3,5,["H376"]],[5,8,["H1697"]],[8,10,["H5414"]],[10,12,["H3808"]],[12,14,["H6965"]],[14,15,["H413"]],[15,16,["H7586"]],[16,18,["H7586"]],[18,20,["H6965"]],[20,24,["H4480","H4631"]],[24,26,["H1980"]],[26,29,["H1870"]]]},{"k":7847,"v":[[0,1,["H1732"]],[1,3,["H6965"]],[3,4,["H310","H3651"]],[4,7,["H3318"]],[7,8,["H4480"]],[8,10,["H4631"]],[10,12,["H7121"]],[12,13,["H310"]],[13,14,["H7586"]],[14,15,["H559"]],[15,17,["H113"]],[17,19,["H4428"]],[19,22,["H7586"]],[22,23,["H5027"]],[23,24,["H310"]],[24,26,["H1732"]],[26,27,["H6915"]],[27,30,["H639"]],[30,33,["H776"]],[33,36,["H7812"]]]},{"k":7848,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H7586"]],[5,6,["H4100"]],[6,7,["H8085"]],[7,8,["(H853)"]],[8,9,["H120"]],[9,10,["H1697"]],[10,11,["H559"]],[11,12,["H2009"]],[12,13,["H1732"]],[13,14,["H1245"]],[14,16,["H7451"]]]},{"k":7849,"v":[[0,1,["H2009"]],[1,2,["H2088"]],[2,3,["H3117"]],[3,5,["H5869"]],[5,7,["H7200","(H853)"]],[7,8,["H834"]],[8,11,["H3068"]],[11,13,["H5414"]],[13,16,["H3117"]],[16,19,["H3027"]],[19,22,["H4631"]],[22,25,["H559"]],[25,27,["H2026"]],[27,32,["H2347","H5921"]],[32,36,["H559"]],[36,39,["H3808"]],[39,41,["H7971"]],[41,43,["H3027"]],[43,46,["H113"]],[46,47,["H3588"]],[47,48,["H1931"]],[48,51,["H3068"]],[51,52,["H4899"]]]},{"k":7850,"v":[[0,3,["H1"]],[3,4,["H7200"]],[4,5,["H1571"]],[5,6,["H7200","(H853)"]],[6,8,["H3671"]],[8,11,["H4598"]],[11,14,["H3027"]],[14,15,["H3588"]],[15,20,["H3772","(H853)"]],[20,22,["H3671"]],[22,25,["H4598"]],[25,27,["H2026"]],[27,29,["H3808"]],[29,30,["H3045"]],[30,33,["H7200"]],[33,34,["H3588"]],[34,37,["H369"]],[37,38,["H7451"]],[38,40,["H6588"]],[40,43,["H3027"]],[43,47,["H3808"]],[47,48,["H2398"]],[48,52,["H859"]],[52,53,["H6658","(H853)"]],[53,55,["H5315"]],[55,57,["H3947"]],[57,58,[]]]},{"k":7851,"v":[[0,2,["H3068"]],[2,3,["H8199"]],[3,4,["H996"]],[4,10,["H3068"]],[10,11,["H5358"]],[11,13,["H4480"]],[13,17,["H3027"]],[17,19,["H3808"]],[19,20,["H1961"]],[20,22,[]]]},{"k":7852,"v":[[0,1,["H834"]],[1,2,["H559"]],[2,4,["H4912"]],[4,7,["H6931"]],[7,8,["H7562"]],[8,9,["H3318"]],[9,12,["H4480","H7563"]],[12,15,["H3027"]],[15,17,["H3808"]],[17,18,["H1961"]],[18,20,[]]]},{"k":7853,"v":[[0,1,["H310"]],[1,2,["H4310"]],[2,5,["H4428"]],[5,7,["H3478"]],[7,9,["H3318"]],[9,10,["H310"]],[10,11,["H4310"]],[11,13,["H859"]],[13,14,["H7291"]],[14,15,["H310"]],[15,17,["H4191"]],[17,18,["H3611"]],[18,19,["H310"]],[19,20,["H259"]],[20,21,["H6550"]]]},{"k":7854,"v":[[0,2,["H3068"]],[2,4,["H1961"]],[4,5,["H1781"]],[5,7,["H8199"]],[7,8,["H996"]],[8,13,["H7200"]],[13,15,["H7378","(H853)"]],[15,17,["H7379"]],[17,19,["H8199"]],[19,24,["H4480","H3027"]]]},{"k":7855,"v":[[0,5,["H1961"]],[5,7,["H1732"]],[7,11,["H3615"]],[11,13,["H1696","(H853)"]],[13,14,["H428"]],[14,15,["H1697"]],[15,16,["H413"]],[16,17,["H7586"]],[17,19,["H7586"]],[19,20,["H559"]],[20,22,["H2088"]],[22,24,["H6963"]],[24,26,["H1121"]],[26,27,["H1732"]],[27,29,["H7586"]],[29,31,["H5375"]],[31,33,["H6963"]],[33,35,["H1058"]]]},{"k":7856,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,6,["H859"]],[6,9,["H6662"]],[9,10,["H4480"]],[10,12,["H3588"]],[12,13,["H859"]],[13,15,["H1580"]],[15,17,["H2896"]],[17,19,["H589"]],[19,21,["H1580"]],[21,23,["H7451"]]]},{"k":7857,"v":[[0,2,["H859"]],[2,4,["H5046"]],[4,6,["H3117","(H853)"]],[6,8,["H834"]],[8,11,["H6213"]],[11,12,["H2896"]],[12,13,["H854"]],[13,14,["(H853)"]],[14,17,["H834"]],[17,19,["H3068"]],[19,21,["H5462"]],[21,25,["H3027"]],[25,27,["H2026"]],[27,29,["H3808"]]]},{"k":7858,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H4672","(H853)"]],[5,7,["H341"]],[7,12,["H7971"]],[12,13,["H2896"]],[13,14,["H1870"]],[14,17,["H3068"]],[17,18,["H7999"]],[18,20,["H2896"]],[20,21,["H8478"]],[21,22,["H834"]],[22,25,["H6213"]],[25,28,["H2088"]],[28,29,["H3117"]]]},{"k":7859,"v":[[0,2,["H6258"]],[2,3,["H2009"]],[3,6,["H3045"]],[6,7,["H3588"]],[7,12,["H4427","H4427"]],[12,16,["H4467"]],[16,18,["H3478"]],[18,21,["H6965"]],[21,24,["H3027"]]]},{"k":7860,"v":[[0,1,["H7650"]],[1,2,["H6258"]],[2,8,["H3068"]],[8,9,["H518"]],[9,14,["H3772","(H853)"]],[14,16,["H2233"]],[16,17,["H310"]],[17,20,["H518"]],[20,24,["H8045","(H853)"]],[24,26,["H8034"]],[26,31,["H4480","H1004","H1"]]]},{"k":7861,"v":[[0,2,["H1732"]],[2,3,["H7650"]],[3,5,["H7586"]],[5,7,["H7586"]],[7,8,["H1980","H413"]],[8,9,["H1004"]],[9,11,["H1732"]],[11,14,["H376"]],[14,17,["H5927"]],[17,18,["H5921"]],[18,20,["H4686"]]]},{"k":7862,"v":[[0,2,["H8050"]],[2,3,["H4191"]],[3,5,["H3605"]],[5,7,["H3478"]],[7,10,["H6908"]],[10,12,["H5594"]],[12,15,["H6912"]],[15,19,["H1004"]],[19,21,["H7414"]],[21,23,["H1732"]],[23,24,["H6965"]],[24,27,["H3381"]],[27,28,["H413"]],[28,30,["H4057"]],[30,32,["H6290"]]]},{"k":7863,"v":[[0,5,["H376"]],[5,7,["H4584"]],[7,9,["H4639"]],[9,12,["H3760"]],[12,15,["H376"]],[15,17,["H3966"]],[17,18,["H1419"]],[18,22,["H7969"]],[22,23,["H505"]],[23,24,["H6629"]],[24,27,["H505"]],[27,28,["H5795"]],[28,31,["H1961"]],[31,32,["H1494","(H853)"]],[32,34,["H6629"]],[34,36,["H3760"]]]},{"k":7864,"v":[[0,3,["H8034"]],[3,6,["H376"]],[6,8,["H5037"]],[8,11,["H8034"]],[11,14,["H802"]],[14,15,["H26"]],[15,20,["H802"]],[20,22,["H2896"]],[22,23,["H7922"]],[23,27,["H3303"]],[27,28,["H8389"]],[28,31,["H376"]],[31,33,["H7186"]],[33,35,["H7451"]],[35,38,["H4611"]],[38,40,["H1931"]],[40,46,["H3612"]]]},{"k":7865,"v":[[0,2,["H1732"]],[2,3,["H8085"]],[3,6,["H4057"]],[6,7,["H3588"]],[7,8,["H5037"]],[8,10,["H1494","(H853)"]],[10,12,["H6629"]]]},{"k":7866,"v":[[0,2,["H1732"]],[2,4,["H7971"]],[4,5,["H6235"]],[5,7,["H5288"]],[7,9,["H1732"]],[9,10,["H559"]],[10,14,["H5288"]],[14,17,["H5927"]],[17,19,["H3760"]],[19,21,["H935"]],[21,22,["H413"]],[22,23,["H5037"]],[23,25,["H7592","H7965"]],[25,29,["H8034"]]]},{"k":7867,"v":[[0,2,["H3541"]],[2,5,["H559"]],[5,9,["H2416"]],[9,12,["H7965"]],[12,16,["H859"]],[16,18,["H7965"]],[18,22,["H1004"]],[22,24,["H7965"]],[24,27,["H3605"]],[27,28,["H834"]],[28,30,[]]]},{"k":7868,"v":[[0,2,["H6258"]],[2,5,["H8085"]],[5,6,["H3588"]],[6,9,["H1494"]],[9,10,["H6258"]],[10,12,["H7462"]],[12,13,["H834"]],[13,14,["H1961"]],[14,15,["H5973"]],[15,18,["H3637"]],[18,20,["H3808"]],[20,21,["H3808"]],[21,24,["H3972"]],[24,25,["H6485"]],[25,28,["H3605"]],[28,30,["H3117"]],[30,32,["H1961"]],[32,34,["H3760"]]]},{"k":7869,"v":[[0,1,["H7592","(H853)"]],[1,4,["H5288"]],[4,8,["H5046"]],[8,14,["H5288"]],[14,15,["H4672"]],[15,16,["H2580"]],[16,19,["H5869"]],[19,20,["H3588"]],[20,22,["H935"]],[22,23,["H5921"]],[23,25,["H2896"]],[25,26,["H3117"]],[26,27,["H5414"]],[27,30,["H4994","(H853)"]],[30,31,["H834"]],[31,32,["H4672"]],[32,35,["H3027"]],[35,38,["H5650"]],[38,42,["H1121"]],[42,43,["H1732"]]]},{"k":7870,"v":[[0,3,["H1732"]],[3,5,["H5288"]],[5,6,["H935"]],[6,8,["H1696"]],[8,9,["H413"]],[9,10,["H5037"]],[10,13,["H3605"]],[13,14,["H428"]],[14,15,["H1697"]],[15,18,["H8034"]],[18,20,["H1732"]],[20,22,["H5117"]]]},{"k":7871,"v":[[0,2,["H5037"]],[2,3,["H6030","(H853)"]],[3,4,["H1732"]],[4,5,["H5650"]],[5,7,["H559"]],[7,8,["H4310"]],[8,10,["H1732"]],[10,12,["H4310"]],[12,15,["H1121"]],[15,17,["H3448"]],[17,20,["H7231"]],[20,21,["H5650"]],[21,24,["H3117"]],[24,27,["H6555"]],[27,29,["H376"]],[29,30,["H4480","H6440"]],[30,32,["H113"]]]},{"k":7872,"v":[[0,4,["H3947","(H853)"]],[4,6,["H3899"]],[6,9,["H4325"]],[9,12,["H2878"]],[12,13,["H834"]],[13,16,["H2873"]],[16,19,["H1494"]],[19,21,["H5414"]],[21,24,["H376"]],[24,25,["H834"]],[25,27,["H3045"]],[27,28,["H3808"]],[28,29,["H335","H4480","H2088"]],[29,30,["H1992"]],[30,31,[]]]},{"k":7873,"v":[[0,2,["H1732"]],[2,4,["H5288"]],[4,5,["H2015"]],[5,7,["H1870"]],[7,10,["H7725"]],[10,12,["H935"]],[12,14,["H5046"]],[14,16,["H3605"]],[16,17,["H428"]],[17,18,["H1697"]]]},{"k":7874,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,6,["H376"]],[6,9,["H2296"]],[9,11,["H376","(H853)"]],[11,13,["H2719"]],[13,17,["H2296"]],[17,19,["H376","(H853)"]],[19,21,["H2719"]],[21,23,["H1732"]],[23,24,["H1571"]],[24,26,["H2296","(H853)"]],[26,28,["H2719"]],[28,32,["H5927"]],[32,33,["H310"]],[33,34,["H1732"]],[34,36,["H702"]],[36,37,["H3967"]],[37,38,["H376"]],[38,41,["H3967"]],[41,42,["H3427"]],[42,43,["H5921"]],[43,45,["H3627"]]]},{"k":7875,"v":[[0,2,["H259","H5288"]],[2,6,["H4480","H5288"]],[6,7,["H5046"]],[7,8,["H26"]],[8,9,["H5037"]],[9,10,["H802"]],[10,11,["H559"]],[11,12,["H2009"]],[12,13,["H1732"]],[13,14,["H7971"]],[14,15,["H4397"]],[15,19,["H4480","H4057"]],[19,21,["H1288","(H853)"]],[21,23,["H113"]],[23,26,["H5860"]],[26,28,[]]]},{"k":7876,"v":[[0,3,["H376"]],[3,5,["H3966"]],[5,6,["H2896"]],[6,12,["H3808"]],[12,13,["H3637"]],[13,14,["H3808"]],[14,15,["H6485"]],[15,18,["H3972"]],[18,21,["H3605","H3117"]],[21,24,["H1980"]],[24,25,["H854"]],[25,29,["H1961"]],[29,32,["H7704"]]]},{"k":7877,"v":[[0,2,["H1961"]],[2,4,["H2346"]],[4,5,["H5921"]],[5,7,["H1571"]],[7,9,["H3915"]],[9,10,["H1571"]],[10,11,["H3119"]],[11,12,["H3605"]],[12,14,["H3117"]],[14,16,["H1961"]],[16,17,["H5973"]],[17,19,["H7462"]],[19,21,["H6629"]]]},{"k":7878,"v":[[0,1,["H6258"]],[1,3,["H3045"]],[3,5,["H7200"]],[5,6,["H4100"]],[6,9,["H6213"]],[9,10,["H3588"]],[10,11,["H7451"]],[11,13,["H3615"]],[13,14,["H413"]],[14,16,["H113"]],[16,18,["H5921"]],[18,19,["H3605"]],[19,21,["H1004"]],[21,23,["H1931"]],[23,27,["H1121"]],[27,29,["H1100"]],[29,34,["H4480","H1696"]],[34,35,["H413"]],[35,36,[]]]},{"k":7879,"v":[[0,2,["H26"]],[2,4,["H4116"]],[4,6,["H3947"]],[6,8,["H3967"]],[8,9,["H3899"]],[9,11,["H8147"]],[11,12,["H5035"]],[12,14,["H3196"]],[14,16,["H2568"]],[16,17,["H6629"]],[17,19,["H6213"]],[19,21,["H2568"]],[21,22,["H5429"]],[22,24,["H7039"]],[24,28,["H3967"]],[28,31,["H6778"]],[31,34,["H3967"]],[34,37,["H1690"]],[37,39,["H7760"]],[39,41,["H5921"]],[41,42,["H2543"]]]},{"k":7880,"v":[[0,3,["H559"]],[3,6,["H5288"]],[6,8,["H5674"]],[8,9,["H6440"]],[9,11,["H2005"]],[11,13,["H935"]],[13,14,["H310"]],[14,18,["H5046"]],[18,19,["H3808"]],[19,21,["H376"]],[21,22,["H5037"]]]},{"k":7881,"v":[[0,3,["H1961"]],[3,6,["H1931"]],[6,7,["H7392"]],[7,8,["H5921"]],[8,10,["H2543"]],[10,14,["H3381"]],[14,17,["H5643"]],[17,20,["H2022"]],[20,22,["H2009"]],[22,23,["H1732"]],[23,26,["H376"]],[26,28,["H3381"]],[28,29,["H7125"]],[29,33,["H6298"]],[33,34,[]]]},{"k":7882,"v":[[0,2,["H1732"]],[2,4,["H559"]],[4,5,["H389"]],[5,7,["H8267"]],[7,10,["H8104","(H853)"]],[10,11,["H3605"]],[11,12,["H834"]],[12,13,["H2088"]],[13,18,["H4057"]],[18,21,["H3808","H3972"]],[21,23,["H6485"]],[23,25,["H4480","H3605"]],[25,26,["H834"]],[26,33,["H7725"]],[33,35,["H7451"]],[35,36,["H8478"]],[36,37,["H2896"]]]},{"k":7883,"v":[[0,1,["H3541"]],[1,3,["H3254"]],[3,4,["H3541"]],[4,5,["H6213"]],[5,6,["H430"]],[6,9,["H341"]],[9,11,["H1732"]],[11,12,["H518"]],[12,14,["H7604"]],[14,16,["H4480","H3605"]],[16,17,["H834"]],[17,21,["H5704"]],[21,24,["H1242"]],[24,27,["H8366"]],[27,30,["H7023"]]]},{"k":7884,"v":[[0,3,["H26"]],[3,4,["H7200","(H853)"]],[4,5,["H1732"]],[5,7,["H4116"]],[7,9,["H3381"]],[9,10,["H4480","H5921"]],[10,12,["H2543"]],[12,14,["H5307"]],[14,15,["H639"]],[15,16,["H1732"]],[16,17,["H5921"]],[17,19,["H6440"]],[19,22,["H7812"]],[22,25,["H776"]]]},{"k":7885,"v":[[0,2,["H5307"]],[2,3,["H5921"]],[3,5,["H7272"]],[5,7,["H559"]],[7,9,["H589"]],[9,11,["H113"]],[11,16,["H5771"]],[16,21,["H519"]],[21,24,["H4994"]],[24,25,["H1696"]],[25,28,["H241"]],[28,30,["H8085","(H853)"]],[30,32,["H1697"]],[32,35,["H519"]]]},{"k":7886,"v":[[0,2,["H408"]],[2,4,["H113"]],[4,7,["H4994"]],[7,8,["H7760","(H853)","H3820","H413"]],[8,9,["H2088"]],[9,10,["H376"]],[10,12,["H1100"]],[12,14,["H5037"]],[14,15,["H3588"]],[15,18,["H8034"]],[18,20,["H3651"]],[20,22,["H1931"]],[22,23,["H5037"]],[23,26,["H8034"]],[26,28,["H5039"]],[28,30,["H5973"]],[30,33,["H589"]],[33,35,["H519"]],[35,36,["H7200"]],[36,37,["H3808","(H853)"]],[37,40,["H5288"]],[40,43,["H113"]],[43,44,["H834"]],[44,47,["H7971"]]]},{"k":7887,"v":[[0,1,["H6258"]],[1,4,["H113"]],[4,7,["H3068"]],[7,8,["H2416"]],[8,12,["H5315"]],[12,13,["H2416"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H4513"]],[18,21,["H4480","H935"]],[21,24,["H1818"]],[24,27,["H3467"]],[27,32,["H3027"]],[32,33,["H6258"]],[33,36,["H341"]],[36,40,["H1245"]],[40,41,["H7451"]],[41,42,["H413"]],[42,44,["H113"]],[44,45,["H1961"]],[45,47,["H5037"]]]},{"k":7888,"v":[[0,2,["H6258"]],[2,3,["H2063"]],[3,4,["H1293"]],[4,5,["H834"]],[5,7,["H8198"]],[7,9,["H935"]],[9,12,["H113"]],[12,17,["H5414"]],[17,21,["H5288"]],[21,23,["H1980","H7272"]],[23,25,["H113"]]]},{"k":7889,"v":[[0,3,["H4994"]],[3,4,["H5375"]],[4,6,["H6588"]],[6,9,["H519"]],[9,10,["H3588"]],[10,12,["H3068"]],[12,15,["H6213","H6213"]],[15,17,["H113"]],[17,19,["H539"]],[19,20,["H1004"]],[20,21,["H3588"]],[21,23,["H113"]],[23,24,["H3898"]],[24,26,["H4421"]],[26,29,["H3068"]],[29,31,["H7451"]],[31,33,["H3808"]],[33,35,["H4672"]],[35,40,["H4480","H3117"]]]},{"k":7890,"v":[[0,3,["H120"]],[3,5,["H6965"]],[5,7,["H7291"]],[7,11,["H1245","(H853)"]],[11,13,["H5315"]],[13,16,["H5315"]],[16,19,["H113"]],[19,21,["H1961"]],[21,22,["H6887"]],[22,25,["H6872"]],[25,27,["H2416"]],[27,28,["H854"]],[28,30,["H3068"]],[30,32,["H430"]],[32,35,["H5315"]],[35,38,["H341"]],[38,43,["H7049"]],[43,48,["H8432"]],[48,51,["H7050"]]]},{"k":7891,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,9,["H3068"]],[9,12,["H6213"]],[12,15,["H113"]],[15,18,["H3605","(H853)"]],[18,20,["H2896"]],[20,21,["H834"]],[21,24,["H1696"]],[24,25,["H5921"]],[25,30,["H6680"]],[30,32,["H5057"]],[32,33,["H5921"]],[33,34,["H3478"]]]},{"k":7892,"v":[[0,2,["H2063"]],[2,4,["H1961"]],[4,5,["H3808"]],[5,6,["H6330"]],[6,10,["H4383"]],[10,12,["H3820"]],[12,15,["H113"]],[15,20,["H8210"]],[20,21,["H1818"]],[21,22,["H2600"]],[22,26,["H113"]],[26,28,["H3467"]],[28,33,["H3068"]],[33,37,["H3190"]],[37,40,["H113"]],[40,42,["H2142","(H853)"]],[42,44,["H519"]]]},{"k":7893,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H26"]],[5,6,["H1288"]],[6,9,["H3068"]],[9,10,["H430"]],[10,12,["H3478"]],[12,13,["H834"]],[13,14,["H7971"]],[14,16,["H2088"]],[16,17,["H3117"]],[17,19,["H7125"]],[19,20,[]]]},{"k":7894,"v":[[0,2,["H1288"]],[2,5,["H2940"]],[5,7,["H1288"]],[7,9,["H859"]],[9,10,["H834"]],[10,12,["H3607"]],[12,14,["H2088"]],[14,15,["H3117"]],[15,17,["H4480","H935"]],[17,20,["H1818"]],[20,23,["H3467"]],[23,28,["H3027"]]]},{"k":7895,"v":[[0,4,["H199"]],[4,7,["H3068"]],[7,8,["H430"]],[8,10,["H3478"]],[10,11,["H2416"]],[11,12,["H834"]],[12,16,["H4513"]],[16,18,["H4480","H7489"]],[18,20,["H3588","H3884"]],[20,23,["H4116"]],[23,25,["H935"]],[25,27,["H7125"]],[27,29,["H3588"]],[29,32,["H518"]],[32,34,["H3498"]],[34,36,["H5037"]],[36,37,["H5704"]],[37,39,["H1242"]],[39,40,["H216"]],[40,43,["H8366"]],[43,46,["H7023"]]]},{"k":7896,"v":[[0,2,["H1732"]],[2,3,["H3947"]],[3,6,["H4480","H3027","(H853)"]],[6,8,["H834"]],[8,11,["H935"]],[11,14,["H559"]],[14,18,["H5927"]],[18,20,["H7965"]],[20,23,["H1004"]],[23,24,["H7200"]],[24,27,["H8085"]],[27,30,["H6963"]],[30,33,["H5375"]],[33,35,["H6440"]]]},{"k":7897,"v":[[0,2,["H26"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H5037"]],[5,7,["H2009"]],[7,11,["H4960"]],[11,14,["H1004"]],[14,17,["H4960"]],[17,20,["H4428"]],[20,22,["H5037"]],[22,23,["H3820"]],[23,25,["H2896"]],[25,26,["H5921"]],[26,29,["H1931"]],[29,31,["H5704","H3966"]],[31,32,["H7910"]],[32,35,["H5046"]],[35,37,["H3808","H1697"]],[37,38,["H6996"]],[38,40,["H1419"]],[40,41,["H5704"]],[41,43,["H1242"]],[43,44,["H216"]]]},{"k":7898,"v":[[0,5,["H1961"]],[5,8,["H1242"]],[8,11,["H3196"]],[11,14,["H3318"]],[14,16,["H4480","H5037"]],[16,19,["H802"]],[19,21,["H5046"]],[21,22,["(H853)"]],[22,23,["H428"]],[23,24,["H1697"]],[24,27,["H3820"]],[27,28,["H4191"]],[28,29,["H7130"]],[29,32,["H1931"]],[32,33,["H1961"]],[33,36,["H68"]]]},{"k":7899,"v":[[0,5,["H1961"]],[5,7,["H6235"]],[7,8,["H3117"]],[8,12,["H3068"]],[12,13,["H5062","(H853)"]],[13,14,["H5037"]],[14,17,["H4191"]]]},{"k":7900,"v":[[0,3,["H1732"]],[3,4,["H8085"]],[4,5,["H3588"]],[5,6,["H5037"]],[6,8,["H4191"]],[8,10,["H559"]],[10,11,["H1288"]],[11,14,["H3068"]],[14,15,["H834"]],[15,17,["H7378","(H853)"]],[17,19,["H7379"]],[19,22,["H2781"]],[22,25,["H4480","H3027"]],[25,27,["H5037"]],[27,30,["H2820"]],[30,32,["H5650"]],[32,34,["H4480","H7451"]],[34,37,["H3068"]],[37,39,["H7725"]],[39,41,["H7451"]],[41,43,["H5037"]],[43,47,["H7218"]],[47,49,["H1732"]],[49,50,["H7971"]],[50,52,["H1696"]],[52,54,["H26"]],[54,56,["H3947"]],[56,61,["H802"]]]},{"k":7901,"v":[[0,4,["H5650"]],[4,6,["H1732"]],[6,8,["H935"]],[8,9,["H413"]],[9,10,["H26"]],[10,12,["H3760"]],[12,14,["H1696"]],[14,15,["H413"]],[15,17,["H559"]],[17,18,["H1732"]],[18,19,["H7971"]],[19,21,["H413"]],[21,24,["H3947"]],[24,29,["H802"]]]},{"k":7902,"v":[[0,3,["H6965"]],[3,6,["H7812"]],[6,9,["H639"]],[9,12,["H776"]],[12,14,["H559"]],[14,15,["H2009"]],[15,18,["H519"]],[18,21,["H8198"]],[21,23,["H7364"]],[23,25,["H7272"]],[25,28,["H5650"]],[28,31,["H113"]]]},{"k":7903,"v":[[0,2,["H26"]],[2,3,["H4116"]],[3,5,["H6965"]],[5,7,["H7392"]],[7,8,["H5921"]],[8,10,["H2543"]],[10,12,["H2568"]],[12,13,["H5291"]],[13,17,["H1980"]],[17,18,["H7272"]],[18,22,["H1980"]],[22,23,["H310"]],[23,25,["H4397"]],[25,27,["H1732"]],[27,29,["H1961"]],[29,31,["H802"]]]},{"k":7904,"v":[[0,1,["H1732"]],[1,3,["H3947"]],[3,4,["H293"]],[4,6,["H4480","H3157"]],[6,9,["H1961"]],[9,10,["H1571"]],[10,11,["H8147"]],[11,15,["H802"]]]},{"k":7905,"v":[[0,2,["H7586"]],[2,4,["H5414","(H853)"]],[4,5,["H4324"]],[5,7,["H1323"]],[7,8,["H1732"]],[8,9,["H802"]],[9,11,["H6406"]],[11,13,["H1121"]],[13,15,["H3919"]],[15,16,["H834"]],[16,19,["H4480","H1554"]]]},{"k":7906,"v":[[0,3,["H2130"]],[3,4,["H935"]],[4,5,["H413"]],[5,6,["H7586"]],[6,8,["H1390"]],[8,9,["H559"]],[9,11,["H3808"]],[11,12,["H1732"]],[12,14,["H5641"]],[14,17,["H1389"]],[17,19,["H2444"]],[19,22,["H5921","H6440"]],[22,23,["H3452"]]]},{"k":7907,"v":[[0,2,["H7586"]],[2,3,["H6965"]],[3,6,["H3381"]],[6,7,["H413"]],[7,9,["H4057"]],[9,11,["H2128"]],[11,13,["H7969"]],[13,14,["H505"]],[14,15,["H977"]],[15,16,["H376"]],[16,18,["H3478"]],[18,19,["H854"]],[19,22,["H1245","(H853)"]],[22,23,["H1732"]],[23,26,["H4057"]],[26,28,["H2128"]]]},{"k":7908,"v":[[0,2,["H7586"]],[2,3,["H2583"]],[3,6,["H1389"]],[6,8,["H2444"]],[8,9,["H834"]],[9,11,["H5921","H6440"]],[11,12,["H3452"]],[12,13,["H5921"]],[13,15,["H1870"]],[15,17,["H1732"]],[17,18,["H3427"]],[18,21,["H4057"]],[21,24,["H7200"]],[24,25,["H3588"]],[25,26,["H7586"]],[26,27,["H935"]],[27,28,["H310"]],[28,32,["H4057"]]]},{"k":7909,"v":[[0,1,["H1732"]],[1,4,["H7971"]],[4,5,["H7270"]],[5,7,["H3045"]],[7,8,["H3588"]],[8,9,["H7586"]],[9,12,["H935","H413"]],[12,14,["H3559"]]]},{"k":7910,"v":[[0,2,["H1732"]],[2,3,["H6965"]],[3,5,["H935"]],[5,6,["H413"]],[6,8,["H4725"]],[8,9,["H834","H8033"]],[9,10,["H7586"]],[10,12,["H2583"]],[12,14,["H1732"]],[14,15,["H7200","(H853)"]],[15,17,["H4725"]],[17,18,["H834","H8033"]],[18,19,["H7586"]],[19,20,["H7901"]],[20,22,["H74"]],[22,24,["H1121"]],[24,26,["H5369"]],[26,28,["H8269"]],[28,31,["H6635"]],[31,33,["H7586"]],[33,34,["H7901"]],[34,37,["H4570"]],[37,40,["H5971"]],[40,41,["H2583"]],[41,43,["H5439"]],[43,44,[]]]},{"k":7911,"v":[[0,2,["H6030"]],[2,3,["H1732"]],[3,5,["H559"]],[5,6,["H413"]],[6,7,["H288"]],[7,9,["H2850"]],[9,11,["H413"]],[11,12,["H52"]],[12,14,["H1121"]],[14,16,["H6870"]],[16,17,["H251"]],[17,19,["H3097"]],[19,20,["H559"]],[20,21,["H4310"]],[21,24,["H3381"]],[24,25,["H854"]],[25,27,["H413"]],[27,28,["H7586"]],[28,29,["H413"]],[29,31,["H4264"]],[31,33,["H52"]],[33,34,["H559"]],[34,35,["H589"]],[35,38,["H3381"]],[38,39,["H5973"]],[39,40,[]]]},{"k":7912,"v":[[0,2,["H1732"]],[2,4,["H52"]],[4,5,["H935"]],[5,6,["H413"]],[6,8,["H5971"]],[8,10,["H3915"]],[10,12,["H2009"]],[12,13,["H7586"]],[13,14,["H7901"]],[14,15,["H3463"]],[15,18,["H4570"]],[18,21,["H2595"]],[21,22,["H4600"]],[22,25,["H776"]],[25,28,["H4763"]],[28,30,["H74"]],[30,33,["H5971"]],[33,34,["H7901"]],[34,36,["H5439"]],[36,37,[]]]},{"k":7913,"v":[[0,2,["H559"]],[2,3,["H52"]],[3,4,["H413"]],[4,5,["H1732"]],[5,6,["H430"]],[6,8,["H5462","(H853)"]],[8,10,["H341"]],[10,13,["H3027"]],[13,15,["H3117"]],[15,16,["H6258"]],[16,20,["H5221"]],[20,24,["H4994"]],[24,27,["H2595"]],[27,31,["H776"]],[31,33,["H259","H6471"]],[33,37,["H3808"]],[37,42,["H8138"]]]},{"k":7914,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H52"]],[5,6,["H7843"]],[6,8,["H408"]],[8,9,["H3588"]],[9,10,["H4310"]],[10,13,["H7971"]],[13,15,["H3027"]],[15,18,["H3068"]],[18,19,["H4899"]],[19,22,["H5352"]]]},{"k":7915,"v":[[0,1,["H1732"]],[1,2,["H559"]],[2,3,["H3588","H518"]],[3,6,["H3068"]],[6,7,["H2416"]],[7,9,["H3068"]],[9,11,["H5062"]],[11,13,["H176"]],[13,15,["H3117"]],[15,17,["H935"]],[17,19,["H4191"]],[19,20,["H176"]],[20,23,["H3381"]],[23,25,["H4421"]],[25,27,["H5595"]]]},{"k":7916,"v":[[0,2,["H4480","H3068"]],[2,3,["H2486"]],[3,8,["H4480","H7971"]],[8,10,["H3027"]],[10,13,["H3068"]],[13,14,["H4899"]],[14,18,["H4994"]],[18,19,["H3947"]],[19,21,["H6258","(H853)"]],[21,23,["H2595"]],[23,24,["H834"]],[24,28,["H4763"]],[28,31,["H6835"]],[31,33,["H4325"]],[33,37,["H1980"]]]},{"k":7917,"v":[[0,2,["H1732"]],[2,3,["H3947","(H853)"]],[3,5,["H2595"]],[5,8,["H6835"]],[8,10,["H4325"]],[10,12,["H7586"]],[12,13,["H4763"]],[13,18,["H1980"]],[18,20,["H369"]],[20,22,["H7200"]],[22,24,["H369"]],[24,25,["H3045"]],[25,27,["H369"]],[27,28,["H6974"]],[28,29,["H3588"]],[29,32,["H3605"]],[32,33,["H3463"]],[33,34,["H3588"]],[34,37,["H8639"]],[37,40,["H3068"]],[40,42,["H5307"]],[42,43,["H5921"]],[43,44,[]]]},{"k":7918,"v":[[0,2,["H1732"]],[2,4,["H5674"]],[4,8,["H5676"]],[8,10,["H5975"]],[10,11,["H5921"]],[11,13,["H7218"]],[13,16,["H2022"]],[16,18,["H4480","H7350"]],[18,20,["H7227"]],[20,21,["H4725"]],[21,23,["H996"]],[23,24,[]]]},{"k":7919,"v":[[0,2,["H1732"]],[2,3,["H7121"]],[3,4,["H413"]],[4,6,["H5971"]],[6,8,["H413"]],[8,9,["H74"]],[9,11,["H1121"]],[11,13,["H5369"]],[13,14,["H559"]],[14,15,["H6030"]],[15,17,["H3808"]],[17,18,["H74"]],[18,20,["H74"]],[20,21,["H6030"]],[21,23,["H559"]],[23,24,["H4310"]],[24,26,["H859"]],[26,28,["H7121"]],[28,29,["H413"]],[29,31,["H4428"]]]},{"k":7920,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H74"]],[5,7,["H3808"]],[7,8,["H859"]],[8,11,["H376"]],[11,13,["H4310"]],[13,17,["H3644"]],[17,19,["H3478"]],[19,20,["H4100"]],[20,24,["H3808"]],[24,25,["H8104","H413"]],[25,27,["H113"]],[27,29,["H4428"]],[29,30,["H3588"]],[30,32,["H935"]],[32,33,["H259"]],[33,36,["H5971"]],[36,39,["H7843","(H853)"]],[39,41,["H4428"]],[41,43,["H113"]]]},{"k":7921,"v":[[0,1,["H2088"]],[1,2,["H1697"]],[2,4,["H3808"]],[4,5,["H2896"]],[5,6,["H834"]],[6,9,["H6213"]],[9,12,["H3068"]],[12,13,["H2416"]],[13,14,["H859"]],[14,16,["H1121"]],[16,18,["H4194"]],[18,19,["H834"]],[19,22,["H3808"]],[22,23,["H8104","H5921"]],[23,25,["H113"]],[25,27,["H3068"]],[27,28,["H4899"]],[28,30,["H6258"]],[30,31,["H7200"]],[31,32,["H335"]],[32,34,["H4428"]],[34,35,["H2595"]],[35,39,["H6835"]],[39,41,["H4325"]],[41,42,["H834"]],[42,46,["H4763"]]]},{"k":7922,"v":[[0,2,["H7586"]],[2,3,["H5234","(H853)"]],[3,4,["H1732"]],[4,5,["H6963"]],[5,7,["H559"]],[7,9,["H2088"]],[9,11,["H6963"]],[11,13,["H1121"]],[13,14,["H1732"]],[14,16,["H1732"]],[16,17,["H559"]],[17,21,["H6963"]],[21,23,["H113"]],[23,25,["H4428"]]]},{"k":7923,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,7,["H113"]],[7,8,["H2088"]],[8,9,["H7291"]],[9,10,["H310"]],[10,12,["H5650"]],[12,13,["H3588"]],[13,14,["H4100"]],[14,17,["H6213"]],[17,19,["H4100"]],[19,20,["H7451"]],[20,24,["H3027"]]]},{"k":7924,"v":[[0,1,["H6258"]],[1,5,["H4994"]],[5,8,["H113"]],[8,10,["H4428"]],[10,11,["H8085","(H853)"]],[11,13,["H1697"]],[13,16,["H5650"]],[16,17,["H518"]],[17,19,["H3068"]],[19,23,["H5496"]],[23,28,["H7306"]],[28,30,["H4503"]],[30,32,["H518"]],[32,36,["H1121"]],[36,38,["H120"]],[38,39,["H779"]],[39,41,["H1992"]],[41,42,["H6440"]],[42,44,["H3068"]],[44,45,["H3588"]],[45,50,["H1644"]],[50,52,["H3117"]],[52,54,["H4480","H5596"]],[54,57,["H5159"]],[57,60,["H3068"]],[60,61,["H559"]],[61,62,["H1980"]],[62,63,["H5647"]],[63,64,["H312"]],[64,65,["H430"]]]},{"k":7925,"v":[[0,1,["H6258"]],[1,4,["H408"]],[4,6,["H1818"]],[6,7,["H5307"]],[7,10,["H776"]],[10,11,["H4480","H5048"]],[11,13,["H6440"]],[13,16,["H3068"]],[16,17,["H3588"]],[17,19,["H4428"]],[19,21,["H3478"]],[21,24,["H3318"]],[24,26,["H1245","(H853)"]],[26,28,["H6550"]],[28,30,["H834"]],[30,31,["H259"]],[31,33,["H7291"]],[33,35,["H7124"]],[35,38,["H2022"]]]},{"k":7926,"v":[[0,2,["H559"]],[2,3,["H7586"]],[3,6,["H2398"]],[6,7,["H7725"]],[7,9,["H1121"]],[9,10,["H1732"]],[10,11,["H3588"]],[11,14,["H3808"]],[14,15,["H5750"]],[15,18,["H7489"]],[18,19,["H8478","H834"]],[19,21,["H5315"]],[21,23,["H3365"]],[23,26,["H5869"]],[26,27,["H2088"]],[27,28,["H3117"]],[28,29,["H2009"]],[29,34,["H5528"]],[34,37,["H7686"]],[37,38,["H7235","H3966"]]]},{"k":7927,"v":[[0,2,["H1732"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H2009"]],[6,8,["H4428"]],[8,9,["H2595"]],[9,12,["H259"]],[12,16,["H4480","H5288"]],[16,18,["H5674"]],[18,20,["H3947"]],[20,21,[]]]},{"k":7928,"v":[[0,2,["H3068"]],[2,3,["H7725"]],[3,6,["H376","(H853)"]],[6,8,["H6666"]],[8,11,["H530"]],[11,12,["H834"]],[12,14,["H3068"]],[14,15,["H5414"]],[15,19,["H3027"]],[19,21,["H3117"]],[21,24,["H14"]],[24,25,["H3808"]],[25,27,["H7971"]],[27,29,["H3027"]],[29,32,["H3068"]],[32,33,["H4899"]]]},{"k":7929,"v":[[0,2,["H2009"]],[2,3,["H834"]],[3,5,["H5315"]],[5,8,["H1431"]],[8,10,["H2088"]],[10,11,["H3117"]],[11,14,["H5869"]],[14,15,["H3651"]],[15,18,["H5315"]],[18,21,["H1431"]],[21,25,["H5869"]],[25,28,["H3068"]],[28,32,["H5337"]],[32,36,["H4480","H3605"]],[36,37,["H6869"]]]},{"k":7930,"v":[[0,2,["H7586"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,6,["H1288"]],[6,8,["H859"]],[8,10,["H1121"]],[10,11,["H1732"]],[11,14,["H1571"]],[14,16,["H6213","H6213"]],[16,19,["H1571"]],[19,22,["H3201","H3201"]],[22,24,["H1732"]],[24,25,["H1980"]],[25,28,["H1870"]],[28,30,["H7586"]],[30,31,["H7725"]],[31,34,["H4725"]]]},{"k":7931,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3820"]],[6,9,["H6258"]],[9,10,["H5595"]],[10,11,["H259"]],[11,12,["H3117"]],[12,15,["H3027"]],[15,17,["H7586"]],[17,20,["H369"]],[20,21,["H2896"]],[21,24,["H3588"]],[24,29,["H4422","H4422"]],[29,30,["H413"]],[30,32,["H776"]],[32,35,["H6430"]],[35,37,["H7586"]],[37,39,["H2976"]],[39,40,["H4480"]],[40,43,["H1245"]],[43,46,["H5750"]],[46,48,["H3605"]],[48,49,["H1366"]],[49,51,["H3478"]],[51,55,["H4422"]],[55,59,["H4480","H3027"]]]},{"k":7932,"v":[[0,2,["H1732"]],[2,3,["H6965"]],[3,5,["H1931"]],[5,7,["H5674"]],[7,10,["H8337"]],[10,11,["H3967"]],[11,12,["H376"]],[12,13,["H834"]],[13,15,["H5973"]],[15,17,["H413"]],[17,18,["H397"]],[18,20,["H1121"]],[20,22,["H4582"]],[22,23,["H4428"]],[23,25,["H1661"]]]},{"k":7933,"v":[[0,2,["H1732"]],[2,3,["H3427"]],[3,4,["H5973"]],[4,5,["H397"]],[5,7,["H1661"]],[7,8,["H1931"]],[8,11,["H376"]],[11,13,["H376"]],[13,16,["H1004"]],[16,18,["H1732"]],[18,21,["H8147"]],[21,22,["H802"]],[22,23,["H293"]],[23,25,["H3159"]],[25,27,["H26"]],[27,29,["H3761"]],[29,30,["H5037"]],[30,31,["H802"]]]},{"k":7934,"v":[[0,4,["H5046"]],[4,5,["H7586"]],[5,6,["H3588"]],[6,7,["H1732"]],[7,9,["H1272"]],[9,11,["H1661"]],[11,14,["H1245"]],[14,15,["H3808"]],[15,16,["H5750"]],[16,17,["H3254"]],[17,19,[]]]},{"k":7935,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H397"]],[5,6,["H518"]],[6,9,["H4994"]],[9,10,["H4672"]],[10,11,["H2580"]],[11,14,["H5869"]],[14,17,["H5414"]],[17,20,["H4725"]],[20,22,["H259"]],[22,23,["H5892"]],[23,26,["H7704"]],[26,30,["H3427"]],[30,31,["H8033"]],[31,33,["H4100"]],[33,36,["H5650"]],[36,37,["H3427"]],[37,40,["H4467"]],[40,41,["H5892"]],[41,42,["H5973"]],[42,43,[]]]},{"k":7936,"v":[[0,2,["H397"]],[2,3,["H5414"]],[3,4,["(H853)"]],[4,5,["H6860"]],[5,6,["H1931"]],[6,7,["H3117"]],[7,8,["H3651"]],[8,9,["H6860"]],[9,10,["H1961"]],[10,13,["H4428"]],[13,15,["H3063"]],[15,16,["H5704"]],[16,17,["H2088"]],[17,18,["H3117"]]]},{"k":7937,"v":[[0,3,["H3117"]],[3,4,["H834"]],[4,5,["H1732"]],[5,6,["H3427"]],[6,9,["H7704"]],[9,12,["H6430"]],[12,13,["H1961"]],[13,15,["H4557"]],[15,16,["H3117"]],[16,18,["H702"]],[18,19,["H2320"]]]},{"k":7938,"v":[[0,2,["H1732"]],[2,5,["H376"]],[5,7,["H5927"]],[7,9,["H6584","H413"]],[9,11,["H1651"]],[11,14,["H1511"]],[14,17,["H6003"]],[17,18,["H3588"]],[18,19,["H2007"]],[19,23,["H834","H4480","H5769"]],[23,25,["H3427"]],[25,28,["H776"]],[28,31,["H935"]],[31,33,["H7793"]],[33,35,["H5704"]],[35,37,["H776"]],[37,39,["H4714"]]]},{"k":7939,"v":[[0,2,["H1732"]],[2,3,["H5221","(H853)"]],[3,5,["H776"]],[5,7,["H2421"]],[7,8,["H3808"]],[8,9,["H376"]],[9,11,["H802"]],[11,15,["H3947"]],[15,17,["H6629"]],[17,20,["H1241"]],[20,23,["H2543"]],[23,26,["H1581"]],[26,29,["H899"]],[29,31,["H7725"]],[31,33,["H935"]],[33,34,["H413"]],[34,35,["H397"]]]},{"k":7940,"v":[[0,2,["H397"]],[2,3,["H559"]],[3,4,["H408"]],[4,9,["H6584"]],[9,11,["H3117"]],[11,13,["H1732"]],[13,14,["H559"]],[14,15,["H5921"]],[15,17,["H5045"]],[17,19,["H3063"]],[19,21,["H5921"]],[21,23,["H5045"]],[23,26,["H3397"]],[26,28,["H413"]],[28,30,["H5045"]],[30,33,["H7017"]]]},{"k":7941,"v":[[0,2,["H1732"]],[2,3,["H2421"]],[3,4,["H3808"]],[4,5,["H376"]],[5,7,["H802"]],[7,10,["H935"]],[10,13,["H1661"]],[13,14,["H559"]],[14,15,["H6435"]],[15,18,["H5046"]],[18,19,["H5921"]],[19,21,["H559"]],[21,22,["H3541"]],[22,23,["H6213"]],[23,24,["H1732"]],[24,26,["H3541"]],[26,30,["H4941"]],[30,31,["H3605"]],[31,33,["H3117"]],[33,35,["H3427"]],[35,38,["H7704"]],[38,41,["H6430"]]]},{"k":7942,"v":[[0,2,["H397"]],[2,3,["H539"]],[3,4,["H1732"]],[4,5,["H559"]],[5,10,["H5971"]],[10,11,["H3478"]],[11,14,["H887","H887"]],[14,19,["H1961"]],[19,21,["H5650"]],[21,23,["H5769"]]]},{"k":7943,"v":[[0,5,["H1961"]],[5,7,["H1992"]],[7,8,["H3117"]],[8,11,["H6430"]],[11,13,["H6908","(H853)"]],[13,15,["H4264"]],[15,17,["H6635"]],[17,19,["H3898"]],[19,21,["H3478"]],[21,23,["H397"]],[23,24,["H559"]],[24,25,["H413"]],[25,26,["H1732"]],[26,29,["H3045","H3045"]],[29,30,["H3588"]],[30,34,["H3318"]],[34,35,["H854"]],[35,38,["H4264"]],[38,39,["H859"]],[39,42,["H376"]]]},{"k":7944,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H397"]],[5,6,["H3651"]],[6,7,["H859"]],[7,9,["H3045","(H853)"]],[9,10,["H834"]],[10,12,["H5650"]],[12,14,["H6213"]],[14,16,["H397"]],[16,17,["H559"]],[17,18,["H413"]],[18,19,["H1732"]],[19,20,["H3651"]],[20,23,["H7760"]],[23,25,["H8104"]],[25,28,["H7218"]],[28,30,["H3605","H3117"]]]},{"k":7945,"v":[[0,2,["H8050"]],[2,4,["H4191"]],[4,6,["H3605"]],[6,7,["H3478"]],[7,9,["H5594"]],[9,12,["H6912"]],[12,15,["H7414"]],[15,20,["H5892"]],[20,22,["H7586"]],[22,25,["H5493"]],[25,30,["H178"]],[30,33,["H3049"]],[33,37,["H4480","H776"]]]},{"k":7946,"v":[[0,3,["H6430"]],[3,6,["H6908"]],[6,8,["H935"]],[8,10,["H2583"]],[10,12,["H7766"]],[12,14,["H7586"]],[14,18,["H6908","(H853)","H3605","H3478"]],[18,21,["H2583"]],[21,23,["H1533"]]]},{"k":7947,"v":[[0,3,["H7586"]],[3,4,["H7200","(H853)"]],[4,6,["H4264"]],[6,9,["H6430"]],[9,12,["H3372"]],[12,15,["H3820"]],[15,16,["H3966"]],[16,17,["H2729"]]]},{"k":7948,"v":[[0,3,["H7586"]],[3,4,["H7592"]],[4,7,["H3068"]],[7,9,["H3068"]],[9,10,["H6030"]],[10,12,["H3808"]],[12,13,["H1571"]],[13,15,["H2472"]],[15,16,["H1571"]],[16,18,["H224"]],[18,19,["H1571"]],[19,21,["H5030"]]]},{"k":7949,"v":[[0,2,["H559"]],[2,3,["H7586"]],[3,6,["H5650"]],[6,7,["H1245"]],[7,10,["H802"]],[10,12,["H1172"]],[12,15,["H178"]],[15,19,["H1980"]],[19,20,["H413"]],[20,23,["H1875"]],[23,28,["H5650"]],[28,29,["H559"]],[29,30,["H413"]],[30,32,["H2009"]],[32,36,["H802"]],[36,38,["H1172"]],[38,41,["H178"]],[41,43,["H5874"]]]},{"k":7950,"v":[[0,2,["H7586"]],[2,4,["H2664"]],[4,7,["H3847"]],[7,8,["H312"]],[8,9,["H899"]],[9,11,["H1931"]],[11,12,["H1980"]],[12,14,["H8147"]],[14,15,["H376"]],[15,16,["H5973"]],[16,20,["H935"]],[20,21,["H413"]],[21,23,["H802"]],[23,25,["H3915"]],[25,28,["H559"]],[28,31,["H4994"]],[31,32,["H7080"]],[32,38,["H178"]],[38,40,["H5927"]],[40,43,["(H853)"]],[43,44,["H834"]],[44,47,["H559"]],[47,48,["H413"]],[48,49,[]]]},{"k":7951,"v":[[0,3,["H802"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H2009"]],[7,8,["H859"]],[8,9,["H3045","(H853)"]],[9,10,["H834"]],[10,11,["H7586"]],[11,13,["H6213"]],[13,14,["H834"]],[14,18,["H3772","(H853)"]],[18,23,["H178"]],[23,26,["H3049"]],[26,28,["H4480"]],[28,30,["H776"]],[30,31,["H4100"]],[31,34,["H859"]],[34,36,["H5367"]],[36,39,["H5315"]],[39,44,["H4191"]]]},{"k":7952,"v":[[0,2,["H7586"]],[2,3,["H7650"]],[3,8,["H3068"]],[8,9,["H559"]],[9,12,["H3068"]],[12,13,["H2416"]],[13,16,["H518"]],[16,17,["H5771"]],[17,18,["H7136"]],[18,22,["H2088"]],[22,23,["H1697"]]]},{"k":7953,"v":[[0,2,["H559"]],[2,4,["H802","(H853)"]],[4,5,["H4310"]],[5,9,["H5927"]],[9,14,["H559"]],[14,17,["H5927","(H853)"]],[17,18,["H8050"]]]},{"k":7954,"v":[[0,4,["H802"]],[4,5,["H7200","(H853)"]],[5,6,["H8050"]],[6,8,["H2199"]],[8,11,["H1419"]],[11,12,["H6963"]],[12,15,["H802"]],[15,16,["H559"]],[16,17,["H413"]],[17,18,["H7586"]],[18,19,["H559"]],[19,20,["H4100"]],[20,23,["H7411"]],[23,26,["H859"]],[26,28,["H7586"]]]},{"k":7955,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,8,["H408"]],[8,9,["H3372"]],[9,10,["H3588"]],[10,11,["H4100"]],[11,12,["H7200"]],[12,16,["H802"]],[16,17,["H559"]],[17,18,["H413"]],[18,19,["H7586"]],[19,21,["H7200"]],[21,22,["H430"]],[22,23,["H5927"]],[23,25,["H4480"]],[25,27,["H776"]]]},{"k":7956,"v":[[0,3,["H559"]],[3,6,["H4100"]],[6,7,["H8389"]],[7,13,["H559"]],[13,15,["H2205"]],[15,16,["H376"]],[16,18,["H5927"]],[18,20,["H1931"]],[20,22,["H5844"]],[22,25,["H4598"]],[25,27,["H7586"]],[27,28,["H3045"]],[28,29,["H3588"]],[29,32,["H8050"]],[32,34,["H1931"]],[34,35,["H6915"]],[35,38,["H639"]],[38,41,["H776"]],[41,44,["H7812"]]]},{"k":7957,"v":[[0,2,["H8050"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H7586"]],[5,6,["H4100"]],[6,9,["H7264"]],[9,14,["H5927","(H853)"]],[14,16,["H7586"]],[16,17,["H559"]],[17,20,["H3966"]],[20,21,["H6887"]],[21,24,["H6430"]],[24,26,["H3898"]],[26,30,["H430"]],[30,32,["H5493"]],[32,33,["H4480","H5921"]],[33,36,["H6030"]],[36,38,["H3808"]],[38,39,["H5750"]],[39,40,["H1571"]],[40,41,["H3027"]],[41,42,["H5030"]],[42,43,["H1571"]],[43,45,["H2472"]],[45,49,["H7121"]],[49,55,["H3045"]],[55,58,["H4100"]],[58,61,["H6213"]]]},{"k":7958,"v":[[0,2,["H559"]],[2,3,["H8050"]],[3,4,["H4100"]],[4,8,["H7592"]],[8,13,["H3068"]],[13,15,["H5493"]],[15,16,["H4480","H5921"]],[16,20,["H1961"]],[20,22,["H6145"]]]},{"k":7959,"v":[[0,3,["H3068"]],[3,5,["H6213"]],[5,8,["H834"]],[8,10,["H1696"]],[10,11,["H3027"]],[11,15,["H3068"]],[15,17,["H7167","(H853)"]],[17,19,["H4467"]],[19,23,["H4480","H3027"]],[23,25,["H5414"]],[25,29,["H7453"]],[29,32,["H1732"]]]},{"k":7960,"v":[[0,1,["H834"]],[1,3,["H8085"]],[3,4,["H3808"]],[4,6,["H6963"]],[6,9,["H3068"]],[9,10,["H3808"]],[10,11,["H6213"]],[11,13,["H2740"]],[13,14,["H639"]],[14,16,["H6002"]],[16,17,["H5921","H3651"]],[17,20,["H3068"]],[20,21,["H6213"]],[21,22,["H2088"]],[22,23,["H1697"]],[23,26,["H2088"]],[26,27,["H3117"]]]},{"k":7961,"v":[[0,1,["H1571"]],[1,3,["H3068"]],[3,6,["H5414","(H853)"]],[6,7,["H3478"]],[7,8,["H5973"]],[8,12,["H3027"]],[12,15,["H6430"]],[15,18,["H4279"]],[18,20,["H859"]],[20,23,["H1121"]],[23,25,["H5973"]],[25,28,["H3068"]],[28,29,["H1571"]],[29,31,["H5414","(H853)"]],[31,33,["H4264"]],[33,35,["H3478"]],[35,38,["H3027"]],[38,41,["H6430"]]]},{"k":7962,"v":[[0,2,["H7586"]],[2,3,["H5307"]],[3,4,["H4116"]],[4,6,["H4393","H6967"]],[6,9,["H776"]],[9,12,["H3966"]],[12,13,["H3372"]],[13,17,["H4480","H1697"]],[17,19,["H8050"]],[19,20,["H1571"]],[20,22,["H1961"]],[22,23,["H3808"]],[23,24,["H3581"]],[24,27,["H3588"]],[27,30,["H398"]],[30,31,["H3808"]],[31,32,["H3899"]],[32,33,["H3605"]],[33,35,["H3117"]],[35,37,["H3605"]],[37,39,["H3915"]]]},{"k":7963,"v":[[0,3,["H802"]],[3,4,["H935"]],[4,5,["H413"]],[5,6,["H7586"]],[6,8,["H7200"]],[8,9,["H3588"]],[9,12,["H3966"]],[12,13,["H926"]],[13,15,["H559"]],[15,16,["H413"]],[16,18,["H2009"]],[18,20,["H8198"]],[20,22,["H8085"]],[22,24,["H6963"]],[24,28,["H7760"]],[28,30,["H5315"]],[30,33,["H3709"]],[33,36,["H8085"]],[36,37,["(H853)"]],[37,39,["H1697"]],[39,40,["H834"]],[40,42,["H1696"]],[42,43,["H413"]],[43,44,[]]]},{"k":7964,"v":[[0,1,["H6258"]],[1,5,["H4994"]],[5,6,["H8085"]],[6,7,["H859"]],[7,8,["H1571"]],[8,11,["H6963"]],[11,14,["H8198"]],[14,18,["H7760"]],[18,20,["H6595"]],[20,22,["H3899"]],[22,23,["H6440"]],[23,26,["H398"]],[26,30,["H1961"]],[30,31,["H3581"]],[31,32,["H3588"]],[32,34,["H1980"]],[34,37,["H1870"]]]},{"k":7965,"v":[[0,3,["H3985"]],[3,5,["H559"]],[5,8,["H3808"]],[8,9,["H398"]],[9,12,["H5650"]],[12,14,["H1571"]],[14,16,["H802"]],[16,17,["H6555"]],[17,21,["H8085"]],[21,24,["H6963"]],[24,27,["H6965"]],[27,30,["H4480","H776"]],[30,32,["H3427"]],[32,33,["H413"]],[33,35,["H4296"]]]},{"k":7966,"v":[[0,3,["H802"]],[3,6,["H4770"]],[6,7,["H5695"]],[7,10,["H1004"]],[10,13,["H4116"]],[13,15,["H2076"]],[15,18,["H3947"]],[18,19,["H7058"]],[19,21,["H3888"]],[21,25,["H644"]],[25,27,["H4682"]],[27,28,[]]]},{"k":7967,"v":[[0,3,["H5066"]],[3,5,["H6440"]],[5,6,["H7586"]],[6,8,["H6440"]],[8,10,["H5650"]],[10,14,["H398"]],[14,18,["H6965"]],[18,21,["H1980"]],[21,22,["H1931"]],[22,23,["H3915"]]]},{"k":7968,"v":[[0,3,["H6430"]],[3,5,["H6908","(H853)"]],[5,6,["H3605"]],[6,8,["H4264"]],[8,10,["H663"]],[10,13,["H3478"]],[13,14,["H2583"]],[14,17,["H5869"]],[17,18,["H834"]],[18,21,["H3157"]]]},{"k":7969,"v":[[0,3,["H5633"]],[3,6,["H6430"]],[6,8,["H5674"]],[8,10,["H3967"]],[10,13,["H505"]],[13,15,["H1732"]],[15,18,["H376"]],[18,20,["H5674"]],[20,23,["H314"]],[23,24,["H5973"]],[24,25,["H397"]]]},{"k":7970,"v":[[0,2,["H559"]],[2,4,["H8269"]],[4,7,["H6430"]],[7,8,["H4100"]],[8,10,["H428"]],[10,11,["H5680"]],[11,14,["H397"]],[14,15,["H559"]],[15,16,["H413"]],[16,18,["H8269"]],[18,21,["H6430"]],[21,23,["H3808"]],[23,24,["H2088"]],[24,25,["H1732"]],[25,27,["H5650"]],[27,29,["H7586"]],[29,31,["H4428"]],[31,33,["H3478"]],[33,34,["H834"]],[34,36,["H1961"]],[36,37,["H854"]],[37,39,["H2088"]],[39,40,["H3117"]],[40,41,["H176"]],[41,42,["H2088"]],[42,43,["H8141"]],[43,47,["H4672"]],[47,48,["H3808"]],[48,49,["H3972"]],[49,52,["H4480","H3117"]],[52,54,["H5307"]],[54,57,["H5704"]],[57,58,["H2088"]],[58,59,["H3117"]]]},{"k":7971,"v":[[0,3,["H8269"]],[3,6,["H6430"]],[6,8,["H7107"]],[8,9,["H5973"]],[9,13,["H8269"]],[13,16,["H6430"]],[16,17,["H559"]],[17,23,["H7725","(H853)","H376"]],[23,28,["H7725"]],[28,29,["H413"]],[29,31,["H4725"]],[31,32,["H834","H8033"]],[32,35,["H6485"]],[35,40,["H3808"]],[40,42,["H3381"]],[42,43,["H5973"]],[43,46,["H4421"]],[46,47,["H3808"]],[47,50,["H4421"]],[50,52,["H1961"]],[52,54,["H7854"]],[54,58,["H4100"]],[58,61,["H7521"]],[61,62,["H2088"]],[62,63,["H413"]],[63,65,["H113"]],[65,68,["H3808"]],[68,72,["H7218"]],[72,74,["H1992"]],[74,75,["H376"]]]},{"k":7972,"v":[[0,2,["H3808"]],[2,3,["H2088"]],[3,4,["H1732"]],[4,6,["H834"]],[6,8,["H6030"]],[8,13,["H4246"]],[13,14,["H559"]],[14,15,["H7586"]],[15,16,["H5221"]],[16,18,["H505"]],[18,20,["H1732"]],[20,23,["H7233"]]]},{"k":7973,"v":[[0,2,["H397"]],[2,3,["H7121","H413"]],[3,4,["H1732"]],[4,6,["H559"]],[6,7,["H413"]],[7,12,["H3068"]],[12,13,["H2416"]],[13,14,["H859"]],[14,17,["H3477"]],[17,21,["H3318"]],[21,25,["H935"]],[25,26,["H854"]],[26,30,["H4264"]],[30,32,["H2896"]],[32,35,["H5869"]],[35,36,["H3588"]],[36,39,["H3808"]],[39,40,["H4672"]],[40,41,["H7451"]],[41,46,["H4480","H3117"]],[46,49,["H935"]],[49,50,["H413"]],[50,52,["H5704"]],[52,53,["H2088"]],[53,54,["H3117"]],[54,57,["H5869","H5633"]],[57,58,["H2896"]],[58,59,["H859"]],[59,60,["H3808"]]]},{"k":7974,"v":[[0,2,["H6258"]],[2,3,["H7725"]],[3,5,["H1980"]],[5,7,["H7965"]],[7,10,["H6213","H7451","H5869"]],[10,11,["H3808"]],[11,13,["H5633"]],[13,16,["H6430"]]]},{"k":7975,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H397"]],[5,6,["H3588"]],[6,7,["H4100"]],[7,10,["H6213"]],[10,12,["H4100"]],[12,15,["H4672"]],[15,18,["H5650"]],[18,20,["H4480","H3117"]],[20,21,["H834"]],[21,24,["H1961"]],[24,25,["H6440"]],[25,27,["H5704"]],[27,28,["H2088"]],[28,29,["H3117"]],[29,30,["H3588"]],[30,33,["H3808"]],[33,34,["H1980"]],[34,35,["H3898"]],[35,38,["H341"]],[38,41,["H113"]],[41,43,["H4428"]]]},{"k":7976,"v":[[0,2,["H397"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H413"]],[6,7,["H1732"]],[7,9,["H3045"]],[9,10,["H3588"]],[10,11,["H859"]],[11,13,["H2896"]],[13,16,["H5869"]],[16,19,["H4397"]],[19,21,["H430"]],[21,22,["H389"]],[22,24,["H8269"]],[24,27,["H6430"]],[27,29,["H559"]],[29,32,["H3808"]],[32,34,["H5927"]],[34,35,["H5973"]],[35,39,["H4421"]]]},{"k":7977,"v":[[0,2,["H6258"]],[2,5,["H7925"]],[5,8,["H1242"]],[8,11,["H113"]],[11,12,["H5650"]],[12,13,["H834"]],[13,15,["H935"]],[15,16,["H854"]],[16,25,["H7925"]],[25,28,["H1242"]],[28,31,["H216"]],[31,32,["H1980"]]]},{"k":7978,"v":[[0,2,["H1732"]],[2,5,["H376"]],[5,8,["H7925"]],[8,10,["H1980"]],[10,13,["H1242"]],[13,15,["H7725"]],[15,16,["H413"]],[16,18,["H776"]],[18,21,["H6430"]],[21,24,["H6430"]],[24,26,["H5927"]],[26,28,["H3157"]]]},{"k":7979,"v":[[0,5,["H1961"]],[5,7,["H1732"]],[7,10,["H376"]],[10,12,["H935"]],[12,14,["H6860"]],[14,17,["H7992"]],[17,18,["H3117"]],[18,21,["H6003"]],[21,23,["H6584","H413"]],[23,25,["H5045"]],[25,27,["H6860"]],[27,29,["H5221","(H853)"]],[29,30,["H6860"]],[30,32,["H8313"]],[32,35,["H784"]]]},{"k":7980,"v":[[0,6,["H7617","(H853)","H802"]],[6,7,["H834"]],[7,11,["H4191"]],[11,12,["H3808"]],[12,13,["H376"]],[13,14,["H5704"]],[14,15,["H1419"]],[15,17,["H4480","H6996"]],[17,21,["H5090"]],[21,23,["H1980"]],[23,26,["H1870"]]]},{"k":7981,"v":[[0,2,["H1732"]],[2,5,["H376"]],[5,6,["H935"]],[6,7,["H413"]],[7,9,["H5892"]],[9,11,["H2009"]],[11,14,["H8313"]],[14,16,["H784"]],[16,19,["H802"]],[19,22,["H1121"]],[22,25,["H1323"]],[25,28,["H7617"]]]},{"k":7982,"v":[[0,2,["H1732"]],[2,5,["H5971"]],[5,6,["H834"]],[6,8,["H854"]],[8,11,["H5375","(H853)"]],[11,13,["H6963"]],[13,15,["H1058"]],[15,16,["H5704","H834"]],[16,20,["H369"]],[20,21,["H3581"]],[21,23,["H1058"]]]},{"k":7983,"v":[[0,2,["H1732"]],[2,3,["H8147"]],[3,4,["H802"]],[4,7,["H7617"]],[7,8,["H293"]],[8,10,["H3159"]],[10,12,["H26"]],[12,14,["H802"]],[14,16,["H5037"]],[16,18,["H3761"]]]},{"k":7984,"v":[[0,2,["H1732"]],[2,4,["H3966"]],[4,5,["H3334"]],[5,6,["H3588"]],[6,8,["H5971"]],[8,9,["H559"]],[9,11,["H5619"]],[11,13,["H3588"]],[13,15,["H5315"]],[15,17,["H3605"]],[17,19,["H5971"]],[19,21,["H4843"]],[21,23,["H376"]],[23,24,["H5921"]],[24,26,["H1121"]],[26,28,["H5921"]],[28,30,["H1323"]],[30,32,["H1732"]],[32,34,["H2388"]],[34,37,["H3068"]],[37,39,["H430"]]]},{"k":7985,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H54"]],[5,7,["H3548"]],[7,8,["H288"]],[8,9,["H1121"]],[9,12,["H4994"]],[12,15,["H5066"]],[15,17,["H646"]],[17,19,["H54"]],[19,20,["H5066"]],[20,21,["(H853)"]],[21,23,["H646"]],[23,24,["H413"]],[24,25,["H1732"]]]},{"k":7986,"v":[[0,2,["H1732"]],[2,3,["H7592"]],[3,6,["H3068"]],[6,7,["H559"]],[7,10,["H7291"]],[10,11,["H310"]],[11,12,["H2088"]],[12,13,["H1416"]],[13,16,["H5381"]],[16,20,["H559"]],[20,22,["H7291"]],[22,23,["H3588"]],[23,27,["H5381","H5381"]],[27,32,["H5337","H5337"]],[32,33,[]]]},{"k":7987,"v":[[0,2,["H1732"]],[2,3,["H1980"]],[3,4,["H1931"]],[4,7,["H8337"]],[7,8,["H3967"]],[8,9,["H376"]],[9,10,["H834"]],[10,12,["H854"]],[12,15,["H935"]],[15,16,["H5704"]],[16,18,["H5158"]],[18,19,["H1308"]],[19,25,["H3498"]],[25,26,["H5975"]]]},{"k":7988,"v":[[0,2,["H1732"]],[2,3,["H7291"]],[3,4,["H1931"]],[4,6,["H702"]],[6,7,["H3967"]],[7,8,["H376"]],[8,11,["H3967","(H376)"]],[11,13,["H5975"]],[13,14,["H834"]],[14,17,["H6296"]],[17,23,["H4480","H5674","(H853)"]],[23,25,["H5158"]],[25,26,["H1308"]]]},{"k":7989,"v":[[0,3,["H4672"]],[3,5,["H376","H4713"]],[5,8,["H7704"]],[8,10,["H3947"]],[10,12,["H413"]],[12,13,["H1732"]],[13,15,["H5414"]],[15,17,["H3899"]],[17,21,["H398"]],[21,26,["H8248"]],[26,27,["H4325"]]]},{"k":7990,"v":[[0,3,["H5414"]],[3,6,["H6400"]],[6,11,["H1690"]],[11,13,["H8147"]],[13,16,["H6778"]],[16,21,["H398"]],[21,23,["H7307"]],[23,25,["H7725"]],[25,26,["H413"]],[26,28,["H3588"]],[28,31,["H398"]],[31,32,["H3808"]],[32,33,["H3899"]],[33,34,["H3808"]],[34,35,["H8354"]],[35,37,["H4325"]],[37,38,["H7969"]],[38,39,["H3117"]],[39,41,["H7969"]],[41,42,["H3915"]]]},{"k":7991,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,7,["H4310"]],[7,9,["H859"]],[9,11,["H335","H4480","H2088"]],[11,13,["H859"]],[13,16,["H559"]],[16,17,["H595"]],[17,21,["H5288"]],[21,23,["H4713"]],[23,24,["H5650"]],[24,27,["H376","H6003"]],[27,30,["H113"]],[30,31,["H5800"]],[31,33,["H3588"]],[33,34,["H7969"]],[34,35,["H3117"]],[35,39,["H2470"]]]},{"k":7992,"v":[[0,1,["H587"]],[1,4,["H6584"]],[4,7,["H5045"]],[7,10,["H3774"]],[10,12,["H5921"]],[12,15,["H834"]],[15,18,["H3063"]],[18,20,["H5921"]],[20,22,["H5045"]],[22,24,["H3612"]],[24,27,["H8313"]],[27,28,["H6860"]],[28,30,["H784"]]]},{"k":7993,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,10,["H3381"]],[10,11,["H413"]],[11,12,["H2088"]],[12,13,["H1416"]],[13,16,["H559"]],[16,17,["H7650"]],[17,21,["H430"]],[21,25,["H518"]],[25,26,["H4191"]],[26,28,["H518"]],[28,29,["H5462"]],[29,33,["H3027"]],[33,36,["H113"]],[36,42,["H3381"]],[42,43,["H413"]],[43,44,["H2088"]],[44,45,["H1416"]]]},{"k":7994,"v":[[0,7,["H3381"]],[7,8,["H2009"]],[8,12,["H5203"]],[12,13,["H5921","H6440"]],[13,14,["H3605"]],[14,16,["H776"]],[16,17,["H398"]],[17,19,["H8354"]],[19,21,["H2287"]],[21,24,["H3605"]],[24,26,["H1419"]],[26,27,["H7998"]],[27,28,["H834"]],[28,31,["H3947"]],[31,35,["H4480","H776"]],[35,38,["H6430"]],[38,43,["H4480","H776"]],[43,45,["H3063"]]]},{"k":7995,"v":[[0,2,["H1732"]],[2,3,["H5221"]],[3,7,["H4480","H5399"]],[7,9,["H5704"]],[9,11,["H6153"]],[11,15,["H4283"]],[15,18,["H4422"]],[18,19,["H3808"]],[19,21,["H376"]],[21,24,["H3588","H518"]],[24,25,["H702"]],[25,26,["H3967"]],[26,27,["H5288"]],[27,28,["H376"]],[28,29,["H834"]],[29,30,["H7392"]],[30,31,["H5921"]],[31,32,["H1581"]],[32,34,["H5127"]]]},{"k":7996,"v":[[0,2,["H1732"]],[2,3,["H5337","(H853)"]],[3,4,["H3605"]],[4,5,["H834"]],[5,7,["H6002"]],[7,10,["H3947"]],[10,12,["H1732"]],[12,13,["H5337"]],[13,15,["H8147"]],[15,16,["H802"]]]},{"k":7997,"v":[[0,4,["H3808"]],[4,5,["H5737"]],[5,8,["H4480"]],[8,9,["H6996"]],[9,10,["H5704"]],[10,11,["H1419"]],[11,12,["H5704"]],[12,13,["H1121"]],[13,15,["H1323"]],[15,17,["H4480","H7998"]],[17,18,["H5704"]],[18,19,["H3605"]],[19,21,["H834"]],[21,24,["H3947"]],[24,27,["H1732"]],[27,28,["H7725"]],[28,29,["H3605"]]]},{"k":7998,"v":[[0,2,["H1732"]],[2,3,["H3947","(H853)"]],[3,4,["H3605"]],[4,6,["H6629"]],[6,9,["H1241"]],[9,12,["H5090"]],[12,13,["H6440"]],[13,14,["H1931"]],[14,16,["H4735"]],[16,18,["H559"]],[18,19,["H2088"]],[19,21,["H1732"]],[21,22,["H7998"]]]},{"k":7999,"v":[[0,2,["H1732"]],[2,3,["H935"]],[3,4,["H413"]],[4,7,["H3967"]],[7,8,["H376"]],[8,9,["H834"]],[9,12,["H6296"]],[12,17,["H1980","H310"]],[17,18,["H1732"]],[18,25,["H3427"]],[25,28,["H5158"]],[28,29,["H1308"]],[29,33,["H3318"]],[33,35,["H7125"]],[35,36,["H1732"]],[36,39,["H7125"]],[39,41,["H5971"]],[41,42,["H834"]],[42,44,["H854"]],[44,48,["H1732"]],[48,50,["H5066"]],[50,51,["(H853)"]],[51,53,["H5971"]],[53,55,["H7592","H7965"]],[55,56,[]]]},{"k":8000,"v":[[0,2,["H6030"]],[2,3,["H3605"]],[3,5,["H7451"]],[5,6,["H376"]],[6,10,["H1100"]],[10,12,["H4480","H376"]],[12,13,["H834"]],[13,14,["H1980"]],[14,15,["H5973"]],[15,16,["H1732"]],[16,18,["H559"]],[18,19,["H3282","H834"]],[19,21,["H1980"]],[21,22,["H3808"]],[22,23,["H5973"]],[23,27,["H3808"]],[27,28,["H5414"]],[28,33,["H4480","H7998"]],[33,34,["H834"]],[34,37,["H5337"]],[37,38,["H3588","H518"]],[38,41,["H376","(H853)"]],[41,43,["H802"]],[43,46,["H1121"]],[46,52,["H5090"]],[52,54,["H1980"]]]},{"k":8001,"v":[[0,2,["H559"]],[2,3,["H1732"]],[3,6,["H3808"]],[6,7,["H6213"]],[7,8,["H3651"]],[8,10,["H251"]],[10,11,["H854"]],[11,13,["H834"]],[13,15,["H3068"]],[15,17,["H5414"]],[17,21,["H8104"]],[21,24,["H5414","(H853)"]],[24,26,["H1416"]],[26,28,["H935"]],[28,29,["H5921"]],[29,33,["H3027"]]]},{"k":8002,"v":[[0,2,["H4310"]],[2,4,["H8085"]],[4,8,["H2088"]],[8,9,["H1697"]],[9,10,["H3588"]],[10,13,["H2506"]],[13,17,["H3381"]],[17,20,["H4421"]],[20,24,["H2506"]],[24,27,["H3427"]],[27,28,["H5921"]],[28,30,["H3627"]],[30,33,["H2505"]],[33,34,["H3162"]]]},{"k":8003,"v":[[0,3,["H1961"]],[3,7,["H4480","H3117","H1931"]],[7,8,["H4605"]],[8,11,["H7760"]],[11,14,["H2706"]],[14,17,["H4941"]],[17,19,["H3478"]],[19,20,["H5704"]],[20,21,["H2088"]],[21,22,["H3117"]]]},{"k":8004,"v":[[0,3,["H1732"]],[3,4,["H935"]],[4,5,["H413"]],[5,6,["H6860"]],[6,8,["H7971"]],[8,11,["H4480","H7998"]],[11,14,["H2205"]],[14,16,["H3063"]],[16,20,["H7453"]],[20,21,["H559"]],[21,22,["H2009"]],[22,24,["H1293"]],[24,29,["H4480","H7998"]],[29,32,["H341"]],[32,35,["H3068"]]]},{"k":8005,"v":[[0,3,["H834"]],[3,6,["H1008"]],[6,10,["H834"]],[10,13,["H5045"]],[13,14,["H7418"]],[14,18,["H834"]],[18,21,["H3492"]]]},{"k":8006,"v":[[0,4,["H834"]],[4,7,["H6177"]],[7,11,["H834"]],[11,14,["H8224"]],[14,18,["H834"]],[18,21,["H851"]]]},{"k":8007,"v":[[0,4,["H834"]],[4,7,["H7403"]],[7,11,["H834"]],[11,15,["H5892"]],[15,18,["H3397"]],[18,22,["H834"]],[22,26,["H5892"]],[26,29,["H7017"]]]},{"k":8008,"v":[[0,4,["H834"]],[4,7,["H2767"]],[7,11,["H834"]],[11,14,["H3565"]],[14,18,["H834"]],[18,21,["H6269"]]]},{"k":8009,"v":[[0,4,["H834"]],[4,7,["H2275"]],[7,10,["H3605"]],[10,12,["H4725"]],[12,13,["H834","H8033"]],[13,14,["H1732"]],[14,15,["H1931"]],[15,18,["H376"]],[18,22,["H1980"]]]},{"k":8010,"v":[[0,3,["H6430"]],[3,4,["H3898"]],[4,6,["H3478"]],[6,9,["H376"]],[9,11,["H3478"]],[11,12,["H5127"]],[12,14,["H4480","H6440"]],[14,16,["H6430"]],[16,19,["H5307"]],[19,20,["H2491"]],[20,22,["H2022"]],[22,23,["H1533"]]]},{"k":8011,"v":[[0,3,["H6430"]],[3,6,["H1692","(H853)"]],[6,7,["H7586"]],[7,11,["H1121"]],[11,14,["H6430"]],[14,15,["H5221","(H853)"]],[15,16,["H3083"]],[16,18,["H41"]],[18,20,["H4444"]],[20,21,["H7586"]],[21,22,["H1121"]]]},{"k":8012,"v":[[0,3,["H4421"]],[3,5,["H3513"]],[5,6,["H413"]],[6,7,["H7586"]],[7,10,["H3384","H376"]],[10,11,["H4672"]],[11,16,["H3966"]],[16,17,["H2342"]],[17,20,["H4480","H3384"]]]},{"k":8013,"v":[[0,2,["H559"]],[2,3,["H7586"]],[3,6,["H5375","H3627"]],[6,7,["H8025"]],[7,9,["H2719"]],[9,13,["H1856"]],[13,15,["H6435"]],[15,16,["H428"]],[16,17,["H6189"]],[17,18,["H935"]],[18,22,["H1856"]],[22,24,["H5953"]],[24,28,["H5375","H3627"]],[28,29,["H14"]],[29,30,["H3808"]],[30,31,["H3588"]],[31,34,["H3966"]],[34,35,["H3372"]],[35,37,["H7586"]],[37,38,["H3947","(H853)"]],[38,40,["H2719"]],[40,42,["H5307"]],[42,43,["H5921"]],[43,44,[]]]},{"k":8014,"v":[[0,4,["H5375","H3627"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,7,["H7586"]],[7,9,["H4191"]],[9,10,["H1931"]],[10,11,["H5307"]],[11,12,["H1571"]],[12,13,["H5921"]],[13,15,["H2719"]],[15,17,["H4191"]],[17,18,["H5973"]],[18,19,[]]]},{"k":8015,"v":[[0,2,["H7586"]],[2,3,["H4191"]],[3,6,["H7969"]],[6,7,["H1121"]],[7,10,["H5375","H3627"]],[10,11,["H1571"]],[11,12,["H3605"]],[12,14,["H376"]],[14,16,["H1931"]],[16,17,["H3117"]],[17,18,["H3162"]]]},{"k":8016,"v":[[0,4,["H376"]],[4,6,["H3478"]],[6,7,["H834"]],[7,12,["H5676"]],[12,15,["H6010"]],[15,18,["H834"]],[18,23,["H5676"]],[23,24,["H3383"]],[24,25,["H7200"]],[25,26,["H3588"]],[26,28,["H376"]],[28,30,["H3478"]],[30,31,["H5127"]],[31,33,["H3588"]],[33,34,["H7586"]],[34,37,["H1121"]],[37,39,["H4191"]],[39,41,["H5800","(H853)"]],[41,43,["H5892"]],[43,45,["H5127"]],[45,48,["H6430"]],[48,49,["H935"]],[49,51,["H3427"]],[51,53,["H2004"]]]},{"k":8017,"v":[[0,5,["H1961"]],[5,8,["H4480","H4283"]],[8,11,["H6430"]],[11,12,["H935"]],[12,14,["H6584","(H853)"]],[14,16,["H2491"]],[16,19,["H4672","(H853)"]],[19,20,["H7586"]],[20,23,["H7969"]],[23,24,["H1121"]],[24,25,["H5307"]],[25,27,["H2022"]],[27,28,["H1533"]]]},{"k":8018,"v":[[0,4,["H3772","(H853)"]],[4,6,["H7218"]],[6,9,["H6584","(H853)"]],[9,11,["H3627"]],[11,13,["H7971"]],[13,16,["H776"]],[16,19,["H6430"]],[19,21,["H5439"]],[21,23,["H1319"]],[23,27,["H1004"]],[27,30,["H6091"]],[30,32,["H854"]],[32,34,["H5971"]]]},{"k":8019,"v":[[0,3,["H7760","(H853)"]],[3,5,["H3627"]],[5,8,["H1004"]],[8,10,["H6252"]],[10,13,["H8628"]],[13,15,["H1472"]],[15,18,["H2346"]],[18,20,["H1052"]]]},{"k":8020,"v":[[0,4,["H3427"]],[4,6,["H3003","H1568"]],[6,7,["H8085","H413","(H853)"]],[7,10,["H834"]],[10,12,["H6430"]],[12,14,["H6213"]],[14,16,["H7586"]]]},{"k":8021,"v":[[0,1,["H3605"]],[1,3,["H2428"]],[3,4,["H376"]],[4,5,["H6965"]],[5,7,["H1980"]],[7,8,["H3605"]],[8,9,["H3915"]],[9,11,["H3947","(H853)"]],[11,13,["H1472"]],[13,15,["H7586"]],[15,18,["H1472"]],[18,21,["H1121"]],[21,24,["H4480","H2346"]],[24,26,["H1052"]],[26,28,["H935"]],[28,30,["H3003"]],[30,32,["H8313"]],[32,34,["H8033"]]]},{"k":8022,"v":[[0,3,["H3947","(H853)"]],[3,5,["H6106"]],[5,7,["H6912"]],[7,9,["H8478"]],[9,11,["H815"]],[11,13,["H3003"]],[13,15,["H6684"]],[15,16,["H7651"]],[16,17,["H3117"]]]},{"k":8023,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,8,["H4194"]],[8,10,["H7586"]],[10,12,["H1732"]],[12,14,["H7725"]],[14,17,["H4480","H5221"]],[17,18,["(H853)"]],[18,20,["H6002"]],[20,22,["H1732"]],[22,24,["H3427"]],[24,25,["H8147"]],[25,26,["H3117"]],[26,28,["H6860"]]]},{"k":8024,"v":[[0,5,["H1961"]],[5,8,["H7992"]],[8,9,["H3117"]],[9,11,["H2009"]],[11,13,["H376"]],[13,14,["H935"]],[14,16,["H4480"]],[16,18,["H4264"]],[18,19,["H4480","H5973"]],[19,20,["H7586"]],[20,23,["H899"]],[23,24,["H7167"]],[24,26,["H127"]],[26,27,["H5921"]],[27,29,["H7218"]],[29,33,["H1961"]],[33,36,["H935"]],[36,37,["H413"]],[37,38,["H1732"]],[38,41,["H5307"]],[41,44,["H776"]],[44,47,["H7812"]]]},{"k":8025,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,7,["H335","H4480","H2088"]],[7,8,["H935"]],[8,12,["H559"]],[12,13,["H413"]],[13,18,["H4480","H4264"]],[18,20,["H3478"]],[20,23,["H4422"]]]},{"k":8026,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4100"]],[6,7,["H1961"]],[7,9,["H1697"]],[9,12,["H4994"]],[12,13,["H5046"]],[13,17,["H559"]],[17,18,["H834"]],[18,20,["H5971"]],[20,22,["H5127"]],[22,23,["H4480"]],[23,25,["H4421"]],[25,27,["H7235"]],[27,28,["H4480"]],[28,30,["H5971"]],[30,31,["H1571"]],[31,33,["H5307"]],[33,35,["H4191"]],[35,37,["H7586"]],[37,39,["H3083"]],[39,41,["H1121"]],[41,43,["H4191"]],[43,44,["H1571"]]]},{"k":8027,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,7,["H5288"]],[7,9,["H5046"]],[9,11,["H349"]],[11,12,["H3045"]],[12,14,["H3588"]],[14,15,["H7586"]],[15,17,["H3083"]],[17,19,["H1121"]],[19,21,["H4191"]]]},{"k":8028,"v":[[0,4,["H5288"]],[4,6,["H5046"]],[6,8,["H559"]],[8,11,["H7136"]],[11,13,["H7122"]],[13,15,["H2022"]],[15,16,["H1533"]],[16,17,["H2009"]],[17,18,["H7586"]],[18,19,["H8172"]],[19,20,["H5921"]],[20,22,["H2595"]],[22,24,["H2009"]],[24,26,["H7393"]],[26,28,["H1167","H6571"]],[28,30,["H1692"]],[30,32,[]]]},{"k":8029,"v":[[0,4,["H6437"]],[4,5,["H310"]],[5,8,["H7200"]],[8,11,["H7121"]],[11,12,["H413"]],[12,16,["H559"]],[16,17,["H2009"]],[17,19,[]]]},{"k":8030,"v":[[0,3,["H559"]],[3,6,["H4310"]],[6,8,["H859"]],[8,11,["H559"]],[11,12,["H413"]],[12,13,["H595"]],[13,16,["H6003"]]]},{"k":8031,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,6,["H5975"]],[6,9,["H4994"]],[9,10,["H5921"]],[10,13,["H4191"]],[13,15,["H3588"]],[15,16,["H7661"]],[16,18,["H270"]],[18,21,["H3588"]],[21,23,["H5315"]],[23,25,["H5750"]],[25,26,["H3605"]],[26,28,[]]]},{"k":8032,"v":[[0,3,["H5975"]],[3,4,["H5921"]],[4,7,["H4191"]],[7,9,["H3588"]],[9,12,["H3045"]],[12,13,["H3588"]],[13,16,["H3808"]],[16,17,["H2421"]],[17,19,["H310"]],[19,22,["H5307"]],[22,25,["H3947"]],[25,27,["H5145"]],[27,28,["H834"]],[28,30,["H5921"]],[30,32,["H7218"]],[32,35,["H685"]],[35,36,["H834"]],[36,38,["H5921"]],[38,40,["H2220"]],[40,43,["H935"]],[43,45,["H2008"]],[45,46,["H413"]],[46,48,["H113"]]]},{"k":8033,"v":[[0,2,["H1732"]],[2,4,["H2388"]],[4,7,["H899"]],[7,9,["H7167"]],[9,12,["H1571"]],[12,13,["H3605"]],[13,15,["H376"]],[15,16,["H834"]],[16,18,["H854"]],[18,19,[]]]},{"k":8034,"v":[[0,3,["H5594"]],[3,5,["H1058"]],[5,7,["H6684"]],[7,8,["H5704"]],[8,9,["H6153"]],[9,10,["H5921"]],[10,11,["H7586"]],[11,13,["H5921"]],[13,14,["H3083"]],[14,16,["H1121"]],[16,18,["H5921"]],[18,20,["H5971"]],[20,23,["H3068"]],[23,25,["H5921"]],[25,27,["H1004"]],[27,29,["H3478"]],[29,30,["H3588"]],[30,33,["H5307"]],[33,36,["H2719"]]]},{"k":8035,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,7,["H5288"]],[7,9,["H5046"]],[9,11,["H335","H4480","H4100"]],[11,13,["H859"]],[13,16,["H559"]],[16,17,["H595"]],[17,20,["H1121"]],[20,23,["H376","H1616"]],[23,25,["H6003"]]]},{"k":8036,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H349"]],[6,9,["H3808"]],[9,10,["H3372"]],[10,13,["H7971"]],[13,15,["H3027"]],[15,17,["H7843","(H853)"]],[17,19,["H3068"]],[19,20,["H4899"]]]},{"k":8037,"v":[[0,2,["H1732"]],[2,3,["H7121"]],[3,4,["H259"]],[4,8,["H4480","H5288"]],[8,10,["H559"]],[10,12,["H5066"]],[12,14,["H6293"]],[14,19,["H5221"]],[19,23,["H4191"]]]},{"k":8038,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,7,["H1818"]],[7,9,["H5921"]],[9,11,["H7218"]],[11,12,["H3588"]],[12,14,["H6310"]],[14,16,["H6030"]],[16,19,["H559"]],[19,20,["H595"]],[20,22,["H4191","(H853)"]],[22,24,["H3068"]],[24,25,["H4899"]]]},{"k":8039,"v":[[0,2,["H1732"]],[2,3,["H6969"]],[3,4,["H854"]],[4,5,["H2063"]],[5,6,["H7015"]],[6,7,["H5921"]],[7,8,["H7586"]],[8,10,["H5921"]],[10,11,["H3083"]],[11,13,["H1121"]]]},{"k":8040,"v":[[0,3,["H559"]],[3,5,["H3925"]],[5,7,["H1121"]],[7,9,["H3063"]],[9,14,["H7198"]],[14,15,["H2009"]],[15,18,["H3789"]],[18,19,["H5921"]],[19,21,["H5612"]],[21,23,["H3477"]]]},{"k":8041,"v":[[0,2,["H6643"]],[2,4,["H3478"]],[4,6,["H2491"]],[6,7,["H5921"]],[7,10,["H1116"]],[10,11,["H349"]],[11,14,["H1368"]],[14,15,["H5307"]]]},{"k":8042,"v":[[0,1,["H5046"]],[1,3,["H408"]],[3,5,["H1661"]],[5,6,["H1319"]],[6,8,["H408"]],[8,11,["H2351"]],[11,13,["H831"]],[13,14,["H6435"]],[14,16,["H1323"]],[16,19,["H6430"]],[19,20,["H8055"]],[20,21,["H6435"]],[21,23,["H1323"]],[23,26,["H6189"]],[26,27,["H5937"]]]},{"k":8043,"v":[[0,2,["H2022"]],[2,4,["H1533"]],[4,8,["H408"]],[8,9,["H2919"]],[9,10,["H408"]],[10,14,["H4306"]],[14,15,["H5921"]],[15,18,["H7704"]],[18,20,["H8641"]],[20,21,["H3588"]],[21,22,["H8033"]],[22,24,["H4043"]],[24,27,["H1368"]],[27,31,["H1602"]],[31,33,["H4043"]],[33,35,["H7586"]],[35,40,["H1097"]],[40,42,["H4899"]],[42,44,["H8081"]]]},{"k":8044,"v":[[0,3,["H4480","H1818"]],[3,6,["H2491"]],[6,9,["H4480","H2459"]],[9,12,["H1368"]],[12,14,["H7198"]],[14,16,["H3083"]],[16,17,["H7734"]],[17,18,["H3808"]],[18,19,["H268"]],[19,22,["H2719"]],[22,24,["H7586"]],[24,25,["H7725"]],[25,26,["H3808"]],[26,27,["H7387"]]]},{"k":8045,"v":[[0,1,["H7586"]],[1,3,["H3083"]],[3,5,["H157"]],[5,7,["H5273"]],[7,10,["H2416"]],[10,14,["H4194"]],[14,17,["H3808"]],[17,18,["H6504"]],[18,21,["H7043"]],[21,23,["H4480","H5404"]],[23,26,["H1396"]],[26,28,["H4480","H738"]]]},{"k":8046,"v":[[0,2,["H1323"]],[2,4,["H3478"]],[4,5,["H1058"]],[5,6,["H413"]],[6,7,["H7586"]],[7,9,["H3847"]],[9,12,["H8144"]],[12,13,["H5973"]],[13,15,["H5730"]],[15,18,["H5927"]],[18,19,["H5716"]],[19,21,["H2091"]],[21,22,["H5921"]],[22,24,["H3830"]]]},{"k":8047,"v":[[0,1,["H349"]],[1,4,["H1368"]],[4,5,["H5307"]],[5,8,["H8432"]],[8,11,["H4421"]],[11,13,["H3083"]],[13,16,["H2491"]],[16,17,["H5921"]],[17,20,["H1116"]]]},{"k":8048,"v":[[0,3,["H6887"]],[3,4,["H5921"]],[4,7,["H251"]],[7,8,["H3083"]],[8,9,["H3966"]],[9,10,["H5276"]],[10,17,["H160"]],[17,21,["H6381"]],[21,24,["H4480","H160"]],[24,26,["H802"]]]},{"k":8049,"v":[[0,1,["H349"]],[1,4,["H1368"]],[4,5,["H5307"]],[5,8,["H3627"]],[8,10,["H4421"]],[10,11,["H6"]]]},{"k":8050,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H3651"]],[7,9,["H1732"]],[9,10,["H7592"]],[10,13,["H3068"]],[13,14,["H559"]],[14,18,["H5927"]],[18,20,["H259"]],[20,23,["H5892"]],[23,25,["H3063"]],[25,28,["H3068"]],[28,29,["H559"]],[29,30,["H413"]],[30,33,["H5927"]],[33,35,["H1732"]],[35,36,["H559"]],[36,37,["H575"]],[37,41,["H5927"]],[41,44,["H559"]],[44,46,["H2275"]]]},{"k":8051,"v":[[0,2,["H1732"]],[2,4,["H5927"]],[4,5,["H8033"]],[5,8,["H8147"]],[8,9,["H802"]],[9,10,["H1571"]],[10,11,["H293"]],[11,13,["H3159"]],[13,15,["H26"]],[15,16,["H5037"]],[16,17,["H802"]],[17,19,["H3761"]]]},{"k":8052,"v":[[0,3,["H376"]],[3,4,["H834"]],[4,6,["H5973"]],[6,9,["H1732"]],[9,11,["H5927"]],[11,13,["H376"]],[13,16,["H1004"]],[16,19,["H3427"]],[19,22,["H5892"]],[22,24,["H2275"]]]},{"k":8053,"v":[[0,3,["H376"]],[3,5,["H3063"]],[5,6,["H935"]],[6,8,["H8033"]],[8,10,["H4886","(H853)"]],[10,11,["H1732"]],[11,12,["H4428"]],[12,13,["H5921"]],[13,15,["H1004"]],[15,17,["H3063"]],[17,20,["H5046"]],[20,21,["H1732"]],[21,22,["H559"]],[22,25,["H376"]],[25,27,["H3003","H1568"]],[27,30,["H834"]],[30,31,["H6912","(H853)"]],[31,32,["H7586"]]]},{"k":8054,"v":[[0,2,["H1732"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,7,["H376"]],[7,9,["H3003","H1568"]],[9,11,["H559"]],[11,12,["H413"]],[12,14,["H1288"]],[14,16,["H859"]],[16,19,["H3068"]],[19,20,["H834"]],[20,23,["H6213"]],[23,24,["H2088"]],[24,25,["H2617"]],[25,26,["H5973"]],[26,28,["H113"]],[28,30,["H5973"]],[30,31,["H7586"]],[31,34,["H6912"]],[34,35,[]]]},{"k":8055,"v":[[0,2,["H6258"]],[2,4,["H3068"]],[4,5,["H6213"]],[5,6,["H2617"]],[6,8,["H571"]],[8,9,["H5973"]],[9,12,["H595"]],[12,13,["H1571"]],[13,15,["H6213"]],[15,17,["H2063"]],[17,18,["H2896"]],[18,19,["H834"]],[19,22,["H6213"]],[22,23,["H2088"]],[23,24,["H1697"]]]},{"k":8056,"v":[[0,2,["H6258"]],[2,5,["H3027"]],[5,7,["H2388"]],[7,9,["H1961"]],[9,11,["H1121","H2428"]],[11,12,["H3588"]],[12,14,["H113"]],[14,15,["H7586"]],[15,17,["H4191"]],[17,19,["H1571"]],[19,21,["H1004"]],[21,23,["H3063"]],[23,25,["H4886"]],[25,27,["H4428"]],[27,28,["H5921"]],[28,29,[]]]},{"k":8057,"v":[[0,2,["H74"]],[2,4,["H1121"]],[4,6,["H5369"]],[6,7,["H8269"]],[7,9,["H7586"]],[9,10,["H6635"]],[10,11,["H3947","(H853)"]],[11,12,["H378"]],[12,14,["H1121"]],[14,16,["H7586"]],[16,20,["H5674"]],[20,22,["H4266"]]]},{"k":8058,"v":[[0,4,["H4427"]],[4,5,["H413"]],[5,6,["H1568"]],[6,8,["H413"]],[8,10,["H843"]],[10,12,["H413"]],[12,13,["H3157"]],[13,15,["H5921"]],[15,16,["H669"]],[16,18,["H5921"]],[18,19,["H1144"]],[19,21,["H5921"]],[21,22,["H3605"]],[22,23,["H3478"]]]},{"k":8059,"v":[[0,1,["H378"]],[1,2,["H7586"]],[2,3,["H1121"]],[3,5,["H705"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,13,["H5921"]],[13,14,["H3478"]],[14,16,["H4427"]],[16,17,["H8147"]],[17,18,["H8141"]],[18,19,["H389"]],[19,21,["H1004"]],[21,23,["H3063"]],[23,24,["H1961","H310"]],[24,25,["H1732"]]]},{"k":8060,"v":[[0,3,["H4557","H3117"]],[3,4,["H834"]],[4,5,["H1732"]],[5,6,["H1961"]],[6,7,["H4428"]],[7,9,["H2275"]],[9,10,["H5921"]],[10,12,["H1004"]],[12,14,["H3063"]],[14,15,["H1961"]],[15,16,["H7651"]],[16,17,["H8141"]],[17,19,["H8337"]],[19,20,["H2320"]]]},{"k":8061,"v":[[0,2,["H74"]],[2,4,["H1121"]],[4,6,["H5369"]],[6,9,["H5650"]],[9,11,["H378"]],[11,13,["H1121"]],[13,15,["H7586"]],[15,17,["H3318"]],[17,19,["H4480","H4266"]],[19,21,["H1391"]]]},{"k":8062,"v":[[0,2,["H3097"]],[2,4,["H1121"]],[4,6,["H6870"]],[6,9,["H5650"]],[9,11,["H1732"]],[11,13,["H3318"]],[13,15,["H6298"]],[15,16,["H3162"]],[16,17,["H5921"]],[17,19,["H1295"]],[19,21,["H1391"]],[21,25,["H3427"]],[25,27,["H428"]],[27,31,["H4480","H2088"]],[31,32,["H5921"]],[32,34,["H1295"]],[34,37,["H428"]],[37,41,["H4480","H2088"]],[41,42,["H5921"]],[42,44,["H1295"]]]},{"k":8063,"v":[[0,2,["H74"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3097"]],[5,9,["H5288"]],[9,10,["H4994"]],[10,11,["H6965"]],[11,13,["H7832"]],[13,14,["H6440"]],[14,17,["H3097"]],[17,18,["H559"]],[18,21,["H6965"]]]},{"k":8064,"v":[[0,3,["H6965"]],[3,6,["H5674"]],[6,8,["H4557"]],[8,9,["H8147","H6240"]],[9,11,["H1144"]],[11,15,["H378"]],[15,17,["H1121"]],[17,19,["H7586"]],[19,21,["H8147","H6240"]],[21,24,["H4480","H5650"]],[24,26,["H1732"]]]},{"k":8065,"v":[[0,3,["H2388"]],[3,5,["H376"]],[5,7,["H7453"]],[7,10,["H7218"]],[10,14,["H2719"]],[14,17,["H7453"]],[17,18,["H6654"]],[18,22,["H5307"]],[22,23,["H3162"]],[23,25,["H1931"]],[25,26,["H4725"]],[26,28,["H7121"]],[28,29,["H2521"]],[29,30,["H834"]],[30,33,["H1391"]]]},{"k":8066,"v":[[0,3,["H1961"]],[3,5,["H5704","H3966"]],[5,6,["H7186"]],[6,7,["H4421"]],[7,8,["H1931"]],[8,9,["H3117"]],[9,11,["H74"]],[11,13,["H5062"]],[13,16,["H376"]],[16,18,["H3478"]],[18,19,["H6440"]],[19,21,["H5650"]],[21,23,["H1732"]]]},{"k":8067,"v":[[0,2,["H8033"]],[2,3,["H1961"]],[3,4,["H7969"]],[4,5,["H1121"]],[5,7,["H6870"]],[7,9,["H3097"]],[9,11,["H52"]],[11,13,["H6214"]],[13,15,["H6214"]],[15,18,["H7031"]],[18,20,["H7272"]],[20,22,["H259"]],[22,23,["H834","H7704"]],[23,24,["H6643"]]]},{"k":8068,"v":[[0,2,["H6214"]],[2,3,["H7291"]],[3,4,["H310"]],[4,5,["H74"]],[5,8,["H1980"]],[8,10,["H5186"]],[10,11,["H3808"]],[11,12,["H5921"]],[12,14,["H3225"]],[14,17,["H5921"]],[17,19,["H8040"]],[19,21,["H4480","H310"]],[21,22,["H74"]]]},{"k":8069,"v":[[0,2,["H74"]],[2,3,["H6437"]],[3,4,["H310"]],[4,7,["H559"]],[7,9,["H859"]],[9,10,["H6214"]],[10,13,["H559"]],[13,14,["H595"]],[14,15,[]]]},{"k":8070,"v":[[0,2,["H74"]],[2,3,["H559"]],[3,8,["H5186"]],[8,9,["H5921"]],[9,11,["H3225"]],[11,13,["H176"]],[13,14,["H5921"]],[14,16,["H8040"]],[16,20,["H270"]],[20,22,["H259"]],[22,26,["H4480","H5288"]],[26,28,["H3947"]],[28,29,["(H853)"]],[29,31,["H2488"]],[31,33,["H6214"]],[33,34,["H14"]],[34,35,["H3808"]],[35,37,["H5493"]],[37,39,["H4480","H310"]],[39,41,[]]]},{"k":8071,"v":[[0,2,["H74"]],[2,3,["H559"]],[3,4,["H3254"]],[4,5,["H413"]],[5,6,["H6214"]],[6,9,["H5493"]],[9,11,["H4480","H310"]],[11,13,["H4100"]],[13,16,["H5221"]],[16,20,["H776"]],[20,21,["H349"]],[21,26,["H5375"]],[26,28,["H6440"]],[28,29,["H413"]],[29,30,["H3097"]],[30,32,["H251"]]]},{"k":8072,"v":[[0,3,["H3985"]],[3,6,["H5493"]],[6,8,["H74"]],[8,13,["H310"]],[13,15,["H2595"]],[15,16,["H5221"]],[16,18,["H413"]],[18,20,["H2570"]],[20,24,["H2595"]],[24,26,["H3318"]],[26,27,["H4480","H310"]],[27,32,["H5307"]],[32,33,["H8033"]],[33,35,["H4191"]],[35,39,["H8478"]],[39,44,["H1961"]],[44,47,["H3605"]],[47,49,["H935"]],[49,50,["H413"]],[50,52,["H4725"]],[52,53,["H834"]],[53,54,["H6214"]],[54,56,["H5307"]],[56,58,["H4191"]],[58,60,["H5975"]]]},{"k":8073,"v":[[0,1,["H3097"]],[1,4,["H52"]],[4,5,["H7291"]],[5,6,["H310"]],[6,7,["H74"]],[7,10,["H8121"]],[10,12,["H935"]],[12,14,["H1992"]],[14,16,["H935"]],[16,17,["H5704"]],[17,19,["H1389"]],[19,21,["H522"]],[21,22,["H834"]],[22,24,["H5921","H6440"]],[24,25,["H1520"]],[25,28,["H1870"]],[28,31,["H4057"]],[31,33,["H1391"]]]},{"k":8074,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,8,["H6908"]],[8,9,["H310"]],[9,10,["H74"]],[10,12,["H1961"]],[12,13,["H259"]],[13,14,["H92"]],[14,16,["H5975"]],[16,17,["H5921"]],[17,19,["H7218"]],[19,21,["H259"]],[21,22,["H1389"]]]},{"k":8075,"v":[[0,2,["H74"]],[2,3,["H7121"]],[3,4,["H413"]],[4,5,["H3097"]],[5,7,["H559"]],[7,10,["H2719"]],[10,11,["H398"]],[11,13,["H5331"]],[13,14,["H3045"]],[14,16,["H3808"]],[16,17,["H3588"]],[17,20,["H1961"]],[20,21,["H4751"]],[21,25,["H314"]],[25,27,["H5704"]],[27,32,["H3808"]],[32,34,["H559"]],[34,36,["H5971"]],[36,37,["H7725"]],[37,39,["H4480","H310"]],[39,41,["H251"]]]},{"k":8076,"v":[[0,2,["H3097"]],[2,3,["H559"]],[3,5,["H430"]],[5,6,["H2416"]],[6,7,["H3588","H3884"]],[7,10,["H1696"]],[10,11,["H3588"]],[11,12,["H227"]],[12,15,["H1242"]],[15,17,["H5971"]],[17,20,["H5927"]],[20,22,["H376"]],[22,24,["H4480","H310"]],[24,26,["H251"]]]},{"k":8077,"v":[[0,2,["H3097"]],[2,3,["H8628"]],[3,5,["H7782"]],[5,7,["H3605"]],[7,9,["H5971"]],[9,10,["H5975"]],[10,13,["H7291"]],[13,14,["H310"]],[14,15,["H3478"]],[15,16,["H3808"]],[16,17,["H5750"]],[17,18,["H3808"]],[18,19,["H3898"]],[19,22,["H3254"]]]},{"k":8078,"v":[[0,2,["H74"]],[2,5,["H376"]],[5,6,["H1980"]],[6,7,["H3605"]],[7,8,["H1931"]],[8,9,["H3915"]],[9,12,["H6160"]],[12,15,["H5674","(H853)"]],[15,16,["H3383"]],[16,19,["H1980"]],[19,20,["H3605"]],[20,21,["H1338"]],[21,24,["H935"]],[24,26,["H4266"]]]},{"k":8079,"v":[[0,2,["H3097"]],[2,3,["H7725"]],[3,5,["H4480","H310"]],[5,6,["H74"]],[6,15,["H6908","(H853)","H3605","H5971"]],[15,17,["H6485"]],[17,20,["H4480","H5650","H1732"]],[20,21,["H8672","H6240"]],[21,22,["H376"]],[22,24,["H6214"]]]},{"k":8080,"v":[[0,3,["H5650"]],[3,5,["H1732"]],[5,7,["H5221"]],[7,9,["H4480","H1144"]],[9,12,["H74"]],[12,13,["H4480","H376"]],[13,16,["H7969"]],[16,17,["H3967"]],[17,19,["H8346"]],[19,20,["H376"]],[20,21,["H4191"]]]},{"k":8081,"v":[[0,4,["H5375","(H853)"]],[4,5,["H6214"]],[5,7,["H6912"]],[7,11,["H6913"]],[11,14,["H1"]],[14,15,["H834"]],[15,18,["H1035"]],[18,20,["H3097"]],[20,23,["H376"]],[23,24,["H1980"]],[24,25,["H3605"]],[25,26,["H3915"]],[26,31,["H2275"]],[31,35,["H215"]]]},{"k":8082,"v":[[0,3,["H1961"]],[3,4,["H752"]],[4,5,["H4421"]],[5,6,["H996"]],[6,8,["H1004"]],[8,10,["H7586"]],[10,13,["H1004"]],[13,15,["H1732"]],[15,17,["H1732"]],[17,21,["H1980","H2390"]],[21,24,["H1004"]],[24,26,["H7586"]],[26,27,["H1980"]],[27,30,["H1800"]]]},{"k":8083,"v":[[0,3,["H1732"]],[3,5,["H1121"]],[5,6,["H3205"]],[6,8,["H2275"]],[8,11,["H1060"]],[11,12,["H1961"]],[12,13,["H550"]],[13,15,["H293"]],[15,17,["H3159"]]]},{"k":8084,"v":[[0,3,["H4932"]],[3,4,["H3609"]],[4,6,["H26"]],[6,8,["H802"]],[8,10,["H5037"]],[10,12,["H3761"]],[12,15,["H7992"]],[15,16,["H53"]],[16,18,["H1121"]],[18,20,["H4601"]],[20,22,["H1323"]],[22,24,["H8526"]],[24,25,["H4428"]],[25,27,["H1650"]]]},{"k":8085,"v":[[0,3,["H7243"]],[3,4,["H138"]],[4,6,["H1121"]],[6,8,["H2294"]],[8,11,["H2549"]],[11,12,["H8203"]],[12,14,["H1121"]],[14,16,["H37"]]]},{"k":8086,"v":[[0,3,["H8345"]],[3,4,["H3507"]],[4,6,["H5698"]],[6,7,["H1732"]],[7,8,["H802"]],[8,9,["H428"]],[9,11,["H3205"]],[11,13,["H1732"]],[13,15,["H2275"]]]},{"k":8087,"v":[[0,5,["H1961"]],[5,8,["H1961"]],[8,9,["H4421"]],[9,10,["H996"]],[10,12,["H1004"]],[12,14,["H7586"]],[14,17,["H1004"]],[17,19,["H1732"]],[19,21,["H74"]],[21,24,["H2388"]],[24,27,["H1004"]],[27,29,["H7586"]]]},{"k":8088,"v":[[0,2,["H7586"]],[2,5,["H6370"]],[5,7,["H8034"]],[7,9,["H7532"]],[9,11,["H1323"]],[11,13,["H345"]],[13,16,["H559"]],[16,17,["H413"]],[17,18,["H74"]],[18,19,["H4069"]],[19,22,["H935"]],[22,24,["H413"]],[24,26,["H1"]],[26,27,["H6370"]]]},{"k":8089,"v":[[0,3,["H74"]],[3,4,["H3966"]],[4,5,["H2734"]],[5,6,["H5921"]],[6,8,["H1697"]],[8,10,["H378"]],[10,12,["H559"]],[12,14,["H595"]],[14,16,["H3611"]],[16,17,["H7218"]],[17,18,["H834"]],[18,20,["H3063"]],[20,22,["H6213"]],[22,23,["H2617"]],[23,25,["H3117"]],[25,26,["H5973"]],[26,28,["H1004"]],[28,30,["H7586"]],[30,32,["H1"]],[32,33,["H413"]],[33,35,["H251"]],[35,37,["H413"]],[37,39,["H4828"]],[39,42,["H3808"]],[42,43,["H4672"]],[43,47,["H3027"]],[47,49,["H1732"]],[49,52,["H6485","H5921"]],[52,55,["H3117"]],[55,58,["H5771"]],[58,61,["H802"]]]},{"k":8090,"v":[[0,1,["H3541"]],[1,2,["H6213"]],[2,3,["H430"]],[3,5,["H74"]],[5,7,["H3254"]],[7,8,["H3541"]],[8,9,["H3588"]],[9,10,["H834"]],[10,12,["H3068"]],[12,14,["H7650"]],[14,16,["H1732"]],[16,17,["H3588"]],[17,18,["H3651"]],[18,20,["H6213"]],[20,22,[]]]},{"k":8091,"v":[[0,2,["H5674"]],[2,4,["H4467"]],[4,7,["H4480","H1004"]],[7,9,["H7586"]],[9,13,["H6965"]],[13,14,["(H853)"]],[14,15,["H3678"]],[15,17,["H1732"]],[17,18,["H5921"]],[18,19,["H3478"]],[19,21,["H5921"]],[21,22,["H3063"]],[22,24,["H4480","H1835"]],[24,26,["H5704"]],[26,27,["H884"]]]},{"k":8092,"v":[[0,3,["H3201"]],[3,4,["H3808"]],[4,5,["H7725","(H853)"]],[5,6,["H74"]],[6,8,["H1697"]],[8,9,["H5750"]],[9,12,["H4480","H3372"]],[12,13,[]]]},{"k":8093,"v":[[0,2,["H74"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H1732"]],[6,9,["H8478"]],[9,10,["H559"]],[10,11,["H4310"]],[11,14,["H776"]],[14,15,["H559"]],[15,17,["H3772"]],[17,19,["H1285"]],[19,20,["H854"]],[20,23,["H2009"]],[23,25,["H3027"]],[25,28,["H5973"]],[28,32,["H5437","(H853)"]],[32,33,["H3605"]],[33,34,["H3478"]],[34,35,["H413"]],[35,36,[]]]},{"k":8094,"v":[[0,3,["H559"]],[3,4,["H2896"]],[4,5,["H589"]],[5,7,["H3772"]],[7,9,["H1285"]],[9,10,["H854"]],[10,12,["H389"]],[12,13,["H259"]],[13,14,["H1697"]],[14,15,["H595"]],[15,16,["H7592"]],[16,17,["H4480","H854"]],[17,20,["H559"]],[20,23,["H3808"]],[23,24,["H7200","(H853)"]],[24,26,["H6440"]],[26,27,["H3588","H518"]],[27,29,["H6440"]],[29,30,["H935","(H853)"]],[30,31,["H4324"]],[31,32,["H7586"]],[32,33,["H1323"]],[33,36,["H935"]],[36,38,["H7200","(H853)"]],[38,40,["H6440"]]]},{"k":8095,"v":[[0,2,["H1732"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H378"]],[6,7,["H7586"]],[7,8,["H1121"]],[8,9,["H559"]],[9,10,["H5414"]],[10,11,["(H853)"]],[11,13,["H802","(H853)"]],[13,14,["H4324"]],[14,15,["H834"]],[15,17,["H781"]],[17,22,["H3967"]],[22,23,["H6190"]],[23,26,["H6430"]]]},{"k":8096,"v":[[0,2,["H378"]],[2,3,["H7971"]],[3,5,["H3947"]],[5,7,["H4480","H5973"]],[7,9,["H376"]],[9,11,["H4480","H5973"]],[11,12,["H6409"]],[12,14,["H1121"]],[14,16,["H3919"]]]},{"k":8097,"v":[[0,3,["H376"]],[3,4,["H1980"]],[4,5,["H854"]],[5,7,["H1980"]],[7,8,["H1058"]],[8,9,["H310"]],[9,11,["H5704"]],[11,12,["H980"]],[12,14,["H559"]],[14,15,["H74"]],[15,16,["H413"]],[16,18,["H1980"]],[18,19,["H7725"]],[19,22,["H7725"]]]},{"k":8098,"v":[[0,2,["H74"]],[2,3,["H1961"]],[3,4,["H1697"]],[4,5,["H5973"]],[5,7,["H2205"]],[7,9,["H3478"]],[9,10,["H559"]],[10,12,["H1961","H1245"]],[12,13,["(H853)"]],[13,14,["H1732"]],[14,16,["H1571","H8543"]],[16,17,["H1571","H8032"]],[17,20,["H4428"]],[20,21,["H5921"]],[21,22,[]]]},{"k":8099,"v":[[0,1,["H6258"]],[1,3,["H6213"]],[3,5,["H3588"]],[5,7,["H3068"]],[7,9,["H559"]],[9,10,["H413"]],[10,11,["H1732"]],[11,12,["H559"]],[12,15,["H3027"]],[15,18,["H5650"]],[18,19,["H1732"]],[19,22,["H3467","(H853)"]],[22,24,["H5971"]],[24,25,["H3478"]],[25,29,["H4480","H3027"]],[29,32,["H6430"]],[32,37,["H4480","H3027"]],[37,39,["H3605"]],[39,41,["H341"]]]},{"k":8100,"v":[[0,2,["H74"]],[2,3,["H1571"]],[3,4,["H1696"]],[4,7,["H241"]],[7,9,["H1144"]],[9,11,["H74"]],[11,12,["H1980"]],[12,13,["H1571"]],[13,15,["H1696"]],[15,18,["H241"]],[18,20,["H1732"]],[20,22,["H2275","(H853)"]],[22,23,["H3605"]],[23,24,["H834"]],[24,26,["H2896","H5869"]],[26,28,["H3478"]],[28,32,["H5869"]],[32,35,["H3605"]],[35,36,["H1004"]],[36,38,["H1144"]]]},{"k":8101,"v":[[0,2,["H74"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H1732"]],[5,7,["H2275"]],[7,9,["H6242"]],[9,10,["H376"]],[10,11,["H854"]],[11,14,["H1732"]],[14,15,["H6213"]],[15,16,["H74"]],[16,19,["H376"]],[19,20,["H834"]],[20,22,["H854"]],[22,25,["H4960"]]]},{"k":8102,"v":[[0,2,["H74"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,8,["H6965"]],[8,10,["H1980"]],[10,13,["H6908","(H853)"]],[13,14,["H3605"]],[14,15,["H3478"]],[15,16,["H413"]],[16,18,["H113"]],[18,20,["H4428"]],[20,24,["H3772"]],[24,26,["H1285"]],[26,27,["H854"]],[27,33,["H4427"]],[33,35,["H3605"]],[35,36,["H834"]],[36,38,["H5315"]],[38,39,["H183"]],[39,41,["H1732"]],[41,42,["H7971","(H853)"]],[42,43,["H74"]],[43,47,["H1980"]],[47,49,["H7965"]]]},{"k":8103,"v":[[0,2,["H2009"]],[2,4,["H5650"]],[4,6,["H1732"]],[6,8,["H3097"]],[8,9,["H935"]],[9,13,["H4480","H1416"]],[13,15,["H935"]],[15,18,["H7227"]],[18,19,["H7998"]],[19,20,["H5973"]],[20,23,["H74"]],[23,25,["H369"]],[25,26,["H5973"]],[26,27,["H1732"]],[27,29,["H2275"]],[29,30,["H3588"]],[30,35,["H7971"]],[35,39,["H1980"]],[39,41,["H7965"]]]},{"k":8104,"v":[[0,2,["H3097"]],[2,4,["H3605"]],[4,6,["H6635"]],[6,7,["H834"]],[7,9,["H854"]],[9,12,["H935"]],[12,14,["H5046"]],[14,15,["H3097"]],[15,16,["H559"]],[16,17,["H74"]],[17,19,["H1121"]],[19,21,["H5369"]],[21,22,["H935"]],[22,23,["H413"]],[23,25,["H4428"]],[25,31,["H7971"]],[31,35,["H1980"]],[35,37,["H7965"]]]},{"k":8105,"v":[[0,2,["H3097"]],[2,3,["H935"]],[3,4,["H413"]],[4,6,["H4428"]],[6,8,["H559"]],[8,9,["H4100"]],[9,12,["H6213"]],[12,13,["H2009"]],[13,14,["H74"]],[14,15,["H935"]],[15,16,["H413"]],[16,18,["H4100"]],[18,26,["H7971"]],[26,31,["H1980"]]]},{"k":8106,"v":[[0,2,["H3045","(H853)"]],[2,3,["H74"]],[3,5,["H1121"]],[5,7,["H5369"]],[7,8,["H3588"]],[8,10,["H935"]],[10,12,["H6601"]],[12,16,["H3045","(H853)"]],[16,19,["H4161"]],[19,23,["H4126"]],[23,26,["H3045","(H853)"]],[26,27,["H3605"]],[27,28,["H834"]],[28,29,["H859"]],[29,30,["H6213"]]]},{"k":8107,"v":[[0,3,["H3097"]],[3,6,["H3318"]],[6,7,["H4480","H5973"]],[7,8,["H1732"]],[8,10,["H7971"]],[10,11,["H4397"]],[11,12,["H310"]],[12,13,["H74"]],[13,17,["H7725","(H853)"]],[17,20,["H4480","H953"]],[20,22,["H5626"]],[22,24,["H1732"]],[24,25,["H3045"]],[25,27,["H3808"]]]},{"k":8108,"v":[[0,3,["H74"]],[3,5,["H7725"]],[5,7,["H2275"]],[7,8,["H3097"]],[8,11,["H5186"]],[11,12,["H413","H8432"]],[12,14,["H8179"]],[14,16,["H1696"]],[16,17,["H854"]],[17,19,["H7987"]],[19,21,["H5221"]],[21,23,["H8033"]],[23,26,["H2570"]],[26,30,["H4191"]],[30,33,["H1818"]],[33,35,["H6214"]],[35,37,["H251"]]]},{"k":8109,"v":[[0,2,["H4480","H310","H3651"]],[2,4,["H1732"]],[4,5,["H8085"]],[5,8,["H559"]],[8,9,["H595"]],[9,12,["H4467"]],[12,14,["H5355"]],[14,15,["H4480","H5973"]],[15,17,["H3068"]],[17,19,["H5704","H5769"]],[19,22,["H4480","H1818"]],[22,24,["H74"]],[24,26,["H1121"]],[26,28,["H5369"]]]},{"k":8110,"v":[[0,3,["H2342"]],[3,4,["H5921"]],[4,6,["H7218"]],[6,8,["H3097"]],[8,10,["H413"]],[10,11,["H3605"]],[11,13,["H1"]],[13,14,["H1004"]],[14,18,["H408"]],[18,19,["H3772"]],[19,22,["H4480","H1004"]],[22,24,["H3097"]],[24,29,["H2100"]],[29,34,["H6879"]],[34,37,["H2388"]],[37,40,["H6418"]],[40,43,["H5307"]],[43,46,["H2719"]],[46,49,["H2638"]],[49,50,["H3899"]]]},{"k":8111,"v":[[0,2,["H3097"]],[2,4,["H52"]],[4,6,["H251"]],[6,7,["H2026"]],[7,8,["H74"]],[8,9,["H5921","H834"]],[9,12,["H4191"]],[12,14,["H251","(H853)"]],[14,15,["H6214"]],[15,17,["H1391"]],[17,20,["H4421"]]]},{"k":8112,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3097"]],[5,7,["H413"]],[7,8,["H3605"]],[8,10,["H5971"]],[10,11,["H834"]],[11,13,["H854"]],[13,15,["H7167"]],[15,17,["H899"]],[17,19,["H2296"]],[19,22,["H8242"]],[22,24,["H5594"]],[24,25,["H6440"]],[25,26,["H74"]],[26,28,["H4428"]],[28,29,["H1732"]],[29,31,["H310"]],[31,33,["H4296"]]]},{"k":8113,"v":[[0,3,["H6912","(H853)"]],[3,4,["H74"]],[4,6,["H2275"]],[6,9,["H4428"]],[9,11,["H5375","(H853)"]],[11,13,["H6963"]],[13,15,["H1058"]],[15,16,["H413"]],[16,18,["H6913"]],[18,20,["H74"]],[20,22,["H3605"]],[22,24,["H5971"]],[24,25,["H1058"]]]},{"k":8114,"v":[[0,3,["H4428"]],[3,4,["H6969"]],[4,5,["H413"]],[5,6,["H74"]],[6,8,["H559"]],[8,9,["H4191"]],[9,10,["H74"]],[10,13,["H5036"]],[13,14,["H4194"]]]},{"k":8115,"v":[[0,2,["H3027"]],[2,4,["H3808"]],[4,5,["H631"]],[5,6,["H3808"]],[6,8,["H7272"]],[8,9,["H5066"]],[9,11,["H5178"]],[11,14,["H1121"]],[14,15,["H5307"]],[15,16,["H6440"]],[16,17,["H5766"]],[17,18,["H1121"]],[18,20,["H5307"]],[20,23,["H3605"]],[23,25,["H5971"]],[25,26,["H1058"]],[26,27,["H3254"]],[27,28,["H5921"]],[28,29,[]]]},{"k":8116,"v":[[0,3,["H3605"]],[3,5,["H5971"]],[5,6,["H935"]],[6,8,["(H853)"]],[8,9,["H1732"]],[9,11,["H1262"]],[11,12,["H3899"]],[12,16,["H5750"]],[16,17,["H3117"]],[17,18,["H1732"]],[18,19,["H7650"]],[19,20,["H559"]],[20,21,["H3541"]],[21,22,["H6213"]],[22,23,["H430"]],[23,27,["H3254"]],[27,28,["H3541"]],[28,29,["H3588","H518"]],[29,31,["H2938"]],[31,32,["H3899"]],[32,33,["H176"]],[33,35,["H3605","H3972"]],[35,36,["H6440"]],[36,38,["H8121"]],[38,40,["H935"]]]},{"k":8117,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H5234"]],[6,12,["H3190","H5869"]],[12,14,["H3605","H834"]],[14,16,["H4428"]],[16,17,["H6213"]],[17,18,["H2895","H5869"]],[18,19,["H3605"]],[19,21,["H5971"]]]},{"k":8118,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H3605"]],[6,7,["H3478"]],[7,8,["H3045"]],[8,9,["H1931"]],[9,10,["H3117"]],[10,11,["H3588"]],[11,13,["H1961"]],[13,14,["H3808"]],[14,17,["H4480","H4428"]],[17,19,["H4191"]],[19,20,["H74"]],[20,22,["H1121"]],[22,24,["H5369"]]]},{"k":8119,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H5650"]],[7,8,["H3045"]],[8,10,["H3808"]],[10,11,["H3588"]],[11,15,["H8269"]],[15,19,["H1419"]],[19,20,["H5307"]],[20,21,["H2088"]],[21,22,["H3117"]],[22,24,["H3478"]]]},{"k":8120,"v":[[0,2,["H595"]],[2,5,["H3117"]],[5,6,["H7390"]],[6,8,["H4886"]],[8,9,["H4428"]],[9,11,["H428"]],[11,12,["H376"]],[12,14,["H1121"]],[14,16,["H6870"]],[16,19,["H7186"]],[19,20,["H4480"]],[20,23,["H3068"]],[23,25,["H7999"]],[25,27,["H6213"]],[27,29,["H7451"]],[29,33,["H7451"]]]},{"k":8121,"v":[[0,3,["H7586"]],[3,4,["H1121"]],[4,5,["H8085"]],[5,6,["H3588"]],[6,7,["H74"]],[7,9,["H4191"]],[9,11,["H2275"]],[11,13,["H3027"]],[13,15,["H7503"]],[15,17,["H3605"]],[17,19,["H3478"]],[19,21,["H926"]]]},{"k":8122,"v":[[0,2,["H7586"]],[2,3,["H1121"]],[3,4,["H1961"]],[4,5,["H8147"]],[5,6,["H376"]],[6,9,["H8269"]],[9,11,["H1416"]],[11,13,["H8034"]],[13,16,["H259"]],[16,18,["H1196"]],[18,21,["H8034"]],[21,24,["H8145"]],[24,25,["H7394"]],[25,27,["H1121"]],[27,29,["H7417"]],[29,31,["H886"]],[31,34,["H4480","H1121"]],[34,36,["H1144"]],[36,37,["H3588"]],[37,38,["H881"]],[38,39,["H1571"]],[39,41,["H2803"]],[41,42,["H5921"]],[42,43,["H1144"]]]},{"k":8123,"v":[[0,3,["H886"]],[3,4,["H1272"]],[4,6,["H1664"]],[6,8,["H1961"]],[8,9,["H1481"]],[9,10,["H8033"]],[10,11,["H5704"]],[11,12,["H2088"]],[12,13,["H3117"]]]},{"k":8124,"v":[[0,2,["H3083"]],[2,3,["H7586"]],[3,4,["H1121"]],[4,7,["H1121"]],[7,10,["H5223"]],[10,13,["H7272"]],[13,15,["H1961"]],[15,16,["H2568"]],[16,17,["H8141"]],[17,18,["H1121"]],[18,21,["H8052"]],[21,22,["H935"]],[22,24,["H7586"]],[24,26,["H3083"]],[26,29,["H4480","H3157"]],[29,32,["H539"]],[32,35,["H5375"]],[35,37,["H5127"]],[37,42,["H1961"]],[42,46,["H2648"]],[46,48,["H5127"]],[48,51,["H5307"]],[51,54,["H6452"]],[54,57,["H8034"]],[57,59,["H4648"]]]},{"k":8125,"v":[[0,3,["H1121"]],[3,5,["H7417"]],[5,7,["H886"]],[7,8,["H7394"]],[8,10,["H1195"]],[10,11,["H1980"]],[11,13,["H935"]],[13,16,["H2527"]],[16,19,["H3117"]],[19,20,["H413"]],[20,22,["H1004"]],[22,24,["H378"]],[24,25,["H1931"]],[25,26,["H7901"]],[26,27,["(H853)"]],[27,29,["H4904"]],[29,31,["H6672"]]]},{"k":8126,"v":[[0,3,["H935"]],[3,4,["H2008"]],[4,5,["H5704"]],[5,7,["H8432"]],[7,10,["H1004"]],[10,16,["H3947"]],[16,17,["H2406"]],[17,20,["H5221"]],[20,22,["H413"]],[22,24,["H2570"]],[24,27,["H7394"]],[27,29,["H1196"]],[29,31,["H251"]],[31,32,["H4422"]]]},{"k":8127,"v":[[0,4,["H935"]],[4,7,["H1004"]],[7,8,["H1931"]],[8,9,["H7901"]],[9,10,["H5921"]],[10,12,["H4296"]],[12,15,["H2315","H4904"]],[15,18,["H5221"]],[18,21,["H4191"]],[21,24,["H5493","(H853)","H7218"]],[24,27,["H3947","(H853)"]],[27,29,["H7218"]],[29,33,["H1980"]],[33,34,["H1870"]],[34,36,["H6160"]],[36,37,["H3605"]],[37,38,["H3915"]]]},{"k":8128,"v":[[0,3,["H935","(H853)"]],[3,5,["H7218"]],[5,7,["H378"]],[7,8,["H413"]],[8,9,["H1732"]],[9,11,["H2275"]],[11,13,["H559"]],[13,14,["H413"]],[14,16,["H4428"]],[16,17,["H2009"]],[17,19,["H7218"]],[19,21,["H378"]],[21,23,["H1121"]],[23,25,["H7586"]],[25,27,["H341"]],[27,28,["H834"]],[28,29,["H1245","(H853)"]],[29,31,["H5315"]],[31,34,["H3068"]],[34,36,["H5414","H5360"]],[36,38,["H113"]],[38,40,["H4428"]],[40,41,["H2088"]],[41,42,["H3117"]],[42,44,["H4480","H7586"]],[44,48,["H4480","H2233"]]]},{"k":8129,"v":[[0,2,["H1732"]],[2,3,["H6030","(H853)"]],[3,4,["H7394"]],[4,6,["H1196"]],[6,8,["H251"]],[8,10,["H1121"]],[10,12,["H7417"]],[12,14,["H886"]],[14,16,["H559"]],[16,21,["H3068"]],[21,22,["H2416"]],[22,23,["H834"]],[23,25,["H6299","(H853)"]],[25,27,["H5315"]],[27,30,["H4480","H3605"]],[30,31,["H6869"]]]},{"k":8130,"v":[[0,1,["H3588"]],[1,3,["H5046"]],[3,5,["H559"]],[5,6,["H2009"]],[6,7,["H7586"]],[7,9,["H4191"]],[9,10,["H5869"]],[10,12,["H1961"]],[12,15,["H1319"]],[15,18,["H270"]],[18,22,["H2026"]],[22,25,["H6860"]],[25,26,["H834"]],[26,32,["H5414"]],[32,38,["H1309"]]]},{"k":8131,"v":[[0,3,["H637"]],[3,4,["H3588"]],[4,5,["H7563"]],[5,6,["H376"]],[6,8,["H2026","(H853)"]],[8,10,["H6662"]],[10,11,["H376"]],[11,15,["H1004"]],[15,16,["H5921"]],[16,18,["H4904"]],[18,21,["H3808"]],[21,23,["H6258"]],[23,24,["H1245","(H853)"]],[24,26,["H1818"]],[26,29,["H4480","H3027"]],[29,33,["H1197","(H853)"]],[33,34,["H4480"]],[34,36,["H776"]]]},{"k":8132,"v":[[0,2,["H1732"]],[2,3,["H6680","(H853)"]],[3,6,["H5288"]],[6,9,["H2026"]],[9,13,["H7112","(H853)"]],[13,15,["H3027"]],[15,18,["H7272"]],[18,22,["H8518"]],[22,23,["H5921"]],[23,25,["H1295"]],[25,27,["H2275"]],[27,30,["H3947"]],[30,32,["H7218"]],[32,34,["H378"]],[34,36,["H6912"]],[36,40,["H6913"]],[40,42,["H74"]],[42,44,["H2275"]]]},{"k":8133,"v":[[0,2,["H935"]],[2,3,["H3605"]],[3,5,["H7626"]],[5,7,["H3478"]],[7,8,["H413"]],[8,9,["H1732"]],[9,11,["H2275"]],[11,13,["H559"]],[13,14,["H559"]],[14,15,["H2009"]],[15,16,["H587"]],[16,19,["H6106"]],[19,22,["H1320"]]]},{"k":8134,"v":[[0,1,["H1571"]],[1,4,["H865","H8032"]],[4,6,["H7586"]],[6,7,["H1961"]],[7,8,["H4428"]],[8,9,["H5921"]],[9,11,["H859"]],[11,12,["H1961"]],[12,16,["H3318"]],[16,18,["H935","(H853)"]],[18,20,["H3478"]],[20,23,["H3068"]],[23,24,["H559"]],[24,27,["H859"]],[27,29,["H7462","(H853)"]],[29,31,["H5971","(H853)"]],[31,32,["H3478"]],[32,34,["H859"]],[34,36,["H1961"]],[36,38,["H5057"]],[38,39,["H5921"]],[39,40,["H3478"]]]},{"k":8135,"v":[[0,2,["H3605"]],[2,4,["H2205"]],[4,6,["H3478"]],[6,7,["H935"]],[7,8,["H413"]],[8,10,["H4428"]],[10,12,["H2275"]],[12,14,["H4428"]],[14,15,["H1732"]],[15,16,["H3772"]],[16,18,["H1285"]],[18,22,["H2275"]],[22,23,["H6440"]],[23,25,["H3068"]],[25,28,["H4886","(H853)"]],[28,29,["H1732"]],[29,30,["H4428"]],[30,31,["H5921"]],[31,32,["H3478"]]]},{"k":8136,"v":[[0,1,["H1732"]],[1,3,["H7970"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,10,["H4427"]],[10,13,["H4427"]],[13,14,["H705"]],[14,15,["H8141"]]]},{"k":8137,"v":[[0,2,["H2275"]],[2,4,["H4427"]],[4,5,["H5921"]],[5,6,["H3063"]],[6,7,["H7651"]],[7,8,["H8141"]],[8,10,["H8337"]],[10,11,["H2320"]],[11,14,["H3389"]],[14,16,["H4427"]],[16,17,["H7970"]],[17,19,["H7969"]],[19,20,["H8141"]],[20,21,["H5921"]],[21,22,["H3605"]],[22,23,["H3478"]],[23,25,["H3063"]]]},{"k":8138,"v":[[0,3,["H4428"]],[3,6,["H376"]],[6,7,["H1980"]],[7,9,["H3389"]],[9,10,["H413"]],[10,12,["H2983"]],[12,14,["H3427"]],[14,17,["H776"]],[17,19,["H559"]],[19,21,["H1732"]],[21,22,["H559"]],[22,23,["H3588","H518"]],[23,26,["H5493"]],[26,28,["H5787"]],[28,31,["H6455"]],[31,34,["H3808"]],[34,36,["H935"]],[36,37,["H2008"]],[37,38,["H559"]],[38,39,["H1732"]],[39,40,["H3808"]],[40,42,["H935"]],[42,43,["H2008"]]]},{"k":8139,"v":[[0,2,["H1732"]],[2,3,["H3920","(H853)"]],[3,6,["H4686"]],[6,8,["H6726"]],[8,10,["H1931"]],[10,13,["H5892"]],[13,15,["H1732"]]]},{"k":8140,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H1931"]],[5,6,["H3117"]],[6,7,["H3605"]],[7,9,["H5060"]],[9,12,["H6794"]],[12,14,["H5221"]],[14,16,["H2983"]],[16,19,["H6455"]],[19,22,["H5787"]],[22,25,["H8130"]],[25,27,["H1732"]],[27,28,["H5315"]],[28,35,["H5921","H3651"]],[35,37,["H559"]],[37,39,["H5787"]],[39,42,["H6455"]],[42,44,["H3808"]],[44,45,["H935"]],[45,46,["H413"]],[46,48,["H1004"]]]},{"k":8141,"v":[[0,2,["H1732"]],[2,3,["H3427"]],[3,6,["H4686"]],[6,8,["H7121"]],[8,11,["H5892"]],[11,13,["H1732"]],[13,15,["H1732"]],[15,16,["H1129"]],[16,18,["H5439"]],[18,19,["H4480"]],[19,20,["H4407"]],[20,22,["H1004"]]]},{"k":8142,"v":[[0,2,["H1732"]],[2,4,["H1980","H1980"]],[4,7,["H1419"]],[7,10,["H3068"]],[10,11,["H430"]],[11,13,["H6635"]],[13,15,["H5973"]],[15,16,[]]]},{"k":8143,"v":[[0,2,["H2438"]],[2,3,["H4428"]],[3,5,["H6865"]],[5,6,["H7971"]],[6,7,["H4397"]],[7,8,["H413"]],[8,9,["H1732"]],[9,11,["H730"]],[11,12,["H6086"]],[12,14,["H2796","H6086"]],[14,16,["H2796","H18","H7023"]],[16,19,["H1129"]],[19,20,["H1732"]],[20,22,["H1004"]]]},{"k":8144,"v":[[0,2,["H1732"]],[2,3,["H3045"]],[3,4,["H3588"]],[4,6,["H3068"]],[6,8,["H3559"]],[8,10,["H4428"]],[10,11,["H5921"]],[11,12,["H3478"]],[12,14,["H3588"]],[14,17,["H5375"]],[17,19,["H4467"]],[19,22,["H5971"]],[22,23,["H3478"]],[23,24,["H5668"]]]},{"k":8145,"v":[[0,2,["H1732"]],[2,3,["H3947"]],[3,5,["H5750"]],[5,6,["H6370"]],[6,8,["H802"]],[8,11,["H4480","H3389"]],[11,12,["H310"]],[12,15,["H935"]],[15,17,["H4480","H2275"]],[17,21,["H5750"]],[21,22,["H1121"]],[22,24,["H1323"]],[24,25,["H3205"]],[25,27,["H1732"]]]},{"k":8146,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,10,["H3209"]],[10,14,["H3389"]],[14,15,["H8051"]],[15,17,["H7727"]],[17,19,["H5416"]],[19,21,["H8010"]]]},{"k":8147,"v":[[0,1,["H2984"]],[1,4,["H474"]],[4,6,["H5298"]],[6,8,["H3309"]]]},{"k":8148,"v":[[0,2,["H476"]],[2,4,["H450"]],[4,6,["H467"]]]},{"k":8149,"v":[[0,4,["H6430"]],[4,5,["H8085"]],[5,6,["H3588"]],[6,9,["H4886","(H853)"]],[9,10,["H1732"]],[10,11,["H4428"]],[11,12,["H5921"]],[12,13,["H3478"]],[13,14,["H3605"]],[14,16,["H6430"]],[16,18,["H5927"]],[18,20,["H1245","(H853)"]],[20,21,["H1732"]],[21,23,["H1732"]],[23,24,["H8085"]],[24,29,["H3381"]],[29,30,["H413"]],[30,32,["H4686"]]]},{"k":8150,"v":[[0,2,["H6430"]],[2,4,["H935"]],[4,7,["H5203"]],[7,10,["H6010"]],[10,12,["H7497"]]]},{"k":8151,"v":[[0,2,["H1732"]],[2,3,["H7592"]],[3,6,["H3068"]],[6,7,["H559"]],[7,11,["H5927"]],[11,12,["H413"]],[12,14,["H6430"]],[14,17,["H5414"]],[17,21,["H3027"]],[21,24,["H3068"]],[24,25,["H559"]],[25,26,["H413"]],[26,27,["H1732"]],[27,29,["H5927"]],[29,30,["H3588"]],[30,34,["H5414","H5414","(H853)"]],[34,36,["H6430"]],[36,39,["H3027"]]]},{"k":8152,"v":[[0,2,["H1732"]],[2,3,["H935"]],[3,5,["H1188"]],[5,7,["H1732"]],[7,8,["H5221"]],[8,10,["H8033"]],[10,12,["H559"]],[12,14,["H3068"]],[14,18,["H6555","(H853)"]],[18,20,["H341"]],[20,21,["H6440"]],[21,25,["H6556"]],[25,27,["H4325"]],[27,28,["H5921","H3651"]],[28,30,["H7121"]],[30,32,["H8034"]],[32,34,["H1931"]],[34,35,["H4725"]],[35,36,["H1188"]]]},{"k":8153,"v":[[0,2,["H8033"]],[2,4,["H5800","(H853)"]],[4,6,["H6091"]],[6,8,["H1732"]],[8,11,["H376"]],[11,12,["H5375"]],[12,13,[]]]},{"k":8154,"v":[[0,3,["H6430"]],[3,5,["H5927"]],[5,6,["H5750"]],[6,7,["H3254"]],[7,10,["H5203"]],[10,13,["H6010"]],[13,15,["H7497"]]]},{"k":8155,"v":[[0,3,["H1732"]],[3,4,["H7592"]],[4,7,["H3068"]],[7,9,["H559"]],[9,12,["H3808"]],[12,14,["H5927"]],[14,18,["H5437","H413"]],[18,19,["H310"]],[19,22,["H935"]],[22,26,["H4480","H4136"]],[26,29,["H1057"]]]},{"k":8156,"v":[[0,4,["H1961"]],[4,7,["H8085","(H853)"]],[7,9,["H6963"]],[9,12,["H6807"]],[12,15,["H7218"]],[15,19,["H1057"]],[19,21,["H227"]],[21,24,["H2782"]],[24,26,["H3588"]],[26,27,["H227"]],[27,30,["H3068"]],[30,32,["H3318"]],[32,33,["H6440"]],[33,36,["H5221"]],[36,38,["H4264"]],[38,41,["H6430"]]]},{"k":8157,"v":[[0,2,["H1732"]],[2,3,["H6213"]],[3,4,["H3651"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H6680"]],[9,12,["H5221","(H853)"]],[12,14,["H6430"]],[14,16,["H4480","H1387"]],[16,19,["H935"]],[19,21,["H1507"]]]},{"k":8158,"v":[[0,1,["H5750"]],[1,2,["H1732"]],[2,4,["H622","(H853)"]],[4,5,["H3605"]],[5,7,["H977"]],[7,10,["H3478"]],[10,11,["H7970"]],[11,12,["H505"]]]},{"k":8159,"v":[[0,2,["H1732"]],[2,3,["H6965"]],[3,5,["H1980"]],[5,7,["H3605"]],[7,9,["H5971"]],[9,10,["H834"]],[10,12,["H854"]],[12,15,["H4480","H1184"]],[15,17,["H3063"]],[17,20,["H5927"]],[20,22,["H4480","H8033","(H853)"]],[22,24,["H727"]],[24,26,["H430"]],[26,27,["H834"]],[27,28,["H8034"]],[28,30,["H7121"]],[30,33,["H8034"]],[33,36,["H3068"]],[36,38,["H6635"]],[38,40,["H3427","H5921"]],[40,43,["H3742"]]]},{"k":8160,"v":[[0,3,["H7392","(H853)"]],[3,5,["H727"]],[5,7,["H430"]],[7,8,["H413"]],[8,10,["H2319"]],[10,11,["H5699"]],[11,13,["H5375"]],[13,18,["H4480","H1004"]],[18,20,["H41"]],[20,21,["H834"]],[21,24,["H1390"]],[24,26,["H5798"]],[26,28,["H283"]],[28,30,["H1121"]],[30,32,["H41"]],[32,33,["H5090","(H853)"]],[33,35,["H2319"]],[35,36,["H5699"]]]},{"k":8161,"v":[[0,3,["H5375"]],[3,8,["H4480","H1004"]],[8,10,["H41"]],[10,11,["H834"]],[11,14,["H1390"]],[14,15,["H5973"]],[15,17,["H727"]],[17,19,["H430"]],[19,21,["H283"]],[21,22,["H1980"]],[22,23,["H6440"]],[23,25,["H727"]]]},{"k":8162,"v":[[0,2,["H1732"]],[2,4,["H3605"]],[4,6,["H1004"]],[6,8,["H3478"]],[8,9,["H7832"]],[9,10,["H6440"]],[10,12,["H3068"]],[12,14,["H3605"]],[14,20,["H1265"]],[20,21,["H6086"]],[21,24,["H3658"]],[24,27,["H5035"]],[27,30,["H8596"]],[30,33,["H4517"]],[33,36,["H6767"]]]},{"k":8163,"v":[[0,4,["H935"]],[4,5,["H5704"]],[5,6,["H5225"]],[6,7,["H1637"]],[7,8,["H5798"]],[8,10,["H7971"]],[10,13,["H413"]],[13,15,["H727"]],[15,17,["H430"]],[17,20,["H270"]],[20,23,["H3588"]],[23,25,["H1241"]],[25,26,["H8058"]],[26,27,[]]]},{"k":8164,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,10,["H5798"]],[10,12,["H430"]],[12,13,["H5221"]],[13,15,["H8033"]],[15,16,["H5921"]],[16,18,["H7944"]],[18,20,["H8033"]],[20,22,["H4191"]],[22,23,["H5973"]],[23,25,["H727"]],[25,27,["H430"]]]},{"k":8165,"v":[[0,2,["H1732"]],[2,4,["H2734"]],[4,5,["H5921","H834"]],[5,7,["H3068"]],[7,9,["H6555"]],[9,11,["H6556"]],[11,13,["H5798"]],[13,18,["H7121"]],[18,20,["H1931"]],[20,21,["H4725"]],[21,22,["H6560"]],[22,23,["H5704"]],[23,24,["H2088"]],[24,25,["H3117"]]]},{"k":8166,"v":[[0,2,["H1732"]],[2,4,["H3372"]],[4,5,["(H853)"]],[5,7,["H3068"]],[7,8,["H1931"]],[8,9,["H3117"]],[9,11,["H559"]],[11,12,["H349"]],[12,15,["H727"]],[15,18,["H3068"]],[18,19,["H935"]],[19,20,["H413"]],[20,21,[]]]},{"k":8167,"v":[[0,2,["H1732"]],[2,3,["H14"]],[3,4,["H3808"]],[4,5,["H5493","(H853)"]],[5,7,["H727"]],[7,10,["H3068"]],[10,11,["H413"]],[11,13,["H5921"]],[13,15,["H5892"]],[15,17,["H1732"]],[17,19,["H1732"]],[19,22,["H5186"]],[22,25,["H1004"]],[25,27,["H5654"]],[27,29,["H1663"]]]},{"k":8168,"v":[[0,3,["H727"]],[3,6,["H3068"]],[6,7,["H3427"]],[7,10,["H1004"]],[10,12,["H5654"]],[12,14,["H1663"]],[14,15,["H7969"]],[15,16,["H2320"]],[16,19,["H3068"]],[19,20,["H1288","(H853)"]],[20,21,["H5654"]],[21,23,["H3605"]],[23,25,["H1004"]]]},{"k":8169,"v":[[0,4,["H5046"]],[4,5,["H4428"]],[5,6,["H1732"]],[6,7,["H559"]],[7,9,["H3068"]],[9,11,["H1288","(H853)"]],[11,13,["H1004"]],[13,15,["H5654"]],[15,17,["H3605"]],[17,18,["H834"]],[18,22,["H5668"]],[22,25,["H727"]],[25,27,["H430"]],[27,29,["H1732"]],[29,30,["H1980"]],[30,33,["H5927","(H853)"]],[33,35,["H727"]],[35,37,["H430"]],[37,40,["H4480","H1004"]],[40,42,["H5654"]],[42,45,["H5892"]],[45,47,["H1732"]],[47,49,["H8057"]]]},{"k":8170,"v":[[0,3,["H1961"]],[3,6,["H3588"]],[6,9,["H5375"]],[9,11,["H727"]],[11,14,["H3068"]],[14,16,["H6805"]],[16,17,["H8337"]],[17,18,["H6806"]],[18,20,["H2076"]],[20,21,["H7794"]],[21,23,["H4806"]]]},{"k":8171,"v":[[0,2,["H1732"]],[2,3,["H3769"]],[3,4,["H6440"]],[4,6,["H3068"]],[6,8,["H3605"]],[8,10,["H5797"]],[10,12,["H1732"]],[12,14,["H2296"]],[14,17,["H906"]],[17,18,["H646"]]]},{"k":8172,"v":[[0,2,["H1732"]],[2,4,["H3605"]],[4,6,["H1004"]],[6,8,["H3478"]],[8,10,["H5927","(H853)"]],[10,12,["H727"]],[12,15,["H3068"]],[15,17,["H8643"]],[17,21,["H6963"]],[21,24,["H7782"]]]},{"k":8173,"v":[[0,2,["H1961"]],[2,4,["H727"]],[4,7,["H3068"]],[7,8,["H935"]],[8,11,["H5892"]],[11,13,["H1732"]],[13,14,["H4324"]],[14,15,["H7586"]],[15,16,["H1323"]],[16,17,["H8259"]],[17,18,["H1157"]],[18,20,["H2474"]],[20,22,["H7200","(H853)"]],[22,23,["H4428"]],[23,24,["H1732"]],[24,25,["H6339"]],[25,27,["H3769"]],[27,28,["H6440"]],[28,30,["H3068"]],[30,33,["H959"]],[33,37,["H3820"]]]},{"k":8174,"v":[[0,4,["H935","(H853)"]],[4,6,["H727"]],[6,9,["H3068"]],[9,11,["H3322"]],[11,15,["H4725"]],[15,18,["H8432"]],[18,21,["H168"]],[21,22,["H834"]],[22,23,["H1732"]],[23,25,["H5186"]],[25,29,["H1732"]],[29,30,["H5927"]],[30,32,["H5930"]],[32,35,["H8002"]],[35,36,["H6440"]],[36,38,["H3068"]]]},{"k":8175,"v":[[0,5,["H1732"]],[5,9,["H3615"]],[9,11,["H4480","H5927"]],[11,13,["H5930"]],[13,16,["H8002"]],[16,18,["H1288","(H853)"]],[18,20,["H5971"]],[20,23,["H8034"]],[23,26,["H3068"]],[26,28,["H6635"]]]},{"k":8176,"v":[[0,3,["H2505"]],[3,5,["H3605"]],[5,7,["H5971"]],[7,11,["H3605"]],[11,12,["H1995"]],[12,14,["H3478"]],[14,17,["H5704"]],[17,19,["H802"]],[19,21,["H4480","H376"]],[21,24,["H376"]],[24,25,["H259"]],[25,26,["H2471"]],[26,28,["H3899"]],[28,30,["H259"]],[30,32,["H829"]],[32,36,["H259"]],[36,37,["H809"]],[37,41,["H3605"]],[41,43,["H5971"]],[43,44,["H1980"]],[44,46,["H376"]],[46,49,["H1004"]]]},{"k":8177,"v":[[0,2,["H1732"]],[2,3,["H7725"]],[3,5,["H1288","(H853)"]],[5,7,["H1004"]],[7,9,["H4324"]],[9,11,["H1323"]],[11,13,["H7586"]],[13,15,["H3318"]],[15,17,["H7125"]],[17,18,["H1732"]],[18,20,["H559"]],[20,21,["H4100"]],[21,22,["H3513"]],[22,25,["H4428"]],[25,27,["H3478"]],[27,29,["H3117"]],[29,30,["H834"]],[30,32,["H1540"]],[32,34,["H3117"]],[34,37,["H5869"]],[37,40,["H519"]],[40,43,["H5650"]],[43,45,["H259"]],[45,49,["H7386"]],[49,52,["H1540","H1540"]]]},{"k":8178,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H4324"]],[5,8,["H6440"]],[8,10,["H3068"]],[10,11,["H834"]],[11,12,["H977"]],[12,16,["H4480","H1"]],[16,19,["H4480","H3605"]],[19,21,["H1004"]],[21,23,["H6680"]],[23,25,["H5057"]],[25,26,["H5921"]],[26,28,["H5971"]],[28,31,["H3068"]],[31,32,["H5921"]],[32,33,["H3478"]],[33,37,["H7832"]],[37,38,["H6440"]],[38,40,["H3068"]]]},{"k":8179,"v":[[0,4,["H5750"]],[4,7,["H7043"]],[7,9,["H4480","H2063"]],[9,12,["H1961"]],[12,13,["H8217"]],[13,17,["H5869"]],[17,19,["H5973"]],[19,21,["H519"]],[21,22,["H834"]],[22,25,["H559"]],[25,34,["H3513"]]]},{"k":8180,"v":[[0,2,["H4324"]],[2,4,["H1323"]],[4,6,["H7586"]],[6,7,["H1961"]],[7,8,["H3808"]],[8,9,["H3206"]],[9,10,["H5704"]],[10,12,["H3117"]],[12,15,["H4194"]]]},{"k":8181,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,8,["H4428"]],[8,9,["H3427"]],[9,12,["H1004"]],[12,15,["H3068"]],[15,19,["H5117"]],[19,21,["H4480","H5439"]],[21,23,["H4480","H3605"]],[23,25,["H341"]]]},{"k":8182,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H5416"]],[6,8,["H5030"]],[8,9,["H7200"]],[9,10,["H4994"]],[10,11,["H595"]],[11,12,["H3427"]],[12,15,["H1004"]],[15,17,["H730"]],[17,20,["H727"]],[20,22,["H430"]],[22,23,["H3427"]],[23,24,["H8432"]],[24,25,["H3407"]]]},{"k":8183,"v":[[0,2,["H5416"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,7,["H1980"]],[7,8,["H6213"]],[8,9,["H3605"]],[9,10,["H834"]],[10,14,["H3824"]],[14,15,["H3588"]],[15,17,["H3068"]],[17,19,["H5973"]],[19,20,[]]]},{"k":8184,"v":[[0,5,["H1961"]],[5,6,["H1931"]],[6,7,["H3915"]],[7,10,["H1697"]],[10,13,["H3068"]],[13,14,["H1961"]],[14,15,["H413"]],[15,16,["H5416"]],[16,17,["H559"]]]},{"k":8185,"v":[[0,1,["H1980"]],[1,3,["H559","H413"]],[3,5,["H5650"]],[5,6,["H1732"]],[6,7,["H3541"]],[7,8,["H559"]],[8,10,["H3068"]],[10,12,["H859"]],[12,13,["H1129"]],[13,16,["H1004"]],[16,20,["H3427"]],[20,21,[]]]},{"k":8186,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H3427"]],[5,8,["H1004"]],[8,11,["H4480","H3117"]],[11,15,["H5927","(H853)"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,22,["H4480","H4714"]],[22,24,["H5704"]],[24,25,["H2088"]],[25,26,["H3117"]],[26,28,["H1961"]],[28,29,["H1980"]],[29,32,["H168"]],[32,36,["H4908"]]]},{"k":8187,"v":[[0,2,["H3605"]],[2,5,["H834"]],[5,8,["H1980"]],[8,10,["H3605"]],[10,12,["H1121"]],[12,14,["H3478"]],[14,15,["H1696"]],[15,18,["H1697"]],[18,19,["H854"]],[19,20,["H259"]],[20,23,["H7626"]],[23,25,["H3478"]],[25,26,["H834"]],[26,28,["H6680"]],[28,30,["H7462","(H853)"]],[30,32,["H5971","(H853)"]],[32,33,["H3478"]],[33,34,["H559"]],[34,35,["H4100"]],[35,36,["H1129"]],[36,38,["H3808"]],[38,41,["H1004"]],[41,43,["H730"]]]},{"k":8188,"v":[[0,1,["H6258"]],[1,2,["H3541"]],[2,6,["H559"]],[6,9,["H5650"]],[9,10,["H1732"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H3068"]],[14,16,["H6635"]],[16,17,["H589"]],[17,18,["H3947"]],[18,20,["H4480"]],[20,22,["H5116"]],[22,24,["H4480","H310"]],[24,26,["H6629"]],[26,28,["H1961"]],[28,29,["H5057"]],[29,30,["H5921"]],[30,32,["H5971"]],[32,33,["H5921"]],[33,34,["H3478"]]]},{"k":8189,"v":[[0,3,["H1961"]],[3,4,["H5973"]],[4,6,["H3605","H834"]],[6,8,["H1980"]],[8,12,["H3772","(H853)"]],[12,13,["H3605"]],[13,15,["H341"]],[15,19,["H4480","H6440"]],[19,22,["H6213"]],[22,25,["H1419"]],[25,26,["H8034"]],[26,30,["H8034"]],[30,33,["H1419"]],[33,35,["H834"]],[35,39,["H776"]]]},{"k":8190,"v":[[0,4,["H7760"]],[4,6,["H4725"]],[6,9,["H5971"]],[9,10,["H3478"]],[10,13,["H5193"]],[13,18,["H7931"]],[18,21,["H8478"]],[21,26,["H7264"]],[26,27,["H3808"]],[27,28,["H5750"]],[28,29,["H3808"]],[29,32,["H1121"]],[32,34,["H5766"]],[34,35,["H6031"]],[35,38,["H3254"]],[38,39,["H834"]],[39,40,["H7223"]]]},{"k":8191,"v":[[0,3,["H4480"]],[3,5,["H3117"]],[5,6,["H834"]],[6,8,["H6680"]],[8,9,["H8199"]],[9,12,["H5921"]],[12,14,["H5971"]],[14,15,["H3478"]],[15,21,["H5117"]],[21,23,["H4480","H3605"]],[23,25,["H341"]],[25,28,["H3068"]],[28,29,["H5046"]],[29,31,["H3588"]],[31,34,["H6213"]],[34,37,["H1004"]]]},{"k":8192,"v":[[0,2,["H3588"]],[2,4,["H3117"]],[4,6,["H4390"]],[6,10,["H7901"]],[10,11,["H854"]],[11,13,["H1"]],[13,17,["H6965","(H853)"]],[17,19,["H2233"]],[19,20,["H310"]],[20,22,["H834"]],[22,24,["H3318"]],[24,28,["H4480","H4578"]],[28,32,["H3559","(H853)"]],[32,34,["H4467"]]]},{"k":8193,"v":[[0,1,["H1931"]],[1,3,["H1129"]],[3,5,["H1004"]],[5,8,["H8034"]],[8,12,["H3559","(H853)"]],[12,14,["H3678"]],[14,17,["H4467"]],[17,19,["H5704","H5769"]]]},{"k":8194,"v":[[0,1,["H589"]],[1,3,["H1961"]],[3,5,["H1"]],[5,7,["H1931"]],[7,9,["H1961"]],[9,11,["H1121"]],[11,12,["H834"]],[12,15,["H5753"]],[15,18,["H3198"]],[18,22,["H7626"]],[22,24,["H376"]],[24,28,["H5061"]],[28,31,["H1121"]],[31,33,["H120"]]]},{"k":8195,"v":[[0,3,["H2617"]],[3,5,["H3808"]],[5,7,["H5493"]],[7,8,["H4480"]],[8,10,["H834"]],[10,12,["H5493"]],[12,14,["H4480","H5973"]],[14,15,["H7586"]],[15,16,["H834"]],[16,19,["H5493"]],[19,20,["H4480","H6440"]],[20,21,[]]]},{"k":8196,"v":[[0,3,["H1004"]],[3,6,["H4467"]],[6,9,["H539"]],[9,11,["H5704","H5769"]],[11,12,["H6440"]],[12,15,["H3678"]],[15,17,["H1961"]],[17,18,["H3559"]],[18,20,["H5704","H5769"]]]},{"k":8197,"v":[[0,3,["H3605"]],[3,4,["H428"]],[4,5,["H1697"]],[5,9,["H3605"]],[9,10,["H2088"]],[10,11,["H2384"]],[11,12,["H3651"]],[12,14,["H5416"]],[14,15,["H1696"]],[15,16,["H413"]],[16,17,["H1732"]]]},{"k":8198,"v":[[0,2,["H935"]],[2,3,["H4428"]],[3,4,["H1732"]],[4,7,["H3427"]],[7,8,["H6440"]],[8,10,["H3069"]],[10,13,["H559"]],[13,14,["H4310"]],[14,16,["H595"]],[16,18,["H136"]],[18,19,["H3069"]],[19,21,["H4310"]],[21,24,["H1004"]],[24,25,["H3588"]],[25,28,["H935"]],[28,30,["H5704","H1988"]]]},{"k":8199,"v":[[0,2,["H2063"]],[2,4,["H5750"]],[4,6,["H6994"]],[6,10,["H5869"]],[10,12,["H136"]],[12,13,["H3069"]],[13,17,["H1696"]],[17,18,["H1571"]],[18,19,["H413"]],[19,21,["H5650"]],[21,22,["H1004"]],[22,28,["H4480","H7350"]],[28,31,["H2063"]],[31,33,["H8452"]],[33,35,["H120"]],[35,37,["H136"]],[37,38,["H3069"]]]},{"k":8200,"v":[[0,2,["H4100"]],[2,4,["H1732"]],[4,5,["H3254","H1696"]],[5,6,["H5750"]],[6,7,["H413"]],[7,10,["H859"]],[10,11,["H136"]],[11,12,["H3069"]],[12,13,["H3045","(H853)"]],[13,15,["H5650"]]]},{"k":8201,"v":[[0,4,["H5668","H1697"]],[4,10,["H3820"]],[10,13,["H6213","(H853)"]],[13,14,["H3605"]],[14,15,["H2063"]],[15,17,["H1420"]],[17,19,["(H853)"]],[19,21,["H5650"]],[21,22,["H3045"]],[22,23,[]]]},{"k":8202,"v":[[0,1,["H5921","H3651"]],[1,4,["H1431"]],[4,6,["H3068"]],[6,7,["H136"]],[7,8,["H3588"]],[8,11,["H369"]],[11,13,["H3644"]],[13,14,["H369"]],[14,18,["H430"]],[18,19,["H2108"]],[19,23,["H3605"]],[23,24,["H834"]],[24,27,["H8085"]],[27,30,["H241"]]]},{"k":8203,"v":[[0,2,["H4310"]],[2,3,["H259"]],[3,4,["H1471"]],[4,7,["H776"]],[7,11,["H5971"]],[11,14,["H3478"]],[14,15,["H834"]],[15,16,["H430"]],[16,17,["H1980"]],[17,19,["H6299"]],[19,22,["H5971"]],[22,27,["H7760"]],[27,30,["H8034"]],[30,33,["H6213"]],[33,36,["H1420"]],[36,39,["H3372"]],[39,42,["H776"]],[42,43,["H4480","H6440"]],[43,45,["H5971"]],[45,46,["H834"]],[46,48,["H6299"]],[48,52,["H4480","H4714"]],[52,55,["H1471"]],[55,58,["H430"]]]},{"k":8204,"v":[[0,4,["H3559"]],[4,6,["(H853)"]],[6,8,["H5971"]],[8,9,["H3478"]],[9,13,["H5971"]],[13,17,["H5704","H5769"]],[17,19,["H859"]],[19,20,["H3068"]],[20,22,["H1961"]],[22,24,["H430"]]]},{"k":8205,"v":[[0,2,["H6258"]],[2,4,["H3068"]],[4,5,["H430"]],[5,7,["H1697"]],[7,8,["H834"]],[8,11,["H1696"]],[11,12,["H5921"]],[12,14,["H5650"]],[14,16,["H5921"]],[16,18,["H1004"]],[18,19,["H6965"]],[19,22,["H5704","H5769"]],[22,24,["H6213"]],[24,25,["H834"]],[25,28,["H1696"]]]},{"k":8206,"v":[[0,4,["H8034"]],[4,6,["H1431"]],[6,8,["H5704","H5769"]],[8,9,["H559"]],[9,11,["H3068"]],[11,13,["H6635"]],[13,16,["H430"]],[16,17,["H5921"]],[17,18,["H3478"]],[18,22,["H1004"]],[22,25,["H5650"]],[25,26,["H1732"]],[26,27,["H1961"]],[27,28,["H3559"]],[28,29,["H6440"]],[29,30,[]]]},{"k":8207,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H430"]],[7,9,["H3478"]],[9,11,["H1540","H241"]],[11,14,["H5650"]],[14,15,["H559"]],[15,18,["H1129"]],[18,21,["H1004"]],[21,22,["H5921","H3651"]],[22,25,["H5650"]],[25,26,["H4672"]],[26,27,["(H853)"]],[27,29,["H3820"]],[29,31,["H6419","(H853)"]],[31,32,["H2063"]],[32,33,["H8605"]],[33,34,["H413"]],[34,35,[]]]},{"k":8208,"v":[[0,2,["H6258"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H859"]],[6,8,["H1931"]],[8,9,["H430"]],[9,12,["H1697"]],[12,13,["H1961"]],[13,14,["H571"]],[14,18,["H1696","(H853)"]],[18,19,["H2063"]],[19,20,["H2896"]],[20,21,["H413"]],[21,23,["H5650"]]]},{"k":8209,"v":[[0,2,["H6258"]],[2,5,["H2974"]],[5,8,["H1288","(H853)"]],[8,10,["H1004"]],[10,13,["H5650"]],[13,17,["H1961"]],[17,19,["H5769"]],[19,20,["H6440"]],[20,22,["H3588"]],[22,23,["H859"]],[23,25,["H136"]],[25,26,["H3069"]],[26,28,["H1696"]],[28,33,["H4480","H1293"]],[33,36,["H1004"]],[36,39,["H5650"]],[39,41,["H1288"]],[41,43,["H5769"]]]},{"k":8210,"v":[[0,2,["H310"]],[2,3,["H3651"]],[3,7,["H1961"]],[7,9,["H1732"]],[9,10,["H5221","(H853)"]],[10,12,["H6430"]],[12,14,["H3665"]],[14,17,["H1732"]],[17,18,["H3947","(H853)"]],[18,19,["H4965"]],[19,23,["H4480","H3027"]],[23,26,["H6430"]]]},{"k":8211,"v":[[0,3,["H5221","(H853)"]],[3,4,["H4124"]],[4,6,["H4058"]],[6,10,["H2256"]],[10,13,["H7901","(H853)"]],[13,16,["H776"]],[16,19,["H8147"]],[19,20,["H2256"]],[20,21,["H4058"]],[21,26,["H4191"]],[26,30,["H4393"]],[30,31,["H2256"]],[31,34,["H2421"]],[34,38,["H4124"]],[38,39,["H1961"]],[39,40,["H1732"]],[40,41,["H5650"]],[41,43,["H5375"]],[43,44,["H4503"]]]},{"k":8212,"v":[[0,1,["H1732"]],[1,2,["H5221"]],[2,3,["(H853)"]],[3,4,["H1909"]],[4,6,["H1121"]],[6,8,["H7340"]],[8,9,["H4428"]],[9,11,["H6678"]],[11,14,["H1980"]],[14,16,["H7725"]],[16,18,["H3027"]],[18,21,["H5104"]],[21,22,["H6578"]]]},{"k":8213,"v":[[0,2,["H1732"]],[2,3,["H3920"]],[3,4,["H4480"]],[4,7,["H505"]],[7,10,["H7651"]],[10,11,["H3967"]],[11,12,["H6571"]],[12,14,["H6242"]],[14,15,["H505"]],[15,16,["H376","H7273"]],[16,18,["H1732"]],[18,19,["H6131","(H853)"]],[19,20,["H3605"]],[20,22,["H7393"]],[22,25,["H3498"]],[25,26,["H4480"]],[26,30,["H3967"]],[30,31,["H7393"]]]},{"k":8214,"v":[[0,4,["H758"]],[4,6,["H1834"]],[6,7,["H935"]],[7,9,["H5826"]],[9,10,["H1909"]],[10,11,["H4428"]],[11,13,["H6678"]],[13,14,["H1732"]],[14,15,["H5221"]],[15,18,["H758"]],[18,19,["H8147"]],[19,21,["H6242"]],[21,22,["H505"]],[22,23,["H376"]]]},{"k":8215,"v":[[0,2,["H1732"]],[2,3,["H7760"]],[3,4,["H5333"]],[4,6,["H758"]],[6,8,["H1834"]],[8,11,["H758"]],[11,12,["H1961"]],[12,13,["H5650"]],[13,15,["H1732"]],[15,17,["H5375"]],[17,18,["H4503"]],[18,21,["H3068"]],[21,22,["H3467","(H853)"]],[22,23,["H1732"]],[23,24,["H3605","H834"]],[24,26,["H1980"]]]},{"k":8216,"v":[[0,2,["H1732"]],[2,3,["H3947","(H853)"]],[3,5,["H7982"]],[5,7,["H2091"]],[7,8,["H834"]],[8,9,["H1961"]],[9,10,["H413"]],[10,12,["H5650"]],[12,14,["H1909"]],[14,16,["H935"]],[16,19,["H3389"]]]},{"k":8217,"v":[[0,3,["H4480","H984"]],[3,6,["H4480","H1268"]],[6,7,["H5892"]],[7,9,["H1909"]],[9,10,["H4428"]],[10,11,["H1732"]],[11,12,["H3947"]],[12,13,["H3966"]],[13,14,["H7235"]],[14,15,["H5178"]]]},{"k":8218,"v":[[0,2,["H8583"]],[2,3,["H4428"]],[3,5,["H2574"]],[5,6,["H8085"]],[6,7,["H3588"]],[7,8,["H1732"]],[8,10,["H5221","(H853)"]],[10,11,["H3605"]],[11,13,["H2428"]],[13,15,["H1909"]]]},{"k":8219,"v":[[0,2,["H8583"]],[2,3,["H7971","(H853)"]],[3,4,["H3141"]],[4,6,["H1121"]],[6,7,["H413"]],[7,8,["H4428"]],[8,9,["H1732"]],[9,11,["H7592","H7965"]],[11,15,["H1288"]],[15,17,["H5921","H834"]],[17,20,["H3898"]],[20,22,["H1909"]],[22,24,["H5221"]],[24,26,["H3588"]],[26,27,["H1909"]],[27,28,["H1961"]],[28,29,["H4421"]],[29,31,["H8583"]],[31,34,["H1961"]],[34,35,["H3027"]],[35,37,["H3627"]],[37,39,["H3701"]],[39,41,["H3627"]],[41,43,["H2091"]],[43,45,["H3627"]],[45,47,["H5178"]]]},{"k":8220,"v":[[0,2,["H1571"]],[2,3,["H4428"]],[3,4,["H1732"]],[4,6,["H6942"]],[6,9,["H3068"]],[9,10,["H5973"]],[10,12,["H3701"]],[12,14,["H2091"]],[14,15,["H834"]],[15,18,["H6942"]],[18,20,["H4480","H3605"]],[20,21,["H1471"]],[21,22,["H834"]],[22,24,["H3533"]]]},{"k":8221,"v":[[0,2,["H4480","H758"]],[2,5,["H4480","H4124"]],[5,9,["H4480","H1121"]],[9,11,["H5983"]],[11,15,["H4480","H6430"]],[15,18,["H4480","H6002"]],[18,22,["H4480","H7998"]],[22,24,["H1909"]],[24,25,["H1121"]],[25,27,["H7340"]],[27,28,["H4428"]],[28,30,["H6678"]]]},{"k":8222,"v":[[0,2,["H1732"]],[2,3,["H6213"]],[3,6,["H8034"]],[6,9,["H7725"]],[9,11,["H4480","H5221"]],[11,12,["(H853)"]],[12,14,["H758"]],[14,17,["H1516"]],[17,19,["H4417"]],[19,21,["H8083","H6240"]],[21,22,["H505"]],[22,23,[]]]},{"k":8223,"v":[[0,3,["H7760"]],[3,4,["H5333"]],[4,6,["H123"]],[6,8,["H3605"]],[8,9,["H123"]],[9,10,["H7760"]],[10,12,["H5333"]],[12,14,["H3605"]],[14,17,["H123"]],[17,18,["H1961"]],[18,19,["H1732"]],[19,20,["H5650"]],[20,23,["H3068"]],[23,24,["H3467","(H853)"]],[24,25,["H1732"]],[25,26,["H3605","H834"]],[26,28,["H1980"]]]},{"k":8224,"v":[[0,2,["H1732"]],[2,3,["H4427"]],[3,4,["H5921"]],[4,5,["H3605"]],[5,6,["H3478"]],[6,8,["H1732"]],[8,9,["H6213"]],[9,10,["H4941"]],[10,12,["H6666"]],[12,14,["H3605"]],[14,16,["H5971"]]]},{"k":8225,"v":[[0,2,["H3097"]],[2,4,["H1121"]],[4,6,["H6870"]],[6,8,["H5921"]],[8,10,["H6635"]],[10,12,["H3092"]],[12,14,["H1121"]],[14,16,["H286"]],[16,18,["H2142"]]]},{"k":8226,"v":[[0,2,["H6659"]],[2,4,["H1121"]],[4,6,["H285"]],[6,8,["H288"]],[8,10,["H1121"]],[10,12,["H54"]],[12,15,["H3548"]],[15,17,["H8304"]],[17,20,["H5608"]]]},{"k":8227,"v":[[0,2,["H1141"]],[2,4,["H1121"]],[4,6,["H3077"]],[6,11,["H3774"]],[11,14,["H6432"]],[14,16,["H1732"]],[16,17,["H1121"]],[17,18,["H1961"]],[18,20,["H3548"]]]},{"k":8228,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H3426"]],[5,6,["H5750"]],[6,7,["H834"]],[7,10,["H3498"]],[10,13,["H1004"]],[13,15,["H7586"]],[15,19,["H6213","H5973"]],[19,21,["H2617"]],[21,23,["H3129"]],[23,24,["H5668"]]]},{"k":8229,"v":[[0,6,["H1004"]],[6,8,["H7586"]],[8,10,["H5650"]],[10,12,["H8034"]],[12,14,["H6717"]],[14,19,["H7121"]],[19,21,["H413"]],[21,22,["H1732"]],[22,24,["H4428"]],[24,25,["H559"]],[25,26,["H413"]],[26,29,["H859"]],[29,30,["H6717"]],[30,33,["H559"]],[33,35,["H5650"]],[35,37,[]]]},{"k":8230,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H657"]],[7,8,["H5750"]],[8,9,["H376"]],[9,12,["H1004"]],[12,14,["H7586"]],[14,18,["H6213"]],[18,20,["H2617"]],[20,22,["H430"]],[22,23,["H5973"]],[23,26,["H6717"]],[26,27,["H559"]],[27,28,["H413"]],[28,30,["H4428"]],[30,31,["H3083"]],[31,33,["H5750"]],[33,35,["H1121"]],[35,38,["H5223"]],[38,41,["H7272"]]]},{"k":8231,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H375"]],[7,9,["H1931"]],[9,11,["H6717"]],[11,12,["H559"]],[12,13,["H413"]],[13,15,["H4428"]],[15,16,["H2009"]],[16,17,["H1931"]],[17,21,["H1004"]],[21,23,["H4353"]],[23,25,["H1121"]],[25,27,["H5988"]],[27,29,["H3810"]]]},{"k":8232,"v":[[0,2,["H4428"]],[2,3,["H1732"]],[3,4,["H7971"]],[4,6,["H3947"]],[6,11,["H4480","H1004"]],[11,13,["H4353"]],[13,15,["H1121"]],[15,17,["H5988"]],[17,19,["H4480","H3810"]]]},{"k":8233,"v":[[0,3,["H4648"]],[3,5,["H1121"]],[5,7,["H3083"]],[7,9,["H1121"]],[9,11,["H7586"]],[11,13,["H935"]],[13,14,["H413"]],[14,15,["H1732"]],[15,17,["H5307"]],[17,18,["H5921"]],[18,20,["H6440"]],[20,23,["H7812"]],[23,25,["H1732"]],[25,26,["H559"]],[26,27,["H4648"]],[27,30,["H559"]],[30,31,["H2009"]],[31,33,["H5650"]]]},{"k":8234,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,6,["H3372"]],[6,7,["H408"]],[7,8,["H3588"]],[8,12,["H6213","H6213","H5973"]],[12,14,["H2617"]],[14,16,["H3083"]],[16,18,["H1"]],[18,19,["H5668"]],[19,22,["H7725"]],[22,23,["(H853)"]],[23,24,["H3605"]],[24,26,["H7704"]],[26,28,["H7586"]],[28,30,["H1"]],[30,32,["H859"]],[32,34,["H398"]],[34,35,["H3899"]],[35,36,["H5921"]],[36,38,["H7979"]],[38,39,["H8548"]]]},{"k":8235,"v":[[0,4,["H7812"]],[4,6,["H559"]],[6,7,["H4100"]],[7,10,["H5650"]],[10,11,["H3588"]],[11,14,["H6437"]],[14,15,["H413"]],[15,16,["H834"]],[16,18,["H4191"]],[18,19,["H3611"]],[19,21,["H3644"]],[21,22,[]]]},{"k":8236,"v":[[0,3,["H4428"]],[3,4,["H7121"]],[4,5,["H413"]],[5,6,["H6717"]],[6,7,["H7586"]],[7,8,["H5288"]],[8,10,["H559"]],[10,11,["H413"]],[11,15,["H5414"]],[15,18,["H113"]],[18,19,["H1121"]],[19,20,["H3605"]],[20,21,["H834"]],[21,22,["H1961"]],[22,24,["H7586"]],[24,27,["H3605"]],[27,29,["H1004"]]]},{"k":8237,"v":[[0,1,["H859"]],[1,5,["H1121"]],[5,8,["H5650"]],[8,10,["H5647","(H853)"]],[10,12,["H127"]],[12,18,["H935"]],[18,24,["H113"]],[24,25,["H1121"]],[25,27,["H1961"]],[27,28,["H3899"]],[28,30,["H398"]],[30,32,["H4648"]],[32,34,["H113"]],[34,35,["H1121"]],[35,37,["H398"]],[37,38,["H3899"]],[38,39,["H8548"]],[39,40,["H5921"]],[40,42,["H7979"]],[42,44,["H6717"]],[44,46,["H2568","H6240"]],[46,47,["H1121"]],[47,49,["H6242"]],[49,50,["H5650"]]]},{"k":8238,"v":[[0,2,["H559"]],[2,3,["H6717"]],[3,4,["H413"]],[4,6,["H4428"]],[6,9,["H3605"]],[9,10,["H834"]],[10,12,["H113"]],[12,14,["H4428"]],[14,16,["H6680","(H853)"]],[16,18,["H5650"]],[18,19,["H3651"]],[19,22,["H5650"]],[22,23,["H6213"]],[23,26,["H4648"]],[26,32,["H398"]],[32,33,["H5921"]],[33,35,["H7979"]],[35,37,["H259"]],[37,41,["H4480","H1121","H4428"]]]},{"k":8239,"v":[[0,2,["H4648"]],[2,5,["H6996"]],[5,6,["H1121"]],[6,8,["H8034"]],[8,10,["H4316"]],[10,12,["H3605"]],[12,14,["H4186"]],[14,17,["H1004"]],[17,19,["H6717"]],[19,21,["H5650"]],[21,23,["H4648"]]]},{"k":8240,"v":[[0,2,["H4648"]],[2,3,["H3427"]],[3,5,["H3389"]],[5,6,["H3588"]],[6,7,["H1931"]],[7,9,["H398"]],[9,10,["H8548"]],[10,11,["H5921"]],[11,13,["H4428"]],[13,14,["H7979"]],[14,17,["H6455"]],[17,19,["H8147"]],[19,21,["H7272"]]]},{"k":8241,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H3651"]],[7,10,["H4428"]],[10,13,["H1121"]],[13,15,["H5983"]],[15,16,["H4191"]],[16,18,["H2586"]],[18,20,["H1121"]],[20,21,["H4427"]],[21,24,["H8478"]]]},{"k":8242,"v":[[0,2,["H559"]],[2,3,["H1732"]],[3,6,["H6213"]],[6,7,["H2617"]],[7,8,["H5973"]],[8,9,["H2586"]],[9,11,["H1121"]],[11,13,["H5176"]],[13,14,["H834"]],[14,16,["H1"]],[16,17,["H6213"]],[17,18,["H2617"]],[18,19,["H5973"]],[19,22,["H1732"]],[22,23,["H7971"]],[23,25,["H5162"]],[25,29,["H3027"]],[29,32,["H5650"]],[32,33,["H413"]],[33,35,["H1"]],[35,37,["H1732"]],[37,38,["H5650"]],[38,39,["H935"]],[39,42,["H776"]],[42,45,["H1121"]],[45,47,["H5983"]]]},{"k":8243,"v":[[0,3,["H8269"]],[3,6,["H1121"]],[6,8,["H5983"]],[8,9,["H559"]],[9,10,["H413"]],[10,11,["H2586"]],[11,13,["H113"]],[13,14,["H5869"]],[14,17,["H1732"]],[17,19,["H3513","(H853)"]],[19,21,["H1"]],[21,22,["H3588"]],[22,25,["H7971"]],[25,26,["H5162"]],[26,30,["H3808"]],[30,31,["H1732"]],[31,33,["H7971","(H853)"]],[33,35,["H5650"]],[35,36,["H413"]],[36,38,["H5668"]],[38,39,["H2713","(H853)"]],[39,41,["H5892"]],[41,46,["H7270"]],[46,49,["H2015"]],[49,50,[]]]},{"k":8244,"v":[[0,2,["H2586"]],[2,3,["H3947"]],[3,4,["H1732","(H853)"]],[4,5,["H5650"]],[5,8,["H1548"]],[8,9,["(H853)"]],[9,11,["H2677"]],[11,14,["H2206"]],[14,17,["H3772","(H853)"]],[17,19,["H4063"]],[19,22,["H2677"]],[22,24,["H5704"]],[24,26,["H8357"]],[26,30,["H7971"]]]},{"k":8245,"v":[[0,3,["H5046"]],[3,6,["H1732"]],[6,8,["H7971"]],[8,10,["H7125"]],[10,12,["H3588"]],[12,14,["H376"]],[14,15,["H1961"]],[15,16,["H3966"]],[16,17,["H3637"]],[17,20,["H4428"]],[20,21,["H559"]],[21,22,["H3427"]],[22,24,["H3405"]],[24,25,["H5704"]],[25,27,["H2206"]],[27,29,["H6779"]],[29,32,["H7725"]]]},{"k":8246,"v":[[0,4,["H1121"]],[4,6,["H5983"]],[6,7,["H7200"]],[7,8,["H3588"]],[8,10,["H887"]],[10,12,["H1732"]],[12,14,["H1121"]],[14,16,["H5983"]],[16,17,["H7971"]],[17,19,["H7936","(H853)"]],[19,21,["H758"]],[21,23,["H1050"]],[23,26,["H758"]],[26,28,["H6678"]],[28,29,["H6242"]],[29,30,["H505"]],[30,31,["H7273"]],[31,34,["H4428"]],[34,35,["H4601"]],[35,37,["H505"]],[37,38,["H376"]],[38,41,["H382"]],[41,42,["H8147","H6240"]],[42,43,["H505"]],[43,44,["H376"]]]},{"k":8247,"v":[[0,3,["H1732"]],[3,4,["H8085"]],[4,8,["H7971","(H853)"]],[8,9,["H3097"]],[9,11,["H3605"]],[11,13,["H6635"]],[13,17,["H1368"]]]},{"k":8248,"v":[[0,3,["H1121"]],[3,5,["H5983"]],[5,7,["H3318"]],[7,11,["H4421"]],[11,13,["H6186"]],[13,16,["H6607"]],[16,20,["H8179"]],[20,23,["H758"]],[23,25,["H6678"]],[25,28,["H7340"]],[28,30,["H382"]],[30,32,["H4601"]],[32,35,["H905"]],[35,38,["H7704"]]]},{"k":8249,"v":[[0,2,["H3097"]],[2,3,["H7200"]],[3,4,["H3588"]],[4,6,["H6440"]],[6,9,["H4421"]],[9,10,["H1961"]],[10,11,["H413"]],[11,13,["H4480","H6440"]],[13,15,["H4480","H268"]],[15,17,["H977"]],[17,19,["H4480","H3605"]],[19,21,["H977"]],[21,24,["H3478"]],[24,29,["H6186"]],[29,30,["H7125"]],[30,32,["H758"]]]},{"k":8250,"v":[[0,3,["H3499"]],[3,6,["H5971"]],[6,8,["H5414"]],[8,11,["H3027"]],[11,13,["H52"]],[13,15,["H251"]],[15,22,["H6186"]],[22,23,["H7125"]],[23,25,["H1121"]],[25,27,["H5983"]]]},{"k":8251,"v":[[0,3,["H559"]],[3,4,["H518"]],[4,6,["H758"]],[6,9,["H2388"]],[9,10,["H4480"]],[10,14,["H1961"]],[14,15,["H3444"]],[15,18,["H518"]],[18,20,["H1121"]],[20,22,["H5983"]],[22,25,["H2388"]],[25,26,["H4480"]],[26,31,["H1980"]],[31,33,["H3467"]],[33,34,[]]]},{"k":8252,"v":[[0,4,["H2388"]],[4,10,["H2388"]],[10,11,["H1157"]],[11,13,["H5971"]],[13,15,["H1157"]],[15,17,["H5892"]],[17,20,["H430"]],[20,23,["H3068"]],[23,24,["H6213"]],[24,27,["H5869"]],[27,29,["H2896"]]]},{"k":8253,"v":[[0,2,["H3097"]],[2,4,["H5066"]],[4,7,["H5971"]],[7,8,["H834"]],[8,10,["H5973"]],[10,14,["H4421"]],[14,17,["H758"]],[17,20,["H5127"]],[20,21,["H4480","H6440"]],[21,22,[]]]},{"k":8254,"v":[[0,4,["H1121"]],[4,6,["H5983"]],[6,7,["H7200"]],[7,8,["H3588"]],[8,10,["H758"]],[10,12,["H5127"]],[12,14,["H5127"]],[14,17,["H4480","H6440"]],[17,18,["H52"]],[18,20,["H935"]],[20,23,["H5892"]],[23,25,["H3097"]],[25,26,["H7725"]],[26,27,["H4480","H5921"]],[27,29,["H1121"]],[29,31,["H5983"]],[31,33,["H935"]],[33,35,["H3389"]]]},{"k":8255,"v":[[0,4,["H758"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,9,["H5062"]],[9,10,["H6440"]],[10,11,["H3478"]],[11,14,["H622"]],[14,15,["H3162"]]]},{"k":8256,"v":[[0,2,["H1928"]],[2,3,["H7971"]],[3,6,["H3318","(H853)"]],[6,8,["H758"]],[8,9,["H834"]],[9,11,["H4480","H5676"]],[11,13,["H5104"]],[13,16,["H935"]],[16,18,["H2431"]],[18,20,["H7731"]],[20,22,["H8269"]],[22,25,["H6635"]],[25,27,["H1928"]],[27,29,["H6440"]],[29,30,[]]]},{"k":8257,"v":[[0,5,["H5046"]],[5,6,["H1732"]],[6,11,["H622","(H853)","H3605","H3478"]],[11,14,["H5674","(H853)"]],[14,15,["H3383"]],[15,17,["H935"]],[17,19,["H2431"]],[19,22,["H758"]],[22,26,["H6186"]],[26,27,["H7125"]],[27,28,["H1732"]],[28,30,["H3898"]],[30,31,["H5973"]],[31,32,[]]]},{"k":8258,"v":[[0,3,["H758"]],[3,4,["H5127"]],[4,5,["H4480","H6440"]],[5,6,["H3478"]],[6,8,["H1732"]],[8,9,["H2026"]],[9,13,["H7651"]],[13,14,["H3967"]],[14,15,["H7393"]],[15,18,["H4480","H758"]],[18,20,["H705"]],[20,21,["H505"]],[21,22,["H6571"]],[22,24,["H5221"]],[24,25,["H7731"]],[25,27,["H8269"]],[27,30,["H6635"]],[30,32,["H4191"]],[32,33,["H8033"]]]},{"k":8259,"v":[[0,3,["H3605"]],[3,5,["H4428"]],[5,8,["H5650"]],[8,10,["H1928"]],[10,11,["H7200"]],[11,12,["H3588"]],[12,15,["H5062"]],[15,16,["H6440"]],[16,17,["H3478"]],[17,20,["H7999"]],[20,21,["H854"]],[21,22,["H3478"]],[22,24,["H5647"]],[24,28,["H758"]],[28,29,["H3372"]],[29,31,["H3467","(H853)"]],[31,33,["H1121"]],[33,35,["H5983"]],[35,37,["H5750"]]]},{"k":8260,"v":[[0,5,["H1961"]],[5,8,["H8141"]],[8,10,["H8666"]],[10,13,["H6256"]],[13,15,["H4428"]],[15,17,["H3318"]],[17,21,["H1732"]],[21,22,["H7971","(H853)"]],[22,23,["H3097"]],[23,26,["H5650"]],[26,27,["H5973"]],[27,30,["H3605"]],[30,31,["H3478"]],[31,34,["H7843","(H853)"]],[34,36,["H1121"]],[36,38,["H5983"]],[38,40,["H6696","H5921"]],[40,41,["H7237"]],[41,43,["H1732"]],[43,44,["H3427"]],[44,47,["H3389"]]]},{"k":8261,"v":[[0,5,["H1961"]],[5,8,["H6256","H6153"]],[8,10,["H1732"]],[10,11,["H6965"]],[11,13,["H4480","H5921"]],[13,15,["H4904"]],[15,17,["H1980"]],[17,18,["H5921"]],[18,20,["H1406"]],[20,23,["H4428"]],[23,24,["H1004"]],[24,26,["H4480","H5921"]],[26,28,["H1406"]],[28,30,["H7200"]],[30,32,["H802"]],[32,33,["H7364"]],[33,37,["H802"]],[37,39,["H3966"]],[39,40,["H2896"]],[40,42,["H4758"]],[42,43,[]]]},{"k":8262,"v":[[0,2,["H1732"]],[2,3,["H7971"]],[3,5,["H1875"]],[5,8,["H802"]],[8,11,["H559"]],[11,13,["H3808"]],[13,14,["H2063"]],[14,15,["H1339"]],[15,17,["H1323"]],[17,19,["H463"]],[19,21,["H802"]],[21,23,["H223"]],[23,25,["H2850"]]]},{"k":8263,"v":[[0,2,["H1732"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,6,["H3947"]],[6,10,["H935"]],[10,12,["H413"]],[12,16,["H7901"]],[16,18,["H5973"]],[18,20,["H1931"]],[20,22,["H6942"]],[22,25,["H4480","H2932"]],[25,28,["H7725"]],[28,29,["H413"]],[29,31,["H1004"]]]},{"k":8264,"v":[[0,3,["H802"]],[3,4,["H2029"]],[4,6,["H7971"]],[6,8,["H5046"]],[8,9,["H1732"]],[9,11,["H559"]],[11,12,["H595"]],[12,15,["H2030"]]]},{"k":8265,"v":[[0,2,["H1732"]],[2,3,["H7971"]],[3,4,["H413"]],[4,5,["H3097"]],[5,7,["H7971","H413"]],[7,8,["(H853)"]],[8,9,["H223"]],[9,11,["H2850"]],[11,13,["H3097"]],[13,14,["H7971","(H853)"]],[14,15,["H223"]],[15,16,["H413"]],[16,17,["H1732"]]]},{"k":8266,"v":[[0,3,["H223"]],[3,5,["H935"]],[5,6,["H413"]],[6,8,["H1732"]],[8,9,["H7592"]],[9,13,["H3097"]],[13,14,["H7965"]],[14,18,["H5971"]],[18,19,["H7965"]],[19,23,["H4421"]],[23,24,["H7965"]]]},{"k":8267,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H223"]],[5,7,["H3381"]],[7,10,["H1004"]],[10,12,["H7364"]],[12,14,["H7272"]],[14,16,["H223"]],[16,17,["H3318"]],[17,22,["H4480","H1004","H4428"]],[22,25,["H3318","H310"]],[25,28,["H4864"]],[28,33,["H4428"]]]},{"k":8268,"v":[[0,2,["H223"]],[2,3,["H7901"]],[3,6,["H6607"]],[6,9,["H4428"]],[9,10,["H1004"]],[10,11,["H854"]],[11,12,["H3605"]],[12,14,["H5650"]],[14,17,["H113"]],[17,19,["H3381"]],[19,20,["H3808"]],[20,22,["H413"]],[22,24,["H1004"]]]},{"k":8269,"v":[[0,5,["H5046"]],[5,6,["H1732"]],[6,7,["H559"]],[7,8,["H223"]],[8,11,["H3381","H3808"]],[11,12,["H413"]],[12,14,["H1004"]],[14,15,["H1732"]],[15,16,["H559"]],[16,17,["H413"]],[17,18,["H223"]],[18,19,["H935"]],[19,20,["H859"]],[20,21,["H3808"]],[21,24,["H4480","H1870"]],[24,25,["H4069"]],[25,29,["H3808"]],[29,31,["H3381"]],[31,32,["H413"]],[32,34,["H1004"]]]},{"k":8270,"v":[[0,2,["H223"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,7,["H727"]],[7,9,["H3478"]],[9,11,["H3063"]],[11,12,["H3427"]],[12,14,["H5521"]],[14,17,["H113"]],[17,18,["H3097"]],[18,21,["H5650"]],[21,24,["H113"]],[24,26,["H2583"]],[26,27,["H5921"]],[27,29,["H6440"]],[29,30,["H7704"]],[30,32,["H589"]],[32,34,["H935"]],[34,35,["H413"]],[35,37,["H1004"]],[37,39,["H398"]],[39,42,["H8354"]],[42,45,["H7901"]],[45,46,["H5973"]],[46,48,["H802"]],[48,51,["H2416"]],[51,55,["H5315"]],[55,56,["H2416"]],[56,60,["H6213","(H853)"]],[60,61,["H2088"]],[61,62,["H1697"]]]},{"k":8271,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H223"]],[5,6,["H3427"]],[6,7,["H2088"]],[7,9,["H3117"]],[9,10,["H1571"]],[10,13,["H4279"]],[13,18,["H7971"]],[18,20,["H223"]],[20,21,["H3427"]],[21,23,["H3389"]],[23,24,["H1931"]],[24,25,["H3117"]],[25,28,["H4480","H4283"]]]},{"k":8272,"v":[[0,3,["H1732"]],[3,5,["H7121"]],[5,9,["H398"]],[9,11,["H8354"]],[11,12,["H6440"]],[12,18,["H7937"]],[18,21,["H6153"]],[21,24,["H3318"]],[24,26,["H7901"]],[26,29,["H4904"]],[29,30,["H5973"]],[30,32,["H5650"]],[32,35,["H113"]],[35,37,["H3381"]],[37,38,["H3808"]],[38,40,["H413"]],[40,42,["H1004"]]]},{"k":8273,"v":[[0,5,["H1961"]],[5,8,["H1242"]],[8,10,["H1732"]],[10,11,["H3789"]],[11,13,["H5612"]],[13,14,["H413"]],[14,15,["H3097"]],[15,17,["H7971"]],[17,21,["H3027"]],[21,23,["H223"]]]},{"k":8274,"v":[[0,3,["H3789"]],[3,6,["H5612"]],[6,7,["H559"]],[7,8,["H3051"]],[8,9,["(H853)"]],[9,10,["H223"]],[10,11,["H413"]],[11,13,["H4136","H6440"]],[13,16,["H2389"]],[16,17,["H4421"]],[17,19,["H7725"]],[19,21,["H4480","H310"]],[21,27,["H5221"]],[27,29,["H4191"]]]},{"k":8275,"v":[[0,5,["H1961"]],[5,7,["H3097"]],[7,8,["H8104","H413"]],[8,10,["H5892"]],[10,13,["H5414","(H853)"]],[13,14,["H223"]],[14,15,["H413"]],[15,17,["H4725"]],[17,18,["H834","H8033"]],[18,20,["H3045"]],[20,21,["H3588"]],[21,22,["H2428"]],[22,23,["H376"]],[23,24,[]]]},{"k":8276,"v":[[0,3,["H376"]],[3,6,["H5892"]],[6,8,["H3318"]],[8,10,["H3898"]],[10,11,["H854"]],[11,12,["H3097"]],[12,15,["H5307"]],[15,17,["H4480"]],[17,19,["H5971"]],[19,22,["H4480","H5650"]],[22,24,["H1732"]],[24,26,["H223"]],[26,28,["H2850"]],[28,29,["H4191"]],[29,30,["H1571"]]]},{"k":8277,"v":[[0,2,["H3097"]],[2,3,["H7971"]],[3,5,["H5046"]],[5,6,["H1732","(H853)"]],[6,7,["H3605"]],[7,9,["H1697"]],[9,12,["H4421"]]]},{"k":8278,"v":[[0,2,["H6680","(H853)"]],[2,4,["H4397"]],[4,5,["H559"]],[5,11,["H3615"]],[11,13,["H1696"]],[13,15,["H1697"]],[15,18,["H4421"]],[18,19,["H413"]],[19,21,["H4428"]]]},{"k":8279,"v":[[0,2,["H518"]],[2,4,["H1961"]],[4,7,["H4428"]],[7,8,["H2534"]],[8,9,["H5927"]],[9,12,["H559"]],[12,15,["H4069"]],[15,16,["H5066"]],[16,20,["H413"]],[20,22,["H5892"]],[22,26,["H3898"]],[26,27,["H3045"]],[27,29,["H3808"]],[29,30,["H834"]],[30,33,["H3384"]],[33,34,["H4480","H5921"]],[34,36,["H2346"]]]},{"k":8280,"v":[[0,1,["H4310"]],[1,2,["H5221","(H853)"]],[2,3,["H40"]],[3,5,["H1121"]],[5,7,["H3380"]],[7,9,["H3808"]],[9,11,["H802"]],[11,12,["H7993"]],[12,14,["H6400"]],[14,17,["H7393"]],[17,18,["H5921"]],[18,20,["H4480","H5921"]],[20,22,["H2346"]],[22,25,["H4191"]],[25,27,["H8405"]],[27,28,["H4100"]],[28,31,["H5066","H413"]],[31,33,["H2346"]],[33,35,["H559"]],[35,38,["H5650"]],[38,39,["H223"]],[39,41,["H2850"]],[41,43,["H4191"]],[43,44,["H1571"]]]},{"k":8281,"v":[[0,3,["H4397"]],[3,4,["H1980"]],[4,6,["H935"]],[6,8,["H5046"]],[8,9,["H1732","(H853)"]],[9,10,["H3605"]],[10,11,["H834"]],[11,12,["H3097"]],[12,14,["H7971"]],[14,16,[]]]},{"k":8282,"v":[[0,3,["H4397"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H1732"]],[6,7,["H3588"]],[7,9,["H376"]],[9,10,["H1396"]],[10,11,["H5921"]],[11,15,["H3318"]],[15,16,["H413"]],[16,20,["H7704"]],[20,23,["H1961"]],[23,24,["H5921"]],[24,27,["H5704"]],[27,29,["H6607"]],[29,32,["H8179"]]]},{"k":8283,"v":[[0,3,["H3384"]],[3,4,["H3384"]],[4,6,["H4480","H5921"]],[6,8,["H2346"]],[8,9,["H413"]],[9,11,["H5650"]],[11,17,["H4480","H5650","H4428"]],[17,19,["H4191"]],[19,22,["H5650"]],[22,23,["H223"]],[23,25,["H2850"]],[25,27,["H4191"]],[27,28,["H1571"]]]},{"k":8284,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4397"]],[6,7,["H3541"]],[7,10,["H559"]],[10,11,["H413"]],[11,12,["H3097"]],[12,14,["H408","(H853)"]],[14,15,["H2088"]],[15,16,["H1697"]],[16,17,["H3415","H5869"]],[17,19,["H3588"]],[19,21,["H2719"]],[21,22,["H398"]],[22,23,["H2088"]],[23,27,["H2090"]],[27,30,["H4421"]],[30,32,["H2388"]],[32,33,["H413"]],[33,35,["H5892"]],[35,37,["H2040"]],[37,40,["H2388"]],[40,42,[]]]},{"k":8285,"v":[[0,4,["H802"]],[4,6,["H223"]],[6,7,["H8085"]],[7,8,["H3588"]],[8,9,["H223"]],[9,11,["H376"]],[11,13,["H4191"]],[13,15,["H5594"]],[15,16,["H5921"]],[16,18,["H1167"]]]},{"k":8286,"v":[[0,4,["H60"]],[4,6,["H5674"]],[6,7,["H1732"]],[7,8,["H7971"]],[8,10,["H622"]],[10,12,["H413"]],[12,14,["H1004"]],[14,17,["H1961"]],[17,19,["H802"]],[19,21,["H3205"]],[21,24,["H1121"]],[24,27,["H1697"]],[27,28,["H834"]],[28,29,["H1732"]],[29,31,["H6213"]],[31,32,["H3415","H5869"]],[32,34,["H3068"]]]},{"k":8287,"v":[[0,3,["H3068"]],[3,4,["H7971","(H853)"]],[4,5,["H5416"]],[5,6,["H413"]],[6,7,["H1732"]],[7,10,["H935"]],[10,11,["H413"]],[11,14,["H559"]],[14,18,["H1961"]],[18,19,["H8147"]],[19,20,["H376"]],[20,22,["H259"]],[22,23,["H5892"]],[23,25,["H259"]],[25,26,["H6223"]],[26,29,["H259"]],[29,30,["H7326"]]]},{"k":8288,"v":[[0,2,["H6223"]],[2,4,["H1961"]],[4,5,["H3966"]],[5,6,["H7235"]],[6,7,["H6629"]],[7,9,["H1241"]]]},{"k":8289,"v":[[0,3,["H7326"]],[3,6,["H369","H3605"]],[6,7,["H3588","H518"]],[7,8,["H259"]],[8,9,["H6996"]],[9,11,["H3535"]],[11,12,["H834"]],[12,14,["H1961"]],[14,15,["H7069"]],[15,18,["H2421"]],[18,22,["H1431"]],[22,23,["H3162"]],[23,24,["H5973"]],[24,27,["H5973"]],[27,29,["H1121"]],[29,32,["H398"]],[32,36,["H4480","H6595"]],[36,38,["H8354"]],[38,42,["H4480","H3563"]],[42,44,["H7901"]],[44,47,["H2436"]],[47,49,["H1961"]],[49,54,["H1323"]]]},{"k":8290,"v":[[0,3,["H935"]],[3,5,["H1982"]],[5,8,["H6223"]],[8,9,["H376"]],[9,12,["H2550"]],[12,14,["H3947"]],[14,18,["H4480","H6629"]],[18,23,["H4480","H1241"]],[23,25,["H6213"]],[25,29,["H732"]],[29,32,["H935"]],[32,36,["H3947"]],[36,38,["H7326"]],[38,39,["H376","(H853)"]],[39,40,["H3535"]],[40,42,["H6213"]],[42,46,["H376"]],[46,49,["H935"]],[49,50,["H413"]],[50,51,[]]]},{"k":8291,"v":[[0,2,["H1732"]],[2,3,["H639"]],[3,5,["H3966"]],[5,6,["H2734"]],[6,9,["H376"]],[9,12,["H559"]],[12,13,["H413"]],[13,14,["H5416"]],[14,17,["H3068"]],[17,18,["H2416"]],[18,20,["H376"]],[20,23,["H6213"]],[23,24,["H2063"]],[24,28,["H3588","H1121","H4194"]]]},{"k":8292,"v":[[0,4,["H7999"]],[4,6,["H3535"]],[6,7,["H706"]],[7,8,["H6118","H834"]],[8,10,["H6213","(H853)"]],[10,11,["H2088"]],[11,12,["H1697"]],[12,14,["H5921","H834"]],[14,17,["H3808"]],[17,18,["H2550"]]]},{"k":8293,"v":[[0,2,["H5416"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,6,["H859"]],[6,9,["H376"]],[9,10,["H3541"]],[10,11,["H559"]],[11,13,["H3068"]],[13,14,["H430"]],[14,16,["H3478"]],[16,17,["H595"]],[17,18,["H4886"]],[18,20,["H4428"]],[20,21,["H5921"]],[21,22,["H3478"]],[22,24,["H595"]],[24,25,["H5337"]],[25,30,["H4480","H3027"]],[30,32,["H7586"]]]},{"k":8294,"v":[[0,3,["H5414"]],[3,4,["(H853)"]],[4,6,["H113"]],[6,7,["H1004"]],[7,10,["H113"]],[10,11,["H802"]],[11,14,["H2436"]],[14,16,["H5414"]],[16,17,["(H853)"]],[17,19,["H1004"]],[19,21,["H3478"]],[21,24,["H3063"]],[24,26,["H518"]],[26,31,["H4592"]],[31,36,["H3254"]],[36,39,["H2007"]],[39,41,["H2007"]],[41,42,[]]]},{"k":8295,"v":[[0,1,["H4069"]],[1,4,["H959","(H853)"]],[4,6,["H1697"]],[6,9,["H3068"]],[9,11,["H6213"]],[11,12,["H7451"]],[12,15,["H5869"]],[15,18,["H5221","(H853)"]],[18,19,["H223"]],[19,21,["H2850"]],[21,24,["H2719"]],[24,27,["H3947"]],[27,29,["H802"]],[29,33,["H802"]],[33,36,["H2026"]],[36,40,["H2719"]],[40,43,["H1121"]],[43,45,["H5983"]]]},{"k":8296,"v":[[0,1,["H6258"]],[1,4,["H2719"]],[4,6,["H3808","H5704","H5769"]],[6,7,["H5493"]],[7,10,["H4480","H1004"]],[10,11,["H6118","H3588"]],[11,14,["H959"]],[14,18,["H3947","(H853)"]],[18,20,["H802"]],[20,22,["H223"]],[22,24,["H2850"]],[24,26,["H1961"]],[26,28,["H802"]]]},{"k":8297,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H2009"]],[5,9,["H6965"]],[9,10,["H7451"]],[10,11,["H5921"]],[11,17,["H4480","H1004"]],[17,21,["H3947","(H853)"]],[21,23,["H802"]],[23,26,["H5869"]],[26,28,["H5414"]],[28,32,["H7453"]],[32,36,["H7901"]],[36,37,["H5973"]],[37,39,["H802"]],[39,42,["H5869"]],[42,44,["H2063"]],[44,45,["H8121"]]]},{"k":8298,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,3,["H6213"]],[3,5,["H5643"]],[5,7,["H589"]],[7,9,["H6213","(H853)"]],[9,10,["H2088"]],[10,11,["H1697"]],[11,12,["H5048"]],[12,13,["H3605"]],[13,14,["H3478"]],[14,16,["H5048"]],[16,18,["H8121"]]]},{"k":8299,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H5416"]],[5,8,["H2398"]],[8,11,["H3068"]],[11,13,["H5416"]],[13,14,["H559"]],[14,15,["H413"]],[15,16,["H1732"]],[16,18,["H3068"]],[18,19,["H1571"]],[19,22,["H5674"]],[22,24,["H2403"]],[24,27,["H3808"]],[27,28,["H4191"]]]},{"k":8300,"v":[[0,1,["H657"]],[1,2,["H3588"]],[2,4,["H2088"]],[4,5,["H1697"]],[5,10,["H5006","(H853)"]],[10,13,["H341"]],[13,16,["H3068"]],[16,18,["H5006"]],[18,20,["H1121"]],[20,21,["H1571"]],[21,24,["H3209"]],[24,29,["H4191","H4191"]]]},{"k":8301,"v":[[0,2,["H5416"]],[2,3,["H1980"]],[3,4,["H413"]],[4,6,["H1004"]],[6,9,["H3068"]],[9,10,["H5062","(H853)"]],[10,12,["H3206"]],[12,13,["H834"]],[13,14,["H223"]],[14,15,["H802"]],[15,16,["H3205"]],[16,18,["H1732"]],[18,23,["H605"]]]},{"k":8302,"v":[[0,1,["H1732"]],[1,3,["H1245","(H853)"]],[3,4,["H430"]],[4,5,["H1157"]],[5,7,["H5288"]],[7,9,["H1732"]],[9,10,["H6684","H6685"]],[10,12,["H935"]],[12,15,["H7901"]],[15,16,["H3605"]],[16,17,["H3885"]],[17,20,["H776"]]]},{"k":8303,"v":[[0,3,["H2205"]],[3,6,["H1004"]],[6,7,["H6965"]],[7,10,["H5921"]],[10,15,["H6965"]],[15,16,["H4480"]],[16,18,["H776"]],[18,21,["H14"]],[21,22,["H3808"]],[22,23,["H3808"]],[23,26,["H1262"]],[26,27,["H3899"]],[27,28,["H854"]],[28,29,[]]]},{"k":8304,"v":[[0,5,["H1961"]],[5,8,["H7637"]],[8,9,["H3117"]],[9,12,["H3206"]],[12,13,["H4191"]],[13,16,["H5650"]],[16,18,["H1732"]],[18,19,["H3372"]],[19,21,["H5046"]],[21,23,["H3588"]],[23,25,["H3206"]],[25,27,["H4191"]],[27,28,["H3588"]],[28,30,["H559"]],[30,31,["H2009"]],[31,34,["H3206"]],[34,35,["H1961"]],[35,37,["H2416"]],[37,39,["H1696"]],[39,40,["H413"]],[40,45,["H3808"]],[45,46,["H8085"]],[46,49,["H6963"]],[49,50,["H349"]],[50,54,["H6213","H7451"]],[54,58,["H559","H413"]],[58,62,["H3206"]],[62,64,["H4191"]]]},{"k":8305,"v":[[0,3,["H1732"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,7,["H5650"]],[7,8,["H3907"]],[8,9,["H1732"]],[9,10,["H995"]],[10,11,["H3588"]],[11,13,["H3206"]],[13,15,["H4191"]],[15,17,["H1732"]],[17,18,["H559"]],[18,19,["H413"]],[19,21,["H5650"]],[21,24,["H3206"]],[24,25,["H4191"]],[25,28,["H559"]],[28,31,["H4191"]]]},{"k":8306,"v":[[0,2,["H1732"]],[2,3,["H6965"]],[3,6,["H4480","H776"]],[6,8,["H7364"]],[8,10,["H5480"]],[10,13,["H2498"]],[13,15,["H8071"]],[15,17,["H935"]],[17,20,["H1004"]],[20,23,["H3068"]],[23,25,["H7812"]],[25,28,["H935"]],[28,29,["H413"]],[29,32,["H1004"]],[32,36,["H7592"]],[36,38,["H7760"]],[38,39,["H3899"]],[39,45,["H398"]]]},{"k":8307,"v":[[0,2,["H559"]],[2,4,["H5650"]],[4,5,["H413"]],[5,7,["H4100"]],[7,8,["H1697"]],[8,10,["H2088"]],[10,11,["H834"]],[11,14,["H6213"]],[14,17,["H6684"]],[17,19,["H1058"]],[19,22,["H3206","H5668"]],[22,23,["H3206","H5668"]],[23,26,["H2416"]],[26,28,["H834"]],[28,30,["H3206"]],[30,32,["H4191"]],[32,35,["H6965"]],[35,37,["H398"]],[37,38,["H3899"]]]},{"k":8308,"v":[[0,3,["H559"]],[3,6,["H3206"]],[6,8,["H5750"]],[8,9,["H2416"]],[9,11,["H6684"]],[11,13,["H1058"]],[13,14,["H3588"]],[14,16,["H559"]],[16,17,["H4310"]],[17,19,["H3045"]],[19,21,["H3068"]],[21,24,["H2603"]],[24,29,["H3206"]],[29,31,["H2416"]]]},{"k":8309,"v":[[0,2,["H6258"]],[2,5,["H4191"]],[5,6,["H4100","H2088"]],[6,8,["H589"]],[8,9,["H6684"]],[9,10,["H3201"]],[10,14,["H7725"]],[14,15,["H5750"]],[15,16,["H589"]],[16,18,["H1980"]],[18,19,["H413"]],[19,22,["H1931"]],[22,24,["H3808"]],[24,25,["H7725"]],[25,26,["H413"]],[26,27,[]]]},{"k":8310,"v":[[0,2,["H1732"]],[2,3,["H5162","(H853)"]],[3,4,["H1339"]],[4,6,["H802"]],[6,8,["H935"]],[8,10,["H413"]],[10,13,["H7901"]],[13,14,["H5973"]],[14,18,["H3205"]],[18,20,["H1121"]],[20,23,["H7121","(H853)"]],[23,25,["H8034"]],[25,26,["H8010"]],[26,29,["H3068"]],[29,30,["H157"]],[30,31,[]]]},{"k":8311,"v":[[0,3,["H7971"]],[3,6,["H3027"]],[6,8,["H5416"]],[8,10,["H5030"]],[10,13,["H7121","(H853)"]],[13,15,["H8034"]],[15,16,["H3041"]],[16,17,["H5668"]],[17,20,["H3068"]]]},{"k":8312,"v":[[0,2,["H3097"]],[2,3,["H3898"]],[3,5,["H7237"]],[5,8,["H1121"]],[8,10,["H5983"]],[10,12,["H3920","(H853)"]],[12,14,["H4410"]],[14,15,["H5892"]]]},{"k":8313,"v":[[0,2,["H3097"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H1732"]],[6,8,["H559"]],[8,11,["H3898"]],[11,13,["H7237"]],[13,14,["H1571"]],[14,16,["H3920","(H853)"]],[16,18,["H5892"]],[18,20,["H4325"]]]},{"k":8314,"v":[[0,1,["H6258"]],[1,3,["H622","(H853)"]],[3,5,["H3499"]],[5,8,["H5971"]],[8,11,["H2583"]],[11,12,["H5921"]],[12,14,["H5892"]],[14,16,["H3920"]],[16,18,["H6435"]],[18,19,["H589"]],[19,20,["H3920","(H853)"]],[20,22,["H5892"]],[22,26,["H7121"]],[26,27,["H5921"]],[27,29,["H8034"]]]},{"k":8315,"v":[[0,2,["H1732"]],[2,3,["H622","(H853)"]],[3,4,["H3605"]],[4,6,["H5971"]],[6,9,["H1980"]],[9,11,["H7237"]],[11,13,["H3898"]],[13,17,["H3920"]],[17,18,[]]]},{"k":8316,"v":[[0,3,["H3947","(H853)"]],[3,5,["H4428"]],[5,6,["H5850"]],[6,8,["H4480","H5921"]],[8,10,["H7218"]],[10,12,["H4948"]],[12,16,["H3603"]],[16,18,["H2091"]],[18,21,["H3368"]],[21,22,["H68"]],[22,25,["H1961"]],[25,27,["H5921"]],[27,28,["H1732"]],[28,29,["H7218"]],[29,33,["H3318"]],[33,35,["H7998"]],[35,38,["H5892"]],[38,40,["H3966"]],[40,41,["H7235"]]]},{"k":8317,"v":[[0,4,["H3318"]],[4,6,["H5971"]],[6,7,["H834"]],[7,11,["H7760"]],[11,14,["H4050"]],[14,17,["H2757"]],[17,19,["H1270"]],[19,22,["H4037"]],[22,24,["H1270"]],[24,29,["H5674","(H853)"]],[29,31,["H4404"]],[31,33,["H3651"]],[33,34,["H6213"]],[34,37,["H3605"]],[37,39,["H5892"]],[39,42,["H1121"]],[42,44,["H5983"]],[44,46,["H1732"]],[46,48,["H3605"]],[48,50,["H5971"]],[50,51,["H7725"]],[51,53,["H3389"]]]},{"k":8318,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H3651"]],[7,9,["H53"]],[9,11,["H1121"]],[11,13,["H1732"]],[13,16,["H3303"]],[16,17,["H269"]],[17,19,["H8034"]],[19,21,["H8559"]],[21,23,["H550"]],[23,25,["H1121"]],[25,27,["H1732"]],[27,28,["H157"]],[28,29,[]]]},{"k":8319,"v":[[0,2,["H550"]],[2,5,["H6887"]],[5,9,["H2470"]],[9,10,["H5668"]],[10,12,["H269"]],[12,13,["H8559"]],[13,14,["H3588"]],[14,15,["H1931"]],[15,18,["H1330"]],[18,20,["H550"]],[20,21,["H5869"]],[21,23,["H6381"]],[23,27,["H6213"]],[27,29,["H3972"]],[29,31,[]]]},{"k":8320,"v":[[0,2,["H550"]],[2,5,["H7453"]],[5,7,["H8034"]],[7,9,["H3122"]],[9,11,["H1121"]],[11,13,["H8093"]],[13,14,["H1732"]],[14,15,["H251"]],[15,17,["H3122"]],[17,20,["H3966"]],[20,21,["H2450"]],[21,22,["H376"]]]},{"k":8321,"v":[[0,3,["H559"]],[3,6,["H4069"]],[6,8,["H859"]],[8,11,["H4428"]],[11,12,["H1121"]],[12,13,["H3602","H1800"]],[13,15,["H1242"]],[15,17,["H1242"]],[17,20,["H3808"]],[20,21,["H5046"]],[21,24,["H550"]],[24,25,["H559"]],[25,28,["H589"]],[28,29,["H157","(H853)"]],[29,30,["H8559"]],[30,32,["H251"]],[32,33,["H53"]],[33,34,["H269"]]]},{"k":8322,"v":[[0,2,["H3122"]],[2,3,["H559"]],[3,8,["H7901"]],[8,9,["H5921"]],[9,11,["H4904"]],[11,15,["H2470"]],[15,19,["H1"]],[19,20,["H935"]],[20,22,["H7200"]],[22,24,["H559"]],[24,25,["H413"]],[25,29,["H4994"]],[29,32,["H269"]],[32,33,["H8559"]],[33,34,["H935"]],[34,36,["H1262"]],[36,38,["H3899"]],[38,40,["H6213","(H853)"]],[40,42,["H1279"]],[42,45,["H5869"]],[45,46,["H4616","H834"]],[46,49,["H7200"]],[49,52,["H398"]],[52,56,["H4480","H3027"]]]},{"k":8323,"v":[[0,2,["H550"]],[2,4,["H7901"]],[4,8,["H2470"]],[8,12,["H4428"]],[12,14,["H935"]],[14,16,["H7200"]],[16,18,["H550"]],[18,19,["H559"]],[19,20,["H413"]],[20,22,["H4428"]],[22,25,["H4994"]],[25,27,["H8559"]],[27,29,["H269"]],[29,30,["H935"]],[30,32,["H3823"]],[32,35,["H8147"]],[35,37,["H3834"]],[37,40,["H5869"]],[40,44,["H1262"]],[44,47,["H4480","H3027"]]]},{"k":8324,"v":[[0,2,["H1732"]],[2,3,["H7971"]],[3,4,["H1004"]],[4,5,["H413"]],[5,6,["H8559"]],[6,7,["H559"]],[7,8,["H1980"]],[8,9,["H4994"]],[9,12,["H251"]],[12,13,["H550"]],[13,14,["H1004"]],[14,16,["H6213"]],[16,18,["H1279"]]]},{"k":8325,"v":[[0,2,["H8559"]],[2,3,["H1980"]],[3,6,["H251"]],[6,7,["H550"]],[7,8,["H1004"]],[8,10,["H1931"]],[10,13,["H7901"]],[13,16,["H3947","(H853)"]],[16,17,["H1217"]],[17,19,["H3888"]],[19,23,["H3823"]],[23,26,["H5869"]],[26,29,["H1310","(H853)"]],[29,31,["H3834"]]]},{"k":8326,"v":[[0,3,["H3947","(H853)"]],[3,5,["H4958"]],[5,9,["H3332"]],[9,10,["H6440"]],[10,14,["H3985"]],[14,16,["H398"]],[16,18,["H550"]],[18,19,["H559"]],[19,21,["H3318"]],[21,22,["H3605"]],[22,23,["H376"]],[23,24,["H4480","H5921"]],[24,29,["H3318"]],[29,30,["H3605"]],[30,31,["H376"]],[31,32,["H4480","H5921"]],[32,33,[]]]},{"k":8327,"v":[[0,2,["H550"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H8559"]],[5,6,["H935"]],[6,8,["H1279"]],[8,11,["H2315"]],[11,15,["H1262"]],[15,18,["H4480","H3027"]],[18,20,["H8559"]],[20,21,["H3947","(H853)"]],[21,23,["H3834"]],[23,24,["H834"]],[24,27,["H6213"]],[27,29,["H935"]],[29,33,["H2315"]],[33,35,["H550"]],[35,37,["H251"]]]},{"k":8328,"v":[[0,5,["H5066"]],[5,7,["H413"]],[7,10,["H398"]],[10,13,["H2388"]],[13,17,["H559"]],[17,20,["H935"]],[20,21,["H7901"]],[21,22,["H5973"]],[22,25,["H269"]]]},{"k":8329,"v":[[0,3,["H559"]],[3,5,["H408"]],[5,7,["H251"]],[7,9,["H408"]],[9,10,["H6031"]],[10,12,["H3588"]],[12,13,["H3808"]],[13,15,["H3651"]],[15,19,["H6213"]],[19,21,["H3478"]],[21,22,["H6213"]],[22,23,["H408"]],[23,24,["(H853)"]],[24,25,["H2063"]],[25,26,["H5039"]]]},{"k":8330,"v":[[0,2,["H589"]],[2,3,["H575"]],[3,6,["(H853)"]],[6,8,["H2781"]],[8,10,["H1980"]],[10,14,["H859"]],[14,17,["H1961"]],[17,19,["H259"]],[19,22,["H5036"]],[22,24,["H3478"]],[24,25,["H6258"]],[25,29,["H4994"]],[29,30,["H1696"]],[30,31,["H413"]],[31,33,["H4428"]],[33,34,["H3588"]],[34,37,["H3808"]],[37,38,["H4513"]],[38,40,["H4480"]],[40,41,[]]]},{"k":8331,"v":[[0,3,["H14"]],[3,4,["H3808"]],[4,5,["H8085"]],[5,8,["H6963"]],[8,11,["H2388"]],[11,14,["H6031"]],[14,18,["H7901"]],[18,19,[]]]},{"k":8332,"v":[[0,2,["H550"]],[2,3,["H8130"]],[3,5,["H8135","H1419","H3966"]],[5,7,["H3588"]],[7,9,["H8135"]],[9,10,["H834"]],[10,12,["H8130"]],[12,15,["H1419"]],[15,18,["H4480","H160"]],[18,19,["H834"]],[19,22,["H157"]],[22,25,["H550"]],[25,26,["H559"]],[26,29,["H6965"]],[29,31,["H1980"]]]},{"k":8333,"v":[[0,3,["H559"]],[3,8,["H408"]],[8,9,["H182"]],[9,10,["H2063"]],[10,11,["H7451"]],[11,15,["H7971"]],[15,17,["H1419"]],[17,20,["H4480","H312"]],[20,21,["H834"]],[21,23,["H6213"]],[23,24,["H5973"]],[24,28,["H14"]],[28,29,["H3808"]],[29,30,["H8085"]],[30,32,[]]]},{"k":8334,"v":[[0,3,["H7121","(H853)"]],[3,5,["H5288"]],[5,7,["H8334"]],[7,11,["H559"]],[11,12,["H7971"]],[12,13,["H4994","(H853)"]],[13,14,["H2063"]],[14,18,["H4480","H5921","H2351"]],[18,20,["H5274"]],[20,22,["H1817"]],[22,23,["H310"]],[23,24,[]]]},{"k":8335,"v":[[0,5,["H3801"]],[5,8,["H6446"]],[8,9,["H5921"]],[9,11,["H3588"]],[11,13,["H3651"]],[13,14,["H4598"]],[14,17,["H4428"]],[17,18,["H1323"]],[18,21,["H1330"]],[21,22,["H3847"]],[22,25,["H8334"]],[25,26,["H3318"]],[26,28,["H2351"]],[28,30,["H5274"]],[30,32,["H1817"]],[32,33,["H310"]],[33,34,[]]]},{"k":8336,"v":[[0,2,["H8559"]],[2,3,["H3947"]],[3,4,["H665"]],[4,5,["H5921"]],[5,7,["H7218"]],[7,9,["H7167"]],[9,11,["H3801"]],[11,14,["H6446"]],[14,15,["H834"]],[15,17,["H5921"]],[17,20,["H7760"]],[20,22,["H3027"]],[22,23,["H5921"]],[23,25,["H7218"]],[25,28,["H1980","H1980"]],[28,29,["H2199"]]]},{"k":8337,"v":[[0,2,["H53"]],[2,4,["H251"]],[4,5,["H559"]],[5,6,["H413"]],[6,9,["H550"]],[9,11,["H251"]],[11,12,["H1961"]],[12,13,["H5973"]],[13,16,["H2790"]],[16,17,["H6258"]],[17,21,["H269"]],[21,22,["H1931"]],[22,25,["H251"]],[25,26,["H7896","(H853)","H3820"]],[26,27,["H408"]],[27,28,["H2088"]],[28,29,["H1697"]],[29,31,["H8559"]],[31,32,["H3427"]],[32,33,["H8074"]],[33,36,["H251"]],[36,37,["H53"]],[37,38,["H1004"]]]},{"k":8338,"v":[[0,3,["H4428"]],[3,4,["H1732"]],[4,5,["H8085"]],[5,6,["(H853)"]],[6,7,["H3605"]],[7,8,["H428"]],[8,9,["H1697"]],[9,12,["H3966"]],[12,13,["H2734"]]]},{"k":8339,"v":[[0,2,["H53"]],[2,3,["H1696"]],[3,4,["H5973"]],[4,7,["H550"]],[7,8,["H3808"]],[8,9,["H2896"]],[9,10,["H5704"]],[10,11,["H4480","H7451"]],[11,12,["H3588"]],[12,13,["H53"]],[13,14,["H8130","(H853)"]],[14,15,["H550"]],[15,16,["H5921","H1697","H834"]],[16,19,["H6031","(H853)"]],[19,21,["H269"]],[21,22,["H8559"]]]},{"k":8340,"v":[[0,5,["H1961"]],[5,9,["H8141","H3117"]],[9,11,["H53"]],[11,12,["H1961"]],[12,13,["H1494"]],[13,15,["H1178"]],[15,16,["H834"]],[16,18,["H5973"]],[18,19,["H669"]],[19,21,["H53"]],[21,22,["H7121"]],[22,23,["H3605"]],[23,25,["H4428"]],[25,26,["H1121"]]]},{"k":8341,"v":[[0,2,["H53"]],[2,3,["H935"]],[3,4,["H413"]],[4,6,["H4428"]],[6,8,["H559"]],[8,9,["H2009"]],[9,10,["H4994"]],[10,12,["H5650"]],[12,14,["H1494"]],[14,17,["H4428"]],[17,20,["H4994"]],[20,23,["H5650"]],[23,24,["H1980"]],[24,25,["H5973"]],[25,27,["H5650"]]]},{"k":8342,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H53"]],[6,7,["H408"]],[7,9,["H1121"]],[9,12,["H408"]],[12,13,["H3605"]],[13,14,["H4994"]],[14,15,["H1980"]],[15,16,["H3808"]],[16,19,["H3513"]],[19,20,["H5921"]],[20,24,["H6555"]],[24,28,["H14"]],[28,29,["H3808"]],[29,30,["H1980"]],[30,32,["H1288"]],[32,33,[]]]},{"k":8343,"v":[[0,2,["H559"]],[2,3,["H53"]],[3,5,["H3808"]],[5,8,["H4994"]],[8,11,["H251"]],[11,12,["H550"]],[12,13,["H1980"]],[13,14,["H854"]],[14,18,["H4428"]],[18,19,["H559"]],[19,22,["H4100"]],[22,25,["H1980"]],[25,26,["H5973"]],[26,27,[]]]},{"k":8344,"v":[[0,2,["H53"]],[2,3,["H6555"]],[3,7,["(H853)"]],[7,8,["H550"]],[8,10,["H3605"]],[10,12,["H4428"]],[12,13,["H1121"]],[13,14,["H7971"]],[14,15,["H854"]],[15,16,[]]]},{"k":8345,"v":[[0,2,["H53"]],[2,4,["H6680","(H853)"]],[4,6,["H5288"]],[6,7,["H559"]],[7,8,["H7200"]],[8,10,["H4994"]],[10,12,["H550"]],[12,13,["H3820"]],[13,15,["H2895"]],[15,17,["H3196"]],[17,21,["H559"]],[21,22,["H413"]],[22,24,["H5221","(H853)"]],[24,25,["H550"]],[25,27,["H4191"]],[27,29,["H3372"]],[29,30,["H408"]],[30,32,["H3808"]],[32,33,["H595"]],[33,34,["H6680"]],[34,37,["H2388"]],[37,39,["H1961"]],[39,40,["H1121","H2428"]]]},{"k":8346,"v":[[0,3,["H5288"]],[3,5,["H53"]],[5,6,["H6213"]],[6,8,["H550"]],[8,9,["H834"]],[9,10,["H53"]],[10,12,["H6680"]],[12,14,["H3605"]],[14,16,["H4428"]],[16,17,["H1121"]],[17,18,["H6965"]],[18,21,["H376"]],[21,24,["H7392"]],[24,25,["H5921"]],[25,27,["H6505"]],[27,29,["H5127"]]]},{"k":8347,"v":[[0,5,["H1961"]],[5,7,["H1992"]],[7,11,["H1870"]],[11,13,["H8052"]],[13,14,["H935"]],[14,15,["H413"]],[15,16,["H1732"]],[16,17,["H559"]],[17,18,["H53"]],[18,20,["H5221","(H853)"]],[20,21,["H3605"]],[21,23,["H4428"]],[23,24,["H1121"]],[24,28,["H3808"]],[28,29,["H259"]],[29,30,["H4480"]],[30,32,["H3498"]]]},{"k":8348,"v":[[0,3,["H4428"]],[3,4,["H6965"]],[4,6,["H7167","(H853)"]],[6,8,["H899"]],[8,10,["H7901"]],[10,13,["H776"]],[13,15,["H3605"]],[15,17,["H5650"]],[17,19,["H5324"]],[19,22,["H899"]],[22,23,["H7167"]]]},{"k":8349,"v":[[0,2,["H3122"]],[2,4,["H1121"]],[4,6,["H8093"]],[6,7,["H1732"]],[7,8,["H251"]],[8,9,["H6030"]],[9,11,["H559"]],[11,13,["H408"]],[13,15,["H113"]],[15,16,["H559"]],[16,20,["H4191","(H853)"]],[20,21,["H3605"]],[21,24,["H5288"]],[24,26,["H4428"]],[26,27,["H1121"]],[27,28,["H3588"]],[28,29,["H550"]],[29,30,["H905"]],[30,32,["H4191"]],[32,33,["H3588"]],[33,34,["H5921"]],[34,36,["H6310"]],[36,38,["H53"]],[38,41,["H1961"]],[41,42,["H7760"]],[42,45,["H4480","H3117"]],[45,48,["H6031","(H853)"]],[48,50,["H269"]],[50,51,["H8559"]]]},{"k":8350,"v":[[0,1,["H6258"]],[1,4,["H408"]],[4,6,["H113"]],[6,8,["H4428"]],[8,9,["H7760"]],[9,11,["H1697"]],[11,12,["H413"]],[12,14,["H3820"]],[14,16,["H559"]],[16,18,["H3605"]],[18,20,["H4428"]],[20,21,["H1121"]],[21,23,["H4191"]],[23,24,["H3588","H518"]],[24,25,["H550"]],[25,26,["H905"]],[26,28,["H4191"]]]},{"k":8351,"v":[[0,2,["H53"]],[2,3,["H1272"]],[3,7,["H5288"]],[7,11,["H6822"]],[11,13,["H5375","(H853)"]],[13,15,["H5869"]],[15,17,["H7200"]],[17,19,["H2009"]],[19,21,["H1980"]],[21,22,["H7227"]],[22,23,["H5971"]],[23,26,["H4480","H1870"]],[26,30,["H4480","H6654","H2022"]],[30,31,["H310"]],[31,32,[]]]},{"k":8352,"v":[[0,2,["H3122"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,7,["H2009"]],[7,9,["H4428"]],[9,10,["H1121"]],[10,11,["H935"]],[11,14,["H5650"]],[14,15,["H1697"]],[15,16,["H3651"]],[16,18,["H1961"]]]},{"k":8353,"v":[[0,5,["H1961"]],[5,13,["H3615"]],[13,15,["H1696"]],[15,17,["H2009"]],[17,19,["H4428"]],[19,20,["H1121"]],[20,21,["H935"]],[21,24,["H5375"]],[24,26,["H6963"]],[26,28,["H1058"]],[28,31,["H4428"]],[31,32,["H1571"]],[32,34,["H3605"]],[34,36,["H5650"]],[36,37,["H1058"]],[37,38,["H3966"]],[38,39,["H1419"]]]},{"k":8354,"v":[[0,2,["H53"]],[2,3,["H1272"]],[3,5,["H1980"]],[5,6,["H413"]],[6,7,["H8526"]],[7,9,["H1121"]],[9,11,["H5989"]],[11,12,["H4428"]],[12,14,["H1650"]],[14,17,["H56"]],[17,18,["H5921"]],[18,20,["H1121"]],[20,21,["H3605"]],[21,22,["H3117"]]]},{"k":8355,"v":[[0,2,["H53"]],[2,3,["H1272"]],[3,5,["H1980"]],[5,7,["H1650"]],[7,9,["H1961"]],[9,10,["H8033"]],[10,11,["H7969"]],[11,12,["H8141"]]]},{"k":8356,"v":[[0,5,["H4428"]],[5,6,["H1732"]],[6,7,["H3615"]],[7,10,["H3318"]],[10,11,["H413"]],[11,12,["H53"]],[12,13,["H3588"]],[13,16,["H5162"]],[16,17,["H5921"]],[17,18,["H550"]],[18,19,["H3588"]],[19,22,["H4191"]]]},{"k":8357,"v":[[0,2,["H3097"]],[2,4,["H1121"]],[4,6,["H6870"]],[6,7,["H3045"]],[7,8,["H3588"]],[8,10,["H4428"]],[10,11,["H3820"]],[11,13,["H5921"]],[13,14,["H53"]]]},{"k":8358,"v":[[0,2,["H3097"]],[2,3,["H7971"]],[3,5,["H8620"]],[5,7,["H3947"]],[7,8,["H4480","H8033"]],[8,10,["H2450"]],[10,11,["H802"]],[11,13,["H559"]],[13,14,["H413"]],[14,18,["H4994"]],[18,24,["H56"]],[24,27,["H3847"]],[27,28,["H4994"]],[28,29,["H60"]],[29,30,["H899"]],[30,32,["H5480"]],[32,33,["H408"]],[33,36,["H8081"]],[36,38,["H1961"]],[38,41,["H802"]],[41,42,["H2088"]],[42,45,["H7227"]],[45,46,["H3117"]],[46,47,["H56"]],[47,48,["H5921"]],[48,50,["H4191"]]]},{"k":8359,"v":[[0,2,["H935"]],[2,3,["H413"]],[3,5,["H4428"]],[5,7,["H1696"]],[7,8,["H413"]],[8,9,["H2088"]],[9,10,["H1697"]],[10,11,["H413"]],[11,14,["H3097"]],[14,15,["H7760","(H853)"]],[15,17,["H1697"]],[17,20,["H6310"]]]},{"k":8360,"v":[[0,4,["H802"]],[4,6,["H8621"]],[6,7,["H559"]],[7,8,["H413"]],[8,10,["H4428"]],[10,12,["H5307"]],[12,13,["H5921"]],[13,15,["H639"]],[15,18,["H776"]],[18,21,["H7812"]],[21,23,["H559"]],[23,24,["H3467"]],[24,26,["H4428"]]]},{"k":8361,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H4100"]],[7,12,["H559"]],[12,13,["H589"]],[13,15,["H61"]],[15,17,["H490"]],[17,18,["H802"]],[18,21,["H376"]],[21,23,["H4191"]]]},{"k":8362,"v":[[0,3,["H8198"]],[3,5,["H8147"]],[5,6,["H1121"]],[6,9,["H8147"]],[9,11,["H5327"]],[11,14,["H7704"]],[14,18,["H369"]],[18,20,["H5337","H996"]],[20,24,["H259"]],[24,25,["H5221","(H853)"]],[25,27,["H259"]],[27,29,["H4191"]],[29,30,[]]]},{"k":8363,"v":[[0,2,["H2009"]],[2,4,["H3605"]],[4,5,["H4940"]],[5,7,["H6965"]],[7,8,["H5921"]],[8,10,["H8198"]],[10,13,["H559"]],[13,14,["H5414","(H853)"]],[14,17,["H5221"]],[17,19,["H251"]],[19,23,["H4191"]],[23,27,["H5315"]],[27,30,["H251"]],[30,31,["H834"]],[31,33,["H2026"]],[33,37,["H8045","(H853)"]],[37,39,["H3423"]],[39,40,["H1571"]],[40,45,["H3518","(H853)"]],[45,47,["H1513"]],[47,48,["H834"]],[48,50,["H7604"]],[50,53,["H1115"]],[53,54,["H7604"]],[54,57,["H376"]],[57,59,["H8034"]],[59,61,["H7611"]],[61,62,["H5921","H6440"]],[62,64,["H127"]]]},{"k":8364,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H802"]],[7,8,["H1980"]],[8,11,["H1004"]],[11,13,["H589"]],[13,16,["H6680"]],[16,17,["H5921"]],[17,18,[]]]},{"k":8365,"v":[[0,3,["H802"]],[3,5,["H8621"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H4428"]],[9,11,["H113"]],[11,13,["H4428"]],[13,15,["H5771"]],[15,17,["H5921"]],[17,20,["H5921"]],[20,22,["H1"]],[22,23,["H1004"]],[23,26,["H4428"]],[26,29,["H3678"]],[29,31,["H5355"]]]},{"k":8366,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H1696"]],[6,8,["H413"]],[8,10,["H935"]],[10,12,["H413"]],[12,17,["H3808"]],[17,18,["H5060"]],[18,20,["H3254"]],[20,21,["H5750"]]]},{"k":8367,"v":[[0,2,["H559"]],[2,6,["H4994"]],[6,9,["H4428"]],[9,10,["H2142","(H853)"]],[10,12,["H3068"]],[12,14,["H430"]],[14,18,["H3808"]],[18,21,["H1350"]],[21,23,["H1818"]],[23,25,["H7843"]],[25,27,["H7235"]],[27,30,["H8045","(H853)"]],[30,32,["H1121"]],[32,35,["H559"]],[35,38,["H3068"]],[38,39,["H2416"]],[39,42,["H518"]],[42,44,["H4480","H8185"]],[44,47,["H1121"]],[47,48,["H5307"]],[48,51,["H776"]]]},{"k":8368,"v":[[0,3,["H802"]],[3,4,["H559"]],[4,7,["H8198"]],[7,10,["H4994"]],[10,11,["H1696"]],[11,13,["H1697"]],[13,14,["H413"]],[14,16,["H113"]],[16,18,["H4428"]],[18,21,["H559"]],[21,23,["H1696"]]]},{"k":8369,"v":[[0,3,["H802"]],[3,4,["H559"]],[4,5,["H4100"]],[5,9,["H2803"]],[9,10,["H2063"]],[10,13,["H5921"]],[13,15,["H5971"]],[15,17,["H430"]],[17,20,["H4428"]],[20,22,["H4480","H1696"]],[22,23,["H2088"]],[23,24,["H1697"]],[24,29,["H818"]],[29,33,["H4428"]],[33,35,["H1115"]],[35,38,["H7725","(H853)"]],[38,40,["H5080"]]]},{"k":8370,"v":[[0,1,["H3588"]],[1,5,["H4191","H4191"]],[5,9,["H4325"]],[9,10,["H5064"]],[10,13,["H776"]],[13,14,["H834"]],[14,15,["H3808"]],[15,18,["H622"]],[18,20,["H3808"]],[20,22,["H430"]],[22,23,["H5375"]],[23,25,["H5315"]],[25,29,["H2803"]],[29,30,["H4284"]],[30,33,["H5080"]],[33,36,["H5080"]],[36,37,["H4480"]],[37,38,[]]]},{"k":8371,"v":[[0,1,["H6258"]],[1,3,["H834"]],[3,6,["H935"]],[6,8,["H1696"]],[8,9,["(H853)"]],[9,10,["H2088"]],[10,11,["H1697"]],[11,12,["H413"]],[12,14,["H113"]],[14,16,["H4428"]],[16,19,["H3588"]],[19,21,["H5971"]],[21,25,["H3372"]],[25,28,["H8198"]],[28,29,["H559"]],[29,32,["H4994"]],[32,33,["H1696"]],[33,34,["H413"]],[34,36,["H4428"]],[36,39,["H194"]],[39,42,["H4428"]],[42,44,["H6213","(H853)"]],[44,46,["H1697"]],[46,49,["H519"]]]},{"k":8372,"v":[[0,1,["H3588"]],[1,3,["H4428"]],[3,5,["H8085"]],[5,7,["H5337","(H853)"]],[7,9,["H519"]],[9,13,["H4480","H3709"]],[13,16,["H376"]],[16,19,["H8045"]],[19,23,["H1121"]],[23,24,["H3162"]],[24,28,["H4480","H5159"]],[28,30,["H430"]]]},{"k":8373,"v":[[0,3,["H8198"]],[3,4,["H559"]],[4,6,["H1697"]],[6,9,["H113"]],[9,11,["H4428"]],[11,13,["H4994"]],[13,14,["H1961"]],[14,15,["H4496"]],[15,16,["H3588"]],[16,19,["H4397"]],[19,21,["H430"]],[21,22,["H3651"]],[22,25,["H113"]],[25,27,["H4428"]],[27,29,["H8085"]],[29,30,["H2896"]],[30,32,["H7451"]],[32,35,["H3068"]],[35,37,["H430"]],[37,39,["H1961"]],[39,40,["H5973"]],[40,41,[]]]},{"k":8374,"v":[[0,3,["H4428"]],[3,4,["H6030"]],[4,6,["H559"]],[6,7,["H413"]],[7,9,["H802"]],[9,10,["H3582"]],[10,11,["H408"]],[11,12,["H4480"]],[12,16,["H4994"]],[16,18,["H1697"]],[18,19,["H834"]],[19,20,["H595"]],[20,22,["H7592"]],[22,26,["H802"]],[26,27,["H559"]],[27,30,["H113"]],[30,32,["H4428"]],[32,33,["H4994"]],[33,34,["H1696"]]]},{"k":8375,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,8,["H3027"]],[8,10,["H3097"]],[10,11,["H854"]],[11,14,["H3605"]],[14,15,["H2063"]],[15,18,["H802"]],[18,19,["H6030"]],[19,21,["H559"]],[21,24,["H5315"]],[24,25,["H2416"]],[25,27,["H113"]],[27,29,["H4428"]],[29,32,["H518","H786"]],[32,35,["H3231"]],[35,40,["H8041"]],[40,42,["H4480","H3605"]],[42,43,["H834"]],[43,45,["H113"]],[45,47,["H4428"]],[47,49,["H1696"]],[49,50,["H3588"]],[50,52,["H5650"]],[52,53,["H3097"]],[53,54,["H1931"]],[54,55,["H6680"]],[55,58,["H1931"]],[58,59,["H7760","(H853)"]],[59,60,["H3605"]],[60,61,["H428"]],[61,62,["H1697"]],[62,65,["H6310"]],[65,68,["H8198"]]]},{"k":8376,"v":[[0,1,["H5668"]],[1,3,["H5437","(H853)"]],[3,5,["H6440"]],[5,7,["H1697"]],[7,10,["H5650"]],[10,11,["H3097"]],[11,12,["H6213","(H853)"]],[12,13,["H2088"]],[13,14,["H1697"]],[14,17,["H113"]],[17,19,["H2450"]],[19,23,["H2451"]],[23,26,["H4397"]],[26,28,["H430"]],[28,30,["H3045","(H853)"]],[30,31,["H3605"]],[31,33,["H834"]],[33,37,["H776"]]]},{"k":8377,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3097"]],[6,7,["H2009"]],[7,8,["H4994"]],[8,11,["H6213","(H853)"]],[11,12,["H2088"]],[12,13,["H1697"]],[13,14,["H1980"]],[14,16,["H7725","(H853)"]],[16,19,["H5288"]],[19,20,["H53"]],[20,21,[]]]},{"k":8378,"v":[[0,2,["H3097"]],[2,3,["H5307"]],[3,6,["H776"]],[6,7,["H413"]],[7,9,["H6440"]],[9,12,["H7812"]],[12,14,["H1288","(H853)"]],[14,16,["H4428"]],[16,18,["H3097"]],[18,19,["H559"]],[19,21,["H3117"]],[21,23,["H5650"]],[23,24,["H3045"]],[24,25,["H3588"]],[25,28,["H4672"]],[28,29,["H2580"]],[29,32,["H5869"]],[32,34,["H113"]],[34,36,["H4428"]],[36,38,["H834"]],[38,40,["H4428"]],[40,42,["H6213","(H853)"]],[42,44,["H1697"]],[44,47,["H5650"]]]},{"k":8379,"v":[[0,2,["H3097"]],[2,3,["H6965"]],[3,5,["H1980"]],[5,7,["H1650"]],[7,9,["H935","(H853)"]],[9,10,["H53"]],[10,12,["H3389"]]]},{"k":8380,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H5437"]],[7,8,["H413"]],[8,11,["H1004"]],[11,15,["H3808"]],[15,16,["H7200"]],[16,18,["H6440"]],[18,20,["H53"]],[20,21,["H5437"]],[21,22,["H413"]],[22,25,["H1004"]],[25,27,["H7200"]],[27,28,["H3808"]],[28,30,["H4428"]],[30,31,["H6440"]]]},{"k":8381,"v":[[0,3,["H3605"]],[3,4,["H3478"]],[4,6,["H1961"]],[6,7,["H3808","H376"]],[7,11,["H3966"]],[11,12,["H1984"]],[12,14,["H53"]],[14,17,["H3303"]],[17,20,["H4480","H3709"]],[20,23,["H7272"]],[23,25,["H5704"]],[25,30,["H6936"]],[30,32,["H1961"]],[32,33,["H3808"]],[33,34,["H3971"]],[34,36,[]]]},{"k":8382,"v":[[0,4,["H1548","(H853)"]],[4,6,["H7218"]],[6,9,["H1961"]],[9,13,["H4480","H7093","H3117","H3117"]],[13,14,["H834"]],[14,16,["H1548"]],[16,18,["H3588"]],[18,22,["H3513"]],[22,23,["H5921"]],[23,27,["H1548"]],[27,30,["H8254","(H853)"]],[30,32,["H8181"]],[32,35,["H7218"]],[35,38,["H3967"]],[38,39,["H8255"]],[39,42,["H4428"]],[42,43,["H68"]]]},{"k":8383,"v":[[0,3,["H53"]],[3,6,["H3205"]],[6,7,["H7969"]],[7,8,["H1121"]],[8,10,["H259"]],[10,11,["H1323"]],[11,13,["H8034"]],[13,15,["H8559"]],[15,16,["H1931"]],[16,17,["H1961"]],[17,19,["H802"]],[19,22,["H3303"]],[22,23,["H4758"]]]},{"k":8384,"v":[[0,2,["H53"]],[2,3,["H3427"]],[3,6,["H8141","H3117"]],[6,8,["H3389"]],[8,10,["H7200"]],[10,11,["H3808"]],[11,13,["H4428"]],[13,14,["H6440"]]]},{"k":8385,"v":[[0,2,["H53"]],[2,3,["H7971"]],[3,4,["H413"]],[4,5,["H3097"]],[5,8,["H7971"]],[8,10,["H413"]],[10,12,["H4428"]],[12,15,["H14"]],[15,16,["H3808"]],[16,17,["H935"]],[17,18,["H413"]],[18,23,["H7971"]],[23,24,["H5750"]],[24,27,["H8145"]],[27,29,["H14"]],[29,30,["H3808"]],[30,31,["H935"]]]},{"k":8386,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H5650"]],[6,7,["H7200"]],[7,8,["H3097"]],[8,9,["H2513"]],[9,11,["H413"]],[11,12,["H3027"]],[12,16,["H8184"]],[16,17,["H8033"]],[17,18,["H1980"]],[18,20,["H3341"]],[20,23,["H784"]],[23,25,["H53"]],[25,26,["H5650"]],[26,27,["H3341","(H853)"]],[27,29,["H2513"]],[29,31,["H784"]]]},{"k":8387,"v":[[0,2,["H3097"]],[2,3,["H6965"]],[3,5,["H935"]],[5,6,["H413"]],[6,7,["H53"]],[7,10,["H1004"]],[10,12,["H559"]],[12,13,["H413"]],[13,15,["H4100"]],[15,18,["H5650"]],[18,19,["H3341","(H853)"]],[19,21,["H2513"]],[21,23,["H784"]]]},{"k":8388,"v":[[0,2,["H53"]],[2,3,["H559","H413"]],[3,4,["H3097"]],[4,5,["H2009"]],[5,7,["H7971"]],[7,8,["H413"]],[8,10,["H559"]],[10,11,["H935"]],[11,12,["H2008"]],[12,16,["H7971"]],[16,18,["H413"]],[18,20,["H4428"]],[20,22,["H559"]],[22,23,["H4100"]],[23,25,["H589"]],[25,26,["H935"]],[26,28,["H4480","H1650"]],[28,32,["H2896"]],[32,38,["H8033"]],[38,39,["H5750"]],[39,40,["H6258"]],[40,44,["H7200"]],[44,46,["H4428"]],[46,47,["H6440"]],[47,49,["H518"]],[49,51,["H3426"]],[51,53,["H5771"]],[53,58,["H4191"]],[58,59,[]]]},{"k":8389,"v":[[0,2,["H3097"]],[2,3,["H935"]],[3,4,["H413"]],[4,6,["H4428"]],[6,8,["H5046"]],[8,14,["H7121"]],[14,15,["H413"]],[15,16,["H53"]],[16,18,["H935"]],[18,19,["H413"]],[19,21,["H4428"]],[21,23,["H7812"]],[23,25,["H5921"]],[25,27,["H639"]],[27,30,["H776"]],[30,31,["H6440"]],[31,33,["H4428"]],[33,36,["H4428"]],[36,37,["H5401"]],[37,38,["H53"]]]},{"k":8390,"v":[[0,5,["H1961"]],[5,6,["H4480","H310"]],[6,7,["H3651"]],[7,9,["H53"]],[9,10,["H6213"]],[10,12,["H4818"]],[12,14,["H5483"]],[14,16,["H2572"]],[16,17,["H376"]],[17,19,["H7323"]],[19,20,["H6440"]],[20,21,[]]]},{"k":8391,"v":[[0,2,["H53"]],[2,5,["H7925"]],[5,7,["H5975"]],[7,8,["H5921","H3027"]],[8,10,["H1870"]],[10,13,["H8179"]],[13,16,["H1961"]],[16,20,["H3605"]],[20,21,["H376"]],[21,22,["H834"]],[22,23,["H1961"]],[23,25,["H7379"]],[25,26,["H935"]],[26,27,["H413"]],[27,29,["H4428"]],[29,31,["H4941"]],[31,33,["H53"]],[33,34,["H7121"]],[34,35,["H413"]],[35,38,["H559"]],[38,39,["H4480","H2088"]],[39,40,["H335"]],[40,41,["H5892"]],[41,43,["H859"]],[43,46,["H559"]],[46,48,["H5650"]],[48,51,["H4480","H259"]],[51,54,["H7626"]],[54,56,["H3478"]]]},{"k":8392,"v":[[0,2,["H53"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H7200"]],[6,8,["H1697"]],[8,10,["H2896"]],[10,12,["H5228"]],[12,16,["H369"]],[16,21,["H4428"]],[21,23,["H8085"]],[23,24,[]]]},{"k":8393,"v":[[0,1,["H53"]],[1,2,["H559"]],[2,5,["H4310"]],[5,8,["H7760"]],[8,9,["H8199"]],[9,12,["H776"]],[12,14,["H3605"]],[14,15,["H376"]],[15,16,["H834"]],[16,17,["H1961"]],[17,19,["H7379"]],[19,21,["H4941"]],[21,23,["H935"]],[23,24,["H5921"]],[24,31,["H6663"]]]},{"k":8394,"v":[[0,3,["H1961"]],[3,8,["H376"]],[8,10,["H7126"]],[10,16,["H7812"]],[16,19,["H7971","(H853)"]],[19,21,["H3027"]],[21,23,["H2388"]],[23,26,["H5401"]],[26,27,[]]]},{"k":8395,"v":[[0,3,["H2088"]],[3,4,["H1697"]],[4,5,["H6213"]],[5,6,["H53"]],[6,8,["H3605"]],[8,9,["H3478"]],[9,10,["H834"]],[10,11,["H935"]],[11,12,["H413"]],[12,14,["H4428"]],[14,16,["H4941"]],[16,18,["H53"]],[18,19,["H1589","(H853)"]],[19,21,["H3820"]],[21,24,["H376"]],[24,26,["H3478"]]]},{"k":8396,"v":[[0,5,["H1961"]],[5,6,["H4480","H7093"]],[6,7,["H705"]],[7,8,["H8141"]],[8,10,["H53"]],[10,11,["H559"]],[11,12,["H413"]],[12,14,["H4428"]],[14,17,["H4994"]],[17,20,["H1980"]],[20,22,["H7999","(H853)"]],[22,24,["H5088"]],[24,25,["H834"]],[25,28,["H5087"]],[28,31,["H3068"]],[31,33,["H2275"]]]},{"k":8397,"v":[[0,1,["H3588"]],[1,3,["H5650"]],[3,4,["H5087"]],[4,6,["H5088"]],[6,9,["H3427"]],[9,11,["H1650"]],[11,13,["H758"]],[13,14,["H559"]],[14,15,["H518"]],[15,17,["H3068"]],[17,21,["H7725"]],[21,24,["H3389"]],[24,28,["H5647","(H853)"]],[28,30,["H3068"]]]},{"k":8398,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H1980"]],[7,9,["H7965"]],[9,12,["H6965"]],[12,14,["H1980"]],[14,16,["H2275"]]]},{"k":8399,"v":[[0,2,["H53"]],[2,3,["H7971"]],[3,4,["H7270"]],[4,6,["H3605"]],[6,8,["H7626"]],[8,10,["H3478"]],[10,11,["H559"]],[11,16,["H8085","(H853)"]],[16,18,["H6963"]],[18,21,["H7782"]],[21,25,["H559"]],[25,26,["H53"]],[26,27,["H4427"]],[27,29,["H2275"]]]},{"k":8400,"v":[[0,2,["H854"]],[2,3,["H53"]],[3,4,["H1980"]],[4,6,["H3967"]],[6,7,["H376"]],[7,10,["H4480","H3389"]],[10,13,["H7121"]],[13,16,["H1980"]],[16,19,["H8537"]],[19,22,["H3045"]],[22,23,["H3808"]],[23,24,["H3605"]],[24,25,["H1697"]]]},{"k":8401,"v":[[0,2,["H53"]],[2,3,["H7971"]],[3,4,["(H853)"]],[4,5,["H302"]],[5,7,["H1526"]],[7,8,["H1732"]],[8,9,["H3289"]],[9,12,["H5892"]],[12,15,["H4480","H1542"]],[15,18,["H2076","(H853)"]],[18,19,["H2077"]],[19,22,["H7195"]],[22,23,["H1961"]],[23,24,["H533"]],[24,27,["H5971"]],[27,28,["H7227"]],[28,29,["H1980"]],[29,30,["H854"]],[30,31,["H53"]]]},{"k":8402,"v":[[0,3,["H935"]],[3,5,["H5046"]],[5,6,["H413"]],[6,7,["H1732"]],[7,8,["H559"]],[8,10,["H3820"]],[10,13,["H376"]],[13,15,["H3478"]],[15,16,["H1961"]],[16,17,["H310"]],[17,18,["H53"]]]},{"k":8403,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H3605"]],[5,7,["H5650"]],[7,8,["H834"]],[8,10,["H854"]],[10,13,["H3389"]],[13,14,["H6965"]],[14,18,["H1272"]],[18,19,["H3588"]],[19,21,["H1961"]],[21,22,["H3808"]],[22,24,["H6413"]],[24,25,["H6440"]],[25,26,["H53"]],[26,28,["H4116"]],[28,30,["H1980"]],[30,31,["H6435"]],[31,33,["H5381"]],[33,35,["H4116"]],[35,37,["H5080","(H853)"]],[37,38,["H7451"]],[38,39,["H5921"]],[39,42,["H5221"]],[42,44,["H5892"]],[44,47,["H6310"]],[47,50,["H2719"]]]},{"k":8404,"v":[[0,3,["H4428"]],[3,4,["H5650"]],[4,5,["H559"]],[5,6,["H413"]],[6,8,["H4428"]],[8,9,["H2009"]],[9,11,["H5650"]],[11,16,["H834","H3605"]],[16,18,["H113"]],[18,20,["H4428"]],[20,22,["H977"]]]},{"k":8405,"v":[[0,3,["H4428"]],[3,5,["H3318"]],[5,7,["H3605"]],[7,9,["H1004"]],[9,10,["H7272"]],[10,14,["H4428"]],[14,15,["H5800","(H853)"]],[15,16,["H6235"]],[16,17,["H802"]],[17,20,["H6370"]],[20,22,["H8104"]],[22,24,["H1004"]]]},{"k":8406,"v":[[0,3,["H4428"]],[3,5,["H3318"]],[5,7,["H3605"]],[7,9,["H5971"]],[9,10,["H7272"]],[10,13,["H5975"]],[13,16,["H1004"]],[16,20,["H4801"]]]},{"k":8407,"v":[[0,2,["H3605"]],[2,4,["H5650"]],[4,6,["H5674"]],[6,7,["H5921","H3027"]],[7,10,["H3605"]],[10,12,["H3774"]],[12,14,["H3605"]],[14,16,["H6432"]],[16,18,["H3605"]],[18,20,["H1663"]],[20,21,["H8337"]],[21,22,["H3967"]],[22,23,["H376"]],[23,24,["H834"]],[24,25,["H935"]],[25,26,["H7272"]],[26,29,["H4480","H1661"]],[29,31,["H5674"]],[31,32,["H5921","H6440"]],[32,34,["H4428"]]]},{"k":8408,"v":[[0,2,["H559"]],[2,4,["H4428"]],[4,5,["H413"]],[5,6,["H863"]],[6,8,["H1663"]],[8,9,["H4100"]],[9,10,["H1980"]],[10,11,["H859"]],[11,12,["H1571"]],[12,13,["H854"]],[13,15,["H7725"]],[15,18,["H4725"]],[18,20,["H3427"]],[20,21,["H5973"]],[21,23,["H4428"]],[23,24,["H3588"]],[24,25,["H859"]],[25,28,["H5237"]],[28,30,["H1571"]],[30,32,["H1540"]]]},{"k":8409,"v":[[0,3,["H935"]],[3,5,["H8543"]],[5,9,["H3117"]],[9,13,["H1980"]],[13,15,["H5128"]],[15,16,["H5973"]],[16,19,["H589"]],[19,20,["H1980"]],[20,21,["H5921","H834"]],[21,22,["H589"]],[22,23,["H1980"]],[23,24,["H7725"]],[24,28,["H7725","(H853)"]],[28,30,["H251"]],[30,31,["H2617"]],[31,33,["H571"]],[33,35,["H5973"]],[35,36,[]]]},{"k":8410,"v":[[0,2,["H863"]],[2,3,["H6030","(H853)"]],[3,5,["H4428"]],[5,7,["H559"]],[7,10,["H3068"]],[10,11,["H2416"]],[11,15,["H113"]],[15,17,["H4428"]],[17,18,["H2416"]],[18,19,["H3588","H518"]],[19,21,["H834"]],[21,22,["H4725"]],[22,24,["H113"]],[24,26,["H4428"]],[26,28,["H1961"]],[28,29,["H518"]],[29,31,["H4194"]],[31,32,["H518"]],[32,33,["H2416"]],[33,34,["H3588"]],[34,35,["H8033"]],[35,39,["H5650"]],[39,40,["H1961"]]]},{"k":8411,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H863"]],[5,6,["H1980"]],[6,9,["H5674"]],[9,11,["H863"]],[11,13,["H1663"]],[13,15,["H5674"]],[15,17,["H3605"]],[17,19,["H376"]],[19,21,["H3605"]],[21,24,["H2945"]],[24,25,["H834"]],[25,27,["H854"]],[27,28,[]]]},{"k":8412,"v":[[0,2,["H3605"]],[2,4,["H776"]],[4,5,["H1058"]],[5,8,["H1419"]],[8,9,["H6963"]],[9,11,["H3605"]],[11,13,["H5971"]],[13,15,["H5674"]],[15,17,["H4428"]],[17,21,["H5674"]],[21,23,["H5158"]],[23,24,["H6939"]],[24,26,["H3605"]],[26,28,["H5971"]],[28,30,["H5674"]],[30,31,["H5921","H6440"]],[31,33,["H1870"]],[33,34,["(H853)"]],[34,36,["H4057"]]]},{"k":8413,"v":[[0,2,["H2009"]],[2,3,["H6659"]],[3,4,["H1571"]],[4,6,["H3605"]],[6,8,["H3881"]],[8,10,["H854"]],[10,12,["H5375","(H853)"]],[12,14,["H727"]],[14,17,["H1285"]],[17,19,["H430"]],[19,23,["H3332","(H853)"]],[23,25,["H727"]],[25,27,["H430"]],[27,29,["H54"]],[29,31,["H5927"]],[31,32,["H5704"]],[32,33,["H3605"]],[33,35,["H5971"]],[35,37,["H8552"]],[37,38,["H5674"]],[38,40,["H4480"]],[40,42,["H5892"]]]},{"k":8414,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H6659"]],[6,8,["H7725","(H853)"]],[8,10,["H727"]],[10,12,["H430"]],[12,15,["H5892"]],[15,16,["H518"]],[16,19,["H4672"]],[19,20,["H2580"]],[20,23,["H5869"]],[23,26,["H3068"]],[26,31,["H7725"]],[31,33,["H7200"]],[33,39,["H5116"]]]},{"k":8415,"v":[[0,2,["H518"]],[2,4,["H3541"]],[4,5,["H559"]],[5,8,["H3808"]],[8,9,["H2654"]],[9,12,["H2009"]],[12,18,["H6213"]],[18,21,["H834"]],[21,22,["H5869"]],[22,23,["H2896"]],[23,25,[]]]},{"k":8416,"v":[[0,2,["H4428"]],[2,3,["H559"]],[3,5,["H413"]],[5,6,["H6659"]],[6,8,["H3548"]],[8,11,["H859"]],[11,13,["H7200"]],[13,14,["H7725"]],[14,17,["H5892"]],[17,19,["H7965"]],[19,22,["H8147"]],[22,23,["H1121"]],[23,24,["H854"]],[24,26,["H290"]],[26,28,["H1121"]],[28,30,["H3083"]],[30,32,["H1121"]],[32,34,["H54"]]]},{"k":8417,"v":[[0,1,["H7200"]],[1,2,["H595"]],[2,4,["H4102"]],[4,7,["H6160"]],[7,10,["H4057"]],[10,11,["H5704"]],[11,13,["H935"]],[13,14,["H1697"]],[14,15,["H4480","H5973"]],[15,18,["H5046"]],[18,19,[]]]},{"k":8418,"v":[[0,1,["H6659"]],[1,4,["H54"]],[4,5,["H7725","(H853)"]],[5,7,["H727"]],[7,9,["H430"]],[9,12,["H3389"]],[12,15,["H3427"]],[15,16,["H8033"]]]},{"k":8419,"v":[[0,2,["H1732"]],[2,4,["H5927"]],[4,7,["H4608"]],[7,10,["H2132"]],[10,12,["H1058"]],[12,16,["H5927"]],[16,20,["H7218"]],[20,21,["H2645"]],[21,23,["H1931"]],[23,24,["H1980"]],[24,25,["H3182"]],[25,27,["H3605"]],[27,29,["H5971"]],[29,30,["H834"]],[30,32,["H854"]],[32,34,["H2645"]],[34,36,["H376"]],[36,38,["H7218"]],[38,42,["H5927"]],[42,43,["H1058"]],[43,47,["H5927"]]]},{"k":8420,"v":[[0,3,["H5046"]],[3,4,["H1732"]],[4,5,["H559"]],[5,6,["H302"]],[6,10,["H7194"]],[10,11,["H5973"]],[11,12,["H53"]],[12,14,["H1732"]],[14,15,["H559"]],[15,17,["H3068"]],[17,20,["H4994"]],[20,21,["(H853)"]],[21,23,["H6098"]],[23,25,["H302"]],[25,27,["H5528"]]]},{"k":8421,"v":[[0,5,["H1961"]],[5,8,["H1732"]],[8,10,["H935"]],[10,11,["H5704"]],[11,13,["H7218"]],[13,17,["H834"]],[17,19,["H7812"]],[19,20,["H430"]],[20,21,["H2009"]],[21,22,["H2365"]],[22,24,["H757"]],[24,27,["H7125"]],[27,31,["H3801"]],[31,32,["H7167"]],[32,34,["H127"]],[34,35,["H5921"]],[35,37,["H7218"]]]},{"k":8422,"v":[[0,3,["H1732"]],[3,4,["H559"]],[4,5,["H518"]],[5,8,["H5674"]],[8,9,["H854"]],[9,14,["H1961"]],[14,16,["H4853"]],[16,17,["H5921"]],[17,18,[]]]},{"k":8423,"v":[[0,2,["H518"]],[2,4,["H7725"]],[4,7,["H5892"]],[7,9,["H559"]],[9,11,["H53"]],[11,12,["H589"]],[12,14,["H1961"]],[14,16,["H5650"]],[16,18,["H4428"]],[18,20,["H589"]],[20,24,["H1"]],[24,25,["H5650"]],[25,26,["H4480","H227"]],[26,29,["H589"]],[29,30,["H6258"]],[30,34,["H5650"]],[34,40,["H6565","(H853)"]],[40,42,["H6098"]],[42,44,["H302"]]]},{"k":8424,"v":[[0,4,["H3808"]],[4,5,["H8033"]],[5,6,["H5973"]],[6,8,["H6659"]],[8,10,["H54"]],[10,12,["H3548"]],[12,16,["H1961"]],[16,18,["H3605"]],[18,19,["H1697"]],[19,20,["H834"]],[20,23,["H8085"]],[23,28,["H4480","H1004","H4428"]],[28,31,["H5046"]],[31,34,["H6659"]],[34,36,["H54"]],[36,38,["H3548"]]]},{"k":8425,"v":[[0,1,["H2009"]],[1,4,["H8033"]],[4,5,["H5973"]],[5,8,["H8147"]],[8,9,["H1121"]],[9,10,["H290"]],[10,11,["H6659"]],[11,14,["H3083"]],[14,15,["H54"]],[15,18,["H3027"]],[18,22,["H7971"]],[22,23,["H413"]],[23,25,["H3605"]],[25,26,["H1697"]],[26,27,["H834"]],[27,30,["H8085"]]]},{"k":8426,"v":[[0,2,["H2365"]],[2,3,["H1732"]],[3,4,["H7463"]],[4,5,["H935"]],[5,8,["H5892"]],[8,10,["H53"]],[10,11,["H935"]],[11,13,["H3389"]]]},{"k":8427,"v":[[0,3,["H1732"]],[3,6,["H4592"]],[6,7,["H5674"]],[7,9,["H4480","H7218"]],[9,13,["H2009"]],[13,14,["H6717"]],[14,16,["H5288"]],[16,18,["H4648"]],[18,19,["H7125"]],[19,23,["H6776"]],[23,25,["H2543"]],[25,26,["H2280"]],[26,28,["H5921"]],[28,31,["H3967"]],[31,34,["H3899"]],[34,37,["H3967"]],[37,40,["H6778"]],[40,43,["H3967"]],[43,46,["H7019"]],[46,49,["H5035"]],[49,51,["H3196"]]]},{"k":8428,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H6717"]],[6,7,["H4100"]],[7,11,["H428"]],[11,13,["H6717"]],[13,14,["H559"]],[14,16,["H2543"]],[16,20,["H4428"]],[20,21,["H1004"]],[21,24,["H7392"]],[24,27,["H3899"]],[27,30,["H7019"]],[30,34,["H5288"]],[34,36,["H398"]],[36,39,["H3196"]],[39,44,["H3287"]],[44,47,["H4057"]],[47,49,["H8354"]]]},{"k":8429,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H346"]],[6,9,["H113"]],[9,10,["H1121"]],[10,12,["H6717"]],[12,13,["H559"]],[13,14,["H413"]],[14,16,["H4428"]],[16,17,["H2009"]],[17,19,["H3427"]],[19,21,["H3389"]],[21,22,["H3588"]],[22,24,["H559"]],[24,26,["H3117"]],[26,29,["H1004"]],[29,31,["H3478"]],[31,32,["H7725"]],[32,33,["(H853)"]],[33,35,["H4468"]],[35,38,["H1"]]]},{"k":8430,"v":[[0,2,["H559"]],[2,4,["H4428"]],[4,6,["H6717"]],[6,7,["H2009"]],[7,10,["H3605"]],[10,11,["H834"]],[11,14,["H4648"]],[14,16,["H6717"]],[16,17,["H559"]],[17,20,["H7812"]],[20,25,["H4672"]],[25,26,["H2580"]],[26,29,["H5869"]],[29,31,["H113"]],[31,33,["H4428"]]]},{"k":8431,"v":[[0,3,["H4428"]],[3,4,["H1732"]],[4,5,["H935"]],[5,6,["H5704"]],[6,7,["H980"]],[7,8,["H2009"]],[8,9,["H4480","H8033"]],[9,11,["H3318"]],[11,13,["H376"]],[13,16,["H4480","H4940"]],[16,19,["H1004"]],[19,21,["H7586"]],[21,23,["H8034"]],[23,25,["H8096"]],[25,27,["H1121"]],[27,29,["H1617"]],[29,32,["H3318"]],[32,34,["H7043"]],[34,38,["H3318"]]]},{"k":8432,"v":[[0,3,["H5619"]],[3,4,["H68"]],[4,5,["(H853)"]],[5,6,["H1732"]],[6,9,["H3605"]],[9,11,["H5650"]],[11,13,["H4428"]],[13,14,["H1732"]],[14,16,["H3605"]],[16,18,["H5971"]],[18,20,["H3605"]],[20,23,["H1368"]],[23,28,["H4480","H3225"]],[28,32,["H4480","H8040"]]]},{"k":8433,"v":[[0,2,["H3541"]],[2,3,["H559"]],[3,4,["H8096"]],[4,7,["H7043"]],[7,9,["H3318"]],[9,11,["H3318"]],[11,13,["H1818"]],[13,14,["H376"]],[14,17,["H376"]],[17,19,["H1100"]]]},{"k":8434,"v":[[0,2,["H3068"]],[2,4,["H7725"]],[4,5,["H5921"]],[5,7,["H3605"]],[7,9,["H1818"]],[9,12,["H1004"]],[12,14,["H7586"]],[14,16,["H834"]],[16,17,["H8478"]],[17,20,["H4427"]],[20,23,["H3068"]],[23,25,["H5414","(H853)"]],[25,27,["H4410"]],[27,30,["H3027"]],[30,32,["H53"]],[32,34,["H1121"]],[34,36,["H2009"]],[36,42,["H7451"]],[42,43,["H3588"]],[43,44,["H859"]],[44,47,["H1818"]],[47,48,["H376"]]]},{"k":8435,"v":[[0,2,["H559"]],[2,3,["H52"]],[3,5,["H1121"]],[5,7,["H6870"]],[7,8,["H413"]],[8,10,["H4428"]],[10,11,["H4100"]],[11,13,["H2088"]],[13,14,["H4191"]],[14,15,["H3611"]],[15,16,["H7043","(H853)"]],[16,18,["H113"]],[18,20,["H4428"]],[20,24,["H5674"]],[24,27,["H4994"]],[27,30,["H5493","(H853)"]],[30,32,["H7218"]]]},{"k":8436,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H4100"]],[5,13,["H1121"]],[13,15,["H6870"]],[15,16,["H3541"]],[16,19,["H7043"]],[19,20,["H3588"]],[20,22,["H3068"]],[22,24,["H559"]],[24,27,["H7043","(H853)"]],[27,28,["H1732"]],[28,29,["H4310"]],[29,32,["H559"]],[32,33,["H4069"]],[33,36,["H6213"]],[36,37,["H3651"]]]},{"k":8437,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H52"]],[5,7,["H413"]],[7,8,["H3605"]],[8,10,["H5650"]],[10,11,["H2009"]],[11,13,["H1121"]],[13,14,["H834"]],[14,16,["H3318"]],[16,19,["H4480","H4578"]],[19,20,["H1245","(H853)"]],[20,22,["H5315"]],[22,25,["H637","H3588"]],[25,26,["H6258"]],[26,29,["H1145"]],[29,34,["H5117"]],[34,38,["H7043"]],[38,39,["H3588"]],[39,41,["H3068"]],[41,43,["H559"]],[43,44,[]]]},{"k":8438,"v":[[0,3,["H194"]],[3,6,["H3068"]],[6,8,["H7200"]],[8,11,["H6040"]],[11,15,["H3068"]],[15,17,["H7725"]],[17,19,["H2896"]],[19,20,["H8478"]],[20,22,["H7045"]],[22,23,["H2088"]],[23,24,["H3117"]]]},{"k":8439,"v":[[0,3,["H1732"]],[3,6,["H376"]],[6,7,["H1980"]],[7,10,["H1870"]],[10,11,["H8096"]],[11,13,["H1980"]],[13,16,["H2022"]],[16,17,["H6763"]],[17,19,["H5980"]],[19,22,["H7043"]],[22,25,["H1980"]],[25,27,["H5619"]],[27,28,["H68"]],[28,29,["H5980"]],[29,32,["H6080"]],[32,33,["H6083"]]]},{"k":8440,"v":[[0,3,["H4428"]],[3,5,["H3605"]],[5,7,["H5971"]],[7,8,["H834"]],[8,10,["H854"]],[10,12,["H935"]],[12,13,["H5889"]],[13,16,["H5314"]],[16,17,["H8033"]]]},{"k":8441,"v":[[0,2,["H53"]],[2,4,["H3605"]],[4,6,["H5971"]],[6,8,["H376"]],[8,10,["H3478"]],[10,11,["H935"]],[11,13,["H3389"]],[13,15,["H302"]],[15,16,["H854"]],[16,17,[]]]},{"k":8442,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H2365"]],[7,9,["H757"]],[9,10,["H1732"]],[10,11,["H7463"]],[11,13,["H935"]],[13,14,["H413"]],[14,15,["H53"]],[15,17,["H2365"]],[17,18,["H559"]],[18,19,["H413"]],[19,20,["H53"]],[20,22,["H2421"]],[22,24,["H4428"]],[24,26,["H2421"]],[26,28,["H4428"]]]},{"k":8443,"v":[[0,2,["H53"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H2365"]],[5,7,["H2088"]],[7,9,["H2617"]],[9,10,["(H853)"]],[10,12,["H7453"]],[12,13,["H4100"]],[13,14,["H1980"]],[14,16,["H3808"]],[16,17,["H854"]],[17,19,["H7453"]]]},{"k":8444,"v":[[0,2,["H2365"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H53"]],[5,6,["H3808"]],[6,7,["H3588"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H2088"]],[12,13,["H5971"]],[13,15,["H3605"]],[15,17,["H376"]],[17,19,["H3478"]],[19,20,["H977"]],[20,24,["H1961"]],[24,26,["H854"]],[26,30,["H3427"]]]},{"k":8445,"v":[[0,2,["H8145"]],[2,3,["H4310"]],[3,5,["H589"]],[5,6,["H5647"]],[6,9,["H3808"]],[9,13,["H6440"]],[13,16,["H1121"]],[16,17,["H834"]],[17,20,["H5647"]],[20,23,["H1"]],[23,24,["H6440"]],[24,25,["H3651"]],[25,28,["H1961"]],[28,31,["H6440"]]]},{"k":8446,"v":[[0,2,["H559"]],[2,3,["H53"]],[3,4,["H413"]],[4,5,["H302"]],[5,6,["H3051"]],[6,7,["H6098"]],[7,10,["H4100"]],[10,13,["H6213"]]]},{"k":8447,"v":[[0,2,["H302"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H53"]],[5,6,["H935"]],[6,8,["H413"]],[8,10,["H1"]],[10,11,["H6370"]],[11,12,["H834"]],[12,15,["H5117"]],[15,17,["H8104"]],[17,19,["H1004"]],[19,21,["H3605"]],[21,22,["H3478"]],[22,24,["H8085"]],[24,25,["H3588"]],[25,28,["H887"]],[28,29,["H854"]],[29,31,["H1"]],[31,35,["H3027"]],[35,37,["H3605"]],[37,38,["H834"]],[38,40,["H854"]],[40,43,["H2388"]]]},{"k":8448,"v":[[0,3,["H5186"]],[3,4,["H53"]],[4,6,["H168"]],[6,7,["H5921"]],[7,9,["H1406"]],[9,14,["H53"]],[14,15,["H935"]],[15,17,["H413"]],[17,19,["H1"]],[19,20,["H6370"]],[20,23,["H5869"]],[23,25,["H3605"]],[25,26,["H3478"]]]},{"k":8449,"v":[[0,3,["H6098"]],[3,5,["H302"]],[5,6,["H834"]],[6,8,["H3289"]],[8,10,["H1992"]],[10,11,["H3117"]],[11,13,["H834"]],[13,16,["H376"]],[16,18,["H7592"]],[18,21,["H1697"]],[21,23,["H430"]],[23,24,["H3651"]],[24,26,["H3605"]],[26,28,["H6098"]],[28,30,["H302"]],[30,31,["H1571"]],[31,33,["H1732"]],[33,34,["H1571"]],[34,36,["H53"]]]},{"k":8450,"v":[[0,2,["H302"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H53"]],[5,8,["H4994"]],[8,10,["H977"]],[10,11,["H8147","H6240"]],[11,12,["H505"]],[12,13,["H376"]],[13,17,["H6965"]],[17,19,["H7291"]],[19,20,["H310"]],[20,21,["H1732"]],[21,23,["H3915"]]]},{"k":8451,"v":[[0,4,["H935"]],[4,5,["H5921"]],[5,8,["H1931"]],[8,10,["H3023"]],[10,12,["H7504"]],[12,13,["H3027"]],[13,18,["H2729","(H853)"]],[18,20,["H3605"]],[20,22,["H5971"]],[22,23,["H834"]],[23,25,["H854"]],[25,28,["H5127"]],[28,32,["H5221","(H853)"]],[32,34,["H4428"]],[34,35,["H905"]]]},{"k":8452,"v":[[0,5,["H7725"]],[5,6,["H3605"]],[6,8,["H5971"]],[8,9,["H413"]],[9,12,["H376"]],[12,13,["H834"]],[13,14,["H859"]],[14,15,["H1245"]],[15,19,["H3605"]],[19,20,["H7725"]],[20,22,["H3605"]],[22,24,["H5971"]],[24,26,["H1961"]],[26,28,["H7965"]]]},{"k":8453,"v":[[0,3,["H1697"]],[3,4,["H3474"]],[4,5,["H53"]],[5,6,["H5869"]],[6,8,["H3605"]],[8,10,["H2205"]],[10,12,["H3478"]]]},{"k":8454,"v":[[0,2,["H559"]],[2,3,["H53"]],[3,4,["H7121"]],[4,5,["H4994"]],[5,6,["H2365"]],[6,8,["H757"]],[8,9,["H1571"]],[9,13,["H8085"]],[13,14,["H1571"]],[14,15,["H4100"]],[15,16,["H1931"]],[16,17,["H6310"]]]},{"k":8455,"v":[[0,3,["H2365"]],[3,5,["H935"]],[5,6,["H413"]],[6,7,["H53"]],[7,8,["H53"]],[8,9,["H559"]],[9,10,["H413"]],[10,12,["H559"]],[12,13,["H302"]],[13,15,["H1696"]],[15,17,["H2088"]],[17,18,["H1697"]],[18,21,["H6213"]],[21,22,["(H853)"]],[22,24,["H1697"]],[24,25,["H518"]],[25,26,["H369"]],[26,27,["H1696"]],[27,28,["H859"]]]},{"k":8456,"v":[[0,2,["H2365"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H53"]],[5,7,["H6098"]],[7,8,["H834"]],[8,9,["H302"]],[9,11,["H3289"]],[11,13,["H3808"]],[13,14,["H2896"]],[14,16,["H2063"]],[16,17,["H6471"]]]},{"k":8457,"v":[[0,2,["H559"]],[2,3,["H2365"]],[3,4,["H859"]],[4,5,["H3045","(H853)"]],[5,7,["H1"]],[7,10,["H376"]],[10,11,["H3588"]],[11,12,["H1992"]],[12,15,["H1368"]],[15,17,["H1992"]],[17,19,["H4751"]],[19,22,["H5315"]],[22,25,["H1677"]],[25,29,["H7909"]],[29,32,["H7704"]],[32,35,["H1"]],[35,38,["H376"]],[38,40,["H4421"]],[40,43,["H3808"]],[43,44,["H3885"]],[44,45,["H854"]],[45,47,["H5971"]]]},{"k":8458,"v":[[0,1,["H2009"]],[1,2,["H1931"]],[2,4,["H2244"]],[4,5,["H6258"]],[5,7,["H259"]],[7,8,["H6354"]],[8,9,["H176"]],[9,11,["H259"]],[11,13,["H4725"]],[13,19,["H1961"]],[19,25,["H5307"]],[25,28,["H8462"]],[28,31,["H8085","H8085"]],[31,34,["H559"]],[34,36,["H1961"]],[36,38,["H4046"]],[38,41,["H5971"]],[41,42,["H834"]],[42,43,["H310"]],[43,44,["H53"]]]},{"k":8459,"v":[[0,2,["H1931"]],[2,3,["H1571"]],[3,6,["H1121","H2428"]],[6,7,["H834"]],[7,8,["H3820"]],[8,12,["H3820"]],[12,15,["H738"]],[15,18,["H4549","H4549"]],[18,19,["H3588"]],[19,20,["H3605"]],[20,21,["H3478"]],[21,22,["H3045"]],[22,23,["H3588"]],[23,25,["H1"]],[25,29,["H1368"]],[29,32,["H834"]],[32,34,["H854"]],[34,37,["H2428"]],[37,38,["H1121"]]]},{"k":8460,"v":[[0,1,["H3588"]],[1,3,["H3289"]],[3,5,["H3605"]],[5,6,["H3478"]],[6,8,["H622"]],[8,9,["H622"]],[9,10,["H5921"]],[10,13,["H4480","H1835"]],[13,15,["H5704"]],[15,16,["H884"]],[16,19,["H2344"]],[19,20,["H834"]],[20,22,["H5921"]],[22,24,["H3220"]],[24,26,["H7230"]],[26,30,["H1980"]],[30,32,["H7128"]],[32,36,["H6440"]]]},{"k":8461,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,8,["H259"]],[8,9,["H4725"]],[9,10,["H834","H8033"]],[10,14,["H4672"]],[14,18,["H5117"]],[18,19,["H5921"]],[19,21,["H834"]],[21,23,["H2919"]],[23,24,["H5307"]],[24,25,["H5921"]],[25,27,["H127"]],[27,33,["H3605"]],[33,35,["H376"]],[35,36,["H834"]],[36,38,["H854"]],[38,42,["H3808"]],[42,44,["H3498"]],[44,46,["H1571"]],[46,48,["H259"]]]},{"k":8462,"v":[[0,2,["H518"]],[2,5,["H622"]],[5,6,["H413"]],[6,8,["H5892"]],[8,11,["H3605"]],[11,12,["H3478"]],[12,13,["H5375"]],[13,14,["H2256"]],[14,15,["H413"]],[15,16,["H1931"]],[16,17,["H5892"]],[17,21,["H5498"]],[21,23,["H5704"]],[23,25,["H5158"]],[25,26,["H5704","H834"]],[26,29,["H3808"]],[29,31,["H1571"]],[31,32,["H6872"]],[32,33,["H4672"]],[33,34,["H8033"]]]},{"k":8463,"v":[[0,2,["H53"]],[2,4,["H3605"]],[4,6,["H376"]],[6,8,["H3478"]],[8,9,["H559"]],[9,11,["H6098"]],[11,13,["H2365"]],[13,15,["H757"]],[15,17,["H2896"]],[17,20,["H4480","H6098"]],[20,22,["H302"]],[22,25,["H3068"]],[25,27,["H6680"]],[27,29,["H6565","(H853)"]],[29,31,["H2896"]],[31,32,["H6098"]],[32,34,["H302"]],[34,37,["H5668"]],[37,40,["H3068"]],[40,42,["H935"]],[42,43,["H7451"]],[43,44,["H413"]],[44,45,["H53"]]]},{"k":8464,"v":[[0,2,["H559"]],[2,3,["H2365"]],[3,4,["H413"]],[4,5,["H6659"]],[5,7,["H413"]],[7,8,["H54"]],[8,10,["H3548"]],[10,11,["H2063"]],[11,13,["H2063"]],[13,15,["H302"]],[15,16,["H3289","(H853)"]],[16,17,["H53"]],[17,20,["H2205"]],[20,22,["H3478"]],[22,24,["H2063"]],[24,26,["H2063"]],[26,28,["H589"]],[28,29,["H3289"]]]},{"k":8465,"v":[[0,1,["H6258"]],[1,3,["H7971"]],[3,4,["H4120"]],[4,6,["H5046"]],[6,7,["H1732"]],[7,8,["H559"]],[8,9,["H3885"]],[9,10,["H408"]],[10,12,["H3915"]],[12,15,["H6160"]],[15,18,["H4057"]],[18,19,["H1571"]],[19,20,["H5674"]],[20,22,["H5674"]],[22,23,["H6435"]],[23,25,["H4428"]],[25,28,["H1104"]],[28,30,["H3605"]],[30,32,["H5971"]],[32,33,["H834"]],[33,35,["H854"]],[35,36,[]]]},{"k":8466,"v":[[0,2,["H3083"]],[2,4,["H290"]],[4,5,["H5975"]],[5,7,["H5883"]],[7,8,["H3588"]],[8,10,["H3201"]],[10,11,["H3808"]],[11,13,["H7200"]],[13,15,["H935"]],[15,18,["H5892"]],[18,21,["H8198"]],[21,22,["H1980"]],[22,24,["H5046"]],[24,27,["H1992"]],[27,28,["H1980"]],[28,30,["H5046"]],[30,31,["H4428"]],[31,32,["H1732"]]]},{"k":8467,"v":[[0,3,["H5288"]],[3,4,["H7200"]],[4,7,["H5046"]],[7,8,["H53"]],[8,11,["H1980"]],[11,12,["H8147"]],[12,16,["H4120"]],[16,18,["H935"]],[18,19,["H413"]],[19,21,["H376"]],[21,22,["H1004"]],[22,24,["H980"]],[24,28,["H875"]],[28,31,["H2691"]],[31,32,["H8033"]],[32,35,["H3381"]]]},{"k":8468,"v":[[0,3,["H802"]],[3,4,["H3947"]],[4,6,["H6566","(H853)"]],[6,8,["H4539"]],[8,9,["H5921"]],[9,11,["H875"]],[11,12,["H6440"]],[12,14,["H7849"]],[14,16,["H7383"]],[16,17,["H5921"]],[17,20,["H1697"]],[20,22,["H3808"]],[22,23,["H3045"]]]},{"k":8469,"v":[[0,3,["H53"]],[3,4,["H5650"]],[4,5,["H935"]],[5,6,["H413"]],[6,8,["H802"]],[8,11,["H1004"]],[11,13,["H559"]],[13,14,["H346"]],[14,16,["H290"]],[16,18,["H3083"]],[18,21,["H802"]],[21,22,["H559"]],[22,28,["H5674"]],[28,30,["H4323"]],[30,32,["H4325"]],[32,37,["H1245"]],[37,40,["H3808"]],[40,41,["H4672"]],[41,44,["H7725"]],[44,46,["H3389"]]]},{"k":8470,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,9,["H1980"]],[9,13,["H5927"]],[13,17,["H4480","H875"]],[17,19,["H1980"]],[19,21,["H5046"]],[21,22,["H4428"]],[22,23,["H1732"]],[23,25,["H559"]],[25,26,["H413"]],[26,27,["H1732"]],[27,28,["H6965"]],[28,32,["H5674","H4120","(H853)"]],[32,34,["H4325"]],[34,35,["H3588"]],[35,36,["H3602"]],[36,38,["H302"]],[38,39,["H3289"]],[39,40,["H5921"]],[40,41,[]]]},{"k":8471,"v":[[0,2,["H1732"]],[2,3,["H6965"]],[3,5,["H3605"]],[5,7,["H5971"]],[7,8,["H834"]],[8,10,["H854"]],[10,15,["H5674","(H853)"]],[15,16,["H3383"]],[16,17,["H5704"]],[17,19,["H1242"]],[19,20,["H216"]],[20,22,["H5737"]],[22,23,["H3808"]],[23,24,["H259"]],[24,27,["H834"]],[27,29,["H3808"]],[29,31,["H5674","(H853)"]],[31,32,["H3383"]]]},{"k":8472,"v":[[0,3,["H302"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,7,["H6098"]],[7,9,["H3808"]],[9,10,["H6213"]],[10,12,["H2280"]],[12,13,["(H853)"]],[13,14,["H2543"]],[14,16,["H6965"]],[16,18,["H1980"]],[18,21,["H413"]],[21,23,["H1004"]],[23,24,["H413"]],[24,26,["H5892"]],[26,28,["H6680","H413"]],[28,30,["H1004"]],[30,35,["H2614"]],[35,37,["H4191"]],[37,40,["H6912"]],[40,43,["H6913"]],[43,46,["H1"]]]},{"k":8473,"v":[[0,2,["H1732"]],[2,3,["H935"]],[3,5,["H4266"]],[5,7,["H53"]],[7,9,["H5674","(H853)"]],[9,10,["H3383"]],[10,11,["H1931"]],[11,13,["H3605"]],[13,15,["H376"]],[15,17,["H3478"]],[17,18,["H5973"]],[18,19,[]]]},{"k":8474,"v":[[0,2,["H53"]],[2,3,["H7760"]],[3,4,["H6021"]],[4,5,["H5921"]],[5,8,["H6635"]],[8,9,["H8478"]],[9,11,["H3097"]],[11,13,["H6021"]],[13,16,["H376"]],[16,17,["H1121"]],[17,19,["H8034"]],[19,21,["H3501"]],[21,23,["H3481"]],[23,24,["H834"]],[24,25,["H935"]],[25,27,["H413"]],[27,28,["H26"]],[28,30,["H1323"]],[30,32,["H5176"]],[32,33,["H269"]],[33,35,["H6870"]],[35,36,["H3097"]],[36,37,["H517"]]]},{"k":8475,"v":[[0,2,["H3478"]],[2,4,["H53"]],[4,5,["H2583"]],[5,8,["H776"]],[8,10,["H1568"]]]},{"k":8476,"v":[[0,5,["H1961"]],[5,7,["H1732"]],[7,9,["H935"]],[9,11,["H4266"]],[11,13,["H7629"]],[13,15,["H1121"]],[15,17,["H5176"]],[17,19,["H4480","H7237"]],[19,22,["H1121"]],[22,24,["H5983"]],[24,26,["H4353"]],[26,28,["H1121"]],[28,30,["H5988"]],[30,32,["H4480","H3810"]],[32,34,["H1271"]],[34,36,["H1569"]],[36,38,["H4480","H7274"]]]},{"k":8477,"v":[[0,1,["H5066"]],[1,2,["H4904"]],[2,4,["H5592"]],[4,6,["H3335"]],[6,7,["H3627"]],[7,9,["H2406"]],[9,11,["H8184"]],[11,13,["H7058"]],[13,15,["H7039"]],[15,18,["H6321"]],[18,20,["H5742"]],[20,22,["H7039"]],[22,23,[]]]},{"k":8478,"v":[[0,2,["H1706"]],[2,4,["H2529"]],[4,6,["H6629"]],[6,8,["H8194"]],[8,10,["H1241"]],[10,12,["H1732"]],[12,16,["H5971"]],[16,17,["H834"]],[17,19,["H854"]],[19,22,["H398"]],[22,23,["H3588"]],[23,25,["H559"]],[25,27,["H5971"]],[27,29,["H7457"]],[29,31,["H5889"]],[31,33,["H6771"]],[33,36,["H4057"]]]},{"k":8479,"v":[[0,2,["H1732"]],[2,3,["H6485","(H853)"]],[3,5,["H5971"]],[5,6,["H834"]],[6,8,["H854"]],[8,11,["H7760"]],[11,12,["H8269"]],[12,14,["H505"]],[14,16,["H8269"]],[16,18,["H3967"]],[18,19,["H5921"]],[19,20,[]]]},{"k":8480,"v":[[0,2,["H1732"]],[2,4,["H7971"]],[4,7,["H7992"]],[7,8,["(H853)"]],[8,10,["H5971"]],[10,13,["H3027"]],[13,15,["H3097"]],[15,19,["H7992"]],[19,22,["H3027"]],[22,24,["H52"]],[24,26,["H1121"]],[26,28,["H6870"]],[28,29,["H3097"]],[29,30,["H251"]],[30,34,["H7992"]],[34,37,["H3027"]],[37,39,["H863"]],[39,41,["H1663"]],[41,44,["H4428"]],[44,45,["H559"]],[45,46,["H413"]],[46,48,["H5971"]],[48,53,["H3318","H3318"]],[53,54,["H5973"]],[54,56,["H589"]],[56,57,["H1571"]]]},{"k":8481,"v":[[0,3,["H5971"]],[3,4,["H559"]],[4,7,["H3808"]],[7,9,["H3318"]],[9,10,["H3588"]],[10,11,["H518"]],[11,14,["H5127","H5127"]],[14,17,["H3808"]],[17,18,["H7760","H3820"]],[18,19,["H413"]],[19,21,["H3808"]],[21,22,["H518"]],[22,23,["H2677"]],[23,26,["H4191"]],[26,29,["H7760","H3820"]],[29,30,["H413"]],[30,32,["H3588"]],[32,33,["H6258"]],[33,36,["H3644"]],[36,37,["H6235"]],[37,38,["H505"]],[38,42,["H6258"]],[42,45,["H2896"]],[45,46,["H3588"]],[46,48,["H5826"]],[48,53,["H4480","H5892"]]]},{"k":8482,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H834"]],[7,8,["H5869"]],[8,10,["H3190"]],[10,13,["H6213"]],[13,16,["H4428"]],[16,17,["H5975"]],[17,18,["H413"]],[18,20,["H8179"]],[20,21,["H3027"]],[21,23,["H3605"]],[23,25,["H5971"]],[25,27,["H3318"]],[27,29,["H3967"]],[29,32,["H505"]]]},{"k":8483,"v":[[0,3,["H4428"]],[3,4,["H6680","(H853)"]],[4,5,["H3097"]],[5,7,["H52"]],[7,9,["H863"]],[9,10,["H559"]],[10,12,["H328"]],[12,19,["H5288"]],[19,22,["H53"]],[22,24,["H3605"]],[24,26,["H5971"]],[26,27,["H8085"]],[27,30,["H4428"]],[30,31,["(H853)"]],[31,32,["H3605"]],[32,34,["H8269"]],[34,35,["H6680"]],[35,36,["H5921","H1697"]],[36,37,["H53"]]]},{"k":8484,"v":[[0,3,["H5971"]],[3,5,["H3318"]],[5,8,["H7704"]],[8,9,["H7125"]],[9,10,["H3478"]],[10,13,["H4421"]],[13,14,["H1961"]],[14,17,["H3293"]],[17,19,["H669"]]]},{"k":8485,"v":[[0,1,["H8033"]],[1,3,["H5971"]],[3,5,["H3478"]],[5,7,["H5062"]],[7,8,["H6440"]],[8,10,["H5650"]],[10,12,["H1732"]],[12,15,["H1961"]],[15,16,["H8033"]],[16,18,["H1419"]],[18,19,["H4046"]],[19,20,["H1931"]],[20,21,["H3117"]],[21,23,["H6242"]],[23,24,["H505"]],[24,25,[]]]},{"k":8486,"v":[[0,3,["H4421"]],[3,4,["H1961"]],[4,5,["H8033"]],[5,6,["H6327"]],[6,7,["H5921"]],[7,9,["H6440"]],[9,11,["H3605"]],[11,13,["H776"]],[13,16,["H3293"]],[16,17,["H398"]],[17,18,["H7235"]],[18,19,["H5971"]],[19,20,["H1931"]],[20,21,["H3117"]],[21,24,["H2719"]],[24,25,["H398"]]]},{"k":8487,"v":[[0,2,["H53"]],[2,3,["H7122"]],[3,5,["H5650"]],[5,7,["H1732"]],[7,9,["H53"]],[9,10,["H7392"]],[10,11,["H5921"]],[11,13,["H6505"]],[13,16,["H6505"]],[16,17,["H935"]],[17,18,["H8478"]],[18,21,["H7730"]],[21,24,["H1419"]],[24,25,["H424"]],[25,28,["H7218"]],[28,30,["H2388"]],[30,33,["H424"]],[33,38,["H5414"]],[38,39,["H996"]],[39,41,["H8064"]],[41,44,["H776"]],[44,47,["H6505"]],[47,48,["H834"]],[48,50,["H8478"]],[50,53,["H5674"]]]},{"k":8488,"v":[[0,3,["H259"]],[3,4,["H376"]],[4,5,["H7200"]],[5,8,["H5046"]],[8,9,["H3097"]],[9,11,["H559"]],[11,12,["H2009"]],[12,14,["H7200","(H853)"]],[14,15,["H53"]],[15,16,["H8518"]],[16,19,["H424"]]]},{"k":8489,"v":[[0,2,["H3097"]],[2,3,["H559"]],[3,6,["H376"]],[6,8,["H5046"]],[8,11,["H2009"]],[11,13,["H7200"]],[13,16,["H4069"]],[16,19,["H3808"]],[19,20,["H5221"]],[20,22,["H8033"]],[22,25,["H776"]],[25,30,["H5414"]],[30,32,["H6235"]],[32,35,["H3701"]],[35,37,["H259"]],[37,38,["H2290"]]]},{"k":8490,"v":[[0,3,["H376"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3097"]],[6,7,["H3863"]],[7,8,["H595"]],[8,10,["H8254"]],[10,12,["H505"]],[12,15,["H3701"]],[15,16,["H5921"]],[16,18,["H3709"]],[18,22,["H3808"]],[22,24,["H7971"]],[24,26,["H3027"]],[26,27,["H413"]],[27,29,["H4428"]],[29,30,["H1121"]],[30,31,["H3588"]],[31,34,["H241"]],[34,36,["H4428"]],[36,37,["H6680"]],[37,40,["H52"]],[40,42,["H863"]],[42,43,["H559"]],[43,46,["H8104"]],[46,50,["H5288"]],[50,51,["H53"]]]},{"k":8491,"v":[[0,1,["H176"]],[1,5,["H6213"]],[5,6,["H8267"]],[6,10,["H5315"]],[10,15,["H3808","H3605","H1697"]],[15,16,["H3582"]],[16,17,["H4480"]],[17,19,["H4428"]],[19,22,["H859"]],[22,26,["H3320"]],[26,27,["H4480","H5048"]],[27,28,[]]]},{"k":8492,"v":[[0,2,["H559"]],[2,3,["H3097"]],[3,6,["H3808"]],[6,7,["H3176"]],[7,8,["H3651"]],[8,9,["H6440"]],[9,13,["H3947"]],[13,14,["H7969"]],[14,15,["H7626"]],[15,18,["H3709"]],[18,20,["H8628"]],[20,24,["H3820"]],[24,26,["H53"]],[26,27,["H5750"]],[27,31,["H2416"]],[31,34,["H3820"]],[34,37,["H424"]]]},{"k":8493,"v":[[0,2,["H6235"]],[2,4,["H5288"]],[4,6,["H5375"]],[6,7,["H3097"]],[7,8,["H3627"]],[8,10,["H5437"]],[10,12,["H5221","(H853)"]],[12,13,["H53"]],[13,15,["H4191"]],[15,16,[]]]},{"k":8494,"v":[[0,2,["H3097"]],[2,3,["H8628"]],[3,5,["H7782"]],[5,8,["H5971"]],[8,9,["H7725"]],[9,11,["H4480","H7291"]],[11,12,["H310"]],[12,13,["H3478"]],[13,14,["H3588"]],[14,15,["H3097"]],[15,17,["H2820","(H853)"]],[17,19,["H5971"]]]},{"k":8495,"v":[[0,3,["H3947","(H853)"]],[3,4,["H53"]],[4,6,["H7993"]],[6,8,["H413"]],[8,10,["H1419"]],[10,11,["H6354"]],[11,14,["H3293"]],[14,16,["H5324"]],[16,18,["H3966"]],[18,19,["H1419"]],[19,20,["H1530"]],[20,22,["H68"]],[22,23,["H5921"]],[23,26,["H3605"]],[26,27,["H3478"]],[27,28,["H5127"]],[28,30,["H376"]],[30,33,["H168"]]]},{"k":8496,"v":[[0,2,["H53"]],[2,5,["H2416"]],[5,7,["H3947"]],[7,10,["H5324"]],[10,12,["(H853)"]],[12,14,["H4678"]],[14,15,["H834"]],[15,19,["H4428"]],[19,20,["H6010"]],[20,21,["H3588"]],[21,23,["H559"]],[23,26,["H369"]],[26,27,["H1121"]],[27,28,["H5668"]],[28,33,["H2142","H8034"]],[33,36,["H7121"]],[36,38,["H4678"]],[38,39,["H5921"]],[39,42,["H8034"]],[42,46,["H7121"]],[46,47,["H5704"]],[47,48,["H2088"]],[48,49,["H3117"]],[49,50,["H53"]],[50,51,["H3027"]]]},{"k":8497,"v":[[0,2,["H559"]],[2,3,["H290"]],[3,5,["H1121"]],[5,7,["H6659"]],[7,10,["H4994"]],[10,11,["H7323"]],[11,13,["H1319","(H853)"]],[13,15,["H4428"]],[15,18,["H3588"]],[18,20,["H3068"]],[20,22,["H8199"]],[22,26,["H341"]]]},{"k":8498,"v":[[0,2,["H3097"]],[2,3,["H559"]],[3,6,["H859"]],[6,8,["H3808"]],[8,10,["H376","H1309"]],[10,11,["H2088"]],[11,12,["H3117"]],[12,17,["H1319"]],[17,18,["H312"]],[18,19,["H3117"]],[19,21,["H2088"]],[21,22,["H3117"]],[22,27,["H1319","H3808"]],[27,28,["H3588","H5921"]],[28,30,["H4428"]],[30,31,["H1121"]],[31,33,["H4191"]]]},{"k":8499,"v":[[0,2,["H559"]],[2,3,["H3097"]],[3,5,["H3569"]],[5,6,["H1980"]],[6,7,["H5046"]],[7,9,["H4428"]],[9,10,["H834"]],[10,13,["H7200"]],[13,15,["H3569"]],[15,17,["H7812"]],[17,19,["H3097"]],[19,21,["H7323"]]]},{"k":8500,"v":[[0,2,["H559"]],[2,3,["H290"]],[3,5,["H1121"]],[5,7,["H6659"]],[7,8,["H5750"]],[8,9,["H3254"]],[9,10,["H413"]],[10,11,["H3097"]],[11,13,["H1961","H4100"]],[13,16,["H589"]],[16,17,["H4994"]],[17,19,["H1571"]],[19,20,["H7323"]],[20,21,["H310"]],[21,22,["H3569"]],[22,24,["H3097"]],[24,25,["H559"]],[25,26,["H4100","H2088"]],[26,28,["H859"]],[28,29,["H7323"]],[29,31,["H1121"]],[31,36,["H369"]],[36,37,["H1309"]],[37,38,["H4672"]]]},{"k":8501,"v":[[0,2,["H1961","H4100"]],[2,7,["H7323"]],[7,10,["H559"]],[10,13,["H7323"]],[13,15,["H290"]],[15,16,["H7323"]],[16,19,["H1870"]],[19,22,["H3603"]],[22,24,["H5674","(H853)"]],[24,25,["H3569"]]]},{"k":8502,"v":[[0,2,["H1732"]],[2,3,["H3427"]],[3,4,["H996"]],[4,6,["H8147"]],[6,7,["H8179"]],[7,10,["H6822"]],[10,12,["H1980"]],[12,13,["H413"]],[13,15,["H1406"]],[15,18,["H8179"]],[18,19,["H413"]],[19,21,["H2346"]],[21,24,["H5375","(H853)"]],[24,26,["H5869"]],[26,28,["H7200"]],[28,30,["H2009"]],[30,32,["H376"]],[32,33,["H7323"]],[33,34,["H905"]]]},{"k":8503,"v":[[0,3,["H6822"]],[3,4,["H7121"]],[4,6,["H5046"]],[6,8,["H4428"]],[8,11,["H4428"]],[11,12,["H559"]],[12,13,["H518"]],[13,16,["H905"]],[16,19,["H1309"]],[19,22,["H6310"]],[22,25,["H1980"]],[25,26,["H1980"]],[26,29,["H7131"]]]},{"k":8504,"v":[[0,3,["H6822"]],[3,4,["H7200"]],[4,5,["H312"]],[5,6,["H376"]],[6,7,["H7323"]],[7,10,["H6822"]],[10,11,["H7121"]],[11,12,["H413"]],[12,14,["H7778"]],[14,16,["H559"]],[16,17,["H2009"]],[17,19,["H376"]],[19,20,["H7323"]],[20,21,["H905"]],[21,24,["H4428"]],[24,25,["H559"]],[25,26,["H2088"]],[26,27,["H1571"]],[27,29,["H1319"]]]},{"k":8505,"v":[[0,3,["H6822"]],[3,4,["H559"]],[4,5,["H589"]],[5,6,["H7200","(H853)"]],[6,8,["H4794"]],[8,11,["H7223"]],[11,15,["H4794"]],[15,17,["H290"]],[17,19,["H1121"]],[19,21,["H6659"]],[21,24,["H4428"]],[24,25,["H559"]],[25,26,["H2088"]],[26,29,["H2896"]],[29,30,["H376"]],[30,32,["H935"]],[32,34,["H2896"]],[34,35,["H1309"]]]},{"k":8506,"v":[[0,2,["H290"]],[2,3,["H7121"]],[3,5,["H559"]],[5,6,["H413"]],[6,8,["H4428"]],[8,11,["H7965"]],[11,15,["H7812"]],[15,18,["H776"]],[18,21,["H639"]],[21,24,["H4428"]],[24,26,["H559"]],[26,27,["H1288"]],[27,30,["H3068"]],[30,32,["H430"]],[32,33,["H834"]],[33,36,["H5462","(H853)"]],[36,38,["H376"]],[38,39,["H834"]],[39,41,["H5375","(H853)"]],[41,43,["H3027"]],[43,46,["H113"]],[46,48,["H4428"]]]},{"k":8507,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,8,["H5288"]],[8,9,["H53"]],[9,10,["H7965"]],[10,12,["H290"]],[12,13,["H559"]],[13,15,["H3097"]],[15,16,["H7971","(H853)"]],[16,18,["H4428"]],[18,19,["H5650"]],[19,23,["H5650"]],[23,25,["H7200"]],[25,27,["H1419"]],[27,28,["H1995"]],[28,31,["H3045"]],[31,32,["H3808"]],[32,33,["H4100"]],[33,35,[]]]},{"k":8508,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,8,["H5437"]],[8,10,["H3320"]],[10,11,["H3541"]],[11,15,["H5437"]],[15,18,["H5975"]]]},{"k":8509,"v":[[0,2,["H2009"]],[2,3,["H3569"]],[3,4,["H935"]],[4,6,["H3569"]],[6,7,["H559"]],[7,8,["H1319"]],[8,10,["H113"]],[10,12,["H4428"]],[12,13,["H3588"]],[13,15,["H3068"]],[15,17,["H8199"]],[17,20,["H3117"]],[20,21,["H4480","H3027"]],[21,22,["H3605"]],[22,26,["H6965"]],[26,27,["H5921"]],[27,28,[]]]},{"k":8510,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3569"]],[6,10,["H5288"]],[10,11,["H53"]],[11,12,["H7965"]],[12,14,["H3569"]],[14,15,["H559"]],[15,17,["H341"]],[17,20,["H113"]],[20,22,["H4428"]],[22,24,["H3605"]],[24,25,["H834"]],[25,26,["H6965"]],[26,27,["H5921"]],[27,32,["H7451"]],[32,33,["H1961"]],[33,37,["H5288"]],[37,38,[]]]},{"k":8511,"v":[[0,3,["H4428"]],[3,6,["H7264"]],[6,9,["H5927"]],[9,10,["H5921"]],[10,12,["H5944"]],[12,15,["H8179"]],[15,17,["H1058"]],[17,21,["H1980"]],[21,22,["H3541"]],[22,24,["H559"]],[24,27,["H1121"]],[27,28,["H53"]],[28,30,["H1121"]],[30,32,["H1121"]],[32,33,["H53"]],[33,35,["H4310","H5414"]],[35,36,["H589"]],[36,38,["H4191"]],[38,39,["H8478"]],[39,42,["H53"]],[42,44,["H1121"]],[44,46,["H1121"]]]},{"k":8512,"v":[[0,4,["H5046"]],[4,5,["H3097"]],[5,6,["H2009"]],[6,8,["H4428"]],[8,9,["H1058"]],[9,11,["H56"]],[11,12,["H5921"]],[12,13,["H53"]]]},{"k":8513,"v":[[0,3,["H8668"]],[3,4,["H1961"]],[4,5,["H3117"]],[5,9,["H60"]],[9,11,["H3605"]],[11,13,["H5971"]],[13,14,["H3588"]],[14,16,["H5971"]],[16,17,["H8085"]],[17,18,["H559"]],[18,19,["H1931"]],[19,20,["H3117"]],[20,23,["H4428"]],[23,25,["H6087"]],[25,26,["H5921"]],[26,28,["H1121"]]]},{"k":8514,"v":[[0,3,["H5971"]],[3,4,["H935"]],[4,7,["H1589"]],[7,8,["H1931"]],[8,9,["H3117"]],[9,12,["H5892"]],[12,13,["H834"]],[13,14,["H5971"]],[14,16,["H3637"]],[16,18,["H1589"]],[18,21,["H5127"]],[21,23,["H4421"]]]},{"k":8515,"v":[[0,3,["H4428"]],[3,4,["H3813","(H853)"]],[4,6,["H6440"]],[6,9,["H4428"]],[9,10,["H2199"]],[10,13,["H1419"]],[13,14,["H6963"]],[14,17,["H1121"]],[17,18,["H53"]],[18,20,["H53"]],[20,22,["H1121"]],[22,24,["H1121"]]]},{"k":8516,"v":[[0,2,["H3097"]],[2,3,["H935"]],[3,6,["H1004"]],[6,7,["H413"]],[7,9,["H4428"]],[9,11,["H559"]],[11,14,["H3001"]],[14,16,["H3117","(H853)"]],[16,18,["H6440"]],[18,20,["H3605"]],[20,22,["H5650"]],[22,25,["H3117"]],[25,27,["H4422","(H853)"]],[27,29,["H5315"]],[29,32,["H5315"]],[32,35,["H1121"]],[35,39,["H1323"]],[39,42,["H5315"]],[42,45,["H802"]],[45,48,["H5315"]],[48,51,["H6370"]]]},{"k":8517,"v":[[0,4,["H157","(H853)"]],[4,6,["H8130"]],[6,8,["H8130","(H853)"]],[8,10,["H157"]],[10,11,["H3588"]],[11,14,["H5046"]],[14,16,["H3117"]],[16,17,["H3588"]],[17,20,["H369"]],[20,21,["H8269"]],[21,23,["H5650"]],[23,24,["H3588"]],[24,26,["H3117"]],[26,28,["H3045"]],[28,29,["H3588"]],[29,30,["H3863"]],[30,31,["H53"]],[31,33,["H2416"]],[33,35,["H3605"]],[35,38,["H4191"]],[38,40,["H3117"]],[40,41,["H227"]],[41,46,["H5869","H3477"]]]},{"k":8518,"v":[[0,1,["H6258"]],[1,3,["H6965"]],[3,5,["H3318"]],[5,7,["H1696"]],[7,8,["H5921","H3820"]],[8,11,["H5650"]],[11,12,["H3588"]],[12,14,["H7650"]],[14,17,["H3068"]],[17,18,["H3588"]],[18,22,["H369","H3318"]],[22,25,["H518"]],[25,26,["H3885"]],[26,27,["H376"]],[27,28,["H854"]],[28,31,["H3915"]],[31,33,["H2063"]],[33,36,["H7489"]],[36,40,["H4480","H3605"]],[40,42,["H7451"]],[42,43,["H834"]],[43,44,["H935","H5921"]],[44,48,["H4480","H5271"]],[48,49,["H5704"]],[49,50,["H6258"]]]},{"k":8519,"v":[[0,3,["H4428"]],[3,4,["H6965"]],[4,6,["H3427"]],[6,9,["H8179"]],[9,12,["H5046"]],[12,14,["H3605"]],[14,16,["H5971"]],[16,17,["H559"]],[17,18,["H2009"]],[18,20,["H4428"]],[20,22,["H3427"]],[22,25,["H8179"]],[25,27,["H3605"]],[27,29,["H5971"]],[29,30,["H935"]],[30,31,["H6440"]],[31,33,["H4428"]],[33,35,["H3478"]],[35,37,["H5127"]],[37,39,["H376"]],[39,42,["H168"]]]},{"k":8520,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H1961"]],[5,7,["H1777"]],[7,9,["H3605"]],[9,11,["H7626"]],[11,13,["H3478"]],[13,14,["H559"]],[14,16,["H4428"]],[16,17,["H5337"]],[17,22,["H4480","H3709"]],[22,25,["H341"]],[25,27,["H1931"]],[27,28,["H4422"]],[28,33,["H4480","H3709"]],[33,36,["H6430"]],[36,38,["H6258"]],[38,41,["H1272"]],[41,43,["H4480"]],[43,45,["H776"]],[45,46,["H4480","H5921"]],[46,47,["H53"]]]},{"k":8521,"v":[[0,2,["H53"]],[2,3,["H834"]],[3,5,["H4886"]],[5,6,["H5921"]],[6,9,["H4191"]],[9,11,["H4421"]],[11,12,["H6258"]],[12,14,["H4100"]],[14,15,["H2790"]],[15,16,["H859"]],[16,21,["H7725","(H853)"]],[21,23,["H4428"]],[23,24,[]]]},{"k":8522,"v":[[0,2,["H4428"]],[2,3,["H1732"]],[3,4,["H7971"]],[4,5,["H413"]],[5,6,["H6659"]],[6,8,["H413"]],[8,9,["H54"]],[9,11,["H3548"]],[11,12,["H559"]],[12,13,["H1696"]],[13,14,["H413"]],[14,16,["H2205"]],[16,18,["H3063"]],[18,19,["H559"]],[19,20,["H4100"]],[20,21,["H1961"]],[21,24,["H314"]],[24,26,["H7725","(H853)"]],[26,28,["H4428"]],[28,30,["H413"]],[30,32,["H1004"]],[32,35,["H1697"]],[35,37,["H3605"]],[37,38,["H3478"]],[38,40,["H935"]],[40,41,["H413"]],[41,43,["H4428"]],[43,45,["H413"]],[45,47,["H1004"]]]},{"k":8523,"v":[[0,1,["H859"]],[1,4,["H251"]],[4,5,["H859"]],[5,8,["H6106"]],[8,11,["H1320"]],[11,12,["H4100"]],[12,14,["H1961"]],[14,17,["H314"]],[17,20,["H7725","(H853)"]],[20,22,["H4428"]]]},{"k":8524,"v":[[0,2,["H559"]],[2,5,["H6021"]],[5,7,["H859"]],[7,8,["H3808"]],[8,11,["H6106"]],[11,15,["H1320"]],[15,16,["H430"]],[16,17,["H6213"]],[17,18,["H3541"]],[18,22,["H3254"]],[22,23,["H3541"]],[23,24,["H518"]],[24,26,["H1961"]],[26,27,["H3808"]],[27,28,["H8269"]],[28,31,["H6635"]],[31,32,["H6440"]],[32,34,["H3605","H3117"]],[34,37,["H8478"]],[37,39,["H3097"]]]},{"k":8525,"v":[[0,3,["H5186","(H853)"]],[3,5,["H3824"]],[5,7,["H3605"]],[7,9,["H376"]],[9,11,["H3063"]],[11,17,["H259"]],[17,18,["H376"]],[18,22,["H7971"]],[22,25,["H413"]],[25,27,["H4428"]],[27,28,["H7725"]],[28,29,["H859"]],[29,31,["H3605"]],[31,33,["H5650"]]]},{"k":8526,"v":[[0,3,["H4428"]],[3,4,["H7725"]],[4,6,["H935"]],[6,7,["H5704"]],[7,8,["H3383"]],[8,10,["H3063"]],[10,11,["H935"]],[11,13,["H1537"]],[13,15,["H1980"]],[15,17,["H7125"]],[17,19,["H4428"]],[19,24,["H5674","(H853)","H4428","(H853)"]],[24,25,["H3383"]]]},{"k":8527,"v":[[0,2,["H8096"]],[2,4,["H1121"]],[4,6,["H1617"]],[6,8,["H1145"]],[8,9,["H834"]],[9,12,["H4480","H980"]],[12,13,["H4116"]],[13,16,["H3381"]],[16,17,["H5973"]],[17,19,["H376"]],[19,21,["H3063"]],[21,23,["H7125"]],[23,24,["H4428"]],[24,25,["H1732"]]]},{"k":8528,"v":[[0,5,["H505"]],[5,6,["H376"]],[6,8,["H4480","H1144"]],[8,9,["H5973"]],[9,12,["H6717"]],[12,14,["H5288"]],[14,17,["H1004"]],[17,19,["H7586"]],[19,22,["H2568","H6240"]],[22,23,["H1121"]],[23,26,["H6242"]],[26,27,["H5650"]],[27,28,["H854"]],[28,33,["H6743"]],[33,34,["H3383"]],[34,35,["H6440"]],[35,37,["H4428"]]]},{"k":8529,"v":[[0,4,["H5674"]],[4,7,["H5679"]],[7,10,["H5674","(H853)"]],[10,12,["H4428"]],[12,13,["H1004"]],[13,16,["H6213"]],[16,19,["H5869"]],[19,20,["H2896"]],[20,22,["H8096"]],[22,24,["H1121"]],[24,26,["H1617"]],[26,28,["H5307"]],[28,29,["H6440"]],[29,31,["H4428"]],[31,36,["H5674"]],[36,37,["H3383"]]]},{"k":8530,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H4428"]],[5,7,["H408"]],[7,9,["H113"]],[9,10,["H2803"]],[10,11,["H5771"]],[11,14,["H408"]],[14,17,["H2142","(H853)"]],[17,19,["H834"]],[19,21,["H5650"]],[21,23,["H5753"]],[23,25,["H3117"]],[25,26,["H834"]],[26,28,["H113"]],[28,30,["H4428"]],[30,32,["H3318"]],[32,34,["H4480","H3389"]],[34,37,["H4428"]],[37,39,["H7760"]],[39,41,["H413"]],[41,43,["H3820"]]]},{"k":8531,"v":[[0,1,["H3588"]],[1,3,["H5650"]],[3,5,["H3045"]],[5,6,["H3588"]],[6,7,["H589"]],[7,9,["H2398"]],[9,11,["H2009"]],[11,14,["H935"]],[14,16,["H7223"]],[16,18,["H3117"]],[18,20,["H3605"]],[20,22,["H1004"]],[22,24,["H3130"]],[24,27,["H3381"]],[27,29,["H7125"]],[29,31,["H113"]],[31,33,["H4428"]]]},{"k":8532,"v":[[0,2,["H52"]],[2,4,["H1121"]],[4,6,["H6870"]],[6,7,["H6030"]],[7,9,["H559"]],[9,11,["H3808"]],[11,12,["H8096"]],[12,16,["H4191"]],[16,17,["H8478"]],[17,18,["H2063"]],[18,19,["H3588"]],[19,21,["H7043","(H853)"]],[21,23,["H3068"]],[23,24,["H4899"]]]},{"k":8533,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H4100"]],[4,12,["H1121"]],[12,14,["H6870"]],[14,15,["H3588"]],[15,19,["H3117"]],[19,20,["H1961"]],[20,21,["H7854"]],[21,27,["H376"]],[27,31,["H4191"]],[31,33,["H3117"]],[33,35,["H3478"]],[35,36,["H3588"]],[36,38,["H3808"]],[38,40,["H3045"]],[40,41,["H3588"]],[41,42,["H589"]],[42,45,["H3117"]],[45,46,["H4428"]],[46,47,["H5921"]],[47,48,["H3478"]]]},{"k":8534,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H8096"]],[6,9,["H3808"]],[9,10,["H4191"]],[10,13,["H4428"]],[13,14,["H7650"]],[14,16,[]]]},{"k":8535,"v":[[0,2,["H4648"]],[2,4,["H1121"]],[4,6,["H7586"]],[6,8,["H3381"]],[8,10,["H7125"]],[10,12,["H4428"]],[12,15,["H3808"]],[15,16,["H6213"]],[16,18,["H7272"]],[18,19,["H3808"]],[19,20,["H6213"]],[20,22,["H8222"]],[22,23,["H3808"]],[23,24,["H3526"]],[24,26,["H899"]],[26,27,["H4480"]],[27,29,["H3117"]],[29,31,["H4428"]],[31,32,["H1980"]],[32,33,["H5704"]],[33,35,["H3117"]],[35,37,["H935"]],[37,40,["H7965"]]]},{"k":8536,"v":[[0,5,["H1961"]],[5,6,["H3588"]],[6,9,["H935"]],[9,11,["H3389"]],[11,13,["H7125"]],[13,15,["H4428"]],[15,18,["H4428"]],[18,19,["H559"]],[19,22,["H4100"]],[22,23,["H1980"]],[23,24,["H3808"]],[24,26,["H5973"]],[26,28,["H4648"]]]},{"k":8537,"v":[[0,3,["H559"]],[3,5,["H113"]],[5,7,["H4428"]],[7,9,["H5650"]],[9,10,["H7411"]],[10,12,["H3588"]],[12,14,["H5650"]],[14,15,["H559"]],[15,18,["H2280"]],[18,21,["H2543"]],[21,25,["H7392"]],[25,26,["H5921"]],[26,28,["H1980"]],[28,29,["H854"]],[29,31,["H4428"]],[31,32,["H3588"]],[32,34,["H5650"]],[34,36,["H6455"]]]},{"k":8538,"v":[[0,4,["H7270"]],[4,6,["H5650"]],[6,7,["H413"]],[7,9,["H113"]],[9,11,["H4428"]],[11,14,["H113"]],[14,16,["H4428"]],[16,20,["H4397"]],[20,22,["H430"]],[22,23,["H6213"]],[23,27,["H2896"]],[27,30,["H5869"]]]},{"k":8539,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,5,["H1"]],[5,6,["H1004"]],[6,7,["H1961"]],[7,8,["H3588","H518"]],[8,9,["H4194"]],[9,10,["H376"]],[10,11,["H6440"]],[11,13,["H113"]],[13,15,["H4428"]],[15,19,["H7896","(H853)"]],[19,21,["H5650"]],[21,26,["H398"]],[26,30,["H7979"]],[30,31,["H4100"]],[31,32,["H6666"]],[32,34,["H3426"]],[34,36,["H5759"]],[36,38,["H2199"]],[38,40,["H5750"]],[40,41,["H413"]],[41,43,["H4428"]]]},{"k":8540,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H4100"]],[7,8,["H1696"]],[8,11,["H5750"]],[11,14,["H1697"]],[14,17,["H559"]],[17,18,["H859"]],[18,20,["H6717"]],[20,21,["H2505","(H853)"]],[21,23,["H7704"]]]},{"k":8541,"v":[[0,2,["H4648"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,7,["H1571"]],[7,10,["H3947","(H853)"]],[10,11,["H3605"]],[11,12,["H310","H834"]],[12,15,["H113"]],[15,17,["H4428"]],[17,20,["H935"]],[20,22,["H7965"]],[22,23,["H413"]],[23,26,["H1004"]]]},{"k":8542,"v":[[0,2,["H1271"]],[2,4,["H1569"]],[4,6,["H3381"]],[6,8,["H4480","H7274"]],[8,11,["H5674"]],[11,12,["H3383"]],[12,13,["H854"]],[13,15,["H4428"]],[15,19,["H7971","(H853)"]],[19,20,["H3383"]]]},{"k":8543,"v":[[0,2,["H1271"]],[2,5,["H3966"]],[5,6,["H2204"]],[6,9,["H8084"]],[9,10,["H8141"]],[10,11,["H1121"]],[11,13,["H1931"]],[13,15,["(H853)"]],[15,17,["H4428"]],[17,19,["H3557"]],[19,22,["H7871"]],[22,24,["H4266"]],[24,25,["H3588"]],[25,26,["H1931"]],[26,29,["H3966"]],[29,30,["H1419"]],[30,31,["H376"]]]},{"k":8544,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H1271"]],[6,7,["H5674"]],[7,8,["H859"]],[8,10,["H854"]],[10,15,["H3557"]],[15,17,["H5973"]],[17,20,["H3389"]]]},{"k":8545,"v":[[0,2,["H1271"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,7,["H4100"]],[7,8,["H3117","H8141"]],[8,12,["H2416"]],[12,13,["H3588"]],[13,17,["H5927"]],[17,18,["H854"]],[18,20,["H4428"]],[20,22,["H3389"]]]},{"k":8546,"v":[[0,1,["H595"]],[1,4,["H3117"]],[4,5,["H8084"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,11,["H3045"]],[11,12,["H996"]],[12,13,["H2896"]],[13,15,["H7451"]],[15,16,["H518"]],[16,18,["H5650"]],[18,19,["H2938","(H853)"]],[19,20,["H834"]],[20,22,["H398"]],[22,24,["H834"]],[24,26,["H8354"]],[26,27,["H518"]],[27,29,["H8085"]],[29,31,["H5750"]],[31,33,["H6963"]],[33,36,["H7891"]],[36,39,["H7891"]],[39,40,["H4100"]],[40,44,["H5650"]],[44,45,["H1961"]],[45,46,["H5750"]],[46,48,["H4853"]],[48,49,["H413"]],[49,51,["H113"]],[51,53,["H4428"]]]},{"k":8547,"v":[[0,2,["H5650"]],[2,8,["H5674","H4592","(H853)"]],[8,9,["H3383"]],[9,10,["H854"]],[10,12,["H4428"]],[12,14,["H4100"]],[14,17,["H4428"]],[17,18,["H1580"]],[18,22,["H2063"]],[22,24,["H1578"]]]},{"k":8548,"v":[[0,3,["H5650"]],[3,6,["H4994"]],[6,9,["H7725"]],[9,13,["H4191"]],[13,17,["H5892"]],[17,21,["H5973"]],[21,23,["H6913"]],[23,26,["H1"]],[26,30,["H517"]],[30,32,["H2009"]],[32,34,["H5650"]],[34,35,["H3643"]],[35,39,["H5674"]],[39,40,["H5973"]],[40,42,["H113"]],[42,44,["H4428"]],[44,46,["H6213"]],[46,48,["(H853)"]],[48,49,["H834"]],[49,51,["H5869"]],[51,52,["H2896"]],[52,54,[]]]},{"k":8549,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H3643"]],[5,8,["H5674"]],[8,9,["H854"]],[9,12,["H589"]],[12,14,["H6213"]],[14,16,["(H853)"]],[16,20,["H5869"]],[20,21,["H2896"]],[21,25,["H834","H3605"]],[25,28,["H977"]],[28,29,["H5921"]],[29,34,["H6213"]],[34,36,[]]]},{"k":8550,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H5674","(H853)"]],[6,7,["H3383"]],[7,11,["H4428"]],[11,14,["H5674"]],[14,16,["H4428"]],[16,17,["H5401"]],[17,18,["H1271"]],[18,20,["H1288"]],[20,24,["H7725"]],[24,28,["H4725"]]]},{"k":8551,"v":[[0,3,["H4428"]],[3,5,["H5674"]],[5,7,["H1537"]],[7,9,["H3643"]],[9,11,["H5674"]],[11,12,["H5973"]],[12,15,["H3605"]],[15,17,["H5971"]],[17,19,["H3063"]],[19,20,["H5674","(H853)"]],[20,22,["H4428"]],[22,24,["H1571"]],[24,25,["H2677"]],[25,27,["H5971"]],[27,29,["H3478"]]]},{"k":8552,"v":[[0,2,["H2009"]],[2,3,["H3605"]],[3,5,["H376"]],[5,7,["H3478"]],[7,8,["H935"]],[8,9,["H413"]],[9,11,["H4428"]],[11,13,["H559"]],[13,14,["H413"]],[14,16,["H4428"]],[16,17,["H4069"]],[17,20,["H251"]],[20,22,["H376"]],[22,24,["H3063"]],[24,27,["H1589"]],[27,30,["H5674","(H853)"]],[30,32,["H4428"]],[32,35,["H1004"]],[35,37,["H3605"]],[37,38,["H1732"]],[38,39,["H376"]],[39,40,["H5973"]],[40,42,["(H853)"]],[42,43,["H3383"]]]},{"k":8553,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,6,["H3063"]],[6,7,["H6030","H5921"]],[7,9,["H376"]],[9,11,["H3478"]],[11,12,["H3588"]],[12,14,["H4428"]],[14,18,["H7138"]],[18,19,["H413"]],[19,21,["H4100","H2088"]],[21,25,["H2734"]],[25,26,["H5921"]],[26,27,["H2088"]],[27,28,["H1697"]],[28,33,["H398","H398"]],[33,34,["H4480"]],[34,36,["H4428"]],[36,38,["H518"]],[38,44,["H5379","H5375"]]]},{"k":8554,"v":[[0,3,["H376"]],[3,5,["H3478"]],[5,6,["H6030","(H853)"]],[6,8,["H376"]],[8,10,["H3063"]],[10,12,["H559"]],[12,15,["H6235"]],[15,16,["H3027"]],[16,19,["H4428"]],[19,21,["H589"]],[21,23,["H1571"]],[23,27,["H1732"]],[27,28,["H4480"]],[28,30,["H4069"]],[30,34,["H7043"]],[34,38,["H1697"]],[38,40,["H3808"]],[40,41,["H1961"]],[41,42,["H7223"]],[42,46,["H7725","(H853)"]],[46,48,["H4428"]],[48,51,["H1697"]],[51,54,["H376"]],[54,56,["H3063"]],[56,58,["H7185"]],[58,61,["H4480","H1697"]],[61,64,["H376"]],[64,66,["H3478"]]]},{"k":8555,"v":[[0,2,["H8033"]],[2,3,["H7122"]],[3,8,["H376"]],[8,10,["H1100"]],[10,12,["H8034"]],[12,14,["H7652"]],[14,16,["H1121"]],[16,18,["H1075"]],[18,20,["H1145"]],[20,23,["H8628"]],[23,25,["H7782"]],[25,27,["H559"]],[27,30,["H369"]],[30,31,["H2506"]],[31,33,["H1732"]],[33,34,["H3808"]],[34,37,["H5159"]],[37,40,["H1121"]],[40,42,["H3448"]],[42,44,["H376"]],[44,47,["H168"]],[47,49,["H3478"]]]},{"k":8556,"v":[[0,2,["H3605"]],[2,3,["H376"]],[3,5,["H3478"]],[5,7,["H5927"]],[7,9,["H4480","H310"]],[9,10,["H1732"]],[10,12,["H310"]],[12,13,["H7652"]],[13,15,["H1121"]],[15,17,["H1075"]],[17,20,["H376"]],[20,22,["H3063"]],[22,23,["H1692"]],[23,26,["H4428"]],[26,27,["H4480"]],[27,28,["H3383"]],[28,30,["H5704"]],[30,31,["H3389"]]]},{"k":8557,"v":[[0,2,["H1732"]],[2,3,["H935"]],[3,4,["H413"]],[4,6,["H1004"]],[6,8,["H3389"]],[8,11,["H4428"]],[11,12,["H3947","(H853)"]],[12,14,["H6235"]],[14,15,["H802"]],[15,17,["H6370"]],[17,18,["H834"]],[18,21,["H5117"]],[21,23,["H8104"]],[23,25,["H1004"]],[25,27,["H5414"]],[27,30,["H1004","H4931"]],[30,32,["H3557"]],[32,35,["H935"]],[35,36,["H3808"]],[36,38,["H413"]],[38,42,["H1961"]],[42,44,["H6887"]],[44,45,["H5704"]],[45,47,["H3117"]],[47,50,["H4191"]],[50,51,["H2424"]],[51,53,["H491"]]]},{"k":8558,"v":[[0,2,["H559"]],[2,4,["H4428"]],[4,5,["H413"]],[5,6,["H6021"]],[6,7,["H2199"]],[7,8,["(H853)"]],[8,10,["H376"]],[10,12,["H3063"]],[12,14,["H7969"]],[14,15,["H3117"]],[15,18,["H859"]],[18,19,["H6311"]],[19,20,["H5975"]]]},{"k":8559,"v":[[0,2,["H6021"]],[2,3,["H1980"]],[3,5,["H2199"]],[5,8,["(H853)"]],[8,9,["H3063"]],[9,13,["H3186"]],[13,14,["H4480"]],[14,17,["H4150"]],[17,18,["H834"]],[18,21,["H3259"]],[21,22,[]]]},{"k":8560,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H52"]],[5,6,["H6258"]],[6,8,["H7652"]],[8,10,["H1121"]],[10,12,["H1075"]],[12,16,["H3415"]],[16,17,["H4480"]],[17,19,["H53"]],[19,20,["H3947"]],[20,21,["H859","(H853)"]],[21,23,["H113"]],[23,24,["H5650"]],[24,26,["H7291"]],[26,27,["H310"]],[27,29,["H6435"]],[29,31,["H4672"]],[31,33,["H1219"]],[33,34,["H5892"]],[34,36,["H5337","H5869"]],[36,37,[]]]},{"k":8561,"v":[[0,4,["H3318"]],[4,5,["H310"]],[5,7,["H3097"]],[7,8,["H376"]],[8,11,["H3774"]],[11,14,["H6432"]],[14,16,["H3605"]],[16,19,["H1368"]],[19,23,["H3318"]],[23,25,["H4480","H3389"]],[25,27,["H7291"]],[27,28,["H310"]],[28,29,["H7652"]],[29,31,["H1121"]],[31,33,["H1075"]]]},{"k":8562,"v":[[0,2,["H1992"]],[2,4,["H5973"]],[4,6,["H1419"]],[6,7,["H68"]],[7,8,["H834"]],[8,11,["H1391"]],[11,12,["H6021"]],[12,13,["H935"]],[13,14,["H6440"]],[14,17,["H3097"]],[17,18,["H4055"]],[18,23,["H3830"]],[23,25,["H2296"]],[25,26,["H5921"]],[26,29,["H5921"]],[29,32,["H2289"]],[32,35,["H2719"]],[35,36,["H6775"]],[36,37,["H5921"]],[37,39,["H4975"]],[39,42,["H8593"]],[42,46,["H1931"]],[46,48,["H3318"]],[48,51,["H5307"]]]},{"k":8563,"v":[[0,2,["H3097"]],[2,3,["H559"]],[3,5,["H6021"]],[5,7,["H859"]],[7,9,["H7965"]],[9,11,["H251"]],[11,13,["H3097"]],[13,14,["H270"]],[14,15,["H6021"]],[15,18,["H2206"]],[18,21,["H3225"]],[21,22,["H3027"]],[22,24,["H5401"]],[24,25,[]]]},{"k":8564,"v":[[0,2,["H6021"]],[2,4,["H3808"]],[4,5,["H8104"]],[5,8,["H2719"]],[8,9,["H834"]],[9,12,["H3097"]],[12,13,["H3027"]],[13,16,["H5221"]],[16,19,["H413"]],[19,21,["H2570"]],[21,25,["H8210"]],[25,27,["H4578"]],[27,30,["H776"]],[30,32,["H8138"]],[32,34,["H3808"]],[34,38,["H4191"]],[38,40,["H3097"]],[40,42,["H52"]],[42,44,["H251"]],[44,45,["H7291"]],[45,46,["H310"]],[46,47,["H7652"]],[47,49,["H1121"]],[49,51,["H1075"]]]},{"k":8565,"v":[[0,2,["H376"]],[2,5,["H4480","H5288","H3097"]],[5,6,["H5975"]],[6,7,["H5921"]],[7,10,["H559"]],[10,11,["H4310"]],[11,12,["H834"]],[12,13,["H2654"]],[13,14,["H3097"]],[14,16,["H4310"]],[16,17,["H834"]],[17,20,["H1732"]],[20,24,["H310"]],[24,25,["H3097"]]]},{"k":8566,"v":[[0,2,["H6021"]],[2,3,["H1556"]],[3,5,["H1818"]],[5,8,["H8432"]],[8,11,["H4546"]],[11,15,["H376"]],[15,16,["H7200"]],[16,17,["H3588"]],[17,18,["H3605"]],[18,20,["H5971"]],[20,22,["H5975"]],[22,24,["H5437","(H853)"]],[24,25,["H6021"]],[25,27,["H4480"]],[27,29,["H4546"]],[29,32,["H7704"]],[32,34,["H7993"]],[34,36,["H899"]],[36,37,["H5921"]],[37,39,["H834"]],[39,41,["H7200"]],[41,43,["H3605"]],[43,46,["H935"]],[46,47,["H5921"]],[47,50,["H5975"]]]},{"k":8567,"v":[[0,1,["H834"]],[1,4,["H3014"]],[4,6,["H4480"]],[6,8,["H4546"]],[8,9,["H3605"]],[9,11,["H376"]],[11,13,["H5674"]],[13,14,["H310"]],[14,15,["H3097"]],[15,17,["H7291"]],[17,18,["H310"]],[18,19,["H7652"]],[19,21,["H1121"]],[21,23,["H1075"]]]},{"k":8568,"v":[[0,4,["H5674"]],[4,5,["H3605"]],[5,7,["H7626"]],[7,9,["H3478"]],[9,11,["H59"]],[11,14,["H1038"]],[14,16,["H3605"]],[16,18,["H1276"]],[18,23,["H7035"]],[23,25,["H935"]],[25,26,["H637"]],[26,27,["H310"]],[27,28,[]]]},{"k":8569,"v":[[0,3,["H935"]],[3,5,["H6696","H5921"]],[5,10,["H62"]],[10,14,["H8210"]],[14,16,["H5550"]],[16,17,["H413"]],[17,19,["H5892"]],[19,22,["H5975"]],[22,25,["H2426"]],[25,27,["H3605"]],[27,29,["H5971"]],[29,30,["H834"]],[30,32,["H854"]],[32,33,["H3097"]],[33,34,["H7843"]],[34,36,["H2346"]],[36,40,["H5307"]]]},{"k":8570,"v":[[0,2,["H7121"]],[2,4,["H2450"]],[4,5,["H802"]],[5,7,["H4480"]],[7,9,["H5892"]],[9,10,["H8085"]],[10,11,["H8085"]],[11,12,["H559"]],[12,15,["H4994"]],[15,16,["H413"]],[16,17,["H3097"]],[17,19,["H7126"]],[19,20,["H5704","H2008"]],[20,24,["H1696"]],[24,25,["H413"]],[25,26,[]]]},{"k":8571,"v":[[0,6,["H7126"]],[6,7,["H413"]],[7,10,["H802"]],[10,11,["H559"]],[11,13,["H859"]],[13,14,["H3097"]],[14,17,["H559"]],[17,18,["H589"]],[18,23,["H559"]],[23,26,["H8085"]],[26,28,["H1697"]],[28,31,["H519"]],[31,34,["H559"]],[34,35,["H595"]],[35,37,["H8085"]]]},{"k":8572,"v":[[0,3,["H559"]],[3,4,["H559"]],[4,7,["H1696"]],[7,9,["H1696"]],[9,12,["H7223"]],[12,13,["H559"]],[13,17,["H7592","H7592"]],[17,20,["H59"]],[20,22,["H3651"]],[22,24,["H8552"]],[24,26,[]]]},{"k":8573,"v":[[0,1,["H595"]],[1,8,["H7999"]],[8,10,["H539"]],[10,12,["H3478"]],[12,13,["H859"]],[13,14,["H1245"]],[14,16,["H4191"]],[16,18,["H5892"]],[18,21,["H517"]],[21,23,["H3478"]],[23,24,["H4100"]],[24,28,["H1104"]],[28,30,["H5159"]],[30,33,["H3068"]]]},{"k":8574,"v":[[0,2,["H3097"]],[2,3,["H6030"]],[3,5,["H559"]],[5,8,["H2486"]],[8,11,["H2486"]],[11,14,["H518"]],[14,18,["H1104"]],[18,19,["H518"]],[19,20,["H7843"]]]},{"k":8575,"v":[[0,2,["H1697"]],[2,4,["H3808"]],[4,5,["H3651"]],[5,6,["H3588"]],[6,8,["H376"]],[8,10,["H4480","H2022"]],[10,11,["H669"]],[11,12,["H7652"]],[12,14,["H1121"]],[14,16,["H1075"]],[16,18,["H8034"]],[18,21,["H5375"]],[21,23,["H3027"]],[23,26,["H4428"]],[26,29,["H1732"]],[29,30,["H5414"]],[30,32,["H905"]],[32,36,["H1980"]],[36,37,["H4480","H5921"]],[37,39,["H5892"]],[39,42,["H802"]],[42,43,["H559"]],[43,44,["H413"]],[44,45,["H3097"]],[45,46,["H2009"]],[46,48,["H7218"]],[48,51,["H7993"]],[51,52,["H413"]],[52,54,["H1157"]],[54,56,["H2346"]]]},{"k":8576,"v":[[0,3,["H802"]],[3,4,["H935"]],[4,5,["H413"]],[5,6,["H3605"]],[6,8,["H5971"]],[8,11,["H2451"]],[11,15,["H3772","(H853)"]],[15,17,["H7218"]],[17,19,["H7652"]],[19,21,["H1121"]],[21,23,["H1075"]],[23,27,["H7993"]],[27,28,["H413"]],[28,29,["H3097"]],[29,32,["H8628"]],[32,34,["H7782"]],[34,37,["H6327"]],[37,38,["H4480","H5921"]],[38,40,["H5892"]],[40,42,["H376"]],[42,45,["H168"]],[45,47,["H3097"]],[47,48,["H7725"]],[48,50,["H3389"]],[50,51,["H413"]],[51,53,["H4428"]]]},{"k":8577,"v":[[0,2,["H3097"]],[2,4,["H413"]],[4,5,["H3605"]],[5,7,["H6635"]],[7,9,["H3478"]],[9,11,["H1141"]],[11,13,["H1121"]],[13,15,["H3077"]],[15,17,["H5921"]],[17,19,["H3774"]],[19,21,["H5921"]],[21,23,["H6432"]]]},{"k":8578,"v":[[0,2,["H151"]],[2,4,["H5921"]],[4,6,["H4522"]],[6,8,["H3092"]],[8,10,["H1121"]],[10,12,["H286"]],[12,14,["H2142"]]]},{"k":8579,"v":[[0,2,["H7724"]],[2,4,["H5608"]],[4,6,["H6659"]],[6,8,["H54"]],[8,11,["H3548"]]]},{"k":8580,"v":[[0,2,["H5896"]],[2,3,["H1571"]],[3,5,["H2972"]],[5,6,["H1961"]],[6,9,["H3548"]],[9,11,["H1732"]]]},{"k":8581,"v":[[0,3,["H1961"]],[3,5,["H7458"]],[5,8,["H3117"]],[8,10,["H1732"]],[10,11,["H7969"]],[11,12,["H8141"]],[12,13,["H8141"]],[13,14,["H310"]],[14,15,["H8141"]],[15,17,["H1732"]],[17,18,["H1245","H6440"]],[18,21,["H3068"]],[21,24,["H3068"]],[24,25,["H559"]],[25,28,["H413"]],[28,29,["H7586"]],[29,31,["H413"]],[31,33,["H1818"]],[33,34,["H1004"]],[34,35,["H5921","H834"]],[35,37,["H4191","(H853)"]],[37,39,["H1393"]]]},{"k":8582,"v":[[0,3,["H4428"]],[3,4,["H7121"]],[4,6,["H1393"]],[6,8,["H559"]],[8,9,["H413"]],[9,13,["H1393"]],[13,15,["H3808"]],[15,18,["H4480","H1121"]],[18,20,["H3478"]],[20,21,["H3588","H518"]],[21,24,["H4480","H3499"]],[24,27,["H567"]],[27,30,["H1121"]],[30,32,["H3478"]],[32,34,["H7650"]],[34,38,["H7586"]],[38,39,["H1245"]],[39,41,["H5221"]],[41,45,["H7065"]],[45,48,["H1121"]],[48,50,["H3478"]],[50,52,["H3063"]]]},{"k":8583,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1393"]],[6,7,["H4100"]],[7,10,["H6213"]],[10,14,["H4100"]],[14,19,["H3722"]],[19,23,["H1288","(H853)"]],[23,25,["H5159"]],[25,28,["H3068"]]]},{"k":8584,"v":[[0,3,["H1393"]],[3,4,["H559"]],[4,10,["H369"]],[10,11,["H3701"]],[11,13,["H2091"]],[13,14,["H5973"]],[14,15,["H7586"]],[15,17,["H5973"]],[17,19,["H1004"]],[19,20,["H369"]],[20,25,["H4191"]],[25,27,["H376"]],[27,29,["H3478"]],[29,32,["H559"]],[32,33,["H4100"]],[33,34,["H859"]],[34,36,["H559"]],[36,40,["H6213"]],[40,42,[]]]},{"k":8585,"v":[[0,3,["H559","H413"]],[3,5,["H4428"]],[5,7,["H376"]],[7,8,["H834"]],[8,9,["H3615"]],[9,12,["H834"]],[12,13,["H1819"]],[13,20,["H8045"]],[20,22,["H4480","H3320"]],[22,24,["H3605"]],[24,27,["H1366"]],[27,29,["H3478"]]]},{"k":8586,"v":[[0,2,["H7651"]],[2,3,["H376"]],[3,6,["H4480","H1121"]],[6,8,["H5414"]],[8,14,["H3363"]],[14,19,["H3068"]],[19,21,["H1390"]],[21,23,["H7586"]],[23,26,["H3068"]],[26,28,["H972"]],[28,31,["H4428"]],[31,32,["H559"]],[32,33,["H589"]],[33,35,["H5414"]],[35,36,[]]]},{"k":8587,"v":[[0,3,["H4428"]],[3,4,["H2550","H5921"]],[4,5,["H4648"]],[5,7,["H1121"]],[7,9,["H3083"]],[9,11,["H1121"]],[11,13,["H7586"]],[13,14,["H5921"]],[14,17,["H3068"]],[17,18,["H7621"]],[18,19,["H834"]],[19,21,["H996"]],[21,23,["H996"]],[23,24,["H1732"]],[24,26,["H3083"]],[26,28,["H1121"]],[28,30,["H7586"]]]},{"k":8588,"v":[[0,3,["H4428"]],[3,4,["H3947","(H853)"]],[4,6,["H8147"]],[6,7,["H1121"]],[7,9,["H7532"]],[9,11,["H1323"]],[11,13,["H345"]],[13,14,["H834"]],[14,16,["H3205"]],[16,18,["H7586","(H853)"]],[18,19,["H764"]],[19,21,["H4648"]],[21,24,["H2568"]],[24,25,["H1121"]],[25,27,["H4324"]],[27,29,["H1323"]],[29,31,["H7586"]],[31,32,["H834"]],[32,35,["H3205"]],[35,37,["H5741"]],[37,39,["H1121"]],[39,41,["H1271"]],[41,43,["H4259"]]]},{"k":8589,"v":[[0,3,["H5414"]],[3,7,["H3027"]],[7,10,["H1393"]],[10,13,["H3363"]],[13,17,["H2022"]],[17,18,["H6440"]],[18,20,["H3068"]],[20,23,["H5307"]],[23,25,["H7651"]],[25,26,["H3162"]],[26,31,["H4191"]],[31,34,["H3117"]],[34,36,["H7105"]],[36,39,["H7223"]],[39,43,["H8462"]],[43,45,["H8184"]],[45,46,["H7105"]]]},{"k":8590,"v":[[0,2,["H7532"]],[2,4,["H1323"]],[4,6,["H345"]],[6,7,["H3947","(H853)"]],[7,8,["H8242"]],[8,10,["H5186"]],[10,14,["H413"]],[14,16,["H6697"]],[16,19,["H4480","H8462"]],[19,21,["H7105"]],[21,22,["H5704"]],[22,23,["H4325"]],[23,24,["H5413"]],[24,25,["H5921"]],[25,28,["H4480"]],[28,29,["H8064"]],[29,31,["H5414"]],[31,32,["H3808"]],[32,34,["H5775"]],[34,37,["H8064"]],[37,39,["H5117"]],[39,40,["H5921"]],[40,43,["H3119"]],[43,46,["H2416"]],[46,49,["H7704"]],[49,51,["H3915"]]]},{"k":8591,"v":[[0,4,["H5046"]],[4,5,["H1732","(H853)"]],[5,6,["H834"]],[6,7,["H7532"]],[7,9,["H1323"]],[9,11,["H345"]],[11,13,["H6370"]],[13,15,["H7586"]],[15,17,["H6213"]]]},{"k":8592,"v":[[0,2,["H1732"]],[2,3,["H1980"]],[3,5,["H3947","(H853)"]],[5,7,["H6106"]],[7,9,["H7586"]],[9,12,["H6106"]],[12,14,["H3083"]],[14,16,["H1121"]],[16,17,["H4480","H854"]],[17,19,["H1167"]],[19,21,["H3003","H1568"]],[21,22,["H834"]],[22,24,["H1589"]],[24,28,["H4480","H7339"]],[28,30,["H1052"]],[30,31,["H834","H8033"]],[31,33,["H6430"]],[33,35,["H8511"]],[35,37,["H3117"]],[37,39,["H6430"]],[39,41,["H5221","(H853)"]],[41,42,["H7586"]],[42,44,["H1533"]]]},{"k":8593,"v":[[0,4,["H5927"]],[4,6,["H4480","H8033","(H853)"]],[6,8,["H6106"]],[8,10,["H7586"]],[10,13,["H6106"]],[13,15,["H3083"]],[15,17,["H1121"]],[17,20,["H622","(H853)"]],[20,22,["H6106"]],[22,27,["H3363"]]]},{"k":8594,"v":[[0,1,["(H853)"]],[1,3,["H6106"]],[3,5,["H7586"]],[5,7,["H3083"]],[7,9,["H1121"]],[9,10,["H6912"]],[10,14,["H776"]],[14,16,["H1144"]],[16,18,["H6762"]],[18,21,["H6913"]],[21,23,["H7027"]],[23,25,["H1"]],[25,28,["H6213"]],[28,29,["H3605"]],[29,30,["H834"]],[30,32,["H4428"]],[32,33,["H6680"]],[33,36,["H310","H3651"]],[36,37,["H430"]],[37,39,["H6279"]],[39,42,["H776"]]]},{"k":8595,"v":[[0,3,["H6430"]],[3,4,["H1961"]],[4,6,["H4421"]],[6,8,["H854"]],[8,9,["H3478"]],[9,11,["H1732"]],[11,13,["H3381"]],[13,16,["H5650"]],[16,17,["H5973"]],[17,21,["H3898","(H853)"]],[21,23,["H6430"]],[23,25,["H1732"]],[25,27,["H5774"]]]},{"k":8596,"v":[[0,2,["H3430"]],[2,3,["H834"]],[3,7,["H3211"]],[7,10,["H7498"]],[10,12,["H4948"]],[12,15,["H7013"]],[15,17,["H7969"]],[17,18,["H3967"]],[18,21,["H5178"]],[21,23,["H4948"]],[23,24,["H1931"]],[24,26,["H2296"]],[26,29,["H2319"]],[29,31,["H559"]],[31,34,["H5221","(H853)"]],[34,35,["H1732"]]]},{"k":8597,"v":[[0,2,["H52"]],[2,4,["H1121"]],[4,6,["H6870"]],[6,7,["H5826"]],[7,10,["H5221","(H853)"]],[10,12,["H6430"]],[12,14,["H4191"]],[14,16,["H227"]],[16,18,["H376"]],[18,20,["H1732"]],[20,21,["H7650"]],[21,24,["H559"]],[24,27,["H3318"]],[27,28,["H3808"]],[28,29,["H5750"]],[29,34,["H4421"]],[34,37,["H3518"]],[37,38,["H3808","(H853)"]],[38,40,["H5216"]],[40,42,["H3478"]]]},{"k":8598,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H3651"]],[7,10,["H1961"]],[10,11,["H5750"]],[11,13,["H4421"]],[13,14,["H5973"]],[14,16,["H6430"]],[16,18,["H1359"]],[18,19,["H227"]],[19,20,["H5444"]],[20,22,["H2843"]],[22,23,["H5221","(H853)"]],[23,24,["H5593"]],[24,25,["H834"]],[25,29,["H3211"]],[29,32,["H7498"]]]},{"k":8599,"v":[[0,3,["H1961"]],[3,4,["H5750"]],[4,6,["H4421"]],[6,8,["H1359"]],[8,9,["H5973"]],[9,11,["H6430"]],[11,13,["H445"]],[13,15,["H1121"]],[15,17,["H3296"]],[17,19,["H1022"]],[19,20,["H5221"]],[20,23,["(H853)"]],[23,24,["H1555"]],[24,26,["H1663"]],[26,28,["H6086"]],[28,31,["H2595"]],[31,35,["H707"]],[35,36,["H4500"]]]},{"k":8600,"v":[[0,3,["H1961"]],[3,4,["H5750"]],[4,6,["H4421"]],[6,8,["H1661"]],[8,10,["H1961"]],[10,12,["H376"]],[12,15,["H4055"]],[15,20,["H3027"]],[20,21,["H8337"]],[21,22,["H676"]],[22,26,["H7272"]],[26,27,["H8337"]],[27,28,["H676"]],[28,29,["H702"]],[29,31,["H6242"]],[31,33,["H4557"]],[33,35,["H1931"]],[35,36,["H1571"]],[36,38,["H3205"]],[38,41,["H7498"]]]},{"k":8601,"v":[[0,4,["H2778","(H853)"]],[4,5,["H3478"]],[5,6,["H3083"]],[6,8,["H1121"]],[8,10,["H8092"]],[10,12,["H251"]],[12,14,["H1732"]],[14,15,["H5221"]],[15,16,[]]]},{"k":8602,"v":[[0,1,["H428","(H853)"]],[1,2,["H702"]],[2,4,["H3205"]],[4,7,["H7498"]],[7,9,["H1661"]],[9,11,["H5307"]],[11,14,["H3027"]],[14,16,["H1732"]],[16,20,["H3027"]],[20,23,["H5650"]]]},{"k":8603,"v":[[0,2,["H1732"]],[2,3,["H1696"]],[3,6,["H3068","(H853)"]],[6,8,["H1697"]],[8,10,["H2063"]],[10,11,["H7892"]],[11,14,["H3117"]],[14,17,["H3068"]],[17,19,["H5337"]],[19,24,["H4480","H3709"]],[24,26,["H3605"]],[26,28,["H341"]],[28,33,["H4480","H3709"]],[33,35,["H7586"]]]},{"k":8604,"v":[[0,3,["H559"]],[3,5,["H3068"]],[5,8,["H5553"]],[8,11,["H4686"]],[11,14,["H6403"]]]},{"k":8605,"v":[[0,2,["H430"]],[2,5,["H6697"]],[5,10,["H2620"]],[10,14,["H4043"]],[14,17,["H7161"]],[17,20,["H3468"]],[20,23,["H4869"]],[23,26,["H4498"]],[26,28,["H3467"]],[28,30,["H3467"]],[30,33,["H4480","H2555"]]]},{"k":8606,"v":[[0,4,["H7121"]],[4,6,["H3068"]],[6,12,["H1984"]],[12,17,["H3467"]],[17,20,["H4480","H341"]]]},{"k":8607,"v":[[0,1,["H3588"]],[1,3,["H4867"]],[3,5,["H4194"]],[5,6,["H661"]],[6,9,["H5158"]],[9,11,["H1100"]],[11,15,["H1204"]]]},{"k":8608,"v":[[0,2,["H2256"]],[2,4,["H7585"]],[4,7,["H5437"]],[7,9,["H4170"]],[9,11,["H4194"]],[11,12,["H6923"]],[12,13,[]]]},{"k":8609,"v":[[0,3,["H6862"]],[3,6,["H7121"]],[6,8,["H3068"]],[8,10,["H7121"]],[10,11,["H413"]],[11,13,["H430"]],[13,17,["H8085"]],[17,19,["H6963"]],[19,23,["H4480","H1964"]],[23,26,["H7775"]],[26,31,["H241"]]]},{"k":8610,"v":[[0,3,["H776"]],[3,4,["H1607"]],[4,6,["H7493"]],[6,8,["H4146"]],[8,10,["H8064"]],[10,11,["H7264"]],[11,13,["H1607"]],[13,14,["H3588"]],[14,17,["H2734"]]]},{"k":8611,"v":[[0,3,["H5927"]],[3,5,["H6227"]],[5,9,["H639"]],[9,11,["H784"]],[11,15,["H4480","H6310"]],[15,16,["H398"]],[16,17,["H1513"]],[17,19,["H1197"]],[19,20,["H4480"]],[20,21,[]]]},{"k":8612,"v":[[0,2,["H5186"]],[2,4,["H8064"]],[4,8,["H3381"]],[8,10,["H6205"]],[10,12,["H8478"]],[12,14,["H7272"]]]},{"k":8613,"v":[[0,3,["H7392"]],[3,4,["H5921"]],[4,6,["H3742"]],[6,9,["H5774"]],[9,13,["H7200"]],[13,14,["H5921"]],[14,16,["H3671"]],[16,19,["H7307"]]]},{"k":8614,"v":[[0,3,["H7896"]],[3,4,["H2822"]],[4,5,["H5521"]],[5,7,["H5439"]],[7,9,["H2841"]],[9,10,["H4325"]],[10,13,["H5645"]],[13,16,["H7834"]]]},{"k":8615,"v":[[0,3,["H4480","H5051"]],[3,4,["H5048"]],[4,7,["H1513"]],[7,9,["H784"]],[9,10,["H1197"]]]},{"k":8616,"v":[[0,2,["H3068"]],[2,3,["H7481"]],[3,4,["H4480"]],[4,5,["H8064"]],[5,9,["H5945"]],[9,10,["H5414"]],[10,12,["H6963"]]]},{"k":8617,"v":[[0,4,["H7971"]],[4,5,["H2671"]],[5,7,["H6327"]],[7,9,["H1300"]],[9,11,["H2000"]],[11,12,[]]]},{"k":8618,"v":[[0,3,["H650"]],[3,6,["H3220"]],[6,7,["H7200"]],[7,9,["H4146"]],[9,12,["H8398"]],[12,14,["H1540"]],[14,17,["H1606"]],[17,20,["H3068"]],[20,23,["H4480","H5397"]],[23,26,["H7307"]],[26,29,["H639"]]]},{"k":8619,"v":[[0,2,["H7971"]],[2,4,["H4480","H4791"]],[4,6,["H3947"]],[6,9,["H4871"]],[9,14,["H4480","H4325","H7227"]]]},{"k":8620,"v":[[0,2,["H5337"]],[2,7,["H4480","H341","H5794"]],[7,12,["H4480","H8130"]],[12,14,["H3588"]],[14,18,["H553"]],[18,19,["H4480"]],[19,20,[]]]},{"k":8621,"v":[[0,2,["H6923"]],[2,6,["H3117"]],[6,9,["H343"]],[9,12,["H3068"]],[12,13,["H1961"]],[13,15,["H4937"]]]},{"k":8622,"v":[[0,4,["H3318"]],[4,9,["H4800","(H853)"]],[9,11,["H2502"]],[11,13,["H3588"]],[13,15,["H2654"]],[15,17,[]]]},{"k":8623,"v":[[0,2,["H3068"]],[2,3,["H1580"]],[3,8,["H6666"]],[8,12,["H1252"]],[12,15,["H3027"]],[15,18,["H7725"]],[18,19,[]]]},{"k":8624,"v":[[0,1,["H3588"]],[1,4,["H8104"]],[4,6,["H1870"]],[6,9,["H3068"]],[9,12,["H3808"]],[12,13,["H7561"]],[13,17,["H4480","H430"]]]},{"k":8625,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H4941"]],[4,6,["H5048"]],[6,12,["H2708"]],[12,15,["H3808"]],[15,16,["H5493"]],[16,17,["H4480"]],[17,18,[]]]},{"k":8626,"v":[[0,2,["H1961"]],[2,4,["H8549"]],[4,10,["H8104"]],[10,13,["H4480","H5771"]]]},{"k":8627,"v":[[0,3,["H3068"]],[3,5,["H7725"]],[5,10,["H6666"]],[10,14,["H1252"]],[14,15,["H5048"]],[15,18,["H5869"]]]},{"k":8628,"v":[[0,1,["H5973"]],[1,3,["H2623"]],[3,8,["H2616"]],[8,10,["H5973"]],[10,12,["H8549"]],[12,13,["H1368"]],[13,18,["H8552"]]]},{"k":8629,"v":[[0,1,["H5973"]],[1,3,["H2889"]],[3,8,["H1305"]],[8,10,["H5973"]],[10,12,["H6141"]],[12,17,["H6617"]]]},{"k":8630,"v":[[0,3,["H6041"]],[3,4,["H5971"]],[4,7,["H3467"]],[7,10,["H5869"]],[10,12,["H5921"]],[12,14,["H7311"]],[14,20,["H8213"]]]},{"k":8631,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,5,["H5216"]],[5,7,["H3068"]],[7,10,["H3068"]],[10,12,["H5050"]],[12,14,["H2822"]]]},{"k":8632,"v":[[0,1,["H3588"]],[1,6,["H7323"]],[6,9,["H1416"]],[9,12,["H430"]],[12,15,["H1801"]],[15,18,["H7791"]]]},{"k":8633,"v":[[0,3,["H410"]],[3,5,["H1870"]],[5,7,["H8549"]],[7,9,["H565"]],[9,12,["H3068"]],[12,14,["H6884"]],[14,15,["H1931"]],[15,18,["H4043"]],[18,20,["H3605"]],[20,23,["H2620"]],[23,25,[]]]},{"k":8634,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,4,["H410"]],[4,5,["H4480","H1107"]],[5,7,["H3068"]],[7,9,["H4310"]],[9,12,["H6697"]],[12,13,["H4480","H1107"]],[13,15,["H430"]]]},{"k":8635,"v":[[0,1,["H410"]],[1,4,["H4581"]],[4,6,["H2428"]],[6,9,["H5425"]],[9,11,["H1870"]],[11,12,["H8549"]]]},{"k":8636,"v":[[0,2,["H7737"]],[2,4,["H7272"]],[4,6,["H355"]],[6,9,["H5975"]],[9,11,["H5921"]],[11,14,["H1116"]]]},{"k":8637,"v":[[0,2,["H3925"]],[2,4,["H3027"]],[4,6,["H4421"]],[6,10,["H7198"]],[10,12,["H5154"]],[12,14,["H5181"]],[14,17,["H2220"]]]},{"k":8638,"v":[[0,4,["H5414"]],[4,7,["H4043"]],[7,10,["H3468"]],[10,13,["H6038"]],[13,17,["H7235"]]]},{"k":8639,"v":[[0,3,["H7337"]],[3,5,["H6806"]],[5,6,["H8478"]],[6,11,["H7166"]],[11,13,["H3808"]],[13,14,["H4571"]]]},{"k":8640,"v":[[0,3,["H7291"]],[3,5,["H341"]],[5,7,["H8045"]],[7,12,["H3808","H7725"]],[12,13,["H5704"]],[13,16,["H3615"]],[16,17,[]]]},{"k":8641,"v":[[0,4,["H3615"]],[4,7,["H4272"]],[7,12,["H3808"]],[12,13,["H6965"]],[13,17,["H5307"]],[17,18,["H8478"]],[18,20,["H7272"]]]},{"k":8642,"v":[[0,4,["H247"]],[4,7,["H2428"]],[7,9,["H4421"]],[9,13,["H6965"]],[13,18,["H3766"]],[18,19,["H8478"]],[19,20,[]]]},{"k":8643,"v":[[0,4,["H5414"]],[4,7,["H6203"]],[7,10,["H341"]],[10,14,["H6789"]],[14,17,["H8130"]],[17,18,[]]]},{"k":8644,"v":[[0,2,["H8159"]],[2,6,["H369"]],[6,8,["H3467"]],[8,10,["H413"]],[10,12,["H3068"]],[12,15,["H6030"]],[15,17,["H3808"]]]},{"k":8645,"v":[[0,4,["H7833"]],[4,10,["H6083"]],[10,13,["H776"]],[13,16,["H1854"]],[16,20,["H2916"]],[20,23,["H2351"]],[23,28,["H7554"]]]},{"k":8646,"v":[[0,4,["H6403"]],[4,8,["H4480","H7379"]],[8,11,["H5971"]],[11,14,["H8104"]],[14,18,["H7218"]],[18,21,["H1471"]],[21,23,["H5971"]],[23,26,["H3045"]],[26,27,["H3808"]],[27,29,["H5647"]],[29,30,[]]]},{"k":8647,"v":[[0,1,["H1121","H5236"]],[1,4,["H3584"]],[4,11,["H8085","H241"]],[11,15,["H8085"]],[15,17,[]]]},{"k":8648,"v":[[0,1,["H1121","H5236"]],[1,4,["H5034"]],[4,9,["H2296"]],[9,14,["H4480","H4526"]]]},{"k":8649,"v":[[0,2,["H3068"]],[2,3,["H2416"]],[3,5,["H1288"]],[5,8,["H6697"]],[8,10,["H7311"]],[10,13,["H430"]],[13,16,["H6697"]],[16,19,["H3468"]]]},{"k":8650,"v":[[0,3,["H410"]],[3,5,["H5414","H5360"]],[5,10,["H8213"]],[10,12,["H5971"]],[12,13,["H8478"]],[13,14,[]]]},{"k":8651,"v":[[0,5,["H3318"]],[5,8,["H4480","H341"]],[8,16,["H7311"]],[16,21,["H4480","H6965"]],[21,26,["H5337"]],[26,31,["H4480","H376","H2555"]]]},{"k":8652,"v":[[0,1,["H5921","H3651"]],[1,5,["H3034"]],[5,9,["H3068"]],[9,12,["H1471"]],[12,17,["H2167"]],[17,20,["H8034"]]]},{"k":8653,"v":[[0,4,["H4024"]],[4,6,["H3444"]],[6,9,["H4428"]],[9,11,["H6213"]],[11,12,["H2617"]],[12,15,["H4899"]],[15,17,["H1732"]],[17,21,["H2233"]],[21,23,["H5704","H5769"]]]},{"k":8654,"v":[[0,2,["H428"]],[2,5,["H314"]],[5,6,["H1697"]],[6,8,["H1732"]],[8,9,["H1732"]],[9,11,["H1121"]],[11,13,["H3448"]],[13,14,["H5002","(H1732)"]],[14,17,["H1397"]],[17,21,["H6965"]],[21,23,["H5920"]],[23,25,["H4899"]],[25,28,["H430"]],[28,30,["H3290"]],[30,33,["H5273"]],[33,34,["H2158"]],[34,36,["H3478"]],[36,37,["H5002"]]]},{"k":8655,"v":[[0,2,["H7307"]],[2,5,["H3068"]],[5,6,["H1696"]],[6,11,["H4405"]],[11,13,["H5921"]],[13,15,["H3956"]]]},{"k":8656,"v":[[0,2,["H430"]],[2,4,["H3478"]],[4,5,["H559"]],[5,7,["H6697"]],[7,9,["H3478"]],[9,10,["H1696"]],[10,16,["H4910"]],[16,17,["H120"]],[17,20,["H6662"]],[20,21,["H4910"]],[21,24,["H3374"]],[24,26,["H430"]]]},{"k":8657,"v":[[0,7,["H216"]],[7,10,["H1242"]],[10,13,["H8121"]],[13,14,["H2224"]],[14,17,["H1242"]],[17,18,["H3808"]],[18,19,["H5645"]],[19,23,["H1877"]],[23,28,["H4480","H776"]],[28,31,["H4480","H5051"]],[31,33,["H4480","H4306"]]]},{"k":8658,"v":[[0,1,["H3588"]],[1,3,["H1004"]],[3,5,["H3808"]],[5,6,["H3651"]],[6,7,["H5973"]],[7,8,["H410"]],[8,9,["H3588"]],[9,12,["H7760"]],[12,16,["H5769"]],[16,17,["H1285"]],[17,18,["H6186"]],[18,20,["H3605"]],[20,23,["H8104"]],[23,24,["H3588"]],[24,27,["H3605"]],[27,29,["H3468"]],[29,31,["H3605"]],[31,33,["H2656"]],[33,34,["H3588"]],[34,38,["H3808"]],[38,40,["H6779"]]]},{"k":8659,"v":[[0,5,["H1100"]],[5,8,["H3605"]],[8,12,["H6975"]],[12,14,["H5074"]],[14,15,["H3588"]],[15,17,["H3808"]],[17,19,["H3947"]],[19,21,["H3027"]]]},{"k":8660,"v":[[0,3,["H376"]],[3,6,["H5060"]],[6,10,["H4390"]],[10,12,["H1270"]],[12,15,["H6086"]],[15,18,["H2595"]],[18,24,["H8313","H8313"]],[24,26,["H784"]],[26,30,["H7675"]]]},{"k":8661,"v":[[0,1,["H428"]],[1,4,["H8034"]],[4,8,["H1368"]],[8,9,["H834"]],[9,10,["H1732"]],[10,13,["H8461"]],[13,15,["H3427"]],[15,18,["H7675"]],[18,19,["H7218"]],[19,22,["H7991"]],[22,24,["H1931"]],[24,26,["H5722"]],[26,28,["H6112"]],[28,34,["H5921"]],[34,35,["H8083"]],[35,36,["H3967"]],[36,39,["H2491"]],[39,41,["H259"]],[41,42,["H6471"]]]},{"k":8662,"v":[[0,2,["H310"]],[2,5,["H499"]],[5,7,["H1121"]],[7,9,["H1734"]],[9,11,["H1121","H266"]],[11,15,["H7969"]],[15,17,["H1368"]],[17,18,["H5973"]],[18,19,["H1732"]],[19,22,["H2778"]],[22,24,["H6430"]],[24,27,["H8033"]],[27,29,["H622"]],[29,31,["H4421"]],[31,34,["H376"]],[34,36,["H3478"]],[36,39,["H5927"]]]},{"k":8663,"v":[[0,1,["H1931"]],[1,2,["H6965"]],[2,4,["H5221"]],[4,6,["H6430"]],[6,7,["H5704","H3588"]],[7,9,["H3027"]],[9,11,["H3021"]],[11,14,["H3027"]],[14,15,["H1692"]],[15,16,["H413"]],[16,18,["H2719"]],[18,21,["H3068"]],[21,22,["H6213"]],[22,24,["H1419"]],[24,25,["H8668"]],[25,26,["H1931"]],[26,27,["H3117"]],[27,30,["H5971"]],[30,31,["H7725"]],[31,32,["H310"]],[32,34,["H389"]],[34,36,["H6584"]]]},{"k":8664,"v":[[0,2,["H310"]],[2,5,["H8048"]],[5,7,["H1121"]],[7,9,["H89"]],[9,11,["H2043"]],[11,14,["H6430"]],[14,17,["H622"]],[17,20,["H2416"]],[20,21,["H8033"]],[21,22,["H1961"]],[22,24,["H2513"]],[24,26,["H7704"]],[26,27,["H4392"]],[27,29,["H5742"]],[29,32,["H5971"]],[32,33,["H5127"]],[33,34,["H4480","H6440"]],[34,36,["H6430"]]]},{"k":8665,"v":[[0,3,["H3320"]],[3,6,["H8432"]],[6,9,["H2513"]],[9,11,["H5337"]],[11,14,["H5221","(H853)"]],[14,16,["H6430"]],[16,19,["H3068"]],[19,20,["H6213"]],[20,22,["H1419"]],[22,23,["H8668"]]]},{"k":8666,"v":[[0,2,["H7969"]],[2,5,["H7970"]],[5,6,["H7218"]],[6,8,["H3381"]],[8,10,["H935"]],[10,11,["H413"]],[11,12,["H1732"]],[12,13,["H413"]],[13,16,["H7105"]],[16,17,["H413"]],[17,19,["H4631"]],[19,21,["H5725"]],[21,24,["H2416"]],[24,27,["H6430"]],[27,28,["H2583"]],[28,31,["H6010"]],[31,33,["H7497"]]]},{"k":8667,"v":[[0,2,["H1732"]],[2,4,["H227"]],[4,7,["H4686"]],[7,10,["H4673"]],[10,13,["H6430"]],[13,15,["H227"]],[15,17,["H1035"]]]},{"k":8668,"v":[[0,2,["H1732"]],[2,3,["H183"]],[3,5,["H559"]],[5,8,["H4310"]],[8,12,["H8248"]],[12,15,["H4325"]],[15,18,["H4480","H953"]],[18,20,["H1035"]],[20,21,["H834"]],[21,25,["H8179"]]]},{"k":8669,"v":[[0,3,["H7969"]],[3,5,["H1368"]],[5,7,["H1234"]],[7,9,["H4264"]],[9,12,["H6430"]],[12,14,["H7579"]],[14,15,["H4325"]],[15,19,["H4480","H953"]],[19,21,["H1035"]],[21,22,["H834"]],[22,26,["H8179"]],[26,28,["H5375"]],[28,31,["H935"]],[31,33,["H413"]],[33,34,["H1732"]],[34,37,["H14"]],[37,38,["H3808"]],[38,39,["H8354"]],[39,44,["H5258","(H853)"]],[44,47,["H3068"]]]},{"k":8670,"v":[[0,3,["H559"]],[3,6,["H2486"]],[6,10,["H3068"]],[10,14,["H4480","H6213"]],[14,15,["H2063"]],[15,20,["H1818"]],[20,23,["H376"]],[23,25,["H1980"]],[25,30,["H5315"]],[30,33,["H14"]],[33,34,["H3808"]],[34,35,["H8354"]],[35,37,["H428"]],[37,39,["H6213"]],[39,41,["H7969"]],[41,43,["H1368"]]]},{"k":8671,"v":[[0,2,["H52"]],[2,4,["H251"]],[4,6,["H3097"]],[6,8,["H1121"]],[8,10,["H6870"]],[10,12,["H7218"]],[12,14,["H7992"]],[14,16,["H1931"]],[16,18,["H5782","(H853)"]],[18,20,["H2595"]],[20,21,["H5921"]],[21,22,["H7969"]],[22,23,["H3967"]],[23,25,["H2491"]],[25,30,["H8034"]],[30,32,["H7969"]]]},{"k":8672,"v":[[0,3,["H3588"]],[3,4,["H4480"]],[4,5,["H3513"]],[5,7,["H7969"]],[7,10,["H1961"]],[10,12,["H8269"]],[12,15,["H935"]],[15,16,["H3808"]],[16,17,["H5704"]],[17,20,["H7969"]]]},{"k":8673,"v":[[0,2,["H1141"]],[2,4,["H1121"]],[4,6,["H3077"]],[6,8,["H1121"]],[8,11,["H2428"]],[11,12,["H376"]],[12,14,["H4480","H6909"]],[14,19,["H7227","H6467"]],[19,20,["H1931"]],[20,21,["H5221","(H853)"]],[21,22,["H8147"]],[22,24,["H739"]],[24,26,["H4124"]],[26,27,["H1931"]],[27,29,["H3381"]],[29,32,["H5221","(H853)"]],[32,34,["H738"]],[34,37,["H8432"]],[37,40,["H8432","H953"]],[40,42,["H3117"]],[42,44,["H7950"]]]},{"k":8674,"v":[[0,2,["H1931"]],[2,3,["H5221","(H853)"]],[3,5,["H376","H4713"]],[5,7,["H4758"]],[7,8,["H376"]],[8,11,["H4713"]],[11,14,["H2595"]],[14,17,["H3027"]],[17,21,["H3381"]],[21,22,["H413"]],[22,26,["H7626"]],[26,28,["H1497","(H853)"]],[28,30,["H2595"]],[30,35,["H4480","H3027","H4713"]],[35,37,["H5221"]],[37,42,["H2595"]]]},{"k":8675,"v":[[0,1,["H428"]],[1,3,["H6213"]],[3,4,["H1141"]],[4,6,["H1121"]],[6,8,["H3077"]],[8,12,["H8034"]],[12,14,["H7969"]],[14,16,["H1368"]]]},{"k":8676,"v":[[0,4,["H3513"]],[4,5,["H4480"]],[5,7,["H7970"]],[7,10,["H935"]],[10,11,["H3808"]],[11,12,["H413"]],[12,15,["H7969"]],[15,17,["H1732"]],[17,18,["H7760"]],[18,20,["H413"]],[20,22,["H4928"]]]},{"k":8677,"v":[[0,1,["H6214"]],[1,3,["H251"]],[3,5,["H3097"]],[5,10,["H7970"]],[10,11,["H445"]],[11,13,["H1121"]],[13,15,["H1734"]],[15,17,["H1035"]]]},{"k":8678,"v":[[0,1,["H8048"]],[1,3,["H2733"]],[3,4,["H470"]],[4,6,["H2733"]]]},{"k":8679,"v":[[0,1,["H2503"]],[1,3,["H6407"]],[3,4,["H5896"]],[4,6,["H1121"]],[6,8,["H6142"]],[8,10,["H8621"]]]},{"k":8680,"v":[[0,1,["H44"]],[1,3,["H6069"]],[3,4,["H4012"]],[4,6,["H2843"]]]},{"k":8681,"v":[[0,1,["H6756"]],[1,3,["H266"]],[3,4,["H4121"]],[4,6,["H5200"]]]},{"k":8682,"v":[[0,1,["H2460"]],[1,3,["H1121"]],[3,5,["H1196"]],[5,7,["H5200"]],[7,8,["H863"]],[8,10,["H1121"]],[10,12,["H7380"]],[12,15,["H4480","H1390"]],[15,18,["H1121"]],[18,20,["H1144"]]]},{"k":8683,"v":[[0,1,["H1141"]],[1,3,["H6553"]],[3,4,["H1914"]],[4,7,["H4480","H5158"]],[7,9,["H1608"]]]},{"k":8684,"v":[[0,1,["H45"]],[1,3,["H6164"]],[3,4,["H5820"]],[4,6,["H1273"]]]},{"k":8685,"v":[[0,1,["H455"]],[1,3,["H8170"]],[3,6,["H1121"]],[6,8,["H3464"]],[8,9,["H3083"]]]},{"k":8686,"v":[[0,1,["H8048"]],[1,3,["H2043"]],[3,4,["H279"]],[4,6,["H1121"]],[6,8,["H8325"]],[8,10,["H2043"]]]},{"k":8687,"v":[[0,1,["H467"]],[1,3,["H1121"]],[3,5,["H308"]],[5,7,["H1121"]],[7,10,["H4602"]],[10,11,["H463"]],[11,13,["H1121"]],[13,15,["H302"]],[15,17,["H1526"]]]},{"k":8688,"v":[[0,1,["H2695"]],[1,3,["H3761"]],[3,4,["H6474"]],[4,6,["H701"]]]},{"k":8689,"v":[[0,1,["H3008"]],[1,3,["H1121"]],[3,5,["H5416"]],[5,7,["H4480","H6678"]],[7,8,["H1137"]],[8,10,["H1425"]]]},{"k":8690,"v":[[0,1,["H6768"]],[1,3,["H5984"]],[3,4,["H5171"]],[4,6,["H886"]],[6,7,["H3627","H5375"]],[7,9,["H3097"]],[9,11,["H1121"]],[11,13,["H6870"]]]},{"k":8691,"v":[[0,1,["H5896"]],[1,3,["H3505"]],[3,4,["H1619"]],[4,6,["H3505"]]]},{"k":8692,"v":[[0,1,["H223"]],[1,3,["H2850"]],[3,4,["H7970"]],[4,6,["H7651"]],[6,8,["H3605"]]]},{"k":8693,"v":[[0,2,["H3254"]],[2,4,["H639"]],[4,7,["H3068"]],[7,9,["H2734"]],[9,11,["H3478"]],[11,14,["H5496","(H853)"]],[14,15,["H1732"]],[15,19,["H559"]],[19,20,["H1980"]],[20,21,["H4487","(H853)"]],[21,22,["H3478"]],[22,24,["H3063"]]]},{"k":8694,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3097"]],[6,8,["H8269"]],[8,11,["H2428"]],[11,12,["H834"]],[12,14,["H854"]],[14,16,["H7751"]],[16,17,["H4994"]],[17,19,["H3605"]],[19,21,["H7626"]],[21,23,["H3478"]],[23,25,["H4480","H1835"]],[25,27,["H5704"]],[27,28,["H884"]],[28,30,["H6485"]],[30,31,["(H853)"]],[31,33,["H5971"]],[33,37,["H3045","(H853)"]],[37,39,["H4557"]],[39,42,["H5971"]]]},{"k":8695,"v":[[0,2,["H3097"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,9,["H3068"]],[9,11,["H430"]],[11,12,["H3254"]],[12,13,["H413"]],[13,15,["H5971"]],[15,20,["H1992","H1992"]],[20,22,["H3967","H6471"]],[22,26,["H5869"]],[26,29,["H113"]],[29,31,["H4428"]],[31,33,["H7200"]],[33,36,["H4100"]],[36,39,["H113"]],[39,41,["H4428"]],[41,42,["H2654"]],[42,44,["H2088"]],[44,45,["H1697"]]]},{"k":8696,"v":[[0,3,["H4428"]],[3,4,["H1697"]],[4,5,["H2388"]],[5,6,["H413"]],[6,7,["H3097"]],[7,9,["H5921"]],[9,11,["H8269"]],[11,14,["H2428"]],[14,16,["H3097"]],[16,19,["H8269"]],[19,22,["H2428"]],[22,24,["H3318"]],[24,27,["H6440"]],[27,30,["H4428"]],[30,32,["H6485","(H853)"]],[32,34,["H5971"]],[34,36,["H3478"]]]},{"k":8697,"v":[[0,4,["H5674","(H853)"]],[4,5,["H3383"]],[5,7,["H2583"]],[7,9,["H6177"]],[9,13,["H3225"]],[13,16,["H5892"]],[16,17,["H834"]],[17,21,["H8432"]],[21,24,["H5158"]],[24,26,["H1410"]],[26,28,["H413"]],[28,29,["H3270"]]]},{"k":8698,"v":[[0,3,["H935"]],[3,5,["H1568"]],[5,7,["H413"]],[7,9,["H776"]],[9,11,["H8483"]],[11,14,["H935"]],[14,16,["H1842"]],[16,18,["H5439"]],[18,19,["H413"]],[19,20,["H6721"]]]},{"k":8699,"v":[[0,2,["H935"]],[2,6,["H4013"]],[6,8,["H6865"]],[8,11,["H3605"]],[11,13,["H5892"]],[13,16,["H2340"]],[16,20,["H3669"]],[20,24,["H3318"]],[24,25,["H413"]],[25,27,["H5045"]],[27,29,["H3063"]],[29,32,["H884"]]]},{"k":8700,"v":[[0,5,["H7751"]],[5,7,["H3605"]],[7,9,["H776"]],[9,11,["H935"]],[11,13,["H3389"]],[13,16,["H4480","H7097"]],[16,18,["H8672"]],[18,19,["H2320"]],[19,21,["H6242"]],[21,22,["H3117"]]]},{"k":8701,"v":[[0,2,["H3097"]],[2,4,["H5414","(H853)"]],[4,6,["H4557"]],[6,9,["H4662"]],[9,12,["H5971"]],[12,13,["H413"]],[13,15,["H4428"]],[15,18,["H1961"]],[18,20,["H3478"]],[20,21,["H8083"]],[21,22,["H3967"]],[22,23,["H505"]],[23,24,["H2428"]],[24,25,["H376"]],[25,27,["H8025"]],[27,29,["H2719"]],[29,32,["H376"]],[32,34,["H3063"]],[34,36,["H2568"]],[36,37,["H3967"]],[37,38,["H505"]],[38,39,["H376"]]]},{"k":8702,"v":[[0,2,["H1732"]],[2,3,["H3820"]],[3,4,["H5221"]],[4,6,["H310"]],[6,7,["H3651"]],[7,10,["H5608","(H853)"]],[10,12,["H5971"]],[12,14,["H1732"]],[14,15,["H559"]],[15,16,["H413"]],[16,18,["H3068"]],[18,21,["H2398"]],[21,22,["H3966"]],[22,24,["H834"]],[24,27,["H6213"]],[27,29,["H6258"]],[29,32,["H4994"]],[32,34,["H3068"]],[34,36,["H5674","(H853)"]],[36,38,["H5771"]],[38,41,["H5650"]],[41,42,["H3588"]],[42,46,["H3966"]],[46,47,["H5528"]]]},{"k":8703,"v":[[0,3,["H1732"]],[3,5,["H6965"]],[5,8,["H1242"]],[8,10,["H1697"]],[10,13,["H3068"]],[13,14,["H1961"]],[14,15,["H413"]],[15,17,["H5030"]],[17,18,["H1410"]],[18,19,["H1732"]],[19,20,["H2374"]],[20,21,["H559"]]]},{"k":8704,"v":[[0,1,["H1980"]],[1,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,6,["H3541"]],[6,7,["H1696"]],[7,9,["H3068"]],[9,10,["H595"]],[10,11,["H5190","H5921"]],[11,13,["H7969"]],[13,15,["H977"]],[15,17,["H259"]],[17,18,["H4480"]],[18,23,["H6213"]],[23,26,[]]]},{"k":8705,"v":[[0,2,["H1410"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H1732"]],[5,7,["H5046"]],[7,10,["H559"]],[10,14,["H7651"]],[14,15,["H8141"]],[15,17,["H7458"]],[17,18,["H935"]],[18,23,["H776"]],[23,24,["H518"]],[24,27,["H5127"]],[27,28,["H7969"]],[28,29,["H2320"]],[29,30,["H6440"]],[30,32,["H6862"]],[32,34,["H1931"]],[34,35,["H7291"]],[35,37,["H518"]],[37,40,["H1961"]],[40,41,["H7969"]],[41,42,["H3117"]],[42,43,["H1698"]],[43,46,["H776"]],[46,47,["H6258"]],[47,48,["H3045"]],[48,50,["H7200"]],[50,51,["H4100"]],[51,52,["H1697"]],[52,55,["H7725"]],[55,59,["H7971"]],[59,60,[]]]},{"k":8706,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1410"]],[5,10,["H3966"]],[10,11,["H6862"]],[11,14,["H5307"]],[14,15,["H4994"]],[15,18,["H3027"]],[18,21,["H3068"]],[21,22,["H3588"]],[22,24,["H7356"]],[24,26,["H7227"]],[26,30,["H408"]],[30,31,["H5307"]],[31,34,["H3027"]],[34,36,["H120"]]]},{"k":8707,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,6,["H1698"]],[6,8,["H3478"]],[8,11,["H1242"]],[11,13,["H5704"]],[13,15,["H6256"]],[15,16,["H4150"]],[16,19,["H4191"]],[19,20,["H4480"]],[20,22,["H5971"]],[22,24,["H4480","H1835"]],[24,26,["H5704"]],[26,27,["H884"]],[27,28,["H7657"]],[28,29,["H505"]],[29,30,["H376"]]]},{"k":8708,"v":[[0,4,["H4397"]],[4,6,["H7971"]],[6,8,["H3027"]],[8,10,["H3389"]],[10,12,["H7843"]],[12,15,["H3068"]],[15,17,["H5162"]],[17,18,["H413"]],[18,20,["H7451"]],[20,22,["H559"]],[22,25,["H4397"]],[25,27,["H7843"]],[27,29,["H5971"]],[29,32,["H7227"]],[32,33,["H7503"]],[33,34,["H6258"]],[34,36,["H3027"]],[36,39,["H4397"]],[39,42,["H3068"]],[42,43,["H1961"]],[43,44,["H5973"]],[44,46,["H1637"]],[46,48,["H728"]],[48,50,["H2983"]]]},{"k":8709,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3068"]],[6,9,["H7200","(H853)"]],[9,11,["H4397"]],[11,13,["H5221"]],[13,15,["H5971"]],[15,17,["H559"]],[17,18,["H2009"]],[18,19,["H595"]],[19,21,["H2398"]],[21,23,["H595"]],[23,26,["H5753"]],[26,28,["H428"]],[28,29,["H6629"]],[29,30,["H4100"]],[30,33,["H6213"]],[33,36,["H3027"]],[36,39,["H4994"]],[39,40,["H1961"]],[40,46,["H1"]],[46,47,["H1004"]]]},{"k":8710,"v":[[0,2,["H1410"]],[2,3,["H935"]],[3,4,["H1931"]],[4,5,["H3117"]],[5,6,["H413"]],[6,7,["H1732"]],[7,9,["H559"]],[9,13,["H5927"]],[13,14,["H6965"]],[14,16,["H4196"]],[16,19,["H3068"]],[19,22,["H1637"]],[22,24,["H728"]],[24,26,["H2983"]]]},{"k":8711,"v":[[0,2,["H1732"]],[2,6,["H1697"]],[6,8,["H1410"]],[8,10,["H5927"]],[10,11,["H834"]],[11,13,["H3068"]],[13,14,["H6680"]]]},{"k":8712,"v":[[0,2,["H728"]],[2,3,["H8259"]],[3,5,["H7200","(H853)"]],[5,7,["H4428"]],[7,10,["H5650"]],[10,12,["H5674"]],[12,13,["H5921"]],[13,16,["H728"]],[16,18,["H3318"]],[18,21,["H7812"]],[21,24,["H4428"]],[24,27,["H639"]],[27,30,["H776"]]]},{"k":8713,"v":[[0,2,["H728"]],[2,3,["H559"]],[3,4,["H4069"]],[4,7,["H113"]],[7,9,["H4428"]],[9,10,["H935"]],[10,11,["H413"]],[11,13,["H5650"]],[13,15,["H1732"]],[15,16,["H559"]],[16,18,["H7069","(H853)"]],[18,20,["H1637"]],[20,21,["H4480","H5973"]],[21,24,["H1129"]],[24,26,["H4196"]],[26,29,["H3068"]],[29,32,["H4046"]],[32,35,["H6113"]],[35,36,["H4480","H5921"]],[36,38,["H5971"]]]},{"k":8714,"v":[[0,2,["H728"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,8,["H113"]],[8,10,["H4428"]],[10,11,["H3947"]],[11,14,["H5927"]],[14,17,["H2896"]],[17,19,["H5869"]],[19,20,["H7200"]],[20,23,["H1241"]],[23,26,["H5930"]],[26,29,["H4173"]],[29,32,["H3627"]],[32,35,["H1241"]],[35,37,["H6086"]]]},{"k":8715,"v":[[0,1,["H3605"]],[1,5,["H728"]],[5,8,["H4428"]],[8,9,["H5414"]],[9,10,["H413"]],[10,12,["H4428"]],[12,14,["H728"]],[14,15,["H559"]],[15,18,["H4428"]],[18,20,["H3068"]],[20,22,["H430"]],[22,23,["H7521"]],[23,24,[]]]},{"k":8716,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H728"]],[6,7,["H3808"]],[7,8,["H3588"]],[8,12,["H7069","H7069"]],[12,14,["H4480","H854"]],[14,18,["H4242"]],[18,19,["H3808"]],[19,22,["H5927"]],[22,24,["H5930"]],[24,27,["H3068"]],[27,29,["H430"]],[29,32,["H834"]],[32,36,["H2600"]],[36,38,["H1732"]],[38,39,["H7069","(H853)"]],[39,41,["H1637"]],[41,44,["H1241"]],[44,46,["H2572"]],[46,47,["H8255"]],[47,49,["H3701"]]]},{"k":8717,"v":[[0,2,["H1732"]],[2,3,["H1129"]],[3,4,["H8033"]],[4,6,["H4196"]],[6,9,["H3068"]],[9,11,["H5927"]],[11,13,["H5930"]],[13,16,["H8002"]],[16,19,["H3068"]],[19,21,["H6279"]],[21,24,["H776"]],[24,27,["H4046"]],[27,29,["H6113"]],[29,30,["H4480","H5921"]],[30,31,["H3478"]]]},{"k":8718,"v":[[0,2,["H4428"]],[2,3,["H1732"]],[3,5,["H2204"]],[5,7,["H935"]],[7,9,["H3117"]],[9,12,["H3680"]],[12,15,["H899"]],[15,20,["H3808","H3179"]]]},{"k":8719,"v":[[0,3,["H5650"]],[3,4,["H559"]],[4,10,["H1245"]],[10,13,["H113"]],[13,15,["H4428"]],[15,17,["H5291"]],[17,18,["H1330"]],[18,22,["H5975"]],[22,23,["H6440"]],[23,25,["H4428"]],[25,29,["H5532"]],[29,34,["H7901"]],[34,37,["H2436"]],[37,40,["H113"]],[40,42,["H4428"]],[42,45,["H2552"]]]},{"k":8720,"v":[[0,3,["H1245"]],[3,6,["H3303"]],[6,7,["H5291"]],[7,9,["H3605"]],[9,11,["H1366"]],[11,13,["H3478"]],[13,15,["H4672","(H853)"]],[15,16,["H49"]],[16,18,["H7767"]],[18,20,["H935"]],[20,24,["H4428"]]]},{"k":8721,"v":[[0,3,["H5291"]],[3,5,["H5704","H3966"]],[5,6,["H3303"]],[6,8,["H5532"]],[8,10,["H4428"]],[10,12,["H8334"]],[12,17,["H4428"]],[17,18,["H3045"]],[18,20,["H3808"]]]},{"k":8722,"v":[[0,2,["H138"]],[2,4,["H1121"]],[4,6,["H2294"]],[6,8,["H4984"]],[8,9,["H559"]],[9,10,["H589"]],[10,13,["H4427"]],[13,16,["H6213"]],[16,18,["H7393"]],[18,20,["H6571"]],[20,22,["H2572"]],[22,23,["H376"]],[23,25,["H7323"]],[25,26,["H6440"]],[26,27,[]]]},{"k":8723,"v":[[0,3,["H1"]],[3,5,["H3808"]],[5,6,["H6087"]],[6,10,["H4480","H3117"]],[10,12,["H559"]],[12,13,["H4069"]],[13,16,["H6213"]],[16,17,["H3602"]],[17,19,["H1931"]],[19,20,["H1571"]],[20,23,["H3966"]],[23,24,["H2896","H8389"]],[24,29,["H3205"]],[29,31,["H310"]],[31,32,["H53"]]]},{"k":8724,"v":[[0,3,["H1697"]],[3,4,["H5973"]],[4,5,["H3097"]],[5,7,["H1121"]],[7,9,["H6870"]],[9,11,["H5973"]],[11,12,["H54"]],[12,14,["H3548"]],[14,17,["H310"]],[17,18,["H138"]],[18,19,["H5826"]],[19,20,[]]]},{"k":8725,"v":[[0,2,["H6659"]],[2,4,["H3548"]],[4,6,["H1141"]],[6,8,["H1121"]],[8,10,["H3077"]],[10,12,["H5416"]],[12,14,["H5030"]],[14,16,["H8096"]],[16,18,["H7472"]],[18,22,["H1368"]],[22,23,["H834"]],[23,26,["H1732"]],[26,27,["H1961"]],[27,28,["H3808"]],[28,29,["H5973"]],[29,30,["H138"]]]},{"k":8726,"v":[[0,2,["H138"]],[2,3,["H2076"]],[3,4,["H6629"]],[4,6,["H1241"]],[6,9,["H4806"]],[9,10,["H5973"]],[10,12,["H68"]],[12,14,["H2120"]],[14,15,["H834"]],[15,17,["H681"]],[17,18,["H5883"]],[18,20,["H7121","(H853)"]],[20,21,["H3605"]],[21,23,["H251"]],[23,25,["H4428"]],[25,26,["H1121"]],[26,28,["H3605"]],[28,30,["H376"]],[30,32,["H3063"]],[32,34,["H4428"]],[34,35,["H5650"]]]},{"k":8727,"v":[[0,2,["H5416"]],[2,4,["H5030"]],[4,6,["H1141"]],[6,10,["H1368"]],[10,12,["H8010"]],[12,14,["H251"]],[14,16,["H7121"]],[16,17,["H3808"]]]},{"k":8728,"v":[[0,2,["H5416"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1339"]],[5,7,["H517"]],[7,9,["H8010"]],[9,10,["H559"]],[10,13,["H3808"]],[13,14,["H8085"]],[14,15,["H3588"]],[15,16,["H138"]],[16,18,["H1121"]],[18,20,["H2294"]],[20,22,["H4427"]],[22,24,["H1732"]],[24,26,["H113"]],[26,27,["H3045"]],[27,29,["H3808"]]]},{"k":8729,"v":[[0,1,["H6258"]],[1,3,["H1980"]],[3,8,["H4994"]],[8,9,["H3289"]],[9,11,["H6098"]],[11,15,["H4422","(H853)"]],[15,18,["H5315"]],[18,21,["H5315"]],[21,24,["H1121"]],[24,25,["H8010"]]]},{"k":8730,"v":[[0,1,["H1980"]],[1,5,["H935"]],[5,6,["H413"]],[6,7,["H4428"]],[7,8,["H1732"]],[8,10,["H559"]],[10,11,["H413"]],[11,14,["H3808"]],[14,15,["H859"]],[15,17,["H113"]],[17,19,["H4428"]],[19,20,["H7650"]],[20,23,["H519"]],[23,24,["H559"]],[24,25,["H3588"]],[25,26,["H8010"]],[26,28,["H1121"]],[28,30,["H4427"]],[30,31,["H310"]],[31,34,["H1931"]],[34,36,["H3427"]],[36,37,["H5921"]],[37,39,["H3678"]],[39,40,["H4069"]],[40,43,["H138"]],[43,44,["H4427"]]]},{"k":8731,"v":[[0,1,["H2009"]],[1,4,["H5750"]],[4,5,["H1696"]],[5,6,["H8033"]],[6,7,["H5973"]],[7,9,["H4428"]],[9,10,["H589"]],[10,14,["H935"]],[14,15,["H310"]],[15,18,["H4390","(H853)"]],[18,20,["H1697"]]]},{"k":8732,"v":[[0,2,["H1339"]],[2,4,["H935"]],[4,5,["H413"]],[5,7,["H4428"]],[7,10,["H2315"]],[10,13,["H4428"]],[13,15,["H3966"]],[15,16,["H2204"]],[16,18,["H49"]],[18,20,["H7767"]],[20,22,["H8334","(H853)"]],[22,24,["H4428"]]]},{"k":8733,"v":[[0,2,["H1339"]],[2,3,["H6915"]],[3,6,["H7812"]],[6,9,["H4428"]],[9,12,["H4428"]],[12,13,["H559"]],[13,14,["H4100"]],[14,16,[]]]},{"k":8734,"v":[[0,3,["H559"]],[3,7,["H113"]],[7,8,["H859"]],[8,9,["H7650"]],[9,12,["H3068"]],[12,14,["H430"]],[14,17,["H519"]],[17,19,["H3588"]],[19,20,["H8010"]],[20,22,["H1121"]],[22,24,["H4427"]],[24,25,["H310"]],[25,28,["H1931"]],[28,30,["H3427"]],[30,31,["H5921"]],[31,33,["H3678"]]]},{"k":8735,"v":[[0,2,["H6258"]],[2,3,["H2009"]],[3,4,["H138"]],[4,5,["H4427"]],[5,7,["H6258"]],[7,9,["H113"]],[9,11,["H4428"]],[11,13,["H3045"]],[13,15,["H3808"]]]},{"k":8736,"v":[[0,4,["H2076"]],[4,5,["H7794"]],[5,8,["H4806"]],[8,10,["H6629"]],[10,12,["H7230"]],[12,15,["H7121"]],[15,16,["H3605"]],[16,18,["H1121"]],[18,21,["H4428"]],[21,23,["H54"]],[23,25,["H3548"]],[25,27,["H3097"]],[27,29,["H8269"]],[29,32,["H6635"]],[32,34,["H8010"]],[34,36,["H5650"]],[36,39,["H3808"]],[39,40,["H7121"]]]},{"k":8737,"v":[[0,2,["H859"]],[2,4,["H113"]],[4,6,["H4428"]],[6,8,["H5869"]],[8,10,["H3605"]],[10,11,["H3478"]],[11,13,["H5921"]],[13,18,["H5046"]],[18,20,["H4310"]],[20,22,["H3427"]],[22,23,["H5921"]],[23,25,["H3678"]],[25,28,["H113"]],[28,30,["H4428"]],[30,31,["H310"]],[31,32,[]]]},{"k":8738,"v":[[0,6,["H1961"]],[6,9,["H113"]],[9,11,["H4428"]],[11,13,["H7901"]],[13,14,["H5973"]],[14,16,["H1"]],[16,18,["H589"]],[18,21,["H1121"]],[21,22,["H8010"]],[22,25,["H1961"]],[25,26,["H2400"]]]},{"k":8739,"v":[[0,2,["H2009"]],[2,5,["H5750"]],[5,6,["H1696"]],[6,7,["H5973"]],[7,9,["H4428"]],[9,10,["H5416"]],[10,12,["H5030"]],[12,15,["H935"]]]},{"k":8740,"v":[[0,3,["H5046"]],[3,5,["H4428"]],[5,6,["H559"]],[6,7,["H2009"]],[7,8,["H5416"]],[8,10,["H5030"]],[10,16,["H935"]],[16,17,["H6440"]],[17,19,["H4428"]],[19,22,["H7812"]],[22,25,["H4428"]],[25,26,["H5921"]],[26,28,["H639"]],[28,31,["H776"]]]},{"k":8741,"v":[[0,2,["H5416"]],[2,3,["H559"]],[3,5,["H113"]],[5,7,["H4428"]],[7,9,["H859"]],[9,10,["H559"]],[10,11,["H138"]],[11,13,["H4427"]],[13,14,["H310"]],[14,17,["H1931"]],[17,19,["H3427"]],[19,20,["H5921"]],[20,22,["H3678"]]]},{"k":8742,"v":[[0,1,["H3588"]],[1,5,["H3381"]],[5,7,["H3117"]],[7,10,["H2076"]],[10,11,["H7794"]],[11,14,["H4806"]],[14,16,["H6629"]],[16,18,["H7230"]],[18,21,["H7121"]],[21,22,["H3605"]],[22,24,["H4428"]],[24,25,["H1121"]],[25,28,["H8269"]],[28,31,["H6635"]],[31,33,["H54"]],[33,35,["H3548"]],[35,37,["H2009"]],[37,39,["H398"]],[39,41,["H8354"]],[41,42,["H6440"]],[42,45,["H559"]],[45,47,["H2421"]],[47,48,["H4428"]],[48,49,["H138"]]]},{"k":8743,"v":[[0,4,["H589"]],[4,6,["H5650"]],[6,8,["H6659"]],[8,10,["H3548"]],[10,12,["H1141"]],[12,14,["H1121"]],[14,16,["H3077"]],[16,19,["H5650"]],[19,20,["H8010"]],[20,23,["H3808"]],[23,24,["H7121"]]]},{"k":8744,"v":[[0,2,["H2088"]],[2,3,["H1697"]],[3,4,["H1961"]],[4,5,["H4480","H854"]],[5,7,["H113"]],[7,9,["H4428"]],[9,13,["H3808"]],[13,16,["H3045","(H853)"]],[16,18,["H5650"]],[18,19,["H4310"]],[19,21,["H3427"]],[21,22,["H5921"]],[22,24,["H3678"]],[24,27,["H113"]],[27,29,["H4428"]],[29,30,["H310"]],[30,31,[]]]},{"k":8745,"v":[[0,2,["H4428"]],[2,3,["H1732"]],[3,4,["H6030"]],[4,6,["H559"]],[6,7,["H7121"]],[7,9,["H1339"]],[9,13,["H935"]],[13,15,["H4428"]],[15,16,["H6440"]],[16,18,["H5975"]],[18,19,["H6440"]],[19,21,["H4428"]]]},{"k":8746,"v":[[0,3,["H4428"]],[3,4,["H7650"]],[4,6,["H559"]],[6,9,["H3068"]],[9,10,["H2416"]],[10,11,["H834"]],[11,13,["H6299","(H853)"]],[13,15,["H5315"]],[15,18,["H4480","H3605"]],[18,19,["H6869"]]]},{"k":8747,"v":[[0,1,["H3588"]],[1,2,["H834"]],[2,4,["H7650"]],[4,9,["H3068"]],[9,10,["H430"]],[10,12,["H3478"]],[12,13,["H559"]],[13,14,["H3588"]],[14,15,["H8010"]],[15,17,["H1121"]],[17,19,["H4427"]],[19,20,["H310"]],[20,23,["H1931"]],[23,25,["H3427"]],[25,26,["H5921"]],[26,28,["H3678"]],[28,31,["H8478"]],[31,32,["H3588"]],[32,33,["H3651"]],[33,37,["H6213"]],[37,38,["H2088"]],[38,39,["H3117"]]]},{"k":8748,"v":[[0,2,["H1339"]],[2,3,["H6915"]],[3,6,["H639"]],[6,9,["H776"]],[9,12,["H7812"]],[12,15,["H4428"]],[15,17,["H559"]],[17,20,["H113"]],[20,21,["H4428"]],[21,22,["H1732"]],[22,23,["H2421"]],[23,25,["H5769"]]]},{"k":8749,"v":[[0,2,["H4428"]],[2,3,["H1732"]],[3,4,["H559"]],[4,5,["H7121"]],[5,7,["H6659"]],[7,9,["H3548"]],[9,11,["H5416"]],[11,13,["H5030"]],[13,15,["H1141"]],[15,17,["H1121"]],[17,19,["H3077"]],[19,22,["H935"]],[22,23,["H6440"]],[23,25,["H4428"]]]},{"k":8750,"v":[[0,2,["H4428"]],[2,4,["H559"]],[4,7,["H3947"]],[7,8,["H5973"]],[8,9,["(H853)"]],[9,11,["H5650"]],[11,14,["H113"]],[14,16,["(H853)"]],[16,17,["H8010"]],[17,19,["H1121"]],[19,21,["H7392"]],[21,22,["H5921"]],[22,25,["H6506"]],[25,29,["H3381","(H853)"]],[29,30,["H413"]],[30,31,["H1521"]]]},{"k":8751,"v":[[0,3,["H6659"]],[3,5,["H3548"]],[5,7,["H5416"]],[7,9,["H5030"]],[9,10,["H4886"]],[10,12,["H8033"]],[12,13,["H4428"]],[13,14,["H5921"]],[14,15,["H3478"]],[15,17,["H8628"]],[17,21,["H7782"]],[21,23,["H559"]],[23,25,["H2421"]],[25,26,["H4428"]],[26,27,["H8010"]]]},{"k":8752,"v":[[0,5,["H5927"]],[5,6,["H310"]],[6,11,["H935"]],[11,13,["H3427"]],[13,14,["H5921"]],[14,16,["H3678"]],[16,18,["H1931"]],[18,21,["H4427"]],[21,24,["H8478"]],[24,28,["H6680"]],[28,31,["H1961"]],[31,32,["H5057"]],[32,33,["H5921"]],[33,34,["H3478"]],[34,36,["H5921"]],[36,37,["H3063"]]]},{"k":8753,"v":[[0,2,["H1141"]],[2,4,["H1121"]],[4,6,["H3077"]],[6,7,["H6030","(H853)"]],[7,9,["H4428"]],[9,11,["H559"]],[11,12,["H543"]],[12,14,["H3068"]],[14,15,["H430"]],[15,18,["H113"]],[18,20,["H4428"]],[20,21,["H559"]],[21,22,["H3651"]],[22,23,[]]]},{"k":8754,"v":[[0,1,["H834"]],[1,3,["H3068"]],[3,5,["H1961"]],[5,6,["H5973"]],[6,8,["H113"]],[8,10,["H4428"]],[10,12,["H3651"]],[12,13,["H1961"]],[13,15,["H5973"]],[15,16,["H8010"]],[16,21,["H1431","(H853)","H3678"]],[21,24,["H4480","H3678"]],[24,27,["H113"]],[27,28,["H4428"]],[28,29,["H1732"]]]},{"k":8755,"v":[[0,2,["H6659"]],[2,4,["H3548"]],[4,6,["H5416"]],[6,8,["H5030"]],[8,10,["H1141"]],[10,12,["H1121"]],[12,14,["H3077"]],[14,17,["H3774"]],[17,20,["H6432"]],[20,22,["H3381"]],[22,24,["(H853)"]],[24,25,["H8010"]],[25,27,["H7392"]],[27,28,["H5921"]],[28,29,["H4428"]],[29,30,["H1732"]],[30,31,["H6506"]],[31,33,["H1980"]],[33,35,["H5921"]],[35,36,["H1521"]]]},{"k":8756,"v":[[0,2,["H6659"]],[2,4,["H3548"]],[4,5,["H3947","(H853)"]],[5,7,["H7161"]],[7,9,["H8081"]],[9,11,["H4480"]],[11,13,["H168"]],[13,15,["H4886","(H853)"]],[15,16,["H8010"]],[16,19,["H8628"]],[19,21,["H7782"]],[21,23,["H3605"]],[23,25,["H5971"]],[25,26,["H559"]],[26,28,["H2421"]],[28,29,["H4428"]],[29,30,["H8010"]]]},{"k":8757,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H5927"]],[6,7,["H310"]],[7,11,["H5971"]],[11,12,["H2490"]],[12,14,["H2485"]],[14,16,["H8056"]],[16,18,["H1419"]],[18,19,["H8057"]],[19,23,["H776"]],[23,24,["H1234"]],[24,27,["H6963"]],[27,29,[]]]},{"k":8758,"v":[[0,2,["H138"]],[2,4,["H3605"]],[4,6,["H7121"]],[6,7,["H834"]],[7,9,["H854"]],[9,11,["H8085"]],[11,14,["H1992"]],[14,18,["H3615"]],[18,20,["H398"]],[20,23,["H3097"]],[23,24,["H8085","(H853)"]],[24,26,["H6963"]],[26,29,["H7782"]],[29,31,["H559"]],[31,32,["H4069"]],[32,35,["H6963"]],[35,38,["H7151"]],[38,42,["H1993"]]]},{"k":8759,"v":[[0,4,["H5750"]],[4,5,["H1696"]],[5,6,["H2009"]],[6,7,["H3129"]],[7,9,["H1121"]],[9,11,["H54"]],[11,13,["H3548"]],[13,14,["H935"]],[14,16,["H138"]],[16,17,["H559"]],[17,21,["H935"]],[21,22,["H3588"]],[22,23,["H859"]],[23,26,["H2428"]],[26,27,["H376"]],[27,31,["H2896","H1319"]]]},{"k":8760,"v":[[0,2,["H3129"]],[2,3,["H6030"]],[3,5,["H559"]],[5,7,["H138"]],[7,8,["H61"]],[8,10,["H113"]],[10,11,["H4428"]],[11,12,["H1732"]],[12,16,["H4427","(H853)","H8010"]]]},{"k":8761,"v":[[0,3,["H4428"]],[3,5,["H7971"]],[5,6,["H854"]],[6,7,["(H853)"]],[7,8,["H6659"]],[8,10,["H3548"]],[10,12,["H5416"]],[12,14,["H5030"]],[14,16,["H1141"]],[16,18,["H1121"]],[18,20,["H3077"]],[20,23,["H3774"]],[23,26,["H6432"]],[26,33,["H7392","(H853)"]],[33,34,["H5921"]],[34,36,["H4428"]],[36,37,["H6506"]]]},{"k":8762,"v":[[0,2,["H6659"]],[2,4,["H3548"]],[4,6,["H5416"]],[6,8,["H5030"]],[8,10,["H4886"]],[10,12,["H4428"]],[12,14,["H1521"]],[14,19,["H5927"]],[19,21,["H4480","H8033"]],[21,22,["H8056"]],[22,26,["H7151"]],[26,27,["H1949"]],[27,29,["H1931"]],[29,32,["H6963"]],[32,33,["H834"]],[33,36,["H8085"]]]},{"k":8763,"v":[[0,2,["H1571"]],[2,3,["H8010"]],[3,4,["H3427"]],[4,5,["H5921"]],[5,7,["H3678"]],[7,10,["H4410"]]]},{"k":8764,"v":[[0,2,["H1571"]],[2,4,["H4428"]],[4,5,["H5650"]],[5,6,["H935"]],[6,8,["H1288","(H853)"]],[8,10,["H113"]],[10,11,["H4428"]],[11,12,["H1732"]],[12,13,["H559"]],[13,14,["H430"]],[14,15,["(H853)"]],[15,17,["H8034"]],[17,19,["H8010"]],[19,20,["H3190"]],[20,23,["H4480","H8034"]],[23,25,["(H853)"]],[25,27,["H3678"]],[27,28,["H1431"]],[28,31,["H4480","H3678"]],[31,34,["H4428"]],[34,36,["H7812"]],[36,37,["H5921"]],[37,39,["H4904"]]]},{"k":8765,"v":[[0,2,["H1571"]],[2,3,["H3602"]],[3,4,["H559"]],[4,6,["H4428"]],[6,7,["H1288"]],[7,10,["H3068"]],[10,11,["H430"]],[11,13,["H3478"]],[13,14,["H834"]],[14,16,["H5414"]],[16,19,["H3427"]],[19,20,["H5921"]],[20,22,["H3678"]],[22,24,["H3117"]],[24,26,["H5869"]],[26,28,["H7200"]],[28,29,[]]]},{"k":8766,"v":[[0,2,["H3605"]],[2,4,["H7121"]],[4,5,["H834"]],[5,8,["H138"]],[8,10,["H2729"]],[10,13,["H6965"]],[13,15,["H1980"]],[15,17,["H376"]],[17,19,["H1870"]]]},{"k":8767,"v":[[0,2,["H138"]],[2,3,["H3372"]],[3,4,["H4480","H6440"]],[4,6,["H8010"]],[6,8,["H6965"]],[8,10,["H1980"]],[10,13,["H2388"]],[13,16,["H7161"]],[16,19,["H4196"]]]},{"k":8768,"v":[[0,4,["H5046"]],[4,5,["H8010"]],[5,6,["H559"]],[6,7,["H2009"]],[7,8,["H138"]],[8,9,["H3372","(H853)"]],[9,10,["H4428"]],[10,11,["H8010"]],[11,13,["H2009"]],[13,17,["H270"]],[17,20,["H7161"]],[20,23,["H4196"]],[23,24,["H559"]],[24,26,["H4428"]],[26,27,["H8010"]],[27,28,["H7650"]],[28,32,["H3117"]],[32,36,["H518"]],[36,37,["H4191","(H853)"]],[37,39,["H5650"]],[39,42,["H2719"]]]},{"k":8769,"v":[[0,2,["H8010"]],[2,3,["H559"]],[3,4,["H518"]],[4,7,["H1961"]],[7,10,["H2428"]],[10,11,["H1121"]],[11,14,["H3808"]],[14,17,["H4480","H8183"]],[17,19,["H5307"]],[19,22,["H776"]],[22,24,["H518"]],[24,25,["H7451"]],[25,28,["H4672"]],[28,33,["H4191"]]]},{"k":8770,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H7971"]],[4,9,["H3381"]],[9,10,["H4480","H5921"]],[10,12,["H4196"]],[12,15,["H935"]],[15,18,["H7812"]],[18,20,["H4428"]],[20,21,["H8010"]],[21,23,["H8010"]],[23,24,["H559"]],[24,27,["H1980"]],[27,30,["H1004"]]]},{"k":8771,"v":[[0,3,["H3117"]],[3,5,["H1732"]],[5,7,["H7126"]],[7,11,["H4191"]],[11,14,["H6680","(H853)"]],[14,15,["H8010"]],[15,17,["H1121"]],[17,18,["H559"]]]},{"k":8772,"v":[[0,1,["H595"]],[1,2,["H1980"]],[2,4,["H1870"]],[4,6,["H3605"]],[6,8,["H776"]],[8,11,["H2388"]],[11,14,["H1961"]],[14,17,["H376"]]]},{"k":8773,"v":[[0,2,["H8104","(H853)"]],[2,4,["H4931"]],[4,7,["H3068"]],[7,9,["H430"]],[9,11,["H1980"]],[11,14,["H1870"]],[14,16,["H8104"]],[16,18,["H2708"]],[18,21,["H4687"]],[21,24,["H4941"]],[24,27,["H5715"]],[27,31,["H3789"]],[31,32,["(H853)"]],[32,34,["H8451"]],[34,36,["H4872"]],[36,37,["H4616"]],[37,40,["H7919"]],[40,42,["H3605"]],[42,43,["H834"]],[43,45,["H6213"]],[45,47,["H3605","H834","H8033"]],[47,49,["H6437"]],[49,50,[]]]},{"k":8774,"v":[[0,1,["H4616"]],[1,3,["H3068"]],[3,5,["H6965","(H853)"]],[5,7,["H1697"]],[7,8,["H834"]],[8,10,["H1696"]],[10,11,["H5921"]],[11,13,["H559"]],[13,14,["H518"]],[14,16,["H1121"]],[16,18,["H8104"]],[18,19,["(H853)"]],[19,21,["H1870"]],[21,23,["H1980"]],[23,24,["H6440"]],[24,27,["H571"]],[27,29,["H3605"]],[29,31,["H3824"]],[31,34,["H3605"]],[34,36,["H5315"]],[36,39,["H3808"]],[39,40,["H3772"]],[40,42,["H559"]],[42,45,["H376"]],[45,46,["H4480","H5921"]],[46,48,["H3678"]],[48,50,["H3478"]]]},{"k":8775,"v":[[0,1,["H1571"]],[1,2,["H859"]],[2,3,["H3045"]],[3,4,["(H853)"]],[4,5,["H834"]],[5,6,["H3097"]],[6,8,["H1121"]],[8,10,["H6870"]],[10,11,["H6213"]],[11,15,["H834"]],[15,17,["H6213"]],[17,20,["H8147"]],[20,21,["H8269"]],[21,24,["H6635"]],[24,26,["H3478"]],[26,28,["H74"]],[28,30,["H1121"]],[30,32,["H5369"]],[32,35,["H6021"]],[35,37,["H1121"]],[37,39,["H3500"]],[39,42,["H2026"]],[42,44,["H7760"]],[44,46,["H1818"]],[46,48,["H4421"]],[48,50,["H7965"]],[50,52,["H5414"]],[52,54,["H1818"]],[54,56,["H4421"]],[56,59,["H2290"]],[59,60,["H834"]],[60,64,["H4975"]],[64,68,["H5275"]],[68,69,["H834"]],[69,73,["H7272"]]]},{"k":8776,"v":[[0,1,["H6213"]],[1,6,["H2451"]],[6,9,["H3808"]],[9,12,["H7872"]],[12,14,["H3381"]],[14,17,["H7585"]],[17,19,["H7965"]]]},{"k":8777,"v":[[0,2,["H6213"]],[2,3,["H2617"]],[3,6,["H1121"]],[6,8,["H1271"]],[8,10,["H1569"]],[10,14,["H1961"]],[14,18,["H398"]],[18,21,["H7979"]],[21,22,["H3588"]],[22,23,["H3651"]],[23,25,["H7126"]],[25,26,["H413"]],[26,30,["H1272"]],[30,31,["H4480","H6440"]],[31,33,["H53"]],[33,35,["H251"]]]},{"k":8778,"v":[[0,2,["H2009"]],[2,5,["H5973"]],[5,7,["H8096"]],[7,9,["H1121"]],[9,11,["H1617"]],[11,13,["H1145"]],[13,15,["H4480","H980"]],[15,16,["H1931"]],[16,17,["H7043"]],[17,21,["H4834"]],[21,22,["H7045"]],[22,25,["H3117"]],[25,28,["H1980"]],[28,30,["H4266"]],[30,32,["H1931"]],[32,34,["H3381"]],[34,36,["H7125"]],[36,39,["H3383"]],[39,42,["H7650"]],[42,47,["H3068"]],[47,48,["H559"]],[48,51,["H518"]],[51,55,["H4191"]],[55,58,["H2719"]]]},{"k":8779,"v":[[0,1,["H6258"]],[1,6,["H408","H5352"]],[6,7,["H3588"]],[7,8,["H859"]],[8,11,["H2450"]],[11,12,["H376"]],[12,14,["H3045","(H853)"]],[14,15,["H834"]],[15,19,["H6213"]],[19,23,["(H853)"]],[23,25,["H7872"]],[25,28,["H3381"]],[28,31,["H7585"]],[31,33,["H1818"]]]},{"k":8780,"v":[[0,2,["H1732"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,12,["H5892"]],[12,14,["H1732"]]]},{"k":8781,"v":[[0,3,["H3117"]],[3,4,["H834"]],[4,5,["H1732"]],[5,6,["H4427"]],[6,7,["H5921"]],[7,8,["H3478"]],[8,10,["H705"]],[10,11,["H8141"]],[11,12,["H7651"]],[12,13,["H8141"]],[13,14,["H4427"]],[14,17,["H2275"]],[17,19,["H7970"]],[19,21,["H7969"]],[21,22,["H8141"]],[22,23,["H4427"]],[23,26,["H3389"]]]},{"k":8782,"v":[[0,2,["H3427"]],[2,3,["H8010"]],[3,4,["H5921"]],[4,6,["H3678"]],[6,8,["H1732"]],[8,10,["H1"]],[10,13,["H4438"]],[13,15,["H3559"]],[15,16,["H3966"]]]},{"k":8783,"v":[[0,2,["H138"]],[2,4,["H1121"]],[4,6,["H2294"]],[6,7,["H935"]],[7,8,["H413"]],[8,9,["H1339"]],[9,11,["H517"]],[11,13,["H8010"]],[13,16,["H559"]],[16,17,["H935"]],[17,19,["H7965"]],[19,22,["H559"]],[22,23,["H7965"]]]},{"k":8784,"v":[[0,2,["H559"]],[2,8,["H1697"]],[8,9,["H413"]],[9,13,["H559"]],[13,15,["H1696"]]]},{"k":8785,"v":[[0,3,["H559"]],[3,4,["H859"]],[4,5,["H3045"]],[5,6,["H3588"]],[6,8,["H4410"]],[8,9,["H1961"]],[9,13,["H3605"]],[13,14,["H3478"]],[14,15,["H7760"]],[15,17,["H6440"]],[17,18,["H5921"]],[18,23,["H4427"]],[23,26,["H4410"]],[26,29,["H5437"]],[29,32,["H1961"]],[32,34,["H251"]],[34,35,["H3588"]],[35,37,["H1961"]],[37,41,["H4480","H3068"]]]},{"k":8786,"v":[[0,2,["H6258"]],[2,3,["H595"]],[3,4,["H7592"]],[4,5,["H259"]],[5,6,["H7596"]],[6,7,["H4480","H854"]],[7,9,["H7725","(H853)","H6440"]],[9,11,["H408"]],[11,14,["H559"]],[14,15,["H413"]],[15,18,["H1696"]]]},{"k":8787,"v":[[0,3,["H559"]],[3,4,["H559"]],[4,7,["H4994"]],[7,9,["H8010"]],[9,11,["H4428"]],[11,12,["H3588"]],[12,15,["H3808"]],[15,18,["H7725","(H853)","H6440"]],[18,21,["H5414"]],[21,22,["(H853)"]],[22,23,["H49"]],[23,25,["H7767"]],[25,27,["H802"]]]},{"k":8788,"v":[[0,2,["H1339"]],[2,3,["H559"]],[3,4,["H2896"]],[4,5,["H595"]],[5,7,["H1696"]],[7,8,["H5921"]],[8,10,["H413"]],[10,12,["H4428"]]]},{"k":8789,"v":[[0,1,["H1339"]],[1,3,["H935"]],[3,4,["H413"]],[4,5,["H4428"]],[5,6,["H8010"]],[6,8,["H1696"]],[8,11,["H5921"]],[11,12,["H138"]],[12,15,["H4428"]],[15,17,["H6965"]],[17,19,["H7122"]],[19,23,["H7812"]],[23,28,["H3427"]],[28,29,["H5921"]],[29,31,["H3678"]],[31,35,["H3678"]],[35,38,["H7760"]],[38,41,["H4428"]],[41,42,["H517"]],[42,45,["H3427"]],[45,49,["H3225"]]]},{"k":8790,"v":[[0,3,["H559"]],[3,4,["H595"]],[4,5,["H7592"]],[5,6,["H259"]],[6,7,["H6996"]],[7,8,["H7596"]],[8,9,["H4480"]],[9,17,["H408","H7725","(H853)","H6440"]],[17,20,["H4428"]],[20,21,["H559"]],[21,25,["H7592"]],[25,27,["H517"]],[27,28,["H3588"]],[28,31,["H3808"]],[31,34,["H7725","(H853)","H6440"]]]},{"k":8791,"v":[[0,3,["H559"]],[3,4,["(H853)"]],[4,5,["H49"]],[5,7,["H7767"]],[7,9,["H5414"]],[9,11,["H138"]],[11,13,["H251"]],[13,15,["H802"]]]},{"k":8792,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H6030"]],[4,6,["H559"]],[6,9,["H517"]],[9,11,["H4100"]],[11,13,["H859"]],[13,14,["H7592","(H853)"]],[14,15,["H49"]],[15,17,["H7767"]],[17,19,["H138"]],[19,20,["H7592"]],[20,22,["(H853)"]],[22,24,["H4410"]],[24,26,["H3588"]],[26,27,["H1931"]],[27,29,["H4480"]],[29,30,["H1419"]],[30,31,["H251"]],[31,37,["H54"]],[37,39,["H3548"]],[39,42,["H3097"]],[42,44,["H1121"]],[44,46,["H6870"]]]},{"k":8793,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H7650"]],[4,7,["H3068"]],[7,8,["H559"]],[8,9,["H430"]],[9,10,["H6213"]],[10,11,["H3541"]],[11,15,["H3254"]],[15,16,["H3541"]],[16,17,["H3588"]],[17,18,["H138"]],[18,21,["H1696","(H853)"]],[21,22,["H2088"]],[22,23,["H1697"]],[23,27,["H5315"]]]},{"k":8794,"v":[[0,1,["H6258"]],[1,5,["H3068"]],[5,6,["H2416"]],[6,7,["H834"]],[7,9,["H3559"]],[9,12,["H3427"]],[12,14,["H5921"]],[14,16,["H3678"]],[16,18,["H1732"]],[18,20,["H1"]],[20,22,["H834"]],[22,24,["H6213"]],[24,27,["H1004"]],[27,28,["H834"]],[28,30,["H1696"]],[30,31,["H138"]],[31,36,["H4191"]],[36,38,["H3117"]]]},{"k":8795,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H7971"]],[4,7,["H3027"]],[7,9,["H1141"]],[9,11,["H1121"]],[11,13,["H3077"]],[13,16,["H6293"]],[16,21,["H4191"]]]},{"k":8796,"v":[[0,3,["H54"]],[3,5,["H3548"]],[5,6,["H559"]],[6,8,["H4428"]],[8,9,["H1980"]],[9,12,["H6068"]],[12,13,["H5921"]],[13,16,["H7704"]],[16,17,["H3588"]],[17,18,["H859"]],[18,20,["H376"]],[20,22,["H4194"]],[22,26,["H3808"]],[26,28,["H2088"]],[28,29,["H3117"]],[29,33,["H4191"]],[33,34,["H3588"]],[34,36,["H5375","(H853)"]],[36,38,["H727"]],[38,41,["H136"]],[41,42,["H3068"]],[42,43,["H6440"]],[43,44,["H1732"]],[44,46,["H1"]],[46,48,["H3588"]],[48,52,["H6031"]],[52,54,["H3605"]],[54,55,["H834"]],[55,57,["H1"]],[57,59,["H6031"]]]},{"k":8797,"v":[[0,2,["H8010"]],[2,4,["H1644","(H853)"]],[4,5,["H54"]],[5,7,["H4480","H1961"]],[7,8,["H3548"]],[8,11,["H3068"]],[11,15,["H4390","(H853)"]],[15,17,["H1697"]],[17,20,["H3068"]],[20,21,["H834"]],[21,23,["H1696"]],[23,24,["H5921"]],[24,26,["H1004"]],[26,28,["H5941"]],[28,30,["H7887"]]]},{"k":8798,"v":[[0,2,["H8052"]],[2,3,["H935"]],[3,4,["H5704"]],[4,5,["H3097"]],[5,6,["H3588"]],[6,7,["H3097"]],[7,9,["H5186"]],[9,10,["H310"]],[10,11,["H138"]],[11,14,["H5186"]],[14,15,["H3808"]],[15,16,["H310"]],[16,17,["H53"]],[17,19,["H3097"]],[19,20,["H5127"]],[20,21,["H413"]],[21,23,["H168"]],[23,26,["H3068"]],[26,29,["H2388"]],[29,32,["H7161"]],[32,35,["H4196"]]]},{"k":8799,"v":[[0,4,["H5046"]],[4,5,["H4428"]],[5,6,["H8010"]],[6,7,["H3588"]],[7,8,["H3097"]],[8,10,["H5127"]],[10,11,["H413"]],[11,13,["H168"]],[13,16,["H3068"]],[16,18,["H2009"]],[18,21,["H681"]],[21,23,["H4196"]],[23,25,["H8010"]],[25,26,["H7971","(H853)"]],[26,27,["H1141"]],[27,29,["H1121"]],[29,31,["H3077"]],[31,32,["H559"]],[32,33,["H1980"]],[33,34,["H6293"]],[34,36,[]]]},{"k":8800,"v":[[0,2,["H1141"]],[2,3,["H935"]],[3,4,["H413"]],[4,6,["H168"]],[6,9,["H3068"]],[9,11,["H559"]],[11,12,["H413"]],[12,14,["H3541"]],[14,15,["H559"]],[15,17,["H4428"]],[17,19,["H3318"]],[19,22,["H559"]],[22,23,["H3808"]],[23,24,["H3588"]],[24,27,["H4191"]],[27,28,["H6311"]],[28,30,["H1141"]],[30,31,["H7725","(H853)"]],[31,33,["H4428"]],[33,34,["H1697"]],[34,36,["H559"]],[36,37,["H3541"]],[37,38,["H1696"]],[38,39,["H3097"]],[39,41,["H3541"]],[41,43,["H6030"]],[43,44,[]]]},{"k":8801,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H6213"]],[7,8,["H834"]],[8,11,["H1696"]],[11,13,["H6293"]],[13,17,["H6912"]],[17,23,["H5493"]],[23,25,["H2600"]],[25,26,["H1818"]],[26,27,["H834"]],[27,28,["H3097"]],[28,29,["H8210"]],[29,30,["H4480","H5921"]],[30,33,["H4480","H5921"]],[33,35,["H1004"]],[35,38,["H1"]]]},{"k":8802,"v":[[0,3,["H3068"]],[3,5,["H7725","(H853)"]],[5,7,["H1818"]],[7,8,["H5921"]],[8,11,["H7218"]],[11,12,["H834"]],[12,13,["H6293"]],[13,15,["H8147"]],[15,16,["H376"]],[16,18,["H6662"]],[18,20,["H2896"]],[20,21,["H4480"]],[21,24,["H2026"]],[24,28,["H2719"]],[28,30,["H1"]],[30,31,["H1732"]],[31,32,["H3808"]],[32,33,["H3045"]],[33,36,["(H853)"]],[36,37,["H74"]],[37,39,["H1121"]],[39,41,["H5369"]],[41,42,["H8269"]],[42,45,["H6635"]],[45,47,["H3478"]],[47,49,["H6021"]],[49,51,["H1121"]],[51,53,["H3500"]],[53,54,["H8269"]],[54,57,["H6635"]],[57,59,["H3063"]]]},{"k":8803,"v":[[0,2,["H1818"]],[2,5,["H7725"]],[5,8,["H7218"]],[8,10,["H3097"]],[10,14,["H7218"]],[14,17,["H2233"]],[17,19,["H5769"]],[19,22,["H1732"]],[22,26,["H2233"]],[26,30,["H1004"]],[30,34,["H3678"]],[34,37,["H1961"]],[37,38,["H7965"]],[38,40,["H5704","H5769"]],[40,41,["H4480","H5973"]],[41,43,["H3068"]]]},{"k":8804,"v":[[0,2,["H1141"]],[2,4,["H1121"]],[4,6,["H3077"]],[6,8,["H5927"]],[8,10,["H6293"]],[10,14,["H4191"]],[14,19,["H6912"]],[19,23,["H1004"]],[23,26,["H4057"]]]},{"k":8805,"v":[[0,3,["H4428"]],[3,4,["H5414","(H853)"]],[4,5,["H1141"]],[5,7,["H1121"]],[7,9,["H3077"]],[9,12,["H8478"]],[12,13,["H5921"]],[13,15,["H6635"]],[15,17,["H6659"]],[17,19,["H3548"]],[19,22,["H4428"]],[22,23,["H5414"]],[23,26,["H8478"]],[26,28,["H54"]]]},{"k":8806,"v":[[0,3,["H4428"]],[3,4,["H7971"]],[4,6,["H7121"]],[6,8,["H8096"]],[8,10,["H559"]],[10,13,["H1129"]],[13,16,["H1004"]],[16,18,["H3389"]],[18,20,["H3427"]],[20,21,["H8033"]],[21,25,["H3808","H3318"]],[25,26,["H4480","H8033"]],[26,27,["H575"]],[27,28,["H575"]]]},{"k":8807,"v":[[0,4,["H1961"]],[4,8,["H3117"]],[8,11,["H3318"]],[11,14,["H5674","(H853)"]],[14,16,["H5158"]],[16,17,["H6939"]],[17,20,["H3045"]],[20,22,["H3045"]],[22,23,["H3588"]],[23,27,["H4191","H4191"]],[27,29,["H1818"]],[29,31,["H1961"]],[31,35,["H7218"]]]},{"k":8808,"v":[[0,2,["H8096"]],[2,3,["H559"]],[3,6,["H4428"]],[6,8,["H1697"]],[8,10,["H2896"]],[10,11,["H834"]],[11,13,["H113"]],[13,15,["H4428"]],[15,17,["H1696"]],[17,18,["H3651"]],[18,21,["H5650"]],[21,22,["H6213"]],[22,24,["H8096"]],[24,25,["H3427"]],[25,27,["H3389"]],[27,28,["H7227"]],[28,29,["H3117"]]]},{"k":8809,"v":[[0,5,["H1961"]],[5,8,["H4480","H7093"]],[8,10,["H7969"]],[10,11,["H8141"]],[11,13,["H8147"]],[13,16,["H5650"]],[16,18,["H8096"]],[18,20,["H1272"]],[20,21,["H413"]],[21,22,["H397"]],[22,23,["H1121"]],[23,25,["H4601"]],[25,26,["H4428"]],[26,28,["H1661"]],[28,31,["H5046"]],[31,32,["H8096"]],[32,33,["H559"]],[33,34,["H2009"]],[34,36,["H5650"]],[36,39,["H1661"]]]},{"k":8810,"v":[[0,2,["H8096"]],[2,3,["H6965"]],[3,5,["H2280","(H853)"]],[5,7,["H2543"]],[7,9,["H1980"]],[9,11,["H1661"]],[11,12,["H413"]],[12,13,["H397"]],[13,15,["H1245","(H853)"]],[15,17,["H5650"]],[17,19,["H8096"]],[19,20,["H1980"]],[20,22,["H935","(H853)"]],[22,24,["H5650"]],[24,26,["H4480","H1661"]]]},{"k":8811,"v":[[0,4,["H5046"]],[4,5,["H8010"]],[5,6,["H3588"]],[6,7,["H8096"]],[7,9,["H1980"]],[9,11,["H4480","H3389"]],[11,13,["H1661"]],[13,17,["H7725"]]]},{"k":8812,"v":[[0,3,["H4428"]],[3,4,["H7971"]],[4,6,["H7121"]],[6,8,["H8096"]],[8,10,["H559"]],[10,11,["H413"]],[11,15,["H3808"]],[15,19,["H7650"]],[19,22,["H3068"]],[22,24,["H5749"]],[24,27,["H559"]],[27,31,["H3045","H3045"]],[31,34,["H3117"]],[34,37,["H3318"]],[37,40,["H1980"]],[40,41,["H575"]],[41,42,["H575"]],[42,43,["H3588"]],[43,47,["H4191","H4191"]],[47,50,["H559"]],[50,51,["H413"]],[51,54,["H1697"]],[54,58,["H8085"]],[58,60,["H2896"]]]},{"k":8813,"v":[[0,1,["H4069"]],[1,5,["H3808"]],[5,6,["H8104","(H853)"]],[6,8,["H7621"]],[8,11,["H3068"]],[11,14,["H4687"]],[14,15,["H834"]],[15,18,["H6680"]],[18,19,["H5921"]],[19,20,[]]]},{"k":8814,"v":[[0,2,["H4428"]],[2,3,["H559"]],[3,5,["H413"]],[5,6,["H8096"]],[6,7,["H859"]],[7,8,["H3045","(H853)"]],[8,9,["H3605"]],[9,11,["H7451"]],[11,12,["H834"]],[12,14,["H3824"]],[14,17,["H3045"]],[17,18,["H834"]],[18,20,["H6213"]],[20,22,["H1732"]],[22,24,["H1"]],[24,27,["H3068"]],[27,29,["H7725","(H853)"]],[29,31,["H7451"]],[31,35,["H7218"]]]},{"k":8815,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,6,["H1288"]],[6,9,["H3678"]],[9,11,["H1732"]],[11,13,["H1961"]],[13,14,["H3559"]],[14,15,["H6440"]],[15,17,["H3068"]],[17,19,["H5704","H5769"]]]},{"k":8816,"v":[[0,3,["H4428"]],[3,4,["H6680","(H853)"]],[4,5,["H1141"]],[5,7,["H1121"]],[7,9,["H3077"]],[9,12,["H3318"]],[12,14,["H6293"]],[14,19,["H4191"]],[19,22,["H4467"]],[22,24,["H3559"]],[24,27,["H3027"]],[27,29,["H8010"]]]},{"k":8817,"v":[[0,2,["H8010"]],[2,4,["H2859"]],[4,5,["H854"]],[5,6,["H6547"]],[6,7,["H4428"]],[7,9,["H4714"]],[9,11,["H3947","(H853)"]],[11,12,["H6547"]],[12,13,["H1323"]],[13,15,["H935"]],[15,17,["H413"]],[17,19,["H5892"]],[19,21,["H1732"]],[21,22,["H5704"]],[22,27,["H3615"]],[27,29,["H1129","(H853)"]],[29,32,["H1004"]],[32,35,["H1004"]],[35,38,["H3068"]],[38,41,["H2346"]],[41,43,["H3389"]],[43,45,["H5439"]]]},{"k":8818,"v":[[0,1,["H7535"]],[1,3,["H5971"]],[3,4,["H2076"]],[4,7,["H1116"]],[7,8,["H3588"]],[8,11,["H3808"]],[11,12,["H1004"]],[12,13,["H1129"]],[13,16,["H8034"]],[16,19,["H3068"]],[19,20,["H5704"]],[20,21,["H1992"]],[21,22,["H3117"]]]},{"k":8819,"v":[[0,2,["H8010"]],[2,3,["H157","(H853)"]],[3,5,["H3068"]],[5,6,["H1980"]],[6,9,["H2708"]],[9,11,["H1732"]],[11,13,["H1"]],[13,14,["H7535"]],[14,15,["H1931"]],[15,16,["H2076"]],[16,19,["H6999"]],[19,22,["H1116"]]]},{"k":8820,"v":[[0,3,["H4428"]],[3,4,["H1980"]],[4,6,["H1391"]],[6,8,["H2076"]],[8,9,["H8033"]],[9,10,["H3588"]],[10,11,["H1931"]],[11,14,["H1419"]],[14,16,["H1116"]],[16,18,["H505"]],[18,20,["H5930"]],[20,22,["H8010"]],[22,23,["H5927"]],[23,24,["H5921"]],[24,25,["H1931"]],[25,26,["H4196"]]]},{"k":8821,"v":[[0,2,["H1391"]],[2,4,["H3068"]],[4,5,["H7200"]],[5,6,["H413"]],[6,7,["H8010"]],[7,10,["H2472"]],[10,12,["H3915"]],[12,14,["H430"]],[14,15,["H559"]],[15,16,["H7592"]],[16,17,["H4100"]],[17,20,["H5414"]],[20,21,[]]]},{"k":8822,"v":[[0,2,["H8010"]],[2,3,["H559"]],[3,4,["H859"]],[4,6,["H6213"]],[6,7,["H5973"]],[7,9,["H5650"]],[9,10,["H1732"]],[10,12,["H1"]],[12,13,["H1419"]],[13,14,["H2617"]],[14,16,["H834"]],[16,18,["H1980"]],[18,19,["H6440"]],[19,22,["H571"]],[22,25,["H6666"]],[25,28,["H3483"]],[28,30,["H3824"]],[30,31,["H5973"]],[31,36,["H8104"]],[36,38,["(H853)"]],[38,39,["H2088"]],[39,40,["H1419"]],[40,41,["H2617"]],[41,45,["H5414"]],[45,48,["H1121"]],[48,50,["H3427"]],[50,51,["H5921"]],[51,53,["H3678"]],[53,57,["H2088"]],[57,58,["H3117"]]]},{"k":8823,"v":[[0,2,["H6258"]],[2,4,["H3068"]],[4,6,["H430"]],[6,7,["H859"]],[7,9,["(H853)"]],[9,11,["H5650"]],[11,12,["H4427"]],[12,13,["H8478"]],[13,15,["H1732"]],[15,17,["H1"]],[17,19,["H595"]],[19,23,["H6996"]],[23,24,["H5288"]],[24,26,["H3045"]],[26,27,["H3808"]],[27,31,["H3318"]],[31,34,["H935"]]]},{"k":8824,"v":[[0,3,["H5650"]],[3,7,["H8432"]],[7,10,["H5971"]],[10,11,["H834"]],[11,14,["H977"]],[14,16,["H7227"]],[16,17,["H5971"]],[17,18,["H834"]],[18,19,["H3808"]],[19,21,["H4487"]],[21,22,["H3808"]],[22,23,["H5608"]],[23,25,["H4480","H7230"]]]},{"k":8825,"v":[[0,1,["H5414"]],[1,4,["H5650"]],[4,6,["H8085"]],[6,7,["H3820"]],[7,9,["H8199","(H853)"]],[9,11,["H5971"]],[11,15,["H995"]],[15,16,["H996"]],[16,17,["H2896"]],[17,19,["H7451"]],[19,20,["H3588"]],[20,21,["H4310"]],[21,23,["H3201"]],[23,25,["H8199"]],[25,26,["H2088"]],[26,29,["H3515","(H853)"]],[29,31,["H5971"]]]},{"k":8826,"v":[[0,3,["H1697"]],[3,4,["H3190","H5869"]],[4,6,["H136"]],[6,7,["H3588"]],[7,8,["H8010"]],[8,10,["H7592","(H853)"]],[10,11,["H2088"]],[11,12,["H1697"]]]},{"k":8827,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3282","H834"]],[6,9,["H7592","(H853)"]],[9,10,["H2088"]],[10,11,["H1697"]],[11,14,["H3808"]],[14,15,["H7592"]],[15,18,["H7227"]],[18,19,["H3117"]],[19,20,["H3808"]],[20,22,["H7592"]],[22,23,["H6239"]],[23,26,["H3808"]],[26,28,["H7592"]],[28,30,["H5315"]],[30,33,["H341"]],[33,36,["H7592"]],[36,39,["H995"]],[39,41,["H8085"]],[41,42,["H4941"]]]},{"k":8828,"v":[[0,1,["H2009"]],[1,4,["H6213"]],[4,8,["H1697"]],[8,9,["H2009"]],[9,12,["H5414"]],[12,15,["H2450"]],[15,18,["H995"]],[18,19,["H3820"]],[19,21,["H834"]],[21,23,["H1961"]],[23,24,["H3808"]],[24,26,["H3644"]],[26,27,["H6440"]],[27,29,["H3808"]],[29,30,["H310"]],[30,34,["H6965"]],[34,37,["H3644"]]]},{"k":8829,"v":[[0,4,["H1571"]],[4,5,["H5414"]],[5,8,["H834"]],[8,11,["H3808"]],[11,12,["H7592"]],[12,13,["H1571"]],[13,14,["H6239"]],[14,15,["H1571"]],[15,16,["H3519"]],[16,18,["H834"]],[18,21,["H3808"]],[21,22,["H1961"]],[22,23,["H376"]],[23,26,["H4428"]],[26,29,["H3644"]],[29,30,["H3605"]],[30,32,["H3117"]]]},{"k":8830,"v":[[0,2,["H518"]],[2,5,["H1980"]],[5,8,["H1870"]],[8,10,["H8104"]],[10,12,["H2706"]],[12,15,["H4687"]],[15,16,["H834"]],[16,18,["H1"]],[18,19,["H1732"]],[19,21,["H1980"]],[21,25,["H748","(H853)"]],[25,27,["H3117"]]]},{"k":8831,"v":[[0,2,["H8010"]],[2,3,["H3364"]],[3,5,["H2009"]],[5,9,["H2472"]],[9,12,["H935"]],[12,14,["H3389"]],[14,16,["H5975"]],[16,17,["H6440"]],[17,19,["H727"]],[19,22,["H1285"]],[22,25,["H136"]],[25,28,["H5927"]],[28,30,["H5930"]],[30,32,["H6213"]],[32,34,["H8002"]],[34,36,["H6213"]],[36,38,["H4960"]],[38,40,["H3605"]],[40,42,["H5650"]]]},{"k":8832,"v":[[0,1,["H227"]],[1,2,["H935"]],[2,4,["H8147"]],[4,5,["H802"]],[5,8,["H2181"]],[8,9,["H413"]],[9,11,["H4428"]],[11,13,["H5975"]],[13,14,["H6440"]],[14,15,[]]]},{"k":8833,"v":[[0,3,["H259"]],[3,4,["H802"]],[4,5,["H559"]],[5,6,["H994"]],[6,8,["H113"]],[8,9,["H589"]],[9,11,["H2063"]],[11,12,["H802"]],[12,13,["H3427"]],[13,15,["H259"]],[15,16,["H1004"]],[16,23,["H3205"]],[23,24,["H5973"]],[24,28,["H1004"]]]},{"k":8834,"v":[[0,5,["H1961"]],[5,7,["H7992"]],[7,8,["H3117"]],[8,13,["H3205"]],[13,15,["H2063"]],[15,16,["H802"]],[16,18,["H3205"]],[18,19,["H1571"]],[19,21,["H587"]],[21,23,["H3162"]],[23,26,["H369"]],[26,27,["H2114"]],[27,28,["H854"]],[28,32,["H1004"]],[32,33,["H2108"]],[33,34,["H587"]],[34,35,["H8147"]],[35,38,["H1004"]]]},{"k":8835,"v":[[0,2,["H2063"]],[2,3,["H802"]],[3,4,["H1121"]],[4,5,["H4191"]],[5,8,["H3915"]],[8,9,["H834"]],[9,11,["H7901","H5921"]],[11,12,[]]]},{"k":8836,"v":[[0,3,["H6965"]],[3,5,["H8432","H3915"]],[5,7,["H3947","(H853)"]],[7,9,["H1121"]],[9,11,["H4480","H681"]],[11,15,["H519"]],[15,16,["H3463"]],[16,18,["H7901"]],[18,22,["H2436"]],[22,24,["H7901"]],[24,26,["H4191"]],[26,27,["H1121"]],[27,30,["H2436"]]]},{"k":8837,"v":[[0,4,["H6965"]],[4,7,["H1242"]],[7,12,["H3242","(H853)","H1121"]],[12,13,["H2009"]],[13,16,["H4191"]],[16,21,["H995","H413"]],[21,25,["H1242"]],[25,26,["H2009"]],[26,28,["H1961"]],[28,29,["H3808"]],[29,31,["H1121"]],[31,32,["H834"]],[32,35,["H3205"]]]},{"k":8838,"v":[[0,3,["H312"]],[3,4,["H802"]],[4,5,["H559"]],[5,6,["H3808"]],[6,7,["H3588"]],[7,9,["H2416"]],[9,12,["H1121"]],[12,15,["H4191"]],[15,18,["H1121"]],[18,20,["H2063"]],[20,21,["H559"]],[21,22,["H3808"]],[22,23,["H3588"]],[23,25,["H4191"]],[25,28,["H1121"]],[28,31,["H2416"]],[31,34,["H1121"]],[34,37,["H1696"]],[37,38,["H6440"]],[38,40,["H4428"]]]},{"k":8839,"v":[[0,2,["H559"]],[2,4,["H4428"]],[4,6,["H2063"]],[6,7,["H559"]],[7,8,["H2088"]],[8,11,["H1121"]],[11,13,["H2416"]],[13,16,["H1121"]],[16,19,["H4191"]],[19,22,["H2063"]],[22,23,["H559"]],[23,24,["H3808"]],[24,25,["H3588"]],[25,27,["H1121"]],[27,30,["H4191"]],[30,33,["H1121"]],[33,36,["H2416"]]]},{"k":8840,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H3947"]],[5,8,["H2719"]],[8,11,["H935"]],[11,13,["H2719"]],[13,14,["H6440"]],[14,16,["H4428"]]]},{"k":8841,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H1504","(H853)"]],[5,7,["H2416"]],[7,8,["H3206"]],[8,10,["H8147"]],[10,12,["H5414","(H853)"]],[12,13,["H2677"]],[13,16,["H259"]],[16,18,["H2677"]],[18,21,["H259"]]]},{"k":8842,"v":[[0,2,["H559"]],[2,4,["H802"]],[4,5,["H834"]],[5,7,["H2416"]],[7,8,["H1121"]],[8,10,["H413"]],[10,12,["H4428"]],[12,13,["H3588"]],[13,15,["H7356"]],[15,16,["H3648"]],[16,17,["H5921"]],[17,19,["H1121"]],[19,22,["H559"]],[22,23,["H994"]],[23,25,["H113"]],[25,26,["H5414"]],[26,27,["(H853)"]],[27,29,["H2416"]],[29,30,["H3205"]],[30,33,["H408"]],[33,35,["H4191","H4191"]],[35,39,["H2063"]],[39,40,["H559"]],[40,43,["H1961"]],[43,44,["H1571","H3808"]],[44,46,["H1571"]],[46,49,["H1504"]],[49,50,[]]]},{"k":8843,"v":[[0,3,["H4428"]],[3,4,["H6030"]],[4,6,["H559"]],[6,7,["H5414"]],[7,8,["(H853)"]],[8,10,["H2416"]],[10,11,["H3205"]],[11,14,["H3808"]],[14,16,["H4191","H4191"]],[16,18,["H1931"]],[18,21,["H517"]],[21,22,[]]]},{"k":8844,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,4,["H8085"]],[4,5,["(H853)"]],[5,7,["H4941"]],[7,8,["H834"]],[8,10,["H4428"]],[10,12,["H8199"]],[12,15,["H3372","H4480","H6440"]],[15,17,["H4428"]],[17,18,["H3588"]],[18,20,["H7200"]],[20,21,["H3588"]],[21,23,["H2451"]],[23,25,["H430"]],[25,28,["H7130"]],[28,30,["H6213"]],[30,31,["H4941"]]]},{"k":8845,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H1961"]],[4,5,["H4428"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,8,["H3478"]]]},{"k":8846,"v":[[0,2,["H428"]],[2,5,["H8269"]],[5,6,["H834"]],[6,9,["H5838"]],[9,11,["H1121"]],[11,13,["H6659"]],[13,15,["H3548"]]]},{"k":8847,"v":[[0,1,["H456"]],[1,3,["H281"]],[3,5,["H1121"]],[5,7,["H7894"]],[7,8,["H5608"]],[8,9,["H3092"]],[9,11,["H1121"]],[11,13,["H286"]],[13,15,["H2142"]]]},{"k":8848,"v":[[0,2,["H1141"]],[2,4,["H1121"]],[4,6,["H3077"]],[6,8,["H5921"]],[8,10,["H6635"]],[10,12,["H6659"]],[12,14,["H54"]],[14,17,["H3548"]]]},{"k":8849,"v":[[0,2,["H5838"]],[2,4,["H1121"]],[4,6,["H5416"]],[6,8,["H5921"]],[8,10,["H5324"]],[10,12,["H2071"]],[12,14,["H1121"]],[14,16,["H5416"]],[16,19,["H3548"]],[19,22,["H4428"]],[22,23,["H7463"]]]},{"k":8850,"v":[[0,2,["H301"]],[2,4,["H5921"]],[4,6,["H1004"]],[6,8,["H141"]],[8,10,["H1121"]],[10,12,["H5653"]],[12,14,["H5921"]],[14,16,["H4522"]]]},{"k":8851,"v":[[0,2,["H8010"]],[2,4,["H8147","H6240"]],[4,5,["H5324"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,8,["H3478"]],[8,11,["H3557"]],[11,12,["(H853)"]],[12,14,["H4428"]],[14,17,["H1004"]],[17,19,["H259"]],[19,21,["H2320"]],[21,24,["H8141"]],[24,26,["H3557"]]]},{"k":8852,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,9,["H1133"]],[9,11,["H2022"]],[11,12,["H669"]]]},{"k":8853,"v":[[0,4,["H1128"]],[4,6,["H4739"]],[6,9,["H8169"]],[9,11,["H1053"]],[11,13,["H358"]]]},{"k":8854,"v":[[0,4,["H1136"]],[4,6,["H700"]],[6,10,["H7755"]],[10,12,["H3605"]],[12,14,["H776"]],[14,16,["H2660"]]]},{"k":8855,"v":[[0,4,["H1125"]],[4,6,["H3605"]],[6,8,["H5299"]],[8,10,["H1756"]],[10,13,["H2955"]],[13,15,["H1323"]],[15,17,["H8010"]],[17,19,["H802"]]]},{"k":8856,"v":[[0,1,["H1195"]],[1,3,["H1121"]],[3,5,["H286"]],[5,9,["H8590"]],[9,11,["H4023"]],[11,13,["H3605"]],[13,14,["H1052"]],[14,15,["H834"]],[15,17,["H681"]],[17,18,["H6891"]],[18,19,["H4480","H8478"]],[19,20,["H3157"]],[20,22,["H4480","H1052"]],[22,23,["H5704"]],[23,24,["H65"]],[24,26,["H5704"]],[26,31,["H4480","H5676"]],[31,32,["H3361"]]]},{"k":8857,"v":[[0,4,["H1127"]],[4,6,["H7433"]],[6,11,["H2333"]],[11,13,["H2971"]],[13,15,["H1121"]],[15,17,["H4519"]],[17,18,["H834"]],[18,21,["H1568"]],[21,27,["H2256"]],[27,29,["H709"]],[29,30,["H834"]],[30,33,["H1316"]],[33,34,["H8346"]],[34,35,["H1419"]],[35,36,["H5892"]],[36,38,["H2346"]],[38,40,["H5178"]],[40,41,["H1280"]]]},{"k":8858,"v":[[0,1,["H292"]],[1,3,["H1121"]],[3,5,["H5714"]],[5,7,["H4266"]]]},{"k":8859,"v":[[0,1,["H290"]],[1,4,["H5321"]],[4,5,["H1931"]],[5,6,["H1571"]],[6,7,["H3947","(H853)"]],[7,8,["H1315"]],[8,10,["H1323"]],[10,12,["H8010"]],[12,14,["H802"]]]},{"k":8860,"v":[[0,1,["H1195"]],[1,3,["H1121"]],[3,5,["H2365"]],[5,8,["H836"]],[8,11,["H1175"]]]},{"k":8861,"v":[[0,1,["H3092"]],[1,3,["H1121"]],[3,5,["H6515"]],[5,7,["H3485"]]]},{"k":8862,"v":[[0,1,["H8096"]],[1,3,["H1121"]],[3,5,["H414"]],[5,7,["H1144"]]]},{"k":8863,"v":[[0,1,["H1398"]],[1,3,["H1121"]],[3,5,["H221"]],[5,9,["H776"]],[9,11,["H1568"]],[11,14,["H776"]],[14,16,["H5511"]],[16,17,["H4428"]],[17,20,["H567"]],[20,23,["H5747"]],[23,24,["H4428"]],[24,26,["H1316"]],[26,31,["H259"]],[31,32,["H5333"]],[32,33,["H834"]],[33,37,["H776"]]]},{"k":8864,"v":[[0,1,["H3063"]],[1,3,["H3478"]],[3,5,["H7227"]],[5,8,["H2344"]],[8,9,["H834"]],[9,11,["H5921"]],[11,13,["H3220"]],[13,15,["H7230"]],[15,16,["H398"]],[16,18,["H8354"]],[18,21,["H8056"]]]},{"k":8865,"v":[[0,2,["H8010"]],[2,3,["H4910"]],[3,5,["H3605"]],[5,6,["H4467"]],[6,7,["H4480"]],[7,9,["H5104"]],[9,12,["H776"]],[12,15,["H6430"]],[15,17,["H5704"]],[17,19,["H1366"]],[19,21,["H4714"]],[21,23,["H5066"]],[23,24,["H4503"]],[24,26,["H5647","(H853)"]],[26,27,["H8010"]],[27,28,["H3605"]],[28,30,["H3117"]],[30,33,["H2416"]]]},{"k":8866,"v":[[0,2,["H8010"]],[2,3,["H3899"]],[3,5,["H259"]],[5,6,["H3117"]],[6,7,["H1961"]],[7,8,["H7970"]],[8,9,["H3734"]],[9,12,["H5560"]],[12,14,["H8346"]],[14,15,["H3734"]],[15,17,["H7058"]]]},{"k":8867,"v":[[0,1,["H6235"]],[1,2,["H1277"]],[2,3,["H1241"]],[3,5,["H6242"]],[5,6,["H1241"]],[6,10,["H7471"]],[10,13,["H3967"]],[13,14,["H6629"]],[14,15,["H905"]],[15,16,["H4480","H354"]],[16,18,["H6643"]],[18,20,["H3180"]],[20,22,["H75"]],[22,23,["H1257"]]]},{"k":8868,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,4,["H7287"]],[4,6,["H3605"]],[6,11,["H5676"]],[11,13,["H5104"]],[13,15,["H4480","H8607"]],[15,17,["H5704"]],[17,18,["H5804"]],[18,20,["H3605"]],[20,22,["H4428"]],[22,25,["H5676"]],[25,27,["H5104"]],[27,30,["H1961"]],[30,31,["H7965"]],[31,33,["H4480","H3605"]],[33,34,["H5676"]],[34,36,["H4480","H5439"]],[36,37,[]]]},{"k":8869,"v":[[0,2,["H3063"]],[2,4,["H3478"]],[4,5,["H3427"]],[5,6,["H983"]],[6,8,["H376"]],[8,9,["H8478"]],[9,11,["H1612"]],[11,13,["H8478"]],[13,16,["H8384"]],[16,18,["H4480","H1835"]],[18,20,["H5704"]],[20,21,["H884"]],[21,22,["H3605"]],[22,24,["H3117"]],[24,26,["H8010"]]]},{"k":8870,"v":[[0,2,["H8010"]],[2,3,["H1961"]],[3,4,["H705"]],[4,5,["H505"]],[5,6,["H723"]],[6,8,["H5483"]],[8,11,["H4817"]],[11,13,["H8147","H6240"]],[13,14,["H505"]],[14,15,["H6571"]]]},{"k":8871,"v":[[0,2,["H428"]],[2,3,["H5324"]],[3,5,["H3557"]],[5,6,["(H853)"]],[6,7,["H4428"]],[7,8,["H8010"]],[8,11,["H3605"]],[11,13,["H7131"]],[13,14,["H413"]],[14,15,["H4428"]],[15,16,["H8010"]],[16,17,["H7979"]],[17,19,["H376"]],[19,22,["H2320"]],[22,24,["H5737"]],[24,25,["H3808","H1697"]]]},{"k":8872,"v":[[0,1,["H8184"]],[1,4,["H8401"]],[4,7,["H5483"]],[7,9,["H7409"]],[9,10,["H935"]],[10,12,["H413"]],[12,14,["H4725"]],[14,15,["H834","H8033"]],[15,18,["H1961"]],[18,20,["H376"]],[20,24,["H4941"]]]},{"k":8873,"v":[[0,2,["H430"]],[2,3,["H5414"]],[3,4,["H8010"]],[4,5,["H2451"]],[5,7,["H8394"]],[7,8,["H3966"]],[8,9,["H7235"]],[9,11,["H7341"]],[11,13,["H3820"]],[13,17,["H2344"]],[17,18,["H834"]],[18,20,["H5921"]],[20,22,["H3220"]],[22,23,["H8193"]]]},{"k":8874,"v":[[0,2,["H8010"]],[2,3,["H2451"]],[3,6,["H7235","H4480","H2451"]],[6,8,["H3605"]],[8,10,["H1121"]],[10,14,["H6924"]],[14,16,["H4480","H3605"]],[16,18,["H2451"]],[18,20,["H4714"]]]},{"k":8875,"v":[[0,4,["H2449"]],[4,6,["H4480","H3605"]],[6,7,["H120"]],[7,9,["H4480","H387"]],[9,11,["H250"]],[11,13,["H1968"]],[13,15,["H3633"]],[15,17,["H1862"]],[17,19,["H1121"]],[19,21,["H4235"]],[21,24,["H8034"]],[24,25,["H1961"]],[25,27,["H3605"]],[27,28,["H1471"]],[28,30,["H5439"]]]},{"k":8876,"v":[[0,3,["H1696"]],[3,4,["H7969"]],[4,5,["H505"]],[5,6,["H4912"]],[6,9,["H7892"]],[9,10,["H1961"]],[10,12,["H505"]],[12,14,["H2568"]]]},{"k":8877,"v":[[0,3,["H1696"]],[3,4,["H5921"]],[4,5,["H6086"]],[5,6,["H4480"]],[6,9,["H730"]],[9,10,["H834"]],[10,13,["H3844"]],[13,15,["H5704"]],[15,17,["H231"]],[17,18,["H834"]],[18,20,["H3318"]],[20,23,["H7023"]],[23,25,["H1696"]],[25,27,["H5921"]],[27,28,["H929"]],[28,30,["H5921"]],[30,31,["H5775"]],[31,33,["H5921"]],[33,35,["H7431"]],[35,37,["H5921"]],[37,38,["H1709"]]]},{"k":8878,"v":[[0,3,["H935"]],[3,5,["H4480","H3605"]],[5,6,["H5971"]],[6,8,["H8085","(H853)"]],[8,10,["H2451"]],[10,12,["H8010"]],[12,13,["H4480","H854"]],[13,14,["H3605"]],[14,15,["H4428"]],[15,18,["H776"]],[18,19,["H834"]],[19,22,["H8085","(H853)"]],[22,24,["H2451"]]]},{"k":8879,"v":[[0,2,["H2438"]],[2,3,["H4428"]],[3,5,["H6865"]],[5,6,["H7971","(H853)"]],[6,8,["H5650"]],[8,9,["H413"]],[9,10,["H8010"]],[10,11,["H3588"]],[11,14,["H8085"]],[14,15,["H3588"]],[15,18,["H4886"]],[18,20,["H4428"]],[20,23,["H8478"]],[23,26,["H1"]],[26,27,["H3588"]],[27,28,["H2438"]],[28,29,["H1961"]],[29,30,["H3605","H3117"]],[30,32,["H157"]],[32,34,["H1732"]]]},{"k":8880,"v":[[0,2,["H8010"]],[2,3,["H7971"]],[3,4,["H413"]],[4,5,["H2438"]],[5,6,["H559"]]]},{"k":8881,"v":[[0,1,["H859"]],[1,2,["H3045"]],[2,4,["H3588","(H853)"]],[4,5,["H1732"]],[5,7,["H1"]],[7,8,["H3201"]],[8,9,["H3808"]],[9,10,["H1129"]],[10,12,["H1004"]],[12,15,["H8034"]],[15,18,["H3068"]],[18,20,["H430"]],[20,21,["H4480","H6440"]],[21,23,["H4421"]],[23,24,["H834"]],[24,30,["H5437"]],[30,31,["H5704"]],[31,33,["H3068"]],[33,34,["H5414"]],[34,36,["H8478"]],[36,38,["H3709"]],[38,41,["H7272"]]]},{"k":8882,"v":[[0,2,["H6258"]],[2,4,["H3068"]],[4,6,["H430"]],[6,10,["H5117"]],[10,13,["H4480","H5439"]],[13,18,["H369"]],[18,19,["H7854"]],[19,20,["H369"]],[20,21,["H7451"]],[21,22,["H6294"]]]},{"k":8883,"v":[[0,2,["H2009"]],[2,4,["H559"]],[4,6,["H1129"]],[6,8,["H1004"]],[8,11,["H8034"]],[11,14,["H3068"]],[14,16,["H430"]],[16,17,["H834"]],[17,19,["H3068"]],[19,20,["H1696"]],[20,21,["H413"]],[21,22,["H1732"]],[22,24,["H1"]],[24,25,["H559"]],[25,27,["H1121"]],[27,28,["H834"]],[28,31,["H5414"]],[31,32,["H5921"]],[32,34,["H3678"]],[34,37,["H8478"]],[37,38,["H1931"]],[38,40,["H1129"]],[40,42,["H1004"]],[42,45,["H8034"]]]},{"k":8884,"v":[[0,1,["H6258"]],[1,3,["H6680"]],[3,7,["H3772"]],[7,10,["H730"]],[10,12,["H4480"]],[12,13,["H3844"]],[13,16,["H5650"]],[16,18,["H1961"]],[18,19,["H5973"]],[19,21,["H5650"]],[21,27,["H5414"]],[27,28,["H7939"]],[28,31,["H5650"]],[31,34,["H3605"]],[34,35,["H834"]],[35,38,["H559"]],[38,39,["H3588"]],[39,40,["H859"]],[40,41,["H3045"]],[41,42,["H3588"]],[42,45,["H369"]],[45,48,["H376"]],[48,51,["H3045"]],[51,53,["H3772"]],[53,54,["H6086"]],[54,58,["H6722"]]]},{"k":8885,"v":[[0,5,["H1961"]],[5,7,["H2438"]],[7,8,["H8085","(H853)"]],[8,10,["H1697"]],[10,12,["H8010"]],[12,15,["H8055"]],[15,16,["H3966"]],[16,18,["H559"]],[18,19,["H1288"]],[19,22,["H3068"]],[22,24,["H3117"]],[24,25,["H834"]],[25,27,["H5414"]],[27,29,["H1732"]],[29,31,["H2450"]],[31,32,["H1121"]],[32,33,["H5921"]],[33,34,["H2088"]],[34,35,["H7227"]],[35,36,["H5971"]]]},{"k":8886,"v":[[0,2,["H2438"]],[2,3,["H7971"]],[3,4,["H413"]],[4,5,["H8010"]],[5,6,["H559"]],[6,9,["H8085","(H853)"]],[9,12,["H834"]],[12,14,["H7971"]],[14,15,["H413"]],[15,19,["H589"]],[19,21,["H6213","(H853)"]],[21,22,["H3605"]],[22,24,["H2656"]],[24,26,["H6086"]],[26,28,["H730"]],[28,31,["H6086"]],[31,33,["H1265"]]]},{"k":8887,"v":[[0,2,["H5650"]],[2,6,["H3381"]],[6,7,["H4480"]],[7,8,["H3844"]],[8,11,["H3220"]],[11,13,["H589"]],[13,15,["H7760"]],[15,18,["H3220"]],[18,20,["H1702"]],[20,21,["H5704"]],[21,23,["H4725"]],[23,24,["H834"]],[24,27,["H7971","H413"]],[27,35,["H5310"]],[35,36,["H8033"]],[36,38,["H859"]],[38,40,["H5375"]],[40,43,["H859"]],[43,45,["H6213","(H853)"]],[45,47,["H2656"]],[47,49,["H5414"]],[49,50,["H3899"]],[50,53,["H1004"]]]},{"k":8888,"v":[[0,2,["H2438"]],[2,3,["H5414"]],[3,4,["H8010"]],[4,5,["H730"]],[5,6,["H6086"]],[6,8,["H1265"]],[8,9,["H6086"]],[9,12,["H3605"]],[12,14,["H2656"]]]},{"k":8889,"v":[[0,2,["H8010"]],[2,3,["H5414"]],[3,4,["H2438"]],[4,5,["H6242"]],[5,6,["H505"]],[6,7,["H3734"]],[7,9,["H2406"]],[9,11,["H4361"]],[11,14,["H1004"]],[14,16,["H6242"]],[16,17,["H3734"]],[17,19,["H3795"]],[19,20,["H8081"]],[20,21,["H3541"]],[21,22,["H5414"]],[22,23,["H8010"]],[23,25,["H2438"]],[25,26,["H8141"]],[26,28,["H8141"]]]},{"k":8890,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,5,["H8010"]],[5,6,["H2451"]],[6,7,["H834"]],[7,9,["H1696"]],[9,13,["H1961"]],[13,14,["H7965"]],[14,15,["H996"]],[15,16,["H2438"]],[16,18,["H8010"]],[18,21,["H8147"]],[21,25,["H3772","H1285"]]]},{"k":8891,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H5927"]],[4,6,["H4522"]],[6,9,["H4480","H3605"]],[9,10,["H3478"]],[10,13,["H4522"]],[13,14,["H1961"]],[14,15,["H7970"]],[15,16,["H505"]],[16,17,["H376"]]]},{"k":8892,"v":[[0,3,["H7971"]],[3,6,["H3844"]],[6,7,["H6235"]],[7,8,["H505"]],[8,10,["H2320"]],[10,12,["H2487"]],[12,14,["H2320"]],[14,16,["H1961"]],[16,18,["H3844"]],[18,20,["H8147"]],[20,21,["H2320"]],[21,23,["H1004"]],[23,25,["H141"]],[25,27,["H5921"]],[27,29,["H4522"]]]},{"k":8893,"v":[[0,2,["H8010"]],[2,3,["H1961"]],[3,6,["H7657"]],[6,7,["H505"]],[7,9,["H5375"]],[9,10,["H5449"]],[10,12,["H8084"]],[12,13,["H505"]],[13,14,["H2672"]],[14,17,["H2022"]]]},{"k":8894,"v":[[0,3,["H905","H4480","H8269"]],[3,5,["H8010"]],[5,6,["H5324"]],[6,7,["H834"]],[7,9,["H5921"]],[9,11,["H4399"]],[11,12,["H7969"]],[12,13,["H505"]],[13,15,["H7969"]],[15,16,["H3967"]],[16,18,["H7287"]],[18,21,["H5971"]],[21,23,["H6213"]],[23,26,["H4399"]]]},{"k":8895,"v":[[0,3,["H4428"]],[3,4,["H6680"]],[4,7,["H5265"]],[7,8,["H1419"]],[8,9,["H68"]],[9,10,["H3368"]],[10,11,["H68"]],[11,13,["H1496"]],[13,14,["H68"]],[14,18,["H3245"]],[18,21,["H1004"]]]},{"k":8896,"v":[[0,2,["H8010"]],[2,3,["H1129"]],[3,5,["H2438"]],[5,6,["H1129"]],[6,8,["H6458"]],[8,12,["H1382"]],[12,15,["H3559"]],[15,16,["H6086"]],[16,18,["H68"]],[18,20,["H1129"]],[20,22,["H1004"]]]},{"k":8897,"v":[[0,5,["H1961"]],[5,8,["H702"]],[8,9,["H3967"]],[9,11,["H8084"]],[11,12,["H8141"]],[12,15,["H1121"]],[15,17,["H3478"]],[17,20,["H3318"]],[20,23,["H4480","H776"]],[23,25,["H4714"]],[25,28,["H7243"]],[28,29,["H8141"]],[29,31,["H8010"]],[31,32,["H4427"]],[32,33,["H5921"]],[33,34,["H3478"]],[34,37,["H2320"]],[37,38,["H2099"]],[38,39,["H1931"]],[39,42,["H8145"]],[42,43,["H2320"]],[43,48,["H1129"]],[48,50,["H1004"]],[50,53,["H3068"]]]},{"k":8898,"v":[[0,3,["H1004"]],[3,4,["H834"]],[4,5,["H4428"]],[5,6,["H8010"]],[6,7,["H1129"]],[7,10,["H3068"]],[10,12,["H753"]],[12,15,["H8346"]],[15,16,["H520"]],[16,19,["H7341"]],[19,21,["H6242"]],[21,25,["H6967"]],[25,27,["H7970"]],[27,28,["H520"]]]},{"k":8899,"v":[[0,3,["H197"]],[3,4,["H5921","H6440"]],[4,6,["H1964"]],[6,9,["H1004"]],[9,10,["H6242"]],[10,11,["H520"]],[11,14,["H753"]],[14,16,["H5921","H6440"]],[16,19,["H7341"]],[19,22,["H1004"]],[22,24,["H6235"]],[24,25,["H520"]],[25,28,["H7341"]],[28,30,["H5921","H6440"]],[30,32,["H1004"]]]},{"k":8900,"v":[[0,4,["H1004"]],[4,6,["H6213"]],[6,7,["H2474"]],[7,9,["H331"]],[9,10,["H8261"]]]},{"k":8901,"v":[[0,2,["H5921"]],[2,4,["H7023"]],[4,7,["H1004"]],[7,9,["H1129"]],[9,10,["H3326"]],[10,12,["H5439"]],[12,13,["(H853)"]],[13,15,["H7023"]],[15,18,["H1004"]],[18,20,["H5439"]],[20,24,["H1964"]],[24,28,["H1687"]],[28,31,["H6213"]],[31,32,["H6763"]],[32,34,["H5439"]]]},{"k":8902,"v":[[0,2,["H8481"]],[2,3,["H3326"]],[3,5,["H2568"]],[5,6,["H520"]],[6,7,["H7341"]],[7,10,["H8484"]],[10,12,["H8337"]],[12,13,["H520"]],[13,14,["H7341"]],[14,17,["H7992"]],[17,19,["H7651"]],[19,20,["H520"]],[20,21,["H7341"]],[21,22,["H3588"]],[22,23,["H2351"]],[23,29,["H1004"]],[29,31,["H5414"]],[31,33,["H4052"]],[33,35,["H5439"]],[35,40,["H1115"]],[40,42,["H270"]],[42,45,["H7023"]],[45,48,["H1004"]]]},{"k":8903,"v":[[0,3,["H1004"]],[3,8,["H1129"]],[8,10,["H1129"]],[10,12,["H68"]],[12,14,["H8003"]],[14,18,["H4551"]],[18,24,["H3808"]],[24,25,["H4718"]],[25,27,["H1631"]],[27,29,["H3605"]],[29,30,["H3627"]],[30,32,["H1270"]],[32,33,["H8085"]],[33,36,["H1004"]],[36,41,["H1129"]]]},{"k":8904,"v":[[0,2,["H6607"]],[2,5,["H8484"]],[5,6,["H6763"]],[6,8,["H413"]],[8,10,["H3233"]],[10,11,["H3802"]],[11,14,["H1004"]],[14,18,["H5927"]],[18,21,["H3883"]],[21,22,["H5921"]],[22,24,["H8484"]],[24,28,["H4480"]],[28,30,["H8484"]],[30,31,["H413"]],[31,33,["H7992"]]]},{"k":8905,"v":[[0,3,["H1129","(H853)"]],[3,5,["H1004"]],[5,7,["H3615"]],[7,10,["H5603","(H853)"]],[10,12,["H1004"]],[12,14,["H1356"]],[14,16,["H7713"]],[16,18,["H730"]]]},{"k":8906,"v":[[0,4,["H1129","(H853)"]],[4,5,["H3326"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,9,["H1004"]],[9,10,["H2568"]],[10,11,["H520"]],[11,12,["H6967"]],[12,16,["H270","(H853)"]],[16,18,["H1004"]],[18,20,["H6086"]],[20,22,["H730"]]]},{"k":8907,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H8010"]],[9,10,["H559"]]]},{"k":8908,"v":[[0,2,["H2088"]],[2,3,["H1004"]],[3,4,["H834"]],[4,5,["H859"]],[5,8,["H1129"]],[8,9,["H518"]],[9,12,["H1980"]],[12,15,["H2708"]],[15,17,["H6213"]],[17,19,["H4941"]],[19,21,["H8104","(H853)"]],[21,22,["H3605"]],[22,24,["H4687"]],[24,26,["H1980"]],[26,32,["H6965","(H853)"]],[32,34,["H1697"]],[34,36,["H854"]],[36,37,["H834"]],[37,39,["H1696"]],[39,40,["H413"]],[40,41,["H1732"]],[41,43,["H1"]]]},{"k":8909,"v":[[0,4,["H7931"]],[4,5,["H8432"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,12,["H3808"]],[12,13,["H5800","(H853)"]],[13,15,["H5971"]],[15,16,["H3478"]]]},{"k":8910,"v":[[0,2,["H8010"]],[2,3,["H1129","(H853)"]],[3,5,["H1004"]],[5,7,["H3615"]],[7,8,[]]]},{"k":8911,"v":[[0,3,["H1129","(H853)"]],[3,5,["H7023"]],[5,8,["H1004"]],[8,9,["H4480","H1004"]],[9,11,["H6763"]],[11,13,["H730"]],[13,16,["H4480","H7172"]],[16,19,["H1004"]],[19,22,["H7023"]],[22,25,["H5604"]],[25,28,["H6823"]],[28,32,["H4480","H1004"]],[32,34,["H6086"]],[34,36,["H6823","(H853)"]],[36,38,["H7172"]],[38,41,["H1004"]],[41,43,["H6763"]],[43,45,["H1265"]]]},{"k":8912,"v":[[0,3,["H1129","(H853)"]],[3,4,["H6242"]],[4,5,["H520"]],[5,8,["H4480","H3411"]],[8,11,["H1004"]],[11,12,["H4480"]],[12,14,["H7172"]],[14,17,["H7023"]],[17,19,["H6763"]],[19,21,["H730"]],[21,24,["H1129"]],[24,28,["H4480","H1004"]],[28,32,["H1687"]],[32,37,["H6944","H6944"]],[37,38,[]]]},{"k":8913,"v":[[0,3,["H1004"]],[3,4,["H1931"]],[4,7,["H1964"]],[7,8,["H3942"]],[8,10,["H1961"]],[10,11,["H705"]],[11,12,["H520"]],[12,13,[]]]},{"k":8914,"v":[[0,3,["H730"]],[3,4,["H413"]],[4,6,["H1004"]],[6,7,["H6441"]],[7,9,["H4734"]],[9,11,["H6497"]],[11,13,["H6358"]],[13,14,["H6731"]],[14,15,["H3605"]],[15,17,["H730"]],[17,20,["H369"]],[20,21,["H68"]],[21,22,["H7200"]]]},{"k":8915,"v":[[0,3,["H1687"]],[3,5,["H3559"]],[5,8,["H8432","H1004"]],[8,9,["H4480","H6441"]],[9,11,["H5414"]],[11,12,["H8033","(H853)"]],[12,14,["H727"]],[14,17,["H1285"]],[17,20,["H3068"]]]},{"k":8916,"v":[[0,3,["H1687"]],[3,6,["H6440"]],[6,8,["H6242"]],[8,9,["H520"]],[9,11,["H753"]],[11,13,["H6242"]],[13,14,["H520"]],[14,16,["H7341"]],[16,18,["H6242"]],[18,19,["H520"]],[19,22,["H6967"]],[22,26,["H6823"]],[26,29,["H5462"]],[29,30,["H2091"]],[30,33,["H6823"]],[33,35,["H4196"]],[35,39,["H730"]]]},{"k":8917,"v":[[0,2,["H8010"]],[2,3,["H6823","(H853)"]],[3,5,["H1004"]],[5,6,["H4480","H6441"]],[6,8,["H5462"]],[8,9,["H2091"]],[9,14,["H5674"]],[14,17,["H7569"]],[17,19,["H2091"]],[19,20,["H6440"]],[20,22,["H1687"]],[22,25,["H6823"]],[25,28,["H2091"]]]},{"k":8918,"v":[[0,3,["H3605"]],[3,4,["H1004"]],[4,6,["H6823"]],[6,8,["H2091"]],[8,9,["H5704"]],[9,12,["H8552"]],[12,13,["H3605"]],[13,15,["H1004"]],[15,18,["H3605"]],[18,19,["H4196"]],[19,20,["H834"]],[20,24,["H1687"]],[24,26,["H6823"]],[26,28,["H2091"]]]},{"k":8919,"v":[[0,4,["H1687"]],[4,6,["H6213"]],[6,7,["H8147"]],[7,8,["H3742"]],[8,10,["H8081"]],[10,11,["H6086"]],[11,13,["H6235"]],[13,14,["H520"]],[14,15,["H6967"]]]},{"k":8920,"v":[[0,2,["H2568"]],[2,3,["H520"]],[3,6,["H259"]],[6,7,["H3671"]],[7,10,["H3742"]],[10,12,["H2568"]],[12,13,["H520"]],[13,15,["H8145"]],[15,16,["H3671"]],[16,19,["H3742"]],[19,23,["H4480","H7098"]],[23,27,["H3671"]],[27,28,["H5704"]],[28,31,["H7098"]],[31,34,["H3671"]],[34,36,["H6235"]],[36,37,["H520"]]]},{"k":8921,"v":[[0,3,["H8145"]],[3,4,["H3742"]],[4,6,["H6235"]],[6,7,["H520"]],[7,8,["H8147"]],[8,10,["H3742"]],[10,13,["H259"]],[13,14,["H4060"]],[14,16,["H259"]],[16,17,["H7095"]]]},{"k":8922,"v":[[0,2,["H6967"]],[2,5,["H259"]],[5,6,["H3742"]],[6,8,["H6235"]],[8,9,["H520"]],[9,11,["H3651"]],[11,16,["H8145"]],[16,17,["H3742"]]]},{"k":8923,"v":[[0,3,["H5414","(H853)"]],[3,5,["H3742"]],[5,6,["H8432"]],[6,8,["H6442"]],[8,9,["H1004"]],[9,13,["H6566","(H853)"]],[13,15,["H3671"]],[15,18,["H3742"]],[18,22,["H3671"]],[22,25,["H259"]],[25,26,["H5060"]],[26,29,["H7023"]],[29,32,["H3671"]],[32,35,["H8145"]],[35,36,["H3742"]],[36,37,["H5060"]],[37,39,["H8145"]],[39,40,["H7023"]],[40,43,["H3671"]],[43,44,["H5060"]],[44,45,["H3671"]],[45,46,["H413","H3671"]],[46,47,["H413"]],[47,49,["H8432"]],[49,52,["H1004"]]]},{"k":8924,"v":[[0,3,["H6823","(H853)"]],[3,5,["H3742"]],[5,7,["H2091"]]]},{"k":8925,"v":[[0,3,["H7049"]],[3,4,["H3605"]],[4,6,["H7023"]],[6,9,["H1004"]],[9,11,["H4524"]],[11,13,["H6603"]],[13,14,["H4734"]],[14,16,["H3742"]],[16,19,["H8561"]],[19,21,["H6358"]],[21,22,["H6731"]],[22,23,["H4480","H6440"]],[23,25,["H2435"]]]},{"k":8926,"v":[[0,3,["H7172"]],[3,6,["H1004"]],[6,8,["H6823"]],[8,10,["H2091"]],[10,11,["H6441"]],[11,13,["H2435"]]]},{"k":8927,"v":[[0,4,["H6607"]],[4,7,["H1687"]],[7,9,["H6213"]],[9,10,["H1817"]],[10,12,["H8081"]],[12,13,["H6086"]],[13,15,["H352"]],[15,18,["H4201"]],[18,22,["H2549"]],[22,25,[]]]},{"k":8928,"v":[[0,2,["H8147"]],[2,3,["H1817"]],[3,7,["H8081"]],[7,8,["H6086"]],[8,11,["H7049"]],[11,12,["H5921"]],[12,14,["H4734"]],[14,16,["H3742"]],[16,19,["H8561"]],[19,21,["H6358"]],[21,22,["H6731"]],[22,24,["H6823"]],[24,27,["H2091"]],[27,29,["H7286","(H853)"]],[29,30,["H2091"]],[30,31,["H5921"]],[31,33,["H3742"]],[33,35,["H5921"]],[35,38,["H8561"]]]},{"k":8929,"v":[[0,1,["H3651"]],[1,3,["H6213"]],[3,7,["H6607"]],[7,10,["H1964"]],[10,11,["H4201"]],[11,13,["H8081"]],[13,14,["H6086"]],[14,17,["H4480","H854","H7243"]],[17,20,[]]]},{"k":8930,"v":[[0,3,["H8147"]],[3,4,["H1817"]],[4,7,["H1265"]],[7,8,["H6086"]],[8,10,["H8147"]],[10,11,["H6763"]],[11,14,["H259"]],[14,15,["H1817"]],[15,17,["H1550"]],[17,20,["H8147"]],[20,21,["H7050"]],[21,24,["H8145"]],[24,25,["H1817"]],[25,27,["H1550"]]]},{"k":8931,"v":[[0,3,["H7049"]],[3,5,["H3742"]],[5,8,["H8561"]],[8,10,["H6358"]],[10,11,["H6731"]],[11,13,["H6823"]],[13,16,["H2091"]],[16,17,["H3474"]],[17,18,["H5921"]],[18,21,["H2707"]]]},{"k":8932,"v":[[0,3,["H1129"]],[3,5,["H6442","(H853)"]],[5,6,["H2691"]],[6,8,["H7969"]],[8,9,["H2905"]],[9,12,["H1496"]],[12,15,["H2905"]],[15,17,["H730"]],[17,18,["H3773"]]]},{"k":8933,"v":[[0,3,["H7243"]],[3,4,["H8141"]],[4,7,["H3245"]],[7,10,["H1004"]],[10,13,["H3068"]],[13,17,["H3391"]],[17,18,["H2099"]]]},{"k":8934,"v":[[0,4,["H259","H6240"]],[4,5,["H8141"]],[5,8,["H3391"]],[8,9,["H945"]],[9,10,["H1931"]],[10,13,["H8066"]],[13,14,["H2320"]],[14,17,["H1004"]],[17,18,["H3615"]],[18,20,["H3605"]],[20,22,["H1697"]],[22,27,["H3605"]],[27,29,["H4941"]],[29,35,["H7651"]],[35,36,["H8141"]],[36,38,["H1129"]],[38,39,[]]]},{"k":8935,"v":[[0,2,["H8010"]],[2,4,["H1129"]],[4,7,["H1004"]],[7,8,["H7969","H6240"]],[8,9,["H8141"]],[9,12,["H3615","(H853)"]],[12,13,["H3605"]],[13,15,["H1004"]]]},{"k":8936,"v":[[0,2,["H1129"]],[2,3,["(H853)"]],[3,5,["H1004"]],[5,8,["H3293"]],[8,10,["H3844"]],[10,12,["H753"]],[12,16,["H3967"]],[16,17,["H520"]],[17,20,["H7341"]],[20,22,["H2572"]],[22,23,["H520"]],[23,26,["H6967"]],[26,28,["H7970"]],[28,29,["H520"]],[29,30,["H5921"]],[30,31,["H702"]],[31,32,["H2905"]],[32,34,["H730"]],[34,35,["H5982"]],[35,37,["H730"]],[37,38,["H3773"]],[38,39,["H5921"]],[39,41,["H5982"]]]},{"k":8937,"v":[[0,4,["H5603"]],[4,6,["H730"]],[6,7,["H4480","H4605"]],[7,8,["H5921"]],[8,10,["H6763"]],[10,11,["H834"]],[11,13,["H5921"]],[13,14,["H705"]],[14,15,["H2568"]],[15,16,["H5982"]],[16,17,["H2568","H6240"]],[17,20,["H2905"]]]},{"k":8938,"v":[[0,4,["H8261"]],[4,6,["H7969"]],[6,7,["H2905"]],[7,9,["H4237"]],[9,11,["H413"]],[11,12,["H4237"]],[12,14,["H7969"]],[14,15,["H6471"]]]},{"k":8939,"v":[[0,2,["H3605"]],[2,4,["H6607"]],[4,6,["H4201"]],[6,8,["H7251"]],[8,11,["H8260"]],[11,13,["H4237"]],[13,15,["H413"]],[15,16,["H4237"]],[16,18,["H7969"]],[18,19,["H6471"]]]},{"k":8940,"v":[[0,3,["H6213"]],[3,5,["H197"]],[5,7,["H5982"]],[7,9,["H753"]],[9,12,["H2572"]],[12,13,["H520"]],[13,16,["H7341"]],[16,18,["H7970"]],[18,19,["H520"]],[19,22,["H197"]],[22,24,["H5921","H6440"]],[24,29,["H5982"]],[29,33,["H5646"]],[33,35,["H5921","H6440"]],[35,36,[]]]},{"k":8941,"v":[[0,3,["H6213"]],[3,5,["H197"]],[5,8,["H3678"]],[8,9,["H834","H8033"]],[9,12,["H8199"]],[12,15,["H197"]],[15,17,["H4941"]],[17,21,["H5603"]],[21,23,["H730"]],[23,29,["H4480","H7172"]],[29,30,["H5704"]],[30,32,["H7172"]]]},{"k":8942,"v":[[0,3,["H1004"]],[3,4,["H834","H8033"]],[4,6,["H3427"]],[6,8,["H312"]],[8,9,["H2691"]],[9,10,["H4480","H1004"]],[10,12,["H197"]],[12,14,["H1961"]],[14,17,["H2088"]],[17,18,["H4639"]],[18,19,["H8010"]],[19,20,["H6213"]],[20,23,["H1004"]],[23,25,["H6547"]],[25,26,["H1323"]],[26,27,["H834"]],[27,30,["H3947"]],[30,35,["H2088"]],[35,36,["H197"]]]},{"k":8943,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,5,["H3368"]],[5,6,["H68"]],[6,10,["H4060"]],[10,13,["H1496"]],[13,14,["H1641"]],[14,16,["H4050"]],[16,17,["H4480","H1004"]],[17,19,["H4480","H2351"]],[19,23,["H4480","H4527"]],[23,24,["H5704"]],[24,26,["H2948"]],[26,31,["H4480","H2351"]],[31,32,["H5704"]],[32,34,["H1419"]],[34,35,["H2691"]]]},{"k":8944,"v":[[0,3,["H3245"]],[3,6,["H3368"]],[6,7,["H68"]],[7,9,["H1419"]],[9,10,["H68"]],[10,11,["H68"]],[11,13,["H6235"]],[13,14,["H520"]],[14,16,["H68"]],[16,18,["H8083"]],[18,19,["H520"]]]},{"k":8945,"v":[[0,2,["H4480","H4605"]],[2,4,["H3368"]],[4,5,["H68"]],[5,8,["H4060"]],[8,11,["H1496"]],[11,13,["H730"]]]},{"k":8946,"v":[[0,3,["H1419"]],[3,4,["H2691"]],[4,6,["H5439"]],[6,9,["H7969"]],[9,10,["H2905"]],[10,13,["H1496"]],[13,16,["H2905"]],[16,18,["H730"]],[18,19,["H3773"]],[19,23,["H6442"]],[23,24,["H2691"]],[24,27,["H1004"]],[27,30,["H3068"]],[30,34,["H197"]],[34,37,["H1004"]]]},{"k":8947,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H7971"]],[4,6,["H3947","(H853)"]],[6,7,["H2438"]],[7,10,["H4480","H6865"]]]},{"k":8948,"v":[[0,1,["H1931"]],[1,4,["H490"]],[4,5,["H1121"]],[5,8,["H4480","H4294"]],[8,10,["H5321"]],[10,13,["H1"]],[13,16,["H376"]],[16,18,["H6876"]],[18,20,["H2790"]],[20,22,["H5178"]],[22,26,["H4390"]],[26,27,["H854"]],[27,28,["H2451"]],[28,30,["H8394"]],[30,32,["H1847"]],[32,34,["H6213"]],[34,35,["H3605"]],[35,36,["H4399"]],[36,38,["H5178"]],[38,41,["H935"]],[41,42,["H413"]],[42,43,["H4428"]],[43,44,["H8010"]],[44,46,["H6213","(H853)"]],[46,47,["H3605"]],[47,49,["H4399"]]]},{"k":8949,"v":[[0,3,["H6696","(H853)"]],[3,4,["H8147"]],[4,5,["H5982"]],[5,7,["H5178"]],[7,9,["H8083","H6240"]],[9,10,["H520"]],[10,11,["H6967"]],[11,12,["H5982","H259"]],[12,15,["H2339"]],[15,17,["H8147","H6240"]],[17,18,["H520"]],[18,24,["H5437","(H853)","H5982","H8145"]]]},{"k":8950,"v":[[0,3,["H6213"]],[3,4,["H8147"]],[4,5,["H3805"]],[5,7,["H3332"]],[7,8,["H5178"]],[8,10,["H5414"]],[10,11,["H5921"]],[11,13,["H7218"]],[13,16,["H5982"]],[16,18,["H6967"]],[18,21,["H259"]],[21,22,["H3805"]],[22,24,["H2568"]],[24,25,["H520"]],[25,28,["H6967"]],[28,31,["H8145"]],[31,32,["H3805"]],[32,34,["H2568"]],[34,35,["H520"]]]},{"k":8951,"v":[[0,2,["H7638"]],[2,4,["H7639"]],[4,5,["H4639"]],[5,7,["H1434"]],[7,9,["H8333"]],[9,10,["H4639"]],[10,13,["H3805"]],[13,14,["H834"]],[14,16,["H5921"]],[16,18,["H7218"]],[18,21,["H5982"]],[21,22,["H7651"]],[22,25,["H259"]],[25,26,["H3805"]],[26,28,["H7651"]],[28,31,["H8145"]],[31,32,["H3805"]]]},{"k":8952,"v":[[0,3,["H6213","(H853)"]],[3,5,["H5982"]],[5,7,["H8147"]],[7,8,["H2905"]],[8,10,["H5439"]],[10,11,["H5921"]],[11,13,["H259"]],[13,14,["H7639"]],[14,16,["H3680","(H853)"]],[16,18,["H3805"]],[18,19,["H834"]],[19,21,["H5921"]],[21,23,["H7218"]],[23,25,["H7416"]],[25,27,["H3651"]],[27,28,["H6213"]],[28,32,["H8145"]],[32,33,["H3805"]]]},{"k":8953,"v":[[0,3,["H3805"]],[3,4,["H834"]],[4,6,["H5921"]],[6,8,["H7218"]],[8,11,["H5982"]],[11,14,["H7799"]],[14,15,["H4639"]],[15,18,["H197"]],[18,19,["H702"]],[19,20,["H520"]]]},{"k":8954,"v":[[0,3,["H3805"]],[3,4,["H5921"]],[4,6,["H8147"]],[6,7,["H5982"]],[7,10,["H1571"]],[10,11,["H4480","H4605"]],[11,13,["H4480","H5980"]],[13,15,["H990"]],[15,16,["H834"]],[16,18,["H5676"]],[18,20,["H7639"]],[20,23,["H7416"]],[23,26,["H3967"]],[26,28,["H2905"]],[28,30,["H5439"]],[30,31,["H5921"]],[31,33,["H8145"]],[33,34,["H3805"]]]},{"k":8955,"v":[[0,4,["H6965","(H853)"]],[4,6,["H5982"]],[6,9,["H197"]],[9,12,["H1964"]],[12,16,["H6965"]],[16,18,["H3233","(H853)"]],[18,19,["H5982"]],[19,21,["H7121","(H853)"]],[21,23,["H8034"]],[23,25,["H3199"]],[25,29,["H6965","(H853)"]],[29,31,["H8042"]],[31,32,["H5982"]],[32,34,["H7121","(H853)"]],[34,36,["H8034"]],[36,38,["H1162"]]]},{"k":8956,"v":[[0,2,["H5921"]],[2,4,["H7218"]],[4,7,["H5982"]],[7,9,["H7799"]],[9,10,["H4639"]],[10,14,["H4399"]],[14,17,["H5982"]],[17,18,["H8552"]]]},{"k":8957,"v":[[0,3,["H6213","(H853)"]],[3,5,["H3332"]],[5,6,["H3220"]],[6,7,["H6235"]],[7,8,["H520"]],[8,12,["H4480","H8193"]],[12,13,["H5704"]],[13,15,["H8193"]],[15,18,["H5696"]],[18,20,["H5439"]],[20,23,["H6967"]],[23,25,["H2568"]],[25,26,["H520"]],[26,29,["H6957"]],[29,31,["H7970"]],[31,32,["H520"]],[32,34,["H5437"]],[34,37,["H5439"]]]},{"k":8958,"v":[[0,2,["H4480","H8478"]],[2,4,["H8193"]],[4,8,["H5439"]],[8,11,["H6497"]],[11,12,["H5437"]],[12,14,["H6235"]],[14,17,["H520"]],[17,18,["H5362","(H853)"]],[18,20,["H3220"]],[20,22,["H5439"]],[22,24,["H6497"]],[24,26,["H3332"]],[26,28,["H8147"]],[28,29,["H2905"]],[29,33,["H3333"]]]},{"k":8959,"v":[[0,2,["H5975"]],[2,3,["H5921"]],[3,4,["H8147","H6240"]],[4,5,["H1241"]],[5,6,["H7969"]],[6,7,["H6437"]],[7,10,["H6828"]],[10,12,["H7969"]],[12,13,["H6437"]],[13,16,["H3220"]],[16,18,["H7969"]],[18,19,["H6437"]],[19,22,["H5045"]],[22,24,["H7969"]],[24,25,["H6437"]],[25,28,["H4217"]],[28,31,["H3220"]],[31,34,["H4480","H4605"]],[34,35,["H5921"]],[35,38,["H3605"]],[38,41,["H268"]],[41,43,["H1004"]]]},{"k":8960,"v":[[0,6,["H2947"]],[6,7,["H5672"]],[7,10,["H8193"]],[10,13,["H4639"]],[13,16,["H8193"]],[16,19,["H3563"]],[19,21,["H6525"]],[21,23,["H7799"]],[23,25,["H3557"]],[25,27,["H505"]],[27,28,["H1324"]]]},{"k":8961,"v":[[0,3,["H6213","(H853)"]],[3,4,["H6235"]],[4,5,["H4350"]],[5,7,["H5178"]],[7,8,["H702"]],[8,9,["H520"]],[9,12,["H753"]],[12,14,["H259"]],[14,15,["H4350"]],[15,17,["H702"]],[17,18,["H520"]],[18,20,["H7341"]],[20,23,["H7969"]],[23,24,["H520"]],[24,26,["H6967"]],[26,28,[]]]},{"k":8962,"v":[[0,3,["H4639"]],[3,6,["H4350"]],[6,9,["H2088"]],[9,13,["H4526"]],[13,16,["H4526"]],[16,18,["H996"]],[18,20,["H7948"]]]},{"k":8963,"v":[[0,2,["H5921"]],[2,4,["H4526"]],[4,5,["H834"]],[5,7,["H996"]],[7,9,["H7948"]],[9,11,["H738"]],[11,12,["H1241"]],[12,14,["H3742"]],[14,16,["H5921"]],[16,18,["H7948"]],[18,22,["H3653"]],[22,23,["H4480","H4605"]],[23,25,["H4480","H8478"]],[25,27,["H738"]],[27,29,["H1241"]],[29,32,["H3914"]],[32,35,["H4174"]],[35,36,["H4639"]]]},{"k":8964,"v":[[0,2,["H259"]],[2,3,["H4350"]],[3,5,["H702"]],[5,6,["H5178"]],[6,7,["H212"]],[7,9,["H5633"]],[9,11,["H5178"]],[11,14,["H702"]],[14,15,["H6471"]],[15,18,["H3802"]],[18,19,["H4480","H8478"]],[19,21,["H3595"]],[21,23,["H3802"]],[23,24,["H3332"]],[24,27,["H4480","H5676"]],[27,29,["H376"]],[29,30,["H3914"]]]},{"k":8965,"v":[[0,3,["H6310"]],[3,6,["H4480","H1004"]],[6,8,["H3805"]],[8,10,["H4605"]],[10,13,["H520"]],[13,16,["H6310"]],[16,19,["H5696"]],[19,22,["H4639"]],[22,25,["H3653"]],[25,27,["H520"]],[27,30,["H2677","H520"]],[30,32,["H1571"]],[32,33,["H5921"]],[33,35,["H6310"]],[35,39,["H4734"]],[39,42,["H4526"]],[42,43,["H7251"]],[43,44,["H3808"]],[44,45,["H5696"]]]},{"k":8966,"v":[[0,2,["H4480","H8478"]],[2,4,["H4526"]],[4,6,["H702"]],[6,7,["H212"]],[7,10,["H3027"]],[10,13,["H212"]],[13,18,["H4350"]],[18,21,["H6967"]],[21,23,["H259"]],[23,24,["H212"]],[24,27,["H520"]],[27,29,["H2677"]],[29,31,["H520"]]]},{"k":8967,"v":[[0,3,["H4639"]],[3,6,["H212"]],[6,10,["H4639"]],[10,13,["H4818"]],[13,14,["H212"]],[14,16,["H3027"]],[16,19,["H1354"]],[19,22,["H2839"]],[22,25,["H2840"]],[25,27,["H3605"]],[27,28,["H3332"]]]},{"k":8968,"v":[[0,4,["H702"]],[4,5,["H3802"]],[5,6,["H413"]],[6,8,["H702"]],[8,9,["H6438"]],[9,11,["H259"]],[11,12,["H4350"]],[12,15,["H3802"]],[15,17,["H4480"]],[17,20,["H4350"]],[20,21,[]]]},{"k":8969,"v":[[0,4,["H7218"]],[4,7,["H4350"]],[7,11,["H5696"]],[11,12,["H5439"]],[12,14,["H2677"]],[14,16,["H520"]],[16,17,["H6967"]],[17,19,["H5921"]],[19,21,["H7218"]],[21,24,["H4350"]],[24,26,["H3027"]],[26,30,["H4526"]],[30,33,["H4480"]],[33,35,[]]]},{"k":8970,"v":[[0,2,["H5921"]],[2,4,["H3871"]],[4,7,["H3027"]],[7,10,["H5921"]],[10,12,["H4526"]],[12,15,["H6605"]],[15,16,["H3742"]],[16,17,["H738"]],[17,20,["H8561"]],[20,24,["H4626"]],[24,27,["H376"]],[27,29,["H3914"]],[29,31,["H5439"]]]},{"k":8971,"v":[[0,2,["H2063"]],[2,5,["H6213","(H853)"]],[5,7,["H6235"]],[7,8,["H4350"]],[8,9,["H3605"]],[9,13,["H259"]],[13,14,["H4165"]],[14,15,["H259"]],[15,16,["H4060"]],[16,18,["H259"]],[18,19,["H7095"]]]},{"k":8972,"v":[[0,2,["H6213"]],[2,4,["H6235"]],[4,5,["H3595"]],[5,7,["H5178"]],[7,8,["H259"]],[8,9,["H3595"]],[9,10,["H3557"]],[10,11,["H705"]],[11,12,["H1324"]],[12,14,["H259"]],[14,15,["H3595"]],[15,17,["H702"]],[17,18,["H520"]],[18,20,["H5921"]],[20,22,["H259"]],[22,25,["H6235"]],[25,26,["H4350"]],[26,27,["H259"]],[27,28,["H3595"]]]},{"k":8973,"v":[[0,3,["H5414","(H853)"]],[3,4,["H2568"]],[4,5,["H4350"]],[5,6,["H5921"]],[6,8,["H4480","H3225"]],[8,9,["H3802"]],[9,12,["H1004"]],[12,14,["H2568"]],[14,15,["H5921"]],[15,17,["H4480","H8040"]],[17,18,["H3802"]],[18,21,["H1004"]],[21,24,["H5414"]],[24,26,["H3220"]],[26,29,["H3233"]],[29,30,["H4480","H3802"]],[30,33,["H1004"]],[33,34,["H6924"]],[34,36,["H4480","H4136"]],[36,38,["H5045"]]]},{"k":8974,"v":[[0,2,["H2438"]],[2,3,["H6213","(H853)"]],[3,5,["H3595"]],[5,8,["H3257"]],[8,11,["H4219"]],[11,13,["H2438"]],[13,16,["H3615"]],[16,18,["H6213","(H853)"]],[18,19,["H3605"]],[19,21,["H4399"]],[21,22,["H834"]],[22,24,["H6213"]],[24,25,["H4428"]],[25,26,["H8010"]],[26,29,["H1004"]],[29,32,["H3068"]]]},{"k":8975,"v":[[0,2,["H8147"]],[2,3,["H5982"]],[3,7,["H1543"]],[7,10,["H3805"]],[10,11,["H834"]],[11,13,["H5921"]],[13,15,["H7218"]],[15,18,["H8147"]],[18,19,["H5982"]],[19,22,["H8147"]],[22,23,["H7639"]],[23,25,["H3680","(H853)"]],[25,27,["H8147"]],[27,28,["H1543"]],[28,31,["H3805"]],[31,32,["H834"]],[32,34,["H5921"]],[34,36,["H7218"]],[36,39,["H5982"]]]},{"k":8976,"v":[[0,2,["H702"]],[2,3,["H3967"]],[3,4,["H7416"]],[4,7,["H8147"]],[7,8,["H7639"]],[8,10,["H8147"]],[10,11,["H2905"]],[11,13,["H7416"]],[13,15,["H259"]],[15,16,["H7639"]],[16,18,["H3680","(H853)"]],[18,20,["H8147"]],[20,21,["H1543"]],[21,24,["H3805"]],[24,25,["H834"]],[25,27,["H5921","H6440"]],[27,29,["H5982"]]]},{"k":8977,"v":[[0,3,["H6235"]],[3,4,["H4350"]],[4,6,["H6235"]],[6,7,["H3595"]],[7,8,["H5921"]],[8,10,["H4350"]]]},{"k":8978,"v":[[0,2,["H259"]],[2,3,["H3220"]],[3,5,["H8147","H6240"]],[5,6,["H1241"]],[6,7,["H8478"]],[7,9,["H3220"]]]},{"k":8979,"v":[[0,3,["H5518"]],[3,6,["H3257"]],[6,9,["H4219"]],[9,11,["H3605"]],[11,12,["H428"]],[12,13,["H3627"]],[13,14,["H834"]],[14,15,["H2438"]],[15,16,["H6213"]],[16,18,["H4428"]],[18,19,["H8010"]],[19,22,["H1004"]],[22,25,["H3068"]],[25,28,["H4803"]],[28,29,["H5178"]]]},{"k":8980,"v":[[0,3,["H3603"]],[3,5,["H3383"]],[5,8,["H4428"]],[8,9,["H3332"]],[9,13,["H4568"]],[13,14,["H127"]],[14,15,["H996"]],[15,16,["H5523"]],[16,18,["H6891"]]]},{"k":8981,"v":[[0,2,["H8010"]],[2,3,["H5117","(H853)"]],[3,4,["H3605"]],[4,6,["H3627"]],[6,11,["H3966","H3966"]],[11,12,["H4480","H7230"]],[12,13,["H3808"]],[13,16,["H4948"]],[16,19,["H5178"]],[19,21,["H2713"]]]},{"k":8982,"v":[[0,2,["H8010"]],[2,3,["H6213","(H853)"]],[3,4,["H3605"]],[4,6,["H3627"]],[6,7,["H834"]],[7,11,["H1004"]],[11,14,["H3068","(H853)"]],[14,16,["H4196"]],[16,18,["H2091"]],[18,21,["H7979"]],[21,23,["H2091"]],[23,24,["H834","H5921"]],[24,26,["H3899","H6440"]],[26,27,[]]]},{"k":8983,"v":[[0,3,["H4501"]],[3,5,["H5462"]],[5,6,["H2091"]],[6,7,["H2568"]],[7,10,["H4480","H3225"]],[10,13,["H2568"]],[13,16,["H4480","H8040"]],[16,17,["H6440"]],[17,19,["H1687"]],[19,22,["H6525"]],[22,25,["H5216"]],[25,28,["H4457"]],[28,30,["H2091"]]]},{"k":8984,"v":[[0,3,["H5592"]],[3,6,["H4212"]],[6,9,["H4219"]],[9,12,["H3709"]],[12,15,["H4289"]],[15,17,["H5462"]],[17,18,["H2091"]],[18,21,["H6596"]],[21,23,["H2091"]],[23,27,["H1817"]],[27,30,["H6442"]],[30,31,["H1004"]],[31,33,["H6944"]],[33,34,["H6944"]],[34,39,["H1817"]],[39,42,["H1004"]],[42,47,["H1964"]]]},{"k":8985,"v":[[0,3,["H7999"]],[3,4,["H3605"]],[4,6,["H4399"]],[6,7,["H834"]],[7,8,["H4428"]],[8,9,["H8010"]],[9,10,["H6213"]],[10,13,["H1004"]],[13,16,["H3068"]],[16,18,["H8010"]],[18,20,["H935","(H853)"]],[20,24,["H1732"]],[24,26,["H1"]],[26,28,["H6944"]],[28,29,["(H853)"]],[29,31,["H3701"]],[31,34,["H2091"]],[34,37,["H3627"]],[37,40,["H5414"]],[40,43,["H214"]],[43,46,["H1004"]],[46,49,["H3068"]]]},{"k":8986,"v":[[0,1,["H227"]],[1,2,["H8010"]],[2,3,["H6950","(H853)"]],[3,5,["H2205"]],[5,7,["H3478"]],[7,8,["(H853)"]],[8,9,["H3605"]],[9,11,["H7218"]],[11,14,["H4294"]],[14,16,["H5387"]],[16,19,["H1"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,25,["H413"]],[25,26,["H4428"]],[26,27,["H8010"]],[27,29,["H3389"]],[29,34,["H5927","(H853)"]],[34,36,["H727"]],[36,39,["H1285"]],[39,42,["H3068"]],[42,46,["H4480","H5892"]],[46,48,["H1732"]],[48,49,["H1931"]],[49,51,["H6726"]]]},{"k":8987,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,6,["H3478"]],[6,8,["H6950"]],[8,9,["H413"]],[9,10,["H4428"]],[10,11,["H8010"]],[11,14,["H2282"]],[14,17,["H3391"]],[17,18,["H388"]],[18,19,["H1931"]],[19,22,["H7637"]],[22,23,["H2320"]]]},{"k":8988,"v":[[0,2,["H3605"]],[2,4,["H2205"]],[4,6,["H3478"]],[6,7,["H935"]],[7,10,["H3548"]],[10,12,["H5375","(H853)"]],[12,14,["H727"]]]},{"k":8989,"v":[[0,4,["H5927","(H853)"]],[4,6,["H727"]],[6,9,["H3068"]],[9,12,["H168"]],[12,15,["H4150"]],[15,17,["H3605"]],[17,19,["H6944"]],[19,20,["H3627"]],[20,21,["H834"]],[21,25,["H168"]],[25,30,["H3548"]],[30,33,["H3881"]],[33,35,["H5927"]]]},{"k":8990,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,5,["H3605"]],[5,7,["H5712"]],[7,9,["H3478"]],[9,12,["H3259"]],[12,13,["H5921"]],[13,16,["H854"]],[16,18,["H6440"]],[18,20,["H727"]],[20,21,["H2076"]],[21,22,["H6629"]],[22,24,["H1241"]],[24,25,["H834"]],[25,27,["H3808"]],[27,29,["H5608"]],[29,30,["H3808"]],[30,31,["H4487"]],[31,33,["H4480","H7230"]]]},{"k":8991,"v":[[0,3,["H3548"]],[3,5,["H935","(H853)"]],[5,7,["H727"]],[7,10,["H1285"]],[10,13,["H3068"]],[13,14,["H413"]],[14,16,["H4725"]],[16,17,["H413"]],[17,19,["H1687"]],[19,22,["H1004"]],[22,23,["H413"]],[23,25,["H6944"]],[25,26,["H6944"]],[26,29,["H413","H8478"]],[29,31,["H3671"]],[31,34,["H3742"]]]},{"k":8992,"v":[[0,1,["H3588"]],[1,3,["H3742"]],[3,5,["H6566"]],[5,8,["H3671"]],[8,9,["H413"]],[9,11,["H4725"]],[11,14,["H727"]],[14,17,["H3742"]],[17,18,["H5526","H5921"]],[18,20,["H727"]],[20,23,["H905"]],[23,25,["H4480","H4605"]]]},{"k":8993,"v":[[0,4,["H748"]],[4,6,["H905"]],[6,9,["H7218"]],[9,12,["H905"]],[12,14,["H7200"]],[14,15,["H4480"]],[15,18,["H6944"]],[18,20,["H5921","H6440"]],[20,22,["H1687"]],[22,26,["H3808"]],[26,27,["H7200"]],[27,28,["H2351"]],[28,30,["H8033"]],[30,32,["H1961"]],[32,33,["H5704"]],[33,34,["H2088"]],[34,35,["H3117"]]]},{"k":8994,"v":[[0,3,["H369"]],[3,6,["H727"]],[6,7,["H7535"]],[7,9,["H8147"]],[9,10,["H3871"]],[10,12,["H68"]],[12,13,["H834"]],[13,14,["H4872"]],[14,15,["H5117"]],[15,16,["H8033"]],[16,18,["H2722"]],[18,19,["H834"]],[19,21,["H3068"]],[21,22,["H3772"]],[22,25,["H5973"]],[25,27,["H1121"]],[27,29,["H3478"]],[29,33,["H3318"]],[33,36,["H4480","H776"]],[36,38,["H4714"]]]},{"k":8995,"v":[[0,5,["H1961"]],[5,8,["H3548"]],[8,11,["H3318"]],[11,12,["H4480"]],[12,14,["H6944"]],[14,18,["H6051"]],[18,19,["H4390","(H853)"]],[19,21,["H1004"]],[21,24,["H3068"]]]},{"k":8996,"v":[[0,4,["H3548"]],[4,5,["H3201"]],[5,6,["H3808"]],[6,7,["H5975"]],[7,9,["H8334"]],[9,10,["H4480","H6440"]],[10,13,["H6051"]],[13,14,["H3588"]],[14,16,["H3519"]],[16,19,["H3068"]],[19,21,["H4390","(H853)"]],[21,23,["H1004"]],[23,26,["H3068"]]]},{"k":8997,"v":[[0,1,["H227"]],[1,2,["H559"]],[2,3,["H8010"]],[3,5,["H3068"]],[5,6,["H559"]],[6,10,["H7931"]],[10,14,["H6205"]]]},{"k":8998,"v":[[0,4,["H1129","H1129"]],[4,7,["H1004"]],[7,10,["H2073"]],[10,13,["H4349"]],[13,18,["H3427"]],[18,20,["H5769"]]]},{"k":8999,"v":[[0,3,["H4428"]],[3,4,["H5437","(H853)"]],[4,6,["H6440"]],[6,9,["H1288","(H853)"]],[9,10,["H3605"]],[10,12,["H6951"]],[12,14,["H3478"]],[14,16,["H3605"]],[16,18,["H6951"]],[18,20,["H3478"]],[20,21,["H5975"]]]},{"k":9000,"v":[[0,3,["H559"]],[3,4,["H1288"]],[4,7,["H3068"]],[7,8,["H430"]],[8,10,["H3478"]],[10,11,["H834"]],[11,12,["H1696"]],[12,15,["H6310"]],[15,16,["H854"]],[16,17,["H1732"]],[17,19,["H1"]],[19,24,["H3027"]],[24,25,["H4390"]],[25,27,["H559"]]]},{"k":9001,"v":[[0,1,["H4480"]],[1,3,["H3117"]],[3,4,["H834"]],[4,7,["H3318","(H853)"]],[7,9,["H5971","(H853)"]],[9,10,["H3478"]],[10,13,["H4480","H4714"]],[13,15,["H977"]],[15,16,["H3808"]],[16,17,["H5892"]],[17,20,["H4480","H3605"]],[20,22,["H7626"]],[22,24,["H3478"]],[24,26,["H1129"]],[26,28,["H1004"]],[28,31,["H8034"]],[31,33,["H1961"]],[33,34,["H8033"]],[34,37,["H977"]],[37,38,["H1732"]],[38,40,["H1961"]],[40,41,["H5921"]],[41,43,["H5971"]],[43,44,["H3478"]]]},{"k":9002,"v":[[0,3,["H1961"]],[3,4,["H5973"]],[4,6,["H3824"]],[6,8,["H1732"]],[8,10,["H1"]],[10,12,["H1129"]],[12,14,["H1004"]],[14,17,["H8034"]],[17,20,["H3068"]],[20,21,["H430"]],[21,23,["H3478"]]]},{"k":9003,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H1732"]],[6,8,["H1"]],[8,9,["H3282","H834"]],[9,11,["H1961"]],[11,12,["H5973"]],[12,14,["H3824"]],[14,16,["H1129"]],[16,18,["H1004"]],[18,21,["H8034"]],[21,24,["H2895"]],[24,25,["H3588"]],[25,27,["H1961"]],[27,28,["H5973"]],[28,30,["H3824"]]]},{"k":9004,"v":[[0,1,["H7535"]],[1,2,["H859"]],[2,4,["H3808"]],[4,5,["H1129"]],[5,7,["H1004"]],[7,8,["H3588","H518"]],[8,10,["H1121"]],[10,14,["H3318"]],[14,18,["H4480","H2504"]],[18,19,["H1931"]],[19,21,["H1129"]],[21,23,["H1004"]],[23,26,["H8034"]]]},{"k":9005,"v":[[0,3,["H3068"]],[3,5,["H6965","(H853)"]],[5,7,["H1697"]],[7,8,["H834"]],[8,10,["H1696"]],[10,15,["H6965"]],[15,18,["H8478"]],[18,20,["H1732"]],[20,22,["H1"]],[22,24,["H3427"]],[24,25,["H5921"]],[25,27,["H3678"]],[27,29,["H3478"]],[29,30,["H834"]],[30,32,["H3068"]],[32,33,["H1696"]],[33,36,["H1129"]],[36,38,["H1004"]],[38,41,["H8034"]],[41,44,["H3068"]],[44,45,["H430"]],[45,47,["H3478"]]]},{"k":9006,"v":[[0,4,["H7760"]],[4,5,["H8033"]],[5,7,["H4725"]],[7,10,["H727"]],[10,11,["H834","H8033"]],[11,14,["H1285"]],[14,17,["H3068"]],[17,18,["H834"]],[18,20,["H3772"]],[20,21,["H5973"]],[21,23,["H1"]],[23,28,["H3318","(H853)"]],[28,31,["H4480","H776"]],[31,33,["H4714"]]]},{"k":9007,"v":[[0,2,["H8010"]],[2,3,["H5975"]],[3,4,["H6440"]],[4,6,["H4196"]],[6,9,["H3068"]],[9,12,["H5048"]],[12,14,["H3605"]],[14,16,["H6951"]],[16,18,["H3478"]],[18,21,["H6566"]],[21,23,["H3709"]],[23,25,["H8064"]]]},{"k":9008,"v":[[0,3,["H559"]],[3,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,10,["H369"]],[10,11,["H430"]],[11,13,["H3644"]],[13,15,["H8064"]],[15,16,["H4480","H4605"]],[16,18,["H5921"]],[18,19,["H776"]],[19,20,["H4480","H8478"]],[20,22,["H8104"]],[22,23,["H1285"]],[23,25,["H2617"]],[25,28,["H5650"]],[28,30,["H1980"]],[30,31,["H6440"]],[31,34,["H3605"]],[34,36,["H3820"]]]},{"k":9009,"v":[[0,1,["H834"]],[1,3,["H8104"]],[3,6,["H5650"]],[6,7,["H1732"]],[7,9,["H1","(H853)"]],[9,10,["H834"]],[10,12,["H1696"]],[12,15,["H1696"]],[15,19,["H6310"]],[19,22,["H4390"]],[22,26,["H3027"]],[26,30,["H2088"]],[30,31,["H3117"]]]},{"k":9010,"v":[[0,2,["H6258"]],[2,3,["H3068"]],[3,4,["H430"]],[4,6,["H3478"]],[6,7,["H8104"]],[7,10,["H5650"]],[10,11,["H1732"]],[11,13,["H1","(H853)"]],[13,14,["H834"]],[14,16,["H1696"]],[16,18,["H559"]],[18,21,["H3808"]],[21,22,["H3772"]],[22,25,["H376"]],[25,28,["H4480","H6440"]],[28,30,["H3427"]],[30,31,["H5921"]],[31,33,["H3678"]],[33,35,["H3478"]],[35,36,["H7535"]],[36,37,["H518"]],[37,39,["H1121"]],[39,42,["H8104","(H853)"]],[42,44,["H1870"]],[44,47,["H1980"]],[47,48,["H6440"]],[48,50,["H834"]],[50,53,["H1980"]],[53,54,["H6440"]],[54,55,[]]]},{"k":9011,"v":[[0,2,["H6258"]],[2,4,["H430"]],[4,6,["H3478"]],[6,9,["H1697"]],[9,12,["H4994"]],[12,14,["H539"]],[14,15,["H834"]],[15,17,["H1696"]],[17,20,["H5650"]],[20,21,["H1732"]],[21,23,["H1"]]]},{"k":9012,"v":[[0,1,["H3588"]],[1,3,["H430"]],[3,4,["H552"]],[4,5,["H3427"]],[5,6,["H5921"]],[6,8,["H776"]],[8,9,["H2009"]],[9,11,["H8064"]],[11,13,["H8064"]],[13,15,["H8064"]],[15,16,["H3808"]],[16,17,["H3557"]],[17,21,["H637","H3588"]],[21,22,["H2088"]],[22,23,["H1004"]],[23,24,["H834"]],[24,27,["H1129"]]]},{"k":9013,"v":[[0,4,["H6437"]],[4,5,["H413"]],[5,7,["H8605"]],[7,10,["H5650"]],[10,12,["H413"]],[12,14,["H8467"]],[14,16,["H3068"]],[16,18,["H430"]],[18,20,["H8085"]],[20,21,["H413"]],[21,23,["H7440"]],[23,25,["H413"]],[25,27,["H8605"]],[27,28,["H834"]],[28,30,["H5650"]],[30,31,["H6419"]],[31,32,["H6440"]],[32,35,["H3117"]]]},{"k":9014,"v":[[0,3,["H5869"]],[3,5,["H1961"]],[5,6,["H6605"]],[6,7,["H413"]],[7,8,["H2088"]],[8,9,["H1004"]],[9,10,["H3915"]],[10,12,["H3117"]],[12,14,["H413"]],[14,16,["H4725"]],[16,18,["H834"]],[18,21,["H559"]],[21,23,["H8034"]],[23,25,["H1961"]],[25,26,["H8033"]],[26,30,["H8085"]],[30,31,["H413"]],[31,33,["H8605"]],[33,34,["H834"]],[34,36,["H5650"]],[36,38,["H6419"]],[38,39,["H413"]],[39,40,["H2088"]],[40,41,["H4725"]]]},{"k":9015,"v":[[0,2,["H8085"]],[2,4,["H413"]],[4,6,["H8467"]],[6,9,["H5650"]],[9,13,["H5971"]],[13,14,["H3478"]],[14,15,["H834"]],[15,18,["H6419"]],[18,19,["H413"]],[19,20,["H2088"]],[20,21,["H4725"]],[21,23,["H8085"]],[23,24,["H859"]],[24,25,["H413"]],[25,26,["H8064"]],[26,28,["H3427"]],[28,29,["H4725"]],[29,33,["H8085"]],[33,34,["H5545"]]]},{"k":9016,"v":[[0,0,["(H853)"]],[0,1,["H834"]],[1,3,["H376"]],[3,4,["H2398"]],[4,7,["H7453"]],[7,10,["H423"]],[10,12,["H5377"]],[12,19,["H422"]],[19,22,["H422"]],[22,23,["H935"]],[23,24,["H6440"]],[24,26,["H4196"]],[26,28,["H2088"]],[28,29,["H1004"]]]},{"k":9017,"v":[[0,2,["H8085"]],[2,3,["H859"]],[3,5,["H8064"]],[5,7,["H6213"]],[7,9,["H8199","(H853)"]],[9,11,["H5650"]],[11,12,["H7561"]],[12,14,["H7563"]],[14,16,["H5414"]],[16,18,["H1870"]],[18,21,["H7218"]],[21,23,["H6663"]],[23,25,["H6662"]],[25,27,["H5414"]],[27,32,["H6666"]]]},{"k":9018,"v":[[0,3,["H5971"]],[3,4,["H3478"]],[4,7,["H5062"]],[7,8,["H6440"]],[8,10,["H341"]],[10,11,["H834"]],[11,14,["H2398"]],[14,20,["H7725"]],[20,21,["H413"]],[21,24,["H3034","(H853)"]],[24,26,["H8034"]],[26,28,["H6419"]],[28,31,["H2603"]],[31,32,["H413"]],[32,35,["H2088"]],[35,36,["H1004"]]]},{"k":9019,"v":[[0,2,["H8085"]],[2,3,["H859"]],[3,5,["H8064"]],[5,7,["H5545"]],[7,9,["H2403"]],[9,12,["H5971"]],[12,13,["H3478"]],[13,17,["H7725"]],[17,18,["H413"]],[18,20,["H127"]],[20,21,["H834"]],[21,23,["H5414"]],[23,26,["H1"]]]},{"k":9020,"v":[[0,2,["H8064"]],[2,5,["H6113"]],[5,8,["H1961"]],[8,9,["H3808"]],[9,10,["H4306"]],[10,11,["H3588"]],[11,14,["H2398"]],[14,19,["H6419"]],[19,20,["H413"]],[20,21,["H2088"]],[21,22,["H4725"]],[22,24,["H3034","(H853)"]],[24,26,["H8034"]],[26,28,["H7725"]],[28,31,["H4480","H2403"]],[31,32,["H3588"]],[32,34,["H6031"]],[34,35,[]]]},{"k":9021,"v":[[0,2,["H8085"]],[2,3,["H859"]],[3,5,["H8064"]],[5,7,["H5545"]],[7,9,["H2403"]],[9,12,["H5650"]],[12,16,["H5971"]],[16,17,["H3478"]],[17,18,["H3588"]],[18,20,["H3384"]],[20,21,["(H853)"]],[21,22,["H834"]],[22,23,["H2896"]],[23,24,["H1870"]],[24,28,["H1980"]],[28,30,["H5414"]],[30,31,["H4306"]],[31,32,["H5921"]],[32,34,["H776"]],[34,35,["H834"]],[35,38,["H5414"]],[38,41,["H5971"]],[41,44,["H5159"]]]},{"k":9022,"v":[[0,1,["H3588"]],[1,3,["H1961"]],[3,6,["H776"]],[6,7,["H7458"]],[7,8,["H3588"]],[8,10,["H1961"]],[10,11,["H1698"]],[11,12,["H7711"]],[12,13,["H3420"]],[13,14,["H697"]],[14,16,["H3588"]],[16,18,["H1961"]],[18,19,["H2625"]],[19,20,["H3588"]],[20,22,["H341"]],[22,23,["H6887"]],[23,27,["H776"]],[27,30,["H8179"]],[30,31,["H3605"]],[31,32,["H5061"]],[32,33,["H3605"]],[33,34,["H4245"]],[34,36,[]]]},{"k":9023,"v":[[0,1,["H3605"]],[1,2,["H8605"]],[2,4,["H8467"]],[4,5,["H3605","H834"]],[5,6,["H1961"]],[6,9,["H3605"]],[9,10,["H120"]],[10,13,["H3605"]],[13,15,["H5971"]],[15,16,["H3478"]],[16,17,["H834"]],[17,19,["H3045"]],[19,21,["H376"]],[21,23,["H5061"]],[23,27,["H3824"]],[27,30,["H6566"]],[30,32,["H3709"]],[32,33,["H413"]],[33,34,["H2088"]],[34,35,["H1004"]]]},{"k":9024,"v":[[0,2,["H8085"]],[2,3,["H859"]],[3,5,["H8064"]],[5,7,["H3427"]],[7,8,["H4349"]],[8,10,["H5545"]],[10,12,["H6213"]],[12,14,["H5414"]],[14,17,["H376"]],[17,19,["H3605"]],[19,21,["H1870"]],[21,22,["H834","(H853)"]],[22,23,["H3824"]],[23,25,["H3045"]],[25,26,["H3588"]],[26,27,["H859"]],[27,30,["H905"]],[30,31,["H3045","(H853)"]],[31,33,["H3824"]],[33,35,["H3605"]],[35,37,["H1121"]],[37,39,["H120"]]]},{"k":9025,"v":[[0,1,["H4616"]],[1,4,["H3372"]],[4,6,["H3605"]],[6,8,["H3117"]],[8,9,["H834"]],[9,10,["H1992"]],[10,11,["H2416"]],[11,12,["H5921","H6440"]],[12,14,["H127"]],[14,15,["H834"]],[15,17,["H5414"]],[17,20,["H1"]]]},{"k":9026,"v":[[0,1,["H1571"]],[1,2,["H413"]],[2,4,["H5237"]],[4,5,["H834"]],[5,7,["H3808"]],[7,10,["H4480","H5971"]],[10,11,["H3478"]],[11,13,["H935"]],[13,18,["H4480","H776","H7350"]],[18,22,["H4616","H8034"]]]},{"k":9027,"v":[[0,1,["H3588"]],[1,5,["H8085","(H853)"]],[5,7,["H1419"]],[7,8,["H8034"]],[8,12,["H2389"]],[12,13,["H3027"]],[13,18,["H5186"]],[18,19,["H2220"]],[19,23,["H935"]],[23,25,["H6419"]],[25,26,["H413"]],[26,27,["H2088"]],[27,28,["H1004"]]]},{"k":9028,"v":[[0,1,["H8085"]],[1,2,["H859"]],[2,4,["H8064"]],[4,6,["H3427"]],[6,7,["H4349"]],[7,9,["H6213"]],[9,12,["H3605"]],[12,13,["H834"]],[13,15,["H5237"]],[15,16,["H7121"]],[16,17,["H413"]],[17,20,["H4616"]],[20,21,["H3605"]],[21,22,["H5971"]],[22,25,["H776"]],[25,27,["H3045","(H853)"]],[27,29,["H8034"]],[29,31,["H3372"]],[31,36,["H5971"]],[36,37,["H3478"]],[37,42,["H3045"]],[42,43,["H3588"]],[43,44,["H2088"]],[44,45,["H1004"]],[45,46,["H834"]],[46,49,["H1129"]],[49,51,["H7121"]],[51,52,["H5921"]],[52,54,["H8034"]]]},{"k":9029,"v":[[0,1,["H3588"]],[1,3,["H5971"]],[3,5,["H3318"]],[5,7,["H4421"]],[7,8,["H5921"]],[8,10,["H341"]],[10,11,["H1870","H834"]],[11,14,["H7971"]],[14,18,["H6419"]],[18,19,["H413"]],[19,21,["H3068"]],[21,22,["H1870"]],[22,24,["H5892"]],[24,25,["H834"]],[25,28,["H977"]],[28,32,["H1004"]],[32,33,["H834"]],[33,36,["H1129"]],[36,39,["H8034"]]]},{"k":9030,"v":[[0,2,["H8085"]],[2,5,["H8064","(H853)"]],[5,7,["H8605"]],[7,10,["H8467"]],[10,12,["H6213"]],[12,14,["H4941"]]]},{"k":9031,"v":[[0,1,["H3588"]],[1,3,["H2398"]],[3,6,["H3588"]],[6,9,["H369"]],[9,10,["H120"]],[10,11,["H834"]],[11,12,["H2398"]],[12,13,["H3808"]],[13,17,["H599"]],[17,21,["H5414"]],[21,23,["H6440"]],[23,25,["H341"]],[25,31,["H7617"]],[31,32,["H7617"]],[32,33,["H413"]],[33,35,["H776"]],[35,38,["H341"]],[38,39,["H7350"]],[39,40,["H176"]],[40,41,["H7138"]]]},{"k":9032,"v":[[0,6,["H7725","H413","H3820"]],[6,9,["H776"]],[9,10,["H834","H8033"]],[10,14,["H7617"]],[14,16,["H7725"]],[16,19,["H2603"]],[19,20,["H413"]],[20,24,["H776"]],[24,30,["H7617"]],[30,31,["H559"]],[31,34,["H2398"]],[34,38,["H5753"]],[38,42,["H7561"]]]},{"k":9033,"v":[[0,3,["H7725"]],[3,4,["H413"]],[4,7,["H3605"]],[7,9,["H3824"]],[9,12,["H3605"]],[12,14,["H5315"]],[14,17,["H776"]],[17,20,["H341"]],[20,21,["H834"]],[21,25,["H7617","(H853)"]],[25,27,["H6419"]],[27,28,["H413"]],[28,30,["H1870"]],[30,32,["H776"]],[32,33,["H834"]],[33,35,["H5414"]],[35,38,["H1"]],[38,40,["H5892"]],[40,41,["H834"]],[41,44,["H977"]],[44,47,["H1004"]],[47,48,["H834"]],[48,51,["H1129"]],[51,54,["H8034"]]]},{"k":9034,"v":[[0,2,["H8085"]],[2,3,["(H853)"]],[3,5,["H8605"]],[5,8,["H8467"]],[8,10,["H8064"]],[10,12,["H3427"]],[12,13,["H4349"]],[13,15,["H6213"]],[15,17,["H4941"]]]},{"k":9035,"v":[[0,2,["H5545"]],[2,4,["H5971"]],[4,5,["H834"]],[5,7,["H2398"]],[7,11,["H3605"]],[11,13,["H6588"]],[13,14,["H834"]],[14,17,["H6586"]],[17,21,["H5414"]],[21,23,["H7356"]],[23,24,["H6440"]],[24,29,["H7617"]],[29,35,["H7355"]],[35,36,[]]]},{"k":9036,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,5,["H5971"]],[5,8,["H5159"]],[8,9,["H834"]],[9,12,["H3318"]],[12,15,["H4480","H4714"]],[15,18,["H4480","H8432"]],[18,21,["H3564"]],[21,23,["H1270"]]]},{"k":9037,"v":[[0,3,["H5869"]],[3,5,["H1961"]],[5,6,["H6605"]],[6,7,["H413"]],[7,9,["H8467"]],[9,12,["H5650"]],[12,14,["H413"]],[14,16,["H8467"]],[16,19,["H5971"]],[19,20,["H3478"]],[20,22,["H8085"]],[22,23,["H413"]],[23,26,["H3605"]],[26,29,["H7121"]],[29,31,["H413"]],[31,32,[]]]},{"k":9038,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H914"]],[4,8,["H4480","H3605"]],[8,10,["H5971"]],[10,13,["H776"]],[13,17,["H5159"]],[17,18,["H834"]],[18,20,["H1696"]],[20,23,["H3027"]],[23,25,["H4872"]],[25,27,["H5650"]],[27,30,["H3318","(H853)"]],[30,32,["H1"]],[32,35,["H4480","H4714"]],[35,37,["H136"]],[37,38,["H3068"]]]},{"k":9039,"v":[[0,3,["H1961"]],[3,7,["H8010"]],[7,11,["H3615"]],[11,13,["H6419","(H853)"]],[13,14,["H3605"]],[14,15,["H2063"]],[15,16,["H8605"]],[16,18,["H8467"]],[18,19,["H413"]],[19,21,["H3068"]],[21,23,["H6965"]],[23,25,["H4480","H6440"]],[25,27,["H4196"]],[27,30,["H3068"]],[30,32,["H4480","H3766"]],[32,33,["H5921"]],[33,35,["H1290"]],[35,38,["H3709"]],[38,40,["H6566"]],[40,42,["H8064"]]]},{"k":9040,"v":[[0,3,["H5975"]],[3,5,["H1288","(H853)"]],[5,6,["H3605"]],[6,8,["H6951"]],[8,10,["H3478"]],[10,13,["H1419"]],[13,14,["H6963"]],[14,15,["H559"]]]},{"k":9041,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,5,["H834"]],[5,7,["H5414"]],[7,8,["H4496"]],[8,11,["H5971"]],[11,12,["H3478"]],[12,15,["H3605"]],[15,16,["H834"]],[16,18,["H1696"]],[18,21,["H3808"]],[21,22,["H5307"]],[22,23,["H259"]],[23,24,["H1697"]],[24,26,["H4480","H3605"]],[26,28,["H2896"]],[28,29,["H1697"]],[29,30,["H834"]],[30,32,["H1696"]],[32,35,["H3027"]],[35,37,["H4872"]],[37,39,["H5650"]]]},{"k":9042,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,5,["H1961"]],[5,6,["H5973"]],[6,8,["H834"]],[8,10,["H1961"]],[10,11,["H5973"]],[11,13,["H1"]],[13,16,["H408"]],[16,17,["H5800"]],[17,19,["H408"]],[19,20,["H5203"]],[20,21,[]]]},{"k":9043,"v":[[0,4,["H5186"]],[4,6,["H3824"]],[6,7,["H413"]],[7,10,["H1980"]],[10,12,["H3605"]],[12,14,["H1870"]],[14,17,["H8104"]],[17,19,["H4687"]],[19,22,["H2706"]],[22,25,["H4941"]],[25,26,["H834"]],[26,28,["H6680","(H853)"]],[28,30,["H1"]]]},{"k":9044,"v":[[0,3,["H428"]],[3,5,["H1697"]],[5,6,["H834"]],[6,10,["H2603"]],[10,11,["H6440"]],[11,13,["H3068"]],[13,14,["H1961"]],[14,15,["H7138"]],[15,16,["H413"]],[16,18,["H3068"]],[18,20,["H430"]],[20,21,["H3119"]],[21,23,["H3915"]],[23,26,["H6213"]],[26,28,["H4941"]],[28,31,["H5650"]],[31,34,["H4941"]],[34,37,["H5971"]],[37,38,["H3478"]],[38,41,["H3117"]],[41,44,["H1697"]],[44,46,["H3117"]]]},{"k":9045,"v":[[0,1,["H4616"]],[1,2,["H3605"]],[2,4,["H5971"]],[4,7,["H776"]],[7,9,["H3045"]],[9,10,["H3588"]],[10,12,["H3068"]],[12,14,["H430"]],[14,19,["H369"]],[19,20,["H5750"]]]},{"k":9046,"v":[[0,3,["H3824"]],[3,5,["H1961"]],[5,6,["H8003"]],[6,7,["H5973"]],[7,9,["H3068"]],[9,11,["H430"]],[11,13,["H1980"]],[13,16,["H2706"]],[16,19,["H8104"]],[19,21,["H4687"]],[21,24,["H2088"]],[24,25,["H3117"]]]},{"k":9047,"v":[[0,3,["H4428"]],[3,5,["H3605"]],[5,6,["H3478"]],[6,7,["H5973"]],[7,9,["H2076"]],[9,10,["H2077"]],[10,11,["H6440"]],[11,13,["H3068"]]]},{"k":9048,"v":[[0,2,["H8010"]],[2,3,["H2076","(H853)"]],[3,5,["H2077"]],[5,8,["H8002"]],[8,9,["H834"]],[9,11,["H2076"]],[11,14,["H3068"]],[14,15,["H8147"]],[15,17,["H6242"]],[17,18,["H505"]],[18,19,["H1241"]],[19,22,["H3967"]],[22,24,["H6242"]],[24,25,["H505"]],[25,26,["H6629"]],[26,29,["H4428"]],[29,31,["H3605"]],[31,33,["H1121"]],[33,35,["H3478"]],[35,36,["H2596","(H853)"]],[36,38,["H1004"]],[38,41,["H3068"]]]},{"k":9049,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H4428"]],[6,7,["H6942","(H853)"]],[7,9,["H8432"]],[9,12,["H2691"]],[12,13,["H834"]],[13,15,["H6440"]],[15,17,["H1004"]],[17,20,["H3068"]],[20,21,["H3588"]],[21,22,["H8033"]],[22,24,["H6213","(H853)"]],[24,26,["H5930"]],[26,29,["H4503"]],[29,32,["H2459"]],[32,36,["H8002"]],[36,37,["H3588"]],[37,39,["H5178"]],[39,40,["H4196"]],[40,41,["H834"]],[41,43,["H6440"]],[43,45,["H3068"]],[45,48,["H6996"]],[48,50,["H4480","H3557","(H853)"]],[50,53,["H5930"]],[53,56,["H4503"]],[56,59,["H2459"]],[59,63,["H8002"]]]},{"k":9050,"v":[[0,3,["H1931"]],[3,4,["H6256"]],[4,5,["H8010"]],[5,6,["H6213","(H853)"]],[6,8,["H2282"]],[8,10,["H3605"]],[10,11,["H3478"]],[11,12,["H5973"]],[12,15,["H1419"]],[15,16,["H6951"]],[16,20,["H4480","H935"]],[20,22,["H2574"]],[22,23,["H5704"]],[23,25,["H5158"]],[25,27,["H4714"]],[27,28,["H6440"]],[28,30,["H3068"]],[30,32,["H430"]],[32,33,["H7651"]],[33,34,["H3117"]],[34,36,["H7651"]],[36,37,["H3117"]],[37,39,["H702","H6240"]],[39,40,["H3117"]]]},{"k":9051,"v":[[0,3,["H8066"]],[3,4,["H3117"]],[4,6,["H7971","(H853)"]],[6,8,["H5971"]],[8,12,["H1288","(H853)"]],[12,14,["H4428"]],[14,16,["H1980"]],[16,19,["H168"]],[19,20,["H8056"]],[20,22,["H2896"]],[22,24,["H3820"]],[24,25,["H5921"]],[25,26,["H3605"]],[26,28,["H2896"]],[28,29,["H834"]],[29,31,["H3068"]],[31,33,["H6213"]],[33,35,["H1732"]],[35,37,["H5650"]],[37,40,["H3478"]],[40,42,["H5971"]]]},{"k":9052,"v":[[0,5,["H1961"]],[5,7,["H8010"]],[7,9,["H3615"]],[9,11,["H1129"]],[11,12,["(H853)"]],[12,14,["H1004"]],[14,17,["H3068"]],[17,20,["H4428"]],[20,21,["H1004"]],[21,23,["H3605"]],[23,24,["H8010"]],[24,25,["H2837"]],[25,26,["H834"]],[26,29,["H2654"]],[29,31,["H6213"]]]},{"k":9053,"v":[[0,3,["H3068"]],[3,4,["H7200"]],[4,5,["H413"]],[5,6,["H8010"]],[6,9,["H8145"]],[9,10,["H834"]],[10,13,["H7200"]],[13,14,["H413"]],[14,17,["H1391"]]]},{"k":9054,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,9,["H8085","(H853)"]],[9,11,["H8605"]],[11,14,["H8467"]],[14,15,["H834"]],[15,18,["H2063"]],[18,19,["H6440"]],[19,23,["H6942","(H853)"]],[23,24,["H2088"]],[24,25,["H1004"]],[25,26,["H834"]],[26,29,["H1129"]],[29,31,["H7760"]],[31,33,["H8034"]],[33,34,["H8033"]],[34,36,["H5704","H5769"]],[36,39,["H5869"]],[39,42,["H3820"]],[42,44,["H1961"]],[44,45,["H8033"]],[45,46,["H3605","H3117"]]]},{"k":9055,"v":[[0,2,["H518"]],[2,3,["H859"]],[3,5,["H1980"]],[5,6,["H6440"]],[6,8,["H834"]],[8,9,["H1732"]],[9,11,["H1"]],[11,12,["H1980"]],[12,14,["H8537"]],[14,16,["H3824"]],[16,19,["H3476"]],[19,21,["H6213"]],[21,24,["H3605"]],[24,25,["H834"]],[25,28,["H6680"]],[28,32,["H8104"]],[32,34,["H2706"]],[34,37,["H4941"]]]},{"k":9056,"v":[[0,4,["H6965","(H853)"]],[4,6,["H3678"]],[6,9,["H4467"]],[9,10,["H5921"]],[10,11,["H3478"]],[11,13,["H5769"]],[13,14,["H834"]],[14,16,["H1696"]],[16,17,["H5921"]],[17,18,["H1732"]],[18,20,["H1"]],[20,21,["H559"]],[21,24,["H3808"]],[24,25,["H3772"]],[25,28,["H376"]],[28,29,["H4480","H5921"]],[29,31,["H3678"]],[31,33,["H3478"]]]},{"k":9057,"v":[[0,2,["H518"]],[2,7,["H7725","H7725"]],[7,9,["H4480","H310"]],[9,11,["H859"]],[11,14,["H1121"]],[14,17,["H3808"]],[17,18,["H8104"]],[18,20,["H4687"]],[20,23,["H2708"]],[23,24,["H834"]],[24,27,["H5414"]],[27,28,["H6440"]],[28,31,["H1980"]],[31,33,["H5647"]],[33,34,["H312"]],[34,35,["H430"]],[35,37,["H7812"]],[37,38,[]]]},{"k":9058,"v":[[0,5,["H3772","(H853)"]],[5,6,["H3478"]],[6,8,["H4480","H5921","H6440"]],[8,10,["H127"]],[10,11,["H834"]],[11,14,["H5414"]],[14,18,["H1004"]],[18,19,["H834"]],[19,22,["H6942"]],[22,25,["H8034"]],[25,28,["H7971"]],[28,30,["H4480","H5921"]],[30,32,["H6440"]],[32,34,["H3478"]],[34,36,["H1961"]],[36,38,["H4912"]],[38,41,["H8148"]],[41,43,["H3605"]],[43,44,["H5971"]]]},{"k":9059,"v":[[0,3,["H2088"]],[3,4,["H1004"]],[4,6,["H1961"]],[6,7,["H5945"]],[7,9,["H3605"]],[9,11,["H5674"]],[11,12,["H5921"]],[12,16,["H8074"]],[16,19,["H8319"]],[19,23,["H559"]],[23,24,["H4100"]],[24,27,["H3068"]],[27,28,["H6213"]],[28,29,["H3602"]],[29,31,["H2063"]],[31,32,["H776"]],[32,35,["H2088"]],[35,36,["H1004"]]]},{"k":9060,"v":[[0,4,["H559"]],[4,5,["H5921","H834"]],[5,7,["H5800","(H853)"]],[7,9,["H3068"]],[9,11,["H430"]],[11,12,["H834"]],[12,14,["H3318","(H853)"]],[14,16,["H1"]],[16,20,["H4480","H776"]],[20,22,["H4714"]],[22,26,["H2388"]],[26,28,["H312"]],[28,29,["H430"]],[29,32,["H7812"]],[32,35,["H5647"]],[35,37,["H5921","H3651"]],[37,40,["H3068"]],[40,41,["H935"]],[41,42,["H5921"]],[42,43,["(H853)"]],[43,44,["H3605"]],[44,45,["H2063"]],[45,46,["H7451"]]]},{"k":9061,"v":[[0,5,["H1961"]],[5,8,["H4480","H7097"]],[8,10,["H6242"]],[10,11,["H8141"]],[11,12,["H834"]],[12,13,["H8010"]],[13,15,["H1129","(H853)"]],[15,17,["H8147"]],[17,18,["H1004","(H853)"]],[18,20,["H1004"]],[20,23,["H3068"]],[23,26,["H4428"]],[26,27,["H1004"]]]},{"k":9062,"v":[[0,2,["H2438"]],[2,4,["H4428"]],[4,6,["H6865"]],[6,8,["H5375","(H853)"]],[8,9,["H8010"]],[9,11,["H730"]],[11,12,["H6086"]],[12,14,["H1265"]],[14,15,["H6086"]],[15,18,["H2091"]],[18,21,["H3605"]],[21,23,["H2656"]],[23,25,["H227"]],[25,26,["H4428"]],[26,27,["H8010"]],[27,28,["H5414"]],[28,29,["H2438"]],[29,30,["H6242"]],[30,31,["H5892"]],[31,34,["H776"]],[34,36,["H1551"]]]},{"k":9063,"v":[[0,2,["H2438"]],[2,4,["H3318"]],[4,6,["H4480","H6865"]],[6,8,["H7200","(H853)"]],[8,10,["H5892"]],[10,11,["H834"]],[11,12,["H8010"]],[12,14,["H5414"]],[14,18,["H3474","H5869"]],[18,20,["H3808"]]]},{"k":9064,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,5,["H5892"]],[5,7,["H428"]],[7,8,["H834"]],[8,11,["H5414"]],[11,14,["H251"]],[14,17,["H7121"]],[17,20,["H776"]],[20,22,["H3521"]],[22,23,["H5704"]],[23,24,["H2088"]],[24,25,["H3117"]]]},{"k":9065,"v":[[0,2,["H2438"]],[2,3,["H7971"]],[3,6,["H4428"]],[6,7,["H3967","H6242"]],[7,8,["H3603"]],[8,10,["H2091"]]]},{"k":9066,"v":[[0,2,["H2088"]],[2,5,["H1697"]],[5,8,["H4522"]],[8,9,["H834"]],[9,10,["H4428"]],[10,11,["H8010"]],[11,12,["H5927"]],[12,15,["H1129","(H853)"]],[15,17,["H1004"]],[17,20,["H3068"]],[20,24,["H1004"]],[24,26,["H4407"]],[26,29,["H2346"]],[29,31,["H3389"]],[31,33,["H2674"]],[33,35,["H4023"]],[35,37,["H1507"]]]},{"k":9067,"v":[[0,2,["H6547"]],[2,3,["H4428"]],[3,5,["H4714"]],[5,8,["H5927"]],[8,10,["H3920","(H853)"]],[10,11,["H1507"]],[11,13,["H8313"]],[13,16,["H784"]],[16,18,["H2026"]],[18,20,["H3669"]],[20,22,["H3427"]],[22,25,["H5892"]],[25,27,["H5414"]],[27,31,["H7964"]],[31,34,["H1323"]],[34,35,["H8010"]],[35,36,["H802"]]]},{"k":9068,"v":[[0,2,["H8010"]],[2,3,["H1129","(H853)"]],[3,4,["H1507"]],[4,6,["H1032"]],[6,8,["H8481"]]]},{"k":9069,"v":[[0,2,["H1191"]],[2,4,["H8412"]],[4,7,["H4057"]],[7,10,["H776"]]]},{"k":9070,"v":[[0,2,["H3605"]],[2,4,["H5892"]],[4,6,["H4543"]],[6,7,["H834"]],[7,8,["H8010"]],[8,9,["H1961"]],[9,11,["H5892"]],[11,14,["H7393"]],[14,16,["H5892"]],[16,19,["H6571"]],[19,22,["H834"]],[22,23,["H8010"]],[23,24,["H2836"]],[24,26,["H1129"]],[26,28,["H3389"]],[28,31,["H3844"]],[31,34,["H3605"]],[34,36,["H776"]],[36,39,["H4475"]]]},{"k":9071,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,7,["H3498"]],[7,8,["H4480"]],[8,10,["H567"]],[10,11,["H2850"]],[11,12,["H6522"]],[12,13,["H2340"]],[13,15,["H2983"]],[15,16,["H834"]],[16,18,["H3808"]],[18,21,["H4480","H1121"]],[21,23,["H3478"]]]},{"k":9072,"v":[[0,2,["H1121"]],[2,3,["H834"]],[3,5,["H3498"]],[5,6,["H310"]],[6,10,["H776"]],[10,11,["H834"]],[11,13,["H1121"]],[13,15,["H3478"]],[15,18,["H3808"]],[18,19,["H3201"]],[19,22,["H2763"]],[22,26,["H8010"]],[26,27,["H5927"]],[27,31,["H4522","H5647"]],[31,32,["H5704"]],[32,33,["H2088"]],[33,34,["H3117"]]]},{"k":9073,"v":[[0,4,["H4480","H1121"]],[4,6,["H3478"]],[6,8,["H8010"]],[8,9,["H5414"]],[9,10,["H3808"]],[10,11,["H5650"]],[11,12,["H3588"]],[12,13,["H1992"]],[13,15,["H376"]],[15,17,["H4421"]],[17,20,["H5650"]],[20,23,["H8269"]],[23,26,["H7991"]],[26,28,["H8269"]],[28,31,["H7393"]],[31,34,["H6571"]]]},{"k":9074,"v":[[0,1,["H428"]],[1,4,["H8269"]],[4,7,["H5324"]],[7,8,["H834"]],[8,10,["H5921"]],[10,11,["H8010"]],[11,12,["H4399"]],[12,13,["H2568"]],[13,14,["H3967"]],[14,16,["H2572"]],[16,19,["H7287"]],[19,22,["H5971"]],[22,24,["H6213"]],[24,27,["H4399"]]]},{"k":9075,"v":[[0,1,["H389"]],[1,2,["H6547"]],[2,3,["H1323"]],[3,5,["H5927"]],[5,9,["H4480","H5892"]],[9,11,["H1732"]],[11,12,["H413"]],[12,14,["H1004"]],[14,15,["H834"]],[15,18,["H1129"]],[18,21,["H227"]],[21,24,["H1129","(H853)"]],[24,25,["H4407"]]]},{"k":9076,"v":[[0,2,["H7969"]],[2,3,["H6471"]],[3,6,["H8141"]],[6,8,["H8010"]],[8,9,["H5927"]],[9,11,["H5930"]],[11,14,["H8002"]],[14,15,["H5921"]],[15,17,["H4196"]],[17,18,["H834"]],[18,20,["H1129"]],[20,23,["H3068"]],[23,27,["H6999"]],[27,28,["H854"]],[28,31,["H834"]],[31,33,["H6440"]],[33,35,["H3068"]],[35,38,["H7999","(H853)"]],[38,40,["H1004"]]]},{"k":9077,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H6213"]],[4,8,["H590"]],[8,10,["H6100"]],[10,11,["H834"]],[11,13,["H854"]],[13,14,["H359"]],[14,15,["H5921"]],[15,17,["H8193"]],[17,20,["H5488"]],[20,21,["H3220"]],[21,24,["H776"]],[24,26,["H123"]]]},{"k":9078,"v":[[0,2,["H2438"]],[2,3,["H7971"]],[3,6,["H590","(H853)"]],[6,8,["H5650"]],[8,9,["H376","H591"]],[9,12,["H3045"]],[12,15,["H3220"]],[15,16,["H5973"]],[16,18,["H5650"]],[18,20,["H8010"]]]},{"k":9079,"v":[[0,3,["H935"]],[3,5,["H211"]],[5,7,["H3947"]],[7,9,["H4480","H8033"]],[9,10,["H2091"]],[10,11,["H702"]],[11,12,["H3967"]],[12,14,["H6242"]],[14,15,["H3603"]],[15,17,["H935"]],[17,19,["H413"]],[19,20,["H4428"]],[20,21,["H8010"]]]},{"k":9080,"v":[[0,4,["H4436"]],[4,6,["H7614"]],[6,7,["H8085"]],[7,8,["(H853)"]],[8,10,["H8088"]],[10,12,["H8010"]],[12,15,["H8034"]],[15,18,["H3068"]],[18,20,["H935"]],[20,22,["H5254"]],[22,26,["H2420"]]]},{"k":9081,"v":[[0,3,["H935"]],[3,5,["H3389"]],[5,8,["H3966"]],[8,9,["H3515"]],[9,10,["H2428"]],[10,12,["H1581"]],[12,14,["H5375"]],[14,15,["H1314"]],[15,17,["H3966"]],[17,18,["H7227"]],[18,19,["H2091"]],[19,21,["H3368"]],[21,22,["H68"]],[22,27,["H935"]],[27,28,["H413"]],[28,29,["H8010"]],[29,31,["H1696"]],[31,32,["H413"]],[32,34,["(H853)"]],[34,35,["H3605"]],[35,36,["H834"]],[36,37,["H1961"]],[37,38,["H5973"]],[38,40,["H3824"]]]},{"k":9082,"v":[[0,2,["H8010"]],[2,3,["H5046"]],[3,4,["(H853)"]],[4,5,["H3605"]],[5,7,["H1697"]],[7,9,["H1961"]],[9,10,["H3808"]],[10,12,["H1697"]],[12,13,["H5956"]],[13,14,["H4480"]],[14,16,["H4428"]],[16,17,["H834"]],[17,19,["H5046"]],[19,21,["H3808"]]]},{"k":9083,"v":[[0,4,["H4436"]],[4,6,["H7614"]],[6,8,["H7200","(H853)"]],[8,9,["H3605"]],[9,10,["H8010"]],[10,11,["H2451"]],[11,14,["H1004"]],[14,15,["H834"]],[15,18,["H1129"]]]},{"k":9084,"v":[[0,3,["H3978"]],[3,6,["H7979"]],[6,9,["H4186"]],[9,12,["H5650"]],[12,15,["H4612"]],[15,18,["H8334"]],[18,21,["H4403"]],[21,24,["H4945"]],[24,27,["H5930"]],[27,29,["H834"]],[29,32,["H5927"]],[32,35,["H1004"]],[35,38,["H3068"]],[38,40,["H1961"]],[40,41,["H3808"]],[41,42,["H5750"]],[42,43,["H7307"]],[43,45,[]]]},{"k":9085,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,8,["H1961"]],[8,10,["H571"]],[10,11,["H1697"]],[11,12,["H834"]],[12,14,["H8085"]],[14,18,["H776"]],[18,19,["H5921"]],[19,21,["H1697"]],[21,23,["H5921"]],[23,25,["H2451"]]]},{"k":9086,"v":[[0,3,["H539"]],[3,4,["H3808"]],[4,6,["H1697"]],[6,7,["H5704","H834"]],[7,9,["H935"]],[9,12,["H5869"]],[12,14,["H7200"]],[14,17,["H2009"]],[17,19,["H2677"]],[19,21,["H3808"]],[21,22,["H5046"]],[22,25,["H2451"]],[25,27,["H2896"]],[27,28,["H3254","H413"]],[28,30,["H8052"]],[30,31,["H834"]],[31,33,["H8085"]]]},{"k":9087,"v":[[0,1,["H835"]],[1,4,["H376"]],[4,5,["H835"]],[5,7,["H428"]],[7,9,["H5650"]],[9,11,["H5975"]],[11,12,["H8548"]],[12,13,["H6440"]],[13,17,["H8085","(H853)"]],[17,19,["H2451"]]]},{"k":9088,"v":[[0,1,["H1288"]],[1,2,["H1961"]],[2,4,["H3068"]],[4,6,["H430"]],[6,7,["H834"]],[7,8,["H2654"]],[8,12,["H5414"]],[12,14,["H5921"]],[14,16,["H3678"]],[16,18,["H3478"]],[18,21,["H3068"]],[21,22,["H157","(H853)"]],[22,23,["H3478"]],[23,25,["H5769"]],[25,27,["H7760"]],[27,30,["H4428"]],[30,32,["H6213"]],[32,33,["H4941"]],[33,35,["H6666"]]]},{"k":9089,"v":[[0,3,["H5414"]],[3,5,["H4428"]],[5,7,["H3967"]],[7,9,["H6242"]],[9,10,["H3603"]],[10,12,["H2091"]],[12,15,["H1314"]],[15,16,["H3966"]],[16,18,["H7235"]],[18,20,["H3368"]],[20,21,["H68"]],[21,23,["H935"]],[23,24,["H3808"]],[24,25,["H5750"]],[25,26,["H1931"]],[26,27,["H7230"]],[27,29,["H1314"]],[29,32,["H834"]],[32,34,["H4436"]],[34,36,["H7614"]],[36,37,["H5414"]],[37,39,["H4428"]],[39,40,["H8010"]]]},{"k":9090,"v":[[0,3,["H590"]],[3,4,["H1571"]],[4,6,["H2438"]],[6,7,["H834"]],[7,8,["H5375"]],[8,9,["H2091"]],[9,11,["H4480","H211"]],[11,13,["H935"]],[13,15,["H4480","H211"]],[15,16,["H3966"]],[16,17,["H7235"]],[17,19,["H484"]],[19,20,["H6086"]],[20,22,["H3368"]],[22,23,["H68"]]]},{"k":9091,"v":[[0,3,["H4428"]],[3,4,["H6213"]],[4,5,["(H853)"]],[5,7,["H484"]],[7,8,["H6086"]],[8,9,["H4552"]],[9,12,["H1004"]],[12,15,["H3068"]],[15,19,["H4428"]],[19,20,["H1004"]],[20,21,["H3658"]],[21,24,["H5035"]],[24,26,["H7891"]],[26,28,["H935"]],[28,29,["H3808"]],[29,30,["H3651"]],[30,31,["H484"]],[31,32,["H6086"]],[32,33,["H3808"]],[33,35,["H7200"]],[35,36,["H5704"]],[36,37,["H2088"]],[37,38,["H3117"]]]},{"k":9092,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H5414"]],[4,7,["H4436"]],[7,9,["H7614","(H853)"]],[9,10,["H3605"]],[10,12,["H2656"]],[12,13,["H834"]],[13,15,["H7592"]],[15,16,["H4480","H905"]],[16,18,["H834"]],[18,19,["H8010"]],[19,20,["H5414"]],[20,25,["H3027","H4428"]],[25,28,["H6437"]],[28,30,["H1980"]],[30,34,["H776"]],[34,35,["H1931"]],[35,38,["H5650"]]]},{"k":9093,"v":[[0,3,["H4948"]],[3,5,["H2091"]],[5,6,["H834"]],[6,7,["H935"]],[7,9,["H8010"]],[9,11,["H259"]],[11,12,["H8141"]],[12,13,["H1961"]],[13,14,["H8337"]],[14,15,["H3967"]],[15,16,["H8346"]],[16,18,["H8337"]],[18,19,["H3603"]],[19,21,["H2091"]]]},{"k":9094,"v":[[0,1,["H905"]],[1,7,["H4480","H376","H8446"]],[7,11,["H4536"]],[11,15,["H7402"]],[15,18,["H3605"]],[18,20,["H4428"]],[20,22,["H6154"]],[22,26,["H6346"]],[26,29,["H776"]]]},{"k":9095,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H6213"]],[4,6,["H3967"]],[6,7,["H6793"]],[7,9,["H7820"]],[9,10,["H2091"]],[10,11,["H8337"]],[11,12,["H3967"]],[12,15,["H2091"]],[15,16,["H5927"]],[16,17,["H5921"]],[17,18,["H259"]],[18,19,["H6793"]]]},{"k":9096,"v":[[0,4,["H7969"]],[4,5,["H3967"]],[5,6,["H4043"]],[6,8,["H7820"]],[8,9,["H2091"]],[9,10,["H7969"]],[10,11,["H4488"]],[11,13,["H2091"]],[13,14,["H5927"]],[14,15,["H5921"]],[15,16,["H259"]],[16,17,["H4043"]],[17,20,["H4428"]],[20,21,["H5414"]],[21,25,["H1004"]],[25,28,["H3293"]],[28,30,["H3844"]]]},{"k":9097,"v":[[0,3,["H4428"]],[3,4,["H6213"]],[4,6,["H1419"]],[6,7,["H3678"]],[7,9,["H8127"]],[9,11,["H6823"]],[11,15,["H6338"]],[15,16,["H2091"]]]},{"k":9098,"v":[[0,2,["H3678"]],[2,4,["H8337"]],[4,5,["H4609"]],[5,8,["H7218"]],[8,11,["H3678"]],[11,13,["H5696"]],[13,14,["H4480","H310"]],[14,18,["H3027"]],[18,21,["H4480","H2088","H4480","H2088"]],[21,22,["H413"]],[22,24,["H4725"]],[24,27,["H7675"]],[27,29,["H8147"]],[29,30,["H738"]],[30,31,["H5975"]],[31,32,["H681"]],[32,34,["H3027"]]]},{"k":9099,"v":[[0,2,["H8147","H6240"]],[2,3,["H738"]],[3,4,["H5975"]],[4,5,["H8033"]],[5,6,["H5921"]],[6,9,["H4480","H2088"]],[9,13,["H4480","H2088"]],[13,16,["H8337"]],[16,17,["H4609"]],[17,20,["H3808"]],[20,22,["H3651"]],[22,23,["H6213"]],[23,25,["H3605"]],[25,26,["H4467"]]]},{"k":9100,"v":[[0,2,["H3605"]],[2,3,["H4428"]],[3,4,["H8010"]],[4,5,["H4945"]],[5,6,["H3627"]],[6,9,["H2091"]],[9,11,["H3605"]],[11,13,["H3627"]],[13,16,["H1004"]],[16,19,["H3293"]],[19,21,["H3844"]],[21,24,["H5462"]],[24,25,["H2091"]],[25,26,["H369"]],[26,29,["H3701"]],[29,32,["H3808","H3972"]],[32,33,["H2803"]],[33,37,["H3117"]],[37,39,["H8010"]]]},{"k":9101,"v":[[0,1,["H3588"]],[1,3,["H4428"]],[3,6,["H3220"]],[6,8,["H590"]],[8,10,["H8659"]],[10,11,["H5973"]],[11,13,["H590"]],[13,15,["H2438"]],[15,16,["H259"]],[16,18,["H7969"]],[18,19,["H8141"]],[19,20,["H935"]],[20,22,["H590"]],[22,24,["H8659"]],[24,25,["H5375"]],[25,26,["H2091"]],[26,28,["H3701"]],[28,29,["H8143"]],[29,31,["H6971"]],[31,33,["H8500"]]]},{"k":9102,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,5,["H1431","H4480","H3605"]],[5,7,["H4428"]],[7,10,["H776"]],[10,12,["H6239"]],[12,15,["H2451"]]]},{"k":9103,"v":[[0,2,["H3605"]],[2,4,["H776"]],[4,5,["H1245","(H853)"]],[5,6,["H6440"]],[6,7,["H8010"]],[7,9,["H8085","(H853)"]],[9,11,["H2451"]],[11,12,["H834"]],[12,13,["H430"]],[13,15,["H5414"]],[15,18,["H3820"]]]},{"k":9104,"v":[[0,2,["H1992"]],[2,3,["H935"]],[3,5,["H376"]],[5,7,["H4503"]],[7,8,["H3627"]],[8,10,["H3701"]],[10,12,["H3627"]],[12,14,["H2091"]],[14,16,["H8008"]],[16,18,["H5402"]],[18,20,["H1314"]],[20,21,["H5483"]],[21,23,["H6505"]],[23,25,["H1697"]],[25,26,["H8141"]],[26,28,["H8141"]]]},{"k":9105,"v":[[0,2,["H8010"]],[2,4,["H622"]],[4,5,["H7393"]],[5,7,["H6571"]],[7,10,["H1961"]],[10,12,["H505"]],[12,14,["H702"]],[14,15,["H3967"]],[15,16,["H7393"]],[16,18,["H8147","H6240"]],[18,19,["H505"]],[19,20,["H6571"]],[20,23,["H5148"]],[23,26,["H5892"]],[26,28,["H7393"]],[28,30,["H5973"]],[30,32,["H4428"]],[32,34,["H3389"]]]},{"k":9106,"v":[[0,3,["H4428"]],[3,4,["H5414","(H853)"]],[4,5,["H3701"]],[5,9,["H3389"]],[9,11,["H68"]],[11,13,["H730"]],[13,14,["H5414"]],[14,21,["H8256"]],[21,22,["H834"]],[22,26,["H8219"]],[26,28,["H7230"]]]},{"k":9107,"v":[[0,2,["H8010"]],[2,4,["H5483"]],[4,5,["H4161"]],[5,8,["H4480","H4714"]],[8,11,["H4480","H4723"]],[11,13,["H4428"]],[13,14,["H5503"]],[14,15,["H3947"]],[15,18,["H4480","H4723"]],[18,21,["H4242"]]]},{"k":9108,"v":[[0,3,["H4818"]],[3,5,["H5927"]],[5,8,["H3318"]],[8,10,["H4480","H4714"]],[10,12,["H8337"]],[12,13,["H3967"]],[13,16,["H3701"]],[16,19,["H5483"]],[19,22,["H3967"]],[22,24,["H2572"]],[24,26,["H3651"]],[26,28,["H3605"]],[28,30,["H4428"]],[30,33,["H2850"]],[33,37,["H4428"]],[37,39,["H758"]],[39,44,["H3318"]],[44,47,["H3027"]]]},{"k":9109,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H157"]],[4,5,["H7227"]],[5,6,["H5237"]],[6,7,["H802"]],[7,9,["H854"]],[9,11,["H1323"]],[11,13,["H6547"]],[13,17,["H4125"]],[17,18,["H5984"]],[18,19,["H130"]],[19,20,["H6722"]],[20,22,["H2850"]]]},{"k":9110,"v":[[0,1,["H4480"]],[1,3,["H1471"]],[3,5,["H834"]],[5,7,["H3068"]],[7,8,["H559"]],[8,9,["H413"]],[9,11,["H1121"]],[11,13,["H3478"]],[13,16,["H3808"]],[16,18,["H935"]],[18,21,["H3808"]],[21,23,["H1992"]],[23,25,["H935"]],[25,29,["H403"]],[29,33,["H5186","(H853)"]],[33,35,["H3824"]],[35,36,["H310"]],[36,38,["H430"]],[38,39,["H8010"]],[39,40,["H1692"]],[40,44,["H157"]]]},{"k":9111,"v":[[0,3,["H1961"]],[3,4,["H7651"]],[4,5,["H3967"]],[5,6,["H802"]],[6,7,["H8282"]],[7,9,["H7969"]],[9,10,["H3967"]],[10,11,["H6370"]],[11,14,["H802"]],[14,16,["H5186","(H853)"]],[16,18,["H3820"]]]},{"k":9112,"v":[[0,5,["H1961"]],[5,6,["H6256"]],[6,7,["H8010"]],[7,9,["H2209"]],[9,12,["H802"]],[12,14,["H5186","(H853)"]],[14,16,["H3824"]],[16,17,["H310"]],[17,18,["H312"]],[18,19,["H430"]],[19,22,["H3824"]],[22,23,["H1961"]],[23,24,["H3808"]],[24,25,["H8003"]],[25,26,["H5973"]],[26,28,["H3068"]],[28,30,["H430"]],[30,34,["H3824"]],[34,36,["H1732"]],[36,38,["H1"]]]},{"k":9113,"v":[[0,2,["H8010"]],[2,3,["H1980"]],[3,4,["H310"]],[4,5,["H6253"]],[5,7,["H430"]],[7,10,["H6722"]],[10,12,["H310"]],[12,13,["H4445"]],[13,15,["H8251"]],[15,18,["H5984"]]]},{"k":9114,"v":[[0,2,["H8010"]],[2,3,["H6213"]],[3,4,["H7451"]],[4,7,["H5869"]],[7,10,["H3068"]],[10,14,["H3808","H4390"]],[14,15,["H310"]],[15,17,["H3068"]],[17,20,["H1732"]],[20,22,["H1"]]]},{"k":9115,"v":[[0,1,["H227"]],[1,3,["H8010"]],[3,4,["H1129"]],[4,7,["H1116"]],[7,9,["H3645"]],[9,11,["H8251"]],[11,13,["H4124"]],[13,16,["H2022"]],[16,17,["H834"]],[17,19,["H5921","H6440"]],[19,20,["H3389"]],[20,23,["H4432"]],[23,25,["H8251"]],[25,28,["H1121"]],[28,30,["H5983"]]]},{"k":9116,"v":[[0,2,["H3651"]],[2,3,["H6213"]],[3,6,["H3605"]],[6,8,["H5237"]],[8,9,["H802"]],[9,12,["H6999"]],[12,14,["H2076"]],[14,17,["H430"]]]},{"k":9117,"v":[[0,3,["H3068"]],[3,5,["H599"]],[5,7,["H8010"]],[7,8,["H3588"]],[8,10,["H3824"]],[10,12,["H5186"]],[12,13,["H4480","H5973"]],[13,15,["H3068"]],[15,16,["H430"]],[16,18,["H3478"]],[18,21,["H7200"]],[21,22,["H413"]],[22,24,["H6471"]]]},{"k":9118,"v":[[0,3,["H6680","H413"]],[3,5,["H5921"]],[5,6,["H2088"]],[6,7,["H1697"]],[7,11,["H1115"]],[11,12,["H1980"]],[12,13,["H310"]],[13,14,["H312"]],[14,15,["H430"]],[15,18,["H8104"]],[18,19,["H3808","(H853)"]],[19,21,["H834"]],[21,23,["H3068"]],[23,24,["H6680"]]]},{"k":9119,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,6,["H8010"]],[6,7,["H3282"]],[7,8,["H834"]],[8,9,["H2063"]],[9,10,["H1961"]],[10,12,["H5973"]],[12,17,["H3808"]],[17,18,["H8104"]],[18,20,["H1285"]],[20,23,["H2708"]],[23,24,["H834"]],[24,27,["H6680","H5921"]],[27,32,["H7167","H7167","(H853)"]],[32,34,["H4467"]],[34,35,["H4480","H5921"]],[35,39,["H5414"]],[39,43,["H5650"]]]},{"k":9120,"v":[[0,1,["H389"]],[1,4,["H3117"]],[4,7,["H3808"]],[7,8,["H6213"]],[8,14,["H4616","H1732","H1"]],[14,18,["H7167"]],[18,23,["H4480","H3027"]],[23,26,["H1121"]]]},{"k":9121,"v":[[0,1,["H7535"]],[1,4,["H3808"]],[4,6,["H7167","(H853)"]],[6,7,["H3605"]],[7,9,["H4467"]],[9,12,["H5414"]],[12,13,["H259"]],[13,14,["H7626"]],[14,17,["H1121"]],[17,22,["H4616","H1732","H5650"]],[22,26,["H4616","H3389"]],[26,27,["H834"]],[27,30,["H977"]]]},{"k":9122,"v":[[0,3,["H3068"]],[3,5,["H6965"]],[5,7,["H7854"]],[7,9,["H8010","(H853)"]],[9,10,["H1908"]],[10,12,["H130"]],[12,13,["H1931"]],[13,18,["H4480","H2233","H4428"]],[18,20,["H123"]]]},{"k":9123,"v":[[0,5,["H1961"]],[5,7,["H1732"]],[7,8,["H1961"]],[8,9,["(H853)"]],[9,10,["H123"]],[10,12,["H3097"]],[12,14,["H8269"]],[14,17,["H6635"]],[17,20,["H5927"]],[20,22,["H6912","(H853)"]],[22,24,["H2491"]],[24,28,["H5221"]],[28,29,["H3605"]],[29,30,["H2145"]],[30,32,["H123"]]]},{"k":9124,"v":[[0,1,["H3588"]],[1,2,["H8337"]],[2,3,["H2320"]],[3,5,["H3097"]],[5,6,["H3427"]],[6,7,["H8033"]],[7,9,["H3605"]],[9,10,["H3478"]],[10,11,["H5704"]],[11,15,["H3772"]],[15,16,["H3605"]],[16,17,["H2145"]],[17,19,["H123"]]]},{"k":9125,"v":[[0,2,["H111"]],[2,3,["H1272"]],[3,4,["H1931"]],[4,6,["H376"]],[6,7,["H129"]],[7,11,["H4480","H5650","H1"]],[11,12,["H854"]],[12,15,["H935"]],[15,17,["H4714"]],[17,18,["H1908"]],[18,22,["H6996"]],[22,23,["H5288"]]]},{"k":9126,"v":[[0,3,["H6965"]],[3,6,["H4480","H4080"]],[6,8,["H935"]],[8,10,["H6290"]],[10,13,["H3947"]],[13,14,["H376"]],[14,15,["H5973"]],[15,19,["H4480","H6290"]],[19,22,["H935"]],[22,24,["H4714"]],[24,25,["H413"]],[25,26,["H6547"]],[26,27,["H4428"]],[27,29,["H4714"]],[29,31,["H5414"]],[31,34,["H1004"]],[34,36,["H559"]],[36,38,["H3899"]],[38,40,["H5414"]],[40,42,["H776"]]]},{"k":9127,"v":[[0,2,["H1908"]],[2,3,["H4672"]],[3,4,["H3966"]],[4,5,["H2580"]],[5,8,["H5869"]],[8,10,["H6547"]],[10,14,["H5414"]],[14,17,["H802","(H853)"]],[17,19,["H269"]],[19,23,["H802"]],[23,25,["H269"]],[25,27,["H8472"]],[27,29,["H1377"]]]},{"k":9128,"v":[[0,3,["H269"]],[3,5,["H8472"]],[5,6,["H3205"]],[6,7,["(H853)"]],[7,8,["H1592"]],[8,10,["H1121"]],[10,12,["H8472"]],[12,13,["H1580"]],[13,14,["H8432"]],[14,15,["H6547"]],[15,16,["H1004"]],[16,18,["H1592"]],[18,19,["H1961"]],[19,21,["H6547"]],[21,22,["H1004"]],[22,23,["H8432"]],[23,25,["H1121"]],[25,27,["H6547"]]]},{"k":9129,"v":[[0,3,["H1908"]],[3,4,["H8085"]],[4,6,["H4714"]],[6,7,["H3588"]],[7,8,["H1732"]],[8,9,["H7901"]],[9,10,["H5973"]],[10,12,["H1"]],[12,14,["H3588"]],[14,15,["H3097"]],[15,17,["H8269"]],[17,20,["H6635"]],[20,22,["H4191"]],[22,23,["H1908"]],[23,24,["H559"]],[24,25,["H413"]],[25,26,["H6547"]],[26,29,["H7971"]],[29,33,["H1980"]],[33,34,["H413"]],[34,37,["H776"]]]},{"k":9130,"v":[[0,2,["H6547"]],[2,3,["H559"]],[3,6,["H3588"]],[6,7,["H4100"]],[7,9,["H859"]],[9,10,["H2638"]],[10,11,["H5973"]],[11,14,["H2009"]],[14,16,["H1245"]],[16,18,["H1980"]],[18,19,["H413"]],[19,22,["H776"]],[22,25,["H559"]],[25,26,["H3808"]],[26,27,["H3588"]],[27,33,["H7971","H7971"]]]},{"k":9131,"v":[[0,2,["H430"]],[2,5,["H6965"]],[5,7,["H7854","(H853)"]],[7,8,["H7331"]],[8,10,["H1121"]],[10,12,["H450"]],[12,13,["H834"]],[13,14,["H1272"]],[14,15,["H4480","H854"]],[15,17,["H113"]],[17,18,["H1909"]],[18,19,["H4428"]],[19,21,["H6678"]]]},{"k":9132,"v":[[0,3,["H6908"]],[3,4,["H376"]],[4,5,["H5921"]],[5,8,["H1961"]],[8,9,["H8269"]],[9,12,["H1416"]],[12,14,["H1732"]],[14,15,["H2026"]],[15,21,["H1980"]],[21,23,["H1834"]],[23,25,["H3427"]],[25,28,["H4427"]],[28,30,["H1834"]]]},{"k":9133,"v":[[0,3,["H1961"]],[3,5,["H7854"]],[5,7,["H3478"]],[7,8,["H3605"]],[8,10,["H3117"]],[10,12,["H8010"]],[12,13,["H854"]],[13,15,["H7451"]],[15,16,["H834"]],[16,17,["H1908"]],[17,21,["H6973"]],[21,22,["H3478"]],[22,24,["H4427"]],[24,25,["H5921"]],[25,26,["H758"]]]},{"k":9134,"v":[[0,2,["H3379"]],[2,4,["H1121"]],[4,6,["H5028"]],[6,8,["H673"]],[8,9,["H4480"]],[9,10,["H6868"]],[10,11,["H8010"]],[11,12,["H5650"]],[12,14,["H517"]],[14,15,["H8034"]],[15,17,["H6871"]],[17,19,["H490"]],[19,20,["H802"]],[20,24,["H7311"]],[24,26,["H3027"]],[26,29,["H4428"]]]},{"k":9135,"v":[[0,2,["H2088"]],[2,5,["H1697"]],[5,6,["H834"]],[6,9,["H7311"]],[9,11,["H3027"]],[11,14,["H4428"]],[14,15,["H8010"]],[15,16,["H1129","(H853)"]],[16,17,["H4407"]],[17,19,["H5462","(H853)"]],[19,21,["H6556"]],[21,24,["H5892"]],[24,26,["H1732"]],[26,28,["H1"]]]},{"k":9136,"v":[[0,3,["H376"]],[3,4,["H3379"]],[4,7,["H1368"]],[7,10,["H2428"]],[10,12,["H8010"]],[12,13,["H7200","(H853)"]],[13,16,["H5288"]],[16,17,["H3588"]],[17,18,["H1931"]],[18,20,["H6213","H4399"]],[20,24,["H6485","(H853)"]],[24,26,["H3605"]],[26,28,["H5447"]],[28,31,["H1004"]],[31,33,["H3130"]]]},{"k":9137,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,8,["H6256"]],[8,10,["H3379"]],[10,12,["H3318"]],[12,14,["H4480","H3389"]],[14,17,["H5030"]],[17,18,["H281"]],[18,20,["H7888"]],[20,21,["H4672"]],[21,25,["H1870"]],[25,27,["H1931"]],[27,30,["H3680"]],[30,33,["H2319"]],[33,34,["H8008"]],[34,37,["H8147"]],[37,39,["H905"]],[39,42,["H7704"]]]},{"k":9138,"v":[[0,2,["H281"]],[2,3,["H8610"]],[3,5,["H2319"]],[5,6,["H8008"]],[6,7,["H834"]],[7,9,["H5921"]],[9,12,["H7167"]],[12,15,["H8147","H6240"]],[15,16,["H7168"]]]},{"k":9139,"v":[[0,3,["H559"]],[3,5,["H3379"]],[5,6,["H3947"]],[6,8,["H6235"]],[8,9,["H7168"]],[9,10,["H3588"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H3068"]],[14,16,["H430"]],[16,18,["H3478"]],[18,19,["H2009"]],[19,22,["H7167","(H853)"]],[22,24,["H4467"]],[24,28,["H4480","H3027"]],[28,30,["H8010"]],[30,33,["H5414","(H853)"]],[33,34,["H6235"]],[34,35,["H7626"]],[35,37,[]]]},{"k":9140,"v":[[0,4,["H1961"]],[4,5,["H259"]],[5,6,["H7626"]],[6,11,["H4616","H1732","H5650"]],[11,15,["H4616","H3389"]],[15,17,["H5892"]],[17,18,["H834"]],[18,21,["H977"]],[21,24,["H4480","H3605"]],[24,26,["H7626"]],[26,28,["H3478"]]]},{"k":9141,"v":[[0,1,["H3282"]],[1,2,["H834"]],[2,5,["H5800"]],[5,9,["H7812"]],[9,10,["H6253"]],[10,12,["H430"]],[12,15,["H6721"]],[15,16,["H3645"]],[16,18,["H430"]],[18,21,["H4124"]],[21,23,["H4445"]],[23,25,["H430"]],[25,28,["H1121"]],[28,30,["H5983"]],[30,33,["H3808"]],[33,34,["H1980"]],[34,37,["H1870"]],[37,39,["H6213"]],[39,43,["H3477"]],[43,46,["H5869"]],[46,51,["H2708"]],[51,54,["H4941"]],[54,57,["H1732"]],[57,59,["H1"]]]},{"k":9142,"v":[[0,4,["H3808"]],[4,5,["H3947","(H853)"]],[5,7,["H3605"]],[7,8,["H4467"]],[8,12,["H4480","H3027"]],[12,13,["H3588"]],[13,16,["H7896"]],[16,18,["H5387"]],[18,19,["H3605"]],[19,21,["H3117"]],[21,24,["H2416"]],[24,29,["H4616","H1732","H5650"]],[29,30,["H834","(H853)"]],[30,32,["H977"]],[32,33,["H834"]],[33,35,["H8104"]],[35,37,["H4687"]],[37,40,["H2708"]]]},{"k":9143,"v":[[0,4,["H3947"]],[4,6,["H4410"]],[6,11,["H4480","H3027","H1121"]],[11,14,["H5414"]],[14,18,["(H853)"]],[18,19,["H6235"]],[19,20,["H7626"]]]},{"k":9144,"v":[[0,4,["H1121"]],[4,7,["H5414"]],[7,8,["H259"]],[8,9,["H7626"]],[9,10,["H4616"]],[10,11,["H1732"]],[11,13,["H5650"]],[13,15,["H1961"]],[15,17,["H5216"]],[17,18,["H3605","H3117"]],[18,19,["H6440"]],[19,22,["H3389"]],[22,24,["H5892"]],[24,25,["H834"]],[25,28,["H977"]],[28,31,["H7760"]],[31,33,["H8034"]],[33,34,["H8033"]]]},{"k":9145,"v":[[0,4,["H3947"]],[4,9,["H4427"]],[9,12,["H3605"]],[12,13,["H834"]],[13,15,["H5315"]],[15,16,["H183"]],[16,19,["H1961"]],[19,20,["H4428"]],[20,21,["H5921"]],[21,22,["H3478"]]]},{"k":9146,"v":[[0,4,["H1961"]],[4,5,["H518"]],[5,9,["H8085","(H853)"]],[9,10,["H3605"]],[10,11,["H834"]],[11,13,["H6680"]],[13,17,["H1980"]],[17,20,["H1870"]],[20,22,["H6213"]],[22,25,["H3477"]],[25,28,["H5869"]],[28,30,["H8104"]],[30,32,["H2708"]],[32,35,["H4687"]],[35,36,["H834"]],[36,37,["H1732"]],[37,39,["H5650"]],[39,40,["H6213"]],[40,44,["H1961"]],[44,45,["H5973"]],[45,48,["H1129"]],[48,51,["H539"]],[51,52,["H1004"]],[52,53,["H834"]],[53,55,["H1129"]],[55,57,["H1732"]],[57,60,["H5414","(H853)"]],[60,61,["H3478"]],[61,63,[]]]},{"k":9147,"v":[[0,4,["H4616"]],[4,5,["H2063"]],[5,6,["H6031","(H853)"]],[6,8,["H2233"]],[8,10,["H1732"]],[10,11,["H389"]],[11,12,["H3808"]],[12,14,["H3605","H3117"]]]},{"k":9148,"v":[[0,1,["H8010"]],[1,2,["H1245"]],[2,5,["H4191","(H853)"]],[5,6,["H3379"]],[6,8,["H3379"]],[8,9,["H6965"]],[9,11,["H1272"]],[11,13,["H4714"]],[13,14,["H413"]],[14,15,["H7895"]],[15,16,["H4428"]],[16,18,["H4714"]],[18,20,["H1961"]],[20,22,["H4714"]],[22,23,["H5704"]],[23,25,["H4194"]],[25,27,["H8010"]]]},{"k":9149,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H8010"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,16,["H2451"]],[16,18,["H1992"]],[18,19,["H3808"]],[19,20,["H3789"]],[20,21,["H5921"]],[21,23,["H5612"]],[23,26,["H1697"]],[26,28,["H8010"]]]},{"k":9150,"v":[[0,3,["H3117"]],[3,4,["H834"]],[4,5,["H8010"]],[5,6,["H4427"]],[6,8,["H3389"]],[8,9,["H5921"]],[9,10,["H3605"]],[10,11,["H3478"]],[11,13,["H705"]],[13,14,["H8141"]]]},{"k":9151,"v":[[0,2,["H8010"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,12,["H5892"]],[12,14,["H1732"]],[14,16,["H1"]],[16,18,["H7346"]],[18,20,["H1121"]],[20,21,["H4427"]],[21,24,["H8478"]]]},{"k":9152,"v":[[0,2,["H7346"]],[2,3,["H1980"]],[3,5,["H7927"]],[5,6,["H3588"]],[6,7,["H3605"]],[7,8,["H3478"]],[8,10,["H935"]],[10,12,["H7927"]],[12,16,["H4427","(H853)"]]]},{"k":9153,"v":[[0,5,["H1961"]],[5,7,["H3379"]],[7,9,["H1121"]],[9,11,["H5028"]],[11,12,["H1931"]],[12,14,["H5750"]],[14,16,["H4714"]],[16,17,["H8085"]],[17,20,["H834"]],[20,23,["H1272"]],[23,26,["H4480","H6440"]],[26,28,["H4428"]],[28,29,["H8010"]],[29,31,["H3379"]],[31,32,["H3427"]],[32,34,["H4714"]]]},{"k":9154,"v":[[0,3,["H7971"]],[3,5,["H7121"]],[5,8,["H3379"]],[8,10,["H3605"]],[10,12,["H6951"]],[12,14,["H3478"]],[14,15,["H935"]],[15,17,["H1696"]],[17,18,["H413"]],[18,19,["H7346"]],[19,20,["H559"]]]},{"k":9155,"v":[[0,2,["H1"]],[2,3,["(H853)"]],[3,5,["H5923"]],[5,6,["H7185"]],[6,7,["H6258"]],[7,10,["H859"]],[10,12,["H7186"]],[12,13,["H4480","H5656"]],[13,16,["H1"]],[16,19,["H3515"]],[19,20,["H4480","H5923"]],[20,21,["H834"]],[21,23,["H5414"]],[23,24,["H5921"]],[24,26,["H7043"]],[26,30,["H5647"]],[30,31,[]]]},{"k":9156,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1980"]],[6,7,["H5750"]],[7,9,["H7969"]],[9,10,["H3117"]],[10,13,["H7725"]],[13,14,["H413"]],[14,18,["H5971"]],[18,19,["H1980"]]]},{"k":9157,"v":[[0,2,["H4428"]],[2,3,["H7346"]],[3,4,["H3289"]],[4,5,["H854"]],[5,8,["H2205"]],[8,9,["H834"]],[9,10,["H5975","(H853)"]],[10,11,["H6440"]],[11,12,["H8010"]],[12,14,["H1"]],[14,15,["H1961"]],[15,18,["H2416"]],[18,20,["H559"]],[20,21,["H349"]],[21,23,["H859"]],[23,24,["H3289"]],[24,28,["H7725","H1697","(H853)"]],[28,29,["H2088"]],[29,30,["H5971"]]]},{"k":9158,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H559"]],[6,7,["H518"]],[7,10,["H1961"]],[10,12,["H5650"]],[12,14,["H2088"]],[14,15,["H5971"]],[15,17,["H3117"]],[17,20,["H5647"]],[20,23,["H6030"]],[23,26,["H1696"]],[26,27,["H2896"]],[27,28,["H1697"]],[28,29,["H413"]],[29,34,["H1961"]],[34,36,["H5650"]],[36,38,["H3605","H3117"]]]},{"k":9159,"v":[[0,3,["H5800","(H853)"]],[3,5,["H6098"]],[5,9,["H2205"]],[9,10,["H834"]],[10,13,["H3289"]],[13,16,["H3289"]],[16,17,["H854"]],[17,20,["H3206"]],[20,21,["H834"]],[21,24,["H1431"]],[24,25,["H854"]],[25,28,["H834"]],[28,29,["H5975"]],[29,30,["H6440"]],[30,31,[]]]},{"k":9160,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H4100"]],[6,7,["H3289"]],[7,9,["H859"]],[9,13,["H7725","H1697","(H853)"]],[13,14,["H2088"]],[14,15,["H5971"]],[15,16,["H834"]],[16,18,["H1696"]],[18,19,["H413"]],[19,21,["H559"]],[21,24,["H5923"]],[24,25,["H834"]],[25,27,["H1"]],[27,29,["H5414"]],[29,30,["H5921"]],[30,32,["H7043"]]]},{"k":9161,"v":[[0,4,["H3206"]],[4,5,["H834"]],[5,8,["H1431"]],[8,9,["H854"]],[9,11,["H1696"]],[11,12,["H413"]],[12,14,["H559"]],[14,15,["H3541"]],[15,18,["H559"]],[18,20,["H2088"]],[20,21,["H5971"]],[21,22,["H834"]],[22,23,["H1696"]],[23,24,["H413"]],[24,26,["H559"]],[26,28,["H1"]],[28,29,["(H853)"]],[29,31,["H5923"]],[31,32,["H3513"]],[32,35,["H859"]],[35,37,["H7043"]],[37,38,["H4480","H5921"]],[38,40,["H3541"]],[40,43,["H1696"]],[43,44,["H413"]],[44,47,["H6995"]],[47,51,["H5666"]],[51,54,["H1"]],[54,55,["H4480","H4975"]]]},{"k":9162,"v":[[0,2,["H6258"]],[2,5,["H1"]],[5,7,["H6006","H5921"]],[7,11,["H3515"]],[11,12,["H5923"]],[12,13,["H589"]],[13,15,["H3254"]],[15,16,["H5921"]],[16,18,["H5923"]],[18,20,["H1"]],[20,22,["H3256"]],[22,25,["H7752"]],[25,27,["H589"]],[27,29,["H3256"]],[29,32,["H6137"]]]},{"k":9163,"v":[[0,2,["H3379"]],[2,4,["H3605"]],[4,6,["H5971"]],[6,7,["H935"]],[7,8,["H413"]],[8,9,["H7346"]],[9,11,["H7992"]],[11,12,["H3117"]],[12,13,["H834"]],[13,15,["H4428"]],[15,17,["H1696"]],[17,18,["H559"]],[18,19,["H7725"]],[19,20,["H413"]],[20,24,["H7992"]],[24,25,["H3117"]]]},{"k":9164,"v":[[0,3,["H4428"]],[3,4,["H6030","(H853)"]],[4,6,["H5971"]],[6,7,["H7186"]],[7,9,["H5800","(H853)"]],[9,12,["H2205"]],[12,13,["H6098"]],[13,14,["H834"]],[14,16,["H3289"]],[16,17,[]]]},{"k":9165,"v":[[0,2,["H1696"]],[2,3,["H413"]],[3,7,["H6098"]],[7,11,["H3206"]],[11,12,["H559"]],[12,14,["H1"]],[14,15,["(H853)"]],[15,17,["H5923"]],[17,18,["H3513"]],[18,20,["H589"]],[20,22,["H3254"]],[22,23,["H5921"]],[23,25,["H5923"]],[25,27,["H1"]],[27,29,["H3256"]],[29,32,["H7752"]],[32,34,["H589"]],[34,36,["H3256"]],[36,39,["H6137"]]]},{"k":9166,"v":[[0,3,["H4428"]],[3,4,["H8085"]],[4,5,["H3808"]],[5,6,["H413"]],[6,8,["H5971"]],[8,9,["H3588"]],[9,11,["H5438"]],[11,12,["H1961"]],[12,13,["H4480","H5973"]],[13,15,["H3068"]],[15,16,["H4616"]],[16,19,["H6965","(H853)"]],[19,21,["H1697"]],[21,22,["H834"]],[22,24,["H3068"]],[24,25,["H1696"]],[25,26,["H3027"]],[26,27,["H281"]],[27,29,["H7888"]],[29,30,["H413"]],[30,31,["H3379"]],[31,33,["H1121"]],[33,35,["H5028"]]]},{"k":9167,"v":[[0,3,["H3605"]],[3,4,["H3478"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,8,["H4428"]],[8,9,["H8085"]],[9,10,["H3808"]],[10,11,["H413"]],[11,14,["H5971"]],[14,15,["H7725","H1697","(H853)"]],[15,17,["H4428"]],[17,18,["H559"]],[18,19,["H4100"]],[19,20,["H2506"]],[20,24,["H1732"]],[24,25,["H3808"]],[25,28,["H5159"]],[28,31,["H1121"]],[31,33,["H3448"]],[33,36,["H168"]],[36,38,["H3478"]],[38,39,["H6258"]],[39,40,["H7200"]],[40,44,["H1004"]],[44,45,["H1732"]],[45,47,["H3478"]],[47,48,["H1980"]],[48,51,["H168"]]]},{"k":9168,"v":[[0,5,["H1121"]],[5,7,["H3478"]],[7,9,["H3427"]],[9,12,["H5892"]],[12,14,["H3063"]],[14,15,["H7346"]],[15,16,["H4427"]],[16,17,["H5921"]],[17,18,[]]]},{"k":9169,"v":[[0,2,["H4428"]],[2,3,["H7346"]],[3,4,["H7971","(H853)"]],[4,5,["H151"]],[5,6,["H834"]],[6,8,["H5921"]],[8,10,["H4522"]],[10,12,["H3605"]],[12,13,["H3478"]],[13,14,["H7275"]],[14,17,["H68"]],[17,20,["H4191"]],[20,22,["H4428"]],[22,23,["H7346"]],[23,25,["H553"]],[25,29,["H5927"]],[29,32,["H4818"]],[32,34,["H5127"]],[34,36,["H3389"]]]},{"k":9170,"v":[[0,2,["H3478"]],[2,3,["H6586"]],[3,6,["H1004"]],[6,8,["H1732"]],[8,9,["H5704"]],[9,10,["H2088"]],[10,11,["H3117"]]]},{"k":9171,"v":[[0,5,["H1961"]],[5,7,["H3605"]],[7,8,["H3478"]],[8,9,["H8085"]],[9,10,["H3588"]],[10,11,["H3379"]],[11,14,["H7725"]],[14,17,["H7971"]],[17,19,["H7121"]],[19,21,["H413"]],[21,23,["H5712"]],[23,27,["H4427","(H853)"]],[27,28,["H5921"]],[28,29,["H3605"]],[29,30,["H3478"]],[30,32,["H1961"]],[32,33,["H3808"]],[33,35,["H310"]],[35,37,["H1004"]],[37,39,["H1732"]],[39,40,["H2108"]],[40,42,["H7626"]],[42,44,["H3063"]],[44,45,["H905"]]]},{"k":9172,"v":[[0,3,["H7346"]],[3,5,["H935"]],[5,7,["H3389"]],[7,9,["H6950","(H853)"]],[9,10,["H3605"]],[10,12,["H1004"]],[12,14,["H3063"]],[14,15,["H854"]],[15,17,["H7626"]],[17,19,["H1144"]],[19,21,["H3967"]],[21,23,["H8084"]],[23,24,["H505"]],[24,25,["H977"]],[25,29,["H6213","H4421"]],[29,31,["H3898"]],[31,32,["H5973"]],[32,34,["H1004"]],[34,36,["H3478"]],[36,38,["H7725","(H853)"]],[38,40,["H4410"]],[40,43,["H7346"]],[43,45,["H1121"]],[45,47,["H8010"]]]},{"k":9173,"v":[[0,3,["H1697"]],[3,5,["H430"]],[5,6,["H1961"]],[6,7,["H413"]],[7,8,["H8098"]],[8,10,["H376"]],[10,12,["H430"]],[12,13,["H559"]]]},{"k":9174,"v":[[0,1,["H559"]],[1,2,["H413"]],[2,3,["H7346"]],[3,5,["H1121"]],[5,7,["H8010"]],[7,8,["H4428"]],[8,10,["H3063"]],[10,12,["H413"]],[12,13,["H3605"]],[13,15,["H1004"]],[15,17,["H3063"]],[17,19,["H1144"]],[19,23,["H3499"]],[23,26,["H5971"]],[26,27,["H559"]]]},{"k":9175,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,7,["H3808"]],[7,9,["H5927"]],[9,10,["H3808"]],[10,11,["H3898"]],[11,12,["H5973"]],[12,14,["H251"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,19,["H7725"]],[19,21,["H376"]],[21,24,["H1004"]],[24,25,["H3588"]],[25,26,["H2088"]],[26,27,["H1697"]],[27,28,["H1961"]],[28,29,["H4480","H854"]],[29,32,["H8085"]],[32,33,["(H853)"]],[33,36,["H1697"]],[36,39,["H3068"]],[39,41,["H7725"]],[41,43,["H1980"]],[43,47,["H1697"]],[47,50,["H3068"]]]},{"k":9176,"v":[[0,2,["H3379"]],[2,3,["H1129","(H853)"]],[3,4,["H7927"]],[4,6,["H2022"]],[6,7,["H669"]],[7,9,["H3427"]],[9,13,["H3318"]],[13,15,["H4480","H8033"]],[15,17,["H1129","(H853)"]],[17,18,["H6439"]]]},{"k":9177,"v":[[0,2,["H3379"]],[2,3,["H559"]],[3,6,["H3820"]],[6,7,["H6258"]],[7,10,["H4467"]],[10,11,["H7725"]],[11,14,["H1004"]],[14,16,["H1732"]]]},{"k":9178,"v":[[0,1,["H518"]],[1,2,["H2088"]],[2,3,["H5971"]],[3,5,["H5927"]],[5,7,["H6213"]],[7,8,["H2077"]],[8,11,["H1004"]],[11,14,["H3068"]],[14,16,["H3389"]],[16,20,["H3820"]],[20,22,["H2088"]],[22,23,["H5971"]],[23,25,["H7725"]],[25,26,["H413"]],[26,28,["H113"]],[28,30,["H413"]],[30,31,["H7346"]],[31,32,["H4428"]],[32,34,["H3063"]],[34,38,["H2026"]],[38,42,["H7725"]],[42,43,["H413"]],[43,44,["H7346"]],[44,45,["H4428"]],[45,47,["H3063"]]]},{"k":9179,"v":[[0,3,["H4428"]],[3,5,["H3289"]],[5,7,["H6213"]],[7,8,["H8147"]],[8,9,["H5695"]],[9,11,["H2091"]],[11,13,["H559"]],[13,14,["H413"]],[14,19,["H7227"]],[19,24,["H4480","H5927"]],[24,26,["H3389"]],[26,27,["H2009"]],[27,29,["H430"]],[29,31,["H3478"]],[31,32,["H834"]],[32,33,["H5927"]],[33,39,["H4480","H776"]],[39,41,["H4714"]]]},{"k":9180,"v":[[0,3,["H7760","(H853)"]],[3,5,["H259"]],[5,7,["H1008"]],[7,10,["H259"]],[10,11,["H5414"]],[11,14,["H1835"]]]},{"k":9181,"v":[[0,2,["H2088"]],[2,3,["H1697"]],[3,4,["H1961"]],[4,6,["H2403"]],[6,9,["H5971"]],[9,10,["H1980"]],[10,13,["H6440"]],[13,15,["H259"]],[15,17,["H5704"]],[17,18,["H1835"]]]},{"k":9182,"v":[[0,3,["H6213","(H853)"]],[3,5,["H1004"]],[5,8,["H1116"]],[8,10,["H6213"]],[10,11,["H3548"]],[11,14,["H4480","H7098"]],[14,17,["H5971"]],[17,18,["H834"]],[18,19,["H1961"]],[19,20,["H3808"]],[20,23,["H4480","H1121"]],[23,25,["H3878"]]]},{"k":9183,"v":[[0,2,["H3379"]],[2,3,["H6213"]],[3,5,["H2282"]],[5,8,["H8066"]],[8,9,["H2320"]],[9,12,["H2568","H6240"]],[12,13,["H3117"]],[13,16,["H2320"]],[16,20,["H2282"]],[20,21,["H834"]],[21,24,["H3063"]],[24,27,["H5927"]],[27,28,["H5921"]],[28,30,["H4196"]],[30,31,["H3651"]],[31,32,["H6213"]],[32,35,["H1008"]],[35,36,["H2076"]],[36,39,["H5695"]],[39,40,["H834"]],[40,43,["H6213"]],[43,46,["H5975"]],[46,48,["H1008","(H853)"]],[48,50,["H3548"]],[50,54,["H1116"]],[54,55,["H834"]],[55,58,["H6213"]]]},{"k":9184,"v":[[0,3,["H5927"]],[3,4,["H5921"]],[4,6,["H4196"]],[6,7,["H834"]],[7,10,["H6213"]],[10,12,["H1008"]],[12,14,["H2568","H6240"]],[14,15,["H3117"]],[15,18,["H8066"]],[18,19,["H2320"]],[19,23,["H2320"]],[23,24,["H834"]],[24,27,["H908"]],[27,31,["H4480","H3820"]],[31,33,["H6213"]],[33,35,["H2282"]],[35,38,["H1121"]],[38,40,["H3478"]],[40,43,["H5927"]],[43,44,["H5921"]],[44,46,["H4196"]],[46,49,["H6999"]]]},{"k":9185,"v":[[0,2,["H2009"]],[2,4,["H935"]],[4,6,["H376"]],[6,8,["H430"]],[8,11,["H4480","H3063"]],[11,14,["H1697"]],[14,17,["H3068"]],[17,18,["H413"]],[18,19,["H1008"]],[19,21,["H3379"]],[21,22,["H5975"]],[22,23,["H5921"]],[23,25,["H4196"]],[25,28,["H6999"]]]},{"k":9186,"v":[[0,3,["H7121"]],[3,4,["H5921"]],[4,6,["H4196"]],[6,9,["H1697"]],[9,12,["H3068"]],[12,14,["H559"]],[14,16,["H4196"]],[16,17,["H4196"]],[17,18,["H3541"]],[18,19,["H559"]],[19,21,["H3068"]],[21,22,["H2009"]],[22,24,["H1121"]],[24,27,["H3205"]],[27,30,["H1004"]],[30,32,["H1732"]],[32,33,["H2977"]],[33,35,["H8034"]],[35,37,["H5921"]],[37,41,["H2076","(H853)"]],[41,43,["H3548"]],[43,47,["H1116"]],[47,50,["H6999"]],[50,51,["H5921"]],[51,54,["H120"]],[54,55,["H6106"]],[55,58,["H8313"]],[58,59,["H5921"]],[59,60,[]]]},{"k":9187,"v":[[0,3,["H5414"]],[3,5,["H4159"]],[5,7,["H1931"]],[7,8,["H3117"]],[8,9,["H559"]],[9,10,["H2088"]],[10,13,["H4159"]],[13,14,["H834"]],[14,16,["H3068"]],[16,18,["H1696"]],[18,19,["H2009"]],[19,21,["H4196"]],[21,24,["H7167"]],[24,27,["H1880"]],[27,28,["H834"]],[28,30,["H5921"]],[30,35,["H8210"]]]},{"k":9188,"v":[[0,5,["H1961"]],[5,7,["H4428"]],[7,8,["H3379"]],[8,9,["H8085","(H853)"]],[9,11,["H1697"]],[11,14,["H376"]],[14,16,["H430"]],[16,17,["H834"]],[17,19,["H7121"]],[19,20,["H5921"]],[20,22,["H4196"]],[22,24,["H1008"]],[24,28,["H7971","(H853)"]],[28,30,["H3027"]],[30,31,["H4480","H5921"]],[31,33,["H4196"]],[33,34,["H559"]],[34,36,["H8610"]],[36,41,["H3027"]],[41,42,["H834"]],[42,45,["H7971"]],[45,46,["H5921"]],[46,49,["H3001"]],[49,53,["H3201"]],[53,54,["H3808"]],[54,58,["H7725"]],[58,59,["H413"]],[59,60,[]]]},{"k":9189,"v":[[0,2,["H4196"]],[2,5,["H7167"]],[5,8,["H1880"]],[8,10,["H8210"]],[10,11,["H4480"]],[11,13,["H4196"]],[13,17,["H4159"]],[17,18,["H834"]],[18,20,["H376"]],[20,22,["H430"]],[22,24,["H5414"]],[24,27,["H1697"]],[27,30,["H3068"]]]},{"k":9190,"v":[[0,3,["H4428"]],[3,4,["H6030"]],[4,6,["H559"]],[6,7,["H413"]],[7,9,["H376"]],[9,11,["H430"]],[11,12,["H2470"]],[12,13,["H4994","(H853)"]],[13,15,["H6440"]],[15,18,["H3068"]],[18,20,["H430"]],[20,22,["H6419"]],[22,23,["H1157"]],[23,27,["H3027"]],[27,32,["H7725","H413"]],[32,35,["H376"]],[35,37,["H430"]],[37,38,["H2470","(H853)"]],[38,40,["H6440","H3068"]],[40,43,["H4428"]],[43,44,["H3027"]],[44,48,["H7725","H413"]],[48,50,["H1961"]],[50,54,["H7223"]]]},{"k":9191,"v":[[0,3,["H4428"]],[3,4,["H1696"]],[4,5,["H413"]],[5,7,["H376"]],[7,9,["H430"]],[9,10,["H935"]],[10,11,["H1004"]],[11,12,["H854"]],[12,15,["H5582"]],[15,20,["H5414"]],[20,23,["H4991"]]]},{"k":9192,"v":[[0,3,["H376"]],[3,5,["H430"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H4428"]],[9,10,["H518"]],[10,13,["H5414"]],[13,14,["(H853)"]],[14,15,["H2677"]],[15,17,["H1004"]],[17,20,["H3808"]],[20,22,["H935"]],[22,23,["H5973"]],[23,25,["H3808"]],[25,28,["H398"]],[28,29,["H3899"]],[29,30,["H3808"]],[30,31,["H8354"]],[31,32,["H4325"]],[32,34,["H2088"]],[34,35,["H4725"]]]},{"k":9193,"v":[[0,1,["H3588"]],[1,2,["H3651"]],[2,5,["H6680"]],[5,9,["H1697"]],[9,12,["H3068"]],[12,13,["H559"]],[13,14,["H398"]],[14,15,["H3808"]],[15,16,["H3899"]],[16,17,["H3808"]],[17,18,["H8354"]],[18,19,["H4325"]],[19,20,["H3808"]],[20,22,["H7725"]],[22,26,["H1870"]],[26,27,["H834"]],[27,29,["H1980"]]]},{"k":9194,"v":[[0,3,["H1980"]],[3,4,["H312"]],[4,5,["H1870"]],[5,7,["H7725"]],[7,8,["H3808"]],[8,11,["H1870"]],[11,12,["H834"]],[12,14,["H935"]],[14,15,["H413"]],[15,16,["H1008"]]]},{"k":9195,"v":[[0,3,["H3427"]],[3,5,["H259","H2205"]],[5,6,["H5030"]],[6,8,["H1008"]],[8,11,["H1121"]],[11,12,["H935"]],[12,14,["H5608"]],[14,15,["(H853)"]],[15,16,["H3605"]],[16,18,["H4639"]],[18,19,["H834"]],[19,21,["H376"]],[21,23,["H430"]],[23,25,["H6213"]],[25,27,["H3117"]],[27,29,["H1008","(H853)"]],[29,31,["H1697"]],[31,32,["H834"]],[32,35,["H1696"]],[35,36,["H413"]],[36,38,["H4428"]],[38,41,["H5608"]],[41,45,["H1"]]]},{"k":9196,"v":[[0,3,["H1"]],[3,4,["H1696"]],[4,5,["H413"]],[5,7,["H335","H2088"]],[7,8,["H1870"]],[8,9,["H1980"]],[9,13,["H1121"]],[13,15,["H7200","(H853)"]],[15,16,["H834"]],[16,17,["H1870"]],[17,19,["H376"]],[19,21,["H430"]],[21,22,["H1980"]],[22,23,["H834"]],[23,24,["H935"]],[24,26,["H4480","H3063"]]]},{"k":9197,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,7,["H2280"]],[7,10,["H2543"]],[10,13,["H2280"]],[13,16,["H2543"]],[16,19,["H7392"]],[19,20,["H5921"]]]},{"k":9198,"v":[[0,2,["H1980"]],[2,3,["H310"]],[3,5,["H376"]],[5,7,["H430"]],[7,9,["H4672"]],[9,11,["H3427"]],[11,12,["H8478"]],[12,14,["H424"]],[14,17,["H559"]],[17,18,["H413"]],[18,21,["H859"]],[21,23,["H376"]],[23,25,["H430"]],[25,26,["H834"]],[26,27,["H935"]],[27,28,["H4480"]],[28,29,["H3063"]],[29,32,["H559"]],[32,33,["H589"]],[33,34,[]]]},{"k":9199,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1980"]],[6,7,["H1004"]],[7,8,["H854"]],[8,11,["H398"]],[11,12,["H3899"]]]},{"k":9200,"v":[[0,3,["H559"]],[3,5,["H3201"]],[5,6,["H3808"]],[6,7,["H7725"]],[7,8,["H854"]],[8,12,["H935"]],[12,13,["H854"]],[13,15,["H3808"]],[15,18,["H398"]],[18,19,["H3899"]],[19,20,["H3808"]],[20,21,["H8354"]],[21,22,["H4325"]],[22,23,["H854"]],[23,26,["H2088"]],[26,27,["H4725"]]]},{"k":9201,"v":[[0,1,["H3588"]],[1,4,["H1697"]],[4,5,["H413"]],[5,9,["H1697"]],[9,12,["H3068"]],[12,15,["H398"]],[15,16,["H3808"]],[16,17,["H3899"]],[17,18,["H3808"]],[18,19,["H8354"]],[19,20,["H4325"]],[20,21,["H8033"]],[21,22,["H3808"]],[22,24,["H7725"]],[24,26,["H1980"]],[26,29,["H1870"]],[29,30,["H834"]],[30,32,["H1980"]]]},{"k":9202,"v":[[0,2,["H559"]],[2,5,["H589"]],[5,8,["H5030"]],[8,9,["H1571"]],[9,15,["H4397"]],[15,16,["H1696"]],[16,17,["H413"]],[17,21,["H1697"]],[21,24,["H3068"]],[24,25,["H559"]],[25,28,["H7725"]],[28,29,["H854"]],[29,31,["H413"]],[31,33,["H1004"]],[33,37,["H398"]],[37,38,["H3899"]],[38,40,["H8354"]],[40,41,["H4325"]],[41,44,["H3584"]],[44,46,[]]]},{"k":9203,"v":[[0,4,["H7725"]],[4,5,["H854"]],[5,9,["H398"]],[9,10,["H3899"]],[10,13,["H1004"]],[13,15,["H8354"]],[15,16,["H4325"]]]},{"k":9204,"v":[[0,5,["H1961"]],[5,7,["H1992"]],[7,8,["H3427"]],[8,9,["H413"]],[9,11,["H7979"]],[11,14,["H1697"]],[14,17,["H3068"]],[17,18,["H1961"]],[18,19,["H413"]],[19,21,["H5030"]],[21,22,["H834"]],[22,25,["H7725"]]]},{"k":9205,"v":[[0,3,["H7121"]],[3,4,["H413"]],[4,6,["H376"]],[6,8,["H430"]],[8,9,["H834"]],[9,10,["H935"]],[10,11,["H4480"]],[11,12,["H3063"]],[12,13,["H559"]],[13,14,["H3541"]],[14,15,["H559"]],[15,17,["H3068"]],[17,18,["H3282","H3588"]],[18,22,["H4784"]],[22,24,["H6310"]],[24,27,["H3068"]],[27,30,["H3808"]],[30,31,["H8104","(H853)"]],[31,33,["H4687"]],[33,34,["H834"]],[34,36,["H3068"]],[36,38,["H430"]],[38,39,["H6680"]],[39,40,[]]]},{"k":9206,"v":[[0,3,["H7725"]],[3,6,["H398"]],[6,7,["H3899"]],[7,9,["H8354"]],[9,10,["H4325"]],[10,13,["H4725"]],[13,16,["H834"]],[16,20,["H1696"]],[20,21,["H413"]],[21,23,["H398"]],[23,24,["H408"]],[24,25,["H3899"]],[25,27,["H8354"]],[27,28,["H408"]],[28,29,["H4325"]],[29,31,["H5038"]],[31,33,["H3808"]],[33,34,["H935"]],[34,35,["H413"]],[35,37,["H6913"]],[37,40,["H1"]]]},{"k":9207,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,9,["H398"]],[9,10,["H3899"]],[10,12,["H310"]],[12,15,["H8354"]],[15,18,["H2280"]],[18,22,["H2543"]],[22,27,["H5030"]],[27,28,["H834"]],[28,32,["H7725"]]]},{"k":9208,"v":[[0,5,["H1980"]],[5,7,["H738"]],[7,8,["H4672"]],[8,12,["H1870"]],[12,14,["H4191"]],[14,18,["H5038"]],[18,19,["H1961"]],[19,20,["H7993"]],[20,23,["H1870"]],[23,26,["H2543"]],[26,27,["H5975"]],[27,28,["H681"]],[28,31,["H738"]],[31,33,["H5975"]],[33,34,["H681"]],[34,36,["H5038"]]]},{"k":9209,"v":[[0,2,["H2009"]],[2,3,["H376"]],[3,5,["H5674"]],[5,7,["H7200","(H853)"]],[7,9,["H5038"]],[9,10,["H7993"]],[10,13,["H1870"]],[13,16,["H738"]],[16,17,["H5975"]],[17,18,["H681"]],[18,20,["H5038"]],[20,23,["H935"]],[23,25,["H1696"]],[25,29,["H5892"]],[29,30,["H834"]],[30,32,["H2205"]],[32,33,["H5030"]],[33,34,["H3427"]]]},{"k":9210,"v":[[0,4,["H5030"]],[4,5,["H834"]],[5,8,["H7725"]],[8,9,["H4480"]],[9,11,["H1870"]],[11,12,["H8085"]],[12,15,["H559"]],[15,16,["H1931"]],[16,19,["H376"]],[19,21,["H430"]],[21,22,["H834"]],[22,24,["H4784"]],[24,25,["(H853)"]],[25,27,["H6310"]],[27,30,["H3068"]],[30,33,["H3068"]],[33,35,["H5414"]],[35,39,["H738"]],[39,42,["H7665"]],[42,45,["H4191"]],[45,50,["H1697"]],[50,53,["H3068"]],[53,54,["H834"]],[54,56,["H1696"]],[56,58,[]]]},{"k":9211,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H1121"]],[6,7,["H559"]],[7,8,["H2280"]],[8,9,["(H853)"]],[9,11,["H2543"]],[11,14,["H2280"]],[14,15,[]]]},{"k":9212,"v":[[0,3,["H1980"]],[3,5,["H4672","(H853)"]],[5,7,["H5038"]],[7,8,["H7993"]],[8,11,["H1870"]],[11,14,["H2543"]],[14,17,["H738"]],[17,18,["H5975"]],[18,19,["H681"]],[19,21,["H5038"]],[21,23,["H738"]],[23,25,["H3808"]],[25,26,["H398","(H853)"]],[26,28,["H5038"]],[28,29,["H3808"]],[29,30,["H7665","(H853)"]],[30,32,["H2543"]]]},{"k":9213,"v":[[0,3,["H5030"]],[3,5,["H5375","(H853)"]],[5,7,["H5038"]],[7,10,["H376"]],[10,12,["H430"]],[12,14,["H5117"]],[14,16,["H413"]],[16,18,["H2543"]],[18,22,["H7725"]],[22,25,["H2205"]],[25,26,["H5030"]],[26,27,["H935"]],[27,28,["H413"]],[28,30,["H5892"]],[30,32,["H5594"]],[32,35,["H6912"]],[35,36,[]]]},{"k":9214,"v":[[0,3,["H5117","(H853)"]],[3,5,["H5038"]],[5,9,["H6913"]],[9,12,["H5594"]],[12,13,["H5921"]],[13,16,["H1945"]],[16,18,["H251"]]]},{"k":9215,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,9,["H6912"]],[9,13,["H559"]],[13,14,["H413"]],[14,16,["H1121"]],[16,17,["H559"]],[17,21,["H4191"]],[21,23,["H6912"]],[23,27,["H6913"]],[27,28,["H834"]],[28,30,["H376"]],[30,32,["H430"]],[32,34,["H6912"]],[34,35,["H5117","(H853)"]],[35,37,["H6106"]],[37,38,["H681"]],[38,40,["H6106"]]]},{"k":9216,"v":[[0,1,["H3588"]],[1,3,["H1697"]],[3,4,["H834"]],[4,6,["H7121"]],[6,9,["H1697"]],[9,12,["H3068"]],[12,13,["H5921"]],[13,15,["H4196"]],[15,17,["H1008"]],[17,19,["H5921"]],[19,20,["H3605"]],[20,22,["H1004"]],[22,26,["H1116"]],[26,27,["H834"]],[27,31,["H5892"]],[31,33,["H8111"]],[33,38,["H1961","H1961"]]]},{"k":9217,"v":[[0,1,["H310"]],[1,2,["H2088"]],[2,3,["H1697"]],[3,4,["H3379"]],[4,5,["H7725"]],[5,6,["H3808"]],[6,10,["H4480","H1870","H7451"]],[10,12,["H6213"]],[12,13,["H7725"]],[13,16,["H4480","H7098"]],[16,19,["H5971"]],[19,20,["H3548"]],[20,24,["H1116"]],[24,26,["H2655"]],[26,28,["H4390","(H853)","H3027"]],[28,32,["H1961"]],[32,36,["H3548"]],[36,40,["H1116"]]]},{"k":9218,"v":[[0,2,["H2088"]],[2,3,["H1697"]],[3,4,["H1961"]],[4,5,["H2403"]],[5,8,["H1004"]],[8,10,["H3379"]],[10,15,["H3582"]],[15,18,["H8045"]],[18,21,["H4480","H5921"]],[21,23,["H6440"]],[23,26,["H127"]]]},{"k":9219,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,4,["H29"]],[4,6,["H1121"]],[6,8,["H3379"]],[8,10,["H2470"]]]},{"k":9220,"v":[[0,2,["H3379"]],[2,3,["H559"]],[3,6,["H802"]],[6,7,["H6965"]],[7,10,["H4994"]],[10,13,["H8138"]],[13,14,["H3588"]],[14,15,["H859"]],[15,17,["H3808"]],[17,18,["H3045"]],[18,22,["H802"]],[22,24,["H3379"]],[24,26,["H1980"]],[26,29,["H7887"]],[29,30,["H2009"]],[30,31,["H8033"]],[31,33,["H281"]],[33,35,["H5030"]],[35,36,["H1931"]],[36,37,["H1696","H5921"]],[37,43,["H4428"]],[43,44,["H5921"]],[44,45,["H2088"]],[45,46,["H5971"]]]},{"k":9221,"v":[[0,2,["H3947"]],[2,3,["H3027"]],[3,5,["H6235"]],[5,6,["H3899"]],[6,8,["H5350"]],[8,11,["H1228"]],[11,13,["H1706"]],[13,15,["H935"]],[15,16,["H413"]],[16,18,["H1931"]],[18,20,["H5046"]],[20,22,["H4100"]],[22,24,["H1961"]],[24,27,["H5288"]]]},{"k":9222,"v":[[0,2,["H3379"]],[2,3,["H802"]],[3,4,["H6213"]],[4,5,["H3651"]],[5,7,["H6965"]],[7,9,["H1980"]],[9,11,["H7887"]],[11,13,["H935"]],[13,16,["H1004"]],[16,18,["H281"]],[18,20,["H281"]],[20,21,["H3201"]],[21,22,["H3808"]],[22,23,["H7200"]],[23,24,["H3588"]],[24,26,["H5869"]],[26,28,["H6965"]],[28,33,["H4480","H7869"]]]},{"k":9223,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H281"]],[6,7,["H2009"]],[7,9,["H802"]],[9,11,["H3379"]],[11,12,["H935"]],[12,14,["H1875"]],[14,16,["H1697"]],[16,17,["H4480","H5973"]],[17,19,["H413"]],[19,21,["H1121"]],[21,22,["H3588"]],[22,23,["H1931"]],[23,25,["H2470"]],[25,26,["H2090"]],[26,28,["H2088"]],[28,31,["H1696"]],[31,32,["H413"]],[32,37,["H1961"]],[37,41,["H935"]],[41,43,["H1931"]],[43,49,["H5234"]],[49,50,["H5234"]]]},{"k":9224,"v":[[0,3,["H1961"]],[3,6,["H281"]],[6,7,["H8085","(H853)"]],[7,9,["H6963"]],[9,12,["H7272"]],[12,16,["H935"]],[16,19,["H6607"]],[19,22,["H559"]],[22,24,["H935"]],[24,26,["H802"]],[26,28,["H3379"]],[28,29,["H4100","H2088"]],[29,35,["H5234","H859"]],[35,37,["H595"]],[37,39,["H7971"]],[39,40,["H413"]],[40,43,["H7186"]],[43,44,[]]]},{"k":9225,"v":[[0,1,["H1980"]],[1,2,["H559"]],[2,3,["H3379"]],[3,4,["H3541"]],[4,5,["H559"]],[5,7,["H3068"]],[7,8,["H430"]],[8,10,["H3478"]],[10,11,["H3282","H834"]],[11,14,["H7311"]],[14,17,["H4480","H8432"]],[17,19,["H5971"]],[19,21,["H5414"]],[21,23,["H5057"]],[23,24,["H5921"]],[24,26,["H5971"]],[26,27,["H3478"]]]},{"k":9226,"v":[[0,2,["H7167","(H853)"]],[2,4,["H4467"]],[4,8,["H4480","H1004"]],[8,10,["H1732"]],[10,12,["H5414"]],[12,19,["H3808"]],[19,20,["H1961"]],[20,23,["H5650"]],[23,24,["H1732"]],[24,25,["H834"]],[25,26,["H8104"]],[26,28,["H4687"]],[28,30,["H834"]],[30,31,["H1980","H310"]],[31,34,["H3605"]],[34,36,["H3824"]],[36,38,["H6213"]],[38,40,["H7535"]],[40,43,["H3477"]],[43,46,["H5869"]]]},{"k":9227,"v":[[0,3,["H6213"]],[3,4,["H7489"]],[4,6,["H4480","H3605"]],[6,7,["H834"]],[7,8,["H1961"]],[8,9,["H6440"]],[9,14,["H1980"]],[14,16,["H6213"]],[16,18,["H312"]],[18,19,["H430"]],[19,22,["H4541"]],[22,27,["H3707"]],[27,30,["H7993"]],[30,32,["H310"]],[32,34,["H1458"]]]},{"k":9228,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,5,["H935"]],[5,6,["H7451"]],[6,7,["H413"]],[7,9,["H1004"]],[9,11,["H3379"]],[11,15,["H3772"]],[15,17,["H3379"]],[17,20,["H8366"]],[20,23,["H7023"]],[23,29,["H6113"]],[29,31,["H5800"]],[31,33,["H3478"]],[33,37,["H1197"]],[37,39,["H310"]],[39,42,["H1004"]],[42,44,["H3379"]],[44,45,["H834"]],[45,49,["H1197"]],[49,50,["H1557"]],[50,51,["H5704"]],[51,55,["H8552"]]]},{"k":9229,"v":[[0,3,["H4191"]],[3,5,["H3379"]],[5,8,["H5892"]],[8,11,["H3611"]],[11,12,["H398"]],[12,16,["H4191"]],[16,19,["H7704"]],[19,22,["H5775"]],[22,25,["H8064"]],[25,26,["H398"]],[26,27,["H3588"]],[27,29,["H3068"]],[29,31,["H1696"]],[31,32,[]]]},{"k":9230,"v":[[0,1,["H6965"]],[1,2,["H859"]],[2,4,["H1980"]],[4,9,["H1004"]],[9,13,["H7272"]],[13,14,["H935"]],[14,17,["H5892"]],[17,19,["H3206"]],[19,21,["H4191"]]]},{"k":9231,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,5,["H5594"]],[5,9,["H6912"]],[9,11,["H3588","H2088"]],[11,13,["H905"]],[13,15,["H3379"]],[15,17,["H935"]],[17,18,["H413"]],[18,20,["H6913"]],[20,21,["H3282"]],[21,26,["H4672"]],[26,28,["H2896"]],[28,29,["H1697"]],[29,30,["H413"]],[30,32,["H3068"]],[32,33,["H430"]],[33,35,["H3478"]],[35,38,["H1004"]],[38,40,["H3379"]]]},{"k":9232,"v":[[0,3,["H3068"]],[3,7,["H6965"]],[7,9,["H4428"]],[9,10,["H5921"]],[10,11,["H3478"]],[11,12,["H834"]],[12,15,["H3772","(H853)"]],[15,17,["H1004"]],[17,19,["H3379"]],[19,20,["H2088"]],[20,21,["H3117"]],[21,23,["H4100"]],[23,24,["H1571"]],[24,25,["H6258"]]]},{"k":9233,"v":[[0,3,["H3068"]],[3,5,["H5221","(H853)"]],[5,6,["H3478"]],[6,7,["H834"]],[7,9,["H7070"]],[9,11,["H5110"]],[11,14,["H4325"]],[14,19,["H5428","(H853)"]],[19,20,["H3478"]],[20,22,["H4480","H5921"]],[22,23,["H2063"]],[23,24,["H2896"]],[24,25,["H127"]],[25,26,["H834"]],[26,28,["H5414"]],[28,31,["H1"]],[31,34,["H2219"]],[34,36,["H4480","H5676"]],[36,38,["H5104"]],[38,39,["H3282","H834"]],[39,42,["H6213","(H853)"]],[42,44,["H842"]],[44,49,["H3707","(H853)","H3068"]]]},{"k":9234,"v":[[0,6,["H5414","(H853)","H3478"]],[6,7,["H1558"]],[7,10,["H2403"]],[10,12,["H3379"]],[12,13,["H834"]],[13,15,["H2398"]],[15,17,["H834"]],[17,21,["H2398","(H853)","H3478"]]]},{"k":9235,"v":[[0,2,["H3379"]],[2,3,["H802"]],[3,4,["H6965"]],[4,6,["H1980"]],[6,8,["H935"]],[8,10,["H8656"]],[10,13,["H1931"]],[13,14,["H935"]],[14,17,["H5592"]],[17,20,["H1004"]],[20,22,["H5288"]],[22,23,["H4191"]]]},{"k":9236,"v":[[0,3,["H6912"]],[3,6,["H3605"]],[6,7,["H3478"]],[7,8,["H5594"]],[8,14,["H1697"]],[14,17,["H3068"]],[17,18,["H834"]],[18,20,["H1696"]],[20,23,["H3027"]],[23,26,["H5650"]],[26,27,["H281"]],[27,29,["H5030"]]]},{"k":9237,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3379"]],[8,9,["H834"]],[9,11,["H3898"]],[11,13,["H834"]],[13,15,["H4427"]],[15,16,["H2009"]],[16,19,["H3789"]],[19,20,["H5921"]],[20,22,["H5612"]],[22,25,["H1697","H3117"]],[25,28,["H4428"]],[28,30,["H3478"]]]},{"k":9238,"v":[[0,3,["H3117"]],[3,4,["H834"]],[4,5,["H3379"]],[5,6,["H4427"]],[6,8,["H8147"]],[8,10,["H6242"]],[10,11,["H8141"]],[11,14,["H7901"]],[14,15,["H5973"]],[15,17,["H1"]],[17,19,["H5070"]],[19,21,["H1121"]],[21,22,["H4427"]],[22,25,["H8478"]]]},{"k":9239,"v":[[0,2,["H7346"]],[2,4,["H1121"]],[4,6,["H8010"]],[6,7,["H4427"]],[7,9,["H3063"]],[9,10,["H7346"]],[10,12,["H705"]],[12,14,["H259"]],[14,15,["H8141"]],[15,16,["H1121"]],[16,21,["H4427"]],[21,24,["H4427"]],[24,25,["H7651","H6240"]],[25,26,["H8141"]],[26,28,["H3389"]],[28,30,["H5892"]],[30,31,["H834"]],[31,33,["H3068"]],[33,35,["H977"]],[35,38,["H4480","H3605"]],[38,40,["H7626"]],[40,42,["H3478"]],[42,44,["H7760","(H853)"]],[44,46,["H8034"]],[46,47,["H8033"]],[47,50,["H517"]],[50,51,["H8034"]],[51,53,["H5279"]],[53,55,["H5984"]]]},{"k":9240,"v":[[0,2,["H3063"]],[2,3,["H6213"]],[3,4,["H7451"]],[4,7,["H5869"]],[7,10,["H3068"]],[10,16,["H7065","(H853)"]],[16,19,["H2403"]],[19,20,["H834"]],[20,23,["H2398"]],[23,25,["H4480","H3605"]],[25,26,["H834"]],[26,28,["H1"]],[28,30,["H6213"]]]},{"k":9241,"v":[[0,2,["H1992"]],[2,3,["H1571"]],[3,4,["H1129"]],[4,7,["H1116"]],[7,9,["H4676"]],[9,11,["H842"]],[11,12,["H5921"]],[12,13,["H3605"]],[13,14,["H1364"]],[14,15,["H1389"]],[15,17,["H8478"]],[17,18,["H3605"]],[18,19,["H7488"]],[19,20,["H6086"]]]},{"k":9242,"v":[[0,3,["H1961"]],[3,4,["H1571"]],[4,5,["H6945"]],[5,8,["H776"]],[8,11,["H6213"]],[11,14,["H3605"]],[14,16,["H8441"]],[16,19,["H1471"]],[19,20,["H834"]],[20,22,["H3068"]],[22,24,["H3423"]],[24,25,["H4480","H6440"]],[25,27,["H1121"]],[27,29,["H3478"]]]},{"k":9243,"v":[[0,5,["H1961"]],[5,8,["H2549"]],[8,9,["H8141"]],[9,11,["H4428"]],[11,12,["H7346"]],[12,14,["H7895"]],[14,15,["H4428"]],[15,17,["H4714"]],[17,19,["H5927"]],[19,20,["H5921"]],[20,21,["H3389"]]]},{"k":9244,"v":[[0,4,["H3947","(H853)"]],[4,6,["H214"]],[6,9,["H1004"]],[9,12,["H3068"]],[12,15,["H214"]],[15,18,["H4428"]],[18,19,["H1004"]],[19,23,["H3947"]],[23,24,["H3605"]],[24,28,["H3947","(H853)"]],[28,29,["H3605"]],[29,31,["H4043"]],[31,33,["H2091"]],[33,34,["H834"]],[34,35,["H8010"]],[35,37,["H6213"]]]},{"k":9245,"v":[[0,2,["H4428"]],[2,3,["H7346"]],[3,4,["H6213"]],[4,7,["H8478"]],[7,8,["H5178"]],[8,9,["H4043"]],[9,11,["H6485"]],[11,13,["H5921"]],[13,15,["H3027"]],[15,18,["H8269"]],[18,21,["H7323"]],[21,23,["H8104"]],[23,25,["H6607"]],[25,28,["H4428"]],[28,29,["H1004"]]]},{"k":9246,"v":[[0,3,["H1961"]],[3,5,["H4480","H1767"]],[5,7,["H4428"]],[7,8,["H935"]],[8,11,["H1004"]],[11,14,["H3068"]],[14,17,["H7323"]],[17,18,["H5375"]],[18,23,["H7725"]],[23,24,["H413"]],[24,26,["H7323"]],[26,27,["H8372"]]]},{"k":9247,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H7346"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3063"]]]},{"k":9248,"v":[[0,3,["H1961"]],[3,4,["H4421"]],[4,5,["H996"]],[5,6,["H7346"]],[6,8,["H3379"]],[8,9,["H3605"]],[9,11,["H3117"]]]},{"k":9249,"v":[[0,2,["H7346"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,10,["H5973"]],[10,12,["H1"]],[12,15,["H5892"]],[15,17,["H1732"]],[17,20,["H517"]],[20,21,["H8034"]],[21,23,["H5279"]],[23,25,["H5984"]],[25,27,["H38"]],[27,29,["H1121"]],[29,30,["H4427"]],[30,33,["H8478"]]]},{"k":9250,"v":[[0,4,["H8083","H6240"]],[4,5,["H8141"]],[5,7,["H4428"]],[7,8,["H3379"]],[8,10,["H1121"]],[10,12,["H5028"]],[12,13,["H4427"]],[13,14,["H38"]],[14,15,["H5921"]],[15,16,["H3063"]]]},{"k":9251,"v":[[0,1,["H7969"]],[1,2,["H8141"]],[2,3,["H4427"]],[3,6,["H3389"]],[6,9,["H517"]],[9,10,["H8034"]],[10,12,["H4601"]],[12,14,["H1323"]],[14,16,["H53"]]]},{"k":9252,"v":[[0,3,["H1980"]],[3,5,["H3605"]],[5,7,["H2403"]],[7,10,["H1"]],[10,11,["H834"]],[11,14,["H6213"]],[14,15,["H6440"]],[15,19,["H3824"]],[19,20,["H1961"]],[20,21,["H3808"]],[21,22,["H8003"]],[22,23,["H5973"]],[23,25,["H3068"]],[25,27,["H430"]],[27,30,["H3824"]],[30,32,["H1732"]],[32,34,["H1"]]]},{"k":9253,"v":[[0,1,["H3588"]],[1,4,["H4616","H1732"]],[4,7,["H3068"]],[7,9,["H430"]],[9,10,["H5414"]],[10,13,["H5216"]],[13,15,["H3389"]],[15,18,["H6965","(H853)"]],[18,20,["H1121"]],[20,21,["H310"]],[21,25,["H5975","(H853)"]],[25,26,["H3389"]]]},{"k":9254,"v":[[0,1,["H834"]],[1,2,["H1732"]],[2,3,["H6213"]],[3,6,["(H853)"]],[6,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,17,["H3808","H5493"]],[17,19,["H4480","H3605"]],[19,21,["H834"]],[21,23,["H6680"]],[23,25,["H3605"]],[25,27,["H3117"]],[27,30,["H2416"]],[30,32,["H7535"]],[32,35,["H1697"]],[35,37,["H223"]],[37,39,["H2850"]]]},{"k":9255,"v":[[0,3,["H1961"]],[3,4,["H4421"]],[4,5,["H996"]],[5,6,["H7346"]],[6,8,["H3379"]],[8,9,["H3605"]],[9,11,["H3117"]],[11,14,["H2416"]]]},{"k":9256,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H38"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3063"]],[28,31,["H1961"]],[31,32,["H4421"]],[32,33,["H996"]],[33,34,["H38"]],[34,36,["H3379"]]]},{"k":9257,"v":[[0,2,["H38"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,13,["H5892"]],[13,15,["H1732"]],[15,17,["H609"]],[17,19,["H1121"]],[19,20,["H4427"]],[20,23,["H8478"]]]},{"k":9258,"v":[[0,4,["H6242"]],[4,5,["H8141"]],[5,7,["H3379"]],[7,8,["H4428"]],[8,10,["H3478"]],[10,11,["H4427","H4428"]],[11,12,["H609"]],[12,14,["H3063"]]]},{"k":9259,"v":[[0,2,["H705"]],[2,4,["H259"]],[4,5,["H8141"]],[5,6,["H4427"]],[6,9,["H3389"]],[9,12,["H517"]],[12,13,["H8034"]],[13,15,["H4601"]],[15,17,["H1323"]],[17,19,["H53"]]]},{"k":9260,"v":[[0,2,["H609"]],[2,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H1732"]],[16,18,["H1"]]]},{"k":9261,"v":[[0,4,["H5674"]],[4,6,["H6945"]],[6,8,["H4480"]],[8,10,["H776"]],[10,12,["H5493","(H853)"]],[12,13,["H3605"]],[13,15,["H1544"]],[15,16,["H834"]],[16,18,["H1"]],[18,20,["H6213"]]]},{"k":9262,"v":[[0,2,["H1571","(H853)"]],[2,3,["H4601"]],[3,5,["H517"]],[5,9,["H5493"]],[9,12,["H4480","H1377"]],[12,13,["H834"]],[13,16,["H6213"]],[16,18,["H4656"]],[18,21,["H842"]],[21,23,["H609"]],[23,24,["H3772","(H853)"]],[24,26,["H4656"]],[26,28,["H8313"]],[28,32,["H5158"]],[32,33,["H6939"]]]},{"k":9263,"v":[[0,4,["H1116"]],[4,6,["H3808"]],[6,7,["H5493"]],[7,8,["H7535"]],[8,9,["H609"]],[9,10,["H3824"]],[10,11,["H1961"]],[11,12,["H8003"]],[12,13,["H5973"]],[13,15,["H3068"]],[15,16,["H3605"]],[16,18,["H3117"]]]},{"k":9264,"v":[[0,4,["H935","(H853)"]],[4,9,["H1"]],[9,11,["H6944"]],[11,18,["H6944"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,25,["H3701"]],[25,27,["H2091"]],[27,29,["H3627"]]]},{"k":9265,"v":[[0,3,["H1961"]],[3,4,["H4421"]],[4,5,["H996"]],[5,6,["H609"]],[6,8,["H1201"]],[8,9,["H4428"]],[9,11,["H3478"]],[11,12,["H3605"]],[12,14,["H3117"]]]},{"k":9266,"v":[[0,2,["H1201"]],[2,3,["H4428"]],[3,5,["H3478"]],[5,7,["H5927"]],[7,8,["H5921"]],[8,9,["H3063"]],[9,11,["H1129","(H853)"]],[11,12,["H7414"]],[12,16,["H1115"]],[16,17,["H5414"]],[17,21,["H3318"]],[21,24,["H935"]],[24,26,["H609"]],[26,27,["H4428"]],[27,29,["H3063"]]]},{"k":9267,"v":[[0,2,["H609"]],[2,3,["H3947","(H853)"]],[3,4,["H3605"]],[4,6,["H3701"]],[6,9,["H2091"]],[9,12,["H3498"]],[12,15,["H214"]],[15,18,["H1004"]],[18,21,["H3068"]],[21,24,["H214"]],[24,27,["H4428"]],[27,28,["H1004"]],[28,30,["H5414"]],[30,34,["H3027"]],[34,37,["H5650"]],[37,39,["H4428"]],[39,40,["H609"]],[40,41,["H7971"]],[41,43,["H413"]],[43,44,["H1130"]],[44,46,["H1121"]],[46,48,["H2886"]],[48,50,["H1121"]],[50,52,["H2383"]],[52,53,["H4428"]],[53,55,["H758"]],[55,57,["H3427"]],[57,59,["H1834"]],[59,60,["H559"]]]},{"k":9268,"v":[[0,4,["H1285"]],[4,5,["H996"]],[5,10,["H996"]],[10,12,["H1"]],[12,15,["H1"]],[15,16,["H2009"]],[16,19,["H7971"]],[19,23,["H7810"]],[23,25,["H3701"]],[25,27,["H2091"]],[27,28,["H1980"]],[28,30,["H6565","(H853)"]],[30,32,["H1285"]],[32,33,["H854"]],[33,34,["H1201"]],[34,35,["H4428"]],[35,37,["H3478"]],[37,41,["H5927"]],[41,42,["H4480","H5921"]],[42,43,[]]]},{"k":9269,"v":[[0,2,["H1130"]],[2,3,["H8085"]],[3,4,["H413"]],[4,5,["H4428"]],[5,6,["H609"]],[6,8,["H7971","(H853)"]],[8,10,["H8269"]],[10,13,["H2428"]],[13,14,["H834"]],[14,17,["H5921"]],[17,19,["H5892"]],[19,21,["H3478"]],[21,23,["H5221","(H853)"]],[23,24,["H5859"]],[24,26,["H1835"]],[26,28,["H62"]],[28,30,["H3605"]],[30,31,["H3672"]],[31,32,["H5921"]],[32,33,["H3605"]],[33,35,["H776"]],[35,37,["H5321"]]]},{"k":9270,"v":[[0,5,["H1961"]],[5,7,["H1201"]],[7,8,["H8085"]],[8,13,["H2308"]],[13,14,["H4480","H1129"]],[14,15,["(H853)"]],[15,16,["H7414"]],[16,18,["H3427"]],[18,20,["H8656"]]]},{"k":9271,"v":[[0,2,["H4428"]],[2,3,["H609"]],[3,6,["H8085"]],[6,7,["(H853)"]],[7,8,["H3605"]],[8,9,["H3063"]],[9,10,["H369"]],[10,12,["H5355"]],[12,16,["H5375","(H853)"]],[16,18,["H68"]],[18,20,["H7414"]],[20,23,["H6086"]],[23,25,["H834"]],[25,26,["H1201"]],[26,28,["H1129"]],[28,30,["H4428"]],[30,31,["H609"]],[31,32,["H1129"]],[32,34,["(H853)"]],[34,35,["H1387"]],[35,37,["H1144"]],[37,39,["H4709"]]]},{"k":9272,"v":[[0,2,["H3499"]],[2,4,["H3605"]],[4,6,["H1697"]],[6,8,["H609"]],[8,10,["H3605"]],[10,12,["H1369"]],[12,14,["H3605"]],[14,15,["H834"]],[15,17,["H6213"]],[17,20,["H5892"]],[20,21,["H834"]],[21,23,["H1129"]],[23,25,["H1992"]],[25,26,["H3808"]],[26,27,["H3789"]],[27,28,["H5921"]],[28,30,["H5612"]],[30,33,["H1697","H3117"]],[33,36,["H4428"]],[36,38,["H3063"]],[38,39,["H7535"]],[39,42,["H6256"]],[42,46,["H2209"]],[46,49,["H2470"]],[49,50,["(H853)"]],[50,52,["H7272"]]]},{"k":9273,"v":[[0,2,["H609"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,10,["H5973"]],[10,12,["H1"]],[12,15,["H5892"]],[15,17,["H1732"]],[17,19,["H1"]],[19,21,["H3092"]],[21,23,["H1121"]],[23,24,["H4427"]],[24,27,["H8478"]]]},{"k":9274,"v":[[0,2,["H5070"]],[2,4,["H1121"]],[4,6,["H3379"]],[6,9,["H4427"]],[9,10,["H5921"]],[10,11,["H3478"]],[11,14,["H8147"]],[14,15,["H8141"]],[15,17,["H609"]],[17,18,["H4428"]],[18,20,["H3063"]],[20,22,["H4427"]],[22,23,["H5921"]],[23,24,["H3478"]],[24,26,["H8141"]]]},{"k":9275,"v":[[0,3,["H6213"]],[3,4,["H7451"]],[4,7,["H5869"]],[7,10,["H3068"]],[10,12,["H1980"]],[12,15,["H1870"]],[15,18,["H1"]],[18,22,["H2403"]],[22,23,["H834"]],[23,28,["H2398","(H853)","H3478"]]]},{"k":9276,"v":[[0,2,["H1201"]],[2,4,["H1121"]],[4,6,["H281"]],[6,9,["H1004"]],[9,11,["H3485"]],[11,12,["H7194"]],[12,13,["H5921"]],[13,16,["H1201"]],[16,17,["H5221"]],[17,20,["H1405"]],[20,21,["H834"]],[21,25,["H6430"]],[25,27,["H5070"]],[27,29,["H3605"]],[29,30,["H3478"]],[30,32,["H6696"]],[32,33,["H5921"]],[33,34,["H1405"]]]},{"k":9277,"v":[[0,4,["H7969"]],[4,5,["H8141"]],[5,7,["H609"]],[7,8,["H4428"]],[8,10,["H3063"]],[10,12,["H1201"]],[12,13,["H4191"]],[13,16,["H4427"]],[16,19,["H8478"]]]},{"k":9278,"v":[[0,5,["H1961"]],[5,8,["H4427"]],[8,11,["H5221","(H853)"]],[11,12,["H3605"]],[12,14,["H1004"]],[14,16,["H3379"]],[16,18,["H7604"]],[18,19,["H3808"]],[19,21,["H3379"]],[21,22,["H3605"]],[22,24,["H5397"]],[24,25,["H5704"]],[25,28,["H8045"]],[28,33,["H1697"]],[33,36,["H3068"]],[36,37,["H834"]],[37,39,["H1696"]],[39,40,["H3027"]],[40,42,["H5650"]],[42,43,["H281"]],[43,45,["H7888"]]]},{"k":9279,"v":[[0,1,["H5921"]],[1,4,["H2403"]],[4,6,["H3379"]],[6,7,["H834"]],[7,9,["H2398"]],[9,11,["H834"]],[11,15,["H2398","(H853)","H3478"]],[15,18,["H3708"]],[18,19,["H834"]],[19,21,["H3707","(H853)"]],[21,23,["H3068"]],[23,24,["H430"]],[24,26,["H3478"]],[26,28,[]]]},{"k":9280,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H5070"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3478"]]]},{"k":9281,"v":[[0,3,["H1961"]],[3,4,["H4421"]],[4,5,["H996"]],[5,6,["H609"]],[6,8,["H1201"]],[8,9,["H4428"]],[9,11,["H3478"]],[11,12,["H3605"]],[12,14,["H3117"]]]},{"k":9282,"v":[[0,3,["H7969"]],[3,4,["H8141"]],[4,6,["H609"]],[6,7,["H4428"]],[7,9,["H3063"]],[9,11,["H1201"]],[11,13,["H1121"]],[13,15,["H281"]],[15,17,["H4427"]],[17,18,["H5921"]],[18,19,["H3605"]],[19,20,["H3478"]],[20,22,["H8656"]],[22,23,["H6242"]],[23,25,["H702"]],[25,26,["H8141"]]]},{"k":9283,"v":[[0,3,["H6213"]],[3,4,["H7451"]],[4,7,["H5869"]],[7,10,["H3068"]],[10,12,["H1980"]],[12,15,["H1870"]],[15,17,["H3379"]],[17,21,["H2403"]],[21,22,["H834"]],[22,27,["H2398","(H853)","H3478"]]]},{"k":9284,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3058"]],[9,11,["H1121"]],[11,13,["H2607"]],[13,14,["H5921"]],[14,15,["H1201"]],[15,16,["H559"]]]},{"k":9285,"v":[[0,1,["H3282","H834"]],[1,4,["H7311"]],[4,7,["H4480"]],[7,9,["H6083"]],[9,11,["H5414"]],[11,13,["H5057"]],[13,14,["H5921"]],[14,16,["H5971"]],[16,17,["H3478"]],[17,21,["H1980"]],[21,24,["H1870"]],[24,26,["H3379"]],[26,29,["(H853)"]],[29,31,["H5971"]],[31,32,["H3478"]],[32,34,["H2398"]],[34,39,["H3707"]],[39,42,["H2403"]]]},{"k":9286,"v":[[0,1,["H2009"]],[1,5,["H1197"]],[5,7,["H310"]],[7,9,["H1201"]],[9,12,["H310"]],[12,15,["H1004"]],[15,18,["H5414","(H853)"]],[18,20,["H1004"]],[20,23,["H1004"]],[23,25,["H3379"]],[25,27,["H1121"]],[27,29,["H5028"]]]},{"k":9287,"v":[[0,3,["H4191"]],[3,5,["H1201"]],[5,8,["H5892"]],[8,11,["H3611"]],[11,12,["H398"]],[12,16,["H4191"]],[16,21,["H7704"]],[21,24,["H5775"]],[24,27,["H8064"]],[27,28,["H398"]]]},{"k":9288,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H1201"]],[8,10,["H834"]],[10,12,["H6213"]],[12,15,["H1369"]],[15,17,["H1992"]],[17,18,["H3808"]],[18,19,["H3789"]],[19,20,["H5921"]],[20,22,["H5612"]],[22,25,["H1697","H3117"]],[25,28,["H4428"]],[28,30,["H3478"]]]},{"k":9289,"v":[[0,2,["H1201"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,11,["H8656"]],[11,13,["H425"]],[13,15,["H1121"]],[15,16,["H4427"]],[16,19,["H8478"]]]},{"k":9290,"v":[[0,2,["H1571"]],[2,5,["H3027"]],[5,8,["H5030"]],[8,9,["H3058"]],[9,11,["H1121"]],[11,13,["H2607"]],[13,14,["H1961"]],[14,16,["H1697"]],[16,19,["H3068"]],[19,20,["H413"]],[20,21,["H1201"]],[21,23,["H413"]],[23,25,["H1004"]],[25,27,["H5921"]],[27,28,["H3605"]],[28,30,["H7451"]],[30,31,["H834"]],[31,33,["H6213"]],[33,36,["H5869"]],[36,39,["H3068"]],[39,44,["H3707"]],[44,47,["H4639"]],[47,50,["H3027"]],[50,52,["H1961"]],[52,55,["H1004"]],[55,57,["H3379"]],[57,59,["H5921","H834"]],[59,61,["H5221"]],[61,62,[]]]},{"k":9291,"v":[[0,3,["H6242"]],[3,5,["H8337"]],[5,6,["H8141"]],[6,8,["H609"]],[8,9,["H4428"]],[9,11,["H3063"]],[11,13,["H425"]],[13,15,["H1121"]],[15,17,["H1201"]],[17,19,["H4427"]],[19,20,["H5921"]],[20,21,["H3478"]],[21,23,["H8656"]],[23,25,["H8141"]]]},{"k":9292,"v":[[0,3,["H5650"]],[3,4,["H2174"]],[4,5,["H8269"]],[5,7,["H4276"]],[7,9,["H7393"]],[9,10,["H7194"]],[10,11,["H5921"]],[11,14,["H1931"]],[14,17,["H8656"]],[17,18,["H8354"]],[18,20,["H7910"]],[20,23,["H1004"]],[23,25,["H777"]],[25,26,["H5921"]],[26,29,["H1004"]],[29,31,["H8656"]]]},{"k":9293,"v":[[0,2,["H2174"]],[2,4,["H935"]],[4,6,["H5221"]],[6,9,["H4191"]],[9,13,["H6242"]],[13,15,["H7651"]],[15,16,["H8141"]],[16,18,["H609"]],[18,19,["H4428"]],[19,21,["H3063"]],[21,23,["H4427"]],[23,26,["H8478"]]]},{"k":9294,"v":[[0,5,["H1961"]],[5,10,["H4427"]],[10,15,["H3427"]],[15,16,["H5921"]],[16,18,["H3678"]],[18,21,["H5221","(H853)"]],[21,22,["H3605"]],[22,24,["H1004"]],[24,26,["H1201"]],[26,28,["H7604"]],[28,30,["H3808"]],[30,33,["H8366"]],[33,36,["H7023"]],[36,40,["H1350"]],[40,44,["H7453"]]]},{"k":9295,"v":[[0,3,["H2174"]],[3,4,["H8045","(H853)"]],[4,5,["H3605"]],[5,7,["H1004"]],[7,9,["H1201"]],[9,13,["H1697"]],[13,16,["H3068"]],[16,17,["H834"]],[17,19,["H1696"]],[19,20,["H413"]],[20,21,["H1201"]],[21,22,["H3027"]],[22,23,["H3058"]],[23,25,["H5030"]]]},{"k":9296,"v":[[0,1,["H413"]],[1,2,["H3605"]],[2,4,["H2403"]],[4,6,["H1201"]],[6,9,["H2403"]],[9,11,["H425"]],[11,13,["H1121"]],[13,15,["H834"]],[15,17,["H2398"]],[17,20,["H834"]],[20,25,["H2398","(H853)","H3478"]],[25,27,["H3707","(H853)"]],[27,29,["H3068"]],[29,30,["H430"]],[30,32,["H3478"]],[32,37,["H1892"]]]},{"k":9297,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H425"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3478"]]]},{"k":9298,"v":[[0,3,["H6242"]],[3,5,["H7651"]],[5,6,["H8141"]],[6,8,["H609"]],[8,9,["H4428"]],[9,11,["H3063"]],[11,13,["H2174"]],[13,14,["H4427"]],[14,15,["H7651"]],[15,16,["H3117"]],[16,18,["H8656"]],[18,21,["H5971"]],[21,23,["H2583"]],[23,24,["H5921"]],[24,25,["H1405"]],[25,26,["H834"]],[26,30,["H6430"]]]},{"k":9299,"v":[[0,3,["H5971"]],[3,6,["H2583"]],[6,7,["H8085"]],[7,8,["H559"]],[8,9,["H2174"]],[9,11,["H7194"]],[11,14,["H1571"]],[14,15,["H5221","(H853)"]],[15,17,["H4428"]],[17,19,["H3605"]],[19,20,["H3478"]],[20,21,["(H853)"]],[21,22,["H6018"]],[22,24,["H8269"]],[24,27,["H6635"]],[27,28,["H4427"]],[28,29,["H5921"]],[29,30,["H3478"]],[30,31,["H1931"]],[31,32,["H3117"]],[32,35,["H4264"]]]},{"k":9300,"v":[[0,2,["H6018"]],[2,4,["H5927"]],[4,5,["H4480"]],[5,6,["H1405"]],[6,8,["H3605"]],[8,9,["H3478"]],[9,10,["H5973"]],[10,14,["H6696","H5921"]],[14,15,["H8656"]]]},{"k":9301,"v":[[0,5,["H1961"]],[5,7,["H2174"]],[7,8,["H7200"]],[8,9,["H3588"]],[9,11,["H5892"]],[11,13,["H3920"]],[13,16,["H935"]],[16,17,["H413"]],[17,19,["H759"]],[19,22,["H4428"]],[22,23,["H1004"]],[23,25,["H8313","(H853)"]],[25,27,["H4428"]],[27,28,["H1004"]],[28,29,["H5921"]],[29,32,["H784"]],[32,34,["H4191"]]]},{"k":9302,"v":[[0,1,["H5921"]],[1,3,["H2403"]],[3,4,["H834"]],[4,6,["H2398"]],[6,8,["H6213"]],[8,9,["H7451"]],[9,12,["H5869"]],[12,15,["H3068"]],[15,17,["H1980"]],[17,20,["H1870"]],[20,22,["H3379"]],[22,26,["H2403"]],[26,27,["H834"]],[27,29,["H6213"]],[29,34,["H2398","(H853)","H3478"]]]},{"k":9303,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H2174"]],[8,11,["H7195"]],[11,12,["H834"]],[12,14,["H7194"]],[14,16,["H1992"]],[16,17,["H3808"]],[17,18,["H3789"]],[18,19,["H5921"]],[19,21,["H5612"]],[21,24,["H1697","H3117"]],[24,27,["H4428"]],[27,29,["H3478"]]]},{"k":9304,"v":[[0,1,["H227"]],[1,4,["H5971"]],[4,6,["H3478"]],[6,7,["H2505"]],[7,10,["H2677"]],[10,11,["H2677"]],[11,14,["H5971"]],[14,15,["H1961","H310"]],[15,16,["H8402"]],[16,18,["H1121"]],[18,20,["H1527"]],[20,24,["H4427"]],[24,26,["H2677"]],[26,27,["H310"]],[27,28,["H6018"]]]},{"k":9305,"v":[[0,3,["H5971"]],[3,4,["H834"]],[4,5,["H310"]],[5,6,["H6018"]],[6,8,["H2388","(H853)"]],[8,10,["H5971"]],[10,11,["H834"]],[11,12,["H310"]],[12,13,["H8402"]],[13,15,["H1121"]],[15,17,["H1527"]],[17,19,["H8402"]],[19,20,["H4191"]],[20,22,["H6018"]],[22,23,["H4427"]]]},{"k":9306,"v":[[0,3,["H7970"]],[3,5,["H259"]],[5,6,["H8141"]],[6,8,["H609"]],[8,9,["H4428"]],[9,11,["H3063"]],[11,13,["H6018"]],[13,15,["H4427"]],[15,16,["H5921"]],[16,17,["H3478"]],[17,18,["H8147","H6240"]],[18,19,["H8141"]],[19,20,["H8337"]],[20,21,["H8141"]],[21,22,["H4427"]],[22,25,["H8656"]]]},{"k":9307,"v":[[0,3,["H7069","(H853)"]],[3,5,["H2022"]],[5,6,["H8111"]],[6,7,["H4480","H854"]],[7,8,["H8106"]],[8,11,["H3603"]],[11,13,["H3701"]],[13,16,["H1129","(H853)"]],[16,18,["H2022"]],[18,20,["H7121","(H853)"]],[20,22,["H8034"]],[22,25,["H5892"]],[25,26,["H834"]],[26,28,["H1129"]],[28,29,["H5921"]],[29,31,["H8034"]],[31,33,["H8106"]],[33,34,["H113"]],[34,37,["H2022"]],[37,38,["H8111"]]]},{"k":9308,"v":[[0,2,["H6018"]],[2,3,["H6213"]],[3,4,["H7451"]],[4,7,["H5869"]],[7,10,["H3068"]],[10,13,["H7489"]],[13,15,["H4480","H3605"]],[15,16,["H834"]],[16,18,["H6440"]],[18,19,[]]]},{"k":9309,"v":[[0,3,["H1980"]],[3,5,["H3605"]],[5,7,["H1870"]],[7,9,["H3379"]],[9,11,["H1121"]],[11,13,["H5028"]],[13,17,["H2403"]],[17,18,["H834"]],[18,23,["H2398","(H853)","H3478"]],[23,25,["H3707","(H853)"]],[25,27,["H3068"]],[27,28,["H430"]],[28,30,["H3478"]],[30,35,["H1892"]]]},{"k":9310,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H6018"]],[8,9,["H834"]],[9,11,["H6213"]],[11,14,["H1369"]],[14,15,["H834"]],[15,17,["H6213"]],[17,19,["H1992"]],[19,20,["H3808"]],[20,21,["H3789"]],[21,22,["H5921"]],[22,24,["H5612"]],[24,27,["H1697","H3117"]],[27,30,["H4428"]],[30,32,["H3478"]]]},{"k":9311,"v":[[0,2,["H6018"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,11,["H8111"]],[11,13,["H256"]],[13,15,["H1121"]],[15,16,["H4427"]],[16,19,["H8478"]]]},{"k":9312,"v":[[0,4,["H7970"]],[4,6,["H8083"]],[6,7,["H8141"]],[7,9,["H609"]],[9,10,["H4428"]],[10,12,["H3063"]],[12,14,["H256"]],[14,16,["H1121"]],[16,18,["H6018"]],[18,20,["H4427"]],[20,21,["H5921"]],[21,22,["H3478"]],[22,24,["H256"]],[24,26,["H1121"]],[26,28,["H6018"]],[28,29,["H4427"]],[29,30,["H5921"]],[30,31,["H3478"]],[31,33,["H8111"]],[33,34,["H6242"]],[34,36,["H8147"]],[36,37,["H8141"]]]},{"k":9313,"v":[[0,2,["H256"]],[2,4,["H1121"]],[4,6,["H6018"]],[6,7,["H6213"]],[7,8,["H7451"]],[8,11,["H5869"]],[11,14,["H3068"]],[14,16,["H4480","H3605"]],[16,17,["H834"]],[17,19,["H6440"]],[19,20,[]]]},{"k":9314,"v":[[0,5,["H1961"]],[5,13,["H7043"]],[13,17,["H1980"]],[17,20,["H2403"]],[20,22,["H3379"]],[22,24,["H1121"]],[24,26,["H5028"]],[26,29,["H3947"]],[29,31,["H802","(H853)"]],[31,32,["H348"]],[32,34,["H1323"]],[34,36,["H856"]],[36,37,["H4428"]],[37,40,["H6722"]],[40,42,["H1980"]],[42,44,["H5647","(H853)"]],[44,45,["H1168"]],[45,47,["H7812"]],[47,48,[]]]},{"k":9315,"v":[[0,4,["H6965"]],[4,6,["H4196"]],[6,8,["H1168"]],[8,11,["H1004"]],[11,13,["H1168"]],[13,14,["H834"]],[14,17,["H1129"]],[17,19,["H8111"]]]},{"k":9316,"v":[[0,2,["H256"]],[2,3,["H6213","(H853)"]],[3,5,["H842"]],[5,7,["H256"]],[7,8,["H6213"]],[8,9,["H3254"]],[9,11,["H3707","(H853)"]],[11,13,["H3068"]],[13,14,["H430"]],[14,16,["H3478"]],[16,20,["H4480","H3605"]],[20,22,["H4428"]],[22,24,["H3478"]],[24,25,["H834"]],[25,26,["H1961"]],[26,27,["H6440"]],[27,28,[]]]},{"k":9317,"v":[[0,3,["H3117"]],[3,5,["H2419"]],[5,7,["H1017"]],[7,8,["H1129","(H853)"]],[8,9,["H3405"]],[9,13,["H3245"]],[13,16,["H48"]],[16,18,["H1060"]],[18,21,["H5324"]],[21,23,["H1817"]],[23,27,["H6810"]],[27,29,["H7687"]],[29,33,["H1697"]],[33,36,["H3068"]],[36,37,["H834"]],[37,39,["H1696"]],[39,40,["H3027"]],[40,41,["H3091"]],[41,43,["H1121"]],[43,45,["H5126"]]]},{"k":9318,"v":[[0,2,["H452"]],[2,4,["H8664"]],[4,9,["H4480","H8453"]],[9,11,["H1568"]],[11,12,["H559"]],[12,13,["H413"]],[13,14,["H256"]],[14,17,["H3068"]],[17,18,["H430"]],[18,20,["H3478"]],[20,21,["H2416"]],[21,22,["H6440"]],[22,23,["H834"]],[23,25,["H5975"]],[25,28,["H518"]],[28,29,["H1961"]],[29,30,["H2919"]],[30,32,["H4306"]],[32,33,["H428"]],[33,34,["H8141"]],[34,35,["H3588","H518"]],[35,36,["H6310"]],[36,39,["H1697"]]]},{"k":9319,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":9320,"v":[[0,1,["H1980"]],[1,3,["H4480","H2088"]],[3,5,["H6437"]],[5,7,["H6924"]],[7,10,["H5641"]],[10,13,["H5158"]],[13,14,["H3747"]],[14,15,["H834"]],[15,17,["H5921","H6440"]],[17,18,["H3383"]]]},{"k":9321,"v":[[0,4,["H1961"]],[4,8,["H8354"]],[8,11,["H4480","H5158"]],[11,15,["H6680"]],[15,17,["H6158"]],[17,19,["H3557"]],[19,21,["H8033"]]]},{"k":9322,"v":[[0,3,["H1980"]],[3,5,["H6213"]],[5,9,["H1697"]],[9,12,["H3068"]],[12,15,["H1980"]],[15,17,["H3427"]],[17,20,["H5158"]],[20,21,["H3747"]],[21,22,["H834"]],[22,24,["H5921","H6440"]],[24,25,["H3383"]]]},{"k":9323,"v":[[0,3,["H6158"]],[3,4,["H935"]],[4,6,["H3899"]],[6,8,["H1320"]],[8,11,["H1242"]],[11,13,["H3899"]],[13,15,["H1320"]],[15,18,["H6153"]],[18,21,["H8354"]],[21,22,["H4480"]],[22,24,["H5158"]]]},{"k":9324,"v":[[0,5,["H1961"]],[5,6,["H4480","H7093"]],[6,8,["H3117"]],[8,11,["H5158"]],[11,13,["H3001"]],[13,14,["H3588"]],[14,17,["H1961"]],[17,18,["H3808"]],[18,19,["H1653"]],[19,22,["H776"]]]},{"k":9325,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":9326,"v":[[0,1,["H6965"]],[1,2,["H1980"]],[2,5,["H6886"]],[5,6,["H834"]],[6,9,["H6721"]],[9,11,["H3427"]],[11,12,["H8033"]],[12,13,["H2009"]],[13,16,["H6680"]],[16,18,["H490"]],[18,19,["H802"]],[19,20,["H8033"]],[20,22,["H3557"]],[22,23,[]]]},{"k":9327,"v":[[0,3,["H6965"]],[3,5,["H1980"]],[5,7,["H6886"]],[7,11,["H935"]],[11,12,["H413"]],[12,14,["H6607"]],[14,17,["H5892"]],[17,18,["H2009"]],[18,20,["H490"]],[20,21,["H802"]],[21,23,["H8033"]],[23,24,["H7197"]],[24,26,["H6086"]],[26,29,["H7121"]],[29,30,["H413"]],[30,33,["H559"]],[33,34,["H3947"]],[34,38,["H4994"]],[38,40,["H4592"]],[40,41,["H4325"]],[41,44,["H3627"]],[44,48,["H8354"]]]},{"k":9328,"v":[[0,5,["H1980"]],[5,7,["H3947"]],[7,10,["H7121"]],[10,11,["H413"]],[11,14,["H559"]],[14,15,["H3947"]],[15,19,["H4994"]],[19,21,["H6595"]],[21,23,["H3899"]],[23,26,["H3027"]]]},{"k":9329,"v":[[0,3,["H559"]],[3,6,["H3068"]],[6,8,["H430"]],[8,9,["H2416"]],[9,11,["H3426"]],[11,12,["H518"]],[12,14,["H4580"]],[14,15,["H3588","H518"]],[15,17,["H4393","H3709"]],[17,19,["H7058"]],[19,22,["H3537"]],[22,25,["H4592"]],[25,26,["H8081"]],[26,29,["H6835"]],[29,31,["H2009"]],[31,34,["H7197"]],[34,35,["H8147"]],[35,36,["H6086"]],[36,41,["H935"]],[41,43,["H6213"]],[43,49,["H1121"]],[49,53,["H398"]],[53,56,["H4191"]]]},{"k":9330,"v":[[0,2,["H452"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3372"]],[6,7,["H408"]],[7,8,["H935"]],[8,10,["H6213"]],[10,14,["H1697"]],[14,15,["H389"]],[15,16,["H6213"]],[16,18,["H4480","H8033"]],[18,20,["H6996"]],[20,21,["H5692"]],[21,22,["H7223"]],[22,24,["H3318"]],[24,29,["H314"]],[29,30,["H6213"]],[30,36,["H1121"]]]},{"k":9331,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H430"]],[6,8,["H3478"]],[8,10,["H3537"]],[10,12,["H7058"]],[12,14,["H3808"]],[14,15,["H3615"]],[15,16,["H3808"]],[16,19,["H6835"]],[19,21,["H8081"]],[21,22,["H2637"]],[22,23,["H5704"]],[23,25,["H3117"]],[25,28,["H3068"]],[28,29,["H5414"]],[29,30,["H1653"]],[30,31,["H5921","H6440"]],[31,33,["H127"]]]},{"k":9332,"v":[[0,3,["H1980"]],[3,5,["H6213"]],[5,9,["H1697"]],[9,11,["H452"]],[11,13,["H1931"]],[13,15,["H1931"]],[15,18,["H1004"]],[18,20,["H398"]],[20,22,["H3117"]]]},{"k":9333,"v":[[0,3,["H3537"]],[3,5,["H7058"]],[5,6,["H3615"]],[6,7,["H3808"]],[7,8,["H3808"]],[8,11,["H6835"]],[11,13,["H8081"]],[13,14,["H2637"]],[14,18,["H1697"]],[18,21,["H3068"]],[21,22,["H834"]],[22,24,["H1696"]],[24,25,["H3027"]],[25,26,["H452"]]]},{"k":9334,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H428"]],[7,8,["H1697"]],[8,11,["H1121"]],[11,14,["H802"]],[14,16,["H1172"]],[16,19,["H1004"]],[19,21,["H2470"]],[21,24,["H2483"]],[24,25,["H1961"]],[25,26,["H3966"]],[26,27,["H2389"]],[27,28,["H5704","H834"]],[28,31,["H3808"]],[31,32,["H5397"]],[32,33,["H3498"]],[33,35,[]]]},{"k":9335,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H452"]],[5,6,["H4100"]],[6,15,["H376"]],[15,17,["H430"]],[17,20,["H935"]],[20,21,["H413"]],[21,24,["(H853)"]],[24,26,["H5771"]],[26,28,["H2142"]],[28,31,["H4191","(H853)"]],[31,33,["H1121"]]]},{"k":9336,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H5414"]],[6,7,["(H853)"]],[7,9,["H1121"]],[9,12,["H3947"]],[12,17,["H4480","H2436"]],[17,21,["H5927"]],[21,22,["H413"]],[22,24,["H5944"]],[24,25,["H834","H8033"]],[25,26,["H1931"]],[26,27,["H3427"]],[27,29,["H7901"]],[29,31,["H5921"]],[31,34,["H4296"]]]},{"k":9337,"v":[[0,3,["H7121"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H559"]],[8,10,["H3068"]],[10,12,["H430"]],[12,15,["H1571"]],[15,17,["H7489"]],[17,18,["H5921"]],[18,20,["H490"]],[20,21,["H5973"]],[21,22,["H834"]],[22,23,["H589"]],[23,24,["H1481"]],[24,26,["H4191","(H853)"]],[26,28,["H1121"]]]},{"k":9338,"v":[[0,4,["H4058"]],[4,5,["H5921"]],[5,7,["H3206"]],[7,8,["H7969"]],[8,9,["H6471"]],[9,11,["H7121"]],[11,12,["H413"]],[12,14,["H3068"]],[14,16,["H559"]],[16,18,["H3068"]],[18,20,["H430"]],[20,23,["H4994"]],[23,25,["H2088"]],[25,26,["H3206"]],[26,27,["H5315"]],[27,31,["H7725","H5921","H7130"]]]},{"k":9339,"v":[[0,3,["H3068"]],[3,4,["H8085"]],[4,6,["H6963"]],[6,8,["H452"]],[8,11,["H5315"]],[11,14,["H3206"]],[14,18,["H7725","H5921","H7130"]],[18,21,["H2421"]]]},{"k":9340,"v":[[0,2,["H452"]],[2,3,["H3947","(H853)"]],[3,5,["H3206"]],[5,9,["H3381"]],[9,11,["H4480"]],[11,13,["H5944"]],[13,16,["H1004"]],[16,18,["H5414"]],[18,22,["H517"]],[22,24,["H452"]],[24,25,["H559"]],[25,26,["H7200"]],[26,28,["H1121"]],[28,29,["H2416"]]]},{"k":9341,"v":[[0,3,["H802"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H452"]],[6,7,["H6258"]],[7,9,["H2088"]],[9,11,["H3045"]],[11,12,["H3588"]],[12,13,["H859"]],[13,16,["H376"]],[16,18,["H430"]],[18,22,["H1697"]],[22,25,["H3068"]],[25,28,["H6310"]],[28,30,["H571"]]]},{"k":9342,"v":[[0,5,["H1961"]],[5,7,["H7227"]],[7,8,["H3117"]],[8,11,["H1697"]],[11,14,["H3068"]],[14,15,["H1961"]],[15,16,["H413"]],[16,17,["H452"]],[17,20,["H7992"]],[20,21,["H8141"]],[21,22,["H559"]],[22,23,["H1980"]],[23,25,["H7200"]],[25,26,["H413"]],[26,27,["H256"]],[27,31,["H5414"]],[31,32,["H4306"]],[32,33,["H5921","H6440"]],[33,35,["H127"]]]},{"k":9343,"v":[[0,2,["H452"]],[2,3,["H1980"]],[3,6,["H7200"]],[6,7,["H413"]],[7,8,["H256"]],[8,13,["H2389"]],[13,14,["H7458"]],[14,16,["H8111"]]]},{"k":9344,"v":[[0,2,["H256"]],[2,3,["H7121","H413"]],[3,4,["H5662"]],[4,5,["H834"]],[5,8,["H5921"]],[8,11,["H1004"]],[11,13,["H5662"]],[13,14,["H1961","H3372","(H853)"]],[14,16,["H3068"]],[16,17,["H3966"]]]},{"k":9345,"v":[[0,3,["H1961"]],[3,6,["H348"]],[6,8,["H3772","(H853)"]],[8,10,["H5030"]],[10,13,["H3068"]],[13,15,["H5662"]],[15,16,["H3947"]],[16,18,["H3967"]],[18,19,["H5030"]],[19,21,["H2244"]],[21,24,["H2572","H376"]],[24,27,["H4631"]],[27,29,["H3557"]],[29,32,["H3899"]],[32,34,["H4325"]]]},{"k":9346,"v":[[0,2,["H256"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H5662"]],[5,6,["H1980"]],[6,9,["H776"]],[9,10,["H413"]],[10,11,["H3605"]],[11,12,["H4599"]],[12,14,["H4325"]],[14,16,["H413"]],[16,17,["H3605"]],[17,18,["H5158"]],[18,19,["H194"]],[19,22,["H4672"]],[22,23,["H2682"]],[23,30,["H2421","H5483","H6505"]],[30,33,["H3772"]],[33,34,["H3808"]],[34,37,["H4480","H929"]]]},{"k":9347,"v":[[0,3,["H2505","(H853)"]],[3,5,["H776"]],[5,9,["H5674"]],[9,12,["H256"]],[12,13,["H1980"]],[13,14,["H259"]],[14,15,["H1870"]],[15,17,["H905"]],[17,19,["H5662"]],[19,20,["H1980"]],[20,21,["H259"]],[21,22,["H1870"]],[22,24,["H905"]]]},{"k":9348,"v":[[0,3,["H5662"]],[3,4,["H1961"]],[4,7,["H1870"]],[7,8,["H2009"]],[8,9,["H452"]],[9,10,["H7122"]],[10,14,["H5234"]],[14,17,["H5307"]],[17,18,["H5921"]],[18,20,["H6440"]],[20,22,["H559"]],[22,24,["H859"]],[24,25,["H2088"]],[25,27,["H113"]],[27,28,["H452"]]]},{"k":9349,"v":[[0,3,["H559"]],[3,5,["H589"]],[5,7,["H1980"]],[7,8,["H559"]],[8,10,["H113"]],[10,11,["H2009"]],[11,12,["H452"]],[12,14,[]]]},{"k":9350,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,7,["H2398"]],[7,8,["H3588"]],[8,9,["H859"]],[9,11,["H5414","(H853)"]],[11,13,["H5650"]],[13,16,["H3027"]],[16,18,["H256"]],[18,20,["H4191"]],[20,21,[]]]},{"k":9351,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,6,["H2416"]],[6,8,["H3426"]],[8,9,["H518"]],[9,10,["H1471"]],[10,12,["H4467"]],[12,13,["H834","H8033"]],[13,15,["H113"]],[15,17,["H3808"]],[17,18,["H7971"]],[18,20,["H1245"]],[20,25,["H559"]],[25,28,["H369"]],[28,33,["H7650"]],[33,34,["(H853)"]],[34,36,["H4467"]],[36,38,["H1471"]],[38,39,["H3588"]],[39,41,["H4672"]],[41,43,["H3808"]]]},{"k":9352,"v":[[0,2,["H6258"]],[2,3,["H859"]],[3,4,["H559"]],[4,5,["H1980"]],[5,6,["H559"]],[6,8,["H113"]],[8,9,["H2009"]],[9,10,["H452"]],[10,12,[]]]},{"k":9353,"v":[[0,6,["H1961"]],[6,10,["H589"]],[10,12,["H1980"]],[12,13,["H4480","H854"]],[13,17,["H7307"]],[17,20,["H3068"]],[20,22,["H5375"]],[22,24,["H5921","H834"]],[24,26,["H3045"]],[26,27,["H3808"]],[27,32,["H935"]],[32,34,["H5046"]],[34,35,["H256"]],[35,38,["H3808"]],[38,39,["H4672"]],[39,43,["H2026"]],[43,48,["H5650"]],[48,49,["H3372","(H853)"]],[49,51,["H3068"]],[51,54,["H4480","H5271"]]]},{"k":9354,"v":[[0,3,["H3808"]],[3,4,["H5046"]],[4,6,["H113","(H853)"]],[6,7,["H834"]],[7,9,["H6213"]],[9,11,["H348"]],[11,12,["H2026","(H853)"]],[12,14,["H5030"]],[14,17,["H3068"]],[17,20,["H2244"]],[20,22,["H3967"]],[22,23,["H376"]],[23,27,["H4480","H5030","H3068"]],[27,29,["H2572","H2572","H376"]],[29,32,["H4631"]],[32,34,["H3557"]],[34,37,["H3899"]],[37,39,["H4325"]]]},{"k":9355,"v":[[0,2,["H6258"]],[2,3,["H859"]],[3,4,["H559"]],[4,5,["H1980"]],[5,6,["H559"]],[6,8,["H113"]],[8,9,["H2009"]],[9,10,["H452"]],[10,16,["H2026"]],[16,17,[]]]},{"k":9356,"v":[[0,2,["H452"]],[2,3,["H559"]],[3,6,["H3068"]],[6,8,["H6635"]],[8,9,["H2416"]],[9,10,["H6440"]],[10,11,["H834"]],[11,13,["H5975"]],[13,16,["H3588"]],[16,18,["H7200"]],[18,19,["H413"]],[19,22,["H3117"]]]},{"k":9357,"v":[[0,2,["H5662"]],[2,3,["H1980"]],[3,5,["H7122"]],[5,6,["H256"]],[6,8,["H5046"]],[8,11,["H256"]],[11,12,["H1980"]],[12,14,["H7122"]],[14,15,["H452"]]]},{"k":9358,"v":[[0,5,["H1961"]],[5,7,["H256"]],[7,8,["H7200","(H853)"]],[8,9,["H452"]],[9,11,["H256"]],[11,12,["H559"]],[12,13,["H413"]],[13,16,["H859"]],[16,18,["H2088"]],[18,19,["H5916"]],[19,20,["H3478"]]]},{"k":9359,"v":[[0,3,["H559"]],[3,6,["H3808"]],[6,7,["H5916","(H853)"]],[7,8,["H3478"]],[8,9,["H3588","H518"]],[9,10,["H859"]],[10,13,["H1"]],[13,14,["H1004"]],[14,19,["H5800","(H853)"]],[19,21,["H4687"]],[21,24,["H3068"]],[24,28,["H1980","H310"]],[28,29,["H1168"]]]},{"k":9360,"v":[[0,1,["H6258"]],[1,3,["H7971"]],[3,5,["H6908"]],[5,6,["H413"]],[6,7,["(H853)"]],[7,8,["H3605"]],[8,9,["H3478"]],[9,10,["H413"]],[10,11,["H2022"]],[11,12,["H3760"]],[12,15,["H5030"]],[15,17,["H1168"]],[17,18,["H702"]],[18,19,["H3967"]],[19,21,["H2572"]],[21,24,["H5030"]],[24,27,["H842"]],[27,28,["H702"]],[28,29,["H3967"]],[29,31,["H398"]],[31,33,["H348"]],[33,34,["H7979"]]]},{"k":9361,"v":[[0,2,["H256"]],[2,3,["H7971"]],[3,5,["H3605"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,14,["H6908","(H853)","H5030"]],[14,15,["H413"]],[15,16,["H2022"]],[16,17,["H3760"]]]},{"k":9362,"v":[[0,2,["H452"]],[2,3,["H5066"]],[3,4,["H413"]],[4,5,["H3605"]],[5,7,["H5971"]],[7,9,["H559"]],[9,11,["H5704","H4970"]],[11,12,["H6452"]],[12,13,["H859"]],[13,14,["H5921"]],[14,15,["H8147"]],[15,16,["H5587"]],[16,17,["H518"]],[17,19,["H3068"]],[19,21,["H430"]],[21,22,["H1980","H310"]],[22,25,["H518"]],[25,26,["H1168"]],[26,28,["H1980","H310"]],[28,32,["H5971"]],[32,33,["H6030"]],[33,35,["H3808"]],[35,37,["H1697"]]]},{"k":9363,"v":[[0,2,["H559"]],[2,3,["H452"]],[3,4,["H413"]],[4,6,["H5971"]],[6,7,["H589"]],[7,10,["H905"]],[10,11,["H3498"]],[11,13,["H5030"]],[13,16,["H3068"]],[16,18,["H1168"]],[18,19,["H5030"]],[19,21,["H702"]],[21,22,["H3967"]],[22,24,["H2572"]],[24,25,["H376"]]]},{"k":9364,"v":[[0,4,["H5414"]],[4,6,["H8147"]],[6,7,["H6499"]],[7,11,["H977"]],[11,12,["H259"]],[12,13,["H6499"]],[13,20,["H5408"]],[20,22,["H7760"]],[22,24,["H5921"]],[24,25,["H6086"]],[25,27,["H7760"]],[27,28,["H3808"]],[28,29,["H784"]],[29,32,["H589"]],[32,34,["H6213","(H853)"]],[34,36,["H259"]],[36,37,["H6499"]],[37,39,["H5414"]],[39,41,["H5921"]],[41,42,["H6086"]],[42,44,["H7760"]],[44,45,["H3808"]],[45,46,["H784"]],[46,47,[]]]},{"k":9365,"v":[[0,2,["H7121"]],[2,6,["H8034"]],[6,9,["H430"]],[9,11,["H589"]],[11,13,["H7121"]],[13,16,["H8034"]],[16,19,["H3068"]],[19,22,["H430"]],[22,23,["H834"]],[23,24,["H6030"]],[24,26,["H784"]],[26,28,["H1931"]],[28,29,["H1961"]],[29,30,["H430"]],[30,32,["H3605"]],[32,34,["H5971"]],[34,35,["H6030"]],[35,37,["H559"]],[37,40,["H2896"]],[40,41,["H1697"]]]},{"k":9366,"v":[[0,2,["H452"]],[2,3,["H559"]],[3,6,["H5030"]],[6,8,["H1168"]],[8,9,["H977"]],[9,11,["H259"]],[11,12,["H6499"]],[12,16,["H6213"]],[16,18,["H7223"]],[18,19,["H3588"]],[19,20,["H859"]],[20,22,["H7227"]],[22,24,["H7121"]],[24,27,["H8034"]],[27,30,["H430"]],[30,32,["H7760"]],[32,33,["H3808"]],[33,34,["H784"]],[34,35,[]]]},{"k":9367,"v":[[0,3,["H3947","(H853)"]],[3,5,["H6499"]],[5,6,["H834"]],[6,8,["H5414"]],[8,12,["H6213"]],[12,15,["H7121"]],[15,18,["H8034"]],[18,20,["H1168"]],[20,22,["H4480","H1242"]],[22,24,["H5704"]],[24,25,["H6672"]],[25,26,["H559"]],[26,28,["H1168"]],[28,29,["H6030"]],[29,34,["H369"]],[34,35,["H6963"]],[35,36,["H369"]],[36,39,["H6030"]],[39,42,["H6452"]],[42,43,["H5921"]],[43,45,["H4196"]],[45,46,["H834"]],[46,48,["H6213"]]]},{"k":9368,"v":[[0,5,["H1961"]],[5,7,["H6672"]],[7,9,["H452"]],[9,10,["H2048"]],[10,13,["H559"]],[13,14,["H7121"]],[14,15,["H6963","H1419"]],[15,16,["H3588"]],[16,17,["H1931"]],[17,20,["H430"]],[20,21,["H3588"]],[21,24,["H7879"]],[24,25,["H3588"]],[25,28,["H7873"]],[28,29,["H3588"]],[29,34,["H1870"]],[34,36,["H194"]],[36,37,["H1931"]],[37,38,["H3463"]],[38,42,["H3364"]]]},{"k":9369,"v":[[0,3,["H7121"]],[3,4,["H6963","H1419"]],[4,7,["H1413"]],[7,10,["H4941"]],[10,12,["H2719"]],[12,14,["H7420"]],[14,15,["H5704"]],[15,17,["H1818"]],[17,19,["H8210"]],[19,20,["H5921"]],[20,21,[]]]},{"k":9370,"v":[[0,5,["H1961"]],[5,7,["H6672"]],[7,9,["H5674"]],[9,12,["H5012"]],[12,13,["H5704"]],[13,18,["H5927"]],[18,22,["H4503"]],[22,26,["H369"]],[26,27,["H6963"]],[27,28,["H369"]],[28,31,["H6030"]],[31,32,["H369"]],[32,35,["H7182"]]]},{"k":9371,"v":[[0,2,["H452"]],[2,3,["H559"]],[3,5,["H3605"]],[5,7,["H5971"]],[7,9,["H5066"]],[9,10,["H413"]],[10,13,["H3605"]],[13,15,["H5971"]],[15,17,["H5066"]],[17,18,["H413"]],[18,22,["H7495","(H853)"]],[22,24,["H4196"]],[24,27,["H3068"]],[27,31,["H2040"]]]},{"k":9372,"v":[[0,2,["H452"]],[2,3,["H3947"]],[3,4,["H8147","H6240"]],[4,5,["H68"]],[5,9,["H4557"]],[9,12,["H7626"]],[12,15,["H1121"]],[15,17,["H3290"]],[17,18,["H413"]],[18,19,["H834"]],[19,21,["H1697"]],[21,24,["H3068"]],[24,25,["H1961"]],[25,26,["H559"]],[26,27,["H3478"]],[27,29,["H1961"]],[29,31,["H8034"]]]},{"k":9373,"v":[[0,2,["H854"]],[2,4,["H68"]],[4,6,["H1129"]],[6,8,["H4196"]],[8,11,["H8034"]],[11,14,["H3068"]],[14,17,["H6213"]],[17,19,["H8585"]],[19,20,["H5439"]],[20,22,["H4196"]],[22,27,["H1004"]],[27,29,["H5429"]],[29,31,["H2233"]]]},{"k":9374,"v":[[0,3,["H6186","(H853)"]],[3,5,["H6086"]],[5,9,["H5408","(H853)"]],[9,11,["H6499"]],[11,15,["H7760"]],[15,17,["H5921"]],[17,19,["H6086"]],[19,21,["H559"]],[21,22,["H4390"]],[22,23,["H702"]],[23,24,["H3537"]],[24,26,["H4325"]],[26,28,["H3332"]],[28,30,["H5921"]],[30,33,["H5930"]],[33,35,["H5921"]],[35,37,["H6086"]]]},{"k":9375,"v":[[0,3,["H559"]],[3,8,["H8138"]],[8,15,["H8138"]],[15,18,["H559"]],[18,23,["H8027"]],[23,30,["H8027"]]]},{"k":9376,"v":[[0,3,["H4325"]],[3,4,["H1980"]],[4,6,["H5439"]],[6,8,["H4196"]],[8,11,["H4390","(H853)"]],[11,13,["H8585"]],[13,14,["H1571"]],[14,16,["H4325"]]]},{"k":9377,"v":[[0,5,["H1961"]],[5,11,["H5927"]],[11,15,["H4503"]],[15,17,["H452"]],[17,19,["H5030"]],[19,21,["H5066"]],[21,23,["H559"]],[23,24,["H3068"]],[24,25,["H430"]],[25,27,["H85"]],[27,28,["H3327"]],[28,31,["H3478"]],[31,35,["H3045"]],[35,37,["H3117"]],[37,38,["H3588"]],[38,39,["H859"]],[39,41,["H430"]],[41,43,["H3478"]],[43,46,["H589"]],[46,49,["H5650"]],[49,54,["H6213","(H853)"]],[54,55,["H3605"]],[55,56,["H428"]],[56,57,["H1697"]],[57,60,["H1697"]]]},{"k":9378,"v":[[0,1,["H6030"]],[1,4,["H3068"]],[4,5,["H6030"]],[5,8,["H2088"]],[8,9,["H5971"]],[9,11,["H3045"]],[11,12,["H3588"]],[12,13,["H859"]],[13,16,["H3068"]],[16,17,["H430"]],[17,20,["H859"]],[20,22,["H5437","(H853)"]],[22,24,["H3820"]],[24,26,["H322"]]]},{"k":9379,"v":[[0,3,["H784"]],[3,6,["H3068"]],[6,7,["H5307"]],[7,9,["H398","(H853)"]],[9,12,["H5930"]],[12,15,["H6086"]],[15,18,["H68"]],[18,21,["H6083"]],[21,24,["H3897"]],[24,26,["H4325"]],[26,27,["H834"]],[27,31,["H8585"]]]},{"k":9380,"v":[[0,3,["H3605"]],[3,5,["H5971"]],[5,6,["H7200"]],[6,9,["H5307"]],[9,10,["H5921"]],[10,12,["H6440"]],[12,15,["H559"]],[15,17,["H3068"]],[17,18,["H1931"]],[18,21,["H430"]],[21,23,["H3068"]],[23,24,["H1931"]],[24,27,["H430"]]]},{"k":9381,"v":[[0,2,["H452"]],[2,3,["H559"]],[3,6,["H8610","(H853)"]],[6,8,["H5030"]],[8,10,["H1168"]],[10,12,["H408"]],[12,13,["H376"]],[13,15,["H4480"]],[15,16,["H4422"]],[16,19,["H8610"]],[19,22,["H452"]],[22,25,["H3381"]],[25,26,["H413"]],[26,28,["H5158"]],[28,29,["H7028"]],[29,31,["H7819"]],[31,33,["H8033"]]]},{"k":9382,"v":[[0,2,["H452"]],[2,3,["H559"]],[3,5,["H256"]],[5,8,["H5927"]],[8,9,["H398"]],[9,11,["H8354"]],[11,12,["H3588"]],[12,16,["H6963"]],[16,18,["H1995"]],[18,20,["H1653"]]]},{"k":9383,"v":[[0,2,["H256"]],[2,4,["H5927"]],[4,6,["H398"]],[6,9,["H8354"]],[9,11,["H452"]],[11,13,["H5927"]],[13,14,["H413"]],[14,16,["H7218"]],[16,18,["H3760"]],[18,23,["H1457"]],[23,26,["H776"]],[26,28,["H7760"]],[28,30,["H6440"]],[30,31,["H996"]],[31,33,["H1290"]]]},{"k":9384,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H5288"]],[5,7,["H5927"]],[7,8,["H4994"]],[8,9,["H5027"]],[9,10,["H1870"]],[10,12,["H3220"]],[12,16,["H5927"]],[16,18,["H5027"]],[18,20,["H559"]],[20,23,["H369","H3972"]],[23,26,["H559"]],[26,28,["H7725"]],[28,29,["H7651"]],[29,30,["H6471"]]]},{"k":9385,"v":[[0,5,["H1961"]],[5,9,["H7637"]],[9,12,["H559"]],[12,13,["H2009"]],[13,15,["H5927"]],[15,17,["H6996"]],[17,18,["H5645"]],[18,22,["H4480","H3220"]],[22,25,["H376"]],[25,26,["H3709"]],[26,29,["H559"]],[29,31,["H5927"]],[31,32,["H559"]],[32,33,["H413"]],[33,34,["H256"]],[34,35,["H631"]],[35,41,["H3381"]],[41,44,["H1653"]],[44,45,["H6113"]],[45,47,["H3808"]]]},{"k":9386,"v":[[0,5,["H1961"]],[5,9,["H5704","H3541","H5704","H3541"]],[9,12,["H8064"]],[12,14,["H6937"]],[14,16,["H5645"]],[16,18,["H7307"]],[18,21,["H1961"]],[21,23,["H1419"]],[23,24,["H1653"]],[24,26,["H256"]],[26,27,["H7392"]],[27,29,["H1980"]],[29,31,["H3157"]]]},{"k":9387,"v":[[0,3,["H3027"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H452"]],[9,13,["H8151"]],[13,15,["H4975"]],[15,17,["H7323"]],[17,18,["H6440"]],[18,19,["H256"]],[19,20,["H5704"]],[20,22,["H935"]],[22,24,["H3157"]]]},{"k":9388,"v":[[0,2,["H256"]],[2,3,["H5046"]],[3,4,["H348","(H853)"]],[4,5,["H3605"]],[5,6,["H834"]],[6,7,["H452"]],[7,9,["H6213"]],[9,11,["H3605"]],[11,12,["H834"]],[12,15,["H2026","(H853)"]],[15,16,["H3605"]],[16,18,["H5030"]],[18,21,["H2719"]]]},{"k":9389,"v":[[0,2,["H348"]],[2,3,["H7971"]],[3,5,["H4397"]],[5,6,["H413"]],[6,7,["H452"]],[7,8,["H559"]],[8,9,["H3541"]],[9,12,["H430"]],[12,13,["H6213"]],[13,17,["H3254"]],[17,18,["H3541"]],[18,19,["H3588"]],[19,21,["H7760"]],[21,22,["(H853)"]],[22,24,["H5315"]],[24,27,["H5315"]],[27,29,["H259"]],[29,30,["H4480"]],[30,34,["H4279"]],[34,37,["H6256"]]]},{"k":9390,"v":[[0,4,["H7200"]],[4,7,["H6965"]],[7,9,["H1980"]],[9,10,["H413"]],[10,12,["H5315"]],[12,14,["H935"]],[14,16,["H884"]],[16,17,["H834"]],[17,20,["H3063"]],[20,22,["H5117","(H853)"]],[22,24,["H5288"]],[24,25,["H8033"]]]},{"k":9391,"v":[[0,3,["H1931"]],[3,4,["H1980"]],[4,6,["H3117"]],[6,7,["H1870"]],[7,10,["H4057"]],[10,12,["H935"]],[12,15,["H3427"]],[15,16,["H8478"]],[16,17,["H259"]],[17,19,["H7574"]],[19,22,["H7592","(H853)"]],[22,24,["H5315"]],[24,28,["H4191"]],[28,30,["H559"]],[30,33,["H7227"]],[33,34,["H6258"]],[34,36,["H3068"]],[36,38,["H3947"]],[38,40,["H5315"]],[40,41,["H3588"]],[41,42,["H595"]],[42,44,["H3808"]],[44,45,["H2896"]],[45,48,["H4480","H1"]]]},{"k":9392,"v":[[0,4,["H7901"]],[4,6,["H3462"]],[6,7,["H8478"]],[7,8,["H259"]],[8,10,["H7574"]],[10,11,["H2009"]],[11,12,["H2088"]],[12,14,["H4397"]],[14,15,["H5060"]],[15,18,["H559"]],[18,21,["H6965"]],[21,23,["H398"]]]},{"k":9393,"v":[[0,3,["H5027"]],[3,5,["H2009"]],[5,9,["H5692"]],[9,13,["H7529"]],[13,16,["H6835"]],[16,18,["H4325"]],[18,21,["H4763"]],[21,25,["H398"]],[25,27,["H8354"]],[27,31,["H7901"]],[31,32,["H7725"]]]},{"k":9394,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,8,["H7725"]],[8,11,["H8145"]],[11,13,["H5060"]],[13,16,["H559"]],[16,17,["H6965"]],[17,19,["H398"]],[19,20,["H3588"]],[20,22,["H1870"]],[22,25,["H7227"]],[25,26,["H4480"]],[26,27,[]]]},{"k":9395,"v":[[0,3,["H6965"]],[3,6,["H398"]],[6,8,["H8354"]],[8,10,["H1980"]],[10,13,["H3581"]],[13,15,["H1931"]],[15,16,["H396"]],[16,17,["H705"]],[17,18,["H3117"]],[18,20,["H705"]],[20,21,["H3915"]],[21,22,["H5704"]],[22,23,["H2722"]],[23,25,["H2022"]],[25,27,["H430"]]]},{"k":9396,"v":[[0,3,["H935"]],[3,4,["H8033"]],[4,5,["H413"]],[5,7,["H4631"]],[7,9,["H3885"]],[9,10,["H8033"]],[10,12,["H2009"]],[12,14,["H1697"]],[14,17,["H3068"]],[17,19,["H413"]],[19,23,["H559"]],[23,26,["H4100"]],[26,29,["H6311"]],[29,30,["H452"]]]},{"k":9397,"v":[[0,3,["H559"]],[3,8,["H7065","H7065"]],[8,11,["H3068"]],[11,12,["H430"]],[12,14,["H6635"]],[14,15,["H3588"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,21,["H5800"]],[21,23,["H1285"]],[23,25,["H2040","(H853)"]],[25,27,["H4196"]],[27,29,["H2026"]],[29,31,["H5030"]],[31,34,["H2719"]],[34,36,["H589"]],[36,39,["H905"]],[39,41,["H3498"]],[41,44,["H1245","(H853)"]],[44,46,["H5315"]],[46,50,["H3947"]]]},{"k":9398,"v":[[0,3,["H559"]],[3,5,["H3318"]],[5,7,["H5975"]],[7,10,["H2022"]],[10,11,["H6440"]],[11,13,["H3068"]],[13,15,["H2009"]],[15,17,["H3068"]],[17,19,["H5674"]],[19,22,["H1419"]],[22,24,["H2389"]],[24,25,["H7307"]],[25,26,["H6561"]],[26,28,["H2022"]],[28,32,["H7665"]],[32,34,["H5553"]],[34,35,["H6440"]],[35,37,["H3068"]],[37,40,["H3068"]],[40,42,["H3808"]],[42,45,["H7307"]],[45,47,["H310"]],[47,49,["H7307"]],[49,51,["H7494"]],[51,54,["H3068"]],[54,56,["H3808"]],[56,59,["H7494"]]]},{"k":9399,"v":[[0,2,["H310"]],[2,4,["H7494"]],[4,6,["H784"]],[6,9,["H3068"]],[9,11,["H3808"]],[11,14,["H784"]],[14,16,["H310"]],[16,18,["H784"]],[18,20,["H1827"]],[20,21,["H1851"]],[21,22,["H6963"]]]},{"k":9400,"v":[[0,3,["H1961"]],[3,6,["H452"]],[6,7,["H8085"]],[7,11,["H3874"]],[11,13,["H6440"]],[13,16,["H155"]],[16,19,["H3318"]],[19,21,["H5975"]],[21,25,["H6607"]],[25,28,["H4631"]],[28,30,["H2009"]],[30,34,["H6963"]],[34,35,["H413"]],[35,38,["H559"]],[38,39,["H4100"]],[39,42,["H6311"]],[42,43,["H452"]]]},{"k":9401,"v":[[0,3,["H559"]],[3,8,["H7065","H7065"]],[8,11,["H3068"]],[11,12,["H430"]],[12,14,["H6635"]],[14,15,["H3588"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,21,["H5800"]],[21,23,["H1285"]],[23,25,["H2040","(H853)"]],[25,27,["H4196"]],[27,29,["H2026"]],[29,31,["H5030"]],[31,34,["H2719"]],[34,36,["H589"]],[36,39,["H905"]],[39,41,["H3498"]],[41,44,["H1245","(H853)"]],[44,46,["H5315"]],[46,50,["H3947"]]]},{"k":9402,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H1980"]],[7,8,["H7725"]],[8,11,["H1870"]],[11,14,["H4057"]],[14,16,["H1834"]],[16,20,["H935"]],[20,21,["H4886","(H853)"]],[21,22,["H2371"]],[22,25,["H4428"]],[25,26,["H5921"]],[26,27,["H758"]]]},{"k":9403,"v":[[0,2,["H3058"]],[2,4,["H1121"]],[4,6,["H5250"]],[6,9,["H4886"]],[9,12,["H4428"]],[12,13,["H5921"]],[13,14,["H3478"]],[14,16,["H477"]],[16,18,["H1121"]],[18,20,["H8202"]],[20,22,["H4480","H65"]],[22,25,["H4886"]],[25,28,["H5030"]],[28,31,["H8478"]]]},{"k":9404,"v":[[0,6,["H1961"]],[6,10,["H4422"]],[10,12,["H4480","H2719"]],[12,14,["H2371"]],[14,16,["H3058"]],[16,17,["H4191"]],[17,21,["H4422"]],[21,24,["H4480","H2719"]],[24,26,["H3058"]],[26,28,["H477"]],[28,29,["H4191"]]]},{"k":9405,"v":[[0,4,["H7604"]],[4,6,["H7651"]],[6,7,["H505"]],[7,9,["H3478"]],[9,10,["H3605"]],[10,12,["H1290"]],[12,13,["H834"]],[13,15,["H3808"]],[15,16,["H3766"]],[16,18,["H1168"]],[18,20,["H3605"]],[20,21,["H6310"]],[21,22,["H834"]],[22,24,["H3808"]],[24,25,["H5401"]],[25,26,[]]]},{"k":9406,"v":[[0,3,["H1980"]],[3,4,["H4480","H8033"]],[4,6,["H4672","(H853)"]],[6,7,["H477"]],[7,9,["H1121"]],[9,11,["H8202"]],[11,12,["H1931"]],[12,14,["H2790"]],[14,16,["H8147","H6240"]],[16,17,["H6776"]],[17,20,["H6440"]],[20,23,["H1931"]],[23,26,["H8147","H6240"]],[26,28,["H452"]],[28,29,["H5674"]],[29,30,["H413"]],[30,33,["H7993"]],[33,35,["H155"]],[35,36,["H413"]],[36,37,[]]]},{"k":9407,"v":[[0,3,["H5800","(H853)"]],[3,5,["H1241"]],[5,7,["H7323"]],[7,8,["H310"]],[8,9,["H452"]],[9,11,["H559"]],[11,16,["H4994"]],[16,17,["H5401"]],[17,19,["H1"]],[19,22,["H517"]],[22,27,["H1980","H310"]],[27,31,["H559"]],[31,34,["H1980"]],[34,36,["H7725"]],[36,37,["H3588"]],[37,38,["H4100"]],[38,41,["H6213"]],[41,43,[]]]},{"k":9408,"v":[[0,4,["H7725"]],[4,5,["H4480","H310"]],[5,8,["H3947","(H853)"]],[8,10,["H6776"]],[10,12,["H1241"]],[12,14,["H2076"]],[14,17,["H1310"]],[17,19,["H1320"]],[19,22,["H3627"]],[22,25,["H1241"]],[25,27,["H5414"]],[27,30,["H5971"]],[30,34,["H398"]],[34,37,["H6965"]],[37,39,["H1980"]],[39,40,["H310"]],[40,41,["H452"]],[41,43,["H8334"]],[43,45,[]]]},{"k":9409,"v":[[0,2,["H1130"]],[2,4,["H4428"]],[4,6,["H758"]],[6,11,["H6908","(H853)","H3605","H2428"]],[11,15,["H7970"]],[15,17,["H8147"]],[17,18,["H4428"]],[18,19,["H854"]],[19,22,["H5483"]],[22,24,["H7393"]],[24,28,["H5927"]],[28,30,["H6696","H5921"]],[30,31,["H8111"]],[31,33,["H3898"]],[33,35,[]]]},{"k":9410,"v":[[0,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H256"]],[6,7,["H4428"]],[7,9,["H3478"]],[9,12,["H5892"]],[12,14,["H559"]],[14,17,["H3541"]],[17,18,["H559"]],[18,19,["H1130"]]]},{"k":9411,"v":[[0,2,["H3701"]],[2,5,["H2091"]],[5,9,["H802"]],[9,13,["H1121"]],[13,16,["H2896"]],[16,18,[]]]},{"k":9412,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H6030"]],[6,8,["H559"]],[8,10,["H113"]],[10,12,["H4428"]],[12,16,["H1697"]],[16,17,["H589"]],[17,21,["H3605"]],[21,22,["H834"]],[22,24,[]]]},{"k":9413,"v":[[0,3,["H4397"]],[3,5,["H7725"]],[5,7,["H559"]],[7,8,["H3541"]],[8,9,["H559"]],[9,10,["H1130"]],[10,11,["H559"]],[11,12,["H3588"]],[12,15,["H7971"]],[15,16,["H413"]],[16,18,["H559"]],[18,21,["H5414"]],[21,24,["H3701"]],[24,27,["H2091"]],[27,30,["H802"]],[30,33,["H1121"]]]},{"k":9414,"v":[[0,1,["H3588"]],[1,4,["H7971","(H853)"]],[4,6,["H5650"]],[6,7,["H413"]],[7,10,["H4279"]],[10,11,["H518"]],[11,13,["H6256"]],[13,17,["H2664","(H853)"]],[17,19,["H1004"]],[19,22,["H1004"]],[22,25,["H5650"]],[25,29,["H1961"]],[29,31,["H3605"]],[31,33,["H4261"]],[33,36,["H5869"]],[36,39,["H7760"]],[39,43,["H3027"]],[43,47,["H3947"]]]},{"k":9415,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H7121"]],[6,7,["H3605"]],[7,9,["H2205"]],[9,12,["H776"]],[12,14,["H559"]],[14,15,["H3045"]],[15,18,["H4994"]],[18,20,["H7200"]],[20,21,["H3588"]],[21,22,["H2088"]],[22,24,["H1245"]],[24,25,["H7451"]],[25,26,["H3588"]],[26,28,["H7971"]],[28,29,["H413"]],[29,33,["H802"]],[33,37,["H1121"]],[37,41,["H3701"]],[41,45,["H2091"]],[45,48,["H4513","H4480"]],[48,50,["H3808"]]]},{"k":9416,"v":[[0,2,["H3605"]],[2,4,["H2205"]],[4,6,["H3605"]],[6,8,["H5971"]],[8,9,["H559"]],[9,10,["H413"]],[10,12,["H8085"]],[12,13,["H408"]],[13,16,["H3808"]],[16,17,["H14"]]]},{"k":9417,"v":[[0,3,["H559"]],[3,6,["H4397"]],[6,8,["H1130"]],[8,9,["H559"]],[9,11,["H113"]],[11,13,["H4428"]],[13,14,["H3605"]],[14,15,["H834"]],[15,18,["H7971"]],[18,20,["H413"]],[20,22,["H5650"]],[22,25,["H7223"]],[25,28,["H6213"]],[28,30,["H2088"]],[30,31,["H1697"]],[31,33,["H3201"]],[33,34,["H3808"]],[34,35,["H6213"]],[35,38,["H4397"]],[38,39,["H1980"]],[39,41,["H7725"]],[41,43,["H1697"]],[43,44,[]]]},{"k":9418,"v":[[0,2,["H1130"]],[2,3,["H7971"]],[3,4,["H413"]],[4,7,["H559"]],[7,9,["H430"]],[9,10,["H6213"]],[10,11,["H3541"]],[11,15,["H3254"]],[15,16,["H3541"]],[16,17,["H518"]],[17,19,["H6083"]],[19,21,["H8111"]],[21,23,["H5606"]],[23,25,["H8168"]],[25,27,["H3605"]],[27,29,["H5971"]],[29,30,["H834"]],[30,31,["H7272"]],[31,32,[]]]},{"k":9419,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H6030"]],[6,8,["H559"]],[8,9,["H1696"]],[9,12,["H408"]],[12,15,["H2296"]],[15,20,["H1984"]],[20,26,["H6605"]]]},{"k":9420,"v":[[0,5,["H1961"]],[5,8,["H8085","(H853)"]],[8,9,["H2088"]],[9,10,["H1697"]],[10,12,["H1931"]],[12,14,["H8354"]],[14,15,["H1931"]],[15,18,["H4428"]],[18,21,["H5521"]],[21,24,["H559"]],[24,25,["H413"]],[25,27,["H5650"]],[27,28,["H7760"]],[28,34,["H7760"]],[34,38,["H5921"]],[38,40,["H5892"]]]},{"k":9421,"v":[[0,2,["H2009"]],[2,4,["H5066"]],[4,5,["H259"]],[5,6,["H5030"]],[6,7,["H413"]],[7,8,["H256"]],[8,9,["H4428"]],[9,11,["H3478"]],[11,12,["H559"]],[12,13,["H3541"]],[13,14,["H559"]],[14,16,["H3068"]],[16,19,["H7200","(H853)"]],[19,20,["H3605"]],[20,21,["H2088"]],[21,22,["H1419"]],[22,23,["H1995"]],[23,24,["H2009"]],[24,27,["H5414"]],[27,31,["H3027"]],[31,33,["H3117"]],[33,37,["H3045"]],[37,38,["H3588"]],[38,39,["H589"]],[39,42,["H3068"]]]},{"k":9422,"v":[[0,2,["H256"]],[2,3,["H559"]],[3,5,["H4310"]],[5,8,["H559"]],[8,9,["H3541"]],[9,10,["H559"]],[10,12,["H3068"]],[12,17,["H5288"]],[17,20,["H8269"]],[20,23,["H4082"]],[23,26,["H559"]],[26,27,["H4310"]],[27,29,["H631"]],[29,31,["H4421"]],[31,34,["H559"]],[34,35,["H859"]]]},{"k":9423,"v":[[0,3,["H6485","(H853)"]],[3,6,["H5288"]],[6,9,["H8269"]],[9,12,["H4082"]],[12,15,["H1961"]],[15,17,["H3967"]],[17,19,["H7970"]],[19,20,["H8147"]],[20,22,["H310"]],[22,25,["H6485","(H853)"]],[25,26,["H3605"]],[26,28,["H5971"]],[28,30,["H3605"]],[30,32,["H1121"]],[32,34,["H3478"]],[34,36,["H7651"]],[36,37,["H505"]]]},{"k":9424,"v":[[0,4,["H3318"]],[4,6,["H6672"]],[6,8,["H1130"]],[8,10,["H8354"]],[10,12,["H7910"]],[12,15,["H5521"]],[15,16,["H1931"]],[16,19,["H4428"]],[19,21,["H7970"]],[21,23,["H8147"]],[23,24,["H4428"]],[24,26,["H5826"]],[26,27,[]]]},{"k":9425,"v":[[0,4,["H5288"]],[4,7,["H8269"]],[7,10,["H4082"]],[10,12,["H3318"]],[12,13,["H7223"]],[13,15,["H1130"]],[15,17,["H7971"]],[17,20,["H5046"]],[20,22,["H559"]],[22,25,["H376"]],[25,27,["H3318"]],[27,29,["H4480","H8111"]]]},{"k":9426,"v":[[0,3,["H559"]],[3,4,["H518"]],[4,8,["H3318"]],[8,10,["H7965"]],[10,11,["H8610"]],[11,13,["H2416"]],[13,15,["H518"]],[15,19,["H3318"]],[19,21,["H4421"]],[21,22,["H8610"]],[22,24,["H2416"]]]},{"k":9427,"v":[[0,2,["H428"]],[2,4,["H5288"]],[4,7,["H8269"]],[7,10,["H4082"]],[10,12,["H3318"]],[12,13,["H4480"]],[13,15,["H5892"]],[15,18,["H2428"]],[18,19,["H834"]],[19,20,["H310"]],[20,21,[]]]},{"k":9428,"v":[[0,3,["H5221"]],[3,5,["H376"]],[5,7,["H376"]],[7,10,["H758"]],[10,11,["H5127"]],[11,13,["H3478"]],[13,14,["H7291"]],[14,17,["H1130"]],[17,19,["H4428"]],[19,21,["H758"]],[21,22,["H4422"]],[22,23,["H5921"]],[23,25,["H5483"]],[25,28,["H6571"]]]},{"k":9429,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,7,["H3318"]],[7,9,["H5221","(H853)"]],[9,11,["H5483"]],[11,13,["H7393"]],[13,15,["H5221"]],[15,17,["H758"]],[17,20,["H1419"]],[20,21,["H4347"]]]},{"k":9430,"v":[[0,3,["H5030"]],[3,4,["H5066"]],[4,5,["H413"]],[5,7,["H4428"]],[7,9,["H3478"]],[9,11,["H559"]],[11,14,["H1980"]],[14,16,["H2388"]],[16,18,["H3045"]],[18,20,["H7200","(H853)"]],[20,21,["H834"]],[21,23,["H6213"]],[23,24,["H3588"]],[24,27,["H8666"]],[27,30,["H8141"]],[30,32,["H4428"]],[32,34,["H758"]],[34,37,["H5927"]],[37,38,["H5921"]],[38,39,[]]]},{"k":9431,"v":[[0,3,["H5650"]],[3,6,["H4428"]],[6,8,["H758"]],[8,9,["H559"]],[9,10,["H413"]],[10,13,["H430"]],[13,15,["H430"]],[15,18,["H2022"]],[18,19,["H5921","H3651"]],[19,22,["H2388"]],[22,23,["H4480"]],[23,25,["H199"]],[25,28,["H3898"]],[28,29,["H854"]],[29,33,["H4334"]],[33,35,["H518"]],[35,39,["H3808","H2388"]],[39,40,["H4480"]],[40,41,[]]]},{"k":9432,"v":[[0,2,["H6213"]],[2,3,["H2088"]],[3,4,["H1697"]],[4,8,["H5493","H4428"]],[8,10,["H376"]],[10,14,["H4480","H4725"]],[14,16,["H7760"]],[16,17,["H6346"]],[17,20,["H8478"]]]},{"k":9433,"v":[[0,2,["H859","H4487"]],[2,5,["H2428"]],[5,8,["H2428"]],[8,12,["H5307","H4480","(H853)"]],[12,13,["H5483"]],[13,15,["H5483"]],[15,17,["H7393"]],[17,19,["H7393"]],[19,24,["H3898"]],[24,28,["H4334"]],[28,30,["H518","H3808"]],[30,34,["H2388"]],[34,35,["H4480"]],[35,39,["H8085"]],[39,42,["H6963"]],[42,44,["H6213"]],[44,45,["H3651"]]]},{"k":9434,"v":[[0,5,["H1961"]],[5,8,["H8666"]],[8,11,["H8141"]],[11,13,["H1130"]],[13,14,["H6485","(H853)"]],[14,16,["H758"]],[16,19,["H5927"]],[19,21,["H663"]],[21,23,["H4421"]],[23,24,["H5973"]],[24,25,["H3478"]]]},{"k":9435,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H6485"]],[7,11,["H3557"]],[11,13,["H1980"]],[13,14,["H7121"]],[14,18,["H1121"]],[18,20,["H3478"]],[20,21,["H2583"]],[21,22,["H5048"]],[22,25,["H8147"]],[25,27,["H2835"]],[27,29,["H5795"]],[29,32,["H758"]],[32,33,["H4390","(H853)"]],[33,35,["H776"]]]},{"k":9436,"v":[[0,3,["H5066"]],[3,5,["H376"]],[5,7,["H430"]],[7,9,["H559"]],[9,10,["H413"]],[10,12,["H4428"]],[12,14,["H3478"]],[14,16,["H559"]],[16,17,["H3541"]],[17,18,["H559"]],[18,20,["H3068"]],[20,21,["H3282","H834"]],[21,23,["H758"]],[23,25,["H559"]],[25,27,["H3068"]],[27,29,["H430"]],[29,32,["H2022"]],[32,34,["H1931"]],[34,36,["H3808"]],[36,37,["H430"]],[37,40,["H6010"]],[40,44,["H5414","(H853)"]],[44,45,["H3605"]],[45,46,["H2088"]],[46,47,["H1419"]],[47,48,["H1995"]],[48,51,["H3027"]],[51,55,["H3045"]],[55,56,["H3588"]],[56,57,["H589"]],[57,60,["H3068"]]]},{"k":9437,"v":[[0,3,["H2583"]],[3,4,["H428"]],[4,6,["H5227"]],[6,8,["H428"]],[8,9,["H7651"]],[9,10,["H3117"]],[10,14,["H1961"]],[14,18,["H7637"]],[18,19,["H3117"]],[19,21,["H4421"]],[21,23,["H7126"]],[23,26,["H1121"]],[26,28,["H3478"]],[28,29,["H5221"]],[29,30,["(H853)"]],[30,32,["H758"]],[32,34,["H3967"]],[34,35,["H505"]],[35,36,["H7273"]],[36,38,["H259"]],[38,39,["H3117"]]]},{"k":9438,"v":[[0,3,["H3498"]],[3,4,["H5127"]],[4,6,["H663"]],[6,7,["H413"]],[7,9,["H5892"]],[9,13,["H2346"]],[13,14,["H5307"]],[14,15,["H5921"]],[15,16,["H6242"]],[16,18,["H7651"]],[18,19,["H505"]],[19,22,["H376"]],[22,25,["H3498"]],[25,27,["H1130"]],[27,28,["H5127"]],[28,30,["H935"]],[30,31,["H413"]],[31,33,["H5892"]],[33,37,["H2315","H2315"]]]},{"k":9439,"v":[[0,3,["H5650"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H2009"]],[7,8,["H4994"]],[8,11,["H8085"]],[11,12,["H3588"]],[12,14,["H4428"]],[14,17,["H1004"]],[17,19,["H3478"]],[19,21,["H2617"]],[21,22,["H4428"]],[22,27,["H4994"]],[27,28,["H7760"]],[28,29,["H8242"]],[29,32,["H4975"]],[32,34,["H2256"]],[34,37,["H7218"]],[37,40,["H3318"]],[40,41,["H413"]],[41,43,["H4428"]],[43,45,["H3478"]],[45,46,["H194"]],[46,49,["H2421","(H853)"]],[49,51,["H5315"]]]},{"k":9440,"v":[[0,3,["H2296"]],[3,4,["H8242"]],[4,7,["H4975"]],[7,10,["H2256"]],[10,13,["H7218"]],[13,15,["H935"]],[15,16,["H413"]],[16,18,["H4428"]],[18,20,["H3478"]],[20,22,["H559"]],[22,24,["H5650"]],[24,25,["H1130"]],[25,26,["H559"]],[26,29,["H4994"]],[29,31,["H5315"]],[31,32,["H2421"]],[32,35,["H559"]],[35,38,["H5750"]],[38,39,["H2416"]],[39,40,["H1931"]],[40,43,["H251"]]]},{"k":9441,"v":[[0,3,["H376"]],[3,6,["H5172"]],[6,12,["H4480"]],[12,16,["H4116"]],[16,17,["H2480"]],[17,21,["H559"]],[21,23,["H251"]],[23,24,["H1130"]],[24,27,["H559"]],[27,28,["H935"]],[28,30,["H3947"]],[30,33,["H1130"]],[33,35,["H3318"]],[35,36,["H413"]],[36,44,["H5927"]],[44,45,["H5921"]],[45,47,["H4818"]]]},{"k":9442,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H5892"]],[7,8,["H834"]],[8,10,["H1"]],[10,11,["H3947"]],[11,12,["H4480","H854"]],[12,14,["H1"]],[14,17,["H7725"]],[17,21,["H7760"]],[21,22,["H2351"]],[22,26,["H1834"]],[26,27,["H834"]],[27,29,["H1"]],[29,30,["H7760"]],[30,32,["H8111"]],[32,36,["H589"]],[36,40,["H7971"]],[40,43,["H1285"]],[43,46,["H3772"]],[46,48,["H1285"]],[48,54,["H7971"]]]},{"k":9443,"v":[[0,3,["H259"]],[3,4,["H376"]],[4,7,["H4480","H1121"]],[7,10,["H5030"]],[10,11,["H559"]],[11,12,["H413"]],[12,14,["H7453"]],[14,17,["H1697"]],[17,20,["H3068"]],[20,21,["H5221"]],[21,25,["H4994"]],[25,28,["H376"]],[28,29,["H3985"]],[29,31,["H5221"]],[31,32,[]]]},{"k":9444,"v":[[0,2,["H559"]],[2,6,["H3282","H834"]],[6,9,["H3808"]],[9,10,["H8085"]],[10,12,["H6963"]],[12,15,["H3068"]],[15,16,["H2009"]],[16,22,["H1980"]],[22,23,["H4480","(H853)"]],[23,26,["H738"]],[26,28,["H5221"]],[28,36,["H1980"]],[36,37,["H4480","H681"]],[37,40,["H738"]],[40,41,["H4672"]],[41,44,["H5221"]],[44,45,[]]]},{"k":9445,"v":[[0,3,["H4672"]],[3,4,["H312"]],[4,5,["H376"]],[5,7,["H559"]],[7,8,["H5221"]],[8,12,["H4994"]],[12,15,["H376"]],[15,16,["H5221"]],[16,21,["H5221"]],[21,23,["H6481"]],[23,24,[]]]},{"k":9446,"v":[[0,3,["H5030"]],[3,4,["H1980"]],[4,6,["H5975"]],[6,9,["H4428"]],[9,10,["H5921"]],[10,12,["H1870"]],[12,15,["H2664"]],[15,17,["H666"]],[17,18,["H5921"]],[18,20,["H5869"]]]},{"k":9447,"v":[[0,2,["H1961"]],[2,4,["H4428"]],[4,6,["H5674"]],[6,7,["H1931"]],[7,8,["H6817"]],[8,9,["H413"]],[9,11,["H4428"]],[11,14,["H559"]],[14,16,["H5650"]],[16,18,["H3318"]],[18,21,["H7130"]],[21,24,["H4421"]],[24,26,["H2009"]],[26,28,["H376"]],[28,30,["H5493"]],[30,32,["H935"]],[32,34,["H376"]],[34,35,["H413"]],[35,38,["H559"]],[38,39,["H8104","(H853)"]],[39,40,["H2088"]],[40,41,["H376"]],[41,42,["H518"]],[42,48,["H6485","H6485"]],[48,52,["H5315"]],[52,53,["H1961"]],[53,54,["H8478"]],[54,56,["H5315"]],[56,57,["H176"]],[57,61,["H8254"]],[61,63,["H3603"]],[63,65,["H3701"]]]},{"k":9448,"v":[[0,4,["H5650"]],[4,5,["H1961"]],[5,6,["H6213"]],[6,7,["H2008"]],[7,9,["H2008"]],[9,10,["H1931"]],[10,12,["H369"]],[12,15,["H4428"]],[15,17,["H3478"]],[17,18,["H559"]],[18,19,["H413"]],[19,21,["H3651"]],[21,24,["H4941"]],[24,26,["H859"]],[26,28,["H2782"]],[28,29,[]]]},{"k":9449,"v":[[0,3,["H4116"]],[3,5,["H5493","(H853)"]],[5,7,["H666"]],[7,9,["H4480","H5921"]],[9,11,["H5869"]],[11,14,["H4428"]],[14,16,["H3478"]],[16,17,["H5234"]],[17,19,["H3588"]],[19,20,["H1931"]],[20,24,["H4480","H5030"]]]},{"k":9450,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,10,["H3282"]],[10,14,["H7971"]],[14,18,["H4480","H3027","(H853)"]],[18,20,["H376"]],[20,26,["H2764"]],[26,29,["H5315"]],[29,31,["H1961"]],[31,32,["H8478"]],[32,34,["H5315"]],[34,37,["H5971"]],[37,38,["H8478"]],[38,40,["H5971"]]]},{"k":9451,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H1980"]],[6,7,["H5921"]],[7,9,["H1004"]],[9,10,["H5620"]],[10,12,["H2198"]],[12,14,["H935"]],[14,16,["H8111"]]]},{"k":9452,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H428"]],[7,8,["H1697"]],[8,10,["H5022"]],[10,12,["H3158"]],[12,13,["H1961"]],[13,15,["H3754"]],[15,16,["H834"]],[16,19,["H3157"]],[19,20,["H681"]],[20,23,["H1964"]],[23,25,["H256"]],[25,26,["H4428"]],[26,28,["H8111"]]]},{"k":9453,"v":[[0,2,["H256"]],[2,3,["H1696"]],[3,4,["H413"]],[4,5,["H5022"]],[5,6,["H559"]],[6,7,["H5414"]],[7,8,["(H853)"]],[8,10,["H3754"]],[10,14,["H1961"]],[14,18,["H1588"]],[18,20,["H3419"]],[20,21,["H3588"]],[21,22,["H1931"]],[22,25,["H7138","H681"]],[25,27,["H1004"]],[27,31,["H5414"]],[31,33,["H8478"]],[33,36,["H2896"]],[36,37,["H3754"]],[37,38,["H4480"]],[38,41,["H518"]],[41,46,["H2895","H5869"]],[46,49,["H5414"]],[49,52,["H4242"]],[52,54,["H2088"]],[54,56,["H3701"]]]},{"k":9454,"v":[[0,2,["H5022"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H256"]],[5,7,["H4480","H3068"]],[7,8,["H2486"]],[8,14,["H4480","H5414","(H853)"]],[14,16,["H5159"]],[16,19,["H1"]],[19,21,[]]]},{"k":9455,"v":[[0,2,["H256"]],[2,3,["H935"]],[3,4,["H413"]],[4,6,["H1004"]],[6,7,["H5620"]],[7,9,["H2198"]],[9,10,["H5921"]],[10,13,["H1697"]],[13,14,["H834"]],[14,15,["H5022"]],[15,17,["H3158"]],[17,19,["H1696"]],[19,20,["H413"]],[20,25,["H559"]],[25,28,["H3808"]],[28,29,["H5414"]],[29,30,["(H853)"]],[30,32,["H5159"]],[32,35,["H1"]],[35,40,["H7901"]],[40,41,["H5921"]],[41,43,["H4296"]],[43,46,["H5437","(H853)"]],[46,48,["H6440"]],[48,51,["H398"]],[51,52,["H3808"]],[52,53,["H3899"]]]},{"k":9456,"v":[[0,2,["H348"]],[2,4,["H802"]],[4,5,["H935"]],[5,6,["H413"]],[6,9,["H1696"]],[9,10,["H413"]],[10,12,["H4100","H2088"]],[12,15,["H7307"]],[15,17,["H5620"]],[17,20,["H398"]],[20,21,["H369"]],[21,22,["H3899"]]]},{"k":9457,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H3588"]],[6,8,["H1696"]],[8,9,["H413"]],[9,10,["H5022"]],[10,12,["H3158"]],[12,14,["H559"]],[14,17,["H5414"]],[17,18,["(H853)"]],[18,20,["H3754"]],[20,22,["H3701"]],[22,23,["H176"]],[23,25,["H518"]],[25,27,["H2654"]],[27,28,["H859"]],[28,31,["H5414"]],[31,34,["H3754"]],[34,35,["H8478"]],[35,39,["H559"]],[39,42,["H3808"]],[42,43,["H5414"]],[43,44,["(H853)"]],[44,46,["H3754"]]]},{"k":9458,"v":[[0,2,["H348"]],[2,4,["H802"]],[4,5,["H559"]],[5,6,["H413"]],[6,9,["H859"]],[9,10,["H6258"]],[10,11,["H6213","H5921"]],[11,13,["H4410"]],[13,15,["H3478"]],[15,16,["H6965"]],[16,18,["H398"]],[18,19,["H3899"]],[19,23,["H3820"]],[23,25,["H3190"]],[25,26,["H589"]],[26,28,["H5414"]],[28,29,["(H853)"]],[29,31,["H3754"]],[31,33,["H5022"]],[33,35,["H3158"]]]},{"k":9459,"v":[[0,3,["H3789"]],[3,4,["H5612"]],[4,6,["H256"]],[6,7,["H8034"]],[7,9,["H2856"]],[9,13,["H2368"]],[13,15,["H7971"]],[15,17,["H5612"]],[17,18,["H413"]],[18,20,["H2205"]],[20,22,["H413"]],[22,24,["H2715"]],[24,25,["H834"]],[25,29,["H5892"]],[29,30,["H3427"]],[30,31,["H854"]],[31,32,["H5022"]]]},{"k":9460,"v":[[0,3,["H3789"]],[3,6,["H5612"]],[6,7,["H559"]],[7,8,["H7121"]],[8,10,["H6685"]],[10,12,["H3427","(H853)"]],[12,13,["H5022"]],[13,15,["H7218"]],[15,18,["H5971"]]]},{"k":9461,"v":[[0,2,["H3427"]],[2,3,["H8147"]],[3,4,["H376"]],[4,5,["H1121"]],[5,7,["H1100"]],[7,8,["H5048"]],[8,13,["H5749"]],[13,15,["H559"]],[15,18,["H1288"]],[18,19,["H430"]],[19,22,["H4428"]],[22,27,["H3318"]],[27,29,["H5619"]],[29,34,["H4191"]]]},{"k":9462,"v":[[0,3,["H376"]],[3,6,["H5892"]],[6,9,["H2205"]],[9,12,["H2715"]],[12,13,["H834"]],[13,16,["H3427"]],[16,19,["H5892"]],[19,20,["H6213"]],[20,21,["H834"]],[21,22,["H348"]],[22,24,["H7971"]],[24,25,["H413"]],[25,28,["H834"]],[28,31,["H3789"]],[31,34,["H5612"]],[34,35,["H834"]],[35,38,["H7971"]],[38,39,["H413"]],[39,40,[]]]},{"k":9463,"v":[[0,2,["H7121"]],[2,4,["H6685"]],[4,6,["H3427","(H853)"]],[6,7,["H5022"]],[7,9,["H7218"]],[9,12,["H5971"]]]},{"k":9464,"v":[[0,4,["H935"]],[4,5,["H8147"]],[5,6,["H376"]],[6,7,["H1121"]],[7,9,["H1100"]],[9,11,["H3427"]],[11,12,["H5048"]],[12,16,["H376"]],[16,18,["H1100"]],[18,20,["H5749"]],[20,23,["(H853)"]],[23,24,["H5022"]],[24,27,["H5048"]],[27,30,["H5971"]],[30,31,["H559"]],[31,32,["H5022"]],[32,34,["H1288"]],[34,35,["H430"]],[35,38,["H4428"]],[38,43,["H3318"]],[43,45,["H4480","H2351"]],[45,47,["H5892"]],[47,49,["H5619"]],[49,52,["H68"]],[52,55,["H4191"]]]},{"k":9465,"v":[[0,3,["H7971"]],[3,4,["H413"]],[4,5,["H348"]],[5,6,["H559"]],[6,7,["H5022"]],[7,9,["H5619"]],[9,12,["H4191"]]]},{"k":9466,"v":[[0,5,["H1961"]],[5,7,["H348"]],[7,8,["H8085"]],[8,9,["H3588"]],[9,10,["H5022"]],[10,12,["H5619"]],[12,15,["H4191"]],[15,17,["H348"]],[17,18,["H559"]],[18,19,["H413"]],[19,20,["H256"]],[20,21,["H6965"]],[21,23,["H3423"]],[23,24,["(H853)"]],[24,26,["H3754"]],[26,28,["H5022"]],[28,30,["H3158"]],[30,31,["H834"]],[31,33,["H3985"]],[33,35,["H5414"]],[35,38,["H3701"]],[38,39,["H3588"]],[39,40,["H5022"]],[40,42,["H369"]],[42,43,["H2416"]],[43,44,["H3588"]],[44,45,["H4191"]]]},{"k":9467,"v":[[0,5,["H1961"]],[5,7,["H256"]],[7,8,["H8085"]],[8,9,["H3588"]],[9,10,["H5022"]],[10,12,["H4191"]],[12,14,["H256"]],[14,16,["H6965"]],[16,19,["H3381"]],[19,20,["H413"]],[20,22,["H3754"]],[22,24,["H5022"]],[24,26,["H3158"]],[26,29,["H3423"]],[29,31,[]]]},{"k":9468,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H452"]],[9,11,["H8664"]],[11,12,["H559"]]]},{"k":9469,"v":[[0,1,["H6965"]],[1,3,["H3381"]],[3,5,["H7121"]],[5,6,["H256"]],[6,7,["H4428"]],[7,9,["H3478"]],[9,10,["H834"]],[10,13,["H8111"]],[13,14,["H2009"]],[14,19,["H3754"]],[19,21,["H5022"]],[21,22,["H834","H8033"]],[22,26,["H3381"]],[26,28,["H3423"]],[28,29,[]]]},{"k":9470,"v":[[0,4,["H1696"]],[4,5,["H413"]],[5,7,["H559"]],[7,8,["H3541"]],[8,9,["H559"]],[9,11,["H3068"]],[11,14,["H7523"]],[14,16,["H1571"]],[16,18,["H3423"]],[18,22,["H1696"]],[22,23,["H413"]],[23,25,["H559"]],[25,26,["H3541"]],[26,27,["H559"]],[27,29,["H3068"]],[29,32,["H4725"]],[32,33,["H834"]],[33,34,["H3611"]],[34,35,["H3952","(H853)"]],[35,37,["H1818"]],[37,39,["H5022"]],[39,41,["H3611"]],[41,42,["H3952","(H853)"]],[42,44,["H1818"]],[44,45,["H1571"]],[45,46,["H859"]]]},{"k":9471,"v":[[0,2,["H256"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H452"]],[5,8,["H4672"]],[8,12,["H341"]],[12,15,["H559"]],[15,18,["H4672"]],[18,20,["H3282"]],[20,23,["H4376"]],[23,26,["H6213"]],[26,27,["H7451"]],[27,30,["H5869"]],[30,33,["H3068"]]]},{"k":9472,"v":[[0,1,["H2009"]],[1,4,["H935"]],[4,5,["H7451"]],[5,6,["H413"]],[6,11,["H1197"]],[11,13,["H310"]],[13,17,["H3772"]],[17,19,["H256"]],[19,22,["H8366"]],[22,25,["H7023"]],[25,31,["H6113"]],[31,33,["H5800"]],[33,35,["H3478"]]]},{"k":9473,"v":[[0,3,["H5414","(H853)"]],[3,5,["H1004"]],[5,8,["H1004"]],[8,10,["H3379"]],[10,12,["H1121"]],[12,14,["H5028"]],[14,18,["H1004"]],[18,20,["H1201"]],[20,22,["H1121"]],[22,24,["H281"]],[24,25,["H413"]],[25,27,["H3708"]],[27,28,["H834"]],[28,34,["H3707"]],[34,39,["H2398","(H853)","H3478"]]]},{"k":9474,"v":[[0,3,["H348"]],[3,4,["H1571"]],[4,5,["H1696"]],[5,7,["H3068"]],[7,8,["H559"]],[8,10,["H3611"]],[10,12,["H398","(H853)"]],[12,13,["H348"]],[13,16,["H2426"]],[16,18,["H3157"]]]},{"k":9475,"v":[[0,3,["H4191"]],[3,5,["H256"]],[5,8,["H5892"]],[8,10,["H3611"]],[10,12,["H398"]],[12,16,["H4191"]],[16,19,["H7704"]],[19,22,["H5775"]],[22,25,["H8064"]],[25,26,["H398"]]]},{"k":9476,"v":[[0,1,["H7535"]],[1,3,["H1961"]],[3,4,["H3808"]],[4,7,["H256"]],[7,8,["H834"]],[8,11,["H4376"]],[11,13,["H6213"]],[13,14,["H7451"]],[14,17,["H5869"]],[17,20,["H3068"]],[20,21,["H834","(H853)"]],[21,22,["H348"]],[22,24,["H802"]],[24,26,["H5496"]]]},{"k":9477,"v":[[0,4,["H3966"]],[4,5,["H8581"]],[5,7,["H1980","H310"]],[7,8,["H1544"]],[8,11,["H3605"]],[11,13,["H834"]],[13,14,["H6213"]],[14,16,["H567"]],[16,17,["H834"]],[17,19,["H3068"]],[19,21,["H3423"]],[21,22,["H4480","H6440"]],[22,24,["H1121"]],[24,26,["H3478"]]]},{"k":9478,"v":[[0,5,["H1961"]],[5,7,["H256"]],[7,8,["H8085","(H853)"]],[8,9,["H428"]],[9,10,["H1697"]],[10,13,["H7167"]],[13,15,["H899"]],[15,17,["H7760"]],[17,18,["H8242"]],[18,19,["H5921"]],[19,21,["H1320"]],[21,23,["H6684"]],[23,25,["H7901"]],[25,27,["H8242"]],[27,29,["H1980"]],[29,30,["H328"]]]},{"k":9479,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H452"]],[9,11,["H8664"]],[11,12,["H559"]]]},{"k":9480,"v":[[0,1,["H7200"]],[1,3,["H3588"]],[3,4,["H256"]],[4,6,["H3665"]],[6,7,["H4480","H6440"]],[7,9,["H3282","H3588"]],[9,12,["H3665"]],[12,13,["H4480","H6440"]],[13,17,["H3808"]],[17,18,["H935"]],[18,20,["H7451"]],[20,23,["H3117"]],[23,27,["H1121"]],[27,28,["H3117"]],[28,31,["H935"]],[31,33,["H7451"]],[33,34,["H5921"]],[34,36,["H1004"]]]},{"k":9481,"v":[[0,3,["H3427"]],[3,4,["H7969"]],[4,5,["H8141"]],[5,6,["H369"]],[6,7,["H4421"]],[7,8,["H996"]],[8,9,["H758"]],[9,11,["H3478"]]]},{"k":9482,"v":[[0,5,["H1961"]],[5,8,["H7992"]],[8,9,["H8141"]],[9,11,["H3092"]],[11,13,["H4428"]],[13,15,["H3063"]],[15,17,["H3381"]],[17,18,["H413"]],[18,20,["H4428"]],[20,22,["H3478"]]]},{"k":9483,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H5650"]],[9,10,["H3045"]],[10,12,["H3588"]],[12,15,["H7433"]],[15,19,["H587"]],[19,21,["H2814"]],[21,23,["H4480","H3947"]],[23,29,["H4480","H3027"]],[29,32,["H4428"]],[32,34,["H758"]]]},{"k":9484,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H3092"]],[5,8,["H1980"]],[8,9,["H854"]],[9,12,["H4421"]],[12,14,["H7433"]],[14,16,["H3092"]],[16,17,["H559"]],[17,18,["H413"]],[18,20,["H4428"]],[20,22,["H3478"]],[22,29,["H5971"]],[29,32,["H5971"]],[32,34,["H5483"]],[34,37,["H5483"]]]},{"k":9485,"v":[[0,2,["H3092"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,8,["H3478"]],[8,9,["H1875"]],[9,12,["H4994"]],[12,13,["(H853)"]],[13,15,["H1697"]],[15,18,["H3068"]],[18,20,["H3117"]]]},{"k":9486,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,9,["H6908","(H853)","H5030"]],[9,11,["H702"]],[11,12,["H3967"]],[12,13,["H376"]],[13,15,["H559"]],[15,16,["H413"]],[16,20,["H1980"]],[20,21,["H5921"]],[21,22,["H7433"]],[22,24,["H4421"]],[24,25,["H518"]],[25,28,["H2308"]],[28,31,["H559"]],[31,33,["H5927"]],[33,36,["H136"]],[36,38,["H5414"]],[38,42,["H3027"]],[42,45,["H4428"]]]},{"k":9487,"v":[[0,2,["H3092"]],[2,3,["H559"]],[3,6,["H369"]],[6,7,["H6311"]],[7,9,["H5030"]],[9,12,["H3068"]],[12,13,["H5750"]],[13,17,["H1875"]],[17,18,["H4480","H854"]],[18,19,[]]]},{"k":9488,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3092"]],[8,11,["H5750"]],[11,12,["H259"]],[12,13,["H376"]],[13,14,["H4321"]],[14,16,["H1121"]],[16,18,["H3229"]],[18,19,["H4480","H854"]],[19,23,["H1875"]],[23,24,["(H853)"]],[24,26,["H3068"]],[26,28,["H589"]],[28,29,["H8130"]],[29,31,["H3588"]],[31,34,["H3808"]],[34,35,["H5012"]],[35,36,["H2896"]],[36,37,["H5921"]],[37,39,["H3588","H518"]],[39,40,["H7451"]],[40,42,["H3092"]],[42,43,["H559"]],[43,45,["H408"]],[45,47,["H4428"]],[47,48,["H559"]],[48,49,["H3651"]]]},{"k":9489,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H7121","H413"]],[6,7,["H259"]],[7,8,["H5631"]],[8,10,["H559"]],[10,11,["H4116"]],[11,13,["H4321"]],[13,15,["H1121"]],[15,17,["H3229"]]]},{"k":9490,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,7,["H3092"]],[7,9,["H4428"]],[9,11,["H3063"]],[11,12,["H3427"]],[12,13,["H376"]],[13,14,["H5921"]],[14,16,["H3678"]],[16,19,["H3847"]],[19,21,["H899"]],[21,25,["H1637"]],[25,28,["H6607"]],[28,31,["H8179"]],[31,33,["H8111"]],[33,35,["H3605"]],[35,37,["H5030"]],[37,38,["H5012"]],[38,39,["H6440"]],[39,40,[]]]},{"k":9491,"v":[[0,2,["H6667"]],[2,4,["H1121"]],[4,6,["H3668"]],[6,7,["H6213"]],[7,9,["H7161"]],[9,11,["H1270"]],[11,14,["H559"]],[14,15,["H3541"]],[15,16,["H559"]],[16,18,["H3068"]],[18,20,["H428"]],[20,23,["H5055","(H853)"]],[23,25,["H758"]],[25,26,["H5704"]],[26,29,["H3615"]],[29,30,[]]]},{"k":9492,"v":[[0,2,["H3605"]],[2,4,["H5030"]],[4,5,["H5012"]],[5,6,["H3651"]],[6,7,["H559"]],[7,9,["H5927"]],[9,11,["H7433"]],[11,13,["H6743"]],[13,16,["H3068"]],[16,18,["H5414"]],[18,22,["H4428"]],[22,23,["H3027"]]]},{"k":9493,"v":[[0,3,["H4397"]],[3,4,["H834"]],[4,6,["H1980"]],[6,8,["H7121"]],[8,9,["H4321"]],[9,10,["H1696"]],[10,11,["H413"]],[11,13,["H559"]],[13,14,["H2009"]],[14,15,["H4994"]],[15,17,["H1697"]],[17,20,["H5030"]],[20,22,["H2896"]],[22,23,["H413"]],[23,25,["H4428"]],[25,27,["H259"]],[27,28,["H6310"]],[28,31,["H1697"]],[31,34,["H4994"]],[34,35,["H1961"]],[35,38,["H1697"]],[38,40,["H259"]],[40,42,["H4480"]],[42,44,["H1696"]],[44,48,["H2896"]]]},{"k":9494,"v":[[0,2,["H4321"]],[2,3,["H559"]],[3,6,["H3068"]],[6,7,["H2416"]],[7,8,["H834"]],[8,10,["H3068"]],[10,11,["H559"]],[11,12,["H413"]],[12,17,["H1696"]]]},{"k":9495,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H4428"]],[6,9,["H4428"]],[9,10,["H559"]],[10,11,["H413"]],[11,13,["H4321"]],[13,16,["H1980"]],[16,17,["H413"]],[17,18,["H7433"]],[18,20,["H4421"]],[20,21,["H518"]],[21,24,["H2308"]],[24,27,["H559","H413"]],[27,29,["H5927"]],[29,31,["H6743"]],[31,34,["H3068"]],[34,36,["H5414"]],[36,40,["H3027"]],[40,43,["H4428"]]]},{"k":9496,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H5704"]],[7,8,["H4100"]],[8,9,["H6471"]],[9,11,["H589"]],[11,12,["H7650"]],[12,14,["H834"]],[14,16,["H1696","H413"]],[16,18,["H3808"]],[18,19,["H7535"]],[19,23,["H571"]],[23,26,["H8034"]],[26,29,["H3068"]]]},{"k":9497,"v":[[0,3,["H559"]],[3,5,["H7200","(H853)"]],[5,6,["H3605"]],[6,7,["H3478"]],[7,8,["H6327"]],[8,9,["H413"]],[9,11,["H2022"]],[11,13,["H6629"]],[13,14,["H834"]],[14,16,["H369"]],[16,18,["H7462"]],[18,21,["H3068"]],[21,22,["H559"]],[22,23,["H428"]],[23,25,["H3808"]],[25,26,["H113"]],[26,29,["H7725"]],[29,31,["H376"]],[31,34,["H1004"]],[34,36,["H7965"]]]},{"k":9498,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3092"]],[8,11,["H3808"]],[11,12,["H559","H413"]],[12,17,["H5012"]],[17,18,["H3808"]],[18,19,["H2896"]],[19,20,["H5921"]],[20,22,["H3588","H518"]],[22,23,["H7451"]]]},{"k":9499,"v":[[0,3,["H559"]],[3,4,["H8085"]],[4,6,["H3651"]],[6,8,["H1697"]],[8,11,["H3068"]],[11,13,["H7200","(H853)"]],[13,15,["H3068"]],[15,16,["H3427"]],[16,17,["H5921"]],[17,19,["H3678"]],[19,21,["H3605"]],[21,23,["H6635"]],[23,25,["H8064"]],[25,26,["H5975"]],[26,27,["H5921"]],[27,32,["H4480","H3225"]],[32,36,["H4480","H8040"]]]},{"k":9500,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H4310"]],[5,7,["H6601","(H853)"]],[7,8,["H256"]],[8,13,["H5927"]],[13,15,["H5307"]],[15,17,["H7433"]],[17,19,["H2088"]],[19,20,["H559"]],[20,23,["H3541"]],[23,25,["H2088"]],[25,26,["H559"]],[26,29,["H3541"]]]},{"k":9501,"v":[[0,4,["H3318"]],[4,6,["H7307"]],[6,8,["H5975"]],[8,9,["H6440"]],[9,11,["H3068"]],[11,13,["H559"]],[13,14,["H589"]],[14,16,["H6601"]],[16,17,[]]]},{"k":9502,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H4100"]],[7,10,["H559"]],[10,14,["H3318"]],[14,18,["H1961"]],[18,20,["H8267"]],[20,21,["H7307"]],[21,24,["H6310"]],[24,26,["H3605"]],[26,28,["H5030"]],[28,31,["H559"]],[31,34,["H6601"]],[34,37,["H3201"]],[37,38,["H1571"]],[38,40,["H3318"]],[40,42,["H6213"]],[42,43,["H3651"]]]},{"k":9503,"v":[[0,1,["H6258"]],[1,3,["H2009"]],[3,5,["H3068"]],[5,7,["H5414"]],[7,9,["H8267"]],[9,10,["H7307"]],[10,13,["H6310"]],[13,15,["H3605"]],[15,16,["H428"]],[16,18,["H5030"]],[18,21,["H3068"]],[21,23,["H1696"]],[23,24,["H7451"]],[24,25,["H5921"]],[25,26,[]]]},{"k":9504,"v":[[0,2,["H6667"]],[2,4,["H1121"]],[4,6,["H3668"]],[6,8,["H5066"]],[8,10,["H5221","(H853)"]],[10,11,["H4321"]],[11,12,["H5921"]],[12,14,["H3895"]],[14,16,["H559"]],[16,17,["H335"]],[17,18,["H2088"]],[18,19,["H5674"]],[19,21,["H7307"]],[21,24,["H3068"]],[24,25,["H4480","H854"]],[25,28,["H1696"]],[28,29,["H854"]],[29,30,[]]]},{"k":9505,"v":[[0,2,["H4321"]],[2,3,["H559"]],[3,4,["H2009"]],[4,7,["H7200"]],[7,9,["H1931"]],[9,10,["H3117"]],[10,11,["H834"]],[11,15,["H935"]],[15,17,["H2315"]],[17,18,["H2315"]],[18,21,["H2247"]]]},{"k":9506,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H3947","(H853)"]],[7,8,["H4321"]],[8,12,["H7725"]],[12,13,["H413"]],[13,14,["H526"]],[14,16,["H8269"]],[16,19,["H5892"]],[19,21,["H413"]],[21,22,["H3101"]],[22,24,["H4428"]],[24,25,["H1121"]]]},{"k":9507,"v":[[0,2,["H559"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H4428"]],[6,7,["H7760","(H853)"]],[7,8,["H2088"]],[8,12,["H1004","H3608"]],[12,14,["H398"]],[14,17,["H3899"]],[17,19,["H3906"]],[19,22,["H4325"]],[22,24,["H3906"]],[24,25,["H5704"]],[25,27,["H935"]],[27,29,["H7965"]]]},{"k":9508,"v":[[0,2,["H4321"]],[2,3,["H559"]],[3,4,["H518"]],[4,8,["H7725","H7725"]],[8,10,["H7965"]],[10,12,["H3068"]],[12,14,["H3808"]],[14,15,["H1696"]],[15,20,["H559"]],[20,21,["H8085"]],[21,23,["H5971"]],[23,24,["H3605"]],[24,27,[]]]},{"k":9509,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,7,["H3092"]],[7,9,["H4428"]],[9,11,["H3063"]],[11,13,["H5927"]],[13,15,["H7433"]]]},{"k":9510,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3092"]],[8,12,["H2664"]],[12,14,["H935"]],[14,17,["H4421"]],[17,19,["H3847"]],[19,20,["H859"]],[20,23,["H899"]],[23,26,["H4428"]],[26,28,["H3478"]],[28,30,["H2664"]],[30,32,["H935"]],[32,35,["H4421"]]]},{"k":9511,"v":[[0,3,["H4428"]],[3,5,["H758"]],[5,6,["H6680","(H853)"]],[6,7,["H834"]],[7,8,["H7970"]],[8,10,["H8147"]],[10,15,["H8269"]],[15,16,["H834"]],[16,17,["H7393"]],[17,18,["H559"]],[18,19,["H3898"]],[19,20,["H3808"]],[20,21,["H854"]],[21,22,["H6996"]],[22,24,["H1419"]],[24,25,["H3588","H518"]],[25,26,["H905"]],[26,27,["H854"]],[27,29,["H4428"]],[29,31,["H3478"]]]},{"k":9512,"v":[[0,5,["H1961"]],[5,8,["H8269"]],[8,11,["H7393"]],[11,12,["H7200","(H853)"]],[12,13,["H3092"]],[13,15,["H1992"]],[15,16,["H559"]],[16,17,["H389"]],[17,18,["H1931"]],[18,21,["H4428"]],[21,23,["H3478"]],[23,27,["H5493"]],[27,29,["H3898"]],[29,30,["H5921"]],[30,33,["H3092"]],[33,35,["H2199"]]]},{"k":9513,"v":[[0,5,["H1961"]],[5,8,["H8269"]],[8,11,["H7393"]],[11,12,["H7200"]],[12,13,["H3588"]],[13,14,["H1931"]],[14,16,["H3808"]],[16,18,["H4428"]],[18,20,["H3478"]],[20,24,["H7725"]],[24,26,["H4480","H310"]],[26,27,[]]]},{"k":9514,"v":[[0,4,["H376"]],[4,5,["H4900"]],[5,7,["H7198"]],[7,10,["H8537"]],[10,12,["H5221","(H853)"]],[12,14,["H4428"]],[14,16,["H3478"]],[16,17,["H996"]],[17,19,["H1694"]],[19,22,["H8302"]],[22,25,["H559"]],[25,31,["H7395"]],[31,32,["H2015"]],[32,34,["H3027"]],[34,38,["H3318"]],[38,39,["H4480"]],[39,41,["H4264"]],[41,42,["H3588"]],[42,45,["H2470"]]]},{"k":9515,"v":[[0,3,["H4421"]],[3,4,["H5927"]],[4,5,["H1931"]],[5,6,["H3117"]],[6,9,["H4428"]],[9,10,["H1961"]],[10,12,["H5975"]],[12,15,["H4818"]],[15,16,["H5227"]],[16,18,["H758"]],[18,20,["H4191"]],[20,22,["H6153"]],[22,25,["H1818"]],[25,27,["H3332"]],[27,30,["H4347"]],[30,31,["H413"]],[31,33,["H2436"]],[33,36,["H7393"]]]},{"k":9516,"v":[[0,3,["H5674"]],[3,5,["H7440"]],[5,8,["H4264"]],[8,12,["H935"]],[12,15,["H8121"]],[15,16,["H559"]],[16,18,["H376"]],[18,19,["H413"]],[19,21,["H5892"]],[21,24,["H376"]],[24,25,["H413"]],[25,28,["H776"]]]},{"k":9517,"v":[[0,3,["H4428"]],[3,4,["H4191"]],[4,7,["H935"]],[7,9,["H8111"]],[9,12,["H6912","(H853)"]],[12,14,["H4428"]],[14,16,["H8111"]]]},{"k":9518,"v":[[0,3,["H7857","(H853)"]],[3,5,["H7393"]],[5,6,["H5921"]],[6,8,["H1295"]],[8,10,["H8111"]],[10,13,["H3611"]],[13,15,["H3952","(H853)"]],[15,17,["H1818"]],[17,20,["H7364"]],[20,22,["H2185"]],[22,26,["H1697"]],[26,29,["H3068"]],[29,30,["H834"]],[30,32,["H1696"]]]},{"k":9519,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H256"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,16,["H8127"]],[16,17,["H1004"]],[17,18,["H834"]],[18,20,["H1129"]],[20,22,["H3605"]],[22,24,["H5892"]],[24,25,["H834"]],[25,27,["H1129"]],[27,29,["H1992"]],[29,30,["H3808"]],[30,31,["H3789"]],[31,32,["H5921"]],[32,34,["H5612"]],[34,37,["H1697","H3117"]],[37,40,["H4428"]],[40,42,["H3478"]]]},{"k":9520,"v":[[0,2,["H256"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,8,["H274"]],[8,10,["H1121"]],[10,11,["H4427"]],[11,14,["H8478"]]]},{"k":9521,"v":[[0,2,["H3092"]],[2,4,["H1121"]],[4,6,["H609"]],[6,9,["H4427"]],[9,10,["H5921"]],[10,11,["H3063"]],[11,14,["H702"]],[14,15,["H8141"]],[15,17,["H256"]],[17,18,["H4428"]],[18,20,["H3478"]]]},{"k":9522,"v":[[0,1,["H3092"]],[1,3,["H7970"]],[3,5,["H2568"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H6242"]],[16,18,["H2568"]],[18,19,["H8141"]],[19,21,["H3389"]],[21,24,["H517"]],[24,25,["H8034"]],[25,27,["H5806"]],[27,29,["H1323"]],[29,31,["H7977"]]]},{"k":9523,"v":[[0,3,["H1980"]],[3,5,["H3605"]],[5,7,["H1870"]],[7,9,["H609"]],[9,11,["H1"]],[11,15,["H3808","H5493"]],[15,16,["H4480"]],[16,18,["H6213"]],[18,22,["H3477"]],[22,25,["H5869"]],[25,28,["H3068"]],[28,29,["H389"]],[29,32,["H1116"]],[32,34,["H3808"]],[34,36,["H5493"]],[36,39,["H5971"]],[39,40,["H2076"]],[40,43,["H6999"]],[43,44,["H5750"]],[44,48,["H1116"]]]},{"k":9524,"v":[[0,2,["H3092"]],[2,4,["H7999"]],[4,5,["H5973"]],[5,7,["H4428"]],[7,9,["H3478"]]]},{"k":9525,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3092"]],[8,11,["H1369"]],[11,12,["H834"]],[12,14,["H6213"]],[14,16,["H834"]],[16,18,["H3898"]],[18,20,["H1992"]],[20,21,["H3808"]],[21,22,["H3789"]],[22,23,["H5921"]],[23,25,["H5612"]],[25,28,["H1697","H3117"]],[28,31,["H4428"]],[31,33,["H3063"]]]},{"k":9526,"v":[[0,3,["H3499"]],[3,6,["H6945"]],[6,7,["H834"]],[7,8,["H7604"]],[8,11,["H3117"]],[11,14,["H1"]],[14,15,["H609"]],[15,17,["H1197"]],[17,19,["H4480"]],[19,21,["H776"]]]},{"k":9527,"v":[[0,4,["H369"]],[4,5,["H4428"]],[5,7,["H123"]],[7,9,["H5324"]],[9,11,["H4428"]]]},{"k":9528,"v":[[0,1,["H3092"]],[1,2,["H6213"]],[2,3,["H591"]],[3,5,["H8659"]],[5,7,["H1980"]],[7,9,["H211"]],[9,11,["H2091"]],[11,14,["H1980"]],[14,15,["H3808"]],[15,16,["H3588"]],[16,18,["H591"]],[18,20,["H7665"]],[20,22,["H6100"]]]},{"k":9529,"v":[[0,1,["H227"]],[1,2,["H559"]],[2,3,["H274"]],[3,5,["H1121"]],[5,7,["H256"]],[7,8,["H413"]],[8,9,["H3092"]],[9,12,["H5650"]],[12,13,["H1980"]],[13,14,["H5973"]],[14,16,["H5650"]],[16,19,["H591"]],[19,21,["H3092"]],[21,22,["H14"]],[22,23,["H3808"]]]},{"k":9530,"v":[[0,2,["H3092"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,10,["H5973"]],[10,12,["H1"]],[12,15,["H5892"]],[15,17,["H1732"]],[17,19,["H1"]],[19,21,["H3088"]],[21,23,["H1121"]],[23,24,["H4427"]],[24,27,["H8478"]]]},{"k":9531,"v":[[0,1,["H274"]],[1,3,["H1121"]],[3,5,["H256"]],[5,8,["H4427"]],[8,9,["H5921"]],[9,10,["H3478"]],[10,12,["H8111"]],[12,14,["H7651","H6240"]],[14,15,["H8141"]],[15,17,["H3092"]],[17,18,["H4428"]],[18,20,["H3063"]],[20,22,["H4427"]],[22,24,["H8141"]],[24,25,["H5921"]],[25,26,["H3478"]]]},{"k":9532,"v":[[0,3,["H6213"]],[3,4,["H7451"]],[4,7,["H5869"]],[7,10,["H3068"]],[10,12,["H1980"]],[12,15,["H1870"]],[15,18,["H1"]],[18,22,["H1870"]],[22,25,["H517"]],[25,29,["H1870"]],[29,31,["H3379"]],[31,33,["H1121"]],[33,35,["H5028"]],[35,36,["H834"]],[36,40,["H2398","(H853)","H3478"]]]},{"k":9533,"v":[[0,3,["H5647","(H853)"]],[3,4,["H1168"]],[4,6,["H7812"]],[6,11,["H3707","(H853)"]],[11,13,["H3068"]],[13,14,["H430"]],[14,16,["H3478"]],[16,19,["H3605"]],[19,20,["H834"]],[20,22,["H1"]],[22,24,["H6213"]]]},{"k":9534,"v":[[0,2,["H4124"]],[2,3,["H6586"]],[3,5,["H3478"]],[5,6,["H310"]],[6,8,["H4194"]],[8,10,["H256"]]]},{"k":9535,"v":[[0,2,["H274"]],[2,4,["H5307"]],[4,5,["H1157"]],[5,7,["H7639"]],[7,11,["H5944"]],[11,12,["H834"]],[12,15,["H8111"]],[15,18,["H2470"]],[18,21,["H7971"]],[21,22,["H4397"]],[22,24,["H559"]],[24,25,["H413"]],[25,27,["H1980"]],[27,28,["H1875"]],[28,30,["H1176"]],[30,32,["H430"]],[32,34,["H6138"]],[34,35,["H518"]],[35,38,["H2421"]],[38,41,["H4480","H2483","H2088"]]]},{"k":9536,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H1696"]],[7,8,["H413"]],[8,9,["H452"]],[9,11,["H8664"]],[11,12,["H6965"]],[12,14,["H5927"]],[14,16,["H7125"]],[16,18,["H4397"]],[18,21,["H4428"]],[21,23,["H8111"]],[23,25,["H1696"]],[25,26,["H413"]],[26,31,["H4480","H1097"]],[31,34,["H369"]],[34,36,["H430"]],[36,38,["H3478"]],[38,40,["H859"]],[40,41,["H1980"]],[41,43,["H1875"]],[43,45,["H1176"]],[45,47,["H430"]],[47,49,["H6138"]]]},{"k":9537,"v":[[0,2,["H3651"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H3068"]],[6,9,["H3808"]],[9,11,["H3381"]],[11,12,["H4480"]],[12,14,["H4296"]],[14,16,["H834","H8033"]],[16,20,["H5927"]],[20,21,["H3588"]],[21,24,["H4191","H4191"]],[24,26,["H452"]],[26,27,["H1980"]]]},{"k":9538,"v":[[0,4,["H4397"]],[4,6,["H7725"]],[6,7,["H413"]],[7,10,["H559"]],[10,11,["H413"]],[11,13,["H4100"]],[13,16,["H2088"]],[16,18,["H7725"]]]},{"k":9539,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H5927"]],[7,9,["H376"]],[9,10,["H5927"]],[10,12,["H7125"]],[12,15,["H559"]],[15,16,["H413"]],[16,18,["H1980"]],[18,20,["H7725"]],[20,21,["H413"]],[21,23,["H4428"]],[23,24,["H834"]],[24,25,["H7971"]],[25,28,["H1696"]],[28,29,["H413"]],[29,31,["H3541"]],[31,32,["H559"]],[32,34,["H3068"]],[34,38,["H4480","H1097"]],[38,41,["H369"]],[41,43,["H430"]],[43,45,["H3478"]],[45,47,["H859"]],[47,48,["H7971"]],[48,50,["H1875"]],[50,52,["H1176"]],[52,54,["H430"]],[54,56,["H6138"]],[56,57,["H3651"]],[57,60,["H3808"]],[60,62,["H3381"]],[62,63,["H4480"]],[63,65,["H4296"]],[65,67,["H834","H8033"]],[67,71,["H5927"]],[71,72,["H3588"]],[72,75,["H4191","H4191"]]]},{"k":9540,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H4100"]],[6,7,["H4941"]],[7,9,["H376"]],[9,12,["H834"]],[12,14,["H5927"]],[14,16,["H7125"]],[16,19,["H1696","H413"]],[19,20,["(H853)"]],[20,21,["H428"]],[21,22,["H1697"]]]},{"k":9541,"v":[[0,3,["H559","H413"]],[3,9,["H376","H1167","H8181"]],[9,11,["H247"]],[11,14,["H232"]],[14,16,["H5785"]],[16,19,["H4975"]],[19,22,["H559"]],[22,23,["H1931"]],[23,25,["H452"]],[25,27,["H8664"]]]},{"k":9542,"v":[[0,4,["H7971"]],[4,5,["H413"]],[5,8,["H8269"]],[8,10,["H2572"]],[10,13,["H2572"]],[13,17,["H5927"]],[17,18,["H413"]],[18,21,["H2009"]],[21,23,["H3427"]],[23,24,["H5921"]],[24,26,["H7218"]],[26,29,["H2022"]],[29,32,["H1696"]],[32,33,["H413"]],[33,36,["H376"]],[36,38,["H430"]],[38,40,["H4428"]],[40,42,["H1696"]],[42,44,["H3381"]]]},{"k":9543,"v":[[0,2,["H452"]],[2,3,["H6030"]],[3,5,["H1696"]],[5,6,["H413"]],[6,8,["H8269"]],[8,10,["H2572"]],[10,11,["H518"]],[11,12,["H589"]],[12,15,["H376"]],[15,17,["H430"]],[17,20,["H784"]],[20,22,["H3381"]],[22,23,["H4480"]],[23,24,["H8064"]],[24,26,["H398"]],[26,30,["H2572"]],[30,34,["H3381"]],[34,35,["H784"]],[35,36,["H4480"]],[36,37,["H8064"]],[37,39,["H398"]],[39,43,["H2572"]]]},{"k":9544,"v":[[0,1,["H7725"]],[1,4,["H7971"]],[4,5,["H413"]],[5,7,["H312"]],[7,8,["H8269"]],[8,10,["H2572"]],[10,13,["H2572"]],[13,16,["H6030"]],[16,18,["H1696"]],[18,19,["H413"]],[19,22,["H376"]],[22,24,["H430"]],[24,25,["H3541"]],[25,28,["H4428"]],[28,29,["H559"]],[29,31,["H3381"]],[31,32,["H4120"]]]},{"k":9545,"v":[[0,2,["H452"]],[2,3,["H6030"]],[3,5,["H1696"]],[5,6,["H413"]],[6,8,["H518"]],[8,9,["H589"]],[9,12,["H376"]],[12,14,["H430"]],[14,16,["H784"]],[16,18,["H3381"]],[18,19,["H4480"]],[19,20,["H8064"]],[20,22,["H398"]],[22,26,["H2572"]],[26,29,["H784"]],[29,31,["H430"]],[31,33,["H3381"]],[33,34,["H4480"]],[34,35,["H8064"]],[35,37,["H398"]],[37,41,["H2572"]]]},{"k":9546,"v":[[0,3,["H7971"]],[3,4,["H7725"]],[4,6,["H8269"]],[6,9,["H7992"]],[9,10,["H2572"]],[10,13,["H2572"]],[13,16,["H7992"]],[16,17,["H8269"]],[17,19,["H2572"]],[19,21,["H5927"]],[21,23,["H935"]],[23,25,["H3766"]],[25,26,["H5921"]],[26,28,["H1290"]],[28,29,["H5048"]],[29,30,["H452"]],[30,32,["H2603","H413"]],[32,35,["H1696"]],[35,36,["H413"]],[36,39,["H376"]],[39,41,["H430"]],[41,44,["H4994"]],[44,47,["H5315"]],[47,50,["H5315"]],[50,52,["H428"]],[52,53,["H2572"]],[53,55,["H5650"]],[55,57,["H3365"]],[57,60,["H5869"]]]},{"k":9547,"v":[[0,1,["H2009"]],[1,5,["H3381","H784"]],[5,6,["H4480"]],[6,7,["H8064"]],[7,10,["H398","(H853)"]],[10,12,["H8147"]],[12,13,["H8269"]],[13,16,["H7223"]],[16,17,["H2572"]],[17,20,["H2572"]],[20,24,["H5315"]],[24,25,["H6258"]],[25,27,["H3365"]],[27,30,["H5869"]]]},{"k":9548,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H1696"]],[7,8,["H413"]],[8,9,["H452"]],[9,11,["H3381"]],[11,12,["H854"]],[12,16,["H408","H3372"]],[16,17,["H4480","H6440"]],[17,21,["H6965"]],[21,24,["H3381"]],[24,25,["H854"]],[25,27,["H413"]],[27,29,["H4428"]]]},{"k":9549,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,11,["H3282","H834"]],[11,14,["H7971"]],[14,15,["H4397"]],[15,17,["H1875"]],[17,19,["H1176"]],[19,21,["H430"]],[21,23,["H6138"]],[23,27,["H4480","H1097"]],[27,30,["H369"]],[30,31,["H430"]],[31,33,["H3478"]],[33,35,["H1875"]],[35,38,["H1697"]],[38,39,["H3651"]],[39,42,["H3808"]],[42,44,["H3381"]],[44,45,["H4480"]],[45,47,["H4296"]],[47,49,["H834","H8033"]],[49,53,["H5927"]],[53,54,["H3588"]],[54,57,["H4191","H4191"]]]},{"k":9550,"v":[[0,3,["H4191"]],[3,7,["H1697"]],[7,10,["H3068"]],[10,11,["H834"]],[11,12,["H452"]],[12,14,["H1696"]],[14,16,["H3088"]],[16,17,["H4427"]],[17,20,["H8478"]],[20,23,["H8147"]],[23,24,["H8141"]],[24,26,["H3088"]],[26,28,["H1121"]],[28,30,["H3092"]],[30,31,["H4428"]],[31,33,["H3063"]],[33,34,["H3588"]],[34,36,["H1961"]],[36,37,["H3808"]],[37,38,["H1121"]]]},{"k":9551,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H274"]],[8,9,["H834"]],[9,11,["H6213"]],[11,13,["H1992"]],[13,14,["H3808"]],[14,15,["H3789"]],[15,16,["H5921"]],[16,18,["H5612"]],[18,21,["H1697","H3117"]],[21,24,["H4428"]],[24,26,["H3478"]]]},{"k":9552,"v":[[0,5,["H1961"]],[5,8,["H3068"]],[8,11,["H5927","(H853)"]],[11,12,["H452"]],[12,14,["H8064"]],[14,17,["H5591"]],[17,19,["H452"]],[19,20,["H1980"]],[20,22,["H477"]],[22,23,["H4480"]],[23,24,["H1537"]]]},{"k":9553,"v":[[0,2,["H452"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H477"]],[5,6,["H3427"]],[6,7,["H6311"]],[7,10,["H4994"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,15,["H7971"]],[15,17,["H5704"]],[17,18,["H1008"]],[18,20,["H477"]],[20,21,["H559"]],[21,26,["H3068"]],[26,27,["H2416"]],[27,31,["H5315"]],[31,32,["H2416"]],[32,35,["H518"]],[35,36,["H5800"]],[36,41,["H3381"]],[41,43,["H1008"]]]},{"k":9554,"v":[[0,3,["H1121"]],[3,6,["H5030"]],[6,7,["H834"]],[7,10,["H1008"]],[10,12,["H3318"]],[12,13,["H413"]],[13,14,["H477"]],[14,16,["H559"]],[16,17,["H413"]],[17,19,["H3045"]],[19,21,["H3588"]],[21,23,["H3068"]],[23,26,["H3947","(H853)"]],[26,28,["H113"]],[28,29,["H4480","H5921"]],[29,31,["H7218"]],[31,33,["H3117"]],[33,36,["H559"]],[36,37,["H1571"]],[37,38,["H589"]],[38,39,["H3045"]],[39,44,["H2814"]]]},{"k":9555,"v":[[0,2,["H452"]],[2,3,["H559"]],[3,6,["H477"]],[6,7,["H3427"]],[7,8,["H6311"]],[8,11,["H4994"]],[11,12,["H3588"]],[12,14,["H3068"]],[14,16,["H7971"]],[16,19,["H3405"]],[19,22,["H559"]],[22,25,["H3068"]],[25,26,["H2416"]],[26,30,["H5315"]],[30,31,["H2416"]],[31,34,["H518"]],[34,35,["H5800"]],[35,39,["H935"]],[39,41,["H3405"]]]},{"k":9556,"v":[[0,3,["H1121"]],[3,6,["H5030"]],[6,7,["H834"]],[7,10,["H3405"]],[10,11,["H5066"]],[11,12,["H413"]],[12,13,["H477"]],[13,15,["H559"]],[15,16,["H413"]],[16,18,["H3045"]],[18,20,["H3588"]],[20,22,["H3068"]],[22,25,["H3947","(H853)"]],[25,27,["H113"]],[27,28,["H4480","H5921"]],[28,30,["H7218"]],[30,32,["H3117"]],[32,35,["H559"]],[35,36,["H1571"]],[36,37,["H589"]],[37,38,["H3045"]],[38,43,["H2814"]]]},{"k":9557,"v":[[0,2,["H452"]],[2,3,["H559"]],[3,6,["H3427"]],[6,9,["H4994"]],[9,10,["H6311"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,15,["H7971"]],[15,18,["H3383"]],[18,21,["H559"]],[21,24,["H3068"]],[24,25,["H2416"]],[25,29,["H5315"]],[29,30,["H2416"]],[30,33,["H518"]],[33,34,["H5800"]],[34,38,["H8147"]],[38,40,["H1980"]]]},{"k":9558,"v":[[0,2,["H2572"]],[2,3,["H376"]],[3,6,["H4480","H1121"]],[6,9,["H5030"]],[9,10,["H1980"]],[10,12,["H5975"]],[12,14,["H4480","H5048"]],[14,16,["H4480","H7350"]],[16,19,["H8147"]],[19,20,["H5975"]],[20,21,["H5921"]],[21,22,["H3383"]]]},{"k":9559,"v":[[0,2,["H452"]],[2,3,["H3947","(H853)"]],[3,5,["H155"]],[5,9,["H1563"]],[9,11,["H5221","(H853)"]],[11,13,["H4325"]],[13,17,["H2673"]],[17,18,["H2008"]],[18,20,["H2008"]],[20,24,["H8147"]],[24,26,["H5674"]],[26,29,["H2724"]]]},{"k":9560,"v":[[0,5,["H1961"]],[5,10,["H5674"]],[10,12,["H452"]],[12,13,["H559"]],[13,14,["H413"]],[14,15,["H477"]],[15,16,["H7592"]],[16,17,["H4100"]],[17,20,["H6213"]],[20,23,["H2962"]],[23,27,["H3947"]],[27,28,["H4480","H5973"]],[28,31,["H477"]],[31,32,["H559"]],[32,35,["H4994"]],[35,38,["H8147"]],[38,39,["H6310"]],[39,42,["H7307"]],[42,43,["H1961"]],[43,44,["H413"]],[44,45,[]]]},{"k":9561,"v":[[0,3,["H559"]],[3,6,["H7592"]],[6,9,["H7185"]],[9,11,["H518"]],[11,13,["H7200"]],[13,18,["H3947"]],[18,19,["H4480","H854"]],[19,23,["H1961"]],[23,24,["H3651"]],[24,28,["H518"]],[28,29,["H369"]],[29,32,["H3808"]],[32,33,["H1961"]],[33,34,[]]]},{"k":9562,"v":[[0,5,["H1961"]],[5,7,["H1992"]],[7,10,["H1980"]],[10,12,["H1696"]],[12,14,["H2009"]],[14,18,["H7393"]],[18,20,["H784"]],[20,22,["H5483"]],[22,24,["H784"]],[24,26,["H6504"]],[26,28,["H8147"]],[28,29,["H996"]],[29,31,["H452"]],[31,33,["H5927"]],[33,36,["H5591"]],[36,38,["H8064"]]]},{"k":9563,"v":[[0,2,["H477"]],[2,3,["H7200"]],[3,6,["H1931"]],[6,7,["H6817"]],[7,9,["H1"]],[9,11,["H1"]],[11,13,["H7393"]],[13,15,["H3478"]],[15,18,["H6571"]],[18,22,["H7200"]],[22,24,["H3808"]],[24,25,["H5750"]],[25,29,["H2388"]],[29,33,["H899"]],[33,35,["H7167"]],[35,38,["H8147"]],[38,39,["H7168"]]]},{"k":9564,"v":[[0,3,["H7311"]],[3,4,["(H853)"]],[4,6,["H155"]],[6,8,["H452"]],[8,9,["H834"]],[9,10,["H5307"]],[10,11,["H4480","H5921"]],[11,15,["H7725"]],[15,17,["H5975"]],[17,18,["H5921"]],[18,20,["H8193"]],[20,22,["H3383"]]]},{"k":9565,"v":[[0,3,["H3947","(H853)"]],[3,5,["H155"]],[5,7,["H452"]],[7,8,["H834"]],[8,9,["H5307"]],[9,10,["H4480","H5921"]],[10,13,["H5221","(H853)"]],[13,15,["H4325"]],[15,17,["H559"]],[17,18,["H346"]],[18,21,["H3068"]],[21,22,["H430"]],[22,24,["H452"]],[24,27,["H1931"]],[27,28,["H637"]],[28,30,["H5221","(H853)"]],[30,32,["H4325"]],[32,34,["H2673"]],[34,35,["H2008"]],[35,37,["H2008"]],[37,39,["H477"]],[39,41,["H5674"]]]},{"k":9566,"v":[[0,4,["H1121"]],[4,7,["H5030"]],[7,8,["H834"]],[8,11,["H4480","H5048"]],[11,13,["H3405"]],[13,14,["H7200"]],[14,17,["H559"]],[17,19,["H7307"]],[19,21,["H452"]],[21,23,["H5117"]],[23,24,["H5921"]],[24,25,["H477"]],[25,28,["H935"]],[28,30,["H7125"]],[30,34,["H7812"]],[34,37,["H776"]],[37,39,[]]]},{"k":9567,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H2009"]],[6,7,["H4994"]],[7,9,["H3426"]],[9,10,["H854"]],[10,12,["H5650"]],[12,13,["H2572"]],[13,14,["H1121","H2428"]],[14,15,["H376"]],[15,18,["H1980"]],[18,21,["H4994"]],[21,23,["H1245","(H853)"]],[23,25,["H113"]],[25,27,["H6435"]],[27,29,["H7307"]],[29,32,["H3068"]],[32,36,["H5375"]],[36,38,["H7993"]],[38,41,["H259"]],[41,42,["H2022"]],[42,43,["H176"]],[43,45,["H259"]],[45,46,["H1516"]],[46,49,["H559"]],[49,52,["H3808"]],[52,53,["H7971"]]]},{"k":9568,"v":[[0,4,["H6484"]],[4,6,["H5704"]],[6,9,["H954"]],[9,11,["H559"]],[11,12,["H7971"]],[12,14,["H7971"]],[14,16,["H2572"]],[16,17,["H376"]],[17,20,["H1245"]],[20,21,["H7969"]],[21,22,["H3117"]],[22,24,["H4672"]],[24,26,["H3808"]]]},{"k":9569,"v":[[0,5,["H7725"]],[5,6,["H413"]],[6,9,["H1931"]],[9,10,["H3427"]],[10,12,["H3405"]],[12,14,["H559"]],[14,15,["H413"]],[15,19,["H3808"]],[19,20,["H559"]],[20,21,["H413"]],[21,23,["H1980"]],[23,24,["H408"]]]},{"k":9570,"v":[[0,3,["H376"]],[3,6,["H5892"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H477"]],[9,10,["H2009"]],[10,13,["H4994"]],[13,15,["H4186"]],[15,18,["H5892"]],[18,20,["H2896"]],[20,21,["H834"]],[21,23,["H113"]],[23,24,["H7200"]],[24,27,["H4325"]],[27,29,["H7451"]],[29,32,["H776"]],[32,33,["H7921"]]]},{"k":9571,"v":[[0,3,["H559"]],[3,4,["H3947"]],[4,7,["H2319"]],[7,8,["H6746"]],[8,10,["H7760"]],[10,11,["H4417"]],[11,12,["H8033"]],[12,15,["H3947"]],[15,17,["H413"]],[17,18,[]]]},{"k":9572,"v":[[0,4,["H3318"]],[4,5,["H413"]],[5,7,["H4161"]],[7,10,["H4325"]],[10,12,["H7993"]],[12,14,["H4417"]],[14,16,["H8033"]],[16,18,["H559"]],[18,19,["H3541"]],[19,20,["H559"]],[20,22,["H3068"]],[22,25,["H7495"]],[25,26,["H428"]],[26,27,["H4325"]],[27,30,["H3808"]],[30,31,["H1961"]],[31,33,["H4480","H8033"]],[33,35,["H5750"]],[35,36,["H4194"]],[36,38,["H7921"]],[38,39,[]]]},{"k":9573,"v":[[0,3,["H4325"]],[3,5,["H7495"]],[5,6,["H5704"]],[6,7,["H2088"]],[7,8,["H3117"]],[8,12,["H1697"]],[12,14,["H477"]],[14,15,["H834"]],[15,17,["H1696"]]]},{"k":9574,"v":[[0,4,["H5927"]],[4,6,["H4480","H8033"]],[6,8,["H1008"]],[8,11,["H1931"]],[11,14,["H5927"]],[14,17,["H1870"]],[17,20,["H3318"]],[20,21,["H6996"]],[21,22,["H5288"]],[22,24,["H4480"]],[24,26,["H5892"]],[26,28,["H7046"]],[28,31,["H559"]],[31,35,["H5927"]],[35,38,["H7142"]],[38,40,["H5927"]],[40,43,["H7142"]]]},{"k":9575,"v":[[0,3,["H6437"]],[3,4,["H310"]],[4,6,["H7200"]],[6,10,["H7043"]],[10,14,["H8034"]],[14,17,["H3068"]],[17,21,["H3318"]],[21,22,["H8147"]],[22,24,["H1677"]],[24,26,["H4480"]],[26,28,["H3293"]],[28,30,["H1234"]],[30,31,["H705"]],[31,33,["H8147"]],[33,34,["H3206"]],[34,35,["H4480"]],[35,36,[]]]},{"k":9576,"v":[[0,3,["H1980"]],[3,5,["H4480","H8033"]],[5,6,["H413"]],[6,7,["H2022"]],[7,8,["H3760"]],[8,11,["H4480","H8033"]],[11,13,["H7725"]],[13,15,["H8111"]]]},{"k":9577,"v":[[0,2,["H3088"]],[2,4,["H1121"]],[4,6,["H256"]],[6,9,["H4427"]],[9,10,["H5921"]],[10,11,["H3478"]],[11,13,["H8111"]],[13,15,["H8083","H6240"]],[15,16,["H8141"]],[16,18,["H3092"]],[18,19,["H4428"]],[19,21,["H3063"]],[21,23,["H4427"]],[23,24,["H8147","H6240"]],[24,25,["H8141"]]]},{"k":9578,"v":[[0,3,["H6213"]],[3,4,["H7451"]],[4,7,["H5869"]],[7,10,["H3068"]],[10,11,["H7535"]],[11,12,["H3808"]],[12,15,["H1"]],[15,19,["H517"]],[19,23,["H5493","(H853)"]],[23,25,["H4676"]],[25,27,["H1168"]],[27,28,["H834"]],[28,30,["H1"]],[30,32,["H6213"]]]},{"k":9579,"v":[[0,1,["H7535"]],[1,3,["H1692"]],[3,6,["H2403"]],[6,8,["H3379"]],[8,10,["H1121"]],[10,12,["H5028"]],[12,13,["H834"]],[13,14,["(H853)"]],[14,15,["H3478"]],[15,17,["H2398"]],[17,19,["H5493"]],[19,20,["H3808"]],[20,21,["H4480"]]]},{"k":9580,"v":[[0,2,["H4338"]],[2,3,["H4428"]],[3,5,["H4124"]],[5,6,["H1961"]],[6,8,["H5349"]],[8,10,["H7725"]],[10,13,["H4428"]],[13,15,["H3478"]],[15,17,["H3967"]],[17,18,["H505"]],[18,19,["H3733"]],[19,22,["H3967"]],[22,23,["H505"]],[23,24,["H352"]],[24,27,["H6785"]]]},{"k":9581,"v":[[0,5,["H1961"]],[5,7,["H256"]],[7,9,["H4194"]],[9,12,["H4428"]],[12,14,["H4124"]],[14,15,["H6586"]],[15,18,["H4428"]],[18,20,["H3478"]]]},{"k":9582,"v":[[0,2,["H4428"]],[2,3,["H3088"]],[3,5,["H3318"]],[5,7,["H4480","H8111"]],[7,9,["H1931"]],[9,10,["H3117"]],[10,12,["H6485","(H853)"]],[12,13,["H3605"]],[13,14,["H3478"]]]},{"k":9583,"v":[[0,3,["H1980"]],[3,5,["H7971"]],[5,6,["H413"]],[6,7,["H3092"]],[7,9,["H4428"]],[9,11,["H3063"]],[11,12,["H559"]],[12,14,["H4428"]],[14,16,["H4124"]],[16,18,["H6586"]],[18,23,["H1980"]],[23,24,["H854"]],[24,26,["H413"]],[26,27,["H4124"]],[27,29,["H4421"]],[29,32,["H559"]],[32,36,["H5927"]],[36,43,["H5971"]],[43,46,["H5971"]],[46,49,["H5483"]],[49,52,["H5483"]]]},{"k":9584,"v":[[0,3,["H559"]],[3,4,["H335","H2088"]],[4,5,["H1870"]],[5,9,["H5927"]],[9,12,["H559"]],[12,14,["H1870"]],[14,17,["H4057"]],[17,19,["H123"]]]},{"k":9585,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H1980"]],[6,9,["H4428"]],[9,11,["H3063"]],[11,14,["H4428"]],[14,16,["H123"]],[16,21,["H5437"]],[21,23,["H7651"]],[23,24,["H3117"]],[24,25,["H1870"]],[25,28,["H1961"]],[28,29,["H3808"]],[29,30,["H4325"]],[30,33,["H4264"]],[33,37,["H929"]],[37,38,["H834"]],[38,39,["H7272"]],[39,40,[]]]},{"k":9586,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H162"]],[7,8,["H3588"]],[8,10,["H3068"]],[10,12,["H7121"]],[12,13,["H428"]],[13,14,["H7969"]],[14,15,["H4428"]],[15,18,["H5414"]],[18,22,["H3027"]],[22,24,["H4124"]]]},{"k":9587,"v":[[0,2,["H3092"]],[2,3,["H559"]],[3,6,["H369"]],[6,7,["H6311"]],[7,9,["H5030"]],[9,12,["H3068"]],[12,16,["H1875"]],[16,17,["(H853)"]],[17,19,["H3068"]],[19,20,["H4480","H854"]],[20,23,["H259"]],[23,26,["H4428"]],[26,29,["H4480","H5650","H3478"]],[29,30,["H6030"]],[30,32,["H559"]],[32,33,["H6311"]],[33,35,["H477"]],[35,37,["H1121"]],[37,39,["H8202"]],[39,40,["H834"]],[40,41,["H3332"]],[41,42,["H4325"]],[42,43,["H5921"]],[43,45,["H3027"]],[45,47,["H452"]]]},{"k":9588,"v":[[0,2,["H3092"]],[2,3,["H559"]],[3,5,["H1697"]],[5,8,["H3068"]],[8,9,["H3426"]],[9,10,["H854"]],[10,14,["H4428"]],[14,16,["H3478"]],[16,18,["H3092"]],[18,21,["H4428"]],[21,23,["H123"]],[23,25,["H3381"]],[25,26,["H413"]],[26,27,[]]]},{"k":9589,"v":[[0,2,["H477"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,8,["H3478"]],[8,9,["H4100"]],[9,16,["H1980"]],[16,18,["H413"]],[18,20,["H5030"]],[20,23,["H1"]],[23,25,["H413"]],[25,27,["H5030"]],[27,30,["H517"]],[30,33,["H4428"]],[33,35,["H3478"]],[35,36,["H559"]],[36,39,["H408"]],[39,40,["H3588"]],[40,42,["H3068"]],[42,44,["H7121"]],[44,45,["H428"]],[45,46,["H7969"]],[46,47,["H4428"]],[47,50,["H5414"]],[50,54,["H3027"]],[54,56,["H4124"]]]},{"k":9590,"v":[[0,2,["H477"]],[2,3,["H559"]],[3,6,["H3068"]],[6,8,["H6635"]],[8,9,["H2416"]],[9,10,["H6440"]],[10,11,["H834"]],[11,13,["H5975"]],[13,14,["H3588"]],[14,17,["H3884"]],[17,19,["H589"]],[19,20,["H5375"]],[20,22,["H6440"]],[22,24,["H3092"]],[24,26,["H4428"]],[26,28,["H3063"]],[28,32,["H5027"]],[32,33,["H413"]],[33,35,["H518"]],[35,36,["H7200"]],[36,37,[]]]},{"k":9591,"v":[[0,2,["H6258"]],[2,3,["H3947"]],[3,6,["H5059"]],[6,11,["H1961"]],[11,14,["H5059"]],[14,15,["H5059"]],[15,18,["H3027"]],[18,21,["H3068"]],[21,22,["H1961"]],[22,23,["H5921"]],[23,24,[]]]},{"k":9592,"v":[[0,3,["H559"]],[3,4,["H3541"]],[4,5,["H559"]],[5,7,["H3068"]],[7,8,["H6213"]],[8,9,["H2088"]],[9,10,["H5158"]],[10,13,["H1356","H1356"]]]},{"k":9593,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,8,["H3808"]],[8,9,["H7200"]],[9,10,["H7307"]],[10,11,["H3808"]],[11,14,["H7200"]],[14,15,["H1653"]],[15,17,["H1931"]],[17,18,["H5158"]],[18,21,["H4390"]],[21,23,["H4325"]],[23,27,["H8354"]],[27,29,["H859"]],[29,32,["H4735"]],[32,35,["H929"]]]},{"k":9594,"v":[[0,2,["H2063"]],[2,7,["H7043"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H5414","(H853)"]],[16,18,["H4124"]],[18,22,["H3027"]]]},{"k":9595,"v":[[0,4,["H5221"]],[4,5,["H3605"]],[5,6,["H4013"]],[6,7,["H5892"]],[7,9,["H3605"]],[9,10,["H4004"]],[10,11,["H5892"]],[11,14,["H5307"]],[14,15,["H3605"]],[15,16,["H2896"]],[16,17,["H6086"]],[17,19,["H5640"]],[19,20,["H3605"]],[20,21,["H4599"]],[21,23,["H4325"]],[23,25,["H3510"]],[25,26,["H3605"]],[26,27,["H2896"]],[27,30,["H2513"]],[30,32,["H68"]]]},{"k":9596,"v":[[0,5,["H1961"]],[5,8,["H1242"]],[8,12,["H4503"]],[12,14,["H5927"]],[14,16,["H2009"]],[16,18,["H935"]],[18,19,["H4325"]],[19,22,["H4480","H1870"]],[22,24,["H123"]],[24,27,["H776"]],[27,29,["H4390"]],[29,30,["H854"]],[30,31,["H4325"]]]},{"k":9597,"v":[[0,3,["H3605"]],[3,5,["H4124"]],[5,6,["H8085"]],[6,7,["H3588"]],[7,9,["H4428"]],[9,12,["H5927"]],[12,14,["H3898"]],[14,19,["H6817","H4480","H3605"]],[19,25,["H2296"]],[25,26,["H2290"]],[26,28,["H4605"]],[28,30,["H5975"]],[30,31,["H5921"]],[31,33,["H1366"]]]},{"k":9598,"v":[[0,5,["H7925"]],[5,8,["H1242"]],[8,11,["H8121"]],[11,12,["H2224"]],[12,13,["H5921"]],[13,15,["H4325"]],[15,18,["H4124"]],[18,19,["H7200","(H853)"]],[19,21,["H4325"]],[21,25,["H4480","H5048"]],[25,27,["H122"]],[27,29,["H1818"]]]},{"k":9599,"v":[[0,3,["H559"]],[3,4,["H2088"]],[4,6,["H1818"]],[6,8,["H4428"]],[8,11,["H2717","H2717"]],[11,15,["H5221","(H853)"]],[15,16,["H376"]],[16,17,["H7453"]],[17,18,["H6258"]],[18,20,["H4124"]],[20,23,["H7998"]]]},{"k":9600,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H4264"]],[7,9,["H3478"]],[9,11,["H3478"]],[11,13,["H6965"]],[13,15,["H5221","(H853)"]],[15,17,["H4124"]],[17,21,["H5127"]],[21,22,["H4480","H6440"]],[22,26,["H5221"]],[26,28,["H5221","(H853)"]],[28,30,["H4124"]],[30,34,[]]]},{"k":9601,"v":[[0,4,["H2040"]],[4,6,["H5892"]],[6,9,["H3605"]],[9,10,["H2896"]],[10,11,["H2513"]],[11,14,["H7993"]],[14,16,["H376"]],[16,18,["H68"]],[18,20,["H4390"]],[20,24,["H5640"]],[24,25,["H3605"]],[25,27,["H4599"]],[27,29,["H4325"]],[29,31,["H5307"]],[31,32,["H3605"]],[32,34,["H2896"]],[34,35,["H6086"]],[35,36,["H5704"]],[36,38,["H7025"]],[38,39,["H7604"]],[39,42,["H68"]],[42,46,["H7051"]],[46,48,["H5437"]],[48,51,["H5221"]],[51,52,[]]]},{"k":9602,"v":[[0,4,["H4428"]],[4,6,["H4124"]],[6,7,["H7200"]],[7,8,["H3588"]],[8,10,["H4421"]],[10,13,["H2388"]],[13,14,["H4480"]],[14,17,["H3947"]],[17,18,["H854"]],[18,20,["H7651"]],[20,21,["H3967"]],[21,22,["H376"]],[22,24,["H8025"]],[24,25,["H2719"]],[25,28,["H1234"]],[28,30,["H413"]],[30,32,["H4428"]],[32,34,["H123"]],[34,37,["H3201"]],[37,38,["H3808"]]]},{"k":9603,"v":[[0,3,["H3947","(H853)"]],[3,5,["H1060"]],[5,6,["H1121"]],[6,7,["H834"]],[7,10,["H4427"]],[10,13,["H8478"]],[13,15,["H5927"]],[15,20,["H5930"]],[20,21,["H5921"]],[21,23,["H2346"]],[23,26,["H1961"]],[26,27,["H1419"]],[27,28,["H7110"]],[28,29,["H5921"]],[29,30,["H3478"]],[30,33,["H5265"]],[33,34,["H4480","H5921"]],[34,37,["H7725"]],[37,41,["H776"]]]},{"k":9604,"v":[[0,3,["H6817"]],[3,5,["H259"]],[5,6,["H802"]],[6,9,["H4480","H802"]],[9,12,["H1121"]],[12,15,["H5030"]],[15,16,["H413"]],[16,17,["H477"]],[17,18,["H559"]],[18,20,["H5650"]],[20,22,["H376"]],[22,24,["H4191"]],[24,26,["H859"]],[26,27,["H3045"]],[27,28,["H3588"]],[28,30,["H5650"]],[30,31,["H1961"]],[31,32,["H3372","(H853)"]],[32,34,["H3068"]],[34,37,["H5383"]],[37,39,["H935"]],[39,41,["H3947"]],[41,43,["(H853)"]],[43,45,["H8147"]],[45,46,["H3206"]],[46,49,["H5650"]]]},{"k":9605,"v":[[0,2,["H477"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4100"]],[6,9,["H6213"]],[9,12,["H5046"]],[12,14,["H4100"]],[14,15,["H3426"]],[15,19,["H1004"]],[19,22,["H559"]],[22,24,["H8198"]],[24,26,["H369"]],[26,28,["H3605"]],[28,31,["H1004"]],[31,32,["H3588","H518"]],[32,34,["H610"]],[34,36,["H8081"]]]},{"k":9606,"v":[[0,3,["H559"]],[3,4,["H1980"]],[4,5,["H7592"]],[5,7,["H3627"]],[7,8,["H4480","H2351"]],[8,9,["H4480","H854"]],[9,10,["H3605"]],[10,12,["H7934"]],[12,14,["H7386"]],[14,15,["H3627"]],[15,19,["H408","H4591"]]]},{"k":9607,"v":[[0,6,["H935"]],[6,9,["H5462"]],[9,11,["H1817"]],[11,12,["H1157"]],[12,15,["H1157"]],[15,17,["H1121"]],[17,21,["H3332"]],[21,22,["H5921"]],[22,23,["H3605"]],[23,24,["H428"]],[24,25,["H3627"]],[25,30,["H5265"]],[30,34,["H4392"]]]},{"k":9608,"v":[[0,3,["H1980"]],[3,4,["H4480","H854"]],[4,7,["H5462"]],[7,9,["H1817"]],[9,10,["H1157"]],[10,13,["H1157"]],[13,15,["H1121"]],[15,16,["H1992"]],[16,17,["H5066"]],[17,20,["H413"]],[20,23,["H1931"]],[23,25,["H3332"]]]},{"k":9609,"v":[[0,5,["H1961"]],[5,8,["H3627"]],[8,10,["H4390"]],[10,13,["H559"]],[13,14,["H413"]],[14,16,["H1121"]],[16,17,["H5066","H413"]],[17,19,["H5750"]],[19,21,["H3627"]],[21,24,["H559"]],[24,25,["H413"]],[25,29,["H369"]],[29,31,["H3627"]],[31,32,["H5750"]],[32,35,["H8081"]],[35,36,["H5975"]]]},{"k":9610,"v":[[0,3,["H935"]],[3,5,["H5046"]],[5,7,["H376"]],[7,9,["H430"]],[9,12,["H559"]],[12,13,["H1980"]],[13,14,["H4376","(H853)"]],[14,16,["H8081"]],[16,18,["H7999","(H853)"]],[18,20,["H5386"]],[20,22,["H2421"]],[22,23,["H859"]],[23,26,["H1121"]],[26,29,["H3498"]]]},{"k":9611,"v":[[0,3,["H1961"]],[3,6,["H3117"]],[6,8,["H477"]],[8,9,["H5674"]],[9,10,["H413"]],[10,11,["H7766"]],[11,12,["H8033"]],[12,15,["H1419"]],[15,16,["H802"]],[16,19,["H2388"]],[19,22,["H398"]],[22,23,["H3899"]],[23,27,["H1961"]],[27,30,["H4480","H1767"]],[30,34,["H5674"]],[34,37,["H5493"]],[37,38,["H8033"]],[38,40,["H398"]],[40,41,["H3899"]]]},{"k":9612,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H376"]],[6,7,["H2009"]],[7,8,["H4994"]],[8,10,["H3045"]],[10,11,["H3588"]],[11,12,["H1931"]],[12,15,["H6918"]],[15,16,["H376"]],[16,18,["H430"]],[18,21,["H5674","H5921"]],[21,23,["H8548"]]]},{"k":9613,"v":[[0,3,["H6213"]],[3,5,["H6996"]],[5,6,["H5944"]],[6,9,["H4994"]],[9,12,["H7023"]],[12,16,["H7760"]],[16,19,["H8033"]],[19,21,["H4296"]],[21,24,["H7979"]],[24,27,["H3678"]],[27,30,["H4501"]],[30,34,["H1961"]],[34,37,["H935"]],[37,38,["H413"]],[38,44,["H5493"]],[44,45,["H8033"]]]},{"k":9614,"v":[[0,3,["H1961"]],[3,6,["H3117"]],[6,9,["H935"]],[9,10,["H8033"]],[10,13,["H5493"]],[13,14,["H413"]],[14,16,["H5944"]],[16,18,["H7901"]],[18,19,["H8033"]]]},{"k":9615,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H1522"]],[5,7,["H5288"]],[7,8,["H7121"]],[8,9,["H2063"]],[9,10,["H7767"]],[10,15,["H7121"]],[15,18,["H5975"]],[18,19,["H6440"]],[19,20,[]]]},{"k":9616,"v":[[0,3,["H559"]],[3,6,["H559"]],[6,7,["H4994"]],[7,8,["H413"]],[8,10,["H2009"]],[10,14,["H2729"]],[14,15,["H413"]],[15,17,["H854"]],[17,18,["H3605"]],[18,19,["H2063"]],[19,20,["H2731"]],[20,21,["H4100"]],[21,25,["H6213"]],[25,28,["H3426"]],[28,31,["H1696"]],[31,33,["H413"]],[33,35,["H4428"]],[35,36,["H176"]],[36,37,["H413"]],[37,39,["H8269"]],[39,42,["H6635"]],[42,45,["H559"]],[45,46,["H595"]],[46,47,["H3427"]],[47,48,["H8432"]],[48,51,["H5971"]]]},{"k":9617,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,9,["H6213"]],[9,13,["H1522"]],[13,14,["H559"]],[14,15,["H61"]],[15,18,["H369"]],[18,19,["H1121"]],[19,22,["H376"]],[22,24,["H2204"]]]},{"k":9618,"v":[[0,3,["H559"]],[3,4,["H7121"]],[4,10,["H7121"]],[10,13,["H5975"]],[13,16,["H6607"]]]},{"k":9619,"v":[[0,3,["H559"]],[3,5,["H2088"]],[5,6,["H4150"]],[6,10,["H6256"]],[10,12,["H2416"]],[12,13,["H859"]],[13,15,["H2263"]],[15,17,["H1121"]],[17,20,["H559"]],[20,21,["H408"]],[21,23,["H113"]],[23,25,["H376"]],[25,27,["H430"]],[27,30,["H3576","H408"]],[30,33,["H8198"]]]},{"k":9620,"v":[[0,3,["H802"]],[3,4,["H2029"]],[4,6,["H3205"]],[6,8,["H1121"]],[8,10,["H2088"]],[10,11,["H4150"]],[11,12,["H834"]],[12,13,["H477"]],[13,15,["H1696"]],[15,16,["H413"]],[16,21,["H6256"]],[21,23,["H2416"]]]},{"k":9621,"v":[[0,4,["H3206"]],[4,6,["H1431"]],[6,8,["H1961"]],[8,11,["H3117"]],[11,15,["H3318"]],[15,16,["H413"]],[16,18,["H1"]],[18,19,["H413"]],[19,21,["H7114"]]]},{"k":9622,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1"]],[6,8,["H7218"]],[8,10,["H7218"]],[10,13,["H559"]],[13,14,["H413"]],[14,16,["H5288"]],[16,17,["H5375"]],[17,19,["H413"]],[19,21,["H517"]]]},{"k":9623,"v":[[0,5,["H5375"]],[5,8,["H935"]],[8,10,["H413"]],[10,12,["H517"]],[12,14,["H3427"]],[14,15,["H5921"]],[15,17,["H1290"]],[17,18,["H5704"]],[18,19,["H6672"]],[19,22,["H4191"]]]},{"k":9624,"v":[[0,4,["H5927"]],[4,6,["H7901"]],[6,8,["H5921"]],[8,10,["H4296"]],[10,13,["H376"]],[13,15,["H430"]],[15,17,["H5462"]],[17,20,["H1157"]],[20,24,["H3318"]]]},{"k":9625,"v":[[0,3,["H7121"]],[3,4,["H413"]],[4,6,["H376"]],[6,8,["H559"]],[8,9,["H7971"]],[9,13,["H4994"]],[13,14,["H259"]],[14,15,["H4480"]],[15,18,["H5288"]],[18,20,["H259"]],[20,23,["H860"]],[23,27,["H7323"]],[27,28,["H5704"]],[28,30,["H376"]],[30,32,["H430"]],[32,35,["H7725"]]]},{"k":9626,"v":[[0,3,["H559"]],[3,4,["H4069"]],[4,6,["H859"]],[6,7,["H1980"]],[7,8,["H413"]],[8,11,["H3117"]],[11,14,["H3808"]],[14,16,["H2320"]],[16,17,["H3808"]],[17,18,["H7676"]],[18,21,["H559"]],[21,25,["H7965"]]]},{"k":9627,"v":[[0,3,["H2280"]],[3,5,["H860"]],[5,7,["H559"]],[7,8,["H413"]],[8,10,["H5288"]],[10,11,["H5090"]],[11,14,["H1980"]],[14,15,["H6113"]],[15,16,["H408"]],[16,18,["H7392"]],[18,21,["H3588","H518"]],[21,23,["H559"]],[23,24,[]]]},{"k":9628,"v":[[0,3,["H1980"]],[3,5,["H935"]],[5,6,["H413"]],[6,8,["H376"]],[8,10,["H430"]],[10,11,["H413"]],[11,12,["H2022"]],[12,13,["H3760"]],[13,18,["H1961"]],[18,21,["H376"]],[21,23,["H430"]],[23,24,["H7200"]],[24,27,["H4480","H5048"]],[27,30,["H559"]],[30,31,["H413"]],[31,32,["H1522"]],[32,34,["H5288"]],[34,35,["H2009"]],[35,38,["H1975"]],[38,39,["H7767"]]]},{"k":9629,"v":[[0,1,["H7323"]],[1,2,["H6258"]],[2,5,["H4994"]],[5,7,["H7122"]],[7,10,["H559"]],[10,15,["H7965"]],[15,20,["H7965"]],[20,23,["H376"]],[23,26,["H7965"]],[26,29,["H3206"]],[29,32,["H559"]],[32,35,["H7965"]]]},{"k":9630,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H376"]],[7,9,["H430"]],[9,10,["H413"]],[10,12,["H2022"]],[12,14,["H2388"]],[14,18,["H7272"]],[18,20,["H1522"]],[20,22,["H5066"]],[22,26,["H1920"]],[26,29,["H376"]],[29,31,["H430"]],[31,32,["H559"]],[32,35,["H7503"]],[35,36,["H3588"]],[36,38,["H5315"]],[38,40,["H4843"]],[40,45,["H3068"]],[45,47,["H5956"]],[47,49,["H4480"]],[49,53,["H3808"]],[53,54,["H5046"]],[54,55,[]]]},{"k":9631,"v":[[0,3,["H559"]],[3,6,["H7592"]],[6,8,["H1121"]],[8,9,["H4480","H854"]],[9,11,["H113"]],[11,14,["H3808"]],[14,15,["H559"]],[15,17,["H3808"]],[17,18,["H7952"]],[18,19,[]]]},{"k":9632,"v":[[0,3,["H559"]],[3,5,["H1522"]],[5,7,["H2296"]],[7,9,["H4975"]],[9,11,["H3947"]],[11,13,["H4938"]],[13,16,["H3027"]],[16,20,["H1980"]],[20,21,["H3588"]],[21,23,["H4672"]],[23,25,["H376"]],[25,26,["H1288"]],[26,28,["H3808"]],[28,30,["H3588"]],[30,31,["H376"]],[31,32,["H1288"]],[32,34,["H6030"]],[34,36,["H3808"]],[36,39,["H7760"]],[39,41,["H4938"]],[41,42,["H5921"]],[42,44,["H6440"]],[44,47,["H5288"]]]},{"k":9633,"v":[[0,3,["H517"]],[3,6,["H5288"]],[6,7,["H559"]],[7,10,["H3068"]],[10,11,["H2416"]],[11,15,["H5315"]],[15,16,["H2416"]],[16,19,["H518"]],[19,20,["H5800"]],[20,24,["H6965"]],[24,26,["H1980","H310"]],[26,27,[]]]},{"k":9634,"v":[[0,2,["H1522"]],[2,4,["H5674"]],[4,5,["H6440"]],[5,8,["H7760","(H853)"]],[8,10,["H4938"]],[10,11,["H5921"]],[11,13,["H6440"]],[13,16,["H5288"]],[16,20,["H369"]],[20,21,["H6963"]],[21,22,["H369"]],[22,23,["H7182"]],[23,27,["H7725"]],[27,29,["H7122"]],[29,32,["H5046"]],[32,34,["H559"]],[34,36,["H5288"]],[36,38,["H3808"]],[38,39,["H6974"]]]},{"k":9635,"v":[[0,3,["H477"]],[3,5,["H935"]],[5,8,["H1004"]],[8,9,["H2009"]],[9,11,["H5288"]],[11,13,["H4191"]],[13,15,["H7901"]],[15,16,["H5921"]],[16,18,["H4296"]]]},{"k":9636,"v":[[0,3,["H935"]],[3,6,["H5462"]],[6,8,["H1817"]],[8,9,["H1157"]],[9,11,["H8147"]],[11,13,["H6419"]],[13,14,["H413"]],[14,16,["H3068"]]]},{"k":9637,"v":[[0,4,["H5927"]],[4,6,["H7901"]],[6,7,["H5921"]],[7,9,["H3206"]],[9,11,["H7760"]],[11,13,["H6310"]],[13,14,["H5921"]],[14,16,["H6310"]],[16,19,["H5869"]],[19,20,["H5921"]],[20,22,["H5869"]],[22,25,["H3709"]],[25,26,["H5921"]],[26,28,["H3709"]],[28,31,["H1457"]],[31,33,["H5921"]],[33,38,["H1320"]],[38,41,["H3206"]],[41,43,["H2552"]]]},{"k":9638,"v":[[0,3,["H7725"]],[3,5,["H1980"]],[5,8,["H1004"]],[8,11,["H259","H2008","H259","H2008"]],[11,14,["H5927"]],[14,16,["H1457"]],[16,18,["H5921"]],[18,22,["H5288"]],[22,23,["H2237","H5704"]],[23,24,["H7651"]],[24,25,["H6471"]],[25,28,["H5288"]],[28,29,["H6491","(H853)"]],[29,31,["H5869"]]]},{"k":9639,"v":[[0,3,["H7121","H413"]],[3,4,["H1522"]],[4,6,["H559"]],[6,7,["H7121","H413"]],[7,8,["H2063"]],[8,9,["H7767"]],[9,12,["H7121"]],[12,18,["H935"]],[18,20,["H413"]],[20,23,["H559"]],[23,25,["H5375"]],[25,27,["H1121"]]]},{"k":9640,"v":[[0,4,["H935"]],[4,6,["H5307"]],[6,7,["H5921"]],[7,9,["H7272"]],[9,12,["H7812"]],[12,15,["H776"]],[15,18,["H5375","(H853)"]],[18,20,["H1121"]],[20,23,["H3318"]]]},{"k":9641,"v":[[0,2,["H477"]],[2,4,["H7725"]],[4,6,["H1537"]],[6,11,["H7458"]],[11,14,["H776"]],[14,17,["H1121"]],[17,20,["H5030"]],[20,22,["H3427"]],[22,23,["H6440"]],[23,27,["H559"]],[27,30,["H5288"]],[30,32,["H8239"]],[32,34,["H1419"]],[34,35,["H5518"]],[35,37,["H1310"]],[37,38,["H5138"]],[38,41,["H1121"]],[41,44,["H5030"]]]},{"k":9642,"v":[[0,2,["H259"]],[2,4,["H3318"]],[4,5,["H413"]],[5,7,["H7704"]],[7,9,["H3950"]],[9,10,["H219"]],[10,12,["H4672"]],[12,14,["H7704"]],[14,15,["H1612"]],[15,17,["H3950"]],[17,18,["H4480"]],[18,19,["H7704"]],[19,20,["H6498"]],[20,22,["H899"]],[22,23,["H4393"]],[23,25,["H935"]],[25,27,["H6398"]],[27,29,["H413"]],[29,31,["H5518"]],[31,33,["H5138"]],[33,34,["H3588"]],[34,36,["H3045"]],[36,38,["H3808"]]]},{"k":9643,"v":[[0,4,["H3332"]],[4,7,["H376"]],[7,9,["H398"]],[9,14,["H1961"]],[14,18,["H398"]],[18,21,["H4480","H5138"]],[21,23,["H1992"]],[23,25,["H6817"]],[25,27,["H559"]],[27,30,["H376"]],[30,32,["H430"]],[32,35,["H4194"]],[35,38,["H5518"]],[38,41,["H3201"]],[41,42,["H3808"]],[42,43,["H398"]],[43,44,[]]]},{"k":9644,"v":[[0,3,["H559"]],[3,5,["H3947"]],[5,6,["H7058"]],[6,9,["H7993"]],[9,11,["H413"]],[11,13,["H5518"]],[13,16,["H559"]],[16,18,["H3332"]],[18,21,["H5971"]],[21,25,["H398"]],[25,28,["H1961"]],[28,29,["H3808"]],[29,30,["H1697","H7451"]],[30,33,["H5518"]]]},{"k":9645,"v":[[0,3,["H935"]],[3,5,["H376"]],[5,7,["H4480","H1190"]],[7,9,["H935"]],[9,11,["H376"]],[11,13,["H430"]],[13,14,["H3899"]],[14,17,["H1061"]],[17,18,["H6242"]],[18,19,["H3899"]],[19,21,["H8184"]],[21,26,["H3759"]],[26,29,["H6861"]],[29,33,["H559"]],[33,34,["H5414"]],[34,37,["H5971"]],[37,41,["H398"]]]},{"k":9646,"v":[[0,3,["H8334"]],[3,4,["H559"]],[4,5,["H4100"]],[5,8,["H5414"]],[8,9,["H2088"]],[9,10,["H6440"]],[10,12,["H3967"]],[12,13,["H376"]],[13,15,["H559"]],[15,17,["H5414"]],[17,19,["H5971"]],[19,23,["H398"]],[23,24,["H3588"]],[24,25,["H3541"]],[25,26,["H559"]],[26,28,["H3068"]],[28,31,["H398"]],[31,34,["H3498"]],[34,35,[]]]},{"k":9647,"v":[[0,3,["H5414"]],[3,5,["H6440"]],[5,10,["H398"]],[10,12,["H3498"]],[12,17,["H1697"]],[17,20,["H3068"]]]},{"k":9648,"v":[[0,2,["H5283"]],[2,3,["H8269"]],[3,6,["H6635"]],[6,9,["H4428"]],[9,11,["H758"]],[11,12,["H1961"]],[12,14,["H1419"]],[14,15,["H376"]],[15,16,["H6440"]],[16,18,["H113"]],[18,20,["H5375","H6440"]],[20,21,["H3588"]],[21,25,["H3068"]],[25,27,["H5414"]],[27,28,["H8668"]],[28,30,["H758"]],[30,32,["H1961"]],[32,35,["H1368"]],[35,36,["H376"]],[36,38,["H2428"]],[38,43,["H6879"]]]},{"k":9649,"v":[[0,3,["H758"]],[3,6,["H3318"]],[6,8,["H1416"]],[8,13,["H7617"]],[13,17,["H4480","H776"]],[17,19,["H3478"]],[19,21,["H6996"]],[21,22,["H5291"]],[22,25,["H1961","H6440"]],[25,27,["H5283"]],[27,28,["H802"]]]},{"k":9650,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1404"]],[6,8,["H305"]],[8,10,["H113"]],[10,12,["H6440"]],[12,14,["H5030"]],[14,15,["H834"]],[15,18,["H8111"]],[18,19,["H227"]],[19,22,["H622"]],[22,26,["H4480","H6883"]]]},{"k":9651,"v":[[0,4,["H935"]],[4,6,["H5046"]],[6,8,["H113"]],[8,9,["H559"]],[9,10,["H2063"]],[10,12,["H2063"]],[12,13,["H1696"]],[13,15,["H5291"]],[15,16,["H834"]],[16,20,["H4480","H776"]],[20,22,["H3478"]]]},{"k":9652,"v":[[0,3,["H4428"]],[3,5,["H758"]],[5,6,["H559"]],[6,8,["H1980"]],[8,9,["H935"]],[9,13,["H7971"]],[13,15,["H5612"]],[15,16,["H413"]],[16,18,["H4428"]],[18,20,["H3478"]],[20,23,["H1980"]],[23,25,["H3947"]],[25,26,["H3027"]],[26,28,["H6235"]],[28,29,["H3603"]],[29,31,["H3701"]],[31,33,["H8337"]],[33,34,["H505"]],[34,37,["H2091"]],[37,39,["H6235"]],[39,40,["H2487"]],[40,42,["H899"]]]},{"k":9653,"v":[[0,3,["H935"]],[3,5,["H5612"]],[5,6,["H413"]],[6,8,["H4428"]],[8,10,["H3478"]],[10,11,["H559"]],[11,12,["H6258"]],[12,14,["H2088"]],[14,15,["H5612"]],[15,17,["H935"]],[17,18,["H413"]],[18,20,["H2009"]],[20,24,["H7971","(H853)"]],[24,25,["H5283"]],[25,27,["H5650"]],[27,28,["H413"]],[28,33,["H622"]],[33,37,["H4480","H6883"]]]},{"k":9654,"v":[[0,5,["H1961"]],[5,8,["H4428"]],[8,10,["H3478"]],[10,12,["H7121","(H853)"]],[12,14,["H5612"]],[14,17,["H7167"]],[17,19,["H899"]],[19,21,["H559"]],[21,23,["H589"]],[23,24,["H430"]],[24,26,["H4191"]],[26,30,["H2421"]],[30,31,["H3588"]],[31,32,["H2088"]],[32,35,["H7971"]],[35,36,["H413"]],[36,39,["H622"]],[39,41,["H376"]],[41,44,["H4480","H6883"]],[44,45,["H3588","H389"]],[45,46,["H3045"]],[46,49,["H4994"]],[49,51,["H7200"]],[51,52,["H3588"]],[52,53,["H1931"]],[53,56,["H579"]],[56,58,[]]]},{"k":9655,"v":[[0,3,["H1961"]],[3,6,["H477"]],[6,8,["H376"]],[8,10,["H430"]],[10,12,["H8085"]],[12,13,["H3588"]],[13,15,["H4428"]],[15,17,["H3478"]],[17,19,["H7167","(H853)"]],[19,21,["H899"]],[21,24,["H7971"]],[24,25,["H413"]],[25,27,["H4428"]],[27,28,["H559"]],[28,29,["H4100"]],[29,32,["H7167"]],[32,34,["H899"]],[34,37,["H935"]],[37,38,["H4994"]],[38,39,["H413"]],[39,44,["H3045"]],[44,45,["H3588"]],[45,47,["H3426"]],[47,49,["H5030"]],[49,51,["H3478"]]]},{"k":9656,"v":[[0,2,["H5283"]],[2,3,["H935"]],[3,6,["H5483"]],[6,10,["H7393"]],[10,12,["H5975"]],[12,15,["H6607"]],[15,18,["H1004"]],[18,20,["H477"]]]},{"k":9657,"v":[[0,2,["H477"]],[2,3,["H7971"]],[3,5,["H4397"]],[5,6,["H413"]],[6,8,["H559"]],[8,9,["H1980"]],[9,11,["H7364"]],[11,13,["H3383"]],[13,14,["H7651"]],[14,15,["H6471"]],[15,18,["H1320"]],[18,21,["H7725"]],[21,28,["H2891"]]]},{"k":9658,"v":[[0,2,["H5283"]],[2,4,["H7107"]],[4,7,["H1980"]],[7,9,["H559"]],[9,10,["H2009"]],[10,12,["H559"]],[12,17,["H3318","H3318"]],[17,18,["H413"]],[18,21,["H5975"]],[21,23,["H7121"]],[23,26,["H8034"]],[26,29,["H3068"]],[29,31,["H430"]],[31,33,["H5130"]],[33,35,["H3027"]],[35,36,["H413"]],[36,38,["H4725"]],[38,40,["H622"]],[40,42,["H6879"]]]},{"k":9659,"v":[[0,2,["H3808"]],[2,3,["H71"]],[3,5,["H6554"]],[5,6,["H5104"]],[6,8,["H1834"]],[8,9,["H2896"]],[9,11,["H4480","H3605"]],[11,13,["H4325"]],[13,15,["H3478"]],[15,18,["H3808"]],[18,19,["H7364"]],[19,24,["H2891"]],[24,27,["H6437"]],[27,30,["H1980"]],[30,33,["H2534"]]]},{"k":9660,"v":[[0,3,["H5650"]],[3,5,["H5066"]],[5,7,["H1696"]],[7,8,["H413"]],[8,11,["H559"]],[11,13,["H1"]],[13,16,["H5030"]],[16,18,["H1696","H413"]],[18,22,["H1419"]],[22,23,["H1697"]],[23,26,["H3808"]],[26,28,["H6213"]],[28,32,["H637"]],[32,34,["H3588"]],[34,36,["H559"]],[36,37,["H413"]],[37,39,["H7364"]],[39,42,["H2891"]]]},{"k":9661,"v":[[0,4,["H3381"]],[4,6,["H2881"]],[6,8,["H7651"]],[8,9,["H6471"]],[9,11,["H3383"]],[11,15,["H1697"]],[15,18,["H376"]],[18,20,["H430"]],[20,23,["H1320"]],[23,25,["H7725"]],[25,29,["H1320"]],[29,32,["H6996"]],[32,33,["H5288"]],[33,37,["H2891"]]]},{"k":9662,"v":[[0,3,["H7725"]],[3,4,["H413"]],[4,6,["H376"]],[6,8,["H430"]],[8,9,["H1931"]],[9,11,["H3605"]],[11,13,["H4264"]],[13,15,["H935"]],[15,17,["H5975"]],[17,18,["H6440"]],[18,22,["H559"]],[22,23,["H2009"]],[23,24,["H4994"]],[24,26,["H3045"]],[26,27,["H3588"]],[27,30,["H369"]],[30,31,["H430"]],[31,33,["H3605"]],[33,35,["H776"]],[35,36,["H3588","H518"]],[36,38,["H3478"]],[38,39,["H6258"]],[39,43,["H4994"]],[43,44,["H3947"]],[44,46,["H1293"]],[46,47,["H4480","H854"]],[47,49,["H5650"]]]},{"k":9663,"v":[[0,3,["H559"]],[3,6,["H3068"]],[6,7,["H2416"]],[7,8,["H6440"]],[8,9,["H834"]],[9,11,["H5975"]],[11,14,["H3947"]],[14,18,["H6484"]],[18,21,["H3947"]],[21,25,["H3985"]]]},{"k":9664,"v":[[0,2,["H5283"]],[2,3,["H559"]],[3,6,["H3808"]],[6,10,["H4994"]],[10,12,["H5414"]],[12,15,["H5650"]],[15,17,["H6776","H6505"]],[17,18,["H4853"]],[18,20,["H127"]],[20,21,["H3588"]],[21,23,["H5650"]],[23,25,["H5750"]],[25,26,["H6213"]],[26,27,["H3808"]],[27,29,["H5930"]],[29,31,["H2077"]],[31,33,["H312"]],[33,34,["H430"]],[34,35,["H3588","H518"]],[35,38,["H3068"]]]},{"k":9665,"v":[[0,2,["H2088"]],[2,3,["H1697"]],[3,5,["H3068"]],[5,6,["H5545"]],[6,8,["H5650"]],[8,12,["H113"]],[12,13,["H935"]],[13,16,["H1004"]],[16,18,["H7417"]],[18,20,["H7812"]],[20,21,["H8033"]],[21,23,["H1931"]],[23,24,["H8172"]],[24,25,["H5921"]],[25,27,["H3027"]],[27,31,["H7812"]],[31,34,["H1004"]],[34,36,["H7417"]],[36,41,["H7812"]],[41,44,["H1004"]],[44,46,["H7417"]],[46,48,["H3068"]],[48,49,["H5545"]],[49,51,["H5650"]],[51,53,["H2088"]],[53,54,["H1697"]]]},{"k":9666,"v":[[0,3,["H559"]],[3,6,["H1980"]],[6,8,["H7965"]],[8,11,["H1980"]],[11,12,["H4480","H854"]],[12,16,["H3530","H776"]]]},{"k":9667,"v":[[0,2,["H1522"]],[2,4,["H5288"]],[4,6,["H477"]],[6,8,["H376"]],[8,10,["H430"]],[10,11,["H559"]],[11,12,["H2009"]],[12,14,["H113"]],[14,16,["H2820","(H853)"]],[16,17,["H5283"]],[17,18,["H2088"]],[18,19,["H761"]],[19,22,["H4480","H3947"]],[22,25,["H4480","H3027","(H853)"]],[25,27,["H834"]],[27,29,["H935"]],[29,30,["H3588","H518"]],[30,33,["H3068"]],[33,34,["H2416"]],[34,37,["H7323"]],[37,38,["H310"]],[38,41,["H3947"]],[41,42,["H3972"]],[42,43,["H4480","H854"]],[43,44,[]]]},{"k":9668,"v":[[0,2,["H1522"]],[2,3,["H7291"]],[3,4,["H310"]],[4,5,["H5283"]],[5,8,["H5283"]],[8,9,["H7200"]],[9,11,["H7323"]],[11,12,["H310"]],[12,16,["H5307"]],[16,17,["H4480","H5921"]],[17,19,["H4818"]],[19,21,["H7122"]],[21,24,["H559"]],[24,27,["H7965"]]]},{"k":9669,"v":[[0,3,["H559"]],[3,6,["H7965"]],[6,8,["H113"]],[8,10,["H7971"]],[10,12,["H559"]],[12,13,["H2009"]],[13,15,["H6258","H2088"]],[15,18,["H935"]],[18,19,["H413"]],[19,22,["H4480","H2022"]],[22,23,["H669"]],[23,24,["H8147"]],[24,26,["H5288"]],[26,29,["H4480","H1121"]],[29,32,["H5030"]],[32,33,["H5414"]],[33,37,["H4994"]],[37,39,["H3603"]],[39,41,["H3701"]],[41,43,["H8147"]],[43,44,["H2487"]],[44,46,["H899"]]]},{"k":9670,"v":[[0,2,["H5283"]],[2,3,["H559"]],[3,5,["H2974"]],[5,6,["H3947"]],[6,8,["H3603"]],[8,11,["H6555"]],[11,14,["H6696"]],[14,16,["H3603"]],[16,18,["H3701"]],[18,20,["H8147"]],[20,21,["H2754"]],[21,23,["H8147"]],[23,24,["H2487"]],[24,26,["H899"]],[26,28,["H5414"]],[28,30,["H413"]],[30,31,["H8147"]],[31,34,["H5288"]],[34,37,["H5375"]],[37,39,["H6440"]],[39,40,[]]]},{"k":9671,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H6076"]],[7,9,["H3947"]],[9,13,["H4480","H3027"]],[13,15,["H6485"]],[15,19,["H1004"]],[19,22,["(H853)"]],[22,24,["H376"]],[24,25,["H7971"]],[25,28,["H1980"]]]},{"k":9672,"v":[[0,2,["H1931"]],[2,4,["H935"]],[4,6,["H5975"]],[6,7,["H413"]],[7,9,["H113"]],[9,11,["H477"]],[11,12,["H559"]],[12,13,["H413"]],[13,15,["H4480","H370"]],[15,18,["H1522"]],[18,21,["H559"]],[21,23,["H5650"]],[23,24,["H1980"]],[24,25,["H3808"]],[25,26,["H575","H575"]]]},{"k":9673,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1980"]],[6,7,["H3808"]],[7,9,["H3820"]],[9,12,["H834"]],[12,14,["H376"]],[14,16,["H2015"]],[16,17,["H4480","H5921"]],[17,19,["H4818"]],[19,21,["H7122"]],[21,26,["H6256"]],[26,28,["H3947","(H853)"]],[28,29,["H3701"]],[29,32,["H3947"]],[32,33,["H899"]],[33,35,["H2132"]],[35,37,["H3754"]],[37,39,["H6629"]],[39,41,["H1241"]],[41,43,["H5650"]],[43,45,["H8198"]]]},{"k":9674,"v":[[0,2,["H6883"]],[2,5,["H5283"]],[5,7,["H1692"]],[7,13,["H2233"]],[13,15,["H5769"]],[15,19,["H3318"]],[19,22,["H4480","H6440"]],[22,24,["H6879"]],[24,28,["H7950"]]]},{"k":9675,"v":[[0,3,["H1121"]],[3,6,["H5030"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H477"]],[9,10,["H2009"]],[10,11,["H4994"]],[11,13,["H4725"]],[13,14,["H834","H8033"]],[14,15,["H587"]],[15,16,["H3427"]],[16,17,["H6440"]],[17,21,["H6862"]],[21,22,["H4480"]],[22,23,[]]]},{"k":9676,"v":[[0,3,["H1980"]],[3,6,["H4994"]],[6,7,["H5704"]],[7,8,["H3383"]],[8,10,["H3947"]],[10,11,["H4480","H8033"]],[11,13,["H376"]],[13,14,["H259"]],[14,15,["H6982"]],[15,19,["H6213"]],[19,22,["H4725"]],[22,23,["H8033"]],[23,24,["H8033"]],[24,27,["H3427"]],[27,30,["H559"]],[30,31,["H1980"]],[31,32,[]]]},{"k":9677,"v":[[0,2,["H259"]],[2,3,["H559"]],[3,5,["H2974"]],[5,8,["H4994"]],[8,10,["H1980"]],[10,11,["H854"]],[11,13,["H5650"]],[13,16,["H559"]],[16,17,["H589"]],[17,19,["H1980"]]]},{"k":9678,"v":[[0,3,["H1980"]],[3,4,["H854"]],[4,9,["H935"]],[9,11,["H3383"]],[11,14,["H1504"]],[14,15,["H6086"]]]},{"k":9679,"v":[[0,3,["H259"]],[3,4,["H1961"]],[4,5,["H5307"]],[5,7,["H6982"]],[7,10,["H1270"]],[10,11,["H5307"]],[11,12,["H413"]],[12,14,["H4325"]],[14,17,["H6817"]],[17,19,["H559"]],[19,20,["H162"]],[20,21,["H113"]],[21,23,["H1931"]],[23,25,["H7592"]]]},{"k":9680,"v":[[0,3,["H376"]],[3,5,["H430"]],[5,6,["H559"]],[6,7,["H575"]],[7,8,["H5307"]],[8,12,["H7200"]],[12,13,["(H853)"]],[13,15,["H4725"]],[15,19,["H7094"]],[19,21,["H6086"]],[21,23,["H7993"]],[23,26,["H8033"]],[26,29,["H1270"]],[29,31,["H6687"]]]},{"k":9681,"v":[[0,2,["H559"]],[2,6,["H7311"]],[6,12,["H7971"]],[12,14,["H3027"]],[14,16,["H3947"]],[16,17,[]]]},{"k":9682,"v":[[0,3,["H4428"]],[3,5,["H758"]],[5,6,["H3898"]],[6,8,["H3478"]],[8,11,["H3289"]],[11,12,["H413"]],[12,14,["H5650"]],[14,15,["H559"]],[15,16,["H413"]],[16,19,["H6423","H492"]],[19,21,["H4725"]],[21,25,["H8466"]]]},{"k":9683,"v":[[0,3,["H376"]],[3,5,["H430"]],[5,6,["H7971"]],[6,7,["H413"]],[7,9,["H4428"]],[9,11,["H3478"]],[11,12,["H559"]],[12,13,["H8104"]],[13,17,["H4480","H5674"]],[17,18,["H2088"]],[18,20,["H4725"]],[20,21,["H3588"]],[21,22,["H8033"]],[22,24,["H758"]],[24,27,["H5185"]]]},{"k":9684,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H7971"]],[6,7,["H413"]],[7,9,["H4725"]],[9,10,["H834"]],[10,12,["H376"]],[12,14,["H430"]],[14,15,["H559"]],[15,18,["H2094"]],[18,23,["H8104"]],[23,24,["H8033"]],[24,25,["H3808"]],[25,26,["H259"]],[26,27,["H3808"]],[27,28,["H8147"]]]},{"k":9685,"v":[[0,3,["H3820"]],[3,6,["H4428"]],[6,8,["H758"]],[8,11,["H5590"]],[11,12,["H5921"]],[12,13,["H2088"]],[13,14,["H1697"]],[14,17,["H7121","H413"]],[17,19,["H5650"]],[19,21,["H559"]],[21,22,["H413"]],[22,26,["H3808"]],[26,27,["H5046"]],[27,29,["H4310"]],[29,30,["H4480","H7945"]],[30,33,["H413"]],[33,35,["H4428"]],[35,37,["H3478"]]]},{"k":9686,"v":[[0,2,["H259"]],[2,5,["H4480","H5650"]],[5,6,["H559"]],[6,7,["H3808"]],[7,9,["H113"]],[9,11,["H4428"]],[11,12,["H3588"]],[12,13,["H477"]],[13,15,["H5030"]],[15,16,["H834"]],[16,19,["H3478"]],[19,20,["H5046"]],[20,22,["H4428"]],[22,24,["H3478","(H853)"]],[24,26,["H1697"]],[26,27,["H834"]],[27,29,["H1696"]],[29,32,["H2315","H4904"]]]},{"k":9687,"v":[[0,3,["H559"]],[3,4,["H1980"]],[4,6,["H7200"]],[6,7,["H351"]],[7,8,["H1931"]],[8,13,["H7971"]],[13,15,["H3947"]],[15,20,["H5046"]],[20,22,["H559"]],[22,23,["H2009"]],[23,27,["H1886"]]]},{"k":9688,"v":[[0,2,["H7971"]],[2,4,["H8033"]],[4,5,["H5483"]],[5,7,["H7393"]],[7,10,["H3515"]],[10,11,["H2428"]],[11,14,["H935"]],[14,16,["H3915"]],[16,18,["H5362","H5921"]],[18,20,["H5892"]],[20,21,[]]]},{"k":9689,"v":[[0,4,["H8334"]],[4,7,["H376"]],[7,9,["H430"]],[9,11,["H6965"]],[11,12,["H7925"]],[12,15,["H3318"]],[15,16,["H2009"]],[16,18,["H2428"]],[18,19,["H5437","(H853)"]],[19,21,["H5892"]],[21,24,["H5483"]],[24,26,["H7393"]],[26,29,["H5288"]],[29,30,["H559"]],[30,31,["H413"]],[31,33,["H162"]],[33,35,["H113"]],[35,36,["H349"]],[36,39,["H6213"]]]},{"k":9690,"v":[[0,3,["H559"]],[3,4,["H3372"]],[4,5,["H408"]],[5,6,["H3588"]],[6,8,["H834"]],[8,10,["H854"]],[10,13,["H7227"]],[13,16,["H4480","H834"]],[16,18,["H854"]],[18,19,[]]]},{"k":9691,"v":[[0,2,["H477"]],[2,3,["H6419"]],[3,5,["H559"]],[5,6,["H3068"]],[6,9,["H4994"]],[9,10,["H6491","(H853)"]],[10,12,["H5869"]],[12,16,["H7200"]],[16,19,["H3068"]],[19,20,["H6491","(H853)"]],[20,22,["H5869"]],[22,26,["H5288"]],[26,29,["H7200"]],[29,31,["H2009"]],[31,33,["H2022"]],[33,35,["H4390"]],[35,37,["H5483"]],[37,39,["H7393"]],[39,41,["H784"]],[41,43,["H5439"]],[43,44,["H477"]]]},{"k":9692,"v":[[0,5,["H3381"]],[5,6,["H413"]],[6,8,["H477"]],[8,9,["H6419"]],[9,10,["H413"]],[10,12,["H3068"]],[12,14,["H559"]],[14,15,["H5221","(H853)"]],[15,16,["H2088"]],[16,17,["H1471"]],[17,20,["H4994"]],[20,22,["H5575"]],[22,25,["H5221"]],[25,28,["H5575"]],[28,32,["H1697"]],[32,34,["H477"]]]},{"k":9693,"v":[[0,2,["H477"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H2088"]],[6,8,["H3808"]],[8,10,["H1870"]],[10,11,["H3808"]],[11,13,["H2090"]],[13,15,["H5892"]],[15,16,["H1980","H310"]],[16,21,["H1980"]],[21,23,["H413"]],[23,25,["H376"]],[25,26,["H834"]],[26,28,["H1245"]],[28,31,["H1980"]],[31,34,["H8111"]]]},{"k":9694,"v":[[0,5,["H1961"]],[5,9,["H935"]],[9,11,["H8111"]],[11,13,["H477"]],[13,14,["H559"]],[14,15,["H3068"]],[15,16,["H6491","(H853)"]],[16,18,["H5869"]],[18,20,["H428"]],[20,25,["H7200"]],[25,28,["H3068"]],[28,29,["H6491","(H853)"]],[29,31,["H5869"]],[31,34,["H7200"]],[34,36,["H2009"]],[36,41,["H8432"]],[41,43,["H8111"]]]},{"k":9695,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H477"]],[8,11,["H7200"]],[11,14,["H1"]],[14,17,["H5221"]],[17,21,["H5221"]],[21,22,[]]]},{"k":9696,"v":[[0,3,["H559"]],[3,6,["H3808"]],[6,7,["H5221"]],[7,10,["H859"]],[10,11,["H5221"]],[11,13,["H834"]],[13,17,["H7617"]],[17,20,["H2719"]],[20,24,["H7198"]],[24,25,["H7760"]],[25,26,["H3899"]],[26,28,["H4325"]],[28,29,["H6440"]],[29,34,["H398"]],[34,36,["H8354"]],[36,38,["H1980"]],[38,39,["H413"]],[39,41,["H113"]]]},{"k":9697,"v":[[0,3,["H3739"]],[3,4,["H1419"]],[4,5,["H3740"]],[5,12,["H398"]],[12,14,["H8354"]],[14,18,["H7971"]],[18,21,["H1980"]],[21,22,["H413"]],[22,24,["H113"]],[24,27,["H1416"]],[27,29,["H758"]],[29,30,["H935"]],[30,31,["H3808"]],[31,32,["H3254","H5750"]],[32,35,["H776"]],[35,37,["H3478"]]]},{"k":9698,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H3651"]],[7,9,["H1130"]],[9,10,["H4428"]],[10,12,["H758"]],[12,13,["H6908","(H853)"]],[13,14,["H3605"]],[14,16,["H4264"]],[16,19,["H5927"]],[19,21,["H6696","H5921"]],[21,22,["H8111"]]]},{"k":9699,"v":[[0,3,["H1961"]],[3,5,["H1419"]],[5,6,["H7458"]],[6,8,["H8111"]],[8,10,["H2009"]],[10,12,["H6696","H5921"]],[12,14,["H5704"]],[14,16,["H2543"]],[16,17,["H7218"]],[17,18,["H1961"]],[18,21,["H8084"]],[21,24,["H3701"]],[24,28,["H7255"]],[28,31,["H6894"]],[31,34,["H2755"]],[34,36,["H2568"]],[36,39,["H3701"]]]},{"k":9700,"v":[[0,4,["H4428"]],[4,6,["H3478"]],[6,7,["H1961"]],[7,9,["H5674"]],[9,10,["H5921"]],[10,12,["H2346"]],[12,14,["H6817"]],[14,16,["H802"]],[16,17,["H413"]],[17,19,["H559"]],[19,20,["H3467"]],[20,22,["H113"]],[22,24,["H4428"]]]},{"k":9701,"v":[[0,3,["H559"]],[3,6,["H3068"]],[6,8,["H408"]],[8,9,["H3467"]],[9,11,["H4480","H370"]],[11,14,["H3467"]],[14,17,["H4480"]],[17,19,["H1637"]],[19,20,["H176"]],[20,22,["H4480"]],[22,24,["H3342"]]]},{"k":9702,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H4100"]],[7,12,["H559"]],[12,13,["H2063"]],[13,14,["H802"]],[14,15,["H559"]],[15,16,["H413"]],[16,18,["H5414","(H853)"]],[18,20,["H1121"]],[20,24,["H398"]],[24,27,["H3117"]],[27,31,["H398"]],[31,33,["H1121"]],[33,35,["H4279"]]]},{"k":9703,"v":[[0,3,["H1310","(H853)"]],[3,5,["H1121"]],[5,8,["H398"]],[8,12,["H559"]],[12,13,["H413"]],[13,17,["H312"]],[17,18,["H3117"]],[18,19,["H5414","(H853)"]],[19,21,["H1121"]],[21,25,["H398"]],[25,30,["H2244","(H853)"]],[30,32,["H1121"]]]},{"k":9704,"v":[[0,5,["H1961"]],[5,8,["H4428"]],[8,9,["H8085","(H853)"]],[9,11,["H1697"]],[11,14,["H802"]],[14,17,["H7167","(H853)"]],[17,19,["H899"]],[19,21,["H1931"]],[21,23,["H5674"]],[23,24,["H5921"]],[24,26,["H2346"]],[26,29,["H5971"]],[29,30,["H7200"]],[30,32,["H2009"]],[32,35,["H8242"]],[35,36,["H4480","H1004"]],[36,37,["H5921"]],[37,39,["H1320"]]]},{"k":9705,"v":[[0,3,["H559"]],[3,4,["H430"]],[4,5,["H6213"]],[5,6,["H3541"]],[6,8,["H3254"]],[8,9,["H3541"]],[9,12,["H518"]],[12,14,["H7218"]],[14,16,["H477"]],[16,18,["H1121"]],[18,20,["H8202"]],[20,22,["H5975"]],[22,23,["H5921"]],[23,26,["H3117"]]]},{"k":9706,"v":[[0,2,["H477"]],[2,3,["H3427"]],[3,6,["H1004"]],[6,9,["H2205"]],[9,10,["H3427"]],[10,11,["H854"]],[11,16,["H7971"]],[16,18,["H376"]],[18,20,["H4480","H6440"]],[20,23,["H2962"]],[23,25,["H4397"]],[25,26,["H935"]],[26,27,["H413"]],[27,29,["H1931"]],[29,30,["H559"]],[30,31,["H413"]],[31,33,["H2205"]],[33,34,["H7200"]],[34,36,["H3588"]],[36,37,["H2088"]],[37,38,["H1121"]],[38,41,["H7523"]],[41,43,["H7971"]],[43,46,["H5493","(H853)"]],[46,48,["H7218"]],[48,49,["H7200"]],[49,52,["H4397"]],[52,53,["H935"]],[53,54,["H5462"]],[54,56,["H1817"]],[56,60,["H3905","(H853)"]],[60,63,["H1817"]],[63,65,["H3808"]],[65,67,["H6963"]],[67,70,["H113"]],[70,71,["H7272"]],[71,72,["H310"]],[72,73,[]]]},{"k":9707,"v":[[0,4,["H5750"]],[4,5,["H1696"]],[5,6,["H5973"]],[6,8,["H2009"]],[8,10,["H4397"]],[10,12,["H3381"]],[12,13,["H413"]],[13,17,["H559"]],[17,18,["H2009"]],[18,19,["H2063"]],[19,20,["H7451"]],[20,22,["H4480","H854"]],[22,24,["H3068"]],[24,25,["H4100"]],[25,28,["H3176"]],[28,31,["H3068"]],[31,33,["H5750"]]]},{"k":9708,"v":[[0,2,["H477"]],[2,3,["H559"]],[3,4,["H8085"]],[4,7,["H1697"]],[7,10,["H3068"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H3068"]],[14,16,["H4279"]],[16,19,["H6256"]],[19,22,["H5429"]],[22,25,["H5560"]],[25,30,["H8255"]],[30,33,["H5429"]],[33,35,["H8184"]],[35,38,["H8255"]],[38,41,["H8179"]],[41,43,["H8111"]]]},{"k":9709,"v":[[0,3,["H7991"]],[3,4,["H5921"]],[4,5,["H834"]],[5,6,["H3027"]],[6,8,["H4428"]],[8,9,["H8172"]],[9,10,["H6030","(H853)"]],[10,12,["H376"]],[12,14,["H430"]],[14,16,["H559"]],[16,17,["H2009"]],[17,20,["H3068"]],[20,22,["H6213"]],[22,23,["H699"]],[23,25,["H8064"]],[25,27,["H2088"]],[27,28,["H1697"]],[28,29,["H1961"]],[29,32,["H559"]],[32,33,["H2009"]],[33,36,["H7200"]],[36,40,["H5869"]],[40,43,["H3808"]],[43,44,["H398"]],[44,45,["H4480","H8033"]]]},{"k":9710,"v":[[0,3,["H1961"]],[3,4,["H702"]],[4,5,["H6879"]],[5,6,["H376"]],[6,10,["H6607"]],[10,13,["H8179"]],[13,16,["H559"]],[16,17,["H376"]],[17,18,["H413"]],[18,19,["H7453"]],[19,20,["H4100"]],[20,21,["H3427"]],[21,22,["H587"]],[22,23,["H6311"]],[23,24,["H5704"]],[24,26,["H4191"]]]},{"k":9711,"v":[[0,1,["H518"]],[1,3,["H559"]],[3,6,["H935"]],[6,9,["H5892"]],[9,12,["H7458"]],[12,16,["H5892"]],[16,20,["H4191"]],[20,21,["H8033"]],[21,23,["H518"]],[23,25,["H3427"]],[25,27,["H6311"]],[27,29,["H4191"]],[29,31,["H6258"]],[31,33,["H1980"]],[33,37,["H5307"]],[37,38,["H413"]],[38,40,["H4264"]],[40,43,["H758"]],[43,44,["H518"]],[44,48,["H2421"]],[48,51,["H2421"]],[51,53,["H518"]],[53,55,["H4191"]],[55,60,["H4191"]]]},{"k":9712,"v":[[0,4,["H6965"]],[4,7,["H5399"]],[7,9,["H935"]],[9,10,["H413"]],[10,12,["H4264"]],[12,15,["H758"]],[15,20,["H935"]],[20,21,["H5704"]],[21,24,["H7097"]],[24,27,["H4264"]],[27,29,["H758"]],[29,30,["H2009"]],[30,33,["H369"]],[33,34,["H376"]],[34,35,["H8033"]]]},{"k":9713,"v":[[0,3,["H136"]],[3,5,["(H853)"]],[5,7,["H4264"]],[7,10,["H758"]],[10,12,["H8085"]],[12,14,["H6963"]],[14,16,["H7393"]],[16,19,["H6963"]],[19,21,["H5483"]],[21,24,["H6963"]],[24,27,["H1419"]],[27,28,["H2428"]],[28,31,["H559"]],[31,32,["H376"]],[32,33,["H413"]],[33,34,["H251"]],[34,35,["H2009"]],[35,37,["H4428"]],[37,39,["H3478"]],[39,41,["H7936"]],[41,42,["H5921"]],[42,43,["(H853)"]],[43,45,["H4428"]],[45,48,["H2850"]],[48,51,["H4428"]],[51,54,["H4714"]],[54,56,["H935"]],[56,57,["H5921"]],[57,58,[]]]},{"k":9714,"v":[[0,3,["H6965"]],[3,5,["H5127"]],[5,8,["H5399"]],[8,10,["H5800","(H853)"]],[10,12,["H168"]],[12,15,["H5483"]],[15,18,["H2543"]],[18,21,["H4264"]],[21,22,["H834"]],[22,23,["H1931"]],[23,26,["H5127"]],[26,27,["H413"]],[27,29,["H5315"]]]},{"k":9715,"v":[[0,3,["H428"]],[3,4,["H6879"]],[4,5,["H935"]],[5,6,["H5704"]],[6,9,["H7097"]],[9,12,["H4264"]],[12,14,["H935"]],[14,15,["H413"]],[15,16,["H259"]],[16,17,["H168"]],[17,20,["H398"]],[20,22,["H8354"]],[22,24,["H5375"]],[24,25,["H4480","H8033"]],[25,26,["H3701"]],[26,28,["H2091"]],[28,30,["H899"]],[30,32,["H1980"]],[32,34,["H2934"]],[34,38,["H7725"]],[38,40,["H935"]],[40,41,["H413"]],[41,42,["H312"]],[42,43,["H168"]],[43,45,["H5375"]],[45,46,["H4480","H8033"]],[46,49,["H1980"]],[49,51,["H2934"]],[51,52,[]]]},{"k":9716,"v":[[0,3,["H559"]],[3,4,["H376"]],[4,5,["H413"]],[5,6,["H7453"]],[6,7,["H587"]],[7,8,["H6213"]],[8,9,["H3808"]],[9,10,["H3651"]],[10,11,["H2088"]],[11,12,["H3117"]],[12,15,["H3117"]],[15,18,["H1309"]],[18,20,["H587"]],[20,23,["H2814"]],[23,26,["H2442"]],[26,27,["H5704"]],[27,29,["H1242"]],[29,30,["H216"]],[30,32,["H5771"]],[32,35,["H4672"]],[35,37,["H6258"]],[37,39,["H1980"]],[39,43,["H935"]],[43,45,["H5046"]],[45,47,["H4428"]],[47,48,["H1004"]]]},{"k":9717,"v":[[0,3,["H935"]],[3,5,["H7121"]],[5,6,["H413"]],[6,8,["H7778"]],[8,11,["H5892"]],[11,14,["H5046"]],[14,16,["H559"]],[16,18,["H935"]],[18,19,["H413"]],[19,21,["H4264"]],[21,24,["H758"]],[24,26,["H2009"]],[26,29,["H369"]],[29,30,["H376"]],[30,31,["H8033"]],[31,33,["H6963"]],[33,35,["H120"]],[35,36,["H3588","H518"]],[36,37,["H5483"]],[37,38,["H631"]],[38,40,["H2543"]],[40,41,["H631"]],[41,44,["H168"]],[44,45,["H834"]],[45,46,["H1992"]],[46,47,[]]]},{"k":9718,"v":[[0,3,["H7121"]],[3,5,["H7778"]],[5,8,["H5046"]],[8,12,["H4428"]],[12,13,["H1004"]],[13,14,["H6441"]]]},{"k":9719,"v":[[0,3,["H4428"]],[3,4,["H6965"]],[4,7,["H3915"]],[7,9,["H559"]],[9,10,["H413"]],[10,12,["H5650"]],[12,15,["H4994"]],[15,16,["H5046"]],[16,17,["(H853)"]],[17,18,["H834"]],[18,20,["H758"]],[20,22,["H6213"]],[22,26,["H3045"]],[26,27,["H3588"]],[27,28,["H587"]],[28,30,["H7457"]],[30,35,["H3318"]],[35,36,["H4480"]],[36,38,["H4264"]],[38,41,["H2247"]],[41,44,["H7704"]],[44,45,["H559"]],[45,46,["H3588"]],[46,49,["H3318"]],[49,50,["H4480"]],[50,52,["H5892"]],[52,55,["H8610"]],[55,57,["H2416"]],[57,59,["H935"]],[59,60,["H413"]],[60,62,["H5892"]]]},{"k":9720,"v":[[0,2,["H259"]],[2,5,["H4480","H5650"]],[5,6,["H6030"]],[6,8,["H559"]],[8,11,["H3947"]],[11,14,["H4994"]],[14,15,["H2568"]],[15,16,["H4480"]],[16,18,["H5483"]],[18,20,["H7604"]],[20,21,["H834"]],[21,23,["H7604"]],[23,27,["H2009"]],[27,31,["H3605"]],[31,33,["H1995"]],[33,35,["H3478"]],[35,36,["H834"]],[36,38,["H7604"]],[38,41,["H2009"]],[41,48,["H3605"]],[48,50,["H1995"]],[50,53,["H3478"]],[53,54,["H834"]],[54,56,["H8552"]],[56,60,["H7971"]],[60,62,["H7200"]]]},{"k":9721,"v":[[0,2,["H3947"]],[2,4,["H8147"]],[4,5,["H7393"]],[5,6,["H5483"]],[6,9,["H4428"]],[9,10,["H7971"]],[10,11,["H310"]],[11,13,["H4264"]],[13,16,["H758"]],[16,17,["H559"]],[17,18,["H1980"]],[18,20,["H7200"]]]},{"k":9722,"v":[[0,3,["H1980"]],[3,4,["H310"]],[4,6,["H5704"]],[6,7,["H3383"]],[7,9,["H2009"]],[9,10,["H3605"]],[10,12,["H1870"]],[12,14,["H4392"]],[14,16,["H899"]],[16,18,["H3627"]],[18,19,["H834"]],[19,21,["H758"]],[21,24,["H7993"]],[24,27,["H2648"]],[27,30,["H4397"]],[30,31,["H7725"]],[31,33,["H5046"]],[33,35,["H4428"]]]},{"k":9723,"v":[[0,3,["H5971"]],[3,5,["H3318"]],[5,7,["H962","(H853)"]],[7,9,["H4264"]],[9,12,["H758"]],[12,15,["H5429"]],[15,18,["H5560"]],[18,19,["H1961"]],[19,23,["H8255"]],[23,26,["H5429"]],[26,28,["H8184"]],[28,31,["H8255"]],[31,35,["H1697"]],[35,38,["H3068"]]]},{"k":9724,"v":[[0,3,["H4428"]],[3,4,["H6485","(H853)"]],[4,6,["H7991"]],[6,7,["H5921"]],[7,8,["H834"]],[8,9,["H3027"]],[9,11,["H8172"]],[11,16,["H5921"]],[16,18,["H8179"]],[18,21,["H5971"]],[21,23,["H7429"]],[23,27,["H8179"]],[27,30,["H4191"]],[30,31,["H834"]],[31,33,["H376"]],[33,35,["H430"]],[35,37,["H1696"]],[37,38,["H834"]],[38,39,["H1696"]],[39,42,["H4428"]],[42,44,["H3381"]],[44,45,["H413"]],[45,46,[]]]},{"k":9725,"v":[[0,5,["H1961"]],[5,8,["H376"]],[8,10,["H430"]],[10,12,["H1696"]],[12,13,["H413"]],[13,15,["H4428"]],[15,16,["H559"]],[16,18,["H5429"]],[18,20,["H8184"]],[20,23,["H8255"]],[23,26,["H5429"]],[26,29,["H5560"]],[29,32,["H8255"]],[32,34,["H1961"]],[34,36,["H4279"]],[36,39,["H6256"]],[39,42,["H8179"]],[42,44,["H8111"]]]},{"k":9726,"v":[[0,3,["H7991"]],[3,4,["H6030","(H853)"]],[4,6,["H376"]],[6,8,["H430"]],[8,10,["H559"]],[10,12,["H2009"]],[12,15,["H3068"]],[15,17,["H6213"]],[17,18,["H699"]],[18,20,["H8064"]],[20,22,["H2088"]],[22,24,["H1697"]],[24,25,["H1961"]],[25,28,["H559"]],[28,29,["H2009"]],[29,32,["H7200"]],[32,36,["H5869"]],[36,39,["H3808"]],[39,40,["H398"]],[40,41,["H4480","H8033"]]]},{"k":9727,"v":[[0,2,["H3651"]],[2,5,["H1961"]],[5,10,["H5971"]],[10,12,["H7429"]],[12,16,["H8179"]],[16,19,["H4191"]]]},{"k":9728,"v":[[0,2,["H1696"]],[2,3,["H477"]],[3,4,["H413"]],[4,6,["H802"]],[6,7,["H834","(H853)"]],[7,8,["H1121"]],[8,13,["H2421"]],[13,14,["H559"]],[14,15,["H6965"]],[15,17,["H1980"]],[17,18,["H859"]],[18,21,["H1004"]],[21,23,["H1481"]],[23,24,["H834"]],[24,27,["H1481"]],[27,28,["H3588"]],[28,30,["H3068"]],[30,32,["H7121"]],[32,35,["H7458"]],[35,39,["H1571"]],[39,40,["H935"]],[40,41,["H413"]],[41,43,["H776"]],[43,44,["H7651"]],[44,45,["H8141"]]]},{"k":9729,"v":[[0,3,["H802"]],[3,4,["H6965"]],[4,6,["H6213"]],[6,9,["H1697"]],[9,12,["H376"]],[12,14,["H430"]],[14,16,["H1931"]],[16,17,["H1980"]],[17,20,["H1004"]],[20,22,["H1481"]],[22,25,["H776"]],[25,28,["H6430"]],[28,29,["H7651"]],[29,30,["H8141"]]]},{"k":9730,"v":[[0,5,["H1961"]],[5,8,["H7651"]],[8,9,["H8141"]],[9,10,["H4480","H7097"]],[10,13,["H802"]],[13,14,["H7725"]],[14,18,["H4480","H776"]],[18,21,["H6430"]],[21,25,["H3318"]],[25,27,["H6817"]],[27,28,["H413"]],[28,30,["H4428"]],[30,31,["H413"]],[31,33,["H1004"]],[33,35,["H413"]],[35,37,["H7704"]]]},{"k":9731,"v":[[0,3,["H4428"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H1522"]],[6,8,["H5288"]],[8,11,["H376"]],[11,13,["H430"]],[13,14,["H559"]],[14,15,["H5608"]],[15,19,["H4994","(H853)"]],[19,20,["H3605"]],[20,23,["H1419"]],[23,24,["H834"]],[24,25,["H477"]],[25,27,["H6213"]]]},{"k":9732,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,9,["H5608"]],[9,11,["H4428","(H853)"]],[11,12,["H834"]],[12,20,["H2421","(H853)","H4191"]],[20,22,["H2009"]],[22,24,["H802"]],[24,25,["H834","(H853)"]],[25,26,["H1121"]],[26,31,["H2421"]],[31,32,["H6817"]],[32,33,["H413"]],[33,35,["H4428"]],[35,36,["H5921"]],[36,38,["H1004"]],[38,40,["H5921"]],[40,42,["H7704"]],[42,44,["H1522"]],[44,45,["H559"]],[45,47,["H113"]],[47,49,["H4428"]],[49,50,["H2063"]],[50,53,["H802"]],[53,55,["H2088"]],[55,58,["H1121"]],[58,59,["H834"]],[59,60,["H477"]],[60,63,["H2421"]]]},{"k":9733,"v":[[0,4,["H4428"]],[4,5,["H7592"]],[5,7,["H802"]],[7,9,["H5608"]],[9,13,["H4428"]],[13,14,["H5414"]],[14,18,["H259"]],[18,19,["H5631"]],[19,20,["H559"]],[20,21,["H7725","(H853)"]],[21,22,["H3605"]],[22,23,["H834"]],[23,27,["H3605"]],[27,29,["H8393"]],[29,32,["H7704"]],[32,35,["H4480","H3117"]],[35,38,["H5800","(H853)"]],[38,40,["H776"]],[40,42,["H5704"]],[42,43,["H6258"]]]},{"k":9734,"v":[[0,2,["H477"]],[2,3,["H935"]],[3,5,["H1834"]],[5,7,["H1130"]],[7,9,["H4428"]],[9,11,["H758"]],[11,13,["H2470"]],[13,17,["H5046"]],[17,19,["H559"]],[19,21,["H376"]],[21,23,["H430"]],[23,25,["H935"]],[25,26,["H5704","H2008"]]]},{"k":9735,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H2371"]],[6,7,["H3947"]],[7,9,["H4503"]],[9,12,["H3027"]],[12,14,["H1980"]],[14,15,["H7122"]],[15,17,["H376"]],[17,19,["H430"]],[19,21,["H1875","(H853)"]],[21,24,["H3068"]],[24,25,["H4480","H854"]],[25,27,["H559"]],[27,30,["H2421"]],[30,33,["H4480","H2483","H2088"]]]},{"k":9736,"v":[[0,2,["H2371"]],[2,3,["H1980"]],[3,5,["H7122"]],[5,8,["H3947"]],[8,10,["H4503"]],[10,11,["H3027"]],[11,15,["H3605"]],[15,17,["H2898"]],[17,19,["H1834"]],[19,20,["H705"]],[20,21,["H1581"]],[21,22,["H4853"]],[22,24,["H935"]],[24,26,["H5975"]],[26,27,["H6440"]],[27,30,["H559"]],[30,32,["H1121"]],[32,33,["H1130"]],[33,34,["H4428"]],[34,36,["H758"]],[36,38,["H7971"]],[38,40,["H413"]],[40,42,["H559"]],[42,45,["H2421"]],[45,48,["H4480","H2483","H2088"]]]},{"k":9737,"v":[[0,2,["H477"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H1980"]],[6,7,["H559"]],[7,13,["H2421","H2421"]],[13,16,["H3068"]],[16,18,["H7200"]],[18,20,["H3588"]],[20,24,["H4191","H4191"]]]},{"k":9738,"v":[[0,3,["H5975","(H853)"]],[3,5,["H6440"]],[5,6,["H7760"]],[6,7,["H5704"]],[7,10,["H954"]],[10,13,["H376"]],[13,15,["H430"]],[15,16,["H1058"]]]},{"k":9739,"v":[[0,2,["H2371"]],[2,3,["H559"]],[3,4,["H4069"]],[4,5,["H1058"]],[5,7,["H113"]],[7,10,["H559"]],[10,11,["H3588"]],[11,13,["H3045","(H853)"]],[13,15,["H7451"]],[15,16,["H834"]],[16,19,["H6213"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,27,["H4013"]],[27,30,["H7971"]],[30,32,["H784"]],[32,36,["H970"]],[36,39,["H2026"]],[39,42,["H2719"]],[42,45,["H7376"]],[45,47,["H5768"]],[47,50,["H1234"]],[50,54,["H2030"]]]},{"k":9740,"v":[[0,2,["H2371"]],[2,3,["H559"]],[3,4,["H3588"]],[4,5,["H4100"]],[5,8,["H5650"]],[8,10,["H3611"]],[10,11,["H3588"]],[11,14,["H6213"]],[14,15,["H2088"]],[15,16,["H1419"]],[16,17,["H1697"]],[17,19,["H477"]],[19,20,["H559"]],[20,22,["H3068"]],[22,24,["H7200"]],[24,30,["H4428"]],[30,31,["H5921"]],[31,32,["H758"]]]},{"k":9741,"v":[[0,3,["H1980"]],[3,4,["H4480","H854"]],[4,5,["H477"]],[5,7,["H935"]],[7,8,["H413"]],[8,10,["H113"]],[10,12,["H559"]],[12,15,["H4100"]],[15,16,["H559"]],[16,17,["H477"]],[17,22,["H559"]],[22,24,["H559"]],[24,30,["H2421","H2421"]]]},{"k":9742,"v":[[0,5,["H1961"]],[5,8,["H4480","H4283"]],[8,11,["H3947"]],[11,14,["H4346"]],[14,16,["H2881"]],[16,19,["H4325"]],[19,21,["H6566"]],[21,23,["H5921"]],[23,25,["H6440"]],[25,29,["H4191"]],[29,31,["H2371"]],[31,32,["H4427"]],[32,35,["H8478"]]]},{"k":9743,"v":[[0,4,["H2568"]],[4,5,["H8141"]],[5,7,["H3141"]],[7,9,["H1121"]],[9,11,["H256"]],[11,12,["H4428"]],[12,14,["H3478"]],[14,15,["H3092"]],[15,18,["H4428"]],[18,20,["H3063"]],[20,21,["H3088"]],[21,23,["H1121"]],[23,25,["H3092"]],[25,26,["H4428"]],[26,28,["H3063"]],[28,31,["H4427"]]]},{"k":9744,"v":[[0,1,["H7970"]],[1,3,["H8147"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,6,["H1961"]],[6,12,["H4427"]],[12,15,["H4427"]],[15,16,["H8083"]],[16,17,["H8141"]],[17,19,["H3389"]]]},{"k":9745,"v":[[0,3,["H1980"]],[3,6,["H1870"]],[6,9,["H4428"]],[9,11,["H3478"]],[11,12,["H834"]],[12,13,["H6213"]],[13,15,["H1004"]],[15,17,["H256"]],[17,18,["H3588"]],[18,20,["H1323"]],[20,22,["H256"]],[22,23,["H1961"]],[23,25,["H802"]],[25,28,["H6213"]],[28,29,["H7451"]],[29,32,["H5869"]],[32,35,["H3068"]]]},{"k":9746,"v":[[0,3,["H3068"]],[3,4,["H14"]],[4,5,["H3808"]],[5,6,["H7843","(H853)"]],[6,7,["H3063"]],[7,9,["H1732"]],[9,11,["H5650"]],[11,12,["H4616"]],[12,13,["H834"]],[13,15,["H559"]],[15,18,["H5414"]],[18,20,["H3605","H3117"]],[20,22,["H5216"]],[22,26,["H1121"]]]},{"k":9747,"v":[[0,3,["H3117"]],[3,4,["H123"]],[4,5,["H6586"]],[5,7,["H4480","H8478"]],[7,9,["H3027"]],[9,11,["H3063"]],[11,13,["H4427"]],[13,15,["H4428"]],[15,16,["H5921"]],[16,17,[]]]},{"k":9748,"v":[[0,2,["H3141"]],[2,4,["H5674"]],[4,6,["H6811"]],[6,8,["H3605"]],[8,10,["H7393"]],[10,11,["H5973"]],[11,14,["H1931"]],[14,15,["H6965"]],[15,17,["H3915"]],[17,19,["H5221","(H853)"]],[19,21,["H123"]],[21,25,["H5437","H413"]],[25,28,["H8269"]],[28,31,["H7393"]],[31,34,["H5971"]],[34,35,["H5127"]],[35,38,["H168"]]]},{"k":9749,"v":[[0,2,["H123"]],[2,3,["H6586"]],[3,5,["H4480","H8478"]],[5,7,["H3027"]],[7,9,["H3063"]],[9,10,["H5704"]],[10,11,["H2088"]],[11,12,["H3117"]],[12,13,["H227"]],[13,14,["H3841"]],[14,15,["H6586"]],[15,18,["H1931"]],[18,19,["H6256"]]]},{"k":9750,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3141"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3063"]]]},{"k":9751,"v":[[0,2,["H3141"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,10,["H5973"]],[10,12,["H1"]],[12,15,["H5892"]],[15,17,["H1732"]],[17,19,["H274"]],[19,21,["H1121"]],[21,22,["H4427"]],[22,25,["H8478"]]]},{"k":9752,"v":[[0,3,["H8147","H6240"]],[3,4,["H8141"]],[4,6,["H3141"]],[6,8,["H1121"]],[8,10,["H256"]],[10,11,["H4428"]],[11,13,["H3478"]],[13,15,["H274"]],[15,17,["H1121"]],[17,19,["H3088"]],[19,20,["H4428"]],[20,22,["H3063"]],[22,25,["H4427"]]]},{"k":9753,"v":[[0,1,["H8147"]],[1,3,["H6242"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,7,["H274"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H259"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,22,["H517"]],[22,23,["H8034"]],[23,25,["H6271"]],[25,27,["H1323"]],[27,29,["H6018"]],[29,30,["H4428"]],[30,32,["H3478"]]]},{"k":9754,"v":[[0,3,["H1980"]],[3,6,["H1870"]],[6,9,["H1004"]],[9,11,["H256"]],[11,13,["H6213"]],[13,14,["H7451"]],[14,17,["H5869"]],[17,20,["H3068"]],[20,24,["H1004"]],[24,26,["H256"]],[26,27,["H3588"]],[27,28,["H1931"]],[28,33,["H2860"]],[33,36,["H1004"]],[36,38,["H256"]]]},{"k":9755,"v":[[0,3,["H1980"]],[3,4,["H854"]],[4,5,["H3141"]],[5,7,["H1121"]],[7,9,["H256"]],[9,12,["H4421"]],[12,13,["H5973"]],[13,14,["H2371"]],[14,15,["H4428"]],[15,17,["H758"]],[17,19,["H7433"]],[19,22,["H761"]],[22,23,["H5221","(H853)"]],[23,24,["H3141"]]]},{"k":9756,"v":[[0,2,["H4428"]],[2,3,["H3141"]],[3,5,["H7725"]],[5,8,["H7495"]],[8,10,["H3157"]],[10,11,["H4480"]],[11,13,["H4347"]],[13,14,["H834"]],[14,16,["H761"]],[16,18,["H5221"]],[18,21,["H7414"]],[21,24,["H3898"]],[24,25,["H854"]],[25,26,["H2371"]],[26,27,["H4428"]],[27,29,["H758"]],[29,31,["H274"]],[31,33,["H1121"]],[33,35,["H3088"]],[35,36,["H4428"]],[36,38,["H3063"]],[38,40,["H3381"]],[40,42,["H7200","(H853)"]],[42,43,["H3141"]],[43,45,["H1121"]],[45,47,["H256"]],[47,49,["H3157"]],[49,50,["H3588"]],[50,51,["H1931"]],[51,53,["H2470"]]]},{"k":9757,"v":[[0,2,["H477"]],[2,4,["H5030"]],[4,5,["H7121"]],[5,6,["H259"]],[6,9,["H4480","H1121"]],[9,12,["H5030"]],[12,14,["H559"]],[14,18,["H2296"]],[18,20,["H4975"]],[20,22,["H3947"]],[22,23,["H2088"]],[23,24,["H6378"]],[24,26,["H8081"]],[26,29,["H3027"]],[29,31,["H1980"]],[31,33,["H7433"]]]},{"k":9758,"v":[[0,4,["H935"]],[4,5,["H8033"]],[5,7,["H7200"]],[7,8,["H8033"]],[8,9,["H3058"]],[9,11,["H1121"]],[11,13,["H3092"]],[13,15,["H1121"]],[15,17,["H5250"]],[17,20,["H935"]],[20,25,["H6965"]],[25,27,["H4480","H8432"]],[27,29,["H251"]],[29,31,["H935"]],[31,35,["H2315"]],[35,36,["H2315"]]]},{"k":9759,"v":[[0,2,["H3947"]],[2,4,["H6378"]],[4,6,["H8081"]],[6,8,["H3332"]],[8,10,["H5921"]],[10,12,["H7218"]],[12,14,["H559"]],[14,15,["H3541"]],[15,16,["H559"]],[16,18,["H3068"]],[18,21,["H4886"]],[21,23,["H4428"]],[23,24,["H413"]],[24,25,["H3478"]],[25,27,["H6605"]],[27,29,["H1817"]],[29,31,["H5127"]],[31,33,["H2442"]],[33,34,["H3808"]]]},{"k":9760,"v":[[0,4,["H5288"]],[4,8,["H5288"]],[8,10,["H5030"]],[10,11,["H1980"]],[11,13,["H7433"]]]},{"k":9761,"v":[[0,4,["H935"]],[4,5,["H2009"]],[5,7,["H8269"]],[7,10,["H2428"]],[10,12,["H3427"]],[12,15,["H559"]],[15,19,["H1697"]],[19,20,["H413"]],[20,23,["H8269"]],[23,25,["H3058"]],[25,26,["H559"]],[26,27,["H413"]],[27,28,["H4310"]],[28,30,["H4480","H3605"]],[30,34,["H559"]],[34,35,["H413"]],[35,38,["H8269"]]]},{"k":9762,"v":[[0,3,["H6965"]],[3,5,["H935"]],[5,8,["H1004"]],[8,11,["H3332"]],[11,13,["H8081"]],[13,14,["H413"]],[14,16,["H7218"]],[16,18,["H559"]],[18,21,["H3541"]],[21,22,["H559"]],[22,24,["H3068"]],[24,25,["H430"]],[25,27,["H3478"]],[27,30,["H4886"]],[30,32,["H4428"]],[32,33,["H413"]],[33,35,["H5971"]],[35,38,["H3068"]],[38,40,["H413"]],[40,41,["H3478"]]]},{"k":9763,"v":[[0,4,["H5221","(H853)"]],[4,6,["H1004"]],[6,8,["H256"]],[8,10,["H113"]],[10,14,["H5358"]],[14,16,["H1818"]],[16,19,["H5650"]],[19,21,["H5030"]],[21,24,["H1818"]],[24,26,["H3605"]],[26,28,["H5650"]],[28,31,["H3068"]],[31,34,["H4480","H3027"]],[34,36,["H348"]]]},{"k":9764,"v":[[0,3,["H3605"]],[3,4,["H1004"]],[4,6,["H256"]],[6,8,["H6"]],[8,13,["H3772"]],[13,15,["H256"]],[15,18,["H8366"]],[18,21,["H7023"]],[21,27,["H6113"]],[27,29,["H5800"]],[29,31,["H3478"]]]},{"k":9765,"v":[[0,4,["H5414","(H853)"]],[4,6,["H1004"]],[6,8,["H256"]],[8,11,["H1004"]],[11,13,["H3379"]],[13,15,["H1121"]],[15,17,["H5028"]],[17,21,["H1004"]],[21,23,["H1201"]],[23,25,["H1121"]],[25,27,["H281"]]]},{"k":9766,"v":[[0,3,["H3611"]],[3,5,["H398"]],[5,6,["H348"]],[6,9,["H2506"]],[9,11,["H3157"]],[11,16,["H369"]],[16,18,["H6912"]],[18,22,["H6605"]],[22,24,["H1817"]],[24,26,["H5127"]]]},{"k":9767,"v":[[0,2,["H3058"]],[2,4,["H3318"]],[4,5,["H413"]],[5,7,["H5650"]],[7,10,["H113"]],[10,13,["H559"]],[13,18,["H7965"]],[18,19,["H4069"]],[19,20,["H935"]],[20,21,["H2088"]],[21,22,["H7696"]],[22,24,["H413"]],[24,28,["H559"]],[28,29,["H413"]],[29,31,["H859"]],[31,32,["H3045"]],[32,34,["H376"]],[34,35,["(H853)"]],[35,37,["H7879"]]]},{"k":9768,"v":[[0,3,["H559"]],[3,6,["H8267"]],[6,7,["H5046"]],[7,9,["H4994"]],[9,12,["H559"]],[12,13,["H2063"]],[13,15,["H2063"]],[15,16,["H559"]],[16,18,["H413"]],[18,20,["H559"]],[20,21,["H3541"]],[21,22,["H559"]],[22,24,["H3068"]],[24,27,["H4886"]],[27,29,["H4428"]],[29,30,["H413"]],[30,31,["H3478"]]]},{"k":9769,"v":[[0,3,["H4116"]],[3,5,["H3947"]],[5,7,["H376"]],[7,9,["H899"]],[9,11,["H7760"]],[11,13,["H8478"]],[13,15,["H413"]],[15,17,["H1634"]],[17,20,["H4609"]],[20,22,["H8628"]],[22,24,["H7782"]],[24,25,["H559"]],[25,26,["H3058"]],[26,28,["H4427"]]]},{"k":9770,"v":[[0,2,["H3058"]],[2,4,["H1121"]],[4,6,["H3092"]],[6,8,["H1121"]],[8,10,["H5250"]],[10,11,["H7194"]],[11,12,["H413"]],[12,13,["H3141"]],[13,15,["H3141"]],[15,16,["H1961"]],[16,17,["H8104"]],[17,18,["H7433"]],[18,19,["H1931"]],[19,21,["H3605"]],[21,22,["H3478"]],[22,23,["H4480","H6440"]],[23,25,["H2371"]],[25,26,["H4428"]],[26,28,["H758"]]]},{"k":9771,"v":[[0,2,["H4428"]],[2,3,["H3088"]],[3,5,["H7725"]],[5,8,["H7495"]],[8,10,["H3157"]],[10,11,["H4480"]],[11,13,["H4347"]],[13,14,["H834"]],[14,16,["H761"]],[16,18,["H5221"]],[18,22,["H3898"]],[22,23,["H854"]],[23,24,["H2371"]],[24,25,["H4428"]],[25,27,["H758"]],[27,29,["H3058"]],[29,30,["H559"]],[30,31,["H518"]],[31,33,["H3426"]],[33,35,["H5315"]],[35,38,["H408"]],[38,40,["H3318"]],[40,42,["H6412"]],[42,44,["H4480"]],[44,46,["H5892"]],[46,48,["H1980"]],[48,50,["H5046"]],[50,53,["H3157"]]]},{"k":9772,"v":[[0,2,["H3058"]],[2,6,["H7392"]],[6,8,["H1980"]],[8,10,["H3157"]],[10,11,["H3588"]],[11,12,["H3141"]],[12,13,["H7901"]],[13,14,["H8033"]],[14,16,["H274"]],[16,17,["H4428"]],[17,19,["H3063"]],[19,22,["H3381"]],[22,24,["H7200","(H853)"]],[24,25,["H3141"]]]},{"k":9773,"v":[[0,3,["H5975"]],[3,5,["H6822"]],[5,6,["H5921"]],[6,8,["H4026"]],[8,10,["H3157"]],[10,13,["H7200","(H853)"]],[13,15,["H8229"]],[15,17,["H3058"]],[17,20,["H935"]],[20,22,["H559"]],[22,23,["H589"]],[23,24,["H7200"]],[24,26,["H8229"]],[26,28,["H3088"]],[28,29,["H559"]],[29,30,["H3947"]],[30,32,["H7395"]],[32,34,["H7971"]],[34,36,["H7122"]],[36,41,["H559"]],[41,44,["H7965"]]]},{"k":9774,"v":[[0,3,["H1980"]],[3,6,["H7392","H5483"]],[6,8,["H7122"]],[8,11,["H559"]],[11,12,["H3541"]],[12,13,["H559"]],[13,15,["H4428"]],[15,18,["H7965"]],[18,20,["H3058"]],[20,21,["H559"]],[21,22,["H4100"]],[22,28,["H7965"]],[28,29,["H5437"]],[29,31,["H413","H310"]],[31,35,["H6822"]],[35,36,["H5046"]],[36,37,["H559"]],[37,39,["H4397"]],[39,40,["H935"]],[40,41,["H5704"]],[41,42,["H1992"]],[42,47,["H7725","H3808"]]]},{"k":9775,"v":[[0,4,["H7971"]],[4,6,["H8145"]],[6,8,["H7392","H5483"]],[8,10,["H935"]],[10,11,["H413"]],[11,14,["H559"]],[14,15,["H3541"]],[15,16,["H559"]],[16,18,["H4428"]],[18,21,["H7965"]],[21,23,["H3058"]],[23,24,["H559"]],[24,25,["H4100"]],[25,31,["H7965"]],[31,32,["H5437"]],[32,34,["H413","H310"]],[34,35,[]]]},{"k":9776,"v":[[0,3,["H6822"]],[3,4,["H5046"]],[4,5,["H559"]],[5,7,["H935"]],[7,8,["H5704"]],[8,9,["H413"]],[9,14,["H7725","H3808"]],[14,17,["H4491"]],[17,21,["H4491"]],[21,23,["H3058"]],[23,25,["H1121"]],[25,27,["H5250"]],[27,28,["H3588"]],[28,30,["H5090"]],[30,31,["H7697"]]]},{"k":9777,"v":[[0,2,["H3088"]],[2,3,["H559"]],[3,5,["H631"]],[5,8,["H7393"]],[8,11,["H631"]],[11,13,["H3088"]],[13,14,["H4428"]],[14,16,["H3478"]],[16,18,["H274"]],[18,19,["H4428"]],[19,21,["H3063"]],[21,23,["H3318"]],[23,24,["H376"]],[24,27,["H7393"]],[27,31,["H3318"]],[31,32,["H7122"]],[32,33,["H3058"]],[33,35,["H4672"]],[35,39,["H2513"]],[39,41,["H5022"]],[41,43,["H3158"]]]},{"k":9778,"v":[[0,5,["H1961"]],[5,7,["H3088"]],[7,8,["H7200","(H853)"]],[8,9,["H3058"]],[9,12,["H559"]],[12,15,["H7965"]],[15,16,["H3058"]],[16,19,["H559"]],[19,20,["H4100"]],[20,21,["H7965"]],[21,24,["H5704"]],[24,26,["H2183"]],[26,29,["H517"]],[29,30,["H348"]],[30,33,["H3785"]],[33,36,["H7227"]]]},{"k":9779,"v":[[0,2,["H3088"]],[2,3,["H2015"]],[3,5,["H3027"]],[5,7,["H5127"]],[7,9,["H559"]],[9,10,["H413"]],[10,11,["H274"]],[11,14,["H4820"]],[14,16,["H274"]]]},{"k":9780,"v":[[0,2,["H3058"]],[2,5,["H7198"]],[5,8,["H4390"]],[8,9,["H3027"]],[9,11,["H5221","(H853)"]],[11,12,["H3088"]],[12,13,["H996"]],[13,15,["H2220"]],[15,18,["H2678"]],[18,20,["H3318"]],[20,23,["H4480","H3820"]],[23,27,["H3766"]],[27,30,["H7393"]]]},{"k":9781,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,5,["H920"]],[5,7,["H7991"]],[7,9,["H5375"]],[9,11,["H7993"]],[11,15,["H2513"]],[15,18,["H7704"]],[18,20,["H5022"]],[20,22,["H3158"]],[22,23,["H3588"]],[23,24,["H2142"]],[24,28,["H589"]],[28,30,["H859","(H853)"]],[30,31,["H7392"]],[31,32,["H6776"]],[32,33,["H310"]],[33,34,["H256"]],[34,36,["H1"]],[36,38,["H3068"]],[38,39,["H5375","(H853)"]],[39,40,["H2088"]],[40,41,["H4853"]],[41,42,["H5921"]],[42,43,[]]]},{"k":9782,"v":[[0,1,["H518","H3808"]],[1,4,["H7200"]],[4,5,["H570","(H853)"]],[5,7,["H1818"]],[7,9,["H5022"]],[9,12,["H1818"]],[12,15,["H1121"]],[15,16,["H5002"]],[16,18,["H3068"]],[18,22,["H7999"]],[22,25,["H2063"]],[25,26,["H2513"]],[26,27,["H5002"]],[27,29,["H3068"]],[29,30,["H6258"]],[30,32,["H5375"]],[32,34,["H7993"]],[34,38,["H2513"]],[38,44,["H1697"]],[44,47,["H3068"]]]},{"k":9783,"v":[[0,3,["H274"]],[3,5,["H4428"]],[5,7,["H3063"]],[7,8,["H7200"]],[8,11,["H5127"]],[11,14,["H1870"]],[14,17,["H1588"]],[17,18,["H1004"]],[18,20,["H3058"]],[20,21,["H7291"]],[21,22,["H310"]],[22,25,["H559"]],[25,26,["H5221"]],[26,28,["H1571"]],[28,29,["H413"]],[29,31,["H4818"]],[31,39,["H4608"]],[39,41,["H1483"]],[41,42,["H834"]],[42,44,["H854"]],[44,45,["H2991"]],[45,48,["H5127"]],[48,50,["H4023"]],[50,52,["H4191"]],[52,53,["H8033"]]]},{"k":9784,"v":[[0,3,["H5650"]],[3,8,["H7392","(H853)"]],[8,10,["H3389"]],[10,12,["H6912"]],[12,16,["H6900"]],[16,17,["H5973"]],[17,19,["H1"]],[19,22,["H5892"]],[22,24,["H1732"]]]},{"k":9785,"v":[[0,4,["H259","H6240"]],[4,5,["H8141"]],[5,7,["H3141"]],[7,9,["H1121"]],[9,11,["H256"]],[11,13,["H274"]],[13,15,["H4427"]],[15,16,["H5921"]],[16,17,["H3063"]]]},{"k":9786,"v":[[0,3,["H3058"]],[3,5,["H935"]],[5,7,["H3157"]],[7,8,["H348"]],[8,9,["H8085"]],[9,14,["H7760","H6320"]],[14,16,["H5869"]],[16,18,["H3190","(H853)"]],[18,20,["H7218"]],[20,23,["H8259"]],[23,24,["H1157"]],[24,26,["H2474"]]]},{"k":9787,"v":[[0,3,["H3058"]],[3,5,["H935"]],[5,8,["H8179"]],[8,10,["H559"]],[10,12,["H2174"]],[12,13,["H7965"]],[13,15,["H2026"]],[15,17,["H113"]]]},{"k":9788,"v":[[0,4,["H5375"]],[4,6,["H6440"]],[6,7,["H413"]],[7,9,["H2474"]],[9,11,["H559"]],[11,12,["H4310"]],[12,16,["H854"]],[16,17,["H4310"]],[17,21,["H8259"]],[21,22,["H413"]],[22,24,["H8147"]],[24,26,["H7969"]],[26,27,["H5631"]]]},{"k":9789,"v":[[0,3,["H559"]],[3,6,["H8058"]],[6,11,["H8058"]],[11,16,["H4480","H1818"]],[16,18,["H5137"]],[18,19,["H413"]],[19,21,["H7023"]],[21,23,["H413"]],[23,25,["H5483"]],[25,31,["H7429"]]]},{"k":9790,"v":[[0,6,["H935"]],[6,9,["H398"]],[9,11,["H8354"]],[11,13,["H559"]],[13,15,["H6485"]],[15,16,["H4994","(H853)"]],[16,17,["H2063"]],[17,18,["H779"]],[18,21,["H6912"]],[21,23,["H3588"]],[23,24,["H1931"]],[24,27,["H4428"]],[27,28,["H1323"]]]},{"k":9791,"v":[[0,3,["H1980"]],[3,5,["H6912"]],[5,9,["H4672"]],[9,11,["H3808"]],[11,14,["H3588","H518"]],[14,16,["H1538"]],[16,19,["H7272"]],[19,22,["H3709"]],[22,25,["H3027"]]]},{"k":9792,"v":[[0,4,["H7725"]],[4,6,["H5046"]],[6,10,["H559"]],[10,11,["H1931"]],[11,14,["H1697"]],[14,17,["H3068"]],[17,18,["H834"]],[18,20,["H1696"]],[20,21,["H3027"]],[21,23,["H5650"]],[23,24,["H452"]],[24,26,["H8664"]],[26,27,["H559"]],[27,30,["H2506"]],[30,32,["H3157"]],[32,34,["H3611"]],[34,35,["H398","(H853)"]],[35,37,["H1320"]],[37,39,["H348"]]]},{"k":9793,"v":[[0,3,["H5038"]],[3,5,["H348"]],[5,7,["H1961"]],[7,9,["H1828"]],[9,10,["H5921"]],[10,12,["H6440"]],[12,15,["H7704"]],[15,18,["H2506"]],[18,20,["H3157"]],[20,22,["H834"]],[22,25,["H3808"]],[25,26,["H559"]],[26,27,["H2063"]],[27,29,["H348"]]]},{"k":9794,"v":[[0,2,["H256"]],[2,4,["H7657"]],[4,5,["H1121"]],[5,7,["H8111"]],[7,9,["H3058"]],[9,10,["H3789"]],[10,11,["H5612"]],[11,13,["H7971"]],[13,15,["H8111"]],[15,16,["H413"]],[16,18,["H8269"]],[18,20,["H3157"]],[20,23,["H2205"]],[23,25,["H413"]],[25,29,["H539"]],[29,30,["H256"]],[30,32,["H559"]]]},{"k":9795,"v":[[0,1,["H6258"]],[1,5,["H2088"]],[5,6,["H5612"]],[6,7,["H935"]],[7,8,["H413"]],[8,12,["H113"]],[12,13,["H1121"]],[13,15,["H854"]],[15,20,["H854"]],[20,22,["H7393"]],[22,24,["H5483"]],[24,26,["H4013"]],[26,27,["H5892"]],[27,30,["H5402"]]]},{"k":9796,"v":[[0,3,["H7200"]],[3,5,["H2896"]],[5,7,["H3477"]],[7,11,["H4480","H1121","H113"]],[11,13,["H7760"]],[13,15,["H5921"]],[15,17,["H1"]],[17,18,["H3678"]],[18,20,["H3898"]],[20,21,["H5921"]],[21,23,["H113"]],[23,24,["H1004"]]]},{"k":9797,"v":[[0,4,["H3966","H3966"]],[4,5,["H3372"]],[5,7,["H559"]],[7,8,["H2009"]],[8,9,["H8147"]],[9,10,["H4428"]],[10,11,["H5975"]],[11,12,["H3808"]],[12,13,["H6440"]],[13,15,["H349"]],[15,18,["H587"]],[18,19,["H5975"]]]},{"k":9798,"v":[[0,3,["H834"]],[3,5,["H5921"]],[5,7,["H1004"]],[7,10,["H834"]],[10,12,["H5921"]],[12,14,["H5892"]],[14,16,["H2205"]],[16,21,["H539"]],[21,25,["H7971"]],[25,26,["H413"]],[26,27,["H3058"]],[27,28,["H559"]],[28,29,["H587"]],[29,32,["H5650"]],[32,35,["H6213"]],[35,36,["H3605"]],[36,37,["H834"]],[37,40,["H559","H413"]],[40,44,["H3808"]],[44,47,["H4427","H376"]],[47,48,["H6213"]],[48,53,["H2896"]],[53,56,["H5869"]]]},{"k":9799,"v":[[0,3,["H3789"]],[3,5,["H5612"]],[5,8,["H8145"]],[8,9,["H413"]],[9,11,["H559"]],[11,12,["H518"]],[12,13,["H859"]],[13,18,["H859"]],[18,20,["H8085"]],[20,23,["H6963"]],[23,24,["H3947"]],[24,25,["(H853)"]],[25,27,["H7218"]],[27,30,["H376"]],[30,32,["H113"]],[32,33,["H1121"]],[33,35,["H935"]],[35,36,["H413"]],[36,39,["H3157"]],[39,42,["H4279"]],[42,44,["H6256"]],[44,47,["H4428"]],[47,48,["H1121"]],[48,50,["H7657"]],[50,51,["H376"]],[51,53,["H854"]],[53,56,["H1419"]],[56,59,["H5892"]],[59,63,["H1431","(H853)"]]]},{"k":9800,"v":[[0,5,["H1961"]],[5,8,["H5612"]],[8,9,["H935"]],[9,10,["H413"]],[10,14,["H3947","(H853)"]],[14,16,["H4428"]],[16,17,["H1121"]],[17,19,["H7819"]],[19,20,["H7657"]],[20,21,["H376"]],[21,23,["H7760","(H853)"]],[23,25,["H7218"]],[25,27,["H1731"]],[27,29,["H7971","H413"]],[29,33,["H3157"]]]},{"k":9801,"v":[[0,3,["H935"]],[3,5,["H4397"]],[5,7,["H5046"]],[7,9,["H559"]],[9,12,["H935"]],[12,14,["H7218"]],[14,17,["H4428"]],[17,18,["H1121"]],[18,21,["H559"]],[21,22,["H7760"]],[22,26,["H8147"]],[26,27,["H6652"]],[27,31,["H6607"]],[31,34,["H8179"]],[34,35,["H5704"]],[35,37,["H1242"]]]},{"k":9802,"v":[[0,5,["H1961"]],[5,8,["H1242"]],[8,12,["H3318"]],[12,14,["H5975"]],[14,16,["H559"]],[16,17,["H413"]],[17,18,["H3605"]],[18,20,["H5971"]],[20,21,["H859"]],[21,23,["H6662"]],[23,24,["H2009"]],[24,25,["H589"]],[25,26,["H7194"]],[26,27,["H5921"]],[27,29,["H113"]],[29,31,["H2026"]],[31,34,["H4310"]],[34,35,["H5221","(H853)"]],[35,36,["H3605"]],[36,37,["H428"]]]},{"k":9803,"v":[[0,1,["H3045"]],[1,2,["H645"]],[2,3,["H3588"]],[3,6,["H5307"]],[6,9,["H776"]],[9,10,["H3808"]],[10,13,["H4480","H1697"]],[13,16,["H3068"]],[16,17,["H834"]],[17,19,["H3068"]],[19,20,["H1696"]],[20,21,["H5921"]],[21,23,["H1004"]],[23,25,["H256"]],[25,28,["H3068"]],[28,30,["H6213","(H853)"]],[30,32,["H834"]],[32,34,["H1696"]],[34,35,["H3027"]],[35,37,["H5650"]],[37,38,["H452"]]]},{"k":9804,"v":[[0,2,["H3058"]],[2,3,["H5221","(H853)"]],[3,4,["H3605"]],[4,6,["H7604"]],[6,9,["H1004"]],[9,11,["H256"]],[11,13,["H3157"]],[13,15,["H3605"]],[15,18,["H1419"]],[18,21,["H3045"]],[21,24,["H3548"]],[24,25,["H5704"]],[25,27,["H7604"]],[27,29,["H1115"]],[29,30,["H8300"]]]},{"k":9805,"v":[[0,3,["H6965"]],[3,5,["H935"]],[5,7,["H1980"]],[7,9,["H8111"]],[9,12,["H1931"]],[12,17,["H1044"]],[17,20,["H1870"]]]},{"k":9806,"v":[[0,1,["H3058"]],[1,2,["H4672"]],[2,3,["(H853)"]],[3,5,["H251"]],[5,7,["H274"]],[7,8,["H4428"]],[8,10,["H3063"]],[10,12,["H559"]],[12,13,["H4310"]],[13,15,["H859"]],[15,18,["H559"]],[18,19,["H587"]],[19,22,["H251"]],[22,24,["H274"]],[24,28,["H3381"]],[28,30,["H7965"]],[30,32,["H1121"]],[32,35,["H4428"]],[35,38,["H1121"]],[38,41,["H1377"]]]},{"k":9807,"v":[[0,3,["H559"]],[3,4,["H8610"]],[4,6,["H2416"]],[6,9,["H8610"]],[9,11,["H2416"]],[11,13,["H7819"]],[13,15,["H413"]],[15,17,["H953"]],[17,21,["H1044"]],[21,23,["H8147"]],[23,25,["H705"]],[25,26,["H376"]],[26,27,["H3808"]],[27,28,["H7604"]],[28,30,["H376"]],[30,31,["H4480"]],[31,32,[]]]},{"k":9808,"v":[[0,5,["H1980"]],[5,6,["H4480","H8033"]],[6,9,["H4672","(H853)"]],[9,10,["H3082"]],[10,12,["H1121"]],[12,14,["H7394"]],[14,17,["H7122"]],[17,21,["H1288"]],[21,24,["H559"]],[24,25,["H413"]],[25,27,["H3426","(H853)"]],[27,29,["H3824"]],[29,30,["H3477"]],[30,31,["H834"]],[31,33,["H3824"]],[33,35,["H5973"]],[35,37,["H3824"]],[37,39,["H3082"]],[39,40,["H559"]],[40,42,["H3426"]],[42,45,["H3426"]],[45,46,["H5414"]],[46,47,["(H853)"]],[47,49,["H3027"]],[49,52,["H5414"]],[52,55,["H3027"]],[55,60,["H5927"]],[60,61,["H413"]],[61,63,["H413"]],[63,65,["H4818"]]]},{"k":9809,"v":[[0,3,["H559"]],[3,4,["H1980"]],[4,5,["H854"]],[5,8,["H7200"]],[8,10,["H7068"]],[10,13,["H3068"]],[13,18,["H7392"]],[18,21,["H7393"]]]},{"k":9810,"v":[[0,4,["H935"]],[4,6,["H8111"]],[6,8,["H5221","(H853)"]],[8,9,["H3605"]],[9,11,["H7604"]],[11,13,["H256"]],[13,15,["H8111"]],[15,16,["H5704"]],[16,19,["H8045"]],[19,24,["H1697"]],[24,27,["H3068"]],[27,28,["H834"]],[28,30,["H1696"]],[30,31,["H413"]],[31,32,["H452"]]]},{"k":9811,"v":[[0,2,["H3058"]],[2,3,["H6908","(H853)"]],[3,4,["H3605"]],[4,6,["H5971"]],[6,9,["H559"]],[9,10,["H413"]],[10,12,["H256"]],[12,13,["H5647","(H853)"]],[13,14,["H1168"]],[14,16,["H4592"]],[16,18,["H3058"]],[18,20,["H5647"]],[20,22,["H7235"]]]},{"k":9812,"v":[[0,1,["H6258"]],[1,3,["H7121"]],[3,4,["H413"]],[4,6,["H3605"]],[6,8,["H5030"]],[8,10,["H1168"]],[10,11,["H3605"]],[11,13,["H5647"]],[13,15,["H3605"]],[15,17,["H3548"]],[17,19,["H376","H408"]],[19,21,["H6485"]],[21,22,["H3588"]],[22,26,["H1419"]],[26,27,["H2077"]],[27,31,["H1168"]],[31,32,["H3605","H834"]],[32,35,["H6485"]],[35,38,["H3808"]],[38,39,["H2421"]],[39,41,["H3058"]],[41,42,["H6213"]],[42,45,["H6122"]],[45,48,["H4616"]],[48,52,["H6","(H853)"]],[52,54,["H5647"]],[54,56,["H1168"]]]},{"k":9813,"v":[[0,2,["H3058"]],[2,3,["H559"]],[3,4,["H6942"]],[4,7,["H6116"]],[7,9,["H1168"]],[9,12,["H7121"]],[12,13,[]]]},{"k":9814,"v":[[0,2,["H3058"]],[2,3,["H7971"]],[3,5,["H3605"]],[5,6,["H3478"]],[6,8,["H3605"]],[8,10,["H5647"]],[10,12,["H1168"]],[12,13,["H935"]],[13,18,["H3808"]],[18,20,["H376"]],[20,21,["H7604"]],[21,22,["H834"]],[22,23,["H935"]],[23,24,["H3808"]],[24,27,["H935"]],[27,30,["H1004"]],[30,32,["H1168"]],[32,35,["H1004"]],[35,37,["H1168"]],[37,39,["H4390"]],[39,42,["H6310"]],[42,44,["H6310"]]]},{"k":9815,"v":[[0,3,["H559"]],[3,6,["H834"]],[6,8,["H5921"]],[8,10,["H4458"]],[10,12,["H3318"]],[12,13,["H3830"]],[13,15,["H3605"]],[15,17,["H5647"]],[17,19,["H1168"]],[19,24,["H3318"]],[24,25,["H4403"]]]},{"k":9816,"v":[[0,2,["H3058"]],[2,3,["H935"]],[3,5,["H3082"]],[5,7,["H1121"]],[7,9,["H7394"]],[9,12,["H1004"]],[12,14,["H1168"]],[14,16,["H559"]],[16,19,["H5647"]],[19,21,["H1168"]],[21,22,["H2664"]],[22,24,["H7200"]],[24,25,["H6435"]],[25,27,["H3426"]],[27,28,["H6311"]],[28,29,["H5973"]],[29,34,["H4480","H5650"]],[34,37,["H3068"]],[37,38,["H3588","H518"]],[38,40,["H5647"]],[40,42,["H1168"]],[42,43,["H905"]]]},{"k":9817,"v":[[0,5,["H935"]],[5,7,["H6213"]],[7,8,["H2077"]],[8,11,["H5930"]],[11,12,["H3058"]],[12,13,["H7760"]],[13,14,["H8084"]],[14,15,["H376"]],[15,16,["H2351"]],[16,18,["H559"]],[18,20,["H376"]],[20,21,["H4480"]],[21,23,["H376"]],[23,24,["H834"]],[24,25,["H589"]],[25,27,["H935"]],[27,28,["H5921"]],[28,30,["H3027"]],[30,31,["H4422"]],[31,38,["H5315"]],[38,41,["H8478"]],[41,43,["H5315"]],[43,45,[]]]},{"k":9818,"v":[[0,5,["H1961"]],[5,13,["H3615"]],[13,15,["H6213"]],[15,18,["H5930"]],[18,20,["H3058"]],[20,21,["H559"]],[21,24,["H7323"]],[24,28,["H7991"]],[28,30,["H935"]],[30,32,["H5221"]],[32,35,["H376","H408"]],[35,37,["H3318"]],[37,40,["H5221"]],[40,44,["H6310"]],[44,47,["H2719"]],[47,50,["H7323"]],[50,53,["H7991"]],[53,56,["H7993"]],[56,58,["H1980"]],[58,59,["H5704"]],[59,61,["H5892"]],[61,64,["H1004"]],[64,66,["H1168"]]]},{"k":9819,"v":[[0,4,["H3318","(H853)"]],[4,6,["H4676"]],[6,10,["H1004"]],[10,12,["H1168"]],[12,14,["H8313"]],[14,15,[]]]},{"k":9820,"v":[[0,4,["H5422","(H853)"]],[4,6,["H4676"]],[6,8,["H1168"]],[8,11,["H5422","(H853)"]],[11,13,["H1004"]],[13,15,["H1168"]],[15,17,["H7760"]],[17,21,["H4163"]],[21,22,["H5704"]],[22,24,["H3117"]]]},{"k":9821,"v":[[0,2,["H3058"]],[2,3,["H8045","(H853)"]],[3,4,["H1168"]],[4,7,["H4480","H3478"]]]},{"k":9822,"v":[[0,1,["H7535"]],[1,4,["H2399"]],[4,6,["H3379"]],[6,8,["H1121"]],[8,10,["H5028"]],[10,11,["H834"]],[11,12,["(H853)"]],[12,13,["H3478"]],[13,15,["H2398"]],[15,16,["H3058"]],[16,17,["H5493"]],[17,18,["H3808"]],[18,20,["H4480","H310"]],[20,25,["H2091"]],[25,26,["H5695"]],[26,27,["H834"]],[27,30,["H1008"]],[30,32,["H834"]],[32,35,["H1835"]]]},{"k":9823,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H3058"]],[6,7,["H3282","H834"]],[7,11,["H2895"]],[11,13,["H6213"]],[13,17,["H3477"]],[17,20,["H5869"]],[20,23,["H6213"]],[23,26,["H1004"]],[26,28,["H256"]],[28,31,["H3605"]],[31,32,["H834"]],[32,36,["H3824"]],[36,38,["H1121"]],[38,41,["H7243"]],[41,44,["H3427"]],[44,45,["H5921"]],[45,47,["H3678"]],[47,49,["H3478"]]]},{"k":9824,"v":[[0,2,["H3058"]],[2,5,["H8104","H3808"]],[5,7,["H1980"]],[7,10,["H8451"]],[10,13,["H3068"]],[13,14,["H430"]],[14,16,["H3478"]],[16,18,["H3605"]],[18,20,["H3824"]],[20,23,["H5493"]],[23,24,["H3808"]],[24,25,["H4480","H5921"]],[25,27,["H2403"]],[27,29,["H3379"]],[29,30,["H834"]],[30,31,["(H853)"]],[31,32,["H3478"]],[32,34,["H2398"]]]},{"k":9825,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,5,["H3068"]],[5,6,["H2490"]],[6,10,["H7096","H3478"]],[10,12,["H2371"]],[12,13,["H5221"]],[13,16,["H3605"]],[16,18,["H1366"]],[18,20,["H3478"]]]},{"k":9826,"v":[[0,1,["H4480"]],[1,2,["H3383"]],[2,3,["H4217","H8121","(H853)"]],[3,4,["H3605"]],[4,6,["H776"]],[6,8,["H1568"]],[8,10,["H1425"]],[10,13,["H7206"]],[13,16,["H4520"]],[16,18,["H4480","H6177"]],[18,19,["H834"]],[19,21,["H5921"]],[21,23,["H5158"]],[23,24,["H769"]],[24,26,["H1568"]],[26,28,["H1316"]]]},{"k":9827,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3058"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H3605"]],[15,17,["H1369"]],[17,19,["H1992"]],[19,20,["H3808"]],[20,21,["H3789"]],[21,22,["H5921"]],[22,24,["H5612"]],[24,27,["H1697","H3117"]],[27,30,["H4428"]],[30,32,["H3478"]]]},{"k":9828,"v":[[0,2,["H3058"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,12,["H8111"]],[12,14,["H3059"]],[14,16,["H1121"]],[16,17,["H4427"]],[17,20,["H8478"]]]},{"k":9829,"v":[[0,3,["H3117"]],[3,4,["H834"]],[4,5,["H3058"]],[5,6,["H4427"]],[6,7,["H5921"]],[7,8,["H3478"]],[8,10,["H8111"]],[10,12,["H6242"]],[12,14,["H8083"]],[14,15,["H8141"]]]},{"k":9830,"v":[[0,3,["H6271"]],[3,5,["H517"]],[5,7,["H274"]],[7,8,["H7200"]],[8,9,["H3588"]],[9,11,["H1121"]],[11,13,["H4191"]],[13,15,["H6965"]],[15,17,["H6","(H853)"]],[17,18,["H3605"]],[18,20,["H2233"]],[20,21,["H4467"]]]},{"k":9831,"v":[[0,2,["H3089"]],[2,4,["H1323"]],[4,6,["H4428"]],[6,7,["H3141"]],[7,8,["H269"]],[8,10,["H274"]],[10,11,["H3947","(H853)"]],[11,12,["H3101"]],[12,14,["H1121"]],[14,16,["H274"]],[16,18,["H1589"]],[18,21,["H4480","H8432"]],[21,23,["H4428"]],[23,24,["H1121"]],[24,27,["H4191"]],[27,30,["H5641"]],[30,36,["H3243"]],[36,39,["H2315","H4296"]],[39,40,["H4480","H6440"]],[40,41,["H6271"]],[41,46,["H3808"]],[46,47,["H4191"]]]},{"k":9832,"v":[[0,3,["H1961"]],[3,5,["H854"]],[5,6,["H2244"]],[6,9,["H1004"]],[9,12,["H3068"]],[12,13,["H8337"]],[13,14,["H8141"]],[14,16,["H6271"]],[16,18,["H4427"]],[18,19,["H5921"]],[19,21,["H776"]]]},{"k":9833,"v":[[0,3,["H7637"]],[3,4,["H8141"]],[4,5,["H3077"]],[5,6,["H7971"]],[6,8,["H3947","(H853)"]],[8,10,["H8269"]],[10,12,["H3967"]],[12,15,["H3746"]],[15,18,["H7323"]],[18,20,["H935"]],[20,22,["H413"]],[22,26,["H1004"]],[26,29,["H3068"]],[29,31,["H3772"]],[31,33,["H1285"]],[33,39,["H7650"]],[39,44,["H1004"]],[44,47,["H3068"]],[47,49,["H7200"]],[49,50,["(H853)"]],[50,52,["H4428"]],[52,53,["H1121"]]]},{"k":9834,"v":[[0,3,["H6680"]],[3,5,["H559"]],[5,6,["H2088"]],[6,9,["H1697"]],[9,10,["H834"]],[10,13,["H6213"]],[13,16,["H7992"]],[16,17,["H4480"]],[17,20,["H935"]],[20,24,["H7676"]],[24,28,["H8104"]],[28,31,["H4931"]],[31,34,["H4428"]],[34,35,["H1004"]]]},{"k":9835,"v":[[0,4,["H7992"]],[4,9,["H8179"]],[9,11,["H5495"]],[11,15,["H7992"]],[15,18,["H8179"]],[18,19,["H310"]],[19,21,["H7323"]],[21,25,["H8104","(H853)"]],[25,27,["H4931"]],[27,30,["H1004"]],[30,36,["H4535"]]]},{"k":9836,"v":[[0,2,["H8147"]],[2,3,["H3027"]],[3,5,["H3605"]],[5,9,["H3318"]],[9,12,["H7676"]],[12,16,["H8104","(H853)"]],[16,18,["H4931"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,25,["H413"]],[25,27,["H4428"]]]},{"k":9837,"v":[[0,4,["H5362","H5921"]],[4,6,["H4428"]],[6,8,["H5439"]],[8,10,["H376"]],[10,13,["H3627"]],[13,16,["H3027"]],[16,20,["H935"]],[20,21,["H413"]],[21,23,["H7713"]],[23,27,["H4191"]],[27,29,["H1961"]],[29,31,["H854"]],[31,33,["H4428"]],[33,37,["H3318"]],[37,42,["H935"]]]},{"k":9838,"v":[[0,3,["H8269"]],[3,6,["H3967"]],[6,7,["H6213"]],[7,10,["H3605"]],[10,12,["H834"]],[12,13,["H3077"]],[13,15,["H3548"]],[15,16,["H6680"]],[16,19,["H3947"]],[19,21,["H376","(H853)"]],[21,23,["H376"]],[23,28,["H935"]],[28,31,["H7676"]],[31,32,["H5973"]],[32,37,["H3318"]],[37,40,["H7676"]],[40,42,["H935"]],[42,43,["H413"]],[43,44,["H3077"]],[44,46,["H3548"]]]},{"k":9839,"v":[[0,4,["H8269"]],[4,6,["H3967"]],[6,9,["H3548"]],[9,10,["H5414","(H853)"]],[10,11,["H4428"]],[11,12,["H1732"]],[12,13,["H2595"]],[13,15,["H7982"]],[15,16,["H834"]],[16,20,["H1004"]],[20,23,["H3068"]]]},{"k":9840,"v":[[0,3,["H7323"]],[3,4,["H5975"]],[4,6,["H376"]],[6,9,["H3627"]],[9,12,["H3027"]],[12,14,["H5439","H5921"]],[14,16,["H4428"]],[16,20,["H4480","H3802","H3233"]],[20,23,["H1004"]],[23,24,["H5704"]],[24,26,["H8042"]],[26,27,["H3802"]],[27,30,["H1004"]],[30,34,["H4196"]],[34,37,["H1004"]]]},{"k":9841,"v":[[0,4,["H3318","(H853)"]],[4,6,["H4428"]],[6,7,["H1121"]],[7,9,["H5414","(H853)"]],[9,11,["H5145"]],[11,12,["H5921"]],[12,18,["H5715"]],[18,23,["H4427","(H853)"]],[23,25,["H4886"]],[25,29,["H5221"]],[29,31,["H3709"]],[31,33,["H559"]],[33,35,["H2421"]],[35,37,["H4428"]]]},{"k":9842,"v":[[0,3,["H6271"]],[3,4,["H8085","(H853)"]],[4,6,["H6963"]],[6,9,["H7323"]],[9,13,["H5971"]],[13,15,["H935"]],[15,16,["H413"]],[16,18,["H5971"]],[18,21,["H1004"]],[21,24,["H3068"]]]},{"k":9843,"v":[[0,4,["H7200"]],[4,5,["H2009"]],[5,7,["H4428"]],[7,8,["H5975"]],[8,9,["H5921"]],[9,11,["H5982"]],[11,14,["H4941"]],[14,18,["H8269"]],[18,21,["H2689"]],[21,22,["H413"]],[22,24,["H4428"]],[24,26,["H3605"]],[26,28,["H5971"]],[28,31,["H776"]],[31,32,["H8056"]],[32,34,["H8628"]],[34,36,["H2689"]],[36,38,["H6271"]],[38,39,["H7167","(H853)"]],[39,41,["H899"]],[41,43,["H7121"]],[43,44,["H7195"]],[44,45,["H7195"]]]},{"k":9844,"v":[[0,2,["H3077"]],[2,4,["H3548"]],[4,5,["H6680","(H853)"]],[5,7,["H8269"]],[7,10,["H3967"]],[10,12,["H6485"]],[12,15,["H2428"]],[15,17,["H559"]],[17,18,["H413"]],[18,22,["H3318","(H853)"]],[22,23,["H413","H4480","H1004"]],[23,25,["H7713"]],[25,29,["H935","H310"]],[29,31,["H4191"]],[31,34,["H2719"]],[34,35,["H3588"]],[35,37,["H3548"]],[37,39,["H559"]],[39,42,["H408"]],[42,44,["H4191"]],[44,47,["H1004"]],[47,50,["H3068"]]]},{"k":9845,"v":[[0,3,["H7760"]],[3,4,["H3027"]],[4,9,["H935"]],[9,12,["H1870"]],[12,17,["H5483"]],[17,18,["H3996"]],[18,21,["H4428"]],[21,22,["H1004"]],[22,24,["H8033"]],[24,27,["H4191"]]]},{"k":9846,"v":[[0,2,["H3077"]],[2,3,["H3772","(H853)"]],[3,5,["H1285"]],[5,6,["H996"]],[6,8,["H3068"]],[8,11,["H4428"]],[11,14,["H5971"]],[14,18,["H1961"]],[18,20,["H3068"]],[20,21,["H5971"]],[21,22,["H996"]],[22,24,["H4428"]],[24,28,["H5971"]]]},{"k":9847,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,7,["H776"]],[7,8,["H935"]],[8,11,["H1004"]],[11,13,["H1168"]],[13,17,["H5422"]],[17,19,["H4196"]],[19,22,["H6754"]],[22,26,["H7665"]],[26,27,["H3190"]],[27,29,["H2026","(H853)"]],[29,30,["H4977"]],[30,32,["H3548"]],[32,34,["H1168"]],[34,35,["H6440"]],[35,37,["H4196"]],[37,40,["H3548"]],[40,41,["H7760"]],[41,42,["H6486"]],[42,43,["H5921"]],[43,45,["H1004"]],[45,48,["H3068"]]]},{"k":9848,"v":[[0,3,["H3947","(H853)"]],[3,5,["H8269"]],[5,7,["H3967"]],[7,10,["H3746"]],[10,13,["H7323"]],[13,15,["H3605"]],[15,17,["H5971"]],[17,20,["H776"]],[20,24,["H3381","(H853)"]],[24,26,["H4428"]],[26,29,["H4480","H1004"]],[29,32,["H3068"]],[32,34,["H935"]],[34,37,["H1870"]],[37,40,["H8179"]],[40,43,["H7323"]],[43,46,["H4428"]],[46,47,["H1004"]],[47,50,["H3427"]],[50,51,["H5921"]],[51,53,["H3678"]],[53,56,["H4428"]]]},{"k":9849,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,7,["H776"]],[7,8,["H8055"]],[8,11,["H5892"]],[11,14,["H8252"]],[14,17,["H4191"]],[17,18,["H6271"]],[18,21,["H2719"]],[21,24,["H4428"]],[24,25,["H1004"]]]},{"k":9850,"v":[[0,1,["H7651"]],[1,2,["H8141"]],[2,3,["H1121"]],[3,5,["H3060"]],[5,10,["H4427"]]]},{"k":9851,"v":[[0,3,["H7651"]],[3,4,["H8141"]],[4,6,["H3058"]],[6,7,["H3060"]],[7,10,["H4427"]],[10,12,["H705"]],[12,13,["H8141"]],[13,14,["H4427"]],[14,17,["H3389"]],[17,20,["H517"]],[20,21,["H8034"]],[21,23,["H6645"]],[23,25,["H4480","H884"]]]},{"k":9852,"v":[[0,2,["H3060"]],[2,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,14,["H3605"]],[14,16,["H3117"]],[16,17,["H834"]],[17,18,["H3077"]],[18,20,["H3548"]],[20,21,["H3384"]],[21,22,[]]]},{"k":9853,"v":[[0,1,["H7535"]],[1,4,["H1116"]],[4,6,["H3808"]],[6,8,["H5493"]],[8,10,["H5971"]],[10,11,["H5750"]],[11,12,["H2076"]],[12,15,["H6999"]],[15,19,["H1116"]]]},{"k":9854,"v":[[0,2,["H3060"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3548"]],[6,7,["H3605"]],[7,9,["H3701"]],[9,13,["H6944"]],[13,14,["H834"]],[14,16,["H935"]],[16,19,["H1004"]],[19,22,["H3068"]],[22,25,["H3701"]],[25,30,["H5674"]],[30,34,["H3701"]],[34,37,["H5315"]],[37,40,["H6187"]],[40,42,["H3605"]],[42,44,["H3701"]],[44,45,["H834"]],[45,46,["H5927"]],[46,47,["H5921"]],[47,49,["H376"]],[49,50,["H3820"]],[50,52,["H935"]],[52,55,["H1004"]],[55,58,["H3068"]]]},{"k":9855,"v":[[0,3,["H3548"]],[3,4,["H3947"]],[4,9,["H376"]],[9,10,["H4480","H854"]],[10,12,["H4378"]],[12,15,["H1992"]],[15,16,["H2388","(H853)"]],[16,18,["H919"]],[18,21,["H1004"]],[21,22,["H3605","H834","H8033"]],[22,24,["H919"]],[24,27,["H4672"]]]},{"k":9856,"v":[[0,3,["H1961"]],[3,8,["H7969"]],[8,10,["H6242"]],[10,11,["H8141"]],[11,13,["H4428"]],[13,14,["H3060"]],[14,16,["H3548"]],[16,18,["H3808"]],[18,19,["H2388","(H853)"]],[19,21,["H919"]],[21,24,["H1004"]]]},{"k":9857,"v":[[0,2,["H4428"]],[2,3,["H3060"]],[3,4,["H7121"]],[4,6,["H3077"]],[6,8,["H3548"]],[8,12,["H3548"]],[12,14,["H559"]],[14,15,["H413"]],[15,17,["H4069"]],[17,18,["H2388"]],[18,20,["H369","(H853)"]],[20,22,["H919"]],[22,25,["H1004"]],[25,26,["H6258"]],[26,28,["H3947"]],[28,29,["H408"]],[29,31,["H3701"]],[31,32,["H4480","H854"]],[32,34,["H4378"]],[34,35,["H3588"]],[35,36,["H5414"]],[36,40,["H919"]],[40,43,["H1004"]]]},{"k":9858,"v":[[0,3,["H3548"]],[3,4,["H225"]],[4,6,["H3947"]],[6,7,["H1115"]],[7,9,["H3701"]],[9,10,["H4480","H854"]],[10,12,["H5971"]],[12,13,["H1115"]],[13,15,["H2388","(H853)"]],[15,17,["H919"]],[17,20,["H1004"]]]},{"k":9859,"v":[[0,2,["H3077"]],[2,4,["H3548"]],[4,5,["H3947"]],[5,6,["H259"]],[6,7,["H727"]],[7,9,["H5344"]],[9,11,["H2356"]],[11,14,["H1817"]],[14,18,["H5414"]],[18,20,["H681"]],[20,22,["H4196"]],[22,26,["H3225"]],[26,28,["H376"]],[28,29,["H935"]],[29,32,["H1004"]],[32,35,["H3068"]],[35,38,["H3548"]],[38,40,["H8104"]],[40,42,["H5592"]],[42,43,["H5414"]],[43,44,["H8033","(H853)"]],[44,45,["H3605"]],[45,47,["H3701"]],[47,50,["H935"]],[50,53,["H1004"]],[53,56,["H3068"]]]},{"k":9860,"v":[[0,3,["H1961"]],[3,7,["H7200"]],[7,8,["H3588"]],[8,11,["H7227"]],[11,12,["H3701"]],[12,15,["H727"]],[15,18,["H4428"]],[18,19,["H5608"]],[19,22,["H1419"]],[22,23,["H3548"]],[23,25,["H5927"]],[25,31,["H6696"]],[31,33,["H4487","(H853)"]],[33,35,["H3701"]],[35,38,["H4672"]],[38,41,["H1004"]],[41,44,["H3068"]]]},{"k":9861,"v":[[0,3,["H5414","(H853)"]],[3,5,["H3701"]],[5,7,["H8505"]],[7,8,["H5921"]],[8,10,["H3027"]],[10,14,["H6213"]],[14,16,["H4399"]],[16,20,["H6485"]],[20,23,["H1004"]],[23,26,["H3068"]],[26,31,["H3318"]],[31,34,["H2796","H6086"]],[34,36,["H1129"]],[36,38,["H6213"]],[38,41,["H1004"]],[41,44,["H3068"]]]},{"k":9862,"v":[[0,3,["H1443"]],[3,5,["H2672"]],[5,7,["H68"]],[7,10,["H7069"]],[10,11,["H6086"]],[11,13,["H4274"]],[13,14,["H68"]],[14,16,["H2388","(H853)"]],[16,18,["H919"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,27,["H3605"]],[27,28,["H834"]],[28,31,["H3318"]],[31,32,["H5921"]],[32,34,["H1004"]],[34,36,["H2394"]],[36,37,[]]]},{"k":9863,"v":[[0,1,["H389"]],[1,4,["H3808"]],[4,5,["H6213"]],[5,8,["H1004"]],[8,11,["H3068"]],[11,12,["H5592"]],[12,14,["H3701"]],[14,15,["H4212"]],[15,16,["H4219"]],[16,17,["H2689"]],[17,18,["H3605"]],[18,19,["H3627"]],[19,21,["H2091"]],[21,23,["H3627"]],[23,25,["H3701"]],[25,26,["H4480"]],[26,28,["H3701"]],[28,31,["H935"]],[31,34,["H1004"]],[34,37,["H3068"]]]},{"k":9864,"v":[[0,1,["H3588"]],[1,3,["H5414"]],[3,7,["H6213","H4399"]],[7,9,["H2388"]],[9,10,["(H853)"]],[10,12,["H1004"]],[12,15,["H3068"]]]},{"k":9865,"v":[[0,3,["H2803"]],[3,4,["H3808"]],[4,5,["H854"]],[5,7,["H376"]],[7,8,["H5921"]],[8,9,["H834"]],[9,10,["H3027"]],[10,12,["H5414","(H853)"]],[12,14,["H3701"]],[14,17,["H5414"]],[17,19,["H6213","H4399"]],[19,20,["H3588"]],[20,21,["H1992"]],[21,22,["H6213"]],[22,23,["H530"]]]},{"k":9866,"v":[[0,2,["H817"]],[2,3,["H3701"]],[3,5,["H2403"]],[5,6,["H3701"]],[6,8,["H3808"]],[8,9,["H935"]],[9,12,["H1004"]],[12,15,["H3068"]],[15,17,["H1961"]],[17,19,["H3548"]]]},{"k":9867,"v":[[0,1,["H227"]],[1,2,["H2371"]],[2,3,["H4428"]],[3,5,["H758"]],[5,7,["H5927"]],[7,9,["H3898"]],[9,10,["H5921"]],[10,11,["H1661"]],[11,13,["H3920"]],[13,16,["H2371"]],[16,17,["H7760"]],[17,19,["H6440"]],[19,22,["H5927"]],[22,23,["H5921"]],[23,24,["H3389"]]]},{"k":9868,"v":[[0,2,["H3060"]],[2,3,["H4428"]],[3,5,["H3063"]],[5,6,["H3947","(H853)"]],[6,7,["H3605"]],[7,10,["H6944"]],[10,11,["H834"]],[11,12,["H3092"]],[12,14,["H3088"]],[14,16,["H274"]],[16,18,["H1"]],[18,19,["H4428"]],[19,21,["H3063"]],[21,23,["H6942"]],[23,28,["H6944"]],[28,30,["H3605"]],[30,32,["H2091"]],[32,35,["H4672"]],[35,38,["H214"]],[38,41,["H1004"]],[41,44,["H3068"]],[44,48,["H4428"]],[48,49,["H1004"]],[49,51,["H7971"]],[51,54,["H2371"]],[54,55,["H4428"]],[55,57,["H758"]],[57,61,["H5927"]],[61,62,["H4480","H5921"]],[62,63,["H3389"]]]},{"k":9869,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3101"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3063"]]]},{"k":9870,"v":[[0,3,["H5650"]],[3,4,["H6965"]],[4,6,["H7194"]],[6,8,["H7195"]],[8,10,["H5221","(H853)"]],[10,11,["H3101"]],[11,14,["H1004"]],[14,16,["H4407"]],[16,19,["H3381"]],[19,21,["H5538"]]]},{"k":9871,"v":[[0,2,["H3108"]],[2,4,["H1121"]],[4,6,["H8100"]],[6,8,["H3075"]],[8,10,["H1121"]],[10,12,["H7763"]],[12,14,["H5650"]],[14,15,["H5221"]],[15,19,["H4191"]],[19,22,["H6912"]],[22,24,["H5973"]],[24,26,["H1"]],[26,29,["H5892"]],[29,31,["H1732"]],[31,33,["H558"]],[33,35,["H1121"]],[35,36,["H4427"]],[36,39,["H8478"]]]},{"k":9872,"v":[[0,3,["H7969"]],[3,5,["H6242"]],[5,6,["H8141"]],[6,8,["H3101"]],[8,10,["H1121"]],[10,12,["H274"]],[12,13,["H4428"]],[13,15,["H3063"]],[15,16,["H3059"]],[16,18,["H1121"]],[18,20,["H3058"]],[20,23,["H4427"]],[23,24,["H5921"]],[24,25,["H3478"]],[25,27,["H8111"]],[27,30,["H7651","H6240"]],[30,31,["H8141"]]]},{"k":9873,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H1980","H310"]],[15,17,["H2403"]],[17,19,["H3379"]],[19,21,["H1121"]],[21,23,["H5028"]],[23,24,["H834"]],[24,25,["(H853)"]],[25,26,["H3478"]],[26,28,["H2398"]],[28,30,["H5493"]],[30,31,["H3808"]],[31,32,["H4480"]]]},{"k":9874,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,10,["H3478"]],[10,13,["H5414"]],[13,17,["H3027"]],[17,19,["H2371"]],[19,20,["H4428"]],[20,22,["H758"]],[22,26,["H3027"]],[26,28,["H1130"]],[28,30,["H1121"]],[30,32,["H2371"]],[32,33,["H3605"]],[33,35,["H3117"]]]},{"k":9875,"v":[[0,2,["H3059"]],[2,3,["H2470","(H853)"]],[3,5,["H6440","H3068"]],[5,8,["H3068"]],[8,9,["H8085"]],[9,10,["H413"]],[10,12,["H3588"]],[12,14,["H7200","(H853)"]],[14,16,["H3906"]],[16,18,["H3478"]],[18,19,["H3588"]],[19,21,["H4428"]],[21,23,["H758"]],[23,24,["H3905"]],[24,25,[]]]},{"k":9876,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,5,["H3478"]],[5,7,["H3467"]],[7,12,["H3318"]],[12,14,["H4480","H8478"]],[14,16,["H3027"]],[16,19,["H758"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,25,["H3427"]],[25,28,["H168"]],[28,30,["H8543","H8032"]]]},{"k":9877,"v":[[0,1,["H389"]],[1,3,["H5493"]],[3,4,["H3808"]],[4,7,["H4480","H2403"]],[7,10,["H1004"]],[10,12,["H3379"]],[12,13,["H834"]],[13,14,["(H853)"]],[14,15,["H3478"]],[15,16,["H2398"]],[16,18,["H1980"]],[18,22,["H5975"]],[22,24,["H842"]],[24,25,["H1571"]],[25,27,["H8111"]]]},{"k":9878,"v":[[0,1,["H3588","H3808"]],[1,4,["H7604"]],[4,7,["H5971"]],[7,9,["H3059"]],[9,10,["H3588","H518"]],[10,11,["H2572"]],[11,12,["H6571"]],[12,14,["H6235"]],[14,15,["H7393"]],[15,17,["H6235"]],[17,18,["H505"]],[18,19,["H7273"]],[19,20,["H3588"]],[20,22,["H4428"]],[22,24,["H758"]],[24,26,["H6"]],[26,30,["H7760"]],[30,34,["H6083"]],[34,36,["H1758"]]]},{"k":9879,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3059"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,16,["H1369"]],[16,18,["H1992"]],[18,19,["H3808"]],[19,20,["H3789"]],[20,21,["H5921"]],[21,23,["H5612"]],[23,26,["H1697","H3117"]],[26,29,["H4428"]],[29,31,["H3478"]]]},{"k":9880,"v":[[0,2,["H3059"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,12,["H8111"]],[12,14,["H3101"]],[14,16,["H1121"]],[16,17,["H4427"]],[17,20,["H8478"]]]},{"k":9881,"v":[[0,3,["H7970"]],[3,5,["H7651"]],[5,6,["H8141"]],[6,8,["H3101"]],[8,9,["H4428"]],[9,11,["H3063"]],[11,13,["H3060"]],[13,15,["H1121"]],[15,17,["H3059"]],[17,19,["H4427"]],[19,20,["H5921"]],[20,21,["H3478"]],[21,23,["H8111"]],[23,26,["H8337","H6240"]],[26,27,["H8141"]]]},{"k":9882,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H5493"]],[15,16,["H3808"]],[16,18,["H4480","H3605"]],[18,20,["H2403"]],[20,22,["H3379"]],[22,24,["H1121"]],[24,26,["H5028"]],[26,27,["H834"]],[27,28,["(H853)"]],[28,29,["H3478"]],[29,30,["H2398"]],[30,33,["H1980"]],[33,34,[]]]},{"k":9883,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3101"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,16,["H1369"]],[16,17,["H834"]],[17,19,["H3898"]],[19,20,["H5973"]],[20,21,["H558"]],[21,22,["H4428"]],[22,24,["H3063"]],[24,26,["H1992"]],[26,27,["H3808"]],[27,28,["H3789"]],[28,29,["H5921"]],[29,31,["H5612"]],[31,34,["H1697","H3117"]],[34,37,["H4428"]],[37,39,["H3478"]]]},{"k":9884,"v":[[0,2,["H3101"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,8,["H3379"]],[8,9,["H3427"]],[9,10,["H5921"]],[10,12,["H3678"]],[12,14,["H3101"]],[14,16,["H6912"]],[16,18,["H8111"]],[18,19,["H5973"]],[19,21,["H4428"]],[21,23,["H3478"]]]},{"k":9885,"v":[[0,2,["H477"]],[2,5,["H2470"]],[5,6,["H854"]],[6,8,["H2483"]],[8,9,["H834"]],[9,11,["H4191"]],[11,13,["H3101"]],[13,15,["H4428"]],[15,17,["H3478"]],[17,19,["H3381"]],[19,20,["H413"]],[20,23,["H1058"]],[23,24,["H5921"]],[24,26,["H6440"]],[26,28,["H559"]],[28,31,["H1"]],[31,33,["H1"]],[33,35,["H7393"]],[35,37,["H3478"]],[37,40,["H6571"]],[40,41,[]]]},{"k":9886,"v":[[0,2,["H477"]],[2,3,["H559"]],[3,6,["H3947"]],[6,7,["H7198"]],[7,9,["H2671"]],[9,12,["H3947"]],[12,13,["H413"]],[13,15,["H7198"]],[15,17,["H2671"]]]},{"k":9887,"v":[[0,3,["H559"]],[3,6,["H4428"]],[6,8,["H3478"]],[8,9,["H7392"]],[9,11,["H3027"]],[11,12,["H5921"]],[12,14,["H7198"]],[14,17,["H7392"]],[17,19,["H3027"]],[19,23,["H477"]],[23,24,["H7760"]],[24,26,["H3027"]],[26,27,["H5921"]],[27,29,["H4428"]],[29,30,["H3027"]]]},{"k":9888,"v":[[0,3,["H559"]],[3,4,["H6605"]],[4,6,["H2474"]],[6,7,["H6924"]],[7,10,["H6605"]],[10,13,["H477"]],[13,14,["H559"]],[14,15,["H3384"]],[15,18,["H3384"]],[18,21,["H559"]],[21,23,["H2671"]],[23,26,["H3068"]],[26,27,["H8668"]],[27,30,["H2671"]],[30,32,["H8668"]],[32,34,["H758"]],[34,38,["H5221","(H853)"]],[38,40,["H758"]],[40,42,["H663"]],[42,43,["H5704"]],[43,46,["H3615"]],[46,47,[]]]},{"k":9889,"v":[[0,3,["H559"]],[3,4,["H3947"]],[4,6,["H2671"]],[6,9,["H3947"]],[9,13,["H559"]],[13,16,["H4428"]],[16,18,["H3478"]],[18,19,["H5221"]],[19,22,["H776"]],[22,25,["H5221"]],[25,26,["H7969","H6471"]],[26,28,["H5975"]]]},{"k":9890,"v":[[0,3,["H376"]],[3,5,["H430"]],[5,7,["H7107"]],[7,8,["H5921"]],[8,11,["H559"]],[11,15,["H5221"]],[15,16,["H2568"]],[16,17,["H176"]],[17,18,["H8337"]],[18,19,["H6471"]],[19,20,["H227"]],[20,23,["H5221","(H853)"]],[23,24,["H758"]],[24,25,["H5704"]],[25,28,["H3615"]],[28,31,["H6258"]],[31,34,["H5221","(H853)"]],[34,35,["H758"]],[35,37,["H7969","H6471"]]]},{"k":9891,"v":[[0,2,["H477"]],[2,3,["H4191"]],[3,6,["H6912"]],[6,10,["H1416"]],[10,13,["H4124"]],[13,14,["H935"]],[14,16,["H776"]],[16,20,["H935"]],[20,23,["H8141"]]]},{"k":9892,"v":[[0,5,["H1961"]],[5,7,["H1992"]],[7,9,["H6912"]],[9,11,["H376"]],[11,13,["H2009"]],[13,15,["H7200","(H853)"]],[15,17,["H1416"]],[17,22,["H7993","(H853)"]],[22,24,["H376"]],[24,27,["H6913"]],[27,29,["H477"]],[29,33,["H376"]],[33,36,["H1980"]],[36,38,["H5060"]],[38,40,["H6106"]],[40,42,["H477"]],[42,44,["H2421"]],[44,47,["H6965"]],[47,48,["H5921"]],[48,50,["H7272"]]]},{"k":9893,"v":[[0,2,["H2371"]],[2,3,["H4428"]],[3,5,["H758"]],[5,6,["H3905","(H853)"]],[6,7,["H3478"]],[7,8,["H3605"]],[8,10,["H3117"]],[10,12,["H3059"]]]},{"k":9894,"v":[[0,3,["H3068"]],[3,5,["H2603"]],[5,11,["H7355"]],[11,15,["H6437"]],[15,16,["H413"]],[16,18,["H4616"]],[18,21,["H1285"]],[21,22,["H854"]],[22,23,["H85"]],[23,24,["H3327"]],[24,26,["H3290"]],[26,28,["H14"]],[28,29,["H3808"]],[29,30,["H7843"]],[30,32,["H3808"]],[32,33,["H7993"]],[33,36,["H4480","H5921"]],[36,38,["H6440"]],[38,39,["H5704"]],[39,40,["H6258"]]]},{"k":9895,"v":[[0,2,["H2371"]],[2,3,["H4428"]],[3,5,["H758"]],[5,6,["H4191"]],[6,8,["H1130"]],[8,10,["H1121"]],[10,11,["H4427"]],[11,14,["H8478"]]]},{"k":9896,"v":[[0,2,["H3060"]],[2,4,["H1121"]],[4,6,["H3059"]],[6,7,["H3947"]],[7,8,["H7725"]],[8,12,["H4480","H3027"]],[12,14,["H1130"]],[14,16,["H1121"]],[16,18,["H2371","(H853)"]],[18,20,["H5892"]],[20,21,["H834"]],[21,24,["H3947"]],[24,28,["H4480","H3027"]],[28,30,["H3059"]],[30,32,["H1"]],[32,34,["H4421"]],[34,35,["H7969"]],[35,36,["H6471"]],[36,38,["H3101"]],[38,39,["H5221"]],[39,42,["H7725","(H853)"]],[42,44,["H5892"]],[44,46,["H3478"]]]},{"k":9897,"v":[[0,3,["H8147"]],[3,4,["H8141"]],[4,6,["H3101"]],[6,7,["H1121"]],[7,9,["H3059"]],[9,10,["H4428"]],[10,12,["H3478"]],[12,13,["H4427"]],[13,14,["H558"]],[14,16,["H1121"]],[16,18,["H3101"]],[18,19,["H4428"]],[19,21,["H3063"]]]},{"k":9898,"v":[[0,2,["H1961"]],[2,3,["H6242"]],[3,5,["H2568"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,14,["H4427"]],[14,15,["H6242"]],[15,17,["H8672"]],[17,18,["H8141"]],[18,20,["H3389"]],[20,23,["H517"]],[23,24,["H8034"]],[24,26,["H3086"]],[26,27,["H4480"]],[27,28,["H3389"]]]},{"k":9899,"v":[[0,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,14,["H7535"]],[14,15,["H3808"]],[15,17,["H1732"]],[17,19,["H1"]],[19,21,["H6213"]],[21,25,["H3605"]],[25,26,["H834"]],[26,27,["H3101"]],[27,29,["H1"]],[29,30,["H6213"]]]},{"k":9900,"v":[[0,1,["H7535"]],[1,4,["H1116"]],[4,6,["H3808"]],[6,8,["H5493"]],[8,10,["H5750"]],[10,12,["H5971"]],[12,14,["H2076"]],[14,17,["H6999"]],[17,21,["H1116"]]]},{"k":9901,"v":[[0,5,["H1961"]],[5,8,["H834"]],[8,10,["H4467"]],[10,12,["H2388"]],[12,15,["H3027"]],[15,18,["H5221","(H853)"]],[18,20,["H5650"]],[20,23,["H5221","(H853)"]],[23,25,["H4428"]],[25,27,["H1"]]]},{"k":9902,"v":[[0,3,["H1121"]],[3,6,["H5221"]],[6,8,["H4191"]],[8,9,["H3808"]],[9,15,["H3789"]],[15,18,["H5612"]],[18,21,["H8451"]],[21,23,["H4872"]],[23,24,["H834"]],[24,26,["H3068"]],[26,27,["H6680"]],[27,28,["H559"]],[28,30,["H1"]],[30,32,["H3808"]],[32,36,["H4191"]],[36,37,["H5921"]],[37,39,["H1121"]],[39,40,["H3808"]],[40,42,["H1121"]],[42,46,["H4191"]],[46,47,["H5921"]],[47,49,["H1"]],[49,50,["H3588","H518"]],[50,52,["H376"]],[52,57,["H4191"]],[57,61,["H2399"]]]},{"k":9903,"v":[[0,1,["H1931"]],[1,2,["H5221","(H853)"]],[2,3,["(H853)"]],[3,4,["H123"]],[4,7,["H1516"]],[7,9,["H4417"]],[9,10,["H6235"]],[10,11,["H505"]],[11,13,["H8610","(H853)"]],[13,14,["H5554"]],[14,16,["H4421"]],[16,18,["H7121","(H853)"]],[18,20,["H8034"]],[20,23,["H3371"]],[23,24,["H5704"]],[24,25,["H2088"]],[25,26,["H3117"]]]},{"k":9904,"v":[[0,1,["H227"]],[1,2,["H558"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H3060"]],[6,8,["H1121"]],[8,10,["H3059"]],[10,11,["H1121"]],[11,13,["H3058"]],[13,14,["H4428"]],[14,16,["H3478"]],[16,17,["H559"]],[17,18,["H1980"]],[18,23,["H7200"]],[23,26,["H6440"]]]},{"k":9905,"v":[[0,2,["H3060"]],[2,4,["H4428"]],[4,6,["H3478"]],[6,7,["H7971"]],[7,8,["H413"]],[8,9,["H558"]],[9,10,["H4428"]],[10,12,["H3063"]],[12,13,["H559"]],[13,15,["H2336"]],[15,16,["H834"]],[16,19,["H3844"]],[19,20,["H7971"]],[20,21,["H413"]],[21,23,["H730"]],[23,24,["H834"]],[24,27,["H3844"]],[27,28,["H559"]],[28,29,["H5414","(H853)"]],[29,31,["H1323"]],[31,34,["H1121"]],[34,36,["H802"]],[36,40,["H5674"]],[40,42,["H7704"]],[42,43,["H2416"]],[43,44,["H834"]],[44,47,["H3844"]],[47,50,["H7429","(H853)"]],[50,52,["H2336"]]]},{"k":9906,"v":[[0,4,["H5221","H5221","(H853)"]],[4,5,["H123"]],[5,8,["H3820"]],[8,12,["H5375"]],[12,13,["H3513"]],[13,17,["H3427"]],[17,19,["H1004"]],[19,21,["H4100"]],[21,24,["H1624"]],[24,27,["H7451"]],[27,31,["H5307"]],[31,33,["H859"]],[33,35,["H3063"]],[35,36,["H5973"]],[36,37,[]]]},{"k":9907,"v":[[0,2,["H558"]],[2,4,["H3808"]],[4,5,["H8085"]],[5,7,["H3060"]],[7,8,["H4428"]],[8,10,["H3478"]],[10,12,["H5927"]],[12,14,["H1931"]],[14,16,["H558"]],[16,17,["H4428"]],[17,19,["H3063"]],[19,22,["H7200"]],[22,25,["H6440"]],[25,27,["H1053"]],[27,28,["H834"]],[28,31,["H3063"]]]},{"k":9908,"v":[[0,2,["H3063"]],[2,7,["H5062"]],[7,8,["H6440"]],[8,9,["H3478"]],[9,12,["H5127"]],[12,14,["H376"]],[14,17,["H168"]]]},{"k":9909,"v":[[0,2,["H3060"]],[2,3,["H4428"]],[3,5,["H3478"]],[5,6,["H8610"]],[6,7,["H558"]],[7,8,["H4428"]],[8,10,["H3063"]],[10,12,["H1121"]],[12,14,["H3060"]],[14,16,["H1121"]],[16,18,["H274"]],[18,20,["H1053"]],[20,22,["H935"]],[22,24,["H3389"]],[24,27,["H6555"]],[27,29,["H2346"]],[29,31,["H3389"]],[31,34,["H8179"]],[34,36,["H669"]],[36,37,["H5704"]],[37,39,["H6438"]],[39,40,["H8179"]],[40,41,["H702"]],[41,42,["H3967"]],[42,43,["H520"]]]},{"k":9910,"v":[[0,3,["H3947","(H853)"]],[3,4,["H3605"]],[4,6,["H2091"]],[6,8,["H3701"]],[8,10,["H3605"]],[10,12,["H3627"]],[12,15,["H4672"]],[15,18,["H1004"]],[18,21,["H3068"]],[21,25,["H214"]],[25,28,["H4428"]],[28,29,["H1004"]],[29,31,["H1121","H8594"]],[31,33,["H7725"]],[33,35,["H8111"]]]},{"k":9911,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3060"]],[8,9,["H834"]],[9,11,["H6213"]],[11,14,["H1369"]],[14,16,["H834"]],[16,18,["H3898"]],[18,19,["H5973"]],[19,20,["H558"]],[20,21,["H4428"]],[21,23,["H3063"]],[23,25,["H1992"]],[25,26,["H3808"]],[26,27,["H3789"]],[27,28,["H5921"]],[28,30,["H5612"]],[30,33,["H1697","H3117"]],[33,36,["H4428"]],[36,38,["H3478"]]]},{"k":9912,"v":[[0,2,["H3060"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,11,["H8111"]],[11,12,["H5973"]],[12,14,["H4428"]],[14,16,["H3478"]],[16,18,["H3379"]],[18,20,["H1121"]],[20,21,["H4427"]],[21,24,["H8478"]]]},{"k":9913,"v":[[0,2,["H558"]],[2,4,["H1121"]],[4,6,["H3101"]],[6,7,["H4428"]],[7,9,["H3063"]],[9,10,["H2421"]],[10,11,["H310"]],[11,13,["H4194"]],[13,15,["H3060"]],[15,16,["H1121"]],[16,18,["H3059"]],[18,19,["H4428"]],[19,21,["H3478"]],[21,22,["H2568","H6240"]],[22,23,["H8141"]]]},{"k":9914,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H558"]],[8,10,["H1992"]],[10,11,["H3808"]],[11,12,["H3789"]],[12,13,["H5921"]],[13,15,["H5612"]],[15,18,["H1697","H3117"]],[18,21,["H4428"]],[21,23,["H3063"]]]},{"k":9915,"v":[[0,3,["H7194"]],[3,5,["H7195"]],[5,6,["H5921"]],[6,9,["H3389"]],[9,12,["H5127"]],[12,14,["H3923"]],[14,17,["H7971"]],[17,18,["H310"]],[18,21,["H3923"]],[21,23,["H4191"]],[23,25,["H8033"]]]},{"k":9916,"v":[[0,3,["H5375"]],[3,5,["H5921"]],[5,6,["H5483"]],[6,10,["H6912"]],[10,12,["H3389"]],[12,13,["H5973"]],[13,15,["H1"]],[15,18,["H5892"]],[18,20,["H1732"]]]},{"k":9917,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H3063"]],[6,7,["H3947","(H853)"]],[7,8,["H5838"]],[8,9,["H1931"]],[9,11,["H8337","H6240"]],[11,12,["H8141"]],[12,13,["H1121"]],[13,17,["H4427","(H853)"]],[17,19,["H8478"]],[19,21,["H1"]],[21,22,["H558"]]]},{"k":9918,"v":[[0,1,["H1931"]],[1,2,["H1129","(H853)"]],[2,3,["H359"]],[3,5,["H7725"]],[5,8,["H3063"]],[8,10,["H310"]],[10,12,["H4428"]],[12,13,["H7901"]],[13,14,["H5973"]],[14,16,["H1"]]]},{"k":9919,"v":[[0,3,["H2568","H6240"]],[3,4,["H8141"]],[4,6,["H558"]],[6,8,["H1121"]],[8,10,["H3101"]],[10,11,["H4428"]],[11,13,["H3063"]],[13,14,["H3379"]],[14,16,["H1121"]],[16,18,["H3101"]],[18,19,["H4428"]],[19,21,["H3478"]],[21,24,["H4427"]],[24,26,["H8111"]],[26,29,["H705"]],[29,31,["H259"]],[31,32,["H8141"]]]},{"k":9920,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H5493"]],[15,16,["H3808"]],[16,18,["H4480","H3605"]],[18,20,["H2403"]],[20,22,["H3379"]],[22,24,["H1121"]],[24,26,["H5028"]],[26,27,["H834"]],[27,28,["(H853)"]],[28,29,["H3478"]],[29,31,["H2398"]]]},{"k":9921,"v":[[0,1,["H1931"]],[1,2,["H7725","(H853)"]],[2,4,["H1366"]],[4,6,["H3478"]],[6,9,["H4480","H935"]],[9,11,["H2574"]],[11,12,["H5704"]],[12,14,["H3220"]],[14,17,["H6160"]],[17,21,["H1697"]],[21,24,["H3068"]],[24,25,["H430"]],[25,27,["H3478"]],[27,28,["H834"]],[28,30,["H1696"]],[30,33,["H3027"]],[33,36,["H5650"]],[36,37,["H3124"]],[37,39,["H1121"]],[39,41,["H573"]],[41,43,["H5030"]],[43,44,["H834"]],[44,47,["H4480","H1662"]]]},{"k":9922,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,4,["H7200","(H853)"]],[4,6,["H6040"]],[6,8,["H3478"]],[8,12,["H3966"]],[12,13,["H4784"]],[13,18,["H657"]],[18,20,["H6113"]],[20,22,["H657"]],[22,23,["H5800"]],[23,24,["H369"]],[24,26,["H5826"]],[26,28,["H3478"]]]},{"k":9923,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H3808"]],[5,10,["H4229","(H853)"]],[10,12,["H8034"]],[12,14,["H3478"]],[14,16,["H4480","H8478"]],[16,17,["H8064"]],[17,20,["H3467"]],[20,24,["H3027"]],[24,26,["H3379"]],[26,28,["H1121"]],[28,30,["H3101"]]]},{"k":9924,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3379"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,16,["H1369"]],[16,17,["H834"]],[17,19,["H3898"]],[19,21,["H834"]],[21,23,["H7725","(H853)"]],[23,24,["H1834"]],[24,26,["H2574"]],[26,30,["H3063"]],[30,32,["H3478"]],[32,34,["H1992"]],[34,35,["H3808"]],[35,36,["H3789"]],[36,37,["H5921"]],[37,39,["H5612"]],[39,42,["H1697","H3117"]],[42,45,["H4428"]],[45,47,["H3478"]]]},{"k":9925,"v":[[0,2,["H3379"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,8,["H5973"]],[8,10,["H4428"]],[10,12,["H3478"]],[12,14,["H2148"]],[14,16,["H1121"]],[16,17,["H4427"]],[17,20,["H8478"]]]},{"k":9926,"v":[[0,3,["H6242"]],[3,5,["H7651"]],[5,6,["H8141"]],[6,8,["H3379"]],[8,9,["H4428"]],[9,11,["H3478"]],[11,13,["H5838"]],[13,14,["H1121"]],[14,16,["H558"]],[16,17,["H4428"]],[17,19,["H3063"]],[19,21,["H4427"]]]},{"k":9927,"v":[[0,1,["H8334","H6240"]],[1,2,["H8141"]],[2,3,["H1121"]],[3,4,["H1961"]],[4,10,["H4427"]],[10,13,["H4427"]],[13,14,["H8147"]],[14,16,["H2572"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,22,["H517"]],[22,23,["H8034"]],[23,25,["H3203"]],[25,27,["H4480","H3389"]]]},{"k":9928,"v":[[0,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3605"]],[16,17,["H834"]],[17,19,["H1"]],[19,20,["H558"]],[20,22,["H6213"]]]},{"k":9929,"v":[[0,1,["H7535"]],[1,5,["H1116"]],[5,7,["H3808"]],[7,8,["H5493"]],[8,10,["H5971"]],[10,11,["H2076"]],[11,14,["H6999"]],[14,15,["H5750"]],[15,19,["H1116"]]]},{"k":9930,"v":[[0,3,["H3068"]],[3,4,["H5060","(H853)"]],[4,6,["H4428"]],[6,10,["H1961"]],[10,12,["H6879"]],[12,13,["H5704"]],[13,15,["H3117"]],[15,18,["H4194"]],[18,20,["H3427"]],[20,23,["H2669"]],[23,24,["H1004"]],[24,26,["H3147"]],[26,28,["H4428"]],[28,29,["H1121"]],[29,31,["H5921"]],[31,33,["H1004"]],[33,34,["H8199","(H853)"]],[34,36,["H5971"]],[36,39,["H776"]]]},{"k":9931,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H5838"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3063"]]]},{"k":9932,"v":[[0,2,["H5838"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,11,["H5973"]],[11,13,["H1"]],[13,16,["H5892"]],[16,18,["H1732"]],[18,20,["H3147"]],[20,22,["H1121"]],[22,23,["H4427"]],[23,26,["H8478"]]]},{"k":9933,"v":[[0,3,["H7970"]],[3,5,["H8083"]],[5,6,["H8141"]],[6,8,["H5838"]],[8,9,["H4428"]],[9,11,["H3063"]],[11,13,["H2148"]],[13,15,["H1121"]],[15,17,["H3379"]],[17,18,["H4427"]],[18,19,["H5921"]],[19,20,["H3478"]],[20,22,["H8111"]],[22,23,["H8337"]],[23,24,["H2320"]]]},{"k":9934,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,14,["H834"]],[14,16,["H1"]],[16,18,["H6213"]],[18,20,["H5493"]],[20,21,["H3808"]],[21,24,["H4480","H2403"]],[24,26,["H3379"]],[26,28,["H1121"]],[28,30,["H5028"]],[30,31,["H834"]],[31,32,["(H853)"]],[32,33,["H3478"]],[33,35,["H2398"]]]},{"k":9935,"v":[[0,2,["H7967"]],[2,4,["H1121"]],[4,6,["H3003"]],[6,7,["H7194"]],[7,8,["H5921"]],[8,11,["H5221"]],[11,13,["H6905"]],[13,15,["H5971"]],[15,17,["H4191"]],[17,20,["H4427"]],[20,23,["H8478"]]]},{"k":9936,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H2148"]],[8,9,["H2009"]],[9,12,["H3789"]],[12,13,["H5921"]],[13,15,["H5612"]],[15,18,["H1697","H3117"]],[18,21,["H4428"]],[21,23,["H3478"]]]},{"k":9937,"v":[[0,1,["H1931"]],[1,4,["H1697"]],[4,7,["H3068"]],[7,8,["H834"]],[8,10,["H1696"]],[10,11,["H413"]],[11,12,["H3058"]],[12,13,["H559"]],[13,15,["H1121"]],[15,17,["H3427"]],[17,18,["H5921"]],[18,20,["H3678"]],[20,22,["H3478"]],[22,25,["H7243"]],[25,28,["H3651"]],[28,32,["H1961"]]]},{"k":9938,"v":[[0,1,["H7967"]],[1,3,["H1121"]],[3,5,["H3003"]],[5,8,["H4427"]],[8,11,["H8672"]],[11,13,["H7970"]],[13,14,["H8141"]],[14,16,["H5818"]],[16,17,["H4428"]],[17,19,["H3063"]],[19,22,["H4427"]],[22,24,["H3117"]],[24,25,["H3391"]],[25,27,["H8111"]]]},{"k":9939,"v":[[0,2,["H4505"]],[2,4,["H1121"]],[4,6,["H1424"]],[6,8,["H5927"]],[8,10,["H4480","H8656"]],[10,12,["H935"]],[12,14,["H8111"]],[14,16,["H5221","(H853)"]],[16,17,["H7967"]],[17,19,["H1121"]],[19,21,["H3003"]],[21,23,["H8111"]],[23,25,["H4191"]],[25,28,["H4427"]],[28,31,["H8478"]]]},{"k":9940,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H7967"]],[8,11,["H7195"]],[11,12,["H834"]],[12,14,["H7194"]],[14,15,["H2009"]],[15,18,["H3789"]],[18,19,["H5921"]],[19,21,["H5612"]],[21,24,["H1697","H3117"]],[24,27,["H4428"]],[27,29,["H3478"]]]},{"k":9941,"v":[[0,1,["H227"]],[1,2,["H4505"]],[2,3,["H5221","(H853)"]],[3,4,["H8607"]],[4,6,["H3605"]],[6,7,["H834"]],[7,12,["H1366"]],[12,15,["H4480","H8656"]],[15,16,["H3588"]],[16,18,["H6605"]],[18,19,["H3808"]],[19,24,["H5221"]],[24,26,["(H853)"]],[26,27,["H3605"]],[27,34,["H2030"]],[34,37,["H1234"]]]},{"k":9942,"v":[[0,3,["H8672"]],[3,5,["H7970"]],[5,6,["H8141"]],[6,8,["H5838"]],[8,9,["H4428"]],[9,11,["H3063"]],[11,13,["H4505"]],[13,15,["H1121"]],[15,17,["H1424"]],[17,19,["H4427"]],[19,20,["H5921"]],[20,21,["H3478"]],[21,24,["H6235"]],[24,25,["H8141"]],[25,27,["H8111"]]]},{"k":9943,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H5493"]],[15,16,["H3808"]],[16,17,["H3605"]],[17,19,["H3117"]],[19,20,["H4480","H5921"]],[20,22,["H2403"]],[22,24,["H3379"]],[24,26,["H1121"]],[26,28,["H5028"]],[28,29,["H834"]],[29,30,["(H853)"]],[30,31,["H3478"]],[31,33,["H2398"]]]},{"k":9944,"v":[[0,2,["H6322"]],[2,4,["H4428"]],[4,6,["H804"]],[6,7,["H935"]],[7,8,["H5921"]],[8,10,["H776"]],[10,12,["H4505"]],[12,13,["H5414"]],[13,14,["H6322"]],[14,16,["H505"]],[16,17,["H3603"]],[17,19,["H3701"]],[19,22,["H3027"]],[22,24,["H1961"]],[24,25,["H854"]],[25,28,["H2388"]],[28,30,["H4467"]],[30,33,["H3027"]]]},{"k":9945,"v":[[0,2,["H4505"]],[2,3,["H3318","(H853)"]],[3,5,["H3701"]],[5,6,["H5921"]],[6,7,["H3478"]],[7,9,["H5921"]],[9,10,["H3605"]],[10,13,["H1368"]],[13,15,["H2428"]],[15,17,["H259"]],[17,18,["H376"]],[18,19,["H2572"]],[19,20,["H8255"]],[20,22,["H3701"]],[22,24,["H5414"]],[24,27,["H4428"]],[27,29,["H804"]],[29,32,["H4428"]],[32,34,["H804"]],[34,36,["H7725"]],[36,38,["H5975"]],[38,39,["H3808"]],[39,40,["H8033"]],[40,43,["H776"]]]},{"k":9946,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H4505"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3478"]]]},{"k":9947,"v":[[0,2,["H4505"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,8,["H6494"]],[8,10,["H1121"]],[10,11,["H4427"]],[11,14,["H8478"]]]},{"k":9948,"v":[[0,3,["H2572"]],[3,4,["H8141"]],[4,6,["H5838"]],[6,7,["H4428"]],[7,9,["H3063"]],[9,10,["H6494"]],[10,12,["H1121"]],[12,14,["H4505"]],[14,17,["H4427"]],[17,18,["H5921"]],[18,19,["H3478"]],[19,21,["H8111"]],[21,25,["H8141"]]]},{"k":9949,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H5493"]],[15,16,["H3808"]],[16,19,["H4480","H2403"]],[19,21,["H3379"]],[21,23,["H1121"]],[23,25,["H5028"]],[25,26,["H834"]],[26,27,["(H853)"]],[27,28,["H3478"]],[28,30,["H2398"]]]},{"k":9950,"v":[[0,2,["H6492"]],[2,4,["H1121"]],[4,6,["H7425"]],[6,8,["H7991"]],[8,11,["H7194"]],[11,12,["H5921"]],[12,15,["H5221"]],[15,18,["H8111"]],[18,21,["H759"]],[21,24,["H4428"]],[24,25,["H1004"]],[25,26,["H854"]],[26,27,["H709"]],[27,28,["H854"]],[28,29,["H745"]],[29,31,["H5973"]],[31,33,["H2572"]],[33,34,["H376"]],[34,37,["H4480","H1121","H1569"]],[37,40,["H4191"]],[40,43,["H4427"]],[43,46,["H8478"]]]},{"k":9951,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H6494"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,14,["H2009"]],[14,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3478"]]]},{"k":9952,"v":[[0,3,["H8147"]],[3,5,["H2572"]],[5,6,["H8141"]],[6,8,["H5838"]],[8,9,["H4428"]],[9,11,["H3063"]],[11,12,["H6492"]],[12,14,["H1121"]],[14,16,["H7425"]],[16,19,["H4427"]],[19,20,["H5921"]],[20,21,["H3478"]],[21,23,["H8111"]],[23,26,["H6242"]],[26,27,["H8141"]]]},{"k":9953,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H5493"]],[15,16,["H3808"]],[16,17,["H4480"]],[17,19,["H2403"]],[19,21,["H3379"]],[21,23,["H1121"]],[23,25,["H5028"]],[25,26,["H834"]],[26,27,["(H853)"]],[27,28,["H3478"]],[28,30,["H2398"]]]},{"k":9954,"v":[[0,3,["H3117"]],[3,5,["H6492"]],[5,6,["H4428"]],[6,8,["H3478"]],[8,9,["H935"]],[9,10,["H8407"]],[10,11,["H4428"]],[11,13,["H804"]],[13,15,["H3947","(H853)"]],[15,16,["H5859"]],[16,18,["H62"]],[18,20,["H3239"]],[20,22,["H6943"]],[22,24,["H2674"]],[24,26,["H1568"]],[26,28,["H1551"]],[28,29,["H3605"]],[29,31,["H776"]],[31,33,["H5321"]],[33,37,["H1540"]],[37,39,["H804"]]]},{"k":9955,"v":[[0,2,["H1954"]],[2,4,["H1121"]],[4,6,["H425"]],[6,7,["H7194"]],[7,9,["H7195"]],[9,10,["H5921"]],[10,11,["H6492"]],[11,13,["H1121"]],[13,15,["H7425"]],[15,17,["H5221"]],[17,20,["H4191"]],[20,23,["H4427"]],[23,26,["H8478"]],[26,29,["H6242"]],[29,30,["H8141"]],[30,32,["H3147"]],[32,34,["H1121"]],[34,36,["H5818"]]]},{"k":9956,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H6492"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,14,["H2009"]],[14,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3478"]]]},{"k":9957,"v":[[0,3,["H8147"]],[3,4,["H8141"]],[4,6,["H6492"]],[6,8,["H1121"]],[8,10,["H7425"]],[10,11,["H4428"]],[11,13,["H3478"]],[13,15,["H3147"]],[15,17,["H1121"]],[17,19,["H5818"]],[19,20,["H4428"]],[20,22,["H3063"]],[22,24,["H4427"]]]},{"k":9958,"v":[[0,1,["H2568"]],[1,3,["H6242"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,6,["H1961"]],[6,12,["H4427"]],[12,15,["H4427"]],[15,16,["H8337","H6240"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,22,["H517"]],[22,23,["H8034"]],[23,25,["H3388"]],[25,27,["H1323"]],[27,29,["H6659"]]]},{"k":9959,"v":[[0,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H6213"]],[15,18,["H3605"]],[18,19,["H834"]],[19,21,["H1"]],[21,22,["H5818"]],[22,24,["H6213"]]]},{"k":9960,"v":[[0,1,["H7535"]],[1,4,["H1116"]],[4,6,["H3808"]],[6,7,["H5493"]],[7,9,["H5971"]],[9,10,["H2076"]],[10,13,["H6999"]],[13,14,["H5750"]],[14,18,["H1116"]],[18,19,["H1931"]],[19,20,["H1129","(H853)"]],[20,22,["H5945"]],[22,23,["H8179"]],[23,26,["H1004"]],[26,29,["H3068"]]]},{"k":9961,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3147"]],[8,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3063"]]]},{"k":9962,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,5,["H3068"]],[5,6,["H2490"]],[6,8,["H7971"]],[8,10,["H3063"]],[10,11,["H7526"]],[11,13,["H4428"]],[13,15,["H758"]],[15,17,["H6492"]],[17,19,["H1121"]],[19,21,["H7425"]]]},{"k":9963,"v":[[0,2,["H3147"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,10,["H5973"]],[10,12,["H1"]],[12,15,["H5892"]],[15,17,["H1732"]],[17,19,["H1"]],[19,21,["H271"]],[21,23,["H1121"]],[23,24,["H4427"]],[24,27,["H8478"]]]},{"k":9964,"v":[[0,3,["H7651","H6240"]],[3,4,["H8141"]],[4,6,["H6492"]],[6,8,["H1121"]],[8,10,["H7425"]],[10,11,["H271"]],[11,13,["H1121"]],[13,15,["H3147"]],[15,16,["H4428"]],[16,18,["H3063"]],[18,21,["H4427"]]]},{"k":9965,"v":[[0,1,["H6242"]],[1,2,["H8141"]],[2,3,["H1121"]],[3,5,["H271"]],[5,10,["H4427"]],[10,12,["H4427"]],[12,13,["H8337","H6240"]],[13,14,["H8141"]],[14,16,["H3389"]],[16,18,["H6213"]],[18,19,["H3808"]],[19,23,["H3477"]],[23,26,["H5869"]],[26,29,["H3068"]],[29,31,["H430"]],[31,33,["H1732"]],[33,35,["H1"]]]},{"k":9966,"v":[[0,3,["H1980"]],[3,6,["H1870"]],[6,9,["H4428"]],[9,11,["H3478"]],[11,12,["H1571"]],[12,14,["(H853)"]],[14,16,["H1121"]],[16,19,["H5674"]],[19,21,["H784"]],[21,25,["H8441"]],[25,28,["H1471"]],[28,29,["H834","(H853)"]],[29,31,["H3068"]],[31,33,["H3423"]],[33,35,["H4480","H6440"]],[35,37,["H1121"]],[37,39,["H3478"]]]},{"k":9967,"v":[[0,3,["H2076"]],[3,6,["H6999"]],[6,10,["H1116"]],[10,12,["H5921"]],[12,14,["H1389"]],[14,16,["H8478"]],[16,17,["H3605"]],[17,18,["H7488"]],[18,19,["H6086"]]]},{"k":9968,"v":[[0,1,["H227"]],[1,2,["H7526"]],[2,3,["H4428"]],[3,5,["H758"]],[5,7,["H6492"]],[7,8,["H1121"]],[8,10,["H7425"]],[10,11,["H4428"]],[11,13,["H3478"]],[13,15,["H5927"]],[15,17,["H3389"]],[17,19,["H4421"]],[19,22,["H6696","H5921"]],[22,23,["H271"]],[23,25,["H3201"]],[25,26,["H3808"]],[26,27,["H3898"]],[27,28,[]]]},{"k":9969,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,4,["H7526"]],[4,5,["H4428"]],[5,7,["H758"]],[7,8,["H7725","(H853)"]],[8,9,["H359"]],[9,11,["H758"]],[11,13,["H5394","(H853)"]],[13,15,["H3064"]],[15,17,["H4480","H359"]],[17,20,["H726"]],[20,21,["H935"]],[21,23,["H359"]],[23,25,["H3427"]],[25,26,["H8033"]],[26,27,["H5704"]],[27,28,["H2088"]],[28,29,["H3117"]]]},{"k":9970,"v":[[0,2,["H271"]],[2,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,6,["H8407"]],[6,7,["H4428"]],[7,9,["H804"]],[9,10,["H559"]],[10,11,["H589"]],[11,14,["H5650"]],[14,17,["H1121"]],[17,19,["H5927"]],[19,21,["H3467"]],[21,26,["H4480","H3709"]],[26,29,["H4428"]],[29,31,["H758"]],[31,36,["H4480","H3709"]],[36,39,["H4428"]],[39,41,["H3478"]],[41,44,["H6965"]],[44,45,["H5921"]],[45,46,[]]]},{"k":9971,"v":[[0,2,["H271"]],[2,3,["H3947","(H853)"]],[3,5,["H3701"]],[5,7,["H2091"]],[7,10,["H4672"]],[10,13,["H1004"]],[13,16,["H3068"]],[16,20,["H214"]],[20,23,["H4428"]],[23,24,["H1004"]],[24,26,["H7971"]],[26,30,["H7810"]],[30,33,["H4428"]],[33,35,["H804"]]]},{"k":9972,"v":[[0,3,["H4428"]],[3,5,["H804"]],[5,6,["H8085"]],[6,7,["H413"]],[7,11,["H4428"]],[11,13,["H804"]],[13,15,["H5927"]],[15,16,["H413"]],[16,17,["H1834"]],[17,19,["H8610"]],[19,27,["H1540"]],[27,29,["H7024"]],[29,31,["H4191"]],[31,32,["H7526"]]]},{"k":9973,"v":[[0,2,["H4428"]],[2,3,["H271"]],[3,4,["H1980"]],[4,6,["H1834"]],[6,8,["H7122"]],[8,9,["H8407"]],[9,10,["H4428"]],[10,12,["H804"]],[12,14,["H7200","(H853)"]],[14,16,["H4196"]],[16,17,["H834"]],[17,20,["H1834"]],[20,22,["H4428"]],[22,23,["H271"]],[23,24,["H7971"]],[24,25,["H413"]],[25,26,["H223"]],[26,28,["H3548","(H853)"]],[28,30,["H1823"]],[30,33,["H4196"]],[33,36,["H8403"]],[36,41,["H3605"]],[41,43,["H4639"]],[43,44,[]]]},{"k":9974,"v":[[0,2,["H223"]],[2,4,["H3548"]],[4,5,["H1129","(H853)"]],[5,7,["H4196"]],[7,10,["H3605"]],[10,11,["H834"]],[11,12,["H4428"]],[12,13,["H271"]],[13,15,["H7971"]],[15,17,["H4480","H1834"]],[17,18,["H3651"]],[18,19,["H223"]],[19,21,["H3548"]],[21,22,["H6213"]],[22,24,["H5704"]],[24,25,["H4428"]],[25,26,["H271"]],[26,27,["H935"]],[27,29,["H4480","H1834"]]]},{"k":9975,"v":[[0,4,["H4428"]],[4,6,["H935"]],[6,8,["H4480","H1834"]],[8,10,["H4428"]],[10,11,["H7200","(H853)"]],[11,13,["H4196"]],[13,16,["H4428"]],[16,17,["H7126"]],[17,18,["H5921"]],[18,20,["H4196"]],[20,22,["H5927"]],[22,23,["H5921"]]]},{"k":9976,"v":[[0,3,["H6999","(H853)"]],[3,6,["H5930"]],[6,10,["H4503"]],[10,12,["H5258","(H853)"]],[12,15,["H5262"]],[15,17,["H2236","(H853)"]],[17,19,["H1818"]],[19,21,["H834"]],[21,23,["H8002"]],[23,24,["H5921"]],[24,26,["H4196"]]]},{"k":9977,"v":[[0,3,["H7126"]],[3,6,["H5178"]],[6,7,["H4196"]],[7,8,["H834"]],[8,10,["H6440"]],[10,12,["H3068"]],[12,13,["H4480","H854"]],[13,15,["H6440"]],[15,18,["H1004"]],[18,20,["H4480","H996"]],[20,22,["H4196"]],[22,25,["H1004"]],[25,28,["H3068"]],[28,30,["H5414"]],[30,32,["H5921"]],[32,34,["H6828"]],[34,35,["H3409"]],[35,38,["H4196"]]]},{"k":9978,"v":[[0,2,["H4428"]],[2,3,["H271"]],[3,4,["H6680","(H853)"]],[4,5,["H223"]],[5,7,["H3548"]],[7,8,["H559"]],[8,9,["H5921"]],[9,11,["H1419"]],[11,12,["H4196"]],[12,13,["H6999","(H853)"]],[13,15,["H1242"]],[15,17,["H5930"]],[17,20,["H6153"]],[20,22,["H4503"]],[22,25,["H4428"]],[25,27,["H5930"]],[27,31,["H4503"]],[31,35,["H5930"]],[35,37,["H3605"]],[37,39,["H5971"]],[39,42,["H776"]],[42,46,["H4503"]],[46,50,["H5262"]],[50,52,["H2236"]],[52,53,["H5921"]],[53,55,["H3605"]],[55,57,["H1818"]],[57,61,["H5930"]],[61,63,["H3605"]],[63,65,["H1818"]],[65,68,["H2077"]],[68,71,["H5178"]],[71,72,["H4196"]],[72,74,["H1961"]],[74,78,["H1239"]],[78,79,[]]]},{"k":9979,"v":[[0,2,["H6213"]],[2,3,["H223"]],[3,5,["H3548"]],[5,8,["H3605"]],[8,9,["H834"]],[9,10,["H4428"]],[10,11,["H271"]],[11,12,["H6680"]]]},{"k":9980,"v":[[0,2,["H4428"]],[2,3,["H271"]],[3,5,["H7112","(H853)"]],[5,7,["H4526"]],[7,10,["H4350"]],[10,12,["H5493"]],[12,14,["H3595"]],[14,16,["H4480","H5921"]],[16,20,["H3381"]],[20,22,["H3220"]],[22,24,["H4480","H5921"]],[24,26,["H5178"]],[26,27,["H1241"]],[27,28,["H834"]],[28,30,["H8478"]],[30,33,["H5414"]],[33,35,["H5921"]],[35,37,["H4837"]],[37,39,["H68"]]]},{"k":9981,"v":[[0,3,["H4329"]],[3,6,["H7676"]],[6,7,["H834"]],[7,10,["H1129"]],[10,13,["H1004"]],[13,16,["H4428"]],[16,17,["H3996"]],[17,18,["H2435"]],[18,19,["H5437"]],[19,23,["H1004"]],[23,26,["H3068"]],[26,27,["H4480","H6440"]],[27,29,["H4428"]],[29,31,["H804"]]]},{"k":9982,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H271"]],[8,9,["H834"]],[9,11,["H6213"]],[11,13,["H1992"]],[13,14,["H3808"]],[14,15,["H3789"]],[15,16,["H5921"]],[16,18,["H5612"]],[18,21,["H1697","H3117"]],[21,24,["H4428"]],[24,26,["H3063"]]]},{"k":9983,"v":[[0,2,["H271"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,10,["H5973"]],[10,12,["H1"]],[12,15,["H5892"]],[15,17,["H1732"]],[17,19,["H2396"]],[19,21,["H1121"]],[21,22,["H4427"]],[22,25,["H8478"]]]},{"k":9984,"v":[[0,3,["H8147","H6240"]],[3,4,["H8141"]],[4,6,["H271"]],[6,7,["H4428"]],[7,9,["H3063"]],[9,11,["H1954"]],[11,13,["H1121"]],[13,15,["H425"]],[15,17,["H4427"]],[17,19,["H8111"]],[19,20,["H5921"]],[20,21,["H3478"]],[21,22,["H8672"]],[22,23,["H8141"]]]},{"k":9985,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,14,["H7535"]],[14,15,["H3808"]],[15,18,["H4428"]],[18,20,["H3478"]],[20,21,["H834"]],[21,22,["H1961"]],[22,23,["H6440"]],[23,24,[]]]},{"k":9986,"v":[[0,1,["H5921"]],[1,4,["H5927"]],[4,5,["H8022"]],[5,6,["H4428"]],[6,8,["H804"]],[8,10,["H1954"]],[10,11,["H1961"]],[11,13,["H5650"]],[13,15,["H7725"]],[15,17,["H4503"]]]},{"k":9987,"v":[[0,3,["H4428"]],[3,5,["H804"]],[5,6,["H4672"]],[6,7,["H7195"]],[7,9,["H1954"]],[9,13,["H7971"]],[13,14,["H4397"]],[14,15,["H413"]],[15,16,["H5471"]],[16,17,["H4428"]],[17,19,["H4714"]],[19,21,["H5927"]],[21,22,["H3808"]],[22,23,["H4503"]],[23,26,["H4428"]],[26,28,["H804"]],[28,33,["H8141"]],[33,35,["H8141"]],[35,38,["H4428"]],[38,40,["H804"]],[40,43,["H6113"]],[43,45,["H631"]],[45,48,["H1004","H3608"]]]},{"k":9988,"v":[[0,3,["H4428"]],[3,5,["H804"]],[5,7,["H5927"]],[7,9,["H3605"]],[9,11,["H776"]],[11,14,["H5927"]],[14,16,["H8111"]],[16,18,["H6696","H5921"]],[18,20,["H7969"]],[20,21,["H8141"]]]},{"k":9989,"v":[[0,3,["H8671"]],[3,4,["H8141"]],[4,6,["H1954"]],[6,8,["H4428"]],[8,10,["H804"]],[10,11,["H3920","(H853)"]],[11,12,["H8111"]],[12,16,["H1540","(H853)","H3478"]],[16,18,["H804"]],[18,20,["H3427"]],[20,23,["H2477"]],[23,26,["H2249"]],[26,29,["H5104"]],[29,31,["H1470"]],[31,35,["H5892"]],[35,38,["H4074"]]]},{"k":9990,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,7,["H1121"]],[7,9,["H3478"]],[9,11,["H2398"]],[11,14,["H3068"]],[14,16,["H430"]],[16,21,["H5927","(H853)"]],[21,25,["H4480","H776"]],[25,27,["H4714"]],[27,29,["H4480","H8478"]],[29,31,["H3027"]],[31,33,["H6547"]],[33,34,["H4428"]],[34,36,["H4714"]],[36,39,["H3372"]],[39,40,["H312"]],[40,41,["H430"]]]},{"k":9991,"v":[[0,2,["H1980"]],[2,5,["H2708"]],[5,8,["H1471"]],[8,9,["H834"]],[9,11,["H3068"]],[11,13,["H3423"]],[13,15,["H4480","H6440"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,23,["H4428"]],[23,25,["H3478"]],[25,26,["H834"]],[26,29,["H6213"]]]},{"k":9992,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,7,["H2644"]],[7,9,["H1697"]],[9,10,["H834"]],[10,12,["H3808"]],[12,13,["H3651"]],[13,14,["H5921"]],[14,16,["H3068"]],[16,18,["H430"]],[18,21,["H1129"]],[21,24,["H1116"]],[24,26,["H3605"]],[26,28,["H5892"]],[28,31,["H4480","H4026"]],[31,34,["H5341"]],[34,35,["H5704"]],[35,37,["H4013"]],[37,38,["H5892"]]]},{"k":9993,"v":[[0,5,["H5324"]],[5,6,["H4676"]],[6,8,["H842"]],[8,9,["H5921"]],[9,10,["H3605"]],[10,11,["H1364"]],[11,12,["H1389"]],[12,14,["H8478"]],[14,15,["H3605"]],[15,16,["H7488"]],[16,17,["H6086"]]]},{"k":9994,"v":[[0,2,["H8033"]],[2,5,["H6999"]],[5,7,["H3605"]],[7,10,["H1116"]],[10,14,["H1471"]],[14,15,["H834"]],[15,17,["H3068"]],[17,19,["H1540"]],[19,20,["H4480","H6440"]],[20,23,["H6213"]],[23,24,["H7451"]],[24,25,["H1697"]],[25,27,["H3707","(H853)"]],[27,29,["H3068"]],[29,31,[]]]},{"k":9995,"v":[[0,3,["H5647"]],[3,4,["H1544"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H559"]],[9,14,["H3808"]],[14,15,["H6213","(H853)"]],[15,16,["H2088"]],[16,17,["H1697"]]]},{"k":9996,"v":[[0,3,["H3068"]],[3,4,["H5749"]],[4,6,["H3478"]],[6,9,["H3063"]],[9,10,["H3027"]],[10,11,["H3605"]],[11,13,["H5030"]],[13,16,["H3605"]],[16,18,["H2374"]],[18,19,["H559"]],[19,20,["H7725"]],[20,25,["H4480","H1870","H7451"]],[25,27,["H8104"]],[27,29,["H4687"]],[29,32,["H2708"]],[32,35,["H3605"]],[35,37,["H8451"]],[37,38,["H834"]],[38,40,["H6680","(H853)"]],[40,42,["H1"]],[42,44,["H834"]],[44,46,["H7971"]],[46,47,["H413"]],[47,49,["H3027"]],[49,51,["H5650"]],[51,53,["H5030"]]]},{"k":9997,"v":[[0,4,["H3808"]],[4,5,["H8085"]],[5,7,["H7185","(H853)"]],[7,9,["H6203"]],[9,13,["H6203"]],[13,16,["H1"]],[16,17,["H834"]],[17,19,["H3808"]],[19,20,["H539"]],[20,23,["H3068"]],[23,25,["H430"]]]},{"k":9998,"v":[[0,3,["H3988","(H853)"]],[3,5,["H2706"]],[5,8,["H1285"]],[8,9,["H834"]],[9,11,["H3772"]],[11,12,["H854"]],[12,14,["H1"]],[14,17,["H5715"]],[17,18,["H834"]],[18,20,["H5749"]],[20,25,["H1980","H310"]],[25,26,["H1892"]],[26,29,["H1891"]],[29,32,["H310"]],[32,34,["H1471"]],[34,35,["H834"]],[35,38,["H5439"]],[38,41,["H834"]],[41,43,["H3068"]],[43,45,["H6680"]],[45,50,["H1115"]],[50,51,["H6213"]],[51,53,[]]]},{"k":9999,"v":[[0,3,["H5800","(H853)"]],[3,4,["H3605"]],[4,6,["H4687"]],[6,9,["H3068"]],[9,11,["H430"]],[11,13,["H6213"]],[13,16,["H4541"]],[16,18,["H8147"]],[18,19,["H5695"]],[19,21,["H6213"]],[21,23,["H842"]],[23,25,["H7812"]],[25,26,["H3605"]],[26,28,["H6635"]],[28,30,["H8064"]],[30,32,["H5647","(H853)"]],[32,33,["H1168"]]]},{"k":10000,"v":[[0,3,["(H853)"]],[3,5,["H1121"]],[5,8,["H1323"]],[8,11,["H5674"]],[11,13,["H784"]],[13,15,["H7080"]],[15,16,["H7081"]],[16,18,["H5172"]],[18,21,["H4376"]],[21,23,["H6213"]],[23,24,["H7451"]],[24,27,["H5869"]],[27,30,["H3068"]],[30,35,["H3707"]]]},{"k":10001,"v":[[0,3,["H3068"]],[3,6,["H599","H3966"]],[6,8,["H3478"]],[8,10,["H5493"]],[10,13,["H4480","H5921"]],[13,15,["H6440"]],[15,18,["H3808"]],[18,19,["H7604"]],[19,20,["H7535"]],[20,22,["H7626"]],[22,24,["H3063"]],[24,25,["H905"]]]},{"k":10002,"v":[[0,1,["H1571"]],[1,2,["H3063"]],[2,3,["H8104"]],[3,4,["H3808","(H853)"]],[4,6,["H4687"]],[6,9,["H3068"]],[9,11,["H430"]],[11,13,["H1980"]],[13,16,["H2708"]],[16,18,["H3478"]],[18,19,["H834"]],[19,21,["H6213"]]]},{"k":10003,"v":[[0,3,["H3068"]],[3,4,["H3988"]],[4,5,["H3605"]],[5,7,["H2233"]],[7,9,["H3478"]],[9,11,["H6031"]],[11,14,["H5414"]],[14,18,["H3027"]],[18,20,["H8154"]],[20,21,["H5704","H834"]],[21,26,["H7993"]],[26,29,["H4480","H6440"]]]},{"k":10004,"v":[[0,1,["H3588"]],[1,3,["H7167"]],[3,4,["H3478"]],[4,5,["H4480","H5921"]],[5,7,["H1004"]],[7,9,["H1732"]],[9,12,["(H853)"]],[12,13,["H3379"]],[13,15,["H1121"]],[15,17,["H5028"]],[17,18,["H4427"]],[18,20,["H3379"]],[20,21,["H5080","(H853)"]],[21,22,["H3478"]],[22,24,["H4480","H310"]],[24,26,["H3068"]],[26,30,["H2398"]],[30,32,["H1419"]],[32,33,["H2401"]]]},{"k":10005,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H1980"]],[6,8,["H3605"]],[8,10,["H2403"]],[10,12,["H3379"]],[12,13,["H834"]],[13,15,["H6213"]],[15,17,["H5493"]],[17,18,["H3808"]],[18,19,["H4480"]],[19,20,[]]]},{"k":10006,"v":[[0,1,["H5704","H834"]],[1,3,["H3068"]],[3,4,["H5493","(H853)"]],[4,5,["H3478"]],[5,7,["H4480","H5921"]],[7,9,["H6440"]],[9,10,["H834"]],[10,13,["H1696"]],[13,14,["H3027"]],[14,15,["H3605"]],[15,17,["H5650"]],[17,19,["H5030"]],[19,22,["H3478"]],[22,24,["H1540"]],[24,26,["H4480","H5921"]],[26,29,["H127"]],[29,31,["H804"]],[31,32,["H5704"]],[32,33,["H2088"]],[33,34,["H3117"]]]},{"k":10007,"v":[[0,3,["H4428"]],[3,5,["H804"]],[5,6,["H935"]],[6,9,["H4480","H894"]],[9,12,["H4480","H3575"]],[12,15,["H4480","H5755"]],[15,18,["H4480","H2574"]],[18,21,["H5617"]],[21,23,["H3427"]],[23,27,["H5892"]],[27,29,["H8111"]],[29,30,["H8478"]],[30,33,["H1121"]],[33,35,["H3478"]],[35,38,["H3423","(H853)"]],[38,39,["H8111"]],[39,41,["H3427"]],[41,44,["H5892"]],[44,45,[]]]},{"k":10008,"v":[[0,4,["H1961"]],[4,7,["H8462"]],[7,10,["H3427"]],[10,11,["H8033"]],[11,14,["H3372"]],[14,15,["H3808","(H853)"]],[15,17,["H3068"]],[17,20,["H3068"]],[20,21,["H7971","(H853)"]],[21,22,["H738"]],[22,26,["H2026"]],[26,29,[]]]},{"k":10009,"v":[[0,3,["H559"]],[3,6,["H4428"]],[6,8,["H804"]],[8,9,["H559"]],[9,11,["H1471"]],[11,12,["H834"]],[12,15,["H1540"]],[15,17,["H3427"]],[17,20,["H5892"]],[20,22,["H8111"]],[22,23,["H3045"]],[23,24,["H3808","(H853)"]],[24,26,["H4941"]],[26,29,["H430"]],[29,32,["H776"]],[32,36,["H7971","(H853)"]],[36,37,["H738"]],[37,41,["H2009"]],[41,43,["H4191"]],[43,45,["H834"]],[45,47,["H3045"]],[47,48,["H369","(H853)"]],[48,50,["H4941"]],[50,53,["H430"]],[53,56,["H776"]]]},{"k":10010,"v":[[0,3,["H4428"]],[3,5,["H804"]],[5,6,["H6680"]],[6,7,["H559"]],[7,8,["H1980"]],[8,9,["H8033"]],[9,10,["H259"]],[10,13,["H4480","H3548"]],[13,14,["H834"]],[14,16,["H1540"]],[16,18,["H4480","H8033"]],[18,22,["H1980"]],[22,24,["H3427"]],[24,25,["H8033"]],[25,29,["H3384"]],[29,30,["(H853)"]],[30,32,["H4941"]],[32,35,["H430"]],[35,38,["H776"]]]},{"k":10011,"v":[[0,2,["H259"]],[2,5,["H4480","H3548"]],[5,6,["H834"]],[6,10,["H1540"]],[10,12,["H4480","H8111"]],[12,13,["H935"]],[13,15,["H3427"]],[15,17,["H1008"]],[17,19,["H3384"]],[19,21,["H349"]],[21,24,["H3372","(H853)"]],[24,26,["H3068"]]]},{"k":10012,"v":[[0,3,["H1471","H1471"]],[3,4,["H6213"]],[4,5,["H430"]],[5,10,["H5117"]],[10,14,["H1004"]],[14,18,["H1116"]],[18,19,["H834"]],[19,21,["H8118"]],[21,23,["H6213"]],[23,25,["H1471","H1471"]],[25,28,["H5892"]],[28,29,["H834","H8033"]],[29,30,["H1992"]],[30,31,["H3427"]]]},{"k":10013,"v":[[0,3,["H376"]],[3,5,["H894"]],[5,6,["H6213","(H853)"]],[6,7,["H5524"]],[7,10,["H376"]],[10,12,["H3575"]],[12,13,["H6213","(H853)"]],[13,14,["H5370"]],[14,17,["H376"]],[17,19,["H2574"]],[19,20,["H6213","(H853)"]],[20,21,["H807"]]]},{"k":10014,"v":[[0,3,["H5761"]],[3,4,["H6213"]],[4,5,["H5026"]],[5,7,["H8662"]],[7,10,["H5616"]],[10,11,["H8313","(H853)"]],[11,13,["H1121"]],[13,15,["H784"]],[15,17,["H152"]],[17,19,["H6048"]],[19,21,["H430"]],[21,23,["H5617"]]]},{"k":10015,"v":[[0,3,["H1961","H3372","(H853)"]],[3,5,["H3068"]],[5,7,["H6213"]],[7,12,["H4480","H7098"]],[12,15,["H3548"]],[15,19,["H1116"]],[19,21,["H6213"]],[21,26,["H1004"]],[26,30,["H1116"]]]},{"k":10016,"v":[[0,2,["H1961","H3372","(H853)"]],[2,4,["H3068"]],[4,6,["H1961","H5647"]],[6,9,["H430"]],[9,12,["H4941"]],[12,15,["H1471"]],[15,16,["H834","(H853)"]],[16,19,["H1540"]],[19,21,["H4480","H8033"]]]},{"k":10017,"v":[[0,1,["H5704"]],[1,2,["H2088"]],[2,3,["H3117"]],[3,4,["H1992"]],[4,5,["H6213"]],[5,8,["H7223"]],[8,9,["H4941"]],[9,11,["H3372"]],[11,12,["H369","(H853)"]],[12,14,["H3068"]],[14,15,["H369"]],[15,16,["H6213"]],[16,20,["H2708"]],[20,24,["H4941"]],[24,28,["H8451"]],[28,30,["H4687"]],[30,31,["H834"]],[31,33,["H3068"]],[33,34,["H6680","(H853)"]],[34,36,["H1121"]],[36,38,["H3290"]],[38,39,["H834"]],[39,41,["H7760","H8034"]],[41,42,["H3478"]]]},{"k":10018,"v":[[0,1,["H854"]],[1,4,["H3068"]],[4,6,["H3772"]],[6,8,["H1285"]],[8,10,["H6680"]],[10,12,["H559"]],[12,15,["H3808"]],[15,16,["H3372"]],[16,17,["H312"]],[17,18,["H430"]],[18,19,["H3808"]],[19,21,["H7812"]],[21,24,["H3808"]],[24,25,["H5647"]],[25,27,["H3808"]],[27,28,["H2076"]],[28,30,[]]]},{"k":10019,"v":[[0,1,["H3588","H518","(H853)"]],[1,3,["H3068"]],[3,4,["H834"]],[4,7,["H5927","(H853)"]],[7,11,["H4480","H776"]],[11,13,["H4714"]],[13,15,["H1419"]],[15,16,["H3581"]],[16,20,["H5186"]],[20,21,["H2220"]],[21,25,["H3372"]],[25,30,["H7812"]],[30,37,["H2076"]]]},{"k":10020,"v":[[0,3,["H2706"]],[3,6,["H4941"]],[6,9,["H8451"]],[9,12,["H4687"]],[12,13,["H834"]],[13,15,["H3789"]],[15,20,["H8104"]],[20,22,["H6213"]],[22,24,["H3605","H3117"]],[24,28,["H3808"]],[28,29,["H3372"]],[29,30,["H312"]],[30,31,["H430"]]]},{"k":10021,"v":[[0,3,["H1285"]],[3,4,["H834"]],[4,7,["H3772"]],[7,8,["H854"]],[8,12,["H3808"]],[12,13,["H7911"]],[13,14,["H3808"]],[14,17,["H3372"]],[17,18,["H312"]],[18,19,["H430"]]]},{"k":10022,"v":[[0,1,["H3588","H518","(H853)"]],[1,3,["H3068"]],[3,5,["H430"]],[5,8,["H3372"]],[8,10,["H1931"]],[10,12,["H5337"]],[12,17,["H4480","H3027"]],[17,19,["H3605"]],[19,21,["H341"]]]},{"k":10023,"v":[[0,4,["H3808"]],[4,5,["H8085"]],[5,6,["H3588","H518"]],[6,7,["H1992"]],[7,8,["H6213"]],[8,11,["H7223"]],[11,12,["H4941"]]]},{"k":10024,"v":[[0,2,["H428"]],[2,3,["H1471"]],[3,4,["H1961","H3372","(H853)"]],[4,6,["H3068"]],[6,8,["H5647"]],[8,11,["H6456"]],[11,12,["H1571"]],[12,14,["H1121"]],[14,17,["H1121"]],[17,18,["H1121"]],[18,19,["H834"]],[19,20,["H6213"]],[20,22,["H1"]],[22,24,["H6213"]],[24,25,["H1992"]],[25,26,["H5704"]],[26,27,["H2088"]],[27,28,["H3117"]]]},{"k":10025,"v":[[0,5,["H1961"]],[5,8,["H7969"]],[8,9,["H8141"]],[9,11,["H1954"]],[11,12,["H1121"]],[12,14,["H425"]],[14,15,["H4428"]],[15,17,["H3478"]],[17,19,["H2396"]],[19,21,["H1121"]],[21,23,["H271"]],[23,24,["H4428"]],[24,26,["H3063"]],[26,29,["H4427"]]]},{"k":10026,"v":[[0,1,["H6242"]],[1,3,["H2568"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,6,["H1961"]],[6,12,["H4427"]],[12,15,["H4427"]],[15,16,["H6242"]],[16,18,["H8672"]],[18,19,["H8141"]],[19,21,["H3389"]],[21,23,["H517"]],[23,24,["H8034"]],[24,27,["H21"]],[27,29,["H1323"]],[29,31,["H2148"]]]},{"k":10027,"v":[[0,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3605"]],[16,17,["H834"]],[17,18,["H1732"]],[18,20,["H1"]],[20,21,["H6213"]]]},{"k":10028,"v":[[0,1,["H1931"]],[1,2,["H5493","(H853)"]],[2,5,["H1116"]],[5,7,["H7665","(H853)"]],[7,9,["H4676"]],[9,12,["H3772","(H853)"]],[12,14,["H842"]],[14,18,["H3807"]],[18,20,["H5178"]],[20,21,["H5175"]],[21,22,["H834"]],[22,23,["H4872"]],[23,25,["H6213"]],[25,26,["H3588"]],[26,27,["H5704"]],[27,28,["H1992"]],[28,29,["H3117"]],[29,31,["H1121"]],[31,33,["H3478"]],[33,34,["H1961"]],[34,36,["H6999"]],[36,41,["H7121"]],[41,43,["H5180"]]]},{"k":10029,"v":[[0,2,["H982"]],[2,5,["H3068"]],[5,6,["H430"]],[6,8,["H3478"]],[8,11,["H310"]],[11,13,["H1961"]],[13,14,["H3808"]],[14,16,["H3644"]],[16,18,["H3605"]],[18,20,["H4428"]],[20,22,["H3063"]],[22,25,["H834"]],[25,26,["H1961"]],[26,27,["H6440"]],[27,28,[]]]},{"k":10030,"v":[[0,3,["H1692"]],[3,6,["H3068"]],[6,8,["H5493"]],[8,9,["H3808"]],[9,11,["H4480","H310"]],[11,14,["H8104"]],[14,16,["H4687"]],[16,17,["H834"]],[17,19,["H3068"]],[19,20,["H6680","(H853)"]],[20,21,["H4872"]]]},{"k":10031,"v":[[0,3,["H3068"]],[3,4,["H1961"]],[4,5,["H5973"]],[5,9,["H7919"]],[9,10,["H3605","H834"]],[10,13,["H3318"]],[13,16,["H4775"]],[16,19,["H4428"]],[19,21,["H804"]],[21,23,["H5647"]],[23,25,["H3808"]]]},{"k":10032,"v":[[0,1,["H1931"]],[1,2,["H5221","(H853)"]],[2,4,["H6430"]],[4,6,["H5704"]],[6,7,["H5804"]],[7,10,["H1366"]],[10,14,["H4480","H4026"]],[14,17,["H5341"]],[17,18,["H5704"]],[18,20,["H4013"]],[20,21,["H5892"]]]},{"k":10033,"v":[[0,5,["H1961"]],[5,8,["H7243"]],[8,9,["H8141"]],[9,11,["H4428"]],[11,12,["H2396"]],[12,13,["H1931"]],[13,16,["H7637"]],[16,17,["H8141"]],[17,19,["H1954"]],[19,20,["H1121"]],[20,22,["H425"]],[22,23,["H4428"]],[23,25,["H3478"]],[25,27,["H8022"]],[27,28,["H4428"]],[28,30,["H804"]],[30,32,["H5927"]],[32,33,["H5921"]],[33,34,["H8111"]],[34,36,["H6696","H5921"]],[36,37,[]]]},{"k":10034,"v":[[0,4,["H4480","H7097"]],[4,6,["H7969"]],[6,7,["H8141"]],[7,9,["H3920"]],[9,14,["H8337"]],[14,15,["H8141"]],[15,17,["H2396"]],[17,18,["H1931"]],[18,21,["H8672"]],[21,22,["H8141"]],[22,24,["H1954"]],[24,25,["H4428"]],[25,27,["H3478"]],[27,28,["H8111"]],[28,30,["H3920"]]]},{"k":10035,"v":[[0,3,["H4428"]],[3,5,["H804"]],[5,8,["H1540","(H853)"]],[8,9,["H3478"]],[9,11,["H804"]],[11,13,["H5148"]],[13,16,["H2477"]],[16,19,["H2249"]],[19,22,["H5104"]],[22,24,["H1470"]],[24,28,["H5892"]],[28,31,["H4074"]]]},{"k":10036,"v":[[0,1,["H5921","H834"]],[1,3,["H8085"]],[3,4,["H3808"]],[4,6,["H6963"]],[6,9,["H3068"]],[9,11,["H430"]],[11,13,["H5674","(H853)"]],[13,15,["H1285"]],[15,16,["(H853)"]],[16,17,["H3605"]],[17,18,["H834"]],[18,19,["H4872"]],[19,21,["H5650"]],[21,24,["H3068"]],[24,25,["H6680"]],[25,28,["H3808"]],[28,29,["H8085"]],[29,31,["H3808"]],[31,32,["H6213"]],[32,33,[]]]},{"k":10037,"v":[[0,4,["H702","H6240"]],[4,5,["H8141"]],[5,7,["H4428"]],[7,8,["H2396"]],[8,10,["H5576"]],[10,11,["H4428"]],[11,13,["H804"]],[13,15,["H5927"]],[15,16,["H5921"]],[16,17,["H3605"]],[17,19,["H1219"]],[19,20,["H5892"]],[20,22,["H3063"]],[22,24,["H8610"]],[24,25,[]]]},{"k":10038,"v":[[0,2,["H2396"]],[2,3,["H4428"]],[3,5,["H3063"]],[5,6,["H7971"]],[6,7,["H413"]],[7,9,["H4428"]],[9,11,["H804"]],[11,13,["H3923"]],[13,14,["H559"]],[14,17,["H2398"]],[17,18,["H7725"]],[18,19,["H4480","H5921"]],[19,20,["(H853)"]],[20,22,["H834"]],[22,24,["H5414"]],[24,25,["H5921"]],[25,29,["H5375"]],[29,32,["H4428"]],[32,34,["H804"]],[34,35,["H7760"]],[35,36,["H5921"]],[36,37,["H2396"]],[37,38,["H4428"]],[38,40,["H3063"]],[40,41,["H7969"]],[41,42,["H3967"]],[42,43,["H3603"]],[43,45,["H3701"]],[45,47,["H7970"]],[47,48,["H3603"]],[48,50,["H2091"]]]},{"k":10039,"v":[[0,2,["H2396"]],[2,3,["H5414"]],[3,4,["(H853)"]],[4,5,["H3605"]],[5,7,["H3701"]],[7,10,["H4672"]],[10,13,["H1004"]],[13,16,["H3068"]],[16,20,["H214"]],[20,23,["H4428"]],[23,24,["H1004"]]]},{"k":10040,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,5,["H2396"]],[5,7,["H7112"]],[7,10,["(H853)"]],[10,12,["H1817"]],[12,15,["H1964"]],[15,18,["H3068"]],[18,22,["H547"]],[22,23,["H834"]],[23,24,["H2396"]],[24,25,["H4428"]],[25,27,["H3063"]],[27,29,["H6823"]],[29,31,["H5414"]],[31,35,["H4428"]],[35,37,["H804"]]]},{"k":10041,"v":[[0,3,["H4428"]],[3,5,["H804"]],[5,6,["H7971","(H853)"]],[6,7,["H8661"]],[7,9,["H7249"]],[9,11,["H7262"]],[11,12,["H4480"]],[12,13,["H3923"]],[13,14,["H413"]],[14,15,["H4428"]],[15,16,["H2396"]],[16,19,["H3515"]],[19,20,["H2426"]],[20,22,["H3389"]],[22,26,["H5927"]],[26,28,["H935"]],[28,30,["H3389"]],[30,36,["H5927"]],[36,38,["H935"]],[38,40,["H5975"]],[40,43,["H8585"]],[43,46,["H5945"]],[46,47,["H1295"]],[47,48,["H834"]],[48,52,["H4546"]],[52,55,["H3526"]],[55,56,["H7704"]]]},{"k":10042,"v":[[0,5,["H7121"]],[5,6,["H413"]],[6,8,["H4428"]],[8,11,["H3318"]],[11,12,["H413"]],[12,14,["H471"]],[14,16,["H1121"]],[16,18,["H2518"]],[18,19,["H834"]],[19,21,["H5921"]],[21,23,["H1004"]],[23,25,["H7644"]],[25,27,["H5608"]],[27,29,["H3098"]],[29,31,["H1121"]],[31,33,["H623"]],[33,35,["H2142"]]]},{"k":10043,"v":[[0,2,["H7262"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H559"]],[6,8,["H4994"]],[8,9,["H413"]],[9,10,["H2396"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H1419"]],[14,15,["H4428"]],[15,17,["H4428"]],[17,19,["H804"]],[19,20,["H4100"]],[20,21,["H986"]],[21,23,["H2088"]],[23,24,["H834"]],[24,26,["H982"]]]},{"k":10044,"v":[[0,2,["H559"]],[2,3,["H389"]],[3,7,["H8193"]],[7,8,["H1697"]],[8,11,["H6098"]],[11,13,["H1369"]],[13,16,["H4421"]],[16,17,["H6258"]],[17,18,["H5921"]],[18,19,["H4310"]],[19,22,["H982"]],[22,23,["H3588"]],[23,25,["H4775"]],[25,27,[]]]},{"k":10045,"v":[[0,1,["H6258"]],[1,2,["H2009"]],[2,4,["H982"]],[4,5,["H5921"]],[5,7,["H4938"]],[7,9,["H2088"]],[9,10,["H7533"]],[10,11,["H7070"]],[11,13,["H5921"]],[13,14,["H4714"]],[14,15,["H5921"]],[15,16,["H834"]],[16,19,["H376"]],[19,20,["H5564"]],[20,23,["H935"]],[23,26,["H3709"]],[26,28,["H5344"]],[28,30,["H3651"]],[30,32,["H6547"]],[32,33,["H4428"]],[33,35,["H4714"]],[35,37,["H3605"]],[37,39,["H982"]],[39,40,["H5921"]],[40,41,[]]]},{"k":10046,"v":[[0,2,["H3588"]],[2,4,["H559"]],[4,5,["H413"]],[5,8,["H982"]],[8,9,["H413"]],[9,11,["H3068"]],[11,13,["H430"]],[13,15,["H3808"]],[15,17,["H1931"]],[17,18,["H834","(H853)"]],[18,20,["H1116"]],[20,23,["H4196"]],[23,24,["H2396"]],[24,27,["H5493"]],[27,30,["H559"]],[30,32,["H3063"]],[32,34,["H3389"]],[34,37,["H7812"]],[37,38,["H6440"]],[38,39,["H2088"]],[39,40,["H4196"]],[40,42,["H3389"]]]},{"k":10047,"v":[[0,1,["H6258"]],[1,5,["H4994"]],[5,7,["H6149"]],[7,8,["H854"]],[8,10,["H113"]],[10,12,["H4428"]],[12,14,["H804"]],[14,18,["H5414"]],[18,21,["H505"]],[21,22,["H5483"]],[22,23,["H518"]],[23,26,["H3201"]],[26,31,["H5414"]],[31,32,["H7392"]],[32,33,["H5921"]],[33,34,[]]]},{"k":10048,"v":[[0,1,["H349"]],[1,6,["H7725","(H853)"]],[6,8,["H6440"]],[8,10,["H259"]],[10,11,["H6346"]],[11,14,["H6996"]],[14,17,["H113"]],[17,18,["H5650"]],[18,22,["H982"]],[22,23,["H5921"]],[23,24,["H4714"]],[24,26,["H7393"]],[26,29,["H6571"]]]},{"k":10049,"v":[[0,3,["H6258"]],[3,5,["H5927"]],[5,6,["H4480","H1107"]],[6,8,["H3068"]],[8,9,["H5921"]],[9,10,["H2088"]],[10,11,["H4725"]],[11,13,["H7843"]],[13,16,["H3068"]],[16,17,["H559"]],[17,18,["H413"]],[18,21,["H5927"]],[21,22,["H5921"]],[22,23,["H2063"]],[23,24,["H776"]],[24,26,["H7843"]],[26,27,[]]]},{"k":10050,"v":[[0,2,["H559"]],[2,3,["H471"]],[3,5,["H1121"]],[5,7,["H2518"]],[7,9,["H7644"]],[9,11,["H3098"]],[11,12,["H413"]],[12,13,["H7262"]],[13,14,["H1696"]],[14,17,["H4994"]],[17,18,["H413"]],[18,20,["H5650"]],[20,24,["H762"]],[24,25,["H3588"]],[25,26,["H587"]],[26,27,["H8085"]],[27,30,["H1696"]],[30,31,["H408"]],[31,32,["H5973"]],[32,37,["H3066"]],[37,40,["H241"]],[40,43,["H5971"]],[43,44,["H834"]],[44,46,["H5921"]],[46,48,["H2346"]]]},{"k":10051,"v":[[0,2,["H7262"]],[2,3,["H559"]],[3,4,["H413"]],[4,8,["H113"]],[8,9,["H7971"]],[9,11,["H5921"]],[11,13,["H113"]],[13,15,["H413"]],[15,18,["H1696","(H853)"]],[18,19,["H428"]],[19,20,["H1697"]],[20,23,["H3808"]],[23,26,["H5921"]],[26,28,["H376"]],[28,30,["H3427"]],[30,31,["H5921"]],[31,33,["H2346"]],[33,37,["H398","(H853)"]],[37,40,["H2716"]],[40,42,["H8354","(H853)"]],[42,45,["H7890"]],[45,46,["H5973"]],[46,47,[]]]},{"k":10052,"v":[[0,2,["H7262"]],[2,3,["H5975"]],[3,5,["H7121"]],[5,8,["H1419"]],[8,9,["H6963"]],[9,13,["H3066"]],[13,15,["H1696"]],[15,16,["H559"]],[16,17,["H8085"]],[17,19,["H1697"]],[19,22,["H1419"]],[22,23,["H4428"]],[23,25,["H4428"]],[25,27,["H804"]]]},{"k":10053,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H4428"]],[4,6,["H408"]],[6,7,["H2396"]],[7,8,["H5377"]],[8,10,["H3588"]],[10,13,["H3808"]],[13,15,["H3201"]],[15,17,["H5337"]],[17,22,["H4480","H3027"]]]},{"k":10054,"v":[[0,1,["H408"]],[1,3,["H2396"]],[3,6,["H982","H853"]],[6,7,["H413"]],[7,9,["H3068"]],[9,10,["H559"]],[10,12,["H3068"]],[12,15,["H5337","H5337"]],[15,17,["(H853)"]],[17,18,["H2063"]],[18,19,["H5892"]],[19,21,["H3808"]],[21,23,["H5414"]],[23,26,["H3027"]],[26,29,["H4428"]],[29,31,["H804"]]]},{"k":10055,"v":[[0,1,["H8085"]],[1,2,["H408"]],[2,3,["H413"]],[3,4,["H2396"]],[4,5,["H3588"]],[5,6,["H3541"]],[6,7,["H559"]],[7,9,["H4428"]],[9,11,["H804"]],[11,12,["H6213"]],[12,15,["H854"]],[15,19,["H1293"]],[19,22,["H3318"]],[22,23,["H413"]],[23,27,["H398"]],[27,30,["H376"]],[30,34,["H1612"]],[34,37,["H376"]],[37,41,["H8384"]],[41,43,["H8354"]],[43,46,["H376"]],[46,48,["H4325"]],[48,51,["H953"]]]},{"k":10056,"v":[[0,1,["H5704"]],[1,3,["H935"]],[3,7,["H3947","(H853)"]],[7,8,["H413"]],[8,10,["H776"]],[10,14,["H776"]],[14,16,["H776"]],[16,18,["H1715"]],[18,20,["H8492"]],[20,22,["H776"]],[22,24,["H3899"]],[24,26,["H3754"]],[26,28,["H776"]],[28,30,["H3323"]],[30,31,["H2132"]],[31,34,["H1706"]],[34,38,["H2421"]],[38,40,["H3808"]],[40,41,["H4191"]],[41,43,["H8085"]],[43,44,["H408"]],[44,45,["H413"]],[45,46,["H2396"]],[46,47,["H3588"]],[47,49,["H5496"]],[49,51,["H559"]],[51,53,["H3068"]],[53,55,["H5337"]],[55,56,[]]]},{"k":10057,"v":[[0,2,["H376"]],[2,5,["H430"]],[5,8,["H1471"]],[8,11,["H5337","H5337","(H853)"]],[11,13,["H776"]],[13,17,["H4480","H3027"]],[17,20,["H4428"]],[20,22,["H804"]]]},{"k":10058,"v":[[0,1,["H346"]],[1,4,["H430"]],[4,6,["H2574"]],[6,9,["H774"]],[9,10,["H346"]],[10,13,["H430"]],[13,15,["H5617"]],[15,16,["H2012"]],[16,18,["H5755"]],[18,21,["H5337","(H853)"]],[21,22,["H8111"]],[22,26,["H4480","H3027"]]]},{"k":10059,"v":[[0,1,["H4310"]],[1,5,["H3605"]],[5,7,["H430"]],[7,10,["H776"]],[10,11,["H834"]],[11,13,["H5337","(H853)"]],[13,15,["H776"]],[15,19,["H4480","H3027"]],[19,20,["H3588"]],[20,22,["H3068"]],[22,24,["H5337","(H853)"]],[24,25,["H3389"]],[25,29,["H4480","H3027"]]]},{"k":10060,"v":[[0,3,["H5971"]],[3,6,["H2790"]],[6,8,["H6030"]],[8,10,["H3808"]],[10,12,["H1697"]],[12,13,["H3588"]],[13,15,["H4428"]],[15,16,["H4687"]],[16,18,["H559"]],[18,19,["H6030"]],[19,21,["H3808"]]]},{"k":10061,"v":[[0,2,["H935"]],[2,3,["H471"]],[3,5,["H1121"]],[5,7,["H2518"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H1004"]],[12,14,["H7644"]],[14,16,["H5608"]],[16,18,["H3098"]],[18,20,["H1121"]],[20,22,["H623"]],[22,24,["H2142"]],[24,25,["H413"]],[25,26,["H2396"]],[26,29,["H899"]],[29,30,["H7167"]],[30,32,["H5046"]],[32,35,["H1697"]],[35,37,["H7262"]]]},{"k":10062,"v":[[0,5,["H1961"]],[5,7,["H4428"]],[7,8,["H2396"]],[8,9,["H8085"]],[9,13,["H7167","(H853)"]],[13,15,["H899"]],[15,18,["H3680"]],[18,20,["H8242"]],[20,22,["H935"]],[22,25,["H1004"]],[25,28,["H3068"]]]},{"k":10063,"v":[[0,3,["H7971","(H853)"]],[3,4,["H471"]],[4,5,["H834"]],[5,7,["H5921"]],[7,9,["H1004"]],[9,11,["H7644"]],[11,13,["H5608"]],[13,16,["H2205"]],[16,19,["H3548"]],[19,20,["H3680"]],[20,22,["H8242"]],[22,23,["H413"]],[23,24,["H3470"]],[24,26,["H5030"]],[26,28,["H1121"]],[28,30,["H531"]]]},{"k":10064,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3541"]],[6,7,["H559"]],[7,8,["H2396"]],[8,9,["H2088"]],[9,10,["H3117"]],[10,13,["H3117"]],[13,15,["H6869"]],[15,18,["H8433"]],[18,20,["H5007"]],[20,21,["H3588"]],[21,23,["H1121"]],[23,25,["H935"]],[25,26,["H5704"]],[26,28,["H4866"]],[28,32,["H369"]],[32,33,["H3581"]],[33,36,["H3205"]]]},{"k":10065,"v":[[0,3,["H194"]],[3,5,["H3068"]],[5,7,["H430"]],[7,9,["H8085","(H853)"]],[9,10,["H3605"]],[10,12,["H1697"]],[12,14,["H7262"]],[14,15,["H834"]],[15,17,["H4428"]],[17,19,["H804"]],[19,21,["H113"]],[21,23,["H7971"]],[23,25,["H2778"]],[25,27,["H2416"]],[27,28,["H430"]],[28,31,["H3198"]],[31,33,["H1697"]],[33,34,["H834"]],[34,36,["H3068"]],[36,38,["H430"]],[38,40,["H8085"]],[40,43,["H5375"]],[43,45,["H8605"]],[45,46,["H1157"]],[46,48,["H7611"]],[48,51,["H4672"]]]},{"k":10066,"v":[[0,3,["H5650"]],[3,5,["H4428"]],[5,6,["H2396"]],[6,7,["H935"]],[7,8,["H413"]],[8,9,["H3470"]]]},{"k":10067,"v":[[0,2,["H3470"]],[2,3,["H559"]],[3,6,["H3541"]],[6,9,["H559"]],[9,10,["H413"]],[10,12,["H113"]],[12,13,["H3541"]],[13,14,["H559"]],[14,16,["H3068"]],[16,19,["H408","H3372"]],[19,20,["H4480","H6440"]],[20,22,["H1697"]],[22,23,["H834"]],[23,26,["H8085"]],[26,28,["H834"]],[28,30,["H5288"]],[30,33,["H4428"]],[33,35,["H804"]],[35,37,["H1442"]],[37,38,[]]]},{"k":10068,"v":[[0,1,["H2009"]],[1,4,["H5414"]],[4,6,["H7307"]],[6,12,["H8085"]],[12,14,["H8052"]],[14,17,["H7725"]],[17,21,["H776"]],[21,28,["H5307"]],[28,31,["H2719"]],[31,35,["H776"]]]},{"k":10069,"v":[[0,2,["H7262"]],[2,3,["H7725"]],[3,5,["H4672","(H853)"]],[5,7,["H4428"]],[7,9,["H804"]],[9,10,["H3898"]],[10,11,["H5921"]],[11,12,["H3841"]],[12,13,["H3588"]],[13,16,["H8085"]],[16,17,["H3588"]],[17,20,["H5265"]],[20,22,["H4480","H3923"]]]},{"k":10070,"v":[[0,4,["H8085"]],[4,5,["H559"]],[5,6,["H413"]],[6,7,["H8640"]],[7,8,["H4428"]],[8,10,["H3568"]],[10,11,["H2009"]],[11,15,["H3318"]],[15,17,["H3898"]],[17,18,["H854"]],[18,21,["H7971"]],[21,22,["H4397"]],[22,23,["H7725"]],[23,24,["H413"]],[24,25,["H2396"]],[25,26,["H559"]]]},{"k":10071,"v":[[0,1,["H3541"]],[1,4,["H559"]],[4,5,["H413"]],[5,6,["H2396"]],[6,7,["H4428"]],[7,9,["H3063"]],[9,10,["H559"]],[10,12,["H408"]],[12,14,["H430"]],[14,16,["H834"]],[16,17,["H859"]],[17,18,["H982"]],[18,19,["H5377"]],[19,21,["H559"]],[21,22,["H3389"]],[22,24,["H3808"]],[24,26,["H5414"]],[26,29,["H3027"]],[29,32,["H4428"]],[32,34,["H804"]]]},{"k":10072,"v":[[0,1,["H2009"]],[1,2,["H859"]],[2,4,["H8085","(H853)"]],[4,5,["H834"]],[5,7,["H4428"]],[7,9,["H804"]],[9,11,["H6213"]],[11,13,["H3605"]],[13,14,["H776"]],[14,18,["H2763"]],[18,21,["H859"]],[21,23,["H5337"]]]},{"k":10073,"v":[[0,3,["H430"]],[3,6,["H1471"]],[6,7,["H5337"]],[7,9,["H834"]],[9,11,["H1"]],[11,13,["H7843"]],[13,14,["(H853)"]],[14,15,["H1470"]],[15,17,["H2771"]],[17,19,["H7530"]],[19,22,["H1121"]],[22,24,["H5729"]],[24,25,["H834"]],[25,28,["H8515"]]]},{"k":10074,"v":[[0,1,["H346"]],[1,4,["H4428"]],[4,6,["H2574"]],[6,9,["H4428"]],[9,11,["H774"]],[11,14,["H4428"]],[14,17,["H5892"]],[17,19,["H5617"]],[19,21,["H2012"]],[21,23,["H5755"]]]},{"k":10075,"v":[[0,2,["H2396"]],[2,3,["H3947","(H853)"]],[3,5,["H5612"]],[5,8,["H4480","H3027"]],[8,11,["H4397"]],[11,13,["H7121"]],[13,16,["H2396"]],[16,18,["H5927"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,26,["H6566"]],[26,28,["H6440"]],[28,30,["H3068"]]]},{"k":10076,"v":[[0,2,["H2396"]],[2,3,["H6419"]],[3,4,["H6440"]],[4,6,["H3068"]],[6,8,["H559"]],[8,10,["H3068"]],[10,11,["H430"]],[11,13,["H3478"]],[13,15,["H3427"]],[15,18,["H3742"]],[18,19,["H859"]],[19,22,["H430"]],[22,25,["H905"]],[25,27,["H3605"]],[27,29,["H4467"]],[29,32,["H776"]],[32,33,["H859"]],[33,35,["H6213","(H853)"]],[35,36,["H8064"]],[36,38,["H776"]]]},{"k":10077,"v":[[0,1,["H3068"]],[1,3,["H5186"]],[3,5,["H241"]],[5,7,["H8085"]],[7,8,["H6491"]],[8,9,["H3068"]],[9,11,["H5869"]],[11,13,["H7200"]],[13,15,["H8085","(H853)"]],[15,17,["H1697"]],[17,19,["H5576"]],[19,20,["H834"]],[20,22,["H7971"]],[22,25,["H2778"]],[25,27,["H2416"]],[27,28,["H430"]]]},{"k":10078,"v":[[0,3,["H546"]],[3,4,["H3068"]],[4,6,["H4428"]],[6,8,["H804"]],[8,10,["H2717"]],[10,12,["H1471"]],[12,13,["(H853)"]],[13,15,["H776"]]]},{"k":10079,"v":[[0,3,["H5414","(H853)"]],[3,5,["H430"]],[5,8,["H784"]],[8,9,["H3588"]],[9,10,["H1992"]],[10,12,["H3808"]],[12,13,["H430"]],[13,14,["H3588","H518"]],[14,16,["H4639"]],[16,18,["H120"]],[18,19,["H3027"]],[19,20,["H6086"]],[20,22,["H68"]],[22,26,["H6"]],[26,27,[]]]},{"k":10080,"v":[[0,1,["H6258"]],[1,4,["H3068"]],[4,6,["H430"]],[6,9,["H4994"]],[9,10,["H3467"]],[10,16,["H4480","H3027"]],[16,18,["H3605"]],[18,20,["H4467"]],[20,23,["H776"]],[23,25,["H3045"]],[25,26,["H3588"]],[26,27,["H859"]],[27,30,["H3068"]],[30,31,["H430"]],[31,34,["H905"]]]},{"k":10081,"v":[[0,2,["H3470"]],[2,4,["H1121"]],[4,6,["H531"]],[6,7,["H7971"]],[7,8,["H413"]],[8,9,["H2396"]],[9,10,["H559"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H3068"]],[14,15,["H430"]],[15,17,["H3478"]],[17,19,["H834"]],[19,22,["H6419"]],[22,23,["H413"]],[23,25,["H413"]],[25,26,["H5576"]],[26,27,["H4428"]],[27,29,["H804"]],[29,32,["H8085"]]]},{"k":10082,"v":[[0,1,["H2088"]],[1,4,["H1697"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H1696"]],[9,10,["H5921"]],[10,13,["H1330"]],[13,15,["H1323"]],[15,17,["H6726"]],[17,19,["H959"]],[19,25,["H3932"]],[25,27,["H1323"]],[27,29,["H3389"]],[29,31,["H5128"]],[31,33,["H7218"]],[33,34,["H310"]],[34,35,[]]]},{"k":10083,"v":[[0,0,["(H853)"]],[0,1,["H4310"]],[1,4,["H2778"]],[4,6,["H1442"]],[6,8,["H5921"]],[8,9,["H4310"]],[9,12,["H7311"]],[12,14,["H6963"]],[14,17,["H5375"]],[17,19,["H5869"]],[19,21,["H4791"]],[21,23,["H5921"]],[23,25,["H6918"]],[25,28,["H3478"]]]},{"k":10084,"v":[[0,1,["H3027"]],[1,3,["H4397"]],[3,6,["H2778"]],[6,8,["H136"]],[8,11,["H559"]],[11,14,["H7230"]],[14,17,["H7393"]],[17,18,["H589"]],[18,21,["H5927"]],[21,24,["H4791"]],[24,27,["H2022"]],[27,30,["H3411"]],[30,32,["H3844"]],[32,36,["H3772"]],[36,38,["H6967"]],[38,40,["H730"]],[40,44,["H4004"]],[44,46,["H1265"]],[46,51,["H935"]],[51,54,["H4411"]],[54,57,["H7093"]],[57,61,["H3293"]],[61,64,["H3760"]]]},{"k":10085,"v":[[0,1,["H589"]],[1,3,["H6979"]],[3,5,["H8354"]],[5,6,["H2114"]],[6,7,["H4325"]],[7,11,["H3709"]],[11,14,["H6471"]],[14,18,["H2717"]],[18,19,["H3605"]],[19,21,["H2975"]],[21,24,["H4693"]]]},{"k":10086,"v":[[0,3,["H3808"]],[3,4,["H8085"]],[4,6,["H4480","H7350"]],[6,10,["H6213"]],[10,15,["H4480","H3117","H6924"]],[15,19,["H3335"]],[19,21,["H6258"]],[21,27,["H935"]],[27,31,["H1961"]],[31,34,["H7582"]],[34,35,["H1219"]],[35,36,["H5892"]],[36,38,["H5327"]],[38,39,["H1530"]]]},{"k":10087,"v":[[0,3,["H3427"]],[3,6,["H7116"]],[6,7,["H3027"]],[7,10,["H2865"]],[10,12,["H954"]],[12,14,["H1961"]],[14,17,["H6212"]],[17,20,["H7704"]],[20,24,["H3419"]],[24,25,["H1877"]],[25,28,["H2682"]],[28,31,["H1406"]],[31,35,["H7711"]],[35,36,["H6440"]],[36,40,["H7054"]]]},{"k":10088,"v":[[0,3,["H3045"]],[3,5,["H3427"]],[5,9,["H3318"]],[9,13,["H935"]],[13,16,["H7264"]],[16,17,["H413"]],[17,18,[]]]},{"k":10089,"v":[[0,1,["H3282"]],[1,3,["H7264"]],[3,4,["H413"]],[4,8,["H7600"]],[8,11,["H5927"]],[11,14,["H241"]],[14,18,["H7760"]],[18,20,["H2397"]],[20,23,["H639"]],[23,26,["H4964"]],[26,29,["H8193"]],[29,35,["H7725"]],[35,38,["H1870"]],[38,40,["H834"]],[40,42,["H935"]]]},{"k":10090,"v":[[0,2,["H2088"]],[2,6,["H226"]],[6,11,["H398"]],[11,13,["H8141"]],[13,19,["H5599"]],[19,23,["H8145"]],[23,24,["H8141"]],[24,30,["H7823"]],[30,34,["H7992"]],[34,35,["H8141"]],[35,36,["H2232"]],[36,39,["H7114"]],[39,41,["H5193"]],[41,42,["H3754"]],[42,44,["H398"]],[44,46,["H6529"]],[46,47,[]]]},{"k":10091,"v":[[0,3,["H7604"]],[3,6,["H6413"]],[6,9,["H1004"]],[9,11,["H3063"]],[11,14,["H3254"]],[14,16,["H8328"]],[16,17,["H4295"]],[17,19,["H6213"]],[19,20,["H6529"]],[20,21,["H4605"]]]},{"k":10092,"v":[[0,1,["H3588"]],[1,4,["H4480","H3389"]],[4,7,["H3318"]],[7,9,["H7611"]],[9,13,["H6413"]],[13,16,["H4480","H2022"]],[16,17,["H6726"]],[17,19,["H7068"]],[19,22,["H3068"]],[22,26,["H6213"]],[26,27,["H2063"]]]},{"k":10093,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H413"]],[6,8,["H4428"]],[8,10,["H804"]],[10,13,["H3808"]],[13,14,["H935"]],[14,15,["H413"]],[15,16,["H2063"]],[16,17,["H5892"]],[17,18,["H3808"]],[18,19,["H3384"]],[19,21,["H2671"]],[21,22,["H8033"]],[22,23,["H3808"]],[23,25,["H6923"]],[25,28,["H4043"]],[28,29,["H3808"]],[29,30,["H8210"]],[30,32,["H5550"]],[32,33,["H5921"]],[33,34,[]]]},{"k":10094,"v":[[0,3,["H1870"]],[3,4,["H834"]],[4,6,["H935"]],[6,12,["H7725"]],[12,15,["H3808"]],[15,16,["H935"]],[16,17,["H413"]],[17,18,["H2063"]],[18,19,["H5892"]],[19,20,["H5002"]],[20,22,["H3068"]]]},{"k":10095,"v":[[0,4,["H1598","H413"]],[4,5,["H2063"]],[5,6,["H5892"]],[6,8,["H3467"]],[8,13,["H4616"]],[13,17,["H5650"]],[17,18,["H1732"]],[18,19,["H4616"]]]},{"k":10096,"v":[[0,5,["H1961"]],[5,6,["H1931"]],[6,7,["H3915"]],[7,10,["H4397"]],[10,13,["H3068"]],[13,15,["H3318"]],[15,17,["H5221"]],[17,20,["H4264"]],[20,23,["H804"]],[23,25,["H3967"]],[25,26,["H8084"]],[26,28,["H2568"]],[28,29,["H505"]],[29,34,["H7925"]],[34,37,["H1242"]],[37,38,["H2009"]],[38,41,["H3605"]],[41,42,["H4191"]],[42,43,["H6297"]]]},{"k":10097,"v":[[0,2,["H5576"]],[2,3,["H4428"]],[3,5,["H804"]],[5,6,["H5265"]],[6,8,["H1980"]],[8,10,["H7725"]],[10,12,["H3427"]],[12,14,["H5210"]]]},{"k":10098,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,9,["H7812"]],[9,12,["H1004"]],[12,14,["H5268"]],[14,16,["H430"]],[16,18,["H152"]],[18,20,["H8272"]],[20,22,["H1121"]],[22,23,["H5221"]],[23,27,["H2719"]],[27,29,["H1992"]],[29,30,["H4422"]],[30,33,["H776"]],[33,35,["H780"]],[35,37,["H634"]],[37,39,["H1121"]],[39,40,["H4427"]],[40,43,["H8478"]]]},{"k":10099,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,6,["H2470","H2396"]],[6,8,["H4191"]],[8,11,["H5030"]],[11,12,["H3470"]],[12,14,["H1121"]],[14,16,["H531"]],[16,17,["H935"]],[17,18,["H413"]],[18,21,["H559"]],[21,22,["H413"]],[22,24,["H3541"]],[24,25,["H559"]],[25,27,["H3068"]],[27,32,["H6680","H1004"]],[32,33,["H3588"]],[33,34,["H859"]],[34,36,["H4191"]],[36,38,["H3808"]],[38,39,["H2421"]]]},{"k":10100,"v":[[0,3,["H5437","(H853)"]],[3,5,["H6440"]],[5,6,["H413"]],[6,8,["H7023"]],[8,10,["H6419"]],[10,11,["H413"]],[11,13,["H3068"]],[13,14,["H559"]]]},{"k":10101,"v":[[0,3,["H577"]],[3,5,["H3068"]],[5,6,["H2142"]],[6,7,["H4994","(H853)"]],[7,8,["H834"]],[8,11,["H1980"]],[11,12,["H6440"]],[12,15,["H571"]],[15,19,["H8003"]],[19,20,["H3824"]],[20,23,["H6213"]],[23,27,["H2896"]],[27,30,["H5869"]],[30,32,["H2396"]],[32,33,["H1058"]],[33,34,["H1065","H1419"]]]},{"k":10102,"v":[[0,5,["H1961"]],[5,6,["H3808"]],[6,7,["H3470"]],[7,10,["H3318"]],[10,13,["H8484"]],[13,14,["H2691"]],[14,17,["H1697"]],[17,20,["H3068"]],[20,21,["H1961"]],[21,22,["H413"]],[22,24,["H559"]]]},{"k":10103,"v":[[0,2,["H7725"]],[2,4,["H559","H413"]],[4,5,["H2396"]],[5,7,["H5057"]],[7,10,["H5971"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H3068"]],[14,16,["H430"]],[16,18,["H1732"]],[18,20,["H1"]],[20,23,["H8085","(H853)"]],[23,25,["H8605"]],[25,28,["H7200","(H853)"]],[28,30,["H1832"]],[30,31,["H2009"]],[31,34,["H7495"]],[34,38,["H7992"]],[38,39,["H3117"]],[39,43,["H5927"]],[43,46,["H1004"]],[46,49,["H3068"]]]},{"k":10104,"v":[[0,4,["H3254"]],[4,5,["H5921"]],[5,7,["H3117"]],[7,8,["H2568","H6240"]],[8,9,["H8141"]],[9,13,["H5337"]],[13,16,["H2063"]],[16,17,["H5892"]],[17,21,["H4480","H3709"]],[21,24,["H4428"]],[24,26,["H804"]],[26,30,["H1598","H5921"]],[30,31,["H2063"]],[31,32,["H5892"]],[32,36,["H4616"]],[36,40,["H5650"]],[40,41,["H1732"]],[41,42,["H4616"]]]},{"k":10105,"v":[[0,2,["H3470"]],[2,3,["H559"]],[3,4,["H3947"]],[4,6,["H1690"]],[6,8,["H8384"]],[8,11,["H3947"]],[11,13,["H7760"]],[13,15,["H5921"]],[15,17,["H7822"]],[17,20,["H2421"]]]},{"k":10106,"v":[[0,2,["H2396"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3470"]],[5,6,["H4100"]],[6,10,["H226"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,15,["H7495"]],[15,22,["H5927"]],[22,25,["H1004"]],[25,28,["H3068"]],[28,30,["H7992"]],[30,31,["H3117"]]]},{"k":10107,"v":[[0,2,["H3470"]],[2,3,["H559"]],[3,4,["H2088"]],[4,5,["H226"]],[5,9,["H4480","H854"]],[9,11,["H3068"]],[11,12,["H3588"]],[12,14,["H3068"]],[14,16,["H6213","(H853)"]],[16,18,["H1697"]],[18,19,["H834"]],[19,22,["H1696"]],[22,25,["H6738"]],[25,27,["H1980"]],[27,28,["H6235"]],[28,29,["H4609"]],[29,30,["H518"]],[30,32,["H7725"]],[32,33,["H6235"]],[33,34,["H4609"]]]},{"k":10108,"v":[[0,2,["H3169"]],[2,3,["H559"]],[3,8,["H7043"]],[8,11,["H6738"]],[11,14,["H5186"]],[14,15,["H6235"]],[15,16,["H4609"]],[16,17,["H3808"]],[17,18,["H3588"]],[18,21,["H6738"]],[21,22,["H7725"]],[22,23,["H322"]],[23,24,["H6235"]],[24,25,["H4609"]]]},{"k":10109,"v":[[0,2,["H3470"]],[2,4,["H5030"]],[4,5,["H7121"]],[5,6,["H413"]],[6,8,["H3068"]],[8,11,["H7725","(H853)"]],[11,13,["H6738"]],[13,14,["H6235"]],[14,15,["H4609"]],[15,16,["H322"]],[16,18,["H834"]],[18,22,["H3381"]],[22,25,["H4609"]],[25,27,["H271"]]]},{"k":10110,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,4,["H1255"]],[4,6,["H1121"]],[6,8,["H1081"]],[8,9,["H4428"]],[9,11,["H894"]],[11,12,["H7971"]],[12,13,["H5612"]],[13,16,["H4503"]],[16,17,["H413"]],[17,18,["H2396"]],[18,19,["H3588"]],[19,22,["H8085"]],[22,23,["H3588"]],[23,24,["H2396"]],[24,27,["H2470"]]]},{"k":10111,"v":[[0,2,["H2396"]],[2,3,["H8085"]],[3,4,["H5921"]],[4,7,["H7200"]],[7,8,["(H853)"]],[8,9,["H3605"]],[9,11,["H1004"]],[11,15,["H5238","(H853)"]],[15,17,["H3701"]],[17,20,["H2091"]],[20,23,["H1314"]],[23,26,["H2896"]],[26,27,["H8081"]],[27,31,["H1004"]],[31,34,["H3627"]],[34,36,["H3605"]],[36,37,["H834"]],[37,39,["H4672"]],[39,42,["H214"]],[42,44,["H1961"]],[44,45,["H3808","H1697"]],[45,48,["H1004"]],[48,51,["H3605"]],[51,53,["H4475"]],[53,54,["H834"]],[54,55,["H2396"]],[55,56,["H7200"]],[56,58,["H3808"]]]},{"k":10112,"v":[[0,2,["H935"]],[2,3,["H3470"]],[3,5,["H5030"]],[5,6,["H413"]],[6,7,["H4428"]],[7,8,["H2396"]],[8,10,["H559"]],[10,11,["H413"]],[11,13,["H4100"]],[13,14,["H559"]],[14,15,["H428"]],[15,16,["H376"]],[16,19,["H4480","H370"]],[19,20,["H935"]],[20,22,["H413"]],[22,25,["H2396"]],[25,26,["H559"]],[26,29,["H935"]],[29,33,["H4480","H776","H7350"]],[33,36,["H4480","H894"]]]},{"k":10113,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,7,["H7200"]],[7,10,["H1004"]],[10,12,["H2396"]],[12,13,["H559","(H853)"]],[13,14,["H3605"]],[14,17,["H834"]],[17,21,["H1004"]],[21,24,["H7200"]],[24,26,["H1961"]],[26,27,["H3808","H1697"]],[27,30,["H214"]],[30,31,["H834"]],[31,34,["H3808"]],[34,35,["H7200"]],[35,36,[]]]},{"k":10114,"v":[[0,2,["H3470"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H2396"]],[5,6,["H8085"]],[6,8,["H1697"]],[8,11,["H3068"]]]},{"k":10115,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,6,["H3605"]],[6,7,["H834"]],[7,11,["H1004"]],[11,14,["H834"]],[14,16,["H1"]],[16,21,["H686"]],[21,22,["H5704"]],[22,23,["H2088"]],[23,24,["H3117"]],[24,27,["H5375"]],[27,29,["H894"]],[29,30,["H3808","H1697"]],[30,33,["H3498"]],[33,34,["H559"]],[34,36,["H3068"]]]},{"k":10116,"v":[[0,4,["H4480","H1121"]],[4,5,["H834"]],[5,7,["H3318"]],[7,8,["H4480"]],[8,10,["H834"]],[10,13,["H3205"]],[13,17,["H3947"]],[17,21,["H1961"]],[21,22,["H5631"]],[22,25,["H1964"]],[25,28,["H4428"]],[28,30,["H894"]]]},{"k":10117,"v":[[0,2,["H559"]],[2,3,["H2396"]],[3,4,["H413"]],[4,5,["H3470"]],[5,6,["H2896"]],[6,9,["H1697"]],[9,12,["H3068"]],[12,13,["H834"]],[13,16,["H1696"]],[16,19,["H559"]],[19,22,["H3808"]],[22,24,["H518"]],[24,25,["H7965"]],[25,27,["H571"]],[27,28,["H1961"]],[28,31,["H3117"]]]},{"k":10118,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H2396"]],[8,10,["H3605"]],[10,12,["H1369"]],[12,14,["H834"]],[14,16,["H6213","(H853)"]],[16,18,["H1295"]],[18,21,["H8585"]],[21,23,["H935","(H853)"]],[23,24,["H4325"]],[24,27,["H5892"]],[27,29,["H1992"]],[29,30,["H3808"]],[30,31,["H3789"]],[31,32,["H5921"]],[32,34,["H5612"]],[34,37,["H1697","H3117"]],[37,40,["H4428"]],[40,42,["H3063"]]]},{"k":10119,"v":[[0,2,["H2396"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,8,["H4519"]],[8,10,["H1121"]],[10,11,["H4427"]],[11,14,["H8478"]]]},{"k":10120,"v":[[0,1,["H4519"]],[1,3,["H8147","H6240"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,10,["H4427"]],[10,12,["H4427"]],[12,13,["H2572"]],[13,15,["H2568"]],[15,16,["H8141"]],[16,18,["H3389"]],[18,21,["H517"]],[21,22,["H8034"]],[22,24,["H2657"]]]},{"k":10121,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H8441"]],[16,19,["H1471"]],[19,20,["H834"]],[20,22,["H3068"]],[22,24,["H3423"]],[24,25,["H4480","H6440"]],[25,27,["H1121"]],[27,29,["H3478"]]]},{"k":10122,"v":[[0,4,["H1129"]],[4,5,["H7725","(H853)"]],[5,8,["H1116"]],[8,9,["H834"]],[9,10,["H2396"]],[10,12,["H1"]],[12,14,["H6"]],[14,18,["H6965"]],[18,19,["H4196"]],[19,21,["H1168"]],[21,23,["H6213"]],[23,25,["H842"]],[25,26,["H834"]],[26,27,["H6213"]],[27,28,["H256"]],[28,29,["H4428"]],[29,31,["H3478"]],[31,33,["H7812"]],[33,34,["H3605"]],[34,36,["H6635"]],[36,38,["H8064"]],[38,40,["H5647"]],[40,41,[]]]},{"k":10123,"v":[[0,3,["H1129"]],[3,4,["H4196"]],[4,7,["H1004"]],[7,10,["H3068"]],[10,12,["H834"]],[12,14,["H3068"]],[14,15,["H559"]],[15,17,["H3389"]],[17,20,["H7760","(H853)"]],[20,22,["H8034"]]]},{"k":10124,"v":[[0,3,["H1129"]],[3,4,["H4196"]],[4,6,["H3605"]],[6,8,["H6635"]],[8,10,["H8064"]],[10,13,["H8147"]],[13,14,["H2691"]],[14,17,["H1004"]],[17,20,["H3068"]]]},{"k":10125,"v":[[0,3,["(H853)"]],[3,5,["H1121"]],[5,7,["H5674"]],[7,9,["H784"]],[9,12,["H6049"]],[12,15,["H5172"]],[15,17,["H6213"]],[17,20,["H178"]],[20,22,["H3049"]],[22,24,["H6213"]],[24,25,["H7235"]],[25,26,["H7451"]],[26,29,["H5869"]],[29,32,["H3068"]],[32,37,["H3707"]]]},{"k":10126,"v":[[0,3,["H7760","(H853)"]],[3,6,["H6459"]],[6,9,["H842"]],[9,10,["H834"]],[10,13,["H6213"]],[13,16,["H1004"]],[16,18,["H834"]],[18,20,["H3068"]],[20,21,["H559"]],[21,22,["H413"]],[22,23,["H1732"]],[23,25,["H413"]],[25,26,["H8010"]],[26,28,["H1121"]],[28,30,["H2088"]],[30,31,["H1004"]],[31,34,["H3389"]],[34,35,["H834"]],[35,38,["H977"]],[38,41,["H4480","H3605"]],[41,42,["H7626"]],[42,44,["H3478"]],[44,47,["H7760","(H853)"]],[47,49,["H8034"]],[49,51,["H5769"]]]},{"k":10127,"v":[[0,1,["H3808"]],[1,6,["H7272"]],[6,8,["H3478"]],[8,9,["H5110"]],[9,11,["H3254"]],[11,13,["H4480"]],[13,15,["H127"]],[15,16,["H834"]],[16,18,["H5414"]],[18,20,["H1"]],[20,21,["H7535"]],[21,22,["H518"]],[22,25,["H8104"]],[25,27,["H6213"]],[27,30,["H3605"]],[30,31,["H834"]],[31,34,["H6680"]],[34,39,["H3605"]],[39,41,["H8451"]],[41,42,["H834"]],[42,44,["H5650"]],[44,45,["H4872"]],[45,46,["H6680"]],[46,47,[]]]},{"k":10128,"v":[[0,3,["H8085"]],[3,4,["H3808"]],[4,6,["H4519"]],[6,7,["H8582"]],[7,10,["H6213","(H853)"]],[10,12,["H7451"]],[12,13,["H4480"]],[13,16,["H1471"]],[16,17,["H834"]],[17,19,["H3068"]],[19,20,["H8045"]],[20,21,["H4480","H6440"]],[21,23,["H1121"]],[23,25,["H3478"]]]},{"k":10129,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H3027"]],[5,7,["H5650"]],[7,9,["H5030"]],[9,10,["H559"]]]},{"k":10130,"v":[[0,1,["H3282","H834"]],[1,2,["H4519"]],[2,3,["H4428"]],[3,5,["H3063"]],[5,7,["H6213"]],[7,8,["H428"]],[8,9,["H8441"]],[9,13,["H7489"]],[13,15,["H4480","H3605"]],[15,16,["H834"]],[16,18,["H567"]],[18,19,["H6213"]],[19,20,["H834"]],[20,22,["H6440"]],[22,26,["(H853)"]],[26,27,["H3063"]],[27,28,["H1571"]],[28,30,["H2398"]],[30,33,["H1544"]]]},{"k":10131,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H430"]],[6,8,["H3478"]],[8,9,["H2009"]],[9,12,["H935"]],[12,14,["H7451"]],[14,15,["H5921"]],[15,16,["H3389"]],[16,18,["H3063"]],[18,19,["H834"]],[19,20,["H3605"]],[20,21,["H8085"]],[21,24,["H8147"]],[24,26,["H241"]],[26,28,["H6750"]]]},{"k":10132,"v":[[0,4,["H5186"]],[4,5,["H5921"]],[5,6,["H3389","(H853)"]],[6,8,["H6957"]],[8,10,["H8111"]],[10,13,["H4949"]],[13,16,["H1004"]],[16,18,["H256"]],[18,22,["H4229","(H853)"]],[22,23,["H3389"]],[23,24,["H834"]],[24,27,["H4229","(H853)"]],[27,29,["H6747"]],[29,30,["H4229"]],[30,33,["H2015"]],[33,36,["H5921","H6440"]]]},{"k":10133,"v":[[0,4,["H5203","(H853)"]],[4,6,["H7611"]],[6,9,["H5159"]],[9,11,["H5414"]],[11,15,["H3027"]],[15,18,["H341"]],[18,22,["H1961"]],[22,24,["H957"]],[24,27,["H4933"]],[27,29,["H3605"]],[29,31,["H341"]]]},{"k":10134,"v":[[0,1,["H3282","H834"]],[1,4,["H6213"]],[4,7,["(H853)"]],[7,8,["H7451"]],[8,11,["H5869"]],[11,13,["H1961"]],[13,17,["H3707","(H853)"]],[17,18,["H4480"]],[18,20,["H3117"]],[20,22,["H1"]],[22,24,["H3318"]],[24,27,["H4480","H4714"]],[27,29,["H5704"]],[29,30,["H2088"]],[30,31,["H3117"]]]},{"k":10135,"v":[[0,1,["H1571"]],[1,2,["H4519"]],[2,3,["H8210"]],[3,4,["H5355"]],[4,5,["H1818"]],[5,6,["H3966"]],[6,7,["H7235"]],[7,8,["H5704","H834"]],[8,11,["H4390","(H853)"]],[11,12,["H3389"]],[12,15,["H6310"]],[15,17,["H6310"]],[17,20,["H905","H4480","H2403"]],[20,21,["H834"]],[21,26,["H2398","(H853)","H3063"]],[26,28,["H6213"]],[28,32,["H7451"]],[32,35,["H5869"]],[35,38,["H3068"]]]},{"k":10136,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H4519"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,16,["H2403"]],[16,17,["H834"]],[17,19,["H2398"]],[19,21,["H1992"]],[21,22,["H3808"]],[22,23,["H3789"]],[23,24,["H5921"]],[24,26,["H5612"]],[26,29,["H1697","H3117"]],[29,32,["H4428"]],[32,34,["H3063"]]]},{"k":10137,"v":[[0,2,["H4519"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,12,["H1588"]],[12,16,["H1004"]],[16,19,["H1588"]],[19,21,["H5798"]],[21,23,["H526"]],[23,25,["H1121"]],[25,26,["H4427"]],[26,29,["H8478"]]]},{"k":10138,"v":[[0,1,["H526"]],[1,3,["H6242"]],[3,5,["H8147"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H8147"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,22,["H517"]],[22,23,["H8034"]],[23,25,["H4922"]],[25,27,["H1323"]],[27,29,["H2743"]],[29,30,["H4480"]],[30,31,["H3192"]]]},{"k":10139,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,14,["H834"]],[14,16,["H1"]],[16,17,["H4519"]],[17,18,["H6213"]]]},{"k":10140,"v":[[0,3,["H1980"]],[3,5,["H3605"]],[5,7,["H1870"]],[7,8,["H834"]],[8,10,["H1"]],[10,12,["H1980"]],[12,14,["H5647","(H853)"]],[14,16,["H1544"]],[16,17,["H834"]],[17,19,["H1"]],[19,20,["H5647"]],[20,22,["H7812"]],[22,23,[]]]},{"k":10141,"v":[[0,3,["H5800","(H853)"]],[3,5,["H3068"]],[5,6,["H430"]],[6,9,["H1"]],[9,11,["H1980"]],[11,12,["H3808"]],[12,15,["H1870"]],[15,18,["H3068"]]]},{"k":10142,"v":[[0,3,["H5650"]],[3,5,["H526"]],[5,6,["H7194"]],[6,7,["H5921"]],[7,10,["H4191","(H853)"]],[10,12,["H4428"]],[12,16,["H1004"]]]},{"k":10143,"v":[[0,3,["H5971"]],[3,6,["H776"]],[6,7,["H5221","(H853)"]],[7,8,["H3605"]],[8,12,["H7194"]],[12,13,["H5921"]],[13,14,["H4428"]],[14,15,["H526"]],[15,18,["H5971"]],[18,21,["H776"]],[21,22,["(H853)"]],[22,23,["H2977"]],[23,25,["H1121"]],[25,26,["H4427"]],[26,29,["H8478"]]]},{"k":10144,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H526"]],[8,9,["H834"]],[9,11,["H6213"]],[11,13,["H1992"]],[13,14,["H3808"]],[14,15,["H3789"]],[15,16,["H5921"]],[16,18,["H5612"]],[18,21,["H1697","H3117"]],[21,24,["H4428"]],[24,26,["H3063"]]]},{"k":10145,"v":[[0,4,["H6912"]],[4,7,["H6900"]],[7,10,["H1588"]],[10,12,["H5798"]],[12,14,["H2977"]],[14,16,["H1121"]],[16,17,["H4427"]],[17,20,["H8478"]]]},{"k":10146,"v":[[0,1,["H2977"]],[1,3,["H8083"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,10,["H4427"]],[10,13,["H4427"]],[13,14,["H7970"]],[14,16,["H259"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,22,["H517"]],[22,23,["H8034"]],[23,25,["H3040"]],[25,27,["H1323"]],[27,29,["H5718"]],[29,31,["H4480","H1218"]]]},{"k":10147,"v":[[0,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H1980"]],[15,17,["H3605"]],[17,19,["H1870"]],[19,21,["H1732"]],[21,23,["H1"]],[23,27,["H3808","H5493"]],[27,31,["H3225"]],[31,35,["H8040"]]]},{"k":10148,"v":[[0,5,["H1961"]],[5,8,["H8083","H6240"]],[8,9,["H8141"]],[9,11,["H4428"]],[11,12,["H2977"]],[12,15,["H4428"]],[15,16,["H7971","(H853)"]],[16,17,["H8227"]],[17,19,["H1121"]],[19,21,["H683"]],[21,23,["H1121"]],[23,25,["H4918"]],[25,27,["H5608"]],[27,30,["H1004"]],[30,33,["H3068"]],[33,34,["H559"]]]},{"k":10149,"v":[[0,2,["H5927"]],[2,3,["H413"]],[3,4,["H2518"]],[4,6,["H1419"]],[6,7,["H3548"]],[7,11,["H8552","(H853)"]],[11,13,["H3701"]],[13,16,["H935"]],[16,19,["H1004"]],[19,22,["H3068"]],[22,23,["H834"]],[23,25,["H8104"]],[25,28,["H5592"]],[28,30,["H622"]],[30,31,["H4480","H854"]],[31,33,["H5971"]]]},{"k":10150,"v":[[0,4,["H5414"]],[4,6,["H5921"]],[6,8,["H3027"]],[8,11,["H6213"]],[11,14,["H4399"]],[14,18,["H6485"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,28,["H5414"]],[28,32,["H6213"]],[32,35,["H4399"]],[35,36,["H834"]],[36,40,["H1004"]],[40,43,["H3068"]],[43,45,["H2388"]],[45,47,["H919"]],[47,50,["H1004"]]]},{"k":10151,"v":[[0,2,["H2796"]],[2,4,["H1129"]],[4,6,["H1443"]],[6,9,["H7069"]],[9,10,["H6086"]],[10,12,["H4274"]],[12,13,["H68"]],[13,15,["H2388","(H853)"]],[15,17,["H1004"]]]},{"k":10152,"v":[[0,1,["H389"]],[1,4,["H3808"]],[4,5,["H2803"]],[5,7,["H854"]],[7,11,["H3701"]],[11,14,["H5414"]],[14,15,["H5921"]],[15,17,["H3027"]],[17,18,["H3588"]],[18,19,["H1992"]],[19,20,["H6213"]],[20,21,["H530"]]]},{"k":10153,"v":[[0,2,["H2518"]],[2,4,["H1419"]],[4,5,["H3548"]],[5,6,["H559"]],[6,7,["H5921"]],[7,8,["H8227"]],[8,10,["H5608"]],[10,13,["H4672"]],[13,15,["H5612"]],[15,18,["H8451"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,26,["H2518"]],[26,27,["H5414","(H853)"]],[27,29,["H5612"]],[29,30,["H413"]],[30,31,["H8227"]],[31,34,["H7121"]],[34,35,[]]]},{"k":10154,"v":[[0,2,["H8227"]],[2,4,["H5608"]],[4,5,["H935"]],[5,6,["H413"]],[6,8,["H4428"]],[8,14,["H7725","(H853)","H4428","H1697"]],[14,16,["H559"]],[16,18,["H5650"]],[18,20,["H5413","(H853)"]],[20,22,["H3701"]],[22,25,["H4672"]],[25,28,["H1004"]],[28,31,["H5414"]],[31,33,["H5921"]],[33,35,["H3027"]],[35,39,["H6213"]],[39,41,["H4399"]],[41,45,["H6485"]],[45,48,["H1004"]],[48,51,["H3068"]]]},{"k":10155,"v":[[0,2,["H8227"]],[2,4,["H5608"]],[4,5,["H5046"]],[5,7,["H4428"]],[7,8,["H559"]],[8,9,["H2518"]],[9,11,["H3548"]],[11,13,["H5414"]],[13,16,["H5612"]],[16,18,["H8227"]],[18,19,["H7121"]],[19,21,["H6440"]],[21,23,["H4428"]]]},{"k":10156,"v":[[0,5,["H1961"]],[5,8,["H4428"]],[8,10,["H8085","(H853)"]],[10,12,["H1697"]],[12,15,["H5612"]],[15,18,["H8451"]],[18,21,["H7167","(H853)"]],[21,23,["H899"]]]},{"k":10157,"v":[[0,3,["H4428"]],[3,4,["H6680","(H853)"]],[4,5,["H2518"]],[5,7,["H3548"]],[7,9,["H296"]],[9,11,["H1121"]],[11,13,["H8227"]],[13,15,["H5907"]],[15,17,["H1121"]],[17,19,["H4320"]],[19,21,["H8227"]],[21,23,["H5608"]],[23,25,["H6222"]],[25,27,["H5650"]],[27,30,["H4428"]],[30,31,["H559"]]]},{"k":10158,"v":[[0,1,["H1980"]],[1,3,["H1875"]],[3,4,["(H853)"]],[4,6,["H3068"]],[6,7,["H1157"]],[7,10,["H1157"]],[10,12,["H5971"]],[12,14,["H1157"]],[14,15,["H3605"]],[15,16,["H3063"]],[16,17,["H5921"]],[17,19,["H1697"]],[19,21,["H2088"]],[21,22,["H5612"]],[22,25,["H4672"]],[25,26,["H3588"]],[26,27,["H1419"]],[27,30,["H2534"]],[30,33,["H3068"]],[33,34,["H834"]],[34,36,["H3341"]],[36,39,["H5921","H834"]],[39,41,["H1"]],[41,43,["H3808"]],[43,44,["H8085"]],[44,45,["H5921"]],[45,47,["H1697"]],[47,49,["H2088"]],[49,50,["H5612"]],[50,52,["H6213"]],[52,55,["H3605"]],[55,59,["H3789"]],[59,60,["H5921"]],[60,61,[]]]},{"k":10159,"v":[[0,2,["H2518"]],[2,4,["H3548"]],[4,6,["H296"]],[6,8,["H5907"]],[8,10,["H8227"]],[10,12,["H6222"]],[12,13,["H1980"]],[13,14,["H413"]],[14,15,["H2468"]],[15,17,["H5031"]],[17,19,["H802"]],[19,21,["H7967"]],[21,23,["H1121"]],[23,25,["H8616"]],[25,27,["H1121"]],[27,29,["H2745"]],[29,30,["H8104"]],[30,33,["H899"]],[33,35,["H1931"]],[35,36,["H3427"]],[36,38,["H3389"]],[38,41,["H4932"]],[41,44,["H1696"]],[44,45,["H413"]],[45,46,[]]]},{"k":10160,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,10,["H430"]],[10,12,["H3478"]],[12,13,["H559"]],[13,15,["H376"]],[15,16,["H834"]],[16,17,["H7971"]],[17,19,["H413"]],[19,20,[]]]},{"k":10161,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H2009"]],[5,8,["H935"]],[8,9,["H7451"]],[9,10,["H413"]],[10,11,["H2088"]],[11,12,["H4725"]],[12,14,["H5921"]],[14,16,["H3427"]],[16,18,["(H853)"]],[18,19,["H3605"]],[19,21,["H1697"]],[21,24,["H5612"]],[24,25,["H834"]],[25,27,["H4428"]],[27,29,["H3063"]],[29,31,["H7121"]]]},{"k":10162,"v":[[0,1,["H8478","H834"]],[1,4,["H5800"]],[4,9,["H6999"]],[9,11,["H312"]],[11,12,["H430"]],[12,13,["H4616"]],[13,19,["H3707"]],[19,21,["H3605"]],[21,23,["H4639"]],[23,26,["H3027"]],[26,29,["H2534"]],[29,32,["H3341"]],[32,34,["H2088"]],[34,35,["H4725"]],[35,38,["H3808"]],[38,40,["H3518"]]]},{"k":10163,"v":[[0,2,["H413"]],[2,4,["H4428"]],[4,6,["H3063"]],[6,8,["H7971"]],[8,11,["H1875"]],[11,12,["(H853)"]],[12,14,["H3068"]],[14,15,["H3541"]],[15,18,["H559"]],[18,19,["H413"]],[19,21,["H3541"]],[21,22,["H559"]],[22,24,["H3068"]],[24,25,["H430"]],[25,27,["H3478"]],[27,31,["H1697"]],[31,32,["H834"]],[32,35,["H8085"]]]},{"k":10164,"v":[[0,1,["H3282"]],[1,3,["H3824"]],[3,5,["H7401"]],[5,10,["H3665"]],[10,11,["H4480","H6440"]],[11,13,["H3068"]],[13,16,["H8085"]],[16,17,["H834"]],[17,19,["H1696"]],[19,20,["H5921"]],[20,21,["H2088"]],[21,22,["H4725"]],[22,24,["H5921"]],[24,26,["H3427"]],[26,31,["H1961"]],[31,33,["H8047"]],[33,36,["H7045"]],[36,39,["H7167","(H853)"]],[39,41,["H899"]],[41,43,["H1058"]],[43,44,["H6440"]],[44,46,["H595"]],[46,47,["H1571"]],[47,49,["H8085"]],[49,51,["H5002"]],[51,53,["H3068"]]]},{"k":10165,"v":[[0,1,["H2009"]],[1,2,["H3651"]],[2,5,["H622"]],[5,7,["H5921"]],[7,9,["H1"]],[9,14,["H622"]],[14,15,["H413"]],[15,17,["H6913"]],[17,19,["H7965"]],[19,22,["H5869"]],[22,24,["H3808"]],[24,25,["H7200"]],[25,26,["H3605"]],[26,28,["H7451"]],[28,29,["H834"]],[29,30,["H589"]],[30,32,["H935"]],[32,33,["H5921"]],[33,34,["H2088"]],[34,35,["H4725"]],[35,38,["H7725","(H853)"]],[38,40,["H4428"]],[40,41,["H1697"]],[41,42,[]]]},{"k":10166,"v":[[0,3,["H4428"]],[3,4,["H7971"]],[4,7,["H622"]],[7,8,["H413"]],[8,10,["H3605"]],[10,12,["H2205"]],[12,14,["H3063"]],[14,17,["H3389"]]]},{"k":10167,"v":[[0,3,["H4428"]],[3,5,["H5927"]],[5,8,["H1004"]],[8,11,["H3068"]],[11,13,["H3605"]],[13,15,["H376"]],[15,17,["H3063"]],[17,19,["H3605"]],[19,21,["H3427"]],[21,23,["H3389"]],[23,24,["H854"]],[24,28,["H3548"]],[28,31,["H5030"]],[31,33,["H3605"]],[33,35,["H5971"]],[35,37,["H4480","H6996"]],[37,39,["H1419"]],[39,42,["H7121"]],[42,45,["H241","(H853)"]],[45,46,["H3605"]],[46,48,["H1697"]],[48,51,["H5612"]],[51,54,["H1285"]],[54,57,["H4672"]],[57,60,["H1004"]],[60,63,["H3068"]]]},{"k":10168,"v":[[0,3,["H4428"]],[3,4,["H5975"]],[4,5,["H5921"]],[5,7,["H5982"]],[7,9,["H3772","(H853)"]],[9,11,["H1285"]],[11,12,["H6440"]],[12,14,["H3068"]],[14,16,["H1980"]],[16,17,["H310"]],[17,19,["H3068"]],[19,22,["H8104"]],[22,24,["H4687"]],[24,27,["H5715"]],[27,30,["H2708"]],[30,32,["H3605"]],[32,34,["H3820"]],[34,36,["H3605"]],[36,38,["H5315"]],[38,40,["H6965","(H853)"]],[40,42,["H1697"]],[42,44,["H2063"]],[44,45,["H1285"]],[45,48,["H3789"]],[48,49,["H5921"]],[49,50,["H2088"]],[50,51,["H5612"]],[51,53,["H3605"]],[53,55,["H5971"]],[55,56,["H5975"]],[56,59,["H1285"]]]},{"k":10169,"v":[[0,3,["H4428"]],[3,4,["H6680","(H853)"]],[4,5,["H2518"]],[5,7,["H1419"]],[7,8,["H3548"]],[8,11,["H3548"]],[11,15,["H4932"]],[15,18,["H8104"]],[18,21,["H5592"]],[21,24,["H3318"]],[24,28,["H4480","H1964"]],[28,31,["H3068","(H853)"]],[31,32,["H3605"]],[32,34,["H3627"]],[34,37,["H6213"]],[37,39,["H1168"]],[39,43,["H842"]],[43,46,["H3605"]],[46,48,["H6635"]],[48,50,["H8064"]],[50,53,["H8313"]],[53,55,["H4480","H2351"]],[55,56,["H3389"]],[56,59,["H7709"]],[59,61,["H6939"]],[61,63,["H5375","(H853)"]],[63,65,["H6083"]],[65,69,["H1008"]]]},{"k":10170,"v":[[0,4,["H7673","(H853)"]],[4,7,["H3649"]],[7,8,["H834"]],[8,10,["H4428"]],[10,12,["H3063"]],[12,14,["H5414"]],[14,17,["H6999"]],[17,21,["H1116"]],[21,24,["H5892"]],[24,26,["H3063"]],[26,32,["H4524"]],[32,33,["H3389"]],[33,38,["H6999"]],[38,40,["H1168"]],[40,43,["H8121"]],[43,47,["H3394"]],[47,51,["H4208"]],[51,54,["H3605"]],[54,56,["H6635"]],[56,58,["H8064"]]]},{"k":10171,"v":[[0,4,["H3318","(H853)"]],[4,6,["H842"]],[6,9,["H4480","H1004"]],[9,12,["H3068"]],[12,13,["H4480","H2351"]],[13,14,["H3389"]],[14,15,["H413"]],[15,17,["H5158"]],[17,18,["H6939"]],[18,20,["H8313"]],[20,24,["H5158"]],[24,25,["H6939"]],[25,29,["H1854"]],[29,31,["H6083"]],[31,33,["H7993","(H853)"]],[33,35,["H6083"]],[35,37,["H5921"]],[37,39,["H6913"]],[39,42,["H1121"]],[42,45,["H5971"]]]},{"k":10172,"v":[[0,4,["H5422","(H853)"]],[4,6,["H1004"]],[6,9,["H6945"]],[9,10,["H834"]],[10,14,["H1004"]],[14,17,["H3068"]],[17,18,["H834","H8033"]],[18,20,["H802"]],[20,21,["H707"]],[21,22,["H1004"]],[22,25,["H842"]]]},{"k":10173,"v":[[0,3,["H935","(H853)"]],[3,4,["H3605"]],[4,6,["H3548"]],[6,10,["H4480","H5892"]],[10,12,["H3063"]],[12,14,["H2930","(H853)"]],[14,17,["H1116"]],[17,18,["H834","H8033"]],[18,20,["H3548"]],[20,23,["H6999"]],[23,25,["H4480","H1387"]],[25,26,["H5704"]],[26,27,["H884"]],[27,30,["H5422","(H853)"]],[30,33,["H1116"]],[33,36,["H8179"]],[36,37,["H834"]],[37,42,["H6607"]],[42,45,["H8179"]],[45,47,["H3091"]],[47,49,["H8269"]],[49,52,["H5892"]],[52,53,["H834"]],[53,55,["H5921"]],[55,57,["H376"]],[57,59,["H8040"]],[59,62,["H8179"]],[62,65,["H5892"]]]},{"k":10174,"v":[[0,1,["H389"]],[1,3,["H3548"]],[3,7,["H1116"]],[7,10,["H5927","H3808"]],[10,11,["H413"]],[11,13,["H4196"]],[13,16,["H3068"]],[16,18,["H3389"]],[18,19,["H3588","H518"]],[19,22,["H398"]],[22,26,["H4682"]],[26,27,["H8432"]],[27,29,["H251"]]]},{"k":10175,"v":[[0,3,["H2930","(H853)"]],[3,4,["H8612"]],[4,5,["H834"]],[5,9,["H1516"]],[9,12,["H1121"]],[12,14,["H2011"]],[14,16,["H1115"]],[16,17,["H376"]],[17,19,["(H853)"]],[19,21,["H1121"]],[21,24,["H1323"]],[24,27,["H5674"]],[27,29,["H784"]],[29,31,["H4432"]]]},{"k":10176,"v":[[0,4,["H7673","(H853)"]],[4,6,["H5483"]],[6,7,["H834"]],[7,9,["H4428"]],[9,11,["H3063"]],[11,13,["H5414"]],[13,16,["H8121"]],[16,20,["H4480","H935"]],[20,23,["H1004"]],[23,26,["H3068"]],[26,27,["H413"]],[27,29,["H3957"]],[29,31,["H5419"]],[31,33,["H5631"]],[33,34,["H834"]],[34,38,["H6503"]],[38,40,["H8313"]],[40,42,["H4818"]],[42,45,["H8121"]],[45,47,["H784"]]]},{"k":10177,"v":[[0,3,["H4196"]],[3,4,["H834"]],[4,6,["H5921"]],[6,8,["H1406"]],[8,12,["H5944"]],[12,14,["H271"]],[14,15,["H834"]],[15,17,["H4428"]],[17,19,["H3063"]],[19,21,["H6213"]],[21,24,["H4196"]],[24,25,["H834"]],[25,26,["H4519"]],[26,28,["H6213"]],[28,31,["H8147"]],[31,32,["H2691"]],[32,35,["H1004"]],[35,38,["H3068"]],[38,41,["H4428"]],[41,43,["H5422"]],[43,47,["H7323"]],[47,49,["H4480","H8033"]],[49,51,["H7993","(H853)"]],[51,53,["H6083"]],[53,56,["H413"]],[56,58,["H5158"]],[58,59,["H6939"]]]},{"k":10178,"v":[[0,4,["H1116"]],[4,5,["H834"]],[5,7,["H5921","H6440"]],[7,8,["H3389"]],[8,9,["H834"]],[9,14,["H4480","H3225"]],[14,17,["H2022"]],[17,19,["H4889"]],[19,20,["H834"]],[20,21,["H8010"]],[21,23,["H4428"]],[23,25,["H3478"]],[25,27,["H1129"]],[27,29,["H6253"]],[29,31,["H8251"]],[31,34,["H6722"]],[34,37,["H3645"]],[37,39,["H8251"]],[39,42,["H4124"]],[42,45,["H4445"]],[45,47,["H8441"]],[47,50,["H1121"]],[50,52,["H5983"]],[52,55,["H4428"]],[55,56,["H2930"]]]},{"k":10179,"v":[[0,5,["H7665","(H853)"]],[5,7,["H4676"]],[7,10,["H3772","(H853)"]],[10,12,["H842"]],[12,14,["H4390","(H853)"]],[14,16,["H4725"]],[16,19,["H6106"]],[19,21,["H120"]]]},{"k":10180,"v":[[0,1,["H1571","(H853)"]],[1,3,["H4196"]],[3,4,["H834"]],[4,7,["H1008"]],[7,11,["H1116"]],[11,12,["H834"]],[12,13,["H3379"]],[13,15,["H1121"]],[15,17,["H5028"]],[17,18,["H834"]],[18,19,["(H853)"]],[19,20,["H3478"]],[20,22,["H2398"]],[22,24,["H6213"]],[24,25,["H1571","(H853)"]],[25,26,["H1931"]],[26,27,["H4196"]],[27,31,["H1116"]],[31,34,["H5422"]],[34,36,["H8313","(H853)"]],[36,39,["H1116"]],[39,43,["H1854"]],[43,45,["H6083"]],[45,47,["H8313"]],[47,49,["H842"]]]},{"k":10181,"v":[[0,3,["H2977"]],[3,4,["H6437"]],[4,7,["H7200","(H853)"]],[7,9,["H6913"]],[9,10,["H834"]],[10,12,["H8033"]],[12,15,["H2022"]],[15,17,["H7971"]],[17,19,["H3947","(H853)"]],[19,21,["H6106"]],[21,23,["H4480"]],[23,25,["H6913"]],[25,27,["H8313"]],[27,29,["H5921"]],[29,31,["H4196"]],[31,33,["H2930"]],[33,38,["H1697"]],[38,41,["H3068"]],[41,42,["H834"]],[42,44,["H376"]],[44,46,["H430"]],[46,47,["H7121"]],[47,48,["H834"]],[48,49,["H7121","(H853)"]],[49,50,["H428"]],[50,51,["H1697"]]]},{"k":10182,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,5,["H6725"]],[5,7,["H1975"]],[7,8,["H834"]],[8,9,["H589"]],[9,10,["H7200"]],[10,13,["H376"]],[13,16,["H5892"]],[16,17,["H559","H413"]],[17,22,["H6913"]],[22,25,["H376"]],[25,27,["H430"]],[27,28,["H834"]],[28,29,["H935"]],[29,31,["H4480","H3063"]],[31,33,["H7121","(H853)"]],[33,34,["H428"]],[34,35,["H1697"]],[35,36,["H834"]],[36,39,["H6213"]],[39,40,["H5921"]],[40,42,["H4196"]],[42,44,["H1008"]]]},{"k":10183,"v":[[0,3,["H559"]],[3,6,["H5117"]],[6,8,["H408"]],[8,9,["H376"]],[9,10,["H5128"]],[10,12,["H6106"]],[12,18,["H4422","H6106"]],[18,19,["H854"]],[19,21,["H6106"]],[21,24,["H5030"]],[24,25,["H834"]],[25,26,["H935"]],[26,29,["H4480","H8111"]]]},{"k":10184,"v":[[0,1,["(H853)"]],[1,2,["H3605"]],[2,4,["H1004"]],[4,5,["H1571"]],[5,9,["H1116"]],[9,10,["H834"]],[10,14,["H5892"]],[14,16,["H8111"]],[16,17,["H834"]],[17,19,["H4428"]],[19,21,["H3478"]],[21,23,["H6213"]],[23,29,["H3707"]],[29,30,["H2977"]],[30,32,["H5493"]],[32,34,["H6213"]],[34,39,["H3605"]],[39,41,["H4639"]],[41,42,["H834"]],[42,45,["H6213"]],[45,47,["H1008"]]]},{"k":10185,"v":[[0,3,["H2076","(H853)"]],[3,4,["H3605"]],[4,6,["H3548"]],[6,10,["H1116"]],[10,11,["H834"]],[11,13,["H8033"]],[13,14,["H5921"]],[14,16,["H4196"]],[16,18,["H8313","(H853)"]],[18,19,["H120"]],[19,20,["H6106"]],[20,21,["H5921"]],[21,24,["H7725"]],[24,26,["H3389"]]]},{"k":10186,"v":[[0,3,["H4428"]],[3,4,["H6680","(H853)"]],[4,5,["H3605"]],[5,7,["H5971"]],[7,8,["H559"]],[8,9,["H6213"]],[9,11,["H6453"]],[11,14,["H3068"]],[14,16,["H430"]],[16,20,["H3789"]],[20,21,["H5921"]],[21,23,["H5612"]],[23,25,["H2088"]],[25,26,["H1285"]]]},{"k":10187,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H6213"]],[5,6,["H2088"]],[6,8,["H6453"]],[8,11,["H4480","H3117"]],[11,14,["H8199"]],[14,15,["H834"]],[15,16,["H8199","(H853)"]],[16,17,["H3478"]],[17,20,["H3605"]],[20,22,["H3117"]],[22,25,["H4428"]],[25,27,["H3478"]],[27,31,["H4428"]],[31,33,["H3063"]]]},{"k":10188,"v":[[0,1,["H3588","H518"]],[1,4,["H8083","H6240"]],[4,5,["H8141"]],[5,7,["H4428"]],[7,8,["H2977"]],[8,10,["H2088"]],[10,11,["H6453"]],[11,13,["H6213"]],[13,16,["H3068"]],[16,18,["H3389"]]]},{"k":10189,"v":[[0,1,["H1571","(H853)"]],[1,6,["H178"]],[6,9,["H3049"]],[9,12,["H8655"]],[12,15,["H1544"]],[15,17,["H3605"]],[17,19,["H8251"]],[19,20,["H834"]],[20,22,["H7200"]],[22,25,["H776"]],[25,27,["H3063"]],[27,30,["H3389"]],[30,32,["H2977"]],[32,34,["H1197"]],[34,35,["H4616"]],[35,38,["H6965","(H853)"]],[38,40,["H1697"]],[40,43,["H8451"]],[43,46,["H3789"]],[46,47,["H5921"]],[47,49,["H5612"]],[49,50,["H834"]],[50,51,["H2518"]],[51,53,["H3548"]],[53,54,["H4672"]],[54,57,["H1004"]],[57,60,["H3068"]]]},{"k":10190,"v":[[0,4,["H3644"]],[4,5,["H1961"]],[5,7,["H3808"]],[7,8,["H4428"]],[8,9,["H6440"]],[9,11,["H834"]],[11,12,["H7725"]],[12,13,["H413"]],[13,15,["H3068"]],[15,17,["H3605"]],[17,19,["H3824"]],[19,22,["H3605"]],[22,24,["H5315"]],[24,27,["H3605"]],[27,29,["H3966"]],[29,32,["H3605"]],[32,34,["H8451"]],[34,36,["H4872"]],[36,37,["H3808"]],[37,38,["H310"]],[38,40,["H6965"]],[40,44,["H3644"]]]},{"k":10191,"v":[[0,1,["H389"]],[1,3,["H3068"]],[3,4,["H7725"]],[4,5,["H3808"]],[5,8,["H4480","H2740"]],[8,11,["H1419"]],[11,12,["H639"]],[12,13,["H834"]],[13,15,["H639"]],[15,17,["H2734"]],[17,19,["H3063"]],[19,20,["H5921"]],[20,22,["H3605"]],[22,24,["H3708"]],[24,25,["H834"]],[25,26,["H4519"]],[26,28,["H3707"]],[28,30,[]]]},{"k":10192,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,7,["H5493","(H853)"]],[7,8,["H3063"]],[8,9,["H1571"]],[9,11,["H4480","H5921"]],[11,13,["H6440"]],[13,14,["H834"]],[14,17,["H5493","(H853)"]],[17,18,["H3478"]],[18,22,["H3988","(H853)"]],[22,23,["H2063"]],[23,24,["H5892","(H853)"]],[24,25,["H3389"]],[25,26,["H834"]],[26,29,["H977"]],[29,32,["H1004"]],[32,34,["H834"]],[34,36,["H559"]],[36,38,["H8034"]],[38,40,["H1961"]],[40,41,["H8033"]]]},{"k":10193,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H2977"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3063"]]]},{"k":10194,"v":[[0,3,["H3117"]],[3,4,["H6549"]],[4,5,["H4428"]],[5,7,["H4714"]],[7,9,["H5927"]],[9,10,["H5921"]],[10,12,["H4428"]],[12,14,["H804"]],[14,15,["H5921"]],[15,17,["H5104"]],[17,18,["H6578"]],[18,20,["H4428"]],[20,21,["H2977"]],[21,22,["H1980"]],[22,23,["H7122"]],[23,27,["H4191"]],[27,30,["H4023"]],[30,34,["H7200"]],[34,35,[]]]},{"k":10195,"v":[[0,3,["H5650"]],[3,4,["H7392"]],[4,9,["H4191"]],[9,11,["H4480","H4023"]],[11,13,["H935"]],[13,16,["H3389"]],[16,18,["H6912"]],[18,23,["H6900"]],[23,26,["H5971"]],[26,29,["H776"]],[29,30,["H3947","(H853)"]],[30,31,["H3059"]],[31,33,["H1121"]],[33,35,["H2977"]],[35,37,["H4886"]],[37,42,["H4427","(H853)"]],[42,46,["H8478","H1"]]]},{"k":10196,"v":[[0,1,["H3059"]],[1,3,["H6242"]],[3,5,["H7969"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H7969"]],[16,17,["H2320"]],[17,19,["H3389"]],[19,22,["H517"]],[22,23,["H8034"]],[23,25,["H2537"]],[25,27,["H1323"]],[27,29,["H3414"]],[29,31,["H4480","H3841"]]]},{"k":10197,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3605"]],[16,17,["H834"]],[17,19,["H1"]],[19,21,["H6213"]]]},{"k":10198,"v":[[0,2,["H6549"]],[2,6,["H631"]],[6,8,["H7247"]],[8,11,["H776"]],[11,13,["H2574"]],[13,18,["H4480","H4427"]],[18,20,["H3389"]],[20,22,["H5414","H5921"]],[22,24,["H776"]],[24,27,["H6066"]],[27,30,["H3967"]],[30,31,["H3603"]],[31,33,["H3701"]],[33,36,["H3603"]],[36,38,["H2091"]]]},{"k":10199,"v":[[0,2,["H6549"]],[2,3,["H4427","(H853)"]],[3,4,["H471"]],[4,6,["H1121"]],[6,8,["H2977"]],[8,9,["H4427"]],[9,12,["H8478"]],[12,14,["H2977"]],[14,16,["H1"]],[16,18,["H5437","(H853)"]],[18,20,["H8034"]],[20,22,["H3079"]],[22,24,["H3947"]],[24,25,["H3059"]],[25,29,["H935"]],[29,31,["H4714"]],[31,33,["H4191"]],[33,34,["H8033"]]]},{"k":10200,"v":[[0,2,["H3079"]],[2,3,["H5414"]],[3,5,["H3701"]],[5,8,["H2091"]],[8,10,["H6547"]],[10,11,["H389"]],[11,13,["H6186","(H853)"]],[13,15,["H776"]],[15,17,["H5414","(H853)"]],[17,19,["H3701"]],[19,20,["H5921"]],[20,23,["H6310"]],[23,25,["H6547"]],[25,27,["H5065","(H853)"]],[27,29,["H3701"]],[29,32,["H2091"]],[32,33,["(H853)"]],[33,35,["H5971"]],[35,38,["H776"]],[38,41,["H376"]],[41,45,["H6187"]],[45,47,["H5414"]],[47,50,["H6549"]]]},{"k":10201,"v":[[0,1,["H3079"]],[1,3,["H6242"]],[3,5,["H2568"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H259","H6240"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,22,["H517"]],[22,23,["H8034"]],[23,25,["H2080"]],[25,27,["H1323"]],[27,29,["H6305"]],[29,30,["H4480"]],[30,31,["H7316"]]]},{"k":10202,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3605"]],[16,17,["H834"]],[17,19,["H1"]],[19,21,["H6213"]]]},{"k":10203,"v":[[0,3,["H3117"]],[3,4,["H5019"]],[4,5,["H4428"]],[5,7,["H894"]],[7,9,["H5927"]],[9,11,["H3079"]],[11,12,["H1961"]],[12,14,["H5650"]],[14,15,["H7969"]],[15,16,["H8141"]],[16,19,["H7725"]],[19,21,["H4775"]],[21,23,[]]]},{"k":10204,"v":[[0,3,["H3068"]],[3,4,["H7971"]],[4,6,["(H853)"]],[6,7,["H1416"]],[7,10,["H3778"]],[10,12,["H1416"]],[12,15,["H758"]],[15,17,["H1416"]],[17,20,["H4124"]],[20,22,["H1416"]],[22,25,["H1121"]],[25,27,["H5983"]],[27,29,["H7971"]],[29,32,["H3063"]],[32,34,["H6"]],[34,39,["H1697"]],[39,42,["H3068"]],[42,43,["H834"]],[43,45,["H1696"]],[45,46,["H3027"]],[46,48,["H5650"]],[48,50,["H5030"]]]},{"k":10205,"v":[[0,1,["H389"]],[1,2,["H5921"]],[2,4,["H6310"]],[4,7,["H3068"]],[7,8,["H1961"]],[8,11,["H3063"]],[11,13,["H5493"]],[13,16,["H4480","H5921"]],[16,18,["H6440"]],[18,21,["H2403"]],[21,23,["H4519"]],[23,26,["H3605"]],[26,27,["H834"]],[27,29,["H6213"]]]},{"k":10206,"v":[[0,2,["H1571"]],[2,5,["H5355"]],[5,6,["H1818"]],[6,7,["H834"]],[7,9,["H8210"]],[9,12,["H4390","(H853)"]],[12,13,["H3389"]],[13,15,["H5355"]],[15,16,["H1818"]],[16,19,["H3068"]],[19,20,["H14"]],[20,21,["H3808"]],[21,22,["H5545"]]]},{"k":10207,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3079"]],[8,10,["H3605"]],[10,11,["H834"]],[11,13,["H6213"]],[13,15,["H1992"]],[15,16,["H3808"]],[16,17,["H3789"]],[17,18,["H5921"]],[18,20,["H5612"]],[20,23,["H1697","H3117"]],[23,26,["H4428"]],[26,28,["H3063"]]]},{"k":10208,"v":[[0,2,["H3079"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,8,["H3078"]],[8,10,["H1121"]],[10,11,["H4427"]],[11,14,["H8478"]]]},{"k":10209,"v":[[0,3,["H4428"]],[3,5,["H4714"]],[5,6,["H3318"]],[6,7,["H3808"]],[7,8,["H3254"]],[8,10,["H5750"]],[10,14,["H4480","H776"]],[14,15,["H3588"]],[15,17,["H4428"]],[17,19,["H894"]],[19,21,["H3947"]],[21,24,["H4480","H5104"]],[24,26,["H4714"]],[26,27,["H5704"]],[27,29,["H4480","H5158"]],[29,30,["H6578"]],[30,31,["H3605"]],[31,32,["H834"]],[32,33,["H1961"]],[33,36,["H4428"]],[36,38,["H4714"]]]},{"k":10210,"v":[[0,1,["H3078"]],[1,3,["H8083","H6240"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,10,["H4427"]],[10,13,["H4427"]],[13,15,["H3389"]],[15,16,["H7969"]],[16,17,["H2320"]],[17,20,["H517"]],[20,21,["H8034"]],[21,23,["H5179"]],[23,25,["H1323"]],[25,27,["H494"]],[27,29,["H4480","H3389"]]]},{"k":10211,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3605"]],[16,17,["H834"]],[17,19,["H1"]],[19,21,["H6213"]]]},{"k":10212,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,5,["H5650"]],[5,7,["H5019"]],[7,8,["H4428"]],[8,10,["H894"]],[10,12,["H5927"]],[12,14,["H3389"]],[14,17,["H5892"]],[17,19,["H935","H4692"]]]},{"k":10213,"v":[[0,2,["H5019"]],[2,3,["H4428"]],[3,5,["H894"]],[5,6,["H935"]],[6,7,["H5921"]],[7,9,["H5892"]],[9,12,["H5650"]],[12,14,["H6696","H5921"]],[14,15,[]]]},{"k":10214,"v":[[0,2,["H3078"]],[2,4,["H4428"]],[4,6,["H3063"]],[6,8,["H3318"]],[8,9,["H5921"]],[9,11,["H4428"]],[11,13,["H894"]],[13,14,["H1931"]],[14,17,["H517"]],[17,20,["H5650"]],[20,23,["H8269"]],[23,26,["H5631"]],[26,29,["H4428"]],[29,31,["H894"]],[31,32,["H3947"]],[32,36,["H8083"]],[36,37,["H8141"]],[37,40,["H4427"]]]},{"k":10215,"v":[[0,4,["H3318"]],[4,5,["H4480","H8033","(H853)"]],[5,6,["H3605"]],[6,8,["H214"]],[8,11,["H1004"]],[11,14,["H3068"]],[14,17,["H214"]],[17,20,["H4428"]],[20,21,["H1004"]],[21,25,["H7112","(H853)"]],[25,26,["H3605"]],[26,28,["H3627"]],[28,30,["H2091"]],[30,31,["H834"]],[31,32,["H8010"]],[32,33,["H4428"]],[33,35,["H3478"]],[35,37,["H6213"]],[37,40,["H1964"]],[40,43,["H3068"]],[43,44,["H834"]],[44,46,["H3068"]],[46,48,["H1696"]]]},{"k":10216,"v":[[0,4,["H1540","(H853)"]],[4,5,["H3605"]],[5,6,["H3389"]],[6,8,["H3605"]],[8,10,["H8269"]],[10,12,["H3605"]],[12,15,["H1368"]],[15,17,["H2428"]],[17,19,["H6235"]],[19,20,["H505"]],[20,21,["H1540"]],[21,23,["H3605"]],[23,25,["H2796"]],[25,27,["H4525"]],[27,28,["H3808"]],[28,29,["H7604"]],[29,30,["H2108"]],[30,33,["H1803"]],[33,36,["H5971"]],[36,39,["H776"]]]},{"k":10217,"v":[[0,4,["H1540","(H853)"]],[4,5,["H3078"]],[5,7,["H894"]],[7,10,["H4428"]],[10,11,["H517"]],[11,14,["H4428"]],[14,15,["H802"]],[15,18,["H5631"]],[18,21,["H352"]],[21,24,["H776"]],[24,26,["H1980"]],[26,29,["H1473"]],[29,31,["H4480","H3389"]],[31,33,["H894"]]]},{"k":10218,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,6,["H2428"]],[6,8,["H7651"]],[8,9,["H505"]],[9,11,["H2796"]],[11,13,["H4525"]],[13,15,["H505"]],[15,16,["H3605"]],[16,19,["H1368"]],[19,21,["H6213"]],[21,23,["H4421"]],[23,27,["H4428"]],[27,29,["H894"]],[29,30,["H935"]],[30,31,["H1473"]],[31,33,["H894"]]]},{"k":10219,"v":[[0,3,["H4428"]],[3,5,["H894"]],[5,6,["H4427","(H853)"]],[6,7,["H4983"]],[7,10,["H1730"]],[10,11,["H4427"]],[11,14,["H8478"]],[14,16,["H5437","(H853)"]],[16,18,["H8034"]],[18,20,["H6667"]]]},{"k":10220,"v":[[0,1,["H6667"]],[1,3,["H6242"]],[3,5,["H259"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H259","H6240"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,22,["H517"]],[22,23,["H8034"]],[23,25,["H2537"]],[25,27,["H1323"]],[27,29,["H3414"]],[29,31,["H4480","H3841"]]]},{"k":10221,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3605"]],[16,17,["H834"]],[17,18,["H3079"]],[18,20,["H6213"]]]},{"k":10222,"v":[[0,1,["H3588"]],[1,2,["H5921"]],[2,4,["H639"]],[4,7,["H3068"]],[7,11,["H1961"]],[11,13,["H3389"]],[13,15,["H3063"]],[15,16,["H5704"]],[16,21,["H7993","(H853)"]],[21,22,["H4480","H5921"]],[22,24,["H6440"]],[24,26,["H6667"]],[26,27,["H4775"]],[27,30,["H4428"]],[30,32,["H894"]]]},{"k":10223,"v":[[0,5,["H1961"]],[5,8,["H8671"]],[8,9,["H8141"]],[9,12,["H4427"]],[12,15,["H6224"]],[15,16,["H2320"]],[16,19,["H6218"]],[19,23,["H2320"]],[23,25,["H5019"]],[25,26,["H4428"]],[26,28,["H894"]],[28,29,["H935"]],[29,30,["H1931"]],[30,32,["H3605"]],[32,34,["H2428"]],[34,35,["H5921"]],[35,36,["H3389"]],[36,38,["H2583"]],[38,39,["H5921"]],[39,43,["H1129"]],[43,44,["H1785"]],[44,45,["H5921"]],[45,48,["H5439"]]]},{"k":10224,"v":[[0,3,["H5892"]],[3,5,["H935","H4692"]],[5,6,["H5704"]],[6,8,["H6249","H6240"]],[8,9,["H8141"]],[9,11,["H4428"]],[11,12,["H6667"]]]},{"k":10225,"v":[[0,4,["H8672"]],[4,9,["H2320"]],[9,11,["H7458"]],[11,12,["H2388"]],[12,15,["H5892"]],[15,18,["H1961"]],[18,19,["H3808"]],[19,20,["H3899"]],[20,23,["H5971"]],[23,26,["H776"]]]},{"k":10226,"v":[[0,3,["H5892"]],[3,6,["H1234"]],[6,8,["H3605"]],[8,10,["H376"]],[10,12,["H4421"]],[12,15,["H3915"]],[15,18,["H1870"]],[18,21,["H8179"]],[21,22,["H996"]],[22,24,["H2346"]],[24,25,["H834"]],[25,27,["H5921"]],[27,29,["H4428"]],[29,30,["H1588"]],[30,33,["H3778"]],[33,35,["H5921"]],[35,37,["H5892"]],[37,39,["H5439"]],[39,43,["H1980"]],[43,45,["H1870"]],[45,48,["H6160"]]]},{"k":10227,"v":[[0,3,["H2428"]],[3,6,["H3778"]],[6,7,["H7291"]],[7,8,["H310"]],[8,10,["H4428"]],[10,12,["H5381"]],[12,16,["H6160"]],[16,18,["H3405"]],[18,20,["H3605"]],[20,22,["H2428"]],[22,24,["H6327"]],[24,25,["H4480","H5921"]],[25,26,[]]]},{"k":10228,"v":[[0,3,["H8610","(H853)"]],[3,5,["H4428"]],[5,9,["H5927","(H853)"]],[9,10,["H413"]],[10,12,["H4428"]],[12,14,["H894"]],[14,16,["H7247"]],[16,19,["H1696"]],[19,20,["H4941"]],[20,21,["H854"]],[21,22,[]]]},{"k":10229,"v":[[0,3,["H7819"]],[3,5,["H1121"]],[5,7,["H6667"]],[7,10,["H5869"]],[10,13,["H5786","(H853)"]],[13,15,["H5869"]],[15,17,["H6667"]],[17,19,["H631"]],[19,24,["H5178"]],[24,26,["H935"]],[26,29,["H894"]]]},{"k":10230,"v":[[0,4,["H2549"]],[4,5,["H2320"]],[5,8,["H7651"]],[8,12,["H2320"]],[12,13,["H1931"]],[13,16,["H8672","H6240"]],[16,17,["H8141"]],[17,19,["H4428"]],[19,20,["H5019"]],[20,21,["H4428"]],[21,23,["H894"]],[23,24,["H935"]],[24,25,["H5018"]],[25,26,["H7227"]],[26,29,["H2876"]],[29,31,["H5650"]],[31,34,["H4428"]],[34,36,["H894"]],[36,38,["H3389"]]]},{"k":10231,"v":[[0,3,["H8313","(H853)"]],[3,5,["H1004"]],[5,8,["H3068"]],[8,11,["H4428"]],[11,12,["H1004"]],[12,14,["H3605"]],[14,16,["H1004"]],[16,18,["H3389"]],[18,20,["H3605"]],[20,21,["H1419"]],[21,23,["H1004"]],[23,24,["H8313"]],[24,27,["H784"]]]},{"k":10232,"v":[[0,2,["H3605"]],[2,4,["H2428"]],[4,7,["H3778"]],[7,8,["H834"]],[8,12,["H7227"]],[12,15,["H2876"]],[15,17,["H5422"]],[17,19,["H2346"]],[19,21,["H3389"]],[21,23,["H5439"]]]},{"k":10233,"v":[[0,3,["H3499"]],[3,6,["H5971"]],[6,9,["H7604"]],[9,12,["H5892"]],[12,15,["H5307"]],[15,16,["H834"]],[16,18,["H5307"]],[18,19,["H5921"]],[19,21,["H4428"]],[21,23,["H894"]],[23,26,["H3499"]],[26,29,["H1995"]],[29,31,["H5018"]],[31,33,["H7227"]],[33,36,["H2876"]],[36,38,["H1540"]]]},{"k":10234,"v":[[0,3,["H7227"]],[3,6,["H2876"]],[6,7,["H7604"]],[7,10,["H4480","H1803"]],[10,13,["H776"]],[13,16,["H3755"]],[16,18,["H1461"]]]},{"k":10235,"v":[[0,3,["H5982"]],[3,5,["H5178"]],[5,6,["H834"]],[6,10,["H1004"]],[10,13,["H3068"]],[13,16,["H4350"]],[16,19,["H5178"]],[19,20,["H3220"]],[20,21,["H834"]],[21,25,["H1004"]],[25,28,["H3068"]],[28,31,["H3778"]],[31,34,["H7665"]],[34,36,["H5375","(H853)"]],[36,38,["H5178"]],[38,42,["H894"]]]},{"k":10236,"v":[[0,3,["H5518"]],[3,6,["H3257"]],[6,9,["H4212"]],[9,12,["H3709"]],[12,14,["H3605"]],[14,16,["H3627"]],[16,18,["H5178"]],[18,19,["H834"]],[19,21,["H8334"]],[21,24,["H3947"]]]},{"k":10237,"v":[[0,3,["H4289"]],[3,6,["H4219"]],[6,10,["H834"]],[10,13,["H2091"]],[13,15,["H2091"]],[15,18,["H3701"]],[18,20,["H3701"]],[20,22,["H7227"]],[22,25,["H2876"]],[25,27,["H3947"]]]},{"k":10238,"v":[[0,2,["H8147"]],[2,3,["H5982"]],[3,4,["H259"]],[4,5,["H3220"]],[5,8,["H4350"]],[8,9,["H834"]],[9,10,["H8010"]],[10,12,["H6213"]],[12,15,["H1004"]],[15,18,["H3068"]],[18,20,["H5178"]],[20,22,["H3605"]],[22,23,["H428"]],[23,24,["H3627"]],[24,25,["H1961"]],[25,26,["H3808"]],[26,27,["H4948"]]]},{"k":10239,"v":[[0,2,["H6967"]],[2,5,["H259"]],[5,6,["H5982"]],[6,8,["H8083","H6240"]],[8,9,["H520"]],[9,12,["H3805"]],[12,13,["H5921"]],[13,16,["H5178"]],[16,19,["H6967"]],[19,22,["H3805"]],[22,23,["H7969"]],[23,24,["H520"]],[24,28,["H7639"]],[28,30,["H7416"]],[30,31,["H5921"]],[31,33,["H3805"]],[33,35,["H5439"]],[35,36,["H3605"]],[36,38,["H5178"]],[38,42,["H428"]],[42,45,["H8145"]],[45,46,["H5982"]],[46,47,["H5921"]],[47,49,["H7639"]]]},{"k":10240,"v":[[0,3,["H7227"]],[3,6,["H2876"]],[6,7,["H3947","(H853)"]],[7,8,["H8304"]],[8,10,["H7218"]],[10,11,["H3548"]],[11,13,["H6846"]],[13,15,["H4932"]],[15,16,["H3548"]],[16,19,["H7969"]],[19,20,["H8104"]],[20,23,["H5592"]]]},{"k":10241,"v":[[0,3,["H4480"]],[3,5,["H5892"]],[5,7,["H3947"]],[7,8,["H259"]],[8,9,["H5631"]],[9,10,["H834","H1931"]],[10,12,["H6496"]],[12,13,["H5921"]],[13,15,["H376"]],[15,17,["H4421"]],[17,19,["H2568"]],[19,20,["H376"]],[20,24,["H4480","H7200"]],[24,27,["H4428"]],[27,28,["H6440"]],[28,29,["H834"]],[29,31,["H4672"]],[31,34,["H5892"]],[34,37,["H8269"]],[37,38,["H5608"]],[38,41,["H6635"]],[41,43,["H6633","(H853)"]],[43,45,["H5971"]],[45,48,["H776"]],[48,50,["H8346"]],[50,51,["H376"]],[51,54,["H4480","H5971"]],[54,57,["H776"]],[57,60,["H4672"]],[60,63,["H5892"]]]},{"k":10242,"v":[[0,2,["H5018"]],[2,3,["H7227"]],[3,6,["H2876"]],[6,7,["H3947"]],[7,10,["H1980"]],[10,12,["H5921"]],[12,14,["H4428"]],[14,16,["H894"]],[16,18,["H7247"]]]},{"k":10243,"v":[[0,3,["H4428"]],[3,5,["H894"]],[5,6,["H5221"]],[6,9,["H4191"]],[9,12,["H7247"]],[12,15,["H776"]],[15,17,["H2574"]],[17,19,["H3063"]],[19,22,["H1540"]],[22,24,["H4480","H5921"]],[24,26,["H127"]]]},{"k":10244,"v":[[0,5,["H5971"]],[5,7,["H7604"]],[7,10,["H776"]],[10,12,["H3063"]],[12,13,["H834"]],[13,14,["H5019"]],[14,15,["H4428"]],[15,17,["H894"]],[17,19,["H7604"]],[19,21,["H5921"]],[21,24,["(H853)"]],[24,25,["H1436"]],[25,27,["H1121"]],[27,29,["H296"]],[29,31,["H1121"]],[31,33,["H8227"]],[33,34,["H6485"]]]},{"k":10245,"v":[[0,3,["H3605"]],[3,5,["H8269"]],[5,8,["H2428"]],[8,9,["H1992"]],[9,12,["H376"]],[12,13,["H8085"]],[13,14,["H3588"]],[14,16,["H4428"]],[16,18,["H894"]],[18,20,["(H853)"]],[20,21,["H1436"]],[21,22,["H6485"]],[22,24,["H935"]],[24,25,["H413"]],[25,26,["H1436"]],[26,28,["H4709"]],[28,30,["H3458"]],[30,32,["H1121"]],[32,34,["H5418"]],[34,36,["H3110"]],[36,38,["H1121"]],[38,40,["H7143"]],[40,42,["H8304"]],[42,44,["H1121"]],[44,46,["H8576"]],[46,48,["H5200"]],[48,50,["H2970"]],[50,52,["H1121"]],[52,55,["H4602"]],[55,56,["H1992"]],[56,59,["H376"]]]},{"k":10246,"v":[[0,2,["H1436"]],[2,3,["H7650"]],[3,9,["H376"]],[9,11,["H559"]],[11,14,["H3372"]],[14,15,["H408"]],[15,19,["H4480","H5650"]],[19,22,["H3778"]],[22,23,["H3427"]],[23,26,["H776"]],[26,28,["H5647","(H853)"]],[28,30,["H4428"]],[30,32,["H894"]],[32,37,["H3190"]],[37,39,[]]]},{"k":10247,"v":[[0,5,["H1961"]],[5,8,["H7637"]],[8,9,["H2320"]],[9,11,["H3458"]],[11,13,["H1121"]],[13,15,["H5418"]],[15,17,["H1121"]],[17,19,["H476"]],[19,22,["H4480","H2233"]],[22,23,["H4410"]],[23,24,["H935"]],[24,26,["H6235"]],[26,27,["H376"]],[27,28,["H854"]],[28,31,["H5221","(H853)"]],[31,32,["H1436"]],[32,35,["H4191"]],[35,38,["H3064"]],[38,41,["H3778"]],[41,42,["H834"]],[42,43,["H1961"]],[43,44,["H854"]],[44,47,["H4709"]]]},{"k":10248,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H4480","H6996"]],[6,8,["H1419"]],[8,11,["H8269"]],[11,14,["H2428"]],[14,15,["H6965"]],[15,17,["H935"]],[17,19,["H4714"]],[19,20,["H3588"]],[20,23,["H3372"]],[23,24,["H4480","H6440"]],[24,26,["H3778"]]]},{"k":10249,"v":[[0,5,["H1961"]],[5,8,["H7651"]],[8,10,["H7970"]],[10,11,["H8141"]],[11,14,["H1546"]],[14,16,["H3078"]],[16,17,["H4428"]],[17,19,["H3063"]],[19,22,["H8147","H6240"]],[22,23,["H2320"]],[23,26,["H7651"]],[26,28,["H6242"]],[28,32,["H2320"]],[32,34,["H192"]],[34,35,["H4428"]],[35,37,["H894"]],[37,40,["H8141"]],[40,45,["H4427"]],[45,48,["H5375","(H853)"]],[48,50,["H7218"]],[50,52,["H3078"]],[52,53,["H4428"]],[53,55,["H3063"]],[55,58,["H4480","H1004","H3608"]]]},{"k":10250,"v":[[0,3,["H1696"]],[3,4,["H2896"]],[4,5,["H854"]],[5,8,["H5414","(H853)"]],[8,10,["H3678"]],[10,11,["H4480","H5921"]],[11,13,["H3678"]],[13,16,["H4428"]],[16,17,["H834"]],[17,19,["H854"]],[19,22,["H894"]]]},{"k":10251,"v":[[0,2,["H8132","(H853)"]],[2,4,["H3608"]],[4,5,["H899"]],[5,9,["H398"]],[9,10,["H3899"]],[10,11,["H8548"]],[11,12,["H6440"]],[12,14,["H3605"]],[14,16,["H3117"]],[16,19,["H2416"]]]},{"k":10252,"v":[[0,3,["H737"]],[3,6,["H8548"]],[6,7,["H737"]],[7,8,["H5414"]],[8,10,["H4480","H854"]],[10,12,["H4428"]],[12,14,["H3117"]],[14,15,["H1697"]],[15,18,["H3117"]],[18,19,["H3605"]],[19,21,["H3117"]],[21,24,["H2416"]]]},{"k":10253,"v":[[0,1,["H121"]],[1,2,["H8352"]],[2,3,["H583"]]]},{"k":10254,"v":[[0,1,["H7018"]],[1,2,["H4111"]],[2,3,["H3382"]]]},{"k":10255,"v":[[0,1,["H2585"]],[1,2,["H4968"]],[2,3,["H3929"]]]},{"k":10256,"v":[[0,1,["H5146"]],[1,2,["H8035"]],[2,3,["H2526"]],[3,5,["H3315"]]]},{"k":10257,"v":[[0,2,["H1121"]],[2,4,["H3315"]],[4,5,["H1586"]],[5,7,["H4031"]],[7,9,["H4074"]],[9,11,["H3120"]],[11,13,["H8422"]],[13,15,["H4902"]],[15,17,["H8494"]]]},{"k":10258,"v":[[0,3,["H1121"]],[3,5,["H1586"]],[5,6,["H813"]],[6,8,["H7384"]],[8,10,["H8425"]]]},{"k":10259,"v":[[0,3,["H1121"]],[3,5,["H3120"]],[5,6,["H473"]],[6,8,["H8659"]],[8,9,["H3794"]],[9,11,["H1721"]]]},{"k":10260,"v":[[0,2,["H1121"]],[2,4,["H2526"]],[4,5,["H3568"]],[5,7,["H4714"]],[7,8,["H6316"]],[8,10,["H3667"]]]},{"k":10261,"v":[[0,3,["H1121"]],[3,5,["H3568"]],[5,6,["H5434"]],[6,8,["H2341"]],[8,10,["H5454"]],[10,12,["H7484"]],[12,14,["H5455"]],[14,17,["H1121"]],[17,19,["H7484"]],[19,20,["H7614"]],[20,22,["H1719"]]]},{"k":10262,"v":[[0,2,["H3568"]],[2,3,["H3205","(H853)"]],[3,4,["H5248"]],[4,5,["H1931"]],[5,6,["H2490"]],[6,8,["H1961"]],[8,9,["H1368"]],[9,12,["H776"]]]},{"k":10263,"v":[[0,2,["H4714"]],[2,3,["H3205","(H853)"]],[3,4,["H3866"]],[4,6,["H6047"]],[6,8,["H3853"]],[8,10,["H5320"]]]},{"k":10264,"v":[[0,2,["H6625"]],[2,4,["H3695"]],[4,6,["H834","H4480","H8033"]],[6,7,["H3318"]],[7,9,["H6430"]],[9,11,["H3732"]]]},{"k":10265,"v":[[0,2,["H3667"]],[2,3,["H3205","(H853)"]],[3,4,["H6721"]],[4,6,["H1060"]],[6,8,["H2845"]]]},{"k":10266,"v":[[0,2,["H2983"]],[2,6,["H567"]],[6,9,["H1622"]]]},{"k":10267,"v":[[0,3,["H2340"]],[3,6,["H6208"]],[6,9,["H5513"]]]},{"k":10268,"v":[[0,3,["H721"]],[3,6,["H6786"]],[6,9,["H2577"]]]},{"k":10269,"v":[[0,2,["H1121"]],[2,4,["H8035"]],[4,5,["H5867"]],[5,7,["H804"]],[7,9,["H775"]],[9,11,["H3865"]],[11,13,["H758"]],[13,15,["H5780"]],[15,17,["H2343"]],[17,19,["H1666"]],[19,21,["H4902"]]]},{"k":10270,"v":[[0,2,["H775"]],[2,3,["H3205","(H853)"]],[3,4,["H7974"]],[4,6,["H7974"]],[6,7,["H3205","(H853)"]],[7,8,["H5677"]]]},{"k":10271,"v":[[0,3,["H5677"]],[3,5,["H3205"]],[5,6,["H8147"]],[6,7,["H1121"]],[7,9,["H8034"]],[9,12,["H259"]],[12,14,["H6389"]],[14,15,["H3588"]],[15,18,["H3117"]],[18,20,["H776"]],[20,22,["H6385"]],[22,25,["H251"]],[25,26,["H8034"]],[26,28,["H3355"]]]},{"k":10272,"v":[[0,2,["H3355"]],[2,3,["H3205","(H853)"]],[3,4,["H486"]],[4,6,["H8026"]],[6,8,["H2700"]],[8,10,["H3392"]]]},{"k":10273,"v":[[0,1,["H1913"]],[1,4,["H187"]],[4,6,["H1853"]]]},{"k":10274,"v":[[0,2,["H5858"]],[2,4,["H39"]],[4,6,["H7614"]]]},{"k":10275,"v":[[0,2,["H211"]],[2,4,["H2341"]],[4,6,["H3103"]],[6,7,["H3605"]],[7,8,["H428"]],[8,11,["H1121"]],[11,13,["H3355"]]]},{"k":10276,"v":[[0,1,["H8035"]],[1,2,["H775"]],[2,3,["H7974"]]]},{"k":10277,"v":[[0,1,["H5677"]],[1,2,["H6389"]],[2,3,["H7466"]]]},{"k":10278,"v":[[0,1,["H8286"]],[1,2,["H5152"]],[2,3,["H8646"]]]},{"k":10279,"v":[[0,1,["H87"]],[1,3,["H1931"]],[3,5,["H85"]]]},{"k":10280,"v":[[0,2,["H1121"]],[2,4,["H85"]],[4,5,["H3327"]],[5,7,["H3458"]]]},{"k":10281,"v":[[0,1,["H428"]],[1,4,["H8435"]],[4,6,["H1060"]],[6,8,["H3458"]],[8,9,["H5032"]],[9,11,["H6938"]],[11,13,["H110"]],[13,15,["H4017"]]]},{"k":10282,"v":[[0,1,["H4927"]],[1,3,["H1746"]],[3,4,["H4854"]],[4,5,["H2301"]],[5,7,["H8485"]]]},{"k":10283,"v":[[0,1,["H3195"]],[1,2,["H5305"]],[2,4,["H6929"]],[4,5,["H428"]],[5,8,["H1121"]],[8,10,["H3458"]]]},{"k":10284,"v":[[0,3,["H1121"]],[3,5,["H6989"]],[5,6,["H85"]],[6,7,["H6370"]],[7,9,["H3205","(H853)"]],[9,10,["H2175"]],[10,12,["H3370"]],[12,14,["H4091"]],[14,16,["H4080"]],[16,18,["H3435"]],[18,20,["H7744"]],[20,23,["H1121"]],[23,25,["H3370"]],[25,26,["H7614"]],[26,28,["H1719"]]]},{"k":10285,"v":[[0,3,["H1121"]],[3,5,["H4080"]],[5,6,["H5891"]],[6,8,["H6081"]],[8,10,["H2585"]],[10,12,["H28"]],[12,14,["H420"]],[14,15,["H3605"]],[15,16,["H428"]],[16,19,["H1121"]],[19,21,["H6989"]]]},{"k":10286,"v":[[0,2,["H85"]],[2,3,["H3205","(H853)"]],[3,4,["H3327"]],[4,6,["H1121"]],[6,8,["H3327"]],[8,9,["H6215"]],[9,11,["H3478"]]]},{"k":10287,"v":[[0,2,["H1121"]],[2,4,["H6215"]],[4,5,["H464"]],[5,6,["H7467"]],[6,8,["H3266"]],[8,10,["H3281"]],[10,12,["H7141"]]]},{"k":10288,"v":[[0,2,["H1121"]],[2,4,["H464"]],[4,5,["H8487"]],[5,7,["H201"]],[7,8,["H6825"]],[8,10,["H1609"]],[10,11,["H7073"]],[11,13,["H8555"]],[13,15,["H6002"]]]},{"k":10289,"v":[[0,2,["H1121"]],[2,4,["H7467"]],[4,5,["H5184"]],[5,6,["H2226"]],[6,7,["H8048"]],[7,9,["H4199"]]]},{"k":10290,"v":[[0,3,["H1121"]],[3,5,["H8165"]],[5,6,["H3877"]],[6,8,["H7732"]],[8,10,["H6649"]],[10,12,["H6034"]],[12,14,["H1787"]],[14,16,["H687"]],[16,18,["H1789"]]]},{"k":10291,"v":[[0,3,["H1121"]],[3,5,["H3877"]],[5,6,["H2753"]],[6,8,["H1950"]],[8,10,["H8555"]],[10,12,["H3877"]],[12,13,["H269"]]]},{"k":10292,"v":[[0,2,["H1121"]],[2,4,["H7732"]],[4,5,["H5935"]],[5,7,["H4506"]],[7,9,["H5858"]],[9,10,["H8195"]],[10,12,["H208"]],[12,15,["H1121"]],[15,17,["H6649"]],[17,18,["H345"]],[18,20,["H6034"]]]},{"k":10293,"v":[[0,2,["H1121"]],[2,4,["H6034"]],[4,5,["H1787"]],[5,8,["H1121"]],[8,10,["H1787"]],[10,11,["H2566"]],[11,13,["H790"]],[13,15,["H3506"]],[15,17,["H3763"]]]},{"k":10294,"v":[[0,2,["H1121"]],[2,4,["H687"]],[4,5,["H1092"]],[5,7,["H2190"]],[7,9,["H3292"]],[9,11,["H1121"]],[11,13,["H1789"]],[13,14,["H5780"]],[14,16,["H765"]]]},{"k":10295,"v":[[0,2,["H428"]],[2,5,["H4428"]],[5,6,["H834"]],[6,7,["H4427"]],[7,10,["H776"]],[10,12,["H123"]],[12,13,["H6440"]],[13,15,["H4428"]],[15,16,["H4427"]],[16,19,["H1121"]],[19,21,["H3478"]],[21,22,["H1106"]],[22,24,["H1121"]],[24,26,["H1160"]],[26,29,["H8034"]],[29,32,["H5892"]],[32,34,["H1838"]]]},{"k":10296,"v":[[0,3,["H1106"]],[3,5,["H4191"]],[5,6,["H3103"]],[6,8,["H1121"]],[8,10,["H2226"]],[10,12,["H4480","H1224"]],[12,13,["H4427"]],[13,16,["H8478"]]]},{"k":10297,"v":[[0,3,["H3103"]],[3,5,["H4191"]],[5,6,["H2367"]],[6,9,["H4480","H776"]],[9,12,["H8489"]],[12,13,["H4427"]],[13,16,["H8478"]]]},{"k":10298,"v":[[0,3,["H2367"]],[3,5,["H4191"]],[5,6,["H1908"]],[6,8,["H1121"]],[8,10,["H911"]],[10,12,["H5221","(H853)"]],[12,13,["H4080"]],[13,16,["H7704"]],[16,18,["H4124"]],[18,19,["H4427"]],[19,22,["H8478"]],[22,25,["H8034"]],[25,28,["H5892"]],[28,30,["H5762"]]]},{"k":10299,"v":[[0,3,["H1908"]],[3,5,["H4191"]],[5,6,["H8072"]],[6,8,["H4480","H4957"]],[8,9,["H4427"]],[9,12,["H8478"]]]},{"k":10300,"v":[[0,3,["H8072"]],[3,5,["H4191"]],[5,6,["H7586"]],[6,8,["H4480","H7344"]],[8,11,["H5104"]],[11,12,["H4427"]],[12,15,["H8478"]]]},{"k":10301,"v":[[0,3,["H7586"]],[3,5,["H4191"]],[5,6,["H1177"]],[6,8,["H1121"]],[8,10,["H5907"]],[10,11,["H4427"]],[11,14,["H8478"]]]},{"k":10302,"v":[[0,3,["H1177"]],[3,5,["H4191"]],[5,6,["H1908"]],[6,7,["H4427"]],[7,10,["H8478"]],[10,13,["H8034"]],[13,16,["H5892"]],[16,18,["H6464"]],[18,21,["H802"]],[21,22,["H8034"]],[22,24,["H4105"]],[24,26,["H1323"]],[26,28,["H4308"]],[28,30,["H1323"]],[30,32,["H4314"]]]},{"k":10303,"v":[[0,1,["H1908"]],[1,2,["H4191"]],[2,6,["H441"]],[6,8,["H123"]],[8,9,["H1961"]],[9,10,["H441"]],[10,11,["H8555"]],[11,12,["H441"]],[12,13,["H5933"]],[13,14,["H441"]],[14,15,["H3509"]]]},{"k":10304,"v":[[0,1,["H441"]],[1,2,["H173"]],[2,3,["H441"]],[3,4,["H425"]],[4,5,["H441"]],[5,6,["H6373"]]]},{"k":10305,"v":[[0,1,["H441"]],[1,2,["H7073"]],[2,3,["H441"]],[3,4,["H8487"]],[4,5,["H441"]],[5,6,["H4014"]]]},{"k":10306,"v":[[0,1,["H441"]],[1,2,["H4025"]],[2,3,["H441"]],[3,4,["H5902"]],[4,5,["H428"]],[5,8,["H441"]],[8,10,["H123"]]]},{"k":10307,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H3478"]],[6,7,["H7205"]],[7,8,["H8095"]],[8,9,["H3878"]],[9,11,["H3063"]],[11,12,["H3485"]],[12,14,["H2074"]]]},{"k":10308,"v":[[0,1,["H1835"]],[1,2,["H3130"]],[2,4,["H1144"]],[4,5,["H5321"]],[5,6,["H1410"]],[6,8,["H836"]]]},{"k":10309,"v":[[0,2,["H1121"]],[2,4,["H3063"]],[4,5,["H6147"]],[5,7,["H209"]],[7,9,["H7956"]],[9,11,["H7969"]],[11,13,["H3205"]],[13,18,["H4480","H1323"]],[18,20,["H7770"]],[20,22,["H3669"]],[22,24,["H6147"]],[24,26,["H1060"]],[26,28,["H3063"]],[28,29,["H1961"]],[29,30,["H7451"]],[30,33,["H5869"]],[33,36,["H3068"]],[36,39,["H4191"]],[39,40,[]]]},{"k":10310,"v":[[0,2,["H8559"]],[2,6,["H3618"]],[6,7,["H3205"]],[7,8,["(H853)"]],[8,9,["H6557"]],[9,11,["H2226"]],[11,12,["H3605"]],[12,14,["H1121"]],[14,16,["H3063"]],[16,18,["H2568"]]]},{"k":10311,"v":[[0,2,["H1121"]],[2,4,["H6557"]],[4,5,["H2696"]],[5,7,["H2538"]]]},{"k":10312,"v":[[0,3,["H1121"]],[3,5,["H2226"]],[5,6,["H2174"]],[6,8,["H387"]],[8,10,["H1968"]],[10,12,["H3633"]],[12,14,["H1873"]],[14,15,["H2568"]],[15,19,["H3605"]]]},{"k":10313,"v":[[0,3,["H1121"]],[3,5,["H3756"]],[5,6,["H5917"]],[6,8,["H5916"]],[8,10,["H3478"]],[10,11,["H834"]],[11,12,["H4603"]],[12,16,["H2764"]]]},{"k":10314,"v":[[0,3,["H1121"]],[3,5,["H387"]],[5,6,["H5838"]]]},{"k":10315,"v":[[0,2,["H1121"]],[2,5,["H2696"]],[5,6,["H834"]],[6,8,["H3205"]],[8,10,["(H853)"]],[10,11,["H3396"]],[11,13,["H7410"]],[13,15,["H3621"]]]},{"k":10316,"v":[[0,2,["H7410"]],[2,3,["H3205","(H853)"]],[3,4,["H5992"]],[4,6,["H5992"]],[6,7,["H3205","(H853)"]],[7,8,["H5177"]],[8,9,["H5387"]],[9,12,["H1121"]],[12,14,["H3063"]]]},{"k":10317,"v":[[0,2,["H5177"]],[2,3,["H3205","(H853)"]],[3,4,["H8007"]],[4,6,["H8007"]],[6,7,["H3205","(H853)"]],[7,8,["H1162"]]]},{"k":10318,"v":[[0,2,["H1162"]],[2,3,["H3205","(H853)"]],[3,4,["H5744"]],[4,6,["H5744"]],[6,7,["H3205","(H853)"]],[7,8,["H3448"]]]},{"k":10319,"v":[[0,2,["H3448"]],[2,3,["H3205","(H853)"]],[3,5,["H1060","(H853)"]],[5,6,["H446"]],[6,8,["H41"]],[8,10,["H8145"]],[10,12,["H8092"]],[12,14,["H7992"]]]},{"k":10320,"v":[[0,1,["H5417"]],[1,3,["H7243"]],[3,4,["H7288"]],[4,6,["H2549"]]]},{"k":10321,"v":[[0,1,["H684"]],[1,3,["H8345"]],[3,4,["H1732"]],[4,6,["H7637"]]]},{"k":10322,"v":[[0,2,["H269"]],[2,4,["H6870"]],[4,6,["H26"]],[6,9,["H1121"]],[9,11,["H6870"]],[11,12,["H52"]],[12,14,["H3097"]],[14,16,["H6214"]],[16,17,["H7969"]]]},{"k":10323,"v":[[0,2,["H26"]],[2,3,["H3205","(H853)"]],[3,4,["H6021"]],[4,7,["H1"]],[7,9,["H6021"]],[9,11,["H3500"]],[11,13,["H3459"]]]},{"k":10324,"v":[[0,2,["H3612"]],[2,4,["H1121"]],[4,6,["H2696"]],[6,7,["H3205"]],[7,9,["H854"]],[9,10,["H5806"]],[10,12,["H802"]],[12,14,["H854"]],[14,15,["H3408"]],[15,17,["H1121"]],[17,19,["H428"]],[19,20,["H3475"]],[20,22,["H7727"]],[22,24,["H715"]]]},{"k":10325,"v":[[0,3,["H5806"]],[3,5,["H4191"]],[5,6,["H3612"]],[6,7,["H3947"]],[7,9,["(H853)"]],[9,10,["H672"]],[10,12,["H3205"]],[12,13,["(H853)"]],[13,14,["H2354"]]]},{"k":10326,"v":[[0,2,["H2354"]],[2,3,["H3205","(H853)"]],[3,4,["H221"]],[4,6,["H221"]],[6,7,["H3205","(H853)"]],[7,8,["H1212"]]]},{"k":10327,"v":[[0,2,["H310"]],[2,3,["H2696"]],[3,5,["H935"]],[5,6,["H413"]],[6,8,["H1323"]],[8,10,["H4353"]],[10,12,["H1"]],[12,14,["H1568"]],[14,16,["H1931"]],[16,17,["H3947"]],[17,19,["H1931"]],[19,21,["H8346"]],[21,22,["H8141"]],[22,23,["H1121"]],[23,26,["H3205"]],[26,27,["(H853)"]],[27,28,["H7687"]]]},{"k":10328,"v":[[0,2,["H7687"]],[2,3,["H3205","(H853)"]],[3,4,["H2971"]],[4,6,["H1961"]],[6,7,["H7969"]],[7,9,["H6242"]],[9,10,["H5892"]],[10,13,["H776"]],[13,15,["H1568"]]]},{"k":10329,"v":[[0,3,["H3947"]],[3,4,["H1650"]],[4,6,["H758"]],[6,7,["H854"]],[7,9,["H2333"]],[9,11,["H2971"]],[11,12,["H4480","H854"]],[12,14,["H854"]],[14,15,["H7079"]],[15,18,["H1323"]],[18,21,["H8346"]],[21,22,["H5892"]],[22,23,["H3605"]],[23,24,["H428"]],[24,28,["H1121"]],[28,30,["H4353"]],[30,32,["H1"]],[32,34,["H1568"]]]},{"k":10330,"v":[[0,3,["H310"]],[3,4,["H2696"]],[4,6,["H4194"]],[6,8,["H3613"]],[8,10,["H29"]],[10,11,["H2696"]],[11,12,["H802"]],[12,13,["H3205"]],[13,14,["(H853)"]],[14,15,["H806"]],[15,17,["H1"]],[17,19,["H8620"]]]},{"k":10331,"v":[[0,3,["H1121"]],[3,5,["H3396"]],[5,7,["H1060"]],[7,9,["H2696"]],[9,10,["H1961"]],[10,11,["H7410"]],[11,13,["H1060"]],[13,15,["H946"]],[15,17,["H767"]],[17,19,["H684"]],[19,21,["H281"]]]},{"k":10332,"v":[[0,1,["H3396"]],[1,2,["H1961"]],[2,4,["H312"]],[4,5,["H802"]],[5,7,["H8034"]],[7,9,["H5851"]],[9,10,["H1931"]],[10,13,["H517"]],[13,15,["H208"]]]},{"k":10333,"v":[[0,3,["H1121"]],[3,5,["H7410"]],[5,7,["H1060"]],[7,9,["H3396"]],[9,10,["H1961"]],[10,11,["H4619"]],[11,13,["H3226"]],[13,15,["H6134"]]]},{"k":10334,"v":[[0,3,["H1121"]],[3,5,["H208"]],[5,6,["H1961"]],[6,7,["H8060"]],[7,9,["H3047"]],[9,12,["H1121"]],[12,14,["H8060"]],[14,15,["H5070"]],[15,17,["H51"]]]},{"k":10335,"v":[[0,3,["H8034"]],[3,6,["H802"]],[6,8,["H51"]],[8,10,["H32"]],[10,13,["H3205"]],[13,14,["(H853)"]],[14,15,["H257"]],[15,17,["H4140"]]]},{"k":10336,"v":[[0,3,["H1121"]],[3,5,["H5070"]],[5,6,["H5540"]],[6,8,["H649"]],[8,10,["H5540"]],[10,11,["H4191"]],[11,12,["H3808"]],[12,13,["H1121"]]]},{"k":10337,"v":[[0,3,["H1121"]],[3,5,["H649"]],[5,6,["H3469"]],[6,9,["H1121"]],[9,11,["H3469"]],[11,12,["H8348"]],[12,15,["H1121"]],[15,17,["H8348"]],[17,18,["H304"]]]},{"k":10338,"v":[[0,3,["H1121"]],[3,5,["H3047"]],[5,7,["H251"]],[7,9,["H8060"]],[9,10,["H3500"]],[10,12,["H3126"]],[12,14,["H3500"]],[14,15,["H4191"]],[15,16,["H3808"]],[16,17,["H1121"]]]},{"k":10339,"v":[[0,3,["H1121"]],[3,5,["H3126"]],[5,6,["H6431"]],[6,8,["H2117"]],[8,9,["H428"]],[9,10,["H1961"]],[10,12,["H1121"]],[12,14,["H3396"]]]},{"k":10340,"v":[[0,2,["H8348"]],[2,3,["H1961"]],[3,4,["H3808"]],[4,5,["H1121"]],[5,6,["H3588","H518"]],[6,7,["H1323"]],[7,9,["H8348"]],[9,12,["H5650"]],[12,14,["H4713"]],[14,16,["H8034"]],[16,18,["H3398"]]]},{"k":10341,"v":[[0,2,["H8348"]],[2,3,["H5414","(H853)"]],[3,5,["H1323"]],[5,7,["H3398"]],[7,9,["H5650"]],[9,11,["H802"]],[11,14,["H3205"]],[14,15,["(H853)"]],[15,16,["H6262"]]]},{"k":10342,"v":[[0,2,["H6262"]],[2,3,["H3205","(H853)"]],[3,4,["H5416"]],[4,6,["H5416"]],[6,7,["H3205","(H853)"]],[7,8,["H2066"]]]},{"k":10343,"v":[[0,2,["H2066"]],[2,3,["H3205","(H853)"]],[3,4,["H654"]],[4,6,["H654"]],[6,7,["H3205","(H853)"]],[7,8,["H5744"]]]},{"k":10344,"v":[[0,2,["H5744"]],[2,3,["H3205","(H853)"]],[3,4,["H3058"]],[4,6,["H3058"]],[6,7,["H3205","(H853)"]],[7,8,["H5838"]]]},{"k":10345,"v":[[0,2,["H5838"]],[2,3,["H3205","(H853)"]],[3,4,["H2503"]],[4,6,["H2503"]],[6,7,["H3205","(H853)"]],[7,8,["H501"]]]},{"k":10346,"v":[[0,2,["H501"]],[2,3,["H3205","(H853)"]],[3,4,["H5581"]],[4,6,["H5581"]],[6,7,["H3205","(H853)"]],[7,8,["H7967"]]]},{"k":10347,"v":[[0,2,["H7967"]],[2,3,["H3205","(H853)"]],[3,4,["H3359"]],[4,6,["H3359"]],[6,7,["H3205","(H853)"]],[7,8,["H476"]]]},{"k":10348,"v":[[0,3,["H1121"]],[3,5,["H3612"]],[5,7,["H251"]],[7,9,["H3396"]],[9,11,["H4337"]],[11,13,["H1060"]],[13,14,["H1931"]],[14,17,["H1"]],[17,19,["H2128"]],[19,22,["H1121"]],[22,24,["H4762"]],[24,26,["H1"]],[26,28,["H2275"]]]},{"k":10349,"v":[[0,3,["H1121"]],[3,5,["H2275"]],[5,6,["H7141"]],[6,8,["H8599"]],[8,10,["H7552"]],[10,12,["H8087"]]]},{"k":10350,"v":[[0,2,["H8087"]],[2,3,["H3205","(H853)"]],[3,4,["H7357"]],[4,6,["H1"]],[6,8,["H3421"]],[8,10,["H7552"]],[10,11,["H3205","(H853)"]],[11,12,["H8060"]]]},{"k":10351,"v":[[0,3,["H1121"]],[3,5,["H8060"]],[5,7,["H4584"]],[7,9,["H4584"]],[9,12,["H1"]],[12,14,["H1049"]]]},{"k":10352,"v":[[0,2,["H5891"]],[2,3,["H3612"]],[3,4,["H6370"]],[4,5,["H3205","(H853)"]],[5,6,["H2771"]],[6,8,["H4162"]],[8,10,["H1495"]],[10,12,["H2771"]],[12,13,["H3205","(H853)"]],[13,14,["H1495"]]]},{"k":10353,"v":[[0,3,["H1121"]],[3,5,["H3056"]],[5,6,["H7276"]],[6,8,["H3147"]],[8,10,["H1529"]],[10,12,["H6404"]],[12,14,["H5891"]],[14,16,["H8174"]]]},{"k":10354,"v":[[0,1,["H4601"]],[1,2,["H3612"]],[2,3,["H6370"]],[3,4,["H3205"]],[4,5,["H7669"]],[5,7,["H8647"]]]},{"k":10355,"v":[[0,2,["H3205"]],[2,4,["H8174"]],[4,6,["H1"]],[6,8,["H4089","(H853)"]],[8,9,["H7724"]],[9,11,["H1"]],[11,13,["H4343"]],[13,16,["H1"]],[16,18,["H1388"]],[18,21,["H1323"]],[21,23,["H3612"]],[23,25,["H5915"]]]},{"k":10356,"v":[[0,1,["H428"]],[1,2,["H1961"]],[2,4,["H1121"]],[4,6,["H3612"]],[6,8,["H1121"]],[8,10,["H2354"]],[10,12,["H1060"]],[12,14,["H672"]],[14,15,["H7732"]],[15,17,["H1"]],[17,19,["H7157"]]]},{"k":10357,"v":[[0,1,["H8007"]],[1,3,["H1"]],[3,5,["H1035"]],[5,6,["H2780"]],[6,8,["H1"]],[8,10,["H1013"]]]},{"k":10358,"v":[[0,2,["H7732"]],[2,4,["H1"]],[4,6,["H7157"]],[6,7,["H1961"]],[7,8,["H1121"]],[8,9,["H7204"]],[9,11,["H2677"]],[11,14,["H4506"]]]},{"k":10359,"v":[[0,3,["H4940"]],[3,5,["H7157"]],[5,7,["H3505"]],[7,10,["H6336"]],[10,13,["H8126"]],[13,16,["H4954"]],[16,18,["H4480","H428"]],[18,19,["H3318"]],[19,21,["H6882"]],[21,24,["H848"]]]},{"k":10360,"v":[[0,2,["H1121"]],[2,4,["H8007"]],[4,5,["H1035"]],[5,8,["H5200"]],[8,13,["H5854"]],[13,15,["H2677"]],[15,18,["H2680"]],[18,20,["H6882"]]]},{"k":10361,"v":[[0,3,["H4940"]],[3,6,["H5608"]],[6,8,["H3427"]],[8,10,["H3258"]],[10,12,["H8654"]],[12,14,["H8101"]],[14,16,["H7756"]],[16,17,["H1992"]],[17,20,["H7017"]],[20,22,["H935"]],[22,24,["H4480","H2575"]],[24,26,["H1"]],[26,29,["H1004"]],[29,31,["H7394"]]]},{"k":10362,"v":[[0,2,["H428"]],[2,3,["H1961"]],[3,5,["H1121"]],[5,7,["H1732"]],[7,8,["H834"]],[8,10,["H3205"]],[10,14,["H2275"]],[14,16,["H1060"]],[16,17,["H550"]],[17,19,["H293"]],[19,21,["H3159"]],[21,23,["H8145"]],[23,24,["H1840"]],[24,26,["H26"]],[26,28,["H3762"]]]},{"k":10363,"v":[[0,2,["H7992"]],[2,3,["H53"]],[3,5,["H1121"]],[5,7,["H4601"]],[7,9,["H1323"]],[9,11,["H8526"]],[11,12,["H4428"]],[12,14,["H1650"]],[14,16,["H7243"]],[16,17,["H138"]],[17,19,["H1121"]],[19,21,["H2294"]]]},{"k":10364,"v":[[0,2,["H2549"]],[2,3,["H8203"]],[3,5,["H37"]],[5,7,["H8345"]],[7,8,["H3507"]],[8,10,["H5698"]],[10,12,["H802"]]]},{"k":10365,"v":[[0,2,["H8337"]],[2,4,["H3205"]],[4,8,["H2275"]],[8,10,["H8033"]],[10,12,["H4427"]],[12,13,["H7651"]],[13,14,["H8141"]],[14,16,["H8337"]],[16,17,["H2320"]],[17,20,["H3389"]],[20,22,["H4427"]],[22,23,["H7970"]],[23,25,["H7969"]],[25,26,["H8141"]]]},{"k":10366,"v":[[0,2,["H428"]],[2,4,["H3205"]],[4,8,["H3389"]],[8,9,["H8092"]],[9,11,["H7727"]],[11,13,["H5416"]],[13,15,["H8010"]],[15,16,["H702"]],[16,18,["H1340"]],[18,20,["H1323"]],[20,22,["H5988"]]]},{"k":10367,"v":[[0,1,["H2984"]],[1,4,["H476"]],[4,6,["H467"]]]},{"k":10368,"v":[[0,2,["H5052"]],[2,4,["H5298"]],[4,6,["H3309"]]]},{"k":10369,"v":[[0,2,["H476"]],[2,4,["H450"]],[4,6,["H467"]],[6,7,["H8672"]]]},{"k":10370,"v":[[0,3,["H3605"]],[3,5,["H1121"]],[5,7,["H1732"]],[7,8,["H4480","H905"]],[8,10,["H1121"]],[10,13,["H6370"]],[13,15,["H8559"]],[15,17,["H269"]]]},{"k":10371,"v":[[0,2,["H8010"]],[2,3,["H1121"]],[3,5,["H7346"]],[5,6,["H29"]],[6,8,["H1121"]],[8,9,["H609"]],[9,11,["H1121"]],[11,12,["H3092"]],[12,14,["H1121"]]]},{"k":10372,"v":[[0,1,["H3141"]],[1,3,["H1121"]],[3,4,["H274"]],[4,6,["H1121"]],[6,7,["H3101"]],[7,9,["H1121"]]]},{"k":10373,"v":[[0,1,["H558"]],[1,3,["H1121"]],[3,4,["H5838"]],[4,6,["H1121"]],[6,7,["H3147"]],[7,9,["H1121"]]]},{"k":10374,"v":[[0,1,["H271"]],[1,3,["H1121"]],[3,4,["H2396"]],[4,6,["H1121"]],[6,7,["H4519"]],[7,9,["H1121"]]]},{"k":10375,"v":[[0,1,["H526"]],[1,3,["H1121"]],[3,4,["H2977"]],[4,6,["H1121"]]]},{"k":10376,"v":[[0,3,["H1121"]],[3,5,["H2977"]],[5,8,["H1060"]],[8,9,["H3110"]],[9,11,["H8145"]],[11,12,["H3079"]],[12,14,["H7992"]],[14,15,["H6667"]],[15,17,["H7243"]],[17,18,["H7967"]]]},{"k":10377,"v":[[0,3,["H1121"]],[3,5,["H3079"]],[5,6,["H3204"]],[6,8,["H1121"]],[8,9,["H6667"]],[9,11,["H1121"]]]},{"k":10378,"v":[[0,3,["H1121"]],[3,5,["H3204"]],[5,6,["H617"]],[6,7,["H7597"]],[7,9,["H1121"]]]},{"k":10379,"v":[[0,1,["H4443"]],[1,4,["H6305"]],[4,6,["H8137"]],[6,7,["H3359"]],[7,8,["H1953"]],[8,10,["H5072"]]]},{"k":10380,"v":[[0,3,["H1121"]],[3,5,["H6305"]],[5,7,["H2216"]],[7,9,["H8096"]],[9,12,["H1121"]],[12,14,["H2216"]],[14,15,["H4918"]],[15,17,["H2608"]],[17,19,["H8019"]],[19,21,["H269"]]]},{"k":10381,"v":[[0,2,["H2807"]],[2,4,["H169"]],[4,6,["H1296"]],[6,8,["H2619"]],[8,9,["H3142"]],[9,10,["H2568"]]]},{"k":10382,"v":[[0,3,["H1121"]],[3,5,["H2608"]],[5,6,["H6410"]],[6,8,["H3470"]],[8,10,["H1121"]],[10,12,["H7509"]],[12,14,["H1121"]],[14,16,["H770"]],[16,18,["H1121"]],[18,20,["H5662"]],[20,22,["H1121"]],[22,24,["H7935"]]]},{"k":10383,"v":[[0,3,["H1121"]],[3,5,["H7935"]],[5,6,["H8098"]],[6,9,["H1121"]],[9,11,["H8098"]],[11,12,["H2407"]],[12,14,["H3008"]],[14,16,["H1282"]],[16,18,["H5294"]],[18,20,["H8202"]],[20,21,["H8337"]]]},{"k":10384,"v":[[0,3,["H1121"]],[3,5,["H5294"]],[5,6,["H454"]],[6,8,["H2396"]],[8,10,["H5840"]],[10,11,["H7969"]]]},{"k":10385,"v":[[0,3,["H1121"]],[3,5,["H454"]],[5,7,["H1939"]],[7,9,["H475"]],[9,11,["H6411"]],[11,13,["H6126"]],[13,15,["H3110"]],[15,17,["H1806"]],[17,19,["H6054"]],[19,20,["H7651"]]]},{"k":10386,"v":[[0,2,["H1121"]],[2,4,["H3063"]],[4,5,["H6557"]],[5,6,["H2696"]],[6,8,["H3756"]],[8,10,["H2354"]],[10,12,["H7732"]]]},{"k":10387,"v":[[0,2,["H7211"]],[2,4,["H1121"]],[4,6,["H7732"]],[6,7,["H3205","(H853)"]],[7,8,["H3189"]],[8,10,["H3189"]],[10,11,["H3205","(H853)"]],[11,12,["H267"]],[12,14,["H3855"]],[14,15,["H428"]],[15,18,["H4940"]],[18,21,["H6882"]]]},{"k":10388,"v":[[0,2,["H428"]],[2,6,["H1"]],[6,8,["H5862"]],[8,9,["H3157"]],[9,11,["H3457"]],[11,13,["H3031"]],[13,16,["H8034"]],[16,19,["H269"]],[19,21,["H6753"]]]},{"k":10389,"v":[[0,2,["H6439"]],[2,4,["H1"]],[4,6,["H1446"]],[6,8,["H5829"]],[8,10,["H1"]],[10,12,["H2364"]],[12,13,["H428"]],[13,16,["H1121"]],[16,18,["H2354"]],[18,20,["H1060"]],[20,22,["H672"]],[22,24,["H1"]],[24,26,["H1035"]]]},{"k":10390,"v":[[0,2,["H806"]],[2,4,["H1"]],[4,6,["H8620"]],[6,7,["H1961"]],[7,8,["H8147"]],[8,9,["H802"]],[9,10,["H2458"]],[10,12,["H5292"]]]},{"k":10391,"v":[[0,2,["H5292"]],[2,3,["H3205"]],[3,4,["(H853)"]],[4,5,["H275"]],[5,7,["H2660"]],[7,9,["H8488"]],[9,11,["H326"]],[11,12,["H428"]],[12,15,["H1121"]],[15,17,["H5292"]]]},{"k":10392,"v":[[0,3,["H1121"]],[3,5,["H2458"]],[5,7,["H6889"]],[7,9,["H3328"]],[9,11,["H869"]]]},{"k":10393,"v":[[0,2,["H6976"]],[2,3,["H3205","(H853)"]],[3,4,["H6036"]],[4,6,["H6637"]],[6,9,["H4940"]],[9,11,["H316"]],[11,13,["H1121"]],[13,15,["H2037"]]]},{"k":10394,"v":[[0,2,["H3258"]],[2,3,["H1961"]],[3,5,["H3513"]],[5,8,["H4480","H251"]],[8,11,["H517"]],[11,12,["H7121"]],[12,14,["H8034"]],[14,15,["H3258"]],[15,16,["H559"]],[16,17,["H3588"]],[17,19,["H3205"]],[19,22,["H6090"]]]},{"k":10395,"v":[[0,2,["H3258"]],[2,3,["H7121"]],[3,6,["H430"]],[6,8,["H3478"]],[8,9,["H559"]],[9,11,["H518"]],[11,16,["H1288","H1288"]],[16,18,["H7235","(H853)"]],[18,20,["H1366"]],[20,24,["H3027"]],[24,26,["H1961"]],[26,27,["H5973"]],[27,33,["H6213"]],[33,35,["H4480"]],[35,36,["H7451"]],[36,40,["H1115"]],[40,41,["H6087"]],[41,44,["H430"]],[44,45,["H935"]],[45,46,["(H853)"]],[46,48,["H834"]],[48,50,["H7592"]]]},{"k":10396,"v":[[0,2,["H3620"]],[2,4,["H251"]],[4,6,["H7746"]],[6,7,["H3205","(H853)"]],[7,8,["H4243"]],[8,9,["H1931"]],[9,12,["H1"]],[12,14,["H850"]]]},{"k":10397,"v":[[0,2,["H850"]],[2,3,["H3205","(H853)"]],[3,4,["H1051"]],[4,6,["H6454"]],[6,8,["H8468"]],[8,10,["H1"]],[10,12,["H5904"]],[12,13,["H428"]],[13,16,["H376"]],[16,18,["H7397"]]]},{"k":10398,"v":[[0,3,["H1121"]],[3,5,["H7073"]],[5,6,["H6274"]],[6,8,["H8304"]],[8,11,["H1121"]],[11,13,["H6274"]],[13,14,["H2867"]]]},{"k":10399,"v":[[0,2,["H4587"]],[2,3,["H3205","(H853)"]],[3,4,["H6084"]],[4,6,["H8304"]],[6,7,["H3205","(H853)"]],[7,8,["H3097"]],[8,10,["H1"]],[10,13,["H1516"]],[13,15,["H2798"]],[15,16,["H3588"]],[16,18,["H1961"]],[18,19,["H2796"]]]},{"k":10400,"v":[[0,3,["H1121"]],[3,5,["H3612"]],[5,7,["H1121"]],[7,9,["H3312"]],[9,10,["H5900"]],[10,11,["H425"]],[11,13,["H5277"]],[13,16,["H1121"]],[16,18,["H425"]],[18,20,["H7073"]]]},{"k":10401,"v":[[0,3,["H1121"]],[3,5,["H3094"]],[5,6,["H2128"]],[6,8,["H2129"]],[8,9,["H8493"]],[9,11,["H840"]]]},{"k":10402,"v":[[0,3,["H1121"]],[3,5,["H5834"]],[5,7,["H3500"]],[7,9,["H4778"]],[9,11,["H6081"]],[11,13,["H3210"]],[13,16,["H2029","(H853)"]],[16,17,["H4813"]],[17,19,["H8060"]],[19,21,["H3431"]],[21,23,["H1"]],[23,25,["H851"]]]},{"k":10403,"v":[[0,3,["H802"]],[3,4,["H3057"]],[4,5,["H3205","(H853)"]],[5,6,["H3382"]],[6,8,["H1"]],[8,10,["H1446"]],[10,12,["H2268"]],[12,14,["H1"]],[14,16,["H7755"]],[16,18,["H3354"]],[18,20,["H1"]],[20,22,["H2182"]],[22,24,["H428"]],[24,27,["H1121"]],[27,29,["H1332"]],[29,31,["H1323"]],[31,33,["H6547"]],[33,34,["H834"]],[34,35,["H4778"]],[35,36,["H3947"]]]},{"k":10404,"v":[[0,3,["H1121"]],[3,6,["H802"]],[6,7,["H1940"]],[7,9,["H269"]],[9,11,["H5163"]],[11,13,["H1"]],[13,15,["H7084"]],[15,17,["H1636"]],[17,19,["H851"]],[19,21,["H4602"]]]},{"k":10405,"v":[[0,3,["H1121"]],[3,5,["H7889"]],[5,7,["H550"]],[7,9,["H7441"]],[9,10,["H1135"]],[10,12,["H8436"]],[12,15,["H1121"]],[15,17,["H3469"]],[17,19,["H2105"]],[19,21,["H1132"]]]},{"k":10406,"v":[[0,2,["H1121"]],[2,4,["H7956"]],[4,6,["H1121"]],[6,8,["H3063"]],[8,10,["H6147"]],[10,12,["H1"]],[12,14,["H3922"]],[14,16,["H3935"]],[16,18,["H1"]],[18,20,["H4762"]],[20,23,["H4940"]],[23,26,["H1004"]],[26,30,["H5656"]],[30,32,["H948"]],[32,35,["H1004"]],[35,37,["H791"]]]},{"k":10407,"v":[[0,2,["H3137"]],[2,5,["H376"]],[5,7,["H3578"]],[7,9,["H3101"]],[9,11,["H8315"]],[11,12,["H834"]],[12,15,["H1166"]],[15,17,["H4124"]],[17,19,["H3433"]],[19,23,["H6267"]],[23,24,["H1697"]]]},{"k":10408,"v":[[0,1,["H1992"]],[1,4,["H3335"]],[4,8,["H3427"]],[8,10,["H5196"]],[10,12,["H1448"]],[12,13,["H8033"]],[13,15,["H3427"]],[15,16,["H5973"]],[16,18,["H4428"]],[18,21,["H4399"]]]},{"k":10409,"v":[[0,2,["H1121"]],[2,4,["H8095"]],[4,6,["H5241"]],[6,8,["H3226"]],[8,9,["H3402"]],[9,10,["H2226"]],[10,12,["H7586"]]]},{"k":10410,"v":[[0,1,["H7967"]],[1,3,["H1121"]],[3,4,["H4017"]],[4,6,["H1121"]],[6,7,["H4927"]],[7,9,["H1121"]]]},{"k":10411,"v":[[0,3,["H1121"]],[3,5,["H4927"]],[5,6,["H2536"]],[6,8,["H1121"]],[8,9,["H2139"]],[9,11,["H1121"]],[11,12,["H8096"]],[12,14,["H1121"]]]},{"k":10412,"v":[[0,2,["H8096"]],[2,4,["H8337","H6240"]],[4,5,["H1121"]],[5,7,["H8337"]],[7,8,["H1323"]],[8,11,["H251"]],[11,13,["H369"]],[13,14,["H7227"]],[14,15,["H1121"]],[15,16,["H3808"]],[16,18,["H3605"]],[18,20,["H4940"]],[20,21,["H7235"]],[21,23,["H5704"]],[23,25,["H1121"]],[25,27,["H3063"]]]},{"k":10413,"v":[[0,3,["H3427"]],[3,5,["H884"]],[5,7,["H4137"]],[7,9,["H2705"]]]},{"k":10414,"v":[[0,3,["H1090"]],[3,6,["H6107"]],[6,9,["H8434"]]]},{"k":10415,"v":[[0,3,["H1328"]],[3,6,["H2767"]],[6,9,["H6860"]]]},{"k":10416,"v":[[0,3,["H1024"]],[3,5,["H2702"]],[5,8,["H1011"]],[8,11,["H8189"]],[11,12,["H428"]],[12,15,["H5892"]],[15,16,["H5704"]],[16,18,["H4427"]],[18,20,["H1732"]]]},{"k":10417,"v":[[0,3,["H2691"]],[3,5,["H5862"]],[5,7,["H5871"]],[7,8,["H7417"]],[8,10,["H8507"]],[10,12,["H6228"]],[12,13,["H2568"]],[13,14,["H5892"]]]},{"k":10418,"v":[[0,2,["H3605"]],[2,4,["H2691"]],[4,5,["H834"]],[5,8,["H5439"]],[8,10,["H428"]],[10,11,["H5892"]],[11,12,["H5704"]],[12,13,["H1168"]],[13,14,["H2063"]],[14,17,["H4186"]],[17,20,["H3187"]]]},{"k":10419,"v":[[0,2,["H4877"]],[2,4,["H3230"]],[4,6,["H3144"]],[6,8,["H1121"]],[8,10,["H558"]]]},{"k":10420,"v":[[0,2,["H3100"]],[2,4,["H3058"]],[4,6,["H1121"]],[6,8,["H3143"]],[8,10,["H1121"]],[10,12,["H8304"]],[12,14,["H1121"]],[14,16,["H6221"]]]},{"k":10421,"v":[[0,2,["H454"]],[2,4,["H3291"]],[4,6,["H3439"]],[6,8,["H6222"]],[8,10,["H5717"]],[10,12,["H3450"]],[12,14,["H1141"]]]},{"k":10422,"v":[[0,2,["H2124"]],[2,4,["H1121"]],[4,6,["H8230"]],[6,8,["H1121"]],[8,10,["H438"]],[10,12,["H1121"]],[12,14,["H3042"]],[14,16,["H1121"]],[16,18,["H8113"]],[18,20,["H1121"]],[20,22,["H8098"]]]},{"k":10423,"v":[[0,1,["H428"]],[1,2,["H935"]],[2,5,["H8034"]],[5,7,["H5387"]],[7,10,["H4940"]],[10,13,["H1004"]],[13,16,["H1"]],[16,17,["H6555"]],[17,18,["H7230"]]]},{"k":10424,"v":[[0,3,["H1980"]],[3,6,["H3996"]],[6,8,["H1446"]],[8,10,["H5704"]],[10,13,["H4217"]],[13,16,["H1516"]],[16,18,["H1245"]],[18,19,["H4829"]],[19,22,["H6629"]]]},{"k":10425,"v":[[0,3,["H4672"]],[3,4,["H8082"]],[4,5,["H4829"]],[5,7,["H2896"]],[7,10,["H776"]],[10,12,["H7342","H3027"]],[12,14,["H8252"]],[14,16,["H7961"]],[16,17,["H3588"]],[17,19,["H4480"]],[19,20,["H2526"]],[20,22,["H3427"]],[22,23,["H8033"]],[23,25,["H6440"]]]},{"k":10426,"v":[[0,2,["H428"]],[2,3,["H3789"]],[3,5,["H8034"]],[5,6,["H935"]],[6,9,["H3117"]],[9,11,["H3169"]],[11,12,["H4428"]],[12,14,["H3063"]],[14,16,["H5221","(H853)"]],[16,18,["H168"]],[18,21,["H4583"]],[21,22,["H834"]],[22,24,["H4672"]],[24,25,["H8033"]],[25,29,["H2763"]],[29,30,["H5704"]],[30,31,["H2088"]],[31,32,["H3117"]],[32,34,["H3427"]],[34,37,["H8478"]],[37,38,["H3588"]],[38,41,["H4829"]],[41,42,["H8033"]],[42,45,["H6629"]]]},{"k":10427,"v":[[0,3,["H4480"]],[3,6,["H4480"]],[6,8,["H1121"]],[8,10,["H8095"]],[10,11,["H2568"]],[11,12,["H3967"]],[12,13,["H376"]],[13,14,["H1980"]],[14,16,["H2022"]],[16,17,["H8165"]],[17,21,["H7218"]],[21,22,["H6410"]],[22,24,["H5294"]],[24,26,["H7509"]],[26,28,["H5816"]],[28,30,["H1121"]],[30,32,["H3469"]]]},{"k":10428,"v":[[0,3,["H5221","(H853)"]],[3,5,["H7611"]],[5,8,["H6002"]],[8,11,["H6413"]],[11,13,["H3427"]],[13,14,["H8033"]],[14,15,["H5704"]],[15,16,["H2088"]],[16,17,["H3117"]]]},{"k":10429,"v":[[0,3,["H1121"]],[3,5,["H7205"]],[5,7,["H1060"]],[7,9,["H3478"]],[9,10,["H3588"]],[10,11,["H1931"]],[11,14,["H1060"]],[14,19,["H2490"]],[19,21,["H1"]],[21,22,["H3326"]],[22,24,["H1062"]],[24,26,["H5414"]],[26,29,["H1121"]],[29,31,["H3130"]],[31,33,["H1121"]],[33,35,["H3478"]],[35,43,["H3808","H3187"]],[43,46,["H1062"]]]},{"k":10430,"v":[[0,1,["H3588"]],[1,2,["H3063"]],[2,3,["H1396"]],[3,6,["H251"]],[6,8,["H4480"]],[8,13,["H5057"]],[13,16,["H1062"]],[16,18,["H3130"]]]},{"k":10431,"v":[[0,2,["H1121"]],[2,6,["H7205"]],[6,8,["H1060"]],[8,10,["H3478"]],[10,12,["H2585"]],[12,14,["H6396"]],[14,15,["H2696"]],[15,17,["H3756"]]]},{"k":10432,"v":[[0,2,["H1121"]],[2,4,["H3100"]],[4,5,["H8098"]],[5,7,["H1121"]],[7,8,["H1463"]],[8,10,["H1121"]],[10,11,["H8096"]],[11,13,["H1121"]]]},{"k":10433,"v":[[0,1,["H4318"]],[1,3,["H1121"]],[3,4,["H7211"]],[4,6,["H1121"]],[6,7,["H1168"]],[7,9,["H1121"]]]},{"k":10434,"v":[[0,1,["H880"]],[1,3,["H1121"]],[3,4,["H834"]],[4,5,["H8407"]],[5,6,["H4428"]],[6,8,["H804"]],[8,10,["H1540"]],[10,12,["H1931"]],[12,14,["H5387"]],[14,17,["H7206"]]]},{"k":10435,"v":[[0,3,["H251"]],[3,6,["H4940"]],[6,9,["H3187"]],[9,12,["H8435"]],[12,17,["H7218"]],[17,18,["H3273"]],[18,20,["H2148"]]]},{"k":10436,"v":[[0,2,["H1106"]],[2,4,["H1121"]],[4,6,["H5811"]],[6,8,["H1121"]],[8,10,["H8087"]],[10,12,["H1121"]],[12,14,["H3100"]],[14,15,["H1931"]],[15,16,["H3427"]],[16,18,["H6177"]],[18,20,["H5704"]],[20,21,["H5015"]],[21,23,["H1186"]]]},{"k":10437,"v":[[0,2,["H4217"]],[2,4,["H3427"]],[4,5,["H5704"]],[5,8,["H935"]],[8,11,["H4057"]],[11,12,["H4480"]],[12,14,["H5104"]],[14,15,["H6578"]],[15,16,["H3588"]],[16,18,["H4735"]],[18,20,["H7235"]],[20,23,["H776"]],[23,25,["H1568"]]]},{"k":10438,"v":[[0,4,["H3117"]],[4,6,["H7586"]],[6,8,["H6213"]],[8,9,["H4421"]],[9,10,["H5973"]],[10,12,["H1905"]],[12,14,["H5307"]],[14,17,["H3027"]],[17,20,["H3427"]],[20,23,["H168"]],[23,25,["H5921","H3605","H6440"]],[25,27,["H4217"]],[27,30,["H1568"]]]},{"k":10439,"v":[[0,3,["H1121"]],[3,5,["H1410"]],[5,6,["H3427"]],[6,8,["H5048"]],[8,12,["H776"]],[12,14,["H1316"]],[14,15,["H5704"]],[15,16,["H5548"]]]},{"k":10440,"v":[[0,1,["H3100"]],[1,3,["H7218"]],[3,5,["H8223"]],[5,7,["H4932"]],[7,9,["H3285"]],[9,11,["H8202"]],[11,13,["H1316"]]]},{"k":10441,"v":[[0,3,["H251"]],[3,6,["H1004"]],[6,9,["H1"]],[9,11,["H4317"]],[11,13,["H4918"]],[13,15,["H7652"]],[15,17,["H3140"]],[17,19,["H3275"]],[19,21,["H2127"]],[21,23,["H5677"]],[23,24,["H7651"]]]},{"k":10442,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H32"]],[6,8,["H1121"]],[8,10,["H2359"]],[10,12,["H1121"]],[12,14,["H3386"]],[14,16,["H1121"]],[16,18,["H1568"]],[18,20,["H1121"]],[20,22,["H4317"]],[22,24,["H1121"]],[24,26,["H3454"]],[26,28,["H1121"]],[28,30,["H3163"]],[30,32,["H1121"]],[32,34,["H938"]]]},{"k":10443,"v":[[0,1,["H277"]],[1,3,["H1121"]],[3,5,["H5661"]],[5,7,["H1121"]],[7,9,["H1476"]],[9,10,["H7218"]],[10,13,["H1004"]],[13,16,["H1"]]]},{"k":10444,"v":[[0,3,["H3427"]],[3,5,["H1568"]],[5,7,["H1316"]],[7,11,["H1323"]],[11,14,["H3605"]],[14,16,["H4054"]],[16,18,["H8289"]],[18,19,["H5921"]],[19,21,["H8444"]]]},{"k":10445,"v":[[0,1,["H3605"]],[1,6,["H3187"]],[6,9,["H3117"]],[9,11,["H3147"]],[11,12,["H4428"]],[12,14,["H3063"]],[14,18,["H3117"]],[18,20,["H3379"]],[20,21,["H4428"]],[21,23,["H3478"]]]},{"k":10446,"v":[[0,2,["H1121"]],[2,4,["H7205"]],[4,7,["H1425"]],[7,9,["H2677"]],[9,11,["H7626"]],[11,13,["H4519"]],[13,14,["H4480"]],[14,16,["H1121","H2428"]],[16,17,["H376"]],[17,20,["H5375"]],[20,21,["H4043"]],[21,23,["H2719"]],[23,26,["H1869"]],[26,28,["H7198"]],[28,30,["H3925"]],[30,32,["H4421"]],[32,34,["H702"]],[34,36,["H705"]],[36,37,["H505"]],[37,38,["H7651"]],[38,39,["H3967"]],[39,41,["H8346"]],[41,44,["H3318"]],[44,47,["H6635"]]]},{"k":10447,"v":[[0,3,["H6213"]],[3,4,["H4421"]],[4,5,["H5973"]],[5,7,["H1905"]],[7,9,["H3195"]],[9,11,["H5305"]],[11,13,["H5114"]]]},{"k":10448,"v":[[0,4,["H5826"]],[4,5,["H5921"]],[5,9,["H1905"]],[9,11,["H5414"]],[11,14,["H3027"]],[14,16,["H3605"]],[16,19,["H7945","H5973"]],[19,21,["H3588"]],[21,23,["H2199"]],[23,25,["H430"]],[25,28,["H4421"]],[28,32,["H6279"]],[32,35,["H3588"]],[35,39,["H982"]],[39,41,[]]]},{"k":10449,"v":[[0,4,["H7617"]],[4,6,["H4735"]],[6,9,["H1581"]],[9,10,["H2572"]],[10,11,["H505"]],[11,14,["H6629"]],[14,16,["H3967"]],[16,18,["H2572"]],[18,19,["H505"]],[19,22,["H2543"]],[22,24,["H505"]],[24,27,["H5315","H120"]],[27,29,["H3967"]],[29,30,["H505"]]]},{"k":10450,"v":[[0,1,["H3588"]],[1,4,["H5307"]],[4,5,["H7227"]],[5,6,["H2491"]],[6,7,["H3588"]],[7,9,["H4421"]],[9,12,["H4480","H430"]],[12,15,["H3427"]],[15,18,["H8478"]],[18,19,["H5704"]],[19,21,["H1473"]]]},{"k":10451,"v":[[0,3,["H1121"]],[3,6,["H2677"]],[6,7,["H7626"]],[7,9,["H4519"]],[9,10,["H3427"]],[10,13,["H776"]],[13,14,["H1992"]],[14,15,["H7235"]],[15,17,["H4480","H1316"]],[17,18,["H5704"]],[18,19,["H1179"]],[19,21,["H8149"]],[21,24,["H2022"]],[24,25,["H2768"]]]},{"k":10452,"v":[[0,2,["H428"]],[2,5,["H7218"]],[5,8,["H1004"]],[8,11,["H1"]],[11,13,["H6081"]],[13,15,["H3469"]],[15,17,["H447"]],[17,19,["H5837"]],[19,21,["H3414"]],[21,23,["H1938"]],[23,25,["H3164"]],[25,26,["H1368"]],[26,27,["H376"]],[27,29,["H2428"]],[29,30,["H8034"]],[30,31,["H376"]],[31,33,["H7218"]],[33,36,["H1004"]],[36,39,["H1"]]]},{"k":10453,"v":[[0,3,["H4603"]],[3,6,["H430"]],[6,9,["H1"]],[9,13,["H2181"]],[13,14,["H310"]],[14,16,["H430"]],[16,19,["H5971"]],[19,22,["H776"]],[22,23,["H834"]],[23,24,["H430"]],[24,25,["H8045"]],[25,26,["H4480","H6440"]],[26,27,[]]]},{"k":10454,"v":[[0,3,["H430"]],[3,5,["H3478"]],[5,7,["H5782","(H853)"]],[7,9,["H7307"]],[9,11,["H6322"]],[11,12,["H4428"]],[12,14,["H804"]],[14,17,["H7307"]],[17,19,["H8407"]],[19,20,["H4428"]],[20,22,["H804"]],[22,27,["H1540"]],[27,30,["H7206"]],[30,33,["H1425"]],[33,36,["H2677"]],[36,37,["H7626"]],[37,39,["H4519"]],[39,41,["H935"]],[41,44,["H2477"]],[44,46,["H2249"]],[46,48,["H2024"]],[48,52,["H5104"]],[52,53,["H1470"]],[53,54,["H5704"]],[54,55,["H2088"]],[55,56,["H3117"]]]},{"k":10455,"v":[[0,2,["H1121"]],[2,4,["H3878"]],[4,5,["H1648"]],[5,6,["H6955"]],[6,8,["H4847"]]]},{"k":10456,"v":[[0,3,["H1121"]],[3,5,["H6955"]],[5,6,["H6019"]],[6,7,["H3324"]],[7,9,["H2275"]],[9,11,["H5816"]]]},{"k":10457,"v":[[0,3,["H1121"]],[3,5,["H6019"]],[5,6,["H175"]],[6,8,["H4872"]],[8,10,["H4813"]],[10,12,["H1121"]],[12,15,["H175"]],[15,16,["H5070"]],[16,18,["H30"]],[18,19,["H499"]],[19,21,["H385"]]]},{"k":10458,"v":[[0,1,["H499"]],[1,2,["H3205","(H853)"]],[2,3,["H6372"]],[3,4,["H6372"]],[4,5,["H3205","(H853)"]],[5,6,["H50"]]]},{"k":10459,"v":[[0,2,["H50"]],[2,3,["H3205","(H853)"]],[3,4,["H1231"]],[4,6,["H1231"]],[6,7,["H3205","(H853)"]],[7,8,["H5813"]]]},{"k":10460,"v":[[0,2,["H5813"]],[2,3,["H3205","(H853)"]],[3,4,["H2228"]],[4,6,["H2228"]],[6,7,["H3205","(H853)"]],[7,8,["H4812"]]]},{"k":10461,"v":[[0,1,["H4812"]],[1,2,["H3205","(H853)"]],[2,3,["H568"]],[3,5,["H568"]],[5,6,["H3205","(H853)"]],[6,7,["H285"]]]},{"k":10462,"v":[[0,2,["H285"]],[2,3,["H3205","(H853)"]],[3,4,["H6659"]],[4,6,["H6659"]],[6,7,["H3205","(H853)"]],[7,8,["H290"]]]},{"k":10463,"v":[[0,2,["H290"]],[2,3,["H3205","(H853)"]],[3,4,["H5838"]],[4,6,["H5838"]],[6,7,["H3205","(H853)"]],[7,8,["H3110"]]]},{"k":10464,"v":[[0,2,["H3110"]],[2,3,["H3205","(H853)"]],[3,4,["H5838"]],[4,5,["H1931"]],[5,8,["H834"]],[8,12,["H3547"]],[12,15,["H1004"]],[15,16,["H834"]],[16,17,["H8010"]],[17,18,["H1129"]],[18,20,["H3389"]]]},{"k":10465,"v":[[0,2,["H5838"]],[2,3,["H3205","(H853)"]],[3,4,["H568"]],[4,6,["H568"]],[6,7,["H3205","(H853)"]],[7,8,["H285"]]]},{"k":10466,"v":[[0,2,["H285"]],[2,3,["H3205","(H853)"]],[3,4,["H6659"]],[4,6,["H6659"]],[6,7,["H3205","(H853)"]],[7,8,["H7967"]]]},{"k":10467,"v":[[0,2,["H7967"]],[2,3,["H3205","(H853)"]],[3,4,["H2518"]],[4,6,["H2518"]],[6,7,["H3205","(H853)"]],[7,8,["H5838"]]]},{"k":10468,"v":[[0,2,["H5838"]],[2,3,["H3205","(H853)"]],[3,4,["H8304"]],[4,6,["H8304"]],[6,7,["H3205","(H853)"]],[7,8,["H3087"]]]},{"k":10469,"v":[[0,2,["H3087"]],[2,3,["H1980"]],[3,8,["H3068"]],[8,10,["H1540","(H853)"]],[10,11,["H3063"]],[11,13,["H3389"]],[13,16,["H3027"]],[16,18,["H5019"]]]},{"k":10470,"v":[[0,2,["H1121"]],[2,4,["H3878"]],[4,5,["H1648"]],[5,6,["H6955"]],[6,8,["H4847"]]]},{"k":10471,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H1121"]],[8,10,["H1648"]],[10,11,["H3845"]],[11,13,["H8096"]]]},{"k":10472,"v":[[0,3,["H1121"]],[3,5,["H6955"]],[5,7,["H6019"]],[7,9,["H3324"]],[9,11,["H2275"]],[11,13,["H5816"]]]},{"k":10473,"v":[[0,2,["H1121"]],[2,4,["H4847"]],[4,5,["H4249"]],[5,7,["H4187"]],[7,9,["H428"]],[9,12,["H4940"]],[12,15,["H3881"]],[15,19,["H1"]]]},{"k":10474,"v":[[0,2,["H1648"]],[2,3,["H3845"]],[3,5,["H1121"]],[5,6,["H3189"]],[6,8,["H1121"]],[8,9,["H2155"]],[9,11,["H1121"]]]},{"k":10475,"v":[[0,1,["H3098"]],[1,3,["H1121"]],[3,4,["H5714"]],[4,6,["H1121"]],[6,7,["H2226"]],[7,9,["H1121"]],[9,10,["H2979"]],[10,12,["H1121"]]]},{"k":10476,"v":[[0,2,["H1121"]],[2,4,["H6955"]],[4,5,["H5992"]],[5,7,["H1121"]],[7,8,["H7141"]],[8,10,["H1121"]],[10,11,["H617"]],[11,13,["H1121"]]]},{"k":10477,"v":[[0,1,["H511"]],[1,3,["H1121"]],[3,5,["H43"]],[5,7,["H1121"]],[7,9,["H617"]],[9,11,["H1121"]]]},{"k":10478,"v":[[0,1,["H8480"]],[1,3,["H1121"]],[3,4,["H222"]],[4,6,["H1121"]],[6,7,["H5818"]],[7,9,["H1121"]],[9,11,["H7586"]],[11,13,["H1121"]]]},{"k":10479,"v":[[0,3,["H1121"]],[3,5,["H511"]],[5,6,["H6022"]],[6,8,["H287"]]]},{"k":10480,"v":[[0,3,["H511"]],[3,5,["H1121"]],[5,7,["H511"]],[7,8,["H6689"]],[8,10,["H1121"]],[10,12,["H5184"]],[12,14,["H1121"]]]},{"k":10481,"v":[[0,1,["H446"]],[1,3,["H1121"]],[3,4,["H3395"]],[4,6,["H1121"]],[6,7,["H511"]],[7,9,["H1121"]]]},{"k":10482,"v":[[0,3,["H1121"]],[3,5,["H8050"]],[5,7,["H1060"]],[7,8,["H2059"]],[8,10,["H29"]]]},{"k":10483,"v":[[0,2,["H1121"]],[2,4,["H4847"]],[4,5,["H4249"]],[5,6,["H3845"]],[6,8,["H1121"]],[8,9,["H8096"]],[9,11,["H1121"]],[11,12,["H5798"]],[12,14,["H1121"]]]},{"k":10484,"v":[[0,1,["H8092"]],[1,3,["H1121"]],[3,4,["H2293"]],[4,6,["H1121"]],[6,7,["H6222"]],[7,9,["H1121"]]]},{"k":10485,"v":[[0,2,["H428"]],[2,5,["H834"]],[5,6,["H1732"]],[6,7,["H5975"]],[7,8,["H5921"]],[8,10,["H3027"]],[10,12,["H7892"]],[12,15,["H1004"]],[15,18,["H3068"]],[18,22,["H4480","H727"]],[22,24,["H4480","H4494"]]]},{"k":10486,"v":[[0,3,["H1961","H8334"]],[3,4,["H6440"]],[4,7,["H4908"]],[7,10,["H168"]],[10,13,["H4150"]],[13,15,["H7892"]],[15,16,["H5704"]],[16,17,["H8010"]],[17,19,["H1129","(H853)"]],[19,21,["H1004"]],[21,24,["H3068"]],[24,26,["H3389"]],[26,30,["H5975"]],[30,31,["H5921"]],[31,33,["H5656"]],[33,37,["H4941"]]]},{"k":10487,"v":[[0,2,["H428"]],[2,6,["H5975"]],[6,9,["H1121"]],[9,12,["H4480","H1121"]],[12,15,["H6956"]],[15,16,["H1968"]],[16,18,["H7891"]],[18,20,["H1121"]],[20,22,["H3100"]],[22,24,["H1121"]],[24,26,["H8050"]]]},{"k":10488,"v":[[0,2,["H1121"]],[2,4,["H511"]],[4,6,["H1121"]],[6,8,["H3395"]],[8,10,["H1121"]],[10,12,["H447"]],[12,14,["H1121"]],[14,16,["H8430"]]]},{"k":10489,"v":[[0,2,["H1121"]],[2,4,["H6689"]],[4,6,["H1121"]],[6,8,["H511"]],[8,10,["H1121"]],[10,12,["H4287"]],[12,14,["H1121"]],[14,16,["H6022"]]]},{"k":10490,"v":[[0,2,["H1121"]],[2,4,["H511"]],[4,6,["H1121"]],[6,8,["H3100"]],[8,10,["H1121"]],[10,12,["H5838"]],[12,14,["H1121"]],[14,16,["H6846"]]]},{"k":10491,"v":[[0,2,["H1121"]],[2,4,["H8480"]],[4,6,["H1121"]],[6,8,["H617"]],[8,10,["H1121"]],[10,12,["H43"]],[12,14,["H1121"]],[14,16,["H7141"]]]},{"k":10492,"v":[[0,2,["H1121"]],[2,4,["H3324"]],[4,6,["H1121"]],[6,8,["H6955"]],[8,10,["H1121"]],[10,12,["H3878"]],[12,14,["H1121"]],[14,16,["H3478"]]]},{"k":10493,"v":[[0,3,["H251"]],[3,4,["H623"]],[4,6,["H5975"]],[6,7,["H5921"]],[7,10,["H3225"]],[10,12,["H623"]],[12,14,["H1121"]],[14,16,["H1296"]],[16,18,["H1121"]],[18,20,["H8092"]]]},{"k":10494,"v":[[0,2,["H1121"]],[2,4,["H4317"]],[4,6,["H1121"]],[6,8,["H1202"]],[8,10,["H1121"]],[10,12,["H4441"]]]},{"k":10495,"v":[[0,2,["H1121"]],[2,4,["H867"]],[4,6,["H1121"]],[6,8,["H2226"]],[8,10,["H1121"]],[10,12,["H5718"]]]},{"k":10496,"v":[[0,2,["H1121"]],[2,4,["H387"]],[4,6,["H1121"]],[6,8,["H2155"]],[8,10,["H1121"]],[10,12,["H8096"]]]},{"k":10497,"v":[[0,2,["H1121"]],[2,4,["H3189"]],[4,6,["H1121"]],[6,8,["H1648"]],[8,10,["H1121"]],[10,12,["H3878"]]]},{"k":10498,"v":[[0,3,["H251"]],[3,5,["H1121"]],[5,7,["H4847"]],[7,9,["H5921"]],[9,12,["H8040"]],[12,13,["H387"]],[13,15,["H1121"]],[15,17,["H7029"]],[17,19,["H1121"]],[19,21,["H5660"]],[21,23,["H1121"]],[23,25,["H4409"]]]},{"k":10499,"v":[[0,2,["H1121"]],[2,4,["H2811"]],[4,6,["H1121"]],[6,8,["H558"]],[8,10,["H1121"]],[10,12,["H2518"]]]},{"k":10500,"v":[[0,2,["H1121"]],[2,4,["H557"]],[4,6,["H1121"]],[6,8,["H1137"]],[8,10,["H1121"]],[10,12,["H8106"]]]},{"k":10501,"v":[[0,2,["H1121"]],[2,4,["H4249"]],[4,6,["H1121"]],[6,8,["H4187"]],[8,10,["H1121"]],[10,12,["H4847"]],[12,14,["H1121"]],[14,16,["H3878"]]]},{"k":10502,"v":[[0,2,["H251"]],[2,5,["H3881"]],[5,7,["H5414"]],[7,10,["H3605"]],[10,12,["H5656"]],[12,15,["H4908"]],[15,18,["H1004"]],[18,20,["H430"]]]},{"k":10503,"v":[[0,2,["H175"]],[2,5,["H1121"]],[5,6,["H6999"]],[6,7,["H5921"]],[7,9,["H4196"]],[9,13,["H5930"]],[13,15,["H5921"]],[15,17,["H4196"]],[17,19,["H7004"]],[19,24,["H3605"]],[24,26,["H4399"]],[26,31,["H6944","H6944"]],[31,36,["H3722"]],[36,37,["H5921"]],[37,38,["H3478"]],[38,41,["H3605"]],[41,42,["H834"]],[42,43,["H4872"]],[43,45,["H5650"]],[45,47,["H430"]],[47,49,["H6680"]]]},{"k":10504,"v":[[0,2,["H428"]],[2,5,["H1121"]],[5,7,["H175"]],[7,8,["H499"]],[8,10,["H1121"]],[10,11,["H6372"]],[11,13,["H1121"]],[13,14,["H50"]],[14,16,["H1121"]]]},{"k":10505,"v":[[0,1,["H1231"]],[1,3,["H1121"]],[3,4,["H5813"]],[4,6,["H1121"]],[6,7,["H2228"]],[7,9,["H1121"]]]},{"k":10506,"v":[[0,1,["H4812"]],[1,3,["H1121"]],[3,4,["H568"]],[4,6,["H1121"]],[6,7,["H285"]],[7,9,["H1121"]]]},{"k":10507,"v":[[0,1,["H6659"]],[1,3,["H1121"]],[3,4,["H290"]],[4,6,["H1121"]]]},{"k":10508,"v":[[0,2,["H428"]],[2,6,["H4186"]],[6,9,["H2918"]],[9,12,["H1366"]],[12,15,["H1121"]],[15,17,["H175"]],[17,20,["H4940"]],[20,23,["H6956"]],[23,24,["H3588"]],[24,26,["H1961"]],[26,28,["H1486"]]]},{"k":10509,"v":[[0,3,["H5414"]],[3,4,["(H853)"]],[4,5,["H2275"]],[5,8,["H776"]],[8,10,["H3063"]],[10,13,["H4054"]],[13,16,["H5439"]],[16,17,[]]]},{"k":10510,"v":[[0,3,["H7704"]],[3,6,["H5892"]],[6,9,["H2691"]],[9,12,["H5414"]],[12,14,["H3612"]],[14,16,["H1121"]],[16,18,["H3312"]]]},{"k":10511,"v":[[0,4,["H1121"]],[4,6,["H175"]],[6,8,["H5414","(H853)"]],[8,10,["H5892"]],[10,12,["H3063"]],[12,13,["(H853)"]],[13,14,["H2275"]],[14,18,["H4733"]],[18,20,["H3841"]],[20,23,["H4054"]],[23,25,["H3492"]],[25,27,["H851"]],[27,30,["H4054"]]]},{"k":10512,"v":[[0,2,["H2432"]],[2,5,["H4054","(H853)"]],[5,6,["H1688"]],[6,9,["H4054"]]]},{"k":10513,"v":[[0,2,["H6228"]],[2,5,["H4054"]],[5,7,["H1053"]],[7,10,["H4054"]]]},{"k":10514,"v":[[0,5,["H4480","H4294"]],[5,7,["H1144","(H853)"]],[7,8,["H1387"]],[8,11,["H4054"]],[11,13,["H5964"]],[13,16,["H4054"]],[16,18,["H6068"]],[18,21,["H4054"]],[21,22,["H3605"]],[22,24,["H5892"]],[24,27,["H4940"]],[27,29,["H7969","H6240"]],[29,30,["H5892"]]]},{"k":10515,"v":[[0,4,["H1121"]],[4,6,["H6955"]],[6,9,["H3498"]],[9,12,["H4480","H4940"]],[12,15,["H4294"]],[15,22,["H4480","H2677"]],[22,23,["H4294"]],[23,28,["H4276"]],[28,31,["H4519"]],[31,33,["H1486"]],[33,34,["H6235"]],[34,35,["H5892"]]]},{"k":10516,"v":[[0,4,["H1121"]],[4,6,["H1648"]],[6,9,["H4940"]],[9,13,["H4480","H4294"]],[13,15,["H3485"]],[15,20,["H4480","H4294"]],[20,22,["H836"]],[22,27,["H4480","H4294"]],[27,29,["H5321"]],[29,34,["H4480","H4294"]],[34,36,["H4519"]],[36,38,["H1316"]],[38,39,["H7969","H6240"]],[39,40,["H5892"]]]},{"k":10517,"v":[[0,3,["H1121"]],[3,5,["H4847"]],[5,9,["H1486"]],[9,12,["H4940"]],[12,16,["H4480","H4294"]],[16,18,["H7205"]],[18,23,["H4480","H4294"]],[23,25,["H1410"]],[25,30,["H4480","H4294"]],[30,32,["H2074"]],[32,33,["H8147","H6240"]],[33,34,["H5892"]]]},{"k":10518,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5414"]],[6,9,["H3881"]],[9,10,["(H853)"]],[10,11,["H5892"]],[11,14,["H4054"]]]},{"k":10519,"v":[[0,3,["H5414"]],[3,5,["H1486"]],[5,9,["H4480","H4294"]],[9,12,["H1121"]],[12,14,["H3063"]],[14,19,["H4480","H4294"]],[19,22,["H1121"]],[22,24,["H8095"]],[24,29,["H4480","H4294"]],[29,32,["H1121"]],[32,34,["H1144","(H853)"]],[34,35,["H428"]],[35,36,["H5892"]],[36,37,["H834"]],[37,39,["H7121"]],[39,42,["H8034"]]]},{"k":10520,"v":[[0,6,["H4480","H4940"]],[6,9,["H1121"]],[9,11,["H6955"]],[11,12,["H1961"]],[12,13,["H5892"]],[13,16,["H1366"]],[16,20,["H4480","H4294"]],[20,22,["H669"]]]},{"k":10521,"v":[[0,3,["H5414"]],[3,6,["(H853)"]],[6,8,["H5892"]],[8,10,["H4733","(H853)"]],[10,11,["H7927"]],[11,13,["H2022"]],[13,14,["H669"]],[14,17,["H4054"]],[17,21,["H1507"]],[21,24,["H4054"]]]},{"k":10522,"v":[[0,2,["H3361"]],[2,5,["H4054"]],[5,7,["H1032"]],[7,10,["H4054"]]]},{"k":10523,"v":[[0,2,["H357"]],[2,5,["H4054"]],[5,7,["H1667"]],[7,10,["H4054"]]]},{"k":10524,"v":[[0,3,["H4480"]],[3,5,["H4276"]],[5,6,["H4294"]],[6,8,["H4519","(H853)"]],[8,9,["H6063"]],[9,12,["H4054"]],[12,14,["H1109"]],[14,17,["H4054"]],[17,20,["H4940"]],[20,23,["H3498"]],[23,26,["H1121"]],[26,28,["H6955"]]]},{"k":10525,"v":[[0,3,["H1121"]],[3,5,["H1648"]],[5,11,["H4480","H4940"]],[11,14,["H2677"]],[14,15,["H4294"]],[15,17,["H4519","(H853)"]],[17,18,["H1474"]],[18,20,["H1316"]],[20,23,["H4054"]],[23,25,["H6252"]],[25,28,["H4054"]]]},{"k":10526,"v":[[0,5,["H4480","H4294"]],[5,7,["H3485","(H853)"]],[7,8,["H6943"]],[8,11,["H4054","(H853)"]],[11,12,["H1705"]],[12,15,["H4054"]]]},{"k":10527,"v":[[0,2,["H7216"]],[2,5,["H4054"]],[5,7,["H6046"]],[7,10,["H4054"]]]},{"k":10528,"v":[[0,5,["H4480","H4294"]],[5,7,["H836","(H853)"]],[7,8,["H4913"]],[8,11,["H4054"]],[11,13,["H5658"]],[13,16,["H4054"]]]},{"k":10529,"v":[[0,2,["H2712"]],[2,5,["H4054"]],[5,7,["H7340"]],[7,10,["H4054"]]]},{"k":10530,"v":[[0,5,["H4480","H4294"]],[5,7,["H5321","(H853)"]],[7,8,["H6943"]],[8,10,["H1551"]],[10,13,["H4054"]],[13,15,["H2540"]],[15,18,["H4054"]],[18,20,["H7156"]],[20,23,["H4054"]]]},{"k":10531,"v":[[0,3,["H3498"]],[3,6,["H1121"]],[6,8,["H4847"]],[8,14,["H4480","H4294"]],[14,16,["H2074","(H853)"]],[16,17,["H7417"]],[17,20,["H4054","(H853)"]],[20,21,["H8396"]],[21,24,["H4054"]]]},{"k":10532,"v":[[0,5,["H4480","H5676"]],[5,6,["H3383"]],[6,8,["H3405"]],[8,12,["H4217"]],[12,14,["H3383"]],[14,21,["H4480","H4294"]],[21,23,["H7205","(H853)"]],[23,24,["H1221"]],[24,27,["H4057"]],[27,30,["H4054"]],[30,32,["H3096"]],[32,35,["H4054"]]]},{"k":10533,"v":[[0,1,["H6932"]],[1,5,["H4054"]],[5,7,["H4158"]],[7,10,["H4054"]]]},{"k":10534,"v":[[0,5,["H4480","H4294"]],[5,7,["H1410","(H853)"]],[7,8,["H7216"]],[8,10,["H1568"]],[10,13,["H4054"]],[13,15,["H4266"]],[15,18,["H4054"]]]},{"k":10535,"v":[[0,2,["H2809"]],[2,5,["H4054"]],[5,7,["H3270"]],[7,10,["H4054"]]]},{"k":10536,"v":[[0,3,["H1121"]],[3,5,["H3485"]],[5,7,["H8439"]],[7,9,["H6312"]],[9,10,["H3437"]],[10,12,["H8110"]],[12,13,["H702"]]]},{"k":10537,"v":[[0,3,["H1121"]],[3,5,["H8439"]],[5,6,["H5813"]],[6,8,["H7509"]],[8,10,["H3400"]],[10,12,["H3181"]],[12,14,["H3005"]],[14,16,["H8050"]],[16,17,["H7218"]],[17,20,["H1"]],[20,21,["H1004"]],[21,25,["H8439"]],[25,29,["H1368"]],[29,31,["H2428"]],[31,34,["H8435"]],[34,36,["H4557"]],[36,40,["H3117"]],[40,42,["H1732"]],[42,43,["H8147"]],[43,45,["H6242"]],[45,46,["H505"]],[46,48,["H8337"]],[48,49,["H3967"]]]},{"k":10538,"v":[[0,3,["H1121"]],[3,5,["H5813"]],[5,6,["H3156"]],[6,9,["H1121"]],[9,11,["H3156"]],[11,12,["H4317"]],[12,14,["H5662"]],[14,16,["H3100"]],[16,17,["H3449"]],[17,18,["H2568"]],[18,19,["H3605"]],[19,22,["H7218"]],[22,23,[]]]},{"k":10539,"v":[[0,2,["H5921"]],[2,6,["H8435"]],[6,9,["H1004"]],[9,12,["H1"]],[12,14,["H1416"]],[14,16,["H6635"]],[16,18,["H4421"]],[18,19,["H8337"]],[19,21,["H7970"]],[21,22,["H505"]],[22,24,["H3588"]],[24,27,["H7235"]],[27,28,["H802"]],[28,30,["H1121"]]]},{"k":10540,"v":[[0,3,["H251"]],[3,5,["H3605"]],[5,7,["H4940"]],[7,9,["H3485"]],[9,12,["H1368"]],[12,14,["H2428"]],[14,20,["H3187","H3605"]],[20,21,["H8084"]],[21,23,["H7651"]],[23,24,["H505"]]]},{"k":10541,"v":[[0,4,["H1144"]],[4,5,["H1106"]],[5,7,["H1071"]],[7,9,["H3043"]],[9,10,["H7969"]]]},{"k":10542,"v":[[0,3,["H1121"]],[3,5,["H1106"]],[5,6,["H675"]],[6,8,["H5813"]],[8,10,["H5816"]],[10,12,["H3406"]],[12,14,["H5901"]],[14,15,["H2568"]],[15,16,["H7218"]],[16,19,["H1004"]],[19,22,["H1"]],[22,24,["H1368"]],[24,26,["H2428"]],[26,32,["H3187"]],[32,33,["H6242"]],[33,35,["H8147"]],[35,36,["H505"]],[36,38,["H7970"]],[38,40,["H702"]]]},{"k":10543,"v":[[0,3,["H1121"]],[3,5,["H1071"]],[5,6,["H2160"]],[6,8,["H3135"]],[8,10,["H461"]],[10,12,["H454"]],[12,14,["H6018"]],[14,16,["H3406"]],[16,18,["H29"]],[18,20,["H6068"]],[20,22,["H5964"]],[22,23,["H3605"]],[23,24,["H428"]],[24,27,["H1121"]],[27,29,["H1071"]]]},{"k":10544,"v":[[0,3,["H3187"]],[3,8,["H3187"]],[8,11,["H8435"]],[11,12,["H7218"]],[12,15,["H1004"]],[15,18,["H1"]],[18,20,["H1368"]],[20,22,["H2428"]],[22,24,["H6242"]],[24,25,["H505"]],[25,28,["H3967"]]]},{"k":10545,"v":[[0,2,["H1121"]],[2,5,["H3043"]],[5,6,["H1092"]],[6,9,["H1121"]],[9,11,["H1092"]],[11,12,["H3266"]],[12,14,["H1144"]],[14,16,["H164"]],[16,18,["H3668"]],[18,20,["H2133"]],[20,22,["H8659"]],[22,24,["H300"]]]},{"k":10546,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,4,["H1121"]],[4,6,["H3043"]],[6,9,["H7218"]],[9,12,["H1"]],[12,14,["H1368"]],[14,16,["H2428"]],[16,18,["H7651","H6240"]],[18,19,["H505"]],[19,22,["H3967"]],[22,27,["H3318"]],[27,29,["H6635"]],[29,31,["H4421"]]]},{"k":10547,"v":[[0,1,["H8206"]],[1,4,["H2650"]],[4,6,["H1121"]],[6,8,["H5893"]],[8,10,["H2366"]],[10,12,["H1121"]],[12,14,["H313"]]]},{"k":10548,"v":[[0,2,["H1121"]],[2,4,["H5321"]],[4,5,["H3185"]],[5,7,["H1476"]],[7,9,["H3337"]],[9,11,["H7967"]],[11,13,["H1121"]],[13,15,["H1090"]]]},{"k":10549,"v":[[0,2,["H1121"]],[2,4,["H4519"]],[4,5,["H844"]],[5,6,["H834"]],[6,8,["H3205"]],[8,11,["H6370"]],[11,13,["H761"]],[13,14,["H3205","(H853)"]],[14,15,["H4353"]],[15,17,["H1"]],[17,19,["H1568"]]]},{"k":10550,"v":[[0,2,["H4353"]],[2,3,["H3947"]],[3,5,["H802"]],[5,9,["H2650"]],[9,11,["H8206"]],[11,13,["H269"]],[13,14,["H8034"]],[14,16,["H4601"]],[16,19,["H8034"]],[19,22,["H8145"]],[22,24,["H6765"]],[24,26,["H6765"]],[26,27,["H1961"]],[27,28,["H1323"]]]},{"k":10551,"v":[[0,2,["H4601"]],[2,4,["H802"]],[4,6,["H4353"]],[6,7,["H3205"]],[7,9,["H1121"]],[9,12,["H7121"]],[12,14,["H8034"]],[14,15,["H6570"]],[15,18,["H8034"]],[18,21,["H251"]],[21,23,["H8329"]],[23,26,["H1121"]],[26,28,["H198"]],[28,30,["H7552"]]]},{"k":10552,"v":[[0,3,["H1121"]],[3,5,["H198"]],[5,6,["H917"]],[6,7,["H428"]],[7,10,["H1121"]],[10,12,["H1568"]],[12,14,["H1121"]],[14,16,["H4353"]],[16,18,["H1121"]],[18,20,["H4519"]]]},{"k":10553,"v":[[0,3,["H269"]],[3,4,["H4447"]],[4,5,["H3205","(H853)"]],[5,6,["H379"]],[6,8,["H44"]],[8,10,["H4244"]]]},{"k":10554,"v":[[0,3,["H1121"]],[3,5,["H8061"]],[5,6,["H1961"]],[6,7,["H291"]],[7,9,["H7928"]],[9,11,["H3949"]],[11,13,["H593"]]]},{"k":10555,"v":[[0,3,["H1121"]],[3,5,["H669"]],[5,6,["H7803"]],[6,8,["H1260"]],[8,10,["H1121"]],[10,12,["H8480"]],[12,14,["H1121"]],[14,16,["H497"]],[16,18,["H1121"]],[18,20,["H8480"]],[20,22,["H1121"]]]},{"k":10556,"v":[[0,2,["H2066"]],[2,4,["H1121"]],[4,6,["H7803"]],[6,8,["H1121"]],[8,10,["H5827"]],[10,12,["H496"]],[12,15,["H376"]],[15,17,["H1661"]],[17,20,["H3205"]],[20,23,["H776"]],[23,24,["H2026"]],[24,25,["H3588"]],[25,28,["H3381"]],[28,31,["H3947","(H853)"]],[31,33,["H4735"]]]},{"k":10557,"v":[[0,2,["H669"]],[2,4,["H1"]],[4,5,["H56"]],[5,6,["H7227"]],[6,7,["H3117"]],[7,10,["H251"]],[10,11,["H935"]],[11,13,["H5162"]],[13,14,[]]]},{"k":10558,"v":[[0,5,["H935"]],[5,6,["H413"]],[6,8,["H802"]],[8,10,["H2030"]],[10,12,["H3205"]],[12,14,["H1121"]],[14,17,["H7121","(H853)"]],[17,19,["H8034"]],[19,20,["H1283"]],[20,21,["H3588"]],[21,23,["H1961"]],[23,24,["H7451"]],[24,27,["H1004"]]]},{"k":10559,"v":[[0,3,["H1323"]],[3,5,["H7609"]],[5,7,["H1129","(H853)"]],[7,8,["H1032"]],[8,10,["H8481"]],[10,13,["H5945"]],[13,15,["H242"]]]},{"k":10560,"v":[[0,2,["H7506"]],[2,5,["H1121"]],[5,7,["H7566"]],[7,9,["H8520"]],[9,11,["H1121"]],[11,13,["H8465"]],[13,15,["H1121"]]]},{"k":10561,"v":[[0,1,["H3936"]],[1,3,["H1121"]],[3,4,["H5989"]],[4,6,["H1121"]],[6,7,["H476"]],[7,9,["H1121"]]]},{"k":10562,"v":[[0,1,["H5126"]],[1,3,["H1121"]],[3,4,["H3091"]],[4,6,["H1121"]]]},{"k":10563,"v":[[0,3,["H272"]],[3,5,["H4186"]],[5,7,["H1008"]],[7,10,["H1323"]],[10,13,["H4217"]],[13,14,["H5295"]],[14,16,["H4628"]],[16,17,["H1507"]],[17,20,["H1323"]],[20,22,["H7927"]],[22,26,["H1323"]],[26,28,["H5704"]],[28,29,["H5804"]],[29,32,["H1323"]],[32,33,[]]]},{"k":10564,"v":[[0,2,["H5921"]],[2,4,["H3027"]],[4,7,["H1121"]],[7,9,["H4519"]],[9,10,["H1052"]],[10,13,["H1323"]],[13,14,["H8590"]],[14,17,["H1323"]],[17,18,["H4023"]],[18,21,["H1323"]],[21,22,["H1756"]],[22,25,["H1323"]],[25,27,["H428"]],[27,28,["H3427"]],[28,30,["H1121"]],[30,32,["H3130"]],[32,34,["H1121"]],[34,36,["H3478"]]]},{"k":10565,"v":[[0,2,["H1121"]],[2,4,["H836"]],[4,5,["H3232"]],[5,7,["H3440"]],[7,9,["H3440"]],[9,11,["H1283"]],[11,13,["H8294"]],[13,15,["H269"]]]},{"k":10566,"v":[[0,3,["H1121"]],[3,5,["H1283"]],[5,6,["H2268"]],[6,8,["H4439"]],[8,9,["H1931"]],[9,12,["H1"]],[12,14,["H1269"]]]},{"k":10567,"v":[[0,2,["H2268"]],[2,3,["H3205","(H853)"]],[3,4,["H3310"]],[4,6,["H7763"]],[6,8,["H2369"]],[8,10,["H7774"]],[10,12,["H269"]]]},{"k":10568,"v":[[0,3,["H1121"]],[3,5,["H3310"]],[5,6,["H6457"]],[6,8,["H1118"]],[8,10,["H6220"]],[10,11,["H428"]],[11,14,["H1121"]],[14,16,["H3310"]]]},{"k":10569,"v":[[0,3,["H1121"]],[3,5,["H8106"]],[5,6,["H277"]],[6,8,["H7303"]],[8,9,["H3160"]],[9,11,["H758"]]]},{"k":10570,"v":[[0,3,["H1121"]],[3,6,["H251"]],[6,7,["H1987"]],[7,8,["H6690"]],[8,10,["H3234"]],[10,12,["H8028"]],[12,14,["H6000"]]]},{"k":10571,"v":[[0,2,["H1121"]],[2,4,["H6690"]],[4,5,["H5477"]],[5,7,["H2774"]],[7,9,["H7777"]],[9,11,["H1275"]],[11,13,["H3236"]]]},{"k":10572,"v":[[0,1,["H1221"]],[1,3,["H1936"]],[3,5,["H8037"]],[5,7,["H8030"]],[7,9,["H3506"]],[9,11,["H878"]]]},{"k":10573,"v":[[0,3,["H1121"]],[3,5,["H3500"]],[5,6,["H3312"]],[6,8,["H6462"]],[8,10,["H690"]]]},{"k":10574,"v":[[0,3,["H1121"]],[3,5,["H5925"]],[5,6,["H733"]],[6,8,["H2592"]],[8,10,["H7525"]]]},{"k":10575,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,5,["H1121"]],[5,7,["H836"]],[7,8,["H7218"]],[8,11,["H1"]],[11,12,["H1004"]],[12,13,["H1305"]],[13,16,["H1368"]],[16,18,["H2428"]],[18,19,["H7218"]],[19,22,["H5387"]],[22,28,["H3187","H4557"]],[28,36,["H6635"]],[36,39,["H4421"]],[39,41,["H6242"]],[41,43,["H8337"]],[43,44,["H505"]],[44,45,["H376"]]]},{"k":10576,"v":[[0,2,["H1144"]],[2,3,["H3205","(H853)"]],[3,4,["H1106"]],[4,6,["H1060"]],[6,7,["H788"]],[7,9,["H8145"]],[9,11,["H315"]],[11,13,["H7992"]]]},{"k":10577,"v":[[0,1,["H5119"]],[1,3,["H7243"]],[3,5,["H7498"]],[5,7,["H2549"]]]},{"k":10578,"v":[[0,3,["H1121"]],[3,5,["H1106"]],[5,6,["H1961"]],[6,7,["H146"]],[7,9,["H1617"]],[9,11,["H31"]]]},{"k":10579,"v":[[0,2,["H50"]],[2,4,["H5283"]],[4,6,["H265"]]]},{"k":10580,"v":[[0,2,["H1617"]],[2,4,["H8197"]],[4,6,["H2361"]]]},{"k":10581,"v":[[0,2,["H428"]],[2,5,["H1121"]],[5,7,["H261"]],[7,8,["H428"]],[8,11,["H7218"]],[11,14,["H1"]],[14,17,["H3427"]],[17,19,["H1387"]],[19,22,["H1540"]],[22,24,["H413"]],[24,25,["H4506"]]]},{"k":10582,"v":[[0,2,["H5283"]],[2,4,["H281"]],[4,6,["H1617"]],[6,7,["H1931"]],[7,8,["H1540"]],[8,11,["H3205","(H853)"]],[11,12,["H5798"]],[12,14,["H284"]]]},{"k":10583,"v":[[0,2,["H7842"]],[2,3,["H3205"]],[3,7,["H7704"]],[7,9,["H4124"]],[9,10,["H4480"]],[10,15,["H7971","(H853)"]],[15,16,["H2366"]],[16,18,["H1199"]],[18,21,["H802"]]]},{"k":10584,"v":[[0,3,["H3205"]],[3,4,["H4480"]],[4,5,["H2321"]],[5,7,["H802","(H853)"]],[7,8,["H3103"]],[8,10,["H6644"]],[10,12,["H4331"]],[12,14,["H4445"]]]},{"k":10585,"v":[[0,2,["H3263"]],[2,4,["H7634"]],[4,6,["H4821"]],[6,7,["H428"]],[7,10,["H1121"]],[10,11,["H7218"]],[11,14,["H1"]]]},{"k":10586,"v":[[0,3,["H4480","H2366"]],[3,5,["H3205","(H853)"]],[5,6,["H36"]],[6,8,["H508"]]]},{"k":10587,"v":[[0,2,["H1121"]],[2,4,["H508"]],[4,5,["H5677"]],[5,7,["H4936"]],[7,9,["H8106"]],[9,10,["H1931"]],[10,11,["H1129","(H853)"]],[11,12,["H207"]],[12,14,["H3850"]],[14,17,["H1323"]],[17,18,[]]]},{"k":10588,"v":[[0,1,["H1283"]],[1,4,["H8087"]],[4,5,["H1992"]],[5,7,["H7218"]],[7,10,["H1"]],[10,13,["H3427"]],[13,15,["H357"]],[15,16,["H1992"]],[16,18,["H1272","(H853)"]],[18,20,["H3427"]],[20,22,["H1661"]]]},{"k":10589,"v":[[0,2,["H283"]],[2,3,["H8349"]],[3,5,["H3406"]]]},{"k":10590,"v":[[0,2,["H2069"]],[2,4,["H6166"]],[4,6,["H5738"]]]},{"k":10591,"v":[[0,2,["H4317"]],[2,4,["H3472"]],[4,6,["H3109"]],[6,8,["H1121"]],[8,10,["H1283"]]]},{"k":10592,"v":[[0,2,["H2069"]],[2,4,["H4918"]],[4,6,["H2395"]],[6,8,["H2268"]]]},{"k":10593,"v":[[0,1,["H3461"]],[1,4,["H3152"]],[4,6,["H3103"]],[6,8,["H1121"]],[8,10,["H508"]]]},{"k":10594,"v":[[0,2,["H3356"]],[2,4,["H2147"]],[4,6,["H2067"]]]},{"k":10595,"v":[[0,2,["H462"]],[2,4,["H6769"]],[4,6,["H447"]]]},{"k":10596,"v":[[0,2,["H5718"]],[2,4,["H1256"]],[4,6,["H8119"]],[6,8,["H1121"]],[8,10,["H8096"]]]},{"k":10597,"v":[[0,2,["H3473"]],[2,4,["H5677"]],[4,6,["H447"]]]},{"k":10598,"v":[[0,2,["H5658"]],[2,4,["H2147"]],[4,6,["H2605"]]]},{"k":10599,"v":[[0,2,["H2608"]],[2,4,["H5867"]],[4,6,["H6070"]]]},{"k":10600,"v":[[0,2,["H3301"]],[2,4,["H6439"]],[4,6,["H1121"]],[6,8,["H8349"]]]},{"k":10601,"v":[[0,2,["H8125"]],[2,4,["H7841"]],[4,6,["H6271"]]]},{"k":10602,"v":[[0,2,["H3298"]],[2,4,["H452"]],[4,6,["H2147"]],[6,8,["H1121"]],[8,10,["H3395"]]]},{"k":10603,"v":[[0,1,["H428"]],[1,3,["H7218"]],[3,6,["H1"]],[6,9,["H8435"]],[9,10,["H7218"]],[10,12,["H428"]],[12,13,["H3427"]],[13,15,["H3389"]]]},{"k":10604,"v":[[0,3,["H1391"]],[3,4,["H3427"]],[4,6,["H1"]],[6,8,["H1391"]],[8,10,["H802"]],[10,11,["H8034"]],[11,13,["H4601"]]]},{"k":10605,"v":[[0,3,["H1060"]],[3,4,["H1121"]],[4,5,["H5658"]],[5,7,["H6698"]],[7,9,["H7027"]],[9,11,["H1168"]],[11,13,["H5070"]]]},{"k":10606,"v":[[0,2,["H1446"]],[2,4,["H283"]],[4,6,["H2144"]]]},{"k":10607,"v":[[0,2,["H4732"]],[2,3,["H3205","(H853)"]],[3,4,["H8039"]],[4,6,["H1992"]],[6,7,["H637"]],[7,8,["H3427"]],[8,9,["H5973"]],[9,11,["H251"]],[11,13,["H3389"]],[13,15,["H5048"]],[15,16,[]]]},{"k":10608,"v":[[0,2,["H5369"]],[2,3,["H3205","(H853)"]],[3,4,["H7027"]],[4,6,["H7027"]],[6,7,["H3205","(H853)"]],[7,8,["H7586"]],[8,10,["H7586"]],[10,11,["H3205","(H853)"]],[11,12,["H3083"]],[12,14,["H4444"]],[14,16,["H41"]],[16,18,["H792"]]]},{"k":10609,"v":[[0,3,["H1121"]],[3,5,["H3083"]],[5,7,["H4807"]],[7,9,["H4807"]],[9,10,["H3205","(H853)"]],[10,11,["H4318"]]]},{"k":10610,"v":[[0,3,["H1121"]],[3,5,["H4318"]],[5,7,["H6377"]],[7,9,["H4429"]],[9,11,["H8390"]],[11,13,["H271"]]]},{"k":10611,"v":[[0,2,["H271"]],[2,3,["H3205","(H853)"]],[3,4,["H3085"]],[4,6,["H3085"]],[6,7,["H3205","(H853)"]],[7,8,["H5964"]],[8,10,["H5820"]],[10,12,["H2174"]],[12,14,["H2174"]],[14,15,["H3205","(H853)"]],[15,16,["H4162"]]]},{"k":10612,"v":[[0,2,["H4162"]],[2,3,["H3205","(H853)"]],[3,4,["H1150"]],[4,5,["H7498"]],[5,8,["H1121"]],[8,9,["H501"]],[9,11,["H1121"]],[11,12,["H682"]],[12,14,["H1121"]]]},{"k":10613,"v":[[0,2,["H682"]],[2,4,["H8337"]],[4,5,["H1121"]],[5,7,["H8034"]],[7,9,["H428"]],[9,10,["H5840"]],[10,11,["H1074"]],[11,13,["H3458"]],[13,15,["H8187"]],[15,17,["H5662"]],[17,19,["H2605"]],[19,20,["H3605"]],[20,21,["H428"]],[21,24,["H1121"]],[24,26,["H682"]]]},{"k":10614,"v":[[0,3,["H1121"]],[3,5,["H6232"]],[5,7,["H251"]],[7,9,["H198"]],[9,11,["H1060"]],[11,12,["H3266"]],[12,14,["H8145"]],[14,16,["H467"]],[16,18,["H7992"]]]},{"k":10615,"v":[[0,3,["H1121"]],[3,5,["H198"]],[5,6,["H1961"]],[6,7,["H1368"]],[7,8,["H376"]],[8,10,["H2428"]],[10,11,["H1869","H7198"]],[11,14,["H7235"]],[14,15,["H1121"]],[15,17,["H1121"]],[17,18,["H1121"]],[18,20,["H3967"]],[20,22,["H2572"]],[22,23,["H3605"]],[23,24,["H428"]],[24,28,["H4480","H1121"]],[28,30,["H1144"]]]},{"k":10616,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,7,["H3187"]],[7,9,["H2009"]],[9,12,["H3789"]],[12,13,["H5921"]],[13,15,["H5612"]],[15,18,["H4428"]],[18,20,["H3478"]],[20,22,["H3063"]],[22,26,["H1540"]],[26,28,["H894"]],[28,31,["H4604"]]]},{"k":10617,"v":[[0,3,["H7223"]],[3,4,["H3427"]],[4,5,["H834"]],[5,9,["H272"]],[9,12,["H5892"]],[12,15,["H3478"]],[15,17,["H3548"]],[17,18,["H3881"]],[18,21,["H5411"]]]},{"k":10618,"v":[[0,3,["H3389"]],[3,4,["H3427"]],[4,5,["H4480"]],[5,7,["H1121"]],[7,9,["H3063"]],[9,11,["H4480"]],[11,13,["H1121"]],[13,15,["H1144"]],[15,17,["H4480"]],[17,19,["H1121"]],[19,21,["H669"]],[21,23,["H4519"]]]},{"k":10619,"v":[[0,1,["H5793"]],[1,3,["H1121"]],[3,5,["H5989"]],[5,7,["H1121"]],[7,9,["H6018"]],[9,11,["H1121"]],[11,13,["H566"]],[13,15,["H1121"]],[15,17,["H1137"]],[17,20,["H4480","H1121"]],[20,22,["H6557"]],[22,24,["H1121"]],[24,26,["H3063"]]]},{"k":10620,"v":[[0,2,["H4480"]],[2,4,["H7888"]],[4,5,["H6222"]],[5,7,["H1060"]],[7,10,["H1121"]]]},{"k":10621,"v":[[0,2,["H4480"]],[2,4,["H1121"]],[4,6,["H2226"]],[6,7,["H3262"]],[7,10,["H251"]],[10,11,["H8337"]],[11,12,["H3967"]],[12,14,["H8673"]]]},{"k":10622,"v":[[0,2,["H4480"]],[2,4,["H1121"]],[4,6,["H1144"]],[6,7,["H5543"]],[7,9,["H1121"]],[9,11,["H4918"]],[11,13,["H1121"]],[13,15,["H1938"]],[15,17,["H1121"]],[17,19,["H5574"]]]},{"k":10623,"v":[[0,2,["H2997"]],[2,4,["H1121"]],[4,6,["H3395"]],[6,8,["H425"]],[8,10,["H1121"]],[10,12,["H5813"]],[12,14,["H1121"]],[14,16,["H4381"]],[16,18,["H4918"]],[18,20,["H1121"]],[20,22,["H8203"]],[22,24,["H1121"]],[24,26,["H7467"]],[26,28,["H1121"]],[28,30,["H2998"]]]},{"k":10624,"v":[[0,3,["H251"]],[3,7,["H8435"]],[7,8,["H8672"]],[8,9,["H3967"]],[9,11,["H2572"]],[11,13,["H8337"]],[13,14,["H3605"]],[14,15,["H428"]],[15,16,["H376"]],[16,18,["H7218"]],[18,21,["H1"]],[21,24,["H1004"]],[24,27,["H1"]]]},{"k":10625,"v":[[0,2,["H4480"]],[2,4,["H3548"]],[4,5,["H3048"]],[5,7,["H3080"]],[7,9,["H3199"]]]},{"k":10626,"v":[[0,2,["H5838"]],[2,4,["H1121"]],[4,6,["H2518"]],[6,8,["H1121"]],[8,10,["H4918"]],[10,12,["H1121"]],[12,14,["H6659"]],[14,16,["H1121"]],[16,18,["H4812"]],[18,20,["H1121"]],[20,22,["H285"]],[22,24,["H5057"]],[24,27,["H1004"]],[27,29,["H430"]]]},{"k":10627,"v":[[0,2,["H5718"]],[2,4,["H1121"]],[4,6,["H3395"]],[6,8,["H1121"]],[8,10,["H6583"]],[10,12,["H1121"]],[12,14,["H4441"]],[14,16,["H4640"]],[16,18,["H1121"]],[18,20,["H5717"]],[20,22,["H1121"]],[22,24,["H3170"]],[24,26,["H1121"]],[26,28,["H4918"]],[28,30,["H1121"]],[30,32,["H4921"]],[32,34,["H1121"]],[34,36,["H564"]]]},{"k":10628,"v":[[0,3,["H251"]],[3,4,["H7218"]],[4,7,["H1004"]],[7,10,["H1"]],[10,12,["H505"]],[12,14,["H7651"]],[14,15,["H3967"]],[15,17,["H8346"]],[17,20,["H1368","H2428"]],[20,23,["H4399"]],[23,26,["H5656"]],[26,29,["H1004"]],[29,31,["H430"]]]},{"k":10629,"v":[[0,2,["H4480"]],[2,4,["H3881"]],[4,5,["H8098"]],[5,7,["H1121"]],[7,9,["H2815"]],[9,11,["H1121"]],[11,13,["H5840"]],[13,15,["H1121"]],[15,17,["H2811"]],[17,18,["H4480"]],[18,20,["H1121"]],[20,22,["H4847"]]]},{"k":10630,"v":[[0,2,["H1230"]],[2,3,["H2792"]],[3,5,["H1559"]],[5,7,["H4983"]],[7,9,["H1121"]],[9,11,["H4316"]],[11,13,["H1121"]],[13,15,["H2147"]],[15,17,["H1121"]],[17,19,["H623"]]]},{"k":10631,"v":[[0,2,["H5662"]],[2,4,["H1121"]],[4,6,["H8098"]],[6,8,["H1121"]],[8,10,["H1559"]],[10,12,["H1121"]],[12,14,["H3038"]],[14,16,["H1296"]],[16,18,["H1121"]],[18,20,["H609"]],[20,22,["H1121"]],[22,24,["H511"]],[24,26,["H3427"]],[26,29,["H2691"]],[29,32,["H5200"]]]},{"k":10632,"v":[[0,3,["H7778"]],[3,5,["H7967"]],[5,7,["H6126"]],[7,9,["H2929"]],[9,11,["H289"]],[11,14,["H251"]],[14,15,["H7967"]],[15,18,["H7218"]]]},{"k":10633,"v":[[0,2,["H5704","H2008"]],[2,6,["H4428"]],[6,7,["H8179"]],[7,8,["H4217"]],[8,9,["H1992"]],[9,11,["H7778"]],[11,14,["H4264"]],[14,17,["H1121"]],[17,19,["H3878"]]]},{"k":10634,"v":[[0,2,["H7967"]],[2,4,["H1121"]],[4,6,["H6981"]],[6,8,["H1121"]],[8,10,["H43"]],[10,12,["H1121"]],[12,14,["H7141"]],[14,17,["H251"]],[17,20,["H1004"]],[20,23,["H1"]],[23,25,["H7145"]],[25,27,["H5921"]],[27,29,["H4399"]],[29,32,["H5656"]],[32,33,["H8104"]],[33,36,["H5592"]],[36,39,["H168"]],[39,42,["H1"]],[42,44,["H5921"]],[44,46,["H4264"]],[46,49,["H3068"]],[49,51,["H8104"]],[51,54,["H3996"]]]},{"k":10635,"v":[[0,2,["H6372"]],[2,4,["H1121"]],[4,6,["H499"]],[6,7,["H1961"]],[7,9,["H5057"]],[9,10,["H5921"]],[10,14,["H6440"]],[14,17,["H3068"]],[17,19,["H5973"]],[19,20,[]]]},{"k":10636,"v":[[0,2,["H2148"]],[2,4,["H1121"]],[4,6,["H4920"]],[6,8,["H7778"]],[8,11,["H6607"]],[11,14,["H168"]],[14,17,["H4150"]]]},{"k":10637,"v":[[0,1,["H3605"]],[1,5,["H1305"]],[5,8,["H7778"]],[8,11,["H5592"]],[11,14,["H3967"]],[14,16,["H8147","H6240"]],[16,17,["H1992"]],[17,22,["H3187"]],[22,25,["H2691"]],[25,27,["H1732"]],[27,29,["H8050"]],[29,31,["H7203"]],[31,33,["H3245"]],[33,37,["H530"]]]},{"k":10638,"v":[[0,2,["H1992"]],[2,5,["H1121"]],[5,8,["H5921"]],[8,11,["H8179"]],[11,14,["H1004"]],[14,17,["H3068"]],[17,20,["H1004"]],[20,23,["H168"]],[23,25,["H4931"]]]},{"k":10639,"v":[[0,2,["H702"]],[2,3,["H7307"]],[3,4,["H1961"]],[4,6,["H7778"]],[6,9,["H4217"]],[9,10,["H3220"]],[10,11,["H6828"]],[11,13,["H5045"]]]},{"k":10640,"v":[[0,3,["H251"]],[3,8,["H2691"]],[8,11,["H935"]],[11,13,["H7651"]],[13,14,["H3117"]],[14,16,["H4480","H6256"]],[16,17,["H413"]],[17,18,["H6256"]],[18,19,["H5973"]],[19,20,["H428"]]]},{"k":10641,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,3,["H3881"]],[3,5,["H702"]],[5,6,["H1368"]],[6,7,["H7778"]],[7,12,["H530"]],[12,14,["H1961"]],[14,15,["H5921"]],[15,17,["H3957"]],[17,19,["H214"]],[19,22,["H1004"]],[22,24,["H430"]]]},{"k":10642,"v":[[0,3,["H3885"]],[3,5,["H5439"]],[5,7,["H1004"]],[7,9,["H430"]],[9,10,["H3588"]],[10,12,["H4931"]],[12,14,["H5921"]],[14,18,["H4668"]],[18,21,["H1242","H1242"]],[21,24,["H1992"]]]},{"k":10643,"v":[[0,3,["H4480"]],[3,8,["H5921"]],[8,10,["H5656"]],[10,11,["H3627"]],[11,12,["H3588"]],[12,17,["H935"]],[17,19,["H3318"]],[19,21,["H4557"]]]},{"k":10644,"v":[[0,2,["H4480"]],[2,6,["H4487"]],[6,8,["H5921"]],[8,10,["H3627"]],[10,12,["H3605"]],[12,14,["H3627"]],[14,17,["H6944"]],[17,21,["H5560"]],[21,24,["H3196"]],[24,27,["H8081"]],[27,30,["H3828"]],[30,33,["H1314"]]]},{"k":10645,"v":[[0,3,["H4480"]],[3,5,["H1121"]],[5,8,["H3548"]],[8,9,["H7543"]],[9,11,["H4842"]],[11,14,["H1314"]]]},{"k":10646,"v":[[0,2,["H4993"]],[2,4,["H4480"]],[4,6,["H3881"]],[6,7,["H1931"]],[7,10,["H1060"]],[10,12,["H7967"]],[12,14,["H7145"]],[14,18,["H530"]],[18,19,["H5921"]],[19,24,["H4639"]],[24,27,["H2281"]]]},{"k":10647,"v":[[0,3,["H4480"]],[3,5,["H251"]],[5,8,["H1121"]],[8,9,["H4480"]],[9,11,["H6956"]],[11,13,["H5921"]],[13,15,["H3899","H4635"]],[15,17,["H3559"]],[17,20,["H7676","H7676"]]]},{"k":10648,"v":[[0,2,["H428"]],[2,5,["H7891"]],[5,6,["H7218"]],[6,9,["H1"]],[9,12,["H3881"]],[12,17,["H3957"]],[17,19,["H6362"]],[19,20,["H3588"]],[20,23,["H5921"]],[23,26,["H4399"]],[26,27,["H3119"]],[27,29,["H3915"]]]},{"k":10649,"v":[[0,1,["H428"]],[1,2,["H7218"]],[2,3,["H1"]],[3,6,["H3881"]],[6,8,["H7218"]],[8,11,["H8435"]],[11,12,["H428"]],[12,13,["H3427"]],[13,15,["H3389"]]]},{"k":10650,"v":[[0,3,["H1391"]],[3,4,["H3427"]],[4,6,["H1"]],[6,8,["H1391"]],[8,9,["H3273"]],[9,11,["H802"]],[11,12,["H8034"]],[12,14,["H4601"]]]},{"k":10651,"v":[[0,3,["H1060"]],[3,4,["H1121"]],[4,5,["H5658"]],[5,7,["H6698"]],[7,9,["H7027"]],[9,11,["H1168"]],[11,13,["H5369"]],[13,15,["H5070"]]]},{"k":10652,"v":[[0,2,["H1446"]],[2,4,["H283"]],[4,6,["H2148"]],[6,8,["H4732"]]]},{"k":10653,"v":[[0,2,["H4732"]],[2,3,["H3205","(H853)"]],[3,4,["H8043"]],[4,6,["H1992"]],[6,7,["H637"]],[7,8,["H3427"]],[8,9,["H5973"]],[9,11,["H251"]],[11,13,["H3389"]],[13,15,["H5048"]],[15,17,["H251"]]]},{"k":10654,"v":[[0,2,["H5369"]],[2,3,["H3205","(H853)"]],[3,4,["H7027"]],[4,6,["H7027"]],[6,7,["H3205","(H853)"]],[7,8,["H7586"]],[8,10,["H7586"]],[10,11,["H3205","(H853)"]],[11,12,["H3083"]],[12,14,["H4444"]],[14,16,["H41"]],[16,18,["H792"]]]},{"k":10655,"v":[[0,3,["H1121"]],[3,5,["H3083"]],[5,7,["H4807"]],[7,9,["H4810"]],[9,10,["H3205","(H853)"]],[10,11,["H4318"]]]},{"k":10656,"v":[[0,3,["H1121"]],[3,5,["H4318"]],[5,7,["H6377"]],[7,9,["H4429"]],[9,11,["H8475"]],[11,13,[]]]},{"k":10657,"v":[[0,2,["H271"]],[2,3,["H3205","(H853)"]],[3,4,["H3294"]],[4,6,["H3294"]],[6,7,["H3205","(H853)"]],[7,8,["H5964"]],[8,10,["H5820"]],[10,12,["H2174"]],[12,14,["H2174"]],[14,15,["H3205","(H853)"]],[15,16,["H4162"]]]},{"k":10658,"v":[[0,2,["H4162"]],[2,3,["H3205","(H853)"]],[3,4,["H1150"]],[4,6,["H7509"]],[6,8,["H1121"]],[8,9,["H501"]],[9,11,["H1121"]],[11,12,["H682"]],[12,14,["H1121"]]]},{"k":10659,"v":[[0,2,["H682"]],[2,4,["H8337"]],[4,5,["H1121"]],[5,7,["H8034"]],[7,9,["H428"]],[9,10,["H5840"]],[10,11,["H1074"]],[11,13,["H3458"]],[13,15,["H8187"]],[15,17,["H5662"]],[17,19,["H2605"]],[19,20,["H428"]],[20,23,["H1121"]],[23,25,["H682"]]]},{"k":10660,"v":[[0,3,["H6430"]],[3,4,["H3898"]],[4,6,["H3478"]],[6,9,["H376"]],[9,11,["H3478"]],[11,12,["H5127"]],[12,14,["H4480","H6440"]],[14,16,["H6430"]],[16,19,["H5307"]],[19,20,["H2491"]],[20,22,["H2022"]],[22,23,["H1533"]]]},{"k":10661,"v":[[0,3,["H6430"]],[3,5,["H1692"]],[5,6,["H310"]],[6,7,["H7586"]],[7,9,["H310"]],[9,11,["H1121"]],[11,14,["H6430"]],[14,15,["H5221","(H853)"]],[15,16,["H3129"]],[16,18,["H41"]],[18,20,["H4444"]],[20,22,["H1121"]],[22,24,["H7586"]]]},{"k":10662,"v":[[0,3,["H4421"]],[3,5,["H3513"]],[5,6,["H5921"]],[6,7,["H7586"]],[7,10,["H3384","H7198"]],[10,11,["H4672"]],[11,16,["H2342"]],[16,17,["H4480"]],[17,19,["H3384"]]]},{"k":10663,"v":[[0,2,["H559"]],[2,3,["H7586"]],[3,4,["H413"]],[4,6,["H5375","H3627"]],[6,7,["H8025"]],[7,9,["H2719"]],[9,13,["H1856"]],[13,15,["H6435"]],[15,16,["H428"]],[16,17,["H6189"]],[17,18,["H935"]],[18,20,["H5953"]],[20,24,["H5375","H3627"]],[24,25,["H14"]],[25,26,["H3808"]],[26,27,["H3588"]],[27,31,["H3372","H3966"]],[31,33,["H7586"]],[33,34,["H3947","(H853)"]],[34,36,["H2719"]],[36,38,["H5307"]],[38,39,["H5921"]],[39,40,[]]]},{"k":10664,"v":[[0,4,["H5375","H3627"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,7,["H7586"]],[7,9,["H4191"]],[9,10,["H1931"]],[10,11,["H5307"]],[11,12,["H1571"]],[12,13,["H5921"]],[13,15,["H2719"]],[15,17,["H4191"]]]},{"k":10665,"v":[[0,2,["H7586"]],[2,3,["H4191"]],[3,6,["H7969"]],[6,7,["H1121"]],[7,9,["H3605"]],[9,11,["H1004"]],[11,12,["H4191"]],[12,13,["H3162"]]]},{"k":10666,"v":[[0,3,["H3605"]],[3,5,["H376"]],[5,7,["H3478"]],[7,8,["H834"]],[8,12,["H6010"]],[12,13,["H7200"]],[13,14,["H3588"]],[14,16,["H5127"]],[16,18,["H3588"]],[18,19,["H7586"]],[19,22,["H1121"]],[22,24,["H4191"]],[24,27,["H5800"]],[27,29,["H5892"]],[29,31,["H5127"]],[31,34,["H6430"]],[34,35,["H935"]],[35,37,["H3427"]],[37,39,[]]]},{"k":10667,"v":[[0,5,["H1961"]],[5,6,["H4480"]],[6,8,["H4283"]],[8,11,["H6430"]],[11,12,["H935"]],[12,14,["H6584","(H853)"]],[14,16,["H2491"]],[16,19,["H4672","(H853)"]],[19,20,["H7586"]],[20,23,["H1121"]],[23,24,["H5307"]],[24,26,["H2022"]],[26,27,["H1533"]]]},{"k":10668,"v":[[0,5,["H6584"]],[5,8,["H5375","(H853)"]],[8,10,["H7218"]],[10,13,["H3627"]],[13,15,["H7971"]],[15,18,["H776"]],[18,21,["H6430"]],[21,23,["H5439"]],[23,26,["H1319","(H853)"]],[26,29,["H6091"]],[29,33,["H5971"]]]},{"k":10669,"v":[[0,3,["H7760","(H853)"]],[3,5,["H3627"]],[5,8,["H1004"]],[8,11,["H430"]],[11,13,["H8628"]],[13,15,["H1538"]],[15,18,["H1004"]],[18,20,["H1712"]]]},{"k":10670,"v":[[0,3,["H3605"]],[3,4,["H3003","H1568"]],[4,5,["H8085","(H853)"]],[5,6,["H3605"]],[6,7,["H834"]],[7,9,["H6430"]],[9,11,["H6213"]],[11,13,["H7586"]]]},{"k":10671,"v":[[0,2,["H6965"]],[2,3,["H3605"]],[3,5,["H2428"]],[5,6,["H376"]],[6,9,["H5375","(H853)"]],[9,11,["H1480"]],[11,13,["H7586"]],[13,16,["H1480"]],[16,19,["H1121"]],[19,21,["H935"]],[21,24,["H3003"]],[24,26,["H6912","(H853)"]],[26,28,["H6106"]],[28,29,["H8478"]],[29,31,["H424"]],[31,33,["H3003"]],[33,35,["H6684"]],[35,36,["H7651"]],[36,37,["H3117"]]]},{"k":10672,"v":[[0,2,["H7586"]],[2,3,["H4191"]],[3,6,["H4604"]],[6,7,["H834"]],[7,9,["H4603"]],[9,12,["H3068"]],[12,14,["H5921"]],[14,16,["H1697"]],[16,19,["H3068"]],[19,20,["H834"]],[20,22,["H8104"]],[22,23,["H3808"]],[23,25,["H1571"]],[25,27,["H7592"]],[27,35,["H178"]],[35,37,["H1875"]],[37,39,[]]]},{"k":10673,"v":[[0,2,["H1875"]],[2,3,["H3808"]],[3,6,["H3068"]],[6,9,["H4191"]],[9,12,["H5437","(H853)"]],[12,14,["H4410"]],[14,16,["H1732"]],[16,18,["H1121"]],[18,20,["H3448"]]]},{"k":10674,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,5,["H6908"]],[5,6,["H413"]],[6,7,["H1732"]],[7,9,["H2275"]],[9,10,["H559"]],[10,11,["H2009"]],[11,12,["H587"]],[12,15,["H6106"]],[15,18,["H1320"]]]},{"k":10675,"v":[[0,2,["H1571"]],[2,5,["H8543","H1571","H8032"]],[5,6,["H1571"]],[6,8,["H7586"]],[8,9,["H1961"]],[9,10,["H4428"]],[10,11,["H859"]],[11,16,["H3318"]],[16,19,["H935","(H853)"]],[19,20,["H3478"]],[20,23,["H3068"]],[23,25,["H430"]],[25,26,["H559"]],[26,29,["H859"]],[29,31,["H7462","(H853)"]],[31,33,["H5971","(H853)"]],[33,34,["H3478"]],[34,36,["H859"]],[36,38,["H1961"]],[38,39,["H5057"]],[39,40,["H5921"]],[40,42,["H5971"]],[42,43,["H3478"]]]},{"k":10676,"v":[[0,2,["H935"]],[2,3,["H3605"]],[3,5,["H2205"]],[5,7,["H3478"]],[7,8,["H413"]],[8,10,["H4428"]],[10,12,["H2275"]],[12,14,["H1732"]],[14,15,["H3772"]],[15,17,["H1285"]],[17,21,["H2275"]],[21,22,["H6440"]],[22,24,["H3068"]],[24,27,["H4886","(H853)"]],[27,28,["H1732"]],[28,29,["H4428"]],[29,30,["H5921"]],[30,31,["H3478"]],[31,35,["H1697"]],[35,38,["H3068"]],[38,39,["H3027"]],[39,40,["H8050"]]]},{"k":10677,"v":[[0,2,["H1732"]],[2,4,["H3605"]],[4,5,["H3478"]],[5,6,["H1980"]],[6,8,["H3389"]],[8,9,["H1931"]],[9,11,["H2982"]],[11,12,["H8033"]],[12,14,["H2983"]],[14,17,["H3427"]],[17,20,["H776"]]]},{"k":10678,"v":[[0,3,["H3427"]],[3,5,["H2982"]],[5,6,["H559"]],[6,8,["H1732"]],[8,11,["H3808"]],[11,12,["H935"]],[12,13,["H2008"]],[13,15,["H1732"]],[15,16,["H3920","(H853)"]],[16,18,["H4686"]],[18,20,["H6726"]],[20,21,["H1931"]],[21,24,["H5892"]],[24,26,["H1732"]]]},{"k":10679,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H3605"]],[4,5,["H5221"]],[5,7,["H2983"]],[7,8,["H7223"]],[8,10,["H1961"]],[10,11,["H7218"]],[11,13,["H8269"]],[13,15,["H3097"]],[15,17,["H1121"]],[17,19,["H6870"]],[19,22,["H5927","H7223"]],[22,24,["H1961"]],[24,25,["H7218"]]]},{"k":10680,"v":[[0,2,["H1732"]],[2,3,["H3427"]],[3,6,["H4679"]],[6,7,["H5921","H3651"]],[7,9,["H7121"]],[9,12,["H5892"]],[12,14,["H1732"]]]},{"k":10681,"v":[[0,3,["H1129"]],[3,5,["H5892"]],[5,7,["H4480","H5439"]],[7,9,["H4480"]],[9,10,["H4407"]],[10,12,["H5439"]],[12,14,["H3097"]],[14,15,["H2421","(H853)"]],[15,17,["H7605"]],[17,20,["H5892"]]]},{"k":10682,"v":[[0,2,["H1732"]],[2,6,["H1980","H1980","H1431"]],[6,9,["H3068"]],[9,11,["H6635"]],[11,13,["H5973"]],[13,14,[]]]},{"k":10683,"v":[[0,1,["H428"]],[1,5,["H7218"]],[5,9,["H1368"]],[9,10,["H834"]],[10,11,["H1732"]],[11,15,["H2388"]],[15,16,["H5973"]],[16,20,["H4438"]],[20,22,["H5973"]],[22,23,["H3605"]],[23,24,["H3478"]],[24,28,["H4427"]],[28,32,["H1697"]],[32,35,["H3068"]],[35,36,["H5921"]],[36,37,["H3478"]]]},{"k":10684,"v":[[0,2,["H428"]],[2,5,["H4557"]],[5,9,["H1368"]],[9,10,["H834"]],[10,11,["H1732"]],[11,13,["H3434"]],[13,15,["H1121","H2453"]],[15,17,["H7218"]],[17,20,["H7991"]],[20,21,["H1931"]],[21,23,["H5782","(H853)"]],[23,25,["H2595"]],[25,26,["H5921"]],[26,27,["H7969"]],[27,28,["H3967"]],[28,29,["H2491"]],[29,33,["H259"]],[33,34,["H6471"]]]},{"k":10685,"v":[[0,2,["H310"]],[2,5,["H499"]],[5,7,["H1121"]],[7,9,["H1734"]],[9,11,["H266"]],[11,12,["H1931"]],[12,17,["H7969"]],[17,18,["H1368"]]]},{"k":10686,"v":[[0,1,["H1931"]],[1,2,["H1961"]],[2,3,["H5973"]],[3,4,["H1732"]],[4,6,["H6450"]],[6,8,["H8033"]],[8,10,["H6430"]],[10,13,["H622"]],[13,15,["H4421"]],[15,17,["H1961"]],[17,19,["H2513"]],[19,21,["H7704"]],[21,22,["H4392"]],[22,24,["H8184"]],[24,27,["H5971"]],[27,28,["H5127"]],[28,30,["H4480","H6440"]],[30,32,["H6430"]]]},{"k":10687,"v":[[0,4,["H3320"]],[4,7,["H8432"]],[7,10,["H2513"]],[10,12,["H5337"]],[12,15,["H5221","(H853)"]],[15,17,["H6430"]],[17,20,["H3068"]],[20,21,["H3467"]],[21,25,["H1419"]],[25,26,["H8668"]]]},{"k":10688,"v":[[0,2,["H7969"]],[2,3,["H4480"]],[3,5,["H7970"]],[5,6,["H7218"]],[6,8,["H3381"]],[8,9,["H5921"]],[9,11,["H6697"]],[11,12,["H413"]],[12,13,["H1732"]],[13,14,["H413"]],[14,16,["H4631"]],[16,18,["H5725"]],[18,21,["H4264"]],[21,24,["H6430"]],[24,25,["H2583"]],[25,28,["H6010"]],[28,30,["H7497"]]]},{"k":10689,"v":[[0,2,["H1732"]],[2,4,["H227"]],[4,7,["H4686"]],[7,10,["H6430"]],[10,11,["H5333"]],[11,13,["H227"]],[13,15,["H1035"]]]},{"k":10690,"v":[[0,2,["H1732"]],[2,3,["H183"]],[3,5,["H559"]],[5,7,["H4310"]],[7,12,["H8248"]],[12,15,["H4325"]],[15,18,["H4480","H953"]],[18,20,["H1035"]],[20,21,["H834"]],[21,25,["H8179"]]]},{"k":10691,"v":[[0,3,["H7969"]],[3,5,["H1234"]],[5,7,["H4264"]],[7,10,["H6430"]],[10,12,["H7579"]],[12,13,["H4325"]],[13,17,["H4480","H953"]],[17,19,["H1035"]],[19,20,["H834"]],[20,24,["H8179"]],[24,26,["H5375"]],[26,29,["H935"]],[29,31,["H413"]],[31,32,["H1732"]],[32,34,["H1732"]],[34,35,["H14"]],[35,36,["H3808"]],[36,37,["H8354"]],[37,43,["H5258","(H853)"]],[43,46,["H3068"]]]},{"k":10692,"v":[[0,2,["H559"]],[2,4,["H4480","H430"]],[4,6,["H2486"]],[6,11,["H4480","H6213"]],[11,13,["H2063"]],[13,16,["H8354"]],[16,18,["H1818"]],[18,20,["H428"]],[20,21,["H376"]],[21,26,["H5315"]],[26,29,["H3588"]],[29,35,["H5315"]],[35,37,["H935"]],[37,41,["H14"]],[41,42,["H3808"]],[42,43,["H8354"]],[43,46,["H428"]],[46,47,["H6213"]],[47,49,["H7969"]],[49,50,["H1368"]]]},{"k":10693,"v":[[0,2,["H52"]],[2,4,["H251"]],[4,6,["H3097"]],[6,7,["H1931"]],[7,8,["H1961"]],[8,9,["H7218"]],[9,12,["H7969"]],[12,15,["H5782","(H853)"]],[15,17,["H2595"]],[17,18,["H5921"]],[18,19,["H7969"]],[19,20,["H3967"]],[20,21,["H1931"]],[21,22,["H2491"]],[22,27,["H8034"]],[27,30,["H7969"]]]},{"k":10694,"v":[[0,1,["H4480"]],[1,3,["H7969"]],[3,7,["H3513"]],[7,10,["H8147"]],[10,13,["H1961"]],[13,15,["H8269"]],[15,18,["H935"]],[18,19,["H3808"]],[19,20,["H5704"]],[20,23,["H7969"]]]},{"k":10695,"v":[[0,1,["H1141"]],[1,3,["H1121"]],[3,5,["H3111"]],[5,7,["H1121"]],[7,10,["H2428"]],[10,11,["H376"]],[11,12,["H4480"]],[12,13,["H6909"]],[13,17,["H7227"]],[17,18,["H6467"]],[18,19,["H1931"]],[19,20,["H5221","(H853)"]],[20,21,["H8147"]],[21,23,["H739"]],[23,25,["H4124"]],[25,27,["H1931"]],[27,29,["H3381"]],[29,31,["H5221","(H853)"]],[31,33,["H738"]],[33,34,["H8432"]],[34,36,["H953"]],[36,39,["H7950"]],[39,40,["H3117"]]]},{"k":10696,"v":[[0,2,["H1931"]],[2,3,["H5221","(H853)"]],[3,5,["H376","H4713"]],[5,7,["H376"]],[7,10,["H4060"]],[10,11,["H2568"]],[11,12,["H520"]],[12,17,["H4713"]],[17,18,["H3027"]],[18,21,["H2595"]],[21,24,["H707"]],[24,25,["H4500"]],[25,29,["H3381"]],[29,30,["H413"]],[30,34,["H7626"]],[34,36,["H1497","(H853)"]],[36,38,["H2595"]],[38,43,["H4480","H3027","H4713"]],[43,45,["H2026"]],[45,50,["H2595"]]]},{"k":10697,"v":[[0,1,["H428"]],[1,3,["H6213"]],[3,4,["H1141"]],[4,6,["H1121"]],[6,8,["H3111"]],[8,12,["H8034"]],[12,15,["H7969"]],[15,16,["H1368"]]]},{"k":10698,"v":[[0,1,["H2009"]],[1,2,["H1931"]],[2,4,["H3513"]],[4,5,["H4480"]],[5,7,["H7970"]],[7,9,["H935"]],[9,10,["H3808"]],[10,11,["H413"]],[11,14,["H7969"]],[14,16,["H1732"]],[16,17,["H7760"]],[17,19,["H5921"]],[19,21,["H4928"]]]},{"k":10699,"v":[[0,4,["H1368"]],[4,7,["H2428"]],[7,9,["H6214"]],[9,11,["H251"]],[11,13,["H3097"]],[13,14,["H445"]],[14,16,["H1121"]],[16,18,["H1734"]],[18,20,["H4480","H1035"]]]},{"k":10700,"v":[[0,1,["H8054"]],[1,3,["H2033"]],[3,4,["H2503"]],[4,6,["H6397"]]]},{"k":10701,"v":[[0,1,["H5896"]],[1,3,["H1121"]],[3,5,["H6142"]],[5,7,["H8621"]],[7,8,["H44"]],[8,10,["H6069"]]]},{"k":10702,"v":[[0,1,["H5444"]],[1,3,["H2843"]],[3,4,["H5866"]],[4,6,["H266"]]]},{"k":10703,"v":[[0,1,["H4121"]],[1,3,["H5200"]],[3,4,["H2466"]],[4,6,["H1121"]],[6,8,["H1196"]],[8,10,["H5200"]]]},{"k":10704,"v":[[0,1,["H863"]],[1,3,["H1121"]],[3,5,["H7380"]],[5,7,["H4480","H1390"]],[7,12,["H1121"]],[12,14,["H1144"]],[14,15,["H1141"]],[15,17,["H6553"]]]},{"k":10705,"v":[[0,1,["H2360"]],[1,4,["H4480","H5158"]],[4,6,["H1608"]],[6,7,["H22"]],[7,9,["H6164"]]]},{"k":10706,"v":[[0,1,["H5820"]],[1,3,["H978"]],[3,4,["H455"]],[4,6,["H8170"]]]},{"k":10707,"v":[[0,2,["H1121"]],[2,4,["H2044"]],[4,6,["H1493"]],[6,7,["H3129"]],[7,9,["H1121"]],[9,11,["H7681"]],[11,13,["H2043"]]]},{"k":10708,"v":[[0,1,["H279"]],[1,3,["H1121"]],[3,5,["H7940"]],[5,7,["H2043"]],[7,8,["H465"]],[8,10,["H1121"]],[10,12,["H218"]]]},{"k":10709,"v":[[0,1,["H2660"]],[1,3,["H4382"]],[3,4,["H281"]],[4,6,["H6397"]]]},{"k":10710,"v":[[0,1,["H2695"]],[1,3,["H3761"]],[3,4,["H5293"]],[4,6,["H1121"]],[6,8,["H229"]]]},{"k":10711,"v":[[0,1,["H3100"]],[1,3,["H251"]],[3,5,["H5416"]],[5,6,["H4006"]],[6,8,["H1121"]],[8,10,["H1905"]]]},{"k":10712,"v":[[0,1,["H6768"]],[1,3,["H5984"]],[3,4,["H5171"]],[4,6,["H1307"]],[6,8,["H5375","H3627"]],[8,10,["H3097"]],[10,12,["H1121"]],[12,14,["H6870"]]]},{"k":10713,"v":[[0,1,["H5896"]],[1,3,["H3505"]],[3,4,["H1619"]],[4,6,["H3505"]]]},{"k":10714,"v":[[0,1,["H223"]],[1,3,["H2850"]],[3,4,["H2066"]],[4,6,["H1121"]],[6,8,["H304"]]]},{"k":10715,"v":[[0,1,["H5721"]],[1,3,["H1121"]],[3,5,["H7877"]],[5,7,["H7206"]],[7,9,["H7218"]],[9,12,["H7206"]],[12,14,["H7970"]],[14,15,["H5921"]],[15,16,[]]]},{"k":10716,"v":[[0,1,["H2605"]],[1,3,["H1121"]],[3,5,["H4601"]],[5,7,["H3146"]],[7,9,["H4981"]]]},{"k":10717,"v":[[0,1,["H5814"]],[1,3,["H6254"]],[3,4,["H8091"]],[4,6,["H3273"]],[6,8,["H1121"]],[8,10,["H2369"]],[10,12,["H6200"]]]},{"k":10718,"v":[[0,1,["H3043"]],[1,3,["H1121"]],[3,5,["H8113"]],[5,7,["H3109"]],[7,9,["H251"]],[9,11,["H8491"]]]},{"k":10719,"v":[[0,1,["H447"]],[1,3,["H4233"]],[3,5,["H3403"]],[5,7,["H3145"]],[7,9,["H1121"]],[9,11,["H493"]],[11,13,["H3495"]],[13,15,["H4125"]]]},{"k":10720,"v":[[0,1,["H447"]],[1,3,["H5744"]],[3,5,["H3300"]],[5,7,["H4677"]]]},{"k":10721,"v":[[0,2,["H428"]],[2,6,["H935"]],[6,7,["H413"]],[7,8,["H1732"]],[8,10,["H6860"]],[10,13,["H5750"]],[13,16,["H6113"]],[16,17,["H4480","H6440"]],[17,19,["H7586"]],[19,21,["H1121"]],[21,23,["H7027"]],[23,25,["H1992"]],[25,30,["H1368"]],[30,31,["H5826"]],[31,34,["H4421"]]]},{"k":10722,"v":[[0,3,["H5401"]],[3,5,["H7198"]],[5,12,["H3231"]],[12,15,["H8041"]],[15,18,["H68"]],[18,21,["H2671"]],[21,25,["H7198"]],[25,29,["H4480","H251","H7586"]],[29,31,["H4480","H1144"]]]},{"k":10723,"v":[[0,2,["H7218"]],[2,4,["H295"]],[4,6,["H3101"]],[6,8,["H1121"]],[8,10,["H8094"]],[10,12,["H1395"]],[12,14,["H3149"]],[14,16,["H6404"]],[16,18,["H1121"]],[18,20,["H5820"]],[20,22,["H1294"]],[22,24,["H3058"]],[24,26,["H6069"]]]},{"k":10724,"v":[[0,2,["H3460"]],[2,4,["H1393"]],[4,7,["H1368"]],[7,10,["H7970"]],[10,12,["H5921"]],[12,14,["H7970"]],[14,16,["H3414"]],[16,18,["H3166"]],[18,20,["H3110"]],[20,22,["H3107"]],[22,24,["H1452"]]]},{"k":10725,"v":[[0,1,["H498"]],[1,3,["H3406"]],[3,5,["H1183"]],[5,7,["H8114"]],[7,9,["H8203"]],[9,11,["H2741"]]]},{"k":10726,"v":[[0,1,["H511"]],[1,3,["H3449"]],[3,5,["H5832"]],[5,7,["H3134"]],[7,9,["H3434"]],[9,11,["H7145"]]]},{"k":10727,"v":[[0,2,["H3132"]],[2,4,["H2069"]],[4,6,["H1121"]],[6,8,["H3395"]],[8,9,["H4480"]],[9,10,["H1446"]]]},{"k":10728,"v":[[0,2,["H4480"]],[2,4,["H1425"]],[4,7,["H914"]],[7,8,["H413"]],[8,9,["H1732"]],[9,12,["H4679"]],[12,15,["H4057"]],[15,16,["H1368"]],[16,18,["H2428"]],[18,20,["H376"]],[20,22,["H6635"]],[22,26,["H4421"]],[26,29,["H6186"]],[29,30,["H6793"]],[30,32,["H7420"]],[32,34,["H6440"]],[34,38,["H6440"]],[38,40,["H738"]],[40,44,["H4116"]],[44,47,["H6643"]],[47,48,["H5921"]],[48,50,["H2022"]]]},{"k":10729,"v":[[0,1,["H5829"]],[1,3,["H7218"]],[3,4,["H5662"]],[4,6,["H8145"]],[6,7,["H446"]],[7,9,["H7992"]]]},{"k":10730,"v":[[0,1,["H4925"]],[1,3,["H7243"]],[3,4,["H3414"]],[4,6,["H2549"]]]},{"k":10731,"v":[[0,1,["H6262"]],[1,3,["H8345"]],[3,4,["H447"]],[4,6,["H7637"]]]},{"k":10732,"v":[[0,1,["H3110"]],[1,3,["H8066"]],[3,4,["H443"]],[4,6,["H8671"]]]},{"k":10733,"v":[[0,1,["H3414"]],[1,3,["H6224"]],[3,4,["H4344"]],[4,6,["H6249","H6240"]]]},{"k":10734,"v":[[0,1,["H428"]],[1,5,["H4480","H1121"]],[5,7,["H1410"]],[7,8,["H7218"]],[8,11,["H6635"]],[11,12,["H259"]],[12,15,["H6996"]],[15,19,["H3967"]],[19,22,["H1419"]],[22,25,["H505"]]]},{"k":10735,"v":[[0,1,["H428"]],[1,3,["H1992"]],[3,4,["H834"]],[4,6,["H5674","(H853)"]],[6,7,["H3383"]],[7,10,["H7223"]],[10,11,["H2320"]],[11,13,["H1931"]],[13,15,["H4390","H5921"]],[15,16,["H3605"]],[16,18,["H1428"]],[18,23,["H1272","(H853)"]],[23,24,["H3605"]],[24,28,["H6010"]],[28,32,["H4217"]],[32,36,["H4628"]]]},{"k":10736,"v":[[0,3,["H935"]],[3,4,["H4480"]],[4,6,["H1121"]],[6,8,["H1144"]],[8,10,["H3063"]],[10,11,["H5704"]],[11,13,["H4679"]],[13,15,["H1732"]]]},{"k":10737,"v":[[0,2,["H1732"]],[2,4,["H3318"]],[4,6,["H6440"]],[6,9,["H6030"]],[9,11,["H559"]],[11,14,["H518"]],[14,17,["H935"]],[17,18,["H7965"]],[18,19,["H413"]],[19,22,["H5826"]],[22,25,["H3824"]],[25,27,["H1961"]],[27,28,["H3162"]],[28,29,["H5921"]],[29,32,["H518"]],[32,37,["H7411"]],[37,41,["H6862"]],[41,45,["H3808"]],[45,46,["H2555"]],[46,49,["H3709"]],[49,51,["H430"]],[51,54,["H1"]],[54,55,["H7200"]],[55,58,["H3198"]],[58,59,[]]]},{"k":10738,"v":[[0,3,["H7307"]],[3,5,["H3847","(H853)"]],[5,6,["H6022"]],[6,9,["H7218"]],[9,12,["H7991"]],[12,19,["H1732"]],[19,23,["H5973"]],[23,25,["H1121"]],[25,27,["H3448"]],[27,28,["H7965"]],[28,29,["H7965"]],[29,34,["H7965"]],[34,38,["H5826"]],[38,39,["H3588"]],[39,41,["H430"]],[41,42,["H5826"]],[42,45,["H1732"]],[45,46,["H6901"]],[46,49,["H5414"]],[49,51,["H7218"]],[51,54,["H1416"]]]},{"k":10739,"v":[[0,3,["H5307"]],[3,5,["H4480"]],[5,6,["H4519"]],[6,7,["H5921"]],[7,8,["H1732"]],[8,11,["H935"]],[11,12,["H5973"]],[12,14,["H6430"]],[14,15,["H5921"]],[15,16,["H7586"]],[16,18,["H4421"]],[18,21,["H5826"]],[21,23,["H3808"]],[23,24,["H3588"]],[24,26,["H5633"]],[26,29,["H6430"]],[29,31,["H6098"]],[31,34,["H7971"]],[34,35,["H559"]],[35,38,["H5307"]],[38,39,["H413"]],[39,41,["H113"]],[41,42,["H7586"]],[42,48,["H7218"]]]},{"k":10740,"v":[[0,3,["H1980"]],[3,4,["H413"]],[4,5,["H6860"]],[5,7,["H5307"]],[7,8,["H5921"]],[8,11,["H4480","H4519"]],[11,12,["H5734"]],[12,14,["H3107"]],[14,16,["H3043"]],[16,18,["H4317"]],[18,20,["H3107"]],[20,22,["H453"]],[22,24,["H6769"]],[24,25,["H7218"]],[25,28,["H505"]],[28,29,["H834"]],[29,32,["H4519"]]]},{"k":10741,"v":[[0,2,["H1992"]],[2,3,["H5826","H5973"]],[3,4,["H1732"]],[4,5,["H5921"]],[5,7,["H1416"]],[7,11,["H3588"]],[11,14,["H3605"]],[14,16,["H1368"]],[16,18,["H2428"]],[18,20,["H1961"]],[20,21,["H8269"]],[21,24,["H6635"]]]},{"k":10742,"v":[[0,1,["H3588"]],[1,4,["H6256"]],[4,5,["H3117"]],[5,7,["H3117"]],[7,9,["H935"]],[9,10,["H5921"]],[10,11,["H1732"]],[11,13,["H5826"]],[13,15,["H5704"]],[15,19,["H1419"]],[19,20,["H4264"]],[20,23,["H4264"]],[23,25,["H430"]]]},{"k":10743,"v":[[0,2,["H428"]],[2,5,["H4557"]],[5,8,["H7218"]],[8,12,["H2502"]],[12,15,["H6635"]],[15,17,["H935"]],[17,18,["H5921"]],[18,19,["H1732"]],[19,21,["H2275"]],[21,23,["H5437"]],[23,25,["H4438"]],[25,27,["H7586"]],[27,28,["H413"]],[28,33,["H6310"]],[33,36,["H3068"]]]},{"k":10744,"v":[[0,2,["H1121"]],[2,4,["H3063"]],[4,6,["H5375"]],[6,7,["H6793"]],[7,9,["H7420"]],[9,11,["H8337"]],[11,12,["H505"]],[12,14,["H8083"]],[14,15,["H3967"]],[15,17,["H2502"]],[17,20,["H6635"]]]},{"k":10745,"v":[[0,1,["H4480"]],[1,3,["H1121"]],[3,5,["H8095"]],[5,7,["H1368"]],[7,9,["H2428"]],[9,12,["H6635"]],[12,13,["H7651"]],[13,14,["H505"]],[14,17,["H3967"]]]},{"k":10746,"v":[[0,1,["H4480"]],[1,3,["H1121"]],[3,5,["H3878"]],[5,6,["H702"]],[6,7,["H505"]],[7,9,["H8337"]],[9,10,["H3967"]]]},{"k":10747,"v":[[0,2,["H3111"]],[2,5,["H5057"]],[5,8,["H175"]],[8,10,["H5973"]],[10,13,["H7969"]],[13,14,["H505"]],[14,16,["H7651"]],[16,17,["H3967"]]]},{"k":10748,"v":[[0,2,["H6659"]],[2,5,["H5288"]],[5,6,["H1368"]],[6,8,["H2428"]],[8,12,["H1"]],[12,13,["H1004"]],[13,14,["H6242"]],[14,16,["H8147"]],[16,17,["H8269"]]]},{"k":10749,"v":[[0,2,["H4480"]],[2,4,["H1121"]],[4,6,["H1144"]],[6,8,["H251"]],[8,10,["H7586"]],[10,11,["H7969"]],[11,12,["H505"]],[12,14,["H5704","H2008"]],[14,17,["H4768"]],[17,21,["H8104"]],[21,23,["H4931"]],[23,26,["H1004"]],[26,28,["H7586"]]]},{"k":10750,"v":[[0,2,["H4480"]],[2,4,["H1121"]],[4,6,["H669"]],[6,7,["H6242"]],[7,8,["H505"]],[8,10,["H8083"]],[10,11,["H3967"]],[11,13,["H1368"]],[13,15,["H2428"]],[15,16,["H376","H8034"]],[16,19,["H1004"]],[19,22,["H1"]]]},{"k":10751,"v":[[0,4,["H4480","H2677"]],[4,5,["H4294"]],[5,7,["H4519"]],[7,8,["H8083","H6240"]],[8,9,["H505"]],[9,10,["H834"]],[10,12,["H5344"]],[12,14,["H8034"]],[14,16,["H935"]],[16,20,["H4427","(H853)","H1732"]]]},{"k":10752,"v":[[0,4,["H4480","H1121"]],[4,6,["H3485"]],[6,11,["H3045"]],[11,12,["H998"]],[12,15,["H6256"]],[15,17,["H3045"]],[17,18,["H4100"]],[18,19,["H3478"]],[19,22,["H6213"]],[22,24,["H7218"]],[24,29,["H3967"]],[29,31,["H3605"]],[31,33,["H251"]],[33,35,["H5921"]],[35,37,["H6310"]]]},{"k":10753,"v":[[0,2,["H4480","H2074"]],[2,6,["H3318"]],[6,8,["H6635"]],[8,9,["H6186"]],[9,11,["H4421"]],[11,13,["H3605"]],[13,14,["H3627"]],[14,16,["H4421"]],[16,17,["H2572"]],[17,18,["H505"]],[18,22,["H5737"]],[22,25,["H3808"]],[25,28,["H3820","H3820"]]]},{"k":10754,"v":[[0,3,["H4480","H5321"]],[3,5,["H505"]],[5,6,["H8269"]],[6,8,["H5973"]],[8,11,["H6793"]],[11,13,["H2595"]],[13,14,["H7970"]],[14,16,["H7651"]],[16,17,["H505"]]]},{"k":10755,"v":[[0,2,["H4480"]],[2,4,["H1839"]],[4,5,["H6186"]],[5,7,["H4421"]],[7,8,["H6242"]],[8,10,["H8083"]],[10,11,["H505"]],[11,13,["H8337"]],[13,14,["H3967"]]]},{"k":10756,"v":[[0,3,["H4480","H836"]],[3,7,["H3318"]],[7,9,["H6635"]],[9,10,["H6186"]],[10,12,["H4421"]],[12,13,["H705"]],[13,14,["H505"]]]},{"k":10757,"v":[[0,5,["H4480","H5676"]],[5,7,["H3383"]],[7,8,["H4480"]],[8,10,["H7206"]],[10,13,["H1425"]],[13,17,["H2677"]],[17,18,["H7626"]],[18,20,["H4519"]],[20,23,["H3605"]],[23,25,["H3627"]],[25,27,["H6635"]],[27,30,["H4421"]],[30,32,["H3967"]],[32,34,["H6242"]],[34,35,["H505"]]]},{"k":10758,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,3,["H376"]],[3,5,["H4421"]],[5,8,["H5737"]],[8,9,["H4634"]],[9,10,["H935"]],[10,13,["H8003"]],[13,14,["H3824"]],[14,16,["H2275"]],[16,20,["H4427","(H853)","H1732"]],[20,21,["H5921"]],[21,22,["H3605"]],[22,23,["H3478"]],[23,25,["H3605"]],[25,27,["H7611"]],[27,28,["H1571"]],[28,30,["H3478"]],[30,33,["H259"]],[33,34,["H3820"]],[34,38,["H4427","(H853)","H1732"]]]},{"k":10759,"v":[[0,2,["H8033"]],[2,4,["H1961"]],[4,5,["H5973"]],[5,6,["H1732"]],[6,7,["H7969"]],[7,8,["H3117"]],[8,9,["H398"]],[9,11,["H8354"]],[11,12,["H3588"]],[12,14,["H251"]],[14,16,["H3559"]],[16,18,[]]]},{"k":10760,"v":[[0,1,["H1571"]],[1,5,["H7138","H413"]],[5,8,["H5704"]],[8,9,["H3485"]],[9,11,["H2074"]],[11,13,["H5321"]],[13,14,["H935"]],[14,15,["H3899"]],[15,17,["H2543"]],[17,20,["H1581"]],[20,23,["H6505"]],[23,26,["H1241"]],[26,28,["H3978"]],[28,29,["H7058"]],[29,32,["H1690"]],[32,36,["H6778"]],[36,38,["H3196"]],[38,40,["H8081"]],[40,42,["H1241"]],[42,44,["H6629"]],[44,45,["H7230"]],[45,46,["H3588"]],[46,49,["H8057"]],[49,51,["H3478"]]]},{"k":10761,"v":[[0,2,["H1732"]],[2,3,["H3289"]],[3,4,["H5973"]],[4,6,["H8269"]],[6,8,["H505"]],[8,10,["H3967"]],[10,13,["H3605"]],[13,14,["H5057"]]]},{"k":10762,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H3605"]],[5,7,["H6951"]],[7,9,["H3478"]],[9,10,["H518"]],[10,13,["H2895"]],[13,14,["H5921"]],[14,20,["H4480"]],[20,22,["H3068"]],[22,24,["H430"]],[24,27,["H7971"]],[27,28,["H6555"]],[28,29,["H5921"]],[29,31,["H251"]],[31,36,["H7604"]],[36,38,["H3605"]],[38,40,["H776"]],[40,42,["H3478"]],[42,44,["H5973"]],[44,49,["H3548"]],[49,51,["H3881"]],[51,56,["H5892"]],[56,58,["H4054"]],[58,63,["H6908"]],[63,64,["H413"]],[64,65,[]]]},{"k":10763,"v":[[0,5,["H5437","(H853)"]],[5,7,["H727"]],[7,10,["H430"]],[10,11,["H413"]],[11,13,["H3588"]],[13,15,["H1875"]],[15,16,["H3808"]],[16,21,["H3117"]],[21,23,["H7586"]]]},{"k":10764,"v":[[0,2,["H3605"]],[2,4,["H6951"]],[4,5,["H559"]],[5,9,["H6213"]],[9,10,["H3651"]],[10,11,["H3588"]],[11,13,["H1697"]],[13,15,["H3474"]],[15,18,["H5869"]],[18,20,["H3605"]],[20,22,["H5971"]]]},{"k":10765,"v":[[0,2,["H1732"]],[2,3,["H6950","(H853)"]],[3,4,["H3605"]],[4,5,["H3478"]],[5,7,["H4480"]],[7,8,["H7883"]],[8,10,["H4714"]],[10,12,["H5704"]],[12,14,["H935"]],[14,16,["H2574"]],[16,18,["H935","(H853)"]],[18,20,["H727"]],[20,22,["H430"]],[22,24,["H4480","H7157"]]]},{"k":10766,"v":[[0,2,["H1732"]],[2,4,["H5927"]],[4,6,["H3605"]],[6,7,["H3478"]],[7,9,["H1173"]],[9,12,["H413"]],[12,13,["H7157"]],[13,14,["H834"]],[14,17,["H3063"]],[17,20,["H5927"]],[20,21,["H4480","H8033","(H853)"]],[21,23,["H727"]],[23,25,["H430"]],[25,27,["H3068"]],[27,29,["H3427"]],[29,32,["H3742"]],[32,33,["H834"]],[33,34,["H8034"]],[34,36,["H7121"]],[36,38,[]]]},{"k":10767,"v":[[0,3,["H7392","(H853)"]],[3,5,["H727"]],[5,7,["H430"]],[7,8,["H5921"]],[8,10,["H2319"]],[10,11,["H5699"]],[11,15,["H4480","H1004"]],[15,17,["H41"]],[17,19,["H5798"]],[19,21,["H283"]],[21,22,["H5090"]],[22,24,["H5699"]]]},{"k":10768,"v":[[0,2,["H1732"]],[2,4,["H3605"]],[4,5,["H3478"]],[5,6,["H7832"]],[6,7,["H6440"]],[7,8,["H430"]],[8,10,["H3605"]],[10,12,["H5797"]],[12,15,["H7892"]],[15,18,["H3658"]],[18,21,["H5035"]],[21,24,["H8596"]],[24,27,["H4700"]],[27,30,["H2689"]]]},{"k":10769,"v":[[0,4,["H935"]],[4,5,["H5704"]],[5,7,["H1637"]],[7,9,["H3592"]],[9,10,["H5798"]],[10,12,["H7971","(H853)"]],[12,14,["H3027"]],[14,16,["H270","(H853)"]],[16,18,["H727"]],[18,19,["H3588"]],[19,21,["H1241"]],[21,22,["H8058"]]]},{"k":10770,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,10,["H5798"]],[10,13,["H5221","H5921"]],[13,15,["H5921","H834"]],[15,17,["H7971"]],[17,19,["H3027"]],[19,20,["H5921"]],[20,22,["H727"]],[22,24,["H8033"]],[24,26,["H4191"]],[26,27,["H6440"]],[27,28,["H430"]]]},{"k":10771,"v":[[0,2,["H1732"]],[2,4,["H2734"]],[4,5,["H3588"]],[5,7,["H3068"]],[7,9,["H6555"]],[9,11,["H6556"]],[11,13,["H5798"]],[13,15,["H1931"]],[15,16,["H4725"]],[16,18,["H7121"]],[18,19,["H6560"]],[19,20,["H5704"]],[20,21,["H2088"]],[21,22,["H3117"]]]},{"k":10772,"v":[[0,2,["H1732"]],[2,4,["H3372","(H853)"]],[4,6,["H430"]],[6,7,["H1931"]],[7,8,["H3117"]],[8,9,["H559"]],[9,10,["H1963"]],[10,13,["H935","(H853)"]],[13,15,["H727"]],[15,17,["H430"]],[17,19,["H413"]],[19,20,[]]]},{"k":10773,"v":[[0,2,["H1732"]],[2,3,["H5493"]],[3,4,["H3808","(H853)"]],[4,6,["H727"]],[6,8,["H413"]],[8,10,["H413"]],[10,12,["H5892"]],[12,14,["H1732"]],[14,18,["H5186"]],[18,19,["H413"]],[19,21,["H1004"]],[21,23,["H5654"]],[23,25,["H1663"]]]},{"k":10774,"v":[[0,3,["H727"]],[3,5,["H430"]],[5,6,["H3427"]],[6,7,["H5973"]],[7,9,["H1004"]],[9,11,["H5654"]],[11,14,["H1004"]],[14,15,["H7969"]],[15,16,["H2320"]],[16,19,["H3068"]],[19,20,["H1288","(H853)"]],[20,22,["H1004"]],[22,24,["H5654"]],[24,26,["H3605"]],[26,27,["H834"]],[27,29,[]]]},{"k":10775,"v":[[0,2,["H2438"]],[2,3,["H4428"]],[3,5,["H6865"]],[5,6,["H7971"]],[6,7,["H4397"]],[7,8,["H413"]],[8,9,["H1732"]],[9,11,["H6086"]],[11,13,["H730"]],[13,15,["H2796","H7023"]],[15,17,["H2796","H6086"]],[17,19,["H1129"]],[19,22,["H1004"]]]},{"k":10776,"v":[[0,2,["H1732"]],[2,3,["H3045"]],[3,4,["H3588"]],[4,6,["H3068"]],[6,8,["H3559"]],[8,10,["H4428"]],[10,11,["H5921"]],[11,12,["H3478"]],[12,13,["H3588"]],[13,15,["H4438"]],[15,18,["H5375"]],[18,20,["H4605"]],[20,22,["H5668"]],[22,24,["H5971"]],[24,25,["H3478"]]]},{"k":10777,"v":[[0,2,["H1732"]],[2,3,["H3947"]],[3,4,["H5750"]],[4,5,["H802"]],[5,7,["H3389"]],[7,9,["H1732"]],[9,10,["H3205"]],[10,11,["H5750"]],[11,12,["H1121"]],[12,14,["H1323"]]]},{"k":10778,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H3205"]],[8,9,["H834"]],[9,11,["H1961"]],[11,13,["H3389"]],[13,14,["H8051"]],[14,16,["H7727"]],[16,17,["H5416"]],[17,19,["H8010"]]]},{"k":10779,"v":[[0,2,["H2984"]],[2,4,["H474"]],[4,6,["H467"]]]},{"k":10780,"v":[[0,2,["H5052"]],[2,4,["H5298"]],[4,6,["H3309"]]]},{"k":10781,"v":[[0,2,["H476"]],[2,4,["H1182"]],[4,6,["H467"]]]},{"k":10782,"v":[[0,4,["H6430"]],[4,5,["H8085"]],[5,6,["H3588"]],[6,7,["H1732"]],[7,9,["H4886"]],[9,10,["H4428"]],[10,11,["H5921"]],[11,12,["H3605"]],[12,13,["H3478"]],[13,14,["H3605"]],[14,16,["H6430"]],[16,18,["H5927"]],[18,20,["H1245","(H853)"]],[20,21,["H1732"]],[21,23,["H1732"]],[23,24,["H8085"]],[24,29,["H3318"]],[29,30,["H6440"]],[30,31,[]]]},{"k":10783,"v":[[0,3,["H6430"]],[3,4,["H935"]],[4,6,["H6584"]],[6,10,["H6010"]],[10,12,["H7497"]]]},{"k":10784,"v":[[0,2,["H1732"]],[2,3,["H7592"]],[3,5,["H430"]],[5,6,["H559"]],[6,10,["H5927"]],[10,11,["H5921"]],[11,13,["H6430"]],[13,17,["H5414"]],[17,21,["H3027"]],[21,24,["H3068"]],[24,25,["H559"]],[25,29,["H5927"]],[29,33,["H5414"]],[33,37,["H3027"]]]},{"k":10785,"v":[[0,4,["H5927"]],[4,6,["H1188"]],[6,8,["H1732"]],[8,9,["H5221"]],[9,11,["H8033"]],[11,13,["H1732"]],[13,14,["H559"]],[14,15,["H430"]],[15,18,["H6555","(H853)"]],[18,21,["H341"]],[21,24,["H3027"]],[24,28,["H6556"]],[28,30,["H4325"]],[30,31,["H5921","H3651"]],[31,33,["H7121"]],[33,35,["H8034"]],[35,37,["H1931"]],[37,38,["H4725"]],[38,39,["H1188"]]]},{"k":10786,"v":[[0,5,["H5800","(H853)"]],[5,7,["H430"]],[7,8,["H8033"]],[8,9,["H1732"]],[9,12,["H559"]],[12,16,["H8313"]],[16,18,["H784"]]]},{"k":10787,"v":[[0,3,["H6430"]],[3,4,["H5750"]],[4,5,["H3254"]],[5,8,["H6584"]],[8,11,["H6010"]]]},{"k":10788,"v":[[0,2,["H1732"]],[2,3,["H7592"]],[3,4,["H5750"]],[4,6,["H430"]],[6,8,["H430"]],[8,9,["H559"]],[9,14,["H3808","H5927"]],[14,15,["H310"]],[15,18,["H5437"]],[18,19,["H4480","H5921"]],[19,22,["H935"]],[22,26,["H4480","H4136"]],[26,29,["H1057"]]]},{"k":10789,"v":[[0,4,["H1961"]],[4,8,["H8085","(H853)"]],[8,10,["H6963"]],[10,12,["H6807"]],[12,15,["H7218"]],[15,19,["H1057"]],[19,21,["H227"]],[21,25,["H3318"]],[25,27,["H4421"]],[27,28,["H3588"]],[28,29,["H430"]],[29,32,["H3318"]],[32,33,["H6440"]],[33,36,["H5221","(H853)"]],[36,38,["H4264"]],[38,41,["H6430"]]]},{"k":10790,"v":[[0,1,["H1732"]],[1,3,["H6213"]],[3,4,["H834"]],[4,5,["H430"]],[5,6,["H6680"]],[6,10,["H5221","(H853)"]],[10,12,["H4264"]],[12,15,["H6430"]],[15,17,["H4480","H1391"]],[17,19,["H5704"]],[19,20,["H1507"]]]},{"k":10791,"v":[[0,3,["H8034"]],[3,5,["H1732"]],[5,7,["H3318"]],[7,9,["H3605"]],[9,10,["H776"]],[10,13,["H3068"]],[13,14,["H5414","(H853)"]],[14,16,["H6343"]],[16,19,["H5921"]],[19,20,["H3605"]],[20,21,["H1471"]]]},{"k":10792,"v":[[0,3,["H6213"]],[3,5,["H1004"]],[5,8,["H5892"]],[8,10,["H1732"]],[10,12,["H3559"]],[12,14,["H4725"]],[14,17,["H727"]],[17,19,["H430"]],[19,21,["H5186"]],[21,25,["H168"]]]},{"k":10793,"v":[[0,1,["H227"]],[1,2,["H1732"]],[2,3,["H559"]],[3,4,["H3808"]],[4,7,["H5375","(H853)"]],[7,9,["H727"]],[9,11,["H430"]],[11,12,["H3588","H518"]],[12,14,["H3881"]],[14,15,["H3588"]],[15,19,["H3068"]],[19,20,["H977"]],[20,22,["H5375","(H853)"]],[22,24,["H727"]],[24,26,["H430"]],[26,29,["H8334"]],[29,33,["H5704","H5769"]]]},{"k":10794,"v":[[0,2,["H1732"]],[2,3,["H6950","(H853)"]],[3,4,["H3605"]],[4,5,["H3478"]],[5,7,["H413"]],[7,8,["H3389"]],[8,11,["H5927","(H853)"]],[11,13,["H727"]],[13,16,["H3068"]],[16,17,["H413"]],[17,19,["H4725"]],[19,20,["H834"]],[20,23,["H3559"]],[23,25,[]]]},{"k":10795,"v":[[0,2,["H1732"]],[2,3,["H622","(H853)"]],[3,5,["H1121"]],[5,7,["H175"]],[7,10,["H3881"]]]},{"k":10796,"v":[[0,3,["H1121"]],[3,5,["H6955"]],[5,6,["H222"]],[6,8,["H8269"]],[8,11,["H251"]],[11,13,["H3967"]],[13,15,["H6242"]]]},{"k":10797,"v":[[0,3,["H1121"]],[3,5,["H4847"]],[5,6,["H6222"]],[6,8,["H8269"]],[8,11,["H251"]],[11,13,["H3967"]],[13,15,["H6242"]]]},{"k":10798,"v":[[0,3,["H1121"]],[3,5,["H1648"]],[5,6,["H3100"]],[6,8,["H8269"]],[8,11,["H251"]],[11,13,["H3967"]],[13,15,["H7970"]]]},{"k":10799,"v":[[0,3,["H1121"]],[3,5,["H469"]],[5,6,["H8098"]],[6,8,["H8269"]],[8,11,["H251"]],[11,13,["H3967"]]]},{"k":10800,"v":[[0,3,["H1121"]],[3,5,["H2275"]],[5,6,["H447"]],[6,8,["H8269"]],[8,11,["H251"]],[11,12,["H8084"]]]},{"k":10801,"v":[[0,3,["H1121"]],[3,5,["H5816"]],[5,6,["H5992"]],[6,8,["H8269"]],[8,11,["H251"]],[11,13,["H3967"]],[13,15,["H8147","H6240"]]]},{"k":10802,"v":[[0,2,["H1732"]],[2,3,["H7121"]],[3,5,["H6659"]],[5,7,["H54"]],[7,9,["H3548"]],[9,13,["H3881"]],[13,15,["H222"]],[15,16,["H6222"]],[16,18,["H3100"]],[18,19,["H8098"]],[19,21,["H447"]],[21,23,["H5992"]]]},{"k":10803,"v":[[0,2,["H559"]],[2,5,["H859"]],[5,8,["H7218"]],[8,11,["H1"]],[11,14,["H3881"]],[14,16,["H6942"]],[16,18,["H859"]],[18,21,["H251"]],[21,26,["H5927","(H853)"]],[26,28,["H727"]],[28,31,["H3068"]],[31,32,["H430"]],[32,34,["H3478"]],[34,35,["H413"]],[35,41,["H3559"]],[41,43,[]]]},{"k":10804,"v":[[0,2,["H3588"]],[2,3,["H859"]],[3,6,["H3808"]],[6,9,["H4480","H7223"]],[9,11,["H3068"]],[11,13,["H430"]],[13,16,["H6555"]],[16,19,["H3588"]],[19,22,["H1875"]],[22,24,["H3808"]],[24,28,["H4941"]]]},{"k":10805,"v":[[0,3,["H3548"]],[3,6,["H3881"]],[6,8,["H6942"]],[8,11,["H5927","(H853)"]],[11,13,["H727"]],[13,16,["H3068"]],[16,17,["H430"]],[17,19,["H3478"]]]},{"k":10806,"v":[[0,3,["H1121"]],[3,6,["H3881"]],[6,7,["H5375","(H853)"]],[7,9,["H727"]],[9,11,["H430"]],[11,14,["H3802"]],[14,17,["H4133"]],[17,18,["H5921"]],[18,19,["H834"]],[19,20,["H4872"]],[20,21,["H6680"]],[21,25,["H1697"]],[25,28,["H3068"]]]},{"k":10807,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,6,["H8269"]],[6,9,["H3881"]],[9,11,["H5975","(H853)"]],[11,13,["H251"]],[13,17,["H7891"]],[17,19,["H3627"]],[19,21,["H7892"]],[21,22,["H5035"]],[22,24,["H3658"]],[24,26,["H4700"]],[26,27,["H8085"]],[27,30,["H7311"]],[30,32,["H6963"]],[32,34,["H8057"]]]},{"k":10808,"v":[[0,3,["H3881"]],[3,4,["H5975","(H853)"]],[4,5,["H1968"]],[5,7,["H1121"]],[7,9,["H3100"]],[9,11,["H4480"]],[11,13,["H251"]],[13,14,["H623"]],[14,16,["H1121"]],[16,18,["H1296"]],[18,20,["H4480"]],[20,22,["H1121"]],[22,24,["H4847"]],[24,26,["H251"]],[26,27,["H387"]],[27,29,["H1121"]],[29,31,["H6984"]]]},{"k":10809,"v":[[0,2,["H5973"]],[2,5,["H251"]],[5,8,["H4932"]],[8,10,["H2148"]],[10,11,["H1122"]],[11,13,["H3268"]],[13,15,["H8070"]],[15,17,["H3171"]],[17,19,["H6042"]],[19,20,["H446"]],[20,22,["H1141"]],[22,24,["H4641"]],[24,26,["H4993"]],[26,28,["H466"]],[28,30,["H4737"]],[30,32,["H5654"]],[32,34,["H3273"]],[34,36,["H7778"]]]},{"k":10810,"v":[[0,3,["H7891"]],[3,4,["H1968"]],[4,5,["H623"]],[5,7,["H387"]],[7,11,["H8085"]],[11,13,["H4700"]],[13,15,["H5178"]]]},{"k":10811,"v":[[0,2,["H2148"]],[2,4,["H5815"]],[4,6,["H8070"]],[6,8,["H3171"]],[8,10,["H6042"]],[10,12,["H446"]],[12,14,["H4641"]],[14,16,["H1141"]],[16,18,["H5035"]],[18,19,["H5921"]],[19,20,["H5961"]]]},{"k":10812,"v":[[0,2,["H4993"]],[2,4,["H466"]],[4,6,["H4737"]],[6,8,["H5654"]],[8,10,["H3273"]],[10,12,["H5812"]],[12,14,["H3658"]],[14,15,["H5921"]],[15,17,["H8067"]],[17,19,["H5329"]]]},{"k":10813,"v":[[0,2,["H3663"]],[2,3,["H8269"]],[3,6,["H3881"]],[6,9,["H4853"]],[9,11,["H3256"]],[11,14,["H4853"]],[14,15,["H3588"]],[15,16,["H1931"]],[16,18,["H995"]]]},{"k":10814,"v":[[0,2,["H1296"]],[2,4,["H511"]],[4,6,["H7778"]],[6,9,["H727"]]]},{"k":10815,"v":[[0,2,["H7645"]],[2,4,["H3146"]],[4,6,["H5417"]],[6,8,["H6022"]],[8,10,["H2148"]],[10,12,["H1141"]],[12,14,["H461"]],[14,16,["H3548"]],[16,18,["H2690"]],[18,21,["H2689"]],[21,22,["H6440"]],[22,24,["H727"]],[24,26,["H430"]],[26,28,["H5654"]],[28,30,["H3174"]],[30,32,["H7778"]],[32,35,["H727"]]]},{"k":10816,"v":[[0,1,["H1961"]],[1,2,["H1732"]],[2,5,["H2205"]],[5,7,["H3478"]],[7,10,["H8269"]],[10,12,["H505"]],[12,13,["H1980"]],[13,16,["H5927","(H853)"]],[16,18,["H727"]],[18,21,["H1285"]],[21,24,["H3068"]],[24,26,["H4480"]],[26,28,["H1004"]],[28,30,["H5654"]],[30,32,["H8057"]]]},{"k":10817,"v":[[0,5,["H1961"]],[5,7,["H430"]],[7,8,["H5826","(H853)"]],[8,10,["H3881"]],[10,12,["H5375"]],[12,14,["H727"]],[14,17,["H1285"]],[17,20,["H3068"]],[20,23,["H2076"]],[23,24,["H7651"]],[24,25,["H6499"]],[25,27,["H7651"]],[27,28,["H352"]]]},{"k":10818,"v":[[0,2,["H1732"]],[2,4,["H3736"]],[4,7,["H4598"]],[7,10,["H948"]],[10,12,["H3605"]],[12,14,["H3881"]],[14,16,["H5375","(H853)"]],[16,18,["H727"]],[18,21,["H7891"]],[21,23,["H3663"]],[23,25,["H8269"]],[25,28,["H4853"]],[28,31,["H7891"]],[31,32,["H1732"]],[32,38,["H646"]],[38,40,["H906"]]]},{"k":10819,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,5,["H5927","(H853)"]],[5,7,["H727"]],[7,10,["H1285"]],[10,13,["H3068"]],[13,15,["H8643"]],[15,18,["H6963"]],[18,21,["H7782"]],[21,24,["H2689"]],[24,27,["H4700"]],[27,30,["H8085"]],[30,32,["H5035"]],[32,34,["H3658"]]]},{"k":10820,"v":[[0,5,["H1961"]],[5,8,["H727"]],[8,11,["H1285"]],[11,14,["H3068"]],[14,15,["H935"]],[15,16,["H5704"]],[16,18,["H5892"]],[18,20,["H1732"]],[20,22,["H4324"]],[22,24,["H1323"]],[24,26,["H7586"]],[26,28,["H8259"]],[28,29,["H1157"]],[29,31,["H2474"]],[31,32,["H7200","(H853)"]],[32,33,["H4428"]],[33,34,["H1732"]],[34,35,["H7540"]],[35,37,["H7832"]],[37,40,["H959"]],[40,44,["H3820"]]]},{"k":10821,"v":[[0,3,["H935","(H853)"]],[3,5,["H727"]],[5,7,["H430"]],[7,9,["H3322"]],[9,13,["H8432"]],[13,16,["H168"]],[16,17,["H834"]],[17,18,["H1732"]],[18,20,["H5186"]],[20,25,["H7126"]],[25,27,["H5930"]],[27,30,["H8002"]],[30,31,["H6440"]],[31,32,["H430"]]]},{"k":10822,"v":[[0,3,["H1732"]],[3,7,["H3615"]],[7,9,["H4480","H5927"]],[9,12,["H5930"]],[12,16,["H8002"]],[16,18,["H1288","(H853)"]],[18,20,["H5971"]],[20,23,["H8034"]],[23,26,["H3068"]]]},{"k":10823,"v":[[0,3,["H2505"]],[3,6,["H3605","H376"]],[6,8,["H3478"]],[8,10,["H4480","H376"]],[10,12,["H802"]],[12,15,["H376"]],[15,17,["H3603"]],[17,19,["H3899"]],[19,25,["H829"]],[25,28,["H809"]],[28,30,[]]]},{"k":10824,"v":[[0,3,["H5414"]],[3,5,["H4480"]],[5,7,["H3881"]],[7,9,["H8334"]],[9,10,["H6440"]],[10,12,["H727"]],[12,15,["H3068"]],[15,18,["H2142"]],[18,21,["H3034"]],[21,23,["H1984"]],[23,25,["H3068"]],[25,26,["H430"]],[26,28,["H3478"]]]},{"k":10825,"v":[[0,1,["H623"]],[1,3,["H7218"]],[3,5,["H4932"]],[5,8,["H2148"]],[8,9,["H3273"]],[9,11,["H8070"]],[11,13,["H3171"]],[13,15,["H4993"]],[15,17,["H446"]],[17,19,["H1141"]],[19,21,["H5654"]],[21,23,["H3273"]],[23,25,["H3627","H5035"]],[25,28,["H3658"]],[28,30,["H623"]],[30,33,["H8085"]],[33,35,["H4700"]]]},{"k":10826,"v":[[0,1,["H1141"]],[1,4,["H3166"]],[4,6,["H3548"]],[6,8,["H2689"]],[8,9,["H8548"]],[9,10,["H6440"]],[10,12,["H727"]],[12,15,["H1285"]],[15,17,["H430"]]]},{"k":10827,"v":[[0,1,["H227"]],[1,3,["H1931"]],[3,4,["H3117"]],[4,5,["H1732"]],[5,6,["H5414"]],[6,7,["H7218"]],[7,11,["H3034"]],[11,13,["H3068"]],[13,16,["H3027"]],[16,18,["H623"]],[18,21,["H251"]]]},{"k":10828,"v":[[0,2,["H3034"]],[2,5,["H3068"]],[5,6,["H7121"]],[6,9,["H8034"]],[9,11,["H3045"]],[11,13,["H5949"]],[13,16,["H5971"]]]},{"k":10829,"v":[[0,1,["H7891"]],[1,5,["H2167"]],[5,8,["H7878"]],[8,11,["H3605"]],[11,14,["H6381"]]]},{"k":10830,"v":[[0,1,["H1984"]],[1,5,["H6944"]],[5,6,["H8034"]],[6,9,["H3820"]],[9,12,["H8055"]],[12,14,["H1245"]],[14,16,["H3068"]]]},{"k":10831,"v":[[0,1,["H1875"]],[1,3,["H3068"]],[3,6,["H5797"]],[6,7,["H1245"]],[7,9,["H6440"]],[9,10,["H8548"]]]},{"k":10832,"v":[[0,1,["H2142"]],[1,4,["H6381"]],[4,5,["H834"]],[5,8,["H6213"]],[8,10,["H4159"]],[10,13,["H4941"]],[13,16,["H6310"]]]},{"k":10833,"v":[[0,3,["H2233"]],[3,5,["H3478"]],[5,7,["H5650"]],[7,9,["H1121"]],[9,11,["H3290"]],[11,14,["H972"]]]},{"k":10834,"v":[[0,1,["H1931"]],[1,4,["H3068"]],[4,6,["H430"]],[6,8,["H4941"]],[8,11,["H3605"]],[11,13,["H776"]]]},{"k":10835,"v":[[0,3,["H2142"]],[3,4,["H5769"]],[4,7,["H1285"]],[7,9,["H1697"]],[9,12,["H6680"]],[12,15,["H505"]],[15,16,["H1755"]]]},{"k":10836,"v":[[0,5,["H834"]],[5,7,["H3772"]],[7,8,["H854"]],[8,9,["H85"]],[9,13,["H7621"]],[13,15,["H3327"]]]},{"k":10837,"v":[[0,3,["H5975"]],[3,7,["H3290"]],[7,10,["H2706"]],[10,13,["H3478"]],[13,16,["H5769"]],[16,17,["H1285"]]]},{"k":10838,"v":[[0,1,["H559"]],[1,6,["H5414"]],[6,8,["H776"]],[8,10,["H3667"]],[10,12,["H2256"]],[12,15,["H5159"]]]},{"k":10839,"v":[[0,3,["H1961"]],[3,5,["H4962"]],[5,8,["H4592"]],[8,10,["H1481"]],[10,12,[]]]},{"k":10840,"v":[[0,4,["H1980"]],[4,6,["H4480","H1471"]],[6,7,["H413"]],[7,8,["H1471"]],[8,12,["H4480","H4467"]],[12,13,["H413"]],[13,14,["H312"]],[14,15,["H5971"]]]},{"k":10841,"v":[[0,2,["H5117"]],[2,3,["H3808"]],[3,4,["H376"]],[4,8,["H6231"]],[8,11,["H3198"]],[11,12,["H4428"]],[12,15,["H5921"]]]},{"k":10842,"v":[[0,2,["H5060"]],[2,3,["H408"]],[3,5,["H4899"]],[5,7,["H7489"]],[7,9,["H5030"]],[9,10,["H408"]],[10,11,[]]]},{"k":10843,"v":[[0,1,["H7891"]],[1,4,["H3068"]],[4,5,["H3605"]],[5,7,["H776"]],[7,9,["H1319"]],[9,11,["H4480","H3117"]],[11,12,["H413"]],[12,13,["H3117"]],[13,15,["H3444"]]]},{"k":10844,"v":[[0,1,["H5608","(H853)"]],[1,3,["H3519"]],[3,6,["H1471"]],[6,9,["H6381"]],[9,11,["H3605"]],[11,12,["H5971"]]]},{"k":10845,"v":[[0,1,["H3588"]],[1,2,["H1419"]],[2,5,["H3068"]],[5,7,["H3966"]],[7,10,["H1984"]],[10,11,["H1931"]],[11,16,["H3372"]],[16,17,["H5921"]],[17,18,["H3605"]],[18,19,["H430"]]]},{"k":10846,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H430"]],[4,7,["H5971"]],[7,9,["H457"]],[9,12,["H3068"]],[12,13,["H6213"]],[13,15,["H8064"]]]},{"k":10847,"v":[[0,1,["H1935"]],[1,3,["H1926"]],[3,7,["H6440"]],[7,8,["H5797"]],[8,10,["H2304"]],[10,14,["H4725"]]]},{"k":10848,"v":[[0,1,["H3051"]],[1,4,["H3068"]],[4,6,["H4940"]],[6,9,["H5971"]],[9,10,["H3051"]],[10,13,["H3068"]],[13,14,["H3519"]],[14,16,["H5797"]]]},{"k":10849,"v":[[0,1,["H3051"]],[1,4,["H3068"]],[4,6,["H3519"]],[6,10,["H8034"]],[10,11,["H5375"]],[11,13,["H4503"]],[13,15,["H935"]],[15,16,["H6440"]],[16,18,["H7812"]],[18,20,["H3068"]],[20,23,["H1927"]],[23,25,["H6944"]]]},{"k":10850,"v":[[0,1,["H2342"]],[1,2,["H4480","H6440"]],[2,4,["H3605"]],[4,6,["H776"]],[6,8,["H8398"]],[8,9,["H637"]],[9,12,["H3559"]],[12,16,["H1077"]],[16,17,["H4131"]]]},{"k":10851,"v":[[0,3,["H8064"]],[3,5,["H8055"]],[5,9,["H776"]],[9,10,["H1523"]],[10,14,["H559"]],[14,17,["H1471"]],[17,19,["H3068"]],[19,20,["H4427"]]]},{"k":10852,"v":[[0,3,["H3220"]],[3,4,["H7481"]],[4,7,["H4393"]],[7,11,["H7704"]],[11,12,["H5970"]],[12,14,["H3605"]],[14,15,["H834"]],[15,17,[]]]},{"k":10853,"v":[[0,1,["H227"]],[1,4,["H6086"]],[4,7,["H3293"]],[7,9,["H7442"]],[9,12,["H4480","H6440"]],[12,15,["H3068"]],[15,16,["H3588"]],[16,18,["H935"]],[18,20,["H8199","(H853)"]],[20,22,["H776"]]]},{"k":10854,"v":[[0,3,["H3034"]],[3,6,["H3068"]],[6,7,["H3588"]],[7,10,["H2896"]],[10,11,["H3588"]],[11,13,["H2617"]],[13,16,["H5769"]]]},{"k":10855,"v":[[0,2,["H559"]],[2,4,["H3467"]],[4,7,["H430"]],[7,10,["H3468"]],[10,14,["H6908"]],[14,16,["H5337"]],[16,18,["H4480"]],[18,20,["H1471"]],[20,25,["H3034"]],[25,28,["H6944"]],[28,29,["H8034"]],[29,31,["H7623"]],[31,34,["H8416"]]]},{"k":10856,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,9,["H4480","H5769"]],[9,11,["H5704","H5769"]],[11,13,["H3605"]],[13,15,["H5971"]],[15,16,["H559"]],[16,17,["H543"]],[17,19,["H1984"]],[19,21,["H3068"]]]},{"k":10857,"v":[[0,3,["H5800"]],[3,4,["H8033"]],[4,5,["H6440"]],[5,7,["H727"]],[7,10,["H1285"]],[10,13,["H3068"]],[13,14,["H623"]],[14,17,["H251"]],[17,19,["H8334"]],[19,20,["H6440"]],[20,22,["H727"]],[22,23,["H8548"]],[23,28,["H1697","H3117","H3117"]]]},{"k":10858,"v":[[0,2,["H5654"]],[2,5,["H251"]],[5,6,["H8346"]],[6,8,["H8083"]],[8,9,["H5654"]],[9,12,["H1121"]],[12,14,["H3038"]],[14,16,["H2621"]],[16,19,["H7778"]]]},{"k":10859,"v":[[0,2,["H6659"]],[2,4,["H3548"]],[4,7,["H251"]],[7,9,["H3548"]],[9,10,["H6440"]],[10,12,["H4908"]],[12,15,["H3068"]],[15,19,["H1116"]],[19,20,["H834"]],[20,23,["H1391"]]]},{"k":10860,"v":[[0,2,["H5927"]],[2,4,["H5930"]],[4,7,["H3068"]],[7,8,["H5921"]],[8,10,["H4196"]],[10,14,["H5930"]],[14,15,["H8548"]],[15,16,["H1242"]],[16,18,["H6153"]],[18,24,["H3605"]],[24,27,["H3789"]],[27,30,["H8451"]],[30,33,["H3068"]],[33,34,["H834"]],[34,36,["H6680"]],[36,37,["H3478"]]]},{"k":10861,"v":[[0,2,["H5973"]],[2,4,["H1968"]],[4,6,["H3038"]],[6,9,["H7605"]],[9,12,["H1305"]],[12,13,["H834"]],[13,15,["H5344"]],[15,17,["H8034"]],[17,20,["H3034"]],[20,23,["H3068"]],[23,24,["H3588"]],[24,26,["H2617"]],[26,29,["H5769"]]]},{"k":10862,"v":[[0,2,["H5973"]],[2,4,["H1968"]],[4,6,["H3038"]],[6,8,["H2689"]],[8,10,["H4700"]],[10,17,["H8085"]],[17,20,["H7892"]],[20,21,["H3627"]],[21,23,["H430"]],[23,26,["H1121"]],[26,28,["H3038"]],[28,30,["H8179"]]]},{"k":10863,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H1980"]],[5,7,["H376"]],[7,10,["H1004"]],[10,12,["H1732"]],[12,13,["H5437"]],[13,15,["H1288","(H853)"]],[15,17,["H1004"]]]},{"k":10864,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H1732"]],[7,8,["H3427"]],[8,11,["H1004"]],[11,13,["H1732"]],[13,14,["H559"]],[14,15,["H413"]],[15,16,["H5416"]],[16,18,["H5030"]],[18,19,["H2009"]],[19,20,["H595"]],[20,21,["H3427"]],[21,24,["H1004"]],[24,26,["H730"]],[26,29,["H727"]],[29,32,["H1285"]],[32,35,["H3068"]],[35,37,["H8478"]],[37,38,["H3407"]]]},{"k":10865,"v":[[0,2,["H5416"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,6,["H6213"]],[6,7,["H3605"]],[7,8,["H834"]],[8,12,["H3824"]],[12,13,["H3588"]],[13,14,["H430"]],[14,16,["H5973"]],[16,17,[]]]},{"k":10866,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,8,["H3915"]],[8,11,["H1697"]],[11,13,["H430"]],[13,14,["H1961"]],[14,15,["H413"]],[15,16,["H5416"]],[16,17,["H559"]]]},{"k":10867,"v":[[0,1,["H1980"]],[1,3,["H559","H413"]],[3,4,["H1732"]],[4,6,["H5650"]],[6,7,["H3541"]],[7,8,["H559"]],[8,10,["H3068"]],[10,11,["H859"]],[11,13,["H3808"]],[13,14,["H1129"]],[14,17,["H1004"]],[17,20,["H3427"]]]},{"k":10868,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H3427"]],[5,8,["H1004"]],[8,9,["H4480"]],[9,11,["H3117"]],[11,12,["H834"]],[12,15,["H5927","(H853)"]],[15,16,["H3478"]],[16,17,["H5704"]],[17,18,["H2088"]],[18,19,["H3117"]],[19,22,["H1961"]],[22,24,["H4480","H168"]],[24,25,["H413"]],[25,26,["H168"]],[26,30,["H4480","H4908"]],[30,32,[]]]},{"k":10869,"v":[[0,1,["H3605","H834"]],[1,4,["H1980"]],[4,6,["H3605"]],[6,7,["H3478"]],[7,8,["H1696"]],[8,11,["H1697"]],[11,12,["H854"]],[12,13,["H259"]],[13,16,["H8199"]],[16,18,["H3478"]],[18,19,["H834"]],[19,21,["H6680"]],[21,23,["H7462","(H853)"]],[23,25,["H5971"]],[25,26,["H559"]],[26,27,["H4100"]],[27,30,["H3808"]],[30,31,["H1129"]],[31,34,["H1004"]],[34,36,["H730"]]]},{"k":10870,"v":[[0,1,["H6258"]],[1,3,["H3541"]],[3,6,["H559"]],[6,9,["H5650"]],[9,10,["H1732"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H3068"]],[14,16,["H6635"]],[16,17,["H589"]],[17,18,["H3947"]],[18,20,["H4480"]],[20,22,["H5116"]],[22,24,["H4480"]],[24,25,["H310"]],[25,27,["H6629"]],[27,31,["H1961"]],[31,32,["H5057"]],[32,33,["H5921"]],[33,35,["H5971"]],[35,36,["H3478"]]]},{"k":10871,"v":[[0,4,["H1961"]],[4,5,["H5973"]],[5,7,["H3605","H834"]],[7,10,["H1980"]],[10,14,["H3772","(H853)"]],[14,15,["H3605"]],[15,17,["H341"]],[17,19,["H4480","H6440"]],[19,23,["H6213"]],[23,26,["H8034"]],[26,29,["H8034"]],[29,33,["H1419"]],[33,34,["H834"]],[34,38,["H776"]]]},{"k":10872,"v":[[0,4,["H7760"]],[4,6,["H4725"]],[6,9,["H5971"]],[9,10,["H3478"]],[10,13,["H5193"]],[13,18,["H7931"]],[18,21,["H8478"]],[21,25,["H7264"]],[25,26,["H3808"]],[26,27,["H5750"]],[27,28,["H3808"]],[28,31,["H1121"]],[31,33,["H5766"]],[33,34,["H1086"]],[34,37,["H3254"]],[37,38,["H834"]],[38,41,["H7223"]]]},{"k":10873,"v":[[0,4,["H4480","H3117"]],[4,5,["H834"]],[5,7,["H6680"]],[7,8,["H8199"]],[8,11,["H5921"]],[11,13,["H5971"]],[13,14,["H3478"]],[14,18,["H3665","(H853)"]],[18,19,["H3605"]],[19,21,["H341"]],[21,24,["H5046"]],[24,28,["H3068"]],[28,30,["H1129"]],[30,33,["H1004"]]]},{"k":10874,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,9,["H3117"]],[9,11,["H4390"]],[11,15,["H1980"]],[15,18,["H5973"]],[18,20,["H1"]],[20,25,["H6965","(H853)"]],[25,27,["H2233"]],[27,28,["H310"]],[28,30,["H834"]],[30,32,["H1961"]],[32,35,["H4480","H1121"]],[35,39,["H3559","(H853)"]],[39,41,["H4438"]]]},{"k":10875,"v":[[0,1,["H1931"]],[1,3,["H1129"]],[3,6,["H1004"]],[6,10,["H3559","(H853)"]],[10,12,["H3678"]],[12,14,["H5704","H5769"]]]},{"k":10876,"v":[[0,1,["H589"]],[1,3,["H1961"]],[3,5,["H1"]],[5,7,["H1931"]],[7,9,["H1961"]],[9,11,["H1121"]],[11,15,["H3808"]],[15,19,["H5493","H2617"]],[19,20,["H4480","H5973"]],[20,22,["H834"]],[22,24,["H5493"]],[24,28,["H4480","H834"]],[28,29,["H1961"]],[29,30,["H6440"]],[30,31,[]]]},{"k":10877,"v":[[0,4,["H5975"]],[4,8,["H1004"]],[8,12,["H4438"]],[12,14,["H5704","H5769"]],[14,17,["H3678"]],[17,19,["H1961"]],[19,20,["H3559"]],[20,22,["H5704","H5769"]]]},{"k":10878,"v":[[0,3,["H3605"]],[3,4,["H428"]],[4,5,["H1697"]],[5,9,["H3605"]],[9,10,["H2088"]],[10,11,["H2377"]],[11,12,["H3651"]],[12,14,["H5416"]],[14,15,["H1696"]],[15,16,["H413"]],[16,17,["H1732"]]]},{"k":10879,"v":[[0,2,["H1732"]],[2,4,["H4428"]],[4,5,["H935"]],[5,7,["H3427"]],[7,8,["H6440"]],[8,10,["H3068"]],[10,12,["H559"]],[12,13,["H4310"]],[13,15,["H589"]],[15,17,["H3068"]],[17,18,["H430"]],[18,20,["H4310"]],[20,23,["H1004"]],[23,24,["H3588"]],[24,27,["H935"]],[27,29,["H5704","H1988"]]]},{"k":10880,"v":[[0,3,["H2063"]],[3,7,["H6994"]],[7,10,["H5869"]],[10,12,["H430"]],[12,17,["H1696"]],[17,18,["H5921"]],[18,20,["H5650"]],[20,21,["H1004"]],[21,27,["H4480","H7350"]],[27,30,["H7200"]],[30,35,["H8448"]],[35,38,["H120"]],[38,41,["H4609"]],[41,43,["H3068"]],[43,44,["H430"]]]},{"k":10881,"v":[[0,1,["H4100"]],[1,3,["H1732"]],[3,5,["H3254","H5750"]],[5,6,["H413"]],[6,10,["H3519"]],[10,11,["(H853)"]],[11,13,["H5650"]],[13,15,["H859"]],[15,16,["H3045","(H853)"]],[16,18,["H5650"]]]},{"k":10882,"v":[[0,2,["H3068"]],[2,6,["H5668","H5650"]],[6,12,["H3820"]],[12,15,["H6213","(H853)"]],[15,16,["H3605"]],[16,17,["H2063"]],[17,18,["H1420"]],[18,21,["H3045","(H853)"]],[21,22,["H3605"]],[22,25,["H1420"]]]},{"k":10883,"v":[[0,2,["H3068"]],[2,5,["H369"]],[5,7,["H3644"]],[7,8,["H369"]],[8,12,["H430"]],[12,13,["H2108"]],[13,17,["H3605"]],[17,18,["H834"]],[18,21,["H8085"]],[21,24,["H241"]]]},{"k":10884,"v":[[0,2,["H4310"]],[2,3,["H259"]],[3,4,["H1471"]],[4,7,["H776"]],[7,11,["H5971"]],[11,12,["H3478"]],[12,13,["H834"]],[13,14,["H430"]],[14,15,["H1980"]],[15,17,["H6299"]],[17,22,["H5971"]],[22,24,["H7760"]],[24,27,["H8034"]],[27,29,["H1420"]],[29,31,["H3372"]],[31,34,["H1644"]],[34,35,["H1471"]],[35,37,["H4480","H6440"]],[37,39,["H5971"]],[39,40,["H834"]],[40,43,["H6299"]],[43,46,["H4480","H4714"]]]},{"k":10885,"v":[[0,1,["(H853)"]],[1,3,["H5971"]],[3,4,["H3478"]],[4,7,["H5414"]],[7,10,["H5971"]],[10,12,["H5704","H5769"]],[12,14,["H859"]],[14,15,["H3068"]],[15,16,["H1961"]],[16,18,["H430"]]]},{"k":10886,"v":[[0,2,["H6258"]],[2,3,["H3068"]],[3,6,["H1697"]],[6,7,["H834"]],[7,10,["H1696"]],[10,11,["H5921"]],[11,13,["H5650"]],[13,15,["H5921"]],[15,17,["H1004"]],[17,19,["H539"]],[19,21,["H5704","H5769"]],[21,23,["H6213"]],[23,24,["H834"]],[24,27,["H1696"]]]},{"k":10887,"v":[[0,5,["H539"]],[5,8,["H8034"]],[8,11,["H1431"]],[11,13,["H5704","H5769"]],[13,14,["H559"]],[14,16,["H3068"]],[16,18,["H6635"]],[18,21,["H430"]],[21,23,["H3478"]],[23,26,["H430"]],[26,28,["H3478"]],[28,32,["H1004"]],[32,34,["H1732"]],[34,36,["H5650"]],[36,38,["H3559"]],[38,39,["H6440"]],[39,40,[]]]},{"k":10888,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,5,["H430"]],[5,7,["H1540","(H853)","H241"]],[7,9,["H5650"]],[9,13,["H1129"]],[13,16,["H1004"]],[16,17,["H5921","H3651"]],[17,19,["H5650"]],[19,21,["H4672"]],[21,26,["H6419"]],[26,27,["H6440"]],[27,28,[]]]},{"k":10889,"v":[[0,2,["H6258"]],[2,3,["H3068"]],[3,4,["H859"]],[4,6,["H430"]],[6,9,["H1696"]],[9,10,["H2063"]],[10,11,["H2896"]],[11,12,["H5921"]],[12,14,["H5650"]]]},{"k":10890,"v":[[0,1,["H6258"]],[1,5,["H2974"]],[5,8,["H1288","(H853)"]],[8,10,["H1004"]],[10,13,["H5650"]],[13,17,["H1961"]],[17,18,["H6440"]],[18,21,["H5769"]],[21,22,["H3588"]],[22,23,["H859"]],[23,24,["H1288"]],[24,26,["H3068"]],[26,31,["H1288"]],[31,33,["H5769"]]]},{"k":10891,"v":[[0,2,["H310"]],[2,3,["H3651"]],[3,7,["H1961"]],[7,9,["H1732"]],[9,10,["H5221","(H853)"]],[10,12,["H6430"]],[12,14,["H3665"]],[14,17,["H3947","(H853)"]],[17,18,["H1661"]],[18,21,["H1323"]],[21,25,["H4480","H3027"]],[25,28,["H6430"]]]},{"k":10892,"v":[[0,3,["H5221","(H853)"]],[3,4,["H4124"]],[4,7,["H4124"]],[7,8,["H1961"]],[8,9,["H1732"]],[9,10,["H5650"]],[10,12,["H5375"]],[12,13,["H4503"]]]},{"k":10893,"v":[[0,2,["H1732"]],[2,3,["H5221","(H853)"]],[3,4,["H1928"]],[4,5,["H4428"]],[5,7,["H6678"]],[7,9,["H2574"]],[9,12,["H1980"]],[12,14,["H5324"]],[14,16,["H3027"]],[16,19,["H5104"]],[19,20,["H6578"]]]},{"k":10894,"v":[[0,2,["H1732"]],[2,3,["H3920"]],[3,4,["H4480"]],[4,7,["H505"]],[7,8,["H7393"]],[8,10,["H7651"]],[10,11,["H505"]],[11,12,["H6571"]],[12,14,["H6242"]],[14,15,["H505"]],[15,16,["H376","H7273"]],[16,17,["H1732"]],[17,19,["H6131","(H853)"]],[19,20,["H3605"]],[20,22,["H7393"]],[22,25,["H3498"]],[25,26,["H4480"]],[26,29,["H3967"]],[29,30,["H7393"]]]},{"k":10895,"v":[[0,4,["H758"]],[4,6,["H1834"]],[6,7,["H935"]],[7,9,["H5826"]],[9,10,["H1928"]],[10,11,["H4428"]],[11,13,["H6678"]],[13,14,["H1732"]],[14,15,["H5221"]],[15,18,["H758"]],[18,19,["H8147"]],[19,21,["H6242"]],[21,22,["H505"]],[22,23,["H376"]]]},{"k":10896,"v":[[0,2,["H1732"]],[2,3,["H7760"]],[3,6,["H758","H1834"]],[6,9,["H758"]],[9,10,["H1961"]],[10,11,["H1732"]],[11,12,["H5650"]],[12,14,["H5375"]],[14,15,["H4503"]],[15,18,["H3068"]],[18,19,["H3467"]],[19,20,["H1732"]],[20,21,["H3605","H834"]],[21,23,["H1980"]]]},{"k":10897,"v":[[0,2,["H1732"]],[2,3,["H3947","(H853)"]],[3,5,["H7982"]],[5,7,["H2091"]],[7,8,["H834"]],[8,9,["H1961"]],[9,10,["H5921"]],[10,12,["H5650"]],[12,14,["H1928"]],[14,16,["H935"]],[16,19,["H3389"]]]},{"k":10898,"v":[[0,3,["H4480","H2880"]],[3,6,["H4480","H3560"]],[6,7,["H5892"]],[7,9,["H1928"]],[9,10,["H3947"]],[10,11,["H1732"]],[11,12,["H3966"]],[12,13,["H7227"]],[13,14,["H5178"]],[14,16,["H8010"]],[16,17,["H6213","(H853)"]],[17,19,["H5178"]],[19,20,["H3220"]],[20,23,["H5982"]],[23,26,["H3627"]],[26,28,["H5178"]]]},{"k":10899,"v":[[0,3,["H8583"]],[3,4,["H4428"]],[4,6,["H2574"]],[6,7,["H8085"]],[7,8,["H3588"]],[8,9,["H1732"]],[9,11,["H5221","(H853)"]],[11,12,["H3605"]],[12,14,["H2428"]],[14,16,["H1928"]],[16,17,["H4428"]],[17,19,["H6678"]]]},{"k":10900,"v":[[0,2,["H7971","(H853)"]],[2,3,["H1913"]],[3,5,["H1121"]],[5,6,["H413"]],[6,7,["H4428"]],[7,8,["H1732"]],[8,10,["H7592"]],[10,13,["H7965"]],[13,16,["H1288"]],[16,18,["H5921","H834"]],[18,21,["H3898"]],[21,23,["H1928"]],[23,25,["H5221"]],[25,27,["H3588"]],[27,28,["H1928"]],[28,30,["H1961","H376","H4421"]],[30,32,["H8583"]],[32,37,["H3605"]],[37,39,["H3627"]],[39,41,["H2091"]],[41,43,["H3701"]],[43,45,["H5178"]]]},{"k":10901,"v":[[0,2,["H1571"]],[2,3,["H4428"]],[3,4,["H1732"]],[4,5,["H6942"]],[5,8,["H3068"]],[8,9,["H5973"]],[9,11,["H3701"]],[11,14,["H2091"]],[14,15,["H834"]],[15,17,["H5375"]],[17,19,["H4480","H3605"]],[19,21,["H1471"]],[21,23,["H4480","H123"]],[23,26,["H4480","H4124"]],[26,30,["H4480","H1121"]],[30,32,["H5983"]],[32,36,["H4480","H6430"]],[36,39,["H4480","H6002"]]]},{"k":10902,"v":[[0,2,["H52"]],[2,4,["H1121"]],[4,6,["H6870"]],[6,7,["H5221","(H853)"]],[7,10,["H123"]],[10,13,["H1516"]],[13,15,["H4417"]],[15,16,["H8083","H6240"]],[16,17,["H505"]]]},{"k":10903,"v":[[0,3,["H7760"]],[3,4,["H5333"]],[4,6,["H123"]],[6,8,["H3605"]],[8,10,["H123"]],[10,11,["H1961"]],[11,12,["H1732"]],[12,13,["H5650"]],[13,16,["H3068"]],[16,17,["H3467","(H853)"]],[17,18,["H1732"]],[18,19,["H3605","H834"]],[19,21,["H1980"]]]},{"k":10904,"v":[[0,2,["H1732"]],[2,3,["H4427"]],[3,4,["H5921"]],[4,5,["H3605"]],[5,6,["H3478"]],[6,8,["H1961","H6213"]],[8,9,["H4941"]],[9,11,["H6666"]],[11,13,["H3605"]],[13,15,["H5971"]]]},{"k":10905,"v":[[0,2,["H3097"]],[2,4,["H1121"]],[4,6,["H6870"]],[6,8,["H5921"]],[8,10,["H6635"]],[10,12,["H3092"]],[12,14,["H1121"]],[14,16,["H286"]],[16,17,["H2142"]]]},{"k":10906,"v":[[0,2,["H6659"]],[2,4,["H1121"]],[4,6,["H285"]],[6,8,["H40"]],[8,10,["H1121"]],[10,12,["H54"]],[12,15,["H3548"]],[15,17,["H7798"]],[17,19,["H5608"]]]},{"k":10907,"v":[[0,2,["H1141"]],[2,4,["H1121"]],[4,6,["H3111"]],[6,8,["H5921"]],[8,10,["H3774"]],[10,13,["H6432"]],[13,16,["H1121"]],[16,18,["H1732"]],[18,20,["H7223"]],[20,21,["H3027"]],[21,23,["H4428"]]]},{"k":10908,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H3651"]],[7,9,["H5176"]],[9,11,["H4428"]],[11,14,["H1121"]],[14,16,["H5983"]],[16,17,["H4191"]],[17,20,["H1121"]],[20,21,["H4427"]],[21,24,["H8478"]]]},{"k":10909,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,6,["H6213"]],[6,7,["H2617"]],[7,8,["H5973"]],[8,9,["H2586"]],[9,11,["H1121"]],[11,13,["H5176"]],[13,14,["H3588"]],[14,16,["H1"]],[16,17,["H6213"]],[17,18,["H2617"]],[18,19,["H5973"]],[19,22,["H1732"]],[22,23,["H7971"]],[23,24,["H4397"]],[24,26,["H5162"]],[26,28,["H5921"]],[28,30,["H1"]],[30,33,["H5650"]],[33,35,["H1732"]],[35,36,["H935"]],[36,37,["H413"]],[37,39,["H776"]],[39,42,["H1121"]],[42,44,["H5983"]],[44,45,["H413"]],[45,46,["H2586"]],[46,48,["H5162"]],[48,49,[]]]},{"k":10910,"v":[[0,3,["H8269"]],[3,6,["H1121"]],[6,8,["H5983"]],[8,9,["H559"]],[9,11,["H2586"]],[11,12,["H5869"]],[12,15,["H1732"]],[15,17,["H3513","(H853)"]],[17,19,["H1"]],[19,20,["H3588"]],[20,23,["H7971"]],[23,24,["H5162"]],[24,28,["H3808"]],[28,30,["H5650"]],[30,31,["H935"]],[31,32,["H413"]],[32,34,["H5668"]],[34,36,["H2713"]],[36,39,["H2015"]],[39,43,["H7270"]],[43,45,["H776"]]]},{"k":10911,"v":[[0,2,["H2586"]],[2,3,["H3947","(H853)"]],[3,4,["H1732"]],[4,5,["H5650"]],[5,7,["H1548"]],[7,11,["H3772","(H853)"]],[11,13,["H4063"]],[13,16,["H2677"]],[16,18,["H5704"]],[18,20,["H4667"]],[20,24,["H7971"]]]},{"k":10912,"v":[[0,3,["H1980"]],[3,6,["H5046"]],[6,7,["H1732"]],[7,8,["H5921"]],[8,10,["H376"]],[10,15,["H7971"]],[15,17,["H7125"]],[17,19,["H3588"]],[19,21,["H376"]],[21,22,["H1961"]],[22,23,["H3966"]],[23,24,["H3637"]],[24,27,["H4428"]],[27,28,["H559"]],[28,29,["H3427"]],[29,31,["H3405"]],[31,32,["H5704","H834"]],[32,34,["H2206"]],[34,36,["H6779"]],[36,39,["H7725"]]]},{"k":10913,"v":[[0,4,["H1121"]],[4,6,["H5983"]],[6,7,["H7200"]],[7,8,["H3588"]],[8,13,["H887"]],[13,14,["H5973"]],[14,15,["H1732"]],[15,16,["H2586"]],[16,19,["H1121"]],[19,21,["H5983"]],[21,22,["H7971"]],[22,24,["H505"]],[24,25,["H3603"]],[25,27,["H3701"]],[27,29,["H7936"]],[29,31,["H7393"]],[31,33,["H6571"]],[33,35,["H4480"]],[35,36,["H763"]],[36,39,["H4480"]],[39,40,["H758","H4601"]],[40,44,["H4480","H6678"]]]},{"k":10914,"v":[[0,3,["H7936"]],[3,4,["H7970"]],[4,6,["H8147"]],[6,7,["H505"]],[7,8,["H7393"]],[8,11,["H4428"]],[11,13,["H4601"]],[13,16,["H5971"]],[16,18,["H935"]],[18,20,["H2583"]],[20,21,["H6440"]],[21,22,["H4311"]],[22,25,["H1121"]],[25,27,["H5983"]],[27,30,["H622"]],[30,33,["H4480","H5892"]],[33,35,["H935"]],[35,37,["H4421"]]]},{"k":10915,"v":[[0,3,["H1732"]],[3,4,["H8085"]],[4,8,["H7971","(H853)"]],[8,9,["H3097"]],[9,11,["H3605"]],[11,13,["H6635"]],[13,17,["H1368"]]]},{"k":10916,"v":[[0,3,["H1121"]],[3,5,["H5983"]],[5,7,["H3318"]],[7,13,["H6186","H4421"]],[13,16,["H6607"]],[16,19,["H5892"]],[19,22,["H4428"]],[22,23,["H834"]],[23,25,["H935"]],[25,28,["H905"]],[28,31,["H7704"]]]},{"k":10917,"v":[[0,3,["H3097"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,7,["H6440","H4421"]],[7,9,["H1961"]],[9,10,["H413"]],[10,12,["H6440"]],[12,14,["H268"]],[14,16,["H977"]],[16,19,["H4480","H3605"]],[19,21,["H977"]],[21,23,["H3478"]],[23,28,["H6186"]],[28,29,["H7125"]],[29,31,["H758"]]]},{"k":10918,"v":[[0,3,["H3499"]],[3,6,["H5971"]],[6,8,["H5414"]],[8,11,["H3027"]],[11,13,["H52"]],[13,15,["H251"]],[15,21,["H6186"]],[21,22,["H7125"]],[22,24,["H1121"]],[24,26,["H5983"]]]},{"k":10919,"v":[[0,3,["H559"]],[3,4,["H518"]],[4,6,["H758"]],[6,9,["H2388"]],[9,10,["H4480"]],[10,15,["H1961","H8668"]],[15,18,["H518"]],[18,20,["H1121"]],[20,22,["H5983"]],[22,25,["H2388"]],[25,26,["H4480"]],[26,31,["H3467"]],[31,32,[]]]},{"k":10920,"v":[[0,4,["H2388"]],[4,10,["H2388"]],[10,11,["H1157"]],[11,13,["H5971"]],[13,15,["H1157"]],[15,17,["H5892"]],[17,20,["H430"]],[20,24,["H3068"]],[24,25,["H6213"]],[25,29,["H2896"]],[29,32,["H5869"]]]},{"k":10921,"v":[[0,2,["H3097"]],[2,5,["H5971"]],[5,6,["H834"]],[6,8,["H5973"]],[8,11,["H5066"]],[11,12,["H6440"]],[12,14,["H758"]],[14,17,["H4421"]],[17,20,["H5127"]],[20,21,["H4480","H6440"]],[21,22,[]]]},{"k":10922,"v":[[0,4,["H1121"]],[4,6,["H5983"]],[6,7,["H7200"]],[7,8,["H3588"]],[8,10,["H758"]],[10,12,["H5127"]],[12,13,["H1992"]],[13,14,["H1571"]],[14,15,["H5127"]],[15,16,["H4480","H6440"]],[16,17,["H52"]],[17,19,["H251"]],[19,21,["H935"]],[21,24,["H5892"]],[24,26,["H3097"]],[26,27,["H935"]],[27,29,["H3389"]]]},{"k":10923,"v":[[0,4,["H758"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,12,["H5062"]],[12,13,["H6440"]],[13,14,["H3478"]],[14,16,["H7971"]],[16,17,["H4397"]],[17,20,["H3318","(H853)"]],[20,22,["H758"]],[22,23,["H834"]],[23,25,["H4480","H5676"]],[25,27,["H5104"]],[27,29,["H7780"]],[29,31,["H8269"]],[31,34,["H6635"]],[34,36,["H1928"]],[36,38,["H6440"]],[38,39,[]]]},{"k":10924,"v":[[0,4,["H5046"]],[4,5,["H1732"]],[5,8,["H622","(H853)"]],[8,9,["H3605"]],[9,10,["H3478"]],[10,13,["H5674"]],[13,14,["H3383"]],[14,16,["H935"]],[16,17,["H413"]],[17,24,["H6186","H4421"]],[24,25,["H413"]],[25,29,["H1732"]],[29,35,["H6186"]],[35,36,["H7125"]],[36,38,["H758"]],[38,40,["H3898"]],[40,41,["H5973"]],[41,42,[]]]},{"k":10925,"v":[[0,3,["H758"]],[3,4,["H5127"]],[4,5,["H4480","H6440"]],[5,6,["H3478"]],[6,8,["H1732"]],[8,9,["H2026"]],[9,12,["H4480","H758"]],[12,13,["H7651"]],[13,14,["H505"]],[14,19,["H7393"]],[19,21,["H705"]],[21,22,["H505"]],[22,23,["H376","H7273"]],[23,25,["H4191"]],[25,26,["H7780"]],[26,28,["H8269"]],[28,31,["H6635"]]]},{"k":10926,"v":[[0,4,["H5650"]],[4,6,["H1928"]],[6,7,["H7200"]],[7,8,["H3588"]],[8,14,["H5062"]],[14,15,["H6440"]],[15,16,["H3478"]],[16,19,["H7999"]],[19,20,["H5973"]],[20,21,["H1732"]],[21,25,["H5647"]],[25,26,["H3808"]],[26,27,["H14"]],[27,29,["H758"]],[29,30,["H3467","(H853)"]],[30,32,["H1121"]],[32,34,["H5983"]],[34,36,["H5750"]]]},{"k":10927,"v":[[0,5,["H1961"]],[5,7,["H6256"]],[7,9,["H8141"]],[9,11,["H8666"]],[11,14,["H6256"]],[14,16,["H4428"]],[16,18,["H3318"]],[18,21,["H3097"]],[21,23,["H5090","(H853)"]],[23,25,["H2428"]],[25,28,["H6635"]],[28,30,["H7843","(H853)"]],[30,32,["H776"]],[32,35,["H1121"]],[35,37,["H5983"]],[37,39,["H935"]],[39,41,["H6696","(H853)"]],[41,42,["H7237"]],[42,44,["H1732"]],[44,45,["H3427"]],[45,47,["H3389"]],[47,49,["H3097"]],[49,50,["H5221","(H853)"]],[50,51,["H7237"]],[51,53,["H2040"]],[53,54,[]]]},{"k":10928,"v":[[0,2,["H1732"]],[2,3,["H3947","(H853)"]],[3,5,["H5850"]],[5,8,["H4428"]],[8,10,["H4480","H5921"]],[10,12,["H7218"]],[12,14,["H4672"]],[14,17,["H4948"]],[17,19,["H3603"]],[19,21,["H2091"]],[21,25,["H3368"]],[25,26,["H68"]],[26,32,["H1961"]],[32,33,["H5921"]],[33,34,["H1732"]],[34,35,["H7218"]],[35,43,["H3318","H3966","H7235","H7998"]],[43,46,["H5892"]]]},{"k":10929,"v":[[0,4,["H3318"]],[4,6,["H5971"]],[6,7,["H834"]],[7,12,["H7787"]],[12,15,["H4050"]],[15,18,["H2757"]],[18,20,["H1270"]],[20,23,["H4050"]],[23,25,["H3651"]],[25,26,["H6213"]],[26,27,["H1732"]],[27,29,["H3605"]],[29,31,["H5892"]],[31,34,["H1121"]],[34,36,["H5983"]],[36,38,["H1732"]],[38,40,["H3605"]],[40,42,["H5971"]],[42,43,["H7725"]],[43,45,["H3389"]]]},{"k":10930,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H3651"]],[7,10,["H5975"]],[10,11,["H4421"]],[11,13,["H1507"]],[13,14,["H5973"]],[14,16,["H6430"]],[16,19,["H227"]],[19,20,["H5444"]],[20,22,["H2843"]],[22,23,["H5221","(H853)"]],[23,24,["H5598"]],[24,29,["H4480","H3211"]],[29,32,["H7497"]],[32,36,["H3665"]]]},{"k":10931,"v":[[0,3,["H1961"]],[3,4,["H4421"]],[4,5,["H5750"]],[5,6,["H854"]],[6,8,["H6430"]],[8,10,["H445"]],[10,12,["H1121"]],[12,14,["H3265"]],[14,15,["H5221","(H853)"]],[15,16,["H3902"]],[16,18,["H251"]],[18,20,["H1555"]],[20,22,["H1663"]],[22,24,["H2595"]],[24,25,["H6086"]],[25,29,["H707"]],[29,30,["H4500"]]]},{"k":10932,"v":[[0,3,["H5750"]],[3,5,["H1961"]],[5,6,["H4421"]],[6,8,["H1661"]],[8,10,["H1961"]],[10,12,["H376"]],[12,15,["H4060"]],[15,19,["H676"]],[19,21,["H702"]],[21,23,["H6242"]],[23,24,["H8337"]],[24,29,["H8337"]],[29,34,["H1931"]],[34,35,["H1571"]],[35,38,["H3205"]],[38,41,["H7497"]]]},{"k":10933,"v":[[0,4,["H2778","(H853)"]],[4,5,["H3478"]],[5,6,["H3083"]],[6,8,["H1121"]],[8,10,["H8092"]],[10,11,["H1732"]],[11,12,["H251"]],[12,13,["H5221"]],[13,14,[]]]},{"k":10934,"v":[[0,1,["H411"]],[1,3,["H3205"]],[3,6,["H7497"]],[6,8,["H1661"]],[8,11,["H5307"]],[11,14,["H3027"]],[14,16,["H1732"]],[16,20,["H3027"]],[20,23,["H5650"]]]},{"k":10935,"v":[[0,2,["H7854"]],[2,4,["H5975"]],[4,5,["H5921"]],[5,6,["H3478"]],[6,8,["H5496","(H853)"]],[8,9,["H1732"]],[9,11,["H4487","(H853)"]],[11,12,["H3478"]]]},{"k":10936,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3097"]],[5,7,["H413"]],[7,9,["H8269"]],[9,12,["H5971"]],[12,13,["H1980"]],[13,14,["H5608","(H853)"]],[14,15,["H3478"]],[15,17,["H4480","H884"]],[17,19,["H5704"]],[19,20,["H1835"]],[20,22,["H935","(H853)"]],[22,24,["H4557"]],[24,27,["H413"]],[27,32,["H3045"]],[32,33,[]]]},{"k":10937,"v":[[0,2,["H3097"]],[2,3,["H559"]],[3,5,["H3068"]],[5,8,["H5971"]],[8,10,["H3967"]],[10,11,["H6471"]],[11,14,["H3254"]],[14,16,["H1992"]],[16,20,["H113"]],[20,22,["H4428"]],[22,25,["H3808"]],[25,26,["H3605"]],[26,28,["H113"]],[28,29,["H5650"]],[29,30,["H4100"]],[30,34,["H113"]],[34,35,["H1245"]],[35,37,["H2063"]],[37,38,["H4100"]],[38,41,["H1961"]],[41,45,["H819"]],[45,47,["H3478"]]]},{"k":10938,"v":[[0,3,["H4428"]],[3,4,["H1697"]],[4,5,["H2388"]],[5,6,["H5921"]],[6,7,["H3097"]],[7,9,["H3097"]],[9,10,["H3318"]],[10,12,["H1980"]],[12,14,["H3605"]],[14,15,["H3478"]],[15,17,["H935"]],[17,19,["H3389"]]]},{"k":10939,"v":[[0,2,["H3097"]],[2,3,["H5414","(H853)"]],[3,5,["H4557"]],[5,8,["H4662"]],[8,11,["H5971"]],[11,12,["H413"]],[12,13,["H1732"]],[13,15,["H3605"]],[15,18,["H3478"]],[18,19,["H1961"]],[19,21,["H505"]],[21,22,["H505"]],[22,25,["H3967"]],[25,26,["H505"]],[26,27,["H376"]],[27,29,["H8025"]],[29,30,["H2719"]],[30,32,["H3063"]],[32,34,["H702"]],[34,35,["H3967"]],[35,38,["H7657"]],[38,39,["H505"]],[39,40,["H376"]],[40,42,["H8025"]],[42,43,["H2719"]]]},{"k":10940,"v":[[0,2,["H3878"]],[2,4,["H1144"]],[4,5,["H6485"]],[5,7,["H3808"]],[7,8,["H8432"]],[8,10,["H3588"]],[10,12,["H4428"]],[12,13,["H1697"]],[13,15,["H8581"]],[15,16,["(H853)"]],[16,17,["H3097"]]]},{"k":10941,"v":[[0,2,["H430"]],[2,4,["H3415","H5869"]],[4,5,["H5921"]],[5,6,["H2088"]],[6,7,["H1697"]],[7,10,["H5221","(H853)"]],[10,11,["H3478"]]]},{"k":10942,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H430"]],[5,8,["H2398"]],[8,9,["H3966"]],[9,10,["H834"]],[10,13,["H6213","(H853)"]],[13,14,["H2088"]],[14,15,["H1697"]],[15,17,["H6258"]],[17,20,["H4994"]],[20,22,["H5674","(H853)"]],[22,24,["H5771"]],[24,27,["H5650"]],[27,28,["H3588"]],[28,33,["H5528","H3966"]]]},{"k":10943,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H1410"]],[6,7,["H1732"]],[7,8,["H2374"]],[8,9,["H559"]]]},{"k":10944,"v":[[0,1,["H1980"]],[1,3,["H1696","H413"]],[3,4,["H1732"]],[4,5,["H559"]],[5,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,10,["H589"]],[10,11,["H5186","H5921"]],[11,13,["H7969"]],[13,15,["H977"]],[15,17,["H259"]],[17,19,["H4480","H1992"]],[19,23,["H6213"]],[23,26,[]]]},{"k":10945,"v":[[0,2,["H1410"]],[2,3,["H935"]],[3,4,["H413"]],[4,5,["H1732"]],[5,7,["H559"]],[7,10,["H3541"]],[10,11,["H559"]],[11,13,["H3068"]],[13,14,["H6901"]],[14,15,[]]]},{"k":10946,"v":[[0,1,["H518"]],[1,2,["H7969"]],[2,3,["H8141"]],[3,4,["H7458"]],[4,5,["H518"]],[5,6,["H7969"]],[6,7,["H2320"]],[7,10,["H5595"]],[10,11,["H4480","H6440"]],[11,13,["H6862"]],[13,17,["H2719"]],[17,20,["H341"]],[20,21,["H5381"]],[21,24,["H518"]],[24,25,["H7969"]],[25,26,["H3117"]],[26,28,["H2719"]],[28,31,["H3068"]],[31,34,["H1698"]],[34,37,["H776"]],[37,40,["H4397"]],[40,43,["H3068"]],[43,44,["H7843"]],[44,46,["H3605"]],[46,48,["H1366"]],[48,50,["H3478"]],[50,51,["H6258"]],[51,53,["H7200"]],[53,55,["H4100"]],[55,56,["H1697"]],[56,60,["H7725","(H853)"]],[60,64,["H7971"]],[64,65,[]]]},{"k":10947,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1410"]],[5,11,["H6887","H3966"]],[11,14,["H5307"]],[14,15,["H4994"]],[15,18,["H3027"]],[18,21,["H3068"]],[21,22,["H3588"]],[22,23,["H3966"]],[23,24,["H7227"]],[24,27,["H7356"]],[27,31,["H408"]],[31,32,["H5307"]],[32,35,["H3027"]],[35,37,["H120"]]]},{"k":10948,"v":[[0,3,["H3068"]],[3,4,["H5414"]],[4,5,["H1698"]],[5,7,["H3478"]],[7,10,["H5307"]],[10,12,["H4480","H3478"]],[12,13,["H7657"]],[13,14,["H505"]],[14,15,["H376"]]]},{"k":10949,"v":[[0,2,["H430"]],[2,3,["H7971"]],[3,5,["H4397"]],[5,7,["H3389"]],[7,9,["H7843"]],[9,15,["H7843"]],[15,17,["H3068"]],[17,18,["H7200"]],[18,22,["H5162"]],[22,23,["H5921"]],[23,25,["H7451"]],[25,27,["H559"]],[27,30,["H4397"]],[30,32,["H7843"]],[32,35,["H7227"]],[35,36,["H7503"]],[36,37,["H6258"]],[37,39,["H3027"]],[39,42,["H4397"]],[42,45,["H3068"]],[45,46,["H5975"]],[46,47,["H5973"]],[47,49,["H1637"]],[49,51,["H771"]],[51,53,["H2983"]]]},{"k":10950,"v":[[0,2,["H1732"]],[2,4,["H5375","(H853)"]],[4,6,["H5869"]],[6,8,["H7200","(H853)"]],[8,10,["H4397"]],[10,13,["H3068"]],[13,14,["H5975"]],[14,15,["H996"]],[15,17,["H776"]],[17,20,["H8064"]],[20,23,["H8025"]],[23,24,["H2719"]],[24,27,["H3027"]],[27,29,["H5186"]],[29,30,["H5921"]],[30,31,["H3389"]],[31,33,["H1732"]],[33,36,["H2205"]],[36,41,["H3680"]],[41,43,["H8242"]],[43,44,["H5307"]],[44,45,["H5921"]],[45,47,["H6440"]]]},{"k":10951,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H430"]],[5,8,["H3808"]],[8,9,["H589"]],[9,11,["H559"]],[11,13,["H5971"]],[13,16,["H4487"]],[16,18,["H589"]],[18,19,["H1931"]],[19,21,["H834"]],[21,23,["H2398"]],[23,27,["H7489","H7489"]],[27,31,["H428"]],[31,32,["H6629"]],[32,33,["H4100"]],[33,36,["H6213"]],[36,39,["H3027"]],[39,42,["H4994"]],[42,44,["H3068"]],[44,46,["H430"]],[46,47,["H1961"]],[47,53,["H1"]],[53,54,["H1004"]],[54,56,["H3808"]],[56,59,["H5971"]],[59,64,["H4046"]]]},{"k":10952,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H559","H413"]],[7,8,["H1410"]],[8,10,["H559"]],[10,12,["H1732"]],[12,13,["H3588"]],[13,14,["H1732"]],[14,17,["H5927"]],[17,20,["H6965"]],[20,22,["H4196"]],[22,25,["H3068"]],[25,28,["H1637"]],[28,30,["H771"]],[30,32,["H2983"]]]},{"k":10953,"v":[[0,2,["H1732"]],[2,4,["H5927"]],[4,7,["H1697"]],[7,9,["H1410"]],[9,10,["H834"]],[10,12,["H1696"]],[12,15,["H8034"]],[15,18,["H3068"]]]},{"k":10954,"v":[[0,2,["H771"]],[2,4,["H7725"]],[4,6,["H7200","(H853)"]],[6,8,["H4397"]],[8,11,["H702"]],[11,12,["H1121"]],[12,13,["H5973"]],[13,16,["H2244"]],[16,18,["H771"]],[18,20,["H1758"]],[20,21,["H2406"]]]},{"k":10955,"v":[[0,3,["H1732"]],[3,4,["H935"]],[4,5,["H5704"]],[5,6,["H771"]],[6,7,["H771"]],[7,8,["H5027"]],[8,10,["H7200","(H853)"]],[10,11,["H1732"]],[11,14,["H3318"]],[14,15,["H4480"]],[15,17,["H1637"]],[17,20,["H7812"]],[20,22,["H1732"]],[22,25,["H639"]],[25,28,["H776"]]]},{"k":10956,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H771"]],[5,6,["H5414"]],[6,9,["H4725"]],[9,12,["H1637"]],[12,16,["H1129"]],[16,18,["H4196"]],[18,22,["H3068"]],[22,25,["H5414"]],[25,30,["H4392"]],[30,31,["H3701"]],[31,34,["H4046"]],[34,37,["H6113"]],[37,38,["H4480","H5921"]],[38,40,["H5971"]]]},{"k":10957,"v":[[0,2,["H771"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H1732"]],[5,6,["H3947"]],[6,13,["H113"]],[13,15,["H4428"]],[15,16,["H6213"]],[16,20,["H2896"]],[20,23,["H5869"]],[23,24,["H7200"]],[24,26,["H5414"]],[26,29,["H1241"]],[29,33,["H5930"]],[33,37,["H4173"]],[37,39,["H6086"]],[39,42,["H2406"]],[42,46,["H4503"]],[46,48,["H5414"]],[48,50,["H3605"]]]},{"k":10958,"v":[[0,2,["H4428"]],[2,3,["H1732"]],[3,4,["H559"]],[4,6,["H771"]],[6,7,["H3808"]],[7,8,["H3588"]],[8,12,["H7069","H7069"]],[12,16,["H4392"]],[16,17,["H3701"]],[17,18,["H3588"]],[18,21,["H3808"]],[21,22,["H5375"]],[22,24,["H834"]],[24,29,["H3068"]],[29,31,["H5927"]],[31,33,["H5930"]],[33,35,["H2600"]]]},{"k":10959,"v":[[0,2,["H1732"]],[2,3,["H5414"]],[3,5,["H771"]],[5,8,["H4725"]],[8,9,["H8337"]],[9,10,["H3967"]],[10,11,["H8255"]],[11,13,["H2091"]],[13,15,["H4948"]]]},{"k":10960,"v":[[0,2,["H1732"]],[2,3,["H1129"]],[3,4,["H8033"]],[4,6,["H4196"]],[6,9,["H3068"]],[9,11,["H5927"]],[11,13,["H5930"]],[13,16,["H8002"]],[16,18,["H7121"]],[18,19,["H413"]],[19,21,["H3068"]],[21,24,["H6030"]],[24,26,["H4480"]],[26,27,["H8064"]],[27,29,["H784"]],[29,30,["H5921"]],[30,32,["H4196"]],[32,35,["H5930"]]]},{"k":10961,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,6,["H4397"]],[6,13,["H7725","H2719"]],[13,14,["H413"]],[14,16,["H5084"]],[16,17,[]]]},{"k":10962,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,5,["H1732"]],[5,6,["H7200"]],[6,7,["H3588"]],[7,9,["H3068"]],[9,11,["H6030"]],[11,15,["H1637"]],[15,17,["H771"]],[17,19,["H2983"]],[19,22,["H2076"]],[22,23,["H8033"]]]},{"k":10963,"v":[[0,3,["H4908"]],[3,6,["H3068"]],[6,7,["H834"]],[7,8,["H4872"]],[8,9,["H6213"]],[9,12,["H4057"]],[12,15,["H4196"]],[15,19,["H5930"]],[19,22,["H1931"]],[22,23,["H6256"]],[23,27,["H1116"]],[27,29,["H1391"]]]},{"k":10964,"v":[[0,2,["H1732"]],[2,3,["H3201"]],[3,4,["H3808"]],[4,5,["H1980"]],[5,6,["H6440"]],[6,9,["H1875"]],[9,11,["H430"]],[11,12,["H3588"]],[12,15,["H1204"]],[15,16,["H4480","H6440"]],[16,19,["H2719"]],[19,22,["H4397"]],[22,25,["H3068"]]]},{"k":10965,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H2088"]],[4,7,["H1004"]],[7,10,["H3068"]],[10,11,["H430"]],[11,13,["H2088"]],[13,16,["H4196"]],[16,20,["H5930"]],[20,22,["H3478"]]]},{"k":10966,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,6,["H3664","(H853)"]],[6,8,["H1616"]],[8,9,["H834"]],[9,13,["H776"]],[13,15,["H3478"]],[15,18,["H5975"]],[18,19,["H2672"]],[19,21,["H2672"]],[21,22,["H1496"]],[22,23,["H68"]],[23,25,["H1129"]],[25,27,["H1004"]],[27,29,["H430"]]]},{"k":10967,"v":[[0,2,["H1732"]],[2,3,["H3559"]],[3,4,["H1270"]],[4,6,["H7230"]],[6,9,["H4548"]],[9,12,["H1817"]],[12,15,["H8179"]],[15,19,["H4226"]],[19,21,["H5178"]],[21,23,["H7230"]],[23,24,["H369"]],[24,25,["H4948"]]]},{"k":10968,"v":[[0,2,["H730"]],[2,3,["H6086"]],[3,5,["H369","H4557"]],[5,6,["H3588"]],[6,8,["H6722"]],[8,12,["H6876"]],[12,13,["H935"]],[13,14,["H7230"]],[14,15,["H730"]],[15,16,["H6086"]],[16,18,["H1732"]]]},{"k":10969,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,4,["H8010"]],[4,6,["H1121"]],[6,8,["H5288"]],[8,10,["H7390"]],[10,13,["H1004"]],[13,18,["H1129"]],[18,21,["H3068"]],[21,24,["H4605"]],[24,25,["H1431"]],[25,27,["H8034"]],[27,30,["H8597"]],[30,32,["H3605"]],[32,33,["H776"]],[33,37,["H4994"]],[37,39,["H3559"]],[39,43,["H1732"]],[43,44,["H3559"]],[44,45,["H7230"]],[45,46,["H6440"]],[46,48,["H4194"]]]},{"k":10970,"v":[[0,3,["H7121"]],[3,5,["H8010"]],[5,7,["H1121"]],[7,9,["H6680"]],[9,12,["H1129"]],[12,14,["H1004"]],[14,17,["H3068"]],[17,18,["H430"]],[18,20,["H3478"]]]},{"k":10971,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H8010"]],[5,7,["H1121"]],[7,10,["H589"]],[10,12,["H1961"]],[12,13,["H5973"]],[13,15,["H3824"]],[15,17,["H1129"]],[17,19,["H1004"]],[19,22,["H8034"]],[22,25,["H3068"]],[25,27,["H430"]]]},{"k":10972,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H5921"]],[8,10,["H559"]],[10,13,["H8210"]],[13,14,["H1818"]],[14,15,["H7230"]],[15,18,["H6213"]],[18,19,["H1419"]],[19,20,["H4421"]],[20,23,["H3808"]],[23,24,["H1129"]],[24,26,["H1004"]],[26,29,["H8034"]],[29,30,["H3588"]],[30,33,["H8210"]],[33,34,["H7227"]],[34,35,["H1818"]],[35,38,["H776"]],[38,41,["H6440"]]]},{"k":10973,"v":[[0,1,["H2009"]],[1,3,["H1121"]],[3,6,["H3205"]],[6,9,["H1931"]],[9,11,["H1961"]],[11,13,["H376"]],[13,15,["H4496"]],[15,21,["H5117"]],[21,23,["H4480","H3605"]],[23,25,["H341"]],[25,27,["H4480","H5439"]],[27,28,["H3588"]],[28,30,["H8034"]],[30,32,["H1961"]],[32,33,["H8010"]],[33,37,["H5414"]],[37,38,["H7965"]],[38,40,["H8253"]],[40,41,["H5921"]],[41,42,["H3478"]],[42,45,["H3117"]]]},{"k":10974,"v":[[0,1,["H1931"]],[1,3,["H1129"]],[3,5,["H1004"]],[5,8,["H8034"]],[8,10,["H1931"]],[10,12,["H1961"]],[12,14,["H1121"]],[14,16,["H589"]],[16,20,["H1"]],[20,24,["H3559"]],[24,26,["H3678"]],[26,29,["H4438"]],[29,30,["H5921"]],[30,31,["H3478"]],[31,33,["H5704","H5769"]]]},{"k":10975,"v":[[0,1,["H6258"]],[1,3,["H1121"]],[3,5,["H3068"]],[5,6,["H1961"]],[6,7,["H5973"]],[7,10,["H6743"]],[10,13,["H1129"]],[13,15,["H1004"]],[15,18,["H3068"]],[18,20,["H430"]],[20,21,["H834"]],[21,24,["H1696"]],[24,25,["H5921"]],[25,26,[]]]},{"k":10976,"v":[[0,1,["H389"]],[1,3,["H3068"]],[3,4,["H5414"]],[4,6,["H7922"]],[6,8,["H998"]],[8,12,["H6680"]],[12,13,["H5921"]],[13,14,["H3478"]],[14,18,["H8104","(H853)"]],[18,20,["H8451"]],[20,23,["H3068"]],[23,25,["H430"]]]},{"k":10977,"v":[[0,1,["H227"]],[1,4,["H6743"]],[4,5,["H518"]],[5,8,["H8104"]],[8,10,["H6213","(H853)"]],[10,12,["H2706"]],[12,14,["H4941"]],[14,15,["H834"]],[15,17,["H3068"]],[17,18,["H6680","(H853)"]],[18,19,["H4872"]],[19,21,["H5921"]],[21,22,["H3478"]],[22,24,["H2388"]],[24,28,["H553"]],[28,29,["H3372"]],[29,30,["H408"]],[30,31,["H408"]],[31,33,["H2865"]]]},{"k":10978,"v":[[0,2,["H2009"]],[2,5,["H6040"]],[5,8,["H3559"]],[8,11,["H1004"]],[11,14,["H3068"]],[14,16,["H3967"]],[16,17,["H505"]],[17,18,["H3603"]],[18,20,["H2091"]],[20,23,["H505"]],[23,24,["H505"]],[24,25,["H3603"]],[25,27,["H3701"]],[27,30,["H5178"]],[30,32,["H1270"]],[32,33,["H369"]],[33,34,["H4948"]],[34,35,["H3588"]],[35,37,["H1961"]],[37,39,["H7230"]],[39,40,["H6086"]],[40,43,["H68"]],[43,46,["H3559"]],[46,50,["H3254"]],[50,51,["H5921"]]]},{"k":10979,"v":[[0,4,["H6213","H4399"]],[4,5,["H5973"]],[5,8,["H7230"]],[8,9,["H2672"]],[9,11,["H2796"]],[11,13,["H68"]],[13,15,["H6086"]],[15,18,["H3605"]],[18,21,["H2450"]],[21,24,["H3605"]],[24,26,["H4399"]]]},{"k":10980,"v":[[0,3,["H2091"]],[3,5,["H3701"]],[5,8,["H5178"]],[8,11,["H1270"]],[11,14,["H369"]],[14,15,["H4557"]],[15,16,["H6965"]],[16,20,["H6213"]],[20,23,["H3068"]],[23,24,["H1961"]],[24,25,["H5973"]],[25,26,[]]]},{"k":10981,"v":[[0,1,["H1732"]],[1,3,["H6680"]],[3,4,["H3605"]],[4,6,["H8269"]],[6,8,["H3478"]],[8,10,["H5826"]],[10,11,["H8010"]],[11,13,["H1121"]],[13,14,[]]]},{"k":10982,"v":[[0,2,["H3808"]],[2,4,["H3068"]],[4,6,["H430"]],[6,7,["H5973"]],[7,15,["H5117"]],[15,18,["H4480","H5439"]],[18,19,["H3588"]],[19,22,["H5414","(H853)"]],[22,24,["H3427"]],[24,27,["H776"]],[27,30,["H3027"]],[30,33,["H776"]],[33,35,["H3533"]],[35,36,["H6440"]],[36,38,["H3068"]],[38,40,["H6440"]],[40,42,["H5971"]]]},{"k":10983,"v":[[0,1,["H6258"]],[1,2,["H5414"]],[2,4,["H3824"]],[4,7,["H5315"]],[7,9,["H1875"]],[9,11,["H3068"]],[11,13,["H430"]],[13,14,["H6965"]],[14,17,["H1129"]],[17,18,["(H853)"]],[18,20,["H4720"]],[20,23,["H3068"]],[23,24,["H430"]],[24,26,["H935","(H853)"]],[26,28,["H727"]],[28,31,["H1285"]],[31,34,["H3068"]],[34,37,["H6944"]],[37,38,["H3627"]],[38,40,["H430"]],[40,43,["H1004"]],[43,48,["H1129"]],[48,51,["H8034"]],[51,54,["H3068"]]]},{"k":10984,"v":[[0,3,["H1732"]],[3,5,["H2204"]],[5,7,["H7646"]],[7,9,["H3117"]],[9,11,["H4427","(H853)"]],[11,12,["H8010"]],[12,14,["H1121"]],[14,16,["H5921"]],[16,17,["H3478"]]]},{"k":10985,"v":[[0,4,["H622","(H853)"]],[4,5,["H3605"]],[5,7,["H8269"]],[7,9,["H3478"]],[9,12,["H3548"]],[12,15,["H3881"]]]},{"k":10986,"v":[[0,3,["H3881"]],[3,5,["H5608"]],[5,8,["H4480","H1121"]],[8,10,["H7970"]],[10,11,["H8141"]],[11,13,["H4605"]],[13,16,["H4557"]],[16,19,["H1538"]],[19,22,["H1397"]],[22,23,["H1961"]],[23,24,["H7970"]],[24,26,["H8083"]],[26,27,["H505"]]]},{"k":10987,"v":[[0,2,["H4480","H428"]],[2,3,["H6242"]],[3,5,["H702"]],[5,6,["H505"]],[6,10,["H5329","H5921"]],[10,12,["H4399"]],[12,15,["H1004"]],[15,18,["H3068"]],[18,20,["H8337"]],[20,21,["H505"]],[21,23,["H7860"]],[23,25,["H8199"]]]},{"k":10988,"v":[[0,2,["H702"]],[2,3,["H505"]],[3,5,["H7778"]],[5,7,["H702"]],[7,8,["H505"]],[8,9,["H1984"]],[9,11,["H3068"]],[11,14,["H3627"]],[14,15,["H834"]],[15,17,["H6213"]],[17,21,["H1984"]],[21,22,[]]]},{"k":10989,"v":[[0,2,["H1732"]],[2,3,["H2505"]],[3,6,["H4256"]],[6,9,["H1121"]],[9,11,["H3878"]],[11,13,["H1648"]],[13,14,["H6955"]],[14,16,["H4847"]]]},{"k":10990,"v":[[0,3,["H1649"]],[3,5,["H3936"]],[5,7,["H8096"]]]},{"k":10991,"v":[[0,2,["H1121"]],[2,4,["H3936"]],[4,6,["H7218"]],[6,8,["H3171"]],[8,10,["H2241"]],[10,12,["H3100"]],[12,13,["H7969"]]]},{"k":10992,"v":[[0,2,["H1121"]],[2,4,["H8096"]],[4,5,["H8013"]],[5,7,["H2381"]],[7,9,["H2039"]],[9,10,["H7969"]],[10,11,["H428"]],[11,14,["H7218"]],[14,17,["H1"]],[17,19,["H3936"]]]},{"k":10993,"v":[[0,3,["H1121"]],[3,5,["H8096"]],[5,7,["H3189"]],[7,8,["H2126"]],[8,10,["H3266"]],[10,12,["H1283"]],[12,13,["H428"]],[13,14,["H702"]],[14,17,["H1121"]],[17,19,["H8096"]]]},{"k":10994,"v":[[0,2,["H3189"]],[2,3,["H1961"]],[3,5,["H7218"]],[5,7,["H2125"]],[7,9,["H8145"]],[9,11,["H3266"]],[11,13,["H1283"]],[13,16,["H7235","H3808"]],[16,17,["H1121"]],[17,20,["H1961"]],[20,22,["H259"]],[22,23,["H6486"]],[23,27,["H1"]],[27,28,["H1004"]]]},{"k":10995,"v":[[0,2,["H1121"]],[2,4,["H6955"]],[4,5,["H6019"]],[5,6,["H3324"]],[6,7,["H2275"]],[7,9,["H5816"]],[9,10,["H702"]]]},{"k":10996,"v":[[0,2,["H1121"]],[2,4,["H6019"]],[4,5,["H175"]],[5,7,["H4872"]],[7,9,["H175"]],[9,11,["H914"]],[11,15,["H6942"]],[15,19,["H6944","H6944"]],[19,20,["H1931"]],[20,23,["H1121"]],[23,25,["H5704","H5769"]],[25,28,["H6999"]],[28,29,["H6440"]],[29,31,["H3068"]],[31,33,["H8334"]],[33,38,["H1288"]],[38,41,["H8034"]],[41,43,["H5704","H5769"]]]},{"k":10997,"v":[[0,3,["H4872"]],[3,5,["H376"]],[5,7,["H430"]],[7,9,["H1121"]],[9,11,["H7121"]],[11,12,["H5921"]],[12,14,["H7626"]],[14,16,["H3878"]]]},{"k":10998,"v":[[0,2,["H1121"]],[2,4,["H4872"]],[4,6,["H1648"]],[6,8,["H461"]]]},{"k":10999,"v":[[0,3,["H1121"]],[3,5,["H1648"]],[5,6,["H7619"]],[6,9,["H7218"]]]},{"k":11000,"v":[[0,3,["H1121"]],[3,5,["H461"]],[5,7,["H7345"]],[7,9,["H7218"]],[9,11,["H461"]],[11,12,["H1961"]],[12,13,["H3808"]],[13,14,["H312"]],[14,15,["H1121"]],[15,18,["H1121"]],[18,20,["H7345"]],[20,23,["H7235","H4605"]]]},{"k":11001,"v":[[0,3,["H1121"]],[3,5,["H3324"]],[5,6,["H8013"]],[6,8,["H7218"]]]},{"k":11002,"v":[[0,3,["H1121"]],[3,5,["H2275"]],[5,6,["H3404"]],[6,8,["H7218"]],[8,9,["H568"]],[9,11,["H8145"]],[11,12,["H3166"]],[12,14,["H7992"]],[14,16,["H3360"]],[16,18,["H7243"]]]},{"k":11003,"v":[[0,3,["H1121"]],[3,5,["H5816"]],[5,6,["H4318"]],[6,8,["H7218"]],[8,10,["H3449"]],[10,12,["H8145"]]]},{"k":11004,"v":[[0,2,["H1121"]],[2,4,["H4847"]],[4,5,["H4249"]],[5,7,["H4187"]],[7,9,["H1121"]],[9,11,["H4249"]],[11,12,["H499"]],[12,14,["H7027"]]]},{"k":11005,"v":[[0,2,["H499"]],[2,3,["H4191"]],[3,5,["H1961"]],[5,6,["H3808"]],[6,7,["H1121"]],[7,8,["H3588","H518"]],[8,9,["H1323"]],[9,12,["H251"]],[12,14,["H1121"]],[14,16,["H7027"]],[16,17,["H5375"]],[17,18,[]]]},{"k":11006,"v":[[0,2,["H1121"]],[2,4,["H4187"]],[4,5,["H4249"]],[5,7,["H5740"]],[7,9,["H3406"]],[9,10,["H7969"]]]},{"k":11007,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,6,["H3878"]],[6,9,["H1004"]],[9,12,["H1"]],[12,15,["H7218"]],[15,18,["H1"]],[18,22,["H6485"]],[22,24,["H4557"]],[24,26,["H8034"]],[26,29,["H1538"]],[29,31,["H6213"]],[31,33,["H4399"]],[33,36,["H5656"]],[36,39,["H1004"]],[39,42,["H3068"]],[42,45,["H4480","H1121"]],[45,47,["H6242"]],[47,48,["H8141"]],[48,50,["H4605"]]]},{"k":11008,"v":[[0,1,["H3588"]],[1,2,["H1732"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H430"]],[6,8,["H3478"]],[8,11,["H5117"]],[11,14,["H5971"]],[14,18,["H7931"]],[18,20,["H3389"]],[20,22,["H5704","H5769"]]]},{"k":11009,"v":[[0,2,["H1571"]],[2,5,["H3881"]],[5,8,["H369"]],[8,10,["H5375","(H853)"]],[10,12,["H4908"]],[12,14,["H3605"]],[14,15,["H3627"]],[15,20,["H5656"]],[20,21,[]]]},{"k":11010,"v":[[0,1,["H3588"]],[1,4,["H314"]],[4,5,["H1697"]],[5,7,["H1732"]],[7,9,["H1121","H3881"]],[9,11,["H4557"]],[11,15,["H4480","H1121","H6242","H8141"]],[15,17,["H4605"]]]},{"k":11011,"v":[[0,1,["H3588"]],[1,3,["H4612"]],[3,7,["H3027"]],[7,9,["H1121"]],[9,11,["H175"]],[11,14,["H5656"]],[14,17,["H1004"]],[17,20,["H3068"]],[20,21,["H5921"]],[21,23,["H2691"]],[23,25,["H5921"]],[25,27,["H3957"]],[27,29,["H5921"]],[29,31,["H2893"]],[31,33,["H3605"]],[33,35,["H6944"]],[35,38,["H4639"]],[38,41,["H5656"]],[41,44,["H1004"]],[44,46,["H430"]]]},{"k":11012,"v":[[0,4,["H3899","H4635"]],[4,9,["H5560"]],[9,12,["H4503"]],[12,16,["H4682"]],[16,17,["H7550"]],[17,26,["H4227"]],[26,32,["H7246"]],[32,36,["H3605"]],[36,38,["H4884"]],[38,40,["H4060"]]]},{"k":11013,"v":[[0,3,["H5975"]],[3,5,["H1242","H1242"]],[5,7,["H3034"]],[7,9,["H1984"]],[9,11,["H3068"]],[11,13,["H3651"]],[13,15,["H6153"]]]},{"k":11014,"v":[[0,3,["H5927"]],[3,4,["H3605"]],[4,6,["H5930"]],[6,9,["H3068"]],[9,12,["H7676"]],[12,16,["H2320"]],[16,21,["H4150"]],[21,23,["H4557"]],[23,27,["H4941"]],[27,29,["H5921"]],[29,31,["H8548"]],[31,32,["H6440"]],[32,34,["H3068"]]]},{"k":11015,"v":[[0,5,["H8104","(H853)"]],[5,7,["H4931"]],[7,10,["H168"]],[10,13,["H4150"]],[13,16,["H4931"]],[16,19,["H6944"]],[19,23,["H4931"]],[23,26,["H1121"]],[26,28,["H175"]],[28,30,["H251"]],[30,33,["H5656"]],[33,36,["H1004"]],[36,39,["H3068"]]]},{"k":11016,"v":[[0,5,["H4256"]],[5,8,["H1121"]],[8,10,["H175"]],[10,12,["H1121"]],[12,14,["H175"]],[14,15,["H5070"]],[15,17,["H30"]],[17,18,["H499"]],[18,20,["H385"]]]},{"k":11017,"v":[[0,2,["H5070"]],[2,4,["H30"]],[4,5,["H4191"]],[5,6,["H6440"]],[6,8,["H1"]],[8,10,["H1961"]],[10,11,["H3808"]],[11,12,["H1121"]],[12,14,["H499"]],[14,16,["H385"]],[16,20,["H3547"]]]},{"k":11018,"v":[[0,2,["H1732"]],[2,3,["H2505"]],[3,6,["H6659"]],[6,7,["H4480"]],[7,9,["H1121"]],[9,11,["H499"]],[11,13,["H288"]],[13,14,["H4480"]],[14,16,["H1121"]],[16,18,["H385"]],[18,22,["H6486"]],[22,25,["H5656"]]]},{"k":11019,"v":[[0,4,["H7227"]],[4,5,["H7218"]],[5,6,["H1397"]],[6,7,["H4672"]],[7,10,["H1121"]],[10,12,["H499"]],[12,13,["H4480"]],[13,16,["H1121"]],[16,18,["H385"]],[18,23,["H2505"]],[23,26,["H1121"]],[26,28,["H499"]],[28,31,["H8337","H6240"]],[31,33,["H7218"]],[33,36,["H1004"]],[36,39,["H1"]],[39,41,["H8083"]],[41,44,["H1121"]],[44,46,["H385"]],[46,50,["H1004"]],[50,53,["H1"]]]},{"k":11020,"v":[[0,4,["H2505"]],[4,6,["H1486"]],[6,8,["H428"]],[8,9,["H5973"]],[9,10,["H428"]],[10,11,["H3588"]],[11,13,["H8269"]],[13,16,["H6944"]],[16,18,["H8269"]],[18,23,["H430"]],[23,24,["H1961"]],[24,27,["H4480","H1121"]],[27,29,["H499"]],[29,33,["H1121"]],[33,35,["H385"]]]},{"k":11021,"v":[[0,2,["H8098"]],[2,4,["H1121"]],[4,6,["H5417"]],[6,8,["H5608"]],[8,10,["H4480"]],[10,12,["H3878"]],[12,13,["H3789"]],[13,15,["H6440"]],[15,17,["H4428"]],[17,20,["H8269"]],[20,22,["H6659"]],[22,24,["H3548"]],[24,26,["H288"]],[26,28,["H1121"]],[28,30,["H54"]],[30,34,["H7218"]],[34,37,["H1"]],[37,40,["H3548"]],[40,42,["H3881"]],[42,43,["H259"]],[43,44,["H1"]],[44,45,["H1004"]],[45,47,["H270"]],[47,49,["H499"]],[49,52,["H270"]],[52,54,["H385"]]]},{"k":11022,"v":[[0,3,["H7223"]],[3,4,["H1486"]],[4,6,["H3318"]],[6,8,["H3080"]],[8,10,["H8145"]],[10,12,["H3048"]]]},{"k":11023,"v":[[0,2,["H7992"]],[2,4,["H2766"]],[4,6,["H7243"]],[6,8,["H8188"]]]},{"k":11024,"v":[[0,2,["H2549"]],[2,4,["H4441"]],[4,6,["H8345"]],[6,8,["H4326"]]]},{"k":11025,"v":[[0,2,["H7637"]],[2,4,["H6976"]],[4,6,["H8066"]],[6,8,["H29"]]]},{"k":11026,"v":[[0,2,["H8671"]],[2,4,["H3442"]],[4,6,["H6224"]],[6,8,["H7935"]]]},{"k":11027,"v":[[0,2,["H6249","H6240"]],[2,4,["H475"]],[4,6,["H8147","H6240"]],[6,8,["H3356"]]]},{"k":11028,"v":[[0,2,["H7969","H6240"]],[2,4,["H2647"]],[4,6,["H702","H6240"]],[6,8,["H3428"]]]},{"k":11029,"v":[[0,2,["H2568","H6240"]],[2,4,["H1083"]],[4,6,["H8337","H6240"]],[6,8,["H564"]]]},{"k":11030,"v":[[0,2,["H7651","H6240"]],[2,4,["H2387"]],[4,6,["H8083","H6240"]],[6,8,["H6483"]]]},{"k":11031,"v":[[0,2,["H8672","H6240"]],[2,4,["H6611"]],[4,6,["H6242"]],[6,8,["H3168"]]]},{"k":11032,"v":[[0,2,["H259"]],[2,4,["H6242"]],[4,6,["H3199"]],[6,8,["H8147"]],[8,10,["H6242"]],[10,12,["H1577"]]]},{"k":11033,"v":[[0,2,["H7969"]],[2,4,["H6242"]],[4,6,["H1806"]],[6,8,["H702"]],[8,10,["H6242"]],[10,12,["H4590"]]]},{"k":11034,"v":[[0,1,["H428"]],[1,4,["H6486"]],[4,9,["H5656"]],[9,11,["H935"]],[11,14,["H1004"]],[14,17,["H3068"]],[17,21,["H4941"]],[21,22,["H3027"]],[22,23,["H175"]],[23,25,["H1"]],[25,26,["H834"]],[26,28,["H3068"]],[28,29,["H430"]],[29,31,["H3478"]],[31,33,["H6680"]],[33,34,[]]]},{"k":11035,"v":[[0,3,["H3498"]],[3,6,["H1121"]],[6,8,["H3878"]],[8,13,["H1121"]],[13,15,["H6019"]],[15,16,["H7619"]],[16,19,["H1121"]],[19,21,["H7619"]],[21,22,["H3165"]]]},{"k":11036,"v":[[0,2,["H7345"]],[2,5,["H1121"]],[5,7,["H7345"]],[7,9,["H7218"]],[9,11,["H3449"]]]},{"k":11037,"v":[[0,3,["H3325"]],[3,4,["H8013"]],[4,7,["H1121"]],[7,9,["H8013"]],[9,10,["H3189"]]]},{"k":11038,"v":[[0,3,["H1121"]],[3,6,["H3404"]],[6,9,["H568"]],[9,11,["H8145"]],[11,12,["H3166"]],[12,14,["H7992"]],[14,15,["H3360"]],[15,17,["H7243"]]]},{"k":11039,"v":[[0,3,["H1121"]],[3,5,["H5816"]],[5,6,["H4318"]],[6,9,["H1121"]],[9,11,["H4318"]],[11,12,["H8053"]]]},{"k":11040,"v":[[0,2,["H251"]],[2,4,["H4318"]],[4,6,["H3449"]],[6,9,["H1121"]],[9,11,["H3449"]],[11,12,["H2148"]]]},{"k":11041,"v":[[0,2,["H1121"]],[2,4,["H4847"]],[4,6,["H4249"]],[6,8,["H4187"]],[8,10,["H1121"]],[10,12,["H3269"]],[12,13,["H1121"]]]},{"k":11042,"v":[[0,2,["H1121"]],[2,4,["H4847"]],[4,6,["H3269"]],[6,7,["H1121"]],[7,9,["H7719"]],[9,11,["H2139"]],[11,13,["H5681"]]]},{"k":11043,"v":[[0,2,["H4249"]],[2,4,["H499"]],[4,6,["H1961"]],[6,7,["H3808"]],[7,8,["H1121"]]]},{"k":11044,"v":[[0,2,["H7027"]],[2,4,["H1121"]],[4,6,["H7027"]],[6,8,["H3396"]]]},{"k":11045,"v":[[0,2,["H1121"]],[2,5,["H4187"]],[5,6,["H4249"]],[6,8,["H5740"]],[8,10,["H3406"]],[10,11,["H428"]],[11,14,["H1121"]],[14,17,["H3881"]],[17,20,["H1004"]],[20,23,["H1"]]]},{"k":11046,"v":[[0,1,["H1992"]],[1,2,["H1571"]],[2,3,["H5307"]],[3,4,["H1486"]],[4,6,["H5980"]],[6,8,["H251"]],[8,10,["H1121"]],[10,12,["H175"]],[12,15,["H6440"]],[15,17,["H1732"]],[17,19,["H4428"]],[19,21,["H6659"]],[21,23,["H288"]],[23,26,["H7218"]],[26,29,["H1"]],[29,32,["H3548"]],[32,34,["H3881"]],[34,37,["H7218"]],[37,38,["H1"]],[38,40,["H5980"]],[40,42,["H6996"]],[42,43,["H251"]]]},{"k":11047,"v":[[0,2,["H1732"]],[2,5,["H8269"]],[5,8,["H6635"]],[8,9,["H914"]],[9,12,["H5656"]],[12,15,["H1121"]],[15,17,["H623"]],[17,20,["H1968"]],[20,23,["H3038"]],[23,26,["H5012"]],[26,28,["H3658"]],[28,30,["H5035"]],[30,33,["H4700"]],[33,36,["H4557"]],[36,39,["H376","H4399"]],[39,43,["H5656"]],[43,44,["H1961"]]]},{"k":11048,"v":[[0,3,["H1121"]],[3,5,["H623"]],[5,6,["H2139"]],[6,8,["H3130"]],[8,10,["H5418"]],[10,12,["H841"]],[12,14,["H1121"]],[14,16,["H623"]],[16,17,["H5921"]],[17,19,["H3027"]],[19,21,["H623"]],[21,23,["H5012"]],[23,25,["H5921"]],[25,27,["H3027"]],[27,30,["H4428"]]]},{"k":11049,"v":[[0,2,["H3038"]],[2,4,["H1121"]],[4,6,["H3038"]],[6,7,["H1436"]],[7,9,["H6874"]],[9,11,["H3470"]],[11,12,["H2811"]],[12,14,["H4993"]],[14,15,["H8337"]],[15,16,["H5921"]],[16,18,["H3027"]],[18,21,["H1"]],[21,22,["H3038"]],[22,24,["H5012"]],[24,27,["H3658"]],[27,28,["H5921"]],[28,30,["H3034"]],[30,33,["H1984"]],[33,35,["H3068"]]]},{"k":11050,"v":[[0,2,["H1968"]],[2,4,["H1121"]],[4,6,["H1968"]],[6,7,["H1232"]],[7,8,["H4983"]],[8,9,["H5816"]],[9,10,["H7619"]],[10,12,["H3406"]],[12,13,["H2608"]],[13,14,["H2607"]],[14,15,["H448"]],[15,16,["H1437"]],[16,18,["H7320"]],[18,19,["H3436"]],[19,20,["H4413"]],[20,21,["H1956"]],[21,23,["H4238"]]]},{"k":11051,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,5,["H1121"]],[5,7,["H1968"]],[7,9,["H4428"]],[9,10,["H2374"]],[10,13,["H1697"]],[13,15,["H430"]],[15,18,["H7311"]],[18,20,["H7161"]],[20,22,["H430"]],[22,23,["H5414"]],[23,25,["H1968"]],[25,26,["H702","H6240"]],[26,27,["H1121"]],[27,29,["H7969"]],[29,30,["H1323"]]]},{"k":11052,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,4,["H5921"]],[4,6,["H3027"]],[6,9,["H1"]],[9,11,["H7892"]],[11,14,["H1004"]],[14,17,["H3068"]],[17,19,["H4700"]],[19,20,["H5035"]],[20,22,["H3658"]],[22,25,["H5656"]],[25,28,["H1004"]],[28,30,["H430"]],[30,32,["H5921"]],[32,34,["H4428"]],[34,35,["H3027"]],[35,37,["H623"]],[37,38,["H3038"]],[38,40,["H1968"]]]},{"k":11053,"v":[[0,3,["H4557"]],[3,6,["H5973"]],[6,8,["H251"]],[8,11,["H3925"]],[11,14,["H7892"]],[14,17,["H3068"]],[17,19,["H3605"]],[19,22,["H995"]],[22,23,["H1961"]],[23,25,["H3967"]],[25,26,["H8084"]],[26,28,["H8083"]]]},{"k":11054,"v":[[0,3,["H5307"]],[3,4,["H1486"]],[4,5,["H4931"]],[5,6,["H5980"]],[6,11,["H6996"]],[11,14,["H1419"]],[14,16,["H995"]],[16,17,["H5973"]],[17,19,["H8527"]]]},{"k":11055,"v":[[0,3,["H7223"]],[3,4,["H1486"]],[4,6,["H3318"]],[6,8,["H623"]],[8,10,["H3130"]],[10,12,["H8145"]],[12,14,["H1436"]],[14,15,["H1931"]],[15,18,["H251"]],[18,20,["H1121"]],[20,22,["H8147","H6240"]]]},{"k":11056,"v":[[0,2,["H7992"]],[2,4,["H2139"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11057,"v":[[0,2,["H7243"]],[2,4,["H3340"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11058,"v":[[0,2,["H2549"]],[2,4,["H5418"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11059,"v":[[0,2,["H8345"]],[2,4,["H1232"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11060,"v":[[0,2,["H7637"]],[2,4,["H3480"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11061,"v":[[0,2,["H8066"]],[2,4,["H3470"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11062,"v":[[0,2,["H8671"]],[2,4,["H4983"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11063,"v":[[0,2,["H6224"]],[2,4,["H8096"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11064,"v":[[0,2,["H6249","H6240"]],[2,4,["H5832"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11065,"v":[[0,2,["H8147","H6240"]],[2,4,["H2811"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11066,"v":[[0,2,["H7969","H6240"]],[2,4,["H7619"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11067,"v":[[0,2,["H702","H6240"]],[2,4,["H4993"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11068,"v":[[0,2,["H2568","H6240"]],[2,4,["H3406"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11069,"v":[[0,2,["H8337","H6240"]],[2,4,["H2608"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11070,"v":[[0,2,["H7651","H6240"]],[2,4,["H3436"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11071,"v":[[0,2,["H8083","H6240"]],[2,4,["H2607"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11072,"v":[[0,2,["H8672","H6240"]],[2,4,["H4413"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11073,"v":[[0,2,["H6242"]],[2,4,["H448"]],[4,7,["H1121"]],[7,10,["H251"]],[10,12,["H8147","H6240"]]]},{"k":11074,"v":[[0,2,["H259"]],[2,4,["H6242"]],[4,6,["H1956"]],[6,9,["H1121"]],[9,12,["H251"]],[12,14,["H8147","H6240"]]]},{"k":11075,"v":[[0,2,["H8147"]],[2,4,["H6242"]],[4,6,["H1437"]],[6,9,["H1121"]],[9,12,["H251"]],[12,14,["H8147","H6240"]]]},{"k":11076,"v":[[0,2,["H7969"]],[2,4,["H6242"]],[4,6,["H4238"]],[6,9,["H1121"]],[9,12,["H251"]],[12,14,["H8147","H6240"]]]},{"k":11077,"v":[[0,2,["H702"]],[2,4,["H6242"]],[4,6,["H7320"]],[6,9,["H1121"]],[9,12,["H251"]],[12,14,["H8147","H6240"]]]},{"k":11078,"v":[[0,3,["H4256"]],[3,6,["H7778"]],[6,9,["H7145"]],[9,11,["H4920"]],[11,13,["H1121"]],[13,15,["H6981"]],[15,16,["H4480"]],[16,18,["H1121"]],[18,20,["H623"]]]},{"k":11079,"v":[[0,3,["H1121"]],[3,5,["H4920"]],[5,7,["H2148"]],[7,9,["H1060"]],[9,10,["H3043"]],[10,12,["H8145"]],[12,13,["H2069"]],[13,15,["H7992"]],[15,16,["H3496"]],[16,18,["H7243"]]]},{"k":11080,"v":[[0,1,["H5867"]],[1,3,["H2549"]],[3,4,["H3076"]],[4,6,["H8345"]],[6,7,["H454"]],[7,9,["H7637"]]]},{"k":11081,"v":[[0,3,["H1121"]],[3,5,["H5654"]],[5,7,["H8098"]],[7,9,["H1060"]],[9,10,["H3075"]],[10,12,["H8145"]],[12,13,["H3098"]],[13,15,["H7992"]],[15,17,["H7940"]],[17,19,["H7243"]],[19,21,["H5417"]],[21,23,["H2549"]]]},{"k":11082,"v":[[0,1,["H5988"]],[1,3,["H8345"]],[3,4,["H3485"]],[4,6,["H7637"]],[6,7,["H6469"]],[7,9,["H8066"]],[9,10,["H3588"]],[10,11,["H430"]],[11,12,["H1288"]],[12,13,[]]]},{"k":11083,"v":[[0,3,["H8098"]],[3,5,["H1121"]],[5,7,["H1121"]],[7,8,["H3205"]],[8,10,["H4474"]],[10,13,["H1004"]],[13,16,["H1"]],[16,17,["H3588"]],[17,18,["H1992"]],[18,21,["H1368"]],[21,23,["H2428"]]]},{"k":11084,"v":[[0,2,["H1121"]],[2,4,["H8098"]],[4,5,["H6273"]],[5,7,["H7501"]],[7,9,["H5744"]],[9,10,["H443"]],[10,12,["H251"]],[12,15,["H1121","H2428"]],[15,16,["H453"]],[16,18,["H5565"]]]},{"k":11085,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,5,["H4480","H1121"]],[5,7,["H5654"]],[7,8,["H1992"]],[8,11,["H1121"]],[11,14,["H251"]],[14,15,["H2428"]],[15,16,["H376"]],[16,18,["H3581"]],[18,21,["H5656"]],[21,23,["H8346"]],[23,25,["H8147"]],[25,27,["H5654"]]]},{"k":11086,"v":[[0,2,["H4920"]],[2,4,["H1121"]],[4,6,["H251"]],[6,8,["H1121","H2428"]],[8,9,["H8083","H6240"]]]},{"k":11087,"v":[[0,2,["H2621"]],[2,3,["H4480"]],[3,5,["H1121"]],[5,7,["H4847"]],[7,9,["H1121"]],[9,10,["H8113"]],[10,12,["H7218"]],[12,13,["H3588"]],[13,16,["H1961"]],[16,17,["H3808"]],[17,19,["H1060"]],[19,22,["H1"]],[22,23,["H7760"]],[23,26,["H7218"]]]},{"k":11088,"v":[[0,1,["H2518"]],[1,3,["H8145"]],[3,4,["H2882"]],[4,6,["H7992"]],[6,7,["H2148"]],[7,9,["H7243"]],[9,10,["H3605"]],[10,12,["H1121"]],[12,14,["H251"]],[14,16,["H2621"]],[16,18,["H7969","H6240"]]]},{"k":11089,"v":[[0,2,["H428"]],[2,5,["H4256"]],[5,8,["H7778"]],[8,12,["H7218"]],[12,13,["H1397"]],[13,15,["H4931"]],[15,18,["H5980","H251"]],[18,20,["H8334"]],[20,23,["H1004"]],[23,26,["H3068"]]]},{"k":11090,"v":[[0,3,["H5307"]],[3,4,["H1486"]],[4,8,["H6996"]],[8,11,["H1419"]],[11,15,["H1004"]],[15,18,["H1"]],[18,21,["H8179","H8179"]]]},{"k":11091,"v":[[0,3,["H1486"]],[3,4,["H4217"]],[4,5,["H5307"]],[5,7,["H8018"]],[7,10,["H2148"]],[10,12,["H1121"]],[12,14,["H7922"]],[14,15,["H3289"]],[15,17,["H5307"]],[17,18,["H1486"]],[18,21,["H1486"]],[21,23,["H3318"]],[23,24,["H6828"]]]},{"k":11092,"v":[[0,2,["H5654"]],[2,3,["H5045"]],[3,7,["H1121"]],[7,9,["H1004"]],[9,11,["H624"]]]},{"k":11093,"v":[[0,2,["H8206"]],[2,4,["H2621"]],[4,9,["H4628"]],[9,10,["H5973"]],[10,12,["H8179"]],[12,13,["H7996"]],[13,16,["H4546"]],[16,20,["H5927"]],[20,21,["H4929"]],[21,22,["H5980"]],[22,23,["H4929"]]]},{"k":11094,"v":[[0,1,["H4217"]],[1,3,["H8337"]],[3,4,["H3881"]],[4,5,["H6828"]],[5,6,["H702"]],[6,8,["H3117"]],[8,9,["H5045"]],[9,10,["H702"]],[10,12,["H3117"]],[12,15,["H624"]],[15,16,["H8147"]],[16,18,["H8147"]]]},{"k":11095,"v":[[0,2,["H6503"]],[2,3,["H4628"]],[3,4,["H702"]],[4,7,["H4546"]],[7,9,["H8147"]],[9,11,["H6503"]]]},{"k":11096,"v":[[0,1,["H428"]],[1,4,["H4256"]],[4,7,["H7778"]],[7,10,["H1121"]],[10,12,["H7145"]],[12,16,["H1121"]],[16,18,["H4847"]]]},{"k":11097,"v":[[0,4,["H3881"]],[4,5,["H281"]],[5,7,["H5921"]],[7,9,["H214"]],[9,12,["H1004"]],[12,14,["H430"]],[14,18,["H214"]],[18,22,["H6944"]]]},{"k":11098,"v":[[0,4,["H1121"]],[4,6,["H3936"]],[6,8,["H1121"]],[8,11,["H1649"]],[11,12,["H3936"]],[12,13,["H7218"]],[13,14,["H1"]],[14,17,["H3936"]],[17,19,["H1649"]],[19,21,["H3172"]]]},{"k":11099,"v":[[0,2,["H1121"]],[2,4,["H3172"]],[4,5,["H2241"]],[5,7,["H3100"]],[7,9,["H251"]],[9,12,["H5921"]],[12,14,["H214"]],[14,17,["H1004"]],[17,20,["H3068"]]]},{"k":11100,"v":[[0,3,["H6020"]],[3,6,["H3325"]],[6,8,["H2276"]],[8,11,["H5817"]]]},{"k":11101,"v":[[0,2,["H7619"]],[2,4,["H1121"]],[4,6,["H1648"]],[6,8,["H1121"]],[8,10,["H4872"]],[10,12,["H5057"]],[12,13,["H5921"]],[13,15,["H214"]]]},{"k":11102,"v":[[0,3,["H251"]],[3,5,["H461"]],[5,6,["H7345"]],[6,8,["H1121"]],[8,10,["H3470"]],[10,12,["H1121"]],[12,14,["H3141"]],[14,16,["H1121"]],[16,18,["H2147"]],[18,20,["H1121"]],[20,22,["H8013"]],[22,24,["H1121"]]]},{"k":11103,"v":[[0,1,["H1931"]],[1,2,["H8013"]],[2,5,["H251"]],[5,7,["H5921"]],[7,8,["H3605"]],[8,10,["H214"]],[10,14,["H6944"]],[14,15,["H834"]],[15,16,["H1732"]],[16,18,["H4428"]],[18,21,["H7218"]],[21,22,["H1"]],[22,24,["H8269"]],[24,26,["H505"]],[26,28,["H3967"]],[28,31,["H8269"]],[31,34,["H6635"]],[34,36,["H6942"]]]},{"k":11104,"v":[[0,2,["H4480"]],[2,4,["H7998"]],[4,6,["H4480"]],[6,7,["H4421"]],[7,10,["H6942"]],[10,12,["H2388"]],[12,14,["H1004"]],[14,17,["H3068"]]]},{"k":11105,"v":[[0,2,["H3605"]],[2,4,["H8050"]],[4,6,["H7203"]],[6,8,["H7586"]],[8,10,["H1121"]],[10,12,["H7027"]],[12,14,["H74"]],[14,16,["H1121"]],[16,18,["H5369"]],[18,20,["H3097"]],[20,22,["H1121"]],[22,24,["H6870"]],[24,26,["H6942"]],[26,28,["H3605"]],[28,30,["H6942"]],[30,35,["H5921"]],[35,37,["H3027"]],[37,39,["H8019"]],[39,43,["H251"]]]},{"k":11106,"v":[[0,3,["H3325"]],[3,4,["H3663"]],[4,7,["H1121"]],[7,11,["H2435"]],[11,12,["H4399"]],[12,13,["H5921"]],[13,14,["H3478"]],[14,16,["H7860"]],[16,18,["H8199"]]]},{"k":11107,"v":[[0,4,["H2276"]],[4,5,["H2811"]],[5,8,["H251"]],[8,11,["H1121","H2428"]],[11,13,["H505"]],[13,15,["H7651"]],[15,16,["H3967"]],[16,18,["H6486"]],[18,19,["H5921"]],[19,22,["H3478"]],[22,25,["H4480","H5676"]],[25,26,["H3383"]],[26,27,["H4628"]],[27,29,["H3605"]],[29,31,["H4399"]],[31,34,["H3068"]],[34,38,["H5656"]],[38,41,["H4428"]]]},{"k":11108,"v":[[0,3,["H2276"]],[3,5,["H3404"]],[5,7,["H7218"]],[7,11,["H2276"]],[11,15,["H8435"]],[15,18,["H1"]],[18,21,["H705"]],[21,22,["H8141"]],[22,25,["H4438"]],[25,27,["H1732"]],[27,31,["H1875"]],[31,35,["H4672"]],[35,39,["H1368"]],[39,41,["H2428"]],[41,43,["H3270"]],[43,45,["H1568"]]]},{"k":11109,"v":[[0,3,["H251"]],[3,4,["H1121"]],[4,6,["H2428"]],[6,9,["H505"]],[9,11,["H7651"]],[11,12,["H3967"]],[12,13,["H7218"]],[13,14,["H1"]],[14,16,["H4428"]],[16,17,["H1732"]],[17,19,["H6485"]],[19,20,["H5921"]],[20,22,["H7206"]],[22,24,["H1425"]],[24,27,["H2677"]],[27,28,["H7626"]],[28,30,["H4520"]],[30,32,["H3605"]],[32,33,["H1697"]],[33,36,["H430"]],[36,38,["H1697"]],[38,41,["H4428"]]]},{"k":11110,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,8,["H4557"]],[8,12,["H7218"]],[12,13,["H1"]],[13,15,["H8269"]],[15,17,["H505"]],[17,19,["H3967"]],[19,22,["H7860"]],[22,24,["H8334","(H853)"]],[24,26,["H4428"]],[26,28,["H3605"]],[28,29,["H1697"]],[29,32,["H4256"]],[32,35,["H935"]],[35,38,["H3318"]],[38,41,["H2320","H2320"]],[41,43,["H3605"]],[43,45,["H2320"]],[45,48,["H8141"]],[48,50,["H259"]],[50,51,["H4256"]],[51,53,["H6242"]],[53,55,["H702"]],[55,56,["H505"]]]},{"k":11111,"v":[[0,1,["H5921"]],[1,3,["H7223"]],[3,4,["H4256"]],[4,7,["H7223"]],[7,8,["H2320"]],[8,10,["H3434"]],[10,12,["H1121"]],[12,14,["H2068"]],[14,16,["H5921"]],[16,18,["H4256"]],[18,20,["H6242"]],[20,22,["H702"]],[22,23,["H505"]]]},{"k":11112,"v":[[0,1,["H4480"]],[1,3,["H1121"]],[3,5,["H6557"]],[5,8,["H7218"]],[8,10,["H3605"]],[10,12,["H8269"]],[12,15,["H6635"]],[15,18,["H7223"]],[18,19,["H2320"]]]},{"k":11113,"v":[[0,2,["H5921"]],[2,4,["H4256"]],[4,7,["H8145"]],[7,8,["H2320"]],[8,10,["H1737"]],[10,12,["H266"]],[12,16,["H4256"]],[16,18,["H4732"]],[18,21,["H5057"]],[21,22,["H5921"]],[22,24,["H4256"]],[24,27,["H6242"]],[27,29,["H702"]],[29,30,["H505"]]]},{"k":11114,"v":[[0,2,["H7992"]],[2,3,["H8269"]],[3,6,["H6635"]],[6,9,["H7992"]],[9,10,["H2320"]],[10,12,["H1141"]],[12,14,["H1121"]],[14,16,["H3077"]],[16,18,["H7218"]],[18,19,["H3548"]],[19,21,["H5921"]],[21,23,["H4256"]],[23,25,["H6242"]],[25,27,["H702"]],[27,28,["H505"]]]},{"k":11115,"v":[[0,1,["H1931"]],[1,4,["H1141"]],[4,7,["H1368"]],[7,10,["H7970"]],[10,12,["H5921"]],[12,14,["H7970"]],[14,18,["H4256"]],[18,20,["H5990"]],[20,22,["H1121"]]]},{"k":11116,"v":[[0,2,["H7243"]],[2,6,["H7243"]],[6,7,["H2320"]],[7,9,["H6214"]],[9,11,["H251"]],[11,13,["H3097"]],[13,15,["H2069"]],[15,17,["H1121"]],[17,18,["H310"]],[18,21,["H5921"]],[21,23,["H4256"]],[23,25,["H6242"]],[25,27,["H702"]],[27,28,["H505"]]]},{"k":11117,"v":[[0,2,["H2549"]],[2,3,["H8269"]],[3,6,["H2549"]],[6,7,["H2320"]],[7,9,["H8049"]],[9,11,["H3155"]],[11,13,["H5921"]],[13,15,["H4256"]],[15,17,["H6242"]],[17,19,["H702"]],[19,20,["H505"]]]},{"k":11118,"v":[[0,2,["H8345"]],[2,6,["H8345"]],[6,7,["H2320"]],[7,9,["H5896"]],[9,11,["H1121"]],[11,13,["H6142"]],[13,15,["H8621"]],[15,17,["H5921"]],[17,19,["H4256"]],[19,21,["H6242"]],[21,23,["H702"]],[23,24,["H505"]]]},{"k":11119,"v":[[0,2,["H7637"]],[2,6,["H7637"]],[6,7,["H2320"]],[7,9,["H2503"]],[9,11,["H6397"]],[11,12,["H4480"]],[12,14,["H1121"]],[14,16,["H669"]],[16,18,["H5921"]],[18,20,["H4256"]],[20,22,["H6242"]],[22,24,["H702"]],[24,25,["H505"]]]},{"k":11120,"v":[[0,2,["H8066"]],[2,6,["H8066"]],[6,7,["H2320"]],[7,9,["H5444"]],[9,11,["H2843"]],[11,14,["H2227"]],[14,16,["H5921"]],[16,18,["H4256"]],[18,20,["H6242"]],[20,22,["H702"]],[22,23,["H505"]]]},{"k":11121,"v":[[0,2,["H8671"]],[2,6,["H8671"]],[6,7,["H2320"]],[7,9,["H44"]],[9,11,["H6069"]],[11,14,["H1145"]],[14,16,["H5921"]],[16,18,["H4256"]],[18,20,["H6242"]],[20,22,["H702"]],[22,23,["H505"]]]},{"k":11122,"v":[[0,2,["H6224"]],[2,6,["H6224"]],[6,7,["H2320"]],[7,9,["H4121"]],[9,11,["H5200"]],[11,14,["H2227"]],[14,16,["H5921"]],[16,18,["H4256"]],[18,20,["H6242"]],[20,22,["H702"]],[22,23,["H505"]]]},{"k":11123,"v":[[0,2,["H6249","H6240"]],[2,6,["H6249","H6240"]],[6,7,["H2320"]],[7,9,["H1141"]],[9,11,["H6553"]],[11,12,["H4480"]],[12,14,["H1121"]],[14,16,["H669"]],[16,18,["H5921"]],[18,20,["H4256"]],[20,22,["H6242"]],[22,24,["H702"]],[24,25,["H505"]]]},{"k":11124,"v":[[0,2,["H8147","H6240"]],[2,6,["H8147","H6240"]],[6,7,["H2320"]],[7,9,["H2469"]],[9,11,["H5200"]],[11,13,["H6274"]],[13,15,["H5921"]],[15,17,["H4256"]],[17,19,["H6242"]],[19,21,["H702"]],[21,22,["H505"]]]},{"k":11125,"v":[[0,2,["H5921"]],[2,4,["H7626"]],[4,6,["H3478"]],[6,8,["H5057"]],[8,11,["H7206"]],[11,13,["H461"]],[13,15,["H1121"]],[15,17,["H2147"]],[17,20,["H8099"]],[20,21,["H8203"]],[21,23,["H1121"]],[23,25,["H4601"]]]},{"k":11126,"v":[[0,3,["H3881"]],[3,4,["H2811"]],[4,6,["H1121"]],[6,8,["H7055"]],[8,11,["H175"]],[11,12,["H6659"]]]},{"k":11127,"v":[[0,2,["H3063"]],[2,3,["H453"]],[3,7,["H4480","H251"]],[7,9,["H1732"]],[9,11,["H3485"]],[11,12,["H6018"]],[12,14,["H1121"]],[14,16,["H4317"]]]},{"k":11128,"v":[[0,2,["H2074"]],[2,3,["H3460"]],[3,5,["H1121"]],[5,7,["H5662"]],[7,9,["H5321"]],[9,10,["H3406"]],[10,12,["H1121"]],[12,14,["H5837"]]]},{"k":11129,"v":[[0,3,["H1121"]],[3,5,["H669"]],[5,6,["H1954"]],[6,8,["H1121"]],[8,10,["H5812"]],[10,13,["H2677"]],[13,14,["H7626"]],[14,16,["H4519"]],[16,17,["H3100"]],[17,19,["H1121"]],[19,21,["H6305"]]]},{"k":11130,"v":[[0,3,["H2677"]],[3,6,["H4519"]],[6,8,["H1568"]],[8,9,["H3035"]],[9,11,["H1121"]],[11,13,["H2148"]],[13,15,["H1144"]],[15,16,["H3300"]],[16,18,["H1121"]],[18,20,["H74"]]]},{"k":11131,"v":[[0,2,["H1835"]],[2,3,["H5832"]],[3,5,["H1121"]],[5,7,["H3395"]],[7,8,["H428"]],[8,11,["H8269"]],[11,14,["H7626"]],[14,16,["H3478"]]]},{"k":11132,"v":[[0,2,["H1732"]],[2,3,["H5375"]],[3,4,["H3808"]],[4,6,["H4557"]],[6,12,["H4480","H1121","H6242","H8141"]],[12,14,["H4295"]],[14,15,["H3588"]],[15,17,["H3068"]],[17,19,["H559"]],[19,22,["H7235","(H853)"]],[22,23,["H3478"]],[23,27,["H3556"]],[27,30,["H8064"]]]},{"k":11133,"v":[[0,1,["H3097"]],[1,3,["H1121"]],[3,5,["H6870"]],[5,6,["H2490"]],[6,8,["H4487"]],[8,11,["H3615"]],[11,12,["H3808"]],[12,15,["H1961"]],[15,16,["H7110"]],[16,18,["H2063"]],[18,19,["H5921"]],[19,20,["H3478"]],[20,21,["H3808"]],[21,24,["H4557"]],[24,25,["H5927"]],[25,28,["H4557"]],[28,31,["H1697","H3117"]],[31,33,["H4428"]],[33,34,["H1732"]]]},{"k":11134,"v":[[0,2,["H5921"]],[2,4,["H4428"]],[4,5,["H214"]],[5,7,["H5820"]],[7,9,["H1121"]],[9,11,["H5717"]],[11,13,["H5921"]],[13,15,["H214"]],[15,18,["H7704"]],[18,21,["H5892"]],[21,25,["H3723"]],[25,29,["H4026"]],[29,31,["H3083"]],[31,33,["H1121"]],[33,35,["H5818"]]]},{"k":11135,"v":[[0,2,["H5921"]],[2,5,["H6213"]],[5,7,["H4399"]],[7,10,["H7704"]],[10,12,["H5656"]],[12,15,["H127"]],[15,17,["H5836"]],[17,19,["H1121"]],[19,21,["H3620"]]]},{"k":11136,"v":[[0,2,["H5921"]],[2,4,["H3754"]],[4,6,["H8096"]],[6,8,["H7435"]],[8,9,["H5921"]],[9,14,["H7945","H3754"]],[14,17,["H3196"]],[17,18,["H214"]],[18,20,["H2067"]],[20,22,["H8225"]]]},{"k":11137,"v":[[0,2,["H5921"]],[2,5,["H2132"]],[5,9,["H8256"]],[9,10,["H834"]],[10,15,["H8219"]],[15,17,["H1177"]],[17,19,["H1451"]],[19,21,["H5921"]],[21,23,["H214"]],[23,25,["H8081"]],[25,27,["H3135"]]]},{"k":11138,"v":[[0,2,["H5921"]],[2,4,["H1241"]],[4,6,["H7462"]],[6,8,["H8289"]],[8,10,["H7861"]],[10,12,["H8290"]],[12,14,["H5921"]],[14,16,["H1241"]],[16,21,["H6010"]],[21,23,["H8202"]],[23,25,["H1121"]],[25,27,["H5724"]]]},{"k":11139,"v":[[0,1,["H5921"]],[1,3,["H1581"]],[3,6,["H179"]],[6,8,["H3458"]],[8,10,["H5921"]],[10,12,["H860"]],[12,14,["H3165"]],[14,16,["H4824"]]]},{"k":11140,"v":[[0,2,["H5921"]],[2,4,["H6629"]],[4,6,["H3151"]],[6,8,["H1905"]],[8,9,["H3605"]],[9,10,["H428"]],[10,13,["H8269"]],[13,16,["H7399"]],[16,17,["H834"]],[17,19,["H4428"]],[19,20,["H1732"]]]},{"k":11141,"v":[[0,2,["H3083"]],[2,3,["H1732"]],[3,4,["H1730"]],[4,7,["H3289"]],[7,9,["H995"]],[9,10,["H376"]],[10,13,["H5608"]],[13,15,["H3171"]],[15,17,["H1121"]],[17,19,["H2453"]],[19,21,["H5973"]],[21,23,["H4428"]],[23,24,["H1121"]]]},{"k":11142,"v":[[0,2,["H302"]],[2,5,["H4428"]],[5,6,["H3289"]],[6,8,["H2365"]],[8,10,["H757"]],[10,13,["H4428"]],[13,14,["H7453"]]]},{"k":11143,"v":[[0,2,["H310"]],[2,3,["H302"]],[3,5,["H3077"]],[5,7,["H1121"]],[7,9,["H1141"]],[9,11,["H54"]],[11,14,["H8269"]],[14,17,["H4428"]],[17,18,["H6635"]],[18,20,["H3097"]]]},{"k":11144,"v":[[0,2,["H1732"]],[2,3,["H6950","(H853)"]],[3,4,["H3605"]],[4,6,["H8269"]],[6,8,["H3478"]],[8,10,["H8269"]],[10,13,["H7626"]],[13,16,["H8269"]],[16,19,["H4256"]],[19,21,["H8334","(H853)"]],[21,24,["H4428"]],[24,29,["H8269"]],[29,32,["H505"]],[32,34,["H8269"]],[34,37,["H3967"]],[37,40,["H8269"]],[40,42,["H3605"]],[42,44,["H7399"]],[44,46,["H4735"]],[46,49,["H4428"]],[49,53,["H1121"]],[53,54,["H5973"]],[54,56,["H5631"]],[56,61,["H1368"]],[61,64,["H3605"]],[64,66,["H2428"]],[66,67,["H1368"]],[67,68,["H413"]],[68,69,["H3389"]]]},{"k":11145,"v":[[0,2,["H1732"]],[2,4,["H4428"]],[4,6,["H6965"]],[6,7,["H5921"]],[7,9,["H7272"]],[9,11,["H559"]],[11,12,["H8085"]],[12,15,["H251"]],[15,18,["H5971"]],[18,22,["H589"]],[22,24,["H5973"]],[24,26,["H3824"]],[26,28,["H1129"]],[28,30,["H1004"]],[30,32,["H4496"]],[32,35,["H727"]],[35,38,["H1285"]],[38,41,["H3068"]],[41,45,["H1916","H7272"]],[45,48,["H430"]],[48,52,["H3559"]],[52,55,["H1129"]]]},{"k":11146,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,8,["H3808"]],[8,9,["H1129"]],[9,11,["H1004"]],[11,14,["H8034"]],[14,15,["H3588"]],[15,16,["H859"]],[16,20,["H376"]],[20,22,["H4421"]],[22,25,["H8210"]],[25,26,["H1818"]]]},{"k":11147,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,6,["H3478"]],[6,7,["H977"]],[7,10,["H4480","H3605"]],[10,12,["H1004"]],[12,15,["H1"]],[15,17,["H1961"]],[17,18,["H4428"]],[18,19,["H5921"]],[19,20,["H3478"]],[20,22,["H5769"]],[22,23,["H3588"]],[23,26,["H977"]],[26,27,["H3063"]],[27,31,["H5057"]],[31,35,["H1004"]],[35,37,["H3063"]],[37,39,["H1004"]],[39,42,["H1"]],[42,46,["H1121"]],[46,49,["H1"]],[49,51,["H7521"]],[51,56,["H4427"]],[56,57,["H5921"]],[57,58,["H3605"]],[58,59,["H3478"]]]},{"k":11148,"v":[[0,3,["H4480","H3605"]],[3,5,["H1121"]],[5,6,["H3588"]],[6,8,["H3068"]],[8,10,["H5414"]],[10,12,["H7227"]],[12,13,["H1121"]],[13,16,["H977"]],[16,17,["H8010"]],[17,19,["H1121"]],[19,21,["H3427"]],[21,22,["H5921"]],[22,24,["H3678"]],[24,27,["H4438"]],[27,30,["H3068"]],[30,31,["H5921"]],[31,32,["H3478"]]]},{"k":11149,"v":[[0,3,["H559"]],[3,6,["H8010"]],[6,8,["H1121"]],[8,9,["H1931"]],[9,11,["H1129"]],[11,13,["H1004"]],[13,16,["H2691"]],[16,17,["H3588"]],[17,20,["H977"]],[20,25,["H1121"]],[25,27,["H589"]],[27,29,["H1961"]],[29,31,["H1"]]]},{"k":11150,"v":[[0,4,["H3559","(H853)"]],[4,6,["H4438"]],[6,8,["H5704","H5769"]],[8,9,["H518"]],[9,12,["H2388"]],[12,14,["H6213"]],[14,16,["H4687"]],[16,19,["H4941"]],[19,22,["H2088"]],[22,23,["H3117"]]]},{"k":11151,"v":[[0,1,["H6258"]],[1,5,["H5869"]],[5,7,["H3605"]],[7,8,["H3478"]],[8,10,["H6951"]],[10,13,["H3068"]],[13,17,["H241"]],[17,20,["H430"]],[20,21,["H8104"]],[21,23,["H1875"]],[23,25,["H3605"]],[25,27,["H4687"]],[27,30,["H3068"]],[30,32,["H430"]],[32,33,["H4616"]],[33,36,["H3423","(H853)"]],[36,38,["H2896"]],[38,39,["H776"]],[39,45,["H5157"]],[45,48,["H1121"]],[48,49,["H310"]],[49,52,["H5704","H5769"]]]},{"k":11152,"v":[[0,2,["H859"]],[2,3,["H8010"]],[3,5,["H1121"]],[5,6,["H3045"]],[6,7,["(H853)"]],[7,9,["H430"]],[9,12,["H1"]],[12,14,["H5647"]],[14,18,["H8003"]],[18,19,["H3820"]],[19,23,["H2655"]],[23,24,["H5315"]],[24,25,["H3588"]],[25,27,["H3068"]],[27,28,["H1875"]],[28,29,["H3605"]],[29,30,["H3824"]],[30,32,["H995"]],[32,33,["H3605"]],[33,35,["H3336"]],[35,38,["H4284"]],[38,39,["H518"]],[39,41,["H1875"]],[41,46,["H4672"]],[46,50,["H518"]],[50,52,["H5800"]],[52,58,["H2186"]],[58,60,["H5704"]]]},{"k":11153,"v":[[0,2,["H7200"]],[2,3,["H6258"]],[3,4,["H3588"]],[4,6,["H3068"]],[6,8,["H977"]],[8,11,["H1129"]],[11,13,["H1004"]],[13,16,["H4720"]],[16,18,["H2388"]],[18,20,["H6213"]],[20,21,[]]]},{"k":11154,"v":[[0,2,["H1732"]],[2,3,["H5414"]],[3,5,["H8010"]],[5,7,["H1121","(H853)"]],[7,9,["H8403"]],[9,12,["H197"]],[12,16,["H1004"]],[16,21,["H1597"]],[21,27,["H5944"]],[27,32,["H6442"]],[32,33,["H2315"]],[33,38,["H1004"]],[38,42,["H3727"]]]},{"k":11155,"v":[[0,3,["H8403"]],[3,5,["H3605"]],[5,6,["H834"]],[6,8,["H1961"]],[8,11,["H7307"]],[11,12,["H5973"]],[12,14,["H2691"]],[14,17,["H1004"]],[17,20,["H3068"]],[20,23,["H3605"]],[23,25,["H3957"]],[25,27,["H5439"]],[27,30,["H214"]],[30,33,["H1004"]],[33,35,["H430"]],[35,39,["H214"]],[39,43,["H6944"]]]},{"k":11156,"v":[[0,4,["H4256"]],[4,7,["H3548"]],[7,10,["H3881"]],[10,13,["H3605"]],[13,15,["H4399"]],[15,18,["H5656"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,27,["H3605"]],[27,29,["H3627"]],[29,31,["H5656"]],[31,34,["H1004"]],[34,37,["H3068"]]]},{"k":11157,"v":[[0,4,["H2091"]],[4,6,["H4948"]],[6,10,["H2091"]],[10,12,["H3605"]],[12,13,["H3627"]],[13,18,["H5656","H5656"]],[18,22,["H3605"]],[22,23,["H3627"]],[23,25,["H3701"]],[25,27,["H4948"]],[27,29,["H3605"]],[29,30,["H3627"]],[30,35,["H5656","H5656"]]]},{"k":11158,"v":[[0,3,["H4948"]],[3,6,["H4501"]],[6,8,["H2091"]],[8,12,["H5216"]],[12,14,["H2091"]],[14,16,["H4948"]],[16,19,["H4501","H4501"]],[19,23,["H5216"]],[23,28,["H4501"]],[28,30,["H3701"]],[30,32,["H4948"]],[32,36,["H4501"]],[36,41,["H5216"]],[41,46,["H5656"]],[46,49,["H4501","H4501"]]]},{"k":11159,"v":[[0,3,["H4948"]],[3,6,["H2091"]],[6,9,["H7979"]],[9,11,["H4635"]],[11,14,["H7979","H7979"]],[14,17,["H3701"]],[17,20,["H7979"]],[20,22,["H3701"]]]},{"k":11160,"v":[[0,2,["H2889"]],[2,3,["H2091"]],[3,6,["H4207"]],[6,9,["H4219"]],[9,12,["H7184"]],[12,16,["H2091"]],[16,17,["H3713"]],[17,22,["H4948"]],[22,25,["H3713","H3713"]],[25,30,["H4948"]],[30,33,["H3713","H3713","H3713"]],[33,35,["H3701"]]]},{"k":11161,"v":[[0,4,["H4196"]],[4,6,["H7004"]],[6,7,["H2212"]],[7,8,["H2091"]],[8,10,["H4948"]],[10,12,["H2091"]],[12,15,["H8403"]],[15,18,["H4818"]],[18,21,["H3742"]],[21,24,["H6566"]],[24,28,["H5526"]],[28,30,["H727"]],[30,33,["H1285"]],[33,36,["H3068"]]]},{"k":11162,"v":[[0,1,["H3605"]],[1,6,["H3068"]],[6,9,["H7919"]],[9,11,["H3791"]],[11,14,["H4480","H3027"]],[14,15,["H5921"]],[15,18,["H3605"]],[18,20,["H4399"]],[20,23,["H8403"]]]},{"k":11163,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H8010"]],[5,7,["H1121"]],[7,9,["H2388"]],[9,13,["H553"]],[13,15,["H6213"]],[15,17,["H3372"]],[17,18,["H408"]],[18,19,["H408"]],[19,21,["H2865"]],[21,22,["H3588"]],[22,24,["H3068"]],[24,25,["H430"]],[25,28,["H430"]],[28,31,["H5973"]],[31,35,["H3808"]],[35,36,["H7503"]],[36,38,["H3808"]],[38,39,["H5800"]],[39,41,["H5704"]],[41,44,["H3615"]],[44,45,["H3605"]],[45,47,["H4399"]],[47,50,["H5656"]],[50,53,["H1004"]],[53,56,["H3068"]]]},{"k":11164,"v":[[0,2,["H2009"]],[2,4,["H4256"]],[4,7,["H3548"]],[7,10,["H3881"]],[10,18,["H3605"]],[18,20,["H5656"]],[20,23,["H1004"]],[23,25,["H430"]],[25,30,["H5973"]],[30,34,["H3605"]],[34,36,["H4399"]],[36,37,["H3605"]],[37,38,["H5081"]],[38,40,["H2451"]],[40,43,["H3605"]],[43,45,["H5656"]],[45,48,["H8269"]],[48,50,["H3605"]],[50,52,["H5971"]],[52,55,["H3605"]],[55,58,["H1697"]]]},{"k":11165,"v":[[0,2,["H1732"]],[2,4,["H4428"]],[4,5,["H559"]],[5,7,["H3605"]],[7,9,["H6951"]],[9,10,["H8010"]],[10,12,["H1121"]],[12,14,["H259"]],[14,15,["H430"]],[15,17,["H977"]],[17,20,["H5288"]],[20,22,["H7390"]],[22,25,["H4399"]],[25,27,["H1419"]],[27,28,["H3588"]],[28,30,["H1002"]],[30,32,["H3808"]],[32,34,["H120"]],[34,35,["H3588"]],[35,38,["H3068"]],[38,39,["H430"]]]},{"k":11166,"v":[[0,4,["H3559"]],[4,6,["H3605"]],[6,8,["H3581"]],[8,11,["H1004"]],[11,14,["H430"]],[14,16,["H2091"]],[16,23,["H2091"]],[23,26,["H3701"]],[26,30,["H3701"]],[30,33,["H5178"]],[33,37,["H5178"]],[37,39,["H1270"]],[39,43,["H1270"]],[43,45,["H6086"]],[45,49,["H6086"]],[49,50,["H7718"]],[50,51,["H68"]],[51,56,["H4394"]],[56,57,["H6320"]],[57,58,["H68"]],[58,62,["H7553"]],[62,65,["H3605"]],[65,67,["H3368"]],[67,68,["H68"]],[68,70,["H7893"]],[70,71,["H68"]],[71,73,["H7230"]]]},{"k":11167,"v":[[0,1,["H5750"]],[1,7,["H7521"]],[7,10,["H1004"]],[10,13,["H430"]],[13,15,["H3426"]],[15,20,["H5459"]],[20,22,["H2091"]],[22,24,["H3701"]],[24,28,["H5414"]],[28,31,["H1004"]],[31,34,["H430"]],[34,35,["H4605"]],[35,38,["H4480","H3605"]],[38,42,["H3559"]],[42,45,["H6944"]],[45,46,["H1004"]]]},{"k":11168,"v":[[0,2,["H7969"]],[2,3,["H505"]],[3,4,["H3603"]],[4,6,["H2091"]],[6,9,["H4480","H2091"]],[9,11,["H211"]],[11,13,["H7651"]],[13,14,["H505"]],[14,15,["H3603"]],[15,17,["H2212"]],[17,18,["H3701"]],[18,20,["H2902"]],[20,22,["H7023"]],[22,25,["H1004"]],[25,26,[]]]},{"k":11169,"v":[[0,2,["H2091"]],[2,6,["H2091"]],[6,9,["H3701"]],[9,13,["H3701"]],[13,17,["H3605"]],[17,19,["H4399"]],[19,25,["H3027"]],[25,27,["H2796"]],[27,29,["H4310"]],[29,32,["H5068"]],[32,36,["H4390","H3027"]],[36,38,["H3117"]],[38,41,["H3068"]]]},{"k":11170,"v":[[0,3,["H8269"]],[3,6,["H1"]],[6,8,["H8269"]],[8,11,["H7626"]],[11,13,["H3478"]],[13,16,["H8269"]],[16,18,["H505"]],[18,21,["H3967"]],[21,24,["H8269"]],[24,27,["H4428"]],[27,28,["H4399"]],[28,30,["H5068"]]]},{"k":11171,"v":[[0,2,["H5414"]],[2,5,["H5656"]],[5,8,["H1004"]],[8,10,["H430"]],[10,12,["H2091"]],[12,13,["H2568"]],[13,14,["H505"]],[14,15,["H3603"]],[15,18,["H7239"]],[18,19,["H150"]],[19,22,["H3701"]],[22,23,["H6235"]],[23,24,["H505"]],[24,25,["H3603"]],[25,28,["H5178"]],[28,30,["H7239","H8083","H505"]],[30,31,["H3603"]],[31,34,["H3967"]],[34,35,["H505"]],[35,36,["H3603"]],[36,38,["H1270"]]]},{"k":11172,"v":[[0,3,["H854"]],[3,6,["H68"]],[6,8,["H4672"]],[8,9,["H5414"]],[9,13,["H214"]],[13,16,["H1004"]],[16,19,["H3068"]],[19,20,["H5921"]],[20,22,["H3027"]],[22,24,["H3171"]],[24,26,["H1649"]]]},{"k":11173,"v":[[0,3,["H5971"]],[3,4,["H8055"]],[4,5,["H5921"]],[5,9,["H5068"]],[9,10,["H3588"]],[10,12,["H8003"]],[12,13,["H3820"]],[13,16,["H5068"]],[16,19,["H3068"]],[19,21,["H1732"]],[21,23,["H4428"]],[23,24,["H1571"]],[24,25,["H8055"]],[25,27,["H1419"]],[27,28,["H8057"]]]},{"k":11174,"v":[[0,2,["H1732"]],[2,3,["H1288","(H853)"]],[3,5,["H3068"]],[5,6,["H5869"]],[6,7,["H3605"]],[7,9,["H6951"]],[9,11,["H1732"]],[11,12,["H559"]],[12,13,["H1288"]],[13,15,["H859"]],[15,16,["H3068"]],[16,17,["H430"]],[17,19,["H3478"]],[19,21,["H1"]],[21,23,["H4480","H5769"]],[23,25,["H5704","H5769"]]]},{"k":11175,"v":[[0,3,["H3068"]],[3,6,["H1420"]],[6,9,["H1369"]],[9,12,["H8597"]],[12,15,["H5331"]],[15,18,["H1935"]],[18,19,["H3588"]],[19,20,["H3605"]],[20,25,["H8064"]],[25,29,["H776"]],[29,35,["H4467"]],[35,37,["H3068"]],[37,41,["H4984"]],[41,43,["H7218"]],[43,45,["H3605"]]]},{"k":11176,"v":[[0,2,["H6239"]],[2,4,["H3519"]],[4,6,["H4480","H6440"]],[6,9,["H859"]],[9,10,["H4910"]],[10,12,["H3605"]],[12,16,["H3027"]],[16,18,["H3581"]],[18,20,["H1369"]],[20,24,["H3027"]],[24,29,["H1431"]],[29,33,["H2388"]],[33,35,["H3605"]]]},{"k":11177,"v":[[0,1,["H6258"]],[1,4,["H430"]],[4,5,["H587"]],[5,6,["H3034"]],[6,9,["H1984"]],[9,11,["H8597"]],[11,12,["H8034"]]]},{"k":11178,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,4,["H589"]],[4,6,["H4310"]],[6,9,["H5971"]],[9,10,["H3588"]],[10,14,["H6113","H3581"]],[14,18,["H5068"]],[18,21,["H2063"]],[21,22,["H3588"]],[22,24,["H3605"]],[24,26,["H4480"]],[26,31,["H4480","H3027"]],[31,34,["H5414"]],[34,35,[]]]},{"k":11179,"v":[[0,1,["H3588"]],[1,2,["H587"]],[2,4,["H1616"]],[4,5,["H6440"]],[5,8,["H8453"]],[8,11,["H3605"]],[11,13,["H1"]],[13,15,["H3117"]],[15,16,["H5921"]],[16,18,["H776"]],[18,22,["H6738"]],[22,26,["H369"]],[26,27,["H4723"]]]},{"k":11180,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,5,["H3605"]],[5,6,["H2088"]],[6,7,["H1995"]],[7,8,["H834"]],[8,11,["H3559"]],[11,13,["H1129"]],[13,16,["H1004"]],[16,19,["H6944"]],[19,20,["H8034"]],[20,24,["H4480","H3027"]],[24,27,["H3605"]],[27,29,[]]]},{"k":11181,"v":[[0,2,["H3045"]],[2,5,["H430"]],[5,6,["H3588"]],[6,7,["H859"]],[7,8,["H974"]],[8,10,["H3824"]],[10,13,["H7521"]],[13,15,["H3476"]],[15,18,["H589"]],[18,21,["H4339"]],[21,24,["H3824"]],[24,28,["H5068"]],[28,29,["H3605"]],[29,31,["H428"]],[31,33,["H6258"]],[33,36,["H7200"]],[36,38,["H8057"]],[38,40,["H5971"]],[40,43,["H4672"]],[43,44,["H6311"]],[44,47,["H5068"]],[47,49,[]]]},{"k":11182,"v":[[0,2,["H3068"]],[2,3,["H430"]],[3,5,["H85"]],[5,6,["H3327"]],[6,9,["H3478"]],[9,11,["H1"]],[11,12,["H8104"]],[12,13,["H2063"]],[13,15,["H5769"]],[15,18,["H3336"]],[18,21,["H4284"]],[21,24,["H3824"]],[24,27,["H5971"]],[27,29,["H3559"]],[29,31,["H3824"]],[31,32,["H413"]],[32,33,[]]]},{"k":11183,"v":[[0,2,["H5414"]],[2,4,["H8010"]],[4,6,["H1121"]],[6,8,["H8003"]],[8,9,["H3824"]],[9,11,["H8104"]],[11,13,["H4687"]],[13,15,["H5715"]],[15,18,["H2706"]],[18,21,["H6213"]],[21,22,["H3605"]],[22,27,["H1129"]],[27,29,["H1002"]],[29,32,["H834"]],[32,36,["H3559"]]]},{"k":11184,"v":[[0,2,["H1732"]],[2,3,["H559"]],[3,5,["H3605"]],[5,7,["H6951"]],[7,8,["H4994"]],[8,9,["H1288","(H853)"]],[9,11,["H3068"]],[11,13,["H430"]],[13,15,["H3605"]],[15,17,["H6951"]],[17,18,["H1288"]],[18,20,["H3068"]],[20,21,["H430"]],[21,24,["H1"]],[24,29,["H6915"]],[29,31,["H7812"]],[31,33,["H3068"]],[33,36,["H4428"]]]},{"k":11185,"v":[[0,3,["H2076"]],[3,4,["H2077"]],[4,7,["H3068"]],[7,9,["H5927"]],[9,11,["H5930"]],[11,14,["H3068"]],[14,17,["H4283"]],[17,19,["H1931"]],[19,20,["H3117"]],[20,23,["H505"]],[23,24,["H6499"]],[24,26,["H505"]],[26,27,["H352"]],[27,30,["H505"]],[30,31,["H3532"]],[31,35,["H5262"]],[35,37,["H2077"]],[37,39,["H7230"]],[39,41,["H3605"]],[41,42,["H3478"]]]},{"k":11186,"v":[[0,3,["H398"]],[3,5,["H8354"]],[5,6,["H6440"]],[6,8,["H3068"]],[8,10,["H1931"]],[10,11,["H3117"]],[11,13,["H1419"]],[13,14,["H8057"]],[14,17,["H4427"]],[17,18,["H8010"]],[18,20,["H1121"]],[20,22,["H1732"]],[22,26,["H8145"]],[26,28,["H4886"]],[28,32,["H3068"]],[32,37,["H5057"]],[37,39,["H6659"]],[39,42,["H3548"]]]},{"k":11187,"v":[[0,2,["H8010"]],[2,3,["H3427"]],[3,4,["H5921"]],[4,6,["H3678"]],[6,9,["H3068"]],[9,11,["H4428"]],[11,13,["H8478"]],[13,14,["H1732"]],[14,16,["H1"]],[16,18,["H6743"]],[18,20,["H3605"]],[20,21,["H3478"]],[21,22,["H8085","H413"]],[22,23,[]]]},{"k":11188,"v":[[0,2,["H3605"]],[2,4,["H8269"]],[4,8,["H1368"]],[8,10,["H3605"]],[10,12,["H1121"]],[12,13,["H1571"]],[13,15,["H4428"]],[15,16,["H1732"]],[16,17,["H5414","H3027"]],[17,19,["H8478"]],[19,20,["H8010"]],[20,22,["H4428"]]]},{"k":11189,"v":[[0,3,["H3068"]],[3,4,["H1431","(H853)"]],[4,5,["H8010"]],[5,6,["H4605"]],[6,9,["H5869"]],[9,11,["H3605"]],[11,12,["H3478"]],[12,14,["H5414"]],[14,15,["H5921"]],[15,18,["H4438"]],[18,19,["H1935"]],[19,20,["H834"]],[20,22,["H3808"]],[22,23,["H1961"]],[23,24,["H5921"]],[24,25,["H3605"]],[25,26,["H4428"]],[26,27,["H6440"]],[27,29,["H5921"]],[29,30,["H3478"]]]},{"k":11190,"v":[[0,2,["H1732"]],[2,4,["H1121"]],[4,6,["H3448"]],[6,7,["H4427"]],[7,8,["H5921"]],[8,9,["H3605"]],[9,10,["H3478"]]]},{"k":11191,"v":[[0,3,["H3117"]],[3,4,["H834"]],[4,6,["H4427"]],[6,7,["H5921"]],[7,8,["H3478"]],[8,10,["H705"]],[10,11,["H8141"]],[11,12,["H7651"]],[12,13,["H8141"]],[13,14,["H4427"]],[14,17,["H2275"]],[17,19,["H7970"]],[19,21,["H7969"]],[21,23,["H4427"]],[23,26,["H3389"]]]},{"k":11192,"v":[[0,3,["H4191"]],[3,8,["H7872","H2896"]],[8,9,["H7649"]],[9,11,["H3117"]],[11,12,["H6239"]],[12,14,["H3519"]],[14,16,["H8010"]],[16,18,["H1121"]],[18,19,["H4427"]],[19,22,["H8478"]]]},{"k":11193,"v":[[0,3,["H1697"]],[3,5,["H1732"]],[5,7,["H4428"]],[7,8,["H7223"]],[8,10,["H314"]],[10,11,["H2009"]],[11,14,["H3789"]],[14,15,["H5921"]],[15,17,["H1697"]],[17,19,["H8050"]],[19,21,["H7203"]],[21,23,["H5921"]],[23,25,["H1697"]],[25,27,["H5416"]],[27,29,["H5030"]],[29,31,["H5921"]],[31,33,["H1697"]],[33,35,["H1410"]],[35,37,["H2374"]]]},{"k":11194,"v":[[0,1,["H5973"]],[1,2,["H3605"]],[2,4,["H4438"]],[4,7,["H1369"]],[7,10,["H6256"]],[10,11,["H834"]],[11,13,["H5674","H5921"]],[13,16,["H5921"]],[16,17,["H3478"]],[17,19,["H5921"]],[19,20,["H3605"]],[20,22,["H4467"]],[22,25,["H776"]]]},{"k":11195,"v":[[0,2,["H8010"]],[2,4,["H1121"]],[4,6,["H1732"]],[6,8,["H2388"]],[8,9,["H5921"]],[9,11,["H4438"]],[11,14,["H3068"]],[14,16,["H430"]],[16,18,["H5973"]],[18,21,["H1431"]],[21,23,["H4605"]]]},{"k":11196,"v":[[0,2,["H8010"]],[2,3,["H559"]],[3,5,["H3605"]],[5,6,["H3478"]],[6,9,["H8269"]],[9,11,["H505"]],[11,14,["H3967"]],[14,18,["H8199"]],[18,21,["H3605"]],[21,22,["H5387"]],[22,24,["H3605"]],[24,25,["H3478"]],[25,27,["H7218"]],[27,30,["H1"]]]},{"k":11197,"v":[[0,2,["H8010"]],[2,4,["H3605"]],[4,6,["H6951"]],[6,7,["H5973"]],[7,9,["H1980"]],[9,13,["H1116"]],[13,14,["H834"]],[14,17,["H1391"]],[17,18,["H3588"]],[18,19,["H8033"]],[19,20,["H1961"]],[20,22,["H168"]],[22,25,["H4150"]],[25,27,["H430"]],[27,28,["H834"]],[28,29,["H4872"]],[29,31,["H5650"]],[31,34,["H3068"]],[34,36,["H6213"]],[36,39,["H4057"]]]},{"k":11198,"v":[[0,1,["H61"]],[1,3,["H727"]],[3,5,["H430"]],[5,7,["H1732"]],[7,9,["H5927"]],[9,11,["H4480","H7157"]],[11,16,["H1732"]],[16,18,["H3559"]],[18,21,["H3588"]],[21,24,["H5186"]],[24,26,["H168"]],[26,30,["H3389"]]]},{"k":11199,"v":[[0,3,["H5178"]],[3,4,["H4196"]],[4,5,["H834"]],[5,6,["H1212"]],[6,8,["H1121"]],[8,10,["H221"]],[10,12,["H1121"]],[12,14,["H2354"]],[14,16,["H6213"]],[16,18,["H7760"]],[18,19,["H6440"]],[19,21,["H4908"]],[21,24,["H3068"]],[24,26,["H8010"]],[26,29,["H6951"]],[29,30,["H1875"]],[30,32,[]]]},{"k":11200,"v":[[0,2,["H8010"]],[2,4,["H5927"]],[4,5,["H8033"]],[5,6,["H5921"]],[6,8,["H5178"]],[8,9,["H4196"]],[9,10,["H6440"]],[10,12,["H3068"]],[12,13,["H834"]],[13,17,["H168"]],[17,20,["H4150"]],[20,22,["H5927"]],[22,24,["H505"]],[24,26,["H5930"]],[26,27,["H5921"]],[27,28,[]]]},{"k":11201,"v":[[0,2,["H1931"]],[2,3,["H3915"]],[3,5,["H430"]],[5,6,["H7200"]],[6,8,["H8010"]],[8,10,["H559"]],[10,13,["H7592"]],[13,14,["H4100"]],[14,17,["H5414"]],[17,18,[]]]},{"k":11202,"v":[[0,2,["H8010"]],[2,3,["H559"]],[3,5,["H430"]],[5,6,["H859"]],[6,8,["H6213"]],[8,9,["H1419"]],[9,10,["H2617"]],[10,11,["H5973"]],[11,12,["H1732"]],[12,14,["H1"]],[14,20,["H4427"]],[20,23,["H8478"]]]},{"k":11203,"v":[[0,1,["H6258"]],[1,3,["H3068"]],[3,4,["H430"]],[4,7,["H1697"]],[7,8,["H5973"]],[8,9,["H1732"]],[9,11,["H1"]],[11,13,["H539"]],[13,14,["H3588"]],[14,15,["H859"]],[15,19,["H4427"]],[19,20,["H5921"]],[20,22,["H5971"]],[22,25,["H6083"]],[25,28,["H776"]],[28,30,["H7227"]]]},{"k":11204,"v":[[0,1,["H5414"]],[1,3,["H6258"]],[3,4,["H2451"]],[4,6,["H4093"]],[6,11,["H3318"]],[11,14,["H935"]],[14,15,["H6440"]],[15,16,["H2088"]],[16,17,["H5971"]],[17,18,["H3588"]],[18,19,["H4310"]],[19,21,["H8199"]],[21,22,["H2088","(H853)"]],[22,24,["H5971"]],[24,28,["H1419"]]]},{"k":11205,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,5,["H8010"]],[5,6,["H3282","H834"]],[6,7,["H2063"]],[7,8,["H1961"]],[8,9,["H5973"]],[9,11,["H3824"]],[11,15,["H3808"]],[15,16,["H7592"]],[16,17,["H6239"]],[17,18,["H5233"]],[18,20,["H3519"]],[20,23,["H5315"]],[23,26,["H8130"]],[26,27,["H3808"]],[27,28,["H1571"]],[28,30,["H7592"]],[30,32,["H7227","H3117"]],[32,35,["H7592"]],[35,36,["H2451"]],[36,38,["H4093"]],[38,41,["H834"]],[41,44,["H8199","(H853)"]],[44,46,["H5971"]],[46,47,["H5921"]],[47,48,["H834"]],[48,53,["H4427"]]]},{"k":11206,"v":[[0,1,["H2451"]],[1,3,["H4093"]],[3,5,["H5414"]],[5,11,["H5414"]],[11,13,["H6239"]],[13,15,["H5233"]],[15,17,["H3519"]],[17,19,["H834","H3651"]],[19,20,["H3808"]],[20,23,["H4428"]],[23,25,["H1961"]],[25,26,["H834"]],[26,29,["H6440"]],[29,31,["H3808"]],[31,35,["H310"]],[35,37,["H1961"]],[37,39,["H3651"]]]},{"k":11207,"v":[[0,2,["H8010"]],[2,3,["H935"]],[3,10,["H1116"]],[10,11,["H834"]],[11,14,["H1391"]],[14,16,["H3389"]],[16,18,["H4480","H6440"]],[18,20,["H168"]],[20,23,["H4150"]],[23,25,["H4427"]],[25,26,["H5921"]],[26,27,["H3478"]]]},{"k":11208,"v":[[0,2,["H8010"]],[2,3,["H622"]],[3,4,["H7393"]],[4,6,["H6571"]],[6,9,["H1961"]],[9,11,["H505"]],[11,13,["H702"]],[13,14,["H3967"]],[14,15,["H7393"]],[15,17,["H8147","H6240"]],[17,18,["H505"]],[18,19,["H6571"]],[19,22,["H5117"]],[22,25,["H7393"]],[25,26,["H5892"]],[26,28,["H5973"]],[28,30,["H4428"]],[30,32,["H3389"]]]},{"k":11209,"v":[[0,3,["H4428"]],[3,4,["H5414","(H853)"]],[4,5,["H3701"]],[5,7,["H2091"]],[7,9,["H3389"]],[9,13,["H68"]],[13,16,["H730"]],[16,17,["H5414"]],[17,22,["H8256"]],[22,23,["H834"]],[23,27,["H8219"]],[27,29,["H7230"]]]},{"k":11210,"v":[[0,2,["H8010"]],[2,4,["H5483"]],[4,6,["H4161"]],[6,8,["H4480","H4714"]],[8,11,["H4723"]],[11,13,["H4428"]],[13,14,["H5503"]],[14,15,["H3947"]],[15,18,["H4723"]],[18,21,["H4242"]]]},{"k":11211,"v":[[0,4,["H5927"]],[4,7,["H3318"]],[7,10,["H4480","H4714"]],[10,12,["H4818"]],[12,14,["H8337"]],[14,15,["H3967"]],[15,18,["H3701"]],[18,21,["H5483"]],[21,24,["H3967"]],[24,26,["H2572"]],[26,28,["H3651"]],[28,31,["H3318"]],[31,34,["H3605"]],[34,36,["H4428"]],[36,39,["H2850"]],[39,43,["H4428"]],[43,45,["H758"]],[45,48,["H3027"]]]},{"k":11212,"v":[[0,2,["H8010"]],[2,3,["H559"]],[3,5,["H1129"]],[5,7,["H1004"]],[7,10,["H8034"]],[10,13,["H3068"]],[13,16,["H1004"]],[16,19,["H4438"]]]},{"k":11213,"v":[[0,2,["H8010"]],[2,4,["H5608"]],[4,7,["H7657"]],[7,8,["H505"]],[8,9,["H376"]],[9,12,["H5449"]],[12,14,["H8084"]],[14,15,["H505","(H376)"]],[15,17,["H2672"]],[17,20,["H2022"]],[20,22,["H7969"]],[22,23,["H505"]],[23,25,["H8337"]],[25,26,["H3967"]],[26,28,["H5329","H5921"]],[28,29,[]]]},{"k":11214,"v":[[0,2,["H8010"]],[2,3,["H7971"]],[3,4,["H413"]],[4,5,["H2361"]],[5,7,["H4428"]],[7,9,["H6865"]],[9,10,["H559"]],[10,11,["H834"]],[11,14,["H6213"]],[14,15,["H5973"]],[15,16,["H1732"]],[16,18,["H1"]],[18,21,["H7971"]],[21,23,["H730"]],[23,25,["H1129"]],[25,28,["H1004"]],[28,30,["H3427"]],[30,36,[]]]},{"k":11215,"v":[[0,1,["H2009"]],[1,2,["H589"]],[2,3,["H1129"]],[3,5,["H1004"]],[5,8,["H8034"]],[8,11,["H3068"]],[11,13,["H430"]],[13,15,["H6942"]],[15,21,["H6999"]],[21,22,["H6440"]],[22,24,["H5561"]],[24,25,["H7004"]],[25,29,["H8548"]],[29,30,["H4635"]],[30,35,["H5930"]],[35,36,["H1242"]],[36,38,["H6153"]],[38,41,["H7676"]],[41,46,["H2320"]],[46,51,["H4150"]],[51,54,["H3068"]],[54,56,["H430"]],[56,57,["H2063"]],[57,62,["H5769"]],[62,63,["H5921"]],[63,64,["H3478"]]]},{"k":11216,"v":[[0,3,["H1004"]],[3,4,["H834"]],[4,5,["H589"]],[5,6,["H1129"]],[6,8,["H1419"]],[8,9,["H3588"]],[9,10,["H1419"]],[10,13,["H430"]],[13,15,["H4480","H3605"]],[15,16,["H430"]]]},{"k":11217,"v":[[0,2,["H4310"]],[2,4,["H6113","H3581"]],[4,6,["H1129"]],[6,9,["H1004"]],[9,10,["H3588"]],[10,12,["H8064"]],[12,14,["H8064"]],[14,16,["H8064"]],[16,17,["H3808"]],[17,18,["H3557"]],[18,20,["H4310"]],[20,22,["H589"]],[22,24,["H834"]],[24,27,["H1129"]],[27,30,["H1004"]],[30,32,["H3588","H518"]],[32,35,["H6999"]],[35,36,["H6440"]],[36,37,[]]]},{"k":11218,"v":[[0,1,["H7971"]],[1,3,["H6258"]],[3,6,["H376"]],[6,7,["H2450"]],[7,9,["H6213"]],[9,11,["H2091"]],[11,14,["H3701"]],[14,17,["H5178"]],[17,20,["H1270"]],[20,23,["H710"]],[23,25,["H3758"]],[25,27,["H8504"]],[27,31,["H3045"]],[31,33,["H6605","H6603"]],[33,34,["H5973"]],[34,37,["H2450"]],[37,38,["H834"]],[38,40,["H5973"]],[40,43,["H3063"]],[43,46,["H3389"]],[46,47,["H834"]],[47,48,["H1732"]],[48,50,["H1"]],[50,52,["H3559"]]]},{"k":11219,"v":[[0,1,["H7971"]],[1,4,["H730"]],[4,5,["H6086"]],[5,7,["H1265"]],[7,10,["H418"]],[10,13,["H4480","H3844"]],[13,14,["H3588"]],[14,15,["H589"]],[15,16,["H3045"]],[16,17,["H834"]],[17,19,["H5650"]],[19,21,["H3045"]],[21,23,["H3772"]],[23,24,["H6086"]],[24,26,["H3844"]],[26,28,["H2009"]],[28,30,["H5650"]],[30,33,["H5973"]],[33,35,["H5650"]]]},{"k":11220,"v":[[0,3,["H3559"]],[3,5,["H6086"]],[5,7,["H7230"]],[7,8,["H3588"]],[8,10,["H1004"]],[10,11,["H834"]],[11,12,["H589"]],[12,16,["H1129"]],[16,19,["H6381"]],[19,20,["H1419"]]]},{"k":11221,"v":[[0,2,["H2009"]],[2,5,["H5414"]],[5,8,["H5650"]],[8,10,["H2404"]],[10,12,["H3772"]],[12,13,["H6086"]],[13,14,["H6242"]],[14,15,["H505"]],[15,16,["H3734"]],[16,18,["H4347"]],[18,19,["H2406"]],[19,21,["H6242"]],[21,22,["H505"]],[22,23,["H3734"]],[23,25,["H8184"]],[25,27,["H6242"]],[27,28,["H505"]],[28,29,["H1324"]],[29,31,["H3196"]],[31,33,["H6242"]],[33,34,["H505"]],[34,35,["H1324"]],[35,37,["H8081"]]]},{"k":11222,"v":[[0,2,["H2361"]],[2,4,["H4428"]],[4,6,["H6865"]],[6,7,["H559"]],[7,9,["H3791"]],[9,12,["H7971"]],[12,13,["H413"]],[13,14,["H8010"]],[14,17,["H3068"]],[17,19,["H160","(H853)"]],[19,21,["H5971"]],[21,24,["H5414"]],[24,26,["H4428"]],[26,27,["H5921"]],[27,28,[]]]},{"k":11223,"v":[[0,1,["H2361"]],[1,2,["H559"]],[2,4,["H1288"]],[4,7,["H3068"]],[7,8,["H430"]],[8,10,["H3478"]],[10,11,["H834"]],[11,12,["H6213","(H853)"]],[12,13,["H8064"]],[13,15,["H776"]],[15,16,["H834"]],[16,18,["H5414"]],[18,20,["H1732"]],[20,22,["H4428"]],[22,24,["H2450"]],[24,25,["H1121"]],[25,26,["H3045"]],[26,28,["H7922"]],[28,30,["H998"]],[30,31,["H834"]],[31,33,["H1129"]],[33,35,["H1004"]],[35,38,["H3068"]],[38,41,["H1004"]],[41,44,["H4438"]]]},{"k":11224,"v":[[0,2,["H6258"]],[2,5,["H7971"]],[5,7,["H2450"]],[7,8,["H376"]],[8,9,["H3045"]],[9,11,["H998"]],[11,13,["H2361"]],[13,15,["H1"]]]},{"k":11225,"v":[[0,2,["H1121"]],[2,5,["H802"]],[5,6,["H4480"]],[6,8,["H1323"]],[8,10,["H1835"]],[10,13,["H1"]],[13,16,["H376"]],[16,18,["H6876"]],[18,19,["H3045"]],[19,21,["H6213"]],[21,23,["H2091"]],[23,26,["H3701"]],[26,28,["H5178"]],[28,30,["H1270"]],[30,32,["H68"]],[32,35,["H6086"]],[35,37,["H713"]],[37,39,["H8504"]],[39,43,["H948"]],[43,46,["H3758"]],[46,49,["H6605"]],[49,51,["H3605"]],[51,53,["H6603"]],[53,57,["H2803"]],[57,58,["H3605"]],[58,59,["H4284"]],[59,60,["H834"]],[60,63,["H5414"]],[63,66,["H5973"]],[66,69,["H2450"]],[69,74,["H2450"]],[74,77,["H113"]],[77,78,["H1732"]],[78,80,["H1"]]]},{"k":11226,"v":[[0,1,["H6258"]],[1,4,["H2406"]],[4,7,["H8184"]],[7,9,["H8081"]],[9,12,["H3196"]],[12,13,["H834"]],[13,15,["H113"]],[15,17,["H559"]],[17,21,["H7971"]],[21,24,["H5650"]]]},{"k":11227,"v":[[0,2,["H587"]],[2,4,["H3772"]],[4,5,["H6086"]],[5,7,["H4480"]],[7,8,["H3844"]],[8,12,["H3605"]],[12,14,["H6878"]],[14,18,["H935"]],[18,23,["H7513"]],[23,24,["H5921"]],[24,25,["H3220"]],[25,27,["H3305"]],[27,29,["H859"]],[29,33,["H5927","(H853)"]],[33,35,["H3389"]]]},{"k":11228,"v":[[0,2,["H8010"]],[2,3,["H5608"]],[3,4,["H3605"]],[4,6,["H376","H1616"]],[6,7,["H834"]],[7,11,["H776"]],[11,13,["H3478"]],[13,14,["H310"]],[14,16,["H5610"]],[16,17,["H834"]],[17,18,["H1732"]],[18,20,["H1"]],[20,22,["H5608"]],[22,27,["H4672"]],[27,29,["H3967"]],[29,31,["H2572"]],[31,32,["H505"]],[32,34,["H7969"]],[34,35,["H505"]],[35,37,["H8337"]],[37,38,["H3967"]]]},{"k":11229,"v":[[0,3,["H6213"]],[3,6,["H7657"]],[6,7,["H505"]],[7,8,["H4480"]],[8,14,["H5449"]],[14,16,["H8084"]],[16,17,["H505"]],[17,20,["H2672"]],[20,23,["H2022"]],[23,25,["H7969"]],[25,26,["H505"]],[26,28,["H8337"]],[28,29,["H3967"]],[29,30,["H5329"]],[30,32,["H5647","(H853)"]],[32,34,["H5971"]],[34,36,[]]]},{"k":11230,"v":[[0,2,["H8010"]],[2,3,["H2490"]],[3,5,["H1129","(H853)"]],[5,7,["H1004"]],[7,10,["H3068"]],[10,12,["H3389"]],[12,14,["H2022"]],[14,15,["H4179"]],[15,16,["H834"]],[16,19,["H7200"]],[19,21,["H1732"]],[21,23,["H1"]],[23,26,["H4725"]],[26,27,["H834"]],[27,28,["H1732"]],[28,30,["H3559"]],[30,33,["H1637"]],[33,35,["H771"]],[35,37,["H2983"]]]},{"k":11231,"v":[[0,3,["H2490"]],[3,5,["H1129"]],[5,8,["H8145"]],[8,12,["H8145"]],[12,13,["H2320"]],[13,16,["H702"]],[16,17,["H8141"]],[17,20,["H4438"]]]},{"k":11232,"v":[[0,2,["H428"]],[2,7,["H8010"]],[7,9,["H3245"]],[9,12,["H1129","(H853)"]],[12,15,["H1004"]],[15,17,["H430"]],[17,19,["H753"]],[19,21,["H520"]],[21,24,["H7223"]],[24,25,["H4060"]],[25,27,["H8346"]],[27,28,["H520"]],[28,31,["H7341"]],[31,32,["H6242"]],[32,33,["H520"]]]},{"k":11233,"v":[[0,3,["H197"]],[3,4,["H834"]],[4,6,["H5921"]],[6,8,["H6440"]],[8,13,["H753"]],[13,18,["H5921","H6440"]],[18,20,["H7341"]],[20,23,["H1004"]],[23,24,["H6242"]],[24,25,["H520"]],[25,28,["H1363"]],[28,31,["H3967"]],[31,33,["H6242"]],[33,36,["H6823"]],[36,38,["H4480","H6441"]],[38,40,["H2889"]],[40,41,["H2091"]]]},{"k":11234,"v":[[0,3,["H1419"]],[3,4,["H1004"]],[4,6,["H2645"]],[6,8,["H1265"]],[8,9,["H6086"]],[9,12,["H2645"]],[12,14,["H2896"]],[14,15,["H2091"]],[15,17,["H5927"]],[17,18,["H5921"]],[18,20,["H8561"]],[20,22,["H8333"]]]},{"k":11235,"v":[[0,3,["H6823","(H853)"]],[3,5,["H1004"]],[5,7,["H3368"]],[7,8,["H68"]],[8,10,["H8597"]],[10,13,["H2091"]],[13,15,["H2091"]],[15,17,["H6516"]]]},{"k":11236,"v":[[0,2,["H2645"]],[2,3,["(H853)"]],[3,5,["H1004"]],[5,7,["H6982"]],[7,9,["H5592"]],[9,12,["H7023"]],[12,16,["H1817"]],[16,19,["H2091"]],[19,21,["H6605"]],[21,22,["H3742"]],[22,23,["H5921"]],[23,25,["H7023"]]]},{"k":11237,"v":[[0,3,["H6213","(H853)"]],[3,6,["H6944","H6944"]],[6,7,["H1004"]],[7,9,["H753"]],[9,13,["H5921","H6440"]],[13,15,["H7341"]],[15,18,["H1004"]],[18,19,["H6242"]],[19,20,["H520"]],[20,23,["H7341"]],[23,25,["H6242"]],[25,26,["H520"]],[26,29,["H2645"]],[29,32,["H2896"]],[32,33,["H2091"]],[33,36,["H8337"]],[36,37,["H3967"]],[37,38,["H3603"]]]},{"k":11238,"v":[[0,3,["H4948"]],[3,6,["H4548"]],[6,8,["H2572"]],[8,9,["H8255"]],[9,11,["H2091"]],[11,14,["H2645"]],[14,17,["H5944"]],[17,19,["H2091"]]]},{"k":11239,"v":[[0,5,["H6944","H6944"]],[5,6,["H1004"]],[6,8,["H6213"]],[8,9,["H8147"]],[9,10,["H3742"]],[10,12,["H6816"]],[12,13,["H4639"]],[13,15,["H6823"]],[15,18,["H2091"]]]},{"k":11240,"v":[[0,3,["H3671"]],[3,6,["H3742"]],[6,8,["H6242"]],[8,9,["H520"]],[9,10,["H753"]],[10,11,["H259"]],[11,12,["H3671"]],[12,18,["H2568"]],[18,19,["H520"]],[19,20,["H5060"]],[20,23,["H7023"]],[23,26,["H1004"]],[26,29,["H312"]],[29,30,["H3671"]],[30,33,["H2568"]],[33,34,["H520"]],[34,35,["H5060"]],[35,38,["H3671"]],[38,41,["H312"]],[41,42,["H3742"]]]},{"k":11241,"v":[[0,3,["H3671"]],[3,6,["H259"]],[6,7,["H3742"]],[7,9,["H2568"]],[9,10,["H520"]],[10,11,["H5060"]],[11,14,["H7023"]],[14,17,["H1004"]],[17,20,["H312"]],[20,21,["H3671"]],[21,23,["H2568"]],[23,24,["H520"]],[24,26,["H1695"]],[26,29,["H3671"]],[29,32,["H312"]],[32,33,["H3742"]]]},{"k":11242,"v":[[0,2,["H3671"]],[2,4,["H428"]],[4,5,["H3742"]],[5,8,["H6566"]],[8,9,["H6242"]],[9,10,["H520"]],[10,12,["H1992"]],[12,13,["H5975"]],[13,14,["H5921"]],[14,16,["H7272"]],[16,19,["H6440"]],[19,21,["H1004"]]]},{"k":11243,"v":[[0,3,["H6213","(H853)"]],[3,5,["H6532"]],[5,7,["H8504"]],[7,9,["H713"]],[9,11,["H3758"]],[11,14,["H948"]],[14,16,["H5927"]],[16,17,["H3742"]],[17,18,["H5921"]]]},{"k":11244,"v":[[0,3,["H6213"]],[3,4,["H6440"]],[4,6,["H1004"]],[6,7,["H8147"]],[7,8,["H5982"]],[8,10,["H7970"]],[10,12,["H2568"]],[12,13,["H520"]],[13,14,["H753"]],[14,17,["H6858"]],[17,18,["H834"]],[18,20,["H5921"]],[20,22,["H7218"]],[22,28,["H2568"]],[28,29,["H520"]]]},{"k":11245,"v":[[0,3,["H6213"]],[3,4,["H8333"]],[4,8,["H1687"]],[8,10,["H5414"]],[10,12,["H5921"]],[12,14,["H7218"]],[14,17,["H5982"]],[17,19,["H6213"]],[19,21,["H3967"]],[21,22,["H7416"]],[22,24,["H5414"]],[24,28,["H8333"]]]},{"k":11246,"v":[[0,4,["H6965","(H853)"]],[4,6,["H5982"]],[6,7,["H5921","H6440"]],[7,9,["H1964"]],[9,10,["H259"]],[10,14,["H4480","H3225"]],[14,17,["H259"]],[17,20,["H4480","H8040"]],[20,22,["H7121"]],[22,24,["H8034"]],[24,30,["H3227"]],[30,31,["H3199"]],[31,34,["H8034"]],[34,39,["H8042"]],[39,40,["H1162"]]]},{"k":11247,"v":[[0,3,["H6213"]],[3,5,["H4196"]],[5,7,["H5178"]],[7,8,["H6242"]],[8,9,["H520"]],[9,11,["H753"]],[11,14,["H6242"]],[14,15,["H520"]],[15,17,["H7341"]],[17,20,["H6235"]],[20,21,["H520"]],[21,23,["H6967"]],[23,24,[]]]},{"k":11248,"v":[[0,3,["H6213","(H853)"]],[3,5,["H3332"]],[5,6,["H3220"]],[6,8,["H6235"]],[8,9,["H520"]],[9,11,["H4480","H8193"]],[11,12,["H413"]],[12,13,["H8193"]],[13,14,["H5696"]],[14,16,["H5439"]],[16,18,["H2568"]],[18,19,["H520"]],[19,21,["H6967"]],[21,25,["H6957"]],[25,27,["H7970"]],[27,28,["H520"]],[28,30,["H5437"]],[30,33,["H5439"]]]},{"k":11249,"v":[[0,2,["H8478"]],[2,6,["H1823"]],[6,8,["H1241"]],[8,11,["H5437"]],[11,14,["H5439","H5439"]],[14,15,["H6235"]],[15,18,["H520"]],[18,19,["H5362","(H853)"]],[19,21,["H3220"]],[21,23,["H5439"]],[23,24,["H8147"]],[24,25,["H2905"]],[25,27,["H1241"]],[27,29,["H3332"]],[29,33,["H4166"]]]},{"k":11250,"v":[[0,2,["H5975"]],[2,3,["H5921"]],[3,4,["H8147","H6240"]],[4,5,["H1241"]],[5,6,["H7969"]],[6,7,["H6437"]],[7,10,["H6828"]],[10,12,["H7969"]],[12,13,["H6437"]],[13,16,["H3220"]],[16,18,["H7969"]],[18,19,["H6437"]],[19,22,["H5045"]],[22,24,["H7969"]],[24,25,["H6437"]],[25,28,["H4217"]],[28,31,["H3220"]],[31,34,["H4480","H4605"]],[34,35,["H5921"]],[35,38,["H3605"]],[38,41,["H268"]],[41,43,["H1004"]]]},{"k":11251,"v":[[0,3,["H5672"]],[3,8,["H2947"]],[8,11,["H8193"]],[11,16,["H4639"]],[16,19,["H8193"]],[19,22,["H3563"]],[22,24,["H6525"]],[24,26,["H7799"]],[26,29,["H2388"]],[29,31,["H3557"]],[31,32,["H7969"]],[32,33,["H505"]],[33,34,["H1324"]]]},{"k":11252,"v":[[0,2,["H6213"]],[2,4,["H6235"]],[4,5,["H3595"]],[5,7,["H5414"]],[7,8,["H2568"]],[8,12,["H4480","H3225"]],[12,14,["H2568"]],[14,17,["H4480","H8040"]],[17,19,["H7364"]],[19,21,["(H853)"]],[21,26,["H4639"]],[26,30,["H5930"]],[30,32,["H1740"]],[32,37,["H3220"]],[37,41,["H3548"]],[41,43,["H7364"]],[43,44,[]]]},{"k":11253,"v":[[0,3,["H6213","(H853)"]],[3,4,["H6235"]],[4,5,["H4501"]],[5,7,["H2091"]],[7,11,["H4941"]],[11,13,["H5414"]],[13,17,["H1964"]],[17,18,["H2568"]],[18,22,["H4480","H3225"]],[22,24,["H2568"]],[24,27,["H4480","H8040"]]]},{"k":11254,"v":[[0,2,["H6213"]],[2,4,["H6235"]],[4,5,["H7979"]],[5,7,["H5117"]],[7,11,["H1964"]],[11,12,["H2568"]],[12,16,["H4480","H3225"]],[16,18,["H2568"]],[18,21,["H4480","H8040"]],[21,24,["H6213"]],[24,26,["H3967"]],[26,27,["H4219"]],[27,29,["H2091"]]]},{"k":11255,"v":[[0,3,["H6213"]],[3,5,["H2691"]],[5,8,["H3548"]],[8,11,["H1419"]],[11,12,["H5835"]],[12,14,["H1817"]],[14,17,["H5835"]],[17,19,["H6823"]],[19,21,["H1817"]],[21,25,["H5178"]]]},{"k":11256,"v":[[0,3,["H5414"]],[3,5,["H3220"]],[5,8,["H3233"]],[8,9,["H4480","H3802"]],[9,13,["H6924"]],[13,15,["H4480","H4136"]],[15,17,["H5045"]]]},{"k":11257,"v":[[0,2,["H2361"]],[2,3,["H6213","(H853)"]],[3,5,["H5518"]],[5,8,["H3257"]],[8,11,["H4219"]],[11,13,["H2361"]],[13,16,["H3615","H6213","(H853)","H4399"]],[16,17,["H834"]],[17,21,["H6213"]],[21,23,["H4428"]],[23,24,["H8010"]],[24,27,["H1004"]],[27,29,["H430"]]]},{"k":11258,"v":[[0,4,["H8147"]],[4,5,["H5982"]],[5,8,["H1543"]],[8,11,["H3805"]],[11,14,["H5921"]],[14,16,["H7218"]],[16,19,["H8147"]],[19,20,["H5982"]],[20,23,["H8147"]],[23,24,["H7639"]],[24,26,["H3680","(H853)"]],[26,28,["H8147"]],[28,29,["H1543"]],[29,32,["H3805"]],[32,33,["H834"]],[33,35,["H5921"]],[35,37,["H7218"]],[37,40,["H5982"]]]},{"k":11259,"v":[[0,2,["H702"]],[2,3,["H3967"]],[3,4,["H7416"]],[4,7,["H8147"]],[7,8,["H7639"]],[8,9,["H8147"]],[9,10,["H2905"]],[10,12,["H7416"]],[12,14,["H259"]],[14,15,["H7639"]],[15,17,["H3680","(H853)"]],[17,19,["H8147"]],[19,20,["H1543"]],[20,23,["H3805"]],[23,24,["H834"]],[24,26,["H5921","H6440"]],[26,28,["H5982"]]]},{"k":11260,"v":[[0,2,["H6213"]],[2,4,["H4350"]],[4,6,["H3595"]],[6,7,["H6213"]],[7,9,["H5921"]],[9,11,["H4350"]]]},{"k":11261,"v":[[0,0,["(H853)"]],[0,1,["H259"]],[1,2,["H3220"]],[2,4,["H8147","H6240"]],[4,5,["H1241"]],[5,6,["H8478"]],[6,7,[]]]},{"k":11262,"v":[[0,2,["H5518"]],[2,6,["H3257"]],[6,9,["H4207"]],[9,11,["H3605"]],[11,13,["H3627"]],[13,15,["H2361"]],[15,17,["H1"]],[17,18,["H6213"]],[18,20,["H4428"]],[20,21,["H8010"]],[21,24,["H1004"]],[24,27,["H3068"]],[27,29,["H4838"]],[29,30,["H5178"]]]},{"k":11263,"v":[[0,3,["H3603"]],[3,5,["H3383"]],[5,8,["H4428"]],[8,9,["H3332"]],[9,13,["H4568"]],[13,14,["H127"]],[14,15,["H996"]],[15,16,["H5523"]],[16,18,["H6868"]]]},{"k":11264,"v":[[0,2,["H8010"]],[2,3,["H6213"]],[3,4,["H3605"]],[4,5,["H428"]],[5,6,["H3627"]],[6,8,["H3966"]],[8,9,["H7230"]],[9,10,["H3588"]],[10,12,["H4948"]],[12,15,["H5178"]],[15,17,["H3808"]],[17,20,["H2713"]]]},{"k":11265,"v":[[0,2,["H8010"]],[2,3,["H6213","(H853)"]],[3,4,["H3605"]],[4,6,["H3627"]],[6,7,["H834"]],[7,11,["H1004"]],[11,13,["H430"]],[13,15,["H2091"]],[15,16,["H4196"]],[16,20,["H7979"]],[20,21,["H5921"]],[21,23,["H3899","H6440"]],[23,25,[]]]},{"k":11266,"v":[[0,3,["H4501"]],[3,6,["H5216"]],[6,10,["H1197"]],[10,13,["H4941"]],[13,14,["H6440"]],[14,16,["H1687"]],[16,18,["H5462"]],[18,19,["H2091"]]]},{"k":11267,"v":[[0,3,["H6525"]],[3,6,["H5216"]],[6,9,["H4457"]],[9,13,["H2091"]],[13,15,["H1931"]],[15,16,["H4357"]],[16,17,["H2091"]]]},{"k":11268,"v":[[0,3,["H4212"]],[3,6,["H4219"]],[6,9,["H3709"]],[9,12,["H4289"]],[12,14,["H5462"]],[14,15,["H2091"]],[15,18,["H6607"]],[18,21,["H1004"]],[21,23,["H6442"]],[23,24,["H1817"]],[24,29,["H6944","H6944"]],[29,33,["H1817"]],[33,36,["H1004"]],[36,39,["H1964"]],[39,42,["H2091"]]]},{"k":11269,"v":[[0,2,["H3605"]],[2,4,["H4399"]],[4,5,["H834"]],[5,6,["H8010"]],[6,7,["H6213"]],[7,10,["H1004"]],[10,13,["H3068"]],[13,15,["H7999"]],[15,17,["H8010"]],[17,19,["H935","(H853)"]],[19,22,["H6944"]],[22,24,["H1732"]],[24,26,["H1"]],[26,28,["H6944"]],[28,31,["H3701"]],[31,34,["H2091"]],[34,36,["H3605"]],[36,38,["H3627"]],[38,39,["H5414"]],[39,43,["H214"]],[43,46,["H1004"]],[46,48,["H430"]]]},{"k":11270,"v":[[0,1,["H227"]],[1,2,["H8010"]],[2,3,["H6950","(H853)"]],[3,5,["H2205"]],[5,7,["H3478"]],[7,9,["H3605"]],[9,11,["H7218"]],[11,14,["H4294"]],[14,16,["H5387"]],[16,19,["H1"]],[19,22,["H1121"]],[22,24,["H3478"]],[24,25,["H413"]],[25,26,["H3389"]],[26,29,["H5927","(H853)"]],[29,31,["H727"]],[31,34,["H1285"]],[34,37,["H3068"]],[37,41,["H4480","H5892"]],[41,43,["H1732"]],[43,44,["H1931"]],[44,46,["H6726"]]]},{"k":11271,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,6,["H3478"]],[6,8,["H6950"]],[8,9,["H413"]],[9,11,["H4428"]],[11,14,["H2282"]],[14,15,["H1931"]],[15,19,["H7637"]],[19,20,["H2320"]]]},{"k":11272,"v":[[0,2,["H3605"]],[2,4,["H2205"]],[4,6,["H3478"]],[6,7,["H935"]],[7,10,["H3881"]],[10,12,["H5375","(H853)"]],[12,14,["H727"]]]},{"k":11273,"v":[[0,4,["H5927","(H853)"]],[4,6,["H727"]],[6,9,["H168"]],[9,12,["H4150"]],[12,14,["H3605"]],[14,16,["H6944"]],[16,17,["H3627"]],[17,18,["H834"]],[18,22,["H168"]],[22,26,["H3548"]],[26,29,["H3881"]],[29,31,["H5927"]]]},{"k":11274,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,5,["H3605"]],[5,7,["H5712"]],[7,9,["H3478"]],[9,12,["H3259"]],[12,13,["H5921"]],[13,15,["H6440"]],[15,17,["H727"]],[17,18,["H2076"]],[18,19,["H6629"]],[19,21,["H1241"]],[21,22,["H834"]],[22,24,["H3808"]],[24,26,["H5608"]],[26,27,["H3808"]],[27,28,["H4487"]],[28,30,["H4480","H7230"]]]},{"k":11275,"v":[[0,3,["H3548"]],[3,5,["H935","(H853)"]],[5,7,["H727"]],[7,10,["H1285"]],[10,13,["H3068"]],[13,14,["H413"]],[14,16,["H4725"]],[16,17,["H413"]],[17,19,["H1687"]],[19,22,["H1004"]],[22,23,["H413"]],[23,26,["H6944","H6944"]],[26,29,["H413","H8478"]],[29,31,["H3671"]],[31,34,["H3742"]]]},{"k":11276,"v":[[0,3,["H3742"]],[3,5,["H1961","H6566"]],[5,7,["H3671"]],[7,8,["H5921"]],[8,10,["H4725"]],[10,13,["H727"]],[13,16,["H3742"]],[16,17,["H3680","H5921"]],[17,19,["H727"]],[19,22,["H905"]],[22,24,["H4480","H4605"]]]},{"k":11277,"v":[[0,4,["H748"]],[4,6,["H905"]],[6,12,["H7218"]],[12,15,["H905"]],[15,17,["H7200"]],[17,18,["H4480"]],[18,20,["H727"]],[20,21,["H5921","H6440"]],[21,23,["H1687"]],[23,27,["H3808"]],[27,28,["H7200"]],[28,29,["H2351"]],[29,31,["H8033"]],[31,33,["H1961"]],[33,34,["H5704"]],[34,35,["H2088"]],[35,36,["H3117"]]]},{"k":11278,"v":[[0,3,["H369"]],[3,6,["H727"]],[6,7,["H7535"]],[7,9,["H8147"]],[9,10,["H3871"]],[10,11,["H834"]],[11,12,["H4872"]],[12,13,["H5414"]],[13,16,["H2722"]],[16,17,["H834"]],[17,19,["H3068"]],[19,20,["H3772"]],[20,23,["H5973"]],[23,25,["H1121"]],[25,27,["H3478"]],[27,31,["H3318"]],[31,33,["H4480","H4714"]]]},{"k":11279,"v":[[0,5,["H1961"]],[5,8,["H3548"]],[8,11,["H3318"]],[11,12,["H4480"]],[12,14,["H6944"]],[14,16,["H3588"]],[16,17,["H3605"]],[17,19,["H3548"]],[19,22,["H4672"]],[22,24,["H6942"]],[24,27,["H369"]],[27,29,["H8104"]],[29,31,["H4256"]]]},{"k":11280,"v":[[0,3,["H3881"]],[3,7,["H7891"]],[7,8,["H3605"]],[8,12,["H623"]],[12,14,["H1968"]],[14,16,["H3038"]],[16,19,["H1121"]],[19,22,["H251"]],[22,24,["H3847"]],[24,27,["H948"]],[27,29,["H4700"]],[29,31,["H5035"]],[31,33,["H3658"]],[33,34,["H5975"]],[34,38,["H4217"]],[38,41,["H4196"]],[41,43,["H5973"]],[43,46,["H3967"]],[46,48,["H6242"]],[48,49,["H3548"]],[49,50,["H2690"]],[50,52,["H2689"]]]},{"k":11281,"v":[[0,5,["H1961"]],[5,8,["H2690"]],[8,10,["H7891"]],[10,13,["H259"]],[13,16,["H259"]],[16,17,["H6963"]],[17,20,["H8085"]],[20,22,["H1984"]],[22,24,["H3034"]],[24,26,["H3068"]],[26,31,["H7311"]],[31,33,["H6963"]],[33,36,["H2689"]],[36,38,["H4700"]],[38,40,["H3627"]],[40,42,["H7892"]],[42,44,["H1984"]],[44,46,["H3068"]],[46,48,["H3588"]],[48,51,["H2896"]],[51,52,["H3588"]],[52,54,["H2617"]],[54,57,["H5769"]],[57,61,["H1004"]],[61,63,["H4390"]],[63,66,["H6051"]],[66,69,["H1004"]],[69,72,["H3068"]]]},{"k":11282,"v":[[0,4,["H3548"]],[4,5,["H3201"]],[5,6,["H3808"]],[6,7,["H5975"]],[7,9,["H8334"]],[9,12,["H4480","H6440"]],[12,14,["H6051"]],[14,15,["H3588"]],[15,17,["H3519"]],[17,20,["H3068"]],[20,22,["H4390","(H853)"]],[22,24,["H1004"]],[24,26,["H430"]]]},{"k":11283,"v":[[0,1,["H227"]],[1,2,["H559"]],[2,3,["H8010"]],[3,5,["H3068"]],[5,7,["H559"]],[7,11,["H7931"]],[11,15,["H6205"]]]},{"k":11284,"v":[[0,2,["H589"]],[2,4,["H1129"]],[4,6,["H1004"]],[6,8,["H2073"]],[8,13,["H4349"]],[13,16,["H3427"]],[16,18,["H5769"]]]},{"k":11285,"v":[[0,3,["H4428"]],[3,4,["H5437","(H853)"]],[4,6,["H6440"]],[6,8,["H1288","(H853)"]],[8,10,["H3605"]],[10,11,["H6951"]],[11,13,["H3478"]],[13,15,["H3605"]],[15,17,["H6951"]],[17,19,["H3478"]],[19,20,["H5975"]]]},{"k":11286,"v":[[0,3,["H559"]],[3,4,["H1288"]],[4,7,["H3068"]],[7,8,["H430"]],[8,10,["H3478"]],[10,15,["H3027"]],[15,16,["H4390"]],[16,18,["H834"]],[18,20,["H1696"]],[20,23,["H6310"]],[23,24,["H854"]],[24,26,["H1"]],[26,27,["H1732"]],[27,28,["H559"]]]},{"k":11287,"v":[[0,1,["H4480"]],[1,3,["H3117"]],[3,4,["H834"]],[4,7,["H3318","(H853)"]],[7,9,["H5971"]],[9,13,["H4480","H776"]],[13,15,["H4714"]],[15,17,["H977"]],[17,18,["H3808"]],[18,19,["H5892"]],[19,21,["H4480","H3605"]],[21,23,["H7626"]],[23,25,["H3478"]],[25,27,["H1129"]],[27,29,["H1004"]],[29,33,["H8034"]],[33,35,["H1961"]],[35,36,["H8033"]],[36,37,["H3808"]],[37,38,["H977"]],[38,41,["H376"]],[41,43,["H1961"]],[43,45,["H5057"]],[45,46,["H5921"]],[46,48,["H5971"]],[48,49,["H3478"]]]},{"k":11288,"v":[[0,4,["H977"]],[4,5,["H3389"]],[5,8,["H8034"]],[8,10,["H1961"]],[10,11,["H8033"]],[11,14,["H977"]],[14,15,["H1732"]],[15,17,["H1961"]],[17,18,["H5921"]],[18,20,["H5971"]],[20,21,["H3478"]]]},{"k":11289,"v":[[0,3,["H1961"]],[3,4,["H5973"]],[4,6,["H3824"]],[6,8,["H1732"]],[8,10,["H1"]],[10,12,["H1129"]],[12,14,["H1004"]],[14,17,["H8034"]],[17,20,["H3068"]],[20,21,["H430"]],[21,23,["H3478"]]]},{"k":11290,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H1732"]],[6,8,["H1"]],[8,9,["H3588","H834"]],[9,12,["H1961"]],[12,13,["H5973"]],[13,15,["H3824"]],[15,17,["H1129"]],[17,19,["H1004"]],[19,22,["H8034"]],[22,25,["H2895"]],[25,27,["H3588"]],[27,29,["H1961"]],[29,30,["H5973"]],[30,32,["H3824"]]]},{"k":11291,"v":[[0,1,["H7535"]],[1,2,["H859"]],[2,4,["H3808"]],[4,5,["H1129"]],[5,7,["H1004"]],[7,8,["H3588"]],[8,10,["H1121"]],[10,14,["H3318"]],[14,16,["H4480"]],[16,18,["H2504"]],[18,19,["H1931"]],[19,21,["H1129"]],[21,23,["H1004"]],[23,26,["H8034"]]]},{"k":11292,"v":[[0,2,["H3068"]],[2,5,["H6965","(H853)"]],[5,7,["H1697"]],[7,8,["H834"]],[8,11,["H1696"]],[11,16,["H6965"]],[16,19,["H8478"]],[19,21,["H1732"]],[21,23,["H1"]],[23,26,["H3427"]],[26,27,["H5921"]],[27,29,["H3678"]],[29,31,["H3478"]],[31,32,["H834"]],[32,34,["H3068"]],[34,35,["H1696"]],[35,38,["H1129"]],[38,40,["H1004"]],[40,43,["H8034"]],[43,46,["H3068"]],[46,47,["H430"]],[47,49,["H3478"]]]},{"k":11293,"v":[[0,3,["H8033"]],[3,6,["H7760","(H853)"]],[6,8,["H727"]],[8,9,["H834","H8033"]],[9,12,["H1285"]],[12,15,["H3068"]],[15,16,["H834"]],[16,18,["H3772"]],[18,19,["H5973"]],[19,21,["H1121"]],[21,23,["H3478"]]]},{"k":11294,"v":[[0,3,["H5975"]],[3,4,["H6440"]],[4,6,["H4196"]],[6,9,["H3068"]],[9,13,["H5048"]],[13,14,["H3605"]],[14,16,["H6951"]],[16,18,["H3478"]],[18,21,["H6566"]],[21,23,["H3709"]]]},{"k":11295,"v":[[0,1,["H3588"]],[1,2,["H8010"]],[2,4,["H6213"]],[4,6,["H5178"]],[6,7,["H3595"]],[7,9,["H2568"]],[9,10,["H520"]],[10,11,["H753"]],[11,13,["H2568"]],[13,14,["H520"]],[14,15,["H7341"]],[15,17,["H7969"]],[17,18,["H520"]],[18,19,["H6967"]],[19,22,["H5414"]],[22,26,["H8432"]],[26,29,["H5835"]],[29,31,["H5921"]],[31,34,["H5975"]],[34,37,["H1288"]],[37,38,["H5921"]],[38,40,["H1290"]],[40,41,["H5048"]],[41,42,["H3605"]],[42,44,["H6951"]],[44,46,["H3478"]],[46,49,["H6566"]],[49,51,["H3709"]],[51,53,["H8064"]]]},{"k":11296,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,10,["H369"]],[10,11,["H430"]],[11,13,["H3644"]],[13,16,["H8064"]],[16,20,["H776"]],[20,22,["H8104"]],[22,23,["H1285"]],[23,26,["H2617"]],[26,29,["H5650"]],[29,31,["H1980"]],[31,32,["H6440"]],[32,35,["H3605"]],[35,37,["H3820"]]]},{"k":11297,"v":[[0,2,["H834"]],[2,4,["H8104"]],[4,7,["H5650"]],[7,8,["H1732"]],[8,10,["H1","(H853)"]],[10,12,["H834"]],[12,15,["H1696"]],[15,18,["H1696"]],[18,21,["H6310"]],[21,24,["H4390"]],[24,28,["H3027"]],[28,32,["H2088"]],[32,33,["H3117"]]]},{"k":11298,"v":[[0,1,["H6258"]],[1,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,8,["H8104"]],[8,11,["H5650"]],[11,12,["H1732"]],[12,14,["H1","(H853)"]],[14,16,["H834"]],[16,19,["H1696"]],[19,21,["H559"]],[21,24,["H3808"]],[24,25,["H3772"]],[25,28,["H376"]],[28,31,["H4480","H6440"]],[31,33,["H3427"]],[33,34,["H5921"]],[34,36,["H3678"]],[36,38,["H3478"]],[38,40,["H7535"]],[40,43,["H1121"]],[43,45,["H8104","(H853)"]],[45,48,["H1870"]],[48,50,["H1980"]],[50,53,["H8451"]],[53,54,["H834"]],[54,57,["H1980"]],[57,58,["H6440"]],[58,59,[]]]},{"k":11299,"v":[[0,1,["H6258"]],[1,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,10,["H1697"]],[10,12,["H539"]],[12,13,["H834"]],[13,16,["H1696"]],[16,19,["H5650"]],[19,20,["H1732"]]]},{"k":11300,"v":[[0,1,["H3588"]],[1,3,["H430"]],[3,6,["H552"]],[6,7,["H3427"]],[7,8,["H854"]],[8,9,["H120"]],[9,10,["H5921"]],[10,12,["H776"]],[12,13,["H2009"]],[13,14,["H8064"]],[14,17,["H8064"]],[17,19,["H8064"]],[19,20,["H3808"]],[20,21,["H3557"]],[21,25,["H637"]],[25,26,["H2088"]],[26,27,["H1004"]],[27,28,["H834"]],[28,31,["H1129"]]]},{"k":11301,"v":[[0,2,["H6437"]],[2,4,["H413"]],[4,6,["H8605"]],[6,9,["H5650"]],[9,11,["H413"]],[11,13,["H8467"]],[13,15,["H3068"]],[15,17,["H430"]],[17,19,["H8085"]],[19,20,["H413"]],[20,22,["H7440"]],[22,25,["H8605"]],[25,26,["H834"]],[26,28,["H5650"]],[28,29,["H6419"]],[29,30,["H6440"]],[30,31,[]]]},{"k":11302,"v":[[0,3,["H5869"]],[3,5,["H1961"]],[5,6,["H6605"]],[6,7,["H413"]],[7,8,["H2088"]],[8,9,["H1004"]],[9,10,["H3119"]],[10,12,["H3915"]],[12,13,["H413"]],[13,15,["H4725"]],[15,16,["H834"]],[16,19,["H559"]],[19,23,["H7760"]],[23,25,["H8034"]],[25,26,["H8033"]],[26,28,["H8085"]],[28,29,["H413"]],[29,31,["H8605"]],[31,32,["H834"]],[32,34,["H5650"]],[34,35,["H6419"]],[35,36,["H413"]],[36,37,["H2088"]],[37,38,["H4725"]]]},{"k":11303,"v":[[0,1,["H8085"]],[1,3,["H413"]],[3,5,["H8469"]],[5,8,["H5650"]],[8,12,["H5971"]],[12,13,["H3478"]],[13,14,["H834"]],[14,17,["H6419"]],[17,18,["H413"]],[18,19,["H2088"]],[19,20,["H4725"]],[20,21,["H8085"]],[21,22,["H859"]],[22,25,["H3427"]],[25,26,["H4480","H4725"]],[26,28,["H4480"]],[28,29,["H8064"]],[29,33,["H8085"]],[33,34,["H5545"]]]},{"k":11304,"v":[[0,1,["H518"]],[1,3,["H376"]],[3,4,["H2398"]],[4,7,["H7453"]],[7,10,["H423"]],[10,12,["H5375"]],[12,18,["H422"]],[18,21,["H423"]],[21,22,["H935"]],[22,23,["H6440"]],[23,25,["H4196"]],[25,27,["H2088"]],[27,28,["H1004"]]]},{"k":11305,"v":[[0,2,["H8085"]],[2,3,["H859"]],[3,4,["H4480"]],[4,5,["H8064"]],[5,7,["H6213"]],[7,9,["H8199","(H853)"]],[9,11,["H5650"]],[11,13,["H7725"]],[13,15,["H7563"]],[15,17,["H5414"]],[17,19,["H1870"]],[19,23,["H7218"]],[23,26,["H6663"]],[26,28,["H6662"]],[28,30,["H5414"]],[30,35,["H6666"]]]},{"k":11306,"v":[[0,2,["H518"]],[2,4,["H5971"]],[4,5,["H3478"]],[5,10,["H5062"]],[10,11,["H6440"]],[11,13,["H341"]],[13,14,["H3588"]],[14,17,["H2398"]],[17,22,["H7725"]],[22,24,["H3034","(H853)"]],[24,26,["H8034"]],[26,28,["H6419"]],[28,31,["H2603"]],[31,32,["H6440"]],[32,35,["H2088"]],[35,36,["H1004"]]]},{"k":11307,"v":[[0,2,["H8085"]],[2,3,["H859"]],[3,4,["H4480"]],[4,6,["H8064"]],[6,8,["H5545"]],[8,10,["H2403"]],[10,13,["H5971"]],[13,14,["H3478"]],[14,18,["H7725"]],[18,19,["H413"]],[19,21,["H127"]],[21,22,["H834"]],[22,24,["H5414"]],[24,30,["H1"]]]},{"k":11308,"v":[[0,3,["H8064"]],[3,6,["H6113"]],[6,9,["H1961"]],[9,10,["H3808"]],[10,11,["H4306"]],[11,12,["H3588"]],[12,15,["H2398"]],[15,21,["H6419"]],[21,22,["H413"]],[22,23,["H2088"]],[23,24,["H4725"]],[24,26,["H3034","(H853)"]],[26,28,["H8034"]],[28,30,["H7725"]],[30,33,["H4480","H2403"]],[33,34,["H3588"]],[34,37,["H6031"]],[37,38,[]]]},{"k":11309,"v":[[0,2,["H8085"]],[2,3,["H859"]],[3,5,["H8064"]],[5,7,["H5545"]],[7,9,["H2403"]],[9,12,["H5650"]],[12,16,["H5971"]],[16,17,["H3478"]],[17,18,["H3588"]],[18,21,["H3384"]],[21,24,["H2896"]],[24,25,["H1870"]],[25,26,["H834"]],[26,29,["H1980"]],[29,31,["H5414"]],[31,32,["H4306"]],[32,33,["H5921"]],[33,35,["H776"]],[35,36,["H834"]],[36,39,["H5414"]],[39,42,["H5971"]],[42,45,["H5159"]]]},{"k":11310,"v":[[0,1,["H3588"]],[1,3,["H1961"]],[3,4,["H7458"]],[4,7,["H776"]],[7,8,["H3588"]],[8,10,["H1961"]],[10,11,["H1698"]],[11,12,["H3588"]],[12,14,["H1961"]],[14,15,["H7711"]],[15,17,["H3420"]],[17,18,["H697"]],[18,20,["H2625"]],[20,21,["H3588"]],[21,23,["H341"]],[23,24,["H6887"]],[24,28,["H8179"]],[28,31,["H776"]],[31,32,["H3605"]],[32,33,["H5061"]],[33,35,["H3605"]],[35,36,["H4245"]],[36,38,[]]]},{"k":11311,"v":[[0,2,["H3605"]],[2,3,["H8605"]],[3,5,["H3605"]],[5,6,["H8467"]],[6,7,["H834"]],[7,10,["H1961"]],[10,12,["H3605"]],[12,13,["H120"]],[13,16,["H3605"]],[16,18,["H5971"]],[18,19,["H3478"]],[19,20,["H834"]],[20,22,["H376"]],[22,24,["H3045"]],[24,27,["H5061"]],[27,31,["H4341"]],[31,35,["H6566"]],[35,37,["H3709"]],[37,38,["H413"]],[38,39,["H2088"]],[39,40,["H1004"]]]},{"k":11312,"v":[[0,2,["H8085"]],[2,3,["H859"]],[3,4,["H4480"]],[4,5,["H8064"]],[5,7,["H3427"]],[7,8,["H4349"]],[8,10,["H5545"]],[10,12,["H5414"]],[12,15,["H376"]],[15,18,["H3605"]],[18,20,["H1870","(H853)"]],[20,22,["H3824"]],[22,24,["H3045"]],[24,25,["H3588"]],[25,26,["H859"]],[26,27,["H905"]],[27,28,["H3045","(H853)"]],[28,30,["H3824"]],[30,33,["H1121"]],[33,35,["H120"]]]},{"k":11313,"v":[[0,1,["H4616"]],[1,4,["H3372"]],[4,7,["H1980"]],[7,10,["H1870"]],[10,12,["H3605","H3117"]],[12,13,["H834"]],[13,14,["H1992"]],[14,15,["H2416"]],[15,16,["H5921","H6440"]],[16,18,["H127"]],[18,19,["H834"]],[19,21,["H5414"]],[21,24,["H1"]]]},{"k":11314,"v":[[0,1,["H1571"]],[1,2,["H413"]],[2,4,["H5237"]],[4,5,["H834"]],[5,7,["H3808"]],[7,10,["H4480","H5971"]],[10,11,["H3478"]],[11,14,["H935"]],[14,17,["H7350"]],[17,18,["H4480","H776"]],[18,23,["H4616","H1419","H8034"]],[23,26,["H2389"]],[26,27,["H3027"]],[27,31,["H5186"]],[31,32,["H2220"]],[32,35,["H935"]],[35,37,["H6419"]],[37,38,["H413"]],[38,39,["H2088"]],[39,40,["H1004"]]]},{"k":11315,"v":[[0,2,["H8085"]],[2,3,["H859"]],[3,4,["H4480"]],[4,6,["H8064"]],[6,10,["H3427"]],[10,11,["H4480","H4349"]],[11,13,["H6213"]],[13,16,["H3605"]],[16,17,["H834"]],[17,19,["H5237"]],[19,20,["H7121"]],[20,21,["H413"]],[21,24,["H4616"]],[24,25,["H3605"]],[25,26,["H5971"]],[26,29,["H776"]],[29,31,["H3045","(H853)"]],[31,33,["H8034"]],[33,35,["H3372"]],[35,40,["H5971"]],[40,41,["H3478"]],[41,44,["H3045"]],[44,45,["H3588"]],[45,46,["H2088"]],[46,47,["H1004"]],[47,48,["H834"]],[48,51,["H1129"]],[51,53,["H7121"]],[53,56,["H8034"]]]},{"k":11316,"v":[[0,1,["H3588"]],[1,3,["H5971"]],[3,5,["H3318"]],[5,7,["H4421"]],[7,8,["H5921"]],[8,10,["H341"]],[10,13,["H1870"]],[13,14,["H834"]],[14,17,["H7971"]],[17,21,["H6419"]],[21,22,["H413"]],[22,24,["H1870"]],[24,25,["H2063"]],[25,26,["H5892"]],[26,27,["H834"]],[27,30,["H977"]],[30,33,["H1004"]],[33,34,["H834"]],[34,37,["H1129"]],[37,40,["H8034"]]]},{"k":11317,"v":[[0,2,["H8085"]],[2,4,["H4480"]],[4,6,["H8064","(H853)"]],[6,8,["H8605"]],[8,11,["H8467"]],[11,13,["H6213"]],[13,15,["H4941"]]]},{"k":11318,"v":[[0,1,["H3588"]],[1,3,["H2398"]],[3,6,["H3588"]],[6,9,["H369"]],[9,10,["H120"]],[10,11,["H834"]],[11,12,["H2398"]],[12,13,["H3808"]],[13,17,["H599"]],[17,21,["H5414"]],[21,24,["H6440"]],[24,26,["H341"]],[26,32,["H7617","H7617"]],[32,33,["H413"]],[33,35,["H776"]],[35,37,["H7350"]],[37,38,["H176"]],[38,39,["H7138"]]]},{"k":11319,"v":[[0,5,["H7725","H413","H3824"]],[5,8,["H776"]],[8,9,["H834","H8033"]],[9,13,["H7617"]],[13,15,["H7725"]],[15,17,["H2603"]],[17,18,["H413"]],[18,22,["H776"]],[22,25,["H7628"]],[25,26,["H559"]],[26,29,["H2398"]],[29,33,["H5753"]],[33,37,["H7561"]]]},{"k":11320,"v":[[0,3,["H7725"]],[3,4,["H413"]],[4,7,["H3605"]],[7,9,["H3820"]],[9,12,["H3605"]],[12,14,["H5315"]],[14,17,["H776"]],[17,20,["H7628"]],[20,21,["H834"]],[21,26,["H7617","(H853)"]],[26,28,["H6419"]],[28,29,["H1870"]],[29,31,["H776"]],[31,32,["H834"]],[32,34,["H5414"]],[34,37,["H1"]],[37,41,["H5892"]],[41,42,["H834"]],[42,45,["H977"]],[45,49,["H1004"]],[49,50,["H834"]],[50,53,["H1129"]],[53,56,["H8034"]]]},{"k":11321,"v":[[0,2,["H8085"]],[2,4,["H4480"]],[4,6,["H8064"]],[6,10,["H3427"]],[10,11,["H4480","H4349","(H853)"]],[11,13,["H8605"]],[13,16,["H8467"]],[16,18,["H6213"]],[18,20,["H4941"]],[20,22,["H5545"]],[22,24,["H5971"]],[24,25,["H834"]],[25,27,["H2398"]],[27,29,[]]]},{"k":11322,"v":[[0,1,["H6258"]],[1,3,["H430"]],[3,7,["H4994"]],[7,9,["H5869"]],[9,10,["H1961"]],[10,11,["H6605"]],[11,15,["H241"]],[15,17,["H7183"]],[17,20,["H8605"]],[20,25,["H2088"]],[25,26,["H4725"]]]},{"k":11323,"v":[[0,1,["H6258"]],[1,3,["H6965"]],[3,5,["H3068"]],[5,6,["H430"]],[6,10,["H5118"]],[10,11,["H859"]],[11,14,["H727"]],[14,17,["H5797"]],[17,20,["H3548"]],[20,22,["H3068"]],[22,23,["H430"]],[23,25,["H3847"]],[25,27,["H8668"]],[27,31,["H2623"]],[31,32,["H8055"]],[32,34,["H2896"]]]},{"k":11324,"v":[[0,2,["H3068"]],[2,3,["H430"]],[3,6,["H7725","H408"]],[6,8,["H6440"]],[8,11,["H4899"]],[11,12,["H2142"]],[12,14,["H2617"]],[14,16,["H1732"]],[16,18,["H5650"]]]},{"k":11325,"v":[[0,3,["H8010"]],[3,7,["H3615"]],[7,9,["H6419"]],[9,11,["H784"]],[11,13,["H3381"]],[13,15,["H4480","H8064"]],[15,17,["H398"]],[17,20,["H5930"]],[20,23,["H2077"]],[23,26,["H3519"]],[26,29,["H3068"]],[29,30,["H4390","(H853)"]],[30,32,["H1004"]]]},{"k":11326,"v":[[0,3,["H3548"]],[3,4,["H3201"]],[4,5,["H3808"]],[5,6,["H935"]],[6,7,["H413"]],[7,9,["H1004"]],[9,12,["H3068"]],[12,13,["H3588"]],[13,15,["H3519"]],[15,18,["H3068"]],[18,20,["H4390","(H853)"]],[20,22,["H3068"]],[22,23,["H1004"]]]},{"k":11327,"v":[[0,3,["H3605"]],[3,5,["H1121"]],[5,7,["H3478"]],[7,8,["H7200"]],[8,11,["H784"]],[11,13,["H3381"]],[13,16,["H3519"]],[16,19,["H3068"]],[19,20,["H5921"]],[20,22,["H1004"]],[22,24,["H3766"]],[24,28,["H639"]],[28,31,["H776"]],[31,32,["H5921"]],[32,34,["H7531"]],[34,36,["H7812"]],[36,38,["H3034"]],[38,40,["H3068"]],[40,42,["H3588"]],[42,45,["H2896"]],[45,46,["H3588"]],[46,48,["H2617"]],[48,51,["H5769"]]]},{"k":11328,"v":[[0,3,["H4428"]],[3,5,["H3605"]],[5,7,["H5971"]],[7,8,["H2076"]],[8,9,["H2077"]],[9,10,["H6440"]],[10,12,["H3068"]]]},{"k":11329,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H2076","(H853)"]],[4,6,["H2077"]],[6,8,["H6242"]],[8,10,["H8147"]],[10,11,["H505"]],[11,12,["H1241"]],[12,15,["H3967"]],[15,17,["H6242"]],[17,18,["H505"]],[18,19,["H6629"]],[19,22,["H4428"]],[22,24,["H3605"]],[24,26,["H5971"]],[26,27,["H2596","(H853)"]],[27,29,["H1004"]],[29,31,["H430"]]]},{"k":11330,"v":[[0,3,["H3548"]],[3,4,["H5975"]],[4,5,["H5921"]],[5,7,["H4931"]],[7,9,["H3881"]],[9,12,["H3627"]],[12,14,["H7892"]],[14,17,["H3068"]],[17,18,["H834"]],[18,19,["H1732"]],[19,21,["H4428"]],[21,23,["H6213"]],[23,25,["H3034"]],[25,27,["H3068"]],[27,28,["H3588"]],[28,30,["H2617"]],[30,33,["H5769"]],[33,35,["H1732"]],[35,36,["H1984"]],[36,39,["H3027"]],[39,42,["H3548"]],[42,43,["H2690"]],[43,45,["H5048"]],[45,48,["H3605"]],[48,49,["H3478"]],[49,50,["H5975"]]]},{"k":11331,"v":[[0,2,["H8010"]],[2,3,["H6942","(H853)"]],[3,5,["H8432"]],[5,8,["H2691"]],[8,9,["H834"]],[9,11,["H6440"]],[11,13,["H1004"]],[13,16,["H3068"]],[16,17,["H3588"]],[17,18,["H8033"]],[18,20,["H6213"]],[20,22,["H5930"]],[22,25,["H2459"]],[25,29,["H8002"]],[29,30,["H3588"]],[30,32,["H5178"]],[32,33,["H4196"]],[33,34,["H834"]],[34,35,["H8010"]],[35,37,["H6213"]],[37,40,["H3201","H3808"]],[40,42,["H3557","(H853)"]],[42,45,["H5930"]],[45,49,["H4503"]],[49,52,["H2459"]]]},{"k":11332,"v":[[0,4,["H1931"]],[4,5,["H6256"]],[5,6,["H8010"]],[6,7,["H6213","(H853)"]],[7,9,["H2282"]],[9,10,["H7651"]],[10,11,["H3117"]],[11,13,["H3605"]],[13,14,["H3478"]],[14,15,["H5973"]],[15,18,["H3966"]],[18,19,["H1419"]],[19,20,["H6951"]],[20,24,["H4480","H935"]],[24,26,["H2574"]],[26,27,["H5704"]],[27,29,["H5158"]],[29,31,["H4714"]]]},{"k":11333,"v":[[0,4,["H8066"]],[4,5,["H3117"]],[5,7,["H6213"]],[7,10,["H6116"]],[10,11,["H3588"]],[11,13,["H6213"]],[13,15,["H2598"]],[15,18,["H4196"]],[18,19,["H7651"]],[19,20,["H3117"]],[20,23,["H2282"]],[23,24,["H7651"]],[24,25,["H3117"]]]},{"k":11334,"v":[[0,4,["H7969"]],[4,6,["H6242"]],[6,7,["H3117"]],[7,10,["H7637"]],[10,11,["H2320"]],[11,13,["H7971","(H853)"]],[13,15,["H5971"]],[15,19,["H168"]],[19,20,["H8056"]],[20,22,["H2896"]],[22,24,["H3820"]],[24,25,["H5921"]],[25,27,["H2896"]],[27,28,["H834"]],[28,30,["H3068"]],[30,32,["H6213"]],[32,34,["H1732"]],[34,37,["H8010"]],[37,40,["H3478"]],[40,42,["H5971"]]]},{"k":11335,"v":[[0,2,["H8010"]],[2,3,["H3615","(H853)"]],[3,5,["H1004"]],[5,8,["H3068"]],[8,11,["H4428"]],[11,12,["H1004"]],[12,14,["H3605"]],[14,16,["H935"]],[16,17,["H5921"]],[17,18,["H8010"]],[18,19,["H3820"]],[19,21,["H6213"]],[21,24,["H1004"]],[24,27,["H3068"]],[27,32,["H1004"]],[32,35,["H6743"]]]},{"k":11336,"v":[[0,3,["H3068"]],[3,4,["H7200"]],[4,5,["H413"]],[5,6,["H8010"]],[6,8,["H3915"]],[8,10,["H559"]],[10,15,["H8085","(H853)"]],[15,17,["H8605"]],[17,20,["H977"]],[20,21,["H2088"]],[21,22,["H4725"]],[22,27,["H1004"]],[27,29,["H2077"]]]},{"k":11337,"v":[[0,1,["H2005"]],[1,4,["H6113"]],[4,5,["H8064"]],[5,8,["H1961"]],[8,9,["H3808"]],[9,10,["H4306"]],[10,12,["H2005"]],[12,14,["H6680","H5921"]],[14,16,["H2284"]],[16,18,["H398"]],[18,20,["H776"]],[20,22,["H518"]],[22,24,["H7971"]],[24,25,["H1698"]],[25,28,["H5971"]]]},{"k":11338,"v":[[0,3,["H5971"]],[3,4,["H834"]],[4,6,["H7121","H5921"]],[6,9,["H8034"]],[9,12,["H3665"]],[12,14,["H6419"]],[14,16,["H1245"]],[16,18,["H6440"]],[18,20,["H7725"]],[20,23,["H7451"]],[23,24,["H4480","H1870"]],[24,27,["H589"]],[27,28,["H8085"]],[28,29,["H4480"]],[29,30,["H8064"]],[30,33,["H5545"]],[33,35,["H2403"]],[35,38,["H7495","(H853)"]],[38,40,["H776"]]]},{"k":11339,"v":[[0,1,["H6258"]],[1,3,["H5869"]],[3,5,["H1961"]],[5,6,["H6605"]],[6,9,["H241"]],[9,10,["H7183"]],[10,13,["H8605"]],[13,18,["H2088"]],[18,19,["H4725"]]]},{"k":11340,"v":[[0,2,["H6258"]],[2,5,["H977"]],[5,7,["H6942","(H853)"]],[7,8,["H2088"]],[8,9,["H1004"]],[9,12,["H8034"]],[12,14,["H1961"]],[14,15,["H8033"]],[15,17,["H5704","H5769"]],[17,20,["H5869"]],[20,23,["H3820"]],[23,25,["H1961"]],[25,26,["H8033"]],[26,27,["H3605","H3117"]]]},{"k":11341,"v":[[0,4,["H859"]],[4,5,["H518"]],[5,8,["H1980"]],[8,9,["H6440"]],[9,11,["H834"]],[11,12,["H1732"]],[12,14,["H1"]],[14,15,["H1980"]],[15,17,["H6213"]],[17,20,["H3605"]],[20,21,["H834"]],[21,24,["H6680"]],[24,28,["H8104"]],[28,30,["H2706"]],[30,33,["H4941"]]]},{"k":11342,"v":[[0,4,["H6965","(H853)"]],[4,6,["H3678"]],[6,9,["H4438"]],[9,11,["H834"]],[11,14,["H3772"]],[14,16,["H1732"]],[16,18,["H1"]],[18,19,["H559"]],[19,22,["H3808"]],[22,23,["H3772"]],[23,26,["H376"]],[26,29,["H4910"]],[29,31,["H3478"]]]},{"k":11343,"v":[[0,2,["H518"]],[2,3,["H859"]],[3,5,["H7725"]],[5,7,["H5800"]],[7,9,["H2708"]],[9,12,["H4687"]],[12,13,["H834"]],[13,16,["H5414"]],[16,17,["H6440"]],[17,21,["H1980"]],[21,23,["H5647"]],[23,24,["H312"]],[24,25,["H430"]],[25,27,["H7812"]],[27,28,[]]]},{"k":11344,"v":[[0,9,["H5428"]],[9,11,["H4480","H5921"]],[11,13,["H127"]],[13,14,["H834"]],[14,17,["H5414"]],[17,20,["H2088"]],[20,21,["H1004"]],[21,22,["H834"]],[22,25,["H6942"]],[25,28,["H8034"]],[28,32,["H7993"]],[32,33,["H4480","H5921"]],[33,35,["H6440"]],[35,38,["H5414"]],[38,43,["H4912"]],[43,46,["H8148"]],[46,48,["H3605"]],[48,49,["H5971"]]]},{"k":11345,"v":[[0,2,["H2088"]],[2,3,["H1004"]],[3,4,["H834"]],[4,5,["H1961"]],[5,6,["H5945"]],[6,10,["H8074"]],[10,13,["H3605"]],[13,15,["H5674"]],[15,16,["H5921"]],[16,22,["H559"]],[22,23,["H4100"]],[23,26,["H3068"]],[26,27,["H6213"]],[27,28,["H3602"]],[28,30,["H2063"]],[30,31,["H776"]],[31,34,["H2088"]],[34,35,["H1004"]]]},{"k":11346,"v":[[0,5,["H559"]],[5,6,["H5921","H834"]],[6,8,["H5800","(H853)"]],[8,10,["H3068"]],[10,11,["H430"]],[11,14,["H1"]],[14,15,["H834"]],[15,18,["H3318"]],[18,22,["H4480","H776"]],[22,24,["H4714"]],[24,27,["H2388"]],[27,29,["H312"]],[29,30,["H430"]],[30,32,["H7812"]],[32,35,["H5647"]],[35,37,["H5921","H3651"]],[37,40,["H935","(H853)"]],[40,41,["H3605"]],[41,42,["H2063"]],[42,43,["H7451"]],[43,44,["H5921"]],[44,45,[]]]},{"k":11347,"v":[[0,5,["H1961"]],[5,8,["H4480","H7093"]],[8,10,["H6242"]],[10,11,["H8141"]],[11,12,["H834"]],[12,13,["H8010"]],[13,15,["H1129"]],[15,17,["H1004"]],[17,20,["H3068"]],[20,24,["H1004"]]]},{"k":11348,"v":[[0,3,["H5892"]],[3,4,["H834"]],[4,5,["H2438"]],[5,7,["H5414"]],[7,9,["H8010"]],[9,10,["H8010"]],[10,11,["H1129"]],[11,14,["(H853)"]],[14,16,["H1121"]],[16,18,["H3478"]],[18,20,["H3427"]],[20,21,["H8033"]]]},{"k":11349,"v":[[0,2,["H8010"]],[2,3,["H1980"]],[3,5,["H2578"]],[5,7,["H2388"]],[7,8,["H5921"]],[8,9,[]]]},{"k":11350,"v":[[0,3,["H1129","(H853)"]],[3,4,["H8412"]],[4,7,["H4057"]],[7,9,["H3605"]],[9,11,["H4543"]],[11,12,["H5892"]],[12,13,["H834"]],[13,15,["H1129"]],[15,17,["H2574"]]]},{"k":11351,"v":[[0,3,["H1129","(H853)"]],[3,4,["H1032"]],[4,6,["H5945"]],[6,8,["H1032"]],[8,10,["H8481"]],[10,11,["H4692"]],[11,12,["H5892"]],[12,14,["H2346"]],[14,15,["H1817"]],[15,17,["H1280"]]]},{"k":11352,"v":[[0,2,["H1191"]],[2,4,["H3605"]],[4,6,["H4543"]],[6,7,["H5892"]],[7,8,["H834"]],[8,9,["H8010"]],[9,10,["H1961"]],[10,12,["H3605"]],[12,14,["H7393"]],[14,15,["H5892"]],[15,18,["H5892"]],[18,21,["H6571"]],[21,23,["H3605"]],[23,24,["H834"]],[24,25,["H8010"]],[25,26,["H2837","H2836"]],[26,28,["H1129"]],[28,30,["H3389"]],[30,33,["H3844"]],[33,36,["H3605"]],[36,38,["H776"]],[38,41,["H4475"]]]},{"k":11353,"v":[[0,3,["H3605"]],[3,5,["H5971"]],[5,8,["H3498"]],[8,9,["H4480"]],[9,11,["H2850"]],[11,14,["H567"]],[14,17,["H6522"]],[17,20,["H2340"]],[20,23,["H2983"]],[23,24,["H834"]],[24,26,["H3808"]],[26,28,["H4480","H3478"]]]},{"k":11354,"v":[[0,2,["H4480"]],[2,4,["H1121"]],[4,5,["H834"]],[5,7,["H3498"]],[7,8,["H310"]],[8,12,["H776"]],[12,13,["H834"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,18,["H3615"]],[18,19,["H3808"]],[19,22,["H8010"]],[22,25,["H5927"]],[25,26,["H4522"]],[26,27,["H5704"]],[27,28,["H2088"]],[28,29,["H3117"]]]},{"k":11355,"v":[[0,2,["H4480"]],[2,4,["H1121"]],[4,6,["H3478"]],[6,8,["H8010"]],[8,9,["H5414"]],[9,10,["H3808"]],[10,11,["H5650"]],[11,14,["H4399"]],[14,15,["H3588"]],[15,16,["H1992"]],[16,18,["H376"]],[18,20,["H4421"]],[20,22,["H8269"]],[22,25,["H7991"]],[25,27,["H8269"]],[27,30,["H7393"]],[30,32,["H6571"]]]},{"k":11356,"v":[[0,2,["H428"]],[2,5,["H8269"]],[5,7,["H4428"]],[7,8,["H8010"]],[8,9,["H5324"]],[9,12,["H3967"]],[12,14,["H2572"]],[14,17,["H7287"]],[17,20,["H5971"]]]},{"k":11357,"v":[[0,2,["H8010"]],[2,4,["H5927"]],[4,6,["H1323"]],[6,8,["H6547"]],[8,12,["H4480","H5892"]],[12,14,["H1732"]],[14,17,["H1004"]],[17,18,["H834"]],[18,21,["H1129"]],[21,24,["H3588"]],[24,26,["H559"]],[26,28,["H802"]],[28,30,["H3808"]],[30,31,["H3427"]],[31,34,["H1004"]],[34,36,["H1732"]],[36,37,["H4428"]],[37,39,["H3478"]],[39,40,["H3588"]],[40,44,["H6944"]],[44,45,["H834","H413"]],[45,47,["H727"]],[47,50,["H3068"]],[50,52,["H935"]]]},{"k":11358,"v":[[0,1,["H227"]],[1,2,["H8010"]],[2,3,["H5927"]],[3,5,["H5930"]],[5,8,["H3068"]],[8,9,["H5921"]],[9,11,["H4196"]],[11,14,["H3068"]],[14,15,["H834"]],[15,18,["H1129"]],[18,19,["H6440"]],[19,21,["H197"]]]},{"k":11359,"v":[[0,5,["H1697"]],[5,7,["H3117","H3117"]],[7,8,["H5927"]],[8,12,["H4687"]],[12,14,["H4872"]],[14,17,["H7676"]],[17,22,["H2320"]],[22,27,["H4150"]],[27,28,["H7969"]],[28,29,["H6471"]],[29,32,["H8141"]],[32,36,["H2282"]],[36,39,["H4682"]],[39,43,["H2282"]],[43,45,["H7620"]],[45,49,["H2282"]],[49,51,["H5521"]]]},{"k":11360,"v":[[0,3,["H5975"]],[3,7,["H4941"]],[7,9,["H1732"]],[9,11,["H1","(H853)"]],[11,13,["H4256"]],[13,16,["H3548"]],[16,17,["H5921"]],[17,19,["H5656"]],[19,22,["H3881"]],[22,23,["H5921"]],[23,25,["H4931"]],[25,27,["H1984"]],[27,29,["H8334"]],[29,30,["H5048"]],[30,32,["H3548"]],[32,35,["H1697"]],[35,39,["H3117","H3117"]],[39,41,["H7778"]],[41,45,["H4256"]],[45,48,["H8179","H8179"]],[48,49,["H3588"]],[49,50,["H3651"]],[50,52,["H1732"]],[52,54,["H376"]],[54,56,["H430"]],[56,57,["H4687"]]]},{"k":11361,"v":[[0,3,["H5493"]],[3,4,["H3808"]],[4,7,["H4687"]],[7,10,["H4428"]],[10,11,["H5921"]],[11,13,["H3548"]],[13,15,["H3881"]],[15,17,["H3605"]],[17,18,["H1697"]],[18,22,["H214"]]]},{"k":11362,"v":[[0,2,["H3605"]],[2,4,["H4399"]],[4,6,["H8010"]],[6,8,["H3559"]],[8,9,["H5704"]],[9,11,["H3117"]],[11,14,["H4143"]],[14,17,["H1004"]],[17,20,["H3068"]],[20,22,["H5704"]],[22,25,["H3615"]],[25,28,["H1004"]],[28,31,["H3068"]],[31,33,["H8003"]]]},{"k":11363,"v":[[0,1,["H227"]],[1,2,["H1980"]],[2,3,["H8010"]],[3,5,["H6100"]],[5,7,["H413"]],[7,8,["H359"]],[8,9,["H5921"]],[9,11,["H3220"]],[11,12,["H8193"]],[12,15,["H776"]],[15,17,["H123"]]]},{"k":11364,"v":[[0,2,["H2361"]],[2,3,["H7971"]],[3,7,["H3027"]],[7,10,["H5650"]],[10,11,["H591"]],[11,13,["H5650"]],[13,16,["H3045"]],[16,19,["H3220"]],[19,22,["H935"]],[22,23,["H5973"]],[23,25,["H5650"]],[25,27,["H8010"]],[27,29,["H211"]],[29,31,["H3947"]],[31,32,["H4480","H8033"]],[32,33,["H702"]],[33,34,["H3967"]],[34,36,["H2572"]],[36,37,["H3603"]],[37,39,["H2091"]],[39,41,["H935"]],[41,43,["H413"]],[43,44,["H4428"]],[44,45,["H8010"]]]},{"k":11365,"v":[[0,4,["H4436"]],[4,6,["H7614"]],[6,7,["H8085","(H853)"]],[7,10,["H8088"]],[10,12,["H8010"]],[12,14,["H935"]],[14,16,["H5254","(H853)"]],[16,17,["H8010"]],[17,20,["H2420"]],[20,22,["H3389"]],[22,25,["H3966"]],[25,26,["H3515"]],[26,27,["H2428"]],[27,29,["H1581"]],[29,31,["H5375"]],[31,32,["H1314"]],[32,34,["H2091"]],[34,36,["H7230"]],[36,38,["H3368"]],[38,39,["H68"]],[39,44,["H935"]],[44,45,["H413"]],[45,46,["H8010"]],[46,48,["H1696"]],[48,49,["H5973"]],[49,50,["(H853)"]],[50,52,["H3605"]],[52,53,["H834"]],[53,54,["H1961"]],[54,55,["H5973"]],[55,57,["H3824"]]]},{"k":11366,"v":[[0,2,["H8010"]],[2,3,["H5046"]],[3,4,["(H853)"]],[4,5,["H3605"]],[5,7,["H1697"]],[7,11,["H3808","H1697"]],[11,12,["H5956"]],[12,14,["H4480","H8010"]],[14,15,["H834"]],[15,17,["H5046"]],[17,19,["H3808"]]]},{"k":11367,"v":[[0,4,["H4436"]],[4,6,["H7614"]],[6,8,["H7200","(H853)"]],[8,10,["H2451"]],[10,12,["H8010"]],[12,15,["H1004"]],[15,16,["H834"]],[16,19,["H1129"]]]},{"k":11368,"v":[[0,3,["H3978"]],[3,6,["H7979"]],[6,9,["H4186"]],[9,12,["H5650"]],[12,15,["H4612"]],[15,18,["H8334"]],[18,21,["H4403"]],[21,23,["H4945"]],[23,27,["H4403"]],[27,30,["H5944"]],[30,32,["H834"]],[32,35,["H5927"]],[35,38,["H1004"]],[38,41,["H3068"]],[41,43,["H1961"]],[43,44,["H3808"]],[44,45,["H5750"]],[45,46,["H7307"]],[46,48,[]]]},{"k":11369,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,10,["H571"]],[10,11,["H1697"]],[11,12,["H834"]],[12,14,["H8085"]],[14,18,["H776"]],[18,19,["H5921"]],[19,21,["H1697"]],[21,23,["H5921"]],[23,25,["H2451"]]]},{"k":11370,"v":[[0,3,["H539"]],[3,4,["H3808"]],[4,6,["H1697"]],[6,7,["H5704","H834"]],[7,9,["H935"]],[9,12,["H5869"]],[12,14,["H7200"]],[14,17,["H2009"]],[17,20,["H2677"]],[20,23,["H4768"]],[23,26,["H2451"]],[26,28,["H3808"]],[28,29,["H5046"]],[29,33,["H3254","H5921"]],[33,35,["H8052"]],[35,36,["H834"]],[36,38,["H8085"]]]},{"k":11371,"v":[[0,1,["H835"]],[1,4,["H376"]],[4,6,["H835"]],[6,8,["H428"]],[8,10,["H5650"]],[10,12,["H5975"]],[12,13,["H8548"]],[13,14,["H6440"]],[14,17,["H8085","(H853)"]],[17,19,["H2451"]]]},{"k":11372,"v":[[0,1,["H1288"]],[1,2,["H1961"]],[2,4,["H3068"]],[4,6,["H430"]],[6,7,["H834"]],[7,8,["H2654"]],[8,12,["H5414"]],[12,14,["H5921"]],[14,16,["H3678"]],[16,19,["H4428"]],[19,22,["H3068"]],[22,24,["H430"]],[24,27,["H430"]],[27,28,["H160","(H853)"]],[28,29,["H3478"]],[29,31,["H5975"]],[31,34,["H5769"]],[34,36,["H5414"]],[36,39,["H4428"]],[39,40,["H5921"]],[40,43,["H6213"]],[43,44,["H4941"]],[44,46,["H6666"]]]},{"k":11373,"v":[[0,3,["H5414"]],[3,5,["H4428"]],[5,7,["H3967"]],[7,9,["H6242"]],[9,10,["H3603"]],[10,12,["H2091"]],[12,15,["H1314"]],[15,16,["H3966"]],[16,17,["H7230"]],[17,19,["H3368"]],[19,20,["H68"]],[20,21,["H3808"]],[21,22,["H1961"]],[22,25,["H1931"]],[25,26,["H1314"]],[26,27,["H834"]],[27,29,["H4436"]],[29,31,["H7614"]],[31,32,["H5414"]],[32,33,["H4428"]],[33,34,["H8010"]]]},{"k":11374,"v":[[0,3,["H5650"]],[3,4,["H1571"]],[4,6,["H2438"]],[6,9,["H5650"]],[9,11,["H8010"]],[11,12,["H834"]],[12,13,["H935"]],[13,14,["H2091"]],[14,16,["H4480","H211"]],[16,17,["H935"]],[17,18,["H418"]],[18,19,["H6086"]],[19,21,["H3368"]],[21,22,["H68"]]]},{"k":11375,"v":[[0,3,["H4428"]],[3,4,["H6213","(H853)"]],[4,7,["H418"]],[7,8,["H6086"]],[8,9,["H4546"]],[9,12,["H1004"]],[12,15,["H3068"]],[15,19,["H4428"]],[19,20,["H1004"]],[20,22,["H3658"]],[22,24,["H5035"]],[24,26,["H7891"]],[26,30,["H3808"]],[30,31,["H1992"]],[31,32,["H7200"]],[32,33,["H6440"]],[33,36,["H776"]],[36,38,["H3063"]]]},{"k":11376,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H5414"]],[4,7,["H4436"]],[7,9,["H7614","(H853)"]],[9,10,["H3605"]],[10,12,["H2656"]],[12,13,["H834"]],[13,15,["H7592"]],[15,16,["H4480","H905"]],[16,18,["H834"]],[18,21,["H935"]],[21,22,["H413"]],[22,24,["H4428"]],[24,27,["H2015"]],[27,30,["H1980"]],[30,34,["H776"]],[34,35,["H1931"]],[35,38,["H5650"]]]},{"k":11377,"v":[[0,3,["H4948"]],[3,5,["H2091"]],[5,6,["H834"]],[6,7,["H935"]],[7,9,["H8010"]],[9,11,["H259"]],[11,12,["H8141"]],[12,13,["H1961"]],[13,14,["H8337"]],[14,15,["H3967"]],[15,17,["H8346"]],[17,19,["H8337"]],[19,20,["H3603"]],[20,22,["H2091"]]]},{"k":11378,"v":[[0,1,["H905"]],[1,4,["H4480","H376","H8446"]],[4,6,["H5503"]],[6,7,["H935"]],[7,9,["H3605"]],[9,11,["H4428"]],[11,13,["H6152"]],[13,15,["H6346"]],[15,18,["H776"]],[18,19,["H935"]],[19,20,["H2091"]],[20,22,["H3701"]],[22,24,["H8010"]]]},{"k":11379,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H6213"]],[4,6,["H3967"]],[6,7,["H6793"]],[7,9,["H7820"]],[9,10,["H2091"]],[10,11,["H8337"]],[11,12,["H3967"]],[12,15,["H7820"]],[15,16,["H2091"]],[16,17,["H5927"]],[17,18,["H5921"]],[18,19,["H259"]],[19,20,["H6793"]]]},{"k":11380,"v":[[0,2,["H7969"]],[2,3,["H3967"]],[3,4,["H4043"]],[4,8,["H7820"]],[8,9,["H2091"]],[9,10,["H7969"]],[10,11,["H3967"]],[11,14,["H2091"]],[14,15,["H5927"]],[15,16,["H5921"]],[16,17,["H259"]],[17,18,["H4043"]],[18,21,["H4428"]],[21,22,["H5414"]],[22,26,["H1004"]],[26,29,["H3293"]],[29,31,["H3844"]]]},{"k":11381,"v":[[0,3,["H4428"]],[3,4,["H6213"]],[4,6,["H1419"]],[6,7,["H3678"]],[7,9,["H8127"]],[9,11,["H6823"]],[11,14,["H2889"]],[14,15,["H2091"]]]},{"k":11382,"v":[[0,4,["H8337"]],[4,5,["H4609"]],[5,8,["H3678"]],[8,11,["H3534"]],[11,13,["H2091"]],[13,16,["H270"]],[16,19,["H3678"]],[19,21,["H3027"]],[21,24,["H4480","H2088","H4480","H2088"]],[24,25,["H5921"]],[25,27,["H7675"]],[27,28,["H4725"]],[28,30,["H8147"]],[30,31,["H738"]],[31,32,["H5975"]],[32,33,["H681"]],[33,35,["H3027"]]]},{"k":11383,"v":[[0,2,["H8147","H6240"]],[2,3,["H738"]],[3,4,["H5975"]],[4,5,["H8033"]],[5,9,["H4480","H2088"]],[9,13,["H4480","H2088"]],[13,14,["H5921"]],[14,16,["H8337"]],[16,17,["H4609"]],[17,20,["H3808"]],[20,22,["H3651"]],[22,23,["H6213"]],[23,25,["H3605"]],[25,26,["H4467"]]]},{"k":11384,"v":[[0,2,["H3605"]],[2,4,["H4945"]],[4,5,["H3627"]],[5,7,["H4428"]],[7,8,["H8010"]],[8,11,["H2091"]],[11,13,["H3605"]],[13,15,["H3627"]],[15,18,["H1004"]],[18,21,["H3293"]],[21,23,["H3844"]],[23,26,["H5462"]],[26,27,["H2091"]],[27,28,["H369"]],[28,31,["H3701"]],[31,36,["H3972"]],[36,37,["H2803"]],[37,41,["H3117"]],[41,43,["H8010"]]]},{"k":11385,"v":[[0,1,["H3588"]],[1,3,["H4428"]],[3,4,["H591"]],[4,5,["H1980"]],[5,7,["H8659"]],[7,8,["H5973"]],[8,10,["H5650"]],[10,12,["H2361"]],[12,14,["H7969"]],[14,15,["H8141"]],[15,16,["H259"]],[16,17,["H935"]],[17,19,["H591"]],[19,21,["H8659"]],[21,22,["H5375"]],[22,23,["H2091"]],[23,25,["H3701"]],[25,26,["H8143"]],[26,28,["H6971"]],[28,30,["H8500"]]]},{"k":11386,"v":[[0,2,["H4428"]],[2,3,["H8010"]],[3,4,["H1431"]],[4,5,["H4480","H3605"]],[5,7,["H4428"]],[7,10,["H776"]],[10,12,["H6239"]],[12,14,["H2451"]]]},{"k":11387,"v":[[0,2,["H3605"]],[2,4,["H4428"]],[4,7,["H776"]],[7,8,["H1245","(H853)"]],[8,10,["H6440"]],[10,12,["H8010"]],[12,14,["H8085","(H853)"]],[14,16,["H2451"]],[16,17,["H834"]],[17,18,["H430"]],[18,20,["H5414"]],[20,23,["H3820"]]]},{"k":11388,"v":[[0,2,["H1992"]],[2,3,["H935"]],[3,5,["H376"]],[5,7,["H4503"]],[7,8,["H3627"]],[8,10,["H3701"]],[10,12,["H3627"]],[12,14,["H2091"]],[14,16,["H8008"]],[16,17,["H5402"]],[17,19,["H1314"]],[19,20,["H5483"]],[20,22,["H6505"]],[22,24,["H1697"]],[24,25,["H8141"]],[25,27,["H8141"]]]},{"k":11389,"v":[[0,2,["H8010"]],[2,3,["H1961"]],[3,4,["H702"]],[4,5,["H505"]],[5,6,["H723"]],[6,8,["H5483"]],[8,10,["H4818"]],[10,12,["H8147","H6240"]],[12,13,["H505"]],[13,14,["H6571"]],[14,17,["H5117"]],[17,20,["H7393"]],[20,21,["H5892"]],[21,23,["H5973"]],[23,25,["H4428"]],[25,27,["H3389"]]]},{"k":11390,"v":[[0,3,["H1961","H4910"]],[3,5,["H3605"]],[5,7,["H4428"]],[7,8,["H4480"]],[8,10,["H5104"]],[10,12,["H5704"]],[12,14,["H776"]],[14,17,["H6430"]],[17,19,["H5704"]],[19,21,["H1366"]],[21,23,["H4714"]]]},{"k":11391,"v":[[0,3,["H4428"]],[3,4,["H5414","(H853)"]],[4,5,["H3701"]],[5,7,["H3389"]],[7,9,["H68"]],[9,12,["H730"]],[12,13,["H5414"]],[13,18,["H8256"]],[18,19,["H834"]],[19,24,["H8219"]],[24,26,["H7230"]]]},{"k":11392,"v":[[0,3,["H3318"]],[3,5,["H8010"]],[5,6,["H5483"]],[6,9,["H4480","H4714"]],[9,13,["H4480","H3605"]],[13,14,["H776"]]]},{"k":11393,"v":[[0,3,["H7605"]],[3,6,["H1697"]],[6,8,["H8010"]],[8,9,["H7223"]],[9,11,["H314"]],[11,13,["H1992"]],[13,14,["H3808"]],[14,15,["H3789"]],[15,16,["H5921"]],[16,18,["H1697"]],[18,20,["H5416"]],[20,22,["H5030"]],[22,24,["H5921"]],[24,26,["H5016"]],[26,28,["H281"]],[28,30,["H7888"]],[30,34,["H2378"]],[34,36,["H3260"]],[36,38,["H2374"]],[38,39,["H5921"]],[39,40,["H3379"]],[40,42,["H1121"]],[42,44,["H5028"]]]},{"k":11394,"v":[[0,2,["H8010"]],[2,3,["H4427"]],[3,5,["H3389"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,8,["H3478"]],[8,9,["H705"]],[9,10,["H8141"]]]},{"k":11395,"v":[[0,2,["H8010"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,10,["H6912"]],[10,13,["H5892"]],[13,15,["H1732"]],[15,17,["H1"]],[17,19,["H7346"]],[19,21,["H1121"]],[21,22,["H4427"]],[22,25,["H8478"]]]},{"k":11396,"v":[[0,2,["H7346"]],[2,3,["H1980"]],[3,5,["H7927"]],[5,6,["H3588"]],[6,8,["H7927"]],[8,10,["H3605"]],[10,11,["H3478"]],[11,12,["H935"]],[12,16,["H4427","(H853)"]]]},{"k":11397,"v":[[0,5,["H1961"]],[5,7,["H3379"]],[7,9,["H1121"]],[9,11,["H5028"]],[11,12,["H1931"]],[12,15,["H4714"]],[15,16,["H834"]],[16,19,["H1272"]],[19,22,["H4480","H6440"]],[22,24,["H8010"]],[24,26,["H4428"]],[26,27,["H8085"]],[27,30,["H3379"]],[30,31,["H7725"]],[31,34,["H4480","H4714"]]]},{"k":11398,"v":[[0,3,["H7971"]],[3,5,["H7121"]],[5,8,["H3379"]],[8,10,["H3605"]],[10,11,["H3478"]],[11,12,["H935"]],[12,14,["H1696"]],[14,15,["H413"]],[15,16,["H7346"]],[16,17,["H559"]]]},{"k":11399,"v":[[0,2,["H1"]],[2,3,["(H853)"]],[3,5,["H5923"]],[5,6,["H7185"]],[6,7,["H6258"]],[7,9,["H7043"]],[9,13,["H7186"]],[13,14,["H4480","H5656"]],[14,17,["H1"]],[17,20,["H3515"]],[20,21,["H4480","H5923"]],[21,22,["H834"]],[22,24,["H5414"]],[24,25,["H5921"]],[25,30,["H5647"]],[30,31,[]]]},{"k":11400,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H7725"]],[7,8,["H413"]],[8,10,["H5750"]],[10,11,["H7969"]],[11,12,["H3117"]],[12,15,["H5971"]],[15,16,["H1980"]]]},{"k":11401,"v":[[0,2,["H4428"]],[2,3,["H7346"]],[3,5,["H3289"]],[5,6,["H854"]],[6,9,["H2205"]],[9,10,["H834"]],[10,11,["H1961"]],[11,12,["H5975"]],[12,13,["H6440"]],[13,14,["H8010"]],[14,16,["H1"]],[16,20,["H1961","H2416"]],[20,21,["H559"]],[21,22,["H349"]],[22,24,["H3289"]],[24,25,["H859"]],[25,28,["H7725"]],[28,29,["H1697"]],[29,31,["H2088"]],[31,32,["H5971"]]]},{"k":11402,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H559"]],[6,7,["H518"]],[7,9,["H1961"]],[9,10,["H2896"]],[10,12,["H2088"]],[12,13,["H5971"]],[13,15,["H7521"]],[15,18,["H1696"]],[18,19,["H2896"]],[19,20,["H1697"]],[20,21,["H413"]],[21,25,["H1961"]],[25,27,["H5650"]],[27,29,["H3605","H3117"]]]},{"k":11403,"v":[[0,3,["H5800","(H853)"]],[3,5,["H6098"]],[5,6,["H834"]],[6,9,["H2205"]],[9,10,["H3289"]],[10,14,["H3289"]],[14,15,["H854"]],[15,18,["H3206"]],[18,19,["H834"]],[19,22,["H1431"]],[22,23,["H854"]],[23,26,["H5975"]],[26,27,["H6440"]],[27,28,[]]]},{"k":11404,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H4100"]],[6,8,["H3289"]],[8,9,["H859"]],[9,13,["H7725"]],[13,14,["H1697","(H853)"]],[14,16,["H2088"]],[16,17,["H5971"]],[17,18,["H834"]],[18,20,["H1696"]],[20,21,["H413"]],[21,23,["H559"]],[23,24,["H7043"]],[24,25,["H4480"]],[25,27,["H5923"]],[27,28,["H834"]],[28,30,["H1"]],[30,32,["H5414"]],[32,33,["H5921"]],[33,34,[]]]},{"k":11405,"v":[[0,4,["H3206"]],[4,5,["H834"]],[5,8,["H1431"]],[8,9,["H854"]],[9,11,["H1696"]],[11,12,["H854"]],[12,14,["H559"]],[14,15,["H3541"]],[15,18,["H559"]],[18,20,["H5971"]],[20,21,["H834"]],[21,22,["H1696"]],[22,23,["H413"]],[23,25,["H559"]],[25,27,["H1"]],[27,31,["H3513","(H853)","H5923"]],[31,37,["H859","H7043"]],[37,38,["H4480","H5921"]],[38,40,["H3541"]],[40,43,["H559"]],[43,44,["H413"]],[44,47,["H6995"]],[47,51,["H5666"]],[51,54,["H1"]],[54,55,["H4480","H4975"]]]},{"k":11406,"v":[[0,2,["H6258"]],[2,4,["H1"]],[4,5,["H6006"]],[5,7,["H3515"]],[7,8,["H5923"]],[8,9,["H5921"]],[9,11,["H589"]],[11,14,["H3254"]],[14,15,["H5921"]],[15,17,["H5923"]],[17,19,["H1"]],[19,20,["H3256"]],[20,23,["H7752"]],[23,25,["H589"]],[25,30,["H6137"]]]},{"k":11407,"v":[[0,2,["H3379"]],[2,4,["H3605"]],[4,6,["H5971"]],[6,7,["H935"]],[7,8,["H413"]],[8,9,["H7346"]],[9,12,["H7992"]],[12,13,["H3117"]],[13,14,["H834"]],[14,16,["H4428"]],[16,17,["H1696"]],[17,18,["H559"]],[18,20,["H7725"]],[20,21,["H413"]],[21,25,["H7992"]],[25,26,["H3117"]]]},{"k":11408,"v":[[0,3,["H4428"]],[3,4,["H6030"]],[4,6,["H7186"]],[6,8,["H4428"]],[8,9,["H7346"]],[9,10,["H5800","(H853)"]],[10,12,["H6098"]],[12,16,["H2205"]]]},{"k":11409,"v":[[0,2,["H1696","H413"]],[2,6,["H6098"]],[6,10,["H3206"]],[10,11,["H559"]],[11,13,["H1"]],[13,17,["H3513","(H853)","H5923"]],[17,19,["H589"]],[19,21,["H3254"]],[21,22,["H5921"]],[22,24,["H1"]],[24,25,["H3256"]],[25,28,["H7752"]],[28,30,["H589"]],[30,35,["H6137"]]]},{"k":11410,"v":[[0,3,["H4428"]],[3,4,["H8085"]],[4,5,["H3808"]],[5,6,["H413"]],[6,8,["H5971"]],[8,9,["H3588"]],[9,11,["H5252"]],[11,12,["H1961"]],[12,13,["H4480","H5973"]],[13,14,["H430"]],[14,15,["H4616"]],[15,17,["H3068"]],[17,19,["H6965","(H853)"]],[19,21,["H1697"]],[21,22,["H834"]],[22,24,["H1696"]],[24,27,["H3027"]],[27,29,["H281"]],[29,31,["H7888"]],[31,32,["H413"]],[32,33,["H3379"]],[33,35,["H1121"]],[35,37,["H5028"]]]},{"k":11411,"v":[[0,3,["H3605"]],[3,4,["H3478"]],[4,6,["H3588"]],[6,8,["H4428"]],[8,10,["H3808"]],[10,11,["H8085"]],[11,15,["H5971"]],[15,16,["H7725","(H853)"]],[16,18,["H4428"]],[18,19,["H559"]],[19,20,["H4100"]],[20,21,["H2506"]],[21,25,["H1732"]],[25,29,["H3808"]],[29,30,["H5159"]],[30,33,["H1121"]],[33,35,["H3448"]],[35,37,["H376"]],[37,40,["H168"]],[40,42,["H3478"]],[42,44,["H6258"]],[44,45,["H1732"]],[45,46,["H7200"]],[46,50,["H1004"]],[50,52,["H3605"]],[52,53,["H3478"]],[53,54,["H1980"]],[54,57,["H168"]]]},{"k":11412,"v":[[0,5,["H1121"]],[5,7,["H3478"]],[7,9,["H3427"]],[9,12,["H5892"]],[12,14,["H3063"]],[14,15,["H7346"]],[15,16,["H4427"]],[16,17,["H5921"]],[17,18,[]]]},{"k":11413,"v":[[0,2,["H4428"]],[2,3,["H7346"]],[3,4,["H7971","(H853)"]],[4,5,["H1913"]],[5,6,["H834"]],[6,8,["H5921"]],[8,10,["H4522"]],[10,13,["H1121"]],[13,15,["H3478"]],[15,16,["H7275"]],[16,19,["H68"]],[19,22,["H4191"]],[22,24,["H4428"]],[24,25,["H7346"]],[25,27,["H553"]],[27,31,["H5927"]],[31,34,["H4818"]],[34,36,["H5127"]],[36,38,["H3389"]]]},{"k":11414,"v":[[0,2,["H3478"]],[2,3,["H6586"]],[3,6,["H1004"]],[6,8,["H1732"]],[8,9,["H5704"]],[9,10,["H2088"]],[10,11,["H3117"]]]},{"k":11415,"v":[[0,3,["H7346"]],[3,5,["H935"]],[5,7,["H3389"]],[7,9,["H6950","(H853)"]],[9,12,["H1004"]],[12,14,["H3063"]],[14,16,["H1144"]],[16,18,["H3967"]],[18,20,["H8084"]],[20,21,["H505"]],[21,22,["H977"]],[22,26,["H6213","H4421"]],[26,28,["H3898"]],[28,29,["H5973"]],[29,30,["H3478"]],[30,34,["H7725","(H853)"]],[34,36,["H4467"]],[36,39,["H7346"]]]},{"k":11416,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H8098"]],[9,11,["H376"]],[11,13,["H430"]],[13,14,["H559"]]]},{"k":11417,"v":[[0,1,["H559"]],[1,2,["H413"]],[2,3,["H7346"]],[3,5,["H1121"]],[5,7,["H8010"]],[7,8,["H4428"]],[8,10,["H3063"]],[10,12,["H413"]],[12,13,["H3605"]],[13,14,["H3478"]],[14,16,["H3063"]],[16,18,["H1144"]],[18,19,["H559"]]]},{"k":11418,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,7,["H3808"]],[7,9,["H5927"]],[9,10,["H3808"]],[10,11,["H3898"]],[11,12,["H5973"]],[12,14,["H251"]],[14,15,["H7725"]],[15,17,["H376"]],[17,20,["H1004"]],[20,21,["H3588"]],[21,22,["H2088"]],[22,23,["H1697"]],[23,25,["H1961"]],[25,26,["H4480","H854"]],[26,30,["H8085","(H853)"]],[30,32,["H1697"]],[32,35,["H3068"]],[35,37,["H7725"]],[37,39,["H4480","H1980"]],[39,40,["H413"]],[40,41,["H3379"]]]},{"k":11419,"v":[[0,2,["H7346"]],[2,3,["H3427"]],[3,5,["H3389"]],[5,7,["H1129"]],[7,8,["H5892"]],[8,10,["H4692"]],[10,12,["H3063"]]]},{"k":11420,"v":[[0,2,["H1129"]],[2,3,["(H853)"]],[3,4,["H1035"]],[4,6,["H5862"]],[6,8,["H8620"]]]},{"k":11421,"v":[[0,2,["H1049"]],[2,4,["H7755"]],[4,6,["H5725"]]]},{"k":11422,"v":[[0,2,["H1661"]],[2,4,["H4762"]],[4,6,["H2128"]]]},{"k":11423,"v":[[0,2,["H115"]],[2,4,["H3923"]],[4,6,["H5825"]]]},{"k":11424,"v":[[0,2,["H6881"]],[2,4,["H357"]],[4,6,["H2275"]],[6,7,["H834"]],[7,10,["H3063"]],[10,13,["H1144"]],[13,14,["H4694"]],[14,15,["H5892"]]]},{"k":11425,"v":[[0,3,["H2388","(H853)"]],[3,6,["H4694"]],[6,8,["H5414"]],[8,9,["H5057"]],[9,13,["H214"]],[13,15,["H3978"]],[15,18,["H8081"]],[18,20,["H3196"]]]},{"k":11426,"v":[[0,3,["H3605"]],[3,5,["H5892","H5892"]],[5,8,["H6793"]],[8,10,["H7420"]],[10,15,["H2388","H7235","H3966"]],[15,16,["H1961"]],[16,17,["H3063"]],[17,19,["H1144"]],[19,22,[]]]},{"k":11427,"v":[[0,3,["H3548"]],[3,6,["H3881"]],[6,7,["H834"]],[7,10,["H3605"]],[10,11,["H3478"]],[11,12,["H3320"]],[12,13,["H5921"]],[13,17,["H4480","H3605"]],[17,19,["H1366"]]]},{"k":11428,"v":[[0,1,["H3588"]],[1,3,["H3881"]],[3,4,["H5800","(H853)"]],[4,6,["H4054"]],[6,9,["H272"]],[9,11,["H1980"]],[11,13,["H3063"]],[13,15,["H3389"]],[15,16,["H3588"]],[16,17,["H3379"]],[17,20,["H1121"]],[20,24,["H2186"]],[24,29,["H4480","H3547"]],[29,32,["H3068"]]]},{"k":11429,"v":[[0,3,["H5975"]],[3,5,["H3548"]],[5,9,["H1116"]],[9,13,["H8163"]],[13,17,["H5695"]],[17,18,["H834"]],[18,21,["H6213"]]]},{"k":11430,"v":[[0,2,["H310"]],[2,6,["H4480","H3605"]],[6,8,["H7626"]],[8,10,["H3478"]],[10,13,["H5414","(H853)"]],[13,15,["H3824"]],[15,17,["H1245","(H853)"]],[17,19,["H3068"]],[19,20,["H430"]],[20,22,["H3478"]],[22,23,["H935"]],[23,25,["H3389"]],[25,27,["H2076"]],[27,30,["H3068"]],[30,31,["H430"]],[31,34,["H1"]]]},{"k":11431,"v":[[0,3,["H2388","(H853)"]],[3,5,["H4438"]],[5,7,["H3063"]],[7,9,["(H853)"]],[9,10,["H7346"]],[10,12,["H1121"]],[12,14,["H8010"]],[14,15,["H553"]],[15,16,["H7969"]],[16,17,["H8141"]],[17,18,["H3588"]],[18,19,["H7969"]],[19,20,["H8141"]],[20,22,["H1980"]],[22,25,["H1870"]],[25,27,["H1732"]],[27,29,["H8010"]]]},{"k":11432,"v":[[0,2,["H7346"]],[2,3,["H3947"]],[3,4,["(H853)"]],[4,5,["H4258"]],[5,7,["H1323"]],[7,9,["H3406"]],[9,11,["H1121"]],[11,13,["H1732"]],[13,15,["H802"]],[15,17,["H32"]],[17,19,["H1323"]],[19,21,["H446"]],[21,23,["H1121"]],[23,25,["H3448"]]]},{"k":11433,"v":[[0,2,["H3205"]],[2,4,["H1121","(H853)"]],[4,5,["H3266"]],[5,7,["H8114"]],[7,9,["H2093"]]]},{"k":11434,"v":[[0,2,["H310"]],[2,5,["H3947","(H853)"]],[5,6,["H4601"]],[6,8,["H1323"]],[8,10,["H53"]],[10,12,["H3205"]],[12,13,["(H853)"]],[13,14,["H29"]],[14,16,["H6262"]],[16,18,["H2124"]],[18,20,["H8019"]]]},{"k":11435,"v":[[0,2,["H7346"]],[2,3,["H157","(H853)"]],[3,4,["H4601"]],[4,6,["H1323"]],[6,8,["H53"]],[8,10,["H4480","H3605"]],[10,12,["H802"]],[12,15,["H6370"]],[15,16,["H3588"]],[16,18,["H5375"]],[18,19,["H8083","H6240"]],[19,20,["H802"]],[20,22,["H8346"]],[22,23,["H6370"]],[23,25,["H3205"]],[25,26,["H6242"]],[26,28,["H8083"]],[28,29,["H1121"]],[29,31,["H8346"]],[31,32,["H1323"]]]},{"k":11436,"v":[[0,2,["H7346"]],[2,3,["H5975","(H853)"]],[3,4,["H29"]],[4,6,["H1121"]],[6,8,["H4601"]],[8,10,["H7218"]],[10,13,["H5057"]],[13,16,["H251"]],[16,17,["H3588"]],[17,23,["H4427"]]]},{"k":11437,"v":[[0,4,["H995"]],[4,6,["H6555"]],[6,8,["H4480","H3605"]],[8,10,["H1121"]],[10,12,["H3605"]],[12,14,["H776"]],[14,16,["H3063"]],[16,18,["H1144"]],[18,20,["H3605"]],[20,21,["H4694"]],[21,22,["H5892"]],[22,25,["H5414"]],[25,27,["H4202"]],[27,29,["H7230"]],[29,32,["H7592"]],[32,33,["H1995"]],[33,34,["H802"]]]},{"k":11438,"v":[[0,5,["H1961"]],[5,7,["H7346"]],[7,9,["H3559"]],[9,11,["H4438"]],[11,14,["H2394"]],[14,17,["H5800","(H853)"]],[17,19,["H8451"]],[19,22,["H3068"]],[22,24,["H3605"]],[24,25,["H3478"]],[25,26,["H5973"]],[26,27,[]]]},{"k":11439,"v":[[0,5,["H1961"]],[5,9,["H2549"]],[9,10,["H8141"]],[10,12,["H4428"]],[12,13,["H7346"]],[13,14,["H7895"]],[14,15,["H4428"]],[15,17,["H4714"]],[17,19,["H5927"]],[19,20,["H5921"]],[20,21,["H3389"]],[21,22,["H3588"]],[22,25,["H4603"]],[25,28,["H3068"]]]},{"k":11440,"v":[[0,3,["H505","H3967"]],[3,4,["H7393"]],[4,6,["H8346"]],[6,7,["H505"]],[7,8,["H6571"]],[8,11,["H5971"]],[11,13,["H369"]],[13,14,["H4557"]],[14,15,["H834"]],[15,16,["H935"]],[16,17,["H5973"]],[17,21,["H4480","H4714"]],[21,23,["H3864"]],[23,25,["H5525"]],[25,28,["H3569"]]]},{"k":11441,"v":[[0,3,["H3920","(H853)"]],[3,5,["H4694"]],[5,6,["H5892"]],[6,7,["H834"]],[7,10,["H3063"]],[10,12,["H935"]],[12,13,["H5704"]],[13,14,["H3389"]]]},{"k":11442,"v":[[0,2,["H935"]],[2,3,["H8098"]],[3,5,["H5030"]],[5,6,["H413"]],[6,7,["H7346"]],[7,11,["H8269"]],[11,13,["H3063"]],[13,14,["H834"]],[14,17,["H622"]],[17,18,["H413"]],[18,19,["H3389"]],[19,21,["H4480","H6440"]],[21,22,["H7895"]],[22,24,["H559"]],[24,27,["H3541"]],[27,28,["H559"]],[28,30,["H3068"]],[30,31,["H859"]],[31,33,["H5800"]],[33,38,["H589"]],[38,39,["H637"]],[39,40,["H5800"]],[40,44,["H3027"]],[44,46,["H7895"]]]},{"k":11443,"v":[[0,3,["H8269"]],[3,5,["H3478"]],[5,8,["H4428"]],[8,10,["H3665"]],[10,13,["H559"]],[13,15,["H3068"]],[15,17,["H6662"]]]},{"k":11444,"v":[[0,4,["H3068"]],[4,5,["H7200"]],[5,6,["H3588"]],[6,9,["H3665"]],[9,11,["H1697"]],[11,14,["H3068"]],[14,15,["H1961"]],[15,16,["H413"]],[16,17,["H8098"]],[17,18,["H559"]],[18,22,["H3665"]],[22,26,["H3808"]],[26,27,["H7843"]],[27,32,["H5414"]],[32,34,["H4592"]],[34,35,["H6413"]],[35,38,["H2534"]],[38,40,["H3808"]],[40,43,["H5413"]],[43,45,["H3389"]],[45,48,["H3027"]],[48,50,["H7895"]]]},{"k":11445,"v":[[0,1,["H3588"]],[1,4,["H1961"]],[4,6,["H5650"]],[6,10,["H3045"]],[10,12,["H5656"]],[12,15,["H5656"]],[15,18,["H4467"]],[18,21,["H776"]]]},{"k":11446,"v":[[0,2,["H7895"]],[2,3,["H4428"]],[3,5,["H4714"]],[5,7,["H5927"]],[7,8,["H5921"]],[8,9,["H3389"]],[9,12,["H3947","(H853)"]],[12,14,["H214"]],[14,17,["H1004"]],[17,20,["H3068"]],[20,23,["H214"]],[23,26,["H4428"]],[26,27,["H1004"]],[27,29,["H3947","(H853)"]],[29,30,["H3605"]],[30,33,["H3947","(H853)"]],[33,36,["H4043"]],[36,38,["H2091"]],[38,39,["H834"]],[39,40,["H8010"]],[40,42,["H6213"]]]},{"k":11447,"v":[[0,2,["H8478"]],[2,4,["H4428"]],[4,5,["H7346"]],[5,6,["H6213"]],[6,7,["H4043"]],[7,9,["H5178"]],[9,11,["H6485"]],[11,13,["H5921"]],[13,15,["H3027"]],[15,18,["H8269"]],[18,21,["H7323"]],[21,23,["H8104"]],[23,25,["H6607"]],[25,28,["H4428"]],[28,29,["H1004"]]]},{"k":11448,"v":[[0,2,["H4480","H1767"]],[2,4,["H4428"]],[4,6,["H1961","H935"]],[6,8,["H1004"]],[8,11,["H3068"]],[11,13,["H7323"]],[13,14,["H935"]],[14,16,["H5375"]],[16,21,["H7725"]],[21,22,["H413"]],[22,24,["H7323"]],[24,25,["H8372"]]]},{"k":11449,"v":[[0,5,["H3665"]],[5,7,["H639"]],[7,10,["H3068"]],[10,11,["H7725"]],[11,12,["H4480"]],[12,17,["H3808"]],[17,18,["H7843"]],[18,20,["H3617"]],[20,22,["H1571"]],[22,24,["H3063"]],[24,25,["H1697"]],[25,26,["H1961"]],[26,27,["H2896"]]]},{"k":11450,"v":[[0,2,["H4428"]],[2,3,["H7346"]],[3,5,["H2388"]],[5,7,["H3389"]],[7,9,["H4427"]],[9,10,["H3588"]],[10,11,["H7346"]],[11,13,["H259"]],[13,15,["H705"]],[15,16,["H8141"]],[16,17,["H1121"]],[17,22,["H4427"]],[22,25,["H4427"]],[25,26,["H7651","H6240"]],[26,27,["H8141"]],[27,29,["H3389"]],[29,31,["H5892"]],[31,32,["H834"]],[32,34,["H3068"]],[34,36,["H977"]],[36,39,["H4480","H3605"]],[39,41,["H7626"]],[41,43,["H3478"]],[43,45,["H7760","(H853)"]],[45,47,["H8034"]],[47,48,["H8033"]],[48,51,["H517"]],[51,52,["H8034"]],[52,54,["H5279"]],[54,56,["H5984"]]]},{"k":11451,"v":[[0,3,["H6213"]],[3,4,["H7451"]],[4,5,["H3588"]],[5,7,["H3559"]],[7,8,["H3808"]],[8,10,["H3820"]],[10,12,["H1875","(H853)"]],[12,14,["H3068"]]]},{"k":11452,"v":[[0,3,["H1697"]],[3,5,["H7346"]],[5,6,["H7223"]],[6,8,["H314"]],[8,10,["H1992"]],[10,11,["H3808"]],[11,12,["H3789"]],[12,15,["H1697"]],[15,17,["H8098"]],[17,19,["H5030"]],[19,22,["H5714"]],[22,24,["H2374"]],[24,26,["H3187"]],[26,30,["H4421"]],[30,32,["H7346"]],[32,34,["H3379"]],[34,35,["H3605","H3117"]]]},{"k":11453,"v":[[0,2,["H7346"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,12,["H5892"]],[12,14,["H1732"]],[14,16,["H29"]],[16,18,["H1121"]],[18,19,["H4427"]],[19,22,["H8478"]]]},{"k":11454,"v":[[0,4,["H8083","H6240"]],[4,5,["H8141"]],[5,7,["H4428"]],[7,8,["H3379"]],[8,10,["H29"]],[10,12,["H4427"]],[12,13,["H5921"]],[13,14,["H3063"]]]},{"k":11455,"v":[[0,2,["H4427"]],[2,3,["H7969"]],[3,4,["H8141"]],[4,6,["H3389"]],[6,8,["H517"]],[8,9,["H8034"]],[9,12,["H4322"]],[12,14,["H1323"]],[14,16,["H222"]],[16,17,["H4480"]],[17,18,["H1390"]],[18,21,["H1961"]],[21,22,["H4421"]],[22,23,["H996"]],[23,24,["H29"]],[24,26,["H3379"]]]},{"k":11456,"v":[[0,2,["H29"]],[2,3,["H631","(H853)"]],[3,5,["H4421"]],[5,10,["H2428"]],[10,13,["H1368"]],[13,15,["H4421"]],[15,17,["H702"]],[17,18,["H3967"]],[18,19,["H505"]],[19,20,["H977"]],[20,21,["H376"]],[21,22,["H3379"]],[22,28,["H6186","H4421"]],[28,29,["H5973"]],[29,32,["H8083"]],[32,33,["H3967"]],[33,34,["H505"]],[34,35,["H977"]],[35,36,["H376"]],[36,39,["H1368"]],[39,41,["H2428"]]]},{"k":11457,"v":[[0,2,["H29"]],[2,4,["H6965"]],[4,5,["H4480","H5921"]],[5,6,["H2022"]],[6,7,["H6787"]],[7,8,["H834"]],[8,11,["H2022"]],[11,12,["H669"]],[12,14,["H559"]],[14,15,["H8085"]],[15,18,["H3379"]],[18,20,["H3605"]],[20,21,["H3478"]]]},{"k":11458,"v":[[0,3,["H3808"]],[3,5,["H3045"]],[5,6,["H3588"]],[6,8,["H3068"]],[8,9,["H430"]],[9,11,["H3478"]],[11,12,["H5414"]],[12,14,["H4467"]],[14,15,["H5921"]],[15,16,["H3478"]],[16,18,["H1732"]],[18,20,["H5769"]],[20,27,["H1121"]],[27,30,["H1285"]],[30,32,["H4417"]]]},{"k":11459,"v":[[0,2,["H3379"]],[2,4,["H1121"]],[4,6,["H5028"]],[6,8,["H5650"]],[8,10,["H8010"]],[10,12,["H1121"]],[12,14,["H1732"]],[14,17,["H6965"]],[17,20,["H4775"]],[20,21,["H5921"]],[21,23,["H113"]]]},{"k":11460,"v":[[0,4,["H6908"]],[4,5,["H5921"]],[5,7,["H7386"]],[7,8,["H376"]],[8,10,["H1121"]],[10,12,["H1100"]],[12,16,["H553"]],[16,17,["H5921"]],[17,18,["H7346"]],[18,20,["H1121"]],[20,22,["H8010"]],[22,24,["H7346"]],[24,25,["H1961"]],[25,26,["H5288"]],[26,28,["H7390","H3824"]],[28,31,["H3808"]],[31,32,["H2388","H6440"]],[32,33,[]]]},{"k":11461,"v":[[0,2,["H6258"]],[2,3,["H859"]],[3,4,["H559"]],[4,6,["H2388"]],[6,8,["H4467"]],[8,11,["H3068"]],[11,14,["H3027"]],[14,17,["H1121"]],[17,19,["H1732"]],[19,21,["H859"]],[21,24,["H7227"]],[24,25,["H1995"]],[25,29,["H5973"]],[29,31,["H2091"]],[31,32,["H5695"]],[32,33,["H834"]],[33,34,["H3379"]],[34,35,["H6213"]],[35,38,["H430"]]]},{"k":11462,"v":[[0,3,["H3808"]],[3,5,["H5080","(H853)"]],[5,7,["H3548"]],[7,10,["H3068","(H853)"]],[10,12,["H1121"]],[12,14,["H175"]],[14,17,["H3881"]],[17,20,["H6213"]],[20,22,["H3548"]],[22,28,["H5971"]],[28,31,["H776"]],[31,34,["H3605"]],[34,35,["H935"]],[35,37,["H4390","H3027"]],[37,41,["H1121","H1241"]],[41,42,["H6499"]],[42,44,["H7651"]],[44,45,["H352"]],[45,49,["H1961"]],[49,51,["H3548"]],[51,56,["H3808"]],[56,57,["H430"]]]},{"k":11463,"v":[[0,4,["H587"]],[4,6,["H3068"]],[6,9,["H430"]],[9,13,["H3808"]],[13,14,["H5800"]],[14,18,["H3548"]],[18,20,["H8334"]],[20,23,["H3068"]],[23,26,["H1121"]],[26,28,["H175"]],[28,31,["H3881"]],[31,35,["H4399"]]]},{"k":11464,"v":[[0,3,["H6999"]],[3,6,["H3068"]],[6,8,["H1242","H1242"]],[8,11,["H6153","H6153"]],[11,13,["H5930"]],[13,15,["H5561"]],[15,16,["H7004"]],[16,18,["H3899","H4635"]],[18,24,["H5921"]],[24,26,["H2889"]],[26,27,["H7979"]],[27,30,["H4501"]],[30,32,["H2091"]],[32,35,["H5216"]],[35,38,["H1197"]],[38,40,["H6153","H6153"]],[40,41,["H3588"]],[41,42,["H587"]],[42,43,["H8104","(H853)"]],[43,45,["H4931"]],[45,48,["H3068"]],[48,50,["H430"]],[50,52,["H859"]],[52,54,["H5800"]],[54,55,[]]]},{"k":11465,"v":[[0,2,["H2009"]],[2,3,["H430"]],[3,6,["H5973"]],[6,10,["H7218"]],[10,13,["H3548"]],[13,15,["H8643"]],[15,16,["H2689"]],[16,19,["H7321"]],[19,20,["H5921"]],[20,23,["H1121"]],[23,25,["H3478"]],[25,26,["H3898"]],[26,28,["H408"]],[28,29,["H5973"]],[29,31,["H3068"]],[31,32,["H430"]],[32,35,["H1"]],[35,36,["H3588"]],[36,39,["H3808"]],[39,40,["H6743"]]]},{"k":11466,"v":[[0,2,["H3379"]],[2,3,["H5437","(H853)"]],[3,5,["H3993"]],[5,8,["H935"]],[8,9,["H4480","H310"]],[9,13,["H1961"]],[13,14,["H6440"]],[14,15,["H3063"]],[15,18,["H3993"]],[18,20,["H4480","H310"]],[20,21,[]]]},{"k":11467,"v":[[0,3,["H3063"]],[3,5,["H6437"]],[5,6,["H2009"]],[6,8,["H4421"]],[8,10,["H6440"]],[10,12,["H268"]],[12,15,["H6817"]],[15,18,["H3068"]],[18,21,["H3548"]],[21,22,["H2690"]],[22,25,["H2689"]]]},{"k":11468,"v":[[0,3,["H376"]],[3,5,["H3063"]],[5,8,["H7321"]],[8,12,["H376"]],[12,14,["H3063"]],[14,15,["H7321"]],[15,19,["H1961"]],[19,21,["H430"]],[21,22,["H5062","(H853)"]],[22,23,["H3379"]],[23,25,["H3605"]],[25,26,["H3478"]],[26,27,["H6440"]],[27,28,["H29"]],[28,30,["H3063"]]]},{"k":11469,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,6,["H5127"]],[6,7,["H4480","H6440"]],[7,8,["H3063"]],[8,10,["H430"]],[10,11,["H5414"]],[11,15,["H3027"]]]},{"k":11470,"v":[[0,2,["H29"]],[2,5,["H5971"]],[5,6,["H5221"]],[6,10,["H7227"]],[10,11,["H4347"]],[11,15,["H5307"]],[15,16,["H2491"]],[16,18,["H4480","H3478"]],[18,19,["H2568"]],[19,20,["H3967"]],[20,21,["H505"]],[21,22,["H977"]],[22,23,["H376"]]]},{"k":11471,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,8,["H3665"]],[8,10,["H1931"]],[10,11,["H6256"]],[11,14,["H1121"]],[14,16,["H3063"]],[16,17,["H553"]],[17,18,["H3588"]],[18,20,["H8172"]],[20,21,["H5921"]],[21,23,["H3068"]],[23,24,["H430"]],[24,27,["H1"]]]},{"k":11472,"v":[[0,2,["H29"]],[2,3,["H7291"]],[3,4,["H310"]],[4,5,["H3379"]],[5,7,["H3920"]],[7,8,["H5892"]],[8,9,["H4480"]],[9,10,["(H853)"]],[10,11,["H1008"]],[11,12,["H854"]],[12,14,["H1323"]],[14,17,["H3466"]],[17,18,["H854"]],[18,20,["H1323"]],[20,23,["H6085"]],[23,26,["H1323"]],[26,27,[]]]},{"k":11473,"v":[[0,1,["H3808"]],[1,3,["H3379"]],[3,4,["H6113"]],[4,5,["H3581"]],[5,6,["H5750"]],[6,9,["H3117"]],[9,11,["H29"]],[11,14,["H3068"]],[14,15,["H5062"]],[15,19,["H4191"]]]},{"k":11474,"v":[[0,2,["H29"]],[2,4,["H2388"]],[4,6,["H5375"]],[6,7,["H702","H6240"]],[7,8,["H802"]],[8,10,["H3205"]],[10,11,["H6242"]],[11,13,["H8147"]],[13,14,["H1121"]],[14,16,["H8337","H6240"]],[16,17,["H1323"]]]},{"k":11475,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H29"]],[8,11,["H1870"]],[11,14,["H1697"]],[14,16,["H3789"]],[16,19,["H4097"]],[19,22,["H5030"]],[22,23,["H5714"]]]},{"k":11476,"v":[[0,2,["H29"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,13,["H5892"]],[13,15,["H1732"]],[15,17,["H609"]],[17,19,["H1121"]],[19,20,["H4427"]],[20,23,["H8478"]],[23,26,["H3117"]],[26,28,["H776"]],[28,30,["H8252"]],[30,31,["H6235"]],[31,32,["H8141"]]]},{"k":11477,"v":[[0,2,["H609"]],[2,3,["H6213"]],[3,7,["H2896"]],[7,9,["H3477"]],[9,12,["H5869"]],[12,15,["H3068"]],[15,17,["H430"]]]},{"k":11478,"v":[[0,4,["H5493","(H853)"]],[4,6,["H4196"]],[6,9,["H5236"]],[9,14,["H1116"]],[14,17,["H7665","(H853)"]],[17,19,["H4676"]],[19,22,["H1438","(H853)"]],[22,24,["H842"]]]},{"k":11479,"v":[[0,2,["H559"]],[2,3,["H3063"]],[3,5,["H1875","(H853)"]],[5,7,["H3068"]],[7,8,["H430"]],[8,11,["H1"]],[11,14,["H6213"]],[14,16,["H8451"]],[16,19,["H4687"]]]},{"k":11480,"v":[[0,4,["H5493"]],[4,7,["H4480","H3605"]],[7,9,["H5892"]],[9,11,["H3063","(H853)"]],[11,14,["H1116"]],[14,17,["H2553"]],[17,20,["H4467"]],[20,22,["H8252"]],[22,23,["H6440"]],[23,24,[]]]},{"k":11481,"v":[[0,3,["H1129"]],[3,4,["H4694"]],[4,5,["H5892"]],[5,7,["H3063"]],[7,8,["H3588"]],[8,10,["H776"]],[10,12,["H8252"]],[12,16,["H369"]],[16,17,["H4421"]],[17,19,["H428"]],[19,20,["H8141"]],[20,21,["H3588"]],[21,23,["H3068"]],[23,27,["H5117"]]]},{"k":11482,"v":[[0,3,["H559"]],[3,5,["H3063"]],[5,8,["H1129","(H853)"]],[8,9,["H428"]],[9,10,["H5892"]],[10,13,["H5437"]],[13,15,["H2346"]],[15,17,["H4026"]],[17,18,["H1817"]],[18,20,["H1280"]],[20,23,["H776"]],[23,25,["H5750"]],[25,26,["H6440"]],[26,28,["H3588"]],[28,31,["H1875","(H853)"]],[31,33,["H3068"]],[33,35,["H430"]],[35,38,["H1875"]],[38,45,["H5117"]],[45,48,["H4480","H5439"]],[48,51,["H1129"]],[51,53,["H6743"]]]},{"k":11483,"v":[[0,2,["H609"]],[2,3,["H1961"]],[3,5,["H2428"]],[5,9,["H5375"]],[9,10,["H6793"]],[10,12,["H7420"]],[12,14,["H4480"]],[14,15,["H3063"]],[15,16,["H7969"]],[16,17,["H3967"]],[17,18,["H505"]],[18,22,["H4480","H1144"]],[22,24,["H5375"]],[24,25,["H4043"]],[25,27,["H1869"]],[27,28,["H7198"]],[28,30,["H3967"]],[30,32,["H8084"]],[32,33,["H505"]],[33,34,["H3605"]],[34,35,["H428"]],[35,38,["H1368"]],[38,40,["H2428"]]]},{"k":11484,"v":[[0,4,["H3318"]],[4,5,["H413"]],[5,7,["H2226"]],[7,9,["H3569"]],[9,12,["H2428"]],[12,15,["H505"]],[15,16,["H505"]],[16,18,["H7969"]],[18,19,["H3967"]],[19,20,["H4818"]],[20,22,["H935"]],[22,23,["H5704"]],[23,24,["H4762"]]]},{"k":11485,"v":[[0,2,["H609"]],[2,4,["H3318"]],[4,5,["H6440"]],[5,13,["H6186","H4421"]],[13,16,["H1516"]],[16,18,["H6859"]],[18,20,["H4762"]]]},{"k":11486,"v":[[0,2,["H609"]],[2,3,["H7121"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H559"]],[10,11,["H3068"]],[11,14,["H369"]],[14,15,["H5973"]],[15,18,["H5826"]],[18,19,["H996"]],[19,21,["H7227"]],[21,27,["H369"]],[27,28,["H3581"]],[28,29,["H5826"]],[29,32,["H3068"]],[32,34,["H430"]],[34,35,["H3588"]],[35,37,["H8172"]],[37,38,["H5921"]],[38,43,["H8034"]],[43,45,["H935"]],[45,46,["H5921"]],[46,47,["H2088"]],[47,48,["H1995"]],[48,50,["H3068"]],[50,51,["H859"]],[51,54,["H430"]],[54,56,["H408"]],[56,57,["H582"]],[57,58,["H6113"]],[58,59,["H5973"]],[59,60,[]]]},{"k":11487,"v":[[0,3,["H3068"]],[3,4,["H5062","(H853)"]],[4,6,["H3569"]],[6,7,["H6440"]],[7,8,["H609"]],[8,10,["H6440"]],[10,11,["H3063"]],[11,14,["H3569"]],[14,15,["H5127"]]]},{"k":11488,"v":[[0,2,["H609"]],[2,5,["H5971"]],[5,6,["H834"]],[6,8,["H5973"]],[8,10,["H7291"]],[10,12,["H5704"]],[12,13,["H1642"]],[13,16,["H4480","H3569"]],[16,18,["H5307"]],[18,22,["H369"]],[22,23,["H4241"]],[23,25,["H3588"]],[25,28,["H7665"]],[28,29,["H6440"]],[29,31,["H3068"]],[31,33,["H6440"]],[33,35,["H4264"]],[35,39,["H5375"]],[39,40,["H3966"]],[40,41,["H7235"]],[41,42,["H7998"]]]},{"k":11489,"v":[[0,3,["H5221","(H853)"]],[3,4,["H3605"]],[4,6,["H5892"]],[6,8,["H5439"]],[8,9,["H1642"]],[9,10,["H3588"]],[10,12,["H6343"]],[12,15,["H3068"]],[15,16,["H1961"]],[16,17,["H5921"]],[17,21,["H962","(H853)"]],[21,22,["H3605"]],[22,24,["H5892"]],[24,25,["H3588"]],[25,27,["H1961"]],[27,29,["H7227"]],[29,30,["H961"]],[30,32,[]]]},{"k":11490,"v":[[0,2,["H5221"]],[2,3,["H1571"]],[3,5,["H168"]],[5,7,["H4735"]],[7,10,["H7617"]],[10,11,["H6629"]],[11,13,["H1581"]],[13,15,["H7230"]],[15,17,["H7725"]],[17,19,["H3389"]]]},{"k":11491,"v":[[0,3,["H7307"]],[3,5,["H430"]],[5,6,["H1961"]],[6,7,["H5921"]],[7,8,["H5838"]],[8,10,["H1121"]],[10,12,["H5752"]]]},{"k":11492,"v":[[0,4,["H3318"]],[4,6,["H6440"]],[6,7,["H609"]],[7,9,["H559"]],[9,12,["H8085"]],[12,15,["H609"]],[15,17,["H3605"]],[17,18,["H3063"]],[18,20,["H1144"]],[20,22,["H3068"]],[22,24,["H5973"]],[24,28,["H1961"]],[28,29,["H5973"]],[29,32,["H518"]],[32,34,["H1875"]],[34,39,["H4672"]],[39,43,["H518"]],[43,45,["H5800"]],[45,49,["H5800"]],[49,50,[]]]},{"k":11493,"v":[[0,5,["H7227","H3117"]],[5,6,["H3478"]],[6,9,["H3808"]],[9,11,["H571"]],[11,12,["H430"]],[12,14,["H3808"]],[14,16,["H3384"]],[16,17,["H3548"]],[17,19,["H3808"]],[19,20,["H8451"]]]},{"k":11494,"v":[[0,6,["H6862"]],[6,8,["H7725"]],[8,9,["H5921"]],[9,11,["H3068"]],[11,12,["H430"]],[12,14,["H3478"]],[14,16,["H1245"]],[16,20,["H4672"]],[20,22,[]]]},{"k":11495,"v":[[0,3,["H1992"]],[3,4,["H6256"]],[4,7,["H369"]],[7,8,["H7965"]],[8,13,["H3318"]],[13,19,["H935"]],[19,20,["H3588"]],[20,21,["H7227"]],[21,22,["H4103"]],[22,24,["H5921"]],[24,25,["H3605"]],[25,27,["H3427"]],[27,30,["H776"]]]},{"k":11496,"v":[[0,2,["H1471"]],[2,4,["H3807"]],[4,6,["H1471"]],[6,8,["H5892"]],[8,10,["H5892"]],[10,11,["H3588"]],[11,12,["H430"]],[12,14,["H2000"]],[14,17,["H3605"]],[17,18,["H6869"]]]},{"k":11497,"v":[[0,3,["H859","H2388"]],[3,7,["H408"]],[7,9,["H3027"]],[9,11,["H7503"]],[11,12,["H3588"]],[12,14,["H6468"]],[14,16,["H3426"]],[16,17,["H7939"]]]},{"k":11498,"v":[[0,3,["H609"]],[3,4,["H8085"]],[4,5,["H428"]],[5,6,["H1697"]],[6,9,["H5016"]],[9,11,["H5752"]],[11,13,["H5030"]],[13,16,["H2388"]],[16,19,["H5674"]],[19,22,["H8251"]],[22,25,["H4480","H3605"]],[25,27,["H776"]],[27,29,["H3063"]],[29,31,["H1144"]],[31,34,["H4480"]],[34,36,["H5892"]],[36,37,["H834"]],[37,40,["H3920"]],[40,42,["H4480","H2022"]],[42,43,["H669"]],[43,45,["H2318","(H853)"]],[45,47,["H4196"]],[47,50,["H3068"]],[50,51,["H834"]],[51,53,["H6440"]],[53,55,["H197"]],[55,58,["H3068"]]]},{"k":11499,"v":[[0,3,["H6908","(H853)"]],[3,4,["H3605"]],[4,5,["H3063"]],[5,7,["H1144"]],[7,10,["H1481"]],[10,11,["H5973"]],[11,15,["H4480","H669"]],[15,17,["H4519"]],[17,21,["H4480","H8095"]],[21,22,["H3588"]],[22,24,["H5307"]],[24,25,["H5921"]],[25,29,["H4480","H3478"]],[29,31,["H7230"]],[31,34,["H7200"]],[34,35,["H3588"]],[35,37,["H3068"]],[37,39,["H430"]],[39,41,["H5973"]],[41,42,[]]]},{"k":11500,"v":[[0,5,["H6908"]],[5,7,["H3389"]],[7,10,["H7992"]],[10,11,["H2320"]],[11,14,["H2568","H6240"]],[14,15,["H8141"]],[15,18,["H4438"]],[18,20,["H609"]]]},{"k":11501,"v":[[0,3,["H2076"]],[3,6,["H3068"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,10,["H4480"]],[10,12,["H7998"]],[12,16,["H935"]],[16,17,["H7651"]],[17,18,["H3967"]],[18,19,["H1241"]],[19,21,["H7651"]],[21,22,["H505"]],[22,23,["H6629"]]]},{"k":11502,"v":[[0,3,["H935"]],[3,6,["H1285"]],[6,8,["H1875","(H853)"]],[8,10,["H3068"]],[10,11,["H430"]],[11,14,["H1"]],[14,16,["H3605"]],[16,18,["H3824"]],[18,21,["H3605"]],[21,23,["H5315"]]]},{"k":11503,"v":[[0,2,["H3605","H834"]],[2,4,["H3808"]],[4,5,["H1875"]],[5,7,["H3068"]],[7,8,["H430"]],[8,10,["H3478"]],[10,15,["H4191"]],[15,16,["H4480"]],[16,17,["H6996"]],[17,18,["H5704"]],[18,19,["H1419"]],[19,21,["H4480","H376"]],[21,22,["H5704"]],[22,23,["H802"]]]},{"k":11504,"v":[[0,3,["H7650"]],[3,6,["H3068"]],[6,9,["H1419"]],[9,10,["H6963"]],[10,13,["H8643"]],[13,16,["H2689"]],[16,19,["H7782"]]]},{"k":11505,"v":[[0,2,["H3605"]],[2,3,["H3063"]],[3,4,["H8055"]],[4,5,["H5921"]],[5,7,["H7621"]],[7,8,["H3588"]],[8,11,["H7650"]],[11,13,["H3605"]],[13,15,["H3824"]],[15,17,["H1245"]],[17,21,["H3605"]],[21,22,["H7522"]],[22,26,["H4672"]],[26,31,["H3068"]],[31,34,["H5117"]],[34,36,["H4480","H5439"]]]},{"k":11506,"v":[[0,2,["H1571"]],[2,4,["H4601"]],[4,6,["H517"]],[6,8,["H609"]],[8,10,["H4428"]],[10,12,["H5493"]],[12,16,["H4480","H1377"]],[16,17,["H834"]],[17,20,["H6213"]],[20,22,["H4656"]],[22,25,["H842"]],[25,27,["H609"]],[27,29,["H3772","(H853)"]],[29,31,["H4656"]],[31,33,["H1854"]],[33,36,["H8313"]],[36,40,["H5158"]],[40,41,["H6939"]]]},{"k":11507,"v":[[0,4,["H1116"]],[4,6,["H3808"]],[6,8,["H5493"]],[8,11,["H4480","H3478"]],[11,12,["H7535"]],[12,14,["H3824"]],[14,16,["H609"]],[16,17,["H1961"]],[17,18,["H8003"]],[18,19,["H3605"]],[19,21,["H3117"]]]},{"k":11508,"v":[[0,4,["H935"]],[4,6,["H1004"]],[6,8,["H430","(H853)"]],[8,13,["H1"]],[13,15,["H6944"]],[15,21,["H6944"]],[21,22,["H3701"]],[22,24,["H2091"]],[24,26,["H3627"]]]},{"k":11509,"v":[[0,3,["H1961"]],[3,4,["H3808"]],[4,6,["H4421"]],[6,7,["H5704"]],[7,9,["H2568"]],[9,11,["H7970"]],[11,12,["H8141"]],[12,15,["H4438"]],[15,17,["H609"]]]},{"k":11510,"v":[[0,3,["H8337"]],[3,5,["H7970"]],[5,6,["H8141"]],[6,9,["H4438"]],[9,11,["H609"]],[11,12,["H1201"]],[12,13,["H4428"]],[13,15,["H3478"]],[15,17,["H5927"]],[17,18,["H5921"]],[18,19,["H3063"]],[19,21,["H1129","(H853)"]],[21,22,["H7414"]],[22,29,["H5414"]],[29,30,["H1115"]],[30,32,["H3318"]],[32,35,["H935"]],[35,37,["H609"]],[37,38,["H4428"]],[38,40,["H3063"]]]},{"k":11511,"v":[[0,2,["H609"]],[2,4,["H3318"]],[4,5,["H3701"]],[5,7,["H2091"]],[7,11,["H4480","H214"]],[11,14,["H1004"]],[14,17,["H3068"]],[17,21,["H4428"]],[21,22,["H1004"]],[22,24,["H7971"]],[24,25,["H413"]],[25,26,["H1130"]],[26,27,["H4428"]],[27,29,["H758"]],[29,31,["H3427"]],[31,33,["H1834"]],[33,34,["H559"]]]},{"k":11512,"v":[[0,4,["H1285"]],[4,5,["H996"]],[5,12,["H996"]],[12,14,["H1"]],[14,17,["H1"]],[17,18,["H2009"]],[18,21,["H7971"]],[21,23,["H3701"]],[23,25,["H2091"]],[25,26,["H1980"]],[26,27,["H6565"]],[27,29,["H1285"]],[29,30,["H854"]],[30,31,["H1201"]],[31,32,["H4428"]],[32,34,["H3478"]],[34,38,["H5927"]],[38,39,["H4480","H5921"]],[39,40,[]]]},{"k":11513,"v":[[0,2,["H1130"]],[2,3,["H8085"]],[3,4,["H413"]],[4,5,["H4428"]],[5,6,["H609"]],[6,8,["H7971","(H853)"]],[8,10,["H8269"]],[10,12,["H834"]],[12,13,["H2428"]],[13,14,["H413"]],[14,16,["H5892"]],[16,18,["H3478"]],[18,21,["H5221","(H853)"]],[21,22,["H5859"]],[22,24,["H1835"]],[24,26,["H66"]],[26,28,["H3605"]],[28,30,["H4543"]],[30,31,["H5892"]],[31,33,["H5321"]]]},{"k":11514,"v":[[0,5,["H1961"]],[5,7,["H1201"]],[7,8,["H8085"]],[8,13,["H2308"]],[13,14,["H4480","H1129","(H853)"]],[14,16,["H7414"]],[16,18,["(H853)"]],[18,20,["H4399"]],[20,21,["H7673"]]]},{"k":11515,"v":[[0,2,["H609"]],[2,4,["H4428"]],[4,5,["H3947","(H853)"]],[5,6,["H3605"]],[6,7,["H3063"]],[7,11,["H5375","(H853)"]],[11,13,["H68"]],[13,15,["H7414"]],[15,18,["H6086"]],[18,20,["H834"]],[20,21,["H1201"]],[21,23,["H1129"]],[23,26,["H1129"]],[26,27,["(H853)"]],[27,28,["H1387"]],[28,30,["H4709"]]]},{"k":11516,"v":[[0,3,["H1931"]],[3,4,["H6256"]],[4,5,["H2607"]],[5,7,["H7203"]],[7,8,["H935"]],[8,9,["H413"]],[9,10,["H609"]],[10,11,["H4428"]],[11,13,["H3063"]],[13,15,["H559"]],[15,16,["H413"]],[16,21,["H8172"]],[21,22,["H5921"]],[22,24,["H4428"]],[24,26,["H758"]],[26,28,["H3808"]],[28,29,["H8172"]],[29,30,["H5921"]],[30,32,["H3068"]],[32,34,["H430"]],[34,35,["H5921","H3651"]],[35,38,["H2428"]],[38,41,["H4428"]],[41,43,["H758"]],[43,44,["H4422"]],[44,48,["H4480","H3027"]]]},{"k":11517,"v":[[0,1,["H1961"]],[1,2,["H3808"]],[2,4,["H3569"]],[4,7,["H3864"]],[7,9,["H7230"]],[9,10,["H2428"]],[10,12,["H3966"]],[12,13,["H7235"]],[13,14,["H7393"]],[14,16,["H6571"]],[16,21,["H8172"]],[21,22,["H5921"]],[22,24,["H3068"]],[24,26,["H5414"]],[26,30,["H3027"]]]},{"k":11518,"v":[[0,1,["H3588"]],[1,3,["H5869"]],[3,6,["H3068"]],[6,10,["H7751"]],[10,13,["H3605"]],[13,14,["H776"]],[14,18,["H2388"]],[18,22,["H5973"]],[22,25,["H3824"]],[25,27,["H8003"]],[27,28,["H413"]],[28,30,["H5921","H2063"]],[30,34,["H5528"]],[34,35,["H3588"]],[35,37,["H4480","H6258"]],[37,40,["H3426"]],[40,41,["H4421"]]]},{"k":11519,"v":[[0,2,["H609"]],[2,4,["H3707"]],[4,5,["H413"]],[5,7,["H7203"]],[7,9,["H5414"]],[9,13,["H4115"]],[13,14,["H1004"]],[14,15,["H3588"]],[15,20,["H2197"]],[20,21,["H5973"]],[21,24,["H5921"]],[24,25,["H2063"]],[25,28,["H609"]],[28,29,["H7533"]],[29,31,["H4480"]],[31,33,["H5971"]],[33,35,["H1931"]],[35,36,["H6256"]]]},{"k":11520,"v":[[0,2,["H2009"]],[2,4,["H1697"]],[4,6,["H609"]],[6,7,["H7223"]],[7,9,["H314"]],[9,10,["H2009"]],[10,13,["H3789"]],[13,14,["H5921"]],[14,16,["H5612"]],[16,19,["H4428"]],[19,21,["H3063"]],[21,23,["H3478"]]]},{"k":11521,"v":[[0,2,["H609"]],[2,5,["H7970"]],[5,7,["H8672"]],[7,8,["H8141"]],[8,11,["H4438"]],[11,13,["H2456"]],[13,16,["H7272"]],[16,17,["H5704"]],[17,19,["H2483"]],[19,21,["H4605"]],[21,23,["H1571"]],[23,26,["H2483"]],[26,28,["H1875"]],[28,29,["H3808","(H853)"]],[29,32,["H3068"]],[32,33,["H3588"]],[33,36,["H7495"]]]},{"k":11522,"v":[[0,2,["H609"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,8,["H4191"]],[8,11,["H259"]],[11,13,["H705"]],[13,14,["H8141"]],[14,17,["H4427"]]]},{"k":11523,"v":[[0,3,["H6912"]],[3,8,["H6913"]],[8,9,["H834"]],[9,12,["H3738"]],[12,17,["H5892"]],[17,19,["H1732"]],[19,21,["H7901"]],[21,25,["H4904"]],[25,26,["H834"]],[26,28,["H4390"]],[28,31,["H1314"]],[31,34,["H2177"]],[34,41,["H7543","H4842","H4639"]],[41,44,["H8313"]],[44,46,["H5704","H3966"]],[46,47,["H1419"]],[47,48,["H8316"]],[48,50,[]]]},{"k":11524,"v":[[0,2,["H3092"]],[2,4,["H1121"]],[4,5,["H4427"]],[5,8,["H8478"]],[8,11,["H2388"]],[11,12,["H5921"]],[12,13,["H3478"]]]},{"k":11525,"v":[[0,3,["H5414"]],[3,4,["H2428"]],[4,6,["H3605"]],[6,8,["H1219"]],[8,9,["H5892"]],[9,11,["H3063"]],[11,13,["H5414"]],[13,14,["H5333"]],[14,17,["H776"]],[17,19,["H3063"]],[19,23,["H5892"]],[23,25,["H669"]],[25,26,["H834"]],[26,27,["H609"]],[27,29,["H1"]],[29,31,["H3920"]]]},{"k":11526,"v":[[0,3,["H3068"]],[3,4,["H1961"]],[4,5,["H5973"]],[5,6,["H3092"]],[6,7,["H3588"]],[7,9,["H1980"]],[9,12,["H7223"]],[12,13,["H1870"]],[13,16,["H1"]],[16,17,["H1732"]],[17,19,["H1875"]],[19,20,["H3808"]],[20,22,["H1168"]]]},{"k":11527,"v":[[0,1,["H3588"]],[1,2,["H1875"]],[2,6,["H430"]],[6,9,["H1"]],[9,11,["H1980"]],[11,14,["H4687"]],[14,16,["H3808"]],[16,19,["H4639"]],[19,21,["H3478"]]]},{"k":11528,"v":[[0,3,["H3068"]],[3,4,["H3559","(H853)"]],[4,6,["H4467"]],[6,9,["H3027"]],[9,11,["H3605"]],[11,12,["H3063"]],[12,13,["H5414"]],[13,15,["H3092"]],[15,16,["H4503"]],[16,19,["H1961"]],[19,20,["H6239"]],[20,22,["H3519"]],[22,24,["H7230"]]]},{"k":11529,"v":[[0,3,["H3820"]],[3,6,["H1361"]],[6,9,["H1870"]],[9,12,["H3068"]],[12,13,["H5750"]],[13,16,["H5493","(H853)"]],[16,19,["H1116"]],[19,21,["H842"]],[21,24,["H4480","H3063"]]]},{"k":11530,"v":[[0,4,["H7969"]],[4,5,["H8141"]],[5,8,["H4427"]],[8,10,["H7971"]],[10,13,["H8269"]],[13,16,["H1134"]],[16,19,["H5662"]],[19,22,["H2148"]],[22,25,["H5417"]],[25,28,["H4322"]],[28,30,["H3925"]],[30,33,["H5892"]],[33,35,["H3063"]]]},{"k":11531,"v":[[0,2,["H5973"]],[2,6,["H3881"]],[6,8,["H8098"]],[8,10,["H5418"]],[10,12,["H2069"]],[12,14,["H6214"]],[14,16,["H8070"]],[16,18,["H3083"]],[18,20,["H138"]],[20,22,["H2900"]],[22,24,["H2899"]],[24,25,["H3881"]],[25,27,["H5973"]],[27,29,["H476"]],[29,31,["H3088"]],[31,32,["H3548"]]]},{"k":11532,"v":[[0,3,["H3925"]],[3,5,["H3063"]],[5,9,["H5612"]],[9,12,["H8451"]],[12,15,["H3068"]],[15,16,["H5973"]],[16,20,["H5437"]],[20,22,["H3605"]],[22,24,["H5892"]],[24,26,["H3063"]],[26,28,["H3925"]],[28,30,["H5971"]]]},{"k":11533,"v":[[0,3,["H6343"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H5921"]],[8,9,["H3605"]],[9,11,["H4467"]],[11,14,["H776"]],[14,15,["H834"]],[15,18,["H5439"]],[18,19,["H3063"]],[19,25,["H3898","H3808"]],[25,26,["H5973"]],[26,27,["H3092"]]]},{"k":11534,"v":[[0,3,["H4480"]],[3,5,["H6430"]],[5,6,["H935"]],[6,7,["H3092"]],[7,8,["H4503"]],[8,10,["H4853"]],[10,11,["H3701"]],[11,12,["H1571"]],[12,14,["H6163"]],[14,15,["H935"]],[15,17,["H6629"]],[17,18,["H7651"]],[18,19,["H505"]],[19,21,["H7651"]],[21,22,["H3967"]],[22,23,["H352"]],[23,25,["H7651"]],[25,26,["H505"]],[26,28,["H7651"]],[28,29,["H3967"]],[29,31,["H8495"]]]},{"k":11535,"v":[[0,2,["H3092"]],[2,3,["H1961","H1980"]],[3,4,["H1432"]],[4,5,["H5704","H4605"]],[5,8,["H1129"]],[8,10,["H3063"]],[10,11,["H1003"]],[11,13,["H5892"]],[13,15,["H4543"]]]},{"k":11536,"v":[[0,3,["H1961"]],[3,4,["H7227"]],[4,5,["H4399"]],[5,8,["H5892"]],[8,10,["H3063"]],[10,13,["H376"]],[13,15,["H4421"]],[15,17,["H1368"]],[17,19,["H2428"]],[19,22,["H3389"]]]},{"k":11537,"v":[[0,2,["H428"]],[2,5,["H6486"]],[5,11,["H1004"]],[11,14,["H1"]],[14,16,["H3063"]],[16,18,["H8269"]],[18,20,["H505"]],[20,21,["H5734"]],[21,23,["H8269"]],[23,25,["H5973"]],[25,28,["H1368"]],[28,30,["H2428"]],[30,31,["H7969"]],[31,32,["H3967"]],[32,33,["H505"]]]},{"k":11538,"v":[[0,2,["H5921","H3027"]],[2,6,["H3076"]],[6,8,["H8269"]],[8,10,["H5973"]],[10,13,["H3967"]],[13,15,["H8084"]],[15,16,["H505"]]]},{"k":11539,"v":[[0,2,["H5921","H3027"]],[2,5,["H6007"]],[5,7,["H1121"]],[7,9,["H2147"]],[9,13,["H5068"]],[13,16,["H3068"]],[16,19,["H5973"]],[19,21,["H3967"]],[21,22,["H505"]],[22,24,["H1368"]],[24,26,["H2428"]]]},{"k":11540,"v":[[0,2,["H4480"]],[2,3,["H1144"]],[3,4,["H450"]],[4,7,["H1368"]],[7,9,["H2428"]],[9,11,["H5973"]],[11,14,["H5401"]],[14,16,["H7198"]],[16,18,["H4043"]],[18,20,["H3967"]],[20,21,["H505"]]]},{"k":11541,"v":[[0,2,["H5921","H3027"]],[2,5,["H3075"]],[5,7,["H5973"]],[7,10,["H3967"]],[10,12,["H8084"]],[12,13,["H505"]],[13,15,["H2502"]],[15,18,["H6635"]]]},{"k":11542,"v":[[0,1,["H428"]],[1,3,["H8334","(H853)"]],[3,5,["H4428"]],[5,6,["H4480","H905"]],[6,8,["H834"]],[8,10,["H4428"]],[10,11,["H5414"]],[11,14,["H4013"]],[14,15,["H5892"]],[15,17,["H3605"]],[17,18,["H3063"]]]},{"k":11543,"v":[[0,2,["H3092"]],[2,3,["H1961"]],[3,4,["H6239"]],[4,6,["H3519"]],[6,8,["H7230"]],[8,11,["H2859"]],[11,13,["H256"]]]},{"k":11544,"v":[[0,2,["H7093"]],[2,4,["H8141"]],[4,7,["H3381"]],[7,8,["H413"]],[8,9,["H256"]],[9,11,["H8111"]],[11,13,["H256"]],[13,14,["H2076"]],[14,15,["H6629"]],[15,17,["H1241"]],[17,21,["H7230"]],[21,25,["H5971"]],[25,26,["H834"]],[26,29,["H5973"]],[29,32,["H5496"]],[32,36,["H5927"]],[36,39,["H413"]],[39,40,["H7433"]]]},{"k":11545,"v":[[0,2,["H256"]],[2,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3092"]],[8,9,["H4428"]],[9,11,["H3063"]],[11,14,["H1980"]],[14,15,["H5973"]],[15,18,["H7433"]],[18,21,["H559"]],[21,23,["H3644"]],[23,26,["H3644"]],[26,30,["H5971"]],[30,33,["H5971"]],[33,38,["H5973"]],[38,42,["H4421"]]]},{"k":11546,"v":[[0,2,["H3092"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H4428"]],[6,8,["H3478"]],[8,9,["H1875"]],[9,12,["H4994"]],[12,13,["(H853)"]],[13,15,["H1697"]],[15,18,["H3068"]],[18,20,["H3117"]]]},{"k":11547,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,7,["H6908","(H853)"]],[7,9,["H5030"]],[9,10,["H702"]],[10,11,["H3967"]],[11,12,["H376"]],[12,14,["H559"]],[14,15,["H413"]],[15,19,["H1980"]],[19,20,["H413"]],[20,21,["H7433"]],[21,23,["H4421"]],[23,24,["H518"]],[24,27,["H2308"]],[27,30,["H559"]],[30,32,["H5927"]],[32,34,["H430"]],[34,36,["H5414"]],[36,40,["H4428"]],[40,41,["H3027"]]]},{"k":11548,"v":[[0,2,["H3092"]],[2,3,["H559"]],[3,6,["H369"]],[6,7,["H6311"]],[7,9,["H5030"]],[9,12,["H3068"]],[12,13,["H5750"]],[13,17,["H1875"]],[17,19,["H4480","H854"]]]},{"k":11549,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3092"]],[8,11,["H5750"]],[11,12,["H259"]],[12,13,["H376"]],[13,15,["H4480","H854"]],[15,18,["H1875"]],[18,19,["(H853)"]],[19,21,["H3068"]],[21,23,["H589"]],[23,24,["H8130"]],[24,26,["H3588"]],[26,28,["H369"]],[28,29,["H5012"]],[29,30,["H2896"]],[30,31,["H5921"]],[31,33,["H3588"]],[33,34,["H3605","H3117"]],[34,35,["H7451"]],[35,37,["H1931"]],[37,39,["H4321"]],[39,41,["H1121"]],[41,43,["H3229"]],[43,45,["H3092"]],[45,46,["H559"]],[46,48,["H408"]],[48,50,["H4428"]],[50,51,["H559"]],[51,52,["H3651"]]]},{"k":11550,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H7121"]],[6,7,["H413"]],[7,8,["H259"]],[8,11,["H5631"]],[11,13,["H559"]],[13,15,["H4116"]],[15,16,["H4319"]],[16,18,["H1121"]],[18,20,["H3229"]]]},{"k":11551,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,7,["H3092"]],[7,8,["H4428"]],[8,10,["H3063"]],[10,11,["H3427"]],[11,12,["H376"]],[12,15,["H5921"]],[15,17,["H3678"]],[17,18,["H3847"]],[18,21,["H899"]],[21,24,["H3427"]],[24,28,["H1637"]],[28,32,["H6607"]],[32,35,["H8179"]],[35,37,["H8111"]],[37,39,["H3605"]],[39,41,["H5030"]],[41,42,["H5012"]],[42,43,["H6440"]],[43,44,[]]]},{"k":11552,"v":[[0,2,["H6667"]],[2,4,["H1121"]],[4,6,["H3668"]],[6,8,["H6213"]],[8,10,["H7161"]],[10,12,["H1270"]],[12,14,["H559"]],[14,15,["H3541"]],[15,16,["H559"]],[16,18,["H3068"]],[18,20,["H428"]],[20,23,["H5055","(H853)"]],[23,24,["H758"]],[24,25,["H5704"]],[25,28,["H3615"]]]},{"k":11553,"v":[[0,2,["H3605"]],[2,4,["H5030"]],[4,5,["H5012"]],[5,6,["H3651"]],[6,7,["H559"]],[7,9,["H5927"]],[9,11,["H7433"]],[11,13,["H6743"]],[13,16,["H3068"]],[16,18,["H5414"]],[18,22,["H3027"]],[22,25,["H4428"]]]},{"k":11554,"v":[[0,3,["H4397"]],[3,4,["H834"]],[4,5,["H1980"]],[5,7,["H7121"]],[7,8,["H4321"]],[8,9,["H1696"]],[9,10,["H413"]],[10,12,["H559"]],[12,13,["H2009"]],[13,15,["H1697"]],[15,18,["H5030"]],[18,20,["H2896"]],[20,21,["H413"]],[21,23,["H4428"]],[23,25,["H259"]],[25,26,["H6310"]],[26,29,["H1697"]],[29,33,["H4994"]],[33,34,["H1961"]],[34,36,["H259"]],[36,37,["H4480"]],[37,40,["H1696"]],[40,42,["H2896"]]]},{"k":11555,"v":[[0,2,["H4321"]],[2,3,["H559"]],[3,6,["H3068"]],[6,7,["H2416"]],[7,8,["H3588","(H853)"]],[8,9,["H834"]],[9,11,["H430"]],[11,12,["H559"]],[12,16,["H1696"]]]},{"k":11556,"v":[[0,5,["H935"]],[5,6,["H413"]],[6,8,["H4428"]],[8,10,["H4428"]],[10,11,["H559"]],[11,12,["H413"]],[12,14,["H4318"]],[14,17,["H1980"]],[17,18,["H413"]],[18,19,["H7433"]],[19,21,["H4421"]],[21,22,["H518"]],[22,25,["H2308"]],[25,28,["H559"]],[28,31,["H5927"]],[31,33,["H6743"]],[33,38,["H5414"]],[38,41,["H3027"]]]},{"k":11557,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H413"]],[5,8,["H5704","H4100"]],[8,9,["H6471"]],[9,11,["H589"]],[11,12,["H7650"]],[12,14,["H834"]],[14,16,["H1696"]],[16,17,["H3808"]],[17,18,["H7535"]],[18,20,["H571"]],[20,21,["H413"]],[21,25,["H8034"]],[25,28,["H3068"]]]},{"k":11558,"v":[[0,3,["H559"]],[3,6,["H7200","(H853)"]],[6,7,["H3605"]],[7,8,["H3478"]],[8,9,["H6327"]],[9,10,["H5921"]],[10,12,["H2022"]],[12,14,["H6629"]],[14,15,["H834"]],[15,17,["H369"]],[17,18,["H7462"]],[18,21,["H3068"]],[21,22,["H559"]],[22,23,["H428"]],[23,25,["H3808"]],[25,26,["H113"]],[26,29,["H7725"]],[29,32,["H376"]],[32,35,["H1004"]],[35,37,["H7965"]]]},{"k":11559,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3092"]],[8,11,["H3808"]],[11,12,["H559","H413"]],[12,17,["H3808"]],[17,18,["H5012"]],[18,19,["H2896"]],[19,20,["H5921"]],[20,22,["H3588","H518"]],[22,23,["H7451"]]]},{"k":11560,"v":[[0,3,["H559"]],[3,4,["H3651"]],[4,5,["H8085"]],[5,7,["H1697"]],[7,10,["H3068"]],[10,12,["H7200","(H853)"]],[12,14,["H3068"]],[14,15,["H3427"]],[15,16,["H5921"]],[16,18,["H3678"]],[18,20,["H3605"]],[20,22,["H6635"]],[22,24,["H8064"]],[24,25,["H5975"]],[25,26,["H5921"]],[26,29,["H3225"]],[29,33,["H8040"]]]},{"k":11561,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H4310"]],[5,7,["H6601","(H853)"]],[7,8,["H256"]],[8,9,["H4428"]],[9,11,["H3478"]],[11,16,["H5927"]],[16,18,["H5307"]],[18,20,["H7433"]],[20,22,["H2088"]],[22,23,["H559"]],[23,24,["H559"]],[24,27,["H3602"]],[27,29,["H2088"]],[29,30,["H559"]],[30,33,["H3602"]]]},{"k":11562,"v":[[0,4,["H3318"]],[4,6,["H7307"]],[6,8,["H5975"]],[8,9,["H6440"]],[9,11,["H3068"]],[11,13,["H559"]],[13,14,["H589"]],[14,16,["H6601"]],[16,20,["H3068"]],[20,21,["H559"]],[21,22,["H413"]],[22,24,["H4100"]]]},{"k":11563,"v":[[0,3,["H559"]],[3,7,["H3318"]],[7,9,["H1961"]],[9,11,["H8267"]],[11,12,["H7307"]],[12,15,["H6310"]],[15,17,["H3605"]],[17,19,["H5030"]],[19,23,["H559"]],[23,26,["H6601"]],[26,31,["H1571"]],[31,32,["H3201"]],[32,34,["H3318"]],[34,36,["H6213"]],[36,38,["H3651"]]]},{"k":11564,"v":[[0,1,["H6258"]],[1,3,["H2009"]],[3,5,["H3068"]],[5,7,["H5414"]],[7,9,["H8267"]],[9,10,["H7307"]],[10,13,["H6310"]],[13,15,["H428"]],[15,17,["H5030"]],[17,20,["H3068"]],[20,22,["H1696"]],[22,23,["H7451"]],[23,24,["H5921"]],[24,25,[]]]},{"k":11565,"v":[[0,2,["H6667"]],[2,4,["H1121"]],[4,6,["H3668"]],[6,8,["H5066"]],[8,10,["H5221","(H853)"]],[10,11,["H4321"]],[11,12,["H5921"]],[12,14,["H3895"]],[14,16,["H559"]],[16,17,["H335","H2088"]],[17,18,["H1870"]],[18,19,["H5674"]],[19,21,["H7307"]],[21,24,["H3068"]],[24,25,["H4480","H854"]],[25,28,["H1696"]],[28,29,["H854"]],[29,30,[]]]},{"k":11566,"v":[[0,2,["H4321"]],[2,3,["H559"]],[3,4,["H2009"]],[4,7,["H7200"]],[7,9,["H1931"]],[9,10,["H3117"]],[10,11,["H834"]],[11,14,["H935"]],[14,18,["H2315","H2315"]],[18,21,["H2244"]]]},{"k":11567,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H3947"]],[7,8,["(H853)"]],[8,9,["H4321"]],[9,13,["H7725"]],[13,14,["H413"]],[14,15,["H526"]],[15,17,["H8269"]],[17,20,["H5892"]],[20,22,["H413"]],[22,23,["H3101"]],[23,25,["H4428"]],[25,26,["H1121"]]]},{"k":11568,"v":[[0,2,["H559"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H4428"]],[6,7,["H7760"]],[7,8,["H2088"]],[8,12,["H1004","H3608"]],[12,14,["H398"]],[14,17,["H3899"]],[17,19,["H3906"]],[19,22,["H4325"]],[22,24,["H3906"]],[24,25,["H5704"]],[25,27,["H7725"]],[27,29,["H7965"]]]},{"k":11569,"v":[[0,2,["H4321"]],[2,3,["H559"]],[3,4,["H518"]],[4,7,["H7725","H7725"]],[7,9,["H7965"]],[9,12,["H3808"]],[12,14,["H3068"]],[14,15,["H1696"]],[15,20,["H559"]],[20,21,["H8085"]],[21,22,["H3605"]],[22,24,["H5971"]]]},{"k":11570,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,7,["H3092"]],[7,9,["H4428"]],[9,11,["H3063"]],[11,13,["H5927"]],[13,14,["H413"]],[14,15,["H7433"]]]},{"k":11571,"v":[[0,3,["H4428"]],[3,5,["H3478"]],[5,6,["H559"]],[6,7,["H413"]],[7,8,["H3092"]],[8,12,["H2664"]],[12,15,["H935"]],[15,18,["H4421"]],[18,22,["H859","H3847"]],[22,24,["H899"]],[24,27,["H4428"]],[27,29,["H3478"]],[29,31,["H2664"]],[31,34,["H935"]],[34,37,["H4421"]]]},{"k":11572,"v":[[0,3,["H4428"]],[3,5,["H758"]],[5,7,["H6680","(H853)"]],[7,9,["H8269"]],[9,12,["H7393"]],[12,13,["H834"]],[13,17,["H559"]],[17,18,["H3898"]],[18,20,["H3808"]],[20,21,["H854"]],[21,22,["H6996"]],[22,23,["H854"]],[23,24,["H1419"]],[24,25,["H3588","H518"]],[25,26,["H905"]],[26,27,["H854"]],[27,29,["H4428"]],[29,31,["H3478"]]]},{"k":11573,"v":[[0,5,["H1961"]],[5,8,["H8269"]],[8,11,["H7393"]],[11,12,["H7200","(H853)"]],[12,13,["H3092"]],[13,15,["H1992"]],[15,16,["H559"]],[16,17,["H1931"]],[17,20,["H4428"]],[20,22,["H3478"]],[22,25,["H5437"]],[25,26,["H5921"]],[26,29,["H3898"]],[29,31,["H3092"]],[31,33,["H2199"]],[33,36,["H3068"]],[36,37,["H5826"]],[37,40,["H430"]],[40,41,["H5496"]],[41,45,["H4480"]],[45,46,[]]]},{"k":11574,"v":[[0,5,["H1961"]],[5,9,["H8269"]],[9,12,["H7393"]],[12,13,["H7200"]],[13,14,["H3588"]],[14,16,["H1961"]],[16,17,["H3808"]],[17,19,["H4428"]],[19,21,["H3478"]],[21,25,["H7725"]],[25,27,["H4480","H310"]],[27,28,[]]]},{"k":11575,"v":[[0,4,["H376"]],[4,5,["H4900"]],[5,7,["H7198"]],[7,10,["H8537"]],[10,12,["H5221","(H853)"]],[12,14,["H4428"]],[14,16,["H3478"]],[16,17,["H996"]],[17,19,["H1694"]],[19,22,["H8302"]],[22,25,["H559"]],[25,29,["H7395"]],[29,30,["H2015"]],[30,32,["H3027"]],[32,38,["H3318"]],[38,39,["H4480"]],[39,41,["H4264"]],[41,42,["H3588"]],[42,45,["H2470"]]]},{"k":11576,"v":[[0,3,["H4421"]],[3,4,["H5927"]],[4,5,["H1931"]],[5,6,["H3117"]],[6,9,["H4428"]],[9,11,["H3478"]],[11,14,["H1961","H5975"]],[14,17,["H4818"]],[17,18,["H5227"]],[18,20,["H758"]],[20,21,["H5704"]],[21,23,["H6153"]],[23,27,["H6256"]],[27,30,["H8121"]],[30,32,["H935"]],[32,34,["H4191"]]]},{"k":11577,"v":[[0,2,["H3092"]],[2,4,["H4428"]],[4,6,["H3063"]],[6,7,["H7725"]],[7,8,["H413"]],[8,10,["H1004"]],[10,12,["H7965"]],[12,14,["H3389"]]]},{"k":11578,"v":[[0,2,["H3058"]],[2,4,["H1121"]],[4,6,["H2607"]],[6,8,["H2374"]],[8,10,["H3318"]],[10,12,["H413","H6440"]],[12,15,["H559"]],[15,16,["H413"]],[16,17,["H4428"]],[17,18,["H3092"]],[18,21,["H5826"]],[21,23,["H7563"]],[23,25,["H157"]],[25,28,["H8130"]],[28,30,["H3068"]],[30,31,["H2063"]],[31,33,["H7110"]],[33,34,["H5921"]],[34,37,["H4480","H6440"]],[37,39,["H3068"]]]},{"k":11579,"v":[[0,1,["H61"]],[1,4,["H2896"]],[4,5,["H1697"]],[5,6,["H4672"]],[6,7,["H5973"]],[7,10,["H3588"]],[10,14,["H1197"]],[14,16,["H842"]],[16,18,["H4480"]],[18,20,["H776"]],[20,23,["H3559"]],[23,25,["H3824"]],[25,27,["H1875"]],[27,28,["H430"]]]},{"k":11580,"v":[[0,2,["H3092"]],[2,3,["H3427"]],[3,5,["H3389"]],[5,9,["H3318"]],[9,10,["H7725"]],[10,13,["H5971"]],[13,15,["H4480","H884"]],[15,16,["H5704"]],[16,17,["H2022"]],[17,18,["H669"]],[18,22,["H7725"]],[22,23,["H413"]],[23,25,["H3068"]],[25,26,["H430"]],[26,29,["H1"]]]},{"k":11581,"v":[[0,3,["H5975"]],[3,4,["H8199"]],[4,7,["H776"]],[7,9,["H3605"]],[9,11,["H1219"]],[11,12,["H5892"]],[12,14,["H3063"]],[14,15,["H5892"]],[15,17,["H5892"]]]},{"k":11582,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H8199"]],[5,7,["H7200"]],[7,8,["H4100"]],[8,9,["H859"]],[9,10,["H6213"]],[10,11,["H3588"]],[11,13,["H8199"]],[13,14,["H3808"]],[14,16,["H120"]],[16,17,["H3588"]],[17,20,["H3068"]],[20,23,["H5973"]],[23,27,["H1697","H4941"]]]},{"k":11583,"v":[[0,2,["H6258"]],[2,5,["H6343"]],[5,8,["H3068"]],[8,9,["H1961"]],[9,10,["H5921"]],[10,13,["H8104"]],[13,15,["H6213"]],[15,17,["H3588"]],[17,20,["H369"]],[20,21,["H5766"]],[21,22,["H5973"]],[22,24,["H3068"]],[24,26,["H430"]],[26,28,["H4856"]],[28,30,["H6440"]],[30,32,["H4727"]],[32,34,["H7810"]]]},{"k":11584,"v":[[0,1,["H1571"]],[1,3,["H3389"]],[3,5,["H3092"]],[5,6,["H5975"]],[6,7,["H4480"]],[7,9,["H3881"]],[9,13,["H3548"]],[13,17,["H4480","H7218"]],[17,20,["H1"]],[20,22,["H3478"]],[22,25,["H4941"]],[25,28,["H3068"]],[28,31,["H7379"]],[31,34,["H7725"]],[34,36,["H3389"]]]},{"k":11585,"v":[[0,3,["H6680","H5921"]],[3,5,["H559"]],[5,6,["H3541"]],[6,9,["H6213"]],[9,12,["H3374"]],[12,15,["H3068"]],[15,16,["H530"]],[16,20,["H8003"]],[20,21,["H3824"]]]},{"k":11586,"v":[[0,4,["H3605","H7379","H834"]],[4,6,["H935"]],[6,7,["H5921"]],[7,11,["H4480","H251"]],[11,13,["H3427"]],[13,16,["H5892"]],[16,17,["H996"]],[17,18,["H1818"]],[18,20,["H1818"]],[20,21,["H996"]],[21,22,["H8451"]],[22,24,["H4687"]],[24,25,["H2706"]],[25,27,["H4941"]],[27,31,["H2094"]],[31,35,["H816"]],[35,36,["H3808"]],[36,39,["H3068"]],[39,42,["H7110"]],[42,43,["H1961"]],[43,44,["H5921"]],[44,47,["H5921"]],[47,49,["H251"]],[49,50,["H3541"]],[50,51,["H6213"]],[51,55,["H3808"]],[55,56,["H816"]]]},{"k":11587,"v":[[0,2,["H2009"]],[2,3,["H568"]],[3,5,["H7218"]],[5,6,["H3548"]],[6,8,["H5921"]],[8,11,["H3605"]],[11,12,["H1697"]],[12,15,["H3068"]],[15,17,["H2069"]],[17,19,["H1121"]],[19,21,["H3458"]],[21,23,["H5057"]],[23,26,["H1004"]],[26,28,["H3063"]],[28,30,["H3605"]],[30,32,["H4428"]],[32,33,["H1697"]],[33,36,["H3881"]],[36,39,["H7860"]],[39,40,["H6440"]],[40,42,["H6213"]],[42,43,["H2388"]],[43,46,["H3068"]],[46,48,["H1961"]],[48,49,["H5973"]],[49,51,["H2896"]]]},{"k":11588,"v":[[0,4,["H1961"]],[4,5,["H310"]],[5,6,["H3651"]],[6,10,["H1121"]],[10,12,["H4124"]],[12,15,["H1121"]],[15,17,["H5983"]],[17,19,["H5973"]],[19,22,["H4480"]],[22,24,["H5984"]],[24,25,["H935"]],[25,26,["H5921"]],[26,27,["H3092"]],[27,29,["H4421"]]]},{"k":11589,"v":[[0,3,["H935"]],[3,6,["H5046"]],[6,7,["H3092"]],[7,8,["H559"]],[8,10,["H935"]],[10,12,["H7227"]],[12,13,["H1995"]],[13,14,["H5921"]],[14,17,["H4480","H5676"]],[17,19,["H3220"]],[19,23,["H4480","H758"]],[23,25,["H2009"]],[25,29,["H2688"]],[29,30,["H1931"]],[30,32,["H5872"]]]},{"k":11590,"v":[[0,2,["H3092"]],[2,3,["H3372"]],[3,5,["H5414","(H853)"]],[5,6,["H6440"]],[6,8,["H1875"]],[8,10,["H3068"]],[10,12,["H7121"]],[12,14,["H6685"]],[14,15,["H5921"]],[15,16,["H3605"]],[16,17,["H3063"]]]},{"k":11591,"v":[[0,2,["H3063"]],[2,5,["H6908"]],[5,7,["H1245"]],[7,9,["H4480"]],[9,11,["H3068"]],[11,12,["H1571"]],[12,15,["H4480","H3605"]],[15,17,["H5892"]],[17,19,["H3063"]],[19,21,["H935"]],[21,23,["H1245","(H853)"]],[23,25,["H3068"]]]},{"k":11592,"v":[[0,2,["H3092"]],[2,3,["H5975"]],[3,6,["H6951"]],[6,8,["H3063"]],[8,10,["H3389"]],[10,13,["H1004"]],[13,16,["H3068"]],[16,17,["H6440"]],[17,19,["H2319"]],[19,20,["H2691"]]]},{"k":11593,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H430"]],[5,8,["H1"]],[8,10,["H3808"]],[10,11,["H859"]],[11,12,["H430"]],[12,14,["H8064"]],[14,16,["H4910"]],[16,18,["H859"]],[18,20,["H3605"]],[20,22,["H4467"]],[22,25,["H1471"]],[25,29,["H3027"]],[29,33,["H3581"]],[33,35,["H1369"]],[35,38,["H369"]],[38,42,["H3320","H5973"]],[42,43,[]]]},{"k":11594,"v":[[0,2,["H3808"]],[2,3,["H859"]],[3,5,["H430"]],[5,9,["H3423","(H853)"]],[9,11,["H3427"]],[11,13,["H2063"]],[13,14,["H776"]],[14,15,["H4480","H6440"]],[15,17,["H5971"]],[17,18,["H3478"]],[18,20,["H5414"]],[20,24,["H2233"]],[24,26,["H85"]],[26,28,["H157"]],[28,30,["H5769"]]]},{"k":11595,"v":[[0,3,["H3427"]],[3,7,["H1129"]],[7,10,["H4720"]],[10,14,["H8034"]],[14,15,["H559"]]]},{"k":11596,"v":[[0,1,["H518"]],[1,3,["H7451"]],[3,4,["H935"]],[4,5,["H5921"]],[5,9,["H2719"]],[9,10,["H8196"]],[10,12,["H1698"]],[12,14,["H7458"]],[14,16,["H5975"]],[16,17,["H6440"]],[17,18,["H2088"]],[18,19,["H1004"]],[19,23,["H6440"]],[23,24,["H3588"]],[24,26,["H8034"]],[26,29,["H2088"]],[29,30,["H1004"]],[30,32,["H2199"]],[32,33,["H413"]],[33,37,["H4480","H6869"]],[37,41,["H8085"]],[41,43,["H3467"]]]},{"k":11597,"v":[[0,2,["H6258"]],[2,3,["H2009"]],[3,5,["H1121"]],[5,7,["H5983"]],[7,9,["H4124"]],[9,11,["H2022"]],[11,12,["H8165"]],[12,13,["H834"]],[13,16,["H3808"]],[16,17,["H5414"]],[17,18,["H3478"]],[18,19,["H935"]],[19,22,["H935"]],[22,26,["H4480","H776"]],[26,28,["H4714"]],[28,29,["H3588"]],[29,31,["H5493"]],[31,32,["H4480","H5921"]],[32,35,["H8045"]],[35,37,["H3808"]]]},{"k":11598,"v":[[0,1,["H2009"]],[1,5,["H1992"]],[5,6,["H1580","H5921"]],[6,9,["H935"]],[9,13,["H1644"]],[13,16,["H4480","H3425"]],[16,17,["H834"]],[17,23,["H3423"]]]},{"k":11599,"v":[[0,3,["H430"]],[3,6,["H3808"]],[6,7,["H8199"]],[7,9,["H3588"]],[9,12,["H369"]],[12,13,["H3581"]],[13,14,["H6440"]],[14,15,["H2088"]],[15,16,["H7227"]],[16,17,["H1995"]],[17,19,["H935"]],[19,20,["H5921"]],[20,22,["H3808"]],[22,23,["H3045"]],[23,24,["H587"]],[24,25,["H4100"]],[25,27,["H6213"]],[27,28,["H3588"]],[28,30,["H5869"]],[30,32,["H5921"]],[32,33,[]]]},{"k":11600,"v":[[0,2,["H3605"]],[2,3,["H3063"]],[3,4,["H5975"]],[4,5,["H6440"]],[5,7,["H3068"]],[7,8,["H1571"]],[8,11,["H2945"]],[11,13,["H802"]],[13,16,["H1121"]]]},{"k":11601,"v":[[0,2,["H5921"]],[2,3,["H3166"]],[3,5,["H1121"]],[5,7,["H2148"]],[7,9,["H1121"]],[9,11,["H1141"]],[11,13,["H1121"]],[13,15,["H3273"]],[15,17,["H1121"]],[17,19,["H4983"]],[19,21,["H3881"]],[21,22,["H4480"]],[22,24,["H1121"]],[24,26,["H623"]],[26,27,["H1961"]],[27,29,["H7307"]],[29,32,["H3068"]],[32,35,["H8432"]],[35,38,["H6951"]]]},{"k":11602,"v":[[0,3,["H559"]],[3,4,["H7181"]],[4,6,["H3605"]],[6,7,["H3063"]],[7,10,["H3427"]],[10,12,["H3389"]],[12,15,["H4428"]],[15,16,["H3092"]],[16,17,["H3541"]],[17,18,["H559"]],[18,20,["H3068"]],[20,25,["(H859)","H3372","H408"]],[25,26,["H408"]],[26,27,["H2865"]],[27,30,["H4480","H6440"]],[30,31,["H2088"]],[31,32,["H7227"]],[32,33,["H1995"]],[33,34,["H3588"]],[34,36,["H4421"]],[36,38,["H3808"]],[38,40,["H3588"]],[40,41,["H430"]]]},{"k":11603,"v":[[0,2,["H4279"]],[2,5,["H3381"]],[5,6,["H5921"]],[6,8,["H2009"]],[8,11,["H5927"]],[11,14,["H4608"]],[14,16,["H6732"]],[16,20,["H4672"]],[20,24,["H5490"]],[24,27,["H5158"]],[27,28,["H6440"]],[28,30,["H4057"]],[30,32,["H3385"]]]},{"k":11604,"v":[[0,3,["H3808"]],[3,6,["H3898"]],[6,8,["H2063"]],[8,11,["H3320"]],[11,12,["H5975"]],[12,16,["H7200","(H853)"]],[16,18,["H3444"]],[18,21,["H3068"]],[21,22,["H5973"]],[22,25,["H3063"]],[25,27,["H3389"]],[27,28,["H3372"]],[28,29,["H408"]],[29,30,["H408"]],[30,32,["H2865"]],[32,34,["H4279"]],[34,36,["H3318"]],[36,37,["H6440"]],[37,41,["H3068"]],[41,44,["H5973"]],[44,45,[]]]},{"k":11605,"v":[[0,2,["H3092"]],[2,5,["H6915"]],[5,8,["H639"]],[8,11,["H776"]],[11,13,["H3605"]],[13,14,["H3063"]],[14,17,["H3427"]],[17,19,["H3389"]],[19,20,["H5307"]],[20,21,["H6440"]],[21,23,["H3068"]],[23,24,["H7812"]],[24,26,["H3068"]]]},{"k":11606,"v":[[0,3,["H3881"]],[3,6,["H1121"]],[6,7,["H4480"]],[7,9,["H6956"]],[9,11,["H4480"]],[11,13,["H1121"]],[13,16,["H7145"]],[16,18,["H6965"]],[18,20,["H1984"]],[20,22,["H3068"]],[22,23,["H430"]],[23,25,["H3478"]],[25,28,["H1419"]],[28,29,["H6963"]],[29,31,["H4605"]]]},{"k":11607,"v":[[0,4,["H7925"]],[4,7,["H1242"]],[7,10,["H3318"]],[10,13,["H4057"]],[13,15,["H8620"]],[15,20,["H3318"]],[20,21,["H3092"]],[21,22,["H5975"]],[22,24,["H559"]],[24,25,["H8085"]],[25,28,["H3063"]],[28,31,["H3427"]],[31,33,["H3389"]],[33,34,["H539"]],[34,37,["H3068"]],[37,39,["H430"]],[39,44,["H539"]],[44,45,["H539"]],[45,47,["H5030"]],[47,51,["H6743"]]]},{"k":11608,"v":[[0,5,["H3289"]],[5,6,["H413"]],[6,8,["H5971"]],[8,10,["H5975"]],[10,11,["H7891"]],[11,14,["H3068"]],[14,18,["H1984"]],[18,20,["H1927"]],[20,22,["H6944"]],[22,26,["H3318"]],[26,27,["H6440"]],[27,29,["H2502"]],[29,32,["H559"]],[32,33,["H3034"]],[33,35,["H3068"]],[35,36,["H3588"]],[36,38,["H2617"]],[38,41,["H5769"]]]},{"k":11609,"v":[[0,2,["H6256"]],[2,4,["H2490"]],[4,6,["H7440"]],[6,9,["H8416"]],[9,11,["H3068"]],[11,12,["H5414"]],[12,13,["H693"]],[13,14,["H5921"]],[14,16,["H1121"]],[16,18,["H5983"]],[18,19,["H4124"]],[19,21,["H2022"]],[21,22,["H8165"]],[22,25,["H935"]],[25,27,["H3063"]],[27,31,["H5062"]]]},{"k":11610,"v":[[0,3,["H1121"]],[3,5,["H5983"]],[5,7,["H4124"]],[7,9,["H5975"]],[9,10,["H5921"]],[10,12,["H3427"]],[12,14,["H2022"]],[14,15,["H8165"]],[15,18,["H2763"]],[18,20,["H8045"]],[20,28,["H3615"]],[28,31,["H3427"]],[31,33,["H8165"]],[33,35,["H376"]],[35,36,["H5826"]],[36,38,["H4889"]],[38,39,["H7453"]]]},{"k":11611,"v":[[0,3,["H3063"]],[3,4,["H935"]],[4,5,["H5921"]],[5,8,["H4707"]],[8,11,["H4057"]],[11,13,["H6437"]],[13,14,["H413"]],[14,16,["H1995"]],[16,18,["H2009"]],[18,22,["H6297"]],[22,23,["H5307"]],[23,26,["H776"]],[26,28,["H369"]],[28,29,["H6413"]]]},{"k":11612,"v":[[0,3,["H3092"]],[3,6,["H5971"]],[6,7,["H935"]],[7,10,["H962","(H853)"]],[10,12,["H7998"]],[12,16,["H4672"]],[16,20,["H7230"]],[20,22,["H7399"]],[22,26,["H6297"]],[26,28,["H2530"]],[28,29,["H3627"]],[29,33,["H5337"]],[33,37,["H369"]],[37,41,["H4853"]],[41,44,["H1961"]],[44,45,["H7969"]],[45,46,["H3117"]],[46,48,["H962","(H853)"]],[48,51,["H7998"]],[51,52,["H1931"]],[52,55,["H7227"]]]},{"k":11613,"v":[[0,4,["H7243"]],[4,5,["H3117"]],[5,8,["H6950"]],[8,11,["H6010"]],[11,13,["H1294"]],[13,14,["H3588"]],[14,15,["H8033"]],[15,17,["H1288","(H853)"]],[17,19,["H3068"]],[19,20,["H5921","H3651","(H853)"]],[20,22,["H8034"]],[22,25,["H1931"]],[25,26,["H4725"]],[26,28,["H7121"]],[28,30,["H6010"]],[30,32,["H1294"]],[32,33,["H5704"]],[33,35,["H3117"]]]},{"k":11614,"v":[[0,3,["H7725"]],[3,4,["H3605"]],[4,5,["H376"]],[5,7,["H3063"]],[7,9,["H3389"]],[9,11,["H3092"]],[11,14,["H7218"]],[14,19,["H7725"]],[19,20,["H413"]],[20,21,["H3389"]],[21,23,["H8057"]],[23,24,["H3588"]],[24,26,["H3068"]],[26,31,["H8055"]],[31,34,["H4480","H341"]]]},{"k":11615,"v":[[0,3,["H935"]],[3,5,["H3389"]],[5,7,["H5035"]],[7,9,["H3658"]],[9,11,["H2689"]],[11,12,["H413"]],[12,14,["H1004"]],[14,17,["H3068"]]]},{"k":11616,"v":[[0,3,["H6343"]],[3,5,["H430"]],[5,6,["H1961"]],[6,7,["H5921"]],[7,8,["H3605"]],[8,10,["H4467"]],[10,13,["H776"]],[13,17,["H8085"]],[17,18,["H3588"]],[18,20,["H3068"]],[20,21,["H3898"]],[21,22,["H5973"]],[22,24,["H341"]],[24,26,["H3478"]]]},{"k":11617,"v":[[0,3,["H4438"]],[3,5,["H3092"]],[5,7,["H8252"]],[7,10,["H430"]],[10,13,["H5117"]],[13,15,["H4480","H5439"]]]},{"k":11618,"v":[[0,2,["H3092"]],[2,3,["H4427"]],[3,4,["H5921"]],[4,5,["H3063"]],[5,8,["H7970"]],[8,10,["H2568"]],[10,11,["H8141"]],[11,12,["H1121"]],[12,17,["H4427"]],[17,20,["H4427"]],[20,21,["H6242"]],[21,23,["H2568"]],[23,24,["H8141"]],[24,26,["H3389"]],[26,29,["H517"]],[29,30,["H8034"]],[30,32,["H5806"]],[32,34,["H1323"]],[34,36,["H7977"]]]},{"k":11619,"v":[[0,3,["H1980"]],[3,6,["H1870"]],[6,8,["H609"]],[8,10,["H1"]],[10,12,["H5493"]],[12,13,["H3808"]],[13,14,["H4480"]],[14,16,["H6213"]],[16,20,["H3477"]],[20,23,["H5869"]],[23,26,["H3068"]]]},{"k":11620,"v":[[0,1,["H389"]],[1,4,["H1116"]],[4,6,["H3808"]],[6,8,["H5493"]],[8,11,["H5750"]],[11,13,["H5971"]],[13,15,["H3808"]],[15,16,["H3559"]],[16,18,["H3824"]],[18,21,["H430"]],[21,24,["H1"]]]},{"k":11621,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3092"]],[8,9,["H7223"]],[9,11,["H314"]],[11,12,["H2009"]],[12,15,["H3789"]],[15,18,["H1697"]],[18,20,["H3058"]],[20,22,["H1121"]],[22,24,["H2607"]],[24,25,["H834"]],[25,27,["H5927"]],[27,28,["H5921"]],[28,30,["H5612"]],[30,33,["H4428"]],[33,35,["H3478"]]]},{"k":11622,"v":[[0,2,["H310"]],[2,3,["H3651"]],[3,5,["H3092"]],[5,6,["H4428"]],[6,8,["H3063"]],[8,10,["H2266"]],[10,11,["H5973"]],[11,12,["H274"]],[12,13,["H4428"]],[13,15,["H3478"]],[15,16,["H1931"]],[16,19,["H7561","H6213"]]]},{"k":11623,"v":[[0,3,["H2266"]],[3,5,["H5973"]],[5,8,["H6213"]],[8,9,["H591"]],[9,11,["H1980"]],[11,13,["H8659"]],[13,16,["H6213"]],[16,18,["H591"]],[18,20,["H6100"]]]},{"k":11624,"v":[[0,2,["H461"]],[2,4,["H1121"]],[4,6,["H1735"]],[6,8,["H4480","H4762"]],[8,9,["H5012"]],[9,10,["H5921"]],[10,11,["H3092"]],[11,12,["H559"]],[12,17,["H2266"]],[17,18,["H5973"]],[18,19,["H274"]],[19,21,["H3068"]],[21,23,["H6555","(H853)"]],[23,25,["H4639"]],[25,28,["H591"]],[28,30,["H7665"]],[30,35,["H6113","H3808"]],[35,37,["H1980"]],[37,38,["H413"]],[38,39,["H8659"]]]},{"k":11625,"v":[[0,2,["H3092"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,10,["H5973"]],[10,12,["H1"]],[12,15,["H5892"]],[15,17,["H1732"]],[17,19,["H3088"]],[19,21,["H1121"]],[21,22,["H4427"]],[22,25,["H8478"]]]},{"k":11626,"v":[[0,4,["H251"]],[4,6,["H1121"]],[6,8,["H3092"]],[8,9,["H5838"]],[9,11,["H3171"]],[11,13,["H2148"]],[13,15,["H5838"]],[15,17,["H4317"]],[17,19,["H8203"]],[19,20,["H3605"]],[20,21,["H428"]],[21,24,["H1121"]],[24,26,["H3092"]],[26,27,["H4428"]],[27,29,["H3478"]]]},{"k":11627,"v":[[0,3,["H1"]],[3,4,["H5414"]],[4,6,["H7227"]],[6,7,["H4979"]],[7,9,["H3701"]],[9,12,["H2091"]],[12,16,["H4030"]],[16,17,["H5973"]],[17,18,["H4694"]],[18,19,["H5892"]],[19,21,["H3063"]],[21,24,["H4467"]],[24,25,["H5414"]],[25,28,["H3088"]],[28,29,["H3588"]],[29,30,["H1931"]],[30,33,["H1060"]]]},{"k":11628,"v":[[0,3,["H3088"]],[3,6,["H6965"]],[6,7,["H5921"]],[7,9,["H4467"]],[9,12,["H1"]],[12,15,["H2388"]],[15,17,["H2026","(H853)"]],[17,18,["H3605"]],[18,20,["H251"]],[20,23,["H2719"]],[23,26,["H1571"]],[26,29,["H4480","H8269"]],[29,31,["H3478"]]]},{"k":11629,"v":[[0,1,["H3088"]],[1,3,["H7970"]],[3,5,["H8147"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H8083"]],[16,17,["H8141"]],[17,19,["H3389"]]]},{"k":11630,"v":[[0,3,["H1980"]],[3,6,["H1870"]],[6,9,["H4428"]],[9,11,["H3478"]],[11,13,["H834"]],[13,14,["H6213"]],[14,16,["H1004"]],[16,18,["H256"]],[18,19,["H3588"]],[19,21,["H1961"]],[21,23,["H1323"]],[23,25,["H256"]],[25,27,["H802"]],[27,30,["H6213"]],[30,34,["H7451"]],[34,37,["H5869"]],[37,40,["H3068"]]]},{"k":11631,"v":[[0,3,["H3068"]],[3,4,["H14"]],[4,5,["H3808"]],[5,6,["H7843","(H853)"]],[6,8,["H1004"]],[8,10,["H1732"]],[10,12,["H4616"]],[12,14,["H1285"]],[14,15,["H834"]],[15,18,["H3772"]],[18,20,["H1732"]],[20,22,["H834"]],[22,24,["H559"]],[24,26,["H5414"]],[26,28,["H5216"]],[28,34,["H1121"]],[34,36,["H3605","H3117"]]]},{"k":11632,"v":[[0,3,["H3117"]],[3,5,["H123"]],[5,6,["H6586"]],[6,8,["H4480","H8478"]],[8,10,["H3027"]],[10,12,["H3063"]],[12,14,["H4427","H5921"]],[14,17,["H4428"]]]},{"k":11633,"v":[[0,2,["H3088"]],[2,4,["H5674"]],[4,5,["H5973"]],[5,7,["H8269"]],[7,9,["H3605"]],[9,11,["H7393"]],[11,12,["H5973"]],[12,17,["H1961","H6965"]],[17,19,["H3915"]],[19,21,["H5221","(H853)"]],[21,23,["H123"]],[23,25,["H5437","H413"]],[25,30,["H8269"]],[30,33,["H7393"]]]},{"k":11634,"v":[[0,3,["H123"]],[3,4,["H6586"]],[4,6,["H4480","H8478"]],[6,8,["H3027"]],[8,10,["H3063"]],[10,11,["H5704"]],[11,12,["H2088"]],[12,13,["H3117"]],[13,15,["H1931"]],[15,16,["H6256"]],[16,19,["H3841"]],[19,20,["H6586"]],[20,22,["H4480","H8478"]],[22,24,["H3027"]],[24,25,["H3588"]],[25,28,["H5800","(H853)"]],[28,30,["H3068"]],[30,31,["H430"]],[31,34,["H1"]]]},{"k":11635,"v":[[0,1,["H1571"]],[1,2,["H1931"]],[2,3,["H6213"]],[3,5,["H1116"]],[5,8,["H2022"]],[8,10,["H3063"]],[10,12,["(H853)"]],[12,14,["H3427"]],[14,16,["H3389"]],[16,19,["H2181"]],[19,21,["H5080","(H853)"]],[21,22,["H3063"]],[22,23,[]]]},{"k":11636,"v":[[0,3,["H935"]],[3,5,["H4385"]],[5,6,["H413"]],[6,9,["H4480","H452"]],[9,11,["H5030"]],[11,12,["H559"]],[12,13,["H3541"]],[13,14,["H559"]],[14,16,["H3068"]],[16,17,["H430"]],[17,19,["H1732"]],[19,21,["H1"]],[21,22,["H8478","H834"]],[22,25,["H3808"]],[25,26,["H1980"]],[26,29,["H1870"]],[29,31,["H3092"]],[31,33,["H1"]],[33,37,["H1870"]],[37,39,["H609"]],[39,40,["H4428"]],[40,42,["H3063"]]]},{"k":11637,"v":[[0,3,["H1980"]],[3,6,["H1870"]],[6,9,["H4428"]],[9,11,["H3478"]],[11,14,["(H853)"]],[14,15,["H3063"]],[15,18,["H3427"]],[18,20,["H3389"]],[20,24,["H2181"]],[24,28,["H2181"]],[28,31,["H1004"]],[31,33,["H256"]],[33,35,["H1571"]],[35,37,["H2026","(H853)"]],[37,39,["H251"]],[39,42,["H1"]],[42,43,["H1004"]],[43,46,["H2896"]],[46,47,["H4480"]],[47,48,[]]]},{"k":11638,"v":[[0,1,["H2009"]],[1,4,["H1419"]],[4,5,["H4046"]],[5,8,["H3068"]],[8,9,["H5062"]],[9,11,["H5971"]],[11,14,["H1121"]],[14,17,["H802"]],[17,19,["H3605"]],[19,21,["H7399"]]]},{"k":11639,"v":[[0,2,["H859"]],[2,5,["H7227"]],[5,6,["H2483"]],[6,8,["H4245"]],[8,11,["H4578"]],[11,12,["H5704"]],[12,14,["H4578"]],[14,16,["H3318"]],[16,19,["H4480"]],[19,21,["H2483"]],[21,22,["H3117"]],[22,23,["H5921"]],[23,24,["H3117"]]]},{"k":11640,"v":[[0,3,["H3068"]],[3,5,["H5782"]],[5,6,["H5921"]],[6,7,["H3088","(H853)"]],[7,9,["H7307"]],[9,12,["H6430"]],[12,16,["H6163"]],[16,17,["H834"]],[17,19,["H5921","H3027"]],[19,21,["H3569"]]]},{"k":11641,"v":[[0,4,["H5927"]],[4,6,["H3063"]],[6,9,["H1234"]],[9,13,["H7617","(H853)"]],[13,14,["H3605"]],[14,16,["H7399"]],[16,19,["H4672"]],[19,22,["H4428"]],[22,23,["H1004"]],[23,26,["H1121"]],[26,27,["H1571"]],[27,30,["H802"]],[30,35,["H3808"]],[35,37,["H1121"]],[37,38,["H7604"]],[38,40,["H3588","H518"]],[40,41,["H3059"]],[41,43,["H6996"]],[43,46,["H1121"]]]},{"k":11642,"v":[[0,2,["H310"]],[2,3,["H3605"]],[3,4,["H2063"]],[4,6,["H3068"]],[6,7,["H5062"]],[7,11,["H4578"]],[11,14,["H369","H4832"]],[14,15,["H2483"]]]},{"k":11643,"v":[[0,5,["H1961"]],[5,10,["H3117","H4480","H3117"]],[10,13,["H6256","H3318","H7093"]],[13,15,["H8147"]],[15,16,["H3117"]],[16,18,["H4578"]],[18,20,["H3318"]],[20,23,["H5973"]],[23,25,["H2483"]],[25,28,["H4191"]],[28,30,["H7451"]],[30,31,["H8463"]],[31,34,["H5971"]],[34,35,["H6213"]],[35,36,["H3808"]],[36,37,["H8316"]],[37,42,["H8316"]],[42,45,["H1"]]]},{"k":11644,"v":[[0,1,["H7970"]],[1,3,["H8147"]],[3,5,["H1121"]],[5,6,["H1961"]],[6,12,["H4427"]],[12,15,["H4427"]],[15,17,["H3389"]],[17,18,["H8083"]],[18,19,["H8141"]],[19,21,["H1980"]],[21,22,["H3808"]],[22,24,["H2532"]],[24,27,["H6912"]],[27,31,["H5892"]],[31,33,["H1732"]],[33,35,["H3808"]],[35,38,["H6913"]],[38,41,["H4428"]]]},{"k":11645,"v":[[0,3,["H3427"]],[3,5,["H3389"]],[5,6,["(H853)"]],[6,7,["H274"]],[7,9,["H6996"]],[9,10,["H1121"]],[10,11,["H4427"]],[11,14,["H8478"]],[14,15,["H3588"]],[15,19,["H1416"]],[19,21,["H935"]],[21,24,["H6163"]],[24,27,["H4264"]],[27,29,["H2026"]],[29,30,["H3605"]],[30,32,["H7223"]],[32,34,["H274"]],[34,36,["H1121"]],[36,38,["H3088"]],[38,39,["H4428"]],[39,41,["H3063"]],[41,42,["H4427"]]]},{"k":11646,"v":[[0,1,["H705"]],[1,3,["H8147"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,7,["H274"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H259"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,21,["H517"]],[21,22,["H8034"]],[22,25,["H6271"]],[25,27,["H1323"]],[27,29,["H6018"]]]},{"k":11647,"v":[[0,1,["H1931"]],[1,2,["H1571"]],[2,3,["H1980"]],[3,6,["H1870"]],[6,9,["H1004"]],[9,11,["H256"]],[11,12,["H3588"]],[12,14,["H517"]],[14,15,["H1961"]],[15,17,["H3289"]],[17,20,["H7561"]]]},{"k":11648,"v":[[0,3,["H6213"]],[3,4,["H7451"]],[4,7,["H5869"]],[7,10,["H3068"]],[10,13,["H1004"]],[13,15,["H256"]],[15,16,["H3588"]],[16,17,["H1992"]],[17,18,["H1961"]],[18,20,["H3289"]],[20,21,["H310"]],[21,23,["H4194"]],[23,26,["H1"]],[26,29,["H4889"]]]},{"k":11649,"v":[[0,2,["H1980"]],[2,3,["H1571"]],[3,6,["H6098"]],[6,8,["H1980"]],[8,9,["H854"]],[9,10,["H3088"]],[10,12,["H1121"]],[12,14,["H256"]],[14,15,["H4428"]],[15,17,["H3478"]],[17,19,["H4421"]],[19,20,["H5921"]],[20,21,["H2371"]],[21,22,["H4428"]],[22,24,["H758"]],[24,26,["H7433"]],[26,29,["H761"]],[29,30,["H5221","(H853)"]],[30,31,["H3141"]]]},{"k":11650,"v":[[0,3,["H7725"]],[3,6,["H7495"]],[6,8,["H3157"]],[8,10,["H3588"]],[10,12,["H4347"]],[12,13,["H834"]],[13,15,["H5221"]],[15,18,["H7414"]],[18,21,["H3898","(H853)"]],[21,23,["H2371"]],[23,24,["H4428"]],[24,26,["H758"]],[26,28,["H5838"]],[28,30,["H1121"]],[30,32,["H3088"]],[32,33,["H4428"]],[33,35,["H3063"]],[35,37,["H3381"]],[37,39,["H7200","(H853)"]],[39,40,["H3088"]],[40,42,["H1121"]],[42,44,["H256"]],[44,46,["H3157"]],[46,47,["H3588"]],[47,48,["H1931"]],[48,50,["H2470"]]]},{"k":11651,"v":[[0,3,["H8395"]],[3,5,["H274"]],[5,6,["H1961"]],[6,8,["H4480","H430"]],[8,10,["H935"]],[10,11,["H413"]],[11,12,["H3141"]],[12,17,["H935"]],[17,20,["H3318"]],[20,21,["H5973"]],[21,22,["H3088"]],[22,23,["H413"]],[23,24,["H3058"]],[24,26,["H1121"]],[26,28,["H5250"]],[28,29,["H834"]],[29,31,["H3068"]],[31,33,["H4886"]],[33,36,["H3772","(H853)"]],[36,38,["H1004"]],[38,40,["H256"]]]},{"k":11652,"v":[[0,5,["H1961"]],[5,8,["H3058"]],[8,11,["H8199"]],[11,12,["H5973"]],[12,14,["H1004"]],[14,16,["H256"]],[16,18,["H4672","(H853)"]],[18,20,["H8269"]],[20,22,["H3063"]],[22,25,["H1121"]],[25,28,["H251"]],[28,30,["H274"]],[30,32,["H8334"]],[32,34,["H274"]],[34,36,["H2026"]],[36,37,[]]]},{"k":11653,"v":[[0,3,["H1245","(H853)"]],[3,4,["H274"]],[4,7,["H3920"]],[7,10,["H1931"]],[10,12,["H2244"]],[12,14,["H8111"]],[14,16,["H935"]],[16,18,["H413"]],[18,19,["H3058"]],[19,24,["H4191"]],[24,27,["H6912"]],[27,29,["H3588"]],[29,30,["H559"]],[30,32,["H1931"]],[32,35,["H1121"]],[35,37,["H3092"]],[37,38,["H834"]],[38,39,["H1875","(H853)"]],[39,41,["H3068"]],[41,43,["H3605"]],[43,45,["H3824"]],[45,48,["H1004"]],[48,50,["H274"]],[50,52,["H369"]],[52,53,["H3581"]],[53,56,["H6113"]],[56,58,["H4467"]]]},{"k":11654,"v":[[0,3,["H6271"]],[3,5,["H517"]],[5,7,["H274"]],[7,8,["H7200"]],[8,9,["H3588"]],[9,11,["H1121"]],[11,13,["H4191"]],[13,15,["H6965"]],[15,17,["H1696","(H853)"]],[17,18,["H3605"]],[18,20,["H2233"]],[20,21,["H4467"]],[21,24,["H1004"]],[24,26,["H3063"]]]},{"k":11655,"v":[[0,2,["H3090"]],[2,4,["H1323"]],[4,7,["H4428"]],[7,8,["H3947","(H853)"]],[8,9,["H3101"]],[9,11,["H1121"]],[11,13,["H274"]],[13,15,["H1589"]],[15,18,["H4480","H8432"]],[18,20,["H4428"]],[20,21,["H1121"]],[21,24,["H4191"]],[24,26,["H5414"]],[26,30,["H3243"]],[30,33,["H2315","H4296"]],[33,35,["H3090"]],[35,37,["H1323"]],[37,39,["H4428"]],[39,40,["H3088"]],[40,42,["H802"]],[42,44,["H3077"]],[44,46,["H3548"]],[46,47,["H3588"]],[47,48,["H1931"]],[48,49,["H1961"]],[49,51,["H269"]],[51,53,["H274"]],[53,54,["H5641"]],[54,56,["H4480","H6440"]],[56,57,["H6271"]],[57,61,["H4191"]],[61,63,["H3808"]]]},{"k":11656,"v":[[0,3,["H1961"]],[3,4,["H854"]],[4,6,["H2244"]],[6,9,["H1004"]],[9,11,["H430"]],[11,12,["H8337"]],[12,13,["H8141"]],[13,15,["H6271"]],[15,16,["H4427"]],[16,17,["H5921"]],[17,19,["H776"]]]},{"k":11657,"v":[[0,4,["H7637"]],[4,5,["H8141"]],[5,6,["H3077"]],[6,8,["H2388"]],[8,10,["H3947","(H853)"]],[10,12,["H8269"]],[12,14,["H3967"]],[14,15,["H5838"]],[15,17,["H1121"]],[17,19,["H3395"]],[19,21,["H3458"]],[21,23,["H1121"]],[23,25,["H3076"]],[25,27,["H5838"]],[27,29,["H1121"]],[29,31,["H5744"]],[31,33,["H4641"]],[33,35,["H1121"]],[35,37,["H5718"]],[37,39,["H478"]],[39,41,["H1121"]],[41,43,["H2147"]],[43,45,["H1285"]],[45,46,["H5973"]],[46,47,[]]]},{"k":11658,"v":[[0,4,["H5437"]],[4,6,["H3063"]],[6,8,["H6908","(H853)"]],[8,10,["H3881"]],[10,13,["H4480","H3605"]],[13,15,["H5892"]],[15,17,["H3063"]],[17,20,["H7218"]],[20,23,["H1"]],[23,25,["H3478"]],[25,28,["H935"]],[28,29,["H413"]],[29,30,["H3389"]]]},{"k":11659,"v":[[0,2,["H3605"]],[2,4,["H6951"]],[4,5,["H3772"]],[5,7,["H1285"]],[7,8,["H5973"]],[8,10,["H4428"]],[10,13,["H1004"]],[13,15,["H430"]],[15,18,["H559"]],[18,21,["H2009"]],[21,23,["H4428"]],[23,24,["H1121"]],[24,26,["H4427"]],[26,27,["H834"]],[27,29,["H3068"]],[29,31,["H1696"]],[31,32,["H5921"]],[32,34,["H1121"]],[34,36,["H1732"]]]},{"k":11660,"v":[[0,1,["H2088"]],[1,4,["H1697"]],[4,5,["H834"]],[5,8,["H6213"]],[8,11,["H7992"]],[11,12,["H4480"]],[12,14,["H935"]],[14,17,["H7676"]],[17,20,["H3548"]],[20,24,["H3881"]],[24,27,["H7778"]],[27,30,["H5592"]]]},{"k":11661,"v":[[0,4,["H7992"]],[4,9,["H4428"]],[9,10,["H1004"]],[10,14,["H7992"]],[14,17,["H8179"]],[17,20,["H3247"]],[20,22,["H3605"]],[22,24,["H5971"]],[24,29,["H2691"]],[29,32,["H1004"]],[32,35,["H3068"]]]},{"k":11662,"v":[[0,3,["H408"]],[3,4,["H935"]],[4,7,["H1004"]],[7,10,["H3068"]],[10,11,["H3588","H518"]],[11,13,["H3548"]],[13,17,["H8334"]],[17,20,["H3881"]],[20,21,["H1992"]],[21,24,["H935"]],[24,25,["H3588"]],[25,26,["H1992"]],[26,28,["H6944"]],[28,30,["H3605"]],[30,32,["H5971"]],[32,34,["H8104"]],[34,36,["H4931"]],[36,39,["H3068"]]]},{"k":11663,"v":[[0,3,["H3881"]],[3,5,["H5362","(H853)"]],[5,7,["H4428"]],[7,9,["H5439"]],[9,11,["H376"]],[11,14,["H3627"]],[14,17,["H3027"]],[17,21,["H935"]],[21,22,["H413"]],[22,24,["H1004"]],[24,30,["H4191"]],[30,32,["H1961"]],[32,34,["H854"]],[34,36,["H4428"]],[36,40,["H935"]],[40,45,["H3318"]]]},{"k":11664,"v":[[0,3,["H3881"]],[3,5,["H3605"]],[5,6,["H3063"]],[6,7,["H6213"]],[7,11,["H3605"]],[11,12,["H834"]],[12,13,["H3077"]],[13,15,["H3548"]],[15,17,["H6680"]],[17,19,["H3947"]],[19,21,["H376","(H853)"]],[21,23,["H376"]],[23,28,["H935"]],[28,31,["H7676"]],[31,32,["H5973"]],[32,37,["H3318"]],[37,41,["H7676"]],[41,42,["H3588"]],[42,43,["H3077"]],[43,45,["H3548"]],[45,46,["H6362"]],[46,47,["H3808","(H853)"]],[47,49,["H4256"]]]},{"k":11665,"v":[[0,2,["H3077"]],[2,4,["H3548"]],[4,5,["H5414"]],[5,8,["H8269"]],[8,10,["H3967","(H853)"]],[10,11,["H2595"]],[11,13,["H4043"]],[13,15,["H7982"]],[15,16,["H834"]],[16,19,["H4428"]],[19,20,["H1732"]],[20,21,["H834"]],[21,25,["H1004"]],[25,27,["H430"]]]},{"k":11666,"v":[[0,3,["H5975","(H853)"]],[3,4,["H3605"]],[4,6,["H5971"]],[6,8,["H376"]],[8,11,["H7973"]],[11,14,["H3027"]],[14,17,["H3233"]],[17,18,["H4480","H3802"]],[18,21,["H1004"]],[21,22,["H5704"]],[22,24,["H8042"]],[24,25,["H3802"]],[25,28,["H1004"]],[28,32,["H4196"]],[32,35,["H1004"]],[35,36,["H5921"]],[36,38,["H4428"]],[38,40,["H5439"]]]},{"k":11667,"v":[[0,4,["H3318","(H853)"]],[4,6,["H4428"]],[6,7,["H1121"]],[7,9,["H5414"]],[9,10,["H5921"]],[10,11,["(H853)"]],[11,13,["H5145"]],[13,18,["H5715"]],[18,22,["H4427","(H853)"]],[22,24,["H3077"]],[24,27,["H1121"]],[27,28,["H4886"]],[28,31,["H559"]],[31,33,["H2421"]],[33,35,["H4428"]]]},{"k":11668,"v":[[0,3,["H6271"]],[3,4,["H8085","(H853)"]],[4,6,["H6963"]],[6,9,["H5971"]],[9,10,["H7323"]],[10,12,["H1984","(H853)"]],[12,14,["H4428"]],[14,16,["H935"]],[16,17,["H413"]],[17,19,["H5971"]],[19,22,["H1004"]],[22,25,["H3068"]]]},{"k":11669,"v":[[0,3,["H7200"]],[3,5,["H2009"]],[5,7,["H4428"]],[7,8,["H5975"]],[8,9,["H5921"]],[9,11,["H5982"]],[11,15,["H3996"]],[15,18,["H8269"]],[18,21,["H2689"]],[21,22,["H5921"]],[22,24,["H4428"]],[24,26,["H3605"]],[26,28,["H5971"]],[28,31,["H776"]],[31,32,["H8056"]],[32,34,["H8628"]],[34,36,["H2689"]],[36,39,["H7891"]],[39,41,["H3627"]],[41,43,["H7892"]],[43,47,["H3045"]],[47,50,["H1984"]],[50,52,["H6271"]],[52,53,["H7167","(H853)"]],[53,55,["H899"]],[55,57,["H559"]],[57,58,["H7195"]],[58,59,["H7195"]]]},{"k":11670,"v":[[0,2,["H3077"]],[2,4,["H3548"]],[4,6,["H3318","(H853)"]],[6,8,["H8269"]],[8,10,["H3967"]],[10,14,["H6485"]],[14,16,["H2428"]],[16,18,["H559"]],[18,19,["H413"]],[19,23,["H3318"]],[23,26,["H413","H4480","H1004","H7713"]],[26,29,["H935","H310"]],[29,34,["H4191"]],[34,37,["H2719"]],[37,38,["H3588"]],[38,40,["H3548"]],[40,41,["H559"]],[41,42,["H4191"]],[42,44,["H3808"]],[44,47,["H4480","H1004"]],[47,50,["H3068"]]]},{"k":11671,"v":[[0,3,["H7760"]],[3,4,["H3027"]],[4,11,["H935"]],[11,12,["H413"]],[12,14,["H3996"]],[14,17,["H5483"]],[17,18,["H8179"]],[18,21,["H4428"]],[21,22,["H1004"]],[22,24,["H4191"]],[24,26,["H8033"]]]},{"k":11672,"v":[[0,2,["H3077"]],[2,3,["H3772"]],[3,5,["H1285"]],[5,6,["H996"]],[6,9,["H996"]],[9,10,["H3605"]],[10,12,["H5971"]],[12,14,["H996"]],[14,16,["H4428"]],[16,20,["H1961"]],[20,22,["H3068"]],[22,23,["H5971"]]]},{"k":11673,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H935"]],[6,8,["H1004"]],[8,10,["H1168"]],[10,14,["H5422"]],[14,18,["H4196"]],[18,21,["H6754"]],[21,23,["H7665"]],[23,25,["H2026"]],[25,26,["H4977"]],[26,28,["H3548"]],[28,30,["H1168"]],[30,31,["H6440"]],[31,33,["H4196"]]]},{"k":11674,"v":[[0,2,["H3077"]],[2,3,["H7760"]],[3,5,["H6486"]],[5,8,["H1004"]],[8,11,["H3068"]],[11,14,["H3027"]],[14,17,["H3548"]],[17,19,["H3881"]],[19,20,["H834"]],[20,21,["H1732"]],[21,23,["H2505"]],[23,24,["H5921"]],[24,26,["H1004"]],[26,29,["H3068"]],[29,31,["H5927"]],[31,34,["H5930"]],[34,37,["H3068"]],[37,41,["H3789"]],[41,44,["H8451"]],[44,46,["H4872"]],[46,48,["H8057"]],[48,51,["H7892"]],[51,56,["H5921","H3027"]],[56,57,["H1732"]]]},{"k":11675,"v":[[0,3,["H5975"]],[3,5,["H7778"]],[5,6,["H5921"]],[6,8,["H8179"]],[8,11,["H1004"]],[11,14,["H3068"]],[14,16,["H3808"]],[16,19,["H2931"]],[19,21,["H3605"]],[21,22,["H1697"]],[22,25,["H935"]]]},{"k":11676,"v":[[0,3,["H3947","(H853)"]],[3,5,["H8269"]],[5,7,["H3967"]],[7,10,["H117"]],[10,13,["H4910"]],[13,16,["H5971"]],[16,18,["H3605"]],[18,20,["H5971"]],[20,23,["H776"]],[23,26,["H3381","(H853)"]],[26,28,["H4428"]],[28,31,["H4480","H1004"]],[31,34,["H3068"]],[34,37,["H935"]],[37,38,["H8432"]],[38,40,["H5945"]],[40,41,["H8179"]],[41,44,["H4428"]],[44,45,["H1004"]],[45,47,["H3427","(H853)"]],[47,49,["H4428"]],[49,50,["H5921"]],[50,52,["H3678"]],[52,55,["H4467"]]]},{"k":11677,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,7,["H776"]],[7,8,["H8055"]],[8,11,["H5892"]],[11,13,["H8252"]],[13,18,["H4191"]],[18,19,["H6271"]],[19,22,["H2719"]]]},{"k":11678,"v":[[0,1,["H3101"]],[1,3,["H7651"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,10,["H4427"]],[10,13,["H4427"]],[13,14,["H705"]],[14,15,["H8141"]],[15,17,["H3389"]],[17,19,["H517"]],[19,20,["H8034"]],[20,23,["H6645"]],[23,25,["H4480","H884"]]]},{"k":11679,"v":[[0,2,["H3077"]],[2,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,14,["H3605"]],[14,16,["H3117"]],[16,18,["H3077"]],[18,20,["H3548"]]]},{"k":11680,"v":[[0,2,["H3077"]],[2,3,["H5375"]],[3,6,["H8147"]],[6,7,["H802"]],[7,10,["H3205"]],[10,11,["H1121"]],[11,13,["H1323"]]]},{"k":11681,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H3651"]],[7,9,["H3101"]],[9,10,["H1961"]],[10,11,["H5973","H3820"]],[11,13,["H2318","(H853)"]],[13,15,["H1004"]],[15,18,["H3068"]]]},{"k":11682,"v":[[0,4,["H6908","(H853)"]],[4,6,["H3548"]],[6,9,["H3881"]],[9,11,["H559"]],[11,15,["H3318"]],[15,18,["H5892"]],[18,20,["H3063"]],[20,22,["H6908"]],[22,24,["H4480","H3605"]],[24,25,["H3478"]],[25,26,["H3701"]],[26,28,["H2388","(H853)"]],[28,30,["H1004"]],[30,33,["H430"]],[33,34,["H4480","H1767"]],[34,35,["H8141"]],[35,37,["H8141"]],[37,41,["H859"]],[41,42,["H4116"]],[42,44,["H1697"]],[44,47,["H3881"]],[47,48,["H4116"]],[48,50,["H3808"]]]},{"k":11683,"v":[[0,3,["H4428"]],[3,4,["H7121"]],[4,6,["H3077"]],[6,8,["H7218"]],[8,10,["H559"]],[10,13,["H4069"]],[13,16,["H3808"]],[16,17,["H1875"]],[17,18,["H5921"]],[18,20,["H3881"]],[20,23,["H935"]],[23,26,["H4480","H3063"]],[26,30,["H4480","H3389","(H853)"]],[30,32,["H4864"]],[32,38,["H4872"]],[38,40,["H5650"]],[40,43,["H3068"]],[43,47,["H6951"]],[47,49,["H3478"]],[49,52,["H168"]],[52,54,["H5715"]]]},{"k":11684,"v":[[0,1,["H3588"]],[1,3,["H1121"]],[3,5,["H6271"]],[5,8,["H4849"]],[8,11,["H6555","(H853)"]],[11,13,["H1004"]],[13,15,["H430"]],[15,17,["H1571"]],[17,18,["H3605"]],[18,21,["H6944"]],[21,24,["H1004"]],[24,27,["H3068"]],[27,30,["H6213"]],[30,32,["H1168"]]]},{"k":11685,"v":[[0,4,["H4428"]],[4,5,["H559"]],[5,7,["H6213"]],[7,8,["H259"]],[8,9,["H727"]],[9,11,["H5414"]],[11,13,["H2351"]],[13,16,["H8179"]],[16,19,["H1004"]],[19,22,["H3068"]]]},{"k":11686,"v":[[0,3,["H5414"]],[3,5,["H6963"]],[5,7,["H3063"]],[7,9,["H3389"]],[9,12,["H935"]],[12,15,["H3068"]],[15,17,["H4864"]],[17,19,["H4872"]],[19,21,["H5650"]],[21,23,["H430"]],[23,25,["H5921"]],[25,26,["H3478"]],[26,29,["H4057"]]]},{"k":11687,"v":[[0,2,["H3605"]],[2,4,["H8269"]],[4,6,["H3605"]],[6,8,["H5971"]],[8,9,["H8055"]],[9,12,["H935"]],[12,14,["H7993"]],[14,17,["H727"]],[17,18,["H5704"]],[18,23,["H3615"]]]},{"k":11688,"v":[[0,5,["H1961"]],[5,9,["H6256","(H853)"]],[9,11,["H727"]],[11,13,["H935"]],[13,14,["H413"]],[14,16,["H4428"]],[16,17,["H6486"]],[17,20,["H3027"]],[20,23,["H3881"]],[23,27,["H7200"]],[27,28,["H3588"]],[28,31,["H7227"]],[31,32,["H3701"]],[32,34,["H4428"]],[34,35,["H5608"]],[35,38,["H7218"]],[38,39,["H3548"]],[39,40,["H6496"]],[40,41,["H935"]],[41,43,["H6168","(H853)"]],[43,45,["H727"]],[45,47,["H5375"]],[47,50,["H7725"]],[50,52,["H413"]],[52,54,["H4725"]],[54,56,["H3541"]],[56,58,["H6213"]],[58,59,["H3117"]],[59,61,["H3117"]],[61,63,["H622"]],[63,64,["H3701"]],[64,66,["H7230"]]]},{"k":11689,"v":[[0,3,["H4428"]],[3,5,["H3077"]],[5,6,["H5414"]],[6,8,["H413"]],[8,11,["H6213"]],[11,13,["H4399"]],[13,16,["H5656"]],[16,19,["H1004"]],[19,22,["H3068"]],[22,24,["H1961","H7936"]],[24,25,["H2672"]],[25,27,["H2796"]],[27,29,["H2318"]],[29,31,["H1004"]],[31,34,["H3068"]],[34,36,["H1571"]],[36,39,["H2796"]],[39,40,["H1270"]],[40,42,["H5178"]],[42,44,["H2388","(H853)"]],[44,46,["H1004"]],[46,49,["H3068"]]]},{"k":11690,"v":[[0,3,["H6213","H4399"]],[3,4,["H6213"]],[4,7,["H4399"]],[7,9,["H5927","H724"]],[9,10,["H3027"]],[10,14,["H5975","(H853)"]],[14,16,["H1004"]],[16,18,["H430"]],[18,19,["H5921"]],[19,21,["H4971"]],[21,23,["H553"]],[23,24,[]]]},{"k":11691,"v":[[0,5,["H3615"]],[5,8,["H935","(H853)"]],[8,10,["H7605"]],[10,13,["H3701"]],[13,14,["H6440"]],[14,16,["H4428"]],[16,18,["H3077"]],[18,21,["H6213"]],[21,22,["H3627"]],[22,25,["H1004"]],[25,28,["H3068"]],[28,30,["H3627"]],[30,32,["H8335"]],[32,35,["H5927"]],[35,38,["H3709"]],[38,40,["H3627"]],[40,42,["H2091"]],[42,44,["H3701"]],[44,47,["H1961","H5927"]],[47,49,["H5930"]],[49,52,["H1004"]],[52,55,["H3068"]],[55,56,["H8548"]],[56,57,["H3605"]],[57,59,["H3117"]],[59,61,["H3077"]]]},{"k":11692,"v":[[0,2,["H3077"]],[2,4,["H2204"]],[4,7,["H7646"]],[7,9,["H3117"]],[9,12,["H4191"]],[12,14,["H3967"]],[14,16,["H7970"]],[16,17,["H8141"]],[17,18,["H1121"]],[18,23,["H4194"]]]},{"k":11693,"v":[[0,3,["H6912"]],[3,7,["H5892"]],[7,9,["H1732"]],[9,10,["H5973"]],[10,12,["H4428"]],[12,13,["H3588"]],[13,16,["H6213"]],[16,17,["H2896"]],[17,19,["H3478"]],[19,21,["H5973"]],[21,22,["H430"]],[22,26,["H1004"]]]},{"k":11694,"v":[[0,2,["H310"]],[2,4,["H4194"]],[4,6,["H3077"]],[6,7,["H935"]],[7,9,["H8269"]],[9,11,["H3063"]],[11,14,["H7812"]],[14,17,["H4428"]],[17,18,["H227"]],[18,20,["H4428"]],[20,21,["H8085"]],[21,22,["H413"]],[22,23,[]]]},{"k":11695,"v":[[0,3,["H5800","(H853)"]],[3,5,["H1004"]],[5,8,["H3068"]],[8,9,["H430"]],[9,12,["H1"]],[12,14,["H5647","(H853)"]],[14,15,["H842"]],[15,17,["H6091"]],[17,19,["H7110"]],[19,20,["H1961"]],[20,21,["H5921"]],[21,22,["H3063"]],[22,24,["H3389"]],[24,26,["H2063"]],[26,28,["H819"]]]},{"k":11696,"v":[[0,3,["H7971"]],[3,4,["H5030"]],[4,10,["H7725"]],[10,11,["H413"]],[11,13,["H3068"]],[13,16,["H5749"]],[16,22,["H3808"]],[22,24,["H238"]]]},{"k":11697,"v":[[0,3,["H7307"]],[3,5,["H430"]],[5,7,["H3847","(H853)"]],[7,8,["H2148"]],[8,10,["H1121"]],[10,12,["H3077"]],[12,14,["H3548"]],[14,16,["H5975"]],[16,17,["H4480","H5921"]],[17,19,["H5971"]],[19,21,["H559"]],[21,24,["H3541"]],[24,25,["H559"]],[25,26,["H430"]],[26,27,["H4100"]],[27,28,["H5674"]],[28,29,["H859","(H853)"]],[29,31,["H4687"]],[31,34,["H3068"]],[34,37,["H3808"]],[37,38,["H6743"]],[38,39,["H3588"]],[39,42,["H5800"]],[42,44,["H3068"]],[44,48,["H5800","(H853)"]],[48,49,[]]]},{"k":11698,"v":[[0,3,["H7194"]],[3,4,["H5921"]],[4,7,["H7275"]],[7,10,["H68"]],[10,13,["H4687"]],[13,16,["H4428"]],[16,19,["H2691"]],[19,22,["H1004"]],[22,25,["H3068"]]]},{"k":11699,"v":[[0,2,["H3101"]],[2,4,["H4428"]],[4,5,["H2142"]],[5,6,["H3808"]],[6,8,["H2617"]],[8,9,["H834"]],[9,10,["H3077"]],[10,12,["H1"]],[12,14,["H6213"]],[14,15,["H5973"]],[15,18,["H2026","(H853)"]],[18,20,["H1121"]],[20,24,["H4191"]],[24,26,["H559"]],[26,28,["H3068"]],[28,30,["H7200"]],[30,33,["H1875"]],[33,34,[]]]},{"k":11700,"v":[[0,5,["H1961"]],[5,8,["H8622"]],[8,11,["H8141"]],[11,14,["H2428"]],[14,16,["H758"]],[16,18,["H5927"]],[18,19,["H5921"]],[19,23,["H935"]],[23,24,["H413"]],[24,25,["H3063"]],[25,27,["H3389"]],[27,29,["H7843","(H853)"]],[29,30,["H3605"]],[30,32,["H8269"]],[32,35,["H5971"]],[35,39,["H4480","H5971"]],[39,41,["H7971"]],[41,42,["H3605"]],[42,44,["H7998"]],[44,49,["H4428"]],[49,51,["H1834"]]]},{"k":11701,"v":[[0,1,["H3588"]],[1,3,["H2428"]],[3,6,["H758"]],[6,7,["H935"]],[7,11,["H4705"]],[11,13,["H376"]],[13,16,["H3068"]],[16,17,["H5414"]],[17,19,["H3966"]],[19,20,["H7230"]],[20,21,["H2428"]],[21,24,["H3027"]],[24,25,["H3588"]],[25,28,["H5800","(H853)"]],[28,30,["H3068"]],[30,31,["H430"]],[31,34,["H1"]],[34,37,["H6213"]],[37,38,["H8201"]],[38,39,["H854"]],[39,40,["H3101"]]]},{"k":11702,"v":[[0,5,["H1980"]],[5,6,["H4480"]],[6,8,["H3588"]],[8,10,["H5800"]],[10,13,["H7227"]],[13,14,["H4251"]],[14,17,["H5650"]],[17,18,["H7194"]],[18,19,["H5921"]],[19,23,["H1818"]],[23,26,["H1121"]],[26,28,["H3077"]],[28,30,["H3548"]],[30,32,["H2026"]],[32,34,["H5921"]],[34,36,["H4296"]],[36,39,["H4191"]],[39,42,["H6912"]],[42,46,["H5892"]],[46,48,["H1732"]],[48,51,["H6912"]],[51,53,["H3808"]],[53,56,["H6913"]],[56,59,["H4428"]]]},{"k":11703,"v":[[0,2,["H428"]],[2,6,["H7194"]],[6,7,["H5921"]],[7,9,["H2066"]],[9,11,["H1121"]],[11,13,["H8100"]],[13,15,["H5984"]],[15,17,["H3075"]],[17,19,["H1121"]],[19,21,["H8116"]],[21,23,["H4125"]]]},{"k":11704,"v":[[0,4,["H1121"]],[4,7,["H7230"]],[7,10,["H4853"]],[10,12,["H5921"]],[12,16,["H3247"]],[16,19,["H1004"]],[19,21,["H430"]],[21,22,["H2009"]],[22,25,["H3789"]],[25,26,["H5921"]],[26,28,["H4097"]],[28,31,["H5612"]],[31,34,["H4428"]],[34,36,["H558"]],[36,38,["H1121"]],[38,39,["H4427"]],[39,42,["H8478"]]]},{"k":11705,"v":[[0,1,["H558"]],[1,3,["H6242"]],[3,5,["H2568"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H6242"]],[16,18,["H8672"]],[18,19,["H8141"]],[19,21,["H3389"]],[21,24,["H517"]],[24,25,["H8034"]],[25,27,["H3086"]],[27,29,["H4480","H3389"]]]},{"k":11706,"v":[[0,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,14,["H7535"]],[14,15,["H3808"]],[15,18,["H8003"]],[18,19,["H3824"]]]},{"k":11707,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,8,["H4467"]],[8,10,["H2388"]],[10,11,["H5921"]],[11,15,["H2026","(H853)"]],[15,17,["H5650"]],[17,20,["H5221","(H853)"]],[20,22,["H4428"]],[22,24,["H1"]]]},{"k":11708,"v":[[0,3,["H4191"]],[3,4,["H3808"]],[4,6,["H1121"]],[6,7,["H3588"]],[7,12,["H3789"]],[12,15,["H8451"]],[15,18,["H5612"]],[18,20,["H4872"]],[20,21,["H834"]],[21,23,["H3068"]],[23,24,["H6680"]],[24,25,["H559"]],[25,27,["H1"]],[27,29,["H3808"]],[29,30,["H4191"]],[30,31,["H5921"]],[31,33,["H1121"]],[33,34,["H3808"]],[34,37,["H1121"]],[37,38,["H4191"]],[38,39,["H5921"]],[39,41,["H1"]],[41,42,["H3588"]],[42,44,["H376"]],[44,46,["H4191"]],[46,50,["H2399"]]]},{"k":11709,"v":[[0,2,["H558"]],[2,5,["H6908","(H853)","H3063"]],[5,7,["H5975"]],[7,9,["H8269"]],[9,11,["H505"]],[11,13,["H8269"]],[13,15,["H3967"]],[15,19,["H1004"]],[19,22,["H1"]],[22,24,["H3605"]],[24,25,["H3063"]],[25,27,["H1144"]],[27,30,["H6485"]],[30,33,["H6242"]],[33,34,["H8141"]],[34,35,["H4480","H1121"]],[35,37,["H4605"]],[37,39,["H4672"]],[39,41,["H7969"]],[41,42,["H3967"]],[42,43,["H505"]],[43,44,["H977"]],[44,49,["H3318"]],[49,51,["H6635"]],[51,54,["H270"]],[54,55,["H7420"]],[55,57,["H6793"]]]},{"k":11710,"v":[[0,2,["H7936"]],[2,5,["H3967"]],[5,6,["H505"]],[6,8,["H1368"]],[8,10,["H2428"]],[10,13,["H4480","H3478"]],[13,16,["H3967"]],[16,17,["H3603"]],[17,19,["H3701"]]]},{"k":11711,"v":[[0,3,["H935"]],[3,5,["H376"]],[5,7,["H430"]],[7,8,["H413"]],[8,10,["H559"]],[10,12,["H4428"]],[12,14,["H408"]],[14,16,["H6635"]],[16,18,["H3478"]],[18,19,["H935"]],[19,20,["H5973"]],[20,22,["H3588"]],[22,24,["H3068"]],[24,26,["H369"]],[26,27,["H5973"]],[27,28,["H3478"]],[28,32,["H3605"]],[32,34,["H1121"]],[34,36,["H669"]]]},{"k":11712,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,3,["H859"]],[3,5,["H935"]],[5,6,["H6213"]],[6,9,["H2388"]],[9,12,["H4421"]],[12,13,["H430"]],[13,17,["H3782"]],[17,18,["H6440"]],[18,20,["H341"]],[20,21,["H3588"]],[21,22,["H430"]],[22,23,["H3426"]],[23,24,["H3581"]],[24,26,["H5826"]],[26,30,["H3782"]]]},{"k":11713,"v":[[0,2,["H558"]],[2,3,["H559"]],[3,6,["H376"]],[6,8,["H430"]],[8,10,["H4100"]],[10,13,["H6213"]],[13,16,["H3967"]],[16,17,["H3603"]],[17,18,["H834"]],[18,21,["H5414"]],[21,24,["H1416"]],[24,26,["H3478"]],[26,29,["H376"]],[29,31,["H430"]],[31,32,["H559"]],[32,34,["H3068"]],[34,35,["H3426"]],[35,38,["H5414"]],[38,41,["H7235"]],[41,43,["H4480","H2088"]]]},{"k":11714,"v":[[0,2,["H558"]],[2,3,["H914"]],[3,8,["H1416"]],[8,9,["H834"]],[9,11,["H935"]],[11,12,["H413"]],[12,16,["H4480","H669"]],[16,18,["H1980"]],[18,19,["H4725"]],[19,23,["H639"]],[23,25,["H3966"]],[25,26,["H2734"]],[26,28,["H3063"]],[28,31,["H7725"]],[31,32,["H4725"]],[32,34,["H2750"]],[34,35,["H639"]]]},{"k":11715,"v":[[0,2,["H558"]],[2,4,["H2388"]],[4,7,["H5090","(H853)"]],[7,9,["H5971"]],[9,11,["H1980"]],[11,14,["H1516"]],[14,16,["H4417"]],[16,18,["H5221","(H853)"]],[18,21,["H1121"]],[21,23,["H8165"]],[23,24,["H6235"]],[24,25,["H505"]]]},{"k":11716,"v":[[0,3,["H6235"]],[3,4,["H505"]],[4,6,["H2416"]],[6,9,["H1121"]],[9,11,["H3063"]],[11,14,["H7617"]],[14,16,["H935"]],[16,20,["H7218"]],[20,23,["H5553"]],[23,27,["H7993"]],[27,30,["H4480","H7218"]],[30,33,["H5553"]],[33,36,["H3605"]],[36,40,["H1234"]]]},{"k":11717,"v":[[0,3,["H1121"]],[3,6,["H1416"]],[6,7,["H834"]],[7,8,["H558"]],[8,10,["H7725"]],[10,15,["H4480","H1980"]],[15,16,["H5973"]],[16,19,["H4421"]],[19,21,["H6584"]],[21,23,["H5892"]],[23,25,["H3063"]],[25,27,["H4480","H8111"]],[27,29,["H5704"]],[29,30,["H1032"]],[30,32,["H5221"]],[32,33,["H7969"]],[33,34,["H505"]],[34,35,["H4480"]],[35,38,["H962"]],[38,39,["H7227"]],[39,40,["H961"]]]},{"k":11718,"v":[[0,5,["H1961"]],[5,7,["H310"]],[7,8,["H558"]],[8,10,["H935"]],[10,13,["H4480","H5221","(H853)"]],[13,16,["H130"]],[16,19,["H935","(H853)"]],[19,21,["H430"]],[21,24,["H1121"]],[24,26,["H8165"]],[26,30,["H5975"]],[30,34,["H430"]],[34,38,["H7812"]],[38,39,["H6440"]],[39,43,["H6999"]],[43,45,[]]]},{"k":11719,"v":[[0,3,["H639"]],[3,6,["H3068"]],[6,8,["H2734"]],[8,10,["H558"]],[10,13,["H7971"]],[13,14,["H413"]],[14,17,["H5030"]],[17,19,["H559"]],[19,22,["H4100"]],[22,26,["H1875","(H853)"]],[26,28,["H430"]],[28,31,["H5971"]],[31,32,["H834"]],[32,34,["H3808"]],[34,35,["H5337","(H853)"]],[35,38,["H5971"]],[38,42,["H4480","H3027"]]]},{"k":11720,"v":[[0,5,["H1961"]],[5,8,["H1696"]],[8,9,["H413"]],[9,14,["H559"]],[14,19,["H5414"]],[19,22,["H4428"]],[22,23,["H3289"]],[23,24,["H2308"]],[24,25,["H4100"]],[25,29,["H5221"]],[29,32,["H5030"]],[32,33,["H2308"]],[33,35,["H559"]],[35,37,["H3045"]],[37,38,["H3588"]],[38,39,["H430"]],[39,41,["H3289"]],[41,43,["H7843"]],[43,45,["H3588"]],[45,48,["H6213"]],[48,49,["H2063"]],[49,52,["H3808"]],[52,53,["H8085"]],[53,56,["H6098"]]]},{"k":11721,"v":[[0,2,["H558"]],[2,3,["H4428"]],[3,5,["H3063"]],[5,7,["H3289"]],[7,9,["H7971"]],[9,10,["H413"]],[10,11,["H3101"]],[11,13,["H1121"]],[13,15,["H3059"]],[15,17,["H1121"]],[17,19,["H3058"]],[19,20,["H4428"]],[20,22,["H3478"]],[22,23,["H559"]],[23,24,["H1980"]],[24,29,["H7200"]],[29,32,["H6440"]]]},{"k":11722,"v":[[0,2,["H3101"]],[2,3,["H4428"]],[3,5,["H3478"]],[5,6,["H7971"]],[6,7,["H413"]],[7,8,["H558"]],[8,9,["H4428"]],[9,11,["H3063"]],[11,12,["H559"]],[12,14,["H2336"]],[14,15,["H834"]],[15,18,["H3844"]],[18,19,["H7971"]],[19,20,["H413"]],[20,22,["H730"]],[22,23,["H834"]],[23,26,["H3844"]],[26,27,["H559"]],[27,28,["H5414","(H853)"]],[28,30,["H1323"]],[30,33,["H1121"]],[33,35,["H802"]],[35,39,["H5674"]],[39,41,["H7704"]],[41,42,["H2416"]],[42,43,["H834"]],[43,46,["H3844"]],[46,49,["H7429","(H853)"]],[49,51,["H2336"]]]},{"k":11723,"v":[[0,2,["H559"]],[2,3,["H2009"]],[3,6,["H5221","(H853)"]],[6,8,["H123"]],[8,11,["H3820"]],[11,14,["H5375"]],[14,16,["H3513"]],[16,17,["H3427"]],[17,18,["H6258"]],[18,20,["H1004"]],[20,21,["H4100"]],[21,24,["H1624"]],[24,27,["H7451"]],[27,31,["H5307"]],[31,33,["H859"]],[33,35,["H3063"]],[35,36,["H5973"]],[36,37,[]]]},{"k":11724,"v":[[0,2,["H558"]],[2,4,["H3808"]],[4,5,["H8085"]],[5,6,["H3588"]],[6,7,["H1931"]],[7,10,["H4480","H430"]],[10,11,["H4616"]],[11,14,["H5414"]],[14,18,["H3027"]],[18,22,["H3588"]],[22,25,["H1875","(H853)"]],[25,27,["H430"]],[27,29,["H123"]]]},{"k":11725,"v":[[0,2,["H3101"]],[2,4,["H4428"]],[4,6,["H3478"]],[6,8,["H5927"]],[8,13,["H7200"]],[13,16,["H6440"]],[16,18,["H1931"]],[18,20,["H558"]],[20,21,["H4428"]],[21,23,["H3063"]],[23,25,["H1053"]],[25,26,["H834"]],[26,29,["H3063"]]]},{"k":11726,"v":[[0,2,["H3063"]],[2,7,["H5062"]],[7,8,["H6440"]],[8,9,["H3478"]],[9,12,["H5127"]],[12,14,["H376"]],[14,17,["H168"]]]},{"k":11727,"v":[[0,2,["H3101"]],[2,4,["H4428"]],[4,6,["H3478"]],[6,7,["H8610"]],[7,8,["H558"]],[8,9,["H4428"]],[9,11,["H3063"]],[11,13,["H1121"]],[13,15,["H3101"]],[15,17,["H1121"]],[17,19,["H3059"]],[19,21,["H1053"]],[21,23,["H935"]],[23,26,["H3389"]],[26,29,["H6555"]],[29,31,["H2346"]],[31,33,["H3389"]],[33,36,["H4480","H8179"]],[36,38,["H669"]],[38,39,["H5704"]],[39,41,["H6438"]],[41,42,["H8179"]],[42,43,["H702"]],[43,44,["H3967"]],[44,45,["H520"]]]},{"k":11728,"v":[[0,4,["H3605"]],[4,6,["H2091"]],[6,9,["H3701"]],[9,10,["(H853)"]],[10,11,["H3605"]],[11,13,["H3627"]],[13,16,["H4672"]],[16,19,["H1004"]],[19,21,["H430"]],[21,22,["H5973"]],[22,23,["H5654"]],[23,26,["H214"]],[26,29,["H4428"]],[29,30,["H1004","(H853)"]],[30,32,["H1121","H8594"]],[32,35,["H7725"]],[35,37,["H8111"]]]},{"k":11729,"v":[[0,2,["H558"]],[2,4,["H1121"]],[4,6,["H3101"]],[6,7,["H4428"]],[7,9,["H3063"]],[9,10,["H2421"]],[10,11,["H310"]],[11,13,["H4194"]],[13,15,["H3101"]],[15,16,["H1121"]],[16,18,["H3059"]],[18,19,["H4428"]],[19,21,["H3478"]],[21,22,["H2568","H6240"]],[22,23,["H8141"]]]},{"k":11730,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H558"]],[8,9,["H7223"]],[9,11,["H314"]],[11,12,["H2009"]],[12,15,["H3808"]],[15,16,["H3789"]],[16,17,["H5921"]],[17,19,["H5612"]],[19,22,["H4428"]],[22,24,["H3063"]],[24,26,["H3478"]]]},{"k":11731,"v":[[0,4,["H4480","H6256"]],[4,5,["H834"]],[5,6,["H558"]],[6,9,["H5493"]],[9,11,["H4480","H310"]],[11,13,["H3068"]],[13,15,["H7194"]],[15,17,["H7195"]],[17,18,["H5921"]],[18,21,["H3389"]],[21,24,["H5127"]],[24,26,["H3923"]],[26,29,["H7971"]],[29,31,["H3923"]],[31,32,["H310"]],[32,35,["H4191"]],[35,37,["H8033"]]]},{"k":11732,"v":[[0,3,["H5375"]],[3,5,["H5921"]],[5,6,["H5483"]],[6,8,["H6912"]],[8,10,["H5973"]],[10,12,["H1"]],[12,15,["H5892"]],[15,17,["H3063"]]]},{"k":11733,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H3063"]],[6,7,["H3947","(H853)"]],[7,8,["H5818"]],[8,9,["H1931"]],[9,11,["H8337","H6240"]],[11,12,["H8141"]],[12,13,["H1121"]],[13,17,["H4427","(H853)"]],[17,21,["H8478"]],[21,23,["H1"]],[23,24,["H558"]]]},{"k":11734,"v":[[0,1,["H1931"]],[1,2,["H1129","(H853)"]],[2,3,["H359"]],[3,5,["H7725"]],[5,8,["H3063"]],[8,10,["H310"]],[10,12,["H4428"]],[12,13,["H7901"]],[13,14,["H5973"]],[14,16,["H1"]]]},{"k":11735,"v":[[0,1,["H8337","H6240"]],[1,2,["H8141"]],[2,3,["H1121"]],[3,5,["H5818"]],[5,10,["H4427"]],[10,13,["H4427"]],[13,14,["H2572"]],[14,16,["H8147"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,21,["H517"]],[21,22,["H8034"]],[22,25,["H3203"]],[25,26,["H4480"]],[26,27,["H3389"]]]},{"k":11736,"v":[[0,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3605"]],[16,17,["H834"]],[17,19,["H1"]],[19,20,["H558"]],[20,21,["H6213"]]]},{"k":11737,"v":[[0,3,["H1961","H1875"]],[3,4,["H430"]],[4,7,["H3117"]],[7,9,["H2148"]],[9,12,["H995"]],[12,15,["H7200"]],[15,17,["H430"]],[17,21,["H3117"]],[21,23,["H1875","(H853)"]],[23,25,["H3068"]],[25,26,["H430"]],[26,30,["H6743"]]]},{"k":11738,"v":[[0,4,["H3318"]],[4,6,["H3898"]],[6,9,["H6430"]],[9,12,["H6555","(H853)"]],[12,14,["H2346"]],[14,16,["H1661"]],[16,19,["H2346"]],[19,21,["H2996"]],[21,24,["H2346"]],[24,26,["H795"]],[26,28,["H1129"]],[28,29,["H5892"]],[29,31,["H795"]],[31,35,["H6430"]]]},{"k":11739,"v":[[0,2,["H430"]],[2,3,["H5826"]],[3,5,["H5921"]],[5,7,["H6430"]],[7,9,["H5921"]],[9,11,["H6163"]],[11,13,["H3427"]],[13,15,["H1485"]],[15,18,["H4586"]]]},{"k":11740,"v":[[0,3,["H5984"]],[3,4,["H5414"]],[4,5,["H4503"]],[5,7,["H5818"]],[7,10,["H8034"]],[10,12,["H1980"]],[12,14,["H5704"]],[14,17,["H935"]],[17,19,["H4714"]],[19,20,["H3588"]],[20,22,["H2388"]],[22,24,["H5704","H4605"]]]},{"k":11741,"v":[[0,2,["H5818"]],[2,3,["H1129"]],[3,4,["H4026"]],[4,6,["H3389"]],[6,7,["H5921"]],[7,9,["H6438"]],[9,10,["H8179"]],[10,12,["H5921"]],[12,14,["H1516"]],[14,15,["H8179"]],[15,17,["H5921"]],[17,19,["H4740"]],[19,24,["H2388"]],[24,25,[]]]},{"k":11742,"v":[[0,3,["H1129"]],[3,4,["H4026"]],[4,7,["H4057"]],[7,9,["H2672"]],[9,10,["H7227"]],[10,11,["H953"]],[11,12,["H3588"]],[12,14,["H1961"]],[14,15,["H7227"]],[15,16,["H4735"]],[16,21,["H8219"]],[21,25,["H4334"]],[25,26,["H406"]],[26,30,["H3755"]],[30,33,["H2022"]],[33,36,["H3760"]],[36,37,["H3588"]],[37,39,["H1961","H157"]],[39,40,["H127"]]]},{"k":11743,"v":[[0,2,["H5818"]],[2,3,["H1961"]],[3,5,["H2428"]],[5,8,["H6213","H4421"]],[8,11,["H3318"]],[11,13,["H6635"]],[13,15,["H1416"]],[15,19,["H4557"]],[19,22,["H6486"]],[22,25,["H3027"]],[25,27,["H3273"]],[27,29,["H5608"]],[29,31,["H4641"]],[31,33,["H7860"]],[33,34,["H5921"]],[34,36,["H3027"]],[36,38,["H2608"]],[38,42,["H4428"]],[42,43,["H4480","H8269"]]]},{"k":11744,"v":[[0,2,["H3605"]],[2,3,["H4557"]],[3,6,["H7218"]],[6,9,["H1"]],[9,13,["H1368"]],[13,15,["H2428"]],[15,18,["H505"]],[18,20,["H8337"]],[20,21,["H3967"]]]},{"k":11745,"v":[[0,2,["H5921"]],[2,4,["H3027"]],[4,7,["H2428","H6635"]],[7,8,["H7969"]],[8,9,["H3967"]],[9,10,["H505"]],[10,12,["H7651"]],[12,13,["H505"]],[13,15,["H2568"]],[15,16,["H3967"]],[16,18,["H6213"]],[18,19,["H4421"]],[19,21,["H2428"]],[21,22,["H3581"]],[22,24,["H5826"]],[24,26,["H4428"]],[26,27,["H5921"]],[27,29,["H341"]]]},{"k":11746,"v":[[0,2,["H5818"]],[2,3,["H3559"]],[3,7,["H3605"]],[7,9,["H6635"]],[9,10,["H4043"]],[10,12,["H7420"]],[12,14,["H3553"]],[14,16,["H8302"]],[16,18,["H7198"]],[18,20,["H7050"]],[20,23,["H68"]]]},{"k":11747,"v":[[0,3,["H6213"]],[3,5,["H3389"]],[5,6,["H2810"]],[6,7,["H4284"]],[7,10,["H2803"]],[10,12,["H1961"]],[12,13,["H5921"]],[13,15,["H4026"]],[15,17,["H5921"]],[17,19,["H6438"]],[19,21,["H3384"]],[21,22,["H2671"]],[22,24,["H1419"]],[24,25,["H68"]],[25,29,["H8034"]],[29,30,["H3318"]],[30,32,["H5704","H4480","H7350"]],[32,33,["H3588"]],[33,36,["H6381"]],[36,37,["H5826"]],[37,38,["H5704","H3588"]],[38,41,["H2388"]]]},{"k":11748,"v":[[0,5,["H2394"]],[5,7,["H3820"]],[7,10,["H1361"]],[10,11,["H5704"]],[11,13,["H7843"]],[13,16,["H4603"]],[16,19,["H3068"]],[19,21,["H430"]],[21,23,["H935"]],[23,24,["H413"]],[24,26,["H1964"]],[26,29,["H3068"]],[29,32,["H6999"]],[32,33,["H5921"]],[33,35,["H4196"]],[35,37,["H7004"]]]},{"k":11749,"v":[[0,2,["H5838"]],[2,4,["H3548"]],[4,6,["H935"]],[6,7,["H310"]],[7,10,["H5973"]],[10,12,["H8084"]],[12,13,["H3548"]],[13,16,["H3068"]],[16,20,["H1121","H2428"]]]},{"k":11750,"v":[[0,3,["H5975","H5921"]],[3,4,["H5818"]],[4,6,["H4428"]],[6,8,["H559"]],[8,13,["H3808"]],[13,16,["H5818"]],[16,19,["H6999"]],[19,22,["H3068"]],[22,23,["H3588"]],[23,26,["H3548"]],[26,28,["H1121"]],[28,30,["H175"]],[30,33,["H6942"]],[33,36,["H6999"]],[36,38,["H3318"]],[38,39,["H4480"]],[39,41,["H4720"]],[41,42,["H3588"]],[42,45,["H4603"]],[45,46,["H3808"]],[46,52,["H3519"]],[52,55,["H4480","H3068"]],[55,56,["H430"]]]},{"k":11751,"v":[[0,2,["H5818"]],[2,4,["H2196"]],[4,8,["H4730"]],[8,11,["H3027"]],[11,14,["H6999"]],[14,19,["H2196"]],[19,20,["H5973"]],[20,22,["H3548"]],[22,24,["H6883"]],[24,27,["H2224"]],[27,30,["H4696"]],[30,31,["H6440"]],[31,33,["H3548"]],[33,36,["H1004"]],[36,39,["H3068"]],[39,41,["H4480","H5921"]],[41,43,["H7004"]],[43,44,["H4196"]]]},{"k":11752,"v":[[0,2,["H5838"]],[2,4,["H7218"]],[4,5,["H3548"]],[5,7,["H3605"]],[7,9,["H3548"]],[9,10,["H6437"]],[10,11,["H413"]],[11,14,["H2009"]],[14,15,["H1931"]],[15,17,["H6879"]],[17,20,["H4696"]],[20,25,["H926"]],[25,27,["H4480","H8033"]],[27,29,["H1931"]],[29,30,["H1765"]],[30,31,["H1571"]],[31,34,["H3318"]],[34,35,["H3588"]],[35,37,["H3068"]],[37,39,["H5060"]],[39,40,[]]]},{"k":11753,"v":[[0,2,["H5818"]],[2,4,["H4428"]],[4,5,["H1961"]],[5,7,["H6879"]],[7,8,["H5704"]],[8,10,["H3117"]],[10,13,["H4194"]],[13,15,["H3427"]],[15,18,["H2669"]],[18,19,["H1004"]],[19,22,["H6879"]],[22,23,["H3588"]],[23,27,["H1504"]],[27,30,["H4480","H1004"]],[30,33,["H3068"]],[33,35,["H3147"]],[35,37,["H1121"]],[37,39,["H5921"]],[39,41,["H4428"]],[41,42,["H1004"]],[42,43,["H8199","(H853)"]],[43,45,["H5971"]],[45,48,["H776"]]]},{"k":11754,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H5818"]],[8,9,["H7223"]],[9,11,["H314"]],[11,13,["H3470"]],[13,15,["H5030"]],[15,17,["H1121"]],[17,19,["H531"]],[19,20,["H3789"]]]},{"k":11755,"v":[[0,2,["H5818"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,11,["H5973"]],[11,13,["H1"]],[13,16,["H7704"]],[16,19,["H6900"]],[19,20,["H834"]],[20,24,["H4428"]],[24,25,["H3588"]],[25,27,["H559"]],[27,28,["H1931"]],[28,31,["H6879"]],[31,33,["H3147"]],[33,35,["H1121"]],[35,36,["H4427"]],[36,39,["H8478"]]]},{"k":11756,"v":[[0,1,["H3147"]],[1,3,["H6242"]],[3,5,["H2568"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H8337","H6240"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,21,["H517"]],[21,22,["H8034"]],[22,25,["H3388"]],[25,27,["H1323"]],[27,29,["H6659"]]]},{"k":11757,"v":[[0,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3605"]],[16,17,["H834"]],[17,19,["H1"]],[19,20,["H5818"]],[20,21,["H6213"]],[21,22,["H7535"]],[22,24,["H935"]],[24,25,["H3808"]],[25,26,["H413"]],[26,28,["H1964"]],[28,31,["H3068"]],[31,34,["H5971"]],[34,37,["H7843","H5750"]]]},{"k":11758,"v":[[0,1,["H1931"]],[1,2,["H1129","(H853)"]],[2,4,["H5945"]],[4,5,["H8179"]],[5,8,["H1004"]],[8,11,["H3068"]],[11,15,["H2346"]],[15,17,["H6077"]],[17,19,["H1129"]],[19,20,["H7230"]]]},{"k":11759,"v":[[0,3,["H1129"]],[3,4,["H5892"]],[4,7,["H2022"]],[7,9,["H3063"]],[9,13,["H2793"]],[13,15,["H1129"]],[15,16,["H1003"]],[16,18,["H4026"]]]},{"k":11760,"v":[[0,1,["H1931"]],[1,2,["H3898"]],[2,4,["H5973"]],[4,6,["H4428"]],[6,9,["H1121","H5983"]],[9,11,["H2388"]],[11,12,["H5921"]],[12,16,["H1121"]],[16,18,["H5983"]],[18,19,["H5414"]],[19,22,["H1931"]],[22,23,["H8141"]],[23,25,["H3967"]],[25,26,["H3603"]],[26,28,["H3701"]],[28,30,["H6235"]],[30,31,["H505"]],[31,32,["H3734"]],[32,34,["H2406"]],[34,36,["H6235"]],[36,37,["H505"]],[37,39,["H8184"]],[39,41,["H2063"]],[41,44,["H1121"]],[44,46,["H5983"]],[46,47,["H7725"]],[47,52,["H8145"]],[52,53,["H8141"]],[53,56,["H7992"]]]},{"k":11761,"v":[[0,2,["H3147"]],[2,4,["H2388"]],[4,5,["H3588"]],[5,7,["H3559"]],[7,9,["H1870"]],[9,10,["H6440"]],[10,12,["H3068"]],[12,14,["H430"]]]},{"k":11762,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3147"]],[8,10,["H3605"]],[10,12,["H4421"]],[12,15,["H1870"]],[15,16,["H2009"]],[16,19,["H3789"]],[19,20,["H5921"]],[20,22,["H5612"]],[22,25,["H4428"]],[25,27,["H3478"]],[27,29,["H3063"]]]},{"k":11763,"v":[[0,2,["H1961"]],[2,3,["H2568"]],[3,5,["H6242"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,14,["H4427"]],[14,15,["H8337","H6240"]],[15,16,["H8141"]],[16,18,["H3389"]]]},{"k":11764,"v":[[0,2,["H3147"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,13,["H5892"]],[13,15,["H1732"]],[15,17,["H271"]],[17,19,["H1121"]],[19,20,["H4427"]],[20,23,["H8478"]]]},{"k":11765,"v":[[0,1,["H271"]],[1,3,["H6242"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,10,["H4427"]],[10,13,["H4427"]],[13,14,["H8337","H6240"]],[14,15,["H8141"]],[15,17,["H3389"]],[17,20,["H6213"]],[20,21,["H3808"]],[21,25,["H3477"]],[25,28,["H5869"]],[28,31,["H3068"]],[31,33,["H1732"]],[33,35,["H1"]]]},{"k":11766,"v":[[0,3,["H1980"]],[3,6,["H1870"]],[6,9,["H4428"]],[9,11,["H3478"]],[11,13,["H6213"]],[13,14,["H1571"]],[14,16,["H4541"]],[16,18,["H1168"]]]},{"k":11767,"v":[[0,2,["H1931"]],[2,4,["H6999"]],[4,7,["H1516"]],[7,10,["H1121"]],[10,12,["H2011"]],[12,14,["H1197","(H853)"]],[14,16,["H1121"]],[16,19,["H784"]],[19,22,["H8441"]],[22,25,["H1471"]],[25,26,["H834"]],[26,28,["H3068"]],[28,31,["H3423"]],[31,32,["H4480","H6440"]],[32,34,["H1121"]],[34,36,["H3478"]]]},{"k":11768,"v":[[0,2,["H2076"]],[2,6,["H6999"]],[6,10,["H1116"]],[10,12,["H5921"]],[12,14,["H1389"]],[14,16,["H8478"]],[16,17,["H3605"]],[17,18,["H7488"]],[18,19,["H6086"]]]},{"k":11769,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,6,["H5414"]],[6,10,["H3027"]],[10,13,["H4428"]],[13,15,["H758"]],[15,18,["H5221"]],[18,22,["H7617"]],[22,24,["H1419"]],[24,26,["H4480"]],[26,28,["H7633"]],[28,30,["H935"]],[30,33,["H1834"]],[33,37,["H1571"]],[37,38,["H5414"]],[38,41,["H3027"]],[41,44,["H4428"]],[44,46,["H3478"]],[46,48,["H5221"]],[48,52,["H1419"]],[52,53,["H4347"]]]},{"k":11770,"v":[[0,2,["H6492"]],[2,4,["H1121"]],[4,6,["H7425"]],[6,7,["H2026"]],[7,9,["H3063"]],[9,11,["H3967"]],[11,13,["H6242"]],[13,14,["H505"]],[14,16,["H259"]],[16,17,["H3117"]],[17,20,["H3605"]],[20,22,["H1121","H2428"]],[22,26,["H5800","(H853)"]],[26,28,["H3068"]],[28,29,["H430"]],[29,32,["H1"]]]},{"k":11771,"v":[[0,2,["H2147"]],[2,5,["H1368"]],[5,7,["H669"]],[7,8,["H2026","(H853)"]],[8,9,["H4641"]],[9,11,["H4428"]],[11,12,["H1121"]],[12,14,["H5840"]],[14,16,["H5057"]],[16,19,["H1004"]],[19,21,["H511"]],[21,24,["H4932"]],[24,27,["H4428"]]]},{"k":11772,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,8,["H7617"]],[8,11,["H4480","H251"]],[11,13,["H3967"]],[13,14,["H505"]],[14,15,["H802"]],[15,16,["H1121"]],[16,18,["H1323"]],[18,22,["H962","H1571"]],[22,23,["H7227"]],[23,24,["H7998"]],[24,25,["H4480"]],[25,28,["H935","(H853)"]],[28,30,["H7998"]],[30,32,["H8111"]]]},{"k":11773,"v":[[0,3,["H5030"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H8033"]],[8,10,["H8034"]],[10,12,["H5752"]],[12,16,["H3318"]],[16,17,["H6440"]],[17,19,["H6635"]],[19,21,["H935"]],[21,23,["H8111"]],[23,25,["H559"]],[25,28,["H2009"]],[28,31,["H3068"]],[31,32,["H430"]],[32,35,["H1"]],[35,37,["H2534"]],[37,38,["H5921"]],[38,39,["H3063"]],[39,42,["H5414"]],[42,46,["H3027"]],[46,50,["H2026"]],[50,54,["H2197"]],[54,57,["H5060"]],[57,58,["H5704"]],[58,59,["H8064"]]]},{"k":11774,"v":[[0,2,["H6258"]],[2,3,["H859"]],[3,4,["H559"]],[4,7,["H3533"]],[7,9,["H1121"]],[9,11,["H3063"]],[11,13,["H3389"]],[13,15,["H5650"]],[15,17,["H8198"]],[17,23,["H3808"]],[23,24,["H5973"]],[24,26,["H7535"]],[26,28,["H859"]],[28,29,["H819"]],[29,32,["H3068"]],[32,34,["H430"]]]},{"k":11775,"v":[[0,1,["H6258"]],[1,2,["H8085"]],[2,6,["H7725"]],[6,8,["H7633"]],[8,10,["H834"]],[10,14,["H7617"]],[14,17,["H4480","H251"]],[17,18,["H3588"]],[18,20,["H2740"]],[20,21,["H639"]],[21,24,["H3068"]],[24,26,["H5921"]],[26,27,[]]]},{"k":11776,"v":[[0,2,["H376"]],[2,5,["H4480","H7218"]],[5,8,["H1121"]],[8,10,["H669"]],[10,11,["H5838"]],[11,13,["H1121"]],[13,15,["H3076"]],[15,16,["H1296"]],[16,18,["H1121"]],[18,20,["H4919"]],[20,22,["H3169"]],[22,24,["H1121"]],[24,26,["H7967"]],[26,28,["H6021"]],[28,30,["H1121"]],[30,32,["H2311"]],[32,34,["H6965"]],[34,35,["H5921"]],[35,38,["H935"]],[38,39,["H4480"]],[39,41,["H6635"]]]},{"k":11777,"v":[[0,2,["H559"]],[2,7,["H3808"]],[7,9,["H935","(H853)"]],[9,11,["H7633"]],[11,12,["H2008"]],[12,14,["H3588"]],[14,18,["H819","H5921"]],[18,20,["H3068"]],[20,22,["H859"]],[22,23,["H559"]],[23,25,["H3254"]],[25,27,["H5921"]],[27,29,["H2403"]],[29,31,["H5921"]],[31,33,["H819"]],[33,34,["H3588"]],[34,36,["H819"]],[36,38,["H7227"]],[38,42,["H2740"]],[42,43,["H639"]],[43,44,["H5921"]],[44,45,["H3478"]]]},{"k":11778,"v":[[0,4,["H2502"]],[4,5,["H5800","(H853)"]],[5,7,["H7633"]],[7,10,["H961"]],[10,11,["H6440"]],[11,13,["H8269"]],[13,15,["H3605"]],[15,17,["H6951"]]]},{"k":11779,"v":[[0,3,["H376"]],[3,4,["H834"]],[4,6,["H5344"]],[6,8,["H8034"]],[8,10,["H6965"]],[10,12,["H2388"]],[12,14,["H7633"]],[14,16,["H4480"]],[16,18,["H7998"]],[18,19,["H3847"]],[19,20,["H3605"]],[20,23,["H4636"]],[23,27,["H3847"]],[27,30,["H5274"]],[30,36,["H398"]],[36,39,["H8248"]],[39,41,["H5480"]],[41,44,["H5095"]],[44,45,["H3605"]],[45,47,["H3782"]],[47,51,["H2543"]],[51,53,["H935"]],[53,56,["H3405"]],[56,61,["H5899"]],[61,62,["H681"]],[62,64,["H251"]],[64,67,["H7725"]],[67,69,["H8111"]]]},{"k":11780,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,5,["H4428"]],[5,6,["H271"]],[6,7,["H7971"]],[7,8,["H5921"]],[8,10,["H4428"]],[10,12,["H804"]],[12,14,["H5826"]],[14,15,[]]]},{"k":11781,"v":[[0,2,["H5750"]],[2,4,["H130"]],[4,6,["H935"]],[6,8,["H5221"]],[8,9,["H3063"]],[9,12,["H7617"]],[12,13,["H7628"]]]},{"k":11782,"v":[[0,2,["H6430"]],[2,5,["H6584"]],[5,7,["H5892"]],[7,11,["H8219"]],[11,15,["H5045"]],[15,17,["H3063"]],[17,20,["H3920","(H853)"]],[20,21,["H1053"]],[21,23,["H357"]],[23,25,["H1450"]],[25,27,["H7755"]],[27,30,["H1323"]],[30,33,["H8553"]],[33,36,["H1323"]],[36,38,["H1579"]],[38,42,["H1323"]],[42,46,["H3427"]],[46,47,["H8033"]]]},{"k":11783,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,4,["H3665","(H853)"]],[4,5,["H3063"]],[5,8,["H5668"]],[8,9,["H271"]],[9,10,["H4428"]],[10,12,["H3478"]],[12,13,["H3588"]],[13,17,["H6544","H3063"]],[17,19,["H4603"]],[19,20,["H4604"]],[20,23,["H3068"]]]},{"k":11784,"v":[[0,2,["H8407"]],[2,3,["H4428"]],[3,5,["H804"]],[5,6,["H935"]],[6,7,["H5921"]],[7,10,["H6696"]],[10,13,["H2388"]],[13,15,["H3808"]]]},{"k":11785,"v":[[0,1,["H3588"]],[1,2,["H271"]],[2,6,["H2505"]],[6,8,["(H853)"]],[8,10,["H1004"]],[10,13,["H3068"]],[13,18,["H1004"]],[18,21,["H4428"]],[21,25,["H8269"]],[25,27,["H5414"]],[27,31,["H4428"]],[31,33,["H804"]],[33,36,["H5833"]],[36,38,["H3808"]]]},{"k":11786,"v":[[0,4,["H6256"]],[4,7,["H6887"]],[7,10,["H4603"]],[10,12,["H3254"]],[12,15,["H3068"]],[15,16,["H1931"]],[16,19,["H4428"]],[19,20,["H271"]]]},{"k":11787,"v":[[0,3,["H2076"]],[3,6,["H430"]],[6,8,["H1834"]],[8,10,["H5221"]],[10,14,["H559"]],[14,15,["H3588"]],[15,17,["H430"]],[17,20,["H4428"]],[20,22,["H758"]],[22,23,["H5826"]],[23,28,["H2076"]],[28,34,["H5826"]],[34,37,["H1992"]],[37,38,["H1961"]],[38,40,["H3782"]],[40,45,["H3605"]],[45,46,["H3478"]]]},{"k":11788,"v":[[0,2,["H271"]],[2,4,["H622","(H853)"]],[4,6,["H3627"]],[6,9,["H1004"]],[9,11,["H430"]],[11,15,["H7112","(H853)"]],[15,17,["H3627"]],[17,20,["H1004"]],[20,22,["H430"]],[22,25,["H5462","(H853)"]],[25,27,["H1817"]],[27,30,["H1004"]],[30,33,["H3068"]],[33,36,["H6213"]],[36,38,["H4196"]],[38,40,["H3605"]],[40,41,["H6438"]],[41,43,["H3389"]]]},{"k":11789,"v":[[0,3,["H3605"]],[3,5,["H5892","H5892"]],[5,7,["H3063"]],[7,9,["H6213"]],[9,11,["H1116"]],[11,14,["H6999"]],[14,16,["H312"]],[16,17,["H430"]],[17,21,["H3707","(H853)"]],[21,23,["H3068"]],[23,24,["H430"]],[24,27,["H1"]]]},{"k":11790,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,9,["H3605"]],[9,11,["H1870"]],[11,12,["H7223"]],[12,14,["H314"]],[14,15,["H2009"]],[15,18,["H3789"]],[18,19,["H5921"]],[19,21,["H5612"]],[21,24,["H4428"]],[24,26,["H3063"]],[26,28,["H3478"]]]},{"k":11791,"v":[[0,2,["H271"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,13,["H5892"]],[13,16,["H3389"]],[16,17,["H3588"]],[17,19,["H935"]],[19,21,["H3808"]],[21,24,["H6913"]],[24,27,["H4428"]],[27,29,["H3478"]],[29,31,["H3169"]],[31,33,["H1121"]],[33,34,["H4427"]],[34,37,["H8478"]]]},{"k":11792,"v":[[0,1,["H3169"]],[1,4,["H4427"]],[4,8,["H2568"]],[8,10,["H6242"]],[10,11,["H8141"]],[11,12,["H1121"]],[12,15,["H4427"]],[15,16,["H8672"]],[16,18,["H6242"]],[18,19,["H8141"]],[19,21,["H3389"]],[21,24,["H517"]],[24,25,["H8034"]],[25,27,["H29"]],[27,29,["H1323"]],[29,31,["H2148"]]]},{"k":11793,"v":[[0,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3605"]],[16,17,["H834"]],[17,18,["H1732"]],[18,20,["H1"]],[20,22,["H6213"]]]},{"k":11794,"v":[[0,1,["H1931"]],[1,4,["H7223"]],[4,5,["H8141"]],[5,8,["H4427"]],[8,11,["H7223"]],[11,12,["H2320"]],[12,13,["H6605","(H853)"]],[13,15,["H1817"]],[15,18,["H1004"]],[18,21,["H3068"]],[21,23,["H2388"]],[23,24,[]]]},{"k":11795,"v":[[0,4,["H935","(H853)"]],[4,6,["H3548"]],[6,9,["H3881"]],[9,13,["H622"]],[13,16,["H4217"]],[16,17,["H7339"]]]},{"k":11796,"v":[[0,2,["H559"]],[2,5,["H8085"]],[5,8,["H3881"]],[8,11,["H6942","H6258"]],[11,13,["H6942","(H853)"]],[13,15,["H1004"]],[15,18,["H3068"]],[18,19,["H430"]],[19,22,["H1"]],[22,25,["H3318","(H853)"]],[25,27,["H5079"]],[27,29,["H4480"]],[29,31,["H6944"]],[31,32,[]]]},{"k":11797,"v":[[0,1,["H3588"]],[1,3,["H1"]],[3,5,["H4603"]],[5,7,["H6213"]],[7,11,["H7451"]],[11,14,["H5869"]],[14,17,["H3068"]],[17,19,["H430"]],[19,22,["H5800"]],[22,27,["H5437"]],[27,29,["H6440"]],[29,32,["H4480","H4908"]],[32,35,["H3068"]],[35,37,["H5414"]],[37,39,["H6203"]]]},{"k":11798,"v":[[0,1,["H1571"]],[1,5,["H5462"]],[5,7,["H1817"]],[7,10,["H197"]],[10,13,["H3518","(H853)"]],[13,15,["H5216"]],[15,18,["H3808"]],[18,19,["H6999"]],[19,20,["H7004"]],[20,21,["H3808"]],[21,22,["H5927"]],[22,24,["H5930"]],[24,27,["H6944"]],[27,31,["H430"]],[31,33,["H3478"]]]},{"k":11799,"v":[[0,3,["H7110"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H5921"]],[8,9,["H3063"]],[9,11,["H3389"]],[11,15,["H5414"]],[15,18,["H2189"]],[18,20,["H8047"]],[20,23,["H8322"]],[23,24,["H834"]],[24,25,["H859"]],[25,26,["H7200"]],[26,29,["H5869"]]]},{"k":11800,"v":[[0,2,["H2009"]],[2,4,["H1"]],[4,6,["H5307"]],[6,9,["H2719"]],[9,12,["H1121"]],[12,15,["H1323"]],[15,18,["H802"]],[18,21,["H7628"]],[21,22,["H5921"]],[22,23,["H2063"]]]},{"k":11801,"v":[[0,1,["H6258"]],[1,4,["H5973"]],[4,6,["H3824"]],[6,8,["H3772"]],[8,10,["H1285"]],[10,13,["H3068"]],[13,14,["H430"]],[14,16,["H3478"]],[16,19,["H2740"]],[19,20,["H639"]],[20,23,["H7725"]],[23,24,["H4480"]],[24,25,[]]]},{"k":11802,"v":[[0,2,["H1121"]],[2,4,["H408"]],[4,5,["H6258"]],[5,6,["H7952"]],[6,7,["H3588"]],[7,9,["H3068"]],[9,11,["H977"]],[11,14,["H5975"]],[14,15,["H6440"]],[15,18,["H8334"]],[18,24,["H1961","H8334"]],[24,29,["H6999"]]]},{"k":11803,"v":[[0,3,["H3881"]],[3,4,["H6965"]],[4,5,["H4287"]],[5,7,["H1121"]],[7,9,["H6022"]],[9,11,["H3100"]],[11,13,["H1121"]],[13,15,["H5838"]],[15,16,["H4480"]],[16,18,["H1121"]],[18,21,["H6956"]],[21,23,["H4480"]],[23,25,["H1121"]],[25,27,["H4847"]],[27,28,["H7027"]],[28,30,["H1121"]],[30,32,["H5660"]],[32,34,["H5838"]],[34,36,["H1121"]],[36,38,["H3094"]],[38,40,["H4480"]],[40,42,["H1649"]],[42,43,["H3098"]],[43,45,["H1121"]],[45,47,["H2155"]],[47,49,["H5731"]],[49,51,["H1121"]],[51,53,["H3098"]]]},{"k":11804,"v":[[0,2,["H4480"]],[2,4,["H1121"]],[4,6,["H469"]],[6,7,["H8113"]],[7,9,["H3273"]],[9,11,["H4480"]],[11,13,["H1121"]],[13,15,["H623"]],[15,16,["H2148"]],[16,18,["H4983"]]]},{"k":11805,"v":[[0,2,["H4480"]],[2,4,["H1121"]],[4,6,["H1968"]],[6,7,["H3171"]],[7,9,["H8096"]],[9,11,["H4480"]],[11,13,["H1121"]],[13,15,["H3038"]],[15,16,["H8098"]],[16,18,["H5816"]]]},{"k":11806,"v":[[0,3,["H622","(H853)"]],[3,5,["H251"]],[5,8,["H6942"]],[8,10,["H935"]],[10,14,["H4687"]],[14,17,["H4428"]],[17,20,["H1697"]],[20,23,["H3068"]],[23,25,["H2891"]],[25,27,["H1004"]],[27,30,["H3068"]]]},{"k":11807,"v":[[0,3,["H3548"]],[3,4,["H935"]],[4,8,["H6441"]],[8,11,["H1004"]],[11,14,["H3068"]],[14,16,["H2891"]],[16,20,["H3318","(H853)"]],[20,21,["H3605"]],[21,23,["H2932"]],[23,24,["H834"]],[24,26,["H4672"]],[26,29,["H1964"]],[29,32,["H3068"]],[32,35,["H2691"]],[35,38,["H1004"]],[38,41,["H3068"]],[41,44,["H3881"]],[44,45,["H6901"]],[45,50,["H3318"]],[50,51,["H2351"]],[51,54,["H5158"]],[54,55,["H6939"]]]},{"k":11808,"v":[[0,3,["H2490"]],[3,6,["H259"]],[6,10,["H7223"]],[10,11,["H2320"]],[11,13,["H6942"]],[13,17,["H8083"]],[17,18,["H3117"]],[18,21,["H2320"]],[21,22,["H935"]],[22,26,["H197"]],[26,29,["H3068"]],[29,32,["H6942","(H853)"]],[32,34,["H1004"]],[34,37,["H3068"]],[37,39,["H8083"]],[39,40,["H3117"]],[40,44,["H8337","H6240"]],[44,45,["H3117"]],[45,48,["H7223"]],[48,49,["H2320"]],[49,53,["H3615"]]]},{"k":11809,"v":[[0,3,["H935"]],[3,4,["H6441"]],[4,5,["H413"]],[5,6,["H2396"]],[6,8,["H4428"]],[8,10,["H559"]],[10,13,["H2891","(H853)"]],[13,14,["H3605"]],[14,16,["H1004"]],[16,19,["H3068"]],[19,22,["H4196"]],[22,25,["H5930"]],[25,27,["H3605"]],[27,29,["H3627"]],[29,33,["H4635"]],[33,34,["H7979"]],[34,35,["(H853)"]],[35,36,["H3605"]],[36,38,["H3627"]],[38,39,[]]]},{"k":11810,"v":[[0,2,["H3605"]],[2,4,["H3627"]],[4,5,["H834"]],[5,6,["H4428"]],[6,7,["H271"]],[7,10,["H4438"]],[10,13,["H2186"]],[13,16,["H4604"]],[16,19,["H3559"]],[19,21,["H6942"]],[21,23,["H2009"]],[23,26,["H6440"]],[26,28,["H4196"]],[28,31,["H3068"]]]},{"k":11811,"v":[[0,2,["H3169"]],[2,4,["H4428"]],[4,6,["H7925"]],[6,8,["H622","(H853)"]],[8,10,["H8269"]],[10,13,["H5892"]],[13,16,["H5927"]],[16,19,["H1004"]],[19,22,["H3068"]]]},{"k":11812,"v":[[0,3,["H935"]],[3,4,["H7651"]],[4,5,["H6499"]],[5,7,["H7651"]],[7,8,["H352"]],[8,10,["H7651"]],[10,11,["H3532"]],[11,13,["H7651"]],[13,15,["H6842","H5795"]],[15,19,["H2403"]],[19,20,["H5921"]],[20,22,["H4467"]],[22,24,["H5921"]],[24,26,["H4720"]],[26,28,["H5921"]],[28,29,["H3063"]],[29,32,["H559"]],[32,34,["H3548"]],[34,36,["H1121"]],[36,38,["H175"]],[38,40,["H5927"]],[40,42,["H5921"]],[42,44,["H4196"]],[44,47,["H3068"]]]},{"k":11813,"v":[[0,3,["H7819"]],[3,5,["H1241"]],[5,8,["H3548"]],[8,9,["H6901","(H853)"]],[9,11,["H1818"]],[11,13,["H2236"]],[13,17,["H4196"]],[17,22,["H7819"]],[22,24,["H352"]],[24,26,["H2236"]],[26,28,["H1818"]],[28,31,["H4196"]],[31,33,["H7819"]],[33,36,["H3532"]],[36,39,["H2236"]],[39,41,["H1818"]],[41,44,["H4196"]]]},{"k":11814,"v":[[0,4,["H5066","(H853)"]],[4,7,["H8163"]],[7,11,["H2403"]],[11,12,["H6440"]],[12,14,["H4428"]],[14,17,["H6951"]],[17,20,["H5564"]],[20,22,["H3027"]],[22,23,["H5921"]],[23,24,[]]]},{"k":11815,"v":[[0,3,["H3548"]],[3,4,["H7819"]],[4,9,["H2398"]],[9,10,["H854"]],[10,12,["H1818"]],[12,15,["H4196"]],[15,19,["H3722"]],[19,20,["H5921"]],[20,21,["H3605"]],[21,22,["H3478"]],[22,23,["H3588"]],[23,25,["H4428"]],[25,26,["H559"]],[26,30,["H5930"]],[30,34,["H2403"]],[34,39,["H3605"]],[39,40,["H3478"]]]},{"k":11816,"v":[[0,3,["H5975","(H853)"]],[3,5,["H3881"]],[5,8,["H1004"]],[8,11,["H3068"]],[11,13,["H4700"]],[13,15,["H5035"]],[15,18,["H3658"]],[18,22,["H4687"]],[22,24,["H1732"]],[24,27,["H1410"]],[27,29,["H4428"]],[29,30,["H2374"]],[30,32,["H5416"]],[32,34,["H5030"]],[34,35,["H3588"]],[35,39,["H4687"]],[39,42,["H3068"]],[42,43,["H3027"]],[43,45,["H5030"]]]},{"k":11817,"v":[[0,3,["H3881"]],[3,4,["H5975"]],[4,7,["H3627"]],[7,9,["H1732"]],[9,12,["H3548"]],[12,15,["H2689"]]]},{"k":11818,"v":[[0,2,["H2396"]],[2,3,["H559"]],[3,5,["H5927"]],[5,8,["H5930"]],[8,11,["H4196"]],[11,13,["H6256"]],[13,16,["H5930"]],[16,17,["H2490"]],[17,19,["H7892"]],[19,22,["H3068"]],[22,23,["H2490"]],[23,27,["H2689"]],[27,29,["H5921"]],[29,31,["H3027","H3627"]],[31,34,["H1732"]],[34,35,["H4428"]],[35,37,["H3478"]]]},{"k":11819,"v":[[0,2,["H3605"]],[2,4,["H6951"]],[4,5,["H7812"]],[5,8,["H7892"]],[8,9,["H7891"]],[9,12,["H2689"]],[12,13,["H2690"]],[13,15,["H3605"]],[15,18,["H5704"]],[18,21,["H5930"]],[21,23,["H3615"]]]},{"k":11820,"v":[[0,7,["H3615"]],[7,9,["H5927"]],[9,11,["H4428"]],[11,13,["H3605"]],[13,16,["H4672"]],[16,17,["H854"]],[17,19,["H3766"]],[19,22,["H7812"]]]},{"k":11821,"v":[[0,2,["H3169"]],[2,4,["H4428"]],[4,7,["H8269"]],[7,8,["H559"]],[8,10,["H3881"]],[10,13,["H1984"]],[13,16,["H3068"]],[16,19,["H1697"]],[19,21,["H1732"]],[21,24,["H623"]],[24,26,["H2374"]],[26,30,["H1984"]],[30,31,["H5704"]],[31,32,["H8057"]],[32,37,["H6915"]],[37,39,["H7812"]]]},{"k":11822,"v":[[0,2,["H3169"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H6258"]],[6,9,["H4390","H3027"]],[9,13,["H3068"]],[13,15,["H5066"]],[15,17,["H935"]],[17,18,["H2077"]],[18,21,["H8426"]],[21,24,["H1004"]],[24,27,["H3068"]],[27,30,["H6951"]],[30,32,["H935"]],[32,33,["H2077"]],[33,36,["H8426"]],[36,40,["H3605"]],[40,44,["H5081"]],[44,45,["H3820"]],[45,47,["H5930"]]]},{"k":11823,"v":[[0,3,["H4557"]],[3,7,["H5930"]],[7,8,["H834"]],[8,10,["H6951"]],[10,11,["H935"]],[11,12,["H1961"]],[12,15,["H7657"]],[15,16,["H1241"]],[16,18,["H3967"]],[18,19,["H352"]],[19,22,["H3967"]],[22,23,["H3532"]],[23,24,["H3605"]],[24,25,["H428"]],[25,30,["H5930"]],[30,33,["H3068"]]]},{"k":11824,"v":[[0,4,["H6944"]],[4,6,["H8337"]],[6,7,["H3967"]],[7,8,["H1241"]],[8,10,["H7969"]],[10,11,["H505"]],[11,12,["H6629"]]]},{"k":11825,"v":[[0,1,["H7535"]],[1,3,["H3548"]],[3,4,["H1961"]],[4,6,["H4592"]],[6,10,["H3201"]],[10,11,["H3808"]],[11,12,["H6584","(H853)"]],[12,13,["H3605"]],[13,16,["H5930"]],[16,19,["H251"]],[19,21,["H3881"]],[21,23,["H2388"]],[23,25,["H5704"]],[25,27,["H4399"]],[27,29,["H3615"]],[29,31,["H5704"]],[31,34,["H3548"]],[34,37,["H6942"]],[37,38,["H3588"]],[38,40,["H3881"]],[40,43,["H3477"]],[43,45,["H3824"]],[45,48,["H6942"]],[48,51,["H4480","H3548"]]]},{"k":11826,"v":[[0,2,["H1571"]],[2,5,["H5930"]],[5,8,["H7230"]],[8,11,["H2459"]],[11,15,["H8002"]],[15,19,["H5262"]],[19,23,["H5930"]],[23,26,["H5656"]],[26,29,["H1004"]],[29,32,["H3068"]],[32,36,["H3559"]]]},{"k":11827,"v":[[0,2,["H3169"]],[2,3,["H8055"]],[3,5,["H3605"]],[5,7,["H5971"]],[7,8,["H5921"]],[8,9,["H430"]],[9,11,["H3559"]],[11,13,["H5971"]],[13,14,["H3588"]],[14,16,["H1697"]],[16,17,["H1961"]],[17,19,["H6597"]]]},{"k":11828,"v":[[0,2,["H3169"]],[2,3,["H7971"]],[3,4,["H5921"]],[4,5,["H3605"]],[5,6,["H3478"]],[6,8,["H3063"]],[8,10,["H3789"]],[10,11,["H107"]],[11,12,["H1571"]],[12,13,["H5921"]],[13,14,["H669"]],[14,16,["H4519"]],[16,20,["H935"]],[20,23,["H1004"]],[23,26,["H3068"]],[26,28,["H3389"]],[28,30,["H6213"]],[30,32,["H6453"]],[32,35,["H3068"]],[35,36,["H430"]],[36,38,["H3478"]]]},{"k":11829,"v":[[0,3,["H4428"]],[3,6,["H3289"]],[6,9,["H8269"]],[9,11,["H3605"]],[11,13,["H6951"]],[13,15,["H3389"]],[15,17,["H6213"]],[17,19,["H6453"]],[19,22,["H8145"]],[22,23,["H2320"]]]},{"k":11830,"v":[[0,1,["H3588"]],[1,3,["H3201"]],[3,4,["H3808"]],[4,5,["H6213"]],[5,8,["H1931"]],[8,9,["H6256"]],[9,10,["H3588"]],[10,12,["H3548"]],[12,14,["H3808"]],[14,16,["H6942"]],[16,17,["H4078"]],[17,18,["H3808"]],[18,21,["H5971"]],[21,24,["H622"]],[24,26,["H3389"]]]},{"k":11831,"v":[[0,3,["H1697"]],[3,4,["H3474","H5869"]],[4,6,["H4428"]],[6,8,["H3605"]],[8,10,["H6951"]]]},{"k":11832,"v":[[0,3,["H5975"]],[3,5,["H1697"]],[5,8,["H5674","H6963"]],[8,10,["H3605"]],[10,11,["H3478"]],[11,13,["H4480","H884"]],[13,15,["H5704"]],[15,16,["H1835"]],[16,20,["H935"]],[20,22,["H6213"]],[22,24,["H6453"]],[24,27,["H3068"]],[27,28,["H430"]],[28,30,["H3478"]],[30,32,["H3389"]],[32,33,["H3588"]],[33,36,["H3808"]],[36,37,["H6213"]],[37,41,["H7230"]],[41,49,["H3789"]]]},{"k":11833,"v":[[0,3,["H7323"]],[3,4,["H1980"]],[4,7,["H107"]],[7,8,["H4480","H3027"]],[8,10,["H4428"]],[10,13,["H8269"]],[13,15,["H3605"]],[15,16,["H3478"]],[16,18,["H3063"]],[18,23,["H4687"]],[23,26,["H4428"]],[26,27,["H559"]],[27,29,["H1121"]],[29,31,["H3478"]],[31,33,["H7725"]],[33,34,["H413"]],[34,36,["H3068"]],[36,37,["H430"]],[37,39,["H85"]],[39,40,["H3327"]],[40,42,["H3478"]],[42,46,["H7725"]],[46,47,["H413"]],[47,49,["H7604"]],[49,54,["H6413"]],[54,58,["H4480","H3709"]],[58,61,["H4428"]],[61,63,["H804"]]]},{"k":11834,"v":[[0,2,["H1961"]],[2,3,["H408"]],[3,7,["H1"]],[7,11,["H251"]],[11,12,["H834"]],[12,13,["H4603"]],[13,16,["H3068"]],[16,17,["H430"]],[17,20,["H1"]],[20,25,["H5414"]],[25,27,["H8047"]],[27,28,["H834"]],[28,29,["H859"]],[29,30,["H7200"]]]},{"k":11835,"v":[[0,1,["H6258"]],[1,5,["H408","H7185","H6203"]],[5,8,["H1"]],[8,11,["H5414","H3027"]],[11,15,["H3068"]],[15,17,["H935"]],[17,20,["H4720"]],[20,21,["H834"]],[21,24,["H6942"]],[24,26,["H5769"]],[26,28,["H5647","(H853)"]],[28,30,["H3068"]],[30,32,["H430"]],[32,35,["H2740"]],[35,38,["H639"]],[38,41,["H7725"]],[41,42,["H4480"]],[42,43,[]]]},{"k":11836,"v":[[0,1,["H3588"]],[1,5,["H7725"]],[5,6,["H5921"]],[6,8,["H3068"]],[8,10,["H251"]],[10,13,["H1121"]],[13,16,["H7356"]],[16,17,["H6440"]],[17,22,["H7617"]],[22,28,["H7725"]],[28,30,["H2063"]],[30,31,["H776"]],[31,32,["H3588"]],[32,34,["H3068"]],[34,36,["H430"]],[36,38,["H2587"]],[38,40,["H7349"]],[40,43,["H3808"]],[43,45,["H5493"]],[45,47,["H6440"]],[47,48,["H4480"]],[48,50,["H518"]],[50,52,["H7725"]],[52,53,["H413"]],[53,54,[]]]},{"k":11837,"v":[[0,3,["H7323"]],[3,4,["H1961","H5674"]],[4,6,["H4480","H5892"]],[6,8,["H5892"]],[8,11,["H776"]],[11,13,["H669"]],[13,15,["H4519"]],[15,17,["H5704"]],[17,18,["H2074"]],[18,24,["H1961","H7832","H5921"]],[24,26,["H3932"]],[26,27,[]]]},{"k":11838,"v":[[0,1,["H389"]],[1,2,["H376"]],[2,4,["H4480","H836"]],[4,6,["H4519"]],[6,9,["H4480","H2074"]],[9,11,["H3665"]],[11,13,["H935"]],[13,15,["H3389"]]]},{"k":11839,"v":[[0,1,["H1571"]],[1,3,["H3063"]],[3,5,["H3027"]],[5,7,["H430"]],[7,8,["H1961"]],[8,10,["H5414"]],[10,12,["H259"]],[12,13,["H3820"]],[13,15,["H6213"]],[15,17,["H4687"]],[17,20,["H4428"]],[20,24,["H8269"]],[24,27,["H1697"]],[27,30,["H3068"]]]},{"k":11840,"v":[[0,3,["H622"]],[3,5,["H3389"]],[5,6,["H7227"]],[6,7,["H5971"]],[7,9,["H6213","(H853)"]],[9,11,["H2282"]],[11,14,["H4682"]],[14,17,["H8145"]],[17,18,["H2320"]],[18,20,["H3966"]],[20,21,["H7230"]],[21,22,["H6951"]]]},{"k":11841,"v":[[0,3,["H6965"]],[3,6,["H5493","(H853)"]],[6,8,["H4196"]],[8,9,["H834"]],[9,12,["H3389"]],[12,14,["H3605"]],[14,18,["H6999"]],[18,21,["H5493"]],[21,23,["H7993"]],[23,27,["H5158"]],[27,28,["H6939"]]]},{"k":11842,"v":[[0,3,["H7819"]],[3,5,["H6453"]],[5,8,["H702","H6240"]],[8,12,["H8145"]],[12,13,["H2320"]],[13,16,["H3548"]],[16,19,["H3881"]],[19,21,["H3637"]],[21,24,["H6942"]],[24,27,["H935"]],[27,30,["H5930"]],[30,33,["H1004"]],[33,36,["H3068"]]]},{"k":11843,"v":[[0,3,["H5975"]],[3,4,["H5921"]],[4,6,["H5977"]],[6,9,["H4941"]],[9,13,["H8451"]],[13,15,["H4872"]],[15,17,["H376"]],[17,19,["H430"]],[19,21,["H3548"]],[21,22,["H2236","(H853)"]],[22,24,["H1818"]],[24,30,["H4480","H3027"]],[30,33,["H3881"]]]},{"k":11844,"v":[[0,1,["H3588"]],[1,4,["H7227"]],[4,7,["H6951"]],[7,8,["H834"]],[8,10,["H3808"]],[10,11,["H6942"]],[11,14,["H3881"]],[14,18,["H5921"]],[18,20,["H7821"]],[20,23,["H6453"]],[23,26,["H3605"]],[26,29,["H3808"]],[29,30,["H2889"]],[30,32,["H6942"]],[32,36,["H3068"]]]},{"k":11845,"v":[[0,1,["H3588"]],[1,3,["H4768"]],[3,6,["H5971"]],[6,8,["H7227"]],[8,10,["H4480","H669"]],[10,12,["H4519"]],[12,13,["H3485"]],[13,15,["H2074"]],[15,17,["H3808"]],[17,19,["H2891"]],[19,20,["H3588"]],[20,23,["H398","(H853)"]],[23,25,["H6453"]],[25,26,["H3808"]],[26,30,["H3789"]],[30,31,["H3588"]],[31,32,["H3169"]],[32,33,["H6419"]],[33,34,["H5921"]],[34,36,["H559"]],[36,38,["H2896"]],[38,39,["H3068"]],[39,40,["H3722"]],[40,42,["H1157"]]]},{"k":11846,"v":[[0,2,["H3559"]],[2,4,["H3824"]],[4,6,["H1875"]],[6,7,["H430"]],[7,9,["H3068"]],[9,10,["H430"]],[10,13,["H1"]],[13,17,["H3808"]],[17,22,["H2893"]],[22,25,["H6944"]]]},{"k":11847,"v":[[0,3,["H3068"]],[3,4,["H8085"]],[4,5,["H413"]],[5,6,["H3169"]],[6,8,["H7495","(H853)"]],[8,10,["H5971"]]]},{"k":11848,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,8,["H4672"]],[8,10,["H3389"]],[10,11,["H6213","(H853)"]],[11,13,["H2282"]],[13,16,["H4682"]],[16,17,["H7651"]],[17,18,["H3117"]],[18,20,["H1419"]],[20,21,["H8057"]],[21,24,["H3881"]],[24,27,["H3548"]],[27,28,["H1984"]],[28,30,["H3068"]],[30,31,["H3117"]],[31,33,["H3117"]],[33,36,["H5797"]],[36,37,["H3627"]],[37,40,["H3068"]]]},{"k":11849,"v":[[0,2,["H3169"]],[2,3,["H1696"]],[3,4,["H5921","H3820"]],[4,6,["H3605"]],[6,8,["H3881"]],[8,10,["H7919"]],[10,12,["H2896"]],[12,13,["H7922"]],[13,16,["H3068"]],[16,20,["H398"]],[20,21,["H854"]],[21,23,["H4150"]],[23,24,["H7651"]],[24,25,["H3117"]],[25,26,["H2076"]],[26,27,["H8002"]],[27,28,["H2077"]],[28,31,["H3034"]],[31,34,["H3068"]],[34,35,["H430"]],[35,38,["H1"]]]},{"k":11850,"v":[[0,3,["H3605"]],[3,4,["H6951"]],[4,6,["H3289"]],[6,8,["H6213"]],[8,9,["H312"]],[9,10,["H7651"]],[10,11,["H3117"]],[11,14,["H6213"]],[14,16,["H7651"]],[16,17,["H3117"]],[17,19,["H8057"]]]},{"k":11851,"v":[[0,1,["H3588"]],[1,2,["H2396"]],[2,3,["H4428"]],[3,5,["H3063"]],[5,7,["H7311"]],[7,10,["H6951"]],[10,12,["H505"]],[12,13,["H6499"]],[13,15,["H7651"]],[15,16,["H505"]],[16,17,["H6629"]],[17,20,["H8269"]],[20,21,["H7311"]],[21,24,["H6951"]],[24,26,["H505"]],[26,27,["H6499"]],[27,29,["H6235"]],[29,30,["H505"]],[30,31,["H6629"]],[31,35,["H7230"]],[35,37,["H3548"]],[37,39,["H6942"]]]},{"k":11852,"v":[[0,2,["H3605"]],[2,4,["H6951"]],[4,6,["H3063"]],[6,9,["H3548"]],[9,12,["H3881"]],[12,14,["H3605"]],[14,16,["H6951"]],[16,18,["H935"]],[18,21,["H4480","H3478"]],[21,24,["H1616"]],[24,26,["H935"]],[26,30,["H4480","H776"]],[30,32,["H3478"]],[32,35,["H3427"]],[35,37,["H3063"]],[37,38,["H8055"]]]},{"k":11853,"v":[[0,3,["H1961"]],[3,4,["H1419"]],[4,5,["H8057"]],[5,7,["H3389"]],[7,8,["H3588"]],[8,11,["H4480","H3117"]],[11,13,["H8010"]],[13,15,["H1121"]],[15,17,["H1732"]],[17,18,["H4428"]],[18,20,["H3478"]],[20,23,["H3808"]],[23,25,["H2063"]],[25,27,["H3389"]]]},{"k":11854,"v":[[0,3,["H3548"]],[3,5,["H3881"]],[5,6,["H6965"]],[6,8,["H1288","(H853)"]],[8,10,["H5971"]],[10,13,["H6963"]],[13,15,["H8085"]],[15,18,["H8605"]],[18,19,["H935"]],[19,23,["H6944"]],[23,25,["H4583"]],[25,28,["H8064"]]]},{"k":11855,"v":[[0,3,["H3605"]],[3,4,["H2063"]],[4,6,["H3615"]],[6,7,["H3605"]],[7,8,["H3478"]],[8,11,["H4672"]],[11,13,["H3318"]],[13,16,["H5892"]],[16,18,["H3063"]],[18,24,["H7665","H4676"]],[24,27,["H1438"]],[27,29,["H842"]],[29,32,["H5422","(H853)"]],[32,35,["H1116"]],[35,38,["H4196"]],[38,41,["H4480","H3605"]],[41,42,["H3063"]],[42,44,["H1144"]],[44,46,["H669"]],[46,49,["H4519"]],[49,50,["H5704"]],[50,54,["H3615"]],[54,58,["H3605"]],[58,60,["H1121"]],[60,62,["H3478"]],[62,63,["H7725"]],[63,65,["H376"]],[65,68,["H272"]],[68,72,["H5892"]]]},{"k":11856,"v":[[0,2,["H3169"]],[2,3,["H5975","(H853)"]],[3,5,["H4256"]],[5,8,["H3548"]],[8,11,["H3881"]],[11,12,["H5921"]],[12,14,["H4256"]],[14,16,["H376"]],[16,18,["H6310"]],[18,20,["H5656"]],[20,22,["H3548"]],[22,24,["H3881"]],[24,27,["H5930"]],[27,31,["H8002"]],[31,33,["H8334"]],[33,37,["H3034"]],[37,40,["H1984"]],[40,43,["H8179"]],[43,46,["H4264"]],[46,49,["H3068"]]]},{"k":11857,"v":[[0,5,["H4428"]],[5,6,["H4521"]],[6,7,["H4480"]],[7,9,["H7399"]],[9,13,["H5930"]],[13,18,["H1242"]],[18,20,["H6153"]],[20,22,["H5930"]],[22,26,["H5930"]],[26,29,["H7676"]],[29,34,["H2320"]],[34,39,["H4150"]],[39,43,["H3789"]],[43,46,["H8451"]],[46,49,["H3068"]]]},{"k":11858,"v":[[0,3,["H559"]],[3,5,["H5971"]],[5,7,["H3427"]],[7,9,["H3389"]],[9,11,["H5414"]],[11,13,["H4521"]],[13,16,["H3548"]],[16,19,["H3881"]],[19,20,["H4616"]],[20,24,["H2388"]],[24,27,["H8451"]],[27,30,["H3068"]]]},{"k":11859,"v":[[0,6,["H1697"]],[6,8,["H6555"]],[8,10,["H1121"]],[10,12,["H3478"]],[12,15,["H7235"]],[15,17,["H7225"]],[17,19,["H1715"]],[19,20,["H8492"]],[20,22,["H3323"]],[22,24,["H1706"]],[24,27,["H3605"]],[27,29,["H8393"]],[29,32,["H7704"]],[32,35,["H4643"]],[35,37,["H3605"]],[37,41,["H935"]],[41,42,["H7230"]]]},{"k":11860,"v":[[0,4,["H1121"]],[4,6,["H3478"]],[6,8,["H3063"]],[8,10,["H3427"]],[10,13,["H5892"]],[13,15,["H3063"]],[15,16,["H1992"]],[16,17,["H1571"]],[17,19,["H935"]],[19,21,["H4643"]],[21,23,["H1241"]],[23,25,["H6629"]],[25,28,["H4643"]],[28,31,["H6944"]],[31,34,["H6942"]],[34,37,["H3068"]],[37,39,["H430"]],[39,41,["H5414"]],[41,44,["H6194","H6194"]]]},{"k":11861,"v":[[0,3,["H7992"]],[3,4,["H2320"]],[4,6,["H2490"]],[6,10,["H3245"]],[10,13,["H6194"]],[13,15,["H3615"]],[15,19,["H7637"]],[19,20,["H2320"]]]},{"k":11862,"v":[[0,3,["H3169"]],[3,6,["H8269"]],[6,7,["H935"]],[7,9,["H7200","(H853)"]],[9,11,["H6194"]],[11,13,["H1288","(H853)"]],[13,15,["H3068"]],[15,18,["H5971"]],[18,19,["H3478"]]]},{"k":11863,"v":[[0,2,["H3169"]],[2,3,["H1875"]],[3,4,["H5921"]],[4,6,["H3548"]],[6,9,["H3881"]],[9,10,["H5921"]],[10,12,["H6194"]]]},{"k":11864,"v":[[0,2,["H5838"]],[2,4,["H7218"]],[4,5,["H3548"]],[5,8,["H1004"]],[8,10,["H6659"]],[10,11,["H559","H413"]],[11,14,["H559"]],[14,18,["H4480","H2490"]],[18,20,["H935"]],[20,22,["H8641"]],[22,25,["H1004"]],[25,28,["H3068"]],[28,32,["H7646"]],[32,34,["H398"]],[34,37,["H3498","H5704"]],[37,38,["H7230"]],[38,39,["H3588"]],[39,41,["H3068"]],[41,43,["H1288","(H853)"]],[43,45,["H5971"]],[45,50,["H3498"]],[50,51,["(H853)"]],[51,52,["H2088"]],[52,54,["H1995"]]]},{"k":11865,"v":[[0,2,["H3169"]],[2,3,["H559"]],[3,5,["H3559"]],[5,6,["H3957"]],[6,9,["H1004"]],[9,12,["H3068"]],[12,15,["H3559"]],[15,16,[]]]},{"k":11866,"v":[[0,3,["H935","(H853)"]],[3,5,["H8641"]],[5,8,["H4643"]],[8,11,["H6944"]],[11,13,["H530"]],[13,14,["H5921"]],[14,16,["H3562"]],[16,18,["H3878"]],[18,20,["H5057"]],[20,22,["H8096"]],[22,24,["H251"]],[24,27,["H4932"]]]},{"k":11867,"v":[[0,2,["H3171"]],[2,4,["H5812"]],[4,6,["H5184"]],[6,8,["H6214"]],[8,10,["H3406"]],[10,12,["H3107"]],[12,14,["H447"]],[14,16,["H3253"]],[16,18,["H4287"]],[18,20,["H1141"]],[20,22,["H6496"]],[22,25,["H4480","H3027"]],[25,27,["H3562"]],[27,29,["H8096"]],[29,31,["H251"]],[31,34,["H4662"]],[34,36,["H3169"]],[36,38,["H4428"]],[38,40,["H5838"]],[40,42,["H5057"]],[42,45,["H1004"]],[45,47,["H430"]]]},{"k":11868,"v":[[0,2,["H6981"]],[2,4,["H1121"]],[4,6,["H3232"]],[6,8,["H3778"]],[8,10,["H7778"]],[10,13,["H4217"]],[13,15,["H5921"]],[15,18,["H5071"]],[18,20,["H430"]],[20,22,["H5414"]],[22,24,["H8641"]],[24,27,["H3068"]],[27,32,["H6944","H6944"]]]},{"k":11869,"v":[[0,2,["H5921","H3027"]],[2,5,["H5731"]],[5,7,["H4509"]],[7,9,["H3442"]],[9,11,["H8098"]],[11,12,["H568"]],[12,14,["H7935"]],[14,17,["H5892"]],[17,20,["H3548"]],[20,24,["H530"]],[24,26,["H5414"]],[26,29,["H251"]],[29,31,["H4256"]],[31,36,["H1419"]],[36,40,["H6996"]]]},{"k":11870,"v":[[0,1,["H4480","H905"]],[1,3,["H3187"]],[3,5,["H2145"]],[5,7,["H7969"]],[7,8,["H8141"]],[8,9,["H4480","H1121"]],[9,11,["H4605"]],[11,15,["H3605"]],[15,17,["H935"]],[17,20,["H1004"]],[20,23,["H3068"]],[23,25,["H3117","H3117"]],[25,26,["H1697"]],[26,29,["H5656"]],[29,32,["H4931"]],[32,36,["H4256"]]]},{"k":11871,"v":[[0,2,["H854"]],[2,4,["H3187"]],[4,7,["H3548"]],[7,10,["H1004"]],[10,13,["H1"]],[13,16,["H3881"]],[16,18,["H6242"]],[18,19,["H8141"]],[19,20,["H4480","H1121"]],[20,22,["H4605"]],[22,25,["H4931"]],[25,28,["H4256"]]]},{"k":11872,"v":[[0,4,["H3187"]],[4,6,["H3605"]],[6,9,["H2945"]],[9,11,["H802"]],[11,14,["H1121"]],[14,17,["H1323"]],[17,19,["H3605"]],[19,21,["H6951"]],[21,22,["H3588"]],[22,26,["H530"]],[26,29,["H6942"]],[29,31,["H6944"]]]},{"k":11873,"v":[[0,4,["H1121"]],[4,6,["H175"]],[6,8,["H3548"]],[8,13,["H7704"]],[13,16,["H4054"]],[16,19,["H5892"]],[19,21,["H3605"]],[21,23,["H5892","H5892"]],[23,25,["H376"]],[25,26,["H834"]],[26,28,["H5344"]],[28,30,["H8034"]],[30,32,["H5414"]],[32,33,["H4490"]],[33,35,["H3605"]],[35,37,["H2145"]],[37,40,["H3548"]],[40,43,["H3605"]],[43,48,["H3187"]],[48,51,["H3881"]]]},{"k":11874,"v":[[0,2,["H2063"]],[2,3,["H6213"]],[3,4,["H3169"]],[4,6,["H3605"]],[6,7,["H3063"]],[7,9,["H6213"]],[9,13,["H2896"]],[13,15,["H3477"]],[15,17,["H571"]],[17,18,["H6440"]],[18,20,["H3068"]],[20,22,["H430"]]]},{"k":11875,"v":[[0,3,["H3605"]],[3,4,["H4639"]],[4,5,["H834"]],[5,7,["H2490"]],[7,10,["H5656"]],[10,13,["H1004"]],[13,15,["H430"]],[15,19,["H8451"]],[19,23,["H4687"]],[23,25,["H1875"]],[25,27,["H430"]],[27,29,["H6213"]],[29,32,["H3605"]],[32,34,["H3824"]],[34,36,["H6743"]]]},{"k":11876,"v":[[0,1,["H310"]],[1,2,["H428"]],[2,3,["H1697"]],[3,6,["H571"]],[6,8,["H5576"]],[8,9,["H4428"]],[9,11,["H804"]],[11,12,["H935"]],[12,14,["H935"]],[14,16,["H3063"]],[16,18,["H2583"]],[18,19,["H5921"]],[19,21,["H1219"]],[21,22,["H5892"]],[22,24,["H559"]],[24,26,["H1234"]],[26,28,["H413"]],[28,29,[]]]},{"k":11877,"v":[[0,3,["H3169"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,6,["H5576"]],[6,8,["H935"]],[8,13,["H6440"]],[13,15,["H4421"]],[15,16,["H5921"]],[16,17,["H3389"]]]},{"k":11878,"v":[[0,3,["H3289"]],[3,4,["H5973"]],[4,6,["H8269"]],[6,10,["H1368"]],[10,12,["H5640","(H853)"]],[12,14,["H4325"]],[14,17,["H5869"]],[17,18,["H834"]],[18,20,["H4480","H2351"]],[20,22,["H5892"]],[22,26,["H5826"]],[26,27,[]]]},{"k":11879,"v":[[0,4,["H6908"]],[4,5,["H7227"]],[5,6,["H5971"]],[6,9,["H5640","(H853)"]],[9,10,["H3605"]],[10,12,["H4599"]],[12,15,["H5158"]],[15,17,["H7857"]],[17,20,["H8432"]],[20,23,["H776"]],[23,24,["H559"]],[24,25,["H4100"]],[25,28,["H4428"]],[28,30,["H804"]],[30,31,["H935"]],[31,33,["H4672"]],[33,34,["H7227"]],[34,35,["H4325"]]]},{"k":11880,"v":[[0,4,["H2388"]],[4,7,["H1129","(H853)"]],[7,8,["H3605"]],[8,10,["H2346"]],[10,13,["H6555"]],[13,17,["H5927"]],[17,18,["H5921"]],[18,20,["H4026"]],[20,22,["H312"]],[22,23,["H2346"]],[23,24,["H2351"]],[24,26,["H2388","(H853)"]],[26,27,["H4407"]],[27,30,["H5892"]],[30,32,["H1732"]],[32,34,["H6213"]],[34,35,["H7973"]],[35,37,["H4043"]],[37,39,["H7230"]]]},{"k":11881,"v":[[0,3,["H5414"]],[3,4,["H8269"]],[4,6,["H4421"]],[6,7,["H5921"]],[7,9,["H5971"]],[9,13,["H6908"]],[13,14,["H413"]],[14,16,["H413"]],[16,18,["H7339"]],[18,21,["H8179"]],[21,24,["H5892"]],[24,26,["H1696"]],[26,27,["H5921","H3824"]],[27,30,["H559"]]]},{"k":11882,"v":[[0,2,["H2388"]],[2,4,["H553"]],[4,7,["H3372","H408"]],[7,8,["H408"]],[8,9,["H2865"]],[9,10,["H4480","H6440"]],[10,12,["H4428"]],[12,14,["H804"]],[14,16,["H4480","H6440"]],[16,17,["H3605"]],[17,19,["H1995"]],[19,20,["H834"]],[20,22,["H5973"]],[22,24,["H3588"]],[24,27,["H7227"]],[27,28,["H5973"]],[28,31,["H4480","H5973"]],[31,32,[]]]},{"k":11883,"v":[[0,1,["H5973"]],[1,5,["H2220"]],[5,7,["H1320"]],[7,9,["H5973"]],[9,13,["H3068"]],[13,15,["H430"]],[15,17,["H5826"]],[17,21,["H3898"]],[21,23,["H4421"]],[23,26,["H5971"]],[26,28,["H5564"]],[28,29,["H5921"]],[29,31,["H1697"]],[31,33,["H3169"]],[33,34,["H4428"]],[34,36,["H3063"]]]},{"k":11884,"v":[[0,1,["H310"]],[1,2,["H2088"]],[2,4,["H5576"]],[4,5,["H4428"]],[5,7,["H804"]],[7,8,["H7971"]],[8,10,["H5650"]],[10,12,["H3389"]],[12,14,["H1931"]],[14,18,["H5921"]],[18,19,["H3923"]],[19,21,["H3605"]],[21,23,["H4475"]],[23,24,["H5973"]],[24,26,["H5921"]],[26,27,["H3169"]],[27,28,["H4428"]],[28,30,["H3063"]],[30,32,["H5921"]],[32,33,["H3605"]],[33,34,["H3063"]],[34,35,["H834"]],[35,38,["H3389"]],[38,39,["H559"]]]},{"k":11885,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,3,["H5576"]],[3,4,["H4428"]],[4,6,["H804"]],[6,7,["H5921","H4100"]],[7,9,["H859"]],[9,10,["H982"]],[10,13,["H3427"]],[13,16,["H4692"]],[16,18,["H3389"]]]},{"k":11886,"v":[[0,2,["H3808"]],[2,3,["H3169"]],[3,4,["H5496"]],[4,8,["H5414"]],[8,11,["H4191"]],[11,13,["H7458"]],[13,16,["H6772"]],[16,17,["H559"]],[17,19,["H3068"]],[19,21,["H430"]],[21,23,["H5337"]],[23,28,["H4480","H3709"]],[28,31,["H4428"]],[31,33,["H804"]]]},{"k":11887,"v":[[0,2,["H3808"]],[2,4,["H1931"]],[4,5,["H3169"]],[5,7,["H5493","(H853)"]],[7,10,["H1116"]],[10,13,["H4196"]],[13,15,["H559"]],[15,16,["H3063"]],[16,18,["H3389"]],[18,19,["H559"]],[19,22,["H7812"]],[22,23,["H6440"]],[23,24,["H259"]],[24,25,["H4196"]],[25,28,["H6999"]],[28,29,["H5921"]],[29,30,[]]]},{"k":11888,"v":[[0,1,["H3045"]],[1,3,["H3808"]],[3,4,["H4100"]],[4,5,["H589"]],[5,8,["H1"]],[8,10,["H6213"]],[10,12,["H3605"]],[12,14,["H5971"]],[14,17,["H776"]],[17,20,["H430"]],[20,23,["H1471"]],[23,26,["H776"]],[26,29,["H3201","H3201"]],[29,31,["H5337","(H853)"]],[31,33,["H776"]],[33,37,["H4480","H3027"]]]},{"k":11889,"v":[[0,1,["H4310"]],[1,5,["H3605"]],[5,7,["H430"]],[7,9,["H428"]],[9,10,["H1471"]],[10,11,["H834"]],[11,13,["H1"]],[13,15,["H2763"]],[15,16,["H834"]],[16,17,["H3201"]],[17,18,["H5337","(H853)"]],[18,20,["H5971"]],[20,24,["H4480","H3027"]],[24,25,["H3588"]],[25,27,["H430"]],[27,30,["H3201"]],[30,32,["H5337"]],[32,37,["H4480","H3027"]]]},{"k":11890,"v":[[0,1,["H6258"]],[1,4,["H408"]],[4,5,["H2396"]],[5,6,["H5377"]],[6,8,["H408"]],[8,9,["H5496"]],[9,13,["H2063"]],[13,14,["H408"]],[14,16,["H539"]],[16,18,["H3588"]],[18,19,["H3808","H3605"]],[19,20,["H433"]],[20,22,["H3605"]],[22,23,["H1471"]],[23,25,["H4467"]],[25,27,["H3201"]],[27,29,["H5337"]],[29,31,["H5971"]],[31,35,["H4480","H3027"]],[35,40,["H4480","H3027"]],[40,43,["H1"]],[43,46,["H637","H3588"]],[46,49,["H430"]],[49,50,["H5337"]],[50,55,["H4480","H3027"]]]},{"k":11891,"v":[[0,3,["H5650"]],[3,4,["H1696"]],[4,5,["H5750"]],[5,7,["H5921"]],[7,9,["H3068"]],[9,10,["H430"]],[10,12,["H5921"]],[12,14,["H5650"]],[14,15,["H3169"]]]},{"k":11892,"v":[[0,2,["H3789"]],[2,4,["H5612"]],[4,6,["H2778"]],[6,9,["H3068"]],[9,10,["H430"]],[10,12,["H3478"]],[12,15,["H559"]],[15,16,["H5921"]],[16,18,["H559"]],[18,21,["H430"]],[21,24,["H1471"]],[24,27,["H776"]],[27,29,["H3808"]],[29,30,["H5337"]],[30,32,["H5971"]],[32,36,["H4480","H3027"]],[36,37,["H3651"]],[37,39,["H3808"]],[39,41,["H430"]],[41,43,["H3169"]],[43,44,["H5337"]],[44,46,["H5971"]],[46,50,["H4480","H3027"]]]},{"k":11893,"v":[[0,3,["H7121"]],[3,6,["H1419"]],[6,7,["H6963"]],[7,11,["H3066"]],[11,12,["H5921"]],[12,14,["H5971"]],[14,16,["H3389"]],[16,17,["H834"]],[17,19,["H5921"]],[19,21,["H2346"]],[21,23,["H3372"]],[23,27,["H926"]],[27,29,["H4616"]],[29,32,["H3920","(H853)"]],[32,34,["H5892"]]]},{"k":11894,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H430"]],[6,8,["H3389"]],[8,10,["H5921"]],[10,12,["H430"]],[12,15,["H5971"]],[15,18,["H776"]],[18,22,["H4639"]],[22,25,["H3027"]],[25,27,["H120"]]]},{"k":11895,"v":[[0,2,["H5921"]],[2,3,["H2063"]],[3,5,["H3169"]],[5,7,["H4428"]],[7,10,["H5030"]],[10,11,["H3470"]],[11,13,["H1121"]],[13,15,["H531"]],[15,16,["H6419"]],[16,18,["H2199"]],[18,20,["H8064"]]]},{"k":11896,"v":[[0,3,["H3068"]],[3,4,["H7971"]],[4,6,["H4397"]],[6,9,["H3582"]],[9,10,["H3605"]],[10,13,["H1368"]],[13,15,["H2428"]],[15,18,["H5057"]],[18,20,["H8269"]],[20,23,["H4264"]],[23,26,["H4428"]],[26,28,["H804"]],[28,31,["H7725"]],[31,33,["H1322"]],[33,35,["H6440"]],[35,39,["H776"]],[39,45,["H935"]],[45,47,["H1004"]],[47,50,["H430"]],[50,54,["H4480","H3329"]],[54,58,["H4578"]],[58,59,["H5307"]],[59,61,["H8033"]],[61,64,["H2719"]]]},{"k":11897,"v":[[0,3,["H3068"]],[3,4,["H3467","(H853)"]],[4,5,["H3169"]],[5,8,["H3427"]],[8,10,["H3389"]],[10,13,["H4480","H3027"]],[13,15,["H5576"]],[15,17,["H4428"]],[17,19,["H804"]],[19,23,["H4480","H3027"]],[23,25,["H3605"]],[25,28,["H5095"]],[28,32,["H4480","H5439"]]]},{"k":11898,"v":[[0,2,["H7227"]],[2,3,["H935"]],[3,4,["H4503"]],[4,7,["H3068"]],[7,9,["H3389"]],[9,11,["H4030"]],[11,13,["H3169"]],[13,14,["H4428"]],[14,16,["H3063"]],[16,21,["H5375"]],[21,24,["H5869"]],[24,26,["H3605"]],[26,27,["H1471"]],[27,29,["H4480","H310","H3651"]]]},{"k":11899,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,4,["H3169"]],[4,6,["H2470"]],[6,7,["H5704"]],[7,9,["H4191"]],[9,11,["H6419"]],[11,12,["H413"]],[12,14,["H3068"]],[14,17,["H559"]],[17,22,["H5414"]],[22,25,["H4159"]]]},{"k":11900,"v":[[0,2,["H3169"]],[2,5,["H7725","H3808"]],[5,9,["H1576"]],[9,11,["H5921"]],[11,13,["H3588"]],[13,15,["H3820"]],[15,18,["H1361"]],[18,21,["H1961"]],[21,22,["H7110"]],[22,23,["H5921"]],[23,26,["H5921"]],[26,27,["H3063"]],[27,29,["H3389"]]]},{"k":11901,"v":[[0,2,["H3169"]],[2,4,["H3665"]],[4,7,["H1363"]],[7,10,["H3820"]],[10,12,["H1931"]],[12,15,["H3427"]],[15,17,["H3389"]],[17,21,["H7110"]],[21,24,["H3068"]],[24,25,["H935"]],[25,26,["H3808"]],[26,27,["H5921"]],[27,31,["H3117"]],[31,33,["H3169"]]]},{"k":11902,"v":[[0,2,["H3169"]],[2,3,["H1961"]],[3,4,["H3966"]],[4,5,["H7235"]],[5,6,["H6239"]],[6,8,["H3519"]],[8,11,["H6213"]],[11,13,["H214"]],[13,15,["H3701"]],[15,18,["H2091"]],[18,21,["H3368"]],[21,22,["H68"]],[22,25,["H1314"]],[25,28,["H4043"]],[28,32,["H3605"]],[32,34,["H2532"]],[34,35,["H3627"]]]},{"k":11903,"v":[[0,1,["H4543"]],[1,5,["H8393"]],[5,7,["H1715"]],[7,9,["H8492"]],[9,11,["H3323"]],[11,13,["H723"]],[13,16,["H3605"]],[16,18,["H929","H929"]],[18,20,["H220"]],[20,22,["H5739"]]]},{"k":11904,"v":[[0,3,["H6213"]],[3,5,["H5892"]],[5,7,["H4735"]],[7,9,["H6629"]],[9,11,["H1241"]],[11,13,["H7230"]],[13,14,["H3588"]],[14,15,["H430"]],[15,17,["H5414"]],[17,19,["H7399"]],[19,20,["H3966"]],[20,21,["H7227"]]]},{"k":11905,"v":[[0,2,["H1931"]],[2,3,["H3169"]],[3,5,["H5640","(H853)"]],[5,7,["H5945"]],[7,8,["H4161","H4325"]],[8,10,["H1521"]],[10,14,["H3474"]],[14,15,["H4295"]],[15,19,["H4628"]],[19,22,["H5892"]],[22,24,["H1732"]],[24,26,["H3169"]],[26,27,["H6743"]],[27,29,["H3605"]],[29,31,["H4639"]]]},{"k":11906,"v":[[0,1,["H3651"]],[1,7,["H3887"]],[7,10,["H8269"]],[10,12,["H894"]],[12,14,["H7971"]],[14,15,["H5921"]],[15,19,["H1875"]],[19,21,["H4159"]],[21,22,["H834"]],[22,23,["H1961"]],[23,27,["H776"]],[27,28,["H430"]],[28,29,["H5800"]],[29,32,["H5254"]],[32,37,["H3045"]],[37,38,["H3605"]],[38,43,["H3824"]]]},{"k":11907,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3169"]],[8,11,["H2617"]],[11,12,["H2009"]],[12,15,["H3789"]],[15,18,["H2377"]],[18,20,["H3470"]],[20,22,["H5030"]],[22,24,["H1121"]],[24,26,["H531"]],[26,28,["H5921"]],[28,30,["H5612"]],[30,33,["H4428"]],[33,35,["H3063"]],[35,37,["H3478"]]]},{"k":11908,"v":[[0,2,["H3169"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,13,["H4608"]],[13,16,["H6913"]],[16,19,["H1121"]],[19,21,["H1732"]],[21,23,["H3605"]],[23,24,["H3063"]],[24,27,["H3427"]],[27,29,["H3389"]],[29,30,["H6213"]],[30,32,["H3519"]],[32,35,["H4194"]],[35,37,["H4519"]],[37,39,["H1121"]],[39,40,["H4427"]],[40,43,["H8478"]]]},{"k":11909,"v":[[0,1,["H4519"]],[1,3,["H8147","H6240"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,10,["H4427"]],[10,13,["H4427"]],[13,14,["H2572"]],[14,16,["H2568"]],[16,17,["H8141"]],[17,19,["H3389"]]]},{"k":11910,"v":[[0,2,["H6213"]],[2,6,["H7451"]],[6,9,["H5869"]],[9,12,["H3068"]],[12,16,["H8441"]],[16,19,["H1471"]],[19,20,["H834"]],[20,22,["H3068"]],[22,25,["H3423"]],[25,26,["H4480","H6440"]],[26,28,["H1121"]],[28,30,["H3478"]]]},{"k":11911,"v":[[0,3,["H1129"]],[3,4,["H7725","(H853)"]],[4,7,["H1116"]],[7,8,["H834"]],[8,9,["H3169"]],[9,11,["H1"]],[11,14,["H5422"]],[14,18,["H6965"]],[18,19,["H4196"]],[19,21,["H1168"]],[21,23,["H6213"]],[23,24,["H842"]],[24,26,["H7812"]],[26,27,["H3605"]],[27,29,["H6635"]],[29,31,["H8064"]],[31,33,["H5647"]],[33,34,[]]]},{"k":11912,"v":[[0,3,["H1129"]],[3,4,["H4196"]],[4,7,["H1004"]],[7,10,["H3068"]],[10,11,["H834"]],[11,13,["H3068"]],[13,15,["H559"]],[15,17,["H3389"]],[17,20,["H8034"]],[20,21,["H1961"]],[21,23,["H5769"]]]},{"k":11913,"v":[[0,3,["H1129"]],[3,4,["H4196"]],[4,6,["H3605"]],[6,8,["H6635"]],[8,10,["H8064"]],[10,13,["H8147"]],[13,14,["H2691"]],[14,17,["H1004"]],[17,20,["H3068"]]]},{"k":11914,"v":[[0,2,["H1931"]],[2,3,["(H853)"]],[3,5,["H1121"]],[5,7,["H5674"]],[7,10,["H784"]],[10,13,["H1516"]],[13,16,["H1121"]],[16,18,["H2011"]],[18,22,["H6049"]],[22,25,["H5172"]],[25,28,["H3784"]],[28,31,["H6213"]],[31,34,["H178"]],[34,37,["H3049"]],[37,39,["H6213"]],[39,40,["H7235"]],[40,41,["H7451"]],[41,44,["H5869"]],[44,47,["H3068"]],[47,52,["H3707"]]]},{"k":11915,"v":[[0,3,["H7760","(H853)"]],[3,6,["H6459"]],[6,8,["H5566"]],[8,9,["H834"]],[9,12,["H6213"]],[12,15,["H1004"]],[15,17,["H430"]],[17,19,["H834"]],[19,20,["H430"]],[20,22,["H559"]],[22,23,["H413"]],[23,24,["H1732"]],[24,26,["H413"]],[26,27,["H8010"]],[27,29,["H1121"]],[29,31,["H2088"]],[31,32,["H1004"]],[32,35,["H3389"]],[35,36,["H834"]],[36,39,["H977"]],[39,41,["H4480","H3605"]],[41,43,["H7626"]],[43,45,["H3478"]],[45,48,["H7760","(H853)"]],[48,50,["H8034"]],[50,52,["H5865"]]]},{"k":11916,"v":[[0,1,["H3808"]],[1,5,["H3254"]],[5,6,["H5493","(H853)"]],[6,8,["H7272"]],[8,10,["H3478"]],[10,13,["H4480","H5921"]],[13,15,["H127"]],[15,16,["H834"]],[16,19,["H5975"]],[19,22,["H1"]],[22,24,["H7535","H518"]],[24,28,["H8104"]],[28,30,["H6213","(H853)"]],[30,31,["H3605"]],[31,32,["H834"]],[32,35,["H6680"]],[35,40,["H3605"]],[40,41,["H8451"]],[41,44,["H2706"]],[44,47,["H4941"]],[47,50,["H3027"]],[50,52,["H4872"]]]},{"k":11917,"v":[[0,2,["H4519"]],[2,3,["(H853)"]],[3,4,["H3063"]],[4,7,["H3427"]],[7,9,["H3389"]],[9,11,["H8582"]],[11,14,["H6213"]],[14,15,["H7451"]],[15,16,["H4480"]],[16,18,["H1471"]],[18,19,["H834"]],[19,21,["H3068"]],[21,23,["H8045"]],[23,24,["H4480","H6440"]],[24,26,["H1121"]],[26,28,["H3478"]]]},{"k":11918,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H413"]],[5,6,["H4519"]],[6,8,["H413"]],[8,10,["H5971"]],[10,14,["H3808"]],[14,15,["H7181"]]]},{"k":11919,"v":[[0,3,["H3068"]],[3,4,["H935"]],[4,5,["H5921","(H853)"]],[5,8,["H8269"]],[8,12,["H6635"]],[12,14,["H4428"]],[14,16,["H804"]],[16,17,["H834"]],[17,18,["H3920","(H853)"]],[18,19,["H4519"]],[19,22,["H2336"]],[22,24,["H631"]],[24,27,["H5178"]],[27,29,["H1980"]],[29,32,["H894"]]]},{"k":11920,"v":[[0,6,["H6887"]],[6,8,["H2470","(H853)"]],[8,10,["H6440","H3068"]],[10,12,["H430"]],[12,15,["H3665"]],[15,16,["H3966"]],[16,17,["H4480","H6440"]],[17,19,["H430"]],[19,22,["H1"]]]},{"k":11921,"v":[[0,2,["H6419"]],[2,3,["H413"]],[3,8,["H6279"]],[8,12,["H8085"]],[12,14,["H8467"]],[14,18,["H7725"]],[18,20,["H3389"]],[20,23,["H4438"]],[23,25,["H4519"]],[25,26,["H3045"]],[26,27,["H3588"]],[27,29,["H3068"]],[29,30,["H1931"]],[30,32,["H430"]]]},{"k":11922,"v":[[0,2,["H310"]],[2,3,["H3651"]],[3,5,["H1129"]],[5,7,["H2346"]],[7,8,["H2435"]],[8,10,["H5892"]],[10,12,["H1732"]],[12,16,["H4628"]],[16,18,["H1521"]],[18,21,["H5158"]],[21,26,["H935"]],[26,29,["H1709"]],[29,30,["H8179"]],[30,33,["H5437"]],[33,34,["H6077"]],[34,42,["H1361","H3966"]],[42,44,["H7760"]],[44,45,["H8269"]],[45,47,["H2428"]],[47,49,["H3605"]],[49,51,["H1219"]],[51,52,["H5892"]],[52,54,["H3063"]]]},{"k":11923,"v":[[0,4,["H5493","(H853)"]],[4,6,["H5236"]],[6,7,["H430"]],[7,10,["H5566"]],[10,14,["H4480","H1004"]],[14,17,["H3068"]],[17,19,["H3605"]],[19,21,["H4196"]],[21,22,["H834"]],[22,25,["H1129"]],[25,28,["H2022"]],[28,31,["H1004"]],[31,34,["H3068"]],[34,37,["H3389"]],[37,39,["H7993"]],[39,42,["H2351"]],[42,44,["H5892"]]]},{"k":11924,"v":[[0,3,["H1129","(H853)"]],[3,5,["H4196"]],[5,8,["H3068"]],[8,10,["H2076"]],[10,11,["H5921"]],[11,12,["H8002"]],[12,13,["H2077"]],[13,16,["H8426"]],[16,18,["H559"]],[18,19,["H3063"]],[19,21,["H5647","(H853)"]],[21,23,["H3068"]],[23,24,["H430"]],[24,26,["H3478"]]]},{"k":11925,"v":[[0,1,["H61"]],[1,3,["H5971"]],[3,5,["H2076"]],[5,6,["H5750"]],[6,10,["H1116"]],[10,14,["H3068"]],[14,16,["H430"]],[16,17,["H7535"]]]},{"k":11926,"v":[[0,3,["H3499"]],[3,7,["H1697"]],[7,8,["H4519"]],[8,11,["H8605"]],[11,12,["H413"]],[12,14,["H430"]],[14,17,["H1697"]],[17,20,["H2374"]],[20,22,["H1696"]],[22,23,["H413"]],[23,27,["H8034"]],[27,30,["H3068"]],[30,31,["H430"]],[31,33,["H3478"]],[33,34,["H2009"]],[34,38,["H5921"]],[38,40,["H1697"]],[40,43,["H4428"]],[43,45,["H3478"]]]},{"k":11927,"v":[[0,2,["H8605"]],[2,8,["H6279"]],[8,12,["H3605"]],[12,14,["H2403"]],[14,17,["H4604"]],[17,20,["H4725"]],[20,21,["H834"]],[21,23,["H1129"]],[23,25,["H1116"]],[25,28,["H5975"]],[28,29,["H842"]],[29,32,["H6456"]],[32,33,["H6440"]],[33,36,["H3665"]],[36,37,["H2009"]],[37,40,["H3789"]],[40,41,["H5921"]],[41,43,["H1697"]],[43,46,["H2335"]]]},{"k":11928,"v":[[0,2,["H4519"]],[2,3,["H7901"]],[3,4,["H5973"]],[4,6,["H1"]],[6,9,["H6912"]],[9,14,["H1004"]],[14,16,["H526"]],[16,18,["H1121"]],[18,19,["H4427"]],[19,22,["H8478"]]]},{"k":11929,"v":[[0,1,["H526"]],[1,3,["H8147"]],[3,5,["H6242"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,14,["H4427"]],[14,15,["H8147"]],[15,16,["H8141"]],[16,18,["H3389"]]]},{"k":11930,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,14,["H834"]],[14,15,["H6213"]],[15,16,["H4519"]],[16,18,["H1"]],[18,20,["H526"]],[20,21,["H2076"]],[21,23,["H3605"]],[23,26,["H6456"]],[26,27,["H834"]],[27,28,["H4519"]],[28,30,["H1"]],[30,32,["H6213"]],[32,34,["H5647"]],[34,35,[]]]},{"k":11931,"v":[[0,4,["H3808","H3665"]],[4,5,["H4480","H6440"]],[5,7,["H3068"]],[7,9,["H4519"]],[9,11,["H1"]],[11,14,["H3665"]],[14,15,["H3588"]],[15,16,["H526"]],[16,17,["H819"]],[17,20,["H7235"]]]},{"k":11932,"v":[[0,3,["H5650"]],[3,4,["H7194"]],[4,5,["H5921"]],[5,8,["H4191"]],[8,13,["H1004"]]]},{"k":11933,"v":[[0,3,["H5971"]],[3,6,["H776"]],[6,7,["H5221","(H853)"]],[7,8,["H3605"]],[8,12,["H7194"]],[12,13,["H5921"]],[13,14,["H4428"]],[14,15,["H526"]],[15,18,["H5971"]],[18,21,["H776"]],[21,26,["H4427","(H853)","H2977","H1121"]],[26,29,["H8478"]]]},{"k":11934,"v":[[0,1,["H2977"]],[1,3,["H8083"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,10,["H4427"]],[10,13,["H4427"]],[13,15,["H3389"]],[15,16,["H259"]],[16,18,["H7970"]],[18,19,["H8141"]]]},{"k":11935,"v":[[0,3,["H6213"]],[3,7,["H3477"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H1980"]],[15,18,["H1870"]],[18,20,["H1732"]],[20,22,["H1"]],[22,24,["H5493"]],[24,29,["H3225"]],[29,33,["H8040"]]]},{"k":11936,"v":[[0,4,["H8083"]],[4,5,["H8141"]],[5,8,["H4427"]],[8,10,["H1931"]],[10,12,["H5750"]],[12,13,["H5288"]],[13,15,["H2490"]],[15,17,["H1875"]],[17,20,["H430"]],[20,22,["H1732"]],[22,24,["H1"]],[24,28,["H8147","H6240"]],[28,29,["H8141"]],[29,31,["H2490"]],[31,33,["H2891","(H853)"]],[33,34,["H3063"]],[34,36,["H3389"]],[36,37,["H4480"]],[37,40,["H1116"]],[40,43,["H842"]],[43,47,["H6456"]],[47,51,["H4541"]]]},{"k":11937,"v":[[0,4,["H5422","(H853)"]],[4,6,["H4196"]],[6,8,["H1168"]],[8,11,["H6440"]],[11,14,["H2553"]],[14,15,["H834"]],[15,18,["H4605"]],[18,19,["H4480","H5921"]],[19,23,["H1438"]],[23,26,["H842"]],[26,30,["H6456"]],[30,34,["H4541"]],[34,38,["H7665"]],[38,41,["H1854"]],[41,45,["H2236"]],[45,47,["H5921","H6440"]],[47,49,["H6913"]],[49,54,["H2076"]],[54,56,[]]]},{"k":11938,"v":[[0,3,["H8313"]],[3,5,["H6106"]],[5,8,["H3548"]],[8,9,["H5921"]],[9,11,["H4196"]],[11,13,["H2891","(H853)"]],[13,14,["H3063"]],[14,16,["H3389"]]]},{"k":11939,"v":[[0,7,["H5892"]],[7,9,["H4519"]],[9,11,["H669"]],[11,13,["H8095"]],[13,15,["H5704"]],[15,16,["H5321"]],[16,19,["H2719"]],[19,21,["H5439"]]]},{"k":11940,"v":[[0,6,["H5422","(H853)"]],[6,8,["H4196"]],[8,11,["H842"]],[11,14,["H3807"]],[14,17,["H6456"]],[17,19,["H1854"]],[19,22,["H1438"]],[22,23,["H3605"]],[23,25,["H2553"]],[25,27,["H3605"]],[27,29,["H776"]],[29,31,["H3478"]],[31,33,["H7725"]],[33,35,["H3389"]]]},{"k":11941,"v":[[0,4,["H8083","H6240"]],[4,5,["H8141"]],[5,8,["H4427"]],[8,12,["H2891"]],[12,14,["H776"]],[14,17,["H1004"]],[17,19,["H7971","(H853)"]],[19,20,["H8227"]],[20,22,["H1121"]],[22,24,["H683"]],[24,26,["H4641"]],[26,28,["H8269"]],[28,31,["H5892"]],[31,33,["H3098"]],[33,35,["H1121"]],[35,37,["H3099"]],[37,39,["H2142"]],[39,41,["H2388","(H853)"]],[41,43,["H1004"]],[43,46,["H3068"]],[46,48,["H430"]]]},{"k":11942,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,6,["H2518"]],[6,8,["H1419"]],[8,9,["H3548"]],[9,11,["H5414","(H853)"]],[11,13,["H3701"]],[13,17,["H935"]],[17,19,["H1004"]],[19,21,["H430"]],[21,22,["H834"]],[22,24,["H3881"]],[24,26,["H8104"]],[26,28,["H5592"]],[28,30,["H622"]],[30,33,["H4480","H3027"]],[33,35,["H4519"]],[35,37,["H669"]],[37,40,["H4480","H3605"]],[40,42,["H7611"]],[42,44,["H3478"]],[44,47,["H4480","H3605"]],[47,48,["H3063"]],[48,50,["H1144"]],[50,53,["H7725"]],[53,55,["H3389"]]]},{"k":11943,"v":[[0,3,["H5414"]],[3,5,["H5921"]],[5,7,["H3027"]],[7,10,["H6213","H4399"]],[10,14,["H6485"]],[14,17,["H1004"]],[17,20,["H3068"]],[20,23,["H5414"]],[23,27,["H6213","H4399"]],[27,28,["H834"]],[28,29,["H6213"]],[29,32,["H1004"]],[32,35,["H3068"]],[35,37,["H918"]],[37,39,["H2388"]],[39,41,["H1004"]]]},{"k":11944,"v":[[0,4,["H2796"]],[4,6,["H1129"]],[6,7,["H5414"]],[7,11,["H7069"]],[11,12,["H4274"]],[12,13,["H68"]],[13,15,["H6086"]],[15,17,["H4226"]],[17,20,["H7136","(H853)"]],[20,22,["H1004"]],[22,23,["H834"]],[23,25,["H4428"]],[25,27,["H3063"]],[27,29,["H7843"]]]},{"k":11945,"v":[[0,3,["H376"]],[3,4,["H6213"]],[4,6,["H4399"]],[6,7,["H530"]],[7,10,["H5329"]],[10,11,["H5921"]],[11,14,["H3189"]],[14,16,["H5662"]],[16,18,["H3881"]],[18,19,["H4480"]],[19,21,["H1121"]],[21,23,["H4847"]],[23,25,["H2148"]],[25,27,["H4918"]],[27,28,["H4480"]],[28,30,["H1121"]],[30,33,["H6956"]],[33,37,["H6485"]],[37,42,["H3881"]],[42,43,["H3605"]],[43,46,["H995"]],[46,48,["H3627"]],[48,50,["H7892"]]]},{"k":11946,"v":[[0,4,["H5921"]],[4,8,["H5449"]],[8,11,["H5329"]],[11,13,["H3605"]],[13,15,["H6213"]],[15,17,["H4399"]],[17,22,["H5656","H5656"]],[22,24,["H4480"]],[24,26,["H3881"]],[26,29,["H5608"]],[29,31,["H7860"]],[31,33,["H7778"]]]},{"k":11947,"v":[[0,5,["H3318","(H853)"]],[5,7,["H3701"]],[7,11,["H935"]],[11,13,["H1004"]],[13,16,["H3068"]],[16,17,["H2518"]],[17,19,["H3548"]],[19,20,["H4672","(H853)"]],[20,22,["H5612"]],[22,25,["H8451"]],[25,28,["H3068"]],[28,30,["H3027"]],[30,31,["H4872"]]]},{"k":11948,"v":[[0,2,["H2518"]],[2,3,["H6030"]],[3,5,["H559"]],[5,6,["H413"]],[6,7,["H8227"]],[7,9,["H5608"]],[9,12,["H4672"]],[12,14,["H5612"]],[14,17,["H8451"]],[17,20,["H1004"]],[20,23,["H3068"]],[23,25,["H2518"]],[25,26,["H5414","(H853)"]],[26,28,["H5612"]],[28,29,["H413"]],[29,30,["H8227"]]]},{"k":11949,"v":[[0,2,["H8227"]],[2,3,["H935","(H853)"]],[3,5,["H5612"]],[5,6,["H413"]],[6,8,["H4428"]],[8,10,["H7725","(H853)"]],[10,12,["H4428"]],[12,13,["H1697"]],[13,15,["H5750"]],[15,16,["H559"]],[16,17,["H3605"]],[17,18,["H834"]],[18,20,["H5414"]],[20,23,["H3027","H5650"]],[23,24,["H1992"]],[24,25,["H6213"]],[25,26,[]]]},{"k":11950,"v":[[0,5,["H5413","(H853)"]],[5,7,["H3701"]],[7,10,["H4672"]],[10,13,["H1004"]],[13,16,["H3068"]],[16,19,["H5414"]],[19,21,["H5921"]],[21,23,["H3027"]],[23,26,["H6485"]],[26,28,["H5921"]],[28,30,["H3027"]],[30,33,["H6213","H4399"]]]},{"k":11951,"v":[[0,2,["H8227"]],[2,4,["H5608"]],[4,5,["H5046"]],[5,7,["H4428"]],[7,8,["H559"]],[8,9,["H2518"]],[9,11,["H3548"]],[11,13,["H5414"]],[13,16,["H5612"]],[16,18,["H8227"]],[18,19,["H7121"]],[19,21,["H6440"]],[21,23,["H4428"]]]},{"k":11952,"v":[[0,5,["H1961"]],[5,8,["H4428"]],[8,10,["H8085","(H853)"]],[10,12,["H1697"]],[12,15,["H8451"]],[15,18,["H7167","(H853)"]],[18,20,["H899"]]]},{"k":11953,"v":[[0,3,["H4428"]],[3,4,["H6680","(H853)"]],[4,5,["H2518"]],[5,7,["H296"]],[7,9,["H1121"]],[9,11,["H8227"]],[11,13,["H5658"]],[13,15,["H1121"]],[15,17,["H4318"]],[17,19,["H8227"]],[19,21,["H5608"]],[21,23,["H6222"]],[23,25,["H5650"]],[25,28,["H4428"]],[28,29,["H559"]]]},{"k":11954,"v":[[0,1,["H1980"]],[1,3,["H1875","(H853)"]],[3,5,["H3068"]],[5,6,["H1157"]],[6,9,["H1157"]],[9,13,["H7604"]],[13,15,["H3478"]],[15,18,["H3063"]],[18,19,["H5921"]],[19,21,["H1697"]],[21,24,["H5612"]],[24,25,["H834"]],[25,27,["H4672"]],[27,28,["H3588"]],[28,29,["H1419"]],[29,32,["H2534"]],[32,35,["H3068"]],[35,36,["H834"]],[36,39,["H5413"]],[39,42,["H5921","H834"]],[42,44,["H1"]],[44,46,["H3808"]],[46,47,["H8104","(H853)"]],[47,49,["H1697"]],[49,52,["H3068"]],[52,54,["H6213"]],[54,56,["H3605"]],[56,59,["H3789"]],[59,60,["H5921"]],[60,61,["H2088"]],[61,62,["H5612"]]]},{"k":11955,"v":[[0,2,["H2518"]],[2,5,["H834"]],[5,7,["H4428"]],[7,10,["H1980"]],[10,11,["H413"]],[11,12,["H2468"]],[12,14,["H5031"]],[14,16,["H802"]],[16,18,["H7967"]],[18,20,["H1121"]],[20,22,["H8616"]],[22,24,["H1121"]],[24,26,["H2641"]],[26,27,["H8104"]],[27,30,["H899"]],[30,32,["H1931"]],[32,33,["H3427"]],[33,35,["H3389"]],[35,38,["H4932"]],[38,41,["H1696"]],[41,42,["H413"]],[42,45,["H2063"]],[45,46,[]]]},{"k":11956,"v":[[0,3,["H559"]],[3,5,["H3541"]],[5,6,["H559"]],[6,8,["H3068"]],[8,9,["H430"]],[9,11,["H3478"]],[11,12,["H559"]],[12,15,["H376"]],[15,16,["H834"]],[16,17,["H7971"]],[17,19,["H413"]],[19,20,[]]]},{"k":11957,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H2009"]],[5,8,["H935"]],[8,9,["H7451"]],[9,10,["H5921"]],[10,11,["H2088"]],[11,12,["H4725"]],[12,14,["H5921"]],[14,16,["H3427"]],[16,18,["(H853)"]],[18,19,["H3605"]],[19,21,["H423"]],[21,24,["H3789"]],[24,25,["H5921"]],[25,27,["H5612"]],[27,28,["H834"]],[28,31,["H7121"]],[31,32,["H6440"]],[32,34,["H4428"]],[34,36,["H3063"]]]},{"k":11958,"v":[[0,1,["H8478","H834"]],[1,4,["H5800"]],[4,9,["H6999"]],[9,11,["H312"]],[11,12,["H430"]],[12,13,["H4616"]],[13,19,["H3707"]],[19,21,["H3605"]],[21,23,["H4639"]],[23,26,["H3027"]],[26,29,["H2534"]],[29,33,["H5413"]],[33,35,["H2088"]],[35,36,["H4725"]],[36,39,["H3808"]],[39,41,["H3518"]]]},{"k":11959,"v":[[0,3,["H413"]],[3,5,["H4428"]],[5,7,["H3063"]],[7,9,["H7971"]],[9,12,["H1875"]],[12,15,["H3068"]],[15,16,["H3541"]],[16,19,["H559"]],[19,20,["H413"]],[20,22,["H3541"]],[22,23,["H559"]],[23,25,["H3068"]],[25,26,["H430"]],[26,28,["H3478"]],[28,31,["H1697"]],[31,32,["H834"]],[32,35,["H8085"]]]},{"k":11960,"v":[[0,1,["H3282"]],[1,3,["H3824"]],[3,5,["H7401"]],[5,10,["H3665"]],[10,11,["H4480","H6440"]],[11,12,["H430"]],[12,15,["H8085","(H853)"]],[15,17,["H1697"]],[17,18,["H5921"]],[18,19,["H2088"]],[19,20,["H4725"]],[20,22,["H5921"]],[22,24,["H3427"]],[24,28,["H3665"]],[28,29,["H6440"]],[29,33,["H7167","(H853)"]],[33,35,["H899"]],[35,37,["H1058"]],[37,38,["H6440"]],[38,40,["H589"]],[40,43,["H8085"]],[43,45,["H1571"]],[45,46,["H5002"]],[46,48,["H3068"]]]},{"k":11961,"v":[[0,1,["H2009"]],[1,4,["H622"]],[4,6,["H413"]],[6,8,["H1"]],[8,13,["H622"]],[13,14,["H413"]],[14,16,["H6913"]],[16,18,["H7965"]],[18,19,["H3808"]],[19,22,["H5869"]],[22,23,["H7200"]],[23,24,["H3605"]],[24,26,["H7451"]],[26,27,["H834"]],[27,28,["H589"]],[28,30,["H935"]],[30,31,["H5921"]],[31,32,["H2088"]],[32,33,["H4725"]],[33,35,["H5921"]],[35,37,["H3427"]],[37,43,["H7725","(H853)"]],[43,45,["H4428"]],[45,46,["H1697"]],[46,47,[]]]},{"k":11962,"v":[[0,3,["H4428"]],[3,4,["H7971"]],[4,7,["H622","(H853)"]],[7,8,["H3605"]],[8,10,["H2205"]],[10,12,["H3063"]],[12,14,["H3389"]]]},{"k":11963,"v":[[0,3,["H4428"]],[3,5,["H5927"]],[5,8,["H1004"]],[8,11,["H3068"]],[11,13,["H3605"]],[13,15,["H376"]],[15,17,["H3063"]],[17,20,["H3427"]],[20,22,["H3389"]],[22,25,["H3548"]],[25,28,["H3881"]],[28,30,["H3605"]],[30,32,["H5971"]],[32,33,["H4480","H1419"]],[33,35,["H6996"]],[35,38,["H7121"]],[38,41,["H241","(H853)"]],[41,42,["H3605"]],[42,44,["H1697"]],[44,47,["H5612"]],[47,50,["H1285"]],[50,53,["H4672"]],[53,56,["H1004"]],[56,59,["H3068"]]]},{"k":11964,"v":[[0,3,["H4428"]],[3,4,["H5975"]],[4,5,["H5921"]],[5,7,["H5977"]],[7,9,["H3772","(H853)"]],[9,11,["H1285"]],[11,12,["H6440"]],[12,14,["H3068"]],[14,16,["H1980"]],[16,17,["H310"]],[17,19,["H3068"]],[19,22,["H8104","(H853)"]],[22,24,["H4687"]],[24,27,["H5715"]],[27,30,["H2706"]],[30,32,["H3605"]],[32,34,["H3824"]],[34,37,["H3605"]],[37,39,["H5315"]],[39,41,["H6213","(H853)"]],[41,43,["H1697"]],[43,46,["H1285"]],[46,49,["H3789"]],[49,50,["H5921"]],[50,51,["H2088"]],[51,52,["H5612"]]]},{"k":11965,"v":[[0,3,["(H853)"]],[3,4,["H3605"]],[4,7,["H4672"]],[7,9,["H3389"]],[9,11,["H1144"]],[11,13,["H5975"]],[13,18,["H3427"]],[18,20,["H3389"]],[20,21,["H6213"]],[21,25,["H1285"]],[25,27,["H430"]],[27,29,["H430"]],[29,32,["H1"]]]},{"k":11966,"v":[[0,2,["H2977"]],[2,4,["H5493","(H853)"]],[4,5,["H3605"]],[5,7,["H8441"]],[7,9,["H4480"]],[9,10,["H3605"]],[10,12,["H776"]],[12,13,["H834"]],[13,17,["H1121"]],[17,19,["H3478"]],[19,21,["(H853)"]],[21,22,["H3605"]],[22,25,["H4672"]],[25,27,["H3478"]],[27,29,["H5647"]],[29,32,["H5647","(H853)"]],[32,34,["H3068"]],[34,36,["H430"]],[36,38,["H3605"]],[38,40,["H3117"]],[40,42,["H5493"]],[42,43,["H3808"]],[43,45,["H4480","H310"]],[45,47,["H3068"]],[47,49,["H430"]],[49,52,["H1"]]]},{"k":11967,"v":[[0,2,["H2977"]],[2,3,["H6213"]],[3,5,["H6453"]],[5,8,["H3068"]],[8,10,["H3389"]],[10,13,["H7819"]],[13,15,["H6453"]],[15,18,["H702","H6240"]],[18,22,["H7223"]],[22,23,["H2320"]]]},{"k":11968,"v":[[0,3,["H5975"]],[3,5,["H3548"]],[5,6,["H5921"]],[6,8,["H4931"]],[8,10,["H2388"]],[10,14,["H5656"]],[14,17,["H1004"]],[17,20,["H3068"]]]},{"k":11969,"v":[[0,2,["H559"]],[2,5,["H3881"]],[5,7,["H4000"]],[7,8,["H3605"]],[8,9,["H3478"]],[9,12,["H6918"]],[12,15,["H3068"]],[15,16,["H5414","(H853)"]],[16,18,["H6944"]],[18,19,["H727"]],[19,22,["H1004"]],[22,23,["H834"]],[23,24,["H8010"]],[24,26,["H1121"]],[26,28,["H1732"]],[28,29,["H4428"]],[29,31,["H3478"]],[31,33,["H1129"]],[33,36,["H369"]],[36,39,["H4853"]],[39,42,["H3802"]],[42,43,["H5647"]],[43,44,["H6258","(H853)"]],[44,46,["H3068"]],[46,48,["H430"]],[48,51,["H5971"]],[51,52,["H3478"]]]},{"k":11970,"v":[[0,2,["H3559"]],[2,6,["H1004"]],[6,9,["H1"]],[9,12,["H4256"]],[12,16,["H3791"]],[16,18,["H1732"]],[18,19,["H4428"]],[19,21,["H3478"]],[21,26,["H4385"]],[26,28,["H8010"]],[28,30,["H1121"]]]},{"k":11971,"v":[[0,2,["H5975"]],[2,5,["H6944"]],[5,10,["H6391"]],[10,13,["H1004"]],[13,16,["H1"]],[16,19,["H251"]],[19,21,["H1121","H5971"]],[21,25,["H2515"]],[25,28,["H1004","H1"]],[28,31,["H3881"]]]},{"k":11972,"v":[[0,2,["H7819"]],[2,4,["H6453"]],[4,7,["H6942"]],[7,9,["H3559"]],[9,11,["H251"]],[11,15,["H6213"]],[15,19,["H1697"]],[19,22,["H3068"]],[22,25,["H3027"]],[25,27,["H4872"]]]},{"k":11973,"v":[[0,2,["H2977"]],[2,3,["H7311"]],[3,6,["H1121","H5971"]],[6,9,["H6629"]],[9,10,["H3532"]],[10,12,["H1121","H5795"]],[12,13,["H3605"]],[13,17,["H6453"]],[17,19,["H3605"]],[19,22,["H4672"]],[22,25,["H4557"]],[25,27,["H7970"]],[27,28,["H505"]],[28,30,["H7969"]],[30,31,["H505"]],[31,32,["H1241"]],[32,33,["H428"]],[33,37,["H4428"]],[37,38,["H4480","H7399"]]]},{"k":11974,"v":[[0,3,["H8269"]],[3,4,["H7311"]],[4,5,["H5071"]],[5,8,["H5971"]],[8,11,["H3548"]],[11,15,["H3881"]],[15,16,["H2518"]],[16,18,["H2148"]],[18,20,["H3171"]],[20,21,["H5057"]],[21,24,["H1004"]],[24,26,["H430"]],[26,27,["H5414"]],[27,30,["H3548"]],[30,34,["H6453"]],[34,36,["H505"]],[36,38,["H8337"]],[38,39,["H3967"]],[39,43,["H7969"]],[43,44,["H3967"]],[44,45,["H1241"]]]},{"k":11975,"v":[[0,1,["H3562"]],[1,4,["H8098"]],[4,6,["H5417"]],[6,8,["H251"]],[8,10,["H2811"]],[10,12,["H3273"]],[12,14,["H3107"]],[14,15,["H8269"]],[15,18,["H3881"]],[18,19,["H7311"]],[19,22,["H3881"]],[22,25,["H6453"]],[25,26,["H2568"]],[26,27,["H505"]],[27,31,["H2568"]],[31,32,["H3967"]],[32,33,["H1241"]]]},{"k":11976,"v":[[0,3,["H5656"]],[3,5,["H3559"]],[5,8,["H3548"]],[8,9,["H5975"]],[9,10,["H5921"]],[10,12,["H5977"]],[12,15,["H3881"]],[15,16,["H5921"]],[16,18,["H4256"]],[18,22,["H4428"]],[22,23,["H4687"]]]},{"k":11977,"v":[[0,3,["H7819"]],[3,5,["H6453"]],[5,8,["H3548"]],[8,9,["H2236"]],[9,14,["H4480","H3027"]],[14,17,["H3881"]],[17,18,["H6584"]],[18,19,[]]]},{"k":11978,"v":[[0,3,["H5493"]],[3,6,["H5930"]],[6,10,["H5414"]],[10,14,["H4653"]],[14,17,["H1004","H1"]],[17,20,["H1121","H5971"]],[20,22,["H7126"]],[22,25,["H3068"]],[25,29,["H3789"]],[29,32,["H5612"]],[32,34,["H4872"]],[34,36,["H3651"]],[36,41,["H1241"]]]},{"k":11979,"v":[[0,3,["H1310"]],[3,5,["H6453"]],[5,7,["H784"]],[7,11,["H4941"]],[11,15,["H6944"]],[15,17,["H1310"]],[17,20,["H5518"]],[20,23,["H1731"]],[23,26,["H6745"]],[26,30,["H7323"]],[30,32,["H3605"]],[32,34,["H1121","H5971"]]]},{"k":11980,"v":[[0,2,["H310"]],[2,5,["H3559"]],[5,11,["H3548"]],[11,12,["H3588"]],[12,14,["H3548"]],[14,16,["H1121"]],[16,18,["H175"]],[18,22,["H5927"]],[22,25,["H5930"]],[25,28,["H2459"]],[28,29,["H5704"]],[29,30,["H3915"]],[30,33,["H3881"]],[33,34,["H3559"]],[34,40,["H3548"]],[40,42,["H1121"]],[42,44,["H175"]]]},{"k":11981,"v":[[0,3,["H7891"]],[3,5,["H1121"]],[5,7,["H623"]],[7,9,["H5921"]],[9,11,["H4612"]],[11,15,["H4687"]],[15,17,["H1732"]],[17,19,["H623"]],[19,21,["H1968"]],[21,23,["H3038"]],[23,25,["H4428"]],[25,26,["H2374"]],[26,29,["H7778"]],[29,33,["H8179","H8179"]],[33,36,["H369"]],[36,37,["H5493"]],[37,38,["H4480","H5921"]],[38,40,["H5656"]],[40,41,["H3588"]],[41,43,["H251"]],[43,45,["H3881"]],[45,46,["H3559"]],[46,48,[]]]},{"k":11982,"v":[[0,2,["H3605"]],[2,4,["H5656"]],[4,7,["H3068"]],[7,9,["H3559"]],[9,11,["H1931"]],[11,12,["H3117"]],[12,14,["H6213"]],[14,16,["H6453"]],[16,19,["H5927"]],[19,21,["H5930"]],[21,22,["H5921"]],[22,24,["H4196"]],[24,27,["H3068"]],[27,31,["H4687"]],[31,33,["H4428"]],[33,34,["H2977"]]]},{"k":11983,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,8,["H4672"]],[8,9,["H6213","(H853)"]],[9,11,["H6453"]],[11,13,["H1931"]],[13,14,["H6256"]],[14,17,["H2282"]],[17,20,["H4682"]],[20,21,["H7651"]],[21,22,["H3117"]]]},{"k":11984,"v":[[0,4,["H3808"]],[4,5,["H6453"]],[5,7,["H3644"]],[7,9,["H6213"]],[9,11,["H3478"]],[11,14,["H4480","H3117"]],[14,16,["H8050"]],[16,18,["H5030"]],[18,19,["H3808"]],[19,20,["H6213"]],[20,21,["H3605"]],[21,23,["H4428"]],[23,25,["H3478"]],[25,26,["H6213"]],[26,29,["H6453"]],[29,30,["H834"]],[30,31,["H2977"]],[31,32,["H6213"]],[32,35,["H3548"]],[35,38,["H3881"]],[38,40,["H3605"]],[40,41,["H3063"]],[41,43,["H3478"]],[43,46,["H4672"]],[46,49,["H3427"]],[49,51,["H3389"]]]},{"k":11985,"v":[[0,3,["H8083","H6240"]],[3,4,["H8141"]],[4,7,["H4438"]],[7,9,["H2977"]],[9,11,["H2088"]],[11,12,["H6453"]],[12,13,["H6213"]]]},{"k":11986,"v":[[0,1,["H310"]],[1,2,["H3605"]],[2,3,["H2063"]],[3,4,["H834"]],[4,5,["H2977"]],[5,7,["H3559","(H853)"]],[7,9,["H1004"]],[9,10,["H5224"]],[10,11,["H4428"]],[11,13,["H4714"]],[13,15,["H5927"]],[15,17,["H3898"]],[17,19,["H3751"]],[19,20,["H5921"]],[20,21,["H6578"]],[21,23,["H2977"]],[23,25,["H3318"]],[25,26,["H7125"]],[26,27,[]]]},{"k":11987,"v":[[0,3,["H7971"]],[3,4,["H4397"]],[4,5,["H413"]],[5,7,["H559"]],[7,8,["H4100"]],[8,16,["H4428"]],[16,18,["H3063"]],[18,21,["H3808"]],[21,22,["H5921"]],[22,23,["H859"]],[23,25,["H3117"]],[25,26,["H3588"]],[26,27,["H413"]],[27,29,["H1004"]],[29,33,["H4421"]],[33,35,["H430"]],[35,36,["H559"]],[36,40,["H926"]],[40,41,["H2308"]],[41,46,["H4480","H430"]],[46,47,["H834"]],[47,49,["H5973"]],[49,53,["H7843"]],[53,55,["H408"]]]},{"k":11988,"v":[[0,2,["H2977"]],[2,4,["H3808"]],[4,5,["H5437"]],[5,7,["H6440"]],[7,8,["H4480"]],[8,10,["H3588"]],[10,12,["H2664"]],[12,16,["H3898"]],[16,20,["H8085"]],[20,21,["H3808"]],[21,22,["H413"]],[22,24,["H1697"]],[24,26,["H5224"]],[26,29,["H4480","H6310"]],[29,31,["H430"]],[31,33,["H935"]],[33,35,["H3898"]],[35,38,["H1237"]],[38,40,["H4023"]]]},{"k":11989,"v":[[0,3,["H3384"]],[3,4,["H3384"]],[4,6,["H4428"]],[6,7,["H2977"]],[7,10,["H4428"]],[10,11,["H559"]],[11,14,["H5650"]],[14,17,["H5674"]],[17,18,["H3588"]],[18,22,["H2470","H3966"]]]},{"k":11990,"v":[[0,2,["H5650"]],[2,4,["H5674"]],[4,7,["H4480"]],[7,9,["H4818"]],[9,11,["H7392"]],[11,13,["H5921"]],[13,15,["H4932"]],[15,16,["H7393"]],[16,17,["H834"]],[17,22,["H1980"]],[22,25,["H3389"]],[25,28,["H4191"]],[28,31,["H6912"]],[31,36,["H6913"]],[36,39,["H1"]],[39,41,["H3605"]],[41,42,["H3063"]],[42,44,["H3389"]],[44,45,["H56"]],[45,46,["H5921"]],[46,47,["H2977"]]]},{"k":11991,"v":[[0,2,["H3414"]],[2,3,["H6969"]],[3,4,["H5921"]],[4,5,["H2977"]],[5,7,["H3605"]],[7,10,["H7891"]],[10,14,["H7891"]],[14,15,["H559"]],[15,16,["H5921"]],[16,17,["H2977"]],[17,20,["H7015"]],[20,21,["H5704"]],[21,23,["H3117"]],[23,25,["H5414"]],[25,28,["H2706"]],[28,29,["H5921"]],[29,30,["H3478"]],[30,32,["H2009"]],[32,35,["H3789"]],[35,36,["H5921"]],[36,38,["H7015"]]]},{"k":11992,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H2977"]],[8,11,["H2617"]],[11,17,["H3789"]],[17,20,["H8451"]],[20,23,["H3068"]]]},{"k":11993,"v":[[0,3,["H1697"]],[3,4,["H7223"]],[4,6,["H314"]],[6,7,["H2009"]],[7,10,["H3789"]],[10,11,["H5921"]],[11,13,["H5612"]],[13,16,["H4428"]],[16,18,["H3478"]],[18,20,["H3063"]]]},{"k":11994,"v":[[0,3,["H5971"]],[3,6,["H776"]],[6,7,["H3947","(H853)"]],[7,8,["H3059"]],[8,10,["H1121"]],[10,12,["H2977"]],[12,16,["H4427"]],[16,20,["H8478","H1"]],[20,22,["H3389"]]]},{"k":11995,"v":[[0,1,["H3059"]],[1,3,["H6242"]],[3,5,["H7969"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H7969"]],[16,17,["H2320"]],[17,19,["H3389"]]]},{"k":11996,"v":[[0,3,["H4428"]],[3,5,["H4714"]],[5,8,["H5493"]],[8,10,["H3389"]],[10,12,["H6064","(H853)"]],[12,14,["H776"]],[14,17,["H3967"]],[17,18,["H3603"]],[18,20,["H3701"]],[20,23,["H3603"]],[23,25,["H2091"]]]},{"k":11997,"v":[[0,3,["H4428"]],[3,5,["H4714"]],[5,6,["(H853)"]],[6,7,["H471"]],[7,9,["H251"]],[9,10,["H4427"]],[10,11,["H5921"]],[11,12,["H3063"]],[12,14,["H3389"]],[14,16,["H5437","(H853)"]],[16,18,["H8034"]],[18,20,["H3079"]],[20,22,["H5224"]],[22,23,["H3947"]],[23,24,["H3059"]],[24,26,["H251"]],[26,28,["H935"]],[28,31,["H4714"]]]},{"k":11998,"v":[[0,1,["H3079"]],[1,3,["H6242"]],[3,5,["H2568"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H259","H6240"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,22,["H6213"]],[22,26,["H7451"]],[26,29,["H5869"]],[29,32,["H3068"]],[32,34,["H430"]]]},{"k":11999,"v":[[0,1,["H5921"]],[1,4,["H5927"]],[4,5,["H5019"]],[5,6,["H4428"]],[6,8,["H894"]],[8,10,["H631"]],[10,13,["H5178"]],[13,15,["H1980"]],[15,18,["H894"]]]},{"k":12000,"v":[[0,1,["H5019"]],[1,3,["H935"]],[3,6,["H4480","H3627"]],[6,9,["H1004"]],[9,12,["H3068"]],[12,14,["H894"]],[14,16,["H5414"]],[16,20,["H1964"]],[20,22,["H894"]]]},{"k":12001,"v":[[0,3,["H3499"]],[3,6,["H1697"]],[6,8,["H3079"]],[8,11,["H8441"]],[11,12,["H834"]],[12,14,["H6213"]],[14,19,["H4672"]],[19,20,["H5921"]],[20,22,["H2009"]],[22,25,["H3789"]],[25,26,["H5921"]],[26,28,["H5612"]],[28,31,["H4428"]],[31,33,["H3478"]],[33,35,["H3063"]],[35,37,["H3078"]],[37,39,["H1121"]],[39,40,["H4427"]],[40,43,["H8478"]]]},{"k":12002,"v":[[0,1,["H3078"]],[1,3,["H8083"]],[3,4,["H8141"]],[4,5,["H1121"]],[5,10,["H4427"]],[10,13,["H4427"]],[13,14,["H7969"]],[14,15,["H2320"]],[15,17,["H6235"]],[17,18,["H3117"]],[18,20,["H3389"]],[20,23,["H6213"]],[23,27,["H7451"]],[27,30,["H5869"]],[30,33,["H3068"]]]},{"k":12003,"v":[[0,4,["H8141"]],[4,6,["H8666"]],[6,7,["H4428"]],[7,8,["H5019"]],[8,9,["H7971"]],[9,11,["H935"]],[11,14,["H894"]],[14,15,["H5973"]],[15,17,["H2532"]],[17,18,["H3627"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,26,["H4427","(H853)"]],[26,27,["H6667"]],[27,29,["H251"]],[29,31,["H5921"]],[31,32,["H3063"]],[32,34,["H3389"]]]},{"k":12004,"v":[[0,1,["H6667"]],[1,3,["H259"]],[3,5,["H6242"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,14,["H4427"]],[14,15,["H259","H6240"]],[15,16,["H8141"]],[16,18,["H3389"]]]},{"k":12005,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,15,["H430"]],[15,19,["H3665","H3808"]],[19,20,["H4480","H6440"]],[20,21,["H3414"]],[21,23,["H5030"]],[23,27,["H4480","H6310"]],[27,30,["H3068"]]]},{"k":12006,"v":[[0,3,["H1571"]],[3,4,["H4775"]],[4,6,["H4428"]],[6,7,["H5019"]],[7,8,["H834"]],[8,12,["H7650"]],[12,14,["H430"]],[14,17,["H7185","(H853)"]],[17,19,["H6203"]],[19,21,["H553","(H853)"]],[21,23,["H3824"]],[23,25,["H4480","H7725"]],[25,26,["H413"]],[26,28,["H3068"]],[28,29,["H430"]],[29,31,["H3478"]]]},{"k":12007,"v":[[0,1,["H1571"]],[1,2,["H3605"]],[2,4,["H8269"]],[4,7,["H3548"]],[7,10,["H5971"]],[10,13,["H7235","H4603","H4604"]],[13,15,["H3605"]],[15,17,["H8441"]],[17,20,["H1471"]],[20,22,["H2930","(H853)"]],[22,24,["H1004"]],[24,27,["H3068"]],[27,28,["H834"]],[28,31,["H6942"]],[31,33,["H3389"]]]},{"k":12008,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,7,["H1"]],[7,8,["H7971"]],[8,9,["H5921"]],[9,11,["H3027"]],[11,13,["H4397"]],[13,16,["H7925"]],[16,18,["H7971"]],[18,19,["H3588"]],[19,22,["H2550"]],[22,23,["H5921"]],[23,25,["H5971"]],[25,27,["H5921"]],[27,30,["H4583"]]]},{"k":12009,"v":[[0,3,["H1961","H3931"]],[3,5,["H4397"]],[5,7,["H430"]],[7,9,["H959"]],[9,11,["H1697"]],[11,13,["H8591"]],[13,15,["H5030"]],[15,16,["H5704"]],[16,18,["H2534"]],[18,21,["H3068"]],[21,22,["H5927"]],[22,25,["H5971"]],[25,26,["H5704"]],[26,29,["H369"]],[29,30,["H4832"]]]},{"k":12010,"v":[[0,3,["H5927"]],[3,4,["H5921"]],[4,5,["(H853)"]],[5,7,["H4428"]],[7,10,["H3778"]],[10,12,["H2026"]],[12,15,["H970"]],[15,18,["H2719"]],[18,21,["H1004"]],[21,24,["H4720"]],[24,28,["H2550","H3808"]],[28,29,["H5921"]],[29,31,["H970"]],[31,33,["H1330"]],[33,35,["H2205"]],[35,41,["H3486"]],[41,43,["H5414"]],[43,45,["H3605"]],[45,48,["H3027"]]]},{"k":12011,"v":[[0,2,["H3605"]],[2,4,["H3627"]],[4,7,["H1004"]],[7,9,["H430"]],[9,10,["H1419"]],[10,12,["H6996"]],[12,15,["H214"]],[15,18,["H1004"]],[18,21,["H3068"]],[21,24,["H214"]],[24,27,["H4428"]],[27,31,["H8269"]],[31,32,["H3605"]],[32,35,["H935"]],[35,37,["H894"]]]},{"k":12012,"v":[[0,3,["H8313","(H853)"]],[3,5,["H1004"]],[5,7,["H430"]],[7,10,["H5422","(H853)"]],[10,12,["H2346"]],[12,14,["H3389"]],[14,16,["H8313"]],[16,17,["H3605"]],[17,19,["H759"]],[19,22,["H784"]],[22,24,["H7843"]],[24,25,["H3605"]],[25,27,["H4261"]],[27,28,["H3627"]],[28,29,[]]]},{"k":12013,"v":[[0,5,["H7611"]],[5,6,["H4480"]],[6,8,["H2719"]],[8,11,["H1540"]],[11,12,["H413"]],[12,13,["H894"]],[13,16,["H1961"]],[16,17,["H5650"]],[17,22,["H1121"]],[22,23,["H5704"]],[23,25,["H4427"]],[25,28,["H4438"]],[28,30,["H6539"]]]},{"k":12014,"v":[[0,2,["H4390"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,10,["H6310"]],[10,12,["H3414"]],[12,13,["H5704"]],[13,15,["H776"]],[15,17,["H7521","(H853)"]],[17,19,["H7676"]],[19,23,["H3605","H3117"]],[23,26,["H8074"]],[26,29,["H7673"]],[29,31,["H4390"]],[31,34,["H7657"]],[34,35,["H8141"]]]},{"k":12015,"v":[[0,4,["H259"]],[4,5,["H8141"]],[5,7,["H3566"]],[7,8,["H4428"]],[8,10,["H6539"]],[10,13,["H1697"]],[13,16,["H3068"]],[16,20,["H6310"]],[20,22,["H3414"]],[22,25,["H3615"]],[25,27,["H3068"]],[27,29,["H5782","(H853)"]],[29,31,["H7307"]],[31,33,["H3566"]],[33,34,["H4428"]],[34,36,["H6539"]],[36,41,["H5674","H6963"]],[41,43,["H3605"]],[43,45,["H4438"]],[45,49,["H1571"]],[49,51,["H4385"]],[51,52,["H559"]]]},{"k":12016,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,3,["H3566"]],[3,4,["H4428"]],[4,6,["H6539"]],[6,7,["H3605"]],[7,9,["H4467"]],[9,12,["H776"]],[12,15,["H3068"]],[15,16,["H430"]],[16,18,["H8064"]],[18,19,["H5414"]],[19,22,["H1931"]],[22,24,["H6485","H5921"]],[24,27,["H1129"]],[27,30,["H1004"]],[30,32,["H3389"]],[32,33,["H834"]],[33,36,["H3063"]],[36,37,["H4310"]],[37,43,["H4480","H3605"]],[43,45,["H5971"]],[45,47,["H3068"]],[47,49,["H430"]],[49,51,["H5973"]],[51,57,["H5927"]]]},{"k":12017,"v":[[0,4,["H259"]],[4,5,["H8141"]],[5,7,["H3566"]],[7,8,["H4428"]],[8,10,["H6539"]],[10,13,["H1697"]],[13,16,["H3068"]],[16,19,["H4480","H6310"]],[19,21,["H3414"]],[21,24,["H3615"]],[24,26,["H3068"]],[26,28,["H5782","(H853)"]],[28,30,["H7307"]],[30,32,["H3566"]],[32,33,["H4428"]],[33,35,["H6539"]],[35,40,["H5674","H6963"]],[40,42,["H3605"]],[42,44,["H4438"]],[44,48,["H1571"]],[48,50,["H4385"]],[50,51,["H559"]]]},{"k":12018,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,3,["H3566"]],[3,4,["H4428"]],[4,6,["H6539"]],[6,8,["H3068"]],[8,9,["H430"]],[9,11,["H8064"]],[11,13,["H5414"]],[13,15,["H3605"]],[15,17,["H4467"]],[17,20,["H776"]],[20,22,["H1931"]],[22,24,["H6485","H5921"]],[24,27,["H1129"]],[27,30,["H1004"]],[30,32,["H3389"]],[32,33,["H834"]],[33,36,["H3063"]]]},{"k":12019,"v":[[0,1,["H4310"]],[1,7,["H4480","H3605"]],[7,9,["H5971"]],[9,11,["H430"]],[11,12,["H1961"]],[12,13,["H5973"]],[13,19,["H5927"]],[19,21,["H3389"]],[21,22,["H834"]],[22,25,["H3063"]],[25,27,["H1129","(H853)"]],[27,29,["H1004"]],[29,32,["H3068"]],[32,33,["H430"]],[33,35,["H3478"]],[35,36,["H1931"]],[36,39,["H430"]],[39,40,["H834"]],[40,43,["H3389"]]]},{"k":12020,"v":[[0,2,["H3605"]],[2,3,["H7604"]],[3,5,["H4480","H3605"]],[5,6,["H4725"]],[6,7,["H834"]],[7,8,["H1931"]],[8,9,["H1481"]],[9,12,["H376"]],[12,15,["H4725"]],[15,16,["H5375"]],[16,19,["H3701"]],[19,22,["H2091"]],[22,25,["H7399"]],[25,28,["H929"]],[28,29,["H5973"]],[29,32,["H5071"]],[32,35,["H1004"]],[35,37,["H430"]],[37,38,["H834"]],[38,41,["H3389"]]]},{"k":12021,"v":[[0,3,["H6965"]],[3,5,["H7218"]],[5,8,["H1"]],[8,10,["H3063"]],[10,12,["H1144"]],[12,15,["H3548"]],[15,18,["H3881"]],[18,20,["H3605"]],[20,21,["(H853)"]],[21,23,["H7307"]],[23,24,["H430"]],[24,26,["H5782"]],[26,29,["H5927"]],[29,31,["H1129","(H853)"]],[31,33,["H1004"]],[33,36,["H3068"]],[36,37,["H834"]],[37,40,["H3389"]]]},{"k":12022,"v":[[0,2,["H3605"]],[2,6,["H5439"]],[6,8,["H2388"]],[8,10,["H3027"]],[10,12,["H3627"]],[12,14,["H3701"]],[14,16,["H2091"]],[16,18,["H7399"]],[18,21,["H929"]],[21,25,["H4030"]],[25,27,["H905","H5921","H3605"]],[27,31,["H5068"]]]},{"k":12023,"v":[[0,2,["H3566"]],[2,4,["H4428"]],[4,6,["H3318","(H853)"]],[6,8,["H3627"]],[8,11,["H1004"]],[11,14,["H3068"]],[14,15,["H834"]],[15,16,["H5019"]],[16,19,["H3318"]],[19,22,["H4480","H3389"]],[22,25,["H5414"]],[25,29,["H1004"]],[29,32,["H430"]]]},{"k":12024,"v":[[0,4,["H3566"]],[4,5,["H4428"]],[5,7,["H6539"]],[7,9,["H3318"]],[9,10,["H5921"]],[10,12,["H3027"]],[12,14,["H4990"]],[14,16,["H1489"]],[16,18,["H5608"]],[18,21,["H8339"]],[21,23,["H5387"]],[23,25,["H3063"]]]},{"k":12025,"v":[[0,2,["H428"]],[2,5,["H4557"]],[5,8,["H7970"]],[8,9,["H105"]],[9,11,["H2091"]],[11,13,["H505"]],[13,14,["H105"]],[14,16,["H3701"]],[16,17,["H8672"]],[17,19,["H6242"]],[19,20,["H4252"]]]},{"k":12026,"v":[[0,1,["H7970"]],[1,2,["H3713"]],[2,4,["H2091"]],[4,5,["H3701"]],[5,6,["H3713"]],[6,9,["H4932"]],[9,11,["H702"]],[11,12,["H3967"]],[12,14,["H6235"]],[14,16,["H312"]],[16,17,["H3627"]],[17,19,["H505"]]]},{"k":12027,"v":[[0,1,["H3605"]],[1,3,["H3627"]],[3,5,["H2091"]],[5,8,["H3701"]],[8,10,["H2568"]],[10,11,["H505"]],[11,13,["H702"]],[13,14,["H3967"]],[14,15,["H3605"]],[15,18,["H8339"]],[18,20,["H5927"]],[20,21,["H5973"]],[21,25,["H1473"]],[25,29,["H5927"]],[29,31,["H4480","H894"]],[31,33,["H3389"]]]},{"k":12028,"v":[[0,2,["H428"]],[2,5,["H1121"]],[5,8,["H4082"]],[8,11,["H5927"]],[11,15,["H4480","H7628"]],[15,22,["H1473"]],[22,23,["H834"]],[23,24,["H5019"]],[24,26,["H4428"]],[26,28,["H894"]],[28,31,["H1540"]],[31,33,["H894"]],[33,36,["H7725"]],[36,38,["H3389"]],[38,40,["H3063"]],[40,42,["H376"]],[42,45,["H5892"]]]},{"k":12029,"v":[[0,1,["H834"]],[1,2,["H935"]],[2,3,["H5973"]],[3,4,["H2216"]],[4,5,["H3442"]],[5,6,["H5166"]],[6,7,["H8304"]],[7,8,["H7480"]],[8,9,["H4782"]],[9,10,["H1114"]],[10,11,["H4558"]],[11,12,["H902"]],[12,13,["H7348"]],[13,14,["H1196"]],[14,16,["H4557"]],[16,19,["H376"]],[19,22,["H5971"]],[22,24,["H3478"]]]},{"k":12030,"v":[[0,2,["H1121"]],[2,4,["H6551"]],[4,6,["H505"]],[6,8,["H3967"]],[8,9,["H7657"]],[9,11,["H8147"]]]},{"k":12031,"v":[[0,2,["H1121"]],[2,4,["H8203"]],[4,5,["H7969"]],[5,6,["H3967"]],[6,7,["H7657"]],[7,9,["H8147"]]]},{"k":12032,"v":[[0,2,["H1121"]],[2,4,["H733"]],[4,5,["H7651"]],[5,6,["H3967"]],[6,7,["H7657"]],[7,9,["H2568"]]]},{"k":12033,"v":[[0,2,["H1121"]],[2,4,["H6355"]],[4,7,["H1121"]],[7,9,["H3442"]],[9,11,["H3097"]],[11,13,["H505"]],[13,14,["H8083"]],[14,15,["H3967"]],[15,17,["H8147","H6240"]]]},{"k":12034,"v":[[0,2,["H1121"]],[2,4,["H5867"]],[4,6,["H505"]],[6,8,["H3967"]],[8,9,["H2572"]],[9,11,["H702"]]]},{"k":12035,"v":[[0,2,["H1121"]],[2,4,["H2240"]],[4,5,["H8672"]],[5,6,["H3967"]],[6,7,["H705"]],[7,9,["H2568"]]]},{"k":12036,"v":[[0,2,["H1121"]],[2,4,["H2140"]],[4,5,["H7651"]],[5,6,["H3967"]],[6,8,["H8346"]]]},{"k":12037,"v":[[0,2,["H1121"]],[2,4,["H1137"]],[4,5,["H8337"]],[5,6,["H3967"]],[6,7,["H705"]],[7,9,["H8147"]]]},{"k":12038,"v":[[0,2,["H1121"]],[2,4,["H893"]],[4,5,["H8337"]],[5,6,["H3967"]],[6,7,["H6242"]],[7,9,["H7969"]]]},{"k":12039,"v":[[0,2,["H1121"]],[2,4,["H5803"]],[4,6,["H505"]],[6,8,["H3967"]],[8,9,["H6242"]],[9,11,["H8147"]]]},{"k":12040,"v":[[0,2,["H1121"]],[2,4,["H140"]],[4,5,["H8337"]],[5,6,["H3967"]],[6,7,["H8346"]],[7,9,["H8337"]]]},{"k":12041,"v":[[0,2,["H1121"]],[2,4,["H902"]],[4,6,["H505"]],[6,7,["H2572"]],[7,9,["H8337"]]]},{"k":12042,"v":[[0,2,["H1121"]],[2,4,["H5720"]],[4,5,["H702"]],[5,6,["H3967"]],[6,7,["H2572"]],[7,9,["H702"]]]},{"k":12043,"v":[[0,2,["H1121"]],[2,4,["H333"]],[4,6,["H3169"]],[6,7,["H8673"]],[7,9,["H8083"]]]},{"k":12044,"v":[[0,2,["H1121"]],[2,4,["H1209"]],[4,5,["H7969"]],[5,6,["H3967"]],[6,7,["H6242"]],[7,9,["H7969"]]]},{"k":12045,"v":[[0,2,["H1121"]],[2,4,["H3139"]],[4,6,["H3967"]],[6,8,["H8147","H6240"]]]},{"k":12046,"v":[[0,2,["H1121"]],[2,4,["H2828"]],[4,6,["H3967"]],[6,7,["H6242"]],[7,9,["H7969"]]]},{"k":12047,"v":[[0,2,["H1121"]],[2,4,["H1402"]],[4,5,["H8673"]],[5,7,["H2568"]]]},{"k":12048,"v":[[0,2,["H1121"]],[2,4,["H1035"]],[4,6,["H3967"]],[6,7,["H6242"]],[7,9,["H7969"]]]},{"k":12049,"v":[[0,2,["H376"]],[2,4,["H5199"]],[4,5,["H2572"]],[5,7,["H8337"]]]},{"k":12050,"v":[[0,2,["H376"]],[2,4,["H6068"]],[4,6,["H3967"]],[6,7,["H6242"]],[7,9,["H8083"]]]},{"k":12051,"v":[[0,2,["H1121"]],[2,4,["H5820"]],[4,5,["H705"]],[5,7,["H8147"]]]},{"k":12052,"v":[[0,2,["H1121"]],[2,4,["H7157"]],[4,5,["H3716"]],[5,7,["H881"]],[7,8,["H7651"]],[8,9,["H3967"]],[9,11,["H705"]],[11,13,["H7969"]]]},{"k":12053,"v":[[0,2,["H1121"]],[2,4,["H7414"]],[4,6,["H1387"]],[6,7,["H8337"]],[7,8,["H3967"]],[8,9,["H6242"]],[9,11,["H259"]]]},{"k":12054,"v":[[0,2,["H376"]],[2,4,["H4363"]],[4,6,["H3967"]],[6,7,["H6242"]],[7,9,["H8147"]]]},{"k":12055,"v":[[0,2,["H376"]],[2,4,["H1008"]],[4,6,["H5857"]],[6,8,["H3967"]],[8,9,["H6242"]],[9,11,["H7969"]]]},{"k":12056,"v":[[0,2,["H1121"]],[2,4,["H5015"]],[4,5,["H2572"]],[5,7,["H8147"]]]},{"k":12057,"v":[[0,2,["H1121"]],[2,4,["H4019"]],[4,6,["H3967"]],[6,7,["H2572"]],[7,9,["H8337"]]]},{"k":12058,"v":[[0,2,["H1121"]],[2,5,["H312"]],[5,6,["H5867"]],[6,8,["H505"]],[8,10,["H3967"]],[10,11,["H2572"]],[11,13,["H702"]]]},{"k":12059,"v":[[0,2,["H1121"]],[2,4,["H2766"]],[4,5,["H7969"]],[5,6,["H3967"]],[6,8,["H6242"]]]},{"k":12060,"v":[[0,2,["H1121"]],[2,4,["H3850"]],[4,5,["H2307"]],[5,7,["H207"]],[7,8,["H7651"]],[8,9,["H3967"]],[9,10,["H6242"]],[10,12,["H2568"]]]},{"k":12061,"v":[[0,2,["H1121"]],[2,4,["H3405"]],[4,5,["H7969"]],[5,6,["H3967"]],[6,7,["H705"]],[7,9,["H2568"]]]},{"k":12062,"v":[[0,2,["H1121"]],[2,4,["H5570"]],[4,5,["H7969"]],[5,6,["H505"]],[6,8,["H8337"]],[8,9,["H3967"]],[9,11,["H7970"]]]},{"k":12063,"v":[[0,2,["H3548"]],[2,4,["H1121"]],[4,6,["H3048"]],[6,9,["H1004"]],[9,11,["H3442"]],[11,12,["H8672"]],[12,13,["H3967"]],[13,14,["H7657"]],[14,16,["H7969"]]]},{"k":12064,"v":[[0,2,["H1121"]],[2,4,["H564"]],[4,6,["H505"]],[6,7,["H2572"]],[7,9,["H8147"]]]},{"k":12065,"v":[[0,2,["H1121"]],[2,4,["H6583"]],[4,6,["H505"]],[6,8,["H3967"]],[8,9,["H705"]],[9,11,["H7651"]]]},{"k":12066,"v":[[0,2,["H1121"]],[2,4,["H2766"]],[4,6,["H505"]],[6,8,["H7651","H6240"]]]},{"k":12067,"v":[[0,2,["H3881"]],[2,4,["H1121"]],[4,6,["H3442"]],[6,8,["H6934"]],[8,11,["H1121"]],[11,13,["H1938"]],[13,14,["H7657"]],[14,16,["H702"]]]},{"k":12068,"v":[[0,2,["H7891"]],[2,4,["H1121"]],[4,6,["H623"]],[6,8,["H3967"]],[8,9,["H6242"]],[9,11,["H8083"]]]},{"k":12069,"v":[[0,2,["H1121"]],[2,5,["H7778"]],[5,7,["H1121"]],[7,9,["H7967"]],[9,11,["H1121"]],[11,13,["H333"]],[13,15,["H1121"]],[15,17,["H2929"]],[17,19,["H1121"]],[19,21,["H6126"]],[21,23,["H1121"]],[23,25,["H2410"]],[25,27,["H1121"]],[27,29,["H7630"]],[29,31,["H3605"]],[31,33,["H3967"]],[33,34,["H7970"]],[34,36,["H8672"]]]},{"k":12070,"v":[[0,2,["H5411"]],[2,4,["H1121"]],[4,6,["H6727"]],[6,8,["H1121"]],[8,10,["H2817"]],[10,12,["H1121"]],[12,14,["H2884"]]]},{"k":12071,"v":[[0,2,["H1121"]],[2,4,["H7026"]],[4,6,["H1121"]],[6,8,["H5517"]],[8,10,["H1121"]],[10,12,["H6303"]]]},{"k":12072,"v":[[0,2,["H1121"]],[2,4,["H3838"]],[4,6,["H1121"]],[6,8,["H2286"]],[8,10,["H1121"]],[10,12,["H6126"]]]},{"k":12073,"v":[[0,2,["H1121"]],[2,4,["H2285"]],[4,6,["H1121"]],[6,8,["H8073"]],[8,10,["H1121"]],[10,12,["H2605"]]]},{"k":12074,"v":[[0,2,["H1121"]],[2,4,["H1435"]],[4,6,["H1121"]],[6,8,["H1515"]],[8,10,["H1121"]],[10,12,["H7211"]]]},{"k":12075,"v":[[0,2,["H1121"]],[2,4,["H7526"]],[4,6,["H1121"]],[6,8,["H5353"]],[8,10,["H1121"]],[10,12,["H1502"]]]},{"k":12076,"v":[[0,2,["H1121"]],[2,4,["H5798"]],[4,6,["H1121"]],[6,8,["H6454"]],[8,10,["H1121"]],[10,12,["H1153"]]]},{"k":12077,"v":[[0,2,["H1121"]],[2,4,["H619"]],[4,6,["H1121"]],[6,8,["H4586"]],[8,10,["H1121"]],[10,12,["H5304"]]]},{"k":12078,"v":[[0,2,["H1121"]],[2,4,["H1227"]],[4,6,["H1121"]],[6,8,["H2709"]],[8,10,["H1121"]],[10,12,["H2744"]]]},{"k":12079,"v":[[0,2,["H1121"]],[2,4,["H1213"]],[4,6,["H1121"]],[6,8,["H4240"]],[8,10,["H1121"]],[10,12,["H2797"]]]},{"k":12080,"v":[[0,2,["H1121"]],[2,4,["H1302"]],[4,6,["H1121"]],[6,8,["H5516"]],[8,10,["H1121"]],[10,12,["H8547"]]]},{"k":12081,"v":[[0,2,["H1121"]],[2,4,["H5335"]],[4,6,["H1121"]],[6,8,["H2412"]]]},{"k":12082,"v":[[0,2,["H1121"]],[2,4,["H8010"]],[4,5,["H5650"]],[5,7,["H1121"]],[7,9,["H5479"]],[9,11,["H1121"]],[11,13,["H5618"]],[13,15,["H1121"]],[15,17,["H6514"]]]},{"k":12083,"v":[[0,2,["H1121"]],[2,4,["H3279"]],[4,6,["H1121"]],[6,8,["H1874"]],[8,10,["H1121"]],[10,12,["H1435"]]]},{"k":12084,"v":[[0,2,["H1121"]],[2,4,["H8203"]],[4,6,["H1121"]],[6,8,["H2411"]],[8,10,["H1121"]],[10,14,["H6380"]],[14,16,["H1121"]],[16,18,["H532"]]]},{"k":12085,"v":[[0,1,["H3605"]],[1,3,["H5411"]],[3,6,["H1121"]],[6,8,["H8010"]],[8,9,["H5650"]],[9,11,["H7969"]],[11,12,["H3967"]],[12,13,["H8673"]],[13,15,["H8147"]]]},{"k":12086,"v":[[0,2,["H428"]],[2,7,["H5927"]],[7,9,["H4480","H8528"]],[9,10,["H8521"]],[10,11,["H3743"]],[11,12,["H135"]],[12,14,["H564"]],[14,17,["H3201"]],[17,18,["H3808"]],[18,19,["H5046"]],[19,21,["H1"]],[21,22,["H1004"]],[22,25,["H2233"]],[25,26,["H518"]],[26,27,["H1992"]],[27,30,["H4480","H3478"]]]},{"k":12087,"v":[[0,2,["H1121"]],[2,4,["H1806"]],[4,6,["H1121"]],[6,8,["H2900"]],[8,10,["H1121"]],[10,12,["H5353"]],[12,13,["H8337"]],[13,14,["H3967"]],[14,15,["H2572"]],[15,17,["H8147"]]]},{"k":12088,"v":[[0,4,["H4480","H1121"]],[4,7,["H3548"]],[7,9,["H1121"]],[9,11,["H2252"]],[11,13,["H1121"]],[13,15,["H6976"]],[15,17,["H1121"]],[17,19,["H1271"]],[19,20,["H834"]],[20,21,["H3947"]],[21,23,["H802"]],[23,26,["H4480","H1323"]],[26,28,["H1271"]],[28,30,["H1569"]],[30,33,["H7121"]],[33,34,["H5921"]],[34,36,["H8034"]]]},{"k":12089,"v":[[0,1,["H428"]],[1,2,["H1245"]],[2,4,["H3791"]],[4,11,["H3187"]],[11,15,["H3808"]],[15,16,["H4672"]],[16,22,["H1351"]],[22,23,["H4480"]],[23,25,["H3550"]]]},{"k":12090,"v":[[0,3,["H8660"]],[3,4,["H559"]],[4,7,["H834"]],[7,10,["H3808"]],[10,11,["H398"]],[11,16,["H4480","H6944","H6944"]],[16,17,["H5704"]],[17,20,["H5975"]],[20,22,["H3548"]],[22,24,["H224"]],[24,27,["H8550"]]]},{"k":12091,"v":[[0,2,["H3605"]],[2,3,["H6951"]],[3,4,["H259"]],[4,6,["H702","H7239"]],[6,9,["H505"]],[9,10,["H7969"]],[10,11,["H3967"]],[11,13,["H8346"]]]},{"k":12092,"v":[[0,1,["H4480","H905"]],[1,3,["H5650"]],[3,6,["H519"]],[6,8,["H428"]],[8,11,["H7651"]],[11,12,["H505"]],[12,13,["H7969"]],[13,14,["H3967"]],[14,15,["H7970"]],[15,17,["H7651"]],[17,24,["H3967"]],[24,26,["H7891"]],[26,29,["H7891"]]]},{"k":12093,"v":[[0,2,["H5483"]],[2,4,["H7651"]],[4,5,["H3967"]],[5,6,["H7970"]],[6,8,["H8337"]],[8,10,["H6505"]],[10,12,["H3967"]],[12,13,["H705"]],[13,15,["H2568"]]]},{"k":12094,"v":[[0,2,["H1581"]],[2,3,["H702"]],[3,4,["H3967"]],[4,5,["H7970"]],[5,7,["H2568"]],[7,9,["H2543"]],[9,10,["H8337"]],[10,11,["H505"]],[11,12,["H7651"]],[12,13,["H3967"]],[13,15,["H6242"]]]},{"k":12095,"v":[[0,5,["H4480","H7218"]],[5,8,["H1"]],[8,11,["H935"]],[11,14,["H1004"]],[14,17,["H3068"]],[17,18,["H834"]],[18,21,["H3389"]],[21,23,["H5068"]],[23,26,["H1004"]],[26,28,["H430"]],[28,32,["H5975"]],[32,33,["H5921"]],[33,35,["H4349"]]]},{"k":12096,"v":[[0,2,["H5414"]],[2,5,["H3581"]],[5,8,["H214"]],[8,11,["H4399"]],[11,12,["H8337","H7239"]],[12,15,["H505"]],[15,16,["H1871"]],[16,18,["H2091"]],[18,20,["H2568"]],[20,21,["H505"]],[21,22,["H4488"]],[22,24,["H3701"]],[24,27,["H3967"]],[27,28,["H3548"]],[28,29,["H3801"]]]},{"k":12097,"v":[[0,3,["H3548"]],[3,6,["H3881"]],[6,9,["H4480"]],[9,11,["H5971"]],[11,14,["H7891"]],[14,17,["H7778"]],[17,20,["H5411"]],[20,21,["H3427"]],[21,24,["H5892"]],[24,26,["H3605"]],[26,27,["H3478"]],[27,30,["H5892"]]]},{"k":12098,"v":[[0,4,["H7637"]],[4,5,["H2320"]],[5,7,["H5060"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,16,["H5892"]],[16,18,["H5971"]],[18,21,["H622"]],[21,23,["H259"]],[23,24,["H376"]],[24,25,["H413"]],[25,26,["H3389"]]]},{"k":12099,"v":[[0,3,["H6965"]],[3,4,["H3442"]],[4,6,["H1121"]],[6,8,["H3136"]],[8,11,["H251"]],[11,13,["H3548"]],[13,15,["H2216"]],[15,17,["H1121"]],[17,19,["H7597"]],[19,22,["H251"]],[22,24,["H1129","(H853)"]],[24,26,["H4196"]],[26,29,["H430"]],[29,31,["H3478"]],[31,33,["H5927"]],[33,35,["H5930"]],[35,36,["H5921"]],[36,40,["H3789"]],[40,43,["H8451"]],[43,45,["H4872"]],[45,47,["H376"]],[47,49,["H430"]]]},{"k":12100,"v":[[0,3,["H3559"]],[3,5,["H4196"]],[5,6,["H5921"]],[6,8,["H4350"]],[8,9,["H3588"]],[9,10,["H367"]],[10,12,["H5921"]],[12,17,["H4480","H5971"]],[17,20,["H776"]],[20,23,["H5927"]],[23,25,["H5930"]],[25,26,["H5921"]],[26,29,["H3068"]],[29,32,["H5930"]],[32,33,["H1242"]],[33,35,["H6153"]]]},{"k":12101,"v":[[0,2,["H6213"]],[2,3,["(H853)"]],[3,5,["H2282"]],[5,7,["H5521"]],[7,11,["H3789"]],[11,15,["H3117","H3117"]],[15,17,["H5930"]],[17,19,["H4557"]],[19,23,["H4941"]],[23,26,["H1697"]],[26,29,["H3117","H3117"]],[29,30,[]]]},{"k":12102,"v":[[0,2,["H310"]],[2,5,["H8548"]],[5,7,["H5930"]],[7,12,["H2320"]],[12,15,["H3605"]],[15,18,["H4150"]],[18,21,["H3068"]],[21,24,["H6942"]],[24,28,["H3605"]],[28,31,["H5068"]],[31,34,["H5071"]],[34,37,["H3068"]]]},{"k":12103,"v":[[0,4,["H4480","H3117","H259"]],[4,7,["H7637"]],[7,8,["H2320"]],[8,9,["H2490"]],[9,12,["H5927"]],[12,14,["H5930"]],[14,17,["H3068"]],[17,20,["H3245"]],[20,23,["H1964"]],[23,26,["H3068"]],[26,28,["H3808"]],[28,30,[]]]},{"k":12104,"v":[[0,2,["H5414"]],[2,3,["H3701"]],[3,7,["H2672"]],[7,11,["H2796"]],[11,13,["H3978"]],[13,15,["H4960"]],[15,17,["H8081"]],[17,21,["H6722"]],[21,26,["H6876"]],[26,28,["H935"]],[28,29,["H730"]],[29,30,["H6086"]],[30,31,["H4480"]],[31,32,["H3844"]],[32,33,["H413"]],[33,35,["H3220"]],[35,37,["H3305"]],[37,41,["H7558"]],[41,46,["H3566"]],[46,47,["H4428"]],[47,49,["H6539"]]]},{"k":12105,"v":[[0,4,["H8145"]],[4,5,["H8141"]],[5,8,["H935"]],[8,9,["H413"]],[9,11,["H1004"]],[11,13,["H430"]],[13,15,["H3389"]],[15,18,["H8145"]],[18,19,["H2320"]],[19,20,["H2490"]],[20,21,["H2216"]],[21,23,["H1121"]],[23,25,["H7597"]],[25,27,["H3442"]],[27,29,["H1121"]],[29,31,["H3136"]],[31,34,["H7605"]],[34,37,["H251"]],[37,39,["H3548"]],[39,42,["H3881"]],[42,44,["H3605"]],[44,48,["H935"]],[48,52,["H4480","H7628"]],[52,54,["H3389"]],[54,56,["H5975","(H853)"]],[56,58,["H3881"]],[58,62,["H4480","H1121","H6242","H8141"]],[62,64,["H4605"]],[64,66,["H5329"]],[66,67,["H5921"]],[67,69,["H4399"]],[69,72,["H1004"]],[72,75,["H3068"]]]},{"k":12106,"v":[[0,2,["H5975"]],[2,3,["H3442"]],[3,6,["H1121"]],[6,9,["H251"]],[9,10,["H6934"]],[10,13,["H1121"]],[13,15,["H1121"]],[15,17,["H3063"]],[17,18,["H259"]],[18,20,["H5329"]],[20,21,["H5921"]],[21,23,["H6213","H4399"]],[23,26,["H1004"]],[26,28,["H430"]],[28,30,["H1121"]],[30,32,["H2582"]],[32,35,["H1121"]],[35,38,["H251"]],[38,40,["H3881"]]]},{"k":12107,"v":[[0,4,["H1129"]],[4,7,["H3245"]],[7,8,["(H853)"]],[8,10,["H1964"]],[10,13,["H3068"]],[13,15,["H5975"]],[15,17,["H3548"]],[17,20,["H3847"]],[20,22,["H2689"]],[22,25,["H3881"]],[25,27,["H1121"]],[27,29,["H623"]],[29,31,["H4700"]],[31,33,["H1984","(H853)"]],[33,35,["H3068"]],[35,36,["H5921"]],[36,38,["H3027"]],[38,40,["H1732"]],[40,41,["H4428"]],[41,43,["H3478"]]]},{"k":12108,"v":[[0,6,["H6030"]],[6,8,["H1984"]],[8,11,["H3034"]],[11,14,["H3068"]],[14,15,["H3588"]],[15,18,["H2896"]],[18,19,["H3588"]],[19,21,["H2617"]],[21,24,["H5769"]],[24,25,["H5921"]],[25,26,["H3478"]],[26,28,["H3605"]],[28,30,["H5971"]],[30,31,["H7321"]],[31,34,["H1419"]],[34,35,["H8643"]],[35,38,["H1984"]],[38,40,["H3068"]],[40,41,["H5921"]],[41,51,["H3245","H1004","H3068"]]]},{"k":12109,"v":[[0,2,["H7227"]],[2,5,["H4480","H3548"]],[5,7,["H3881"]],[7,9,["H7218"]],[9,12,["H1"]],[12,16,["H2205"]],[16,17,["H834"]],[17,19,["H7200","(H853)"]],[19,21,["H7223"]],[21,22,["H1004"]],[22,30,["H3245","H2088","H1004"]],[30,33,["H5869"]],[33,34,["H1058"]],[34,37,["H1419"]],[37,38,["H6963"]],[38,40,["H7227"]],[40,42,["H8643","H7311","H6963"]],[42,44,["H8057"]]]},{"k":12110,"v":[[0,4,["H5971"]],[4,6,["H369"]],[6,7,["H5234"]],[7,9,["H6963"]],[9,12,["H8643"]],[12,14,["H8057"]],[14,17,["H6963"]],[17,20,["H1065"]],[20,23,["H5971"]],[23,24,["H3588"]],[24,26,["H5971"]],[26,27,["H7321"]],[27,30,["H1419"]],[30,31,["H8643"]],[31,34,["H6963"]],[34,36,["H8085"]],[36,38,["H5704","H4480","H7350"]]]},{"k":12111,"v":[[0,4,["H6862"]],[4,6,["H3063"]],[6,8,["H1144"]],[8,9,["H8085"]],[9,10,["H3588"]],[10,12,["H1121"]],[12,15,["H1473"]],[15,16,["H1129"]],[16,18,["H1964"]],[18,21,["H3068"]],[21,22,["H430"]],[22,24,["H3478"]]]},{"k":12112,"v":[[0,3,["H5066"]],[3,4,["H413"]],[4,5,["H2216"]],[5,7,["H413"]],[7,9,["H7218"]],[9,12,["H1"]],[12,14,["H559"]],[14,19,["H1129"]],[19,20,["H5973"]],[20,22,["H3588"]],[22,24,["H1875"]],[24,26,["H430"]],[26,31,["H587"]],[31,33,["H2076"]],[33,38,["H4480","H3117"]],[38,40,["H634"]],[40,41,["H4428"]],[41,43,["H804"]],[43,47,["H5927","(H853)"]],[47,48,["H6311"]]]},{"k":12113,"v":[[0,2,["H2216"]],[2,4,["H3442"]],[4,7,["H7605"]],[7,10,["H7218"]],[10,13,["H1"]],[13,15,["H3478"]],[15,16,["H559"]],[16,21,["H3808"]],[21,27,["H1129"]],[27,29,["H1004"]],[29,32,["H430"]],[32,33,["H3588"]],[33,35,["H587"]],[35,36,["H3162"]],[36,38,["H1129"]],[38,41,["H3068"]],[41,42,["H430"]],[42,44,["H3478"]],[44,45,["H834"]],[45,46,["H4428"]],[46,47,["H3566"]],[47,49,["H4428"]],[49,51,["H6539"]],[51,53,["H6680"]],[53,54,[]]]},{"k":12114,"v":[[0,3,["H5971"]],[3,6,["H776"]],[6,7,["H7503"]],[7,9,["H3027"]],[9,12,["H5971"]],[12,14,["H3063"]],[14,16,["H1089"]],[16,19,["H1129"]]]},{"k":12115,"v":[[0,2,["H7936"]],[2,3,["H3289"]],[3,4,["H5921"]],[4,7,["H6565"]],[7,9,["H6098"]],[9,10,["H3605"]],[10,12,["H3117"]],[12,14,["H3566"]],[14,15,["H4428"]],[15,17,["H6539"]],[17,19,["H5704"]],[19,21,["H4438"]],[21,23,["H1867"]],[23,24,["H4428"]],[24,26,["H6539"]]]},{"k":12116,"v":[[0,4,["H4438"]],[4,6,["H325"]],[6,9,["H8462"]],[9,12,["H4438"]],[12,13,["H3789"]],[13,18,["H7855"]],[18,19,["H5921"]],[19,21,["H3427"]],[21,23,["H3063"]],[23,25,["H3389"]]]},{"k":12117,"v":[[0,4,["H3117"]],[4,6,["H783"]],[6,7,["H3789"]],[7,8,["H1312"]],[8,9,["H4990"]],[9,10,["H2870"]],[10,13,["H7605"]],[13,16,["H3674"]],[16,17,["H5921"]],[17,18,["H783"]],[18,19,["H4428"]],[19,21,["H6539"]],[21,24,["H3791"]],[24,27,["H5406"]],[27,29,["H3789"]],[29,33,["H762"]],[33,35,["H8638"]],[35,39,["H762"]]]},{"k":12118,"v":[[0,1,["H7348"]],[1,3,["H2942","H1169"]],[3,5,["H8124"]],[5,7,["H5613"]],[7,8,["H3790"]],[8,9,["H2298"]],[9,10,["H104"]],[10,11,["H5922"]],[11,12,["H3390"]],[12,14,["H783"]],[14,16,["H4430"]],[16,19,["H3660"]]]},{"k":12119,"v":[[0,1,["H116"]],[1,3,["H7348"]],[3,5,["H2942","H1169"]],[5,7,["H8124"]],[7,9,["H5613"]],[9,12,["H7606"]],[12,15,["H3675"]],[15,17,["H1784"]],[17,19,["H671"]],[19,21,["H2967"]],[21,23,["H670"]],[23,25,["H756"]],[25,27,["H896"]],[27,29,["H7801"]],[29,31,["H1723"]],[31,34,["H5962"]]]},{"k":12120,"v":[[0,3,["H7606"]],[3,6,["H524"]],[6,7,["H1768"]],[7,9,["H7229"]],[9,11,["H3358"]],[11,12,["H620"]],[12,14,["H1541"]],[14,16,["H3488"]],[16,19,["H7149"]],[19,20,["H1768"]],[20,21,["H8115"]],[21,24,["H7606"]],[24,29,["H5675"]],[29,31,["H5103"]],[31,36,["H3706"]]]},{"k":12121,"v":[[0,1,["H1836"]],[1,4,["H6573"]],[4,7,["H104"]],[7,8,["H1768"]],[8,10,["H7972"]],[10,11,["H5922"]],[11,14,["H5922"]],[14,15,["H783"]],[15,17,["H4430"]],[17,19,["H5649"]],[19,21,["H606"]],[21,24,["H5675"]],[24,26,["H5103"]],[26,31,["H3706"]]]},{"k":12122,"v":[[0,1,["H1934"]],[1,3,["H3046"]],[3,6,["H4430"]],[6,9,["H3062"]],[9,10,["H1768"]],[10,12,["H5559"]],[12,13,["H4481","H3890"]],[13,15,["H5922"]],[15,18,["H858"]],[18,20,["H3390"]],[20,21,["H1124"]],[21,23,["H4779"]],[23,26,["H873"]],[26,27,["H7149"]],[27,31,["H3635"]],[31,33,["H7792"]],[33,36,["H2338"]],[36,38,["H787"]]]},{"k":12123,"v":[[0,1,["H1934"]],[1,3,["H3046"]],[3,4,["H3705"]],[4,7,["H4430"]],[7,8,["H1768"]],[8,9,["H2006"]],[9,10,["H1791"]],[10,11,["H7149"]],[11,13,["H1124"]],[13,16,["H7792"]],[16,18,["H3635"]],[18,23,["H3809"]],[23,24,["H5415"]],[24,25,["H4061"]],[25,26,["H1093"]],[26,28,["H1983"]],[28,33,["H5142"]],[33,35,["H674"]],[35,38,["H4430"]]]},{"k":12124,"v":[[0,1,["H3705"]],[1,2,["H3606","H6903","H1768"]],[2,5,["H4415","H4416"]],[5,9,["H1965"]],[9,13,["H3809"]],[13,14,["H749"]],[14,18,["H2370"]],[18,20,["H4430"]],[20,21,["H6173"]],[21,22,["H5922","H1836"]],[22,25,["H7972"]],[25,27,["H3046"]],[27,29,["H4430"]]]},{"k":12125,"v":[[0,1,["H1768"]],[1,5,["H1240"]],[5,8,["H5609"]],[8,11,["H1799"]],[11,12,["H1768"]],[12,14,["H2"]],[14,18,["H7912"]],[18,21,["H5609"]],[21,24,["H1799"]],[24,26,["H3046"]],[26,27,["H1768"]],[27,28,["H1791"]],[28,29,["H7149"]],[29,32,["H4779"]],[32,33,["H7149"]],[33,35,["H5142"]],[35,37,["H4430"]],[37,39,["H4083"]],[39,44,["H5648"]],[44,45,["H849"]],[45,48,["H1459"]],[48,49,["H4481"]],[49,50,["H5957"]],[50,51,["H3118"]],[51,52,["H5922"]],[52,54,["H1836"]],[54,56,["H1791"]],[56,57,["H7149"]],[57,58,["H2718"]]]},{"k":12126,"v":[[0,1,["H586"]],[1,2,["H3046"]],[2,4,["H4430"]],[4,5,["H1768"]],[5,6,["H2006"]],[6,7,["H1791"]],[7,8,["H7149"]],[8,10,["H1124"]],[10,14,["H7792"]],[14,17,["H3635"]],[17,19,["H1836"]],[19,20,["H6903"]],[20,23,["H383"]],[23,24,["H3809"]],[24,25,["H2508"]],[25,28,["H5675"]],[28,30,["H5103"]]]},{"k":12127,"v":[[0,2,["H7972"]],[2,4,["H4430"]],[4,6,["H6600"]],[6,7,["H5922"]],[7,8,["H7348"]],[8,10,["H1169","H2942"]],[10,13,["H8124"]],[13,15,["H5613"]],[15,19,["H7606"]],[19,22,["H3675"]],[22,23,["H1768"]],[23,24,["H3488"]],[24,26,["H8115"]],[26,30,["H7606"]],[30,31,["H5675"]],[31,33,["H5103"]],[33,34,["H8001"]],[34,39,["H3706"]]]},{"k":12128,"v":[[0,2,["H5407"]],[2,3,["H1768"]],[3,5,["H7972"]],[5,6,["H5922"]],[6,10,["H6568"]],[10,11,["H7123"]],[11,12,["H6925"]],[12,13,[]]]},{"k":12129,"v":[[0,3,["H7761","H2942"]],[3,8,["H1240"]],[8,12,["H7912"]],[12,13,["H1768"]],[13,14,["H1791"]],[14,15,["H7149"]],[15,16,["H4481"]],[16,17,["H5957"]],[17,18,["H3118"]],[18,21,["H5376"]],[21,22,["H5922"]],[22,23,["H4430"]],[23,26,["H4776"]],[26,28,["H849"]],[28,31,["H5648"]],[31,32,[]]]},{"k":12130,"v":[[0,3,["H1934"]],[3,4,["H8624"]],[4,5,["H4430"]],[5,7,["H5922"]],[7,8,["H3390"]],[8,11,["H7990"]],[11,13,["H3606"]],[13,15,["H5675"]],[15,17,["H5103"]],[17,19,["H4061"]],[19,20,["H1093"]],[20,22,["H1983"]],[22,24,["H3052"]],[24,26,[]]]},{"k":12131,"v":[[0,1,["H7761"]],[1,3,["H3705"]],[3,4,["H2942"]],[4,7,["H479"]],[7,8,["H1400"]],[8,10,["H989"]],[10,13,["H1791"]],[13,14,["H7149"]],[14,16,["H3809"]],[16,17,["H1124"]],[17,18,["H5705"]],[18,20,["H2941"]],[20,23,["H7761"]],[23,24,["H4481"]],[24,25,[]]]},{"k":12132,"v":[[0,2,["H2095","H1934"]],[2,7,["H7960"]],[7,9,["H5648"]],[9,10,["(H5922)","H1836"]],[10,11,["H4101"]],[11,13,["H2257"]],[13,14,["H7680"]],[14,17,["H5142"]],[17,20,["H4430"]]]},{"k":12133,"v":[[0,1,["H116"]],[1,2,["H4481","H1768"]],[2,4,["H6573"]],[4,6,["H4430"]],[6,7,["H783"]],[7,8,["H5407"]],[8,10,["H7123"]],[10,11,["H6925"]],[11,12,["H7348"]],[12,14,["H8124"]],[14,16,["H5613"]],[16,19,["H3675"]],[19,22,["H236"]],[22,24,["H924"]],[24,26,["H3390"]],[26,27,["H5922"]],[27,29,["H3062"]],[29,32,["H1994"]],[32,34,["H989"]],[34,36,["H153"]],[36,38,["H2429"]]]},{"k":12134,"v":[[0,1,["H116"]],[1,2,["H989"]],[2,4,["H5673"]],[4,7,["H1005"]],[7,9,["H426"]],[9,10,["H1768"]],[10,13,["H3390"]],[13,14,["H1934"]],[14,16,["H989"]],[16,17,["H5705"]],[17,19,["H8648"]],[19,20,["H8140"]],[20,23,["H4437"]],[23,25,["H1868"]],[25,26,["H4430"]],[26,28,["H6540"]]]},{"k":12135,"v":[[0,3,["H5029"]],[3,4,["H2292"]],[4,6,["H5029"]],[6,8,["H2148"]],[8,10,["H1247"]],[10,12,["H5714"]],[12,13,["H5013"]],[13,14,["H5922"]],[14,16,["H3062"]],[16,17,["H1768"]],[17,20,["H3061"]],[20,22,["H3390"]],[22,25,["H8036"]],[25,28,["H426"]],[28,30,["H3479"]],[30,32,["H5922"]],[32,33,[]]]},{"k":12136,"v":[[0,1,["H116"]],[1,3,["H6966"]],[3,4,["H2217"]],[4,6,["H1247"]],[6,8,["H7598"]],[8,10,["H3443"]],[10,12,["H1247"]],[12,14,["H3136"]],[14,16,["H8271"]],[16,18,["H1124"]],[18,20,["H1005"]],[20,22,["H426"]],[22,23,["H1768"]],[23,26,["H3390"]],[26,28,["H5974"]],[28,32,["H5029"]],[32,33,["H1768"]],[33,34,["H426"]],[34,35,["H5583"]],[35,36,[]]]},{"k":12137,"v":[[0,4,["H2166"]],[4,5,["H858"]],[5,6,["H5922"]],[6,8,["H8674"]],[8,9,["H6347"]],[9,12,["H5675"]],[12,14,["H5103"]],[14,16,["H8370"]],[16,19,["H3675"]],[19,21,["H560"]],[21,22,["H3652"]],[22,25,["H4479"]],[25,27,["H7761","H2942"]],[27,30,["H1124"]],[30,31,["H1836"]],[31,32,["H1005"]],[32,36,["H3635"]],[36,37,["H1836"]],[37,38,["H846"]]]},{"k":12138,"v":[[0,1,["H116"]],[1,2,["H560"]],[2,8,["H3660"]],[8,9,["H4479"]],[9,12,["H8036"]],[12,15,["H1400"]],[15,16,["H1768"]],[16,17,["H1124"]],[17,18,["H1836"]],[18,19,["H1147"]]]},{"k":12139,"v":[[0,3,["H5870"]],[3,6,["H426"]],[6,7,["H1934"]],[7,8,["H5922"]],[8,10,["H7868"]],[10,13,["H3062"]],[13,17,["H3809"]],[17,19,["H1994"]],[19,21,["H989"]],[21,22,["H5705"]],[22,24,["H2941"]],[24,25,["H1946"]],[25,27,["H1868"]],[27,29,["H116"]],[29,32,["H8421"]],[32,34,["H5407"]],[34,35,["H5922"]],[35,36,["H1836"]],[36,37,[]]]},{"k":12140,"v":[[0,2,["H6573"]],[2,5,["H104"]],[5,6,["H1768"]],[6,7,["H8674"]],[7,8,["H6347"]],[8,11,["H5675"]],[11,13,["H5103"]],[13,15,["H8370"]],[15,18,["H3675"]],[18,20,["H671"]],[20,21,["H1768"]],[21,25,["H5675"]],[25,27,["H5103"]],[27,28,["H7972"]],[28,29,["H5922"]],[29,30,["H1868"]],[30,32,["H4430"]]]},{"k":12141,"v":[[0,2,["H7972"]],[2,4,["H6600"]],[4,5,["H5922"]],[5,7,["H1459"]],[7,9,["H3790"]],[9,10,["H1836"]],[10,12,["H1868"]],[12,14,["H4430"]],[14,15,["H3606"]],[15,16,["H8001"]]]},{"k":12142,"v":[[0,1,["H1934"]],[1,3,["H3046"]],[3,6,["H4430"]],[6,7,["H1768"]],[7,9,["H236"]],[9,12,["H4083"]],[12,14,["H3061"]],[14,17,["H1005"]],[17,20,["H7229"]],[20,21,["H426"]],[21,22,["H1932"]],[22,24,["H1124"]],[24,26,["H1560"]],[26,27,["H69"]],[27,29,["H636"]],[29,31,["H7761"]],[31,34,["H3797"]],[34,36,["H1791"]],[36,37,["H5673"]],[37,38,["H5648"]],[38,40,["H629"]],[40,42,["H6744"]],[42,45,["H3028"]]]},{"k":12143,"v":[[0,1,["H116"]],[1,2,["H7593"]],[2,4,["H479"]],[4,5,["H7868"]],[5,7,["H560"]],[7,10,["H3660"]],[10,11,["H4479"]],[11,12,["H7761","H2942"]],[12,15,["H1124"]],[15,16,["H1836"]],[16,17,["H1005"]],[17,21,["H3635"]],[21,22,["H1836"]],[22,23,["H846"]]]},{"k":12144,"v":[[0,2,["H7593"]],[2,4,["H8036"]],[4,5,["H638"]],[5,7,["H3046"]],[7,9,["H1768"]],[9,12,["H3790"]],[12,14,["H8036"]],[14,17,["H1400"]],[17,18,["H1768"]],[18,21,["H7217"]],[21,23,[]]]},{"k":12145,"v":[[0,2,["H3660"]],[2,4,["H8421"]],[4,6,["H6600"]],[6,7,["H560"]],[7,8,["H586"]],[8,11,["H5649"]],[11,12,["H1768"]],[12,14,["H426"]],[14,16,["H8065"]],[16,18,["H772"]],[18,20,["H1124"]],[20,22,["H1005"]],[22,23,["H1768"]],[23,24,["H1934"]],[24,25,["H1124"]],[25,26,["H1836"]],[26,27,["H7690"]],[27,28,["H8140"]],[28,29,["H4481","H6928"]],[29,32,["H7229"]],[32,33,["H4430"]],[33,35,["H3479"]],[35,36,["H1124"]],[36,39,["H3635"]]]},{"k":12146,"v":[[0,1,["H3861"]],[1,2,["H4481"]],[2,3,["H1768"]],[3,5,["H2"]],[5,13,["H7265","H426","H8065"]],[13,15,["H3052"]],[15,16,["H1994"]],[16,19,["H3028"]],[19,21,["H5020"]],[21,23,["H4430"]],[23,25,["H895"]],[25,27,["H3679"]],[27,29,["H5642"]],[29,30,["H1836"]],[30,31,["H1005"]],[31,36,["H1541","H5972"]],[36,38,["H895"]]]},{"k":12147,"v":[[0,1,["H1297"]],[1,4,["H2298"]],[4,5,["H8140"]],[5,7,["H3567"]],[7,9,["H4430"]],[9,10,["H1768"]],[10,11,["H895"]],[11,14,["H4430"]],[14,15,["H3567"]],[15,16,["H7761"]],[16,18,["H2942"]],[18,20,["H1124"]],[20,21,["H1836"]],[21,22,["H1005"]],[22,24,["H426"]]]},{"k":12148,"v":[[0,3,["H3984"]],[3,4,["H638"]],[4,5,["H1768"]],[5,6,["H1722"]],[6,8,["H3702"]],[8,9,["H1768"]],[9,11,["H1005"]],[11,13,["H426"]],[13,14,["H1768"]],[14,15,["H5020"]],[15,16,["H5312"]],[16,18,["H4481"]],[18,20,["H1965"]],[20,21,["H1768"]],[21,24,["H3390"]],[24,26,["H2987"]],[26,27,["H1994"]],[27,30,["H1965"]],[30,31,["H1768"]],[31,32,["H895"]],[32,33,["H1994"]],[33,35,["H3567"]],[35,37,["H4430"]],[37,38,["H5312"]],[38,40,["H4481"]],[40,42,["H1965"]],[42,43,["H1768"]],[43,44,["H895"]],[44,48,["H3052"]],[48,52,["H8036"]],[52,54,["H8340"]],[54,55,["H1768"]],[55,58,["H7761"]],[58,59,["H6347"]]]},{"k":12149,"v":[[0,2,["H560"]],[2,5,["H5376"]],[5,6,["H429"]],[6,7,["H3984"]],[7,8,["H236"]],[8,9,["H5182"]],[9,10,["H1994"]],[10,13,["H1965"]],[13,14,["H1768"]],[14,17,["H3390"]],[17,21,["H1005"]],[21,23,["H426"]],[23,25,["H1124"]],[25,26,["H5922"]],[26,28,["H870"]]]},{"k":12150,"v":[[0,1,["H116"]],[1,2,["H858"]],[2,4,["H1791"]],[4,5,["H8340"]],[5,7,["H3052"]],[7,9,["H787"]],[9,10,["H1768"]],[10,12,["H1005"]],[12,14,["H426"]],[14,15,["H1768"]],[15,18,["H3390"]],[18,20,["H4481"]],[20,22,["H116"]],[22,24,["H5705"]],[24,25,["H3705"]],[25,30,["H1124"]],[30,35,["H3809"]],[35,36,["H8000"]]]},{"k":12151,"v":[[0,1,["H3705"]],[1,3,["H2006"]],[3,6,["H2869"]],[6,7,["H5922"]],[7,9,["H4430"]],[9,14,["H1240"]],[14,17,["H4430"]],[17,18,["H1596"]],[18,19,["H1005"]],[19,20,["H1768"]],[20,22,["H8536"]],[22,24,["H895"]],[24,25,["H2006"]],[25,27,["H383"]],[27,29,["H1768"]],[29,31,["H2942"]],[31,33,["H7761"]],[33,34,["H4481"]],[34,35,["H3567"]],[35,37,["H4430"]],[37,39,["H1124"]],[39,40,["H1791"]],[40,41,["H1005"]],[41,43,["H426"]],[43,45,["H3390"]],[45,49,["H4430"]],[49,50,["H7972"]],[50,52,["H7470"]],[52,53,["H5922"]],[53,55,["H5922"]],[55,57,["H1836"]]]},{"k":12152,"v":[[0,1,["H116"]],[1,2,["H1868"]],[2,4,["H4430"]],[4,5,["H7761"]],[5,7,["H2942"]],[7,11,["H1240"]],[11,14,["H1005"]],[14,17,["H5609"]],[17,18,["H1768","H8536"]],[18,20,["H1596"]],[20,23,["H5182"]],[23,25,["H895"]]]},{"k":12153,"v":[[0,4,["H7912"]],[4,6,["H307"]],[6,9,["H1001"]],[9,10,["H1768"]],[10,14,["H4083"]],[14,17,["H4076"]],[17,18,["H2298"]],[18,19,["H4040"]],[19,21,["H1459"]],[21,24,["H1799"]],[24,25,["H3652"]],[25,26,["H3790"]]]},{"k":12154,"v":[[0,3,["H2298"]],[3,4,["H8140"]],[4,6,["H3567"]],[6,8,["H4430"]],[8,11,["H3567"]],[11,13,["H4430"]],[13,14,["H7761"]],[14,16,["H2942"]],[16,19,["H1005"]],[19,21,["H426"]],[21,23,["H3390"]],[23,26,["H1005"]],[26,28,["H1124"]],[28,30,["H870"]],[30,31,["H1768"]],[31,33,["H1684"]],[33,34,["H1685"]],[34,38,["H787"]],[38,42,["H5446"]],[42,44,["H7314"]],[44,46,["H8361"]],[46,47,["H521"]],[47,50,["H6613"]],[50,52,["H8361"]],[52,53,["H521"]]]},{"k":12155,"v":[[0,2,["H8532"]],[2,3,["H5073"]],[3,4,["H1768"]],[4,5,["H1560"]],[5,6,["H69"]],[6,9,["H5073"]],[9,10,["H1768"]],[10,11,["H2323"]],[11,12,["H636"]],[12,16,["H5313"]],[16,18,["H3052"]],[18,20,["H4481"]],[20,22,["H4430"]],[22,23,["H1005"]]]},{"k":12156,"v":[[0,2,["H638"]],[2,5,["H1722"]],[5,7,["H3702"]],[7,8,["H3984"]],[8,11,["H1005"]],[11,13,["H426"]],[13,14,["H1768"]],[14,15,["H5020"]],[15,17,["H5312"]],[17,19,["H4481"]],[19,21,["H1965"]],[21,22,["H1768"]],[22,25,["H3390"]],[25,27,["H2987"]],[27,29,["H895"]],[29,31,["H8421"]],[31,34,["H1946"]],[34,37,["H1965"]],[37,38,["H1768"]],[38,41,["H3390"]],[41,46,["H870"]],[46,48,["H5182"]],[48,52,["H1005"]],[52,54,["H426"]]]},{"k":12157,"v":[[0,1,["H3705"]],[1,3,["H8674"]],[3,4,["H6347"]],[4,5,["H5675"]],[5,7,["H5103"]],[7,8,["H8370"]],[8,11,["H3675"]],[11,13,["H671"]],[13,14,["H1768"]],[14,16,["H5675"]],[16,18,["H5103"]],[18,19,["H1934"]],[19,21,["H7352"]],[21,22,["H4481"]],[22,23,["H8536"]]]},{"k":12158,"v":[[0,3,["H5673"]],[3,5,["H1791"]],[5,6,["H1005"]],[6,8,["H426"]],[8,9,["H7662"]],[9,12,["H6347"]],[12,15,["H3062"]],[15,18,["H7868"]],[18,21,["H3062"]],[21,22,["H1124"]],[22,23,["H1791"]],[23,24,["H1005"]],[24,26,["H426"]],[26,27,["H5922"]],[27,29,["H870"]]]},{"k":12159,"v":[[0,3,["H7761"]],[3,5,["H2942"]],[5,6,["H3964","H1768"]],[6,9,["H5648"]],[9,10,["H5974"]],[10,12,["H7868"]],[12,14,["H479"]],[14,15,["H3062"]],[15,18,["H1124"]],[18,20,["H1791"]],[20,21,["H1005"]],[21,23,["H426"]],[23,28,["H4481","H5232","H4430"]],[28,30,["H1768"]],[30,32,["H4061"]],[32,33,["H5675"]],[33,35,["H5103"]],[35,36,["H629"]],[36,37,["H5313"]],[37,38,["H1934"]],[38,39,["H3052"]],[39,41,["H479"]],[41,42,["H1400"]],[42,43,["H1768"]],[43,46,["H3809"]],[46,47,["H989"]]]},{"k":12160,"v":[[0,2,["H4100"]],[2,7,["H2818"]],[7,9,["H1123"]],[9,10,["H8450"]],[10,12,["H1798"]],[12,14,["H563"]],[14,18,["H5928"]],[18,21,["H426"]],[21,23,["H8065"]],[23,24,["H2591"]],[24,25,["H4416"]],[25,26,["H2562"]],[26,28,["H4887"]],[28,32,["H3983"]],[32,35,["H3549"]],[35,36,["H1768"]],[36,39,["H3390"]],[39,42,["H1934"]],[42,43,["H3052"]],[43,45,["H3118"]],[45,47,["H3118"]],[47,48,["H1768","H3809"]],[48,49,["H7960"]]]},{"k":12161,"v":[[0,1,["H1768"]],[1,3,["H1934"]],[3,4,["H7127"]],[4,8,["H5208"]],[8,11,["H426"]],[11,13,["H8065"]],[13,15,["H6739"]],[15,18,["H2417"]],[18,21,["H4430"]],[21,25,["H1123"]]]},{"k":12162,"v":[[0,4,["H7761"]],[4,6,["H2942"]],[6,7,["H1768"]],[7,8,["H3606","H606","H1768"]],[8,10,["H8133"]],[10,11,["H1836"]],[11,12,["H6600"]],[12,14,["H636"]],[14,17,["H5256"]],[17,18,["H4481"]],[18,20,["H1005"]],[20,24,["H2211"]],[24,28,["H4223"]],[28,29,["H5922"]],[29,33,["H1005"]],[33,35,["H5648"]],[35,37,["H5122"]],[37,38,["H5922"]],[38,39,["H1836"]]]},{"k":12163,"v":[[0,3,["H426"]],[3,4,["H1768"]],[4,8,["H8036"]],[8,10,["H7932"]],[10,11,["H8536"]],[11,12,["H4049"]],[12,13,["H3606"]],[13,14,["H4430"]],[14,16,["H5972"]],[16,17,["H1768"]],[17,19,["H7972"]],[19,22,["H3028"]],[22,24,["H8133"]],[24,27,["H2255"]],[27,28,["H1791"]],[28,29,["H1005"]],[29,31,["H426"]],[31,32,["H1768"]],[32,35,["H3390"]],[35,36,["H576"]],[36,37,["H1868"]],[37,39,["H7761"]],[39,41,["H2942"]],[41,45,["H5648"]],[45,47,["H629"]]]},{"k":12164,"v":[[0,1,["H116"]],[1,2,["H8674"]],[2,3,["H6347"]],[3,6,["H5675"]],[6,8,["H5103"]],[8,9,["H8370"]],[9,12,["H3675"]],[12,14,["H6903"]],[14,16,["H1768"]],[16,17,["H1868"]],[17,19,["H4430"]],[19,21,["H7972"]],[21,22,["H3660"]],[22,24,["H5648"]],[24,25,["H629"]]]},{"k":12165,"v":[[0,3,["H7868"]],[3,6,["H3062"]],[6,7,["H1124"]],[7,10,["H6744"]],[10,13,["H5017"]],[13,15,["H2292"]],[15,17,["H5029"]],[17,19,["H2148"]],[19,21,["H1247"]],[21,23,["H5714"]],[23,26,["H1124"]],[26,28,["H3635"]],[28,30,["H4481"]],[30,33,["H2941"]],[33,36,["H426"]],[36,38,["H3479"]],[38,41,["H4481"]],[41,43,["H2942"]],[43,45,["H3567"]],[45,47,["H1868"]],[47,49,["H783"]],[49,50,["H4430"]],[50,52,["H6540"]]]},{"k":12166,"v":[[0,2,["H1836"]],[2,3,["H1005"]],[3,5,["H3319"]],[5,6,["H5705"]],[6,8,["H8532"]],[8,9,["H3118"]],[9,12,["H3393"]],[12,13,["H144"]],[13,14,["H1768"]],[14,18,["H8353"]],[18,19,["H8140"]],[19,22,["H4437"]],[22,24,["H1868"]],[24,26,["H4430"]]]},{"k":12167,"v":[[0,3,["H1123"]],[3,5,["H3479"]],[5,7,["H3549"]],[7,10,["H3879"]],[10,13,["H7606"]],[13,16,["H1123"]],[16,19,["H1547"]],[19,20,["H5648"]],[20,22,["H2597"]],[22,24,["H1836"]],[24,25,["H1005"]],[25,27,["H426"]],[27,29,["H2305"]]]},{"k":12168,"v":[[0,2,["H7127"]],[2,5,["H2597"]],[5,7,["H1836"]],[7,8,["H1005"]],[8,10,["H426"]],[10,12,["H3969"]],[12,13,["H8450"]],[13,15,["H3969"]],[15,16,["H1798"]],[16,17,["H703"]],[17,18,["H3969"]],[18,19,["H563"]],[19,24,["H2409"]],[24,25,["H5922"]],[25,26,["H3606"]],[26,27,["H3479"]],[27,28,["H8648","H6236"]],[28,30,["H6841","H5796"]],[30,34,["H4510"]],[34,37,["H7625"]],[37,39,["H3479"]]]},{"k":12169,"v":[[0,3,["H6966"]],[3,5,["H3549"]],[5,8,["H6392"]],[8,11,["H3879"]],[11,14,["H4255"]],[14,15,["H5922"]],[15,17,["H5673"]],[17,19,["H426"]],[19,20,["H1768"]],[20,23,["H3390"]],[23,27,["H3792"]],[27,30,["H5609"]],[30,32,["H4873"]]]},{"k":12170,"v":[[0,3,["H1121"]],[3,6,["H1473"]],[6,7,["H6213","(H853)"]],[7,9,["H6453"]],[9,12,["H702","H6240"]],[12,16,["H7223"]],[16,17,["H2320"]]]},{"k":12171,"v":[[0,1,["H3588"]],[1,3,["H3548"]],[3,6,["H3881"]],[6,8,["H2891"]],[8,9,["H259"]],[9,10,["H3605"]],[10,14,["H2889"]],[14,16,["H7819"]],[16,18,["H6453"]],[18,20,["H3605"]],[20,22,["H1121"]],[22,25,["H1473"]],[25,29,["H251"]],[29,31,["H3548"]],[31,34,[]]]},{"k":12172,"v":[[0,3,["H1121"]],[3,5,["H3478"]],[5,9,["H7725"]],[9,12,["H4480","H1473"]],[12,14,["H3605"]],[14,19,["H914"]],[19,20,["H413"]],[20,24,["H4480","H2932"]],[24,27,["H1471"]],[27,30,["H776"]],[30,32,["H1875"]],[32,34,["H3068"]],[34,35,["H430"]],[35,37,["H3478"]],[37,39,["H398"]]]},{"k":12173,"v":[[0,2,["H6213"]],[2,4,["H2282"]],[4,7,["H4682"]],[7,8,["H7651"]],[8,9,["H3117"]],[9,11,["H8057"]],[11,12,["H3588"]],[12,14,["H3068"]],[14,18,["H8055"]],[18,20,["H5437"]],[20,22,["H3820"]],[22,25,["H4428"]],[25,27,["H804"]],[27,28,["H5921"]],[28,31,["H2388"]],[31,33,["H3027"]],[33,36,["H4399"]],[36,39,["H1004"]],[39,41,["H430"]],[41,43,["H430"]],[43,45,["H3478"]]]},{"k":12174,"v":[[0,2,["H310"]],[2,3,["H428"]],[3,4,["H1697"]],[4,7,["H4438"]],[7,9,["H783"]],[9,10,["H4428"]],[10,12,["H6539"]],[12,13,["H5830"]],[13,15,["H1121"]],[15,17,["H8304"]],[17,19,["H1121"]],[19,21,["H5838"]],[21,23,["H1121"]],[23,25,["H2518"]]]},{"k":12175,"v":[[0,2,["H1121"]],[2,4,["H7967"]],[4,6,["H1121"]],[6,8,["H6659"]],[8,10,["H1121"]],[10,12,["H285"]]]},{"k":12176,"v":[[0,2,["H1121"]],[2,4,["H568"]],[4,6,["H1121"]],[6,8,["H5838"]],[8,10,["H1121"]],[10,12,["H4812"]]]},{"k":12177,"v":[[0,2,["H1121"]],[2,4,["H2228"]],[4,6,["H1121"]],[6,8,["H5813"]],[8,10,["H1121"]],[10,12,["H1231"]]]},{"k":12178,"v":[[0,2,["H1121"]],[2,4,["H50"]],[4,6,["H1121"]],[6,8,["H6372"]],[8,10,["H1121"]],[10,12,["H499"]],[12,14,["H1121"]],[14,16,["H175"]],[16,18,["H7218"]],[18,19,["H3548"]]]},{"k":12179,"v":[[0,1,["H1931"]],[1,2,["H5830"]],[2,4,["H5927"]],[4,6,["H4480","H894"]],[6,8,["H1931"]],[8,11,["H4106"]],[11,12,["H5608"]],[12,15,["H8451"]],[15,17,["H4872"]],[17,18,["H834"]],[18,20,["H3068"]],[20,21,["H430"]],[21,23,["H3478"]],[23,25,["H5414"]],[25,28,["H4428"]],[28,29,["H5414"]],[29,31,["H3605"]],[31,33,["H1246"]],[33,37,["H3027"]],[37,40,["H3068"]],[40,42,["H430"]],[42,43,["H5921"]],[43,44,[]]]},{"k":12180,"v":[[0,4,["H5927"]],[4,8,["H4480","H1121"]],[8,10,["H3478"]],[10,12,["H4480"]],[12,14,["H3548"]],[14,17,["H3881"]],[17,20,["H7891"]],[20,23,["H7778"]],[23,26,["H5411"]],[26,27,["H413"]],[27,28,["H3389"]],[28,31,["H7651"]],[31,32,["H8141"]],[32,34,["H783"]],[34,36,["H4428"]]]},{"k":12181,"v":[[0,3,["H935"]],[3,5,["H3389"]],[5,8,["H2549"]],[8,9,["H2320"]],[9,10,["H1931"]],[10,14,["H7637"]],[14,15,["H8141"]],[15,18,["H4428"]]]},{"k":12182,"v":[[0,1,["H3588"]],[1,4,["H259"]],[4,8,["H7223"]],[8,9,["H2320"]],[9,10,["H3246"]],[10,11,["H1931"]],[11,14,["H4609"]],[14,16,["H4480","H894"]],[16,20,["H259"]],[20,24,["H2549"]],[24,25,["H2320"]],[25,26,["H935"]],[26,28,["H413"]],[28,29,["H3389"]],[29,33,["H2896"]],[33,34,["H3027"]],[34,37,["H430"]],[37,38,["H5921"]],[38,39,[]]]},{"k":12183,"v":[[0,1,["H3588"]],[1,2,["H5830"]],[2,4,["H3559"]],[4,6,["H3824"]],[6,8,["H1875","(H853)"]],[8,10,["H8451"]],[10,13,["H3068"]],[13,16,["H6213"]],[16,20,["H3925"]],[20,22,["H3478"]],[22,23,["H2706"]],[23,25,["H4941"]]]},{"k":12184,"v":[[0,2,["H2088"]],[2,5,["H6572"]],[5,8,["H5406"]],[8,9,["H834"]],[9,11,["H4428"]],[11,12,["H783"]],[12,13,["H5414"]],[13,15,["H5830"]],[15,17,["H3548"]],[17,19,["H5608"]],[19,22,["H5608"]],[22,25,["H1697"]],[25,28,["H4687"]],[28,31,["H3068"]],[31,35,["H2706"]],[35,36,["H5921"]],[36,37,["H3478"]]]},{"k":12185,"v":[[0,1,["H783"]],[1,2,["H4430"]],[2,4,["H4430"]],[4,6,["H5831"]],[6,8,["H3549"]],[8,10,["H5613"]],[10,13,["H1882"]],[13,14,["H1768"]],[14,16,["H426"]],[16,18,["H8065"]],[18,19,["H1585"]],[19,25,["H3706"]]]},{"k":12186,"v":[[0,2,["H7761"]],[2,4,["H2942"]],[4,5,["H1768"]],[5,6,["H3606"]],[6,8,["H4481"]],[8,10,["H5972"]],[10,12,["H3479"]],[12,16,["H3549"]],[16,18,["H3879"]],[18,21,["H4437"]],[21,28,["H5069"]],[28,31,["H1946"]],[31,33,["H3390"]],[33,34,["H1946"]],[34,35,["H5974"]],[35,36,[]]]},{"k":12187,"v":[[0,1,["H3606","H6903","H1768"]],[1,5,["H7972"]],[5,6,["H4481","H6925"]],[6,8,["H4430"]],[8,12,["H7655"]],[12,13,["H3272"]],[13,15,["H1240"]],[15,16,["H5922"]],[16,17,["H3061"]],[17,19,["H3390"]],[19,23,["H1882"]],[23,26,["H426"]],[26,27,["H1768"]],[27,31,["H3028"]]]},{"k":12188,"v":[[0,3,["H2987"]],[3,5,["H3702"]],[5,7,["H1722"]],[7,8,["H1768"]],[8,10,["H4430"]],[10,13,["H3272"]],[13,16,["H5069"]],[16,19,["H426"]],[19,21,["H3479"]],[21,22,["H1768"]],[22,23,["H4907"]],[23,26,["H3390"]]]},{"k":12189,"v":[[0,2,["H3606"]],[2,4,["H3702"]],[4,6,["H1722"]],[6,7,["H1768"]],[7,10,["H7912"]],[10,12,["H3606"]],[12,14,["H4083"]],[14,16,["H895"]],[16,17,["H5974"]],[17,20,["H5069"]],[20,23,["H5974"]],[23,27,["H3549"]],[27,29,["H5069"]],[29,32,["H1005"]],[32,35,["H426"]],[35,36,["H1768"]],[36,39,["H3390"]]]},{"k":12190,"v":[[0,1,["H3606","H6903","H1836"]],[1,4,["H7066"]],[4,5,["H629"]],[5,7,["H1836"]],[7,8,["H3702"]],[8,9,["H8450"]],[9,10,["H1798"]],[10,11,["H563"]],[11,15,["H4504"]],[15,19,["H5261"]],[19,21,["H7127"]],[21,22,["H1994"]],[22,23,["H5922"]],[23,25,["H4056"]],[25,26,["H1768"]],[26,28,["H1005"]],[28,31,["H426"]],[31,32,["H1768"]],[32,35,["H3390"]]]},{"k":12191,"v":[[0,2,["H4101","H1768"]],[2,5,["H3191"]],[5,6,["H5922"]],[6,9,["H5922"]],[9,11,["H252"]],[11,13,["H5648"]],[13,16,["H7606"]],[16,19,["H3702"]],[19,22,["H1722"]],[22,24,["H5648"]],[24,27,["H7470"]],[27,30,["H426"]]]},{"k":12192,"v":[[0,2,["H3984"]],[2,4,["H1768"]],[4,6,["H3052"]],[6,10,["H6402"]],[10,13,["H1005"]],[13,16,["H426"]],[16,18,["H8000"]],[18,20,["H6925"]],[20,22,["H426"]],[22,24,["H3390"]]]},{"k":12193,"v":[[0,3,["H7606"]],[3,6,["H2819"]],[6,9,["H1005"]],[9,12,["H426"]],[12,13,["H1768"]],[13,17,["H5308"]],[17,19,["H5415"]],[19,20,["H5415"]],[20,23,["H4481"]],[23,25,["H4430"]],[25,26,["H1596"]],[26,27,["H1005"]]]},{"k":12194,"v":[[0,4,["H576"]],[4,5,["H783"]],[5,7,["H4430"]],[7,9,["H7761"]],[9,11,["H2942"]],[11,13,["H3606"]],[13,15,["H1490"]],[15,16,["H1768"]],[16,18,["H5675"]],[18,20,["H5103"]],[20,21,["H1768"]],[21,22,["H3606","H1768"]],[22,23,["H5831"]],[23,25,["H3549"]],[25,27,["H5613"]],[27,30,["H1882"]],[30,31,["H1768"]],[31,33,["H426"]],[33,35,["H8065"]],[35,37,["H7593"]],[37,42,["H5648"]],[42,43,["H629"]]]},{"k":12195,"v":[[0,1,["H5705"]],[1,3,["H3969"]],[3,4,["H3604"]],[4,6,["H3702"]],[6,8,["H5705"]],[8,10,["H3969"]],[10,11,["H3734"]],[11,13,["H2591"]],[13,15,["H5705"]],[15,17,["H3969"]],[17,18,["H1325"]],[18,20,["H2562"]],[20,22,["H5705"]],[22,24,["H3969"]],[24,25,["H1325"]],[25,27,["H4887"]],[27,29,["H4416"]],[29,30,["H1768","H3809"]],[30,31,["H3792"]],[31,33,[]]]},{"k":12196,"v":[[0,1,["H3606","H1768"]],[1,3,["H2941"]],[3,4,["H4481"]],[4,6,["H426"]],[6,8,["H8065"]],[8,12,["H149"]],[12,13,["H5648"]],[13,16,["H1005"]],[16,19,["H426"]],[19,21,["H8065"]],[21,22,["H1768"]],[22,23,["H4101"]],[23,26,["H1934"]],[26,27,["H7109"]],[27,28,["H5922"]],[28,30,["H4437"]],[30,33,["H4430"]],[33,36,["H1123"]]]},{"k":12197,"v":[[0,3,["H3046"]],[3,5,["H1768"]],[5,7,["H3606"]],[7,10,["H3549"]],[10,12,["H3879"]],[12,13,["H2171"]],[13,14,["H8652"]],[14,15,["H5412"]],[15,17,["H6399"]],[17,19,["H1836"]],[19,20,["H1005"]],[20,22,["H426"]],[22,25,["H3809"]],[25,27,["H7990"]],[27,29,["H7412"]],[29,30,["H4061"]],[30,31,["H1093"]],[31,33,["H1983"]],[33,34,["H5922"]],[34,35,[]]]},{"k":12198,"v":[[0,2,["H607"]],[2,3,["H5831"]],[3,6,["H2452"]],[6,9,["H426"]],[9,10,["H1768"]],[10,14,["H3028"]],[14,15,["H4483"]],[15,16,["H8200"]],[16,18,["H1782"]],[18,19,["H1768"]],[19,20,["H1934"]],[20,21,["H1778"]],[21,22,["H3606"]],[22,24,["H5972"]],[24,25,["H1768"]],[25,27,["H5675"]],[27,29,["H5103"]],[29,30,["H3606"]],[30,33,["H3046"]],[33,35,["H1882"]],[35,38,["H426"]],[38,40,["H3046"]],[40,43,["H1768"]],[43,44,["H3046"]],[44,46,["H3809"]]]},{"k":12199,"v":[[0,2,["H3606","H1768"]],[2,3,["H1934"]],[3,4,["H3809"]],[4,5,["H5648"]],[5,7,["H1882"]],[7,8,["H1768"]],[8,10,["H426"]],[10,13,["H1882"]],[13,14,["H1768"]],[14,16,["H4430"]],[16,17,["H1934"]],[17,18,["H1780"]],[18,20,["H5648"]],[20,21,["H629"]],[21,22,["H4481"]],[22,24,["H2006"]],[24,28,["H4193"]],[28,29,["H2006"]],[29,31,["H8332"]],[31,32,["H2006"]],[32,34,["H6065"]],[34,36,["H5232"]],[36,39,["H613"]]]},{"k":12200,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,5,["H430"]],[5,8,["H1"]],[8,9,["H834"]],[9,11,["H5414"]],[11,16,["H2063"]],[16,19,["H4428"]],[19,20,["H3820"]],[20,22,["H6286","(H853)"]],[22,24,["H1004"]],[24,27,["H3068"]],[27,28,["H834"]],[28,31,["H3389"]]]},{"k":12201,"v":[[0,3,["H5186"]],[3,4,["H2617"]],[4,5,["H5921"]],[5,7,["H6440"]],[7,9,["H4428"]],[9,12,["H3289"]],[12,15,["H3605"]],[15,17,["H4428"]],[17,18,["H1368"]],[18,19,["H8269"]],[19,21,["H589"]],[21,23,["H2388"]],[23,26,["H3027"]],[26,29,["H3068"]],[29,31,["H430"]],[31,33,["H5921"]],[33,38,["H6908"]],[38,41,["H4480","H3478"]],[41,43,["H7218"]],[43,46,["H5927"]],[46,47,["H5973"]],[47,48,[]]]},{"k":12202,"v":[[0,1,["H428"]],[1,5,["H7218"]],[5,8,["H1"]],[8,13,["H3187"]],[13,18,["H5927"]],[18,19,["H5973"]],[19,22,["H4480","H894"]],[22,25,["H4438"]],[25,27,["H783"]],[27,29,["H4428"]]]},{"k":12203,"v":[[0,3,["H4480","H1121"]],[3,5,["H6372"]],[5,6,["H1648"]],[6,9,["H4480","H1121"]],[9,11,["H385"]],[11,12,["H1840"]],[12,15,["H4480","H1121"]],[15,17,["H1732"]],[17,18,["H2407"]]]},{"k":12204,"v":[[0,3,["H4480","H1121"]],[3,5,["H7935"]],[5,8,["H4480","H1121"]],[8,10,["H6551"]],[10,11,["H2148"]],[11,13,["H5973"]],[13,18,["H3187"]],[18,21,["H2145"]],[21,23,["H3967"]],[23,25,["H2572"]]]},{"k":12205,"v":[[0,3,["H4480","H1121"]],[3,5,["H6355"]],[5,6,["H454"]],[6,8,["H1121"]],[8,10,["H2228"]],[10,12,["H5973"]],[12,15,["H3967"]],[15,16,["H2145"]]]},{"k":12206,"v":[[0,3,["H4480","H1121"]],[3,5,["H7935"]],[5,7,["H1121"]],[7,9,["H3166"]],[9,11,["H5973"]],[11,13,["H7969"]],[13,14,["H3967"]],[14,15,["H2145"]]]},{"k":12207,"v":[[0,3,["H4480","H1121"]],[3,6,["H5720"]],[6,7,["H5651"]],[7,9,["H1121"]],[9,11,["H3083"]],[11,13,["H5973"]],[13,15,["H2572"]],[15,16,["H2145"]]]},{"k":12208,"v":[[0,4,["H4480","H1121"]],[4,6,["H5867"]],[6,7,["H3470"]],[7,9,["H1121"]],[9,11,["H6271"]],[11,13,["H5973"]],[13,15,["H7657"]],[15,16,["H2145"]]]},{"k":12209,"v":[[0,4,["H4480","H1121"]],[4,6,["H8203"]],[6,7,["H2069"]],[7,9,["H1121"]],[9,11,["H4317"]],[11,13,["H5973"]],[13,15,["H8084"]],[15,16,["H2145"]]]},{"k":12210,"v":[[0,3,["H4480","H1121"]],[3,5,["H3097"]],[5,6,["H5662"]],[6,8,["H1121"]],[8,10,["H3171"]],[10,12,["H5973"]],[12,15,["H3967"]],[15,17,["H8083","H6240"]],[17,18,["H2145"]]]},{"k":12211,"v":[[0,4,["H4480","H1121"]],[4,6,["H8019"]],[6,8,["H1121"]],[8,10,["H3131"]],[10,12,["H5973"]],[12,15,["H3967"]],[15,17,["H8346"]],[17,18,["H2145"]]]},{"k":12212,"v":[[0,4,["H4480","H1121"]],[4,6,["H893"]],[6,7,["H2148"]],[7,9,["H1121"]],[9,11,["H893"]],[11,13,["H5973"]],[13,15,["H6242"]],[15,17,["H8083"]],[17,18,["H2145"]]]},{"k":12213,"v":[[0,4,["H4480","H1121"]],[4,6,["H5803"]],[6,7,["H3110"]],[7,9,["H1121"]],[9,11,["H6997"]],[11,13,["H5973"]],[13,16,["H3967"]],[16,18,["H6235"]],[18,19,["H2145"]]]},{"k":12214,"v":[[0,5,["H4480","H1121","H314"]],[5,7,["H140"]],[7,9,["H8034"]],[9,11,["H428"]],[11,12,["H467"]],[12,13,["H3273"]],[13,15,["H8098"]],[15,17,["H5973"]],[17,19,["H8346"]],[19,20,["H2145"]]]},{"k":12215,"v":[[0,3,["H4480","H1121"]],[3,6,["H902"]],[6,7,["H5793"]],[7,9,["H2072"]],[9,11,["H5973"]],[11,13,["H7657"]],[13,14,["H2145"]]]},{"k":12216,"v":[[0,5,["H6908"]],[5,6,["H413"]],[6,8,["H5104"]],[8,10,["H935"]],[10,11,["H413"]],[11,12,["H163"]],[12,14,["H8033"]],[14,18,["H2583"]],[18,19,["H7969"]],[19,20,["H3117"]],[20,23,["H995"]],[23,25,["H5971"]],[25,28,["H3548"]],[28,30,["H4672"]],[30,31,["H8033"]],[31,32,["H3808"]],[32,35,["H4480","H1121"]],[35,37,["H3878"]]]},{"k":12217,"v":[[0,2,["H7971"]],[2,5,["H461"]],[5,7,["H740"]],[7,9,["H8098"]],[9,12,["H494"]],[12,15,["H3402"]],[15,18,["H494"]],[18,21,["H5416"]],[21,24,["H2148"]],[24,27,["H4918"]],[27,29,["H7218"]],[29,32,["H3114"]],[32,35,["H494"]],[35,38,["H995"]]]},{"k":12218,"v":[[0,6,["H6680","(H853)"]],[6,7,["H5921"]],[7,8,["H112"]],[8,10,["H7218"]],[10,13,["H4725"]],[13,14,["H3703"]],[14,17,["H7760","H6310"]],[17,19,["H1697"]],[19,22,["H1696"]],[22,23,["H413"]],[23,24,["H112"]],[24,28,["H251"]],[28,30,["H5411"]],[30,33,["H4725"]],[33,34,["H3703"]],[34,38,["H935"]],[38,41,["H8334"]],[41,44,["H1004"]],[44,47,["H430"]]]},{"k":12219,"v":[[0,4,["H2896"]],[4,5,["H3027"]],[5,8,["H430"]],[8,9,["H5921"]],[9,12,["H935"]],[12,15,["H376"]],[15,17,["H7922"]],[17,20,["H4480","H1121"]],[20,22,["H4249"]],[22,24,["H1121"]],[24,26,["H3878"]],[26,28,["H1121"]],[28,30,["H3478"]],[30,32,["H8274"]],[32,35,["H1121"]],[35,38,["H251"]],[38,39,["H8083","H6240"]]]},{"k":12220,"v":[[0,2,["H2811"]],[2,4,["H854"]],[4,6,["H3470"]],[6,9,["H4480","H1121"]],[9,11,["H4847"]],[11,13,["H251"]],[13,16,["H1121"]],[16,17,["H6242"]]]},{"k":12221,"v":[[0,2,["H4480"]],[2,4,["H5411"]],[4,5,["H7945"]],[5,6,["H1732"]],[6,9,["H8269"]],[9,11,["H5414"]],[11,14,["H5656"]],[14,17,["H3881"]],[17,19,["H3967"]],[19,21,["H6242"]],[21,22,["H5411"]],[22,23,["H3605"]],[23,27,["H5344"]],[27,29,["H8034"]]]},{"k":12222,"v":[[0,3,["H7121"]],[3,5,["H6685"]],[5,6,["H8033"]],[6,7,["H5921"]],[7,9,["H5104"]],[9,11,["H163"]],[11,16,["H6031"]],[16,17,["H6440"]],[17,19,["H430"]],[19,21,["H1245"]],[21,22,["H4480"]],[22,25,["H3477"]],[25,26,["H1870"]],[26,33,["H2945"]],[33,36,["H3605"]],[36,38,["H7399"]]]},{"k":12223,"v":[[0,1,["H3588"]],[1,4,["H954"]],[4,6,["H7592"]],[6,7,["H4480"]],[7,9,["H4428"]],[9,13,["H2428"]],[13,15,["H6571"]],[15,17,["H5826"]],[17,21,["H4480","H341"]],[21,24,["H1870"]],[24,25,["H3588"]],[25,28,["H559"]],[28,31,["H4428"]],[31,32,["H559"]],[32,34,["H3027"]],[34,37,["H430"]],[37,39,["H5921"]],[39,40,["H3605"]],[40,43,["H2896"]],[43,45,["H1245"]],[45,49,["H5797"]],[49,52,["H639"]],[52,54,["H5921"]],[54,55,["H3605"]],[55,58,["H5800"]],[58,59,[]]]},{"k":12224,"v":[[0,3,["H6684"]],[3,5,["H1245"]],[5,7,["H4480","H430"]],[7,8,["H5921"]],[8,9,["H2063"]],[9,13,["H6279"]],[13,15,[]]]},{"k":12225,"v":[[0,3,["H914"]],[3,4,["H8147","H6240"]],[4,7,["H4480","H8269"]],[7,10,["H3548"]],[10,11,["H8274"]],[11,12,["H2811"]],[12,14,["H6235"]],[14,17,["H4480","H251"]],[17,18,["H5973"]],[18,19,[]]]},{"k":12226,"v":[[0,2,["H8254"]],[2,4,["(H853)"]],[4,6,["H3701"]],[6,9,["H2091"]],[9,12,["H3627"]],[12,15,["H8641"]],[15,18,["H1004"]],[18,21,["H430"]],[21,24,["H4428"]],[24,27,["H3289"]],[27,30,["H8269"]],[30,32,["H3605"]],[32,33,["H3478"]],[33,35,["H4672"]],[35,37,["H7311"]]]},{"k":12227,"v":[[0,3,["H8254"]],[3,4,["H5921"]],[4,6,["H3027"]],[6,7,["H8337"]],[7,8,["H3967"]],[8,10,["H2572"]],[10,11,["H3603"]],[11,13,["H3701"]],[13,15,["H3701"]],[15,16,["H3627"]],[16,18,["H3967"]],[18,19,["H3603"]],[19,22,["H2091"]],[22,24,["H3967"]],[24,25,["H3603"]]]},{"k":12228,"v":[[0,2,["H6242"]],[2,3,["H3713"]],[3,5,["H2091"]],[5,8,["H505"]],[8,9,["H150"]],[9,11,["H8147"]],[11,12,["H3627"]],[12,14,["H6668","H2896"]],[14,15,["H5178"]],[15,16,["H2530"]],[16,18,["H2091"]]]},{"k":12229,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H859"]],[6,8,["H6944"]],[8,11,["H3068"]],[11,13,["H3627"]],[13,15,["H6944"]],[15,19,["H3701"]],[19,22,["H2091"]],[22,26,["H5071"]],[26,29,["H3068"]],[29,30,["H430"]],[30,33,["H1"]]]},{"k":12230,"v":[[0,1,["H8245"]],[1,4,["H8104"]],[4,6,["H5704"]],[6,8,["H8254"]],[8,10,["H6440"]],[10,12,["H8269"]],[12,15,["H3548"]],[15,18,["H3881"]],[18,20,["H8269"]],[20,23,["H1"]],[23,25,["H3478"]],[25,27,["H3389"]],[27,30,["H3957"]],[30,33,["H1004"]],[33,36,["H3068"]]]},{"k":12231,"v":[[0,2,["H6901"]],[2,4,["H3548"]],[4,7,["H3881"]],[7,9,["H4948"]],[9,12,["H3701"]],[12,15,["H2091"]],[15,18,["H3627"]],[18,20,["H935"]],[20,23,["H3389"]],[23,26,["H1004"]],[26,29,["H430"]]]},{"k":12232,"v":[[0,3,["H5265"]],[3,6,["H4480","H5104"]],[6,8,["H163"]],[8,11,["H8147","H6240"]],[11,15,["H7223"]],[15,16,["H2320"]],[16,18,["H1980"]],[18,20,["H3389"]],[20,23,["H3027"]],[23,26,["H430"]],[26,27,["H1961"]],[27,28,["H5921"]],[28,32,["H5337"]],[32,36,["H4480","H3709"]],[36,39,["H341"]],[39,46,["H693"]],[46,47,["H5921"]],[47,49,["H1870"]]]},{"k":12233,"v":[[0,3,["H935"]],[3,5,["H3389"]],[5,7,["H3427"]],[7,8,["H8033"]],[8,9,["H7969"]],[9,10,["H3117"]]]},{"k":12234,"v":[[0,4,["H7243"]],[4,5,["H3117"]],[5,8,["H3701"]],[8,11,["H2091"]],[11,14,["H3627"]],[14,15,["H8254"]],[15,18,["H1004"]],[18,21,["H430"]],[21,22,["H5921"]],[22,24,["H3027"]],[24,26,["H4822"]],[26,28,["H1121"]],[28,30,["H223"]],[30,32,["H3548"]],[32,34,["H5973"]],[34,37,["H499"]],[37,39,["H1121"]],[39,41,["H6372"]],[41,43,["H5973"]],[43,46,["H3107"]],[46,48,["H1121"]],[48,50,["H3442"]],[50,52,["H5129"]],[52,54,["H1121"]],[54,56,["H1131"]],[56,57,["H3881"]]]},{"k":12235,"v":[[0,2,["H4557"]],[2,5,["H4948"]],[5,8,["H3605"]],[8,10,["H3605"]],[10,12,["H4948"]],[12,14,["H3789"]],[14,16,["H1931"]],[16,17,["H6256"]]]},{"k":12236,"v":[[0,3,["H1121"]],[3,10,["H1473"]],[10,13,["H935"]],[13,17,["H4480","H7628"]],[17,18,["H7126"]],[18,20,["H5930"]],[20,23,["H430"]],[23,25,["H3478"]],[25,26,["H8147","H6240"]],[26,27,["H6499"]],[27,28,["H5921"]],[28,29,["H3605"]],[29,30,["H3478"]],[30,31,["H8673"]],[31,33,["H8337"]],[33,34,["H352"]],[34,35,["H7657"]],[35,37,["H7651"]],[37,38,["H3532"]],[38,39,["H8147","H6240"]],[39,41,["H6842"]],[41,45,["H2403"]],[45,46,["H3605"]],[46,51,["H5930"]],[51,54,["H3068"]]]},{"k":12237,"v":[[0,3,["H5414","(H853)"]],[3,5,["H4428"]],[5,6,["H1881"]],[6,9,["H4428"]],[9,10,["H323"]],[10,14,["H6346"]],[14,17,["H5676"]],[17,19,["H5104"]],[19,22,["H5375","(H853)"]],[22,24,["H5971"]],[24,27,["H1004"]],[27,29,["H430"]]]},{"k":12238,"v":[[0,4,["H428"]],[4,6,["H3615"]],[6,8,["H8269"]],[8,9,["H5066"]],[9,10,["H413"]],[10,12,["H559"]],[12,14,["H5971"]],[14,16,["H3478"]],[16,19,["H3548"]],[19,22,["H3881"]],[22,24,["H3808"]],[24,26,["H914"]],[26,29,["H4480","H5971"]],[29,32,["H776"]],[32,37,["H8441"]],[37,41,["H3669"]],[41,43,["H2850"]],[43,45,["H6522"]],[45,47,["H2983"]],[47,49,["H5984"]],[49,51,["H4125"]],[51,53,["H4713"]],[53,56,["H567"]]]},{"k":12239,"v":[[0,1,["H3588"]],[1,4,["H5375"]],[4,7,["H4480","H1323"]],[7,13,["H1121"]],[13,17,["H6944"]],[17,18,["H2233"]],[18,21,["H6148"]],[21,24,["H5971"]],[24,27,["H776"]],[27,30,["H3027"]],[30,33,["H8269"]],[33,35,["H5461"]],[35,37,["H1961"]],[37,38,["H7223"]],[38,40,["H2088"]],[40,41,["H4604"]]]},{"k":12240,"v":[[0,4,["H8085","(H853)"]],[4,5,["H2088"]],[5,6,["H1697"]],[6,8,["H7167","(H853)"]],[8,10,["H899"]],[10,13,["H4598"]],[13,16,["H4803"]],[16,18,["H4480","H8181"]],[18,21,["H7218"]],[21,25,["H2206"]],[25,28,["H3427"]],[28,29,["H8074"]]]},{"k":12241,"v":[[0,3,["H622"]],[3,4,["H413"]],[4,7,["H3605"]],[7,9,["H2730"]],[9,12,["H1697"]],[12,15,["H430"]],[15,17,["H3478"]],[17,18,["H5921"]],[18,21,["H4604"]],[21,28,["H1473"]],[28,30,["H589"]],[30,31,["H3427"]],[31,32,["H8074"]],[32,33,["H5704"]],[33,35,["H6153"]],[35,36,["H4503"]]]},{"k":12242,"v":[[0,4,["H6153"]],[4,5,["H4503"]],[5,8,["H6965"]],[8,11,["H4480","H8589"]],[11,14,["H7167"]],[14,16,["H899"]],[16,19,["H4598"]],[19,21,["H3766"]],[21,22,["H5921"]],[22,24,["H1290"]],[24,27,["H6566"]],[27,29,["H3709"]],[29,30,["H413"]],[30,32,["H3068"]],[32,34,["H430"]]]},{"k":12243,"v":[[0,2,["H559"]],[2,5,["H430"]],[5,8,["H954"]],[8,10,["H3637"]],[10,13,["H7311"]],[13,15,["H6440"]],[15,16,["H413"]],[16,19,["H430"]],[19,20,["H3588"]],[20,22,["H5771"]],[22,24,["H7235"]],[24,25,["H4605"]],[25,27,["H7218"]],[27,30,["H819"]],[30,33,["H1431"]],[33,34,["H5704"]],[34,36,["H8064"]]]},{"k":12244,"v":[[0,3,["H4480","H3117"]],[3,6,["H1"]],[6,8,["H587"]],[8,12,["H1419"]],[12,13,["H819"]],[13,14,["H5704"]],[14,15,["H2088"]],[15,16,["H3117"]],[16,20,["H5771"]],[20,22,["H587"]],[22,24,["H4428"]],[24,27,["H3548"]],[27,29,["H5414"]],[29,32,["H3027"]],[32,35,["H4428"]],[35,38,["H776"]],[38,41,["H2719"]],[41,43,["H7628"]],[43,47,["H961"]],[47,50,["H1322"]],[50,52,["H6440"]],[52,56,["H2088"]],[56,57,["H3117"]]]},{"k":12245,"v":[[0,2,["H6258"]],[2,5,["H4592"]],[5,6,["H7281"]],[6,7,["H8467"]],[7,9,["H1961"]],[9,11,["H4480","H854"]],[11,13,["H3068"]],[13,15,["H430"]],[15,17,["H7604"]],[17,22,["H6413"]],[22,25,["H5414"]],[25,28,["H3489"]],[28,31,["H6944"]],[31,32,["H4725"]],[32,35,["H430"]],[35,37,["H215"]],[37,39,["H5869"]],[39,41,["H5414"]],[41,44,["H4592"]],[44,45,["H4241"]],[45,48,["H5659"]]]},{"k":12246,"v":[[0,1,["H3588"]],[1,2,["H587"]],[2,4,["H5650"]],[4,7,["H430"]],[7,9,["H3808"]],[9,10,["H5800"]],[10,14,["H5659"]],[14,17,["H5186"]],[17,18,["H2617"]],[18,19,["H5921"]],[19,23,["H6440"]],[23,26,["H4428"]],[26,28,["H6539"]],[28,30,["H5414"]],[30,33,["H4241"]],[33,36,["H7311","(H853)"]],[36,38,["H1004"]],[38,41,["H430"]],[41,44,["H5975","(H853)"]],[44,46,["H2723"]],[46,50,["H5414"]],[50,53,["H1447"]],[53,55,["H3063"]],[55,58,["H3389"]]]},{"k":12247,"v":[[0,2,["H6258"]],[2,5,["H430"]],[5,6,["H4100"]],[6,9,["H559"]],[9,10,["H310"]],[10,11,["H2063"]],[11,12,["H3588"]],[12,15,["H5800"]],[15,17,["H4687"]]]},{"k":12248,"v":[[0,1,["H834"]],[1,4,["H6680"]],[4,5,["H3027"]],[5,7,["H5650"]],[7,9,["H5030"]],[9,10,["H559"]],[10,12,["H776"]],[12,14,["H834"]],[14,15,["H859"]],[15,16,["H935"]],[16,18,["H3423"]],[18,22,["H5079"]],[22,23,["H776"]],[23,26,["H5079"]],[26,29,["H5971"]],[29,32,["H776"]],[32,35,["H8441"]],[35,36,["H834"]],[36,38,["H4390"]],[38,42,["H4480","H6310"]],[42,43,["H413"]],[43,44,["H6310"]],[44,47,["H2932"]]]},{"k":12249,"v":[[0,1,["H6258"]],[1,3,["H5414"]],[3,4,["H408"]],[4,6,["H1323"]],[6,9,["H1121"]],[9,10,["H408"]],[10,11,["H5375"]],[11,13,["H1323"]],[13,16,["H1121"]],[16,17,["H3808"]],[17,18,["H1875"]],[18,20,["H7965"]],[20,23,["H2896"]],[23,25,["H5704","H5769"]],[25,26,["H4616"]],[26,30,["H2388"]],[30,32,["H398","(H853)"]],[32,34,["H2898"]],[34,37,["H776"]],[37,43,["H3423"]],[43,46,["H1121"]],[46,48,["H5704","H5769"]]]},{"k":12250,"v":[[0,2,["H310"]],[2,3,["H3605"]],[3,6,["H935"]],[6,7,["H5921"]],[7,11,["H7451"]],[11,12,["H4639"]],[12,16,["H1419"]],[16,17,["H819"]],[17,18,["H3588"]],[18,20,["H859"]],[20,22,["H430"]],[22,24,["H2820"]],[24,26,["H4295"]],[26,29,["H4480","H5771"]],[29,33,["H5414"]],[33,36,["H6413"]],[36,38,["H2063"]]]},{"k":12251,"v":[[0,3,["H7725"]],[3,4,["H6565"]],[4,6,["H4687"]],[6,10,["H2859"]],[10,13,["H5971"]],[13,15,["H428"]],[15,16,["H8441"]],[16,18,["H3808"]],[18,21,["H599"]],[21,24,["H5704"]],[24,27,["H3615"]],[27,34,["H369"]],[34,35,["H7611"]],[35,37,["H6413"]]]},{"k":12252,"v":[[0,2,["H3068"]],[2,3,["H430"]],[3,5,["H3478"]],[5,6,["H859"]],[6,8,["H6662"]],[8,9,["H3588"]],[9,11,["H7604"]],[11,13,["H6413"]],[13,17,["H2063"]],[17,18,["H3117"]],[18,19,["H2009"]],[19,22,["H6440"]],[22,26,["H819"]],[26,27,["H3588"]],[27,29,["H369"]],[29,30,["H5975"]],[30,31,["H6440"]],[31,33,["H5921"]],[33,35,["H2088"]]]},{"k":12253,"v":[[0,3,["H5830"]],[3,5,["H6419"]],[5,10,["H3034"]],[10,11,["H1058"]],[11,15,["H5307"]],[15,16,["H6440"]],[16,18,["H1004"]],[18,20,["H430"]],[20,22,["H6908"]],[22,23,["H413"]],[23,27,["H4480","H3478"]],[27,29,["H3966"]],[29,30,["H7227"]],[30,31,["H6951"]],[31,33,["H376"]],[33,35,["H802"]],[35,37,["H3206"]],[37,38,["H3588"]],[38,40,["H5971"]],[40,41,["H1058"]],[41,43,["H7235","H1059"]]]},{"k":12254,"v":[[0,2,["H7935"]],[2,4,["H1121"]],[4,6,["H3171"]],[6,10,["H4480","H1121"]],[10,12,["H5867"]],[12,13,["H6030"]],[13,15,["H559"]],[15,17,["H5830"]],[17,18,["H587"]],[18,20,["H4603"]],[20,23,["H430"]],[23,26,["H3427"]],[26,27,["H5237"]],[27,28,["H802"]],[28,31,["H4480","H5971"]],[31,34,["H776"]],[34,36,["H6258"]],[36,38,["H3426"]],[38,39,["H4723"]],[39,41,["H3478"]],[41,42,["H5921"]],[42,43,["H2063"]],[43,44,[]]]},{"k":12255,"v":[[0,1,["H6258"]],[1,5,["H3772"]],[5,7,["H1285"]],[7,10,["H430"]],[10,13,["H3318"]],[13,14,["H3605"]],[14,16,["H802"]],[16,21,["H3205"]],[21,22,["H4480"]],[22,27,["H6098"]],[27,30,["H136"]],[30,35,["H2730"]],[35,38,["H4687"]],[38,41,["H430"]],[41,46,["H6213"]],[46,50,["H8451"]]]},{"k":12256,"v":[[0,1,["H6965"]],[1,2,["H3588"]],[2,4,["H1697"]],[4,6,["H5921"]],[6,8,["H587"]],[8,12,["H5973"]],[12,17,["H2388"]],[17,19,["H6213"]],[19,20,[]]]},{"k":12257,"v":[[0,2,["H6965"]],[2,3,["H5830"]],[3,5,["(H853)"]],[5,7,["H8269"]],[7,8,["H3548"]],[8,10,["H3881"]],[10,12,["H3605"]],[12,13,["H3478"]],[13,15,["H7650"]],[15,19,["H6213"]],[19,22,["H2088"]],[22,23,["H1697"]],[23,26,["H7650"]]]},{"k":12258,"v":[[0,2,["H5830"]],[2,4,["H6965"]],[4,6,["H4480","H6440"]],[6,8,["H1004"]],[8,10,["H430"]],[10,12,["H1980"]],[12,13,["H413"]],[13,15,["H3957"]],[15,17,["H3076"]],[17,19,["H1121"]],[19,21,["H475"]],[21,25,["H1980"]],[25,26,["H8033"]],[26,29,["H398"]],[29,30,["H3808"]],[30,31,["H3899"]],[31,32,["H3808"]],[32,33,["H8354"]],[33,34,["H4325"]],[34,35,["H3588"]],[35,37,["H56"]],[37,38,["H5921"]],[38,41,["H4604"]],[41,48,["H1473"]]]},{"k":12259,"v":[[0,4,["H5674","H6963"]],[4,6,["H3063"]],[6,8,["H3389"]],[8,10,["H3605"]],[10,12,["H1121"]],[12,15,["H1473"]],[15,21,["H6908"]],[21,23,["H3389"]]]},{"k":12260,"v":[[0,3,["H3605","H834"]],[3,5,["H3808"]],[5,6,["H935"]],[6,8,["H7969"]],[8,9,["H3117"]],[9,13,["H6098"]],[13,16,["H8269"]],[16,19,["H2205"]],[19,20,["H3605"]],[20,22,["H7399"]],[22,25,["H2763"]],[25,27,["H1931"]],[27,28,["H914"]],[28,31,["H4480","H6951"]],[31,38,["H1473"]]]},{"k":12261,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,6,["H3063"]],[6,8,["H1144"]],[8,11,["H6908"]],[11,13,["H3389"]],[13,15,["H7969"]],[15,16,["H3117"]],[16,17,["H1931"]],[17,20,["H8671"]],[20,21,["H2320"]],[21,24,["H6242"]],[24,28,["H2320"]],[28,30,["H3605"]],[30,32,["H5971"]],[32,33,["H3427"]],[33,36,["H7339"]],[36,39,["H1004"]],[39,41,["H430"]],[41,42,["H7460"]],[42,43,["H5921"]],[43,46,["H1697"]],[46,51,["H4480","H1653"]]]},{"k":12262,"v":[[0,2,["H5830"]],[2,4,["H3548"]],[4,6,["H6965"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H859"]],[11,13,["H4603"]],[13,16,["H3427"]],[16,17,["H5237"]],[17,18,["H802"]],[18,20,["H3254","H5921"]],[20,22,["H819"]],[22,24,["H3478"]]]},{"k":12263,"v":[[0,1,["H6258"]],[1,3,["H5414"]],[3,4,["H8426"]],[4,7,["H3068"]],[7,8,["H430"]],[8,11,["H1"]],[11,13,["H6213"]],[13,15,["H7522"]],[15,18,["H914"]],[18,21,["H4480","H5971"]],[21,24,["H776"]],[24,26,["H4480"]],[26,28,["H5237"]],[28,29,["H802"]]]},{"k":12264,"v":[[0,2,["H3605"]],[2,4,["H6951"]],[4,5,["H6030"]],[5,7,["H559"]],[7,10,["H1419"]],[10,11,["H6963"]],[11,15,["H1697","H5921"]],[15,16,["H3651"]],[16,19,["H6213"]]]},{"k":12265,"v":[[0,1,["H61"]],[1,3,["H5971"]],[3,5,["H7227"]],[5,10,["H6256"]],[10,13,["H1653"]],[13,17,["H369"]],[17,18,["H3581"]],[18,20,["H5975"]],[20,21,["H2351"]],[21,22,["H3808"]],[22,26,["H4399"]],[26,28,["H259"]],[28,29,["H3117"]],[29,30,["H3808"]],[30,31,["H8147"]],[31,32,["H3588"]],[32,35,["H7235"]],[35,38,["H6586"]],[38,40,["H2088"]],[40,41,["H1697"]]]},{"k":12266,"v":[[0,2,["H4994"]],[2,4,["H8269"]],[4,6,["H3605"]],[6,8,["H6951"]],[8,9,["H5975"]],[9,12,["H3605"]],[12,14,["H834"]],[14,16,["H3427"]],[16,17,["H5237"]],[17,18,["H802"]],[18,21,["H5892"]],[21,22,["H935"]],[22,24,["H2163"]],[24,25,["H6256"]],[25,27,["H5973"]],[27,30,["H2205"]],[30,33,["H5892","H5892"]],[33,36,["H8199"]],[36,38,["H5704"]],[38,40,["H2740"]],[40,41,["H639"]],[41,44,["H430"]],[44,45,["H5704"]],[45,46,["H2088"]],[46,47,["H1697"]],[47,49,["H7725"]],[49,50,["H4480"]],[50,51,[]]]},{"k":12267,"v":[[0,1,["H389"]],[1,2,["H3083"]],[2,4,["H1121"]],[4,6,["H6214"]],[6,8,["H3167"]],[8,10,["H1121"]],[10,12,["H8616"]],[12,14,["H5975"]],[14,15,["H5921"]],[15,16,["H2063"]],[16,19,["H4918"]],[19,21,["H7678"]],[21,23,["H3881"]],[23,24,["H5826"]],[24,25,[]]]},{"k":12268,"v":[[0,3,["H1121"]],[3,6,["H1473"]],[6,7,["H6213"]],[7,8,["H3651"]],[8,10,["H5830"]],[10,12,["H3548"]],[12,14,["H376"]],[14,15,["H7218"]],[15,18,["H1"]],[18,21,["H1004"]],[21,24,["H1"]],[24,26,["H3605"]],[26,31,["H8034"]],[31,33,["H914"]],[33,36,["H3427"]],[36,39,["H259"]],[39,40,["H3117"]],[40,43,["H6224"]],[43,44,["H2320"]],[44,46,["H1875"]],[46,48,["H1697"]]]},{"k":12269,"v":[[0,5,["H3615"]],[5,7,["H3605"]],[7,9,["H376"]],[9,12,["H3427"]],[12,13,["H5237"]],[13,14,["H802"]],[14,15,["H5704"]],[15,17,["H259"]],[17,18,["H3117"]],[18,21,["H7223"]],[21,22,["H2320"]]]},{"k":12270,"v":[[0,4,["H4480","H1121"]],[4,7,["H3548"]],[7,10,["H4672"]],[10,11,["H834"]],[11,13,["H3427"]],[13,14,["H5237"]],[14,15,["H802"]],[15,19,["H4480","H1121"]],[19,21,["H3442"]],[21,23,["H1121"]],[23,25,["H3136"]],[25,28,["H251"]],[28,29,["H4641"]],[29,31,["H461"]],[31,33,["H3402"]],[33,35,["H1436"]]]},{"k":12271,"v":[[0,3,["H5414"]],[3,5,["H3027"]],[5,10,["H3318"]],[10,12,["H802"]],[12,15,["H818"]],[15,19,["H352"]],[19,22,["H6629"]],[22,23,["H5921"]],[23,25,["H819"]]]},{"k":12272,"v":[[0,4,["H4480","H1121"]],[4,6,["H564"]],[6,7,["H2607"]],[7,9,["H2069"]]]},{"k":12273,"v":[[0,4,["H4480","H1121"]],[4,6,["H2766"]],[6,7,["H4641"]],[7,9,["H452"]],[9,11,["H8098"]],[11,13,["H3171"]],[13,15,["H5818"]]]},{"k":12274,"v":[[0,4,["H4480","H1121"]],[4,6,["H6583"]],[6,7,["H454"]],[7,8,["H4641"]],[8,9,["H3458"]],[9,10,["H5417"]],[10,11,["H3107"]],[11,13,["H501"]]]},{"k":12275,"v":[[0,2,["H4480"]],[2,4,["H3881"]],[4,5,["H3107"]],[5,7,["H8096"]],[7,9,["H7041"]],[9,11,["H1931"]],[11,13,["H7042"]],[13,14,["H6611"]],[14,15,["H3063"]],[15,17,["H461"]]]},{"k":12276,"v":[[0,1,["H4480"]],[1,3,["H7891"]],[3,5,["H475"]],[5,7,["H4480"]],[7,9,["H7778"]],[9,10,["H7967"]],[10,12,["H2928"]],[12,14,["H221"]]]},{"k":12277,"v":[[0,3,["H4480","H3478"]],[3,6,["H4480","H1121"]],[6,8,["H6551"]],[8,9,["H7422"]],[9,11,["H3150"]],[11,13,["H4441"]],[13,15,["H4326"]],[15,17,["H499"]],[17,19,["H4441"]],[19,21,["H1141"]]]},{"k":12278,"v":[[0,4,["H4480","H1121"]],[4,6,["H5867"]],[6,7,["H4983"]],[7,8,["H2148"]],[8,10,["H3171"]],[10,12,["H5660"]],[12,14,["H3406"]],[14,16,["H452"]]]},{"k":12279,"v":[[0,4,["H4480","H1121"]],[4,6,["H2240"]],[6,7,["H454"]],[7,8,["H475"]],[8,9,["H4983"]],[9,11,["H3406"]],[11,13,["H2066"]],[13,15,["H5819"]]]},{"k":12280,"v":[[0,3,["H4480","H1121"]],[3,6,["H893"]],[6,7,["H3076"]],[7,8,["H2608"]],[8,9,["H2079"]],[9,11,["H6270"]]]},{"k":12281,"v":[[0,4,["H4480","H1121"]],[4,6,["H1137"]],[6,7,["H4918"]],[7,8,["H4409"]],[8,10,["H5718"]],[10,11,["H3437"]],[11,13,["H7594"]],[13,15,["H3406"]]]},{"k":12282,"v":[[0,4,["H4480","H1121"]],[4,6,["H6355"]],[6,7,["H5733"]],[7,9,["H3636"]],[9,10,["H1141"]],[10,11,["H4641"]],[11,12,["H4983"]],[12,13,["H1212"]],[13,15,["H1131"]],[15,17,["H4519"]]]},{"k":12283,"v":[[0,4,["H1121"]],[4,6,["H2766"]],[6,7,["H461"]],[7,8,["H3449"]],[8,9,["H4441"]],[9,10,["H8098"]],[10,11,["H8095"]]]},{"k":12284,"v":[[0,1,["H1144"]],[1,2,["H4409"]],[2,4,["H8114"]]]},{"k":12285,"v":[[0,3,["H4480","H1121"]],[3,5,["H2828"]],[5,6,["H4982"]],[6,7,["H4992"]],[7,8,["H2066"]],[8,9,["H467"]],[9,10,["H3413"]],[10,11,["H4519"]],[11,13,["H8096"]]]},{"k":12286,"v":[[0,3,["H4480","H1121"]],[3,5,["H1137"]],[5,6,["H4572"]],[6,7,["H6019"]],[7,9,["H177"]]]},{"k":12287,"v":[[0,1,["H1141"]],[1,2,["H912"]],[2,3,["H3622"]]]},{"k":12288,"v":[[0,1,["H2057"]],[1,2,["H4822"]],[2,3,["H475"]]]},{"k":12289,"v":[[0,1,["H4983"]],[1,2,["H4982"]],[2,4,["H3299"]]]},{"k":12290,"v":[[0,2,["H1137"]],[2,4,["H1131"]],[4,5,["H8096"]]]},{"k":12291,"v":[[0,2,["H8018"]],[2,4,["H5416"]],[4,6,["H5718"]]]},{"k":12292,"v":[[0,1,["H4367"]],[1,2,["H8343"]],[2,3,["H8298"]]]},{"k":12293,"v":[[0,1,["H5832"]],[1,3,["H8018"]],[3,4,["H8114"]]]},{"k":12294,"v":[[0,1,["H7967"]],[1,2,["H568"]],[2,4,["H3130"]]]},{"k":12295,"v":[[0,3,["H4480","H1121"]],[3,5,["H5015"]],[5,6,["H3273"]],[6,7,["H4993"]],[7,8,["H2066"]],[8,9,["H2081"]],[9,10,["H3035"]],[10,12,["H3100"]],[12,13,["H1141"]]]},{"k":12296,"v":[[0,1,["H3605"]],[1,2,["H428"]],[2,4,["H5375"]],[4,5,["H5237"]],[5,6,["H802"]],[6,9,["H4480"]],[9,11,["H3426"]],[11,12,["H802"]],[12,16,["H7760"]],[16,17,["H1121"]]]},{"k":12297,"v":[[0,2,["H1697"]],[2,4,["H5166"]],[4,6,["H1121"]],[6,8,["H2446"]],[8,13,["H1961"]],[13,16,["H2320"]],[16,17,["H3691"]],[17,20,["H6242"]],[20,21,["H8141"]],[21,23,["H589"]],[23,24,["H1961"]],[24,26,["H7800"]],[26,28,["H1002"]]]},{"k":12298,"v":[[0,2,["H2607"]],[2,3,["H259"]],[3,6,["H4480","H251"]],[6,7,["H935"]],[7,8,["H1931"]],[8,11,["H376"]],[11,13,["H4480","H3063"]],[13,16,["H7592"]],[16,18,["H5921"]],[18,20,["H3064"]],[20,23,["H6413"]],[23,24,["H834"]],[24,26,["H7604"]],[26,27,["H4480"]],[27,29,["H7628"]],[29,31,["H5921"]],[31,32,["H3389"]]]},{"k":12299,"v":[[0,3,["H559"]],[3,7,["H7604"]],[7,8,["H834"]],[8,10,["H7604"]],[10,11,["H4480"]],[11,13,["H7628"]],[13,14,["H8033"]],[14,17,["H4082"]],[17,20,["H1419"]],[20,21,["H7451"]],[21,23,["H2781"]],[23,25,["H2346"]],[25,27,["H3389"]],[27,31,["H6555"]],[31,34,["H8179"]],[34,37,["H3341"]],[37,39,["H784"]]]},{"k":12300,"v":[[0,5,["H1961"]],[5,8,["H8085","(H853)"]],[8,9,["H428"]],[9,10,["H1697"]],[10,14,["H3427"]],[14,16,["H1058"]],[16,18,["H56"]],[18,20,["H3117"]],[20,22,["H1961","H6684"]],[22,24,["H6419"]],[24,25,["H6440"]],[25,27,["H430"]],[27,29,["H8064"]]]},{"k":12301,"v":[[0,2,["H559"]],[2,4,["H577"]],[4,7,["H3068"]],[7,8,["H430"]],[8,10,["H8064"]],[10,12,["H1419"]],[12,14,["H3372"]],[14,15,["H410"]],[15,17,["H8104"]],[17,18,["H1285"]],[18,20,["H2617"]],[20,24,["H157"]],[24,27,["H8104"]],[27,29,["H4687"]]]},{"k":12302,"v":[[0,3,["H241"]],[3,4,["H4994"]],[4,5,["H1961"]],[5,6,["H7183"]],[6,9,["H5869"]],[9,10,["H6605"]],[10,14,["H8085","H413"]],[14,16,["H8605"]],[16,19,["H5650"]],[19,20,["H834"]],[20,21,["H595"]],[21,22,["H6419"]],[22,23,["H6440"]],[23,25,["H3117"]],[25,26,["H3119"]],[26,28,["H3915"]],[28,29,["H5921"]],[29,31,["H1121"]],[31,33,["H3478"]],[33,35,["H5650"]],[35,37,["H3034","H5921"]],[37,39,["H2403"]],[39,42,["H1121"]],[42,44,["H3478"]],[44,45,["H834"]],[45,48,["H2398"]],[48,52,["H589"]],[52,55,["H1"]],[55,56,["H1004"]],[56,58,["H2398"]]]},{"k":12303,"v":[[0,5,["H2254","H2254"]],[5,10,["H3808"]],[10,11,["H8104","(H853)"]],[11,13,["H4687"]],[13,16,["H2706"]],[16,19,["H4941"]],[19,20,["H834"]],[20,22,["H6680","(H853)"]],[22,24,["H5650"]],[24,25,["H4872"]]]},{"k":12304,"v":[[0,1,["H2142"]],[1,3,["H4994"]],[3,4,["(H853)"]],[4,6,["H1697"]],[6,7,["H834"]],[7,9,["H6680","(H853)"]],[9,11,["H5650"]],[11,12,["H4872"]],[12,13,["H559"]],[13,15,["H859"]],[15,16,["H4603"]],[16,17,["H589"]],[17,21,["H6327","(H853)"]],[21,24,["H5971"]]]},{"k":12305,"v":[[0,4,["H7725"]],[4,5,["H413"]],[5,8,["H8104"]],[8,10,["H4687"]],[10,12,["H6213"]],[12,14,["H518"]],[14,16,["H1961"]],[16,20,["H5080"]],[20,24,["H7097"]],[24,27,["H8064"]],[27,31,["H6908"]],[31,34,["H4480","H8033"]],[34,37,["H935"]],[37,39,["H413"]],[39,41,["H4725"]],[41,42,["H834"]],[42,45,["H977"]],[45,47,["H7931","(H853)"]],[47,49,["H8034"]],[49,50,["H8033"]]]},{"k":12306,"v":[[0,2,["H1992"]],[2,5,["H5650"]],[5,8,["H5971"]],[8,9,["H834"]],[9,12,["H6299"]],[12,15,["H1419"]],[15,16,["H3581"]],[16,20,["H2389"]],[20,21,["H3027"]]]},{"k":12307,"v":[[0,2,["H136"]],[2,4,["H577"]],[4,7,["H4994"]],[7,9,["H241"]],[9,10,["H1961"]],[10,11,["H7183"]],[11,12,["H413"]],[12,14,["H8605"]],[14,17,["H5650"]],[17,19,["H413"]],[19,21,["H8605"]],[21,24,["H5650"]],[24,26,["H2655"]],[26,28,["H3372","(H853)"]],[28,30,["H8034"]],[30,32,["H6743"]],[32,34,["H4994"]],[34,37,["H5650"]],[37,39,["H3117"]],[39,41,["H5414"]],[41,43,["H7356"]],[43,46,["H6440"]],[46,48,["H2088"]],[48,49,["H376"]],[49,51,["H589"]],[51,52,["H1961"]],[52,54,["H4428"]],[54,55,["H4945"]]]},{"k":12308,"v":[[0,5,["H1961"]],[5,8,["H2320"]],[8,9,["H5212"]],[9,12,["H6242"]],[12,13,["H8141"]],[13,15,["H783"]],[15,17,["H4428"]],[17,19,["H3196"]],[19,21,["H6440"]],[21,26,["H5375","(H853)"]],[26,28,["H3196"]],[28,30,["H5414"]],[30,34,["H4428"]],[34,38,["H3808"]],[38,39,["H1961"]],[39,41,["H7451"]],[41,44,["H6440"]]]},{"k":12309,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H4069"]],[7,10,["H6440"]],[10,11,["H7451"]],[11,13,["H859"]],[13,15,["H369"]],[15,16,["H2470"]],[16,17,["H2088"]],[17,19,["H369"]],[19,21,["H3588","H518"]],[21,22,["H7455"]],[22,24,["H3820"]],[24,28,["H3966"]],[28,29,["H7235"]],[29,30,["H3372"]]]},{"k":12310,"v":[[0,2,["H559"]],[2,5,["H4428"]],[5,8,["H4428"]],[8,9,["H2421"]],[9,11,["H5769"]],[11,12,["H4069"]],[12,14,["H3808"]],[14,16,["H6440"]],[16,18,["H7489"]],[18,19,["H834"]],[19,21,["H5892"]],[21,23,["H1004"]],[23,26,["H1"]],[26,27,["H6913"]],[27,29,["H2720"]],[29,32,["H8179"]],[32,35,["H398"]],[35,37,["H784"]]]},{"k":12311,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,7,["H5921"]],[7,8,["H4100","H2088"]],[8,10,["H859"]],[10,12,["H1245"]],[12,15,["H6419"]],[15,16,["H413"]],[16,18,["H430"]],[18,20,["H8064"]]]},{"k":12312,"v":[[0,3,["H559"]],[3,6,["H4428"]],[6,7,["H518"]],[7,9,["H2895","H5921"]],[9,11,["H4428"]],[11,13,["H518"]],[13,15,["H5650"]],[15,18,["H3190"]],[18,21,["H6440"]],[21,22,["H834"]],[22,25,["H7971"]],[25,27,["H413"]],[27,28,["H3063"]],[28,29,["H413"]],[29,31,["H5892"]],[31,34,["H1"]],[34,35,["H6913"]],[35,39,["H1129"]],[39,40,[]]]},{"k":12313,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,8,["H7694"]],[8,10,["H3427"]],[10,11,["H681"]],[11,13,["H5704"]],[13,15,["H4970"]],[15,18,["H4109"]],[18,19,["H1961"]],[19,21,["H4970"]],[21,24,["H7725"]],[24,27,["H3190","H6440"]],[27,29,["H4428"]],[29,31,["H7971"]],[31,35,["H5414"]],[35,38,["H2165"]]]},{"k":12314,"v":[[0,3,["H559"]],[3,6,["H4428"]],[6,7,["H518"]],[7,9,["H2895","H5921"]],[9,11,["H4428"]],[11,13,["H107"]],[13,15,["H5414"]],[15,17,["H5921"]],[17,19,["H6346"]],[19,20,["H5676"]],[20,22,["H5104"]],[22,23,["H834"]],[23,28,["H5674"]],[28,29,["H5704","H834"]],[29,31,["H935"]],[31,32,["H413"]],[32,33,["H3063"]]]},{"k":12315,"v":[[0,3,["H107"]],[3,4,["H413"]],[4,5,["H623"]],[5,7,["H8104"]],[7,10,["H4428"]],[10,11,["H6508"]],[11,12,["H834"]],[12,15,["H5414"]],[15,17,["H6086"]],[17,20,["H7136"]],[20,21,["(H853)"]],[21,23,["H8179"]],[23,26,["H1002"]],[26,27,["H834"]],[27,31,["H1004"]],[31,35,["H2346"]],[35,38,["H5892"]],[38,42,["H1004"]],[42,43,["H834"]],[43,46,["H935"]],[46,47,["H413"]],[47,50,["H4428"]],[50,51,["H5414"]],[51,56,["H2896"]],[56,57,["H3027"]],[57,60,["H430"]],[60,61,["H5921"]],[61,62,[]]]},{"k":12316,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H6346"]],[6,7,["H5676"]],[7,9,["H5104"]],[9,11,["H5414"]],[11,12,["(H853)"]],[12,14,["H4428"]],[14,15,["H107"]],[15,18,["H4428"]],[18,20,["H7971"]],[20,21,["H8269"]],[21,24,["H2428"]],[24,26,["H6571"]],[26,27,["H5973"]],[27,28,[]]]},{"k":12317,"v":[[0,2,["H5571"]],[2,4,["H2772"]],[4,6,["H2900"]],[6,8,["H5650"]],[8,10,["H5984"]],[10,11,["H8085"]],[11,15,["H7489"]],[15,17,["H1419","H7451"]],[17,18,["H834"]],[18,21,["H935"]],[21,23,["H120"]],[23,25,["H1245"]],[25,27,["H2896"]],[27,30,["H1121"]],[30,32,["H3478"]]]},{"k":12318,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,5,["H3389"]],[5,7,["H1961"]],[7,8,["H8033"]],[8,9,["H7969"]],[9,10,["H3117"]]]},{"k":12319,"v":[[0,3,["H6965"]],[3,6,["H3915"]],[6,7,["H589"]],[7,10,["H4592"]],[10,11,["H376"]],[11,12,["H5973"]],[12,14,["H3808"]],[14,15,["H5046"]],[15,18,["H120"]],[18,19,["H4100"]],[19,21,["H430"]],[21,23,["H5414"]],[23,24,["H413"]],[24,26,["H3820"]],[26,28,["H6213"]],[28,30,["H3389"]],[30,31,["H369"]],[31,35,["H929"]],[35,36,["H5973"]],[36,38,["H3588","H518"]],[38,40,["H929"]],[40,41,["H834"]],[41,42,["H589"]],[42,43,["H7392"]],[43,44,[]]]},{"k":12320,"v":[[0,4,["H3318"]],[4,6,["H3915"]],[6,9,["H8179"]],[9,12,["H1516"]],[12,14,["H413","H6440"]],[14,16,["H8577"]],[16,17,["H5869"]],[17,19,["H413"]],[19,21,["H830"]],[21,22,["H8179"]],[22,24,["H1961","H7663"]],[24,26,["H2346"]],[26,28,["H3389"]],[28,29,["H834"]],[29,32,["H6555"]],[32,35,["H8179"]],[35,38,["H398"]],[38,40,["H784"]]]},{"k":12321,"v":[[0,4,["H5674"]],[4,5,["H413"]],[5,7,["H8179"]],[7,10,["H5869"]],[10,12,["H413"]],[12,14,["H4428"]],[14,15,["H1295"]],[15,19,["H369"]],[19,20,["H4725"]],[20,23,["H929"]],[23,26,["H8478"]],[26,29,["H5674"]]]},{"k":12322,"v":[[0,4,["H1961","H5927"]],[4,7,["H3915"]],[7,10,["H5158"]],[10,12,["H1961","H7663"]],[12,14,["H2346"]],[14,17,["H7725"]],[17,19,["H935"]],[19,22,["H8179"]],[22,25,["H1516"]],[25,28,["H7725"]]]},{"k":12323,"v":[[0,3,["H5461"]],[3,4,["H3045"]],[4,5,["H3808"]],[5,6,["H575"]],[6,8,["H1980"]],[8,10,["H4100"]],[10,11,["H589"]],[11,12,["H6213"]],[12,13,["H3808"]],[13,16,["H5704"]],[16,17,["H3651"]],[17,18,["H5046"]],[18,22,["H3064"]],[22,26,["H3548"]],[26,30,["H2715"]],[30,34,["H5461"]],[34,38,["H3499"]],[38,40,["H6213"]],[40,42,["H4399"]]]},{"k":12324,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H859"]],[6,7,["H7200"]],[7,9,["H7451"]],[9,10,["H834"]],[10,11,["H587"]],[11,14,["H834"]],[14,15,["H3389"]],[15,17,["H2720"]],[17,20,["H8179"]],[20,23,["H3341"]],[23,25,["H784"]],[25,26,["H1980"]],[26,31,["H1129","(H853)"]],[31,33,["H2346"]],[33,35,["H3389"]],[35,38,["H1961"]],[38,39,["H3808"]],[39,40,["H5750"]],[40,42,["H2781"]]]},{"k":12325,"v":[[0,3,["H5046"]],[3,5,["(H853)"]],[5,7,["H3027"]],[7,10,["H430"]],[10,11,["H834","H1931"]],[11,13,["H2896"]],[13,14,["H5921"]],[14,17,["H637"]],[17,19,["H4428"]],[19,20,["H1697"]],[20,21,["H834"]],[21,24,["H559"]],[24,29,["H559"]],[29,33,["H6965"]],[33,35,["H1129"]],[35,38,["H2388"]],[38,40,["H3027"]],[40,43,["H2896"]],[43,44,[]]]},{"k":12326,"v":[[0,3,["H5571"]],[3,5,["H2772"]],[5,7,["H2900"]],[7,9,["H5650"]],[9,11,["H5984"]],[11,13,["H1654"]],[13,15,["H6163"]],[15,16,["H8085"]],[16,22,["H3932"]],[22,24,["H959","H5921"]],[24,27,["H559"]],[27,28,["H4100"]],[28,30,["H2088"]],[30,31,["H1697"]],[31,32,["H834"]],[32,33,["H859"]],[33,34,["H6213"]],[34,36,["H859"]],[36,37,["H4775"]],[37,38,["H5921"]],[38,40,["H4428"]]]},{"k":12327,"v":[[0,2,["H7725","H1697"]],[2,6,["H559"]],[6,10,["H430"]],[10,12,["H8064"]],[12,13,["H1931"]],[13,15,["H6743"]],[15,18,["H587"]],[18,20,["H5650"]],[20,22,["H6965"]],[22,24,["H1129"]],[24,28,["H369"]],[28,29,["H2506"]],[29,31,["H6666"]],[31,33,["H2146"]],[33,35,["H3389"]]]},{"k":12328,"v":[[0,2,["H475"]],[2,4,["H1419"]],[4,5,["H3548"]],[5,7,["H6965"]],[7,10,["H251"]],[10,12,["H3548"]],[12,15,["H1129","(H853)"]],[15,17,["H6629"]],[17,18,["H8179"]],[18,19,["H1992"]],[19,20,["H6942"]],[20,24,["H5975"]],[24,26,["H1817"]],[26,30,["H5704"]],[30,32,["H4026"]],[32,34,["H3968"]],[34,36,["H6942"]],[36,38,["H5704"]],[38,40,["H4026"]],[40,42,["H2606"]]]},{"k":12329,"v":[[0,2,["H3027"]],[2,3,["H5921"]],[3,5,["H1129"]],[5,7,["H376"]],[7,9,["H3405"]],[9,11,["H3027"]],[11,12,["H5921"]],[12,14,["H1129"]],[14,15,["H2139"]],[15,17,["H1121"]],[17,19,["H566"]]]},{"k":12330,"v":[[0,3,["H1709"]],[3,4,["H8179"]],[4,7,["H1121"]],[7,9,["H5570"]],[9,10,["H1129"]],[10,11,["H1992"]],[11,15,["H7136"]],[15,19,["H5975"]],[19,21,["H1817"]],[21,24,["H4514"]],[24,28,["H1280"]],[28,29,[]]]},{"k":12331,"v":[[0,2,["H3027"]],[2,3,["H5921"]],[3,5,["H2388"]],[5,6,["H4822"]],[6,8,["H1121"]],[8,10,["H223"]],[10,12,["H1121"]],[12,14,["H6976"]],[14,16,["H3027"]],[16,17,["H5921"]],[17,19,["H2388"]],[19,20,["H4918"]],[20,22,["H1121"]],[22,24,["H1296"]],[24,26,["H1121"]],[26,28,["H4898"]],[28,30,["H3027"]],[30,31,["H5921"]],[31,33,["H2388"]],[33,34,["H6659"]],[34,36,["H1121"]],[36,38,["H1196"]]]},{"k":12332,"v":[[0,2,["H3027"]],[2,3,["H5921"]],[3,6,["H8621"]],[6,7,["H2388"]],[7,10,["H117"]],[10,11,["H935"]],[11,12,["H3808"]],[12,14,["H6677"]],[14,17,["H5656"]],[17,20,["H113"]]]},{"k":12333,"v":[[0,3,["H3465"]],[3,4,["H8179"]],[4,5,["H2388"]],[5,6,["H3111"]],[6,8,["H1121"]],[8,10,["H6454"]],[10,12,["H4918"]],[12,14,["H1121"]],[14,16,["H1152"]],[16,17,["H1992"]],[17,20,["H7136"]],[20,24,["H5975"]],[24,26,["H1817"]],[26,30,["H4514"]],[30,34,["H1280"]],[34,35,[]]]},{"k":12334,"v":[[0,2,["H3027"]],[2,3,["H5921"]],[3,5,["H2388"]],[5,6,["H4424"]],[6,8,["H1393"]],[8,10,["H3036"]],[10,12,["H4824"]],[12,14,["H376"]],[14,16,["H1391"]],[16,19,["H4709"]],[19,22,["H3678"]],[22,25,["H6346"]],[25,28,["H5676"]],[28,30,["H5104"]]]},{"k":12335,"v":[[0,1,["H3027"]],[1,2,["H5921"]],[2,4,["H2388"]],[4,5,["H5816"]],[5,7,["H1121"]],[7,9,["H2736"]],[9,12,["H6884"]],[12,13,["H3027"]],[13,14,["H5921"]],[14,17,["H2388"]],[17,18,["H2608"]],[18,20,["H1121"]],[20,25,["H7546"]],[25,28,["H5800"]],[28,29,["H3389"]],[29,30,["H5704"]],[30,32,["H7342"]],[32,33,["H2346"]]]},{"k":12336,"v":[[0,2,["H3027"]],[2,3,["H5921"]],[3,5,["H2388"]],[5,6,["H7509"]],[6,8,["H1121"]],[8,10,["H2354"]],[10,12,["H8269"]],[12,15,["H2677"]],[15,16,["H6418"]],[16,18,["H3389"]]]},{"k":12337,"v":[[0,2,["H3027"]],[2,3,["H5921"]],[3,5,["H2388"]],[5,6,["H3042"]],[6,8,["H1121"]],[8,10,["H2739"]],[10,13,["H5048"]],[13,15,["H1004"]],[15,17,["H3027"]],[17,18,["H5921"]],[18,20,["H2388"]],[20,21,["H2407"]],[21,23,["H1121"]],[23,25,["H2813"]]]},{"k":12338,"v":[[0,1,["H4441"]],[1,3,["H1121"]],[3,5,["H2766"]],[5,7,["H2815"]],[7,9,["H1121"]],[9,11,["H6355"]],[11,12,["H2388"]],[12,14,["H8145"]],[14,15,["H4060"]],[15,18,["H4026"]],[18,21,["H8574"]]]},{"k":12339,"v":[[0,2,["H3027"]],[2,3,["H5921"]],[3,5,["H2388"]],[5,6,["H7967"]],[6,8,["H1121"]],[8,10,["H3873"]],[10,12,["H8269"]],[12,15,["H2677"]],[15,16,["H6418"]],[16,18,["H3389"]],[18,19,["H1931"]],[19,22,["H1323"]]]},{"k":12340,"v":[[0,0,["(H853)"]],[0,2,["H1516"]],[2,3,["H8179"]],[3,4,["H2388"]],[4,5,["H2586"]],[5,8,["H3427"]],[8,10,["H2182"]],[10,11,["H1992"]],[11,12,["H1129"]],[12,16,["H5975"]],[16,18,["H1817"]],[18,21,["H4514"]],[21,25,["H1280"]],[25,29,["H505"]],[29,30,["H520"]],[30,33,["H2346"]],[33,34,["H5704"]],[34,36,["H830"]],[36,37,["H8179"]]]},{"k":12341,"v":[[0,3,["H830"]],[3,4,["H8179"]],[4,5,["H2388"]],[5,6,["H4441"]],[6,8,["H1121"]],[8,10,["H7394"]],[10,12,["H8269"]],[12,14,["H6418"]],[14,16,["H1021"]],[16,17,["H1931"]],[17,18,["H1129"]],[18,22,["H5975"]],[22,24,["H1817"]],[24,27,["H4514"]],[27,31,["H1280"]],[31,32,[]]]},{"k":12342,"v":[[0,3,["H8179"]],[3,6,["H5869"]],[6,7,["H2388"]],[7,8,["H7968"]],[8,10,["H1121"]],[10,12,["H3626"]],[12,14,["H8269"]],[14,16,["H6418"]],[16,18,["H4709"]],[18,19,["H1931"]],[19,20,["H1129"]],[20,23,["H2926"]],[23,27,["H5975"]],[27,29,["H1817"]],[29,32,["H4514"]],[32,36,["H1280"]],[36,40,["H2346"]],[40,43,["H1295"]],[43,45,["H7975"]],[45,48,["H4428"]],[48,49,["H1588"]],[49,51,["H5704"]],[51,53,["H4609"]],[53,56,["H3381"]],[56,59,["H4480","H5892"]],[59,61,["H1732"]]]},{"k":12343,"v":[[0,1,["H310"]],[1,3,["H2388"]],[3,4,["H5166"]],[4,6,["H1121"]],[6,8,["H5802"]],[8,10,["H8269"]],[10,13,["H2677"]],[13,14,["H6418"]],[14,16,["H1049"]],[16,17,["H5704"]],[17,21,["H5048"]],[21,23,["H6913"]],[23,25,["H1732"]],[25,27,["H5704"]],[27,29,["H1295"]],[29,32,["H6213"]],[32,34,["H5704"]],[34,36,["H1004"]],[36,39,["H1368"]]]},{"k":12344,"v":[[0,1,["H310"]],[1,3,["H2388"]],[3,5,["H3881"]],[5,6,["H7348"]],[6,8,["H1121"]],[8,10,["H1137"]],[10,11,["H3027"]],[11,12,["H5921"]],[12,14,["H2388"]],[14,15,["H2811"]],[15,17,["H8269"]],[17,20,["H2677"]],[20,21,["H6418"]],[21,23,["H7084"]],[23,26,["H6418"]]]},{"k":12345,"v":[[0,1,["H310"]],[1,3,["H2388"]],[3,5,["H251"]],[5,6,["H942"]],[6,8,["H1121"]],[8,10,["H2582"]],[10,12,["H8269"]],[12,15,["H2677"]],[15,16,["H6418"]],[16,18,["H7084"]]]},{"k":12346,"v":[[0,2,["H3027"]],[2,3,["H5921"]],[3,5,["H2388"]],[5,6,["H5829"]],[6,8,["H1121"]],[8,10,["H3442"]],[10,12,["H8269"]],[12,14,["H4709"]],[14,15,["H8145"]],[15,16,["H4060"]],[16,18,["H4480","H5048"]],[18,21,["H5927"]],[21,24,["H5402"]],[24,27,["H4740"]],[27,30,[]]]},{"k":12347,"v":[[0,1,["H310"]],[1,3,["H1263"]],[3,5,["H1121"]],[5,7,["H2079"]],[7,8,["H2734"]],[8,9,["H2388"]],[9,11,["H8145"]],[11,12,["H4060"]],[12,13,["H4480"]],[13,15,["H4740"]],[15,19,["H5704"]],[19,21,["H6607"]],[21,24,["H1004"]],[24,26,["H475"]],[26,28,["H1419"]],[28,29,["H3548"]]]},{"k":12348,"v":[[0,1,["H310"]],[1,3,["H2388"]],[3,4,["H4822"]],[4,6,["H1121"]],[6,8,["H223"]],[8,10,["H1121"]],[10,12,["H6976"]],[12,13,["H8145"]],[13,14,["H4060"]],[14,17,["H4480","H6607"]],[17,20,["H1004"]],[20,22,["H475"]],[22,24,["H5704"]],[24,26,["H8503"]],[26,29,["H1004"]],[29,31,["H475"]]]},{"k":12349,"v":[[0,2,["H310"]],[2,4,["H2388"]],[4,6,["H3548"]],[6,8,["H376"]],[8,11,["H3603"]]]},{"k":12350,"v":[[0,1,["H310"]],[1,3,["H2388"]],[3,4,["H1144"]],[4,6,["H2815"]],[6,8,["H5048"]],[8,10,["H1004"]],[10,11,["H310"]],[11,13,["H2388"]],[13,14,["H5838"]],[14,16,["H1121"]],[16,18,["H4641"]],[18,20,["H1121"]],[20,22,["H6055"]],[22,23,["H681"]],[23,25,["H1004"]]]},{"k":12351,"v":[[0,1,["H310"]],[1,3,["H2388"]],[3,4,["H1131"]],[4,6,["H1121"]],[6,8,["H2582"]],[8,9,["H8145"]],[9,10,["H4060"]],[10,13,["H4480","H1004"]],[13,15,["H5838"]],[15,16,["H5704"]],[16,18,["H4740"]],[18,23,["H5704"]],[23,25,["H6438"]]]},{"k":12352,"v":[[0,1,["H6420"]],[1,3,["H1121"]],[3,5,["H186"]],[5,7,["H4480","H5048"]],[7,9,["H4740"]],[9,15,["H4026"]],[15,18,["H3318"]],[18,21,["H4428"]],[21,22,["H5945"]],[22,23,["H4480","H1004"]],[23,24,["H834"]],[24,28,["H2691"]],[28,31,["H4307"]],[31,32,["H310"]],[32,34,["H6305"]],[34,36,["H1121"]],[36,38,["H6551"]]]},{"k":12353,"v":[[0,3,["H5411"]],[3,4,["H1961","H3427"]],[4,6,["H6077"]],[6,7,["H5704"]],[7,11,["H5048"]],[11,13,["H4325"]],[13,14,["H8179"]],[14,17,["H4217"]],[17,20,["H4026"]],[20,23,["H3318"]]]},{"k":12354,"v":[[0,1,["H310"]],[1,4,["H8621"]],[4,5,["H2388"]],[5,6,["H8145"]],[6,7,["H4060"]],[7,9,["H4480","H5048"]],[9,11,["H1419"]],[11,12,["H4026"]],[12,15,["H3318"]],[15,17,["H5704"]],[17,19,["H2346"]],[19,21,["H6077"]]]},{"k":12355,"v":[[0,2,["H4480","H5921"]],[2,4,["H5483"]],[4,5,["H8179"]],[5,6,["H2388"]],[6,8,["H3548"]],[8,10,["H376"]],[10,12,["H5048"]],[12,14,["H1004"]]]},{"k":12356,"v":[[0,1,["H310"]],[1,3,["H2388"]],[3,4,["H6659"]],[4,6,["H1121"]],[6,8,["H564"]],[8,10,["H5048"]],[10,12,["H1004"]],[12,13,["H310"]],[13,15,["H2388"]],[15,17,["H8098"]],[17,19,["H1121"]],[19,21,["H7935"]],[21,23,["H8104"]],[23,26,["H4217"]],[26,27,["H8179"]]]},{"k":12357,"v":[[0,1,["H310"]],[1,3,["H2388"]],[3,4,["H2608"]],[4,6,["H1121"]],[6,8,["H8018"]],[8,10,["H2586"]],[10,12,["H8345"]],[12,13,["H1121"]],[13,15,["H6764"]],[15,16,["H8145"]],[16,17,["H4060"]],[17,18,["H310"]],[18,20,["H2388"]],[20,21,["H4918"]],[21,23,["H1121"]],[23,25,["H1296"]],[25,27,["H5048"]],[27,29,["H5393"]]]},{"k":12358,"v":[[0,1,["H310"]],[1,3,["H2388"]],[3,4,["H4441"]],[4,6,["H6885"]],[6,7,["H1121"]],[7,8,["H5704"]],[8,10,["H1004"]],[10,13,["H5411"]],[13,17,["H7402"]],[17,19,["H5048"]],[19,21,["H8179"]],[21,22,["H4663"]],[22,24,["H5704"]],[24,27,["H5944"]],[27,30,["H6438"]]]},{"k":12359,"v":[[0,2,["H996"]],[2,5,["H5944"]],[5,8,["H6438"]],[8,11,["H6629"]],[11,12,["H8179"]],[12,13,["H2388"]],[13,15,["H6884"]],[15,18,["H7402"]]]},{"k":12360,"v":[[0,5,["H1961"]],[5,7,["H834"]],[7,8,["H5571"]],[8,9,["H8085"]],[9,10,["H3588"]],[10,11,["H587"]],[11,12,["H1129","(H853)"]],[12,14,["H2346"]],[14,17,["H2734"]],[17,21,["H7235","H3707"]],[21,23,["H3932","H5921"]],[23,25,["H3064"]]]},{"k":12361,"v":[[0,3,["H559"]],[3,4,["H6440"]],[4,6,["H251"]],[6,9,["H2428"]],[9,11,["H8111"]],[11,13,["H559"]],[13,14,["H4100"]],[14,15,["H6213"]],[15,17,["H537"]],[17,18,["H3064"]],[18,21,["H5800"]],[21,25,["H2076"]],[25,30,["H3615"]],[30,33,["H3117"]],[33,36,["H2421","(H853)"]],[36,38,["H68"]],[38,42,["H4480","H6194"]],[42,45,["H6083"]],[45,46,["H1992"]],[46,48,["H8313"]]]},{"k":12362,"v":[[0,2,["H2900"]],[2,4,["H5984"]],[4,6,["H681"]],[6,10,["H559"]],[10,11,["H1571"]],[11,13,["H834"]],[13,14,["H1992"]],[14,15,["H1129"]],[15,16,["H518"]],[16,18,["H7776"]],[18,20,["H5927"]],[20,25,["H6555"]],[25,27,["H68"]],[27,28,["H2346"]]]},{"k":12363,"v":[[0,1,["H8085"]],[1,4,["H430"]],[4,5,["H3588"]],[5,7,["H1961"]],[7,8,["H939"]],[8,10,["H7725"]],[10,12,["H2781"]],[12,13,["H413"]],[13,16,["H7218"]],[16,18,["H5414"]],[18,22,["H961"]],[22,25,["H776"]],[25,27,["H7633"]]]},{"k":12364,"v":[[0,2,["H3680","H5921"]],[2,3,["H408"]],[3,5,["H5771"]],[5,8,["H408"]],[8,10,["H2403"]],[10,13,["H4229"]],[13,15,["H4480","H6440"]],[15,17,["H3588"]],[17,23,["H3707"]],[23,24,["H5048"]],[24,26,["H1129"]]]},{"k":12365,"v":[[0,2,["H1129"]],[2,3,["(H853)"]],[3,5,["H2346"]],[5,7,["H3605"]],[7,9,["H2346"]],[9,12,["H7194"]],[12,13,["H5704"]],[13,15,["H2677"]],[15,19,["H5971"]],[19,20,["H1961"]],[20,22,["H3820"]],[22,24,["H6213"]]]},{"k":12366,"v":[[0,5,["H1961"]],[5,7,["H834"]],[7,8,["H5571"]],[8,10,["H2900"]],[10,13,["H6163"]],[13,16,["H5984"]],[16,19,["H796"]],[19,20,["H8085"]],[20,21,["H3588"]],[21,23,["H2346"]],[23,25,["H3389"]],[25,28,["H5927","H724"]],[28,30,["H3588"]],[30,32,["H6555"]],[32,33,["H2490"]],[33,36,["H5640"]],[36,40,["H3966"]],[40,41,["H2734"]]]},{"k":12367,"v":[[0,2,["H7194"]],[2,3,["H3605"]],[3,6,["H3162"]],[6,8,["H935"]],[8,11,["H3898"]],[11,13,["H3389"]],[13,16,["H6213","H8442"]],[16,17,[]]]},{"k":12368,"v":[[0,5,["H6419"]],[5,6,["H413"]],[6,8,["H430"]],[8,10,["H5975"]],[10,12,["H4929"]],[12,13,["H5921"]],[13,15,["H3119"]],[15,17,["H3915"]],[17,19,["H4480","H6440"]],[19,20,[]]]},{"k":12369,"v":[[0,2,["H3063"]],[2,3,["H559"]],[3,5,["H3581"]],[5,10,["H5449"]],[10,12,["H3782"]],[12,16,["H7235"]],[16,17,["H6083"]],[17,20,["H587"]],[20,22,["H3808"]],[22,23,["H3201"]],[23,25,["H1129"]],[25,27,["H2346"]]]},{"k":12370,"v":[[0,3,["H6862"]],[3,4,["H559"]],[4,7,["H3808"]],[7,8,["H3045"]],[8,9,["H3808"]],[9,10,["H7200"]],[10,11,["H5704","H834"]],[11,13,["H935"]],[13,14,["H413"]],[14,17,["H8432"]],[17,20,["H2026"]],[20,23,["(H853)"]],[23,25,["H4399"]],[25,27,["H7673"]]]},{"k":12371,"v":[[0,5,["H1961"]],[5,7,["H834"]],[7,9,["H3064"]],[9,11,["H3427"]],[11,12,["H681"]],[12,14,["H935"]],[14,16,["H559"]],[16,19,["H6235"]],[19,20,["H6471"]],[20,22,["H4480","H3605"]],[22,23,["H4725"]],[23,24,["H834"]],[24,27,["H7725"]],[27,28,["H5921"]],[28,34,[]]]},{"k":12372,"v":[[0,2,["H5975"]],[2,6,["H4480","H8482"]],[6,7,["H4725"]],[7,8,["H4480","H310"]],[8,10,["H2346"]],[10,15,["H6706"]],[15,18,["H5975","(H853)"]],[18,20,["H5971"]],[20,23,["H4940"]],[23,24,["H5973"]],[24,26,["H2719"]],[26,28,["H7420"]],[28,31,["H7198"]]]},{"k":12373,"v":[[0,3,["H7200"]],[3,6,["H6965"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H2715"]],[11,13,["H413"]],[13,15,["H5461"]],[15,17,["H413"]],[17,19,["H3499"]],[19,22,["H5971"]],[22,24,["H408"]],[24,26,["H3372"]],[26,27,["H4480","H6440"]],[27,29,["H2142","(H853)"]],[29,31,["H136"]],[31,34,["H1419"]],[34,36,["H3372"]],[36,38,["H3898"]],[38,39,["H5921"]],[39,41,["H251"]],[41,43,["H1121"]],[43,46,["H1323"]],[46,48,["H802"]],[48,51,["H1004"]]]},{"k":12374,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,8,["H341"]],[8,9,["H8085"]],[9,10,["H3588"]],[10,13,["H3045"]],[13,17,["H430"]],[17,23,["H6565","(H853)","H6098"]],[23,26,["H7725"]],[26,27,["H3605"]],[27,30,["H413"]],[30,32,["H2346"]],[32,34,["H376"]],[34,35,["H413"]],[35,37,["H4399"]]]},{"k":12375,"v":[[0,5,["H1961"]],[5,6,["H4480"]],[6,7,["H1931"]],[7,8,["H3117"]],[8,12,["H2677"]],[12,15,["H5288"]],[15,16,["H6213"]],[16,19,["H4399"]],[19,23,["H2677"]],[23,26,["H2388"]],[26,29,["H7420"]],[29,31,["H4043"]],[31,34,["H7198"]],[34,37,["H8302"]],[37,40,["H8269"]],[40,42,["H310"]],[42,43,["H3605"]],[43,45,["H1004"]],[45,47,["H3063"]]]},{"k":12376,"v":[[0,3,["H1129"]],[3,6,["H2346"]],[6,10,["H5375"]],[10,11,["H5447"]],[11,15,["H6006"]],[15,19,["H259"]],[19,22,["H3027"]],[22,23,["H6213"]],[23,26,["H4399"]],[26,30,["H259"]],[30,32,["H2388"]],[32,34,["H7973"]]]},{"k":12377,"v":[[0,3,["H1129"]],[3,5,["H376"]],[5,8,["H2719"]],[8,9,["H631"]],[9,10,["H5921"]],[10,12,["H4975"]],[12,15,["H1129"]],[15,19,["H8628"]],[19,21,["H7782"]],[21,23,["H681"]],[23,24,[]]]},{"k":12378,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H2715"]],[6,8,["H413"]],[8,10,["H5461"]],[10,12,["H413"]],[12,14,["H3499"]],[14,17,["H5971"]],[17,19,["H4399"]],[19,21,["H7235"]],[21,23,["H7342"]],[23,25,["H587"]],[25,27,["H6504"]],[27,28,["H5921"]],[28,30,["H2346"]],[30,31,["H376"]],[31,32,["H7350"]],[32,34,["H4480","H251"]]]},{"k":12379,"v":[[0,2,["H834"]],[2,3,["H4725"]],[3,6,["H8085","(H853)"]],[6,8,["H6963"]],[8,11,["H7782"]],[11,12,["H6908"]],[12,14,["H8033"]],[14,15,["H413"]],[15,18,["H430"]],[18,20,["H3898"]],[20,22,[]]]},{"k":12380,"v":[[0,2,["H587"]],[2,3,["H6213"]],[3,6,["H4399"]],[6,8,["H2677"]],[8,11,["H2388"]],[11,13,["H7420"]],[13,16,["H4480","H5927"]],[16,19,["H7837"]],[19,20,["H5704"]],[20,22,["H3556"]],[22,23,["H3318"]]]},{"k":12381,"v":[[0,1,["H1571"]],[1,4,["H1931"]],[4,5,["H6256"]],[5,6,["H559"]],[6,10,["H5971"]],[10,13,["H376"]],[13,16,["H5288"]],[16,17,["H3885"]],[17,18,["H8432"]],[18,19,["H3389"]],[19,23,["H3915"]],[23,26,["H1961"]],[26,28,["H4929"]],[28,32,["H4399"]],[32,35,["H3117"]]]},{"k":12382,"v":[[0,2,["H369"]],[2,3,["H589"]],[3,6,["H251"]],[6,9,["H5288"]],[9,12,["H376"]],[12,15,["H4929"]],[15,16,["H834"]],[16,17,["H310"]],[17,19,["H369"]],[19,21,["H587"]],[21,23,["H6584"]],[23,25,["H899"]],[25,29,["H376"]],[29,32,["H7971"]],[32,34,["H4325"]]]},{"k":12383,"v":[[0,3,["H1961"]],[3,5,["H1419"]],[5,6,["H6818"]],[6,9,["H5971"]],[9,13,["H802"]],[13,14,["H413"]],[14,16,["H251"]],[16,18,["H3064"]]]},{"k":12384,"v":[[0,3,["H3426"]],[3,4,["H834"]],[4,5,["H559"]],[5,6,["H587"]],[6,8,["H1121"]],[8,11,["H1323"]],[11,13,["H7227"]],[13,17,["H3947"]],[17,18,["H1715"]],[18,24,["H398"]],[24,26,["H2421"]]]},{"k":12385,"v":[[0,4,["H3426"]],[4,5,["H834"]],[5,6,["H559"]],[6,7,["H587"]],[7,9,["H6148"]],[9,11,["H7704"]],[11,12,["H3754"]],[12,14,["H1004"]],[14,18,["H3947"]],[18,19,["H1715"]],[19,23,["H7458"]]]},{"k":12386,"v":[[0,2,["H3426"]],[2,4,["H834"]],[4,5,["H559"]],[5,8,["H3867"]],[8,9,["H3701"]],[9,12,["H4428"]],[12,13,["H4060"]],[13,18,["H7704"]],[18,20,["H3754"]]]},{"k":12387,"v":[[0,2,["H6258"]],[2,4,["H1320"]],[4,8,["H1320"]],[8,11,["H251"]],[11,13,["H1121"]],[13,16,["H1121"]],[16,18,["H2009"]],[18,19,["H587"]],[19,22,["H3533","(H853)"]],[22,24,["H1121"]],[24,27,["H1323"]],[27,30,["H5650"]],[30,35,["H4480","H1323"]],[35,36,["H3426"]],[36,39,["H3533"]],[39,41,["H369"]],[41,46,["H410","H3027"]],[46,51,["H312"]],[51,55,["H7704"]],[55,57,["H3754"]]]},{"k":12388,"v":[[0,4,["H3966"]],[4,5,["H2734"]],[5,6,["H834"]],[6,8,["H8085","(H853)"]],[8,10,["H2201"]],[10,12,["H428"]],[12,13,["H1697"]]]},{"k":12389,"v":[[0,3,["H4427"]],[3,4,["H5921"]],[4,5,["H3820"]],[5,8,["H7378","(H853)"]],[8,10,["H2715"]],[10,13,["H5461"]],[13,15,["H559"]],[15,18,["H859"]],[18,19,["H5378"]],[19,20,["H4855"]],[20,22,["H376"]],[22,25,["H251"]],[25,28,["H5414"]],[28,30,["H1419"]],[30,31,["H6952"]],[31,32,["H5921"]],[32,33,[]]]},{"k":12390,"v":[[0,3,["H559"]],[3,6,["H587"]],[6,9,["H1767"]],[9,11,["H7069","(H853)"]],[11,13,["H251"]],[13,15,["H3064"]],[15,18,["H4376"]],[18,21,["H1471"]],[21,24,["H859"]],[24,25,["H1571"]],[25,26,["H4376","(H853)"]],[26,28,["H251"]],[28,33,["H4376"]],[33,40,["H2790"]],[40,42,["H4672"]],[42,43,["H3808","H1697"]],[43,45,[]]]},{"k":12391,"v":[[0,3,["H559"]],[3,6,["H3808"]],[6,7,["H2896","H1697"]],[7,8,["H834"]],[8,9,["H859"]],[9,10,["H6213"]],[10,13,["H3808"]],[13,15,["H1980"]],[15,18,["H3374"]],[18,21,["H430"]],[21,25,["H4480","H2781"]],[25,28,["H1471"]],[28,30,["H341"]]]},{"k":12392,"v":[[0,1,["H589"]],[1,2,["H1571"]],[2,5,["H251"]],[5,8,["H5288"]],[8,10,["H5383"]],[10,13,["H3701"]],[13,15,["H1715"]],[15,17,["H4994"]],[17,22,["H5800","(H853)"]],[22,23,["H2088"]],[23,24,["H4855"]]]},{"k":12393,"v":[[0,1,["H7725"]],[1,3,["H4994"]],[3,9,["H3117"]],[9,11,["H7704"]],[11,13,["H3754"]],[13,15,["H2132"]],[15,18,["H1004"]],[18,21,["H3967"]],[21,25,["H3701"]],[25,29,["H1715"]],[29,31,["H8492"]],[31,34,["H3323"]],[34,35,["H834"]],[35,36,["H859"]],[36,37,["H5383"]],[37,39,[]]]},{"k":12394,"v":[[0,2,["H559"]],[2,6,["H7725"]],[6,10,["H1245"]],[10,11,["H3808"]],[11,12,["H4480"]],[12,14,["H3651"]],[14,17,["H6213"]],[17,18,["H834"]],[18,19,["H859"]],[19,20,["H559"]],[20,23,["H7121","(H853)"]],[23,25,["H3548"]],[25,29,["H7650"]],[29,35,["H6213"]],[35,38,["H2088"]],[38,39,["H1697"]]]},{"k":12395,"v":[[0,1,["H1571"]],[1,3,["H5287"]],[3,5,["H2684"]],[5,7,["H559"]],[7,8,["H3602"]],[8,9,["H430"]],[9,11,["H5287","(H853)"]],[11,12,["H3605"]],[12,13,["H376"]],[13,16,["H4480","H1004"]],[16,20,["H4480","H3018"]],[20,21,["H834"]],[21,22,["H6965"]],[22,23,["H3808","(H853)"]],[23,24,["H2088"]],[24,25,["H1697"]],[25,27,["H3602"]],[27,28,["H1961"]],[28,31,["H5287"]],[31,33,["H7386"]],[33,35,["H3605"]],[35,37,["H6951"]],[37,38,["H559"]],[38,39,["H543"]],[39,41,["H1984","(H853)"]],[41,43,["H3068"]],[43,46,["H5971"]],[46,47,["H6213"]],[47,50,["H2088"]],[50,51,["H1697"]]]},{"k":12396,"v":[[0,1,["H1571"]],[1,4,["H4480","H3117"]],[4,5,["H834"]],[5,8,["H6680"]],[8,10,["H1961"]],[10,12,["H6346"]],[12,15,["H776"]],[15,17,["H3063"]],[17,20,["H6242"]],[20,21,["H4480","H8141"]],[21,23,["H5704"]],[23,25,["H8147"]],[25,27,["H7970"]],[27,28,["H8141"]],[28,30,["H783"]],[30,32,["H4428"]],[32,35,["H8147","H6240"]],[35,36,["H8141"]],[36,37,["H589"]],[37,40,["H251"]],[40,42,["H3808"]],[42,43,["H398"]],[43,45,["H3899"]],[45,48,["H6346"]]]},{"k":12397,"v":[[0,3,["H7223"]],[3,4,["H6346"]],[4,5,["H834"]],[5,8,["H6440"]],[8,11,["H3513"]],[11,12,["H5921"]],[12,14,["H5971"]],[14,17,["H3947"]],[17,18,["H4480"]],[18,20,["H3899"]],[20,22,["H3196"]],[22,23,["H310"]],[23,24,["H705"]],[24,25,["H8255"]],[25,27,["H3701"]],[27,28,["H1571"]],[28,31,["H5288"]],[31,33,["H7980"]],[33,34,["H5921"]],[34,36,["H5971"]],[36,38,["H3651"]],[38,39,["H6213"]],[39,40,["H3808"]],[40,41,["H589"]],[41,42,["H4480","H6440"]],[42,45,["H3374"]],[45,47,["H430"]]]},{"k":12398,"v":[[0,2,["H1571"]],[2,4,["H2388"]],[4,7,["H4399"]],[7,9,["H2063"]],[9,10,["H2346"]],[10,11,["H3808"]],[11,12,["H7069"]],[12,15,["H7704"]],[15,17,["H3605"]],[17,19,["H5288"]],[19,21,["H6908"]],[21,22,["H8033"]],[22,23,["H5921"]],[23,25,["H4399"]]]},{"k":12399,"v":[[0,4,["H5921"]],[4,6,["H7979"]],[6,8,["H3967"]],[8,10,["H2572","H376"]],[10,13,["H3064"]],[13,15,["H5461"]],[15,19,["H935"]],[19,20,["H413"]],[20,23,["H4480"]],[23,25,["H1471"]],[25,26,["H834"]],[26,28,["H5439"]],[28,29,[]]]},{"k":12400,"v":[[0,3,["H834"]],[3,4,["H1961"]],[4,5,["H6213"]],[5,8,["H3117","H259"]],[8,10,["H259"]],[10,11,["H7794"]],[11,13,["H8337"]],[13,14,["H1305"]],[14,15,["H6629"]],[15,17,["H6833"]],[17,19,["H6213"]],[19,23,["H996"]],[23,25,["H6235"]],[25,26,["H3117"]],[26,27,["H7235"]],[27,29,["H3605"]],[29,32,["H3196"]],[32,35,["H5973"]],[35,36,["H2088"]],[36,37,["H1245"]],[37,38,["H3808"]],[38,41,["H3899"]],[41,44,["H6346"]],[44,45,["H3588"]],[45,47,["H5656"]],[47,49,["H3513"]],[49,50,["H5921"]],[50,51,["H2088"]],[51,52,["H5971"]]]},{"k":12401,"v":[[0,1,["H2142"]],[1,5,["H430"]],[5,7,["H2896"]],[7,10,["H3605"]],[10,11,["H834"]],[11,14,["H6213"]],[14,15,["H5921"]],[15,16,["H2088"]],[16,17,["H5971"]]]},{"k":12402,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,7,["H5571"]],[7,9,["H2900"]],[9,11,["H1654"]],[11,13,["H6163"]],[13,16,["H3499"]],[16,19,["H341"]],[19,20,["H8085"]],[20,21,["H3588"]],[21,24,["H1129","(H853)"]],[24,26,["H2346"]],[26,31,["H3808"]],[31,32,["H6556"]],[32,33,["H3498"]],[33,35,["H1571"]],[35,36,["H5704"]],[36,37,["H1931"]],[37,38,["H6256"]],[38,41,["H3808"]],[41,43,["H5975"]],[43,45,["H1817"]],[45,48,["H8179"]]]},{"k":12403,"v":[[0,2,["H5571"]],[2,4,["H1654"]],[4,5,["H7971"]],[5,6,["H413"]],[6,8,["H559"]],[8,9,["H1980"]],[9,12,["H3259"]],[12,13,["H3162"]],[13,19,["H3715"]],[19,22,["H1237"]],[22,24,["H207"]],[24,26,["H1992"]],[26,27,["H2803"]],[27,29,["H6213"]],[29,31,["H7451"]]]},{"k":12404,"v":[[0,3,["H7971"]],[3,4,["H4397"]],[4,5,["H5921"]],[5,7,["H559"]],[7,8,["H589"]],[8,10,["H6213"]],[10,12,["H1419"]],[12,13,["H4399"]],[13,17,["H3808","H3201"]],[17,19,["H3381"]],[19,20,["H4100"]],[20,23,["H4399"]],[23,24,["H7673"]],[24,25,["H834"]],[25,27,["H7503"]],[27,31,["H3381"]],[31,32,["H413"]],[32,33,[]]]},{"k":12405,"v":[[0,3,["H7971"]],[3,4,["H413"]],[4,6,["H702"]],[6,7,["H6471"]],[7,9,["H2088"]],[9,10,["H1697"]],[10,13,["H7725"]],[13,17,["H2088"]],[17,18,["H1697"]]]},{"k":12406,"v":[[0,2,["H7971"]],[2,3,["H5571","(H853)"]],[3,5,["H5288"]],[5,6,["H413"]],[6,9,["H2088"]],[9,10,["H1697"]],[10,12,["H2549"]],[12,13,["H6471"]],[13,16,["H6605"]],[16,17,["H107"]],[17,20,["H3027"]]]},{"k":12407,"v":[[0,3,["H3789"]],[3,6,["H8085"]],[6,9,["H1471"]],[9,11,["H1654"]],[11,12,["H559"]],[12,15,["H859"]],[15,18,["H3064"]],[18,19,["H2803"]],[19,21,["H4775"]],[21,22,["H5921"]],[22,24,["H3651"]],[24,25,["H859"]],[25,26,["H1129"]],[26,28,["H2346"]],[28,30,["H859"]],[30,32,["H1933"]],[32,34,["H4428"]],[34,37,["H428"]],[37,38,["H1697"]]]},{"k":12408,"v":[[0,4,["H1571"]],[4,5,["H5975"]],[5,6,["H5030"]],[6,8,["H7121"]],[8,9,["H5921"]],[9,12,["H3389"]],[12,13,["H559"]],[13,17,["H4428"]],[17,19,["H3063"]],[19,21,["H6258"]],[21,25,["H8085"]],[25,28,["H4428"]],[28,31,["H428"]],[31,32,["H1697"]],[32,33,["H1980"]],[33,34,["H6258"]],[34,40,["H3289"]],[40,41,["H3162"]]]},{"k":12409,"v":[[0,3,["H7971"]],[3,4,["H413"]],[4,6,["H559"]],[6,8,["H1961"]],[8,9,["H3808"]],[9,10,["H428"]],[10,11,["H1697"]],[11,13,["H834"]],[13,14,["H859"]],[14,15,["H559"]],[15,16,["H3588"]],[16,17,["H859"]],[17,18,["H908"]],[18,24,["H4480","H3820"]]]},{"k":12410,"v":[[0,1,["H3588"]],[1,3,["H3605"]],[3,6,["H3372","(H853)"]],[6,7,["H559"]],[7,9,["H3027"]],[9,12,["H7503"]],[12,13,["H4480"]],[13,15,["H4399"]],[15,19,["H3808"]],[19,20,["H6213"]],[20,21,["H6258"]],[21,25,["H2388","(H853)"]],[25,27,["H3027"]]]},{"k":12411,"v":[[0,2,["H589"]],[2,3,["H935"]],[3,6,["H1004"]],[6,8,["H8098"]],[8,10,["H1121"]],[10,12,["H1806"]],[12,14,["H1121"]],[14,16,["H4105"]],[16,17,["H1931"]],[17,20,["H6113"]],[20,23,["H559"]],[23,27,["H3259"]],[27,28,["H413"]],[28,30,["H1004"]],[30,32,["H430"]],[32,33,["H413","H8432"]],[33,35,["H1964"]],[35,39,["H5462"]],[39,41,["H1817"]],[41,44,["H1964"]],[44,45,["H3588"]],[45,48,["H935"]],[48,50,["H2026"]],[50,55,["H3915"]],[55,58,["H935"]],[58,60,["H2026"]],[60,61,[]]]},{"k":12412,"v":[[0,3,["H559"]],[3,9,["H3644","H376"]],[9,10,["H1272"]],[10,12,["H4310"]],[12,15,["H834"]],[15,18,["H3644"]],[18,21,["H935"]],[21,22,["H413"]],[22,24,["H1964"]],[24,28,["H2425"]],[28,31,["H3808"]],[31,33,["H935"]]]},{"k":12413,"v":[[0,2,["H2009"]],[2,4,["H5234"]],[4,6,["H430"]],[6,8,["H3808"]],[8,9,["H7971"]],[9,11,["H3588"]],[11,14,["H1696"]],[14,16,["H5016"]],[16,17,["H5921"]],[17,20,["H2900"]],[20,22,["H5571"]],[22,24,["H7936"]],[24,25,[]]]},{"k":12414,"v":[[0,1,["H4616"]],[1,3,["H1931"]],[3,4,["H7936"]],[4,5,["H4616"]],[5,9,["H3372"]],[9,11,["H6213"]],[11,12,["H3651"]],[12,14,["H2398"]],[14,19,["H1961"]],[19,23,["H7451"]],[23,24,["H8034"]],[24,25,["H4616"]],[25,28,["H2778"]],[28,29,[]]]},{"k":12415,"v":[[0,2,["H430"]],[2,3,["H2142"]],[3,6,["H2900"]],[6,8,["H5571"]],[8,11,["H428"]],[11,13,["H4639"]],[13,14,["H1571"]],[14,17,["H5031"]],[17,18,["H5129"]],[18,21,["H3499"]],[21,24,["H5030"]],[24,25,["H834"]],[25,27,["H1961"]],[27,31,["H3372"]]]},{"k":12416,"v":[[0,3,["H2346"]],[3,5,["H7999"]],[5,8,["H6242"]],[8,10,["H2568"]],[10,15,["H435"]],[15,17,["H2572"]],[17,19,["H8147"]],[19,20,["H3117"]]]},{"k":12417,"v":[[0,5,["H1961"]],[5,7,["H834"]],[7,8,["H3605"]],[8,10,["H341"]],[10,11,["H8085"]],[11,14,["H3605"]],[14,16,["H1471"]],[16,17,["H834"]],[17,19,["H5439"]],[19,21,["H7200"]],[21,26,["H3966"]],[26,28,["H5307"]],[28,32,["H5869"]],[32,35,["H3045"]],[35,36,["H3588"]],[36,37,["H2063"]],[37,38,["H4399"]],[38,40,["H6213"]],[40,41,["H4480","H854"]],[41,43,["H430"]]]},{"k":12418,"v":[[0,1,["H1571"]],[1,3,["H1992"]],[3,4,["H3117"]],[4,6,["H2715"]],[6,8,["H3063"]],[8,9,["H1980"]],[9,10,["H7235"]],[10,11,["H107"]],[11,12,["H5921"]],[12,13,["H2900"]],[13,18,["H2900"]],[18,19,["H935"]],[19,20,["H413"]],[20,21,[]]]},{"k":12419,"v":[[0,1,["H3588"]],[1,4,["H7227"]],[4,6,["H3063"]],[6,7,["H1167","H7621"]],[7,10,["H3588"]],[10,11,["H1931"]],[11,16,["H2860"]],[16,18,["H7935"]],[18,20,["H1121"]],[20,22,["H733"]],[22,25,["H1121"]],[25,26,["H3076"]],[26,28,["H3947","(H853)"]],[28,30,["H1323"]],[30,32,["H4918"]],[32,34,["H1121"]],[34,36,["H1296"]]]},{"k":12420,"v":[[0,1,["H1571"]],[1,3,["H1961","H559"]],[3,6,["H2896"]],[6,7,["H6440"]],[7,10,["H1961","H3318"]],[10,12,["H1697"]],[12,16,["H2900"]],[16,17,["H7971"]],[17,18,["H107"]],[18,23,["H3372"]]]},{"k":12421,"v":[[0,5,["H1961"]],[5,6,["H834"]],[6,8,["H2346"]],[8,10,["H1129"]],[10,15,["H5975"]],[15,17,["H1817"]],[17,20,["H7778"]],[20,23,["H7891"]],[23,26,["H3881"]],[26,28,["H6485"]]]},{"k":12422,"v":[[0,3,["(H853)"]],[3,5,["H251"]],[5,6,["H2607"]],[6,8,["H2608"]],[8,10,["H8269"]],[10,13,["H1002"]],[13,14,["H6680"]],[14,15,["H5921"]],[15,16,["H3389"]],[16,17,["H3588"]],[17,18,["H1931"]],[18,21,["H571"]],[21,22,["H376"]],[22,24,["H3372","(H853)"]],[24,25,["H430"]],[25,27,["H4480","H7227"]]]},{"k":12423,"v":[[0,3,["H559"]],[3,7,["H3808"]],[7,9,["H8179"]],[9,11,["H3389"]],[11,13,["H6605"]],[13,14,["H5704"]],[14,16,["H8121"]],[16,18,["H2552"]],[18,20,["H5704"]],[20,21,["H1992"]],[21,22,["H5975"]],[22,26,["H1479"]],[26,28,["H1817"]],[28,30,["H270"]],[30,33,["H5975"]],[33,34,["H4931"]],[34,37,["H3427"]],[37,39,["H3389"]],[39,41,["H376"]],[41,44,["H4929"]],[44,47,["H376"]],[47,51,["H5048"]],[51,53,["H1004"]]]},{"k":12424,"v":[[0,3,["H5892"]],[3,5,["H7342","H3027"]],[5,7,["H1419"]],[7,10,["H5971"]],[10,12,["H4592"]],[12,13,["H8432"]],[13,16,["H1004"]],[16,18,["H369"]],[18,19,["H1129"]]]},{"k":12425,"v":[[0,3,["H430"]],[3,4,["H5414"]],[4,5,["H413"]],[5,7,["H3820"]],[7,10,["H6908","(H853)"]],[10,12,["H2715"]],[12,15,["H5461"]],[15,18,["H5971"]],[18,25,["H3187"]],[25,28,["H4672"]],[28,30,["H5612"]],[30,33,["H3188"]],[33,38,["H5927"]],[38,41,["H7223"]],[41,43,["H4672"]],[43,44,["H3789"]],[44,45,[]]]},{"k":12426,"v":[[0,1,["H428"]],[1,4,["H1121"]],[4,7,["H4082"]],[7,10,["H5927"]],[10,14,["H4480","H7628"]],[14,21,["H1473"]],[21,22,["H834"]],[22,23,["H5019"]],[23,25,["H4428"]],[25,27,["H894"]],[27,30,["H1540"]],[30,33,["H7725"]],[33,35,["H3389"]],[35,38,["H3063"]],[38,40,["H376"]],[40,43,["H5892"]]]},{"k":12427,"v":[[0,2,["H935"]],[2,3,["H5973"]],[3,4,["H2216"]],[4,5,["H3442"]],[5,6,["H5166"]],[6,7,["H5838"]],[7,8,["H7485"]],[8,9,["H5167"]],[9,10,["H4782"]],[10,11,["H1114"]],[11,12,["H4559"]],[12,13,["H902"]],[13,14,["H5149"]],[14,15,["H1196"]],[15,17,["H4557"]],[17,22,["H376"]],[22,25,["H5971"]],[25,27,["H3478"]],[27,29,[]]]},{"k":12428,"v":[[0,2,["H1121"]],[2,4,["H6551"]],[4,6,["H505"]],[6,8,["H3967"]],[8,9,["H7657"]],[9,11,["H8147"]]]},{"k":12429,"v":[[0,2,["H1121"]],[2,4,["H8203"]],[4,5,["H7969"]],[5,6,["H3967"]],[6,7,["H7657"]],[7,9,["H8147"]]]},{"k":12430,"v":[[0,2,["H1121"]],[2,4,["H733"]],[4,5,["H8337"]],[5,6,["H3967"]],[6,7,["H2572"]],[7,9,["H8147"]]]},{"k":12431,"v":[[0,2,["H1121"]],[2,4,["H6355"]],[4,7,["H1121"]],[7,9,["H3442"]],[9,11,["H3097"]],[11,13,["H505"]],[13,15,["H8083"]],[15,16,["H3967"]],[16,18,["H8083","H6240"]]]},{"k":12432,"v":[[0,2,["H1121"]],[2,4,["H5867"]],[4,6,["H505"]],[6,8,["H3967"]],[8,9,["H2572"]],[9,11,["H702"]]]},{"k":12433,"v":[[0,2,["H1121"]],[2,4,["H2240"]],[4,5,["H8083"]],[5,6,["H3967"]],[6,7,["H705"]],[7,9,["H2568"]]]},{"k":12434,"v":[[0,2,["H1121"]],[2,4,["H2140"]],[4,5,["H7651"]],[5,6,["H3967"]],[6,8,["H8346"]]]},{"k":12435,"v":[[0,2,["H1121"]],[2,4,["H1131"]],[4,5,["H8337"]],[5,6,["H3967"]],[6,7,["H705"]],[7,9,["H8083"]]]},{"k":12436,"v":[[0,2,["H1121"]],[2,4,["H893"]],[4,5,["H8337"]],[5,6,["H3967"]],[6,7,["H6242"]],[7,9,["H8083"]]]},{"k":12437,"v":[[0,2,["H1121"]],[2,4,["H5803"]],[4,6,["H505"]],[6,7,["H7969"]],[7,8,["H3967"]],[8,9,["H6242"]],[9,11,["H8147"]]]},{"k":12438,"v":[[0,2,["H1121"]],[2,4,["H140"]],[4,5,["H8337"]],[5,6,["H3967"]],[6,7,["H8346"]],[7,9,["H7651"]]]},{"k":12439,"v":[[0,2,["H1121"]],[2,4,["H902"]],[4,6,["H505"]],[6,7,["H8346"]],[7,9,["H7651"]]]},{"k":12440,"v":[[0,2,["H1121"]],[2,4,["H5720"]],[4,5,["H8337"]],[5,6,["H3967"]],[6,7,["H2572"]],[7,9,["H2568"]]]},{"k":12441,"v":[[0,2,["H1121"]],[2,4,["H333"]],[4,6,["H2396"]],[6,7,["H8673"]],[7,9,["H8083"]]]},{"k":12442,"v":[[0,2,["H1121"]],[2,4,["H2828"]],[4,5,["H7969"]],[5,6,["H3967"]],[6,7,["H6242"]],[7,9,["H8083"]]]},{"k":12443,"v":[[0,2,["H1121"]],[2,4,["H1209"]],[4,5,["H7969"]],[5,6,["H3967"]],[6,7,["H6242"]],[7,9,["H702"]]]},{"k":12444,"v":[[0,2,["H1121"]],[2,4,["H2756"]],[4,6,["H3967"]],[6,8,["H8147","H6240"]]]},{"k":12445,"v":[[0,2,["H1121"]],[2,4,["H1391"]],[4,5,["H8673"]],[5,7,["H2568"]]]},{"k":12446,"v":[[0,2,["H376"]],[2,4,["H1035"]],[4,6,["H5199"]],[6,8,["H3967"]],[8,9,["H8084"]],[9,11,["H8083"]]]},{"k":12447,"v":[[0,2,["H376"]],[2,4,["H6068"]],[4,6,["H3967"]],[6,7,["H6242"]],[7,9,["H8083"]]]},{"k":12448,"v":[[0,2,["H376"]],[2,4,["H1041"]],[4,5,["H705"]],[5,7,["H8147"]]]},{"k":12449,"v":[[0,2,["H376"]],[2,4,["H7157"]],[4,5,["H3716"]],[5,7,["H881"]],[7,8,["H7651"]],[8,9,["H3967"]],[9,10,["H705"]],[10,12,["H7969"]]]},{"k":12450,"v":[[0,2,["H376"]],[2,4,["H7414"]],[4,6,["H1387"]],[6,7,["H8337"]],[7,8,["H3967"]],[8,9,["H6242"]],[9,11,["H259"]]]},{"k":12451,"v":[[0,2,["H376"]],[2,4,["H4363"]],[4,6,["H3967"]],[6,8,["H6242"]],[8,10,["H8147"]]]},{"k":12452,"v":[[0,2,["H376"]],[2,4,["H1008"]],[4,6,["H5857"]],[6,8,["H3967"]],[8,9,["H6242"]],[9,11,["H7969"]]]},{"k":12453,"v":[[0,2,["H376"]],[2,5,["H312"]],[5,6,["H5015"]],[6,7,["H2572"]],[7,9,["H8147"]]]},{"k":12454,"v":[[0,2,["H1121"]],[2,5,["H312"]],[5,6,["H5867"]],[6,8,["H505"]],[8,10,["H3967"]],[10,11,["H2572"]],[11,13,["H702"]]]},{"k":12455,"v":[[0,2,["H1121"]],[2,4,["H2766"]],[4,5,["H7969"]],[5,6,["H3967"]],[6,8,["H6242"]]]},{"k":12456,"v":[[0,2,["H1121"]],[2,4,["H3405"]],[4,5,["H7969"]],[5,6,["H3967"]],[6,7,["H705"]],[7,9,["H2568"]]]},{"k":12457,"v":[[0,2,["H1121"]],[2,4,["H3850"]],[4,5,["H2307"]],[5,7,["H207"]],[7,8,["H7651"]],[8,9,["H3967"]],[9,10,["H6242"]],[10,12,["H259"]]]},{"k":12458,"v":[[0,2,["H1121"]],[2,4,["H5570"]],[4,5,["H7969"]],[5,6,["H505"]],[6,7,["H8672"]],[7,8,["H3967"]],[8,10,["H7970"]]]},{"k":12459,"v":[[0,2,["H3548"]],[2,4,["H1121"]],[4,6,["H3048"]],[6,9,["H1004"]],[9,11,["H3442"]],[11,12,["H8672"]],[12,13,["H3967"]],[13,14,["H7657"]],[14,16,["H7969"]]]},{"k":12460,"v":[[0,2,["H1121"]],[2,4,["H564"]],[4,6,["H505"]],[6,7,["H2572"]],[7,9,["H8147"]]]},{"k":12461,"v":[[0,2,["H1121"]],[2,4,["H6583"]],[4,6,["H505"]],[6,8,["H3967"]],[8,9,["H705"]],[9,11,["H7651"]]]},{"k":12462,"v":[[0,2,["H1121"]],[2,4,["H2766"]],[4,6,["H505"]],[6,8,["H7651","H6240"]]]},{"k":12463,"v":[[0,2,["H3881"]],[2,4,["H1121"]],[4,6,["H3442"]],[6,8,["H6934"]],[8,12,["H1121"]],[12,14,["H1937"]],[14,15,["H7657"]],[15,17,["H702"]]]},{"k":12464,"v":[[0,2,["H7891"]],[2,4,["H1121"]],[4,6,["H623"]],[6,8,["H3967"]],[8,9,["H705"]],[9,11,["H8083"]]]},{"k":12465,"v":[[0,2,["H7778"]],[2,4,["H1121"]],[4,6,["H7967"]],[6,8,["H1121"]],[8,10,["H333"]],[10,12,["H1121"]],[12,14,["H2929"]],[14,16,["H1121"]],[16,18,["H6126"]],[18,20,["H1121"]],[20,22,["H2410"]],[22,24,["H1121"]],[24,26,["H7630"]],[26,28,["H3967"]],[28,29,["H7970"]],[29,31,["H8083"]]]},{"k":12466,"v":[[0,2,["H5411"]],[2,4,["H1121"]],[4,6,["H6727"]],[6,8,["H1121"]],[8,10,["H2817"]],[10,12,["H1121"]],[12,14,["H2884"]]]},{"k":12467,"v":[[0,2,["H1121"]],[2,4,["H7026"]],[4,6,["H1121"]],[6,8,["H5517"]],[8,10,["H1121"]],[10,12,["H6303"]]]},{"k":12468,"v":[[0,2,["H1121"]],[2,4,["H3838"]],[4,6,["H1121"]],[6,8,["H2286"]],[8,10,["H1121"]],[10,12,["H8014"]]]},{"k":12469,"v":[[0,2,["H1121"]],[2,4,["H2605"]],[4,6,["H1121"]],[6,8,["H1435"]],[8,10,["H1121"]],[10,12,["H1515"]]]},{"k":12470,"v":[[0,2,["H1121"]],[2,4,["H7211"]],[4,6,["H1121"]],[6,8,["H7526"]],[8,10,["H1121"]],[10,12,["H5353"]]]},{"k":12471,"v":[[0,2,["H1121"]],[2,4,["H1502"]],[4,6,["H1121"]],[6,8,["H5798"]],[8,10,["H1121"]],[10,12,["H6454"]]]},{"k":12472,"v":[[0,2,["H1121"]],[2,4,["H1153"]],[4,6,["H1121"]],[6,8,["H4586"]],[8,10,["H1121"]],[10,12,["H5300"]]]},{"k":12473,"v":[[0,2,["H1121"]],[2,4,["H1227"]],[4,6,["H1121"]],[6,8,["H2709"]],[8,10,["H1121"]],[10,12,["H2744"]]]},{"k":12474,"v":[[0,2,["H1121"]],[2,4,["H1213"]],[4,6,["H1121"]],[6,8,["H4240"]],[8,10,["H1121"]],[10,12,["H2797"]]]},{"k":12475,"v":[[0,2,["H1121"]],[2,4,["H1302"]],[4,6,["H1121"]],[6,8,["H5516"]],[8,10,["H1121"]],[10,12,["H8547"]]]},{"k":12476,"v":[[0,2,["H1121"]],[2,4,["H5335"]],[4,6,["H1121"]],[6,8,["H2412"]]]},{"k":12477,"v":[[0,2,["H1121"]],[2,4,["H8010"]],[4,5,["H5650"]],[5,7,["H1121"]],[7,9,["H5479"]],[9,11,["H1121"]],[11,13,["H5618"]],[13,15,["H1121"]],[15,17,["H6514"]]]},{"k":12478,"v":[[0,2,["H1121"]],[2,4,["H3279"]],[4,6,["H1121"]],[6,8,["H1874"]],[8,10,["H1121"]],[10,12,["H1435"]]]},{"k":12479,"v":[[0,2,["H1121"]],[2,4,["H8203"]],[4,6,["H1121"]],[6,8,["H2411"]],[8,10,["H1121"]],[10,12,["H6380"]],[12,14,["H6380"]],[14,16,["H1121"]],[16,18,["H526"]]]},{"k":12480,"v":[[0,1,["H3605"]],[1,3,["H5411"]],[3,6,["H1121"]],[6,8,["H8010"]],[8,9,["H5650"]],[9,11,["H7969"]],[11,12,["H3967"]],[12,13,["H8673"]],[13,15,["H8147"]]]},{"k":12481,"v":[[0,2,["H428"]],[2,7,["H5927"]],[7,10,["H4480","H8528"]],[10,11,["H8521"]],[11,12,["H3743"]],[12,13,["H114"]],[13,15,["H564"]],[15,18,["H3201"]],[18,19,["H3808"]],[19,20,["H5046"]],[20,22,["H1"]],[22,23,["H1004"]],[23,26,["H2233"]],[26,27,["H518"]],[27,28,["H1992"]],[28,31,["H4480","H3478"]]]},{"k":12482,"v":[[0,2,["H1121"]],[2,4,["H1806"]],[4,6,["H1121"]],[6,8,["H2900"]],[8,10,["H1121"]],[10,12,["H5353"]],[12,13,["H8337"]],[13,14,["H3967"]],[14,15,["H705"]],[15,17,["H8147"]]]},{"k":12483,"v":[[0,2,["H4480"]],[2,4,["H3548"]],[4,6,["H1121"]],[6,8,["H2252"]],[8,10,["H1121"]],[10,12,["H6976"]],[12,14,["H1121"]],[14,16,["H1271"]],[16,17,["H834"]],[17,18,["H3947"]],[18,22,["H4480","H1323"]],[22,24,["H1271"]],[24,26,["H1569"]],[26,28,["H802"]],[28,31,["H7121"]],[31,32,["H5921"]],[32,34,["H8034"]]]},{"k":12484,"v":[[0,1,["H428"]],[1,2,["H1245"]],[2,4,["H3791"]],[4,11,["H3187"]],[11,15,["H3808"]],[15,16,["H4672"]],[16,21,["H1351"]],[21,23,["H4480"]],[23,25,["H3550"]]]},{"k":12485,"v":[[0,3,["H8660"]],[3,4,["H559"]],[4,7,["H834"]],[7,10,["H3808"]],[10,11,["H398"]],[11,16,["H4480","H6944","H6944"]],[16,17,["H5704"]],[17,19,["H5975"]],[19,22,["H3548"]],[22,24,["H224"]],[24,26,["H8550"]]]},{"k":12486,"v":[[0,2,["H3605"]],[2,3,["H6951"]],[3,4,["H259"]],[4,6,["H702","H7239"]],[6,9,["H505"]],[9,10,["H7969"]],[10,11,["H3967"]],[11,13,["H8346"]]]},{"k":12487,"v":[[0,1,["H4480","H905"]],[1,3,["H5650"]],[3,6,["H519"]],[6,8,["H428"]],[8,11,["H7651"]],[11,12,["H505"]],[12,13,["H7969"]],[13,14,["H3967"]],[14,15,["H7970"]],[15,17,["H7651"]],[17,22,["H3967"]],[22,23,["H705"]],[23,25,["H2568"]],[25,26,["H7891"]],[26,29,["H7891"]],[29,30,[]]]},{"k":12488,"v":[[0,2,["H5483"]],[2,3,["H7651"]],[3,4,["H3967"]],[4,5,["H7970"]],[5,7,["H8337"]],[7,9,["H6505"]],[9,11,["H3967"]],[11,12,["H705"]],[12,14,["H2568"]]]},{"k":12489,"v":[[0,2,["H1581"]],[2,3,["H702"]],[3,4,["H3967"]],[4,5,["H7970"]],[5,7,["H2568"]],[7,8,["H8337"]],[8,9,["H505"]],[9,10,["H7651"]],[10,11,["H3967"]],[11,13,["H6242"]],[13,14,["H2543"]]]},{"k":12490,"v":[[0,2,["H4480","H7117"]],[2,5,["H7218"]],[5,8,["H1"]],[8,9,["H5414"]],[9,12,["H4399"]],[12,14,["H8660"]],[14,15,["H5414"]],[15,18,["H214"]],[18,20,["H505"]],[20,21,["H1871"]],[21,23,["H2091"]],[23,24,["H2572"]],[24,25,["H4219"]],[25,26,["H2568"]],[26,27,["H3967"]],[27,29,["H7970"]],[29,30,["H3548"]],[30,31,["H3801"]]]},{"k":12491,"v":[[0,5,["H4480","H7218"]],[5,8,["H1"]],[8,9,["H5414"]],[9,12,["H214"]],[12,15,["H4399"]],[15,17,["H8147","H7239"]],[17,18,["H1871"]],[18,20,["H2091"]],[20,23,["H505"]],[23,26,["H3967"]],[26,27,["H4488"]],[27,29,["H3701"]]]},{"k":12492,"v":[[0,3,["H834"]],[3,5,["H7611"]],[5,8,["H5971"]],[8,9,["H5414"]],[9,11,["H8147"]],[11,12,["H7239"]],[12,13,["H1871"]],[13,15,["H2091"]],[15,18,["H505"]],[18,19,["H4488"]],[19,21,["H3701"]],[21,23,["H8346"]],[23,25,["H7651"]],[25,26,["H3548"]],[26,27,["H3801"]]]},{"k":12493,"v":[[0,3,["H3548"]],[3,6,["H3881"]],[6,9,["H7778"]],[9,12,["H7891"]],[12,15,["H4480"]],[15,17,["H5971"]],[17,20,["H5411"]],[20,22,["H3605"]],[22,23,["H3478"]],[23,24,["H3427"]],[24,27,["H5892"]],[27,31,["H7637"]],[31,32,["H2320"]],[32,33,["H5060"]],[33,35,["H1121"]],[35,37,["H3478"]],[37,41,["H5892"]]]},{"k":12494,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,7,["H622"]],[7,9,["H259"]],[9,10,["H376"]],[10,11,["H413"]],[11,13,["H7339"]],[13,14,["H834"]],[14,16,["H6440"]],[16,18,["H4325"]],[18,19,["H8179"]],[19,22,["H559"]],[22,24,["H5830"]],[24,26,["H5608"]],[26,28,["H935","(H853)"]],[28,30,["H5612"]],[30,33,["H8451"]],[33,35,["H4872"]],[35,36,["H834"]],[36,38,["H3068"]],[38,40,["H6680"]],[40,41,["(H853)"]],[41,42,["H3478"]]]},{"k":12495,"v":[[0,2,["H5830"]],[2,4,["H3548"]],[4,5,["H935","(H853)"]],[5,7,["H8451"]],[7,8,["H6440"]],[8,10,["H6951"]],[10,13,["H4480","H376"]],[13,15,["H802"]],[15,17,["H3605"]],[17,20,["H8085"]],[20,22,["H995"]],[22,25,["H259"]],[25,26,["H3117"]],[26,29,["H7637"]],[29,30,["H2320"]]]},{"k":12496,"v":[[0,3,["H7121"]],[3,5,["H6440"]],[5,7,["H7339"]],[7,8,["H834"]],[8,10,["H6440"]],[10,12,["H4325"]],[12,13,["H8179"]],[13,14,["H4480"]],[14,16,["H216"]],[16,17,["H5704"]],[17,18,["H4276","H3117"]],[18,19,["H5048"]],[19,21,["H376"]],[21,24,["H802"]],[24,29,["H995"]],[29,32,["H241"]],[32,34,["H3605"]],[34,36,["H5971"]],[36,39,["H413"]],[39,41,["H5612"]],[41,44,["H8451"]]]},{"k":12497,"v":[[0,2,["H5830"]],[2,4,["H5608"]],[4,5,["H5975"]],[5,6,["H5921"]],[6,8,["H4026"]],[8,10,["H6086"]],[10,11,["H834"]],[11,14,["H6213"]],[14,17,["H1697"]],[17,19,["H681"]],[19,21,["H5975"]],[21,22,["H4993"]],[22,24,["H8087"]],[24,26,["H6043"]],[26,28,["H223"]],[28,30,["H2518"]],[30,32,["H4641"]],[32,33,["H5921"]],[33,36,["H3225"]],[36,41,["H4480","H8040"]],[41,42,["H6305"]],[42,44,["H4332"]],[44,46,["H4441"]],[46,48,["H2828"]],[48,50,["H2806"]],[50,51,["H2148"]],[51,53,["H4918"]]]},{"k":12498,"v":[[0,2,["H5830"]],[2,3,["H6605"]],[3,5,["H5612"]],[5,8,["H5869"]],[8,10,["H3605"]],[10,12,["H5971"]],[12,13,["H3588"]],[13,15,["H1961"]],[15,16,["H4480","H5921"]],[16,17,["H3605"]],[17,19,["H5971"]],[19,23,["H6605"]],[23,25,["H3605"]],[25,27,["H5971"]],[27,29,["H5975"]]]},{"k":12499,"v":[[0,2,["H5830"]],[2,3,["H1288","(H853)"]],[3,5,["H3068"]],[5,7,["H1419"]],[7,8,["H430"]],[8,10,["H3605"]],[10,12,["H5971"]],[12,13,["H6030"]],[13,14,["H543"]],[14,15,["H543"]],[15,18,["H4607"]],[18,20,["H3027"]],[20,23,["H6915"]],[23,27,["H7812"]],[27,29,["H3068"]],[29,32,["H639"]],[32,35,["H776"]]]},{"k":12500,"v":[[0,2,["H3442"]],[2,4,["H1137"]],[4,6,["H8274"]],[6,7,["H3226"]],[7,8,["H6126"]],[8,9,["H7678"]],[9,10,["H1941"]],[10,11,["H4641"]],[11,12,["H7042"]],[12,13,["H5838"]],[13,14,["H3107"]],[14,15,["H2605"]],[15,16,["H6411"]],[16,19,["H3881"]],[19,20,["(H853)"]],[20,22,["H5971"]],[22,24,["H995"]],[24,26,["H8451"]],[26,29,["H5971"]],[29,31,["H5921"]],[31,33,["H5977"]]]},{"k":12501,"v":[[0,3,["H7121"]],[3,6,["H5612"]],[6,9,["H8451"]],[9,11,["H430"]],[11,12,["H6567"]],[12,14,["H7760"]],[14,16,["H7922"]],[16,21,["H995"]],[21,23,["H4744"]]]},{"k":12502,"v":[[0,2,["H5166"]],[2,3,["H1931"]],[3,6,["H8660"]],[6,8,["H5830"]],[8,10,["H3548"]],[10,12,["H5608"]],[12,15,["H3881"]],[15,17,["H995","(H853)"]],[17,19,["H5971"]],[19,20,["H559"]],[20,22,["H3605"]],[22,24,["H5971"]],[24,25,["H1931"]],[25,26,["H3117"]],[26,28,["H6918"]],[28,31,["H3068"]],[31,33,["H430"]],[33,34,["H56"]],[34,35,["H408"]],[35,36,["H408"]],[36,37,["H1058"]],[37,38,["H3588"]],[38,39,["H3605"]],[39,41,["H5971"]],[41,42,["H1058"]],[42,45,["H8085","(H853)"]],[45,47,["H1697"]],[47,50,["H8451"]]]},{"k":12503,"v":[[0,3,["H559"]],[3,6,["H1980"]],[6,9,["H398"]],[9,11,["H4924"]],[11,13,["H8354"]],[13,15,["H4477"]],[15,17,["H7971"]],[17,18,["H4490"]],[18,23,["H369"]],[23,25,["H3559"]],[25,26,["H3588"]],[26,28,["H3117"]],[28,30,["H6918"]],[30,33,["H113"]],[33,34,["H408"]],[34,37,["H6087"]],[37,38,["H3588"]],[38,40,["H2304"]],[40,43,["H3068"]],[43,46,["H4581"]]]},{"k":12504,"v":[[0,3,["H3881"]],[3,4,["H2814"]],[4,5,["H3605"]],[5,7,["H5971"]],[7,8,["H559"]],[8,11,["H2013"]],[11,12,["H3588"]],[12,14,["H3117"]],[14,16,["H6918"]],[16,17,["H408"]],[17,20,["H6087"]]]},{"k":12505,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H1980"]],[5,9,["H398"]],[9,12,["H8354"]],[12,15,["H7971"]],[15,16,["H4490"]],[16,19,["H6213"]],[19,20,["H1419"]],[20,21,["H8057"]],[21,22,["H3588"]],[22,25,["H995"]],[25,27,["H1697"]],[27,28,["H834"]],[28,30,["H3045"]],[30,32,[]]]},{"k":12506,"v":[[0,4,["H8145"]],[4,5,["H3117"]],[5,8,["H622"]],[8,10,["H7218"]],[10,13,["H1"]],[13,15,["H3605"]],[15,17,["H5971"]],[17,19,["H3548"]],[19,22,["H3881"]],[22,23,["H413"]],[23,24,["H5830"]],[24,26,["H5608"]],[26,29,["H7919","H413"]],[29,31,["H1697"]],[31,34,["H8451"]]]},{"k":12507,"v":[[0,3,["H4672"]],[3,4,["H3789"]],[4,7,["H8451"]],[7,8,["H834"]],[8,10,["H3068"]],[10,12,["H6680"]],[12,13,["H3027"]],[13,14,["H4872"]],[14,15,["H834"]],[15,17,["H1121"]],[17,19,["H3478"]],[19,21,["H3427"]],[21,23,["H5521"]],[23,26,["H2282"]],[26,29,["H7637"]],[29,30,["H2320"]]]},{"k":12508,"v":[[0,2,["H834"]],[2,5,["H8085"]],[5,7,["H5674","H6963"]],[7,9,["H3605"]],[9,11,["H5892"]],[11,14,["H3389"]],[14,15,["H559"]],[15,17,["H3318"]],[17,20,["H2022"]],[20,22,["H935"]],[22,23,["H2132"]],[23,24,["H5929"]],[24,26,["H6086","H8081"]],[26,27,["H5929"]],[27,29,["H1918"]],[29,30,["H5929"]],[30,32,["H8558"]],[32,33,["H5929"]],[33,35,["H5929"]],[35,37,["H5687"]],[37,38,["H6086"]],[38,40,["H6213"]],[40,41,["H5521"]],[41,45,["H3789"]]]},{"k":12509,"v":[[0,3,["H5971"]],[3,5,["H3318"]],[5,7,["H935"]],[7,10,["H6213"]],[10,12,["H5521"]],[12,14,["H376"]],[14,15,["H5921"]],[15,20,["H1406"]],[20,24,["H2691"]],[24,28,["H2691"]],[28,31,["H1004"]],[31,33,["H430"]],[33,37,["H7339"]],[37,40,["H4325"]],[40,41,["H8179"]],[41,45,["H7339"]],[45,48,["H8179"]],[48,50,["H669"]]]},{"k":12510,"v":[[0,2,["H3605"]],[2,4,["H6951"]],[4,10,["H7725"]],[10,12,["H4480"]],[12,14,["H7628"]],[14,15,["H6213"]],[15,16,["H5521"]],[16,18,["H3427"]],[18,21,["H5521"]],[21,22,["H3588"]],[22,25,["H4480","H3117"]],[25,27,["H3442"]],[27,29,["H1121"]],[29,31,["H5126"]],[31,32,["H5704"]],[32,33,["H1931"]],[33,34,["H3117"]],[34,36,["H3808"]],[36,38,["H1121"]],[38,40,["H3478"]],[40,41,["H6213"]],[41,42,["H3651"]],[42,45,["H1961"]],[45,46,["H3966"]],[46,47,["H1419"]],[47,48,["H8057"]]]},{"k":12511,"v":[[0,2,["H3117"]],[2,4,["H3117"]],[4,5,["H4480"]],[5,7,["H7223"]],[7,8,["H3117"]],[8,9,["H5704"]],[9,11,["H314"]],[11,12,["H3117"]],[12,14,["H7121"]],[14,17,["H5612"]],[17,20,["H8451"]],[20,22,["H430"]],[22,25,["H6213"]],[25,27,["H2282"]],[27,28,["H7651"]],[28,29,["H3117"]],[29,33,["H8066"]],[33,34,["H3117"]],[34,38,["H6116"]],[38,42,["H4941"]]]},{"k":12512,"v":[[0,4,["H6242"]],[4,6,["H702"]],[6,7,["H3117"]],[7,9,["H2088"]],[9,10,["H2320"]],[10,12,["H1121"]],[12,14,["H3478"]],[14,16,["H622"]],[16,18,["H6685"]],[18,21,["H8242"]],[21,23,["H127"]],[23,24,["H5921"]],[24,25,[]]]},{"k":12513,"v":[[0,3,["H2233"]],[3,5,["H3478"]],[5,7,["H914"]],[7,9,["H4480","H3605"]],[9,10,["H1121","H5236"]],[10,12,["H5975"]],[12,14,["H3034","H5921"]],[14,16,["H2403"]],[16,19,["H5771"]],[19,22,["H1"]]]},{"k":12514,"v":[[0,4,["H6965"]],[4,5,["H5921"]],[5,7,["H5977"]],[7,9,["H7121"]],[9,12,["H5612"]],[12,15,["H8451"]],[15,18,["H3068"]],[18,20,["H430"]],[20,22,["H7243"]],[22,26,["H3117"]],[26,29,["H7243"]],[29,32,["H3034"]],[32,34,["H7812"]],[34,36,["H3068"]],[36,38,["H430"]]]},{"k":12515,"v":[[0,3,["H6965"]],[3,4,["H5921"]],[4,6,["H4608"]],[6,9,["H3881"]],[9,10,["H3442"]],[10,12,["H1137"]],[12,13,["H6934"]],[13,14,["H7645"]],[14,15,["H1138"]],[15,16,["H8274"]],[16,17,["H1137"]],[17,19,["H3662"]],[19,21,["H2199"]],[21,24,["H1419"]],[24,25,["H6963"]],[25,26,["H413"]],[26,28,["H3068"]],[28,30,["H430"]]]},{"k":12516,"v":[[0,3,["H3881"]],[3,4,["H3442"]],[4,6,["H6934"]],[6,7,["H1137"]],[7,8,["H2813"]],[8,9,["H8274"]],[9,10,["H1941"]],[10,11,["H7645"]],[11,13,["H6611"]],[13,14,["H559"]],[14,16,["H6965"]],[16,18,["H1288","(H853)"]],[18,20,["H3068"]],[20,22,["H430"]],[22,24,["H4480","H5769"]],[24,25,["H5704"]],[25,26,["H5769"]],[26,28,["H1288"]],[28,31,["H3519"]],[31,32,["H8034"]],[32,35,["H7311"]],[35,36,["H5921"]],[36,37,["H3605"]],[37,38,["H1293"]],[38,40,["H8416"]]]},{"k":12517,"v":[[0,1,["H859"]],[1,3,["H1931"]],[3,5,["H3068"]],[5,6,["H905"]],[6,7,["H859"]],[7,9,["H6213","(H853)"]],[9,10,["H8064"]],[10,12,["H8064"]],[12,14,["H8064"]],[14,16,["H3605"]],[16,18,["H6635"]],[18,20,["H776"]],[20,22,["H3605"]],[22,24,["H834"]],[24,26,["H5921"]],[26,28,["H3220"]],[28,30,["H3605"]],[30,31,["H834"]],[31,35,["H859"]],[35,36,["H2421","(H853)"]],[36,38,["H3605"]],[38,41,["H6635"]],[41,43,["H8064"]],[43,44,["H7812"]],[44,45,[]]]},{"k":12518,"v":[[0,1,["H859"]],[1,4,["H3068"]],[4,6,["H430"]],[6,7,["H834"]],[7,9,["H977"]],[9,10,["H87"]],[10,14,["H3318"]],[14,17,["H4480","H218"]],[17,20,["H3778"]],[20,22,["H7760"]],[22,25,["H8034"]],[25,27,["H85"]]]},{"k":12519,"v":[[0,2,["H4672","(H853)"]],[2,4,["H3824"]],[4,5,["H539"]],[5,6,["H6440"]],[6,9,["H3772"]],[9,11,["H1285"]],[11,12,["H5973"]],[12,15,["H5414","(H853)"]],[15,17,["H776"]],[17,20,["H3669"]],[20,22,["H2850"]],[22,24,["H567"]],[24,27,["H6522"]],[27,30,["H2983"]],[30,33,["H1622"]],[33,35,["H5414"]],[35,41,["H2233"]],[41,44,["H6965","(H853)"]],[44,46,["H1697"]],[46,47,["H3588"]],[47,48,["H859"]],[48,50,["H6662"]]]},{"k":12520,"v":[[0,3,["H7200","(H853)"]],[3,5,["H6040"]],[5,8,["H1"]],[8,10,["H4714"]],[10,12,["H8085"]],[12,14,["H2201"]],[14,15,["H5921"]],[15,17,["H5488"]],[17,18,["H3220"]]]},{"k":12521,"v":[[0,2,["H5414"]],[2,3,["H226"]],[3,5,["H4159"]],[5,7,["H6547"]],[7,10,["H3605"]],[10,12,["H5650"]],[12,15,["H3605"]],[15,17,["H5971"]],[17,20,["H776"]],[20,21,["H3588"]],[21,23,["H3045"]],[23,24,["H3588"]],[24,27,["H2102"]],[27,28,["H5921"]],[28,33,["H6213"]],[33,36,["H8034"]],[36,40,["H2088"]],[40,41,["H3117"]]]},{"k":12522,"v":[[0,4,["H1234"]],[4,6,["H3220"]],[6,7,["H6440"]],[7,13,["H5674"]],[13,15,["H8432"]],[15,18,["H3220"]],[18,22,["H3004"]],[22,25,["H7291"]],[25,27,["H7993"]],[27,30,["H4688"]],[30,31,["H3644"]],[31,33,["H68"]],[33,36,["H5794"]],[36,37,["H4325"]]]},{"k":12523,"v":[[0,3,["H5148"]],[3,7,["H3119"]],[7,10,["H6051"]],[10,11,["H5982"]],[11,15,["H3915"]],[15,18,["H5982"]],[18,20,["H784"]],[20,24,["H215"]],[24,25,["(H853)"]],[25,27,["H1870"]],[27,28,["H834"]],[28,31,["H1980"]]]},{"k":12524,"v":[[0,3,["H3381"]],[3,5,["H5921"]],[5,6,["H2022"]],[6,7,["H5514"]],[7,9,["H1696"]],[9,10,["H5973"]],[10,13,["H4480","H8064"]],[13,15,["H5414"]],[15,17,["H3477"]],[17,18,["H4941"]],[18,20,["H571"]],[20,21,["H8451"]],[21,22,["H2896"]],[22,23,["H2706"]],[23,25,["H4687"]]]},{"k":12525,"v":[[0,3,["H3045"]],[3,7,["H6944"]],[7,8,["H7676"]],[8,10,["H6680"]],[10,12,["H4687"]],[12,13,["H2706"]],[13,15,["H8451"]],[15,18,["H3027"]],[18,20,["H4872"]],[20,22,["H5650"]]]},{"k":12526,"v":[[0,2,["H5414"]],[2,4,["H3899"]],[4,6,["H4480","H8064"]],[6,9,["H7458"]],[9,12,["H3318"]],[12,13,["H4325"]],[13,19,["H4480","H5553"]],[19,22,["H6772"]],[22,24,["H559"]],[24,30,["H935"]],[30,32,["H3423","(H853)"]],[32,34,["H776"]],[34,35,["H834"]],[35,38,["H5375","(H853)","H3027"]],[38,40,["H5414"]],[40,41,[]]]},{"k":12527,"v":[[0,2,["H1992"]],[2,5,["H1"]],[5,7,["H2102"]],[7,9,["H7185","(H853)"]],[9,11,["H6203"]],[11,13,["H8085"]],[13,14,["H3808"]],[14,15,["H413"]],[15,17,["H4687"]]]},{"k":12528,"v":[[0,2,["H3985"]],[2,4,["H8085"]],[4,5,["H3808"]],[5,7,["H2142"]],[7,10,["H6381"]],[10,11,["H834"]],[11,13,["H6213"]],[13,14,["H5973"]],[14,17,["H7185","(H853)"]],[17,19,["H6203"]],[19,23,["H4805"]],[23,24,["H5414"]],[24,26,["H7218"]],[26,28,["H7725"]],[28,31,["H5659"]],[31,33,["H859"]],[33,36,["H433"]],[36,39,["H5547"]],[39,40,["H2587"]],[40,42,["H7349"]],[42,43,["H750"]],[43,45,["H639"]],[45,48,["H7227"]],[48,49,["H2617"]],[49,51,["H5800"]],[51,53,["H3808"]]]},{"k":12529,"v":[[0,1,["H637"]],[1,2,["H3588"]],[2,5,["H6213"]],[5,8,["H4541"]],[8,9,["H5695"]],[9,11,["H559"]],[11,12,["H2088"]],[12,15,["H430"]],[15,16,["H834"]],[16,19,["H5927"]],[19,22,["H4480","H4714"]],[22,25,["H6213"]],[25,26,["H1419"]],[26,27,["H5007"]]]},{"k":12530,"v":[[0,2,["H859"]],[2,5,["H7227"]],[5,6,["H7356"]],[6,7,["H5800"]],[7,9,["H3808"]],[9,12,["H4057","(H853)"]],[12,14,["H5982"]],[14,17,["H6051"]],[17,18,["H5493"]],[18,19,["H3808"]],[19,20,["H4480","H5921"]],[20,23,["H3119"]],[23,25,["H5148"]],[25,29,["H1870"]],[29,32,["H5982"]],[32,34,["H784"]],[34,36,["H3915"]],[36,40,["H215"]],[40,43,["H1870"]],[43,44,["H834"]],[44,47,["H1980"]]]},{"k":12531,"v":[[0,2,["H5414"]],[2,5,["H2896"]],[5,6,["H7307"]],[6,8,["H7919"]],[8,11,["H4513"]],[11,12,["H3808"]],[12,14,["H4478"]],[14,17,["H4480","H6310"]],[17,19,["H5414"]],[19,21,["H4325"]],[21,24,["H6772"]]]},{"k":12532,"v":[[0,2,["H705"]],[2,3,["H8141"]],[3,6,["H3557"]],[6,10,["H4057"]],[10,14,["H2637"]],[14,15,["H3808"]],[15,17,["H8008"]],[17,20,["H1086","H3808"]],[20,23,["H7272"]],[23,24,["H1216"]],[24,25,["H3808"]]]},{"k":12533,"v":[[0,3,["H5414"]],[3,5,["H4467"]],[5,7,["H5971"]],[7,10,["H2505"]],[10,13,["H6285"]],[13,16,["H3423","(H853)"]],[16,18,["H776"]],[18,20,["H5511"]],[20,23,["H776"]],[23,26,["H4428"]],[26,28,["H2809"]],[28,31,["H776"]],[31,33,["H5747"]],[33,34,["H4428"]],[34,36,["H1316"]]]},{"k":12534,"v":[[0,2,["H1121"]],[2,4,["H7235"]],[4,8,["H3556"]],[8,10,["H8064"]],[10,12,["H935"]],[12,14,["H413"]],[14,16,["H776"]],[16,18,["H834"]],[18,21,["H559"]],[21,24,["H1"]],[24,29,["H935"]],[29,31,["H3423"]],[31,32,[]]]},{"k":12535,"v":[[0,3,["H1121"]],[3,5,["H935"]],[5,7,["H3423","(H853)"]],[7,9,["H776"]],[9,12,["H3665"]],[12,13,["H6440"]],[13,14,["(H853)"]],[14,16,["H3427"]],[16,19,["H776"]],[19,21,["H3669"]],[21,23,["H5414"]],[23,27,["H3027"]],[27,30,["H4428"]],[30,33,["H5971"]],[33,36,["H776"]],[36,40,["H6213"]],[40,45,["H7522"]]]},{"k":12536,"v":[[0,3,["H3920"]],[3,4,["H1219"]],[4,5,["H5892"]],[5,8,["H8082"]],[8,9,["H127"]],[9,11,["H3423"]],[11,12,["H1004"]],[12,13,["H4392"]],[13,15,["H3605"]],[15,16,["H2898"]],[16,17,["H953"]],[17,18,["H2672"]],[18,19,["H3754"]],[19,21,["H2132"]],[21,23,["H3978"]],[23,24,["H6086"]],[24,26,["H7230"]],[26,30,["H398"]],[30,33,["H7646"]],[33,36,["H8080"]],[36,39,["H5727"]],[39,42,["H1419"]],[42,43,["H2898"]]]},{"k":12537,"v":[[0,4,["H4784"]],[4,6,["H4775"]],[6,10,["H7993","(H853)"]],[10,12,["H8451"]],[12,13,["H310"]],[13,15,["H1458"]],[15,17,["H2026"]],[17,19,["H5030"]],[19,20,["H834"]],[20,21,["H5749"]],[21,25,["H7725"]],[25,27,["H413"]],[27,31,["H6213"]],[31,32,["H1419"]],[32,33,["H5007"]]]},{"k":12538,"v":[[0,3,["H5414"]],[3,7,["H3027"]],[7,10,["H6862"]],[10,12,["H6887"]],[12,17,["H6256"]],[17,20,["H6869"]],[20,23,["H6817"]],[23,24,["H413"]],[24,26,["H859"]],[26,27,["H8085"]],[27,30,["H4480","H8064"]],[30,35,["H7227"]],[35,36,["H7356"]],[36,38,["H5414"]],[38,40,["H3467"]],[40,42,["H3467"]],[42,47,["H4480","H3027"]],[47,50,["H6862"]]]},{"k":12539,"v":[[0,5,["H5117"]],[5,7,["H6213"]],[7,8,["H7451"]],[8,9,["H7725"]],[9,10,["H6440"]],[10,13,["H5800"]],[13,18,["H3027"]],[18,21,["H341"]],[21,27,["H7287"]],[27,33,["H7725"]],[33,35,["H2199"]],[35,38,["H859"]],[38,39,["H8085"]],[39,42,["H4480","H8064"]],[42,44,["H7227"]],[44,45,["H6256"]],[45,48,["H5337"]],[48,53,["H7356"]]]},{"k":12540,"v":[[0,2,["H5749"]],[2,10,["H7725"]],[10,11,["H413"]],[11,13,["H8451"]],[13,15,["H1992"]],[15,17,["H2102"]],[17,19,["H8085"]],[19,20,["H3808"]],[20,23,["H4687"]],[23,25,["H2398"]],[25,28,["H4941"]],[28,29,["H834"]],[29,32,["H120"]],[32,33,["H6213"]],[33,36,["H2421"]],[36,40,["H5414","H5637"]],[40,42,["H3802"]],[42,44,["H7185"]],[44,46,["H6203"]],[46,49,["H3808"]],[49,50,["H8085"]]]},{"k":12541,"v":[[0,2,["H7227"]],[2,3,["H8141"]],[3,6,["H4900","H5921"]],[6,9,["H5749"]],[9,14,["H7307"]],[14,15,["H3027"]],[15,17,["H5030"]],[17,21,["H3808"]],[21,23,["H238"]],[23,25,["H5414"]],[25,30,["H3027"]],[30,33,["H5971"]],[33,36,["H776"]]]},{"k":12542,"v":[[0,4,["H7227"]],[4,5,["H7356"]],[5,9,["H3808"]],[9,11,["H6213","H3617"]],[11,13,["H3808"]],[13,14,["H5800"]],[14,16,["H3588"]],[16,17,["H859"]],[17,20,["H2587"]],[20,22,["H7349"]],[22,23,["H410"]]]},{"k":12543,"v":[[0,1,["H6258"]],[1,4,["H430"]],[4,6,["H1419"]],[6,8,["H1368"]],[8,11,["H3372"]],[11,12,["H410"]],[12,14,["H8104"]],[14,15,["H1285"]],[15,17,["H2617"]],[17,19,["H408","(H853)"]],[19,20,["H3605"]],[20,22,["H8513"]],[22,24,["H4591"]],[24,25,["H6440"]],[25,27,["H834"]],[27,30,["H4672"]],[30,34,["H4428"]],[34,37,["H8269"]],[37,41,["H3548"]],[41,45,["H5030"]],[45,49,["H1"]],[49,52,["H3605"]],[52,54,["H5971"]],[54,57,["H4480","H3117"]],[57,60,["H4428"]],[60,62,["H804"]],[62,63,["H5704"]],[63,64,["H2088"]],[64,65,["H3117"]]]},{"k":12544,"v":[[0,2,["H859"]],[2,4,["H6662"]],[4,5,["H5921"]],[5,6,["H3605"]],[6,9,["H935"]],[9,10,["H5921"]],[10,12,["H3588"]],[12,15,["H6213"]],[15,16,["H571"]],[16,18,["H587"]],[18,21,["H7561"]]]},{"k":12545,"v":[[0,4,["H4428"]],[4,6,["H8269"]],[6,8,["H3548"]],[8,9,["H3808"]],[9,11,["H1"]],[11,12,["H6213"]],[12,14,["H8451"]],[14,15,["H3808"]],[15,16,["H7181"]],[16,17,["H413"]],[17,19,["H4687"]],[19,22,["H5715"]],[22,23,["H834"]],[23,26,["H5749"]],[26,28,[]]]},{"k":12546,"v":[[0,2,["H1992"]],[2,4,["H3808"]],[4,5,["H5647"]],[5,9,["H4438"]],[9,13,["H7227"]],[13,14,["H2898"]],[14,15,["H834"]],[15,17,["H5414"]],[17,22,["H7342"]],[22,24,["H8082"]],[24,25,["H776"]],[25,26,["H834"]],[26,28,["H5414"]],[28,29,["H6440"]],[29,31,["H3808"]],[31,32,["H7725"]],[32,36,["H7451"]],[36,37,["H4480","H4611"]]]},{"k":12547,"v":[[0,1,["H2009"]],[1,2,["H587"]],[2,4,["H5650"]],[4,6,["H3117"]],[6,10,["H776"]],[10,11,["H834"]],[11,13,["H5414"]],[13,16,["H1"]],[16,18,["H398","(H853)"]],[18,20,["H6529"]],[20,24,["H2898"]],[24,26,["H2009"]],[26,27,["H587"]],[27,29,["H5650"]],[29,30,["H5921"]],[30,31,[]]]},{"k":12548,"v":[[0,4,["H7235"]],[4,5,["H8393"]],[5,8,["H4428"]],[8,9,["H834"]],[9,12,["H5414"]],[12,13,["H5921"]],[13,18,["H2403"]],[18,22,["H4910"]],[22,23,["H5921"]],[23,25,["H1472"]],[25,29,["H929"]],[29,32,["H7522"]],[32,34,["H587"]],[34,37,["H1419"]],[37,38,["H6869"]]]},{"k":12549,"v":[[0,4,["H3605"]],[4,5,["H2063"]],[5,6,["H587"]],[6,7,["H3772"]],[7,9,["H548"]],[9,12,["H3789"]],[12,16,["H8269"]],[16,17,["H3881"]],[17,19,["H3548"]],[19,20,["H2856","H5921"]],[20,22,[]]]},{"k":12550,"v":[[0,4,["H2856","H5921"]],[4,6,["H5166"]],[6,8,["H8660"]],[8,10,["H1121"]],[10,12,["H2446"]],[12,14,["H6667"]]]},{"k":12551,"v":[[0,1,["H8304"]],[1,2,["H5838"]],[2,3,["H3414"]]]},{"k":12552,"v":[[0,1,["H6583"]],[1,2,["H568"]],[2,3,["H4441"]]]},{"k":12553,"v":[[0,1,["H2407"]],[1,2,["H7645"]],[2,3,["H4409"]]]},{"k":12554,"v":[[0,1,["H2766"]],[1,2,["H4822"]],[2,3,["H5662"]]]},{"k":12555,"v":[[0,1,["H1840"]],[1,2,["H1599"]],[2,3,["H1263"]]]},{"k":12556,"v":[[0,1,["H4918"]],[1,2,["H29"]],[2,3,["H4326"]]]},{"k":12557,"v":[[0,1,["H4590"]],[1,2,["H1084"]],[2,3,["H8098"]],[3,4,["H428"]],[4,7,["H3548"]]]},{"k":12558,"v":[[0,3,["H3881"]],[3,5,["H3442"]],[5,7,["H1121"]],[7,9,["H245"]],[9,10,["H1131"]],[10,13,["H4480","H1121"]],[13,15,["H2582"]],[15,16,["H6934"]]]},{"k":12559,"v":[[0,3,["H251"]],[3,4,["H7645"]],[4,5,["H1941"]],[5,6,["H7042"]],[6,7,["H6411"]],[7,8,["H2605"]]]},{"k":12560,"v":[[0,1,["H4316"]],[1,2,["H7340"]],[2,3,["H2811"]]]},{"k":12561,"v":[[0,1,["H2139"]],[1,2,["H8274"]],[2,3,["H7645"]]]},{"k":12562,"v":[[0,1,["H1941"]],[1,2,["H1137"]],[2,3,["H1148"]]]},{"k":12563,"v":[[0,2,["H7218"]],[2,5,["H5971"]],[5,6,["H6551"]],[6,7,["H6355"]],[7,8,["H5867"]],[8,9,["H2240"]],[9,10,["H1137"]]]},{"k":12564,"v":[[0,1,["H1138"]],[1,2,["H5803"]],[2,3,["H893"]]]},{"k":12565,"v":[[0,1,["H138"]],[1,2,["H902"]],[2,3,["H5720"]]]},{"k":12566,"v":[[0,1,["H333"]],[1,2,["H2396"]],[2,3,["H5809"]]]},{"k":12567,"v":[[0,1,["H1941"]],[1,2,["H2828"]],[2,3,["H1209"]]]},{"k":12568,"v":[[0,1,["H2756"]],[1,2,["H6068"]],[2,3,["H5109"]]]},{"k":12569,"v":[[0,1,["H4047"]],[1,2,["H4918"]],[2,3,["H2387"]]]},{"k":12570,"v":[[0,1,["H4898"]],[1,2,["H6659"]],[2,3,["H3037"]]]},{"k":12571,"v":[[0,1,["H6410"]],[1,2,["H2605"]],[2,3,["H6043"]]]},{"k":12572,"v":[[0,1,["H1954"]],[1,2,["H2608"]],[2,3,["H2815"]]]},{"k":12573,"v":[[0,1,["H3873"]],[1,2,["H6401"]],[2,3,["H7733"]]]},{"k":12574,"v":[[0,1,["H7348"]],[1,2,["H2812"]],[2,3,["H4641"]]]},{"k":12575,"v":[[0,2,["H281"]],[2,3,["H2605"]],[3,4,["H6052"]]]},{"k":12576,"v":[[0,1,["H4409"]],[1,2,["H2766"]],[2,3,["H1196"]]]},{"k":12577,"v":[[0,3,["H7605"]],[3,6,["H5971"]],[6,8,["H3548"]],[8,10,["H3881"]],[10,12,["H7778"]],[12,14,["H7891"]],[14,16,["H5411"]],[16,18,["H3605"]],[18,23,["H914"]],[23,26,["H4480","H5971"]],[26,29,["H776"]],[29,30,["H413"]],[30,32,["H8451"]],[32,34,["H430"]],[34,36,["H802"]],[36,38,["H1121"]],[38,41,["H1323"]],[41,42,["H3605"]],[42,45,["H3045"]],[45,48,["H995"]]]},{"k":12578,"v":[[0,2,["H2388"]],[2,3,["H5921"]],[3,5,["H251"]],[5,7,["H117"]],[7,9,["H935"]],[9,12,["H423"]],[12,16,["H7621"]],[16,18,["H1980"]],[18,20,["H430"]],[20,21,["H8451"]],[21,22,["H834"]],[22,24,["H5414"]],[24,25,["H3027"]],[25,26,["H4872"]],[26,28,["H5650"]],[28,30,["H430"]],[30,33,["H8104"]],[33,35,["H6213","(H853)"]],[35,36,["H3605"]],[36,38,["H4687"]],[38,41,["H3068"]],[41,43,["H113"]],[43,46,["H4941"]],[46,49,["H2706"]]]},{"k":12579,"v":[[0,2,["H834"]],[2,5,["H3808"]],[5,6,["H5414"]],[6,8,["H1323"]],[8,11,["H5971"]],[11,14,["H776"]],[14,15,["H3808"]],[15,16,["H3947"]],[16,18,["H1323"]],[18,21,["H1121"]]]},{"k":12580,"v":[[0,4,["H5971"]],[4,7,["H776"]],[7,8,["H935","(H853)"]],[8,9,["H4728"]],[9,11,["H3605"]],[11,12,["H7668"]],[12,15,["H7676"]],[15,16,["H3117"]],[16,18,["H4376"]],[18,22,["H3808"]],[22,23,["H3947"]],[23,25,["H4480"]],[25,29,["H7676"]],[29,33,["H6944"]],[33,34,["H3117"]],[34,39,["H5203","(H853)"]],[39,41,["H7637"]],[41,42,["H8141"]],[42,45,["H4855"]],[45,47,["H3605"]],[47,48,["H3027"]]]},{"k":12581,"v":[[0,3,["H5975"]],[3,4,["H4687"]],[4,5,["H5921"]],[5,8,["H5414"]],[8,9,["H5921"]],[9,10,["H8141"]],[10,14,["H7992"]],[14,17,["H8255"]],[17,20,["H5656"]],[20,23,["H1004"]],[23,26,["H430"]]]},{"k":12582,"v":[[0,3,["H3899","H4635"]],[3,7,["H8548"]],[7,9,["H4503"]],[9,13,["H8548"]],[13,15,["H5930"]],[15,18,["H7676"]],[18,22,["H2320"]],[22,26,["H4150"]],[26,30,["H6944"]],[30,36,["H2403"]],[36,40,["H3722"]],[40,41,["H5921"]],[41,42,["H3478"]],[42,45,["H3605"]],[45,47,["H4399"]],[47,50,["H1004"]],[50,53,["H430"]]]},{"k":12583,"v":[[0,6,["H5307","H1486"]],[6,8,["H3548"]],[8,10,["H3881"]],[10,13,["H5971"]],[13,14,["H5921"]],[14,16,["H6086"]],[16,17,["H7133"]],[17,19,["H935"]],[19,23,["H1004"]],[23,26,["H430"]],[26,29,["H1004"]],[29,32,["H1"]],[32,34,["H6256"]],[34,35,["H2163"]],[35,36,["H8141"]],[36,38,["H8141"]],[38,40,["H1197"]],[40,41,["H5921"]],[41,43,["H4196"]],[43,46,["H3068"]],[46,48,["H430"]],[48,52,["H3789"]],[52,55,["H8451"]]]},{"k":12584,"v":[[0,3,["H935","(H853)"]],[3,5,["H1061"]],[5,8,["H127"]],[8,11,["H1061"]],[11,13,["H3605"]],[13,14,["H6529"]],[14,16,["H3605"]],[16,17,["H6086"]],[17,18,["H8141"]],[18,20,["H8141"]],[20,23,["H1004"]],[23,26,["H3068"]]]},{"k":12585,"v":[[0,3,["H1060"]],[3,6,["H1121"]],[6,10,["H929"]],[10,14,["H3789"]],[14,17,["H8451"]],[17,20,["H1062"]],[20,23,["H1241"]],[23,27,["H6629"]],[27,29,["H935"]],[29,32,["H1004"]],[32,35,["H430"]],[35,38,["H3548"]],[38,40,["H8334"]],[40,43,["H1004"]],[43,46,["H430"]]]},{"k":12586,"v":[[0,5,["H935"]],[5,7,["H7225"]],[7,10,["H6182"]],[10,13,["H8641"]],[13,16,["H6529"]],[16,18,["H3605"]],[18,21,["H6086"]],[21,23,["H8492"]],[23,26,["H3323"]],[26,29,["H3548"]],[29,30,["H413"]],[30,32,["H3957"]],[32,35,["H1004"]],[35,38,["H430"]],[38,41,["H4643"]],[41,44,["H127"]],[44,47,["H3881"]],[47,50,["H1992"]],[50,51,["H3881"]],[51,55,["H6237"]],[55,57,["H3605"]],[57,59,["H5892"]],[59,62,["H5656"]]]},{"k":12587,"v":[[0,3,["H3548"]],[3,5,["H1121"]],[5,7,["H175"]],[7,9,["H1961"]],[9,10,["H5973"]],[10,12,["H3881"]],[12,15,["H3881"]],[15,17,["H6237"]],[17,20,["H3881"]],[20,23,["H5927","(H853)"]],[23,25,["H4643"]],[25,28,["H4643"]],[28,31,["H1004"]],[31,34,["H430"]],[34,35,["H413"]],[35,37,["H3957"]],[37,40,["H214"]],[40,41,["H1004"]]]},{"k":12588,"v":[[0,1,["H3588"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,8,["H1121"]],[8,10,["H3878"]],[10,12,["H935","(H853)"]],[12,14,["H8641"]],[14,17,["H1715"]],[17,21,["H8492"]],[21,24,["H3323"]],[24,25,["H413"]],[25,27,["H3957"]],[27,28,["H8033"]],[28,31,["H3627"]],[31,34,["H4720"]],[34,37,["H3548"]],[37,39,["H8334"]],[39,42,["H7778"]],[42,45,["H7891"]],[45,49,["H3808"]],[49,50,["H5800","(H853)"]],[50,52,["H1004"]],[52,55,["H430"]]]},{"k":12589,"v":[[0,3,["H8269"]],[3,6,["H5971"]],[6,7,["H3427"]],[7,9,["H3389"]],[9,11,["H7605"]],[11,14,["H5971"]],[14,16,["H5307"]],[16,17,["H1486"]],[17,19,["H935"]],[19,20,["H259"]],[20,21,["H4480"]],[21,22,["H6235"]],[22,24,["H3427"]],[24,26,["H3389"]],[26,28,["H6944"]],[28,29,["H5892"]],[29,31,["H8672"]],[31,32,["H3027"]],[32,37,["H5892"]]]},{"k":12590,"v":[[0,3,["H5971"]],[3,4,["H1288"]],[4,5,["H3605"]],[5,7,["H376"]],[7,11,["H5068"]],[11,13,["H3427"]],[13,15,["H3389"]]]},{"k":12591,"v":[[0,2,["H428"]],[2,5,["H7218"]],[5,8,["H4082"]],[8,9,["H834"]],[9,10,["H3427"]],[10,12,["H3389"]],[12,16,["H5892"]],[16,18,["H3063"]],[18,19,["H3427"]],[19,21,["H376"]],[21,24,["H272"]],[24,27,["H5892"]],[27,30,["H3478"]],[30,32,["H3548"]],[32,35,["H3881"]],[35,38,["H5411"]],[38,41,["H1121"]],[41,43,["H8010"]],[43,44,["H5650"]]]},{"k":12592,"v":[[0,3,["H3389"]],[3,4,["H3427"]],[4,8,["H4480","H1121"]],[8,10,["H3063"]],[10,14,["H4480","H1121"]],[14,16,["H1144"]],[16,19,["H4480","H1121"]],[19,21,["H3063"]],[21,22,["H6265"]],[22,24,["H1121"]],[24,26,["H5818"]],[26,28,["H1121"]],[28,30,["H2148"]],[30,32,["H1121"]],[32,34,["H568"]],[34,36,["H1121"]],[36,38,["H8203"]],[38,40,["H1121"]],[40,42,["H4111"]],[42,45,["H4480","H1121"]],[45,47,["H6557"]]]},{"k":12593,"v":[[0,2,["H4641"]],[2,4,["H1121"]],[4,6,["H1263"]],[6,8,["H1121"]],[8,10,["H3626"]],[10,12,["H1121"]],[12,14,["H2382"]],[14,16,["H1121"]],[16,18,["H5718"]],[18,20,["H1121"]],[20,22,["H3114"]],[22,24,["H1121"]],[24,26,["H2148"]],[26,28,["H1121"]],[28,30,["H8023"]]]},{"k":12594,"v":[[0,1,["H3605"]],[1,3,["H1121"]],[3,5,["H6557"]],[5,7,["H3427"]],[7,9,["H3389"]],[9,11,["H702"]],[11,12,["H3967"]],[12,13,["H8346"]],[13,15,["H8083"]],[15,16,["H2428"]],[16,17,["H376"]]]},{"k":12595,"v":[[0,2,["H428"]],[2,5,["H1121"]],[5,7,["H1144"]],[7,8,["H5543"]],[8,10,["H1121"]],[10,12,["H4918"]],[12,14,["H1121"]],[14,16,["H3133"]],[16,18,["H1121"]],[18,20,["H6305"]],[20,22,["H1121"]],[22,24,["H6964"]],[24,26,["H1121"]],[26,28,["H4641"]],[28,30,["H1121"]],[30,32,["H384"]],[32,34,["H1121"]],[34,36,["H3470"]]]},{"k":12596,"v":[[0,2,["H310"]],[2,4,["H1373"]],[4,5,["H5543"]],[5,6,["H8672"]],[6,7,["H3967"]],[7,8,["H6242"]],[8,10,["H8083"]]]},{"k":12597,"v":[[0,2,["H3100"]],[2,4,["H1121"]],[4,6,["H2147"]],[6,9,["H6496","H5921"]],[9,11,["H3063"]],[11,13,["H1121"]],[13,15,["H5574"]],[15,17,["H4932"]],[17,18,["H5921"]],[18,20,["H5892"]]]},{"k":12598,"v":[[0,1,["H4480"]],[1,3,["H3548"]],[3,4,["H3048"]],[4,6,["H1121"]],[6,8,["H3114"]],[8,9,["H3199"]]]},{"k":12599,"v":[[0,1,["H8304"]],[1,3,["H1121"]],[3,5,["H2518"]],[5,7,["H1121"]],[7,9,["H4918"]],[9,11,["H1121"]],[11,13,["H6659"]],[13,15,["H1121"]],[15,17,["H4812"]],[17,19,["H1121"]],[19,21,["H285"]],[21,24,["H5057"]],[24,27,["H1004"]],[27,29,["H430"]]]},{"k":12600,"v":[[0,3,["H251"]],[3,5,["H6213"]],[5,7,["H4399"]],[7,10,["H1004"]],[10,12,["H8083"]],[12,13,["H3967"]],[13,14,["H6242"]],[14,16,["H8147"]],[16,18,["H5718"]],[18,20,["H1121"]],[20,22,["H3395"]],[22,24,["H1121"]],[24,26,["H6421"]],[26,28,["H1121"]],[28,30,["H557"]],[30,32,["H1121"]],[32,34,["H2148"]],[34,36,["H1121"]],[36,38,["H6583"]],[38,40,["H1121"]],[40,42,["H4441"]]]},{"k":12601,"v":[[0,3,["H251"]],[3,4,["H7218"]],[4,7,["H1"]],[7,9,["H3967"]],[9,10,["H705"]],[10,12,["H8147"]],[12,14,["H6023"]],[14,16,["H1121"]],[16,18,["H5832"]],[18,20,["H1121"]],[20,22,["H273"]],[22,24,["H1121"]],[24,26,["H4919"]],[26,28,["H1121"]],[28,30,["H564"]]]},{"k":12602,"v":[[0,3,["H251"]],[3,5,["H1368"]],[5,7,["H2428"]],[7,9,["H3967"]],[9,10,["H6242"]],[10,12,["H8083"]],[12,15,["H6496","H5921"]],[15,17,["H2068"]],[17,19,["H1121"]],[19,24,["H1419"]],[24,25,[]]]},{"k":12603,"v":[[0,2,["H4480"]],[2,4,["H3881"]],[4,5,["H8098"]],[5,7,["H1121"]],[7,9,["H2815"]],[9,11,["H1121"]],[11,13,["H5840"]],[13,15,["H1121"]],[15,17,["H2811"]],[17,19,["H1121"]],[19,21,["H1138"]]]},{"k":12604,"v":[[0,2,["H7678"]],[2,4,["H3107"]],[4,7,["H4480","H7218"]],[7,10,["H3881"]],[10,13,["H5921"]],[13,16,["H2435"]],[16,17,["H4399"]],[17,20,["H1004"]],[20,22,["H430"]]]},{"k":12605,"v":[[0,2,["H4983"]],[2,4,["H1121"]],[4,6,["H4318"]],[6,8,["H1121"]],[8,10,["H2067"]],[10,12,["H1121"]],[12,14,["H623"]],[14,17,["H7218"]],[17,19,["H8462"]],[19,21,["H3034"]],[21,23,["H8605"]],[23,25,["H1229"]],[25,27,["H4932"]],[27,30,["H4480","H251"]],[30,32,["H5653"]],[32,34,["H1121"]],[34,36,["H8051"]],[36,38,["H1121"]],[38,40,["H1559"]],[40,42,["H1121"]],[42,44,["H3038"]]]},{"k":12606,"v":[[0,1,["H3605"]],[1,3,["H3881"]],[3,6,["H6944"]],[6,7,["H5892"]],[7,10,["H3967"]],[10,11,["H8084"]],[11,13,["H702"]]]},{"k":12607,"v":[[0,3,["H7778"]],[3,4,["H6126"]],[4,5,["H2929"]],[5,8,["H251"]],[8,10,["H8104"]],[10,12,["H8179"]],[12,15,["H3967"]],[15,16,["H7657"]],[16,18,["H8147"]]]},{"k":12608,"v":[[0,3,["H7605"]],[3,5,["H3478"]],[5,8,["H3548"]],[8,11,["H3881"]],[11,14,["H3605"]],[14,16,["H5892"]],[16,18,["H3063"]],[18,20,["H376"]],[20,23,["H5159"]]]},{"k":12609,"v":[[0,3,["H5411"]],[3,4,["H3427"]],[4,6,["H6077"]],[6,8,["H6727"]],[8,10,["H1658"]],[10,12,["H5921"]],[12,14,["H5411"]]]},{"k":12610,"v":[[0,2,["H6496"]],[2,6,["H3881"]],[6,8,["H3389"]],[8,10,["H5813"]],[10,12,["H1121"]],[12,14,["H1137"]],[14,16,["H1121"]],[16,18,["H2811"]],[18,20,["H1121"]],[20,22,["H4983"]],[22,24,["H1121"]],[24,26,["H4316"]],[26,29,["H4480","H1121"]],[29,31,["H623"]],[31,33,["H7891"]],[33,35,["H5048"]],[35,37,["H4399"]],[37,40,["H1004"]],[40,42,["H430"]]]},{"k":12611,"v":[[0,1,["H3588"]],[1,5,["H4428"]],[5,6,["H4687"]],[6,7,["H5921"]],[7,12,["H548"]],[12,15,["H5921"]],[15,17,["H7891"]],[17,18,["H1697"]],[18,21,["H3117","H3117"]]]},{"k":12612,"v":[[0,2,["H6611"]],[2,4,["H1121"]],[4,6,["H4898"]],[6,9,["H4480","H1121"]],[9,11,["H2226"]],[11,13,["H1121"]],[13,15,["H3063"]],[15,19,["H4428"]],[19,20,["H3027"]],[20,22,["H3605"]],[22,23,["H1697"]],[23,26,["H5971"]]]},{"k":12613,"v":[[0,2,["H413"]],[2,4,["H2691"]],[4,7,["H7704"]],[7,11,["H4480","H1121"]],[11,13,["H3063"]],[13,14,["H3427"]],[14,16,["H7153"]],[16,20,["H2691"]],[20,24,["H1769"]],[24,28,["H1323"]],[28,32,["H3343"]],[32,36,["H1323"]],[36,37,[]]]},{"k":12614,"v":[[0,3,["H3442"]],[3,6,["H4137"]],[6,9,["H1046"]]]},{"k":12615,"v":[[0,3,["H2705"]],[3,6,["H884"]],[6,10,["H1323"]],[10,11,[]]]},{"k":12616,"v":[[0,3,["H6860"]],[3,6,["H4368"]],[6,10,["H1323"]],[10,11,[]]]},{"k":12617,"v":[[0,3,["H5884"]],[3,6,["H6881"]],[6,9,["H3412"]]]},{"k":12618,"v":[[0,1,["H2182"]],[1,2,["H5725"]],[2,6,["H2691"]],[6,8,["H3923"]],[8,11,["H7704"]],[11,14,["H5825"]],[14,18,["H1323"]],[18,22,["H2583"]],[22,24,["H4480","H884"]],[24,25,["H5704"]],[25,27,["H1516"]],[27,29,["H2011"]]]},{"k":12619,"v":[[0,2,["H1121"]],[2,5,["H1144"]],[5,7,["H4480","H1387"]],[7,10,["H4363"]],[10,12,["H5857"]],[12,14,["H1008"]],[14,18,["H1323"]]]},{"k":12620,"v":[[0,3,["H6068"]],[3,4,["H5011"]],[4,5,["H6055"]]]},{"k":12621,"v":[[0,1,["H2674"]],[1,2,["H7414"]],[2,3,["H1664"]]]},{"k":12622,"v":[[0,1,["H2307"]],[1,2,["H6650"]],[2,3,["H5041"]]]},{"k":12623,"v":[[0,1,["H3850"]],[1,3,["H207"]],[3,5,["H1516"]],[5,7,["H2798"]]]},{"k":12624,"v":[[0,2,["H4480"]],[2,4,["H3881"]],[4,6,["H4256"]],[6,8,["H3063"]],[8,11,["H1144"]]]},{"k":12625,"v":[[0,2,["H428"]],[2,5,["H3548"]],[5,8,["H3881"]],[8,9,["H834"]],[9,11,["H5927"]],[11,12,["H5973"]],[12,13,["H2216"]],[13,15,["H1121"]],[15,17,["H7597"]],[17,19,["H3442"]],[19,20,["H8304"]],[20,21,["H3414"]],[21,22,["H5830"]]]},{"k":12626,"v":[[0,1,["H568"]],[1,2,["H4409"]],[2,3,["H2407"]]]},{"k":12627,"v":[[0,1,["H7935"]],[1,2,["H7348"]],[2,3,["H4822"]]]},{"k":12628,"v":[[0,1,["H5714"]],[1,2,["H1599"]],[2,3,["H29"]]]},{"k":12629,"v":[[0,1,["H4326"]],[1,2,["H4573"]],[2,3,["H1083"]]]},{"k":12630,"v":[[0,1,["H8098"]],[1,3,["H3114"]],[3,4,["H3048"]]]},{"k":12631,"v":[[0,1,["H5543"]],[1,2,["H5987"]],[2,3,["H2518"]],[3,4,["H3048"]],[4,5,["H428"]],[5,8,["H7218"]],[8,11,["H3548"]],[11,15,["H251"]],[15,18,["H3117"]],[18,20,["H3442"]]]},{"k":12632,"v":[[0,3,["H3881"]],[3,4,["H3442"]],[4,5,["H1131"]],[5,6,["H6934"]],[6,7,["H8274"]],[7,8,["H3063"]],[8,10,["H4983"]],[10,13,["H5921"]],[13,15,["H1960"]],[15,16,["H1931"]],[16,19,["H251"]]]},{"k":12633,"v":[[0,2,["H1229"]],[2,4,["H6042"]],[4,6,["H251"]],[6,9,["H5048"]],[9,13,["H4931"]]]},{"k":12634,"v":[[0,2,["H3442"]],[2,3,["H3205","(H853)"]],[3,4,["H3113"]],[4,5,["H3113"]],[5,7,["H3205","(H853)"]],[7,8,["H475"]],[8,10,["H475"]],[10,11,["H3205","(H853)"]],[11,12,["H3111"]]]},{"k":12635,"v":[[0,2,["H3111"]],[2,3,["H3205","(H853)"]],[3,4,["H3129"]],[4,6,["H3129"]],[6,7,["H3205","(H853)"]],[7,8,["H3037"]]]},{"k":12636,"v":[[0,4,["H3117"]],[4,6,["H3113"]],[6,7,["H1961"]],[7,8,["H3548"]],[8,10,["H7218"]],[10,13,["H1"]],[13,15,["H8304"]],[15,16,["H4811"]],[16,18,["H3414"]],[18,19,["H2608"]]]},{"k":12637,"v":[[0,2,["H5830"]],[2,3,["H4918"]],[3,5,["H568"]],[5,6,["H3076"]]]},{"k":12638,"v":[[0,2,["H4409"]],[2,3,["H3129"]],[3,5,["H7645"]],[5,6,["H3130"]]]},{"k":12639,"v":[[0,2,["H2766"]],[2,3,["H5733"]],[3,5,["H4812"]],[5,6,["H2517"]]]},{"k":12640,"v":[[0,2,["H5714"]],[2,3,["H2148"]],[3,5,["H1599"]],[5,6,["H4918"]]]},{"k":12641,"v":[[0,2,["H29"]],[2,3,["H2147"]],[3,5,["H4509"]],[5,7,["H4153"]],[7,8,["H6408"]]]},{"k":12642,"v":[[0,2,["H1083"]],[2,3,["H8051"]],[3,5,["H8098"]],[5,6,["H3083"]]]},{"k":12643,"v":[[0,3,["H3114"]],[3,4,["H4982"]],[4,6,["H3048"]],[6,7,["H5813"]]]},{"k":12644,"v":[[0,2,["H5543"]],[2,3,["H7040"]],[3,5,["H5987"]],[5,6,["H5677"]]]},{"k":12645,"v":[[0,2,["H2518"]],[2,3,["H2811"]],[3,5,["H3048"]],[5,6,["H5417"]]]},{"k":12646,"v":[[0,2,["H3881"]],[2,5,["H3117"]],[5,7,["H475"]],[7,8,["H3111"]],[8,10,["H3110"]],[10,12,["H3037"]],[12,14,["H3789"]],[14,15,["H7218"]],[15,18,["H1"]],[18,21,["H3548"]],[21,22,["H5921"]],[22,24,["H4438"]],[24,26,["H1867"]],[26,28,["H6542"]]]},{"k":12647,"v":[[0,2,["H1121"]],[2,4,["H3878"]],[4,6,["H7218"]],[6,9,["H1"]],[9,11,["H3789"]],[11,12,["H5921"]],[12,14,["H5612"]],[14,17,["H1697"]],[17,19,["H5704"]],[19,21,["H3117"]],[21,23,["H3110"]],[23,25,["H1121"]],[25,27,["H475"]]]},{"k":12648,"v":[[0,3,["H7218"]],[3,6,["H3881"]],[6,7,["H2811"]],[7,8,["H8274"]],[8,10,["H3442"]],[10,12,["H1121"]],[12,14,["H6934"]],[14,17,["H251"]],[17,19,["H5048"]],[19,22,["H1984"]],[22,26,["H3034"]],[26,30,["H4687"]],[30,32,["H1732"]],[32,34,["H376"]],[34,36,["H430"]],[36,37,["H4929"]],[37,39,["H5980"]],[39,40,["H4929"]]]},{"k":12649,"v":[[0,1,["H4983"]],[1,3,["H1229"]],[3,4,["H5662"]],[4,5,["H4918"]],[5,6,["H2929"]],[6,7,["H6126"]],[7,9,["H7778"]],[9,10,["H8104"]],[10,12,["H4929"]],[12,15,["H624"]],[15,18,["H8179"]]]},{"k":12650,"v":[[0,1,["H428"]],[1,5,["H3117"]],[5,7,["H3113"]],[7,9,["H1121"]],[9,11,["H3442"]],[11,13,["H1121"]],[13,15,["H3136"]],[15,19,["H3117"]],[19,21,["H5166"]],[21,23,["H6346"]],[23,26,["H5830"]],[26,28,["H3548"]],[28,30,["H5608"]]]},{"k":12651,"v":[[0,4,["H2598"]],[4,7,["H2346"]],[7,9,["H3389"]],[9,11,["H1245","(H853)"]],[11,13,["H3881"]],[13,16,["H4480","H3605"]],[16,18,["H4725"]],[18,20,["H935"]],[20,23,["H3389"]],[23,25,["H6213"]],[25,27,["H2598"]],[27,29,["H8057"]],[29,32,["H8426"]],[32,35,["H7892"]],[35,37,["H4700"]],[37,38,["H5035"]],[38,41,["H3658"]]]},{"k":12652,"v":[[0,3,["H1121"]],[3,6,["H7891"]],[6,9,["H622"]],[9,12,["H4480"]],[12,15,["H3603"]],[15,17,["H5439"]],[17,18,["H3389"]],[18,20,["H4480"]],[20,22,["H2691"]],[22,24,["H5200"]]]},{"k":12653,"v":[[0,4,["H4480","H1004"]],[4,6,["H1537"]],[6,11,["H4480","H7704"]],[11,13,["H1387"]],[13,15,["H5820"]],[15,16,["H3588"]],[16,18,["H7891"]],[18,20,["H1129"]],[20,22,["H2691"]],[22,24,["H5439"]],[24,25,["H3389"]]]},{"k":12654,"v":[[0,3,["H3548"]],[3,6,["H3881"]],[6,8,["H2891"]],[8,10,["H2891","(H853)"]],[10,12,["H5971"]],[12,15,["H8179"]],[15,18,["H2346"]]]},{"k":12655,"v":[[0,4,["H5927","(H853)"]],[4,6,["H8269"]],[6,8,["H3063"]],[8,9,["H4480","H5921"]],[9,11,["H2346"]],[11,13,["H5975"]],[13,14,["H8147"]],[14,15,["H1419"]],[15,21,["H8426"]],[21,24,["H1980"]],[24,28,["H3225"]],[28,29,["H4480","H5921"]],[29,31,["H2346"]],[31,34,["H830"]],[34,35,["H8179"]]]},{"k":12656,"v":[[0,2,["H310"]],[2,4,["H1980"]],[4,5,["H1955"]],[5,7,["H2677"]],[7,10,["H8269"]],[10,12,["H3063"]]]},{"k":12657,"v":[[0,2,["H5838"]],[2,3,["H5830"]],[3,5,["H4918"]]]},{"k":12658,"v":[[0,1,["H3063"]],[1,3,["H1144"]],[3,5,["H8098"]],[5,7,["H3414"]]]},{"k":12659,"v":[[0,6,["H4480","H1121","H3548"]],[6,8,["H2689"]],[8,10,["H2148"]],[10,12,["H1121"]],[12,14,["H3129"]],[14,16,["H1121"]],[16,18,["H8098"]],[18,20,["H1121"]],[20,22,["H4983"]],[22,24,["H1121"]],[24,26,["H4320"]],[26,28,["H1121"]],[28,30,["H2139"]],[30,32,["H1121"]],[32,34,["H623"]]]},{"k":12660,"v":[[0,3,["H251"]],[3,4,["H8098"]],[4,6,["H5832"]],[6,7,["H4450"]],[7,8,["H1562"]],[8,9,["H4597"]],[9,10,["H5417"]],[10,12,["H3063"]],[12,13,["H2607"]],[13,16,["H7892"]],[16,17,["H3627"]],[17,19,["H1732"]],[19,21,["H376"]],[21,23,["H430"]],[23,25,["H5830"]],[25,27,["H5608"]],[27,28,["H6440"]],[28,29,[]]]},{"k":12661,"v":[[0,2,["H5921"]],[2,4,["H5869"]],[4,5,["H8179"]],[5,9,["H5048"]],[9,13,["H5927"]],[13,14,["H5921"]],[14,16,["H4609"]],[16,19,["H5892"]],[19,21,["H1732"]],[21,25,["H4608"]],[25,28,["H2346"]],[28,29,["H4480","H5921"]],[29,31,["H1004"]],[31,33,["H1732"]],[33,35,["H5704"]],[35,37,["H4325"]],[37,38,["H8179"]],[38,39,["H4217"]]]},{"k":12662,"v":[[0,3,["H8145"]],[3,9,["H8426"]],[9,10,["H1980"]],[10,12,["H4136"]],[12,15,["H589"]],[15,16,["H310"]],[16,20,["H2677"]],[20,23,["H5971"]],[23,24,["H4480","H5921"]],[24,26,["H2346"]],[26,28,["H4480","H5921"]],[28,30,["H4026"]],[30,33,["H8574"]],[33,35,["H5704"]],[35,37,["H7342"]],[37,38,["H2346"]]]},{"k":12663,"v":[[0,3,["H4480","H5921"]],[3,5,["H8179"]],[5,7,["H669"]],[7,9,["H5921"]],[9,11,["H3465"]],[11,12,["H8179"]],[12,14,["H5921"]],[14,16,["H1709"]],[16,17,["H8179"]],[17,20,["H4026"]],[20,22,["H2606"]],[22,25,["H4026"]],[25,27,["H3968"]],[27,29,["H5704"]],[29,31,["H6629"]],[31,32,["H8179"]],[32,36,["H5975"]],[36,39,["H4307"]],[39,40,["H8179"]]]},{"k":12664,"v":[[0,2,["H5975"]],[2,4,["H8147"]],[4,10,["H8426"]],[10,13,["H1004"]],[13,15,["H430"]],[15,17,["H589"]],[17,20,["H2677"]],[20,23,["H5461"]],[23,24,["H5973"]],[24,25,[]]]},{"k":12665,"v":[[0,3,["H3548"]],[3,4,["H471"]],[4,5,["H4641"]],[5,6,["H4509"]],[6,7,["H4320"]],[7,8,["H454"]],[8,9,["H2148"]],[9,11,["H2608"]],[11,13,["H2689"]]]},{"k":12666,"v":[[0,2,["H4641"]],[2,4,["H8098"]],[4,6,["H499"]],[6,8,["H5813"]],[8,10,["H3076"]],[10,12,["H4441"]],[12,14,["H5867"]],[14,16,["H5829"]],[16,19,["H7891"]],[19,21,["H8085"]],[21,23,["H3156"]],[23,25,["H6496"]]]},{"k":12667,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H2076"]],[5,6,["H1419"]],[6,7,["H2077"]],[7,9,["H8055"]],[9,10,["H3588"]],[10,11,["H430"]],[11,15,["H8055"]],[15,17,["H1419"]],[17,18,["H8057"]],[18,20,["H802"]],[20,21,["H1571"]],[21,24,["H3206"]],[24,25,["H8055"]],[25,29,["H8057"]],[29,31,["H3389"]],[31,33,["H8085"]],[33,36,["H4480","H7350"]]]},{"k":12668,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,6,["H376"]],[6,7,["H6485"]],[7,8,["H5921"]],[8,10,["H5393"]],[10,13,["H214"]],[13,16,["H8641"]],[16,19,["H7225"]],[19,23,["H4643"]],[23,25,["H3664"]],[25,31,["H7704"]],[31,34,["H5892"]],[34,36,["H4521"]],[36,39,["H8451"]],[39,42,["H3548"]],[42,44,["H3881"]],[44,45,["H3588"]],[45,46,["H3063"]],[46,47,["H8057"]],[47,48,["H5921"]],[48,50,["H3548"]],[50,52,["H5921"]],[52,54,["H3881"]],[54,56,["H5975"]]]},{"k":12669,"v":[[0,4,["H7891"]],[4,7,["H7778"]],[7,8,["H8104"]],[8,10,["H4931"]],[10,13,["H430"]],[13,16,["H4931"]],[16,19,["H2893"]],[19,23,["H4687"]],[23,25,["H1732"]],[25,28,["H8010"]],[28,30,["H1121"]]]},{"k":12670,"v":[[0,1,["H3588"]],[1,4,["H3117"]],[4,6,["H1732"]],[6,8,["H623"]],[8,10,["H4480","H6924"]],[10,13,["H7218"]],[13,16,["H7891"]],[16,18,["H7892"]],[18,20,["H8416"]],[20,22,["H3034"]],[22,24,["H430"]]]},{"k":12671,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,6,["H3117"]],[6,8,["H2216"]],[8,12,["H3117"]],[12,14,["H5166"]],[14,15,["H5414"]],[15,17,["H4521"]],[17,20,["H7891"]],[20,23,["H7778"]],[23,25,["H3117","H3117"]],[25,27,["H1697"]],[27,30,["H6942"]],[30,35,["H3881"]],[35,38,["H3881"]],[38,39,["H6942"]],[39,43,["H1121"]],[43,45,["H175"]]]},{"k":12672,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H7121"]],[5,8,["H5612"]],[8,10,["H4872"]],[10,13,["H241"]],[13,16,["H5971"]],[16,20,["H4672"]],[20,21,["H3789"]],[21,22,["H834"]],[22,24,["H5984"]],[24,27,["H4125"]],[27,29,["H3808"]],[29,30,["H935"]],[30,33,["H6951"]],[33,35,["H430"]],[35,37,["H5704","H5769"]]]},{"k":12673,"v":[[0,1,["H3588"]],[1,3,["H6923"]],[3,4,["H3808","(H853)"]],[4,6,["H1121"]],[6,8,["H3478"]],[8,10,["H3899"]],[10,13,["H4325"]],[13,15,["H7936","(H853)"]],[15,16,["H1109"]],[16,17,["H5921"]],[17,22,["H7043"]],[22,26,["H430"]],[26,27,["H2015"]],[27,29,["H7045"]],[29,32,["H1293"]]]},{"k":12674,"v":[[0,5,["H1961"]],[5,9,["H8085","(H853)"]],[9,11,["H8451"]],[11,14,["H914"]],[14,16,["H4480","H3478"]],[16,17,["H3605"]],[17,20,["H6154"]]]},{"k":12675,"v":[[0,2,["H6440"]],[2,3,["H4480","H2088"]],[3,4,["H475"]],[4,6,["H3548"]],[6,9,["H5414"]],[9,12,["H3957"]],[12,15,["H1004"]],[15,18,["H430"]],[18,20,["H7138"]],[20,22,["H2900"]]]},{"k":12676,"v":[[0,4,["H6213"]],[4,8,["H1419"]],[8,9,["H3957"]],[9,10,["H8033"]],[10,11,["H6440","H1961"]],[11,13,["H5414","(H853)"]],[13,16,["H4503"]],[16,18,["H3828"]],[18,21,["H3627"]],[21,24,["H4643"]],[24,27,["H1715"]],[27,30,["H8492"]],[30,33,["H3323"]],[33,36,["H4687"]],[36,42,["H3881"]],[42,45,["H7891"]],[45,48,["H7778"]],[48,51,["H8641"]],[51,54,["H3548"]]]},{"k":12677,"v":[[0,3,["H3605"]],[3,4,["H2088"]],[4,6,["H1961"]],[6,7,["H3808"]],[7,10,["H3389"]],[10,11,["H3588"]],[11,14,["H8147"]],[14,16,["H7970"]],[16,17,["H8141"]],[17,19,["H783"]],[19,20,["H4428"]],[20,22,["H894"]],[22,23,["H935"]],[23,25,["H413"]],[25,27,["H4428"]],[27,29,["H7093"]],[29,31,["H3117"]],[31,34,["H7592"]],[34,35,["H4480"]],[35,37,["H4428"]]]},{"k":12678,"v":[[0,3,["H935"]],[3,5,["H3389"]],[5,7,["H995"]],[7,10,["H7451"]],[10,11,["H834"]],[11,12,["H475"]],[12,13,["H6213"]],[13,15,["H2900"]],[15,17,["H6213"]],[17,20,["H5393"]],[20,23,["H2691"]],[23,26,["H1004"]],[26,28,["H430"]]]},{"k":12679,"v":[[0,3,["H7489"]],[3,5,["H3966"]],[5,9,["H7993","(H853)"]],[9,10,["H3605"]],[10,12,["H1004"]],[12,13,["H3627"]],[13,15,["H2900"]],[15,16,["H2351"]],[16,17,["H4480"]],[17,19,["H3957"]]]},{"k":12680,"v":[[0,3,["H559"]],[3,6,["H2891"]],[6,8,["H3957"]],[8,10,["H8033"]],[10,13,["H7725"]],[13,15,["H3627"]],[15,18,["H1004"]],[18,20,["H430"]],[20,21,["H854"]],[21,24,["H4503"]],[24,27,["H3828"]]]},{"k":12681,"v":[[0,3,["H3045"]],[3,4,["H3588"]],[4,6,["H4521"]],[6,9,["H3881"]],[9,11,["H3808"]],[11,13,["H5414"]],[13,17,["H3881"]],[17,20,["H7891"]],[20,22,["H6213"]],[22,24,["H4399"]],[24,26,["H1272"]],[26,28,["H376"]],[28,31,["H7704"]]]},{"k":12682,"v":[[0,2,["H7378"]],[2,4,["H854"]],[4,6,["H5461"]],[6,8,["H559"]],[8,9,["H4069"]],[9,12,["H1004"]],[12,14,["H430"]],[14,15,["H5800"]],[15,20,["H6908"]],[20,22,["H5975"]],[22,24,["H5921"]],[24,26,["H5977"]]]},{"k":12683,"v":[[0,2,["H935"]],[2,3,["H3605"]],[3,4,["H3063"]],[4,6,["H4643"]],[6,9,["H1715"]],[9,13,["H8492"]],[13,16,["H3323"]],[16,19,["H214"]]]},{"k":12684,"v":[[0,4,["H686"]],[4,5,["H5921"]],[5,7,["H214"]],[7,8,["H8018"]],[8,10,["H3548"]],[10,12,["H6659"]],[12,14,["H5608"]],[14,16,["H4480"]],[16,18,["H3881"]],[18,19,["H6305"]],[19,22,["H5921","H3027"]],[22,25,["H2605"]],[25,27,["H1121"]],[27,29,["H2139"]],[29,31,["H1121"]],[31,33,["H4983"]],[33,34,["H3588"]],[34,37,["H2803"]],[37,38,["H539"]],[38,41,["H5921"]],[41,44,["H2505"]],[44,47,["H251"]]]},{"k":12685,"v":[[0,1,["H2142"]],[1,5,["H430"]],[5,6,["H5921"]],[6,7,["H2063"]],[7,11,["H4229","H408"]],[11,14,["H2617"]],[14,15,["H834"]],[15,18,["H6213"]],[18,21,["H1004"]],[21,24,["H430"]],[24,28,["H4929"]],[28,29,[]]]},{"k":12686,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,4,["H7200"]],[4,7,["H3063"]],[7,9,["H1869"]],[9,11,["H1660"]],[11,14,["H7676"]],[14,17,["H935"]],[17,18,["H6194"]],[18,20,["H6006","H5921"]],[20,21,["H2543"]],[21,23,["H637"]],[23,24,["H3196"]],[24,25,["H6025"]],[25,27,["H8384"]],[27,29,["H3605"]],[29,32,["H4853"]],[32,36,["H935"]],[36,37,["H3389"]],[37,40,["H7676"]],[40,41,["H3117"]],[41,44,["H5749"]],[44,49,["H3117"]],[49,52,["H4376"]],[52,53,["H6718"]]]},{"k":12687,"v":[[0,2,["H3427"]],[2,5,["H6876"]],[5,9,["H935"]],[9,10,["H1709"]],[10,12,["H3605"]],[12,15,["H4377"]],[15,17,["H4376"]],[17,20,["H7676"]],[20,23,["H1121"]],[23,25,["H3063"]],[25,28,["H3389"]]]},{"k":12688,"v":[[0,3,["H7378"]],[3,4,["H854"]],[4,6,["H2715"]],[6,8,["H3063"]],[8,10,["H559"]],[10,13,["H4100"]],[13,14,["H7451"]],[14,15,["H1697"]],[15,17,["H2088"]],[17,18,["H834"]],[18,19,["H859"]],[19,20,["H6213"]],[20,22,["H2490","(H853)"]],[22,24,["H7676"]],[24,25,["H3117"]]]},{"k":12689,"v":[[0,1,["H6213"]],[1,2,["H3808"]],[2,4,["H1"]],[4,5,["H3541"]],[5,10,["H430"]],[10,11,["H935","(H853)"]],[11,12,["H3605"]],[12,13,["H2063"]],[13,14,["H7451"]],[14,15,["H5921"]],[15,18,["H5921"]],[18,19,["H2063"]],[19,20,["H5892"]],[20,22,["H859"]],[22,24,["H3254"]],[24,25,["H2740"]],[25,26,["H5921"]],[26,27,["H3478"]],[27,29,["H2490","(H853)"]],[29,31,["H7676"]]]},{"k":12690,"v":[[0,5,["H1961"]],[5,7,["H834"]],[7,9,["H8179"]],[9,11,["H3389"]],[11,15,["H6751"]],[15,16,["H6440"]],[16,18,["H7676"]],[18,20,["H559"]],[20,23,["H1817"]],[23,26,["H5462"]],[26,28,["H559"]],[28,29,["H834"]],[29,32,["H3808"]],[32,34,["H6605"]],[34,35,["H5704"]],[35,36,["H310"]],[36,38,["H7676"]],[38,43,["H4480","H5288"]],[43,44,["H5975"]],[44,46,["H5921"]],[46,48,["H8179"]],[48,52,["H3808"]],[52,53,["H4853"]],[53,56,["H935"]],[56,59,["H7676"]],[59,60,["H3117"]]]},{"k":12691,"v":[[0,3,["H7402"]],[3,5,["H4376"]],[5,7,["H3605"]],[7,10,["H4465"]],[10,11,["H3885"]],[11,12,["H4480","H2351"]],[12,13,["H3389"]],[13,14,["H6471"]],[14,16,["H8147"]]]},{"k":12692,"v":[[0,3,["H5749"]],[3,7,["H559"]],[7,8,["H413"]],[8,10,["H4069"]],[10,11,["H3885"]],[11,12,["H859"]],[12,13,["H5048"]],[13,15,["H2346"]],[15,16,["H518"]],[16,20,["H8138"]],[20,23,["H7971"]],[23,24,["H3027"]],[24,27,["H4480"]],[27,28,["H1931"]],[28,29,["H6256"]],[29,31,["H935"]],[31,33,["H3808"]],[33,37,["H7676"]]]},{"k":12693,"v":[[0,3,["H559"]],[3,5,["H3881"]],[5,6,["H834"]],[6,8,["H1961"]],[8,10,["H2891"]],[10,15,["H935"]],[15,17,["H8104"]],[17,19,["H8179"]],[19,21,["H6942","(H853)"]],[21,23,["H7676"]],[23,24,["H3117"]],[24,25,["H2142"]],[25,29,["H430"]],[29,31,["H2063"]],[31,32,["H1571"]],[32,34,["H2347","H5921"]],[34,39,["H7230"]],[39,42,["H2617"]]]},{"k":12694,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,4,["H1571"]],[4,5,["H7200"]],[5,6,["(H853)"]],[6,7,["H3064"]],[7,10,["H3427"]],[10,11,["H802"]],[11,13,["H796"]],[13,15,["H5984"]],[15,18,["H4125"]]]},{"k":12695,"v":[[0,3,["H1121"]],[3,4,["H1696"]],[4,5,["H2677"]],[5,10,["H797"]],[10,12,["H5234"]],[12,13,["H369"]],[13,14,["H1696"]],[14,18,["H3066"]],[18,23,["H3956"]],[23,25,["H5971"]],[25,26,["H5971"]]]},{"k":12696,"v":[[0,3,["H7378"]],[3,4,["H5973"]],[4,7,["H7043"]],[7,10,["H5221"]],[10,11,["H376"]],[11,12,["H4480"]],[12,18,["H4803"]],[18,22,["H7650"]],[22,24,["H430"]],[24,28,["H518"]],[28,29,["H5414"]],[29,31,["H1323"]],[31,34,["H1121"]],[34,35,["H518"]],[35,36,["H5375"]],[36,38,["H4480","H1323"]],[38,41,["H1121"]],[41,44,[]]]},{"k":12697,"v":[[0,2,["H3808"]],[2,3,["H8010"]],[3,4,["H4428"]],[4,6,["H3478"]],[6,7,["H2398"]],[7,8,["H5921"]],[8,10,["H428"]],[10,13,["H7227"]],[13,14,["H1471"]],[14,15,["H1961"]],[15,17,["H3808"]],[17,18,["H4428"]],[18,20,["H3644"]],[20,22,["H1961"]],[22,23,["H157"]],[23,26,["H430"]],[26,28,["H430"]],[28,29,["H5414"]],[29,31,["H4428"]],[31,32,["H5921"]],[32,33,["H3605"]],[33,34,["H3478"]],[34,35,["H1571"]],[35,39,["H5237"]],[39,40,["H802"]],[40,43,["H2398"]]]},{"k":12698,"v":[[0,4,["H8085"]],[4,8,["H6213","(H853)"]],[8,9,["H3605"]],[9,10,["H2063"]],[10,11,["H1419"]],[11,12,["H7451"]],[12,14,["H4603"]],[14,17,["H430"]],[17,19,["H3427"]],[19,20,["H5237"]],[20,21,["H802"]]]},{"k":12699,"v":[[0,5,["H4480","H1121"]],[5,7,["H3111"]],[7,9,["H1121"]],[9,11,["H475"]],[11,13,["H1419"]],[13,14,["H3548"]],[14,18,["H2860"]],[18,20,["H5571"]],[20,22,["H2772"]],[22,25,["H1272"]],[25,27,["H4480","H5921"]],[27,28,[]]]},{"k":12700,"v":[[0,1,["H2142"]],[1,5,["H430"]],[5,6,["H5921"]],[6,9,["H1352"]],[9,11,["H3550"]],[11,14,["H1285"]],[14,17,["H3550"]],[17,21,["H3881"]]]},{"k":12701,"v":[[0,2,["H2891"]],[2,6,["H4480","H3605"]],[6,7,["H5236"]],[7,9,["H5975"]],[9,11,["H4931"]],[11,14,["H3548"]],[14,17,["H3881"]],[17,19,["H376"]],[19,22,["H4399"]]]},{"k":12702,"v":[[0,4,["H6086"]],[4,5,["H7133"]],[5,7,["H6256"]],[7,8,["H2163"]],[8,12,["H1061"]],[12,13,["H2142"]],[13,17,["H430"]],[17,19,["H2896"]]]},{"k":12703,"v":[[0,5,["H1961"]],[5,8,["H3117"]],[8,10,["H325"]],[10,11,["H1931"]],[11,13,["H325"]],[13,15,["H4427"]],[15,17,["H4480","H1912"]],[17,19,["H5704"]],[19,20,["H3568"]],[20,23,["H3967"]],[23,25,["H7651"]],[25,27,["H6242"]],[27,28,["H4082"]]]},{"k":12704,"v":[[0,3,["H1992"]],[3,4,["H3117"]],[4,7,["H4428"]],[7,8,["H325"]],[8,9,["H3427"]],[9,10,["H5921"]],[10,12,["H3678"]],[12,15,["H4438"]],[15,16,["H834"]],[16,19,["H7800"]],[19,21,["H1002"]]]},{"k":12705,"v":[[0,3,["H7969"]],[3,4,["H8141"]],[4,7,["H4427"]],[7,9,["H6213"]],[9,11,["H4960"]],[11,13,["H3605"]],[13,15,["H8269"]],[15,18,["H5650"]],[18,20,["H2428"]],[20,22,["H6539"]],[22,24,["H4074"]],[24,26,["H6579"]],[26,28,["H8269"]],[28,31,["H4082"]],[31,33,["H6440"]],[33,34,[]]]},{"k":12706,"v":[[0,3,["H7200","(H853)"]],[3,5,["H6239"]],[5,8,["H3519"]],[8,9,["H4438"]],[9,12,["H3366"]],[12,15,["H8597"]],[15,16,["H1420"]],[16,17,["H7227"]],[17,18,["H3117"]],[18,21,["H3967"]],[21,23,["H8084"]],[23,24,["H3117"]]]},{"k":12707,"v":[[0,3,["H428"]],[3,4,["H3117"]],[4,6,["H4390"]],[6,8,["H4428"]],[8,9,["H6213"]],[9,11,["H4960"]],[11,13,["H3605"]],[13,15,["H5971"]],[15,18,["H4672"]],[18,20,["H7800"]],[20,22,["H1002"]],[22,25,["H4480","H1419"]],[25,27,["H6996"]],[27,28,["H7651"]],[28,29,["H3117"]],[29,32,["H2691"]],[32,35,["H1594"]],[35,38,["H4428"]],[38,39,["H1055"]]]},{"k":12708,"v":[[0,3,["H2353"]],[3,4,["H3768"]],[4,6,["H8504"]],[6,8,["H270"]],[8,10,["H2256"]],[10,13,["H948"]],[13,15,["H713"]],[15,16,["H5921"]],[16,17,["H3701"]],[17,18,["H1550"]],[18,20,["H5982"]],[20,22,["H8336"]],[22,24,["H4296"]],[24,27,["H2091"]],[27,29,["H3701"]],[29,30,["H5921"]],[30,32,["H7531"]],[32,34,["H923"]],[34,36,["H8336"]],[36,38,["H1858"]],[38,41,["H5508"]]]},{"k":12709,"v":[[0,5,["H8248"]],[5,7,["H3627"]],[7,9,["H2091"]],[9,11,["H3627"]],[11,13,["H8138"]],[13,16,["H4480","H3627"]],[16,18,["H4438"]],[18,19,["H3196"]],[19,21,["H7227"]],[21,25,["H3027"]],[25,28,["H4428"]]]},{"k":12710,"v":[[0,3,["H8360"]],[3,8,["H1881"]],[8,9,["H369"]],[9,11,["H597"]],[11,12,["H3588"]],[12,13,["H3651"]],[13,15,["H4428"]],[15,17,["H3245"]],[17,18,["H5921"]],[18,19,["H3605"]],[19,21,["H7227"]],[21,24,["H1004"]],[24,28,["H6213"]],[28,32,["H376","H376"]],[32,33,["H7522"]]]},{"k":12711,"v":[[0,1,["H1571"]],[1,2,["H2060"]],[2,4,["H4436"]],[4,5,["H6213"]],[5,7,["H4960"]],[7,10,["H802"]],[10,13,["H4438"]],[13,14,["H1004"]],[14,15,["H834"]],[15,18,["H4428"]],[18,19,["H325"]]]},{"k":12712,"v":[[0,3,["H7637"]],[3,4,["H3117"]],[4,7,["H3820"]],[7,10,["H4428"]],[10,12,["H2895"]],[12,14,["H3196"]],[14,16,["H559"]],[16,17,["H4104"]],[17,18,["H968"]],[18,19,["H2726"]],[19,20,["H903"]],[20,22,["H5"]],[22,23,["H2242"]],[23,25,["H3752"]],[25,27,["H7651"]],[27,28,["H5631"]],[28,30,["H8334","(H853)"]],[30,33,["H6440"]],[33,35,["H325"]],[35,37,["H4428"]]]},{"k":12713,"v":[[0,2,["H935","(H853)"]],[2,3,["H2060"]],[3,5,["H4436"]],[5,6,["H6440"]],[6,8,["H4428"]],[8,11,["H3804"]],[11,12,["H4438"]],[12,14,["H7200"]],[14,16,["H5971"]],[16,19,["H8269","(H853)"]],[19,21,["H3308"]],[21,22,["H3588"]],[22,23,["H1931"]],[23,25,["H2896"]],[25,28,["H4758"]]]},{"k":12714,"v":[[0,3,["H4436"]],[3,4,["H2060"]],[4,5,["H3985"]],[5,7,["H935"]],[7,10,["H4428"]],[10,11,["H1697"]],[11,12,["H834","H3027"]],[12,14,["H5631"]],[14,18,["H4428"]],[18,19,["H3966"]],[19,20,["H7107"]],[20,23,["H2534"]],[23,24,["H1197"]],[24,26,[]]]},{"k":12715,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,8,["H2450"]],[8,10,["H3045"]],[10,12,["H6256"]],[12,13,["H3588"]],[13,14,["H3651"]],[14,17,["H4428"]],[17,18,["H1697"]],[18,19,["H6440"]],[19,20,["H3605"]],[20,22,["H3045"]],[22,23,["H1881"]],[23,25,["H1779"]]]},{"k":12716,"v":[[0,3,["H7138"]],[3,4,["H413"]],[4,7,["H3771"]],[7,8,["H8369"]],[8,9,["H133"]],[9,10,["H8659"]],[10,11,["H4825"]],[11,12,["H4826"]],[12,14,["H4462"]],[14,16,["H7651"]],[16,17,["H8269"]],[17,19,["H6539"]],[19,21,["H4074"]],[21,23,["H7200"]],[23,25,["H4428"]],[25,26,["H6440"]],[26,29,["H3427"]],[29,31,["H7223"]],[31,34,["H4438"]]]},{"k":12717,"v":[[0,1,["H4100"]],[1,4,["H6213"]],[4,7,["H4436"]],[7,8,["H2060"]],[8,11,["H1881"]],[11,12,["H5921","H834"]],[12,15,["H3808"]],[15,16,["H6213","(H853)"]],[16,18,["H3982"]],[18,21,["H4428"]],[21,22,["H325"]],[22,23,["H3027"]],[23,25,["H5631"]]]},{"k":12718,"v":[[0,2,["H4462"]],[2,3,["H559"]],[3,4,["H6440"]],[4,6,["H4428"]],[6,9,["H8269"]],[9,10,["H2060"]],[10,12,["H4436"]],[12,14,["H3808"]],[14,16,["H5753"]],[16,17,["H5921"]],[17,19,["H4428"]],[19,20,["H905"]],[20,21,["H3588"]],[21,23,["H5921"]],[23,24,["H3605"]],[24,26,["H8269"]],[26,28,["H5921"]],[28,29,["H3605"]],[29,31,["H5971"]],[31,32,["H834"]],[32,35,["H3605"]],[35,37,["H4082"]],[37,40,["H4428"]],[40,41,["H325"]]]},{"k":12719,"v":[[0,1,["H3588"]],[1,3,["H1697"]],[3,6,["H4436"]],[6,9,["H3318"]],[9,10,["H5921"]],[10,11,["H3605"]],[11,12,["H802"]],[12,17,["H959"]],[17,19,["H1167"]],[19,22,["H5869"]],[22,27,["H559"]],[27,29,["H4428"]],[29,30,["H325"]],[30,31,["H559","(H853)"]],[31,32,["H2060"]],[32,34,["H4436"]],[34,38,["H935"]],[38,39,["H6440"]],[39,43,["H935"]],[43,44,["H3808"]]]},{"k":12720,"v":[[0,4,["H8282"]],[4,6,["H6539"]],[6,8,["H4074"]],[8,9,["H559"]],[9,10,["H2088"]],[10,11,["H3117"]],[11,13,["H3605"]],[13,15,["H4428"]],[15,16,["H8269"]],[16,17,["H834"]],[17,20,["H8085","(H853)"]],[20,22,["H1697"]],[22,25,["H4436"]],[25,31,["H1767"]],[31,32,["H963"]],[32,34,["H7110"]]]},{"k":12721,"v":[[0,1,["H518"]],[1,3,["H2895","H5921"]],[3,5,["H4428"]],[5,8,["H3318"]],[8,10,["H4438"]],[10,11,["H1697"]],[11,12,["H4480","H6440"]],[12,18,["H3789"]],[18,21,["H1881"]],[21,24,["H6539"]],[24,27,["H4074"]],[27,31,["H3808"]],[31,32,["H5674"]],[32,33,["H834"]],[33,34,["H2060"]],[34,35,["H935"]],[35,36,["H3808"]],[36,38,["H6440"]],[38,39,["H4428"]],[39,40,["H325"]],[40,44,["H4428"]],[44,45,["H5414"]],[45,48,["H4438"]],[48,50,["H7468"]],[50,53,["H2896"]],[53,54,["H4480"]],[54,55,[]]]},{"k":12722,"v":[[0,4,["H4428"]],[4,5,["H6599"]],[5,6,["H834"]],[6,9,["H6213"]],[9,12,["H8085"]],[12,14,["H3605"]],[14,16,["H4438"]],[16,17,["H3588"]],[17,18,["H1931"]],[18,20,["H7227"]],[20,21,["H3605"]],[21,23,["H802"]],[23,25,["H5414"]],[25,28,["H1167"]],[28,29,["H3366"]],[29,32,["H4480","H1419"]],[32,34,["H6996"]]]},{"k":12723,"v":[[0,3,["H1697"]],[3,4,["H3190","H5869"]],[4,6,["H4428"]],[6,9,["H8269"]],[9,12,["H4428"]],[12,13,["H6213"]],[13,17,["H1697"]],[17,19,["H4462"]]]},{"k":12724,"v":[[0,3,["H7971"]],[3,4,["H5612"]],[4,5,["H413"]],[5,6,["H3605"]],[6,8,["H4428"]],[8,9,["H4082"]],[9,10,["H413"]],[10,12,["H4082","H4082"]],[12,16,["H3791"]],[16,19,["H413"]],[19,21,["H5971","H5971"]],[21,24,["H3956"]],[24,26,["H3605"]],[26,27,["H376"]],[27,28,["H1961"]],[28,30,["H8323"]],[30,34,["H1004"]],[34,40,["H1696"]],[40,44,["H3956"]],[44,47,["H5971"]]]},{"k":12725,"v":[[0,1,["H310"]],[1,2,["H428"]],[2,3,["H1697"]],[3,6,["H2534"]],[6,8,["H4428"]],[8,9,["H325"]],[9,11,["H7918"]],[11,13,["H2142","(H853)"]],[13,14,["H2060"]],[14,16,["H834"]],[16,19,["H6213"]],[19,21,["H834"]],[21,23,["H1504"]],[23,24,["H5921"]],[24,25,[]]]},{"k":12726,"v":[[0,2,["H559"]],[2,4,["H4428"]],[4,5,["H5288"]],[5,7,["H8334"]],[7,13,["H2896","H4758"]],[13,14,["H5291"]],[14,15,["H1330"]],[15,16,["H1245"]],[16,19,["H4428"]]]},{"k":12727,"v":[[0,4,["H4428"]],[4,5,["H6485"]],[5,6,["H6496"]],[6,8,["H3605"]],[8,10,["H4082"]],[10,13,["H4438"]],[13,18,["H6908","(H853)"]],[18,19,["H3605"]],[19,21,["H2896","H4758"]],[21,22,["H5291"]],[22,23,["H1330"]],[23,24,["H413"]],[24,25,["H7800"]],[25,27,["H1002"]],[27,28,["H413"]],[28,30,["H1004"]],[30,33,["H802"]],[33,34,["H413"]],[34,36,["H3027"]],[36,38,["H1896"]],[38,40,["H4428"]],[40,41,["H5631"]],[41,42,["H8104"]],[42,45,["H802"]],[45,51,["H8562"]],[51,53,["H5414"]],[53,54,[]]]},{"k":12728,"v":[[0,4,["H5291"]],[4,5,["H834"]],[5,6,["H3190","H5869"]],[6,8,["H4428"]],[8,10,["H4427"]],[10,11,["H8478"]],[11,13,["H2060"]],[13,16,["H1697"]],[16,17,["H3190","H5869"]],[17,19,["H4428"]],[19,22,["H6213"]],[22,23,["H3651"]]]},{"k":12729,"v":[[0,3,["H7800"]],[3,5,["H1002"]],[5,7,["H1961"]],[7,9,["H376"]],[9,10,["H3064"]],[10,12,["H8034"]],[12,14,["H4782"]],[14,16,["H1121"]],[16,18,["H2971"]],[18,20,["H1121"]],[20,22,["H8096"]],[22,24,["H1121"]],[24,26,["H7027"]],[26,28,["H1145"]]]},{"k":12730,"v":[[0,1,["H834"]],[1,5,["H1540"]],[5,7,["H4480","H3389"]],[7,8,["H5973"]],[8,10,["H1473"]],[10,11,["H834"]],[11,15,["H1540"]],[15,16,["H5973"]],[16,17,["H3204"]],[17,18,["H4428"]],[18,20,["H3063"]],[20,21,["H834"]],[21,22,["H5019"]],[22,24,["H4428"]],[24,26,["H894"]],[26,29,["H1540"]]]},{"k":12731,"v":[[0,4,["H1961","H539","(H853)"]],[4,5,["H1919"]],[5,6,["H1931"]],[6,8,["H635"]],[8,10,["H1730"]],[10,11,["H1323"]],[11,12,["H3588"]],[12,15,["H369"]],[15,16,["H1"]],[16,18,["H517"]],[18,21,["H5291"]],[21,23,["H3303","H8389"]],[23,25,["H2896","H4758"]],[25,27,["H4782"]],[27,30,["H1"]],[30,32,["H517"]],[32,34,["H4194"]],[34,35,["H3947"]],[35,39,["H1323"]]]},{"k":12732,"v":[[0,5,["H1961"]],[5,8,["H4428"]],[8,9,["H1697"]],[9,12,["H1881"]],[12,14,["H8085"]],[14,17,["H7227"]],[17,18,["H5291"]],[18,21,["H6908"]],[21,22,["H413"]],[22,23,["H7800"]],[23,25,["H1002"]],[25,26,["H413"]],[26,28,["H3027"]],[28,30,["H1896"]],[30,32,["H635"]],[32,34,["H3947"]],[34,36,["H413"]],[36,38,["H4428"]],[38,39,["H1004"]],[39,40,["H413"]],[40,42,["H3027"]],[42,44,["H1896"]],[44,45,["H8104"]],[45,48,["H802"]]]},{"k":12733,"v":[[0,3,["H5291"]],[3,4,["H3190","H5869"]],[4,8,["H5375"]],[8,9,["H2617"]],[9,10,["H6440"]],[10,14,["H926"]],[14,15,["H5414"]],[15,16,["(H853)"]],[16,20,["H8562"]],[20,21,["H854"]],[21,25,["H4490"]],[25,29,["H7651"]],[29,30,["H5291"]],[30,33,["H7200"]],[33,36,["H5414"]],[36,42,["H4480","H1004","H4428"]],[42,45,["H8138"]],[45,49,["H5291"]],[49,52,["H2896"]],[52,56,["H1004"]],[56,59,["H802"]]]},{"k":12734,"v":[[0,1,["H635"]],[1,3,["H3808"]],[3,4,["H5046","(H853)"]],[4,6,["H5971"]],[6,9,["H4138"]],[9,10,["H3588"]],[10,11,["H4782"]],[11,13,["H6680"]],[13,14,["H5921"]],[14,15,["H834"]],[15,18,["H3808"]],[18,19,["H5046"]],[19,20,[]]]},{"k":12735,"v":[[0,2,["H4782"]],[2,3,["H1980"]],[3,5,["H3605","H3117","H3117"]],[5,6,["H6440"]],[6,8,["H2691"]],[8,11,["H802"]],[11,12,["H1004"]],[12,14,["H3045","(H853)"]],[14,16,["H635"]],[16,17,["H7965"]],[17,19,["H4100"]],[19,21,["H6213"]],[21,23,[]]]},{"k":12736,"v":[[0,4,["H5291","H5291"]],[4,5,["H8447"]],[5,7,["H5060"]],[7,10,["H935"]],[10,11,["H413"]],[11,12,["H4428"]],[12,13,["H325"]],[13,15,["H4480","H7093"]],[15,18,["H1961"]],[18,19,["H8147","H6240"]],[19,20,["H2320"]],[20,24,["H1881"]],[24,27,["H802"]],[27,28,["H3588"]],[28,29,["H3651"]],[29,32,["H3117"]],[32,35,["H4795"]],[35,36,["H4390"]],[36,39,["H8337"]],[39,40,["H2320"]],[40,42,["H8081"]],[42,44,["H4753"]],[44,46,["H8337"]],[46,47,["H2320"]],[47,50,["H1314"]],[50,57,["H8562"]],[57,60,["H802"]]]},{"k":12737,"v":[[0,2,["H2088"]],[2,3,["H935"]],[3,5,["H5291"]],[5,6,["H413"]],[6,8,["H4428","(H853)"]],[8,9,["H3605","H834"]],[9,11,["H559"]],[11,13,["H5414"]],[13,16,["H935"]],[16,17,["H5973"]],[17,22,["H4480","H1004"]],[22,25,["H802"]],[25,26,["H5704"]],[26,28,["H4428"]],[28,29,["H1004"]]]},{"k":12738,"v":[[0,3,["H6153"]],[3,4,["H1931"]],[4,5,["H935"]],[5,9,["H1242"]],[9,10,["H1931"]],[10,11,["H7725"]],[11,12,["H413"]],[12,14,["H8145"]],[14,15,["H1004"]],[15,18,["H802"]],[18,19,["H413"]],[19,21,["H3027"]],[21,23,["H8190"]],[23,25,["H4428"]],[25,26,["H5631"]],[26,28,["H8104"]],[28,30,["H6370"]],[30,33,["H935"]],[33,34,["H413"]],[34,36,["H4428"]],[36,37,["H3808"]],[37,38,["H5750"]],[38,39,["H3588","H518"]],[39,41,["H4428"]],[41,42,["H2654"]],[42,49,["H7121"]],[49,51,["H8034"]]]},{"k":12739,"v":[[0,4,["H8447"]],[4,6,["H635"]],[6,8,["H1323"]],[8,10,["H32"]],[10,12,["H1730"]],[12,14,["H4782"]],[14,15,["H834"]],[15,17,["H3947"]],[17,21,["H1323"]],[21,23,["H5060"]],[23,26,["H935"]],[26,27,["H413"]],[27,29,["H4428"]],[29,31,["H1245"]],[31,32,["H3808","H1697"]],[32,33,["H3588","H518","(H853)"]],[33,34,["H834"]],[34,35,["H1896"]],[35,37,["H4428"]],[37,38,["H5631"]],[38,40,["H8104"]],[40,43,["H802"]],[43,44,["H559"]],[44,46,["H635"]],[46,47,["H1961","H5375"]],[47,48,["H2580"]],[48,51,["H5869"]],[51,53,["H3605"]],[53,56,["H7200"]],[56,58,[]]]},{"k":12740,"v":[[0,2,["H635"]],[2,4,["H3947"]],[4,5,["H413"]],[5,6,["H4428"]],[6,7,["H325"]],[7,8,["H413"]],[8,10,["H1004"]],[10,11,["H4438"]],[11,14,["H6224"]],[14,15,["H2320"]],[15,16,["H1931"]],[16,19,["H2320"]],[19,20,["H2887"]],[20,23,["H7651"]],[23,24,["H8141"]],[24,27,["H4438"]]]},{"k":12741,"v":[[0,3,["H4428"]],[3,4,["H157","(H853)"]],[4,5,["H635"]],[5,7,["H4480","H3605"]],[7,9,["H802"]],[9,12,["H5375"]],[12,13,["H2580"]],[13,15,["H2617"]],[15,18,["H6440"]],[18,21,["H4480","H3605"]],[21,23,["H1330"]],[23,27,["H7760"]],[27,29,["H4438"]],[29,30,["H3804"]],[30,33,["H7218"]],[33,37,["H4427"]],[37,38,["H8478"]],[38,40,["H2060"]]]},{"k":12742,"v":[[0,3,["H4428"]],[3,4,["H6213"]],[4,6,["H1419"]],[6,7,["H4960"]],[7,9,["H3605"]],[9,11,["H8269"]],[11,14,["H5650"]],[14,15,["(H853)"]],[15,16,["H635"]],[16,17,["H4960"]],[17,20,["H6213"]],[20,22,["H2010"]],[22,25,["H4082"]],[25,27,["H5414"]],[27,28,["H4864"]],[28,32,["H3027"]],[32,35,["H4428"]]]},{"k":12743,"v":[[0,4,["H1330"]],[4,7,["H6908"]],[7,10,["H8145"]],[10,12,["H4782"]],[12,13,["H3427"]],[13,16,["H4428"]],[16,17,["H8179"]]]},{"k":12744,"v":[[0,1,["H635"]],[1,3,["H369"]],[3,5,["H5046"]],[5,7,["H4138"]],[7,10,["H5971"]],[10,11,["H834"]],[11,12,["H4782"]],[12,14,["H6680"]],[14,15,["H5921"]],[15,17,["H635"]],[17,18,["H6213"]],[18,20,["H3982"]],[20,22,["H4782"]],[22,24,["H834"]],[24,27,["H1961"]],[27,29,["H545"]],[29,30,["H854"]],[30,31,[]]]},{"k":12745,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,5,["H4782"]],[5,6,["H3427"]],[6,9,["H4428"]],[9,10,["H8179"]],[10,11,["H8147"]],[11,14,["H4428"]],[14,15,["H5631"]],[15,16,["H904"]],[16,18,["H8657"]],[18,22,["H4480","H8104"]],[22,24,["H5592"]],[24,26,["H7107"]],[26,28,["H1245"]],[28,30,["H7971"]],[30,31,["H3027"]],[31,34,["H4428"]],[34,35,["H325"]]]},{"k":12746,"v":[[0,3,["H1697"]],[3,5,["H3045"]],[5,7,["H4782"]],[7,9,["H5046"]],[9,12,["H635"]],[12,14,["H4436"]],[14,16,["H635"]],[16,17,["H559"]],[17,19,["H4428"]],[19,22,["H4782"]],[22,23,["H8034"]]]},{"k":12747,"v":[[0,5,["H1245"]],[5,8,["H1697"]],[8,12,["H4672"]],[12,16,["H8147"]],[16,17,["H8518"]],[17,18,["H5921"]],[18,20,["H6086"]],[20,24,["H3789"]],[24,27,["H5612"]],[27,30,["H1697"]],[30,31,["H6440"]],[31,33,["H4428"]]]},{"k":12748,"v":[[0,1,["H310"]],[1,2,["H428"]],[2,3,["H1697"]],[3,5,["H4428"]],[5,6,["H325"]],[6,7,["H1431","(H853)"]],[7,8,["H2001"]],[8,10,["H1121"]],[10,12,["H4099"]],[12,14,["H91"]],[14,16,["H5375"]],[16,19,["H7760","(H853)"]],[19,21,["H3678"]],[21,22,["H4480","H5921"]],[22,23,["H3605"]],[23,25,["H8269"]],[25,26,["H834"]],[26,28,["H854"]],[28,29,[]]]},{"k":12749,"v":[[0,2,["H3605"]],[2,4,["H4428"]],[4,5,["H5650"]],[5,6,["H834"]],[6,10,["H4428"]],[10,11,["H8179"]],[11,12,["H3766"]],[12,14,["H7812"]],[14,15,["H2001"]],[15,16,["H3588"]],[16,18,["H4428"]],[18,20,["H3651"]],[20,21,["H6680"]],[21,25,["H4782"]],[25,26,["H3766"]],[26,27,["H3808"]],[27,28,["H3808"]],[28,31,["H7812"]]]},{"k":12750,"v":[[0,3,["H4428"]],[3,4,["H5650"]],[4,5,["H834"]],[5,9,["H4428"]],[9,10,["H8179"]],[10,11,["H559"]],[11,13,["H4782"]],[13,14,["H4069"]],[14,15,["H5674"]],[15,16,["H859","(H853)"]],[16,18,["H4428"]],[18,19,["H4687"]]]},{"k":12751,"v":[[0,5,["H1961"]],[5,8,["H559"]],[8,9,["H3117","H3117"]],[9,10,["H413"]],[10,14,["H8085"]],[14,15,["H3808"]],[15,16,["H413"]],[16,20,["H5046"]],[20,21,["H2001"]],[21,23,["H7200"]],[23,25,["H4782"]],[25,26,["H1697"]],[26,28,["H5975"]],[28,29,["H3588"]],[29,32,["H5046"]],[32,34,["H834"]],[34,35,["H1931"]],[35,38,["H3064"]]]},{"k":12752,"v":[[0,3,["H2001"]],[3,4,["H7200"]],[4,5,["H3588"]],[5,6,["H4782"]],[6,7,["H3766"]],[7,8,["H369"]],[8,12,["H7812"]],[12,15,["H2001"]],[15,16,["H4390"]],[16,18,["H2534"]]]},{"k":12753,"v":[[0,3,["H5869"]],[3,4,["H959"]],[4,6,["H7971"]],[6,7,["H3027"]],[7,9,["H4782"]],[9,10,["H905"]],[10,11,["H3588"]],[11,14,["H5046"]],[14,15,["(H853)"]],[15,17,["H5971"]],[17,19,["H4782"]],[19,21,["H2001"]],[21,22,["H1245"]],[22,24,["H8045","(H853)"]],[24,25,["H3605"]],[25,27,["H3064"]],[27,28,["H834"]],[28,32,["H3605"]],[32,33,["H4438"]],[33,35,["H325"]],[35,38,["H5971"]],[38,40,["H4782"]]]},{"k":12754,"v":[[0,3,["H7223"]],[3,4,["H2320"]],[4,5,["H1931"]],[5,8,["H2320"]],[8,9,["H5212"]],[9,12,["H8147","H6240"]],[12,13,["H8141"]],[13,15,["H4428"]],[15,16,["H325"]],[16,18,["H5307"]],[18,19,["H6332"]],[19,20,["H1931"]],[20,23,["H1486"]],[23,24,["H6440"]],[24,25,["H2001"]],[25,27,["H4480","H3117"]],[27,29,["H3117"]],[29,32,["H4480","H2320"]],[32,34,["H2320"]],[34,37,["H8147","H6240"]],[37,39,["H1931"]],[39,42,["H2320"]],[42,43,["H143"]]]},{"k":12755,"v":[[0,2,["H2001"]],[2,3,["H559"]],[3,5,["H4428"]],[5,6,["H325"]],[6,8,["H3426"]],[8,10,["H259"]],[10,11,["H5971"]],[11,13,["H6340"]],[13,15,["H6504"]],[15,16,["H996"]],[16,18,["H5971"]],[18,20,["H3605"]],[20,22,["H4082"]],[22,25,["H4438"]],[25,28,["H1881"]],[28,30,["H8138"]],[30,32,["H4480","H3605"]],[32,33,["H5971"]],[33,34,["H369"]],[34,35,["H6213"]],[35,38,["H4428"]],[38,39,["H1881"]],[39,43,["H369"]],[43,46,["H4428"]],[46,47,["H7737"]],[47,49,["H5117"]],[49,50,[]]]},{"k":12756,"v":[[0,1,["H518"]],[1,3,["H2895","H5921"]],[3,5,["H4428"]],[5,9,["H3789"]],[9,14,["H6"]],[14,18,["H8254"]],[18,19,["H6235"]],[19,20,["H505"]],[20,21,["H3603"]],[21,23,["H3701"]],[23,24,["H5921"]],[24,26,["H3027"]],[26,32,["H6213"]],[32,35,["H4399"]],[35,37,["H935"]],[37,39,["H413"]],[39,41,["H4428"]],[41,42,["H1595"]]]},{"k":12757,"v":[[0,3,["H4428"]],[3,4,["H5493","(H853)"]],[4,6,["H2885"]],[6,7,["H4480","H5921"]],[7,9,["H3027"]],[9,11,["H5414"]],[11,14,["H2001"]],[14,16,["H1121"]],[16,18,["H4099"]],[18,20,["H91"]],[20,22,["H3064"]],[22,23,["H6887"]]]},{"k":12758,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H2001"]],[6,8,["H3701"]],[8,10,["H5414"]],[10,14,["H5971"]],[14,17,["H6213"]],[17,25,["H2896","H5869"]]]},{"k":12759,"v":[[0,4,["H4428"]],[4,5,["H5608"]],[5,6,["H7121"]],[6,9,["H7969","H6240"]],[9,10,["H3117"]],[10,13,["H7223"]],[13,14,["H2320"]],[14,18,["H3789"]],[18,21,["H3605"]],[21,22,["H834"]],[22,23,["H2001"]],[23,25,["H6680"]],[25,26,["H413"]],[26,28,["H4428"]],[28,29,["H323"]],[29,31,["H413"]],[31,33,["H6346"]],[33,34,["H834"]],[34,36,["H5921"]],[36,38,["H4082","H4082"]],[38,40,["H413"]],[40,42,["H8269"]],[42,45,["H5971","H5971"]],[45,48,["H4082","H4082"]],[48,52,["H3791"]],[52,57,["H5971","H5971"]],[57,60,["H3956"]],[60,63,["H8034"]],[63,65,["H4428"]],[65,66,["H325"]],[66,69,["H3789"]],[69,71,["H2856"]],[71,74,["H4428"]],[74,75,["H2885"]]]},{"k":12760,"v":[[0,3,["H5612"]],[3,5,["H7971"]],[5,6,["H3027"]],[6,7,["H7323"]],[7,8,["H413"]],[8,9,["H3605"]],[9,11,["H4428"]],[11,12,["H4082"]],[12,14,["H8045"]],[14,16,["H2026"]],[16,21,["H6","(H853)"]],[21,22,["H3605"]],[22,23,["H3064"]],[23,25,["H4480","H5288"]],[25,26,["H5704"]],[26,27,["H2205"]],[27,29,["H2945"]],[29,31,["H802"]],[31,33,["H259"]],[33,34,["H3117"]],[34,38,["H7969","H6240"]],[38,42,["H8147","H6240"]],[42,43,["H2320"]],[43,44,["H1931"]],[44,47,["H2320"]],[47,48,["H143"]],[48,53,["H7998"]],[53,58,["H962"]]]},{"k":12761,"v":[[0,2,["H6572"]],[2,5,["H3791"]],[5,8,["H1881"]],[8,11,["H5414"]],[11,13,["H3605"]],[13,14,["H4082","H4082"]],[14,16,["H1540"]],[16,18,["H3605"]],[18,19,["H5971"]],[19,23,["H1961"]],[23,24,["H6264"]],[24,26,["H2088"]],[26,27,["H3117"]]]},{"k":12762,"v":[[0,2,["H7323"]],[2,4,["H3318"]],[4,6,["H1765"]],[6,9,["H4428"]],[9,10,["H1697"]],[10,13,["H1881"]],[13,15,["H5414"]],[15,17,["H7800"]],[17,19,["H1002"]],[19,22,["H4428"]],[22,24,["H2001"]],[24,26,["H3427"]],[26,28,["H8354"]],[28,31,["H5892"]],[31,32,["H7800"]],[32,34,["H943"]]]},{"k":12763,"v":[[0,2,["H4782"]],[2,3,["H3045","(H853)"]],[3,4,["H3605"]],[4,5,["H834"]],[5,7,["H6213"]],[7,8,["H4782"]],[8,9,["H7167","(H853)"]],[9,11,["H899"]],[11,14,["H3847"]],[14,15,["H8242"]],[15,17,["H665"]],[17,20,["H3318"]],[20,23,["H8432"]],[23,26,["H5892"]],[26,28,["H2199"]],[28,31,["H1419"]],[31,34,["H4751"]],[34,35,["H2201"]]]},{"k":12764,"v":[[0,2,["H935"]],[2,3,["H5704"]],[3,4,["H6440"]],[4,6,["H4428"]],[6,7,["H8179"]],[7,8,["H3588"]],[8,9,["H369"]],[9,11,["H935"]],[11,12,["H413"]],[12,14,["H4428"]],[14,15,["H8179"]],[15,16,["H3830"]],[16,18,["H8242"]]]},{"k":12765,"v":[[0,3,["H3605"]],[3,4,["H4082","H4082"]],[4,5,["H4725","H834"]],[5,7,["H4428"]],[7,8,["H1697"]],[8,11,["H1881"]],[11,12,["H5060"]],[12,15,["H1419"]],[15,16,["H60"]],[16,19,["H3064"]],[19,21,["H6685"]],[21,23,["H1065"]],[23,25,["H4553"]],[25,27,["H7227"]],[27,28,["H3331"]],[28,30,["H8242"]],[30,32,["H665"]]]},{"k":12766,"v":[[0,2,["H635"]],[2,3,["H5291"]],[3,6,["H5631"]],[6,7,["H935"]],[7,9,["H5046"]],[9,15,["H4436"]],[15,16,["H3966"]],[16,17,["H2342"]],[17,20,["H7971"]],[20,21,["H899"]],[21,23,["H3847","(H853)"]],[23,24,["H4782"]],[24,28,["H5493"]],[28,30,["H8242"]],[30,31,["H4480","H5921"]],[31,35,["H6901"]],[35,37,["H3808"]]]},{"k":12767,"v":[[0,2,["H7121"]],[2,3,["H635"]],[3,5,["H2047"]],[5,9,["H4428"]],[9,10,["H4480","H5631"]],[10,11,["H834"]],[11,14,["H5975"]],[14,17,["H6440"]],[17,23,["H6680"]],[23,24,["H5921"]],[24,25,["H4782"]],[25,27,["H3045"]],[27,28,["H4100"]],[28,29,["H2088"]],[29,32,["H5921","H4100"]],[32,33,["H2088"]],[33,34,[]]]},{"k":12768,"v":[[0,2,["H2047"]],[2,4,["H3318"]],[4,5,["H413"]],[5,6,["H4782"]],[6,7,["H413"]],[7,9,["H7339"]],[9,12,["H5892"]],[12,13,["H834"]],[13,15,["H6440"]],[15,17,["H4428"]],[17,18,["H8179"]]]},{"k":12769,"v":[[0,2,["H4782"]],[2,3,["H5046"]],[3,5,["(H853)"]],[5,6,["H3605"]],[6,7,["H834"]],[7,9,["H7136"]],[9,12,["(H853)"]],[12,15,["H6575"]],[15,18,["H3701"]],[18,19,["H834"]],[19,20,["H2001"]],[20,22,["H559"]],[22,24,["H8254"]],[24,25,["H5921"]],[25,27,["H4428"]],[27,28,["H1595"]],[28,31,["H3064"]],[31,33,["H6"]],[33,34,[]]]},{"k":12770,"v":[[0,3,["H5414"]],[3,6,["H6572"]],[6,9,["H3791"]],[9,12,["H1881"]],[12,13,["H834"]],[13,15,["H5414"]],[15,17,["H7800"]],[17,19,["H8045"]],[19,22,["H7200"]],[22,24,["(H853)"]],[24,25,["H635"]],[25,28,["H5046"]],[28,34,["H6680"]],[34,35,["H5921"]],[35,40,["H935"]],[40,41,["H413"]],[41,43,["H4428"]],[43,46,["H2603"]],[46,52,["H1245"]],[52,53,["H4480","H6440"]],[53,55,["H5921"]],[55,57,["H5971"]]]},{"k":12771,"v":[[0,2,["H2047"]],[2,3,["H935"]],[3,5,["H5046"]],[5,6,["H635","(H853)"]],[6,8,["H1697"]],[8,10,["H4782"]]]},{"k":12772,"v":[[0,2,["H635"]],[2,3,["H559"]],[3,5,["H2047"]],[5,9,["H6680"]],[9,10,["H413"]],[10,11,["H4782"]]]},{"k":12773,"v":[[0,1,["H3605"]],[1,3,["H4428"]],[3,4,["H5650"]],[4,7,["H5971"]],[7,10,["H4428"]],[10,11,["H4082"]],[11,13,["H3045"]],[13,14,["H834"]],[14,15,["H3605","H834"]],[15,16,["H834"]],[16,17,["H376"]],[17,19,["H802"]],[19,21,["H935"]],[21,22,["H413"]],[22,24,["H4428"]],[24,25,["H413"]],[25,27,["H6442"]],[27,28,["H2691"]],[28,29,["H834"]],[29,31,["H3808"]],[31,32,["H7121"]],[32,35,["H259"]],[35,36,["H1881"]],[36,43,["H4191"]],[43,44,["H905"]],[44,47,["H4480","H834"]],[47,49,["H4428"]],[49,52,["H3447","(H853)"]],[52,54,["H2091"]],[54,55,["H8275"]],[55,59,["H2421"]],[59,61,["H589"]],[61,63,["H3808"]],[63,65,["H7121"]],[65,68,["H935"]],[68,69,["H413"]],[69,71,["H4428"]],[71,72,["H2088"]],[72,73,["H7970"]],[73,74,["H3117"]]]},{"k":12774,"v":[[0,3,["H5046"]],[3,5,["H4782","(H853)"]],[5,6,["H635"]],[6,7,["H1697"]]]},{"k":12775,"v":[[0,2,["H4782"]],[2,3,["H559"]],[3,5,["H7725","H413"]],[5,6,["H635"]],[6,7,["H1819"]],[7,8,["H408"]],[8,10,["H5315"]],[10,14,["H4422"]],[14,17,["H4428"]],[17,18,["H1004"]],[18,21,["H4480","H3605"]],[21,23,["H3064"]]]},{"k":12776,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,7,["H2790","H2790"]],[7,9,["H2063"]],[9,10,["H6256"]],[10,14,["H7305"]],[14,16,["H2020"]],[16,17,["H5975"]],[17,20,["H3064"]],[20,23,["H4480","H4725","H312"]],[23,25,["H859"]],[25,28,["H1"]],[28,29,["H1004"]],[29,32,["H6"]],[32,34,["H4310"]],[34,35,["H3045"]],[35,36,["H518"]],[36,39,["H5060"]],[39,42,["H4438"]],[42,46,["H6256"]],[46,48,["H2063"]]]},{"k":12777,"v":[[0,2,["H635"]],[2,3,["H559"]],[3,5,["H7725","H413"]],[5,6,["H4782"]],[6,8,[]]]},{"k":12778,"v":[[0,1,["H1980"]],[1,3,["H3664","(H853)"]],[3,4,["H3605"]],[4,6,["H3064"]],[6,9,["H4672"]],[9,11,["H7800"]],[11,13,["H6684"]],[13,15,["H5921"]],[15,18,["H408"]],[18,19,["H398"]],[19,20,["H408"]],[20,21,["H8354"]],[21,22,["H7969"]],[22,23,["H3117"]],[23,24,["H3915"]],[24,26,["H3117"]],[26,27,["H589"]],[27,28,["H1571"]],[28,31,["H5291"]],[31,33,["H6684"]],[33,34,["H3651"]],[34,36,["H3651"]],[36,40,["H935"]],[40,41,["H413"]],[41,43,["H4428"]],[43,44,["H834"]],[44,46,["H3808"]],[46,50,["H1881"]],[50,52,["H834"]],[52,54,["H6"]],[54,56,["H6"]]]},{"k":12779,"v":[[0,2,["H4782"]],[2,5,["H5674"]],[5,7,["H6213"]],[7,10,["H3605"]],[10,11,["H834"]],[11,12,["H635"]],[12,14,["H6680"]],[14,15,["H5921"]]]},{"k":12780,"v":[[0,5,["H1961"]],[5,8,["H7992"]],[8,9,["H3117"]],[9,11,["H635"]],[11,13,["H3847"]],[13,15,["H4438"]],[15,18,["H5975"]],[18,21,["H6442"]],[21,22,["H2691"]],[22,25,["H4428"]],[25,26,["H1004"]],[26,28,["H5227"]],[28,30,["H4428"]],[30,31,["H1004"]],[31,34,["H4428"]],[34,35,["H3427"]],[35,36,["H5921"]],[36,38,["H4438"]],[38,39,["H3678"]],[39,42,["H4438"]],[42,43,["H1004"]],[43,45,["H5227"]],[45,47,["H6607"]],[47,50,["H1004"]]]},{"k":12781,"v":[[0,3,["H1961"]],[3,7,["H4428"]],[7,8,["H7200","(H853)"]],[8,9,["H635"]],[9,11,["H4436"]],[11,12,["H5975"]],[12,15,["H2691"]],[15,18,["H5375"]],[18,19,["H2580"]],[19,22,["H5869"]],[22,25,["H4428"]],[25,27,["H3447"]],[27,29,["H635","(H853)"]],[29,31,["H2091"]],[31,32,["H8275"]],[32,33,["H834"]],[33,37,["H3027"]],[37,39,["H635"]],[39,41,["H7126"]],[41,43,["H5060"]],[43,45,["H7218"]],[45,48,["H8275"]]]},{"k":12782,"v":[[0,2,["H559"]],[2,4,["H4428"]],[4,7,["H4100"]],[7,10,["H4436"]],[10,11,["H635"]],[11,13,["H4100"]],[13,16,["H1246"]],[16,21,["H5414"]],[21,23,["H5704"]],[23,25,["H2677"]],[25,28,["H4438"]]]},{"k":12783,"v":[[0,2,["H635"]],[2,3,["H559"]],[3,4,["H518"]],[4,7,["H2895"]],[7,8,["H5921"]],[8,10,["H4428"]],[10,13,["H4428"]],[13,15,["H2001"]],[15,16,["H935"]],[16,18,["H3117"]],[18,19,["H413"]],[19,21,["H4960"]],[21,22,["H834"]],[22,25,["H6213"]],[25,27,[]]]},{"k":12784,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["(H853)"]],[5,6,["H2001"]],[6,9,["H4116"]],[9,13,["H6213","(H853)"]],[13,15,["H635"]],[15,17,["H1697"]],[17,20,["H4428"]],[20,22,["H2001"]],[22,23,["H935"]],[23,24,["H413"]],[24,26,["H4960"]],[26,27,["H834"]],[27,28,["H635"]],[28,30,["H6213"]]]},{"k":12785,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H635"]],[6,9,["H4960"]],[9,11,["H3196"]],[11,12,["H4100"]],[12,15,["H7596"]],[15,20,["H5414"]],[20,23,["H4100"]],[23,26,["H1246"]],[26,28,["H5704"]],[28,30,["H2677"]],[30,33,["H4438"]],[33,37,["H6213"]]]},{"k":12786,"v":[[0,2,["H6030"]],[2,3,["H635"]],[3,5,["H559"]],[5,7,["H7596"]],[7,10,["H1246"]],[10,11,[]]]},{"k":12787,"v":[[0,1,["H518"]],[1,4,["H4672"]],[4,5,["H2580"]],[5,8,["H5869"]],[8,11,["H4428"]],[11,13,["H518"]],[13,15,["H2895","H5921"]],[15,17,["H4428"]],[17,19,["H5414","(H853)"]],[19,21,["H7596"]],[21,24,["H6213","(H853)"]],[24,26,["H1246"]],[26,29,["H4428"]],[29,31,["H2001"]],[31,32,["H935"]],[32,33,["H413"]],[33,35,["H4960"]],[35,36,["H834"]],[36,39,["H6213"]],[39,45,["H6213"]],[45,47,["H4279"]],[47,50,["H4428"]],[50,52,["H1697"]]]},{"k":12788,"v":[[0,4,["H3318","H2001"]],[4,5,["H1931"]],[5,6,["H3117"]],[6,7,["H8056"]],[7,11,["H2896"]],[11,12,["H3820"]],[12,15,["H2001"]],[15,16,["H7200","(H853)"]],[16,17,["H4782"]],[17,20,["H4428"]],[20,21,["H8179"]],[21,26,["H6965","H3808"]],[26,27,["H3808"]],[27,28,["H2111"]],[28,29,["H4480"]],[29,30,["H2001"]],[30,31,["H2001"]],[31,33,["H4390"]],[33,35,["H2534"]],[35,36,["H5921"]],[36,37,["H4782"]]]},{"k":12789,"v":[[0,2,["H2001"]],[2,4,["H662"]],[4,8,["H935","H413"]],[8,9,["H1004"]],[9,11,["H7971"]],[11,13,["H935"]],[13,14,["(H853)"]],[14,16,["H157"]],[16,18,["H2238"]],[18,20,["H802"]]]},{"k":12790,"v":[[0,2,["H2001"]],[2,3,["H5608"]],[3,5,["(H853)"]],[5,7,["H3519"]],[7,10,["H6239"]],[10,13,["H7230"]],[13,16,["H1121"]],[16,18,["H3605"]],[18,21,["H834"]],[21,23,["H4428"]],[23,25,["H1431"]],[25,28,["H834"]],[28,31,["H5375"]],[31,33,["H5921"]],[33,35,["H8269"]],[35,37,["H5650"]],[37,40,["H4428"]]]},{"k":12791,"v":[[0,1,["H2001"]],[1,2,["H559"]],[2,3,["H637"]],[3,5,["H635"]],[5,7,["H4436"]],[7,10,["H3808"]],[10,13,["H935"]],[13,14,["H5973"]],[14,16,["H4428"]],[16,17,["H413"]],[17,19,["H4960"]],[19,20,["H834"]],[20,23,["H6213"]],[23,24,["H3588","H518"]],[24,28,["H4279"]],[28,30,["H589"]],[30,31,["H7121"]],[31,34,["H1571"]],[34,35,["H5973"]],[35,37,["H4428"]]]},{"k":12792,"v":[[0,2,["H3605"]],[2,3,["H2088"]],[3,4,["H7737"]],[4,6,["H369"]],[6,8,["H3605","H6256"]],[8,10,["H589"]],[10,11,["H7200","(H853)"]],[11,12,["H4782"]],[12,14,["H3064"]],[14,15,["H3427"]],[15,18,["H4428"]],[18,19,["H8179"]]]},{"k":12793,"v":[[0,2,["H559"]],[2,3,["H2238"]],[3,5,["H802"]],[5,7,["H3605"]],[7,9,["H157"]],[9,14,["H6086"]],[14,16,["H6213"]],[16,18,["H2572"]],[18,19,["H520"]],[19,20,["H1364"]],[20,23,["H1242"]],[23,24,["H559"]],[24,28,["H4428"]],[28,29,["(H853)"]],[29,30,["H4782"]],[30,33,["H8518"]],[33,34,["H5921"]],[34,36,["H935"]],[36,39,["H8056"]],[39,40,["H5973"]],[40,42,["H4428"]],[42,43,["H413"]],[43,45,["H4960"]],[45,48,["H1697"]],[48,49,["H3190","H6440"]],[49,50,["H2001"]],[50,55,["H6086"]],[55,58,["H6213"]]]},{"k":12794,"v":[[0,2,["H1931"]],[2,3,["H3915"]],[3,5,["H5074"]],[5,7,["H4428"]],[7,8,["H8142"]],[8,11,["H559"]],[11,13,["H935","(H853)"]],[13,15,["H5612"]],[15,17,["H2146"]],[17,20,["H1697","H3117"]],[20,23,["H1961"]],[23,24,["H7121"]],[24,25,["H6440"]],[25,27,["H4428"]]]},{"k":12795,"v":[[0,4,["H4672"]],[4,5,["H3789"]],[5,6,["H834"]],[6,7,["H4782"]],[7,9,["H5046"]],[9,10,["H5921"]],[10,11,["H904"]],[11,13,["H8657"]],[13,14,["H8147"]],[14,17,["H4428"]],[17,18,["H5631"]],[18,20,["H4480","H8104"]],[20,23,["H5592"]],[23,24,["H834"]],[24,25,["H1245"]],[25,27,["H7971"]],[27,28,["H3027"]],[28,31,["H4428"]],[31,32,["H325"]]]},{"k":12796,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H4100"]],[5,6,["H3366"]],[6,8,["H1420"]],[8,11,["H6213"]],[11,13,["H4782"]],[13,14,["H5921"]],[14,15,["H2088"]],[15,17,["H559"]],[17,19,["H4428"]],[19,20,["H5288"]],[20,22,["H8334"]],[22,27,["H3808","H1697"]],[27,28,["H6213"]],[28,29,["H5973"]],[29,30,[]]]},{"k":12797,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H4310"]],[5,9,["H2691"]],[9,11,["H2001"]],[11,13,["H935"]],[13,16,["H2435"]],[16,17,["H2691"]],[17,20,["H4428"]],[20,21,["H1004"]],[21,23,["H559"]],[23,26,["H4428"]],[26,28,["H8518","(H853)"]],[28,29,["H4782"]],[29,30,["H5921"]],[30,32,["H6086"]],[32,33,["H834"]],[33,36,["H3559"]],[36,38,[]]]},{"k":12798,"v":[[0,3,["H4428"]],[3,4,["H5288"]],[4,5,["H559"]],[5,6,["H413"]],[6,8,["H2009"]],[8,9,["H2001"]],[9,10,["H5975"]],[10,13,["H2691"]],[13,16,["H4428"]],[16,17,["H559"]],[17,21,["H935"]]]},{"k":12799,"v":[[0,2,["H2001"]],[2,4,["H935"]],[4,7,["H4428"]],[7,8,["H559"]],[8,11,["H4100"]],[11,14,["H6213"]],[14,17,["H376"]],[17,18,["H834"]],[18,20,["H4428"]],[20,21,["H2654"]],[21,23,["H3366"]],[23,25,["H2001"]],[25,26,["H559"]],[26,29,["H3820"]],[29,31,["H4310"]],[31,34,["H4428"]],[34,35,["H2654"]],[35,37,["H6213"]],[37,38,["H3366"]],[38,40,["H3148"]],[40,41,["H4480"]],[41,42,[]]]},{"k":12800,"v":[[0,2,["H2001"]],[2,3,["H559","H413"]],[3,5,["H4428"]],[5,8,["H376"]],[8,9,["H834"]],[9,11,["H4428"]],[11,12,["H2654"]],[12,14,["H3366"]]]},{"k":12801,"v":[[0,3,["H4438"]],[3,4,["H3830"]],[4,6,["H935"]],[6,7,["H834"]],[7,9,["H4428"]],[9,12,["H3847"]],[12,15,["H5483"]],[15,16,["H834"]],[16,18,["H4428"]],[18,19,["H7392"]],[19,20,["H5921"]],[20,23,["H3804"]],[23,24,["H4438"]],[24,25,["H834"]],[25,27,["H5414"]],[27,30,["H7218"]]]},{"k":12802,"v":[[0,4,["H3830"]],[4,6,["H5483"]],[6,8,["H5414"]],[8,9,["H5921"]],[9,11,["H3027"]],[11,13,["H376"]],[13,16,["H4428"]],[16,18,["H6579"]],[18,19,["H4480","H8269"]],[19,23,["H3847","(H853)"]],[23,25,["H376"]],[25,27,["H834"]],[27,29,["H4428"]],[29,30,["H2654"]],[30,32,["H3366"]],[32,34,["H7392"]],[34,36,["H5921"]],[36,37,["H5483"]],[37,40,["H7339"]],[40,43,["H5892"]],[43,45,["H7121"]],[45,46,["H6440"]],[46,48,["H3602"]],[48,52,["H6213"]],[52,55,["H376"]],[55,56,["H834"]],[56,58,["H4428"]],[58,59,["H2654"]],[59,61,["H3366"]]]},{"k":12803,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H2001"]],[6,8,["H4116"]],[8,10,["H3947","(H853)"]],[10,12,["H3830"]],[12,15,["H5483"]],[15,16,["H834"]],[16,19,["H1696"]],[19,21,["H6213"]],[21,23,["H3651"]],[23,25,["H4782"]],[25,27,["H3064"]],[27,29,["H3427"]],[29,32,["H4428"]],[32,33,["H8179"]],[33,35,["H408","H1697"]],[35,36,["H5307"]],[36,38,["H4480","H3605"]],[38,39,["H834"]],[39,42,["H1696"]]]},{"k":12804,"v":[[0,2,["H3947"]],[2,3,["H2001","(H853)"]],[3,5,["H3830"]],[5,8,["H5483"]],[8,10,["H3847","(H853)"]],[10,11,["H4782"]],[11,16,["H7392"]],[16,19,["H7339"]],[19,22,["H5892"]],[22,24,["H7121"]],[24,25,["H6440"]],[25,27,["H3602"]],[27,31,["H6213"]],[31,34,["H376"]],[34,35,["H834"]],[35,37,["H4428"]],[37,38,["H2654"]],[38,40,["H3366"]]]},{"k":12805,"v":[[0,2,["H4782"]],[2,4,["H7725"]],[4,5,["H413"]],[5,7,["H4428"]],[7,8,["H8179"]],[8,10,["H2001"]],[10,11,["H1765"]],[11,12,["H413"]],[12,14,["H1004"]],[14,15,["H57"]],[15,19,["H7218"]],[19,20,["H2645"]]]},{"k":12806,"v":[[0,2,["H2001"]],[2,3,["H5608"]],[3,4,["H2238"]],[4,6,["H802"]],[6,8,["H3605"]],[8,10,["H157","(H853)"]],[10,11,["H3605"]],[11,13,["H834"]],[13,15,["H7136"]],[15,18,["H559"]],[18,21,["H2450"]],[21,23,["H2238"]],[23,25,["H802"]],[25,28,["H518"]],[28,29,["H4782"]],[29,33,["H4480","H2233"]],[33,36,["H3064"]],[36,37,["H6440"]],[37,38,["H834"]],[38,41,["H2490"]],[41,43,["H5307"]],[43,46,["H3808"]],[46,47,["H3201"]],[47,50,["H3588"]],[50,53,["H5307","H5307"]],[53,54,["H6440"]],[54,55,[]]]},{"k":12807,"v":[[0,5,["H5750"]],[5,6,["H1696"]],[6,7,["H5973"]],[7,9,["H5060"]],[9,11,["H4428"]],[11,12,["H5631"]],[12,14,["H926"]],[14,16,["H935","(H853)"]],[16,17,["H2001"]],[17,18,["H413"]],[18,20,["H4960"]],[20,21,["H834"]],[21,22,["H635"]],[22,24,["H6213"]]]},{"k":12808,"v":[[0,3,["H4428"]],[3,5,["H2001"]],[5,6,["H935"]],[6,8,["H8354"]],[8,9,["H5973"]],[9,10,["H635"]],[10,12,["H4436"]]]},{"k":12809,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,5,["H1571"]],[5,7,["H635"]],[7,10,["H8145"]],[10,11,["H3117"]],[11,14,["H4960"]],[14,16,["H3196"]],[16,17,["H4100"]],[17,20,["H7596"]],[20,21,["H4436"]],[21,22,["H635"]],[22,27,["H5414"]],[27,30,["H4100"]],[30,33,["H1246"]],[33,38,["H6213"]],[38,40,["H5704"]],[40,42,["H2677"]],[42,45,["H4438"]]]},{"k":12810,"v":[[0,2,["H635"]],[2,4,["H4436"]],[4,5,["H6030"]],[5,7,["H559"]],[7,8,["H518"]],[8,11,["H4672"]],[11,12,["H2580"]],[12,15,["H5869"]],[15,17,["H4428"]],[17,19,["H518"]],[19,21,["H2895","H5921"]],[21,23,["H4428"]],[23,26,["H5315"]],[26,28,["H5414"]],[28,32,["H7596"]],[32,35,["H5971"]],[35,38,["H1246"]]]},{"k":12811,"v":[[0,1,["H3588"]],[1,4,["H4376"]],[4,5,["H589"]],[5,8,["H5971"]],[8,11,["H8045"]],[11,14,["H2026"]],[14,17,["H6"]],[17,19,["H432"]],[19,23,["H4376"]],[23,25,["H5650"]],[25,27,["H8198"]],[27,32,["H2790"]],[32,33,["H3588"]],[33,35,["H6862"]],[35,37,["H369"]],[37,38,["H7737"]],[38,40,["H4428"]],[40,41,["H5143"]]]},{"k":12812,"v":[[0,3,["H4428"]],[3,4,["H325"]],[4,5,["H559"]],[5,7,["H559"]],[7,9,["H635"]],[9,11,["H4436"]],[11,12,["H4310"]],[12,14,["H1931","H2088"]],[14,16,["H335"]],[16,18,["H2088","H1931"]],[18,19,["H834"]],[19,21,["H4390"]],[21,24,["H3820"]],[24,26,["H6213"]],[26,27,["H3651"]]]},{"k":12813,"v":[[0,2,["H635"]],[2,3,["H559"]],[3,5,["H376","H6862"]],[5,7,["H341"]],[7,9,["H2088"]],[9,10,["H7451"]],[10,11,["H2001"]],[11,13,["H2001"]],[13,15,["H1204"]],[15,16,["H4480","H6440"]],[16,18,["H4428"]],[18,21,["H4436"]]]},{"k":12814,"v":[[0,3,["H4428"]],[3,4,["H6965"]],[4,7,["H4480","H4960"]],[7,9,["H3196"]],[9,12,["H2534"]],[12,14,["H413"]],[14,16,["H1055"]],[16,17,["H1594"]],[17,19,["H2001"]],[19,21,["H5975"]],[21,24,["H1245"]],[24,25,["H5921"]],[25,27,["H5315"]],[27,29,["H4480","H635"]],[29,31,["H4436"]],[31,32,["H3588"]],[32,34,["H7200"]],[34,35,["H3588"]],[35,38,["H7451"]],[38,39,["H3615"]],[39,40,["H413"]],[40,42,["H4480","H854"]],[42,44,["H4428"]]]},{"k":12815,"v":[[0,3,["H4428"]],[3,4,["H7725"]],[4,9,["H4480","H1594","H1055"]],[9,10,["H413"]],[10,12,["H1004"]],[12,15,["H4960"]],[15,17,["H3196"]],[17,19,["H2001"]],[19,21,["H5307"]],[21,22,["H5921"]],[22,24,["H4296"]],[24,25,["H834","H5921"]],[25,26,["H635"]],[26,29,["H559"]],[29,31,["H4428"]],[31,34,["H3533","(H853)"]],[34,36,["H4436"]],[36,37,["H1571"]],[37,38,["H5973"]],[38,42,["H1004"]],[42,45,["H1697"]],[45,47,["H3318"]],[47,51,["H4480","H6310","H4428"]],[51,53,["H2645"]],[53,54,["H2001"]],[54,55,["H6440"]]]},{"k":12816,"v":[[0,2,["H2726"]],[2,3,["H259"]],[3,4,["H4480"]],[4,6,["H5631"]],[6,7,["H559"]],[7,8,["H6440"]],[8,10,["H4428"]],[10,11,["H2009"]],[11,12,["H1571"]],[12,14,["H6086"]],[14,15,["H2572"]],[15,16,["H520"]],[16,17,["H1364"]],[17,18,["H834"]],[18,19,["H2001"]],[19,21,["H6213"]],[21,23,["H4782"]],[23,24,["H834"]],[24,26,["H1696"]],[26,27,["H2896"]],[27,28,["H5921"]],[28,30,["H4428"]],[30,31,["H5975"]],[31,34,["H1004"]],[34,36,["H2001"]],[36,39,["H4428"]],[39,40,["H559"]],[40,41,["H8518"]],[41,43,["H5921"]]]},{"k":12817,"v":[[0,3,["H8518","(H853)"]],[3,4,["H2001"]],[4,5,["H5921"]],[5,7,["H6086"]],[7,8,["H834"]],[8,11,["H3559"]],[11,13,["H4782"]],[13,17,["H4428"]],[17,18,["H2534"]],[18,19,["H7918"]]]},{"k":12818,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H4428"]],[6,7,["H325"]],[7,8,["H5414","(H853)"]],[8,10,["H1004"]],[10,12,["H2001"]],[12,14,["H3064"]],[14,15,["H6887"]],[15,17,["H635"]],[17,19,["H4436"]],[19,21,["H4782"]],[21,22,["H935"]],[22,23,["H6440"]],[23,25,["H4428"]],[25,26,["H3588"]],[26,27,["H635"]],[27,29,["H5046"]],[29,30,["H4100"]],[30,31,["H1931"]],[31,34,[]]]},{"k":12819,"v":[[0,3,["H4428"]],[3,5,["H5493","(H853)"]],[5,7,["H2885"]],[7,8,["H834"]],[8,11,["H5674"]],[11,13,["H4480","H2001"]],[13,15,["H5414"]],[15,18,["H4782"]],[18,20,["H635"]],[20,21,["H7760","(H853)"]],[21,22,["H4782"]],[22,23,["H5921"]],[23,25,["H1004"]],[25,27,["H2001"]]]},{"k":12820,"v":[[0,2,["H635"]],[2,3,["H1696"]],[3,5,["H3254"]],[5,6,["H6440"]],[6,8,["H4428"]],[8,11,["H5307"]],[11,12,["H6440"]],[12,14,["H7272"]],[14,16,["H2603"]],[16,19,["H1058"]],[19,22,["H5674","(H853)"]],[22,24,["H7451"]],[24,26,["H2001"]],[26,28,["H91"]],[28,31,["H4284"]],[31,32,["H834"]],[32,35,["H2803"]],[35,36,["H5921"]],[36,38,["H3064"]]]},{"k":12821,"v":[[0,3,["H4428"]],[3,5,["H3447","(H853)"]],[5,7,["H2091"]],[7,8,["H8275"]],[8,10,["H635"]],[10,12,["H635"]],[12,13,["H6965"]],[13,15,["H5975"]],[15,16,["H6440"]],[16,18,["H4428"]]]},{"k":12822,"v":[[0,2,["H559"]],[2,3,["H518"]],[3,5,["H2895","H5921"]],[5,7,["H4428"]],[7,9,["H518"]],[9,12,["H4672"]],[12,13,["H2580"]],[13,16,["H6440"]],[16,19,["H1697"]],[19,21,["H3787"]],[21,22,["H6440"]],[22,24,["H4428"]],[24,26,["H589"]],[26,28,["H2895"]],[28,31,["H5869"]],[31,35,["H3789"]],[35,37,["H7725","(H853)"]],[37,39,["H5612"]],[39,40,["H4284"]],[40,42,["H2001"]],[42,44,["H1121"]],[44,46,["H4099"]],[46,48,["H91"]],[48,49,["H834"]],[49,51,["H3789"]],[51,53,["H6","(H853)"]],[53,55,["H3064"]],[55,56,["H834"]],[56,59,["H3605"]],[59,61,["H4428"]],[61,62,["H4082"]]]},{"k":12823,"v":[[0,1,["H3588"]],[1,2,["H349"]],[2,5,["H3201"]],[5,7,["H7200"]],[7,9,["H7451"]],[9,10,["H834"]],[10,13,["H4672","(H853)"]],[13,15,["H5971"]],[15,17,["H349"]],[17,20,["H3201"]],[20,22,["H7200"]],[22,24,["H13"]],[24,27,["H4138"]]]},{"k":12824,"v":[[0,3,["H4428"]],[3,4,["H325"]],[4,5,["H559"]],[5,7,["H635"]],[7,9,["H4436"]],[9,12,["H4782"]],[12,14,["H3064"]],[14,15,["H2009"]],[15,18,["H5414"]],[18,19,["H635"]],[19,21,["H1004"]],[21,23,["H2001"]],[23,28,["H8518"]],[28,29,["H5921"]],[29,31,["H6086"]],[31,32,["H5921","H834"]],[32,34,["H7971"]],[34,36,["H3027"]],[36,39,["H3064"]]]},{"k":12825,"v":[[0,1,["H3789"]],[1,2,["H859"]],[2,4,["H5921"]],[4,6,["H3064"]],[6,9,["H2896","H5869"]],[9,13,["H4428"]],[13,14,["H8034"]],[14,16,["H2856"]],[16,20,["H4428"]],[20,21,["H2885"]],[21,22,["H3588"]],[22,24,["H3791"]],[24,25,["H834"]],[25,27,["H3789"]],[27,30,["H4428"]],[30,31,["H8034"]],[31,33,["H2856"]],[33,36,["H4428"]],[36,37,["H2885"]],[37,39,["H369"]],[39,41,["H7725"]]]},{"k":12826,"v":[[0,4,["H4428"]],[4,5,["H5608"]],[5,6,["H7121"]],[6,8,["H1931"]],[8,9,["H6256"]],[9,12,["H7992"]],[12,13,["H2320"]],[13,14,["H1931"]],[14,17,["H2320"]],[17,18,["H5510"]],[18,21,["H7969"]],[21,23,["H6242"]],[23,29,["H3789"]],[29,32,["H3605"]],[32,33,["H834"]],[33,34,["H4782"]],[34,35,["H6680"]],[35,36,["H413"]],[36,38,["H3064"]],[38,40,["H413"]],[40,42,["H323"]],[42,45,["H6346"]],[45,47,["H8269"]],[47,50,["H4082"]],[50,51,["H834"]],[51,54,["H4480","H1912"]],[54,55,["H5704"]],[55,56,["H3568"]],[56,58,["H3967"]],[58,59,["H6242"]],[59,61,["H7651"]],[61,62,["H4082"]],[62,65,["H4082","H4082"]],[65,69,["H3791"]],[69,74,["H5971","H5971"]],[74,77,["H3956"]],[77,79,["H413"]],[79,81,["H3064"]],[81,85,["H3791"]],[85,90,["H3956"]]]},{"k":12827,"v":[[0,3,["H3789"]],[3,6,["H4428"]],[6,7,["H325"]],[7,8,["H8034"]],[8,10,["H2856"]],[10,14,["H4428"]],[14,15,["H2885"]],[15,17,["H7971"]],[17,18,["H5612"]],[18,19,["H3027"]],[19,20,["H7323"]],[20,22,["H5483"]],[22,24,["H7392"]],[24,26,["H7409"]],[26,27,["H327"]],[27,29,["H1121"]],[29,30,["H7424"]]]},{"k":12828,"v":[[0,1,["H834"]],[1,3,["H4428"]],[3,4,["H5414"]],[4,6,["H3064"]],[6,7,["H834"]],[7,10,["H3605"]],[10,11,["H5892","H5892"]],[11,15,["H6950"]],[15,18,["H5975"]],[18,19,["H5921"]],[19,21,["H5315"]],[21,23,["H8045"]],[23,25,["H2026"]],[25,30,["H6","(H853)"]],[30,31,["H3605"]],[31,33,["H2428"]],[33,36,["H5971"]],[36,38,["H4082"]],[38,41,["H6696"]],[41,45,["H2945"]],[45,47,["H802"]],[47,52,["H7998"]],[52,57,["H962"]]]},{"k":12829,"v":[[0,2,["H259"]],[2,3,["H3117"]],[3,5,["H3605"]],[5,7,["H4082"]],[7,9,["H4428"]],[9,10,["H325"]],[10,14,["H7969","H6240"]],[14,18,["H8147","H6240"]],[18,19,["H2320"]],[19,20,["H1931"]],[20,23,["H2320"]],[23,24,["H143"]]]},{"k":12830,"v":[[0,2,["H6572"]],[2,5,["H3791"]],[5,8,["H1881"]],[8,11,["H5414"]],[11,13,["H3605"]],[13,14,["H4082","H4082"]],[14,16,["H1540"]],[16,18,["H3605"]],[18,19,["H5971"]],[19,23,["H3064"]],[23,25,["H1961"]],[25,26,["H6264"]],[26,28,["H2088"]],[28,29,["H3117"]],[29,32,["H5358"]],[32,35,["H4480","H341"]]]},{"k":12831,"v":[[0,3,["H7323"]],[3,6,["H7392"]],[6,7,["H7409"]],[7,9,["H327"]],[9,11,["H3318"]],[11,13,["H926"]],[13,16,["H1765"]],[16,19,["H4428"]],[19,20,["H1697"]],[20,23,["H1881"]],[23,25,["H5414"]],[25,27,["H7800"]],[27,29,["H1002"]]]},{"k":12832,"v":[[0,2,["H4782"]],[2,4,["H3318"]],[4,7,["H4480","H6440"]],[7,10,["H4428"]],[10,12,["H4438"]],[12,13,["H3830"]],[13,15,["H8504"]],[15,17,["H2353"]],[17,21,["H1419"]],[21,22,["H5850"]],[22,24,["H2091"]],[24,28,["H8509"]],[28,31,["H948"]],[31,33,["H713"]],[33,36,["H5892"]],[36,38,["H7800"]],[38,39,["H6670"]],[39,42,["H8055"]]]},{"k":12833,"v":[[0,2,["H3064"]],[2,3,["H1961"]],[3,4,["H219"]],[4,6,["H8057"]],[6,8,["H8342"]],[8,10,["H3366"]]]},{"k":12834,"v":[[0,3,["H3605"]],[3,4,["H4082","H4082"]],[4,7,["H3605"]],[7,8,["H5892","H5892"]],[8,9,["H4725","H834"]],[9,11,["H4428"]],[11,12,["H1697"]],[12,15,["H1881"]],[15,16,["H5060"]],[16,18,["H3064"]],[18,20,["H8057"]],[20,22,["H8342"]],[22,24,["H4960"]],[24,27,["H2896"]],[27,28,["H3117"]],[28,30,["H7227"]],[30,33,["H4480","H5971"]],[33,36,["H776"]],[36,38,["H3054"]],[38,39,["H3588"]],[39,41,["H6343"]],[41,44,["H3064"]],[44,45,["H5307"]],[45,46,["H5921"]],[46,47,[]]]},{"k":12835,"v":[[0,4,["H8147","H6240"]],[4,5,["H2320"]],[5,6,["H1931"]],[6,9,["H2320"]],[9,10,["H143"]],[10,13,["H7969","H6240"]],[13,14,["H3117"]],[14,18,["H834"]],[18,20,["H4428"]],[20,21,["H1697"]],[21,24,["H1881"]],[24,26,["H5060"]],[26,31,["H6213"]],[31,34,["H3117"]],[34,35,["H834"]],[35,37,["H341"]],[37,40,["H3064"]],[40,41,["H7663"]],[41,44,["H7980"]],[44,48,["H1931"]],[48,53,["H2015"]],[53,54,["H834"]],[54,56,["H3064"]],[56,59,["H7980"]],[59,60,["H1992"]],[60,62,["H8130"]],[62,63,[]]]},{"k":12836,"v":[[0,2,["H3064"]],[2,5,["H6950"]],[5,8,["H5892"]],[8,10,["H3605"]],[10,12,["H4082"]],[12,15,["H4428"]],[15,16,["H325"]],[16,18,["H7971"]],[18,19,["H3027"]],[19,23,["H1245"]],[23,25,["H7451"]],[25,27,["H3808"]],[27,28,["H376"]],[28,30,["H5975"]],[30,32,["H3588"]],[32,34,["H6343"]],[34,37,["H5307"]],[37,38,["H5921"]],[38,39,["H3605"]],[39,40,["H5971"]]]},{"k":12837,"v":[[0,2,["H3605"]],[2,4,["H8269"]],[4,7,["H4082"]],[7,10,["H323"]],[10,13,["H6346"]],[13,15,["H6213","H4399"]],[15,16,["H834"]],[16,18,["H4428"]],[18,19,["H5375","(H853)"]],[19,21,["H3064"]],[21,22,["H3588"]],[22,24,["H6343"]],[24,26,["H4782"]],[26,27,["H5307"]],[27,28,["H5921"]],[28,29,[]]]},{"k":12838,"v":[[0,1,["H3588"]],[1,2,["H4782"]],[2,4,["H1419"]],[4,7,["H4428"]],[7,8,["H1004"]],[8,11,["H8089"]],[11,13,["H1980"]],[13,15,["H3605"]],[15,17,["H4082"]],[17,18,["H3588"]],[18,20,["H376"]],[20,21,["H4782"]],[21,22,["H1980"]],[22,25,["H1419"]]]},{"k":12839,"v":[[0,3,["H3064"]],[3,4,["H5221"]],[4,5,["H3605"]],[5,7,["H341"]],[7,10,["H4347"]],[10,13,["H2719"]],[13,15,["H2027"]],[15,17,["H12"]],[17,19,["H6213"]],[19,22,["H7522"]],[22,26,["H8130"]],[26,27,[]]]},{"k":12840,"v":[[0,3,["H7800"]],[3,5,["H1002"]],[5,7,["H3064"]],[7,8,["H2026"]],[8,10,["H6"]],[10,11,["H2568"]],[11,12,["H3967"]],[12,13,["H376"]]]},{"k":12841,"v":[[0,2,["H6577"]],[2,4,["H1813"]],[4,6,["H630"]]]},{"k":12842,"v":[[0,2,["H6334"]],[2,4,["H118"]],[4,6,["H743"]]]},{"k":12843,"v":[[0,2,["H6534"]],[2,4,["H747"]],[4,6,["H742"]],[6,8,["H2055"]]]},{"k":12844,"v":[[0,2,["H6235"]],[2,3,["H1121"]],[3,5,["H2001"]],[5,7,["H1121"]],[7,9,["H4099"]],[9,11,["H6887"]],[11,14,["H3064"]],[14,15,["H2026"]],[15,20,["H961"]],[20,21,["H7971"]],[21,23,["H3808","(H853)"]],[23,25,["H3027"]]]},{"k":12845,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H4557"]],[5,10,["H2026"]],[10,12,["H7800"]],[12,14,["H1002"]],[14,16,["H935"]],[16,17,["H6440"]],[17,19,["H4428"]]]},{"k":12846,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H635"]],[6,8,["H4436"]],[8,10,["H3064"]],[10,12,["H2026"]],[12,14,["H6"]],[14,15,["H2568"]],[15,16,["H3967"]],[16,17,["H376"]],[17,19,["H7800"]],[19,21,["H1002"]],[21,24,["H6235"]],[24,25,["H1121"]],[25,27,["H2001"]],[27,28,["H4100"]],[28,31,["H6213"]],[31,34,["H7605"]],[34,37,["H4428"]],[37,38,["H4082"]],[38,40,["H4100"]],[40,43,["H7596"]],[43,48,["H5414"]],[48,51,["H4100"]],[51,54,["H1246"]],[54,55,["H5750"]],[55,60,["H6213"]]]},{"k":12847,"v":[[0,2,["H559"]],[2,3,["H635"]],[3,4,["H518"]],[4,6,["H2895","H5921"]],[6,8,["H4428"]],[8,12,["H5414"]],[12,15,["H3064"]],[15,16,["H834"]],[16,19,["H7800"]],[19,21,["H6213"]],[21,23,["H4279"]],[23,24,["H1571"]],[24,28,["H3117"]],[28,29,["H1881"]],[29,32,["H2001"]],[32,33,["H6235"]],[33,34,["H1121"]],[34,36,["H8518"]],[36,37,["H5921"]],[37,39,["H6086"]]]},{"k":12848,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H3651"]],[6,9,["H6213"]],[9,12,["H1881"]],[12,14,["H5414"]],[14,16,["H7800"]],[16,19,["H8518"]],[19,20,["H2001"]],[20,21,["H6235"]],[21,22,["H1121"]]]},{"k":12849,"v":[[0,3,["H3064"]],[3,4,["H834"]],[4,7,["H7800"]],[7,10,["H6950"]],[10,13,["H702","H6240"]],[13,14,["H3117"]],[14,15,["H1571"]],[15,18,["H2320"]],[18,19,["H143"]],[19,21,["H2026"]],[21,22,["H7969"]],[22,23,["H3967"]],[23,24,["H376"]],[24,26,["H7800"]],[26,30,["H961"]],[30,32,["H7971"]],[32,33,["H3808","(H853)"]],[33,35,["H3027"]]]},{"k":12850,"v":[[0,3,["H7605"]],[3,4,["H3064"]],[4,5,["H834"]],[5,9,["H4428"]],[9,10,["H4082"]],[10,13,["H6950"]],[13,15,["H5975"]],[15,16,["H5921"]],[16,18,["H5315"]],[18,21,["H5117"]],[21,24,["H4480","H341"]],[24,26,["H2026"]],[26,29,["H8130"]],[29,30,["H7657"]],[30,32,["H2568"]],[32,33,["H505"]],[33,36,["H7971"]],[36,37,["H3808","(H853)"]],[37,39,["H3027"]],[39,42,["H961"]]]},{"k":12851,"v":[[0,3,["H7969","H6240"]],[3,4,["H3117"]],[4,7,["H2320"]],[7,8,["H143"]],[8,12,["H702","H6240"]],[12,17,["H5117"]],[17,20,["H6213"]],[20,23,["H3117"]],[23,25,["H4960"]],[25,27,["H8057"]]]},{"k":12852,"v":[[0,3,["H3064"]],[3,4,["H834"]],[4,7,["H7800"]],[7,9,["H6950"]],[9,12,["H7969","H6240"]],[12,18,["H702","H6240"]],[18,23,["H2568","H6240"]],[23,29,["H5117"]],[29,31,["H6213"]],[31,34,["H3117"]],[34,36,["H4960"]],[36,38,["H8057"]]]},{"k":12853,"v":[[0,1,["H5921","H3651"]],[1,3,["H3064"]],[3,6,["H6521"]],[6,8,["H3427"]],[8,11,["H6519"]],[11,12,["H5892"]],[12,13,["H6213","(H853)"]],[13,15,["H702","H6240"]],[15,16,["H3117"]],[16,19,["H2320"]],[19,20,["H143"]],[20,24,["H8057"]],[24,26,["H4960"]],[26,29,["H2896"]],[29,30,["H3117"]],[30,33,["H4916"]],[33,34,["H4490"]],[34,35,["H376"]],[35,37,["H7453"]]]},{"k":12854,"v":[[0,2,["H4782"]],[2,3,["H3789","(H853)"]],[3,4,["H428"]],[4,5,["H1697"]],[5,7,["H7971"]],[7,8,["H5612"]],[8,9,["H413"]],[9,10,["H3605"]],[10,12,["H3064"]],[12,13,["H834"]],[13,16,["H3605"]],[16,18,["H4082"]],[18,21,["H4428"]],[21,22,["H325"]],[22,24,["H7138"]],[24,26,["H7350"]]]},{"k":12855,"v":[[0,2,["H6965"]],[2,4,["H5921"]],[4,8,["H1961"]],[8,9,["H6213","(H853)"]],[9,11,["H702","H6240"]],[11,12,["H3117"]],[12,15,["H2320"]],[15,16,["H143"]],[16,19,["H2568","H6240"]],[19,20,["H3117"]],[20,24,["H3605","H8141","H8141"]]]},{"k":12856,"v":[[0,3,["H3117"]],[3,4,["H834"]],[4,6,["H3064"]],[6,7,["H5117"]],[7,10,["H4480","H341"]],[10,13,["H2320"]],[13,14,["H834"]],[14,16,["H2015"]],[16,20,["H4480","H3015"]],[20,22,["H8057"]],[22,25,["H4480","H60"]],[25,28,["H2896"]],[28,29,["H3117"]],[29,33,["H6213"]],[33,35,["H3117"]],[35,37,["H4960"]],[37,39,["H8057"]],[39,42,["H4916"]],[42,43,["H4490"]],[43,44,["H376"]],[44,46,["H7453"]],[46,48,["H4979"]],[48,51,["H34"]]]},{"k":12857,"v":[[0,3,["H3064"]],[3,4,["H6901"]],[4,6,["H6213","(H853)"]],[6,7,["H834"]],[7,10,["H2490"]],[10,12,["H834"]],[12,13,["H4782"]],[13,15,["H3789"]],[15,16,["H413"]],[16,17,[]]]},{"k":12858,"v":[[0,1,["H3588"]],[1,2,["H2001"]],[2,4,["H1121"]],[4,6,["H4099"]],[6,8,["H91"]],[8,10,["H6887"]],[10,12,["H3605"]],[12,14,["H3064"]],[14,16,["H2803"]],[16,17,["H5921"]],[17,19,["H3064"]],[19,21,["H6"]],[21,25,["H5307"]],[25,26,["H6332"]],[26,27,["H1931"]],[27,30,["H1486"]],[30,32,["H2000"]],[32,36,["H6"]],[36,37,[]]]},{"k":12859,"v":[[0,4,["H935"]],[4,5,["H6440"]],[5,7,["H4428"]],[7,9,["H559"]],[9,10,["H5973"]],[10,11,["H5612"]],[11,14,["H7451"]],[14,15,["H4284"]],[15,16,["H834"]],[16,18,["H2803"]],[18,19,["H5921"]],[19,21,["H3064"]],[21,23,["H7725"]],[23,24,["H5921"]],[24,27,["H7218"]],[27,33,["H1121"]],[33,36,["H8518"]],[36,37,["H5921"]],[37,39,["H6086"]]]},{"k":12860,"v":[[0,1,["H5921","H3651"]],[1,3,["H7121"]],[3,4,["H428"]],[4,5,["H3117"]],[5,6,["H6332"]],[6,7,["H5921"]],[7,9,["H8034"]],[9,11,["H6332"]],[11,12,["H5921","H3651"]],[12,13,["H5921"]],[13,14,["H3605"]],[14,16,["H1697"]],[16,18,["H2063"]],[18,19,["H107"]],[19,23,["H4100"]],[23,26,["H7200"]],[26,27,["H5921"]],[27,29,["H3602"]],[29,31,["H4100"]],[31,33,["H5060"]],[33,34,["H413"]],[34,35,[]]]},{"k":12861,"v":[[0,2,["H3064"]],[2,3,["H6965"]],[3,5,["H6901"]],[5,6,["H5921"]],[6,9,["H5921"]],[9,11,["H2233"]],[11,13,["H5921"]],[13,14,["H3605"]],[14,18,["H3867"]],[18,19,["H5921"]],[19,25,["H3808"]],[25,26,["H5674"]],[26,30,["H6213","(H853)"]],[30,31,["H428"]],[31,32,["H8147"]],[32,33,["H3117"]],[33,37,["H3791"]],[37,43,["H2165"]],[43,44,["H3605"]],[44,45,["H8141","H8141"]]]},{"k":12862,"v":[[0,3,["H428"]],[3,4,["H3117"]],[4,7,["H2142"]],[7,9,["H6213"]],[9,11,["H3605"]],[11,12,["H1755","H1755"]],[12,14,["H4940","H4940"]],[14,16,["H4082","H4082"]],[16,19,["H5892","H5892"]],[19,22,["H428"]],[22,23,["H3117"]],[23,25,["H6332"]],[25,27,["H3808"]],[27,28,["H5674"]],[28,30,["H4480","H8432"]],[30,32,["H3064"]],[32,33,["H3808"]],[33,35,["H2143"]],[35,38,["H5486"]],[38,41,["H4480","H2233"]]]},{"k":12863,"v":[[0,2,["H635"]],[2,4,["H4436"]],[4,6,["H1323"]],[6,8,["H32"]],[8,10,["H4782"]],[10,12,["H3064"]],[12,13,["H3789"]],[13,14,["H854"]],[14,15,["H3605"]],[15,16,["H8633"]],[16,18,["H6965","(H853)"]],[18,19,["H2063"]],[19,20,["H8145"]],[20,21,["H107"]],[21,23,["H6332"]]]},{"k":12864,"v":[[0,3,["H7971"]],[3,5,["H5612"]],[5,6,["H413"]],[6,7,["H3605"]],[7,9,["H3064"]],[9,10,["H413"]],[10,12,["H3967"]],[12,13,["H6242"]],[13,15,["H7651"]],[15,16,["H4082"]],[16,19,["H4438"]],[19,21,["H325"]],[21,23,["H1697"]],[23,25,["H7965"]],[25,27,["H571"]]]},{"k":12865,"v":[[0,2,["H6965","(H853)"]],[2,3,["H428"]],[3,4,["H3117"]],[4,6,["H6332"]],[6,9,["H2165"]],[9,12,["H834"]],[12,13,["H4782"]],[13,15,["H3064"]],[15,17,["H635"]],[17,19,["H4436"]],[19,21,["H6965","H5921"]],[21,24,["H834"]],[24,27,["H6965"]],[27,28,["H5921"]],[28,29,["H5315"]],[29,31,["H5921"]],[31,33,["H2233"]],[33,35,["H1697"]],[35,38,["H6685"]],[38,41,["H2201"]]]},{"k":12866,"v":[[0,3,["H3982"]],[3,5,["H635"]],[5,6,["H6965"]],[6,7,["H428"]],[7,8,["H1697"]],[8,10,["H6332"]],[10,14,["H3789"]],[14,17,["H5612"]]]},{"k":12867,"v":[[0,3,["H4428"]],[3,4,["H325"]],[4,5,["H7760"]],[5,7,["H4522"]],[7,8,["H5921"]],[8,10,["H776"]],[10,14,["H339"]],[14,17,["H3220"]]]},{"k":12868,"v":[[0,2,["H3605"]],[2,4,["H4639"]],[4,7,["H8633"]],[7,11,["H1369"]],[11,14,["H6575"]],[14,17,["H1420"]],[17,19,["H4782"]],[19,20,["H834"]],[20,22,["H4428"]],[22,23,["H1431"]],[23,26,["H1992"]],[26,27,["H3808"]],[27,28,["H3789"]],[28,29,["H5921"]],[29,31,["H5612"]],[31,34,["H1697","H3117"]],[34,37,["H4428"]],[37,39,["H4074"]],[39,41,["H6539"]]]},{"k":12869,"v":[[0,1,["H3588"]],[1,2,["H4782"]],[2,4,["H3064"]],[4,6,["H4932"]],[6,8,["H4428"]],[8,9,["H325"]],[9,11,["H1419"]],[11,14,["H3064"]],[14,16,["H7521"]],[16,19,["H7230"]],[19,22,["H251"]],[22,23,["H1875"]],[23,25,["H2896"]],[25,28,["H5971"]],[28,30,["H1696"]],[30,31,["H7965"]],[31,33,["H3605"]],[33,35,["H2233"]]]},{"k":12870,"v":[[0,2,["H1961"]],[2,4,["H376"]],[4,7,["H776"]],[7,9,["H5780"]],[9,11,["H8034"]],[11,13,["H347"]],[13,15,["H1931"]],[15,16,["H376"]],[16,17,["H1961"]],[17,18,["H8535"]],[18,20,["H3477"]],[20,24,["H3373"]],[24,25,["H430"]],[25,27,["H5493"]],[27,28,["H4480","H7451"]]]},{"k":12871,"v":[[0,4,["H3205"]],[4,7,["H7651"]],[7,8,["H1121"]],[8,10,["H7969"]],[10,11,["H1323"]]]},{"k":12872,"v":[[0,2,["H4735"]],[2,4,["H1961"]],[4,5,["H7651"]],[5,6,["H505"]],[6,7,["H6629"]],[7,9,["H7969"]],[9,10,["H505"]],[10,11,["H1581"]],[11,13,["H2568"]],[13,14,["H3967"]],[14,15,["H6776"]],[15,17,["H1241"]],[17,19,["H2568"]],[19,20,["H3967"]],[20,22,["H860"]],[22,25,["H3966"]],[25,26,["H7227"]],[26,27,["H5657"]],[27,30,["H1931"]],[30,31,["H376"]],[31,32,["H1961"]],[32,34,["H1419"]],[34,36,["H4480","H3605"]],[36,38,["H1121"]],[38,41,["H6924"]]]},{"k":12873,"v":[[0,3,["H1121"]],[3,4,["H1980"]],[4,6,["H6213","H4960"]],[6,9,["H1004"]],[9,11,["H376"]],[11,13,["H3117"]],[13,15,["H7971"]],[15,17,["H7121"]],[17,20,["H7969"]],[20,21,["H269"]],[21,23,["H398"]],[23,26,["H8354"]],[26,27,["H5973"]],[27,28,[]]]},{"k":12874,"v":[[0,3,["H1961"]],[3,5,["H3588"]],[5,7,["H3117"]],[7,10,["H4960"]],[10,13,["H5362"]],[13,15,["H347"]],[15,16,["H7971"]],[16,18,["H6942"]],[18,23,["H7925"]],[23,26,["H1242"]],[26,28,["H5927"]],[28,30,["H5930"]],[30,34,["H4557"]],[34,37,["H3605"]],[37,38,["H3588"]],[38,39,["H347"]],[39,40,["H559"]],[40,43,["H194"]],[43,46,["H1121"]],[46,48,["H2398"]],[48,50,["H1288"]],[50,51,["H430"]],[51,54,["H3824"]],[54,55,["H3602"]],[55,56,["H6213"]],[56,57,["H347"]],[57,58,["H3605","H3117"]]]},{"k":12875,"v":[[0,3,["H1961"]],[3,5,["H3117"]],[5,8,["H1121"]],[8,10,["H430"]],[10,11,["H935"]],[11,14,["H3320"]],[14,15,["H5921"]],[15,17,["H3068"]],[17,19,["H7854"]],[19,20,["H935"]],[20,21,["H1571"]],[21,22,["H8432"]],[22,23,[]]]},{"k":12876,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H7854"]],[6,7,["H4480","H370"]],[7,8,["H935"]],[8,11,["H7854"]],[11,12,["H6030","(H853)"]],[12,14,["H3068"]],[14,16,["H559"]],[16,21,["H4480","H7751"]],[21,24,["H776"]],[24,30,["H4480","H1980"]],[30,32,[]]]},{"k":12877,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H7854"]],[6,9,["H7760","H3820","H5921"]],[9,11,["H5650"]],[11,12,["H347"]],[12,13,["H3588"]],[13,16,["H369"]],[16,18,["H3644"]],[18,21,["H776"]],[21,23,["H8535"]],[23,26,["H3477"]],[26,27,["H376"]],[27,30,["H3373"]],[30,31,["H430"]],[31,33,["H5493"]],[33,34,["H4480","H7451"]]]},{"k":12878,"v":[[0,2,["H7854"]],[2,3,["H6030","(H853)"]],[3,5,["H3068"]],[5,7,["H559"]],[7,9,["H347"]],[9,10,["H3372"]],[10,11,["H430"]],[11,13,["H2600"]]]},{"k":12879,"v":[[0,2,["H3808"]],[2,3,["H859"]],[3,6,["H7753"]],[6,7,["H1157"]],[7,10,["H1157"]],[10,12,["H1004"]],[12,14,["H1157"]],[14,15,["H3605"]],[15,16,["H834"]],[16,21,["H4480","H5439"]],[21,24,["H1288"]],[24,26,["H4639"]],[26,29,["H3027"]],[29,32,["H4735"]],[32,34,["H6555"]],[34,37,["H776"]]]},{"k":12880,"v":[[0,1,["H199"]],[1,3,["H7971"]],[3,5,["H3027"]],[5,6,["H4994"]],[6,8,["H5060"]],[8,9,["H3605"]],[9,10,["H834"]],[10,13,["H518"]],[13,16,["H1288"]],[16,18,["H5921"]],[18,20,["H6440"]]]},{"k":12881,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H7854"]],[6,7,["H2009"]],[7,8,["H3605"]],[8,9,["H834"]],[9,15,["H3027"]],[15,16,["H7535"]],[16,17,["H413"]],[17,21,["H408","H7971"]],[21,23,["H3027"]],[23,25,["H7854"]],[25,27,["H3318"]],[27,28,["H4480","H5973"]],[28,30,["H6440"]],[30,33,["H3068"]]]},{"k":12882,"v":[[0,3,["H1961"]],[3,5,["H3117"]],[5,8,["H1121"]],[8,11,["H1323"]],[11,13,["H398"]],[13,15,["H8354"]],[15,16,["H3196"]],[16,19,["H1060"]],[19,20,["H251"]],[20,21,["H1004"]]]},{"k":12883,"v":[[0,3,["H935"]],[3,5,["H4397"]],[5,6,["H413"]],[6,7,["H347"]],[7,9,["H559"]],[9,11,["H1241"]],[11,12,["H1961"]],[12,13,["H2790"]],[13,16,["H860"]],[16,17,["H7462"]],[17,18,["H5921","H3027"]],[18,19,[]]]},{"k":12884,"v":[[0,3,["H7614"]],[3,4,["H5307"]],[4,10,["H3947"]],[10,14,["H5221"]],[14,16,["H5288"]],[16,19,["H6310"]],[19,22,["H2719"]],[22,24,["H589"]],[24,25,["H7535"]],[25,27,["H4422"]],[27,28,["H905"]],[28,30,["H5046"]],[30,31,[]]]},{"k":12885,"v":[[0,2,["H2088"]],[2,4,["H5750"]],[4,5,["H1696"]],[5,7,["H935"]],[7,9,["H2088"]],[9,11,["H559"]],[11,13,["H784"]],[13,15,["H430"]],[15,17,["H5307"]],[17,18,["H4480"]],[18,19,["H8064"]],[19,23,["H1197"]],[23,25,["H6629"]],[25,28,["H5288"]],[28,30,["H398"]],[30,33,["H589"]],[33,34,["H7535"]],[34,36,["H4422"]],[36,37,["H905"]],[37,39,["H5046"]],[39,40,[]]]},{"k":12886,"v":[[0,2,["H2088"]],[2,4,["H5750"]],[4,5,["H1696"]],[5,7,["H935"]],[7,9,["H2088"]],[9,11,["H559"]],[11,13,["H3778"]],[13,14,["H7760"]],[14,16,["H7969"]],[16,17,["H7218"]],[17,19,["H6584"]],[19,20,["H5921"]],[20,22,["H1581"]],[22,27,["H3947"]],[27,30,["H5221"]],[30,32,["H5288"]],[32,35,["H6310"]],[35,38,["H2719"]],[38,40,["H589"]],[40,41,["H7535"]],[41,43,["H4422"]],[43,44,["H905"]],[44,46,["H5046"]],[46,47,[]]]},{"k":12887,"v":[[0,2,["H2088"]],[2,4,["H5750"]],[4,5,["H1696"]],[5,7,["H935"]],[7,9,["H2088"]],[9,11,["H559"]],[11,13,["H1121"]],[13,16,["H1323"]],[16,18,["H398"]],[18,20,["H8354"]],[20,21,["H3196"]],[21,24,["H1060"]],[24,25,["H251"]],[25,26,["H1004"]]]},{"k":12888,"v":[[0,2,["H2009"]],[2,4,["H935"]],[4,6,["H1419"]],[6,7,["H7307"]],[7,8,["H4480","H5676"]],[8,10,["H4057"]],[10,12,["H5060"]],[12,14,["H702"]],[14,15,["H6438"]],[15,18,["H1004"]],[18,21,["H5307"]],[21,22,["H5921"]],[22,25,["H5288"]],[25,29,["H4191"]],[29,31,["H589"]],[31,32,["H7535"]],[32,34,["H4422"]],[34,35,["H905"]],[35,37,["H5046"]],[37,38,[]]]},{"k":12889,"v":[[0,2,["H347"]],[2,3,["H6965"]],[3,5,["H7167","(H853)"]],[5,7,["H4598"]],[7,9,["H1494","(H853)"]],[9,11,["H7218"]],[11,14,["H5307"]],[14,17,["H776"]],[17,19,["H7812"]]]},{"k":12890,"v":[[0,2,["H559"]],[2,3,["H6174"]],[3,6,["H3318"]],[6,10,["H4480","H990","H517"]],[10,12,["H6174"]],[12,15,["H7725"]],[15,16,["H8033"]],[16,18,["H3068"]],[18,19,["H5414"]],[19,22,["H3068"]],[22,25,["H3947"]],[25,26,["H1288"]],[26,27,["H1961"]],[27,29,["H8034"]],[29,32,["H3068"]]]},{"k":12891,"v":[[0,2,["H3605"]],[2,3,["H2063"]],[3,4,["H347"]],[4,5,["H2398"]],[5,6,["H3808"]],[6,7,["H3808"]],[7,8,["H5414"]],[8,9,["H430"]],[9,10,["H8604"]]]},{"k":12892,"v":[[0,3,["H1961"]],[3,5,["H3117"]],[5,8,["H1121"]],[8,10,["H430"]],[10,11,["H935"]],[11,14,["H3320"]],[14,15,["H5921"]],[15,17,["H3068"]],[17,19,["H7854"]],[19,20,["H935"]],[20,21,["H1571"]],[21,22,["H8432"]],[22,26,["H3320"]],[26,27,["H5921"]],[27,29,["H3068"]]]},{"k":12893,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H7854"]],[6,8,["H335","H4480","H2088"]],[8,9,["H935"]],[9,12,["H7854"]],[12,13,["H6030","(H853)"]],[13,15,["H3068"]],[15,17,["H559"]],[17,22,["H4480","H7751"]],[22,25,["H776"]],[25,31,["H4480","H1980"]],[31,33,[]]]},{"k":12894,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H7854"]],[6,9,["H7760","H3820","H413"]],[9,11,["H5650"]],[11,12,["H347"]],[12,13,["H3588"]],[13,16,["H369"]],[16,18,["H3644"]],[18,21,["H776"]],[21,23,["H8535"]],[23,26,["H3477"]],[26,27,["H376"]],[27,30,["H3373"]],[30,31,["H430"]],[31,33,["H5493"]],[33,34,["H4480","H7451"]],[34,36,["H5750"]],[36,39,["H2388"]],[39,41,["H8538"]],[41,44,["H5496"]],[44,49,["H1104"]],[49,52,["H2600"]]]},{"k":12895,"v":[[0,2,["H7854"]],[2,3,["H6030","(H853)"]],[3,5,["H3068"]],[5,7,["H559"]],[7,10,["H5785","H1157","H5785"]],[10,12,["H3605"]],[12,13,["H834"]],[13,15,["H376"]],[15,19,["H5414"]],[19,20,["H1157"]],[20,22,["H5315"]]]},{"k":12896,"v":[[0,1,["H199"]],[1,3,["H7971"]],[3,5,["H3027"]],[5,6,["H4994"]],[6,8,["H5060","H413"]],[8,10,["H6106"]],[10,13,["H1320"]],[13,14,["H518"]],[14,17,["H1288"]],[17,19,["H413"]],[19,21,["H6440"]]]},{"k":12897,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H7854"]],[6,7,["H2009"]],[7,12,["H3027"]],[12,13,["H389"]],[13,14,["H8104","(H853)"]],[14,16,["H5315"]]]},{"k":12898,"v":[[0,4,["H3318","H7854"]],[4,5,["H4480","H854"]],[5,7,["H6440"]],[7,10,["H3068"]],[10,12,["H5221","(H853)"]],[12,13,["H347"]],[13,15,["H7451"]],[15,16,["H7822"]],[16,19,["H4480","H3709"]],[19,22,["H7272"]],[22,23,["H5704"]],[23,25,["H6936"]]]},{"k":12899,"v":[[0,3,["H3947"]],[3,6,["H2789"]],[6,9,["H1623"]],[9,12,["H1931"]],[12,14,["H3427"]],[14,15,["H8432"]],[15,17,["H665"]]]},{"k":12900,"v":[[0,2,["H559"]],[2,4,["H802"]],[4,9,["H5750"]],[9,10,["H2388"]],[10,12,["H8538"]],[12,13,["H1288"]],[13,14,["H430"]],[14,16,["H4191"]]]},{"k":12901,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H1696"]],[7,9,["H259"]],[9,13,["H5036"]],[13,14,["H1696"]],[14,15,["H1571"]],[15,18,["H6901","(H853)"]],[18,19,["H2896"]],[19,22,["H4480","H854"]],[22,24,["H430"]],[24,28,["H3808"]],[28,29,["H6901"]],[29,30,["H7451"]],[30,32,["H3605"]],[32,33,["H2063"]],[33,35,["H3808"]],[35,36,["H347"]],[36,37,["H2398"]],[37,40,["H8193"]]]},{"k":12902,"v":[[0,3,["H347"]],[3,4,["H7969"]],[4,5,["H7453"]],[5,6,["H8085","(H853)"]],[6,8,["H3605"]],[8,9,["H2063"]],[9,10,["H7451"]],[10,13,["H935"]],[13,14,["H5921"]],[14,17,["H935"]],[17,19,["H376"]],[19,23,["H4480","H4725"]],[23,24,["H464"]],[24,26,["H8489"]],[26,28,["H1085"]],[28,30,["H7747"]],[30,32,["H6691"]],[32,34,["H5284"]],[34,40,["H3259"]],[40,41,["H3162"]],[41,43,["H935"]],[43,45,["H5110"]],[45,50,["H5162"]],[50,51,[]]]},{"k":12903,"v":[[0,5,["H5375","(H853)"]],[5,7,["H5869"]],[7,9,["H4480","H7350"]],[9,11,["H5234"]],[11,13,["H3808"]],[13,16,["H5375"]],[16,18,["H6963"]],[18,20,["H1058"]],[20,23,["H7167"]],[23,25,["H376"]],[25,27,["H4598"]],[27,29,["H2236"]],[29,30,["H6083"]],[30,31,["H5921"]],[31,33,["H7218"]],[33,35,["H8064"]]]},{"k":12904,"v":[[0,4,["H3427"]],[4,5,["H854"]],[5,9,["H776"]],[9,10,["H7651"]],[10,11,["H3117"]],[11,13,["H7651"]],[13,14,["H3915"]],[14,16,["H369"]],[16,17,["H1696"]],[17,19,["H1697"]],[19,20,["H413"]],[20,22,["H3588"]],[22,24,["H7200"]],[24,25,["H3588"]],[25,27,["H3511"]],[27,30,["H1431","H3966"]]]},{"k":12905,"v":[[0,1,["H310"]],[1,2,["H3651"]],[2,3,["H6605"]],[3,4,["H347","(H853)"]],[4,6,["H6310"]],[6,8,["H7043","(H853)"]],[8,10,["H3117"]]]},{"k":12906,"v":[[0,2,["H347"]],[2,3,["H6030"]],[3,5,["H559"]]]},{"k":12907,"v":[[0,3,["H3117"]],[3,4,["H6"]],[4,8,["H3205"]],[8,11,["H3915"]],[11,16,["H559"]],[16,21,["H1397"]],[21,22,["H2029"]]]},{"k":12908,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,4,["H1961"]],[4,5,["H2822"]],[5,7,["H408"]],[7,8,["H433"]],[8,9,["H1875"]],[9,12,["H4480","H4605"]],[12,13,["H408"]],[13,16,["H5105"]],[16,17,["H3313"]],[17,18,["H5921"]],[18,19,[]]]},{"k":12909,"v":[[0,2,["H2822"]],[2,7,["H6757"]],[7,8,["H1350"]],[8,12,["H6053"]],[12,13,["H7931"]],[13,14,["H5921"]],[14,18,["H3650"]],[18,21,["H3117"]],[21,22,["H1204"]],[22,23,[]]]},{"k":12910,"v":[[0,3,["H1931"]],[3,4,["H3915"]],[4,6,["H652"]],[6,8,["H3947"]],[8,12,["H408"]],[12,14,["H2302"]],[14,17,["H3117"]],[17,20,["H8141"]],[20,23,["H408"]],[23,24,["H935"]],[24,27,["H4557"]],[27,30,["H3391"]]]},{"k":12911,"v":[[0,1,["H2009"]],[1,3,["H1931"]],[3,4,["H3915"]],[4,5,["H1961"]],[5,6,["H1565"]],[6,8,["H408"]],[8,10,["H7445"]],[10,11,["H935"]],[11,12,[]]]},{"k":12912,"v":[[0,3,["H5344"]],[3,6,["H779"]],[6,8,["H3117"]],[8,11,["H6264"]],[11,14,["H5782"]],[14,16,["H3882"]]]},{"k":12913,"v":[[0,3,["H3556"]],[3,6,["H5399"]],[6,9,["H2821"]],[9,12,["H6960"]],[12,14,["H216"]],[14,17,["H369"]],[17,18,["H408"]],[18,21,["H7200"]],[21,23,["H6079"]],[23,26,["H7837"]]]},{"k":12914,"v":[[0,1,["H3588"]],[1,5,["H3808","H5462"]],[5,7,["H1817"]],[7,11,["H990"]],[11,13,["H5641"]],[13,14,["H5999"]],[14,17,["H4480","H5869"]]]},{"k":12915,"v":[[0,1,["H4100"]],[1,2,["H4191"]],[2,4,["H3808"]],[4,7,["H4480","H7358"]],[7,15,["H1478"]],[15,19,["H3318"]],[19,22,["H4480","H990"]]]},{"k":12916,"v":[[0,1,["H4069"]],[1,4,["H1290"]],[4,5,["H6923"]],[5,8,["H4100"]],[8,10,["H7699"]],[10,11,["H3588"]],[11,14,["H3243"]]]},{"k":12917,"v":[[0,1,["H3588"]],[1,2,["H6258"]],[2,7,["H7901"]],[7,10,["H8252"]],[10,14,["H3462"]],[14,15,["H227"]],[15,20,["H5117"]]]},{"k":12918,"v":[[0,1,["H5973"]],[1,2,["H4428"]],[2,4,["H3289"]],[4,7,["H776"]],[7,9,["H1129"]],[9,11,["H2723"]],[11,13,[]]]},{"k":12919,"v":[[0,1,["H176"]],[1,2,["H5973"]],[2,3,["H8269"]],[3,6,["H2091"]],[6,8,["H4390"]],[8,10,["H1004"]],[10,12,["H3701"]]]},{"k":12920,"v":[[0,1,["H176"]],[1,4,["H2934"]],[4,6,["H5309"]],[6,9,["H3808"]],[9,10,["H1961"]],[10,12,["H5768"]],[12,14,["H3808"]],[14,15,["H7200"]],[15,16,["H216"]]]},{"k":12921,"v":[[0,1,["H8033"]],[1,3,["H7563"]],[3,4,["H2308"]],[4,6,["H7267"]],[6,8,["H8033"]],[8,10,["H3019","H3581"]],[10,13,["H5117"]]]},{"k":12922,"v":[[0,3,["H615"]],[3,4,["H7599"]],[4,5,["H3162"]],[5,7,["H8085"]],[7,8,["H3808"]],[8,10,["H6963"]],[10,13,["H5065"]]]},{"k":12923,"v":[[0,2,["H6996"]],[2,4,["H1419"]],[4,6,["H8033"]],[6,9,["H5650"]],[9,11,["H2670"]],[11,14,["H4480","H113"]]]},{"k":12924,"v":[[0,1,["H4100"]],[1,3,["H216"]],[3,4,["H5414"]],[4,10,["H6001"]],[10,12,["H2416"]],[12,15,["H4751"]],[15,17,["H5315"]]]},{"k":12925,"v":[[0,2,["H2442"]],[2,4,["H4194"]],[4,8,["H369"]],[8,10,["H2658"]],[10,17,["H4480","H4301"]]]},{"k":12926,"v":[[0,2,["H8056"]],[2,3,["H413","H1524"]],[3,6,["H7797"]],[6,7,["H3588"]],[7,10,["H4672"]],[10,12,["H6913"]]]},{"k":12927,"v":[[0,7,["H1397"]],[7,8,["H834"]],[8,9,["H1870"]],[9,11,["H5641"]],[11,13,["H1157"]],[13,14,["H433"]],[14,17,["H5526"]]]},{"k":12928,"v":[[0,1,["H3588"]],[1,3,["H585"]],[3,4,["H935"]],[4,5,["H6440"]],[5,7,["H3899"]],[7,10,["H7581"]],[10,13,["H5413"]],[13,16,["H4325"]]]},{"k":12929,"v":[[0,1,["H3588"]],[1,7,["H6343","H6342"]],[7,10,["H857"]],[10,14,["H834"]],[14,18,["H3025"]],[18,20,["H935"]],[20,22,[]]]},{"k":12930,"v":[[0,3,["H3808"]],[3,5,["H7951"]],[5,6,["H3808"]],[6,9,["H8252"]],[9,10,["H3808"]],[10,13,["H5117"]],[13,15,["H7267"]],[15,16,["H935"]]]},{"k":12931,"v":[[0,2,["H464"]],[2,4,["H8489"]],[4,5,["H6030"]],[5,7,["H559"]]]},{"k":12932,"v":[[0,5,["H5254","H1697"]],[5,6,["H413"]],[6,11,["H3811"]],[11,13,["H4310"]],[13,14,["H3201"]],[14,15,["H6113"]],[15,18,["H4405"]]]},{"k":12933,"v":[[0,1,["H2009"]],[1,4,["H3256"]],[4,5,["H7227"]],[5,9,["H2388"]],[9,11,["H7504"]],[11,12,["H3027"]]]},{"k":12934,"v":[[0,2,["H4405"]],[2,4,["H6965"]],[4,8,["H3782"]],[8,12,["H553"]],[12,14,["H3766"]],[14,15,["H1290"]]]},{"k":12935,"v":[[0,1,["H3588"]],[1,2,["H6258"]],[2,5,["H935"]],[5,6,["H413"]],[6,10,["H3811"]],[10,12,["H5060","H5704"]],[12,17,["H926"]]]},{"k":12936,"v":[[0,2,["H3808"]],[2,5,["H3374"]],[5,7,["H3690"]],[7,9,["H8615"]],[9,12,["H8537"]],[12,15,["H1870"]]]},{"k":12937,"v":[[0,1,["H2142"]],[1,4,["H4994"]],[4,5,["H4310"]],[5,7,["H6"]],[7,9,["H5355"]],[9,11,["H375"]],[11,14,["H3477"]],[14,16,["H3582"]]]},{"k":12938,"v":[[0,2,["H834"]],[2,5,["H7200"]],[5,8,["H2790"]],[8,9,["H205"]],[9,11,["H2232"]],[11,12,["H5999"]],[12,13,["H7114"]],[13,15,[]]]},{"k":12939,"v":[[0,3,["H4480","H5397"]],[3,5,["H433"]],[5,7,["H6"]],[7,11,["H4480","H7307"]],[11,14,["H639"]],[14,17,["H3615"]]]},{"k":12940,"v":[[0,2,["H7581"]],[2,5,["H738"]],[5,8,["H6963"]],[8,12,["H7826"]],[12,15,["H8127"]],[15,19,["H3715"]],[19,21,["H5421"]]]},{"k":12941,"v":[[0,3,["H3918"]],[3,4,["H6"]],[4,6,["H4480","H1097"]],[6,8,["H2964"]],[8,12,["H3833"]],[12,13,["H1121"]],[13,16,["H6504"]]]},{"k":12942,"v":[[0,3,["H1697"]],[3,6,["H1589"]],[6,7,["H413"]],[7,11,["H241"]],[11,12,["H3947"]],[12,14,["H8102"]],[14,15,["H4480"]]]},{"k":12943,"v":[[0,2,["H5587"]],[2,5,["H4480","H2384"]],[5,8,["H3915"]],[8,11,["H8639"]],[11,12,["H5307"]],[12,13,["H5921"]],[13,14,["H376"]]]},{"k":12944,"v":[[0,1,["H6343"]],[1,3,["H7122"]],[3,6,["H7460"]],[6,9,["H7230"]],[9,11,["H6106"]],[11,13,["H6342"]]]},{"k":12945,"v":[[0,3,["H7307"]],[3,4,["H2498"]],[4,5,["H5921"]],[5,7,["H6440"]],[7,9,["H8185"]],[9,12,["H1320"]],[12,14,["H5568"]]]},{"k":12946,"v":[[0,3,["H5975"]],[3,7,["H3808"]],[7,8,["H5234"]],[8,10,["H4758"]],[10,13,["H8544"]],[13,15,["H5048"]],[15,17,["H5869"]],[17,20,["H1827"]],[20,23,["H8085"]],[23,25,["H6963"]],[25,26,[]]]},{"k":12947,"v":[[0,3,["H582"]],[3,8,["H6663","H4480","H433"]],[8,11,["H1397"]],[11,14,["H2891"]],[14,17,["H4480","H6213"]]]},{"k":12948,"v":[[0,1,["H2005"]],[1,5,["H539","H3808"]],[5,8,["H5650"]],[8,11,["H4397"]],[11,13,["H7760"]],[13,15,["H8417"]]]},{"k":12949,"v":[[0,3,["H637"]],[3,8,["H7931"]],[8,9,["H1004"]],[9,11,["H2563"]],[11,12,["H834"]],[12,13,["H3247"]],[13,17,["H6083"]],[17,20,["H1792"]],[20,21,["H6440"]],[21,23,["H6211"]]]},{"k":12950,"v":[[0,3,["H3807"]],[3,5,["H4480","H1242"]],[5,7,["H6153"]],[7,9,["H6"]],[9,11,["H5331"]],[11,13,["H4480","H1097"]],[13,14,["H7760"]],[14,15,[]]]},{"k":12951,"v":[[0,2,["H3808"]],[2,4,["H3499"]],[4,10,["H5265"]],[10,12,["H4191"]],[12,14,["H3808"]],[14,15,["H2451"]]]},{"k":12952,"v":[[0,1,["H7121"]],[1,2,["H4994"]],[2,5,["H3426"]],[5,9,["H6030"]],[9,12,["H413"]],[12,13,["H4310"]],[13,16,["H4480","H6918"]],[16,19,["H6437"]]]},{"k":12953,"v":[[0,1,["H3588"]],[1,2,["H3708"]],[2,3,["H2026"]],[3,5,["H191"]],[5,8,["H7068"]],[8,9,["H4191"]],[9,11,["H6601"]],[11,12,[]]]},{"k":12954,"v":[[0,1,["H589"]],[1,3,["H7200"]],[3,5,["H191"]],[5,7,["H8327"]],[7,9,["H6597"]],[9,11,["H5344"]],[11,13,["H5116"]]]},{"k":12955,"v":[[0,2,["H1121"]],[2,4,["H7368"]],[4,6,["H4480","H3468"]],[6,10,["H1792"]],[10,13,["H8179"]],[13,14,["H369"]],[14,19,["H5337"]],[19,20,[]]]},{"k":12956,"v":[[0,1,["H834"]],[1,2,["H7105"]],[2,4,["H7457"]],[4,6,["H398"]],[6,8,["H3947"]],[8,12,["H413"]],[12,14,["H4480","H6791"]],[14,17,["H6782"]],[17,19,["H7602"]],[19,21,["H2428"]]]},{"k":12957,"v":[[0,1,["H3588"]],[1,2,["H205"]],[2,5,["H3318","H3808"]],[5,8,["H4480","H6083"]],[8,9,["H3808"]],[9,11,["H5999"]],[11,12,["H6779"]],[12,16,["H4480","H127"]]]},{"k":12958,"v":[[0,1,["H3588"]],[1,2,["H120"]],[2,4,["H3205"]],[4,6,["H5999"]],[6,9,["H1121","H7565"]],[9,10,["H5774"]],[10,11,["H1361"]]]},{"k":12959,"v":[[0,1,["H589"]],[1,3,["H1875"]],[3,4,["H413"]],[4,5,["H410"]],[5,7,["H413"]],[7,8,["H430"]],[8,11,["H7760"]],[11,13,["H1700"]]]},{"k":12960,"v":[[0,2,["H6213"]],[2,4,["H1419"]],[4,6,["H369","H2714"]],[6,8,["H6381"]],[8,9,["H5704","H369"]],[9,10,["H4557"]]]},{"k":12961,"v":[[0,2,["H5414"]],[2,3,["H4306"]],[3,4,["H5921","H6440"]],[4,6,["H776"]],[6,8,["H7971"]],[8,9,["H4325"]],[9,10,["H5921","H6440"]],[10,12,["H2351"]]]},{"k":12962,"v":[[0,3,["H7760"]],[3,5,["H4791"]],[5,9,["H8217"]],[9,13,["H6937"]],[13,16,["H7682"]],[16,18,["H3468"]]]},{"k":12963,"v":[[0,2,["H6565"]],[2,4,["H4284"]],[4,7,["H6175"]],[7,11,["H3027"]],[11,12,["H3808"]],[12,13,["H6213"]],[13,15,["H8454"]]]},{"k":12964,"v":[[0,2,["H3920"]],[2,4,["H2450"]],[4,8,["H6193"]],[8,11,["H6098"]],[11,14,["H6617"]],[14,17,["H4116"]]]},{"k":12965,"v":[[0,2,["H6298"]],[2,4,["H2822"]],[4,7,["H3119"]],[7,9,["H4959"]],[9,12,["H6672"]],[12,16,["H3915"]]]},{"k":12966,"v":[[0,3,["H3467"]],[3,5,["H34"]],[5,8,["H4480","H2719"]],[8,11,["H4480","H6310"]],[11,15,["H4480","H3027"]],[15,18,["H2389"]]]},{"k":12967,"v":[[0,3,["H1800"]],[3,4,["H1961"]],[4,5,["H8615"]],[5,7,["H5766"]],[7,8,["H7092"]],[8,10,["H6310"]]]},{"k":12968,"v":[[0,1,["H2009"]],[1,2,["H835"]],[2,5,["H582"]],[5,7,["H433"]],[7,8,["H3198"]],[8,10,["H3988"]],[10,11,["H408"]],[11,14,["H4148"]],[14,17,["H7706"]]]},{"k":12969,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,4,["H3510"]],[4,7,["H2280"]],[7,9,["H4272"]],[9,12,["H3027"]],[12,14,["H7495"]]]},{"k":12970,"v":[[0,3,["H5337"]],[3,6,["H8337"]],[6,7,["H6869"]],[7,10,["H7651"]],[10,13,["H3808"]],[13,14,["H7451"]],[14,15,["H5060"]],[15,16,[]]]},{"k":12971,"v":[[0,2,["H7458"]],[2,5,["H6299"]],[5,8,["H4480","H4194"]],[8,11,["H4421"]],[11,14,["H4480","H3027"]],[14,17,["H2719"]]]},{"k":12972,"v":[[0,4,["H2244"]],[4,7,["H7752"]],[7,10,["H3956"]],[10,11,["H3808"]],[11,15,["H3372"]],[15,17,["H4480","H7701"]],[17,18,["H3588"]],[18,20,["H935"]]]},{"k":12973,"v":[[0,2,["H7701"]],[2,4,["H3720"]],[4,7,["H7832"]],[7,8,["H408"]],[8,12,["H3372"]],[12,15,["H4480","H2416"]],[15,18,["H776"]]]},{"k":12974,"v":[[0,1,["H3588"]],[1,6,["H1285"]],[6,7,["H5973"]],[7,9,["H68"]],[9,12,["H7704"]],[12,15,["H2416"]],[15,18,["H7704"]],[18,22,["H7999"]],[22,24,[]]]},{"k":12975,"v":[[0,4,["H3045"]],[4,7,["H168"]],[7,11,["H7965"]],[11,15,["H6485"]],[15,17,["H5116"]],[17,21,["H3808","H2398"]]]},{"k":12976,"v":[[0,3,["H3045"]],[3,5,["H3588"]],[5,7,["H2233"]],[7,10,["H7227"]],[10,13,["H6631"]],[13,16,["H6212"]],[16,19,["H776"]]]},{"k":12977,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H6913"]],[6,10,["H3624"]],[10,16,["H1430"]],[16,18,["H5927"]],[18,21,["H6256"]]]},{"k":12978,"v":[[0,1,["H2009"]],[1,2,["H2063"]],[2,5,["H2713"]],[5,7,["H3651"]],[7,8,["H1931"]],[8,10,["H8085"]],[10,13,["H3045"]],[13,14,["H859"]],[14,18,[]]]},{"k":12979,"v":[[0,2,["H347"]],[2,3,["H6030"]],[3,5,["H559"]]]},{"k":12980,"v":[[0,2,["H3863"]],[2,4,["H3708"]],[4,7,["H8254","H8254"]],[7,10,["H1942"]],[10,11,["H5375"]],[11,14,["H3976"]],[14,15,["H3162"]]]},{"k":12981,"v":[[0,1,["H3588"]],[1,2,["H6258"]],[2,6,["H3513"]],[6,9,["H4480","H2344"]],[9,12,["H3220"]],[12,13,["H5921","H3651"]],[13,15,["H1697"]],[15,18,["H3886"]]]},{"k":12982,"v":[[0,1,["H3588"]],[1,3,["H2671"]],[3,6,["H7706"]],[6,8,["H5978"]],[8,11,["H2534"]],[11,12,["H834"]],[12,14,["H8354"]],[14,16,["H7307"]],[16,18,["H1161"]],[18,20,["H433"]],[20,26,["H6186"]],[26,27,[]]]},{"k":12983,"v":[[0,4,["H6501"]],[4,5,["H5101"]],[5,9,["H1877"]],[9,10,["H518"]],[10,11,["H1600"]],[11,13,["H7794"]],[13,14,["H5921"]],[14,16,["H1098"]]]},{"k":12984,"v":[[0,5,["H8602"]],[5,7,["H398"]],[7,8,["H4480","H1097"]],[8,9,["H4417"]],[9,10,["H518"]],[10,12,["H3426"]],[12,14,["H2940"]],[14,17,["H7388"]],[17,20,["H2495"]]]},{"k":12985,"v":[[0,2,["H1992"]],[2,5,["H5315"]],[5,6,["H3985"]],[6,8,["H5060"]],[8,12,["H1741"]],[12,13,["H3899"]]]},{"k":12986,"v":[[0,2,["H4310"]],[2,4,["H5414"]],[4,5,["H935"]],[5,7,["H7596"]],[7,10,["H433"]],[10,12,["H5414"]],[12,19,["H8615"]]]},{"k":12987,"v":[[0,5,["H2974"]],[5,6,["H433"]],[6,8,["H1792"]],[8,14,["H5425"]],[14,16,["H3027"]],[16,20,["H1214"]]]},{"k":12988,"v":[[0,4,["H5750"]],[4,5,["H1961"]],[5,6,["H5165"]],[6,10,["H5539"]],[10,13,["H2427"]],[13,16,["H3808"]],[16,17,["H2550"]],[17,18,["H3588"]],[18,21,["H3808"]],[21,22,["H3582"]],[22,24,["H561"]],[24,28,["H6918"]]]},{"k":12989,"v":[[0,1,["H4100"]],[1,4,["H3581"]],[4,5,["H3588"]],[5,8,["H3176"]],[8,10,["H4100"]],[10,13,["H7093"]],[13,14,["H3588"]],[14,17,["H748"]],[17,19,["H5315"]]]},{"k":12990,"v":[[0,3,["H3581"]],[3,5,["H3581"]],[5,7,["H68"]],[7,11,["H1320"]],[11,13,["H5153"]]]},{"k":12991,"v":[[0,2,["H369"]],[2,4,["H5833"]],[4,9,["H8454"]],[9,10,["H5080"]],[10,12,["H4480"]],[12,13,[]]]},{"k":12992,"v":[[0,5,["H4523"]],[5,6,["H2617"]],[6,12,["H4480","H7453"]],[12,15,["H5800"]],[15,17,["H3374"]],[17,20,["H7706"]]]},{"k":12993,"v":[[0,2,["H251"]],[2,5,["H898"]],[5,6,["H3644"]],[6,8,["H5158"]],[8,12,["H650"]],[12,14,["H5158"]],[14,17,["H5674"]]]},{"k":12994,"v":[[0,3,["H6937"]],[3,6,["H4480"]],[6,8,["H7140"]],[8,10,["H5921"]],[10,12,["H7950"]],[12,14,["H5956"]]]},{"k":12995,"v":[[0,2,["H6256"]],[2,5,["H2215"]],[5,7,["H6789"]],[7,11,["H2527"]],[11,14,["H1846"]],[14,18,["H4480","H4725"]]]},{"k":12996,"v":[[0,2,["H734"]],[2,5,["H1870"]],[5,8,["H3943"]],[8,10,["H5927"]],[10,12,["H8414"]],[12,14,["H6"]]]},{"k":12997,"v":[[0,2,["H734"]],[2,4,["H8485"]],[4,5,["H5027"]],[5,7,["H1979"]],[7,9,["H7614"]],[9,10,["H6960"]],[10,11,["H3926"]],[11,12,[]]]},{"k":12998,"v":[[0,3,["H954"]],[3,4,["H3588"]],[4,7,["H982"]],[7,9,["H935"]],[9,10,["H5704"]],[10,13,["H2659"]]]},{"k":12999,"v":[[0,1,["H3588"]],[1,2,["H6258"]],[2,4,["H1961"]],[4,5,["H3808"]],[5,7,["H7200"]],[7,10,["H2866"]],[10,13,["H3372"]]]},{"k":13000,"v":[[0,1,["H3588"]],[1,3,["H559"]],[3,4,["H3051"]],[4,10,["H7809"]],[10,11,["H1157"]],[11,15,["H4480","H3581"]]]},{"k":13001,"v":[[0,2,["H4422"]],[2,7,["H4480","H3027","H6862"]],[7,9,["H6299"]],[9,13,["H4480","H3027"]],[13,16,["H6184"]]]},{"k":13002,"v":[[0,1,["H3384"]],[1,4,["H589"]],[4,8,["H2790"]],[8,13,["H995"]],[13,14,["H4100"]],[14,17,["H7686"]]]},{"k":13003,"v":[[0,1,["H4100"]],[1,2,["H4834"]],[2,4,["H3476"]],[4,5,["H561"]],[5,7,["H4100"]],[7,10,["H3198"]],[10,11,["H3198","H4480"]]]},{"k":13004,"v":[[0,3,["H2803"]],[3,5,["H3198"]],[5,6,["H4405"]],[6,9,["H561"]],[9,14,["H2976"]],[14,18,["H7307"]]]},{"k":13005,"v":[[0,1,["H637"]],[1,3,["H5307","H5921"]],[3,5,["H3490"]],[5,8,["H3738"]],[8,11,["H5921"]],[11,13,["H7453"]]]},{"k":13006,"v":[[0,1,["H6258"]],[1,4,["H2974"]],[4,5,["H6437"]],[5,12,["H5921","H6440"]],[12,14,["H518"]],[14,16,["H3576"]]]},{"k":13007,"v":[[0,1,["H7725"]],[1,4,["H4994"]],[4,7,["H408"]],[7,8,["H1961"]],[8,9,["H5766"]],[9,11,["H7725"]],[11,12,["H5750"]],[12,14,["H6664"]],[14,17,[]]]},{"k":13008,"v":[[0,2,["H3426"]],[2,3,["H5766"]],[3,6,["H3956"]],[6,7,["H3808"]],[7,9,["H2441"]],[9,10,["H995"]],[10,12,["H1942"]]]},{"k":13009,"v":[[0,3,["H3808"]],[3,6,["H6635"]],[6,8,["H582"]],[8,9,["H5921"]],[9,10,["H776"]],[10,14,["H3117"]],[14,18,["H3117"]],[18,21,["H7916"]]]},{"k":13010,"v":[[0,3,["H5650"]],[3,5,["H7602"]],[5,7,["H6738"]],[7,11,["H7916"]],[11,13,["H6960"]],[13,18,["H6467"]]]},{"k":13011,"v":[[0,1,["H3651"]],[1,6,["H5157"]],[6,7,["H3391"]],[7,9,["H7723"]],[9,11,["H5999"]],[11,12,["H3915"]],[12,14,["H4487"]],[14,16,[]]]},{"k":13012,"v":[[0,1,["H518"]],[1,4,["H7901"]],[4,6,["H559"]],[6,7,["H4970"]],[7,10,["H6965"]],[10,13,["H6153"]],[13,15,["H4059"]],[15,19,["H7646"]],[19,24,["H5076"]],[24,25,["H5704"]],[25,30,["H5399"]]]},{"k":13013,"v":[[0,2,["H1320"]],[2,4,["H3847"]],[4,6,["H7415"]],[6,8,["H1487"]],[8,10,["H6083"]],[10,12,["H5785"]],[12,14,["H7280"]],[14,17,["H3988"]]]},{"k":13014,"v":[[0,2,["H3117"]],[2,4,["H7043"]],[4,5,["H4480"]],[5,8,["H708"]],[8,11,["H3615"]],[11,12,["H657"]],[12,13,["H8615"]]]},{"k":13015,"v":[[0,2,["H2142"]],[2,3,["H3588"]],[3,5,["H2416"]],[5,7,["H7307"]],[7,9,["H5869"]],[9,11,["H3808"]],[11,12,["H7725"]],[12,13,["H7200"]],[13,14,["H2896"]]]},{"k":13016,"v":[[0,2,["H5869"]],[2,7,["H7210"]],[7,10,["H7789"]],[10,12,["H3808"]],[12,15,["H5869"]],[15,22,["H369"]]]},{"k":13017,"v":[[0,3,["H6051"]],[3,5,["H3615"]],[5,8,["H1980"]],[8,9,["H3651"]],[9,13,["H3381"]],[13,16,["H7585"]],[16,19,["H5927"]],[19,20,["H3808"]],[20,21,[]]]},{"k":13018,"v":[[0,3,["H7725"]],[3,4,["H3808"]],[4,5,["H5750"]],[5,8,["H1004"]],[8,9,["H3808"]],[9,12,["H4725"]],[12,13,["H5234"]],[13,16,["H5750"]]]},{"k":13019,"v":[[0,1,["H1571"]],[1,2,["H589"]],[2,4,["H3808"]],[4,5,["H2820"]],[5,7,["H6310"]],[7,10,["H1696"]],[10,13,["H6862"]],[13,16,["H7307"]],[16,19,["H7878"]],[19,22,["H4751"]],[22,25,["H5315"]]]},{"k":13020,"v":[[0,2,["H589"]],[2,4,["H3220"]],[4,5,["H518"]],[5,7,["H8577"]],[7,8,["H3588"]],[8,10,["H7760"]],[10,12,["H4929"]],[12,13,["H5921"]],[13,14,[]]]},{"k":13021,"v":[[0,1,["H3588"]],[1,3,["H559"]],[3,5,["H6210"]],[5,7,["H5162"]],[7,10,["H4904"]],[10,12,["H5375"]],[12,14,["H7879"]]]},{"k":13022,"v":[[0,3,["H2865"]],[3,6,["H2472"]],[6,8,["H1204"]],[8,11,["H4480","H2384"]]]},{"k":13023,"v":[[0,4,["H5315"]],[4,5,["H977"]],[5,6,["H4267"]],[6,8,["H4194"]],[8,12,["H4480","H6106"]]]},{"k":13024,"v":[[0,2,["H3988"]],[2,6,["H3808"]],[6,7,["H2421"]],[7,8,["H5769"]],[8,11,["H2308","H4480"]],[11,12,["H3588"]],[12,14,["H3117"]],[14,16,["H1892"]]]},{"k":13025,"v":[[0,1,["H4100"]],[1,3,["H582"]],[3,4,["H3588"]],[4,7,["H1431"]],[7,10,["H3588"]],[10,13,["H7896"]],[13,15,["H3820"]],[15,16,["H413"]],[16,17,[]]]},{"k":13026,"v":[[0,5,["H6485"]],[5,8,["H1242"]],[8,10,["H974"]],[10,13,["H7281"]]]},{"k":13027,"v":[[0,2,["H4100"]],[2,5,["H3808"]],[5,6,["H8159"]],[6,7,["H4480"]],[7,9,["H3808"]],[9,12,["H7503"]],[12,13,["H5704"]],[13,16,["H1104"]],[16,18,["H7536"]]]},{"k":13028,"v":[[0,3,["H2398"]],[3,4,["H4100"]],[4,7,["H6466"]],[7,12,["H5341"]],[12,14,["H120"]],[14,15,["H4100"]],[15,18,["H7760"]],[18,22,["H4645"]],[22,28,["H1861"]],[28,30,["H4853"]],[30,31,["H5921"]],[31,32,[]]]},{"k":13029,"v":[[0,2,["H4100"]],[2,5,["H3808"]],[5,6,["H5375"]],[6,8,["H6588"]],[8,11,["H5674","(H853)"]],[11,13,["H5771"]],[13,14,["H3588"]],[14,15,["H6258"]],[15,18,["H7901"]],[18,21,["H6083"]],[21,29,["H7836"]],[29,33,["H369"]],[33,34,[]]]},{"k":13030,"v":[[0,2,["H6030"]],[2,3,["H1085"]],[3,5,["H7747"]],[5,7,["H559"]]]},{"k":13031,"v":[[0,2,["H5704","H575"]],[2,5,["H4448"]],[5,6,["H428"]],[6,13,["H561"]],[13,16,["H6310"]],[16,20,["H3524"]],[20,21,["H7307"]]]},{"k":13032,"v":[[0,2,["H410"]],[2,3,["H5791"]],[3,4,["H4941"]],[4,5,["H518"]],[5,8,["H7706"]],[8,9,["H5791"]],[9,10,["H6664"]]]},{"k":13033,"v":[[0,1,["H518"]],[1,3,["H1121"]],[3,5,["H2398"]],[5,13,["H7971"]],[13,14,["H3027"]],[14,16,["H6588"]]]},{"k":13034,"v":[[0,1,["H518"]],[1,2,["H859"]],[2,7,["H7836","H413","H410"]],[7,11,["H2603"]],[11,12,["H413"]],[12,14,["H7706"]]]},{"k":13035,"v":[[0,1,["H518"]],[1,2,["H859"]],[2,4,["H2134"]],[4,6,["H3477"]],[6,7,["H3588"]],[7,8,["H6258"]],[8,11,["H5782"]],[11,12,["H5921"]],[12,17,["H5116"]],[17,20,["H6664"]],[20,21,["H7999"]]]},{"k":13036,"v":[[0,3,["H7225"]],[3,4,["H1961"]],[4,5,["H4705"]],[5,9,["H319"]],[9,11,["H3966"]],[11,12,["H7685"]]]},{"k":13037,"v":[[0,1,["H3588"]],[1,2,["H7592"]],[2,5,["H4994"]],[5,8,["H7223"]],[8,9,["H1755"]],[9,11,["H3559"]],[11,15,["H2714"]],[15,18,["H1"]]]},{"k":13038,"v":[[0,1,["H3588"]],[1,2,["H587"]],[2,6,["H8543"]],[6,8,["H3045"]],[8,9,["H3808"]],[9,10,["H3588"]],[10,12,["H3117"]],[12,13,["H5921"]],[13,14,["H776"]],[14,17,["H6738"]]]},{"k":13039,"v":[[0,2,["H3808"]],[2,3,["H1992"]],[3,4,["H3384"]],[4,7,["H559"]],[7,10,["H3318"]],[10,11,["H4405"]],[11,15,["H4480","H3820"]]]},{"k":13040,"v":[[0,3,["H1573"]],[3,5,["H1342"]],[5,6,["H3808"]],[6,7,["H1207"]],[7,10,["H260"]],[10,11,["H7685"]],[11,12,["H1097"]],[12,13,["H4325"]]]},{"k":13041,"v":[[0,4,["H5750"]],[4,7,["H3"]],[7,9,["H3808"]],[9,11,["H6998"]],[11,13,["H3001"]],[13,14,["H6440"]],[14,15,["H3605"]],[15,17,["H2682"]]]},{"k":13042,"v":[[0,1,["H3651"]],[1,4,["H734"]],[4,6,["H3605"]],[6,8,["H7911"]],[8,9,["H410"]],[9,12,["H2611"]],[12,13,["H8615"]],[13,15,["H6"]]]},{"k":13043,"v":[[0,1,["H834"]],[1,2,["H3689"]],[2,6,["H6990"]],[6,9,["H4009"]],[9,13,["H5908"]],[13,14,["H1004"]]]},{"k":13044,"v":[[0,3,["H8172"]],[3,4,["H5921"]],[4,6,["H1004"]],[6,10,["H3808"]],[10,11,["H5975"]],[11,16,["H2388"]],[16,20,["H3808"]],[20,21,["H6965"]]]},{"k":13045,"v":[[0,1,["H1931"]],[1,3,["H7373"]],[3,4,["H6440"]],[4,6,["H8121"]],[6,9,["H3127"]],[9,11,["H3318"]],[11,12,["H5921"]],[12,14,["H1593"]]]},{"k":13046,"v":[[0,2,["H8328"]],[2,4,["H5440"]],[4,5,["H5921"]],[5,7,["H1530"]],[7,9,["H2372"]],[9,11,["H1004"]],[11,13,["H68"]]]},{"k":13047,"v":[[0,1,["H518"]],[1,3,["H1104"]],[3,7,["H4480","H4725"]],[7,11,["H3584"]],[11,16,["H3808"]],[16,17,["H7200"]],[17,18,[]]]},{"k":13048,"v":[[0,1,["H2005"]],[1,2,["H1931"]],[2,5,["H4885"]],[5,8,["H1870"]],[8,13,["H4480","H6083"]],[13,15,["H312"]],[15,16,["H6779"]]]},{"k":13049,"v":[[0,1,["H2005"]],[1,2,["H410"]],[2,4,["H3808"]],[4,6,["H3988"]],[6,8,["H8535"]],[8,10,["H3808"]],[10,13,["H2388","H3027"]],[13,16,["H7489"]]]},{"k":13050,"v":[[0,1,["H5704"]],[1,3,["H4390"]],[3,5,["H6310"]],[5,7,["H7814"]],[7,10,["H8193"]],[10,12,["H8643"]]]},{"k":13051,"v":[[0,3,["H8130"]],[3,7,["H3847"]],[7,9,["H1322"]],[9,13,["H168"]],[13,16,["H7563"]],[16,20,["H369"]]]},{"k":13052,"v":[[0,2,["H347"]],[2,3,["H6030"]],[3,5,["H559"]]]},{"k":13053,"v":[[0,2,["H3045"]],[2,5,["H3588","H3651"]],[5,8,["H551"]],[8,10,["H4100"]],[10,12,["H582"]],[12,14,["H6663"]],[14,15,["H5973"]],[15,16,["H410"]]]},{"k":13054,"v":[[0,1,["H518"]],[1,3,["H2654"]],[3,4,["H7378"]],[4,5,["H5973"]],[5,8,["H3808"]],[8,9,["H6030"]],[9,11,["H259"]],[11,12,["H4480"]],[12,14,["H505"]]]},{"k":13055,"v":[[0,3,["H2450"]],[3,5,["H3824"]],[5,7,["H533"]],[7,9,["H3581"]],[9,10,["H4310"]],[10,12,["H7185"]],[12,14,["H413"]],[14,18,["H7999"]]]},{"k":13056,"v":[[0,2,["H6275"]],[2,4,["H2022"]],[4,7,["H3045"]],[7,8,["H3808"]],[8,9,["H834"]],[9,10,["H2015"]],[10,14,["H639"]]]},{"k":13057,"v":[[0,2,["H7264"]],[2,4,["H776"]],[4,8,["H4480","H4725"]],[8,11,["H5982"]],[11,13,["H6426"]]]},{"k":13058,"v":[[0,2,["H559"]],[2,4,["H2775"]],[4,7,["H2224"]],[7,8,["H3808"]],[8,11,["H2856"]],[11,13,["H3556"]]]},{"k":13059,"v":[[0,2,["H905"]],[2,4,["H5186"]],[4,6,["H8064"]],[6,8,["H1869"]],[8,9,["H5921"]],[9,11,["H1116"]],[11,14,["H3220"]]]},{"k":13060,"v":[[0,2,["H6213"]],[2,3,["H5906"]],[3,4,["H3685"]],[4,6,["H3598"]],[6,9,["H2315"]],[9,12,["H8486"]]]},{"k":13061,"v":[[0,2,["H6213"]],[2,4,["H1419"]],[4,5,["H5704","H369"]],[5,7,["H2714"]],[7,10,["H6381"]],[10,11,["H5704","H369"]],[11,12,["H4557"]]]},{"k":13062,"v":[[0,1,["H2005"]],[1,3,["H5674"]],[3,4,["H5921"]],[4,8,["H7200"]],[8,10,["H3808"]],[10,13,["H2498"]],[13,17,["H995"]],[17,19,["H3808"]]]},{"k":13063,"v":[[0,1,["H2005"]],[1,4,["H2862"]],[4,5,["H4310"]],[5,7,["H7725"]],[7,9,["H4310"]],[9,11,["H559"]],[11,12,["H413"]],[12,14,["H4100"]],[14,15,["H6213"]],[15,16,[]]]},{"k":13064,"v":[[0,2,["H433"]],[2,4,["H3808"]],[4,5,["H7725"]],[5,7,["H639"]],[7,9,["H7295"]],[9,10,["H5826"]],[10,12,["H7817"]],[12,13,["H8478"]],[13,14,[]]]},{"k":13065,"v":[[0,3,["H637","H3588"]],[3,5,["H595"]],[5,6,["H6030"]],[6,10,["H977"]],[10,12,["H1697"]],[12,15,["H5973"]],[15,16,[]]]},{"k":13066,"v":[[0,1,["H834"]],[1,2,["H518"]],[2,5,["H6663"]],[5,9,["H3808"]],[9,10,["H6030"]],[10,15,["H2603"]],[15,18,["H8199"]]]},{"k":13067,"v":[[0,1,["H518"]],[1,4,["H7121"]],[4,8,["H6030"]],[8,13,["H3808"]],[13,14,["H539"]],[14,15,["H3588"]],[15,18,["H238"]],[18,21,["H6963"]]]},{"k":13068,"v":[[0,1,["H834"]],[1,3,["H7779"]],[3,7,["H8183"]],[7,9,["H7235"]],[9,11,["H6482"]],[11,13,["H2600"]]]},{"k":13069,"v":[[0,3,["H3808"]],[3,4,["H5414"]],[4,7,["H7725"]],[7,9,["H7307"]],[9,10,["H3588"]],[10,11,["H7646"]],[11,14,["H4472"]]]},{"k":13070,"v":[[0,1,["H518"]],[1,5,["H3581"]],[5,6,["H2009"]],[6,9,["H533"]],[9,11,["H518"]],[11,13,["H4941"]],[13,14,["H4310"]],[14,19,["H3259"]],[19,21,[]]]},{"k":13071,"v":[[0,1,["H518"]],[1,3,["H6663"]],[3,7,["H6310"]],[7,9,["H7561"]],[9,14,["H589"]],[14,16,["H8535"]],[16,22,["H6140"]]]},{"k":13072,"v":[[0,2,["H589"]],[2,4,["H8535"]],[4,8,["H3808"]],[8,9,["H3045"]],[9,11,["H5315"]],[11,14,["H3988"]],[14,16,["H2416"]]]},{"k":13073,"v":[[0,1,["H1931"]],[1,3,["H259"]],[3,5,["H5921","H3651"]],[5,7,["H559"]],[7,9,["H1931"]],[9,10,["H3615"]],[10,12,["H8535"]],[12,15,["H7563"]]]},{"k":13074,"v":[[0,1,["H518"]],[1,3,["H7752"]],[3,4,["H4191"]],[4,5,["H6597"]],[5,8,["H3932"]],[8,11,["H4531"]],[11,14,["H5355"]]]},{"k":13075,"v":[[0,2,["H776"]],[2,4,["H5414"]],[4,7,["H3027"]],[7,10,["H7563"]],[10,12,["H3680"]],[12,14,["H6440"]],[14,17,["H8199"]],[17,19,["H518"]],[19,20,["H3808"]],[20,21,["H645"]],[21,23,["H4310"]],[23,25,["H1931"]]]},{"k":13076,"v":[[0,3,["H3117"]],[3,5,["H7043"]],[5,6,["H4480"]],[6,8,["H7323"]],[8,11,["H1272"]],[11,13,["H7200"]],[13,14,["H3808"]],[14,15,["H2896"]]]},{"k":13077,"v":[[0,4,["H2498"]],[4,5,["H5973"]],[5,7,["H16"]],[7,8,["H591"]],[8,11,["H5404"]],[11,13,["H2907"]],[13,14,["H5921"]],[14,16,["H400"]]]},{"k":13078,"v":[[0,1,["H518"]],[1,3,["H559"]],[3,6,["H7911"]],[6,8,["H7879"]],[8,12,["H5800"]],[12,14,["H6440"]],[14,16,["H1082"]],[16,17,[]]]},{"k":13079,"v":[[0,3,["H3025"]],[3,5,["H3605"]],[5,7,["H6094"]],[7,9,["H3045"]],[9,10,["H3588"]],[10,13,["H3808"]],[13,16,["H5352"]]]},{"k":13080,"v":[[0,2,["H595"]],[2,4,["H7561"]],[4,5,["H4100"]],[5,6,["H2088"]],[6,7,["H3021"]],[7,10,["H1892"]]]},{"k":13081,"v":[[0,1,["H518"]],[1,4,["H7364"]],[4,6,["H7950"]],[6,7,["H4325"]],[7,11,["H3709"]],[11,12,["H1253"]],[12,14,["H2141"]]]},{"k":13082,"v":[[0,1,["H227"]],[1,4,["H2881"]],[4,8,["H7845"]],[8,12,["H8008"]],[12,14,["H8581"]],[14,15,[]]]},{"k":13083,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,6,["H376"]],[6,8,["H3644"]],[8,13,["H6030"]],[13,18,["H935"]],[18,19,["H3162"]],[19,21,["H4941"]]]},{"k":13084,"v":[[0,1,["H3808"]],[1,3,["H3426"]],[3,5,["H3198"]],[5,6,["H996"]],[6,10,["H7896"]],[10,12,["H3027"]],[12,13,["H5921"]],[13,15,["H8147"]]]},{"k":13085,"v":[[0,6,["H5493","H7626"]],[6,7,["H4480","H5921"]],[7,11,["H408"]],[11,13,["H367"]],[13,14,["H1204"]],[14,15,[]]]},{"k":13086,"v":[[0,4,["H1696"]],[4,6,["H3808"]],[6,7,["H3372"]],[7,9,["H3588"]],[9,12,["H3808"]],[12,13,["H3651"]],[13,14,["H5978"]],[14,15,[]]]},{"k":13087,"v":[[0,2,["H5315"]],[2,4,["H5354"]],[4,7,["H2416"]],[7,10,["H5800"]],[10,12,["H7879"]],[12,13,["H5921"]],[13,17,["H1696"]],[17,20,["H4751"]],[20,23,["H5315"]]]},{"k":13088,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,5,["H433"]],[5,7,["H408"]],[7,8,["H7561"]],[8,10,["H3045"]],[10,12,["H5921","H4100"]],[12,14,["H7378"]],[14,16,[]]]},{"k":13089,"v":[[0,3,["H2896"]],[3,6,["H3588"]],[6,9,["H6231"]],[9,10,["H3588"]],[10,13,["H3988"]],[13,15,["H3018"]],[15,18,["H3709"]],[18,20,["H3313"]],[20,21,["H5921"]],[21,23,["H6098"]],[23,26,["H7563"]]]},{"k":13090,"v":[[0,3,["H5869"]],[3,5,["H1320"]],[5,6,["H518"]],[6,7,["H7200"]],[7,10,["H582"]],[10,11,["H7200"]]]},{"k":13091,"v":[[0,3,["H3117"]],[3,6,["H3117"]],[6,8,["H582"]],[8,11,["H8141"]],[11,13,["H1397"]],[13,14,["H3117"]]]},{"k":13092,"v":[[0,1,["H3588"]],[1,3,["H1245"]],[3,6,["H5771"]],[6,8,["H1875"]],[8,11,["H2403"]]]},{"k":13093,"v":[[0,2,["H1847"]],[2,3,["H3588"]],[3,6,["H3808"]],[6,7,["H7561"]],[7,11,["H369"]],[11,14,["H5337"]],[14,18,["H4480","H3027"]]]},{"k":13094,"v":[[0,2,["H3027"]],[2,4,["H6087"]],[4,7,["H6213"]],[7,9,["H3162"]],[9,11,["H5439"]],[11,15,["H1104"]],[15,16,[]]]},{"k":13095,"v":[[0,1,["H2142"]],[1,4,["H4994"]],[4,5,["H3588"]],[5,8,["H6213"]],[8,12,["H2563"]],[12,20,["H7725","H413","H6083"]]]},{"k":13096,"v":[[0,3,["H3808"]],[3,6,["H5413"]],[6,8,["H2461"]],[8,10,["H7087"]],[10,13,["H1385"]]]},{"k":13097,"v":[[0,3,["H3847"]],[3,6,["H5785"]],[6,8,["H1320"]],[8,11,["H7753"]],[11,14,["H6106"]],[14,16,["H1517"]]]},{"k":13098,"v":[[0,3,["H6213","H5978"]],[3,5,["H2416"]],[5,7,["H2617"]],[7,10,["H6486"]],[10,12,["H8104"]],[12,14,["H7307"]]]},{"k":13099,"v":[[0,2,["H428"]],[2,6,["H6845"]],[6,9,["H3824"]],[9,11,["H3045"]],[11,12,["H3588"]],[12,13,["H2063"]],[13,15,["H5973"]],[15,16,[]]]},{"k":13100,"v":[[0,1,["H518"]],[1,3,["H2398"]],[3,6,["H8104"]],[6,11,["H3808"]],[11,12,["H5352"]],[12,16,["H4480","H5771"]]]},{"k":13101,"v":[[0,1,["H518"]],[1,4,["H7561"]],[4,5,["H480"]],[5,12,["H6663"]],[12,16,["H3808"]],[16,18,["H5375"]],[18,20,["H7218"]],[20,23,["H7649"]],[23,25,["H7036"]],[25,27,["H7200"]],[27,30,["H6040"]]]},{"k":13102,"v":[[0,3,["H1342"]],[3,5,["H6679"]],[5,10,["H7826"]],[10,12,["H7725"]],[12,16,["H6381"]],[16,18,[]]]},{"k":13103,"v":[[0,2,["H2318"]],[2,4,["H5707"]],[4,5,["H5048"]],[5,8,["H7235"]],[8,10,["H3708"]],[10,11,["H5973"]],[11,13,["H2487"]],[13,15,["H6635"]],[15,17,["H5973"]],[17,18,[]]]},{"k":13104,"v":[[0,1,["H4100"]],[1,7,["H3318"]],[7,11,["H4480","H7358"]],[11,19,["H1478"]],[19,21,["H3808"]],[21,22,["H5869"]],[22,24,["H7200"]],[24,25,[]]]},{"k":13105,"v":[[0,4,["H1961"]],[4,6,["H834"]],[6,9,["H3808"]],[9,10,["H1961"]],[10,15,["H2986"]],[15,18,["H4480","H990"]],[18,21,["H6913"]]]},{"k":13106,"v":[[0,2,["H3808"]],[2,4,["H3117"]],[4,5,["H4592"]],[5,6,["H2308"]],[6,11,["H7896","H4480"]],[11,16,["H1082"]],[16,18,["H4592"]]]},{"k":13107,"v":[[0,1,["H2962"]],[1,3,["H1980"]],[3,7,["H3808"]],[7,8,["H7725"]],[8,10,["H413"]],[10,12,["H776"]],[12,14,["H2822"]],[14,19,["H6757"]]]},{"k":13108,"v":[[0,2,["H776"]],[2,4,["H5890"]],[4,5,["H3644"]],[5,6,["H652"]],[6,13,["H6757"]],[13,14,["H3808"]],[14,16,["H5468"]],[16,20,["H3313"]],[20,22,["H3644"]],[22,23,["H652"]]]},{"k":13109,"v":[[0,2,["H6030"]],[2,3,["H6691"]],[3,5,["H5284"]],[5,7,["H559"]]]},{"k":13110,"v":[[0,2,["H3808"]],[2,4,["H7230"]],[4,6,["H1697"]],[6,8,["H6030"]],[8,10,["H518"]],[10,12,["H376"]],[12,15,["H8193"]],[15,17,["H6663"]]]},{"k":13111,"v":[[0,3,["H907"]],[3,5,["H4962"]],[5,8,["H2790"]],[8,12,["H3932"]],[12,14,["H369"]],[14,18,["H3637"]]]},{"k":13112,"v":[[0,4,["H559"]],[4,6,["H3948"]],[6,8,["H2134"]],[8,11,["H1961"]],[11,12,["H1249"]],[12,15,["H5869"]]]},{"k":13113,"v":[[0,1,["H199"]],[1,3,["H4310"]],[3,4,["H433"]],[4,5,["H5414"]],[5,6,["H1696"]],[6,8,["H6605"]],[8,10,["H8193"]],[10,11,["H5973"]],[11,12,[]]]},{"k":13114,"v":[[0,5,["H5046"]],[5,8,["H8587"]],[8,10,["H2451"]],[10,11,["H3588"]],[11,14,["H3718"]],[14,18,["H8454"]],[18,19,["H3045"]],[19,21,["H3588"]],[21,22,["H433"]],[22,23,["H5382"]],[23,29,["H4480","H5771"]],[29,30,[]]]},{"k":13115,"v":[[0,4,["H2714"]],[4,6,["H4672"]],[6,7,["H433"]],[7,11,["H4672"]],[11,13,["H7706"]],[13,14,["H5704"]],[14,15,["H8503"]]]},{"k":13116,"v":[[0,4,["H1363"]],[4,6,["H8064"]],[6,7,["H4100"]],[7,10,["H6466"]],[10,11,["H6013"]],[11,13,["H4480","H7585"]],[13,14,["H4100"]],[14,17,["H3045"]]]},{"k":13117,"v":[[0,2,["H4055"]],[2,5,["H752"]],[5,8,["H4480","H776"]],[8,10,["H7342"]],[10,11,["H4480"]],[11,13,["H3220"]]]},{"k":13118,"v":[[0,1,["H518"]],[1,4,["H2498"]],[4,7,["H5462"]],[7,10,["H6950"]],[10,12,["H4310"]],[12,14,["H7725"]],[14,15,[]]]},{"k":13119,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,3,["H3045"]],[3,4,["H7723"]],[4,5,["H4962"]],[5,7,["H7200"]],[7,8,["H205"]],[8,12,["H3808"]],[12,14,["H995"]],[14,15,[]]]},{"k":13120,"v":[[0,2,["H5014"]],[2,3,["H376"]],[3,6,["H3823"]],[6,8,["H120"]],[8,10,["H3205"]],[10,14,["H6501"]],[14,15,["H5895"]]]},{"k":13121,"v":[[0,1,["H518"]],[1,2,["H859"]],[2,3,["H3559"]],[3,5,["H3820"]],[5,8,["H6566"]],[8,10,["H3709"]],[10,11,["H413"]],[11,12,[]]]},{"k":13122,"v":[[0,1,["H518"]],[1,2,["H205"]],[2,6,["H3027"]],[6,10,["H7368"]],[10,13,["H408"]],[13,14,["H5766"]],[14,15,["H7931"]],[15,18,["H168"]]]},{"k":13123,"v":[[0,1,["H3588"]],[1,2,["H227"]],[2,6,["H5375"]],[6,8,["H6440"]],[8,10,["H4480","H3971"]],[10,14,["H1961"]],[14,15,["H3332"]],[15,18,["H3808"]],[18,19,["H3372"]]]},{"k":13124,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H7911"]],[4,6,["H5999"]],[6,8,["H2142"]],[8,11,["H4325"]],[11,14,["H5674"]]]},{"k":13125,"v":[[0,3,["H2465"]],[3,6,["H6965"]],[6,9,["H4480","H6672"]],[9,13,["H5774"]],[13,16,["H1961"]],[16,19,["H1242"]]]},{"k":13126,"v":[[0,5,["H982"]],[5,6,["H3588"]],[6,7,["H3426"]],[7,9,["H8615"]],[9,13,["H2658"]],[13,21,["H7901"]],[21,23,["H983"]]]},{"k":13127,"v":[[0,5,["H7257"]],[5,7,["H369"]],[7,11,["H2729"]],[11,13,["H7227"]],[13,16,["H2470"]],[16,17,["H6440"]],[17,18,[]]]},{"k":13128,"v":[[0,3,["H5869"]],[3,6,["H7563"]],[6,8,["H3615"]],[8,13,["H4498","H6","H4480"]],[13,16,["H8615"]],[16,22,["H4646"]],[22,25,["H5315"]]]},{"k":13129,"v":[[0,2,["H347"]],[2,3,["H6030"]],[3,5,["H559"]]]},{"k":13130,"v":[[0,2,["H551"]],[2,3,["H3588"]],[3,4,["H859"]],[4,7,["H5971"]],[7,9,["H2451"]],[9,11,["H4191"]],[11,12,["H5973"]],[12,13,[]]]},{"k":13131,"v":[[0,1,["H1571"]],[1,4,["H3824"]],[4,8,["H3644"]],[8,9,["H595"]],[9,11,["H3808"]],[11,12,["H5307"]],[12,13,["H4480"]],[13,15,["H854"]],[15,16,["H4310"]],[16,18,["H369"]],[18,22,["H3644","H428"]]]},{"k":13132,"v":[[0,2,["H1961"]],[2,5,["H7814"]],[5,8,["H7453"]],[8,10,["H7121"]],[10,12,["H433"]],[12,15,["H6030"]],[15,18,["H6662"]],[18,19,["H8549"]],[19,24,["H7814"]]]},{"k":13133,"v":[[0,4,["H3559"]],[4,6,["H4571"]],[6,9,["H7272"]],[9,13,["H3940"]],[13,14,["H937"]],[14,17,["H6248"]],[17,23,["H7600"]]]},{"k":13134,"v":[[0,2,["H168"]],[2,4,["H7703"]],[4,5,["H7951"]],[5,9,["H7264"]],[9,10,["H410"]],[10,12,["H987"]],[12,14,["H834"]],[14,15,["H3027"]],[15,16,["H433"]],[16,17,["H935"]],[17,18,[]]]},{"k":13135,"v":[[0,1,["H199"]],[1,2,["H7592"]],[2,3,["H4994"]],[3,5,["H929"]],[5,9,["H3384"]],[9,13,["H5775"]],[13,16,["H8064"]],[16,20,["H5046"]],[20,21,[]]]},{"k":13136,"v":[[0,1,["H176"]],[1,2,["H7878"]],[2,5,["H776"]],[5,9,["H3384"]],[9,13,["H1709"]],[13,16,["H3220"]],[16,18,["H5608"]],[18,20,[]]]},{"k":13137,"v":[[0,1,["H4310"]],[1,2,["H3045"]],[2,3,["H3808"]],[3,5,["H3605"]],[5,6,["H428"]],[6,7,["H3588"]],[7,9,["H3027"]],[9,12,["H3068"]],[12,14,["H6213"]],[14,15,["H2063"]]]},{"k":13138,"v":[[0,2,["H834"]],[2,3,["H3027"]],[3,6,["H5315"]],[6,8,["H3605"]],[8,10,["H2416"]],[10,13,["H7307"]],[13,15,["H3605"]],[15,16,["H1320","H376"]]]},{"k":13139,"v":[[0,2,["H3808"]],[2,4,["H241"]],[4,5,["H974"]],[5,6,["H4405"]],[6,9,["H2441"]],[9,10,["H2938"]],[10,12,["H400"]]]},{"k":13140,"v":[[0,3,["H3453"]],[3,5,["H2451"]],[5,8,["H753"]],[8,10,["H3117"]],[10,11,["H8394"]]]},{"k":13141,"v":[[0,1,["H5973"]],[1,4,["H2451"]],[4,6,["H1369"]],[6,9,["H6098"]],[9,11,["H8394"]]]},{"k":13142,"v":[[0,1,["H2005"]],[1,4,["H2040"]],[4,7,["H3808"]],[7,10,["H1129"]],[10,13,["H5462","H5921"]],[13,15,["H376"]],[15,21,["H6605","H3808"]]]},{"k":13143,"v":[[0,1,["H2005"]],[1,3,["H6113"]],[3,5,["H4325"]],[5,9,["H3001"]],[9,14,["H7971"]],[14,17,["H2015"]],[17,19,["H776"]]]},{"k":13144,"v":[[0,1,["H5973"]],[1,4,["H5797"]],[4,6,["H8454"]],[6,8,["H7683"]],[8,11,["H7686"]],[11,13,[]]]},{"k":13145,"v":[[0,2,["H1980"]],[2,3,["H3289"]],[3,5,["H7758"]],[5,9,["H8199"]],[9,10,["H1984"]]]},{"k":13146,"v":[[0,2,["H6605"]],[2,4,["H4148"]],[4,6,["H4428"]],[6,8,["H631"]],[8,10,["H4975"]],[10,13,["H232"]]]},{"k":13147,"v":[[0,2,["H1980"]],[2,3,["H3548"]],[3,5,["H7758"]],[5,7,["H5557"]],[7,9,["H386"]]]},{"k":13148,"v":[[0,3,["H5493"]],[3,5,["H8193"]],[5,8,["H539"]],[8,11,["H3947"]],[11,13,["H2940"]],[13,16,["H2205"]]]},{"k":13149,"v":[[0,2,["H8210"]],[2,3,["H937"]],[3,4,["H5921"]],[4,5,["H5081"]],[5,7,["H7503"]],[7,9,["H4206"]],[9,12,["H650"]]]},{"k":13150,"v":[[0,2,["H1540"]],[2,4,["H6013"]],[4,6,["H4480"]],[6,7,["H2822"]],[7,10,["H3318"]],[10,12,["H216"]],[12,16,["H6757"]]]},{"k":13151,"v":[[0,2,["H7679"]],[2,4,["H1471"]],[4,6,["H6"]],[6,9,["H7849"]],[9,11,["H1471"]],[11,13,["H5148"]],[13,15,[]]]},{"k":13152,"v":[[0,3,["H5493"]],[3,5,["H3820"]],[5,8,["H7218"]],[8,11,["H5971"]],[11,14,["H776"]],[14,19,["H8582"]],[19,22,["H8414"]],[22,26,["H3808"]],[26,27,["H1870"]]]},{"k":13153,"v":[[0,2,["H4959"]],[2,5,["H2822"]],[5,6,["H3808"]],[6,7,["H216"]],[7,13,["H8582"]],[13,16,["H7910"]],[16,17,[]]]},{"k":13154,"v":[[0,1,["H2005"]],[1,3,["H5869"]],[3,5,["H7200"]],[5,6,["H3605"]],[6,9,["H241"]],[9,11,["H8085"]],[11,13,["H995"]],[13,14,[]]]},{"k":13155,"v":[[0,3,["H1847"]],[3,7,["H589"]],[7,8,["H3045"]],[8,9,["H1571"]],[9,10,["H595"]],[10,12,["H3808"]],[12,13,["H5307"]],[13,14,["H4480"]],[14,15,[]]]},{"k":13156,"v":[[0,1,["H199"]],[1,2,["H589"]],[2,4,["H1696"]],[4,5,["H413"]],[5,7,["H7706"]],[7,10,["H2654"]],[10,12,["H3198"]],[12,13,["H413"]],[13,14,["H410"]]]},{"k":13157,"v":[[0,1,["H199"]],[1,2,["H859"]],[2,4,["H2950"]],[4,6,["H8267"]],[6,9,["H3605"]],[9,10,["H7495"]],[10,13,["H457"]]]},{"k":13158,"v":[[0,2,["H4310"]],[2,4,["H5414"]],[4,8,["H2790","H2790"]],[8,12,["H1961"]],[12,14,["H2451"]]]},{"k":13159,"v":[[0,1,["H8085"]],[1,2,["H4994"]],[2,4,["H8433"]],[4,6,["H7181"]],[6,9,["H7379"]],[9,12,["H8193"]]]},{"k":13160,"v":[[0,3,["H1696"]],[3,4,["H5766"]],[4,6,["H410"]],[6,8,["H1696"]],[8,9,["H7423"]],[9,11,[]]]},{"k":13161,"v":[[0,3,["H5375"]],[3,5,["H6440"]],[5,8,["H7378"]],[8,10,["H410"]]]},{"k":13162,"v":[[0,3,["H2896"]],[3,4,["H3588"]],[4,9,["H2713","(H853)"]],[9,10,["H518"]],[10,13,["H582"]],[13,14,["H2048"]],[14,19,["H2048"]],[19,20,[]]]},{"k":13163,"v":[[0,4,["H3198","H3198"]],[4,6,["H518"]],[6,9,["H5643"]],[9,10,["H5375"]],[10,11,["H6440"]]]},{"k":13164,"v":[[0,2,["H3808"]],[2,4,["H7613"]],[4,7,["H1204"]],[7,10,["H6343"]],[10,11,["H5307"]],[11,12,["H5921"]],[12,13,[]]]},{"k":13165,"v":[[0,2,["H2146"]],[2,4,["H4912"]],[4,6,["H665"]],[6,8,["H1354"]],[8,10,["H1354"]],[10,12,["H2563"]]]},{"k":13166,"v":[[0,3,["H2790"]],[3,6,["H4480"]],[6,8,["H589"]],[8,10,["H1696"]],[10,13,["H5674"]],[13,14,["H5921"]],[14,16,["H4100"]],[16,17,[]]]},{"k":13167,"v":[[0,1,["H5921","H4100"]],[1,4,["H5375"]],[4,6,["H1320"]],[6,9,["H8127"]],[9,11,["H7760"]],[11,13,["H5315"]],[13,16,["H3709"]]]},{"k":13168,"v":[[0,1,["H2005"]],[1,3,["H6991"]],[3,8,["H3176"]],[8,11,["H389"]],[11,14,["H3198"]],[14,17,["H1870"]],[17,18,["H413","H6440"]],[18,19,[]]]},{"k":13169,"v":[[0,1,["H1931"]],[1,2,["H1571"]],[2,6,["H3444"]],[6,7,["H3588"]],[7,9,["H2611"]],[9,11,["H3808"]],[11,12,["H935"]],[12,13,["H6440"]],[13,14,[]]]},{"k":13170,"v":[[0,2,["H8085","H8085"]],[2,4,["H4405"]],[4,7,["H262"]],[7,10,["H241"]]]},{"k":13171,"v":[[0,1,["H2009"]],[1,2,["H4994"]],[2,5,["H6186"]],[5,7,["H4941"]],[7,9,["H3045"]],[9,10,["H3588"]],[10,11,["H589"]],[11,14,["H6663"]]]},{"k":13172,"v":[[0,1,["H4310"]],[1,3,["H1931"]],[3,6,["H7378"]],[6,7,["H5978"]],[7,9,["H3588"]],[9,10,["H6258"]],[10,15,["H2790"]],[15,21,["H1478"]]]},{"k":13173,"v":[[0,1,["H389"]],[1,2,["H6213"]],[2,3,["H408"]],[3,4,["H8147"]],[4,6,["H5978"]],[6,8,["H227"]],[8,11,["H3808"]],[11,13,["H5641"]],[13,14,["H4480","H6440"]],[14,15,[]]]},{"k":13174,"v":[[0,1,["H7368"]],[1,3,["H3709"]],[3,5,["H4480","H5921"]],[5,9,["H408"]],[9,11,["H367"]],[11,14,["H1204"]]]},{"k":13175,"v":[[0,2,["H7121"]],[2,5,["H595"]],[5,7,["H6030"]],[7,8,["H176"]],[8,11,["H1696"]],[11,13,["H7725"]],[13,15,[]]]},{"k":13176,"v":[[0,1,["H4100"]],[1,5,["H5771"]],[5,7,["H2403"]],[7,11,["H3045"]],[11,13,["H6588"]],[13,16,["H2403"]]]},{"k":13177,"v":[[0,1,["H4100"]],[1,2,["H5641"]],[2,5,["H6440"]],[5,7,["H2803"]],[7,11,["H341"]]]},{"k":13178,"v":[[0,3,["H6206"]],[3,5,["H5929"]],[5,9,["H5086"]],[9,13,["H7291"]],[13,15,["H3002"]],[15,16,["H7179"]]]},{"k":13179,"v":[[0,1,["H3588"]],[1,3,["H3789"]],[3,5,["H4846"]],[5,6,["H5921"]],[6,12,["H3423"]],[12,14,["H5771"]],[14,17,["H5271"]]]},{"k":13180,"v":[[0,2,["H7760"]],[2,4,["H7272"]],[4,8,["H5465"]],[8,11,["H8104"]],[11,13,["H3605"]],[13,15,["H734"]],[15,19,["H2707"]],[19,20,["H5921"]],[20,22,["H8328"]],[22,25,["H7272"]]]},{"k":13181,"v":[[0,2,["H1931"]],[2,6,["H7538"]],[6,7,["H1086"]],[7,10,["H899"]],[10,13,["H6211"]],[13,14,["H398"]]]},{"k":13182,"v":[[0,1,["H120"]],[1,4,["H3205"]],[4,7,["H802"]],[7,10,["H7116"]],[10,11,["H3117"]],[11,13,["H7649"]],[13,15,["H7267"]]]},{"k":13183,"v":[[0,3,["H3318"]],[3,6,["H6731"]],[6,10,["H5243"]],[10,12,["H1272"]],[12,16,["H6738"]],[16,18,["H5975"]],[18,19,["H3808"]]]},{"k":13184,"v":[[0,1,["H637"]],[1,4,["H6491"]],[4,6,["H5869"]],[6,7,["H5921"]],[7,10,["H2088"]],[10,12,["H935"]],[12,15,["H4941"]],[15,16,["H5973"]],[16,17,[]]]},{"k":13185,"v":[[0,1,["H4310"]],[1,3,["H5414"]],[3,5,["H2889"]],[5,10,["H4480","H2931"]],[10,11,["H3808"]],[11,12,["H259"]]]},{"k":13186,"v":[[0,1,["H518"]],[1,3,["H3117"]],[3,5,["H2782"]],[5,7,["H4557"]],[7,10,["H2320"]],[10,12,["H854"]],[12,16,["H6213"]],[16,18,["H2706"]],[18,21,["H3808"]],[21,22,["H5674"]]]},{"k":13187,"v":[[0,1,["H8159"]],[1,2,["H4480","H5921"]],[2,7,["H2308"]],[7,8,["H5704"]],[8,11,["H7521"]],[11,14,["H7916"]],[14,16,["H3117"]]]},{"k":13188,"v":[[0,1,["H3588"]],[1,3,["H3426"]],[3,4,["H8615"]],[4,7,["H6086"]],[7,8,["H518"]],[8,12,["H3772"]],[12,16,["H2498"]],[16,17,["H5750"]],[17,21,["H3127"]],[21,25,["H3808"]],[25,26,["H2308"]]]},{"k":13189,"v":[[0,1,["H518"]],[1,3,["H8328"]],[3,6,["H2204"]],[6,9,["H776"]],[9,12,["H1503"]],[12,14,["H4191"]],[14,17,["H6083"]]]},{"k":13190,"v":[[0,4,["H4480","H7381"]],[4,6,["H4325"]],[6,9,["H6524"]],[9,12,["H6213"]],[12,13,["H7105"]],[13,14,["H3644"]],[14,16,["H5194"]]]},{"k":13191,"v":[[0,2,["H1397"]],[2,3,["H4191"]],[3,6,["H2522"]],[6,8,["H120"]],[8,12,["H1478"]],[12,14,["H346"]],[14,16,[]]]},{"k":13192,"v":[[0,3,["H4325"]],[3,4,["H235"]],[4,5,["H4480"]],[5,7,["H3220"]],[7,10,["H5104"]],[10,11,["H2717"]],[11,14,["H3001"]]]},{"k":13193,"v":[[0,2,["H376"]],[2,4,["H7901"]],[4,6,["H6965"]],[6,7,["H3808"]],[7,8,["H5704"]],[8,10,["H8064"]],[10,13,["H1115"]],[13,16,["H3808"]],[16,17,["H6974"]],[17,18,["H3808"]],[18,20,["H5782"]],[20,24,["H4480","H8142"]]]},{"k":13194,"v":[[0,2,["H4310"]],[2,4,["H5414"]],[4,5,["H6845"]],[5,9,["H7585"]],[9,15,["H5641"]],[15,16,["H5704"]],[16,18,["H639"]],[18,20,["H7725"]],[20,24,["H7896"]],[24,28,["H2706"]],[28,30,["H2142"]],[30,31,[]]]},{"k":13195,"v":[[0,1,["H518"]],[1,3,["H1397"]],[3,4,["H4191"]],[4,7,["H2421"]],[7,9,["H3605"]],[9,11,["H3117"]],[11,15,["H6635"]],[15,18,["H3176"]],[18,19,["H5704"]],[19,21,["H2487"]],[21,22,["H935"]]]},{"k":13196,"v":[[0,3,["H7121"]],[3,5,["H595"]],[5,7,["H6030"]],[7,13,["H3700"]],[13,16,["H4639"]],[16,19,["H3027"]]]},{"k":13197,"v":[[0,1,["H3588"]],[1,2,["H6258"]],[2,4,["H5608"]],[4,6,["H6806"]],[6,9,["H3808"]],[9,10,["H8104"]],[10,11,["H5921"]],[11,13,["H2403"]]]},{"k":13198,"v":[[0,2,["H6588"]],[2,5,["H2856"]],[5,8,["H6872"]],[8,12,["H2950","H5921"]],[12,14,["H5771"]]]},{"k":13199,"v":[[0,2,["H199"]],[2,4,["H2022"]],[4,5,["H5307"]],[5,8,["H5034"]],[8,11,["H6697"]],[11,13,["H6275"]],[13,17,["H4480","H4725"]]]},{"k":13200,"v":[[0,2,["H4325"]],[2,3,["H7833"]],[3,5,["H68"]],[5,8,["H7857"]],[8,12,["H5599"]],[12,16,["H6083"]],[16,19,["H776"]],[19,22,["H6"]],[22,24,["H8615"]],[24,26,["H582"]]]},{"k":13201,"v":[[0,2,["H8630"]],[2,4,["H5331"]],[4,9,["H1980"]],[9,11,["H8138"]],[11,13,["H6440"]],[13,17,["H7971"]]]},{"k":13202,"v":[[0,2,["H1121"]],[2,5,["H3513"]],[5,8,["H3045"]],[8,10,["H3808"]],[10,15,["H6819"]],[15,18,["H995"]],[18,20,["H3808"]],[20,22,["H3926"]]]},{"k":13203,"v":[[0,1,["H389"]],[1,3,["H1320"]],[3,4,["H5921"]],[4,8,["H3510"]],[8,11,["H5315"]],[11,12,["H5921"]],[12,15,["H56"]]]},{"k":13204,"v":[[0,2,["H6030"]],[2,3,["H464"]],[3,5,["H8489"]],[5,7,["H559"]]]},{"k":13205,"v":[[0,3,["H2450"]],[3,5,["H6030"]],[5,6,["H7307"]],[6,7,["H1847"]],[7,9,["H4390"]],[9,11,["H990"]],[11,15,["H6921"]]]},{"k":13206,"v":[[0,3,["H3198"]],[3,5,["H3808","H5532"]],[5,6,["H1697"]],[6,9,["H4405"]],[9,14,["H3808"]],[14,15,["H3276"]]]},{"k":13207,"v":[[0,1,["H637"]],[1,2,["H859"]],[2,4,["H6565"]],[4,5,["H3374"]],[5,7,["H1639"]],[7,8,["H7881"]],[8,9,["H6440"]],[9,10,["H410"]]]},{"k":13208,"v":[[0,1,["H3588"]],[1,3,["H6310"]],[3,4,["H502"]],[4,6,["H5771"]],[6,9,["H977"]],[9,11,["H3956"]],[11,14,["H6175"]]]},{"k":13209,"v":[[0,3,["H6310"]],[3,4,["H7561"]],[4,7,["H3808"]],[7,8,["H589"]],[8,12,["H8193"]],[12,13,["H6030"]],[13,15,[]]]},{"k":13210,"v":[[0,4,["H7223"]],[4,5,["H120"]],[5,8,["H3205"]],[8,12,["H2342"]],[12,13,["H6440"]],[13,15,["H1389"]]]},{"k":13211,"v":[[0,3,["H8085"]],[3,5,["H5475"]],[5,7,["H433"]],[7,11,["H1639"]],[11,12,["H2451"]],[12,13,["H413"]],[13,14,[]]]},{"k":13212,"v":[[0,1,["H4100"]],[1,2,["H3045"]],[2,6,["H3045"]],[6,7,["H3808"]],[7,9,["H995"]],[9,11,["H1931"]],[11,13,["H3808"]],[13,14,["H5973"]],[14,15,[]]]},{"k":13213,"v":[[0,4,["H1571"]],[4,6,["H7867"]],[6,7,["H1571"]],[7,10,["H3453"]],[10,12,["H3524","H3117"]],[12,15,["H4480","H1"]]]},{"k":13214,"v":[[0,3,["H8575"]],[3,5,["H410"]],[5,6,["H4592"]],[6,7,["H4480"]],[7,12,["H328"]],[12,13,["H1697"]],[13,14,["H5973"]],[14,15,[]]]},{"k":13215,"v":[[0,1,["H4100"]],[1,4,["H3820"]],[4,7,["H3947"]],[7,9,["H4100"]],[9,12,["H5869"]],[12,14,["H7335"]]]},{"k":13216,"v":[[0,1,["H3588"]],[1,3,["H7725"]],[3,5,["H7307"]],[5,6,["H413"]],[6,7,["H410"]],[7,11,["H4405"]],[11,13,["H3318"]],[13,16,["H4480","H6310"]]]},{"k":13217,"v":[[0,1,["H4100"]],[1,3,["H582"]],[3,4,["H3588"]],[4,8,["H2135"]],[8,13,["H3205"]],[13,16,["H802"]],[16,17,["H3588"]],[17,21,["H6663"]]]},{"k":13218,"v":[[0,1,["H2005"]],[1,5,["H539","H3808"]],[5,8,["H6918"]],[8,11,["H8064"]],[11,13,["H3808"]],[13,14,["H2141"]],[14,17,["H5869"]]]},{"k":13219,"v":[[0,3,["H637","H3588"]],[3,4,["H8581"]],[4,6,["H444"]],[6,8,["H376"]],[8,10,["H8354"]],[10,11,["H5766"]],[11,13,["H4325"]]]},{"k":13220,"v":[[0,3,["H2331"]],[3,5,["H8085"]],[5,8,["H2088"]],[8,12,["H2372"]],[12,15,["H5608"]]]},{"k":13221,"v":[[0,1,["H834"]],[1,2,["H2450"]],[2,5,["H5046"]],[5,8,["H4480","H1"]],[8,11,["H3808"]],[11,12,["H3582"]],[12,13,[]]]},{"k":13222,"v":[[0,3,["H905"]],[3,5,["H776"]],[5,7,["H5414"]],[7,9,["H3808"]],[9,10,["H2114"]],[10,11,["H5674"]],[11,12,["H8432"]],[12,13,[]]]},{"k":13223,"v":[[0,3,["H7563"]],[3,6,["H2342"]],[6,7,["H3605"]],[7,9,["H3117"]],[9,12,["H4557"]],[12,14,["H8141"]],[14,16,["H6845"]],[16,19,["H6184"]]]},{"k":13224,"v":[[0,2,["H6343"]],[2,3,["H6963"]],[3,7,["H241"]],[7,9,["H7965"]],[9,11,["H7703"]],[11,14,["H935"]],[14,15,[]]]},{"k":13225,"v":[[0,2,["H539"]],[2,3,["H3808"]],[3,7,["H7725"]],[7,9,["H4480"]],[9,10,["H2822"]],[10,12,["H1931"]],[12,15,["H6822"]],[15,16,["H413"]],[16,18,["H2719"]]]},{"k":13226,"v":[[0,1,["H1931"]],[1,3,["H5074"]],[3,5,["H3899"]],[5,7,["H346"]],[7,11,["H3045"]],[11,12,["H3588"]],[12,14,["H3117"]],[14,16,["H2822"]],[16,18,["H3559"]],[18,21,["H3027"]]]},{"k":13227,"v":[[0,1,["H6862"]],[1,3,["H4691"]],[3,7,["H1204"]],[7,11,["H8630"]],[11,15,["H4428"]],[15,16,["H6264"]],[16,19,["H3593"]]]},{"k":13228,"v":[[0,1,["H3588"]],[1,4,["H5186"]],[4,6,["H3027"]],[6,7,["H413"]],[7,8,["H410"]],[8,11,["H1396"]],[11,12,["H413"]],[12,14,["H7706"]]]},{"k":13229,"v":[[0,2,["H7323"]],[2,3,["H413"]],[3,8,["H6677"]],[8,11,["H5672"]],[11,12,["H1354"]],[12,15,["H4043"]]]},{"k":13230,"v":[[0,1,["H3588"]],[1,3,["H3680"]],[3,5,["H6440"]],[5,8,["H2459"]],[8,10,["H6213"]],[10,13,["H6371"]],[13,14,["H5921"]],[14,16,["H3689"]]]},{"k":13231,"v":[[0,4,["H7931"]],[4,5,["H3582"]],[5,6,["H5892"]],[6,10,["H1004"]],[10,11,["H3808"]],[11,13,["H3427"]],[13,14,["H834"]],[14,16,["H6257"]],[16,19,["H1530"]]]},{"k":13232,"v":[[0,3,["H3808"]],[3,5,["H6238"]],[5,6,["H3808"]],[6,9,["H2428"]],[9,10,["H6965"]],[10,11,["H3808"]],[11,14,["H5186"]],[14,16,["H4512"]],[16,20,["H776"]]]},{"k":13233,"v":[[0,3,["H3808"]],[3,4,["H5493"]],[4,6,["H4480"]],[6,7,["H2822"]],[7,9,["H7957"]],[9,12,["H3001"]],[12,14,["H3127"]],[14,18,["H7307"]],[18,21,["H6310"]],[21,25,["H5493"]]]},{"k":13234,"v":[[0,2,["H408"]],[2,6,["H8582"]],[6,7,["H539"]],[7,9,["H7723"]],[9,10,["H3588"]],[10,11,["H7723"]],[11,13,["H1961"]],[13,15,["H8545"]]]},{"k":13235,"v":[[0,4,["H4390"]],[4,5,["H3808"]],[5,7,["H3117"]],[7,10,["H3712"]],[10,12,["H3808"]],[12,14,["H7488"]]]},{"k":13236,"v":[[0,4,["H2554"]],[4,7,["H1154"]],[7,10,["H1612"]],[10,14,["H7993"]],[14,16,["H5328"]],[16,19,["H2132"]]]},{"k":13237,"v":[[0,1,["H3588"]],[1,3,["H5712"]],[3,5,["H2611"]],[5,8,["H1565"]],[8,10,["H784"]],[10,12,["H398"]],[12,14,["H168"]],[14,16,["H7810"]]]},{"k":13238,"v":[[0,2,["H2029"]],[2,3,["H5999"]],[3,6,["H3205"]],[6,7,["H205"]],[7,10,["H990"]],[10,11,["H3559"]],[11,12,["H4820"]]]},{"k":13239,"v":[[0,2,["H347"]],[2,3,["H6030"]],[3,5,["H559"]]]},{"k":13240,"v":[[0,3,["H8085"]],[3,4,["H7227"]],[4,6,["H428"]],[6,7,["H5999"]],[7,8,["H5162"]],[8,11,["H3605"]]]},{"k":13241,"v":[[0,2,["H7307"]],[2,3,["H1697"]],[3,6,["H7093"]],[6,7,["H176"]],[7,8,["H4100"]],[8,9,["H4834"]],[9,11,["H3588"]],[11,13,["H6030"]]]},{"k":13242,"v":[[0,1,["H595"]],[1,2,["H1571"]],[2,4,["H1696"]],[4,8,["H3863"]],[8,10,["H5315"]],[10,11,["H3426"]],[11,15,["H8478","H5315"]],[15,19,["H2266"]],[19,20,["H4405"]],[20,21,["H5921"]],[21,24,["H5128"]],[24,25,["H1119"]],[25,26,["H7218"]],[26,27,["H5921"]],[27,28,[]]]},{"k":13243,"v":[[0,4,["H553"]],[4,6,["H1119"]],[6,8,["H6310"]],[8,11,["H5205"]],[11,14,["H8193"]],[14,16,["H2820"]],[16,18,[]]]},{"k":13244,"v":[[0,1,["H518"]],[1,3,["H1696"]],[3,5,["H3511"]],[5,7,["H3808"]],[7,8,["H2820"]],[8,12,["H2308"]],[12,13,["H4100","H4480"]],[13,16,["H1980"]]]},{"k":13245,"v":[[0,1,["H389"]],[1,2,["H6258"]],[2,7,["H3811"]],[7,11,["H8074"]],[11,12,["H3605"]],[12,14,["H5712"]]]},{"k":13246,"v":[[0,7,["H7059"]],[7,9,["H1961"]],[9,11,["H5707"]],[11,16,["H3585"]],[16,18,["H6965"]],[18,22,["H6030"]],[22,25,["H6440"]]]},{"k":13247,"v":[[0,2,["H2963"]],[2,6,["H639"]],[6,8,["H7852"]],[8,11,["H2786"]],[11,12,["H5921"]],[12,16,["H8127"]],[16,18,["H6862"]],[18,19,["H3913"]],[19,21,["H5869"]],[21,23,[]]]},{"k":13248,"v":[[0,3,["H6473"]],[3,4,["H5921"]],[4,8,["H6310"]],[8,11,["H5221"]],[11,15,["H3895"]],[15,16,["H2781"]],[16,20,["H4390"]],[20,21,["H3162"]],[21,22,["H5921"]],[22,23,[]]]},{"k":13249,"v":[[0,1,["H410"]],[1,3,["H5462"]],[3,5,["H413"]],[5,7,["H5760"]],[7,11,["H3399"]],[11,12,["H5921"]],[12,14,["H3027"]],[14,17,["H7563"]]]},{"k":13250,"v":[[0,2,["H1961"]],[2,4,["H7961"]],[4,10,["H6565"]],[10,14,["H270"]],[14,18,["H6203"]],[18,23,["H6327"]],[23,27,["H6965"]],[27,30,["H4307"]]]},{"k":13251,"v":[[0,2,["H7228"]],[2,6,["H5437","H5921"]],[6,8,["H6398"]],[8,10,["H3629"]],[10,14,["H3808"]],[14,15,["H2550"]],[15,18,["H8210"]],[18,20,["H4845"]],[20,23,["H776"]]]},{"k":13252,"v":[[0,2,["H6555"]],[2,5,["H6556"]],[5,6,["H5921","H6440"]],[6,7,["H6556"]],[7,9,["H7323"]],[9,10,["H5921"]],[10,14,["H1368"]]]},{"k":13253,"v":[[0,3,["H8609"]],[3,4,["H8242"]],[4,5,["H5921"]],[5,7,["H1539"]],[7,9,["H5953"]],[9,11,["H7161"]],[11,14,["H6083"]]]},{"k":13254,"v":[[0,2,["H6440"]],[2,4,["H2560"]],[4,5,["H4480"]],[5,6,["H1065"]],[6,8,["H5921"]],[8,10,["H6079"]],[10,15,["H6757"]]]},{"k":13255,"v":[[0,1,["H3808"]],[1,2,["H5921"]],[2,4,["H2555"]],[4,7,["H3709"]],[7,10,["H8605"]],[10,12,["H2134"]]]},{"k":13256,"v":[[0,2,["H776"]],[2,3,["H3680"]],[3,4,["H408"]],[4,7,["H1818"]],[7,11,["H2201"]],[11,12,["H1961"]],[12,13,["H408"]],[13,14,["H4725"]]]},{"k":13257,"v":[[0,1,["H1571"]],[1,2,["H6258"]],[2,3,["H2009"]],[3,5,["H5707"]],[5,8,["H8064"]],[8,11,["H7717"]],[11,14,["H4791"]]]},{"k":13258,"v":[[0,2,["H7453"]],[2,3,["H3887"]],[3,7,["H5869"]],[7,9,["H1811"]],[9,11,["H413"]],[11,12,["H433"]]]},{"k":13259,"v":[[0,5,["H3198"]],[5,8,["H1397"]],[8,9,["H5973"]],[9,10,["H433"]],[10,13,["H1121","H120"]],[13,17,["H7453"]]]},{"k":13260,"v":[[0,1,["H3588"]],[1,3,["H4557"]],[3,4,["H8141"]],[4,6,["H857"]],[6,10,["H1980"]],[10,12,["H734"]],[12,16,["H3808"]],[16,17,["H7725"]]]},{"k":13261,"v":[[0,2,["H7307"]],[2,4,["H2254"]],[4,6,["H3117"]],[6,8,["H2193"]],[8,10,["H6913"]],[10,14,[]]]},{"k":13262,"v":[[0,3,["H3808"]],[3,4,["H2049"]],[4,5,["H5978"]],[5,11,["H5869"]],[11,12,["H3885"]],[12,15,["H4784"]]]},{"k":13263,"v":[[0,2,["H7760"]],[2,3,["H4994"]],[3,8,["H6148"]],[8,9,["H5973"]],[9,11,["H4310"]],[11,13,["H1931"]],[13,16,["H8628"]],[16,17,["H3027"]],[17,19,[]]]},{"k":13264,"v":[[0,1,["H3588"]],[1,4,["H6845"]],[4,6,["H3820"]],[6,8,["H4480","H7922"]],[8,9,["H3651","H5921"]],[9,12,["H3808"]],[12,13,["H7311"]],[13,14,[]]]},{"k":13265,"v":[[0,3,["H5046"]],[3,4,["H2506"]],[4,7,["H7453"]],[7,10,["H5869"]],[10,13,["H1121"]],[13,15,["H3615"]]]},{"k":13266,"v":[[0,3,["H3322"]],[3,7,["H4914"]],[7,10,["H5971"]],[10,12,["H6440"]],[12,14,["H1961"]],[14,17,["H8611"]]]},{"k":13267,"v":[[0,2,["H5869"]],[2,5,["H3543"]],[5,9,["H4480","H3708"]],[9,11,["H3605"]],[11,13,["H3338"]],[13,17,["H6738"]]]},{"k":13268,"v":[[0,1,["H3477"]],[1,5,["H8074"]],[5,6,["H5921"]],[6,7,["H2063"]],[7,10,["H5355"]],[10,14,["H5782"]],[14,15,["H5921"]],[15,17,["H2611"]]]},{"k":13269,"v":[[0,2,["H6662"]],[2,5,["H270"]],[5,8,["H1870"]],[8,13,["H2889"]],[13,14,["H3027"]],[14,19,["H3254","H555"]]]},{"k":13270,"v":[[0,1,["H199"]],[1,5,["H3605"]],[5,8,["H7725"]],[8,10,["H935"]],[10,11,["H4994"]],[11,14,["H3808"]],[14,15,["H4672"]],[15,17,["H2450"]],[17,20,[]]]},{"k":13271,"v":[[0,2,["H3117"]],[2,4,["H5674"]],[4,6,["H2154"]],[6,9,["H5423"]],[9,12,["H4180"]],[12,15,["H3824"]]]},{"k":13272,"v":[[0,2,["H7760"]],[2,4,["H3915"]],[4,6,["H3117"]],[6,8,["H216"]],[8,10,["H7138"]],[10,11,["H4480","H6440"]],[11,13,["H2822"]]]},{"k":13273,"v":[[0,1,["H518"]],[1,3,["H6960"]],[3,5,["H7585"]],[5,8,["H1004"]],[8,11,["H7502"]],[11,13,["H3326"]],[13,16,["H2822"]]]},{"k":13274,"v":[[0,3,["H7121"]],[3,5,["H7845"]],[5,6,["H859"]],[6,9,["H1"]],[9,12,["H7415"]],[12,16,["H517"]],[16,19,["H269"]]]},{"k":13275,"v":[[0,2,["H346"]],[2,4,["H645"]],[4,6,["H8615"]],[6,10,["H8615"]],[10,11,["H4310"]],[11,13,["H7789"]],[13,14,[]]]},{"k":13276,"v":[[0,4,["H3381"]],[4,7,["H905"]],[7,10,["H7585"]],[10,11,["H518"]],[11,13,["H5183"]],[13,14,["H3162"]],[14,16,["H5921"]],[16,18,["H6083"]]]},{"k":13277,"v":[[0,2,["H6030"]],[2,3,["H1085"]],[3,5,["H7747"]],[5,7,["H559"]]]},{"k":13278,"v":[[0,2,["H5704","H575"]],[2,8,["H7760"]],[8,10,["H7078"]],[10,12,["H4405"]],[12,13,["H995"]],[13,15,["H310"]],[15,18,["H1696"]]]},{"k":13279,"v":[[0,1,["H4069"]],[1,4,["H2803"]],[4,6,["H929"]],[6,9,["H2933"]],[9,12,["H5869"]]]},{"k":13280,"v":[[0,2,["H2963"]],[2,3,["H5315"]],[3,6,["H639"]],[6,9,["H776"]],[9,11,["H5800"]],[11,12,["H4616"]],[12,17,["H6697"]],[17,19,["H6275"]],[19,23,["H4480","H4725"]]]},{"k":13281,"v":[[0,1,["H1571"]],[1,3,["H216"]],[3,6,["H7563"]],[6,10,["H1846"]],[10,13,["H7632"]],[13,16,["H784"]],[16,18,["H3808"]],[18,19,["H5050"]]]},{"k":13282,"v":[[0,2,["H216"]],[2,5,["H2821"]],[5,8,["H168"]],[8,11,["H5216"]],[11,15,["H1846"]],[15,16,["H5921"]],[16,17,[]]]},{"k":13283,"v":[[0,2,["H6806"]],[2,5,["H202"]],[5,8,["H3334"]],[8,12,["H6098"]],[12,16,["H7993"]]]},{"k":13284,"v":[[0,1,["H3588"]],[1,4,["H7971"]],[4,7,["H7568"]],[7,11,["H7272"]],[11,14,["H1980"]],[14,15,["H5921"]],[15,17,["H7639"]]]},{"k":13285,"v":[[0,2,["H6341"]],[2,4,["H270"]],[4,8,["H6119"]],[8,11,["H6782"]],[11,13,["H2388"]],[13,14,["H5921"]],[14,15,[]]]},{"k":13286,"v":[[0,2,["H2256"]],[2,4,["H2934"]],[4,9,["H776"]],[9,12,["H4434"]],[12,15,["H5921"]],[15,17,["H5410"]]]},{"k":13287,"v":[[0,1,["H1091"]],[1,5,["H1204"]],[5,8,["H5439"]],[8,11,["H6327"]],[11,15,["H7272"]]]},{"k":13288,"v":[[0,2,["H202"]],[2,4,["H1961"]],[4,5,["H7457"]],[5,7,["H343"]],[7,10,["H3559"]],[10,13,["H6763"]]]},{"k":13289,"v":[[0,3,["H398"]],[3,5,["H905"]],[5,8,["H5785"]],[8,11,["H1060"]],[11,13,["H4194"]],[13,15,["H398"]],[15,17,["H905"]]]},{"k":13290,"v":[[0,2,["H4009"]],[2,6,["H5423"]],[6,9,["H4480","H168"]],[9,13,["H6805"]],[13,17,["H4428"]],[17,19,["H1091"]]]},{"k":13291,"v":[[0,3,["H7931"]],[3,6,["H168"]],[6,10,["H4480","H1097"]],[10,13,["H1614"]],[13,16,["H2219"]],[16,17,["H5921"]],[17,19,["H5116"]]]},{"k":13292,"v":[[0,2,["H8328"]],[2,6,["H3001"]],[6,7,["H4480","H8478"]],[7,9,["H4480","H4605"]],[9,12,["H7105"]],[12,15,["H5243"]]]},{"k":13293,"v":[[0,2,["H2143"]],[2,4,["H6"]],[4,5,["H4480"]],[5,7,["H776"]],[7,12,["H3808"]],[12,13,["H8034"]],[13,14,["H5921"]],[14,16,["H6440","H2351"]]]},{"k":13294,"v":[[0,4,["H1920"]],[4,6,["H4480","H216"]],[6,7,["H413"]],[7,8,["H2822"]],[8,10,["H5074"]],[10,14,["H4480","H8398"]]]},{"k":13295,"v":[[0,3,["H3808"]],[3,5,["H5209"]],[5,6,["H3808"]],[6,7,["H5220"]],[7,10,["H5971"]],[10,11,["H369"]],[11,13,["H8300"]],[13,16,["H4033"]]]},{"k":13296,"v":[[0,4,["H314"]],[4,8,["H8074"]],[8,9,["H5921"]],[9,11,["H3117"]],[11,16,["H6931"]],[16,18,["H8178"]]]},{"k":13297,"v":[[0,1,["H389"]],[1,2,["H428"]],[2,5,["H4908"]],[5,8,["H5767"]],[8,10,["H2088"]],[10,13,["H4725"]],[13,17,["H3045"]],[17,18,["H3808"]],[18,19,["H410"]]]},{"k":13298,"v":[[0,2,["H347"]],[2,3,["H6030"]],[3,5,["H559"]]]},{"k":13299,"v":[[0,2,["H5704","H575"]],[2,5,["H3013"]],[5,7,["H5315"]],[7,12,["H1792"]],[12,14,["H4405"]]]},{"k":13300,"v":[[0,1,["H2088"]],[1,2,["H6235"]],[2,3,["H6471"]],[3,6,["H3637"]],[6,10,["H3808"]],[10,11,["H954"]],[11,16,["H1970"]],[16,18,[]]]},{"k":13301,"v":[[0,1,["H637"]],[1,4,["H551"]],[4,8,["H7686"]],[8,10,["H4879"]],[10,11,["H3885"]],[11,12,["H854"]],[12,13,[]]]},{"k":13302,"v":[[0,1,["H518"]],[1,2,["H551"]],[2,5,["H1431"]],[5,7,["H5921"]],[7,10,["H3198"]],[10,11,["H5921"]],[11,14,["H2781"]]]},{"k":13303,"v":[[0,1,["H3045"]],[1,2,["H645"]],[2,3,["H3588"]],[3,4,["H433"]],[4,6,["H5791"]],[6,10,["H5362","H5921"]],[10,14,["H4685"]]]},{"k":13304,"v":[[0,1,["H2005"]],[1,4,["H6817"]],[4,6,["H2555"]],[6,10,["H3808"]],[10,11,["H6030"]],[11,14,["H7768"]],[14,18,["H369"]],[18,19,["H4941"]]]},{"k":13305,"v":[[0,4,["H1443"]],[4,6,["H734"]],[6,9,["H3808"]],[9,10,["H5674"]],[10,14,["H7760"]],[14,15,["H2822"]],[15,16,["H5921"]],[16,18,["H5410"]]]},{"k":13306,"v":[[0,5,["H6584","H4480","H5921"]],[5,7,["H3519"]],[7,9,["H5493"]],[9,11,["H5850"]],[11,14,["H7218"]]]},{"k":13307,"v":[[0,3,["H5422"]],[3,7,["H5439"]],[7,11,["H1980"]],[11,14,["H8615"]],[14,17,["H5265"]],[17,20,["H6086"]]]},{"k":13308,"v":[[0,4,["H2734"]],[4,6,["H639"]],[6,7,["H5921"]],[7,11,["H2803"]],[11,19,["H6862"]]]},{"k":13309,"v":[[0,2,["H1416"]],[2,3,["H935"]],[3,4,["H3162"]],[4,7,["H5549"]],[7,9,["H1870"]],[9,10,["H5921"]],[10,13,["H2583"]],[13,15,["H5439"]],[15,17,["H168"]]]},{"k":13310,"v":[[0,6,["H7368","H251"]],[6,7,["H4480","H5921"]],[7,11,["H3045"]],[11,13,["H389"]],[13,14,["H2114"]],[14,15,["H4480"]],[15,16,[]]]},{"k":13311,"v":[[0,2,["H7138"]],[2,4,["H2308"]],[4,8,["H3045"]],[8,10,["H7911"]],[10,11,[]]]},{"k":13312,"v":[[0,3,["H1481"]],[3,6,["H1004"]],[6,9,["H519"]],[9,10,["H2803"]],[10,14,["H2114"]],[14,16,["H1961"]],[16,18,["H5237"]],[18,21,["H5869"]]]},{"k":13313,"v":[[0,2,["H7121"]],[2,4,["H5650"]],[4,9,["H3808"]],[9,10,["H6030"]],[10,12,["H2603"]],[12,14,["H1119"]],[14,16,["H6310"]]]},{"k":13314,"v":[[0,2,["H7307"]],[2,4,["H2114"]],[4,7,["H802"]],[7,10,["H2603"]],[10,13,["H1121"]],[13,18,["H990"]]]},{"k":13315,"v":[[0,1,["H1571"]],[1,3,["H5759"]],[3,4,["H3988"]],[4,7,["H6965"]],[7,10,["H1696"]],[10,12,[]]]},{"k":13316,"v":[[0,1,["H3605"]],[1,3,["H5475"]],[3,4,["H4962"]],[4,5,["H8581"]],[5,9,["H2088"]],[9,11,["H157"]],[11,13,["H2015"]],[13,15,[]]]},{"k":13317,"v":[[0,2,["H6106"]],[2,3,["H1692"]],[3,6,["H5785"]],[6,10,["H1320"]],[10,14,["H4422"]],[14,17,["H5785"]],[17,20,["H8127"]]]},{"k":13318,"v":[[0,3,["H2603"]],[3,7,["H2603"]],[7,10,["H859"]],[10,12,["H7453"]],[12,13,["H3588"]],[13,15,["H3027"]],[15,17,["H433"]],[17,19,["H5060"]],[19,20,[]]]},{"k":13319,"v":[[0,1,["H4100"]],[1,4,["H7291"]],[4,6,["H3644"]],[6,7,["H410"]],[7,10,["H3808"]],[10,11,["H7646"]],[11,14,["H4480","H1320"]]]},{"k":13320,"v":[[0,2,["H4310"]],[2,4,["H4405"]],[4,5,["H5414"]],[5,6,["H645"]],[6,7,["H3789"]],[7,9,["H4310"]],[9,11,["H5414"]],[11,12,["H2710"]],[12,15,["H5612"]]]},{"k":13321,"v":[[0,4,["H2672"]],[4,7,["H1270"]],[7,8,["H5842"]],[8,10,["H5777"]],[10,13,["H6697"]],[13,15,["H5703"]]]},{"k":13322,"v":[[0,2,["H589"]],[2,3,["H3045"]],[3,6,["H1350"]],[6,7,["H2416"]],[7,12,["H6965"]],[12,15,["H314"]],[15,17,["H5921"]],[17,19,["H6083"]]]},{"k":13323,"v":[[0,3,["H310"]],[3,5,["H5785"]],[5,7,["H5362"]],[7,8,["H2063"]],[8,13,["H4480","H1320"]],[13,16,["H2372"]],[16,17,["H433"]]]},{"k":13324,"v":[[0,1,["H834"]],[1,2,["H589"]],[2,4,["H2372"]],[4,9,["H5869"]],[9,11,["H7200"]],[11,13,["H3808"]],[13,14,["H2114"]],[14,17,["H3629"]],[17,19,["H3615"]],[19,20,["H2436"]],[20,21,[]]]},{"k":13325,"v":[[0,1,["H3588"]],[1,4,["H559"]],[4,5,["H4100"]],[5,6,["H7291"]],[6,11,["H8328"]],[11,14,["H1697"]],[14,16,["H4672"]],[16,18,[]]]},{"k":13326,"v":[[0,3,["H1481"]],[3,4,["H4480","H6440"]],[4,6,["H2719"]],[6,7,["H3588"]],[7,8,["H2534"]],[8,11,["H5771"]],[11,14,["H2719"]],[14,15,["H4616"]],[15,18,["H3045"]],[18,22,["H7945","H1779"]]]},{"k":13327,"v":[[0,2,["H6030"]],[2,3,["H6691"]],[3,5,["H5284"]],[5,7,["H559"]]]},{"k":13328,"v":[[0,1,["H3651"]],[1,4,["H5587"]],[4,8,["H7725"]],[8,10,["H5668"]],[10,14,["H2363"]]]},{"k":13329,"v":[[0,3,["H8085"]],[3,5,["H4148"]],[5,8,["H3639"]],[8,11,["H7307"]],[11,14,["H4480","H998"]],[14,18,["H6030"]]]},{"k":13330,"v":[[0,1,["H3045"]],[1,4,["H2063"]],[4,5,["H4480"]],[5,6,["H5703"]],[6,7,["H4480"]],[7,8,["H120"]],[8,10,["H7760"]],[10,11,["H5921"]],[11,12,["H776"]]]},{"k":13331,"v":[[0,1,["H3588"]],[1,3,["H7445"]],[3,6,["H7563"]],[6,8,["H4480","H7138"]],[8,11,["H8057"]],[11,14,["H2611"]],[14,16,["H5704"]],[16,18,["H7281"]]]},{"k":13332,"v":[[0,1,["H518"]],[1,3,["H7863"]],[3,5,["H5927"]],[5,8,["H8064"]],[8,11,["H7218"]],[11,12,["H5060"]],[12,15,["H5645"]]]},{"k":13333,"v":[[0,4,["H6"]],[4,6,["H5331"]],[6,10,["H1561"]],[10,14,["H7200"]],[14,17,["H559"]],[17,18,["H335"]],[18,20,[]]]},{"k":13334,"v":[[0,4,["H5774"]],[4,7,["H2472"]],[7,10,["H3808"]],[10,12,["H4672"]],[12,18,["H5074"]],[18,21,["H2384"]],[21,24,["H3915"]]]},{"k":13335,"v":[[0,2,["H5869"]],[2,5,["H7805"]],[5,10,["H3808"]],[10,11,["H3254"]],[11,12,["H3808"]],[12,15,["H4725"]],[15,17,["H5750"]],[17,18,["H7789"]],[18,19,[]]]},{"k":13336,"v":[[0,2,["H1121"]],[2,6,["H7521"]],[6,8,["H1800"]],[8,11,["H3027"]],[11,13,["H7725"]],[13,15,["H202"]]]},{"k":13337,"v":[[0,2,["H6106"]],[2,4,["H4390"]],[4,10,["H5934"]],[10,14,["H7901"]],[14,15,["H5973"]],[15,17,["H5921"]],[17,19,["H6083"]]]},{"k":13338,"v":[[0,1,["H518"]],[1,2,["H7451"]],[2,4,["H4985"]],[4,7,["H6310"]],[7,10,["H3582"]],[10,12,["H8478"]],[12,14,["H3956"]]]},{"k":13339,"v":[[0,3,["H2550","H5921"]],[3,6,["H5800"]],[6,8,["H3808"]],[8,12,["H4513"]],[12,13,["H8432"]],[13,15,["H2441"]]]},{"k":13340,"v":[[0,3,["H3899"]],[3,6,["H4578"]],[6,8,["H2015"]],[8,12,["H4846"]],[12,14,["H6620"]],[14,15,["H7130"]],[15,16,[]]]},{"k":13341,"v":[[0,4,["H1104"]],[4,5,["H2428"]],[5,12,["H6958"]],[12,13,["H410"]],[13,17,["H3423"]],[17,18,["H4480"]],[18,20,["H990"]]]},{"k":13342,"v":[[0,3,["H3243"]],[3,5,["H7219"]],[5,7,["H6620"]],[7,9,["H660"]],[9,10,["H3956"]],[10,12,["H2026"]],[12,13,[]]]},{"k":13343,"v":[[0,3,["H408"]],[3,4,["H7200"]],[4,6,["H6390"]],[6,8,["H5104"]],[8,10,["H5158"]],[10,12,["H1706"]],[12,14,["H2529"]]]},{"k":13344,"v":[[0,5,["H3022"]],[5,8,["H7725"]],[8,11,["H3808"]],[11,14,["H1104"]],[14,18,["H2428"]],[18,21,["H8545"]],[21,26,["H3808"]],[26,27,["H5965"]],[27,28,[]]]},{"k":13345,"v":[[0,1,["H3588"]],[1,4,["H7533"]],[4,7,["H5800"]],[7,9,["H1800"]],[9,15,["H1497"]],[15,17,["H1004"]],[17,20,["H1129"]],[20,21,["H3808"]]]},{"k":13346,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H3045"]],[5,6,["H7961"]],[6,9,["H990"]],[9,12,["H3808"]],[12,13,["H4422"]],[13,18,["H2530"]]]},{"k":13347,"v":[[0,3,["H369"]],[3,6,["H400"]],[6,8,["H8300"]],[8,9,["H3651","H5921"]],[9,11,["H3808"]],[11,13,["H2342"]],[13,16,["H2898"]]]},{"k":13348,"v":[[0,3,["H4390"]],[3,6,["H5607"]],[6,11,["H3334"]],[11,12,["H3605"]],[12,13,["H3027"]],[13,16,["H6001"]],[16,18,["H935"]],[18,20,[]]]},{"k":13349,"v":[[0,2,["H1961"]],[2,6,["H4390"]],[6,8,["H990"]],[8,11,["H7971"]],[11,13,["H2740"]],[13,16,["H639"]],[16,21,["H4305"]],[21,23,["H5921"]],[23,28,["H3894"]]]},{"k":13350,"v":[[0,3,["H1272"]],[3,6,["H1270"]],[6,7,["H4480","H5402"]],[7,10,["H7198"]],[10,12,["H5154"]],[12,16,["H2498"]]]},{"k":13351,"v":[[0,3,["H8025"]],[3,6,["H3318"]],[6,9,["H4480","H1465"]],[9,13,["H1300"]],[13,14,["H1980"]],[14,18,["H4480","H4846"]],[18,19,["H367"]],[19,21,["H5921"]],[21,22,[]]]},{"k":13352,"v":[[0,1,["H3605"]],[1,2,["H2822"]],[2,5,["H2934"]],[5,9,["H6845"]],[9,11,["H784"]],[11,12,["H3808"]],[12,13,["H5301"]],[13,15,["H398"]],[15,20,["H7489"]],[20,25,["H8300"]],[25,28,["H168"]]]},{"k":13353,"v":[[0,2,["H8064"]],[2,4,["H1540"]],[4,6,["H5771"]],[6,9,["H776"]],[9,12,["H6965"]],[12,14,[]]]},{"k":13354,"v":[[0,2,["H2981"]],[2,5,["H1004"]],[5,7,["H1540"]],[7,13,["H5064"]],[13,16,["H3117"]],[16,19,["H639"]]]},{"k":13355,"v":[[0,1,["H2088"]],[1,4,["H2506"]],[4,7,["H7563"]],[7,8,["H120"]],[8,10,["H4480","H430"]],[10,13,["H5159"]],[13,14,["H561"]],[14,18,["H4480","H410"]]]},{"k":13356,"v":[[0,2,["H347"]],[2,3,["H6030"]],[3,5,["H559"]]]},{"k":13357,"v":[[0,2,["H8085","H8085"]],[2,4,["H4405"]],[4,7,["H2063"]],[7,8,["H1961"]],[8,10,["H8575"]]]},{"k":13358,"v":[[0,1,["H5375"]],[1,4,["H595"]],[4,6,["H1696"]],[6,9,["H310"]],[9,12,["H1696"]],[12,14,["H3932"]]]},{"k":13359,"v":[[0,3,["H595"]],[3,6,["H7879"]],[6,8,["H120"]],[8,10,["H518"]],[10,14,["H4069"]],[14,16,["H3808"]],[16,18,["H7307"]],[18,20,["H7114"]]]},{"k":13360,"v":[[0,1,["H6437","H413"]],[1,5,["H8074"]],[5,7,["H7760"]],[7,9,["H3027"]],[9,10,["H5921"]],[10,12,["H6310"]]]},{"k":13361,"v":[[0,2,["H518"]],[2,4,["H2142"]],[4,7,["H926"]],[7,9,["H6427"]],[9,11,["H270"]],[11,14,["H1320"]]]},{"k":13362,"v":[[0,1,["H4069"]],[1,4,["H7563"]],[4,5,["H2421"]],[5,7,["H6275"]],[7,8,["H1571"]],[8,10,["H1396"]],[10,12,["H2428"]]]},{"k":13363,"v":[[0,2,["H2233"]],[2,4,["H3559"]],[4,7,["H6440"]],[7,8,["H5973"]],[8,12,["H6631"]],[12,15,["H5869"]]]},{"k":13364,"v":[[0,2,["H1004"]],[2,4,["H7965"]],[4,6,["H4480","H6343"]],[6,7,["H3808"]],[7,10,["H7626"]],[10,12,["H433"]],[12,13,["H5921"]],[13,14,[]]]},{"k":13365,"v":[[0,2,["H7794"]],[2,3,["H5674"]],[3,5,["H1602"]],[5,6,["H3808"]],[6,8,["H6510"]],[8,9,["H6403"]],[9,14,["H7921","H3808"]]]},{"k":13366,"v":[[0,3,["H7971"]],[3,6,["H5759"]],[6,9,["H6629"]],[9,12,["H3206"]],[12,13,["H7540"]]]},{"k":13367,"v":[[0,2,["H5375"]],[2,4,["H8596"]],[4,6,["H3658"]],[6,8,["H8055"]],[8,11,["H6963"]],[11,14,["H5748"]]]},{"k":13368,"v":[[0,2,["H3615"]],[2,4,["H3117"]],[4,6,["H2896"]],[6,10,["H7281"]],[10,12,["H5181"]],[12,15,["H7585"]]]},{"k":13369,"v":[[0,3,["H559"]],[3,5,["H410"]],[5,6,["H5493"]],[6,7,["H4480"]],[7,11,["H2654"]],[11,12,["H3808"]],[12,14,["H1847"]],[14,17,["H1870"]]]},{"k":13370,"v":[[0,1,["H4100"]],[1,4,["H7706"]],[4,5,["H3588"]],[5,8,["H5647"]],[8,11,["H4100"]],[11,12,["H3276"]],[12,16,["H3588"]],[16,18,["H6293"]],[18,20,[]]]},{"k":13371,"v":[[0,1,["H2005"]],[1,3,["H2898"]],[3,5,["H3808"]],[5,8,["H3027"]],[8,10,["H6098"]],[10,13,["H7563"]],[13,15,["H7368"]],[15,16,["H4480"]],[16,17,[]]]},{"k":13372,"v":[[0,2,["H4100"]],[2,5,["H5216"]],[5,8,["H7563"]],[8,10,["H1846"]],[10,14,["H935"]],[14,16,["H343"]],[16,17,["H5921"]],[17,20,["H2505"]],[20,21,["H2256"]],[21,24,["H639"]]]},{"k":13373,"v":[[0,2,["H1961"]],[2,4,["H8401"]],[4,5,["H6440"]],[5,7,["H7307"]],[7,10,["H4671"]],[10,13,["H5492"]],[13,15,["H1589"]]]},{"k":13374,"v":[[0,1,["H433"]],[1,3,["H6845"]],[3,5,["H205"]],[5,8,["H1121"]],[8,10,["H7999","H413"]],[10,15,["H3045"]],[15,16,[]]]},{"k":13375,"v":[[0,2,["H5869"]],[2,4,["H7200"]],[4,6,["H3589"]],[6,10,["H8354"]],[10,13,["H4480","H2534"]],[13,16,["H7706"]]]},{"k":13376,"v":[[0,1,["H3588"]],[1,2,["H4100"]],[2,3,["H2656"]],[3,8,["H1004"]],[8,9,["H310"]],[9,13,["H4557"]],[13,16,["H2320"]],[16,22,["H2686"]]]},{"k":13377,"v":[[0,3,["H3925"]],[3,4,["H410"]],[4,5,["H1847"]],[5,7,["H1931"]],[7,8,["H8199"]],[8,12,["H7311"]]]},{"k":13378,"v":[[0,1,["H2088"]],[1,2,["H4191"]],[2,5,["H8537"]],[5,6,["H6106"]],[6,8,["H3605"]],[8,10,["H7946"]],[10,12,["H7961"]]]},{"k":13379,"v":[[0,2,["H5845"]],[2,4,["H4390"]],[4,6,["H2461"]],[6,9,["H6106"]],[9,11,["H8248"]],[11,13,["H4221"]]]},{"k":13380,"v":[[0,2,["H2088"]],[2,3,["H4191"]],[3,6,["H4751"]],[6,9,["H5315"]],[9,11,["H3808"]],[11,12,["H398"]],[12,14,["H2896"]]]},{"k":13381,"v":[[0,4,["H7901"]],[4,5,["H3162"]],[5,6,["H5921"]],[6,8,["H6083"]],[8,11,["H7415"]],[11,13,["H3680","H5921"]],[13,14,[]]]},{"k":13382,"v":[[0,1,["H2005"]],[1,3,["H3045"]],[3,5,["H4284"]],[5,8,["H4209"]],[8,12,["H2554"]],[12,13,["H5921"]],[13,14,[]]]},{"k":13383,"v":[[0,1,["H3588"]],[1,3,["H559"]],[3,4,["H346"]],[4,7,["H1004"]],[7,10,["H5081"]],[10,12,["H346"]],[12,15,["H4908"]],[15,16,["H168"]],[16,19,["H7563"]]]},{"k":13384,"v":[[0,3,["H3808"]],[3,4,["H7592"]],[4,7,["H5674"]],[7,10,["H1870"]],[10,14,["H3808"]],[14,15,["H5234"]],[15,17,["H226"]]]},{"k":13385,"v":[[0,1,["H3588"]],[1,3,["H7451"]],[3,5,["H2820"]],[5,8,["H3117"]],[8,10,["H343"]],[10,15,["H2986"]],[15,18,["H3117"]],[18,20,["H5678"]]]},{"k":13386,"v":[[0,1,["H4310"]],[1,3,["H5046"]],[3,5,["H1870"]],[5,6,["H5921"]],[6,8,["H6440"]],[8,10,["H4310"]],[10,12,["H7999"]],[12,15,["H1931"]],[15,17,["H6213"]]]},{"k":13387,"v":[[0,3,["H1931"]],[3,5,["H2986"]],[5,8,["H6913"]],[8,11,["H8245"]],[11,12,["H5921"]],[12,14,["H1430"]]]},{"k":13388,"v":[[0,2,["H7263"]],[2,5,["H5158"]],[5,8,["H4985"]],[8,12,["H3605"]],[12,13,["H120"]],[13,15,["H4900"]],[15,16,["H310"]],[16,21,["H369","H4557"]],[21,22,["H6440"]],[22,23,[]]]},{"k":13389,"v":[[0,1,["H349"]],[1,3,["H5162"]],[3,7,["H1892"]],[7,11,["H8666"]],[11,13,["H7604"]],[13,14,["H4604"]]]},{"k":13390,"v":[[0,2,["H464"]],[2,4,["H8489"]],[4,5,["H6030"]],[5,7,["H559"]]]},{"k":13391,"v":[[0,3,["H1397"]],[3,5,["H5532"]],[5,7,["H410"]],[7,10,["H3588"]],[10,12,["H7919"]],[12,15,["H5532"]],[15,16,["H5921"]],[16,17,[]]]},{"k":13392,"v":[[0,4,["H2656"]],[4,7,["H7706"]],[7,8,["H3588"]],[8,11,["H6663"]],[11,12,["H518"]],[12,15,["H1215"]],[15,18,["H3588"]],[18,23,["H8552","H1870"]]]},{"k":13393,"v":[[0,3,["H3198"]],[3,6,["H4480","H3374"]],[6,11,["H935"]],[11,12,["H5973"]],[12,15,["H4941"]]]},{"k":13394,"v":[[0,2,["H3808"]],[2,4,["H7451"]],[4,5,["H7227"]],[5,8,["H5771"]],[8,9,["H369","H7093"]]]},{"k":13395,"v":[[0,1,["H3588"]],[1,6,["H2254"]],[6,9,["H251"]],[9,11,["H2600"]],[11,13,["H6584"]],[13,15,["H6174"]],[15,18,["H899"]]]},{"k":13396,"v":[[0,3,["H3808"]],[3,5,["H4325"]],[5,8,["H5889"]],[8,10,["H8248"]],[10,14,["H4513"]],[14,15,["H3899"]],[15,18,["H4480","H7457"]]]},{"k":13397,"v":[[0,5,["H2220"]],[5,6,["H376"]],[6,10,["H776"]],[10,14,["H5375","H6440"]],[14,15,["H3427"]],[15,17,[]]]},{"k":13398,"v":[[0,5,["H7971","H490"]],[5,6,["H7387"]],[6,9,["H2220"]],[9,12,["H3490"]],[12,15,["H1792"]]]},{"k":13399,"v":[[0,1,["H5921","H3651"]],[1,2,["H6341"]],[2,5,["H5439"]],[5,8,["H6597"]],[8,9,["H6343"]],[9,10,["H926"]],[10,11,[]]]},{"k":13400,"v":[[0,1,["H176"]],[1,2,["H2822"]],[2,6,["H3808"]],[6,7,["H7200"]],[7,9,["H8229"]],[9,11,["H4325"]],[11,12,["H3680"]],[12,13,[]]]},{"k":13401,"v":[[0,2,["H3808"]],[2,3,["H433"]],[3,6,["H1363"]],[6,8,["H8064"]],[8,10,["H7200"]],[10,12,["H7218"]],[12,15,["H3556"]],[15,16,["H3588"]],[16,19,["H7311"]]]},{"k":13402,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,6,["H410"]],[6,7,["H3045"]],[7,10,["H8199"]],[10,11,["H1157"]],[11,14,["H6205"]]]},{"k":13403,"v":[[0,2,["H5645"]],[2,5,["H5643"]],[5,10,["H7200"]],[10,11,["H3808"]],[11,14,["H1980"]],[14,17,["H2329"]],[17,19,["H8064"]]]},{"k":13404,"v":[[0,3,["H8104"]],[3,5,["H5769"]],[5,6,["H734"]],[6,7,["H834"]],[7,8,["H205"]],[8,9,["H4962"]],[9,11,["H1869"]]]},{"k":13405,"v":[[0,1,["H834"]],[1,4,["H7059"]],[4,6,["H3808"]],[6,7,["H6256"]],[7,9,["H3247"]],[9,11,["H3332"]],[11,14,["H5104"]]]},{"k":13406,"v":[[0,2,["H559"]],[2,4,["H410"]],[4,5,["H5493"]],[5,6,["H4480"]],[6,9,["H4100"]],[9,12,["H7706"]],[12,13,["H6466"]],[13,15,[]]]},{"k":13407,"v":[[0,2,["H1931"]],[2,3,["H4390"]],[3,5,["H1004"]],[5,7,["H2896"]],[7,11,["H6098"]],[11,14,["H7563"]],[14,16,["H7368"]],[16,17,["H4480"]],[17,18,[]]]},{"k":13408,"v":[[0,2,["H6662"]],[2,3,["H7200"]],[3,7,["H8055"]],[7,10,["H5355"]],[10,14,["H3932"]]]},{"k":13409,"v":[[0,1,["H518"]],[1,3,["H7009"]],[3,5,["H3808"]],[5,7,["H3582"]],[7,10,["H3499"]],[10,14,["H784"]],[14,15,["H398"]]]},{"k":13410,"v":[[0,1,["H5532"]],[1,2,["H4994"]],[2,4,["H5973"]],[4,9,["H7999"]],[9,11,["H2896"]],[11,13,["H935"]],[13,15,[]]]},{"k":13411,"v":[[0,1,["H3947"]],[1,4,["H4994"]],[4,6,["H8451"]],[6,9,["H4480","H6310"]],[9,12,["H7760"]],[12,14,["H561"]],[14,17,["H3824"]]]},{"k":13412,"v":[[0,1,["H518"]],[1,3,["H7725"]],[3,4,["H5704"]],[4,6,["H7706"]],[6,11,["H1129"]],[11,16,["H5766"]],[16,17,["H7368"]],[17,20,["H4480","H168"]]]},{"k":13413,"v":[[0,5,["H7896"]],[5,6,["H1220"]],[6,7,["H5921"]],[7,8,["H6083"]],[8,13,["H211"]],[13,16,["H6697"]],[16,19,["H5158"]]]},{"k":13414,"v":[[0,3,["H7706"]],[3,5,["H1961"]],[5,7,["H1220"]],[7,12,["H8443"]],[12,14,["H3701"]]]},{"k":13415,"v":[[0,1,["H3588"]],[1,2,["H227"]],[2,7,["H6026"]],[7,8,["H5921"]],[8,10,["H7706"]],[10,14,["H5375"]],[14,16,["H6440"]],[16,17,["H413"]],[17,18,["H433"]]]},{"k":13416,"v":[[0,5,["H6279"]],[5,6,["H413"]],[6,11,["H8085"]],[11,16,["H7999"]],[16,18,["H5088"]]]},{"k":13417,"v":[[0,4,["H1504"]],[4,6,["H562"]],[6,11,["H6965"]],[11,16,["H216"]],[16,18,["H5050"]],[18,19,["H5921"]],[19,21,["H1870"]]]},{"k":13418,"v":[[0,1,["H3588"]],[1,5,["H8213"]],[5,9,["H559"]],[9,13,["H1466"]],[13,17,["H3467"]],[17,20,["H7807","H5869"]]]},{"k":13419,"v":[[0,3,["H4422"]],[3,5,["H336"]],[5,8,["H5355"]],[8,12,["H4422"]],[12,15,["H1252"]],[15,18,["H3709"]]]},{"k":13420,"v":[[0,2,["H347"]],[2,3,["H6030"]],[3,5,["H559"]]]},{"k":13421,"v":[[0,1,["H1571"]],[1,3,["H3117"]],[3,6,["H7879"]],[6,7,["H4805"]],[7,9,["H3027"]],[9,11,["H3513"]],[11,12,["H5921"]],[12,14,["H585"]]]},{"k":13422,"v":[[0,2,["H4310","H5414"]],[2,4,["H3045"]],[4,8,["H4672"]],[8,13,["H935"]],[13,15,["H5704"]],[15,17,["H8499"]]]},{"k":13423,"v":[[0,3,["H6186"]],[3,5,["H4941"]],[5,6,["H6440"]],[6,9,["H4390"]],[9,11,["H6310"]],[11,13,["H8433"]]]},{"k":13424,"v":[[0,3,["H3045"]],[3,5,["H4405"]],[5,9,["H6030"]],[9,12,["H995"]],[12,13,["H4100"]],[13,16,["H559"]],[16,18,[]]]},{"k":13425,"v":[[0,3,["H7378"]],[3,4,["H5978"]],[4,8,["H7230"]],[8,9,["H3581"]],[9,10,["H3808"]],[10,11,["H389"]],[11,12,["H1931"]],[12,14,["H7760"]],[14,17,[]]]},{"k":13426,"v":[[0,1,["H8033"]],[1,3,["H3477"]],[3,5,["H3198"]],[5,6,["H5973"]],[6,12,["H6403"]],[12,14,["H5331"]],[14,17,["H4480","H8199"]]]},{"k":13427,"v":[[0,1,["H2005"]],[1,3,["H1980"]],[3,4,["H6924"]],[4,8,["H369"]],[8,11,["H268"]],[11,14,["H3808"]],[14,15,["H995"]],[15,16,[]]]},{"k":13428,"v":[[0,4,["H8040"]],[4,8,["H6213"]],[8,11,["H3808"]],[11,12,["H2372"]],[12,15,["H5848"]],[15,20,["H3225"]],[20,23,["H3808"]],[23,24,["H7200"]],[24,25,[]]]},{"k":13429,"v":[[0,1,["H3588"]],[1,3,["H3045"]],[3,5,["H1870"]],[5,8,["H5978"]],[8,12,["H974"]],[12,17,["H3318"]],[17,19,["H2091"]]]},{"k":13430,"v":[[0,2,["H7272"]],[2,4,["H270"]],[4,6,["H838"]],[6,8,["H1870"]],[8,11,["H8104"]],[11,13,["H3808"]],[13,14,["H5186"]]]},{"k":13431,"v":[[0,1,["H3808"]],[1,5,["H4185"]],[5,8,["H4687"]],[8,11,["H8193"]],[11,14,["H6845"]],[14,16,["H561"]],[16,19,["H6310"]],[19,23,["H4480","H2706"]],[23,24,[]]]},{"k":13432,"v":[[0,2,["H1931"]],[2,5,["H259"]],[5,8,["H4310"]],[8,10,["H7725"]],[10,15,["H5315"]],[15,16,["H183"]],[16,20,["H6213"]]]},{"k":13433,"v":[[0,1,["H3588"]],[1,3,["H7999"]],[3,8,["H2706"]],[8,12,["H7227"]],[12,13,["H2007"]],[13,16,["H5973"]],[16,17,[]]]},{"k":13434,"v":[[0,1,["H5921","H3651"]],[1,4,["H926"]],[4,7,["H4480","H6440"]],[7,10,["H995"]],[10,13,["H6342"]],[13,14,["H4480"]],[14,15,[]]]},{"k":13435,"v":[[0,2,["H410"]],[2,6,["H7401","H3820"]],[6,9,["H7706"]],[9,10,["H926"]],[10,11,[]]]},{"k":13436,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,6,["H6789"]],[6,7,["H4480","H6440"]],[7,9,["H2822"]],[9,13,["H3680"]],[13,15,["H652"]],[15,18,["H4480","H6440"]]]},{"k":13437,"v":[[0,1,["H4069"]],[1,3,["H6256"]],[3,5,["H3808"]],[5,6,["H6845"]],[6,9,["H4480","H7706"]],[9,13,["H3045"]],[13,15,["H3808"]],[15,16,["H2372"]],[16,18,["H3117"]]]},{"k":13438,"v":[[0,2,["H5381"]],[2,4,["H1367"]],[4,8,["H1497"]],[8,9,["H5739"]],[9,11,["H7462"]],[11,12,[]]]},{"k":13439,"v":[[0,3,["H5090"]],[3,5,["H2543"]],[5,8,["H3490"]],[8,16,["H2254","H7794","H490"]]]},{"k":13440,"v":[[0,2,["H5186"]],[2,4,["H34"]],[4,8,["H4480","H1870"]],[8,10,["H6041"]],[10,13,["H776"]],[13,14,["H2244"]],[14,16,["H3162"]]]},{"k":13441,"v":[[0,1,["H2005"]],[1,4,["H6501"]],[4,7,["H4057"]],[7,10,["H3318"]],[10,13,["H6467"]],[13,15,["H7836"]],[15,18,["H2964"]],[18,20,["H6160"]],[20,22,["H3899"]],[22,28,["H5288"]]]},{"k":13442,"v":[[0,2,["H7114"]],[2,6,["H1098"]],[6,9,["H7704"]],[9,12,["H3953"]],[12,14,["H3754"]],[14,17,["H7563"]]]},{"k":13443,"v":[[0,4,["H6174"]],[4,6,["H3885"]],[6,7,["H4480","H1097"]],[7,8,["H3830"]],[8,12,["H369"]],[12,13,["H3682"]],[13,16,["H7135"]]]},{"k":13444,"v":[[0,3,["H7372"]],[3,6,["H4480","H2230"]],[6,9,["H2022"]],[9,11,["H2263"]],[11,13,["H6697"]],[13,15,["H4480","H1097"]],[15,18,["H4268"]]]},{"k":13445,"v":[[0,2,["H1497"]],[2,4,["H3490"]],[4,7,["H4480","H7699"]],[7,11,["H2254"]],[11,12,["H5921"]],[12,14,["H6041"]]]},{"k":13446,"v":[[0,5,["H1980"]],[5,6,["H6174"]],[6,7,["H1097"]],[7,8,["H3830"]],[8,12,["H5375"]],[12,14,["H6016"]],[14,17,["H7457"]]]},{"k":13447,"v":[[0,3,["H6671"]],[3,4,["H996"]],[4,6,["H7791"]],[6,8,["H1869"]],[8,10,["H3342"]],[10,13,["H6770"]]]},{"k":13448,"v":[[0,1,["H4962"]],[1,2,["H5008"]],[2,7,["H4480","H5892"]],[7,10,["H5315"]],[10,13,["H2491"]],[13,15,["H7768"]],[15,17,["H433"]],[17,18,["H7760"]],[18,19,["H3808"]],[19,20,["H8604"]],[20,22,[]]]},{"k":13449,"v":[[0,1,["H1992"]],[1,2,["H1961"]],[2,6,["H4775"]],[6,9,["H216"]],[9,11,["H5234"]],[11,12,["H3808"]],[12,14,["H1870"]],[14,16,["H3808"]],[16,17,["H3427"]],[17,20,["H5410"]],[20,21,[]]]},{"k":13450,"v":[[0,2,["H7523"]],[2,3,["H6965"]],[3,6,["H216"]],[6,7,["H6991"]],[7,9,["H6041"]],[9,11,["H34"]],[11,15,["H3915"]],[15,16,["H1961"]],[16,19,["H1590"]]]},{"k":13451,"v":[[0,2,["H5869"]],[2,6,["H5003"]],[6,7,["H8104"]],[7,10,["H5399"]],[10,11,["H559"]],[11,12,["H3808"]],[12,13,["H5869"]],[13,15,["H7789"]],[15,18,["H5643","H7760"]],[18,20,["H6440"]]]},{"k":13452,"v":[[0,3,["H2822"]],[3,6,["H2864"]],[6,7,["H1004"]],[7,11,["H2856"]],[11,16,["H3119"]],[16,18,["H3045"]],[18,19,["H3808"]],[19,21,["H216"]]]},{"k":13453,"v":[[0,1,["H3588"]],[1,3,["H1242"]],[3,8,["H3162"]],[8,12,["H6757"]],[12,13,["H3588"]],[13,15,["H5234"]],[15,21,["H1091"]],[21,26,["H6757"]]]},{"k":13454,"v":[[0,1,["H1931"]],[1,3,["H7031"]],[3,4,["H5921","H6440"]],[4,6,["H4325"]],[6,8,["H2513"]],[8,10,["H7043"]],[10,13,["H776"]],[13,15,["H6437"]],[15,16,["H3808"]],[16,18,["H1870"]],[18,21,["H3754"]]]},{"k":13455,"v":[[0,1,["H6723"]],[1,2,["H1571"]],[2,3,["H2527"]],[3,4,["H1497"]],[4,6,["H7950"]],[6,7,["H4325"]],[7,11,["H7585"]],[11,15,["H2398"]]]},{"k":13456,"v":[[0,2,["H7358"]],[2,4,["H7911"]],[4,7,["H7415"]],[7,10,["H4988"]],[10,16,["H3808"]],[16,17,["H5750"]],[17,18,["H2142"]],[18,20,["H5766"]],[20,23,["H7665"]],[23,26,["H6086"]]]},{"k":13457,"v":[[0,3,["H7462"]],[3,5,["H6135"]],[5,7,["H3205"]],[7,8,["H3808"]],[8,11,["H3808"]],[11,12,["H3190"]],[12,15,["H490"]]]},{"k":13458,"v":[[0,2,["H4900"]],[2,5,["H47"]],[5,8,["H3581"]],[8,11,["H6965"]],[11,13,["H3808"]],[13,16,["H539"]],[16,18,["H2416"]]]},{"k":13459,"v":[[0,4,["H5414"]],[4,9,["H983"]],[9,12,["H8172"]],[12,15,["H5869"]],[15,17,["H5921"]],[17,19,["H1870"]]]},{"k":13460,"v":[[0,3,["H7426"]],[3,7,["H4592"]],[7,10,["H369"]],[10,13,["H4355"]],[13,20,["H7092"]],[20,22,["H3605"]],[22,26,["H5243"]],[26,29,["H7218"]],[29,34,["H7641"]]]},{"k":13461,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,7,["H645"]],[7,8,["H4310"]],[8,13,["H3576"]],[13,15,["H7760"]],[15,17,["H4405"]],[17,18,["H408"]],[18,19,[]]]},{"k":13462,"v":[[0,2,["H6030"]],[2,3,["H1085"]],[3,5,["H7747"]],[5,7,["H559"]]]},{"k":13463,"v":[[0,1,["H4910"]],[1,3,["H6343"]],[3,5,["H5973"]],[5,8,["H6213"]],[8,9,["H7965"]],[9,13,["H4791"]]]},{"k":13464,"v":[[0,2,["H3426"]],[2,4,["H4557"]],[4,7,["H1416"]],[7,9,["H5921"]],[9,10,["H4310"]],[10,12,["H3808"]],[12,14,["H216"]],[14,15,["H6965"]]]},{"k":13465,"v":[[0,1,["H4100"]],[1,4,["H582"]],[4,6,["H6663"]],[6,7,["H5973"]],[7,8,["H410"]],[8,10,["H4100"]],[10,14,["H2135"]],[14,17,["H3205"]],[17,20,["H802"]]]},{"k":13466,"v":[[0,1,["H2005"]],[1,2,["H5704"]],[2,5,["H3394"]],[5,8,["H166"]],[8,9,["H3808"]],[9,12,["H3556"]],[12,15,["H2141","H3808"]],[15,18,["H5869"]]]},{"k":13467,"v":[[0,3,["H637","H3588"]],[3,4,["H582"]],[4,8,["H7415"]],[8,11,["H1121"]],[11,13,["H120"]],[13,17,["H8438"]]]},{"k":13468,"v":[[0,2,["H347"]],[2,3,["H6030"]],[3,5,["H559"]]]},{"k":13469,"v":[[0,1,["H4100"]],[1,4,["H5826"]],[4,8,["H3808"]],[8,9,["H3581"]],[9,11,["H3467"]],[11,14,["H2220"]],[14,17,["H3808"]],[17,18,["H5797"]]]},{"k":13470,"v":[[0,1,["H4100"]],[1,4,["H3289"]],[4,8,["H3808"]],[8,9,["H2451"]],[9,14,["H7230"]],[14,15,["H3045"]],[15,17,["H8454"]],[17,20,[]]]},{"k":13471,"v":[[0,1,["H854"]],[1,2,["H4310"]],[2,5,["H5046"]],[5,6,["H4405"]],[6,8,["H4310"]],[8,9,["H5397"]],[9,10,["H3318"]],[10,11,["H4480"]],[11,12,[]]]},{"k":13472,"v":[[0,1,["H7496"]],[1,4,["H2342"]],[4,6,["H4480","H8478"]],[6,8,["H4325"]],[8,11,["H7931"]],[11,12,[]]]},{"k":13473,"v":[[0,1,["H7585"]],[1,3,["H6174"]],[3,4,["H5048"]],[4,7,["H11"]],[7,9,["H369"]],[9,10,["H3682"]]]},{"k":13474,"v":[[0,3,["H5186"]],[3,5,["H6828"]],[5,6,["H5921"]],[6,9,["H8414"]],[9,11,["H8518"]],[11,13,["H776"]],[13,14,["H5921"]],[14,15,["H1099"]]]},{"k":13475,"v":[[0,3,["H6887"]],[3,5,["H4325"]],[5,9,["H5645"]],[9,12,["H6051"]],[12,15,["H1234","H3808"]],[15,16,["H8478"]],[16,17,[]]]},{"k":13476,"v":[[0,3,["H270"]],[3,5,["H6440"]],[5,8,["H3678"]],[8,10,["H6576"]],[10,12,["H6051"]],[12,13,["H5921"]],[13,14,[]]]},{"k":13477,"v":[[0,3,["H2328","H5921"]],[3,5,["H6440","H4325"]],[5,7,["H2706"]],[7,8,["H5704"]],[8,10,["H216"]],[10,12,["H2822"]],[12,16,["H8503"]]]},{"k":13478,"v":[[0,2,["H5982"]],[2,4,["H8064"]],[4,5,["H7322"]],[5,8,["H8539"]],[8,11,["H4480","H1606"]]]},{"k":13479,"v":[[0,2,["H7280"]],[2,4,["H3220"]],[4,7,["H3581"]],[7,11,["H8394"]],[11,14,["H4272"]],[14,16,["H7293"]]]},{"k":13480,"v":[[0,3,["H7307"]],[3,6,["H8235"]],[6,8,["H8064"]],[8,10,["H3027"]],[10,12,["H2490"]],[12,14,["H1281"]],[14,15,["H5175"]]]},{"k":13481,"v":[[0,1,["H2005"]],[1,2,["H428"]],[2,4,["H7098"]],[4,7,["H1870"]],[7,9,["H4100"]],[9,10,["H8102"]],[10,12,["H1697"]],[12,14,["H8085"]],[14,19,["H7482"]],[19,22,["H1369"]],[22,23,["H4310"]],[23,25,["H995"]]]},{"k":13482,"v":[[0,1,["H3254"]],[1,2,["H347"]],[2,3,["H5375"]],[3,5,["H4912"]],[5,7,["H559"]]]},{"k":13483,"v":[[0,2,["H410"]],[2,3,["H2416"]],[3,7,["H5493"]],[7,9,["H4941"]],[9,12,["H7706"]],[12,15,["H4843"]],[15,17,["H5315"]]]},{"k":13484,"v":[[0,1,["H3605"]],[1,3,["H5750"]],[3,5,["H5397"]],[5,11,["H7307"]],[11,13,["H433"]],[13,17,["H639"]]]},{"k":13485,"v":[[0,2,["H8193"]],[2,4,["H518"]],[4,5,["H1696"]],[5,6,["H5766"]],[6,7,["H518"]],[7,9,["H3956"]],[9,10,["H1897"]],[10,11,["H7423"]]]},{"k":13486,"v":[[0,2,["H2486"]],[2,3,["H518"]],[3,6,["H6663"]],[6,8,["H5704"]],[8,10,["H1478"]],[10,13,["H3808"]],[13,14,["H5493"]],[14,16,["H8538"]],[16,17,["H4480"]],[17,18,[]]]},{"k":13487,"v":[[0,2,["H6666"]],[2,5,["H2388"]],[5,8,["H3808"]],[8,11,["H7503"]],[11,13,["H3824"]],[13,15,["H3808"]],[15,16,["H2778"]],[16,22,["H4480","H3117"]]]},{"k":13488,"v":[[0,3,["H341"]],[3,4,["H1961"]],[4,7,["H7563"]],[7,13,["H6965"]],[13,17,["H5767"]]]},{"k":13489,"v":[[0,1,["H3588"]],[1,2,["H4100"]],[2,5,["H8615"]],[5,8,["H2611"]],[8,9,["H3588"]],[9,12,["H1214"]],[12,13,["H3588"]],[13,14,["H433"]],[14,16,["H7953"]],[16,18,["H5315"]]]},{"k":13490,"v":[[0,2,["H410"]],[2,3,["H8085"]],[3,5,["H6818"]],[5,6,["H3588"]],[6,7,["H6869"]],[7,8,["H935"]],[8,9,["H5921"]],[9,10,[]]]},{"k":13491,"v":[[0,4,["H6026"]],[4,5,["H5921"]],[5,7,["H7706"]],[7,10,["H3605","H6256"]],[10,12,["H7121"]],[12,13,["H433"]]]},{"k":13492,"v":[[0,3,["H3384"]],[3,7,["H3027"]],[7,9,["H410"]],[9,11,["H834"]],[11,13,["H5973"]],[13,15,["H7706"]],[15,18,["H3808"]],[18,19,["H3582"]]]},{"k":13493,"v":[[0,1,["H2005"]],[1,2,["H3605"]],[2,4,["H859"]],[4,6,["H2372"]],[6,8,["H4100"]],[8,12,["H2088"]],[12,13,["H1892"]],[13,14,["H1891"]]]},{"k":13494,"v":[[0,1,["H2088"]],[1,4,["H2506"]],[4,7,["H7563"]],[7,8,["H120"]],[8,9,["H5973"]],[9,10,["H410"]],[10,13,["H5159"]],[13,15,["H6184"]],[15,19,["H3947"]],[19,22,["H4480","H7706"]]]},{"k":13495,"v":[[0,1,["H518"]],[1,3,["H1121"]],[3,5,["H7235"]],[5,8,["H3926"]],[8,10,["H2719"]],[10,13,["H6631"]],[13,15,["H3808"]],[15,17,["H7646"]],[17,19,["H3899"]]]},{"k":13496,"v":[[0,3,["H8300"]],[3,8,["H6912"]],[8,10,["H4194"]],[10,13,["H490"]],[13,15,["H3808"]],[15,16,["H1058"]]]},{"k":13497,"v":[[0,1,["H518"]],[1,4,["H6651"]],[4,5,["H3701"]],[5,8,["H6083"]],[8,10,["H3559"]],[10,11,["H4403"]],[11,14,["H2563"]]]},{"k":13498,"v":[[0,3,["H3559"]],[3,7,["H6662"]],[7,11,["H3847"]],[11,14,["H5355"]],[14,16,["H2505"]],[16,18,["H3701"]]]},{"k":13499,"v":[[0,2,["H1129"]],[2,4,["H1004"]],[4,7,["H6211"]],[7,11,["H5521"]],[11,14,["H5341"]],[14,15,["H6213"]]]},{"k":13500,"v":[[0,3,["H6223"]],[3,6,["H7901"]],[6,10,["H3808"]],[10,12,["H622"]],[12,14,["H6491"]],[14,16,["H5869"]],[16,20,["H369"]]]},{"k":13501,"v":[[0,1,["H1091"]],[1,3,["H5381"]],[3,7,["H4325"]],[7,9,["H5492"]],[9,12,["H1589"]],[12,15,["H3915"]]]},{"k":13502,"v":[[0,3,["H6921"]],[3,6,["H5375"]],[6,9,["H1980"]],[9,14,["H8175"]],[14,19,["H4480","H4725"]]]},{"k":13503,"v":[[0,4,["H7993"]],[4,5,["H5921"]],[5,8,["H3808"]],[8,9,["H2550"]],[9,13,["H1272","H1272"]],[13,17,["H4480","H3027"]]]},{"k":13504,"v":[[0,3,["H5606"]],[3,5,["H3709"]],[5,6,["H5921"]],[6,10,["H8319","H5921"]],[10,15,["H4480","H4725"]]]},{"k":13505,"v":[[0,1,["H3588"]],[1,3,["H3426"]],[3,5,["H4161"]],[5,8,["H3701"]],[8,11,["H4725"]],[11,13,["H2091"]],[13,16,["H2212"]],[16,17,[]]]},{"k":13506,"v":[[0,1,["H1270"]],[1,3,["H3947"]],[3,7,["H4480","H6083"]],[7,9,["H5154"]],[9,11,["H6694"]],[11,15,["H68"]]]},{"k":13507,"v":[[0,2,["H7760"]],[2,4,["H7093"]],[4,6,["H2822"]],[6,9,["H2713","H1931"]],[9,10,["H3605"]],[10,11,["H8503"]],[11,13,["H68"]],[13,15,["H652"]],[15,20,["H6757"]]]},{"k":13508,"v":[[0,2,["H5158"]],[2,4,["H6555"]],[4,5,["H4480","H5973"]],[5,7,["H1481"]],[7,11,["H7911"]],[11,12,["H4480"]],[12,14,["H7272"]],[14,18,["H1809"]],[18,22,["H5128"]],[22,24,["H4480","H582"]]]},{"k":13509,"v":[[0,4,["H776"]],[4,6,["H4480"]],[6,8,["H3318"]],[8,9,["H3899"]],[9,11,["H8478"]],[11,15,["H2015"]],[15,18,["H3644"]],[18,19,["H784"]]]},{"k":13510,"v":[[0,2,["H68"]],[2,7,["H4725"]],[7,9,["H5601"]],[9,13,["H6083"]],[13,15,["H2091"]]]},{"k":13511,"v":[[0,4,["H5410"]],[4,6,["H3808"]],[6,7,["H5861"]],[7,8,["H3045"]],[8,12,["H344"]],[12,13,["H5869"]],[13,15,["H3808"]],[15,16,["H7805"]]]},{"k":13512,"v":[[0,2,["H7830"]],[2,3,["H1121"]],[3,5,["H3808"]],[5,6,["H1869"]],[6,8,["H3808"]],[8,11,["H7826"]],[11,12,["H5710"]],[12,13,["H5921"]],[13,14,[]]]},{"k":13513,"v":[[0,3,["H7971"]],[3,5,["H3027"]],[5,8,["H2496"]],[8,10,["H2015"]],[10,12,["H2022"]],[12,15,["H4480","H8328"]]]},{"k":13514,"v":[[0,3,["H1234"]],[3,4,["H2975"]],[4,7,["H6697"]],[7,10,["H5869"]],[10,11,["H7200"]],[11,12,["H3605"]],[12,14,["H3366"]]]},{"k":13515,"v":[[0,2,["H2280"]],[2,4,["H5104"]],[4,6,["H4480","H1065"]],[6,12,["H8587"]],[12,15,["H3318"]],[15,17,["H216"]]]},{"k":13516,"v":[[0,2,["H4480","H370"]],[2,4,["H2451"]],[4,6,["H4672"]],[6,8,["H335","H2088"]],[8,11,["H4725"]],[11,13,["H998"]]]},{"k":13517,"v":[[0,1,["H582"]],[1,2,["H3045"]],[2,3,["H3808"]],[3,5,["H6187"]],[5,7,["H3808"]],[7,10,["H4672"]],[10,13,["H776"]],[13,16,["H2416"]]]},{"k":13518,"v":[[0,2,["H8415"]],[2,3,["H559"]],[3,4,["H1931"]],[4,6,["H3808"]],[6,11,["H3220"]],[11,12,["H559"]],[12,15,["H369"]],[15,16,["H5978"]],[16,17,[]]]},{"k":13519,"v":[[0,2,["H3808"]],[2,4,["H5414"]],[4,6,["H2091","H5462","H8478"]],[6,7,["H3808"]],[7,9,["H3701"]],[9,11,["H8254"]],[11,14,["H4242"]],[14,15,[]]]},{"k":13520,"v":[[0,2,["H3808"]],[2,4,["H5541"]],[4,7,["H3800"]],[7,9,["H211"]],[9,12,["H3368"]],[12,13,["H7718"]],[13,16,["H5601"]]]},{"k":13521,"v":[[0,2,["H2091"]],[2,5,["H2137"]],[5,6,["H3808"]],[6,7,["H6186"]],[7,11,["H8545"]],[11,18,["H3627"]],[18,21,["H6337"]]]},{"k":13522,"v":[[0,1,["H3808"]],[1,5,["H2142"]],[5,7,["H7215"]],[7,10,["H1378"]],[10,13,["H4901"]],[13,15,["H2451"]],[15,18,["H4480","H6443"]]]},{"k":13523,"v":[[0,2,["H6357"]],[2,4,["H3568"]],[4,6,["H3808"]],[6,7,["H6186"]],[7,9,["H3808"]],[9,13,["H5541"]],[13,15,["H2889"]],[15,16,["H3800"]]]},{"k":13524,"v":[[0,1,["H4480","H370"]],[1,3,["H935"]],[3,4,["H2451"]],[4,6,["H335","H2088"]],[6,9,["H4725"]],[9,11,["H998"]]]},{"k":13525,"v":[[0,4,["H5956"]],[4,7,["H4480","H5869"]],[7,9,["H3605"]],[9,10,["H2416"]],[10,13,["H5641"]],[13,16,["H4480","H5775"]],[16,19,["H8064"]]]},{"k":13526,"v":[[0,1,["H11"]],[1,3,["H4194"]],[3,4,["H559"]],[4,7,["H8085"]],[7,9,["H8088"]],[9,13,["H241"]]]},{"k":13527,"v":[[0,1,["H430"]],[1,2,["H995"]],[2,4,["H1870"]],[4,7,["H1931"]],[7,8,["H3045","(H853)"]],[8,10,["H4725"]],[10,11,[]]]},{"k":13528,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,3,["H5027"]],[3,6,["H7098"]],[6,9,["H776"]],[9,11,["H7200"]],[11,12,["H8478"]],[12,14,["H3605"]],[14,15,["H8064"]]]},{"k":13529,"v":[[0,2,["H6213"]],[2,4,["H4948"]],[4,7,["H7307"]],[7,10,["H8505"]],[10,12,["H4325"]],[12,14,["H4060"]]]},{"k":13530,"v":[[0,3,["H6213"]],[3,5,["H2706"]],[5,8,["H4306"]],[8,11,["H1870"]],[11,14,["H2385"]],[14,17,["H6963"]]]},{"k":13531,"v":[[0,1,["H227"]],[1,4,["H7200"]],[4,7,["H5608"]],[7,10,["H3559"]],[10,12,["H1571"]],[12,16,["H2713"]]]},{"k":13532,"v":[[0,3,["H120"]],[3,5,["H559"]],[5,6,["H2005"]],[6,8,["H3374"]],[8,11,["H136"]],[11,12,["H1931"]],[12,14,["H2451"]],[14,17,["H5493"]],[17,19,["H4480","H7451"]],[19,21,["H998"]]]},{"k":13533,"v":[[0,1,["H3254"]],[1,2,["H347"]],[2,3,["H5375"]],[3,5,["H4912"]],[5,7,["H559"]]]},{"k":13534,"v":[[0,2,["H4310"]],[2,4,["H5414"]],[4,7,["H3391"]],[7,8,["H6924"]],[8,12,["H3117"]],[12,14,["H433"]],[14,15,["H8104"]],[15,16,[]]]},{"k":13535,"v":[[0,3,["H5216"]],[3,4,["H1984"]],[4,5,["H5921"]],[5,7,["H7218"]],[7,12,["H216"]],[12,14,["H1980"]],[14,16,["H2822"]]]},{"k":13536,"v":[[0,1,["H834"]],[1,3,["H1961"]],[3,6,["H3117"]],[6,9,["H2779"]],[9,12,["H5475"]],[12,14,["H433"]],[14,16,["H5921"]],[16,18,["H168"]]]},{"k":13537,"v":[[0,3,["H7706"]],[3,5,["H5750"]],[5,6,["H5978"]],[6,10,["H5288"]],[10,12,["H5439"]],[12,13,[]]]},{"k":13538,"v":[[0,3,["H7364"]],[3,5,["H1978"]],[5,7,["H2529"]],[7,10,["H6697"]],[10,13,["H6694","H5978"]],[13,14,["H6388"]],[14,16,["H8081"]]]},{"k":13539,"v":[[0,4,["H3318"]],[4,7,["H8179"]],[7,8,["H5921"]],[8,10,["H7176"]],[10,13,["H3559"]],[13,15,["H4186"]],[15,18,["H7339"]]]},{"k":13540,"v":[[0,3,["H5288"]],[3,4,["H7200"]],[4,8,["H2244"]],[8,11,["H3453"]],[11,12,["H6965"]],[12,15,["H5975"]]]},{"k":13541,"v":[[0,2,["H8269"]],[2,3,["H6113"]],[3,4,["H4405"]],[4,6,["H7760"]],[6,8,["H3709"]],[8,11,["H6310"]]]},{"k":13542,"v":[[0,2,["H5057"]],[2,3,["H2244"]],[3,5,["H6963"]],[5,8,["H3956"]],[8,9,["H1692"]],[9,15,["H2441"]]]},{"k":13543,"v":[[0,1,["H3588"]],[1,3,["H241"]],[3,4,["H8085"]],[4,8,["H833"]],[8,13,["H5869"]],[13,14,["H7200"]],[14,18,["H5749"]],[18,20,[]]]},{"k":13544,"v":[[0,1,["H3588"]],[1,3,["H4422"]],[3,5,["H6041"]],[5,7,["H7768"]],[7,10,["H3490"]],[10,15,["H3808"]],[15,17,["H5826"]],[17,18,[]]]},{"k":13545,"v":[[0,2,["H1293"]],[2,9,["H6"]],[9,10,["H935"]],[10,11,["H5921"]],[11,17,["H490"]],[17,18,["H3820"]],[18,22,["H7442"]]]},{"k":13546,"v":[[0,3,["H3847"]],[3,4,["H6664"]],[4,7,["H3847"]],[7,10,["H4941"]],[10,14,["H4598"]],[14,17,["H6797"]]]},{"k":13547,"v":[[0,2,["H1961"]],[2,3,["H5869"]],[3,6,["H5787"]],[6,8,["H7272"]],[8,10,["H589"]],[10,13,["H6455"]]]},{"k":13548,"v":[[0,1,["H595"]],[1,4,["H1"]],[4,7,["H34"]],[7,10,["H7379"]],[10,13,["H3045"]],[13,14,["H3808"]],[14,17,["H2713"]]]},{"k":13549,"v":[[0,3,["H7665"]],[3,5,["H4973"]],[5,8,["H5767"]],[8,10,["H7993"]],[10,12,["H2964"]],[12,16,["H4480","H8127"]]]},{"k":13550,"v":[[0,3,["H559"]],[3,6,["H1478"]],[6,7,["H5973"]],[7,9,["H7064"]],[9,13,["H7235"]],[13,15,["H3117"]],[15,18,["H2344"]]]},{"k":13551,"v":[[0,2,["H8328"]],[2,5,["H6605"]],[5,6,["H413"]],[6,8,["H4325"]],[8,11,["H2919"]],[11,14,["H3885"]],[14,17,["H7105"]]]},{"k":13552,"v":[[0,2,["H3519"]],[2,4,["H2319"]],[4,5,["H5978"]],[5,9,["H7198"]],[9,11,["H2498"]],[11,14,["H3027"]]]},{"k":13553,"v":[[0,5,["H8085"]],[5,7,["H3176"]],[7,10,["H1826"]],[10,11,["H3926"]],[11,13,["H6098"]]]},{"k":13554,"v":[[0,1,["H310"]],[1,3,["H1697"]],[3,7,["H8138","H3808"]],[7,10,["H4405"]],[10,11,["H5197"]],[11,12,["H5921"]],[12,13,[]]]},{"k":13555,"v":[[0,3,["H3176"]],[3,9,["H4306"]],[9,12,["H6473"]],[12,14,["H6310"]],[14,20,["H4456"]]]},{"k":13556,"v":[[0,3,["H7832"]],[3,4,["H413"]],[4,7,["H539"]],[7,9,["H3808"]],[9,12,["H216"]],[12,15,["H6440"]],[15,19,["H5307","H3808"]]]},{"k":13557,"v":[[0,3,["H977"]],[3,5,["H1870"]],[5,7,["H3427"]],[7,8,["H7218"]],[8,10,["H7931"]],[10,13,["H4428"]],[13,16,["H1416"]],[16,17,["H834"]],[17,20,["H5162"]],[20,22,["H57"]]]},{"k":13558,"v":[[0,2,["H6258"]],[2,6,["H6810","H3117"]],[6,7,["H4480"]],[7,12,["H7832","H5921"]],[12,13,["H834"]],[13,14,["H1"]],[14,18,["H3988"]],[18,21,["H7896"]],[21,22,["H5973"]],[22,24,["H3611"]],[24,27,["H6629"]]]},{"k":13559,"v":[[0,1,["H1571"]],[1,2,["H4100"]],[2,5,["H3581"]],[5,8,["H3027"]],[8,12,["H5921"]],[12,14,["H3624"]],[14,16,["H6"]]]},{"k":13560,"v":[[0,2,["H2639"]],[2,4,["H3720"]],[4,7,["H1565"]],[7,8,["H6207"]],[8,11,["H6723"]],[11,14,["H570"]],[14,15,["H7722"]],[15,17,["H4875"]]]},{"k":13561,"v":[[0,3,["H6998"]],[3,4,["H4408"]],[4,5,["H5921"]],[5,7,["H7880"]],[7,9,["H7574"]],[9,10,["H8328"]],[10,13,["H3899"]]]},{"k":13562,"v":[[0,4,["H1644"]],[4,5,["H4480"]],[5,6,["H1460"]],[6,9,["H7321"]],[9,10,["H5921"]],[10,15,["H1590"]]]},{"k":13563,"v":[[0,2,["H7931"]],[2,5,["H6178"]],[5,8,["H5158"]],[8,10,["H2356"]],[10,13,["H6083"]],[13,17,["H3710"]]]},{"k":13564,"v":[[0,1,["H996"]],[1,3,["H7880"]],[3,5,["H5101"]],[5,6,["H8478"]],[6,8,["H2738"]],[8,12,["H5596"]]]},{"k":13565,"v":[[0,3,["H1121"]],[3,5,["H5036"]],[5,6,["H1571"]],[6,7,["H1121"]],[7,10,["H1097","H8034"]],[10,13,["H5217"]],[13,14,["H4480"]],[14,16,["H776"]]]},{"k":13566,"v":[[0,2,["H6258"]],[2,3,["H1961"]],[3,6,["H5058"]],[6,9,["H1961"]],[9,11,["H4405"]]]},{"k":13567,"v":[[0,2,["H8581"]],[2,6,["H7368"]],[6,7,["H4480"]],[7,10,["H2820"]],[10,11,["H3808"]],[11,13,["H7536"]],[13,16,["H4480","H6440"]]]},{"k":13568,"v":[[0,1,["H3588"]],[1,4,["H6605"]],[4,6,["H3499"]],[6,8,["H6031"]],[8,14,["H7971"]],[14,16,["H7448"]],[16,17,["H4480","H6440"]],[17,18,[]]]},{"k":13569,"v":[[0,1,["H5921"]],[1,3,["H3225"]],[3,5,["H6965"]],[5,7,["H6526"]],[7,10,["H7971"]],[10,12,["H7272"]],[12,16,["H5549"]],[16,17,["H5921"]],[17,20,["H734"]],[20,23,["H343"]]]},{"k":13570,"v":[[0,2,["H5420"]],[2,4,["H5410"]],[4,7,["H3276"]],[7,9,["H1942"]],[9,12,["H3808"]],[12,13,["H5826"]]]},{"k":13571,"v":[[0,2,["H857"]],[2,7,["H7342"]],[7,9,["H6556"]],[9,12,["H8478"]],[12,14,["H7722"]],[14,17,["H1556"]],[17,19,[]]]},{"k":13572,"v":[[0,1,["H1091"]],[1,3,["H2015"]],[3,4,["H5921"]],[4,7,["H7291"]],[7,9,["H5082"]],[9,12,["H7307"]],[12,15,["H3444"]],[15,17,["H5674"]],[17,20,["H5645"]]]},{"k":13573,"v":[[0,2,["H6258"]],[2,4,["H5315"]],[4,7,["H8210"]],[7,8,["H5921"]],[8,11,["H3117"]],[11,13,["H6040"]],[13,17,["H270"]],[17,18,[]]]},{"k":13574,"v":[[0,2,["H6106"]],[2,4,["H5365"]],[4,5,["H4480","H5921"]],[5,10,["H3915"]],[10,13,["H6207"]],[13,16,["H7901","H3808"]]]},{"k":13575,"v":[[0,3,["H7230"]],[3,4,["H3581"]],[4,10,["H3830"]],[10,11,["H2664"]],[11,15,["H247"]],[15,18,["H6310"]],[18,21,["H3801"]]]},{"k":13576,"v":[[0,3,["H3384"]],[3,7,["H2563"]],[7,11,["H4911"]],[11,13,["H6083"]],[13,15,["H665"]]]},{"k":13577,"v":[[0,2,["H7768"]],[2,3,["H413"]],[3,8,["H3808"]],[8,9,["H6030"]],[9,13,["H5975"]],[13,16,["H995"]],[16,18,[]]]},{"k":13578,"v":[[0,3,["H2015"]],[3,4,["H393"]],[4,9,["H6108"]],[9,10,["H3027"]],[10,14,["H7852"]],[14,15,[]]]},{"k":13579,"v":[[0,4,["H5375"]],[4,5,["H413"]],[5,7,["H7307"]],[7,12,["H7392"]],[12,16,["H4127"]],[16,18,["H7738"]]]},{"k":13580,"v":[[0,1,["H3588"]],[1,3,["H3045"]],[3,7,["H7725"]],[7,10,["H4194"]],[10,14,["H1004"]],[14,15,["H4150"]],[15,17,["H3605"]],[17,18,["H2416"]]]},{"k":13581,"v":[[0,1,["H389"]],[1,4,["H3808"]],[4,6,["H7971"]],[6,8,["H3027"]],[8,11,["H1164"]],[11,12,["H518"]],[12,14,["H7769"]],[14,17,["H6365"]]]},{"k":13582,"v":[[0,2,["H3808"]],[2,4,["H1058"]],[4,10,["H7186","H3117"]],[10,14,["H5315"]],[14,15,["H5701"]],[15,18,["H34"]]]},{"k":13583,"v":[[0,1,["H3588"]],[1,4,["H6960"]],[4,5,["H2896"]],[5,7,["H7451"]],[7,8,["H935"]],[8,14,["H3176"]],[14,16,["H216"]],[16,18,["H935"]],[18,19,["H652"]]]},{"k":13584,"v":[[0,2,["H4578"]],[2,3,["H7570"]],[3,5,["H1826"]],[5,6,["H3808"]],[6,8,["H3117"]],[8,10,["H6040"]],[10,11,["H6923"]],[11,12,[]]]},{"k":13585,"v":[[0,2,["H1980"]],[2,3,["H6937"]],[3,4,["H3808"]],[4,6,["H2535"]],[6,9,["H6965"]],[9,12,["H7768"]],[12,15,["H6951"]]]},{"k":13586,"v":[[0,2,["H1961"]],[2,4,["H251"]],[4,6,["H8577"]],[6,9,["H7453"]],[9,11,["H1323","H3284"]]]},{"k":13587,"v":[[0,2,["H5785"]],[2,4,["H7835"]],[4,5,["H4480","H5921"]],[5,9,["H6106"]],[9,11,["H2787"]],[11,12,["H4480"]],[12,13,["H2721"]]]},{"k":13588,"v":[[0,2,["H3658"]],[2,4,["H1961"]],[4,7,["H60"]],[7,10,["H5748"]],[10,13,["H6963"]],[13,17,["H1058"]]]},{"k":13589,"v":[[0,2,["H3772"]],[2,4,["H1285"]],[4,7,["H5869"]],[7,8,["H4100"]],[8,12,["H995"]],[12,13,["H5921"]],[13,15,["H1330"]]]},{"k":13590,"v":[[0,2,["H4100"]],[2,3,["H2506"]],[3,5,["H433"]],[5,9,["H4480","H4605"]],[9,12,["H5159"]],[12,15,["H7706"]],[15,18,["H4480","H4791"]]]},{"k":13591,"v":[[0,2,["H3808"]],[2,3,["H343"]],[3,6,["H5767"]],[6,9,["H5235"]],[9,13,["H6466"]],[13,15,["H205"]]]},{"k":13592,"v":[[0,2,["H3808"]],[2,3,["H1931"]],[3,4,["H7200"]],[4,6,["H1870"]],[6,8,["H5608"]],[8,9,["H3605"]],[9,11,["H6806"]]]},{"k":13593,"v":[[0,1,["H518"]],[1,4,["H1980"]],[4,5,["H5973"]],[5,6,["H7723"]],[6,10,["H7272"]],[10,12,["H2363"]],[12,13,["H5921"]],[13,14,["H4820"]]]},{"k":13594,"v":[[0,4,["H8254"]],[4,7,["H6664"]],[7,8,["H3976"]],[8,10,["H433"]],[10,12,["H3045"]],[12,14,["H8538"]]]},{"k":13595,"v":[[0,1,["H518"]],[1,3,["H838"]],[3,5,["H5186"]],[5,7,["H4480"]],[7,9,["H1870"]],[9,12,["H3820"]],[12,13,["H1980"]],[13,14,["H310"]],[14,16,["H5869"]],[16,20,["H3971"]],[20,22,["H1692"]],[22,25,["H3709"]]]},{"k":13596,"v":[[0,4,["H2232"]],[4,7,["H312"]],[7,8,["H398"]],[8,12,["H6631"]],[12,15,["H8327"]]]},{"k":13597,"v":[[0,1,["H518"]],[1,3,["H3820"]],[3,6,["H6601"]],[6,7,["H5921"]],[7,9,["H802"]],[9,15,["H693"]],[15,16,["H5921"]],[16,18,["H7453"]],[18,19,["H6607"]]]},{"k":13598,"v":[[0,4,["H802"]],[4,5,["H2912"]],[5,7,["H312"]],[7,10,["H312"]],[10,12,["H3766"]],[12,13,["H5921"]],[13,14,[]]]},{"k":13599,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,6,["H2154"]],[6,8,["H1931"]],[8,11,["H5771"]],[11,17,["H6414"]]]},{"k":13600,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,5,["H784"]],[5,7,["H398"]],[7,8,["H5704"]],[8,9,["H11"]],[9,13,["H8327"]],[13,14,["H3605"]],[14,16,["H8393"]]]},{"k":13601,"v":[[0,1,["H518"]],[1,4,["H3988"]],[4,6,["H4941"]],[6,9,["H5650"]],[9,13,["H519"]],[13,16,["H7378"]],[16,17,["H5978"]],[17,18,[]]]},{"k":13602,"v":[[0,1,["H4100"]],[1,5,["H6213"]],[5,6,["H3588"]],[6,7,["H410"]],[7,9,["H6965"]],[9,11,["H3588"]],[11,13,["H6485"]],[13,14,["H4100"]],[14,17,["H7725"]],[17,18,[]]]},{"k":13603,"v":[[0,2,["H3808"]],[2,5,["H6213"]],[5,9,["H990"]],[9,10,["H6213"]],[10,15,["H259"]],[15,16,["H3559"]],[16,20,["H7358"]]]},{"k":13604,"v":[[0,1,["H518"]],[1,4,["H4513"]],[4,6,["H1800"]],[6,9,["H4480","H2656"]],[9,14,["H5869"]],[14,17,["H490"]],[17,19,["H3615"]]]},{"k":13605,"v":[[0,3,["H398"]],[3,5,["H6595"]],[5,7,["H905"]],[7,10,["H3490"]],[10,12,["H3808"]],[12,13,["H398"]],[13,14,["H4480"]]]},{"k":13606,"v":[[0,1,["H3588"]],[1,4,["H4480","H5271"]],[4,8,["H1431"]],[8,14,["H1"]],[14,18,["H5148"]],[18,22,["H517"]],[22,23,["H4480","H990"]]]},{"k":13607,"v":[[0,1,["H518"]],[1,4,["H7200"]],[4,6,["H6"]],[6,8,["H4480","H1097"]],[8,10,["H3830"]],[10,13,["H34"]],[13,14,["H369"]],[14,15,["H3682"]]]},{"k":13608,"v":[[0,1,["H518"]],[1,3,["H2504"]],[3,5,["H3808"]],[5,6,["H1288"]],[6,13,["H2552"]],[13,16,["H4480","H1488"]],[16,19,["H3532"]]]},{"k":13609,"v":[[0,1,["H518"]],[1,5,["H5130"]],[5,7,["H3027"]],[7,8,["H5921"]],[8,10,["H3490"]],[10,11,["H3588"]],[11,13,["H7200"]],[13,15,["H5833"]],[15,18,["H8179"]]]},{"k":13610,"v":[[0,4,["H3802"]],[4,5,["H5307"]],[5,9,["H4480","H7929"]],[9,12,["H248"]],[12,14,["H7665"]],[14,17,["H4480","H7070"]]]},{"k":13611,"v":[[0,1,["H3588"]],[1,2,["H343"]],[2,4,["H410"]],[4,7,["H6343"]],[7,8,["H413"]],[8,15,["H4480","H7613"]],[15,17,["H3201"]],[17,18,["H3808"]],[18,19,[]]]},{"k":13612,"v":[[0,1,["H518"]],[1,4,["H7760"]],[4,5,["H2091"]],[5,7,["H3689"]],[7,10,["H559"]],[10,14,["H3800"]],[14,18,["H4009"]]]},{"k":13613,"v":[[0,1,["H518"]],[1,3,["H8055"]],[3,4,["H3588"]],[4,6,["H2428"]],[6,8,["H7227"]],[8,10,["H3588"]],[10,12,["H3027"]],[12,14,["H4672"]],[14,15,["H3524"]]]},{"k":13614,"v":[[0,1,["H518"]],[1,3,["H7200"]],[3,5,["H216"]],[5,6,["H3588"]],[6,8,["H1984"]],[8,11,["H3394"]],[11,12,["H1980"]],[12,14,["H3368"]]]},{"k":13615,"v":[[0,3,["H3820"]],[3,6,["H5643"]],[6,7,["H6601"]],[7,10,["H6310"]],[10,12,["H5401"]],[12,14,["H3027"]]]},{"k":13616,"v":[[0,1,["H1931"]],[1,2,["H1571"]],[2,5,["H5771"]],[5,11,["H6416"]],[11,12,["H3588"]],[12,16,["H3584"]],[16,18,["H410"]],[18,21,["H4480","H4605"]]]},{"k":13617,"v":[[0,1,["H518"]],[1,3,["H8055"]],[3,6,["H6365"]],[6,10,["H8130"]],[10,15,["H5782"]],[15,16,["H3588"]],[16,17,["H7451"]],[17,18,["H4672"]],[18,19,[]]]},{"k":13618,"v":[[0,1,["H3808"]],[1,4,["H5414"]],[4,6,["H2441"]],[6,8,["H2398"]],[8,10,["H7592"]],[10,12,["H423"]],[12,15,["H5315"]]]},{"k":13619,"v":[[0,1,["H518"]],[1,3,["H4962"]],[3,6,["H168"]],[6,7,["H559"]],[7,8,["H3808"]],[8,10,["H4310"]],[10,12,["H5414"]],[12,15,["H4480","H1320"]],[15,17,["H3808"]],[17,19,["H7646"]]]},{"k":13620,"v":[[0,2,["H1616"]],[2,4,["H3808"]],[4,5,["H3885"]],[5,8,["H2351"]],[8,11,["H6605"]],[11,13,["H1817"]],[13,16,["H734"]]]},{"k":13621,"v":[[0,1,["H518"]],[1,3,["H3680"]],[3,5,["H6588"]],[5,7,["H121"]],[7,9,["H2934"]],[9,11,["H5771"]],[11,14,["H2243"]]]},{"k":13622,"v":[[0,3,["H6206"]],[3,5,["H7227"]],[5,6,["H1995"]],[6,10,["H937"]],[10,12,["H4940"]],[12,13,["H2865"]],[13,18,["H1826"]],[18,22,["H3318","H3808"]],[22,25,["H6607"]]]},{"k":13623,"v":[[0,2,["H4310"]],[2,4,["H5414"]],[4,5,["H8085"]],[5,7,["H2005"]],[7,9,["H8420"]],[9,13,["H7706"]],[13,15,["H6030"]],[15,20,["H376","H7379"]],[20,22,["H3789"]],[22,24,["H5612"]]]},{"k":13624,"v":[[0,1,["H518"]],[1,4,["H5375"]],[4,6,["H5921"]],[6,8,["H7926"]],[8,10,["H6029"]],[10,14,["H5850"]],[14,16,[]]]},{"k":13625,"v":[[0,3,["H5046"]],[3,7,["H4557"]],[7,10,["H6806"]],[10,11,["H3644"]],[11,13,["H5057"]],[13,18,["H7126"]],[18,19,[]]]},{"k":13626,"v":[[0,1,["H518"]],[1,3,["H127"]],[3,4,["H2199"]],[4,5,["H5921"]],[5,10,["H8525"]],[10,11,["H3162"]],[11,13,["H1058"]]]},{"k":13627,"v":[[0,1,["H518"]],[1,4,["H398"]],[4,6,["H3581"]],[6,8,["H1097"]],[8,9,["H3701"]],[9,14,["H1167"]],[14,17,["H5301"]],[17,19,["H5315"]]]},{"k":13628,"v":[[0,2,["H2336"]],[2,3,["H3318"]],[3,4,["H8478"]],[4,6,["H2406"]],[6,8,["H890"]],[8,9,["H8478"]],[9,11,["H8184"]],[11,13,["H1697"]],[13,15,["H347"]],[15,17,["H8552"]]]},{"k":13629,"v":[[0,2,["H428"]],[2,3,["H7969"]],[3,4,["H376"]],[4,5,["H7673"]],[5,7,["H4480","H6030","(H853)"]],[7,8,["H347"]],[8,9,["H3588"]],[9,10,["H1931"]],[10,12,["H6662"]],[12,16,["H5869"]]]},{"k":13630,"v":[[0,3,["H2734"]],[3,5,["H639"]],[5,7,["H453"]],[7,9,["H1121"]],[9,11,["H1292"]],[11,13,["H940"]],[13,16,["H4480","H4940"]],[16,18,["H7410"]],[18,20,["H347"]],[20,23,["H639"]],[23,24,["H2734"]],[24,25,["H5921"]],[25,27,["H6663"]],[27,28,["H5315"]],[28,31,["H4480","H430"]]]},{"k":13631,"v":[[0,4,["H7969"]],[4,5,["H7453"]],[5,8,["H639"]],[8,9,["H2734"]],[9,10,["H5921","H834"]],[10,13,["H4672"]],[13,14,["H3808"]],[14,15,["H4617"]],[15,19,["H7561","(H853)"]],[19,20,["H347"]]]},{"k":13632,"v":[[0,2,["H453"]],[2,4,["H2442"]],[4,5,["(H853)"]],[5,6,["H347"]],[6,8,["H1697"]],[8,9,["H3588"]],[9,10,["H1992"]],[10,12,["H2205","H3117"]],[12,13,["H4480"]],[13,14,[]]]},{"k":13633,"v":[[0,2,["H453"]],[2,3,["H7200"]],[3,4,["H3588"]],[4,7,["H369"]],[7,8,["H4617"]],[8,11,["H6310"]],[11,14,["H7969"]],[14,15,["H376"]],[15,18,["H639"]],[18,20,["H2734"]]]},{"k":13634,"v":[[0,2,["H453"]],[2,4,["H1121"]],[4,6,["H1292"]],[6,8,["H940"]],[8,9,["H6030"]],[9,11,["H559"]],[11,12,["H589"]],[12,14,["H6810"]],[14,16,["H859"]],[16,19,["H3453","H3117"]],[19,20,["H5921","H3651"]],[20,23,["H2119"]],[23,25,["H3372"]],[25,27,["H4480","H2331"]],[27,30,["H1843"]]]},{"k":13635,"v":[[0,2,["H559"]],[2,3,["H3117"]],[3,5,["H1696"]],[5,7,["H7230"]],[7,9,["H8141"]],[9,11,["H3045"]],[11,12,["H2451"]]]},{"k":13636,"v":[[0,1,["H403"]],[1,5,["H7307"]],[5,7,["H582"]],[7,10,["H5397"]],[10,13,["H7706"]],[13,16,["H995"]]]},{"k":13637,"v":[[0,1,["H7227"]],[1,4,["H3808"]],[4,6,["H2449"]],[6,10,["H2205"]],[10,11,["H995"]],[11,12,["H4941"]]]},{"k":13638,"v":[[0,1,["H3651"]],[1,3,["H559"]],[3,4,["H8085"]],[4,7,["H589"]],[7,8,["H637"]],[8,10,["H2331"]],[10,12,["H1843"]]]},{"k":13639,"v":[[0,1,["H2005"]],[1,3,["H3176"]],[3,6,["H1697"]],[6,9,["H238"]],[9,10,["H5704"]],[10,12,["H8394"]],[12,13,["H5704"]],[13,16,["H2713"]],[16,19,["H4405"]]]},{"k":13640,"v":[[0,3,["H995"]],[3,4,["H5704"]],[4,7,["H2009"]],[7,10,["H369"]],[10,11,["H4480"]],[11,14,["H3198"]],[14,15,["H347"]],[15,18,["H6030"]],[18,20,["H561"]]]},{"k":13641,"v":[[0,1,["H6435"]],[1,4,["H559"]],[4,8,["H4672"]],[8,9,["H2451"]],[9,10,["H410"]],[10,13,["H5086"]],[13,14,["H3808"]],[14,15,["H376"]]]},{"k":13642,"v":[[0,4,["H3808"]],[4,5,["H6186"]],[5,7,["H4405"]],[7,8,["H413"]],[8,10,["H3808"]],[10,13,["H7725"]],[13,17,["H561"]]]},{"k":13643,"v":[[0,3,["H2865"]],[3,5,["H6030"]],[5,6,["H3808"]],[6,7,["H5750"]],[7,10,["H6275","H4480"]],[10,11,["H4405"]]]},{"k":13644,"v":[[0,4,["H3176"]],[4,5,["H3588"]],[5,7,["H1696"]],[7,8,["H3808"]],[8,9,["H3588"]],[9,11,["H5975"]],[11,13,["H6030"]],[13,14,["H3808"]],[14,15,["H5750"]]]},{"k":13645,"v":[[0,3,["H589"]],[3,5,["H6030"]],[5,6,["H637"]],[6,8,["H2506"]],[8,9,["H589"]],[9,10,["H637"]],[10,12,["H2331"]],[12,14,["H1843"]]]},{"k":13646,"v":[[0,1,["H3588"]],[1,4,["H4390"]],[4,6,["H4405"]],[6,8,["H7307"]],[8,9,["H990"]],[9,11,["H6693"]],[11,12,[]]]},{"k":13647,"v":[[0,1,["H2009"]],[1,3,["H990"]],[3,6,["H3196"]],[6,9,["H3808"]],[9,10,["H6605"]],[10,15,["H1234"]],[15,17,["H2319"]],[17,18,["H178"]]]},{"k":13648,"v":[[0,3,["H1696"]],[3,8,["H7304"]],[8,11,["H6605"]],[11,13,["H8193"]],[13,15,["H6030"]]]},{"k":13649,"v":[[0,3,["H408"]],[3,6,["H4994"]],[6,7,["H5375"]],[7,9,["H376"]],[9,10,["H6440"]],[10,11,["H3808"]],[11,16,["H3655"]],[16,17,["H413"]],[17,18,["H120"]]]},{"k":13650,"v":[[0,1,["H3588"]],[1,3,["H3045"]],[3,4,["H3808"]],[4,8,["H3655"]],[8,13,["H6213"]],[13,15,["H4592"]],[15,18,["H5375"]]]},{"k":13651,"v":[[0,1,["H199"]],[1,2,["H347"]],[2,5,["H4994"]],[5,6,["H8085"]],[6,8,["H4405"]],[8,10,["H238"]],[10,12,["H3605"]],[12,14,["H1697"]]]},{"k":13652,"v":[[0,1,["H2009"]],[1,2,["H4994"]],[2,5,["H6605"]],[5,7,["H6310"]],[7,9,["H3956"]],[9,11,["H1696"]],[11,14,["H2441"]]]},{"k":13653,"v":[[0,2,["H561"]],[2,7,["H3476"]],[7,10,["H3820"]],[10,13,["H8193"]],[13,15,["H4448"]],[15,16,["H1847"]],[16,17,["H1305"]]]},{"k":13654,"v":[[0,2,["H7307"]],[2,4,["H410"]],[4,6,["H6213"]],[6,10,["H5397"]],[10,13,["H7706"]],[13,17,["H2421"]]]},{"k":13655,"v":[[0,1,["H518"]],[1,3,["H3201"]],[3,4,["H7725"]],[4,10,["H6186"]],[10,11,["H6440"]],[11,14,["H3320"]]]},{"k":13656,"v":[[0,1,["H2005"]],[1,2,["H589"]],[2,7,["H6310"]],[7,9,["H410"]],[9,11,["H589"]],[11,12,["H1571"]],[12,14,["H7169"]],[14,18,["H4480","H2563"]]]},{"k":13657,"v":[[0,1,["H2009"]],[1,3,["H367"]],[3,5,["H3808"]],[5,8,["H1204"]],[8,9,["H3808"]],[9,12,["H405"]],[12,14,["H3513"]],[14,15,["H5921"]],[15,16,[]]]},{"k":13658,"v":[[0,1,["H389"]],[1,4,["H559"]],[4,7,["H241"]],[7,11,["H8085"]],[11,13,["H6963"]],[13,16,["H4405"]],[16,17,[]]]},{"k":13659,"v":[[0,1,["H589"]],[1,3,["H2134"]],[3,4,["H1097"]],[4,5,["H6588"]],[5,6,["H595"]],[6,8,["H2643"]],[8,9,["H3808"]],[9,12,["H5771"]],[12,14,[]]]},{"k":13660,"v":[[0,1,["H2005"]],[1,3,["H4672"]],[3,4,["H8569"]],[4,5,["H5921"]],[5,8,["H2803"]],[8,12,["H341"]]]},{"k":13661,"v":[[0,2,["H7760"]],[2,4,["H7272"]],[4,7,["H5465"]],[7,9,["H8104"]],[9,10,["H3605"]],[10,12,["H734"]]]},{"k":13662,"v":[[0,1,["H2005"]],[1,3,["H2063"]],[3,6,["H3808"]],[6,7,["H6663"]],[7,10,["H6030"]],[10,12,["H3588"]],[12,13,["H433"]],[13,15,["H7235"]],[15,17,["H4480","H582"]]]},{"k":13663,"v":[[0,1,["H4069"]],[1,4,["H7378"]],[4,5,["H413"]],[5,7,["H3588"]],[7,10,["H3808"]],[10,11,["H6030"]],[11,13,["H3605"]],[13,16,["H1697"]]]},{"k":13664,"v":[[0,1,["H3588"]],[1,2,["H410"]],[2,3,["H1696"]],[3,4,["H259"]],[4,6,["H8147"]],[6,9,["H7789"]],[9,11,["H3808"]]]},{"k":13665,"v":[[0,3,["H2472"]],[3,6,["H2384"]],[6,9,["H3915"]],[9,12,["H8639"]],[12,13,["H5307"]],[13,14,["H5921"]],[14,15,["H376"]],[15,17,["H8572"]],[17,18,["H5921"]],[18,20,["H4904"]]]},{"k":13666,"v":[[0,1,["H227"]],[1,3,["H1540"]],[3,5,["H241"]],[5,7,["H376"]],[7,9,["H2856"]],[9,11,["H4561"]]]},{"k":13667,"v":[[0,4,["H5493"]],[4,5,["H120"]],[5,8,["H4639"]],[8,10,["H3680"]],[10,11,["H1466"]],[11,13,["H4480","H1397"]]]},{"k":13668,"v":[[0,3,["H2820"]],[3,5,["H5315"]],[5,6,["H4480"]],[6,8,["H7845"]],[8,11,["H2416"]],[11,13,["H4480","H5674"]],[13,16,["H7973"]]]},{"k":13669,"v":[[0,3,["H3198"]],[3,6,["H4341"]],[6,7,["H5921"]],[7,9,["H4904"]],[9,12,["H7230"]],[12,15,["H6106"]],[15,17,["H386"]],[17,18,[]]]},{"k":13670,"v":[[0,4,["H2416"]],[4,5,["H2092"]],[5,6,["H3899"]],[6,9,["H5315"]],[9,10,["H8378"]],[10,11,["H3978"]]]},{"k":13671,"v":[[0,2,["H1320"]],[2,5,["H3615"]],[5,10,["H4480","H7210"]],[10,13,["H6106"]],[13,16,["H3808"]],[16,17,["H7200"]],[17,19,["H8192"]]]},{"k":13672,"v":[[0,3,["H5315"]],[3,5,["H7126"]],[5,8,["H7845"]],[8,11,["H2416"]],[11,14,["H4191"]]]},{"k":13673,"v":[[0,1,["H518"]],[1,3,["H3426"]],[3,5,["H4397"]],[5,6,["H5921"]],[6,9,["H3887"]],[9,10,["H259"]],[10,11,["H4480"]],[11,13,["H505"]],[13,15,["H5046"]],[15,17,["H120"]],[17,19,["H3476"]]]},{"k":13674,"v":[[0,4,["H2603"]],[4,8,["H559"]],[8,9,["H6308"]],[9,13,["H4480","H3381"]],[13,16,["H7845"]],[16,19,["H4672"]],[19,21,["H3724"]]]},{"k":13675,"v":[[0,2,["H1320"]],[2,5,["H7375"]],[5,8,["H4480","H5290"]],[8,11,["H7725"]],[11,14,["H3117"]],[14,17,["H5934"]]]},{"k":13676,"v":[[0,3,["H6279"]],[3,4,["H413"]],[4,5,["H433"]],[5,10,["H7521"]],[10,16,["H7200"]],[16,18,["H6440"]],[18,20,["H8643"]],[20,24,["H7725"]],[24,26,["H582"]],[26,28,["H6666"]]]},{"k":13677,"v":[[0,2,["H7789"]],[2,3,["H5921"]],[3,4,["H376"]],[4,8,["H559"]],[8,11,["H2398"]],[11,13,["H5753"]],[13,17,["H3477"]],[17,20,["H7737"]],[20,22,["H3808"]]]},{"k":13678,"v":[[0,3,["H6299"]],[3,5,["H5315"]],[5,7,["H4480","H5674"]],[7,10,["H7845"]],[10,13,["H2416"]],[13,15,["H7200"]],[15,17,["H216"]]]},{"k":13679,"v":[[0,1,["H2005"]],[1,2,["H3605"]],[2,3,["H428"]],[3,5,["H6466"]],[5,6,["H410"]],[6,7,["H6471","H7969"]],[7,8,["H5973"]],[8,9,["H1397"]]]},{"k":13680,"v":[[0,3,["H7725"]],[3,5,["H5315"]],[5,6,["H4480"]],[6,8,["H7845"]],[8,11,["H215"]],[11,14,["H216"]],[14,17,["H2416"]]]},{"k":13681,"v":[[0,2,["H7181"]],[2,4,["H347"]],[4,5,["H8085"]],[5,10,["H2790"]],[10,12,["H595"]],[12,14,["H1696"]]]},{"k":13682,"v":[[0,1,["H518"]],[1,3,["H3426"]],[3,7,["H4405"]],[7,8,["H7725"]],[8,10,["H1696"]],[10,11,["H3588"]],[11,13,["H2654"]],[13,15,["H6663"]],[15,16,[]]]},{"k":13683,"v":[[0,1,["H518"]],[1,2,["H369"]],[2,3,["H8085"]],[3,8,["H2790"]],[8,12,["H502"]],[12,14,["H2451"]]]},{"k":13684,"v":[[0,2,["H453"]],[2,3,["H6030"]],[3,5,["H559"]]]},{"k":13685,"v":[[0,1,["H8085"]],[1,3,["H4405"]],[3,6,["H2450"]],[6,10,["H238"]],[10,16,["H3045"]]]},{"k":13686,"v":[[0,1,["H3588"]],[1,3,["H241"]],[3,4,["H974"]],[4,5,["H4405"]],[5,8,["H2441"]],[8,9,["H2938"]],[9,10,["H398"]]]},{"k":13687,"v":[[0,3,["H977"]],[3,6,["H4941"]],[6,9,["H3045"]],[9,10,["H996"]],[10,12,["H4100"]],[12,14,["H2896"]]]},{"k":13688,"v":[[0,1,["H3588"]],[1,2,["H347"]],[2,4,["H559"]],[4,7,["H6663"]],[7,9,["H410"]],[9,12,["H5493"]],[12,14,["H4941"]]]},{"k":13689,"v":[[0,3,["H3576"]],[3,4,["H5921"]],[4,6,["H4941"]],[6,8,["H2671"]],[8,10,["H605"]],[10,11,["H1097"]],[11,12,["H6588"]]]},{"k":13690,"v":[[0,1,["H4310"]],[1,2,["H1397"]],[2,5,["H347"]],[5,8,["H8354"]],[8,9,["H3933"]],[9,11,["H4325"]]]},{"k":13691,"v":[[0,2,["H732"]],[2,4,["H2274"]],[4,5,["H5973"]],[5,7,["H6466"]],[7,9,["H205"]],[9,11,["H1980"]],[11,12,["H5973"]],[12,13,["H7562"]],[13,14,["H376"]]]},{"k":13692,"v":[[0,1,["H3588"]],[1,4,["H559"]],[4,6,["H5532"]],[6,8,["H1397"]],[8,9,["H3808"]],[9,13,["H7521"]],[13,15,["H5973"]],[15,16,["H430"]]]},{"k":13693,"v":[[0,1,["H3651"]],[1,2,["H8085"]],[2,6,["H376"]],[6,8,["H3824"]],[8,11,["H2486"]],[11,13,["H410"]],[13,18,["H4480","H7562"]],[18,22,["H7706"]],[22,27,["H4480","H5766"]]]},{"k":13694,"v":[[0,1,["H3588"]],[1,3,["H6467"]],[3,6,["H120"]],[6,9,["H7999"]],[9,15,["H376"]],[15,17,["H4672"]],[17,21,["H734"]]]},{"k":13695,"v":[[0,1,["H637"]],[1,2,["H551"]],[2,3,["H410"]],[3,5,["H3808"]],[5,7,["H7561"]],[7,8,["H3808"]],[8,11,["H7706"]],[11,12,["H5791"]],[12,13,["H4941"]]]},{"k":13696,"v":[[0,1,["H4310"]],[1,6,["H6485","H5921"]],[6,9,["H776"]],[9,11,["H4310"]],[11,13,["H7760"]],[13,15,["H3605"]],[15,16,["H8398"]]]},{"k":13697,"v":[[0,1,["H518"]],[1,3,["H7760"]],[3,5,["H3820"]],[5,6,["H413"]],[6,10,["H622"]],[10,11,["H413"]],[11,14,["H7307"]],[14,17,["H5397"]]]},{"k":13698,"v":[[0,1,["H3605"]],[1,2,["H1320"]],[2,4,["H1478"]],[4,5,["H3162"]],[5,7,["H120"]],[7,10,["H7725"]],[10,11,["H5921"]],[11,12,["H6083"]]]},{"k":13699,"v":[[0,1,["H518"]],[1,5,["H998"]],[5,6,["H8085"]],[6,7,["H2063"]],[7,8,["H238"]],[8,11,["H6963"]],[11,14,["H4405"]]]},{"k":13700,"v":[[0,2,["H637"]],[2,5,["H8130"]],[5,6,["H4941"]],[6,7,["H2280"]],[7,11,["H7561"]],[11,15,["H3524"]],[15,16,["H6662"]]]},{"k":13701,"v":[[0,5,["H559"]],[5,8,["H4428"]],[8,11,["H1100"]],[11,13,["H413"]],[13,14,["H5081"]],[14,17,["H7563"]]]},{"k":13702,"v":[[0,6,["H834"]],[6,7,["H5375"]],[7,8,["H3808"]],[8,10,["H6440"]],[10,12,["H8269"]],[12,13,["H3808"]],[13,14,["H5234"]],[14,16,["H7771"]],[16,18,["H6440"]],[18,20,["H1800"]],[20,21,["H3588"]],[21,23,["H3605"]],[23,26,["H4639"]],[26,29,["H3027"]]]},{"k":13703,"v":[[0,3,["H7281"]],[3,6,["H4191"]],[6,9,["H5971"]],[9,12,["H1607"]],[12,14,["H2676","H3915"]],[14,17,["H5674"]],[17,20,["H47"]],[20,24,["H5493"]],[24,25,["H3808"]],[25,26,["H3027"]]]},{"k":13704,"v":[[0,1,["H3588"]],[1,3,["H5869"]],[3,5,["H5921"]],[5,7,["H1870"]],[7,9,["H376"]],[9,12,["H7200"]],[12,13,["H3605"]],[13,15,["H6806"]]]},{"k":13705,"v":[[0,3,["H369"]],[3,4,["H2822"]],[4,5,["H369"]],[5,8,["H6757"]],[8,9,["H8033"]],[9,11,["H6466"]],[11,13,["H205"]],[13,16,["H5641"]]]},{"k":13706,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H7760"]],[5,6,["H5921"]],[6,7,["H376"]],[7,8,["H5750"]],[8,14,["H1980"]],[14,16,["H4941"]],[16,17,["H413"]],[17,18,["H410"]]]},{"k":13707,"v":[[0,5,["H7489"]],[5,7,["H3524"]],[7,8,["H3808"]],[8,9,["H2714"]],[9,11,["H5975"]],[11,12,["H312"]],[12,15,["H8478"]]]},{"k":13708,"v":[[0,1,["H3651"]],[1,3,["H5234"]],[3,5,["H4566"]],[5,8,["H2015"]],[8,12,["H3915"]],[12,17,["H1792"]]]},{"k":13709,"v":[[0,2,["H5606"]],[2,4,["H8478"]],[4,6,["H7563"]],[6,9,["H4725"]],[9,10,["H7200"]],[10,12,[]]]},{"k":13710,"v":[[0,1,["H834","H3651","H5921"]],[1,4,["H5493"]],[4,5,["H4480","H310"]],[5,9,["H3808"]],[9,10,["H7919"]],[10,11,["H3605"]],[11,14,["H1870"]]]},{"k":13711,"v":[[0,6,["H6818"]],[6,9,["H1800"]],[9,11,["H935"]],[11,12,["H5921"]],[12,16,["H8085"]],[16,18,["H6818"]],[18,21,["H6041"]]]},{"k":13712,"v":[[0,2,["H1931"]],[2,4,["H8252"]],[4,5,["H4310"]],[5,9,["H7561"]],[9,13,["H5641"]],[13,15,["H6440"]],[15,16,["H4310"]],[16,19,["H7789"]],[19,25,["H5921"]],[25,27,["H1471"]],[27,29,["H5921"]],[29,31,["H120"]],[31,32,["H3162"]]]},{"k":13713,"v":[[0,3,["H120","H2611"]],[3,5,["H4480","H4427"]],[5,8,["H5971"]],[8,10,["H4480","H4170"]]]},{"k":13714,"v":[[0,4,["H3588"]],[4,7,["H559"]],[7,8,["H413"]],[8,9,["H410"]],[9,12,["H5375"]],[12,16,["H3808"]],[16,17,["H2254"]],[17,19,[]]]},{"k":13715,"v":[[0,4,["H2372"]],[4,5,["H1107"]],[5,6,["H3384"]],[6,7,["H859"]],[7,9,["H518"]],[9,12,["H6466"]],[12,13,["H5766"]],[13,16,["H3254"]],[16,17,["H3808"]],[17,18,[]]]},{"k":13716,"v":[[0,7,["H4480","H5973"]],[7,10,["H7999"]],[10,12,["H3588"]],[12,14,["H3988"]],[14,16,["H3588"]],[16,17,["H859"]],[17,18,["H977"]],[18,20,["H3808"]],[20,21,["H589"]],[21,23,["H1696"]],[23,24,["H4100"]],[24,26,["H3045"]]]},{"k":13717,"v":[[0,2,["H376"]],[2,4,["H3824"]],[4,5,["H559"]],[5,10,["H2450"]],[10,11,["H1397"]],[11,12,["H8085"]],[12,14,[]]]},{"k":13718,"v":[[0,1,["H347"]],[1,3,["H1696"]],[3,4,["H3808"]],[4,5,["H1847"]],[5,8,["H1697"]],[8,10,["H3808"]],[10,11,["H7919"]]]},{"k":13719,"v":[[0,2,["H15"]],[2,5,["H347"]],[5,8,["H974"]],[8,9,["H5704"]],[9,11,["H5331"]],[11,12,["H5921"]],[12,15,["H8666"]],[15,17,["H205"]],[17,18,["H376"]]]},{"k":13720,"v":[[0,1,["H3588"]],[1,3,["H3254"]],[3,4,["H6588"]],[4,5,["H5921"]],[5,7,["H2403"]],[7,9,["H5606"]],[9,12,["H996"]],[12,15,["H7235"]],[15,17,["H561"]],[17,19,["H410"]]]},{"k":13721,"v":[[0,1,["H453"]],[1,2,["H6030"]],[2,5,["H559"]]]},{"k":13722,"v":[[0,1,["H2803"]],[1,3,["H2063"]],[3,6,["H4941"]],[6,9,["H559"]],[9,11,["H6664"]],[11,15,["H4480","H410"]]]},{"k":13723,"v":[[0,1,["H3588"]],[1,3,["H559"]],[3,4,["H4100"]],[4,5,["H5532"]],[5,12,["H4100"]],[12,13,["H3276"]],[13,23,["H4480","H2403"]]]},{"k":13724,"v":[[0,1,["H589"]],[1,3,["H7725","H4405"]],[3,7,["H7453"]],[7,8,["H5973"]],[8,9,[]]]},{"k":13725,"v":[[0,1,["H5027"]],[1,4,["H8064"]],[4,6,["H7200"]],[6,8,["H7789"]],[8,10,["H7834"]],[10,13,["H1361"]],[13,14,["H4480"]],[14,15,[]]]},{"k":13726,"v":[[0,1,["H518"]],[1,3,["H2398"]],[3,4,["H4100"]],[4,5,["H6466"]],[5,12,["H6588"]],[12,14,["H7231"]],[14,15,["H4100"]],[15,16,["H6213"]],[16,19,[]]]},{"k":13727,"v":[[0,1,["H518"]],[1,4,["H6663"]],[4,5,["H4100"]],[5,6,["H5414"]],[6,9,["H176"]],[9,10,["H4100"]],[10,11,["H3947"]],[11,15,["H4480","H3027"]]]},{"k":13728,"v":[[0,2,["H7562"]],[2,6,["H376"]],[6,8,["H3644"]],[8,12,["H6666"]],[12,16,["H1121"]],[16,18,["H120"]]]},{"k":13729,"v":[[0,5,["H4480","H7230"]],[5,7,["H6217"]],[7,13,["H2199"]],[13,16,["H7768"]],[16,21,["H4480","H2220"]],[21,24,["H7227"]]]},{"k":13730,"v":[[0,2,["H3808"]],[2,3,["H559"]],[3,4,["H346"]],[4,6,["H433"]],[6,8,["H6213"]],[8,10,["H5414"]],[10,11,["H2158"]],[11,14,["H3915"]]]},{"k":13731,"v":[[0,2,["H502"]],[2,7,["H4480","H929"]],[7,10,["H776"]],[10,14,["H2449"]],[14,17,["H4480","H5775"]],[17,19,["H8064"]]]},{"k":13732,"v":[[0,1,["H8033"]],[1,3,["H6817"]],[3,5,["H3808"]],[5,7,["H6030"]],[7,8,["H4480","H6440"]],[8,11,["H1347"]],[11,14,["H7451"]]]},{"k":13733,"v":[[0,1,["H389"]],[1,2,["H410"]],[2,4,["H3808"]],[4,5,["H8085"]],[5,6,["H7723"]],[6,7,["H3808"]],[7,10,["H7706"]],[10,11,["H7789"]],[11,12,[]]]},{"k":13734,"v":[[0,1,["H637","H3588"]],[1,3,["H559"]],[3,6,["H3808"]],[6,7,["H7789"]],[7,10,["H1779"]],[10,12,["H6440"]],[12,15,["H2342"]],[15,18,[]]]},{"k":13735,"v":[[0,2,["H6258"]],[2,3,["H3588"]],[3,6,["H369"]],[6,10,["H6485"]],[10,13,["H639"]],[13,16,["H3045"]],[16,18,["H3808"]],[18,20,["H3966"]],[20,21,["H6580"]]]},{"k":13736,"v":[[0,3,["H347"]],[3,4,["H6475"]],[4,6,["H6310"]],[6,8,["H1892"]],[8,10,["H3527"]],[10,11,["H4405"]],[11,12,["H1097"]],[12,13,["H1847"]]]},{"k":13737,"v":[[0,1,["H453"]],[1,3,["H3254"]],[3,5,["H559"]]]},{"k":13738,"v":[[0,1,["H3803"]],[1,4,["H2191"]],[4,8,["H2331"]],[8,10,["H3588"]],[10,13,["H5750"]],[13,15,["H4405"]],[15,17,["H433"]],[17,18,[]]]},{"k":13739,"v":[[0,3,["H5375"]],[3,5,["H1843"]],[5,7,["H4480","H7350"]],[7,10,["H5414"]],[10,11,["H6664"]],[11,14,["H6466"]]]},{"k":13740,"v":[[0,1,["H3588"]],[1,2,["H551"]],[2,4,["H4405"]],[4,6,["H3808"]],[6,8,["H8267"]],[8,12,["H8549"]],[12,14,["H1844"]],[14,16,["H5973"]],[16,17,[]]]},{"k":13741,"v":[[0,1,["H2005"]],[1,2,["H410"]],[2,4,["H3524"]],[4,6,["H3988"]],[6,7,["H3808"]],[7,11,["H3524"]],[11,13,["H3581"]],[13,15,["H3820"]]]},{"k":13742,"v":[[0,5,["H2421","H3808"]],[5,8,["H7563"]],[8,10,["H5414"]],[10,11,["H4941"]],[11,14,["H6041"]]]},{"k":13743,"v":[[0,2,["H1639"]],[2,3,["H3808"]],[3,5,["H5869"]],[5,8,["H4480","H6662"]],[8,10,["H854"]],[10,11,["H4428"]],[11,16,["H3678"]],[16,20,["H3427"]],[20,23,["H5331"]],[23,27,["H1361"]]]},{"k":13744,"v":[[0,2,["H518"]],[2,5,["H631"]],[5,7,["H2131"]],[7,10,["H3920"]],[10,12,["H2256"]],[12,14,["H6040"]]]},{"k":13745,"v":[[0,3,["H5046"]],[3,6,["H6467"]],[6,9,["H6588"]],[9,10,["H3588"]],[10,13,["H1396"]]]},{"k":13746,"v":[[0,2,["H1540"]],[2,5,["H241"]],[5,7,["H4148"]],[7,9,["H559"]],[9,10,["H3588"]],[10,12,["H7725"]],[12,14,["H4480","H205"]]]},{"k":13747,"v":[[0,1,["H518"]],[1,3,["H8085"]],[3,5,["H5647"]],[5,9,["H3615"]],[9,11,["H3117"]],[11,13,["H2896"]],[13,16,["H8141"]],[16,18,["H5273"]]]},{"k":13748,"v":[[0,2,["H518"]],[2,4,["H8085"]],[4,5,["H3808"]],[5,8,["H5674"]],[8,11,["H7973"]],[11,15,["H1478"]],[15,16,["H1097"]],[16,17,["H1847"]]]},{"k":13749,"v":[[0,3,["H2611"]],[3,5,["H3820"]],[5,7,["H7760"]],[7,8,["H639"]],[8,10,["H7768"]],[10,11,["H3808"]],[11,12,["H3588"]],[12,14,["H631"]],[14,15,[]]]},{"k":13750,"v":[[0,1,["H5315"]],[1,2,["H4191"]],[2,4,["H5290"]],[4,7,["H2416"]],[7,11,["H6945"]]]},{"k":13751,"v":[[0,2,["H2502"]],[2,4,["H6041"]],[4,7,["H6040"]],[7,9,["H1540"]],[9,11,["H241"]],[11,13,["H3906"]]]},{"k":13752,"v":[[0,2,["H637"]],[2,6,["H5496"]],[6,11,["H4480","H6310","H6862"]],[11,15,["H7338"]],[15,16,["H8478"]],[16,19,["H3808"]],[19,20,["H4164"]],[20,26,["H5183"]],[26,29,["H7979"]],[29,32,["H4390"]],[32,34,["H1880"]]]},{"k":13753,"v":[[0,4,["H4390"]],[4,6,["H1779"]],[6,9,["H7563"]],[9,10,["H1779"]],[10,12,["H4941"]],[12,14,["H8551"]],[14,16,[]]]},{"k":13754,"v":[[0,1,["H3588"]],[1,4,["H2534"]],[4,6,["H6435"]],[6,10,["H5496"]],[10,13,["H5607"]],[13,16,["H7227"]],[16,17,["H3724"]],[17,18,["H408"]],[18,19,["H5186"]],[19,20,[]]]},{"k":13755,"v":[[0,3,["H6186"]],[3,5,["H7769"]],[5,7,["H3808"]],[7,8,["H1222"]],[8,10,["H3605"]],[10,12,["H3981"]],[12,14,["H3581"]]]},{"k":13756,"v":[[0,1,["H7602"]],[1,2,["H408"]],[2,4,["H3915"]],[4,6,["H5971"]],[6,9,["H5927"]],[9,12,["H8478"]]]},{"k":13757,"v":[[0,2,["H8104"]],[2,4,["H6437","H408","H413"]],[4,5,["H205"]],[5,6,["H3588","H5921"]],[6,7,["H2088"]],[7,10,["H977"]],[10,13,["H4480","H6040"]]]},{"k":13758,"v":[[0,1,["H2005"]],[1,2,["H410"]],[2,3,["H7682"]],[3,6,["H3581"]],[6,7,["H4310"]],[7,8,["H3384"]],[8,10,["H3644"]]]},{"k":13759,"v":[[0,1,["H4310"]],[1,3,["H6485","H5921"]],[3,6,["H1870"]],[6,8,["H4310"]],[8,10,["H559"]],[10,13,["H6466"]],[13,14,["H5766"]]]},{"k":13760,"v":[[0,1,["H2142"]],[1,2,["H3588"]],[2,4,["H7679"]],[4,6,["H6467"]],[6,7,["H834"]],[7,8,["H376"]],[8,9,["H7789"]]]},{"k":13761,"v":[[0,1,["H3605"]],[1,2,["H120"]],[2,4,["H2372"]],[4,6,["H582"]],[6,8,["H5027"]],[8,11,["H4480","H7350"]]]},{"k":13762,"v":[[0,1,["H2005"]],[1,2,["H410"]],[2,4,["H7689"]],[4,7,["H3045"]],[7,9,["H3808"]],[9,10,["H3808"]],[10,13,["H4557"]],[13,16,["H8141"]],[16,19,["H2714"]]]},{"k":13763,"v":[[0,1,["H3588"]],[1,4,["H1639"]],[4,6,["H5198"]],[6,8,["H4325"]],[8,11,["H2212"]],[11,12,["H4306"]],[12,16,["H108"]],[16,17,[]]]},{"k":13764,"v":[[0,1,["H834"]],[1,3,["H7834"]],[3,5,["H5140"]],[5,7,["H7491"]],[7,8,["H5921"]],[8,9,["H120"]],[9,10,["H7227"]]]},{"k":13765,"v":[[0,1,["H637","H518"]],[1,4,["H995"]],[4,6,["H4666"]],[6,9,["H5645"]],[9,12,["H8663"]],[12,15,["H5521"]]]},{"k":13766,"v":[[0,1,["H2005"]],[1,3,["H6566"]],[3,5,["H216"]],[5,6,["H5921"]],[6,9,["H3680"]],[9,11,["H8328"]],[11,14,["H3220"]]]},{"k":13767,"v":[[0,1,["H3588"]],[1,4,["H1777"]],[4,7,["H5971"]],[7,9,["H5414"]],[9,10,["H400"]],[10,12,["H4342"]]]},{"k":13768,"v":[[0,1,["H5921"]],[1,2,["H3709"]],[2,4,["H3680"]],[4,6,["H216"]],[6,8,["H6680"]],[8,13,["H5921"]],[13,18,["H6293"]]]},{"k":13769,"v":[[0,2,["H7452"]],[2,4,["H5046"]],[4,5,["H5921"]],[5,8,["H4735"]],[8,9,["H637"]],[9,10,["H5921"]],[10,12,["H5927"]]]},{"k":13770,"v":[[0,2,["H2063"]],[2,3,["H637"]],[3,5,["H3820"]],[5,6,["H2729"]],[6,9,["H5425"]],[9,13,["H4480","H4725"]]]},{"k":13771,"v":[[0,2,["H8085","H8085"]],[2,4,["H7267"]],[4,7,["H6963"]],[7,10,["H1899"]],[10,13,["H3318"]],[13,16,["H4480","H6310"]]]},{"k":13772,"v":[[0,2,["H3474"]],[2,4,["H8478"]],[4,6,["H3605"]],[6,7,["H8064"]],[7,10,["H216"]],[10,11,["H5921"]],[11,13,["H3671"]],[13,16,["H776"]]]},{"k":13773,"v":[[0,1,["H310"]],[1,4,["H6963"]],[4,5,["H7580"]],[5,7,["H7481"]],[7,10,["H6963"]],[10,13,["H1347"]],[13,17,["H3808"]],[17,18,["H6117"]],[18,20,["H3588"]],[20,22,["H6963"]],[22,24,["H8085"]]]},{"k":13774,"v":[[0,1,["H410"]],[1,2,["H7481"]],[2,3,["H6381"]],[3,6,["H6963"]],[6,8,["H1419"]],[8,9,["H6213"]],[9,13,["H3808"]],[13,14,["H3045"]]]},{"k":13775,"v":[[0,1,["H3588"]],[1,3,["H559"]],[3,6,["H7950"]],[6,7,["H1933"]],[7,11,["H776"]],[11,15,["H4306"]],[15,16,["H1653"]],[16,20,["H4306"]],[20,21,["H1653"]],[21,24,["H5797"]]]},{"k":13776,"v":[[0,3,["H2856"]],[3,5,["H3027"]],[5,7,["H3605"]],[7,8,["H120"]],[8,10,["H3605"]],[10,11,["H376"]],[11,13,["H3045"]],[13,15,["H4639"]]]},{"k":13777,"v":[[0,3,["H2416"]],[3,4,["H935"]],[4,5,["H1119"]],[5,6,["H695"]],[6,8,["H7931"]],[8,11,["H4585"]]]},{"k":13778,"v":[[0,2,["H4480"]],[2,4,["H2315"]],[4,5,["H935"]],[5,7,["H5492"]],[7,9,["H7135"]],[9,13,["H4480","H4215"]]]},{"k":13779,"v":[[0,3,["H4480","H5397"]],[3,5,["H410"]],[5,6,["H7140"]],[6,8,["H5414"]],[8,11,["H7341"]],[11,14,["H4325"]],[14,16,["H4164"]]]},{"k":13780,"v":[[0,1,["H637"]],[1,3,["H7377"]],[3,5,["H2959"]],[5,8,["H5645"]],[8,10,["H6327"]],[10,12,["H216"]],[12,13,["H6051"]]]},{"k":13781,"v":[[0,2,["H1931"]],[2,4,["H2015"]],[4,6,["H4524"]],[6,9,["H8458"]],[9,13,["H6466"]],[13,14,["H3605","H834"]],[14,16,["H6680"]],[16,18,["H5921"]],[18,20,["H6440"]],[20,23,["H8398"]],[23,26,["H776"]]]},{"k":13782,"v":[[0,5,["H4672"]],[5,6,["H518"]],[6,8,["H7626"]],[8,9,["H518"]],[9,12,["H776"]],[12,13,["H518"]],[13,15,["H2617"]]]},{"k":13783,"v":[[0,1,["H238"]],[1,3,["H2063"]],[3,5,["H347"]],[5,7,["H5975"]],[7,9,["H995"]],[9,11,["H6381"]],[11,14,["H410"]]]},{"k":13784,"v":[[0,3,["H3045"]],[3,5,["H433"]],[5,6,["H7760","H5921"]],[6,11,["H216"]],[11,14,["H6051"]],[14,16,["H3313"]]]},{"k":13785,"v":[[0,3,["H3045","H5921"]],[3,5,["H4657"]],[5,8,["H5645"]],[8,11,["H4652"]],[11,16,["H8549"]],[16,18,["H1843"]]]},{"k":13786,"v":[[0,1,["H834"]],[1,3,["H899"]],[3,5,["H2525"]],[5,8,["H8252"]],[8,10,["H776"]],[10,13,["H4480","H1864"]],[13,14,[]]]},{"k":13787,"v":[[0,3,["H5973"]],[3,6,["H7554"]],[6,8,["H7834"]],[8,11,["H2389"]],[11,15,["H3332"]],[15,17,["H7209"]]]},{"k":13788,"v":[[0,1,["H3045"]],[1,3,["H4100"]],[3,6,["H559"]],[6,11,["H3808"]],[11,12,["H6186"]],[12,16,["H4480","H6440"]],[16,18,["H2822"]]]},{"k":13789,"v":[[0,4,["H5608"]],[4,6,["H3588"]],[6,8,["H1696"]],[8,9,["H518"]],[9,11,["H376"]],[11,12,["H559"]],[12,13,["H3588"]],[13,18,["H1104"]]]},{"k":13790,"v":[[0,2,["H6258"]],[2,4,["H7200"]],[4,5,["H3808"]],[5,7,["H925"]],[7,8,["H216"]],[8,9,["H1931"]],[9,13,["H7834"]],[13,16,["H7307"]],[16,17,["H5674"]],[17,19,["H2891"]],[19,20,[]]]},{"k":13791,"v":[[0,2,["H2091"]],[2,3,["H857"]],[3,7,["H4480","H6828"]],[7,8,["H5921"]],[8,9,["H433"]],[9,11,["H3372"]],[11,12,["H1935"]]]},{"k":13792,"v":[[0,3,["H7706"]],[3,5,["H3808"]],[5,8,["H4672"]],[8,11,["H7689"]],[11,13,["H3581"]],[13,16,["H4941"]],[16,19,["H7230"]],[19,21,["H6666"]],[21,24,["H3808"]],[24,25,["H6031"]]]},{"k":13793,"v":[[0,1,["H376"]],[1,3,["H3651"]],[3,4,["H3372"]],[4,7,["H7200"]],[7,8,["H3808"]],[8,9,["H3605"]],[9,12,["H2450"]],[12,14,["H3820"]]]},{"k":13794,"v":[[0,3,["H3068"]],[3,4,["H6030","(H853)"]],[4,5,["H347"]],[5,7,["H4480"]],[7,9,["H5591"]],[9,11,["H559"]]]},{"k":13795,"v":[[0,1,["H4310"]],[1,3,["H2088"]],[3,5,["H2821"]],[5,6,["H6098"]],[6,8,["H4405"]],[8,9,["H1097"]],[9,10,["H1847"]]]},{"k":13796,"v":[[0,2,["H247"]],[2,3,["H4994"]],[3,5,["H2504"]],[5,8,["H1397"]],[8,12,["H7592"]],[12,16,["H3045"]],[16,18,[]]]},{"k":13797,"v":[[0,1,["H375"]],[1,2,["H1961"]],[2,8,["H3245"]],[8,11,["H776"]],[11,12,["H5046"]],[12,13,["H518"]],[13,16,["H3045","H998"]]]},{"k":13798,"v":[[0,1,["H4310"]],[1,3,["H7760"]],[3,5,["H4461"]],[5,7,["H3588"]],[7,9,["H3045"]],[9,10,["H176"]],[10,11,["H4310"]],[11,13,["H5186"]],[13,15,["H6957"]],[15,16,["H5921"]],[16,17,[]]]},{"k":13799,"v":[[0,1,["H5921","H4100"]],[1,4,["H134"]],[4,6,["H2883"]],[6,7,["H176"]],[7,8,["H4310"]],[8,9,["H3384"]],[9,11,["H6438"]],[11,12,["H68"]],[12,13,[]]]},{"k":13800,"v":[[0,3,["H1242"]],[3,4,["H3556"]],[4,5,["H7442"]],[5,6,["H3162"]],[6,8,["H3605"]],[8,10,["H1121"]],[10,12,["H430"]],[12,15,["H7321"]]]},{"k":13801,"v":[[0,4,["H5526"]],[4,6,["H3220"]],[6,8,["H1817"]],[8,12,["H1518"]],[12,18,["H3318"]],[18,21,["H4480","H7358"]]]},{"k":13802,"v":[[0,3,["H7760"]],[3,5,["H6051"]],[5,7,["H3830"]],[7,11,["H6205"]],[11,13,["H2854"]],[13,15,[]]]},{"k":13803,"v":[[0,3,["H7665"]],[3,4,["H5921"]],[4,7,["H2706"]],[7,10,["H7760"]],[10,11,["H1280"]],[11,13,["H1817"]]]},{"k":13804,"v":[[0,2,["H559"]],[2,3,["H5704","H6311"]],[3,6,["H935"]],[6,8,["H3808"]],[8,9,["H3254"]],[9,11,["H6311"]],[11,14,["H1347"]],[14,15,["H1530"]],[15,17,["H7896"]]]},{"k":13805,"v":[[0,3,["H6680"]],[3,5,["H1242"]],[5,8,["H4480","H3117"]],[8,12,["H7837"]],[12,14,["H3045"]],[14,16,["H4725"]]]},{"k":13806,"v":[[0,5,["H270"]],[5,8,["H3671"]],[8,11,["H776"]],[11,14,["H7563"]],[14,17,["H5287"]],[17,19,["H4480"]],[19,20,[]]]},{"k":13807,"v":[[0,3,["H2015"]],[3,5,["H2563"]],[5,8,["H2368"]],[8,11,["H3320"]],[11,12,["H3644"]],[12,14,["H3830"]]]},{"k":13808,"v":[[0,4,["H4480","H7563"]],[4,6,["H216"]],[6,8,["H4513"]],[8,11,["H7311"]],[11,12,["H2220"]],[12,15,["H7665"]]]},{"k":13809,"v":[[0,3,["H935"]],[3,4,["H5704"]],[4,6,["H5033"]],[6,9,["H3220"]],[9,13,["H1980"]],[13,16,["H2714"]],[16,19,["H8415"]]]},{"k":13810,"v":[[0,3,["H8179"]],[3,5,["H4194"]],[5,7,["H1540"]],[7,13,["H7200"]],[13,15,["H8179"]],[15,20,["H6757"]]]},{"k":13811,"v":[[0,3,["H995","H5704"]],[3,5,["H7338"]],[5,8,["H776"]],[8,9,["H5046"]],[9,10,["H518"]],[10,12,["H3045"]],[12,14,["H3605"]]]},{"k":13812,"v":[[0,1,["H335","H2088"]],[1,4,["H1870"]],[4,6,["H216"]],[6,7,["H7931"]],[7,11,["H2822"]],[11,12,["H335","H2088"]],[12,15,["H4725"]],[15,16,[]]]},{"k":13813,"v":[[0,1,["H3588"]],[1,4,["H3947"]],[4,6,["H413"]],[6,8,["H1366"]],[8,11,["H3588"]],[11,14,["H995"]],[14,16,["H5410"]],[16,19,["H1004"]],[19,20,[]]]},{"k":13814,"v":[[0,1,["H3045"]],[1,4,["H3588"]],[4,7,["H227"]],[7,8,["H3205"]],[8,12,["H4557"]],[12,15,["H3117"]],[15,17,["H7227"]]]},{"k":13815,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,6,["H214"]],[6,9,["H7950"]],[9,13,["H7200"]],[13,15,["H214"]],[15,18,["H1259"]]]},{"k":13816,"v":[[0,1,["H834"]],[1,4,["H2820"]],[4,7,["H6256"]],[7,9,["H6862"]],[9,12,["H3117"]],[12,14,["H7128"]],[14,16,["H4421"]]]},{"k":13817,"v":[[0,2,["H335","H2088"]],[2,3,["H1870"]],[3,6,["H216"]],[6,7,["H2505"]],[7,9,["H6327"]],[9,12,["H6921"]],[12,13,["H5921"]],[13,15,["H776"]]]},{"k":13818,"v":[[0,1,["H4310"]],[1,3,["H6385"]],[3,5,["H8585"]],[5,10,["H7858"]],[10,13,["H1870"]],[13,16,["H2385"]],[16,18,["H6963"]]]},{"k":13819,"v":[[0,5,["H4305"]],[5,6,["H5921"]],[6,8,["H776"]],[8,10,["H3808"]],[10,11,["H376"]],[11,15,["H4057"]],[15,19,["H3808"]],[19,20,["H120"]]]},{"k":13820,"v":[[0,2,["H7646"]],[2,4,["H7722"]],[4,6,["H4875"]],[6,12,["H4161"]],[12,16,["H1877"]],[16,19,["H6779"]]]},{"k":13821,"v":[[0,1,["H3426"]],[1,3,["H4306"]],[3,5,["H1"]],[5,6,["H176"]],[6,7,["H4310"]],[7,9,["H3205"]],[9,11,["H96"]],[11,13,["H2919"]]]},{"k":13822,"v":[[0,4,["H4480","H990","H4310"]],[4,5,["H3318"]],[5,7,["H7140"]],[7,11,["H3713"]],[11,13,["H8064"]],[13,14,["H4310"]],[14,16,["H3205"]],[16,17,[]]]},{"k":13823,"v":[[0,2,["H4325"]],[2,4,["H2244"]],[4,8,["H68"]],[8,11,["H6440"]],[11,14,["H8415"]],[14,16,["H3920"]]]},{"k":13824,"v":[[0,3,["H7194"]],[3,6,["H4575"]],[6,8,["H3598"]],[8,9,["H176"]],[9,10,["H6605"]],[10,12,["H4189"]],[12,14,["H3685"]]]},{"k":13825,"v":[[0,4,["H3318"]],[4,5,["H4216"]],[5,8,["H6256"]],[8,12,["H5148"]],[12,13,["H5906"]],[13,14,["H5921"]],[14,16,["H1121"]]]},{"k":13826,"v":[[0,1,["H3045"]],[1,4,["H2708"]],[4,6,["H8064"]],[6,9,["H7760"]],[9,11,["H4896"]],[11,15,["H776"]]]},{"k":13827,"v":[[0,4,["H7311"]],[4,6,["H6963"]],[6,9,["H5645"]],[9,11,["H8229"]],[11,13,["H4325"]],[13,15,["H3680"]],[15,16,[]]]},{"k":13828,"v":[[0,3,["H7971"]],[3,4,["H1300"]],[4,8,["H1980"]],[8,10,["H559"]],[10,13,["H2009"]],[13,15,[]]]},{"k":13829,"v":[[0,1,["H4310"]],[1,3,["H7896"]],[3,4,["H2451"]],[4,8,["H2910"]],[8,9,["H176"]],[9,10,["H4310"]],[10,12,["H5414"]],[12,13,["H998"]],[13,16,["H7907"]]]},{"k":13830,"v":[[0,1,["H4310"]],[1,3,["H5608"]],[3,5,["H7834"]],[5,7,["H2451"]],[7,9,["H4310"]],[9,11,["H7901"]],[11,13,["H5035"]],[13,15,["H8064"]]]},{"k":13831,"v":[[0,3,["H6083"]],[3,4,["H3332"]],[4,6,["H4165"]],[6,9,["H7263"]],[9,12,["H1692"]]]},{"k":13832,"v":[[0,3,["H6679"]],[3,5,["H2964"]],[5,8,["H3833"]],[8,10,["H4390"]],[10,12,["H2416"]],[12,16,["H3715"]]]},{"k":13833,"v":[[0,1,["H3588"]],[1,3,["H7817"]],[3,6,["H4585"]],[6,8,["H3427"]],[8,11,["H5521"]],[11,15,["H3926","H695"]]]},{"k":13834,"v":[[0,1,["H4310"]],[1,2,["H3559"]],[2,5,["H6158"]],[5,7,["H6718"]],[7,8,["H3588"]],[8,11,["H3206"]],[11,12,["H7768"]],[12,13,["H413"]],[13,14,["H410"]],[14,16,["H8582"]],[16,18,["H1097"]],[18,20,["H400"]]]},{"k":13835,"v":[[0,1,["H3045"]],[1,4,["H6256"]],[4,8,["H3277"]],[8,11,["H5553"]],[11,13,["H3205"]],[13,17,["H8104"]],[17,20,["H355"]],[20,22,["H2342"]]]},{"k":13836,"v":[[0,3,["H5608"]],[3,5,["H3391"]],[5,8,["H4390"]],[8,10,["H3045"]],[10,13,["H6256"]],[13,17,["H3205"]]]},{"k":13837,"v":[[0,2,["H3766"]],[2,6,["H6398"]],[6,9,["H3206"]],[9,12,["H7971"]],[12,14,["H2256"]]]},{"k":13838,"v":[[0,3,["H1121"]],[3,7,["H2492"]],[7,10,["H7235"]],[10,12,["H1250"]],[12,15,["H3318"]],[15,17,["H7725"]],[17,18,["H3808"]],[18,20,[]]]},{"k":13839,"v":[[0,1,["H4310"]],[1,4,["H7971"]],[4,7,["H6501"]],[7,8,["H2670"]],[8,10,["H4310"]],[10,12,["H6605"]],[12,14,["H4147"]],[14,18,["H6171"]]]},{"k":13840,"v":[[0,1,["H834"]],[1,2,["H1004"]],[2,5,["H7760"]],[5,7,["H6160"]],[7,11,["H4420"]],[11,13,["H4908"]]]},{"k":13841,"v":[[0,2,["H7832"]],[2,4,["H1995"]],[4,7,["H7151"]],[7,8,["H3808"]],[8,9,["H8085"]],[9,12,["H8663"]],[12,15,["H5065"]]]},{"k":13842,"v":[[0,2,["H3491"]],[2,5,["H2022"]],[5,8,["H4829"]],[8,11,["H1875"]],[11,12,["H310"]],[12,13,["H3605"]],[13,15,["H3387"]]]},{"k":13843,"v":[[0,3,["H7214"]],[3,5,["H14"]],[5,7,["H5647"]],[7,9,["H518"]],[9,10,["H3885"]],[10,11,["H5921"]],[11,13,["H18"]]]},{"k":13844,"v":[[0,3,["H7194"]],[3,5,["H7214"]],[5,8,["H5688"]],[8,11,["H8525"]],[11,12,["H518"]],[12,15,["H7702"]],[15,17,["H6010"]],[17,18,["H310"]],[18,19,[]]]},{"k":13845,"v":[[0,3,["H982"]],[3,5,["H3588"]],[5,7,["H3581"]],[7,9,["H7227"]],[9,13,["H5800"]],[13,15,["H3018"]],[15,16,["H413"]],[16,17,[]]]},{"k":13846,"v":[[0,3,["H539"]],[3,5,["H3588"]],[5,9,["H7725"]],[9,11,["H2233"]],[11,13,["H622"]],[13,17,["H1637"]]]},{"k":13847,"v":[[0,4,["H5965"]],[4,5,["H3671"]],[5,8,["H7443"]],[8,9,["H518"]],[9,10,["H84"]],[10,12,["H2624"]],[12,15,["H5133"]]]},{"k":13848,"v":[[0,1,["H3588"]],[1,2,["H5800"]],[2,4,["H1000"]],[4,7,["H776"]],[7,9,["H2552"]],[9,11,["H5921"]],[11,12,["H6083"]]]},{"k":13849,"v":[[0,2,["H7911"]],[2,3,["H3588"]],[3,5,["H7272"]],[5,7,["H2115"]],[7,12,["H7704"]],[12,13,["H2416"]],[13,15,["H1758"]],[15,16,[]]]},{"k":13850,"v":[[0,3,["H7188"]],[3,7,["H1121"]],[7,12,["H3808"]],[12,15,["H3018"]],[15,18,["H7385"]],[18,19,["H1097"]],[19,20,["H6343"]]]},{"k":13851,"v":[[0,1,["H3588"]],[1,2,["H433"]],[2,4,["H5382"]],[4,7,["H2451"]],[7,8,["H3808"]],[8,11,["H2505"]],[11,14,["H998"]]]},{"k":13852,"v":[[0,2,["H6256"]],[2,6,["H4754"]],[6,8,["H4791"]],[8,10,["H7832"]],[10,12,["H5483"]],[12,15,["H7392"]]]},{"k":13853,"v":[[0,3,["H5414"]],[3,5,["H5483"]],[5,6,["H1369"]],[6,9,["H3847"]],[9,11,["H6677"]],[11,13,["H7483"]]]},{"k":13854,"v":[[0,5,["H7493"]],[5,8,["H697"]],[8,10,["H1935"]],[10,13,["H5170"]],[13,15,["H367"]]]},{"k":13855,"v":[[0,2,["H2658"]],[2,5,["H6010"]],[5,7,["H7797"]],[7,10,["H3581"]],[10,13,["H3318"]],[13,15,["H7125"]],[15,18,["H5402"]]]},{"k":13856,"v":[[0,2,["H7832"]],[2,4,["H6343"]],[4,7,["H3808"]],[7,8,["H2865"]],[8,9,["H3808"]],[9,12,["H7725"]],[12,13,["H4480","H6440"]],[13,15,["H2719"]]]},{"k":13857,"v":[[0,2,["H827"]],[2,3,["H7439"]],[3,4,["H5921"]],[4,7,["H3851"]],[7,8,["H2595"]],[8,11,["H3591"]]]},{"k":13858,"v":[[0,2,["H1572"]],[2,4,["H776"]],[4,6,["H7494"]],[6,8,["H7267"]],[8,9,["H3808"]],[9,10,["H539"]],[10,12,["H3588"]],[12,16,["H6963"]],[16,19,["H7782"]]]},{"k":13859,"v":[[0,2,["H559"]],[2,3,["H1767"]],[3,5,["H7782"]],[5,7,["H1889"]],[7,10,["H7306"]],[10,12,["H4421"]],[12,14,["H4480","H7350"]],[14,16,["H7482"]],[16,19,["H8269"]],[19,22,["H8643"]]]},{"k":13860,"v":[[0,3,["H5322"]],[3,4,["H82"]],[4,7,["H4480","H998"]],[7,9,["H6566"]],[9,11,["H3671"]],[11,14,["H8486"]]]},{"k":13861,"v":[[0,3,["H5404"]],[3,5,["H1361"]],[5,6,["H5921"]],[6,8,["H6310"]],[8,14,["H7311","H7064"]]]},{"k":13862,"v":[[0,2,["H7931"]],[2,4,["H3885"]],[4,7,["H5553"]],[7,8,["H5921"]],[8,10,["H8127"]],[10,13,["H5553"]],[13,17,["H4686"]]]},{"k":13863,"v":[[0,2,["H4480","H8033"]],[2,4,["H2658"]],[4,6,["H400"]],[6,9,["H5869"]],[9,10,["H5027"]],[10,12,["H4480","H7350"]]]},{"k":13864,"v":[[0,3,["H667"]],[3,6,["H5966"]],[6,7,["H1818"]],[7,9,["H834"]],[9,11,["H2491"]],[11,13,["H8033"]],[13,15,["H1931"]]]},{"k":13865,"v":[[0,3,["H3068"]],[3,4,["H6030","(H853)"]],[4,5,["H347"]],[5,7,["H559"]]]},{"k":13866,"v":[[0,4,["H7378"]],[4,5,["H5973"]],[5,7,["H7706"]],[7,8,["H3250"]],[8,12,["H3198"]],[12,13,["H433"]],[13,16,["H6030"]],[16,17,[]]]},{"k":13867,"v":[[0,2,["H347"]],[2,3,["H6030","(H853)"]],[3,5,["H3068"]],[5,7,["H559"]]]},{"k":13868,"v":[[0,1,["H2005"]],[1,4,["H7043"]],[4,5,["H4100"]],[5,8,["H7725"]],[8,12,["H7760"]],[12,14,["H3027"]],[14,15,["H3926"]],[15,17,["H6310"]]]},{"k":13869,"v":[[0,1,["H259"]],[1,4,["H1696"]],[4,8,["H3808"]],[8,9,["H6030"]],[9,11,["H8147"]],[11,17,["H3254","H3808"]]]},{"k":13870,"v":[[0,2,["H6030"]],[2,4,["H3068"]],[4,5,["(H853)"]],[5,6,["H347"]],[6,8,["H4480"]],[8,10,["H5591"]],[10,12,["H559"]]]},{"k":13871,"v":[[0,2,["H247"]],[2,4,["H2504"]],[4,5,["H4994"]],[5,8,["H1397"]],[8,11,["H7592"]],[11,15,["H3045"]],[15,18,[]]]},{"k":13872,"v":[[0,3,["H637"]],[3,4,["H6565"]],[4,6,["H4941"]],[6,9,["H7561"]],[9,11,["H4616"]],[11,15,["H6663"]]]},{"k":13873,"v":[[0,4,["H2220"]],[4,6,["H410"]],[6,10,["H7481"]],[10,13,["H6963"]],[13,15,["H3644"]]]},{"k":13874,"v":[[0,1,["H5710"]],[1,3,["H4994"]],[3,5,["H1347"]],[5,7,["H1363"]],[7,9,["H3847"]],[9,12,["H1935"]],[12,14,["H1926"]]]},{"k":13875,"v":[[0,2,["H6327"]],[2,4,["H5678"]],[4,7,["H639"]],[7,9,["H7200"]],[9,11,["H3605"]],[11,14,["H1343"]],[14,16,["H8213"]],[16,17,[]]]},{"k":13876,"v":[[0,2,["H7200"]],[2,4,["H3605"]],[4,7,["H1343"]],[7,11,["H3665"]],[11,14,["H1915"]],[14,16,["H7563"]],[16,19,["H8478"]]]},{"k":13877,"v":[[0,1,["H2934"]],[1,5,["H6083"]],[5,6,["H3162"]],[6,8,["H2280"]],[8,10,["H6440"]],[10,12,["H2934"]]]},{"k":13878,"v":[[0,3,["H589"]],[3,4,["H1571"]],[4,5,["H3034"]],[5,8,["H3588"]],[8,12,["H3225"]],[12,14,["H3467"]],[14,15,[]]]},{"k":13879,"v":[[0,1,["H2009"]],[1,2,["H4994"]],[2,3,["H930"]],[3,4,["H834"]],[4,6,["H6213"]],[6,7,["H5973"]],[7,10,["H398"]],[10,11,["H2682"]],[11,14,["H1241"]]]},{"k":13880,"v":[[0,1,["H2009"]],[1,2,["H4994"]],[2,4,["H3581"]],[4,8,["H4975"]],[8,11,["H202"]],[11,15,["H8306"]],[15,18,["H990"]]]},{"k":13881,"v":[[0,2,["H2654"]],[2,4,["H2180"]],[4,5,["H3644"]],[5,7,["H730"]],[7,9,["H1517"]],[9,12,["H6344"]],[12,15,["H8276"]]]},{"k":13882,"v":[[0,2,["H6106"]],[2,6,["H650"]],[6,8,["H5154"]],[8,10,["H1634"]],[10,13,["H4300"]],[13,15,["H1270"]]]},{"k":13883,"v":[[0,1,["H1931"]],[1,4,["H7225"]],[4,7,["H1870"]],[7,9,["H410"]],[9,12,["H6213"]],[12,17,["H2719"]],[17,19,["H5066"]],[19,21,[]]]},{"k":13884,"v":[[0,1,["H3588"]],[1,3,["H2022"]],[3,6,["H5375"]],[6,7,["H944"]],[7,8,["H8033"]],[8,9,["H3605"]],[9,11,["H2416"]],[11,14,["H7704"]],[14,15,["H7832"]]]},{"k":13885,"v":[[0,2,["H7901"]],[2,3,["H8478"]],[3,6,["H6628"]],[6,9,["H5643"]],[9,12,["H7070"]],[12,14,["H1207"]]]},{"k":13886,"v":[[0,3,["H6628"]],[3,4,["H5526"]],[4,8,["H6752"]],[8,10,["H6155"]],[10,13,["H5158"]],[13,16,["H5437"]]]},{"k":13887,"v":[[0,1,["H2005"]],[1,4,["H6231"]],[4,6,["H5104"]],[6,8,["H2648"]],[8,9,["H3808"]],[9,11,["H982"]],[11,12,["H3588"]],[12,16,["H1518"]],[16,17,["H3383"]],[17,18,["H413"]],[18,20,["H6310"]]]},{"k":13888,"v":[[0,2,["H3947"]],[2,6,["H5869"]],[6,8,["H639"]],[8,9,["H5344"]],[9,11,["H4170"]]]},{"k":13889,"v":[[0,4,["H4900"]],[4,5,["H3882"]],[5,8,["H2443"]],[8,11,["H3956"]],[11,14,["H2256"]],[14,18,["H8257"]]]},{"k":13890,"v":[[0,3,["H7760"]],[3,5,["H100"]],[5,8,["H639"]],[8,10,["H5344"]],[10,12,["H3895"]],[12,16,["H2336"]]]},{"k":13891,"v":[[0,4,["H7235"]],[4,5,["H8469"]],[5,6,["H413"]],[6,10,["H1696"]],[10,11,["H7390"]],[11,13,["H413"]],[13,14,[]]]},{"k":13892,"v":[[0,3,["H3772"]],[3,5,["H1285"]],[5,6,["H5973"]],[6,10,["H3947"]],[10,14,["H5650"]],[14,16,["H5769"]]]},{"k":13893,"v":[[0,3,["H7832"]],[3,9,["H6833"]],[9,13,["H7194"]],[13,17,["H5291"]]]},{"k":13894,"v":[[0,3,["H2271"]],[3,6,["H3738"]],[6,7,["H5921"]],[7,11,["H2673"]],[11,13,["H996"]],[13,15,["H3669"]]]},{"k":13895,"v":[[0,3,["H4390"]],[3,5,["H5785"]],[5,8,["H7905"]],[8,11,["H7218"]],[11,13,["H1709"]],[13,14,["H6767"]]]},{"k":13896,"v":[[0,1,["H7760"]],[1,3,["H3709"]],[3,4,["H5921"]],[4,6,["H2142"]],[6,8,["H4421"]],[8,10,["H408"]],[10,11,["H3254"]]]},{"k":13897,"v":[[0,1,["H2005"]],[1,3,["H8431"]],[3,8,["H3576"]],[8,14,["H2904"]],[14,15,["H1571"]],[15,16,["H413"]],[16,18,["H4758"]],[18,20,[]]]},{"k":13898,"v":[[0,1,["H3808"]],[1,4,["H393"]],[4,5,["H3588"]],[5,9,["H5782"]],[9,10,["H4310"]],[10,15,["H3320"]],[15,16,["H6440"]],[16,17,[]]]},{"k":13899,"v":[[0,1,["H4310"]],[1,3,["H6923"]],[3,8,["H7999"]],[8,12,["H8478"]],[12,14,["H3605"]],[14,15,["H8064"]],[15,17,[]]]},{"k":13900,"v":[[0,3,["H3808"]],[3,4,["H2790"]],[4,6,["H905"]],[6,7,["H1697"]],[7,9,["H1369"]],[9,12,["H2433"]],[12,13,["H6187"]]]},{"k":13901,"v":[[0,1,["H4310"]],[1,3,["H1540"]],[3,5,["H6440"]],[5,8,["H3830"]],[8,10,["H4310"]],[10,12,["H935"]],[12,17,["H3718"]],[17,18,["H7448"]]]},{"k":13902,"v":[[0,1,["H4310"]],[1,3,["H6605"]],[3,5,["H1817"]],[5,8,["H6440"]],[8,10,["H8127"]],[10,12,["H367"]],[12,14,["H5439"]]]},{"k":13903,"v":[[0,2,["H650","H4043"]],[2,5,["H1346"]],[5,8,["H5462"]],[8,12,["H6862"]],[12,13,["H2368"]]]},{"k":13904,"v":[[0,1,["H259"]],[1,4,["H5066"]],[4,6,["H259"]],[6,8,["H3808"]],[8,9,["H7307"]],[9,11,["H935"]],[11,12,["H996"]],[12,13,[]]]},{"k":13905,"v":[[0,3,["H1692"]],[3,4,["H376"]],[4,6,["H251"]],[6,9,["H3920"]],[9,12,["H3808"]],[12,14,["H6504"]]]},{"k":13906,"v":[[0,3,["H5846"]],[3,5,["H216"]],[5,7,["H1984"]],[7,10,["H5869"]],[10,14,["H6079"]],[14,17,["H7837"]]]},{"k":13907,"v":[[0,4,["H4480","H6310"]],[4,5,["H1980"]],[5,7,["H3940"]],[7,9,["H3590"]],[9,11,["H784"]],[11,13,["H4422"]]]},{"k":13908,"v":[[0,4,["H4480","H5156"]],[4,5,["H3318"]],[5,6,["H6227"]],[6,11,["H5301"]],[11,12,["H1731"]],[12,14,["H100"]]]},{"k":13909,"v":[[0,2,["H5315"]],[2,3,["H3857"]],[3,4,["H1513"]],[4,7,["H3851"]],[7,9,["H3318"]],[9,12,["H4480","H6310"]]]},{"k":13910,"v":[[0,3,["H6677"]],[3,4,["H3885"]],[4,5,["H5797"]],[5,7,["H1670"]],[7,11,["H1750"]],[11,12,["H6440"]],[12,13,[]]]},{"k":13911,"v":[[0,2,["H4651"]],[2,5,["H1320"]],[5,8,["H1692"]],[8,11,["H3332"]],[11,12,["H5921"]],[12,15,["H1077"]],[15,17,["H4131"]]]},{"k":13912,"v":[[0,2,["H3820"]],[2,5,["H3332"]],[5,6,["H3644"]],[6,8,["H68"]],[8,11,["H3332"]],[11,14,["H6400"]],[14,17,["H8482"]],[17,18,[]]]},{"k":13913,"v":[[0,4,["H4480","H7613"]],[4,7,["H410"]],[7,9,["H1481"]],[9,13,["H4480","H7667"]],[13,16,["H2398"]]]},{"k":13914,"v":[[0,2,["H2719"]],[2,6,["H5381"]],[6,9,["H1097"]],[9,10,["H6965"]],[10,12,["H2595"]],[12,14,["H4551"]],[14,17,["H8302"]]]},{"k":13915,"v":[[0,2,["H2803"]],[2,3,["H1270"]],[3,5,["H8401"]],[5,7,["H5154"]],[7,9,["H7539"]],[9,10,["H6086"]]]},{"k":13916,"v":[[0,2,["H1121","H7198"]],[2,3,["H3808"]],[3,6,["H1272"]],[6,7,["H68","H7050"]],[7,9,["H2015"]],[9,13,["H7179"]]]},{"k":13917,"v":[[0,1,["H8455"]],[1,3,["H2803"]],[3,5,["H7179"]],[5,7,["H7832"]],[7,10,["H7494"]],[10,13,["H3591"]]]},{"k":13918,"v":[[0,1,["H2303"]],[1,2,["H2789"]],[2,4,["H8478"]],[4,7,["H7502"]],[7,10,["H2742"]],[10,11,["H5921"]],[11,13,["H2916"]]]},{"k":13919,"v":[[0,4,["H4688"]],[4,6,["H7570"]],[6,9,["H5518"]],[9,11,["H7760"]],[11,13,["H3220"]],[13,18,["H4841"]]]},{"k":13920,"v":[[0,4,["H5410"]],[4,6,["H215"]],[6,7,["H310"]],[7,11,["H2803"]],[11,13,["H8415"]],[13,16,["H7872"]]]},{"k":13921,"v":[[0,1,["H5921"]],[1,2,["H6083"]],[2,5,["H369"]],[5,7,["H4915"]],[7,10,["H6213"]],[10,11,["H1097"]],[11,12,["H2844"]]]},{"k":13922,"v":[[0,2,["H7200","(H853)"]],[2,3,["H3605"]],[3,4,["H1364"]],[4,6,["H1931"]],[6,9,["H4428"]],[9,10,["H5921"]],[10,11,["H3605"]],[11,13,["H1121"]],[13,15,["H7830"]]]},{"k":13923,"v":[[0,2,["H347"]],[2,3,["H6030","(H853)"]],[3,5,["H3068"]],[5,7,["H559"]]]},{"k":13924,"v":[[0,2,["H3045"]],[2,3,["H3588"]],[3,6,["H3201"]],[6,7,["H3605"]],[7,11,["H3808"]],[11,12,["H4209"]],[12,15,["H1219"]],[15,16,["H4480"]],[16,17,[]]]},{"k":13925,"v":[[0,1,["H4310"]],[1,3,["H2088"]],[3,5,["H5956"]],[5,6,["H6098"]],[6,7,["H1097"]],[7,8,["H1847"]],[8,9,["H3651"]],[9,12,["H5046"]],[12,15,["H995"]],[15,16,["H3808"]],[16,19,["H6381"]],[19,20,["H4480"]],[20,24,["H3045"]],[24,25,["H3808"]]]},{"k":13926,"v":[[0,1,["H8085"]],[1,4,["H4994"]],[4,6,["H595"]],[6,8,["H1696"]],[8,11,["H7592"]],[11,15,["H3045"]],[15,18,[]]]},{"k":13927,"v":[[0,3,["H8085"]],[3,8,["H8088"]],[8,11,["H241"]],[11,13,["H6258"]],[13,15,["H5869"]],[15,16,["H7200"]],[16,17,[]]]},{"k":13928,"v":[[0,1,["H5921","H3651"]],[1,3,["H3988"]],[3,6,["H5162"]],[6,7,["H5921"]],[7,8,["H6083"]],[8,10,["H665"]]]},{"k":13929,"v":[[0,3,["H1961"]],[3,6,["H310"]],[6,8,["H3068"]],[8,10,["H1696","(H853)"]],[10,11,["H428"]],[11,12,["H1697"]],[12,13,["H413"]],[13,14,["H347"]],[14,16,["H3068"]],[16,17,["H559"]],[17,18,["H413"]],[18,19,["H464"]],[19,21,["H8489"]],[21,23,["H639"]],[23,25,["H2734"]],[25,31,["H8147"]],[31,32,["H7453"]],[32,33,["H3588"]],[33,36,["H3808"]],[36,37,["H1696"]],[37,38,["H413"]],[38,44,["H3559"]],[44,47,["H5650"]],[47,48,["H347"]],[48,49,[]]]},{"k":13930,"v":[[0,2,["H3947"]],[2,5,["H6258"]],[5,6,["H7651"]],[6,7,["H6499"]],[7,9,["H7651"]],[9,10,["H352"]],[10,12,["H1980"]],[12,13,["H413"]],[13,15,["H5650"]],[15,16,["H347"]],[16,19,["H5927"]],[19,20,["H1157"]],[20,24,["H5930"]],[24,27,["H5650"]],[27,28,["H347"]],[28,30,["H6419"]],[30,31,["H5921"]],[31,33,["H3588","H518"]],[33,34,["H6440"]],[34,37,["H5375"]],[37,38,["H1115"]],[38,40,["H6213"]],[40,41,["H5973"]],[41,45,["H5039"]],[45,47,["H3588"]],[47,50,["H3808"]],[50,51,["H1696"]],[51,52,["H413"]],[52,58,["H3559"]],[58,61,["H5650"]],[61,62,["H347"]]]},{"k":13931,"v":[[0,2,["H464"]],[2,4,["H8489"]],[4,6,["H1085"]],[6,8,["H7747"]],[8,10,["H6691"]],[10,12,["H5284"]],[12,13,["H1980"]],[13,15,["H6213"]],[15,17,["H834"]],[17,19,["H3068"]],[19,20,["H1696","H413"]],[20,23,["H3068"]],[23,25,["H5375","H6440","(H853)"]],[25,26,["H347"]]]},{"k":13932,"v":[[0,3,["H3068"]],[3,4,["H7725","(H853)"]],[4,6,["H7622"]],[6,8,["H347"]],[8,11,["H6419"]],[11,12,["H1157"]],[12,14,["H7453"]],[14,17,["H3068"]],[17,18,["H3254"]],[18,19,["H347","(H853)"]],[19,20,["H4932"]],[20,26,["H3605","H834"]]]},{"k":13933,"v":[[0,2,["H935"]],[2,4,["H413"]],[4,6,["H3605"]],[6,8,["H251"]],[8,10,["H3605"]],[10,12,["H269"]],[12,14,["H3605"]],[14,21,["H3045"]],[21,22,["H6440"]],[22,25,["H398"]],[25,26,["H3899"]],[26,27,["H5973"]],[27,31,["H1004"]],[31,34,["H5110"]],[34,37,["H5162"]],[37,39,["H5921"]],[39,40,["H3605"]],[40,42,["H7451"]],[42,43,["H834"]],[43,45,["H3068"]],[45,47,["H935"]],[47,48,["H5921"]],[48,51,["H376"]],[51,53,["H5414"]],[53,58,["H7192","H259"]],[58,61,["H376"]],[61,62,["H259"]],[62,63,["H5141"]],[63,65,["H2091"]]]},{"k":13934,"v":[[0,3,["H3068"]],[3,4,["H1288","(H853)"]],[4,7,["H319"]],[7,9,["H347"]],[9,13,["H4480","H7225"]],[13,16,["H1961"]],[16,17,["H702","H6240"]],[17,18,["H505"]],[18,19,["H6629"]],[19,21,["H8337"]],[21,22,["H505"]],[22,23,["H1581"]],[23,26,["H505"]],[26,27,["H6776"]],[27,29,["H1241"]],[29,32,["H505"]],[32,34,["H860"]]]},{"k":13935,"v":[[0,2,["H1961"]],[2,4,["H7658"]],[4,5,["H1121"]],[5,7,["H7969"]],[7,8,["H1323"]]]},{"k":13936,"v":[[0,3,["H7121"]],[3,5,["H8034"]],[5,8,["H259"]],[8,9,["H3224"]],[9,12,["H8034"]],[12,15,["H8145"]],[15,16,["H7103"]],[16,19,["H8034"]],[19,22,["H7992"]],[22,23,["H7163"]]]},{"k":13937,"v":[[0,3,["H3605"]],[3,5,["H776"]],[5,7,["H3808"]],[7,8,["H802"]],[8,9,["H4672"]],[9,11,["H3303"]],[11,14,["H1323"]],[14,16,["H347"]],[16,19,["H1"]],[19,20,["H5414"]],[20,22,["H5159"]],[22,23,["H8432"]],[23,25,["H251"]]]},{"k":13938,"v":[[0,1,["H310"]],[1,2,["H2063"]],[2,3,["H2421"]],[3,4,["H347"]],[4,6,["H3967"]],[6,8,["H705"]],[8,9,["H8141"]],[9,11,["H7200","(H853)"]],[11,13,["H1121"]],[13,14,["(H853)"]],[14,16,["H1121"]],[16,17,["H1121"]],[17,19,["H702"]],[19,20,["H1755"]]]},{"k":13939,"v":[[0,2,["H347"]],[2,3,["H4191"]],[3,5,["H2205"]],[5,7,["H7649"]],[7,9,["H3117"]]]},{"k":13940,"v":[[0,1,["H835"]],[1,4,["H376"]],[4,5,["H834"]],[5,6,["H1980"]],[6,7,["H3808"]],[7,10,["H6098"]],[10,13,["H7563"]],[13,14,["H3808"]],[14,15,["H5975"]],[15,18,["H1870"]],[18,20,["H2400"]],[20,21,["H3808"]],[21,22,["H3427"]],[22,25,["H4186"]],[25,28,["H3887"]]]},{"k":13941,"v":[[0,1,["H3588","H518"]],[1,3,["H2656"]],[3,7,["H8451"]],[7,10,["H3068"]],[10,14,["H8451"]],[14,17,["H1897"]],[17,18,["H3119"]],[18,20,["H3915"]]]},{"k":13942,"v":[[0,4,["H1961"]],[4,7,["H6086"]],[7,8,["H8362"]],[8,9,["H5921"]],[9,11,["H6388"]],[11,13,["H4325"]],[13,14,["H834"]],[14,16,["H5414"]],[16,18,["H6529"]],[18,21,["H6256"]],[21,23,["H5929"]],[23,26,["H3808"]],[26,27,["H5034"]],[27,29,["H3605","H834"]],[29,31,["H6213"]],[31,33,["H6743"]]]},{"k":13943,"v":[[0,2,["H7563"]],[2,4,["H3808"]],[4,5,["H3651"]],[5,6,["H3588","H518"]],[6,10,["H4671"]],[10,11,["H834"]],[11,13,["H7307"]],[13,15,["H5086"]]]},{"k":13944,"v":[[0,1,["H5921","H3651"]],[1,3,["H7563"]],[3,5,["H3808"]],[5,6,["H6965"]],[6,9,["H4941"]],[9,11,["H2400"]],[11,14,["H5712"]],[14,17,["H6662"]]]},{"k":13945,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,4,["H3045"]],[4,6,["H1870"]],[6,9,["H6662"]],[9,12,["H1870"]],[12,15,["H7563"]],[15,17,["H6"]]]},{"k":13946,"v":[[0,1,["H4100"]],[1,4,["H1471"]],[4,5,["H7283"]],[5,8,["H3816"]],[8,9,["H1897"]],[9,12,["H7385"]]]},{"k":13947,"v":[[0,2,["H4428"]],[2,5,["H776"]],[5,7,["H3320"]],[7,10,["H7336"]],[10,12,["H3245"]],[12,13,["H3162"]],[13,14,["H5921"]],[14,16,["H3068"]],[16,18,["H5921"]],[18,20,["H4899"]],[20,21,[]]]},{"k":13948,"v":[[0,6,["H5423","(H853)","H4147"]],[6,9,["H7993"]],[9,11,["H5688"]],[11,12,["H4480"]],[12,13,[]]]},{"k":13949,"v":[[0,3,["H3427"]],[3,6,["H8064"]],[6,8,["H7832"]],[8,10,["H136"]],[10,15,["H3932"]]]},{"k":13950,"v":[[0,1,["H227"]],[1,4,["H1696"]],[4,5,["H413"]],[5,9,["H639"]],[9,11,["H926"]],[11,16,["H2740"]]]},{"k":13951,"v":[[0,3,["H589"]],[3,4,["H5258"]],[4,6,["H4428"]],[6,7,["H5921"]],[7,9,["H6944"]],[9,10,["H2022"]],[10,12,["H6726"]]]},{"k":13952,"v":[[0,3,["H5608","H413"]],[3,5,["H2706"]],[5,7,["H3068"]],[7,9,["H559"]],[9,10,["H413"]],[10,12,["H859"]],[12,15,["H1121"]],[15,17,["H3117"]],[17,19,["H589"]],[19,20,["H3205"]],[20,21,[]]]},{"k":13953,"v":[[0,1,["H7592"]],[1,2,["H4480"]],[2,7,["H5414"]],[7,10,["H1471"]],[10,13,["H5159"]],[13,17,["H657"]],[17,20,["H776"]],[20,23,["H272"]]]},{"k":13954,"v":[[0,3,["H7489"]],[3,7,["H7626"]],[7,9,["H1270"]],[9,15,["H5310"]],[15,18,["H3335"]],[18,19,["H3627"]]]},{"k":13955,"v":[[0,2,["H7919"]],[2,3,["H6258"]],[3,7,["H4428"]],[7,9,["H3256"]],[9,11,["H8199"]],[11,14,["H776"]]]},{"k":13956,"v":[[0,1,["H5647","(H853)"]],[1,3,["H3068"]],[3,5,["H3374"]],[5,7,["H1523"]],[7,9,["H7461"]]]},{"k":13957,"v":[[0,1,["H5401"]],[1,3,["H1248"]],[3,4,["H6435"]],[4,7,["H599"]],[7,10,["H6"]],[10,13,["H1870"]],[13,14,["H3588"]],[14,16,["H639"]],[16,18,["H1197"]],[18,21,["H4592"]],[21,22,["H835"]],[22,24,["H3605"]],[24,29,["H2620"]],[29,31,[]]]},{"k":13958,"v":[[0,1,["H3068"]],[1,2,["H4100"]],[2,5,["H7231"]],[5,7,["H6862"]],[7,9,["H7227"]],[9,14,["H6965"]],[14,15,["H5921"]],[15,16,[]]]},{"k":13959,"v":[[0,1,["H7227"]],[1,5,["H559"]],[5,8,["H5315"]],[8,11,["H369"]],[11,12,["H3444"]],[12,16,["H430"]],[16,17,["H5542"]]]},{"k":13960,"v":[[0,2,["H859"]],[2,4,["H3068"]],[4,7,["H4043"]],[7,8,["H1157"]],[8,11,["H3519"]],[11,15,["H7311"]],[15,18,["H7218"]]]},{"k":13961,"v":[[0,2,["H7121"]],[2,3,["H413"]],[3,5,["H3068"]],[5,8,["H6963"]],[8,11,["H6030"]],[11,16,["H6944"]],[16,17,["H4480","H2022"]],[17,18,["H5542"]]]},{"k":13962,"v":[[0,1,["H589"]],[1,4,["H7901"]],[4,6,["H3462"]],[6,8,["H6974"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,12,["H5564"]],[12,13,[]]]},{"k":13963,"v":[[0,3,["H3808"]],[3,5,["H3372"]],[5,8,["H4480","H7233"]],[8,10,["H5971"]],[10,11,["H834"]],[11,13,["H7896"]],[13,15,["H5921"]],[15,18,["H5439"]]]},{"k":13964,"v":[[0,1,["H6965"]],[1,3,["H3068"]],[3,4,["H3467"]],[4,8,["H430"]],[8,9,["H3588"]],[9,12,["H5221","(H853)"]],[12,13,["H3605"]],[13,15,["H341"]],[15,19,["H3895"]],[19,22,["H7665"]],[22,24,["H8127"]],[24,27,["H7563"]]]},{"k":13965,"v":[[0,1,["H3444"]],[1,5,["H3068"]],[5,7,["H1293"]],[7,9,["H5921"]],[9,11,["H5971"]],[11,12,["H5542"]]]},{"k":13966,"v":[[0,1,["H6030"]],[1,5,["H7121"]],[5,7,["H430"]],[7,10,["H6664"]],[10,13,["H7337"]],[13,19,["H6862"]],[19,21,["H2603"]],[21,25,["H8085"]],[25,27,["H8605"]]]},{"k":13967,"v":[[0,3,["H1121"]],[3,5,["H376"]],[5,7,["H5704","H4100"]],[7,12,["H3519"]],[12,14,["H3639"]],[14,19,["H157"]],[19,20,["H7385"]],[20,23,["H1245"]],[23,24,["H3577"]],[24,25,["H5542"]]]},{"k":13968,"v":[[0,2,["H3045"]],[2,3,["H3588"]],[3,5,["H3068"]],[5,8,["H6395"]],[8,12,["H2623"]],[12,16,["H3068"]],[16,18,["H8085"]],[18,21,["H7121"]],[21,22,["H413"]],[22,23,[]]]},{"k":13969,"v":[[0,3,["H7264"]],[3,5,["H2398"]],[5,6,["H408"]],[6,7,["H559"]],[7,11,["H3824"]],[11,12,["H5921"]],[12,14,["H4904"]],[14,17,["H1826"]],[17,18,["H5542"]]]},{"k":13970,"v":[[0,1,["H2076"]],[1,3,["H2077"]],[3,5,["H6664"]],[5,9,["H982"]],[9,10,["H413"]],[10,12,["H3068"]]]},{"k":13971,"v":[[0,3,["H7227"]],[3,5,["H559"]],[5,6,["H4310"]],[6,8,["H7200"]],[8,11,["H2896"]],[11,12,["H3068"]],[12,15,["H5375"]],[15,17,["H216"]],[17,20,["H6440"]],[20,21,["H5921"]],[21,22,[]]]},{"k":13972,"v":[[0,3,["H5414"]],[3,4,["H8057"]],[4,7,["H3820"]],[7,12,["H4480","H6256"]],[12,15,["H1715"]],[15,18,["H8492"]],[18,19,["H7231"]]]},{"k":13973,"v":[[0,3,["H3162"]],[3,6,["H7901"]],[6,8,["H7965"]],[8,10,["H3462"]],[10,11,["H3588"]],[11,12,["H859"]],[12,13,["H3068"]],[13,14,["H910"]],[14,17,["H3427"]],[17,19,["H983"]]]},{"k":13974,"v":[[0,2,["H238"]],[2,5,["H561"]],[5,7,["H3068"]],[7,8,["H995"]],[8,10,["H1901"]]]},{"k":13975,"v":[[0,1,["H7181"]],[1,4,["H6963"]],[4,7,["H7773"]],[7,9,["H4428"]],[9,12,["H430"]],[12,13,["H3588"]],[13,14,["H413"]],[14,18,["H6419"]]]},{"k":13976,"v":[[0,2,["H6963"]],[2,5,["H8085"]],[5,8,["H1242"]],[8,10,["H3068"]],[10,13,["H1242"]],[13,16,["H6186"]],[16,24,["H6822"]]]},{"k":13977,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H3808"]],[4,6,["H410"]],[6,9,["H2655"]],[9,11,["H7562"]],[11,12,["H3808"]],[12,14,["H7451"]],[14,15,["H1481"]],[15,17,[]]]},{"k":13978,"v":[[0,2,["H1984"]],[2,4,["H3808"]],[4,5,["H3320"]],[5,6,["H5048"]],[6,8,["H5869"]],[8,10,["H8130"]],[10,11,["H3605"]],[11,12,["H6466"]],[12,14,["H205"]]]},{"k":13979,"v":[[0,3,["H6"]],[3,6,["H1696"]],[6,7,["H3577"]],[7,9,["H3068"]],[9,11,["H8581"]],[11,13,["H1818"]],[13,15,["H4820"]],[15,16,["H376"]]]},{"k":13980,"v":[[0,4,["H589"]],[4,7,["H935"]],[7,10,["H1004"]],[10,13,["H7230"]],[13,16,["H2617"]],[16,20,["H3374"]],[20,23,["H7812"]],[23,24,["H413"]],[24,26,["H6944"]],[26,27,["H1964"]]]},{"k":13981,"v":[[0,1,["H5148"]],[1,4,["H3068"]],[4,7,["H6666"]],[7,9,["H4616"]],[9,11,["H8324"]],[11,14,["H1870"]],[14,15,["H3474"]],[15,18,["H6440"]]]},{"k":13982,"v":[[0,1,["H3588"]],[1,4,["H369"]],[4,5,["H3559"]],[5,8,["H6310"]],[8,11,["H7130"]],[11,14,["H1942"]],[14,16,["H1627"]],[16,19,["H6605"]],[19,20,["H6913"]],[20,22,["H2505"]],[22,25,["H3956"]]]},{"k":13983,"v":[[0,1,["H816"]],[1,5,["H430"]],[5,8,["H5307"]],[8,12,["H4480","H4156"]],[12,15,["H5080"]],[15,18,["H7230"]],[18,21,["H6588"]],[21,22,["H3588"]],[22,25,["H4784"]],[25,27,[]]]},{"k":13984,"v":[[0,3,["H3605"]],[3,8,["H2620"]],[8,11,["H8055"]],[11,14,["H5769"]],[14,17,["H7442"]],[17,20,["H5526"]],[20,21,["H5921"]],[21,26,["H157"]],[26,28,["H8034"]],[28,30,["H5970"]],[30,32,[]]]},{"k":13985,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,3,["H3068"]],[3,5,["H1288"]],[5,7,["H6662"]],[7,9,["H7522"]],[9,12,["H5849"]],[12,17,["H6793"]]]},{"k":13986,"v":[[0,2,["H3068"]],[2,3,["H3198"]],[3,5,["H408"]],[5,8,["H639"]],[8,9,["H408"]],[9,10,["H3256"]],[10,15,["H2534"]]]},{"k":13987,"v":[[0,2,["H2603"]],[2,6,["H3068"]],[6,7,["H3588"]],[7,8,["H589"]],[8,10,["H536"]],[10,12,["H3068"]],[12,13,["H7495"]],[13,15,["H3588"]],[15,17,["H6106"]],[17,19,["H926"]]]},{"k":13988,"v":[[0,2,["H5315"]],[2,5,["H3966"]],[5,6,["H926"]],[6,8,["H859"]],[8,10,["H3068"]],[10,12,["H5704","H4970"]]]},{"k":13989,"v":[[0,1,["H7725"]],[1,3,["H3068"]],[3,4,["H2502"]],[4,6,["H5315"]],[6,8,["H3467"]],[8,13,["H4616","H2617"]]]},{"k":13990,"v":[[0,1,["H3588"]],[1,3,["H4194"]],[3,6,["H369"]],[6,7,["H2143"]],[7,12,["H7585"]],[12,13,["H4310"]],[13,17,["H3034"]]]},{"k":13991,"v":[[0,3,["H3021"]],[3,6,["H585"]],[6,7,["H3605"]],[7,9,["H3915"]],[9,13,["H4296"]],[13,15,["H7811"]],[15,17,["H4529"]],[17,19,["H6210"]],[19,22,["H1832"]]]},{"k":13992,"v":[[0,2,["H5869"]],[2,4,["H6244"]],[4,7,["H4480","H3708"]],[7,10,["H6275"]],[10,13,["H3605"]],[13,15,["H6887"]]]},{"k":13993,"v":[[0,1,["H5493"]],[1,2,["H4480"]],[2,4,["H3605"]],[4,6,["H6466"]],[6,8,["H205"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,13,["H8085"]],[13,15,["H6963"]],[15,18,["H1065"]]]},{"k":13994,"v":[[0,2,["H3068"]],[2,4,["H8085"]],[4,6,["H8467"]],[6,8,["H3068"]],[8,10,["H3947"]],[10,12,["H8605"]]]},{"k":13995,"v":[[0,2,["H3605"]],[2,4,["H341"]],[4,6,["H954"]],[6,8,["H3966"]],[8,9,["H926"]],[9,12,["H7725"]],[12,15,["H954"]],[15,16,["H7281"]]]},{"k":13996,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,11,["H2620"]],[11,12,["H3467"]],[12,15,["H4480","H3605"]],[15,18,["H7291"]],[18,21,["H5337"]],[21,22,[]]]},{"k":13997,"v":[[0,1,["H6435"]],[1,3,["H2963"]],[3,5,["H5315"]],[5,8,["H738"]],[8,12,["H6561"]],[12,16,["H369"]],[16,18,["H5337"]]]},{"k":13998,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,5,["H518"]],[5,8,["H6213"]],[8,9,["H2063"]],[9,10,["H518"]],[10,12,["H3426"]],[12,13,["H5766"]],[13,16,["H3709"]]]},{"k":13999,"v":[[0,1,["H518"]],[1,4,["H1580"]],[4,5,["H7451"]],[5,11,["H7999"]],[11,17,["H2502"]],[17,21,["H7387"]],[21,24,["H6887"]]]},{"k":14000,"v":[[0,3,["H341"]],[3,4,["H7291"]],[4,6,["H5315"]],[6,8,["H5381"]],[8,14,["H7429"]],[14,16,["H2416"]],[16,19,["H776"]],[19,21,["H7931"]],[21,23,["H3519"]],[23,26,["H6083"]],[26,27,["H5542"]]]},{"k":14001,"v":[[0,1,["H6965"]],[1,3,["H3068"]],[3,6,["H639"]],[6,9,["H5375"]],[9,13,["H5678"]],[13,16,["H6887"]],[16,18,["H5782"]],[18,19,["H413"]],[19,23,["H4941"]],[23,27,["H6680"]]]},{"k":14002,"v":[[0,4,["H5712"]],[4,7,["H3816"]],[7,10,["H5437"]],[10,13,["H5921"]],[13,15,["H7725"]],[15,18,["H4791"]]]},{"k":14003,"v":[[0,2,["H3068"]],[2,4,["H1777"]],[4,6,["H5971"]],[6,7,["H8199"]],[7,10,["H3068"]],[10,14,["H6664"]],[14,19,["H8537"]],[19,22,["H5921"]],[22,23,[]]]},{"k":14004,"v":[[0,1,["H4994"]],[1,4,["H7451"]],[4,7,["H7563"]],[7,11,["H1584"]],[11,13,["H3559"]],[13,15,["H6662"]],[15,18,["H6662"]],[18,19,["H430"]],[19,20,["H974"]],[20,22,["H3820"]],[22,24,["H3629"]]]},{"k":14005,"v":[[0,2,["H4043"]],[2,4,["H5921"]],[4,5,["H430"]],[5,7,["H3467"]],[7,9,["H3477"]],[9,11,["H3820"]]]},{"k":14006,"v":[[0,1,["H430"]],[1,2,["H8199"]],[2,4,["H6662"]],[4,6,["H410"]],[6,8,["H2194"]],[8,12,["H3605"]],[12,13,["H3117"]]]},{"k":14007,"v":[[0,1,["H518"]],[1,3,["H7725"]],[3,4,["H3808"]],[4,7,["H3913"]],[7,9,["H2719"]],[9,12,["H1869"]],[12,14,["H7198"]],[14,18,["H3559"]]]},{"k":14008,"v":[[0,4,["H3559"]],[4,8,["H3627"]],[8,10,["H4194"]],[10,12,["H6466"]],[12,14,["H2671"]],[14,17,["H1814"]]]},{"k":14009,"v":[[0,1,["H2009"]],[1,3,["H2254"]],[3,5,["H205"]],[5,8,["H2029"]],[8,9,["H5999"]],[9,12,["H3205"]],[12,13,["H8267"]]]},{"k":14010,"v":[[0,2,["H3738"]],[2,4,["H953"]],[4,6,["H2658"]],[6,10,["H5307"]],[10,13,["H7845"]],[13,16,["H6466"]]]},{"k":14011,"v":[[0,2,["H5999"]],[2,4,["H7725"]],[4,8,["H7218"]],[8,12,["H2555"]],[12,15,["H3381"]],[15,16,["H5921"]],[16,19,["H6936"]]]},{"k":14012,"v":[[0,3,["H3034"]],[3,5,["H3068"]],[5,9,["H6664"]],[9,13,["H2167"]],[13,16,["H8034"]],[16,19,["H3068"]],[19,21,["H5945"]]]},{"k":14013,"v":[[0,2,["H3068"]],[2,4,["H113"]],[4,5,["H4100"]],[5,6,["H117"]],[6,9,["H8034"]],[9,11,["H3605"]],[11,13,["H776"]],[13,14,["H834"]],[14,16,["H5414"]],[16,18,["H1935"]],[18,19,["H5921"]],[19,21,["H8064"]]]},{"k":14014,"v":[[0,4,["H4480","H6310"]],[4,6,["H5768"]],[6,8,["H3243"]],[8,11,["H3245"]],[11,12,["H5797"]],[12,14,["H4616"]],[14,16,["H6887"]],[16,20,["H7673"]],[20,22,["H341"]],[22,25,["H5358"]]]},{"k":14015,"v":[[0,1,["H3588"]],[1,3,["H7200"]],[3,5,["H8064"]],[5,7,["H4639"]],[7,10,["H676"]],[10,12,["H3394"]],[12,15,["H3556"]],[15,16,["H834"]],[16,19,["H3559"]]]},{"k":14016,"v":[[0,1,["H4100"]],[1,3,["H582"]],[3,4,["H3588"]],[4,7,["H2142"]],[7,12,["H1121"]],[12,14,["H120"]],[14,15,["H3588"]],[15,17,["H6485"]],[17,18,[]]]},{"k":14017,"v":[[0,8,["H2637","H4592"]],[8,11,["H4480","H430"]],[11,14,["H5849"]],[14,17,["H3519"]],[17,19,["H1926"]]]},{"k":14018,"v":[[0,6,["H4910"]],[6,9,["H4639"]],[9,12,["H3027"]],[12,15,["H7896"]],[15,16,["H3605"]],[16,18,["H8478"]],[18,20,["H7272"]]]},{"k":14019,"v":[[0,1,["H3605"]],[1,2,["H6792"]],[2,4,["H504"]],[4,5,["H1571"]],[5,8,["H929"]],[8,11,["H7704"]]]},{"k":14020,"v":[[0,2,["H6833"]],[2,5,["H8064"]],[5,8,["H1709"]],[8,11,["H3220"]],[11,15,["H5674"]],[15,17,["H734"]],[17,20,["H3220"]]]},{"k":14021,"v":[[0,2,["H3068"]],[2,4,["H113"]],[4,5,["H4100"]],[5,6,["H117"]],[6,9,["H8034"]],[9,11,["H3605"]],[11,13,["H776"]]]},{"k":14022,"v":[[0,3,["H3034"]],[3,6,["H3068"]],[6,9,["H3605"]],[9,10,["H3820"]],[10,14,["H5608"]],[14,15,["H3605"]],[15,18,["H6381"]]]},{"k":14023,"v":[[0,4,["H8055"]],[4,6,["H5970"]],[6,12,["H2167"]],[12,15,["H8034"]],[15,19,["H5945"]]]},{"k":14024,"v":[[0,3,["H341"]],[3,5,["H7725"]],[5,6,["H268"]],[6,9,["H3782"]],[9,11,["H6"]],[11,14,["H4480","H6440"]]]},{"k":14025,"v":[[0,1,["H3588"]],[1,4,["H6213"]],[4,6,["H4941"]],[6,9,["H1779"]],[9,11,["H3427"]],[11,14,["H3678"]],[14,15,["H8199"]],[15,16,["H6664"]]]},{"k":14026,"v":[[0,3,["H1605"]],[3,5,["H1471"]],[5,8,["H6"]],[8,10,["H7563"]],[10,14,["H4229"]],[14,16,["H8034"]],[16,18,["H5769"]],[18,20,["H5703"]]]},{"k":14027,"v":[[0,3,["H341"]],[3,4,["H2723"]],[4,10,["H8552","H5331"]],[10,14,["H5428"]],[14,15,["H5892"]],[15,17,["H2143"]],[17,19,["H6"]],[19,21,["H1992"]]]},{"k":14028,"v":[[0,3,["H3068"]],[3,5,["H3427"]],[5,7,["H5769"]],[7,10,["H3559"]],[10,12,["H3678"]],[12,14,["H4941"]]]},{"k":14029,"v":[[0,2,["H1931"]],[2,4,["H8199"]],[4,6,["H8398"]],[6,8,["H6664"]],[8,12,["H1777"]],[12,15,["H3816"]],[15,17,["H4339"]]]},{"k":14030,"v":[[0,2,["H3068"]],[2,5,["H1961"]],[5,7,["H4869"]],[7,10,["H1790"]],[10,12,["H4869"]],[12,14,["H6256"]],[14,16,["H6869"]]]},{"k":14031,"v":[[0,4,["H3045"]],[4,6,["H8034"]],[6,10,["H982"]],[10,13,["H3588"]],[13,15,["H3068"]],[15,17,["H3808"]],[17,18,["H5800"]],[18,21,["H1875"]],[21,22,[]]]},{"k":14032,"v":[[0,2,["H2167"]],[2,5,["H3068"]],[5,7,["H3427"]],[7,9,["H6726"]],[9,10,["H5046"]],[10,13,["H5971"]],[13,15,["H5949"]]]},{"k":14033,"v":[[0,1,["H3588"]],[1,4,["H1875"]],[4,6,["H1818"]],[6,8,["H2142"]],[8,11,["H7911"]],[11,12,["H3808"]],[12,14,["H6818"]],[14,17,["H6035"]]]},{"k":14034,"v":[[0,2,["H2603"]],[2,6,["H3068"]],[6,7,["H7200"]],[7,9,["H6040"]],[9,16,["H4480","H8130"]],[16,22,["H7311"]],[22,25,["H4480","H8179"]],[25,27,["H4194"]]]},{"k":14035,"v":[[0,1,["H4616"]],[1,5,["H5608"]],[5,6,["H3605"]],[6,8,["H8416"]],[8,11,["H8179"]],[11,14,["H1323"]],[14,16,["H6726"]],[16,19,["H1523"]],[19,22,["H3444"]]]},{"k":14036,"v":[[0,2,["H1471"]],[2,5,["H2883"]],[5,8,["H7845"]],[8,11,["H6213"]],[11,14,["H7568"]],[14,15,["H2098"]],[15,17,["H2934"]],[17,21,["H7272"]],[21,22,["H3920"]]]},{"k":14037,"v":[[0,2,["H3068"]],[2,4,["H3045"]],[4,7,["H4941"]],[7,10,["H6213"]],[10,12,["H7563"]],[12,14,["H3369"]],[14,17,["H6467"]],[17,21,["H3709"]],[21,22,["H1902"]],[22,23,["H5542"]]]},{"k":14038,"v":[[0,2,["H7563"]],[2,5,["H7725"]],[5,7,["H7585"]],[7,9,["H3605"]],[9,11,["H1471"]],[11,13,["H7913"]],[13,14,["H430"]]]},{"k":14039,"v":[[0,1,["H3588"]],[1,3,["H34"]],[3,5,["H3808"]],[5,6,["H5331"]],[6,8,["H7911"]],[8,10,["H8615"]],[10,13,["H6041"]],[13,16,["H6"]],[16,18,["H5703"]]]},{"k":14040,"v":[[0,1,["H6965"]],[1,3,["H3068"]],[3,5,["H408"]],[5,6,["H582"]],[6,7,["H5810"]],[7,10,["H1471"]],[10,12,["H8199"]],[12,13,["H5921"]],[13,15,["H6440"]]]},{"k":14041,"v":[[0,1,["H7896"]],[1,4,["H4172"]],[4,6,["H3068"]],[6,9,["H1471"]],[9,11,["H3045"]],[11,12,["H1992"]],[12,16,["H582"]],[16,17,["H5542"]]]},{"k":14042,"v":[[0,1,["H4100"]],[1,2,["H5975"]],[2,5,["H7350"]],[5,7,["H3068"]],[7,9,["H5956"]],[9,13,["H6256"]],[13,15,["H6869"]]]},{"k":14043,"v":[[0,2,["H7563"]],[2,5,["H1346"]],[5,7,["H1814"]],[7,9,["H6041"]],[9,13,["H8610"]],[13,16,["H4209"]],[16,17,["H2098"]],[17,20,["H2803"]]]},{"k":14044,"v":[[0,1,["H3588"]],[1,3,["H7563"]],[3,4,["H1984"]],[4,5,["H5921"]],[5,7,["H5315"]],[7,8,["H8378"]],[8,10,["H1288"]],[10,12,["H1214"]],[12,15,["H3068"]],[15,16,["H5006"]]]},{"k":14045,"v":[[0,2,["H7563"]],[2,5,["H1363"]],[5,8,["H639"]],[8,10,["H1077"]],[10,11,["H1875"]],[11,14,["H430"]],[14,16,["H369"]],[16,18,["H3605"]],[18,20,["H4209"]]]},{"k":14046,"v":[[0,2,["H1870"]],[2,4,["H3605","H6256"]],[4,5,["H2342"]],[5,7,["H4941"]],[7,10,["H4791"]],[10,14,["H4480","H5048"]],[14,17,["H3605"]],[17,19,["H6887"]],[19,21,["H6315"]],[21,23,[]]]},{"k":14047,"v":[[0,3,["H559"]],[3,6,["H3820"]],[6,9,["H1077"]],[9,11,["H4131"]],[11,15,["H1755","H1755","H834","H3808"]],[15,18,["H7451"]]]},{"k":14048,"v":[[0,2,["H6310"]],[2,4,["H4390"]],[4,6,["H423"]],[6,8,["H4820"]],[8,10,["H8496"]],[10,11,["H8478"]],[11,13,["H3956"]],[13,15,["H5999"]],[15,17,["H205"]]]},{"k":14049,"v":[[0,2,["H3427"]],[2,6,["H3993"]],[6,9,["H2691"]],[9,13,["H4565"]],[13,16,["H2026"]],[16,18,["H5355"]],[18,20,["H5869"]],[20,23,["H6845"]],[23,26,["H2489"]]]},{"k":14050,"v":[[0,4,["H693"]],[4,5,["H4565"]],[5,8,["H738"]],[8,11,["H5520"]],[11,15,["H693"]],[15,17,["H2414"]],[17,19,["H6041"]],[19,22,["H2414"]],[22,24,["H6041"]],[24,27,["H4900"]],[27,31,["H7568"]]]},{"k":14051,"v":[[0,2,["H1794"]],[2,4,["H7817"]],[4,8,["H2489"]],[8,10,["H5307"]],[10,14,["H6099"]]]},{"k":14052,"v":[[0,3,["H559"]],[3,6,["H3820"]],[6,7,["H410"]],[7,9,["H7911"]],[9,11,["H5641"]],[11,13,["H6440"]],[13,16,["H1077","H5331"]],[16,17,["H7200"]],[17,18,[]]]},{"k":14053,"v":[[0,1,["H6965"]],[1,3,["H3068"]],[3,5,["H410"]],[5,7,["H5375"]],[7,9,["H3027"]],[9,10,["H7911"]],[10,11,["H408"]],[11,13,["H6035"]]]},{"k":14054,"v":[[0,1,["H5921","H4100"]],[1,4,["H7563"]],[4,5,["H5006"]],[5,6,["H430"]],[6,9,["H559"]],[9,12,["H3820"]],[12,15,["H3808"]],[15,16,["H1875"]],[16,17,[]]]},{"k":14055,"v":[[0,3,["H7200"]],[3,5,["H3588"]],[5,6,["H859"]],[6,7,["H5027"]],[7,8,["H5999"]],[8,10,["H3708"]],[10,12,["H5414"]],[12,16,["H3027"]],[16,18,["H2489"]],[18,19,["H5800"]],[19,21,["H5921"]],[21,23,["H859"]],[23,24,["H1961"]],[24,26,["H5826"]],[26,29,["H3490"]]]},{"k":14056,"v":[[0,1,["H7665"]],[1,4,["H2220"]],[4,7,["H7563"]],[7,10,["H7451"]],[10,13,["H1875"]],[13,15,["H7562"]],[15,18,["H4672"]],[18,19,["H1077"]]]},{"k":14057,"v":[[0,2,["H3068"]],[2,4,["H4428"]],[4,6,["H5769"]],[6,8,["H5703"]],[8,10,["H1471"]],[10,12,["H6"]],[12,16,["H4480","H776"]]]},{"k":14058,"v":[[0,1,["H3068"]],[1,4,["H8085"]],[4,6,["H8378"]],[6,9,["H6035"]],[9,12,["H3559"]],[12,14,["H3820"]],[14,19,["H241"]],[19,21,["H7181"]]]},{"k":14059,"v":[[0,2,["H8199"]],[2,4,["H3490"]],[4,7,["H1790"]],[7,10,["H582"]],[10,11,["H4480"]],[11,13,["H776"]],[13,15,["H1077"]],[15,16,["H3254","H5750"]],[16,17,["H6206"]]]},{"k":14060,"v":[[0,3,["H3068"]],[3,7,["H2620"]],[7,8,["H349"]],[8,9,["H559"]],[9,13,["H5315"]],[13,14,["H5110"]],[14,17,["H6833"]],[17,20,["H2022"]]]},{"k":14061,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H7563"]],[4,5,["H1869"]],[5,7,["H7198"]],[7,10,["H3559"]],[10,12,["H2671"]],[12,13,["H5921"]],[13,15,["H3499"]],[15,19,["H1119","H652"]],[19,20,["H3384"]],[20,23,["H3477"]],[23,25,["H3820"]]]},{"k":14062,"v":[[0,1,["H3588"]],[1,3,["H8356"]],[3,5,["H2040"]],[5,6,["H4100"]],[6,9,["H6662"]],[9,10,["H6466"]]]},{"k":14063,"v":[[0,2,["H3068"]],[2,6,["H6944"]],[6,7,["H1964"]],[7,9,["H3068"]],[9,10,["H3678"]],[10,13,["H8064"]],[13,15,["H5869"]],[15,16,["H2372"]],[16,18,["H6079"]],[18,19,["H974"]],[19,21,["H1121"]],[21,23,["H120"]]]},{"k":14064,"v":[[0,2,["H3068"]],[2,3,["H974"]],[3,5,["H6662"]],[5,8,["H7563"]],[8,12,["H157"]],[12,13,["H2555"]],[13,15,["H5315"]],[15,16,["H8130"]]]},{"k":14065,"v":[[0,1,["H5921"]],[1,3,["H7563"]],[3,6,["H4305"]],[6,7,["H6341"]],[7,8,["H784"]],[8,10,["H1614"]],[10,13,["H2152"]],[13,14,["H7307"]],[14,19,["H4521"]],[19,22,["H3563"]]]},{"k":14066,"v":[[0,1,["H3588"]],[1,3,["H6662"]],[3,4,["H3068"]],[4,5,["H157"]],[5,6,["H6666"]],[6,8,["H6440"]],[8,10,["H2372"]],[10,12,["H3477"]]]},{"k":14067,"v":[[0,1,["H3467"]],[1,2,["H3068"]],[2,3,["H3588"]],[3,6,["H2623"]],[6,7,["H1584"]],[7,8,["H3588"]],[8,10,["H539"]],[10,11,["H6461"]],[11,15,["H4480","H1121"]],[15,17,["H120"]]]},{"k":14068,"v":[[0,2,["H1696"]],[2,3,["H7723"]],[3,5,["H376"]],[5,6,["H854"]],[6,8,["H7453"]],[8,10,["H2513"]],[10,11,["H8193"]],[11,16,["H3820","H3820"]],[16,19,["H1696"]]]},{"k":14069,"v":[[0,2,["H3068"]],[2,5,["H3772"]],[5,6,["H3605"]],[6,7,["H2513"]],[7,8,["H8193"]],[8,11,["H3956"]],[11,13,["H1696"]],[13,15,["H1419"]]]},{"k":14070,"v":[[0,1,["H834"]],[1,3,["H559"]],[3,6,["H3956"]],[6,9,["H1396"]],[9,11,["H8193"]],[11,15,["H4310"]],[15,17,["H113"]],[17,19,[]]]},{"k":14071,"v":[[0,3,["H4480","H7701"]],[3,6,["H6041"]],[6,9,["H4480","H603"]],[9,12,["H34"]],[12,13,["H6258"]],[13,16,["H6965"]],[16,17,["H559"]],[17,19,["H3068"]],[19,22,["H7896"]],[22,25,["H3468"]],[25,29,["H6315"]],[29,31,[]]]},{"k":14072,"v":[[0,2,["H565"]],[2,5,["H3068"]],[5,7,["H2889"]],[7,8,["H565"]],[8,10,["H3701"]],[10,11,["H6884"]],[11,14,["H5948"]],[14,16,["H776"]],[16,17,["H2212"]],[17,18,["H7659"]],[18,19,[]]]},{"k":14073,"v":[[0,1,["H859"]],[1,3,["H8104"]],[3,6,["H3068"]],[6,9,["H5341"]],[9,11,["H4480"]],[11,12,["H2098"]],[12,13,["H1755"]],[13,15,["H5769"]]]},{"k":14074,"v":[[0,2,["H7563"]],[2,3,["H1980"]],[3,6,["H5439"]],[6,9,["H2149"]],[9,10,["H120"]],[10,12,["H7311"]]]},{"k":14075,"v":[[0,2,["H5704","H575"]],[2,5,["H7911"]],[5,8,["H3068"]],[8,10,["H5331"]],[10,12,["H5704","H575"]],[12,15,["H5641","(H853)"]],[15,17,["H6440"]],[17,18,["H4480"]],[18,19,[]]]},{"k":14076,"v":[[0,2,["H5704","H575"]],[2,5,["H7896"]],[5,6,["H6098"]],[6,9,["H5315"]],[9,11,["H3015"]],[11,14,["H3824"]],[14,15,["H3119"]],[15,17,["H5704","H575"]],[17,20,["H341"]],[20,22,["H7311"]],[22,23,["H5921"]],[23,24,[]]]},{"k":14077,"v":[[0,1,["H5027"]],[1,3,["H6030"]],[3,6,["H3068"]],[6,8,["H430"]],[8,9,["H215"]],[9,11,["H5869"]],[11,12,["H6435"]],[12,14,["H3462"]],[14,18,["H4194"]]]},{"k":14078,"v":[[0,1,["H6435"]],[1,3,["H341"]],[3,4,["H559"]],[4,8,["H3201"]],[8,13,["H6862"]],[13,15,["H1523"]],[15,16,["H3588"]],[16,19,["H4131"]]]},{"k":14079,"v":[[0,2,["H589"]],[2,4,["H982"]],[4,7,["H2617"]],[7,9,["H3820"]],[9,11,["H1523"]],[11,14,["H3444"]]]},{"k":14080,"v":[[0,3,["H7891"]],[3,6,["H3068"]],[6,7,["H3588"]],[7,11,["H1580"]],[11,12,["H5921"]],[12,13,[]]]},{"k":14081,"v":[[0,2,["H5036"]],[2,4,["H559"]],[4,7,["H3820"]],[7,10,["H369"]],[10,11,["H430"]],[11,14,["H7843"]],[14,18,["H8581"]],[18,19,["H5949"]],[19,22,["H369"]],[22,24,["H6213"]],[24,25,["H2896"]]]},{"k":14082,"v":[[0,2,["H3068"]],[2,4,["H8259"]],[4,6,["H4480","H8064"]],[6,7,["H5921"]],[7,9,["H1121"]],[9,11,["H120"]],[11,13,["H7200"]],[13,16,["H3426"]],[16,20,["H7919"]],[20,22,["H1875","(H853)"]],[22,23,["H430"]]]},{"k":14083,"v":[[0,3,["H3605"]],[3,5,["H5493"]],[5,9,["H3162"]],[9,11,["H444"]],[11,14,["H369"]],[14,16,["H6213"]],[16,17,["H2896"]],[17,18,["H369"]],[18,19,["H1571"]],[19,20,["H259"]]]},{"k":14084,"v":[[0,2,["H3605"]],[2,4,["H6466"]],[4,6,["H205"]],[6,7,["H3808"]],[7,8,["H3045"]],[8,11,["H398"]],[11,13,["H5971"]],[13,16,["H398"]],[16,17,["H3899"]],[17,19,["H7121"]],[19,20,["H3808"]],[20,23,["H3068"]]]},{"k":14085,"v":[[0,1,["H8033"]],[1,6,["H6342","H6343"]],[6,7,["H3588"]],[7,8,["H430"]],[8,12,["H1755"]],[12,15,["H6662"]]]},{"k":14086,"v":[[0,3,["H954"]],[3,5,["H6098"]],[5,8,["H6041"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,14,["H4268"]]]},{"k":14087,"v":[[0,2,["H4310","H5414"]],[2,4,["H3444"]],[4,6,["H3478"]],[6,11,["H4480","H6726"]],[11,14,["H3068"]],[14,16,["H7725"]],[16,18,["H7622"]],[18,21,["H5971"]],[21,22,["H3290"]],[22,24,["H1523"]],[24,26,["H3478"]],[26,29,["H8055"]]]},{"k":14088,"v":[[0,1,["H3068"]],[1,2,["H4310"]],[2,4,["H1481"]],[4,7,["H168"]],[7,8,["H4310"]],[8,10,["H7931"]],[10,13,["H6944"]],[13,14,["H2022"]]]},{"k":14089,"v":[[0,3,["H1980"]],[3,4,["H8549"]],[4,6,["H6466"]],[6,7,["H6664"]],[7,9,["H1696"]],[9,11,["H571"]],[11,14,["H3824"]]]},{"k":14090,"v":[[0,3,["H7270"]],[3,4,["H3808"]],[4,5,["H5921"]],[5,7,["H3956"]],[7,8,["H3808"]],[8,9,["H6213"]],[9,10,["H7451"]],[10,13,["H7453"]],[13,14,["H3808"]],[14,16,["H5375"]],[16,18,["H2781"]],[18,19,["H5921"]],[19,21,["H7138"]]]},{"k":14091,"v":[[0,3,["H5869"]],[3,6,["H3988"]],[6,8,["H959"]],[8,11,["H3513"]],[11,14,["H3372"]],[14,16,["H3068"]],[16,19,["H7650"]],[19,23,["H7489"]],[23,25,["H4171"]],[25,26,["H3808"]]]},{"k":14092,"v":[[0,5,["H5414","H3808"]],[5,7,["H3701"]],[7,9,["H5392"]],[9,10,["H3808"]],[10,11,["H3947"]],[11,12,["H7810"]],[12,13,["H5921"]],[13,15,["H5355"]],[15,18,["H6213"]],[18,19,["H428"]],[19,22,["H3808","H5769"]],[22,24,["H4131"]]]},{"k":14093,"v":[[0,1,["H8104"]],[1,4,["H410"]],[4,5,["H3588"]],[5,12,["H2620"]]]},{"k":14094,"v":[[0,6,["H559"]],[6,9,["H3068"]],[9,10,["H859"]],[10,13,["H136"]],[13,15,["H2896"]],[15,17,["H1077"]],[17,18,["H5921"]],[18,19,[]]]},{"k":14095,"v":[[0,4,["H6918"]],[4,5,["H834"]],[5,9,["H776"]],[9,13,["H117"]],[13,17,["H3605"]],[17,19,["H2656"]]]},{"k":14096,"v":[[0,2,["H6094"]],[2,5,["H7235"]],[5,7,["H4116"]],[7,9,["H312"]],[9,13,["H5262"]],[13,15,["H4480","H1818"]],[15,18,["H1077"]],[18,19,["H5258"]],[19,20,["H1077"]],[20,22,["H5375","(H853)"]],[22,24,["H8034"]],[24,25,["H5921"]],[25,27,["H8193"]]]},{"k":14097,"v":[[0,2,["H3068"]],[2,5,["H4521"]],[5,8,["H2506"]],[8,12,["H3563"]],[12,13,["H859"]],[13,14,["H8551"]],[14,16,["H1486"]]]},{"k":14098,"v":[[0,2,["H2256"]],[2,4,["H5307"]],[4,8,["H5273"]],[8,10,["H637"]],[10,12,["H5921"]],[12,14,["H8231"]],[14,15,["H5159"]]]},{"k":14099,"v":[[0,3,["H1288","(H853)"]],[3,5,["H3068"]],[5,6,["H834"]],[6,10,["H3289"]],[10,12,["H3629"]],[12,13,["H637"]],[13,14,["H3256"]],[14,19,["H3915"]]]},{"k":14100,"v":[[0,3,["H7737"]],[3,5,["H3068"]],[5,6,["H8548"]],[6,7,["H5048"]],[7,9,["H3588"]],[9,15,["H4480","H3225"]],[15,18,["H1077"]],[18,20,["H4131"]]]},{"k":14101,"v":[[0,1,["H3651"]],[1,3,["H3820"]],[3,5,["H8055"]],[5,8,["H3519"]],[8,9,["H1523"]],[9,11,["H1320"]],[11,12,["H637"]],[12,14,["H7931"]],[14,16,["H983"]]]},{"k":14102,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H5800"]],[5,7,["H5315"]],[7,9,["H7585"]],[9,10,["H3808"]],[10,13,["H5414"]],[13,16,["H2623"]],[16,18,["H7200"]],[18,19,["H7845"]]]},{"k":14103,"v":[[0,3,["H3045"]],[3,6,["H734"]],[6,8,["H2416"]],[8,9,["H854"]],[9,11,["H6440"]],[11,13,["H7648"]],[13,15,["H8057"]],[15,19,["H3225"]],[19,22,["H5273"]],[22,24,["H5331"]]]},{"k":14104,"v":[[0,1,["H8085"]],[1,3,["H6664"]],[3,5,["H3068"]],[5,6,["H7181"]],[6,9,["H7440"]],[9,11,["H238"]],[11,14,["H8605"]],[14,17,["H3808"]],[17,20,["H4820"]],[20,21,["H8193"]]]},{"k":14105,"v":[[0,3,["H4941"]],[3,5,["H3318"]],[5,8,["H4480","H6440"]],[8,11,["H5869"]],[11,12,["H2372"]],[12,17,["H4339"]]]},{"k":14106,"v":[[0,3,["H974"]],[3,5,["H3820"]],[5,8,["H6485"]],[8,12,["H3915"]],[12,15,["H6884"]],[15,19,["H4672"]],[19,20,["H1077"]],[20,23,["H2161"]],[23,26,["H6310"]],[26,28,["H1077"]],[28,29,["H5674"]]]},{"k":14107,"v":[[0,3,["H6468"]],[3,5,["H120"]],[5,8,["H1697"]],[8,11,["H8193"]],[11,12,["H589"]],[12,14,["H8104"]],[14,18,["H734"]],[18,21,["H6530"]]]},{"k":14108,"v":[[0,2,["H8551"]],[2,4,["H838"]],[4,7,["H4570"]],[7,10,["H6471"]],[10,11,["H4131"]],[11,12,["H1077"]]]},{"k":14109,"v":[[0,1,["H589"]],[1,4,["H7121"]],[4,6,["H3588"]],[6,9,["H6030"]],[9,12,["H410"]],[12,13,["H5186"]],[13,15,["H241"]],[15,19,["H8085"]],[19,21,["H565"]]]},{"k":14110,"v":[[0,4,["H6395","H2617"]],[4,8,["H3467"]],[8,12,["H3225"]],[12,17,["H2620"]],[17,24,["H4480","H6965"]],[24,26,[]]]},{"k":14111,"v":[[0,1,["H8104"]],[1,5,["H380","H1323"]],[5,8,["H5869"]],[8,9,["H5641"]],[9,13,["H6738"]],[13,16,["H3671"]]]},{"k":14112,"v":[[0,1,["H4480","H6440"]],[1,3,["H7563"]],[3,4,["H2098"]],[4,5,["H7703"]],[5,9,["H5315"]],[9,10,["H341"]],[10,14,["H5362","H5921"]]]},{"k":14113,"v":[[0,4,["H5462"]],[4,7,["H2459"]],[7,10,["H6310"]],[10,12,["H1696"]],[12,13,["H1348"]]]},{"k":14114,"v":[[0,3,["H6258"]],[3,4,["H5437"]],[4,8,["H838"]],[8,11,["H7896"]],[11,13,["H5869"]],[13,15,["H5186"]],[15,18,["H776"]]]},{"k":14115,"v":[[0,1,["H1825"]],[1,4,["H738"]],[4,7,["H3700"]],[7,10,["H2963"]],[10,17,["H3715"]],[17,18,["H3427"]],[18,21,["H4565"]]]},{"k":14116,"v":[[0,1,["H6965"]],[1,3,["H3068"]],[3,4,["H6923","H6440"]],[4,8,["H3766"]],[8,9,["H6403"]],[9,11,["H5315"]],[11,14,["H4480","H7563"]],[14,18,["H2719"]]]},{"k":14117,"v":[[0,2,["H4480","H4962"]],[2,6,["H3027"]],[6,8,["H3068"]],[8,10,["H4480","H4962"]],[10,13,["H4480","H2465"]],[13,17,["H2506"]],[17,20,["H2416"]],[20,23,["H990"]],[23,25,["H4390"]],[25,28,["H6845"]],[28,32,["H7646"]],[32,34,["H1121"]],[34,36,["H5117"]],[36,38,["H3499"]],[38,44,["H5768"]]]},{"k":14118,"v":[[0,3,["H589"]],[3,6,["H2372"]],[6,8,["H6440"]],[8,10,["H6664"]],[10,14,["H7646"]],[14,17,["H6974"]],[17,20,["H8544"]]]},{"k":14119,"v":[[0,3,["H7355"]],[3,6,["H3068"]],[6,8,["H2391"]]]},{"k":14120,"v":[[0,2,["H3068"]],[2,5,["H5553"]],[5,8,["H4686"]],[8,11,["H6403"]],[11,13,["H410"]],[13,15,["H6697"]],[15,20,["H2620"]],[20,22,["H4043"]],[22,25,["H7161"]],[25,28,["H3468"]],[28,32,["H4869"]]]},{"k":14121,"v":[[0,3,["H7121"]],[3,6,["H3068"]],[6,12,["H1984"]],[12,17,["H3467"]],[17,18,["H4480"]],[18,20,["H341"]]]},{"k":14122,"v":[[0,2,["H2256"]],[2,4,["H4194"]],[4,5,["H661"]],[5,9,["H5158"]],[9,12,["H1100"]],[12,15,["H1204"]]]},{"k":14123,"v":[[0,2,["H2256"]],[2,4,["H7585"]],[4,7,["H5437"]],[7,9,["H4170"]],[9,11,["H4194"]],[11,12,["H6923"]],[12,13,[]]]},{"k":14124,"v":[[0,3,["H6862"]],[3,6,["H7121"]],[6,8,["H3068"]],[8,10,["H7768"]],[10,11,["H413"]],[11,13,["H430"]],[13,15,["H8085"]],[15,17,["H6963"]],[17,21,["H4480","H1964"]],[21,24,["H7775"]],[24,25,["H935"]],[25,26,["H6440"]],[26,31,["H241"]]]},{"k":14125,"v":[[0,3,["H776"]],[3,4,["H1607"]],[4,6,["H7493"]],[6,8,["H4146"]],[8,12,["H2022"]],[12,13,["H7264"]],[13,16,["H1607"]],[16,17,["H3588"]],[17,20,["H2734"]]]},{"k":14126,"v":[[0,3,["H5927"]],[3,5,["H6227"]],[5,9,["H639"]],[9,11,["H784"]],[11,15,["H4480","H6310"]],[15,16,["H398"]],[16,17,["H1513"]],[17,19,["H1197"]],[19,20,["H4480"]],[20,21,[]]]},{"k":14127,"v":[[0,2,["H5186"]],[2,4,["H8064"]],[4,8,["H3381"]],[8,10,["H6205"]],[10,12,["H8478"]],[12,14,["H7272"]]]},{"k":14128,"v":[[0,3,["H7392"]],[3,4,["H5921"]],[4,6,["H3742"]],[6,9,["H5774"]],[9,13,["H1675"]],[13,14,["H5921"]],[14,16,["H3671"]],[16,19,["H7307"]]]},{"k":14129,"v":[[0,2,["H7896"]],[2,3,["H2824"]],[3,6,["H5643"]],[6,8,["H5521"]],[8,10,["H5439"]],[10,13,["H2824"]],[13,14,["H4325"]],[14,17,["H5645"]],[17,20,["H7834"]]]},{"k":14130,"v":[[0,3,["H4480","H5051"]],[3,6,["H5048"]],[6,10,["H5645"]],[10,11,["H5674"]],[11,12,["H1259"]],[12,15,["H1513"]],[15,17,["H784"]]]},{"k":14131,"v":[[0,2,["H3068"]],[2,4,["H7481"]],[4,7,["H8064"]],[7,10,["H5945"]],[10,11,["H5414"]],[11,13,["H6963"]],[13,14,["H1259"]],[14,17,["H1513"]],[17,19,["H784"]]]},{"k":14132,"v":[[0,4,["H7971"]],[4,6,["H2671"]],[6,8,["H6327"]],[8,13,["H7232"]],[13,14,["H1300"]],[14,16,["H2000"]],[16,17,[]]]},{"k":14133,"v":[[0,3,["H650"]],[3,5,["H4325"]],[5,7,["H7200"]],[7,10,["H4146"]],[10,13,["H8398"]],[13,15,["H1540"]],[15,18,["H4480","H1606"]],[18,20,["H3068"]],[20,23,["H4480","H5397"]],[23,26,["H7307"]],[26,29,["H639"]]]},{"k":14134,"v":[[0,2,["H7971"]],[2,4,["H4480","H4791"]],[4,6,["H3947"]],[6,9,["H4871"]],[9,14,["H4480","H4325","H7227"]]]},{"k":14135,"v":[[0,2,["H5337"]],[2,6,["H5794"]],[6,7,["H4480","H341"]],[7,12,["H4480","H8130"]],[12,14,["H3588"]],[14,18,["H553"]],[18,19,["H4480"]],[19,20,[]]]},{"k":14136,"v":[[0,2,["H6923"]],[2,6,["H3117"]],[6,9,["H343"]],[9,12,["H3068"]],[12,13,["H1961"]],[13,15,["H4937"]]]},{"k":14137,"v":[[0,4,["H3318"]],[4,9,["H4800"]],[9,11,["H2502"]],[11,13,["H3588"]],[13,15,["H2654"]],[15,17,[]]]},{"k":14138,"v":[[0,2,["H3068"]],[2,3,["H1580"]],[3,8,["H6664"]],[8,12,["H1252"]],[12,15,["H3027"]],[15,18,["H7725"]],[18,19,[]]]},{"k":14139,"v":[[0,1,["H3588"]],[1,4,["H8104"]],[4,6,["H1870"]],[6,9,["H3068"]],[9,12,["H3808"]],[12,14,["H7561"]],[14,17,["H4480","H430"]]]},{"k":14140,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H4941"]],[4,6,["H5048"]],[6,11,["H3808"]],[11,13,["H5493"]],[13,15,["H2708"]],[15,16,["H4480"]],[16,17,[]]]},{"k":14141,"v":[[0,2,["H1961"]],[2,4,["H8549"]],[4,5,["H5973"]],[5,10,["H8104"]],[10,13,["H4480","H5771"]]]},{"k":14142,"v":[[0,4,["H3068"]],[4,5,["H7725"]],[5,10,["H6664"]],[10,14,["H1252"]],[14,17,["H3027"]],[17,18,["H5048"]],[18,20,["H5869"]]]},{"k":14143,"v":[[0,1,["H5973"]],[1,3,["H2623"]],[3,8,["H2616"]],[8,9,["H5973"]],[9,11,["H8549"]],[11,12,["H1399"]],[12,17,["H8552"]]]},{"k":14144,"v":[[0,1,["H5973"]],[1,3,["H1305"]],[3,8,["H1305"]],[8,10,["H5973"]],[10,12,["H6141"]],[12,17,["H6617"]]]},{"k":14145,"v":[[0,1,["H3588"]],[1,3,["H859"]],[3,4,["H3467"]],[4,6,["H6041"]],[6,7,["H5971"]],[7,11,["H8213"]],[11,12,["H7311"]],[12,13,["H5869"]]]},{"k":14146,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H215"]],[4,6,["H5216"]],[6,8,["H3068"]],[8,10,["H430"]],[10,12,["H5050"]],[12,14,["H2822"]]]},{"k":14147,"v":[[0,1,["H3588"]],[1,7,["H7323"]],[7,9,["H1416"]],[9,13,["H430"]],[13,17,["H1801"]],[17,19,["H7791"]]]},{"k":14148,"v":[[0,3,["H410"]],[3,5,["H1870"]],[5,7,["H8549"]],[7,9,["H565"]],[9,12,["H3068"]],[12,14,["H6884"]],[14,15,["H1931"]],[15,18,["H4043"]],[18,20,["H3605"]],[20,23,["H2620"]],[23,25,[]]]},{"k":14149,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,4,["H433"]],[4,5,["H4480","H1107"]],[5,7,["H3068"]],[7,9,["H4310"]],[9,12,["H6697"]],[12,13,["H2108"]],[13,15,["H430"]]]},{"k":14150,"v":[[0,3,["H410"]],[3,5,["H247"]],[5,8,["H2428"]],[8,10,["H5414"]],[10,12,["H1870"]],[12,13,["H8549"]]]},{"k":14151,"v":[[0,2,["H7737"]],[2,4,["H7272"]],[4,6,["H355"]],[6,9,["H5975"]],[9,11,["H5921"]],[11,14,["H1116"]]]},{"k":14152,"v":[[0,2,["H3925"]],[2,4,["H3027"]],[4,6,["H4421"]],[6,10,["H7198"]],[10,12,["H5154"]],[12,14,["H5181"]],[14,17,["H2220"]]]},{"k":14153,"v":[[0,4,["H5414"]],[4,7,["H4043"]],[7,10,["H3468"]],[10,14,["H3225"]],[14,18,["H5582"]],[18,21,["H6038"]],[21,25,["H7235"]]]},{"k":14154,"v":[[0,3,["H7337"]],[3,5,["H6806"]],[5,6,["H8478"]],[6,10,["H7166"]],[10,12,["H3808"]],[12,13,["H4571"]]]},{"k":14155,"v":[[0,3,["H7291"]],[3,5,["H341"]],[5,7,["H5381"]],[7,9,["H3808"]],[9,13,["H7725"]],[13,14,["H5704"]],[14,17,["H3615"]]]},{"k":14156,"v":[[0,3,["H4272"]],[3,8,["H3808"]],[8,9,["H3201"]],[9,11,["H6965"]],[11,14,["H5307"]],[14,15,["H8478"]],[15,17,["H7272"]]]},{"k":14157,"v":[[0,4,["H247"]],[4,7,["H2428"]],[7,10,["H4421"]],[10,13,["H3766"]],[13,14,["H8478"]],[14,19,["H6965"]],[19,21,[]]]},{"k":14158,"v":[[0,4,["H5414"]],[4,7,["H6203"]],[7,10,["H341"]],[10,14,["H6789"]],[14,17,["H8130"]],[17,18,[]]]},{"k":14159,"v":[[0,2,["H7768"]],[2,6,["H369"]],[6,8,["H3467"]],[8,11,["H5921"]],[11,13,["H3068"]],[13,16,["H6030"]],[16,18,["H3808"]]]},{"k":14160,"v":[[0,6,["H7833"]],[6,9,["H6083"]],[9,10,["H5921","H6440"]],[10,12,["H7307"]],[12,17,["H7324"]],[17,20,["H2916"]],[20,23,["H2351"]]]},{"k":14161,"v":[[0,3,["H6403"]],[3,7,["H4480","H7379"]],[7,10,["H5971"]],[10,14,["H7760"]],[14,17,["H7218"]],[17,20,["H1471"]],[20,22,["H5971"]],[22,26,["H3808"]],[26,27,["H3045"]],[27,29,["H5647"]],[29,30,[]]]},{"k":14162,"v":[[0,5,["H8088","H241"]],[5,10,["H8085"]],[10,13,["H1121","H5236"]],[13,15,["H3584"]],[15,18,[]]]},{"k":14163,"v":[[0,2,["H1121","H5236"]],[2,5,["H5034"]],[5,8,["H2727"]],[8,10,["H4480"]],[10,13,["H4526"]]]},{"k":14164,"v":[[0,2,["H3068"]],[2,3,["H2416"]],[3,5,["H1288"]],[5,8,["H6697"]],[8,12,["H430"]],[12,15,["H3468"]],[15,17,["H7311"]]]},{"k":14165,"v":[[0,3,["H410"]],[3,5,["H5414","H5360"]],[5,8,["H1696"]],[8,10,["H5971"]],[10,11,["H8478"]],[11,12,[]]]},{"k":14166,"v":[[0,2,["H6403"]],[2,6,["H4480","H341"]],[6,7,["H637"]],[7,11,["H7311"]],[11,12,["H4480"]],[12,16,["H6965"]],[16,21,["H5337"]],[21,25,["H2555"]],[25,26,["H4480","H376"]]]},{"k":14167,"v":[[0,1,["H5921","H3651"]],[1,5,["H3034"]],[5,9,["H3068"]],[9,12,["H1471"]],[12,15,["H2167"]],[15,18,["H8034"]]]},{"k":14168,"v":[[0,1,["H1431"]],[1,2,["H3444"]],[2,7,["H4428"]],[7,9,["H6213"]],[9,10,["H2617"]],[10,13,["H4899"]],[13,15,["H1732"]],[15,19,["H2233"]],[19,21,["H5704","H5769"]]]},{"k":14169,"v":[[0,2,["H8064"]],[2,3,["H5608"]],[3,5,["H3519"]],[5,7,["H410"]],[7,10,["H7549"]],[10,11,["H5046"]],[11,13,["H4639","H3027"]]]},{"k":14170,"v":[[0,1,["H3117"]],[1,3,["H3117"]],[3,4,["H5042"]],[4,5,["H562"]],[5,7,["H3915"]],[7,9,["H3915"]],[9,10,["H2331"]],[10,11,["H1847"]]]},{"k":14171,"v":[[0,3,["H369"]],[3,4,["H562"]],[4,5,["H369"]],[5,6,["H1697"]],[6,9,["H6963"]],[9,11,["H1097"]],[11,12,["H8085"]]]},{"k":14172,"v":[[0,2,["H6957"]],[2,5,["H3318"]],[5,7,["H3605"]],[7,9,["H776"]],[9,12,["H4405"]],[12,15,["H7097"]],[15,18,["H8398"]],[18,23,["H7760"]],[23,25,["H168"]],[25,28,["H8121"]]]},{"k":14173,"v":[[0,1,["H1931"]],[1,5,["H2860"]],[5,7,["H3318"]],[7,10,["H4480","H2646"]],[10,12,["H7797"]],[12,16,["H1368"]],[16,18,["H7323"]],[18,20,["H734"]]]},{"k":14174,"v":[[0,3,["H4161"]],[3,7,["H4480","H7097"]],[7,10,["H8064"]],[10,13,["H8622"]],[13,14,["H5921"]],[14,16,["H7098"]],[16,22,["H369"]],[22,23,["H5641"]],[23,26,["H4480","H2535"]],[26,27,[]]]},{"k":14175,"v":[[0,2,["H8451"]],[2,5,["H3068"]],[5,7,["H8549"]],[7,8,["H7725"]],[8,10,["H5315"]],[10,12,["H5715"]],[12,15,["H3068"]],[15,17,["H539"]],[17,19,["H2449"]],[19,21,["H6612"]]]},{"k":14176,"v":[[0,2,["H6490"]],[2,5,["H3068"]],[5,7,["H3477"]],[7,8,["H8055"]],[8,10,["H3820"]],[10,12,["H4687"]],[12,15,["H3068"]],[15,17,["H1249"]],[17,18,["H215"]],[18,20,["H5869"]]]},{"k":14177,"v":[[0,2,["H3374"]],[2,5,["H3068"]],[5,7,["H2889"]],[7,8,["H5975"]],[8,10,["H5703"]],[10,12,["H4941"]],[12,15,["H3068"]],[15,17,["H571"]],[17,19,["H6663"]],[19,20,["H3162"]]]},{"k":14178,"v":[[0,4,["H2530"]],[4,8,["H4480","H2091"]],[8,11,["H7227"]],[11,13,["H4480","H6337"]],[13,14,["H4966"]],[14,17,["H4480","H1706"]],[17,20,["H5317","H6688"]]]},{"k":14179,"v":[[0,1,["H1571"]],[1,6,["H5650"]],[6,7,["H2094"]],[7,10,["H8104"]],[10,15,["H7227"]],[15,16,["H6118"]]]},{"k":14180,"v":[[0,1,["H4310"]],[1,3,["H995"]],[3,5,["H7691"]],[5,6,["H5352"]],[6,10,["H4480","H5641"]],[10,11,[]]]},{"k":14181,"v":[[0,2,["H2820"]],[2,4,["H5650"]],[4,5,["H1571"]],[5,7,["H4480","H2086"]],[7,11,["H408"]],[11,13,["H4910"]],[13,16,["H227"]],[16,20,["H8552"]],[20,25,["H5352"]],[25,28,["H7227"]],[28,29,["H4480","H6588"]]]},{"k":14182,"v":[[0,3,["H561"]],[3,6,["H6310"]],[6,9,["H1902"]],[9,12,["H3820"]],[12,13,["H1961"]],[13,14,["H7522"]],[14,17,["H6440"]],[17,19,["H3068"]],[19,21,["H6697"]],[21,24,["H1350"]]]},{"k":14183,"v":[[0,2,["H3068"]],[2,3,["H6030"]],[3,7,["H3117"]],[7,9,["H6869"]],[9,11,["H8034"]],[11,14,["H430"]],[14,16,["H3290"]],[16,17,["H7682"]],[17,18,[]]]},{"k":14184,"v":[[0,1,["H7971"]],[1,3,["H5828"]],[3,6,["H4480","H6944"]],[6,8,["H5582"]],[8,12,["H4480","H6726"]]]},{"k":14185,"v":[[0,1,["H2142"]],[1,2,["H3605"]],[2,4,["H4503"]],[4,6,["H1878"]],[6,9,["H5930"]],[9,10,["H5542"]]]},{"k":14186,"v":[[0,1,["H5414"]],[1,7,["H3824"]],[7,9,["H4390"]],[9,10,["H3605"]],[10,12,["H6098"]]]},{"k":14187,"v":[[0,3,["H7442"]],[3,6,["H3444"]],[6,10,["H8034"]],[10,13,["H430"]],[13,19,["H1713"]],[19,21,["H3068"]],[21,22,["H4390"]],[22,23,["H3605"]],[23,25,["H4862"]]]},{"k":14188,"v":[[0,1,["H6258"]],[1,2,["H3045"]],[2,4,["H3588"]],[4,6,["H3068"]],[6,7,["H3467"]],[7,9,["H4899"]],[9,12,["H6030"]],[12,16,["H6944"]],[16,17,["H4480","H8064"]],[17,20,["H3468"]],[20,21,["H1369"]],[21,25,["H3225"]]]},{"k":14189,"v":[[0,1,["H428"]],[1,4,["H7393"]],[4,6,["H428"]],[6,8,["H5483"]],[8,10,["H587"]],[10,12,["H2142"]],[12,14,["H8034"]],[14,17,["H3068"]],[17,19,["H430"]]]},{"k":14190,"v":[[0,1,["H1992"]],[1,4,["H3766"]],[4,6,["H5307"]],[6,8,["H587"]],[8,10,["H6965"]],[10,13,["H5749"]]]},{"k":14191,"v":[[0,1,["H3467"]],[1,2,["H3068"]],[2,5,["H4428"]],[5,6,["H6030"]],[6,8,["H3117"]],[8,10,["H7121"]]]},{"k":14192,"v":[[0,2,["H4428"]],[2,4,["H8055"]],[4,7,["H5797"]],[7,9,["H3068"]],[9,13,["H3444"]],[13,14,["H4100"]],[14,15,["H3966"]],[15,18,["H1523"]]]},{"k":14193,"v":[[0,3,["H5414"]],[3,6,["H3820"]],[6,7,["H8378"]],[7,10,["H1077"]],[10,11,["H4513"]],[11,13,["H782"]],[13,16,["H8193"]],[16,17,["H5542"]]]},{"k":14194,"v":[[0,1,["H3588"]],[1,3,["H6923"]],[3,7,["H1293"]],[7,9,["H2896"]],[9,11,["H7896"]],[11,13,["H5850"]],[13,16,["H6337"]],[16,19,["H7218"]]]},{"k":14195,"v":[[0,2,["H7592"]],[2,3,["H2416"]],[3,4,["H4480"]],[4,8,["H5414"]],[8,12,["H753"]],[12,14,["H3117"]],[14,16,["H5769"]],[16,18,["H5703"]]]},{"k":14196,"v":[[0,2,["H3519"]],[2,4,["H1419"]],[4,7,["H3444"]],[7,8,["H1935"]],[8,10,["H1926"]],[10,13,["H7737"]],[13,14,["H5921"]],[14,15,[]]]},{"k":14197,"v":[[0,1,["H3588"]],[1,4,["H7896"]],[4,7,["H1293"]],[7,9,["H5703"]],[9,15,["H2302","H8057"]],[15,16,["H854"]],[16,18,["H6440"]]]},{"k":14198,"v":[[0,1,["H3588"]],[1,3,["H4428"]],[3,4,["H982"]],[4,7,["H3068"]],[7,11,["H2617"]],[11,15,["H5945"]],[15,18,["H1077"]],[18,20,["H4131"]]]},{"k":14199,"v":[[0,2,["H3027"]],[2,5,["H4672"]],[5,6,["H3605"]],[6,8,["H341"]],[8,11,["H3225"]],[11,14,["H4672"]],[14,17,["H8130"]],[17,18,[]]]},{"k":14200,"v":[[0,3,["H7896"]],[3,7,["H784"]],[7,8,["H8574"]],[8,11,["H6256"]],[11,14,["H6440"]],[14,16,["H3068"]],[16,20,["H1104"]],[20,23,["H639"]],[23,26,["H784"]],[26,28,["H398"]],[28,29,[]]]},{"k":14201,"v":[[0,2,["H6529"]],[2,5,["H6"]],[5,8,["H4480","H776"]],[8,11,["H2233"]],[11,15,["H4480","H1121"]],[15,17,["H120"]]]},{"k":14202,"v":[[0,1,["H3588"]],[1,3,["H5186"]],[3,4,["H7451"]],[4,5,["H5921"]],[5,8,["H2803"]],[8,11,["H4209"]],[11,15,["H1077"]],[15,16,["H3201"]],[16,18,[]]]},{"k":14203,"v":[[0,1,["H3588"]],[1,4,["H7896"]],[4,8,["H7926"]],[8,13,["H3559"]],[13,18,["H4340"]],[18,19,["H5921"]],[19,21,["H6440"]],[21,23,[]]]},{"k":14204,"v":[[0,3,["H7311"]],[3,4,["H3068"]],[4,8,["H5797"]],[8,12,["H7891"]],[12,14,["H2167"]],[14,16,["H1369"]]]},{"k":14205,"v":[[0,2,["H410"]],[2,4,["H410"]],[4,5,["H4100"]],[5,8,["H5800"]],[8,14,["H7350"]],[14,16,["H4480","H3444"]],[16,21,["H1697"]],[21,24,["H7581"]]]},{"k":14206,"v":[[0,3,["H430"]],[3,5,["H7121"]],[5,8,["H3119"]],[8,11,["H6030"]],[11,12,["H3808"]],[12,17,["H3915"]],[17,20,["H3808"]],[20,21,["H1747"]]]},{"k":14207,"v":[[0,2,["H859"]],[2,4,["H6918"]],[4,8,["H3427"]],[8,10,["H8416"]],[10,12,["H3478"]]]},{"k":14208,"v":[[0,2,["H1"]],[2,3,["H982"]],[3,7,["H982"]],[7,11,["H6403"]],[11,12,[]]]},{"k":14209,"v":[[0,2,["H2199"]],[2,3,["H413"]],[3,7,["H4422"]],[7,9,["H982"]],[9,14,["H3808"]],[14,15,["H954"]]]},{"k":14210,"v":[[0,2,["H595"]],[2,5,["H8438"]],[5,7,["H3808"]],[7,8,["H376"]],[8,10,["H2781"]],[10,12,["H120"]],[12,14,["H959"]],[14,17,["H5971"]]]},{"k":14211,"v":[[0,1,["H3605"]],[1,4,["H7200"]],[4,6,["H3932"]],[6,12,["H6362"]],[12,14,["H8193"]],[14,16,["H5128"]],[16,18,["H7218"]],[18,19,[]]]},{"k":14212,"v":[[0,2,["H1556"]],[2,3,["H413"]],[3,5,["H3068"]],[5,9,["H6403"]],[9,13,["H5337"]],[13,15,["H3588"]],[15,17,["H2654"]],[17,19,[]]]},{"k":14213,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,6,["H1518"]],[6,11,["H4480","H990"]],[11,16,["H982"]],[16,20,["H5921"]],[20,22,["H517"]],[22,23,["H7699"]]]},{"k":14214,"v":[[0,3,["H7993"]],[3,4,["H5921"]],[4,8,["H4480","H7358"]],[8,9,["H859"]],[9,12,["H410"]],[12,15,["H517"]],[15,16,["H4480","H990"]]]},{"k":14215,"v":[[0,2,["H408"]],[2,3,["H7368"]],[3,4,["H4480"]],[4,6,["H3588"]],[6,7,["H6869"]],[7,9,["H7138"]],[9,10,["H3588"]],[10,13,["H369"]],[13,15,["H5826"]]]},{"k":14216,"v":[[0,1,["H7227"]],[1,2,["H6499"]],[2,4,["H5437"]],[4,6,["H47"]],[6,9,["H1316"]],[9,13,["H3803"]]]},{"k":14217,"v":[[0,2,["H6475"]],[2,3,["H5921"]],[3,7,["H6310"]],[7,10,["H2963"]],[10,13,["H7580"]],[13,14,["H738"]]]},{"k":14218,"v":[[0,4,["H8210"]],[4,6,["H4325"]],[6,8,["H3605"]],[8,10,["H6106"]],[10,14,["H6504"]],[14,16,["H3820"]],[16,17,["H1961"]],[17,19,["H1749"]],[19,22,["H4549"]],[22,25,["H8432"]],[25,28,["H4578"]]]},{"k":14219,"v":[[0,2,["H3581"]],[2,5,["H3001"]],[5,8,["H2789"]],[8,11,["H3956"]],[11,12,["H1692"]],[12,15,["H4455"]],[15,19,["H8239"]],[19,23,["H6083"]],[23,25,["H4194"]]]},{"k":14220,"v":[[0,1,["H3588"]],[1,2,["H3611"]],[2,4,["H5437"]],[4,7,["H5712"]],[7,10,["H7489"]],[10,12,["H5362"]],[12,15,["H738"]],[15,17,["H3027"]],[17,20,["H7272"]]]},{"k":14221,"v":[[0,3,["H5608"]],[3,4,["H3605"]],[4,6,["H6106"]],[6,7,["H1992"]],[7,8,["H5027"]],[8,10,["H7200"]],[10,12,[]]]},{"k":14222,"v":[[0,2,["H2505"]],[2,4,["H899"]],[4,8,["H5307"]],[8,9,["H1486"]],[9,10,["H5921"]],[10,12,["H3830"]]]},{"k":14223,"v":[[0,3,["H408"]],[3,4,["H859"]],[4,5,["H7368"]],[5,9,["H3068"]],[9,12,["H360"]],[12,13,["H2363"]],[13,16,["H5833"]],[16,17,[]]]},{"k":14224,"v":[[0,1,["H5337"]],[1,3,["H5315"]],[3,6,["H4480","H2719"]],[6,8,["H3173"]],[8,11,["H4480","H3027"]],[11,14,["H3611"]]]},{"k":14225,"v":[[0,1,["H3467"]],[1,5,["H738"]],[5,6,["H4480","H6310"]],[6,10,["H6030"]],[10,14,["H4480","H7161"]],[14,17,["H7214"]]]},{"k":14226,"v":[[0,3,["H5608"]],[3,5,["H8034"]],[5,8,["H251"]],[8,11,["H8432"]],[11,14,["H6951"]],[14,17,["H1984"]],[17,18,[]]]},{"k":14227,"v":[[0,3,["H3373"]],[3,5,["H3068"]],[5,6,["H1984"]],[6,8,["H3605"]],[8,11,["H2233"]],[11,13,["H3290"]],[13,14,["H3513"]],[14,17,["H1481","H4480"]],[17,19,["H3605"]],[19,22,["H2233"]],[22,24,["H3478"]]]},{"k":14228,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H959"]],[5,6,["H3808"]],[6,7,["H8262"]],[7,9,["H6039"]],[9,12,["H6041"]],[12,13,["H3808"]],[13,16,["H5641"]],[16,18,["H6440"]],[18,19,["H4480"]],[19,24,["H7768"]],[24,25,["H413"]],[25,28,["H8085"]]]},{"k":14229,"v":[[0,2,["H8416"]],[2,5,["H4480","H854"]],[5,9,["H7227"]],[9,10,["H6951"]],[10,13,["H7999"]],[13,15,["H5088"]],[15,16,["H5048"]],[16,19,["H3373"]],[19,20,[]]]},{"k":14230,"v":[[0,2,["H6035"]],[2,4,["H398"]],[4,7,["H7646"]],[7,10,["H1984"]],[10,12,["H3068"]],[12,14,["H1875"]],[14,17,["H3824"]],[17,19,["H2421"]],[19,21,["H5703"]]]},{"k":14231,"v":[[0,1,["H3605"]],[1,3,["H657"]],[3,6,["H776"]],[6,8,["H2142"]],[8,10,["H7725"]],[10,11,["H413"]],[11,13,["H3068"]],[13,15,["H3605"]],[15,17,["H4940"]],[17,20,["H1471"]],[20,22,["H7812"]],[22,23,["H6440"]],[23,24,[]]]},{"k":14232,"v":[[0,1,["H3588"]],[1,3,["H4410"]],[3,6,["H3068"]],[6,11,["H4910"]],[11,14,["H1471"]]]},{"k":14233,"v":[[0,1,["H3605"]],[1,5,["H1879"]],[5,7,["H776"]],[7,9,["H398"]],[9,11,["H7812"]],[11,12,["H3605"]],[12,16,["H3381"]],[16,19,["H6083"]],[19,21,["H3766"]],[21,22,["H6440"]],[22,25,["H3808"]],[25,28,["H2421"]],[28,31,["H5315"]]]},{"k":14234,"v":[[0,2,["H2233"]],[2,4,["H5647"]],[4,9,["H5608"]],[9,12,["H136"]],[12,15,["H1755"]]]},{"k":14235,"v":[[0,3,["H935"]],[3,6,["H5046"]],[6,8,["H6666"]],[8,11,["H5971"]],[11,15,["H3205"]],[15,16,["H3588"]],[16,19,["H6213"]],[19,20,[]]]},{"k":14236,"v":[[0,2,["H3068"]],[2,5,["H7462"]],[5,8,["H3808"]],[8,9,["H2637"]]]},{"k":14237,"v":[[0,6,["H7257"]],[6,8,["H1877"]],[8,9,["H4999"]],[9,11,["H5095"]],[11,13,["H5921"]],[13,15,["H4496"]],[15,16,["H4325"]]]},{"k":14238,"v":[[0,2,["H7725"]],[2,4,["H5315"]],[4,6,["H5148"]],[6,10,["H4570"]],[10,12,["H6664"]],[12,16,["H4616","H8034"]]]},{"k":14239,"v":[[0,1,["H1571"]],[1,2,["H3588"]],[2,4,["H1980"]],[4,7,["H1516"]],[7,12,["H6757"]],[12,15,["H3372"]],[15,16,["H3808"]],[16,17,["H7451"]],[17,18,["H3588"]],[18,19,["H859"]],[19,21,["H5978"]],[21,24,["H7626"]],[24,27,["H4938"]],[27,28,["H1992"]],[28,29,["H5162"]],[29,30,[]]]},{"k":14240,"v":[[0,2,["H6186"]],[2,4,["H7979"]],[4,5,["H6440"]],[5,9,["H5048"]],[9,12,["H6887"]],[12,14,["H1878"]],[14,16,["H7218"]],[16,18,["H8081"]],[18,20,["H3563"]],[20,22,["H7310"]]]},{"k":14241,"v":[[0,1,["H389"]],[1,2,["H2896"]],[2,4,["H2617"]],[4,6,["H7291"]],[6,8,["H3605"]],[8,10,["H3117"]],[10,13,["H2416"]],[13,17,["H3427"]],[17,20,["H1004"]],[20,23,["H3068"]],[23,25,["H753","H3117"]]]},{"k":14242,"v":[[0,2,["H776"]],[2,5,["H3068"]],[5,8,["H4393"]],[8,11,["H8398"]],[11,15,["H3427"]],[15,16,[]]]},{"k":14243,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,4,["H3245"]],[4,6,["H5921"]],[6,8,["H3220"]],[8,10,["H3559"]],[10,12,["H5921"]],[12,14,["H5104"]]]},{"k":14244,"v":[[0,1,["H4310"]],[1,3,["H5927"]],[3,6,["H2022"]],[6,9,["H3068"]],[9,11,["H4310"]],[11,13,["H6965"]],[13,16,["H6944"]],[16,17,["H4725"]]]},{"k":14245,"v":[[0,4,["H5355"]],[4,5,["H3709"]],[5,8,["H1249"]],[8,9,["H3824"]],[9,10,["H834"]],[10,12,["H3808"]],[12,14,["H5375"]],[14,16,["H5315"]],[16,18,["H7723"]],[18,19,["H3808"]],[19,20,["H7650"]],[20,21,["H4820"]]]},{"k":14246,"v":[[0,3,["H5375"]],[3,5,["H1293"]],[5,6,["H4480","H854"]],[6,8,["H3068"]],[8,10,["H6666"]],[10,13,["H4480","H430"]],[13,16,["H3468"]]]},{"k":14247,"v":[[0,1,["H2088"]],[1,4,["H1755"]],[4,8,["H1875"]],[8,11,["H1245"]],[11,13,["H6440"]],[13,15,["H3290"]],[15,16,["H5542"]]]},{"k":14248,"v":[[0,2,["H5375"]],[2,4,["H7218"]],[4,7,["H8179"]],[7,12,["H5375"]],[12,14,["H5769"]],[14,15,["H6607"]],[15,18,["H4428"]],[18,20,["H3519"]],[20,23,["H935"]]]},{"k":14249,"v":[[0,1,["H4310"]],[1,3,["H2088"]],[3,4,["H4428"]],[4,6,["H3519"]],[6,8,["H3068"]],[8,9,["H5808"]],[9,11,["H1368"]],[11,13,["H3068"]],[13,14,["H1368"]],[14,16,["H4421"]]]},{"k":14250,"v":[[0,2,["H5375"]],[2,4,["H7218"]],[4,7,["H8179"]],[7,11,["H5375"]],[11,13,["H5769"]],[13,14,["H6607"]],[14,17,["H4428"]],[17,19,["H3519"]],[19,22,["H935"]]]},{"k":14251,"v":[[0,1,["H4310"]],[1,2,["H1931"]],[2,3,["H2088"]],[3,4,["H4428"]],[4,6,["H3519"]],[6,8,["H3068"]],[8,10,["H6635"]],[10,11,["H1931"]],[11,14,["H4428"]],[14,16,["H3519"]],[16,17,["H5542"]]]},{"k":14252,"v":[[0,1,["H413"]],[1,4,["H3068"]],[4,8,["H5375"]],[8,10,["H5315"]]]},{"k":14253,"v":[[0,3,["H430"]],[3,5,["H982"]],[5,10,["H408"]],[10,12,["H954"]],[12,14,["H408"]],[14,16,["H341"]],[16,17,["H5970"]],[17,19,[]]]},{"k":14254,"v":[[0,1,["H1571"]],[1,3,["H3605","H3808"]],[3,5,["H6960"]],[5,9,["H954"]],[9,13,["H954"]],[13,15,["H898"]],[15,17,["H7387"]]]},{"k":14255,"v":[[0,1,["H3045"]],[1,4,["H1870"]],[4,6,["H3068"]],[6,7,["H3925"]],[7,10,["H734"]]]},{"k":14256,"v":[[0,1,["H1869"]],[1,5,["H571"]],[5,7,["H3925"]],[7,9,["H3588"]],[9,10,["H859"]],[10,13,["H430"]],[13,16,["H3468"]],[16,21,["H6960"]],[21,22,["H3605"]],[22,24,["H3117"]]]},{"k":14257,"v":[[0,1,["H2142"]],[1,3,["H3068"]],[3,6,["H7356"]],[6,9,["H2617"]],[9,10,["H3588"]],[10,11,["H1992"]],[11,16,["H4480","H5769"]]]},{"k":14258,"v":[[0,1,["H2142"]],[1,2,["H408"]],[2,4,["H2403"]],[4,7,["H5271"]],[7,10,["H6588"]],[10,14,["H2617"]],[14,15,["H2142"]],[15,16,["H859"]],[16,21,["H4616","H2898"]],[21,23,["H3068"]]]},{"k":14259,"v":[[0,1,["H2896"]],[1,3,["H3477"]],[3,6,["H3068"]],[6,7,["H5921","H3651"]],[7,10,["H3384"]],[10,11,["H2400"]],[11,14,["H1870"]]]},{"k":14260,"v":[[0,2,["H6035"]],[2,5,["H1869"]],[5,7,["H4941"]],[7,10,["H6035"]],[10,13,["H3925"]],[13,15,["H1870"]]]},{"k":14261,"v":[[0,1,["H3605"]],[1,3,["H734"]],[3,6,["H3068"]],[6,8,["H2617"]],[8,10,["H571"]],[10,14,["H5341"]],[14,16,["H1285"]],[16,19,["H5713"]]]},{"k":14262,"v":[[0,4,["H4616","H8034"]],[4,6,["H3068"]],[6,7,["H5545"]],[7,9,["H5771"]],[9,10,["H3588"]],[10,11,["H1931"]],[11,13,["H7227"]]]},{"k":14263,"v":[[0,1,["H4310"]],[1,2,["H376"]],[2,5,["H2088"]],[5,6,["H3373"]],[6,8,["H3068"]],[8,12,["H3384"]],[12,15,["H1870"]],[15,19,["H977"]]]},{"k":14264,"v":[[0,2,["H5315"]],[2,4,["H3885"]],[4,6,["H2896"]],[6,9,["H2233"]],[9,11,["H3423"]],[11,13,["H776"]]]},{"k":14265,"v":[[0,2,["H5475"]],[2,5,["H3068"]],[5,10,["H3373"]],[10,15,["H3045"]],[15,18,["H1285"]]]},{"k":14266,"v":[[0,2,["H5869"]],[2,4,["H8548"]],[4,5,["H413"]],[5,7,["H3068"]],[7,8,["H3588"]],[8,9,["H1931"]],[9,14,["H3318","H7272"]],[14,17,["H4480","H7568"]]]},{"k":14267,"v":[[0,1,["H6437"]],[1,3,["H413"]],[3,7,["H2603"]],[7,10,["H3588"]],[10,11,["H589"]],[11,13,["H3173"]],[13,15,["H6041"]]]},{"k":14268,"v":[[0,2,["H6869"]],[2,5,["H3824"]],[5,7,["H7337"]],[7,12,["H3318"]],[12,15,["H4480","H4691"]]]},{"k":14269,"v":[[0,2,["H7200"]],[2,4,["H6040"]],[4,7,["H5999"]],[7,9,["H5375"]],[9,10,["H3605"]],[10,12,["H2403"]]]},{"k":14270,"v":[[0,1,["H7200"]],[1,3,["H341"]],[3,4,["H3588"]],[4,7,["H7231"]],[7,10,["H8130"]],[10,13,["H2555"]],[13,14,["H8135"]]]},{"k":14271,"v":[[0,2,["H8104"]],[2,4,["H5315"]],[4,6,["H5337"]],[6,10,["H408"]],[10,12,["H954"]],[12,13,["H3588"]],[13,17,["H2620"]],[17,19,[]]]},{"k":14272,"v":[[0,2,["H8537"]],[2,4,["H3476"]],[4,5,["H5341"]],[5,7,["H3588"]],[7,10,["H6960"]],[10,11,[]]]},{"k":14273,"v":[[0,1,["H6299","(H853)"]],[1,2,["H3478"]],[2,4,["H430"]],[4,7,["H4480","H3605"]],[7,9,["H6869"]]]},{"k":14274,"v":[[0,1,["H8199"]],[1,4,["H3068"]],[4,5,["H3588"]],[5,6,["H589"]],[6,8,["H1980"]],[8,11,["H8537"]],[11,14,["H982"]],[14,18,["H3068"]],[18,22,["H3808"]],[22,23,["H4571"]]]},{"k":14275,"v":[[0,1,["H974"]],[1,4,["H3068"]],[4,6,["H5254"]],[6,8,["H6884"]],[8,10,["H3629"]],[10,13,["H3820"]]]},{"k":14276,"v":[[0,1,["H3588"]],[1,3,["H2617"]],[3,5,["H5048"]],[5,7,["H5869"]],[7,11,["H1980"]],[11,14,["H571"]]]},{"k":14277,"v":[[0,3,["H3808"]],[3,4,["H3427"]],[4,5,["H5973"]],[5,6,["H7723"]],[6,7,["H4962"]],[7,8,["H3808"]],[8,12,["H935"]],[12,13,["H5973"]],[13,14,["H5956"]]]},{"k":14278,"v":[[0,3,["H8130"]],[3,5,["H6951"]],[5,8,["H7489"]],[8,11,["H3808"]],[11,12,["H3427"]],[12,13,["H5973"]],[13,15,["H7563"]]]},{"k":14279,"v":[[0,3,["H7364"]],[3,5,["H3709"]],[5,7,["H5356"]],[7,11,["H5437"]],[11,12,["(H853)"]],[12,13,["H4196"]],[13,15,["H3068"]]]},{"k":14280,"v":[[0,4,["H8085"]],[4,7,["H6963"]],[7,9,["H8426"]],[9,11,["H5608"]],[11,13,["H3605"]],[13,16,["H6381"]]]},{"k":14281,"v":[[0,1,["H3068"]],[1,4,["H157"]],[4,6,["H4583"]],[6,9,["H1004"]],[9,12,["H4725"]],[12,15,["H3519"]],[15,16,["H4908"]]]},{"k":14282,"v":[[0,1,["H622"]],[1,2,["H408"]],[2,4,["H5315"]],[4,5,["H5973"]],[5,6,["H2400"]],[6,9,["H2416"]],[9,10,["H5973"]],[10,11,["H1818"]],[11,12,["H376"]]]},{"k":14283,"v":[[0,2,["H834"]],[2,3,["H3027"]],[3,5,["H2154"]],[5,9,["H3225"]],[9,11,["H4390"]],[11,13,["H7810"]]]},{"k":14284,"v":[[0,4,["H589"]],[4,7,["H1980"]],[7,10,["H8537"]],[10,11,["H6299"]],[11,15,["H2603"]],[15,17,[]]]},{"k":14285,"v":[[0,2,["H7272"]],[2,3,["H5975"]],[3,7,["H4334"]],[7,10,["H4721"]],[10,13,["H1288"]],[13,15,["H3068"]]]},{"k":14286,"v":[[0,2,["H3068"]],[2,5,["H216"]],[5,8,["H3468"]],[8,9,["H4480","H4310"]],[9,12,["H3372"]],[12,14,["H3068"]],[14,17,["H4581"]],[17,20,["H2416"]],[20,22,["H4480","H4310"]],[22,26,["H6342"]]]},{"k":14287,"v":[[0,3,["H7489"]],[3,6,["H6862"]],[6,9,["H341"]],[9,10,["H7126"]],[10,11,["H5921"]],[11,15,["H398","(H853)"]],[15,17,["H1320"]],[17,18,["H1992"]],[18,19,["H3782"]],[19,21,["H5307"]]]},{"k":14288,"v":[[0,1,["H518"]],[1,3,["H4264"]],[3,5,["H2583"]],[5,6,["H5921"]],[6,9,["H3820"]],[9,11,["H3808"]],[11,12,["H3372"]],[12,13,["H518"]],[13,14,["H4421"]],[14,16,["H6965"]],[16,17,["H5921"]],[17,20,["H2063"]],[20,22,["H589"]],[22,24,["H982"]]]},{"k":14289,"v":[[0,1,["H259"]],[1,5,["H7592"]],[5,6,["H4480","H854"]],[6,8,["H3068"]],[8,13,["H1245"]],[13,17,["H3427"]],[17,20,["H1004"]],[20,23,["H3068"]],[23,24,["H3605"]],[24,26,["H3117"]],[26,29,["H2416"]],[29,31,["H2372"]],[31,33,["H5278"]],[33,36,["H3068"]],[36,39,["H1239"]],[39,42,["H1964"]]]},{"k":14290,"v":[[0,1,["H3588"]],[1,4,["H3117"]],[4,6,["H7451"]],[6,9,["H6845"]],[9,13,["H5520"]],[13,16,["H5643"]],[16,19,["H168"]],[19,22,["H5641"]],[22,28,["H7311"]],[28,31,["H6697"]]]},{"k":14291,"v":[[0,2,["H6258"]],[2,5,["H7218"]],[5,8,["H7311"]],[8,9,["H5921"]],[9,11,["H341"]],[11,13,["H5439"]],[13,18,["H2076"]],[18,21,["H168"]],[21,22,["H2077"]],[22,24,["H8643"]],[24,27,["H7891"]],[27,32,["H2167"]],[32,35,["H3068"]]]},{"k":14292,"v":[[0,1,["H8085"]],[1,3,["H3068"]],[3,6,["H7121"]],[6,9,["H6963"]],[9,11,["H2603"]],[11,16,["H6030"]],[16,17,[]]]},{"k":14293,"v":[[0,4,["H1245"]],[4,7,["H6440"]],[7,9,["H3820"]],[9,10,["H559"]],[10,12,["(H853)"]],[12,14,["H6440"]],[14,15,["H3068"]],[15,18,["H1245"]]]},{"k":14294,"v":[[0,1,["H5641"]],[1,2,["H408"]],[2,4,["H6440"]],[4,6,["H4480"]],[6,12,["H5186","H408","H5650"]],[12,14,["H639"]],[14,17,["H1961"]],[17,19,["H5833"]],[19,20,["H5203"]],[20,22,["H408"]],[22,23,["H408"]],[23,24,["H5800"]],[24,27,["H430"]],[27,30,["H3468"]]]},{"k":14295,"v":[[0,1,["H3588"]],[1,3,["H1"]],[3,6,["H517"]],[6,7,["H5800"]],[7,11,["H3068"]],[11,15,["H622"]]]},{"k":14296,"v":[[0,1,["H3384"]],[1,4,["H1870"]],[4,6,["H3068"]],[6,8,["H5148"]],[8,12,["H4334"]],[12,13,["H734"]],[13,15,["H4616"]],[15,17,["H8324"]]]},{"k":14297,"v":[[0,1,["H5414"]],[1,3,["H408"]],[3,7,["H5315"]],[7,10,["H6862"]],[10,11,["H3588"]],[11,12,["H8267"]],[12,13,["H5707"]],[13,16,["H6965"]],[16,23,["H3307"]],[23,24,["H2555"]]]},{"k":14298,"v":[[0,4,["H3884"]],[4,7,["H539"]],[7,9,["H7200"]],[9,11,["H2898"]],[11,14,["H3068"]],[14,17,["H776"]],[17,20,["H2416"]]]},{"k":14299,"v":[[0,1,["H6960"]],[1,2,["H413"]],[2,4,["H3068"]],[4,8,["H2388"]],[8,12,["H553"]],[12,14,["H3820"]],[14,15,["H6960"]],[15,18,["H413"]],[18,20,["H3068"]]]},{"k":14300,"v":[[0,1,["H413"]],[1,5,["H7121"]],[5,7,["H3068"]],[7,9,["H6697"]],[9,11,["H408"]],[11,12,["H2790"]],[12,13,["H4480"]],[13,15,["H6435"]],[15,19,["H2790"]],[19,20,["H4480"]],[20,24,["H4911","H5973"]],[24,28,["H3381"]],[28,31,["H953"]]]},{"k":14301,"v":[[0,1,["H8085"]],[1,3,["H6963"]],[3,6,["H8469"]],[6,9,["H7768"]],[9,10,["H413"]],[10,15,["H5375"]],[15,17,["H3027"]],[17,18,["H413"]],[18,20,["H6944"]],[20,21,["H1687"]]]},{"k":14302,"v":[[0,1,["H4900"]],[1,3,["H408"]],[3,5,["H5973"]],[5,7,["H7563"]],[7,9,["H5973"]],[9,11,["H6466"]],[11,13,["H205"]],[13,15,["H1696"]],[15,16,["H7965"]],[16,17,["H5973"]],[17,19,["H7453"]],[19,21,["H7451"]],[21,25,["H3824"]]]},{"k":14303,"v":[[0,1,["H5414"]],[1,6,["H6467"]],[6,11,["H7455"]],[11,14,["H4611"]],[14,15,["H5414"]],[15,19,["H4639"]],[19,22,["H3027"]],[22,23,["H7725"]],[23,27,["H1576"]]]},{"k":14304,"v":[[0,1,["H3588"]],[1,3,["H995","H413"]],[3,4,["H3808"]],[4,6,["H6468"]],[6,9,["H3068"]],[9,12,["H4639"]],[12,15,["H3027"]],[15,18,["H2040"]],[18,21,["H3808"]],[21,24,["H1129"]]]},{"k":14305,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,5,["H3588"]],[5,8,["H8085"]],[8,10,["H6963"]],[10,13,["H8469"]]]},{"k":14306,"v":[[0,2,["H3068"]],[2,5,["H5797"]],[5,8,["H4043"]],[8,10,["H3820"]],[10,11,["H982"]],[11,17,["H5826"]],[17,20,["H3820"]],[20,22,["H5937"]],[22,26,["H4480","H7892"]],[26,29,["H3034"]],[29,30,[]]]},{"k":14307,"v":[[0,2,["H3068"]],[2,5,["H5797"]],[5,7,["H1931"]],[7,10,["H3444"]],[10,11,["H4581"]],[11,14,["H4899"]]]},{"k":14308,"v":[[0,1,["H3467","(H853)"]],[1,3,["H5971"]],[3,5,["H1288","(H853)"]],[5,7,["H5159"]],[7,8,["H7462"]],[8,14,["H5375"]],[14,16,["H5704","H5769"]]]},{"k":14309,"v":[[0,1,["H3051"]],[1,4,["H3068"]],[4,7,["H1121","H410"]],[7,8,["H3051"]],[8,11,["H3068"]],[11,12,["H3519"]],[12,14,["H5797"]]]},{"k":14310,"v":[[0,1,["H3051"]],[1,4,["H3068"]],[4,6,["H3519"]],[6,10,["H8034"]],[10,11,["H7812"]],[11,13,["H3068"]],[13,16,["H1927"]],[16,18,["H6944"]]]},{"k":14311,"v":[[0,2,["H6963"]],[2,5,["H3068"]],[5,7,["H5921"]],[7,9,["H4325"]],[9,11,["H410"]],[11,13,["H3519"]],[13,14,["H7481"]],[14,16,["H3068"]],[16,18,["H5921"]],[18,19,["H7227"]],[19,20,["H4325"]]]},{"k":14312,"v":[[0,2,["H6963"]],[2,5,["H3068"]],[5,7,["H3581"]],[7,9,["H6963"]],[9,12,["H3068"]],[12,16,["H1926"]]]},{"k":14313,"v":[[0,2,["H6963"]],[2,5,["H3068"]],[5,6,["H7665"]],[6,8,["H730"]],[8,11,["H3068"]],[11,12,["H7665","(H853)"]],[12,14,["H730"]],[14,16,["H3844"]]]},{"k":14314,"v":[[0,6,["H7540"]],[6,7,["H3644"]],[7,9,["H5695"]],[9,10,["H3844"]],[10,12,["H8303"]],[12,13,["H3644"]],[13,15,["H1121"]],[15,16,["H7214"]]]},{"k":14315,"v":[[0,2,["H6963"]],[2,5,["H3068"]],[5,6,["H2672"]],[6,8,["H3852"]],[8,10,["H784"]]]},{"k":14316,"v":[[0,2,["H6963"]],[2,5,["H3068"]],[5,6,["H2342"]],[6,8,["H4057"]],[8,10,["H3068"]],[10,11,["H2342"]],[11,13,["H4057"]],[13,15,["H6946"]]]},{"k":14317,"v":[[0,2,["H6963"]],[2,5,["H3068"]],[5,8,["H355"]],[8,10,["H2342"]],[10,12,["H2834"]],[12,14,["H3295"]],[14,18,["H1964"]],[18,21,["H3605"]],[21,23,["H559"]],[23,25,["H3519"]]]},{"k":14318,"v":[[0,2,["H3068"]],[2,3,["H3427"]],[3,6,["H3999"]],[6,9,["H3068"]],[9,10,["H3427"]],[10,11,["H4428"]],[11,13,["H5769"]]]},{"k":14319,"v":[[0,2,["H3068"]],[2,4,["H5414"]],[4,5,["H5797"]],[5,8,["H5971"]],[8,10,["H3068"]],[10,12,["H1288","(H853)"]],[12,14,["H5971"]],[14,16,["H7965"]]]},{"k":14320,"v":[[0,3,["H7311"]],[3,6,["H3068"]],[6,7,["H3588"]],[7,12,["H1802"]],[12,15,["H3808"]],[15,18,["H341"]],[18,20,["H8055"]],[20,22,[]]]},{"k":14321,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,6,["H7768"]],[6,7,["H413"]],[7,12,["H7495"]],[12,13,[]]]},{"k":14322,"v":[[0,2,["H3068"]],[2,6,["H5927"]],[6,8,["H5315"]],[8,9,["H4480"]],[9,11,["H7585"]],[11,16,["H2421"]],[16,22,["H4480","H3381"]],[22,25,["H953"]]]},{"k":14323,"v":[[0,1,["H2167"]],[1,4,["H3068"]],[4,7,["H2623"]],[7,12,["H3034"]],[12,15,["H2143"]],[15,18,["H6944"]]]},{"k":14324,"v":[[0,1,["H3588"]],[1,3,["H639"]],[3,7,["H7281"]],[7,10,["H7522"]],[10,12,["H2416"]],[12,13,["H1065"]],[13,15,["H3885"]],[15,18,["H6153"]],[18,20,["H7440"]],[20,24,["H1242"]]]},{"k":14325,"v":[[0,4,["H7959"]],[4,5,["H589"]],[5,6,["H559"]],[6,9,["H1077","H5769"]],[9,11,["H4131"]]]},{"k":14326,"v":[[0,1,["H3068"]],[1,4,["H7522"]],[4,9,["H2042"]],[9,11,["H5975"]],[11,12,["H5797"]],[12,15,["H5641"]],[15,17,["H6440"]],[17,20,["H1961"]],[20,21,["H926"]]]},{"k":14327,"v":[[0,2,["H7121"]],[2,3,["H413"]],[3,6,["H3068"]],[6,8,["H413"]],[8,10,["H136"]],[10,13,["H2603"]]]},{"k":14328,"v":[[0,1,["H4100"]],[1,2,["H1215"]],[2,7,["H1818"]],[7,11,["H3381"]],[11,12,["H413"]],[12,14,["H7845"]],[14,17,["H6083"]],[17,18,["H3034"]],[18,22,["H5046"]],[22,24,["H571"]]]},{"k":14329,"v":[[0,1,["H8085"]],[1,3,["H3068"]],[3,6,["H2603"]],[6,9,["H3068"]],[9,10,["H1961"]],[10,13,["H5826"]]]},{"k":14330,"v":[[0,3,["H2015"]],[3,7,["H4553"]],[7,9,["H4234"]],[9,13,["H6605"]],[13,15,["H8242"]],[15,17,["H247"]],[17,20,["H8057"]]]},{"k":14331,"v":[[0,4,["H4616"]],[4,6,["H3519"]],[6,9,["H2167"]],[9,13,["H3808"]],[13,15,["H1826"]],[15,17,["H3068"]],[17,19,["H430"]],[19,23,["H3034"]],[23,27,["H5769"]]]},{"k":14332,"v":[[0,4,["H3068"]],[4,9,["H2620"]],[9,12,["H408","H5769"]],[12,14,["H954"]],[14,15,["H6403"]],[15,19,["H6666"]]]},{"k":14333,"v":[[0,2,["H5186"]],[2,4,["H241"]],[4,5,["H413"]],[5,7,["H5337"]],[7,9,["H4120"]],[9,10,["H1961"]],[10,13,["H4581"]],[13,14,["H6697"]],[14,17,["H1004"]],[17,19,["H4686"]],[19,21,["H3467"]],[21,22,[]]]},{"k":14334,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,5,["H5553"]],[5,8,["H4686"]],[8,13,["H4616","H8034"]],[13,14,["H5148"]],[14,17,["H5095"]],[17,18,[]]]},{"k":14335,"v":[[0,3,["H3318"]],[3,6,["H4480","H7568"]],[6,7,["H2098"]],[7,11,["H2934"]],[11,14,["H3588"]],[14,15,["H859"]],[15,18,["H4581"]]]},{"k":14336,"v":[[0,3,["H3027"]],[3,5,["H6485"]],[5,7,["H7307"]],[7,10,["H6299"]],[10,13,["H3068"]],[13,14,["H410"]],[14,16,["H571"]]]},{"k":14337,"v":[[0,3,["H8130"]],[3,6,["H8104"]],[6,7,["H7723"]],[7,8,["H1892"]],[8,10,["H589"]],[10,11,["H982"]],[11,12,["H413"]],[12,14,["H3068"]]]},{"k":14338,"v":[[0,4,["H1523"]],[4,6,["H8055"]],[6,9,["H2617"]],[9,10,["H834"]],[10,13,["H7200","(H853)"]],[13,15,["H6040"]],[15,18,["H3045"]],[18,20,["H5315"]],[20,22,["H6869"]]]},{"k":14339,"v":[[0,3,["H3808"]],[3,6,["H5462"]],[6,9,["H3027"]],[9,12,["H341"]],[12,15,["H5975"]],[15,17,["H7272"]],[17,21,["H4800"]]]},{"k":14340,"v":[[0,2,["H2603"]],[2,6,["H3068"]],[6,7,["H3588"]],[7,11,["H6862"]],[11,13,["H5869"]],[13,15,["H6244"]],[15,17,["H3708"]],[17,20,["H5315"]],[20,23,["H990"]]]},{"k":14341,"v":[[0,1,["H3588"]],[1,3,["H2416"]],[3,5,["H3615"]],[5,7,["H3015"]],[7,10,["H8141"]],[10,12,["H585"]],[12,14,["H3581"]],[14,15,["H3782"]],[15,19,["H5771"]],[19,22,["H6106"]],[22,24,["H6244"]]]},{"k":14342,"v":[[0,2,["H1961"]],[2,4,["H2781"]],[4,6,["H4480","H3605"]],[6,8,["H6887"]],[8,10,["H3966"]],[10,13,["H7934"]],[13,16,["H6343"]],[16,19,["H3045"]],[19,23,["H7200"]],[23,25,["H2351"]],[25,26,["H5074"]],[26,27,["H4480"]],[27,28,[]]]},{"k":14343,"v":[[0,3,["H7911"]],[3,7,["H4191"]],[7,10,["H4480","H3820"]],[10,12,["H1961"]],[12,15,["H6"]],[15,16,["H3627"]]]},{"k":14344,"v":[[0,1,["H3588"]],[1,4,["H8085"]],[4,6,["H1681"]],[6,8,["H7227"]],[8,9,["H4032"]],[9,13,["H4480","H5439"]],[13,17,["H3245"]],[17,18,["H3162"]],[18,19,["H5921"]],[19,22,["H2161"]],[22,25,["H3947"]],[25,27,["H5315"]]]},{"k":14345,"v":[[0,2,["H589"]],[2,3,["H982"]],[3,4,["H5921"]],[4,7,["H3068"]],[7,9,["H559"]],[9,10,["H859"]],[10,13,["H430"]]]},{"k":14346,"v":[[0,2,["H6256"]],[2,6,["H3027"]],[6,7,["H5337"]],[7,11,["H4480","H3027"]],[11,14,["H341"]],[14,19,["H4480","H7291"]],[19,20,[]]]},{"k":14347,"v":[[0,3,["H6440"]],[3,5,["H215"]],[5,6,["H5921"]],[6,8,["H5650"]],[8,9,["H3467"]],[9,13,["H2617"]],[13,14,[]]]},{"k":14348,"v":[[0,3,["H408"]],[3,5,["H954"]],[5,7,["H3068"]],[7,8,["H3588"]],[8,12,["H7121"]],[12,16,["H7563"]],[16,18,["H954"]],[18,23,["H1826"]],[23,26,["H7585"]]]},{"k":14349,"v":[[0,3,["H8267"]],[3,4,["H8193"]],[4,8,["H481"]],[8,10,["H1696"]],[10,12,["H6277"]],[12,13,["H1346"]],[13,15,["H937"]],[15,16,["H5921"]],[16,18,["H6662"]]]},{"k":14350,"v":[[0,2,["H4100"]],[2,3,["H7227"]],[3,6,["H2898"]],[6,7,["H834"]],[7,11,["H6845"]],[11,15,["H3373"]],[15,20,["H6466"]],[20,24,["H2620"]],[24,27,["H5048"]],[27,29,["H1121"]],[29,31,["H120"]]]},{"k":14351,"v":[[0,3,["H5641"]],[3,7,["H5643"]],[7,10,["H6440"]],[10,13,["H4480","H7407"]],[13,15,["H376"]],[15,20,["H6845"]],[20,23,["H5521"]],[23,26,["H4480","H7379"]],[26,28,["H3956"]]]},{"k":14352,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,5,["H3588"]],[5,12,["H6381","H2617"]],[12,15,["H4692"]],[15,16,["H5892"]]]},{"k":14353,"v":[[0,2,["H589"]],[2,3,["H559"]],[3,6,["H2648"]],[6,10,["H1629"]],[10,12,["H4480","H5048"]],[12,14,["H5869"]],[14,15,["H403"]],[15,17,["H8085"]],[17,19,["H6963"]],[19,22,["H8469"]],[22,25,["H7768"]],[25,26,["H413"]],[26,27,[]]]},{"k":14354,"v":[[0,2,["H157","(H853)"]],[2,4,["H3068"]],[4,5,["H3605"]],[5,8,["H2623"]],[8,11,["H3068"]],[11,12,["H5341"]],[12,14,["H539"]],[14,16,["H5921","H3499"]],[16,17,["H7999"]],[17,19,["H1346"]],[19,20,["H6213"]]]},{"k":14355,"v":[[0,4,["H2388"]],[4,8,["H553"]],[8,10,["H3824"]],[10,11,["H3605"]],[11,14,["H3176"]],[14,17,["H3068"]]]},{"k":14356,"v":[[0,1,["H835"]],[1,5,["H6588"]],[5,7,["H5375"]],[7,9,["H2401"]],[9,11,["H3680"]]]},{"k":14357,"v":[[0,1,["H835"]],[1,4,["H120"]],[4,8,["H3068"]],[8,9,["H2803"]],[9,10,["H3808"]],[10,11,["H5771"]],[11,15,["H7307"]],[15,18,["H369"]],[18,19,["H7423"]]]},{"k":14358,"v":[[0,1,["H3588"]],[1,4,["H2790"]],[4,6,["H6106"]],[6,8,["H1086"]],[8,11,["H7581"]],[11,12,["H3605"]],[12,14,["H3117"]],[14,15,[]]]},{"k":14359,"v":[[0,1,["H3588"]],[1,2,["H3119"]],[2,4,["H3915"]],[4,6,["H3027"]],[6,8,["H3513"]],[8,9,["H5921"]],[9,12,["H3955"]],[12,14,["H2015"]],[14,17,["H2725"]],[17,19,["H7019"]],[19,20,["H5542"]]]},{"k":14360,"v":[[0,2,["H3045"]],[2,4,["H2403"]],[4,9,["H5771"]],[9,12,["H3808"]],[12,13,["H3680"]],[13,15,["H559"]],[15,18,["H3034"]],[18,20,["H5921","H6588"]],[20,23,["H3068"]],[23,25,["H859"]],[25,26,["H5375"]],[26,28,["H5771"]],[28,31,["H2403"]],[31,32,["H5542"]]]},{"k":14361,"v":[[0,1,["H5921"]],[1,2,["H2063"]],[2,4,["H3605"]],[4,8,["H2623"]],[8,9,["H6419"]],[9,10,["H413"]],[10,14,["H6256"]],[14,19,["H4672"]],[19,20,["H7535"]],[20,23,["H7858"]],[23,25,["H7227"]],[25,26,["H4325"]],[26,29,["H3808"]],[29,31,["H5060"]],[31,32,["H413"]],[32,33,[]]]},{"k":14362,"v":[[0,1,["H859"]],[1,5,["H5643"]],[5,8,["H5341"]],[8,11,["H4480","H6862"]],[11,16,["H5437"]],[16,18,["H7438"]],[18,20,["H6405"]],[20,21,["H5542"]]]},{"k":14363,"v":[[0,3,["H7919"]],[3,6,["H3384"]],[6,10,["H1870"]],[10,11,["H2098"]],[11,14,["H1980"]],[14,17,["H3289","H5921"]],[17,21,["H5869"]]]},{"k":14364,"v":[[0,1,["H1961"]],[1,3,["H408"]],[3,6,["H5483"]],[6,10,["H6505"]],[10,13,["H369"]],[13,14,["H995"]],[14,16,["H5716"]],[16,20,["H1102"]],[20,22,["H4964"]],[22,24,["H7448"]],[24,25,["H1077"]],[25,28,["H7126"]],[28,30,["H413"]]]},{"k":14365,"v":[[0,1,["H7227"]],[1,2,["H4341"]],[2,7,["H7563"]],[7,11,["H982"]],[11,14,["H3068"]],[14,15,["H2617"]],[15,19,["H5437"]]]},{"k":14366,"v":[[0,2,["H8055"]],[2,5,["H3068"]],[5,7,["H1523"]],[7,9,["H6662"]],[9,13,["H7442"]],[13,14,["H3605"]],[14,18,["H3477"]],[18,20,["H3820"]]]},{"k":14367,"v":[[0,1,["H7442"]],[1,4,["H3068"]],[4,7,["H6662"]],[7,9,["H8416"]],[9,11,["H5000"]],[11,14,["H3477"]]]},{"k":14368,"v":[[0,1,["H3034"]],[1,3,["H3068"]],[3,5,["H3658"]],[5,6,["H2167"]],[6,11,["H5035"]],[11,17,["H6218"]]]},{"k":14369,"v":[[0,1,["H7891"]],[1,5,["H2319"]],[5,6,["H7892"]],[6,7,["H5059"]],[7,8,["H3190"]],[8,12,["H8643"]]]},{"k":14370,"v":[[0,1,["H3588"]],[1,3,["H1697"]],[3,6,["H3068"]],[6,8,["H3477"]],[8,10,["H3605"]],[10,12,["H4639"]],[12,16,["H530"]]]},{"k":14371,"v":[[0,2,["H157"]],[2,3,["H6666"]],[3,5,["H4941"]],[5,7,["H776"]],[7,9,["H4390"]],[9,12,["H2617"]],[12,15,["H3068"]]]},{"k":14372,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,9,["H8064"]],[9,10,["H6213"]],[10,12,["H3605"]],[12,14,["H6635"]],[14,19,["H7307"]],[19,22,["H6310"]]]},{"k":14373,"v":[[0,2,["H3664"]],[2,4,["H4325"]],[4,7,["H3220"]],[7,11,["H5067"]],[11,14,["H5414"]],[14,16,["H8415"]],[16,18,["H214"]]]},{"k":14374,"v":[[0,2,["H3605"]],[2,4,["H776"]],[4,5,["H3372"]],[5,7,["H4480","H3068"]],[7,9,["H3605"]],[9,11,["H3427"]],[11,14,["H8398"]],[14,17,["H1481"]],[17,18,["H4480"]],[18,19,[]]]},{"k":14375,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,3,["H559"]],[3,6,["H1961"]],[6,8,["H1931"]],[8,9,["H6680"]],[9,13,["H5975"]]]},{"k":14376,"v":[[0,2,["H3068"]],[2,5,["H6098"]],[5,8,["H1471"]],[8,10,["H6331"]],[10,14,["H4284"]],[14,17,["H5971"]],[17,20,["H5106"]]]},{"k":14377,"v":[[0,2,["H6098"]],[2,5,["H3068"]],[5,6,["H5975"]],[6,8,["H5769"]],[8,10,["H4284"]],[10,13,["H3820"]],[13,15,["H1755"]],[15,16,["H1755"]]]},{"k":14378,"v":[[0,1,["H835"]],[1,4,["H1471"]],[4,5,["H834"]],[5,6,["H430"]],[6,9,["H3068"]],[9,12,["H5971"]],[12,16,["H977"]],[16,20,["H5159"]]]},{"k":14379,"v":[[0,2,["H3068"]],[2,3,["H5027"]],[3,5,["H4480","H8064"]],[5,7,["H7200","(H853)"]],[7,8,["H3605"]],[8,10,["H1121"]],[10,12,["H120"]]]},{"k":14380,"v":[[0,3,["H4480","H4349"]],[3,6,["H3427"]],[6,8,["H7688"]],[8,9,["H413"]],[9,10,["H3605"]],[10,12,["H3427"]],[12,15,["H776"]]]},{"k":14381,"v":[[0,2,["H3335"]],[2,4,["H3820"]],[4,5,["H3162"]],[5,7,["H995","H413"]],[7,8,["H3605"]],[8,10,["H4639"]]]},{"k":14382,"v":[[0,3,["H369"]],[3,4,["H4428"]],[4,5,["H3467"]],[5,8,["H7230"]],[8,11,["H2428"]],[11,14,["H1368"]],[14,16,["H3808"]],[16,17,["H5337"]],[17,19,["H7230"]],[19,20,["H3581"]]]},{"k":14383,"v":[[0,2,["H5483"]],[2,6,["H8267"]],[6,8,["H8668"]],[8,9,["H3808"]],[9,12,["H4422"]],[12,16,["H7230"]],[16,17,["H2428"]]]},{"k":14384,"v":[[0,1,["H2009"]],[1,3,["H5869"]],[3,6,["H3068"]],[6,8,["H413"]],[8,11,["H3373"]],[11,16,["H3176"]],[16,19,["H2617"]]]},{"k":14385,"v":[[0,2,["H5337"]],[2,4,["H5315"]],[4,6,["H4480","H4194"]],[6,11,["H2421"]],[11,13,["H7458"]]]},{"k":14386,"v":[[0,2,["H5315"]],[2,3,["H2442"]],[3,6,["H3068"]],[6,7,["H1931"]],[7,10,["H5828"]],[10,13,["H4043"]]]},{"k":14387,"v":[[0,1,["H3588"]],[1,3,["H3820"]],[3,5,["H8055"]],[5,8,["H3588"]],[8,11,["H982"]],[11,14,["H6944"]],[14,15,["H8034"]]]},{"k":14388,"v":[[0,3,["H2617"]],[3,5,["H3068"]],[5,6,["H1961"]],[6,7,["H5921"]],[7,10,["H834"]],[10,12,["H3176"]],[12,14,[]]]},{"k":14389,"v":[[0,3,["H1288"]],[3,4,["(H853)"]],[4,5,["H3068"]],[5,7,["H3605"]],[7,8,["H6256"]],[8,10,["H8416"]],[10,12,["H8548"]],[12,16,["H6310"]]]},{"k":14390,"v":[[0,2,["H5315"]],[2,6,["H1984"]],[6,9,["H3068"]],[9,11,["H6035"]],[11,13,["H8085"]],[13,17,["H8055"]]]},{"k":14391,"v":[[0,2,["H1431"]],[2,4,["H3068"]],[4,5,["H854"]],[5,10,["H7311"]],[10,12,["H8034"]],[12,13,["H3162"]]]},{"k":14392,"v":[[0,2,["H1875","(H853)"]],[2,4,["H3068"]],[4,7,["H6030"]],[7,10,["H5337"]],[10,13,["H4480","H3605"]],[13,15,["H4035"]]]},{"k":14393,"v":[[0,2,["H5027"]],[2,3,["H413"]],[3,7,["H5102"]],[7,10,["H6440"]],[10,12,["H408"]],[12,13,["H2659"]]]},{"k":14394,"v":[[0,1,["H2088"]],[1,2,["H6041"]],[2,4,["H7121"]],[4,7,["H3068"]],[7,8,["H8085"]],[8,11,["H3467"]],[11,15,["H4480","H3605"]],[15,17,["H6869"]]]},{"k":14395,"v":[[0,2,["H4397"]],[2,5,["H3068"]],[5,6,["H2583"]],[6,8,["H5439"]],[8,11,["H3373"]],[11,14,["H2502"]],[14,15,[]]]},{"k":14396,"v":[[0,2,["H2938"]],[2,4,["H7200"]],[4,5,["H3588"]],[5,7,["H3068"]],[7,9,["H2896"]],[9,10,["H835"]],[10,13,["H1397"]],[13,15,["H2620"]],[15,17,[]]]},{"k":14397,"v":[[0,2,["H3372","(H853)"]],[2,4,["H3068"]],[4,7,["H6918"]],[7,8,["H3588"]],[8,11,["H369"]],[11,12,["H4270"]],[12,16,["H3373"]],[16,17,[]]]},{"k":14398,"v":[[0,3,["H3715"]],[3,5,["H7326"]],[5,8,["H7456"]],[8,12,["H1875"]],[12,14,["H3068"]],[14,16,["H3808"]],[16,17,["H2637"]],[17,18,["H3605"]],[18,19,["H2896"]],[19,20,[]]]},{"k":14399,"v":[[0,1,["H1980"]],[1,3,["H1121"]],[3,4,["H8085"]],[4,9,["H3925"]],[9,12,["H3374"]],[12,15,["H3068"]]]},{"k":14400,"v":[[0,1,["H4310"]],[1,2,["H376"]],[2,6,["H2655"]],[6,7,["H2416"]],[7,9,["H157"]],[9,11,["H3117"]],[11,15,["H7200"]],[15,16,["H2896"]]]},{"k":14401,"v":[[0,1,["H5341"]],[1,3,["H3956"]],[3,5,["H4480","H7451"]],[5,8,["H8193"]],[8,10,["H4480","H1696"]],[10,11,["H4820"]]]},{"k":14402,"v":[[0,1,["H5493"]],[1,3,["H4480","H7451"]],[3,5,["H6213"]],[5,6,["H2896"]],[6,7,["H1245"]],[7,8,["H7965"]],[8,10,["H7291"]],[10,11,[]]]},{"k":14403,"v":[[0,2,["H5869"]],[2,5,["H3068"]],[5,7,["H413"]],[7,9,["H6662"]],[9,12,["H241"]],[12,15,["H413"]],[15,17,["H7775"]]]},{"k":14404,"v":[[0,2,["H6440"]],[2,5,["H3068"]],[5,10,["H6213"]],[10,11,["H7451"]],[11,14,["H3772"]],[14,16,["H2143"]],[16,21,["H4480","H776"]]]},{"k":14405,"v":[[0,3,["H6817"]],[3,6,["H3068"]],[6,7,["H8085"]],[7,9,["H5337"]],[9,13,["H4480","H3605"]],[13,15,["H6869"]]]},{"k":14406,"v":[[0,2,["H3068"]],[2,4,["H7138"]],[4,11,["H7665"]],[11,12,["H3820"]],[12,14,["H3467"]],[14,20,["H1793"]],[20,21,["H7307"]]]},{"k":14407,"v":[[0,1,["H7227"]],[1,4,["H7451"]],[4,7,["H6662"]],[7,10,["H3068"]],[10,11,["H5337"]],[11,16,["H4480","H3605"]]]},{"k":14408,"v":[[0,2,["H8104"]],[2,3,["H3605"]],[3,5,["H6106"]],[5,6,["H3808"]],[6,7,["H259"]],[7,9,["H4480","H2007"]],[9,11,["H7665"]]]},{"k":14409,"v":[[0,1,["H7451"]],[1,3,["H4191"]],[3,5,["H7563"]],[5,9,["H8130"]],[9,11,["H6662"]],[11,14,["H816"]]]},{"k":14410,"v":[[0,2,["H3068"]],[2,3,["H6299"]],[3,5,["H5315"]],[5,8,["H5650"]],[8,10,["H3808","H3605"]],[10,14,["H2620"]],[14,19,["H816"]]]},{"k":14411,"v":[[0,1,["H7378"]],[1,5,["H3068"]],[5,6,["H854"]],[6,9,["H3401"]],[9,13,["H3898","(H853)"]],[13,17,["H3898"]],[17,18,[]]]},{"k":14412,"v":[[0,2,["H2388"]],[2,4,["H4043"]],[4,6,["H6793"]],[6,9,["H6965"]],[9,12,["H5833"]]]},{"k":14413,"v":[[0,2,["H7324"]],[2,5,["H2595"]],[5,7,["H5462"]],[7,10,["H7125"]],[10,13,["H7291"]],[13,15,["H559"]],[15,18,["H5315"]],[18,19,["H589"]],[19,22,["H3444"]]]},{"k":14414,"v":[[0,4,["H954"]],[4,8,["H3637"]],[8,11,["H1245"]],[11,13,["H5315"]],[13,17,["H5472"]],[17,18,["H268"]],[18,22,["H2659"]],[22,24,["H2803"]],[24,26,["H7451"]]]},{"k":14415,"v":[[0,3,["H1961"]],[3,5,["H4671"]],[5,6,["H6440"]],[6,8,["H7307"]],[8,12,["H4397"]],[12,15,["H3068"]],[15,16,["H1760"]],[16,17,[]]]},{"k":14416,"v":[[0,3,["H1870"]],[3,4,["H1961"]],[4,5,["H2822"]],[5,7,["H2519"]],[7,11,["H4397"]],[11,14,["H3068"]],[14,15,["H7291"]],[15,16,[]]]},{"k":14417,"v":[[0,1,["H3588"]],[1,3,["H2600"]],[3,6,["H2934"]],[6,10,["H7568"]],[10,13,["H7845"]],[13,16,["H2600"]],[16,19,["H2658"]],[19,22,["H5315"]]]},{"k":14418,"v":[[0,2,["H7722"]],[2,4,["H935"]],[4,7,["H3808","H3045"]],[7,11,["H7568"]],[11,12,["H834"]],[12,15,["H2934"]],[15,16,["H3920"]],[16,21,["H7722"]],[21,24,["H5307"]]]},{"k":14419,"v":[[0,3,["H5315"]],[3,6,["H1523"]],[6,9,["H3068"]],[9,12,["H7797"]],[12,15,["H3444"]]]},{"k":14420,"v":[[0,1,["H3605"]],[1,3,["H6106"]],[3,5,["H559"]],[5,6,["H3068"]],[6,7,["H4310"]],[7,11,["H3644"]],[11,13,["H5337"]],[13,15,["H6041"]],[15,21,["H4480","H2389"]],[21,22,["H4480"]],[22,26,["H6041"]],[26,29,["H34"]],[29,33,["H4480","H1497"]],[33,34,[]]]},{"k":14421,"v":[[0,1,["H2555"]],[1,2,["H5707"]],[2,5,["H6965"]],[5,10,["H7592"]],[10,12,["H834"]],[12,14,["H3045"]],[14,15,["H3808"]]]},{"k":14422,"v":[[0,2,["H7999"]],[2,4,["H7451"]],[4,5,["H8478"]],[5,6,["H2896"]],[6,9,["H7908"]],[9,12,["H5315"]]]},{"k":14423,"v":[[0,4,["H589"]],[4,8,["H2470"]],[8,10,["H3830"]],[10,12,["H8242"]],[12,14,["H6031"]],[14,16,["H5315"]],[16,18,["H6685"]],[18,21,["H8605"]],[21,22,["H7725"]],[22,23,["H5921"]],[23,26,["H2436"]]]},{"k":14424,"v":[[0,3,["H1980"]],[3,10,["H7453"]],[10,12,["H251"]],[12,15,["H7817"]],[15,16,["H6937"]],[16,20,["H57"]],[20,23,["H517"]]]},{"k":14425,"v":[[0,4,["H6761"]],[4,6,["H8055"]],[6,10,["H622"]],[10,13,["H5222"]],[13,16,["H622"]],[16,17,["H5921"]],[17,21,["H3045"]],[21,23,["H3808"]],[23,26,["H7167"]],[26,29,["H1826"]],[29,30,["H3808"]]]},{"k":14426,"v":[[0,2,["H2611"]],[2,3,["H3934"]],[3,5,["H4580"]],[5,7,["H2786"]],[7,8,["H5921"]],[8,12,["H8127"]]]},{"k":14427,"v":[[0,1,["H136"]],[1,3,["H4100"]],[3,7,["H7200"]],[7,8,["H7725"]],[8,10,["H5315"]],[10,13,["H4480","H7722"]],[13,15,["H3173"]],[15,18,["H4480","H3715"]]]},{"k":14428,"v":[[0,5,["H3034"]],[5,8,["H7227"]],[8,9,["H6951"]],[9,12,["H1984"]],[12,15,["H6099"]],[15,16,["H5971"]]]},{"k":14429,"v":[[0,2,["H408"]],[2,7,["H341"]],[7,8,["H8267"]],[8,9,["H8055"]],[9,15,["H7169"]],[15,18,["H5869"]],[18,20,["H8130"]],[20,24,["H2600"]]]},{"k":14430,"v":[[0,1,["H3588"]],[1,3,["H1696"]],[3,4,["H3808"]],[4,5,["H7965"]],[5,8,["H2803"]],[8,9,["H4820"]],[9,10,["H1697"]],[10,11,["H5921"]],[11,15,["H7282"]],[15,18,["H776"]]]},{"k":14431,"v":[[0,3,["H7337"]],[3,5,["H6310"]],[5,7,["H5921"]],[7,10,["H559"]],[10,11,["H1889"]],[11,12,["H1889"]],[12,14,["H5869"]],[14,16,["H7200"]],[16,17,[]]]},{"k":14432,"v":[[0,4,["H7200"]],[4,6,["H3068"]],[6,8,["H408"]],[8,9,["H2790"]],[9,11,["H136"]],[11,13,["H408"]],[13,14,["H7368"]],[14,15,["H4480"]],[15,16,[]]]},{"k":14433,"v":[[0,3,["H5782"]],[3,5,["H6974"]],[5,8,["H4941"]],[8,12,["H7379"]],[12,14,["H430"]],[14,17,["H136"]]]},{"k":14434,"v":[[0,1,["H8199"]],[1,4,["H3068"]],[4,6,["H430"]],[6,10,["H6664"]],[10,14,["H408"]],[14,15,["H8055"]],[15,17,[]]]},{"k":14435,"v":[[0,3,["H408"]],[3,4,["H559"]],[4,7,["H3820"]],[7,8,["H1889"]],[8,13,["H5315"]],[13,16,["H408"]],[16,17,["H559"]],[17,22,["H1104"]]]},{"k":14436,"v":[[0,4,["H954"]],[4,8,["H2659"]],[8,9,["H3162"]],[9,11,["H8056"]],[11,14,["H7451"]],[14,18,["H3847"]],[18,20,["H1322"]],[20,22,["H3639"]],[22,24,["H1431"]],[24,26,["H5921"]],[26,27,[]]]},{"k":14437,"v":[[0,5,["H7442"]],[5,8,["H8055"]],[8,10,["H2655"]],[10,13,["H6664"]],[13,17,["H559"]],[17,18,["H8548"]],[18,21,["H3068"]],[21,23,["H1431"]],[23,26,["H2655"]],[26,29,["H7965"]],[29,32,["H5650"]]]},{"k":14438,"v":[[0,3,["H3956"]],[3,5,["H1897"]],[5,8,["H6664"]],[8,12,["H8416"]],[12,13,["H3605"]],[13,15,["H3117"]],[15,16,[]]]},{"k":14439,"v":[[0,2,["H6588"]],[2,5,["H7563"]],[5,6,["H5002"]],[6,7,["H7130"]],[7,9,["H3820"]],[9,13,["H369"]],[13,14,["H6343"]],[14,16,["H430"]],[16,17,["H5048"]],[17,19,["H5869"]]]},{"k":14440,"v":[[0,1,["H3588"]],[1,3,["H2505","H413"]],[3,8,["H5869"]],[8,11,["H5771"]],[11,13,["H4672"]],[13,16,["H8130"]]]},{"k":14441,"v":[[0,2,["H1697"]],[2,5,["H6310"]],[5,7,["H205"]],[7,9,["H4820"]],[9,13,["H2308"]],[13,16,["H7919"]],[16,20,["H3190"]]]},{"k":14442,"v":[[0,2,["H2803"]],[2,3,["H205"]],[3,4,["H5921"]],[4,6,["H4904"]],[6,9,["H3320"]],[9,10,["H5921"]],[10,12,["H1870"]],[12,15,["H3808"]],[15,16,["H2896"]],[16,18,["H3988"]],[18,19,["H3808"]],[19,20,["H7451"]]]},{"k":14443,"v":[[0,2,["H2617"]],[2,4,["H3068"]],[4,8,["H8064"]],[8,11,["H530"]],[11,13,["H5704"]],[13,15,["H7834"]]]},{"k":14444,"v":[[0,2,["H6666"]],[2,6,["H410"]],[6,7,["H2042"]],[7,9,["H4941"]],[9,12,["H7227"]],[12,13,["H8415"]],[13,15,["H3068"]],[15,17,["H3467"]],[17,18,["H120"]],[18,20,["H929"]]]},{"k":14445,"v":[[0,1,["H4100"]],[1,2,["H3368"]],[2,5,["H2617"]],[5,7,["H430"]],[7,10,["H1121"]],[10,12,["H120"]],[12,15,["H2620"]],[15,18,["H6738"]],[18,21,["H3671"]]]},{"k":14446,"v":[[0,5,["H7301"]],[5,8,["H4480","H1880"]],[8,11,["H1004"]],[11,17,["H8248"]],[17,20,["H5158"]],[20,23,["H5730"]]]},{"k":14447,"v":[[0,1,["H3588"]],[1,2,["H5973"]],[2,6,["H4726"]],[6,8,["H2416"]],[8,11,["H216"]],[11,14,["H7200"]],[14,15,["H216"]]]},{"k":14448,"v":[[0,2,["H4900"]],[2,4,["H2617"]],[4,8,["H3045"]],[8,12,["H6666"]],[12,15,["H3477"]],[15,17,["H3820"]]]},{"k":14449,"v":[[0,2,["H408"]],[2,4,["H7272"]],[4,6,["H1346"]],[6,8,["H935"]],[8,12,["H408"]],[12,14,["H3027"]],[14,17,["H7563"]],[17,18,["H5110"]],[18,19,[]]]},{"k":14450,"v":[[0,1,["H8033"]],[1,4,["H6466"]],[4,6,["H205"]],[6,7,["H5307"]],[7,11,["H1760"]],[11,14,["H3808"]],[14,16,["H3201"]],[16,18,["H6965"]]]},{"k":14451,"v":[[0,3,["H408","H2734"]],[3,6,["H7489"]],[6,7,["H408"]],[7,10,["H7065"]],[10,13,["H6213"]],[13,15,["H5766"]]]},{"k":14452,"v":[[0,1,["H3588"]],[1,4,["H4120"]],[4,7,["H5243"]],[7,10,["H2682"]],[10,12,["H5034"]],[12,15,["H3418"]],[15,16,["H1877"]]]},{"k":14453,"v":[[0,1,["H982"]],[1,4,["H3068"]],[4,6,["H6213"]],[6,7,["H2896"]],[7,11,["H7931"]],[11,14,["H776"]],[14,16,["H530"]],[16,20,["H7462"]]]},{"k":14454,"v":[[0,2,["H6026"]],[2,4,["H5921"]],[4,6,["H3068"]],[6,10,["H5414"]],[10,13,["H4862"]],[13,16,["H3820"]]]},{"k":14455,"v":[[0,1,["H1556"]],[1,3,["H1870"]],[3,4,["H5921"]],[4,6,["H3068"]],[6,7,["H982"]],[7,9,["H5921"]],[9,12,["H1931"]],[12,17,["H6213"]]]},{"k":14456,"v":[[0,5,["H3318"]],[5,7,["H6664"]],[7,10,["H216"]],[10,13,["H4941"]],[13,16,["H6672"]]]},{"k":14457,"v":[[0,1,["H1826"]],[1,4,["H3068"]],[4,7,["H2342"]],[7,12,["H408","H2734"]],[12,17,["H6743"]],[17,20,["H1870"]],[20,24,["H376"]],[24,30,["H6213","H4209"]]]},{"k":14458,"v":[[0,1,["H7503"]],[1,3,["H4480","H639"]],[3,5,["H5800"]],[5,6,["H2534"]],[6,9,["H408","H2734"]],[9,12,["H389"]],[12,15,["H7489"]]]},{"k":14459,"v":[[0,1,["H3588"]],[1,2,["H7489"]],[2,6,["H3772"]],[6,11,["H6960"]],[11,13,["H3068"]],[13,14,["H1992"]],[14,16,["H3423"]],[16,18,["H776"]]]},{"k":14460,"v":[[0,2,["H5750"]],[2,4,["H4592"]],[4,8,["H7563"]],[8,10,["H369"]],[10,16,["H995","H5921"]],[16,18,["H4725"]],[18,22,["H369"]],[22,23,[]]]},{"k":14461,"v":[[0,3,["H6035"]],[3,5,["H3423"]],[5,7,["H776"]],[7,11,["H6026"]],[11,12,["H5921"]],[12,14,["H7230"]],[14,16,["H7965"]]]},{"k":14462,"v":[[0,2,["H7563"]],[2,3,["H2161"]],[3,6,["H6662"]],[6,8,["H2786"]],[8,9,["H5921"]],[9,13,["H8127"]]]},{"k":14463,"v":[[0,2,["H136"]],[2,4,["H7832"]],[4,7,["H3588"]],[7,9,["H7200"]],[9,10,["H3588"]],[10,12,["H3117"]],[12,14,["H935"]]]},{"k":14464,"v":[[0,2,["H7563"]],[2,5,["H6605"]],[5,7,["H2719"]],[7,10,["H1869"]],[10,12,["H7198"]],[12,15,["H5307"]],[15,17,["H6041"]],[17,19,["H34"]],[19,22,["H2873"]],[22,27,["H3477"]],[27,28,["H1870"]]]},{"k":14465,"v":[[0,2,["H2719"]],[2,4,["H935"]],[4,8,["H3820"]],[8,11,["H7198"]],[11,14,["H7665"]]]},{"k":14466,"v":[[0,2,["H4592"]],[2,5,["H6662"]],[5,9,["H2896"]],[9,12,["H4480","H1995"]],[12,14,["H7227"]],[14,15,["H7563"]]]},{"k":14467,"v":[[0,1,["H3588"]],[1,3,["H2220"]],[3,6,["H7563"]],[6,9,["H7665"]],[9,12,["H3068"]],[12,13,["H5564"]],[13,15,["H6662"]]]},{"k":14468,"v":[[0,2,["H3068"]],[2,3,["H3045"]],[3,5,["H3117"]],[5,8,["H8549"]],[8,11,["H5159"]],[11,13,["H1961"]],[13,15,["H5769"]]]},{"k":14469,"v":[[0,3,["H3808"]],[3,5,["H954"]],[5,8,["H7451"]],[8,9,["H6256"]],[9,13,["H3117"]],[13,15,["H7459"]],[15,19,["H7646"]]]},{"k":14470,"v":[[0,1,["H3588"]],[1,3,["H7563"]],[3,5,["H6"]],[5,8,["H341"]],[8,11,["H3068"]],[11,16,["H3368"]],[16,18,["H3733"]],[18,21,["H3615"]],[21,23,["H6227"]],[23,27,["H3615"]]]},{"k":14471,"v":[[0,2,["H7563"]],[2,3,["H3867"]],[3,5,["H7999"]],[5,6,["H3808"]],[6,10,["H6662"]],[10,12,["H2603"]],[12,14,["H5414"]]]},{"k":14472,"v":[[0,1,["H3588"]],[1,5,["H1288"]],[5,9,["H3423"]],[9,11,["H776"]],[11,16,["H7043"]],[16,22,["H3772"]]]},{"k":14473,"v":[[0,2,["H4703"]],[2,6,["H1397"]],[6,8,["H3559"]],[8,11,["H4480","H3068"]],[11,14,["H2654"]],[14,17,["H1870"]]]},{"k":14474,"v":[[0,1,["H3588"]],[1,3,["H5307"]],[3,6,["H3808"]],[6,10,["H2904"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,14,["H5564"]],[14,18,["H3027"]]]},{"k":14475,"v":[[0,3,["H1961"]],[3,4,["H5288"]],[4,5,["H1571"]],[5,8,["H2204"]],[8,12,["H3808"]],[12,13,["H7200"]],[13,15,["H6662"]],[15,16,["H5800"]],[16,19,["H2233"]],[19,20,["H1245"]],[20,21,["H3899"]]]},{"k":14476,"v":[[0,3,["H3605","H3117"]],[3,4,["H2603"]],[4,6,["H3867"]],[6,9,["H2233"]],[9,11,["H1293"]]]},{"k":14477,"v":[[0,1,["H5493"]],[1,2,["H4480"]],[2,3,["H7451"]],[3,5,["H6213"]],[5,6,["H2896"]],[6,8,["H7931"]],[8,10,["H5769"]]]},{"k":14478,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,4,["H157"]],[4,5,["H4941"]],[5,7,["H5800"]],[7,8,["H3808","(H853)"]],[8,10,["H2623"]],[10,13,["H8104"]],[13,15,["H5769"]],[15,18,["H2233"]],[18,21,["H7563"]],[21,25,["H3772"]]]},{"k":14479,"v":[[0,2,["H6662"]],[2,4,["H3423"]],[4,6,["H776"]],[6,8,["H7931"]],[8,9,["H5921"]],[9,11,["H5703"]]]},{"k":14480,"v":[[0,2,["H6310"]],[2,5,["H6662"]],[5,6,["H1897"]],[6,7,["H2451"]],[7,10,["H3956"]],[10,11,["H1696"]],[11,13,["H4941"]]]},{"k":14481,"v":[[0,2,["H8451"]],[2,5,["H430"]],[5,9,["H3820"]],[9,10,["H3808"]],[10,13,["H838"]],[13,15,["H4571"]]]},{"k":14482,"v":[[0,2,["H7563"]],[2,3,["H6822"]],[3,5,["H6662"]],[5,7,["H1245"]],[7,9,["H4191"]],[9,10,[]]]},{"k":14483,"v":[[0,2,["H3068"]],[2,4,["H3808"]],[4,5,["H5800"]],[5,9,["H3027"]],[9,10,["H3808"]],[10,11,["H7561"]],[11,16,["H8199"]]]},{"k":14484,"v":[[0,1,["H6960"]],[1,2,["H413"]],[2,4,["H3068"]],[4,6,["H8104"]],[6,8,["H1870"]],[8,12,["H7311"]],[12,15,["H3423"]],[15,17,["H776"]],[17,20,["H7563"]],[20,23,["H3772"]],[23,26,["H7200"]],[26,27,[]]]},{"k":14485,"v":[[0,3,["H7200"]],[3,5,["H7563"]],[5,8,["H6184"]],[8,11,["H6168"]],[11,14,["H7488"]],[14,16,["H249"]]]},{"k":14486,"v":[[0,4,["H5674"]],[4,6,["H2009"]],[6,9,["H369"]],[9,12,["H1245"]],[12,17,["H3808"]],[17,19,["H4672"]]]},{"k":14487,"v":[[0,1,["H8104"]],[1,3,["H8535"]],[3,6,["H7200"]],[6,8,["H3477"]],[8,9,["H3588"]],[9,11,["H319"]],[11,14,["H376"]],[14,16,["H7965"]]]},{"k":14488,"v":[[0,3,["H6586"]],[3,6,["H8045"]],[6,7,["H3162"]],[7,9,["H319"]],[9,12,["H7563"]],[12,16,["H3772"]]]},{"k":14489,"v":[[0,3,["H8668"]],[3,6,["H6662"]],[6,10,["H4480","H3068"]],[10,14,["H4581"]],[14,17,["H6256"]],[17,19,["H6869"]]]},{"k":14490,"v":[[0,3,["H3068"]],[3,5,["H5826"]],[5,8,["H6403"]],[8,12,["H6403"]],[12,16,["H4480","H7563"]],[16,18,["H3467"]],[18,20,["H3588"]],[20,22,["H2620"]],[22,24,[]]]},{"k":14491,"v":[[0,2,["H3068"]],[2,3,["H3198"]],[3,5,["H408"]],[5,8,["H7110"]],[8,10,["H3256"]],[10,15,["H2534"]]]},{"k":14492,"v":[[0,1,["H3588"]],[1,3,["H2671"]],[3,5,["H5181"]],[5,10,["H3027"]],[10,13,["H5181","H5921"]]]},{"k":14493,"v":[[0,3,["H369"]],[3,4,["H4974"]],[4,7,["H1320"]],[7,8,["H4480","H6440"]],[8,11,["H2195"]],[11,12,["H369"]],[12,16,["H7965"]],[16,19,["H6106"]],[19,20,["H4480","H6440"]],[20,23,["H2403"]]]},{"k":14494,"v":[[0,1,["H3588"]],[1,3,["H5771"]],[3,6,["H5674"]],[6,8,["H7218"]],[8,11,["H3515"]],[11,12,["H4853"]],[12,16,["H3513"]],[16,17,["H4480"]],[17,18,[]]]},{"k":14495,"v":[[0,2,["H2250"]],[2,3,["H887"]],[3,6,["H4743"]],[6,7,["H4480","H6440"]],[7,10,["H200"]]]},{"k":14496,"v":[[0,3,["H5753"]],[3,7,["H7817"]],[7,8,["H5704","H3966"]],[8,10,["H1980"]],[10,11,["H6937"]],[11,12,["H3605"]],[12,14,["H3117"]],[14,15,[]]]},{"k":14497,"v":[[0,1,["H3588"]],[1,3,["H3689"]],[3,5,["H4390"]],[5,8,["H7033"]],[8,13,["H369"]],[13,14,["H4974"]],[14,17,["H1320"]]]},{"k":14498,"v":[[0,3,["H6313"]],[3,5,["H5704","H3966"]],[5,6,["H1794"]],[6,9,["H7580"]],[9,14,["H4480","H5100"]],[14,17,["H3820"]]]},{"k":14499,"v":[[0,1,["H136"]],[1,2,["H3605"]],[2,4,["H8378"]],[4,6,["H5048"]],[6,10,["H585"]],[10,12,["H3808"]],[12,13,["H5641"]],[13,14,["H4480"]],[14,15,[]]]},{"k":14500,"v":[[0,2,["H3820"]],[2,3,["H5503"]],[3,5,["H3581"]],[5,6,["H5800"]],[6,11,["H216"]],[11,14,["H5869"]],[14,15,["H1992"]],[15,16,["H1571"]],[16,18,["H369"]],[18,19,["H854"]],[19,20,[]]]},{"k":14501,"v":[[0,2,["H157"]],[2,5,["H7453"]],[5,7,["H5975"]],[7,10,["H4480","H5048","H5061"]],[10,13,["H7138"]],[13,14,["H5975"]],[14,16,["H4480","H7350"]]]},{"k":14502,"v":[[0,5,["H1245"]],[5,7,["H5315"]],[7,9,["H5367"]],[9,15,["H1875"]],[15,17,["H7451"]],[17,18,["H1696"]],[18,20,["H1942"]],[20,22,["H1897"]],[22,23,["H4820"]],[23,24,["H3605"]],[24,26,["H3117"]],[26,27,[]]]},{"k":14503,"v":[[0,2,["H589"]],[2,5,["H2795"]],[5,7,["H8085"]],[7,8,["H3808"]],[8,15,["H483"]],[15,17,["H6605"]],[17,18,["H3808"]],[18,20,["H6310"]]]},{"k":14504,"v":[[0,3,["H1961"]],[3,6,["H376"]],[6,7,["H834"]],[7,8,["H8085"]],[8,9,["H3808"]],[9,13,["H6310"]],[13,15,["H369"]],[15,16,["H8433"]]]},{"k":14505,"v":[[0,1,["H3588"]],[1,5,["H3068"]],[5,8,["H3176"]],[8,9,["H859"]],[9,11,["H6030"]],[11,13,["H136"]],[13,15,["H430"]]]},{"k":14506,"v":[[0,1,["H3588"]],[1,3,["H559"]],[3,6,["H6435"]],[6,10,["H8055"]],[10,15,["H7272"]],[15,16,["H4131"]],[16,18,["H1431"]],[18,20,["H5921"]],[20,21,[]]]},{"k":14507,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,4,["H3559"]],[4,6,["H6761"]],[6,9,["H4341"]],[9,11,["H8548"]],[11,12,["H5048"]],[12,13,[]]]},{"k":14508,"v":[[0,1,["H3588"]],[1,4,["H5046"]],[4,6,["H5771"]],[6,10,["H1672"]],[10,13,["H4480","H2403"]]]},{"k":14509,"v":[[0,3,["H341"]],[3,5,["H2416"]],[5,9,["H6105"]],[9,13,["H8130"]],[13,15,["H8267"]],[15,17,["H7231"]]]},{"k":14510,"v":[[0,4,["H7999"]],[4,5,["H7451"]],[5,6,["H8478"]],[6,7,["H2896"]],[7,10,["H7853"]],[10,11,["H8478"]],[11,13,["H7291"]],[13,17,["H2896"]],[17,18,[]]]},{"k":14511,"v":[[0,1,["H5800"]],[1,3,["H408"]],[3,5,["H3068"]],[5,8,["H430"]],[8,10,["H408"]],[10,11,["H7368"]],[11,12,["H4480"]],[12,13,[]]]},{"k":14512,"v":[[0,2,["H2363"]],[2,4,["H5833"]],[4,7,["H136"]],[7,9,["H8668"]]]},{"k":14513,"v":[[0,2,["H559"]],[2,6,["H8104"]],[6,9,["H1870"]],[9,13,["H4480","H2398"]],[13,16,["H3956"]],[16,19,["H8104"]],[19,21,["H6310"]],[21,24,["H4269"]],[24,25,["H5750"]],[25,27,["H7563"]],[27,29,["H5048"]],[29,30,[]]]},{"k":14514,"v":[[0,3,["H481"]],[3,5,["H1747"]],[5,9,["H2814"]],[9,12,["H4480","H2896"]],[12,15,["H3511"]],[15,17,["H5916"]]]},{"k":14515,"v":[[0,2,["H3820"]],[2,4,["H2552"]],[4,5,["H7130"]],[5,10,["H1901"]],[10,12,["H784"]],[12,13,["H1197"]],[13,15,["H1696"]],[15,19,["H3956"]]]},{"k":14516,"v":[[0,1,["H3068"]],[1,5,["H3045"]],[5,7,["H7093"]],[7,10,["H4060"]],[10,13,["H3117"]],[13,14,["H4100"]],[14,15,["H1931"]],[15,20,["H3045"]],[20,21,["H4100"]],[21,22,["H2310"]],[22,23,["H589"]],[23,24,[]]]},{"k":14517,"v":[[0,1,["H2009"]],[1,4,["H5414"]],[4,6,["H3117"]],[6,9,["H2947"]],[9,12,["H2465"]],[12,15,["H369"]],[15,16,["H5048"]],[16,18,["H389"]],[18,19,["H3605"]],[19,20,["H120"]],[20,24,["H5324"]],[24,26,["H3605"]],[26,27,["H1892"]],[27,28,["H5542"]]]},{"k":14518,"v":[[0,1,["H389"]],[1,3,["H376"]],[3,4,["H1980"]],[4,8,["H6754"]],[8,9,["H389"]],[9,12,["H1993"]],[12,14,["H1892"]],[14,17,["H6651"]],[17,20,["H3045"]],[20,21,["H3808"]],[21,22,["H4310"]],[22,24,["H622"]],[24,25,[]]]},{"k":14519,"v":[[0,2,["H6258"]],[2,3,["H136"]],[3,4,["H4100"]],[4,5,["H6960"]],[5,9,["H8431"]],[9,12,[]]]},{"k":14520,"v":[[0,1,["H5337"]],[1,4,["H4480","H3605"]],[4,6,["H6588"]],[6,7,["H7760"]],[7,9,["H408"]],[9,11,["H2781"]],[11,14,["H5036"]]]},{"k":14521,"v":[[0,3,["H481"]],[3,5,["H6605"]],[5,6,["H3808"]],[6,8,["H6310"]],[8,9,["H3588"]],[9,10,["H859"]],[10,11,["H6213"]],[11,12,[]]]},{"k":14522,"v":[[0,1,["H5493"]],[1,3,["H5061"]],[3,5,["H4480","H5921"]],[5,7,["H589"]],[7,9,["H3615"]],[9,12,["H4480","H8409"]],[12,15,["H3027"]]]},{"k":14523,"v":[[0,4,["H8433"]],[4,6,["H3256"]],[6,7,["H376"]],[7,8,["H5921"]],[8,9,["H5771"]],[9,13,["H2530"]],[13,16,["H4529"]],[16,19,["H6211"]],[19,20,["H389"]],[20,21,["H3605"]],[21,22,["H120"]],[22,24,["H1892"]],[24,25,["H5542"]]]},{"k":14524,"v":[[0,1,["H8085"]],[1,3,["H8605"]],[3,5,["H3068"]],[5,8,["H238"]],[8,11,["H7775"]],[11,15,["H2790","H408"]],[15,16,["H413"]],[16,18,["H1832"]],[18,19,["H3588"]],[19,20,["H595"]],[20,23,["H1616"]],[23,24,["H5973"]],[24,28,["H8453"]],[28,30,["H3605"]],[30,32,["H1"]],[32,33,[]]]},{"k":14525,"v":[[0,2,["H8159","H4480"]],[2,8,["H1082"]],[8,9,["H2962"]],[9,11,["H1980"]],[11,15,["H369"]],[15,16,[]]]},{"k":14526,"v":[[0,2,["H6960"]],[2,3,["H6960"]],[3,6,["H3068"]],[6,9,["H5186"]],[9,10,["H413"]],[10,13,["H8085"]],[13,15,["H7775"]]]},{"k":14527,"v":[[0,4,["H5927"]],[4,9,["H7588"]],[9,10,["H4480","H953"]],[10,14,["H3121"]],[14,15,["H4480","H2916"]],[15,17,["H6965"]],[17,19,["H7272"]],[19,20,["H5921"]],[20,22,["H5553"]],[22,24,["H3559"]],[24,26,["H838"]]]},{"k":14528,"v":[[0,4,["H5414"]],[4,6,["H2319"]],[6,7,["H7892"]],[7,10,["H6310"]],[10,12,["H8416"]],[12,15,["H430"]],[15,16,["H7227"]],[16,18,["H7200"]],[18,21,["H3372"]],[21,24,["H982"]],[24,27,["H3068"]]]},{"k":14529,"v":[[0,1,["H835"]],[1,4,["H1397"]],[4,5,["H834"]],[5,6,["H7760"]],[6,8,["H3068"]],[8,10,["H4009"]],[10,12,["H6437","H413"]],[12,13,["H3808"]],[13,15,["H7295"]],[15,20,["H7750"]],[20,22,["H3577"]]]},{"k":14530,"v":[[0,1,["H7227"]],[1,3,["H3068"]],[3,5,["H430"]],[5,9,["H6381"]],[9,11,["H859"]],[11,13,["H6213"]],[13,16,["H4284"]],[16,19,["H413"]],[19,22,["H369"]],[22,27,["H6186"]],[27,29,["H413"]],[29,33,["H5046"]],[33,35,["H1696"]],[35,40,["H6105"]],[40,44,["H4480","H5608"]]]},{"k":14531,"v":[[0,1,["H2077"]],[1,3,["H4503"]],[3,6,["H3808"]],[6,7,["H2654"]],[7,9,["H241"]],[9,12,["H3738"]],[12,14,["H5930"]],[14,17,["H2401"]],[17,20,["H3808"]],[20,21,["H7592"]]]},{"k":14532,"v":[[0,1,["H227"]],[1,2,["H559"]],[2,4,["H2009"]],[4,6,["H935"]],[6,9,["H4039"]],[9,12,["H5612"]],[12,15,["H3789"]],[15,16,["H5921"]],[16,17,[]]]},{"k":14533,"v":[[0,2,["H2654"]],[2,4,["H6213"]],[4,6,["H7522"]],[6,9,["H430"]],[9,12,["H8451"]],[12,14,["H8432"]],[14,16,["H4578"]]]},{"k":14534,"v":[[0,3,["H1319"]],[3,4,["H6664"]],[4,7,["H7227"]],[7,8,["H6951"]],[8,9,["H2009"]],[9,12,["H3808"]],[12,13,["H3607"]],[13,15,["H8193"]],[15,17,["H3068"]],[17,18,["H859"]],[18,19,["H3045"]]]},{"k":14535,"v":[[0,3,["H3808"]],[3,4,["H3680"]],[4,6,["H6666"]],[6,7,["H8432"]],[7,9,["H3820"]],[9,12,["H559"]],[12,14,["H530"]],[14,17,["H8668"]],[17,20,["H3808"]],[20,21,["H3582"]],[21,23,["H2617"]],[23,26,["H571"]],[26,29,["H7227"]],[29,30,["H6951"]]]},{"k":14536,"v":[[0,1,["H3607"]],[1,2,["H3808"]],[2,3,["H859"]],[3,6,["H7356"]],[6,7,["H4480"]],[7,10,["H3068"]],[10,13,["H2617"]],[13,16,["H571"]],[16,17,["H8548"]],[17,18,["H5341"]],[18,19,[]]]},{"k":14537,"v":[[0,1,["H3588"]],[1,2,["H5704","H369","H4557"]],[2,3,["H7451"]],[3,7,["H661","H5921"]],[7,9,["H5771"]],[9,12,["H5381"]],[12,19,["H3808"]],[19,20,["H3201"]],[20,23,["H7200"]],[23,26,["H6105"]],[26,29,["H4480","H8185"]],[29,32,["H7218"]],[32,35,["H3820"]],[35,36,["H5800"]],[36,37,[]]]},{"k":14538,"v":[[0,2,["H7521"]],[2,4,["H3068"]],[4,6,["H5337"]],[6,9,["H3068"]],[9,11,["H2363"]],[11,13,["H5833"]],[13,14,[]]]},{"k":14539,"v":[[0,4,["H954"]],[4,6,["H2659"]],[6,7,["H3162"]],[7,10,["H1245"]],[10,12,["H5315"]],[12,14,["H5595"]],[14,19,["H5472"]],[19,20,["H268"]],[20,24,["H3637"]],[24,26,["H2655"]],[26,28,["H7451"]]]},{"k":14540,"v":[[0,4,["H8074"]],[4,5,["H5921"]],[5,7,["H6118"]],[7,10,["H1322"]],[10,12,["H559"]],[12,15,["H1889"]],[15,16,["H1889"]]]},{"k":14541,"v":[[0,2,["H3605"]],[2,5,["H1245"]],[5,7,["H7797"]],[7,10,["H8055"]],[10,16,["H157"]],[16,18,["H8668"]],[18,19,["H559"]],[19,20,["H8548"]],[20,22,["H3068"]],[22,24,["H1431"]]]},{"k":14542,"v":[[0,2,["H589"]],[2,4,["H6041"]],[4,6,["H34"]],[6,9,["H136"]],[9,10,["H2803"]],[10,13,["H859"]],[13,16,["H5833"]],[16,19,["H6403"]],[19,21,["H408"]],[21,22,["H309"]],[22,25,["H430"]]]},{"k":14543,"v":[[0,1,["H835"]],[1,5,["H7919","H413"]],[5,7,["H1800"]],[7,9,["H3068"]],[9,11,["H4422"]],[11,14,["H3117"]],[14,16,["H7451"]]]},{"k":14544,"v":[[0,2,["H3068"]],[2,4,["H8104"]],[4,9,["H2421"]],[9,14,["H833"]],[14,17,["H776"]],[17,21,["H408"]],[21,22,["H5414"]],[22,26,["H5315"]],[26,29,["H341"]]]},{"k":14545,"v":[[0,2,["H3068"]],[2,4,["H5582"]],[4,6,["H5921"]],[6,8,["H6210"]],[8,10,["H1741"]],[10,13,["H2015"]],[13,14,["H3605"]],[14,16,["H4904"]],[16,19,["H2483"]]]},{"k":14546,"v":[[0,1,["H589"]],[1,2,["H559"]],[2,3,["H3068"]],[3,5,["H2603"]],[5,8,["H7495"]],[8,10,["H5315"]],[10,11,["H3588"]],[11,14,["H2398"]],[14,16,[]]]},{"k":14547,"v":[[0,2,["H341"]],[2,3,["H559"]],[3,4,["H7451"]],[4,7,["H4970"]],[7,10,["H4191"]],[10,13,["H8034"]],[13,14,["H6"]]]},{"k":14548,"v":[[0,2,["H518"]],[2,4,["H935"]],[4,6,["H7200"]],[6,9,["H1696"]],[9,10,["H7723"]],[10,12,["H3820"]],[12,13,["H6908"]],[13,14,["H205"]],[14,19,["H3318"]],[19,20,["H2351"]],[20,22,["H1696"]],[22,23,[]]]},{"k":14549,"v":[[0,1,["H3605"]],[1,3,["H8130"]],[3,5,["H3907"]],[5,6,["H3162"]],[6,7,["H5921"]],[7,9,["H5921"]],[9,13,["H2803"]],[13,15,["H7451"]]]},{"k":14550,"v":[[0,2,["H1100"]],[2,3,["H1697"]],[3,7,["H3332"]],[7,12,["H834"]],[12,14,["H7901"]],[14,18,["H6965"]],[18,19,["H3808"]],[19,20,["H3254"]]]},{"k":14551,"v":[[0,1,["H1571"]],[1,5,["H7965","H376"]],[5,7,["H834"]],[7,9,["H982"]],[9,12,["H398"]],[12,15,["H3899"]],[15,18,["H1431"]],[18,20,["H6119"]],[20,21,["H5921"]],[21,22,[]]]},{"k":14552,"v":[[0,2,["H859"]],[2,4,["H3068"]],[4,6,["H2603"]],[6,12,["H6965"]],[12,16,["H7999"]],[16,17,[]]]},{"k":14553,"v":[[0,2,["H2063"]],[2,4,["H3045"]],[4,5,["H3588"]],[5,7,["H2654"]],[7,9,["H3588"]],[9,11,["H341"]],[11,13,["H3808"]],[13,14,["H7321"]],[14,15,["H5921"]],[15,16,[]]]},{"k":14554,"v":[[0,4,["H589"]],[4,6,["H8551"]],[6,10,["H8537"]],[10,12,["H5324"]],[12,16,["H6440"]],[16,18,["H5769"]]]},{"k":14555,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,9,["H4480","H5769"]],[9,11,["H5704"]],[11,12,["H5769"]],[12,13,["H543"]],[13,15,["H543"]]]},{"k":14556,"v":[[0,3,["H354"]],[3,4,["H6165"]],[4,5,["H5921"]],[5,7,["H4325"]],[7,8,["H650"]],[8,9,["H3651"]],[9,10,["H6165"]],[10,12,["H5315"]],[12,13,["H413"]],[13,16,["H430"]]]},{"k":14557,"v":[[0,2,["H5315"]],[2,3,["H6770"]],[3,5,["H430"]],[5,8,["H2416"]],[8,9,["H410"]],[9,10,["H4970"]],[10,13,["H935"]],[13,15,["H7200"]],[15,16,["H6440"]],[16,17,["H430"]]]},{"k":14558,"v":[[0,2,["H1832"]],[2,4,["H1961"]],[4,6,["H3899"]],[6,7,["H3119"]],[7,9,["H3915"]],[9,12,["H3605","H3117"]],[12,13,["H559"]],[13,14,["H413"]],[14,16,["H346"]],[16,19,["H430"]]]},{"k":14559,"v":[[0,3,["H2142"]],[3,4,["H428"]],[4,8,["H8210"]],[8,10,["H5315"]],[10,11,["H5921"]],[11,13,["H3588"]],[13,16,["H5674"]],[16,19,["H5519"]],[19,21,["H1718"]],[21,24,["H5704"]],[24,26,["H1004"]],[26,28,["H430"]],[28,31,["H6963"]],[31,33,["H7440"]],[33,35,["H8426"]],[35,38,["H1995"]],[38,41,["H2287"]]]},{"k":14560,"v":[[0,1,["H4100"]],[1,5,["H7817"]],[5,8,["H5315"]],[8,13,["H1993"]],[13,14,["H5921"]],[14,16,["H3176"]],[16,19,["H430"]],[19,20,["H3588"]],[20,23,["H5750"]],[23,24,["H3034"]],[24,28,["H3444"]],[28,31,["H6440"]]]},{"k":14561,"v":[[0,3,["H430"]],[3,5,["H5315"]],[5,8,["H7817"]],[8,9,["H5921"]],[9,11,["H5921","H3651"]],[11,14,["H2142"]],[14,18,["H4480","H776"]],[18,20,["H3383"]],[20,24,["H2769"]],[24,27,["H4480","H2022"]],[27,28,["H4706"]]]},{"k":14562,"v":[[0,1,["H8415"]],[1,2,["H7121"]],[2,3,["H413"]],[3,4,["H8415"]],[4,7,["H6963"]],[7,10,["H6794"]],[10,11,["H3605"]],[11,13,["H4867"]],[13,16,["H1530"]],[16,18,["H5674"]],[18,19,["H5921"]],[19,20,[]]]},{"k":14563,"v":[[0,3,["H3068"]],[3,5,["H6680"]],[5,7,["H2617"]],[7,10,["H3119"]],[10,14,["H3915"]],[14,16,["H7892"]],[16,19,["H5973"]],[19,23,["H8605"]],[23,26,["H410"]],[26,29,["H2416"]]]},{"k":14564,"v":[[0,3,["H559"]],[3,5,["H410"]],[5,7,["H5553"]],[7,8,["H4100"]],[8,11,["H7911"]],[11,13,["H4100"]],[13,14,["H1980"]],[14,16,["H6937"]],[16,20,["H3906"]],[20,23,["H341"]]]},{"k":14565,"v":[[0,4,["H7524"]],[4,7,["H6106"]],[7,9,["H6887"]],[9,10,["H2778"]],[10,14,["H559"]],[14,15,["H3605","H3117"]],[15,16,["H413"]],[16,18,["H346"]],[18,21,["H430"]]]},{"k":14566,"v":[[0,1,["H4100"]],[1,5,["H7817"]],[5,8,["H5315"]],[8,10,["H4100"]],[10,13,["H1993"]],[13,14,["H5921"]],[14,16,["H3176"]],[16,19,["H430"]],[19,20,["H3588"]],[20,23,["H5750"]],[23,24,["H3034"]],[24,29,["H3444"]],[29,32,["H6440"]],[32,35,["H430"]]]},{"k":14567,"v":[[0,1,["H8199"]],[1,4,["H430"]],[4,6,["H7378"]],[6,8,["H7379"]],[8,11,["H3808","H2623"]],[11,12,["H4480","H1471"]],[12,14,["H6403"]],[14,18,["H4820"]],[18,20,["H5766"]],[20,21,["H4480","H376"]]]},{"k":14568,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,5,["H430"]],[5,8,["H4581"]],[8,9,["H4100"]],[9,14,["H2186"]],[14,15,["H4100"]],[15,16,["H1980"]],[16,18,["H6937"]],[18,22,["H3906"]],[22,25,["H341"]]]},{"k":14569,"v":[[0,3,["H7971"]],[3,5,["H216"]],[5,8,["H571"]],[8,10,["H1992"]],[10,11,["H5148"]],[11,15,["H935"]],[15,17,["H413"]],[17,19,["H6944"]],[19,20,["H2022"]],[20,22,["H413"]],[22,24,["H4908"]]]},{"k":14570,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H4196"]],[7,9,["H430"]],[9,10,["H413"]],[10,11,["H410"]],[11,13,["H8057"]],[13,14,["H1524"]],[14,18,["H3658"]],[18,21,["H3034"]],[21,24,["H430"]],[24,26,["H430"]]]},{"k":14571,"v":[[0,1,["H4100"]],[1,5,["H7817"]],[5,8,["H5315"]],[8,10,["H4100"]],[10,13,["H1993"]],[13,14,["H5921"]],[14,16,["H3176"]],[16,18,["H430"]],[18,19,["H3588"]],[19,22,["H5750"]],[22,23,["H3034"]],[23,28,["H3444"]],[28,31,["H6440"]],[31,34,["H430"]]]},{"k":14572,"v":[[0,3,["H8085"]],[3,6,["H241"]],[6,8,["H430"]],[8,10,["H1"]],[10,12,["H5608"]],[12,15,["H6467"]],[15,17,["H6466"]],[17,20,["H3117"]],[20,23,["H3117"]],[23,25,["H6924"]]]},{"k":14573,"v":[[0,2,["H859"]],[2,5,["H3423"]],[5,7,["H1471"]],[7,10,["H3027"]],[10,12,["H5193"]],[12,17,["H7489"]],[17,19,["H3816"]],[19,23,["H7971"]]]},{"k":14574,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,6,["H776"]],[6,8,["H3423"]],[8,12,["H2719"]],[12,13,["H3808"]],[13,17,["H2220"]],[17,18,["H3467"]],[18,20,["H3588"]],[20,23,["H3225"]],[23,26,["H2220"]],[26,29,["H216"]],[29,32,["H6440"]],[32,33,["H3588"]],[33,37,["H7521"]],[37,39,[]]]},{"k":14575,"v":[[0,1,["H859"]],[1,4,["H4428"]],[4,6,["H430"]],[6,7,["H6680"]],[7,8,["H3444"]],[8,10,["H3290"]]]},{"k":14576,"v":[[0,6,["H5055"]],[6,8,["H6862"]],[8,11,["H8034"]],[11,16,["H947"]],[16,20,["H6965"]],[20,21,[]]]},{"k":14577,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H982"]],[5,8,["H7198"]],[8,9,["H3808"]],[9,12,["H2719"]],[12,13,["H3467"]],[13,14,[]]]},{"k":14578,"v":[[0,1,["H3588"]],[1,4,["H3467"]],[4,8,["H4480","H6862"]],[8,14,["H954"]],[14,16,["H8130"]],[16,17,[]]]},{"k":14579,"v":[[0,2,["H430"]],[2,4,["H1984"]],[4,5,["H3605"]],[5,7,["H3117"]],[7,10,["H3034"]],[10,12,["H8034"]],[12,14,["H5769"]],[14,15,["H5542"]]]},{"k":14580,"v":[[0,1,["H637"]],[1,5,["H2186"]],[5,10,["H3637"]],[10,14,["H3318","H3808"]],[14,17,["H6635"]]]},{"k":14581,"v":[[0,5,["H7725"]],[5,6,["H268"]],[6,7,["H4480"]],[7,9,["H6862"]],[9,13,["H8130"]],[13,15,["H8154"]],[15,17,[]]]},{"k":14582,"v":[[0,3,["H5414"]],[3,6,["H6629"]],[6,9,["H3978"]],[9,12,["H2219"]],[12,16,["H1471"]]]},{"k":14583,"v":[[0,2,["H4376"]],[2,4,["H5971"]],[4,6,["H3808","H1952"]],[6,9,["H3808"]],[9,10,["H7235"]],[10,15,["H4242"]]]},{"k":14584,"v":[[0,2,["H7760"]],[2,5,["H2781"]],[5,8,["H7934"]],[8,10,["H3933"]],[10,13,["H7047"]],[13,19,["H5439"]],[19,20,[]]]},{"k":14585,"v":[[0,2,["H7760"]],[2,5,["H4912"]],[5,8,["H1471"]],[8,10,["H4493"]],[10,13,["H7218"]],[13,16,["H3816"]]]},{"k":14586,"v":[[0,2,["H3639"]],[2,4,["H3605","H3117"]],[4,5,["H5048"]],[5,9,["H1322"]],[9,12,["H6440"]],[12,14,["H3680"]],[14,15,[]]]},{"k":14587,"v":[[0,3,["H4480","H6963"]],[3,7,["H2778"]],[7,9,["H1442"]],[9,11,["H4480","H6440"]],[11,14,["H341"]],[14,16,["H5358"]]]},{"k":14588,"v":[[0,1,["H3605"]],[1,2,["H2063"]],[2,5,["H935"]],[5,10,["H3808"]],[10,11,["H7911"]],[11,13,["H3808"]],[13,17,["H8266"]],[17,20,["H1285"]]]},{"k":14589,"v":[[0,2,["H3820"]],[2,4,["H3808"]],[4,5,["H5472"]],[5,6,["H268"]],[6,10,["H838"]],[10,11,["H5186"]],[11,12,["H4480"]],[12,14,["H734"]]]},{"k":14590,"v":[[0,1,["H3588"]],[1,5,["H1794"]],[5,9,["H4725"]],[9,11,["H8577"]],[11,13,["H3680","H5921"]],[13,19,["H6757"]]]},{"k":14591,"v":[[0,1,["H518"]],[1,4,["H7911"]],[4,6,["H8034"]],[6,9,["H430"]],[9,12,["H6566"]],[12,14,["H3709"]],[14,17,["H2114"]],[17,18,["H410"]]]},{"k":14592,"v":[[0,2,["H3808"]],[2,3,["H430"]],[3,4,["H2713"]],[4,5,["H2063"]],[5,7,["H3588"]],[7,8,["H1931"]],[8,9,["H3045"]],[9,11,["H8587"]],[11,14,["H3820"]]]},{"k":14593,"v":[[0,1,["H3588"]],[1,2,["H5921"]],[2,7,["H2026"]],[7,8,["H3605"]],[8,10,["H3117"]],[10,14,["H2803"]],[14,16,["H6629"]],[16,19,["H2878"]]]},{"k":14594,"v":[[0,1,["H5782"]],[1,2,["H4100"]],[2,3,["H3462"]],[3,6,["H136"]],[6,7,["H6974"]],[7,8,["H2186"]],[8,10,["H408"]],[10,13,["H5331"]]]},{"k":14595,"v":[[0,1,["H4100"]],[1,2,["H5641"]],[2,5,["H6440"]],[5,7,["H7911"]],[7,9,["H6040"]],[9,12,["H3906"]]]},{"k":14596,"v":[[0,1,["H3588"]],[1,3,["H5315"]],[3,6,["H7743"]],[6,9,["H6083"]],[9,11,["H990"]],[11,12,["H1692"]],[12,15,["H776"]]]},{"k":14597,"v":[[0,1,["H6965"]],[1,4,["H5833"]],[4,6,["H6299"]],[6,11,["H4616","H2617"]]]},{"k":14598,"v":[[0,2,["H3820"]],[2,4,["H7370"]],[4,6,["H2896"]],[6,7,["H1697"]],[7,8,["H589"]],[8,9,["H559"]],[9,16,["H4639"]],[16,19,["H4428"]],[19,21,["H3956"]],[21,24,["H5842"]],[24,27,["H4106"]],[27,28,["H5608"]]]},{"k":14599,"v":[[0,3,["H3302"]],[3,6,["H4480","H1121"]],[6,8,["H120"]],[8,9,["H2580"]],[9,11,["H3332"]],[11,14,["H8193"]],[14,15,["H5921","H3651"]],[15,16,["H430"]],[16,18,["H1288"]],[18,21,["H5769"]]]},{"k":14600,"v":[[0,1,["H2296"]],[1,3,["H2719"]],[3,4,["H5921"]],[4,6,["H3409"]],[6,9,["H1368"]],[9,12,["H1935"]],[12,15,["H1926"]]]},{"k":14601,"v":[[0,4,["H1926"]],[4,5,["H7392"]],[5,6,["H6743"]],[6,7,["H5921","H1697"]],[7,9,["H571"]],[9,11,["H6037"]],[11,13,["H6664"]],[13,17,["H3225"]],[17,19,["H3384"]],[19,21,["H3372"]],[21,22,[]]]},{"k":14602,"v":[[0,2,["H2671"]],[2,4,["H8150"]],[4,7,["H3820"]],[7,10,["H4428"]],[10,11,["H341"]],[11,14,["H5971"]],[14,15,["H5307"]],[15,16,["H8478"]],[16,17,[]]]},{"k":14603,"v":[[0,2,["H3678"]],[2,4,["H430"]],[4,7,["H5769"]],[7,9,["H5703"]],[9,11,["H7626"]],[11,14,["H4438"]],[14,17,["H4334"]],[17,18,["H7626"]]]},{"k":14604,"v":[[0,2,["H157"]],[2,3,["H6664"]],[3,5,["H8130"]],[5,6,["H7562"]],[6,7,["H5921","H3651"]],[7,8,["H430"]],[8,10,["H430"]],[10,12,["H4886"]],[12,16,["H8081"]],[16,18,["H8342"]],[18,21,["H4480","H2270"]]]},{"k":14605,"v":[[0,1,["H3605"]],[1,3,["H899"]],[3,6,["H4753"]],[6,8,["H174"]],[8,10,["H7102"]],[10,12,["H4480"]],[12,14,["H8127"]],[14,15,["H1964"]],[15,16,["H4480"]],[16,21,["H8055"]]]},{"k":14606,"v":[[0,1,["H4428"]],[1,2,["H1323"]],[2,6,["H3368"]],[6,11,["H3225"]],[11,13,["H5324"]],[13,15,["H7694"]],[15,17,["H3800"]],[17,19,["H211"]]]},{"k":14607,"v":[[0,1,["H8085"]],[1,3,["H1323"]],[3,5,["H7200"]],[5,7,["H5186"]],[7,9,["H241"]],[9,10,["H7911"]],[10,14,["H5971"]],[14,17,["H1"]],[17,18,["H1004"]]]},{"k":14608,"v":[[0,4,["H4428"]],[4,6,["H183"]],[6,8,["H3308"]],[8,9,["H3588"]],[9,10,["H1931"]],[10,13,["H113"]],[13,15,["H7812"]],[15,17,[]]]},{"k":14609,"v":[[0,3,["H1323"]],[3,5,["H6865"]],[5,11,["H4503"]],[11,14,["H6223"]],[14,17,["H5971"]],[17,19,["H2470"]],[19,21,["H6440"]]]},{"k":14610,"v":[[0,2,["H4428"]],[2,3,["H1323"]],[3,5,["H3605"]],[5,6,["H3520"]],[6,7,["H6441"]],[7,9,["H3830"]],[9,12,["H4480","H4865"]],[12,13,["H2091"]]]},{"k":14611,"v":[[0,4,["H2986"]],[4,7,["H4428"]],[7,11,["H7553"]],[11,13,["H1330"]],[13,15,["H7464"]],[15,17,["H310"]],[17,21,["H935"]],[21,23,[]]]},{"k":14612,"v":[[0,2,["H8057"]],[2,4,["H1524"]],[4,8,["H2986"]],[8,11,["H935"]],[11,14,["H4428"]],[14,15,["H1964"]]]},{"k":14613,"v":[[0,1,["H8478"]],[1,4,["H1"]],[4,6,["H1961"]],[6,8,["H1121"]],[8,12,["H7896"]],[12,13,["H8269"]],[13,15,["H3605"]],[15,17,["H776"]]]},{"k":14614,"v":[[0,5,["H8034"]],[5,8,["H2142"]],[8,10,["H3605"]],[10,11,["H1755","H1755"]],[11,12,["H5921","H3651"]],[12,15,["H5971"]],[15,16,["H3034"]],[16,19,["H5769"]],[19,21,["H5703"]]]},{"k":14615,"v":[[0,1,["H430"]],[1,4,["H4268"]],[4,6,["H5797"]],[6,8,["H3966"]],[8,9,["H4672"]],[9,10,["H5833"]],[10,12,["H6869"]]]},{"k":14616,"v":[[0,1,["H5921","H3651"]],[1,3,["H3808"]],[3,5,["H3372"]],[5,8,["H776"]],[8,10,["H4171"]],[10,14,["H2022"]],[14,16,["H4131"]],[16,19,["H3820"]],[19,22,["H3220"]]]},{"k":14617,"v":[[0,3,["H4325"]],[3,5,["H1993"]],[5,8,["H2560"]],[8,11,["H2022"]],[11,12,["H7493"]],[12,15,["H1346"]],[15,17,["H5542"]]]},{"k":14618,"v":[[0,4,["H5104"]],[4,6,["H6388"]],[6,10,["H8055"]],[10,12,["H5892"]],[12,14,["H430"]],[14,16,["H6918"]],[16,20,["H4908"]],[20,24,["H5945"]]]},{"k":14619,"v":[[0,1,["H430"]],[1,5,["H7130"]],[5,10,["H1077"]],[10,12,["H4131"]],[12,13,["H430"]],[13,15,["H5826"]],[15,19,["H6437"]],[19,20,["H1242"]]]},{"k":14620,"v":[[0,2,["H1471"]],[2,3,["H1993"]],[3,5,["H4467"]],[5,7,["H4131"]],[7,9,["H5414"]],[9,11,["H6963"]],[11,13,["H776"]],[13,14,["H4127"]]]},{"k":14621,"v":[[0,2,["H3068"]],[2,4,["H6635"]],[4,6,["H5973"]],[6,9,["H430"]],[9,11,["H3290"]],[11,14,["H4869"]],[14,15,["H5542"]]]},{"k":14622,"v":[[0,1,["H1980"]],[1,2,["H2372"]],[2,4,["H4659"]],[4,7,["H3068"]],[7,8,["H834"]],[8,9,["H8047"]],[9,12,["H7760"]],[12,15,["H776"]]]},{"k":14623,"v":[[0,3,["H4421"]],[3,5,["H7673"]],[5,6,["H5704"]],[6,8,["H7097"]],[8,11,["H776"]],[11,13,["H7665"]],[13,15,["H7198"]],[15,17,["H7112"]],[17,19,["H2595"]],[19,23,["H8313"]],[23,25,["H5699"]],[25,28,["H784"]]]},{"k":14624,"v":[[0,2,["H7503"]],[2,4,["H3045"]],[4,5,["H3588"]],[5,6,["H595"]],[6,8,["H430"]],[8,12,["H7311"]],[12,15,["H1471"]],[15,19,["H7311"]],[19,22,["H776"]]]},{"k":14625,"v":[[0,2,["H3068"]],[2,4,["H6635"]],[4,6,["H5973"]],[6,9,["H430"]],[9,11,["H3290"]],[11,14,["H4869"]],[14,15,["H5542"]]]},{"k":14626,"v":[[0,2,["H8628"]],[2,4,["H3709"]],[4,5,["H3605"]],[5,7,["H5971"]],[7,8,["H7321"]],[8,10,["H430"]],[10,13,["H6963"]],[13,15,["H7440"]]]},{"k":14627,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H5945"]],[5,7,["H3372"]],[7,11,["H1419"]],[11,12,["H4428"]],[12,13,["H5921"]],[13,14,["H3605"]],[14,16,["H776"]]]},{"k":14628,"v":[[0,3,["H1696"]],[3,5,["H5971"]],[5,6,["H8478"]],[6,10,["H3816"]],[10,11,["H8478"]],[11,13,["H7272"]]]},{"k":14629,"v":[[0,3,["H977","(H853)"]],[3,5,["H5159"]],[5,7,["(H853)"]],[7,9,["H1347"]],[9,11,["H3290"]],[11,12,["H834"]],[12,14,["H157"]],[14,15,["H5542"]]]},{"k":14630,"v":[[0,1,["H430"]],[1,4,["H5927"]],[4,7,["H8643"]],[7,9,["H3068"]],[9,12,["H6963"]],[12,15,["H7782"]]]},{"k":14631,"v":[[0,2,["H2167"]],[2,4,["H430"]],[4,6,["H2167"]],[6,8,["H2167"]],[8,11,["H4428"]],[11,13,["H2167"]]]},{"k":14632,"v":[[0,1,["H3588"]],[1,2,["H430"]],[2,5,["H4428"]],[5,7,["H3605"]],[7,9,["H776"]],[9,12,["H2167"]],[12,14,["H7919"]]]},{"k":14633,"v":[[0,1,["H430"]],[1,2,["H4427"]],[2,3,["H5921"]],[3,5,["H1471"]],[5,6,["H430"]],[6,7,["H3427"]],[7,8,["H5921"]],[8,10,["H3678"]],[10,13,["H6944"]]]},{"k":14634,"v":[[0,2,["H5081"]],[2,5,["H5971"]],[5,8,["H622"]],[8,11,["H5971"]],[11,14,["H430"]],[14,16,["H85"]],[16,17,["H3588"]],[17,19,["H4043"]],[19,22,["H776"]],[22,25,["H430"]],[25,28,["H3966"]],[28,29,["H5927"]]]},{"k":14635,"v":[[0,1,["H1419"]],[1,4,["H3068"]],[4,6,["H3966"]],[6,9,["H1984"]],[9,12,["H5892"]],[12,15,["H430"]],[15,18,["H2022"]],[18,21,["H6944"]]]},{"k":14636,"v":[[0,1,["H3303"]],[1,3,["H5131"]],[3,5,["H4885"]],[5,8,["H3605"]],[8,9,["H776"]],[9,11,["H2022"]],[11,12,["H6726"]],[12,15,["H3411"]],[15,18,["H6828"]],[18,20,["H7151"]],[20,23,["H7227"]],[23,24,["H4428"]]]},{"k":14637,"v":[[0,1,["H430"]],[1,3,["H3045"]],[3,6,["H759"]],[6,9,["H4869"]]]},{"k":14638,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H4428"]],[4,6,["H3259"]],[6,9,["H5674"]],[9,10,["H3162"]]]},{"k":14639,"v":[[0,1,["H1992"]],[1,2,["H7200"]],[2,5,["H3651"]],[5,7,["H8539"]],[7,10,["H926"]],[10,13,["H2648"]]]},{"k":14640,"v":[[0,1,["H7461"]],[1,4,["H270"]],[4,6,["H8033"]],[6,8,["H2427"]],[8,14,["H3205"]]]},{"k":14641,"v":[[0,2,["H7665"]],[2,4,["H591"]],[4,6,["H8659"]],[6,9,["H6921"]],[9,10,["H7307"]]]},{"k":14642,"v":[[0,1,["H834"]],[1,4,["H8085"]],[4,5,["H3651"]],[5,8,["H7200"]],[8,11,["H5892"]],[11,14,["H3068"]],[14,16,["H6635"]],[16,19,["H5892"]],[19,22,["H430"]],[22,23,["H430"]],[23,25,["H3559"]],[25,28,["H5704","H5769"]],[28,29,["H5542"]]]},{"k":14643,"v":[[0,3,["H1819"]],[3,6,["H2617"]],[6,8,["H430"]],[8,11,["H7130"]],[11,14,["H1964"]]]},{"k":14644,"v":[[0,4,["H8034"]],[4,6,["H430"]],[6,7,["H3651"]],[7,10,["H8416"]],[10,11,["H5921"]],[11,13,["H7099"]],[13,16,["H776"]],[16,19,["H3225"]],[19,21,["H4390"]],[21,23,["H6664"]]]},{"k":14645,"v":[[0,2,["H2022"]],[2,3,["H6726"]],[3,4,["H8055"]],[4,7,["H1323"]],[7,9,["H3063"]],[9,11,["H1523"]],[11,13,["H4616"]],[13,15,["H4941"]]]},{"k":14646,"v":[[0,2,["H5437"]],[2,3,["H6726"]],[3,7,["H5362"]],[7,9,["H5608"]],[9,11,["H4026"]],[11,12,[]]]},{"k":14647,"v":[[0,3,["H7896","H3820"]],[3,5,["H2430"]],[5,6,["H6448"]],[6,8,["H759"]],[8,9,["H4616"]],[9,12,["H5608"]],[12,16,["H1755"]],[16,17,["H314"]]]},{"k":14648,"v":[[0,1,["H3588"]],[1,2,["H2088"]],[2,3,["H430"]],[3,6,["H430"]],[6,8,["H5769"]],[8,10,["H5703"]],[10,11,["H1931"]],[11,15,["H5090"]],[15,17,["H5921"]],[17,18,["H4191"]]]},{"k":14649,"v":[[0,1,["H8085"]],[1,2,["H2063"]],[2,3,["H3605"]],[3,5,["H5971"]],[5,7,["H238"]],[7,8,["H3605"]],[8,10,["H3427"]],[10,13,["H2465"]]]},{"k":14650,"v":[[0,1,["H1571"]],[1,2,["H120"]],[2,3,["H1571"]],[3,4,["H376"]],[4,5,["H6223"]],[5,7,["H34"]],[7,8,["H3162"]]]},{"k":14651,"v":[[0,2,["H6310"]],[2,4,["H1696"]],[4,6,["H2454"]],[6,9,["H1900"]],[9,12,["H3820"]],[12,16,["H8394"]]]},{"k":14652,"v":[[0,3,["H5186"]],[3,5,["H241"]],[5,8,["H4912"]],[8,11,["H6605"]],[11,14,["H2420"]],[14,17,["H3658"]]]},{"k":14653,"v":[[0,1,["H4100"]],[1,4,["H3372"]],[4,7,["H3117"]],[7,9,["H7451"]],[9,12,["H5771"]],[12,15,["H6120"]],[15,19,["H5437"]]]},{"k":14654,"v":[[0,3,["H982"]],[3,4,["H5921"]],[4,6,["H2428"]],[6,9,["H1984"]],[9,12,["H7230"]],[12,15,["H6239"]]]},{"k":14655,"v":[[0,1,["H3808"]],[1,7,["H6299"]],[7,8,["H6299"]],[8,10,["H251"]],[10,11,["H3808"]],[11,12,["H5414"]],[12,14,["H430"]],[14,16,["H3724"]],[16,18,[]]]},{"k":14656,"v":[[0,3,["H6306"]],[3,6,["H5315"]],[6,8,["H3365"]],[8,11,["H2308"]],[11,13,["H5769"]]]},{"k":14657,"v":[[0,4,["H5750"]],[4,5,["H2421"]],[5,7,["H5331"]],[7,9,["H3808"]],[9,10,["H7200"]],[10,11,["H7845"]]]},{"k":14658,"v":[[0,1,["H3588"]],[1,3,["H7200"]],[3,6,["H2450"]],[6,7,["H4191"]],[7,8,["H3162"]],[8,10,["H3684"]],[10,14,["H1198"]],[14,15,["H6"]],[15,17,["H5800"]],[17,19,["H2428"]],[19,21,["H312"]]]},{"k":14659,"v":[[0,3,["H7130"]],[3,7,["H1004"]],[7,11,["H5769"]],[11,15,["H4908"]],[15,18,["H1755","H1755"]],[18,20,["H7121","H5921"]],[20,22,["H127"]],[22,26,["H8034"]]]},{"k":14660,"v":[[0,2,["H120"]],[2,5,["H3366"]],[5,6,["H3885"]],[6,7,["H1077"]],[7,10,["H4911"]],[10,12,["H929"]],[12,14,["H1820"]]]},{"k":14661,"v":[[0,1,["H2088"]],[1,3,["H1870"]],[3,6,["H3689"]],[6,9,["H310"]],[9,10,["H7521"]],[10,12,["H6310"]],[12,13,["H5542"]]]},{"k":14662,"v":[[0,2,["H6629"]],[2,5,["H8371"]],[5,8,["H7585"]],[8,9,["H4194"]],[9,11,["H7462"]],[11,16,["H3477"]],[16,19,["H7287"]],[19,24,["H1242"]],[24,27,["H6697"]],[27,29,["H1086"]],[29,32,["H7585"]],[32,35,["H4480","H2073"]]]},{"k":14663,"v":[[0,1,["H389"]],[1,2,["H430"]],[2,4,["H6299"]],[4,6,["H5315"]],[6,9,["H4480","H3027"]],[9,12,["H7585"]],[12,13,["H3588"]],[13,16,["H3947"]],[16,18,["H5542"]]]},{"k":14664,"v":[[0,2,["H408"]],[2,4,["H3372"]],[4,5,["H3588"]],[5,6,["H376"]],[6,9,["H6238"]],[9,10,["H3588"]],[10,12,["H3519"]],[12,15,["H1004"]],[15,17,["H7235"]]]},{"k":14665,"v":[[0,2,["H3588"]],[2,4,["H4194"]],[4,7,["H3947"]],[7,8,["H3808","H3605"]],[8,11,["H3519"]],[11,13,["H3808"]],[13,14,["H3381"]],[14,15,["H310"]],[15,16,[]]]},{"k":14666,"v":[[0,1,["H3588"]],[1,4,["H2416"]],[4,6,["H1288"]],[6,8,["H5315"]],[8,12,["H3034"]],[12,14,["H3588"]],[14,17,["H3190"]],[17,19,[]]]},{"k":14667,"v":[[0,3,["H935"]],[3,4,["H5704"]],[4,6,["H1755"]],[6,9,["H1"]],[9,12,["H5704","H5331","H3808"]],[12,13,["H7200"]],[13,14,["H216"]]]},{"k":14668,"v":[[0,1,["H120"]],[1,5,["H3366"]],[5,7,["H995"]],[7,8,["H3808"]],[8,10,["H4911"]],[10,12,["H929"]],[12,14,["H1820"]]]},{"k":14669,"v":[[0,2,["H410"]],[2,3,["H430"]],[3,6,["H3068"]],[6,8,["H1696"]],[8,10,["H7121"]],[10,12,["H776"]],[12,15,["H4480","H4217"]],[15,18,["H8121"]],[18,19,["H5704"]],[19,22,["H3996"]],[22,23,[]]]},{"k":14670,"v":[[0,3,["H4480","H6726"]],[3,5,["H4359"]],[5,7,["H3308"]],[7,8,["H430"]],[8,10,["H3313"]]]},{"k":14671,"v":[[0,2,["H430"]],[2,4,["H935"]],[4,7,["H408"]],[7,9,["H2790"]],[9,11,["H784"]],[11,13,["H398"]],[13,14,["H6440"]],[14,20,["H3966"]],[20,21,["H8175"]],[21,23,["H5439"]],[23,24,[]]]},{"k":14672,"v":[[0,3,["H7121"]],[3,4,["H413"]],[4,6,["H8064"]],[6,8,["H4480","H5920"]],[8,10,["H413"]],[10,12,["H776"]],[12,16,["H1777"]],[16,18,["H5971"]]]},{"k":14673,"v":[[0,4,["H622","H2623"]],[4,10,["H3772"]],[10,12,["H1285"]],[12,15,["H5921"]],[15,16,["H2077"]]]},{"k":14674,"v":[[0,3,["H8064"]],[3,5,["H5046"]],[5,7,["H6664"]],[7,8,["H3588"]],[8,9,["H430"]],[9,11,["H8199"]],[11,12,["H1931"]],[12,13,["H5542"]]]},{"k":14675,"v":[[0,1,["H8085"]],[1,4,["H5971"]],[4,8,["H1696"]],[8,10,["H3478"]],[10,14,["H5749"]],[14,17,["H595"]],[17,19,["H430"]],[19,22,["H430"]]]},{"k":14676,"v":[[0,3,["H3808"]],[3,4,["H3198"]],[4,6,["H5921"]],[6,8,["H2077"]],[8,12,["H5930"]],[12,16,["H8548"]],[16,17,["H5048"]],[17,18,[]]]},{"k":14677,"v":[[0,3,["H3947"]],[3,4,["H3808"]],[4,5,["H6499"]],[5,9,["H4480","H1004"]],[9,12,["H6260"]],[12,16,["H4480","H4356"]]]},{"k":14678,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,3,["H2416"]],[3,6,["H3293"]],[6,11,["H929"]],[11,14,["H505"]],[14,15,["H2042"]]]},{"k":14679,"v":[[0,2,["H3045"]],[2,3,["H3605"]],[3,5,["H5775"]],[5,8,["H2022"]],[8,12,["H2123"]],[12,15,["H7704"]],[15,17,["H5978"]]]},{"k":14680,"v":[[0,1,["H518"]],[1,4,["H7456"]],[4,7,["H3808"]],[7,8,["H559"]],[8,10,["H3588"]],[10,12,["H8398"]],[12,17,["H4393"]],[17,18,[]]]},{"k":14681,"v":[[0,3,["H398"]],[3,5,["H1320"]],[5,7,["H47"]],[7,9,["H8354"]],[9,11,["H1818"]],[11,13,["H6260"]]]},{"k":14682,"v":[[0,1,["H2076"]],[1,3,["H430"]],[3,4,["H8426"]],[4,6,["H7999"]],[6,8,["H5088"]],[8,12,["H5945"]]]},{"k":14683,"v":[[0,3,["H7121"]],[3,7,["H3117"]],[7,9,["H6869"]],[9,12,["H2502"]],[12,17,["H3513"]],[17,18,[]]]},{"k":14684,"v":[[0,4,["H7563"]],[4,5,["H430"]],[5,6,["H559"]],[6,7,["H4100"]],[7,13,["H5608"]],[13,15,["H2706"]],[15,20,["H5375"]],[20,22,["H1285"]],[22,23,["H5921"]],[23,25,["H6310"]]]},{"k":14685,"v":[[0,2,["H859"]],[2,3,["H8130"]],[3,4,["H4148"]],[4,6,["H7993"]],[6,8,["H1697"]],[8,9,["H310"]],[9,10,[]]]},{"k":14686,"v":[[0,1,["H518"]],[1,3,["H7200"]],[3,5,["H1590"]],[5,8,["H7521"]],[8,9,["H5973"]],[9,14,["H2506"]],[14,15,["H5973"]],[15,16,["H5003"]]]},{"k":14687,"v":[[0,2,["H7971"]],[2,4,["H6310"]],[4,6,["H7451"]],[6,9,["H3956"]],[9,10,["H6775"]],[10,11,["H4820"]]]},{"k":14688,"v":[[0,2,["H3427"]],[2,4,["H1696"]],[4,7,["H251"]],[7,9,["H5414","H1848"]],[9,12,["H517"]],[12,13,["H1121"]]]},{"k":14689,"v":[[0,1,["H428"]],[1,5,["H6213"]],[5,9,["H2790"]],[9,11,["H1819"]],[11,14,["H1961"]],[14,15,["H1961"]],[15,20,["H3644"]],[20,24,["H3198"]],[24,30,["H6186"]],[30,33,["H5869"]]]},{"k":14690,"v":[[0,1,["H4994"]],[1,2,["H995"]],[2,3,["H2063"]],[3,6,["H7911"]],[6,7,["H433"]],[7,8,["H6435"]],[8,13,["H2963"]],[13,17,["H369"]],[17,19,["H5337"]]]},{"k":14691,"v":[[0,2,["H2076"]],[2,3,["H8426"]],[3,4,["H3513"]],[4,10,["H7760"]],[10,12,["H1870"]],[12,16,["H7200"]],[16,18,["H3468"]],[18,20,["H430"]]]},{"k":14692,"v":[[0,2,["H2603"]],[2,6,["H430"]],[6,10,["H2617"]],[10,14,["H7230"]],[14,18,["H7356"]],[18,20,["H4229"]],[20,22,["H6588"]]]},{"k":14693,"v":[[0,1,["H3526"]],[1,3,["H7235"]],[3,6,["H4480","H5771"]],[6,8,["H2891"]],[8,12,["H4480","H2403"]]]},{"k":14694,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,3,["H3045"]],[3,5,["H6588"]],[5,8,["H2403"]],[8,10,["H8548"]],[10,11,["H5048"]],[11,12,[]]]},{"k":14695,"v":[[0,4,["H905"]],[4,7,["H2398"]],[7,9,["H6213"]],[9,11,["H7451"]],[11,14,["H5869"]],[14,15,["H4616"]],[15,19,["H6663"]],[19,22,["H1696"]],[22,25,["H2135"]],[25,28,["H8199"]]]},{"k":14696,"v":[[0,1,["H2005"]],[1,4,["H2342"]],[4,6,["H5771"]],[6,9,["H2399"]],[9,12,["H517"]],[12,13,["H3179"]],[13,14,[]]]},{"k":14697,"v":[[0,1,["H2005"]],[1,3,["H2654"]],[3,4,["H571"]],[4,8,["H2910"]],[8,12,["H5640"]],[12,19,["H3045"]],[19,20,["H2451"]]]},{"k":14698,"v":[[0,1,["H2398"]],[1,4,["H231"]],[4,9,["H2891"]],[9,10,["H3526"]],[10,16,["H3835"]],[16,18,["H4480","H7950"]]]},{"k":14699,"v":[[0,4,["H8085"]],[4,5,["H8342"]],[5,7,["H8057"]],[7,10,["H6106"]],[10,14,["H1794"]],[14,16,["H1523"]]]},{"k":14700,"v":[[0,1,["H5641"]],[1,3,["H6440"]],[3,6,["H4480","H2399"]],[6,9,["H4229"]],[9,10,["H3605"]],[10,12,["H5771"]]]},{"k":14701,"v":[[0,1,["H1254"]],[1,5,["H2889"]],[5,6,["H3820"]],[6,8,["H430"]],[8,10,["H2318"]],[10,12,["H3559"]],[12,13,["H7307"]],[13,14,["H7130"]],[14,15,[]]]},{"k":14702,"v":[[0,1,["H7993"]],[1,3,["H408"]],[3,7,["H4480","H6440"]],[7,9,["H3947"]],[9,10,["H408"]],[10,12,["H6944"]],[12,13,["H7307"]],[13,14,["H4480"]],[14,15,[]]]},{"k":14703,"v":[[0,1,["H7725"]],[1,5,["H8342"]],[5,8,["H3468"]],[8,10,["H5564"]],[10,14,["H5082"]],[14,15,["H7307"]]]},{"k":14704,"v":[[0,4,["H3925"]],[4,5,["H6586"]],[5,7,["H1870"]],[7,9,["H2400"]],[9,12,["H7725"]],[12,13,["H413"]],[13,14,[]]]},{"k":14705,"v":[[0,1,["H5337"]],[1,4,["H4480","H1818"]],[4,6,["H430"]],[6,8,["H430"]],[8,11,["H8668"]],[11,14,["H3956"]],[14,17,["H7442"]],[17,20,["H6666"]]]},{"k":14706,"v":[[0,2,["H136"]],[2,3,["H6605"]],[3,6,["H8193"]],[6,9,["H6310"]],[9,12,["H5046"]],[12,14,["H8416"]]]},{"k":14707,"v":[[0,1,["H3588"]],[1,3,["H2654"]],[3,4,["H3808"]],[4,5,["H2077"]],[5,9,["H5414"]],[9,12,["H7521"]],[12,13,["H3808"]],[13,16,["H5930"]]]},{"k":14708,"v":[[0,2,["H2077"]],[2,4,["H430"]],[4,7,["H7665"]],[7,8,["H7307"]],[8,10,["H7665"]],[10,13,["H1794"]],[13,14,["H3820"]],[14,16,["H430"]],[16,19,["H3808"]],[19,20,["H959"]]]},{"k":14709,"v":[[0,2,["H3190"]],[2,6,["H7522"]],[6,7,["(H853)"]],[7,8,["H6726"]],[8,9,["H1129"]],[9,12,["H2346"]],[12,14,["H3389"]]]},{"k":14710,"v":[[0,1,["H227"]],[1,5,["H2654"]],[5,8,["H2077"]],[8,10,["H6664"]],[10,13,["H5930"]],[13,17,["H3632"]],[17,18,["H227"]],[18,21,["H5927"]],[21,22,["H6499"]],[22,23,["H5921"]],[23,25,["H4196"]]]},{"k":14711,"v":[[0,1,["H4100"]],[1,4,["H1984"]],[4,6,["H7451"]],[6,9,["H1368"]],[9,11,["H2617"]],[11,13,["H410"]],[13,15,["H3605","H3117"]]]},{"k":14712,"v":[[0,2,["H3956"]],[2,3,["H2803"]],[3,4,["H1942"]],[4,7,["H3913"]],[7,8,["H8593"]],[8,9,["H6213"]],[9,10,["H7423"]]]},{"k":14713,"v":[[0,2,["H157"]],[2,3,["H7451"]],[3,6,["H4480","H2896"]],[6,8,["H8267"]],[8,12,["H4480","H1696"]],[12,13,["H6664"]],[13,14,["H5542"]]]},{"k":14714,"v":[[0,2,["H157"]],[2,3,["H3605"]],[3,4,["H1105"]],[4,5,["H1697"]],[5,8,["H4820"]],[8,9,["H3956"]]]},{"k":14715,"v":[[0,1,["H410"]],[1,3,["H1571"]],[3,4,["H5422"]],[4,7,["H5331"]],[7,12,["H2846"]],[12,16,["H5255"]],[16,20,["H4480","H168"]],[20,22,["H8327"]],[22,27,["H4480","H776"]],[27,30,["H2416"]],[30,31,["H5542"]]]},{"k":14716,"v":[[0,2,["H6662"]],[2,5,["H7200"]],[5,7,["H3372"]],[7,10,["H7832"]],[10,11,["H5921"]],[11,12,[]]]},{"k":14717,"v":[[0,1,["H2009"]],[1,5,["H1397"]],[5,7,["H7760"]],[7,8,["H3808"]],[8,9,["H430"]],[9,11,["H4581"]],[11,13,["H982"]],[13,16,["H7230"]],[16,19,["H6239"]],[19,21,["H5810"]],[21,25,["H1942"]]]},{"k":14718,"v":[[0,2,["H589"]],[2,6,["H7488"]],[6,8,["H2132"]],[8,11,["H1004"]],[11,13,["H430"]],[13,15,["H982"]],[15,18,["H2617"]],[18,20,["H430"]],[20,22,["H5769"]],[22,24,["H5703"]]]},{"k":14719,"v":[[0,3,["H3034"]],[3,6,["H5769"]],[6,7,["H3588"]],[7,10,["H6213"]],[10,16,["H6960"]],[16,18,["H8034"]],[18,19,["H3588"]],[19,22,["H2896"]],[22,23,["H5048"]],[23,25,["H2623"]]]},{"k":14720,"v":[[0,2,["H5036"]],[2,4,["H559"]],[4,7,["H3820"]],[7,10,["H369"]],[10,11,["H430"]],[11,12,["H7843"]],[12,18,["H8581"]],[18,19,["H5766"]],[19,22,["H369"]],[22,24,["H6213"]],[24,25,["H2896"]]]},{"k":14721,"v":[[0,1,["H430"]],[1,3,["H8259"]],[3,5,["H4480","H8064"]],[5,6,["H5921"]],[6,8,["H1121"]],[8,10,["H120"]],[10,12,["H7200"]],[12,15,["H3426"]],[15,19,["H7919"]],[19,22,["H1875","(H853)"]],[22,23,["H430"]]]},{"k":14722,"v":[[0,2,["H3605"]],[2,7,["H5472"]],[7,10,["H3162"]],[10,12,["H444"]],[12,15,["H369"]],[15,17,["H6213"]],[17,18,["H2896"]],[18,19,["H369"]],[19,20,["H1571"]],[20,21,["H259"]]]},{"k":14723,"v":[[0,3,["H6466"]],[3,5,["H205"]],[5,6,["H3808"]],[6,7,["H3045"]],[7,10,["H398"]],[10,12,["H5971"]],[12,15,["H398"]],[15,16,["H3899"]],[16,19,["H3808"]],[19,21,["H7121"]],[21,22,["H430"]]]},{"k":14724,"v":[[0,1,["H8033"]],[1,6,["H6342","H6343"]],[6,8,["H3808"]],[8,9,["H6343"]],[9,10,["H1961"]],[10,11,["H3588"]],[11,12,["H430"]],[12,14,["H6340"]],[14,16,["H6106"]],[16,20,["H2583"]],[20,28,["H954"]],[28,29,["H3588"]],[29,30,["H430"]],[30,32,["H3988"]],[32,33,[]]]},{"k":14725,"v":[[0,2,["H4310","H5414"]],[2,4,["H3444"]],[4,6,["H3478"]],[6,11,["H4480","H6726"]],[11,13,["H430"]],[13,15,["H7725"]],[15,17,["H7622"]],[17,20,["H5971"]],[20,21,["H3290"]],[21,23,["H1523"]],[23,25,["H3478"]],[25,28,["H8055"]]]},{"k":14726,"v":[[0,1,["H3467"]],[1,4,["H430"]],[4,7,["H8034"]],[7,9,["H1777"]],[9,13,["H1369"]]]},{"k":14727,"v":[[0,1,["H8085"]],[1,3,["H8605"]],[3,5,["H430"]],[5,7,["H238"]],[7,10,["H561"]],[10,13,["H6310"]]]},{"k":14728,"v":[[0,1,["H3588"]],[1,2,["H2114"]],[2,5,["H6965"]],[5,6,["H5921"]],[6,9,["H6184"]],[9,11,["H1245"]],[11,13,["H5315"]],[13,16,["H3808"]],[16,17,["H7760"]],[17,18,["H430"]],[18,19,["H5048"]],[19,21,["H5542"]]]},{"k":14729,"v":[[0,1,["H2009"]],[1,2,["H430"]],[2,5,["H5826"]],[5,7,["H136"]],[7,12,["H5564"]],[12,14,["H5315"]]]},{"k":14730,"v":[[0,3,["H7725"]],[3,4,["H7451"]],[4,7,["H8324"]],[7,10,["H6789"]],[10,13,["H571"]]]},{"k":14731,"v":[[0,3,["H5071"]],[3,4,["H2076"]],[4,9,["H3034"]],[9,11,["H8034"]],[11,13,["H3068"]],[13,14,["H3588"]],[14,17,["H2896"]]]},{"k":14732,"v":[[0,1,["H3588"]],[1,4,["H5337"]],[4,8,["H4480","H3605"]],[8,9,["H6869"]],[9,12,["H5869"]],[12,14,["H7200"]],[14,19,["H341"]]]},{"k":14733,"v":[[0,2,["H238"]],[2,5,["H8605"]],[5,7,["H430"]],[7,11,["H408","H5956"]],[11,14,["H4480","H8467"]]]},{"k":14734,"v":[[0,1,["H7181"]],[1,5,["H6030"]],[5,8,["H7300"]],[8,11,["H7879"]],[11,15,["H1949"]]]},{"k":14735,"v":[[0,4,["H4480","H6963"]],[4,7,["H341"]],[7,8,["H4480","H6440"]],[8,11,["H6125"]],[11,14,["H7563"]],[14,15,["H3588"]],[15,17,["H4131"]],[17,18,["H205"]],[18,19,["H5921"]],[19,23,["H639"]],[23,25,["H7852"]],[25,26,[]]]},{"k":14736,"v":[[0,2,["H3820"]],[2,5,["H2342"]],[5,6,["H7130"]],[6,10,["H367"]],[10,12,["H4194"]],[12,14,["H5307"]],[14,15,["H5921"]],[15,16,[]]]},{"k":14737,"v":[[0,1,["H3374"]],[1,3,["H7461"]],[3,5,["H935"]],[5,9,["H6427"]],[9,11,["H3680"]],[11,12,[]]]},{"k":14738,"v":[[0,3,["H559"]],[3,5,["H4310"]],[5,7,["H5414"]],[7,8,["H83"]],[8,11,["H3123"]],[11,17,["H5774"]],[17,21,["H7931"]]]},{"k":14739,"v":[[0,1,["H2009"]],[1,5,["H5074"]],[5,7,["H7368"]],[7,9,["H3885"]],[9,12,["H4057"]],[12,13,["H5542"]]]},{"k":14740,"v":[[0,3,["H2363"]],[3,5,["H4655"]],[5,8,["H4480","H7307"]],[8,9,["H5584"]],[9,11,["H4480","H5591"]]]},{"k":14741,"v":[[0,1,["H1104"]],[1,3,["H136"]],[3,5,["H6385"]],[5,7,["H3956"]],[7,8,["H3588"]],[8,11,["H7200"]],[11,12,["H2555"]],[12,14,["H7379"]],[14,17,["H5892"]]]},{"k":14742,"v":[[0,1,["H3119"]],[1,3,["H3915"]],[3,6,["H5437"]],[6,8,["H5921"]],[8,10,["H2346"]],[10,12,["H205"]],[12,15,["H5999"]],[15,19,["H7130"]],[19,21,[]]]},{"k":14743,"v":[[0,1,["H1942"]],[1,5,["H7130"]],[5,7,["H8496"]],[7,9,["H4820"]],[9,10,["H4185"]],[10,11,["H3808"]],[11,12,["H4480"]],[12,14,["H7339"]]]},{"k":14744,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,6,["H341"]],[6,8,["H2778"]],[8,14,["H5375"]],[14,16,["H3808"]],[16,21,["H8130"]],[21,25,["H1431"]],[25,27,["H5921"]],[27,34,["H5641"]],[34,35,["H4480"]],[35,36,[]]]},{"k":14745,"v":[[0,4,["H859"]],[4,6,["H582"]],[6,8,["H6187"]],[8,10,["H441"]],[10,13,["H3045"]]]},{"k":14746,"v":[[0,3,["H4985"]],[3,4,["H5475"]],[4,5,["H3162"]],[5,7,["H1980"]],[7,10,["H1004"]],[10,12,["H430"]],[12,14,["H7285"]]]},{"k":14747,"v":[[0,3,["H3451"]],[3,4,["H5921"]],[4,10,["H3381"]],[10,11,["H2416"]],[11,13,["H7585"]],[13,14,["H3588"]],[14,15,["H7451"]],[15,19,["H4033"]],[19,21,["H7130"]],[21,22,[]]]},{"k":14748,"v":[[0,4,["H589"]],[4,6,["H7121"]],[6,7,["H413"]],[7,8,["H430"]],[8,11,["H3068"]],[11,13,["H3467"]],[13,14,[]]]},{"k":14749,"v":[[0,1,["H6153"]],[1,3,["H1242"]],[3,6,["H6672"]],[6,9,["H7878"]],[9,12,["H1993"]],[12,16,["H8085"]],[16,18,["H6963"]]]},{"k":14750,"v":[[0,3,["H6299"]],[3,5,["H5315"]],[5,7,["H7965"]],[7,10,["H4480","H7128"]],[10,15,["H3588"]],[15,17,["H1961"]],[17,18,["H7227"]],[18,19,["H5978"]],[19,20,[]]]},{"k":14751,"v":[[0,1,["H410"]],[1,3,["H8085"]],[3,5,["H6031"]],[5,10,["H3427"]],[10,12,["H6924"]],[12,13,["H5542"]],[13,14,["H834"]],[14,17,["H369"]],[17,18,["H2487"]],[18,21,["H3372"]],[21,22,["H3808"]],[22,23,["H430"]]]},{"k":14752,"v":[[0,4,["H7971"]],[4,6,["H3027"]],[6,12,["H7965"]],[12,17,["H2490"]],[17,19,["H1285"]]]},{"k":14753,"v":[[0,5,["H6310"]],[5,7,["H2505"]],[7,9,["H4260"]],[9,11,["H7128"]],[11,15,["H3820"]],[15,17,["H1697"]],[17,19,["H7401"]],[19,21,["H4480","H8081"]],[21,24,["H1992"]],[24,26,["H6609"]]]},{"k":14754,"v":[[0,1,["H7993"]],[1,3,["H3053"]],[3,4,["H5921"]],[4,6,["H3068"]],[6,8,["H1931"]],[8,10,["H3557"]],[10,14,["H3808","H5769"]],[14,15,["H5414"]],[15,17,["H6662"]],[17,20,["H4131"]]]},{"k":14755,"v":[[0,2,["H859"]],[2,4,["H430"]],[4,8,["H3381"]],[8,11,["H875"]],[11,13,["H7845"]],[13,14,["H1818"]],[14,16,["H4820"]],[16,17,["H376"]],[17,19,["H3808"]],[19,22,["H2673"]],[22,24,["H3117"]],[24,26,["H589"]],[26,28,["H982"]],[28,30,[]]]},{"k":14756,"v":[[0,2,["H2603"]],[2,6,["H430"]],[6,7,["H3588"]],[7,8,["H582"]],[8,12,["H7602"]],[12,14,["H3898"]],[14,15,["H3605","H3117"]],[15,16,["H3905"]],[16,17,[]]]},{"k":14757,"v":[[0,2,["H8324"]],[2,4,["H3605","H3117"]],[4,7,["H7602"]],[7,8,["H3588"]],[8,11,["H7227"]],[11,13,["H3898"]],[13,19,["H4791"]]]},{"k":14758,"v":[[0,2,["H3117"]],[2,5,["H3372"]],[5,6,["H589"]],[6,8,["H982"]],[8,9,["H413"]],[9,10,[]]]},{"k":14759,"v":[[0,2,["H430"]],[2,5,["H1984"]],[5,7,["H1697"]],[7,9,["H430"]],[9,14,["H982"]],[14,17,["H3808"]],[17,18,["H3372"]],[18,19,["H4100"]],[19,20,["H1320"]],[20,22,["H6213"]],[22,24,[]]]},{"k":14760,"v":[[0,1,["H3605"]],[1,2,["H3117"]],[2,4,["H6087"]],[4,6,["H1697"]],[6,7,["H3605"]],[7,9,["H4284"]],[9,11,["H5921"]],[11,14,["H7451"]]]},{"k":14761,"v":[[0,4,["H1481"]],[4,6,["H6845"]],[6,8,["H1992"]],[8,9,["H8104"]],[9,11,["H6119"]],[11,12,["H834"]],[12,15,["H6960"]],[15,17,["H5315"]]]},{"k":14762,"v":[[0,2,["H3926"]],[2,3,["H6403"]],[3,4,["H5921"]],[4,5,["H205"]],[5,8,["H639"]],[8,10,["H3381"]],[10,12,["H5971"]],[12,14,["H430"]]]},{"k":14763,"v":[[0,2,["H5608"]],[2,4,["H5112"]],[4,5,["H7760"]],[5,6,["H859"]],[6,8,["H1832"]],[8,11,["H4997"]],[11,14,["H3808"]],[14,17,["H5612"]]]},{"k":14764,"v":[[0,1,["H3117"]],[1,3,["H7121"]],[3,6,["H227"]],[6,9,["H341"]],[9,10,["H7725"]],[10,11,["H268"]],[11,12,["H2088"]],[12,14,["H3045"]],[14,15,["H3588"]],[15,16,["H430"]],[16,19,[]]]},{"k":14765,"v":[[0,2,["H430"]],[2,5,["H1984"]],[5,7,["H1697"]],[7,10,["H3068"]],[10,13,["H1984"]],[13,15,["H1697"]]]},{"k":14766,"v":[[0,2,["H430"]],[2,7,["H982"]],[7,10,["H3808"]],[10,12,["H3372"]],[12,13,["H4100"]],[13,14,["H120"]],[14,16,["H6213"]],[16,18,[]]]},{"k":14767,"v":[[0,2,["H5088"]],[2,4,["H5921"]],[4,7,["H430"]],[7,10,["H7999"]],[10,11,["H8426"]],[11,13,[]]]},{"k":14768,"v":[[0,1,["H3588"]],[1,4,["H5337"]],[4,6,["H5315"]],[6,8,["H4480","H4194"]],[8,10,["H3808"]],[10,14,["H7272"]],[14,16,["H4480","H1762"]],[16,20,["H1980"]],[20,21,["H6440"]],[21,22,["H430"]],[22,25,["H216"]],[25,28,["H2416"]]]},{"k":14769,"v":[[0,2,["H2603"]],[2,6,["H430"]],[6,8,["H2603"]],[8,11,["H3588"]],[11,13,["H5315"]],[13,14,["H2620"]],[14,20,["H6738"]],[20,23,["H3671"]],[23,28,["H2620"]],[28,29,["H5704"]],[29,31,["H1942"]],[31,33,["H5674"]]]},{"k":14770,"v":[[0,3,["H7121"]],[3,5,["H430"]],[5,7,["H5945"]],[7,9,["H410"]],[9,11,["H1584"]],[11,14,["H5921"]],[14,15,[]]]},{"k":14771,"v":[[0,3,["H7971"]],[3,5,["H4480","H8064"]],[5,7,["H3467"]],[7,11,["H2778"]],[11,18,["H7602"]],[18,19,["H5542"]],[19,20,["H430"]],[20,23,["H7971"]],[23,25,["H2617"]],[25,28,["H571"]]]},{"k":14772,"v":[[0,2,["H5315"]],[2,4,["H8432"]],[4,5,["H3833"]],[5,8,["H7901"]],[8,16,["H3857"]],[16,19,["H1121"]],[19,21,["H120"]],[21,23,["H8127"]],[23,25,["H2595"]],[25,27,["H2671"]],[27,30,["H3956"]],[30,32,["H2299"]],[32,33,["H2719"]]]},{"k":14773,"v":[[0,3,["H7311"]],[3,5,["H430"]],[5,6,["H5921"]],[6,8,["H8064"]],[8,11,["H3519"]],[11,13,["H5921"]],[13,14,["H3605"]],[14,16,["H776"]]]},{"k":14774,"v":[[0,3,["H3559"]],[3,5,["H7568"]],[5,8,["H6471"]],[8,10,["H5315"]],[10,13,["H3721"]],[13,16,["H3738"]],[16,18,["H7882"]],[18,19,["H6440"]],[19,23,["H8432"]],[23,27,["H5307"]],[27,29,["H5542"]]]},{"k":14775,"v":[[0,2,["H3820"]],[2,4,["H3559"]],[4,6,["H430"]],[6,8,["H3820"]],[8,10,["H3559"]],[10,13,["H7891"]],[13,16,["H2167"]]]},{"k":14776,"v":[[0,2,["H5782"]],[2,4,["H3519"]],[4,5,["H5782"]],[5,6,["H5035"]],[6,8,["H3658"]],[8,12,["H5782"]],[12,13,["H7837"]]]},{"k":14777,"v":[[0,3,["H3034"]],[3,6,["H136"]],[6,9,["H5971"]],[9,12,["H2167"]],[12,17,["H3816"]]]},{"k":14778,"v":[[0,1,["H3588"]],[1,3,["H2617"]],[3,5,["H1419"]],[5,6,["H5704"]],[6,8,["H8064"]],[8,11,["H571"]],[11,12,["H5704"]],[12,14,["H7834"]]]},{"k":14779,"v":[[0,3,["H7311"]],[3,5,["H430"]],[5,6,["H5921"]],[6,8,["H8064"]],[8,11,["H3519"]],[11,13,["H5921"]],[13,14,["H3605"]],[14,16,["H776"]]]},{"k":14780,"v":[[0,3,["H552"]],[3,4,["H1696"]],[4,5,["H6664"]],[5,7,["H482"]],[7,10,["H8199"]],[10,11,["H4339"]],[11,14,["H1121"]],[14,16,["H120"]]]},{"k":14781,"v":[[0,1,["H637"]],[1,3,["H3820"]],[3,5,["H6466"]],[5,6,["H5766"]],[6,8,["H6424"]],[8,10,["H2555"]],[10,13,["H3027"]],[13,16,["H776"]]]},{"k":14782,"v":[[0,2,["H7563"]],[2,4,["H2114"]],[4,7,["H4480","H7358"]],[7,10,["H8582"]],[10,16,["H4480","H990"]],[16,17,["H1696"]],[17,18,["H3577"]]]},{"k":14783,"v":[[0,2,["H2534"]],[2,4,["H1823"]],[4,6,["H2534"]],[6,9,["H5175"]],[9,12,["H3644"]],[12,14,["H2795"]],[14,15,["H6620"]],[15,17,["H331"]],[17,19,["H241"]]]},{"k":14784,"v":[[0,1,["H834"]],[1,3,["H3808"]],[3,4,["H8085"]],[4,7,["H6963"]],[7,9,["H3907"]],[9,10,["H2266","H2267"]],[10,13,["H2449"]]]},{"k":14785,"v":[[0,1,["H2040"]],[1,3,["H8127"]],[3,5,["H430"]],[5,8,["H6310"]],[8,10,["H5422"]],[10,13,["H4459"]],[13,17,["H3715"]],[17,19,["H3068"]]]},{"k":14786,"v":[[0,4,["H3988"]],[4,5,["H3644"]],[5,6,["H4325"]],[6,8,["H1980"]],[8,12,["H1869"]],[12,18,["H2671"]],[18,22,["H3644"]],[22,25,["H4135"]]]},{"k":14787,"v":[[0,1,["H3644"]],[1,3,["H7642"]],[3,5,["H8557"]],[5,12,["H1980"]],[12,16,["H5309"]],[16,19,["H802"]],[19,23,["H1077"]],[23,24,["H2372"]],[24,26,["H8121"]]]},{"k":14788,"v":[[0,1,["H2962"]],[1,3,["H5518"]],[3,5,["H995"]],[5,7,["H329"]],[7,16,["H8175"]],[16,17,["H3644"]],[17,18,["H2416"]],[18,20,["H3644"]],[20,22,["H2740"]]]},{"k":14789,"v":[[0,2,["H6662"]],[2,4,["H8055"]],[4,5,["H3588"]],[5,7,["H2372"]],[7,9,["H5359"]],[9,12,["H7364"]],[12,14,["H6471"]],[14,17,["H1818"]],[17,20,["H7563"]]]},{"k":14790,"v":[[0,4,["H120"]],[4,6,["H559"]],[6,7,["H389"]],[7,11,["H6529"]],[11,14,["H6662"]],[14,15,["H389"]],[15,17,["H3426"]],[17,19,["H430"]],[19,21,["H8199"]],[21,24,["H776"]]]},{"k":14791,"v":[[0,1,["H5337"]],[1,5,["H4480","H341"]],[5,8,["H430"]],[8,9,["H7682"]],[9,16,["H4480","H6965"]],[16,17,[]]]},{"k":14792,"v":[[0,1,["H5337"]],[1,5,["H4480","H6466"]],[5,7,["H205"]],[7,9,["H3467"]],[9,12,["H1818"]],[12,13,["H4480","H376"]]]},{"k":14793,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,6,["H693"]],[6,9,["H5315"]],[9,11,["H5794"]],[11,13,["H1481"]],[13,14,["H5921"]],[14,16,["H3808"]],[16,19,["H6588"]],[19,20,["H3808"]],[20,23,["H2403"]],[23,25,["H3068"]]]},{"k":14794,"v":[[0,2,["H7323"]],[2,5,["H3559"]],[5,6,["H1097"]],[6,8,["H5771"]],[8,9,["H5782"]],[9,11,["H7125"]],[11,14,["H7200"]]]},{"k":14795,"v":[[0,1,["H859"]],[1,4,["H3068"]],[4,5,["H430"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,12,["H6974"]],[12,14,["H6485"]],[14,15,["H3605"]],[15,17,["H1471"]],[17,19,["H408"]],[19,20,["H2603"]],[20,22,["H3605"]],[22,23,["H205"]],[23,24,["H898"]],[24,25,["H5542"]]]},{"k":14796,"v":[[0,2,["H7725"]],[2,4,["H6153"]],[4,8,["H1993"]],[8,11,["H3611"]],[11,15,["H5437"]],[15,17,["H5892"]]]},{"k":14797,"v":[[0,1,["H2009"]],[1,4,["H5042"]],[4,7,["H6310"]],[7,8,["H2719"]],[8,12,["H8193"]],[12,13,["H3588"]],[13,14,["H4310"]],[14,18,["H8085"]]]},{"k":14798,"v":[[0,2,["H859"]],[2,4,["H3068"]],[4,6,["H7832"]],[6,12,["H3605"]],[12,14,["H1471"]],[14,16,["H3932"]]]},{"k":14799,"v":[[0,4,["H5797"]],[4,7,["H8104"]],[7,8,["H413"]],[8,10,["H3588"]],[10,11,["H430"]],[11,14,["H4869"]]]},{"k":14800,"v":[[0,2,["H430"]],[2,5,["H2617"]],[5,7,["H6923"]],[7,9,["H430"]],[9,13,["H7200"]],[13,18,["H8324"]]]},{"k":14801,"v":[[0,1,["H2026"]],[1,3,["H408"]],[3,4,["H6435"]],[4,6,["H5971"]],[6,7,["H7911"]],[7,8,["H5128"]],[8,12,["H2428"]],[12,16,["H3381"]],[16,18,["H136"]],[18,20,["H4043"]]]},{"k":14802,"v":[[0,3,["H2403"]],[3,6,["H6310"]],[6,9,["H1697"]],[9,12,["H8193"]],[12,17,["H3920"]],[17,20,["H1347"]],[20,23,["H4480","H423"]],[23,25,["H4480","H3585"]],[25,28,["H5608"]]]},{"k":14803,"v":[[0,1,["H3615"]],[1,4,["H2534"]],[4,5,["H3615"]],[5,10,["H369"]],[10,15,["H3045"]],[15,16,["H3588"]],[16,17,["H430"]],[17,18,["H4910"]],[18,20,["H3290"]],[20,23,["H657"]],[23,26,["H776"]],[26,27,["H5542"]]]},{"k":14804,"v":[[0,3,["H6153"]],[3,6,["H7725"]],[6,12,["H1993"]],[12,15,["H3611"]],[15,19,["H5437"]],[19,21,["H5892"]]]},{"k":14805,"v":[[0,2,["H1992"]],[2,6,["H5128"]],[6,8,["H398"]],[8,10,["H3885"]],[10,11,["H518"]],[11,14,["H3808"]],[14,15,["H7646"]]]},{"k":14806,"v":[[0,2,["H589"]],[2,4,["H7891"]],[4,7,["H5797"]],[7,12,["H7442"]],[12,15,["H2617"]],[15,18,["H1242"]],[18,19,["H3588"]],[19,22,["H1961"]],[22,24,["H4869"]],[24,26,["H4498"]],[26,29,["H3117"]],[29,32,["H6862"]]]},{"k":14807,"v":[[0,1,["H413"]],[1,5,["H5797"]],[5,8,["H2167"]],[8,9,["H3588"]],[9,10,["H430"]],[10,13,["H4869"]],[13,16,["H430"]],[16,19,["H2617"]]]},{"k":14808,"v":[[0,2,["H430"]],[2,7,["H2186"]],[7,10,["H6555"]],[10,15,["H599"]],[15,17,["H7725"]],[17,21,[]]]},{"k":14809,"v":[[0,5,["H776"]],[5,7,["H7493"]],[7,10,["H6480"]],[10,12,["H7495"]],[12,14,["H7667"]],[14,16,["H3588"]],[16,18,["H4131"]]]},{"k":14810,"v":[[0,3,["H7200"]],[3,5,["H5971"]],[5,6,["H7186"]],[6,13,["H8248"]],[13,15,["H3196"]],[15,17,["H8653"]]]},{"k":14811,"v":[[0,3,["H5414"]],[3,5,["H5251"]],[5,9,["H3373"]],[9,15,["H5127"]],[15,16,["H4480","H6440"]],[16,19,["H7189"]],[19,20,["H5542"]]]},{"k":14812,"v":[[0,1,["H4616"]],[1,3,["H3039"]],[3,6,["H2502"]],[6,7,["H3467"]],[7,11,["H3225"]],[11,13,["H6030"]],[13,14,[]]]},{"k":14813,"v":[[0,1,["H430"]],[1,3,["H1696"]],[3,6,["H6944"]],[6,9,["H5937"]],[9,12,["H2505"]],[12,13,["H7927"]],[13,16,["H4058"]],[16,18,["H6010"]],[18,20,["H5523"]]]},{"k":14814,"v":[[0,1,["H1568"]],[1,5,["H4519"]],[5,8,["H669"]],[8,12,["H4581"]],[12,15,["H7218"]],[15,16,["H3063"]],[16,19,["H2710"]]]},{"k":14815,"v":[[0,1,["H4124"]],[1,4,["H5518","H7366"]],[4,5,["H5921"]],[5,6,["H123"]],[6,10,["H7993"]],[10,12,["H5275"]],[12,13,["H6429"]],[13,14,["H7321"]],[14,16,["H5921"]],[16,18,[]]]},{"k":14816,"v":[[0,1,["H4310"]],[1,3,["H2986"]],[3,7,["H4692"]],[7,8,["H5892"]],[8,9,["H4310"]],[9,11,["H5148"]],[11,13,["H5704"]],[13,14,["H123"]]]},{"k":14817,"v":[[0,2,["H3808"]],[2,3,["H859"]],[3,5,["H430"]],[5,10,["H2186"]],[10,14,["H430"]],[14,17,["H3808"]],[17,19,["H3318"]],[19,22,["H6635"]]]},{"k":14818,"v":[[0,1,["H3051"]],[1,3,["H5833"]],[3,5,["H4480","H6862"]],[5,7,["H7723"]],[7,10,["H8668"]],[10,12,["H120"]]]},{"k":14819,"v":[[0,2,["H430"]],[2,5,["H6213"]],[5,6,["H2428"]],[6,8,["H1931"]],[8,14,["H947"]],[14,16,["H6862"]]]},{"k":14820,"v":[[0,1,["H8085"]],[1,3,["H7440"]],[3,5,["H430"]],[5,7,["H7181"]],[7,9,["H8605"]]]},{"k":14821,"v":[[0,3,["H4480","H7097"]],[3,6,["H776"]],[6,9,["H7121"]],[9,10,["H413"]],[10,14,["H3820"]],[14,16,["H5848"]],[16,17,["H5148"]],[17,21,["H6697"]],[21,24,["H7311"]],[24,25,["H4480"]],[25,26,[]]]},{"k":14822,"v":[[0,1,["H3588"]],[1,4,["H1961"]],[4,6,["H4268"]],[6,11,["H5797"]],[11,12,["H4026"]],[12,13,["H4480","H6440"]],[13,15,["H341"]]]},{"k":14823,"v":[[0,3,["H1481"]],[3,6,["H168"]],[6,8,["H5769"]],[8,11,["H2620"]],[11,14,["H5643"]],[14,17,["H3671"]],[17,18,["H5542"]]]},{"k":14824,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H430"]],[4,6,["H8085"]],[6,8,["H5088"]],[8,11,["H5414"]],[11,14,["H3425"]],[14,18,["H3373"]],[18,20,["H8034"]]]},{"k":14825,"v":[[0,3,["H3254"]],[3,5,["H4428"]],[5,6,["H3117","H5921","H3117"]],[6,9,["H8141"]],[9,10,["H3644"]],[10,12,["H1755","H1755"]]]},{"k":14826,"v":[[0,3,["H3427"]],[3,4,["H6440"]],[4,5,["H430"]],[5,7,["H5769"]],[7,9,["H4487"]],[9,10,["H2617"]],[10,12,["H571"]],[12,15,["H5341"]],[15,16,[]]]},{"k":14827,"v":[[0,1,["H3651"]],[1,5,["H2167"]],[5,8,["H8034"]],[8,10,["H5703"]],[10,14,["H3117","H3117"]],[14,15,["H7999"]],[15,17,["H5088"]]]},{"k":14828,"v":[[0,1,["H389"]],[1,3,["H5315"]],[3,4,["H1747"]],[4,5,["H413"]],[5,6,["H430"]],[6,7,["H4480"]],[7,11,["H3444"]]]},{"k":14829,"v":[[0,1,["H1931"]],[1,2,["H389"]],[2,5,["H6697"]],[5,8,["H3444"]],[8,12,["H4869"]],[12,15,["H3808"]],[15,17,["H7227"]],[17,18,["H4131"]]]},{"k":14830,"v":[[0,2,["H5704","H575"]],[2,6,["H2050"]],[6,7,["H5921"]],[7,9,["H376"]],[9,13,["H7523"]],[13,14,["H3605"]],[14,19,["H5186"]],[19,20,["H7023"]],[20,27,["H1760"]],[27,28,["H1447"]]]},{"k":14831,"v":[[0,2,["H389"]],[2,3,["H3289"]],[3,7,["H5080"]],[7,10,["H4480","H7613"]],[10,12,["H7521"]],[12,14,["H3577"]],[14,16,["H1288"]],[16,19,["H6310"]],[19,22,["H7043"]],[22,23,["H7130"]],[23,24,["H5542"]]]},{"k":14832,"v":[[0,2,["H5315"]],[2,3,["H1826"]],[3,5,["H389"]],[5,7,["H430"]],[7,8,["H3588"]],[8,10,["H8615"]],[10,12,["H4480"]],[12,13,[]]]},{"k":14833,"v":[[0,1,["H1931"]],[1,2,["H389"]],[2,5,["H6697"]],[5,8,["H3444"]],[8,12,["H4869"]],[12,15,["H3808"]],[15,17,["H4131"]]]},{"k":14834,"v":[[0,1,["H5921"]],[1,2,["H430"]],[2,5,["H3468"]],[5,8,["H3519"]],[8,10,["H6697"]],[10,13,["H5797"]],[13,16,["H4268"]],[16,19,["H430"]]]},{"k":14835,"v":[[0,1,["H982"]],[1,5,["H3605"]],[5,6,["H6256"]],[6,8,["H5971"]],[8,10,["H8210"]],[10,12,["H3824"]],[12,13,["H6440"]],[13,15,["H430"]],[15,18,["H4268"]],[18,21,["H5542"]]]},{"k":14836,"v":[[0,1,["H389"]],[1,5,["H1121","H120"]],[5,7,["H1892"]],[7,12,["H1121","H376"]],[12,15,["H3577"]],[15,18,["H5927"]],[18,21,["H3976"]],[21,22,["H1992"]],[22,24,["H3162"]],[24,27,["H4480","H1892"]]]},{"k":14837,"v":[[0,1,["H982"]],[1,2,["H408"]],[2,4,["H6233"]],[4,8,["H1891","H408"]],[8,10,["H1498"]],[10,11,["H3588"]],[11,12,["H2428"]],[12,13,["H5107"]],[13,14,["H7896"]],[14,15,["H408"]],[15,17,["H3820"]],[17,19,[]]]},{"k":14838,"v":[[0,1,["H430"]],[1,3,["H1696"]],[3,4,["H259"]],[4,5,["H8147"]],[5,8,["H8085"]],[8,9,["H2098"]],[9,10,["H3588"]],[10,11,["H5797"]],[11,14,["H430"]]]},{"k":14839,"v":[[0,5,["H136"]],[5,7,["H2617"]],[7,8,["H3588"]],[8,9,["H859"]],[9,10,["H7999"]],[10,13,["H376"]],[13,17,["H4639"]]]},{"k":14840,"v":[[0,2,["H430"]],[2,3,["H859"]],[3,6,["H410"]],[6,10,["H7836"]],[10,13,["H5315"]],[13,14,["H6770"]],[14,18,["H1320"]],[18,19,["H3642"]],[19,24,["H6723"]],[24,26,["H5889"]],[26,27,["H776"]],[27,29,["H1097"]],[29,30,["H4325"]],[30,31,[]]]},{"k":14841,"v":[[0,2,["H7200"]],[2,4,["H5797"]],[4,7,["H3519"]],[7,8,["H3651"]],[8,12,["H2372"]],[12,16,["H6944"]]]},{"k":14842,"v":[[0,1,["H3588"]],[1,3,["H2617"]],[3,5,["H2896"]],[5,7,["H4480","H2416"]],[7,9,["H8193"]],[9,11,["H7623"]],[11,12,[]]]},{"k":14843,"v":[[0,1,["H3651"]],[1,4,["H1288"]],[4,8,["H2416"]],[8,12,["H5375"]],[12,14,["H3709"]],[14,17,["H8034"]]]},{"k":14844,"v":[[0,2,["H5315"]],[2,5,["H7646"]],[5,6,["H3644"]],[6,8,["H2459"]],[8,10,["H1880"]],[10,13,["H6310"]],[13,15,["H1984"]],[15,18,["H7445"]],[18,19,["H8193"]]]},{"k":14845,"v":[[0,1,["H518"]],[1,3,["H2142"]],[3,5,["H5921"]],[5,7,["H3326"]],[7,9,["H1897"]],[9,15,["H821"]]]},{"k":14846,"v":[[0,1,["H3588"]],[1,4,["H1961"]],[4,6,["H5833"]],[6,10,["H6738"]],[10,13,["H3671"]],[13,16,["H7442"]]]},{"k":14847,"v":[[0,2,["H5315"]],[2,4,["H1692"]],[4,5,["H310"]],[5,9,["H3225"]],[9,10,["H8551"]],[10,11,[]]]},{"k":14848,"v":[[0,2,["H1992"]],[2,4,["H1245"]],[4,6,["H5315"]],[6,8,["H7722"]],[8,11,["H935"]],[11,15,["H8482"]],[15,18,["H776"]]]},{"k":14849,"v":[[0,3,["H5064"]],[3,4,["H5921","H3027"]],[4,6,["H2719"]],[6,9,["H1961"]],[9,11,["H4521"]],[11,13,["H7776"]]]},{"k":14850,"v":[[0,3,["H4428"]],[3,5,["H8055"]],[5,7,["H430"]],[7,9,["H3605"]],[9,11,["H7650"]],[11,15,["H1984"]],[15,16,["H3588"]],[16,18,["H6310"]],[18,22,["H1696"]],[22,23,["H8267"]],[23,26,["H5534"]]]},{"k":14851,"v":[[0,1,["H8085"]],[1,3,["H6963"]],[3,5,["H430"]],[5,8,["H7879"]],[8,9,["H5341"]],[9,11,["H2416"]],[11,13,["H4480","H6343"]],[13,16,["H341"]]]},{"k":14852,"v":[[0,1,["H5641"]],[1,6,["H4480","H5475"]],[6,9,["H7489"]],[9,12,["H4480","H7285"]],[12,15,["H6466"]],[15,17,["H205"]]]},{"k":14853,"v":[[0,1,["H834"]],[1,2,["H8150"]],[2,4,["H3956"]],[4,7,["H2719"]],[7,9,["H1869"]],[9,15,["H2671"]],[15,17,["H4751"]],[17,18,["H1697"]]]},{"k":14854,"v":[[0,4,["H3384"]],[4,6,["H4565"]],[6,9,["H8535"]],[9,10,["H6597"]],[10,13,["H3384"]],[13,17,["H3372"]],[17,18,["H3808"]]]},{"k":14855,"v":[[0,2,["H2388"]],[2,6,["H7451"]],[6,7,["H1697"]],[7,9,["H5608"]],[9,13,["H2934","H4170"]],[13,15,["H559"]],[15,16,["H4310"]],[16,18,["H7200"]],[18,19,[]]]},{"k":14856,"v":[[0,3,["H2664"]],[3,4,["H5766"]],[4,6,["H8552"]],[6,9,["H2665","H2664"]],[9,12,["H7130"]],[12,16,["H376"]],[16,21,["H3820"]],[21,23,["H6013"]]]},{"k":14857,"v":[[0,2,["H430"]],[2,4,["H3384"]],[4,9,["H2671"]],[9,10,["H6597"]],[10,13,["H1961"]],[13,14,["H4347"]]]},{"k":14858,"v":[[0,7,["H3956"]],[7,9,["H3782"]],[9,10,["H5921"]],[10,12,["H3605"]],[12,14,["H7200"]],[14,18,["H5074"]]]},{"k":14859,"v":[[0,2,["H3605"]],[2,3,["H120"]],[3,5,["H3372"]],[5,8,["H5046"]],[8,10,["H6467"]],[10,12,["H430"]],[12,17,["H7919"]],[17,20,["H4639"]]]},{"k":14860,"v":[[0,2,["H6662"]],[2,5,["H8055"]],[5,8,["H3068"]],[8,11,["H2620"]],[11,15,["H3605"]],[15,17,["H3477"]],[17,19,["H3820"]],[19,21,["H1984"]]]},{"k":14861,"v":[[0,1,["H8416"]],[1,2,["H1747"]],[2,6,["H430"]],[6,8,["H6726"]],[8,14,["H5088"]],[14,16,["H7999"]]]},{"k":14862,"v":[[0,4,["H8085"]],[4,5,["H8605"]],[5,6,["H5704"]],[6,9,["H3605"]],[9,10,["H1320"]],[10,11,["H935"]]]},{"k":14863,"v":[[0,1,["H1697","H5771"]],[1,2,["H1396"]],[2,3,["H4480"]],[3,8,["H6588"]],[8,9,["H859"]],[9,13,["H3722"]]]},{"k":14864,"v":[[0,1,["H835"]],[1,7,["H977"]],[7,11,["H7126"]],[11,17,["H7931"]],[17,20,["H2691"]],[20,24,["H7646"]],[24,27,["H2898"]],[27,30,["H1004"]],[30,34,["H6918"]],[34,35,["H1964"]]]},{"k":14865,"v":[[0,3,["H3372"]],[3,5,["H6664"]],[5,8,["H6030"]],[8,11,["H430"]],[11,14,["H3468"]],[14,18,["H4009"]],[18,20,["H3605"]],[20,22,["H7099"]],[22,25,["H776"]],[25,32,["H7350"]],[32,35,["H3220"]]]},{"k":14866,"v":[[0,4,["H3581"]],[4,6,["H3559"]],[6,8,["H2022"]],[8,10,["H247"]],[10,12,["H1369"]]]},{"k":14867,"v":[[0,2,["H7623"]],[2,4,["H7588"]],[4,7,["H3220"]],[7,9,["H7588"]],[9,12,["H1530"]],[12,15,["H1995"]],[15,18,["H3816"]]]},{"k":14868,"v":[[0,4,["H3427"]],[4,8,["H7098"]],[8,10,["H3372"]],[10,13,["H4480","H226"]],[13,17,["H4161"]],[17,20,["H1242"]],[20,22,["H6153"]],[22,24,["H7442"]]]},{"k":14869,"v":[[0,2,["H6485"]],[2,4,["H776"]],[4,6,["H7783"]],[6,9,["H7227"]],[9,10,["H6238"]],[10,14,["H6388"]],[14,16,["H430"]],[16,19,["H4390"]],[19,21,["H4325"]],[21,23,["H3559"]],[23,25,["H1715"]],[25,26,["H3588"]],[26,29,["H3651"]],[29,30,["H3559"]],[30,32,[]]]},{"k":14870,"v":[[0,4,["H8525"]],[4,6,["H7301"]],[6,8,["H5181"]],[8,10,["H1417"]],[10,15,["H4127"]],[15,17,["H7241"]],[17,19,["H1288"]],[19,21,["H6780"]],[21,22,[]]]},{"k":14871,"v":[[0,2,["H5849"]],[2,4,["H8141"]],[4,7,["H2896"]],[7,10,["H4570"]],[10,11,["H7491"]],[11,12,["H1880"]]]},{"k":14872,"v":[[0,2,["H7491"]],[2,5,["H4999"]],[5,8,["H4057"]],[8,12,["H1389"]],[12,13,["H1524"]],[13,16,["H2296"]]]},{"k":14873,"v":[[0,2,["H3733"]],[2,4,["H3847"]],[4,6,["H6629"]],[6,8,["H6010"]],[8,12,["H5848"]],[12,14,["H1250"]],[14,18,["H7321"]],[18,20,["H637"]],[20,21,["H7891"]]]},{"k":14874,"v":[[0,4,["H7321"]],[4,6,["H430"]],[6,7,["H3605"]],[7,9,["H776"]]]},{"k":14875,"v":[[0,2,["H2167"]],[2,4,["H3519"]],[4,7,["H8034"]],[7,8,["H7760"]],[8,10,["H8416"]],[10,11,["H3519"]]]},{"k":14876,"v":[[0,1,["H559"]],[1,3,["H430"]],[3,4,["H4100"]],[4,5,["H3372"]],[5,10,["H4639"]],[10,13,["H7230"]],[13,16,["H5797"]],[16,19,["H341"]],[19,20,["H3584"]],[20,23,[]]]},{"k":14877,"v":[[0,1,["H3605"]],[1,3,["H776"]],[3,5,["H7812"]],[5,9,["H2167"]],[9,14,["H2167"]],[14,17,["H8034"]],[17,18,["H5542"]]]},{"k":14878,"v":[[0,1,["H1980"]],[1,3,["H7200"]],[3,5,["H4659"]],[5,7,["H430"]],[7,10,["H3372"]],[10,13,["H5949"]],[13,14,["H5921"]],[14,16,["H1121"]],[16,18,["H120"]]]},{"k":14879,"v":[[0,2,["H2015"]],[2,4,["H3220"]],[4,6,["H3004"]],[6,9,["H5674"]],[9,12,["H5104"]],[12,14,["H7272"]],[14,15,["H8033"]],[15,18,["H8055"]],[18,20,[]]]},{"k":14880,"v":[[0,2,["H4910"]],[2,5,["H1369"]],[5,7,["H5769"]],[7,9,["H5869"]],[9,10,["H6822"]],[10,12,["H1471"]],[12,14,["H408"]],[14,16,["H5637"]],[16,17,["H7311"]],[17,19,["H5542"]]]},{"k":14881,"v":[[0,2,["H1288"]],[2,4,["H430"]],[4,6,["H5971"]],[6,10,["H6963"]],[10,13,["H8416"]],[13,16,["H8085"]]]},{"k":14882,"v":[[0,2,["H7760"]],[2,4,["H5315"]],[4,6,["H2416"]],[6,8,["H5414"]],[8,9,["H3808"]],[9,11,["H7272"]],[11,14,["H4132"]]]},{"k":14883,"v":[[0,1,["H3588"]],[1,4,["H430"]],[4,6,["H974"]],[6,10,["H6884"]],[10,13,["H3701"]],[13,15,["H6884"]]]},{"k":14884,"v":[[0,2,["H935"]],[2,6,["H4686"]],[6,8,["H7760"]],[8,9,["H4157"]],[9,12,["H4975"]]]},{"k":14885,"v":[[0,4,["H582"]],[4,6,["H7392"]],[6,9,["H7218"]],[9,11,["H935"]],[11,13,["H784"]],[13,16,["H4325"]],[16,21,["H3318"]],[21,24,["H7310"]],[24,25,[]]]},{"k":14886,"v":[[0,3,["H935"]],[3,6,["H1004"]],[6,9,["H5930"]],[9,12,["H7999"]],[12,15,["H5088"]]]},{"k":14887,"v":[[0,1,["H834"]],[1,3,["H8193"]],[3,5,["H6475"]],[5,8,["H6310"]],[8,10,["H1696"]],[10,15,["H6862"]]]},{"k":14888,"v":[[0,3,["H5927"]],[3,7,["H5930"]],[7,9,["H4220"]],[9,10,["H5973"]],[10,12,["H7004"]],[12,14,["H352"]],[14,17,["H6213"]],[17,18,["H1241"]],[18,19,["H5973"]],[19,20,["H6260"]],[20,21,["H5542"]]]},{"k":14889,"v":[[0,1,["H1980"]],[1,3,["H8085"]],[3,4,["H3605"]],[4,7,["H3373"]],[7,8,["H430"]],[8,12,["H5608"]],[12,13,["H834"]],[13,16,["H6213"]],[16,19,["H5315"]]]},{"k":14890,"v":[[0,2,["H7121"]],[2,3,["H413"]],[3,7,["H6310"]],[7,11,["H7318"]],[11,12,["H8478"]],[12,14,["H3956"]]]},{"k":14891,"v":[[0,1,["H518"]],[1,3,["H7200"]],[3,4,["H205"]],[4,7,["H3820"]],[7,9,["H136"]],[9,11,["H3808"]],[11,12,["H8085"]],[12,13,[]]]},{"k":14892,"v":[[0,2,["H403"]],[2,3,["H430"]],[3,5,["H8085"]],[5,9,["H7181"]],[9,12,["H6963"]],[12,15,["H8605"]]]},{"k":14893,"v":[[0,1,["H1288"]],[1,3,["H430"]],[3,4,["H834"]],[4,6,["H3808"]],[6,8,["H5493"]],[8,10,["H8605"]],[10,13,["H2617"]],[13,14,["H4480","H854"]],[14,15,[]]]},{"k":14894,"v":[[0,1,["H430"]],[1,3,["H2603"]],[3,7,["H1288"]],[7,12,["H6440"]],[12,14,["H215"]],[14,15,["H854"]],[15,17,["H5542"]]]},{"k":14895,"v":[[0,3,["H1870"]],[3,6,["H3045"]],[6,8,["H776"]],[8,11,["H3444"]],[11,13,["H3605"]],[13,14,["H1471"]]]},{"k":14896,"v":[[0,3,["H5971"]],[3,4,["H3034"]],[4,7,["H430"]],[7,9,["H3605"]],[9,11,["H5971"]],[11,12,["H3034"]],[12,13,[]]]},{"k":14897,"v":[[0,4,["H3816"]],[4,6,["H8055"]],[6,10,["H7442"]],[10,11,["H3588"]],[11,14,["H8199"]],[14,16,["H5971"]],[16,17,["H4334"]],[17,19,["H5148"]],[19,21,["H3816"]],[21,23,["H776"]],[23,24,["H5542"]]]},{"k":14898,"v":[[0,3,["H5971"]],[3,4,["H3034"]],[4,7,["H430"]],[7,9,["H3605"]],[9,11,["H5971"]],[11,12,["H3034"]],[12,13,[]]]},{"k":14899,"v":[[0,4,["H776"]],[4,5,["H5414"]],[5,7,["H2981"]],[7,9,["H430"]],[9,13,["H430"]],[13,15,["H1288"]],[15,16,[]]]},{"k":14900,"v":[[0,1,["H430"]],[1,3,["H1288"]],[3,6,["H3605"]],[6,8,["H657"]],[8,11,["H776"]],[11,13,["H3372"]],[13,14,[]]]},{"k":14901,"v":[[0,2,["H430"]],[2,3,["H6965"]],[3,6,["H341"]],[6,8,["H6327"]],[8,13,["H8130"]],[13,15,["H5127"]],[15,16,["H4480","H6440"]],[16,17,[]]]},{"k":14902,"v":[[0,2,["H6227"]],[2,5,["H5086"]],[5,9,["H5086"]],[9,11,["H1749"]],[11,12,["H4549"]],[12,13,["H4480","H6440"]],[13,15,["H784"]],[15,19,["H7563"]],[19,20,["H6"]],[20,23,["H4480","H6440"]],[23,25,["H430"]]]},{"k":14903,"v":[[0,4,["H6662"]],[4,6,["H8055"]],[6,9,["H5970"]],[9,10,["H6440"]],[10,11,["H430"]],[11,15,["H8057"]],[15,16,["H7797"]]]},{"k":14904,"v":[[0,1,["H7891"]],[1,3,["H430"]],[3,5,["H2167"]],[5,8,["H8034"]],[8,9,["H5549"]],[9,12,["H7392"]],[12,15,["H6160"]],[15,18,["H8034"]],[18,19,["H3050"]],[19,21,["H5937"]],[21,22,["H6440"]],[22,23,[]]]},{"k":14905,"v":[[0,2,["H1"]],[2,5,["H3490"]],[5,8,["H1781"]],[8,11,["H490"]],[11,13,["H430"]],[13,16,["H6944"]],[16,17,["H4583"]]]},{"k":14906,"v":[[0,1,["H430"]],[1,2,["H3427"]],[2,4,["H3173"]],[4,6,["H1004"]],[6,9,["H3318"]],[9,13,["H615"]],[13,15,["H3574"]],[15,16,["H389"]],[16,18,["H5637"]],[18,19,["H7931"]],[19,22,["H6707"]],[22,23,[]]]},{"k":14907,"v":[[0,2,["H430"]],[2,6,["H3318"]],[6,7,["H6440"]],[7,9,["H5971"]],[9,13,["H6805"]],[13,16,["H3452"]],[16,17,["H5542"]]]},{"k":14908,"v":[[0,2,["H776"]],[2,3,["H7493"]],[3,5,["H8064"]],[5,6,["H637"]],[6,7,["H5197"]],[7,10,["H4480","H6440"]],[10,12,["H430"]],[12,14,["H5514"]],[14,15,["H2088"]],[15,20,["H4480","H6440"]],[20,22,["H430"]],[22,24,["H430"]],[24,26,["H3478"]]]},{"k":14909,"v":[[0,3,["H430"]],[3,5,["H5130"]],[5,7,["H5071"]],[7,8,["H1653"]],[8,10,["H859"]],[10,12,["H3559"]],[12,14,["H5159"]],[14,18,["H3811"]]]},{"k":14910,"v":[[0,2,["H2416"]],[2,4,["H3427"]],[4,8,["H430"]],[8,10,["H3559"]],[10,13,["H2896"]],[13,16,["H6041"]]]},{"k":14911,"v":[[0,2,["H136"]],[2,3,["H5414"]],[3,5,["H562"]],[5,6,["H7227"]],[6,9,["H6635"]],[9,13,["H1319"]],[13,14,[]]]},{"k":14912,"v":[[0,1,["H4428"]],[1,3,["H6635"]],[3,6,["H5074","H5074"]],[6,10,["H5116"]],[10,12,["H1004"]],[12,13,["H2505"]],[13,15,["H7998"]]]},{"k":14913,"v":[[0,1,["H518"]],[1,4,["H7901"]],[4,5,["H996"]],[5,7,["H8240"]],[7,14,["H3671"]],[14,17,["H3123"]],[17,18,["H2645"]],[18,20,["H3701"]],[20,23,["H84"]],[23,25,["H3422"]],[25,26,["H2742"]]]},{"k":14914,"v":[[0,3,["H7706"]],[3,4,["H6566"]],[4,5,["H4428"]],[5,12,["H7949"]],[12,14,["H6756"]]]},{"k":14915,"v":[[0,2,["H2022"]],[2,4,["H430"]],[4,8,["H2022"]],[8,10,["H1316"]],[10,12,["H1386"]],[12,13,["H2022"]],[13,16,["H2022"]],[16,18,["H1316"]]]},{"k":14916,"v":[[0,1,["H4100"]],[1,2,["H7520"]],[2,5,["H1386"]],[5,6,["H2022"]],[6,10,["H2022"]],[10,12,["H430"]],[12,13,["H2530"]],[13,15,["H3427"]],[15,17,["H637"]],[17,19,["H3068"]],[19,21,["H7931"]],[21,25,["H5331"]]]},{"k":14917,"v":[[0,2,["H7393"]],[2,4,["H430"]],[4,7,["H7239"]],[7,9,["H505"]],[9,11,["H8136"]],[11,13,["H136"]],[13,19,["H5514"]],[19,22,["H6944"]],[22,23,[]]]},{"k":14918,"v":[[0,3,["H5927"]],[3,5,["H4791"]],[5,10,["H7617","H7628"]],[10,13,["H3947"]],[13,14,["H4979"]],[14,16,["H120"]],[16,20,["H5637"]],[20,21,["H637"]],[21,24,["H3050"]],[24,25,["H430"]],[25,27,["H7931"]],[27,29,[]]]},{"k":14919,"v":[[0,1,["H1288"]],[1,4,["H136"]],[4,6,["H3117","H3117"]],[6,7,["H6006"]],[7,13,["H410"]],[13,16,["H3444"]],[16,17,["H5542"]]]},{"k":14920,"v":[[0,5,["H410"]],[5,8,["H410"]],[8,10,["H4190"]],[10,13,["H3069"]],[13,15,["H136"]],[15,18,["H8444"]],[18,20,["H4194"]]]},{"k":14921,"v":[[0,1,["H389"]],[1,2,["H430"]],[2,4,["H4272"]],[4,6,["H7218"]],[6,9,["H341"]],[9,12,["H8181"]],[12,13,["H6936"]],[13,21,["H1980"]],[21,24,["H817"]]]},{"k":14922,"v":[[0,2,["H136"]],[2,3,["H559"]],[3,7,["H7725"]],[7,9,["H4480","H1316"]],[9,15,["H7725"]],[15,18,["H4480","H4688"]],[18,21,["H3220"]]]},{"k":14923,"v":[[0,1,["H4616"]],[1,3,["H7272"]],[3,6,["H4272"]],[6,9,["H1818"]],[9,12,["H4480","H341"]],[12,15,["H3956"]],[15,18,["H3611"]],[18,21,["H4482"]]]},{"k":14924,"v":[[0,3,["H7200"]],[3,5,["H1979"]],[5,7,["H430"]],[7,10,["H1979"]],[10,13,["H410"]],[13,15,["H4428"]],[15,18,["H6944"]]]},{"k":14925,"v":[[0,2,["H7891"]],[2,4,["H6923"]],[4,8,["H5059"]],[8,10,["H310"]],[10,11,["H8432"]],[11,15,["H5959"]],[15,18,["H8608"]]]},{"k":14926,"v":[[0,1,["H1288"]],[1,3,["H430"]],[3,6,["H4721"]],[6,9,["H3068"]],[9,12,["H4480","H4726"]],[12,14,["H3478"]]]},{"k":14927,"v":[[0,1,["H8033"]],[1,3,["H6810"]],[3,4,["H1144"]],[4,7,["H7287"]],[7,9,["H8269"]],[9,11,["H3063"]],[11,14,["H7277"]],[14,16,["H8269"]],[16,18,["H2074"]],[18,21,["H8269"]],[21,23,["H5321"]]]},{"k":14928,"v":[[0,2,["H430"]],[2,4,["H6680"]],[4,6,["H5797"]],[6,7,["H5810"]],[7,9,["H430"]],[9,11,["H2098"]],[11,14,["H6466"]],[14,16,[]]]},{"k":14929,"v":[[0,4,["H4480","H1964"]],[4,5,["H5921"]],[5,6,["H3389"]],[6,8,["H4428"]],[8,9,["H2986"]],[9,10,["H7862"]],[10,12,[]]]},{"k":14930,"v":[[0,1,["H1605"]],[1,3,["H2416"]],[3,5,["H7070"]],[5,7,["H5712"]],[7,10,["H47"]],[10,13,["H5695"]],[13,16,["H5971"]],[16,21,["H7511"]],[21,23,["H7518"]],[23,25,["H3701"]],[25,26,["H967"]],[26,29,["H5971"]],[29,31,["H2654"]],[31,33,["H7128"]]]},{"k":14931,"v":[[0,1,["H2831"]],[1,4,["H857"]],[4,5,["H4480"]],[5,6,["H4714"]],[6,7,["H3568"]],[7,11,["H7323"]],[11,13,["H3027"]],[13,15,["H430"]]]},{"k":14932,"v":[[0,1,["H7891"]],[1,3,["H430"]],[3,5,["H4467"]],[5,8,["H776"]],[8,11,["H2167"]],[11,14,["H136"]],[14,15,["H5542"]]]},{"k":14933,"v":[[0,4,["H7392"]],[4,7,["H8064"]],[7,9,["H8064"]],[9,13,["H6924"]],[13,14,["H2005"]],[14,18,["H5414"]],[18,20,["H6963"]],[20,24,["H5797"]],[24,25,["H6963"]]]},{"k":14934,"v":[[0,1,["H5414"]],[1,3,["H5797"]],[3,5,["H430"]],[5,7,["H1346"]],[7,9,["H5921"]],[9,10,["H3478"]],[10,13,["H5797"]],[13,17,["H7834"]]]},{"k":14935,"v":[[0,2,["H430"]],[2,5,["H3372"]],[5,10,["H4480","H4720"]],[10,12,["H410"]],[12,14,["H3478"]],[14,16,["H1931"]],[16,18,["H5414"]],[18,19,["H5797"]],[19,21,["H8592"]],[21,24,["H5971"]],[24,25,["H1288"]],[25,27,["H430"]]]},{"k":14936,"v":[[0,1,["H3467"]],[1,4,["H430"]],[4,5,["H3588"]],[5,7,["H4325"]],[7,10,["H935"]],[10,11,["H5704"]],[11,13,["H5315"]]]},{"k":14937,"v":[[0,2,["H2883"]],[2,4,["H4688"]],[4,5,["H3121"]],[5,9,["H369"]],[9,10,["H4613"]],[10,13,["H935"]],[13,15,["H4615"]],[15,16,["H4325"]],[16,19,["H7641"]],[19,20,["H7857"]],[20,21,[]]]},{"k":14938,"v":[[0,3,["H3021"]],[3,6,["H7121"]],[6,8,["H1627"]],[8,10,["H2787"]],[10,12,["H5869"]],[12,13,["H3615"]],[13,16,["H3176"]],[16,19,["H430"]]]},{"k":14939,"v":[[0,3,["H8130"]],[3,7,["H2600"]],[7,9,["H7231"]],[9,12,["H4480","H8185"]],[12,15,["H7218"]],[15,19,["H6789"]],[19,23,["H341"]],[23,24,["H8267"]],[24,26,["H6105"]],[26,27,["H227"]],[27,29,["H7725"]],[29,31,["H834"]],[31,35,["H3808","H1497"]]]},{"k":14940,"v":[[0,2,["H430"]],[2,3,["H859"]],[3,4,["H3045"]],[4,6,["H200"]],[6,9,["H819"]],[9,11,["H3808"]],[11,12,["H3582"]],[12,13,["H4480"]],[13,14,[]]]},{"k":14941,"v":[[0,2,["H408"]],[2,6,["H6960"]],[6,9,["H136"]],[9,10,["H3069"]],[10,12,["H6635"]],[12,14,["H954"]],[14,19,["H408"]],[19,22,["H1245"]],[22,25,["H3637"]],[25,30,["H430"]],[30,32,["H3478"]]]},{"k":14942,"v":[[0,1,["H3588"]],[1,4,["H5921"]],[4,7,["H5375"]],[7,8,["H2781"]],[8,9,["H3639"]],[9,11,["H3680"]],[11,13,["H6440"]]]},{"k":14943,"v":[[0,3,["H1961"]],[3,5,["H2114"]],[5,8,["H251"]],[8,11,["H5237"]],[11,14,["H517"]],[14,15,["H1121"]]]},{"k":14944,"v":[[0,1,["H3588"]],[1,3,["H7068"]],[3,6,["H1004"]],[6,10,["H398"]],[10,13,["H2781"]],[13,17,["H2778"]],[17,20,["H5307"]],[20,21,["H5921"]],[21,22,[]]]},{"k":14945,"v":[[0,3,["H1058"]],[3,7,["H5315"]],[7,9,["H6685"]],[9,11,["H1961"]],[11,14,["H2781"]]]},{"k":14946,"v":[[0,2,["H5414"]],[2,3,["H8242"]],[3,6,["H3830"]],[6,9,["H1961"]],[9,11,["H4912"]],[11,13,[]]]},{"k":14947,"v":[[0,3,["H3427"]],[3,6,["H8179"]],[6,7,["H7878"]],[7,14,["H5058"]],[14,17,["H8354","H7941"]]]},{"k":14948,"v":[[0,4,["H589"]],[4,6,["H8605"]],[6,11,["H3068"]],[11,14,["H7522"]],[14,15,["H6256"]],[15,17,["H430"]],[17,20,["H7230"]],[20,23,["H2617"]],[23,24,["H6030"]],[24,28,["H571"]],[28,31,["H3468"]]]},{"k":14949,"v":[[0,1,["H5337"]],[1,6,["H4480","H2916"]],[6,10,["H408"]],[10,11,["H2883"]],[11,15,["H5337"]],[15,19,["H4480","H8130"]],[19,25,["H4480","H4615"]],[25,26,["H4325"]]]},{"k":14950,"v":[[0,2,["H408"]],[2,4,["H7641","H4325"]],[4,5,["H7857"]],[5,7,["H408"]],[7,10,["H4688"]],[10,13,["H1104"]],[13,16,["H408"]],[16,18,["H875"]],[18,19,["H332"]],[19,21,["H6310"]],[21,22,["H5921"]],[22,23,[]]]},{"k":14951,"v":[[0,1,["H6030"]],[1,4,["H3068"]],[4,5,["H3588"]],[5,7,["H2617"]],[7,9,["H2896"]],[9,10,["H6437"]],[10,11,["H413"]],[11,16,["H7230"]],[16,20,["H7356"]]]},{"k":14952,"v":[[0,2,["H5641"]],[2,3,["H408"]],[3,5,["H6440"]],[5,8,["H4480","H5650"]],[8,9,["H3588"]],[9,13,["H6862"]],[13,14,["H6030"]],[14,16,["H4116"]]]},{"k":14953,"v":[[0,2,["H7126"]],[2,3,["H413"]],[3,5,["H5315"]],[5,7,["H1350"]],[7,9,["H6299"]],[9,12,["H4616"]],[12,14,["H341"]]]},{"k":14954,"v":[[0,1,["H859"]],[1,3,["H3045"]],[3,5,["H2781"]],[5,8,["H1322"]],[8,11,["H3639"]],[11,13,["H6887"]],[13,15,["H3605"]],[15,16,["H5048"]],[16,17,[]]]},{"k":14955,"v":[[0,1,["H2781"]],[1,3,["H7665"]],[3,5,["H3820"]],[5,11,["H5136"]],[11,14,["H6960"]],[14,19,["H5110"]],[19,23,["H369"]],[23,26,["H5162"]],[26,29,["H4672"]],[29,30,["H3808"]]]},{"k":14956,"v":[[0,2,["H5414"]],[2,5,["H7219"]],[5,8,["H1267"]],[8,12,["H6772"]],[12,16,["H2558"]],[16,18,["H8248"]]]},{"k":14957,"v":[[0,3,["H7979"]],[3,4,["H1961"]],[4,6,["H6341"]],[6,7,["H6440"]],[7,17,["H7965"]],[17,22,["H4170"]]]},{"k":14958,"v":[[0,3,["H5869"]],[3,5,["H2821"]],[5,9,["H4480","H7200"]],[9,13,["H4975"]],[13,14,["H8548"]],[14,16,["H4571"]]]},{"k":14959,"v":[[0,2,["H8210"]],[2,4,["H2195"]],[4,5,["H5921"]],[5,10,["H2740"]],[10,11,["H639"]],[11,13,["H5381"]],[13,15,[]]]},{"k":14960,"v":[[0,3,["H2918"]],[3,4,["H1961"]],[4,5,["H8074"]],[5,7,["H1961"]],[7,8,["H408"]],[8,9,["H3427"]],[9,12,["H168"]]]},{"k":14961,"v":[[0,1,["H3588"]],[1,3,["H7291"]],[3,5,["H834"]],[5,6,["H859"]],[6,8,["H5221"]],[8,11,["H5608"]],[11,12,["H413"]],[12,14,["H4341"]],[14,20,["H2491"]]]},{"k":14962,"v":[[0,1,["H5414"]],[1,2,["H5771"]],[2,3,["H5921"]],[3,5,["H5771"]],[5,9,["H408"]],[9,10,["H935"]],[10,13,["H6666"]]]},{"k":14963,"v":[[0,4,["H4229"]],[4,8,["H4480","H5612"]],[8,11,["H2416"]],[11,13,["H408"]],[13,15,["H3789"]],[15,16,["H5973"]],[16,18,["H6662"]]]},{"k":14964,"v":[[0,2,["H589"]],[2,4,["H6041"]],[4,6,["H3510"]],[6,9,["H3444"]],[9,11,["H430"]],[11,16,["H7682"]]]},{"k":14965,"v":[[0,3,["H1984"]],[3,5,["H8034"]],[5,7,["H430"]],[7,10,["H7892"]],[10,13,["H1431"]],[13,16,["H8426"]]]},{"k":14966,"v":[[0,4,["H3190"]],[4,6,["H3068"]],[6,10,["H4480","H7794"]],[10,12,["H6499"]],[12,15,["H7160"]],[15,17,["H6536"]]]},{"k":14967,"v":[[0,2,["H6035"]],[2,4,["H7200"]],[4,8,["H8055"]],[8,11,["H3824"]],[11,13,["H2421"]],[13,15,["H1875"]],[15,16,["H430"]]]},{"k":14968,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,4,["H8085","H413"]],[4,6,["H34"]],[6,8,["H959"]],[8,9,["H3808"]],[9,11,["H615"]]]},{"k":14969,"v":[[0,3,["H8064"]],[3,5,["H776"]],[5,6,["H1984"]],[6,9,["H3220"]],[9,12,["H3605"]],[12,14,["H7430"]],[14,15,[]]]},{"k":14970,"v":[[0,1,["H3588"]],[1,2,["H430"]],[2,4,["H3467"]],[4,5,["H6726"]],[5,8,["H1129"]],[8,10,["H5892"]],[10,12,["H3063"]],[12,16,["H3427"]],[16,17,["H8033"]],[17,22,["H3423"]]]},{"k":14971,"v":[[0,2,["H2233"]],[2,6,["H5650"]],[6,8,["H5157"]],[8,13,["H157"]],[13,15,["H8034"]],[15,17,["H7931"]],[17,18,[]]]},{"k":14972,"v":[[0,4,["H430"]],[4,6,["H5337"]],[6,9,["H2363"]],[9,11,["H5833"]],[11,14,["H3068"]]]},{"k":14973,"v":[[0,4,["H954"]],[4,6,["H2659"]],[6,9,["H1245"]],[9,11,["H5315"]],[11,15,["H5472"]],[15,16,["H268"]],[16,20,["H3637"]],[20,22,["H2655"]],[22,24,["H7451"]]]},{"k":14974,"v":[[0,5,["H7725"]],[5,6,["H5921"]],[6,8,["H6118"]],[8,11,["H1322"]],[11,13,["H559"]],[13,14,["H1889"]],[14,15,["H1889"]]]},{"k":14975,"v":[[0,2,["H3605"]],[2,5,["H1245"]],[5,7,["H7797"]],[7,10,["H8055"]],[10,17,["H157"]],[17,19,["H3444"]],[19,20,["H559"]],[20,21,["H8548"]],[21,23,["H430"]],[23,25,["H1431"]]]},{"k":14976,"v":[[0,2,["H589"]],[2,4,["H6041"]],[4,6,["H34"]],[6,8,["H2363"]],[8,12,["H430"]],[12,13,["H859"]],[13,16,["H5828"]],[16,19,["H6403"]],[19,21,["H3068"]],[21,23,["H408"]],[23,24,["H309"]]]},{"k":14977,"v":[[0,4,["H3068"]],[4,9,["H2620"]],[9,12,["H408","H5769"]],[12,16,["H954"]]]},{"k":14978,"v":[[0,1,["H5337"]],[1,5,["H6666"]],[5,10,["H6403"]],[10,11,["H5186"]],[11,13,["H241"]],[13,14,["H413"]],[14,17,["H3467"]],[17,18,[]]]},{"k":14979,"v":[[0,1,["H1961"]],[1,4,["H6697"]],[4,5,["H4583"]],[5,9,["H8548"]],[9,10,["H935"]],[10,14,["H6680"]],[14,16,["H3467"]],[16,18,["H3588"]],[18,19,["H859"]],[19,22,["H5553"]],[22,25,["H4686"]]]},{"k":14980,"v":[[0,1,["H6403"]],[1,5,["H430"]],[5,9,["H4480","H3027"]],[9,12,["H7563"]],[12,16,["H4480","H3709"]],[16,19,["H5765"]],[19,21,["H2556"]],[21,22,[]]]},{"k":14981,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,5,["H8615"]],[5,7,["H136"]],[7,8,["H3069"]],[8,12,["H4009"]],[12,15,["H4480","H5271"]]]},{"k":14982,"v":[[0,1,["H5921"]],[1,7,["H5564"]],[7,10,["H4480","H990"]],[10,11,["H859"]],[11,15,["H1491"]],[15,20,["H517"]],[20,21,["H4480","H4578"]],[21,23,["H8416"]],[23,26,["H8548"]],[26,28,[]]]},{"k":14983,"v":[[0,2,["H1961"]],[2,5,["H4159"]],[5,7,["H7227"]],[7,9,["H859"]],[9,12,["H5797"]],[12,13,["H4268"]]]},{"k":14984,"v":[[0,3,["H6310"]],[3,5,["H4390"]],[5,8,["H8416"]],[8,12,["H8597"]],[12,13,["H3605"]],[13,15,["H3117"]]]},{"k":14985,"v":[[0,4,["H7993","H408"]],[4,7,["H6256"]],[7,10,["H2209"]],[10,11,["H5800"]],[11,13,["H408"]],[13,16,["H3581"]],[16,17,["H3615"]]]},{"k":14986,"v":[[0,1,["H3588"]],[1,3,["H341"]],[3,4,["H559"]],[4,12,["H8104"]],[12,14,["H5315"]],[14,16,["H3289"]],[16,17,["H3162"]]]},{"k":14987,"v":[[0,1,["H559"]],[1,2,["H430"]],[2,4,["H5800"]],[4,6,["H7291"]],[6,8,["H8610"]],[8,10,["H3588"]],[10,13,["H369"]],[13,15,["H5337"]],[15,16,[]]]},{"k":14988,"v":[[0,2,["H430"]],[2,4,["H408"]],[4,5,["H7368"]],[5,6,["H4480"]],[6,10,["H430"]],[10,12,["H2439"]],[12,15,["H5833"]]]},{"k":14989,"v":[[0,4,["H954"]],[4,6,["H3615"]],[6,9,["H7853"]],[9,12,["H5315"]],[12,16,["H5844"]],[16,18,["H2781"]],[18,20,["H3639"]],[20,22,["H1245"]],[22,24,["H7451"]]]},{"k":14990,"v":[[0,2,["H589"]],[2,4,["H3176"]],[4,5,["H8548"]],[5,9,["H8416"]],[9,13,["H3254"]]]},{"k":14991,"v":[[0,2,["H6310"]],[2,5,["H5608"]],[5,7,["H6666"]],[7,10,["H8668"]],[10,11,["H3605"]],[11,13,["H3117"]],[13,14,["H3588"]],[14,16,["H3045"]],[16,17,["H3808"]],[17,19,["H5615"]],[19,20,[]]]},{"k":14992,"v":[[0,3,["H935"]],[3,6,["H1369"]],[6,9,["H136"]],[9,10,["H3069"]],[10,14,["H2142"]],[14,17,["H6666"]],[17,21,["H905"]]]},{"k":14993,"v":[[0,2,["H430"]],[2,5,["H3925"]],[5,9,["H4480","H5271"]],[9,11,["H5704","H2008"]],[11,14,["H5046"]],[14,17,["H6381"]]]},{"k":14994,"v":[[0,2,["H1571"]],[2,3,["H5704"]],[3,6,["H2209"]],[6,8,["H7872"]],[8,10,["H430"]],[10,11,["H5800"]],[11,13,["H408"]],[13,14,["H5704"]],[14,17,["H5046"]],[17,19,["H2220"]],[19,22,["H1755"]],[22,25,["H1369"]],[25,28,["H3605"]],[28,32,["H935"]]]},{"k":14995,"v":[[0,2,["H6666"]],[2,5,["H430"]],[5,7,["H5704"]],[7,8,["H4791"]],[8,9,["H834"]],[9,11,["H6213"]],[11,13,["H1419"]],[13,15,["H430"]],[15,16,["H4310"]],[16,20,["H3644"]]]},{"k":14996,"v":[[0,2,["H834"]],[2,4,["H7200"]],[4,6,["H7227"]],[6,8,["H7451"]],[8,9,["H6869"]],[9,11,["H2421"]],[11,13,["H7725"]],[13,18,["H5927"]],[18,19,["H7725"]],[19,22,["H4480","H8415"]],[22,25,["H776"]]]},{"k":14997,"v":[[0,3,["H7235"]],[3,5,["H1420"]],[5,7,["H5162"]],[7,11,["H5437"]]]},{"k":14998,"v":[[0,1,["H589"]],[1,3,["H1571"]],[3,4,["H3034"]],[4,8,["H3627","H5035"]],[8,11,["H571"]],[11,14,["H430"]],[14,19,["H2167"]],[19,22,["H3658"]],[22,26,["H6918"]],[26,28,["H3478"]]]},{"k":14999,"v":[[0,2,["H8193"]],[2,5,["H7442"]],[5,6,["H3588"]],[6,8,["H2167"]],[8,13,["H5315"]],[13,14,["H834"]],[14,17,["H6299"]]]},{"k":15000,"v":[[0,2,["H3956"]],[2,3,["H1571"]],[3,5,["H1897"]],[5,8,["H6666"]],[8,9,["H3605"]],[9,11,["H3117"]],[11,13,["H3588"]],[13,16,["H954"]],[16,17,["H3588"]],[17,22,["H2659"]],[22,24,["H1245"]],[24,26,["H7451"]]]},{"k":15001,"v":[[0,1,["H5414"]],[1,3,["H4428"]],[3,5,["H4941"]],[5,7,["H430"]],[7,10,["H6666"]],[10,13,["H4428"]],[13,14,["H1121"]]]},{"k":15002,"v":[[0,3,["H1777"]],[3,5,["H5971"]],[5,7,["H6664"]],[7,10,["H6041"]],[10,12,["H4941"]]]},{"k":15003,"v":[[0,2,["H2022"]],[2,4,["H5375"]],[4,5,["H7965"]],[5,8,["H5971"]],[8,12,["H1389"]],[12,14,["H6666"]]]},{"k":15004,"v":[[0,3,["H8199"]],[3,5,["H6041"]],[5,8,["H5971"]],[8,11,["H3467"]],[11,13,["H1121"]],[13,16,["H34"]],[16,21,["H1792"]],[21,23,["H6231"]]]},{"k":15005,"v":[[0,3,["H3372"]],[3,6,["H5973"]],[6,9,["H8121"]],[9,11,["H3394"]],[11,12,["H6440"]],[12,15,["H1755","H1755"]]]},{"k":15006,"v":[[0,4,["H3381"]],[4,6,["H4306"]],[6,7,["H5921"]],[7,10,["H1488"]],[10,12,["H7241"]],[12,14,["H2222"]],[14,16,["H776"]]]},{"k":15007,"v":[[0,3,["H3117"]],[3,6,["H6662"]],[6,7,["H6524"]],[7,9,["H7230"]],[9,11,["H7965"]],[11,13,["H5704"]],[13,16,["H3394"]],[16,17,["H1097"]]]},{"k":15008,"v":[[0,4,["H7287"]],[4,7,["H4480","H3220"]],[7,8,["H5704"]],[8,9,["H3220"]],[9,13,["H4480","H5104"]],[13,14,["H5704"]],[14,16,["H657"]],[16,19,["H776"]]]},{"k":15009,"v":[[0,6,["H6728"]],[6,8,["H3766"]],[8,9,["H6440"]],[9,13,["H341"]],[13,15,["H3897"]],[15,17,["H6083"]]]},{"k":15010,"v":[[0,2,["H4428"]],[2,4,["H8659"]],[4,8,["H339"]],[8,10,["H7725"]],[10,11,["H4503"]],[11,13,["H4428"]],[13,15,["H7614"]],[15,17,["H5434"]],[17,19,["H7126"]],[19,20,["H814"]]]},{"k":15011,"v":[[0,2,["H3605"]],[2,3,["H4428"]],[3,6,["H7812"]],[6,9,["H3605"]],[9,10,["H1471"]],[10,12,["H5647"]],[12,13,[]]]},{"k":15012,"v":[[0,1,["H3588"]],[1,4,["H5337"]],[4,6,["H34"]],[6,9,["H7768"]],[9,11,["H6041"]],[11,17,["H369"]],[17,18,["H5826"]]]},{"k":15013,"v":[[0,3,["H2347","H5921"]],[3,5,["H1800"]],[5,7,["H34"]],[7,10,["H3467"]],[10,12,["H5315"]],[12,15,["H34"]]]},{"k":15014,"v":[[0,3,["H1350"]],[3,5,["H5315"]],[5,7,["H4480","H8496"]],[7,9,["H4480","H2555"]],[9,11,["H3365"]],[11,14,["H1818"]],[14,18,["H5869"]]]},{"k":15015,"v":[[0,4,["H2421"]],[4,10,["H5414"]],[10,13,["H4480","H2091"]],[13,15,["H7614"]],[15,16,["H6419"]],[16,21,["H1157"]],[21,23,["H8548"]],[23,25,["H3605","H3117"]],[25,29,["H1288"]]]},{"k":15016,"v":[[0,3,["H1961"]],[3,5,["H6451"]],[5,7,["H1250"]],[7,10,["H776"]],[10,13,["H7218"]],[13,16,["H2022"]],[16,18,["H6529"]],[18,21,["H7493"]],[21,23,["H3844"]],[23,28,["H4480","H5892"]],[28,30,["H6692"]],[30,32,["H6212"]],[32,35,["H776"]]]},{"k":15017,"v":[[0,2,["H8034"]],[2,4,["H1961"]],[4,6,["H5769"]],[6,8,["H8034"]],[8,11,["H5125"]],[11,13,["H6440"]],[13,16,["H8121"]],[16,21,["H1288"]],[21,24,["H3605"]],[24,25,["H1471"]],[25,29,["H833"]]]},{"k":15018,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,5,["H430"]],[5,7,["H430"]],[7,9,["H3478"]],[9,11,["H905"]],[11,12,["H6213"]],[12,14,["H6381"]]]},{"k":15019,"v":[[0,2,["H1288"]],[2,5,["H3519"]],[5,6,["H8034"]],[6,8,["H5769"]],[8,10,["(H853)"]],[10,12,["H3605"]],[12,13,["H776"]],[13,15,["H4390"]],[15,18,["H3519"]],[18,19,["H543"]],[19,21,["H543"]]]},{"k":15020,"v":[[0,2,["H8605"]],[2,4,["H1732"]],[4,6,["H1121"]],[6,8,["H3448"]],[8,10,["H3615"]]]},{"k":15021,"v":[[0,1,["H389"]],[1,2,["H430"]],[2,4,["H2896"]],[4,6,["H3478"]],[6,14,["H1249"]],[14,15,["H3824"]]]},{"k":15022,"v":[[0,4,["H589"]],[4,6,["H7272"]],[6,8,["H4592"]],[8,9,["H5186"]],[9,11,["H838"]],[11,14,["H369"]],[14,15,["H8210"]]]},{"k":15023,"v":[[0,1,["H3588"]],[1,4,["H7065"]],[4,7,["H1984"]],[7,10,["H7200"]],[10,12,["H7965"]],[12,15,["H7563"]]]},{"k":15024,"v":[[0,1,["H3588"]],[1,4,["H369"]],[4,5,["H2784"]],[5,8,["H4194"]],[8,11,["H193"]],[11,13,["H1277"]]]},{"k":15025,"v":[[0,3,["H369"]],[3,5,["H5999"]],[5,8,["H582"]],[8,9,["H3808"]],[9,12,["H5060"]],[12,13,["H5973"]],[13,15,["H120"]]]},{"k":15026,"v":[[0,1,["H3651"]],[1,2,["H1346"]],[2,8,["H6059"]],[8,9,["H2555"]],[9,10,["H5848"]],[10,14,["H7897"]]]},{"k":15027,"v":[[0,2,["H5869"]],[2,4,["H3318"]],[4,6,["H4480","H2459"]],[6,9,["H5674"]],[9,11,["H3824"]],[11,13,["H4906"]]]},{"k":15028,"v":[[0,3,["H4167"]],[3,5,["H1696"]],[5,6,["H7451"]],[6,8,["H6233"]],[8,10,["H1696"]],[10,11,["H4480","H4791"]]]},{"k":15029,"v":[[0,2,["H8371"]],[2,4,["H6310"]],[4,7,["H8064"]],[7,10,["H3956"]],[10,11,["H1980"]],[11,14,["H776"]]]},{"k":15030,"v":[[0,1,["H3651"]],[1,3,["H5971"]],[3,4,["H7725"]],[4,5,["H1988"]],[5,7,["H4325"]],[7,10,["H4392"]],[10,14,["H4680"]],[14,16,[]]]},{"k":15031,"v":[[0,3,["H559"]],[3,4,["H349"]],[4,6,["H410"]],[6,7,["H3045"]],[7,10,["H3426"]],[10,11,["H1844"]],[11,15,["H5945"]]]},{"k":15032,"v":[[0,1,["H2009"]],[1,2,["H428"]],[2,5,["H7563"]],[5,7,["H7961"]],[7,10,["H5769"]],[10,12,["H7685"]],[12,14,["H2428"]]]},{"k":15033,"v":[[0,1,["H389"]],[1,4,["H2135"]],[4,6,["H3824"]],[6,8,["H7385"]],[8,10,["H7364"]],[10,12,["H3709"]],[12,14,["H5356"]]]},{"k":15034,"v":[[0,2,["H3605"]],[2,4,["H3117"]],[4,8,["H1961"]],[8,9,["H5060"]],[9,11,["H8433"]],[11,13,["H1242"]]]},{"k":15035,"v":[[0,1,["H518"]],[1,3,["H559"]],[3,6,["H5608"]],[6,7,["H3644"]],[7,8,["H2009"]],[8,11,["H898"]],[11,14,["H1755"]],[14,17,["H1121"]]]},{"k":15036,"v":[[0,3,["H2803"]],[3,5,["H3045"]],[5,6,["H2063"]],[6,7,["H1931"]],[7,10,["H5999"]],[10,11,["H5869"]],[11,12,[]]]},{"k":15037,"v":[[0,1,["H5704"]],[1,3,["H935"]],[3,4,["H413"]],[4,6,["H4720"]],[6,8,["H410"]],[8,10,["H995"]],[10,13,["H319"]]]},{"k":15038,"v":[[0,1,["H389"]],[1,4,["H7896"]],[4,8,["H2513"]],[8,12,["H5307"]],[12,14,["H4876"]]]},{"k":15039,"v":[[0,1,["H349"]],[1,2,["H1961"]],[2,6,["H8047"]],[6,10,["H7281"]],[10,14,["H5486","H8552"]],[14,15,["H4480"]],[15,16,["H1091"]]]},{"k":15040,"v":[[0,3,["H2472"]],[3,6,["H4480","H6974"]],[6,9,["H136"]],[9,12,["H5782"]],[12,15,["H959"]],[15,17,["H6754"]]]},{"k":15041,"v":[[0,1,["H3588"]],[1,3,["H3824"]],[3,5,["H2556"]],[5,9,["H8150"]],[9,12,["H3629"]]]},{"k":15042,"v":[[0,2,["H1198"]],[2,4,["H589"]],[4,6,["H3808","H3045"]],[6,8,["H1961"]],[8,11,["H929"]],[11,12,["H5973"]],[12,13,[]]]},{"k":15043,"v":[[0,2,["H589"]],[2,4,["H8548"]],[4,5,["H5973"]],[5,9,["H270"]],[9,13,["H3225"]],[13,14,["H3027"]]]},{"k":15044,"v":[[0,3,["H5148"]],[3,7,["H6098"]],[7,9,["H310"]],[9,10,["H3947"]],[10,13,["H3519"]]]},{"k":15045,"v":[[0,1,["H4310"]],[1,5,["H8064"]],[5,11,["H3808"]],[11,13,["H776"]],[13,16,["H2654"]],[16,17,["H5973"]],[17,18,[]]]},{"k":15046,"v":[[0,2,["H7607"]],[2,5,["H3824"]],[5,6,["H3615"]],[6,8,["H430"]],[8,11,["H6697"]],[11,14,["H3824"]],[14,17,["H2506"]],[17,19,["H5769"]]]},{"k":15047,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,6,["H7369"]],[6,10,["H6"]],[10,13,["H6789"]],[13,14,["H3605"]],[14,19,["H2181"]],[19,20,["H4480"]],[20,21,[]]]},{"k":15048,"v":[[0,4,["H2896"]],[4,6,["H589"]],[6,9,["H7132"]],[9,11,["H430"]],[11,14,["H7896"]],[14,16,["H4268"]],[16,19,["H136"]],[19,20,["H3069"]],[20,24,["H5608"]],[24,25,["H3605"]],[25,27,["H4399"]]]},{"k":15049,"v":[[0,2,["H430"]],[2,3,["H4100"]],[3,8,["H2186"]],[8,10,["H5331"]],[10,14,["H639"]],[14,15,["H6225"]],[15,18,["H6629"]],[18,21,["H4830"]]]},{"k":15050,"v":[[0,1,["H2142"]],[1,3,["H5712"]],[3,7,["H7069"]],[7,9,["H6924"]],[9,11,["H7626"]],[11,14,["H5159"]],[14,18,["H1350"]],[18,19,["H2088"]],[19,20,["H2022"]],[20,21,["H6726"]],[21,25,["H7931"]]]},{"k":15051,"v":[[0,2,["H7311"]],[2,4,["H6471"]],[4,7,["H5331"]],[7,8,["H4876"]],[8,10,["H3605"]],[10,13,["H341"]],[13,16,["H7489"]],[16,19,["H6944"]]]},{"k":15052,"v":[[0,2,["H6887"]],[2,3,["H7580"]],[3,6,["H7130"]],[6,9,["H4150"]],[9,12,["H7760"]],[12,14,["H226"]],[14,16,["H226"]]]},{"k":15053,"v":[[0,4,["H3045"]],[4,10,["H935","H4605"]],[10,11,["H7134"]],[11,14,["H5442"]],[14,15,["H6086"]]]},{"k":15054,"v":[[0,2,["H6258"]],[2,5,["H1986"]],[5,8,["H6603"]],[8,11,["H3162"]],[11,13,["H3781"]],[13,15,["H3597"]]]},{"k":15055,"v":[[0,3,["H7971"]],[3,4,["H784"]],[4,7,["H4720"]],[7,10,["H2490"]],[10,16,["H4908"]],[16,19,["H8034"]],[19,22,["H776"]]]},{"k":15056,"v":[[0,2,["H559"]],[2,5,["H3820"]],[5,8,["H3238"]],[8,10,["H3162"]],[10,14,["H8313"]],[14,15,["H3605"]],[15,17,["H4150"]],[17,19,["H410"]],[19,22,["H776"]]]},{"k":15057,"v":[[0,2,["H7200"]],[2,3,["H3808"]],[3,5,["H226"]],[5,8,["H369"]],[8,9,["H5750"]],[9,11,["H5030"]],[11,12,["H3808"]],[12,15,["H854"]],[15,19,["H3045"]],[19,21,["H5704","H4100"]]]},{"k":15058,"v":[[0,2,["H430"]],[2,4,["H5704","H4970"]],[4,7,["H6862"]],[7,8,["H2778"]],[8,11,["H341"]],[11,12,["H5006"]],[12,14,["H8034"]],[14,16,["H5331"]]]},{"k":15059,"v":[[0,1,["H4100"]],[1,2,["H7725"]],[2,5,["H3027"]],[5,9,["H3225"]],[9,10,["H3615"]],[10,13,["H4480","H7130"]],[13,15,["H2436"]]]},{"k":15060,"v":[[0,2,["H430"]],[2,5,["H4428"]],[5,7,["H4480","H6924"]],[7,8,["H6466"]],[8,9,["H3444"]],[9,12,["H7130"]],[12,15,["H776"]]]},{"k":15061,"v":[[0,1,["H859"]],[1,3,["H6565"]],[3,5,["H3220"]],[5,8,["H5797"]],[8,10,["H7665"]],[10,12,["H7218"]],[12,15,["H8577"]],[15,16,["H5921"]],[16,18,["H4325"]]]},{"k":15062,"v":[[0,1,["H859"]],[1,2,["H7533"]],[2,4,["H7218"]],[4,6,["H3882"]],[6,10,["H5414"]],[10,14,["H3978"]],[14,17,["H5971"]],[17,20,["H6728"]]]},{"k":15063,"v":[[0,1,["H859"]],[1,3,["H1234"]],[3,5,["H4599"]],[5,8,["H5158"]],[8,9,["H859"]],[9,11,["H3001"]],[11,12,["H386"]],[12,13,["H5104"]]]},{"k":15064,"v":[[0,2,["H3117"]],[2,6,["H3915"]],[6,7,["H637"]],[7,10,["H859"]],[10,12,["H3559"]],[12,14,["H3974"]],[14,17,["H8121"]]]},{"k":15065,"v":[[0,1,["H859"]],[1,3,["H5324"]],[3,4,["H3605"]],[4,6,["H1367"]],[6,9,["H776"]],[9,10,["H859"]],[10,12,["H3335"]],[12,13,["H7019"]],[13,15,["H2779"]]]},{"k":15066,"v":[[0,1,["H2142"]],[1,2,["H2063"]],[2,5,["H341"]],[5,7,["H2778"]],[7,9,["H3068"]],[9,13,["H5036"]],[13,14,["H5971"]],[14,16,["H5006"]],[16,18,["H8034"]]]},{"k":15067,"v":[[0,2,["H5414"]],[2,3,["H408"]],[3,5,["H5315"]],[5,8,["H8449"]],[8,11,["H2416"]],[11,15,["H7911"]],[15,16,["H408"]],[16,18,["H2416"]],[18,21,["H6041"]],[21,23,["H5331"]]]},{"k":15068,"v":[[0,2,["H5027"]],[2,5,["H1285"]],[5,6,["H3588"]],[6,9,["H4285"]],[9,12,["H776"]],[12,14,["H4390"]],[14,17,["H4999"]],[17,19,["H2555"]]]},{"k":15069,"v":[[0,3,["H408"]],[3,5,["H1790"]],[5,6,["H7725"]],[6,7,["H3637"]],[7,10,["H6041"]],[10,12,["H34"]],[12,13,["H1984"]],[13,15,["H8034"]]]},{"k":15070,"v":[[0,1,["H6965"]],[1,3,["H430"]],[3,7,["H7378","H7379"]],[7,8,["H2142"]],[8,9,["H4480"]],[9,12,["H5036"]],[12,13,["H2781"]],[13,15,["H3605","H3117"]]]},{"k":15071,"v":[[0,1,["H7911"]],[1,2,["H408"]],[2,4,["H6963"]],[4,7,["H6887"]],[7,9,["H7588"]],[9,15,["H6965"]],[15,17,["H5927"]],[17,18,["H8548"]]]},{"k":15072,"v":[[0,4,["H430"]],[4,8,["H3034"]],[8,14,["H3034"]],[14,18,["H8034"]],[18,20,["H7138"]],[20,23,["H6381"]],[23,24,["H5608"]]]},{"k":15073,"v":[[0,1,["H3588"]],[1,4,["H3947"]],[4,6,["H4150"]],[6,7,["H589"]],[7,9,["H8199"]],[9,10,["H4339"]]]},{"k":15074,"v":[[0,2,["H776"]],[2,4,["H3605"]],[4,6,["H3427"]],[6,9,["H4127"]],[9,10,["H595"]],[10,12,["H8505"]],[12,14,["H5982"]],[14,17,["H5542"]]]},{"k":15075,"v":[[0,2,["H559"]],[2,5,["H1984"]],[5,8,["H408","H1984"]],[8,12,["H7563"]],[12,15,["H7311","H408"]],[15,17,["H7161"]]]},{"k":15076,"v":[[0,3,["H7311","H408"]],[3,5,["H7161"]],[5,7,["H4791"]],[7,8,["H1696"]],[8,12,["H6277"]],[12,13,["H6677"]]]},{"k":15077,"v":[[0,1,["H3588"]],[1,2,["H7311"]],[2,4,["H3808"]],[4,7,["H4480","H4161"]],[7,11,["H4480","H4628"]],[11,12,["H3808"]],[12,15,["H4480","H4057"]]]},{"k":15078,"v":[[0,1,["H3588"]],[1,2,["H430"]],[2,5,["H8199"]],[5,8,["H8213"]],[8,9,["H2088"]],[9,11,["H7311"]],[11,13,["H2088"]]]},{"k":15079,"v":[[0,1,["H3588"]],[1,4,["H3027"]],[4,7,["H3068"]],[7,11,["H3563"]],[11,14,["H3196"]],[14,16,["H2560"]],[16,19,["H4392"]],[19,21,["H4538"]],[21,25,["H5064"]],[25,28,["H4480","H2088"]],[28,29,["H389"]],[29,31,["H8105"]],[31,33,["H3605"]],[33,35,["H7563"]],[35,38,["H776"]],[38,42,["H4680"]],[42,44,["H8354"]],[44,45,[]]]},{"k":15080,"v":[[0,2,["H589"]],[2,4,["H5046"]],[4,6,["H5769"]],[6,10,["H2167"]],[10,13,["H430"]],[13,15,["H3290"]]]},{"k":15081,"v":[[0,1,["H3605"]],[1,3,["H7161"]],[3,6,["H7563"]],[6,11,["H1438"]],[11,14,["H7161"]],[14,17,["H6662"]],[17,20,["H7311"]]]},{"k":15082,"v":[[0,2,["H3063"]],[2,4,["H430"]],[4,5,["H3045"]],[5,7,["H8034"]],[7,9,["H1419"]],[9,11,["H3478"]]]},{"k":15083,"v":[[0,2,["H8004"]],[2,4,["H1961"]],[4,6,["H5520"]],[6,10,["H4585"]],[10,12,["H6726"]]]},{"k":15084,"v":[[0,1,["H8033"]],[1,2,["H7665"]],[2,5,["H7565"]],[5,8,["H7198"]],[8,10,["H4043"]],[10,13,["H2719"]],[13,16,["H4421"]],[16,17,["H5542"]]]},{"k":15085,"v":[[0,1,["H859"]],[1,4,["H215"]],[4,6,["H117"]],[6,9,["H4480","H2042"]],[9,11,["H2964"]]]},{"k":15086,"v":[[0,2,["H47","H3820"]],[2,4,["H7997"]],[4,7,["H5123"]],[7,9,["H8142"]],[9,11,["H3808","H3605"]],[11,14,["H376"]],[14,16,["H2428"]],[16,18,["H4672"]],[18,20,["H3027"]]]},{"k":15087,"v":[[0,3,["H4480","H1606"]],[3,5,["H430"]],[5,7,["H3290"]],[7,10,["H7393"]],[10,12,["H5483"]],[12,18,["H7290"]]]},{"k":15088,"v":[[0,1,["H859"]],[1,3,["H859"]],[3,7,["H3372"]],[7,9,["H4310"]],[9,11,["H5975"]],[11,14,["H6440"]],[14,16,["H4480","H227"]],[16,19,["H639"]]]},{"k":15089,"v":[[0,4,["H1779"]],[4,7,["H8085"]],[7,8,["H4480"]],[8,9,["H8064"]],[9,11,["H776"]],[11,12,["H3372"]],[12,15,["H8252"]]]},{"k":15090,"v":[[0,2,["H430"]],[2,3,["H6965"]],[3,5,["H4941"]],[5,7,["H3467"]],[7,8,["H3605"]],[8,10,["H6035"]],[10,13,["H776"]],[13,14,["H5542"]]]},{"k":15091,"v":[[0,1,["H3588"]],[1,3,["H2534"]],[3,5,["H120"]],[5,7,["H3034"]],[7,10,["H7611"]],[10,12,["H2534"]],[12,15,["H2296"]]]},{"k":15092,"v":[[0,1,["H5087"]],[1,3,["H7999"]],[3,6,["H3068"]],[6,8,["H430"]],[8,10,["H3605"]],[10,14,["H5439"]],[14,16,["H2986"]],[16,17,["H7862"]],[17,24,["H4172"]]]},{"k":15093,"v":[[0,4,["H1219"]],[4,6,["H7307"]],[6,8,["H5057"]],[8,11,["H3372"]],[11,14,["H4428"]],[14,17,["H776"]]]},{"k":15094,"v":[[0,2,["H6817"]],[2,3,["H413"]],[3,4,["H430"]],[4,7,["H6963"]],[7,9,["H413"]],[9,10,["H430"]],[10,13,["H6963"]],[13,17,["H238"]],[17,18,["H413"]],[18,19,[]]]},{"k":15095,"v":[[0,3,["H3117"]],[3,6,["H6869"]],[6,8,["H1875"]],[8,10,["H136"]],[10,12,["H3027"]],[12,13,["H5064"]],[13,16,["H3915"]],[16,18,["H6313"]],[18,19,["H3808"]],[19,21,["H5315"]],[21,22,["H3985"]],[22,25,["H5162"]]]},{"k":15096,"v":[[0,2,["H2142"]],[2,3,["H430"]],[3,6,["H1993"]],[6,8,["H7878"]],[8,11,["H7307"]],[11,13,["H5848"]],[13,14,["H5542"]]]},{"k":15097,"v":[[0,2,["H270"]],[2,4,["H5869"]],[4,5,["H8109"]],[5,9,["H6470"]],[9,12,["H3808"]],[12,13,["H1696"]]]},{"k":15098,"v":[[0,3,["H2803"]],[3,5,["H3117"]],[5,7,["H4480","H6924"]],[7,9,["H8141"]],[9,12,["H5769"]]]},{"k":15099,"v":[[0,4,["H2142"]],[4,6,["H5058"]],[6,9,["H3915"]],[9,11,["H7878"]],[11,12,["H5973"]],[12,15,["H3824"]],[15,18,["H7307"]],[18,21,["H2664"]]]},{"k":15100,"v":[[0,3,["H136"]],[3,5,["H2186"]],[5,7,["H5769"]],[7,12,["H7521"]],[12,13,["H3808"]],[13,14,["H3254","H5750"]]]},{"k":15101,"v":[[0,3,["H2617"]],[3,5,["H656"]],[5,7,["H5331"]],[7,10,["H562"]],[10,11,["H1584"]],[11,13,["H1755","H1755"]]]},{"k":15102,"v":[[0,2,["H410"]],[2,3,["H7911"]],[3,6,["H2589"]],[6,10,["H639"]],[10,12,["H7092"]],[12,15,["H7356"]],[15,16,["H5542"]]]},{"k":15103,"v":[[0,3,["H559"]],[3,4,["H1931"]],[4,7,["H2470"]],[7,13,["H8141"]],[13,17,["H3225"]],[17,21,["H5945"]]]},{"k":15104,"v":[[0,3,["H2142"]],[3,5,["H4611"]],[5,8,["H3050"]],[8,9,["H3588"]],[9,12,["H2142"]],[12,14,["H6382"]],[14,16,["H4480","H6924"]]]},{"k":15105,"v":[[0,3,["H1897"]],[3,6,["H3605"]],[6,8,["H6467"]],[8,10,["H7878"]],[10,13,["H5949"]]]},{"k":15106,"v":[[0,2,["H1870"]],[2,4,["H430"]],[4,8,["H6944"]],[8,9,["H4310"]],[9,12,["H1419"]],[12,14,["H410"]],[14,17,["H430"]]]},{"k":15107,"v":[[0,1,["H859"]],[1,4,["H410"]],[4,6,["H6213"]],[6,7,["H6382"]],[7,10,["H3045"]],[10,12,["H5797"]],[12,15,["H5971"]]]},{"k":15108,"v":[[0,5,["H2220"]],[5,6,["H1350"]],[6,8,["H5971"]],[8,10,["H1121"]],[10,12,["H3290"]],[12,14,["H3130"]],[14,15,["H5542"]]]},{"k":15109,"v":[[0,2,["H4325"]],[2,3,["H7200"]],[3,6,["H430"]],[6,8,["H4325"]],[8,9,["H7200"]],[9,13,["H2342"]],[13,15,["H8415"]],[15,16,["H637"]],[16,18,["H7264"]]]},{"k":15110,"v":[[0,2,["H5645"]],[2,4,["H2229"]],[4,5,["H4325"]],[5,7,["H7834"]],[7,9,["H5414"]],[9,11,["H6963"]],[11,13,["H2671"]],[13,14,["H637"]],[14,16,["H1980"]]]},{"k":15111,"v":[[0,2,["H6963"]],[2,5,["H7482"]],[5,9,["H1534"]],[9,11,["H1300"]],[11,12,["H215"]],[12,14,["H8398"]],[14,16,["H776"]],[16,17,["H7264"]],[17,19,["H7493"]]]},{"k":15112,"v":[[0,2,["H1870"]],[2,6,["H3220"]],[6,9,["H7635"]],[9,12,["H7227"]],[12,13,["H4325"]],[13,16,["H6119"]],[16,18,["H3808"]],[18,19,["H3045"]]]},{"k":15113,"v":[[0,2,["H5148"]],[2,4,["H5971"]],[4,7,["H6629"]],[7,10,["H3027"]],[10,12,["H4872"]],[12,14,["H175"]]]},{"k":15114,"v":[[0,2,["H238"]],[2,5,["H5971"]],[5,8,["H8451"]],[8,9,["H5186"]],[9,11,["H241"]],[11,14,["H561"]],[14,17,["H6310"]]]},{"k":15115,"v":[[0,3,["H6605"]],[3,5,["H6310"]],[5,8,["H4912"]],[8,11,["H5042"]],[11,13,["H2420"]],[13,14,["H4480"]],[14,15,["H6924"]]]},{"k":15116,"v":[[0,1,["H834"]],[1,4,["H8085"]],[4,6,["H3045"]],[6,9,["H1"]],[9,11,["H5608"]],[11,12,[]]]},{"k":15117,"v":[[0,3,["H3808"]],[3,4,["H3582"]],[4,8,["H4480","H1121"]],[8,9,["H5608"]],[9,12,["H1755"]],[12,14,["H314"]],[14,16,["H8416"]],[16,19,["H3068"]],[19,22,["H5807"]],[22,26,["H6381"]],[26,27,["H834"]],[27,30,["H6213"]]]},{"k":15118,"v":[[0,3,["H6965"]],[3,5,["H5715"]],[5,7,["H3290"]],[7,9,["H7760"]],[9,11,["H8451"]],[11,13,["H3478"]],[13,14,["H834"]],[14,16,["H6680","(H853)"]],[16,18,["H1"]],[18,24,["H3045"]],[24,27,["H1121"]]]},{"k":15119,"v":[[0,1,["H4616"]],[1,3,["H1755"]],[3,5,["H314"]],[5,7,["H3045"]],[7,11,["H1121"]],[11,15,["H3205"]],[15,18,["H6965"]],[18,20,["H5608"]],[20,24,["H1121"]]]},{"k":15120,"v":[[0,4,["H7760"]],[4,6,["H3689"]],[6,8,["H430"]],[8,10,["H3808"]],[10,11,["H7911"]],[11,13,["H4611"]],[13,15,["H410"]],[15,17,["H5341"]],[17,19,["H4687"]]]},{"k":15121,"v":[[0,3,["H3808"]],[3,4,["H1961"]],[4,7,["H1"]],[7,9,["H5637"]],[9,11,["H4784"]],[11,12,["H1755"]],[12,14,["H1755"]],[14,20,["H3559","H3808","H3820"]],[20,23,["H7307"]],[23,25,["H3808"]],[25,26,["H539"]],[26,27,["H854"]],[27,28,["H410"]]]},{"k":15122,"v":[[0,2,["H1121"]],[2,4,["H669"]],[4,6,["H5401"]],[6,8,["H7411"]],[8,9,["H7198"]],[9,11,["H2015"]],[11,14,["H3117"]],[14,16,["H7128"]]]},{"k":15123,"v":[[0,2,["H8104"]],[2,3,["H3808"]],[3,5,["H1285"]],[5,7,["H430"]],[7,9,["H3985"]],[9,11,["H1980"]],[11,14,["H8451"]]]},{"k":15124,"v":[[0,2,["H7911"]],[2,4,["H5949"]],[4,7,["H6381"]],[7,8,["H834"]],[8,11,["H7200"]],[11,12,[]]]},{"k":15125,"v":[[0,2,["H6382"]],[2,3,["H6213"]],[3,7,["H5048"]],[7,10,["H1"]],[10,13,["H776"]],[13,15,["H4714"]],[15,18,["H7704"]],[18,20,["H6814"]]]},{"k":15126,"v":[[0,2,["H1234"]],[2,4,["H3220"]],[4,10,["H5674"]],[10,15,["H4325"]],[15,17,["H5324"]],[17,18,["H3644"]],[18,20,["H5067"]]]},{"k":15127,"v":[[0,3,["H3119"]],[3,6,["H5148"]],[6,10,["H6051"]],[10,12,["H3605"]],[12,14,["H3915"]],[14,17,["H216"]],[17,19,["H784"]]]},{"k":15128,"v":[[0,2,["H1234"]],[2,4,["H6697"]],[4,7,["H4057"]],[7,11,["H8248"]],[11,16,["H7227"]],[16,17,["H8415"]]]},{"k":15129,"v":[[0,5,["H3318","H5140"]],[5,8,["H4480","H5553"]],[8,11,["H4325"]],[11,14,["H3381"]],[14,16,["H5104"]]]},{"k":15130,"v":[[0,3,["H2398"]],[3,4,["H5750"]],[4,5,["H3254"]],[5,9,["H4784"]],[9,12,["H5945"]],[12,15,["H6723"]]]},{"k":15131,"v":[[0,3,["H5254"]],[3,4,["H410"]],[4,7,["H3824"]],[7,9,["H7592"]],[9,10,["H400"]],[10,13,["H5315"]]]},{"k":15132,"v":[[0,3,["H1696"]],[3,5,["H430"]],[5,7,["H559"]],[7,8,["H3201"]],[8,9,["H410"]],[9,10,["H6186"]],[10,12,["H7979"]],[12,15,["H4057"]]]},{"k":15133,"v":[[0,1,["H2005"]],[1,3,["H5221"]],[3,5,["H6697"]],[5,8,["H4325"]],[8,10,["H2100"]],[10,13,["H5158"]],[13,14,["H7857"]],[14,15,["H3201"]],[15,17,["H5414"]],[17,18,["H3899"]],[18,19,["H1571"]],[19,22,["H3559"]],[22,23,["H7607"]],[23,26,["H5971"]]]},{"k":15134,"v":[[0,1,["H3651"]],[1,3,["H3068"]],[3,4,["H8085"]],[4,8,["H5674"]],[8,11,["H784"]],[11,13,["H5400"]],[13,15,["H3290"]],[15,17,["H639"]],[17,18,["H1571"]],[18,20,["H5927"]],[20,22,["H3478"]]]},{"k":15135,"v":[[0,1,["H3588"]],[1,3,["H539"]],[3,4,["H3808"]],[4,6,["H430"]],[6,8,["H982"]],[8,9,["H3808"]],[9,12,["H3444"]]]},{"k":15136,"v":[[0,4,["H6680"]],[4,6,["H7834"]],[6,8,["H4480","H4605"]],[8,10,["H6605"]],[10,12,["H1817"]],[12,14,["H8064"]]]},{"k":15137,"v":[[0,4,["H4305"]],[4,5,["H4478"]],[5,6,["H5921"]],[6,9,["H398"]],[9,12,["H5414"]],[12,16,["H1715"]],[16,18,["H8064"]]]},{"k":15138,"v":[[0,1,["H376"]],[1,3,["H398"]],[3,4,["H47"]],[4,5,["H3899"]],[5,7,["H7971"]],[7,9,["H6720"]],[9,12,["H7648"]]]},{"k":15139,"v":[[0,5,["H6921"]],[5,7,["H5265"]],[7,10,["H8064"]],[10,14,["H5797"]],[14,16,["H5090"]],[16,20,["H8486"]]]},{"k":15140,"v":[[0,2,["H4305"]],[2,3,["H7607"]],[3,5,["H5921"]],[5,8,["H6083"]],[8,10,["H3671"]],[10,11,["H5775"]],[11,15,["H2344"]],[15,18,["H3220"]]]},{"k":15141,"v":[[0,5,["H5307"]],[5,8,["H7130"]],[8,11,["H4264"]],[11,13,["H5439"]],[13,15,["H4908"]]]},{"k":15142,"v":[[0,4,["H398"]],[4,7,["H3966"]],[7,8,["H7646"]],[8,11,["H935"]],[11,15,["H8378"]]]},{"k":15143,"v":[[0,3,["H3808"]],[3,4,["H2114"]],[4,7,["H4480","H8378"]],[7,11,["H400"]],[11,13,["H5750"]],[13,16,["H6310"]]]},{"k":15144,"v":[[0,2,["H639"]],[2,4,["H430"]],[4,5,["H5927"]],[5,9,["H2026"]],[9,11,["H4924"]],[11,16,["H3766"]],[16,18,["H970"]],[18,21,["H3478"]]]},{"k":15145,"v":[[0,2,["H3605"]],[2,3,["H2063"]],[3,5,["H2398"]],[5,6,["H5750"]],[6,8,["H539"]],[8,9,["H3808"]],[9,13,["H6381"]]]},{"k":15146,"v":[[0,3,["H3117"]],[3,6,["H3615"]],[6,8,["H1892"]],[8,11,["H8141"]],[11,13,["H928"]]]},{"k":15147,"v":[[0,1,["H518"]],[1,3,["H2026"]],[3,7,["H1875"]],[7,11,["H7725"]],[11,14,["H7836"]],[14,16,["H410"]]]},{"k":15148,"v":[[0,3,["H2142"]],[3,4,["H3588"]],[4,5,["H430"]],[5,8,["H6697"]],[8,11,["H5945"]],[11,12,["H410"]],[12,14,["H1350"]]]},{"k":15149,"v":[[0,4,["H6601"]],[4,8,["H6310"]],[8,11,["H3576"]],[11,16,["H3956"]]]},{"k":15150,"v":[[0,3,["H3820"]],[3,6,["H3808","H3559"]],[6,7,["H5973"]],[7,9,["H3808"]],[9,12,["H539"]],[12,15,["H1285"]]]},{"k":15151,"v":[[0,2,["H1931"]],[2,6,["H7349"]],[6,7,["H3722"]],[7,9,["H5771"]],[9,11,["H7843"]],[11,13,["H3808"]],[13,15,["H7235"]],[15,22,["H639","H7725"]],[22,25,["H3808"]],[25,27,["H5782"]],[27,28,["H3605"]],[28,30,["H2534"]]]},{"k":15152,"v":[[0,3,["H2142"]],[3,4,["H3588"]],[4,5,["H1992"]],[5,8,["H1320"]],[8,10,["H7307"]],[10,13,["H1980"]],[13,17,["H3808","H7725"]]]},{"k":15153,"v":[[0,2,["H4100"]],[2,5,["H4784"]],[5,9,["H4057"]],[9,11,["H6087"]],[11,15,["H3452"]]]},{"k":15154,"v":[[0,4,["H7725"]],[4,6,["H5254"]],[6,7,["H410"]],[7,9,["H8428"]],[9,12,["H6918"]],[12,14,["H3478"]]]},{"k":15155,"v":[[0,2,["H2142"]],[2,3,["H3808","(H853)"]],[3,5,["H3027"]],[5,8,["H3117"]],[8,9,["H834"]],[9,11,["H6299"]],[11,13,["H4480"]],[13,15,["H6862"]]]},{"k":15156,"v":[[0,1,["H834"]],[1,4,["H7760"]],[4,6,["H226"]],[6,8,["H4714"]],[8,11,["H4159"]],[11,14,["H7704"]],[14,16,["H6814"]]]},{"k":15157,"v":[[0,3,["H2015"]],[3,5,["H2975"]],[5,7,["H1818"]],[7,10,["H5140"]],[10,14,["H1077"]],[14,15,["H8354"]]]},{"k":15158,"v":[[0,2,["H7971"]],[2,6,["H6157"]],[6,10,["H398"]],[10,13,["H6854"]],[13,15,["H7843"]],[15,16,[]]]},{"k":15159,"v":[[0,2,["H5414"]],[2,5,["H2981"]],[5,8,["H2625"]],[8,11,["H3018"]],[11,14,["H697"]]]},{"k":15160,"v":[[0,2,["H2026"]],[2,4,["H1612"]],[4,6,["H1259"]],[6,10,["H8256"]],[10,12,["H2602"]]]},{"k":15161,"v":[[0,3,["H5462"]],[3,5,["H1165"]],[5,9,["H1259"]],[9,12,["H4735"]],[12,15,["H7565"]]]},{"k":15162,"v":[[0,2,["H7971"]],[2,6,["H2740"]],[6,9,["H639"]],[9,10,["H5678"]],[10,12,["H2195"]],[12,14,["H6869"]],[14,16,["H4917"]],[16,17,["H7451"]],[17,18,["H4397"]],[18,20,[]]]},{"k":15163,"v":[[0,2,["H6424"]],[2,4,["H5410"]],[4,7,["H639"]],[7,9,["H2820"]],[9,10,["H3808"]],[10,12,["H5315"]],[12,14,["H4480","H4194"]],[14,16,["H5462"]],[16,18,["H2416"]],[18,22,["H1698"]]]},{"k":15164,"v":[[0,2,["H5221"]],[2,3,["H3605"]],[3,5,["H1060"]],[5,7,["H4714"]],[7,9,["H7225"]],[9,12,["H202"]],[12,15,["H168"]],[15,17,["H2526"]]]},{"k":15165,"v":[[0,5,["H5971"]],[5,8,["H5265"]],[8,10,["H6629"]],[10,12,["H5090"]],[12,16,["H4057"]],[16,19,["H5739"]]]},{"k":15166,"v":[[0,3,["H5148"]],[3,6,["H983"]],[6,10,["H6342"]],[10,11,["H3808"]],[11,14,["H3220"]],[14,15,["H3680"]],[15,17,["H341"]]]},{"k":15167,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H1366"]],[7,10,["H6944"]],[10,13,["H2088"]],[13,14,["H2022"]],[14,18,["H3225"]],[18,20,["H7069"]]]},{"k":15168,"v":[[0,3,["H1644"]],[3,5,["H1471"]],[5,7,["H4480","H6440"]],[7,10,["H5307"]],[10,13,["H5159"]],[13,15,["H2256"]],[15,19,["H7626"]],[19,21,["H3478"]],[21,23,["H7931"]],[23,26,["H168"]]]},{"k":15169,"v":[[0,3,["H5254"]],[3,5,["H4784","(H853)"]],[5,8,["H5945"]],[8,9,["H430"]],[9,11,["H8104"]],[11,12,["H3808"]],[12,14,["H5713"]]]},{"k":15170,"v":[[0,3,["H5472"]],[3,6,["H898"]],[6,9,["H1"]],[9,13,["H2015"]],[13,16,["H7423"]],[16,17,["H7198"]]]},{"k":15171,"v":[[0,6,["H3707"]],[6,10,["H1116"]],[10,15,["H7065"]],[15,19,["H6456"]]]},{"k":15172,"v":[[0,2,["H430"]],[2,3,["H8085"]],[3,7,["H5674"]],[7,9,["H3966"]],[9,10,["H3988"]],[10,11,["H3478"]]]},{"k":15173,"v":[[0,4,["H5203"]],[4,6,["H4908"]],[6,8,["H7887"]],[8,10,["H168"]],[10,13,["H7931"]],[13,15,["H120"]]]},{"k":15174,"v":[[0,2,["H5414"]],[2,4,["H5797"]],[4,6,["H7628"]],[6,9,["H8597"]],[9,12,["H6862"]],[12,13,["H3027"]]]},{"k":15175,"v":[[0,2,["H5462"]],[2,4,["H5971"]],[4,5,["H5462"]],[5,9,["H2719"]],[9,12,["H5674"]],[12,15,["H5159"]]]},{"k":15176,"v":[[0,2,["H784"]],[2,3,["H398"]],[3,6,["H970"]],[6,9,["H1330"]],[9,11,["H3808"]],[11,14,["H1984"]]]},{"k":15177,"v":[[0,2,["H3548"]],[2,3,["H5307"]],[3,6,["H2719"]],[6,9,["H490"]],[9,11,["H3808"]],[11,12,["H1058"]]]},{"k":15178,"v":[[0,3,["H136"]],[3,4,["H3364"]],[4,9,["H3463"]],[9,14,["H1368"]],[14,16,["H7442"]],[16,20,["H4480","H3196"]]]},{"k":15179,"v":[[0,3,["H5221"]],[3,5,["H6862"]],[5,9,["H268"]],[9,11,["H5414"]],[11,15,["H5769"]],[15,16,["H2781"]]]},{"k":15180,"v":[[0,3,["H3988"]],[3,5,["H168"]],[5,7,["H3130"]],[7,9,["H977"]],[9,10,["H3808"]],[10,12,["H7626"]],[12,14,["H669"]]]},{"k":15181,"v":[[0,2,["H977","(H853)"]],[2,4,["H7626"]],[4,6,["H3063","(H853)"]],[6,8,["H2022"]],[8,9,["H6726"]],[9,10,["H834"]],[10,12,["H157"]]]},{"k":15182,"v":[[0,3,["H1129"]],[3,5,["H4720"]],[5,6,["H3644"]],[6,7,["H7311"]],[7,11,["H776"]],[11,15,["H3245"]],[15,17,["H5769"]]]},{"k":15183,"v":[[0,2,["H977"]],[2,3,["H1732"]],[3,6,["H5650"]],[6,8,["H3947"]],[8,12,["H4480","H4356","H6629"]]]},{"k":15184,"v":[[0,2,["H4480","H310"]],[2,7,["H5763"]],[7,9,["H935"]],[9,12,["H7462"]],[12,13,["H3290"]],[13,15,["H5971"]],[15,17,["H3478"]],[17,19,["H5159"]]]},{"k":15185,"v":[[0,3,["H7462"]],[3,8,["H8537"]],[8,11,["H3824"]],[11,13,["H5148"]],[13,17,["H8394"]],[17,20,["H3709"]]]},{"k":15186,"v":[[0,2,["H430"]],[2,4,["H1471"]],[4,6,["H935"]],[6,9,["H5159","(H853)"]],[9,11,["H6944"]],[11,12,["H1964"]],[12,15,["H2930"]],[15,18,["H7760","(H853)"]],[18,19,["H3389"]],[19,21,["H5856"]]]},{"k":15187,"v":[[0,0,["(H853)"]],[0,3,["H5038"]],[3,6,["H5650"]],[6,9,["H5414"]],[9,12,["H3978"]],[12,15,["H5775"]],[15,18,["H8064"]],[18,20,["H1320"]],[20,23,["H2623"]],[23,26,["H2416"]],[26,29,["H776"]]]},{"k":15188,"v":[[0,2,["H1818"]],[2,5,["H8210"]],[5,7,["H4325"]],[7,9,["H5439"]],[9,10,["H3389"]],[10,14,["H369"]],[14,16,["H6912"]],[16,17,[]]]},{"k":15189,"v":[[0,3,["H1961"]],[3,5,["H2781"]],[5,8,["H7934"]],[8,10,["H3933"]],[10,12,["H7047"]],[12,18,["H5439"]],[18,19,[]]]},{"k":15190,"v":[[0,2,["H5704","H4100"]],[2,3,["H3068"]],[3,7,["H599"]],[7,9,["H5331"]],[9,12,["H7068"]],[12,13,["H1197"]],[13,14,["H3644"]],[14,15,["H784"]]]},{"k":15191,"v":[[0,2,["H8210"]],[2,4,["H2534"]],[4,5,["H413"]],[5,7,["H1471"]],[7,8,["H834"]],[8,10,["H3808"]],[10,11,["H3045"]],[11,14,["H5921"]],[14,16,["H4467"]],[16,17,["H834"]],[17,19,["H408"]],[19,20,["H7121"]],[20,23,["H8034"]]]},{"k":15192,"v":[[0,1,["H3588"]],[1,4,["H398","(H853)"]],[4,5,["H3290"]],[5,8,["H8074"]],[8,11,["H5116"]]]},{"k":15193,"v":[[0,2,["H2142"]],[2,3,["H408"]],[3,6,["H7223"]],[6,7,["H5771"]],[7,11,["H7356"]],[11,12,["H4116"]],[12,13,["H6923"]],[13,15,["H3588"]],[15,20,["H1809","H3966"]]]},{"k":15194,"v":[[0,1,["H5826"]],[1,4,["H430"]],[4,7,["H3468"]],[7,8,["H5921","H1697"]],[8,10,["H3519"]],[10,13,["H8034"]],[13,15,["H5337"]],[15,19,["H3722","H5921"]],[19,21,["H2403"]],[21,25,["H4616","H8034"]]]},{"k":15195,"v":[[0,1,["H4100"]],[1,4,["H1471"]],[4,5,["H559"]],[5,6,["H346"]],[6,9,["H430"]],[9,13,["H3045"]],[13,16,["H1471"]],[16,19,["H5869"]],[19,22,["H5360"]],[22,25,["H1818"]],[25,28,["H5650"]],[28,31,["H8210"]]]},{"k":15196,"v":[[0,3,["H603"]],[3,6,["H615"]],[6,7,["H935"]],[7,8,["H6440"]],[8,13,["H1433"]],[13,16,["H2220"]],[16,17,["H3498"]],[17,22,["H1121"]],[22,24,["H8546"]]]},{"k":15197,"v":[[0,2,["H7725"]],[2,5,["H7934"]],[5,6,["H7659"]],[6,7,["H413"]],[7,9,["H2436"]],[9,11,["H2781"]],[11,12,["H834"]],[12,15,["H2778"]],[15,18,["H136"]]]},{"k":15198,"v":[[0,2,["H587"]],[2,4,["H5971"]],[4,6,["H6629"]],[6,9,["H4830"]],[9,13,["H3034"]],[13,15,["H5769"]],[15,19,["H5608"]],[19,21,["H8416"]],[21,24,["H1755","H1755"]]]},{"k":15199,"v":[[0,2,["H238"]],[2,4,["H7462"]],[4,6,["H3478"]],[6,9,["H5090"]],[9,10,["H3130"]],[10,13,["H6629"]],[13,16,["H3427"]],[16,19,["H3742"]],[19,21,["H3313"]]]},{"k":15200,"v":[[0,1,["H6440"]],[1,2,["H669"]],[2,4,["H1144"]],[4,6,["H4519"]],[6,8,["H5782","(H853)"]],[8,10,["H1369"]],[10,12,["H1980"]],[12,14,["H3444"]],[14,15,[]]]},{"k":15201,"v":[[0,3,["H7725"]],[3,5,["H430"]],[5,9,["H6440"]],[9,11,["H215"]],[11,16,["H3467"]]]},{"k":15202,"v":[[0,2,["H3068"]],[2,3,["H430"]],[3,5,["H6635"]],[5,7,["H5704","H4970"]],[7,11,["H6225"]],[11,14,["H8605"]],[14,17,["H5971"]]]},{"k":15203,"v":[[0,2,["H398"]],[2,6,["H3899"]],[6,8,["H1832"]],[8,12,["H1832"]],[12,14,["H8248"]],[14,17,["H7991"]]]},{"k":15204,"v":[[0,2,["H7760"]],[2,5,["H4066"]],[5,8,["H7934"]],[8,11,["H341"]],[11,12,["H3932"]],[12,14,[]]]},{"k":15205,"v":[[0,3,["H7725"]],[3,5,["H430"]],[5,7,["H6635"]],[7,11,["H6440"]],[11,13,["H215"]],[13,18,["H3467"]]]},{"k":15206,"v":[[0,3,["H5265"]],[3,5,["H1612"]],[5,8,["H4480","H4714"]],[8,12,["H1644"]],[12,14,["H1471"]],[14,16,["H5193"]],[16,17,[]]]},{"k":15207,"v":[[0,2,["H6437"]],[2,4,["H6440"]],[4,13,["H8327","H8328"]],[13,16,["H4390"]],[16,18,["H776"]]]},{"k":15208,"v":[[0,2,["H2022"]],[2,4,["H3680"]],[4,7,["H6738"]],[7,12,["H6057"]],[12,17,["H410"]],[17,18,["H730"]]]},{"k":15209,"v":[[0,3,["H7971"]],[3,5,["H7105"]],[5,6,["H5704"]],[6,8,["H3220"]],[8,11,["H3127"]],[11,12,["H413"]],[12,14,["H5104"]]]},{"k":15210,"v":[[0,1,["H4100"]],[1,6,["H6555"]],[6,8,["H1447"]],[8,11,["H3605"]],[11,15,["H5674"]],[15,17,["H1870"]],[17,19,["H717"]],[19,20,[]]]},{"k":15211,"v":[[0,2,["H2386"]],[2,6,["H4480","H3293"]],[6,8,["H3765"]],[8,13,["H2123"]],[13,16,["H7704"]],[16,18,["H7462"]],[18,19,[]]]},{"k":15212,"v":[[0,1,["H7725"]],[1,3,["H4994"]],[3,6,["H430"]],[6,8,["H6635"]],[8,10,["H5027"]],[10,12,["H4480","H8064"]],[12,14,["H7200"]],[14,16,["H6485"]],[16,17,["H2063"]],[17,18,["H1612"]]]},{"k":15213,"v":[[0,3,["H3657"]],[3,4,["H834"]],[4,7,["H3225"]],[7,9,["H5193"]],[9,12,["H1121"]],[12,16,["H553"]],[16,18,[]]]},{"k":15214,"v":[[0,3,["H8313"]],[3,5,["H784"]],[5,9,["H3683"]],[9,11,["H6"]],[11,14,["H4480","H1606"]],[14,17,["H6440"]]]},{"k":15215,"v":[[0,3,["H3027"]],[3,4,["H1961"]],[4,5,["H5921"]],[5,7,["H376"]],[7,11,["H3225"]],[11,12,["H5921"]],[12,14,["H1121"]],[14,16,["H120"]],[16,20,["H553"]],[20,22,[]]]},{"k":15216,"v":[[0,3,["H3808"]],[3,6,["H5472"]],[6,7,["H4480"]],[7,9,["H2421"]],[9,14,["H7121"]],[14,17,["H8034"]]]},{"k":15217,"v":[[0,3,["H7725"]],[3,5,["H3068"]],[5,6,["H430"]],[6,8,["H6635"]],[8,11,["H6440"]],[11,13,["H215"]],[13,18,["H3467"]]]},{"k":15218,"v":[[0,2,["H7442"]],[2,4,["H430"]],[4,6,["H5797"]],[6,10,["H7321"]],[10,13,["H430"]],[13,15,["H3290"]]]},{"k":15219,"v":[[0,1,["H5375"]],[1,3,["H2172"]],[3,5,["H5414"]],[5,8,["H8596"]],[8,10,["H5273"]],[10,11,["H3658"]],[11,12,["H5973"]],[12,14,["H5035"]]]},{"k":15220,"v":[[0,2,["H8628"]],[2,4,["H7782"]],[4,8,["H2320"]],[8,12,["H3677"]],[12,16,["H2282"]],[16,17,["H3117"]]]},{"k":15221,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,5,["H2706"]],[5,7,["H3478"]],[7,10,["H4941"]],[10,13,["H430"]],[13,15,["H3290"]]]},{"k":15222,"v":[[0,3,["H7760"]],[3,5,["H3084"]],[5,8,["H5715"]],[8,12,["H3318"]],[12,13,["H5921"]],[13,15,["H776"]],[15,17,["H4714"]],[17,20,["H8085"]],[20,22,["H8193"]],[22,25,["H3045"]],[25,26,["H3808"]]]},{"k":15223,"v":[[0,2,["H5493"]],[2,4,["H7926"]],[4,7,["H4480","H5447"]],[7,9,["H3709"]],[9,11,["H5674"]],[11,14,["H4480","H1731"]]]},{"k":15224,"v":[[0,2,["H7121"]],[2,4,["H6869"]],[4,7,["H2502"]],[7,10,["H6030"]],[10,15,["H5643"]],[15,17,["H7482"]],[17,19,["H974"]],[19,21,["H5921"]],[21,23,["H4325"]],[23,25,["H4809"]],[25,26,["H5542"]]]},{"k":15225,"v":[[0,1,["H8085"]],[1,4,["H5971"]],[4,8,["H5749"]],[8,12,["H3478"]],[12,13,["H518"]],[13,16,["H8085"]],[16,18,[]]]},{"k":15226,"v":[[0,3,["H3808"]],[3,4,["H2114"]],[4,5,["H410"]],[5,6,["H1961"]],[6,9,["H3808"]],[9,12,["H7812"]],[12,14,["H5236"]],[14,15,["H410"]]]},{"k":15227,"v":[[0,1,["H595"]],[1,4,["H3068"]],[4,6,["H430"]],[6,8,["H5927"]],[8,13,["H4480","H776"]],[13,15,["H4714"]],[15,18,["H6310"]],[18,19,["H7337"]],[19,23,["H4390"]],[23,24,[]]]},{"k":15228,"v":[[0,3,["H5971"]],[3,5,["H3808"]],[5,6,["H8085"]],[6,9,["H6963"]],[9,11,["H3478"]],[11,12,["H14"]],[12,13,["H3808"]],[13,15,[]]]},{"k":15229,"v":[[0,5,["H7971"]],[5,9,["H3820"]],[9,10,["H8307"]],[10,13,["H1980"]],[13,17,["H4156"]]]},{"k":15230,"v":[[0,2,["H3863"]],[2,4,["H5971"]],[4,6,["H8085"]],[6,10,["H3478"]],[10,12,["H1980"]],[12,15,["H1870"]]]},{"k":15231,"v":[[0,3,["H4592"]],[3,5,["H3665"]],[5,7,["H341"]],[7,9,["H7725"]],[9,11,["H3027"]],[11,12,["H5921"]],[12,14,["H6862"]]]},{"k":15232,"v":[[0,2,["H8130"]],[2,5,["H3068"]],[5,8,["H3584"]],[8,14,["H6256"]],[14,17,["H1961"]],[17,19,["H5769"]]]},{"k":15233,"v":[[0,4,["H398"]],[4,9,["H4480","H2459"]],[9,12,["H2406"]],[12,15,["H1706"]],[15,19,["H4480","H6697"]],[19,23,["H7646"]],[23,24,[]]]},{"k":15234,"v":[[0,1,["H430"]],[1,2,["H5324"]],[2,5,["H5712"]],[5,8,["H410"]],[8,10,["H8199"]],[10,11,["H7130"]],[11,13,["H430"]]]},{"k":15235,"v":[[0,2,["H5704","H4970"]],[2,5,["H8199"]],[5,6,["H5766"]],[6,8,["H5375"]],[8,10,["H6440"]],[10,13,["H7563"]],[13,14,["H5542"]]]},{"k":15236,"v":[[0,1,["H8199"]],[1,3,["H1800"]],[3,5,["H3490"]],[5,7,["H6663"]],[7,10,["H6041"]],[10,12,["H7326"]]]},{"k":15237,"v":[[0,1,["H6403"]],[1,3,["H1800"]],[3,5,["H34"]],[5,6,["H5337"]],[6,11,["H4480","H3027"]],[11,14,["H7563"]]]},{"k":15238,"v":[[0,2,["H3045"]],[2,3,["H3808"]],[3,4,["H3808"]],[4,7,["H995"]],[7,10,["H1980"]],[10,12,["H2825"]],[12,13,["H3605"]],[13,15,["H4146"]],[15,18,["H776"]],[18,22,["H4131"]]]},{"k":15239,"v":[[0,1,["H589"]],[1,3,["H559"]],[3,6,["H430"]],[6,8,["H3605"]],[8,10,["H859"]],[10,12,["H1121"]],[12,16,["H5945"]]]},{"k":15240,"v":[[0,1,["H403"]],[1,4,["H4191"]],[4,6,["H120"]],[6,8,["H5307"]],[8,10,["H259"]],[10,13,["H8269"]]]},{"k":15241,"v":[[0,1,["H6965"]],[1,3,["H430"]],[3,4,["H8199"]],[4,6,["H776"]],[6,7,["H3588"]],[7,8,["H859"]],[8,10,["H5157"]],[10,11,["H3605"]],[11,12,["H1471"]]]},{"k":15242,"v":[[0,4,["H408","H1824"]],[4,6,["H430"]],[6,10,["H2790","H408"]],[10,13,["H408"]],[13,14,["H8252"]],[14,16,["H410"]]]},{"k":15243,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H341"]],[4,7,["H1993"]],[7,11,["H8130"]],[11,15,["H5375"]],[15,17,["H7218"]]]},{"k":15244,"v":[[0,4,["H6191"]],[4,5,["H5475"]],[5,6,["H5921"]],[6,8,["H5971"]],[8,10,["H3289"]],[10,11,["H5921"]],[11,14,["H6845"]]]},{"k":15245,"v":[[0,3,["H559"]],[3,4,["H1980"]],[4,10,["H3582"]],[10,14,["H4480","H1471"]],[14,17,["H8034"]],[17,19,["H3478"]],[19,22,["H3808"]],[22,23,["H5750"]],[23,25,["H2142"]]]},{"k":15246,"v":[[0,1,["H3588"]],[1,5,["H3289"]],[5,8,["H3820","H3162"]],[8,11,["H1285","H3772"]],[11,12,["H5921"]],[12,13,[]]]},{"k":15247,"v":[[0,2,["H168"]],[2,4,["H123"]],[4,7,["H3459"]],[7,9,["H4124"]],[9,12,["H1905"]]]},{"k":15248,"v":[[0,1,["H1381"]],[1,3,["H5983"]],[3,5,["H6002"]],[5,7,["H6429"]],[7,8,["H5973"]],[8,10,["H3427"]],[10,12,["H6865"]]]},{"k":15249,"v":[[0,1,["H804"]],[1,2,["H1571"]],[2,4,["H3867"]],[4,5,["H5973"]],[5,8,["H1961"]],[8,9,["H2220"]],[9,11,["H1121"]],[11,13,["H3876"]],[13,14,["H5542"]]]},{"k":15250,"v":[[0,1,["H6213"]],[1,7,["H4080"]],[7,10,["H5516"]],[10,13,["H2985"]],[13,16,["H5158"]],[16,18,["H7028"]]]},{"k":15251,"v":[[0,2,["H8045"]],[2,4,["H5874"]],[4,6,["H1961"]],[6,8,["H1828"]],[8,11,["H127"]]]},{"k":15252,"v":[[0,1,["H7896"]],[1,3,["H5081"]],[3,5,["H6159"]],[5,8,["H2062"]],[8,10,["H3605"]],[10,12,["H5257"]],[12,14,["H2078"]],[14,17,["H6759"]]]},{"k":15253,"v":[[0,1,["H834"]],[1,2,["H559"]],[2,5,["H3423"]],[5,7,["(H853)"]],[7,9,["H4999"]],[9,11,["H430"]],[11,13,[]]]},{"k":15254,"v":[[0,3,["H430"]],[3,4,["H7896"]],[4,8,["H1534"]],[8,11,["H7179"]],[11,12,["H6440"]],[12,14,["H7307"]]]},{"k":15255,"v":[[0,3,["H784"]],[3,4,["H1197"]],[4,6,["H3293"]],[6,10,["H3852"]],[10,15,["H2022","H3857"]]]},{"k":15256,"v":[[0,1,["H3651"]],[1,2,["H7291"]],[2,6,["H5591"]],[6,10,["H926"]],[10,13,["H5492"]]]},{"k":15257,"v":[[0,1,["H4390"]],[1,3,["H6440"]],[3,5,["H7036"]],[5,9,["H1245"]],[9,11,["H8034"]],[11,13,["H3068"]]]},{"k":15258,"v":[[0,4,["H954"]],[4,6,["H926"]],[6,8,["H5704","H5703"]],[8,15,["H2659"]],[15,17,["H6"]]]},{"k":15259,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H859"]],[6,8,["H8034"]],[8,9,["H905"]],[9,11,["H3068"]],[11,15,["H5945"]],[15,16,["H5921"]],[16,17,["H3605"]],[17,19,["H776"]]]},{"k":15260,"v":[[0,1,["H4100"]],[1,2,["H3039"]],[2,5,["H4908"]],[5,7,["H3068"]],[7,9,["H6635"]]]},{"k":15261,"v":[[0,2,["H5315"]],[2,3,["H3700"]],[3,5,["H1571"]],[5,6,["H3615"]],[6,9,["H2691"]],[9,12,["H3068"]],[12,14,["H3820"]],[14,17,["H1320"]],[17,19,["H7442"]],[19,20,["H413"]],[20,22,["H2416"]],[22,23,["H410"]]]},{"k":15262,"v":[[0,1,["H1571"]],[1,3,["H6833"]],[3,5,["H4672"]],[5,7,["H1004"]],[7,10,["H1866"]],[10,12,["H7064"]],[12,15,["H834"]],[15,18,["H7896"]],[18,20,["H667"]],[20,21,["(H853)"]],[21,23,["H4196"]],[23,25,["H3068"]],[25,27,["H6635"]],[27,29,["H4428"]],[29,32,["H430"]]]},{"k":15263,"v":[[0,1,["H835"]],[1,5,["H3427"]],[5,8,["H1004"]],[8,12,["H5750"]],[12,13,["H1984"]],[13,15,["H5542"]]]},{"k":15264,"v":[[0,1,["H835"]],[1,4,["H120"]],[4,6,["H5797"]],[6,12,["H3824"]],[12,15,["H4546"]],[15,17,[]]]},{"k":15265,"v":[[0,2,["H5674"]],[2,5,["H6010"]],[5,7,["H1056"]],[7,8,["H7896"]],[8,11,["H4599"]],[11,13,["H4175"]],[13,14,["H1571"]],[14,15,["H5844"]],[15,17,["H1293"]]]},{"k":15266,"v":[[0,2,["H1980"]],[2,4,["H4480","H2428"]],[4,5,["H413"]],[5,6,["H2428"]],[6,12,["H6726"]],[12,13,["H7200"]],[13,14,["H413"]],[14,15,["H430"]]]},{"k":15267,"v":[[0,2,["H3068"]],[2,3,["H430"]],[3,5,["H6635"]],[5,6,["H8085"]],[6,8,["H8605"]],[8,10,["H238"]],[10,12,["H430"]],[12,14,["H3290"]],[14,15,["H5542"]]]},{"k":15268,"v":[[0,1,["H7200"]],[1,3,["H430"]],[3,5,["H4043"]],[5,8,["H5027"]],[8,10,["H6440"]],[10,13,["H4899"]]]},{"k":15269,"v":[[0,1,["H3588"]],[1,3,["H3117"]],[3,6,["H2691"]],[6,8,["H2896"]],[8,11,["H4480","H505"]],[11,14,["H977"]],[14,17,["H5605"]],[17,20,["H1004"]],[20,23,["H430"]],[23,26,["H4480","H1752"]],[26,29,["H168"]],[29,31,["H7562"]]]},{"k":15270,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,4,["H430"]],[4,7,["H8121"]],[7,9,["H4043"]],[9,11,["H3068"]],[11,13,["H5414"]],[13,14,["H2580"]],[14,16,["H3519"]],[16,17,["H3808"]],[17,18,["H2896"]],[18,22,["H4513"]],[22,26,["H1980"]],[26,27,["H8549"]]]},{"k":15271,"v":[[0,2,["H3068"]],[2,4,["H6635"]],[4,5,["H835"]],[5,8,["H120"]],[8,10,["H982"]],[10,12,[]]]},{"k":15272,"v":[[0,1,["H3068"]],[1,5,["H7521"]],[5,8,["H776"]],[8,12,["H7725"]],[12,14,["H7622"]],[14,16,["H3290"]]]},{"k":15273,"v":[[0,3,["H5375"]],[3,5,["H5771"]],[5,8,["H5971"]],[8,11,["H3680"]],[11,12,["H3605"]],[12,14,["H2403"]],[14,15,["H5542"]]]},{"k":15274,"v":[[0,4,["H622"]],[4,5,["H3605"]],[5,7,["H5678"]],[7,10,["H7725"]],[10,14,["H4480","H2740"]],[14,17,["H639"]]]},{"k":15275,"v":[[0,1,["H7725"]],[1,4,["H430"]],[4,7,["H3468"]],[7,11,["H3708"]],[11,12,["H5973"]],[12,15,["H6565"]]]},{"k":15276,"v":[[0,4,["H599"]],[4,8,["H5769"]],[8,12,["H4900"]],[12,14,["H639"]],[14,17,["H1755","H1755"]]]},{"k":15277,"v":[[0,2,["H859"]],[2,3,["H3808"]],[3,4,["H2421"]],[4,6,["H7725"]],[6,9,["H5971"]],[9,11,["H8055"]],[11,13,[]]]},{"k":15278,"v":[[0,1,["H7200"]],[1,4,["H2617"]],[4,6,["H3068"]],[6,8,["H5414"]],[8,11,["H3468"]]]},{"k":15279,"v":[[0,3,["H8085"]],[3,4,["H4100"]],[4,5,["H410"]],[5,7,["H3068"]],[7,9,["H1696"]],[9,10,["H3588"]],[10,13,["H1696"]],[13,14,["H7965"]],[14,15,["H413"]],[15,17,["H5971"]],[17,19,["H413"]],[19,21,["H2623"]],[21,25,["H408"]],[25,27,["H7725"]],[27,29,["H3690"]]]},{"k":15280,"v":[[0,1,["H389"]],[1,3,["H3468"]],[3,5,["H7138"]],[5,8,["H3373"]],[8,11,["H3519"]],[11,13,["H7931"]],[13,16,["H776"]]]},{"k":15281,"v":[[0,1,["H2617"]],[1,3,["H571"]],[3,6,["H6298"]],[6,7,["H6664"]],[7,9,["H7965"]],[9,11,["H5401"]],[11,13,[]]]},{"k":15282,"v":[[0,1,["H571"]],[1,3,["H6779"]],[3,7,["H4480","H776"]],[7,9,["H6664"]],[9,12,["H8259"]],[12,14,["H4480","H8064"]]]},{"k":15283,"v":[[0,1,["H1571"]],[1,3,["H3068"]],[3,5,["H5414"]],[5,9,["H2896"]],[9,12,["H776"]],[12,14,["H5414"]],[14,16,["H2981"]]]},{"k":15284,"v":[[0,1,["H6664"]],[1,3,["H1980"]],[3,4,["H6440"]],[4,8,["H7760"]],[8,12,["H1870"]],[12,15,["H6471"]]]},{"k":15285,"v":[[0,2,["H5186"]],[2,4,["H241"]],[4,6,["H3068"]],[6,7,["H6030"]],[7,9,["H3588"]],[9,10,["H589"]],[10,12,["H6041"]],[12,14,["H34"]]]},{"k":15286,"v":[[0,1,["H8104"]],[1,3,["H5315"]],[3,4,["H3588"]],[4,5,["H589"]],[5,7,["H2623"]],[7,9,["H859"]],[9,11,["H430"]],[11,12,["H3467"]],[12,14,["H5650"]],[14,16,["H982"]],[16,18,["H413"]]]},{"k":15287,"v":[[0,2,["H2603"]],[2,6,["H136"]],[6,7,["H3588"]],[7,9,["H7121"]],[9,10,["H413"]],[10,12,["H3605","H3117"]]]},{"k":15288,"v":[[0,1,["H8055"]],[1,3,["H5315"]],[3,6,["H5650"]],[6,7,["H3588"]],[7,8,["H413"]],[8,11,["H136"]],[11,15,["H5375"]],[15,17,["H5315"]]]},{"k":15289,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,3,["H136"]],[3,5,["H2896"]],[5,9,["H5546"]],[9,11,["H7227"]],[11,13,["H2617"]],[13,15,["H3605"]],[15,19,["H7121"]],[19,20,[]]]},{"k":15290,"v":[[0,2,["H238"]],[2,4,["H3068"]],[4,7,["H8605"]],[7,9,["H7181"]],[9,12,["H6963"]],[12,15,["H8469"]]]},{"k":15291,"v":[[0,3,["H3117"]],[3,6,["H6869"]],[6,10,["H7121"]],[10,12,["H3588"]],[12,15,["H6030"]],[15,16,[]]]},{"k":15292,"v":[[0,3,["H430"]],[3,6,["H369"]],[6,9,["H3644"]],[9,11,["H136"]],[11,12,["H369"]],[12,20,["H4639"]]]},{"k":15293,"v":[[0,1,["H3605"]],[1,2,["H1471"]],[2,3,["H834"]],[3,6,["H6213"]],[6,8,["H935"]],[8,10,["H7812"]],[10,11,["H6440"]],[11,14,["H136"]],[14,17,["H3513"]],[17,19,["H8034"]]]},{"k":15294,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H1419"]],[4,6,["H6213"]],[6,8,["H6381"]],[8,9,["H859"]],[9,11,["H430"]],[11,12,["H905"]]]},{"k":15295,"v":[[0,1,["H3384"]],[1,4,["H1870"]],[4,6,["H3068"]],[6,9,["H1980"]],[9,12,["H571"]],[12,13,["H3161"]],[13,15,["H3824"]],[15,17,["H3372"]],[17,19,["H8034"]]]},{"k":15296,"v":[[0,3,["H3034"]],[3,6,["H136"]],[6,8,["H430"]],[8,10,["H3605"]],[10,12,["H3824"]],[12,16,["H3513"]],[16,18,["H8034"]],[18,20,["H5769"]]]},{"k":15297,"v":[[0,1,["H3588"]],[1,2,["H1419"]],[2,5,["H2617"]],[5,6,["H5921"]],[6,11,["H5337"]],[11,13,["H5315"]],[13,16,["H8482"]],[16,17,["H4480","H7585"]]]},{"k":15298,"v":[[0,2,["H430"]],[2,4,["H2086"]],[4,6,["H6965"]],[6,7,["H5921"]],[7,11,["H5712"]],[11,13,["H6184"]],[13,17,["H1245"]],[17,19,["H5315"]],[19,22,["H3808"]],[22,23,["H7760"]],[23,25,["H5048"]],[25,26,[]]]},{"k":15299,"v":[[0,2,["H859"]],[2,4,["H136"]],[4,7,["H410"]],[7,10,["H7349"]],[10,12,["H2587"]],[12,13,["H750","H639"]],[13,15,["H7227"]],[15,17,["H2617"]],[17,19,["H571"]]]},{"k":15300,"v":[[0,2,["H6437"]],[2,3,["H413"]],[3,7,["H2603"]],[7,10,["H5414"]],[10,12,["H5797"]],[12,15,["H5650"]],[15,17,["H3467"]],[17,19,["H1121"]],[19,22,["H519"]]]},{"k":15301,"v":[[0,1,["H6213","H5973"]],[1,4,["H226"]],[4,6,["H2896"]],[6,10,["H8130"]],[10,13,["H7200"]],[13,17,["H954"]],[17,18,["H3588"]],[18,19,["H859"]],[19,20,["H3068"]],[20,22,["H5826"]],[22,25,["H5162"]],[25,26,[]]]},{"k":15302,"v":[[0,2,["H3248"]],[2,6,["H6944"]],[6,7,["H2042"]]]},{"k":15303,"v":[[0,2,["H3068"]],[2,3,["H157"]],[3,5,["H8179"]],[5,7,["H6726"]],[7,10,["H4480","H3605"]],[10,12,["H4908"]],[12,14,["H3290"]]]},{"k":15304,"v":[[0,2,["H3513"]],[2,4,["H1696"]],[4,8,["H5892"]],[8,10,["H430"]],[10,11,["H5542"]]]},{"k":15305,"v":[[0,4,["H2142"]],[4,6,["H7294"]],[6,8,["H894"]],[8,12,["H3045"]],[12,14,["H2009"]],[14,15,["H6429"]],[15,17,["H6865"]],[17,18,["H5973"]],[18,19,["H3568"]],[19,20,["H2088"]],[20,23,["H3205"]],[23,24,["H8033"]]]},{"k":15306,"v":[[0,3,["H6726"]],[3,7,["H559"]],[7,8,["H376"]],[8,11,["H376"]],[11,13,["H3205"]],[13,18,["H5945"]],[18,19,["H1931"]],[19,21,["H3559"]],[21,22,[]]]},{"k":15307,"v":[[0,2,["H3068"]],[2,4,["H5608"]],[4,8,["H3789"]],[8,10,["H5971"]],[10,12,["H2088"]],[12,15,["H3205"]],[15,16,["H8033"]],[16,17,["H5542"]]]},{"k":15308,"v":[[0,4,["H7891"]],[4,9,["H2490"]],[9,13,["H3605"]],[13,15,["H4599"]],[15,18,[]]]},{"k":15309,"v":[[0,2,["H3068"]],[2,3,["H430"]],[3,6,["H3444"]],[6,9,["H6817"]],[9,10,["H3117"]],[10,12,["H3915"]],[12,13,["H5048"]],[13,14,[]]]},{"k":15310,"v":[[0,3,["H8605"]],[3,4,["H935"]],[4,5,["H6440"]],[5,7,["H5186"]],[7,9,["H241"]],[9,12,["H7440"]]]},{"k":15311,"v":[[0,1,["H3588"]],[1,3,["H5315"]],[3,5,["H7646"]],[5,7,["H7451"]],[7,10,["H2416"]],[10,12,["H5060"]],[12,15,["H7585"]]]},{"k":15312,"v":[[0,3,["H2803"]],[3,4,["H5973"]],[4,8,["H3381"]],[8,11,["H953"]],[11,13,["H1961"]],[13,16,["H1397"]],[16,19,["H369"]],[19,20,["H353"]]]},{"k":15313,"v":[[0,1,["H2670"]],[1,4,["H4191"]],[4,5,["H3644"]],[5,7,["H2491"]],[7,9,["H7901"]],[9,12,["H6913"]],[12,13,["H834"]],[13,15,["H2142"]],[15,16,["H3808"]],[16,17,["H5750"]],[17,19,["H1992"]],[19,22,["H1504"]],[22,25,["H4480","H3027"]]]},{"k":15314,"v":[[0,3,["H7896"]],[3,7,["H8482"]],[7,8,["H953"]],[8,10,["H4285"]],[10,13,["H4688"]]]},{"k":15315,"v":[[0,2,["H2534"]],[2,4,["H5564"]],[4,5,["H5921"]],[5,10,["H6031"]],[10,13,["H3605"]],[13,15,["H4867"]],[15,16,["H5542"]]]},{"k":15316,"v":[[0,4,["H7368"]],[4,6,["H3045"]],[6,8,["H4480"]],[8,12,["H7896"]],[12,15,["H8441"]],[15,21,["H3607"]],[21,24,["H3808"]],[24,26,["H3318"]]]},{"k":15317,"v":[[0,2,["H5869"]],[2,3,["H1669"]],[3,6,["H4480"]],[6,7,["H6040"]],[7,8,["H3068"]],[8,11,["H7121"]],[11,12,["H3605","H3117"]],[12,18,["H7849"]],[18,20,["H3709"]],[20,22,["H413"]]]},{"k":15318,"v":[[0,3,["H6213"]],[3,4,["H6382"]],[4,7,["H4191"]],[7,10,["H7496"]],[10,11,["H6965"]],[11,13,["H3034"]],[13,15,["H5542"]]]},{"k":15319,"v":[[0,3,["H2617"]],[3,5,["H5608"]],[5,8,["H6913"]],[8,11,["H530"]],[11,13,["H11"]]]},{"k":15320,"v":[[0,3,["H6382"]],[3,5,["H3045"]],[5,8,["H2822"]],[8,11,["H6666"]],[11,14,["H776"]],[14,16,["H5388"]]]},{"k":15321,"v":[[0,2,["H413"]],[2,5,["H589"]],[5,6,["H7768"]],[6,8,["H3068"]],[8,12,["H1242"]],[12,15,["H8605"]],[15,16,["H6923"]],[16,17,[]]]},{"k":15322,"v":[[0,1,["H3068"]],[1,2,["H4100"]],[2,5,["H2186"]],[5,7,["H5315"]],[7,9,["H5641"]],[9,12,["H6440"]],[12,13,["H4480"]],[13,14,[]]]},{"k":15323,"v":[[0,1,["H589"]],[1,3,["H6041"]],[3,7,["H1478"]],[7,11,["H4480","H5290"]],[11,14,["H5375"]],[14,16,["H367"]],[16,19,["H6323"]]]},{"k":15324,"v":[[0,3,["H2740"]],[3,4,["H5674"]],[4,5,["H5921"]],[5,8,["H1161"]],[8,12,["H6789"]]]},{"k":15325,"v":[[0,4,["H5437"]],[4,6,["H3605","H3117"]],[6,8,["H4325"]],[8,12,["H5362","H5921"]],[12,13,["H3162"]]]},{"k":15326,"v":[[0,1,["H157"]],[1,3,["H7453"]],[3,7,["H7368"]],[7,8,["H4480"]],[8,12,["H3045"]],[12,14,["H4285"]]]},{"k":15327,"v":[[0,3,["H7891"]],[3,6,["H2617"]],[6,9,["H3068"]],[9,11,["H5769"]],[11,14,["H6310"]],[14,18,["H3045"]],[18,20,["H530"]],[20,23,["H1755","H1755"]]]},{"k":15328,"v":[[0,1,["H3588"]],[1,4,["H559"]],[4,5,["H2617"]],[5,9,["H1129"]],[9,11,["H5769"]],[11,13,["H530"]],[13,16,["H3559"]],[16,20,["H8064"]]]},{"k":15329,"v":[[0,3,["H3772"]],[3,5,["H1285"]],[5,8,["H972"]],[8,11,["H7650"]],[11,13,["H1732"]],[13,15,["H5650"]]]},{"k":15330,"v":[[0,2,["H2233"]],[2,5,["H3559"]],[5,7,["H5704","H5769"]],[7,10,["H1129"]],[10,12,["H3678"]],[12,15,["H1755","H1755"]],[15,16,["H5542"]]]},{"k":15331,"v":[[0,3,["H8064"]],[3,5,["H3034"]],[5,7,["H6382"]],[7,9,["H3068"]],[9,11,["H530"]],[11,12,["H637"]],[12,15,["H6951"]],[15,18,["H6918"]]]},{"k":15332,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,5,["H7834"]],[5,8,["H6186"]],[8,11,["H3068"]],[11,15,["H1121"]],[15,18,["H410"]],[18,21,["H1819"]],[21,24,["H3068"]]]},{"k":15333,"v":[[0,1,["H410"]],[1,3,["H7227"]],[3,6,["H6206"]],[6,9,["H5475"]],[9,12,["H6918"]],[12,18,["H3372"]],[18,19,["H5921"]],[19,20,["H3605"]],[20,24,["H5439"]],[24,25,[]]]},{"k":15334,"v":[[0,2,["H3068"]],[2,3,["H430"]],[3,5,["H6635"]],[5,6,["H4310"]],[6,9,["H2626"]],[9,10,["H3050"]],[10,13,["H3644"]],[13,17,["H530"]],[17,19,["H5439"]],[19,20,[]]]},{"k":15335,"v":[[0,1,["H859"]],[1,2,["H4910"]],[2,4,["H1348"]],[4,7,["H3220"]],[7,10,["H1530"]],[10,12,["H7721"]],[12,13,["H859"]],[13,14,["H7623"]],[14,15,[]]]},{"k":15336,"v":[[0,1,["H859"]],[1,3,["H1792"]],[3,4,["H7294"]],[4,11,["H2491"]],[11,14,["H6340"]],[14,16,["H341"]],[16,19,["H5797"]],[19,20,["H2220"]]]},{"k":15337,"v":[[0,2,["H8064"]],[2,6,["H776"]],[6,7,["H637"]],[7,13,["H8398"]],[13,16,["H4393"]],[16,18,["H859"]],[18,20,["H3245"]],[20,21,[]]]},{"k":15338,"v":[[0,2,["H6828"]],[2,5,["H3225"]],[5,6,["H859"]],[6,8,["H1254"]],[8,10,["H8396"]],[10,12,["H2768"]],[12,14,["H7442"]],[14,17,["H8034"]]]},{"k":15339,"v":[[0,4,["H1369"]],[4,5,["H2220"]],[5,6,["H5810"]],[6,9,["H3027"]],[9,11,["H7311"]],[11,15,["H3225"]]]},{"k":15340,"v":[[0,1,["H6664"]],[1,3,["H4941"]],[3,6,["H4349"]],[6,9,["H3678"]],[9,10,["H2617"]],[10,12,["H571"]],[12,14,["H6923"]],[14,17,["H6440"]]]},{"k":15341,"v":[[0,1,["H835"]],[1,4,["H5971"]],[4,6,["H3045"]],[6,9,["H8643"]],[9,12,["H1980"]],[12,14,["H3068"]],[14,17,["H216"]],[17,20,["H6440"]]]},{"k":15342,"v":[[0,3,["H8034"]],[3,6,["H1523"]],[6,7,["H3605"]],[7,9,["H3117"]],[9,13,["H6666"]],[13,17,["H7311"]]]},{"k":15343,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,5,["H8597"]],[5,8,["H5797"]],[8,12,["H7522"]],[12,14,["H7161"]],[14,17,["H7311"]]]},{"k":15344,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,6,["H4043"]],[6,10,["H6918"]],[10,12,["H3478"]],[12,15,["H4428"]]]},{"k":15345,"v":[[0,1,["H227"]],[1,3,["H1696"]],[3,5,["H2377"]],[5,9,["H2623"]],[9,11,["H559"]],[11,14,["H7737"]],[14,15,["H5828"]],[15,16,["H5921"]],[16,20,["H1368"]],[20,23,["H7311"]],[23,25,["H970"]],[25,29,["H4480","H5971"]]]},{"k":15346,"v":[[0,3,["H4672"]],[3,4,["H1732"]],[4,6,["H5650"]],[6,9,["H6944"]],[9,10,["H8081"]],[10,13,["H4886"]],[13,14,[]]]},{"k":15347,"v":[[0,1,["H5973"]],[1,2,["H834"]],[2,4,["H3027"]],[4,7,["H3559"]],[7,9,["H2220"]],[9,10,["H637"]],[10,12,["H553"]],[12,13,[]]]},{"k":15348,"v":[[0,2,["H341"]],[2,4,["H3808"]],[4,5,["H5378"]],[5,8,["H3808"]],[8,10,["H1121"]],[10,12,["H5766"]],[12,13,["H6031"]],[13,14,[]]]},{"k":15349,"v":[[0,5,["H3807"]],[5,7,["H6862"]],[7,10,["H4480","H6440"]],[10,12,["H5062"]],[12,15,["H8130"]],[15,16,[]]]},{"k":15350,"v":[[0,3,["H530"]],[3,6,["H2617"]],[6,9,["H5973"]],[9,14,["H8034"]],[14,17,["H7161"]],[17,19,["H7311"]]]},{"k":15351,"v":[[0,3,["H7760"]],[3,5,["H3027"]],[5,9,["H3220"]],[9,13,["H3225"]],[13,16,["H5104"]]]},{"k":15352,"v":[[0,1,["H1931"]],[1,3,["H7121"]],[3,6,["H859"]],[6,9,["H1"]],[9,11,["H410"]],[11,14,["H6697"]],[14,17,["H3444"]]]},{"k":15353,"v":[[0,1,["H637"]],[1,2,["H589"]],[2,4,["H5414"]],[4,7,["H1060"]],[7,8,["H5945"]],[8,11,["H4428"]],[11,14,["H776"]]]},{"k":15354,"v":[[0,2,["H2617"]],[2,5,["H8104"]],[5,9,["H5769"]],[9,12,["H1285"]],[12,15,["H539"]],[15,17,[]]]},{"k":15355,"v":[[0,2,["H2233"]],[2,6,["H7760"]],[6,10,["H5703"]],[10,13,["H3678"]],[13,16,["H3117"]],[16,18,["H8064"]]]},{"k":15356,"v":[[0,1,["H518"]],[1,3,["H1121"]],[3,4,["H5800"]],[4,6,["H8451"]],[6,8,["H1980"]],[8,9,["H3808"]],[9,12,["H4941"]]]},{"k":15357,"v":[[0,1,["H518"]],[1,3,["H2490"]],[3,5,["H2708"]],[5,7,["H8104"]],[7,8,["H3808"]],[8,10,["H4687"]]]},{"k":15358,"v":[[0,4,["H6485"]],[4,6,["H6588"]],[6,9,["H7626"]],[9,12,["H5771"]],[12,14,["H5061"]]]},{"k":15359,"v":[[0,3,["H2617"]],[3,6,["H3808"]],[6,8,["H6331"]],[8,9,["H4480","H5973"]],[9,11,["H3808"]],[11,16,["H8266","H530"]]]},{"k":15360,"v":[[0,2,["H1285"]],[2,5,["H3808"]],[5,6,["H2490"]],[6,7,["H3808"]],[7,8,["H8138"]],[8,14,["H4161"]],[14,17,["H8193"]]]},{"k":15361,"v":[[0,1,["H259"]],[1,4,["H7650"]],[4,7,["H6944"]],[7,11,["H518"]],[11,12,["H3576"]],[12,14,["H1732"]]]},{"k":15362,"v":[[0,2,["H2233"]],[2,4,["H1961"]],[4,6,["H5769"]],[6,9,["H3678"]],[9,12,["H8121"]],[12,13,["H5048"]],[13,14,[]]]},{"k":15363,"v":[[0,4,["H3559"]],[4,6,["H5769"]],[6,9,["H3394"]],[9,13,["H539"]],[13,14,["H5707"]],[14,16,["H7834"]],[16,17,["H5542"]]]},{"k":15364,"v":[[0,2,["H859"]],[2,5,["H2186"]],[5,7,["H3988"]],[7,11,["H5674"]],[11,12,["H5973"]],[12,14,["H4899"]]]},{"k":15365,"v":[[0,4,["H5010"]],[4,6,["H1285"]],[6,9,["H5650"]],[9,12,["H2490"]],[12,14,["H5145"]],[14,20,["H776"]]]},{"k":15366,"v":[[0,4,["H6555"]],[4,5,["H3605"]],[5,7,["H1448"]],[7,10,["H7760"]],[10,13,["H4013"]],[13,15,["H4288"]]]},{"k":15367,"v":[[0,1,["H3605"]],[1,4,["H5674"]],[4,6,["H1870"]],[6,7,["H8155"]],[7,10,["H1961"]],[10,12,["H2781"]],[12,15,["H7934"]]]},{"k":15368,"v":[[0,4,["H7311"]],[4,7,["H3225"]],[7,10,["H6862"]],[10,14,["H3605"]],[14,16,["H341"]],[16,18,["H8055"]]]},{"k":15369,"v":[[0,3,["H637"]],[3,4,["H7725"]],[4,6,["H6697"]],[6,9,["H2719"]],[9,12,["H3808"]],[12,16,["H6965"]],[16,19,["H4421"]]]},{"k":15370,"v":[[0,5,["H4480","H2892"]],[5,7,["H7673"]],[7,9,["H4048"]],[9,11,["H3678"]],[11,15,["H776"]]]},{"k":15371,"v":[[0,2,["H3117"]],[2,5,["H5934"]],[5,8,["H7114"]],[8,11,["H5844","H5921"]],[11,14,["H955"]],[14,15,["H5542"]]]},{"k":15372,"v":[[0,2,["H5704","H4100"]],[2,3,["H3068"]],[3,7,["H5641"]],[7,9,["H5331"]],[9,12,["H2534"]],[12,13,["H1197"]],[13,14,["H3644"]],[14,15,["H784"]]]},{"k":15373,"v":[[0,1,["H2142"]],[1,2,["H4100"]],[2,3,["H2465"]],[3,4,["H589"]],[4,7,["H5921","H4100"]],[7,10,["H1254"]],[10,11,["H3605"]],[11,12,["H1121","H120"]],[12,14,["H7723"]]]},{"k":15374,"v":[[0,1,["H4310"]],[1,2,["H1397"]],[2,6,["H2421"]],[6,9,["H3808"]],[9,10,["H7200"]],[10,11,["H4194"]],[11,14,["H4422"]],[14,16,["H5315"]],[16,19,["H4480","H3027"]],[19,22,["H7585"]],[22,23,["H5542"]]]},{"k":15375,"v":[[0,1,["H136"]],[1,2,["H346"]],[2,5,["H7223"]],[5,6,["H2617"]],[6,9,["H7650"]],[9,11,["H1732"]],[11,14,["H530"]]]},{"k":15376,"v":[[0,1,["H2142"]],[1,2,["H136"]],[2,4,["H2781"]],[4,7,["H5650"]],[7,11,["H5375"]],[11,14,["H2436"]],[14,18,["H3605"]],[18,20,["H7227"]],[20,21,["H5971"]]]},{"k":15377,"v":[[0,1,["H834"]],[1,3,["H341"]],[3,5,["H2778"]],[5,7,["H3068"]],[7,8,["H834"]],[8,11,["H2778"]],[11,13,["H6119"]],[13,16,["H4899"]]]},{"k":15378,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,6,["H5769"]],[6,7,["H543"]],[7,9,["H543"]]]},{"k":15379,"v":[[0,1,["H136"]],[1,2,["H859"]],[2,4,["H1961"]],[4,7,["H4583"]],[7,10,["H1755","H1755"]]]},{"k":15380,"v":[[0,1,["H2962"]],[1,3,["H2022"]],[3,6,["H3205"]],[6,11,["H2342"]],[11,13,["H776"]],[13,16,["H8398"]],[16,19,["H4480","H5769"]],[19,20,["H5704"]],[20,21,["H5769"]],[21,22,["H859"]],[22,24,["H410"]]]},{"k":15381,"v":[[0,2,["H7725"]],[2,3,["H582"]],[3,4,["H5704"]],[4,5,["H1793"]],[5,7,["H559"]],[7,8,["H7725"]],[8,10,["H1121"]],[10,12,["H120"]]]},{"k":15382,"v":[[0,1,["H3588"]],[1,3,["H505"]],[3,4,["H8141"]],[4,7,["H5869"]],[7,11,["H3117","H865"]],[11,12,["H3588"]],[12,15,["H5674"]],[15,19,["H821"]],[19,22,["H3915"]]]},{"k":15383,"v":[[0,8,["H2229"]],[8,10,["H1961"]],[10,13,["H8142"]],[13,16,["H1242"]],[16,20,["H2682"]],[20,23,["H2498"]]]},{"k":15384,"v":[[0,3,["H1242"]],[3,5,["H6692"]],[5,8,["H2498"]],[8,11,["H6153"]],[11,15,["H4135"]],[15,17,["H3001"]]]},{"k":15385,"v":[[0,1,["H3588"]],[1,4,["H3615"]],[4,7,["H639"]],[7,11,["H2534"]],[11,14,["H926"]]]},{"k":15386,"v":[[0,3,["H7896"]],[3,5,["H5771"]],[5,6,["H5048"]],[6,9,["H5956"]],[9,13,["H3974"]],[13,16,["H6440"]]]},{"k":15387,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H3117"]],[4,7,["H6437"]],[7,10,["H5678"]],[10,12,["H3615"]],[12,14,["H8141"]],[14,15,["H3644"]],[15,17,["H1899"]],[17,20,[]]]},{"k":15388,"v":[[0,2,["H3117"]],[2,5,["H8141"]],[5,10,["H7657","H8141"]],[10,12,["H518"]],[12,16,["H1369"]],[16,19,["H8084"]],[19,20,["H8141"]],[20,24,["H7296"]],[24,25,["H5999"]],[25,27,["H205"]],[27,28,["H3588"]],[28,31,["H2440"]],[31,33,["H1468"]],[33,37,["H5774"]]]},{"k":15389,"v":[[0,1,["H4310"]],[1,2,["H3045"]],[2,4,["H5797"]],[4,7,["H639"]],[7,12,["H3374"]],[12,16,["H5678"]]]},{"k":15390,"v":[[0,1,["H3651"]],[1,2,["H3045"]],[2,5,["H4487"]],[5,7,["H3117"]],[7,11,["H935"]],[11,13,["H3824"]],[13,15,["H2451"]]]},{"k":15391,"v":[[0,1,["H7725"]],[1,3,["H3068"]],[3,5,["H5704","H4970"]],[5,9,["H5162"]],[9,11,["H5921"]],[11,13,["H5650"]]]},{"k":15392,"v":[[0,2,["H7646"]],[2,4,["H1242"]],[4,7,["H2617"]],[7,11,["H7442"]],[11,14,["H8055"]],[14,15,["H3605"]],[15,17,["H3117"]]]},{"k":15393,"v":[[0,3,["H8055"]],[3,7,["H3117"]],[7,11,["H6031"]],[11,15,["H8141"]],[15,19,["H7200"]],[19,20,["H7451"]]]},{"k":15394,"v":[[0,3,["H6467"]],[3,4,["H7200"]],[4,5,["H413"]],[5,7,["H5650"]],[7,10,["H1926"]],[10,11,["H5921"]],[11,13,["H1121"]]]},{"k":15395,"v":[[0,4,["H5278"]],[4,7,["H136"]],[7,9,["H430"]],[9,10,["H1961"]],[10,11,["H5921"]],[11,14,["H3559"]],[14,17,["H4639"]],[17,20,["H3027"]],[20,21,["H5921"]],[21,25,["H4639"]],[25,28,["H3027"]],[28,29,["H3559"]],[29,31,[]]]},{"k":15396,"v":[[0,3,["H3427"]],[3,7,["H5643"]],[7,11,["H5945"]],[11,13,["H3885"]],[13,16,["H6738"]],[16,19,["H7706"]]]},{"k":15397,"v":[[0,3,["H559"]],[3,6,["H3068"]],[6,10,["H4268"]],[10,13,["H4686"]],[13,15,["H430"]],[15,20,["H982"]]]},{"k":15398,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,4,["H5337"]],[4,8,["H4480","H6341"]],[8,11,["H3353"]],[11,16,["H4480","H1698","H1942"]]]},{"k":15399,"v":[[0,3,["H5526"]],[3,7,["H84"]],[7,9,["H8478"]],[9,11,["H3671"]],[11,14,["H2620"]],[14,16,["H571"]],[16,20,["H6793"]],[20,22,["H5507"]]]},{"k":15400,"v":[[0,3,["H3808"]],[3,5,["H3372"]],[5,8,["H4480","H6343"]],[8,10,["H3915"]],[10,14,["H4480","H2671"]],[14,16,["H5774"]],[16,18,["H3119"]]]},{"k":15401,"v":[[0,4,["H4480","H1698"]],[4,6,["H1980"]],[6,8,["H652"]],[8,12,["H4480","H6986"]],[12,14,["H7736"]],[14,16,["H6672"]]]},{"k":15402,"v":[[0,2,["H505"]],[2,4,["H5307"]],[4,7,["H4480","H6654"]],[7,10,["H7233"]],[10,14,["H4480","H3225"]],[14,18,["H3808"]],[18,20,["H5066","H413"]],[20,21,[]]]},{"k":15403,"v":[[0,1,["H7535"]],[1,4,["H5869"]],[4,7,["H5027"]],[7,9,["H7200"]],[9,11,["H8011"]],[11,14,["H7563"]]]},{"k":15404,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H7760"]],[4,6,["H3068"]],[6,10,["H4268"]],[10,14,["H5945"]],[14,16,["H4583"]]]},{"k":15405,"v":[[0,3,["H3808"]],[3,4,["H7451"]],[4,5,["H579","H413"]],[5,7,["H3808"]],[7,10,["H5061"]],[10,12,["H7126"]],[12,14,["H168"]]]},{"k":15406,"v":[[0,1,["H3588"]],[1,6,["H4397"]],[6,7,["H6680"]],[7,11,["H8104"]],[11,14,["H3605"]],[14,16,["H1870"]]]},{"k":15407,"v":[[0,5,["H5375"]],[5,6,["H5921"]],[6,8,["H3709"]],[8,9,["H6435"]],[9,11,["H5062"]],[11,13,["H7272"]],[13,16,["H68"]]]},{"k":15408,"v":[[0,3,["H1869"]],[3,4,["H5921"]],[4,6,["H7826"]],[6,8,["H6620"]],[8,11,["H3715"]],[11,14,["H8577"]],[14,19,["H7429"]]]},{"k":15409,"v":[[0,1,["H3588"]],[1,6,["H2836"]],[6,12,["H6403"]],[12,19,["H7682"]],[19,20,["H3588"]],[20,23,["H3045"]],[23,25,["H8034"]]]},{"k":15410,"v":[[0,4,["H7121"]],[4,9,["H6030"]],[9,11,["H595"]],[11,14,["H5973"]],[14,17,["H6869"]],[17,20,["H2502"]],[20,23,["H3513"]],[23,24,[]]]},{"k":15411,"v":[[0,2,["H753"]],[2,3,["H3117"]],[3,6,["H7646"]],[6,9,["H7200"]],[9,12,["H3444"]]]},{"k":15412,"v":[[0,4,["H2896"]],[4,8,["H3034"]],[8,11,["H3068"]],[11,15,["H2167"]],[15,18,["H8034"]],[18,21,["H5945"]]]},{"k":15413,"v":[[0,3,["H5046"]],[3,5,["H2617"]],[5,8,["H1242"]],[8,11,["H530"]],[11,13,["H3915"]]]},{"k":15414,"v":[[0,1,["H5921"]],[1,6,["H6218"]],[6,8,["H5921"]],[8,10,["H5035"]],[10,13,["H3658"]],[13,14,["H5921"]],[14,17,["H1902"]]]},{"k":15415,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,7,["H8055"]],[7,10,["H6467"]],[10,13,["H7442"]],[13,16,["H4639"]],[16,19,["H3027"]]]},{"k":15416,"v":[[0,2,["H3068"]],[2,3,["H4100"]],[3,4,["H1431"]],[4,7,["H4639"]],[7,10,["H4284"]],[10,12,["H3966"]],[12,13,["H6009"]]]},{"k":15417,"v":[[0,2,["H1198"]],[2,3,["H376"]],[3,4,["H3045"]],[4,5,["H3808"]],[5,6,["H3808"]],[6,9,["H3684"]],[9,10,["H995","(H853)"]],[10,11,["H2063"]]]},{"k":15418,"v":[[0,3,["H7563"]],[3,4,["H6524"]],[4,5,["H3644"]],[5,7,["H6212"]],[7,10,["H3605"]],[10,12,["H6466"]],[12,14,["H205"]],[14,16,["H6692"]],[16,23,["H8045"]],[23,25,["H5703","H5704"]]]},{"k":15419,"v":[[0,2,["H859"]],[2,3,["H3068"]],[3,6,["H4791"]],[6,8,["H5769"]]]},{"k":15420,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H341"]],[4,6,["H3068"]],[6,7,["H3588"]],[7,8,["H2009"]],[8,10,["H341"]],[10,12,["H6"]],[12,13,["H3605"]],[13,15,["H6466"]],[15,17,["H205"]],[17,20,["H6504"]]]},{"k":15421,"v":[[0,3,["H7161"]],[3,6,["H7311"]],[6,12,["H7214"]],[12,16,["H1101"]],[16,18,["H7488"]],[18,19,["H8081"]]]},{"k":15422,"v":[[0,2,["H5869"]],[2,5,["H5027"]],[5,10,["H7790"]],[10,13,["H241"]],[13,15,["H8085"]],[15,20,["H7489"]],[20,23,["H6965"]],[23,24,["H5921"]],[24,25,[]]]},{"k":15423,"v":[[0,2,["H6662"]],[2,4,["H6524"]],[4,8,["H8558"]],[8,11,["H7685"]],[11,14,["H730"]],[14,16,["H3844"]]]},{"k":15424,"v":[[0,4,["H8362"]],[4,7,["H1004"]],[7,10,["H3068"]],[10,12,["H6524"]],[12,15,["H2691"]],[15,18,["H430"]]]},{"k":15425,"v":[[0,3,["H5750"]],[3,6,["H5107"]],[6,9,["H7872"]],[9,12,["H1961"]],[12,13,["H1879"]],[13,15,["H7488"]]]},{"k":15426,"v":[[0,2,["H5046"]],[2,3,["H3588"]],[3,5,["H3068"]],[5,7,["H3477"]],[7,11,["H6697"]],[11,15,["H3808"]],[15,16,["H5766"]],[16,18,[]]]},{"k":15427,"v":[[0,2,["H3068"]],[2,3,["H4427"]],[3,6,["H3847"]],[6,8,["H1348"]],[8,10,["H3068"]],[10,12,["H3847"]],[12,14,["H5797"]],[14,19,["H247"]],[19,21,["H8398"]],[21,22,["H637"]],[22,24,["H3559"]],[24,27,["H1077"]],[27,29,["H4131"]]]},{"k":15428,"v":[[0,2,["H3678"]],[2,4,["H3559"]],[4,6,["H4480","H227"]],[6,7,["H859"]],[7,10,["H4480","H5769"]]]},{"k":15429,"v":[[0,2,["H5104"]],[2,5,["H5375"]],[5,7,["H3068"]],[7,9,["H5104"]],[9,12,["H5375"]],[12,14,["H6963"]],[14,16,["H5104"]],[16,18,["H5375"]],[18,20,["H1796"]]]},{"k":15430,"v":[[0,2,["H3068"]],[2,4,["H4791"]],[4,6,["H117"]],[6,9,["H4480","H6963"]],[9,11,["H7227"]],[11,12,["H4325"]],[12,16,["H117"]],[16,17,["H4867"]],[17,20,["H3220"]]]},{"k":15431,"v":[[0,2,["H5713"]],[2,4,["H3966"]],[4,5,["H539"]],[5,6,["H6944"]],[6,7,["H4998"]],[7,9,["H1004"]],[9,11,["H3068"]],[11,13,["H753","H3117"]]]},{"k":15432,"v":[[0,2,["H3068"]],[2,3,["H410"]],[3,6,["H5360"]],[6,9,["H410"]],[9,12,["H5360"]],[12,15,["H3313"]]]},{"k":15433,"v":[[0,3,["H5375"]],[3,5,["H8199"]],[5,8,["H776"]],[8,9,["H7725"]],[9,11,["H1576"]],[11,12,["H5921"]],[12,14,["H1343"]]]},{"k":15434,"v":[[0,1,["H3068"]],[1,3,["H5704","H4970"]],[3,6,["H7563"]],[6,8,["H5704","H4970"]],[8,11,["H7563"]],[11,12,["H5937"]]]},{"k":15435,"v":[[0,5,["H5042"]],[5,7,["H1696"]],[7,9,["H6277"]],[9,11,["H3605"]],[11,13,["H6466"]],[13,15,["H205"]],[15,17,["H559"]]]},{"k":15436,"v":[[0,4,["H1792"]],[4,6,["H5971"]],[6,8,["H3068"]],[8,10,["H6031"]],[10,12,["H5159"]]]},{"k":15437,"v":[[0,2,["H2026"]],[2,4,["H490"]],[4,7,["H1616"]],[7,9,["H7523"]],[9,11,["H3490"]]]},{"k":15438,"v":[[0,3,["H559"]],[3,5,["H3050"]],[5,7,["H3808"]],[7,8,["H7200"]],[8,9,["H3808"]],[9,12,["H430"]],[12,14,["H3290"]],[14,15,["H995"]],[15,16,[]]]},{"k":15439,"v":[[0,1,["H995"]],[1,3,["H1197"]],[3,6,["H5971"]],[6,9,["H3684"]],[9,10,["H4970"]],[10,14,["H7919"]]]},{"k":15440,"v":[[0,3,["H5193"]],[3,5,["H241"]],[5,8,["H3808"]],[8,9,["H8085"]],[9,12,["H3335"]],[12,14,["H5869"]],[14,17,["H3808"]],[17,18,["H5027"]]]},{"k":15441,"v":[[0,3,["H3256"]],[3,5,["H1471"]],[5,7,["H3808"]],[7,9,["H3198"]],[9,12,["H3925"]],[12,13,["H120"]],[13,14,["H1847"]],[14,18,[]]]},{"k":15442,"v":[[0,2,["H3068"]],[2,3,["H3045"]],[3,5,["H4284"]],[5,7,["H120"]],[7,8,["H3588"]],[8,9,["H1992"]],[9,11,["H1892"]]]},{"k":15443,"v":[[0,1,["H835"]],[1,4,["H1397"]],[4,5,["H834"]],[5,7,["H3256"]],[7,9,["H3050"]],[9,11,["H3925"]],[11,16,["H4480","H8451"]]]},{"k":15444,"v":[[0,6,["H8252"]],[6,9,["H4480","H3117"]],[9,11,["H7451"]],[11,12,["H5704"]],[12,14,["H7845"]],[14,16,["H3738"]],[16,19,["H7563"]]]},{"k":15445,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H3808"]],[5,7,["H5203"]],[7,9,["H5971"]],[9,10,["H3808"]],[10,13,["H5800"]],[13,15,["H5159"]]]},{"k":15446,"v":[[0,1,["H3588"]],[1,2,["H4941"]],[2,4,["H7725"]],[4,5,["H5704"]],[5,6,["H6664"]],[6,8,["H3605"]],[8,10,["H3477"]],[10,12,["H3820"]],[12,14,["H310"]],[14,15,[]]]},{"k":15447,"v":[[0,1,["H4310"]],[1,4,["H6965"]],[4,7,["H5973"]],[7,9,["H7489"]],[9,11,["H4310"]],[11,14,["H3320"]],[14,17,["H5973"]],[17,19,["H6466"]],[19,21,["H205"]]]},{"k":15448,"v":[[0,1,["H3884"]],[1,3,["H3068"]],[3,7,["H5833"]],[7,9,["H5315"]],[9,11,["H4592"]],[11,12,["H7931"]],[12,14,["H1745"]]]},{"k":15449,"v":[[0,1,["H518"]],[1,3,["H559"]],[3,5,["H7272"]],[5,6,["H4131"]],[6,8,["H2617"]],[8,10,["H3068"]],[10,13,["H5582"]]]},{"k":15450,"v":[[0,3,["H7230"]],[3,6,["H8312"]],[6,7,["H7130"]],[7,10,["H8575"]],[10,11,["H8173"]],[11,13,["H5315"]]]},{"k":15451,"v":[[0,3,["H3678"]],[3,5,["H1942"]],[5,7,["H2266"]],[7,11,["H3335"]],[11,12,["H5999"]],[12,13,["H5921"]],[13,15,["H2706"]]]},{"k":15452,"v":[[0,4,["H1413"]],[4,5,["H5921"]],[5,7,["H5315"]],[7,10,["H6662"]],[10,12,["H7561"]],[12,14,["H5355"]],[14,15,["H1818"]]]},{"k":15453,"v":[[0,3,["H3068"]],[3,4,["H1961"]],[4,6,["H4869"]],[6,9,["H430"]],[9,12,["H6697"]],[12,15,["H4268"]]]},{"k":15454,"v":[[0,4,["H7725"]],[4,5,["H5921"]],[5,6,["(H853)"]],[6,9,["H205"]],[9,14,["H6789"]],[14,18,["H7451"]],[18,21,["H3068"]],[21,23,["H430"]],[23,27,["H6789"]]]},{"k":15455,"v":[[0,2,["H1980"]],[2,5,["H7442"]],[5,8,["H3068"]],[8,14,["H7321"]],[14,17,["H6697"]],[17,20,["H3468"]]]},{"k":15456,"v":[[0,4,["H6923"]],[4,6,["H6440"]],[6,8,["H8426"]],[8,13,["H7321"]],[13,17,["H2158"]]]},{"k":15457,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,6,["H1419"]],[6,7,["H410"]],[7,10,["H1419"]],[10,11,["H4428"]],[11,12,["H5921"]],[12,13,["H3605"]],[13,14,["H430"]]]},{"k":15458,"v":[[0,3,["H3027"]],[3,7,["H4278"]],[7,10,["H776"]],[10,12,["H8443"]],[12,15,["H2022"]],[15,18,[]]]},{"k":15459,"v":[[0,2,["H3220"]],[2,6,["H1931"]],[6,7,["H6213"]],[7,11,["H3027"]],[11,12,["H3335"]],[12,14,["H3006"]],[14,15,[]]]},{"k":15460,"v":[[0,2,["H935"]],[2,5,["H7812"]],[5,8,["H3766"]],[8,11,["H1288"]],[11,12,["H6440"]],[12,14,["H3068"]],[14,16,["H6213"]]]},{"k":15461,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,5,["H430"]],[5,7,["H587"]],[7,10,["H5971"]],[10,13,["H4830"]],[13,16,["H6629"]],[16,19,["H3027"]],[19,21,["H3117"]],[21,22,["H518"]],[22,25,["H8085"]],[25,27,["H6963"]]]},{"k":15462,"v":[[0,1,["H7185"]],[1,2,["H408"]],[2,4,["H3824"]],[4,8,["H4808"]],[8,13,["H3117"]],[13,15,["H4531"]],[15,18,["H4057"]]]},{"k":15463,"v":[[0,1,["H834"]],[1,3,["H1"]],[3,4,["H5254"]],[4,6,["H974"]],[6,8,["H1571"]],[8,9,["H7200"]],[9,11,["H6467"]]]},{"k":15464,"v":[[0,1,["H705"]],[1,2,["H8141"]],[2,6,["H6962"]],[6,9,["H1755"]],[9,11,["H559"]],[11,12,["H1992"]],[12,15,["H5971"]],[15,18,["H8582"]],[18,21,["H3824"]],[21,23,["H1992"]],[23,25,["H3808"]],[25,26,["H3045"]],[26,28,["H1870"]]]},{"k":15465,"v":[[0,2,["H834"]],[2,4,["H7650"]],[4,7,["H639"]],[7,8,["H518"]],[8,12,["H935"]],[12,13,["H413"]],[13,15,["H4496"]]]},{"k":15466,"v":[[0,2,["H7891"]],[2,5,["H3068"]],[5,7,["H2319"]],[7,8,["H7892"]],[8,9,["H7891"]],[9,12,["H3068"]],[12,13,["H3605"]],[13,15,["H776"]]]},{"k":15467,"v":[[0,1,["H7891"]],[1,4,["H3068"]],[4,5,["H1288"]],[5,7,["H8034"]],[7,9,["H1319"]],[9,11,["H3444"]],[11,13,["H4480","H3117"]],[13,15,["H3117"]]]},{"k":15468,"v":[[0,1,["H5608"]],[1,3,["H3519"]],[3,6,["H1471"]],[6,8,["H6381"]],[8,10,["H3605"]],[10,11,["H5971"]]]},{"k":15469,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H1419"]],[5,7,["H3966"]],[7,10,["H1984"]],[10,11,["H1931"]],[11,15,["H3372"]],[15,16,["H5921"]],[16,17,["H3605"]],[17,18,["H430"]]]},{"k":15470,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H430"]],[4,7,["H5971"]],[7,9,["H457"]],[9,12,["H3068"]],[12,13,["H6213"]],[13,15,["H8064"]]]},{"k":15471,"v":[[0,1,["H1935"]],[1,3,["H1926"]],[3,5,["H6440"]],[5,7,["H5797"]],[7,9,["H8597"]],[9,13,["H4720"]]]},{"k":15472,"v":[[0,1,["H3051"]],[1,4,["H3068"]],[4,7,["H4940"]],[7,10,["H5971"]],[10,11,["H3051"]],[11,14,["H3068"]],[14,15,["H3519"]],[15,17,["H5797"]]]},{"k":15473,"v":[[0,1,["H3051"]],[1,4,["H3068"]],[4,6,["H3519"]],[6,10,["H8034"]],[10,11,["H5375"]],[11,13,["H4503"]],[13,15,["H935"]],[15,18,["H2691"]]]},{"k":15474,"v":[[0,2,["H7812"]],[2,4,["H3068"]],[4,7,["H1927"]],[7,9,["H6944"]],[9,10,["H2342"]],[10,11,["H4480","H6440"]],[11,13,["H3605"]],[13,15,["H776"]]]},{"k":15475,"v":[[0,1,["H559"]],[1,4,["H1471"]],[4,7,["H3068"]],[7,8,["H4427"]],[8,10,["H8398"]],[10,11,["H637"]],[11,14,["H3559"]],[14,18,["H1077"]],[18,20,["H4131"]],[20,23,["H1777"]],[23,25,["H5971"]],[25,26,["H4339"]]]},{"k":15476,"v":[[0,3,["H8064"]],[3,4,["H8055"]],[4,8,["H776"]],[8,10,["H1523"]],[10,13,["H3220"]],[13,14,["H7481"]],[14,17,["H4393"]],[17,18,[]]]},{"k":15477,"v":[[0,3,["H7704"]],[3,5,["H5937"]],[5,7,["H3605"]],[7,8,["H834"]],[8,11,["H227"]],[11,13,["H3605"]],[13,15,["H6086"]],[15,18,["H3293"]],[18,19,["H7442"]]]},{"k":15478,"v":[[0,1,["H6440"]],[1,3,["H3068"]],[3,4,["H3588"]],[4,6,["H935"]],[6,7,["H3588"]],[7,9,["H935"]],[9,11,["H8199"]],[11,13,["H776"]],[13,16,["H8199"]],[16,18,["H8398"]],[18,20,["H6664"]],[20,23,["H5971"]],[23,26,["H530"]]]},{"k":15479,"v":[[0,2,["H3068"]],[2,3,["H4427"]],[3,6,["H776"]],[6,7,["H1523"]],[7,10,["H7227"]],[10,12,["H339"]],[12,14,["H8055"]],[14,15,[]]]},{"k":15480,"v":[[0,1,["H6051"]],[1,3,["H6205"]],[3,6,["H5439"]],[6,8,["H6664"]],[8,10,["H4941"]],[10,13,["H4349"]],[13,16,["H3678"]]]},{"k":15481,"v":[[0,2,["H784"]],[2,3,["H1980"]],[3,4,["H6440"]],[4,8,["H3857"]],[8,10,["H6862"]],[10,12,["H5439"]]]},{"k":15482,"v":[[0,2,["H1300"]],[2,3,["H215"]],[3,5,["H8398"]],[5,7,["H776"]],[7,8,["H7200"]],[8,10,["H2342"]]]},{"k":15483,"v":[[0,2,["H2022"]],[2,3,["H4549"]],[3,5,["H1749"]],[5,8,["H4480","H6440"]],[8,11,["H3068"]],[11,14,["H4480","H6440"]],[14,17,["H113"]],[17,20,["H3605"]],[20,21,["H776"]]]},{"k":15484,"v":[[0,2,["H8064"]],[2,3,["H5046"]],[3,5,["H6664"]],[5,7,["H3605"]],[7,9,["H5971"]],[9,10,["H7200"]],[10,12,["H3519"]]]},{"k":15485,"v":[[0,1,["H954"]],[1,3,["H3605"]],[3,6,["H5647"]],[6,8,["H6459"]],[8,11,["H1984"]],[11,13,["H457"]],[13,14,["H7812"]],[14,16,["H3605"]],[16,18,["H430"]]]},{"k":15486,"v":[[0,1,["H6726"]],[1,2,["H8085"]],[2,5,["H8055"]],[5,8,["H1323"]],[8,10,["H3063"]],[10,11,["H1523"]],[11,13,["H4616"]],[13,15,["H4941"]],[15,17,["H3068"]]]},{"k":15487,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,3,["H3068"]],[3,5,["H5945"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,9,["H776"]],[9,12,["H5927"]],[12,13,["H3966"]],[13,14,["H5921"]],[14,15,["H3605"]],[15,16,["H430"]]]},{"k":15488,"v":[[0,3,["H157"]],[3,5,["H3068"]],[5,6,["H8130"]],[6,7,["H7451"]],[7,9,["H8104"]],[9,11,["H5315"]],[11,14,["H2623"]],[14,16,["H5337"]],[16,21,["H4480","H3027"]],[21,24,["H7563"]]]},{"k":15489,"v":[[0,1,["H216"]],[1,3,["H2232"]],[3,6,["H6662"]],[6,8,["H8057"]],[8,11,["H3477"]],[11,13,["H3820"]]]},{"k":15490,"v":[[0,1,["H8055"]],[1,4,["H3068"]],[4,6,["H6662"]],[6,9,["H3034"]],[9,12,["H2143"]],[12,15,["H6944"]]]},{"k":15491,"v":[[0,2,["H7891"]],[2,5,["H3068"]],[5,7,["H2319"]],[7,8,["H7892"]],[8,9,["H3588"]],[9,12,["H6213"]],[12,14,["H6381"]],[14,17,["H3225"]],[17,20,["H6944"]],[20,21,["H2220"]],[21,26,["H3467"]]]},{"k":15492,"v":[[0,2,["H3068"]],[2,5,["H3045"]],[5,7,["H3444"]],[7,9,["H6666"]],[9,13,["H1540"]],[13,16,["H5869"]],[16,19,["H1471"]]]},{"k":15493,"v":[[0,3,["H2142"]],[3,5,["H2617"]],[5,8,["H530"]],[8,11,["H1004"]],[11,13,["H3478"]],[13,14,["H3605"]],[14,16,["H657"]],[16,19,["H776"]],[19,21,["H7200","(H853)"]],[21,23,["H3444"]],[23,26,["H430"]]]},{"k":15494,"v":[[0,4,["H7321"]],[4,7,["H3068"]],[7,8,["H3605"]],[8,10,["H776"]],[10,14,["H6476"]],[14,16,["H7442"]],[16,19,["H2167"]]]},{"k":15495,"v":[[0,1,["H2167"]],[1,4,["H3068"]],[4,7,["H3658"]],[7,10,["H3658"]],[10,13,["H6963"]],[13,16,["H2172"]]]},{"k":15496,"v":[[0,2,["H2689"]],[2,4,["H6963"]],[4,6,["H7782"]],[6,10,["H7321"]],[10,11,["H6440"]],[11,13,["H3068"]],[13,15,["H4428"]]]},{"k":15497,"v":[[0,3,["H3220"]],[3,4,["H7481"]],[4,7,["H4393"]],[7,10,["H8398"]],[10,14,["H3427"]],[14,15,[]]]},{"k":15498,"v":[[0,3,["H5104"]],[3,4,["H4222"]],[4,6,["H3709"]],[6,9,["H2022"]],[9,11,["H7442"]],[11,12,["H3162"]]]},{"k":15499,"v":[[0,1,["H6440"]],[1,3,["H3068"]],[3,4,["H3588"]],[4,6,["H935"]],[6,8,["H8199"]],[8,10,["H776"]],[10,12,["H6664"]],[12,15,["H8199"]],[15,17,["H8398"]],[17,20,["H5971"]],[20,22,["H4339"]]]},{"k":15500,"v":[[0,2,["H3068"]],[2,3,["H4427"]],[3,6,["H5971"]],[6,7,["H7264"]],[7,9,["H3427"]],[9,12,["H3742"]],[12,15,["H776"]],[15,17,["H5120"]]]},{"k":15501,"v":[[0,2,["H3068"]],[2,4,["H1419"]],[4,6,["H6726"]],[6,8,["H1931"]],[8,10,["H7311"]],[10,11,["H5921"]],[11,12,["H3605"]],[12,14,["H5971"]]]},{"k":15502,"v":[[0,3,["H3034"]],[3,5,["H1419"]],[5,7,["H3372"]],[7,8,["H8034"]],[8,10,["H1931"]],[10,12,["H6918"]]]},{"k":15503,"v":[[0,2,["H4428"]],[2,3,["H5797"]],[3,5,["H157"]],[5,6,["H4941"]],[6,7,["H859"]],[7,9,["H3559"]],[9,10,["H4339"]],[10,11,["H859"]],[11,12,["H6213"]],[12,13,["H4941"]],[13,15,["H6666"]],[15,17,["H3290"]]]},{"k":15504,"v":[[0,1,["H7311"]],[1,4,["H3068"]],[4,6,["H430"]],[6,8,["H7812"]],[8,11,["H1916","H7272"]],[11,13,["H1931"]],[13,15,["H6918"]]]},{"k":15505,"v":[[0,1,["H4872"]],[1,3,["H175"]],[3,6,["H3548"]],[6,8,["H8050"]],[8,13,["H7121"]],[13,15,["H8034"]],[15,17,["H7121"]],[17,18,["H413"]],[18,20,["H3068"]],[20,22,["H1931"]],[22,23,["H6030"]],[23,24,[]]]},{"k":15506,"v":[[0,2,["H1696"]],[2,3,["H413"]],[3,7,["H6051"]],[7,8,["H5982"]],[8,10,["H8104"]],[10,12,["H5713"]],[12,15,["H2706"]],[15,18,["H5414"]],[18,19,[]]]},{"k":15507,"v":[[0,2,["H6030"]],[2,5,["H3068"]],[5,7,["H430"]],[7,8,["H859"]],[8,9,["H1961"]],[9,11,["H410"]],[11,13,["H5375"]],[13,18,["H5358"]],[18,19,["H5921"]],[19,21,["H5949"]]]},{"k":15508,"v":[[0,1,["H7311"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H7812"]],[7,10,["H6944"]],[10,11,["H2022"]],[11,12,["H3588"]],[12,14,["H3068"]],[14,16,["H430"]],[16,18,["H6918"]]]},{"k":15509,"v":[[0,4,["H7321"]],[4,7,["H3068"]],[7,8,["H3605"]],[8,10,["H776"]]]},{"k":15510,"v":[[0,1,["H5647"]],[1,2,["(H853)"]],[2,3,["H3068"]],[3,5,["H8057"]],[5,6,["H935"]],[6,9,["H6440"]],[9,11,["H7445"]]]},{"k":15511,"v":[[0,1,["H3045"]],[1,3,["H3588"]],[3,5,["H3068"]],[5,6,["H1931"]],[6,8,["H430"]],[8,11,["H1931"]],[11,14,["H6213"]],[14,17,["H3808"]],[17,19,["H587"]],[19,23,["H5971"]],[23,26,["H6629"]],[26,29,["H4830"]]]},{"k":15512,"v":[[0,1,["H935"]],[1,4,["H8179"]],[4,6,["H8426"]],[6,10,["H2691"]],[10,12,["H8416"]],[12,14,["H3034"]],[14,18,["H1288"]],[18,20,["H8034"]]]},{"k":15513,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H2896"]],[5,7,["H2617"]],[7,9,["H5769"]],[9,12,["H530"]],[12,14,["H5704"]],[14,16,["H1755","H1755"]]]},{"k":15514,"v":[[0,3,["H7891"]],[3,5,["H2617"]],[5,7,["H4941"]],[7,11,["H3068"]],[11,14,["H2167"]]]},{"k":15515,"v":[[0,5,["H7919"]],[5,8,["H8549"]],[8,9,["H1870"]],[9,11,["H4970"]],[11,14,["H935"]],[14,15,["H413"]],[15,19,["H1980"]],[19,20,["H7130"]],[20,22,["H1004"]],[22,25,["H8537"]],[25,26,["H3824"]]]},{"k":15516,"v":[[0,3,["H7896"]],[3,4,["H3808"]],[4,5,["H1100"]],[5,6,["H1697"]],[6,7,["H5048"]],[7,9,["H5869"]],[9,11,["H8130"]],[11,13,["H6213"]],[13,18,["H7750"]],[18,21,["H3808"]],[21,22,["H1692"]],[22,24,[]]]},{"k":15517,"v":[[0,2,["H6141"]],[2,3,["H3824"]],[3,5,["H5493"]],[5,6,["H4480"]],[6,10,["H3808"]],[10,11,["H3045"]],[11,13,["H7451"]],[13,14,[]]]},{"k":15518,"v":[[0,2,["H5643"]],[2,3,["H3960"]],[3,5,["H7453"]],[5,10,["H6789"]],[10,15,["H1362"]],[15,16,["H5869"]],[16,19,["H7342"]],[19,20,["H3824"]],[20,22,["H3808"]],[22,24,["H3201"]]]},{"k":15519,"v":[[0,2,["H5869"]],[2,7,["H539"]],[7,10,["H776"]],[10,14,["H3427"]],[14,15,["H5978"]],[15,19,["H1980"]],[19,22,["H8549"]],[22,23,["H1870"]],[23,24,["H1931"]],[24,26,["H8334"]],[26,27,[]]]},{"k":15520,"v":[[0,3,["H6213"]],[3,4,["H7423"]],[4,6,["H3808"]],[6,7,["H3427"]],[7,8,["H7130"]],[8,10,["H1004"]],[10,13,["H1696"]],[13,14,["H8267"]],[14,16,["H3808"]],[16,17,["H3559"]],[17,18,["H5048"]],[18,20,["H5869"]]]},{"k":15521,"v":[[0,3,["H1242"]],[3,4,["H6789"]],[4,5,["H3605"]],[5,7,["H7563"]],[7,10,["H776"]],[10,15,["H3772"]],[15,16,["H3605"]],[16,17,["H205"]],[17,18,["H6466"]],[18,21,["H4480","H5892"]],[21,24,["H3068"]]]},{"k":15522,"v":[[0,1,["H8085"]],[1,3,["H8605"]],[3,5,["H3068"]],[5,9,["H7775"]],[9,10,["H935"]],[10,11,["H413"]],[11,12,[]]]},{"k":15523,"v":[[0,1,["H5641"]],[1,2,["H408"]],[2,4,["H6440"]],[4,5,["H4480"]],[5,9,["H3117"]],[9,14,["H6862"]],[14,15,["H5186"]],[15,17,["H241"]],[17,18,["H413"]],[18,22,["H3117"]],[22,25,["H7121"]],[25,26,["H6030"]],[26,28,["H4116"]]]},{"k":15524,"v":[[0,1,["H3588"]],[1,3,["H3117"]],[3,5,["H3615"]],[5,7,["H6227"]],[7,10,["H6106"]],[10,12,["H2787"]],[12,13,["H3644"]],[13,15,["H4168"]]]},{"k":15525,"v":[[0,2,["H3820"]],[2,4,["H5221"]],[4,6,["H3001"]],[6,8,["H6212"]],[8,9,["H3588"]],[9,12,["H7911"]],[12,14,["H4480","H398"]],[14,16,["H3899"]]]},{"k":15526,"v":[[0,5,["H4480","H6963"]],[5,8,["H585"]],[8,10,["H6106"]],[10,11,["H1692"]],[11,14,["H1320"]]]},{"k":15527,"v":[[0,3,["H1819"]],[3,5,["H6893"]],[5,8,["H4057"]],[8,10,["H1961"]],[10,13,["H3563"]],[13,16,["H2723"]]]},{"k":15528,"v":[[0,2,["H8245"]],[2,4,["H1961"]],[4,7,["H6833"]],[7,8,["H909"]],[8,9,["H5921"]],[9,12,["H1406"]]]},{"k":15529,"v":[[0,2,["H341"]],[2,3,["H2778"]],[3,5,["H3605"]],[5,7,["H3117"]],[7,12,["H1984"]],[12,16,["H7650"]],[16,18,[]]]},{"k":15530,"v":[[0,1,["H3588"]],[1,4,["H398"]],[4,5,["H665"]],[5,7,["H3899"]],[7,9,["H4537"]],[9,11,["H8249"]],[11,13,["H1065"]]]},{"k":15531,"v":[[0,1,["H4480","H6440"]],[1,4,["H2195"]],[4,7,["H7110"]],[7,8,["H3588"]],[8,13,["H5375"]],[13,17,["H7993"]]]},{"k":15532,"v":[[0,2,["H3117"]],[2,6,["H6738"]],[6,8,["H5186"]],[8,10,["H589"]],[10,12,["H3001"]],[12,14,["H6212"]]]},{"k":15533,"v":[[0,2,["H859"]],[2,4,["H3068"]],[4,6,["H3427"]],[6,8,["H5769"]],[8,11,["H2143"]],[11,14,["H1755","H1755"]]]},{"k":15534,"v":[[0,1,["H859"]],[1,3,["H6965"]],[3,7,["H7355"]],[7,8,["H6726"]],[8,9,["H3588"]],[9,11,["H6256"]],[11,13,["H2603"]],[13,15,["H3588"]],[15,18,["H4150"]],[18,20,["H935"]]]},{"k":15535,"v":[[0,1,["H3588"]],[1,3,["H5650"]],[3,6,["H7521","(H853)"]],[6,8,["H68"]],[8,10,["H2603"]],[10,12,["H6083"]],[12,13,[]]]},{"k":15536,"v":[[0,3,["H1471"]],[3,5,["H3372","(H853)"]],[5,7,["H8034"]],[7,10,["H3068"]],[10,12,["H3605"]],[12,14,["H4428"]],[14,17,["H776","(H853)"]],[17,19,["H3519"]]]},{"k":15537,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,6,["H1129"]],[6,7,["H6726"]],[7,10,["H7200"]],[10,13,["H3519"]]]},{"k":15538,"v":[[0,3,["H6437","H413"]],[3,5,["H8605"]],[5,8,["H6199"]],[8,10,["H3808"]],[10,11,["H959","(H853)"]],[11,13,["H8605"]]]},{"k":15539,"v":[[0,1,["H2063"]],[1,4,["H3789"]],[4,7,["H1755"]],[7,9,["H314"]],[9,12,["H5971"]],[12,16,["H1254"]],[16,18,["H1984"]],[18,20,["H3050"]]]},{"k":15540,"v":[[0,1,["H3588"]],[1,5,["H8259"]],[5,8,["H4480","H4791"]],[8,11,["H6944"]],[11,13,["H4480","H8064"]],[13,16,["H3068"]],[16,17,["H5027","H413"]],[17,19,["H776"]]]},{"k":15541,"v":[[0,2,["H8085"]],[2,4,["H603"]],[4,7,["H615"]],[7,9,["H6605"]],[9,13,["H1121"]],[13,15,["H8546"]]]},{"k":15542,"v":[[0,2,["H5608"]],[2,4,["H8034"]],[4,7,["H3068"]],[7,9,["H6726"]],[9,12,["H8416"]],[12,14,["H3389"]]]},{"k":15543,"v":[[0,3,["H5971"]],[3,5,["H6908"]],[5,6,["H3162"]],[6,9,["H4467"]],[9,11,["H5647","(H853)"]],[11,13,["H3068"]]]},{"k":15544,"v":[[0,2,["H6031"]],[2,4,["H3581"]],[4,7,["H1870"]],[7,9,["H7114"]],[9,11,["H3117"]]]},{"k":15545,"v":[[0,2,["H559"]],[2,5,["H410"]],[5,6,["H5927"]],[6,8,["H408"]],[8,12,["H2677"]],[12,15,["H3117"]],[15,17,["H8141"]],[17,21,["H1755","H1755"]]]},{"k":15546,"v":[[0,2,["H6440"]],[2,7,["H3245"]],[7,10,["H776"]],[10,13,["H8064"]],[13,16,["H4639"]],[16,19,["H3027"]]]},{"k":15547,"v":[[0,1,["H1992"]],[1,3,["H6"]],[3,5,["H859"]],[5,7,["H5975"]],[7,9,["H3605"]],[9,14,["H1086"]],[14,17,["H899"]],[17,20,["H3830"]],[20,23,["H2498"]],[23,29,["H2498"]]]},{"k":15548,"v":[[0,2,["H859"]],[2,5,["H1931"]],[5,8,["H8141"]],[8,11,["H3808"]],[11,12,["H8552"]]]},{"k":15549,"v":[[0,2,["H1121"]],[2,5,["H5650"]],[5,7,["H7931"]],[7,10,["H2233"]],[10,13,["H3559"]],[13,14,["H6440"]],[14,15,[]]]},{"k":15550,"v":[[0,1,["H1288","(H853)"]],[1,3,["H3068"]],[3,6,["H5315"]],[6,8,["H3605"]],[8,11,["H7130"]],[11,13,["(H853)"]],[13,15,["H6944"]],[15,16,["H8034"]]]},{"k":15551,"v":[[0,1,["H1288","(H853)"]],[1,3,["H3068"]],[3,6,["H5315"]],[6,8,["H7911"]],[8,9,["H408"]],[9,10,["H3605"]],[10,12,["H1576"]]]},{"k":15552,"v":[[0,2,["H5545"]],[2,3,["H3605"]],[3,5,["H5771"]],[5,7,["H7495"]],[7,8,["H3605"]],[8,10,["H8463"]]]},{"k":15553,"v":[[0,2,["H1350"]],[2,4,["H2416"]],[4,6,["H4480","H7845"]],[6,8,["H5849"]],[8,11,["H2617"]],[11,14,["H7356"]]]},{"k":15554,"v":[[0,2,["H7646"]],[2,4,["H5716"]],[4,6,["H2896"]],[6,11,["H5271"]],[11,13,["H2318"]],[13,16,["H5404"]]]},{"k":15555,"v":[[0,2,["H3068"]],[2,3,["H6213"]],[3,4,["H6666"]],[4,6,["H4941"]],[6,8,["H3605"]],[8,11,["H6231"]]]},{"k":15556,"v":[[0,3,["H3045"]],[3,5,["H1870"]],[5,7,["H4872"]],[7,9,["H5949"]],[9,12,["H1121"]],[12,14,["H3478"]]]},{"k":15557,"v":[[0,2,["H3068"]],[2,4,["H7349"]],[4,6,["H2587"]],[6,7,["H750"]],[7,9,["H639"]],[9,11,["H7227"]],[11,13,["H2617"]]]},{"k":15558,"v":[[0,3,["H3808"]],[3,4,["H5331"]],[4,5,["H7378"]],[5,6,["H3808"]],[6,9,["H5201"]],[9,13,["H5769"]]]},{"k":15559,"v":[[0,3,["H3808"]],[3,4,["H6213"]],[4,9,["H2399"]],[9,10,["H3808"]],[10,11,["H1580","H5921"]],[11,16,["H5771"]]]},{"k":15560,"v":[[0,1,["H3588"]],[1,4,["H8064"]],[4,6,["H1361"]],[6,7,["H5921"]],[7,9,["H776"]],[9,11,["H1396"]],[11,14,["H2617"]],[14,15,["H5921"]],[15,18,["H3373"]],[18,19,[]]]},{"k":15561,"v":[[0,2,["H7350"]],[2,5,["H4217"]],[5,9,["H4480","H4628"]],[9,14,["H7368","(H853)"]],[14,16,["H6588"]],[16,17,["H4480"]],[17,18,[]]]},{"k":15562,"v":[[0,4,["H1"]],[4,5,["H7355","H5921"]],[5,7,["H1121"]],[7,10,["H3068"]],[10,11,["H7355","H5921"]],[11,14,["H3373"]],[14,15,[]]]},{"k":15563,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,3,["H3045"]],[3,5,["H3336"]],[5,7,["H2142"]],[7,8,["H3588"]],[8,9,["H587"]],[9,11,["H6083"]]]},{"k":15564,"v":[[0,3,["H582"]],[3,5,["H3117"]],[5,8,["H2682"]],[8,11,["H6731"]],[11,14,["H7704"]],[14,15,["H3651"]],[15,17,["H6692"]]]},{"k":15565,"v":[[0,1,["H3588"]],[1,3,["H7307"]],[3,4,["H5674"]],[4,10,["H369"]],[10,13,["H4725"]],[13,16,["H5234"]],[16,18,["H3808"]],[18,19,["H5750"]]]},{"k":15566,"v":[[0,3,["H2617"]],[3,6,["H3068"]],[6,9,["H4480","H5769"]],[9,10,["H5704"]],[10,11,["H5769"]],[11,12,["H5921"]],[12,15,["H3373"]],[15,19,["H6666"]],[19,21,["H1121"]],[21,22,["H1121"]]]},{"k":15567,"v":[[0,4,["H8104"]],[4,6,["H1285"]],[6,11,["H2142"]],[11,13,["H6490"]],[13,15,["H6213"]],[15,16,[]]]},{"k":15568,"v":[[0,2,["H3068"]],[2,4,["H3559"]],[4,6,["H3678"]],[6,9,["H8064"]],[9,12,["H4438"]],[12,13,["H4910"]],[13,15,["H3605"]]]},{"k":15569,"v":[[0,1,["H1288"]],[1,3,["H3068"]],[3,6,["H4397"]],[6,8,["H1368"]],[8,10,["H3581"]],[10,12,["H6213"]],[12,14,["H1697"]],[14,15,["H8085"]],[15,18,["H6963"]],[18,21,["H1697"]]]},{"k":15570,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,5,["H3605"]],[5,8,["H6635"]],[8,10,["H8334"]],[10,14,["H6213"]],[14,16,["H7522"]]]},{"k":15571,"v":[[0,1,["H1288"]],[1,3,["H3068"]],[3,4,["H3605"]],[4,6,["H4639"]],[6,8,["H3605"]],[8,9,["H4725"]],[9,12,["H4475"]],[12,13,["H1288","(H853)"]],[13,15,["H3068"]],[15,18,["H5315"]]]},{"k":15572,"v":[[0,1,["H1288","(H853)"]],[1,3,["H3068"]],[3,6,["H5315"]],[6,8,["H3068"]],[8,10,["H430"]],[10,13,["H3966"]],[13,14,["H1431"]],[14,17,["H3847"]],[17,19,["H1935"]],[19,21,["H1926"]]]},{"k":15573,"v":[[0,2,["H5844"]],[2,5,["H216"]],[5,9,["H8008"]],[9,12,["H5186"]],[12,14,["H8064"]],[14,17,["H3407"]]]},{"k":15574,"v":[[0,4,["H7136"]],[4,7,["H5944"]],[7,10,["H4325"]],[10,12,["H7760"]],[12,14,["H5645"]],[14,16,["H7398"]],[16,18,["H1980"]],[18,19,["H5921"]],[19,21,["H3671"]],[21,24,["H7307"]]]},{"k":15575,"v":[[0,2,["H6213"]],[2,4,["H4397"]],[4,5,["H7307"]],[5,7,["H8334"]],[7,9,["H3857"]],[9,10,["H784"]]]},{"k":15576,"v":[[0,2,["H3245","H5921"]],[2,4,["H4349"]],[4,7,["H776"]],[7,11,["H1077"]],[11,13,["H4131"]],[13,15,["H5769","H5703"]]]},{"k":15577,"v":[[0,2,["H3680"]],[2,6,["H8415"]],[6,10,["H3830"]],[10,12,["H4325"]],[12,13,["H5975"]],[13,14,["H5921"]],[14,16,["H2022"]]]},{"k":15578,"v":[[0,1,["H4480"]],[1,3,["H1606"]],[3,5,["H5127"]],[5,6,["H4480"]],[6,8,["H6963"]],[8,11,["H7482"]],[11,14,["H2648"]]]},{"k":15579,"v":[[0,3,["H5927"]],[3,6,["H2022"]],[6,9,["H3381"]],[9,12,["H1237"]],[12,13,["H413"]],[13,15,["H4725"]],[15,16,["H2088"]],[16,19,["H3245"]],[19,21,[]]]},{"k":15580,"v":[[0,3,["H7760"]],[3,5,["H1366"]],[5,9,["H1077"]],[9,11,["H5674"]],[11,16,["H7725","H1077"]],[16,18,["H3680"]],[18,20,["H776"]]]},{"k":15581,"v":[[0,2,["H7971"]],[2,4,["H4599"]],[4,7,["H5158"]],[7,9,["H1980"]],[9,10,["H996"]],[10,12,["H2022"]]]},{"k":15582,"v":[[0,3,["H8248"]],[3,5,["H3605"]],[5,6,["H2416"]],[6,9,["H7704"]],[9,12,["H6501"]],[12,13,["H7665"]],[13,15,["H6772"]]]},{"k":15583,"v":[[0,1,["H5921"]],[1,5,["H5775"]],[5,8,["H8064"]],[8,11,["H7931"]],[11,13,["H5414","H6963"]],[13,14,["H4480","H996"]],[14,16,["H6073"]]]},{"k":15584,"v":[[0,2,["H8248"]],[2,4,["H2022"]],[4,7,["H4480","H5944"]],[7,9,["H776"]],[9,11,["H7646"]],[11,14,["H4480","H6529"]],[14,17,["H4639"]]]},{"k":15585,"v":[[0,4,["H2682"]],[4,6,["H6779"]],[6,9,["H929"]],[9,11,["H6212"]],[11,14,["H5656"]],[14,16,["H120"]],[16,21,["H3318"]],[21,22,["H3899"]],[22,24,["H4480"]],[24,26,["H776"]]]},{"k":15586,"v":[[0,2,["H3196"]],[2,5,["H8055"]],[5,7,["H3824"]],[7,9,["H582"]],[9,11,["H4480","H8081"]],[11,15,["H6440"]],[15,17,["H6670"]],[17,19,["H3899"]],[19,21,["H5582"]],[21,22,["H582"]],[22,23,["H3824"]]]},{"k":15587,"v":[[0,2,["H6086"]],[2,5,["H3068"]],[5,7,["H7646"]],[7,11,["H730"]],[11,13,["H3844"]],[13,14,["H834"]],[14,17,["H5193"]]]},{"k":15588,"v":[[0,1,["H834","H8033"]],[1,3,["H6833"]],[3,6,["H7077"]],[6,10,["H2624"]],[10,13,["H1265"]],[13,16,["H1004"]]]},{"k":15589,"v":[[0,2,["H1364"]],[2,3,["H2022"]],[3,6,["H4268"]],[6,10,["H3277"]],[10,13,["H5553"]],[13,16,["H8227"]]]},{"k":15590,"v":[[0,2,["H6213"]],[2,4,["H3394"]],[4,6,["H4150"]],[6,8,["H8121"]],[8,9,["H3045"]],[9,12,["H3996"]]]},{"k":15591,"v":[[0,2,["H7896"]],[2,3,["H2822"]],[3,6,["H1961"]],[6,7,["H3915"]],[7,9,["H3605"]],[9,11,["H2416"]],[11,14,["H3293"]],[14,16,["H7430"]],[16,17,[]]]},{"k":15592,"v":[[0,3,["H3715"]],[3,4,["H7580"]],[4,7,["H2964"]],[7,9,["H1245"]],[9,11,["H400"]],[11,13,["H4480","H410"]]]},{"k":15593,"v":[[0,2,["H8121"]],[2,3,["H2224"]],[3,7,["H622"]],[7,11,["H7257"]],[11,12,["H413"]],[12,14,["H4585"]]]},{"k":15594,"v":[[0,1,["H120"]],[1,3,["H3318"]],[3,6,["H6467"]],[6,10,["H5656"]],[10,11,["H5704"]],[11,13,["H6153"]]]},{"k":15595,"v":[[0,2,["H3068"]],[2,3,["H4100"]],[3,4,["H7231"]],[4,7,["H4639"]],[7,9,["H2451"]],[9,12,["H6213"]],[12,14,["H3605"]],[14,16,["H776"]],[16,18,["H4390"]],[18,21,["H7075"]]]},{"k":15596,"v":[[0,3,["H2088"]],[3,4,["H1419"]],[4,6,["H7342","H3027"]],[6,7,["H3220"]],[7,8,["H8033"]],[8,11,["H7431"]],[11,12,["H369","H4557"]],[12,14,["H6996"]],[14,15,["H5973"]],[15,16,["H1419"]],[16,17,["H2416"]]]},{"k":15597,"v":[[0,1,["H8033"]],[1,2,["H1980"]],[2,4,["H591"]],[4,8,["H3882"]],[8,10,["H2088"]],[10,12,["H3335"]],[12,14,["H7832"]],[14,15,[]]]},{"k":15598,"v":[[0,2,["H7663"]],[2,3,["H3605"]],[3,4,["H413"]],[4,9,["H5414"]],[9,12,["H400"]],[12,15,["H6256"]]]},{"k":15599,"v":[[0,3,["H5414"]],[3,6,["H3950"]],[6,8,["H6605"]],[8,10,["H3027"]],[10,13,["H7646"]],[13,15,["H2896"]]]},{"k":15600,"v":[[0,2,["H5641"]],[2,4,["H6440"]],[4,7,["H926"]],[7,10,["H622"]],[10,12,["H7307"]],[12,14,["H1478"]],[14,16,["H7725"]],[16,17,["H413"]],[17,19,["H6083"]]]},{"k":15601,"v":[[0,3,["H7971"]],[3,5,["H7307"]],[5,8,["H1254"]],[8,11,["H2318"]],[11,13,["H6440"]],[13,16,["H127"]]]},{"k":15602,"v":[[0,2,["H3519"]],[2,5,["H3068"]],[5,7,["H1961"]],[7,9,["H5769"]],[9,11,["H3068"]],[11,13,["H8055"]],[13,16,["H4639"]]]},{"k":15603,"v":[[0,2,["H5027"]],[2,5,["H776"]],[5,8,["H7460"]],[8,10,["H5060"]],[10,12,["H2022"]],[12,15,["H6225"]]]},{"k":15604,"v":[[0,3,["H7891"]],[3,6,["H3068"]],[6,11,["H2416"]],[11,15,["H2167"]],[15,18,["H430"]],[18,23,["H5750"]]]},{"k":15605,"v":[[0,2,["H7879"]],[2,3,["H5921"]],[3,7,["H6149"]],[7,8,["H595"]],[8,11,["H8055"]],[11,14,["H3068"]]]},{"k":15606,"v":[[0,3,["H2400"]],[3,5,["H8552"]],[5,7,["H4480"]],[7,9,["H776"]],[9,13,["H7563"]],[13,15,["H369"]],[15,16,["H5750"]],[16,17,["H1288"]],[17,18,["(H853)"]],[18,20,["H3068"]],[20,23,["H5315"]],[23,24,["H1984"]],[24,27,["H3050"]]]},{"k":15607,"v":[[0,3,["H3034"]],[3,6,["H3068"]],[6,7,["H7121"]],[7,10,["H8034"]],[10,12,["H3045"]],[12,14,["H5949"]],[14,17,["H5971"]]]},{"k":15608,"v":[[0,1,["H7891"]],[1,5,["H2167"]],[5,8,["H7878"]],[8,11,["H3605"]],[11,14,["H6381"]]]},{"k":15609,"v":[[0,1,["H1984"]],[1,5,["H6944"]],[5,6,["H8034"]],[6,9,["H3820"]],[9,12,["H8055"]],[12,14,["H1245"]],[14,16,["H3068"]]]},{"k":15610,"v":[[0,1,["H1875"]],[1,3,["H3068"]],[3,6,["H5797"]],[6,7,["H1245"]],[7,9,["H6440"]],[9,10,["H8548"]]]},{"k":15611,"v":[[0,1,["H2142"]],[1,4,["H6381"]],[4,5,["H834"]],[5,8,["H6213"]],[8,10,["H4159"]],[10,13,["H4941"]],[13,16,["H6310"]]]},{"k":15612,"v":[[0,3,["H2233"]],[3,5,["H85"]],[5,7,["H5650"]],[7,9,["H1121"]],[9,11,["H3290"]],[11,13,["H972"]]]},{"k":15613,"v":[[0,1,["H1931"]],[1,4,["H3068"]],[4,6,["H430"]],[6,8,["H4941"]],[8,11,["H3605"]],[11,13,["H776"]]]},{"k":15614,"v":[[0,3,["H2142"]],[3,5,["H1285"]],[5,7,["H5769"]],[7,9,["H1697"]],[9,12,["H6680"]],[12,15,["H505"]],[15,16,["H1755"]]]},{"k":15615,"v":[[0,1,["H834"]],[1,4,["H3772"]],[4,5,["H854"]],[5,6,["H85"]],[6,9,["H7621"]],[9,11,["H3446"]]]},{"k":15616,"v":[[0,2,["H5975"]],[2,6,["H3290"]],[6,9,["H2706"]],[9,12,["H3478"]],[12,15,["H5769"]],[15,16,["H1285"]]]},{"k":15617,"v":[[0,1,["H559"]],[1,6,["H5414","(H853)"]],[6,8,["H776"]],[8,10,["H3667"]],[10,12,["H2256"]],[12,15,["H5159"]]]},{"k":15618,"v":[[0,3,["H1961"]],[3,7,["H4962"]],[7,9,["H4557"]],[9,12,["H4592"]],[12,14,["H1481"]],[14,16,[]]]},{"k":15619,"v":[[0,3,["H1980"]],[3,6,["H4480","H1471"]],[6,7,["H413"]],[7,8,["H1471"]],[8,11,["H4480","H4467"]],[11,12,["H413"]],[12,13,["H312"]],[13,14,["H5971"]]]},{"k":15620,"v":[[0,2,["H5117"]],[2,3,["H3808"]],[3,4,["H120"]],[4,8,["H6231"]],[8,11,["H3198"]],[11,12,["H4428"]],[12,15,["H5921"]]]},{"k":15621,"v":[[0,2,["H5060"]],[2,3,["H408"]],[3,5,["H4899"]],[5,9,["H5030"]],[9,10,["H408"]],[10,11,["H7489"]]]},{"k":15622,"v":[[0,4,["H7121"]],[4,6,["H7458"]],[6,7,["H5921"]],[7,9,["H776"]],[9,11,["H7665"]],[11,13,["H3605"]],[13,14,["H4294"]],[14,16,["H3899"]]]},{"k":15623,"v":[[0,2,["H7971"]],[2,4,["H376"]],[4,5,["H6440"]],[5,8,["H3130"]],[8,11,["H4376"]],[11,14,["H5650"]]]},{"k":15624,"v":[[0,2,["H7272"]],[2,4,["H6031"]],[4,6,["H3525"]],[6,7,["H5315"]],[7,9,["H935"]],[9,11,["H1270"]]]},{"k":15625,"v":[[0,1,["H5704"]],[1,3,["H6256"]],[3,6,["H1697"]],[6,7,["H935"]],[7,9,["H565"]],[9,12,["H3068"]],[12,13,["H6884"]],[13,14,[]]]},{"k":15626,"v":[[0,2,["H4428"]],[2,3,["H7971"]],[3,5,["H5425"]],[5,9,["H4910"]],[9,12,["H5971"]],[12,17,["H6605"]]]},{"k":15627,"v":[[0,2,["H7760"]],[2,4,["H113"]],[4,7,["H1004"]],[7,9,["H4910"]],[9,11,["H3605"]],[11,13,["H7075"]]]},{"k":15628,"v":[[0,2,["H631"]],[2,4,["H8269"]],[4,7,["H5315"]],[7,11,["H2205"]],[11,12,["H2449"]]]},{"k":15629,"v":[[0,1,["H3478"]],[1,4,["H935"]],[4,5,["H4714"]],[5,7,["H3290"]],[7,8,["H1481"]],[8,11,["H776"]],[11,13,["H2526"]]]},{"k":15630,"v":[[0,3,["H6509","(H853)"]],[3,5,["H5971"]],[5,6,["H3966"]],[6,10,["H6105"]],[10,13,["H4480","H6862"]]]},{"k":15631,"v":[[0,2,["H2015"]],[2,4,["H3820"]],[4,6,["H8130"]],[6,8,["H5971"]],[8,11,["H5230"]],[11,14,["H5650"]]]},{"k":15632,"v":[[0,2,["H7971"]],[2,3,["H4872"]],[3,5,["H5650"]],[5,7,["H175"]],[7,8,["H834"]],[8,11,["H977"]]]},{"k":15633,"v":[[0,2,["H7760"]],[2,4,["H1697","H226"]],[4,8,["H4159"]],[8,11,["H776"]],[11,13,["H2526"]]]},{"k":15634,"v":[[0,2,["H7971"]],[2,3,["H2822"]],[3,7,["H2821"]],[7,10,["H4784"]],[10,11,["H3808"]],[11,12,["(H853)"]],[12,14,["H1697"]]]},{"k":15635,"v":[[0,2,["H2015","(H853)"]],[2,4,["H4325"]],[4,6,["H1818"]],[6,8,["H4191","(H853)"]],[8,10,["H1710"]]]},{"k":15636,"v":[[0,2,["H776"]],[2,7,["H8317","H6854"]],[7,10,["H2315"]],[10,13,["H4428"]]]},{"k":15637,"v":[[0,2,["H559"]],[2,5,["H935"]],[5,9,["H6157"]],[9,11,["H3654"]],[11,13,["H3605"]],[13,15,["H1366"]]]},{"k":15638,"v":[[0,2,["H5414"]],[2,4,["H1259"]],[4,6,["H1653"]],[6,8,["H3852"]],[8,9,["H784"]],[9,12,["H776"]]]},{"k":15639,"v":[[0,2,["H5221"]],[2,4,["H1612"]],[4,9,["H8384"]],[9,11,["H7665"]],[11,13,["H6086"]],[13,16,["H1366"]]]},{"k":15640,"v":[[0,2,["H559"]],[2,5,["H697"]],[5,6,["H935"]],[6,8,["H3218"]],[8,11,["H369"]],[11,12,["H4557"]]]},{"k":15641,"v":[[0,4,["H398"]],[4,5,["H3605"]],[5,7,["H6212"]],[7,10,["H776"]],[10,12,["H398"]],[12,14,["H6529"]],[14,17,["H127"]]]},{"k":15642,"v":[[0,2,["H5221"]],[2,4,["H3605"]],[4,6,["H1060"]],[6,9,["H776"]],[9,11,["H7225"]],[11,13,["H3605"]],[13,15,["H202"]]]},{"k":15643,"v":[[0,4,["H3318"]],[4,7,["H3701"]],[7,9,["H2091"]],[9,13,["H369"]],[13,15,["H3782"]],[15,19,["H7626"]]]},{"k":15644,"v":[[0,1,["H4714"]],[1,3,["H8055"]],[3,6,["H3318"]],[6,7,["H3588"]],[7,9,["H6343"]],[9,12,["H5307"]],[12,13,["H5921"]],[13,14,[]]]},{"k":15645,"v":[[0,2,["H6566"]],[2,4,["H6051"]],[4,7,["H4539"]],[7,9,["H784"]],[9,12,["H215"]],[12,15,["H3915"]]]},{"k":15646,"v":[[0,3,["H7592"]],[3,6,["H935"]],[6,7,["H7958"]],[7,9,["H7646"]],[9,13,["H3899"]],[13,15,["H8064"]]]},{"k":15647,"v":[[0,2,["H6605"]],[2,4,["H6697"]],[4,7,["H4325"]],[7,9,["H2100"]],[9,11,["H1980"]],[11,15,["H6723"]],[15,18,["H5104"]]]},{"k":15648,"v":[[0,1,["H3588"]],[1,3,["H2142","(H853)"]],[3,5,["H6944"]],[5,6,["H1697"]],[6,7,["(H853)"]],[7,8,["H85"]],[8,10,["H5650"]]]},{"k":15649,"v":[[0,4,["H3318"]],[4,6,["H5971"]],[6,8,["H8342"]],[8,9,["(H853)"]],[9,11,["H972"]],[11,13,["H7440"]]]},{"k":15650,"v":[[0,2,["H5414"]],[2,5,["H776"]],[5,8,["H1471"]],[8,11,["H3423"]],[11,13,["H5999"]],[13,16,["H3816"]]]},{"k":15651,"v":[[0,1,["H5668"]],[1,4,["H8104"]],[4,6,["H2706"]],[6,8,["H5341"]],[8,10,["H8451"]],[10,11,["H1984"]],[11,14,["H3050"]]]},{"k":15652,"v":[[0,1,["H1984"]],[1,4,["H3050"]],[4,7,["H3034"]],[7,10,["H3068"]],[10,11,["H3588"]],[11,14,["H2896"]],[14,15,["H3588"]],[15,17,["H2617"]],[17,20,["H5769"]]]},{"k":15653,"v":[[0,1,["H4310"]],[1,3,["H4448"]],[3,6,["H1369"]],[6,9,["H3068"]],[9,13,["H8085"]],[13,14,["H3605"]],[14,16,["H8416"]]]},{"k":15654,"v":[[0,1,["H835"]],[1,5,["H8104"]],[5,6,["H4941"]],[6,10,["H6213"]],[10,11,["H6666"]],[11,13,["H3605"]],[13,14,["H6256"]]]},{"k":15655,"v":[[0,1,["H2142"]],[1,4,["H3068"]],[4,7,["H7522"]],[7,13,["H5971"]],[13,15,["H6485"]],[15,19,["H3444"]]]},{"k":15656,"v":[[0,4,["H7200"]],[4,6,["H2896"]],[6,9,["H972"]],[9,13,["H8055"]],[13,16,["H8057"]],[16,19,["H1471"]],[19,23,["H1984"]],[23,24,["H5973"]],[24,26,["H5159"]]]},{"k":15657,"v":[[0,3,["H2398"]],[3,4,["H5973"]],[4,6,["H1"]],[6,10,["H5753"]],[10,14,["H7561"]]]},{"k":15658,"v":[[0,2,["H1"]],[2,3,["H7919"]],[3,4,["H3808"]],[4,6,["H6381"]],[6,8,["H4714"]],[8,10,["H2142"]],[10,11,["H3808","(H853)"]],[11,13,["H7230"]],[13,16,["H2617"]],[16,18,["H4784"]],[18,20,["H5921"]],[20,22,["H3220"]],[22,26,["H5488"]],[26,27,["H3220"]]]},{"k":15659,"v":[[0,3,["H3467"]],[3,8,["H4616","H8034"]],[8,12,["(H853)"]],[12,15,["H1369"]],[15,18,["H3045"]]]},{"k":15660,"v":[[0,2,["H1605"]],[2,4,["H5488"]],[4,5,["H3220"]],[5,11,["H2717"]],[11,14,["H1980"]],[14,18,["H8415"]],[18,22,["H4057"]]]},{"k":15661,"v":[[0,3,["H3467"]],[3,7,["H4480","H3027"]],[7,11,["H8130"]],[11,14,["H1350"]],[14,18,["H4480","H3027"]],[18,21,["H341"]]]},{"k":15662,"v":[[0,3,["H4325"]],[3,4,["H3680"]],[4,6,["H6862"]],[6,9,["H3808"]],[9,10,["H259"]],[10,11,["H4480"]],[11,13,["H3498"]]]},{"k":15663,"v":[[0,2,["H539"]],[2,5,["H1697"]],[5,7,["H7891"]],[7,9,["H8416"]]]},{"k":15664,"v":[[0,2,["H4116"]],[2,3,["H7911"]],[3,5,["H4639"]],[5,7,["H2442"]],[7,8,["H3808"]],[8,11,["H6098"]]]},{"k":15665,"v":[[0,3,["H183","H8378"]],[3,6,["H4057"]],[6,8,["H5254"]],[8,9,["H410"]],[9,12,["H3452"]]]},{"k":15666,"v":[[0,3,["H5414"]],[3,6,["H7596"]],[6,8,["H7971"]],[8,9,["H7332"]],[9,12,["H5315"]]]},{"k":15667,"v":[[0,2,["H7065"]],[2,3,["H4872"]],[3,7,["H4264"]],[7,9,["H175"]],[9,11,["H6918"]],[11,14,["H3068"]]]},{"k":15668,"v":[[0,2,["H776"]],[2,3,["H6605"]],[3,6,["H1104"]],[6,7,["H1885"]],[7,9,["H3680","H5921"]],[9,11,["H5712"]],[11,13,["H48"]]]},{"k":15669,"v":[[0,3,["H784"]],[3,5,["H1197"]],[5,8,["H5712"]],[8,10,["H3852"]],[10,12,["H3857"]],[12,14,["H7563"]]]},{"k":15670,"v":[[0,2,["H6213"]],[2,4,["H5695"]],[4,6,["H2722"]],[6,8,["H7812"]],[8,11,["H4541"]]]},{"k":15671,"v":[[0,3,["H4171","(H853)"]],[3,5,["H3519"]],[5,8,["H8403"]],[8,11,["H7794"]],[11,13,["H398"]],[13,14,["H6212"]]]},{"k":15672,"v":[[0,2,["H7911"]],[2,3,["H410"]],[3,5,["H3467"]],[5,8,["H6213"]],[8,10,["H1419"]],[10,12,["H4714"]]]},{"k":15673,"v":[[0,2,["H6381"]],[2,5,["H776"]],[5,7,["H2526"]],[7,10,["H3372"]],[10,11,["H5921"]],[11,13,["H5488"]],[13,14,["H3220"]]]},{"k":15674,"v":[[0,3,["H559"]],[3,7,["H8045"]],[7,10,["H3884"]],[10,11,["H4872"]],[11,13,["H972"]],[13,14,["H5975"]],[14,15,["H6440"]],[15,19,["H6556"]],[19,22,["H7725"]],[22,24,["H2534"]],[24,28,["H4480","H7843"]],[28,29,[]]]},{"k":15675,"v":[[0,3,["H3988"]],[3,5,["H2532"]],[5,6,["H776"]],[6,8,["H539"]],[8,9,["H3808"]],[9,11,["H1697"]]]},{"k":15676,"v":[[0,2,["H7279"]],[2,5,["H168"]],[5,7,["H8085"]],[7,8,["H3808"]],[8,11,["H6963"]],[11,14,["H3068"]]]},{"k":15677,"v":[[0,4,["H5375"]],[4,6,["H3027"]],[6,10,["H5307"]],[10,14,["H4057"]]]},{"k":15678,"v":[[0,2,["H5307"]],[2,4,["H2233"]],[4,8,["H1471"]],[8,11,["H2219"]],[11,15,["H776"]]]},{"k":15679,"v":[[0,3,["H6775"]],[3,6,["H1187"]],[6,8,["H398"]],[8,10,["H2077"]],[10,13,["H4191"]]]},{"k":15680,"v":[[0,6,["H3707"]],[6,9,["H4611"]],[9,12,["H4046"]],[12,14,["H6555"]],[14,16,[]]]},{"k":15681,"v":[[0,3,["H5975"]],[3,4,["H6372"]],[4,7,["H6419"]],[7,11,["H4046"]],[11,13,["H6113"]]]},{"k":15682,"v":[[0,4,["H2803"]],[4,8,["H6666"]],[8,11,["H1755","H1755"]],[11,13,["H5704","H5769"]]]},{"k":15683,"v":[[0,2,["H7107"]],[2,5,["H5921"]],[5,7,["H4325"]],[7,9,["H4808"]],[9,14,["H3415"]],[14,16,["H4872"]],[16,19,["H5668"]]]},{"k":15684,"v":[[0,1,["H3588"]],[1,3,["H4784","(H853)"]],[3,5,["H7307"]],[5,10,["H981"]],[10,13,["H8193"]]]},{"k":15685,"v":[[0,3,["H3808"]],[3,4,["H8045","(H853)"]],[4,6,["H5971"]],[6,8,["H834"]],[8,10,["H3068"]],[10,11,["H559"]],[11,12,[]]]},{"k":15686,"v":[[0,3,["H6148"]],[3,6,["H1471"]],[6,8,["H3925"]],[8,10,["H4639"]]]},{"k":15687,"v":[[0,3,["H5647","(H853)"]],[3,5,["H6091"]],[5,7,["H1961"]],[7,9,["H4170"]],[9,11,[]]]},{"k":15688,"v":[[0,3,["H2076","(H853)"]],[3,5,["H1121"]],[5,8,["H1323"]],[8,10,["H7700"]]]},{"k":15689,"v":[[0,2,["H8210"]],[2,3,["H5355"]],[3,4,["H1818"]],[4,7,["H1818"]],[7,10,["H1121"]],[10,14,["H1323"]],[14,15,["H834"]],[15,17,["H2076"]],[17,20,["H6091"]],[20,22,["H3667"]],[22,25,["H776"]],[25,27,["H2610"]],[27,29,["H1818"]]]},{"k":15690,"v":[[0,4,["H2930"]],[4,8,["H4639"]],[8,12,["H2181"]],[12,16,["H4611"]]]},{"k":15691,"v":[[0,4,["H639"]],[4,7,["H3068"]],[7,8,["H2734"]],[8,11,["H5971"]],[11,15,["H8581","(H853)"]],[15,18,["H5159"]]]},{"k":15692,"v":[[0,3,["H5414"]],[3,7,["H3027"]],[7,10,["H1471"]],[10,14,["H8130"]],[14,16,["H4910"]],[16,18,[]]]},{"k":15693,"v":[[0,2,["H341"]],[2,4,["H3905"]],[4,11,["H3665"]],[11,12,["H8478"]],[12,14,["H3027"]]]},{"k":15694,"v":[[0,1,["H7227"]],[1,2,["H6471"]],[2,5,["H5337"]],[5,8,["H1992"]],[8,9,["H4784"]],[9,13,["H6098"]],[13,17,["H4355"]],[17,20,["H5771"]]]},{"k":15695,"v":[[0,3,["H7200"]],[3,5,["H6862"]],[5,8,["H8085","(H853)"]],[8,10,["H7440"]]]},{"k":15696,"v":[[0,3,["H2142"]],[3,7,["H1285"]],[7,9,["H5162"]],[9,13,["H7230"]],[13,16,["H2617"]]]},{"k":15697,"v":[[0,2,["H5414"]],[2,7,["H7356"]],[7,8,["H6440"]],[8,9,["H3605"]],[9,14,["H7617"]]]},{"k":15698,"v":[[0,1,["H3467"]],[1,4,["H3068"]],[4,6,["H430"]],[6,8,["H6908"]],[8,11,["H4480"]],[11,13,["H1471"]],[13,16,["H3034"]],[16,19,["H6944"]],[19,20,["H8034"]],[20,23,["H7623"]],[23,26,["H8416"]]]},{"k":15699,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,8,["H4480"]],[8,9,["H5769"]],[9,10,["H5704"]],[10,11,["H5769"]],[11,14,["H3605"]],[14,16,["H5971"]],[16,17,["H559"]],[17,18,["H543"]],[18,19,["H1984"]],[19,22,["H3050"]]]},{"k":15700,"v":[[0,3,["H3034"]],[3,6,["H3068"]],[6,7,["H3588"]],[7,10,["H2896"]],[10,11,["H3588"]],[11,13,["H2617"]],[13,16,["H5769"]]]},{"k":15701,"v":[[0,3,["H1350"]],[3,6,["H3068"]],[6,7,["H559"]],[7,9,["H834"]],[9,12,["H1350"]],[12,15,["H4480","H3027"]],[15,18,["H6862"]]]},{"k":15702,"v":[[0,2,["H6908"]],[2,7,["H4480","H776"]],[7,10,["H4480","H4217"]],[10,14,["H4480","H4628"]],[14,17,["H4480","H6828"]],[17,21,["H4480","H3220"]]]},{"k":15703,"v":[[0,2,["H8582"]],[2,5,["H4057"]],[5,8,["H3452"]],[8,9,["H1870"]],[9,11,["H4672"]],[11,12,["H3808"]],[12,13,["H5892"]],[13,15,["H4186"]],[15,16,[]]]},{"k":15704,"v":[[0,1,["H7457"]],[1,2,["H1571"]],[2,3,["H6771"]],[3,5,["H5315"]],[5,6,["H5848"]],[6,8,[]]]},{"k":15705,"v":[[0,3,["H6817"]],[3,4,["H413"]],[4,6,["H3068"]],[6,9,["H6862"]],[9,12,["H5337"]],[12,17,["H4480","H4691"]]]},{"k":15706,"v":[[0,5,["H1869"]],[5,8,["H3477"]],[8,9,["H1870"]],[9,13,["H1980"]],[13,14,["H413"]],[14,16,["H5892"]],[16,18,["H4186"]]]},{"k":15707,"v":[[0,5,["H3034"]],[5,7,["H3068"]],[7,10,["H2617"]],[10,15,["H6381"]],[15,18,["H1121"]],[18,20,["H120"]]]},{"k":15708,"v":[[0,1,["H3588"]],[1,3,["H7646"]],[3,5,["H8264"]],[5,6,["H5315"]],[6,8,["H4390"]],[8,10,["H7457"]],[10,11,["H5315"]],[11,13,["H2896"]]]},{"k":15709,"v":[[0,3,["H3427"]],[3,5,["H2822"]],[5,11,["H6757"]],[11,13,["H615"]],[13,15,["H6040"]],[15,17,["H1270"]]]},{"k":15710,"v":[[0,1,["H3588"]],[1,4,["H4784"]],[4,6,["H561"]],[6,8,["H410"]],[8,10,["H5006"]],[10,12,["H6098"]],[12,16,["H5945"]]]},{"k":15711,"v":[[0,4,["H3665"]],[4,6,["H3820"]],[6,8,["H5999"]],[8,11,["H3782"]],[11,15,["H369"]],[15,17,["H5826"]]]},{"k":15712,"v":[[0,3,["H2199"]],[3,4,["H413"]],[4,6,["H3068"]],[6,9,["H6862"]],[9,12,["H3467"]],[12,17,["H4480","H4691"]]]},{"k":15713,"v":[[0,4,["H3318"]],[4,6,["H4480","H2822"]],[6,11,["H6757"]],[11,13,["H5423"]],[13,15,["H4147"]],[15,17,[]]]},{"k":15714,"v":[[0,5,["H3034"]],[5,7,["H3068"]],[7,10,["H2617"]],[10,15,["H6381"]],[15,18,["H1121"]],[18,20,["H120"]]]},{"k":15715,"v":[[0,1,["H3588"]],[1,4,["H7665"]],[4,6,["H1817"]],[6,8,["H5178"]],[8,10,["H1438"]],[10,12,["H1280"]],[12,14,["H1270"]],[14,16,[]]]},{"k":15716,"v":[[0,1,["H191"]],[1,2,["H4480","H1870"]],[2,5,["H6588"]],[5,10,["H4480","H5771"]],[10,12,["H6031"]]]},{"k":15717,"v":[[0,2,["H5315"]],[2,3,["H8581"]],[3,5,["H3605"]],[5,7,["H400"]],[7,11,["H5060"]],[11,12,["H5704"]],[12,14,["H8179"]],[14,16,["H4194"]]]},{"k":15718,"v":[[0,3,["H2199"]],[3,4,["H413"]],[4,6,["H3068"]],[6,9,["H6862"]],[9,12,["H3467"]],[12,17,["H4480","H4691"]]]},{"k":15719,"v":[[0,2,["H7971"]],[2,4,["H1697"]],[4,6,["H7495"]],[6,9,["H4422"]],[9,13,["H4480","H7825"]]]},{"k":15720,"v":[[0,5,["H3034"]],[5,7,["H3068"]],[7,10,["H2617"]],[10,15,["H6381"]],[15,18,["H1121"]],[18,20,["H120"]]]},{"k":15721,"v":[[0,4,["H2076"]],[4,6,["H2077"]],[6,8,["H8426"]],[8,10,["H5608"]],[10,12,["H4639"]],[12,14,["H7440"]]]},{"k":15722,"v":[[0,4,["H3381"]],[4,7,["H3220"]],[7,9,["H591"]],[9,11,["H6213"]],[11,12,["H4399"]],[12,14,["H7227"]],[14,15,["H4325"]]]},{"k":15723,"v":[[0,1,["H1992"]],[1,2,["H7200"]],[2,4,["H4639"]],[4,7,["H3068"]],[7,10,["H6381"]],[10,13,["H4688"]]]},{"k":15724,"v":[[0,3,["H559"]],[3,5,["H5975"]],[5,7,["H5591"]],[7,8,["H7307"]],[8,11,["H7311"]],[11,13,["H1530"]],[13,14,[]]]},{"k":15725,"v":[[0,3,["H5927"]],[3,6,["H8064"]],[6,9,["H3381"]],[9,13,["H8415"]],[13,15,["H5315"]],[15,17,["H4127"]],[17,20,["H7451"]]]},{"k":15726,"v":[[0,5,["H2287"]],[5,7,["H5128"]],[7,11,["H7910"]],[11,17,["H3605","H2451","H1104"]]]},{"k":15727,"v":[[0,3,["H6817"]],[3,4,["H413"]],[4,6,["H3068"]],[6,9,["H6862"]],[9,14,["H3318"]],[14,17,["H4480","H4691"]]]},{"k":15728,"v":[[0,2,["H6965"]],[2,4,["H5591"]],[4,6,["H1827"]],[6,10,["H1530"]],[10,13,["H2814"]]]},{"k":15729,"v":[[0,4,["H8055"]],[4,5,["H3588"]],[5,8,["H8367"]],[8,11,["H5148"]],[11,13,["H413"]],[13,15,["H2656"]],[15,16,["H4231"]]]},{"k":15730,"v":[[0,5,["H3034"]],[5,7,["H3068"]],[7,10,["H2617"]],[10,15,["H6381"]],[15,18,["H1121"]],[18,20,["H120"]]]},{"k":15731,"v":[[0,3,["H7311"]],[3,8,["H6951"]],[8,11,["H5971"]],[11,13,["H1984"]],[13,17,["H4186"]],[17,20,["H2205"]]]},{"k":15732,"v":[[0,2,["H7760"]],[2,3,["H5104"]],[3,6,["H4057"]],[6,9,["H4325","H4161"]],[9,12,["H6774"]]]},{"k":15733,"v":[[0,2,["H6529"]],[2,3,["H776"]],[3,5,["H4420"]],[5,8,["H4480","H7451"]],[8,12,["H3427"]],[12,13,[]]]},{"k":15734,"v":[[0,2,["H7760"]],[2,4,["H4057"]],[4,7,["H98"]],[7,8,["H4325"]],[8,10,["H6723"]],[10,11,["H776"]],[11,13,["H4161","H4325"]]]},{"k":15735,"v":[[0,2,["H8033"]],[2,8,["H3427","H7457"]],[8,12,["H3559"]],[12,14,["H5892"]],[14,16,["H4186"]]]},{"k":15736,"v":[[0,2,["H2232"]],[2,4,["H7704"]],[4,6,["H5193"]],[6,7,["H3754"]],[7,10,["H6213"]],[10,11,["H6529"]],[11,13,["H8393"]]]},{"k":15737,"v":[[0,2,["H1288"]],[2,9,["H7235"]],[9,10,["H3966"]],[10,13,["H3808"]],[13,15,["H929"]],[15,17,["H4591"]]]},{"k":15738,"v":[[0,4,["H4591"]],[4,7,["H7817"]],[7,9,["H4480","H6115"]],[9,10,["H7451"]],[10,12,["H3015"]]]},{"k":15739,"v":[[0,2,["H8210"]],[2,3,["H937"]],[3,4,["H5921"]],[4,5,["H5081"]],[5,10,["H8582"]],[10,13,["H8414"]],[13,17,["H3808"]],[17,18,["H1870"]]]},{"k":15740,"v":[[0,7,["H7682","H34"]],[7,9,["H4480","H6040"]],[9,11,["H7760"]],[11,13,["H4940"]],[13,16,["H6629"]]]},{"k":15741,"v":[[0,2,["H3477"]],[2,4,["H7200"]],[4,7,["H8055"]],[7,9,["H3605"]],[9,10,["H5766"]],[10,12,["H7092"]],[12,14,["H6310"]]]},{"k":15742,"v":[[0,1,["H4310"]],[1,3,["H2450"]],[3,6,["H8104"]],[6,7,["H428"]],[7,12,["H995"]],[12,14,["H2617"]],[14,17,["H3068"]]]},{"k":15743,"v":[[0,2,["H430"]],[2,4,["H3820"]],[4,6,["H3559"]],[6,9,["H7891"]],[9,12,["H2167"]],[12,13,["H637"]],[13,16,["H3519"]]]},{"k":15744,"v":[[0,1,["H5782"]],[1,2,["H5035"]],[2,4,["H3658"]],[4,8,["H5782"]],[8,9,["H7837"]]]},{"k":15745,"v":[[0,3,["H3034"]],[3,6,["H3068"]],[6,9,["H5971"]],[9,14,["H2167"]],[14,19,["H3816"]]]},{"k":15746,"v":[[0,1,["H3588"]],[1,3,["H2617"]],[3,5,["H1419"]],[5,6,["H4480","H5921"]],[6,8,["H8064"]],[8,11,["H571"]],[11,13,["H5704"]],[13,15,["H7834"]]]},{"k":15747,"v":[[0,3,["H7311"]],[3,5,["H430"]],[5,6,["H5921"]],[6,8,["H8064"]],[8,11,["H3519"]],[11,12,["H5921"]],[12,13,["H3605"]],[13,15,["H776"]]]},{"k":15748,"v":[[0,1,["H4616"]],[1,3,["H3039"]],[3,6,["H2502"]],[6,7,["H3467"]],[7,11,["H3225"]],[11,13,["H6030"]],[13,14,[]]]},{"k":15749,"v":[[0,1,["H430"]],[1,3,["H1696"]],[3,6,["H6944"]],[6,9,["H5937"]],[9,12,["H2505"]],[12,13,["H7927"]],[13,16,["H4058"]],[16,18,["H6010"]],[18,20,["H5523"]]]},{"k":15750,"v":[[0,1,["H1568"]],[1,4,["H4519"]],[4,7,["H669"]],[7,11,["H4581"]],[11,14,["H7218"]],[14,15,["H3063"]],[15,18,["H2710"]]]},{"k":15751,"v":[[0,1,["H4124"]],[1,4,["H5518","H7366"]],[4,5,["H5921"]],[5,6,["H123"]],[6,10,["H7993"]],[10,12,["H5275"]],[12,13,["H5921"]],[13,14,["H6429"]],[14,17,["H7321"]]]},{"k":15752,"v":[[0,1,["H4310"]],[1,3,["H2986"]],[3,7,["H4013"]],[7,8,["H5892"]],[8,9,["H4310"]],[9,11,["H5148"]],[11,13,["H5704"]],[13,14,["H123"]]]},{"k":15753,"v":[[0,2,["H3808"]],[2,5,["H430"]],[5,10,["H2186"]],[10,13,["H3808"]],[13,16,["H430"]],[16,18,["H3318"]],[18,21,["H6635"]]]},{"k":15754,"v":[[0,1,["H3051"]],[1,3,["H5833"]],[3,5,["H4480","H6862"]],[5,7,["H7723"]],[7,10,["H8668"]],[10,12,["H120"]]]},{"k":15755,"v":[[0,2,["H430"]],[2,5,["H6213"]],[5,6,["H2428"]],[6,8,["H1931"]],[8,14,["H947"]],[14,16,["H6862"]]]},{"k":15756,"v":[[0,1,["H2790"]],[1,2,["H408"]],[2,6,["H430"]],[6,9,["H8416"]]]},{"k":15757,"v":[[0,1,["H3588"]],[1,3,["H6310"]],[3,6,["H7563"]],[6,9,["H6310"]],[9,12,["H4820"]],[12,14,["H6605"]],[14,15,["H5921"]],[15,19,["H1696"]],[19,20,["H854"]],[20,24,["H8267"]],[24,25,["H3956"]]]},{"k":15758,"v":[[0,4,["H5437"]],[4,7,["H1697"]],[7,9,["H8135"]],[9,12,["H3898"]],[12,16,["H2600"]]]},{"k":15759,"v":[[0,1,["H8478"]],[1,3,["H160"]],[3,7,["H7853"]],[7,9,["H589"]],[9,13,["H8605"]]]},{"k":15760,"v":[[0,4,["H7760","H5921"]],[4,6,["H7451"]],[6,7,["H8478"]],[7,8,["H2896"]],[8,10,["H8135"]],[10,11,["H8478"]],[11,13,["H160"]]]},{"k":15761,"v":[[0,1,["H6485"]],[1,5,["H7563"]],[5,6,["H5921"]],[6,10,["H7854"]],[10,11,["H5975"]],[11,12,["H5921"]],[12,15,["H3225"]]]},{"k":15762,"v":[[0,5,["H8199"]],[5,9,["H3318","H7563"]],[9,11,["H3318"]],[11,13,["H8605"]],[13,14,["H1961"]],[14,15,["H2401"]]]},{"k":15763,"v":[[0,3,["H3117"]],[3,4,["H1961"]],[4,5,["H4592"]],[5,8,["H312"]],[8,9,["H3947"]],[9,11,["H6486"]]]},{"k":15764,"v":[[0,3,["H1121"]],[3,4,["H1961"]],[4,5,["H3490"]],[5,8,["H802"]],[8,10,["H490"]]]},{"k":15765,"v":[[0,3,["H1121"]],[3,6,["H5128","H5128"]],[6,8,["H7592"]],[8,11,["H1875"]],[11,19,["H4480","H2723"]]]},{"k":15766,"v":[[0,3,["H5383"]],[3,4,["H5367"]],[4,5,["H3605"]],[5,6,["H834"]],[6,12,["H2114"]],[12,13,["H962"]],[13,15,["H3018"]]]},{"k":15767,"v":[[0,3,["H1961"]],[3,4,["H408"]],[4,6,["H4900"]],[6,7,["H2617"]],[7,10,["H408"]],[10,13,["H1961"]],[13,16,["H2603"]],[16,19,["H3490"]]]},{"k":15768,"v":[[0,3,["H319"]],[3,4,["H1961"]],[4,6,["H3772"]],[6,10,["H1755"]],[10,11,["H312"]],[11,14,["H8034"]],[14,17,["H4229"]]]},{"k":15769,"v":[[0,3,["H5771"]],[3,6,["H1"]],[6,8,["H2142"]],[8,9,["H413"]],[9,11,["H3068"]],[11,14,["H408"]],[14,16,["H2403"]],[16,19,["H517"]],[19,22,["H4229"]]]},{"k":15770,"v":[[0,3,["H1961"]],[3,4,["H5048"]],[4,6,["H3068"]],[6,7,["H8548"]],[7,12,["H3772"]],[12,14,["H2143"]],[14,19,["H4480","H776"]]]},{"k":15771,"v":[[0,1,["H3282"]],[1,2,["H834"]],[2,4,["H2142"]],[4,5,["H3808"]],[5,7,["H6213"]],[7,8,["H2617"]],[8,10,["H7291"]],[10,12,["H6041"]],[12,14,["H34"]],[14,15,["H376"]],[15,20,["H4191"]],[20,22,["H3512"]],[22,24,["H3824"]]]},{"k":15772,"v":[[0,3,["H157"]],[3,4,["H7045"]],[4,8,["H935"]],[8,13,["H2654"]],[13,14,["H3808"]],[14,16,["H1293"]],[16,21,["H7368"]],[21,22,["H4480"]],[22,23,[]]]},{"k":15773,"v":[[0,3,["H3847"]],[3,6,["H7045"]],[6,11,["H4055"]],[11,15,["H935"]],[15,18,["H7130"]],[18,20,["H4325"]],[20,23,["H8081"]],[23,26,["H6106"]]]},{"k":15774,"v":[[0,3,["H1961"]],[3,8,["H899"]],[8,10,["H5844"]],[10,15,["H4206"]],[15,19,["H2296"]],[19,20,["H8548"]]]},{"k":15775,"v":[[0,2,["H2063"]],[2,5,["H6468"]],[5,8,["H7853"]],[8,9,["H4480","H854"]],[9,11,["H3068"]],[11,16,["H1696"]],[16,17,["H7451"]],[17,18,["H5921"]],[18,20,["H5315"]]]},{"k":15776,"v":[[0,2,["H6213"]],[2,3,["H859"]],[3,4,["H854"]],[4,7,["H3069"]],[7,9,["H136"]],[9,13,["H4616","H8034"]],[13,14,["H3588"]],[14,16,["H2617"]],[16,18,["H2896"]],[18,19,["H5337"]],[19,21,[]]]},{"k":15777,"v":[[0,1,["H3588"]],[1,2,["H595"]],[2,4,["H6041"]],[4,6,["H34"]],[6,9,["H3820"]],[9,11,["H2490"]],[11,12,["H7130"]],[12,13,[]]]},{"k":15778,"v":[[0,3,["H1980"]],[3,6,["H6738"]],[6,9,["H5186"]],[9,15,["H5287"]],[15,18,["H697"]]]},{"k":15779,"v":[[0,2,["H1290"]],[2,4,["H3782"]],[4,6,["H4480","H6685"]],[6,9,["H1320"]],[9,10,["H3584"]],[10,12,["H4480","H8081"]]]},{"k":15780,"v":[[0,1,["H589"]],[1,2,["H1961"]],[2,5,["H2781"]],[5,11,["H7200"]],[11,14,["H5128"]],[14,16,["H7218"]]]},{"k":15781,"v":[[0,1,["H5826"]],[1,4,["H3068"]],[4,6,["H430"]],[6,8,["H3467"]],[8,13,["H2617"]]]},{"k":15782,"v":[[0,1,["H3588"]],[1,4,["H3045"]],[4,6,["H2063"]],[6,9,["H3027"]],[9,11,["H859"]],[11,12,["H3068"]],[12,14,["H6213"]],[14,15,[]]]},{"k":15783,"v":[[0,2,["H1992"]],[2,3,["H7043"]],[3,5,["H1288"]],[5,6,["H859"]],[6,9,["H6965"]],[9,13,["H954"]],[13,17,["H5650"]],[17,18,["H8055"]]]},{"k":15784,"v":[[0,3,["H7853"]],[3,5,["H3847"]],[5,7,["H3639"]],[7,11,["H5844"]],[11,16,["H1322"]],[16,20,["H4598"]]]},{"k":15785,"v":[[0,3,["H3966"]],[3,4,["H3034"]],[4,6,["H3068"]],[6,9,["H6310"]],[9,13,["H1984"]],[13,15,["H8432"]],[15,17,["H7227"]]]},{"k":15786,"v":[[0,1,["H3588"]],[1,4,["H5975"]],[4,8,["H3225"]],[8,11,["H34"]],[11,13,["H3467"]],[13,18,["H4480","H8199"]],[18,20,["H5315"]]]},{"k":15787,"v":[[0,2,["H3068"]],[2,3,["H5002"]],[3,6,["H113"]],[6,7,["H3427"]],[7,12,["H3225"]],[12,13,["H5704"]],[13,15,["H7896"]],[15,17,["H341"]],[17,19,["H1916","H7272"]]]},{"k":15788,"v":[[0,2,["H3068"]],[2,4,["H7971"]],[4,6,["H4294"]],[6,9,["H5797"]],[9,12,["H4480","H6726"]],[12,13,["H7287"]],[13,17,["H7130"]],[17,20,["H341"]]]},{"k":15789,"v":[[0,2,["H5971"]],[2,5,["H5071"]],[5,8,["H3117"]],[8,11,["H2428"]],[11,14,["H1926"]],[14,16,["H6944"]],[16,19,["H4480","H7358"]],[19,22,["H4891"]],[22,26,["H2919"]],[26,29,["H3208"]]]},{"k":15790,"v":[[0,2,["H3068"]],[2,4,["H7650"]],[4,7,["H3808"]],[7,8,["H5162"]],[8,9,["H859"]],[9,12,["H3548"]],[12,14,["H5769"]],[14,15,["H5921"]],[15,17,["H1700"]],[17,19,["H4442"]]]},{"k":15791,"v":[[0,2,["H136"]],[2,3,["H5921"]],[3,6,["H3225"]],[6,9,["H4272"]],[9,10,["H4428"]],[10,13,["H3117"]],[13,16,["H639"]]]},{"k":15792,"v":[[0,3,["H1777"]],[3,6,["H1471"]],[6,9,["H4390"]],[9,15,["H1472"]],[15,18,["H4272"]],[18,20,["H7218"]],[20,21,["H5921"]],[21,22,["H7227"]],[22,23,["H776"]]]},{"k":15793,"v":[[0,3,["H8354"]],[3,6,["H4480","H5158"]],[6,9,["H1870"]],[9,10,["H5921","H3651"]],[10,14,["H7311"]],[14,16,["H7218"]]]},{"k":15794,"v":[[0,1,["H1984"]],[1,4,["H3050"]],[4,7,["H3034"]],[7,9,["H3068"]],[9,12,["H3605"]],[12,13,["H3824"]],[13,16,["H5475"]],[16,19,["H3477"]],[19,23,["H5712"]]]},{"k":15795,"v":[[0,2,["H4639"]],[2,5,["H3068"]],[5,7,["H1419"]],[7,9,["H1875"]],[9,11,["H3605"]],[11,15,["H2656"]],[15,16,[]]]},{"k":15796,"v":[[0,2,["H6467"]],[2,4,["H1935"]],[4,6,["H1926"]],[6,9,["H6666"]],[9,10,["H5975"]],[10,12,["H5703"]]]},{"k":15797,"v":[[0,3,["H6213"]],[3,6,["H6381"]],[6,9,["H2143"]],[9,11,["H3068"]],[11,13,["H2587"]],[13,17,["H7349"]]]},{"k":15798,"v":[[0,3,["H5414"]],[3,4,["H2964"]],[4,8,["H3373"]],[8,12,["H5769"]],[12,14,["H2142"]],[14,17,["H1285"]]]},{"k":15799,"v":[[0,3,["H5046"]],[3,5,["H5971"]],[5,7,["H3581"]],[7,10,["H4639"]],[10,14,["H5414"]],[14,17,["H5159"]],[17,20,["H1471"]]]},{"k":15800,"v":[[0,2,["H4639"]],[2,5,["H3027"]],[5,7,["H571"]],[7,9,["H4941"]],[9,10,["H3605"]],[10,12,["H6490"]],[12,14,["H539"]]]},{"k":15801,"v":[[0,3,["H5564"]],[3,5,["H5703"]],[5,7,["H5769"]],[7,10,["H6213"]],[10,12,["H571"]],[12,14,["H3477"]]]},{"k":15802,"v":[[0,2,["H7971"]],[2,3,["H6304"]],[3,6,["H5971"]],[6,9,["H6680"]],[9,11,["H1285"]],[11,13,["H5769"]],[13,14,["H6918"]],[14,16,["H3372"]],[16,19,["H8034"]]]},{"k":15803,"v":[[0,2,["H3374"]],[2,5,["H3068"]],[5,8,["H7225"]],[8,10,["H2451"]],[10,12,["H2896"]],[12,13,["H7922"]],[13,15,["H3605"]],[15,18,["H6213"]],[18,22,["H8416"]],[22,23,["H5975"]],[23,25,["H5703"]]]},{"k":15804,"v":[[0,1,["H1984"]],[1,4,["H3050"]],[4,5,["H835"]],[5,8,["H376"]],[8,10,["H3372","(H853)"]],[10,12,["H3068"]],[12,14,["H2654"]],[14,15,["H3966"]],[15,18,["H4687"]]]},{"k":15805,"v":[[0,2,["H2233"]],[2,4,["H1961"]],[4,5,["H1368"]],[5,7,["H776"]],[7,9,["H1755"]],[9,12,["H3477"]],[12,15,["H1288"]]]},{"k":15806,"v":[[0,1,["H1952"]],[1,3,["H6239"]],[3,8,["H1004"]],[8,11,["H6666"]],[11,12,["H5975"]],[12,14,["H5703"]]]},{"k":15807,"v":[[0,3,["H3477"]],[3,5,["H2224"]],[5,6,["H216"]],[6,9,["H2822"]],[9,12,["H2587"]],[12,16,["H7349"]],[16,18,["H6662"]]]},{"k":15808,"v":[[0,2,["H2896"]],[2,3,["H376"]],[3,5,["H2603"]],[5,7,["H3867"]],[7,10,["H3557"]],[10,12,["H1697"]],[12,14,["H4941"]]]},{"k":15809,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,6,["H4131"]],[6,8,["H5769"]],[8,10,["H6662"]],[10,12,["H1961"]],[12,14,["H5769"]],[14,15,["H2143"]]]},{"k":15810,"v":[[0,3,["H3808"]],[3,5,["H3372"]],[5,7,["H7451"]],[7,8,["H4480","H8052"]],[8,10,["H3820"]],[10,12,["H3559"]],[12,13,["H982"]],[13,16,["H3068"]]]},{"k":15811,"v":[[0,2,["H3820"]],[2,4,["H5564"]],[4,7,["H3808"]],[7,9,["H3372"]],[9,10,["H5704","H834"]],[10,12,["H7200"]],[12,17,["H6862"]]]},{"k":15812,"v":[[0,3,["H6340"]],[3,6,["H5414"]],[6,9,["H34"]],[9,11,["H6666"]],[11,12,["H5975"]],[12,14,["H5703"]],[14,16,["H7161"]],[16,19,["H7311"]],[19,21,["H3519"]]]},{"k":15813,"v":[[0,2,["H7563"]],[2,4,["H7200"]],[4,8,["H3707"]],[8,11,["H2786"]],[11,14,["H8127"]],[14,17,["H4549"]],[17,19,["H8378"]],[19,22,["H7563"]],[22,24,["H6"]]]},{"k":15814,"v":[[0,1,["H1984"]],[1,4,["H3050"]],[4,5,["H1984"]],[5,8,["H5650"]],[8,11,["H3068"]],[11,12,["H1984","(H853)"]],[12,14,["H8034"]],[14,17,["H3068"]]]},{"k":15815,"v":[[0,1,["H1288"]],[1,2,["H1961"]],[2,4,["H8034"]],[4,7,["H3068"]],[7,11,["H4480","H6258"]],[11,14,["H5704","H5769"]]]},{"k":15816,"v":[[0,3,["H4480","H4217"]],[3,6,["H8121"]],[6,7,["H5704"]],[7,10,["H3996"]],[10,15,["H3068"]],[15,16,["H8034"]],[16,20,["H1984"]]]},{"k":15817,"v":[[0,2,["H3068"]],[2,4,["H7311"]],[4,5,["H5921"]],[5,6,["H3605"]],[6,7,["H1471"]],[7,10,["H3519"]],[10,11,["H5921"]],[11,13,["H8064"]]]},{"k":15818,"v":[[0,1,["H4310"]],[1,6,["H3068"]],[6,8,["H430"]],[8,10,["H3427"]],[10,12,["H1361"]]]},{"k":15819,"v":[[0,2,["H8213"]],[2,5,["H7200"]],[5,11,["H8064"]],[11,15,["H776"]]]},{"k":15820,"v":[[0,3,["H6965"]],[3,5,["H1800"]],[5,9,["H4480","H6083"]],[9,11,["H7311"]],[11,13,["H34"]],[13,17,["H4480","H830"]]]},{"k":15821,"v":[[0,4,["H3427"]],[4,6,["H5973"]],[6,7,["H5081"]],[7,9,["H5973"]],[9,11,["H5081"]],[11,14,["H5971"]]]},{"k":15822,"v":[[0,4,["H6135"]],[4,7,["H3427"]],[7,8,["H1004"]],[8,13,["H8056"]],[13,14,["H517"]],[14,16,["H1121"]],[16,17,["H1984"]],[17,20,["H3050"]]]},{"k":15823,"v":[[0,2,["H3478"]],[2,4,["H3318"]],[4,6,["H4480","H4714"]],[6,8,["H1004"]],[8,10,["H3290"]],[10,13,["H4480","H5971"]],[13,16,["H3937"]]]},{"k":15824,"v":[[0,1,["H3063"]],[1,2,["H1961"]],[2,4,["H6944"]],[4,6,["H3478"]],[6,8,["H4475"]]]},{"k":15825,"v":[[0,2,["H3220"]],[2,3,["H7200"]],[3,6,["H5127"]],[6,7,["H3383"]],[7,9,["H5437"]],[9,10,["H268"]]]},{"k":15826,"v":[[0,2,["H2022"]],[2,3,["H7540"]],[3,5,["H352"]],[5,9,["H1389"]],[9,11,["H1121","H6629"]]]},{"k":15827,"v":[[0,1,["H4100"]],[1,6,["H3220"]],[6,7,["H3588"]],[7,9,["H5127"]],[9,11,["H3383"]],[11,15,["H5437"]],[15,16,["H268"]]]},{"k":15828,"v":[[0,2,["H2022"]],[2,5,["H7540"]],[5,7,["H352"]],[7,11,["H1389"]],[11,13,["H1121","H6629"]]]},{"k":15829,"v":[[0,1,["H2342"]],[1,3,["H776"]],[3,6,["H4480","H6440"]],[6,9,["H113"]],[9,12,["H4480","H6440"]],[12,15,["H433"]],[15,17,["H3290"]]]},{"k":15830,"v":[[0,2,["H2015"]],[2,4,["H6697"]],[4,7,["H98"]],[7,8,["H4325"]],[8,10,["H2496"]],[10,13,["H4599"]],[13,15,["H4325"]]]},{"k":15831,"v":[[0,1,["H3808"]],[1,5,["H3068"]],[5,6,["H3808"]],[6,9,["H3588"]],[9,12,["H8034"]],[12,13,["H5414"]],[13,14,["H3519"]],[14,15,["H5921"]],[15,17,["H2617"]],[17,19,["H5921"]],[19,21,["H571"]],[21,22,[]]]},{"k":15832,"v":[[0,1,["H4100"]],[1,4,["H1471"]],[4,5,["H559"]],[5,6,["H346"]],[6,8,["H4994"]],[8,10,["H430"]]]},{"k":15833,"v":[[0,3,["H430"]],[3,7,["H8064"]],[7,10,["H6213"]],[10,11,["H3605","H834"]],[11,14,["H2654"]]]},{"k":15834,"v":[[0,2,["H6091"]],[2,4,["H3701"]],[4,6,["H2091"]],[6,8,["H4639"]],[8,10,["H120"]],[10,11,["H3027"]]]},{"k":15835,"v":[[0,3,["H6310"]],[3,6,["H1696"]],[6,7,["H3808"]],[7,8,["H5869"]],[8,13,["H7200"]],[13,14,["H3808"]]]},{"k":15836,"v":[[0,3,["H241"]],[3,6,["H8085"]],[6,7,["H3808"]],[7,8,["H639"]],[8,13,["H7306"]],[13,14,["H3808"]]]},{"k":15837,"v":[[0,3,["H3027"]],[3,6,["H4184"]],[6,7,["H3808"]],[7,8,["H7272"]],[8,13,["H1980"]],[13,14,["H3808"]],[14,15,["H3808"]],[15,16,["H1897"]],[16,20,["H1627"]]]},{"k":15838,"v":[[0,3,["H6213"]],[3,5,["H1961"]],[5,8,["H3644"]],[8,12,["H3605"]],[12,13,["H834"]],[13,14,["H982"]],[14,16,[]]]},{"k":15839,"v":[[0,2,["H3478"]],[2,3,["H982"]],[3,7,["H3068"]],[7,8,["H1931"]],[8,11,["H5828"]],[11,14,["H4043"]]]},{"k":15840,"v":[[0,2,["H1004"]],[2,4,["H175"]],[4,5,["H982"]],[5,8,["H3068"]],[8,9,["H1931"]],[9,12,["H5828"]],[12,15,["H4043"]]]},{"k":15841,"v":[[0,3,["H3373"]],[3,5,["H3068"]],[5,6,["H982"]],[6,9,["H3068"]],[9,10,["H1931"]],[10,13,["H5828"]],[13,16,["H4043"]]]},{"k":15842,"v":[[0,2,["H3068"]],[2,5,["H2142"]],[5,10,["H1288"]],[10,14,["H1288","(H853)"]],[14,16,["H1004"]],[16,18,["H3478"]],[18,21,["H1288","(H853)"]],[21,23,["H1004"]],[23,25,["H175"]]]},{"k":15843,"v":[[0,3,["H1288"]],[3,6,["H3373"]],[6,8,["H3068"]],[8,10,["H6996"]],[10,11,["H5973"]],[11,12,["H1419"]]]},{"k":15844,"v":[[0,2,["H3068"]],[2,8,["H3254","H5921"]],[8,12,["H1121"]]]},{"k":15845,"v":[[0,1,["H859"]],[1,3,["H1288"]],[3,6,["H3068"]],[6,8,["H6213"]],[8,9,["H8064"]],[9,11,["H776"]]]},{"k":15846,"v":[[0,2,["H8064"]],[2,5,["H8064"]],[5,8,["H3068"]],[8,11,["H776"]],[11,14,["H5414"]],[14,17,["H1121"]],[17,19,["H120"]]]},{"k":15847,"v":[[0,2,["H4191"]],[2,3,["H1984"]],[3,4,["H3808"]],[4,6,["H3050"]],[6,7,["H3808"]],[7,8,["H3605"]],[8,11,["H3381"]],[11,13,["H1745"]]]},{"k":15848,"v":[[0,2,["H587"]],[2,4,["H1288"]],[4,6,["H3050"]],[6,10,["H4480","H6258"]],[10,13,["H5704","H5769"]],[13,14,["H1984"]],[14,16,["H3050"]]]},{"k":15849,"v":[[0,2,["H157"]],[2,4,["H3068"]],[4,5,["H3588"]],[5,8,["H8085","(H853)"]],[8,10,["H6963"]],[10,13,["H8469"]]]},{"k":15850,"v":[[0,1,["H3588"]],[1,4,["H5186"]],[4,6,["H241"]],[6,13,["H7121"]],[13,19,["H3117"]]]},{"k":15851,"v":[[0,2,["H2256"]],[2,4,["H4194"]],[4,5,["H661"]],[5,9,["H4712"]],[9,11,["H7585"]],[11,14,["H4672"]],[14,17,["H4672"]],[17,18,["H6869"]],[18,20,["H3015"]]]},{"k":15852,"v":[[0,2,["H7121"]],[2,6,["H8034"]],[6,9,["H3068"]],[9,11,["H3068"]],[11,13,["H577"]],[13,15,["H4422"]],[15,17,["H5315"]]]},{"k":15853,"v":[[0,1,["H2587"]],[1,4,["H3068"]],[4,6,["H6662"]],[6,9,["H430"]],[9,11,["H7355"]]]},{"k":15854,"v":[[0,2,["H3068"]],[2,3,["H8104"]],[3,5,["H6612"]],[5,9,["H1809"]],[9,12,["H3467"]],[12,13,[]]]},{"k":15855,"v":[[0,1,["H7725"]],[1,4,["H4494"]],[4,7,["H5315"]],[7,8,["H3588"]],[8,10,["H3068"]],[10,13,["H1580"]],[13,14,["H5921"]],[14,15,[]]]},{"k":15856,"v":[[0,1,["H3588"]],[1,4,["H2502"]],[4,6,["H5315"]],[6,8,["H4480","H4194","(H853)"]],[8,10,["H5869"]],[10,11,["H4480"]],[11,12,["H1832"]],[12,13,["(H853)"]],[13,15,["H7272"]],[15,17,["H4480","H1762"]]]},{"k":15857,"v":[[0,3,["H1980"]],[3,4,["H6440"]],[4,6,["H3068"]],[6,9,["H776"]],[9,12,["H2416"]]]},{"k":15858,"v":[[0,2,["H539"]],[2,3,["H3588"]],[3,5,["H589"]],[5,6,["H1696"]],[6,9,["H3966"]],[9,10,["H6031"]]]},{"k":15859,"v":[[0,1,["H589"]],[1,2,["H559"]],[2,5,["H2648"]],[5,6,["H3605"]],[6,7,["H120"]],[7,9,["H3576"]]]},{"k":15860,"v":[[0,1,["H4100"]],[1,4,["H7725"]],[4,7,["H3068"]],[7,9,["H3605"]],[9,11,["H8408"]],[11,12,["H5921"]],[12,13,[]]]},{"k":15861,"v":[[0,3,["H5375"]],[3,5,["H3563"]],[5,7,["H3444"]],[7,9,["H7121"]],[9,12,["H8034"]],[12,15,["H3068"]]]},{"k":15862,"v":[[0,3,["H7999"]],[3,5,["H5088"]],[5,8,["H3068"]],[8,9,["H4994"]],[9,12,["H5048"]],[12,14,["H3605"]],[14,16,["H5971"]]]},{"k":15863,"v":[[0,1,["H3368"]],[1,4,["H5869"]],[4,7,["H3068"]],[7,10,["H4194"]],[10,13,["H2623"]]]},{"k":15864,"v":[[0,2,["H3068"]],[2,3,["H577"]],[3,4,["H589"]],[4,7,["H5650"]],[7,8,["H589"]],[8,11,["H5650"]],[11,14,["H1121"]],[14,17,["H519"]],[17,20,["H6605"]],[20,22,["H4147"]]]},{"k":15865,"v":[[0,3,["H2076"]],[3,7,["H2077"]],[7,9,["H8426"]],[9,12,["H7121"]],[12,15,["H8034"]],[15,18,["H3068"]]]},{"k":15866,"v":[[0,3,["H7999"]],[3,5,["H5088"]],[5,8,["H3068"]],[8,9,["H4994"]],[9,12,["H5048"]],[12,14,["H3605"]],[14,16,["H5971"]]]},{"k":15867,"v":[[0,3,["H2691"]],[3,6,["H3068"]],[6,7,["H1004"]],[7,10,["H8432"]],[10,14,["H3389"]],[14,15,["H1984"]],[15,18,["H3050"]]]},{"k":15868,"v":[[0,2,["H1984","(H853)"]],[2,4,["H3068"]],[4,5,["H3605"]],[5,7,["H1471"]],[7,8,["H7623"]],[8,10,["H3605"]],[10,12,["H523"]]]},{"k":15869,"v":[[0,1,["H3588"]],[1,4,["H2617"]],[4,6,["H1396"]],[6,7,["H5921"]],[7,11,["H571"]],[11,14,["H3068"]],[14,17,["H5769"]],[17,18,["H1984"]],[18,21,["H3050"]]]},{"k":15870,"v":[[0,3,["H3034"]],[3,6,["H3068"]],[6,7,["H3588"]],[7,10,["H2896"]],[10,11,["H3588"]],[11,13,["H2617"]],[13,16,["H5769"]]]},{"k":15871,"v":[[0,2,["H3478"]],[2,3,["H4994"]],[3,4,["H559"]],[4,5,["H3588"]],[5,7,["H2617"]],[7,10,["H5769"]]]},{"k":15872,"v":[[0,3,["H1004"]],[3,5,["H175"]],[5,6,["H4994"]],[6,7,["H559"]],[7,8,["H3588"]],[8,10,["H2617"]],[10,13,["H5769"]]]},{"k":15873,"v":[[0,3,["H4994"]],[3,5,["H3373"]],[5,7,["H3068"]],[7,8,["H559"]],[8,9,["H3588"]],[9,11,["H2617"]],[11,14,["H5769"]]]},{"k":15874,"v":[[0,3,["H7121"]],[3,5,["H3050"]],[5,6,["H4480"]],[6,7,["H4712"]],[7,9,["H3050"]],[9,10,["H6030"]],[10,18,["H4800"]]]},{"k":15875,"v":[[0,2,["H3068"]],[2,9,["H3808"]],[9,10,["H3372"]],[10,11,["H4100"]],[11,13,["H120"]],[13,14,["H6213"]],[14,16,[]]]},{"k":15876,"v":[[0,2,["H3068"]],[2,9,["H5826"]],[9,13,["H589"]],[13,14,["H7200"]],[14,20,["H8130"]],[20,21,[]]]},{"k":15877,"v":[[0,3,["H2896"]],[3,5,["H2620"]],[5,8,["H3068"]],[8,12,["H4480","H982"]],[12,14,["H120"]]]},{"k":15878,"v":[[0,3,["H2896"]],[3,5,["H2620"]],[5,8,["H3068"]],[8,12,["H4480","H982"]],[12,14,["H5081"]]]},{"k":15879,"v":[[0,1,["H3605"]],[1,2,["H1471"]],[2,5,["H5437"]],[5,9,["H8034"]],[9,12,["H3068"]],[12,15,["H4135"]],[15,16,[]]]},{"k":15880,"v":[[0,4,["H5437"]],[4,5,["H1571"]],[5,9,["H5437"]],[9,13,["H8034"]],[13,16,["H3068"]],[16,19,["H4135"]],[19,20,[]]]},{"k":15881,"v":[[0,4,["H5437"]],[4,6,["H1682"]],[6,9,["H1846"]],[9,12,["H784"]],[12,14,["H6975"]],[14,18,["H8034"]],[18,21,["H3068"]],[21,24,["H4135"]],[24,25,[]]]},{"k":15882,"v":[[0,4,["H1760","H1760"]],[4,10,["H5307"]],[10,13,["H3068"]],[13,14,["H5826"]],[14,15,[]]]},{"k":15883,"v":[[0,2,["H3050"]],[2,5,["H5797"]],[5,7,["H2176"]],[7,10,["H1961"]],[10,12,["H3444"]]]},{"k":15884,"v":[[0,2,["H6963"]],[2,4,["H7440"]],[4,6,["H3444"]],[6,10,["H168"]],[10,13,["H6662"]],[13,16,["H3225"]],[16,19,["H3068"]],[19,20,["H6213"]],[20,21,["H2428"]]]},{"k":15885,"v":[[0,3,["H3225"]],[3,6,["H3068"]],[6,8,["H7311"]],[8,11,["H3225"]],[11,14,["H3068"]],[14,15,["H6213"]],[15,16,["H2428"]]]},{"k":15886,"v":[[0,3,["H3808"]],[3,4,["H4191"]],[4,5,["H3588"]],[5,6,["H2421"]],[6,8,["H5608"]],[8,10,["H4639"]],[10,13,["H3050"]]]},{"k":15887,"v":[[0,2,["H3050"]],[2,6,["H3256","H3256"]],[6,10,["H3808"]],[10,13,["H5414"]],[13,15,["H4194"]]]},{"k":15888,"v":[[0,1,["H6605"]],[1,5,["H8179"]],[5,7,["H6664"]],[7,10,["H935"]],[10,16,["H3034"]],[16,18,["H3050"]]]},{"k":15889,"v":[[0,1,["H2088"]],[1,2,["H8179"]],[2,5,["H3068"]],[5,9,["H6662"]],[9,11,["H935"]]]},{"k":15890,"v":[[0,3,["H3034"]],[3,5,["H3588"]],[5,8,["H6030"]],[8,12,["H1961"]],[12,14,["H3444"]]]},{"k":15891,"v":[[0,2,["H68"]],[2,5,["H1129"]],[5,6,["H3988"]],[6,8,["H1961"]],[8,10,["H7218"]],[10,14,["H6438"]]]},{"k":15892,"v":[[0,1,["H2063"]],[1,2,["H1961"]],[2,4,["H3068"]],[4,5,["H4480","H854"]],[5,6,["H1931"]],[6,8,["H6381"]],[8,11,["H5869"]]]},{"k":15893,"v":[[0,1,["H2088"]],[1,4,["H3117"]],[4,7,["H3068"]],[7,9,["H6213"]],[9,12,["H1523"]],[12,15,["H8055"]],[15,17,[]]]},{"k":15894,"v":[[0,1,["H3467"]],[1,2,["H4994"]],[2,4,["H577"]],[4,7,["H3068"]],[7,9,["H3068"]],[9,11,["H577"]],[11,14,["H4994"]],[14,15,["H6743"]]]},{"k":15895,"v":[[0,1,["H1288"]],[1,5,["H935"]],[5,8,["H8034"]],[8,11,["H3068"]],[11,14,["H1288"]],[14,19,["H4480","H1004"]],[19,22,["H3068"]]]},{"k":15896,"v":[[0,1,["H410"]],[1,4,["H3068"]],[4,9,["H215"]],[9,10,["H631"]],[10,12,["H2282"]],[12,14,["H5688"]],[14,16,["H5704"]],[16,18,["H7161"]],[18,21,["H4196"]]]},{"k":15897,"v":[[0,1,["H859"]],[1,4,["H410"]],[4,8,["H3034"]],[8,13,["H430"]],[13,16,["H7311"]],[16,17,[]]]},{"k":15898,"v":[[0,3,["H3034"]],[3,6,["H3068"]],[6,7,["H3588"]],[7,10,["H2896"]],[10,11,["H3588"]],[11,13,["H2617"]],[13,16,["H5769"]]]},{"k":15899,"v":[[0,1,["H835"]],[1,4,["H8549"]],[4,7,["H1870"]],[7,9,["H1980"]],[9,12,["H8451"]],[12,15,["H3068"]]]},{"k":15900,"v":[[0,1,["H835"]],[1,5,["H5341"]],[5,7,["H5713"]],[7,10,["H1875"]],[10,14,["H3605"]],[14,15,["H3820"]]]},{"k":15901,"v":[[0,2,["H637"]],[2,3,["H6466"]],[3,4,["H3808"]],[4,5,["H5766"]],[5,7,["H1980"]],[7,10,["H1870"]]]},{"k":15902,"v":[[0,1,["H859"]],[1,3,["H6680"]],[3,6,["H8104"]],[6,8,["H6490"]],[8,9,["H3966"]]]},{"k":15903,"v":[[0,2,["H305"]],[2,4,["H1870"]],[4,6,["H3559"]],[6,8,["H8104"]],[8,10,["H2706"]]]},{"k":15904,"v":[[0,1,["H227"]],[1,4,["H3808"]],[4,6,["H954"]],[6,10,["H5027"]],[10,11,["H413"]],[11,12,["H3605"]],[12,14,["H4687"]]]},{"k":15905,"v":[[0,3,["H3034"]],[3,6,["H3476"]],[6,8,["H3824"]],[8,13,["H3925"]],[13,15,["H6664"]],[15,16,["H4941"]]]},{"k":15906,"v":[[0,3,["H8104","(H853)"]],[3,5,["H2706"]],[5,7,["H5800"]],[7,9,["H408"]],[9,10,["H5704","H3966"]]]},{"k":15907,"v":[[0,1,["H4100"]],[1,5,["H5288"]],[5,6,["H2135","(H853)"]],[6,8,["H734"]],[8,11,["H8104"]],[11,16,["H1697"]]]},{"k":15908,"v":[[0,3,["H3605"]],[3,4,["H3820"]],[4,7,["H1875"]],[7,12,["H408"]],[12,13,["H7686"]],[13,16,["H4480","H4687"]]]},{"k":15909,"v":[[0,2,["H565"]],[2,5,["H6845"]],[5,8,["H3820"]],[8,9,["H4616"]],[9,12,["H3808"]],[12,13,["H2398"]],[13,15,[]]]},{"k":15910,"v":[[0,1,["H1288"]],[1,3,["H859"]],[3,5,["H3068"]],[5,6,["H3925"]],[6,9,["H2706"]]]},{"k":15911,"v":[[0,3,["H8193"]],[3,6,["H5608"]],[6,7,["H3605"]],[7,9,["H4941"]],[9,12,["H6310"]]]},{"k":15912,"v":[[0,3,["H7797"]],[3,6,["H1870"]],[6,9,["H5715"]],[9,10,["H5921"]],[10,14,["H3605"]],[14,15,["H1952"]]]},{"k":15913,"v":[[0,3,["H7878"]],[3,6,["H6490"]],[6,9,["H5027"]],[9,12,["H734"]]]},{"k":15914,"v":[[0,4,["H8173"]],[4,7,["H2708"]],[7,10,["H3808"]],[10,11,["H7911"]],[11,13,["H1697"]]]},{"k":15915,"v":[[0,2,["H1580"]],[2,3,["H5921"]],[3,5,["H5650"]],[5,9,["H2421"]],[9,11,["H8104"]],[11,13,["H1697"]]]},{"k":15916,"v":[[0,1,["H1540"]],[1,4,["H5869"]],[4,8,["H5027"]],[8,10,["H6381"]],[10,14,["H4480","H8451"]]]},{"k":15917,"v":[[0,1,["H595"]],[1,4,["H1616"]],[4,7,["H776"]],[7,8,["H5641"]],[8,9,["H408"]],[9,11,["H4687"]],[11,12,["H4480"]],[12,13,[]]]},{"k":15918,"v":[[0,2,["H5315"]],[2,3,["H1638"]],[3,6,["H8375"]],[6,10,["H413"]],[10,12,["H4941"]],[12,14,["H3605"]],[14,15,["H6256"]]]},{"k":15919,"v":[[0,3,["H1605"]],[3,5,["H2086"]],[5,8,["H779"]],[8,11,["H7686"]],[11,14,["H4480","H4687"]]]},{"k":15920,"v":[[0,1,["H1556"]],[1,2,["H4480","H5921"]],[2,4,["H2781"]],[4,6,["H937"]],[6,7,["H3588"]],[7,10,["H5341"]],[10,12,["H5713"]]]},{"k":15921,"v":[[0,1,["H8269"]],[1,2,["H1571"]],[2,4,["H3427"]],[4,6,["H1696"]],[6,11,["H5650"]],[11,13,["H7878"]],[13,16,["H2706"]]]},{"k":15922,"v":[[0,2,["H5713"]],[2,3,["H1571"]],[3,6,["H8191"]],[6,9,["H376","H6098"]]]},{"k":15923,"v":[[0,2,["H5315"]],[2,3,["H1692"]],[3,6,["H6083"]],[6,7,["H2421"]],[7,13,["H1697"]]]},{"k":15924,"v":[[0,3,["H5608"]],[3,5,["H1870"]],[5,8,["H6030"]],[8,10,["H3925"]],[10,13,["H2706"]]]},{"k":15925,"v":[[0,4,["H995"]],[4,6,["H1870"]],[6,9,["H6490"]],[9,13,["H7878"]],[13,17,["H6381"]]]},{"k":15926,"v":[[0,2,["H5315"]],[2,3,["H1811"]],[3,5,["H4480","H8424"]],[5,6,["H6965"]],[6,12,["H1697"]]]},{"k":15927,"v":[[0,1,["H5493"]],[1,2,["H4480"]],[2,5,["H1870"]],[5,7,["H8267"]],[7,12,["H8451"]],[12,13,["H2603"]]]},{"k":15928,"v":[[0,3,["H977"]],[3,5,["H1870"]],[5,7,["H530"]],[7,9,["H4941"]],[9,12,["H7737"]],[12,14,[]]]},{"k":15929,"v":[[0,3,["H1692"]],[3,6,["H5715"]],[6,8,["H3068"]],[8,11,["H408"]],[11,13,["H954"]]]},{"k":15930,"v":[[0,3,["H7323"]],[3,5,["H1870"]],[5,8,["H4687"]],[8,9,["H3588"]],[9,12,["H7337"]],[12,14,["H3820"]]]},{"k":15931,"v":[[0,1,["H3384"]],[1,4,["H3068"]],[4,6,["H1870"]],[6,9,["H2706"]],[9,13,["H5341"]],[13,17,["H6118"]]]},{"k":15932,"v":[[0,3,["H995"]],[3,7,["H5341"]],[7,9,["H8451"]],[9,13,["H8104"]],[13,17,["H3605"]],[17,18,["H3820"]]]},{"k":15933,"v":[[0,4,["H1869"]],[4,7,["H5410"]],[7,10,["H4687"]],[10,11,["H3588"]],[11,15,["H2654"]]]},{"k":15934,"v":[[0,1,["H5186"]],[1,3,["H3820"]],[3,4,["H413"]],[4,6,["H5715"]],[6,8,["H408"]],[8,9,["H413"]],[9,10,["H1215"]]]},{"k":15935,"v":[[0,2,["H5674"]],[2,4,["H5869"]],[4,6,["H4480","H7200"]],[6,7,["H7723"]],[7,9,["H2421"]],[9,14,["H1870"]]]},{"k":15936,"v":[[0,1,["H6965"]],[1,3,["H565"]],[3,6,["H5650"]],[6,7,["H834"]],[7,12,["H3374"]]]},{"k":15937,"v":[[0,2,["H5674"]],[2,4,["H2781"]],[4,5,["H834"]],[5,7,["H3025"]],[7,8,["H3588"]],[8,10,["H4941"]],[10,12,["H2896"]]]},{"k":15938,"v":[[0,1,["H2009"]],[1,4,["H8373"]],[4,7,["H6490"]],[7,8,["H2421"]],[8,12,["H6666"]]]},{"k":15939,"v":[[0,3,["H2617"]],[3,4,["H935"]],[4,9,["H3068"]],[9,12,["H8668"]],[12,16,["H565"]]]},{"k":15940,"v":[[0,5,["H1697"]],[5,7,["H6030"]],[7,10,["H2778"]],[10,12,["H3588"]],[12,14,["H982"]],[14,17,["H1697"]]]},{"k":15941,"v":[[0,2,["H5337"]],[2,3,["H408"]],[3,5,["H1697"]],[5,7,["H571"]],[7,8,["H5704","H3966"]],[8,12,["H4480","H6310"]],[12,13,["H3588"]],[13,16,["H3176"]],[16,19,["H4941"]]]},{"k":15942,"v":[[0,4,["H8104"]],[4,6,["H8451"]],[6,7,["H8548"]],[7,9,["H5769"]],[9,11,["H5703"]]]},{"k":15943,"v":[[0,4,["H1980"]],[4,6,["H7342"]],[6,7,["H3588"]],[7,9,["H1875"]],[9,11,["H6490"]]]},{"k":15944,"v":[[0,3,["H1696"]],[3,6,["H5713"]],[6,8,["H5048"]],[8,9,["H4428"]],[9,12,["H3808"]],[12,14,["H954"]]]},{"k":15945,"v":[[0,5,["H8173"]],[5,8,["H4687"]],[8,9,["H834"]],[9,12,["H157"]]]},{"k":15946,"v":[[0,2,["H3709"]],[2,7,["H5375"]],[7,8,["H413"]],[8,10,["H4687"]],[10,11,["H834"]],[11,14,["H157"]],[14,18,["H7878"]],[18,21,["H2706"]]]},{"k":15947,"v":[[0,1,["H2142"]],[1,3,["H1697"]],[3,6,["H5650"]],[6,7,["H5921"]],[7,8,["H834"]],[8,14,["H3176"]]]},{"k":15948,"v":[[0,1,["H2063"]],[1,4,["H5165"]],[4,7,["H6040"]],[7,8,["H3588"]],[8,10,["H565"]],[10,12,["H2421"]],[12,13,[]]]},{"k":15949,"v":[[0,2,["H2086"]],[2,6,["H5704","H3966"]],[6,8,["H3887"]],[8,12,["H3808"]],[12,13,["H5186"]],[13,16,["H4480","H8451"]]]},{"k":15950,"v":[[0,2,["H2142"]],[2,4,["H4941"]],[4,6,["H4480","H5769"]],[6,8,["H3068"]],[8,12,["H5162"]]]},{"k":15951,"v":[[0,1,["H2152"]],[1,5,["H270"]],[5,10,["H4480","H7563"]],[10,12,["H5800"]],[12,14,["H8451"]]]},{"k":15952,"v":[[0,2,["H2706"]],[2,4,["H1961"]],[4,6,["H2158"]],[6,9,["H1004"]],[9,12,["H4033"]]]},{"k":15953,"v":[[0,3,["H2142"]],[3,5,["H8034"]],[5,7,["H3068"]],[7,10,["H3915"]],[10,13,["H8104"]],[13,15,["H8451"]]]},{"k":15954,"v":[[0,1,["H2063"]],[1,3,["H1961"]],[3,4,["H3588"]],[4,6,["H5341"]],[6,8,["H6490"]]]},{"k":15955,"v":[[0,4,["H2506"]],[4,6,["H3068"]],[6,9,["H559"]],[9,13,["H8104"]],[13,15,["H1697"]]]},{"k":15956,"v":[[0,2,["H2470"]],[2,4,["H6440"]],[4,7,["H3605"]],[7,8,["H3820"]],[8,10,["H2603"]],[10,16,["H565"]]]},{"k":15957,"v":[[0,2,["H2803"]],[2,5,["H1870"]],[5,7,["H7725"]],[7,9,["H7272"]],[9,10,["H413"]],[10,12,["H5713"]]]},{"k":15958,"v":[[0,3,["H2363"]],[3,5,["H4102"]],[5,6,["H3808"]],[6,8,["H8104"]],[8,10,["H4687"]]]},{"k":15959,"v":[[0,2,["H2256"]],[2,5,["H7563"]],[5,7,["H5749"]],[7,12,["H3808"]],[12,13,["H7911"]],[13,15,["H8451"]]]},{"k":15960,"v":[[0,2,["H2676","H3915"]],[2,5,["H6965"]],[5,8,["H3034"]],[8,12,["H5921"]],[12,14,["H6664"]],[14,15,["H4941"]]]},{"k":15961,"v":[[0,1,["H589"]],[1,4,["H2270"]],[4,6,["H3605"]],[6,8,["H834"]],[8,9,["H3372"]],[9,15,["H8104"]],[15,17,["H6490"]]]},{"k":15962,"v":[[0,2,["H776"]],[2,4,["H3068"]],[4,6,["H4390"]],[6,9,["H2617"]],[9,10,["H3925"]],[10,13,["H2706"]]]},{"k":15963,"v":[[0,3,["H6213"]],[3,4,["H2896"]],[4,5,["H5973"]],[5,7,["H5650"]],[7,9,["H3068"]],[9,13,["H1697"]]]},{"k":15964,"v":[[0,1,["H3925"]],[1,3,["H2898"]],[3,4,["H2940"]],[4,6,["H1847"]],[6,7,["H3588"]],[7,10,["H539"]],[10,12,["H4687"]]]},{"k":15965,"v":[[0,1,["H2962"]],[1,2,["H589"]],[2,4,["H6031"]],[4,7,["H7683"]],[7,9,["H6258"]],[9,12,["H8104"]],[12,14,["H565"]]]},{"k":15966,"v":[[0,1,["H859"]],[1,3,["H2896"]],[3,6,["H2895"]],[6,7,["H3925"]],[7,10,["H2706"]]]},{"k":15967,"v":[[0,2,["H2086"]],[2,4,["H2950"]],[4,6,["H8267"]],[6,7,["H5921"]],[7,10,["H589"]],[10,12,["H5341"]],[12,14,["H6490"]],[14,17,["H3605"]],[17,18,["H3820"]]]},{"k":15968,"v":[[0,2,["H3820"]],[2,5,["H2954"]],[5,7,["H2459"]],[7,9,["H589"]],[9,10,["H8173"]],[10,13,["H8451"]]]},{"k":15969,"v":[[0,3,["H2896"]],[3,6,["H3588"]],[6,10,["H6031"]],[10,11,["H4616"]],[11,14,["H3925"]],[14,16,["H2706"]]]},{"k":15970,"v":[[0,2,["H8451"]],[2,5,["H6310"]],[5,7,["H2896"]],[7,11,["H4480","H505"]],[11,13,["H2091"]],[13,15,["H3701"]]]},{"k":15971,"v":[[0,2,["H3027"]],[2,4,["H6213"]],[4,7,["H3559"]],[7,11,["H995"]],[11,15,["H3925"]],[15,17,["H4687"]]]},{"k":15972,"v":[[0,3,["H3373"]],[3,7,["H8055"]],[7,10,["H7200"]],[10,12,["H3588"]],[12,15,["H3176"]],[15,18,["H1697"]]]},{"k":15973,"v":[[0,2,["H3045"]],[2,4,["H3068"]],[4,5,["H3588"]],[5,7,["H4941"]],[7,9,["H6664"]],[9,14,["H530"]],[14,16,["H6031"]],[16,17,[]]]},{"k":15974,"v":[[0,4,["H4994"]],[4,7,["H2617"]],[7,8,["H1961"]],[8,11,["H5162"]],[11,15,["H565"]],[15,18,["H5650"]]]},{"k":15975,"v":[[0,4,["H7356"]],[4,5,["H935"]],[5,11,["H2421"]],[11,12,["H3588"]],[12,14,["H8451"]],[14,17,["H8191"]]]},{"k":15976,"v":[[0,3,["H2086"]],[3,5,["H954"]],[5,6,["H3588"]],[6,9,["H5791"]],[9,14,["H8267"]],[14,16,["H589"]],[16,18,["H7878"]],[18,21,["H6490"]]]},{"k":15977,"v":[[0,4,["H3373"]],[4,6,["H7725"]],[6,13,["H3045"]],[13,15,["H5713"]]]},{"k":15978,"v":[[0,3,["H3820"]],[3,4,["H1961"]],[4,5,["H8549"]],[5,8,["H2706"]],[8,9,["H4616"]],[9,12,["H3808"]],[12,13,["H954"]]]},{"k":15979,"v":[[0,2,["H5315"]],[2,3,["H3615"]],[3,6,["H8668"]],[6,9,["H3176"]],[9,12,["H1697"]]]},{"k":15980,"v":[[0,2,["H5869"]],[2,3,["H3615"]],[3,6,["H565"]],[6,7,["H559"]],[7,8,["H4970"]],[8,11,["H5162"]],[11,12,[]]]},{"k":15981,"v":[[0,1,["H3588"]],[1,4,["H1961"]],[4,7,["H4997"]],[7,10,["H7008"]],[10,14,["H3808"]],[14,15,["H7911"]],[15,17,["H2706"]]]},{"k":15982,"v":[[0,2,["H4100"]],[2,5,["H3117"]],[5,8,["H5650"]],[8,9,["H4970"]],[9,12,["H6213"]],[12,13,["H4941"]],[13,17,["H7291"]],[17,18,[]]]},{"k":15983,"v":[[0,2,["H2086"]],[2,4,["H3738"]],[4,5,["H7882"]],[5,8,["H834"]],[8,10,["H3808"]],[10,13,["H8451"]]]},{"k":15984,"v":[[0,1,["H3605"]],[1,3,["H4687"]],[3,5,["H530"]],[5,7,["H7291"]],[7,9,["H8267"]],[9,10,["H5826"]],[10,12,[]]]},{"k":15985,"v":[[0,3,["H4592"]],[3,4,["H3615"]],[4,7,["H776"]],[7,9,["H589"]],[9,10,["H5800"]],[10,11,["H3808"]],[11,13,["H6490"]]]},{"k":15986,"v":[[0,1,["H2421"]],[1,5,["H2617"]],[5,9,["H8104"]],[9,11,["H5715"]],[11,14,["H6310"]]]},{"k":15987,"v":[[0,2,["H5769"]],[2,4,["H3068"]],[4,6,["H1697"]],[6,8,["H5324"]],[8,10,["H8064"]]]},{"k":15988,"v":[[0,2,["H530"]],[2,6,["H1755","H1755"]],[6,9,["H3559"]],[9,11,["H776"]],[11,14,["H5975"]]]},{"k":15989,"v":[[0,2,["H5975"]],[2,4,["H3117"]],[4,8,["H4941"]],[8,9,["H3588"]],[9,10,["H3605"]],[10,13,["H5650"]]]},{"k":15990,"v":[[0,1,["H3884"]],[1,3,["H8451"]],[3,7,["H8191"]],[7,10,["H227"]],[10,12,["H6"]],[12,15,["H6040"]]]},{"k":15991,"v":[[0,3,["H5769","H3808"]],[3,4,["H7911"]],[4,6,["H6490"]],[6,7,["H3588"]],[7,12,["H2421"]],[12,13,[]]]},{"k":15992,"v":[[0,1,["H589"]],[1,4,["H3467"]],[4,6,["H3588"]],[6,9,["H1875"]],[9,11,["H6490"]]]},{"k":15993,"v":[[0,2,["H7563"]],[2,4,["H6960"]],[4,8,["H6"]],[8,13,["H995"]],[13,15,["H5713"]]]},{"k":15994,"v":[[0,3,["H7200"]],[3,5,["H7093"]],[5,7,["H3605"]],[7,8,["H8502"]],[8,11,["H4687"]],[11,13,["H3966"]],[13,14,["H7342"]]]},{"k":15995,"v":[[0,2,["H4100"]],[2,3,["H157"]],[3,6,["H8451"]],[6,7,["H1931"]],[7,10,["H7881"]],[10,11,["H3605"]],[11,13,["H3117"]]]},{"k":15996,"v":[[0,4,["H4687"]],[4,8,["H2449"]],[8,11,["H4480","H341"]],[11,12,["H3588"]],[12,13,["H1931"]],[13,15,["H5769"]],[15,17,[]]]},{"k":15997,"v":[[0,4,["H7919"]],[4,6,["H4480","H3605"]],[6,8,["H3925"]],[8,9,["H3588"]],[9,11,["H5715"]],[11,14,["H7881"]]]},{"k":15998,"v":[[0,2,["H995"]],[2,6,["H4480","H2205"]],[6,7,["H3588"]],[7,9,["H5341"]],[9,11,["H6490"]]]},{"k":15999,"v":[[0,3,["H3607"]],[3,5,["H7272"]],[5,7,["H4480","H3605"]],[7,8,["H7451"]],[8,9,["H734"]],[9,10,["H4616"]],[10,13,["H8104"]],[13,15,["H1697"]]]},{"k":16000,"v":[[0,3,["H3808"]],[3,4,["H5493"]],[4,7,["H4480","H4941"]],[7,8,["H3588"]],[8,9,["H859"]],[9,11,["H3384"]],[11,12,[]]]},{"k":16001,"v":[[0,1,["H4100"]],[1,3,["H4452"]],[3,5,["H565"]],[5,8,["H2441"]],[8,12,["H4480","H1706"]],[12,15,["H6310"]]]},{"k":16002,"v":[[0,3,["H4480","H6490"]],[3,6,["H995"]],[6,7,["H5921","H3651"]],[7,9,["H8130"]],[9,10,["H3605"]],[10,11,["H8267"]],[11,12,["H734"]]]},{"k":16003,"v":[[0,2,["H1697"]],[2,5,["H5216"]],[5,8,["H7272"]],[8,11,["H216"]],[11,14,["H5410"]]]},{"k":16004,"v":[[0,3,["H7650"]],[3,7,["H6965"]],[7,12,["H8104"]],[12,14,["H6664"]],[14,15,["H4941"]]]},{"k":16005,"v":[[0,3,["H6031"]],[3,5,["H5704","H3966"]],[5,6,["H2421"]],[6,9,["H3068"]],[9,13,["H1697"]]]},{"k":16006,"v":[[0,1,["H7521"]],[1,4,["H4994"]],[4,7,["H5071"]],[7,10,["H6310"]],[10,12,["H3068"]],[12,14,["H3925"]],[14,17,["H4941"]]]},{"k":16007,"v":[[0,2,["H5315"]],[2,4,["H8548"]],[4,7,["H3709"]],[7,11,["H3808"]],[11,12,["H7911"]],[12,14,["H8451"]]]},{"k":16008,"v":[[0,2,["H7563"]],[2,4,["H5414"]],[4,6,["H6341"]],[6,11,["H8582"]],[11,12,["H3808"]],[12,15,["H4480","H6490"]]]},{"k":16009,"v":[[0,2,["H5715"]],[2,8,["H5157"]],[8,10,["H5769"]],[10,11,["H3588"]],[11,12,["H1992"]],[12,15,["H8342"]],[15,18,["H3820"]]]},{"k":16010,"v":[[0,3,["H5186"]],[3,5,["H3820"]],[5,7,["H6213"]],[7,9,["H2706"]],[9,10,["H5769"]],[10,14,["H6118"]]]},{"k":16011,"v":[[0,2,["H8130"]],[2,4,["H5588"]],[4,7,["H8451"]],[7,10,["H157"]]]},{"k":16012,"v":[[0,1,["H859"]],[1,5,["H5643"]],[5,8,["H4043"]],[8,10,["H3176"]],[10,13,["H1697"]]]},{"k":16013,"v":[[0,1,["H5493"]],[1,2,["H4480"]],[2,5,["H7489"]],[5,9,["H5341"]],[9,11,["H4687"]],[11,14,["H430"]]]},{"k":16014,"v":[[0,1,["H5564"]],[1,6,["H565"]],[6,10,["H2421"]],[10,14,["H408"]],[14,16,["H954"]],[16,19,["H4480","H7664"]]]},{"k":16015,"v":[[0,4,["H5582"]],[4,9,["H3467"]],[9,14,["H8159"]],[14,17,["H2706"]],[17,18,["H8548"]]]},{"k":16016,"v":[[0,4,["H5541"]],[4,5,["H3605"]],[5,8,["H7686"]],[8,11,["H4480","H2706"]],[11,12,["H3588"]],[12,14,["H8649"]],[14,16,["H8267"]]]},{"k":16017,"v":[[0,3,["H7673"]],[3,4,["H3605"]],[4,6,["H7563"]],[6,9,["H776"]],[9,11,["H5509"]],[11,12,["H3651"]],[12,14,["H157"]],[14,16,["H5713"]]]},{"k":16018,"v":[[0,2,["H1320"]],[2,3,["H5568"]],[3,5,["H4480","H6343"]],[5,11,["H3372"]],[11,14,["H4480","H4941"]]]},{"k":16019,"v":[[0,3,["H6213"]],[3,4,["H4941"]],[4,6,["H6664"]],[6,7,["H5117"]],[7,9,["H1077"]],[9,12,["H6231"]]]},{"k":16020,"v":[[0,2,["H6148"]],[2,5,["H5650"]],[5,7,["H2896"]],[7,9,["H408"]],[9,11,["H2086"]],[11,12,["H6231"]],[12,13,[]]]},{"k":16021,"v":[[0,2,["H5869"]],[2,3,["H3615"]],[3,6,["H3444"]],[6,10,["H565"]],[10,13,["H6664"]]]},{"k":16022,"v":[[0,1,["H6213"]],[1,2,["H5973"]],[2,4,["H5650"]],[4,8,["H2617"]],[8,10,["H3925"]],[10,13,["H2706"]]]},{"k":16023,"v":[[0,1,["H589"]],[1,4,["H5650"]],[4,7,["H995"]],[7,11,["H3045"]],[11,13,["H5713"]]]},{"k":16024,"v":[[0,3,["H6256"]],[3,6,["H3068"]],[6,8,["H6213"]],[8,13,["H6565"]],[13,15,["H8451"]]]},{"k":16025,"v":[[0,1,["H5921","H3651"]],[1,3,["H157"]],[3,5,["H4687"]],[5,7,["H4480","H2091"]],[7,11,["H4480","H6337"]]]},{"k":16026,"v":[[0,1,["H5921","H3651"]],[1,4,["H3605"]],[4,6,["H6490"]],[6,8,["H3605"]],[8,12,["H3474"]],[12,15,["H8130"]],[15,16,["H3605"]],[16,17,["H8267"]],[17,18,["H734"]]]},{"k":16027,"v":[[0,2,["H5715"]],[2,4,["H6382"]],[4,5,["H5921","H3651"]],[5,8,["H5315"]],[8,9,["H5341"]],[9,10,[]]]},{"k":16028,"v":[[0,2,["H6608"]],[2,5,["H1697"]],[5,7,["H215"]],[7,10,["H995"]],[10,13,["H6612"]]]},{"k":16029,"v":[[0,2,["H6473"]],[2,4,["H6310"]],[4,6,["H7602"]],[6,7,["H3588"]],[7,9,["H2968"]],[9,12,["H4687"]]]},{"k":16030,"v":[[0,1,["H6437"]],[1,3,["H413"]],[3,7,["H2603"]],[7,14,["H4941"]],[14,18,["H157"]],[18,20,["H8034"]]]},{"k":16031,"v":[[0,1,["H3559"]],[1,3,["H6471"]],[3,6,["H565"]],[6,9,["H408"]],[9,10,["H3605"]],[10,11,["H205"]],[11,13,["H7980"]],[13,15,[]]]},{"k":16032,"v":[[0,1,["H6299"]],[1,5,["H4480","H6233"]],[5,7,["H120"]],[7,11,["H8104"]],[11,13,["H6490"]]]},{"k":16033,"v":[[0,3,["H6440"]],[3,5,["H215"]],[5,8,["H5650"]],[8,10,["H3925"]],[10,11,["(H853)"]],[11,13,["H2706"]]]},{"k":16034,"v":[[0,1,["H6388"]],[1,3,["H4325"]],[3,5,["H3381"]],[5,7,["H5869"]],[7,8,["H5921"]],[8,10,["H8104"]],[10,11,["H3808"]],[11,13,["H8451"]]]},{"k":16035,"v":[[0,1,["H6662"]],[1,3,["H859"]],[3,5,["H3068"]],[5,7,["H3477"]],[7,10,["H4941"]]]},{"k":16036,"v":[[0,2,["H5713"]],[2,6,["H6680"]],[6,8,["H6664"]],[8,10,["H3966"]],[10,11,["H530"]]]},{"k":16037,"v":[[0,2,["H7068"]],[2,4,["H6789"]],[4,6,["H3588"]],[6,8,["H6862"]],[8,10,["H7911"]],[10,12,["H1697"]]]},{"k":16038,"v":[[0,2,["H565"]],[2,4,["H3966"]],[4,5,["H6884"]],[5,8,["H5650"]],[8,9,["H157"]],[9,10,[]]]},{"k":16039,"v":[[0,1,["H595"]],[1,3,["H6810"]],[3,5,["H959"]],[5,8,["H3808"]],[8,10,["H7911"]],[10,12,["H6490"]]]},{"k":16040,"v":[[0,2,["H6666"]],[2,5,["H5769"]],[5,6,["H6664"]],[6,9,["H8451"]],[9,12,["H571"]]]},{"k":16041,"v":[[0,1,["H6862"]],[1,3,["H4689"]],[3,7,["H4672"]],[7,11,["H4687"]],[11,14,["H8191"]]]},{"k":16042,"v":[[0,2,["H6664"]],[2,5,["H5715"]],[5,7,["H5769"]],[7,10,["H995"]],[10,14,["H2421"]]]},{"k":16043,"v":[[0,2,["H7121"]],[2,5,["H3605"]],[5,6,["H3820"]],[6,7,["H6030"]],[7,10,["H3068"]],[10,13,["H5341"]],[13,15,["H2706"]]]},{"k":16044,"v":[[0,2,["H7121"]],[2,5,["H3467"]],[5,10,["H8104"]],[10,12,["H5713"]]]},{"k":16045,"v":[[0,2,["H6923"]],[2,4,["H5399"]],[4,9,["H7768"]],[9,11,["H3176"]],[11,14,["H1697"]]]},{"k":16046,"v":[[0,2,["H5869"]],[2,3,["H6923"]],[3,6,["H821"]],[6,10,["H7878"]],[10,13,["H565"]]]},{"k":16047,"v":[[0,1,["H8085"]],[1,3,["H6963"]],[3,7,["H2617"]],[7,9,["H3068"]],[9,10,["H2421"]],[10,15,["H4941"]]]},{"k":16048,"v":[[0,3,["H7126"]],[3,6,["H7291"]],[6,7,["H2154"]],[7,10,["H7368"]],[10,13,["H4480","H8451"]]]},{"k":16049,"v":[[0,1,["H859"]],[1,3,["H7138"]],[3,5,["H3068"]],[5,7,["H3605"]],[7,9,["H4687"]],[9,11,["H571"]]]},{"k":16050,"v":[[0,3,["H4480","H5713"]],[3,6,["H3045"]],[6,8,["H6924"]],[8,9,["H3588"]],[9,12,["H3245"]],[12,15,["H5769"]]]},{"k":16051,"v":[[0,1,["H7200"]],[1,3,["H6040"]],[3,5,["H2502"]],[5,7,["H3588"]],[7,10,["H3808"]],[10,11,["H7911"]],[11,13,["H8451"]]]},{"k":16052,"v":[[0,1,["H7378"]],[1,3,["H7379"]],[3,5,["H1350"]],[5,7,["H2421"]],[7,12,["H565"]]]},{"k":16053,"v":[[0,1,["H3444"]],[1,3,["H7350"]],[3,6,["H4480","H7563"]],[6,7,["H3588"]],[7,9,["H1875"]],[9,10,["H3808"]],[10,12,["H2706"]]]},{"k":16054,"v":[[0,1,["H7227"]],[1,5,["H7356"]],[5,7,["H3068"]],[7,8,["H2421"]],[8,13,["H4941"]]]},{"k":16055,"v":[[0,1,["H7227"]],[1,4,["H7291"]],[4,7,["H6862"]],[7,11,["H3808"]],[11,12,["H5186"]],[12,15,["H4480","H5715"]]]},{"k":16056,"v":[[0,2,["H7200"]],[2,4,["H898"]],[4,7,["H6962"]],[7,8,["H834"]],[8,10,["H8104"]],[10,11,["H3808"]],[11,13,["H565"]]]},{"k":16057,"v":[[0,1,["H7200"]],[1,2,["H3588"]],[2,4,["H157"]],[4,6,["H6490"]],[6,7,["H2421"]],[7,10,["H3068"]],[10,14,["H2617"]]]},{"k":16058,"v":[[0,2,["H1697"]],[2,4,["H571"]],[4,7,["H7218"]],[7,10,["H3605"]],[10,13,["H6664"]],[13,14,["H4941"]],[14,17,["H5769"]]]},{"k":16059,"v":[[0,1,["H8269"]],[1,3,["H7291"]],[3,7,["H2600"]],[7,10,["H3820"]],[10,13,["H6342"]],[13,16,["H4480","H1697"]]]},{"k":16060,"v":[[0,1,["H595"]],[1,2,["H7797"]],[2,3,["H5921"]],[3,5,["H565"]],[5,9,["H4672"]],[9,10,["H7227"]],[10,11,["H7998"]]]},{"k":16061,"v":[[0,2,["H8130"]],[2,4,["H8581"]],[4,5,["H8267"]],[5,8,["H8451"]],[8,11,["H157"]]]},{"k":16062,"v":[[0,1,["H7651"]],[1,4,["H3117"]],[4,7,["H1984"]],[7,10,["H5921"]],[10,12,["H6664"]],[12,13,["H4941"]]]},{"k":16063,"v":[[0,1,["H7227"]],[1,2,["H7965"]],[2,6,["H157"]],[6,8,["H8451"]],[8,10,["H369"]],[10,12,["H4383"]],[12,13,[]]]},{"k":16064,"v":[[0,1,["H3068"]],[1,4,["H7663"]],[4,7,["H3444"]],[7,9,["H6213"]],[9,11,["H4687"]]]},{"k":16065,"v":[[0,2,["H5315"]],[2,4,["H8104"]],[4,6,["H5713"]],[6,9,["H157"]],[9,11,["H3966"]]]},{"k":16066,"v":[[0,3,["H8104"]],[3,5,["H6490"]],[5,8,["H5713"]],[8,9,["H3588"]],[9,10,["H3605"]],[10,12,["H1870"]],[12,14,["H5048"]],[14,15,[]]]},{"k":16067,"v":[[0,3,["H7440"]],[3,5,["H7126"]],[5,6,["H6440"]],[6,9,["H3068"]],[9,12,["H995"]],[12,16,["H1697"]]]},{"k":16068,"v":[[0,3,["H8467"]],[3,4,["H935"]],[4,5,["H6440"]],[5,7,["H5337"]],[7,12,["H565"]]]},{"k":16069,"v":[[0,2,["H8193"]],[2,4,["H5042"]],[4,5,["H8416"]],[5,6,["H3588"]],[6,9,["H3925"]],[9,12,["H2706"]]]},{"k":16070,"v":[[0,2,["H3956"]],[2,4,["H6030"]],[4,7,["H565"]],[7,8,["H3588"]],[8,9,["H3605"]],[9,11,["H4687"]],[11,13,["H6664"]]]},{"k":16071,"v":[[0,1,["H1961"]],[1,3,["H3027"]],[3,4,["H5826"]],[4,6,["H3588"]],[6,9,["H977"]],[9,11,["H6490"]]]},{"k":16072,"v":[[0,3,["H8373"]],[3,6,["H3444"]],[6,8,["H3068"]],[8,11,["H8451"]],[11,14,["H8191"]]]},{"k":16073,"v":[[0,3,["H5315"]],[3,4,["H2421"]],[4,8,["H1984"]],[8,13,["H4941"]],[13,14,["H5826"]],[14,15,[]]]},{"k":16074,"v":[[0,4,["H8582"]],[4,7,["H6"]],[7,8,["H7716"]],[8,9,["H1245"]],[9,11,["H5650"]],[11,12,["H3588"]],[12,15,["H3808"]],[15,16,["H7911"]],[16,18,["H4687"]]]},{"k":16075,"v":[[0,3,["H6869"]],[3,5,["H7121"]],[5,6,["H413"]],[6,8,["H3068"]],[8,11,["H6030"]],[11,12,[]]]},{"k":16076,"v":[[0,1,["H5337"]],[1,3,["H5315"]],[3,5,["H3068"]],[5,7,["H8267"]],[7,8,["H4480","H8193"]],[8,12,["H7423"]],[12,13,["H4480","H3956"]]]},{"k":16077,"v":[[0,1,["H4100"]],[1,4,["H5414"]],[4,8,["H4100"]],[8,11,["H3254"]],[11,15,["H7423"]],[15,16,["H3956"]]]},{"k":16078,"v":[[0,1,["H8150"]],[1,2,["H2671"]],[2,5,["H1368"]],[5,6,["H5973"]],[6,7,["H1513"]],[7,9,["H7574"]]]},{"k":16079,"v":[[0,1,["H190"]],[1,4,["H3588"]],[4,6,["H1481"]],[6,8,["H4902"]],[8,11,["H7931"]],[11,12,["H5973"]],[12,14,["H168"]],[14,16,["H6938"]]]},{"k":16080,"v":[[0,2,["H5315"]],[2,4,["H7227"]],[4,5,["H7931"]],[5,6,["H5973"]],[6,9,["H8130"]],[9,10,["H7965"]]]},{"k":16081,"v":[[0,1,["H589"]],[1,4,["H7965"]],[4,6,["H3588"]],[6,8,["H1696"]],[8,9,["H1992"]],[9,12,["H4421"]]]},{"k":16082,"v":[[0,4,["H5375"]],[4,6,["H5869"]],[6,7,["H413"]],[7,9,["H2022"]],[9,11,["H4480","H370"]],[11,12,["H935"]],[12,14,["H5828"]]]},{"k":16083,"v":[[0,2,["H5828"]],[2,4,["H4480","H5973"]],[4,6,["H3068"]],[6,8,["H6213"]],[8,9,["H8064"]],[9,11,["H776"]]]},{"k":16084,"v":[[0,3,["H408"]],[3,4,["H5414"]],[4,6,["H7272"]],[6,9,["H4132"]],[9,12,["H8104"]],[12,15,["H408"]],[15,16,["H5123"]]]},{"k":16085,"v":[[0,1,["H2009"]],[1,4,["H8104"]],[4,5,["H3478"]],[5,7,["H3808"]],[7,8,["H5123"]],[8,9,["H3808"]],[9,10,["H3462"]]]},{"k":16086,"v":[[0,2,["H3068"]],[2,5,["H8104"]],[5,7,["H3068"]],[7,10,["H6738"]],[10,11,["H5921"]],[11,13,["H3225"]],[13,14,["H3027"]]]},{"k":16087,"v":[[0,2,["H8121"]],[2,4,["H3808"]],[4,5,["H5221"]],[5,8,["H3119"]],[8,11,["H3394"]],[11,13,["H3915"]]]},{"k":16088,"v":[[0,2,["H3068"]],[2,4,["H8104"]],[4,7,["H4480","H3605"]],[7,8,["H7451"]],[8,11,["H8104","(H853)"]],[11,13,["H5315"]]]},{"k":16089,"v":[[0,2,["H3068"]],[2,4,["H8104"]],[4,7,["H3318"]],[7,11,["H935"]],[11,15,["H4480","H6258"]],[15,19,["H5704","H5769"]]]},{"k":16090,"v":[[0,3,["H8055"]],[3,6,["H559"]],[6,11,["H1980"]],[11,14,["H1004"]],[14,17,["H3068"]]]},{"k":16091,"v":[[0,2,["H7272"]],[2,3,["H1961"]],[3,4,["H5975"]],[4,7,["H8179"]],[7,9,["H3389"]]]},{"k":16092,"v":[[0,1,["H3389"]],[1,3,["H1129"]],[3,6,["H5892"]],[6,9,["H7945","H2266"]],[9,10,["H3162"]]]},{"k":16093,"v":[[0,1,["H7945","H8033"]],[1,3,["H7626"]],[3,5,["H5927"]],[5,7,["H7626"]],[7,10,["H3050"]],[10,13,["H5715"]],[13,15,["H3478"]],[15,18,["H3034"]],[18,21,["H8034"]],[21,24,["H3068"]]]},{"k":16094,"v":[[0,1,["H3588"]],[1,2,["H8033"]],[2,4,["H3427"]],[4,5,["H3678"]],[5,7,["H4941"]],[7,9,["H3678"]],[9,12,["H1004"]],[12,14,["H1732"]]]},{"k":16095,"v":[[0,1,["H7592"]],[1,4,["H7965"]],[4,6,["H3389"]],[6,9,["H7951"]],[9,11,["H157"]],[11,12,[]]]},{"k":16096,"v":[[0,1,["H7965"]],[1,2,["H1961"]],[2,5,["H2426"]],[5,7,["H7962"]],[7,10,["H759"]]]},{"k":16097,"v":[[0,1,["H4616"]],[1,3,["H251"]],[3,5,["H7453"]],[5,9,["H4994"]],[9,10,["H1696"]],[10,11,["H7965"]],[11,14,[]]]},{"k":16098,"v":[[0,2,["H4616"]],[2,4,["H1004"]],[4,7,["H3068"]],[7,9,["H430"]],[9,12,["H1245"]],[12,14,["H2896"]]]},{"k":16099,"v":[[0,1,["H413"]],[1,5,["H5375","(H853)"]],[5,7,["H5869"]],[7,11,["H3427"]],[11,14,["H8064"]]]},{"k":16100,"v":[[0,1,["H2009"]],[1,4,["H5869"]],[4,6,["H5650"]],[6,8,["H413"]],[8,10,["H3027"]],[10,13,["H113"]],[13,17,["H5869"]],[17,20,["H8198"]],[20,21,["H413"]],[21,23,["H3027"]],[23,26,["H1404"]],[26,27,["H3651"]],[27,29,["H5869"]],[29,31,["H413"]],[31,33,["H3068"]],[33,35,["H430"]],[35,36,["H5704"]],[36,41,["H7945","H2603"]],[41,42,[]]]},{"k":16101,"v":[[0,3,["H2603"]],[3,6,["H3068"]],[6,9,["H2603"]],[9,11,["H3588"]],[11,14,["H7227"]],[14,15,["H7646"]],[15,17,["H937"]]]},{"k":16102,"v":[[0,2,["H5315"]],[2,4,["H7227"]],[4,5,["H7646"]],[5,8,["H3933"]],[8,14,["H7600"]],[14,18,["H937"]],[18,21,["H1349"]]]},{"k":16103,"v":[[0,1,["H3884"]],[1,7,["H3068"]],[7,9,["H7945","H1961"]],[9,13,["H4994"]],[13,15,["H3478"]],[15,16,["H559"]]]},{"k":16104,"v":[[0,1,["H3884"]],[1,7,["H3068"]],[7,9,["H7945","H1961"]],[9,14,["H120"]],[14,16,["H6965"]],[16,17,["H5921"]],[17,18,[]]]},{"k":16105,"v":[[0,1,["H233"]],[1,6,["H1104"]],[6,7,["H2416"]],[7,10,["H639"]],[10,12,["H2734"]],[12,14,[]]]},{"k":16106,"v":[[0,1,["H233"]],[1,3,["H4325"]],[3,5,["H7857"]],[5,8,["H5158"]],[8,10,["H5674"]],[10,11,["H5921"]],[11,13,["H5315"]]]},{"k":16107,"v":[[0,1,["H233"]],[1,3,["H2121"]],[3,4,["H4325"]],[4,6,["H5674"]],[6,7,["H5921"]],[7,9,["H5315"]]]},{"k":16108,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,7,["H7945","H3808"]],[7,8,["H5414"]],[8,12,["H2964"]],[12,15,["H8127"]]]},{"k":16109,"v":[[0,2,["H5315"]],[2,4,["H4422"]],[4,7,["H6833"]],[7,11,["H4480","H6341"]],[11,14,["H3369"]],[14,16,["H6341"]],[16,18,["H7665"]],[18,20,["H587"]],[20,22,["H4422"]]]},{"k":16110,"v":[[0,2,["H5828"]],[2,6,["H8034"]],[6,9,["H3068"]],[9,11,["H6213"]],[11,12,["H8064"]],[12,14,["H776"]]]},{"k":16111,"v":[[0,3,["H982"]],[3,6,["H3068"]],[6,10,["H2022"]],[10,11,["H6726"]],[11,13,["H3808"]],[13,15,["H4131"]],[15,17,["H3427"]],[17,19,["H5769"]]]},{"k":16112,"v":[[0,3,["H2022"]],[3,6,["H5439"]],[6,7,["H3389"]],[7,10,["H3068"]],[10,13,["H5439"]],[13,15,["H5971"]],[15,17,["H4480","H6258"]],[17,20,["H5704","H5769"]]]},{"k":16113,"v":[[0,1,["H3588"]],[1,3,["H7626"]],[3,6,["H7562"]],[6,8,["H3808"]],[8,9,["H5117"]],[9,10,["H5921"]],[10,12,["H1486"]],[12,15,["H6662"]],[15,16,["H4616","H3808"]],[16,18,["H6662"]],[18,20,["H7971"]],[20,22,["H3027"]],[22,24,["H5766"]]]},{"k":16114,"v":[[0,2,["H3190"]],[2,4,["H3068"]],[4,9,["H2896"]],[9,15,["H3477"]],[15,18,["H3826"]]]},{"k":16115,"v":[[0,6,["H5186"]],[6,10,["H6128"]],[10,12,["H3068"]],[12,16,["H1980"]],[16,17,["H854"]],[17,19,["H6466"]],[19,21,["H205"]],[21,23,["H7965"]],[23,26,["H5921"]],[26,27,["H3478"]]]},{"k":16116,"v":[[0,3,["H3068"]],[3,5,["H7725","(H853)"]],[5,7,["H7870"]],[7,9,["H6726"]],[9,11,["H1961"]],[11,15,["H2492"]]]},{"k":16117,"v":[[0,1,["H227"]],[1,4,["H6310"]],[4,5,["H4390"]],[5,7,["H7814"]],[7,10,["H3956"]],[10,12,["H7440"]],[12,13,["H227"]],[13,14,["H559"]],[14,18,["H1471"]],[18,20,["H3068"]],[20,22,["H6213"]],[22,24,["H1431"]],[24,25,["H5973"]],[25,26,["H428"]]]},{"k":16118,"v":[[0,2,["H3068"]],[2,4,["H6213"]],[4,6,["H1431"]],[6,7,["H5973"]],[7,11,["H1961"]],[11,12,["H8056"]]]},{"k":16119,"v":[[0,2,["H7725","(H853)"]],[2,4,["H7622"]],[4,6,["H3068"]],[6,9,["H650"]],[9,12,["H5045"]]]},{"k":16120,"v":[[0,3,["H2232"]],[3,5,["H1832"]],[5,7,["H7114"]],[7,9,["H7440"]]]},{"k":16121,"v":[[0,4,["H1980","H1980"]],[4,6,["H1058"]],[6,7,["H5375"]],[7,8,["H4901"]],[8,9,["H2233"]],[9,13,["H935","H935"]],[13,15,["H7440"]],[15,16,["H5375"]],[16,18,["H485"]],[18,20,[]]]},{"k":16122,"v":[[0,1,["H518","H3808"]],[1,3,["H3068"]],[3,4,["H1129"]],[4,6,["H1004"]],[6,8,["H5998"]],[8,10,["H7723"]],[10,12,["H1129"]],[12,14,["H518","H3808"]],[14,16,["H3068"]],[16,17,["H8104"]],[17,19,["H5892"]],[19,21,["H8104"]],[21,22,["H8245"]],[22,25,["H7723"]]]},{"k":16123,"v":[[0,3,["H7723"]],[3,8,["H6965"]],[8,9,["H7925"]],[9,12,["H3427"]],[12,13,["H309"]],[13,15,["H398"]],[15,17,["H3899"]],[17,19,["H6089"]],[19,21,["H3651"]],[21,23,["H5414"]],[23,25,["H3039"]],[25,26,["H8142"]]]},{"k":16124,"v":[[0,1,["H2009"]],[1,2,["H1121"]],[2,5,["H5159"]],[5,8,["H3068"]],[8,11,["H6529"]],[11,14,["H990"]],[14,17,["H7939"]]]},{"k":16125,"v":[[0,2,["H2671"]],[2,6,["H3027"]],[6,9,["H1368"]],[9,11,["H3651"]],[11,13,["H1121"]],[13,16,["H5271"]]]},{"k":16126,"v":[[0,1,["H835"]],[1,4,["H1397"]],[4,5,["H834"]],[5,6,["(H853)"]],[6,8,["H827"]],[8,9,["H4390"]],[9,10,["H4480"]],[10,14,["H3808"]],[14,16,["H954"]],[16,17,["H3588"]],[17,20,["H1696"]],[20,21,["H854"]],[21,23,["H341"]],[23,26,["H8179"]]]},{"k":16127,"v":[[0,1,["H835"]],[1,4,["H3605"]],[4,6,["H3373"]],[6,8,["H3068"]],[8,10,["H1980"]],[10,13,["H1870"]]]},{"k":16128,"v":[[0,1,["H3588"]],[1,4,["H398"]],[4,6,["H3018"]],[6,9,["H3709"]],[9,10,["H835"]],[10,18,["H2896"]],[18,20,[]]]},{"k":16129,"v":[[0,2,["H802"]],[2,7,["H6509"]],[7,8,["H1612"]],[8,11,["H3411"]],[11,14,["H1004"]],[14,16,["H1121"]],[16,18,["H2132"]],[18,19,["H8363"]],[19,21,["H5439"]],[21,23,["H7979"]]]},{"k":16130,"v":[[0,1,["H2009"]],[1,2,["H3588"]],[2,3,["H3651"]],[3,6,["H1397"]],[6,8,["H1288"]],[8,10,["H3373"]],[10,12,["H3068"]]]},{"k":16131,"v":[[0,2,["H3068"]],[2,4,["H1288"]],[4,8,["H4480","H6726"]],[8,12,["H7200"]],[12,14,["H2898"]],[14,16,["H3389"]],[16,17,["H3605"]],[17,19,["H3117"]],[19,22,["H2416"]]]},{"k":16132,"v":[[0,4,["H7200"]],[4,6,["H1121"]],[6,7,["H1121"]],[7,9,["H7965"]],[9,10,["H5921"]],[10,11,["H3478"]]]},{"k":16133,"v":[[0,3,["H7227"]],[3,6,["H6887"]],[6,10,["H4480","H5271"]],[10,12,["H3478"]],[12,13,["H4994"]],[13,14,["H559"]]]},{"k":16134,"v":[[0,3,["H7227"]],[3,6,["H6887"]],[6,10,["H4480","H5271"]],[10,11,["H1571"]],[11,14,["H3808"]],[14,15,["H3201"]],[15,17,[]]]},{"k":16135,"v":[[0,2,["H2790"]],[2,3,["H2790"]],[3,4,["H5921"]],[4,6,["H1354"]],[6,9,["H748"]],[9,11,["H4618"]]]},{"k":16136,"v":[[0,2,["H3068"]],[2,4,["H6662"]],[4,8,["H7112"]],[8,10,["H5688"]],[10,13,["H7563"]]]},{"k":16137,"v":[[0,3,["H3605"]],[3,5,["H954"]],[5,7,["H5472"]],[7,8,["H268"]],[8,10,["H8130"]],[10,11,["H6726"]]]},{"k":16138,"v":[[0,3,["H1961"]],[3,6,["H2682"]],[6,9,["H1406"]],[9,11,["H3001"]],[11,12,["H7945","H6927"]],[12,15,["H8025"]]]},{"k":16139,"v":[[0,3,["H7114"]],[3,4,["H4390"]],[4,5,["H7945","H3808"]],[5,7,["H3709"]],[7,11,["H6014"]],[11,14,["H2683"]]]},{"k":16140,"v":[[0,1,["H3808"]],[1,6,["H5674"]],[6,7,["H559"]],[7,9,["H1293"]],[9,12,["H3068"]],[12,14,["H413"]],[14,17,["H1288"]],[17,21,["H8034"]],[21,24,["H3068"]]]},{"k":16141,"v":[[0,4,["H4480","H4615"]],[4,7,["H7121"]],[7,11,["H3068"]]]},{"k":16142,"v":[[0,1,["H136"]],[1,2,["H8085"]],[2,4,["H6963"]],[4,7,["H241"]],[7,8,["H1961"]],[8,9,["H7183"]],[9,12,["H6963"]],[12,15,["H8469"]]]},{"k":16143,"v":[[0,1,["H518"]],[1,3,["H3050"]],[3,5,["H8104"]],[5,6,["H5771"]],[6,8,["H136"]],[8,9,["H4310"]],[9,11,["H5975"]]]},{"k":16144,"v":[[0,1,["H3588"]],[1,4,["H5547"]],[4,5,["H5973"]],[5,7,["H4616"]],[7,11,["H3372"]]]},{"k":16145,"v":[[0,3,["H6960"]],[3,5,["H3068"]],[5,7,["H5315"]],[7,9,["H6960"]],[9,13,["H1697"]],[13,16,["H3176"]]]},{"k":16146,"v":[[0,2,["H5315"]],[2,6,["H136"]],[6,11,["H4480","H8104"]],[11,14,["H1242"]],[14,21,["H8104"]],[21,24,["H1242"]]]},{"k":16147,"v":[[0,2,["H3478"]],[2,3,["H3176"]],[3,4,["H413"]],[4,6,["H3068"]],[6,7,["H3588"]],[7,8,["H5973"]],[8,10,["H3068"]],[10,13,["H2617"]],[13,15,["H5973"]],[15,18,["H7235"]],[18,19,["H6304"]]]},{"k":16148,"v":[[0,2,["H1931"]],[2,4,["H6299","(H853)"]],[4,5,["H3478"]],[5,7,["H4480","H3605"]],[7,9,["H5771"]]]},{"k":16149,"v":[[0,1,["H3068"]],[1,3,["H3820"]],[3,5,["H3808"]],[5,6,["H1361"]],[6,7,["H3808"]],[7,9,["H5869"]],[9,10,["H7311"]],[10,11,["H3808"]],[11,14,["H1980"]],[14,18,["H1419"]],[18,23,["H6381"]],[23,24,["H4480"]],[24,25,[]]]},{"k":16150,"v":[[0,1,["H518","H3808"]],[1,4,["H7737"]],[4,6,["H1826"]],[6,7,["H5315"]],[7,13,["H1580"]],[13,14,["H5921"]],[14,16,["H517"]],[16,18,["H5315"]],[18,24,["H1580"]]]},{"k":16151,"v":[[0,2,["H3478"]],[2,3,["H3176"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H4480","H6258"]],[8,11,["H5704","H5769"]]]},{"k":16152,"v":[[0,1,["H3068"]],[1,2,["H2142"]],[2,3,["H1732"]],[3,4,["(H853)"]],[4,5,["H3605"]],[5,7,["H6031"]]]},{"k":16153,"v":[[0,1,["H834"]],[1,3,["H7650"]],[3,6,["H3068"]],[6,8,["H5087"]],[8,11,["H46"]],[11,14,["H3290"]]]},{"k":16154,"v":[[0,1,["H518"]],[1,5,["H935"]],[5,8,["H168"]],[8,11,["H1004"]],[11,12,["H518"]],[12,14,["H5927"]],[14,15,["H5921"]],[15,17,["H6210","H3326"]]]},{"k":16155,"v":[[0,3,["H518"]],[3,4,["H5414"]],[4,5,["H8153"]],[5,8,["H5869"]],[8,10,["H8572"]],[10,13,["H6079"]]]},{"k":16156,"v":[[0,1,["H5704"]],[1,4,["H4672"]],[4,6,["H4725"]],[6,9,["H3068"]],[9,11,["H4908"]],[11,14,["H46"]],[14,17,["H3290"]]]},{"k":16157,"v":[[0,1,["H2009"]],[1,3,["H8085"]],[3,7,["H672"]],[7,9,["H4672"]],[9,13,["H7704"]],[13,16,["H3293"]]]},{"k":16158,"v":[[0,3,["H935"]],[3,6,["H4908"]],[6,9,["H7812"]],[9,12,["H1916","H7272"]]]},{"k":16159,"v":[[0,1,["H6965"]],[1,3,["H3068"]],[3,6,["H4496"]],[6,7,["H859"]],[7,10,["H727"]],[10,13,["H5797"]]]},{"k":16160,"v":[[0,3,["H3548"]],[3,5,["H3847"]],[5,7,["H6664"]],[7,11,["H2623"]],[11,14,["H7442"]]]},{"k":16161,"v":[[0,3,["H5650"]],[3,4,["H1732"]],[4,5,["H5668"]],[5,8,["H7725","H408"]],[8,10,["H6440"]],[10,13,["H4899"]]]},{"k":16162,"v":[[0,2,["H3068"]],[2,4,["H7650"]],[4,6,["H571"]],[6,8,["H1732"]],[8,11,["H3808"]],[11,12,["H7725"]],[12,13,["H4480"]],[13,17,["H4480","H6529"]],[17,20,["H990"]],[20,23,["H7896"]],[23,26,["H3678"]]]},{"k":16163,"v":[[0,1,["H518"]],[1,3,["H1121"]],[3,5,["H8104"]],[5,7,["H1285"]],[7,10,["H5713"]],[10,11,["H2097"]],[11,14,["H3925"]],[14,17,["H1121"]],[17,19,["H1571"]],[19,20,["H3427"]],[20,23,["H3678"]],[23,25,["H5704","H5703"]]]},{"k":16164,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H977"]],[5,6,["H6726"]],[6,9,["H183"]],[9,13,["H4186"]]]},{"k":16165,"v":[[0,1,["H2063"]],[1,4,["H4496"]],[4,6,["H5704","H5703"]],[6,7,["H6311"]],[7,10,["H3427"]],[10,11,["H3588"]],[11,14,["H183"]],[14,15,[]]]},{"k":16166,"v":[[0,4,["H1288","H1288"]],[4,6,["H6718"]],[6,9,["H7646"]],[9,11,["H34"]],[11,13,["H3899"]]]},{"k":16167,"v":[[0,4,["H3847"]],[4,6,["H3548"]],[6,8,["H3468"]],[8,11,["H2623"]],[11,16,["H7442","H7442"]]]},{"k":16168,"v":[[0,1,["H8033"]],[1,6,["H7161"]],[6,8,["H1732"]],[8,10,["H6779"]],[10,13,["H6186"]],[13,15,["H5216"]],[15,18,["H4899"]]]},{"k":16169,"v":[[0,2,["H341"]],[2,5,["H3847"]],[5,7,["H1322"]],[7,9,["H5921"]],[9,13,["H5145"]],[13,14,["H6692"]]]},{"k":16170,"v":[[0,1,["H2009"]],[1,2,["H4100"]],[2,3,["H2896"]],[3,5,["H4100"]],[5,6,["H5273"]],[6,10,["H251"]],[10,12,["H3427"]],[12,15,["H1571","H3162"]]]},{"k":16171,"v":[[0,5,["H2896"]],[5,6,["H8081"]],[6,7,["H5921"]],[7,9,["H7218"]],[9,12,["H3381"]],[12,13,["H5921"]],[13,15,["H2206"]],[15,17,["H175"]],[17,18,["H2206"]],[18,21,["H7945","H3381"]],[21,22,["H5921"]],[22,24,["H6310"]],[24,27,["H4060"]]]},{"k":16172,"v":[[0,3,["H2919"]],[3,5,["H2768"]],[5,11,["H7945","H3381"]],[11,12,["H5921"]],[12,14,["H2042"]],[14,16,["H6726"]],[16,17,["H3588"]],[17,18,["H8033"]],[18,20,["H3068"]],[20,21,["H6680","(H853)"]],[21,23,["H1293"]],[23,25,["H2416"]],[25,27,["H5704","H5769"]]]},{"k":16173,"v":[[0,1,["H2009"]],[1,2,["H1288"]],[2,4,["(H853)"]],[4,5,["H3068"]],[5,6,["H3605"]],[6,8,["H5650"]],[8,11,["H3068"]],[11,14,["H3915"]],[14,15,["H5975"]],[15,18,["H1004"]],[18,21,["H3068"]]]},{"k":16174,"v":[[0,2,["H5375"]],[2,4,["H3027"]],[4,7,["H6944"]],[7,9,["H1288","(H853)"]],[9,11,["H3068"]]]},{"k":16175,"v":[[0,2,["H3068"]],[2,4,["H6213"]],[4,5,["H8064"]],[5,7,["H776"]],[7,8,["H1288"]],[8,12,["H4480","H6726"]]]},{"k":16176,"v":[[0,1,["H1984"]],[1,4,["H3050"]],[4,5,["H1984"]],[5,6,["(H853)"]],[6,8,["H8034"]],[8,11,["H3068"]],[11,12,["H1984"]],[12,16,["H5650"]],[16,19,["H3068"]]]},{"k":16177,"v":[[0,3,["H7945","H5975"]],[3,6,["H1004"]],[6,9,["H3068"]],[9,12,["H2691"]],[12,15,["H1004"]],[15,18,["H430"]]]},{"k":16178,"v":[[0,1,["H1984"]],[1,3,["H3050"]],[3,4,["H3588"]],[4,6,["H3068"]],[6,8,["H2896"]],[8,10,["H2167"]],[10,13,["H8034"]],[13,14,["H3588"]],[14,17,["H5273"]]]},{"k":16179,"v":[[0,1,["H3588"]],[1,3,["H3050"]],[3,5,["H977"]],[5,6,["H3290"]],[6,10,["H3478"]],[10,14,["H5459"]]]},{"k":16180,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,3,["H3045"]],[3,4,["H3588"]],[4,6,["H3068"]],[6,8,["H1419"]],[8,12,["H113"]],[12,15,["H4480","H3605"]],[15,16,["H430"]]]},{"k":16181,"v":[[0,1,["H3605","H834"]],[1,3,["H3068"]],[3,4,["H2654"]],[4,6,["H6213"]],[6,9,["H8064"]],[9,12,["H776"]],[12,15,["H3220"]],[15,17,["H3605"]],[17,19,["H8415"]]]},{"k":16182,"v":[[0,4,["H5387"]],[4,6,["H5927"]],[6,9,["H4480","H7097"]],[9,12,["H776"]],[12,14,["H6213"]],[14,15,["H1300"]],[15,18,["H4306"]],[18,20,["H3318"]],[20,22,["H7307"]],[22,26,["H4480","H214"]]]},{"k":16183,"v":[[0,2,["H7945","H5221"]],[2,4,["H1060"]],[4,6,["H4714"]],[6,9,["H4480","H120"]],[9,10,["H5704"]],[10,11,["H929"]]]},{"k":16184,"v":[[0,2,["H7971"]],[2,3,["H226"]],[3,5,["H4159"]],[5,8,["H8432"]],[8,12,["H4714"]],[12,14,["H6547"]],[14,17,["H3605"]],[17,19,["H5650"]]]},{"k":16185,"v":[[0,2,["H7945","H5221"]],[2,3,["H7227"]],[3,4,["H1471"]],[4,6,["H2026"]],[6,7,["H6099"]],[7,8,["H4428"]]]},{"k":16186,"v":[[0,1,["H5511"]],[1,2,["H4428"]],[2,5,["H567"]],[5,7,["H5747"]],[7,8,["H4428"]],[8,10,["H1316"]],[10,12,["H3605"]],[12,14,["H4467"]],[14,16,["H3667"]]]},{"k":16187,"v":[[0,2,["H5414"]],[2,4,["H776"]],[4,7,["H5159"]],[7,9,["H5159"]],[9,11,["H3478"]],[11,13,["H5971"]]]},{"k":16188,"v":[[0,2,["H8034"]],[2,4,["H3068"]],[4,7,["H5769"]],[7,10,["H2143"]],[10,12,["H3068"]],[12,15,["H1755","H1755"]]]},{"k":16189,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H1777"]],[5,7,["H5971"]],[7,12,["H5162"]],[12,13,["H5921"]],[13,15,["H5650"]]]},{"k":16190,"v":[[0,2,["H6091"]],[2,5,["H1471"]],[5,7,["H3701"]],[7,9,["H2091"]],[9,11,["H4639"]],[11,13,["H120"]],[13,14,["H3027"]]]},{"k":16191,"v":[[0,3,["H6310"]],[3,6,["H1696"]],[6,7,["H3808"]],[7,8,["H5869"]],[8,13,["H7200"]],[13,14,["H3808"]]]},{"k":16192,"v":[[0,3,["H241"]],[3,6,["H238"]],[6,7,["H3808"]],[7,8,["H637","H369"]],[8,10,["H3426"]],[10,12,["H7307"]],[12,15,["H6310"]]]},{"k":16193,"v":[[0,3,["H6213"]],[3,5,["H1961"]],[5,8,["H3644"]],[8,12,["H3605"]],[12,13,["H834"]],[13,14,["H982"]],[14,16,[]]]},{"k":16194,"v":[[0,1,["H1288","(H853)"]],[1,3,["H3068"]],[3,5,["H1004"]],[5,7,["H3478","(H853)"]],[7,8,["H1288"]],[8,10,["H3068"]],[10,12,["H1004"]],[12,14,["H175"]]]},{"k":16195,"v":[[0,1,["H1288","(H853)"]],[1,3,["H3068"]],[3,5,["H1004"]],[5,7,["H3878"]],[7,10,["H3373"]],[10,12,["H3068"]],[12,13,["H1288","(H853)"]],[13,15,["H3068"]]]},{"k":16196,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,7,["H4480","H6726"]],[7,9,["H7931"]],[9,11,["H3389"]],[11,12,["H1984"]],[12,15,["H3050"]]]},{"k":16197,"v":[[0,3,["H3034"]],[3,6,["H3068"]],[6,7,["H3588"]],[7,10,["H2896"]],[10,11,["H3588"]],[11,13,["H2617"]],[13,16,["H5769"]]]},{"k":16198,"v":[[0,3,["H3034"]],[3,6,["H430"]],[6,8,["H430"]],[8,9,["H3588"]],[9,11,["H2617"]],[11,14,["H5769"]]]},{"k":16199,"v":[[0,3,["H3034"]],[3,6,["H113"]],[6,8,["H113"]],[8,9,["H3588"]],[9,11,["H2617"]],[11,14,["H5769"]]]},{"k":16200,"v":[[0,4,["H905"]],[4,5,["H6213"]],[5,6,["H1419"]],[6,7,["H6381"]],[7,8,["H3588"]],[8,10,["H2617"]],[10,13,["H5769"]]]},{"k":16201,"v":[[0,5,["H8394"]],[5,6,["H6213"]],[6,8,["H8064"]],[8,9,["H3588"]],[9,11,["H2617"]],[11,14,["H5769"]]]},{"k":16202,"v":[[0,5,["H7554"]],[5,7,["H776"]],[7,8,["H5921"]],[8,10,["H4325"]],[10,11,["H3588"]],[11,13,["H2617"]],[13,16,["H5769"]]]},{"k":16203,"v":[[0,4,["H6213"]],[4,5,["H1419"]],[5,6,["H216"]],[6,7,["H3588"]],[7,9,["H2617"]],[9,12,["H5769"]]]},{"k":16204,"v":[[0,0,["(H853)"]],[0,2,["H8121"]],[2,4,["H4475"]],[4,6,["H3117"]],[6,7,["H3588"]],[7,9,["H2617"]],[9,12,["H5769"]]]},{"k":16205,"v":[[0,0,["(H853)"]],[0,2,["H3394"]],[2,4,["H3556"]],[4,6,["H4475"]],[6,8,["H3915"]],[8,9,["H3588"]],[9,11,["H2617"]],[11,14,["H5769"]]]},{"k":16206,"v":[[0,4,["H5221"]],[4,5,["H4714"]],[5,8,["H1060"]],[8,9,["H3588"]],[9,11,["H2617"]],[11,14,["H5769"]]]},{"k":16207,"v":[[0,3,["H3318"]],[3,4,["H3478"]],[4,6,["H4480","H8432"]],[6,8,["H3588"]],[8,10,["H2617"]],[10,13,["H5769"]]]},{"k":16208,"v":[[0,3,["H2389"]],[3,4,["H3027"]],[4,9,["H5186"]],[9,10,["H2220"]],[10,11,["H3588"]],[11,13,["H2617"]],[13,16,["H5769"]]]},{"k":16209,"v":[[0,4,["H1504"]],[4,6,["H5488"]],[6,7,["H3220"]],[7,9,["H1506"]],[9,10,["H3588"]],[10,12,["H2617"]],[12,15,["H5769"]]]},{"k":16210,"v":[[0,3,["H3478"]],[3,6,["H5674"]],[6,8,["H8432"]],[8,11,["H3588"]],[11,13,["H2617"]],[13,16,["H5769"]]]},{"k":16211,"v":[[0,2,["H5287"]],[2,3,["H6547"]],[3,6,["H2428"]],[6,9,["H5488"]],[9,10,["H3220"]],[10,11,["H3588"]],[11,13,["H2617"]],[13,16,["H5769"]]]},{"k":16212,"v":[[0,4,["H1980"]],[4,6,["H5971"]],[6,9,["H4057"]],[9,10,["H3588"]],[10,12,["H2617"]],[12,15,["H5769"]]]},{"k":16213,"v":[[0,4,["H5221"]],[4,5,["H1419"]],[5,6,["H4428"]],[6,7,["H3588"]],[7,9,["H2617"]],[9,12,["H5769"]]]},{"k":16214,"v":[[0,2,["H2026"]],[2,3,["H117"]],[3,4,["H4428"]],[4,5,["H3588"]],[5,7,["H2617"]],[7,10,["H5769"]]]},{"k":16215,"v":[[0,1,["H5511"]],[1,2,["H4428"]],[2,5,["H567"]],[5,6,["H3588"]],[6,8,["H2617"]],[8,11,["H5769"]]]},{"k":16216,"v":[[0,2,["H5747"]],[2,4,["H4428"]],[4,6,["H1316"]],[6,7,["H3588"]],[7,9,["H2617"]],[9,12,["H5769"]]]},{"k":16217,"v":[[0,2,["H5414"]],[2,4,["H776"]],[4,7,["H5159"]],[7,8,["H3588"]],[8,10,["H2617"]],[10,13,["H5769"]]]},{"k":16218,"v":[[0,3,["H5159"]],[3,5,["H3478"]],[5,7,["H5650"]],[7,8,["H3588"]],[8,10,["H2617"]],[10,13,["H5769"]]]},{"k":16219,"v":[[0,2,["H2142"]],[2,7,["H7945","H8216"]],[7,8,["H3588"]],[8,10,["H2617"]],[10,13,["H5769"]]]},{"k":16220,"v":[[0,3,["H6561"]],[3,7,["H4480","H6862"]],[7,8,["H3588"]],[8,10,["H2617"]],[10,13,["H5769"]]]},{"k":16221,"v":[[0,2,["H5414"]],[2,3,["H3899"]],[3,5,["H3605"]],[5,6,["H1320"]],[6,7,["H3588"]],[7,9,["H2617"]],[9,12,["H5769"]]]},{"k":16222,"v":[[0,3,["H3034"]],[3,6,["H410"]],[6,8,["H8064"]],[8,9,["H3588"]],[9,11,["H2617"]],[11,14,["H5769"]]]},{"k":16223,"v":[[0,1,["H5921"]],[1,3,["H5104"]],[3,5,["H894"]],[5,6,["H8033"]],[6,9,["H3427"]],[9,10,["H1571"]],[10,12,["H1058"]],[12,15,["H2142","(H853)"]],[15,16,["H6726"]]]},{"k":16224,"v":[[0,2,["H8518"]],[2,4,["H3658"]],[4,5,["H5921"]],[5,7,["H6155"]],[7,10,["H8432"]],[10,11,[]]]},{"k":16225,"v":[[0,1,["H3588"]],[1,2,["H8033"]],[2,8,["H7617"]],[8,9,["H7592"]],[9,13,["H1697","H7892"]],[13,17,["H8437"]],[17,22,["H8057"]],[22,24,["H7891"]],[24,29,["H4480","H7892"]],[29,31,["H6726"]]]},{"k":16226,"v":[[0,1,["H349"]],[1,4,["H7891","(H853)"]],[4,6,["H3068"]],[6,7,["H7892"]],[7,8,["H5921"]],[8,10,["H5236"]],[10,11,["H127"]]]},{"k":16227,"v":[[0,1,["H518"]],[1,3,["H7911"]],[3,6,["H3389"]],[6,10,["H3225"]],[10,11,["H7911"]],[11,13,[]]]},{"k":16228,"v":[[0,1,["H518"]],[1,4,["H3808"]],[4,5,["H2142"]],[5,9,["H3956"]],[9,10,["H1692"]],[10,16,["H2441"]],[16,17,["H518"]],[17,19,["H5927"]],[19,20,["H3808","(H853)"]],[20,21,["H3389"]],[21,22,["H5921"]],[22,24,["H7218"]],[24,25,["H8057"]]]},{"k":16229,"v":[[0,1,["H2142"]],[1,3,["H3068"]],[3,5,["H1121"]],[5,7,["H123","(H853)"]],[7,10,["H3117"]],[10,12,["H3389"]],[12,14,["H559"]],[14,15,["H6168"]],[15,17,["H6168"]],[17,20,["H5704"]],[20,22,["H3247"]],[22,23,[]]]},{"k":16230,"v":[[0,2,["H1323"]],[2,4,["H894"]],[4,9,["H7703"]],[9,10,["H835"]],[10,15,["H7945","H7999"]],[15,17,["H854","H1576"]],[17,20,["H7945","H1580"]],[20,21,[]]]},{"k":16231,"v":[[0,1,["H835"]],[1,6,["H7945","H270"]],[6,8,["H5310","(H853)"]],[8,11,["H5768"]],[11,12,["H413"]],[12,14,["H5553"]]]},{"k":16232,"v":[[0,3,["H3034"]],[3,7,["H3605"]],[7,8,["H3820"]],[8,9,["H5048"]],[9,11,["H430"]],[11,15,["H2167"]],[15,17,[]]]},{"k":16233,"v":[[0,3,["H7812"]],[3,4,["H413"]],[4,6,["H6944"]],[6,7,["H1964"]],[7,9,["H3034","(H853)"]],[9,11,["H8034"]],[11,12,["H3588"]],[12,14,["H2617"]],[14,16,["H5921"]],[16,18,["H571"]],[18,19,["H3588"]],[19,22,["H1431"]],[22,24,["H565"]],[24,25,["H5921"]],[25,26,["H3605"]],[26,28,["H8034"]]]},{"k":16234,"v":[[0,3,["H3117"]],[3,6,["H7121"]],[6,8,["H6030"]],[8,11,["H7292"]],[11,14,["H5797"]],[14,17,["H5315"]]]},{"k":16235,"v":[[0,1,["H3605"]],[1,3,["H4428"]],[3,6,["H776"]],[6,8,["H3034"]],[8,11,["H3068"]],[11,12,["H3588"]],[12,14,["H8085"]],[14,16,["H561"]],[16,19,["H6310"]]]},{"k":16236,"v":[[0,4,["H7891"]],[4,7,["H1870"]],[7,10,["H3068"]],[10,11,["H3588"]],[11,12,["H1419"]],[12,15,["H3519"]],[15,18,["H3068"]]]},{"k":16237,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H7311"]],[5,9,["H7200"]],[9,12,["H8217"]],[12,15,["H1364"]],[15,17,["H3045"]],[17,19,["H4480","H4801"]]]},{"k":16238,"v":[[0,1,["H518"]],[1,3,["H1980"]],[3,6,["H7130"]],[6,8,["H6869"]],[8,11,["H2421"]],[11,16,["H7971"]],[16,18,["H3027"]],[18,19,["H5921"]],[19,21,["H639"]],[21,24,["H341"]],[24,28,["H3225"]],[28,30,["H3467"]],[30,31,[]]]},{"k":16239,"v":[[0,2,["H3068"]],[2,4,["H1584"]],[4,7,["H1157"]],[7,10,["H2617"]],[10,12,["H3068"]],[12,15,["H5769"]],[15,16,["H7503"]],[16,17,["H408"]],[17,19,["H4639"]],[19,23,["H3027"]]]},{"k":16240,"v":[[0,2,["H3068"]],[2,5,["H2713"]],[5,8,["H3045"]],[8,9,[]]]},{"k":16241,"v":[[0,1,["H859"]],[1,2,["H3045"]],[2,4,["H3427"]],[4,7,["H6965"]],[7,9,["H995"]],[9,11,["H7454"]],[11,13,["H4480","H7350"]]]},{"k":16242,"v":[[0,2,["H2219"]],[2,4,["H734"]],[4,8,["H7252"]],[8,11,["H5532"]],[11,13,["H3605"]],[13,15,["H1870"]]]},{"k":16243,"v":[[0,1,["H3588"]],[1,4,["H369"]],[4,6,["H4405"]],[6,9,["H3956"]],[9,11,["H2005"]],[11,13,["H3068"]],[13,15,["H3045"]],[15,17,["H3605"]]]},{"k":16244,"v":[[0,3,["H6696"]],[3,5,["H268"]],[5,7,["H6924"]],[7,9,["H7896"]],[9,11,["H3709"]],[11,12,["H5921"]],[12,13,[]]]},{"k":16245,"v":[[0,2,["H1847"]],[2,5,["H6383"]],[5,6,["H4480"]],[6,10,["H7682"]],[10,12,["H3808","H3201"]],[12,15,[]]]},{"k":16246,"v":[[0,1,["H575"]],[1,4,["H1980"]],[4,7,["H4480","H7307"]],[7,9,["H575"]],[9,12,["H1272"]],[12,15,["H4480","H6440"]]]},{"k":16247,"v":[[0,1,["H518"]],[1,4,["H5266"]],[4,6,["H8064"]],[6,7,["H859"]],[7,9,["H8033"]],[9,14,["H3331"]],[14,16,["H7585"]],[16,17,["H2009"]],[17,20,[]]]},{"k":16248,"v":[[0,3,["H5375"]],[3,5,["H3671"]],[5,8,["H7837"]],[8,10,["H7931"]],[10,14,["H319"]],[14,17,["H3220"]]]},{"k":16249,"v":[[0,1,["H1571"]],[1,2,["H8033"]],[2,5,["H3027"]],[5,6,["H5148"]],[6,11,["H3225"]],[11,13,["H270"]],[13,14,[]]]},{"k":16250,"v":[[0,3,["H559"]],[3,4,["H389"]],[4,6,["H2822"]],[6,8,["H7779"]],[8,12,["H3915"]],[12,15,["H216"]],[15,16,["H1157"]],[16,17,[]]]},{"k":16251,"v":[[0,1,["H1571"]],[1,3,["H2822"]],[3,4,["H2821"]],[4,5,["H3808"]],[5,6,["H4480"]],[6,10,["H3915"]],[10,11,["H215"]],[11,14,["H3117"]],[14,16,["H2825"]],[16,19,["H219"]],[19,24,[]]]},{"k":16252,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H7069"]],[4,6,["H3629"]],[6,9,["H5526"]],[9,13,["H517"]],[13,14,["H990"]]]},{"k":16253,"v":[[0,3,["H3034"]],[3,5,["H5921","H3588"]],[5,8,["H3372"]],[8,10,["H6395"]],[10,12,["H6381"]],[12,15,["H4639"]],[15,19,["H5315"]],[19,20,["H3045"]],[20,22,["H3966"]]]},{"k":16254,"v":[[0,2,["H6108"]],[2,4,["H3808"]],[4,5,["H3582"]],[5,6,["H4480"]],[6,8,["H834"]],[8,11,["H6213"]],[11,13,["H5643"]],[13,16,["H7551"]],[16,20,["H8482"]],[20,23,["H776"]]]},{"k":16255,"v":[[0,2,["H5869"]],[2,4,["H7200"]],[4,9,["H1564"]],[9,11,["H5921"]],[11,13,["H5612"]],[13,14,["H3605"]],[14,18,["H3789"]],[18,21,["H3117"]],[21,23,["H3335"]],[23,29,["H3808","H259"]],[29,31,[]]]},{"k":16256,"v":[[0,1,["H4100"]],[1,2,["H3365"]],[2,6,["H7454"]],[6,10,["H410"]],[10,11,["H4100"]],[11,12,["H6105"]],[12,15,["H7218"]],[15,17,[]]]},{"k":16257,"v":[[0,4,["H5608"]],[4,10,["H7235"]],[10,13,["H4480","H2344"]],[13,16,["H6974"]],[16,19,["H5750"]],[19,21,["H5973"]]]},{"k":16258,"v":[[0,1,["H518"]],[1,4,["H6991"]],[4,6,["H7563"]],[6,8,["H433"]],[8,9,["H5493"]],[9,10,["H4480"]],[10,14,["H1818"]],[14,15,["H376"]]]},{"k":16259,"v":[[0,1,["H834"]],[1,3,["H559"]],[3,6,["H4209"]],[6,9,["H6145"]],[9,10,["H5375"]],[10,14,["H7723"]]]},{"k":16260,"v":[[0,2,["H3808"]],[2,4,["H8130"]],[4,7,["H3068"]],[7,9,["H8130"]],[9,15,["H6962"]],[15,21,["H8618"]],[21,22,[]]]},{"k":16261,"v":[[0,2,["H8130"]],[2,5,["H8503"]],[5,6,["H8135"]],[6,8,["H1961"]],[8,11,["H341"]]]},{"k":16262,"v":[[0,1,["H2713"]],[1,4,["H410"]],[4,6,["H3045"]],[6,8,["H3824"]],[8,9,["H974"]],[9,12,["H3045"]],[12,14,["H8312"]]]},{"k":16263,"v":[[0,2,["H7200"]],[2,3,["H518"]],[3,7,["H6090"]],[7,8,["H1870"]],[8,12,["H5148"]],[12,16,["H1870"]],[16,17,["H5769"]]]},{"k":16264,"v":[[0,1,["H2502"]],[1,4,["H3068"]],[4,7,["H7451"]],[7,8,["H4480","H120"]],[8,9,["H5341"]],[9,13,["H2555"]],[13,14,["H4480","H376"]]]},{"k":16265,"v":[[0,1,["H834"]],[1,2,["H2803"]],[2,3,["H7451"]],[3,6,["H3820"]],[6,7,["H3605","H3117"]],[7,11,["H1481"]],[11,13,["H4421"]]]},{"k":16266,"v":[[0,3,["H8150"]],[3,5,["H3956"]],[5,6,["H3644"]],[6,8,["H5175"]],[8,9,["H5919"]],[9,10,["H2534"]],[10,12,["H8478"]],[12,14,["H8193"]],[14,15,["H5542"]]]},{"k":16267,"v":[[0,1,["H8104"]],[1,4,["H3068"]],[4,7,["H4480","H3027"]],[7,10,["H7563"]],[10,11,["H5341"]],[11,16,["H4480","H376","H2555"]],[16,17,["H834"]],[17,19,["H2803"]],[19,21,["H1760"]],[21,23,["H6471"]]]},{"k":16268,"v":[[0,2,["H1343"]],[2,4,["H2934"]],[4,6,["H6341"]],[6,10,["H2256"]],[10,13,["H6566"]],[13,15,["H7568"]],[15,18,["H3027","H4570"]],[18,21,["H7896"]],[21,22,["H4170"]],[22,25,["H5542"]]]},{"k":16269,"v":[[0,2,["H559"]],[2,5,["H3068"]],[5,6,["H859"]],[6,9,["H410"]],[9,10,["H238"]],[10,12,["H6963"]],[12,15,["H8469"]],[15,17,["H3068"]]]},{"k":16270,"v":[[0,2,["H3069"]],[2,4,["H136"]],[4,6,["H5797"]],[6,9,["H3444"]],[9,12,["H5526"]],[12,14,["H7218"]],[14,17,["H3117"]],[17,19,["H5402"]]]},{"k":16271,"v":[[0,1,["H5414"]],[1,2,["H408"]],[2,4,["H3068"]],[4,6,["H3970"]],[6,9,["H7563"]],[9,10,["H6329"]],[10,11,["H408"]],[11,14,["H2162"]],[14,17,["H7311"]],[17,19,["H5542"]]]},{"k":16272,"v":[[0,4,["H7218"]],[4,10,["H4524"]],[10,13,["H5999"]],[13,17,["H8193"]],[17,18,["H3680"]],[18,19,[]]]},{"k":16273,"v":[[0,3,["H1513"]],[3,4,["H4131"]],[4,5,["H5921"]],[5,10,["H5307"]],[10,13,["H784"]],[13,16,["H4113"]],[16,19,["H6965"]],[19,20,["H1077"]],[20,22,[]]]},{"k":16274,"v":[[0,2,["H1077"]],[2,5,["H376","H3956"]],[5,7,["H3559"]],[7,10,["H776"]],[10,11,["H7451"]],[11,13,["H6679"]],[13,15,["H2555"]],[15,16,["H376"]],[16,18,["H4073"]],[18,19,[]]]},{"k":16275,"v":[[0,2,["H3045"]],[2,3,["H3588"]],[3,5,["H3068"]],[5,7,["H6213"]],[7,9,["H1779"]],[9,12,["H6041"]],[12,15,["H4941"]],[15,18,["H34"]]]},{"k":16276,"v":[[0,1,["H389"]],[1,3,["H6662"]],[3,6,["H3034"]],[6,9,["H8034"]],[9,11,["H3477"]],[11,13,["H3427","(H853)"]],[13,16,["H6440"]]]},{"k":16277,"v":[[0,1,["H3068"]],[1,3,["H7121"]],[3,7,["H2363"]],[7,11,["H238"]],[11,14,["H6963"]],[14,17,["H7121"]],[17,19,[]]]},{"k":16278,"v":[[0,3,["H8605"]],[3,6,["H3559"]],[6,7,["H6440"]],[7,10,["H7004"]],[10,14,["H4864"]],[14,17,["H3709"]],[17,20,["H6153"]],[20,21,["H4503"]]]},{"k":16279,"v":[[0,1,["H7896"]],[1,3,["H8108"]],[3,5,["H3068"]],[5,8,["H6310"]],[8,9,["H5341","H5921"]],[9,11,["H1817"]],[11,14,["H8193"]]]},{"k":16280,"v":[[0,1,["H5186"]],[1,2,["H408"]],[2,4,["H3820"]],[4,7,["H7451"]],[7,8,["H1697"]],[8,10,["H5953"]],[10,11,["H7562"]],[11,12,["H5949"]],[12,13,["H854"]],[13,14,["H376"]],[14,16,["H6466"]],[16,17,["H205"]],[17,21,["H1077"]],[21,22,["H3898"]],[22,25,["H4516"]]]},{"k":16281,"v":[[0,3,["H6662"]],[3,4,["H1986"]],[4,10,["H2617"]],[10,14,["H3198"]],[14,20,["H7218"]],[20,21,["H8081"]],[21,24,["H408"]],[24,25,["H5106"]],[25,27,["H7218"]],[27,28,["H3588"]],[28,29,["H5750"]],[29,31,["H8605"]],[31,37,["H7451"]]]},{"k":16282,"v":[[0,3,["H8199"]],[3,5,["H8058"]],[5,7,["H5553"]],[7,8,["H3027"]],[8,11,["H8085"]],[11,13,["H561"]],[13,14,["H3588"]],[14,17,["H5276"]]]},{"k":16283,"v":[[0,2,["H6106"]],[2,4,["H6340"]],[4,7,["H7585"]],[7,8,["H6310"]],[8,10,["H3644"]],[10,12,["H6398"]],[12,14,["H1234"]],[14,18,["H776"]]]},{"k":16284,"v":[[0,1,["H3588"]],[1,3,["H5869"]],[3,5,["H413"]],[5,8,["H3069"]],[8,10,["H136"]],[10,15,["H2620"]],[15,20,["H6168","H408","H5315"]]]},{"k":16285,"v":[[0,1,["H8104"]],[1,3,["H4480","H3027"]],[3,5,["H6341"]],[5,9,["H3369"]],[9,14,["H4170"]],[14,17,["H6466"]],[17,19,["H205"]]]},{"k":16286,"v":[[0,3,["H7563"]],[3,4,["H5307"]],[4,8,["H4364"]],[8,9,["H5704"]],[9,11,["H595"]],[11,12,["H3162"]],[12,13,["H5674"]]]},{"k":16287,"v":[[0,2,["H2199"]],[2,3,["H413"]],[3,5,["H3068"]],[5,8,["H6963"]],[8,11,["H6963"]],[11,12,["H413"]],[12,14,["H3068"]],[14,19,["H2603"]]]},{"k":16288,"v":[[0,3,["H8210"]],[3,5,["H7879"]],[5,6,["H6440"]],[6,9,["H5046"]],[9,10,["H6440"]],[10,13,["H6869"]]]},{"k":16289,"v":[[0,3,["H7307"]],[3,5,["H5848"]],[5,6,["H5921"]],[6,9,["H859"]],[9,10,["H3045"]],[10,12,["H5410"]],[12,15,["H734"]],[15,16,["H2098"]],[16,18,["H1980"]],[18,22,["H2934"]],[22,24,["H6341"]],[24,26,[]]]},{"k":16290,"v":[[0,2,["H5027"]],[2,6,["H3225"]],[6,8,["H7200"]],[8,13,["H369"]],[13,16,["H5234"]],[16,18,["H4498"]],[18,19,["H6","H4480"]],[19,22,["H369"]],[22,23,["H1875"]],[23,26,["H5315"]]]},{"k":16291,"v":[[0,2,["H2199"]],[2,3,["H413"]],[3,6,["H3068"]],[6,8,["H559"]],[8,9,["H859"]],[9,12,["H4268"]],[12,15,["H2506"]],[15,18,["H776"]],[18,21,["H2416"]]]},{"k":16292,"v":[[0,1,["H7181"]],[1,2,["H413"]],[2,4,["H7440"]],[4,5,["H3588"]],[5,10,["H1809","H3966"]],[10,11,["H5337"]],[11,15,["H4480","H7291"]],[15,16,["H3588"]],[16,19,["H553"]],[19,20,["H4480"]],[20,21,[]]]},{"k":16293,"v":[[0,4,["H3318","H5315"]],[4,6,["H4480","H4525"]],[6,10,["H3034","(H853)"]],[10,12,["H8034"]],[12,14,["H6662"]],[14,18,["H3803"]],[18,19,["H3588"]],[19,23,["H1580"]],[23,24,["H5921"]],[24,25,[]]]},{"k":16294,"v":[[0,1,["H8085"]],[1,3,["H8605"]],[3,5,["H3068"]],[5,7,["H238"]],[7,8,["H413"]],[8,10,["H8469"]],[10,13,["H530"]],[13,14,["H6030"]],[14,19,["H6666"]]]},{"k":16295,"v":[[0,2,["H935"]],[2,3,["H408"]],[3,5,["H4941"]],[5,6,["H854"]],[6,8,["H5650"]],[8,9,["H3588"]],[9,12,["H6440"]],[12,14,["H3808"]],[14,15,["H3605"]],[15,16,["H2416"]],[16,18,["H6663"]]]},{"k":16296,"v":[[0,1,["H3588"]],[1,3,["H341"]],[3,5,["H7291"]],[5,7,["H5315"]],[7,10,["H1792"]],[10,12,["H2416"]],[12,16,["H776"]],[16,22,["H3427"]],[22,24,["H4285"]],[24,30,["H5769"]],[30,31,["H4191"]]]},{"k":16297,"v":[[0,4,["H7307"]],[4,5,["H5848"]],[5,6,["H5921"]],[6,9,["H3820"]],[9,10,["H8432"]],[10,13,["H8074"]]]},{"k":16298,"v":[[0,2,["H2142"]],[2,4,["H3117"]],[4,6,["H4480","H6924"]],[6,8,["H1897"]],[8,10,["H3605"]],[10,12,["H6467"]],[12,14,["H7878"]],[14,17,["H4639"]],[17,20,["H3027"]]]},{"k":16299,"v":[[0,3,["H6566"]],[3,5,["H3027"]],[5,7,["H413"]],[7,9,["H5315"]],[9,15,["H5889"]],[15,16,["H776"]],[16,17,["H5542"]]]},{"k":16300,"v":[[0,1,["H6030"]],[1,3,["H4116"]],[3,5,["H3068"]],[5,7,["H7307"]],[7,8,["H3615"]],[8,9,["H5641"]],[9,10,["H408"]],[10,12,["H6440"]],[12,13,["H4480"]],[13,18,["H4911"]],[18,19,["H5973"]],[19,23,["H3381"]],[23,26,["H953"]]]},{"k":16301,"v":[[0,4,["H8085"]],[4,6,["H2617"]],[6,9,["H1242"]],[9,10,["H3588"]],[10,15,["H982"]],[15,19,["H3045"]],[19,21,["H1870"]],[21,22,["H2098"]],[22,25,["H1980"]],[25,26,["H3588"]],[26,29,["H5375"]],[29,31,["H5315"]],[31,32,["H413"]],[32,33,[]]]},{"k":16302,"v":[[0,1,["H5337"]],[1,4,["H3068"]],[4,7,["H4480","H341"]],[7,14,["H3680","H413"]]]},{"k":16303,"v":[[0,1,["H3925"]],[1,4,["H6213"]],[4,6,["H7522"]],[6,7,["H3588"]],[7,8,["H859"]],[8,11,["H430"]],[11,13,["H7307"]],[13,15,["H2896"]],[15,16,["H5148"]],[16,20,["H776"]],[20,22,["H4334"]]]},{"k":16304,"v":[[0,1,["H2421"]],[1,4,["H3068"]],[4,8,["H4616","H8034"]],[8,11,["H6666"]],[11,16,["H3318","H5315"]],[16,18,["H4480","H6869"]]]},{"k":16305,"v":[[0,4,["H2617"]],[4,6,["H6789"]],[6,8,["H341"]],[8,10,["H6"]],[10,11,["H3605"]],[11,14,["H6887"]],[14,16,["H5315"]],[16,17,["H3588"]],[17,18,["H589"]],[18,21,["H5650"]]]},{"k":16306,"v":[[0,1,["H1288"]],[1,4,["H3068"]],[4,6,["H6697"]],[6,8,["H3925"]],[8,10,["H3027"]],[10,12,["H7128"]],[12,15,["H676"]],[15,17,["H4421"]]]},{"k":16307,"v":[[0,2,["H2617"]],[2,5,["H4686"]],[5,8,["H4869"]],[8,11,["H6403"]],[11,13,["H4043"]],[13,19,["H2620"]],[19,21,["H7286"]],[21,23,["H5971"]],[23,24,["H8478"]],[24,25,[]]]},{"k":16308,"v":[[0,1,["H3068"]],[1,2,["H4100"]],[2,4,["H120"]],[4,8,["H3045"]],[8,13,["H1121"]],[13,15,["H582"]],[15,19,["H2803"]],[19,21,[]]]},{"k":16309,"v":[[0,1,["H120"]],[1,3,["H1819"]],[3,5,["H1892"]],[5,7,["H3117"]],[7,11,["H6738"]],[11,14,["H5674"]]]},{"k":16310,"v":[[0,1,["H5186"]],[1,3,["H8064"]],[3,5,["H3068"]],[5,8,["H3381"]],[8,9,["H5060"]],[9,11,["H2022"]],[11,15,["H6225"]]]},{"k":16311,"v":[[0,2,["H1299"]],[2,3,["H1300"]],[3,5,["H6327"]],[5,8,["H7971"]],[8,10,["H2671"]],[10,12,["H2000"]],[12,13,[]]]},{"k":16312,"v":[[0,1,["H7971"]],[1,3,["H3027"]],[3,5,["H4480","H4791"]],[5,6,["H6475"]],[6,9,["H5337"]],[9,13,["H7227"]],[13,14,["H4480","H4325"]],[14,17,["H4480","H3027"]],[17,19,["H5236"]],[19,20,["H1121"]]]},{"k":16313,"v":[[0,1,["H834"]],[1,2,["H6310"]],[2,3,["H1696"]],[3,4,["H7723"]],[4,8,["H3225"]],[8,12,["H3225"]],[12,14,["H8267"]]]},{"k":16314,"v":[[0,3,["H7891"]],[3,5,["H2319"]],[5,6,["H7892"]],[6,10,["H430"]],[10,13,["H5035"]],[13,19,["H6218"]],[19,23,["H2167"]],[23,25,[]]]},{"k":16315,"v":[[0,5,["H5414"]],[5,6,["H8668"]],[6,8,["H4428"]],[8,10,["H6475","(H853)"]],[10,11,["H1732"]],[11,13,["H5650"]],[13,16,["H7451"]],[16,17,["H4480","H2719"]]]},{"k":16316,"v":[[0,1,["H6475"]],[1,4,["H5337"]],[4,8,["H4480","H3027"]],[8,10,["H5236"]],[10,11,["H1121"]],[11,12,["H834"]],[12,13,["H6310"]],[13,14,["H1696"]],[14,15,["H7723"]],[15,19,["H3225"]],[19,23,["H3225"]],[23,25,["H8267"]]]},{"k":16317,"v":[[0,1,["H834"]],[1,3,["H1121"]],[3,7,["H5195"]],[7,9,["H1431"]],[9,12,["H5271"]],[12,15,["H1323"]],[15,20,["H2106"]],[20,21,["H2404"]],[21,24,["H8403"]],[24,27,["H1964"]]]},{"k":16318,"v":[[0,3,["H4200"]],[3,6,["H4392"]],[6,7,["H6329"]],[7,11,["H4480","H2177","H413","H2177"]],[11,14,["H6629"]],[14,18,["H503"]],[18,21,["H7231"]],[21,24,["H2351"]]]},{"k":16319,"v":[[0,3,["H441"]],[3,8,["H5445"]],[8,12,["H369"]],[12,14,["H6556"]],[14,15,["H369"]],[15,17,["H3318"]],[17,21,["H369"]],[21,22,["H6682"]],[22,25,["H7339"]]]},{"k":16320,"v":[[0,1,["H835"]],[1,4,["H5971"]],[4,10,["H7945","H3602"]],[10,12,["H835"]],[12,15,["H5971"]],[15,17,["H430"]],[17,20,["H7945","H3068"]]]},{"k":16321,"v":[[0,3,["H7311"]],[3,6,["H430"]],[6,8,["H4428"]],[8,12,["H1288"]],[12,14,["H8034"]],[14,16,["H5769"]],[16,18,["H5703"]]]},{"k":16322,"v":[[0,1,["H3605"]],[1,2,["H3117"]],[2,5,["H1288"]],[5,10,["H1984"]],[10,12,["H8034"]],[12,14,["H5769"]],[14,16,["H5703"]]]},{"k":16323,"v":[[0,1,["H1419"]],[1,4,["H3068"]],[4,6,["H3966"]],[6,9,["H1984"]],[9,12,["H1420"]],[12,14,["H369","H2714"]]]},{"k":16324,"v":[[0,2,["H1755"]],[2,4,["H7623"]],[4,6,["H4639"]],[6,8,["H1755"]],[8,11,["H5046"]],[11,14,["H1369"]]]},{"k":16325,"v":[[0,3,["H7878"]],[3,6,["H3519"]],[6,7,["H1926"]],[7,10,["H1935"]],[10,14,["H6381"]],[14,15,["H1697"]]]},{"k":16326,"v":[[0,4,["H559"]],[4,7,["H5807"]],[7,11,["H3372"]],[11,15,["H5608"]],[15,17,["H1420"]]]},{"k":16327,"v":[[0,4,["H5042"]],[4,6,["H2143"]],[6,9,["H7227"]],[9,10,["H2898"]],[10,13,["H7442"]],[13,16,["H6666"]]]},{"k":16328,"v":[[0,2,["H3068"]],[2,4,["H2587"]],[4,8,["H7349"]],[8,9,["H750"]],[9,11,["H639"]],[11,14,["H1419"]],[14,15,["H2617"]]]},{"k":16329,"v":[[0,2,["H3068"]],[2,4,["H2896"]],[4,6,["H3605"]],[6,10,["H7356"]],[10,12,["H5921"]],[12,13,["H3605"]],[13,15,["H4639"]]]},{"k":16330,"v":[[0,1,["H3605"]],[1,3,["H4639"]],[3,5,["H3034"]],[5,8,["H3068"]],[8,11,["H2623"]],[11,13,["H1288"]],[13,14,[]]]},{"k":16331,"v":[[0,3,["H559"]],[3,6,["H3519"]],[6,9,["H4438"]],[9,11,["H1696"]],[11,14,["H1369"]]]},{"k":16332,"v":[[0,3,["H3045"]],[3,6,["H1121"]],[6,8,["H120"]],[8,11,["H1369"]],[11,14,["H3519"]],[14,15,["H1926"]],[15,18,["H4438"]]]},{"k":16333,"v":[[0,2,["H4438"]],[2,5,["H3605","H5769"]],[5,6,["H4438"]],[6,9,["H4475"]],[9,12,["H3605"]],[12,13,["H1755","H1755"]]]},{"k":16334,"v":[[0,2,["H3068"]],[2,3,["H5564"]],[3,4,["H3605"]],[4,6,["H5307"]],[6,9,["H2210"]],[9,10,["H3605"]],[10,15,["H3721"]]]},{"k":16335,"v":[[0,2,["H5869"]],[2,4,["H3605"]],[4,5,["H7663"]],[5,6,["H413"]],[6,9,["H859"]],[9,10,["H5414"]],[10,11,["(H853)"]],[11,13,["H400"]],[13,16,["H6256"]]]},{"k":16336,"v":[[0,2,["H6605","(H853)"]],[2,4,["H3027"]],[4,6,["H7646"]],[6,8,["H7522"]],[8,10,["H3605"]],[10,12,["H2416"]]]},{"k":16337,"v":[[0,2,["H3068"]],[2,4,["H6662"]],[4,6,["H3605"]],[6,8,["H1870"]],[8,10,["H2623"]],[10,12,["H3605"]],[12,14,["H4639"]]]},{"k":16338,"v":[[0,2,["H3068"]],[2,4,["H7138"]],[4,6,["H3605"]],[6,9,["H7121"]],[9,13,["H3605"]],[13,14,["H834"]],[14,15,["H7121"]],[15,19,["H571"]]]},{"k":16339,"v":[[0,3,["H6213"]],[3,5,["H7522"]],[5,9,["H3373"]],[9,14,["H8085"]],[14,16,["H7775"]],[16,19,["H3467"]],[19,20,[]]]},{"k":16340,"v":[[0,2,["H3068"]],[2,3,["H8104","(H853)"]],[3,4,["H3605"]],[4,7,["H157"]],[7,10,["H3605"]],[10,12,["H7563"]],[12,15,["H8045"]]]},{"k":16341,"v":[[0,2,["H6310"]],[2,4,["H1696"]],[4,6,["H8416"]],[6,9,["H3068"]],[9,12,["H3605"]],[12,13,["H1320"]],[13,14,["H1288"]],[14,16,["H6944"]],[16,17,["H8034"]],[17,19,["H5769"]],[19,21,["H5703"]]]},{"k":16342,"v":[[0,1,["H1984"]],[1,4,["H3050"]],[4,5,["H1984","(H853)"]],[5,7,["H3068"]],[7,10,["H5315"]]]},{"k":16343,"v":[[0,3,["H2416"]],[3,6,["H1984"]],[6,8,["H3068"]],[8,12,["H2167"]],[12,15,["H430"]],[15,20,["H5750"]]]},{"k":16344,"v":[[0,2,["H408"]],[2,4,["H982"]],[4,6,["H5081"]],[6,10,["H1121"]],[10,12,["H120"]],[12,17,["H7945","H369"]],[17,18,["H8668"]]]},{"k":16345,"v":[[0,2,["H7307"]],[2,4,["H3318"]],[4,6,["H7725"]],[6,9,["H127"]],[9,12,["H1931"]],[12,13,["H3117"]],[13,15,["H6250"]],[15,16,["H6"]]]},{"k":16346,"v":[[0,1,["H835"]],[1,7,["H7945","H410"]],[7,9,["H3290"]],[9,12,["H5828"]],[12,14,["H7664"]],[14,16,["H5921"]],[16,18,["H3068"]],[18,20,["H430"]]]},{"k":16347,"v":[[0,2,["H6213"]],[2,3,["H8064"]],[3,5,["H776","(H853)"]],[5,7,["H3220"]],[7,9,["H3605"]],[9,10,["H834"]],[10,14,["H8104"]],[14,15,["H571"]],[15,17,["H5769"]]]},{"k":16348,"v":[[0,2,["H6213"]],[2,3,["H4941"]],[3,6,["H6231"]],[6,8,["H5414"]],[8,9,["H3899"]],[9,12,["H7457"]],[12,14,["H3068"]],[14,15,["H5425"]],[15,17,["H631"]]]},{"k":16349,"v":[[0,2,["H3068"]],[2,3,["H6491"]],[3,8,["H5787"]],[8,10,["H3068"]],[10,11,["H2210"]],[11,16,["H3721"]],[16,18,["H3068"]],[18,19,["H157"]],[19,21,["H6662"]]]},{"k":16350,"v":[[0,2,["H3068"]],[2,3,["H8104","(H853)"]],[3,5,["H1616"]],[5,7,["H5749"]],[7,9,["H3490"]],[9,11,["H490"]],[11,14,["H1870"]],[14,17,["H7563"]],[17,21,["H5791"]]]},{"k":16351,"v":[[0,2,["H3068"]],[2,4,["H4427"]],[4,6,["H5769"]],[6,9,["H430"]],[9,11,["H6726"]],[11,14,["H1755","H1755"]],[14,15,["H1984"]],[15,18,["H3050"]]]},{"k":16352,"v":[[0,1,["H1984"]],[1,4,["H3050"]],[4,5,["H3588"]],[5,8,["H2896"]],[8,11,["H2167"]],[11,14,["H430"]],[14,15,["H3588"]],[15,18,["H5273"]],[18,20,["H8416"]],[20,22,["H5000"]]]},{"k":16353,"v":[[0,2,["H3068"]],[2,5,["H1129"]],[5,6,["H3389"]],[6,9,["H3664"]],[9,11,["H1760"]],[11,13,["H3478"]]]},{"k":16354,"v":[[0,2,["H7495"]],[2,4,["H7665"]],[4,6,["H3820"]],[6,9,["H2280"]],[9,11,["H6094"]]]},{"k":16355,"v":[[0,2,["H4487"]],[2,4,["H4557"]],[4,7,["H3556"]],[7,9,["H7121"]],[9,11,["H3605"]],[11,14,["H8034"]]]},{"k":16356,"v":[[0,1,["H1419"]],[1,4,["H113"]],[4,7,["H7227"]],[7,8,["H3581"]],[8,10,["H8394"]],[10,12,["H369","H4557"]]]},{"k":16357,"v":[[0,2,["H3068"]],[2,4,["H5749"]],[4,6,["H6035"]],[6,11,["H8213","H7563"]],[11,12,["H5704"]],[12,14,["H776"]]]},{"k":16358,"v":[[0,1,["H6030"]],[1,4,["H3068"]],[4,6,["H8426"]],[6,8,["H2167"]],[8,11,["H3658"]],[11,14,["H430"]]]},{"k":16359,"v":[[0,2,["H3680"]],[2,4,["H8064"]],[4,6,["H5645"]],[6,8,["H3559"]],[8,9,["H4306"]],[9,12,["H776"]],[12,15,["H2682"]],[15,17,["H6779"]],[17,20,["H2022"]]]},{"k":16360,"v":[[0,2,["H5414"]],[2,5,["H929"]],[5,7,["H3899"]],[7,11,["H1121"]],[11,12,["H6158"]],[12,13,["H834"]],[13,14,["H7121"]]]},{"k":16361,"v":[[0,2,["H2654"]],[2,3,["H3808"]],[3,6,["H1369"]],[6,9,["H5483"]],[9,13,["H3808","H7521"]],[13,16,["H7785"]],[16,19,["H376"]]]},{"k":16362,"v":[[0,2,["H3068"]],[2,5,["H7521","(H853)"]],[5,8,["H3373"]],[8,10,["(H853)"]],[10,13,["H3176"]],[13,16,["H2617"]]]},{"k":16363,"v":[[0,1,["H7623","(H853)"]],[1,3,["H3068"]],[3,5,["H3389"]],[5,6,["H1984"]],[6,8,["H430"]],[8,10,["H6726"]]]},{"k":16364,"v":[[0,1,["H3588"]],[1,4,["H2388"]],[4,6,["H1280"]],[6,9,["H8179"]],[9,12,["H1288"]],[12,14,["H1121"]],[14,15,["H7130"]],[15,16,[]]]},{"k":16365,"v":[[0,2,["H7760"]],[2,3,["H7965"]],[3,6,["H1366"]],[6,8,["H7646"]],[8,12,["H2459"]],[12,15,["H2406"]]]},{"k":16366,"v":[[0,3,["H7971"]],[3,5,["H565"]],[5,7,["H776"]],[7,9,["H1697"]],[9,10,["H7323"]],[10,11,["H5704"]],[11,12,["H4120"]]]},{"k":16367,"v":[[0,2,["H5414"]],[2,3,["H7950"]],[3,5,["H6785"]],[5,7,["H6340"]],[7,9,["H3713"]],[9,11,["H665"]]]},{"k":16368,"v":[[0,3,["H7993"]],[3,5,["H7140"]],[5,7,["H6595"]],[7,8,["H4310"]],[8,10,["H5975"]],[10,11,["H6440"]],[11,13,["H7135"]]]},{"k":16369,"v":[[0,3,["H7971"]],[3,5,["H1697"]],[5,7,["H4529"]],[7,12,["H7307"]],[12,14,["H5380"]],[14,17,["H4325"]],[17,18,["H5140"]]]},{"k":16370,"v":[[0,2,["H5046"]],[2,4,["H1697"]],[4,6,["H3290"]],[6,8,["H2706"]],[8,11,["H4941"]],[11,13,["H3478"]]]},{"k":16371,"v":[[0,3,["H3808"]],[3,4,["H6213"]],[4,5,["H3651"]],[5,7,["H3605"]],[7,8,["H1471"]],[8,13,["H4941"]],[13,16,["H1077"]],[16,17,["H3045"]],[17,19,["H1984"]],[19,22,["H3050"]]]},{"k":16372,"v":[[0,1,["H1984"]],[1,4,["H3050"]],[4,5,["H1984"]],[5,6,["(H853)"]],[6,8,["H3068"]],[8,9,["H4480"]],[9,11,["H8064"]],[11,12,["H1984"]],[12,16,["H4791"]]]},{"k":16373,"v":[[0,1,["H1984"]],[1,4,["H3605"]],[4,6,["H4397"]],[6,7,["H1984"]],[7,10,["H3605"]],[10,12,["H6635"]]]},{"k":16374,"v":[[0,1,["H1984"]],[1,4,["H8121"]],[4,6,["H3394"]],[6,7,["H1984"]],[7,9,["H3605"]],[9,11,["H3556"]],[11,13,["H216"]]]},{"k":16375,"v":[[0,1,["H1984"]],[1,4,["H8064"]],[4,6,["H8064"]],[6,9,["H4325"]],[9,10,["H834"]],[10,12,["H4480","H5921"]],[12,14,["H8064"]]]},{"k":16376,"v":[[0,3,["H1984","(H853)"]],[3,5,["H8034"]],[5,8,["H3068"]],[8,9,["H3588"]],[9,10,["H1931"]],[10,11,["H6680"]],[11,15,["H1254"]]]},{"k":16377,"v":[[0,4,["H5975"]],[4,7,["H5703"]],[7,9,["H5769"]],[9,12,["H5414"]],[12,14,["H2706"]],[14,17,["H3808"]],[17,18,["H5674"]]]},{"k":16378,"v":[[0,1,["H1984","(H853)"]],[1,3,["H3068"]],[3,4,["H4480"]],[4,6,["H776"]],[6,8,["H8577"]],[8,10,["H3605"]],[10,11,["H8415"]]]},{"k":16379,"v":[[0,1,["H784"]],[1,3,["H1259"]],[3,4,["H7950"]],[4,6,["H7008"]],[6,7,["H5591"]],[7,8,["H7307"]],[8,9,["H6213"]],[9,11,["H1697"]]]},{"k":16380,"v":[[0,1,["H2022"]],[1,3,["H3605"]],[3,4,["H1389"]],[4,5,["H6529"]],[5,6,["H6086"]],[6,8,["H3605"]],[8,9,["H730"]]]},{"k":16381,"v":[[0,1,["H2416"]],[1,3,["H3605"]],[3,4,["H929"]],[4,6,["H7431"]],[6,8,["H3671"]],[8,9,["H6833"]]]},{"k":16382,"v":[[0,1,["H4428"]],[1,4,["H776"]],[4,6,["H3605"]],[6,7,["H3816"]],[7,8,["H8269"]],[8,10,["H3605"]],[10,11,["H8199"]],[11,14,["H776"]]]},{"k":16383,"v":[[0,3,["H970"]],[3,4,["H1571"]],[4,5,["H1330"]],[5,7,["H2205"]],[7,8,["H5973"]],[8,9,["H5288"]]]},{"k":16384,"v":[[0,3,["H1984","(H853)"]],[3,5,["H8034"]],[5,8,["H3068"]],[8,9,["H3588"]],[9,11,["H8034"]],[11,12,["H905"]],[12,14,["H7682"]],[14,16,["H1935"]],[16,18,["H5921"]],[18,20,["H776"]],[20,22,["H8064"]]]},{"k":16385,"v":[[0,3,["H7311"]],[3,5,["H7161"]],[5,8,["H5971"]],[8,10,["H8416"]],[10,12,["H3605"]],[12,14,["H2623"]],[14,18,["H1121"]],[18,20,["H3478"]],[20,22,["H5971"]],[22,23,["H7138"]],[23,26,["H1984"]],[26,29,["H3050"]]]},{"k":16386,"v":[[0,1,["H1984"]],[1,4,["H3050"]],[4,5,["H7891"]],[5,8,["H3068"]],[8,10,["H2319"]],[10,11,["H7892"]],[11,14,["H8416"]],[14,17,["H6951"]],[17,19,["H2623"]]]},{"k":16387,"v":[[0,2,["H3478"]],[2,3,["H8055"]],[3,7,["H6213"]],[7,11,["H1121"]],[11,13,["H6726"]],[13,15,["H1523"]],[15,18,["H4428"]]]},{"k":16388,"v":[[0,3,["H1984"]],[3,5,["H8034"]],[5,8,["H4234"]],[8,12,["H2167"]],[12,17,["H8596"]],[17,19,["H3658"]]]},{"k":16389,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H7521"]],[5,8,["H5971"]],[8,11,["H6286"]],[11,13,["H6035"]],[13,15,["H3444"]]]},{"k":16390,"v":[[0,3,["H2623"]],[3,5,["H5937"]],[5,7,["H3519"]],[7,11,["H7442"]],[11,12,["H5921"]],[12,14,["H4904"]]]},{"k":16391,"v":[[0,3,["H7319"]],[3,6,["H410"]],[6,10,["H1627"]],[10,13,["H6374"]],[13,14,["H2719"]],[14,17,["H3027"]]]},{"k":16392,"v":[[0,2,["H6213"]],[2,3,["H5360"]],[3,6,["H1471"]],[6,8,["H8433"]],[8,11,["H3816"]]]},{"k":16393,"v":[[0,2,["H631"]],[2,4,["H4428"]],[4,6,["H2131"]],[6,9,["H3513"]],[9,11,["H3525"]],[11,13,["H1270"]]]},{"k":16394,"v":[[0,2,["H6213"]],[2,6,["H4941"]],[6,7,["H3789"]],[7,8,["H1931"]],[8,9,["H1926"]],[9,11,["H3605"]],[11,13,["H2623"]],[13,14,["H1984"]],[14,17,["H3050"]]]},{"k":16395,"v":[[0,1,["H1984"]],[1,4,["H3050"]],[4,5,["H1984"]],[5,6,["H410"]],[6,9,["H6944"]],[9,10,["H1984"]],[10,14,["H7549"]],[14,17,["H5797"]]]},{"k":16396,"v":[[0,1,["H1984"]],[1,6,["H1369"]],[6,7,["H1984"]],[7,12,["H7230"]],[12,13,["H1433"]]]},{"k":16397,"v":[[0,1,["H1984"]],[1,5,["H8629"]],[5,8,["H7782"]],[8,9,["H1984"]],[9,13,["H5035"]],[13,15,["H3658"]]]},{"k":16398,"v":[[0,1,["H1984"]],[1,5,["H8596"]],[5,7,["H4234"]],[7,8,["H1984"]],[8,12,["H4482"]],[12,14,["H5748"]]]},{"k":16399,"v":[[0,1,["H1984"]],[1,5,["H8088"]],[5,6,["H6767"]],[6,7,["H1984"]],[7,12,["H8643"]],[12,13,["H6767"]]]},{"k":16400,"v":[[0,2,["H3605"]],[2,6,["H5397"]],[6,7,["H1984"]],[7,9,["H3050"]],[9,10,["H1984"]],[10,13,["H3050"]]]},{"k":16401,"v":[[0,2,["H4912"]],[2,4,["H8010"]],[4,6,["H1121"]],[6,8,["H1732"]],[8,9,["H4428"]],[9,11,["H3478"]]]},{"k":16402,"v":[[0,2,["H3045"]],[2,3,["H2451"]],[3,5,["H4148"]],[5,7,["H995"]],[7,9,["H561"]],[9,11,["H998"]]]},{"k":16403,"v":[[0,2,["H3947"]],[2,4,["H4148"]],[4,6,["H7919"]],[6,7,["H6664"]],[7,9,["H4941"]],[9,11,["H4339"]]]},{"k":16404,"v":[[0,2,["H5414"]],[2,3,["H6195"]],[3,6,["H6612"]],[6,10,["H5288"]],[10,11,["H1847"]],[11,13,["H4209"]]]},{"k":16405,"v":[[0,2,["H2450"]],[2,5,["H8085"]],[5,8,["H3254"]],[8,9,["H3948"]],[9,14,["H995"]],[14,16,["H7069"]],[16,19,["H8458"]]]},{"k":16406,"v":[[0,2,["H995"]],[2,4,["H4912"]],[4,7,["H4426"]],[7,9,["H1697"]],[9,12,["H2450"]],[12,16,["H2420"]]]},{"k":16407,"v":[[0,2,["H3374"]],[2,5,["H3068"]],[5,8,["H7225"]],[8,10,["H1847"]],[10,12,["H191"]],[12,13,["H936"]],[13,14,["H2451"]],[14,16,["H4148"]]]},{"k":16408,"v":[[0,2,["H1121"]],[2,3,["H8085"]],[3,5,["H4148"]],[5,8,["H1"]],[8,10,["H5203"]],[10,11,["H408"]],[11,13,["H8451"]],[13,16,["H517"]]]},{"k":16409,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,6,["H3880"]],[6,8,["H2580"]],[8,11,["H7218"]],[11,13,["H6060"]],[13,16,["H1621"]]]},{"k":16410,"v":[[0,2,["H1121"]],[2,3,["H518"]],[3,4,["H2400"]],[4,5,["H6601"]],[5,7,["H14"]],[7,9,["H408"]]]},{"k":16411,"v":[[0,1,["H518"]],[1,3,["H559"]],[3,4,["H1980"]],[4,5,["H854"]],[5,10,["H693"]],[10,12,["H1818"]],[12,16,["H6845"]],[16,19,["H5355"]],[19,21,["H2600"]]]},{"k":16412,"v":[[0,5,["H1104"]],[5,6,["H2416"]],[6,9,["H7585"]],[9,11,["H8549"]],[11,16,["H3381"]],[16,19,["H953"]]]},{"k":16413,"v":[[0,3,["H4672"]],[3,4,["H3605"]],[4,5,["H3368"]],[5,6,["H1952"]],[6,9,["H4390"]],[9,11,["H1004"]],[11,13,["H7998"]]]},{"k":16414,"v":[[0,2,["H5307"]],[2,4,["H1486"]],[4,5,["H8432"]],[5,9,["H3605"]],[9,10,["H1961"]],[10,11,["H259"]],[11,12,["H3599"]]]},{"k":16415,"v":[[0,2,["H1121"]],[2,3,["H1980"]],[3,4,["H408"]],[4,8,["H1870"]],[8,9,["H854"]],[9,11,["H4513"]],[11,13,["H7272"]],[13,16,["H4480","H5410"]]]},{"k":16416,"v":[[0,1,["H3588"]],[1,3,["H7272"]],[3,4,["H7323"]],[4,6,["H7451"]],[6,9,["H4116"]],[9,11,["H8210"]],[11,12,["H1818"]]]},{"k":16417,"v":[[0,1,["H3588"]],[1,3,["H2600"]],[3,5,["H7568"]],[5,7,["H2219"]],[7,10,["H5869"]],[10,12,["H3605"]],[12,13,["H1167","H3671"]]]},{"k":16418,"v":[[0,2,["H1992"]],[2,4,["H693"]],[4,8,["H1818"]],[8,11,["H6845"]],[11,15,["H5315"]]]},{"k":16419,"v":[[0,1,["H3651"]],[1,4,["H734"]],[4,7,["H3605"]],[7,10,["H1214"]],[10,12,["H1215"]],[12,15,["H3947","(H853)"]],[15,17,["H5315"]],[17,20,["H1167"]],[20,21,[]]]},{"k":16420,"v":[[0,1,["H2454"]],[1,2,["H7442"]],[2,3,["H2351"]],[3,5,["H5414"]],[5,7,["H6963"]],[7,10,["H7339"]]]},{"k":16421,"v":[[0,2,["H7121"]],[2,5,["H7218"]],[5,8,["H1993"]],[8,11,["H6607"]],[11,14,["H8179"]],[14,17,["H5892"]],[17,19,["H559"]],[19,21,["H561"]],[21,22,[]]]},{"k":16422,"v":[[0,2,["H5704","H4970"]],[2,5,["H6612"]],[5,8,["H157"]],[8,9,["H6612"]],[9,12,["H3887"]],[12,13,["H2530"]],[13,16,["H3944"]],[16,18,["H3684"]],[18,19,["H8130"]],[19,20,["H1847"]]]},{"k":16423,"v":[[0,1,["H7725"]],[1,5,["H8433"]],[5,6,["H2009"]],[6,10,["H5042"]],[10,12,["H7307"]],[12,18,["H3045"]],[18,20,["H1697"]],[20,22,[]]]},{"k":16424,"v":[[0,1,["H3282"]],[1,4,["H7121"]],[4,7,["H3985"]],[7,11,["H5186"]],[11,13,["H3027"]],[13,16,["H369"]],[16,17,["H7181"]]]},{"k":16425,"v":[[0,6,["H6544"]],[6,7,["H3605"]],[7,9,["H6098"]],[9,11,["H14"]],[11,12,["H3808"]],[12,15,["H8433"]]]},{"k":16426,"v":[[0,1,["H589"]],[1,2,["H1571"]],[2,4,["H7832"]],[4,7,["H343"]],[7,10,["H3932"]],[10,13,["H6343"]],[13,14,["H935"]]]},{"k":16427,"v":[[0,3,["H6343"]],[3,4,["H935"]],[4,6,["H7584"]],[6,9,["H343"]],[9,10,["H857"]],[10,13,["H5492"]],[13,15,["H6869"]],[15,17,["H6695"]],[17,18,["H935"]],[18,19,["H5921"]],[19,20,[]]]},{"k":16428,"v":[[0,1,["H227"]],[1,5,["H7121"]],[5,10,["H3808"]],[10,11,["H6030"]],[11,16,["H7836"]],[16,20,["H3808"]],[20,21,["H4672"]],[21,22,[]]]},{"k":16429,"v":[[0,2,["H8478","H3588"]],[2,4,["H8130"]],[4,5,["H1847"]],[5,8,["H3808"]],[8,9,["H977"]],[9,11,["H3374"]],[11,14,["H3068"]]]},{"k":16430,"v":[[0,2,["H14"]],[2,3,["H3808"]],[3,6,["H6098"]],[6,8,["H5006"]],[8,9,["H3605"]],[9,11,["H8433"]]]},{"k":16431,"v":[[0,4,["H398"]],[4,7,["H4480","H6529"]],[7,11,["H1870"]],[11,14,["H7646"]],[14,18,["H4480","H4156"]]]},{"k":16432,"v":[[0,1,["H3588"]],[1,4,["H4878"]],[4,7,["H6612"]],[7,9,["H2026"]],[9,13,["H7962"]],[13,15,["H3684"]],[15,17,["H6"]],[17,18,[]]]},{"k":16433,"v":[[0,3,["H8085"]],[3,7,["H7931"]],[7,8,["H983"]],[8,12,["H7599"]],[12,14,["H4480","H6343"]],[14,16,["H7451"]]]},{"k":16434,"v":[[0,2,["H1121"]],[2,3,["H518"]],[3,6,["H3947"]],[6,8,["H561"]],[8,10,["H6845"]],[10,12,["H4687"]],[12,13,["H854"]],[13,14,[]]]},{"k":16435,"v":[[0,4,["H7181"]],[4,6,["H241"]],[6,8,["H2451"]],[8,10,["H5186"]],[10,12,["H3820"]],[12,14,["H8394"]]]},{"k":16436,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,4,["H7121"]],[4,6,["H998"]],[6,9,["H5414"]],[9,11,["H6963"]],[11,13,["H8394"]]]},{"k":16437,"v":[[0,1,["H518"]],[1,3,["H1245"]],[3,6,["H3701"]],[6,8,["H2664"]],[8,14,["H4301"]]]},{"k":16438,"v":[[0,1,["H227"]],[1,4,["H995"]],[4,6,["H3374"]],[6,9,["H3068"]],[9,11,["H4672"]],[11,13,["H1847"]],[13,15,["H430"]]]},{"k":16439,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,4,["H5414"]],[4,5,["H2451"]],[5,9,["H4480","H6310"]],[9,11,["H1847"]],[11,13,["H8394"]]]},{"k":16440,"v":[[0,3,["H6845"]],[3,5,["H8454"]],[5,8,["H3477"]],[8,12,["H4043"]],[12,16,["H1980"]],[16,17,["H8537"]]]},{"k":16441,"v":[[0,2,["H5341"]],[2,4,["H734"]],[4,6,["H4941"]],[6,8,["H8104"]],[8,10,["H1870"]],[10,13,["H2623"]]]},{"k":16442,"v":[[0,1,["H227"]],[1,4,["H995"]],[4,5,["H6664"]],[5,7,["H4941"]],[7,9,["H4339"]],[9,11,["H3605"]],[11,12,["H2896"]],[12,13,["H4570"]]]},{"k":16443,"v":[[0,1,["H3588"]],[1,2,["H2451"]],[2,3,["H935"]],[3,6,["H3820"]],[6,8,["H1847"]],[8,10,["H5276"]],[10,13,["H5315"]]]},{"k":16444,"v":[[0,1,["H4209"]],[1,3,["H8104","H5921"]],[3,5,["H8394"]],[5,7,["H5341"]],[7,8,[]]]},{"k":16445,"v":[[0,2,["H5337"]],[2,6,["H4480","H1870"]],[6,9,["H7451"]],[9,13,["H4480","H376"]],[13,15,["H1696"]],[15,17,["H8419"]]]},{"k":16446,"v":[[0,2,["H5800"]],[2,4,["H734"]],[4,6,["H3476"]],[6,8,["H1980"]],[8,11,["H1870"]],[11,13,["H2822"]]]},{"k":16447,"v":[[0,2,["H8056"]],[2,4,["H6213"]],[4,5,["H7451"]],[5,8,["H1523"]],[8,10,["H8419"]],[10,13,["H7451"]]]},{"k":16448,"v":[[0,1,["H834"]],[1,2,["H734"]],[2,4,["H6141"]],[4,7,["H3868"]],[7,10,["H4570"]]]},{"k":16449,"v":[[0,2,["H5337"]],[2,7,["H4480","H802","H2114"]],[7,11,["H4480","H5237"]],[11,13,["H2505"]],[13,16,["H561"]]]},{"k":16450,"v":[[0,2,["H5800"]],[2,4,["H441"]],[4,7,["H5271"]],[7,9,["H7911"]],[9,11,["H1285"]],[11,14,["H430"]]]},{"k":16451,"v":[[0,1,["H3588"]],[1,3,["H1004"]],[3,4,["H7743"]],[4,5,["H413"]],[5,6,["H4194"]],[6,9,["H4570"]],[9,10,["H413"]],[10,12,["H7496"]]]},{"k":16452,"v":[[0,1,["H3808","H3605"]],[1,4,["H935"]],[4,7,["H7725"]],[7,8,["H3808"]],[8,11,["H5381"]],[11,14,["H734"]],[14,16,["H2416"]]]},{"k":16453,"v":[[0,1,["H4616"]],[1,4,["H1980"]],[4,7,["H1870"]],[7,9,["H2896"]],[9,12,["H8104"]],[12,14,["H734"]],[14,17,["H6662"]]]},{"k":16454,"v":[[0,1,["H3588"]],[1,3,["H3477"]],[3,6,["H7931"]],[6,8,["H776"]],[8,11,["H8549"]],[11,13,["H3498"]],[13,15,[]]]},{"k":16455,"v":[[0,3,["H7563"]],[3,7,["H3772"]],[7,10,["H4480","H776"]],[10,13,["H898"]],[13,16,["H5255"]],[16,18,["H4480"]],[18,19,[]]]},{"k":16456,"v":[[0,2,["H1121"]],[2,3,["H7911"]],[3,4,["H408"]],[4,6,["H8451"]],[6,10,["H3820"]],[10,11,["H5341"]],[11,13,["H4687"]]]},{"k":16457,"v":[[0,1,["H3588"]],[1,2,["H753"]],[2,4,["H3117"]],[4,6,["H8141"]],[6,7,["H2416"]],[7,9,["H7965"]],[9,12,["H3254"]],[12,14,[]]]},{"k":16458,"v":[[0,2,["H408"]],[2,3,["H2617"]],[3,5,["H571"]],[5,6,["H5800"]],[6,8,["H7194"]],[8,10,["H5921"]],[10,12,["H1621"]],[12,13,["H3789"]],[13,15,["H5921"]],[15,17,["H3871"]],[17,20,["H3820"]]]},{"k":16459,"v":[[0,4,["H4672"]],[4,5,["H2580"]],[5,7,["H2896"]],[7,8,["H7922"]],[8,11,["H5869"]],[11,13,["H430"]],[13,15,["H120"]]]},{"k":16460,"v":[[0,1,["H982"]],[1,2,["H413"]],[2,4,["H3068"]],[4,6,["H3605"]],[6,8,["H3820"]],[8,10,["H8172"]],[10,11,["H408"]],[11,12,["H413"]],[12,15,["H998"]]]},{"k":16461,"v":[[0,2,["H3605"]],[2,4,["H1870"]],[4,5,["H3045"]],[5,8,["H1931"]],[8,10,["H3474"]],[10,12,["H734"]]]},{"k":16462,"v":[[0,1,["H1961"]],[1,2,["H408"]],[2,3,["H2450"]],[3,7,["H5869"]],[7,8,["H3372","(H853)"]],[8,10,["H3068"]],[10,12,["H5493"]],[12,14,["H4480","H7451"]]]},{"k":16463,"v":[[0,3,["H1961"]],[3,4,["H7500"]],[4,7,["H8270"]],[7,9,["H8250"]],[9,12,["H6106"]]]},{"k":16464,"v":[[0,1,["H3513","(H853)"]],[1,3,["H3068"]],[3,6,["H4480","H1952"]],[6,10,["H4480","H7225"]],[10,12,["H3605"]],[12,14,["H8393"]]]},{"k":16465,"v":[[0,4,["H618"]],[4,6,["H4390"]],[6,8,["H7647"]],[8,11,["H3342"]],[11,14,["H6555"]],[14,17,["H8492"]]]},{"k":16466,"v":[[0,2,["H1121"]],[2,3,["H3988"]],[3,4,["H408"]],[4,6,["H4148"]],[6,9,["H3068"]],[9,10,["H408"]],[10,12,["H6973"]],[12,15,["H8433"]]]},{"k":16467,"v":[[0,1,["H3588","(H853)"]],[1,2,["H834"]],[2,4,["H3068"]],[4,5,["H157"]],[5,7,["H3198"]],[7,11,["H1","(H853)"]],[11,13,["H1121"]],[13,17,["H7521"]]]},{"k":16468,"v":[[0,1,["H835"]],[1,4,["H120"]],[4,6,["H4672"]],[6,7,["H2451"]],[7,10,["H120"]],[10,12,["H6329"]],[12,13,["H8394"]]]},{"k":16469,"v":[[0,1,["H3588"]],[1,3,["H5504"]],[3,7,["H2896"]],[7,10,["H4480","H5505"]],[10,12,["H3701"]],[12,15,["H8393"]],[15,19,["H4480","H2742"]]]},{"k":16470,"v":[[0,1,["H1931"]],[1,4,["H3368"]],[4,6,["H4480","H6443"]],[6,8,["H3605"]],[8,13,["H2656"]],[13,15,["H3808"]],[15,18,["H7737"]],[18,20,[]]]},{"k":16471,"v":[[0,1,["H753"]],[1,3,["H3117"]],[3,8,["H3225"]],[8,13,["H8040"]],[13,14,["H6239"]],[14,16,["H3519"]]]},{"k":16472,"v":[[0,2,["H1870"]],[2,4,["H1870"]],[4,6,["H5278"]],[6,8,["H3605"]],[8,10,["H5410"]],[10,12,["H7965"]]]},{"k":16473,"v":[[0,1,["H1931"]],[1,4,["H6086"]],[4,6,["H2416"]],[6,11,["H2388"]],[11,15,["H833"]],[15,20,["H8551"]],[20,21,[]]]},{"k":16474,"v":[[0,2,["H3068"]],[2,4,["H2451"]],[4,6,["H3245"]],[6,8,["H776"]],[8,10,["H8394"]],[10,13,["H3559"]],[13,15,["H8064"]]]},{"k":16475,"v":[[0,3,["H1847"]],[3,5,["H8415"]],[5,8,["H1234"]],[8,11,["H7834"]],[11,13,["H7491"]],[13,15,["H2919"]]]},{"k":16476,"v":[[0,2,["H1121"]],[2,4,["H408"]],[4,6,["H3868"]],[6,9,["H4480","H5869"]],[9,10,["H5341"]],[10,12,["H8454"]],[12,14,["H4209"]]]},{"k":16477,"v":[[0,4,["H1961"]],[4,5,["H2416"]],[5,8,["H5315"]],[8,10,["H2580"]],[10,13,["H1621"]]]},{"k":16478,"v":[[0,1,["H227"]],[1,4,["H1980"]],[4,7,["H1870"]],[7,8,["H983"]],[8,11,["H7272"]],[11,13,["H3808"]],[13,14,["H5062"]]]},{"k":16479,"v":[[0,1,["H518"]],[1,4,["H7901"]],[4,7,["H3808"]],[7,9,["H6342"]],[9,14,["H7901"]],[14,17,["H8142"]],[17,20,["H6149"]]]},{"k":16480,"v":[[0,2,["H408"]],[2,3,["H3372"]],[3,5,["H6597"]],[5,6,["H4480","H6343"]],[6,10,["H4480","H7722"]],[10,13,["H7563"]],[13,14,["H3588"]],[14,16,["H935"]]]},{"k":16481,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H1961"]],[5,7,["H3689"]],[7,10,["H8104"]],[10,12,["H7272"]],[12,15,["H4480","H3921"]]]},{"k":16482,"v":[[0,1,["H4513"]],[1,2,["H408"]],[2,3,["H2896"]],[3,10,["H4480","H1167"]],[10,13,["H1961"]],[13,16,["H410"]],[16,19,["H3027"]],[19,21,["H6213"]],[21,22,[]]]},{"k":16483,"v":[[0,1,["H559"]],[1,2,["H408"]],[2,5,["H7453"]],[5,6,["H1980"]],[6,9,["H7725"]],[9,12,["H4279"]],[12,15,["H5414"]],[15,18,["H3426"]],[18,20,["H854"]],[20,21,[]]]},{"k":16484,"v":[[0,1,["H2790"]],[1,2,["H408"]],[2,3,["H7451"]],[3,4,["H5921"]],[4,6,["H7453"]],[6,8,["H1931"]],[8,9,["H3427"]],[9,10,["H983"]],[10,11,["H854"]],[11,12,[]]]},{"k":16485,"v":[[0,1,["H7378"]],[1,2,["H408"]],[2,3,["H5973"]],[3,5,["H120"]],[5,7,["H2600"]],[7,8,["H518"]],[8,11,["H1580"]],[11,13,["H3808"]],[13,14,["H7451"]]]},{"k":16486,"v":[[0,1,["H7065"]],[1,3,["H408"]],[3,5,["H376","H2555"]],[5,7,["H977"]],[7,8,["H408","H3605"]],[8,11,["H1870"]]]},{"k":16487,"v":[[0,1,["H3588"]],[1,3,["H3868"]],[3,5,["H8441"]],[5,8,["H3068"]],[8,11,["H5475"]],[11,13,["H854"]],[13,15,["H3477"]]]},{"k":16488,"v":[[0,2,["H3994"]],[2,5,["H3068"]],[5,9,["H1004"]],[9,12,["H7563"]],[12,15,["H1288"]],[15,17,["H5116"]],[17,20,["H6662"]]]},{"k":16489,"v":[[0,1,["H518"]],[1,2,["H1931"]],[2,3,["H3887"]],[3,5,["H3887"]],[5,8,["H5414"]],[8,9,["H2580"]],[9,12,["H6035"]]]},{"k":16490,"v":[[0,2,["H2450"]],[2,4,["H5157"]],[4,5,["H3519"]],[5,7,["H7036"]],[7,11,["H7311"]],[11,13,["H3684"]]]},{"k":16491,"v":[[0,1,["H8085"]],[1,3,["H1121"]],[3,5,["H4148"]],[5,8,["H1"]],[8,10,["H7181"]],[10,12,["H3045"]],[12,13,["H998"]]]},{"k":16492,"v":[[0,1,["H3588"]],[1,3,["H5414"]],[3,5,["H2896"]],[5,6,["H3948"]],[6,7,["H5800"]],[7,9,["H408"]],[9,11,["H8451"]]]},{"k":16493,"v":[[0,1,["H3588"]],[1,3,["H1961"]],[3,5,["H1"]],[5,6,["H1121"]],[6,7,["H7390"]],[7,9,["H3173"]],[9,13,["H6440"]],[13,16,["H517"]]]},{"k":16494,"v":[[0,2,["H3384"]],[2,6,["H559"]],[6,11,["H3820"]],[11,12,["H8551"]],[12,14,["H1697"]],[14,15,["H8104"]],[15,17,["H4687"]],[17,19,["H2421"]]]},{"k":16495,"v":[[0,1,["H7069"]],[1,2,["H2451"]],[2,3,["H7069"]],[3,4,["H998"]],[4,5,["H7911"]],[5,7,["H408"]],[7,8,["H408"]],[8,9,["H5186"]],[9,12,["H4480","H561"]],[12,15,["H6310"]]]},{"k":16496,"v":[[0,1,["H5800"]],[1,3,["H408"]],[3,7,["H8104"]],[7,9,["H157"]],[9,14,["H5341"]],[14,15,[]]]},{"k":16497,"v":[[0,1,["H2451"]],[1,5,["H7225"]],[5,7,["H7069"]],[7,8,["H2451"]],[8,11,["H3605"]],[11,13,["H7075"]],[13,14,["H7069"]],[14,15,["H998"]]]},{"k":16498,"v":[[0,1,["H5549"]],[1,6,["H7311"]],[6,13,["H3513"]],[13,14,["H3588"]],[14,17,["H2263"]],[17,18,[]]]},{"k":16499,"v":[[0,3,["H5414"]],[3,6,["H7218"]],[6,8,["H3880"]],[8,10,["H2580"]],[10,12,["H5850"]],[12,14,["H8597"]],[14,17,["H4042"]],[17,19,[]]]},{"k":16500,"v":[[0,1,["H8085"]],[1,4,["H1121"]],[4,6,["H3947"]],[6,8,["H561"]],[8,11,["H8141"]],[11,14,["H2416"]],[14,17,["H7235"]]]},{"k":16501,"v":[[0,3,["H3384"]],[3,7,["H1870"]],[7,9,["H2451"]],[9,12,["H1869"]],[12,15,["H3476"]],[15,16,["H4570"]]]},{"k":16502,"v":[[0,3,["H1980"]],[3,5,["H6806"]],[5,7,["H3808"]],[7,9,["H3334"]],[9,11,["H518"]],[11,13,["H7323"]],[13,16,["H3808"]],[16,17,["H3782"]]]},{"k":16503,"v":[[0,3,["H2388"]],[3,5,["H4148"]],[5,8,["H408"]],[8,9,["H7503"]],[9,10,["H5341"]],[10,12,["H3588"]],[12,13,["H1931"]],[13,16,["H2416"]]]},{"k":16504,"v":[[0,1,["H935"]],[1,2,["H408"]],[2,5,["H734"]],[5,8,["H7563"]],[8,10,["H833"]],[10,11,["H408"]],[11,14,["H1870"]],[14,16,["H7451"]],[16,17,[]]]},{"k":16505,"v":[[0,1,["H6544"]],[1,3,["H5674"]],[3,4,["H408"]],[4,7,["H7847"]],[7,8,["H4480","H5921"]],[8,12,["H5674"]]]},{"k":16506,"v":[[0,1,["H3588"]],[1,3,["H3462"]],[3,4,["H3808"]],[4,5,["H518","H3808"]],[5,9,["H7489"]],[9,12,["H8142"]],[12,15,["H1497"]],[15,16,["H518","H3808"]],[16,21,["H3782"]]]},{"k":16507,"v":[[0,1,["H3588"]],[1,3,["H3898"]],[3,5,["H3899"]],[5,7,["H7562"]],[7,9,["H8354"]],[9,11,["H3196"]],[11,13,["H2555"]]]},{"k":16508,"v":[[0,3,["H734"]],[3,6,["H6662"]],[6,10,["H5051"]],[10,11,["H216"]],[11,13,["H215"]],[13,16,["H1980"]],[16,17,["H5704"]],[17,19,["H3559"]],[19,20,["H3117"]]]},{"k":16509,"v":[[0,2,["H1870"]],[2,5,["H7563"]],[5,8,["H653"]],[8,10,["H3045"]],[10,11,["H3808"]],[11,13,["H4100"]],[13,15,["H3782"]]]},{"k":16510,"v":[[0,2,["H1121"]],[2,3,["H7181"]],[3,6,["H1697"]],[6,7,["H5186"]],[7,9,["H241"]],[9,12,["H561"]]]},{"k":16511,"v":[[0,3,["H408"]],[3,4,["H3868"]],[4,7,["H4480","H5869"]],[7,8,["H8104"]],[8,12,["H8432"]],[12,15,["H3824"]]]},{"k":16512,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,4,["H2416"]],[4,8,["H4672"]],[8,11,["H4832"]],[11,13,["H3605"]],[13,15,["H1320"]]]},{"k":16513,"v":[[0,1,["H5341"]],[1,3,["H3820"]],[3,5,["H4480","H3605"]],[5,6,["H4929"]],[6,7,["H3588"]],[7,9,["H4480"]],[9,13,["H8444"]],[13,15,["H2416"]]]},{"k":16514,"v":[[0,2,["H5493"]],[2,3,["H4480"]],[3,6,["H6143"]],[6,7,["H6310"]],[7,9,["H3891"]],[9,10,["H8193"]],[10,12,["H7368"]],[12,13,["H4480"]],[13,14,[]]]},{"k":16515,"v":[[0,3,["H5869"]],[3,4,["H5027"]],[4,6,["H5227"]],[6,10,["H6079"]],[10,12,["H3474"]],[12,13,["H5048"]],[13,14,[]]]},{"k":16516,"v":[[0,1,["H6424"]],[1,3,["H4570"]],[3,6,["H7272"]],[6,9,["H3605"]],[9,11,["H1870"]],[11,13,["H3559"]]]},{"k":16517,"v":[[0,1,["H5186"]],[1,2,["H408"]],[2,6,["H3225"]],[6,10,["H8040"]],[10,11,["H5493"]],[11,13,["H7272"]],[13,15,["H4480","H7451"]]]},{"k":16518,"v":[[0,2,["H1121"]],[2,3,["H7181"]],[3,6,["H2451"]],[6,8,["H5186"]],[8,10,["H241"]],[10,13,["H8394"]]]},{"k":16519,"v":[[0,4,["H8104"]],[4,5,["H4209"]],[5,9,["H8193"]],[9,11,["H5341"]],[11,12,["H1847"]]]},{"k":16520,"v":[[0,1,["H3588"]],[1,3,["H8193"]],[3,7,["H2114"]],[7,8,["H5197"]],[8,11,["H5317"]],[11,14,["H2441"]],[14,16,["H2509"]],[16,18,["H4480","H8081"]]]},{"k":16521,"v":[[0,3,["H319"]],[3,5,["H4751"]],[5,7,["H3939"]],[7,8,["H2299"]],[8,11,["H6310"]],[11,12,["H2719"]]]},{"k":16522,"v":[[0,2,["H7272"]],[2,4,["H3381"]],[4,6,["H4194"]],[6,8,["H6806"]],[8,10,["H8551"]],[10,12,["H7585"]]]},{"k":16523,"v":[[0,1,["H6435"]],[1,4,["H6424"]],[4,6,["H734"]],[6,8,["H2416"]],[8,10,["H4570"]],[10,12,["H5128"]],[12,16,["H3808"]],[16,17,["H3045"]],[17,18,[]]]},{"k":16524,"v":[[0,1,["H8085"]],[1,3,["H6258"]],[3,7,["H1121"]],[7,9,["H5493"]],[9,10,["H408"]],[10,13,["H4480","H561"]],[13,16,["H6310"]]]},{"k":16525,"v":[[0,4,["H7368","H1870"]],[4,5,["H4480","H5921"]],[5,10,["H7126","H408","H413"]],[10,12,["H6607"]],[12,15,["H1004"]]]},{"k":16526,"v":[[0,1,["H6435"]],[1,3,["H5414"]],[3,5,["H1935"]],[5,7,["H312"]],[7,10,["H8141"]],[10,13,["H394"]]]},{"k":16527,"v":[[0,1,["H6435"]],[1,2,["H2114"]],[2,4,["H7646"]],[4,7,["H3581"]],[7,10,["H6089"]],[10,14,["H1004"]],[14,17,["H5237"]]]},{"k":16528,"v":[[0,3,["H5098"]],[3,6,["H319"]],[6,9,["H1320"]],[9,12,["H7607"]],[12,14,["H3615"]]]},{"k":16529,"v":[[0,2,["H559"]],[2,3,["H349"]],[3,6,["H8130"]],[6,7,["H4148"]],[7,10,["H3820"]],[10,11,["H5006"]],[11,12,["H8433"]]]},{"k":16530,"v":[[0,3,["H3808"]],[3,4,["H8085"]],[4,6,["H6963"]],[6,9,["H3384"]],[9,10,["H3808"]],[10,11,["H5186"]],[11,13,["H241"]],[13,17,["H3925"]],[17,18,[]]]},{"k":16531,"v":[[0,2,["H1961"]],[2,3,["H4592"]],[3,5,["H3605"]],[5,6,["H7451"]],[6,9,["H8432"]],[9,12,["H6951"]],[12,14,["H5712"]]]},{"k":16532,"v":[[0,1,["H8354"]],[1,2,["H4325"]],[2,7,["H4480","H953"]],[7,10,["H5140"]],[10,12,["H4480","H8432"]],[12,15,["H875"]]]},{"k":16533,"v":[[0,3,["H4599"]],[3,5,["H6327"]],[5,6,["H2351"]],[6,8,["H6388"]],[8,10,["H4325"]],[10,13,["H7339"]]]},{"k":16534,"v":[[0,3,["H1961"]],[3,4,["H905"]],[4,8,["H369"]],[8,9,["H2114"]],[9,10,["H854"]],[10,11,[]]]},{"k":16535,"v":[[0,3,["H4726"]],[3,4,["H1961"]],[4,5,["H1288"]],[5,7,["H8055"]],[7,10,["H4480","H802"]],[10,13,["H5271"]]]},{"k":16536,"v":[[0,6,["H158"]],[6,7,["H365"]],[7,9,["H2580"]],[9,10,["H3280"]],[10,13,["H1717"]],[13,14,["H7301"]],[14,17,["H3605"]],[17,18,["H6256"]],[18,22,["H7686"]],[22,23,["H8548"]],[23,26,["H160"]]]},{"k":16537,"v":[[0,2,["H4100"]],[2,6,["H1121"]],[6,8,["H7686"]],[8,12,["H2114"]],[12,14,["H2263"]],[14,16,["H2436"]],[16,19,["H5237"]]]},{"k":16538,"v":[[0,1,["H3588"]],[1,3,["H1870"]],[3,5,["H376"]],[5,7,["H5227"]],[7,9,["H5869"]],[9,12,["H3068"]],[12,15,["H6424"]],[15,16,["H3605"]],[16,18,["H4570"]]]},{"k":16539,"v":[[0,3,["H5771"]],[3,5,["H3920","(H853)"]],[5,7,["H7563"]],[7,13,["H8551"]],[13,16,["H2256"]],[16,19,["H2403"]]]},{"k":16540,"v":[[0,1,["H1931"]],[1,3,["H4191"]],[3,4,["H369"]],[4,5,["H4148"]],[5,9,["H7230"]],[9,12,["H200"]],[12,16,["H7686"]]]},{"k":16541,"v":[[0,2,["H1121"]],[2,3,["H518"]],[3,6,["H6148"]],[6,9,["H7453"]],[9,13,["H8628"]],[13,15,["H3709"]],[15,18,["H2114"]]]},{"k":16542,"v":[[0,3,["H3369"]],[3,6,["H561"]],[6,9,["H6310"]],[9,12,["H3920"]],[12,15,["H561"]],[15,18,["H6310"]]]},{"k":16543,"v":[[0,1,["H6213"]],[1,2,["H2063"]],[2,3,["H645"]],[3,5,["H1121"]],[5,8,["H5337"]],[8,9,["H3588"]],[9,12,["H935"]],[12,15,["H3709"]],[15,18,["H7453"]],[18,19,["H1980"]],[19,21,["H7511"]],[21,24,["H7292"]],[24,26,["H7453"]]]},{"k":16544,"v":[[0,1,["H5414"]],[1,2,["H408"]],[2,3,["H8142"]],[3,6,["H5869"]],[6,8,["H8572"]],[8,11,["H6079"]]]},{"k":16545,"v":[[0,2,["H5337"]],[2,5,["H6643"]],[5,8,["H4480","H3027"]],[8,15,["H6833"]],[15,18,["H4480","H3027"]],[18,21,["H3353"]]]},{"k":16546,"v":[[0,1,["H1980"]],[1,2,["H413"]],[2,4,["H5244"]],[4,6,["H6102"]],[6,7,["H7200"]],[7,9,["H1870"]],[9,12,["H2449"]]]},{"k":16547,"v":[[0,1,["H834"]],[1,3,["H369"]],[3,4,["H7101"]],[4,5,["H7860"]],[5,7,["H4910"]]]},{"k":16548,"v":[[0,1,["H3559"]],[1,3,["H3899"]],[3,6,["H7019"]],[6,8,["H103"]],[8,10,["H3978"]],[10,13,["H7105"]]]},{"k":16549,"v":[[0,2,["H5704","H4970"]],[2,5,["H7901"]],[5,7,["H6102"]],[7,8,["H4970"]],[8,11,["H6965"]],[11,15,["H4480","H8142"]]]},{"k":16550,"v":[[0,3,["H4592"]],[3,4,["H8142"]],[4,6,["H4592"]],[6,7,["H8572"]],[7,9,["H4592"]],[9,10,["H2264"]],[10,13,["H3027"]],[13,15,["H7901"]]]},{"k":16551,"v":[[0,4,["H7389"]],[4,5,["H935"]],[5,9,["H1980"]],[9,12,["H4270"]],[12,15,["H4043"]],[15,16,["H376"]]]},{"k":16552,"v":[[0,2,["H1100"]],[2,3,["H120"]],[3,5,["H205"]],[5,6,["H376"]],[6,7,["H1980"]],[7,10,["H6143"]],[10,11,["H6310"]]]},{"k":16553,"v":[[0,2,["H7169"]],[2,5,["H5869"]],[5,7,["H4448"]],[7,10,["H7272"]],[10,12,["H3384"]],[12,15,["H676"]]]},{"k":16554,"v":[[0,1,["H8419"]],[1,5,["H3820"]],[5,7,["H2790"]],[7,8,["H7451"]],[8,9,["H3605","H6256"]],[9,11,["H7971"]],[11,12,["H4066"]]]},{"k":16555,"v":[[0,1,["H5921","H3651"]],[1,4,["H343"]],[4,5,["H935"]],[5,6,["H6597"]],[6,7,["H6621"]],[7,11,["H7665"]],[11,12,["H369"]],[12,13,["H4832"]]]},{"k":16556,"v":[[0,1,["H2007"]],[1,2,["H8337"]],[2,6,["H3068"]],[6,7,["H8130"]],[7,9,["H7651"]],[9,12,["H8441"]],[12,14,["H5315"]]]},{"k":16557,"v":[[0,2,["H7311"]],[2,3,["H5869"]],[3,5,["H8267"]],[5,6,["H3956"]],[6,8,["H3027"]],[8,10,["H8210"]],[10,11,["H5355"]],[11,12,["H1818"]]]},{"k":16558,"v":[[0,2,["H3820"]],[2,4,["H2790"]],[4,5,["H205"]],[5,6,["H4284"]],[6,7,["H7272"]],[7,10,["H4116"]],[10,12,["H7323"]],[12,14,["H7451"]]]},{"k":16559,"v":[[0,2,["H8267"]],[2,3,["H5707"]],[3,5,["H6315"]],[5,6,["H3577"]],[6,10,["H7971"]],[10,11,["H4090"]],[11,12,["H996"]],[12,13,["H251"]]]},{"k":16560,"v":[[0,2,["H1121"]],[2,3,["H5341"]],[3,5,["H1"]],[5,6,["H4687"]],[6,8,["H5203"]],[8,9,["H408"]],[9,11,["H8451"]],[11,14,["H517"]]]},{"k":16561,"v":[[0,1,["H7194"]],[1,3,["H8548"]],[3,4,["H5921"]],[4,6,["H3820"]],[6,8,["H6029"]],[8,10,["H5921"]],[10,12,["H1621"]]]},{"k":16562,"v":[[0,3,["H1980"]],[3,6,["H5148"]],[6,7,["(H853)"]],[7,10,["H7901"]],[10,13,["H8104","H5921"]],[13,18,["H6974"]],[18,19,["H1931"]],[19,21,["H7878"]],[21,23,[]]]},{"k":16563,"v":[[0,1,["H3588"]],[1,3,["H4687"]],[3,6,["H5216"]],[6,9,["H8451"]],[9,11,["H216"]],[11,13,["H8433"]],[13,15,["H4148"]],[15,18,["H1870"]],[18,20,["H2416"]]]},{"k":16564,"v":[[0,2,["H8104"]],[2,6,["H7451"]],[6,7,["H4480","H802"]],[7,10,["H4480","H2513"]],[10,13,["H3956"]],[13,17,["H5237"]]]},{"k":16565,"v":[[0,1,["H2530"]],[1,2,["H408"]],[2,5,["H3308"]],[5,8,["H3824"]],[8,9,["H408"]],[9,12,["H3947"]],[12,16,["H6079"]]]},{"k":16566,"v":[[0,1,["H3588"]],[1,3,["H1157"]],[3,6,["H2181"]],[6,7,["H802"]],[7,12,["H5704"]],[12,14,["H3603"]],[14,16,["H3899"]],[16,19,["H802","H376"]],[19,21,["H6679"]],[21,24,["H3368"]],[24,25,["H5315"]]]},{"k":16567,"v":[[0,3,["H376"]],[3,4,["H2846"]],[4,5,["H784"]],[5,8,["H2436"]],[8,11,["H899"]],[11,12,["H3808"]],[12,14,["H8313"]]]},{"k":16568,"v":[[0,1,["H518"]],[1,2,["H376"]],[2,3,["H1980"]],[3,4,["H5921"]],[4,6,["H1513"]],[6,9,["H7272"]],[9,10,["H3808"]],[10,12,["H3554"]]]},{"k":16569,"v":[[0,1,["H3651"]],[1,5,["H935"]],[5,6,["H413"]],[6,8,["H7453"]],[8,9,["H802"]],[9,10,["H3605"]],[10,11,["H5060"]],[11,14,["H3808"]],[14,16,["H5352"]]]},{"k":16570,"v":[[0,3,["H3808"]],[3,4,["H936"]],[4,6,["H1590"]],[6,7,["H3588"]],[7,9,["H1589"]],[9,11,["H4390"]],[11,13,["H5315"]],[13,14,["H3588"]],[14,17,["H7456"]]]},{"k":16571,"v":[[0,5,["H4672"]],[5,8,["H7999"]],[8,9,["H7659"]],[9,12,["H5414","(H853)"]],[12,13,["H3605"]],[13,15,["H1952"]],[15,18,["H1004"]]]},{"k":16572,"v":[[0,4,["H5003"]],[4,7,["H802"]],[7,8,["H2638"]],[8,9,["H3820"]],[9,10,["H1931"]],[10,12,["H6213"]],[12,14,["H7843"]],[14,17,["H5315"]]]},{"k":16573,"v":[[0,2,["H5061"]],[2,4,["H7036"]],[4,7,["H4672"]],[7,10,["H2781"]],[10,12,["H3808"]],[12,15,["H4229"]]]},{"k":16574,"v":[[0,1,["H3588"]],[1,2,["H7068"]],[2,5,["H2534"]],[5,8,["H1397"]],[8,12,["H3808"]],[12,13,["H2550"]],[13,16,["H3117"]],[16,18,["H5359"]]]},{"k":16575,"v":[[0,3,["H3808"]],[3,4,["H6440","H5375"]],[4,5,["H3605"]],[5,6,["H3724"]],[6,7,["H3808"]],[7,11,["H14"]],[11,12,["H3588"]],[12,15,["H7235"]],[15,16,["H7810"]]]},{"k":16576,"v":[[0,2,["H1121"]],[2,3,["H8104"]],[3,5,["H561"]],[5,8,["H6845"]],[8,10,["H4687"]],[10,11,["H854"]],[11,12,[]]]},{"k":16577,"v":[[0,1,["H8104"]],[1,3,["H4687"]],[3,5,["H2421"]],[5,8,["H8451"]],[8,11,["H380"]],[11,14,["H5869"]]]},{"k":16578,"v":[[0,1,["H7194"]],[1,3,["H5921"]],[3,5,["H676"]],[5,6,["H3789"]],[6,8,["H5921"]],[8,10,["H3871"]],[10,13,["H3820"]]]},{"k":16579,"v":[[0,1,["H559"]],[1,3,["H2451"]],[3,4,["H859"]],[4,7,["H269"]],[7,9,["H7121"]],[9,10,["H998"]],[10,12,["H4129"]]]},{"k":16580,"v":[[0,4,["H8104"]],[4,8,["H2114"]],[8,9,["H4480","H802"]],[9,12,["H4480","H5237"]],[12,14,["H2505"]],[14,17,["H561"]]]},{"k":16581,"v":[[0,1,["H3588"]],[1,4,["H2474"]],[4,7,["H1004"]],[7,9,["H8259"]],[9,10,["H1157"]],[10,12,["H822"]]]},{"k":16582,"v":[[0,2,["H7200"]],[2,6,["H6612"]],[6,8,["H995"]],[8,11,["H1121"]],[11,14,["H5288"]],[14,15,["H2638"]],[15,17,["H3820"]]]},{"k":16583,"v":[[0,1,["H5674"]],[1,4,["H7784"]],[4,5,["H681"]],[5,7,["H6438"]],[7,10,["H6805"]],[10,12,["H1870"]],[12,15,["H1004"]]]},{"k":16584,"v":[[0,3,["H5399"]],[3,6,["H6153","H3117"]],[6,9,["H380"]],[9,11,["H653"]],[11,12,["H3915"]]]},{"k":16585,"v":[[0,2,["H2009"]],[2,4,["H7125"]],[4,7,["H802"]],[7,10,["H7897"]],[10,13,["H2181"]],[13,15,["H5341"]],[15,17,["H3820"]]]},{"k":16586,"v":[[0,1,["H1931"]],[1,3,["H1993"]],[3,5,["H5637"]],[5,7,["H7272"]],[7,8,["H7931"]],[8,9,["H3808"]],[9,12,["H1004"]]]},{"k":16587,"v":[[0,1,["H6471"]],[1,4,["H2351"]],[4,5,["H6471"]],[5,8,["H7339"]],[8,12,["H693"]],[12,13,["H681"]],[13,14,["H3605"]],[14,15,["H6438"]]]},{"k":16588,"v":[[0,3,["H2388"]],[3,6,["H5401"]],[6,11,["H5810"]],[11,12,["H6440"]],[12,13,["H559"]],[13,15,[]]]},{"k":16589,"v":[[0,4,["H2077","H8002"]],[4,5,["H5921"]],[5,8,["H3117"]],[8,11,["H7999"]],[11,13,["H5088"]]]},{"k":16590,"v":[[0,1,["H5921","H3651"]],[1,4,["H3318"]],[4,6,["H7125"]],[6,10,["H7836"]],[10,12,["H6440"]],[12,16,["H4672"]],[16,17,[]]]},{"k":16591,"v":[[0,3,["H7234"]],[3,5,["H6210"]],[5,9,["H4765"]],[9,11,["H2405"]],[11,15,["H330"]],[15,17,["H4714"]]]},{"k":16592,"v":[[0,3,["H5130"]],[3,5,["H4904"]],[5,7,["H4753"]],[7,8,["H174"]],[8,10,["H7076"]]]},{"k":16593,"v":[[0,1,["H1980"]],[1,6,["H7301"]],[6,8,["H1730"]],[8,9,["H5704"]],[9,11,["H1242"]],[11,15,["H5965"]],[15,17,["H159"]]]},{"k":16594,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,5,["H369"]],[5,7,["H1004"]],[7,10,["H1980"]],[10,12,["H4480","H7350"]],[12,13,["H1870"]]]},{"k":16595,"v":[[0,3,["H3947"]],[3,5,["H6872"]],[5,7,["H3701"]],[7,8,["H3027"]],[8,12,["H935"]],[12,13,["H1004"]],[13,16,["H3117"]],[16,17,["H3677"]]]},{"k":16596,"v":[[0,3,["H7230"]],[3,5,["H3948"]],[5,10,["H5186"]],[10,13,["H2506"]],[13,16,["H8193"]],[16,18,["H5080"]],[18,19,[]]]},{"k":16597,"v":[[0,2,["H1980"]],[2,3,["H310"]],[3,5,["H6597"]],[5,8,["H7794"]],[8,9,["H935"]],[9,10,["H413"]],[10,12,["H2874"]],[12,16,["H191"]],[16,17,["H413"]],[17,19,["H4148"]],[19,22,["H5914"]]]},{"k":16598,"v":[[0,1,["H5704"]],[1,3,["H2671"]],[3,5,["H6398"]],[5,7,["H3516"]],[7,10,["H6833"]],[10,11,["H4116"]],[11,12,["H413"]],[12,14,["H6341"]],[14,16,["H3045"]],[16,17,["H3808"]],[17,18,["H3588"]],[18,19,["H1931"]],[19,23,["H5315"]]]},{"k":16599,"v":[[0,1,["H8085"]],[1,4,["H6258"]],[4,8,["H1121"]],[8,10,["H7181"]],[10,13,["H561"]],[13,16,["H6310"]]]},{"k":16600,"v":[[0,2,["H408"]],[2,4,["H3820"]],[4,5,["H7847"]],[5,6,["H413"]],[6,8,["H1870"]],[8,11,["H8582","H408"]],[11,14,["H5410"]]]},{"k":16601,"v":[[0,1,["H3588"]],[1,5,["H5307"]],[5,6,["H7227"]],[6,7,["H2491"]],[7,9,["H3605"]],[9,10,["H6099"]],[10,14,["H2026"]],[14,16,[]]]},{"k":16602,"v":[[0,2,["H1004"]],[2,5,["H1870"]],[5,7,["H7585"]],[7,9,["H3381"]],[9,10,["H413"]],[10,12,["H2315"]],[12,14,["H4194"]]]},{"k":16603,"v":[[0,2,["H3808"]],[2,3,["H2451"]],[3,4,["H7121"]],[4,6,["H8394"]],[6,8,["H5414"]],[8,10,["H6963"]]]},{"k":16604,"v":[[0,2,["H5324"]],[2,5,["H7218"]],[5,8,["H4791"]],[8,9,["H5921"]],[9,11,["H1870"]],[11,14,["H1004"]],[14,17,["H5410"]]]},{"k":16605,"v":[[0,2,["H7442"]],[2,3,["H3027"]],[3,5,["H8179"]],[5,8,["H6310"]],[8,11,["H7176"]],[11,14,["H3996"]],[14,18,["H6607"]]]},{"k":16606,"v":[[0,1,["H413"]],[1,4,["H376"]],[4,6,["H7121"]],[6,9,["H6963"]],[9,11,["H413"]],[11,13,["H1121"]],[13,15,["H120"]]]},{"k":16607,"v":[[0,3,["H6612"]],[3,4,["H995"]],[4,5,["H6195"]],[5,8,["H3684"]],[8,13,["H995"]],[13,14,["H3820"]]]},{"k":16608,"v":[[0,1,["H8085"]],[1,2,["H3588"]],[2,5,["H1696"]],[5,8,["H5057"]],[8,11,["H4669"]],[11,14,["H8193"]],[14,18,["H4339"]]]},{"k":16609,"v":[[0,1,["H3588"]],[1,3,["H2441"]],[3,5,["H1897"]],[5,6,["H571"]],[6,8,["H7562"]],[8,11,["H8441"]],[11,14,["H8193"]]]},{"k":16610,"v":[[0,1,["H3605"]],[1,3,["H561"]],[3,6,["H6310"]],[6,9,["H6664"]],[9,12,["H369"]],[12,13,["H6617"]],[13,15,["H6141"]],[15,17,[]]]},{"k":16611,"v":[[0,3,["H3605"]],[3,4,["H5228"]],[4,8,["H995"]],[8,10,["H3477"]],[10,14,["H4672"]],[14,15,["H1847"]]]},{"k":16612,"v":[[0,1,["H3947"]],[1,3,["H4148"]],[3,5,["H408"]],[5,6,["H3701"]],[6,8,["H1847"]],[8,12,["H4480","H977","H2742"]]]},{"k":16613,"v":[[0,1,["H3588"]],[1,2,["H2451"]],[2,4,["H2896"]],[4,6,["H4480","H6443"]],[6,8,["H3605"]],[8,14,["H2656"]],[14,16,["H3808"]],[16,19,["H7737"]],[19,21,[]]]},{"k":16614,"v":[[0,1,["H589"]],[1,2,["H2451"]],[2,3,["H7931"]],[3,5,["H6195"]],[5,8,["H4672"]],[8,9,["H1847"]],[9,12,["H4209"]]]},{"k":16615,"v":[[0,2,["H3374"]],[2,5,["H3068"]],[5,8,["H8130"]],[8,9,["H7451"]],[9,10,["H1344"]],[10,12,["H1347"]],[12,15,["H7451"]],[15,16,["H1870"]],[16,19,["H8419"]],[19,20,["H6310"]],[20,23,["H8130"]]]},{"k":16616,"v":[[0,1,["H6098"]],[1,6,["H8454"]],[6,7,["H589"]],[7,9,["H998"]],[9,12,["H1369"]]]},{"k":16617,"v":[[0,3,["H4428"]],[3,4,["H4427"]],[4,6,["H7336"]],[6,7,["H2710"]],[7,8,["H6664"]]]},{"k":16618,"v":[[0,3,["H8269"]],[3,4,["H8323"]],[4,6,["H5081"]],[6,8,["H3605"]],[8,10,["H8199"]],[10,13,["H776"]]]},{"k":16619,"v":[[0,1,["H589"]],[1,2,["H157"]],[2,5,["H157"]],[5,12,["H7836"]],[12,14,["H4672"]],[14,15,[]]]},{"k":16620,"v":[[0,1,["H6239"]],[1,3,["H3519"]],[3,5,["H854"]],[5,8,["H6276"]],[8,9,["H1952"]],[9,11,["H6666"]]]},{"k":16621,"v":[[0,2,["H6529"]],[2,4,["H2896"]],[4,6,["H4480","H2742"]],[6,10,["H4480","H6337"]],[10,13,["H8393"]],[13,15,["H977"]],[15,16,["H4480","H3701"]]]},{"k":16622,"v":[[0,2,["H1980"]],[2,5,["H734"]],[5,7,["H6666"]],[7,10,["H8432"]],[10,13,["H5410"]],[13,15,["H4941"]]]},{"k":16623,"v":[[0,7,["H157"]],[7,10,["H5157"]],[10,11,["H3426"]],[11,15,["H4390"]],[15,17,["H214"]]]},{"k":16624,"v":[[0,2,["H3068"]],[2,3,["H7069"]],[3,7,["H7225"]],[7,10,["H1870"]],[10,11,["H6924"]],[11,13,["H4659"]],[13,15,["H4480","H227"]]]},{"k":16625,"v":[[0,4,["H5258"]],[4,6,["H4480","H5769"]],[6,9,["H4480","H7218"]],[9,11,["H4480","H6924"]],[11,13,["H776"]],[13,14,[]]]},{"k":16626,"v":[[0,4,["H369"]],[4,5,["H8415"]],[5,9,["H2342"]],[9,13,["H369"]],[13,14,["H4599"]],[14,15,["H3513"]],[15,17,["H4325"]]]},{"k":16627,"v":[[0,1,["H2962"]],[1,3,["H2022"]],[3,5,["H2883"]],[5,6,["H6440"]],[6,8,["H1389"]],[8,12,["H2342"]]]},{"k":16628,"v":[[0,3,["H5704"]],[3,6,["H3808"]],[6,7,["H6213"]],[7,9,["H776"]],[9,12,["H2351"]],[12,16,["H7218"]],[16,19,["H6083"]],[19,22,["H8398"]]]},{"k":16629,"v":[[0,3,["H3559"]],[3,5,["H8064"]],[5,6,["H589"]],[6,8,["H8033"]],[8,11,["H2710"]],[11,13,["H2329"]],[13,14,["H5921"]],[14,16,["H6440"]],[16,19,["H8415"]]]},{"k":16630,"v":[[0,3,["H553"]],[3,5,["H7834"]],[5,6,["H4480","H4605"]],[6,9,["H5810"]],[9,11,["H5869"]],[11,14,["H8415"]]]},{"k":16631,"v":[[0,3,["H7760"]],[3,6,["H3220"]],[6,8,["H2706"]],[8,11,["H4325"]],[11,13,["H3808"]],[13,14,["H5674"]],[14,16,["H6310"]],[16,19,["H2710"]],[19,21,["H4146"]],[21,24,["H776"]]]},{"k":16632,"v":[[0,3,["H1961"]],[3,4,["H681"]],[4,9,["H525"]],[9,14,["H1961"]],[14,15,["H3117","H3117"]],[15,17,["H8191"]],[17,18,["H7832"]],[18,19,["H3605","H6256"]],[19,20,["H6440"]],[20,21,[]]]},{"k":16633,"v":[[0,1,["H7832"]],[1,5,["H8398"]],[5,8,["H776"]],[8,11,["H8191"]],[11,13,["H854"]],[13,15,["H1121"]],[15,17,["H120"]]]},{"k":16634,"v":[[0,1,["H6258"]],[1,3,["H8085"]],[3,8,["H1121"]],[8,10,["H835"]],[10,14,["H8104"]],[14,16,["H1870"]]]},{"k":16635,"v":[[0,1,["H8085"]],[1,2,["H4148"]],[2,5,["H2449"]],[5,7,["H6544"]],[7,9,["H408"]]]},{"k":16636,"v":[[0,1,["H835"]],[1,4,["H120"]],[4,6,["H8085"]],[6,8,["H8245"]],[8,9,["H3117","H3117"]],[9,10,["H5921"]],[10,12,["H1817"]],[12,13,["H8104"]],[13,16,["H4201"]],[16,19,["H6607"]]]},{"k":16637,"v":[[0,1,["H3588"]],[1,3,["H4672"]],[3,5,["H4672"]],[5,6,["H2416"]],[6,9,["H6329"]],[9,10,["H7522"]],[10,13,["H4480","H3068"]]]},{"k":16638,"v":[[0,5,["H2398"]],[5,7,["H2554"]],[7,10,["H5315"]],[10,11,["H3605"]],[11,14,["H8130"]],[14,16,["H157"]],[16,17,["H4194"]]]},{"k":16639,"v":[[0,1,["H2454"]],[1,3,["H1129"]],[3,5,["H1004"]],[5,9,["H2672"]],[9,11,["H7651"]],[11,12,["H5982"]]]},{"k":16640,"v":[[0,3,["H2873"]],[3,5,["H2874"]],[5,8,["H4537"]],[8,10,["H3196"]],[10,13,["H637"]],[13,14,["H6186"]],[14,16,["H7979"]]]},{"k":16641,"v":[[0,4,["H7971"]],[4,6,["H5291"]],[6,8,["H7121"]],[8,9,["H5921"]],[9,12,["H1610","H4791"]],[12,15,["H7176"]]]},{"k":16642,"v":[[0,1,["H4310"]],[1,3,["H6612"]],[3,6,["H5493"]],[6,8,["H2008"]],[8,13,["H2638"]],[13,14,["H3820"]],[14,16,["H559"]],[16,18,[]]]},{"k":16643,"v":[[0,1,["H1980"]],[1,2,["H3898"]],[2,5,["H3899"]],[5,7,["H8354"]],[7,10,["H3196"]],[10,14,["H4537"]]]},{"k":16644,"v":[[0,1,["H5800"]],[1,3,["H6612"]],[3,5,["H2421"]],[5,7,["H833"]],[7,10,["H1870"]],[10,12,["H998"]]]},{"k":16645,"v":[[0,3,["H3256"]],[3,5,["H3887"]],[5,6,["H3947"]],[6,9,["H7036"]],[9,13,["H3198"]],[13,15,["H7563"]],[15,20,["H3971"]]]},{"k":16646,"v":[[0,1,["H3198"]],[1,2,["H408"]],[2,4,["H3887"]],[4,5,["H6435"]],[5,7,["H8130"]],[7,9,["H3198"]],[9,12,["H2450"]],[12,16,["H157"]],[16,17,[]]]},{"k":16647,"v":[[0,1,["H5414"]],[1,5,["H2450"]],[5,11,["H5750"]],[11,12,["H2449"]],[12,13,["H3045"]],[13,15,["H6662"]],[15,20,["H3254"]],[20,22,["H3948"]]]},{"k":16648,"v":[[0,2,["H3374"]],[2,5,["H3068"]],[5,8,["H8462"]],[8,10,["H2451"]],[10,13,["H1847"]],[13,16,["H6918"]],[16,18,["H998"]]]},{"k":16649,"v":[[0,1,["H3588"]],[1,5,["H3117"]],[5,8,["H7235"]],[8,11,["H8141"]],[11,14,["H2416"]],[14,17,["H3254"]]]},{"k":16650,"v":[[0,1,["H518"]],[1,4,["H2449"]],[4,8,["H2449"]],[8,14,["H3887"]],[14,16,["H905"]],[16,18,["H5375"]],[18,19,[]]]},{"k":16651,"v":[[0,2,["H3687"]],[2,3,["H802"]],[3,5,["H1993"]],[5,8,["H6615"]],[8,10,["H3045"]],[10,11,["H1077","H4100"]]]},{"k":16652,"v":[[0,3,["H3427"]],[3,6,["H6607"]],[6,9,["H1004"]],[9,10,["H5921"]],[10,12,["H3678"]],[12,16,["H4791"]],[16,19,["H7176"]]]},{"k":16653,"v":[[0,2,["H7121"]],[2,3,["H5674","H1870"]],[3,6,["H3474"]],[6,9,["H734"]]]},{"k":16654,"v":[[0,1,["H4310"]],[1,3,["H6612"]],[3,6,["H5493"]],[6,8,["H2008"]],[8,14,["H2638"]],[14,15,["H3820"]],[15,17,["H559"]],[17,19,[]]]},{"k":16655,"v":[[0,1,["H1589"]],[1,2,["H4325"]],[2,4,["H4985"]],[4,6,["H3899"]],[6,9,["H5643"]],[9,11,["H5276"]]]},{"k":16656,"v":[[0,3,["H3045"]],[3,4,["H3808"]],[4,5,["H3588"]],[5,7,["H7496"]],[7,9,["H8033"]],[9,13,["H7121"]],[13,17,["H6011"]],[17,19,["H7585"]]]},{"k":16657,"v":[[0,2,["H4912"]],[2,4,["H8010"]],[4,6,["H2450"]],[6,7,["H1121"]],[7,10,["H8055"]],[10,11,["H1"]],[11,14,["H3684"]],[14,15,["H1121"]],[15,18,["H8424"]],[18,21,["H517"]]]},{"k":16658,"v":[[0,1,["H214"]],[1,3,["H7562"]],[3,4,["H3276"]],[4,5,["H3808"]],[5,7,["H6666"]],[7,8,["H5337"]],[8,10,["H4480","H4194"]]]},{"k":16659,"v":[[0,2,["H3068"]],[2,4,["H3808"]],[4,7,["H5315"]],[7,10,["H6662"]],[10,12,["H7456"]],[12,16,["H1920"]],[16,18,["H1942"]],[18,21,["H7563"]]]},{"k":16660,"v":[[0,3,["H7326"]],[3,5,["H6213"]],[5,8,["H7423"]],[8,9,["H3709"]],[9,12,["H3027"]],[12,15,["H2742"]],[15,17,["H6238"]]]},{"k":16661,"v":[[0,3,["H103"]],[3,5,["H7019"]],[5,8,["H7919"]],[8,9,["H1121"]],[9,13,["H7290"]],[13,15,["H7105"]],[15,18,["H1121"]],[18,21,["H954"]]]},{"k":16662,"v":[[0,1,["H1293"]],[1,5,["H7218"]],[5,8,["H6662"]],[8,10,["H2555"]],[10,11,["H3680"]],[11,13,["H6310"]],[13,16,["H7563"]]]},{"k":16663,"v":[[0,2,["H2143"]],[2,5,["H6662"]],[5,7,["H1293"]],[7,10,["H8034"]],[10,13,["H7563"]],[13,15,["H7537"]]]},{"k":16664,"v":[[0,2,["H2450"]],[2,4,["H3820"]],[4,6,["H3947"]],[6,7,["H4687"]],[7,10,["H8193"]],[10,11,["H191"]],[11,13,["H3832"]]]},{"k":16665,"v":[[0,3,["H1980"]],[3,4,["H8537"]],[4,5,["H1980"]],[5,6,["H983"]],[6,10,["H6140"]],[10,12,["H1870"]],[12,15,["H3045"]]]},{"k":16666,"v":[[0,3,["H7169"]],[3,6,["H5869"]],[6,7,["H5414"]],[7,8,["H6094"]],[8,11,["H8193"]],[11,12,["H191"]],[12,14,["H3832"]]]},{"k":16667,"v":[[0,2,["H6310"]],[2,5,["H6662"]],[5,9,["H4726"]],[9,11,["H2416"]],[11,13,["H2555"]],[13,14,["H3680"]],[14,16,["H6310"]],[16,19,["H7563"]]]},{"k":16668,"v":[[0,1,["H8135"]],[1,3,["H5782"]],[3,4,["H4090"]],[4,6,["H160"]],[6,7,["H3680","H5921"]],[7,8,["H3605"]],[8,9,["H6588"]]]},{"k":16669,"v":[[0,3,["H8193"]],[3,8,["H995"]],[8,9,["H2451"]],[9,11,["H4672"]],[11,14,["H7626"]],[14,18,["H1460"]],[18,23,["H2638"]],[23,25,["H3820"]]]},{"k":16670,"v":[[0,1,["H2450"]],[1,4,["H6845"]],[4,5,["H1847"]],[5,8,["H6310"]],[8,11,["H191"]],[11,13,["H7138"]],[13,14,["H4288"]]]},{"k":16671,"v":[[0,3,["H6223"]],[3,4,["H1952"]],[4,7,["H5797"]],[7,8,["H7151"]],[8,10,["H4288"]],[10,13,["H1800"]],[13,16,["H7389"]]]},{"k":16672,"v":[[0,2,["H6468"]],[2,5,["H6662"]],[5,8,["H2416"]],[8,10,["H8393"]],[10,13,["H7563"]],[13,15,["H2403"]]]},{"k":16673,"v":[[0,5,["H734"]],[5,7,["H2416"]],[7,9,["H8104"]],[9,10,["H4148"]],[10,14,["H5800"]],[14,15,["H8433"]],[15,16,["H8582"]]]},{"k":16674,"v":[[0,3,["H3680"]],[3,4,["H8135"]],[4,6,["H8267"]],[6,7,["H8193"]],[7,11,["H3318"]],[11,13,["H1681"]],[13,16,["H3684"]]]},{"k":16675,"v":[[0,3,["H7230"]],[3,5,["H1697"]],[5,7,["H2308"]],[7,8,["H3808"]],[8,9,["H6588"]],[9,13,["H2820"]],[13,15,["H8193"]],[15,17,["H7919"]]]},{"k":16676,"v":[[0,2,["H3956"]],[2,5,["H6662"]],[5,8,["H977"]],[8,9,["H3701"]],[9,11,["H3820"]],[11,14,["H7563"]],[14,17,["H4592"]]]},{"k":16677,"v":[[0,2,["H8193"]],[2,5,["H6662"]],[5,6,["H7462"]],[6,7,["H7227"]],[7,9,["H191"]],[9,10,["H4191"]],[10,12,["H2638"]],[12,14,["H3820"]]]},{"k":16678,"v":[[0,2,["H1293"]],[2,5,["H3068"]],[5,6,["H1931"]],[6,8,["H6238"]],[8,11,["H3254"]],[11,12,["H3808"]],[12,13,["H6089"]],[13,14,["H5973"]],[14,15,[]]]},{"k":16679,"v":[[0,4,["H7814"]],[4,7,["H3684"]],[7,9,["H6213"]],[9,10,["H2154"]],[10,13,["H376"]],[13,15,["H8394"]],[15,17,["H2451"]]]},{"k":16680,"v":[[0,2,["H4034"]],[2,5,["H7563"]],[5,6,["H1931"]],[6,9,["H935"]],[9,13,["H8378"]],[13,16,["H6662"]],[16,19,["H5414"]]]},{"k":16681,"v":[[0,3,["H5492"]],[3,4,["H5674"]],[4,8,["H7563"]],[8,9,["H369"]],[9,13,["H6662"]],[13,16,["H5769"]],[16,17,["H3247"]]]},{"k":16682,"v":[[0,2,["H2558"]],[2,5,["H8127"]],[5,8,["H6227"]],[8,11,["H5869"]],[11,12,["H3651"]],[12,15,["H6102"]],[15,19,["H7971"]],[19,20,[]]]},{"k":16683,"v":[[0,2,["H3374"]],[2,5,["H3068"]],[5,6,["H3254"]],[6,7,["H3117"]],[7,10,["H8141"]],[10,13,["H7563"]],[13,16,["H7114"]]]},{"k":16684,"v":[[0,2,["H8431"]],[2,5,["H6662"]],[5,8,["H8057"]],[8,11,["H8615"]],[11,14,["H7563"]],[14,16,["H6"]]]},{"k":16685,"v":[[0,2,["H1870"]],[2,5,["H3068"]],[5,7,["H4581"]],[7,10,["H8537"]],[10,12,["H4288"]],[12,17,["H6466"]],[17,19,["H205"]]]},{"k":16686,"v":[[0,2,["H6662"]],[2,4,["H5769","H1077"]],[4,6,["H4131"]],[6,9,["H7563"]],[9,11,["H3808"]],[11,12,["H7931"]],[12,14,["H776"]]]},{"k":16687,"v":[[0,2,["H6310"]],[2,5,["H6662"]],[5,7,["H5107"]],[7,8,["H2451"]],[8,11,["H8419"]],[11,12,["H3956"]],[12,16,["H3772"]]]},{"k":16688,"v":[[0,2,["H8193"]],[2,5,["H6662"]],[5,6,["H3045"]],[6,9,["H7522"]],[9,12,["H6310"]],[12,15,["H7563"]],[15,17,["H8419"]]]},{"k":16689,"v":[[0,2,["H4820"]],[2,3,["H3976"]],[3,5,["H8441"]],[5,8,["H3068"]],[8,11,["H8003"]],[11,12,["H68"]],[12,15,["H7522"]]]},{"k":16690,"v":[[0,2,["H2087"]],[2,3,["H935"]],[3,5,["H935"]],[5,6,["H7036"]],[6,8,["H854"]],[8,10,["H6800"]],[10,12,["H2451"]]]},{"k":16691,"v":[[0,2,["H8538"]],[2,5,["H3477"]],[5,7,["H5148"]],[7,11,["H5558"]],[11,13,["H898"]],[13,15,["H7703"]],[15,16,[]]]},{"k":16692,"v":[[0,1,["H1952"]],[1,2,["H3276"]],[2,3,["H3808"]],[3,6,["H3117"]],[6,8,["H5678"]],[8,10,["H6666"]],[10,11,["H5337"]],[11,13,["H4480","H4194"]]]},{"k":16693,"v":[[0,2,["H6666"]],[2,5,["H8549"]],[5,7,["H3474"]],[7,9,["H1870"]],[9,12,["H7563"]],[12,14,["H5307"]],[14,18,["H7564"]]]},{"k":16694,"v":[[0,2,["H6666"]],[2,5,["H3477"]],[5,7,["H5337"]],[7,10,["H898"]],[10,13,["H3920"]],[13,17,["H1942"]]]},{"k":16695,"v":[[0,3,["H7563"]],[3,4,["H120"]],[4,5,["H4194"]],[5,7,["H8615"]],[7,9,["H6"]],[9,12,["H8431"]],[12,14,["H205"]],[14,16,["H6"]]]},{"k":16696,"v":[[0,2,["H6662"]],[2,4,["H2502"]],[4,7,["H4480","H6869"]],[7,10,["H7563"]],[10,11,["H935"]],[11,14,["H8478"]]]},{"k":16697,"v":[[0,2,["H2611"]],[2,5,["H6310"]],[5,6,["H7843"]],[6,8,["H7453"]],[8,11,["H1847"]],[11,14,["H6662"]],[14,16,["H2502"]]]},{"k":16698,"v":[[0,4,["H2898"]],[4,7,["H6662"]],[7,9,["H7151"]],[9,10,["H5970"]],[10,14,["H7563"]],[14,15,["H6"]],[15,18,["H7440"]]]},{"k":16699,"v":[[0,3,["H1293"]],[3,6,["H3477"]],[6,8,["H7176"]],[8,10,["H7311"]],[10,14,["H2040"]],[14,17,["H6310"]],[17,20,["H7563"]]]},{"k":16700,"v":[[0,4,["H2638"]],[4,6,["H3820"]],[6,7,["H936"]],[7,9,["H7453"]],[9,12,["H376"]],[12,14,["H8394"]],[14,17,["H2790"]]]},{"k":16701,"v":[[0,2,["H1980","H7400"]],[2,3,["H1540"]],[3,4,["H5475"]],[4,11,["H539"]],[11,12,["H7307"]],[12,13,["H3680"]],[13,15,["H1697"]]]},{"k":16702,"v":[[0,2,["H369"]],[2,3,["H8458"]],[3,6,["H5971"]],[6,7,["H5307"]],[7,11,["H7230"]],[11,13,["H3289"]],[13,16,["H8668"]]]},{"k":16703,"v":[[0,4,["H6148"]],[4,7,["H2114"]],[7,9,["H7451","H7489"]],[9,15,["H8130"]],[15,16,["H8628"]],[16,18,["H982"]]]},{"k":16704,"v":[[0,2,["H2580"]],[2,3,["H802"]],[3,4,["H8551"]],[4,5,["H3519"]],[5,7,["H6184"]],[7,9,["H8551"]],[9,10,["H6239"]]]},{"k":16705,"v":[[0,2,["H2617"]],[2,3,["H376"]],[3,5,["H1580"]],[5,9,["H5315"]],[9,14,["H394"]],[14,15,["H5916"]],[15,18,["H7607"]]]},{"k":16706,"v":[[0,2,["H7563"]],[2,3,["H6213"]],[3,5,["H8267"]],[5,6,["H6468"]],[6,11,["H2232"]],[11,12,["H6666"]],[12,16,["H571"]],[16,17,["H7938"]]]},{"k":16707,"v":[[0,1,["H3651"]],[1,2,["H6666"]],[2,5,["H2416"]],[5,9,["H7291"]],[9,10,["H7451"]],[10,16,["H4194"]]]},{"k":16708,"v":[[0,6,["H6141"]],[6,7,["H3820"]],[7,9,["H8441"]],[9,12,["H3068"]],[12,17,["H8549"]],[17,20,["H1870"]],[20,23,["H7522"]]]},{"k":16709,"v":[[0,2,["H3027"]],[2,5,["H3027"]],[5,7,["H7451"]],[7,9,["H3808"]],[9,11,["H5352"]],[11,14,["H2233"]],[14,17,["H6662"]],[17,20,["H4422"]]]},{"k":16710,"v":[[0,3,["H5141"]],[3,5,["H2091"]],[5,8,["H2386"]],[8,9,["H639"]],[9,13,["H3303"]],[13,14,["H802"]],[14,17,["H5493"]],[17,18,["H2940"]]]},{"k":16711,"v":[[0,2,["H8378"]],[2,5,["H6662"]],[5,7,["H389"]],[7,8,["H2896"]],[8,11,["H8615"]],[11,14,["H7563"]],[14,16,["H5678"]]]},{"k":16712,"v":[[0,2,["H3426"]],[2,4,["H6340"]],[4,6,["H5750"]],[6,7,["H3254"]],[7,12,["H2820"]],[12,16,["H4480","H3476"]],[16,21,["H4270"]]]},{"k":16713,"v":[[0,2,["H1293"]],[2,3,["H5315"]],[3,7,["H1878"]],[7,11,["H7301"]],[11,14,["H3384"]],[14,15,["H1571"]],[15,16,["H1931"]]]},{"k":16714,"v":[[0,3,["H4513"]],[3,4,["H1250"]],[4,6,["H3816"]],[6,8,["H6895"]],[8,11,["H1293"]],[11,16,["H7218"]],[16,20,["H7666"]],[20,21,[]]]},{"k":16715,"v":[[0,4,["H7836"]],[4,5,["H2896"]],[5,6,["H1245"]],[6,7,["H7522"]],[7,11,["H1875"]],[11,12,["H7451"]],[12,15,["H935"]],[15,17,[]]]},{"k":16716,"v":[[0,1,["H1931"]],[1,3,["H982"]],[3,6,["H6239"]],[6,8,["H5307"]],[8,11,["H6662"]],[11,13,["H6524"]],[13,16,["H5929"]]]},{"k":16717,"v":[[0,3,["H5916"]],[3,6,["H1004"]],[6,8,["H5157"]],[8,10,["H7307"]],[10,13,["H191"]],[13,16,["H5650"]],[16,19,["H2450"]],[19,21,["H3820"]]]},{"k":16718,"v":[[0,2,["H6529"]],[2,5,["H6662"]],[5,8,["H6086"]],[8,10,["H2416"]],[10,14,["H3947"]],[14,15,["H5315"]],[15,17,["H2450"]]]},{"k":16719,"v":[[0,1,["H2005"]],[1,3,["H6662"]],[3,6,["H7999"]],[6,9,["H776"]],[9,11,["H637","H3588"]],[11,13,["H7563"]],[13,16,["H2398"]]]},{"k":16720,"v":[[0,2,["H157"]],[2,3,["H4148"]],[3,4,["H157"]],[4,5,["H1847"]],[5,9,["H8130"]],[9,10,["H8433"]],[10,12,["H1198"]]]},{"k":16721,"v":[[0,2,["H2896"]],[2,4,["H6329"]],[4,5,["H7522"]],[5,8,["H4480","H3068"]],[8,11,["H376"]],[11,14,["H4209"]],[14,17,["H7561"]]]},{"k":16722,"v":[[0,2,["H120"]],[2,4,["H3808"]],[4,6,["H3559"]],[6,8,["H7562"]],[8,11,["H8328"]],[11,14,["H6662"]],[14,16,["H1077"]],[16,18,["H4131"]]]},{"k":16723,"v":[[0,2,["H2428"]],[2,3,["H802"]],[3,6,["H5850"]],[6,9,["H1167"]],[9,14,["H954"]],[14,17,["H7538"]],[17,20,["H6106"]]]},{"k":16724,"v":[[0,2,["H4284"]],[2,5,["H6662"]],[5,7,["H4941"]],[7,10,["H8458"]],[10,13,["H7563"]],[13,15,["H4820"]]]},{"k":16725,"v":[[0,2,["H1697"]],[2,5,["H7563"]],[5,10,["H693"]],[10,12,["H1818"]],[12,15,["H6310"]],[15,18,["H3477"]],[18,20,["H5337"]],[20,21,[]]]},{"k":16726,"v":[[0,2,["H7563"]],[2,4,["H2015"]],[4,7,["H369"]],[7,10,["H1004"]],[10,13,["H6662"]],[13,15,["H5975"]]]},{"k":16727,"v":[[0,2,["H376"]],[2,5,["H1984"]],[5,6,["H6310"]],[6,9,["H7922"]],[9,16,["H5753"]],[16,17,["H3820"]],[17,19,["H1961"]],[19,20,["H937"]]]},{"k":16728,"v":[[0,4,["H7034"]],[4,8,["H5650"]],[8,10,["H2896"]],[10,15,["H4480","H3513"]],[15,17,["H2638"]],[17,18,["H3899"]]]},{"k":16729,"v":[[0,2,["H6662"]],[2,4,["H3045"]],[4,6,["H5315"]],[6,9,["H929"]],[9,13,["H7356"]],[13,16,["H7563"]],[16,18,["H394"]]]},{"k":16730,"v":[[0,3,["H5647"]],[3,5,["H127"]],[5,8,["H7646"]],[8,10,["H3899"]],[10,14,["H7291"]],[14,15,["H7386"]],[15,18,["H2638"]],[18,20,["H3820"]]]},{"k":16731,"v":[[0,2,["H7563"]],[2,3,["H2530"]],[3,5,["H4685"]],[5,7,["H7451"]],[7,11,["H8328"]],[11,14,["H6662"]],[14,15,["H5414"]],[15,16,[]]]},{"k":16732,"v":[[0,2,["H7451"]],[2,4,["H4170"]],[4,7,["H6588"]],[7,10,["H8193"]],[10,13,["H6662"]],[13,16,["H3318"]],[16,18,["H4480","H6869"]]]},{"k":16733,"v":[[0,2,["H376"]],[2,5,["H7646"]],[5,7,["H2896"]],[7,10,["H4480","H6529"]],[10,13,["H6310"]],[13,16,["H1576"]],[16,19,["H120"]],[19,20,["H3027"]],[20,23,["H7725"]],[23,25,[]]]},{"k":16734,"v":[[0,2,["H1870"]],[2,5,["H191"]],[5,7,["H3477"]],[7,11,["H5869"]],[11,15,["H8085"]],[15,17,["H6098"]],[17,19,["H2450"]]]},{"k":16735,"v":[[0,2,["H191"]],[2,3,["H3708"]],[3,5,["H3117"]],[5,6,["H3045"]],[6,9,["H6175"]],[9,11,["H3680"]],[11,12,["H7036"]]]},{"k":16736,"v":[[0,3,["H6315"]],[3,4,["H530"]],[4,6,["H5046"]],[6,7,["H6664"]],[7,10,["H8267"]],[10,11,["H5707"]],[11,12,["H4820"]]]},{"k":16737,"v":[[0,2,["H3426"]],[2,4,["H981"]],[4,7,["H4094"]],[7,10,["H2719"]],[10,13,["H3956"]],[13,16,["H2450"]],[16,18,["H4832"]]]},{"k":16738,"v":[[0,2,["H8193"]],[2,4,["H571"]],[4,7,["H3559"]],[7,9,["H5703"]],[9,10,["H5704"]],[10,12,["H8267"]],[12,13,["H3956"]],[13,18,["H7280"]]]},{"k":16739,"v":[[0,1,["H4820"]],[1,5,["H3820"]],[5,9,["H2790"]],[9,10,["H7451"]],[10,14,["H3289"]],[14,16,["H7965"]],[16,18,["H8057"]]]},{"k":16740,"v":[[0,3,["H3808","H3605"]],[3,4,["H205"]],[4,5,["H579"]],[5,8,["H6662"]],[8,11,["H7563"]],[11,14,["H4390"]],[14,16,["H7451"]]]},{"k":16741,"v":[[0,1,["H8267"]],[1,2,["H8193"]],[2,4,["H8441"]],[4,7,["H3068"]],[7,11,["H6213"]],[11,12,["H530"]],[12,15,["H7522"]]]},{"k":16742,"v":[[0,2,["H6175"]],[2,3,["H120"]],[3,4,["H3680"]],[4,5,["H1847"]],[5,8,["H3820"]],[8,10,["H3684"]],[10,11,["H7121"]],[11,12,["H200"]]]},{"k":16743,"v":[[0,2,["H3027"]],[2,5,["H2742"]],[5,8,["H4910"]],[8,11,["H7423"]],[11,13,["H1961"]],[13,15,["H4522"]]]},{"k":16744,"v":[[0,1,["H1674"]],[1,4,["H3820"]],[4,6,["H376"]],[6,9,["H7812"]],[9,12,["H2896"]],[12,13,["H1697"]],[13,16,["H8055"]]]},{"k":16745,"v":[[0,2,["H6662"]],[2,5,["H8446"]],[5,8,["H4480","H7453"]],[8,11,["H1870"]],[11,14,["H7563"]],[14,15,["H8582"]],[15,16,[]]]},{"k":16746,"v":[[0,2,["H7423"]],[2,4,["H2760"]],[4,5,["H3808"]],[5,11,["H6718"]],[11,14,["H1952"]],[14,17,["H2742"]],[17,18,["H120"]],[18,20,["H3368"]]]},{"k":16747,"v":[[0,3,["H734"]],[3,5,["H6666"]],[5,7,["H2416"]],[7,11,["H1870","H5410"]],[11,15,["H408"]],[15,16,["H4194"]]]},{"k":16748,"v":[[0,2,["H2450"]],[2,3,["H1121"]],[3,6,["H1"]],[6,7,["H4148"]],[7,10,["H3887"]],[10,11,["H8085"]],[11,12,["H3808"]],[12,13,["H1606"]]]},{"k":16749,"v":[[0,2,["H376"]],[2,4,["H398"]],[4,5,["H2896"]],[5,8,["H4480","H6529"]],[8,11,["H6310"]],[11,14,["H5315"]],[14,17,["H898"]],[17,20,["H2555"]]]},{"k":16750,"v":[[0,3,["H5341"]],[3,5,["H6310"]],[5,6,["H8104"]],[6,8,["H5315"]],[8,13,["H6589"]],[13,15,["H8193"]],[15,18,["H4288"]]]},{"k":16751,"v":[[0,2,["H5315"]],[2,5,["H6102"]],[5,6,["H183"]],[6,9,["H369"]],[9,12,["H5315"]],[12,15,["H2742"]],[15,19,["H1878"]]]},{"k":16752,"v":[[0,2,["H6662"]],[2,4,["H8130"]],[4,5,["H1697","H8267"]],[5,8,["H7563"]],[8,11,["H887"]],[11,15,["H2659"]]]},{"k":16753,"v":[[0,1,["H6666"]],[1,2,["H5341"]],[2,6,["H8537"]],[6,9,["H1870"]],[9,11,["H7564"]],[11,12,["H5557"]],[12,14,["H2403"]]]},{"k":16754,"v":[[0,2,["H3426"]],[2,6,["H6238"]],[6,9,["H369","H3605"]],[9,15,["H7326"]],[15,18,["H7227"]],[18,19,["H1952"]]]},{"k":16755,"v":[[0,2,["H3724"]],[2,5,["H376"]],[5,6,["H5315"]],[6,9,["H6239"]],[9,12,["H7326"]],[12,13,["H8085"]],[13,14,["H3808"]],[14,15,["H1606"]]]},{"k":16756,"v":[[0,2,["H216"]],[2,5,["H6662"]],[5,6,["H8055"]],[6,9,["H5216"]],[9,12,["H7563"]],[12,16,["H1846"]]]},{"k":16757,"v":[[0,1,["H7535"]],[1,3,["H2087"]],[3,4,["H5414"]],[4,5,["H4683"]],[5,7,["H854"]],[7,10,["H3289"]],[10,12,["H2451"]]]},{"k":16758,"v":[[0,1,["H1952"]],[1,4,["H4480","H1892"]],[4,7,["H4591"]],[7,11,["H6908"]],[11,12,["H5921"]],[12,13,["H3027"]],[13,15,["H7235"]]]},{"k":16759,"v":[[0,1,["H8431"]],[1,2,["H4900"]],[2,5,["H3820"]],[5,6,["H2470"]],[6,10,["H8378"]],[10,11,["H935"]],[11,15,["H6086"]],[15,17,["H2416"]]]},{"k":16760,"v":[[0,2,["H936"]],[2,4,["H1697"]],[4,7,["H2254"]],[7,9,["H1931"]],[9,11,["H3373"]],[11,13,["H4687"]],[13,16,["H7999"]]]},{"k":16761,"v":[[0,2,["H8451"]],[2,5,["H2450"]],[5,8,["H4726"]],[8,10,["H2416"]],[10,12,["H5493"]],[12,15,["H4480","H4170"]],[15,17,["H4194"]]]},{"k":16762,"v":[[0,1,["H2896"]],[1,2,["H7922"]],[2,3,["H5414"]],[3,4,["H2580"]],[4,7,["H1870"]],[7,9,["H898"]],[9,11,["H386"]]]},{"k":16763,"v":[[0,1,["H3605"]],[1,2,["H6175"]],[2,4,["H6213"]],[4,6,["H1847"]],[6,9,["H3684"]],[9,11,["H6566"]],[11,13,["H200"]]]},{"k":16764,"v":[[0,2,["H7563"]],[2,3,["H4397"]],[3,4,["H5307"]],[4,6,["H7451"]],[6,9,["H529"]],[9,10,["H6735"]],[10,12,["H4832"]]]},{"k":16765,"v":[[0,1,["H7389"]],[1,3,["H7036"]],[3,9,["H6544"]],[9,10,["H4148"]],[10,14,["H8104"]],[14,15,["H8433"]],[15,18,["H3513"]]]},{"k":16766,"v":[[0,2,["H8378"]],[2,3,["H1961"]],[3,5,["H6149"]],[5,8,["H5315"]],[8,12,["H8441"]],[12,14,["H3684"]],[14,16,["H5493"]],[16,18,["H4480","H7451"]]]},{"k":16767,"v":[[0,3,["H1980"]],[3,4,["H854"]],[4,5,["H2450"]],[5,9,["H2449"]],[9,12,["H7462"]],[12,14,["H3684"]],[14,17,["H7321"]]]},{"k":16768,"v":[[0,1,["H7451"]],[1,2,["H7291"]],[2,3,["H2400"]],[3,7,["H6662"]],[7,8,["H2896"]],[8,11,["H7999"]]]},{"k":16769,"v":[[0,2,["H2896"]],[2,6,["H5157"]],[6,9,["H1121"]],[9,10,["H1121"]],[10,13,["H2428"]],[13,16,["H2398"]],[16,19,["H6845"]],[19,22,["H6662"]]]},{"k":16770,"v":[[0,1,["H7230"]],[1,2,["H400"]],[2,6,["H5215"]],[6,9,["H7326"]],[9,12,["H3426"]],[12,15,["H5595"]],[15,17,["H3808"]],[17,19,["H4941"]]]},{"k":16771,"v":[[0,3,["H2820"]],[3,5,["H7626"]],[5,6,["H8130"]],[6,8,["H1121"]],[8,12,["H157"]],[12,14,["H4148"]],[14,16,["H7836"]]]},{"k":16772,"v":[[0,2,["H6662"]],[2,3,["H398"]],[3,6,["H7648"]],[6,9,["H5315"]],[9,12,["H990"]],[12,15,["H7563"]],[15,17,["H2637"]]]},{"k":16773,"v":[[0,2,["H2454"]],[2,3,["H802"]],[3,4,["H1129"]],[4,6,["H1004"]],[6,9,["H200"]],[9,12,["H2040"]],[12,15,["H3027"]]]},{"k":16774,"v":[[0,3,["H1980"]],[3,6,["H3476"]],[6,7,["H3372"]],[7,9,["H3068"]],[9,14,["H3868"]],[14,17,["H1870"]],[17,18,["H959"]],[18,19,[]]]},{"k":16775,"v":[[0,3,["H6310"]],[3,6,["H191"]],[6,9,["H2415"]],[9,11,["H1346"]],[11,14,["H8193"]],[14,17,["H2450"]],[17,19,["H8104"]],[19,20,[]]]},{"k":16776,"v":[[0,2,["H369"]],[2,3,["H504"]],[3,6,["H18"]],[6,8,["H1249"]],[8,10,["H7230"]],[10,11,["H8393"]],[11,15,["H3581"]],[15,18,["H7794"]]]},{"k":16777,"v":[[0,2,["H529"]],[2,3,["H5707"]],[3,5,["H3808"]],[5,6,["H3576"]],[6,9,["H8267"]],[9,10,["H5707"]],[10,12,["H6315"]],[12,13,["H3577"]]]},{"k":16778,"v":[[0,2,["H3887"]],[2,3,["H1245"]],[3,4,["H2451"]],[4,8,["H369"]],[8,10,["H1847"]],[10,12,["H7043"]],[12,16,["H995"]]]},{"k":16779,"v":[[0,1,["H1980"]],[1,4,["H4480","H5048"]],[4,7,["H3684"]],[7,8,["H376"]],[8,11,["H3045"]],[11,12,["H1077"]],[12,16,["H8193"]],[16,18,["H1847"]]]},{"k":16780,"v":[[0,2,["H2451"]],[2,5,["H6175"]],[5,8,["H995"]],[8,10,["H1870"]],[10,13,["H200"]],[13,15,["H3684"]],[15,17,["H4820"]]]},{"k":16781,"v":[[0,1,["H191"]],[1,4,["H3887"]],[4,6,["H817"]],[6,8,["H996"]],[8,10,["H3477"]],[10,13,["H7522"]]]},{"k":16782,"v":[[0,2,["H3820"]],[2,3,["H3045"]],[3,5,["H5315"]],[5,6,["H4787"]],[6,9,["H2114"]],[9,11,["H3808"]],[11,12,["H6148"]],[12,15,["H8057"]]]},{"k":16783,"v":[[0,2,["H1004"]],[2,5,["H7563"]],[5,8,["H8045"]],[8,11,["H168"]],[11,14,["H3477"]],[14,16,["H6524"]]]},{"k":16784,"v":[[0,2,["H3426"]],[2,4,["H1870"]],[4,7,["H3477"]],[7,8,["H6440"]],[8,10,["H376"]],[10,13,["H319"]],[13,17,["H1870"]],[17,19,["H4194"]]]},{"k":16785,"v":[[0,1,["H1571"]],[1,3,["H7814"]],[3,5,["H3820"]],[5,7,["H3510"]],[7,10,["H319"]],[10,13,["H8057"]],[13,15,["H8424"]]]},{"k":16786,"v":[[0,2,["H5472"]],[2,4,["H3820"]],[4,7,["H7646"]],[7,11,["H4480","H1870"]],[11,14,["H2896"]],[14,15,["H376"]],[15,19,["H4480","H5921"]],[19,20,[]]]},{"k":16787,"v":[[0,2,["H6612"]],[2,3,["H539"]],[3,4,["H3605"]],[4,5,["H1697"]],[5,8,["H6175"]],[8,11,["H995"]],[11,14,["H838"]]]},{"k":16788,"v":[[0,2,["H2450"]],[2,4,["H3373"]],[4,6,["H5493"]],[6,8,["H4480","H7451"]],[8,11,["H3684"]],[11,12,["H5674"]],[12,15,["H982"]]]},{"k":16789,"v":[[0,4,["H7116"]],[4,5,["H639"]],[5,6,["H6213"]],[6,7,["H200"]],[7,10,["H376"]],[10,13,["H4209"]],[13,15,["H8130"]]]},{"k":16790,"v":[[0,2,["H6612"]],[2,3,["H5157"]],[3,4,["H200"]],[4,7,["H6175"]],[7,9,["H3803"]],[9,11,["H1847"]]]},{"k":16791,"v":[[0,2,["H7451"]],[2,3,["H7817"]],[3,4,["H6440"]],[4,6,["H2896"]],[6,9,["H7563"]],[9,10,["H5921"]],[10,12,["H8179"]],[12,15,["H6662"]]]},{"k":16792,"v":[[0,2,["H7326"]],[2,4,["H8130"]],[4,5,["H1571"]],[5,9,["H7453"]],[9,12,["H6223"]],[12,14,["H7227"]],[14,15,["H157"]]]},{"k":16793,"v":[[0,3,["H936"]],[3,5,["H7453"]],[5,6,["H2398"]],[6,12,["H2603"]],[12,14,["H6035"]],[14,15,["H835"]],[15,17,[]]]},{"k":16794,"v":[[0,3,["H3808"]],[3,4,["H8582"]],[4,6,["H2790"]],[6,7,["H7451"]],[7,9,["H2617"]],[9,11,["H571"]],[11,17,["H2790"]],[17,18,["H2896"]]]},{"k":16795,"v":[[0,2,["H3605"]],[2,3,["H6089"]],[3,5,["H1961"]],[5,6,["H4195"]],[6,9,["H1697"]],[9,12,["H8193"]],[12,14,["H389"]],[14,16,["H4270"]]]},{"k":16796,"v":[[0,2,["H5850"]],[2,5,["H2450"]],[5,8,["H6239"]],[8,11,["H200"]],[11,13,["H3684"]],[13,15,["H200"]]]},{"k":16797,"v":[[0,2,["H571"]],[2,3,["H5707"]],[3,4,["H5337"]],[4,5,["H5315"]],[5,8,["H4820"]],[8,10,["H6315"]],[10,11,["H3577"]]]},{"k":16798,"v":[[0,3,["H3374"]],[3,6,["H3068"]],[6,8,["H5797"]],[8,9,["H4009"]],[9,12,["H1121"]],[12,14,["H1961"]],[14,18,["H4268"]]]},{"k":16799,"v":[[0,2,["H3374"]],[2,5,["H3068"]],[5,8,["H4726"]],[8,10,["H2416"]],[10,12,["H5493"]],[12,15,["H4480","H4170"]],[15,17,["H4194"]]]},{"k":16800,"v":[[0,3,["H7230"]],[3,5,["H5971"]],[5,8,["H4428"]],[8,9,["H1927"]],[9,13,["H657"]],[13,15,["H3816"]],[15,18,["H4288"]],[18,21,["H7333"]]]},{"k":16801,"v":[[0,4,["H750"]],[4,6,["H639"]],[6,9,["H7227"]],[9,10,["H8394"]],[10,15,["H7116"]],[15,17,["H7307"]],[17,18,["H7311"]],[18,19,["H200"]]]},{"k":16802,"v":[[0,2,["H4832"]],[2,3,["H3820"]],[3,6,["H2416"]],[6,9,["H1320"]],[9,11,["H7068"]],[11,13,["H7538"]],[13,16,["H6106"]]]},{"k":16803,"v":[[0,3,["H6231"]],[3,5,["H1800"]],[5,6,["H2778"]],[6,8,["H6213"]],[8,12,["H3513"]],[12,15,["H2603"]],[15,18,["H34"]]]},{"k":16804,"v":[[0,2,["H7563"]],[2,5,["H1760"]],[5,8,["H7451"]],[8,11,["H6662"]],[11,13,["H2620"]],[13,16,["H4194"]]]},{"k":16805,"v":[[0,1,["H2451"]],[1,2,["H5117"]],[2,5,["H3820"]],[5,10,["H995"]],[10,17,["H7130"]],[17,19,["H3684"]],[19,22,["H3045"]]]},{"k":16806,"v":[[0,1,["H6666"]],[1,2,["H7311"]],[2,4,["H1471"]],[4,6,["H2403"]],[6,9,["H2617"]],[9,12,["H3816"]]]},{"k":16807,"v":[[0,2,["H4428"]],[2,3,["H7522"]],[3,7,["H7919"]],[7,8,["H5650"]],[8,11,["H5678"]],[11,12,["H1961"]],[12,17,["H954"]]]},{"k":16808,"v":[[0,2,["H7390"]],[2,3,["H4617"]],[3,5,["H7725"]],[5,6,["H2534"]],[6,8,["H6089"]],[8,9,["H1697"]],[9,11,["H5927"]],[11,12,["H639"]]]},{"k":16809,"v":[[0,2,["H3956"]],[2,5,["H2450"]],[5,7,["H1847"]],[7,8,["H3190"]],[8,11,["H6310"]],[11,13,["H3684"]],[13,15,["H5042"]],[15,16,["H200"]]]},{"k":16810,"v":[[0,2,["H5869"]],[2,5,["H3068"]],[5,8,["H3605"]],[8,9,["H4725"]],[9,10,["H6822"]],[10,12,["H7451"]],[12,15,["H2896"]]]},{"k":16811,"v":[[0,2,["H4832"]],[2,3,["H3956"]],[3,6,["H6086"]],[6,8,["H2416"]],[8,10,["H5558"]],[10,14,["H7667"]],[14,17,["H7307"]]]},{"k":16812,"v":[[0,2,["H191"]],[2,3,["H5006"]],[3,5,["H1"]],[5,6,["H4148"]],[6,10,["H8104"]],[10,11,["H8433"]],[11,13,["H6191"]]]},{"k":16813,"v":[[0,3,["H1004"]],[3,6,["H6662"]],[6,8,["H7227"]],[8,9,["H2633"]],[9,13,["H8393"]],[13,16,["H7563"]],[16,18,["H5916"]]]},{"k":16814,"v":[[0,2,["H8193"]],[2,5,["H2450"]],[5,6,["H2219"]],[6,7,["H1847"]],[7,10,["H3820"]],[10,13,["H3684"]],[13,15,["H3808"]],[15,16,["H3651"]]]},{"k":16815,"v":[[0,2,["H2077"]],[2,5,["H7563"]],[5,8,["H8441"]],[8,11,["H3068"]],[11,14,["H8605"]],[14,17,["H3477"]],[17,20,["H7522"]]]},{"k":16816,"v":[[0,2,["H1870"]],[2,5,["H7563"]],[5,8,["H8441"]],[8,11,["H3068"]],[11,14,["H157"]],[14,18,["H7291"]],[18,19,["H6666"]]]},{"k":16817,"v":[[0,1,["H4148"]],[1,3,["H7451"]],[3,7,["H5800"]],[7,9,["H734"]],[9,13,["H8130"]],[13,14,["H8433"]],[14,16,["H4191"]]]},{"k":16818,"v":[[0,1,["H7585"]],[1,3,["H11"]],[3,5,["H5048"]],[5,7,["H3068"]],[7,11,["H637","H3588"]],[11,13,["H3826"]],[13,16,["H1121"]],[16,18,["H120"]]]},{"k":16819,"v":[[0,2,["H3887"]],[2,3,["H157"]],[3,4,["H3808"]],[4,7,["H3198"]],[7,9,["H3808"]],[9,12,["H1980"]],[12,13,["H413"]],[13,15,["H2450"]]]},{"k":16820,"v":[[0,2,["H8056"]],[2,3,["H3820"]],[3,6,["H3190"]],[6,7,["H6440"]],[7,10,["H6094"]],[10,13,["H3820"]],[13,15,["H7307"]],[15,17,["H5218"]]]},{"k":16821,"v":[[0,2,["H3820"]],[2,7,["H995"]],[7,8,["H1245"]],[8,9,["H1847"]],[9,12,["H6310"]],[12,14,["H3684"]],[14,16,["H7462"]],[16,17,["H200"]]]},{"k":16822,"v":[[0,1,["H3605"]],[1,3,["H3117"]],[3,6,["H6041"]],[6,8,["H7451"]],[8,15,["H2896"]],[15,16,["H3820"]],[16,19,["H8548"]],[19,20,["H4960"]]]},{"k":16823,"v":[[0,1,["H2896"]],[1,3,["H4592"]],[3,6,["H3374"]],[6,9,["H3068"]],[9,11,["H7227"]],[11,12,["H4480","H214"]],[12,14,["H4103"]],[14,15,[]]]},{"k":16824,"v":[[0,1,["H2896"]],[1,4,["H737"]],[4,6,["H3419"]],[6,7,["H8033"]],[7,8,["H160"]],[8,12,["H75"]],[12,13,["H4480","H7794"]],[13,15,["H8135"]],[15,16,[]]]},{"k":16825,"v":[[0,2,["H2534"]],[2,3,["H376"]],[3,5,["H1624"]],[5,6,["H4066"]],[6,11,["H750"]],[11,13,["H639"]],[13,14,["H8252"]],[14,15,["H7379"]]]},{"k":16826,"v":[[0,2,["H1870"]],[2,5,["H6102"]],[5,10,["H4881"]],[10,12,["H2312"]],[12,15,["H734"]],[15,18,["H3477"]],[18,21,["H5549"]]]},{"k":16827,"v":[[0,2,["H2450"]],[2,3,["H1121"]],[3,6,["H8055"]],[6,7,["H1"]],[7,10,["H3684"]],[10,11,["H120"]],[11,12,["H959"]],[12,14,["H517"]]]},{"k":16828,"v":[[0,1,["H200"]],[1,3,["H8057"]],[3,8,["H2638"]],[8,10,["H3820"]],[10,13,["H376"]],[13,15,["H8394"]],[15,16,["H1980"]],[16,17,["H3474"]]]},{"k":16829,"v":[[0,1,["H369"]],[1,2,["H5475"]],[2,3,["H4284"]],[3,5,["H6565"]],[5,9,["H7230"]],[9,11,["H3289"]],[11,14,["H6965"]]]},{"k":16830,"v":[[0,2,["H376"]],[2,4,["H8057"]],[4,7,["H4617"]],[7,10,["H6310"]],[10,13,["H1697"]],[13,17,["H6256"]],[17,18,["H4100"]],[18,19,["H2896"]],[19,21,[]]]},{"k":16831,"v":[[0,2,["H734"]],[2,4,["H2416"]],[4,6,["H4605"]],[6,9,["H7919"]],[9,10,["H4616"]],[10,13,["H5493"]],[13,15,["H4480","H7585"]],[15,16,["H4295"]]]},{"k":16832,"v":[[0,2,["H3068"]],[2,4,["H5255"]],[4,6,["H1004"]],[6,9,["H1343"]],[9,13,["H5324"]],[13,15,["H1366"]],[15,18,["H490"]]]},{"k":16833,"v":[[0,2,["H4284"]],[2,5,["H7451"]],[5,8,["H8441"]],[8,11,["H3068"]],[11,17,["H2889"]],[17,19,["H5278"]],[19,20,["H561"]]]},{"k":16834,"v":[[0,4,["H1214"]],[4,6,["H1215"]],[6,7,["H5916"]],[7,10,["H1004"]],[10,14,["H8130"]],[14,15,["H4979"]],[15,17,["H2421"]]]},{"k":16835,"v":[[0,2,["H3820"]],[2,5,["H6662"]],[5,6,["H1897"]],[6,8,["H6030"]],[8,11,["H6310"]],[11,14,["H7563"]],[14,16,["H5042"]],[16,18,["H7451"]]]},{"k":16836,"v":[[0,2,["H3068"]],[2,4,["H7350"]],[4,7,["H4480","H7563"]],[7,10,["H8085"]],[10,12,["H8605"]],[12,15,["H6662"]]]},{"k":16837,"v":[[0,2,["H3974"]],[2,5,["H5869"]],[5,6,["H8055"]],[6,8,["H3820"]],[8,11,["H2896"]],[11,12,["H8052"]],[12,15,["H6106"]],[15,16,["H1878"]]]},{"k":16838,"v":[[0,2,["H241"]],[2,4,["H8085"]],[4,6,["H8433"]],[6,8,["H2416"]],[8,9,["H3885"]],[9,10,["H7130"]],[10,12,["H2450"]]]},{"k":16839,"v":[[0,3,["H6544"]],[3,4,["H4148"]],[4,5,["H3988"]],[5,8,["H5315"]],[8,12,["H8085"]],[12,13,["H8433"]],[13,14,["H7069"]],[14,15,["H3820"]]]},{"k":16840,"v":[[0,2,["H3374"]],[2,5,["H3068"]],[5,8,["H4148"]],[8,10,["H2451"]],[10,12,["H6440"]],[12,13,["H3519"]],[13,15,["H6038"]]]},{"k":16841,"v":[[0,2,["H4633"]],[2,5,["H3820"]],[5,7,["H120"]],[7,10,["H4617"]],[10,13,["H3956"]],[13,17,["H4480","H3068"]]]},{"k":16842,"v":[[0,1,["H3605"]],[1,3,["H1870"]],[3,6,["H376"]],[6,8,["H2134"]],[8,12,["H5869"]],[12,15,["H3068"]],[15,16,["H8505"]],[16,18,["H7307"]]]},{"k":16843,"v":[[0,1,["H1556"]],[1,3,["H4639"]],[3,4,["H413"]],[4,6,["H3068"]],[6,9,["H4284"]],[9,12,["H3559"]]]},{"k":16844,"v":[[0,2,["H3068"]],[2,4,["H6466"]],[4,5,["H3605"]],[5,8,["H4617"]],[8,10,["H1571"]],[10,12,["H7563"]],[12,15,["H3117"]],[15,17,["H7451"]]]},{"k":16845,"v":[[0,2,["H3605"]],[2,5,["H1362"]],[5,7,["H3820"]],[7,10,["H8441"]],[10,13,["H3068"]],[13,15,["H3027"]],[15,18,["H3027"]],[18,21,["H3808"]],[21,23,["H5352"]]]},{"k":16846,"v":[[0,2,["H2617"]],[2,4,["H571"]],[4,5,["H5771"]],[5,7,["H3722"]],[7,11,["H3374"]],[11,14,["H3068"]],[14,16,["H5493"]],[16,18,["H4480","H7451"]]]},{"k":16847,"v":[[0,3,["H376"]],[3,4,["H1870"]],[4,5,["H7521"]],[5,7,["H3068"]],[7,10,["H1571"]],[10,12,["H341"]],[12,16,["H7999"]],[16,17,["H854"]],[17,18,[]]]},{"k":16848,"v":[[0,1,["H2896"]],[1,4,["H4592"]],[4,6,["H6666"]],[6,8,["H4480","H7230"]],[8,9,["H8393"]],[9,10,["H3808"]],[10,11,["H4941"]]]},{"k":16849,"v":[[0,2,["H120"]],[2,3,["H3820"]],[3,4,["H2803"]],[4,6,["H1870"]],[6,9,["H3068"]],[9,10,["H3559"]],[10,12,["H6806"]]]},{"k":16850,"v":[[0,3,["H7081"]],[3,5,["H5921"]],[5,7,["H8193"]],[7,10,["H4428"]],[10,12,["H6310"]],[12,13,["H4603"]],[13,14,["H3808"]],[14,16,["H4941"]]]},{"k":16851,"v":[[0,2,["H4941"]],[2,3,["H6425"]],[3,5,["H3976"]],[5,8,["H3068"]],[8,9,["H3605"]],[9,11,["H68"]],[11,14,["H3599"]],[14,17,["H4639"]]]},{"k":16852,"v":[[0,4,["H8441"]],[4,6,["H4428"]],[6,8,["H6213"]],[8,9,["H7562"]],[9,10,["H3588"]],[10,12,["H3678"]],[12,14,["H3559"]],[14,16,["H6666"]]]},{"k":16853,"v":[[0,1,["H6664"]],[1,2,["H8193"]],[2,5,["H7522"]],[5,7,["H4428"]],[7,10,["H157"]],[10,13,["H1696"]],[13,14,["H3477"]]]},{"k":16854,"v":[[0,2,["H2534"]],[2,5,["H4428"]],[5,8,["H4397"]],[8,10,["H4194"]],[10,13,["H2450"]],[13,14,["H376"]],[14,16,["H3722"]],[16,17,[]]]},{"k":16855,"v":[[0,3,["H216"]],[3,6,["H4428"]],[6,7,["H6440"]],[7,9,["H2416"]],[9,12,["H7522"]],[12,16,["H5645"]],[16,20,["H4456"]]]},{"k":16856,"v":[[0,2,["H4100"]],[2,3,["H2896"]],[3,7,["H7069"]],[7,8,["H2451"]],[8,10,["H4480","H2742"]],[10,13,["H7069"]],[13,14,["H998"]],[14,18,["H977"]],[18,20,["H4480","H3701"]]]},{"k":16857,"v":[[0,2,["H4546"]],[2,5,["H3477"]],[5,8,["H5493"]],[8,10,["H4480","H7451"]],[10,13,["H5341"]],[13,15,["H1870"]],[15,16,["H8104"]],[16,18,["H5315"]]]},{"k":16858,"v":[[0,1,["H1347"]],[1,3,["H6440"]],[3,4,["H7667"]],[4,7,["H1363"]],[7,8,["H7307"]],[8,9,["H6440"]],[9,11,["H3783"]]]},{"k":16859,"v":[[0,1,["H2896"]],[1,8,["H8217"]],[8,9,["H7307"]],[9,10,["H854"]],[10,12,["H6035"]],[12,15,["H4480","H2505"]],[15,17,["H7998"]],[17,18,["H854"]],[18,20,["H1343"]]]},{"k":16860,"v":[[0,6,["H7919","H5921","H1697"]],[6,8,["H4672"]],[8,9,["H2896"]],[9,12,["H982"]],[12,15,["H3068"]],[15,16,["H835"]],[16,18,[]]]},{"k":16861,"v":[[0,2,["H2450"]],[2,4,["H3820"]],[4,7,["H7121"]],[7,8,["H995"]],[8,11,["H4986"]],[11,14,["H8193"]],[14,15,["H3254"]],[15,16,["H3948"]]]},{"k":16862,"v":[[0,1,["H7922"]],[1,4,["H4726"]],[4,6,["H2416"]],[6,10,["H1167"]],[10,14,["H4148"]],[14,16,["H191"]],[16,18,["H200"]]]},{"k":16863,"v":[[0,2,["H3820"]],[2,5,["H2450"]],[5,6,["H7919"]],[6,8,["H6310"]],[8,10,["H3254"]],[10,11,["H3948"]],[11,12,["H5921"]],[12,14,["H8193"]]]},{"k":16864,"v":[[0,1,["H5278"]],[1,2,["H561"]],[2,6,["H6688","H1706"]],[6,7,["H4966"]],[7,10,["H5315"]],[10,12,["H4832"]],[12,15,["H6106"]]]},{"k":16865,"v":[[0,2,["H3426"]],[2,4,["H1870"]],[4,6,["H6440"]],[6,7,["H3477"]],[7,10,["H376"]],[10,13,["H319"]],[13,17,["H1870"]],[17,19,["H4194"]]]},{"k":16866,"v":[[0,1,["H5315"]],[1,3,["H6001"]],[3,4,["H5998"]],[4,7,["H3588"]],[7,9,["H6310"]],[9,10,["H404"]],[10,12,["H5921"]],[12,13,[]]]},{"k":16867,"v":[[0,2,["H1100"]],[2,3,["H376"]],[3,5,["H3738"]],[5,6,["H7451"]],[6,8,["H5921"]],[8,10,["H8193"]],[10,15,["H6867"]],[15,16,["H784"]]]},{"k":16868,"v":[[0,2,["H8419"]],[2,3,["H376"]],[3,4,["H7971"]],[4,5,["H4066"]],[5,8,["H5372"]],[8,9,["H6504"]],[9,11,["H441"]]]},{"k":16869,"v":[[0,2,["H2555"]],[2,3,["H376"]],[3,4,["H6601"]],[4,6,["H7453"]],[6,8,["H1980"]],[8,12,["H1870"]],[12,15,["H3808"]],[15,16,["H2896"]]]},{"k":16870,"v":[[0,2,["H6095"]],[2,4,["H5869"]],[4,6,["H2803"]],[6,8,["H8419"]],[8,9,["H7169"]],[9,11,["H8193"]],[11,16,["H3615","H7451"]]]},{"k":16871,"v":[[0,2,["H7872"]],[2,6,["H5850"]],[6,8,["H8597"]],[8,12,["H4672"]],[12,15,["H1870"]],[15,17,["H6666"]]]},{"k":16872,"v":[[0,4,["H750"]],[4,6,["H639"]],[6,8,["H2896"]],[8,11,["H4480","H1368"]],[11,15,["H4910"]],[15,17,["H7307"]],[17,21,["H4480","H3920"]],[21,23,["H5892"]]]},{"k":16873,"v":[[0,0,["(H853)"]],[0,2,["H1486"]],[2,4,["H2904"]],[4,7,["H2436"]],[7,10,["H3605"]],[10,11,["H4941"]],[11,16,["H4480","H3068"]]]},{"k":16874,"v":[[0,1,["H2896"]],[1,4,["H2720"]],[4,5,["H6595"]],[5,7,["H7962"]],[7,11,["H4480","H1004"]],[11,12,["H4392"]],[12,14,["H2077"]],[14,16,["H7379"]]]},{"k":16875,"v":[[0,2,["H7919"]],[2,3,["H5650"]],[3,6,["H4910"]],[6,9,["H1121"]],[9,12,["H954"]],[12,16,["H2505"]],[16,19,["H5159"]],[19,20,["H8432"]],[20,22,["H251"]]]},{"k":16876,"v":[[0,3,["H4715"]],[3,6,["H3701"]],[6,9,["H3564"]],[9,11,["H2091"]],[11,14,["H3068"]],[14,15,["H974"]],[15,17,["H3826"]]]},{"k":16877,"v":[[0,3,["H7489"]],[3,5,["H7181"]],[5,6,["H5921"]],[6,7,["H205"]],[7,8,["H8193"]],[8,11,["H8267"]],[11,13,["H238"]],[13,14,["H5921"]],[14,16,["H1942"]],[16,17,["H3956"]]]},{"k":16878,"v":[[0,2,["H3932"]],[2,4,["H7326"]],[4,5,["H2778"]],[5,7,["H6213"]],[7,12,["H8056"]],[12,14,["H343"]],[14,16,["H3808"]],[16,18,["H5352"]]]},{"k":16879,"v":[[0,1,["H1121"]],[1,2,["H1121"]],[2,5,["H5850"]],[5,8,["H2205"]],[8,11,["H8597"]],[11,13,["H1121"]],[13,16,["H1"]]]},{"k":16880,"v":[[0,1,["H3499"]],[1,2,["H8193"]],[2,3,["H5000"]],[3,4,["H3808"]],[4,6,["H5036"]],[6,8,["H637","H3588"]],[8,10,["H8267"]],[10,11,["H8193"]],[11,13,["H5081"]]]},{"k":16881,"v":[[0,2,["H7810"]],[2,6,["H2580"]],[6,7,["H68"]],[7,10,["H5869"]],[10,14,["H1167"]],[14,16,["H413","H3605","H834"]],[16,18,["H6437"]],[18,20,["H7919"]]]},{"k":16882,"v":[[0,3,["H3680"]],[3,5,["H6588"]],[5,6,["H1245"]],[6,7,["H160"]],[7,11,["H8138"]],[11,13,["H1697"]],[13,14,["H6504"]],[14,16,["H441"]]]},{"k":16883,"v":[[0,2,["H1606"]],[2,4,["H5181"]],[4,7,["H995"]],[7,11,["H3967"]],[11,12,["H4480","H5221"]],[12,15,["H3684"]]]},{"k":16884,"v":[[0,2,["H7451"]],[2,4,["H1245"]],[4,5,["H389"]],[5,6,["H4805"]],[6,9,["H394"]],[9,10,["H4397"]],[10,13,["H7971"]],[13,15,[]]]},{"k":16885,"v":[[0,3,["H1677"]],[3,4,["H7909"]],[4,8,["H6298"]],[8,10,["H376"]],[10,11,["H408"]],[11,14,["H3684"]],[14,17,["H200"]]]},{"k":16886,"v":[[0,2,["H7725"]],[2,3,["H7451"]],[3,4,["H8478"]],[4,5,["H2896"]],[5,6,["H7451"]],[6,8,["H3808"]],[8,9,["H4185"]],[9,12,["H4480","H1004"]]]},{"k":16887,"v":[[0,2,["H7225"]],[2,4,["H4066"]],[4,10,["H6362"]],[10,11,["H4325"]],[11,14,["H5203"]],[14,15,["H7379"]],[15,16,["H6440"]],[16,20,["H1566"]]]},{"k":16888,"v":[[0,3,["H6663"]],[3,5,["H7563"]],[5,9,["H7561"]],[9,11,["H6662"]],[11,12,["H1571"]],[12,14,["H8147"]],[14,16,["H8441"]],[16,19,["H3068"]]]},{"k":16889,"v":[[0,1,["H4100","H2088"]],[1,5,["H4242"]],[5,8,["H3027"]],[8,11,["H3684"]],[11,13,["H7069"]],[13,14,["H2451"]],[14,18,["H369"]],[18,19,["H3820"]],[19,21,[]]]},{"k":16890,"v":[[0,2,["H7453"]],[2,3,["H157"]],[3,5,["H3605"]],[5,6,["H6256"]],[6,9,["H251"]],[9,11,["H3205"]],[11,13,["H6869"]]]},{"k":16891,"v":[[0,2,["H120"]],[2,3,["H2638"]],[3,5,["H3820"]],[5,6,["H8628"]],[6,7,["H3709"]],[7,9,["H6148"]],[9,10,["H6161"]],[10,13,["H6440"]],[13,16,["H7453"]]]},{"k":16892,"v":[[0,2,["H157"]],[2,3,["H6588"]],[3,5,["H157"]],[5,6,["H4683"]],[6,10,["H1361"]],[10,12,["H6607"]],[12,13,["H1245"]],[13,14,["H7667"]]]},{"k":16893,"v":[[0,5,["H6141"]],[5,6,["H3820"]],[6,7,["H4672"]],[7,8,["H3808"]],[8,9,["H2896"]],[9,15,["H2015"]],[15,16,["H3956"]],[16,17,["H5307"]],[17,19,["H7451"]]]},{"k":16894,"v":[[0,3,["H3205"]],[3,5,["H3684"]],[5,10,["H8424"]],[10,13,["H1"]],[13,16,["H5036"]],[16,18,["H3808"]],[18,19,["H8055"]]]},{"k":16895,"v":[[0,2,["H8056"]],[2,3,["H3820"]],[3,5,["H3190"]],[5,8,["H1456"]],[8,11,["H5218"]],[11,12,["H7307"]],[12,13,["H3001"]],[13,15,["H1634"]]]},{"k":16896,"v":[[0,2,["H7563"]],[2,4,["H3947"]],[4,6,["H7810"]],[6,10,["H4480","H2436"]],[10,12,["H5186"]],[12,14,["H734"]],[14,16,["H4941"]]]},{"k":16897,"v":[[0,1,["H2451"]],[1,3,["H854","H6440"]],[3,7,["H995"]],[7,10,["H5869"]],[10,13,["H3684"]],[13,17,["H7097"]],[17,20,["H776"]]]},{"k":16898,"v":[[0,2,["H3684"]],[2,3,["H1121"]],[3,6,["H3708"]],[6,9,["H1"]],[9,11,["H4470"]],[11,15,["H3205"]],[15,16,[]]]},{"k":16899,"v":[[0,1,["H1571"]],[1,3,["H6064"]],[3,5,["H6662"]],[5,7,["H3808"]],[7,8,["H2896"]],[8,11,["H5221"]],[11,12,["H5081"]],[12,13,["H5921"]],[13,14,["H3476"]]]},{"k":16900,"v":[[0,4,["H3045","H1847"]],[4,5,["H2820"]],[5,7,["H561"]],[7,10,["H376"]],[10,12,["H8394"]],[12,16,["H3368"]],[16,17,["H7307"]]]},{"k":16901,"v":[[0,1,["H1571"]],[1,3,["H191"]],[3,8,["H2790"]],[8,10,["H2803"]],[10,11,["H2450"]],[11,15,["H331"]],[15,17,["H8193"]],[17,23,["H995"]]]},{"k":16902,"v":[[0,2,["H8378"]],[2,7,["H6504"]],[7,8,["H1245"]],[8,10,["H1566"]],[10,12,["H3605"]],[12,13,["H8454"]]]},{"k":16903,"v":[[0,2,["H3684"]],[2,4,["H3808"]],[4,5,["H2654"]],[5,7,["H8394"]],[7,8,["H3588","H518"]],[8,11,["H3820"]],[11,14,["H1540"]]]},{"k":16904,"v":[[0,3,["H7563"]],[3,4,["H935"]],[4,6,["H935"]],[6,7,["H1571"]],[7,8,["H937"]],[8,10,["H5973"]],[10,11,["H7036"]],[11,12,["H2781"]]]},{"k":16905,"v":[[0,2,["H1697"]],[2,5,["H376"]],[5,6,["H6310"]],[6,9,["H6013"]],[9,10,["H4325"]],[10,13,["H4726"]],[13,15,["H2451"]],[15,18,["H5042"]],[18,19,["H5158"]]]},{"k":16906,"v":[[0,3,["H3808"]],[3,4,["H2896"]],[4,6,["H5375"]],[6,8,["H6440"]],[8,11,["H7563"]],[11,13,["H5186"]],[13,15,["H6662"]],[15,17,["H4941"]]]},{"k":16907,"v":[[0,2,["H3684"]],[2,3,["H8193"]],[3,4,["H935"]],[4,6,["H7379"]],[6,9,["H6310"]],[9,10,["H7121"]],[10,12,["H4112"]]]},{"k":16908,"v":[[0,2,["H3684"]],[2,3,["H6310"]],[3,6,["H4288"]],[6,9,["H8193"]],[9,12,["H4170"]],[12,15,["H5315"]]]},{"k":16909,"v":[[0,2,["H1697"]],[2,5,["H5372"]],[5,8,["H3859"]],[8,10,["H1992"]],[10,12,["H3381"]],[12,16,["H2315"]],[16,19,["H990"]]]},{"k":16910,"v":[[0,1,["H1931"]],[1,2,["H1571"]],[2,5,["H7503"]],[5,8,["H4399"]],[8,10,["H251"]],[10,16,["H1167"]],[16,17,["H4889"]]]},{"k":16911,"v":[[0,2,["H8034"]],[2,5,["H3068"]],[5,8,["H5797"]],[8,9,["H4026"]],[9,11,["H6662"]],[11,12,["H7323"]],[12,17,["H7682"]]]},{"k":16912,"v":[[0,3,["H6223"]],[3,4,["H1952"]],[4,7,["H5797"]],[7,8,["H7151"]],[8,12,["H7682"]],[12,13,["H2346"]],[13,17,["H4906"]]]},{"k":16913,"v":[[0,1,["H6440"]],[1,2,["H7667"]],[2,4,["H3820"]],[4,6,["H376"]],[6,8,["H1361"]],[8,10,["H6440"]],[10,11,["H3519"]],[11,13,["H6038"]]]},{"k":16914,"v":[[0,3,["H7725"]],[3,5,["H1697"]],[5,6,["H2962"]],[6,8,["H8085"]],[8,10,["H1931"]],[10,12,["H200"]],[12,14,["H3639"]],[14,16,[]]]},{"k":16915,"v":[[0,2,["H7307"]],[2,5,["H376"]],[5,7,["H3557"]],[7,9,["H4245"]],[9,12,["H5218"]],[12,13,["H7307"]],[13,14,["H4310"]],[14,16,["H5375"]]]},{"k":16916,"v":[[0,2,["H3820"]],[2,5,["H995"]],[5,6,["H7069"]],[6,7,["H1847"]],[7,10,["H241"]],[10,13,["H2450"]],[13,14,["H1245"]],[14,15,["H1847"]]]},{"k":16917,"v":[[0,2,["H120"]],[2,3,["H4976"]],[3,5,["H7337"]],[5,9,["H5148"]],[9,11,["H6440"]],[11,12,["H1419"]],[12,13,[]]]},{"k":16918,"v":[[0,4,["H7223"]],[4,8,["H7379"]],[8,10,["H6662"]],[10,13,["H7453"]],[13,14,["H935"]],[14,16,["H2713"]],[16,17,[]]]},{"k":16919,"v":[[0,2,["H1486"]],[2,4,["H4079"]],[4,6,["H7673"]],[6,8,["H6504"]],[8,9,["H996"]],[9,11,["H6099"]]]},{"k":16920,"v":[[0,2,["H251"]],[2,3,["H6586"]],[3,11,["H5797"]],[11,12,["H4480","H7151"]],[12,15,["H4079"]],[15,19,["H1280"]],[19,22,["H759"]]]},{"k":16921,"v":[[0,2,["H376"]],[2,3,["H990"]],[3,6,["H7646"]],[6,9,["H4480","H6529"]],[9,12,["H6310"]],[12,16,["H8393"]],[16,19,["H8193"]],[19,23,["H7646"]]]},{"k":16922,"v":[[0,1,["H4194"]],[1,3,["H2416"]],[3,7,["H3027"]],[7,10,["H3956"]],[10,14,["H157"]],[14,17,["H398"]],[17,19,["H6529"]],[19,20,[]]]},{"k":16923,"v":[[0,2,["H4672"]],[2,4,["H802"]],[4,5,["H4672"]],[5,7,["H2896"]],[7,10,["H6329"]],[10,11,["H7522"]],[11,14,["H4480","H3068"]]]},{"k":16924,"v":[[0,2,["H7326"]],[2,3,["H1696"]],[3,4,["H8469"]],[4,7,["H6223"]],[7,8,["H6030"]],[8,9,["H5794"]]]},{"k":16925,"v":[[0,2,["H376"]],[2,5,["H7453"]],[5,9,["H7489"]],[9,12,["H3426"]],[12,14,["H157"]],[14,17,["H1695"]],[17,20,["H4480","H251"]]]},{"k":16926,"v":[[0,1,["H2896"]],[1,4,["H7326"]],[4,6,["H1980"]],[6,9,["H8537"]],[9,14,["H4480","H6141"]],[14,17,["H8193"]],[17,21,["H3684"]]]},{"k":16927,"v":[[0,1,["H1571"]],[1,4,["H5315"]],[4,6,["H3808"]],[6,7,["H1847"]],[7,10,["H3808"]],[10,11,["H2896"]],[11,15,["H213"]],[15,18,["H7272"]],[18,19,["H2398"]]]},{"k":16928,"v":[[0,2,["H200"]],[2,4,["H120"]],[4,5,["H5557"]],[5,7,["H1870"]],[7,10,["H3820"]],[10,11,["H2196"]],[11,12,["H5921"]],[12,14,["H3068"]]]},{"k":16929,"v":[[0,1,["H1952"]],[1,2,["H3254"]],[2,3,["H7227"]],[3,4,["H7453"]],[4,7,["H1800"]],[7,9,["H6504"]],[9,12,["H4480","H7453"]]]},{"k":16930,"v":[[0,2,["H8267"]],[2,3,["H5707"]],[3,5,["H3808"]],[5,7,["H5352"]],[7,11,["H6315"]],[11,12,["H3577"]],[12,14,["H3808"]],[14,15,["H4422"]]]},{"k":16931,"v":[[0,1,["H7227"]],[1,3,["H2470"]],[3,5,["H6440"]],[5,8,["H5081"]],[8,11,["H3605"]],[11,14,["H7453"]],[14,19,["H376","H4976"]]]},{"k":16932,"v":[[0,1,["H3605"]],[1,3,["H251"]],[3,6,["H7326"]],[6,8,["H8130"]],[8,12,["H637","H3588"]],[12,15,["H4828"]],[15,17,["H7368"]],[17,18,["H4480"]],[18,21,["H7291"]],[21,24,["H561"]],[24,26,["H1992"]],[26,28,["H3808"]],[28,30,[]]]},{"k":16933,"v":[[0,3,["H7069"]],[3,4,["H3820"]],[4,5,["H157"]],[5,8,["H5315"]],[8,11,["H8104"]],[11,12,["H8394"]],[12,14,["H4672"]],[14,15,["H2896"]]]},{"k":16934,"v":[[0,2,["H8267"]],[2,3,["H5707"]],[3,5,["H3808"]],[5,7,["H5352"]],[7,11,["H6315"]],[11,12,["H3577"]],[12,14,["H6"]]]},{"k":16935,"v":[[0,1,["H8588"]],[1,3,["H3808"]],[3,4,["H5000"]],[4,7,["H3684"]],[7,9,["H637"]],[9,10,["H3588"]],[10,12,["H5650"]],[12,15,["H4910"]],[15,17,["H8269"]]]},{"k":16936,"v":[[0,2,["H7922"]],[2,5,["H120"]],[5,6,["H748"]],[6,8,["H639"]],[8,13,["H8597"]],[13,15,["H5674"]],[15,16,["H5921"]],[16,18,["H6588"]]]},{"k":16937,"v":[[0,2,["H4428"]],[2,3,["H2197"]],[3,7,["H5099"]],[7,10,["H3715"]],[10,13,["H7522"]],[13,16,["H2919"]],[16,17,["H5921"]],[17,19,["H6212"]]]},{"k":16938,"v":[[0,2,["H3684"]],[2,3,["H1121"]],[3,6,["H1942"]],[6,9,["H1"]],[9,12,["H4079"]],[12,15,["H802"]],[15,18,["H2956"]],[18,19,["H1812"]]]},{"k":16939,"v":[[0,1,["H1004"]],[1,3,["H1952"]],[3,6,["H5159"]],[6,8,["H1"]],[8,11,["H7919"]],[11,12,["H802"]],[12,16,["H4480","H3068"]]]},{"k":16940,"v":[[0,1,["H6103"]],[1,2,["H5307"]],[2,6,["H8639"]],[6,9,["H7423"]],[9,10,["H5315"]],[10,13,["H7456"]]]},{"k":16941,"v":[[0,3,["H8104"]],[3,5,["H4687"]],[5,6,["H8104"]],[6,9,["H5315"]],[9,13,["H959"]],[13,15,["H1870"]],[15,17,["H4191"]]]},{"k":16942,"v":[[0,4,["H2603"]],[4,7,["H1800"]],[7,8,["H3867"]],[8,11,["H3068"]],[11,17,["H1576"]],[17,22,["H7999"]]]},{"k":16943,"v":[[0,1,["H3256"]],[1,3,["H1121"]],[3,4,["H3588"]],[4,6,["H3426"]],[6,7,["H8615"]],[7,10,["H408"]],[10,12,["H5315"]],[12,13,["H5375"]],[13,14,["H413"]],[14,16,["H4191"]]]},{"k":16944,"v":[[0,4,["H1419"]],[4,5,["H2534"]],[5,7,["H5375"]],[7,8,["H6066"]],[8,9,["H3588"]],[9,10,["H518"]],[10,12,["H5337"]],[12,14,["H5750"]],[14,19,["H3254"]]]},{"k":16945,"v":[[0,1,["H8085"]],[1,2,["H6098"]],[2,4,["H6901"]],[4,5,["H4148"]],[5,6,["H4616"]],[6,10,["H2449"]],[10,13,["H319"]],[13,14,[]]]},{"k":16946,"v":[[0,3,["H7227"]],[3,4,["H4284"]],[4,7,["H376"]],[7,8,["H3820"]],[8,11,["H6098"]],[11,14,["H3068"]],[14,15,["H1931"]],[15,17,["H6965"]]]},{"k":16947,"v":[[0,2,["H8378"]],[2,5,["H120"]],[5,8,["H2617"]],[8,11,["H7326"]],[11,12,["H4480","H376"]],[12,14,["H2896"]],[14,17,["H3577"]]]},{"k":16948,"v":[[0,2,["H3374"]],[2,5,["H3068"]],[5,8,["H2416"]],[8,15,["H3885"]],[15,16,["H7649"]],[16,19,["H1077"]],[19,21,["H6485"]],[21,23,["H7451"]]]},{"k":16949,"v":[[0,2,["H6102"]],[2,4,["H2934"]],[4,6,["H3027"]],[6,9,["H6747"]],[9,12,["H3808"]],[12,14,["H1571"]],[14,21,["H413","H6310","H7725"]]]},{"k":16950,"v":[[0,1,["H5221"]],[1,3,["H3887"]],[3,6,["H6612"]],[6,8,["H6191"]],[8,10,["H3198"]],[10,14,["H995"]],[14,18,["H995"]],[18,19,["H1847"]]]},{"k":16951,"v":[[0,3,["H7703"]],[3,5,["H1"]],[5,8,["H1272"]],[8,10,["H517"]],[10,13,["H1121"]],[13,16,["H954"]],[16,19,["H2659"]]]},{"k":16952,"v":[[0,1,["H2308"]],[1,3,["H1121"]],[3,5,["H8085"]],[5,7,["H4148"]],[7,11,["H7686"]],[11,14,["H4480","H561"]],[14,16,["H1847"]]]},{"k":16953,"v":[[0,2,["H1100"]],[2,3,["H5707"]],[3,4,["H3887"]],[4,5,["H4941"]],[5,8,["H6310"]],[8,11,["H7563"]],[11,12,["H1104"]],[12,13,["H205"]]]},{"k":16954,"v":[[0,1,["H8201"]],[1,3,["H3559"]],[3,5,["H3887"]],[5,7,["H4112"]],[7,10,["H1460"]],[10,12,["H3684"]]]},{"k":16955,"v":[[0,1,["H3196"]],[1,4,["H3887"]],[4,6,["H7941"]],[6,8,["H1993"]],[8,10,["H3605"]],[10,12,["H7686"]],[12,15,["H3808"]],[15,16,["H2449"]]]},{"k":16956,"v":[[0,2,["H367"]],[2,5,["H4428"]],[5,9,["H5099"]],[9,12,["H3715"]],[12,17,["H5674"]],[17,18,["H2398"]],[18,22,["H5315"]]]},{"k":16957,"v":[[0,4,["H3519"]],[4,7,["H376"]],[7,9,["H7674"]],[9,11,["H4480","H7379"]],[11,13,["H3605"]],[13,14,["H191"]],[14,17,["H1566"]]]},{"k":16958,"v":[[0,2,["H6102"]],[2,4,["H3808"]],[4,5,["H2790"]],[5,10,["H4480","H2779"]],[10,14,["H7592"]],[14,16,["H7105"]],[16,19,["H369"]]]},{"k":16959,"v":[[0,1,["H6098"]],[1,4,["H3820"]],[4,6,["H376"]],[6,9,["H6013"]],[9,10,["H4325"]],[10,13,["H376"]],[13,15,["H8394"]],[15,19,["H1802"]]]},{"k":16960,"v":[[0,1,["H7230"]],[1,2,["H120"]],[2,4,["H7121"]],[4,6,["H376"]],[6,9,["H2617"]],[9,12,["H529"]],[12,13,["H376"]],[13,14,["H4310"]],[14,16,["H4672"]]]},{"k":16961,"v":[[0,2,["H6662"]],[2,4,["H1980"]],[4,7,["H8537"]],[7,9,["H1121"]],[9,11,["H835"]],[11,12,["H310"]],[12,13,[]]]},{"k":16962,"v":[[0,2,["H4428"]],[2,4,["H3427"]],[4,5,["H5921"]],[5,7,["H3678"]],[7,9,["H1779"]],[9,11,["H2219"]],[11,12,["H3605"]],[12,13,["H7451"]],[13,16,["H5869"]]]},{"k":16963,"v":[[0,1,["H4310"]],[1,3,["H559"]],[3,8,["H3820"]],[8,9,["H2135"]],[9,12,["H2891"]],[12,15,["H4480","H2403"]]]},{"k":16964,"v":[[0,2,["H68","H68"]],[2,5,["H374","H374"]],[5,6,["H8147"]],[6,10,["H1571"]],[10,11,["H8441"]],[11,14,["H3068"]]]},{"k":16965,"v":[[0,1,["H1571"]],[1,3,["H5288"]],[3,5,["H5234"]],[5,8,["H4611"]],[8,9,["H518"]],[9,11,["H6467"]],[11,13,["H2134"]],[13,15,["H518"]],[15,18,["H3477"]]]},{"k":16966,"v":[[0,2,["H8085"]],[2,3,["H241"]],[3,6,["H7200"]],[6,7,["H5869"]],[7,9,["H3068"]],[9,11,["H6213"]],[11,12,["H1571"]],[12,13,["H8147"]],[13,15,[]]]},{"k":16967,"v":[[0,1,["H157"]],[1,2,["H408"]],[2,3,["H8142"]],[3,4,["H6435"]],[4,8,["H3423"]],[8,9,["H6491"]],[9,11,["H5869"]],[11,16,["H7646"]],[16,18,["H3899"]]]},{"k":16968,"v":[[0,3,["H7451"]],[3,6,["H7451"]],[6,7,["H559"]],[7,9,["H7069"]],[9,16,["H235"]],[16,17,["H227"]],[17,19,["H1984"]]]},{"k":16969,"v":[[0,2,["H3426"]],[2,3,["H2091"]],[3,6,["H7230"]],[6,8,["H6443"]],[8,11,["H8193"]],[11,13,["H1847"]],[13,16,["H3366"]],[16,17,["H3627"]]]},{"k":16970,"v":[[0,1,["H3947"]],[1,3,["H899"]],[3,4,["H3588"]],[4,6,["H6148"]],[6,9,["H2114"]],[9,13,["H2254"]],[13,16,["H1157"]],[16,19,["H5237"]]]},{"k":16971,"v":[[0,1,["H3899"]],[1,3,["H8267"]],[3,5,["H6156"]],[5,8,["H376"]],[8,10,["H310"]],[10,12,["H6310"]],[12,15,["H4390"]],[15,17,["H2687"]]]},{"k":16972,"v":[[0,2,["H4284"]],[2,4,["H3559"]],[4,6,["H6098"]],[6,10,["H8458"]],[10,11,["H6213"]],[11,12,["H4421"]]]},{"k":16973,"v":[[0,4,["H1980"]],[4,7,["H7400"]],[7,8,["H1540"]],[8,9,["H5475"]],[9,11,["H6148"]],[11,12,["H3808"]],[12,16,["H6601"]],[16,19,["H8193"]]]},{"k":16974,"v":[[0,2,["H7043"]],[2,4,["H1"]],[4,7,["H517"]],[7,9,["H5216"]],[9,13,["H1846"]],[13,15,["H380"]],[15,16,["H2822"]]]},{"k":16975,"v":[[0,2,["H5159"]],[2,6,["H926"]],[6,9,["H7223"]],[9,12,["H319"]],[12,15,["H3808"]],[15,17,["H1288"]]]},{"k":16976,"v":[[0,1,["H559"]],[1,2,["H408"]],[2,6,["H7999"]],[6,7,["H7451"]],[7,9,["H6960"]],[9,12,["H3068"]],[12,16,["H3467"]],[16,17,[]]]},{"k":16977,"v":[[0,2,["H68","H68"]],[2,5,["H8441"]],[5,8,["H3068"]],[8,11,["H4820"]],[11,12,["H3976"]],[12,14,["H3808"]],[14,15,["H2896"]]]},{"k":16978,"v":[[0,1,["H1397"]],[1,2,["H4703"]],[2,6,["H4480","H3068"]],[6,7,["H4100"]],[7,10,["H120"]],[10,12,["H995"]],[12,15,["H1870"]]]},{"k":16979,"v":[[0,4,["H4170"]],[4,7,["H120"]],[7,9,["H3216"]],[9,13,["H6944"]],[13,15,["H310"]],[15,16,["H5088"]],[16,19,["H1239"]]]},{"k":16980,"v":[[0,2,["H2450"]],[2,3,["H4428"]],[3,4,["H2219"]],[4,6,["H7563"]],[6,8,["H7725"]],[8,10,["H212"]],[10,11,["H5921"]],[11,12,[]]]},{"k":16981,"v":[[0,2,["H5397"]],[2,4,["H120"]],[4,7,["H5216"]],[7,10,["H3068"]],[10,11,["H2664"]],[11,12,["H3605"]],[12,15,["H2315"]],[15,18,["H990"]]]},{"k":16982,"v":[[0,1,["H2617"]],[1,3,["H571"]],[3,4,["H5341"]],[4,6,["H4428"]],[6,9,["H3678"]],[9,11,["H5582"]],[11,13,["H2617"]]]},{"k":16983,"v":[[0,2,["H8597"]],[2,5,["H970"]],[5,8,["H3581"]],[8,11,["H1926"]],[11,14,["H2205"]],[14,18,["H7872"]]]},{"k":16984,"v":[[0,2,["H2250"]],[2,5,["H6482"]],[5,7,["H8562"]],[7,8,["H7451"]],[8,11,["H4347"]],[11,14,["H2315"]],[14,17,["H990"]]]},{"k":16985,"v":[[0,2,["H4428"]],[2,3,["H3820"]],[3,7,["H3027"]],[7,10,["H3068"]],[10,13,["H6388"]],[13,15,["H4325"]],[15,17,["H5186"]],[17,19,["H5921","H3605","H834"]],[19,21,["H2654"]]]},{"k":16986,"v":[[0,1,["H3605"]],[1,2,["H1870"]],[2,5,["H376"]],[5,7,["H3477"]],[7,11,["H5869"]],[11,14,["H3068"]],[14,15,["H8505"]],[15,17,["H3826"]]]},{"k":16987,"v":[[0,2,["H6213"]],[2,3,["H6666"]],[3,5,["H4941"]],[5,8,["H977"]],[8,11,["H3068"]],[11,13,["H4480","H2077"]]]},{"k":16988,"v":[[0,2,["H7312"]],[2,3,["H5869"]],[3,6,["H7342"]],[6,7,["H3820"]],[7,10,["H5215"]],[10,13,["H7563"]],[13,15,["H2403"]]]},{"k":16989,"v":[[0,2,["H4284"]],[2,5,["H2742"]],[5,7,["H389"]],[7,9,["H4195"]],[9,13,["H3605"]],[13,16,["H213"]],[16,17,["H389"]],[17,19,["H4270"]]]},{"k":16990,"v":[[0,2,["H6467"]],[2,4,["H214"]],[4,7,["H8267"]],[7,8,["H3956"]],[8,11,["H1892"]],[11,15,["H5086"]],[15,19,["H1245"]],[19,20,["H4194"]]]},{"k":16991,"v":[[0,2,["H7701"]],[2,5,["H7563"]],[5,7,["H1641"]],[7,9,["H3588"]],[9,11,["H3985"]],[11,13,["H6213"]],[13,14,["H4941"]]]},{"k":16992,"v":[[0,2,["H1870"]],[2,4,["H376"]],[4,6,["H2019"]],[6,8,["H2054"]],[8,13,["H2134"]],[13,15,["H6467"]],[15,17,["H3477"]]]},{"k":16993,"v":[[0,3,["H2896"]],[3,5,["H3427"]],[5,6,["H5921"]],[6,8,["H6438"]],[8,11,["H1406"]],[11,15,["H4079"]],[15,16,["H4480","H802"]],[16,19,["H2267"]],[19,20,["H1004"]]]},{"k":16994,"v":[[0,2,["H5315"]],[2,5,["H7563"]],[5,6,["H183"]],[6,7,["H7451"]],[7,9,["H7453"]],[9,11,["H3808"]],[11,12,["H2603"]],[12,15,["H5869"]]]},{"k":16995,"v":[[0,3,["H3887"]],[3,5,["H6064"]],[5,7,["H6612"]],[7,10,["H2449"]],[10,14,["H2450"]],[14,16,["H7919"]],[16,18,["H3947"]],[18,19,["H1847"]]]},{"k":16996,"v":[[0,2,["H6662"]],[2,5,["H7919"]],[5,7,["H1004"]],[7,10,["H7563"]],[10,13,["H5557"]],[13,15,["H7563"]],[15,18,["H7451"]]]},{"k":16997,"v":[[0,2,["H331"]],[2,4,["H241"]],[4,7,["H4480","H2201"]],[7,10,["H1800"]],[10,12,["H1571"]],[12,14,["H7121"]],[14,15,["H1931"]],[15,18,["H3808"]],[18,20,["H6030"]]]},{"k":16998,"v":[[0,2,["H4976"]],[2,4,["H5643"]],[4,5,["H3711"]],[5,6,["H639"]],[6,9,["H7810"]],[9,12,["H2436"]],[12,13,["H5794"]],[13,14,["H2534"]]]},{"k":16999,"v":[[0,3,["H8057"]],[3,6,["H6662"]],[6,8,["H6213"]],[8,9,["H4941"]],[9,11,["H4288"]],[11,16,["H6466"]],[16,18,["H205"]]]},{"k":17000,"v":[[0,2,["H120"]],[2,4,["H8582"]],[4,8,["H4480","H1870"]],[8,10,["H7919"]],[10,12,["H5117"]],[12,15,["H6951"]],[15,18,["H7496"]]]},{"k":17001,"v":[[0,3,["H157"]],[3,4,["H8057"]],[4,8,["H4270"]],[8,9,["H376"]],[9,12,["H157"]],[12,13,["H3196"]],[13,15,["H8081"]],[15,17,["H3808"]],[17,19,["H6238"]]]},{"k":17002,"v":[[0,2,["H7563"]],[2,6,["H3724"]],[6,9,["H6662"]],[9,12,["H898"]],[12,13,["H8478"]],[13,15,["H3477"]]]},{"k":17003,"v":[[0,3,["H2896"]],[3,5,["H3427"]],[5,8,["H776","H4057"]],[8,12,["H4079"]],[12,15,["H3708"]],[15,16,["H4480","H802"]]]},{"k":17004,"v":[[0,3,["H214"]],[3,6,["H2530"]],[6,8,["H8081"]],[8,11,["H5116"]],[11,14,["H2450"]],[14,17,["H3684"]],[17,18,["H120"]],[18,21,["H1104"]]]},{"k":17005,"v":[[0,3,["H7291"]],[3,5,["H6666"]],[5,7,["H2617"]],[7,8,["H4672"]],[8,9,["H2416"]],[9,10,["H6666"]],[10,12,["H3519"]]]},{"k":17006,"v":[[0,2,["H2450"]],[2,4,["H5927"]],[4,6,["H5892"]],[6,9,["H1368"]],[9,12,["H3381"]],[12,14,["H5797"]],[14,17,["H4009"]],[17,18,[]]]},{"k":17007,"v":[[0,2,["H8104"]],[2,4,["H6310"]],[4,7,["H3956"]],[7,8,["H8104"]],[8,10,["H5315"]],[10,12,["H4480","H6869"]]]},{"k":17008,"v":[[0,1,["H2086"]],[1,3,["H3093"]],[3,4,["H3887"]],[4,7,["H8034"]],[7,9,["H6213"]],[9,11,["H2087"]],[11,12,["H5678"]]]},{"k":17009,"v":[[0,2,["H8378"]],[2,5,["H6102"]],[5,6,["H4191"]],[6,8,["H3588"]],[8,10,["H3027"]],[10,11,["H3985"]],[11,13,["H6213"]]]},{"k":17010,"v":[[0,2,["H183"]],[2,3,["H8378"]],[3,4,["H3605"]],[4,6,["H3117"]],[6,10,["H6662"]],[10,11,["H5414"]],[11,13,["H2820"]],[13,14,["H3808"]]]},{"k":17011,"v":[[0,2,["H2077"]],[2,5,["H7563"]],[5,7,["H8441"]],[7,10,["H637","H3588"]],[10,13,["H935"]],[13,18,["H2154"]]]},{"k":17012,"v":[[0,2,["H3577"]],[2,3,["H5707"]],[3,5,["H6"]],[5,8,["H376"]],[8,10,["H8085"]],[10,11,["H1696"]],[11,12,["H5331"]]]},{"k":17013,"v":[[0,2,["H7563"]],[2,3,["H376"]],[3,4,["H5810"]],[4,6,["H6440"]],[6,11,["H3477"]],[11,12,["H1931"]],[12,13,["H995"]],[13,15,["H1870"]]]},{"k":17014,"v":[[0,3,["H369"]],[3,4,["H2451"]],[4,5,["H369"]],[5,6,["H8394"]],[6,7,["H369"]],[7,8,["H6098"]],[8,9,["H5048"]],[9,11,["H3068"]]]},{"k":17015,"v":[[0,2,["H5483"]],[2,4,["H3559"]],[4,7,["H3117"]],[7,9,["H4421"]],[9,11,["H8668"]],[11,15,["H3068"]]]},{"k":17016,"v":[[0,3,["H8034"]],[3,8,["H977"]],[8,10,["H7227"]],[10,11,["H4480","H6239"]],[11,13,["H2896"]],[13,14,["H2580"]],[14,17,["H4480","H3701"]],[17,19,["H4480","H2091"]]]},{"k":17017,"v":[[0,2,["H6223"]],[2,4,["H7326"]],[4,6,["H6298"]],[6,8,["H3068"]],[8,11,["H6213"]],[11,14,["H3605"]]]},{"k":17018,"v":[[0,2,["H6175"]],[2,4,["H7200"]],[4,6,["H7451"]],[6,9,["H5641"]],[9,12,["H6612"]],[12,14,["H5674"]],[14,17,["H6064"]]]},{"k":17019,"v":[[0,1,["H6118"]],[1,2,["H6038"]],[2,5,["H3374"]],[5,8,["H3068"]],[8,10,["H6239"]],[10,12,["H3519"]],[12,14,["H2416"]]]},{"k":17020,"v":[[0,1,["H6791"]],[1,3,["H6341"]],[3,7,["H1870"]],[7,10,["H6141"]],[10,14,["H8104"]],[14,16,["H5315"]],[16,19,["H7368"]],[19,20,["H4480"]],[20,21,[]]]},{"k":17021,"v":[[0,2,["H2596"]],[2,4,["H5288"]],[4,5,["H5921"]],[5,7,["H1870"]],[7,10,["H6310"]],[10,11,["H1571"]],[11,12,["H3588"]],[12,15,["H2204"]],[15,18,["H3808"]],[18,19,["H5493"]],[19,20,["H4480"]],[20,21,[]]]},{"k":17022,"v":[[0,2,["H6223"]],[2,3,["H4910"]],[3,6,["H7326"]],[6,9,["H3867"]],[9,11,["H5650"]],[11,14,["H376","H3867"]]]},{"k":17023,"v":[[0,3,["H2232"]],[3,4,["H5766"]],[4,6,["H7114"]],[6,7,["H205"]],[7,10,["H7626"]],[10,13,["H5678"]],[13,15,["H3615"]]]},{"k":17024,"v":[[0,1,["H1931"]],[1,5,["H2896"]],[5,6,["H5869"]],[6,9,["H1288"]],[9,10,["H3588"]],[10,12,["H5414"]],[12,15,["H4480","H3899"]],[15,18,["H1800"]]]},{"k":17025,"v":[[0,2,["H1644"]],[2,4,["H3887"]],[4,6,["H4066"]],[6,9,["H3318"]],[9,11,["H1779"]],[11,13,["H7036"]],[13,15,["H7673"]]]},{"k":17026,"v":[[0,3,["H157"]],[3,4,["H2890"]],[4,6,["H3820"]],[6,9,["H2580"]],[9,12,["H8193"]],[12,14,["H4428"]],[14,18,["H7453"]]]},{"k":17027,"v":[[0,2,["H5869"]],[2,5,["H3068"]],[5,6,["H5341"]],[6,7,["H1847"]],[7,10,["H5557"]],[10,12,["H1697"]],[12,15,["H898"]]]},{"k":17028,"v":[[0,2,["H6102"]],[2,4,["H559"]],[4,8,["H738"]],[8,9,["H2351"]],[9,13,["H7523"]],[13,14,["H8432"]],[14,16,["H7339"]]]},{"k":17029,"v":[[0,2,["H6310"]],[2,5,["H2114"]],[5,8,["H6013"]],[8,9,["H7745"]],[9,13,["H2194"]],[13,16,["H3068"]],[16,18,["H5307"]],[18,19,["H8033"]]]},{"k":17030,"v":[[0,1,["H200"]],[1,3,["H7194"]],[3,6,["H3820"]],[6,9,["H5288"]],[9,12,["H7626"]],[12,14,["H4148"]],[14,18,["H7368"]],[18,19,["H4480"]],[19,20,[]]]},{"k":17031,"v":[[0,3,["H6231"]],[3,5,["H1800"]],[5,7,["H7235"]],[7,13,["H5414"]],[13,16,["H6223"]],[16,18,["H389"]],[18,21,["H4270"]]]},{"k":17032,"v":[[0,2,["H5186"]],[2,4,["H241"]],[4,6,["H8085"]],[6,8,["H1697"]],[8,11,["H2450"]],[11,13,["H7896"]],[13,15,["H3820"]],[15,18,["H1847"]]]},{"k":17033,"v":[[0,1,["H3588"]],[1,5,["H5273"]],[5,7,["H3588"]],[7,9,["H8104"]],[9,11,["H990"]],[11,15,["H3162"]],[15,17,["H3559"]],[17,18,["H5921"]],[18,20,["H8193"]]]},{"k":17034,"v":[[0,3,["H4009"]],[3,5,["H1961"]],[5,8,["H3068"]],[8,12,["H3045"]],[12,16,["H3117"]],[16,17,["H637"]],[17,19,["H859"]]]},{"k":17035,"v":[[0,2,["H3808"]],[2,4,["H3789"]],[4,8,["H7991"]],[8,10,["H4156"]],[10,12,["H1847"]]]},{"k":17036,"v":[[0,6,["H3045"]],[6,8,["H7189"]],[8,11,["H561"]],[11,13,["H571"]],[13,17,["H7725"]],[17,19,["H561"]],[19,21,["H571"]],[21,25,["H7971"]],[25,27,[]]]},{"k":17037,"v":[[0,1,["H1497"]],[1,2,["H408"]],[2,4,["H1800"]],[4,5,["H3588"]],[5,6,["H1931"]],[6,8,["H1800"]],[8,9,["H408"]],[9,10,["H1792"]],[10,12,["H6041"]],[12,15,["H8179"]]]},{"k":17038,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H7378"]],[5,7,["H7379"]],[7,9,["H6906"]],[9,11,["H5315"]],[11,12,["(H853)"]],[12,15,["H6906"]],[15,16,[]]]},{"k":17039,"v":[[0,2,["H408"]],[2,3,["H7462"]],[3,4,["H854"]],[4,6,["H639"]],[6,7,["H1167"]],[7,9,["H854"]],[9,11,["H2534"]],[11,12,["H376"]],[12,15,["H3808"]],[15,16,["H935"]]]},{"k":17040,"v":[[0,1,["H6435"]],[1,3,["H502"]],[3,5,["H734"]],[5,7,["H3947"]],[7,9,["H4170"]],[9,12,["H5315"]]]},{"k":17041,"v":[[0,1,["H1961"]],[1,2,["H408"]],[2,8,["H8628"]],[8,9,["H3709"]],[9,15,["H6148"]],[15,17,["H4859"]]]},{"k":17042,"v":[[0,1,["H518"]],[1,4,["H369"]],[4,6,["H7999"]],[6,7,["H4100"]],[7,11,["H3947"]],[11,13,["H4904"]],[13,15,["H4480","H8478"]],[15,16,[]]]},{"k":17043,"v":[[0,1,["H5253"]],[1,2,["H408"]],[2,4,["H5769"]],[4,5,["H1366"]],[5,6,["H834"]],[6,8,["H1"]],[8,10,["H6213"]]]},{"k":17044,"v":[[0,1,["H2372"]],[1,4,["H376"]],[4,5,["H4106"]],[5,8,["H4399"]],[8,11,["H3320"]],[11,12,["H6440"]],[12,13,["H4428"]],[13,16,["H1077"]],[16,17,["H3320"]],[17,18,["H6440"]],[18,19,["H2823"]],[19,20,[]]]},{"k":17045,"v":[[0,1,["H3588"]],[1,3,["H3427"]],[3,5,["H3898"]],[5,6,["H854"]],[6,8,["H4910"]],[8,10,["H995","H995","(H853)"]],[10,11,["H834"]],[11,13,["H6440"]],[13,14,[]]]},{"k":17046,"v":[[0,2,["H7760"]],[2,4,["H7915"]],[4,7,["H3930"]],[7,8,["H518"]],[8,9,["H859"]],[9,12,["H1167"]],[12,15,["H5315"]]]},{"k":17047,"v":[[0,2,["H408"]],[2,3,["H183"]],[3,6,["H4303"]],[6,8,["H1931"]],[8,10,["H3577"]],[10,11,["H3899"]]]},{"k":17048,"v":[[0,1,["H3021"]],[1,2,["H408"]],[2,5,["H6238"]],[5,6,["H2308"]],[6,7,["H4480"]],[7,10,["H998"]]]},{"k":17049,"v":[[0,3,["H5774"]],[3,5,["H5869"]],[5,10,["H369"]],[10,11,["H3588"]],[11,14,["H6213","H6213"]],[14,16,["H3671"]],[16,19,["H5774"]],[19,22,["H5404"]],[22,24,["H8064"]]]},{"k":17050,"v":[[0,1,["H3898"]],[1,3,["H408","(H853)"]],[3,5,["H3899"]],[5,11,["H7451"]],[11,12,["H5869"]],[12,13,["H408"]],[13,14,["H183"]],[14,18,["H4303"]]]},{"k":17051,"v":[[0,1,["H3588"]],[1,2,["H3644"]],[2,4,["H8176"]],[4,7,["H5315"]],[7,8,["H3651"]],[8,10,["H1931"]],[10,11,["H398"]],[11,13,["H8354"]],[13,14,["H559"]],[14,20,["H3820"]],[20,22,["H1077"]],[22,24,["H5973"]]]},{"k":17052,"v":[[0,2,["H6595"]],[2,6,["H398"]],[6,10,["H6958"]],[10,12,["H7843"]],[12,14,["H5273"]],[14,15,["H1697"]]]},{"k":17053,"v":[[0,1,["H1696"]],[1,2,["H408"]],[2,5,["H241"]],[5,8,["H3684"]],[8,9,["H3588"]],[9,12,["H936"]],[12,14,["H7922"]],[14,17,["H4405"]]]},{"k":17054,"v":[[0,1,["H5253"]],[1,2,["H408"]],[2,4,["H5769"]],[4,5,["H1366"]],[5,7,["H935"]],[7,8,["H408"]],[8,11,["H7704"]],[11,14,["H3490"]]]},{"k":17055,"v":[[0,1,["H3588"]],[1,3,["H1350"]],[3,5,["H2389"]],[5,6,["H1931"]],[6,8,["H7378","(H853)"]],[8,10,["H7379"]],[10,11,["H854"]],[11,12,[]]]},{"k":17056,"v":[[0,1,["H935"]],[1,3,["H3820"]],[3,5,["H4148"]],[5,8,["H241"]],[8,11,["H561"]],[11,13,["H1847"]]]},{"k":17057,"v":[[0,1,["H4513"]],[1,2,["H408"]],[2,3,["H4148"]],[3,6,["H4480","H5288"]],[6,7,["H3588"]],[7,10,["H5221"]],[10,14,["H7626"]],[14,17,["H3808"]],[17,18,["H4191"]]]},{"k":17058,"v":[[0,1,["H859"]],[1,3,["H5221"]],[3,7,["H7626"]],[7,10,["H5337"]],[10,12,["H5315"]],[12,14,["H4480","H7585"]]]},{"k":17059,"v":[[0,2,["H1121"]],[2,3,["H518"]],[3,5,["H3820"]],[5,7,["H2449"]],[7,9,["H3820"]],[9,11,["H8055"]],[11,12,["H1571"]],[12,13,["H589"]]]},{"k":17060,"v":[[0,3,["H3629"]],[3,5,["H5937"]],[5,8,["H8193"]],[8,9,["H1696"]],[9,11,["H4339"]]]},{"k":17061,"v":[[0,2,["H408"]],[2,4,["H3820"]],[4,5,["H7065"]],[5,6,["H2400"]],[6,7,["H3588"]],[7,12,["H3374"]],[12,15,["H3068"]],[15,16,["H3605"]],[16,18,["H3117"]],[18,19,[]]]},{"k":17062,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,4,["H3426"]],[4,6,["H319"]],[6,9,["H8615"]],[9,11,["H3808"]],[11,14,["H3772"]]]},{"k":17063,"v":[[0,1,["H8085"]],[1,2,["H859"]],[2,4,["H1121"]],[4,7,["H2449"]],[7,9,["H833"]],[9,11,["H3820"]],[11,14,["H1870"]]]},{"k":17064,"v":[[0,1,["H1961"]],[1,2,["H408"]],[2,4,["H5433","H3196"]],[4,7,["H2151"]],[7,9,["H1320"]]]},{"k":17065,"v":[[0,1,["H3588"]],[1,3,["H5433"]],[3,6,["H2151"]],[6,10,["H3423"]],[10,12,["H5124"]],[12,14,["H3847"]],[14,18,["H7168"]]]},{"k":17066,"v":[[0,1,["H8085"]],[1,4,["H1"]],[4,5,["H2088"]],[5,6,["H3205"]],[6,9,["H936"]],[9,10,["H408"]],[10,12,["H517"]],[12,13,["H3588"]],[13,16,["H2204"]]]},{"k":17067,"v":[[0,1,["H7069"]],[1,3,["H571"]],[3,5,["H4376"]],[5,7,["H408"]],[7,9,["H2451"]],[9,11,["H4148"]],[11,13,["H998"]]]},{"k":17068,"v":[[0,2,["H1"]],[2,5,["H6662"]],[5,8,["H1523","H1523"]],[8,12,["H3205"]],[12,14,["H2450"]],[14,18,["H8055"]],[18,20,[]]]},{"k":17069,"v":[[0,2,["H1"]],[2,5,["H517"]],[5,8,["H8055"]],[8,12,["H3205"]],[12,15,["H1523"]]]},{"k":17070,"v":[[0,2,["H1121"]],[2,3,["H5414"]],[3,6,["H3820"]],[6,10,["H5869"]],[10,11,["H5341"]],[11,13,["H1870"]]]},{"k":17071,"v":[[0,1,["H3588"]],[1,3,["H2181"]],[3,6,["H6013"]],[6,7,["H7745"]],[7,10,["H5237"]],[10,14,["H6862"]],[14,15,["H875"]]]},{"k":17072,"v":[[0,1,["H1931"]],[1,2,["H637"]],[2,5,["H693"]],[5,9,["H2863"]],[9,11,["H3254"]],[11,13,["H898"]],[13,15,["H120"]]]},{"k":17073,"v":[[0,1,["H4310"]],[1,3,["H188"]],[3,4,["H4310"]],[4,6,["H17"]],[6,7,["H4310"]],[7,9,["H4079"]],[9,10,["H4310"]],[10,12,["H7879"]],[12,13,["H4310"]],[13,15,["H6482"]],[15,17,["H2600"]],[17,18,["H4310"]],[18,20,["H2448"]],[20,22,["H5869"]]]},{"k":17074,"v":[[0,4,["H309"]],[4,5,["H5921"]],[5,7,["H3196"]],[7,10,["H935"]],[10,12,["H2713"]],[12,14,["H4469"]]]},{"k":17075,"v":[[0,1,["H7200"]],[1,2,["H408"]],[2,6,["H3196"]],[6,7,["H3588"]],[7,10,["H119"]],[10,11,["H3588"]],[11,13,["H5414"]],[13,15,["H5869"]],[15,18,["H3563"]],[18,22,["H1980"]],[22,23,["H4339"]]]},{"k":17076,"v":[[0,3,["H319"]],[3,5,["H5391"]],[5,8,["H5175"]],[8,10,["H6567"]],[10,13,["H6848"]]]},{"k":17077,"v":[[0,2,["H5869"]],[2,4,["H7200"]],[4,6,["H2114"]],[6,9,["H3820"]],[9,11,["H1696"]],[11,13,["H8419"]]]},{"k":17078,"v":[[0,4,["H1961"]],[4,9,["H7901"]],[9,12,["H3820"]],[12,15,["H3220"]],[15,20,["H7901"]],[20,23,["H7218"]],[23,26,["H2260"]]]},{"k":17079,"v":[[0,3,["H5221"]],[3,11,["H1077"]],[11,12,["H2470"]],[12,15,["H1986"]],[15,19,["H3045"]],[19,21,["H1077"]],[21,22,["H4970"]],[22,25,["H6974"]],[25,28,["H1245"]],[28,30,["H3254"]],[30,31,["H5750"]]]},{"k":17080,"v":[[0,2,["H408"]],[2,4,["H7065"]],[4,6,["H7451"]],[6,7,["H376"]],[7,8,["H408"]],[8,9,["H183"]],[9,11,["H1961"]],[11,12,["H854"]],[12,13,[]]]},{"k":17081,"v":[[0,1,["H3588"]],[1,3,["H3820"]],[3,4,["H1897"]],[4,5,["H7701"]],[5,8,["H8193"]],[8,9,["H1696"]],[9,11,["H5999"]]]},{"k":17082,"v":[[0,2,["H2451"]],[2,5,["H1004"]],[5,6,["H1129"]],[6,9,["H8394"]],[9,12,["H3559"]]]},{"k":17083,"v":[[0,3,["H1847"]],[3,6,["H2315"]],[6,8,["H4390"]],[8,10,["H3605"]],[10,11,["H3368"]],[11,13,["H5273"]],[13,14,["H1952"]]]},{"k":17084,"v":[[0,2,["H2450"]],[2,3,["H1397"]],[3,5,["H5797"]],[5,8,["H376"]],[8,10,["H1847"]],[10,11,["H553"]],[11,12,["H3581"]]]},{"k":17085,"v":[[0,1,["H3588"]],[1,4,["H8458"]],[4,7,["H6213"]],[7,9,["H4421"]],[9,12,["H7230"]],[12,14,["H3289"]],[14,17,["H8668"]]]},{"k":17086,"v":[[0,1,["H2454"]],[1,4,["H7311"]],[4,7,["H191"]],[7,9,["H6605"]],[9,10,["H3808"]],[10,12,["H6310"]],[12,15,["H8179"]]]},{"k":17087,"v":[[0,3,["H2803"]],[3,6,["H7489"]],[6,9,["H7121"]],[9,11,["H4209"]],[11,12,["H1167"]]]},{"k":17088,"v":[[0,2,["H2154"]],[2,4,["H200"]],[4,6,["H2403"]],[6,9,["H3887"]],[9,12,["H8441"]],[12,14,["H120"]]]},{"k":17089,"v":[[0,3,["H7503"]],[3,6,["H3117"]],[6,8,["H6869"]],[8,10,["H3581"]],[10,12,["H6862"]]]},{"k":17090,"v":[[0,1,["H518"]],[1,3,["H2820"]],[3,5,["H5337"]],[5,9,["H3947"]],[9,11,["H4194"]],[11,16,["H4131"]],[16,19,["H2027"]]]},{"k":17091,"v":[[0,1,["H3588"]],[1,3,["H559"]],[3,4,["H2005"]],[4,6,["H3045"]],[6,7,["H2088"]],[7,8,["H3808"]],[8,10,["H3808"]],[10,13,["H8505"]],[13,15,["H3820"]],[15,16,["H995"]],[16,21,["H5341"]],[21,23,["H5315"]],[23,26,["H1931"]],[26,27,["H3045"]],[27,33,["H7725"]],[33,36,["H120"]],[36,40,["H6467"]]]},{"k":17092,"v":[[0,2,["H1121"]],[2,3,["H398"]],[3,5,["H1706"]],[5,6,["H3588"]],[6,9,["H2896"]],[9,12,["H5317"]],[12,15,["H4966"]],[15,16,["H5921"]],[16,18,["H2441"]]]},{"k":17093,"v":[[0,1,["H3651"]],[1,4,["H3045"]],[4,6,["H2451"]],[6,10,["H5315"]],[10,11,["H518"]],[11,14,["H4672"]],[14,19,["H3426"]],[19,21,["H319"]],[21,24,["H8615"]],[24,26,["H3808"]],[26,29,["H3772"]]]},{"k":17094,"v":[[0,3,["H408","H693"]],[3,5,["H7563"]],[5,9,["H5116"]],[9,12,["H6662"]],[12,13,["H7703"]],[13,14,["H408"]],[14,17,["H7258"]]]},{"k":17095,"v":[[0,1,["H3588"]],[1,3,["H6662"]],[3,5,["H5307"]],[5,6,["H7651"]],[6,11,["H6965"]],[11,14,["H7563"]],[14,16,["H3782"]],[16,18,["H7451"]]]},{"k":17096,"v":[[0,1,["H8055"]],[1,2,["H408"]],[2,5,["H341"]],[5,6,["H5307"]],[6,9,["H408"]],[9,11,["H3820"]],[11,13,["H1523"]],[13,16,["H3782"]]]},{"k":17097,"v":[[0,1,["H6435"]],[1,3,["H3068"]],[3,4,["H7200"]],[4,8,["H7489","H5869"]],[8,13,["H7725"]],[13,15,["H639"]],[15,16,["H4480","H5921"]],[16,17,[]]]},{"k":17098,"v":[[0,3,["H408","H2734"]],[3,6,["H7489"]],[6,8,["H408"]],[8,11,["H7065"]],[11,14,["H7563"]]]},{"k":17099,"v":[[0,1,["H3588"]],[1,4,["H1961"]],[4,5,["H3808"]],[5,6,["H319"]],[6,9,["H7451"]],[9,12,["H5216"]],[12,15,["H7563"]],[15,19,["H1846"]]]},{"k":17100,"v":[[0,2,["H1121"]],[2,3,["H3372"]],[3,4,["(H853)"]],[4,6,["H3068"]],[6,9,["H4428"]],[9,11,["H6148"]],[11,12,["H408"]],[12,13,["H5973"]],[13,19,["H8138"]]]},{"k":17101,"v":[[0,1,["H3588"]],[1,3,["H343"]],[3,5,["H6965"]],[5,6,["H6597"]],[6,8,["H4310"]],[8,9,["H3045"]],[9,11,["H6365"]],[11,14,["H8147"]]]},{"k":17102,"v":[[0,1,["H428"]],[1,3,["H1571"]],[3,7,["H2450"]],[7,10,["H1077"]],[10,11,["H2896"]],[11,14,["H5234"]],[14,16,["H6440"]],[16,18,["H4941"]]]},{"k":17103,"v":[[0,3,["H559"]],[3,6,["H7563"]],[6,7,["H859"]],[7,9,["H6662"]],[9,13,["H5971"]],[13,14,["H5344"]],[14,15,["H3816"]],[15,17,["H2194"]],[17,18,[]]]},{"k":17104,"v":[[0,5,["H3198"]],[5,9,["H5276"]],[9,12,["H2896"]],[12,13,["H1293"]],[13,15,["H935"]],[15,16,["H5921"]],[16,17,[]]]},{"k":17105,"v":[[0,4,["H5401"]],[4,6,["H8193"]],[6,8,["H7725"]],[8,10,["H5228"]],[10,11,["H1697"]]]},{"k":17106,"v":[[0,1,["H3559"]],[1,3,["H4399"]],[3,4,["H2351"]],[4,8,["H6257"]],[8,13,["H7704"]],[13,15,["H310"]],[15,16,["H1129"]],[16,18,["H1004"]]]},{"k":17107,"v":[[0,1,["H1961"]],[1,2,["H408"]],[2,4,["H5707"]],[4,7,["H7453"]],[7,9,["H2600"]],[9,11,["H6601"]],[11,15,["H8193"]]]},{"k":17108,"v":[[0,1,["H559"]],[1,2,["H408"]],[2,5,["H6213"]],[5,6,["H3651"]],[6,9,["H834"]],[9,12,["H6213"]],[12,17,["H7725"]],[17,20,["H376"]],[20,24,["H6467"]]]},{"k":17109,"v":[[0,2,["H5674"]],[2,3,["H5921"]],[3,5,["H7704"]],[5,8,["H6102","H376"]],[8,10,["H5921"]],[10,12,["H3754"]],[12,15,["H120"]],[15,16,["H2638"]],[16,18,["H3820"]]]},{"k":17110,"v":[[0,2,["H2009"]],[2,5,["H3605"]],[5,7,["H5927"]],[7,9,["H7063"]],[9,11,["H2738"]],[11,13,["H3680"]],[13,15,["H6440"]],[15,19,["H68"]],[19,20,["H1444"]],[20,24,["H2040"]]]},{"k":17111,"v":[[0,2,["H595"]],[2,3,["H2372"]],[3,7,["H7896","H3820"]],[7,9,["H7200"]],[9,13,["H3947"]],[13,14,["H4148"]]]},{"k":17112,"v":[[0,3,["H4592"]],[3,4,["H8142"]],[4,6,["H4592"]],[6,7,["H8572"]],[7,9,["H4592"]],[9,10,["H2264"]],[10,13,["H3027"]],[13,15,["H7901"]]]},{"k":17113,"v":[[0,4,["H7389"]],[4,5,["H935"]],[5,9,["H1980"]],[9,12,["H4270"]],[12,15,["H4043"]],[15,16,["H376"]]]},{"k":17114,"v":[[0,1,["H428"]],[1,3,["H1571"]],[3,4,["H4912"]],[4,6,["H8010"]],[6,7,["H834"]],[7,9,["H376"]],[9,11,["H2396"]],[11,12,["H4428"]],[12,14,["H3063"]],[14,16,["H6275"]]]},{"k":17115,"v":[[0,4,["H3519"]],[4,6,["H430"]],[6,8,["H5641"]],[8,10,["H1697"]],[10,13,["H3519"]],[13,15,["H4428"]],[15,19,["H2713"]],[19,21,["H1697"]]]},{"k":17116,"v":[[0,2,["H8064"]],[2,4,["H7312"]],[4,7,["H776"]],[7,9,["H6011"]],[9,12,["H3820"]],[12,14,["H4428"]],[14,16,["H369","H2714"]]]},{"k":17117,"v":[[0,2,["H1898"]],[2,4,["H5509"]],[4,7,["H4480","H3701"]],[7,12,["H3318"]],[12,14,["H3627"]],[14,17,["H6884"]]]},{"k":17118,"v":[[0,2,["H1898"]],[2,4,["H7563"]],[4,6,["H6440"]],[6,8,["H4428"]],[8,11,["H3678"]],[11,14,["H3559"]],[14,16,["H6664"]]]},{"k":17119,"v":[[0,4,["H408","H1921"]],[4,7,["H6440"]],[7,10,["H4428"]],[10,12,["H5975"]],[12,13,["H408"]],[13,16,["H4725"]],[16,18,["H1419"]],[18,19,[]]]},{"k":17120,"v":[[0,1,["H3588"]],[1,2,["H2896"]],[2,8,["H559"]],[8,12,["H5927"]],[12,13,["H2008"]],[13,20,["H4480","H8213"]],[20,23,["H6440"]],[23,26,["H5081"]],[26,27,["H834"]],[27,29,["H5869"]],[29,31,["H7200"]]]},{"k":17121,"v":[[0,3,["H3318","H408"]],[3,4,["H4118"]],[4,6,["H7378"]],[6,7,["H6435"]],[7,11,["H4100"]],[11,13,["H6213"]],[13,16,["H319"]],[16,20,["H7453"]],[20,25,["H3637","(H853)"]]]},{"k":17122,"v":[[0,1,["H7378"]],[1,3,["H7379"]],[3,4,["H854"]],[4,6,["H7453"]],[6,9,["H1540"]],[9,10,["H408"]],[10,12,["H5475"]],[12,14,["H312"]]]},{"k":17123,"v":[[0,1,["H6435"]],[1,4,["H8085"]],[4,9,["H2616"]],[9,12,["H1681"]],[12,15,["H3808","H7725"]]]},{"k":17124,"v":[[0,2,["H1697"]],[2,3,["H5921","H655"]],[3,4,["H1696"]],[4,7,["H8598"]],[7,9,["H2091"]],[9,11,["H4906"]],[11,13,["H3701"]]]},{"k":17125,"v":[[0,3,["H5141"]],[3,5,["H2091"]],[5,8,["H2481"]],[8,11,["H3800"]],[11,15,["H2450"]],[15,16,["H3198"]],[16,17,["H5921"]],[17,19,["H8085"]],[19,20,["H241"]]]},{"k":17126,"v":[[0,3,["H6793"]],[3,5,["H7950"]],[5,8,["H3117"]],[8,10,["H7105"]],[10,14,["H539"]],[14,15,["H6735"]],[15,19,["H7971"]],[19,23,["H7725"]],[23,25,["H5315"]],[25,28,["H113"]]]},{"k":17127,"v":[[0,1,["H376"]],[1,3,["H1984"]],[3,6,["H8267"]],[6,7,["H4991"]],[7,10,["H5387"]],[10,12,["H7307"]],[12,13,["H369"]],[13,14,["H1653"]]]},{"k":17128,"v":[[0,2,["H753"]],[2,3,["H639"]],[3,6,["H7101"]],[6,7,["H6601"]],[7,10,["H7390"]],[10,11,["H3956"]],[11,12,["H7665"]],[12,14,["H1634"]]]},{"k":17129,"v":[[0,3,["H4672"]],[3,4,["H1706"]],[4,5,["H398"]],[5,10,["H1767"]],[10,13,["H6435"]],[13,16,["H7646"]],[16,19,["H6958"]],[19,20,[]]]},{"k":17130,"v":[[0,1,["H3365"]],[1,3,["H7272"]],[3,6,["H7453"]],[6,7,["H4480","H1004"]],[7,8,["H6435"]],[8,11,["H7646"]],[11,16,["H8130"]],[16,17,[]]]},{"k":17131,"v":[[0,2,["H376"]],[2,4,["H6030"]],[4,5,["H8267"]],[5,6,["H5707"]],[6,9,["H7453"]],[9,12,["H4650"]],[12,15,["H2719"]],[15,18,["H8150"]],[18,19,["H2671"]]]},{"k":17132,"v":[[0,1,["H4009"]],[1,5,["H898"]],[5,7,["H3117"]],[7,9,["H6869"]],[9,13,["H7465"]],[13,14,["H8127"]],[14,17,["H7272"]],[17,20,["H4154"]]]},{"k":17133,"v":[[0,5,["H5710"]],[5,7,["H899"]],[7,9,["H7135"]],[9,10,["H3117"]],[10,13,["H2558"]],[13,14,["H5921"]],[14,15,["H5427"]],[15,20,["H7891"]],[20,21,["H7892"]],[21,22,["H5921"]],[22,24,["H7451"]],[24,25,["H3820"]]]},{"k":17134,"v":[[0,1,["H518"]],[1,3,["H8130"]],[3,5,["H7457"]],[5,8,["H3899"]],[8,10,["H398"]],[10,12,["H518"]],[12,15,["H6771"]],[15,18,["H4325"]],[18,20,["H8248"]]]},{"k":17135,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H2846"]],[4,7,["H1513"]],[7,8,["H5921"]],[8,10,["H7218"]],[10,13,["H3068"]],[13,15,["H7999"]],[15,16,[]]]},{"k":17136,"v":[[0,2,["H6828"]],[2,3,["H7307"]],[3,5,["H2342"]],[5,6,["H1653"]],[6,10,["H2194"]],[10,11,["H6440"]],[11,13,["H5643"]],[13,14,["H3956"]]]},{"k":17137,"v":[[0,3,["H2896"]],[3,5,["H3427"]],[5,6,["H5921"]],[6,8,["H6438"]],[8,11,["H1406"]],[11,16,["H4480","H802","H4079"]],[16,20,["H2267"]],[20,21,["H1004"]]]},{"k":17138,"v":[[0,2,["H7119"]],[2,3,["H4325"]],[3,4,["H5921"]],[4,6,["H5889"]],[6,7,["H5315"]],[7,10,["H2896"]],[10,11,["H8052"]],[11,15,["H4480","H776","H4801"]]]},{"k":17139,"v":[[0,2,["H6662"]],[2,5,["H4131"]],[5,6,["H6440"]],[6,8,["H7563"]],[8,12,["H7515"]],[12,13,["H4599"]],[13,16,["H7843"]],[16,17,["H4726"]]]},{"k":17140,"v":[[0,3,["H3808"]],[3,4,["H2896"]],[4,6,["H398"]],[6,7,["H7235"]],[7,8,["H1706"]],[8,13,["H2714"]],[13,16,["H3519"]],[16,19,["H3519"]]]},{"k":17141,"v":[[0,1,["H376"]],[1,2,["H834"]],[2,4,["H369"]],[4,6,["H4623"]],[6,9,["H7307"]],[9,13,["H5892"]],[13,17,["H6555"]],[17,19,["H369"]],[19,20,["H2346"]]]},{"k":17142,"v":[[0,2,["H7950"]],[2,4,["H7019"]],[4,7,["H4306"]],[7,9,["H7105"]],[9,10,["H3651"]],[10,11,["H3519"]],[11,13,["H3808"]],[13,14,["H5000"]],[14,17,["H3684"]]]},{"k":17143,"v":[[0,3,["H6833"]],[3,5,["H5110"]],[5,8,["H1866"]],[8,10,["H5774"]],[10,11,["H3651"]],[11,13,["H7045"]],[13,14,["H2600"]],[14,16,["H3808"]],[16,17,["H935"]]]},{"k":17144,"v":[[0,2,["H7752"]],[2,5,["H5483"]],[5,7,["H4964"]],[7,10,["H2543"]],[10,13,["H7626"]],[13,16,["H3684"]],[16,17,["H1460"]]]},{"k":17145,"v":[[0,1,["H6030"]],[1,2,["H408"]],[2,4,["H3684"]],[4,8,["H200"]],[8,9,["H6435"]],[9,10,["H859"]],[10,11,["H1571"]],[11,13,["H7737"]],[13,15,[]]]},{"k":17146,"v":[[0,1,["H6030"]],[1,3,["H3684"]],[3,7,["H200"]],[7,8,["H6435"]],[8,10,["H1961"]],[10,11,["H2450"]],[11,15,["H5869"]]]},{"k":17147,"v":[[0,3,["H7971"]],[3,5,["H1697"]],[5,8,["H3027"]],[8,11,["H3684"]],[11,13,["H7096"]],[13,15,["H7272"]],[15,17,["H8354"]],[17,18,["H2555"]]]},{"k":17148,"v":[[0,2,["H7785"]],[2,5,["H4480","H6455"]],[5,8,["H1809"]],[8,12,["H4912"]],[12,15,["H6310"]],[15,17,["H3684"]]]},{"k":17149,"v":[[0,4,["H6887"]],[4,6,["H68"]],[6,9,["H4773"]],[9,10,["H3651"]],[10,14,["H5414"]],[14,15,["H3519"]],[15,18,["H3684"]]]},{"k":17150,"v":[[0,3,["H2336"]],[3,5,["H5927"]],[5,8,["H3027"]],[8,11,["H7910"]],[11,15,["H4912"]],[15,18,["H6310"]],[18,20,["H3684"]]]},{"k":17151,"v":[[0,2,["H7227"]],[2,5,["H2342"]],[5,6,["H3605"]],[6,9,["H7936"]],[9,11,["H3684"]],[11,13,["H7936"]],[13,14,["H5674"]]]},{"k":17152,"v":[[0,3,["H3611"]],[3,4,["H7725"]],[4,5,["H5921"]],[5,7,["H6892"]],[7,10,["H3684"]],[10,11,["H8138"]],[11,14,["H200"]]]},{"k":17153,"v":[[0,1,["H7200"]],[1,4,["H376"]],[4,5,["H2450"]],[5,9,["H5869"]],[9,13,["H8615"]],[13,16,["H3684"]],[16,18,["H4480"]],[18,19,[]]]},{"k":17154,"v":[[0,2,["H6102"]],[2,4,["H559"]],[4,8,["H7826"]],[8,11,["H1870"]],[11,13,["H738"]],[13,15,["H996"]],[15,17,["H7339"]]]},{"k":17155,"v":[[0,3,["H1817"]],[3,4,["H5437"]],[4,5,["H5921"]],[5,7,["H6735"]],[7,11,["H6102"]],[11,12,["H5921"]],[12,14,["H4296"]]]},{"k":17156,"v":[[0,2,["H6102"]],[2,3,["H2934"]],[3,5,["H3027"]],[5,8,["H6747"]],[8,10,["H3811"]],[10,15,["H7725"]],[15,16,["H413"]],[16,18,["H6310"]]]},{"k":17157,"v":[[0,2,["H6102"]],[2,4,["H2450"]],[4,8,["H5869"]],[8,10,["H4480","H7651"]],[10,14,["H7725"]],[14,16,["H2940"]]]},{"k":17158,"v":[[0,4,["H5674"]],[4,6,["H5674"]],[6,7,["H5921"]],[7,8,["H7379"]],[8,10,["H3808"]],[10,17,["H2388"]],[17,19,["H3611"]],[19,22,["H241"]]]},{"k":17159,"v":[[0,3,["H3856"]],[3,6,["H3384"]],[6,7,["H2131"]],[7,8,["H2671"]],[8,10,["H4194"]]]},{"k":17160,"v":[[0,1,["H3651"]],[1,4,["H376"]],[4,6,["H7411","(H853)"]],[6,8,["H7453"]],[8,10,["H559"]],[10,12,["H3808"]],[12,13,["H589"]],[13,15,["H7832"]]]},{"k":17161,"v":[[0,2,["H657"]],[2,3,["H6086"]],[3,7,["H784"]],[7,9,["H3518"]],[9,14,["H369"]],[14,15,["H5372"]],[15,17,["H4066"]],[17,18,["H8367"]]]},{"k":17162,"v":[[0,2,["H6352"]],[2,6,["H1513"]],[6,8,["H6086"]],[8,10,["H784"]],[10,14,["H4079"]],[14,15,["H376"]],[15,17,["H2787"]],[17,18,["H7379"]]]},{"k":17163,"v":[[0,2,["H1697"]],[2,5,["H5372"]],[5,8,["H3859"]],[8,10,["H1992"]],[10,12,["H3381"]],[12,16,["H2315"]],[16,19,["H990"]]]},{"k":17164,"v":[[0,1,["H1814"]],[1,2,["H8193"]],[2,5,["H7451"]],[5,6,["H3820"]],[6,10,["H2789"]],[10,11,["H6823"]],[11,13,["H3701"]],[13,14,["H5509"]]]},{"k":17165,"v":[[0,3,["H8130"]],[3,4,["H5234"]],[4,7,["H8193"]],[7,10,["H7896"]],[10,11,["H4820"]],[11,12,["H7130"]],[12,13,[]]]},{"k":17166,"v":[[0,1,["H3588"]],[1,3,["H6963"]],[3,4,["H2603"]],[4,5,["H539"]],[5,7,["H408"]],[7,8,["H3588"]],[8,11,["H7651"]],[11,12,["H8441"]],[12,15,["H3820"]]]},{"k":17167,"v":[[0,2,["H8135"]],[2,4,["H3680"]],[4,6,["H4860"]],[6,8,["H7451"]],[8,11,["H1540"]],[11,15,["H6951"]]]},{"k":17168,"v":[[0,2,["H3738"]],[2,4,["H7845"]],[4,6,["H5307"]],[6,11,["H1556"]],[11,13,["H68"]],[13,16,["H7725"]],[16,17,["H413"]],[17,18,[]]]},{"k":17169,"v":[[0,2,["H8267"]],[2,3,["H3956"]],[3,4,["H8130"]],[4,8,["H1790"]],[8,13,["H2509"]],[13,14,["H6310"]],[14,15,["H6213"]],[15,16,["H4072"]]]},{"k":17170,"v":[[0,3,["H408","H1984"]],[3,6,["H3117","H4279"]],[6,7,["H3588"]],[7,9,["H3045"]],[9,10,["H3808"]],[10,11,["H4100"]],[11,13,["H3117"]],[13,16,["H3205"]]]},{"k":17171,"v":[[0,3,["H2114"]],[3,4,["H1984"]],[4,7,["H3808"]],[7,10,["H6310"]],[10,12,["H5237"]],[12,14,["H408"]],[14,17,["H8193"]]]},{"k":17172,"v":[[0,2,["H68"]],[2,4,["H3514"]],[4,7,["H2344"]],[7,8,["H5192"]],[8,11,["H191"]],[11,12,["H3708"]],[12,14,["H3515"]],[14,17,["H4480","H8147"]]]},{"k":17173,"v":[[0,1,["H2534"]],[1,3,["H395"]],[3,5,["H639"]],[5,7,["H7858"]],[7,9,["H4310"]],[9,13,["H5975"]],[13,14,["H6440"]],[14,15,["H7068"]]]},{"k":17174,"v":[[0,1,["H1540"]],[1,2,["H8433"]],[2,4,["H2896"]],[4,6,["H5641"]],[6,7,["H4480","H160"]]]},{"k":17175,"v":[[0,1,["H539"]],[1,4,["H6482"]],[4,7,["H157"]],[7,10,["H5390"]],[10,13,["H8130"]],[13,15,["H6280"]]]},{"k":17176,"v":[[0,2,["H7649"]],[2,3,["H5315"]],[3,4,["H947"]],[4,6,["H5317"]],[6,10,["H7457"]],[10,11,["H5315"]],[11,12,["H3605"]],[12,14,["H4751"]],[14,16,["H4966"]]]},{"k":17177,"v":[[0,3,["H6833"]],[3,5,["H5074"]],[5,6,["H4480"]],[6,8,["H7064"]],[8,9,["H3651"]],[9,12,["H376"]],[12,14,["H5074"]],[14,17,["H4480","H4725"]]]},{"k":17178,"v":[[0,1,["H8081"]],[1,3,["H7004"]],[3,4,["H8055"]],[4,6,["H3820"]],[6,10,["H4986"]],[10,14,["H7453"]],[14,17,["H4480","H6098","H5315"]]]},{"k":17179,"v":[[0,3,["H7453"]],[3,6,["H1"]],[6,7,["H7453"]],[7,8,["H5800"]],[8,9,["H408"]],[9,10,["H408"]],[10,11,["H935"]],[11,14,["H251"]],[14,15,["H1004"]],[15,18,["H3117"]],[18,21,["H343"]],[21,23,["H2896"]],[23,26,["H7934"]],[26,29,["H7138"]],[29,32,["H4480","H251"]],[32,34,["H7350"]]]},{"k":17180,"v":[[0,2,["H1121"]],[2,4,["H2449"]],[4,8,["H3820"]],[8,9,["H8055"]],[9,13,["H7725","H1697"]],[13,16,["H2778"]],[16,17,[]]]},{"k":17181,"v":[[0,2,["H6175"]],[2,4,["H7200"]],[4,6,["H7451"]],[6,9,["H5641"]],[9,12,["H6612"]],[12,14,["H5674"]],[14,17,["H6064"]]]},{"k":17182,"v":[[0,1,["H3947"]],[1,3,["H899"]],[3,4,["H3588"]],[4,6,["H6148"]],[6,9,["H2114"]],[9,13,["H2254"]],[13,16,["H1157"]],[16,19,["H5237"]]]},{"k":17183,"v":[[0,3,["H1288"]],[3,5,["H7453"]],[5,8,["H1419"]],[8,9,["H6963"]],[9,11,["H7925"]],[11,14,["H1242"]],[14,18,["H2803"]],[18,20,["H7045"]],[20,22,[]]]},{"k":17184,"v":[[0,2,["H2956"]],[2,3,["H1812"]],[3,7,["H5464"]],[7,8,["H3117"]],[8,11,["H4079"]],[11,12,["H802"]],[12,14,["H7737"]]]},{"k":17185,"v":[[0,2,["H6845"]],[2,4,["H6845"]],[4,6,["H7307"]],[6,9,["H8081"]],[9,13,["H3225"]],[13,15,["H7121"]],[15,16,[]]]},{"k":17186,"v":[[0,1,["H1270"]],[1,2,["H2300"]],[2,3,["H1270"]],[3,6,["H376"]],[6,7,["H2300"]],[7,9,["H6440"]],[9,12,["H7453"]]]},{"k":17187,"v":[[0,2,["H5341"]],[2,5,["H8384"]],[5,7,["H398"]],[7,9,["H6529"]],[9,14,["H8104"]],[14,17,["H113"]],[17,20,["H3513"]]]},{"k":17188,"v":[[0,3,["H4325"]],[3,4,["H6440"]],[4,7,["H6440"]],[7,8,["H3651"]],[8,10,["H3820"]],[10,12,["H120"]],[12,14,["H120"]]]},{"k":17189,"v":[[0,1,["H7585"]],[1,3,["H10"]],[3,5,["H3808"]],[5,6,["H7646"]],[6,9,["H5869"]],[9,11,["H120"]],[11,13,["H3808"]],[13,14,["H7646"]]]},{"k":17190,"v":[[0,4,["H4715"]],[4,6,["H3701"]],[6,9,["H3564"]],[9,11,["H2091"]],[11,15,["H376"]],[15,16,["H6310"]],[16,18,["H4110"]]]},{"k":17191,"v":[[0,1,["H518"]],[1,4,["H3806","(H853)"]],[4,6,["H191"]],[6,9,["H4388"]],[9,10,["H8432"]],[10,11,["H7383"]],[11,14,["H5940"]],[14,17,["H3808"]],[17,19,["H200"]],[19,20,["H5493"]],[20,21,["H4480","H5921"]],[21,22,[]]]},{"k":17192,"v":[[0,5,["H3045","H3045"]],[5,7,["H6440"]],[7,10,["H6629"]],[10,12,["H7896","H3820"]],[12,16,["H5739"]]]},{"k":17193,"v":[[0,1,["H3588"]],[1,2,["H2633"]],[2,4,["H3808"]],[4,6,["H5769"]],[6,8,["H518"]],[8,10,["H5145"]],[10,14,["H1755","H1755"]]]},{"k":17194,"v":[[0,2,["H2682"]],[2,3,["H1540"]],[3,7,["H1877"]],[7,9,["H7200"]],[9,11,["H6212"]],[11,14,["H2022"]],[14,16,["H622"]]]},{"k":17195,"v":[[0,2,["H3532"]],[2,6,["H3830"]],[6,9,["H6260"]],[9,12,["H4242"]],[12,15,["H7704"]]]},{"k":17196,"v":[[0,5,["H5795"]],[5,6,["H2461"]],[6,7,["H1767"]],[7,10,["H3899"]],[10,13,["H3899"]],[13,16,["H1004"]],[16,20,["H2416"]],[20,23,["H5291"]]]},{"k":17197,"v":[[0,2,["H7563"]],[2,3,["H5127"]],[3,5,["H369"]],[5,7,["H7291"]],[7,10,["H6662"]],[10,12,["H982"]],[12,15,["H3715"]]]},{"k":17198,"v":[[0,3,["H6588"]],[3,6,["H776"]],[6,7,["H7227"]],[7,10,["H8269"]],[10,15,["H120"]],[15,17,["H995"]],[17,19,["H3045"]],[19,21,["H3651"]],[21,25,["H748"]]]},{"k":17199,"v":[[0,2,["H7326"]],[2,3,["H1397"]],[3,5,["H6231"]],[5,7,["H1800"]],[7,11,["H5502"]],[11,12,["H4306"]],[12,15,["H369"]],[15,16,["H3899"]]]},{"k":17200,"v":[[0,3,["H5800"]],[3,5,["H8451"]],[5,6,["H1984"]],[6,8,["H7563"]],[8,12,["H8104"]],[12,14,["H8451"]],[14,15,["H1624"]],[15,17,[]]]},{"k":17201,"v":[[0,1,["H7451"]],[1,2,["H376"]],[2,3,["H995"]],[3,4,["H3808"]],[4,5,["H4941"]],[5,9,["H1245"]],[9,11,["H3068"]],[11,12,["H995"]],[12,13,["H3605"]],[13,14,[]]]},{"k":17202,"v":[[0,1,["H2896"]],[1,4,["H7326"]],[4,6,["H1980"]],[6,9,["H8537"]],[9,14,["H4480","H6141"]],[14,17,["H1870"]],[17,19,["H1931"]],[19,21,["H6223"]]]},{"k":17203,"v":[[0,2,["H5341"]],[2,4,["H8451"]],[4,7,["H995"]],[7,8,["H1121"]],[8,14,["H7462"]],[14,16,["H2151"]],[16,18,["H3637"]],[18,20,["H1"]]]},{"k":17204,"v":[[0,4,["H5392"]],[4,7,["H8636"]],[7,8,["H7235"]],[8,10,["H1952"]],[10,13,["H6908"]],[13,19,["H2603"]],[19,21,["H1800"]]]},{"k":17205,"v":[[0,4,["H5493"]],[4,6,["H241"]],[6,8,["H4480","H8085"]],[8,10,["H8451"]],[10,11,["H1571"]],[11,13,["H8605"]],[13,16,["H8441"]]]},{"k":17206,"v":[[0,4,["H3477"]],[4,7,["H7686"]],[7,10,["H7451"]],[10,11,["H1870"]],[11,14,["H5307"]],[14,15,["H1931"]],[15,19,["H7816"]],[19,22,["H8549"]],[22,25,["H2896"]],[25,28,["H5157"]]]},{"k":17207,"v":[[0,2,["H6223"]],[2,3,["H376"]],[3,5,["H2450"]],[5,9,["H5869"]],[9,12,["H1800"]],[12,15,["H995"]],[15,18,["H2713"]]]},{"k":17208,"v":[[0,2,["H6662"]],[2,5,["H5970"]],[5,8,["H7227"]],[8,9,["H8597"]],[9,13,["H7563"]],[13,14,["H6965"]],[14,16,["H120"]],[16,18,["H2664"]]]},{"k":17209,"v":[[0,3,["H3680"]],[3,5,["H6588"]],[5,7,["H3808"]],[7,8,["H6743"]],[8,11,["H3034"]],[11,13,["H5800"]],[13,17,["H7355"]]]},{"k":17210,"v":[[0,1,["H835"]],[1,4,["H120"]],[4,6,["H6342"]],[6,7,["H8548"]],[7,11,["H7185"]],[11,13,["H3820"]],[13,15,["H5307"]],[15,17,["H7451"]]]},{"k":17211,"v":[[0,3,["H5098"]],[3,4,["H738"]],[4,7,["H8264"]],[7,8,["H1677"]],[8,12,["H7563"]],[12,13,["H4910"]],[13,14,["H5921"]],[14,16,["H1800"]],[16,17,["H5971"]]]},{"k":17212,"v":[[0,2,["H5057"]],[2,4,["H2638"]],[4,5,["H8394"]],[5,9,["H7227"]],[9,10,["H4642"]],[10,14,["H8130"]],[14,15,["H1215"]],[15,17,["H748"]],[17,19,["H3117"]]]},{"k":17213,"v":[[0,2,["H120"]],[2,5,["H6231"]],[5,8,["H1818"]],[8,11,["H5315"]],[11,13,["H5127"]],[13,14,["H5704"]],[14,16,["H953"]],[16,18,["H408"]],[18,20,["H8551"]],[20,21,[]]]},{"k":17214,"v":[[0,2,["H1980"]],[2,3,["H8549"]],[3,6,["H3467"]],[6,11,["H6140"]],[11,14,["H1870"]],[14,16,["H5307"]],[16,18,["H259"]]]},{"k":17215,"v":[[0,3,["H5647"]],[3,5,["H127"]],[5,8,["H7646"]],[8,10,["H3899"]],[10,14,["H7291"]],[14,16,["H7386"]],[16,20,["H7389"]],[20,21,["H7646"]]]},{"k":17216,"v":[[0,2,["H530"]],[2,3,["H376"]],[3,5,["H7227"]],[5,7,["H1293"]],[7,12,["H213"]],[12,15,["H6238"]],[15,17,["H3808"]],[17,19,["H5352"]]]},{"k":17217,"v":[[0,3,["H5234"]],[3,5,["H6440"]],[5,7,["H3808"]],[7,8,["H2896"]],[8,10,["H5921"]],[10,12,["H6595"]],[12,14,["H3899"]],[14,16,["H1397"]],[16,18,["H6586"]]]},{"k":17218,"v":[[0,1,["H376"]],[1,3,["H926"]],[3,6,["H1952"]],[6,9,["H7451"]],[9,10,["H5869"]],[10,12,["H3045"]],[12,13,["H3808"]],[13,14,["H3588"]],[14,15,["H2639"]],[15,18,["H935"]],[18,19,[]]]},{"k":17219,"v":[[0,3,["H3198"]],[3,5,["H120"]],[5,6,["H310"]],[6,8,["H4672"]],[8,10,["H2580"]],[10,14,["H4480","H2505"]],[14,17,["H3956"]]]},{"k":17220,"v":[[0,2,["H1497"]],[2,4,["H1"]],[4,7,["H517"]],[7,9,["H559"]],[9,12,["H369"]],[12,13,["H6588"]],[13,15,["H1931"]],[15,18,["H2270"]],[18,21,["H376","H7843"]]]},{"k":17221,"v":[[0,6,["H7342"]],[6,7,["H5315"]],[7,9,["H1624"]],[9,10,["H4066"]],[10,16,["H982"]],[16,17,["H5921"]],[17,19,["H3068"]],[19,23,["H1878"]]]},{"k":17222,"v":[[0,1,["H1931"]],[1,3,["H982"]],[3,7,["H3820"]],[7,10,["H3684"]],[10,13,["H1980"]],[13,14,["H2451"]],[14,15,["H1931"]],[15,18,["H4422"]]]},{"k":17223,"v":[[0,3,["H5414"]],[3,6,["H7326"]],[6,8,["H369"]],[8,9,["H4270"]],[9,13,["H5956"]],[13,15,["H5869"]],[15,18,["H7227"]],[18,20,["H3994"]]]},{"k":17224,"v":[[0,3,["H7563"]],[3,4,["H6965"]],[4,5,["H120"]],[5,7,["H5641"]],[7,11,["H6"]],[11,13,["H6662"]],[13,14,["H7235"]]]},{"k":17225,"v":[[0,1,["H376"]],[1,5,["H8433"]],[5,6,["H7185"]],[6,8,["H6203"]],[8,10,["H6621"]],[10,12,["H7665"]],[12,15,["H369"]],[15,16,["H4832"]]]},{"k":17226,"v":[[0,3,["H6662"]],[3,6,["H7235"]],[6,8,["H5971"]],[8,9,["H8055"]],[9,13,["H7563"]],[13,15,["H4910"]],[15,17,["H5971"]],[17,18,["H584"]]]},{"k":17227,"v":[[0,1,["H376"]],[1,2,["H157"]],[2,3,["H2451"]],[3,4,["H8055"]],[4,6,["H1"]],[6,11,["H7462"]],[11,13,["H2181"]],[13,14,["H6"]],[14,16,["H1952"]]]},{"k":17228,"v":[[0,2,["H4428"]],[2,4,["H4941"]],[4,5,["H5975"]],[5,7,["H776"]],[7,9,["H376"]],[9,12,["H8641"]],[12,13,["H2040"]],[13,14,[]]]},{"k":17229,"v":[[0,2,["H1397"]],[2,4,["H2505","H5921"]],[4,6,["H7453"]],[6,7,["H6566"]],[7,9,["H7568"]],[9,10,["H5921"]],[10,12,["H6471"]]]},{"k":17230,"v":[[0,3,["H6588"]],[3,6,["H7451"]],[6,7,["H376"]],[7,11,["H4170"]],[11,14,["H6662"]],[14,16,["H7442"]],[16,18,["H8055"]]]},{"k":17231,"v":[[0,2,["H6662"]],[2,3,["H3045"]],[3,5,["H1779"]],[5,8,["H1800"]],[8,11,["H7563"]],[11,12,["H995"]],[12,13,["H3808"]],[13,15,["H1847"]],[15,16,[]]]},{"k":17232,"v":[[0,1,["H3944"]],[1,2,["H376"]],[2,8,["H6315","H7151"]],[8,10,["H2450"]],[10,13,["H7725"]],[13,14,["H639"]]]},{"k":17233,"v":[[0,3,["H2450"]],[3,4,["H376"]],[4,5,["H8199"]],[5,6,["H854"]],[6,8,["H191"]],[8,9,["H376"]],[9,12,["H7264"]],[12,14,["H7832"]],[14,17,["H369"]],[17,18,["H5183"]]]},{"k":17234,"v":[[0,2,["H376","H1818"]],[2,3,["H8130"]],[3,5,["H8535"]],[5,8,["H3477"]],[8,9,["H1245"]],[9,11,["H5315"]]]},{"k":17235,"v":[[0,2,["H3684"]],[2,3,["H3318"]],[3,4,["H3605"]],[4,6,["H7307"]],[6,9,["H2450"]],[9,11,["H7623"]],[11,15,["H268"]]]},{"k":17236,"v":[[0,3,["H4910"]],[3,4,["H7181"]],[4,5,["H5921"]],[5,6,["H1697","H8267"]],[6,7,["H3605"]],[7,9,["H8334"]],[9,11,["H7563"]]]},{"k":17237,"v":[[0,2,["H7326"]],[2,5,["H8501"]],[5,6,["H376"]],[6,8,["H6298"]],[8,10,["H3068"]],[10,11,["H215"]],[11,12,["H8147"]],[12,14,["H5869"]]]},{"k":17238,"v":[[0,2,["H4428"]],[2,4,["H571"]],[4,5,["H8199"]],[5,7,["H1800"]],[7,9,["H3678"]],[9,12,["H3559"]],[12,14,["H5703"]]]},{"k":17239,"v":[[0,2,["H7626"]],[2,4,["H8433"]],[4,5,["H5414"]],[5,6,["H2451"]],[6,9,["H5288"]],[9,10,["H7971"]],[10,15,["H517"]],[15,17,["H954"]]]},{"k":17240,"v":[[0,3,["H7563"]],[3,5,["H7235"]],[5,6,["H6588"]],[6,7,["H7235"]],[7,10,["H6662"]],[10,12,["H7200"]],[12,14,["H4658"]]]},{"k":17241,"v":[[0,1,["H3256"]],[1,3,["H1121"]],[3,9,["H5117"]],[9,13,["H5414"]],[13,14,["H4574"]],[14,17,["H5315"]]]},{"k":17242,"v":[[0,4,["H369"]],[4,5,["H2377"]],[5,7,["H5971"]],[7,8,["H6544"]],[8,12,["H8104"]],[12,14,["H8451"]],[14,15,["H835"]],[15,17,[]]]},{"k":17243,"v":[[0,2,["H5650"]],[2,4,["H3808"]],[4,6,["H3256"]],[6,8,["H1697"]],[8,10,["H3588"]],[10,12,["H995"]],[12,15,["H369"]],[15,16,["H4617"]]]},{"k":17244,"v":[[0,1,["H2372"]],[1,4,["H376"]],[4,7,["H213"]],[7,10,["H1697"]],[10,14,["H8615"]],[14,17,["H3684"]],[17,19,["H4480"]],[19,20,[]]]},{"k":17245,"v":[[0,5,["H6445"]],[5,7,["H5650"]],[7,10,["H4480","H5290"]],[10,14,["H1961"]],[14,16,["H4497"]],[16,19,["H319"]]]},{"k":17246,"v":[[0,2,["H639"]],[2,3,["H376"]],[3,5,["H1624"]],[5,6,["H4066"]],[6,9,["H2534"]],[9,10,["H1167"]],[10,11,["H7227"]],[11,13,["H6588"]]]},{"k":17247,"v":[[0,2,["H120"]],[2,3,["H1346"]],[3,7,["H8213"]],[7,9,["H3519"]],[9,11,["H8551"]],[11,13,["H8217"]],[13,15,["H7307"]]]},{"k":17248,"v":[[0,3,["H2505"]],[3,4,["H5973"]],[4,6,["H1590"]],[6,7,["H8130"]],[7,10,["H5315"]],[10,12,["H8085"]],[12,13,["H423"]],[13,15,["H5046"]],[15,17,["H3808"]]]},{"k":17249,"v":[[0,2,["H2731"]],[2,4,["H120"]],[4,5,["H5414"]],[5,7,["H4170"]],[7,12,["H982"]],[12,15,["H3068"]],[15,18,["H7682"]]]},{"k":17250,"v":[[0,1,["H7227"]],[1,2,["H1245"]],[2,4,["H4910"]],[4,5,["H6440"]],[5,8,["H376"]],[8,9,["H4941"]],[9,13,["H4480","H3068"]]]},{"k":17251,"v":[[0,2,["H5766"]],[2,3,["H376"]],[3,6,["H8441"]],[6,9,["H6662"]],[9,14,["H3477"]],[14,17,["H1870"]],[17,19,["H8441"]],[19,22,["H7563"]]]},{"k":17252,"v":[[0,2,["H1697"]],[2,4,["H94"]],[4,6,["H1121"]],[6,8,["H3348"]],[8,11,["H4853"]],[11,13,["H1397"]],[13,14,["H5002"]],[14,16,["H384"]],[16,19,["H384"]],[19,21,["H401"]]]},{"k":17253,"v":[[0,1,["H3588"]],[1,2,["H595"]],[2,5,["H1198"]],[5,8,["H4480","H376"]],[8,11,["H3808"]],[11,13,["H998"]],[13,16,["H120"]]]},{"k":17254,"v":[[0,2,["H3808"]],[2,3,["H3925"]],[3,4,["H2451"]],[4,6,["H3045"]],[6,8,["H1847"]],[8,11,["H6918"]]]},{"k":17255,"v":[[0,1,["H4310"]],[1,4,["H5927"]],[4,6,["H8064"]],[6,8,["H3381"]],[8,9,["H4310"]],[9,11,["H622"]],[11,13,["H7307"]],[13,16,["H2651"]],[16,17,["H4310"]],[17,19,["H6887"]],[19,21,["H4325"]],[21,24,["H8071"]],[24,25,["H4310"]],[25,27,["H6965"]],[27,28,["H3605"]],[28,30,["H657"]],[30,33,["H776"]],[33,34,["H4100"]],[34,37,["H8034"]],[37,39,["H4100"]],[39,42,["H1121"]],[42,43,["H8034"]],[43,44,["H3588"]],[44,47,["H3045"]]]},{"k":17256,"v":[[0,1,["H3605"]],[1,2,["H565"]],[2,4,["H433"]],[4,6,["H6884"]],[6,7,["H1931"]],[7,10,["H4043"]],[10,16,["H2620"]],[16,18,[]]]},{"k":17257,"v":[[0,1,["H3254"]],[1,3,["H408"]],[3,4,["H5921"]],[4,6,["H1697"]],[6,7,["H6435"]],[7,9,["H3198"]],[9,16,["H3576"]]]},{"k":17258,"v":[[0,1,["H8147"]],[1,5,["H7592"]],[5,6,["H4480","H854"]],[6,8,["H4513","H4480"]],[8,11,["H408"]],[11,12,["H2962"]],[12,14,["H4191"]]]},{"k":17259,"v":[[0,2,["H7368"]],[2,3,["H4480"]],[3,5,["H7723"]],[5,7,["H1697","H3577"]],[7,8,["H5414"]],[8,10,["H408"]],[10,11,["H7389"]],[11,13,["H6239"]],[13,14,["H2963"]],[14,17,["H3899"]],[17,18,["H2706"]],[18,20,[]]]},{"k":17260,"v":[[0,1,["H6435"]],[1,4,["H7646"]],[4,6,["H3584"]],[6,9,["H559"]],[9,10,["H4310"]],[10,13,["H3068"]],[13,15,["H6435"]],[15,18,["H3423"]],[18,20,["H1589"]],[20,22,["H8610"]],[22,24,["H8034"]],[24,27,["H430"]],[27,29,[]]]},{"k":17261,"v":[[0,1,["H3960"]],[1,2,["H408"]],[2,4,["H5650"]],[4,5,["H413"]],[5,7,["H113"]],[7,8,["H6435"]],[8,10,["H7043"]],[10,16,["H816"]]]},{"k":17262,"v":[[0,4,["H1755"]],[4,6,["H7043"]],[6,8,["H1"]],[8,11,["H3808"]],[11,12,["H1288"]],[12,14,["H517"]]]},{"k":17263,"v":[[0,4,["H1755"]],[4,7,["H2889"]],[7,11,["H5869"]],[11,15,["H3808"]],[15,16,["H7364"]],[16,19,["H4480","H6675"]]]},{"k":17264,"v":[[0,4,["H1755"]],[4,6,["H4100"]],[6,7,["H7311"]],[7,10,["H5869"]],[10,13,["H6079"]],[13,16,["H5375"]]]},{"k":17265,"v":[[0,4,["H1755"]],[4,6,["H8127"]],[6,9,["H2719"]],[9,13,["H4973"]],[13,15,["H3979"]],[15,17,["H398"]],[17,19,["H6041"]],[19,23,["H4480","H776"]],[23,26,["H34"]],[26,29,["H4480","H120"]]]},{"k":17266,"v":[[0,2,["H5936"]],[2,4,["H8147"]],[4,5,["H1323"]],[5,7,["H3051"]],[7,8,["H3051"]],[8,11,["H7969","H2007"]],[11,15,["H3808"]],[15,16,["H7646"]],[16,18,["H702"]],[18,20,["H559"]],[20,21,["H3808"]],[21,24,["H1952"]]]},{"k":17267,"v":[[0,2,["H7585"]],[2,5,["H6115"]],[5,6,["H7356"]],[6,8,["H776"]],[8,11,["H3808"]],[11,12,["H7646"]],[12,14,["H4325"]],[14,17,["H784"]],[17,19,["H559"]],[19,20,["H3808"]],[20,23,["H1952"]]]},{"k":17268,"v":[[0,2,["H5869"]],[2,4,["H3932"]],[4,7,["H1"]],[7,9,["H936"]],[9,11,["H3349"]],[11,13,["H517"]],[13,15,["H6158"]],[15,18,["H5158"]],[18,22,["H5365"]],[22,25,["H1121"]],[25,26,["H5404"]],[26,28,["H398"]],[28,29,[]]]},{"k":17269,"v":[[0,3,["H7969"]],[3,8,["H6381"]],[8,9,["H4480"]],[9,12,["H702"]],[12,15,["H3045"]],[15,16,["H3808"]]]},{"k":17270,"v":[[0,2,["H1870"]],[2,5,["H5404"]],[5,8,["H8064"]],[8,10,["H1870"]],[10,13,["H5175"]],[13,14,["H5921"]],[14,16,["H6697"]],[16,18,["H1870"]],[18,21,["H591"]],[21,24,["H3820"]],[24,27,["H3220"]],[27,30,["H1870"]],[30,33,["H1397"]],[33,36,["H5959"]]]},{"k":17271,"v":[[0,1,["H3651"]],[1,4,["H1870"]],[4,7,["H5003"]],[7,8,["H802"]],[8,10,["H398"]],[10,12,["H4229"]],[12,14,["H6310"]],[14,16,["H559"]],[16,19,["H6466"]],[19,20,["H3808"]],[20,21,["H205"]]]},{"k":17272,"v":[[0,1,["H8478"]],[1,2,["H7969"]],[2,5,["H776"]],[5,7,["H7264"]],[7,9,["H8478"]],[9,10,["H702"]],[10,13,["H3808","H3201"]],[13,14,["H5375"]]]},{"k":17273,"v":[[0,1,["H8478"]],[1,3,["H5650"]],[3,4,["H3588"]],[4,6,["H4427"]],[6,9,["H5036"]],[9,10,["H3588"]],[10,13,["H7646"]],[13,15,["H3899"]]]},{"k":17274,"v":[[0,1,["H8478"]],[1,3,["H8130"]],[3,5,["H3588"]],[5,8,["H1166"]],[8,11,["H8198"]],[11,12,["H3588"]],[12,14,["H3423"]],[14,17,["H1404"]]]},{"k":17275,"v":[[0,3,["H702"]],[3,7,["H6996"]],[7,10,["H776"]],[10,12,["H1992"]],[12,15,["H2449","H2450"]]]},{"k":17276,"v":[[0,2,["H5244"]],[2,5,["H5971"]],[5,6,["H3808"]],[6,7,["H5794"]],[7,10,["H3559"]],[10,12,["H3899"]],[12,15,["H7019"]]]},{"k":17277,"v":[[0,2,["H8227"]],[2,6,["H3808","H6099"]],[6,7,["H5971"]],[7,9,["H7760"]],[9,12,["H1004"]],[12,15,["H5553"]]]},{"k":17278,"v":[[0,2,["H697"]],[2,4,["H369"]],[4,5,["H4428"]],[5,9,["H3318"]],[9,10,["H3605"]],[10,14,["H2686"]]]},{"k":17279,"v":[[0,2,["H8079"]],[2,4,["H8610"]],[4,7,["H3027"]],[7,11,["H4428"]],[11,12,["H1964"]]]},{"k":17280,"v":[[0,3,["H7969"]],[3,6,["H6806"]],[6,7,["H3190"]],[7,9,["H702"]],[9,11,["H3190"]],[11,13,["H1980"]]]},{"k":17281,"v":[[0,2,["H3918"]],[2,5,["H1368"]],[5,7,["H929"]],[7,11,["H3808","H7725"]],[11,12,["H4480","H6440"]],[12,13,["H3605"]]]},{"k":17282,"v":[[0,2,["H2223","H4975"]],[2,5,["H8495"]],[5,6,["H176"]],[6,9,["H4428"]],[9,10,["H5973"]],[10,16,["H510"]]]},{"k":17283,"v":[[0,1,["H518"]],[1,5,["H5034"]],[5,9,["H5375"]],[9,11,["H518"]],[11,15,["H2161"]],[15,18,["H3027"]],[18,21,["H6310"]]]},{"k":17284,"v":[[0,1,["H3588"]],[1,3,["H4330"]],[3,5,["H2461"]],[5,7,["H3318"]],[7,8,["H2529"]],[8,11,["H4330"]],[11,14,["H639"]],[14,16,["H3318"]],[16,17,["H1818"]],[17,20,["H4330"]],[20,22,["H639"]],[22,24,["H3318"]],[24,25,["H7379"]]]},{"k":17285,"v":[[0,2,["H1697"]],[2,4,["H4428"]],[4,5,["H3927"]],[5,7,["H4853"]],[7,8,["H834"]],[8,10,["H517"]],[10,11,["H3256"]],[11,12,[]]]},{"k":17286,"v":[[0,1,["H4100"]],[1,3,["H1248"]],[3,5,["H4100"]],[5,7,["H1248"]],[7,10,["H990"]],[10,12,["H4100"]],[12,14,["H1248"]],[14,17,["H5088"]]]},{"k":17287,"v":[[0,1,["H5414"]],[1,2,["H408"]],[2,4,["H2428"]],[4,6,["H802"]],[6,9,["H1870"]],[9,13,["H4229"]],[13,14,["H4428"]]]},{"k":17288,"v":[[0,3,["H408"]],[3,5,["H4428"]],[5,7,["H3927"]],[7,10,["H408"]],[10,12,["H4428"]],[12,14,["H8354"]],[14,15,["H3196"]],[15,16,["H176"]],[16,18,["H7336"]],[18,20,["H7941"]]]},{"k":17289,"v":[[0,1,["H6435"]],[1,3,["H8354"]],[3,5,["H7911"]],[5,7,["H2710"]],[7,9,["H8138"]],[9,11,["H1779"]],[11,13,["H3605"]],[13,16,["H1121","H6040"]]]},{"k":17290,"v":[[0,1,["H5414"]],[1,3,["H7941"]],[3,10,["H6"]],[10,12,["H3196"]],[12,18,["H4751"]],[18,19,["H5315"]]]},{"k":17291,"v":[[0,3,["H8354"]],[3,5,["H7911"]],[5,7,["H7389"]],[7,9,["H2142"]],[9,11,["H5999"]],[11,12,["H3808"]],[12,13,["H5750"]]]},{"k":17292,"v":[[0,1,["H6605"]],[1,3,["H6310"]],[3,6,["H483"]],[6,7,["H413"]],[7,9,["H1779"]],[9,11,["H3605"]],[11,15,["H1121"]],[15,17,["H2475"]]]},{"k":17293,"v":[[0,1,["H6605"]],[1,3,["H6310"]],[3,4,["H8199"]],[4,5,["H6664"]],[5,9,["H1777"]],[9,12,["H6041"]],[12,14,["H34"]]]},{"k":17294,"v":[[0,1,["H4310"]],[1,3,["H4672"]],[3,5,["H2428"]],[5,6,["H802"]],[6,9,["H4377"]],[9,11,["H7350"]],[11,13,["H4480","H6443"]]]},{"k":17295,"v":[[0,2,["H3820"]],[2,5,["H1167"]],[5,8,["H982"]],[8,16,["H3808"]],[16,17,["H2637"]],[17,19,["H7998"]]]},{"k":17296,"v":[[0,3,["H1580"]],[3,5,["H2896"]],[5,7,["H3808"]],[7,8,["H7451"]],[8,9,["H3605"]],[9,11,["H3117"]],[11,14,["H2416"]]]},{"k":17297,"v":[[0,2,["H1875"]],[2,3,["H6785"]],[3,5,["H6593"]],[5,7,["H6213"]],[7,8,["H2656"]],[8,11,["H3709"]]]},{"k":17298,"v":[[0,2,["H1961"]],[2,5,["H5503"]],[5,6,["H591"]],[6,8,["H935"]],[8,10,["H3899"]],[10,12,["H4480","H4801"]]]},{"k":17299,"v":[[0,2,["H6965"]],[2,7,["H5750"]],[7,8,["H3915"]],[8,10,["H5414"]],[10,11,["H2964"]],[11,14,["H1004"]],[14,17,["H2706"]],[17,20,["H5291"]]]},{"k":17300,"v":[[0,2,["H2161"]],[2,4,["H7704"]],[4,6,["H3947"]],[6,10,["H4480","H6529"]],[10,13,["H3709"]],[13,15,["H5193"]],[15,17,["H3754"]]]},{"k":17301,"v":[[0,2,["H2296"]],[2,4,["H4975"]],[4,6,["H5797"]],[6,8,["H553"]],[8,10,["H2220"]]]},{"k":17302,"v":[[0,2,["H2938"]],[2,3,["H3588"]],[3,5,["H5504"]],[5,7,["H2896"]],[7,9,["H5216"]],[9,12,["H3808","H3518"]],[12,14,["H3915"]]]},{"k":17303,"v":[[0,2,["H7971"]],[2,4,["H3027"]],[4,7,["H3601"]],[7,10,["H3709"]],[10,11,["H8551"]],[11,13,["H6418"]]]},{"k":17304,"v":[[0,3,["H6566"]],[3,5,["H3709"]],[5,8,["H6041"]],[8,12,["H7971"]],[12,14,["H3027"]],[14,17,["H34"]]]},{"k":17305,"v":[[0,3,["H3808"]],[3,4,["H3372"]],[4,7,["H4480","H7950"]],[7,10,["H1004"]],[10,11,["H3588"]],[11,12,["H3605"]],[12,14,["H1004"]],[14,16,["H3847"]],[16,18,["H8144"]]]},{"k":17306,"v":[[0,2,["H6213"]],[2,6,["H4765"]],[6,8,["H3830"]],[8,10,["H8336"]],[10,12,["H713"]]]},{"k":17307,"v":[[0,2,["H1167"]],[2,4,["H3045"]],[4,7,["H8179"]],[7,10,["H3427"]],[10,11,["H5973"]],[11,13,["H2205"]],[13,16,["H776"]]]},{"k":17308,"v":[[0,2,["H6213"]],[2,4,["H5466"]],[4,6,["H4376"]],[6,9,["H5414"]],[9,10,["H2289"]],[10,13,["H3669"]]]},{"k":17309,"v":[[0,1,["H5797"]],[1,3,["H1926"]],[3,6,["H3830"]],[6,10,["H7832"]],[10,12,["H3117"]],[12,14,["H314"]]]},{"k":17310,"v":[[0,2,["H6605"]],[2,4,["H6310"]],[4,6,["H2451"]],[6,8,["H5921"]],[8,10,["H3956"]],[10,13,["H8451"]],[13,15,["H2617"]]]},{"k":17311,"v":[[0,3,["H6822"]],[3,6,["H1979"]],[6,9,["H1004"]],[9,11,["H398"]],[11,12,["H3808"]],[12,14,["H3899"]],[14,16,["H6104"]]]},{"k":17312,"v":[[0,2,["H1121"]],[2,4,["H6965"]],[4,8,["H833"]],[8,10,["H1167"]],[10,14,["H1984"]],[14,15,[]]]},{"k":17313,"v":[[0,1,["H7227"]],[1,2,["H1323"]],[2,4,["H6213"]],[4,5,["H2428"]],[5,7,["H859"]],[7,8,["H5927","H5921"]],[8,10,["H3605"]]]},{"k":17314,"v":[[0,1,["H2580"]],[1,3,["H8267"]],[3,5,["H3308"]],[5,7,["H1892"]],[7,10,["H802"]],[10,12,["H3373"]],[12,14,["H3068"]],[14,15,["H1931"]],[15,18,["H1984"]]]},{"k":17315,"v":[[0,1,["H5414"]],[1,5,["H4480","H6529"]],[5,8,["H3027"]],[8,13,["H4639"]],[13,14,["H1984"]],[14,18,["H8179"]]]},{"k":17316,"v":[[0,2,["H1697"]],[2,5,["H6953"]],[5,7,["H1121"]],[7,9,["H1732"]],[9,10,["H4428"]],[10,12,["H3389"]]]},{"k":17317,"v":[[0,1,["H1892"]],[1,3,["H1892"]],[3,4,["H559"]],[4,6,["H6953"]],[6,7,["H1892"]],[7,9,["H1892"]],[9,10,["H3605"]],[10,12,["H1892"]]]},{"k":17318,"v":[[0,1,["H4100"]],[1,2,["H3504"]],[2,5,["H120"]],[5,7,["H3605"]],[7,9,["H5999"]],[9,12,["H7945","H5998"]],[12,13,["H8478"]],[13,15,["H8121"]]]},{"k":17319,"v":[[0,2,["H1755"]],[2,4,["H1980"]],[4,7,["H1755"]],[7,8,["H935"]],[8,11,["H776"]],[11,12,["H5975"]],[12,14,["H5769"]]]},{"k":17320,"v":[[0,2,["H8121"]],[2,4,["H2224"]],[4,7,["H8121"]],[7,9,["H935"]],[9,11,["H7602"]],[11,12,["H413"]],[12,14,["H4725"]],[14,15,["H8033"]],[15,16,["H1931"]],[16,17,["H2224"]]]},{"k":17321,"v":[[0,2,["H7307"]],[2,3,["H1980"]],[3,4,["H413"]],[4,6,["H1864"]],[6,9,["H5437"]],[9,10,["H413"]],[10,12,["H6828"]],[12,15,["H1980"]],[15,16,["H5437","H5437"]],[16,19,["H7307"]],[19,21,["H7725"]],[21,22,["H5921"]],[22,25,["H5439"]]]},{"k":17322,"v":[[0,1,["H3605"]],[1,3,["H5158"]],[3,4,["H1980"]],[4,5,["H413"]],[5,7,["H3220"]],[7,10,["H3220"]],[10,12,["H369"]],[12,13,["H4392"]],[13,14,["H413"]],[14,16,["H4725"]],[16,20,["H7945","H5158"]],[20,21,["H1980"]],[21,22,["H8033"]],[22,23,["H1992"]],[23,24,["H7725"]],[24,25,["H1980"]]]},{"k":17323,"v":[[0,1,["H3605"]],[1,2,["H1697"]],[2,6,["H3023"]],[6,7,["H376"]],[7,8,["H3201","H3808"]],[8,9,["H1696"]],[9,12,["H5869"]],[12,14,["H3808"]],[14,15,["H7646"]],[15,17,["H7200"]],[17,18,["H3808"]],[18,20,["H241"]],[20,21,["H4390"]],[21,23,["H4480","H8085"]]]},{"k":17324,"v":[[0,2,["H4100"]],[2,5,["H7945","H1961"]],[5,6,["H1931"]],[6,11,["H7945","H1961"]],[11,13,["H4100"]],[13,16,["H7945","H6213"]],[16,18,["H1931"]],[18,22,["H7945","H6213"]],[22,26,["H369","H3605"]],[26,27,["H2319"]],[27,29,["H8478"]],[29,31,["H8121"]]]},{"k":17325,"v":[[0,2,["H3426"]],[2,4,["H1697"]],[4,9,["H7945","H559"]],[9,10,["H7200"]],[10,11,["H2088"]],[11,13,["H2319"]],[13,14,["H1931"]],[14,16,["H1961"]],[16,17,["H3528"]],[17,20,["H5769"]],[20,21,["H834"]],[21,22,["H1961"]],[22,23,["H4480","H6440"]],[23,24,[]]]},{"k":17326,"v":[[0,3,["H369"]],[3,4,["H2146"]],[4,6,["H7223"]],[6,8,["H1571","H3808"]],[8,11,["H1961"]],[11,13,["H2146"]],[13,19,["H7945","H1961"]],[19,20,["H5973"]],[20,24,["H7945","H1961"]],[24,25,["H314"]]]},{"k":17327,"v":[[0,1,["H589"]],[1,3,["H6953"]],[3,4,["H1961"]],[4,5,["H4428"]],[5,6,["H5921"]],[6,7,["H3478"]],[7,9,["H3389"]]]},{"k":17328,"v":[[0,3,["H5414","(H853)"]],[3,5,["H3820"]],[5,7,["H1875"]],[7,10,["H8446"]],[10,12,["H2451"]],[12,13,["H5921"]],[13,14,["H3605"]],[14,16,["H834"]],[16,18,["H6213"]],[18,19,["H8478"]],[19,20,["H8064"]],[20,21,["H1931"]],[21,22,["H7451"]],[22,23,["H6045"]],[23,25,["H430"]],[25,26,["H5414"]],[26,29,["H1121"]],[29,31,["H120"]],[31,34,["H6031"]],[34,35,[]]]},{"k":17329,"v":[[0,3,["H7200","(H853)"]],[3,4,["H3605"]],[4,6,["H4639"]],[6,9,["H7945","H6213"]],[9,10,["H8478"]],[10,12,["H8121"]],[12,14,["H2009"]],[14,15,["H3605"]],[15,17,["H1892"]],[17,19,["H7469"]],[19,21,["H7307"]]]},{"k":17330,"v":[[0,4,["H5791"]],[4,5,["H3201","H3808"]],[5,8,["H8626"]],[8,13,["H2642"]],[13,14,["H3201","H3808"]],[14,16,["H4487"]]]},{"k":17331,"v":[[0,1,["H589"]],[1,2,["H1696"]],[2,3,["H5973"]],[3,6,["H3820"]],[6,7,["H559"]],[7,8,["H2009"]],[8,9,["H589"]],[9,14,["H1431"]],[14,18,["H3254"]],[18,19,["H2451"]],[19,20,["H5921"]],[20,21,["H3605"]],[21,23,["H834"]],[23,25,["H1961"]],[25,26,["H6440"]],[26,28,["H5921"]],[28,29,["H3389"]],[29,32,["H3820"]],[32,34,["H7235"]],[34,35,["H7200"]],[35,37,["H2451"]],[37,39,["H1847"]]]},{"k":17332,"v":[[0,3,["H5414"]],[3,5,["H3820"]],[5,7,["H3045"]],[7,8,["H2451"]],[8,11,["H3045"]],[11,12,["H1947"]],[12,14,["H5531"]],[14,16,["H3045"]],[16,18,["H2088"]],[18,19,["H7945","H1571"]],[19,21,["H7475"]],[21,23,["H7307"]]]},{"k":17333,"v":[[0,1,["H3588"]],[1,3,["H7230"]],[3,4,["H2451"]],[4,6,["H7230"]],[6,7,["H3708"]],[7,11,["H3254"]],[11,12,["H1847"]],[12,13,["H3254"]],[13,14,["H4341"]]]},{"k":17334,"v":[[0,1,["H589"]],[1,2,["H559"]],[2,5,["H3820"]],[5,7,["H1980"]],[7,8,["H4994"]],[8,11,["H5254"]],[11,14,["H8057"]],[14,16,["H7200"]],[16,17,["H2896"]],[17,19,["H2009"]],[19,20,["H1931"]],[20,21,["H1571"]],[21,23,["H1892"]]]},{"k":17335,"v":[[0,2,["H559"]],[2,4,["H7814"]],[4,7,["H1984"]],[7,10,["H8057"]],[10,11,["H4100"]],[11,12,["H6213"]],[12,13,["H2090"]]]},{"k":17336,"v":[[0,2,["H8446"]],[2,5,["H3820"]],[5,7,["H4900","(H853)"]],[7,8,["H1320"]],[8,10,["H3196"]],[10,12,["H5090"]],[12,14,["H3820"]],[14,16,["H2451"]],[16,20,["H270"]],[20,22,["H5531"]],[22,23,["H5704","H834"]],[23,26,["H7200"]],[26,27,["H335"]],[27,29,["H2088"]],[29,30,["H2896"]],[30,33,["H1121"]],[33,35,["H120"]],[35,36,["H834"]],[36,39,["H6213"]],[39,40,["H8478"]],[40,42,["H8064"]],[42,43,["H4557"]],[43,45,["H3117"]],[45,48,["H2416"]]]},{"k":17337,"v":[[0,4,["H1431"]],[4,5,["H4639"]],[5,7,["H1129"]],[7,9,["H1004"]],[9,11,["H5193"]],[11,13,["H3754"]]]},{"k":17338,"v":[[0,2,["H6213"]],[2,4,["H1593"]],[4,6,["H6508"]],[6,9,["H5193"]],[9,10,["H6086"]],[10,14,["H3605"]],[14,17,["H6529"]]]},{"k":17339,"v":[[0,2,["H6213"]],[2,4,["H1295"]],[4,6,["H4325"]],[6,8,["H8248"]],[8,9,["H4480"]],[9,11,["H3293"]],[11,14,["H6779"]],[14,15,["H6086"]]]},{"k":17340,"v":[[0,2,["H7069"]],[2,4,["H5650"]],[4,6,["H8198"]],[6,8,["H1961"]],[8,10,["H1121"]],[10,13,["H1004"]],[13,14,["H1571"]],[14,16,["H1961"]],[16,17,["H7235"]],[17,18,["H4735"]],[18,20,["H1241"]],[20,23,["H6629"]],[23,25,["H4480","H3605"]],[25,27,["H7945","H1961"]],[27,29,["H3389"]],[29,30,["H6440"]],[30,31,[]]]},{"k":17341,"v":[[0,2,["H3664"]],[2,4,["H1571"]],[4,5,["H3701"]],[5,7,["H2091"]],[7,11,["H5459"]],[11,13,["H4428"]],[13,17,["H4082"]],[17,19,["H6213"]],[19,22,["H7891"]],[22,25,["H7891"]],[25,28,["H8588"]],[28,31,["H1121"]],[31,33,["H120"]],[33,36,["H7705","H7705"]],[36,41,[]]]},{"k":17342,"v":[[0,4,["H1431"]],[4,7,["H3254"]],[7,9,["H4480","H3605"]],[9,11,["H7945","H1961"]],[11,12,["H6440"]],[12,15,["H3389"]],[15,16,["H637"]],[16,18,["H2451"]],[18,19,["H5975"]],[19,21,[]]]},{"k":17343,"v":[[0,2,["H3605","H834"]],[2,4,["H5869"]],[4,5,["H7592"]],[5,7,["H680"]],[7,8,["H3808"]],[8,9,["H4480"]],[9,12,["H4513"]],[12,13,["H3808","(H853)"]],[13,15,["H3820"]],[15,17,["H4480","H3605"]],[17,18,["H8057"]],[18,19,["H3588"]],[19,21,["H3820"]],[21,22,["H8056"]],[22,24,["H4480","H3605"]],[24,26,["H5999"]],[26,28,["H2088"]],[28,29,["H1961"]],[29,31,["H2506"]],[31,33,["H4480","H3605"]],[33,35,["H5999"]]]},{"k":17344,"v":[[0,2,["H589"]],[2,3,["H6437"]],[3,5,["H3605"]],[5,7,["H4639"]],[7,12,["H7945","H6213","H3027"]],[12,16,["H5999"]],[16,20,["H7945","H5998"]],[20,22,["H6213"]],[22,24,["H2009"]],[24,25,["H3605"]],[25,27,["H1892"]],[27,29,["H7469"]],[29,31,["H7307"]],[31,35,["H369"]],[35,36,["H3504"]],[36,37,["H8478"]],[37,39,["H8121"]]]},{"k":17345,"v":[[0,2,["H589"]],[2,3,["H6437"]],[3,6,["H7200"]],[6,7,["H2451"]],[7,9,["H1947"]],[9,11,["H5531"]],[11,12,["H3588"]],[12,13,["H4100"]],[13,16,["H120"]],[16,19,["H7945","H935"]],[19,20,["H310"]],[20,22,["H4428"]],[22,23,["(H853)"]],[23,25,["H834"]],[25,28,["H3528"]],[28,29,["H6213"]]]},{"k":17346,"v":[[0,2,["H589"]],[2,3,["H7200"]],[3,4,["H7945","H3426"]],[4,5,["H2451"]],[5,6,["H3504"]],[6,7,["H4480","H5531"]],[7,11,["H216"]],[11,12,["H3504"]],[12,13,["H4480","H2822"]]]},{"k":17347,"v":[[0,3,["H2450"]],[3,4,["H5869"]],[4,8,["H7218"]],[8,11,["H3684"]],[11,12,["H1980"]],[12,14,["H2822"]],[14,17,["H589"]],[17,18,["H3045"]],[18,19,["H1571"]],[19,22,["H7945","H4745","H259"]],[22,23,["H7136"]],[23,24,["H854"]],[24,26,["H3605"]]]},{"k":17348,"v":[[0,2,["H559"]],[2,3,["H589"]],[3,6,["H3820"]],[6,9,["H4745"]],[9,12,["H3684"]],[12,15,["H7136"]],[15,16,["H1571"]],[16,20,["H4100"]],[20,22,["H589"]],[22,23,["H227"]],[23,24,["H3148"]],[24,25,["H2449"]],[25,28,["H1696"]],[28,31,["H3820"]],[31,33,["H2088"]],[33,34,["H7945","H1571"]],[34,36,["H1892"]]]},{"k":17349,"v":[[0,1,["H3588"]],[1,4,["H369"]],[4,5,["H2146"]],[5,8,["H2450"]],[8,10,["H5973"]],[10,13,["H3684"]],[13,15,["H5769"]],[15,19,["H7945","H3528"]],[19,23,["H3117"]],[23,25,["H935"]],[25,27,["H3605"]],[27,29,["H7911"]],[29,31,["H349"]],[31,32,["H4191"]],[32,34,["H2450"]],[34,36,["H5973"]],[36,38,["H3684"]]]},{"k":17350,"v":[[0,3,["H8130","(H853)"]],[3,4,["H2416"]],[4,5,["H3588"]],[5,7,["H4639"]],[7,10,["H7945","H6213"]],[10,11,["H8478"]],[11,13,["H8121"]],[13,15,["H7451"]],[15,16,["H5921"]],[16,18,["H3588"]],[18,19,["H3605"]],[19,21,["H1892"]],[21,23,["H7469"]],[23,25,["H7307"]]]},{"k":17351,"v":[[0,2,["H589"]],[2,3,["H8130","(H853)"]],[3,4,["H3605"]],[4,6,["H5999"]],[6,8,["H7945","H589"]],[8,10,["H6001"]],[10,11,["H8478"]],[11,13,["H8121"]],[13,17,["H7945","H5117"]],[17,21,["H120"]],[21,24,["H7945","H1961"]],[24,25,["H310"]],[25,26,[]]]},{"k":17352,"v":[[0,2,["H4310"]],[2,3,["H3045"]],[3,7,["H1961"]],[7,9,["H2450"]],[9,11,["H176"]],[11,13,["H5530"]],[13,18,["H7980"]],[18,20,["H3605"]],[20,22,["H5999"]],[22,26,["H7945","H5998"]],[26,33,["H7945","H2449"]],[33,34,["H8478"]],[34,36,["H8121"]],[36,37,["H2088"]],[37,39,["H1571"]],[39,40,["H1892"]]]},{"k":17353,"v":[[0,2,["H589"]],[2,4,["H5437"]],[4,6,["(H853)"]],[6,8,["H3820"]],[8,10,["H2976"]],[10,11,["H5921"]],[11,12,["H3605"]],[12,14,["H5999"]],[14,17,["H7945","H5998"]],[17,18,["H8478"]],[18,20,["H8121"]]]},{"k":17354,"v":[[0,1,["H3588"]],[1,3,["H3426"]],[3,5,["H120"]],[5,7,["H7945","H5999"]],[7,10,["H2451"]],[10,13,["H1847"]],[13,16,["H3788"]],[16,20,["H120"]],[20,23,["H7945","H3808"]],[23,24,["H5998"]],[24,28,["H5414"]],[28,32,["H2506"]],[32,33,["H2088"]],[33,34,["H1571"]],[34,36,["H1892"]],[36,39,["H7227"]],[39,40,["H7451"]]]},{"k":17355,"v":[[0,1,["H3588"]],[1,2,["H4100"]],[2,3,["H1933"]],[3,4,["H120"]],[4,6,["H3605"]],[6,8,["H5999"]],[8,12,["H7475"]],[12,15,["H3820"]],[15,17,["H7945","H1931"]],[17,19,["H6001"]],[19,20,["H8478"]],[20,22,["H8121"]]]},{"k":17356,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,4,["H3117"]],[4,6,["H4341"]],[6,9,["H6045"]],[9,10,["H3708"]],[10,11,["H1571"]],[11,13,["H3820"]],[13,15,["H3808"]],[15,16,["H7901"]],[16,19,["H3915"]],[19,20,["H2088"]],[20,22,["H1571"]],[22,23,["H1892"]]]},{"k":17357,"v":[[0,3,["H369"]],[3,4,["H2896"]],[4,7,["H120"]],[7,12,["H7945","H398"]],[12,14,["H8354"]],[14,21,["(H853)","H5315"]],[21,22,["H7200"]],[22,23,["H2896"]],[23,26,["H5999"]],[26,27,["H2090"]],[27,28,["H1571"]],[28,29,["H589"]],[29,30,["H7200"]],[30,31,["H3588"]],[31,32,["H1931"]],[32,36,["H4480","H3027"]],[36,38,["H430"]]]},{"k":17358,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,4,["H398"]],[4,6,["H4310"]],[6,9,["H2363"]],[9,11,["H2351"]],[11,12,["H4480"]],[12,13,[]]]},{"k":17359,"v":[[0,1,["H3588"]],[1,3,["H5414"]],[3,6,["H120"]],[6,9,["H7945","H2896"]],[9,12,["H6440"]],[12,13,["H2451"]],[13,15,["H1847"]],[15,17,["H8057"]],[17,21,["H2398"]],[21,23,["H5414"]],[23,24,["H6045"]],[24,26,["H622"]],[26,30,["H3664"]],[30,34,["H5414"]],[34,39,["H2896"]],[39,40,["H6440"]],[40,41,["H430"]],[41,42,["H2088"]],[42,43,["H1571"]],[43,45,["H1892"]],[45,47,["H7469"]],[47,49,["H7307"]]]},{"k":17360,"v":[[0,2,["H3605"]],[2,7,["H2165"]],[7,10,["H6256"]],[10,12,["H3605"]],[12,13,["H2656"]],[13,14,["H8478"]],[14,16,["H8064"]]]},{"k":17361,"v":[[0,2,["H6256"]],[2,5,["H3205"]],[5,8,["H6256"]],[8,10,["H4191"]],[10,12,["H6256"]],[12,14,["H5193"]],[14,17,["H6256"]],[17,20,["H6131"]],[20,24,["H5193"]]]},{"k":17362,"v":[[0,2,["H6256"]],[2,4,["H2026"]],[4,7,["H6256"]],[7,9,["H7495"]],[9,11,["H6256"]],[11,14,["H6555"]],[14,17,["H6256"]],[17,20,["H1129"]]]},{"k":17363,"v":[[0,2,["H6256"]],[2,4,["H1058"]],[4,7,["H6256"]],[7,9,["H7832"]],[9,11,["H6256"]],[11,13,["H5594"]],[13,16,["H6256"]],[16,18,["H7540"]]]},{"k":17364,"v":[[0,2,["H6256"]],[2,5,["H7993"]],[5,6,["H68"]],[6,9,["H6256"]],[9,13,["H3664","H68"]],[13,15,["H6256"]],[15,17,["H2263"]],[17,20,["H6256"]],[20,22,["H7368"]],[22,24,["H4480","H2263"]]]},{"k":17365,"v":[[0,2,["H6256"]],[2,4,["H1245"]],[4,7,["H6256"]],[7,9,["H6"]],[9,11,["H6256"]],[11,13,["H8104"]],[13,16,["H6256"]],[16,19,["H7993"]]]},{"k":17366,"v":[[0,2,["H6256"]],[2,4,["H7167"]],[4,7,["H6256"]],[7,9,["H8609"]],[9,11,["H6256"]],[11,14,["H2814"]],[14,17,["H6256"]],[17,19,["H1696"]]]},{"k":17367,"v":[[0,2,["H6256"]],[2,4,["H157"]],[4,7,["H6256"]],[7,9,["H8130"]],[9,11,["H6256"]],[11,13,["H4421"]],[13,16,["H6256"]],[16,18,["H7965"]]]},{"k":17368,"v":[[0,1,["H4100"]],[1,2,["H3504"]],[2,6,["H6213"]],[6,9,["H834"]],[9,10,["H1931"]],[10,11,["H6001"]]]},{"k":17369,"v":[[0,3,["H7200","(H853)"]],[3,5,["H6045"]],[5,6,["H834"]],[6,7,["H430"]],[7,9,["H5414"]],[9,12,["H1121"]],[12,14,["H120"]],[14,17,["H6031"]],[17,19,[]]]},{"k":17370,"v":[[0,3,["H6213","(H853)"]],[3,4,["H3605"]],[4,6,["H3303"]],[6,9,["H6256"]],[9,10,["H1571"]],[10,13,["H5414","(H853)"]],[13,15,["H5769"]],[15,18,["H3820"]],[18,20,["H834"]],[20,21,["H4480","H1097"]],[21,22,["H120"]],[22,25,["H4672","(H853)"]],[25,27,["H4639"]],[27,28,["H834"]],[28,29,["H430"]],[29,30,["H6213"]],[30,33,["H4480","H7218"]],[33,34,["H5704"]],[34,36,["H5490"]]]},{"k":17371,"v":[[0,2,["H3045"]],[2,3,["H3588"]],[3,6,["H369"]],[6,7,["H2896"]],[7,10,["H518"]],[10,11,["H3588"]],[11,15,["H8055"]],[15,18,["H6213"]],[18,19,["H2896"]],[19,22,["H2416"]]]},{"k":17372,"v":[[0,2,["H1571"]],[2,7,["H7945","H398","H3605","H120"]],[7,9,["H8354"]],[9,11,["H7200"]],[11,13,["H2896"]],[13,15,["H3605"]],[15,17,["H5999"]],[17,18,["H1931"]],[18,21,["H4991"]],[21,23,["H430"]]]},{"k":17373,"v":[[0,2,["H3045"]],[2,3,["H3588"]],[3,4,["H3605","H834"]],[4,5,["H430"]],[5,6,["H6213"]],[6,7,["H1931"]],[7,9,["H1961"]],[9,11,["H5769"]],[11,12,["H369"]],[12,15,["H3254"]],[15,16,["H5921"]],[16,18,["H369"]],[18,21,["H1639"]],[21,22,["H4480"]],[22,25,["H430"]],[25,26,["H6213"]],[26,31,["H7945","H3372"]],[31,32,["H4480","H6440"]],[32,33,[]]]},{"k":17374,"v":[[0,4,["H4100","H7945","H1961"]],[4,6,["H3528"]],[6,8,["H1931"]],[8,9,["H834"]],[9,12,["H1961"]],[12,14,["H3528"]],[14,15,["H1961"]],[15,17,["H430"]],[17,18,["H1245","(H853)"]],[18,22,["H7291"]]]},{"k":17375,"v":[[0,2,["H5750"]],[2,4,["H7200"]],[4,5,["H8478"]],[5,7,["H8121"]],[7,9,["H4725"]],[9,11,["H4941"]],[11,13,["H7562"]],[13,15,["H8033"]],[15,18,["H4725"]],[18,20,["H6664"]],[20,22,["H7562"]],[22,24,["H8033"]]]},{"k":17376,"v":[[0,1,["H589"]],[1,2,["H559"]],[2,5,["H3820"]],[5,6,["H430"]],[6,8,["H8199","(H853)"]],[8,10,["H6662"]],[10,13,["H7563"]],[13,14,["H3588"]],[14,18,["H6256"]],[18,19,["H8033"]],[19,21,["H3605"]],[21,22,["H2656"]],[22,24,["H5921"]],[24,25,["H3605"]],[25,26,["H4639"]]]},{"k":17377,"v":[[0,1,["H589"]],[1,2,["H559"]],[2,5,["H3820"]],[5,6,["H5921"]],[6,8,["H1700"]],[8,11,["H1121"]],[11,13,["H120"]],[13,15,["H430"]],[15,17,["H1305"]],[17,21,["H1992"]],[21,23,["H7200"]],[23,25,["H7945"]],[25,28,["H929"]]]},{"k":17378,"v":[[0,1,["H3588"]],[1,4,["H4745"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H4745"]],[9,10,["H929"]],[10,13,["H259"]],[13,14,["H4745"]],[14,18,["H2088"]],[18,19,["H4194"]],[19,20,["H3651"]],[20,21,["H4194"]],[21,23,["H2088"]],[23,27,["H3605"]],[27,28,["H259"]],[28,29,["H7307"]],[29,33,["H120"]],[33,35,["H369"]],[35,36,["H4195"]],[36,37,["H4480"]],[37,39,["H929"]],[39,40,["H3588"]],[40,41,["H3605"]],[41,43,["H1892"]]]},{"k":17379,"v":[[0,1,["H3605"]],[1,2,["H1980"]],[2,3,["H413"]],[3,4,["H259"]],[4,5,["H4725"]],[5,6,["H3605"]],[6,7,["H1961"]],[7,8,["H4480"]],[8,10,["H6083"]],[10,12,["H3605"]],[12,16,["H7725","H413","H6083"]]]},{"k":17380,"v":[[0,1,["H4310"]],[1,2,["H3045"]],[2,4,["H7307"]],[4,6,["H120"]],[6,7,["H1931"]],[7,8,["H5927"]],[8,9,["H4605"]],[9,12,["H7307"]],[12,15,["H929"]],[15,16,["H1931"]],[16,17,["H3381"]],[17,18,["H4295"]],[18,21,["H776"]]]},{"k":17381,"v":[[0,3,["H7200"]],[3,4,["H3588"]],[4,7,["H369"]],[7,8,["H2896"]],[8,10,["H4480","H834"]],[10,12,["H120"]],[12,14,["H8055"]],[14,18,["H4639"]],[18,19,["H3588"]],[19,20,["H1931"]],[20,23,["H2506"]],[23,24,["H3588"]],[24,25,["H4310"]],[25,27,["H935"]],[27,30,["H7200"]],[30,33,["H4100","H7945","H1961"]],[33,34,["H310"]],[34,35,[]]]},{"k":17382,"v":[[0,2,["H589"]],[2,3,["H7725"]],[3,5,["H7200","(H853)"]],[5,6,["H3605"]],[6,8,["H6217"]],[8,9,["H834"]],[9,11,["H6213"]],[11,12,["H8478"]],[12,14,["H8121"]],[14,16,["H2009"]],[16,18,["H1832"]],[18,23,["H6217"]],[23,27,["H369"]],[27,28,["H5162"]],[28,32,["H4480","H3027"]],[32,35,["H6231"]],[35,38,["H3581"]],[38,42,["H369"]],[42,43,["H5162"]]]},{"k":17383,"v":[[0,2,["H589"]],[2,3,["H7623","(H853)"]],[3,5,["H4191"]],[5,8,["H7945","H3528"]],[8,9,["H4191"]],[9,11,["H4480"]],[11,13,["H2416"]],[13,14,["H834","H1992"]],[14,16,["H5728"]],[16,17,["H2416"]]]},{"k":17384,"v":[[0,2,["H2896"]],[2,6,["H4480","H8147"]],[6,7,["(H853)"]],[7,8,["H834"]],[8,10,["H3808"]],[10,11,["H5728"]],[11,12,["H1961"]],[12,13,["H834"]],[13,15,["H3808"]],[15,16,["H7200","(H853)"]],[16,18,["H7451"]],[18,19,["H4639"]],[19,20,["H834"]],[20,22,["H6213"]],[22,23,["H8478"]],[23,25,["H8121"]]]},{"k":17385,"v":[[0,2,["H589"]],[2,3,["H7200","(H853)"]],[3,4,["H3605"]],[4,5,["H5999"]],[5,7,["H3605"]],[7,8,["H3788"]],[8,9,["H4639"]],[9,10,["H3588"]],[10,12,["H1931"]],[12,14,["H376"]],[14,16,["H7068"]],[16,19,["H4480","H7453"]],[19,20,["H2088"]],[20,22,["H1571"]],[22,23,["H1892"]],[23,25,["H7469"]],[25,27,["H7307"]]]},{"k":17386,"v":[[0,2,["H3684"]],[2,6,["H2263","(H853)","H3027"]],[6,8,["H398","(H853)"]],[8,11,["H1320"]]]},{"k":17387,"v":[[0,1,["H2896"]],[1,4,["H4480","H4393","H3709"]],[4,6,["H5183"]],[6,10,["H2651"]],[10,11,["H4480","H4393"]],[11,13,["H5999"]],[13,15,["H7469"]],[15,17,["H7307"]]]},{"k":17388,"v":[[0,2,["H589"]],[2,3,["H7725"]],[3,6,["H7200"]],[6,7,["H1892"]],[7,8,["H8478"]],[8,10,["H8121"]]]},{"k":17389,"v":[[0,2,["H3426"]],[2,3,["H259"]],[3,8,["H369"]],[8,10,["H8145"]],[10,11,["H1571"]],[11,14,["H369"]],[14,15,["H1121"]],[15,17,["H251"]],[17,21,["H369"]],[21,22,["H7093"]],[22,24,["H3605"]],[24,26,["H5999"]],[26,27,["H3808"]],[27,30,["H5869"]],[30,31,["H7646"]],[31,33,["H6239"]],[33,38,["H4310"]],[38,40,["H589"]],[40,41,["H6001"]],[41,43,["H2637","(H853)"]],[43,45,["H5315"]],[45,47,["H4480","H2896"]],[47,48,["H2088"]],[48,50,["H1571"]],[50,51,["H1892"]],[51,53,["H1931"]],[53,56,["H7451"]],[56,57,["H6045"]]]},{"k":17390,"v":[[0,1,["H8147"]],[1,3,["H2896"]],[3,4,["H4480"]],[4,5,["H259"]],[5,6,["H834"]],[6,8,["H3426"]],[8,10,["H2896"]],[10,11,["H7939"]],[11,14,["H5999"]]]},{"k":17391,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,4,["H5307"]],[4,6,["H259"]],[6,9,["H6965","(H853)"]],[9,11,["H2270"]],[11,13,["H337"]],[13,18,["H259"]],[18,21,["H7945","H5307"]],[21,25,["H369"]],[25,26,["H8145"]],[26,30,["H6965"]]]},{"k":17392,"v":[[0,1,["H1571"]],[1,2,["H518"]],[2,3,["H8147"]],[3,5,["H7901"]],[5,9,["H2552"]],[9,11,["H349"]],[11,13,["H259"]],[13,15,["H3179"]],[15,16,[]]]},{"k":17393,"v":[[0,2,["H518"]],[2,3,["H259"]],[3,5,["H8630"]],[5,7,["H8147"]],[7,9,["H5975","H5048"]],[9,13,["H8027"]],[13,14,["H2339"]],[14,16,["H3808"]],[16,17,["H4120"]],[17,18,["H5423"]]]},{"k":17394,"v":[[0,1,["H2896"]],[1,4,["H4542"]],[4,7,["H2450"]],[7,8,["H3206"]],[8,11,["H2205"]],[11,13,["H3684"]],[13,14,["H4480","H4428"]],[14,15,["H834"]],[15,16,["H3045"]],[16,17,["H3808"]],[17,18,["H5750"]],[18,20,["H2094"]]]},{"k":17395,"v":[[0,1,["H3588"]],[1,4,["H4480","H1004","H631"]],[4,6,["H3318"]],[6,8,["H4427"]],[8,9,["H3588"]],[9,10,["H1571"]],[10,14,["H3205"]],[14,17,["H4438"]],[17,19,["H7326"]]]},{"k":17396,"v":[[0,2,["H7200","(H853)"]],[2,3,["H3605"]],[3,5,["H2416"]],[5,7,["H1980"]],[7,8,["H8478"]],[8,10,["H8121"]],[10,11,["H5973"]],[11,13,["H8145"]],[13,14,["H3206"]],[14,15,["H834"]],[15,18,["H5975"]],[18,21,["H8478"]]]},{"k":17397,"v":[[0,3,["H369"]],[3,4,["H7093"]],[4,6,["H3605"]],[6,8,["H5971"]],[8,11,["H3605"]],[11,12,["H834"]],[12,14,["H1961"]],[14,15,["H6440"]],[15,18,["H1571"]],[18,21,["H314"]],[21,23,["H3808"]],[23,24,["H8055"]],[24,27,["H3588"]],[27,28,["H2088"]],[28,29,["H1571"]],[29,31,["H1892"]],[31,33,["H7475"]],[33,35,["H7307"]]]},{"k":17398,"v":[[0,1,["H8104"]],[1,3,["H7272"]],[3,4,["H834"]],[4,6,["H1980"]],[6,7,["H413"]],[7,9,["H1004"]],[9,11,["H430"]],[11,15,["H7126"]],[15,17,["H8085"]],[17,20,["H4480","H5414"]],[20,22,["H2077"]],[22,24,["H3684"]],[24,27,["H3045"]],[27,28,["H369"]],[28,29,["H3588"]],[29,31,["H6213"]],[31,32,["H7451"]]]},{"k":17399,"v":[[0,2,["H408"]],[2,3,["H926"]],[3,4,["H5921"]],[4,6,["H6310"]],[6,9,["H408"]],[9,11,["H3820"]],[11,13,["H4116"]],[13,15,["H3318"]],[15,17,["H1697"]],[17,18,["H6440"]],[18,19,["H430"]],[19,20,["H3588"]],[20,21,["H430"]],[21,24,["H8064"]],[24,26,["H859"]],[26,27,["H5921"]],[27,28,["H776"]],[28,29,["H5921","H3651"]],[29,32,["H1697"]],[32,33,["H1961"]],[33,34,["H4592"]]]},{"k":17400,"v":[[0,1,["H3588"]],[1,3,["H2472"]],[3,4,["H935"]],[4,7,["H7230"]],[7,9,["H6045"]],[9,12,["H3684"]],[12,13,["H6963"]],[13,17,["H7230"]],[17,19,["H1697"]]]},{"k":17401,"v":[[0,1,["H834"]],[1,3,["H5087"]],[3,5,["H5088"]],[5,7,["H430"]],[7,8,["H309"]],[8,9,["H408"]],[9,11,["H7999"]],[11,13,["H3588"]],[13,16,["H369"]],[16,17,["H2656"]],[17,19,["H3684"]],[19,20,["H7999","(H853)"]],[20,22,["H834"]],[22,25,["H5087"]]]},{"k":17402,"v":[[0,1,["H2896"]],[1,4,["H834"]],[4,7,["H3808"]],[7,8,["H5087"]],[8,13,["H4480","H7945","H5087"]],[13,15,["H3808"]],[15,16,["H7999"]]]},{"k":17403,"v":[[0,1,["H5414"]],[1,2,["H408","(H853)"]],[2,4,["H6310"]],[4,6,["(H853)"]],[6,8,["H1320"]],[8,10,["H2398"]],[10,11,["H408"]],[11,12,["H559"]],[12,14,["H6440"]],[14,16,["H4397"]],[16,17,["H3588"]],[17,18,["H1931"]],[18,21,["H7684"]],[21,22,["H4100"]],[22,24,["H430"]],[24,26,["H7107"]],[26,27,["H5921"]],[27,29,["H6963"]],[29,31,["H2254","(H853)"]],[31,33,["H4639"]],[33,36,["H3027"]]]},{"k":17404,"v":[[0,1,["H3588"]],[1,4,["H7230"]],[4,6,["H2472"]],[6,8,["H7235"]],[8,9,["H1697"]],[9,14,["H1892"]],[14,15,["H3588"]],[15,16,["H3372"]],[16,17,["(H853)"]],[17,18,["H430"]]]},{"k":17405,"v":[[0,1,["H518"]],[1,3,["H7200"]],[3,5,["H6233"]],[5,8,["H7326"]],[8,11,["H1499"]],[11,13,["H4941"]],[13,15,["H6664"]],[15,18,["H4082"]],[18,19,["H8539"]],[19,20,["H408"]],[20,21,["H5921"]],[21,23,["H2656"]],[23,24,["H3588"]],[24,28,["H1364"]],[28,29,["H4480","H5921"]],[29,31,["H1364"]],[31,32,["H8104"]],[32,36,["H1364"]],[36,37,["H5921"]],[37,38,[]]]},{"k":17406,"v":[[0,3,["H3504"]],[3,6,["H776"]],[6,9,["H3605"]],[9,11,["H4428"]],[11,14,["H5647"]],[14,17,["H7704"]]]},{"k":17407,"v":[[0,3,["H157"]],[3,4,["H3701"]],[4,6,["H3808"]],[6,8,["H7646"]],[8,10,["H3701"]],[10,12,["H4310"]],[12,14,["H157"]],[14,15,["H1995"]],[15,17,["H8393"]],[17,18,["H2088"]],[18,20,["H1571"]],[20,21,["H1892"]]]},{"k":17408,"v":[[0,2,["H2896"]],[2,3,["H7235"]],[3,6,["H7231"]],[6,8,["H398"]],[8,11,["H4100"]],[11,12,["H3788"]],[12,17,["H1167"]],[17,19,["H3588","H518"]],[19,21,["H7200"]],[21,26,["H5869"]]]},{"k":17409,"v":[[0,2,["H8142"]],[2,6,["H5647"]],[6,8,["H4966"]],[8,9,["H518"]],[9,11,["H398"]],[11,12,["H4592"]],[12,13,["H518"]],[13,14,["H7235"]],[14,17,["H7647"]],[17,20,["H6223"]],[20,22,["H369"]],[22,23,["H5117"]],[23,26,["H3462"]]]},{"k":17410,"v":[[0,2,["H3426"]],[2,4,["H2470"]],[4,5,["H7451"]],[5,9,["H7200"]],[9,10,["H8478"]],[10,12,["H8121"]],[12,14,["H6239"]],[14,15,["H8104"]],[15,18,["H1167"]],[18,22,["H7451"]]]},{"k":17411,"v":[[0,2,["H1931"]],[2,3,["H6239"]],[3,4,["H6"]],[4,6,["H7451"]],[6,7,["H6045"]],[7,10,["H3205"]],[10,12,["H1121"]],[12,16,["H369","H3972"]],[16,19,["H3027"]]]},{"k":17412,"v":[[0,1,["H834"]],[1,4,["H3318"]],[4,7,["H517"]],[7,8,["H4480","H990"]],[8,9,["H6174"]],[9,12,["H7725"]],[12,14,["H1980"]],[14,17,["H7945","H935"]],[17,20,["H5375"]],[20,21,["H3808","H3972"]],[21,24,["H5999"]],[24,29,["H7945","H1980"]],[29,32,["H3027"]]]},{"k":17413,"v":[[0,2,["H2090"]],[2,3,["H1571"]],[3,6,["H2470"]],[6,7,["H7451"]],[7,10,["H3605"]],[10,11,["H5980"]],[11,14,["H7945","H935"]],[14,15,["H3651"]],[15,18,["H1980"]],[18,20,["H4100"]],[20,21,["H3504"]],[21,26,["H7945","H5998"]],[26,29,["H7307"]]]},{"k":17414,"v":[[0,1,["H3605"]],[1,3,["H3117"]],[3,4,["H1571"]],[4,6,["H398"]],[6,8,["H2822"]],[8,12,["H7235"]],[12,13,["H3707"]],[13,15,["H7110"]],[15,18,["H2483"]]]},{"k":17415,"v":[[0,1,["H2009"]],[1,3,["H834"]],[3,4,["H589"]],[4,6,["H7200"]],[6,9,["H2896"]],[9,11,["H3303"]],[11,15,["H398"]],[15,18,["H8354"]],[18,21,["H7200"]],[21,23,["H2896"]],[23,25,["H3605"]],[25,27,["H5999"]],[27,30,["H7945","H5998"]],[30,31,["H8478"]],[31,33,["H8121"]],[33,34,["H4557"]],[34,36,["H3117"]],[36,39,["H2416"]],[39,40,["H834"]],[40,41,["H430"]],[41,42,["H5414"]],[42,44,["H3588"]],[44,45,["H1931"]],[45,48,["H2506"]]]},{"k":17416,"v":[[0,1,["H3605"]],[1,2,["H120"]],[2,3,["H1571"]],[3,5,["H834"]],[5,6,["H430"]],[6,8,["H5414"]],[8,9,["H6239"]],[9,11,["H5233"]],[11,16,["H7980"]],[16,18,["H398"]],[18,19,["H4480"]],[19,22,["H5375","(H853)"]],[22,24,["H2506"]],[24,27,["H8055"]],[27,30,["H5999"]],[30,31,["H2090"]],[31,34,["H4991"]],[34,36,["H430"]]]},{"k":17417,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H7235"]],[5,6,["H2142","(H853)"]],[6,8,["H3117"]],[8,11,["H2416"]],[11,12,["H3588"]],[12,13,["H430"]],[13,14,["H6030"]],[14,18,["H8057"]],[18,21,["H3820"]]]},{"k":17418,"v":[[0,2,["H3426"]],[2,4,["H7451"]],[4,5,["H834"]],[5,8,["H7200"]],[8,9,["H8478"]],[9,11,["H8121"]],[11,13,["H1931"]],[13,15,["H7227"]],[15,16,["H5921"]],[16,17,["H120"]]]},{"k":17419,"v":[[0,2,["H376"]],[2,4,["H834"]],[4,5,["H430"]],[5,7,["H5414"]],[7,8,["H6239"]],[8,9,["H5233"]],[9,11,["H3519"]],[11,15,["H2638"]],[15,16,["H369"]],[16,19,["H5315"]],[19,21,["H4480","H3605"]],[21,22,["H834"]],[22,24,["H183"]],[24,26,["H430"]],[26,30,["H7980","H3808"]],[30,32,["H398"]],[32,33,["H4480"]],[33,34,["H3588"]],[34,36,["H376","H5237"]],[36,37,["H398"]],[37,39,["H2088"]],[39,41,["H1892"]],[41,43,["H1931"]],[43,46,["H7451"]],[46,47,["H2483"]]]},{"k":17420,"v":[[0,1,["H518"]],[1,3,["H376"]],[3,4,["H3205"]],[4,6,["H3967"]],[6,9,["H2421"]],[9,10,["H7227"]],[10,11,["H8141"]],[11,15,["H3117"]],[15,18,["H8141"]],[18,19,["H7945","H1961"]],[19,20,["H7227"]],[20,23,["H5315"]],[23,25,["H3808"]],[25,26,["H7646"]],[26,27,["H4480"]],[27,28,["H2896"]],[28,30,["H1571"]],[30,33,["H1961"]],[33,34,["H3808"]],[34,35,["H6900"]],[35,37,["H559"]],[37,41,["H5309"]],[41,43,["H2896"]],[43,44,["H4480"]],[44,45,[]]]},{"k":17421,"v":[[0,1,["H3588"]],[1,3,["H935"]],[3,6,["H1892"]],[6,8,["H1980"]],[8,10,["H2822"]],[10,13,["H8034"]],[13,16,["H3680"]],[16,18,["H2822"]]]},{"k":17422,"v":[[0,1,["H1571"]],[1,4,["H3808"]],[4,5,["H7200"]],[5,7,["H8121"]],[7,8,["H3808"]],[8,9,["H3045"]],[9,12,["H2088"]],[12,15,["H5183"]],[15,18,["H4480","H2088"]]]},{"k":17423,"v":[[0,1,["H432"]],[1,4,["H2421"]],[4,6,["H505"]],[6,7,["H8141"]],[7,8,["H6471"]],[8,13,["H7200"]],[13,14,["H3808"]],[14,15,["H2896"]],[15,17,["H3808"]],[17,18,["H3605"]],[18,19,["H1980"]],[19,20,["H413"]],[20,21,["H259"]],[21,22,["H4725"]]]},{"k":17424,"v":[[0,1,["H3605"]],[1,3,["H5999"]],[3,5,["H120"]],[5,9,["H6310"]],[9,11,["H1571"]],[11,13,["H5315"]],[13,15,["H3808"]],[15,16,["H4390"]]]},{"k":17425,"v":[[0,1,["H3588"]],[1,2,["H4100"]],[2,5,["H2450"]],[5,6,["H3148"]],[6,7,["H4480"]],[7,9,["H3684"]],[9,10,["H4100"]],[10,13,["H6041"]],[13,15,["H3045"]],[15,17,["H1980"]],[17,18,["H5048"]],[18,20,["H2416"]]]},{"k":17426,"v":[[0,1,["H2896"]],[1,4,["H4758"]],[4,7,["H5869"]],[7,10,["H4480","H1980"]],[10,13,["H5315"]],[13,14,["H2088"]],[14,16,["H1571"]],[16,17,["H1892"]],[17,19,["H7469"]],[19,21,["H7307"]]]},{"k":17427,"v":[[0,1,["H4100"]],[1,4,["H7945","H1961"]],[4,6,["H7121","H8034"]],[6,7,["H3528"]],[7,11,["H3045"]],[11,12,["H834"]],[12,13,["H1931"]],[13,15,["H120"]],[15,16,["H3808"]],[16,17,["H3201"]],[17,19,["H1777"]],[19,20,["H5973"]],[20,24,["H7945","H8623"]],[24,25,["H4480"]],[25,26,[]]]},{"k":17428,"v":[[0,1,["H3588"]],[1,3,["H3426"]],[3,4,["H7235"]],[4,5,["H1697"]],[5,7,["H7235"]],[7,8,["H1892"]],[8,9,["H4100"]],[9,11,["H120"]],[11,13,["H3148"]]]},{"k":17429,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,3,["H3045"]],[3,4,["H4100"]],[4,6,["H2896"]],[6,8,["H120"]],[8,11,["H2416"]],[11,12,["H4557"]],[12,14,["H3117"]],[14,17,["H1892"]],[17,18,["H2416"]],[18,21,["H6213"]],[21,24,["H6738"]],[24,25,["H834"]],[25,26,["H4310"]],[26,28,["H5046"]],[28,30,["H120"]],[30,31,["H4100"]],[31,33,["H1961"]],[33,34,["H310"]],[34,36,["H8478"]],[36,38,["H8121"]]]},{"k":17430,"v":[[0,3,["H8034"]],[3,5,["H2896"]],[5,7,["H2896"]],[7,8,["H4480","H8081"]],[8,11,["H3117"]],[11,13,["H4194"]],[13,16,["H4480","H3117"]],[16,19,["H3205"]]]},{"k":17431,"v":[[0,3,["H2896"]],[3,5,["H1980"]],[5,6,["H413"]],[6,8,["H1004"]],[8,10,["H60"]],[10,13,["H4480","H1980"]],[13,14,["H413"]],[14,16,["H1004"]],[16,18,["H4960"]],[18,19,["H834"]],[19,20,["H1931"]],[20,23,["H5490"]],[23,25,["H3605"]],[25,26,["H120"]],[26,29,["H2416"]],[29,31,["H5414"]],[31,33,["H413"]],[33,35,["H3820"]]]},{"k":17432,"v":[[0,1,["H3708"]],[1,3,["H2896"]],[3,5,["H4480","H7814"]],[5,6,["H3588"]],[6,9,["H7455"]],[9,12,["H6440"]],[12,14,["H3820"]],[14,17,["H3190"]]]},{"k":17433,"v":[[0,2,["H3820"]],[2,5,["H2450"]],[5,9,["H1004"]],[9,11,["H60"]],[11,14,["H3820"]],[14,16,["H3684"]],[16,20,["H1004"]],[20,22,["H8057"]]]},{"k":17434,"v":[[0,3,["H2896"]],[3,5,["H8085"]],[5,7,["H1606"]],[7,10,["H2450"]],[10,14,["H4480","H376"]],[14,16,["H8085"]],[16,18,["H7892"]],[18,20,["H3684"]]]},{"k":17435,"v":[[0,1,["H3588"]],[1,4,["H6963"]],[4,6,["H5518"]],[6,7,["H8478"]],[7,9,["H5518"]],[9,10,["H3651"]],[10,13,["H7814"]],[13,16,["H3684"]],[16,17,["H2088"]],[17,18,["H1571"]],[18,20,["H1892"]]]},{"k":17436,"v":[[0,1,["H3588"]],[1,2,["H6233"]],[2,6,["H2450"]],[6,7,["H1984"]],[7,10,["H4979"]],[10,11,["H6","(H853)"]],[11,13,["H3820"]]]},{"k":17437,"v":[[0,1,["H2896"]],[1,4,["H319"]],[4,7,["H1697"]],[7,10,["H4480","H7225"]],[10,14,["H750"]],[14,16,["H7307"]],[16,18,["H2896"]],[18,21,["H4480","H1362"]],[21,23,["H7307"]]]},{"k":17438,"v":[[0,2,["H408"]],[2,3,["H926"]],[3,6,["H7307"]],[6,9,["H3707"]],[9,10,["H3588"]],[10,11,["H3708"]],[11,12,["H5117"]],[12,15,["H2436"]],[15,17,["H3684"]]]},{"k":17439,"v":[[0,1,["H559"]],[1,2,["H408"]],[2,4,["H4100"]],[4,5,["H1961"]],[5,11,["H7945","H3117","H7223"]],[11,12,["H1961"]],[12,13,["H2896"]],[13,15,["H4480","H428"]],[15,16,["H3588"]],[16,19,["H3808"]],[19,20,["H7592"]],[20,21,["H4480","H2451"]],[21,22,["H5921"]],[22,23,["H2088"]]]},{"k":17440,"v":[[0,1,["H2451"]],[1,3,["H2896"]],[3,4,["H5973"]],[4,6,["H5159"]],[6,12,["H3148"]],[12,16,["H7200"]],[16,18,["H8121"]]]},{"k":17441,"v":[[0,1,["H3588"]],[1,2,["H2451"]],[2,5,["H6738"]],[5,7,["H3701"]],[7,10,["H6738"]],[10,13,["H3504"]],[13,15,["H1847"]],[15,18,["H2451"]],[18,20,["H2421"]],[20,24,["H1167"]],[24,25,[]]]},{"k":17442,"v":[[0,1,["H7200","(H853)"]],[1,3,["H4639"]],[3,5,["H430"]],[5,6,["H3588"]],[6,7,["H4310"]],[7,8,["H3201"]],[8,11,["H8626","(H853)"]],[11,12,["H834"]],[12,16,["H5791"]]]},{"k":17443,"v":[[0,3,["H3117"]],[3,5,["H2896"]],[5,6,["H1961"]],[6,7,["H2896"]],[7,11,["H3117"]],[11,13,["H7451"]],[13,14,["H7200"]],[14,15,["H430"]],[15,16,["H1571"]],[16,18,["H6213","(H853)"]],[18,20,["H2088"]],[20,22,["H5980"]],[22,24,["H2088"]],[24,25,["H5921"]],[25,27,["H1700"]],[27,29,["H120"]],[29,31,["H4672"]],[31,32,["H7945","H3808","H3972"]],[32,33,["H310"]],[33,34,[]]]},{"k":17444,"v":[[0,0,["(H853)"]],[0,1,["H3605"]],[1,5,["H7200"]],[5,8,["H3117"]],[8,11,["H1892"]],[11,13,["H3426"]],[13,15,["H6662"]],[15,18,["H6"]],[18,21,["H6664"]],[21,24,["H3426"]],[24,26,["H7563"]],[26,29,["H748"]],[29,34,["H7451"]]]},{"k":17445,"v":[[0,1,["H1961"]],[1,2,["H408"]],[2,3,["H6662"]],[3,5,["H7235"]],[5,6,["H408"]],[6,10,["H2449","H3148"]],[10,11,["H4100"]],[11,15,["H8074"]]]},{"k":17446,"v":[[0,2,["H408"]],[2,4,["H7235"]],[4,5,["H7561"]],[5,6,["H408"]],[6,7,["H1961"]],[7,9,["H5530"]],[9,10,["H4100"]],[10,13,["H4191"]],[13,14,["H3808"]],[14,16,["H6256"]]]},{"k":17447,"v":[[0,3,["H2896"]],[3,4,["H834"]],[4,8,["H270"]],[8,10,["H2088"]],[10,12,["H1571"]],[12,14,["H4480","H2088"]],[14,15,["H5117"]],[15,16,["H408","(H853)"]],[16,18,["H3027"]],[18,19,["H3588"]],[19,22,["H3373"]],[22,23,["H430"]],[23,26,["H3318","(H853)"]],[26,29,["H3605"]]]},{"k":17448,"v":[[0,1,["H2451"]],[1,2,["H5810"]],[2,4,["H2450"]],[4,7,["H4480","H6235"]],[7,8,["H7989"]],[8,10,["H834"]],[10,11,["H1961"]],[11,14,["H5892"]]]},{"k":17449,"v":[[0,1,["H3588"]],[1,4,["H369"]],[4,6,["H6662"]],[6,7,["H120"]],[7,9,["H776"]],[9,10,["H834"]],[10,11,["H6213"]],[11,12,["H2896"]],[12,14,["H2398"]],[14,15,["H3808"]]]},{"k":17450,"v":[[0,1,["H1571"]],[1,2,["H5414"]],[2,3,["H408"]],[3,4,["H3820"]],[4,6,["H3605"]],[6,7,["H1697"]],[7,8,["H834"]],[8,10,["H1696"]],[10,11,["H834","H3808"]],[11,13,["H8085","(H853)"]],[13,15,["H5650"]],[15,16,["H7043"]],[16,17,[]]]},{"k":17451,"v":[[0,1,["H3588"]],[1,2,["H7227","H6471"]],[2,3,["H1571"]],[3,6,["H3820"]],[6,7,["H3045"]],[7,8,["H834"]],[8,10,["H859"]],[10,11,["H1571"]],[11,13,["H7043"]],[13,14,["H312"]]]},{"k":17452,"v":[[0,1,["H3605"]],[1,2,["H2090"]],[2,5,["H5254"]],[5,7,["H2451"]],[7,9,["H559"]],[9,13,["H2449"]],[13,15,["H1931"]],[15,17,["H7350"]],[17,18,["H4480"]],[18,19,[]]]},{"k":17453,"v":[[0,3,["H4100","H7945","H1961"]],[3,5,["H7350"]],[5,8,["H6013","H6013"]],[8,9,["H4310"]],[9,13,["H4672"]]]},{"k":17454,"v":[[0,1,["H589"]],[1,2,["H5437"]],[2,4,["H3820"]],[4,6,["H3045"]],[6,9,["H8446"]],[9,13,["H1245"]],[13,14,["H2451"]],[14,17,["H2808"]],[17,22,["H3045"]],[22,24,["H7562"]],[24,26,["H3689"]],[26,29,["H5531"]],[29,31,["H1947"]]]},{"k":17455,"v":[[0,2,["H589"]],[2,3,["H4672"]],[3,5,["H4751"]],[5,7,["H4480","H4194","(H853)"]],[7,9,["H802"]],[9,10,["H834","H1931"]],[10,11,["H3820"]],[11,13,["H4685"]],[13,15,["H2764"]],[15,18,["H3027"]],[18,20,["H612"]],[20,22,["H2896","H6440"]],[22,23,["H430"]],[23,25,["H4422"]],[25,26,["H4480"]],[26,30,["H2398"]],[30,33,["H3920"]],[33,35,[]]]},{"k":17456,"v":[[0,1,["H7200"]],[1,2,["H2088"]],[2,5,["H4672"]],[5,6,["H559"]],[6,8,["H6953"]],[8,10,["H259"]],[10,12,["H259"]],[12,15,["H4672"]],[15,17,["H2808"]]]},{"k":17457,"v":[[0,1,["H834"]],[1,2,["H5750"]],[2,4,["H5315"]],[4,5,["H1245"]],[5,8,["H4672"]],[8,9,["H3808"]],[9,10,["H259"]],[10,11,["H120"]],[11,14,["H4480","H505"]],[14,17,["H4672"]],[17,20,["H802"]],[20,22,["H3605"]],[22,23,["H428"]],[23,26,["H3808"]],[26,27,["H4672"]]]},{"k":17458,"v":[[0,1,["H7200"]],[1,2,["H2088"]],[2,3,["H905"]],[3,6,["H4672"]],[6,7,["H834"]],[7,8,["H430"]],[8,10,["H6213","(H853)"]],[10,11,["H120"]],[11,12,["H3477"]],[12,14,["H1992"]],[14,17,["H1245"]],[17,18,["H7227"]],[18,19,["H2810"]]]},{"k":17459,"v":[[0,1,["H4310"]],[1,5,["H2450"]],[5,8,["H4310"]],[8,9,["H3045"]],[9,11,["H6592"]],[11,14,["H1697"]],[14,16,["H120"]],[16,17,["H2451"]],[17,20,["H6440"]],[20,22,["H215"]],[22,25,["H5797"]],[25,28,["H6440"]],[28,31,["H8132"]]]},{"k":17460,"v":[[0,1,["H589"]],[1,5,["H8104"]],[5,7,["H4428"]],[7,8,["H6310"]],[8,12,["H5921","H1700"]],[12,15,["H7621"]],[15,17,["H430"]]]},{"k":17461,"v":[[0,2,["H408"]],[2,3,["H926"]],[3,5,["H1980"]],[5,9,["H4480","H6440"]],[9,10,["H5975"]],[10,11,["H408"]],[11,14,["H7451"]],[14,15,["H1697"]],[15,16,["H3588"]],[16,18,["H6213"]],[18,19,["H3605","H834"]],[19,20,["H2654"]],[20,21,[]]]},{"k":17462,"v":[[0,1,["H834"]],[1,3,["H1697"]],[3,6,["H4428"]],[6,10,["H7983"]],[10,12,["H4310"]],[12,14,["H559"]],[14,17,["H4100"]],[17,18,["H6213"]],[18,19,[]]]},{"k":17463,"v":[[0,2,["H8104"]],[2,4,["H4687"]],[4,6,["H3045"]],[6,7,["H3808"]],[7,8,["H7451"]],[8,9,["H1697"]],[9,13,["H2450"]],[13,14,["H3820"]],[14,15,["H3045"]],[15,17,["H6256"]],[17,19,["H4941"]]]},{"k":17464,"v":[[0,1,["H3588"]],[1,3,["H3605"]],[3,4,["H2656"]],[4,6,["H3426"]],[6,7,["H6256"]],[7,9,["H4941"]],[9,10,["H3588"]],[10,12,["H7451"]],[12,14,["H120"]],[14,16,["H7227"]],[16,17,["H5921"]],[17,18,[]]]},{"k":17465,"v":[[0,1,["H3588"]],[1,3,["H3045"]],[3,4,["H369"]],[4,5,["H4100"]],[5,8,["H7945","H1961"]],[8,9,["H3588"]],[9,10,["H4310"]],[10,12,["H5046"]],[12,14,["H834"]],[14,17,["H1961"]]]},{"k":17466,"v":[[0,3,["H369"]],[3,4,["H120"]],[4,7,["H7989"]],[7,10,["H7307"]],[10,12,["H3607","(H853)"]],[12,14,["H7307"]],[14,15,["H369"]],[15,18,["H7983"]],[18,21,["H3117"]],[21,23,["H4194"]],[23,27,["H369"]],[27,28,["H4917"]],[28,31,["H4421"]],[31,32,["H3808"]],[32,34,["H7562"]],[34,35,["H4422","(H853)"]],[35,39,["H1167"]],[39,41,[]]]},{"k":17467,"v":[[0,1,["H3605"]],[1,2,["H2088"]],[2,5,["H7200"]],[5,7,["H5414","(H853)"]],[7,9,["H3820"]],[9,11,["H3605"]],[11,12,["H4639"]],[12,13,["H834"]],[13,15,["H6213"]],[15,16,["H8478"]],[16,18,["H8121"]],[18,22,["H6256"]],[22,23,["H834"]],[23,25,["H120"]],[25,27,["H7980"]],[27,28,["H120"]],[28,32,["H7451"]]]},{"k":17468,"v":[[0,2,["H3651"]],[2,4,["H7200"]],[4,6,["H7563"]],[6,7,["H6912"]],[7,10,["H935"]],[10,12,["H1980"]],[12,15,["H4480","H4725"]],[15,18,["H6918"]],[18,22,["H7911"]],[22,25,["H5892"]],[25,26,["H834"]],[26,29,["H3651"]],[29,30,["H6213"]],[30,31,["H2088"]],[31,33,["H1571"]],[33,34,["H1892"]]]},{"k":17469,"v":[[0,1,["H834"]],[1,3,["H6599"]],[3,5,["H7451"]],[5,6,["H4639"]],[6,8,["H369"]],[8,9,["H6213"]],[9,10,["H4120"]],[10,11,["H5921","H3651"]],[11,13,["H3820"]],[13,16,["H1121"]],[16,18,["H120"]],[18,21,["H4390"]],[21,25,["H6213"]],[25,26,["H7451"]]]},{"k":17470,"v":[[0,1,["H834"]],[1,3,["H2398"]],[3,4,["H6213"]],[4,5,["H7451"]],[5,8,["H3967"]],[8,13,["H748"]],[13,14,["H3588"]],[14,15,["H1571"]],[15,16,["H589"]],[16,17,["H3045"]],[17,18,["H834"]],[18,21,["H1961"]],[21,22,["H2896"]],[22,26,["H3373"]],[26,27,["H430"]],[27,28,["H834"]],[28,29,["H3372"]],[29,30,["H4480","H6440"]],[30,31,[]]]},{"k":17471,"v":[[0,4,["H3808"]],[4,5,["H1961"]],[5,6,["H2896"]],[6,9,["H7563"]],[9,10,["H3808"]],[10,13,["H748"]],[13,15,["H3117"]],[15,20,["H6738"]],[20,21,["H834"]],[21,23,["H3372"]],[23,24,["H369"]],[24,25,["H4480","H6440"]],[25,26,["H430"]]]},{"k":17472,"v":[[0,2,["H3426"]],[2,4,["H1892"]],[4,5,["H834"]],[5,7,["H6213"]],[7,8,["H5921"]],[8,10,["H776"]],[10,11,["H834"]],[11,13,["H3426"]],[13,14,["H6662"]],[14,17,["H834","H413"]],[17,19,["H5060"]],[19,23,["H4639"]],[23,26,["H7563"]],[26,29,["H3426"]],[29,30,["H7563"]],[30,32,["H413"]],[32,35,["H7945","H5060"]],[35,39,["H4639"]],[39,42,["H6662"]],[42,44,["H559"]],[44,47,["H2088","H7945","H1571"]],[47,49,["H1892"]]]},{"k":17473,"v":[[0,2,["H589"]],[2,3,["H7623","(H853)"]],[3,4,["H8057"]],[4,5,["H834"]],[5,7,["H120"]],[7,9,["H369"]],[9,10,["H2896"]],[10,12,["H8478"]],[12,14,["H8121"]],[14,15,["H3588","H518"]],[15,17,["H398"]],[17,20,["H8354"]],[20,24,["H8055"]],[24,26,["H1931"]],[26,28,["H3867"]],[28,33,["H5999"]],[33,35,["H3117"]],[35,38,["H2416"]],[38,39,["H834"]],[39,40,["H430"]],[40,41,["H5414"]],[41,43,["H8478"]],[43,45,["H8121"]]]},{"k":17474,"v":[[0,1,["H834"]],[1,3,["H5414","(H853)"]],[3,5,["H3820"]],[5,7,["H3045"]],[7,8,["H2451"]],[8,11,["H7200","(H853)"]],[11,13,["H6045"]],[13,14,["H834"]],[14,16,["H6213"]],[16,17,["H5921"]],[17,19,["H776"]],[19,20,["H3588"]],[20,21,["H1571"]],[21,25,["H369"]],[25,26,["H3117"]],[26,28,["H3915"]],[28,29,["H7200"]],[29,30,["H8142"]],[30,33,["H5869"]]]},{"k":17475,"v":[[0,3,["H7200","(H853)"]],[3,4,["H3605"]],[4,6,["H4639"]],[6,8,["H430"]],[8,9,["H3588"]],[9,11,["H120"]],[11,12,["H3808","H3201"]],[12,14,["H4672","(H853)"]],[14,16,["H4639"]],[16,17,["H834"]],[17,19,["H6213"]],[19,20,["H8478"]],[20,22,["H8121"]],[22,23,["H7945"]],[23,24,["H834"]],[24,26,["H120"]],[26,27,["H5998"]],[27,31,["H1245"]],[31,35,["H3808"]],[35,36,["H4672"]],[36,38,["H1571"]],[38,40,["H518"]],[40,42,["H2450"]],[42,44,["H559"]],[44,46,["H3045"]],[46,51,["H3808"]],[51,53,["H3201"]],[53,55,["H4672"]],[55,56,[]]]},{"k":17476,"v":[[0,1,["H3588","(H853)"]],[1,2,["H3605"]],[2,3,["H2088"]],[3,5,["H5414"]],[5,6,["H413"]],[6,8,["H3820"]],[8,11,["H952","(H853)"]],[11,12,["H3605"]],[12,13,["H2088"]],[13,14,["H834"]],[14,16,["H6662"]],[16,19,["H2450"]],[19,22,["H5652"]],[22,26,["H3027"]],[26,28,["H430"]],[28,29,["H369"]],[29,30,["H120"]],[30,31,["H3045"]],[31,32,["H1571"]],[32,33,["H160"]],[33,34,["H1571"]],[34,35,["H8135"]],[35,37,["H3605"]],[37,40,["H6440"]],[40,41,[]]]},{"k":17477,"v":[[0,1,["H3605"]],[1,4,["H834"]],[4,6,["H3605"]],[6,9,["H259"]],[9,10,["H4745"]],[10,13,["H6662"]],[13,17,["H7563"]],[17,20,["H2896"]],[20,24,["H2889"]],[24,28,["H2931"]],[28,32,["H2076"]],[32,37,["H834","H2076"]],[37,38,["H369"]],[38,42,["H2896"]],[42,46,["H2398"]],[46,50,["H7650"]],[50,51,["H834"]],[51,54,["H3372"]],[54,56,["H7621"]]]},{"k":17478,"v":[[0,1,["H2088"]],[1,4,["H7451"]],[4,6,["H3605"]],[6,8,["H834"]],[8,10,["H6213"]],[10,11,["H8478"]],[11,13,["H8121"]],[13,14,["H3588"]],[14,17,["H259"]],[17,18,["H4745"]],[18,20,["H3605"]],[20,22,["H1571"]],[22,24,["H3820"]],[24,27,["H1121"]],[27,29,["H120"]],[29,31,["H4390"]],[31,33,["H7451"]],[33,35,["H1947"]],[35,39,["H3824"]],[39,42,["H2416"]],[42,44,["H310"]],[44,48,["H413"]],[48,50,["H4191"]]]},{"k":17479,"v":[[0,1,["H3588"]],[1,3,["H4310"]],[3,4,["H834"]],[4,6,["H2266"]],[6,7,["H413"]],[7,8,["H3605"]],[8,10,["H2416"]],[10,12,["H3426"]],[12,13,["H986"]],[13,14,["H3588"]],[14,16,["H2416"]],[16,17,["H3611"]],[17,19,["H2896"]],[19,20,["H4480"]],[20,22,["H4191"]],[22,23,["H738"]]]},{"k":17480,"v":[[0,1,["H3588"]],[1,3,["H2416"]],[3,4,["H3045"]],[4,8,["H7945","H4191"]],[8,11,["H4191"]],[11,12,["H3045"]],[12,13,["H369"]],[13,15,["H3972"]],[15,16,["H369"]],[16,20,["H5750"]],[20,22,["H7939"]],[22,23,["H3588"]],[23,25,["H2143"]],[25,29,["H7911"]]]},{"k":17481,"v":[[0,1,["H1571"]],[1,3,["H160"]],[3,4,["H1571"]],[4,6,["H8135"]],[6,7,["H1571"]],[7,9,["H7068"]],[9,11,["H3528"]],[11,12,["H6"]],[12,13,["H369"]],[13,17,["H5750"]],[17,19,["H2506"]],[19,21,["H5769"]],[21,23,["H3605"]],[23,25,["H834"]],[25,27,["H6213"]],[27,28,["H8478"]],[28,30,["H8121"]]]},{"k":17482,"v":[[0,1,["H1980"]],[1,4,["H398"]],[4,6,["H3899"]],[6,8,["H8057"]],[8,10,["H8354"]],[10,12,["H3196"]],[12,15,["H2896"]],[15,16,["H3820"]],[16,17,["H3588"]],[17,18,["H430"]],[18,19,["H3528"]],[19,20,["H7521","(H853)"]],[20,22,["H4639"]]]},{"k":17483,"v":[[0,3,["H899"]],[3,4,["H1961"]],[4,5,["H3605","H6256"]],[5,6,["H3836"]],[6,10,["H7218"]],[10,11,["H2637"]],[11,12,["H408"]],[12,13,["H8081"]]]},{"k":17484,"v":[[0,2,["H2416","H7200"]],[2,3,["H5973"]],[3,5,["H802"]],[5,6,["H834"]],[6,8,["H157"]],[8,9,["H3605"]],[9,11,["H3117"]],[11,14,["H2416"]],[14,17,["H1892"]],[17,18,["H834"]],[18,21,["H5414"]],[21,23,["H8478"]],[23,25,["H8121"]],[25,26,["H3605"]],[26,28,["H3117"]],[28,31,["H1892"]],[31,32,["H3588"]],[32,33,["H1931"]],[33,36,["H2506"]],[36,39,["H2416"]],[39,43,["H5999"]],[43,44,["H834"]],[44,45,["H859"]],[45,46,["H6001"]],[46,47,["H8478"]],[47,49,["H8121"]]]},{"k":17485,"v":[[0,1,["H3605","H834"]],[1,3,["H3027"]],[3,4,["H4672"]],[4,6,["H6213"]],[6,7,["H6213"]],[7,11,["H3581"]],[11,12,["H3588"]],[12,15,["H369"]],[15,16,["H4639"]],[16,18,["H2808"]],[18,20,["H1847"]],[20,22,["H2451"]],[22,25,["H7585"]],[25,26,["H834","H8033"]],[26,27,["H859"]],[27,28,["H1980"]]]},{"k":17486,"v":[[0,2,["H7725"]],[2,4,["H7200"]],[4,5,["H8478"]],[5,7,["H8121"]],[7,8,["H3588"]],[8,10,["H4793"]],[10,12,["H3808"]],[12,15,["H7031"]],[15,16,["H3808"]],[16,18,["H4421"]],[18,21,["H1368"]],[21,22,["H3808"]],[22,23,["H1571"]],[23,24,["H3899"]],[24,27,["H2450"]],[27,28,["H3808"]],[28,29,["H1571"]],[29,30,["H6239"]],[30,34,["H995"]],[34,35,["H3808"]],[35,36,["H1571"]],[36,37,["H2580"]],[37,41,["H3045"]],[41,42,["H3588"]],[42,43,["H6256"]],[43,45,["H6294"]],[45,46,["H7136"]],[46,47,["(H853)"]],[47,49,["H3605"]]]},{"k":17487,"v":[[0,1,["H3588"]],[1,2,["H120"]],[2,3,["H1571"]],[3,4,["H3045"]],[4,5,["H3808","(H853)"]],[5,7,["H6256"]],[7,10,["H1709"]],[10,13,["H7945","H270"]],[13,16,["H7451"]],[16,17,["H4686"]],[17,21,["H6833"]],[21,24,["H270"]],[24,27,["H6341"]],[27,31,["H1121"]],[31,33,["H120"]],[33,34,["H3369"]],[34,37,["H7451"]],[37,38,["H6256"]],[38,41,["H7945","H5307"]],[41,42,["H6597"]],[42,43,["H5921"]],[43,44,[]]]},{"k":17488,"v":[[0,1,["H2090"]],[1,2,["H2451"]],[2,5,["H7200"]],[5,6,["H1571"]],[6,7,["H8478"]],[7,9,["H8121"]],[9,11,["H1931"]],[11,13,["H1419"]],[13,14,["H413"]],[14,15,[]]]},{"k":17489,"v":[[0,4,["H6996"]],[4,5,["H5892"]],[5,7,["H4592"]],[7,8,["H376"]],[8,13,["H935"]],[13,15,["H1419"]],[15,16,["H4428"]],[16,17,["H413"]],[17,20,["H5437"]],[20,23,["H1129"]],[23,24,["H1419"]],[24,25,["H4685"]],[25,26,["H5921"]],[26,27,[]]]},{"k":17490,"v":[[0,4,["H4672"]],[4,8,["H4542"]],[8,9,["H2450"]],[9,10,["H376"]],[10,12,["H1931"]],[12,15,["H2451"]],[15,16,["H4422","(H853)"]],[16,18,["H5892"]],[18,20,["H3808"]],[20,21,["H120"]],[21,22,["H2142","(H853)"]],[22,24,["H1931"]],[24,25,["H4542"]],[25,26,["H376"]]]},{"k":17491,"v":[[0,2,["H559"]],[2,3,["H589"]],[3,4,["H2451"]],[4,6,["H2896"]],[6,8,["H4480","H1369"]],[8,12,["H4542"]],[12,13,["H2451"]],[13,15,["H959"]],[15,18,["H1697"]],[18,20,["H369"]],[20,21,["H8085"]]]},{"k":17492,"v":[[0,2,["H1697"]],[2,4,["H2450"]],[4,7,["H8085"]],[7,9,["H5183"]],[9,13,["H4480","H2201"]],[13,17,["H4910"]],[17,19,["H3684"]]]},{"k":17493,"v":[[0,1,["H2451"]],[1,3,["H2896"]],[3,5,["H4480","H3627"]],[5,7,["H7128"]],[7,9,["H259"]],[9,10,["H2398"]],[10,11,["H6"]],[11,12,["H7235"]],[12,13,["H2896"]]]},{"k":17494,"v":[[0,1,["H4194"]],[1,2,["H2070"]],[2,5,["H8081"]],[5,8,["H7543"]],[8,11,["H5042"]],[11,14,["H887"]],[14,18,["H4592"]],[18,19,["H5531"]],[19,24,["H3368"]],[24,26,["H4480","H2451"]],[26,28,["H4480","H3519"]]]},{"k":17495,"v":[[0,3,["H2450"]],[3,4,["H3820"]],[4,9,["H3225"]],[9,12,["H3684"]],[12,13,["H3820"]],[13,16,["H8040"]]]},{"k":17496,"v":[[0,2,["H1571"]],[2,8,["H7945","H5530"]],[8,9,["H1980"]],[9,12,["H1870"]],[12,14,["H3820"]],[14,15,["H2638"]],[15,19,["H559"]],[19,22,["H3605"]],[22,24,["H1931"]],[24,27,["H5530"]]]},{"k":17497,"v":[[0,1,["H518"]],[1,3,["H7307"]],[3,6,["H4910"]],[6,8,["H5927"]],[8,9,["H5921"]],[9,11,["H5117"]],[11,12,["H408"]],[12,14,["H4725"]],[14,15,["H3588"]],[15,16,["H4832"]],[16,17,["H5117"]],[17,18,["H1419"]],[18,19,["H2399"]]]},{"k":17498,"v":[[0,2,["H3426"]],[2,4,["H7451"]],[4,8,["H7200"]],[8,9,["H8478"]],[9,11,["H8121"]],[11,14,["H7684"]],[14,16,["H7945","H3318"]],[16,17,["H4480","H6440"]],[17,19,["H7989"]]]},{"k":17499,"v":[[0,1,["H5529"]],[1,3,["H5414"]],[3,5,["H7227"]],[5,6,["H4791"]],[6,9,["H6223"]],[9,10,["H3427"]],[10,13,["H8216"]]]},{"k":17500,"v":[[0,3,["H7200"]],[3,4,["H5650"]],[4,5,["H5921"]],[5,6,["H5483"]],[6,8,["H8269"]],[8,9,["H1980"]],[9,11,["H5650"]],[11,12,["H5921"]],[12,14,["H776"]]]},{"k":17501,"v":[[0,3,["H2658"]],[3,5,["H1475"]],[5,7,["H5307"]],[7,12,["H6555"]],[12,14,["H1447"]],[14,16,["H5175"]],[16,18,["H5391"]],[18,19,[]]]},{"k":17502,"v":[[0,2,["H5265"]],[2,3,["H68"]],[3,6,["H6087"]],[6,11,["H1234"]],[11,12,["H6086"]],[12,15,["H5533"]],[15,16,[]]]},{"k":17503,"v":[[0,1,["H518"]],[1,3,["H1270"]],[3,5,["H6949"]],[5,7,["H1931"]],[7,9,["H3808"]],[9,10,["H7043"]],[10,12,["H6440"]],[12,17,["H1396"]],[17,19,["H2428"]],[19,21,["H2451"]],[21,23,["H3504"]],[23,25,["H3787"]]]},{"k":17504,"v":[[0,1,["H518"]],[1,3,["H5175"]],[3,5,["H5391"]],[5,6,["H3808"]],[6,7,["H3908"]],[7,10,["H1167","H3956"]],[10,12,["H369"]],[12,13,["H3504"]]]},{"k":17505,"v":[[0,2,["H1697"]],[2,6,["H2450"]],[6,7,["H6310"]],[7,9,["H2580"]],[9,12,["H8193"]],[12,15,["H3684"]],[15,18,["H1104"]],[18,19,[]]]},{"k":17506,"v":[[0,2,["H8462"]],[2,5,["H1697"]],[5,8,["H6310"]],[8,10,["H5531"]],[10,13,["H319"]],[13,16,["H6310"]],[16,18,["H7451"]],[18,19,["H1948"]]]},{"k":17507,"v":[[0,2,["H5530"]],[2,5,["H7235"]],[5,7,["H1697"]],[7,9,["H120"]],[9,10,["H3808"]],[10,11,["H3045"]],[11,14,["H4100","H7945","H1961"]],[14,16,["H834"]],[16,18,["H1961"]],[18,19,["H4480","H310"]],[19,21,["H4310"]],[21,23,["H5046"]],[23,24,[]]]},{"k":17508,"v":[[0,2,["H5999"]],[2,5,["H3684"]],[5,6,["H3021"]],[6,11,["H834"]],[11,13,["H3045"]],[13,14,["H3808"]],[14,17,["H1980"]],[17,18,["H413"]],[18,20,["H5892"]]]},{"k":17509,"v":[[0,1,["H337"]],[1,5,["H776"]],[5,8,["H7945","H4428"]],[8,11,["H5288"]],[11,14,["H8269"]],[14,15,["H398"]],[15,18,["H1242"]]]},{"k":17510,"v":[[0,1,["H835"]],[1,5,["H776"]],[5,8,["H7945","H4428"]],[8,11,["H1121"]],[11,13,["H2715"]],[13,16,["H8269"]],[16,17,["H398"]],[17,20,["H6256"]],[20,22,["H1369"]],[22,24,["H3808"]],[24,26,["H8358"]]]},{"k":17511,"v":[[0,3,["H6103"]],[3,5,["H4746"]],[5,6,["H4355"]],[6,9,["H8220"]],[9,12,["H3027"]],[12,14,["H1004"]],[14,16,["H1811"]]]},{"k":17512,"v":[[0,2,["H3899"]],[2,4,["H6213"]],[4,6,["H7814"]],[6,8,["H3196"]],[8,10,["H8055","H2416"]],[10,12,["H3701"]],[12,13,["H6030","(H853)"]],[13,14,["H3605"]],[14,15,[]]]},{"k":17513,"v":[[0,1,["H7043"]],[1,2,["H408"]],[2,4,["H4428"]],[4,5,["H1571"]],[5,9,["H4093"]],[9,11,["H7043"]],[11,12,["H408"]],[12,14,["H6223"]],[14,17,["H2315","H4904"]],[17,18,["H3588"]],[18,20,["H5775"]],[20,23,["H8064"]],[23,25,["H1980","(H853)"]],[25,27,["H6963"]],[27,31,["H1167"]],[31,32,["H3671"]],[32,34,["H5046"]],[34,36,["H1697"]]]},{"k":17514,"v":[[0,1,["H7971"]],[1,3,["H3899"]],[3,4,["H5921","H6440"]],[4,6,["H4325"]],[6,7,["H3588"]],[7,10,["H4672"]],[10,13,["H7230"]],[13,14,["H3117"]]]},{"k":17515,"v":[[0,1,["H5414"]],[1,3,["H2506"]],[3,5,["H7651"]],[5,7,["H1571"]],[7,9,["H8083"]],[9,10,["H3588"]],[10,12,["H3045"]],[12,13,["H3808"]],[13,14,["H4100"]],[14,15,["H7451"]],[15,17,["H1961"]],[17,18,["H5921"]],[18,20,["H776"]]]},{"k":17516,"v":[[0,1,["H518"]],[1,3,["H5645"]],[3,5,["H4390"]],[5,7,["H1653"]],[7,9,["H7324"]],[9,11,["H5921"]],[11,13,["H776"]],[13,15,["H518"]],[15,17,["H6086"]],[17,18,["H5307"]],[18,21,["H1864"]],[21,22,["H518"]],[22,25,["H6828"]],[25,28,["H4725"]],[28,31,["H6086"]],[31,32,["H7945","H5307"]],[32,33,["H8033"]],[33,34,["H1933"]],[34,36,[]]]},{"k":17517,"v":[[0,3,["H8104"]],[3,5,["H7307"]],[5,7,["H3808"]],[7,8,["H2232"]],[8,12,["H7200"]],[12,14,["H5645"]],[14,16,["H3808"]],[16,17,["H7114"]]]},{"k":17518,"v":[[0,1,["H834"]],[1,3,["H3045"]],[3,4,["H369"]],[4,5,["H4100"]],[5,8,["H1870"]],[8,11,["H7307"]],[11,15,["H6106"]],[15,20,["H990"]],[20,26,["H4392"]],[26,28,["H3602"]],[28,30,["H3045"]],[30,31,["H3808","(H853)"]],[31,33,["H4639"]],[33,35,["H430"]],[35,36,["H834"]],[36,37,["H6213","(H853)"]],[37,38,["H3605"]]]},{"k":17519,"v":[[0,3,["H1242"]],[3,4,["H2232","(H853)"]],[4,6,["H2233"]],[6,10,["H6153"]],[10,11,["H5117"]],[11,12,["H408"]],[12,14,["H3027"]],[14,15,["H3588"]],[15,17,["H3045"]],[17,18,["H369"]],[18,19,["H335","H2088"]],[19,21,["H3787"]],[21,23,["H2088"]],[23,24,["H176"]],[24,25,["H2088"]],[25,27,["H518"]],[27,29,["H8147"]],[29,32,["H259"]],[32,33,["H2896"]]]},{"k":17520,"v":[[0,3,["H216"]],[3,5,["H4966"]],[5,8,["H2896"]],[8,14,["H5869"]],[14,16,["H7200","(H853)"]],[16,18,["H8121"]]]},{"k":17521,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,4,["H120"]],[4,5,["H2421"]],[5,6,["H7235"]],[6,7,["H8141"]],[7,9,["H8055"]],[9,12,["H3605"]],[12,16,["H2142","(H853)"]],[16,18,["H3117"]],[18,20,["H2822"]],[20,21,["H3588"]],[21,24,["H1961"]],[24,25,["H7235"]],[25,26,["H3605"]],[26,28,["H7945","H935"]],[28,30,["H1892"]]]},{"k":17522,"v":[[0,1,["H8055"]],[1,4,["H970"]],[4,7,["H3208"]],[7,11,["H3820"]],[11,12,["H3190"]],[12,16,["H3117"]],[16,19,["H979"]],[19,21,["H1980"]],[21,24,["H1870"]],[24,27,["H3820"]],[27,31,["H4758"]],[31,34,["H5869"]],[34,36,["H3045"]],[36,38,["H3588"]],[38,39,["H5921"]],[39,40,["H3605"]],[40,41,["H428"]],[41,43,["H430"]],[43,45,["H935"]],[45,48,["H4941"]]]},{"k":17523,"v":[[0,2,["H5493"]],[2,3,["H3708"]],[3,6,["H4480","H3820"]],[6,9,["H5674"]],[9,10,["H7451"]],[10,13,["H4480","H1320"]],[13,14,["H3588"]],[14,15,["H3208"]],[15,17,["H7839"]],[17,19,["H1892"]]]},{"k":17524,"v":[[0,1,["H2142"]],[1,2,["(H853)"]],[2,4,["H1254"]],[4,7,["H3117"]],[7,10,["H979"]],[10,11,["H5704","H834"]],[11,13,["H7451"]],[13,14,["H3117"]],[14,15,["H935"]],[15,16,["H3808"]],[16,19,["H8141"]],[19,21,["H5060"]],[21,22,["H834"]],[22,25,["H559"]],[25,28,["H369"]],[28,29,["H2656"]],[29,31,[]]]},{"k":17525,"v":[[0,1,["H5704","H834"]],[1,3,["H8121"]],[3,6,["H216"]],[6,9,["H3394"]],[9,12,["H3556"]],[12,14,["H3808"]],[14,15,["H2821"]],[15,18,["H5645"]],[18,19,["H7725"]],[19,20,["H310"]],[20,22,["H1653"]]]},{"k":17526,"v":[[0,3,["H3117"]],[3,6,["H8104"]],[6,9,["H1004"]],[9,11,["H7945","H2111"]],[11,14,["H2428"]],[14,15,["H376"]],[15,18,["H5791"]],[18,21,["H2912"]],[21,22,["H988"]],[22,23,["H3588"]],[23,26,["H4591"]],[26,30,["H7200"]],[30,34,["H699"]],[34,36,["H2821"]]]},{"k":17527,"v":[[0,3,["H1817"]],[3,6,["H5462"]],[6,9,["H7784"]],[9,12,["H6963"]],[12,15,["H2913"]],[15,17,["H8213"]],[17,22,["H6965"]],[22,25,["H6963"]],[25,28,["H6833"]],[28,30,["H3605"]],[30,32,["H1323"]],[32,34,["H7892"]],[34,38,["H7817"]]]},{"k":17528,"v":[[0,1,["H1571"]],[1,6,["H3372"]],[6,11,["H4480","H1364"]],[11,13,["H2849"]],[13,18,["H1870"]],[18,22,["H8247"]],[22,24,["H5006"]],[24,27,["H2284"]],[27,31,["H5445"]],[31,33,["H35"]],[33,35,["H6565"]],[35,36,["H3588"]],[36,37,["H120"]],[37,38,["H1980"]],[38,39,["H413"]],[39,41,["H5769"]],[41,42,["H1004"]],[42,45,["H5594"]],[45,47,["H5437"]],[47,49,["H7784"]]]},{"k":17529,"v":[[0,1,["H5704"]],[1,2,["H834","H3808"]],[2,4,["H3701"]],[4,5,["H2256"]],[5,7,["H7368"]],[7,10,["H2091"]],[10,11,["H1543"]],[11,13,["H7533"]],[13,16,["H3537"]],[16,18,["H7665"]],[18,19,["H5921"]],[19,21,["H4002"]],[21,24,["H1534"]],[24,25,["H7533"]],[25,26,["H413"]],[26,28,["H953"]]]},{"k":17530,"v":[[0,4,["H6083"]],[4,5,["H7725"]],[5,6,["H5921"]],[6,8,["H776"]],[8,11,["H7945","H1961"]],[11,14,["H7307"]],[14,16,["H7725"]],[16,17,["H413"]],[17,18,["H430"]],[18,19,["H834"]],[19,20,["H5414"]],[20,21,[]]]},{"k":17531,"v":[[0,1,["H1892"]],[1,3,["H1892"]],[3,4,["H559"]],[4,6,["H6953"]],[6,7,["H3605"]],[7,9,["H1892"]]]},{"k":17532,"v":[[0,2,["H3148"]],[2,5,["H6953"]],[5,6,["H7945","H1961"]],[6,7,["H2450"]],[7,9,["H5750"]],[9,10,["H3925","(H853)"]],[10,12,["H5971"]],[12,13,["H1847"]],[13,18,["H238"]],[18,21,["H2713"]],[21,25,["H8626"]],[25,26,["H7235"]],[26,27,["H4912"]]]},{"k":17533,"v":[[0,2,["H6953"]],[2,3,["H1245"]],[3,6,["H4672"]],[6,7,["H2656"]],[7,8,["H1697"]],[8,13,["H3789"]],[13,15,["H3476"]],[15,17,["H1697"]],[17,19,["H571"]]]},{"k":17534,"v":[[0,2,["H1697"]],[2,5,["H2450"]],[5,8,["H1861"]],[8,11,["H4930"]],[11,12,["H5193"]],[12,15,["H1167"]],[15,17,["H627"]],[17,20,["H5414"]],[20,23,["H4480","H7462","H259"]]]},{"k":17535,"v":[[0,2,["H3148"]],[2,4,["H4480","H1992"]],[4,6,["H1121"]],[6,8,["H2094"]],[8,10,["H6213"]],[10,11,["H7235"]],[11,12,["H5612"]],[12,15,["H369"]],[15,16,["H7093"]],[16,18,["H7235"]],[18,19,["H3854"]],[19,22,["H3024"]],[22,25,["H1320"]]]},{"k":17536,"v":[[0,3,["H8085"]],[3,5,["H5490"]],[5,8,["H3605"]],[8,9,["H1697"]],[9,10,["H3372","(H853)"]],[10,11,["H430"]],[11,13,["H8104"]],[13,15,["H4687"]],[15,16,["H3588"]],[16,17,["H2088"]],[17,20,["H3605"]],[20,23,["H120"]]]},{"k":17537,"v":[[0,1,["H3588"]],[1,2,["H430"]],[2,4,["H935","(H853)"]],[4,5,["H3605"]],[5,6,["H4639"]],[6,8,["H4941"]],[8,9,["H5921"]],[9,10,["H3605"]],[10,12,["H5956"]],[12,13,["H518"]],[13,16,["H2896"]],[16,18,["H518"]],[18,21,["H7451"]]]},{"k":17538,"v":[[0,2,["H7892"]],[2,4,["H7892"]],[4,5,["H834"]],[5,7,["H8010"]]]},{"k":17539,"v":[[0,3,["H5401"]],[3,7,["H4480","H5390"]],[7,10,["H6310"]],[10,11,["H3588"]],[11,13,["H1730"]],[13,15,["H2896"]],[15,17,["H4480","H3196"]]]},{"k":17540,"v":[[0,4,["H7381"]],[4,7,["H2896"]],[7,8,["H8081"]],[8,10,["H8034"]],[10,13,["H8081"]],[13,15,["H7324"]],[15,16,["H5921","H3651"]],[16,19,["H5959"]],[19,20,["H157"]],[20,21,[]]]},{"k":17541,"v":[[0,1,["H4900"]],[1,5,["H7323"]],[5,6,["H310"]],[6,9,["H4428"]],[9,11,["H935"]],[11,15,["H2315"]],[15,19,["H1523"]],[19,21,["H8055"]],[21,26,["H2142"]],[26,28,["H1730"]],[28,31,["H4480","H3196"]],[31,33,["H4339"]],[33,34,["H157"]],[34,35,[]]]},{"k":17542,"v":[[0,1,["H589"]],[1,3,["H7838"]],[3,5,["H5000"]],[5,8,["H1323"]],[8,10,["H3389"]],[10,13,["H168"]],[13,15,["H6938"]],[15,18,["H3407"]],[18,20,["H8010"]]]},{"k":17543,"v":[[0,1,["H7200"]],[1,2,["H408"]],[2,6,["H7945","H589"]],[6,8,["H7840"]],[8,11,["H8121"]],[11,13,["H7945","H7805"]],[13,17,["H517"]],[17,18,["H1121"]],[18,20,["H2734"]],[20,24,["H7760"]],[24,27,["H5201"]],[27,28,["(H853)"]],[28,30,["H3754"]],[30,33,["H7945"]],[33,34,["H3754"]],[34,37,["H3808"]],[37,38,["H5201"]]]},{"k":17544,"v":[[0,1,["H5046"]],[1,7,["H5315"]],[7,8,["H7945","H157"]],[8,9,["H349"]],[9,11,["H7462"]],[11,12,["H349"]],[12,18,["H7257"]],[18,20,["H6672"]],[20,22,["H7945","H4100"]],[22,25,["H1961"]],[25,30,["H5844"]],[30,31,["H5921"]],[31,33,["H5739"]],[33,36,["H2270"]]]},{"k":17545,"v":[[0,1,["H518"]],[1,3,["H3045"]],[3,4,["H3808"]],[4,7,["H3303"]],[7,9,["H802"]],[9,13,["H3318"]],[13,16,["H6119"]],[16,19,["H6629"]],[19,21,["H7462","(H853)"]],[21,23,["H1429"]],[23,24,["H5921"]],[24,26,["H7462"]],[26,27,["H4908"]]]},{"k":17546,"v":[[0,3,["H1819"]],[3,7,["H7474"]],[7,12,["H5484"]],[12,14,["H6547"]],[14,15,["H7393"]]]},{"k":17547,"v":[[0,2,["H3895"]],[2,4,["H4998"]],[4,6,["H8447"]],[6,10,["H6677"]],[10,12,["H2737"]],[12,14,[]]]},{"k":17548,"v":[[0,3,["H6213"]],[3,5,["H8447"]],[5,7,["H2091"]],[7,8,["H5973"]],[8,9,["H5351"]],[9,11,["H3701"]]]},{"k":17549,"v":[[0,1,["H5704"]],[1,3,["H7945","H4428"]],[3,7,["H4524"]],[7,9,["H5373"]],[9,11,["H5414"]],[11,13,["H7381"]],[13,14,[]]]},{"k":17550,"v":[[0,2,["H6872"]],[2,4,["H4753"]],[4,7,["H1730"]],[7,14,["H3885"]],[14,15,["H996"]],[15,17,["H7699"]]]},{"k":17551,"v":[[0,2,["H1730"]],[2,8,["H811"]],[8,10,["H3724"]],[10,13,["H3754"]],[13,15,["H5872"]]]},{"k":17552,"v":[[0,1,["H2009"]],[1,4,["H3303"]],[4,6,["H7474"]],[6,7,["H2009"]],[7,10,["H3303"]],[10,13,["H3123"]],[13,14,["H5869"]]]},{"k":17553,"v":[[0,1,["H2009"]],[1,4,["H3303"]],[4,6,["H1730"]],[6,7,["H637"]],[7,8,["H5273"]],[8,9,["H637"]],[9,11,["H6210"]],[11,13,["H7488"]]]},{"k":17554,"v":[[0,2,["H6982"]],[2,5,["H1004"]],[5,7,["H730"]],[7,10,["H7351"]],[10,12,["H1266"]]]},{"k":17555,"v":[[0,1,["H589"]],[1,4,["H2261"]],[4,6,["H8289"]],[6,9,["H7799"]],[9,12,["H6010"]]]},{"k":17556,"v":[[0,3,["H7799"]],[3,4,["H996"]],[4,5,["H2336"]],[5,6,["H3651"]],[6,9,["H7474"]],[9,10,["H996"]],[10,12,["H1323"]]]},{"k":17557,"v":[[0,4,["H8598"]],[4,7,["H6086"]],[7,10,["H3293"]],[10,11,["H3651"]],[11,14,["H1730"]],[14,15,["H996"]],[15,17,["H1121"]],[17,20,["H3427"]],[20,23,["H6738"]],[23,26,["H2530"]],[26,29,["H6529"]],[29,31,["H4966"]],[31,34,["H2441"]]]},{"k":17558,"v":[[0,2,["H935"]],[2,4,["H413"]],[4,6,["H3196"]],[6,7,["H1004"]],[7,10,["H1714"]],[10,11,["H5921"]],[11,14,["H160"]]]},{"k":17559,"v":[[0,1,["H5564"]],[1,4,["H809"]],[4,5,["H7502"]],[5,8,["H8598"]],[8,9,["H3588"]],[9,10,["H589"]],[10,12,["H2470"]],[12,14,["H160"]]]},{"k":17560,"v":[[0,3,["H8040"]],[3,5,["H8478"]],[5,7,["H7218"]],[7,11,["H3225"]],[11,13,["H2263"]],[13,14,[]]]},{"k":17561,"v":[[0,2,["H7650"]],[2,6,["H1323"]],[6,8,["H3389"]],[8,11,["H6643"]],[11,12,["H176"]],[12,15,["H355"]],[15,18,["H7704"]],[18,23,["H518","H5782"]],[23,24,["H518"]],[24,25,["H5782","(H853)"]],[25,27,["H160"]],[27,30,["H7945","H2654"]]]},{"k":17562,"v":[[0,2,["H6963"]],[2,5,["H1730"]],[5,6,["H2009"]],[6,7,["H2088"]],[7,8,["H935"]],[8,9,["H1801"]],[9,10,["H5921"]],[10,12,["H2022"]],[12,13,["H7092"]],[13,14,["H5921"]],[14,16,["H1389"]]]},{"k":17563,"v":[[0,2,["H1730"]],[2,4,["H1819"]],[4,6,["H6643"]],[6,7,["H176"]],[7,9,["H6082"]],[9,10,["H354"]],[10,11,["H2009"]],[11,12,["H2088"]],[12,13,["H5975"]],[13,14,["H310"]],[14,16,["H3796"]],[16,19,["H7688"]],[19,20,["H4480"]],[20,22,["H2474"]],[22,24,["H6692"]],[24,25,["H4480"]],[25,27,["H2762"]]]},{"k":17564,"v":[[0,2,["H1730"]],[2,3,["H6030"]],[3,5,["H559"]],[5,9,["H6965"]],[9,11,["H7474"]],[11,14,["H3303"]],[14,17,["H1980"]]]},{"k":17565,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H5638"]],[4,6,["H5674"]],[6,8,["H1653"]],[8,10,["H2498"]],[10,12,["H1980"]]]},{"k":17566,"v":[[0,2,["H5339"]],[2,3,["H7200"]],[3,6,["H776"]],[6,8,["H6256"]],[8,11,["H2158"]],[11,15,["H5060"]],[15,18,["H6963"]],[18,21,["H8449"]],[21,23,["H8085"]],[23,26,["H776"]]]},{"k":17567,"v":[[0,3,["H8384"]],[3,5,["H2590"]],[5,8,["H6291"]],[8,11,["H1612"]],[11,15,["H5563"]],[15,16,["H5414"]],[16,19,["H7381"]],[19,20,["H6965"]],[20,22,["H7474"]],[22,25,["H3303"]],[25,28,["H1980"]]]},{"k":17568,"v":[[0,3,["H3123"]],[3,8,["H2288"]],[8,11,["H5553"]],[11,14,["H5643"]],[14,18,["H4095"]],[18,21,["H7200","(H853)"]],[21,23,["H4758"]],[23,26,["H8085","(H853)"]],[26,28,["H6963"]],[28,29,["H3588"]],[29,30,["H6156"]],[30,33,["H6963"]],[33,36,["H4758"]],[36,38,["H5000"]]]},{"k":17569,"v":[[0,1,["H270"]],[1,4,["H7776"]],[4,6,["H6996"]],[6,7,["H7776"]],[7,9,["H2254"]],[9,11,["H3754"]],[11,14,["H3754"]],[14,17,["H5563"]]]},{"k":17570,"v":[[0,2,["H1730"]],[2,6,["H589"]],[6,10,["H7462"]],[10,13,["H7799"]]]},{"k":17571,"v":[[0,1,["H5704"]],[1,3,["H7945","H3117"]],[3,4,["H6315"]],[4,7,["H6752"]],[7,9,["H5127"]],[9,10,["H5437"]],[10,12,["H1730"]],[12,16,["H1819"]],[16,18,["H6643"]],[18,19,["H176"]],[19,21,["H6082"]],[21,22,["H354"]],[22,23,["H5921"]],[23,25,["H2022"]],[25,27,["H1336"]]]},{"k":17572,"v":[[0,2,["H3915"]],[2,3,["H5921"]],[3,5,["H4904"]],[5,7,["H1245","(H853)"]],[7,11,["H5315"]],[11,12,["H7945","H157"]],[12,14,["H1245"]],[14,18,["H4672"]],[18,20,["H3808"]]]},{"k":17573,"v":[[0,3,["H6965"]],[3,4,["H4994"]],[4,7,["H5437"]],[7,9,["H5892"]],[9,12,["H7784"]],[12,17,["H7339"]],[17,20,["H1245"]],[20,24,["H5315"]],[24,25,["H7945","H157"]],[25,27,["H1245"]],[27,31,["H4672"]],[31,33,["H3808"]]]},{"k":17574,"v":[[0,2,["H8104"]],[2,5,["H5437"]],[5,7,["H5892"]],[7,8,["H4672"]],[8,14,["H7200"]],[14,15,["(H853)"]],[15,19,["H5315"]],[19,20,["H7945","H157"]]]},{"k":17575,"v":[[0,5,["H4592"]],[5,8,["H7945","H5674"]],[8,9,["H4480"]],[9,11,["H5704"]],[11,13,["H7945","H4672","(H853)"]],[13,17,["H5315"]],[17,18,["H7945","H157"]],[18,20,["H270"]],[20,24,["H3808"]],[24,27,["H7503"]],[27,28,["H5704"]],[28,31,["H7945","H935"]],[31,33,["H413"]],[33,35,["H517"]],[35,36,["H1004"]],[36,38,["H413"]],[38,40,["H2315"]],[40,44,["H2029"]],[44,45,[]]]},{"k":17576,"v":[[0,2,["H7650"]],[2,6,["H1323"]],[6,8,["H3389"]],[8,11,["H6643"]],[11,12,["H176"]],[12,15,["H355"]],[15,18,["H7704"]],[18,23,["H5782","H518"]],[23,24,["H518"]],[24,25,["H5782","(H853)"]],[25,27,["H160"]],[27,28,["H5704"]],[28,30,["H7945","H2654"]]]},{"k":17577,"v":[[0,1,["H4310"]],[1,3,["H2063"]],[3,5,["H5927"]],[5,7,["H4480"]],[7,9,["H4057"]],[9,11,["H8490"]],[11,13,["H6227"]],[13,14,["H6999"]],[14,16,["H4753"]],[16,18,["H3828"]],[18,20,["H4480","H3605"]],[20,21,["H81"]],[21,24,["H7402"]]]},{"k":17578,"v":[[0,1,["H2009"]],[1,3,["H4296"]],[3,6,["H7945","H8010"]],[6,7,["H8346"]],[7,9,["H1368"]],[9,11,["H5439"]],[11,15,["H4480","H1368"]],[15,17,["H3478"]]]},{"k":17579,"v":[[0,2,["H3605"]],[2,3,["H270"]],[3,4,["H2719"]],[4,6,["H3925"]],[6,8,["H4421"]],[8,10,["H376"]],[10,13,["H2719"]],[13,14,["H5921"]],[14,16,["H3409"]],[16,19,["H4480","H6343"]],[19,22,["H3915"]]]},{"k":17580,"v":[[0,1,["H4428"]],[1,2,["H8010"]],[2,3,["H6213"]],[3,6,["H668"]],[6,9,["H4480","H6086"]],[9,11,["H3844"]]]},{"k":17581,"v":[[0,2,["H6213"]],[2,4,["H5982"]],[4,7,["H3701"]],[7,9,["H7507"]],[9,12,["H2091"]],[12,14,["H4817"]],[14,18,["H713"]],[18,20,["H8432"]],[20,23,["H7528"]],[23,25,["H160"]],[25,28,["H1323"]],[28,30,["H3389"]]]},{"k":17582,"v":[[0,2,["H3318"]],[2,5,["H1323"]],[5,7,["H6726"]],[7,9,["H7200"]],[9,10,["H4428"]],[10,11,["H8010"]],[11,14,["H5850"]],[14,17,["H517"]],[17,18,["H7945","H5849"]],[18,22,["H3117"]],[22,25,["H2861"]],[25,29,["H3117"]],[29,32,["H8057"]],[32,35,["H3820"]]]},{"k":17583,"v":[[0,1,["H2009"]],[1,4,["H3303"]],[4,6,["H7474"]],[6,7,["H2009"]],[7,10,["H3303"]],[10,13,["H3123"]],[13,14,["H5869"]],[14,15,["H4480","H1157"]],[15,17,["H6777"]],[17,19,["H8181"]],[19,23,["H5739"]],[23,25,["H5795"]],[25,27,["H7945","H1570"]],[27,29,["H4480","H2022"]],[29,30,["H1568"]]]},{"k":17584,"v":[[0,2,["H8127"]],[2,6,["H5739"]],[6,12,["H7094"]],[12,15,["H7945","H5927"]],[15,16,["H4480"]],[16,18,["H7367"]],[18,21,["H7945","H3605"]],[21,23,["H8382"]],[23,25,["H369"]],[25,27,["H7909"]],[27,29,[]]]},{"k":17585,"v":[[0,2,["H8193"]],[2,6,["H2339"]],[6,8,["H8144"]],[8,11,["H4057"]],[11,13,["H5000"]],[13,15,["H7541"]],[15,19,["H6400"]],[19,22,["H7416"]],[22,23,["H4480","H1157"]],[23,25,["H6777"]]]},{"k":17586,"v":[[0,2,["H6677"]],[2,6,["H4026"]],[6,8,["H1732"]],[8,9,["H1129"]],[9,12,["H8530"]],[12,13,["H5921"]],[13,15,["H8518"]],[15,17,["H505"]],[17,18,["H4043"]],[18,19,["H3605"]],[19,20,["H7982"]],[20,23,["H1368"]]]},{"k":17587,"v":[[0,2,["H8147"]],[2,3,["H7699"]],[3,6,["H8147"]],[6,7,["H6082"]],[7,8,["H6646"]],[8,11,["H8380"]],[11,13,["H7462"]],[13,16,["H7799"]]]},{"k":17588,"v":[[0,1,["H5704"]],[1,3,["H3117"]],[3,4,["H7945","H6315"]],[4,7,["H6752"]],[7,9,["H5127"]],[9,12,["H1980"]],[12,14,["H413"]],[14,16,["H2022"]],[16,18,["H4753"]],[18,20,["H413"]],[20,22,["H1389"]],[22,24,["H3828"]]]},{"k":17589,"v":[[0,3,["H3605"]],[3,4,["H3303"]],[4,6,["H7474"]],[6,9,["H369"]],[9,10,["H3971"]],[10,12,[]]]},{"k":17590,"v":[[0,1,["H935"]],[1,2,["H854"]],[2,5,["H4480","H3844"]],[5,7,["H3618"]],[7,8,["H854"]],[8,11,["H4480","H3844"]],[11,12,["H7789"]],[12,15,["H4480","H7218"]],[15,17,["H549"]],[17,20,["H4480","H7218"]],[20,22,["H8149"]],[22,24,["H2768"]],[24,27,["H738"]],[27,28,["H4480","H4585"]],[28,31,["H4480","H2042"]],[31,34,["H5246"]]]},{"k":17591,"v":[[0,5,["H3823"]],[5,7,["H269"]],[7,9,["H3618"]],[9,14,["H3823"]],[14,16,["H259"]],[16,19,["H4480","H5869"]],[19,21,["H259"]],[21,22,["H6060"]],[22,25,["H4480","H6677"]]]},{"k":17592,"v":[[0,1,["H4100"]],[1,2,["H3302"]],[2,5,["H1730"]],[5,7,["H269"]],[7,9,["H3618"]],[9,10,["H4100"]],[10,12,["H2895"]],[12,15,["H1730"]],[15,17,["H4480","H3196"]],[17,20,["H7381"]],[20,23,["H8081"]],[23,25,["H4480","H3605"]],[25,26,["H1314"]]]},{"k":17593,"v":[[0,2,["H8193"]],[2,5,["H3618"]],[5,6,["H5197"]],[6,9,["H5317"]],[9,10,["H1706"]],[10,12,["H2461"]],[12,14,["H8478"]],[14,16,["H3956"]],[16,19,["H7381"]],[19,22,["H8008"]],[22,26,["H7381"]],[26,28,["H3844"]]]},{"k":17594,"v":[[0,2,["H1588"]],[2,3,["H5274"]],[3,6,["H269"]],[6,8,["H3618"]],[8,10,["H1530"]],[10,12,["H5274"]],[12,14,["H4599"]],[14,15,["H2856"]]]},{"k":17595,"v":[[0,2,["H7973"]],[2,5,["H6508"]],[5,7,["H7416"]],[7,8,["H5973"]],[8,9,["H4022"]],[9,10,["H6529"]],[10,11,["H3724"]],[11,12,["H5973"]],[12,13,["H5373"]]]},{"k":17596,"v":[[0,1,["H5373"]],[1,3,["H3750"]],[3,4,["H7070"]],[4,6,["H7076"]],[6,7,["H5973"]],[7,8,["H3605"]],[8,9,["H6086"]],[9,11,["H3828"]],[11,12,["H4753"]],[12,14,["H174"]],[14,15,["H5973"]],[15,16,["H3605"]],[16,18,["H7218"]],[18,19,["H1314"]]]},{"k":17597,"v":[[0,2,["H4599"]],[2,4,["H1588"]],[4,6,["H875"]],[6,8,["H2416"]],[8,9,["H4325"]],[9,11,["H5140"]],[11,12,["H4480"]],[12,13,["H3844"]]]},{"k":17598,"v":[[0,1,["H5782"]],[1,3,["H6828"]],[3,6,["H935"]],[6,8,["H8486"]],[8,10,["H6315"]],[10,12,["H1588"]],[12,15,["H1314"]],[15,19,["H5140"]],[19,22,["H1730"]],[22,23,["H935"]],[23,26,["H1588"]],[26,28,["H398"]],[28,30,["H4022"]],[30,31,["H6529"]]]},{"k":17599,"v":[[0,3,["H935"]],[3,6,["H1588"]],[6,8,["H269"]],[8,10,["H3618"]],[10,13,["H717"]],[13,15,["H4753"]],[15,16,["H5973"]],[16,18,["H1313"]],[18,21,["H398"]],[21,23,["H3293"]],[23,24,["H5973"]],[24,26,["H1706"]],[26,29,["H8354"]],[29,31,["H3196"]],[31,32,["H5973"]],[32,34,["H2461"]],[34,35,["H398"]],[35,37,["H7453"]],[37,38,["H8354"]],[38,41,["H7937"]],[41,43,["H1730"]]]},{"k":17600,"v":[[0,1,["H589"]],[1,2,["H3463"]],[2,5,["H3820"]],[5,6,["H5782"]],[6,10,["H6963"]],[10,13,["H1730"]],[13,15,["H1849"]],[15,17,["H6605"]],[17,21,["H269"]],[21,23,["H7474"]],[23,25,["H3123"]],[25,27,["H8535"]],[27,30,["H7945","H7218"]],[30,32,["H4390"]],[32,34,["H2919"]],[34,37,["H6977"]],[37,40,["H7447"]],[40,43,["H3915"]]]},{"k":17601,"v":[[0,4,["H6584","(H853)"]],[4,6,["H3801"]],[6,7,["H349"]],[7,12,["H3847"]],[12,15,["H7364","(H853)"]],[15,17,["H7272"]],[17,18,["H349"]],[18,21,["H2936"]],[21,22,[]]]},{"k":17602,"v":[[0,2,["H1730"]],[2,4,["H7971"]],[4,6,["H3027"]],[6,7,["H4480"]],[7,9,["H2356"]],[9,15,["H4578"]],[15,17,["H1993"]],[17,18,["H5921"]],[18,19,[]]]},{"k":17603,"v":[[0,1,["H589"]],[1,3,["H6965"]],[3,5,["H6605"]],[5,8,["H1730"]],[8,11,["H3027"]],[11,12,["H5197"]],[12,14,["H4753"]],[14,17,["H676"]],[17,20,["H5674"]],[20,21,["H4753"]],[21,22,["H5921"]],[22,24,["H3709"]],[24,27,["H4514"]]]},{"k":17604,"v":[[0,1,["H589"]],[1,2,["H6605"]],[2,5,["H1730"]],[5,8,["H1730"]],[8,10,["H2559"]],[10,14,["H5674"]],[14,16,["H5315"]],[16,17,["H3318"]],[17,20,["H1696"]],[20,22,["H1245"]],[22,27,["H3808"]],[27,28,["H4672"]],[28,31,["H7121"]],[31,38,["H3808","H6030"]]]},{"k":17605,"v":[[0,2,["H8104"]],[2,5,["H5437"]],[5,7,["H5892"]],[7,8,["H4672"]],[8,11,["H5221"]],[11,14,["H6481"]],[14,17,["H8104"]],[17,20,["H2346"]],[20,22,["H5375","(H853)"]],[22,24,["H7289"]],[24,25,["H4480","H5921"]],[25,26,[]]]},{"k":17606,"v":[[0,2,["H7650"]],[2,5,["H1323"]],[5,7,["H3389"]],[7,8,["H518"]],[8,10,["H4672","(H853)"]],[10,12,["H1730"]],[12,13,["H4100"]],[13,15,["H5046"]],[15,18,["H589"]],[18,20,["H7945","H2470"]],[20,22,["H160"]]]},{"k":17607,"v":[[0,1,["H4100"]],[1,4,["H1730"]],[4,8,["H4480","H1730"]],[8,11,["H3303"]],[11,13,["H802"]],[13,14,["H4100"]],[14,17,["H1730"]],[17,21,["H4480","H1730"]],[21,25,["H7945","H3602"]],[25,26,["H7650"]],[26,27,[]]]},{"k":17608,"v":[[0,2,["H1730"]],[2,4,["H6703"]],[4,6,["H122"]],[6,8,["H1713"]],[8,11,["H4480","H7233"]]]},{"k":17609,"v":[[0,2,["H7218"]],[2,6,["H3800"]],[6,8,["H6337"]],[8,10,["H6977"]],[10,12,["H8534"]],[12,14,["H7838"]],[14,17,["H6158"]]]},{"k":17610,"v":[[0,2,["H5869"]],[2,8,["H3123"]],[8,9,["H5921"]],[9,11,["H650"]],[11,13,["H4325"]],[13,14,["H7364"]],[14,16,["H2461"]],[16,19,["H4402","H3427"]]]},{"k":17611,"v":[[0,2,["H3895"]],[2,6,["H6170"]],[6,8,["H1314"]],[8,10,["H4840"]],[10,11,["H4026"]],[11,13,["H8193"]],[13,15,["H7799"]],[15,16,["H5197"]],[16,18,["H5674"]],[18,19,["H4753"]]]},{"k":17612,"v":[[0,2,["H3027"]],[2,5,["H2091"]],[5,6,["H1550"]],[6,7,["H4390"]],[7,10,["H8658"]],[10,12,["H4578"]],[12,15,["H6247"]],[15,16,["H8127"]],[16,17,["H5968"]],[17,19,["H5601"]]]},{"k":17613,"v":[[0,2,["H7785"]],[2,5,["H5982"]],[5,7,["H8336"]],[7,8,["H3245"]],[8,9,["H5921"]],[9,10,["H134"]],[10,13,["H6337"]],[13,15,["H4758"]],[15,18,["H3844"]],[18,19,["H977"]],[19,22,["H730"]]]},{"k":17614,"v":[[0,2,["H2441"]],[2,5,["H4477"]],[5,9,["H3605"]],[9,10,["H4261"]],[10,11,["H2088"]],[11,14,["H1730"]],[14,16,["H2088"]],[16,19,["H7453"]],[19,21,["H1323"]],[21,23,["H3389"]]]},{"k":17615,"v":[[0,1,["H575"]],[1,4,["H1730"]],[4,5,["H1980"]],[5,8,["H3303"]],[8,10,["H802"]],[10,11,["H575"]],[11,14,["H1730"]],[14,16,["H6437"]],[16,20,["H1245"]],[20,22,["H5973"]],[22,23,[]]]},{"k":17616,"v":[[0,2,["H1730"]],[2,5,["H3381"]],[5,8,["H1588"]],[8,11,["H6170"]],[11,13,["H1314"]],[13,15,["H7462"]],[15,18,["H1588"]],[18,21,["H3950"]],[21,22,["H7799"]]]},{"k":17617,"v":[[0,1,["H589"]],[1,4,["H1730"]],[4,7,["H1730"]],[7,11,["H7462"]],[11,14,["H7799"]]]},{"k":17618,"v":[[0,1,["H859"]],[1,3,["H3303"]],[3,6,["H7474"]],[6,8,["H8656"]],[8,9,["H5000"]],[9,11,["H3389"]],[11,12,["H366"]],[12,17,["H1714"]]]},{"k":17619,"v":[[0,2,["H5437"]],[2,4,["H5869"]],[4,5,["H4480","H5048"]],[5,8,["H7945","H1992"]],[8,10,["H7292"]],[10,13,["H8181"]],[13,17,["H5739"]],[17,19,["H5795"]],[19,21,["H7945","H1570"]],[21,22,["H4480"]],[22,23,["H1568"]]]},{"k":17620,"v":[[0,2,["H8127"]],[2,6,["H5739"]],[6,8,["H7353"]],[8,11,["H7945","H5927"]],[11,12,["H4480"]],[12,14,["H7367"]],[14,17,["H7945","H3605"]],[17,19,["H8382"]],[19,23,["H369"]],[23,25,["H7909"]],[25,27,[]]]},{"k":17621,"v":[[0,3,["H6400"]],[3,6,["H7416"]],[6,9,["H7541"]],[9,10,["H4480","H1157"]],[10,12,["H6777"]]]},{"k":17622,"v":[[0,1,["H1992"]],[1,3,["H8346"]],[3,4,["H4436"]],[4,6,["H8084"]],[6,7,["H6370"]],[7,9,["H5959"]],[9,10,["H369"]],[10,11,["H4557"]]]},{"k":17623,"v":[[0,2,["H3123"]],[2,4,["H8535"]],[4,7,["H259"]],[7,8,["H1931"]],[8,12,["H259"]],[12,15,["H517"]],[15,16,["H1931"]],[16,19,["H1249"]],[19,24,["H3205"]],[24,27,["H1323"]],[27,28,["H7200"]],[28,31,["H833"]],[31,35,["H4436"]],[35,38,["H6370"]],[38,41,["H1984"]],[41,42,[]]]},{"k":17624,"v":[[0,1,["H4310"]],[1,3,["H2063"]],[3,6,["H8259"]],[6,9,["H7837"]],[9,10,["H3303"]],[10,13,["H3842"]],[13,14,["H1249"]],[14,17,["H2535"]],[17,19,["H366"]],[19,24,["H1713"]]]},{"k":17625,"v":[[0,3,["H3381"]],[3,4,["H413"]],[4,6,["H1594"]],[6,8,["H93"]],[8,10,["H7200"]],[10,12,["H3"]],[12,15,["H5158"]],[15,18,["H7200"]],[18,21,["H1612"]],[21,22,["H6524"]],[22,25,["H7416"]],[25,26,["H5132"]]]},{"k":17626,"v":[[0,2,["H3808"]],[2,5,["H3045"]],[5,7,["H5315"]],[7,8,["H7760"]],[8,12,["H4818"]],[12,14,["H5971","H5081"]]]},{"k":17627,"v":[[0,1,["H7725"]],[1,2,["H7725"]],[2,4,["H7759"]],[4,5,["H7725"]],[5,6,["H7725"]],[6,10,["H2372"]],[10,13,["H4100"]],[13,16,["H2372"]],[16,19,["H7759"]],[19,24,["H4246"]],[24,27,["H4264"]]]},{"k":17628,"v":[[0,1,["H4100"]],[1,2,["H3302"]],[2,5,["H6471"]],[5,7,["H5275"]],[7,9,["H5081"]],[9,10,["H1323"]],[10,12,["H2542"]],[12,15,["H3409"]],[15,17,["H3644"]],[17,18,["H2481"]],[18,20,["H4639"]],[20,23,["H3027"]],[23,27,["H542"]]]},{"k":17629,"v":[[0,2,["H8326"]],[2,6,["H5469"]],[6,7,["H101"]],[7,9,["H2637"]],[9,10,["H408"]],[10,11,["H4197"]],[11,13,["H990"]],[13,17,["H6194"]],[17,19,["H2406"]],[19,21,["H5473"]],[21,23,["H7799"]]]},{"k":17630,"v":[[0,2,["H8147"]],[2,3,["H7699"]],[3,6,["H8147"]],[6,7,["H6082"]],[7,8,["H6646"]],[8,11,["H8380"]]]},{"k":17631,"v":[[0,2,["H6677"]],[2,6,["H4026"]],[6,8,["H8127"]],[8,10,["H5869"]],[10,13,["H1295"]],[13,15,["H2809"]],[15,16,["H5921"]],[16,18,["H8179"]],[18,20,["H1337"]],[20,22,["H639"]],[22,26,["H4026"]],[26,28,["H3844"]],[28,30,["H6822"]],[30,31,["H6440"]],[31,32,["H1834"]]]},{"k":17632,"v":[[0,2,["H7218"]],[2,3,["H5921"]],[3,7,["H3760"]],[7,10,["H1803"]],[10,13,["H7218"]],[13,15,["H713"]],[15,17,["H4428"]],[17,19,["H631"]],[19,22,["H7298"]]]},{"k":17633,"v":[[0,1,["H4100"]],[1,2,["H3302"]],[2,4,["H4100"]],[4,5,["H5276"]],[5,9,["H160"]],[9,11,["H8588"]]]},{"k":17634,"v":[[0,1,["H2063"]],[1,3,["H6967"]],[3,5,["H1819"]],[5,9,["H8558"]],[9,12,["H7699"]],[12,14,["H811"]],[14,16,[]]]},{"k":17635,"v":[[0,2,["H559"]],[2,6,["H5927"]],[6,10,["H8558"]],[10,14,["H270"]],[14,17,["H5577"]],[17,19,["H4994"]],[19,22,["H7699"]],[22,24,["H1961"]],[24,26,["H811"]],[26,29,["H1612"]],[29,32,["H7381"]],[32,35,["H639"]],[35,37,["H8598"]]]},{"k":17636,"v":[[0,6,["H2441"]],[6,9,["H2896"]],[9,10,["H3196"]],[10,13,["H1730"]],[13,15,["H1980"]],[15,17,["H4339"]],[17,20,["H8193"]],[20,25,["H3463"]],[25,27,["H1680"]]]},{"k":17637,"v":[[0,1,["H589"]],[1,4,["H1730"]],[4,7,["H8669"]],[7,9,["H5921"]],[9,10,[]]]},{"k":17638,"v":[[0,1,["H1980"]],[1,3,["H1730"]],[3,7,["H3318"]],[7,10,["H7704"]],[10,13,["H3885"]],[13,16,["H3723"]]]},{"k":17639,"v":[[0,5,["H7925"]],[5,8,["H3754"]],[8,11,["H7200"]],[11,12,["H518"]],[12,14,["H1612"]],[14,15,["H6524"]],[15,19,["H5563"]],[19,20,["H6524"]],[20,23,["H7416"]],[23,25,["H5132"]],[25,26,["H8033"]],[26,29,["H5414"]],[29,30,["(H853)"]],[30,32,["H1730"]]]},{"k":17640,"v":[[0,2,["H1736"]],[2,3,["H5414"]],[3,5,["H7381"]],[5,7,["H5921"]],[7,9,["H6607"]],[9,12,["H3605"]],[12,14,["H4022"]],[14,16,["H2319"]],[16,17,["H1571"]],[17,18,["H3465"]],[18,23,["H6845"]],[23,28,["H1730"]]]},{"k":17641,"v":[[0,2,["H4310","H5414"]],[2,7,["H251"]],[7,9,["H3243"]],[9,11,["H7699"]],[11,14,["H517"]],[14,18,["H4672"]],[18,20,["H2351"]],[20,23,["H5401"]],[23,25,["H1571"]],[25,28,["H3808"]],[28,30,["H936"]]]},{"k":17642,"v":[[0,3,["H5090"]],[3,6,["H935"]],[6,8,["H413"]],[8,10,["H517"]],[10,11,["H1004"]],[11,14,["H3925"]],[14,21,["H8248"]],[21,23,["H7544"]],[23,24,["H4480","H3196"]],[24,27,["H4480","H6071"]],[27,30,["H7416"]]]},{"k":17643,"v":[[0,3,["H8040"]],[3,6,["H8478"]],[6,8,["H7218"]],[8,12,["H3225"]],[12,14,["H2263"]],[14,15,[]]]},{"k":17644,"v":[[0,2,["H7650"]],[2,5,["H1323"]],[5,7,["H3389"]],[7,8,["H4100"]],[8,12,["H5782"]],[12,13,["H4100"]],[13,14,["H5782","(H853)"]],[14,16,["H160"]],[16,17,["H5704"]],[17,19,["H7945","H2654"]]]},{"k":17645,"v":[[0,1,["H4310"]],[1,3,["H2063"]],[3,6,["H5927"]],[6,7,["H4480"]],[7,9,["H4057"]],[9,10,["H7514"]],[10,11,["H5921"]],[11,13,["H1730"]],[13,17,["H5782"]],[17,18,["H8478"]],[18,21,["H8598"]],[21,22,["H8033"]],[22,24,["H517"]],[24,27,["H2254"]],[27,28,["H8033"]],[28,32,["H2254"]],[32,34,["H3205"]],[34,35,[]]]},{"k":17646,"v":[[0,1,["H7760"]],[1,5,["H2368"]],[5,6,["H5921"]],[6,8,["H3820"]],[8,11,["H2368"]],[11,12,["H5921"]],[12,14,["H2220"]],[14,15,["H3588"]],[15,16,["H160"]],[16,18,["H5794"]],[18,20,["H4194"]],[20,21,["H7068"]],[21,23,["H7186"]],[23,26,["H7585"]],[26,28,["H7565"]],[28,31,["H7565"]],[31,33,["H784"]],[33,39,["H7957"]]]},{"k":17647,"v":[[0,1,["H7227"]],[1,2,["H4325"]],[2,3,["H3808","H3201","(H853)"]],[3,4,["H3518"]],[4,5,["H160"]],[5,6,["H3808"]],[6,9,["H5104"]],[9,10,["H7857"]],[10,12,["H518"]],[12,14,["H376"]],[14,16,["H5414","(H853)"]],[16,17,["H3605"]],[17,19,["H1952"]],[19,22,["H1004"]],[22,24,["H160"]],[24,29,["H936","H936"]]]},{"k":17648,"v":[[0,4,["H6996"]],[4,5,["H269"]],[5,9,["H369"]],[9,10,["H7699"]],[10,11,["H4100"]],[11,14,["H6213"]],[14,17,["H269"]],[17,20,["H3117"]],[20,26,["H7945","H1696"]]]},{"k":17649,"v":[[0,1,["H518"]],[1,2,["H1931"]],[2,5,["H2346"]],[5,8,["H1129"]],[8,9,["H5921"]],[9,12,["H2918"]],[12,14,["H3701"]],[14,16,["H518"]],[16,17,["H1931"]],[17,20,["H1817"]],[20,23,["H6696","H5921"]],[23,26,["H3871"]],[26,28,["H730"]]]},{"k":17650,"v":[[0,1,["H589"]],[1,4,["H2346"]],[4,7,["H7699"]],[7,9,["H4026"]],[9,10,["H227"]],[10,11,["H1961"]],[11,15,["H5869"]],[15,19,["H4672"]],[19,20,["H7965"]]]},{"k":17651,"v":[[0,1,["H8010"]],[1,2,["H1961"]],[2,4,["H3754"]],[4,6,["H1174"]],[6,9,["H5414","(H853)"]],[9,11,["H3754"]],[11,13,["H5201"]],[13,15,["H376"]],[15,18,["H6529"]],[18,22,["H935"]],[22,24,["H505"]],[24,27,["H3701"]]]},{"k":17652,"v":[[0,2,["H3754"]],[2,5,["H7945"]],[5,7,["H6440"]],[7,11,["H8010"]],[11,15,["H505"]],[15,19,["H5201","(H853)"]],[19,21,["H6529"]],[21,24,["H3967"]]]},{"k":17653,"v":[[0,3,["H3427"]],[3,6,["H1588"]],[6,8,["H2270"]],[8,9,["H7181"]],[9,12,["H6963"]],[12,16,["H8085"]],[16,17,[]]]},{"k":17654,"v":[[0,2,["H1272"]],[2,4,["H1730"]],[4,8,["H1819"]],[8,11,["H6643"]],[11,12,["H176"]],[12,15,["H6082"]],[15,16,["H354"]],[16,17,["H5921"]],[17,19,["H2022"]],[19,21,["H1314"]]]},{"k":17655,"v":[[0,2,["H2377"]],[2,4,["H3470"]],[4,6,["H1121"]],[6,8,["H531"]],[8,9,["H834"]],[9,11,["H2372"]],[11,12,["H5921"]],[12,13,["H3063"]],[13,15,["H3389"]],[15,18,["H3117"]],[18,20,["H5818"]],[20,21,["H3147"]],[21,22,["H271"]],[22,24,["H3169"]],[24,25,["H4428"]],[25,27,["H3063"]]]},{"k":17656,"v":[[0,1,["H8085"]],[1,3,["H8064"]],[3,6,["H238"]],[6,8,["H776"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,13,["H1696"]],[13,16,["H1431"]],[16,19,["H7311"]],[19,20,["H1121"]],[20,22,["H1992"]],[22,24,["H6586"]],[24,26,[]]]},{"k":17657,"v":[[0,2,["H7794"]],[2,3,["H3045"]],[3,5,["H7069"]],[5,8,["H2543"]],[8,10,["H1167"]],[10,11,["H18"]],[11,13,["H3478"]],[13,15,["H3808"]],[15,16,["H3045"]],[16,18,["H5971"]],[18,20,["H3808"]],[20,21,["H995"]]]},{"k":17658,"v":[[0,1,["H1945"]],[1,2,["H2398"]],[2,3,["H1471"]],[3,5,["H5971"]],[5,6,["H3515"]],[6,8,["H5771"]],[8,10,["H2233"]],[10,12,["H7489"]],[12,13,["H1121"]],[13,16,["H7843"]],[16,19,["H5800","(H853)"]],[19,21,["H3068"]],[21,24,["H5006","(H853)"]],[24,27,["H6918"]],[27,29,["H3478"]],[29,35,["H2114"]],[35,36,["H268"]]]},{"k":17659,"v":[[0,1,["H5921","H4100"]],[1,5,["H5221"]],[5,7,["H5750"]],[7,10,["H5627"]],[10,13,["H3254"]],[13,15,["H3605"]],[15,16,["H7218"]],[16,18,["H2483"]],[18,21,["H3605"]],[21,22,["H3824"]],[22,23,["H1742"]]]},{"k":17660,"v":[[0,3,["H4480","H3709"]],[3,6,["H7272"]],[6,8,["H5704"]],[8,10,["H7218"]],[10,13,["H369"]],[13,14,["H4974"]],[14,18,["H6482"]],[18,20,["H2250"]],[20,22,["H2961"]],[22,23,["H4347"]],[23,26,["H3808"]],[26,28,["H2115"]],[28,29,["H3808"]],[29,31,["H2280"]],[31,32,["H3808"]],[32,33,["H7401"]],[33,35,["H8081"]]]},{"k":17661,"v":[[0,2,["H776"]],[2,4,["H8077"]],[4,6,["H5892"]],[6,8,["H8313"]],[8,10,["H784"]],[10,12,["H127"]],[12,13,["H2114"]],[13,14,["H398"]],[14,18,["H5048"]],[18,22,["H8077"]],[22,24,["H4114"]],[24,26,["H2114"]]]},{"k":17662,"v":[[0,3,["H1323"]],[3,5,["H6726"]],[5,7,["H3498"]],[7,10,["H5521"]],[10,13,["H3754"]],[13,16,["H4412"]],[16,21,["H4750"]],[21,24,["H5341"]],[24,25,["H5892"]]]},{"k":17663,"v":[[0,1,["H3884"]],[1,3,["H3068"]],[3,5,["H6635"]],[5,7,["H3498"]],[7,12,["H4592"]],[12,13,["H8300"]],[13,17,["H1961"]],[17,19,["H5467"]],[19,25,["H1819"]],[25,27,["H6017"]]]},{"k":17664,"v":[[0,1,["H8085"]],[1,3,["H1697"]],[3,6,["H3068"]],[6,8,["H7101"]],[8,10,["H5467"]],[10,12,["H238"]],[12,15,["H8451"]],[15,18,["H430"]],[18,20,["H5971"]],[20,22,["H6017"]]]},{"k":17665,"v":[[0,2,["H4100"]],[2,6,["H7230"]],[6,9,["H2077"]],[9,12,["H559"]],[12,14,["H3068"]],[14,17,["H7646"]],[17,21,["H5930"]],[21,23,["H352"]],[23,26,["H2459"]],[26,29,["H4806"]],[29,32,["H2654"]],[32,33,["H3808"]],[33,36,["H1818"]],[36,38,["H6499"]],[38,41,["H3532"]],[41,45,["H6260"]]]},{"k":17666,"v":[[0,1,["H3588"]],[1,3,["H935"]],[3,5,["H7200"]],[5,6,["H6440"]],[6,8,["H4310"]],[8,10,["H1245"]],[10,11,["H2063"]],[11,14,["H4480","H3027"]],[14,16,["H7429"]],[16,18,["H2691"]]]},{"k":17667,"v":[[0,1,["H935"]],[1,2,["H3808"]],[2,3,["H3254"]],[3,4,["H7723"]],[4,5,["H4503"]],[5,6,["H7004"]],[6,9,["H8441"]],[9,14,["H2320"]],[14,16,["H7676"]],[16,18,["H7121"]],[18,20,["H4744"]],[20,22,["H3808","H3201"]],[22,27,["H205"]],[27,31,["H6116"]]]},{"k":17668,"v":[[0,3,["H2320"]],[3,7,["H4150"]],[7,9,["H5315"]],[9,10,["H8130"]],[10,12,["H1961"]],[12,14,["H2960"]],[14,16,["H5921"]],[16,19,["H3811"]],[19,21,["H5375"]],[21,22,[]]]},{"k":17669,"v":[[0,5,["H6566"]],[5,7,["H3709"]],[7,10,["H5956"]],[10,12,["H5869"]],[12,13,["H4480"]],[13,15,["H1571"]],[15,16,["H3588"]],[16,19,["H7235"]],[19,20,["H8605"]],[20,23,["H369"]],[23,24,["H8085"]],[24,26,["H3027"]],[26,28,["H4390"]],[28,30,["H1818"]]]},{"k":17670,"v":[[0,1,["H7364"]],[1,5,["H2135"]],[5,7,["H5493"]],[7,9,["H7455"]],[9,12,["H4611"]],[12,14,["H4480","H5048"]],[14,16,["H5869"]],[16,17,["H2308"]],[17,20,["H7489"]]]},{"k":17671,"v":[[0,1,["H3925"]],[1,4,["H3190"]],[4,5,["H1875"]],[5,6,["H4941"]],[6,7,["H833"]],[7,9,["H2541"]],[9,10,["H8199"]],[10,12,["H3490"]],[12,13,["H7378"]],[13,16,["H490"]]]},{"k":17672,"v":[[0,1,["H1980"]],[1,2,["H4994"]],[2,7,["H3198"]],[7,8,["H559"]],[8,10,["H3068"]],[10,11,["H518"]],[11,13,["H2399"]],[13,14,["H1961"]],[14,16,["H8144"]],[16,21,["H3835"]],[21,23,["H7950"]],[23,24,["H518"]],[24,27,["H119"]],[27,29,["H8438"]],[29,32,["H1961"]],[32,34,["H6785"]]]},{"k":17673,"v":[[0,1,["H518"]],[1,4,["H14"]],[4,6,["H8085"]],[6,9,["H398"]],[9,11,["H2898"]],[11,14,["H776"]]]},{"k":17674,"v":[[0,2,["H518"]],[2,4,["H3985"]],[4,6,["H4784"]],[6,10,["H398"]],[10,13,["H2719"]],[13,14,["H3588"]],[14,16,["H6310"]],[16,19,["H3068"]],[19,21,["H1696"]],[21,22,[]]]},{"k":17675,"v":[[0,1,["H349"]],[1,4,["H539"]],[4,5,["H7151"]],[5,6,["H1961"]],[6,8,["H2181"]],[8,11,["H4392"]],[11,13,["H4941"]],[13,14,["H6664"]],[14,15,["H3885"]],[15,19,["H6258"]],[19,20,["H7523"]]]},{"k":17676,"v":[[0,2,["H3701"]],[2,4,["H1961"]],[4,5,["H5509"]],[5,7,["H5435"]],[7,8,["H4107"]],[8,10,["H4325"]]]},{"k":17677,"v":[[0,2,["H8269"]],[2,4,["H5637"]],[4,6,["H2270"]],[6,8,["H1590"]],[8,10,["H3605"]],[10,11,["H157"]],[11,12,["H7810"]],[12,15,["H7291"]],[15,16,["H8021"]],[16,18,["H8199"]],[18,19,["H3808"]],[19,21,["H3490"]],[21,22,["H3808"]],[22,25,["H7379"]],[25,28,["H490"]],[28,29,["H935"]],[29,30,["H413"]],[30,31,[]]]},{"k":17678,"v":[[0,1,["H3651"]],[1,2,["H5002"]],[2,4,["H113"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,11,["H46"]],[11,13,["H3478"]],[13,14,["H1945"]],[14,17,["H5162"]],[17,21,["H4480","H6862"]],[21,23,["H5358"]],[23,27,["H4480","H341"]]]},{"k":17679,"v":[[0,4,["H7725"]],[4,6,["H3027"]],[6,7,["H5921"]],[7,10,["H1252"]],[10,12,["H6884"]],[12,14,["H5509"]],[14,17,["H5493"]],[17,18,["H3605"]],[18,20,["H913"]]]},{"k":17680,"v":[[0,4,["H7725"]],[4,6,["H8199"]],[6,10,["H7223"]],[10,13,["H3289"]],[13,17,["H8462"]],[17,18,["H310","H3651"]],[18,22,["H7121"]],[22,24,["H5892"]],[24,26,["H6664"]],[26,28,["H539"]],[28,29,["H7151"]]]},{"k":17681,"v":[[0,1,["H6726"]],[1,4,["H6299"]],[4,6,["H4941"]],[6,9,["H7725"]],[9,11,["H6666"]]]},{"k":17682,"v":[[0,3,["H7667"]],[3,6,["H6586"]],[6,10,["H2400"]],[10,13,["H3162"]],[13,17,["H5800"]],[17,19,["H3068"]],[19,22,["H3615"]]]},{"k":17683,"v":[[0,1,["H3588"]],[1,5,["H954"]],[5,8,["H4480","H352"]],[8,9,["H834"]],[9,12,["H2530"]],[12,17,["H2659"]],[17,20,["H4480","H1593"]],[20,21,["H834"]],[21,24,["H977"]]]},{"k":17684,"v":[[0,1,["H3588"]],[1,4,["H1961"]],[4,7,["H424"]],[7,9,["H5929"]],[9,10,["H5034"]],[10,14,["H1593"]],[14,15,["H834"]],[15,17,["H369"]],[17,18,["H4325"]]]},{"k":17685,"v":[[0,3,["H2634"]],[3,5,["H1961"]],[5,7,["H5296"]],[7,10,["H6467"]],[10,15,["H5213"]],[15,19,["H8147"]],[19,20,["H1197"]],[20,21,["H3162"]],[21,23,["H369"]],[23,25,["H3518"]],[25,26,[]]]},{"k":17686,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H3470"]],[4,6,["H1121"]],[6,8,["H531"]],[8,9,["H2372"]],[9,10,["H5921"]],[10,11,["H3063"]],[11,13,["H3389"]]]},{"k":17687,"v":[[0,6,["H1961"]],[6,9,["H319"]],[9,10,["H3117"]],[10,13,["H2022"]],[13,16,["H3068"]],[16,17,["H1004"]],[17,19,["H1961"]],[19,20,["H3559"]],[20,23,["H7218"]],[23,26,["H2022"]],[26,30,["H5375"]],[30,33,["H4480","H1389"]],[33,35,["H3605"]],[35,36,["H1471"]],[36,38,["H5102"]],[38,39,["H413"]],[39,40,[]]]},{"k":17688,"v":[[0,2,["H7227"]],[2,3,["H5971"]],[3,5,["H1980"]],[5,7,["H559"]],[7,8,["H1980"]],[8,14,["H5927"]],[14,15,["H413"]],[15,17,["H2022"]],[17,20,["H3068"]],[20,21,["H413"]],[21,23,["H1004"]],[23,26,["H430"]],[26,28,["H3290"]],[28,32,["H3384"]],[32,36,["H4480","H1870"]],[36,40,["H1980"]],[40,43,["H734"]],[43,44,["H3588"]],[44,47,["H4480","H6726"]],[47,50,["H3318"]],[50,52,["H8451"]],[52,55,["H1697"]],[55,58,["H3068"]],[58,60,["H4480","H3389"]]]},{"k":17689,"v":[[0,4,["H8199"]],[4,5,["H996"]],[5,7,["H1471"]],[7,10,["H3198"]],[10,11,["H7227"]],[11,12,["H5971"]],[12,16,["H3807"]],[16,18,["H2719"]],[18,20,["H855"]],[20,23,["H2595"]],[23,25,["H4211"]],[25,26,["H1471"]],[26,28,["H3808"]],[28,30,["H5375"]],[30,31,["H2719"]],[31,32,["H413"]],[32,33,["H1471"]],[33,34,["H3808"]],[34,37,["H3925"]],[37,38,["H4421"]],[38,40,["H5750"]]]},{"k":17690,"v":[[0,2,["H1004"]],[2,4,["H3290"]],[4,5,["H1980"]],[5,10,["H1980"]],[10,13,["H216"]],[13,16,["H3068"]]]},{"k":17691,"v":[[0,1,["H3588"]],[1,4,["H5203"]],[4,6,["H5971"]],[6,8,["H1004"]],[8,10,["H3290"]],[10,11,["H3588"]],[11,14,["H4390"]],[14,17,["H4480","H6924"]],[17,20,["H6049"]],[20,23,["H6430"]],[23,27,["H5606"]],[27,30,["H3206"]],[30,32,["H5237"]]]},{"k":17692,"v":[[0,2,["H776"]],[2,5,["H4390"]],[5,7,["H3701"]],[7,9,["H2091"]],[9,10,["H369"]],[10,14,["H7097"]],[14,17,["H214"]],[17,19,["H776"]],[19,22,["H4390"]],[22,24,["H5483"]],[24,25,["H369"]],[25,29,["H7097"]],[29,32,["H4818"]]]},{"k":17693,"v":[[0,2,["H776"]],[2,5,["H4390"]],[5,7,["H457"]],[7,9,["H7812"]],[9,11,["H4639"]],[11,15,["H3027"]],[15,17,["H834"]],[17,20,["H676"]],[20,22,["H6213"]]]},{"k":17694,"v":[[0,4,["H120"]],[4,6,["H7817"]],[6,10,["H376"]],[10,11,["H8213"]],[11,14,["H5375"]],[14,16,["H408"]]]},{"k":17695,"v":[[0,1,["H935"]],[1,4,["H6697"]],[4,6,["H2934"]],[6,10,["H6083"]],[10,11,["H4480","H6440"]],[11,12,["H6343"]],[12,15,["H3068"]],[15,19,["H4480","H1926"]],[19,22,["H1347"]]]},{"k":17696,"v":[[0,2,["H1365"]],[2,3,["H5869"]],[3,5,["H120"]],[5,8,["H8213"]],[8,11,["H7312"]],[11,13,["H376"]],[13,17,["H7817"]],[17,20,["H3068"]],[20,21,["H905"]],[21,24,["H7682"]],[24,26,["H1931"]],[26,27,["H3117"]]]},{"k":17697,"v":[[0,1,["H3588"]],[1,3,["H3117"]],[3,6,["H3068"]],[6,8,["H6635"]],[8,11,["H5921"]],[11,12,["H3605"]],[12,16,["H1343"]],[16,18,["H7311"]],[18,20,["H5921"]],[20,21,["H3605"]],[21,26,["H5375"]],[26,32,["H8213"]]]},{"k":17698,"v":[[0,2,["H5921"]],[2,3,["H3605"]],[3,5,["H730"]],[5,7,["H3844"]],[7,10,["H7311"]],[10,13,["H5375"]],[13,15,["H5921"]],[15,16,["H3605"]],[16,18,["H437"]],[18,20,["H1316"]]]},{"k":17699,"v":[[0,2,["H5921"]],[2,3,["H3605"]],[3,5,["H7311"]],[5,6,["H2022"]],[6,8,["H5921"]],[8,9,["H3605"]],[9,11,["H1389"]],[11,15,["H5375"]]]},{"k":17700,"v":[[0,2,["H5921"]],[2,3,["H3605"]],[3,4,["H1364"]],[4,5,["H4026"]],[5,7,["H5921"]],[7,8,["H3605"]],[8,9,["H1219"]],[9,10,["H2346"]]]},{"k":17701,"v":[[0,2,["H5921"]],[2,3,["H3605"]],[3,5,["H591"]],[5,7,["H8659"]],[7,9,["H5921"]],[9,10,["H3605"]],[10,11,["H2532"]],[11,12,["H7914"]]]},{"k":17702,"v":[[0,3,["H1365"]],[3,5,["H120"]],[5,9,["H7817"]],[9,12,["H7312"]],[12,14,["H376"]],[14,18,["H8213"]],[18,21,["H3068"]],[21,22,["H905"]],[22,25,["H7682"]],[25,27,["H1931"]],[27,28,["H3117"]]]},{"k":17703,"v":[[0,3,["H457"]],[3,6,["H3632"]],[6,7,["H2498"]]]},{"k":17704,"v":[[0,4,["H935"]],[4,7,["H4631"]],[7,10,["H6697"]],[10,14,["H4247"]],[14,17,["H6083"]],[17,18,["H4480","H6440"]],[18,19,["H6343"]],[19,22,["H3068"]],[22,26,["H4480","H1926"]],[26,29,["H1347"]],[29,32,["H6965"]],[32,35,["H6206"]],[35,37,["H776"]]]},{"k":17705,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H120"]],[5,7,["H7993","(H853)"]],[7,9,["H457"]],[9,11,["H3701"]],[11,14,["H457"]],[14,16,["H2091"]],[16,17,["H834"]],[17,19,["H6213"]],[19,25,["H7812"]],[25,28,["H2661","H6512"]],[28,32,["H5847"]]]},{"k":17706,"v":[[0,2,["H935"]],[2,5,["H5366"]],[5,8,["H6697"]],[8,12,["H5585"]],[12,16,["H5553"]],[16,17,["H4480","H6440"]],[17,18,["H6343"]],[18,21,["H3068"]],[21,25,["H4480","H1926"]],[25,28,["H1347"]],[28,31,["H6965"]],[31,34,["H6206"]],[34,36,["H776"]]]},{"k":17707,"v":[[0,1,["H2308"]],[1,3,["H4480"]],[3,4,["H120"]],[4,5,["H834"]],[5,6,["H5397"]],[6,10,["H639"]],[10,11,["H3588"]],[11,12,["H4100"]],[12,14,["H1931"]],[14,17,["H2803"]],[17,18,[]]]},{"k":17708,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H113"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,11,["H5493"]],[11,13,["H4480","H3389"]],[13,16,["H4480","H3063"]],[16,18,["H4937"]],[18,21,["H4938"]],[21,23,["H3605"]],[23,24,["H4937"]],[24,26,["H3899"]],[26,29,["H3605"]],[29,30,["H4937"]],[30,32,["H4325"]]]},{"k":17709,"v":[[0,2,["H1368"]],[2,6,["H376"]],[6,8,["H4421"]],[8,10,["H8199"]],[10,13,["H5030"]],[13,16,["H7080"]],[16,19,["H2205"]]]},{"k":17710,"v":[[0,2,["H8269"]],[2,4,["H2572"]],[4,8,["H5375","H6440"]],[8,11,["H3289"]],[11,14,["H2450"]],[14,15,["H2796"]],[15,18,["H995"]],[18,19,["H3908"]]]},{"k":17711,"v":[[0,4,["H5414"]],[4,5,["H5288"]],[5,9,["H8269"]],[9,11,["H8586"]],[11,13,["H4910"]],[13,15,[]]]},{"k":17712,"v":[[0,3,["H5971"]],[3,6,["H5065"]],[6,8,["H376"]],[8,10,["H376"]],[10,13,["H376"]],[13,16,["H7453"]],[16,18,["H5288"]],[18,22,["H7292"]],[22,25,["H2205"]],[25,28,["H7034"]],[28,31,["H3513"]]]},{"k":17713,"v":[[0,1,["H3588"]],[1,3,["H376"]],[3,6,["H8610"]],[6,9,["H251"]],[9,12,["H1004"]],[12,15,["H1"]],[15,19,["H8071"]],[19,20,["H1961"]],[20,23,["H7101"]],[23,26,["H2063"]],[26,27,["H4384"]],[27,29,["H8478"]],[29,31,["H3027"]]]},{"k":17714,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H5375"]],[6,7,["H559"]],[7,10,["H3808"]],[10,11,["H1961"]],[11,13,["H2280"]],[13,17,["H1004"]],[17,19,["H369"]],[19,20,["H3899"]],[20,21,["H369"]],[21,22,["H8071"]],[22,23,["H7760"]],[23,25,["H3808"]],[25,27,["H7101"]],[27,30,["H5971"]]]},{"k":17715,"v":[[0,1,["H3588"]],[1,2,["H3389"]],[2,4,["H3782"]],[4,6,["H3063"]],[6,8,["H5307"]],[8,9,["H3588"]],[9,11,["H3956"]],[11,14,["H4611"]],[14,16,["H413"]],[16,18,["H3068"]],[18,20,["H4784"]],[20,22,["H5869"]],[22,25,["H3519"]]]},{"k":17716,"v":[[0,2,["H1971"]],[2,5,["H6440"]],[5,7,["H6030"]],[7,12,["H5046"]],[12,14,["H2403"]],[14,16,["H5467"]],[16,18,["H3582"]],[18,20,["H3808"]],[20,21,["H188"]],[21,24,["H5315"]],[24,25,["H3588"]],[25,28,["H1580"]],[28,29,["H7451"]],[29,31,[]]]},{"k":17717,"v":[[0,1,["H559"]],[1,5,["H6662"]],[5,6,["H3588"]],[6,10,["H2895"]],[10,13,["H3588"]],[13,16,["H398"]],[16,18,["H6529"]],[18,21,["H4611"]]]},{"k":17718,"v":[[0,1,["H188"]],[1,4,["H7563"]],[4,8,["H7451"]],[8,11,["H3588"]],[11,13,["H1576"]],[13,16,["H3027"]],[16,19,["H6213"]],[19,20,[]]]},{"k":17719,"v":[[0,4,["H5971"]],[4,5,["H5768"]],[5,8,["H5065"]],[8,10,["H802"]],[10,11,["H4910"]],[11,16,["H5971"]],[16,19,["H833"]],[19,24,["H8582"]],[24,26,["H1104"]],[26,28,["H1870"]],[28,31,["H734"]]]},{"k":17720,"v":[[0,2,["H3068"]],[2,4,["H5324"]],[4,6,["H7378"]],[6,8,["H5975"]],[8,10,["H1777"]],[10,12,["H5971"]]]},{"k":17721,"v":[[0,2,["H3068"]],[2,4,["H935"]],[4,6,["H4941"]],[6,7,["H5973"]],[7,9,["H2205"]],[9,12,["H5971"]],[12,15,["H8269"]],[15,18,["H859"]],[18,21,["H1197"]],[21,23,["H3754"]],[23,25,["H1500"]],[25,28,["H6041"]],[28,32,["H1004"]]]},{"k":17722,"v":[[0,3,["H4100"]],[3,10,["H1792","H5971"]],[10,12,["H2912"]],[12,14,["H6440"]],[14,17,["H6041"]],[17,18,["H5002"]],[18,20,["H136"]],[20,21,["H3068"]],[21,23,["H6635"]]]},{"k":17723,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H3282","H3588"]],[5,7,["H1323"]],[7,9,["H6726"]],[9,11,["H1361"]],[11,13,["H1980"]],[13,16,["H5186"]],[16,17,["H1627"]],[17,19,["H8265"]],[19,20,["H5869"]],[20,21,["H1980"]],[21,23,["H2952"]],[23,26,["H1980"]],[26,30,["H5913"]],[30,33,["H7272"]]]},{"k":17724,"v":[[0,3,["H136"]],[3,8,["H5596"]],[8,13,["H6936"]],[13,16,["H1323"]],[16,18,["H6726"]],[18,21,["H3068"]],[21,23,["H6168"]],[23,26,["H6596"]]]},{"k":17725,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H136"]],[5,8,["H5493","(H853)"]],[8,10,["H8597"]],[10,14,["H5914"]],[14,20,["H7636"]],[20,24,["H7720"]],[24,27,[]]]},{"k":17726,"v":[[0,2,["H5188"]],[2,5,["H8285"]],[5,8,["H7479"]]]},{"k":17727,"v":[[0,2,["H6287"]],[2,8,["H6807"]],[8,11,["H7196"]],[11,14,["H1004","H5315"]],[14,17,["H3908"]]]},{"k":17728,"v":[[0,2,["H2885"]],[2,4,["H639"]],[4,5,["H5141"]]]},{"k":17729,"v":[[0,5,["H4254"]],[5,8,["H4595"]],[8,11,["H4304"]],[11,15,["H2754"]]]},{"k":17730,"v":[[0,2,["H1549"]],[2,6,["H5466"]],[6,9,["H6797"]],[9,12,["H7289"]]]},{"k":17731,"v":[[0,6,["H1961"]],[6,8,["H8478"]],[8,11,["H1314"]],[11,14,["H1961"]],[14,15,["H4716"]],[15,17,["H8478"]],[17,20,["H2290"]],[20,22,["H5364"]],[22,24,["H8478"]],[24,27,["H4639"]],[27,28,["H4748"]],[28,29,["H7144"]],[29,31,["H8478"]],[31,34,["H6614"]],[34,36,["H4228"]],[36,38,["H8242"]],[38,40,["H3587"]],[40,41,["H8478"]],[41,43,["H3308"]]]},{"k":17732,"v":[[0,2,["H4962"]],[2,4,["H5307"]],[4,7,["H2719"]],[7,10,["H1369"]],[10,13,["H4421"]]]},{"k":17733,"v":[[0,3,["H6607"]],[3,5,["H578"]],[5,7,["H56"]],[7,11,["H5352"]],[11,13,["H3427"]],[13,16,["H776"]]]},{"k":17734,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,5,["H7651"]],[5,6,["H802"]],[6,9,["H2388"]],[9,11,["H259"]],[11,12,["H376"]],[12,13,["H559"]],[13,16,["H398"]],[16,19,["H3899"]],[19,21,["H3847"]],[21,24,["H8071"]],[24,25,["H7535"]],[25,29,["H7121"]],[29,32,["H8034"]],[32,34,["H622"]],[34,37,["H2781"]]]},{"k":17735,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H6780"]],[6,9,["H3068"]],[9,10,["H1961"]],[10,11,["H6643"]],[11,13,["H3519"]],[13,16,["H6529"]],[16,19,["H776"]],[19,22,["H1347"]],[22,24,["H8597"]],[24,29,["H6413"]],[29,31,["H3478"]]]},{"k":17736,"v":[[0,6,["H1961"]],[6,11,["H7604"]],[11,13,["H6726"]],[13,17,["H3498"]],[17,19,["H3389"]],[19,22,["H559"]],[22,23,["H6918"]],[23,26,["H3605"]],[26,29,["H3789"]],[29,32,["H2416"]],[32,34,["H3389"]]]},{"k":17737,"v":[[0,1,["H518"]],[1,3,["H136"]],[3,7,["H7364","(H853)"]],[7,9,["H6675"]],[9,12,["H1323"]],[12,14,["H6726"]],[14,18,["H1740"]],[18,20,["H1818"]],[20,22,["H3389"]],[22,25,["H4480","H7130"]],[25,29,["H7307"]],[29,31,["H4941"]],[31,35,["H7307"]],[35,37,["H1197"]]]},{"k":17738,"v":[[0,3,["H3068"]],[3,5,["H1254"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,9,["H4349"]],[9,11,["H2022"]],[11,12,["H6726"]],[12,14,["H5921"]],[14,16,["H4744"]],[16,18,["H6051"]],[18,20,["H6227"]],[20,22,["H3119"]],[22,25,["H5051"]],[25,28,["H3852"]],[28,29,["H784"]],[29,31,["H3915"]],[31,32,["H3588"]],[32,33,["H5921"]],[33,34,["H3605"]],[34,36,["H3519"]],[36,40,["H2646"]]]},{"k":17739,"v":[[0,4,["H1961"]],[4,6,["H5521"]],[6,9,["H6738"]],[9,12,["H3119"]],[12,15,["H4480","H2721"]],[15,21,["H4268"]],[21,25,["H4563"]],[25,27,["H4480","H2230"]],[27,30,["H4480","H4306"]]]},{"k":17740,"v":[[0,1,["H4994"]],[1,4,["H7891"]],[4,7,["H3039"]],[7,9,["H7892"]],[9,12,["H1730"]],[12,15,["H3754"]],[15,17,["H3039"]],[17,18,["H1961"]],[18,20,["H3754"]],[20,25,["H1121","H8081","H7161"]]]},{"k":17741,"v":[[0,3,["H5823"]],[3,9,["H5619"]],[9,12,["H5193"]],[12,17,["H8321"]],[17,19,["H1129"]],[19,21,["H4026"]],[21,24,["H8432"]],[24,28,["H1571"]],[28,29,["H2672"]],[29,31,["H3342"]],[31,35,["H6960"]],[35,40,["H6213"]],[40,41,["H6025"]],[41,45,["H6213"]],[45,47,["H891"]]]},{"k":17742,"v":[[0,2,["H6258"]],[2,4,["H3427"]],[4,6,["H3389"]],[6,8,["H376"]],[8,10,["H3063"]],[10,11,["H8199"]],[11,14,["H4994"]],[14,15,["H996"]],[15,19,["H3754"]]]},{"k":17743,"v":[[0,1,["H4100"]],[1,5,["H6213"]],[5,6,["H5750"]],[6,9,["H3754"]],[9,13,["H3808"]],[13,14,["H6213"]],[14,17,["H4069"]],[17,20,["H6960"]],[20,25,["H6213"]],[25,26,["H6025"]],[26,29,["H6213"]],[29,31,["H891"]]]},{"k":17744,"v":[[0,2,["H6258"]],[2,7,["H3045","H4994"]],[7,8,["(H853)"]],[8,9,["H834"]],[9,10,["H589"]],[10,12,["H6213"]],[12,15,["H3754"]],[15,19,["H5493"]],[19,21,["H4881"]],[21,26,["H1961"]],[26,28,["H1197"]],[28,31,["H6555"]],[31,33,["H1447"]],[33,38,["H1961"]],[38,40,["H4823"]]]},{"k":17745,"v":[[0,4,["H7896"]],[4,6,["H1326"]],[6,9,["H3808"]],[9,11,["H2167"]],[11,12,["H3808"]],[12,13,["H5737"]],[13,18,["H5927"]],[18,19,["H8068"]],[19,21,["H7898"]],[21,25,["H6680","H5921"]],[25,27,["H5645"]],[27,32,["H4480","H4305","H4306"]],[32,33,["H5921"]],[33,34,[]]]},{"k":17746,"v":[[0,1,["H3588"]],[1,3,["H3754"]],[3,6,["H3068"]],[6,8,["H6635"]],[8,11,["H1004"]],[11,13,["H3478"]],[13,16,["H376"]],[16,18,["H3063"]],[18,20,["H8191"]],[20,21,["H5194"]],[21,24,["H6960"]],[24,26,["H4941"]],[26,28,["H2009"]],[28,29,["H4939"]],[29,31,["H6666"]],[31,33,["H2009"]],[33,35,["H6818"]]]},{"k":17747,"v":[[0,1,["H1945"]],[1,5,["H5060"]],[5,6,["H1004"]],[6,8,["H1004"]],[8,10,["H7126"]],[10,11,["H7704"]],[11,13,["H7704"]],[13,14,["H5704"]],[14,17,["H657"]],[17,18,["H4725"]],[18,23,["H3427"]],[23,24,["H905"]],[24,27,["H7130"]],[27,30,["H776"]]]},{"k":17748,"v":[[0,3,["H241"]],[3,6,["H3068"]],[6,8,["H6635"]],[8,11,["H518","H3808"]],[11,12,["H7227"]],[12,13,["H1004"]],[13,15,["H1961"]],[15,16,["H8047"]],[16,18,["H1419"]],[18,20,["H2896"]],[20,21,["H4480","H369"]],[21,22,["H3427"]]]},{"k":17749,"v":[[0,1,["H3588"]],[1,2,["H6235"]],[2,3,["H6776"]],[3,5,["H3754"]],[5,7,["H6213"]],[7,8,["H259"]],[8,9,["H1324"]],[9,12,["H2233"]],[12,15,["H2563"]],[15,17,["H6213"]],[17,19,["H374"]]]},{"k":17750,"v":[[0,1,["H1945"]],[1,7,["H7925"]],[7,10,["H1242"]],[10,14,["H7291"]],[14,16,["H7941"]],[16,18,["H309"]],[18,20,["H5399"]],[20,22,["H3196"]],[22,23,["H1814"]],[23,24,[]]]},{"k":17751,"v":[[0,3,["H3658"]],[3,6,["H5035"]],[6,8,["H8596"]],[8,10,["H2485"]],[10,12,["H3196"]],[12,13,["H1961"]],[13,16,["H4960"]],[16,19,["H5027"]],[19,20,["H3808"]],[20,22,["H6467"]],[22,25,["H3068"]],[25,26,["H3808"]],[26,27,["H7200"]],[27,29,["H4639"]],[29,32,["H3027"]]]},{"k":17752,"v":[[0,1,["H3651"]],[1,3,["H5971"]],[3,7,["H1540"]],[7,11,["H4480","H1097"]],[11,12,["H1847"]],[12,15,["H3519"]],[15,16,["H4962"]],[16,18,["H7458"]],[18,21,["H1995"]],[21,23,["H6704"]],[23,25,["H6772"]]]},{"k":17753,"v":[[0,1,["H3651"]],[1,2,["H7585"]],[2,4,["H7337"]],[4,5,["H5315"]],[5,7,["H6473"]],[7,9,["H6310"]],[9,10,["H1097"]],[10,11,["H2706"]],[11,14,["H1926"]],[14,17,["H1995"]],[17,20,["H7588"]],[20,24,["H5938"]],[24,26,["H3381"]],[26,28,[]]]},{"k":17754,"v":[[0,4,["H120"]],[4,8,["H7817"]],[8,12,["H376"]],[12,15,["H8213"]],[15,18,["H5869"]],[18,21,["H1364"]],[21,24,["H8213"]]]},{"k":17755,"v":[[0,3,["H3068"]],[3,5,["H6635"]],[5,8,["H1361"]],[8,10,["H4941"]],[10,12,["H410"]],[12,15,["H6918"]],[15,18,["H6942"]],[18,20,["H6666"]]]},{"k":17756,"v":[[0,4,["H3532"]],[4,5,["H7462"]],[5,8,["H1699"]],[8,12,["H2723"]],[12,16,["H4220"]],[16,18,["H1481"]],[18,19,["H398"]]]},{"k":17757,"v":[[0,1,["H1945"]],[1,5,["H4900"]],[5,6,["H5771"]],[6,8,["H2256"]],[8,10,["H7723"]],[10,12,["H2402"]],[12,18,["H5699"]],[18,19,["H5688"]]]},{"k":17758,"v":[[0,2,["H559"]],[2,6,["H4116"]],[6,8,["H2363"]],[8,10,["H4639"]],[10,11,["H4616"]],[11,14,["H7200"]],[14,19,["H6098"]],[19,23,["H6918"]],[23,25,["H3478"]],[25,27,["H7126"]],[27,29,["H935"]],[29,33,["H3045"]],[33,34,[]]]},{"k":17759,"v":[[0,1,["H1945"]],[1,5,["H559"]],[5,6,["H7451"]],[6,7,["H2896"]],[7,9,["H2896"]],[9,10,["H7451"]],[10,12,["H7760"]],[12,13,["H2822"]],[13,15,["H216"]],[15,17,["H216"]],[17,19,["H2822"]],[19,21,["H7760"]],[21,22,["H4751"]],[22,24,["H4966"]],[24,26,["H4966"]],[26,28,["H4751"]]]},{"k":17760,"v":[[0,1,["H1945"]],[1,6,["H2450"]],[6,10,["H5869"]],[10,12,["H995"]],[12,13,["H5048"]],[13,16,["H6440"]]]},{"k":17761,"v":[[0,1,["H1945"]],[1,6,["H1368"]],[6,8,["H8354"]],[8,9,["H3196"]],[9,11,["H376"]],[11,13,["H2428"]],[13,15,["H4537"]],[15,17,["H7941"]]]},{"k":17762,"v":[[0,2,["H6663"]],[2,4,["H7563"]],[4,5,["H6118"]],[5,6,["H7810"]],[6,9,["H5493"]],[9,11,["H6666"]],[11,14,["H6662"]],[14,15,["H4480"]],[15,16,[]]]},{"k":17763,"v":[[0,1,["H3651"]],[1,4,["H784"]],[4,5,["H398"]],[5,7,["H7179"]],[7,10,["H3852"]],[10,11,["H7503"]],[11,13,["H2842"]],[13,16,["H8328"]],[16,18,["H1961"]],[18,20,["H4716"]],[20,23,["H6525"]],[23,26,["H5927"]],[26,28,["H80"]],[28,29,["H3588"]],[29,33,["H3988","(H853)"]],[33,35,["H8451"]],[35,38,["H3068"]],[38,40,["H6635"]],[40,42,["H5006"]],[42,44,["H565"]],[44,48,["H6918"]],[48,50,["H3478"]]]},{"k":17764,"v":[[0,1,["H5921","H3651"]],[1,4,["H639"]],[4,7,["H3068"]],[7,8,["H2734"]],[8,11,["H5971"]],[11,16,["H5186"]],[16,18,["H3027"]],[18,19,["H5921"]],[19,23,["H5221"]],[23,27,["H2022"]],[27,29,["H7264"]],[29,32,["H5038"]],[32,34,["H1961","H5478"]],[34,37,["H7130"]],[37,40,["H2351"]],[40,42,["H3605"]],[42,43,["H2063"]],[43,45,["H639"]],[45,47,["H3808"]],[47,49,["H7725"]],[49,52,["H3027"]],[52,55,["H5186"]],[55,56,["H5750"]]]},{"k":17765,"v":[[0,5,["H5375"]],[5,7,["H5251"]],[7,10,["H1471"]],[10,12,["H4480","H7350"]],[12,15,["H8319"]],[15,20,["H4480","H7097"]],[20,23,["H776"]],[23,25,["H2009"]],[25,28,["H935"]],[28,30,["H4120"]],[30,31,["H7031"]]]},{"k":17766,"v":[[0,1,["H369"]],[1,4,["H5889"]],[4,5,["H369"]],[5,6,["H3782"]],[6,9,["H3808"]],[9,11,["H5123"]],[11,12,["H3808"]],[12,13,["H3462"]],[13,14,["H3808"]],[14,17,["H232"]],[17,20,["H2504"]],[20,22,["H6605"]],[22,23,["H3808"]],[23,25,["H8288"]],[25,28,["H5275"]],[28,30,["H5423"]]]},{"k":17767,"v":[[0,1,["H834"]],[1,2,["H2671"]],[2,4,["H8150"]],[4,6,["H3605"]],[6,8,["H7198"]],[8,9,["H1869"]],[9,11,["H5483"]],[11,12,["H6541"]],[12,15,["H2803"]],[15,17,["H6864"]],[17,20,["H1534"]],[20,23,["H5492"]]]},{"k":17768,"v":[[0,2,["H7581"]],[2,7,["H3833"]],[7,10,["H7580"]],[10,13,["H3715"]],[13,17,["H5098"]],[17,20,["H270"]],[20,23,["H2964"]],[23,29,["H6403"]],[29,31,["H369"]],[31,33,["H5337"]],[33,34,[]]]},{"k":17769,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,7,["H5098"]],[7,8,["H5921"]],[8,12,["H5100"]],[12,15,["H3220"]],[15,19,["H5027"]],[19,22,["H776"]],[22,23,["H2009"]],[23,24,["H2822"]],[24,26,["H6862"]],[26,29,["H216"]],[29,31,["H2821"]],[31,34,["H6183"]],[34,35,[]]]},{"k":17770,"v":[[0,3,["H8141"]],[3,5,["H4428"]],[5,6,["H5818"]],[6,7,["H4194"]],[7,9,["H7200"]],[9,10,["(H853)"]],[10,12,["H136"]],[12,13,["H3427"]],[13,14,["H5921"]],[14,16,["H3678"]],[16,17,["H7311"]],[17,20,["H5375"]],[20,23,["H7757"]],[23,24,["H4390","(H853)"]],[24,26,["H1964"]]]},{"k":17771,"v":[[0,1,["H4480","H4605"]],[1,3,["H5975"]],[3,5,["H8314"]],[5,7,["H259"]],[7,10,["H8337","H3671","H8337","H3671"]],[10,12,["H8147"]],[12,14,["H3680"]],[14,16,["H6440"]],[16,19,["H8147"]],[19,21,["H3680"]],[21,23,["H7272"]],[23,26,["H8147"]],[26,29,["H5774"]]]},{"k":17772,"v":[[0,3,["H7121"]],[3,4,["H413","(H2088)"]],[4,5,["H2088"]],[5,7,["H559"]],[7,8,["H6918"]],[8,9,["H6918"]],[9,10,["H6918"]],[10,13,["H3068"]],[13,15,["H6635"]],[15,17,["H3605"]],[17,18,["H776"]],[18,20,["H4393"]],[20,23,["H3519"]]]},{"k":17773,"v":[[0,3,["H520"]],[3,6,["H5592"]],[6,7,["H5128"]],[7,10,["H4480","H6963"]],[10,14,["H7121"]],[14,17,["H1004"]],[17,19,["H4390"]],[19,21,["H6227"]]]},{"k":17774,"v":[[0,2,["H559"]],[2,4,["H188"]],[4,7,["H3588"]],[7,10,["H1820"]],[10,11,["H3588"]],[11,12,["H589"]],[12,15,["H376"]],[15,17,["H2931"]],[17,18,["H8193"]],[18,20,["H589"]],[20,21,["H3427"]],[21,24,["H8432"]],[24,27,["H5971"]],[27,29,["H2931"]],[29,30,["H8193"]],[30,31,["H3588"]],[31,33,["H5869"]],[33,35,["H7200","(H853)"]],[35,37,["H4428"]],[37,39,["H3068"]],[39,41,["H6635"]]]},{"k":17775,"v":[[0,2,["H5774"]],[2,3,["H259"]],[3,4,["H4480"]],[4,6,["H8314"]],[6,7,["H413"]],[7,12,["H7531"]],[12,15,["H3027"]],[15,19,["H3947"]],[19,22,["H4457"]],[22,24,["H4480","H5921"]],[24,26,["H4196"]]]},{"k":17776,"v":[[0,3,["H5060"]],[3,5,["H5921"]],[5,7,["H6310"]],[7,9,["H559"]],[9,10,["H2009"]],[10,11,["H2088"]],[11,13,["H5060","H5921"]],[13,15,["H8193"]],[15,18,["H5771"]],[18,21,["H5493"]],[21,24,["H2403"]],[24,25,["H3722"]]]},{"k":17777,"v":[[0,3,["H8085","(H853)"]],[3,5,["H6963"]],[5,8,["H136"]],[8,9,["H559","(H853)"]],[9,10,["H4310"]],[10,13,["H7971"]],[13,15,["H4310"]],[15,17,["H1980"]],[17,21,["H559"]],[21,25,["H2009"]],[25,26,["H7971"]],[26,27,[]]]},{"k":17778,"v":[[0,3,["H559"]],[3,4,["H1980"]],[4,6,["H559"]],[6,7,["H2088"]],[7,8,["H5971"]],[8,11,["H8085","H8085"]],[11,13,["H995"]],[13,14,["H408"]],[14,18,["H7200","H7200"]],[18,20,["H3045"]],[20,21,["H3808"]]]},{"k":17779,"v":[[0,3,["H3820"]],[3,5,["H2088"]],[5,6,["H5971"]],[6,7,["H8082"]],[7,11,["H241"]],[11,12,["H3513"]],[12,14,["H8173"]],[14,16,["H5869"]],[16,17,["H6435"]],[17,19,["H7200"]],[19,22,["H5869"]],[22,24,["H8085"]],[24,27,["H241"]],[27,29,["H995"]],[29,32,["H3824"]],[32,34,["H7725"]],[34,37,["H7495"]]]},{"k":17780,"v":[[0,2,["H559"]],[2,4,["H136"]],[4,6,["H5704","H4970"]],[6,9,["H559"]],[9,10,["H5704","H834"]],[10,12,["H5892"]],[12,14,["H7582"]],[14,15,["H4480","H369"]],[15,16,["H3427"]],[16,19,["H1004"]],[19,20,["H4480","H369"]],[20,21,["H120"]],[21,24,["H127"]],[24,26,["H8077"]],[26,27,["H7582"]]]},{"k":17781,"v":[[0,3,["H3068"]],[3,8,["H7368","(H853)","H120"]],[8,13,["H7227"]],[13,14,["H5805"]],[14,17,["H7130"]],[17,20,["H776"]]]},{"k":17782,"v":[[0,2,["H5750"]],[2,8,["H6224"]],[8,12,["H7725"]],[12,15,["H1961"]],[15,16,["H1197"]],[16,20,["H424"]],[20,24,["H437"]],[24,25,["H834"]],[25,26,["H4678"]],[26,32,["H7995"]],[32,37,["H6944"]],[37,38,["H2233"]],[38,42,["H4678"]],[42,43,[]]]},{"k":17783,"v":[[0,5,["H1961"]],[5,8,["H3117"]],[8,10,["H271"]],[10,12,["H1121"]],[12,14,["H3147"]],[14,16,["H1121"]],[16,18,["H5818"]],[18,19,["H4428"]],[19,21,["H3063"]],[21,23,["H7526"]],[23,25,["H4428"]],[25,27,["H758"]],[27,29,["H6492"]],[29,31,["H1121"]],[31,33,["H7425"]],[33,34,["H4428"]],[34,36,["H3478"]],[36,38,["H5927"]],[38,40,["H3389"]],[40,42,["H4421"]],[42,43,["H5921"]],[43,46,["H3201"]],[46,47,["H3808"]],[47,48,["H3898"]],[48,49,["H5921"]],[49,50,[]]]},{"k":17784,"v":[[0,4,["H5046"]],[4,6,["H1004"]],[6,8,["H1732"]],[8,9,["H559"]],[9,10,["H758"]],[10,12,["H5117"]],[12,13,["H5921"]],[13,14,["H669"]],[14,17,["H3824"]],[17,19,["H5128"]],[19,22,["H3824"]],[22,25,["H5971"]],[25,28,["H6086"]],[28,31,["H3293"]],[31,33,["H5128"]],[33,34,["H4480","H6440"]],[34,36,["H7307"]]]},{"k":17785,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,6,["H3470"]],[6,8,["H3318"]],[8,9,["H4994"]],[9,11,["H7121"]],[11,12,["H271"]],[12,13,["H859"]],[13,15,["H7610"]],[15,17,["H1121"]],[17,18,["H413"]],[18,20,["H7097"]],[20,23,["H8585"]],[23,26,["H5945"]],[26,27,["H1295"]],[27,28,["H413"]],[28,30,["H4546"]],[30,33,["H3526"]],[33,34,["H7704"]]]},{"k":17786,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,6,["H8104"]],[6,9,["H8252"]],[9,10,["H3372"]],[10,11,["H408"]],[11,12,["H408"]],[12,14,["H7401","H3824"]],[14,17,["H4480","H8147"]],[17,18,["H2180"]],[18,20,["H428"]],[20,21,["H6226"]],[21,22,["H181"]],[22,25,["H2750"]],[25,26,["H639"]],[26,28,["H7526"]],[28,30,["H758"]],[30,34,["H1121"]],[34,36,["H7425"]]]},{"k":17787,"v":[[0,1,["H3282","H3588"]],[1,2,["H758"]],[2,3,["H669"]],[3,6,["H1121"]],[6,8,["H7425"]],[8,11,["H7451"]],[11,12,["H3289"]],[12,13,["H5921"]],[13,15,["H559"]]]},{"k":17788,"v":[[0,4,["H5927"]],[4,6,["H3063"]],[6,8,["H6972"]],[8,15,["H1234"]],[15,17,["H413"]],[17,22,["H4427","H4428"]],[22,25,["H8432"]],[25,28,["(H853)"]],[28,30,["H1121"]],[30,32,["H2870"]]]},{"k":17789,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,8,["H3808"]],[8,9,["H6965"]],[9,10,["H3808"]],[10,15,["H1961"]]]},{"k":17790,"v":[[0,1,["H3588"]],[1,3,["H7218"]],[3,5,["H758"]],[5,7,["H1834"]],[7,10,["H7218"]],[10,12,["H1834"]],[12,14,["H7526"]],[14,16,["H5750"]],[16,17,["H8346"]],[17,19,["H2568"]],[19,20,["H8141"]],[20,22,["H669"]],[22,24,["H2844"]],[24,30,["H4480","H5971"]]]},{"k":17791,"v":[[0,3,["H7218"]],[3,5,["H669"]],[5,7,["H8111"]],[7,10,["H7218"]],[10,12,["H8111"]],[12,14,["H7425"]],[14,15,["H1121"]],[15,16,["H518"]],[16,19,["H3808"]],[19,20,["H539"]],[20,21,["H3588"]],[21,24,["H3808"]],[24,26,["H539"]]]},{"k":17792,"v":[[0,3,["H3068"]],[3,4,["H1696"]],[4,5,["H3254"]],[5,6,["H413"]],[6,7,["H271"]],[7,8,["H559"]]]},{"k":17793,"v":[[0,1,["H7592"]],[1,4,["H226"]],[4,5,["H4480","H5973"]],[5,7,["H3068"]],[7,9,["H430"]],[9,10,["H7592"]],[10,15,["H6009"]],[15,16,["H176"]],[16,19,["H1361"]],[19,20,["H4605"]]]},{"k":17794,"v":[[0,2,["H271"]],[2,3,["H559"]],[3,6,["H3808"]],[6,7,["H7592"]],[7,8,["H3808"]],[8,11,["H5254","(H853)"]],[11,13,["H3068"]]]},{"k":17795,"v":[[0,3,["H559"]],[3,4,["H8085"]],[4,6,["H4994"]],[6,8,["H1004"]],[8,10,["H1732"]],[10,15,["H4592"]],[15,16,["H4480"]],[16,19,["H3811"]],[19,20,["H376"]],[20,21,["H3588"]],[21,24,["H3811","(H853)"]],[24,26,["H430"]],[26,27,["H1571"]]]},{"k":17796,"v":[[0,1,["H3651"]],[1,3,["H136"]],[3,4,["H1931"]],[4,6,["H5414"]],[6,9,["H226"]],[9,10,["H2009"]],[10,12,["H5959"]],[12,14,["H2029"]],[14,16,["H3205"]],[16,18,["H1121"]],[18,21,["H7121"]],[21,23,["H8034"]],[23,24,["H6005"]]]},{"k":17797,"v":[[0,1,["H2529"]],[1,3,["H1706"]],[3,6,["H398"]],[6,10,["H3045"]],[10,12,["H3988"]],[12,14,["H7451"]],[14,16,["H977"]],[16,18,["H2896"]]]},{"k":17798,"v":[[0,1,["H3588"]],[1,2,["H2962"]],[2,4,["H5288"]],[4,6,["H3045"]],[6,8,["H3988"]],[8,10,["H7451"]],[10,12,["H977"]],[12,14,["H2896"]],[14,16,["H127"]],[16,17,["H834"]],[17,18,["H859"]],[18,19,["H6973"]],[19,22,["H5800"]],[22,24,["H8147"]],[24,26,["H4428"]]]},{"k":17799,"v":[[0,2,["H3068"]],[2,4,["H935"]],[4,5,["H5921"]],[5,8,["H5921"]],[8,10,["H5971"]],[10,12,["H5921"]],[12,14,["H1"]],[14,15,["H1004"]],[15,16,["H3117"]],[16,17,["H834"]],[17,19,["H3808"]],[19,20,["H935"]],[20,23,["H4480","H3117"]],[23,25,["H669"]],[25,26,["H5493"]],[26,27,["H4480","H5921"]],[27,28,["H3063"]],[28,29,["(H853)"]],[29,31,["H4428"]],[31,33,["H804"]]]},{"k":17800,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H3068"]],[12,14,["H8319"]],[14,17,["H2070"]],[17,18,["H834"]],[18,23,["H7097"]],[23,26,["H2975"]],[26,28,["H4714"]],[28,32,["H1682"]],[32,33,["H834"]],[33,37,["H776"]],[37,39,["H804"]]]},{"k":17801,"v":[[0,4,["H935"]],[4,7,["H5117"]],[7,8,["H3605"]],[8,13,["H1327"]],[13,14,["H5158"]],[14,18,["H5357"]],[18,21,["H5553"]],[21,24,["H3605"]],[24,25,["H5285"]],[25,28,["H3605"]],[28,29,["H5097"]]]},{"k":17802,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,7,["H136"]],[7,8,["H1548"]],[8,11,["H8593"]],[11,14,["H7917"]],[14,18,["H5676"]],[18,20,["H5104"]],[20,23,["H4428"]],[23,25,["H804","(H853)"]],[25,27,["H7218"]],[27,30,["H8181"]],[30,33,["H7272"]],[33,37,["H1571"]],[37,38,["H5595","(H853)"]],[38,40,["H2206"]]]},{"k":17803,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H376"]],[12,14,["H2421"]],[14,16,["H1241"]],[16,17,["H5697"]],[17,19,["H8147"]],[19,20,["H6629"]]]},{"k":17804,"v":[[0,6,["H1961"]],[6,9,["H4480","H7230"]],[9,11,["H2461"]],[11,15,["H6213"]],[15,18,["H398"]],[18,19,["H2529"]],[19,20,["H3588"]],[20,21,["H2529"]],[21,23,["H1706"]],[23,26,["H3605"]],[26,27,["H398"]],[27,30,["H3498"]],[30,33,["H776"]]]},{"k":17805,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,11,["H3605"]],[11,12,["H4725"]],[12,14,["H1961"]],[14,15,["H8033"]],[15,17,["H1961"]],[17,19,["H505"]],[19,20,["H1612"]],[20,23,["H505"]],[23,24,["H3701"]],[24,28,["H1961"]],[28,30,["H8068"]],[30,32,["H7898"]]]},{"k":17806,"v":[[0,2,["H2671"]],[2,5,["H7198"]],[5,8,["H935"]],[8,9,["H8033"]],[9,10,["H3588"]],[10,11,["H3605"]],[11,13,["H776"]],[13,15,["H1961"]],[15,16,["H8068"]],[16,18,["H7898"]]]},{"k":17807,"v":[[0,3,["H3605"]],[3,4,["H2022"]],[4,5,["H834"]],[5,8,["H5737"]],[8,11,["H4576"]],[11,14,["H3808"]],[14,15,["H935"]],[15,16,["H8033"]],[16,18,["H3374"]],[18,20,["H8068"]],[20,22,["H7898"]],[22,26,["H1961"]],[26,30,["H4916"]],[30,32,["H7794"]],[32,36,["H4823"]],[36,39,["H7716"]]]},{"k":17808,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H3947"]],[7,10,["H1419"]],[10,11,["H1549"]],[11,13,["H3789"]],[13,14,["H5921"]],[14,18,["H582"]],[18,19,["H2747"]],[19,21,["H4122"]]]},{"k":17809,"v":[[0,6,["H539"]],[6,7,["H5707"]],[7,9,["H5749","(H853)"]],[9,10,["H223"]],[10,12,["H3548"]],[12,14,["H2148"]],[14,16,["H1121"]],[16,18,["H3000"]]]},{"k":17810,"v":[[0,3,["H7126"]],[3,4,["H413"]],[4,6,["H5031"]],[6,9,["H2029"]],[9,11,["H3205"]],[11,13,["H1121"]],[13,15,["H559"]],[15,17,["H3068"]],[17,18,["H413"]],[18,20,["H7121"]],[20,22,["H8034"]],[22,23,["H4122"]]]},{"k":17811,"v":[[0,1,["H3588"]],[1,2,["H2962"]],[2,4,["H5288"]],[4,7,["H3045"]],[7,9,["H7121"]],[9,11,["H1"]],[11,14,["H517","(H853)"]],[14,16,["H2428"]],[16,18,["H1834"]],[18,21,["H7998"]],[21,23,["H8111"]],[23,27,["H5375"]],[27,28,["H6440"]],[28,30,["H4428"]],[30,32,["H804"]]]},{"k":17812,"v":[[0,2,["H3068"]],[2,3,["H1696"]],[3,5,["H413"]],[5,7,["H3254"]],[7,8,["H559"]]]},{"k":17813,"v":[[0,1,["H3282","H3588"]],[1,3,["H2088"]],[3,4,["H5971"]],[4,5,["H3988","(H853)"]],[5,7,["H4325"]],[7,9,["H7975"]],[9,11,["H1980"]],[11,12,["H328"]],[12,15,["H4885","(H853)"]],[15,16,["H7526"]],[16,18,["H7425"]],[18,19,["H1121"]]]},{"k":17814,"v":[[0,2,["H3651"]],[2,3,["H2009"]],[3,5,["H136"]],[5,7,["H5927"]],[7,8,["H5921"]],[8,9,["(H853)"]],[9,11,["H4325"]],[11,14,["H5104"]],[14,15,["H6099"]],[15,17,["H7227"]],[17,18,["(H853)"]],[18,20,["H4428"]],[20,22,["H804"]],[22,24,["H3605"]],[24,26,["H3519"]],[26,31,["H5927"]],[31,32,["H5921"]],[32,33,["H3605"]],[33,35,["H650"]],[35,37,["H1980"]],[37,38,["H5921"]],[38,39,["H3605"]],[39,41,["H1415"]]]},{"k":17815,"v":[[0,4,["H2498"]],[4,6,["H3063"]],[6,9,["H7857"]],[9,12,["H5674"]],[12,15,["H5060"]],[15,17,["H5704"]],[17,19,["H6677"]],[19,23,["H4298"]],[23,26,["H3671"]],[26,28,["H4393"]],[28,30,["H7341"]],[30,33,["H776"]],[33,35,["H6005"]]]},{"k":17816,"v":[[0,1,["H7489"]],[1,5,["H5971"]],[5,10,["H2844"]],[10,15,["H238"]],[15,16,["H3605"]],[16,19,["H4801"]],[19,20,["H776"]],[20,22,["H247"]],[22,27,["H2844"]],[27,31,["H247"]],[31,36,["H2844"]],[36,38,[]]]},{"k":17817,"v":[[0,3,["H5779","H6098"]],[3,9,["H6565"]],[9,10,["H1696"]],[10,12,["H1697"]],[12,16,["H3808"]],[16,17,["H6965"]],[17,18,["H3588"]],[18,19,["H410"]],[19,22,["H5973"]]]},{"k":17818,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,4,["H559"]],[4,5,["H3541"]],[5,6,["H413"]],[6,10,["H2393"]],[10,11,["H3027"]],[11,13,["H3256"]],[13,19,["H4480","H1980"]],[19,22,["H1870"]],[22,24,["H2088"]],[24,25,["H5971"]],[25,26,["H559"]]]},{"k":17819,"v":[[0,1,["H559"]],[1,3,["H3808"]],[3,5,["H7195"]],[5,7,["H3605"]],[7,10,["H834"]],[10,11,["H2088"]],[11,12,["H5971"]],[12,14,["H559"]],[14,16,["H7195"]],[16,17,["H3808"]],[17,18,["H3372"]],[18,21,["H4172"]],[21,22,["H3808"]],[22,24,["H6206"]]]},{"k":17820,"v":[[0,1,["H6942","(H853)"]],[1,3,["H3068"]],[3,5,["H6635"]],[5,9,["H1931"]],[9,12,["H4172"]],[12,15,["H1931"]],[15,18,["H6206"]]]},{"k":17821,"v":[[0,4,["H1961"]],[4,7,["H4720"]],[7,11,["H68"]],[11,13,["H5063"]],[13,17,["H6697"]],[17,19,["H4383"]],[19,21,["H8147"]],[21,23,["H1004"]],[23,25,["H3478"]],[25,28,["H6341"]],[28,32,["H4170"]],[32,35,["H3427"]],[35,37,["H3389"]]]},{"k":17822,"v":[[0,2,["H7227"]],[2,6,["H3782"]],[6,8,["H5307"]],[8,11,["H7665"]],[11,14,["H3369"]],[14,17,["H3920"]]]},{"k":17823,"v":[[0,2,["H6887"]],[2,4,["H8584"]],[4,5,["H2856"]],[5,7,["H8451"]],[7,10,["H3928"]]]},{"k":17824,"v":[[0,4,["H2442"]],[4,7,["H3068"]],[7,9,["H5641"]],[9,11,["H6440"]],[11,14,["H4480","H1004"]],[14,16,["H3290"]],[16,20,["H6960"]],[20,22,[]]]},{"k":17825,"v":[[0,1,["H2009"]],[1,2,["H595"]],[2,5,["H3206"]],[5,6,["H834"]],[6,8,["H3068"]],[8,10,["H5414"]],[10,14,["H226"]],[14,17,["H4159"]],[17,19,["H3478"]],[19,20,["H4480","H5973"]],[20,22,["H3068"]],[22,24,["H6635"]],[24,26,["H7931"]],[26,28,["H2022"]],[28,29,["H6726"]]]},{"k":17826,"v":[[0,2,["H3588"]],[2,5,["H559"]],[5,6,["H413"]],[6,8,["H1875"]],[8,9,["H413"]],[9,14,["H178"]],[14,16,["H413"]],[16,17,["H3049"]],[17,19,["H6850"]],[19,22,["H1897"]],[22,24,["H3808"]],[24,26,["H5971"]],[26,27,["H1875"]],[27,28,["H413"]],[28,30,["H430"]],[30,31,["H1157"]],[31,33,["H2416"]],[33,34,["H413"]],[34,36,["H4191"]]]},{"k":17827,"v":[[0,3,["H8451"]],[3,7,["H8584"]],[7,8,["H518"]],[8,10,["H559"]],[10,11,["H3808"]],[11,14,["H2088"]],[14,15,["H1697"]],[15,18,["H834"]],[18,21,["H369"]],[21,22,["H7837"]],[22,24,[]]]},{"k":17828,"v":[[0,4,["H5674"]],[4,8,["H7185"]],[8,10,["H745"]],[10,16,["H1961"]],[16,18,["H3588"]],[18,22,["H7456"]],[22,26,["H7107"]],[26,28,["H7043"]],[28,30,["H4428"]],[30,33,["H430"]],[33,35,["H6437"]],[35,36,["H4605"]]]},{"k":17829,"v":[[0,4,["H5027"]],[4,5,["H413"]],[5,7,["H776"]],[7,9,["H2009"]],[9,10,["H6869"]],[10,12,["H2825"]],[12,13,["H4588"]],[13,15,["H6695"]],[15,20,["H5080"]],[20,22,["H653"]]]},{"k":17830,"v":[[0,1,["H3588"]],[1,3,["H4155"]],[3,5,["H3808"]],[5,8,["H834"]],[8,12,["H4164"]],[12,13,["H6256"]],[13,16,["H7223"]],[16,19,["H7043"]],[19,21,["H776"]],[21,23,["H2074"]],[23,26,["H776"]],[26,28,["H5321"]],[28,30,["H314"]],[30,34,["H3513"]],[34,38,["H1870"]],[38,41,["H3220"]],[41,42,["H5676"]],[42,43,["H3383"]],[43,45,["H1551"]],[45,48,["H1471"]]]},{"k":17831,"v":[[0,2,["H5971"]],[2,4,["H1980"]],[4,6,["H2822"]],[6,8,["H7200"]],[8,10,["H1419"]],[10,11,["H216"]],[11,14,["H3427"]],[14,17,["H776"]],[17,22,["H6757"]],[22,23,["H5921"]],[23,27,["H216"]],[27,28,["H5050"]]]},{"k":17832,"v":[[0,3,["H7235"]],[3,5,["H1471"]],[5,7,["H3808"]],[7,8,["H1431"]],[8,10,["H8057"]],[10,12,["H8055"]],[12,13,["H6440"]],[13,18,["H8057"]],[18,20,["H7105"]],[20,22,["H834"]],[22,24,["H1523"]],[24,27,["H2505"]],[27,29,["H7998"]]]},{"k":17833,"v":[[0,1,["H3588"]],[1,4,["H2865","(H853)"]],[4,6,["H5923"]],[6,9,["H5448"]],[9,12,["H4294"]],[12,15,["H7926"]],[15,17,["H7626"]],[17,20,["H5065"]],[20,24,["H3117"]],[24,26,["H4080"]]]},{"k":17834,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,3,["H5430"]],[3,6,["H5431"]],[6,10,["H7494"]],[10,12,["H8071"]],[12,13,["H1556"]],[13,15,["H1818"]],[15,19,["H1961"]],[19,21,["H8316"]],[21,23,["H3980"]],[23,25,["H784"]]]},{"k":17835,"v":[[0,1,["H3588"]],[1,5,["H3206"]],[5,7,["H3205"]],[7,11,["H1121"]],[11,13,["H5414"]],[13,16,["H4951"]],[16,19,["H5921"]],[19,21,["H7926"]],[21,24,["H8034"]],[24,26,["H1961"]],[26,27,["H7121"]],[27,28,["H6382"]],[28,29,["H3289"]],[29,31,["H1368"]],[31,32,["H410"]],[32,34,["H5703"]],[34,35,["H1"]],[35,37,["H8269"]],[37,39,["H7965"]]]},{"k":17836,"v":[[0,3,["H4766"]],[3,6,["H4951"]],[6,8,["H7965"]],[8,12,["H369"]],[12,13,["H7093"]],[13,14,["H5921"]],[14,16,["H3678"]],[16,18,["H1732"]],[18,20,["H5921"]],[20,22,["H4467"]],[22,24,["H3559"]],[24,28,["H5582"]],[28,31,["H4941"]],[31,34,["H6666"]],[34,36,["H4480","H6258"]],[36,39,["H5704","H5769"]],[39,41,["H7068"]],[41,44,["H3068"]],[44,46,["H6635"]],[46,48,["H6213"]],[48,49,["H2063"]]]},{"k":17837,"v":[[0,2,["H136"]],[2,3,["H7971"]],[3,5,["H1697"]],[5,7,["H3290"]],[7,11,["H5307"]],[11,13,["H3478"]]]},{"k":17838,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,6,["H3045"]],[6,8,["H669"]],[8,11,["H3427"]],[11,13,["H8111"]],[13,15,["H559"]],[15,18,["H1346"]],[18,20,["H1433"]],[20,22,["H3824"]]]},{"k":17839,"v":[[0,2,["H3843"]],[2,5,["H5307"]],[5,9,["H1129"]],[9,12,["H1496"]],[12,14,["H8256"]],[14,17,["H1438"]],[17,21,["H2498"]],[21,24,["H730"]]]},{"k":17840,"v":[[0,3,["H3068"]],[3,6,["H7682","(H853)"]],[6,8,["H6862"]],[8,10,["H7526"]],[10,11,["H5921"]],[11,17,["H5526","(H853)","H341"]]]},{"k":17841,"v":[[0,2,["H758"]],[2,3,["H4480","H6924"]],[3,6,["H6430"]],[6,7,["H4480","H268"]],[7,11,["H398","(H853)"]],[11,12,["H3478"]],[12,14,["H3605"]],[14,15,["H6310"]],[15,17,["H3605"]],[17,18,["H2063"]],[18,20,["H639"]],[20,22,["H3808"]],[22,24,["H7725"]],[24,27,["H3027"]],[27,30,["H5186"]],[30,31,["H5750"]]]},{"k":17842,"v":[[0,3,["H5971"]],[3,4,["H7725"]],[4,5,["H3808"]],[5,6,["H5704"]],[6,9,["H5221"]],[9,11,["H3808"]],[11,14,["H1875"]],[14,16,["H3068"]],[16,18,["H6635"]]]},{"k":17843,"v":[[0,3,["H3068"]],[3,6,["H3772"]],[6,8,["H4480","H3478"]],[8,9,["H7218"]],[9,11,["H2180"]],[11,12,["H3712"]],[12,14,["H100"]],[14,16,["H259"]],[16,17,["H3117"]]]},{"k":17844,"v":[[0,2,["H2205"]],[2,4,["H5375","H6440"]],[4,5,["H1931"]],[5,8,["H7218"]],[8,11,["H5030"]],[11,13,["H3384"]],[13,14,["H8267"]],[14,15,["H1931"]],[15,18,["H2180"]]]},{"k":17845,"v":[[0,3,["H833"]],[3,5,["H2088"]],[5,6,["H5971"]],[6,10,["H8582"]],[10,15,["H833"]],[15,19,["H1104"]]]},{"k":17846,"v":[[0,1,["H5921","H3651"]],[1,3,["H136"]],[3,6,["H3808"]],[6,7,["H8055"]],[7,8,["H5921"]],[8,11,["H970"]],[11,12,["H3808"]],[12,15,["H7355"]],[15,18,["H3490"]],[18,20,["H490"]],[20,21,["H3588"]],[21,23,["H3605"]],[23,26,["H2611"]],[26,29,["H7489"]],[29,31,["H3605"]],[31,32,["H6310"]],[32,33,["H1696"]],[33,34,["H5039"]],[34,36,["H3605"]],[36,37,["H2063"]],[37,39,["H639"]],[39,41,["H3808"]],[41,43,["H7725"]],[43,46,["H3027"]],[46,49,["H5186"]],[49,50,["H5750"]]]},{"k":17847,"v":[[0,1,["H3588"]],[1,2,["H7564"]],[2,3,["H1197"]],[3,6,["H784"]],[6,9,["H398"]],[9,11,["H8068"]],[11,13,["H7898"]],[13,16,["H3341"]],[16,19,["H5442"]],[19,22,["H3293"]],[22,27,["H55"]],[27,31,["H1348"]],[31,33,["H6227"]]]},{"k":17848,"v":[[0,3,["H5678"]],[3,6,["H3068"]],[6,8,["H6635"]],[8,11,["H776"]],[11,12,["H6272"]],[12,15,["H5971"]],[15,17,["H1961"]],[17,20,["H3980"]],[20,23,["H784"]],[23,24,["H3808"]],[24,25,["H376"]],[25,27,["H2550","H413"]],[27,29,["H251"]]]},{"k":17849,"v":[[0,4,["H1504"]],[4,5,["H5921"]],[5,8,["H3225"]],[8,11,["H7456"]],[11,15,["H398"]],[15,16,["H5921"]],[16,19,["H8040"]],[19,23,["H3808"]],[23,25,["H7646"]],[25,28,["H398"]],[28,30,["H376"]],[30,32,["H1320"]],[32,36,["H2220"]]]},{"k":17850,"v":[[0,1,["H4519","(H853)"]],[1,2,["H669"]],[2,4,["H669","(H853)"]],[4,5,["H4519"]],[5,7,["H1992"]],[7,8,["H3162"]],[8,11,["H5921"]],[11,12,["H3063"]],[12,14,["H3605"]],[14,15,["H2063"]],[15,17,["H639"]],[17,19,["H3808"]],[19,21,["H7725"]],[21,24,["H3027"]],[24,27,["H5186"]],[27,28,["H5750"]]]},{"k":17851,"v":[[0,1,["H1945"]],[1,5,["H2710"]],[5,6,["H205"]],[6,7,["H2711"]],[7,10,["H3789"]],[10,11,["H5999"]],[11,15,["H3789"]]]},{"k":17852,"v":[[0,3,["H5186"]],[3,5,["H1800"]],[5,7,["H4480","H1779"]],[7,11,["H1497"]],[11,13,["H4941"]],[13,16,["H6041"]],[16,19,["H5971"]],[19,21,["H490"]],[21,23,["H1961"]],[23,25,["H7998"]],[25,30,["H962"]],[30,32,["H3490"]]]},{"k":17853,"v":[[0,2,["H4100"]],[2,5,["H6213"]],[5,8,["H3117"]],[8,10,["H6486"]],[10,14,["H7722"]],[14,17,["H935"]],[17,19,["H4480","H4801"]],[19,20,["H5921"]],[20,21,["H4310"]],[21,24,["H5127"]],[24,26,["H5833"]],[26,28,["H575"]],[28,31,["H5800"]],[31,33,["H3519"]]]},{"k":17854,"v":[[0,1,["H1115"]],[1,6,["H3766"]],[6,7,["H8478"]],[7,9,["H616"]],[9,13,["H5307"]],[13,14,["H8478"]],[14,16,["H2026"]],[16,18,["H3605"]],[18,19,["H2063"]],[19,21,["H639"]],[21,23,["H3808"]],[23,25,["H7725"]],[25,28,["H3027"]],[28,31,["H5186"]],[31,32,["H5750"]]]},{"k":17855,"v":[[0,2,["H804"]],[2,4,["H7626"]],[4,7,["H639"]],[7,10,["H4294"]],[10,13,["H3027"]],[13,16,["H2195"]]]},{"k":17856,"v":[[0,3,["H7971"]],[3,7,["H2611"]],[7,8,["H1471"]],[8,10,["H5921"]],[10,12,["H5971"]],[12,15,["H5678"]],[15,21,["H6680"]],[21,23,["H7997"]],[23,25,["H7998"]],[25,28,["H962"]],[28,30,["H957"]],[30,35,["H4823"]],[35,38,["H2563"]],[38,41,["H2351"]]]},{"k":17857,"v":[[0,2,["H1931"]],[2,3,["H1819"]],[3,4,["H3808"]],[4,5,["H3651"]],[5,6,["H3808"]],[6,9,["H3824"]],[9,10,["H2803"]],[10,11,["H3651"]],[11,12,["H3588"]],[12,17,["H3824"]],[17,19,["H8045"]],[19,22,["H3772"]],[22,23,["H1471"]],[23,24,["H3808"]],[24,26,["H4592"]]]},{"k":17858,"v":[[0,1,["H3588"]],[1,3,["H559"]],[3,5,["H3808"]],[5,7,["H8269"]],[7,8,["H3162"]],[8,9,["H4428"]]]},{"k":17859,"v":[[0,2,["H3808"]],[2,3,["H3641"]],[3,5,["H3751"]],[5,7,["H3808"]],[7,8,["H2574"]],[8,10,["H774"]],[10,12,["H3808"]],[12,13,["H8111"]],[13,15,["H1834"]]]},{"k":17860,"v":[[0,1,["H834"]],[1,3,["H3027"]],[3,5,["H4672"]],[5,7,["H4467"]],[7,10,["H457"]],[10,14,["H6456"]],[14,19,["H4480","H3389"]],[19,22,["H4480","H8111"]]]},{"k":17861,"v":[[0,3,["H3808"]],[3,4,["H834"]],[4,7,["H6213"]],[7,9,["H8111"]],[9,12,["H457"]],[12,13,["H3651"]],[13,14,["H6213"]],[14,16,["H3389"]],[16,19,["H6091"]]]},{"k":17862,"v":[[0,6,["H1961"]],[6,8,["H3588"]],[8,10,["H136"]],[10,12,["H1214"]],[12,13,["(H853)"]],[13,14,["H3605"]],[14,15,["H4639"]],[15,17,["H2022"]],[17,18,["H6726"]],[18,21,["H3389"]],[21,24,["H6485","H5921"]],[24,26,["H6529"]],[26,29,["H1433"]],[29,30,["H3824"]],[30,33,["H4428"]],[33,35,["H804"]],[35,36,["H5921"]],[36,38,["H8597"]],[38,41,["H7312"]],[41,42,["H5869"]]]},{"k":17863,"v":[[0,1,["H3588"]],[1,3,["H559"]],[3,6,["H3581"]],[6,9,["H3027"]],[9,12,["H6213"]],[12,17,["H2451"]],[17,18,["H3588"]],[18,21,["H995"]],[21,25,["H5493"]],[25,27,["H1367"]],[27,30,["H5971"]],[30,33,["H8154"]],[33,35,["H6259"]],[35,40,["H3381"]],[40,42,["H3427"]],[42,45,["H47"]],[45,46,[]]]},{"k":17864,"v":[[0,3,["H3027"]],[3,5,["H4672"]],[5,8,["H7064"]],[8,10,["H2428"]],[10,13,["H5971"]],[13,17,["H622"]],[17,18,["H1000"]],[18,21,["H5800"]],[21,23,["H589"]],[23,24,["H622"]],[24,25,["H3605"]],[25,27,["H776"]],[27,30,["H1961"]],[30,31,["H3808"]],[31,33,["H5074"]],[33,35,["H3671"]],[35,37,["H6475"]],[37,39,["H6310"]],[39,41,["H6850"]]]},{"k":17865,"v":[[0,3,["H1631"]],[3,5,["H6286"]],[5,6,["H5921"]],[6,9,["H2672"]],[9,14,["H4883"]],[14,16,["H1431"]],[16,17,["H5921"]],[17,20,["H5130"]],[20,25,["H7626"]],[25,29,["H5130","(H853)"]],[29,34,["H7311"]],[34,39,["H4294"]],[39,42,["H7311"]],[42,48,["H3808"]],[48,49,["H6086"]]]},{"k":17866,"v":[[0,1,["H3651"]],[1,4,["H113"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,9,["H7971"]],[9,13,["H4924"]],[13,14,["H7332"]],[14,16,["H8478"]],[16,18,["H3519"]],[18,21,["H3344"]],[21,23,["H3350"]],[23,26,["H3350"]],[26,29,["H784"]]]},{"k":17867,"v":[[0,3,["H216"]],[3,5,["H3478"]],[5,7,["H1961"]],[7,10,["H784"]],[10,14,["H6918"]],[14,17,["H3852"]],[17,21,["H1197"]],[21,23,["H398"]],[23,25,["H7898"]],[25,28,["H8068"]],[28,30,["H259"]],[30,31,["H3117"]]]},{"k":17868,"v":[[0,3,["H3615"]],[3,5,["H3519"]],[5,8,["H3293"]],[8,13,["H3759"]],[13,15,["H4480","H5315"]],[15,17,["H1320"]],[17,21,["H1961"]],[21,25,["H5263"]],[25,26,["H4549"]]]},{"k":17869,"v":[[0,3,["H7605"]],[3,6,["H6086"]],[6,9,["H3293"]],[9,11,["H1961"]],[11,12,["H4557"]],[12,15,["H5288"]],[15,17,["H3789"]],[17,18,[]]]},{"k":17870,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H7605"]],[12,14,["H3478"]],[14,19,["H6413"]],[19,22,["H1004"]],[22,24,["H3290"]],[24,26,["H3808"]],[26,27,["H5750"]],[27,28,["H3254"]],[28,29,["H8172"]],[29,30,["H5921"]],[30,33,["H5221"]],[33,37,["H8172"]],[37,38,["H5921"]],[38,40,["H3068"]],[40,43,["H6918"]],[43,45,["H3478"]],[45,47,["H571"]]]},{"k":17871,"v":[[0,2,["H7605"]],[2,4,["H7725"]],[4,7,["H7605"]],[7,9,["H3290"]],[9,10,["H413"]],[10,12,["H1368"]],[12,13,["H410"]]]},{"k":17872,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,4,["H5971"]],[4,5,["H3478"]],[5,6,["H1961"]],[6,9,["H2344"]],[9,12,["H3220"]],[12,15,["H7605"]],[15,19,["H7725"]],[19,21,["H3631"]],[21,22,["H2782"]],[22,24,["H7857"]],[24,26,["H6666"]]]},{"k":17873,"v":[[0,1,["H3588"]],[1,3,["H136"]],[3,4,["H3069"]],[4,6,["H6635"]],[6,8,["H6213"]],[8,10,["H3617"]],[10,12,["H2782"]],[12,15,["H7130"]],[15,17,["H3605"]],[17,19,["H776"]]]},{"k":17874,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,8,["H6635"]],[8,11,["H5971"]],[11,13,["H3427"]],[13,15,["H6726"]],[15,17,["H408"]],[17,18,["H3372"]],[18,21,["H4480","H804"]],[21,24,["H5221"]],[24,28,["H7626"]],[28,32,["H5375"]],[32,34,["H4294"]],[34,35,["H5921"]],[35,39,["H1870"]],[39,41,["H4714"]]]},{"k":17875,"v":[[0,1,["H3588"]],[1,2,["H5750"]],[2,4,["H4213"]],[4,5,["H4592"]],[5,9,["H2195"]],[9,11,["H3615"]],[11,14,["H639"]],[14,15,["H5921"]],[15,17,["H8399"]]]},{"k":17876,"v":[[0,3,["H3068"]],[3,5,["H6635"]],[5,8,["H5782"]],[8,10,["H7752"]],[10,11,["H5921"]],[11,16,["H4347"]],[16,18,["H4080"]],[18,21,["H6697"]],[21,23,["H6159"]],[23,27,["H4294"]],[27,29,["H5921"]],[29,31,["H3220"]],[31,37,["H5375"]],[37,40,["H1870"]],[40,42,["H4714"]]]},{"k":17877,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H5448"]],[12,16,["H5493"]],[16,18,["H4480","H5921"]],[18,20,["H7926"]],[20,23,["H5923"]],[23,25,["H4480","H5921"]],[25,27,["H6677"]],[27,30,["H5923"]],[30,33,["H2254"]],[33,34,["H4480","H6440"]],[34,37,["H8081"]]]},{"k":17878,"v":[[0,3,["H935"]],[3,4,["H5921"]],[4,5,["H5857"]],[5,8,["H5674"]],[8,10,["H4051"]],[10,12,["H4363"]],[12,16,["H6485"]],[16,18,["H3627"]]]},{"k":17879,"v":[[0,4,["H5674"]],[4,6,["H4569"]],[6,12,["H4411"]],[12,14,["H1387"]],[14,15,["H7414"]],[15,17,["H2729"]],[17,18,["H1390"]],[18,20,["H7586"]],[20,22,["H5127"]]]},{"k":17880,"v":[[0,2,["H6670"]],[2,4,["H6963"]],[4,6,["H1323"]],[6,8,["H1554"]],[8,13,["H7181"]],[13,15,["H3919"]],[15,17,["H6041"]],[17,18,["H6068"]]]},{"k":17881,"v":[[0,1,["H4088"]],[1,3,["H5074"]],[3,5,["H3427"]],[5,7,["H1374"]],[7,11,["H5756"]]]},{"k":17882,"v":[[0,2,["H5750"]],[2,5,["H5975"]],[5,7,["H5011"]],[7,9,["H3117"]],[9,12,["H5130"]],[12,14,["H3027"]],[14,17,["H2022"]],[17,20,["H1004"]],[20,22,["H6726"]],[22,24,["H1389"]],[24,26,["H3389"]]]},{"k":17883,"v":[[0,1,["H2009"]],[1,3,["H113"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H5586"]],[9,11,["H6288"]],[11,13,["H4637"]],[13,17,["H7312"]],[17,19,["H6967"]],[19,23,["H1438"]],[23,26,["H1364"]],[26,29,["H8213"]]]},{"k":17884,"v":[[0,5,["H5362"]],[5,7,["H5442"]],[7,10,["H3293"]],[10,12,["H1270"]],[12,14,["H3844"]],[14,16,["H5307"]],[16,20,["H117"]]]},{"k":17885,"v":[[0,5,["H3318"]],[5,7,["H2415"]],[7,11,["H4480","H1503"]],[11,13,["H3448"]],[13,16,["H5342"]],[16,18,["H6509"]],[18,22,["H4480","H8328"]]]},{"k":17886,"v":[[0,3,["H7307"]],[3,6,["H3068"]],[6,8,["H5117"]],[8,9,["H5921"]],[9,12,["H7307"]],[12,14,["H2451"]],[14,16,["H998"]],[16,18,["H7307"]],[18,20,["H6098"]],[20,22,["H1369"]],[22,24,["H7307"]],[24,26,["H1847"]],[26,30,["H3374"]],[30,33,["H3068"]]]},{"k":17887,"v":[[0,7,["H7306"]],[7,10,["H3374"]],[10,13,["H3068"]],[13,17,["H3808"]],[17,18,["H8199"]],[18,21,["H4758"]],[21,24,["H5869"]],[24,25,["H3808"]],[25,26,["H3198"]],[26,29,["H4926"]],[29,32,["H241"]]]},{"k":17888,"v":[[0,3,["H6664"]],[3,6,["H8199"]],[6,8,["H1800"]],[8,10,["H3198"]],[10,12,["H4334"]],[12,15,["H6035"]],[15,18,["H776"]],[18,22,["H5221"]],[22,24,["H776"]],[24,27,["H7626"]],[27,30,["H6310"]],[30,34,["H7307"]],[34,37,["H8193"]],[37,40,["H4191"]],[40,42,["H7563"]]]},{"k":17889,"v":[[0,2,["H6664"]],[2,4,["H1961"]],[4,6,["H232"]],[6,9,["H4975"]],[9,11,["H530"]],[11,13,["H232"]],[13,16,["H2504"]]]},{"k":17890,"v":[[0,2,["H2061"]],[2,5,["H1481"]],[5,6,["H5973"]],[6,8,["H3532"]],[8,11,["H5246"]],[11,14,["H7257"]],[14,15,["H5973"]],[15,17,["H1423"]],[17,20,["H5695"]],[20,24,["H3715"]],[24,27,["H4806"]],[27,28,["H3162"]],[28,31,["H6996"]],[31,32,["H5288"]],[32,34,["H5090"]],[34,35,[]]]},{"k":17891,"v":[[0,3,["H6510"]],[3,6,["H1677"]],[6,8,["H7462"]],[8,11,["H3206"]],[11,14,["H7257"]],[14,15,["H3162"]],[15,18,["H738"]],[18,20,["H398"]],[20,21,["H8401"]],[21,24,["H1241"]]]},{"k":17892,"v":[[0,3,["H3243"]],[3,6,["H8173"]],[6,7,["H5921"]],[7,9,["H2352"]],[9,12,["H6620"]],[12,16,["H1580"]],[16,18,["H1911"]],[18,20,["H3027"]],[20,21,["H5921"]],[21,23,["H6848"]],[23,24,["H3975"]]]},{"k":17893,"v":[[0,3,["H3808"]],[3,4,["H7489"]],[4,5,["H3808"]],[5,6,["H7843"]],[6,8,["H3605"]],[8,10,["H6944"]],[10,11,["H2022"]],[11,12,["H3588"]],[12,14,["H776"]],[14,17,["H4390"]],[17,20,["H1844"]],[20,21,["(H853)"]],[21,23,["H3068"]],[23,26,["H4325"]],[26,27,["H3680"]],[27,29,["H3220"]]]},{"k":17894,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,7,["H1961"]],[7,9,["H8328"]],[9,11,["H3448"]],[11,12,["H834"]],[12,14,["H5975"]],[14,17,["H5251"]],[17,20,["H5971"]],[20,21,["H413"]],[21,25,["H1471"]],[25,26,["H1875"]],[26,29,["H4496"]],[29,31,["H1961"]],[31,32,["H3519"]]]},{"k":17895,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H136"]],[12,16,["H3027"]],[16,17,["H3254"]],[17,20,["H8145"]],[20,22,["H7069","(H853)"]],[22,24,["H7605"]],[24,27,["H5971"]],[27,28,["H834"]],[28,31,["H7604"]],[31,33,["H4480","H804"]],[33,36,["H4480","H4714"]],[36,39,["H4480","H6624"]],[39,42,["H4480","H3568"]],[42,45,["H4480","H5867"]],[45,48,["H4480","H8152"]],[48,51,["H4480","H2574"]],[51,55,["H4480","H339"]],[55,58,["H3220"]]]},{"k":17896,"v":[[0,5,["H5375"]],[5,7,["H5251"]],[7,10,["H1471"]],[10,13,["H622"]],[13,15,["H5080"]],[15,17,["H3478"]],[17,20,["H6908"]],[20,22,["H5310"]],[22,24,["H3063"]],[24,27,["H4480","H702"]],[27,28,["H3671"]],[28,31,["H776"]]]},{"k":17897,"v":[[0,2,["H7068"]],[2,5,["H669"]],[5,7,["H5493"]],[7,10,["H6887"]],[10,12,["H3063"]],[12,16,["H3772"]],[16,17,["H669"]],[17,19,["H3808"]],[19,20,["H7065","(H853)"]],[20,21,["H3063"]],[21,23,["H3063"]],[23,25,["H3808"]],[25,26,["H6887","(H853)"]],[26,27,["H669"]]]},{"k":17898,"v":[[0,4,["H5774"]],[4,7,["H3802"]],[7,10,["H6430"]],[10,13,["H3220"]],[13,16,["H962","(H853)"]],[16,17,["H1121"]],[17,20,["H6924"]],[20,21,["H3162"]],[21,24,["H4916"]],[24,26,["H3027"]],[26,28,["H123"]],[28,30,["H4124"]],[30,33,["H1121"]],[33,35,["H5983"]],[35,37,["H4928"]],[37,38,[]]]},{"k":17899,"v":[[0,3,["H3068"]],[3,6,["H2763","(H853)"]],[6,8,["H3956"]],[8,11,["H4714"]],[11,12,["H3220"]],[12,16,["H5868"]],[16,17,["H7307"]],[17,20,["H5130"]],[20,22,["H3027"]],[22,23,["H5921"]],[23,25,["H5104"]],[25,28,["H5221"]],[28,32,["H7651"]],[32,33,["H5158"]],[33,38,["H1869"]],[38,39,["H5275"]]]},{"k":17900,"v":[[0,4,["H1961"]],[4,6,["H4546"]],[6,9,["H7605"]],[9,12,["H5971"]],[12,13,["H834"]],[13,16,["H7604"]],[16,18,["H4480","H804"]],[18,20,["H834"]],[20,22,["H1961"]],[22,24,["H3478"]],[24,27,["H3117"]],[27,31,["H5927"]],[31,35,["H4480","H776"]],[35,37,["H4714"]]]},{"k":17901,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,7,["H559"]],[7,9,["H3068"]],[9,12,["H3034"]],[12,14,["H3588"]],[14,17,["H599"]],[17,21,["H639"]],[21,24,["H7725"]],[24,27,["H5162"]],[27,28,[]]]},{"k":17902,"v":[[0,1,["H2009"]],[1,2,["H410"]],[2,5,["H3444"]],[5,8,["H982"]],[8,10,["H3808"]],[10,12,["H6342"]],[12,13,["H3588"]],[13,15,["H3050"]],[15,16,["H3068"]],[16,19,["H5797"]],[19,22,["H2176"]],[22,26,["H1961"]],[26,28,["H3444"]]]},{"k":17903,"v":[[0,3,["H8342"]],[3,6,["H7579"]],[6,7,["H4325"]],[7,11,["H4480","H4599"]],[11,13,["H3444"]]]},{"k":17904,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,7,["H559"]],[7,8,["H3034"]],[8,10,["H3068"]],[10,11,["H7121"]],[11,14,["H8034"]],[14,15,["H3045"]],[15,17,["H5949"]],[17,20,["H5971"]],[20,22,["H2142"]],[22,23,["H3588"]],[23,25,["H8034"]],[25,27,["H7682"]]]},{"k":17905,"v":[[0,1,["H2167"]],[1,4,["H3068"]],[4,5,["H3588"]],[5,8,["H6213"]],[8,10,["H1348"]],[10,11,["H2063"]],[11,13,["H3045"]],[13,15,["H3605"]],[15,17,["H776"]]]},{"k":17906,"v":[[0,2,["H6670"]],[2,4,["H7442"]],[4,6,["H3427"]],[6,8,["H6726"]],[8,9,["H3588"]],[9,10,["H1419"]],[10,14,["H6918"]],[14,16,["H3478"]],[16,19,["H7130"]],[19,21,[]]]},{"k":17907,"v":[[0,2,["H4853"]],[2,4,["H894"]],[4,5,["H834"]],[5,6,["H3470"]],[6,8,["H1121"]],[8,10,["H531"]],[10,12,["H2372"]]]},{"k":17908,"v":[[0,3,["H5375"]],[3,5,["H5251"]],[5,6,["H5921"]],[6,8,["H8192"]],[8,9,["H2022"]],[9,10,["H7311"]],[10,12,["H6963"]],[12,15,["H5130"]],[15,17,["H3027"]],[17,21,["H935"]],[21,24,["H6607"]],[24,27,["H5081"]]]},{"k":17909,"v":[[0,1,["H589"]],[1,3,["H6680"]],[3,6,["H6942"]],[6,9,["H1571"]],[9,10,["H7121"]],[10,13,["H1368"]],[13,16,["H639"]],[16,20,["H5947"]],[20,23,["H1346"]]]},{"k":17910,"v":[[0,2,["H6963"]],[2,5,["H1995"]],[5,8,["H2022"]],[8,9,["H1823"]],[9,13,["H7227"]],[13,14,["H5971"]],[14,16,["H7588"]],[16,17,["H6963"]],[17,20,["H4467"]],[20,22,["H1471"]],[22,24,["H622"]],[24,26,["H3068"]],[26,28,["H6635"]],[28,29,["H6485"]],[29,31,["H6635"]],[31,34,["H4421"]]]},{"k":17911,"v":[[0,2,["H935"]],[2,6,["H4480","H4801","H776"]],[6,9,["H4480","H7097"]],[9,11,["H8064"]],[11,14,["H3068"]],[14,17,["H3627"]],[17,20,["H2195"]],[20,22,["H2254"]],[22,24,["H3605"]],[24,25,["H776"]]]},{"k":17912,"v":[[0,1,["H3213"]],[1,3,["H3588"]],[3,5,["H3117"]],[5,8,["H3068"]],[8,11,["H7138"]],[11,14,["H935"]],[14,17,["H7701"]],[17,20,["H4480","H7706"]]]},{"k":17913,"v":[[0,1,["H5921","H3651"]],[1,3,["H3605"]],[3,4,["H3027"]],[4,6,["H7503"]],[6,8,["H3605"]],[8,9,["H582"]],[9,10,["H3824"]],[10,12,["H4549"]]]},{"k":17914,"v":[[0,5,["H926"]],[5,6,["H6735"]],[6,8,["H2256"]],[8,11,["H270"]],[11,18,["H2342"]],[18,23,["H3205"]],[23,27,["H8539"]],[27,28,["H376"]],[28,29,["H413"]],[29,30,["H7453"]],[30,32,["H6440"]],[32,36,["H6440","H3851"]]]},{"k":17915,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,6,["H3068"]],[6,7,["H935"]],[7,8,["H394"]],[8,11,["H5678"]],[11,13,["H2740"]],[13,14,["H639"]],[14,16,["H7760"]],[16,18,["H776"]],[18,19,["H8047"]],[19,23,["H8045"]],[23,25,["H2400"]],[25,28,["H4480"]],[28,29,[]]]},{"k":17916,"v":[[0,1,["H3588"]],[1,3,["H3556"]],[3,5,["H8064"]],[5,8,["H3685"]],[8,11,["H3808"]],[11,12,["H1984"]],[12,14,["H216"]],[14,16,["H8121"]],[16,19,["H2821"]],[19,23,["H3318"]],[23,26,["H3394"]],[26,28,["H3808"]],[28,31,["H216"]],[31,33,["H5050"]]]},{"k":17917,"v":[[0,4,["H6485"]],[4,6,["H8398"]],[6,7,["H5921"]],[7,9,["H7451"]],[9,12,["H7563"]],[12,13,["H5921"]],[13,15,["H5771"]],[15,21,["H1347"]],[21,24,["H2086"]],[24,26,["H7673"]],[26,30,["H8213"]],[30,32,["H1346"]],[32,35,["H6184"]]]},{"k":17918,"v":[[0,5,["H582"]],[5,7,["H3365"]],[7,10,["H4480","H6337"]],[10,13,["H120"]],[13,17,["H4480","H3800"]],[17,19,["H211"]]]},{"k":17919,"v":[[0,1,["H5921","H3651"]],[1,4,["H7264"]],[4,6,["H8064"]],[6,9,["H776"]],[9,11,["H7493"]],[11,15,["H4480","H4725"]],[15,18,["H5678"]],[18,21,["H3068"]],[21,23,["H6635"]],[23,27,["H3117"]],[27,30,["H2740"]],[30,31,["H639"]]]},{"k":17920,"v":[[0,4,["H1961"]],[4,7,["H5080"]],[7,8,["H6643"]],[8,12,["H6629"]],[12,14,["H369"]],[14,17,["H6908"]],[17,21,["H376"]],[21,22,["H6437"]],[22,23,["H413"]],[23,26,["H5971"]],[26,28,["H5127"]],[28,30,["H376"]],[30,31,["H413"]],[31,34,["H776"]]]},{"k":17921,"v":[[0,2,["H3605"]],[2,5,["H4672"]],[5,9,["H1856"]],[9,12,["H3605"]],[12,15,["H5595"]],[15,19,["H5307"]],[19,22,["H2719"]]]},{"k":17922,"v":[[0,2,["H5768"]],[2,6,["H7376"]],[6,11,["H5869"]],[11,13,["H1004"]],[13,16,["H8155"]],[16,19,["H802"]],[19,20,["H7693"]]]},{"k":17923,"v":[[0,1,["H2009"]],[1,5,["H5782","(H853)"]],[5,7,["H4074"]],[7,8,["H5921"]],[8,10,["H834"]],[10,12,["H3808"]],[12,13,["H2803"]],[13,14,["H3701"]],[14,18,["H2091"]],[18,21,["H3808"]],[21,22,["H2654"]],[22,24,[]]]},{"k":17924,"v":[[0,2,["H7198"]],[2,5,["H7376"]],[5,8,["H5288"]],[8,15,["H3808"]],[15,16,["H7355"]],[16,19,["H6529"]],[19,22,["H990"]],[22,24,["H5869"]],[24,26,["H3808"]],[26,27,["H2347","H5921"]],[27,28,["H1121"]]]},{"k":17925,"v":[[0,2,["H894"]],[2,4,["H6643"]],[4,6,["H4467"]],[6,8,["H8597"]],[8,11,["H3778"]],[11,12,["H1347"]],[12,14,["H1961"]],[14,17,["H430"]],[17,18,["H4114","(H853)"]],[18,19,["H5467"]],[19,21,["H6017"]]]},{"k":17926,"v":[[0,3,["H3808","H5331"]],[3,5,["H3427"]],[5,6,["H3808"]],[6,10,["H7931"]],[10,13,["H1755"]],[13,14,["H5704"]],[14,15,["H1755"]],[15,16,["H3808"]],[16,19,["H6163"]],[19,21,["H167"]],[21,22,["H8033"]],[22,23,["H3808"]],[23,26,["H7462"]],[26,29,["H7257"]],[29,30,["H8033"]]]},{"k":17927,"v":[[0,6,["H6728"]],[6,8,["H7257"]],[8,9,["H8033"]],[9,12,["H1004"]],[12,15,["H4390"]],[15,18,["H255"]],[18,20,["H1323","H3284"]],[20,22,["H7931"]],[22,23,["H8033"]],[23,25,["H8163"]],[25,27,["H7540"]],[27,28,["H8033"]]]},{"k":17928,"v":[[0,7,["H338"]],[7,9,["H6030"]],[9,13,["H490"]],[13,15,["H8577"]],[15,18,["H6027"]],[18,19,["H1964"]],[19,22,["H6256"]],[22,24,["H7138"]],[24,26,["H935"]],[26,29,["H3117"]],[29,31,["H3808"]],[31,33,["H4900"]]]},{"k":17929,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,6,["H7355"]],[6,7,["(H853)"]],[7,8,["H3290"]],[8,11,["H5750"]],[11,12,["H977"]],[12,13,["H3478"]],[13,15,["H5117"]],[15,17,["H5921"]],[17,20,["H127"]],[20,23,["H1616"]],[23,26,["H3867"]],[26,27,["H5921"]],[27,32,["H5596"]],[32,33,["H5921"]],[33,35,["H1004"]],[35,37,["H3290"]]]},{"k":17930,"v":[[0,3,["H5971"]],[3,5,["H3947"]],[5,8,["H935"]],[8,10,["H413"]],[10,12,["H4725"]],[12,15,["H1004"]],[15,17,["H3478"]],[17,19,["H5157"]],[19,21,["H5921"]],[21,23,["H127"]],[23,26,["H3068"]],[26,28,["H5650"]],[28,30,["H8198"]],[30,34,["H1961"]],[34,36,["H7617"]],[36,38,["H7617"]],[38,45,["H7287"]],[45,47,["H5065"]]]},{"k":17931,"v":[[0,6,["H1961"]],[6,9,["H3117"]],[9,12,["H3068"]],[12,16,["H5117"]],[16,19,["H4480","H6090"]],[19,23,["H4480","H7267"]],[23,25,["H4480"]],[25,27,["H7186"]],[27,28,["H5656"]],[28,29,["H834"]],[29,34,["H5647"]]]},{"k":17932,"v":[[0,5,["H5375"]],[5,6,["H2088"]],[6,7,["H4912"]],[7,8,["H5921"]],[8,10,["H4428"]],[10,12,["H894"]],[12,14,["H559"]],[14,15,["H349"]],[15,18,["H5065"]],[18,19,["H7673"]],[19,22,["H4062"]],[22,23,["H7673"]]]},{"k":17933,"v":[[0,2,["H3068"]],[2,4,["H7665"]],[4,6,["H4294"]],[6,9,["H7563"]],[9,12,["H7626"]],[12,15,["H4910"]]]},{"k":17934,"v":[[0,3,["H5221"]],[3,5,["H5971"]],[5,7,["H5678"]],[7,11,["H1115","H5627","H4347"]],[11,14,["H7287"]],[14,16,["H1471"]],[16,18,["H639"]],[18,20,["H4783"]],[20,22,["H1097"]],[22,23,["H2820"]]]},{"k":17935,"v":[[0,2,["H3605"]],[2,3,["H776"]],[3,6,["H5117"]],[6,9,["H8252"]],[9,12,["H6476"]],[12,14,["H7440"]]]},{"k":17936,"v":[[0,1,["H1571"]],[1,4,["H1265"]],[4,5,["H8055"]],[5,10,["H730"]],[10,12,["H3844"]],[12,14,["H4480","H227"]],[14,18,["H7901"]],[18,19,["H3808"]],[19,20,["H3772"]],[20,23,["H5927"]],[23,24,["H5921"]],[24,25,[]]]},{"k":17937,"v":[[0,1,["H7585"]],[1,3,["H4480","H8478"]],[3,5,["H7264"]],[5,9,["H7122"]],[9,13,["H935"]],[13,16,["H5782"]],[16,18,["H7496"]],[18,22,["H3605"]],[22,25,["H6260"]],[25,28,["H776"]],[28,32,["H6965"]],[32,35,["H4480","H3678"]],[35,36,["H3605"]],[36,38,["H4428"]],[38,41,["H1471"]]]},{"k":17938,"v":[[0,1,["H3605"]],[1,4,["H6030"]],[4,6,["H559"]],[6,10,["H859"]],[10,11,["H1571"]],[11,13,["H2470"]],[13,19,["H4911"]],[19,20,["H413"]],[20,21,[]]]},{"k":17939,"v":[[0,2,["H1347"]],[2,5,["H3381"]],[5,8,["H7585"]],[8,11,["H1998"]],[11,14,["H5035"]],[14,16,["H7415"]],[16,18,["H3331"]],[18,19,["H8478"]],[19,23,["H8438"]],[23,24,["H4374"]],[24,25,[]]]},{"k":17940,"v":[[0,1,["H349"]],[1,4,["H5307"]],[4,6,["H4480","H8064"]],[6,8,["H1966"]],[8,9,["H1121"]],[9,12,["H7837"]],[12,17,["H1438"]],[17,20,["H776"]],[20,23,["H2522","H5921"]],[23,25,["H1471"]]]},{"k":17941,"v":[[0,2,["H859"]],[2,4,["H559"]],[4,7,["H3824"]],[7,10,["H5927"]],[10,12,["H8064"]],[12,15,["H7311"]],[15,17,["H3678"]],[17,18,["H4480","H4605"]],[18,20,["H3556"]],[20,22,["H410"]],[22,25,["H3427"]],[25,29,["H2022"]],[29,32,["H4150"]],[32,35,["H3411"]],[35,38,["H6828"]]]},{"k":17942,"v":[[0,3,["H5927"]],[3,4,["H5921"]],[4,6,["H1116"]],[6,9,["H5645"]],[9,13,["H1819"]],[13,16,["H5945"]]]},{"k":17943,"v":[[0,1,["H389"]],[1,6,["H3381"]],[6,7,["H413"]],[7,8,["H7585"]],[8,9,["H413"]],[9,11,["H3411"]],[11,14,["H953"]]]},{"k":17944,"v":[[0,3,["H7200"]],[3,7,["H7688"]],[7,8,["H413"]],[8,11,["H995"]],[11,15,["H2088"]],[15,17,["H376"]],[17,21,["H776"]],[21,23,["H7264"]],[23,26,["H7493"]],[26,27,["H4467"]]]},{"k":17945,"v":[[0,2,["H7760"]],[2,4,["H8398"]],[4,7,["H4057"]],[7,9,["H2040"]],[9,11,["H5892"]],[11,14,["H6605"]],[14,15,["H3808"]],[15,17,["H1004"]],[17,20,["H615"]]]},{"k":17946,"v":[[0,1,["H3605"]],[1,3,["H4428"]],[3,6,["H1471"]],[6,8,["H3605"]],[8,11,["H7901"]],[11,13,["H3519"]],[13,15,["H376"]],[15,19,["H1004"]]]},{"k":17947,"v":[[0,2,["H859"]],[2,4,["H7993"]],[4,8,["H4480","H6913"]],[8,11,["H8581"]],[11,12,["H5342"]],[12,16,["H3830"]],[16,21,["H2026"]],[21,23,["H2944"]],[23,26,["H2719"]],[26,29,["H3381"]],[29,30,["H413"]],[30,32,["H68"]],[32,35,["H953"]],[35,38,["H6297"]],[38,41,["H947"]]]},{"k":17948,"v":[[0,3,["H3808"]],[3,5,["H3161"]],[5,6,["H854"]],[6,9,["H6900"]],[9,10,["H3588"]],[10,13,["H7843"]],[13,15,["H776"]],[15,17,["H2026"]],[17,19,["H5971"]],[19,21,["H2233"]],[21,23,["H7489"]],[23,25,["H3808","H5769"]],[25,27,["H7121"]]]},{"k":17949,"v":[[0,1,["H3559"]],[1,2,["H4293"]],[2,5,["H1121"]],[5,8,["H5771"]],[8,11,["H1"]],[11,15,["H1077"]],[15,16,["H6965"]],[16,18,["H3423"]],[18,20,["H776"]],[20,22,["H4390"]],[22,24,["H6440"]],[24,27,["H8398"]],[27,29,["H5892"]]]},{"k":17950,"v":[[0,5,["H6965"]],[5,6,["H5921"]],[6,8,["H5002"]],[8,10,["H3068"]],[10,12,["H6635"]],[12,15,["H3772"]],[15,17,["H894"]],[17,19,["H8034"]],[19,21,["H7605"]],[21,23,["H5209"]],[23,25,["H5220"]],[25,26,["H5002"]],[26,28,["H3068"]]]},{"k":17951,"v":[[0,4,["H7760"]],[4,7,["H4180"]],[7,10,["H7090"]],[10,12,["H98"]],[12,14,["H4325"]],[14,18,["H2894"]],[18,22,["H4292"]],[22,24,["H8045"]],[24,25,["H5002"]],[25,27,["H3068"]],[27,29,["H6635"]]]},{"k":17952,"v":[[0,2,["H3068"]],[2,4,["H6635"]],[4,6,["H7650"]],[6,7,["H559"]],[7,8,["H518","H3808"]],[8,9,["H834"]],[9,12,["H1819"]],[12,13,["H3651"]],[13,18,["H1961"]],[18,20,["H834"]],[20,23,["H3289"]],[23,26,["H1931"]],[26,27,["H6965"]]]},{"k":17953,"v":[[0,4,["H7665"]],[4,6,["H804"]],[6,9,["H776"]],[9,11,["H5921"]],[11,13,["H2022"]],[13,17,["H947"]],[17,21,["H5923"]],[21,22,["H5493"]],[22,24,["H4480","H5921"]],[24,28,["H5448"]],[28,29,["H5493"]],[29,31,["H4480","H5921"]],[31,33,["H7926"]]]},{"k":17954,"v":[[0,1,["H2063"]],[1,4,["H6098"]],[4,7,["H3289"]],[7,8,["H5921"]],[8,10,["H3605"]],[10,11,["H776"]],[11,13,["H2063"]],[13,16,["H3027"]],[16,20,["H5186"]],[20,21,["H5921"]],[21,22,["H3605"]],[22,24,["H1471"]]]},{"k":17955,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H6635"]],[5,7,["H3289"]],[7,9,["H4310"]],[9,11,["H6565"]],[11,15,["H3027"]],[15,18,["H5186"]],[18,20,["H4310"]],[20,24,["H7725"]]]},{"k":17956,"v":[[0,3,["H8141"]],[3,5,["H4428"]],[5,6,["H271"]],[6,7,["H4194"]],[7,8,["H1961"]],[8,9,["H2088"]],[9,10,["H4853"]]]},{"k":17957,"v":[[0,1,["H8055"]],[1,2,["H408"]],[2,4,["H3605"]],[4,5,["H6429"]],[5,6,["H3588"]],[6,8,["H7626"]],[8,11,["H3588"]],[11,12,["H5221"]],[12,15,["H7665"]],[15,21,["H4480","H8328","H5175"]],[21,24,["H3318"]],[24,26,["H6848"]],[26,29,["H6529"]],[29,35,["H8314","H5774"]]]},{"k":17958,"v":[[0,3,["H1060"]],[3,6,["H1800"]],[6,8,["H7462"]],[8,11,["H34"]],[11,14,["H7257"]],[14,16,["H983"]],[16,20,["H4191"]],[20,22,["H8328"]],[22,24,["H7458"]],[24,28,["H2026"]],[28,30,["H7611"]]]},{"k":17959,"v":[[0,1,["H3213"]],[1,3,["H8179"]],[3,4,["H2199"]],[4,6,["H5892"]],[6,8,["H3605"]],[8,9,["H6429"]],[9,11,["H4127"]],[11,12,["H3588"]],[12,15,["H935"]],[15,18,["H4480","H6828"]],[18,20,["H6227"]],[20,22,["H369"]],[22,25,["H909"]],[25,29,["H4151"]]]},{"k":17960,"v":[[0,1,["H4100"]],[1,5,["H6030"]],[5,7,["H4397"]],[7,10,["H1471"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,15,["H3245"]],[15,16,["H6726"]],[16,19,["H6041"]],[19,22,["H5971"]],[22,24,["H2620"]],[24,26,[]]]},{"k":17961,"v":[[0,2,["H4853"]],[2,4,["H4124"]],[4,5,["H3588"]],[5,8,["H3915"]],[8,9,["H6144"]],[9,11,["H4124"]],[11,14,["H7703"]],[14,18,["H1820"]],[18,19,["H3588"]],[19,22,["H3915"]],[22,23,["H7024"]],[23,25,["H4124"]],[25,28,["H7703"]],[28,32,["H1820"]]]},{"k":17962,"v":[[0,4,["H5927"]],[4,6,["H1006"]],[6,9,["H1769"]],[9,12,["H1116"]],[12,14,["H1065"]],[14,15,["H4124"]],[15,17,["H3213"]],[17,18,["H5921"]],[18,19,["H5015"]],[19,21,["H5921"]],[21,22,["H4311"]],[22,24,["H3605"]],[24,26,["H7218"]],[26,29,["H7144"]],[29,31,["H3605"]],[31,32,["H2206"]],[32,34,["H1639"]]]},{"k":17963,"v":[[0,3,["H2351"]],[3,6,["H2296"]],[6,9,["H8242"]],[9,10,["H5921"]],[10,15,["H1406"]],[15,19,["H7339"]],[19,21,["H3605"]],[21,23,["H3213"]],[23,24,["H1065"]],[24,25,["H3381"]]]},{"k":17964,"v":[[0,2,["H2809"]],[2,4,["H2199"]],[4,6,["H500"]],[6,8,["H6963"]],[8,11,["H8085"]],[11,13,["H5704"]],[13,14,["H3096"]],[14,15,["H5921","H3651"]],[15,18,["H2502"]],[18,20,["H4124"]],[20,23,["H7321"]],[23,25,["H5315"]],[25,28,["H3415"]],[28,30,[]]]},{"k":17965,"v":[[0,2,["H3820"]],[2,4,["H2199"]],[4,7,["H4124"]],[7,9,["H1280"]],[9,12,["H5704"]],[12,13,["H6820"]],[13,15,["H5697"]],[15,19,["H7992"]],[19,20,["H3588"]],[20,24,["H4608"]],[24,26,["H3872"]],[26,28,["H1065"]],[28,33,["H5927"]],[33,34,["H3588"]],[34,37,["H1870"]],[37,39,["H2773"]],[39,43,["H5782"]],[43,45,["H2201"]],[45,47,["H7667"]]]},{"k":17966,"v":[[0,1,["H3588"]],[1,3,["H4325"]],[3,5,["H5249"]],[5,7,["H1961"]],[7,8,["H4923"]],[8,9,["H3588"]],[9,11,["H2682"]],[11,14,["H3001"]],[14,16,["H1877"]],[16,17,["H3615"]],[17,19,["H1961"]],[19,20,["H3808"]],[20,22,["H3418"]]]},{"k":17967,"v":[[0,1,["H5921","H3651"]],[1,3,["H3502"]],[3,6,["H6213"]],[6,13,["H6486"]],[13,17,["H5375"]],[17,18,["H5921"]],[18,20,["H5158"]],[20,23,["H6155"]]]},{"k":17968,"v":[[0,1,["H3588"]],[1,3,["H2201"]],[3,6,["H5362"]],[6,7,["(H853)"]],[7,9,["H1366"]],[9,11,["H4124"]],[11,13,["H3213"]],[13,15,["H5704"]],[15,16,["H97"]],[16,19,["H3213"]],[19,22,["H879"]]]},{"k":17969,"v":[[0,1,["H3588"]],[1,3,["H4325"]],[3,5,["H1775"]],[5,8,["H4390"]],[8,10,["H1818"]],[10,11,["H3588"]],[11,14,["H7896"]],[14,15,["H3254"]],[15,16,["H5921"]],[16,17,["H1775"]],[17,18,["H738"]],[18,22,["H6413"]],[22,24,["H4124"]],[24,28,["H7611"]],[28,31,["H127"]]]},{"k":17970,"v":[[0,1,["H7971"]],[1,4,["H3733"]],[4,7,["H4910"]],[7,10,["H776"]],[10,12,["H4480","H5554"]],[12,15,["H4057"]],[15,16,["H413"]],[16,18,["H2022"]],[18,21,["H1323"]],[21,23,["H6726"]]]},{"k":17971,"v":[[0,4,["H1961"]],[4,8,["H5074"]],[8,9,["H5775"]],[9,11,["H7971"]],[11,14,["H7064"]],[14,17,["H1323"]],[17,19,["H4124"]],[19,21,["H1961"]],[21,24,["H4569"]],[24,26,["H769"]]]},{"k":17972,"v":[[0,1,["H935"]],[1,2,["H6098"]],[2,3,["H6213"]],[3,4,["H6415"]],[4,5,["H7896"]],[5,7,["H6738"]],[7,10,["H3915"]],[10,13,["H8432"]],[13,16,["H6672"]],[16,17,["H5641"]],[17,19,["H5080"]],[19,20,["H1540"]],[20,21,["H408"]],[21,24,["H5074"]]]},{"k":17973,"v":[[0,3,["H5080"]],[3,4,["H1481"]],[4,7,["H4124"]],[7,8,["H1933"]],[8,11,["H5643"]],[11,16,["H4480","H6440"]],[16,19,["H7703"]],[19,20,["H3588"]],[20,22,["H4160"]],[22,26,["H656"]],[26,28,["H7701"]],[28,29,["H3615"]],[29,31,["H7429"]],[31,33,["H8552"]],[33,35,["H4480"]],[35,37,["H776"]]]},{"k":17974,"v":[[0,3,["H2617"]],[3,6,["H3678"]],[6,8,["H3559"]],[8,12,["H3427"]],[12,13,["H5921"]],[13,16,["H571"]],[16,19,["H168"]],[19,21,["H1732"]],[21,22,["H8199"]],[22,24,["H1875"]],[24,25,["H4941"]],[25,27,["H4106"]],[27,28,["H6664"]]]},{"k":17975,"v":[[0,3,["H8085"]],[3,6,["H1347"]],[6,8,["H4124"]],[8,11,["H3966"]],[11,12,["H1341"]],[12,16,["H1346"]],[16,19,["H1347"]],[19,22,["H5678"]],[22,25,["H907"]],[25,27,["H3808"]],[27,29,["H3651"]]]},{"k":17976,"v":[[0,1,["H3651"]],[1,3,["H4124"]],[3,4,["H3213"]],[4,6,["H4124"]],[6,8,["H3605"]],[8,10,["H3213"]],[10,13,["H808"]],[13,15,["H7025"]],[15,18,["H1897"]],[18,19,["H389"]],[19,22,["H5218"]]]},{"k":17977,"v":[[0,1,["H3588"]],[1,3,["H7709"]],[3,5,["H2809"]],[5,6,["H535"]],[6,9,["H1612"]],[9,11,["H7643"]],[11,13,["H1167"]],[13,16,["H1471"]],[16,19,["H1986"]],[19,22,["H8291"]],[22,26,["H5060"]],[26,28,["H5704"]],[28,29,["H3270"]],[29,31,["H8582"]],[31,34,["H4057"]],[34,36,["H7976"]],[36,39,["H5203"]],[39,43,["H5674"]],[43,45,["H3220"]]]},{"k":17978,"v":[[0,1,["H5921","H3651"]],[1,4,["H1058"]],[4,7,["H1065"]],[7,9,["H3270"]],[9,11,["H1612"]],[11,13,["H7643"]],[13,16,["H7301"]],[16,20,["H1832"]],[20,22,["H2809"]],[22,24,["H500"]],[24,25,["H3588"]],[25,27,["H1959"]],[27,28,["H5921"]],[28,31,["H7019"]],[31,33,["H5921"]],[33,35,["H7105"]],[35,37,["H5307"]]]},{"k":17979,"v":[[0,2,["H8057"]],[2,5,["H622"]],[5,7,["H1524"]],[7,9,["H4480"]],[9,12,["H3759"]],[12,16,["H3754"]],[16,20,["H3808"]],[20,21,["H7442"]],[21,22,["H3808"]],[22,26,["H7321"]],[26,28,["H1869"]],[28,30,["H1869"]],[30,32,["H3808"]],[32,33,["H3196"]],[33,36,["H3342"]],[36,42,["H1959"]],[42,44,["H7673"]]]},{"k":17980,"v":[[0,1,["H921","H3651"]],[1,3,["H4578"]],[3,5,["H1993"]],[5,8,["H3658"]],[8,10,["H4124"]],[10,14,["H7130"]],[14,16,["H7025"]]]},{"k":17981,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,10,["H7200"]],[10,11,["H3588"]],[11,12,["H4124"]],[12,14,["H3811"]],[14,15,["H5921"]],[15,18,["H1116"]],[18,22,["H935"]],[22,23,["H413"]],[23,25,["H4720"]],[25,27,["H6419"]],[27,31,["H3808"]],[31,32,["H3201"]]]},{"k":17982,"v":[[0,1,["H2088"]],[1,4,["H1697"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H1696"]],[9,10,["H413"]],[10,11,["H4124"]],[11,14,["H4480","H227"]]]},{"k":17983,"v":[[0,2,["H6258"]],[2,4,["H3068"]],[4,6,["H1696"]],[6,7,["H559"]],[7,9,["H7969"]],[9,10,["H8141"]],[10,13,["H8141"]],[13,16,["H7916"]],[16,19,["H3519"]],[19,21,["H4124"]],[21,24,["H7034"]],[24,26,["H3605"]],[26,28,["H7227"]],[28,29,["H1995"]],[29,32,["H7605"]],[32,36,["H4592","H4213"]],[36,38,["H3808","H3524"]]]},{"k":17984,"v":[[0,2,["H4853"]],[2,4,["H1834"]],[4,5,["H2009"]],[5,6,["H1834"]],[6,9,["H5493"]],[9,13,["H4480","H5892"]],[13,17,["H1961"]],[17,19,["H4654"]],[19,20,["H4596"]]]},{"k":17985,"v":[[0,2,["H5892"]],[2,4,["H6177"]],[4,6,["H5800"]],[6,9,["H1961"]],[9,11,["H5739"]],[11,15,["H7257"]],[15,17,["H369"]],[17,21,["H2729"]]]},{"k":17986,"v":[[0,2,["H4013"]],[2,5,["H7673"]],[5,7,["H4480","H669"]],[7,10,["H4467"]],[10,12,["H4480","H1834"]],[12,15,["H7605"]],[15,17,["H758"]],[17,20,["H1961"]],[20,23,["H3519"]],[23,26,["H1121"]],[26,28,["H3478"]],[28,29,["H5002"]],[29,31,["H3068"]],[31,33,["H6635"]]]},{"k":17987,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,9,["H1961"]],[9,12,["H3519"]],[12,14,["H3290"]],[14,18,["H1809"]],[18,21,["H4924"]],[21,24,["H1320"]],[24,27,["H7329"]]]},{"k":17988,"v":[[0,4,["H1961"]],[4,8,["H7105"]],[8,9,["H622"]],[9,11,["H7054"]],[11,13,["H7114"]],[13,15,["H7641"]],[15,18,["H2220"]],[18,22,["H1961"]],[22,26,["H3950"]],[26,27,["H7641"]],[27,30,["H6010"]],[30,32,["H7497"]]]},{"k":17989,"v":[[0,3,["H5955"]],[3,6,["H7604"]],[6,11,["H5363"]],[11,15,["H2132"]],[15,16,["H8147"]],[16,18,["H7969"]],[18,19,["H1620"]],[19,22,["H7218"]],[22,26,["H534"]],[26,27,["H702"]],[27,29,["H2568"]],[29,33,["H6509"]],[33,34,["H5585"]],[34,36,["H5002"]],[36,38,["H3068"]],[38,39,["H430"]],[39,41,["H3478"]]]},{"k":17990,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H120"]],[6,7,["H8159"]],[7,8,["H5921"]],[8,10,["H6213"]],[10,13,["H5869"]],[13,16,["H7200"]],[16,17,["H413"]],[17,20,["H6918"]],[20,22,["H3478"]]]},{"k":17991,"v":[[0,4,["H3808"]],[4,5,["H8159"]],[5,6,["H413"]],[6,8,["H4196"]],[8,10,["H4639"]],[10,13,["H3027"]],[13,14,["H3808"]],[14,16,["H7200"]],[16,18,["H834"]],[18,20,["H676"]],[20,22,["H6213"]],[22,25,["H842"]],[25,28,["H2553"]]]},{"k":17992,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H4581"]],[6,7,["H5892"]],[7,8,["H1961"]],[8,11,["H5800"]],[11,12,["H2793"]],[12,16,["H534"]],[16,17,["H834"]],[17,19,["H5800"]],[19,20,["H4480","H6440"]],[20,23,["H1121"]],[23,25,["H3478"]],[25,29,["H1961"]],[29,30,["H8077"]]]},{"k":17993,"v":[[0,1,["H3588"]],[1,4,["H7911"]],[4,6,["H430"]],[6,9,["H3468"]],[9,12,["H3808"]],[12,14,["H2142"]],[14,17,["H6697"]],[17,20,["H4581"]],[20,21,["H5921","H3651"]],[21,24,["H5193"]],[24,25,["H5282"]],[25,26,["H5194"]],[26,29,["H2232"]],[29,32,["H2114"]],[32,33,["H2156"]]]},{"k":17994,"v":[[0,3,["H3117"]],[3,8,["H5194"]],[8,10,["H7735"]],[10,14,["H1242"]],[14,19,["H2233"]],[19,21,["H6524"]],[21,24,["H7105"]],[24,28,["H5067"]],[28,31,["H3117"]],[31,33,["H2470"]],[33,36,["H605"]],[36,37,["H3511"]]]},{"k":17995,"v":[[0,1,["H1945"]],[1,4,["H1995"]],[4,6,["H7227"]],[6,7,["H5971"]],[7,11,["H1993"]],[11,14,["H1993"]],[14,17,["H3220"]],[17,21,["H7588"]],[21,23,["H3816"]],[23,27,["H7582"]],[27,30,["H7588"]],[30,32,["H3524"]],[32,33,["H4325"]]]},{"k":17996,"v":[[0,2,["H3816"]],[2,4,["H7582"]],[4,7,["H7588"]],[7,9,["H7227"]],[9,10,["H4325"]],[10,14,["H1605"]],[14,19,["H5127"]],[19,21,["H4480","H4801"]],[21,25,["H7291"]],[25,28,["H4671"]],[28,31,["H2022"]],[31,32,["H6440"]],[32,34,["H7307"]],[34,39,["H1534"]],[39,40,["H6440"]],[40,42,["H5492"]]]},{"k":17997,"v":[[0,2,["H2009"]],[2,4,["H6256","H6153"]],[4,5,["H1091"]],[5,7,["H2962"]],[7,9,["H1242"]],[9,12,["H369"]],[12,13,["H2088"]],[13,16,["H2506"]],[16,20,["H8154"]],[20,24,["H1486"]],[24,28,["H962"]],[28,29,[]]]},{"k":17998,"v":[[0,1,["H1945"]],[1,4,["H776"]],[4,5,["H6767"]],[5,7,["H3671"]],[7,8,["H834"]],[8,10,["H4480","H5676"]],[10,12,["H5104"]],[12,14,["H3568"]]]},{"k":17999,"v":[[0,2,["H7971"]],[2,3,["H6735"]],[3,6,["H3220"]],[6,9,["H3627"]],[9,11,["H1573"]],[11,12,["H5921","H6440"]],[12,14,["H4325"]],[14,16,["H1980"]],[16,18,["H7031"]],[18,19,["H4397"]],[19,20,["H413"]],[20,22,["H1471"]],[22,23,["H4900"]],[23,25,["H4178"]],[25,26,["H413"]],[26,28,["H5971"]],[28,29,["H3372"]],[29,30,["H4480"]],[30,32,["H1931"]],[32,33,["H1973"]],[33,35,["H1471"]],[35,37,["H6978"]],[37,40,["H4001"]],[40,41,["H834"]],[41,42,["H776"]],[42,44,["H5104"]],[44,46,["H958"]]]},{"k":18000,"v":[[0,1,["H3605"]],[1,3,["H3427"]],[3,6,["H8398"]],[6,8,["H7931"]],[8,11,["H776"]],[11,12,["H7200"]],[12,17,["H5375"]],[17,19,["H5251"]],[19,22,["H2022"]],[22,26,["H8628"]],[26,28,["H7782"]],[28,29,["H8085"]],[29,30,[]]]},{"k":18001,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,4,["H3068"]],[4,5,["H559"]],[5,6,["H413"]],[6,12,["H8252"]],[12,16,["H5027"]],[16,20,["H4349"]],[20,23,["H6703"]],[23,24,["H2527"]],[24,25,["H5921"]],[25,26,["H216"]],[26,30,["H5645"]],[30,32,["H2919"]],[32,35,["H2527"]],[35,37,["H7105"]]]},{"k":18002,"v":[[0,1,["H3588"]],[1,2,["H6440"]],[2,4,["H7105"]],[4,7,["H6525"]],[7,9,["H8552"]],[9,13,["H1155"]],[13,14,["H1961"]],[14,15,["H1580"]],[15,18,["H5328"]],[18,23,["H3772"]],[23,25,["H2150"]],[25,28,["H4211"]],[28,31,["H5493"]],[31,34,["H8456"]],[34,36,["H5189"]]]},{"k":18003,"v":[[0,4,["H5800"]],[4,5,["H3162"]],[5,8,["H5861"]],[8,11,["H2022"]],[11,15,["H929"]],[15,18,["H776"]],[18,21,["H5861"]],[21,23,["H6972"]],[23,24,["H5921"]],[24,27,["H3605"]],[27,29,["H929"]],[29,32,["H776"]],[32,34,["H2778"]],[34,35,["H5921"]],[35,36,[]]]},{"k":18004,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,6,["H7862"]],[6,8,["H2986"]],[8,11,["H3068"]],[11,13,["H6635"]],[13,16,["H5971"]],[16,17,["H4900"]],[17,19,["H4178"]],[19,23,["H4480","H5971"]],[23,24,["H3372"]],[24,25,["H4480"]],[25,27,["H1931"]],[27,28,["H1973"]],[28,30,["H1471"]],[30,32,["H6978"]],[32,36,["H4001"]],[36,37,["H834"]],[37,38,["H776"]],[38,40,["H5104"]],[40,42,["H958"]],[42,43,["H413"]],[43,45,["H4725"]],[45,48,["H8034"]],[48,51,["H3068"]],[51,53,["H6635"]],[53,55,["H2022"]],[55,56,["H6726"]]]},{"k":18005,"v":[[0,2,["H4853"]],[2,4,["H4714"]],[4,5,["H2009"]],[5,7,["H3068"]],[7,8,["H7392"]],[8,9,["H5921"]],[9,11,["H7031"]],[11,12,["H5645"]],[12,15,["H935"]],[15,17,["H4714"]],[17,20,["H457"]],[20,22,["H4714"]],[22,25,["H5128"]],[25,28,["H4480","H6440"]],[28,31,["H3824"]],[31,33,["H4714"]],[33,35,["H4549"]],[35,38,["H7130"]],[38,40,[]]]},{"k":18006,"v":[[0,4,["H5526"]],[4,6,["H4714"]],[6,9,["H4714"]],[9,13,["H3898"]],[13,15,["H376"]],[15,18,["H251"]],[18,21,["H376"]],[21,24,["H7453"]],[24,25,["H5892"]],[25,27,["H5892"]],[27,29,["H4467"]],[29,31,["H4467"]]]},{"k":18007,"v":[[0,3,["H7307"]],[3,5,["H4714"]],[5,7,["H1238"]],[7,10,["H7130"]],[10,15,["H1104"]],[15,17,["H6098"]],[17,22,["H1875"]],[22,23,["H413"]],[23,25,["H457"]],[25,27,["H413"]],[27,29,["H328"]],[29,31,["H413"]],[31,36,["H178"]],[36,38,["H413"]],[38,40,["H3049"]]]},{"k":18008,"v":[[0,1,["(H853)"]],[1,3,["H4714"]],[3,7,["H5534"]],[7,10,["H3027"]],[10,13,["H7186"]],[13,14,["H113"]],[14,17,["H5794"]],[17,18,["H4428"]],[18,20,["H4910"]],[20,23,["H5002"]],[23,25,["H113"]],[25,27,["H3068"]],[27,29,["H6635"]]]},{"k":18009,"v":[[0,3,["H4325"]],[3,5,["H5405"]],[5,8,["H4480","H3220"]],[8,11,["H5104"]],[11,14,["H2717"]],[14,17,["H3001"]]]},{"k":18010,"v":[[0,8,["H2186","H5104"]],[8,11,["H2975"]],[11,13,["H4692"]],[13,16,["H1809"]],[16,19,["H2717"]],[19,21,["H7070"]],[21,23,["H5488"]],[23,25,["H7060"]]]},{"k":18011,"v":[[0,3,["H6169"]],[3,4,["H5921"]],[4,6,["H2975"]],[6,7,["H5921"]],[7,9,["H6310"]],[9,12,["H2975"]],[12,15,["H3605"]],[15,16,["H4218"]],[16,19,["H2975"]],[19,21,["H3001"]],[21,24,["H5086"]],[24,27,["H369"]],[27,28,[]]]},{"k":18012,"v":[[0,2,["H1771"]],[2,5,["H578"]],[5,7,["H3605"]],[7,10,["H7993"]],[10,11,["H2443"]],[11,14,["H2975"]],[14,16,["H56"]],[16,20,["H6566"]],[20,21,["H4365"]],[21,22,["H5921","H6440"]],[22,24,["H4325"]],[24,26,["H535"]]]},{"k":18013,"v":[[0,4,["H5647"]],[4,6,["H8305"]],[6,7,["H6593"]],[7,11,["H707"]],[11,12,["H2355"]],[12,15,["H954"]]]},{"k":18014,"v":[[0,4,["H1961"]],[4,5,["H1792"]],[5,8,["H8356"]],[8,10,["H3605"]],[10,12,["H6213"]],[12,13,["H7938"]],[13,15,["H99"]],[15,17,["H5315"]]]},{"k":18015,"v":[[0,1,["H389"]],[1,3,["H8269"]],[3,5,["H6814"]],[5,7,["H191"]],[7,9,["H6098"]],[9,12,["H2450"]],[12,13,["H3289"]],[13,15,["H6547"]],[15,18,["H1197"]],[18,19,["H349"]],[19,20,["H559"]],[20,22,["H413"]],[22,23,["H6547"]],[23,24,["H589"]],[24,27,["H1121"]],[27,30,["H2450"]],[30,32,["H1121"]],[32,34,["H6924"]],[34,35,["H4428"]]]},{"k":18016,"v":[[0,1,["H335"]],[1,4,["H645"]],[4,7,["H2450"]],[7,12,["H5046"]],[12,14,["H4994"]],[14,18,["H3045"]],[18,19,["H4100"]],[19,21,["H3068"]],[21,23,["H6635"]],[23,25,["H3289"]],[25,26,["H5921"]],[26,27,["H4714"]]]},{"k":18017,"v":[[0,2,["H8269"]],[2,4,["H6814"]],[4,7,["H2973"]],[7,9,["H8269"]],[9,11,["H5297"]],[11,13,["H5377"]],[13,17,["H8582","(H853)"]],[17,18,["H4714"]],[18,24,["H6438"]],[24,27,["H7626"]],[27,28,[]]]},{"k":18018,"v":[[0,2,["H3068"]],[2,4,["H4537"]],[4,6,["H5773"]],[6,7,["H7307"]],[7,10,["H7130"]],[10,15,["(H853)"]],[15,16,["H4714"]],[16,18,["H8582"]],[18,20,["H3605"]],[20,21,["H4639"]],[21,25,["H7910"]],[25,27,["H8582"]],[27,30,["H6892"]]]},{"k":18019,"v":[[0,1,["H3808"]],[1,4,["H1961"]],[4,6,["H4639"]],[6,8,["H4714"]],[8,9,["H834"]],[9,11,["H7218"]],[11,13,["H2180"]],[13,14,["H3712"]],[14,16,["H100"]],[16,18,["H6213"]]]},{"k":18020,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H4714"]],[5,6,["H1961"]],[6,9,["H802"]],[9,14,["H2729"]],[14,16,["H6342"]],[16,17,["H4480","H6440"]],[17,20,["H8573"]],[20,23,["H3027"]],[23,26,["H3068"]],[26,28,["H6635"]],[28,29,["H834"]],[29,30,["H1931"]],[30,31,["H5130"]],[31,32,["H5921"]],[32,33,[]]]},{"k":18021,"v":[[0,3,["H127"]],[3,5,["H3063"]],[5,7,["H1961"]],[7,9,["H2283"]],[9,11,["H4714"]],[11,13,["H3605"]],[13,14,["H834"]],[14,16,["H2142"]],[16,20,["H6342"]],[20,21,["H413"]],[21,23,["H4480","H6440"]],[23,26,["H6098"]],[26,29,["H3068"]],[29,31,["H6635"]],[31,32,["H834"]],[32,33,["H1931"]],[33,35,["H3289"]],[35,36,["H5921"]],[36,37,[]]]},{"k":18022,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,4,["H1961"]],[4,5,["H2568"]],[5,6,["H5892"]],[6,9,["H776"]],[9,11,["H4714"]],[11,12,["H1696"]],[12,14,["H8193"]],[14,16,["H3667"]],[16,18,["H7650"]],[18,21,["H3068"]],[21,23,["H6635"]],[23,24,["H259"]],[24,27,["H559"]],[27,29,["H5892"]],[29,31,["H2041"]]]},{"k":18023,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H1961"]],[6,8,["H4196"]],[8,11,["H3068"]],[11,14,["H8432"]],[14,17,["H776"]],[17,19,["H4714"]],[19,22,["H4676"]],[22,23,["H681"]],[23,25,["H1366"]],[25,29,["H3068"]]]},{"k":18024,"v":[[0,4,["H1961"]],[4,7,["H226"]],[7,11,["H5707"]],[11,14,["H3068"]],[14,16,["H6635"]],[16,19,["H776"]],[19,21,["H4714"]],[21,22,["H3588"]],[22,25,["H6817"]],[25,26,["H413"]],[26,28,["H3068"]],[28,29,["H4480","H6440"]],[29,32,["H3905"]],[32,36,["H7971"]],[36,39,["H3467"]],[39,43,["H7227"]],[43,47,["H5337"]],[47,48,[]]]},{"k":18025,"v":[[0,3,["H3068"]],[3,6,["H3045"]],[6,8,["H4714"]],[8,11,["H4714"]],[11,13,["H3045","(H853)"]],[13,15,["H3068"]],[15,17,["H1931"]],[17,18,["H3117"]],[18,21,["H5647"]],[21,22,["H2077"]],[22,24,["H4503"]],[24,28,["H5087"]],[28,30,["H5088"]],[30,33,["H3068"]],[33,35,["H7999"]],[35,36,[]]]},{"k":18026,"v":[[0,3,["H3068"]],[3,5,["H5062","(H853)"]],[5,6,["H4714"]],[6,9,["H5062"]],[9,11,["H7495"]],[11,16,["H7725"]],[16,18,["H5704"]],[18,20,["H3068"]],[20,25,["H6279"]],[25,30,["H7495"]],[30,31,[]]]},{"k":18027,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H1961"]],[6,8,["H4546"]],[8,11,["H4480","H4714"]],[11,13,["H804"]],[13,16,["H804"]],[16,18,["H935"]],[18,20,["H4714"]],[20,23,["H4714"]],[23,25,["H804"]],[25,28,["H4714"]],[28,30,["H5647"]],[30,31,["H854"]],[31,33,["H804"]]]},{"k":18028,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H3478"]],[5,6,["H1961"]],[6,8,["H7992"]],[8,10,["H4714"]],[10,13,["H804"]],[13,16,["H1293"]],[16,19,["H7130"]],[19,22,["H776"]]]},{"k":18029,"v":[[0,1,["H834"]],[1,3,["H3068"]],[3,5,["H6635"]],[5,7,["H1288"]],[7,8,["H559"]],[8,9,["H1288"]],[9,11,["H4714"]],[11,13,["H5971"]],[13,15,["H804"]],[15,17,["H4639"]],[17,20,["H3027"]],[20,22,["H3478"]],[22,24,["H5159"]]]},{"k":18030,"v":[[0,3,["H8141"]],[3,5,["H8661"]],[5,6,["H935"]],[6,8,["H795"]],[8,10,["H5623"]],[10,12,["H4428"]],[12,14,["H804"]],[14,15,["H7971"]],[15,18,["H3898"]],[18,20,["H795"]],[20,22,["H3920"]],[22,23,[]]]},{"k":18031,"v":[[0,3,["H1931"]],[3,4,["H6256"]],[4,5,["H1696"]],[5,7,["H3068"]],[7,8,["H3027"]],[8,9,["H3470"]],[9,11,["H1121"]],[11,13,["H531"]],[13,14,["H559"]],[14,15,["H1980"]],[15,17,["H6605"]],[17,19,["H8242"]],[19,21,["H4480","H5921"]],[21,23,["H4975"]],[23,26,["H2502"]],[26,28,["H5275"]],[28,29,["H4480","H5921"]],[29,31,["H7272"]],[31,34,["H6213"]],[34,35,["H3651"]],[35,36,["H1980"]],[36,37,["H6174"]],[37,39,["H3182"]]]},{"k":18032,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,6,["H834"]],[6,8,["H5650"]],[8,9,["H3470"]],[9,11,["H1980"]],[11,12,["H6174"]],[12,14,["H3182"]],[14,15,["H7969"]],[15,16,["H8141"]],[16,19,["H226"]],[19,21,["H4159"]],[21,22,["H5921"]],[22,23,["H4714"]],[23,25,["H5921"]],[25,26,["H3568"]]]},{"k":18033,"v":[[0,1,["H3651"]],[1,4,["H4428"]],[4,6,["H804"]],[6,8,["H5090","(H853)"]],[8,10,["H4714"]],[10,11,["H7628"]],[11,14,["H3568"]],[14,15,["H1546"]],[15,16,["H5288"]],[16,18,["H2205"]],[18,19,["H6174"]],[19,21,["H3182"]],[21,25,["H8357"]],[25,26,["H2834"]],[26,29,["H6172"]],[29,31,["H4714"]]]},{"k":18034,"v":[[0,5,["H2865"]],[5,7,["H954"]],[7,9,["H4480","H3568"]],[9,11,["H4007"]],[11,13,["H4480"]],[13,14,["H4714"]],[14,16,["H8597"]]]},{"k":18035,"v":[[0,3,["H3427"]],[3,5,["H2088"]],[5,6,["H339"]],[6,8,["H559"]],[8,10,["H1931"]],[10,11,["H3117"]],[11,12,["H2009"]],[12,13,["H3541"]],[13,16,["H4007"]],[16,17,["H834","H8033"]],[17,19,["H5127"]],[19,21,["H5833"]],[21,24,["H5337"]],[24,25,["H4480","H6440"]],[25,27,["H4428"]],[27,29,["H804"]],[29,31,["H349"]],[31,33,["H587"]],[33,34,["H4422"]]]},{"k":18036,"v":[[0,2,["H4853"]],[2,5,["H4057"]],[5,8,["H3220"]],[8,10,["H5492"]],[10,13,["H5045"]],[13,15,["H2498"]],[15,18,["H935"]],[18,21,["H4480","H4057"]],[21,24,["H3372"]],[24,25,["H4480","H776"]]]},{"k":18037,"v":[[0,2,["H7186"]],[2,3,["H2380"]],[3,5,["H5046"]],[5,10,["H898"]],[10,12,["H898"]],[12,15,["H7703"]],[15,16,["H7703"]],[16,18,["H5927"]],[18,20,["H5867"]],[20,21,["H6696"]],[21,23,["H4074"]],[23,24,["H3605"]],[24,26,["H585"]],[26,32,["H7673"]]]},{"k":18038,"v":[[0,1,["H5921","H3651"]],[1,4,["H4975"]],[4,5,["H4390"]],[5,7,["H2479"]],[7,8,["H6735"]],[8,11,["H270"]],[11,16,["H6735"]],[16,21,["H3205"]],[21,25,["H5753"]],[25,28,["H4480","H8085"]],[28,33,["H926"]],[33,36,["H4480","H7200"]],[36,38,[]]]},{"k":18039,"v":[[0,2,["H3824"]],[2,3,["H8582"]],[3,4,["H6427"]],[4,5,["H1204","(H853)"]],[5,8,["H5399"]],[8,11,["H2837"]],[11,14,["H7760"]],[14,16,["H2731"]],[16,18,[]]]},{"k":18040,"v":[[0,1,["H6186"]],[1,3,["H7979"]],[3,4,["H6822"]],[4,7,["H6844"]],[7,8,["H398"]],[8,9,["H8354"]],[9,10,["H6965"]],[10,12,["H8269"]],[12,14,["H4886"]],[14,16,["H4043"]]]},{"k":18041,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,5,["H136"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H1980"]],[9,10,["H5975"]],[10,12,["H6822"]],[12,15,["H5046"]],[15,16,["H834"]],[16,18,["H7200"]]]},{"k":18042,"v":[[0,3,["H7200"]],[3,5,["H7393"]],[5,8,["H6776"]],[8,10,["H6571"]],[10,12,["H7393"]],[12,14,["H2543"]],[14,17,["H7393"]],[17,19,["H1581"]],[19,22,["H7181"]],[22,23,["H7182"]],[23,25,["H7227"]],[25,26,["H7182"]]]},{"k":18043,"v":[[0,3,["H7121"]],[3,5,["H738"]],[5,7,["H113"]],[7,8,["H595"]],[8,9,["H5975"]],[9,10,["H8548"]],[10,11,["H5921"]],[11,13,["H4707"]],[13,16,["H3119"]],[16,18,["H595"]],[18,20,["H5324"]],[20,21,["H5921"]],[21,23,["H4931"]],[23,24,["H3605"]],[24,25,["H3915"]]]},{"k":18044,"v":[[0,2,["H2009"]],[2,3,["H2088"]],[3,4,["H935"]],[4,6,["H7393"]],[6,8,["H376"]],[8,11,["H6776"]],[11,13,["H6571"]],[13,16,["H6030"]],[16,18,["H559"]],[18,19,["H894"]],[19,21,["H5307"]],[21,23,["H5307"]],[23,25,["H3605"]],[25,28,["H6456"]],[28,31,["H430"]],[31,34,["H7665"]],[34,37,["H776"]]]},{"k":18045,"v":[[0,3,["H4098"]],[3,6,["H1121"]],[6,9,["H1637"]],[9,11,["H834"]],[11,14,["H8085"]],[14,15,["H4480","H854"]],[15,17,["H3068"]],[17,19,["H6635"]],[19,21,["H430"]],[21,23,["H3478"]],[23,26,["H5046"]],[26,28,[]]]},{"k":18046,"v":[[0,2,["H4853"]],[2,4,["H1746"]],[4,6,["H7121"]],[6,7,["H413"]],[7,11,["H4480","H8165"]],[11,12,["H8104"]],[12,13,["H4100"]],[13,16,["H4480","H3915"]],[16,17,["H8104"]],[17,18,["H4100"]],[18,21,["H4480","H3915"]]]},{"k":18047,"v":[[0,2,["H8104"]],[2,3,["H559"]],[3,5,["H1242"]],[5,6,["H857"]],[6,8,["H1571"]],[8,10,["H3915"]],[10,11,["H518"]],[11,14,["H1158"]],[14,15,["H1158"]],[15,17,["H7725"]],[17,18,["H857"]]]},{"k":18048,"v":[[0,2,["H4853"]],[2,4,["H6152"]],[4,7,["H3293"]],[7,9,["H6152"]],[9,12,["H3885"]],[12,16,["H736"]],[16,18,["H1720"]]]},{"k":18049,"v":[[0,2,["H3427"]],[2,5,["H776"]],[5,7,["H8485"]],[7,8,["H857"]],[8,9,["H4325"]],[9,14,["H6771"]],[14,16,["H6923"]],[16,19,["H3899"]],[19,22,["H5074"]]]},{"k":18050,"v":[[0,1,["H3588"]],[1,3,["H5074"]],[3,4,["H4480","H6440"]],[4,6,["H2719"]],[6,7,["H4480","H6440"]],[7,9,["H5203"]],[9,10,["H2719"]],[10,12,["H4480","H6440"]],[12,14,["H1869"]],[14,15,["H7198"]],[15,17,["H4480","H6440"]],[17,19,["H3514"]],[19,21,["H4421"]]]},{"k":18051,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,5,["H136"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H5750"]],[9,11,["H8141"]],[11,15,["H8141"]],[15,18,["H7916"]],[18,20,["H3605"]],[20,22,["H3519"]],[22,24,["H6938"]],[24,26,["H3615"]]]},{"k":18052,"v":[[0,3,["H7605"]],[3,6,["H4557"]],[6,8,["H7198"]],[8,11,["H1368"]],[11,14,["H1121"]],[14,16,["H6938"]],[16,19,["H4591"]],[19,20,["H3588"]],[20,22,["H3068"]],[22,23,["H430"]],[23,25,["H3478"]],[25,27,["H1696"]],[27,28,[]]]},{"k":18053,"v":[[0,2,["H4853"]],[2,5,["H1516"]],[5,7,["H2384"]],[7,8,["H4100"]],[8,11,["H645"]],[11,12,["H3588"]],[12,15,["H3605"]],[15,17,["H5927"]],[17,20,["H1406"]]]},{"k":18054,"v":[[0,4,["H4392"]],[4,6,["H8663"]],[6,8,["H1993"]],[8,9,["H5892"]],[9,11,["H5947"]],[11,12,["H7151"]],[12,14,["H2491"]],[14,17,["H3808"]],[17,18,["H2491"]],[18,21,["H2719"]],[21,22,["H3808"]],[22,23,["H4191"]],[23,25,["H4421"]]]},{"k":18055,"v":[[0,1,["H3605"]],[1,3,["H7101"]],[3,5,["H5074"]],[5,6,["H3162"]],[6,9,["H631"]],[9,12,["H4480","H7198"]],[12,13,["H3605"]],[13,16,["H4672"]],[16,20,["H631"]],[20,21,["H3162"]],[21,24,["H1272"]],[24,26,["H4480","H7350"]]]},{"k":18056,"v":[[0,1,["H5921","H3651"]],[1,2,["H559"]],[2,5,["H8159"]],[5,6,["H4480"]],[6,10,["H1065"]],[10,11,["H4843"]],[11,12,["H213"]],[12,13,["H408"]],[13,15,["H5162"]],[15,17,["H5921"]],[17,20,["H7701"]],[20,23,["H1323"]],[23,26,["H5971"]]]},{"k":18057,"v":[[0,1,["H3588"]],[1,5,["H3117"]],[5,7,["H4103"]],[7,11,["H4001"]],[11,14,["H3998"]],[14,17,["H136"]],[17,18,["H3069"]],[18,20,["H6635"]],[20,23,["H1516"]],[23,25,["H2384"]],[25,27,["H6979"]],[27,29,["H7023"]],[29,32,["H7771"]],[32,33,["H413"]],[33,35,["H2022"]]]},{"k":18058,"v":[[0,2,["H5867"]],[2,3,["H5375"]],[3,5,["H827"]],[5,7,["H7393"]],[7,9,["H120"]],[9,11,["H6571"]],[11,13,["H7024"]],[13,14,["H6168"]],[14,16,["H4043"]]]},{"k":18059,"v":[[0,6,["H1961"]],[6,9,["H4055"]],[9,10,["H6010"]],[10,13,["H4390"]],[13,15,["H7393"]],[15,18,["H6571"]],[18,23,["H7896","H7896"]],[23,26,["H8179"]]]},{"k":18060,"v":[[0,3,["H1540","(H853)"]],[3,5,["H4539"]],[5,7,["H3063"]],[7,11,["H5027"]],[11,13,["H1931"]],[13,14,["H3117"]],[14,15,["H413"]],[15,17,["H5402"]],[17,20,["H1004"]],[20,23,["H3293"]]]},{"k":18061,"v":[[0,3,["H7200"]],[3,6,["H1233"]],[6,9,["H5892"]],[9,11,["H1732"]],[11,12,["H3588"]],[12,15,["H7231"]],[15,19,["H6908","(H853)"]],[19,21,["H4325"]],[21,24,["H8481"]],[24,25,["H1295"]]]},{"k":18062,"v":[[0,4,["H5608"]],[4,6,["H1004"]],[6,8,["H3389"]],[8,11,["H1004"]],[11,15,["H5422"]],[15,17,["H1219"]],[17,19,["H2346"]]]},{"k":18063,"v":[[0,2,["H6213"]],[2,5,["H4724"]],[5,6,["H996"]],[6,9,["H2346"]],[9,12,["H4325"]],[12,15,["H3465"]],[15,16,["H1295"]],[16,20,["H3808"]],[20,21,["H5027"]],[21,22,["H413"]],[22,24,["H6213"]],[24,26,["H3808"]],[26,28,["H7200"]],[28,32,["H3335"]],[32,35,["H4480","H7350"]]]},{"k":18064,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,7,["H136"]],[7,8,["H3069"]],[8,10,["H6635"]],[10,11,["H7121"]],[11,13,["H1065"]],[13,16,["H4553"]],[16,19,["H7144"]],[19,22,["H2296"]],[22,24,["H8242"]]]},{"k":18065,"v":[[0,2,["H2009"]],[2,3,["H8342"]],[3,5,["H8057"]],[5,6,["H2026"]],[6,7,["H1241"]],[7,9,["H7819"]],[9,10,["H6629"]],[10,11,["H398"]],[11,12,["H1320"]],[12,14,["H8354"]],[14,15,["H3196"]],[15,18,["H398"]],[18,20,["H8354"]],[20,21,["H3588"]],[21,23,["H4279"]],[23,26,["H4191"]]]},{"k":18066,"v":[[0,4,["H1540"]],[4,7,["H241"]],[7,10,["H3068"]],[10,12,["H6635"]],[12,13,["H518"]],[13,14,["H2088"]],[14,15,["H5771"]],[15,19,["H3722"]],[19,22,["H5704"]],[22,24,["H4191"]],[24,25,["H559"]],[25,27,["H136"]],[27,28,["H3069"]],[28,30,["H6635"]]]},{"k":18067,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,7,["H6635"]],[7,8,["H1980"]],[8,9,["H935"]],[9,11,["H413"]],[11,12,["H2088"]],[12,13,["H5532"]],[13,15,["H5921"]],[15,16,["H7644"]],[16,17,["H834"]],[17,19,["H5921"]],[19,21,["H1004"]],[21,23,[]]]},{"k":18068,"v":[[0,1,["H4100"]],[1,4,["H6311"]],[4,6,["H4310"]],[6,9,["H6311"]],[9,10,["H3588"]],[10,15,["H2672"]],[15,17,["H6913"]],[17,18,["H6311"]],[18,24,["H2672"]],[24,26,["H6913"]],[26,28,["H4791"]],[28,31,["H2710"]],[31,33,["H4908"]],[33,38,["H5553"]]]},{"k":18069,"v":[[0,1,["H2009"]],[1,3,["H3068"]],[3,7,["H2904"]],[7,10,["H1397"]],[10,11,["H2925"]],[11,15,["H5844","H5844"]],[15,16,[]]]},{"k":18070,"v":[[0,5,["H6801","H6801"]],[5,7,["H6802"]],[7,11,["H1754"]],[11,12,["H413"]],[12,14,["H7342","H3027"]],[14,15,["H776"]],[15,16,["H8033"]],[16,19,["H4191"]],[19,21,["H8033"]],[21,23,["H4818"]],[23,26,["H3519"]],[26,30,["H7036"]],[30,33,["H113"]],[33,34,["H1004"]]]},{"k":18071,"v":[[0,4,["H1920"]],[4,8,["H4480","H4673"]],[8,12,["H4480","H4612"]],[12,17,["H2040"]]]},{"k":18072,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,13,["H7121"]],[13,15,["H5650"]],[15,16,["H471"]],[16,18,["H1121"]],[18,20,["H2518"]]]},{"k":18073,"v":[[0,4,["H3847"]],[4,8,["H3801"]],[8,10,["H2388"]],[10,14,["H73"]],[14,18,["H5414"]],[18,20,["H4475"]],[20,23,["H3027"]],[23,27,["H1961"]],[27,29,["H1"]],[29,32,["H3427"]],[32,34,["H3389"]],[34,38,["H1004"]],[38,40,["H3063"]]]},{"k":18074,"v":[[0,3,["H4668"]],[3,6,["H1004"]],[6,8,["H1732"]],[8,11,["H5414"]],[11,12,["H5921"]],[12,14,["H7926"]],[14,18,["H6605"]],[18,20,["H369"]],[20,22,["H5462"]],[22,26,["H5462"]],[26,28,["H369"]],[28,30,["H6605"]]]},{"k":18075,"v":[[0,4,["H8628"]],[4,8,["H3489"]],[8,11,["H539"]],[11,12,["H4725"]],[12,16,["H1961"]],[16,19,["H3519"]],[19,20,["H3678"]],[20,23,["H1"]],[23,24,["H1004"]]]},{"k":18076,"v":[[0,4,["H8518"]],[4,5,["H5921"]],[5,7,["H3605"]],[7,9,["H3519"]],[9,12,["H1"]],[12,13,["H1004"]],[13,15,["H6631"]],[15,18,["H6849"]],[18,19,["H3605"]],[19,20,["H3627"]],[20,23,["H6996"]],[23,26,["H4480","H3627"]],[26,28,["H101"]],[28,30,["H5704"]],[30,31,["H3605"]],[31,33,["H3627"]],[33,35,["H5035"]]]},{"k":18077,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,4,["H5002"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,11,["H3489"]],[11,14,["H8628"]],[14,17,["H539"]],[17,18,["H4725"]],[18,20,["H4185"]],[20,24,["H1438"]],[24,26,["H5307"]],[26,29,["H4853"]],[29,30,["H834"]],[30,32,["H5921"]],[32,37,["H3772"]],[37,38,["H3588"]],[38,40,["H3068"]],[40,42,["H1696"]],[42,43,[]]]},{"k":18078,"v":[[0,2,["H4853"]],[2,4,["H6865"]],[4,5,["H3213"]],[5,7,["H591"]],[7,9,["H8659"]],[9,10,["H3588"]],[10,14,["H7703"]],[14,20,["H4480","H1004"]],[20,23,["H4480","H935"]],[23,26,["H4480","H776"]],[26,28,["H3794"]],[28,31,["H1540"]],[31,33,[]]]},{"k":18079,"v":[[0,2,["H1826"]],[2,4,["H3427"]],[4,7,["H339"]],[7,11,["H5503"]],[11,13,["H6721"]],[13,16,["H5674"]],[16,18,["H3220"]],[18,20,["H4390"]]]},{"k":18080,"v":[[0,3,["H7227"]],[3,4,["H4325"]],[4,6,["H2233"]],[6,8,["H7883"]],[8,10,["H7105"]],[10,13,["H2975"]],[13,16,["H8393"]],[16,19,["H1961"]],[19,21,["H5505"]],[21,23,["H1471"]]]},{"k":18081,"v":[[0,3,["H954"]],[3,5,["H6721"]],[5,6,["H3588"]],[6,8,["H3220"]],[8,10,["H559"]],[10,13,["H4581"]],[13,16,["H3220"]],[16,17,["H559"]],[17,19,["H2342"]],[19,20,["H3808"]],[20,21,["H3808"]],[21,24,["H3205"]],[24,25,["H3808"]],[25,29,["H1431"]],[29,31,["H970"]],[31,34,["H7311"]],[34,35,["H1330"]]]},{"k":18082,"v":[[0,1,["H834"]],[1,4,["H8088"]],[4,6,["H4714"]],[6,12,["H2342"]],[12,15,["H8088"]],[15,17,["H6865"]]]},{"k":18083,"v":[[0,3,["H5674"]],[3,5,["H8659"]],[5,6,["H3213"]],[6,8,["H3427"]],[8,11,["H339"]]]},{"k":18084,"v":[[0,2,["H2063"]],[2,4,["H5947"]],[4,7,["H6927"]],[7,10,["H6924"]],[10,11,["H4480","H3117"]],[11,14,["H7272"]],[14,16,["H2986"]],[16,19,["H4480","H7350"]],[19,21,["H1481"]]]},{"k":18085,"v":[[0,1,["H4310"]],[1,5,["H3289","H2063"]],[5,6,["H5921"]],[6,7,["H6865"]],[7,9,["H5849"]],[9,11,["H834"]],[11,12,["H5503"]],[12,14,["H8269"]],[14,16,["H3669"]],[16,19,["H3513"]],[19,22,["H776"]]]},{"k":18086,"v":[[0,2,["H3068"]],[2,4,["H6635"]],[4,6,["H3289"]],[6,9,["H2490"]],[9,11,["H1347"]],[11,13,["H3605"]],[13,14,["H6643"]],[14,19,["H7043"]],[19,20,["H3605"]],[20,22,["H3513"]],[22,25,["H776"]]]},{"k":18087,"v":[[0,2,["H5674"]],[2,4,["H776"]],[4,7,["H2975"]],[7,9,["H1323"]],[9,11,["H8659"]],[11,14,["H369"]],[14,15,["H5750"]],[15,16,["H4206"]]]},{"k":18088,"v":[[0,3,["H5186"]],[3,5,["H3027"]],[5,6,["H5921"]],[6,8,["H3220"]],[8,10,["H7264"]],[10,12,["H4467"]],[12,14,["H3068"]],[14,18,["H6680"]],[18,19,["H413"]],[19,21,["H3667"]],[21,24,["H8045"]],[24,27,["H4581"]],[27,28,[]]]},{"k":18089,"v":[[0,3,["H559"]],[3,6,["H3808"]],[6,7,["H5750"]],[7,8,["H5937"]],[8,11,["H6231"]],[11,12,["H1330"]],[12,13,["H1323"]],[13,15,["H6721"]],[15,16,["H6965"]],[16,18,["H5674"]],[18,20,["H3794"]],[20,21,["H8033"]],[21,22,["H1571"]],[22,27,["H5117","H3808"]]]},{"k":18090,"v":[[0,1,["H2005"]],[1,3,["H776"]],[3,6,["H3778"]],[6,7,["H2088"]],[7,8,["H5971"]],[8,9,["H1961"]],[9,10,["H3808"]],[10,13,["H804"]],[13,14,["H3245"]],[14,22,["H6728"]],[22,25,["H6965"]],[25,27,["H971"]],[27,31,["H6209"]],[31,33,["H759"]],[33,37,["H7760"]],[37,40,["H4654"]]]},{"k":18091,"v":[[0,1,["H3213"]],[1,3,["H591"]],[3,5,["H8659"]],[5,6,["H3588"]],[6,8,["H4581"]],[8,11,["H7703"]]]},{"k":18092,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,11,["H6865"]],[11,14,["H7911"]],[14,15,["H7657"]],[15,16,["H8141"]],[16,20,["H3117"]],[20,22,["H259"]],[22,23,["H4428"]],[23,26,["H4480","H7093"]],[26,28,["H7657"]],[28,29,["H8141"]],[29,31,["H6865"]],[31,32,["H7892"]],[32,35,["H2181"]]]},{"k":18093,"v":[[0,1,["H3947"]],[1,3,["H3658"]],[3,5,["H5437"]],[5,7,["H5892"]],[7,9,["H2181"]],[9,13,["H7911"]],[13,15,["H3190"]],[15,16,["H5059"]],[16,18,["H7235"]],[18,19,["H7892"]],[19,20,["H4616"]],[20,24,["H2142"]]]},{"k":18094,"v":[[0,6,["H1961"]],[6,9,["H4480","H7093"]],[9,11,["H7657"]],[11,12,["H8141"]],[12,15,["H3068"]],[15,17,["H6485","(H853)"]],[17,18,["H6865"]],[18,22,["H7725"]],[22,25,["H868"]],[25,29,["H2181"]],[29,30,["H854"]],[30,31,["H3605"]],[31,33,["H4467"]],[33,36,["H776"]],[36,37,["H5921"]],[37,39,["H6440"]],[39,42,["H127"]]]},{"k":18095,"v":[[0,3,["H5504"]],[3,6,["H868"]],[6,8,["H1961"]],[8,9,["H6944"]],[9,12,["H3068"]],[12,15,["H3808"]],[15,17,["H686"]],[17,18,["H3808"]],[18,20,["H2630"]],[20,21,["H3588"]],[21,23,["H5504"]],[23,25,["H1961"]],[25,29,["H3427"]],[29,30,["H6440"]],[30,32,["H3068"]],[32,34,["H398"]],[34,35,["H7654"]],[35,38,["H6266"]],[38,39,["H4374"]]]},{"k":18096,"v":[[0,1,["H2009"]],[1,3,["H3068"]],[3,7,["H1238","H776"]],[7,11,["H1110"]],[11,16,["H5753","H6440"]],[16,19,["H6327"]],[19,21,["H3427"]],[21,22,[]]]},{"k":18097,"v":[[0,4,["H1961"]],[4,8,["H5971"]],[8,12,["H3548"]],[12,16,["H5650"]],[16,20,["H113"]],[20,24,["H8198"]],[24,28,["H1404"]],[28,32,["H7069"]],[32,36,["H4376"]],[36,40,["H3867"]],[40,44,["H3867"]],[44,50,["H5383"]],[50,51,["H834"]],[51,56,["H5378"]],[56,58,[]]]},{"k":18098,"v":[[0,2,["H776"]],[2,6,["H1238","H1238"]],[6,9,["H962","H962"]],[9,10,["H3588"]],[10,12,["H3068"]],[12,14,["H1696","(H853)"]],[14,15,["H2088"]],[15,16,["H1697"]]]},{"k":18099,"v":[[0,2,["H776"]],[2,3,["H56"]],[3,6,["H5034"]],[6,8,["H8398"]],[8,9,["H535"]],[9,12,["H5034"]],[12,14,["H4791"]],[14,15,["H5971"]],[15,18,["H776"]],[18,20,["H535"]]]},{"k":18100,"v":[[0,2,["H776"]],[2,5,["H2610"]],[5,6,["H8478"]],[6,8,["H3427"]],[8,10,["H3588"]],[10,13,["H5674"]],[13,15,["H8451"]],[15,16,["H2498"]],[16,18,["H2706"]],[18,19,["H6565"]],[19,21,["H5769"]],[21,22,["H1285"]]]},{"k":18101,"v":[[0,1,["H5921","H3651"]],[1,4,["H423"]],[4,5,["H398"]],[5,7,["H776"]],[7,11,["H3427"]],[11,14,["H816"]],[14,15,["H5921","H3651"]],[15,17,["H3427"]],[17,20,["H776"]],[20,22,["H2787"]],[22,24,["H4213"]],[24,25,["H582"]],[25,26,["H7604"]]]},{"k":18102,"v":[[0,3,["H8492"]],[3,4,["H56"]],[4,6,["H1612"]],[6,7,["H535"]],[7,8,["H3605"]],[8,10,["H8056","H3820"]],[10,12,["H584"]]]},{"k":18103,"v":[[0,2,["H4885"]],[2,4,["H8596"]],[4,5,["H7673"]],[5,7,["H7588"]],[7,11,["H5947"]],[11,12,["H2308"]],[12,14,["H4885"]],[14,17,["H3658"]],[17,18,["H7673"]]]},{"k":18104,"v":[[0,3,["H3808"]],[3,4,["H8354"]],[4,5,["H3196"]],[5,8,["H7892"]],[8,10,["H7941"]],[10,13,["H4843"]],[13,17,["H8354"]],[17,18,[]]]},{"k":18105,"v":[[0,2,["H7151"]],[2,4,["H8414"]],[4,7,["H7665"]],[7,8,["H3605"]],[8,9,["H1004"]],[9,12,["H5462"]],[12,18,["H4480","H935"]]]},{"k":18106,"v":[[0,4,["H6682"]],[4,5,["H5921"]],[5,6,["H3196"]],[6,9,["H2351"]],[9,10,["H3605"]],[10,11,["H8057"]],[11,13,["H6150"]],[13,15,["H4885"]],[15,18,["H776"]],[18,20,["H1540"]]]},{"k":18107,"v":[[0,3,["H5892"]],[3,5,["H7604"]],[5,6,["H8047"]],[6,9,["H8179"]],[9,11,["H3807"]],[11,13,["H7591"]]]},{"k":18108,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,5,["H1961"]],[5,8,["H7130"]],[8,11,["H776"]],[11,12,["H8432"]],[12,14,["H5971"]],[14,20,["H5363"]],[20,24,["H2132"]],[24,29,["H5955"]],[29,30,["H518"]],[30,32,["H1210"]],[32,34,["H3615"]]]},{"k":18109,"v":[[0,1,["H1992"]],[1,4,["H5375"]],[4,6,["H6963"]],[6,9,["H7442"]],[9,12,["H1347"]],[12,15,["H3068"]],[15,19,["H6670"]],[19,22,["H4480","H3220"]]]},{"k":18110,"v":[[0,1,["H5921","H3651"]],[1,2,["H3513"]],[2,5,["H3068"]],[5,8,["H217"]],[8,11,["H8034"]],[11,14,["H3068"]],[14,15,["H430"]],[15,17,["H3478"]],[17,20,["H339"]],[20,23,["H3220"]]]},{"k":18111,"v":[[0,4,["H4480","H3671"]],[4,7,["H776"]],[7,10,["H8085"]],[10,11,["H2158"]],[11,13,["H6643"]],[13,16,["H6662"]],[16,19,["H559"]],[19,21,["H7334"]],[21,23,["H7334"]],[23,24,["H188"]],[24,29,["H898"]],[29,32,["H898"]],[32,36,["H898"]],[36,40,["H898","H899"]]]},{"k":18112,"v":[[0,1,["H6343"]],[1,4,["H6354"]],[4,7,["H6341"]],[7,9,["H5921"]],[9,12,["H3427"]],[12,15,["H776"]]]},{"k":18113,"v":[[0,6,["H1961"]],[6,10,["H5127"]],[10,13,["H4480","H6963"]],[13,16,["H6343"]],[16,18,["H5307"]],[18,19,["H413"]],[19,21,["H6354"]],[21,26,["H5927"]],[26,30,["H4480","H8432"]],[30,33,["H6354"]],[33,36,["H3920"]],[36,39,["H6341"]],[39,40,["H3588"]],[40,42,["H699"]],[42,45,["H4480","H4791"]],[45,47,["H6605"]],[47,50,["H4146"]],[50,53,["H776"]],[53,55,["H7493"]]]},{"k":18114,"v":[[0,2,["H776"]],[2,6,["H7489","H7489"]],[6,8,["H776"]],[8,11,["H6565","H6565"]],[11,13,["H776"]],[13,16,["H4131","H4131"]]]},{"k":18115,"v":[[0,2,["H776"]],[2,7,["H5128","H5128"]],[7,10,["H7910"]],[10,14,["H5110"]],[14,17,["H4412"]],[17,20,["H6588"]],[20,24,["H3513"]],[24,25,["H5921"]],[25,30,["H5307"]],[30,32,["H3808"]],[32,33,["H6965"]],[33,34,["H3254"]]]},{"k":18116,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H3068"]],[12,14,["H6485","H5921"]],[14,16,["H6635"]],[16,20,["H4791"]],[20,24,["H4791"]],[24,27,["H4428"]],[27,30,["H127"]],[30,31,["H5921"]],[31,33,["H127"]]]},{"k":18117,"v":[[0,6,["H622"]],[6,8,["H616"]],[8,10,["H626"]],[10,11,["H5921"]],[11,13,["H953"]],[13,18,["H5462"]],[18,19,["H5921"]],[19,21,["H4525"]],[21,24,["H4480","H7230"]],[24,25,["H3117"]],[25,29,["H6485"]]]},{"k":18118,"v":[[0,3,["H3842"]],[3,6,["H2659"]],[6,9,["H2535"]],[9,10,["H954"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,15,["H6635"]],[15,17,["H4427"]],[17,19,["H2022"]],[19,20,["H6726"]],[20,23,["H3389"]],[23,25,["H5048"]],[25,27,["H2205"]],[27,28,["H3519"]]]},{"k":18119,"v":[[0,2,["H3068"]],[2,3,["H859"]],[3,6,["H430"]],[6,9,["H7311"]],[9,13,["H3034"]],[13,15,["H8034"]],[15,16,["H3588"]],[16,19,["H6213"]],[19,20,["H6382"]],[20,23,["H6098"]],[23,25,["H4480","H7350"]],[25,27,["H530"]],[27,29,["H544"]]]},{"k":18120,"v":[[0,1,["H3588"]],[1,4,["H7760"]],[4,7,["H4480","H5892"]],[7,9,["H1530"]],[9,12,["H1219"]],[12,13,["H7151"]],[13,15,["H4654"]],[15,17,["H759"]],[17,19,["H2114"]],[19,23,["H4480","H5892"]],[23,26,["H3808","H5769"]],[26,28,["H1129"]]]},{"k":18121,"v":[[0,1,["H5921","H3651"]],[1,4,["H5794"]],[4,5,["H5971"]],[5,6,["H3513"]],[6,9,["H7151"]],[9,12,["H6184"]],[12,13,["H1471"]],[13,15,["H3372"]],[15,16,[]]]},{"k":18122,"v":[[0,1,["H3588"]],[1,4,["H1961"]],[4,6,["H4581"]],[6,9,["H1800"]],[9,11,["H4581"]],[11,14,["H34"]],[14,17,["H6862"]],[17,19,["H4268"]],[19,22,["H4480","H2230"]],[22,24,["H6738"]],[24,27,["H4480","H2721"]],[27,28,["H3588"]],[28,30,["H7307"]],[30,34,["H6184"]],[34,38,["H2230"]],[38,41,["H7023"]]]},{"k":18123,"v":[[0,4,["H3665"]],[4,6,["H7588"]],[6,8,["H2114"]],[8,11,["H2721"]],[11,15,["H6724"]],[15,18,["H2721"]],[18,21,["H6738"]],[21,24,["H5645"]],[24,26,["H2159"]],[26,30,["H6184"]],[30,34,["H6030"]]]},{"k":18124,"v":[[0,3,["H2088"]],[3,4,["H2022"]],[4,7,["H3068"]],[7,9,["H6635"]],[9,10,["H6213"]],[10,12,["H3605"]],[12,13,["H5971"]],[13,15,["H4960"]],[15,18,["H8081"]],[18,20,["H4960"]],[20,25,["H8105"]],[25,28,["H8081"]],[28,31,["H4229"]],[31,36,["H8105"]],[36,38,["H2212"]]]},{"k":18125,"v":[[0,4,["H1104"]],[4,6,["H2088"]],[6,7,["H2022"]],[7,9,["H6440"]],[9,12,["H3875"]],[12,13,["H3874"]],[13,14,["H5921"]],[14,15,["H3605"]],[15,16,["H5971"]],[16,19,["H4541"]],[19,22,["H5259"]],[22,23,["H5921"]],[23,24,["H3605"]],[24,25,["H1471"]]]},{"k":18126,"v":[[0,4,["H1104"]],[4,5,["H4194"]],[5,7,["H5331"]],[7,10,["H136"]],[10,11,["H3069"]],[11,14,["H4229"]],[14,15,["H1832"]],[15,17,["H4480","H5921"]],[17,18,["H3605"]],[18,19,["H6440"]],[19,22,["H2781"]],[22,25,["H5971"]],[25,29,["H5493"]],[29,31,["H4480","H5921"]],[31,32,["H3605"]],[32,34,["H776"]],[34,35,["H3588"]],[35,37,["H3068"]],[37,39,["H1696"]],[39,40,[]]]},{"k":18127,"v":[[0,5,["H559"]],[5,7,["H1931"]],[7,8,["H3117"]],[8,9,["H2009"]],[9,10,["H2088"]],[10,13,["H430"]],[13,16,["H6960"]],[16,22,["H3467"]],[22,24,["H2088"]],[24,27,["H3068"]],[27,30,["H6960"]],[30,36,["H1523"]],[36,38,["H8055"]],[38,41,["H3444"]]]},{"k":18128,"v":[[0,1,["H3588"]],[1,3,["H2088"]],[3,4,["H2022"]],[4,7,["H3027"]],[7,10,["H3068"]],[10,11,["H5117"]],[11,13,["H4124"]],[13,17,["H1758"]],[17,18,["H8478"]],[18,22,["H4963"]],[22,25,["H1758"]],[25,28,["H4087"]]]},{"k":18129,"v":[[0,5,["H6566"]],[5,7,["H3027"]],[7,10,["H7130"]],[10,13,["H834"]],[13,16,["H7811"]],[16,18,["H6566"]],[18,22,["H7811"]],[22,27,["H8213"]],[27,29,["H1346"]],[29,31,["H5973"]],[31,33,["H698"]],[33,36,["H3027"]]]},{"k":18130,"v":[[0,3,["H4013"]],[3,7,["H4869"]],[7,10,["H2346"]],[10,14,["H7817"]],[14,16,["H8213"]],[16,18,["H5060"]],[18,21,["H776"]],[21,23,["H5704"]],[23,25,["H6083"]]]},{"k":18131,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H2088"]],[5,6,["H7892"]],[6,8,["H7891"]],[8,11,["H776"]],[11,13,["H3063"]],[13,17,["H5797"]],[17,18,["H5892"]],[18,19,["H3444"]],[19,22,["H7896"]],[22,24,["H2346"]],[24,26,["H2426"]]]},{"k":18132,"v":[[0,1,["H6605"]],[1,4,["H8179"]],[4,7,["H6662"]],[7,8,["H1471"]],[8,10,["H8104"]],[10,12,["H529"]],[12,15,["H935"]]]},{"k":18133,"v":[[0,3,["H5341"]],[3,7,["H7965","H7965"]],[7,9,["H3336"]],[9,11,["H5564"]],[11,14,["H3588"]],[14,16,["H982"]],[16,18,[]]]},{"k":18134,"v":[[0,1,["H982"]],[1,5,["H3068"]],[5,7,["H5704","H5703"]],[7,8,["H3588"]],[8,11,["H3050"]],[11,12,["H3068"]],[12,14,["H5769"]],[14,15,["H6697"]]]},{"k":18135,"v":[[0,1,["H3588"]],[1,4,["H7817"]],[4,7,["H3427"]],[7,9,["H4791"]],[9,11,["H7682"]],[11,12,["H7151"]],[12,16,["H8213"]],[16,20,["H8213"]],[20,22,["H5704"]],[22,24,["H776"]],[24,26,["H5060"]],[26,29,["H5704"]],[29,31,["H6083"]]]},{"k":18136,"v":[[0,2,["H7272"]],[2,6,["H7429"]],[6,9,["H7272"]],[9,12,["H6041"]],[12,15,["H6471"]],[15,18,["H1800"]]]},{"k":18137,"v":[[0,2,["H734"]],[2,5,["H6662"]],[5,7,["H4339"]],[7,10,["H3477"]],[10,12,["H6424"]],[12,14,["H4570"]],[14,17,["H6662"]]]},{"k":18138,"v":[[0,1,["H637"]],[1,4,["H734"]],[4,7,["H4941"]],[7,9,["H3068"]],[9,12,["H6960"]],[12,16,["H8378"]],[16,19,["H5315"]],[19,23,["H8034"]],[23,27,["H2143"]],[27,29,[]]]},{"k":18139,"v":[[0,3,["H5315"]],[3,6,["H183"]],[6,10,["H3915"]],[10,11,["H637"]],[11,14,["H7307"]],[14,15,["H7130"]],[15,21,["H7836"]],[21,22,["H3588"]],[22,23,["H834"]],[23,25,["H4941"]],[25,29,["H776"]],[29,31,["H3427"]],[31,34,["H8398"]],[34,36,["H3925"]],[36,37,["H6664"]]]},{"k":18140,"v":[[0,4,["H2603"]],[4,7,["H7563"]],[7,11,["H1077"]],[11,12,["H3925"]],[12,13,["H6664"]],[13,16,["H776"]],[16,18,["H5229"]],[18,22,["H5765"]],[22,25,["H1077"]],[25,26,["H7200"]],[26,28,["H1348"]],[28,31,["H3068"]]]},{"k":18141,"v":[[0,1,["H3068"]],[1,4,["H3027"]],[4,7,["H5375"]],[7,10,["H1077"]],[10,11,["H2372"]],[11,15,["H2372"]],[15,18,["H954"]],[18,21,["H7068"]],[21,24,["H5971"]],[24,25,["H637"]],[25,27,["H784"]],[27,30,["H6862"]],[30,32,["H398"]],[32,33,[]]]},{"k":18142,"v":[[0,1,["H3068"]],[1,4,["H8239"]],[4,5,["H7965"]],[5,8,["H3588"]],[8,10,["H1571"]],[10,12,["H6466"]],[12,13,["H3605"]],[13,15,["H4639"]],[15,17,[]]]},{"k":18143,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,6,["H113"]],[6,7,["H2108"]],[7,11,["H1166"]],[11,17,["H905"]],[17,21,["H2142"]],[21,24,["H8034"]]]},{"k":18144,"v":[[0,3,["H4191"]],[3,6,["H1077"]],[6,7,["H2421"]],[7,10,["H7496"]],[10,13,["H1077"]],[13,14,["H6965"]],[14,15,["H3651"]],[15,18,["H6485"]],[18,20,["H8045"]],[20,24,["H3605"]],[24,26,["H2143"]],[26,28,["H6"]]]},{"k":18145,"v":[[0,3,["H3254"]],[3,5,["H1471"]],[5,7,["H3068"]],[7,10,["H3254"]],[10,12,["H1471"]],[12,15,["H3513"]],[15,20,["H7368"]],[20,22,["H3605"]],[22,24,["H7099"]],[24,27,["H776"]]]},{"k":18146,"v":[[0,1,["H3068"]],[1,3,["H6862"]],[3,6,["H6485"]],[6,10,["H6694"]],[10,12,["H3908"]],[12,15,["H4148"]],[15,18,[]]]},{"k":18147,"v":[[0,2,["H3644"]],[2,6,["H2030"]],[6,9,["H7126"]],[9,14,["H3205"]],[14,17,["H2342"]],[17,20,["H2199"]],[20,23,["H2256"]],[23,24,["H3651"]],[24,27,["H1961"]],[27,30,["H4480","H6440"]],[30,32,["H3068"]]]},{"k":18148,"v":[[0,5,["H2029"]],[5,10,["H2342"]],[10,15,["H3644"]],[15,17,["H3205"]],[17,18,["H7307"]],[18,21,["H1077"]],[21,22,["H6213"]],[22,24,["H3444"]],[24,27,["H776"]],[27,28,["H1077"]],[28,31,["H3427"]],[31,34,["H8398"]],[34,35,["H5307"]]]},{"k":18149,"v":[[0,2,["H4191"]],[2,5,["H2421"]],[5,10,["H5038"]],[10,13,["H6965"]],[13,14,["H6974"]],[14,16,["H7442"]],[16,19,["H7931"]],[19,21,["H6083"]],[21,22,["H3588"]],[22,24,["H2919"]],[24,28,["H2919"]],[28,30,["H219"]],[30,33,["H776"]],[33,36,["H5307"]],[36,38,["H7496"]]]},{"k":18150,"v":[[0,1,["H1980"]],[1,3,["H5971"]],[3,4,["H935"]],[4,8,["H2315"]],[8,10,["H5462"]],[10,12,["H1817"]],[12,13,["H1157"]],[13,15,["H2247"]],[15,22,["H4592"]],[22,23,["H7281"]],[23,24,["H5704"]],[24,26,["H2195"]],[26,28,["H5674"]]]},{"k":18151,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H3068"]],[4,5,["H3318"]],[5,9,["H4480","H4725"]],[9,11,["H6485"]],[11,13,["H3427"]],[13,16,["H776"]],[16,19,["H5771"]],[19,21,["H776"]],[21,24,["H1540","(H853)"]],[24,26,["H1818"]],[26,29,["H3808"]],[29,30,["H5750"]],[30,31,["H3680","H5921"]],[31,33,["H2026"]]]},{"k":18152,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H3068"]],[5,8,["H7186"]],[8,10,["H1419"]],[10,12,["H2389"]],[12,13,["H2719"]],[13,15,["H6485","H5921"]],[15,16,["H3882"]],[16,18,["H1281"]],[18,19,["H5175"]],[19,21,["H3882"]],[21,23,["H6129"]],[23,24,["H5175"]],[24,28,["H2026","(H853)"]],[28,30,["H8577"]],[30,31,["H834"]],[31,35,["H3220"]]]},{"k":18153,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,4,["H6031"]],[4,9,["H3754"]],[9,12,["H2531"]]]},{"k":18154,"v":[[0,1,["H589"]],[1,3,["H3068"]],[3,5,["H5341"]],[5,9,["H8248"]],[9,12,["H7281"]],[12,13,["H6435"]],[13,15,["H6485","H5921"]],[15,19,["H5341"]],[19,21,["H3915"]],[21,23,["H3117"]]]},{"k":18155,"v":[[0,1,["H2534"]],[1,3,["H369"]],[3,6,["H4310"]],[6,8,["H5414"]],[8,10,["H8068"]],[10,12,["H7898"]],[12,16,["H4421"]],[16,19,["H6585"]],[19,24,["H6702"]],[24,26,["H3162"]]]},{"k":18156,"v":[[0,1,["H176"]],[1,5,["H2388"]],[5,8,["H4581"]],[8,12,["H6213"]],[12,13,["H7965"]],[13,19,["H6213"]],[19,20,["H7965"]],[20,22,[]]]},{"k":18157,"v":[[0,6,["H935"]],[6,8,["H3290"]],[8,11,["H8327"]],[11,12,["H3478"]],[12,14,["H6692"]],[14,16,["H6524"]],[16,18,["H4390"]],[18,20,["H6440"]],[20,23,["H8398"]],[23,25,["H8570"]]]},{"k":18158,"v":[[0,3,["H5221"]],[3,7,["H4347"]],[7,10,["H5221"]],[10,15,["H2026"]],[15,19,["H2027"]],[19,24,["H2026"]],[24,26,[]]]},{"k":18159,"v":[[0,2,["H5432"]],[2,6,["H7971"]],[6,9,["H7378"]],[9,13,["H1898"]],[13,15,["H7186"]],[15,16,["H7307"]],[16,19,["H3117"]],[19,23,["H6921"]]]},{"k":18160,"v":[[0,2,["H2063"]],[2,3,["H3651"]],[3,6,["H5771"]],[6,8,["H3290"]],[8,10,["H3722"]],[10,12,["H2088"]],[12,14,["H3605"]],[14,16,["H6529"]],[16,19,["H5493"]],[19,21,["H2403"]],[21,24,["H7760"]],[24,25,["H3605"]],[25,27,["H68"]],[27,30,["H4196"]],[30,32,["H68","H1615"]],[32,37,["H5310"]],[37,39,["H842"]],[39,41,["H2553"]],[41,43,["H3808"]],[43,45,["H6965"]]]},{"k":18161,"v":[[0,1,["H3588"]],[1,3,["H1219"]],[3,4,["H5892"]],[4,7,["H910"]],[7,10,["H5116"]],[10,11,["H7971"]],[11,13,["H5800"]],[13,16,["H4057"]],[16,17,["H8033"]],[17,20,["H5695"]],[20,21,["H7462"]],[21,23,["H8033"]],[23,27,["H7257"]],[27,29,["H3615"]],[29,31,["H5585"]],[31,32,[]]]},{"k":18162,"v":[[0,3,["H7105"]],[3,6,["H3001"]],[6,11,["H7665"]],[11,13,["H802"]],[13,14,["H935"]],[14,19,["H215","(H853)"]],[19,20,["H3588"]],[20,24,["H5971"]],[24,26,["H3808"]],[26,27,["H998"]],[27,28,["H5921","H3651"]],[28,29,["H1931"]],[29,31,["H6213"]],[31,34,["H3808"]],[34,36,["H7355"]],[36,42,["H3335"]],[42,48,["H2603","H3808"]]]},{"k":18163,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H3068"]],[12,15,["H2251"]],[15,18,["H4480","H7641"]],[18,21,["H5104"]],[21,22,["H5704"]],[22,24,["H5158"]],[24,26,["H4714"]],[26,28,["H859"]],[28,31,["H3950"]],[31,32,["H259"]],[32,34,["H259"]],[34,37,["H1121"]],[37,39,["H3478"]]]},{"k":18164,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H1419"]],[12,13,["H7782"]],[13,16,["H8628"]],[16,20,["H935"]],[20,25,["H6"]],[25,28,["H776"]],[28,30,["H804"]],[30,33,["H5080"]],[33,36,["H776"]],[36,38,["H4714"]],[38,41,["H7812"]],[41,43,["H3068"]],[43,46,["H6944"]],[46,47,["H2022"]],[47,49,["H3389"]]]},{"k":18165,"v":[[0,1,["H1945"]],[1,4,["H5850"]],[4,6,["H1348"]],[6,9,["H7910"]],[9,11,["H669"]],[11,13,["H6643"]],[13,14,["H8597"]],[14,17,["H5034"]],[17,18,["H6731"]],[18,19,["H834"]],[19,21,["H5921"]],[21,23,["H7218"]],[23,26,["H8081"]],[26,27,["H1516"]],[27,32,["H1986"]],[32,34,["H3196"]]]},{"k":18166,"v":[[0,1,["H2009"]],[1,3,["H136"]],[3,6,["H2389"]],[6,9,["H533"]],[9,13,["H2230"]],[13,15,["H1259"]],[15,18,["H6986"]],[18,19,["H8178"]],[19,22,["H2230"]],[22,24,["H3524"]],[24,25,["H4325"]],[25,26,["H7857"]],[26,29,["H5117"]],[29,32,["H776"]],[32,35,["H3027"]]]},{"k":18167,"v":[[0,2,["H5850"]],[2,4,["H1348"]],[4,6,["H7910"]],[6,8,["H669"]],[8,11,["H7429"]],[11,13,["H7272"]]]},{"k":18168,"v":[[0,3,["H6643"]],[3,4,["H8597"]],[4,5,["H834"]],[5,7,["H5921"]],[7,9,["H7218"]],[9,12,["H8081"]],[12,13,["H1516"]],[13,15,["H1961"]],[15,17,["H5034"]],[17,18,["H6733"]],[18,23,["H1061"]],[23,24,["H2962"]],[24,26,["H7019"]],[26,27,["H834"]],[27,31,["H7200"]],[31,34,["H7200"]],[34,38,["H5750"]],[38,41,["H3709"]],[41,45,["H1104"]]]},{"k":18169,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H3068"]],[6,8,["H6635"]],[8,9,["H1961"]],[9,12,["H5850"]],[12,14,["H6643"]],[14,18,["H6843"]],[18,20,["H8597"]],[20,23,["H7605"]],[23,26,["H5971"]]]},{"k":18170,"v":[[0,4,["H7307"]],[4,6,["H4941"]],[6,10,["H3427"]],[10,11,["H5921"]],[11,12,["H4941"]],[12,15,["H1369"]],[15,19,["H7725"]],[19,21,["H4421"]],[21,24,["H8179"]]]},{"k":18171,"v":[[0,2,["H428"]],[2,3,["H1571"]],[3,5,["H7686"]],[5,7,["H3196"]],[7,11,["H7941"]],[11,16,["H8582"]],[16,18,["H3548"]],[18,21,["H5030"]],[21,23,["H7686"]],[23,26,["H7941"]],[26,30,["H1104"]],[30,31,["H4480"]],[31,32,["H3196"]],[32,38,["H8582"]],[38,39,["H4480"]],[39,41,["H7941"]],[41,43,["H7686"]],[43,45,["H7203"]],[45,47,["H6328"]],[47,49,["H6417"]]]},{"k":18172,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,3,["H7979"]],[3,5,["H4390"]],[5,7,["H6892"]],[7,9,["H6675"]],[9,14,["H1097"]],[14,15,["H4725"]],[15,16,[]]]},{"k":18173,"v":[[0,0,["(H853)"]],[0,1,["H4310"]],[1,4,["H3384"]],[4,5,["H1844"]],[5,7,["H4310"]],[7,12,["H995"]],[12,13,["H8052"]],[13,17,["H1580"]],[17,20,["H4480","H2461"]],[20,22,["H6267"]],[22,25,["H4480","H7699"]]]},{"k":18174,"v":[[0,1,["H3588"]],[1,2,["H6673"]],[2,6,["H6673"]],[6,7,["H6673"]],[7,9,["H6673"]],[9,10,["H6957"]],[10,12,["H6957"]],[12,13,["H6957"]],[13,15,["H6957"]],[15,16,["H8033"]],[16,18,["H2191"]],[18,20,["H8033"]],[20,22,["H2191"]]]},{"k":18175,"v":[[0,1,["H3588"]],[1,3,["H3934"]],[3,4,["H8193"]],[4,6,["H312"]],[6,7,["H3956"]],[7,10,["H1696"]],[10,11,["H413"]],[11,12,["H2088"]],[12,13,["H5971"]]]},{"k":18176,"v":[[0,1,["H413"]],[1,2,["H834"]],[2,4,["H559"]],[4,5,["H2063"]],[5,8,["H4496"]],[8,14,["H5889"]],[14,16,["H5117"]],[16,18,["H2063"]],[18,21,["H4774"]],[21,24,["H14"]],[24,25,["H3808"]],[25,26,["H8085"]]]},{"k":18177,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,10,["H6673"]],[10,12,["H6673"]],[12,13,["H6673"]],[13,15,["H6673"]],[15,16,["H6957"]],[16,18,["H6957"]],[18,19,["H6957"]],[19,21,["H6957"]],[21,22,["H8033"]],[22,24,["H2191"]],[24,26,["H8033"]],[26,28,["H2191"]],[28,29,["H4616"]],[29,32,["H1980"]],[32,34,["H3782"]],[34,35,["H268"]],[35,38,["H7665"]],[38,40,["H3369"]],[40,42,["H3920"]]]},{"k":18178,"v":[[0,1,["H3651"]],[1,2,["H8085"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,9,["H3944"]],[9,10,["H376"]],[10,12,["H4910"]],[12,13,["H2088"]],[13,14,["H5971"]],[14,15,["H834"]],[15,18,["H3389"]]]},{"k":18179,"v":[[0,1,["H3588"]],[1,4,["H559"]],[4,7,["H3772"]],[7,9,["H1285"]],[9,10,["H854"]],[10,11,["H4194"]],[11,13,["H5973"]],[13,14,["H7585"]],[14,17,["H6213"]],[17,18,["H2374"]],[18,19,["H3588"]],[19,21,["H7857"]],[21,22,["H7752"]],[22,25,["H5674"]],[25,28,["H3808"]],[28,29,["H935"]],[29,32,["H3588"]],[32,35,["H7760"]],[35,36,["H3577"]],[36,38,["H4268"]],[38,41,["H8267"]],[41,45,["H5641"]]]},{"k":18180,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,9,["H3245"]],[9,11,["H6726"]],[11,14,["H3245"]],[14,16,["H68"]],[16,18,["H976"]],[18,19,["H68"]],[19,21,["H3368"]],[21,22,["H6438"]],[22,25,["H3245"]],[25,26,["H4143"]],[26,29,["H539"]],[29,31,["H3808"]],[31,33,["H2363"]]]},{"k":18181,"v":[[0,1,["H4941"]],[1,5,["H7760"]],[5,8,["H6957"]],[8,10,["H6666"]],[10,13,["H4949"]],[13,16,["H1259"]],[16,19,["H3261"]],[19,21,["H4268"]],[21,23,["H3577"]],[23,26,["H4325"]],[26,28,["H7857"]],[28,31,["H5643"]]]},{"k":18182,"v":[[0,3,["H1285"]],[3,4,["H854"]],[4,5,["H4194"]],[5,8,["H3722"]],[8,11,["H2380"]],[11,12,["H854"]],[12,13,["H7585"]],[13,15,["H3808"]],[15,16,["H6965"]],[16,17,["H3588"]],[17,19,["H7857"]],[19,20,["H7752"]],[20,23,["H5674"]],[23,27,["H1961"]],[27,29,["H4823"]],[29,31,[]]]},{"k":18183,"v":[[0,3,["H4480","H1767"]],[3,7,["H5674"]],[7,10,["H3947"]],[10,12,["H3588"]],[12,13,["H1242"]],[13,15,["H1242"]],[15,19,["H5674"]],[19,21,["H3117"]],[21,24,["H3915"]],[24,28,["H1961"]],[28,30,["H2113"]],[30,31,["H7535"]],[31,33,["H995"]],[33,35,["H8052"]]]},{"k":18184,"v":[[0,1,["H3588"]],[1,3,["H4702"]],[3,5,["H7114"]],[5,12,["H4480","H8311"]],[12,17,["H4541"]],[17,18,["H6887"]],[18,24,["H3664"]],[24,26,[]]]},{"k":18185,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,6,["H6965"]],[6,9,["H2022"]],[9,10,["H6559"]],[10,14,["H7264"]],[14,18,["H6010"]],[18,20,["H1391"]],[20,24,["H6213"]],[24,26,["H4639"]],[26,28,["H2114"]],[28,29,["H4639"]],[29,33,["H5647"]],[33,35,["H5656"]],[35,37,["H5237"]],[37,38,["H5656"]]]},{"k":18186,"v":[[0,1,["H6258"]],[1,6,["H3887","H408"]],[6,7,["H6435"]],[7,9,["H4147"]],[9,12,["H2388"]],[12,13,["H3588"]],[13,16,["H8085"]],[16,17,["H4480","H854"]],[17,19,["H136"]],[19,20,["H3069"]],[20,22,["H6635"]],[22,24,["H3617"]],[24,26,["H2782"]],[26,27,["H5921"]],[27,29,["H3605"]],[29,30,["H776"]]]},{"k":18187,"v":[[0,3,["H238"]],[3,5,["H8085"]],[5,7,["H6963"]],[7,8,["H7181"]],[8,10,["H8085"]],[10,12,["H565"]]]},{"k":18188,"v":[[0,3,["H2790"]],[3,4,["H2790"]],[4,5,["H3605"]],[5,6,["H3117"]],[6,8,["H2232"]],[8,11,["H6605"]],[11,15,["H7702"]],[15,18,["H127"]]]},{"k":18189,"v":[[0,1,["H518"]],[1,5,["H7737"]],[5,7,["H6440"]],[7,11,["H3808"]],[11,13,["H6327"]],[13,15,["H7100"]],[15,17,["H2236"]],[17,19,["H3646"]],[19,21,["H7760"]],[21,24,["H7795"]],[24,25,["H2406"]],[25,28,["H5567"]],[28,29,["H8184"]],[29,32,["H3698"]],[32,35,["H1367"]]]},{"k":18190,"v":[[0,3,["H430"]],[3,5,["H3256"]],[5,8,["H4941"]],[8,11,["H3384"]],[11,12,[]]]},{"k":18191,"v":[[0,1,["H3588"]],[1,3,["H7100"]],[3,5,["H3808"]],[5,6,["H1758"]],[6,10,["H2742"]],[10,14,["H5699"]],[14,15,["H212"]],[15,16,["H5437"]],[16,18,["H5921"]],[18,20,["H3646"]],[20,21,["H3588"]],[21,23,["H7100"]],[23,26,["H2251"]],[26,29,["H4294"]],[29,32,["H3646"]],[32,35,["H7626"]]]},{"k":18192,"v":[[0,1,["H3899"]],[1,4,["H1854"]],[4,5,["H3588"]],[5,8,["H3808"]],[8,9,["H5331"]],[9,11,["H1758"]],[11,14,["H2000"]],[14,18,["H1536"]],[18,21,["H5699"]],[21,22,["H3808"]],[22,23,["H1854"]],[23,27,["H6571"]]]},{"k":18193,"v":[[0,1,["H2063"]],[1,2,["H1571"]],[2,4,["H3318"]],[4,5,["H4480","H5973"]],[5,7,["H3068"]],[7,9,["H6635"]],[9,12,["H6381"]],[12,14,["H6098"]],[14,16,["H1431"]],[16,18,["H8454"]]]},{"k":18194,"v":[[0,1,["H1945"]],[1,3,["H740"]],[3,5,["H740"]],[5,7,["H7151"]],[7,9,["H1732"]],[9,10,["H2583"]],[10,11,["H5595"]],[11,13,["H8141"]],[13,14,["H5921"]],[14,15,["H8141"]],[15,18,["H5362"]],[18,19,["H2282"]]]},{"k":18195,"v":[[0,4,["H6693"]],[4,5,["H740"]],[5,9,["H1961"]],[9,10,["H8386"]],[10,12,["H592"]],[12,16,["H1961"]],[16,20,["H740"]]]},{"k":18196,"v":[[0,4,["H2583"]],[4,5,["H5921"]],[5,8,["H1754"]],[8,12,["H6696"]],[12,13,["H5921"]],[13,17,["H4674"]],[17,21,["H6965"]],[21,22,["H4694"]],[22,23,["H5921"]],[23,24,[]]]},{"k":18197,"v":[[0,6,["H8213"]],[6,9,["H1696"]],[9,13,["H4480","H776"]],[13,16,["H565"]],[16,19,["H7817"]],[19,23,["H4480","H6083"]],[23,26,["H6963"]],[26,28,["H1961"]],[28,36,["H178"]],[36,40,["H4480","H776"]],[40,43,["H565"]],[43,45,["H6850"]],[45,49,["H4480","H6083"]]]},{"k":18198,"v":[[0,3,["H1995"]],[3,6,["H2114"]],[6,8,["H1961"]],[8,10,["H1851"]],[10,11,["H80"]],[11,14,["H1995"]],[14,18,["H6184"]],[18,22,["H4671"]],[22,25,["H5674"]],[25,29,["H1961"]],[29,32,["H6621"]],[32,33,["H6597"]]]},{"k":18199,"v":[[0,4,["H6485"]],[4,5,["H4480","H5973"]],[5,7,["H3068"]],[7,9,["H6635"]],[9,11,["H7482"]],[11,14,["H7494"]],[14,16,["H1419"]],[16,17,["H6963"]],[17,19,["H5492"]],[19,21,["H5591"]],[21,24,["H3851"]],[24,26,["H398"]],[26,27,["H784"]]]},{"k":18200,"v":[[0,3,["H1995"]],[3,5,["H3605"]],[5,7,["H1471"]],[7,9,["H6633"]],[9,10,["H5921"]],[10,11,["H740"]],[11,13,["H3605"]],[13,15,["H6633"]],[15,20,["H4685"]],[20,23,["H6693"]],[23,26,["H1961"]],[26,29,["H2472"]],[29,32,["H3915"]],[32,33,["H2377"]]]},{"k":18201,"v":[[0,4,["H1961"]],[4,6,["H834"]],[6,8,["H7457"]],[8,10,["H2492"]],[10,12,["H2009"]],[12,14,["H398"]],[14,17,["H6974"]],[17,20,["H5315"]],[20,22,["H7386"]],[22,25,["H834"]],[25,28,["H6771"]],[28,29,["H2492"]],[29,31,["H2009"]],[31,33,["H8354"]],[33,36,["H6974"]],[36,38,["H2009"]],[38,41,["H5889"]],[41,44,["H5315"]],[44,46,["H8264"]],[46,47,["H3651"]],[47,50,["H1995"]],[50,52,["H3605"]],[52,54,["H1471"]],[54,55,["H1961"]],[55,57,["H6633"]],[57,58,["H5921"]],[58,59,["H2022"]],[59,60,["H6726"]]]},{"k":18202,"v":[[0,2,["H4102"]],[2,4,["H8539"]],[4,7,["H8173"]],[7,9,["H8173"]],[9,12,["H7937"]],[12,14,["H3808"]],[14,16,["H3196"]],[16,18,["H5128"]],[18,20,["H3808"]],[20,23,["H7941"]]]},{"k":18203,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,6,["H5258"]],[6,7,["H5921"]],[7,10,["H7307"]],[10,13,["H8639"]],[13,16,["H6105","(H853)"]],[16,18,["H5869","(H853)"]],[18,20,["H5030"]],[20,23,["H7218"]],[23,25,["H2374"]],[25,28,["H3680"]]]},{"k":18204,"v":[[0,3,["H2380"]],[3,5,["H3605"]],[5,7,["H1961"]],[7,12,["H1697"]],[12,15,["H5612"]],[15,18,["H2856"]],[18,19,["H834"]],[19,21,["H5414"]],[21,22,["H413"]],[22,26,["H3045","H5612"]],[26,27,["H559"]],[27,28,["H7121"]],[28,29,["H2088"]],[29,32,["H4994"]],[32,35,["H559"]],[35,37,["H3201","H3808"]],[37,38,["H3588"]],[38,39,["H1931"]],[39,41,["H2856"]]]},{"k":18205,"v":[[0,3,["H5612"]],[3,5,["H5414"]],[5,6,["H5921"]],[6,8,["H834"]],[8,11,["H3045","H3808","H5612"]],[11,12,["H559"]],[12,13,["H7121"]],[13,14,["H2088"]],[14,17,["H4994"]],[17,20,["H559"]],[20,24,["H3045","H3808","H5612"]]]},{"k":18206,"v":[[0,3,["H136"]],[3,4,["H559"]],[4,5,["H3282","H3588"]],[5,7,["H2088"]],[7,8,["H5971"]],[8,10,["H5066"]],[10,14,["H6310"]],[14,18,["H8193"]],[18,20,["H3513"]],[20,27,["H7368","H3820"]],[27,28,["H4480"]],[28,32,["H3374"]],[32,33,["H854"]],[33,35,["H1961"]],[35,36,["H3925"]],[36,39,["H4687"]],[39,41,["H376"]]]},{"k":18207,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,5,["H3254"]],[5,10,["H6381"]],[10,11,["H854"]],[11,12,["H2088"]],[12,13,["H5971"]],[13,17,["H6381"]],[17,20,["H6382"]],[20,23,["H2451"]],[23,26,["H2450"]],[26,29,["H6"]],[29,32,["H998"]],[32,35,["H995"]],[35,39,["H5641"]]]},{"k":18208,"v":[[0,1,["H1945"]],[1,6,["H6009"]],[6,8,["H5641"]],[8,10,["H6098"]],[10,13,["H4480","H3068"]],[13,16,["H4639"]],[16,17,["H1961"]],[17,20,["H4285"]],[20,23,["H559"]],[23,24,["H4310"]],[24,25,["H7200"]],[25,28,["H4310"]],[28,29,["H3045"]],[29,30,[]]]},{"k":18209,"v":[[0,1,["H518"]],[1,7,["H2017"]],[7,10,["H2803"]],[10,13,["H3335"]],[13,14,["H2563"]],[14,15,["H3588"]],[15,18,["H4639"]],[18,19,["H559"]],[19,23,["H6213"]],[23,26,["H6213"]],[26,28,["H3808"]],[28,33,["H3336"]],[33,34,["H559"]],[34,38,["H3335"]],[38,43,["H995","H3808"]]]},{"k":18210,"v":[[0,3,["H3808"]],[3,4,["H5750"]],[4,6,["H4213"]],[6,8,["H4592"]],[8,10,["H3844"]],[10,13,["H7725"]],[13,17,["H3759"]],[17,21,["H3759"]],[21,24,["H2803"]],[24,27,["H3293"]]]},{"k":18211,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,7,["H2795"]],[7,8,["H8085"]],[8,10,["H1697"]],[10,13,["H5612"]],[13,16,["H5869"]],[16,19,["H5787"]],[19,21,["H7200"]],[21,24,["H4480","H652"]],[24,28,["H4480","H2822"]]]},{"k":18212,"v":[[0,2,["H6035"]],[2,5,["H3254"]],[5,7,["H8057"]],[7,10,["H3068"]],[10,13,["H34"]],[13,15,["H120"]],[15,17,["H1523"]],[17,21,["H6918"]],[21,23,["H3478"]]]},{"k":18213,"v":[[0,1,["H3588"]],[1,4,["H6184"]],[4,8,["H656"]],[8,11,["H3887"]],[11,13,["H3615"]],[13,15,["H3605"]],[15,17,["H8245"]],[17,19,["H205"]],[19,22,["H3772"]]]},{"k":18214,"v":[[0,6,["H2398","H120"]],[6,9,["H1697"]],[9,13,["H6983"]],[13,17,["H3198"]],[17,20,["H8179"]],[20,23,["H5186"]],[23,25,["H6662"]],[25,30,["H8414"]]]},{"k":18215,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H834"]],[6,7,["H6299","(H853)"]],[7,8,["H85"]],[8,9,["H413"]],[9,11,["H1004"]],[11,13,["H3290"]],[13,14,["H3290"]],[14,16,["H3808"]],[16,17,["H6258"]],[17,19,["H954"]],[19,20,["H3808"]],[20,23,["H6440"]],[23,24,["H6258"]],[24,26,["H2357"]]]},{"k":18216,"v":[[0,2,["H3588"]],[2,4,["H7200"]],[4,6,["H3206"]],[6,8,["H4639"]],[8,11,["H3027"]],[11,14,["H7130"]],[14,19,["H6942"]],[19,21,["H8034"]],[21,23,["H6942","(H853)"]],[23,26,["H6918"]],[26,28,["H3290"]],[28,31,["H6206"]],[31,33,["H430"]],[33,35,["H3478"]]]},{"k":18217,"v":[[0,4,["H8582"]],[4,6,["H7307"]],[6,8,["H3045"]],[8,10,["H998"]],[10,14,["H7279"]],[14,16,["H3925"]],[16,17,["H3948"]]]},{"k":18218,"v":[[0,1,["H1945"]],[1,4,["H5637"]],[4,5,["H1121"]],[5,6,["H5002"]],[6,8,["H3068"]],[8,10,["H6213"]],[10,11,["H6098"]],[11,13,["H3808"]],[13,14,["H4480"]],[14,18,["H5258"]],[18,21,["H4541"]],[21,23,["H3808"]],[23,26,["H7307"]],[26,27,["H4616"]],[27,30,["H5595"]],[30,31,["H2403"]],[31,32,["H5921"]],[32,33,["H2403"]]]},{"k":18219,"v":[[0,2,["H1980"]],[2,5,["H3381"]],[5,7,["H4714"]],[7,10,["H3808"]],[10,11,["H7592"]],[11,14,["H6310"]],[14,16,["H5810"]],[16,20,["H4581"]],[20,22,["H6547"]],[22,25,["H2620"]],[25,28,["H6738"]],[28,30,["H4714"]]]},{"k":18220,"v":[[0,4,["H4581"]],[4,6,["H6547"]],[6,7,["H1961"]],[7,9,["H1322"]],[9,12,["H2622"]],[12,15,["H6738"]],[15,17,["H4714"]],[17,19,["H3639"]]]},{"k":18221,"v":[[0,1,["H3588"]],[1,3,["H8269"]],[3,4,["H1961"]],[4,6,["H6814"]],[6,9,["H4397"]],[9,10,["H5060"]],[10,12,["H2609"]]]},{"k":18222,"v":[[0,3,["H3605"]],[3,4,["H954"]],[4,5,["H5921"]],[5,7,["H5971"]],[7,10,["H3808"]],[10,11,["H3276"]],[11,13,["H3808"]],[13,16,["H5828"]],[16,17,["H3808"]],[17,18,["H3276"]],[18,19,["H3588"]],[19,21,["H1322"]],[21,23,["H1571"]],[23,25,["H2781"]]]},{"k":18223,"v":[[0,2,["H4853"]],[2,5,["H929"]],[5,8,["H5045"]],[8,11,["H776"]],[11,13,["H6869"]],[13,15,["H6695"]],[15,16,["H4480"]],[16,20,["H3833"]],[20,23,["H3918"]],[23,25,["H660"]],[25,29,["H8314","H5774"]],[29,32,["H5375"]],[32,34,["H2428"]],[34,35,["H5921"]],[35,37,["H3802"]],[37,40,["H5895"]],[40,43,["H214"]],[43,44,["H5921"]],[44,46,["H1707"]],[46,48,["H1581"]],[48,49,["H5921"]],[49,51,["H5971"]],[51,54,["H3808"]],[54,55,["H3276"]],[55,56,[]]]},{"k":18224,"v":[[0,3,["H4714"]],[3,5,["H5826"]],[5,7,["H1892"]],[7,11,["H7385"]],[11,12,["H3651"]],[12,15,["H7121"]],[15,17,["H2063"]],[17,19,["H7293"]],[19,23,["H7674"]]]},{"k":18225,"v":[[0,1,["H6258"]],[1,2,["H935"]],[2,3,["H3789"]],[3,5,["H854"]],[5,7,["H5921"]],[7,9,["H3871"]],[9,11,["H2710"]],[11,13,["H5921"]],[13,15,["H5612"]],[15,19,["H1961"]],[19,22,["H3117"]],[22,24,["H314"]],[24,26,["H5703"]],[26,28,["H5704","H5769"]]]},{"k":18226,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,5,["H4805"]],[5,6,["H5971"]],[6,7,["H3586"]],[7,8,["H1121"]],[8,9,["H1121"]],[9,11,["H14"]],[11,12,["H3808"]],[12,13,["H8085"]],[13,15,["H8451"]],[15,18,["H3068"]]]},{"k":18227,"v":[[0,1,["H834"]],[1,2,["H559"]],[2,5,["H7200"]],[5,6,["H7200"]],[6,7,["H3808"]],[7,11,["H2374"]],[11,12,["H2372"]],[12,13,["H3808"]],[13,17,["H5229"]],[17,18,["H1696"]],[18,22,["H2513"]],[22,23,["H2372"]],[23,24,["H4123"]]]},{"k":18228,"v":[[0,1,["H5493"]],[1,4,["H4480"]],[4,6,["H1870"]],[6,8,["H5186"]],[8,10,["H4480"]],[10,12,["H734"]],[12,13,["(H853)"]],[13,16,["H6918"]],[16,18,["H3478"]],[18,20,["H7673"]],[20,22,["H4480","H6440"]],[22,23,[]]]},{"k":18229,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,6,["H6918"]],[6,8,["H3478"]],[8,9,["H3282"]],[9,11,["H3988"]],[11,12,["H2088"]],[12,13,["H1697"]],[13,15,["H982"]],[15,17,["H6233"]],[17,19,["H3868"]],[19,21,["H8172"]],[21,22,["H5921"]]]},{"k":18230,"v":[[0,1,["H3651"]],[1,2,["H2088"]],[2,3,["H5771"]],[3,5,["H1961"]],[5,10,["H6556"]],[10,13,["H5307"]],[13,15,["H1158"]],[15,18,["H7682"]],[18,19,["H2346"]],[19,20,["H834"]],[20,21,["H7667"]],[21,22,["H935"]],[22,23,["H6597"]],[23,26,["H6621"]]]},{"k":18231,"v":[[0,4,["H7665"]],[4,8,["H7667"]],[8,11,["H3335"]],[11,12,["H5035"]],[12,17,["H3807"]],[17,20,["H3808"]],[20,21,["H2550"]],[21,26,["H3808"]],[26,28,["H4672"]],[28,31,["H4386"]],[31,35,["H2789"]],[35,37,["H2846"]],[37,38,["H784"]],[38,41,["H4480","H3344"]],[41,44,["H2834"]],[44,45,["H4325"]],[45,50,["H4480","H1360"]]]},{"k":18232,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,9,["H6918"]],[9,11,["H3478"]],[11,13,["H7729"]],[13,15,["H5183"]],[15,19,["H3467"]],[19,21,["H8252"]],[21,24,["H985"]],[24,26,["H1961"]],[26,28,["H1369"]],[28,31,["H14"]],[31,32,["H3808"]]]},{"k":18233,"v":[[0,3,["H559"]],[3,4,["H3808"]],[4,5,["H3588"]],[5,8,["H5127"]],[8,9,["H5921"]],[9,10,["H5483"]],[10,11,["H5921","H3651"]],[11,14,["H5127"]],[14,18,["H7392"]],[18,19,["H5921"]],[19,21,["H7031"]],[21,22,["H5921","H3651"]],[22,26,["H7291"]],[26,29,["H7043"]]]},{"k":18234,"v":[[0,1,["H259"]],[1,2,["H505"]],[2,5,["H4480","H6440"]],[5,7,["H1606"]],[7,9,["H259"]],[9,10,["H4480","H6440"]],[10,12,["H1606"]],[12,14,["H2568"]],[14,17,["H5127"]],[17,18,["H5704","H518"]],[18,21,["H3498"]],[21,24,["H8650"]],[24,25,["H5921"]],[25,27,["H7218"]],[27,30,["H2022"]],[30,34,["H5251"]],[34,35,["H5921"]],[35,37,["H1389"]]]},{"k":18235,"v":[[0,2,["H3651"]],[2,5,["H3068"]],[5,6,["H2442"]],[6,11,["H2603"]],[11,15,["H3651"]],[15,19,["H7311"]],[19,24,["H7355"]],[24,27,["H3588"]],[27,29,["H3068"]],[29,32,["H430"]],[32,34,["H4941"]],[34,35,["H835"]],[35,37,["H3605"]],[37,40,["H2442"]],[40,42,[]]]},{"k":18236,"v":[[0,1,["H3588"]],[1,3,["H5971"]],[3,5,["H3427"]],[5,7,["H6726"]],[7,9,["H3389"]],[9,14,["H1058","H1058","H3808"]],[14,19,["H2603","H2603"]],[19,24,["H6963"]],[24,27,["H2199"]],[27,31,["H8085"]],[31,35,["H6030"]],[35,36,[]]]},{"k":18237,"v":[[0,4,["H136"]],[4,5,["H5414"]],[5,8,["H3899"]],[8,10,["H6862"]],[10,13,["H4325"]],[13,15,["H3906"]],[15,18,["H3808"]],[18,20,["H3384"]],[20,25,["H3670"]],[25,27,["H5750"]],[27,30,["H5869"]],[30,31,["H1961"]],[31,32,["H7200","(H853)"]],[32,34,["H3384"]]]},{"k":18238,"v":[[0,3,["H241"]],[3,5,["H8085"]],[5,7,["H1697"]],[7,8,["H4480","H310"]],[8,10,["H559"]],[10,11,["H2088"]],[11,14,["H1870"]],[14,15,["H1980"]],[15,19,["H3588"]],[19,25,["H541"]],[25,27,["H3588"]],[27,32,["H8041"]]]},{"k":18239,"v":[[0,3,["H2930"]],[3,4,["(H853)"]],[4,6,["H6826"]],[6,10,["H6456"]],[10,12,["H3701"]],[12,15,["H642"]],[15,19,["H4541"]],[19,21,["H2091"]],[21,26,["H2219"]],[26,27,["H3644"]],[27,30,["H1739"]],[30,33,["H559"]],[33,38,["H3318"]]]},{"k":18240,"v":[[0,4,["H5414"]],[4,6,["H4306"]],[6,9,["H2233"]],[9,10,["H834"]],[10,13,["H2232","(H853)"]],[13,15,["H127"]],[15,18,["H3899"]],[18,21,["H8393"]],[21,24,["H127"]],[24,28,["H1961"]],[28,29,["H1879"]],[29,31,["H8082"]],[31,33,["H1931"]],[33,34,["H3117"]],[34,37,["H4735"]],[37,38,["H7462"]],[38,40,["H7337"]],[40,41,["H3733"]]]},{"k":18241,"v":[[0,2,["H504"]],[2,7,["H5895"]],[7,9,["H5647"]],[9,11,["H127"]],[11,13,["H398"]],[13,14,["H2548"]],[14,15,["H1098"]],[15,16,["H834"]],[16,19,["H2219"]],[19,22,["H7371"]],[22,26,["H4214"]]]},{"k":18242,"v":[[0,4,["H1961"]],[4,5,["H5921"]],[5,6,["H3605"]],[6,7,["H1364"]],[7,8,["H2022"]],[8,10,["H5921"]],[10,11,["H3605"]],[11,12,["H5375"]],[12,13,["H1389"]],[13,14,["H6388"]],[14,16,["H2988"]],[16,18,["H4325"]],[18,21,["H3117"]],[21,24,["H7227"]],[24,25,["H2027"]],[25,28,["H4026"]],[28,29,["H5307"]]]},{"k":18243,"v":[[0,3,["H216"]],[3,6,["H3842"]],[6,8,["H1961"]],[8,11,["H216"]],[11,14,["H2535"]],[14,17,["H216"]],[17,20,["H2535"]],[20,22,["H1961"]],[22,23,["H7659"]],[23,26,["H216"]],[26,28,["H7651"]],[28,29,["H3117"]],[29,32,["H3117"]],[32,35,["H3068"]],[35,37,["H2280","(H853)"]],[37,39,["H7667"]],[39,42,["H5971"]],[42,44,["H7495"]],[44,46,["H4273"]],[46,49,["H4347"]]]},{"k":18244,"v":[[0,1,["H2009"]],[1,3,["H8034"]],[3,6,["H3068"]],[6,7,["H935"]],[7,9,["H4480","H4801"]],[9,10,["H1197"]],[10,13,["H639"]],[13,16,["H4858"]],[16,19,["H3514"]],[19,21,["H8193"]],[21,23,["H4390"]],[23,25,["H2195"]],[25,28,["H3956"]],[28,31,["H398"]],[31,32,["H784"]]]},{"k":18245,"v":[[0,3,["H7307"]],[3,6,["H7857"]],[6,7,["H5158"]],[7,12,["H2673"]],[12,13,["H5704"]],[13,15,["H6677"]],[15,17,["H5130"]],[17,19,["H1471"]],[19,22,["H5299"]],[22,24,["H7723"]],[24,30,["H7448"]],[30,31,["H5921"]],[31,33,["H3895"]],[33,36,["H5971"]],[36,40,["H8582"]]]},{"k":18246,"v":[[0,3,["H1961"]],[3,5,["H7892"]],[5,9,["H3915"]],[9,15,["H6942","H2282"]],[15,17,["H8057"]],[17,19,["H3824"]],[19,23,["H1980"]],[23,26,["H2485"]],[26,28,["H935"]],[28,31,["H2022"]],[31,34,["H3068"]],[34,35,["H413"]],[35,38,["H6697"]],[38,40,["H3478"]]]},{"k":18247,"v":[[0,3,["H3068"]],[3,5,["(H853)"]],[5,7,["H1935"]],[7,8,["H6963"]],[8,11,["H8085"]],[11,14,["H7200"]],[14,17,["H5183"]],[17,20,["H2220"]],[20,23,["H2197"]],[23,26,["H639"]],[26,30,["H3851"]],[30,33,["H398"]],[33,34,["H784"]],[34,36,["H5311"]],[36,38,["H2230"]],[38,40,["H68","H1259"]]]},{"k":18248,"v":[[0,1,["H3588"]],[1,4,["H4480","H6963"]],[4,7,["H3068"]],[7,10,["H804"]],[10,13,["H2865"]],[13,15,["H5221"]],[15,18,["H7626"]]]},{"k":18249,"v":[[0,4,["H3605"]],[4,7,["H4145"]],[7,8,["H4294"]],[8,10,["H4569"]],[10,11,["H834"]],[11,13,["H3068"]],[13,15,["H5117"]],[15,16,["H5921"]],[16,20,["H1961"]],[20,22,["H8596"]],[22,24,["H3658"]],[24,27,["H4421"]],[27,29,["H8573"]],[29,32,["H3898"]],[32,34,[]]]},{"k":18250,"v":[[0,1,["H3588"]],[1,2,["H8613"]],[2,4,["H6186"]],[4,6,["H4480","H865"]],[6,7,["H1571"]],[7,10,["H4428"]],[10,11,["H1931"]],[11,13,["H3559"]],[13,18,["H6009"]],[18,20,["H7337"]],[20,22,["H4071"]],[22,25,["H784"]],[25,27,["H7235"]],[27,28,["H6086"]],[28,30,["H5397"]],[30,33,["H3068"]],[33,36,["H5158"]],[36,38,["H1614"]],[38,40,["H1197"]],[40,41,[]]]},{"k":18251,"v":[[0,1,["H1945"]],[1,6,["H3381"]],[6,8,["H4714"]],[8,10,["H5833"]],[10,12,["H8172"]],[12,13,["H5921"]],[13,14,["H5483"]],[14,16,["H982"]],[16,17,["H5921"]],[17,18,["H7393"]],[18,19,["H3588"]],[19,22,["H7227"]],[22,24,["H5921"]],[24,25,["H6571"]],[25,26,["H3588"]],[26,30,["H6105","H3966"]],[30,33,["H8159"]],[33,34,["H3808"]],[34,35,["H5921"]],[35,38,["H6918"]],[38,40,["H3478"]],[40,41,["H3808"]],[41,42,["H1875"]],[42,44,["H3068"]]]},{"k":18252,"v":[[0,2,["H1931"]],[2,3,["H1571"]],[3,5,["H2450"]],[5,8,["H935"]],[8,9,["H7451"]],[9,12,["H3808"]],[12,14,["H5493"]],[14,16,["H1697"]],[16,19,["H6965"]],[19,20,["H5921"]],[20,22,["H1004"]],[22,25,["H7489"]],[25,27,["H5921"]],[27,29,["H5833"]],[29,33,["H6466"]],[33,34,["H205"]]]},{"k":18253,"v":[[0,3,["H4714"]],[3,5,["H120"]],[5,7,["H3808"]],[7,8,["H410"]],[8,11,["H5483"]],[11,12,["H1320"]],[12,14,["H3808"]],[14,15,["H7307"]],[15,18,["H3068"]],[18,21,["H5186"]],[21,23,["H3027"]],[23,27,["H5826"]],[27,29,["H3782"]],[29,34,["H5826"]],[34,37,["H5307"]],[37,40,["H3605"]],[40,42,["H3615"]],[42,43,["H3162"]]]},{"k":18254,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,5,["H3068"]],[5,6,["H559"]],[6,7,["H413"]],[7,10,["H834"]],[10,12,["H738"]],[12,16,["H3715"]],[16,17,["H1897"]],[17,18,["H5921"]],[18,20,["H2964"]],[20,21,["H834"]],[21,23,["H4393"]],[23,25,["H7462"]],[25,28,["H7121"]],[28,29,["H5921"]],[29,33,["H3808"]],[33,35,["H2865"]],[35,38,["H4480","H6963"]],[38,39,["H3808"]],[39,40,["H6031"]],[40,44,["H4480","H1995"]],[44,47,["H3651"]],[47,50,["H3068"]],[50,52,["H6635"]],[52,54,["H3381"]],[54,56,["H6633"]],[56,57,["H5921"]],[57,58,["H2022"]],[58,59,["H6726"]],[59,61,["H5921"]],[61,63,["H1389"]],[63,64,[]]]},{"k":18255,"v":[[0,2,["H6833"]],[2,3,["H5774"]],[3,4,["H3651"]],[4,7,["H3068"]],[7,9,["H6635"]],[9,10,["H1598","H5921"]],[10,11,["H3389"]],[11,12,["H1598"]],[12,16,["H5337"]],[16,20,["H6452"]],[20,23,["H4422"]],[23,24,[]]]},{"k":18256,"v":[[0,1,["H7725"]],[1,6,["H834"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,12,["H6009"]],[12,13,["H5627"]]]},{"k":18257,"v":[[0,1,["H3588"]],[1,3,["H1931"]],[3,4,["H3117"]],[4,6,["H376"]],[6,9,["H3988"]],[9,11,["H457"]],[11,13,["H3701"]],[13,16,["H457"]],[16,18,["H2091"]],[18,19,["H834"]],[19,22,["H3027"]],[22,24,["H6213"]],[24,29,["H2399"]]]},{"k":18258,"v":[[0,4,["H804"]],[4,5,["H5307"]],[5,8,["H2719"]],[8,9,["H3808"]],[9,13,["H376"]],[13,16,["H2719"]],[16,17,["H3808"]],[17,21,["H120"]],[21,23,["H398"]],[23,28,["H5127"]],[28,29,["H4480","H6440"]],[29,31,["H2719"]],[31,35,["H970"]],[35,37,["H1961"]],[37,38,["H4522"]]]},{"k":18259,"v":[[0,5,["H5674"]],[5,9,["H5553"]],[9,11,["H4480","H4032"]],[11,14,["H8269"]],[14,17,["H2865"]],[17,20,["H4480","H5251"]],[20,21,["H5002"]],[21,23,["H3068"]],[23,24,["H834"]],[24,25,["H217"]],[25,28,["H6726"]],[28,31,["H8574"]],[31,33,["H3389"]]]},{"k":18260,"v":[[0,1,["H2005"]],[1,3,["H4428"]],[3,5,["H4427"]],[5,7,["H6664"]],[7,9,["H8269"]],[9,11,["H8323"]],[11,13,["H4941"]]]},{"k":18261,"v":[[0,3,["H376"]],[3,5,["H1961"]],[5,9,["H4224"]],[9,12,["H7307"]],[12,15,["H5643"]],[15,18,["H2230"]],[18,20,["H6388"]],[20,22,["H4325"]],[22,26,["H6724"]],[26,29,["H6738"]],[29,32,["H3515"]],[32,33,["H5553"]],[33,36,["H5889"]],[36,37,["H776"]]]},{"k":18262,"v":[[0,3,["H5869"]],[3,7,["H7200"]],[7,9,["H3808"]],[9,11,["H8159"]],[11,14,["H241"]],[14,18,["H8085"]],[18,20,["H7181"]]]},{"k":18263,"v":[[0,2,["H3824"]],[2,6,["H4116"]],[6,8,["H995"]],[8,9,["H3045"]],[9,12,["H3956"]],[12,15,["H5926"]],[15,18,["H4116"]],[18,20,["H1696"]],[20,21,["H6703"]]]},{"k":18264,"v":[[0,3,["H5036"]],[3,6,["H3808"]],[6,7,["H5750"]],[7,8,["H7121"]],[8,9,["H5081"]],[9,10,["H3808"]],[10,12,["H3596"]],[12,13,["H559"]],[13,16,["H7771"]]]},{"k":18265,"v":[[0,1,["H3588"]],[1,4,["H5036"]],[4,6,["H1696"]],[6,7,["H5039"]],[7,10,["H3820"]],[10,12,["H6213"]],[12,13,["H205"]],[13,15,["H6213"]],[15,16,["H2612"]],[16,19,["H1696"]],[19,20,["H8442"]],[20,21,["H413"]],[21,23,["H3068"]],[23,26,["H7324"]],[26,28,["H5315"]],[28,31,["H7457"]],[31,37,["H4945"]],[37,40,["H6771"]],[40,42,["H2637"]]]},{"k":18266,"v":[[0,2,["H3627"]],[2,6,["H3596"]],[6,8,["H7451"]],[8,9,["H1931"]],[9,10,["H3289"]],[10,12,["H2154"]],[12,14,["H2254"]],[14,16,["H6041"]],[16,18,["H8267"]],[18,19,["H561"]],[19,23,["H34"]],[23,24,["H1696"]],[24,25,["H4941"]]]},{"k":18267,"v":[[0,3,["H5081"]],[3,4,["H3289"]],[4,6,["H5081"]],[6,8,["H5921"]],[8,10,["H5081"]],[10,13,["H6965"]]]},{"k":18268,"v":[[0,2,["H6965"]],[2,4,["H802"]],[4,8,["H7600"]],[8,9,["H8085"]],[9,11,["H6963"]],[11,13,["H982"]],[13,14,["H1323"]],[14,16,["H238"]],[16,19,["H565"]]]},{"k":18269,"v":[[0,2,["H3117"]],[2,4,["H8141"]],[4,8,["H7264"]],[8,11,["H982"]],[11,12,["H3588"]],[12,14,["H1210"]],[14,16,["H3615"]],[16,18,["H625"]],[18,20,["H1097"]],[20,21,["H935"]]]},{"k":18270,"v":[[0,1,["H2729"]],[1,7,["H7600"]],[7,9,["H7264"]],[9,12,["H982"]],[12,13,["H6584"]],[13,18,["H6209"]],[18,20,["H2290"]],[20,22,["H5921"]],[22,24,["H2504"]]]},{"k":18271,"v":[[0,3,["H5594"]],[3,4,["H5921"]],[4,6,["H7699"]],[6,7,["H5921"]],[7,9,["H2531"]],[9,10,["H7704"]],[10,11,["H5921"]],[11,13,["H6509"]],[13,14,["H1612"]]]},{"k":18272,"v":[[0,1,["H5921"]],[1,3,["H127"]],[3,6,["H5971"]],[6,9,["H5927"]],[9,10,["H6975"]],[10,12,["H8068"]],[12,13,["H3588"]],[13,14,["H5921"]],[14,15,["H3605"]],[15,17,["H1004"]],[17,19,["H4885"]],[19,22,["H5947"]],[22,23,["H7151"]]]},{"k":18273,"v":[[0,1,["H3588"]],[1,3,["H759"]],[3,6,["H5203"]],[6,8,["H1995"]],[8,11,["H5892"]],[11,14,["H5800"]],[14,16,["H6076"]],[16,18,["H975"]],[18,20,["H1961"]],[20,21,["H1157"]],[21,22,["H4631"]],[22,24,["H5704","H5769"]],[24,26,["H4885"]],[26,29,["H6501"]],[29,31,["H4829"]],[31,33,["H5739"]]]},{"k":18274,"v":[[0,1,["H5704"]],[1,3,["H7307"]],[3,5,["H6168"]],[5,6,["H5921"]],[6,10,["H4480","H4791"]],[10,13,["H4057"]],[13,14,["H1961"]],[14,17,["H3759"]],[17,21,["H3759"]],[21,23,["H2803"]],[23,26,["H3293"]]]},{"k":18275,"v":[[0,2,["H4941"]],[2,4,["H7931"]],[4,7,["H4057"]],[7,9,["H6666"]],[9,10,["H3427"]],[10,14,["H3759"]]]},{"k":18276,"v":[[0,3,["H4639"]],[3,5,["H6666"]],[5,7,["H1961"]],[7,8,["H7965"]],[8,11,["H5656"]],[11,13,["H6666"]],[13,14,["H8252"]],[14,16,["H983"]],[16,18,["H5704","H5769"]]]},{"k":18277,"v":[[0,3,["H5971"]],[3,5,["H3427"]],[5,8,["H7965"]],[8,9,["H5116"]],[9,12,["H4009"]],[12,13,["H4908"]],[13,16,["H7600"]],[16,18,["H4496"]]]},{"k":18278,"v":[[0,4,["H1258"]],[4,6,["H3381"]],[6,9,["H3293"]],[9,12,["H5892"]],[12,15,["H8213"]],[15,19,["H8218"]]]},{"k":18279,"v":[[0,1,["H835"]],[1,5,["H2232"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,8,["H4325"]],[8,11,["H7971"]],[11,14,["H7272"]],[14,17,["H7794"]],[17,20,["H2543"]]]},{"k":18280,"v":[[0,1,["H1945"]],[1,5,["H7703"]],[5,7,["H859"]],[7,9,["H3808"]],[9,10,["H7703"]],[10,13,["H898"]],[13,18,["H898","H3808"]],[18,24,["H8552"]],[24,26,["H7703"]],[26,30,["H7703"]],[30,37,["H5239"]],[37,40,["H898"]],[40,44,["H898"]],[44,46,[]]]},{"k":18281,"v":[[0,2,["H3068"]],[2,4,["H2603"]],[4,9,["H6960"]],[9,12,["H1961"]],[12,15,["H2220"]],[15,17,["H1242"]],[17,19,["H3444"]],[19,20,["H637"]],[20,23,["H6256"]],[23,25,["H6869"]]]},{"k":18282,"v":[[0,3,["H4480","H6963"]],[3,6,["H1995"]],[6,8,["H5971"]],[8,9,["H5074"]],[9,13,["H4480","H7427"]],[13,17,["H1471"]],[17,19,["H5310"]]]},{"k":18283,"v":[[0,3,["H7998"]],[3,6,["H622"]],[6,9,["H625"]],[9,12,["H2625"]],[12,18,["H4944"]],[18,20,["H1357"]],[20,23,["H8264"]],[23,25,[]]]},{"k":18284,"v":[[0,2,["H3068"]],[2,4,["H7682"]],[4,5,["H3588"]],[5,7,["H7931"]],[7,9,["H4791"]],[9,12,["H4390"]],[12,13,["H6726"]],[13,15,["H4941"]],[15,17,["H6666"]]]},{"k":18285,"v":[[0,2,["H2451"]],[2,4,["H1847"]],[4,6,["H1961"]],[6,8,["H530"]],[8,11,["H6256"]],[11,13,["H2633"]],[13,15,["H3444"]],[15,17,["H3374"]],[17,20,["H3068"]],[20,23,["H214"]]]},{"k":18286,"v":[[0,1,["H2005"]],[1,4,["H691"]],[4,6,["H6817"]],[6,7,["H2351"]],[7,9,["H4397"]],[9,11,["H7965"]],[11,13,["H1058"]],[13,14,["H4751"]]]},{"k":18287,"v":[[0,2,["H4546"]],[2,4,["H8074"]],[4,7,["H5674","H734"]],[7,8,["H7673"]],[8,11,["H6565"]],[11,13,["H1285"]],[13,16,["H3988"]],[16,18,["H5892"]],[18,20,["H2803"]],[20,21,["H3808"]],[21,22,["H582"]]]},{"k":18288,"v":[[0,2,["H776"]],[2,3,["H56"]],[3,5,["H535"]],[5,6,["H3844"]],[6,8,["H2659"]],[8,11,["H7060"]],[11,12,["H8289"]],[12,13,["H1961"]],[13,16,["H6160"]],[16,18,["H1316"]],[18,20,["H3760"]],[20,22,["H5287"]],[22,24,[]]]},{"k":18289,"v":[[0,1,["H6258"]],[1,4,["H6965"]],[4,5,["H559"]],[5,7,["H3068"]],[7,8,["H6258"]],[8,12,["H7311"]],[12,13,["H6258"]],[13,18,["H5375"]]]},{"k":18290,"v":[[0,3,["H2029"]],[3,4,["H2842"]],[4,8,["H3205"]],[8,9,["H7179"]],[9,11,["H7307"]],[11,13,["H784"]],[13,15,["H398"]],[15,16,[]]]},{"k":18291,"v":[[0,3,["H5971"]],[3,5,["H1961"]],[5,8,["H4955"]],[8,10,["H7875"]],[10,12,["H6975"]],[12,14,["H3683"]],[14,18,["H3341"]],[18,21,["H784"]]]},{"k":18292,"v":[[0,1,["H8085"]],[1,6,["H7350"]],[6,7,["H834"]],[7,10,["H6213"]],[10,15,["H7138"]],[15,16,["H3045"]],[16,18,["H1369"]]]},{"k":18293,"v":[[0,2,["H2400"]],[2,4,["H6726"]],[4,6,["H6342"]],[6,7,["H7461"]],[7,9,["H270"]],[9,11,["H2611"]],[11,12,["H4310"]],[12,16,["H1481"]],[16,19,["H398"]],[19,20,["H784"]],[20,21,["H4310"]],[21,25,["H1481"]],[25,27,["H5769"]],[27,28,["H4168"]]]},{"k":18294,"v":[[0,3,["H1980"]],[3,4,["H6666"]],[4,6,["H1696"]],[6,7,["H4339"]],[7,10,["H3988"]],[10,12,["H1215"]],[12,14,["H4642"]],[14,16,["H5287"]],[16,18,["H3709"]],[18,20,["H4480","H8551"]],[20,22,["H7810"]],[22,24,["H331"]],[24,26,["H241"]],[26,28,["H4480","H8085"]],[28,30,["H1818"]],[30,32,["H6105"]],[32,34,["H5869"]],[34,36,["H4480","H7200"]],[36,37,["H7451"]]]},{"k":18295,"v":[[0,1,["H1931"]],[1,3,["H7931"]],[3,5,["H4791"]],[5,9,["H4869"]],[9,13,["H4679"]],[13,15,["H5553"]],[15,16,["H3899"]],[16,19,["H5414"]],[19,22,["H4325"]],[22,25,["H539"]]]},{"k":18296,"v":[[0,2,["H5869"]],[2,4,["H2372"]],[4,6,["H4428"]],[6,9,["H3308"]],[9,12,["H7200"]],[12,14,["H776"]],[14,19,["H4801"]]]},{"k":18297,"v":[[0,2,["H3820"]],[2,4,["H1897"]],[4,5,["H367"]],[5,6,["H346"]],[6,9,["H5608"]],[9,10,["H346"]],[10,13,["H8254"]],[13,14,["H346"]],[14,18,["H5608","(H853)"]],[18,20,["H4026"]]]},{"k":18298,"v":[[0,3,["H3808"]],[3,4,["H7200","(H853)"]],[4,6,["H3267"]],[6,7,["H5971"]],[7,9,["H5971"]],[9,12,["H6012"]],[12,13,["H8193"]],[13,17,["H4480","H8085"]],[17,20,["H3932"]],[20,21,["H3956"]],[21,25,["H369"]],[25,26,["H998"]]]},{"k":18299,"v":[[0,1,["H2372"]],[1,3,["H6726"]],[3,5,["H7151"]],[5,8,["H4150"]],[8,10,["H5869"]],[10,12,["H7200"]],[12,13,["H3389"]],[13,15,["H7600"]],[15,16,["H5116"]],[16,18,["H168"]],[18,21,["H1077"]],[21,24,["H6813"]],[24,25,["H1077"]],[25,29,["H3489"]],[29,32,["H5331"]],[32,34,["H5265"]],[34,35,["H1077"]],[35,37,["H3605"]],[37,40,["H2256"]],[40,43,["H5423"]]]},{"k":18300,"v":[[0,1,["H3588","H518"]],[1,2,["H8033"]],[2,4,["H117"]],[4,5,["H3068"]],[5,11,["H4725"]],[11,14,["H5104"]],[14,16,["H2975"]],[16,19,["H1980"]],[19,20,["H1077"]],[20,21,["H590"]],[21,23,["H7885"]],[23,24,["H3808"]],[24,26,["H117"]],[26,27,["H6716"]],[27,28,["H5674"]],[28,29,[]]]},{"k":18301,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,6,["H8199"]],[6,8,["H3068"]],[8,11,["H2710"]],[11,13,["H3068"]],[13,16,["H4428"]],[16,17,["H1931"]],[17,19,["H3467"]],[19,20,[]]]},{"k":18302,"v":[[0,2,["H2256"]],[2,4,["H5203"]],[4,7,["H1077"]],[7,8,["H3653"]],[8,9,["H2388"]],[9,11,["H8650"]],[11,14,["H1077"]],[14,15,["H6566"]],[15,17,["H5251"]],[17,18,["H227"]],[18,21,["H5706"]],[21,24,["H4766"]],[24,25,["H7998"]],[25,26,["H2505"]],[26,28,["H6455"]],[28,29,["H962"]],[29,31,["H957"]]]},{"k":18303,"v":[[0,3,["H7934"]],[3,5,["H1077"]],[5,6,["H559"]],[6,9,["H2470"]],[9,11,["H5971"]],[11,13,["H3427"]],[13,17,["H5375"]],[17,19,["H5771"]]]},{"k":18304,"v":[[0,2,["H7126"]],[2,4,["H1471"]],[4,6,["H8085"]],[6,8,["H7181"]],[8,10,["H3816"]],[10,13,["H776"]],[13,14,["H8085"]],[14,19,["H4393"]],[19,21,["H8398"]],[21,24,["H3605"]],[24,27,["H6631"]],[27,29,[]]]},{"k":18305,"v":[[0,1,["H3588"]],[1,3,["H7110"]],[3,6,["H3068"]],[6,8,["H5921"]],[8,9,["H3605"]],[9,10,["H1471"]],[10,13,["H2534"]],[13,14,["H5921"]],[14,15,["H3605"]],[15,17,["H6635"]],[17,21,["H2763"]],[21,25,["H5414"]],[25,29,["H2874"]]]},{"k":18306,"v":[[0,2,["H2491"]],[2,7,["H7993"]],[7,10,["H889"]],[10,13,["H5927"]],[13,17,["H6297"]],[17,20,["H2022"]],[20,23,["H4549"]],[23,26,["H4480","H1818"]]]},{"k":18307,"v":[[0,2,["H3605"]],[2,4,["H6635"]],[4,6,["H8064"]],[6,9,["H4743"]],[9,12,["H8064"]],[12,16,["H1556"]],[16,19,["H5612"]],[19,21,["H3605"]],[21,23,["H6635"]],[23,26,["H5034"]],[26,29,["H5929"]],[29,31,["H5034"]],[31,34,["H4480","H1612"]],[34,38,["H5034"]],[38,43,["H4480","H8384"]]]},{"k":18308,"v":[[0,1,["H3588"]],[1,3,["H2719"]],[3,6,["H7301"]],[6,8,["H8064"]],[8,9,["H2009"]],[9,13,["H3381"]],[13,14,["H5921"]],[14,15,["H123"]],[15,17,["H5921"]],[17,19,["H5971"]],[19,22,["H2764"]],[22,24,["H4941"]]]},{"k":18309,"v":[[0,2,["H2719"]],[2,5,["H3068"]],[5,7,["H4390"]],[7,9,["H1818"]],[9,13,["H1878"]],[13,15,["H4480","H2459"]],[15,19,["H4480","H1818"]],[19,21,["H3733"]],[21,23,["H6260"]],[23,26,["H4480","H2459"]],[26,29,["H3629"]],[29,31,["H352"]],[31,32,["H3588"]],[32,34,["H3068"]],[34,37,["H2077"]],[37,39,["H1224"]],[39,42,["H1419"]],[42,43,["H2874"]],[43,46,["H776"]],[46,48,["H123"]]]},{"k":18310,"v":[[0,3,["H7214"]],[3,6,["H3381"]],[6,7,["H5973"]],[7,11,["H6499"]],[11,12,["H5973"]],[12,14,["H47"]],[14,17,["H776"]],[17,20,["H7301"]],[20,22,["H4480","H1818"]],[22,25,["H6083"]],[25,27,["H1878"]],[27,29,["H4480","H2459"]]]},{"k":18311,"v":[[0,1,["H3588"]],[1,5,["H3117"]],[5,8,["H3068"]],[8,9,["H5359"]],[9,12,["H8141"]],[12,14,["H7966"]],[14,17,["H7379"]],[17,19,["H6726"]]]},{"k":18312,"v":[[0,3,["H5158"]],[3,7,["H2015"]],[7,9,["H2203"]],[9,12,["H6083"]],[12,15,["H1614"]],[15,18,["H776"]],[18,21,["H1961"]],[21,22,["H1197"]],[22,23,["H2203"]]]},{"k":18313,"v":[[0,3,["H3808"]],[3,5,["H3518"]],[5,6,["H3915"]],[6,8,["H3119"]],[8,10,["H6227"]],[10,14,["H5927"]],[14,16,["H5769"]],[16,18,["H4480","H1755"]],[18,20,["H1755"]],[20,24,["H2717"]],[24,25,["H369"]],[25,28,["H5674"]],[28,31,["H5331"]],[31,33,["H5331"]]]},{"k":18314,"v":[[0,3,["H6893"]],[3,6,["H7090"]],[6,8,["H3423"]],[8,11,["H3244"]],[11,15,["H6158"]],[15,17,["H7931"]],[17,24,["H5186"]],[24,25,["H5921"]],[25,28,["H6957"]],[28,30,["H8414"]],[30,33,["H68"]],[33,35,["H922"]]]},{"k":18315,"v":[[0,3,["H7121"]],[3,5,["H2715"]],[5,9,["H4410"]],[9,11,["H369"]],[11,14,["H8033"]],[14,16,["H3605"]],[16,18,["H8269"]],[18,20,["H1961"]],[20,21,["H657"]]]},{"k":18316,"v":[[0,2,["H5518"]],[2,5,["H5927"]],[5,8,["H759"]],[8,9,["H7057"]],[9,11,["H2336"]],[11,14,["H4013"]],[14,19,["H1961"]],[19,21,["H5116"]],[21,23,["H8565"]],[23,26,["H2681"]],[26,28,["H1323","H3284"]]]},{"k":18317,"v":[[0,6,["H6728"]],[6,9,["H6298"]],[9,10,["H854"]],[10,16,["H338"]],[16,19,["H8163"]],[19,21,["H7121"]],[21,22,["H5921"]],[22,24,["H7453"]],[24,27,["H3917"]],[27,28,["H389"]],[28,30,["H7280"]],[30,31,["H8033"]],[31,33,["H4672"]],[33,39,["H4494"]]]},{"k":18318,"v":[[0,1,["H8033"]],[1,5,["H7091"]],[5,8,["H7077"]],[8,10,["H4422"]],[10,12,["H1234"]],[12,14,["H1716"]],[14,17,["H6738"]],[17,18,["H8033"]],[18,21,["H1772"]],[21,22,["H389"]],[22,24,["H6908"]],[24,26,["H802"]],[26,29,["H7468"]]]},{"k":18319,"v":[[0,1,["H1875"]],[1,4,["H4480","H5921"]],[4,6,["H5612"]],[6,9,["H3068"]],[9,11,["H7121"]],[11,12,["H3808"]],[12,13,["H259"]],[13,15,["H4480","H2007"]],[15,17,["H5737"]],[17,18,["H3808","H802"]],[18,20,["H6485"]],[20,22,["H7468"]],[22,23,["H3588"]],[23,25,["H6310"]],[25,26,["H1931"]],[26,28,["H6680"]],[28,31,["H7307"]],[31,32,["H1931"]],[32,34,["H6908"]],[34,35,[]]]},{"k":18320,"v":[[0,2,["H1931"]],[2,4,["H5307"]],[4,6,["H1486"]],[6,11,["H3027"]],[11,13,["H2505"]],[13,18,["H6957"]],[18,21,["H3423"]],[21,24,["H5704","H5769"]],[24,26,["H1755"]],[26,28,["H1755"]],[28,31,["H7931"]],[31,32,[]]]},{"k":18321,"v":[[0,2,["H4057"]],[2,6,["H6723"]],[6,9,["H7797"]],[9,14,["H6160"]],[14,16,["H1523"]],[16,18,["H6524"]],[18,21,["H2261"]]]},{"k":18322,"v":[[0,4,["H6524","H6524"]],[4,6,["H1523"]],[6,7,["H637"]],[7,9,["H1525"]],[9,11,["H7442"]],[11,13,["H3519"]],[13,15,["H3844"]],[15,18,["H5414"]],[18,22,["H1926"]],[22,24,["H3760"]],[24,26,["H8289"]],[26,27,["H1992"]],[27,29,["H7200"]],[29,31,["H3519"]],[31,34,["H3068"]],[34,37,["H1926"]],[37,40,["H430"]]]},{"k":18323,"v":[[0,1,["H2388"]],[1,4,["H7504"]],[4,5,["H3027"]],[5,7,["H553"]],[7,9,["H3782"]],[9,10,["H1290"]]]},{"k":18324,"v":[[0,1,["H559"]],[1,8,["H4116"]],[8,9,["H3820"]],[9,11,["H2388"]],[11,12,["H3372"]],[12,13,["H408"]],[13,14,["H2009"]],[14,16,["H430"]],[16,18,["H935"]],[18,20,["H5359"]],[20,22,["H430"]],[22,25,["H1576"]],[25,26,["H1931"]],[26,28,["H935"]],[28,30,["H3467"]],[30,31,[]]]},{"k":18325,"v":[[0,1,["H227"]],[1,3,["H5869"]],[3,6,["H5787"]],[6,9,["H6491"]],[9,12,["H241"]],[12,15,["H2795"]],[15,18,["H6605"]]]},{"k":18326,"v":[[0,1,["H227"]],[1,4,["H6455"]],[4,6,["H1801"]],[6,9,["H354"]],[9,12,["H3956"]],[12,15,["H483"]],[15,16,["H7442"]],[16,17,["H3588"]],[17,20,["H4057"]],[20,22,["H4325"]],[22,24,["H1234"]],[24,26,["H5158"]],[26,29,["H6160"]]]},{"k":18327,"v":[[0,4,["H8273"]],[4,6,["H1961"]],[6,8,["H98"]],[8,12,["H6774"]],[12,13,["H4002"]],[13,15,["H4325"]],[15,18,["H5116"]],[18,20,["H8565"]],[20,23,["H7258"]],[23,26,["H2682"]],[26,28,["H7070"]],[28,30,["H1573"]]]},{"k":18328,"v":[[0,3,["H4547"]],[3,5,["H1961"]],[5,6,["H8033"]],[6,9,["H1870"]],[9,14,["H7121"]],[14,16,["H1870"]],[16,18,["H6944"]],[18,20,["H2931"]],[20,22,["H3808"]],[22,24,["H5674"]],[24,27,["H1931"]],[27,34,["H1980","H1870"]],[34,36,["H191"]],[36,38,["H3808"]],[38,39,["H8582"]],[39,40,[]]]},{"k":18329,"v":[[0,1,["H3808"]],[1,2,["H738"]],[2,4,["H1961"]],[4,5,["H8033"]],[5,6,["H1077"]],[6,8,["H6530"]],[8,9,["H2416"]],[9,12,["H5927"]],[12,16,["H3808"]],[16,18,["H4672"]],[18,19,["H8033"]],[19,22,["H1350"]],[22,24,["H1980"]],[24,25,[]]]},{"k":18330,"v":[[0,3,["H6299"]],[3,6,["H3068"]],[6,8,["H7725"]],[8,10,["H935"]],[10,12,["H6726"]],[12,14,["H7440"]],[14,16,["H5769"]],[16,17,["H8342"]],[17,18,["H5921"]],[18,20,["H7218"]],[20,23,["H5381"]],[23,24,["H8342"]],[24,26,["H8057"]],[26,28,["H3015"]],[28,30,["H585"]],[30,33,["H5127"]]]},{"k":18331,"v":[[0,5,["H1961"]],[5,8,["H702","H6240"]],[8,9,["H8141"]],[9,11,["H4428"]],[11,12,["H2396"]],[12,14,["H5576"]],[14,15,["H4428"]],[15,17,["H804"]],[17,19,["H5927"]],[19,20,["H5921"]],[20,21,["H3605"]],[21,23,["H1219"]],[23,24,["H5892"]],[24,26,["H3063"]],[26,28,["H8610"]],[28,29,[]]]},{"k":18332,"v":[[0,3,["H4428"]],[3,5,["H804"]],[5,6,["H7971","(H853)"]],[6,7,["H7262"]],[7,9,["H4480","H3923"]],[9,11,["H3389"]],[11,12,["H413"]],[12,13,["H4428"]],[13,14,["H2396"]],[14,17,["H3515"]],[17,18,["H2428"]],[18,21,["H5975"]],[21,24,["H8585"]],[24,27,["H5945"]],[27,28,["H1295"]],[28,31,["H4546"]],[31,34,["H3526"]],[34,35,["H7704"]]]},{"k":18333,"v":[[0,3,["H3318"]],[3,4,["H413"]],[4,6,["H471"]],[6,7,["H2518"]],[7,8,["H1121"]],[8,9,["H834"]],[9,11,["H5921"]],[11,13,["H1004"]],[13,15,["H7644"]],[15,17,["H5608"]],[17,19,["H3098"]],[19,20,["H623"]],[20,21,["H1121"]],[21,23,["H2142"]]]},{"k":18334,"v":[[0,2,["H7262"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H559"]],[6,8,["H4994"]],[8,9,["H413"]],[9,10,["H2396"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H1419"]],[14,15,["H4428"]],[15,17,["H4428"]],[17,19,["H804"]],[19,20,["H4100"]],[20,21,["H986"]],[21,23,["H2088"]],[23,24,["H834"]],[24,26,["H982"]]]},{"k":18335,"v":[[0,2,["H559"]],[2,5,["H389"]],[5,9,["H8193"]],[9,10,["H1697"]],[10,13,["H6098"]],[13,15,["H1369"]],[15,17,["H4421"]],[17,18,["H6258"]],[18,19,["H5921"]],[19,20,["H4310"]],[20,23,["H982"]],[23,24,["H3588"]],[24,26,["H4775"]],[26,28,[]]]},{"k":18336,"v":[[0,1,["H2009"]],[1,3,["H982"]],[3,4,["H5921"]],[4,6,["H4938"]],[6,8,["H2088"]],[8,9,["H7533"]],[9,10,["H7070"]],[10,11,["H5921"]],[11,12,["H4714"]],[12,13,["H834","H5921"]],[13,16,["H376"]],[16,17,["H5564"]],[17,20,["H935"]],[20,23,["H3709"]],[23,25,["H5344"]],[25,27,["H3651"]],[27,29,["H6547"]],[29,30,["H4428"]],[30,32,["H4714"]],[32,34,["H3605"]],[34,36,["H982"]],[36,37,["H5921"]],[37,38,[]]]},{"k":18337,"v":[[0,1,["H3588"]],[1,4,["H559"]],[4,5,["H413"]],[5,8,["H982"]],[8,9,["H413"]],[9,11,["H3068"]],[11,13,["H430"]],[13,16,["H3808"]],[16,17,["H1931","(H853)"]],[17,18,["H834"]],[18,20,["H1116"]],[20,23,["H4196"]],[23,24,["H2396"]],[24,27,["H5493"]],[27,29,["H559"]],[29,31,["H3063"]],[31,34,["H3389"]],[34,37,["H7812"]],[37,38,["H6440"]],[38,39,["H2088"]],[39,40,["H4196"]]]},{"k":18338,"v":[[0,1,["H6258"]],[1,4,["H6149"]],[4,7,["H4994"]],[7,8,["H854"]],[8,10,["H113"]],[10,12,["H4428"]],[12,14,["H804"]],[14,18,["H5414"]],[18,21,["H505"]],[21,22,["H5483"]],[22,23,["H518"]],[23,26,["H3201"]],[26,31,["H5414"]],[31,32,["H7392"]],[32,33,["H5921"]],[33,34,[]]]},{"k":18339,"v":[[0,1,["H349"]],[1,6,["H7725","(H853)"]],[6,8,["H6440"]],[8,10,["H259"]],[10,11,["H6346"]],[11,14,["H6996"]],[14,17,["H113"]],[17,18,["H5650"]],[18,22,["H982"]],[22,23,["H5921"]],[23,24,["H4714"]],[24,26,["H7393"]],[26,29,["H6571"]]]},{"k":18340,"v":[[0,4,["H6258"]],[4,6,["H5927"]],[6,7,["H4480","H1107"]],[7,9,["H3068"]],[9,10,["H5921"]],[10,11,["H2063"]],[11,12,["H776"]],[12,14,["H7843"]],[14,17,["H3068"]],[17,18,["H559"]],[18,19,["H413"]],[19,22,["H5927"]],[22,23,["H413"]],[23,24,["H2063"]],[24,25,["H776"]],[25,27,["H7843"]],[27,28,[]]]},{"k":18341,"v":[[0,2,["H559"]],[2,3,["H471"]],[3,5,["H7644"]],[5,7,["H3098"]],[7,8,["H413"]],[8,9,["H7262"]],[9,10,["H1696"]],[10,13,["H4994"]],[13,14,["H413"]],[14,16,["H5650"]],[16,20,["H762"]],[20,21,["H3588"]],[21,22,["H587"]],[22,23,["H8085"]],[23,26,["H1696"]],[26,27,["H408"]],[27,28,["H413"]],[28,33,["H3066"]],[33,36,["H241"]],[36,39,["H5971"]],[39,40,["H834"]],[40,42,["H5921"]],[42,44,["H2346"]]]},{"k":18342,"v":[[0,2,["H7262"]],[2,3,["H559"]],[3,6,["H113"]],[6,7,["H7971"]],[7,9,["H413"]],[9,11,["H113"]],[11,13,["H413"]],[13,16,["H1696","(H853)"]],[16,17,["H428"]],[17,18,["H1697"]],[18,21,["H3808"]],[21,24,["H5921"]],[24,26,["H376"]],[26,28,["H3427"]],[28,29,["H5921"]],[29,31,["H2346"]],[31,35,["H398","(H853)"]],[35,38,["H2716"]],[38,40,["H8354","(H853)"]],[40,43,["H7890"]],[43,44,["H5973"]],[44,45,[]]]},{"k":18343,"v":[[0,2,["H7262"]],[2,3,["H5975"]],[3,5,["H7121"]],[5,8,["H1419"]],[8,9,["H6963"]],[9,13,["H3066"]],[13,15,["H559"]],[15,16,["H8085"]],[16,17,["(H853)"]],[17,19,["H1697"]],[19,22,["H1419"]],[22,23,["H4428"]],[23,25,["H4428"]],[25,27,["H804"]]]},{"k":18344,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H4428"]],[4,6,["H408"]],[6,7,["H2396"]],[7,8,["H5377"]],[8,10,["H3588"]],[10,13,["H3808"]],[13,15,["H3201"]],[15,17,["H5337"]],[17,18,[]]]},{"k":18345,"v":[[0,1,["H408"]],[1,3,["H2396"]],[3,6,["H982","(H853)"]],[6,7,["H413"]],[7,9,["H3068"]],[9,10,["H559"]],[10,12,["H3068"]],[12,15,["H5337","H5337"]],[15,17,["H2063"]],[17,18,["H5892"]],[18,20,["H3808"]],[20,22,["H5414"]],[22,25,["H3027"]],[25,28,["H4428"]],[28,30,["H804"]]]},{"k":18346,"v":[[0,1,["H8085"]],[1,2,["H408"]],[2,3,["H413"]],[3,4,["H2396"]],[4,5,["H3588"]],[5,6,["H3541"]],[6,7,["H559"]],[7,9,["H4428"]],[9,11,["H804"]],[11,12,["H6213"]],[12,15,["H854"]],[15,19,["H1293"]],[19,22,["H3318"]],[22,23,["H413"]],[23,26,["H398"]],[26,29,["H376"]],[29,32,["H1612"]],[32,35,["H376"]],[35,39,["H8384"]],[39,41,["H8354"]],[41,44,["H376"]],[44,46,["H4325"]],[46,50,["H953"]]]},{"k":18347,"v":[[0,1,["H5704"]],[1,3,["H935"]],[3,7,["H3947","(H853)"]],[7,8,["H413"]],[8,10,["H776"]],[10,14,["H776"]],[14,16,["H776"]],[16,18,["H1715"]],[18,20,["H8492"]],[20,22,["H776"]],[22,24,["H3899"]],[24,26,["H3754"]]]},{"k":18348,"v":[[0,2,["H6435"]],[2,3,["H2396"]],[3,4,["H5496"]],[4,6,["H559"]],[6,8,["H3068"]],[8,10,["H5337"]],[10,13,["H376"]],[13,16,["H430"]],[16,19,["H1471"]],[19,20,["H5337","(H853)"]],[20,22,["H776"]],[22,26,["H4480","H3027"]],[26,29,["H4428"]],[29,31,["H804"]]]},{"k":18349,"v":[[0,1,["H346"]],[1,4,["H430"]],[4,6,["H2574"]],[6,8,["H774"]],[8,9,["H346"]],[9,12,["H430"]],[12,14,["H5617"]],[14,15,["H3588"]],[15,18,["H5337","(H853)"]],[18,19,["H8111"]],[19,23,["H4480","H3027"]]]},{"k":18350,"v":[[0,1,["H4310"]],[1,5,["H3605"]],[5,7,["H430"]],[7,9,["H428"]],[9,10,["H776"]],[10,11,["H834"]],[11,13,["H5337","(H853)"]],[13,15,["H776"]],[15,19,["H4480","H3027"]],[19,20,["H3588"]],[20,22,["H3068"]],[22,24,["H5337","(H853)"]],[24,25,["H3389"]],[25,29,["H4480","H3027"]]]},{"k":18351,"v":[[0,5,["H2790"]],[5,7,["H6030"]],[7,9,["H3808"]],[9,11,["H1697"]],[11,12,["H3588"]],[12,14,["H4428"]],[14,15,["H4687"]],[15,17,["H559"]],[17,18,["H6030"]],[18,20,["H3808"]]]},{"k":18352,"v":[[0,2,["H935"]],[2,3,["H471"]],[3,5,["H1121"]],[5,7,["H2518"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H1004"]],[12,14,["H7644"]],[14,16,["H5608"]],[16,18,["H3098"]],[18,20,["H1121"]],[20,22,["H623"]],[22,24,["H2142"]],[24,25,["H413"]],[25,26,["H2396"]],[26,29,["H899"]],[29,30,["H7167"]],[30,32,["H5046"]],[32,33,["(H853)"]],[33,35,["H1697"]],[35,37,["H7262"]]]},{"k":18353,"v":[[0,5,["H1961"]],[5,7,["H4428"]],[7,8,["H2396"]],[8,9,["H8085"]],[9,13,["H7167","(H853)"]],[13,15,["H899"]],[15,18,["H3680"]],[18,20,["H8242"]],[20,22,["H935"]],[22,25,["H1004"]],[25,28,["H3068"]]]},{"k":18354,"v":[[0,3,["H7971","(H853)"]],[3,4,["H471"]],[4,5,["H834"]],[5,7,["H5921"]],[7,9,["H1004"]],[9,11,["H7644"]],[11,13,["H5608"]],[13,16,["H2205"]],[16,19,["H3548"]],[19,20,["H3680"]],[20,22,["H8242"]],[22,23,["H413"]],[23,24,["H3470"]],[24,26,["H5030"]],[26,28,["H1121"]],[28,30,["H531"]]]},{"k":18355,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3541"]],[6,7,["H559"]],[7,8,["H2396"]],[8,9,["H2088"]],[9,10,["H3117"]],[10,13,["H3117"]],[13,15,["H6869"]],[15,18,["H8433"]],[18,21,["H5007"]],[21,22,["H3588"]],[22,24,["H1121"]],[24,26,["H935"]],[26,27,["H5704"]],[27,29,["H4866"]],[29,33,["H369"]],[33,34,["H3581"]],[34,37,["H3205"]]]},{"k":18356,"v":[[0,3,["H194"]],[3,5,["H3068"]],[5,7,["H430"]],[7,9,["H8085","(H853)"]],[9,11,["H1697"]],[11,13,["H7262"]],[13,14,["H834"]],[14,16,["H4428"]],[16,18,["H804"]],[18,20,["H113"]],[20,22,["H7971"]],[22,24,["H2778"]],[24,26,["H2416"]],[26,27,["H430"]],[27,30,["H3198"]],[30,32,["H1697"]],[32,33,["H834"]],[33,35,["H3068"]],[35,37,["H430"]],[37,39,["H8085"]],[39,42,["H5375"]],[42,44,["H8605"]],[44,45,["H1157"]],[45,47,["H7611"]],[47,50,["H4672"]]]},{"k":18357,"v":[[0,3,["H5650"]],[3,5,["H4428"]],[5,6,["H2396"]],[6,7,["H935"]],[7,8,["H413"]],[8,9,["H3470"]]]},{"k":18358,"v":[[0,2,["H3470"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H3541"]],[6,9,["H559"]],[9,10,["H413"]],[10,12,["H113"]],[12,13,["H3541"]],[13,14,["H559"]],[14,16,["H3068"]],[16,19,["H3372","H408"]],[19,20,["H4480","H6440"]],[20,22,["H1697"]],[22,23,["H834"]],[23,26,["H8085"]],[26,27,["H834"]],[27,29,["H5288"]],[29,32,["H4428"]],[32,34,["H804"]],[34,36,["H1442"]],[36,37,[]]]},{"k":18359,"v":[[0,1,["H2009"]],[1,4,["H5414"]],[4,6,["H7307"]],[6,12,["H8085"]],[12,14,["H8052"]],[14,16,["H7725"]],[16,17,["H413"]],[17,20,["H776"]],[20,27,["H5307"]],[27,30,["H2719"]],[30,34,["H776"]]]},{"k":18360,"v":[[0,2,["H7262"]],[2,3,["H7725"]],[3,5,["H4672","(H853)"]],[5,7,["H4428"]],[7,9,["H804"]],[9,10,["H3898"]],[10,11,["H5921"]],[11,12,["H3841"]],[12,13,["H3588"]],[13,16,["H8085"]],[16,17,["H3588"]],[17,20,["H5265"]],[20,22,["H4480","H3923"]]]},{"k":18361,"v":[[0,3,["H8085"]],[3,4,["H559"]],[4,5,["H5921"]],[5,6,["H8640"]],[6,7,["H4428"]],[7,9,["H3568"]],[9,13,["H3318"]],[13,16,["H3898"]],[16,17,["H854"]],[17,22,["H8085"]],[22,25,["H7971"]],[25,26,["H4397"]],[26,27,["H413"]],[27,28,["H2396"]],[28,29,["H559"]]]},{"k":18362,"v":[[0,1,["H3541"]],[1,4,["H559"]],[4,5,["H413"]],[5,6,["H2396"]],[6,7,["H4428"]],[7,9,["H3063"]],[9,10,["H559"]],[10,12,["H408"]],[12,14,["H430"]],[14,16,["H834"]],[16,17,["H859"]],[17,18,["H982"]],[18,19,["H5377"]],[19,21,["H559"]],[21,22,["H3389"]],[22,24,["H3808"]],[24,26,["H5414"]],[26,29,["H3027"]],[29,32,["H4428"]],[32,34,["H804"]]]},{"k":18363,"v":[[0,1,["H2009"]],[1,2,["H859"]],[2,4,["H8085"]],[4,5,["H834"]],[5,7,["H4428"]],[7,9,["H804"]],[9,11,["H6213"]],[11,13,["H3605"]],[13,14,["H776"]],[14,18,["H2763"]],[18,21,["H859"]],[21,23,["H5337"]]]},{"k":18364,"v":[[0,3,["H430"]],[3,6,["H1471"]],[6,7,["H5337"]],[7,9,["H834"]],[9,11,["H1"]],[11,13,["H7843"]],[13,14,["(H853)"]],[14,15,["H1470"]],[15,17,["H2771"]],[17,19,["H7530"]],[19,22,["H1121"]],[22,24,["H5729"]],[24,25,["H834"]],[25,28,["H8515"]]]},{"k":18365,"v":[[0,1,["H346"]],[1,4,["H4428"]],[4,6,["H2574"]],[6,9,["H4428"]],[9,11,["H774"]],[11,14,["H4428"]],[14,17,["H5892"]],[17,19,["H5617"]],[19,20,["H2012"]],[20,22,["H5755"]]]},{"k":18366,"v":[[0,2,["H2396"]],[2,3,["H3947","(H853)"]],[3,5,["H5612"]],[5,8,["H4480","H3027"]],[8,11,["H4397"]],[11,13,["H7121"]],[13,16,["H2396"]],[16,18,["H5927"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,26,["H6566"]],[26,28,["H6440"]],[28,30,["H3068"]]]},{"k":18367,"v":[[0,2,["H2396"]],[2,3,["H6419"]],[3,4,["H413"]],[4,6,["H3068"]],[6,7,["H559"]]]},{"k":18368,"v":[[0,2,["H3068"]],[2,4,["H6635"]],[4,5,["H430"]],[5,7,["H3478"]],[7,9,["H3427"]],[9,12,["H3742"]],[12,13,["H859"]],[13,16,["H430"]],[16,19,["H905"]],[19,21,["H3605"]],[21,23,["H4467"]],[23,26,["H776"]],[26,27,["H859"]],[27,29,["H6213","(H853)"]],[29,30,["H8064"]],[30,32,["H776"]]]},{"k":18369,"v":[[0,1,["H5186"]],[1,3,["H241"]],[3,5,["H3068"]],[5,7,["H8085"]],[7,8,["H6491"]],[8,10,["H5869"]],[10,12,["H3068"]],[12,14,["H7200"]],[14,16,["H8085","(H853)"]],[16,17,["H3605"]],[17,19,["H1697"]],[19,21,["H5576"]],[21,22,["H834"]],[22,24,["H7971"]],[24,26,["H2778"]],[26,28,["H2416"]],[28,29,["H430"]]]},{"k":18370,"v":[[0,3,["H551"]],[3,4,["H3068"]],[4,6,["H4428"]],[6,8,["H804"]],[8,11,["H2717","(H853)"]],[11,12,["H3605"]],[12,14,["H776"]],[14,17,["H776"]]]},{"k":18371,"v":[[0,3,["H5414","(H853)"]],[3,5,["H430"]],[5,8,["H784"]],[8,9,["H3588"]],[9,10,["H1992"]],[10,12,["H3808"]],[12,13,["H430"]],[13,14,["H3588","H518"]],[14,16,["H4639"]],[16,18,["H120"]],[18,19,["H3027"]],[19,20,["H6086"]],[20,22,["H68"]],[22,26,["H6"]],[26,27,[]]]},{"k":18372,"v":[[0,1,["H6258"]],[1,4,["H3068"]],[4,6,["H430"]],[6,7,["H3467"]],[7,11,["H4480","H3027"]],[11,13,["H3605"]],[13,15,["H4467"]],[15,18,["H776"]],[18,20,["H3045"]],[20,21,["H3588"]],[21,22,["H859"]],[22,25,["H3068"]],[25,28,["H905"]]]},{"k":18373,"v":[[0,2,["H3470"]],[2,4,["H1121"]],[4,6,["H531"]],[6,7,["H7971"]],[7,8,["H413"]],[8,9,["H2396"]],[9,10,["H559"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H3068"]],[14,15,["H430"]],[15,17,["H3478"]],[17,18,["H834"]],[18,21,["H6419"]],[21,22,["H413"]],[22,24,["H413"]],[24,25,["H5576"]],[25,26,["H4428"]],[26,28,["H804"]]]},{"k":18374,"v":[[0,1,["H2088"]],[1,4,["H1697"]],[4,5,["H834"]],[5,7,["H3068"]],[7,9,["H1696"]],[9,10,["H5921"]],[10,13,["H1330"]],[13,15,["H1323"]],[15,17,["H6726"]],[17,19,["H936"]],[19,25,["H3932"]],[25,27,["H1323"]],[27,29,["H3389"]],[29,31,["H5128"]],[31,33,["H7218"]],[33,34,["H310"]],[34,35,[]]]},{"k":18375,"v":[[0,0,["(H853)"]],[0,1,["H4310"]],[1,4,["H2778"]],[4,6,["H1442"]],[6,8,["H5921"]],[8,9,["H4310"]],[9,12,["H7311"]],[12,14,["H6963"]],[14,17,["H5375"]],[17,19,["H5869"]],[19,21,["H4791"]],[21,23,["H413"]],[23,26,["H6918"]],[26,28,["H3478"]]]},{"k":18376,"v":[[0,1,["H3027"]],[1,3,["H5650"]],[3,6,["H2778"]],[6,8,["H136"]],[8,11,["H559"]],[11,14,["H7230"]],[14,17,["H7393"]],[17,19,["H589"]],[19,21,["H5927"]],[21,24,["H4791"]],[24,27,["H2022"]],[27,30,["H3411"]],[30,32,["H3844"]],[32,37,["H3772"]],[37,39,["H6967"]],[39,40,["H730"]],[40,44,["H4005"]],[44,46,["H1265"]],[46,51,["H935"]],[51,54,["H4791"]],[54,57,["H7093"]],[57,60,["H3293"]],[60,63,["H3759"]]]},{"k":18377,"v":[[0,1,["H589"]],[1,3,["H6979"]],[3,5,["H8354"]],[5,6,["H4325"]],[6,10,["H3709"]],[10,13,["H6471"]],[13,17,["H2717"]],[17,18,["H3605"]],[18,20,["H2975"]],[20,24,["H4693"]]]},{"k":18378,"v":[[0,3,["H3808"]],[3,4,["H8085"]],[4,6,["H4480","H7350"]],[6,10,["H6213"]],[10,14,["H6924"]],[14,15,["H4480","H3117"]],[15,19,["H3335"]],[19,21,["H6258"]],[21,27,["H935"]],[27,31,["H1961"]],[31,34,["H7582"]],[34,35,["H1219"]],[35,36,["H5892"]],[36,38,["H5327"]],[38,39,["H1530"]]]},{"k":18379,"v":[[0,3,["H3427"]],[3,6,["H7116"]],[6,7,["H3027"]],[7,10,["H2865"]],[10,12,["H954"]],[12,14,["H1961"]],[14,17,["H6212"]],[17,20,["H7704"]],[20,24,["H3419"]],[24,25,["H1877"]],[25,28,["H2682"]],[28,31,["H1406"]],[31,35,["H7711"]],[35,36,["H6440"]],[36,40,["H7054"]]]},{"k":18380,"v":[[0,3,["H3045"]],[3,5,["H3427"]],[5,9,["H3318"]],[9,13,["H935"]],[13,16,["H7264"]],[16,17,["H413"]],[17,18,[]]]},{"k":18381,"v":[[0,1,["H3282"]],[1,3,["H7264"]],[3,4,["H413"]],[4,8,["H7600"]],[8,11,["H5927"]],[11,14,["H241"]],[14,18,["H7760"]],[18,20,["H2397"]],[20,23,["H639"]],[23,26,["H4964"]],[26,29,["H8193"]],[29,35,["H7725"]],[35,38,["H1870"]],[38,40,["H834"]],[40,42,["H935"]]]},{"k":18382,"v":[[0,2,["H2088"]],[2,6,["H226"]],[6,11,["H398"]],[11,13,["H8141"]],[13,18,["H5599"]],[18,21,["H8145"]],[21,22,["H8141"]],[22,28,["H7823"]],[28,32,["H7992"]],[32,33,["H8141"]],[33,34,["H2232"]],[34,37,["H7114"]],[37,39,["H5193"]],[39,40,["H3754"]],[40,42,["H398"]],[42,44,["H6529"]],[44,45,[]]]},{"k":18383,"v":[[0,3,["H7604"]],[3,6,["H6413"]],[6,9,["H1004"]],[9,11,["H3063"]],[11,13,["H3254"]],[13,15,["H8328"]],[15,16,["H4295"]],[16,18,["H6213"]],[18,19,["H6529"]],[19,20,["H4605"]]]},{"k":18384,"v":[[0,1,["H3588"]],[1,4,["H4480","H3389"]],[4,7,["H3318"]],[7,9,["H7611"]],[9,13,["H6413"]],[13,16,["H4480","H2022"]],[16,17,["H6726"]],[17,19,["H7068"]],[19,22,["H3068"]],[22,24,["H6635"]],[24,26,["H6213"]],[26,27,["H2063"]]]},{"k":18385,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H413"]],[6,8,["H4428"]],[8,10,["H804"]],[10,13,["H3808"]],[13,14,["H935"]],[14,15,["H413"]],[15,16,["H2063"]],[16,17,["H5892"]],[17,18,["H3808"]],[18,19,["H3384"]],[19,21,["H2671"]],[21,22,["H8033"]],[22,23,["H3808"]],[23,25,["H6923"]],[25,28,["H4043"]],[28,29,["H3808"]],[29,30,["H8210"]],[30,32,["H5550"]],[32,33,["H5921"]],[33,34,[]]]},{"k":18386,"v":[[0,3,["H1870"]],[3,4,["H834"]],[4,6,["H935"]],[6,12,["H7725"]],[12,15,["H3808"]],[15,16,["H935"]],[16,17,["H413"]],[17,18,["H2063"]],[18,19,["H5892"]],[19,20,["H5002"]],[20,22,["H3068"]]]},{"k":18387,"v":[[0,4,["H1598","H5921"]],[4,5,["H2063"]],[5,6,["H5892"]],[6,8,["H3467"]],[8,13,["H4616"]],[13,17,["H5650"]],[17,18,["H1732"]],[18,19,["H4616"]]]},{"k":18388,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,8,["H3318"]],[8,10,["H5221"]],[10,13,["H4264"]],[13,16,["H804"]],[16,18,["H3967"]],[18,20,["H8084"]],[20,22,["H2568"]],[22,23,["H505"]],[23,28,["H7925"]],[28,31,["H1242"]],[31,32,["H2009"]],[32,35,["H3605"]],[35,36,["H4191"]],[36,37,["H6297"]]]},{"k":18389,"v":[[0,2,["H5576"]],[2,3,["H4428"]],[3,5,["H804"]],[5,6,["H5265"]],[6,8,["H1980"]],[8,10,["H7725"]],[10,12,["H3427"]],[12,14,["H5210"]]]},{"k":18390,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,9,["H7812"]],[9,12,["H1004"]],[12,14,["H5268"]],[14,16,["H430"]],[16,18,["H152"]],[18,20,["H8272"]],[20,22,["H1121"]],[22,23,["H5221"]],[23,27,["H2719"]],[27,29,["H1992"]],[29,30,["H4422"]],[30,33,["H776"]],[33,35,["H780"]],[35,37,["H634"]],[37,39,["H1121"]],[39,40,["H4427"]],[40,43,["H8478"]]]},{"k":18391,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,6,["H2470","H2396"]],[6,8,["H4191"]],[8,10,["H3470"]],[10,12,["H5030"]],[12,14,["H1121"]],[14,16,["H531"]],[16,17,["H935"]],[17,18,["H413"]],[18,21,["H559"]],[21,22,["H413"]],[22,24,["H3541"]],[24,25,["H559"]],[25,27,["H3068"]],[27,32,["H6680","H1004"]],[32,33,["H3588"]],[33,34,["H859"]],[34,36,["H4191"]],[36,38,["H3808"]],[38,39,["H2421"]]]},{"k":18392,"v":[[0,2,["H2396"]],[2,3,["H5437"]],[3,5,["H6440"]],[5,6,["H413"]],[6,8,["H7023"]],[8,10,["H6419"]],[10,11,["H413"]],[11,13,["H3068"]]]},{"k":18393,"v":[[0,2,["H559"]],[2,3,["H2142"]],[3,4,["H4994"]],[4,6,["H3068"]],[6,9,["H577","(H853)"]],[9,10,["H834"]],[10,13,["H1980"]],[13,14,["H6440"]],[14,17,["H571"]],[17,21,["H8003"]],[21,22,["H3820"]],[22,25,["H6213"]],[25,29,["H2896"]],[29,32,["H5869"]],[32,34,["H2396"]],[34,35,["H1058"]],[35,36,["H1419","H1065"]]]},{"k":18394,"v":[[0,2,["H1961"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H413"]],[8,9,["H3470"]],[9,10,["H559"]]]},{"k":18395,"v":[[0,1,["H1980"]],[1,3,["H559"]],[3,4,["H413"]],[4,5,["H2396"]],[5,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,11,["H430"]],[11,13,["H1732"]],[13,15,["H1"]],[15,18,["H8085","(H853)"]],[18,20,["H8605"]],[20,23,["H7200","(H853)"]],[23,25,["H1832"]],[25,26,["H2009"]],[26,29,["H3254"]],[29,30,["H5921"]],[30,32,["H3117"]],[32,33,["H2568","H6240"]],[33,34,["H8141"]]]},{"k":18396,"v":[[0,4,["H5337"]],[4,7,["H2063"]],[7,8,["H5892"]],[8,12,["H4480","H3709"]],[12,15,["H4428"]],[15,17,["H804"]],[17,21,["H1598","H5921"]],[21,22,["H2063"]],[22,23,["H5892"]]]},{"k":18397,"v":[[0,2,["H2088"]],[2,6,["H226"]],[6,9,["H4480","H854"]],[9,11,["H3068"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H6213","(H853)"]],[16,17,["H2088"]],[17,18,["H1697"]],[18,19,["H834"]],[19,22,["H1696"]]]},{"k":18398,"v":[[0,1,["H2009"]],[1,5,["H7725","(H853)"]],[5,7,["H6738"]],[7,10,["H4609"]],[10,11,["H834"]],[11,14,["H3381"]],[14,17,["H8121"]],[17,18,["H4609"]],[18,20,["H271"]],[20,21,["H6235"]],[21,22,["H4609"]],[22,23,["H322"]],[23,26,["H8121"]],[26,27,["H7725"]],[27,28,["H6235"]],[28,29,["H4609"]],[29,31,["H834"]],[31,32,["H4609"]],[32,36,["H3381"]]]},{"k":18399,"v":[[0,2,["H4385"]],[2,4,["H2396"]],[4,5,["H4428"]],[5,7,["H3063"]],[7,12,["H2470"]],[12,15,["H2421"]],[15,18,["H4480","H2483"]]]},{"k":18400,"v":[[0,1,["H589"]],[1,2,["H559"]],[2,6,["H1824"]],[6,9,["H3117"]],[9,12,["H1980"]],[12,15,["H8179"]],[15,18,["H7585"]],[18,21,["H6485"]],[21,24,["H3499"]],[24,27,["H8141"]]]},{"k":18401,"v":[[0,2,["H559"]],[2,5,["H3808"]],[5,6,["H7200"]],[6,8,["H3050"]],[8,11,["H3050"]],[11,14,["H776"]],[14,17,["H2416"]],[17,20,["H5027"]],[20,21,["H120"]],[21,22,["H3808"]],[22,23,["H5750"]],[23,24,["H5973"]],[24,26,["H3427"]],[26,29,["H2309"]]]},{"k":18402,"v":[[0,2,["H1755"]],[2,4,["H5265"]],[4,7,["H1540"]],[7,8,["H4480"]],[8,12,["H7473"]],[12,13,["H168"]],[13,17,["H7088"]],[17,20,["H707"]],[20,22,["H2416"]],[22,27,["H1214"]],[27,30,["H4480","H1803"]],[30,32,["H4480","H3117"]],[32,34,["H5704"]],[34,35,["H3915"]],[35,40,["H7999"]],[40,42,[]]]},{"k":18403,"v":[[0,2,["H7737"]],[2,3,["H5704"]],[3,4,["H1242"]],[4,8,["H738"]],[8,9,["H3651"]],[9,12,["H7665"]],[12,13,["H3605"]],[13,15,["H6106"]],[15,17,["H4480","H3117"]],[17,19,["H5704"]],[19,20,["H3915"]],[20,25,["H7999"]],[25,27,[]]]},{"k":18404,"v":[[0,3,["H5483"]],[3,6,["H5693"]],[6,7,["H3651"]],[7,10,["H6850"]],[10,13,["H1897"]],[13,16,["H3123"]],[16,18,["H5869"]],[18,19,["H1809"]],[19,22,["H4791"]],[22,24,["H136"]],[24,27,["H6234"]],[27,28,["H6149"]],[28,30,[]]]},{"k":18405,"v":[[0,1,["H4100"]],[1,4,["H1696"]],[4,8,["H559"]],[8,12,["H1931"]],[12,14,["H6213"]],[14,19,["H1718"]],[19,20,["H3605"]],[20,22,["H8141"]],[22,23,["H5921"]],[23,25,["H4751"]],[25,28,["H5315"]]]},{"k":18406,"v":[[0,2,["H136"]],[2,3,["H5921"]],[3,7,["H2421"]],[7,10,["H3605"]],[10,11,["H2004"]],[11,15,["H2416"]],[15,18,["H7307"]],[18,22,["H2492"]],[22,28,["H2421"]]]},{"k":18407,"v":[[0,1,["H2009"]],[1,3,["H7965"]],[3,7,["H4751","H4843"]],[7,9,["H859"]],[9,12,["H2836"]],[12,15,["H5315"]],[15,20,["H4480","H7845"]],[20,22,["H1097"]],[22,23,["H3588"]],[23,26,["H7993"]],[26,27,["H3605"]],[27,29,["H2399"]],[29,30,["H310"]],[30,32,["H1460"]]]},{"k":18408,"v":[[0,1,["H3588"]],[1,3,["H7585"]],[3,4,["H3808"]],[4,5,["H3034"]],[5,7,["H4194"]],[7,10,["H1984"]],[10,15,["H3381"]],[15,18,["H953"]],[18,19,["H3808"]],[19,20,["H7663"]],[20,21,["H413"]],[21,23,["H571"]]]},{"k":18409,"v":[[0,2,["H2416"]],[2,4,["H2416"]],[4,5,["H1931"]],[5,7,["H3034"]],[7,13,["H3117"]],[13,15,["H1"]],[15,18,["H1121"]],[18,21,["H3045","H413"]],[21,23,["H571"]]]},{"k":18410,"v":[[0,2,["H3068"]],[2,6,["H3467"]],[6,13,["H5059"]],[13,17,["H5058"]],[17,18,["H3605"]],[18,20,["H3117"]],[20,23,["H2416"]],[23,24,["H5921"]],[24,26,["H1004"]],[26,29,["H3068"]]]},{"k":18411,"v":[[0,2,["H3470"]],[2,4,["H559"]],[4,7,["H5375"]],[7,9,["H1690"]],[9,11,["H8384"]],[11,17,["H4799"]],[17,18,["H5921"]],[18,20,["H7822"]],[20,24,["H2421"]]]},{"k":18412,"v":[[0,1,["H2396"]],[1,4,["H559"]],[4,5,["H4100"]],[5,8,["H226"]],[8,9,["H3588"]],[9,13,["H5927"]],[13,16,["H1004"]],[16,19,["H3068"]]]},{"k":18413,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,4,["H4757"]],[4,6,["H1121"]],[6,8,["H1081"]],[8,9,["H4428"]],[9,11,["H894"]],[11,12,["H7971"]],[12,13,["H5612"]],[13,16,["H4503"]],[16,17,["H413"]],[17,18,["H2396"]],[18,22,["H8085"]],[22,23,["H3588"]],[23,27,["H2470"]],[27,30,["H2388"]]]},{"k":18414,"v":[[0,2,["H2396"]],[2,4,["H8055"]],[4,5,["H5921"]],[5,8,["H7200"]],[8,9,["(H853)"]],[9,11,["H1004"]],[11,15,["H5238","(H853)"]],[15,17,["H3701"]],[17,20,["H2091"]],[20,23,["H1314"]],[23,26,["H2896"]],[26,27,["H8081"]],[27,29,["H3605"]],[29,31,["H1004"]],[31,34,["H3627"]],[34,36,["H3605"]],[36,37,["H834"]],[37,39,["H4672"]],[39,42,["H214"]],[42,44,["H1961"]],[44,45,["H3808","H1697"]],[45,48,["H1004"]],[48,51,["H3605"]],[51,53,["H4475"]],[53,54,["H834"]],[54,55,["H2396"]],[55,56,["H7200"]],[56,58,["H3808"]]]},{"k":18415,"v":[[0,2,["H935"]],[2,3,["H3470"]],[3,5,["H5030"]],[5,6,["H413"]],[6,7,["H4428"]],[7,8,["H2396"]],[8,10,["H559"]],[10,11,["H413"]],[11,13,["H4100"]],[13,14,["H559"]],[14,15,["H428"]],[15,16,["H582"]],[16,19,["H4480","H370"]],[19,20,["H935"]],[20,22,["H413"]],[22,25,["H2396"]],[25,26,["H559"]],[26,29,["H935"]],[29,32,["H7350"]],[32,33,["H4480","H776"]],[33,34,["H413"]],[34,38,["H4480","H894"]]]},{"k":18416,"v":[[0,2,["H559"]],[2,4,["H4100"]],[4,7,["H7200"]],[7,10,["H1004"]],[10,12,["H2396"]],[12,13,["H559","(H853)"]],[13,14,["H3605"]],[14,15,["H834"]],[15,19,["H1004"]],[19,22,["H7200"]],[22,24,["H1961"]],[24,25,["H3808","H1697"]],[25,28,["H214"]],[28,29,["H834"]],[29,32,["H3808"]],[32,33,["H7200"]],[33,34,[]]]},{"k":18417,"v":[[0,2,["H559"]],[2,3,["H3470"]],[3,4,["H413"]],[4,5,["H2396"]],[5,6,["H8085"]],[6,8,["H1697"]],[8,11,["H3068"]],[11,13,["H6635"]]]},{"k":18418,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,6,["H3605"]],[6,7,["H834"]],[7,11,["H1004"]],[11,14,["H834"]],[14,16,["H1"]],[16,21,["H686"]],[21,22,["H5704"]],[22,23,["H2088"]],[23,24,["H3117"]],[24,27,["H5375"]],[27,29,["H894"]],[29,30,["H3808","H1697"]],[30,33,["H3498"]],[33,34,["H559"]],[34,36,["H3068"]]]},{"k":18419,"v":[[0,4,["H4480","H1121"]],[4,5,["H834"]],[5,7,["H3318"]],[7,8,["H4480"]],[8,10,["H834"]],[10,13,["H3205"]],[13,17,["H3947"]],[17,21,["H1961"]],[21,22,["H5631"]],[22,25,["H1964"]],[25,28,["H4428"]],[28,30,["H894"]]]},{"k":18420,"v":[[0,2,["H559"]],[2,3,["H2396"]],[3,4,["H413"]],[4,5,["H3470"]],[5,6,["H2896"]],[6,9,["H1697"]],[9,12,["H3068"]],[12,13,["H834"]],[13,16,["H1696"]],[16,18,["H559"]],[18,20,["H3588"]],[20,23,["H1961"]],[23,24,["H7965"]],[24,26,["H571"]],[26,29,["H3117"]]]},{"k":18421,"v":[[0,1,["H5162"]],[1,3,["H5162"]],[3,6,["H5971"]],[6,7,["H559"]],[7,9,["H430"]]]},{"k":18422,"v":[[0,1,["H1696"]],[1,3,["H5921","H3820"]],[3,5,["H3389"]],[5,7,["H7121"]],[7,8,["H413"]],[8,10,["H3588"]],[10,12,["H6635"]],[12,14,["H4390"]],[14,15,["H3588"]],[15,17,["H5771"]],[17,19,["H7521"]],[19,20,["H3588"]],[20,23,["H3947"]],[23,26,["H3068"]],[26,27,["H4480","H3027"]],[27,28,["H3718"]],[28,30,["H3605"]],[30,32,["H2403"]]]},{"k":18423,"v":[[0,2,["H6963"]],[2,6,["H7121"]],[6,9,["H4057"]],[9,10,["H6437"]],[10,13,["H1870"]],[13,16,["H3068"]],[16,18,["H3474"]],[18,21,["H6160"]],[21,23,["H4546"]],[23,26,["H430"]]]},{"k":18424,"v":[[0,1,["H3605"]],[1,2,["H1516"]],[2,5,["H5375"]],[5,7,["H3605"]],[7,8,["H2022"]],[8,10,["H1389"]],[10,14,["H8213"]],[14,17,["H6121"]],[17,20,["H1961"]],[20,21,["H4334"]],[21,25,["H7406"]],[25,26,["H1237"]]]},{"k":18425,"v":[[0,3,["H3519"]],[3,6,["H3068"]],[6,9,["H1540"]],[9,11,["H3605"]],[11,12,["H1320"]],[12,14,["H7200"]],[14,16,["H3162"]],[16,17,["H3588"]],[17,19,["H6310"]],[19,22,["H3068"]],[22,24,["H1696"]],[24,25,[]]]},{"k":18426,"v":[[0,2,["H6963"]],[2,3,["H559"]],[3,4,["H7121"]],[4,7,["H559"]],[7,8,["H4100"]],[8,11,["H7121"]],[11,12,["H3605"]],[12,13,["H1320"]],[13,15,["H2682"]],[15,17,["H3605"]],[17,19,["H2617"]],[19,24,["H6731"]],[24,27,["H7704"]]]},{"k":18427,"v":[[0,2,["H2682"]],[2,3,["H3001"]],[3,5,["H6731"]],[5,6,["H5034"]],[6,7,["H3588"]],[7,9,["H7307"]],[9,12,["H3068"]],[12,13,["H5380"]],[13,16,["H403"]],[16,18,["H5971"]],[18,20,["H2682"]]]},{"k":18428,"v":[[0,2,["H2682"]],[2,3,["H3001"]],[3,5,["H6731"]],[5,6,["H5034"]],[6,9,["H1697"]],[9,12,["H430"]],[12,14,["H6965"]],[14,16,["H5769"]]]},{"k":18429,"v":[[0,2,["H6726"]],[2,6,["H1319"]],[6,9,["H5927"]],[9,10,["H5921"]],[10,12,["H1364"]],[12,13,["H2022"]],[13,15,["H3389"]],[15,19,["H1319"]],[19,21,["H7311"]],[21,23,["H6963"]],[23,25,["H3581"]],[25,28,["H7311"]],[28,31,["H3372","H408"]],[31,32,["H559"]],[32,35,["H5892"]],[35,37,["H3063"]],[37,38,["H2009"]],[38,40,["H430"]]]},{"k":18430,"v":[[0,1,["H2009"]],[1,3,["H136"]],[3,4,["H3069"]],[4,6,["H935"]],[6,8,["H2389"]],[8,12,["H2220"]],[12,14,["H4910"]],[14,17,["H2009"]],[17,19,["H7939"]],[19,21,["H854"]],[21,25,["H6468"]],[25,26,["H6440"]],[26,27,[]]]},{"k":18431,"v":[[0,3,["H7462"]],[3,5,["H5739"]],[5,8,["H7462"]],[8,11,["H6908"]],[11,13,["H2922"]],[13,16,["H2220"]],[16,18,["H5375"]],[18,22,["H2436"]],[22,26,["H5095"]],[26,31,["H5763"]]]},{"k":18432,"v":[[0,1,["H4310"]],[1,3,["H4058"]],[3,5,["H4325"]],[5,11,["H8168"]],[11,14,["H8505"]],[14,15,["H8064"]],[15,18,["H2239"]],[18,20,["H3557"]],[20,22,["H6083"]],[22,25,["H776"]],[25,28,["H7991"]],[28,30,["H8254"]],[30,32,["H2022"]],[32,34,["H6425"]],[34,37,["H1389"]],[37,40,["H3976"]]]},{"k":18433,"v":[[0,1,["H4310"]],[1,3,["H8505","(H853)"]],[3,5,["H7307"]],[5,8,["H3068"]],[8,12,["H376","H6098"]],[12,14,["H3045"]],[14,15,[]]]},{"k":18434,"v":[[0,0,["(H853)"]],[0,2,["H4310"]],[2,5,["H3289"]],[5,8,["H995"]],[8,11,["H3925"]],[11,15,["H734"]],[15,17,["H4941"]],[17,19,["H3925"]],[19,21,["H1847"]],[21,23,["H3045"]],[23,27,["H1870"]],[27,29,["H8394"]]]},{"k":18435,"v":[[0,1,["H2005"]],[1,3,["H1471"]],[3,7,["H4752"]],[7,10,["H4480","H1805"]],[10,13,["H2803"]],[13,17,["H7834"]],[17,20,["H3976"]],[20,21,["H2005"]],[21,24,["H5190"]],[24,26,["H339"]],[26,31,["H1851"]]]},{"k":18436,"v":[[0,2,["H3844"]],[2,4,["H369"]],[4,5,["H1767"]],[5,7,["H1197"]],[7,8,["H369"]],[8,10,["H2416"]],[10,12,["H1767"]],[12,16,["H5930"]]]},{"k":18437,"v":[[0,1,["H3605"]],[1,2,["H1471"]],[2,3,["H5048"]],[3,7,["H369"]],[7,11,["H2803"]],[11,16,["H4480","H657"]],[16,18,["H8414"]]]},{"k":18438,"v":[[0,1,["H413"]],[1,2,["H4310"]],[2,6,["H1819"]],[6,7,["H410"]],[7,9,["H4100"]],[9,10,["H1823"]],[10,13,["H6186"]],[13,15,[]]]},{"k":18439,"v":[[0,2,["H2796"]],[2,3,["H5258"]],[3,6,["H6459"]],[6,9,["H6884"]],[9,12,["H7554"]],[12,14,["H2091"]],[14,16,["H6884"]],[16,17,["H3701"]],[17,18,["H7577"]]]},{"k":18440,"v":[[0,5,["H5533"]],[5,10,["H8641"]],[10,11,["H977"]],[11,13,["H6086"]],[13,16,["H3808"]],[16,17,["H7537"]],[17,19,["H1245"]],[19,23,["H2450"]],[23,24,["H2796"]],[24,26,["H3559"]],[26,29,["H6459"]],[29,32,["H3808"]],[32,34,["H4131"]]]},{"k":18441,"v":[[0,3,["H3808"]],[3,4,["H3045"]],[4,7,["H3808"]],[7,8,["H8085"]],[8,11,["H3808"]],[11,13,["H5046"]],[13,17,["H4480","H7218"]],[17,20,["H3808"]],[20,21,["H995"]],[21,24,["H4480","H4146"]],[24,27,["H776"]]]},{"k":18442,"v":[[0,5,["H3427"]],[5,6,["H5921"]],[6,8,["H2329"]],[8,11,["H776"]],[11,14,["H3427"]],[14,18,["H2284"]],[18,21,["H5186"]],[21,23,["H8064"]],[23,26,["H1852"]],[26,30,["H4969"]],[30,33,["H168"]],[33,36,["H3427"]]]},{"k":18443,"v":[[0,2,["H5414"]],[2,4,["H7336"]],[4,6,["H369"]],[6,8,["H6213"]],[8,10,["H8199"]],[10,13,["H776"]],[13,15,["H8414"]]]},{"k":18444,"v":[[0,1,["H637"]],[1,4,["H1077"]],[4,6,["H5193"]],[6,7,["H637"]],[7,10,["H1077"]],[10,12,["H2232"]],[12,13,["H637"]],[13,15,["H1503"]],[15,17,["H1077"]],[17,19,["H8327"]],[19,22,["H776"]],[22,26,["H1571"]],[26,27,["H5398"]],[27,33,["H3001"]],[33,36,["H5591"]],[36,40,["H5375"]],[40,42,["H7179"]]]},{"k":18445,"v":[[0,1,["H413"]],[1,2,["H4310"]],[2,6,["H1819"]],[6,12,["H7737"]],[12,13,["H559"]],[13,16,["H6918"]]]},{"k":18446,"v":[[0,2,["H5375"]],[2,4,["H5869"]],[4,6,["H4791"]],[6,8,["H7200"]],[8,9,["H4310"]],[9,11,["H1254"]],[11,12,["H428"]],[12,16,["H3318"]],[16,18,["H6635"]],[18,20,["H4557"]],[20,22,["H7121"]],[22,24,["H3605"]],[24,26,["H8034"]],[26,29,["H4480","H7230"]],[29,32,["H202"]],[32,37,["H533"]],[37,39,["H3581"]],[39,40,["H3808"]],[40,41,["H376"]],[41,42,["H5737"]]]},{"k":18447,"v":[[0,1,["H4100"]],[1,2,["H559"]],[2,5,["H3290"]],[5,7,["H1696"]],[7,9,["H3478"]],[9,11,["H1870"]],[11,13,["H5641"]],[13,16,["H4480","H3068"]],[16,19,["H4941"]],[19,22,["H5674"]],[22,25,["H4480","H430"]]]},{"k":18448,"v":[[0,3,["H3808"]],[3,4,["H3045"]],[4,7,["H3808"]],[7,8,["H8085"]],[8,11,["H5769"]],[11,12,["H430"]],[12,14,["H3068"]],[14,16,["H1254"]],[16,19,["H7098"]],[19,22,["H776"]],[22,23,["H3286"]],[23,24,["H3808"]],[24,25,["H3808"]],[25,27,["H3021"]],[27,30,["H369"]],[30,31,["H2714"]],[31,34,["H8394"]]]},{"k":18449,"v":[[0,2,["H5414"]],[2,3,["H3581"]],[3,6,["H3287"]],[6,12,["H369"]],[12,13,["H202"]],[13,15,["H7235"]],[15,16,["H6109"]]]},{"k":18450,"v":[[0,3,["H5288"]],[3,5,["H3286"]],[5,8,["H3021"]],[8,12,["H970"]],[12,15,["H3782","H3782"]]]},{"k":18451,"v":[[0,5,["H6960"]],[5,7,["H3068"]],[7,9,["H2498"]],[9,11,["H3581"]],[11,15,["H5927"]],[15,17,["H83"]],[17,19,["H5404"]],[19,22,["H7323"]],[22,24,["H3808"]],[24,26,["H3021"]],[26,30,["H1980"]],[30,32,["H3808"]],[32,33,["H3286"]]]},{"k":18452,"v":[[0,2,["H2790"]],[2,3,["H413"]],[3,6,["H339"]],[6,10,["H3816"]],[10,11,["H2498"]],[11,13,["H3581"]],[13,17,["H5066"]],[17,18,["H227"]],[18,21,["H1696"]],[21,25,["H7126"]],[25,26,["H3162"]],[26,28,["H4941"]]]},{"k":18453,"v":[[0,1,["H4310"]],[1,3,["H5782"]],[3,5,["H6664"]],[5,9,["H4480","H4217"]],[9,10,["H7121"]],[10,14,["H7272"]],[14,15,["H5414"]],[15,17,["H1471"]],[17,18,["H6440"]],[18,23,["H7287"]],[23,25,["H4428"]],[25,27,["H5414"]],[27,31,["H6083"]],[31,34,["H2719"]],[34,37,["H5086"]],[37,38,["H7179"]],[38,41,["H7198"]]]},{"k":18454,"v":[[0,2,["H7291"]],[2,5,["H5674"]],[5,6,["H7965"]],[6,10,["H734"]],[10,14,["H3808"]],[14,15,["H935"]],[15,18,["H7272"]]]},{"k":18455,"v":[[0,1,["H4310"]],[1,3,["H6466"]],[3,5,["H6213"]],[5,7,["H7121"]],[7,9,["H1755"]],[9,12,["H4480","H7218"]],[12,13,["H589"]],[13,15,["H3068"]],[15,17,["H7223"]],[17,19,["H854"]],[19,21,["H314"]],[21,22,["H589"]],[22,24,["H1931"]]]},{"k":18456,"v":[[0,2,["H339"]],[2,3,["H7200"]],[3,6,["H3372"]],[6,8,["H7098"]],[8,11,["H776"]],[11,13,["H2729"]],[13,15,["H7126"]],[15,17,["H857"]]]},{"k":18457,"v":[[0,2,["H5826"]],[2,4,["H376","(H853)"]],[4,6,["H7453"]],[6,10,["H559"]],[10,13,["H251"]],[13,17,["H2388"]]]},{"k":18458,"v":[[0,3,["H2796"]],[3,4,["H2388","(H853)"]],[4,6,["H6884"]],[6,10,["H2505"]],[10,13,["H6360","(H853)"]],[13,16,["H1986"]],[16,18,["H6471"]],[18,19,["H559"]],[19,20,["H1931"]],[20,22,["H2896"]],[22,25,["H1694"]],[25,28,["H2388"]],[28,31,["H4548"]],[31,35,["H3808"]],[35,37,["H4131"]]]},{"k":18459,"v":[[0,2,["H859"]],[2,3,["H3478"]],[3,6,["H5650"]],[6,7,["H3290"]],[7,8,["H834"]],[8,11,["H977"]],[11,13,["H2233"]],[13,15,["H85"]],[15,17,["H157"]]]},{"k":18460,"v":[[0,2,["H834"]],[2,5,["H2388"]],[5,8,["H4480","H7098"]],[8,11,["H776"]],[11,13,["H7121"]],[13,18,["H4480","H678"]],[18,21,["H559"]],[21,24,["H859"]],[24,27,["H5650"]],[27,30,["H977"]],[30,33,["H3808"]],[33,36,["H3988"]]]},{"k":18461,"v":[[0,1,["H3372"]],[1,3,["H408"]],[3,4,["H3588"]],[4,5,["H589"]],[5,7,["H5973"]],[7,10,["H408"]],[10,11,["H8159"]],[11,12,["H3588"]],[12,13,["H589"]],[13,16,["H430"]],[16,19,["H553"]],[19,21,["H637"]],[21,24,["H5826"]],[24,26,["H637"]],[26,29,["H8551"]],[29,34,["H3225"]],[34,37,["H6664"]]]},{"k":18462,"v":[[0,1,["H2005"]],[1,2,["H3605"]],[2,6,["H2734"]],[6,11,["H954"]],[11,13,["H3637"]],[13,16,["H1961"]],[16,18,["H369"]],[18,20,["H376"]],[20,22,["H7379"]],[22,26,["H6"]]]},{"k":18463,"v":[[0,3,["H1245"]],[3,7,["H3808"]],[7,8,["H4672"]],[8,9,["H376"]],[9,13,["H4695"]],[13,16,["H376"]],[16,18,["H4421"]],[18,22,["H1961"]],[22,24,["H369"]],[24,30,["H657"]]]},{"k":18464,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,4,["H3068"]],[4,6,["H430"]],[6,8,["H2388"]],[8,11,["H3225"]],[11,12,["H559"]],[12,15,["H3372"]],[15,16,["H408"]],[16,17,["H589"]],[17,19,["H5826"]],[19,20,[]]]},{"k":18465,"v":[[0,1,["H3372"]],[1,2,["H408"]],[2,4,["H8438"]],[4,5,["H3290"]],[5,8,["H4962"]],[8,10,["H3478"]],[10,11,["H589"]],[11,13,["H5826"]],[13,15,["H5002"]],[15,17,["H3068"]],[17,20,["H1350"]],[20,23,["H6918"]],[23,25,["H3478"]]]},{"k":18466,"v":[[0,1,["H2009"]],[1,4,["H7760"]],[4,7,["H2319"]],[7,8,["H2742"]],[8,10,["H4173"]],[10,11,["H1167"]],[11,12,["H6374"]],[12,15,["H1758"]],[15,17,["H2022"]],[17,21,["H1854"]],[21,24,["H7760"]],[24,26,["H1389"]],[26,28,["H4671"]]]},{"k":18467,"v":[[0,3,["H2219"]],[3,7,["H7307"]],[7,11,["H5375"]],[11,14,["H5591"]],[14,16,["H6327"]],[16,19,["H859"]],[19,21,["H1523"]],[21,24,["H3068"]],[24,27,["H1984"]],[27,31,["H6918"]],[31,33,["H3478"]]]},{"k":18468,"v":[[0,3,["H6041"]],[3,5,["H34"]],[5,6,["H1245"]],[6,7,["H4325"]],[7,11,["H369"]],[11,14,["H3956"]],[14,15,["H5405"]],[15,17,["H6772"]],[17,18,["H589"]],[18,20,["H3068"]],[20,22,["H6030"]],[22,26,["H430"]],[26,28,["H3478"]],[28,30,["H3808"]],[30,31,["H5800"]],[31,32,[]]]},{"k":18469,"v":[[0,3,["H6605"]],[3,4,["H5104"]],[4,5,["H5921"]],[5,7,["H8205"]],[7,9,["H4599"]],[9,12,["H8432"]],[12,15,["H1237"]],[15,18,["H7760"]],[18,20,["H4057"]],[20,22,["H98"]],[22,24,["H4325"]],[24,27,["H6723"]],[27,28,["H776"]],[28,29,["H4161"]],[29,31,["H4325"]]]},{"k":18470,"v":[[0,3,["H5414"]],[3,6,["H4057"]],[6,8,["H730"]],[8,11,["H7848"]],[11,14,["H1918"]],[14,17,["H8081"]],[17,18,["H6086"]],[18,21,["H7760"]],[21,24,["H6160"]],[24,27,["H1265"]],[27,30,["H8410"]],[30,34,["H8391"]],[34,35,["H3162"]]]},{"k":18471,"v":[[0,1,["H4616"]],[1,4,["H7200"]],[4,6,["H3045"]],[6,8,["H7760"]],[8,10,["H7919"]],[10,11,["H3162"]],[11,12,["H3588"]],[12,14,["H3027"]],[14,17,["H3068"]],[17,19,["H6213"]],[19,20,["H2063"]],[20,24,["H6918"]],[24,26,["H3478"]],[26,28,["H1254"]],[28,29,[]]]},{"k":18472,"v":[[0,1,["H7126"]],[1,3,["H7379"]],[3,4,["H559"]],[4,6,["H3068"]],[6,8,["H5066"]],[8,10,["H6110"]],[10,12,["H559"]],[12,14,["H4428"]],[14,16,["H3290"]]]},{"k":18473,"v":[[0,5,["H5066"]],[5,7,["H5046"]],[7,8,["(H853)"]],[8,9,["H834"]],[9,11,["H7136"]],[11,14,["H5046"]],[14,17,["H7223"]],[17,18,["H4100"]],[18,19,["H2007"]],[19,24,["H7760","H3820"]],[24,27,["H3045"]],[27,30,["H319"]],[30,33,["H176"]],[33,34,["H8085"]],[34,39,["H935"]]]},{"k":18474,"v":[[0,1,["H5046"]],[1,7,["H857"]],[7,8,["H268"]],[8,12,["H3045"]],[12,13,["H3588"]],[13,14,["H859"]],[14,16,["H430"]],[16,17,["H637"]],[17,19,["H3190"]],[19,22,["H7489"]],[22,27,["H8159"]],[27,29,["H7200"]],[29,31,["H3162"]]]},{"k":18475,"v":[[0,1,["H2005"]],[1,2,["H859"]],[2,5,["H4480","H369"]],[5,8,["H6467"]],[8,10,["H4480","H659"]],[10,12,["H8441"]],[12,16,["H977"]],[16,17,[]]]},{"k":18476,"v":[[0,4,["H5782"]],[4,8,["H4480","H6828"]],[8,12,["H857"]],[12,15,["H4480","H4217"]],[15,18,["H8121"]],[18,21,["H7121"]],[21,24,["H8034"]],[24,28,["H935"]],[28,30,["H5461"]],[30,31,["H3644"]],[31,33,["H2563"]],[33,35,["H3644"]],[35,37,["H3335"]],[37,38,["H7429"]],[38,39,["H2916"]]]},{"k":18477,"v":[[0,1,["H4310"]],[1,3,["H5046"]],[3,6,["H4480","H7218"]],[6,10,["H3045"]],[10,12,["H4480","H6440"]],[12,16,["H559"]],[16,19,["H6662"]],[19,20,["H637"]],[20,23,["H369"]],[23,25,["H5046"]],[25,26,["H637"]],[26,29,["H369"]],[29,31,["H8085"]],[31,32,["H637"]],[32,35,["H369"]],[35,37,["H8085"]],[37,39,["H561"]]]},{"k":18478,"v":[[0,2,["H7223"]],[2,6,["H6726"]],[6,7,["H2009"]],[7,8,["H2009"]],[8,13,["H5414"]],[13,15,["H3389"]],[15,20,["H1319"]]]},{"k":18479,"v":[[0,3,["H7200"]],[3,7,["H369"]],[7,8,["H376"]],[8,11,["H4480","H428"]],[11,15,["H369"]],[15,16,["H3289"]],[16,20,["H7592"]],[20,24,["H7725"]],[24,26,["H1697"]]]},{"k":18480,"v":[[0,1,["H2005"]],[1,4,["H3605"]],[4,5,["H205"]],[5,7,["H4639"]],[7,9,["H657"]],[9,12,["H5262"]],[12,14,["H7307"]],[14,16,["H8414"]]]},{"k":18481,"v":[[0,1,["H2005"]],[1,3,["H5650"]],[3,6,["H8551"]],[6,8,["H972"]],[8,12,["H5315"]],[12,13,["H7521"]],[13,16,["H5414"]],[16,18,["H7307"]],[18,19,["H5921"]],[19,24,["H3318"]],[24,25,["H4941"]],[25,28,["H1471"]]]},{"k":18482,"v":[[0,3,["H3808"]],[3,4,["H6817"]],[4,5,["H3808"]],[5,7,["H5375"]],[7,8,["H3808"]],[8,11,["H6963"]],[11,14,["H8085"]],[14,17,["H2351"]]]},{"k":18483,"v":[[0,2,["H7533"]],[2,3,["H7070"]],[3,6,["H3808"]],[6,7,["H7665"]],[7,10,["H3544"]],[10,11,["H6594"]],[11,14,["H3808"]],[14,15,["H3518"]],[15,19,["H3318"]],[19,20,["H4941"]],[20,22,["H571"]]]},{"k":18484,"v":[[0,3,["H3808"]],[3,4,["H3543"]],[4,5,["H3808"]],[5,7,["H7533"]],[7,8,["H5704"]],[8,11,["H7760"]],[11,12,["H4941"]],[12,15,["H776"]],[15,18,["H339"]],[18,20,["H3176"]],[20,23,["H8451"]]]},{"k":18485,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,3,["H410"]],[3,5,["H3068"]],[5,8,["H1254"]],[8,10,["H8064"]],[10,14,["H5186"]],[14,18,["H7554"]],[18,20,["H776"]],[20,25,["H6631"]],[25,30,["H5414"]],[30,31,["H5397"]],[31,34,["H5971"]],[34,35,["H5921"]],[35,38,["H7307"]],[38,42,["H1980"]],[42,43,[]]]},{"k":18486,"v":[[0,1,["H589"]],[1,3,["H3068"]],[3,5,["H7121"]],[5,8,["H6664"]],[8,11,["H2388"]],[11,13,["H3027"]],[13,16,["H5341"]],[16,19,["H5414"]],[19,23,["H1285"]],[23,26,["H5971"]],[26,29,["H216"]],[29,32,["H1471"]]]},{"k":18487,"v":[[0,2,["H6491"]],[2,4,["H5787"]],[4,5,["H5869"]],[5,8,["H3318"]],[8,10,["H616"]],[10,13,["H4480","H4525"]],[13,17,["H3427"]],[17,19,["H2822"]],[19,23,["H3608"]],[23,24,["H4480","H1004"]]]},{"k":18488,"v":[[0,1,["H589"]],[1,4,["H3068"]],[4,5,["H1931"]],[5,8,["H8034"]],[8,11,["H3519"]],[11,14,["H3808"]],[14,15,["H5414"]],[15,17,["H312"]],[17,20,["H8416"]],[20,23,["H6456"]]]},{"k":18489,"v":[[0,1,["H2009"]],[1,4,["H7223"]],[4,8,["H935"]],[8,11,["H2319"]],[11,13,["H589"]],[13,14,["H5046"]],[14,15,["H2962"]],[15,18,["H6779"]],[18,20,["H8085"]],[20,23,[]]]},{"k":18490,"v":[[0,1,["H7891"]],[1,4,["H3068"]],[4,6,["H2319"]],[6,7,["H7892"]],[7,10,["H8416"]],[10,13,["H4480","H7097"]],[13,16,["H776"]],[16,20,["H3381"]],[20,23,["H3220"]],[23,28,["H4393"]],[28,30,["H339"]],[30,33,["H3427"]],[33,34,[]]]},{"k":18491,"v":[[0,3,["H4057"]],[3,6,["H5892"]],[6,9,["H5375"]],[9,13,["H2691"]],[13,15,["H6938"]],[15,17,["H3427"]],[17,20,["H3427"]],[20,23,["H5553"]],[23,24,["H7442"]],[24,27,["H6681"]],[27,30,["H4480","H7218"]],[30,33,["H2022"]]]},{"k":18492,"v":[[0,3,["H7760"]],[3,4,["H3519"]],[4,7,["H3068"]],[7,9,["H5046"]],[9,11,["H8416"]],[11,14,["H339"]]]},{"k":18493,"v":[[0,2,["H3068"]],[2,5,["H3318"]],[5,9,["H1368"]],[9,13,["H5782"]],[13,14,["H7068"]],[14,17,["H376"]],[17,19,["H4421"]],[19,22,["H7321"]],[22,23,["H637"]],[23,24,["H6873"]],[24,27,["H1396"]],[27,28,["H5921"]],[28,30,["H341"]]]},{"k":18494,"v":[[0,4,["H4480","H5769"]],[4,7,["H2814"]],[7,11,["H2790"]],[11,14,["H662"]],[14,18,["H6463"]],[18,22,["H3205"]],[22,25,["H5395"]],[25,27,["H7602"]],[27,29,["H3162"]]]},{"k":18495,"v":[[0,4,["H2717"]],[4,5,["H2022"]],[5,7,["H1389"]],[7,10,["H3001"]],[10,11,["H3605"]],[11,13,["H6212"]],[13,17,["H7760"]],[17,19,["H5104"]],[19,20,["H339"]],[20,25,["H3001"]],[25,27,["H98"]]]},{"k":18496,"v":[[0,4,["H1980"]],[4,6,["H5787"]],[6,9,["H1870"]],[9,12,["H3045"]],[12,13,["H3808"]],[13,17,["H1869"]],[17,19,["H5410"]],[19,23,["H3808"]],[23,24,["H3045"]],[24,27,["H7760"]],[27,28,["H4285"]],[28,29,["H216"]],[29,30,["H6440"]],[30,34,["H4625"]],[34,35,["H4334"]],[35,36,["H428"]],[36,37,["H1697"]],[37,40,["H6213"]],[40,44,["H3808"]],[44,45,["H5800"]],[45,46,[]]]},{"k":18497,"v":[[0,4,["H5472"]],[4,5,["H268"]],[5,10,["H954","H1322"]],[10,12,["H982"]],[12,15,["H6459"]],[15,17,["H559"]],[17,21,["H4541"]],[21,22,["H859"]],[22,25,["H430"]]]},{"k":18498,"v":[[0,1,["H8085"]],[1,3,["H2795"]],[3,5,["H5027"]],[5,7,["H5787"]],[7,11,["H7200"]]]},{"k":18499,"v":[[0,1,["H4310"]],[1,3,["H5787"]],[3,4,["H3588","H518"]],[4,6,["H5650"]],[6,8,["H2795"]],[8,11,["H4397"]],[11,14,["H7971"]],[14,15,["H4310"]],[15,17,["H5787"]],[17,22,["H7999"]],[22,24,["H5787"]],[24,27,["H3068"]],[27,28,["H5650"]]]},{"k":18500,"v":[[0,1,["H7200"]],[1,3,["H7227"]],[3,6,["H8104"]],[6,7,["H3808"]],[7,8,["H6491"]],[8,10,["H241"]],[10,13,["H8085"]],[13,14,["H3808"]]]},{"k":18501,"v":[[0,2,["H3068"]],[2,5,["H2654"]],[5,9,["H4616","H6664"]],[9,12,["H1431"]],[12,14,["H8451"]],[14,18,["H142"]]]},{"k":18502,"v":[[0,2,["H1931"]],[2,5,["H5971"]],[5,6,["H962"]],[6,8,["H8154"]],[8,11,["H3605"]],[11,14,["H6351"]],[14,16,["H2352"]],[16,20,["H2244"]],[20,22,["H3608"]],[22,23,["H1004"]],[23,25,["H1961"]],[25,28,["H957"]],[28,30,["H369"]],[30,31,["H5337"]],[31,34,["H4933"]],[34,36,["H369"]],[36,37,["H559"]],[37,38,["H7725"]]]},{"k":18503,"v":[[0,1,["H4310"]],[1,6,["H238"]],[6,8,["H2063"]],[8,11,["H7181"]],[11,13,["H8085"]],[13,18,["H268"]]]},{"k":18504,"v":[[0,1,["H4310"]],[1,2,["H5414"]],[2,3,["H3290"]],[3,6,["H4882"]],[6,8,["H3478"]],[8,11,["H962"]],[11,13,["H3808"]],[13,15,["H3068"]],[15,18,["H2098"]],[18,21,["H2398"]],[21,24,["H14"]],[24,25,["H3808"]],[25,26,["H1980"]],[26,29,["H1870"]],[29,30,["H3808"]],[30,33,["H8085"]],[33,36,["H8451"]]]},{"k":18505,"v":[[0,4,["H8210"]],[4,5,["H5921"]],[5,8,["H2534"]],[8,11,["H639"]],[11,14,["H5807"]],[14,16,["H4421"]],[16,23,["H3857"]],[23,25,["H4480","H5439"]],[25,28,["H3045"]],[28,29,["H3808"]],[29,32,["H1197"]],[32,36,["H7760"]],[36,38,["H3808"]],[38,39,["H5921"]],[39,40,["H3820"]]]},{"k":18506,"v":[[0,2,["H6258"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H3068"]],[6,8,["H1254"]],[8,11,["H3290"]],[11,15,["H3335"]],[15,18,["H3478"]],[18,19,["H3372"]],[19,20,["H408"]],[20,21,["H3588"]],[21,24,["H1350"]],[24,28,["H7121"]],[28,32,["H8034"]],[32,33,["H859"]],[33,35,[]]]},{"k":18507,"v":[[0,1,["H3588"]],[1,4,["H5674"]],[4,6,["H4325"]],[6,7,["H589"]],[7,10,["H854"]],[10,15,["H5104"]],[15,18,["H3808"]],[18,19,["H7857"]],[19,21,["H3588"]],[21,23,["H1980"]],[23,24,["H1119"]],[24,26,["H784"]],[26,29,["H3808"]],[29,31,["H3554"]],[31,32,["H3808"]],[32,35,["H3852"]],[35,36,["H1197"]],[36,38,[]]]},{"k":18508,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,5,["H3068"]],[5,7,["H430"]],[7,10,["H6918"]],[10,12,["H3478"]],[12,14,["H3467"]],[14,16,["H5414"]],[16,17,["H4714"]],[17,20,["H3724"]],[20,21,["H3568"]],[21,23,["H5434"]],[23,24,["H8478"]],[24,25,[]]]},{"k":18509,"v":[[0,1,["H4480","H834"]],[1,4,["H3365"]],[4,7,["H5869"]],[7,11,["H3513"]],[11,13,["H589"]],[13,15,["H157"]],[15,20,["H5414"]],[20,21,["H120"]],[21,22,["H8478"]],[22,25,["H3816"]],[25,26,["H8478"]],[26,28,["H5315"]]]},{"k":18510,"v":[[0,1,["H3372"]],[1,2,["H408"]],[2,3,["H3588"]],[3,4,["H589"]],[4,6,["H854"]],[6,10,["H935"]],[10,12,["H2233"]],[12,15,["H4480","H4217"]],[15,17,["H6908"]],[17,21,["H4480","H4628"]]]},{"k":18511,"v":[[0,3,["H559"]],[3,6,["H6828"]],[6,8,["H5414"]],[8,12,["H8486"]],[12,15,["H3607","H408"]],[15,16,["H935"]],[16,18,["H1121"]],[18,20,["H4480","H7350"]],[20,23,["H1323"]],[23,26,["H4480","H7097"]],[26,29,["H776"]]]},{"k":18512,"v":[[0,3,["H3605"]],[3,6,["H7121"]],[6,9,["H8034"]],[9,13,["H1254"]],[13,17,["H3519"]],[17,20,["H3335"]],[20,22,["H637"]],[22,25,["H6213"]],[25,26,[]]]},{"k":18513,"v":[[0,2,["H3318"]],[2,4,["H5787"]],[4,5,["H5971"]],[5,7,["H3426"]],[7,8,["H5869"]],[8,11,["H2795"]],[11,14,["H241"]]]},{"k":18514,"v":[[0,2,["H3605"]],[2,4,["H1471"]],[4,6,["H6908"]],[6,7,["H3162"]],[7,11,["H3816"]],[11,13,["H622"]],[13,14,["H4310"]],[14,18,["H5046"]],[18,19,["H2063"]],[19,21,["H8085"]],[21,24,["H7223"]],[24,28,["H5414"]],[28,30,["H5707"]],[30,35,["H6663"]],[35,39,["H8085"]],[39,41,["H559"]],[41,44,["H571"]]]},{"k":18515,"v":[[0,1,["H859"]],[1,4,["H5707"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,10,["H5650"]],[10,11,["H834"]],[11,14,["H977"]],[14,15,["H4616"]],[15,18,["H3045"]],[18,20,["H539"]],[20,23,["H995"]],[23,24,["H3588"]],[24,25,["H589"]],[25,27,["H1931"]],[27,28,["H6440"]],[28,32,["H3808"]],[32,33,["H410"]],[33,34,["H3335"]],[34,35,["H3808"]],[35,38,["H1961"]],[38,39,["H310"]],[39,40,[]]]},{"k":18516,"v":[[0,1,["H595"]],[1,3,["H595"]],[3,6,["H3068"]],[6,8,["H4480","H1107"]],[8,12,["H369"]],[12,13,["H3467"]]]},{"k":18517,"v":[[0,1,["H595"]],[1,3,["H5046"]],[3,6,["H3467"]],[6,10,["H8085"]],[10,14,["H369"]],[14,15,["H2114"]],[15,20,["H859"]],[20,23,["H5707"]],[23,24,["H5002"]],[24,26,["H3068"]],[26,28,["H589"]],[28,30,["H410"]]]},{"k":18518,"v":[[0,1,["H1571"]],[1,4,["H4480","H3117"]],[4,6,["H589"]],[6,8,["H1931"]],[8,12,["H369"]],[12,15,["H5337"]],[15,19,["H4480","H3027"]],[19,22,["H6466"]],[22,24,["H4310"]],[24,26,["H7725"]],[26,27,[]]]},{"k":18519,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H1350"]],[6,9,["H6918"]],[9,11,["H3478"]],[11,14,["H4616"]],[14,17,["H7971"]],[17,19,["H894"]],[19,23,["H3381"]],[23,24,["H3605"]],[24,26,["H1281"]],[26,29,["H3778"]],[29,31,["H7440"]],[31,35,["H591"]]]},{"k":18520,"v":[[0,1,["H589"]],[1,4,["H3068"]],[4,7,["H6918"]],[7,9,["H1254"]],[9,11,["H3478"]],[11,13,["H4428"]]]},{"k":18521,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H5414"]],[6,8,["H1870"]],[8,11,["H3220"]],[11,14,["H5410"]],[14,17,["H5794"]],[17,18,["H4325"]]]},{"k":18522,"v":[[0,3,["H3318"]],[3,5,["H7393"]],[5,7,["H5483"]],[7,9,["H2428"]],[9,12,["H5808"]],[12,16,["H7901"]],[16,17,["H3162"]],[17,20,["H1077"]],[20,21,["H6965"]],[21,24,["H1846"]],[24,27,["H3518"]],[27,29,["H6594"]]]},{"k":18523,"v":[[0,1,["H2142"]],[1,3,["H408"]],[3,6,["H7223"]],[6,7,["H408"]],[7,8,["H995"]],[8,12,["H6931"]]]},{"k":18524,"v":[[0,1,["H2009"]],[1,4,["H6213"]],[4,7,["H2319"]],[7,8,["H6258"]],[8,12,["H6779"]],[12,15,["H3808"]],[15,16,["H3045"]],[16,20,["H637"]],[20,21,["H7760"]],[21,23,["H1870"]],[23,26,["H4057"]],[26,28,["H5104"]],[28,31,["H3452"]]]},{"k":18525,"v":[[0,2,["H2416"]],[2,5,["H7704"]],[5,7,["H3513"]],[7,10,["H8565"]],[10,13,["H1323","H3284"]],[13,14,["H3588"]],[14,16,["H5414"]],[16,17,["H4325"]],[17,20,["H4057"]],[20,22,["H5104"]],[22,25,["H3452"]],[25,28,["H8248"]],[28,31,["H5971"]],[31,33,["H972"]]]},{"k":18526,"v":[[0,1,["H2098"]],[1,2,["H5971"]],[2,5,["H3335"]],[5,11,["H5608"]],[11,13,["H8416"]]]},{"k":18527,"v":[[0,4,["H3808"]],[4,6,["H7121"]],[6,9,["H3290"]],[9,10,["H3588"]],[10,14,["H3021"]],[14,18,["H3478"]]]},{"k":18528,"v":[[0,3,["H3808"]],[3,4,["H935"]],[4,8,["H7716"]],[8,12,["H5930"]],[12,13,["H3808"]],[13,16,["H3513"]],[16,20,["H2077"]],[20,23,["H3808"]],[23,27,["H5647"]],[27,30,["H4503"]],[30,31,["H3808"]],[31,32,["H3021"]],[32,35,["H3828"]]]},{"k":18529,"v":[[0,3,["H7069"]],[3,5,["H3808"]],[5,7,["H7070"]],[7,9,["H3701"]],[9,10,["H3808"]],[10,13,["H7301"]],[13,17,["H2459"]],[17,20,["H2077"]],[20,21,["H389"]],[21,27,["H5647"]],[27,30,["H2403"]],[30,33,["H3021"]],[33,37,["H5771"]]]},{"k":18530,"v":[[0,1,["H595"]],[1,3,["H595"]],[3,5,["H1931"]],[5,8,["H4229"]],[8,10,["H6588"]],[10,14,["H4616"]],[14,17,["H3808"]],[17,18,["H2142"]],[18,20,["H2403"]]]},{"k":18531,"v":[[0,4,["H2142"]],[4,7,["H8199"]],[7,8,["H3162"]],[8,9,["H5608"]],[9,10,["H859"]],[10,11,["H4616"]],[11,15,["H6663"]]]},{"k":18532,"v":[[0,2,["H7223"]],[2,3,["H1"]],[3,5,["H2398"]],[5,8,["H3887"]],[8,10,["H6586"]],[10,12,[]]]},{"k":18533,"v":[[0,4,["H2490"]],[4,6,["H8269"]],[6,9,["H6944"]],[9,12,["H5414"]],[12,13,["H3290"]],[13,16,["H2764"]],[16,18,["H3478"]],[18,20,["H1421"]]]},{"k":18534,"v":[[0,2,["H6258"]],[2,3,["H8085"]],[3,5,["H3290"]],[5,7,["H5650"]],[7,9,["H3478"]],[9,13,["H977"]]]},{"k":18535,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6213"]],[6,9,["H3335"]],[9,13,["H4480","H990"]],[13,16,["H5826"]],[16,18,["H3372"]],[18,19,["H408"]],[19,21,["H3290"]],[21,23,["H5650"]],[23,26,["H3484"]],[26,30,["H977"]]]},{"k":18536,"v":[[0,1,["H3588"]],[1,4,["H3332"]],[4,5,["H4325"]],[5,6,["H5921"]],[6,10,["H6771"]],[10,12,["H5140"]],[12,13,["H5921"]],[13,16,["H3004"]],[16,19,["H3332"]],[19,21,["H7307"]],[21,22,["H5921"]],[22,24,["H2233"]],[24,27,["H1293"]],[27,28,["H5921"]],[28,30,["H6631"]]]},{"k":18537,"v":[[0,5,["H6779"]],[5,7,["H996"]],[7,9,["H2682"]],[9,11,["H6155"]],[11,12,["H5921"]],[12,14,["H4325"]],[14,15,["H2988"]]]},{"k":18538,"v":[[0,1,["H2088"]],[1,3,["H559"]],[3,4,["H589"]],[4,7,["H3068"]],[7,9,["H2088"]],[9,11,["H7121"]],[11,15,["H8034"]],[15,17,["H3290"]],[17,19,["H2088"]],[19,21,["H3789"]],[21,24,["H3027"]],[24,27,["H3068"]],[27,29,["H3655"]],[29,33,["H8034"]],[33,35,["H3478"]]]},{"k":18539,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H4428"]],[6,8,["H3478"]],[8,11,["H1350"]],[11,13,["H3068"]],[13,15,["H6635"]],[15,16,["H589"]],[16,19,["H7223"]],[19,21,["H589"]],[21,24,["H314"]],[24,26,["H4480","H1107"]],[26,30,["H369"]],[30,31,["H430"]]]},{"k":18540,"v":[[0,2,["H4310"]],[2,6,["H7121"]],[6,9,["H5046"]],[9,15,["H6186"]],[15,20,["H4480","H7760"]],[20,22,["H5769"]],[22,23,["H5971"]],[23,29,["H857"]],[29,32,["H935"]],[32,35,["H5046"]],[35,37,[]]]},{"k":18541,"v":[[0,1,["H6342"]],[1,3,["H408"]],[3,4,["H408"]],[4,6,["H7297"]],[6,8,["H3808"]],[8,10,["H8085"]],[10,14,["H4480","H227"]],[14,17,["H5046"]],[17,19,["H859"]],[19,23,["H5707"]],[23,25,["H3426"]],[25,27,["H433"]],[27,28,["H4480","H1107"]],[28,33,["H369"]],[33,34,["H6697"]],[34,36,["H3045"]],[36,37,["H1077"]],[37,38,[]]]},{"k":18542,"v":[[0,3,["H3335"]],[3,6,["H6459"]],[6,8,["H3605"]],[8,11,["H8414"]],[11,15,["H2530"]],[15,17,["H1077"]],[17,18,["H3276"]],[18,20,["H1992"]],[20,24,["H5707"]],[24,26,["H7200"]],[26,27,["H1077"]],[27,28,["H1077"]],[28,29,["H3045"]],[29,30,["H4616"]],[30,34,["H954"]]]},{"k":18543,"v":[[0,1,["H4310"]],[1,3,["H3335"]],[3,5,["H410"]],[5,7,["H5258"]],[7,10,["H6459"]],[10,13,["H3276"]],[13,15,["H1115"]]]},{"k":18544,"v":[[0,1,["H2005"]],[1,2,["H3605"]],[2,4,["H2270"]],[4,7,["H954"]],[7,10,["H2796"]],[10,11,["H1992"]],[11,14,["H4480","H120"]],[14,17,["H3605"]],[17,20,["H6908"]],[20,24,["H5975"]],[24,28,["H6342"]],[28,33,["H954"]],[33,34,["H3162"]]]},{"k":18545,"v":[[0,2,["H2796","H1270"]],[2,5,["H4621"]],[5,7,["H6466"]],[7,10,["H6352"]],[10,12,["H3335"]],[12,15,["H4717"]],[15,17,["H6466"]],[17,21,["H3581"]],[21,24,["H2220"]],[24,25,["H1571"]],[25,28,["H7456"]],[28,31,["H3581"]],[31,32,["H369"]],[32,34,["H8354"]],[34,35,["H3808"]],[35,36,["H4325"]],[36,39,["H3286"]]]},{"k":18546,"v":[[0,2,["H2796","H6086"]],[2,4,["H5186"]],[4,6,["H6957"]],[6,10,["H8388"]],[10,13,["H8279"]],[13,15,["H6213"]],[15,18,["H4741"]],[18,23,["H8388"]],[23,26,["H4230"]],[26,28,["H6213"]],[28,32,["H8403"]],[32,35,["H376"]],[35,39,["H8597"]],[39,42,["H120"]],[42,46,["H3427"]],[46,49,["H1004"]]]},{"k":18547,"v":[[0,4,["H3772"]],[4,5,["H730"]],[5,7,["H3947"]],[7,9,["H8645"]],[9,12,["H437"]],[12,15,["H553"]],[15,20,["H6086"]],[20,23,["H3293"]],[23,25,["H5193"]],[25,27,["H766"]],[27,30,["H1653"]],[30,32,["H1431"]],[32,33,[]]]},{"k":18548,"v":[[0,4,["H1961"]],[4,7,["H120"]],[7,9,["H1197"]],[9,13,["H3947"]],[13,14,["H4480"]],[14,16,["H2552"]],[16,18,["H637"]],[18,20,["H5400"]],[20,23,["H644"]],[23,24,["H3899"]],[24,25,["H637"]],[25,27,["H6466"]],[27,29,["H410"]],[29,31,["H7812"]],[31,34,["H6213"]],[34,38,["H6459"]],[38,41,["H5456"]],[41,42,[]]]},{"k":18549,"v":[[0,2,["H8313"]],[2,3,["H2677"]],[3,5,["H1119"]],[5,7,["H784"]],[7,8,["H5921"]],[8,9,["H2677"]],[9,12,["H398"]],[12,13,["H1320"]],[13,15,["H6740"]],[15,16,["H6748"]],[16,19,["H7646"]],[19,20,["H637"]],[20,22,["H2552"]],[22,25,["H559"]],[25,26,["H1889"]],[26,29,["H2552"]],[29,32,["H7200"]],[32,34,["H217"]]]},{"k":18550,"v":[[0,3,["H7611"]],[3,6,["H6213"]],[6,8,["H410"]],[8,12,["H6459"]],[12,15,["H5456"]],[15,19,["H7812"]],[19,22,["H6419"]],[22,23,["H413"]],[23,26,["H559"]],[26,27,["H5337"]],[27,29,["H3588"]],[29,30,["H859"]],[30,33,["H410"]]]},{"k":18551,"v":[[0,3,["H3808"]],[3,4,["H3045"]],[4,5,["H3808"]],[5,6,["H995"]],[6,7,["H3588"]],[7,10,["H2902"]],[10,12,["H5869"]],[12,16,["H4480","H7200"]],[16,19,["H3820"]],[19,23,["H4480","H7919"]]]},{"k":18552,"v":[[0,2,["H3808"]],[2,3,["H7725"]],[3,4,["H413"]],[4,6,["H3820"]],[6,7,["H3808"]],[7,10,["H1847"]],[10,11,["H3808"]],[11,12,["H8394"]],[12,14,["H559"]],[14,17,["H8313"]],[17,18,["H2677"]],[18,21,["H1119"]],[21,23,["H784"]],[23,24,["H637"]],[24,28,["H644"]],[28,29,["H3899"]],[29,30,["H5921"]],[30,32,["H1513"]],[32,36,["H6740"]],[36,37,["H1320"]],[37,39,["H398"]],[39,44,["H6213"]],[44,46,["H3499"]],[46,49,["H8441"]],[49,53,["H5456"]],[53,56,["H944"]],[56,59,["H6086"]]]},{"k":18553,"v":[[0,2,["H7462"]],[2,4,["H665"]],[4,6,["H2048"]],[6,7,["H3820"]],[7,11,["H5186"]],[11,14,["H3808"]],[14,15,["H5337","(H853)"]],[15,17,["H5315"]],[17,18,["H3808"]],[18,19,["H559"]],[19,22,["H3808"]],[22,24,["H8267"]],[24,28,["H3225"]]]},{"k":18554,"v":[[0,1,["H2142"]],[1,2,["H428"]],[2,4,["H3290"]],[4,6,["H3478"]],[6,7,["H3588"]],[7,8,["H859"]],[8,11,["H5650"]],[11,14,["H3335"]],[14,16,["H859"]],[16,19,["H5650"]],[19,21,["H3478"]],[21,24,["H3808"]],[24,26,["H5382"]],[26,28,[]]]},{"k":18555,"v":[[0,4,["H4229"]],[4,8,["H5645"]],[8,10,["H6588"]],[10,14,["H6051"]],[14,16,["H2403"]],[16,17,["H7725"]],[17,18,["H413"]],[18,20,["H3588"]],[20,23,["H1350"]],[23,24,[]]]},{"k":18556,"v":[[0,1,["H7442"]],[1,4,["H8064"]],[4,5,["H3588"]],[5,7,["H3068"]],[7,9,["H6213"]],[9,11,["H7321"]],[11,14,["H8482"]],[14,17,["H776"]],[17,19,["H6476"]],[19,21,["H7440"]],[21,23,["H2022"]],[23,25,["H3293"]],[25,27,["H3605"]],[27,28,["H6086"]],[28,30,["H3588"]],[30,32,["H3068"]],[32,34,["H1350"]],[34,35,["H3290"]],[35,38,["H6286"]],[38,40,["H3478"]]]},{"k":18557,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H1350"]],[6,10,["H3335"]],[10,14,["H4480","H990"]],[14,15,["H595"]],[15,18,["H3068"]],[18,20,["H6213"]],[20,21,["H3605"]],[21,25,["H5186"]],[25,27,["H8064"]],[27,28,["H905"]],[28,31,["H7554"]],[31,33,["H776"]],[33,34,["H854"]],[34,35,[]]]},{"k":18558,"v":[[0,2,["H6565"]],[2,4,["H226"]],[4,7,["H907"]],[7,11,["H1984","H7080"]],[11,13,["H7725"]],[13,14,["H2450"]],[14,16,["H268"]],[16,21,["H5528","H1847"]]]},{"k":18559,"v":[[0,2,["H6965"]],[2,4,["H1697"]],[4,7,["H5650"]],[7,9,["H7999"]],[9,11,["H6098"]],[11,14,["H4397"]],[14,16,["H559"]],[16,18,["H3389"]],[18,22,["H3427"]],[22,26,["H5892"]],[26,28,["H3063"]],[28,32,["H1129"]],[32,37,["H6965"]],[37,40,["H2723"]],[40,41,[]]]},{"k":18560,"v":[[0,2,["H559"]],[2,5,["H6683"]],[5,7,["H2717"]],[7,12,["H3001"]],[12,14,["H5104"]]]},{"k":18561,"v":[[0,2,["H559"]],[2,4,["H3566"]],[4,8,["H7462"]],[8,11,["H7999"]],[11,12,["H3605"]],[12,14,["H2656"]],[14,16,["H559"]],[16,18,["H3389"]],[18,22,["H1129"]],[22,26,["H1964"]],[26,31,["H3245"]]]},{"k":18562,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,7,["H4899"]],[7,9,["H3566"]],[9,10,["H834"]],[10,12,["H3225"]],[12,15,["H2388"]],[15,17,["H7286"]],[17,18,["H1471"]],[18,19,["H6440"]],[19,24,["H6605"]],[24,26,["H4975"]],[26,28,["H4428"]],[28,30,["H6605"]],[30,31,["H6440"]],[31,36,["H1817"]],[36,39,["H8179"]],[39,41,["H3808"]],[41,43,["H5462"]]]},{"k":18563,"v":[[0,1,["H589"]],[1,3,["H1980"]],[3,4,["H6440"]],[4,11,["H3474","H1921"]],[11,16,["H7665"]],[16,18,["H1817"]],[18,20,["H5154"]],[20,24,["H1438"]],[24,26,["H1280"]],[26,28,["H1270"]]]},{"k":18564,"v":[[0,4,["H5414"]],[4,7,["H214"]],[7,9,["H2822"]],[9,12,["H4301"]],[12,15,["H4565"]],[15,16,["H4616"]],[16,19,["H3045"]],[19,20,["H3588"]],[20,21,["H589"]],[21,23,["H3068"]],[23,25,["H7121"]],[25,29,["H8034"]],[29,32,["H430"]],[32,34,["H3478"]]]},{"k":18565,"v":[[0,2,["H3290"]],[2,5,["H4616","H5650"]],[5,7,["H3478"]],[7,9,["H972"]],[9,13,["H7121"]],[13,17,["H8034"]],[17,20,["H3655"]],[20,25,["H3808"]],[25,26,["H3045"]],[26,27,[]]]},{"k":18566,"v":[[0,1,["H589"]],[1,4,["H3068"]],[4,8,["H369"]],[8,9,["H5750"]],[9,12,["H369"]],[12,13,["H430"]],[13,14,["H2108"]],[14,17,["H247"]],[17,22,["H3808"]],[22,23,["H3045"]],[23,24,[]]]},{"k":18567,"v":[[0,1,["H4616"]],[1,4,["H3045"]],[4,7,["H4480","H4217"]],[7,10,["H8121"]],[10,14,["H4480","H4628"]],[14,15,["H3588"]],[15,18,["H657"]],[18,19,["H1107"]],[19,21,["H589"]],[21,24,["H3068"]],[24,28,["H369"]],[28,29,["H5750"]]]},{"k":18568,"v":[[0,2,["H3335"]],[2,4,["H216"]],[4,6,["H1254"]],[6,7,["H2822"]],[7,9,["H6213"]],[9,10,["H7965"]],[10,12,["H1254"]],[12,13,["H7451"]],[13,14,["H589"]],[14,16,["H3068"]],[16,17,["H6213"]],[17,18,["H3605"]],[18,19,["H428"]],[19,20,[]]]},{"k":18569,"v":[[0,2,["H7491"]],[2,4,["H8064"]],[4,6,["H4480","H4605"]],[6,10,["H7834"]],[10,12,["H5140"]],[12,13,["H6664"]],[13,16,["H776"]],[16,17,["H6605"]],[17,22,["H6509"]],[22,23,["H3468"]],[23,26,["H6666"]],[26,28,["H6779"]],[28,29,["H3162"]],[29,30,["H589"]],[30,32,["H3068"]],[32,34,["H1254"]],[34,35,[]]]},{"k":18570,"v":[[0,1,["H1945"]],[1,5,["H7378"]],[5,6,["H854"]],[6,8,["H3335"]],[8,11,["H2789"]],[11,13,["H854"]],[13,15,["H2789"]],[15,18,["H127"]],[18,21,["H2563"]],[21,22,["H559"]],[22,26,["H3335"]],[26,28,["H4100"]],[28,29,["H6213"]],[29,33,["H6467"]],[33,36,["H369"]],[36,37,["H3027"]]]},{"k":18571,"v":[[0,1,["H1945"]],[1,5,["H559"]],[5,8,["H1"]],[8,9,["H4100"]],[9,10,["H3205"]],[10,15,["H802"]],[15,16,["H4100"]],[16,20,["H2342"]]]},{"k":18572,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,7,["H6918"]],[7,9,["H3478"]],[9,12,["H3335"]],[12,13,["H7592"]],[13,18,["H857"]],[18,19,["H5921"]],[19,21,["H1121"]],[21,23,["H5921"]],[23,25,["H6467"]],[25,28,["H3027"]],[28,29,["H6680"]],[29,31,[]]]},{"k":18573,"v":[[0,1,["H595"]],[1,3,["H6213"]],[3,5,["H776"]],[5,7,["H1254"]],[7,8,["H120"]],[8,9,["H5921"]],[9,11,["H589"]],[11,14,["H3027"]],[14,17,["H5186"]],[17,19,["H8064"]],[19,21,["H3605"]],[21,23,["H6635"]],[23,26,["H6680"]]]},{"k":18574,"v":[[0,1,["H595"]],[1,5,["H5782"]],[5,7,["H6664"]],[7,11,["H3474"]],[11,12,["H3605"]],[12,14,["H1870"]],[14,15,["H1931"]],[15,17,["H1129"]],[17,19,["H5892"]],[19,24,["H7971"]],[24,26,["H1546"]],[26,27,["H3808"]],[27,29,["H4242"]],[29,30,["H3808"]],[30,31,["H7810"]],[31,32,["H559"]],[32,34,["H3068"]],[34,36,["H6635"]]]},{"k":18575,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H3018"]],[6,8,["H4714"]],[8,10,["H5505"]],[10,12,["H3568"]],[12,16,["H5436"]],[16,17,["H376"]],[17,19,["H4060"]],[19,22,["H5674"]],[22,23,["H5921"]],[23,28,["H1961"]],[28,32,["H1980"]],[32,33,["H310"]],[33,36,["H2131"]],[36,40,["H5674"]],[40,45,["H7812"]],[45,46,["H413"]],[46,51,["H6419"]],[51,52,["H413"]],[52,55,["H389"]],[55,56,["H410"]],[56,63,["H369"]],[63,64,["H5750"]],[64,67,["H657"]],[67,68,["H430"]]]},{"k":18576,"v":[[0,1,["H403"]],[1,2,["H859"]],[2,5,["H410"]],[5,8,["H5641"]],[8,10,["H430"]],[10,12,["H3478"]],[12,14,["H3467"]]]},{"k":18577,"v":[[0,4,["H954"]],[4,6,["H1571"]],[6,7,["H3637"]],[7,8,["H3605"]],[8,13,["H1980"]],[13,15,["H3639"]],[15,16,["H3162"]],[16,19,["H2796"]],[19,21,["H6736"]]]},{"k":18578,"v":[[0,2,["H3478"]],[2,5,["H3467"]],[5,8,["H3068"]],[8,11,["H5769"]],[11,12,["H8668"]],[12,15,["H3808"]],[15,17,["H954"]],[17,18,["H3808"]],[18,19,["H3637"]],[19,22,["H5704","H5769","H5703"]]]},{"k":18579,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H1254"]],[7,9,["H8064"]],[9,10,["H430"]],[10,11,["H1931"]],[11,13,["H3335"]],[13,15,["H776"]],[15,17,["H6213"]],[17,19,["H1931"]],[19,21,["H3559"]],[21,24,["H1254"]],[24,26,["H3808"]],[26,28,["H8414"]],[28,30,["H3335"]],[30,34,["H3427"]],[34,35,["H589"]],[35,38,["H3068"]],[38,42,["H369"]],[42,43,["H5750"]]]},{"k":18580,"v":[[0,3,["H3808"]],[3,4,["H1696"]],[4,6,["H5643"]],[6,9,["H2822"]],[9,10,["H4725"]],[10,13,["H776"]],[13,15,["H559"]],[15,16,["H3808"]],[16,19,["H2233"]],[19,21,["H3290"]],[21,22,["H1245"]],[22,26,["H8414"]],[26,27,["H589"]],[27,29,["H3068"]],[29,30,["H1696"]],[30,31,["H6664"]],[31,33,["H5046"]],[33,37,["H4339"]]]},{"k":18581,"v":[[0,2,["H6908"]],[2,4,["H935"]],[4,6,["H5066"]],[6,7,["H3162"]],[7,11,["H6412"]],[11,14,["H1471"]],[14,18,["H3045","H3808"]],[18,21,["H5375","(H853)"]],[21,23,["H6086"]],[23,27,["H6459"]],[27,29,["H6419"]],[29,30,["H413"]],[30,32,["H410"]],[32,34,["H3808"]],[34,35,["H3467"]]]},{"k":18582,"v":[[0,1,["H5046"]],[1,6,["H5066"]],[6,7,["H637"]],[7,11,["H3289"]],[11,12,["H3162"]],[12,13,["H4310"]],[13,15,["H8085"]],[15,16,["H2063"]],[16,19,["H4480","H6924"]],[19,22,["H5046"]],[22,26,["H4480","H227"]],[26,28,["H3808"]],[28,29,["H589"]],[29,31,["H3068"]],[31,35,["H369"]],[35,36,["H430"]],[36,37,["H5750"]],[37,38,["H4480","H1107"]],[38,41,["H6662"]],[41,42,["H410"]],[42,45,["H3467"]],[45,48,["H369"]],[48,49,["H2108"]],[49,50,[]]]},{"k":18583,"v":[[0,1,["H6437"]],[1,2,["H413"]],[2,7,["H3467"]],[7,8,["H3605"]],[8,10,["H657"]],[10,13,["H776"]],[13,14,["H3588"]],[14,15,["H589"]],[15,17,["H410"]],[17,21,["H369"]],[21,22,["H5750"]]]},{"k":18584,"v":[[0,3,["H7650"]],[3,7,["H1697"]],[7,10,["H3318"]],[10,13,["H4480","H6310"]],[13,15,["H6666"]],[15,18,["H3808"]],[18,19,["H7725"]],[19,20,["H3588"]],[20,23,["H3605"]],[23,24,["H1290"]],[24,26,["H3766"]],[26,27,["H3605"]],[27,28,["H3956"]],[28,30,["H7650"]]]},{"k":18585,"v":[[0,1,["H389"]],[1,4,["H559"]],[4,7,["H3068"]],[7,10,["H6666"]],[10,12,["H5797"]],[12,14,["H5704"]],[14,18,["H935"]],[18,20,["H3605"]],[20,23,["H2734"]],[23,28,["H954"]]]},{"k":18586,"v":[[0,3,["H3068"]],[3,5,["H3605"]],[5,7,["H2233"]],[7,9,["H3478"]],[9,11,["H6663"]],[11,14,["H1984"]]]},{"k":18587,"v":[[0,1,["H1078"]],[1,3,["H3766"]],[3,4,["H5015"]],[4,5,["H7164"]],[5,7,["H6091"]],[7,8,["H1961"]],[8,11,["H2416"]],[11,15,["H929"]],[15,17,["H5385"]],[17,20,["H6006"]],[20,24,["H4853"]],[24,27,["H5889"]],[27,28,[]]]},{"k":18588,"v":[[0,2,["H7164"]],[2,5,["H3766"]],[5,6,["H3162"]],[6,8,["H3201"]],[8,9,["H3808"]],[9,10,["H4422"]],[10,12,["H4853"]],[12,14,["H5315"]],[14,16,["H1980"]],[16,18,["H7628"]]]},{"k":18589,"v":[[0,1,["H8085"]],[1,2,["H413"]],[2,5,["H1004"]],[5,7,["H3290"]],[7,9,["H3605"]],[9,11,["H7611"]],[11,14,["H1004"]],[14,16,["H3478"]],[16,19,["H6006"]],[19,22,["H4480"]],[22,24,["H990"]],[24,27,["H5375"]],[27,28,["H4480"]],[28,30,["H7356"]]]},{"k":18590,"v":[[0,3,["H5704"]],[3,6,["H2209"]],[6,7,["H589"]],[7,9,["H1931"]],[9,12,["H5704"]],[12,14,["H7872"]],[14,16,["H589"]],[16,17,["H5445"]],[17,19,["H589"]],[19,21,["H6213"]],[21,23,["H589"]],[23,25,["H5375"]],[25,27,["H589"]],[27,29,["H5445"]],[29,32,["H4422"]],[32,33,[]]]},{"k":18591,"v":[[0,2,["H4310"]],[2,5,["H1819"]],[5,10,["H7737"]],[10,12,["H4911"]],[12,18,["H1819"]]]},{"k":18592,"v":[[0,2,["H2107"]],[2,3,["H2091"]],[3,7,["H4480","H3599"]],[7,9,["H8254"]],[9,10,["H3701"]],[10,13,["H7070"]],[13,15,["H7936"]],[15,17,["H6884"]],[17,20,["H6213"]],[20,23,["H410"]],[23,26,["H5456"]],[26,27,["H637"]],[27,29,["H7812"]]]},{"k":18593,"v":[[0,2,["H5375"]],[2,4,["H5921"]],[4,6,["H3802"]],[6,8,["H5445"]],[8,11,["H5117"]],[11,15,["H8478"]],[15,18,["H5975"]],[18,21,["H4480","H4725"]],[21,24,["H3808"]],[24,25,["H4185"]],[25,26,["H637"]],[26,29,["H6817"]],[29,30,["H413"]],[30,35,["H3808"]],[35,36,["H6030"]],[36,37,["H3808"]],[37,38,["H3467"]],[38,43,["H4480","H6869"]]]},{"k":18594,"v":[[0,1,["H2142"]],[1,2,["H2063"]],[2,6,["H377"]],[6,9,["H7725"]],[9,10,["H5921"]],[10,11,["H3820"]],[11,14,["H6586"]]]},{"k":18595,"v":[[0,1,["H2142"]],[1,4,["H7223"]],[4,6,["H4480","H5769"]],[6,7,["H3588"]],[7,8,["H595"]],[8,10,["H410"]],[10,14,["H369"]],[14,15,["H5750"]],[15,18,["H430"]],[18,22,["H657"]],[22,24,["H3644"]]]},{"k":18596,"v":[[0,1,["H5046"]],[1,3,["H319"]],[3,6,["H4480","H7225"]],[6,10,["H4480","H6924"]],[10,13,["H834"]],[13,15,["H3808"]],[15,17,["H6213"]],[17,18,["H559"]],[18,20,["H6098"]],[20,22,["H6965"]],[22,26,["H6213"]],[26,27,["H3605"]],[27,29,["H2656"]]]},{"k":18597,"v":[[0,1,["H7121"]],[1,4,["H5861"]],[4,7,["H4480","H4217"]],[7,9,["H376"]],[9,13,["H6098"]],[13,16,["H4801"]],[16,17,["H4480","H776"]],[17,18,["H637"]],[18,21,["H1696"]],[21,25,["H637"]],[25,29,["H935"]],[29,32,["H3335"]],[32,36,["H637"]],[36,37,["H6213"]],[37,38,[]]]},{"k":18598,"v":[[0,1,["H8085"]],[1,2,["H413"]],[2,5,["H47","H3820"]],[5,8,["H7350"]],[8,10,["H4480","H6666"]]]},{"k":18599,"v":[[0,3,["H7126"]],[3,5,["H6666"]],[5,8,["H3808"]],[8,11,["H7368"]],[11,14,["H8668"]],[14,16,["H3808"]],[16,17,["H309"]],[17,21,["H5414"]],[21,22,["H8668"]],[22,24,["H6726"]],[24,26,["H3478"]],[26,28,["H8597"]]]},{"k":18600,"v":[[0,2,["H3381"]],[2,4,["H3427"]],[4,5,["H5921"]],[5,7,["H6083"]],[7,9,["H1330"]],[9,10,["H1323"]],[10,12,["H894"]],[12,13,["H3427"]],[13,16,["H776"]],[16,19,["H369"]],[19,20,["H3678"]],[20,22,["H1323"]],[22,25,["H3778"]],[25,26,["H3588"]],[26,29,["H3808"]],[29,30,["H3254"]],[30,32,["H7121"]],[32,33,["H7390"]],[33,35,["H6028"]]]},{"k":18601,"v":[[0,1,["H3947"]],[1,3,["H7347"]],[3,5,["H2912"]],[5,6,["H7058"]],[6,7,["H1540"]],[7,9,["H6777"]],[9,11,["H2834"]],[11,13,["H7640"]],[13,14,["H1540"]],[14,16,["H7785"]],[16,18,["H5674"]],[18,20,["H5104"]]]},{"k":18602,"v":[[0,2,["H6172"]],[2,5,["H1540"]],[5,6,["H1571"]],[6,8,["H2781"]],[8,11,["H7200"]],[11,14,["H3947"]],[14,15,["H5359"]],[15,19,["H3808"]],[19,20,["H6293"]],[20,24,["H120"]]]},{"k":18603,"v":[[0,4,["H1350"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,11,["H8034"]],[11,14,["H6918"]],[14,16,["H3478"]]]},{"k":18604,"v":[[0,1,["H3427"]],[1,3,["H1748"]],[3,5,["H935"]],[5,8,["H2822"]],[8,10,["H1323"]],[10,13,["H3778"]],[13,14,["H3588"]],[14,17,["H3808"]],[17,18,["H3254"]],[18,20,["H7121"]],[20,22,["H1404"]],[22,24,["H4467"]]]},{"k":18605,"v":[[0,3,["H7107"]],[3,4,["H5921"]],[4,6,["H5971"]],[6,9,["H2490"]],[9,11,["H5159"]],[11,13,["H5414"]],[13,17,["H3027"]],[17,20,["H7760"]],[20,22,["H3808"]],[22,23,["H7356"]],[23,24,["H5921"]],[24,26,["H2205"]],[26,29,["H3966"]],[29,31,["H3513"]],[31,33,["H5923"]]]},{"k":18606,"v":[[0,3,["H559"]],[3,6,["H1961"]],[6,8,["H1404"]],[8,10,["H5769"]],[10,12,["H5704"]],[12,15,["H3808"]],[15,16,["H7760"]],[16,17,["H428"]],[17,19,["H5921"]],[19,21,["H3820"]],[21,22,["H3808"]],[22,24,["H2142"]],[24,27,["H319"]],[27,29,[]]]},{"k":18607,"v":[[0,2,["H8085"]],[2,3,["H6258"]],[3,4,["H2063"]],[4,10,["H5719"]],[10,12,["H3427"]],[12,13,["H983"]],[13,15,["H559"]],[15,18,["H3824"]],[18,19,["H589"]],[19,24,["H657","H5750"]],[24,28,["H3808"]],[28,29,["H3427"]],[29,32,["H490"]],[32,33,["H3808"]],[33,36,["H3045"]],[36,40,["H7908"]]]},{"k":18608,"v":[[0,2,["H428"]],[2,3,["H8147"]],[3,6,["H935"]],[6,11,["H7281"]],[11,13,["H259"]],[13,14,["H3117"]],[14,18,["H7908"]],[18,20,["H489"]],[20,23,["H935"]],[23,24,["H5921"]],[24,28,["H8537"]],[28,31,["H7230"]],[31,34,["H3785"]],[34,38,["H3966"]],[38,39,["H6109"]],[39,42,["H2267"]]]},{"k":18609,"v":[[0,4,["H982"]],[4,7,["H7451"]],[7,10,["H559"]],[10,11,["H369"]],[11,12,["H7200"]],[12,15,["H2451"]],[15,18,["H1847"]],[18,19,["H1931"]],[19,21,["H7725"]],[21,26,["H559"]],[26,29,["H3820"]],[29,30,["H589"]],[30,35,["H657","H5750"]],[35,36,[]]]},{"k":18610,"v":[[0,3,["H7451"]],[3,4,["H935"]],[4,5,["H5921"]],[5,9,["H3808"]],[9,10,["H3045"]],[10,14,["H7837"]],[14,16,["H1943"]],[16,18,["H5307"]],[18,19,["H5921"]],[19,23,["H3808"]],[23,25,["H3201"]],[25,29,["H3722"]],[29,31,["H7722"]],[31,33,["H935"]],[33,34,["H5921"]],[34,36,["H6597"]],[36,40,["H3808"]],[40,41,["H3045"]]]},{"k":18611,"v":[[0,1,["H5975"]],[1,2,["H4994"]],[2,5,["H2267"]],[5,9,["H7230"]],[9,12,["H3785"]],[12,13,["H834"]],[13,16,["H3021"]],[16,19,["H4480","H5271"]],[19,22,["H194"]],[22,26,["H3201"]],[26,28,["H3276"]],[28,31,["H194"]],[31,34,["H6206"]]]},{"k":18612,"v":[[0,3,["H3811"]],[3,6,["H7230"]],[6,9,["H6098"]],[9,11,["H4994"]],[11,13,["H1895","H8064"]],[13,15,["H2372","H3556"]],[15,17,["H2320"]],[17,18,["H3045"]],[18,20,["H5975"]],[20,22,["H3467"]],[22,27,["H4480","H834"]],[27,29,["H935"]],[29,30,["H5921"]],[30,31,[]]]},{"k":18613,"v":[[0,1,["H2009"]],[1,4,["H1961"]],[4,6,["H7179"]],[6,8,["H784"]],[8,10,["H8313"]],[10,14,["H3808"]],[14,15,["H5337","(H853)"]],[15,16,["H5315"]],[16,19,["H4480","H3027"]],[19,22,["H3852"]],[22,25,["H369"]],[25,28,["H1513"]],[28,30,["H2552"]],[30,33,["H217"]],[33,35,["H3427"]],[35,36,["H5048"]],[36,37,[]]]},{"k":18614,"v":[[0,1,["H3651"]],[1,4,["H1961"]],[4,8,["H834"]],[8,11,["H3021"]],[11,14,["H5503"]],[14,17,["H4480","H5271"]],[17,20,["H8582"]],[20,22,["H376"]],[22,25,["H5676"]],[25,26,["H369"]],[26,28,["H3467"]],[28,29,[]]]},{"k":18615,"v":[[0,1,["H8085"]],[1,3,["H2063"]],[3,5,["H1004"]],[5,7,["H3290"]],[7,10,["H7121"]],[10,13,["H8034"]],[13,15,["H3478"]],[15,19,["H3318"]],[19,23,["H4480","H4325"]],[23,25,["H3063"]],[25,27,["H7650"]],[27,30,["H8034"]],[30,33,["H3068"]],[33,36,["H2142"]],[36,39,["H430"]],[39,41,["H3478"]],[41,43,["H3808"]],[43,45,["H571"]],[45,46,["H3808"]],[46,48,["H6666"]]]},{"k":18616,"v":[[0,1,["H3588"]],[1,4,["H7121"]],[4,7,["H6944"]],[7,8,["H4480","H5892"]],[8,11,["H5564"]],[11,12,["H5921"]],[12,14,["H430"]],[14,16,["H3478"]],[16,18,["H3068"]],[18,20,["H6635"]],[20,23,["H8034"]]]},{"k":18617,"v":[[0,3,["H5046"]],[3,6,["H7223"]],[6,9,["H4480","H227"]],[9,13,["H3318"]],[13,17,["H4480","H6310"]],[17,20,["H8085"]],[20,23,["H6213"]],[23,25,["H6597"]],[25,30,["H935"]]]},{"k":18618,"v":[[0,3,["H4480","H3045"]],[3,4,["H3588"]],[4,5,["H859"]],[5,7,["H7186"]],[7,10,["H6203"]],[10,13,["H1270"]],[13,14,["H1517"]],[14,17,["H4696"]],[17,18,["H5154"]]]},{"k":18619,"v":[[0,6,["H4480","H227"]],[6,7,["H5046"]],[7,11,["H2962"]],[11,15,["H935"]],[15,17,["H8085"]],[17,20,["H6435"]],[20,23,["H559"]],[23,25,["H6090"]],[25,27,["H6213"]],[27,32,["H6459"]],[32,36,["H5262"]],[36,38,["H6680"]],[38,39,[]]]},{"k":18620,"v":[[0,3,["H8085"]],[3,4,["H2372"]],[4,5,["H3605"]],[5,9,["H3808"]],[9,10,["H859"]],[10,11,["H5046"]],[11,15,["H8085"]],[15,18,["H2319"]],[18,21,["H4480","H6258"]],[21,24,["H5341"]],[24,28,["H3808"]],[28,29,["H3045"]],[29,30,[]]]},{"k":18621,"v":[[0,3,["H1254"]],[3,4,["H6258"]],[4,6,["H3808"]],[6,9,["H4480","H227"]],[9,11,["H6440"]],[11,13,["H3117"]],[13,16,["H8085"]],[16,18,["H3808"]],[18,19,["H6435"]],[19,22,["H559"]],[22,23,["H2009"]],[23,25,["H3045"]],[25,26,[]]]},{"k":18622,"v":[[0,1,["H1571"]],[1,3,["H8085"]],[3,4,["H3808"]],[4,5,["H1571"]],[5,7,["H3045"]],[7,8,["H3808"]],[8,9,["H1571"]],[9,12,["H4480","H227"]],[12,15,["H241"]],[15,17,["H3808"]],[17,18,["H6605"]],[18,19,["H3588"]],[19,21,["H3045"]],[21,27,["H898","H898"]],[27,30,["H7121"]],[30,32,["H6586"]],[32,35,["H4480","H990"]]]},{"k":18623,"v":[[0,4,["H4616","H8034"]],[4,7,["H748"]],[7,9,["H639"]],[9,13,["H8416"]],[13,16,["H2413"]],[16,24,["H3772","H1115"]]]},{"k":18624,"v":[[0,1,["H2009"]],[1,4,["H6884"]],[4,7,["H3808"]],[7,9,["H3701"]],[9,12,["H977"]],[12,16,["H3564"]],[16,18,["H6040"]]]},{"k":18625,"v":[[0,4,["H4616"]],[4,9,["H4616"]],[9,12,["H6213"]],[12,14,["H3588"]],[14,15,["H349"]],[15,20,["H2490"]],[20,24,["H3808"]],[24,25,["H5414"]],[25,27,["H3519"]],[27,29,["H312"]]]},{"k":18626,"v":[[0,1,["H8085"]],[1,2,["H413"]],[2,5,["H3290"]],[5,7,["H3478"]],[7,9,["H7121"]],[9,10,["H589"]],[10,12,["H1931"]],[12,13,["H589"]],[13,16,["H7223"]],[16,17,["H589"]],[17,18,["H637"]],[18,21,["H314"]]]},{"k":18627,"v":[[0,2,["H3027"]],[2,3,["H637"]],[3,7,["H3245"]],[7,10,["H776"]],[10,14,["H3225"]],[14,16,["H2946"]],[16,18,["H8064"]],[18,20,["H589"]],[20,21,["H7121"]],[21,22,["H413"]],[22,26,["H5975"]],[26,27,["H3162"]]]},{"k":18628,"v":[[0,1,["H3605"]],[1,4,["H6908"]],[4,6,["H8085"]],[6,7,["H4310"]],[7,11,["H5046","(H853)"]],[11,12,["H428"]],[12,15,["H3068"]],[15,17,["H157"]],[17,21,["H6213"]],[21,23,["H2656"]],[23,25,["H894"]],[25,28,["H2220"]],[28,33,["H3778"]]]},{"k":18629,"v":[[0,1,["H589"]],[1,3,["H589"]],[3,5,["H1696"]],[5,6,["H637"]],[6,9,["H7121"]],[9,13,["H935"]],[13,20,["H1870"]],[20,21,["H6743"]]]},{"k":18630,"v":[[0,3,["H7126"]],[3,4,["H413"]],[4,6,["H8085"]],[6,8,["H2063"]],[8,11,["H3808"]],[11,12,["H1696"]],[12,14,["H5643"]],[14,17,["H4480","H7218"]],[17,20,["H4480","H6256"]],[20,23,["H1961"]],[23,24,["H8033"]],[24,26,["H589"]],[26,28,["H6258"]],[28,30,["H136"]],[30,31,["H3069"]],[31,34,["H7307"]],[34,36,["H7971"]],[36,37,[]]]},{"k":18631,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H1350"]],[6,9,["H6918"]],[9,11,["H3478"]],[11,12,["H589"]],[12,15,["H3068"]],[15,17,["H430"]],[17,19,["H3925"]],[19,22,["H3276"]],[22,24,["H1869"]],[24,28,["H1870"]],[28,32,["H1980"]]]},{"k":18632,"v":[[0,2,["H3863"]],[2,5,["H7181"]],[5,8,["H4687"]],[8,12,["H7965"]],[12,13,["H1961"]],[13,16,["H5104"]],[16,19,["H6666"]],[19,22,["H1530"]],[22,25,["H3220"]]]},{"k":18633,"v":[[0,2,["H2233"]],[2,5,["H1961"]],[5,8,["H2344"]],[8,11,["H6631"]],[11,14,["H4578"]],[14,17,["H4579"]],[17,20,["H8034"]],[20,22,["H3808"]],[22,26,["H3772"]],[26,27,["H3808"]],[27,28,["H8045"]],[28,30,["H4480","H6440"]],[30,31,[]]]},{"k":18634,"v":[[0,3,["H3318"]],[3,5,["H4480","H894"]],[5,6,["H1272"]],[6,10,["H4480","H3778"]],[10,13,["H6963"]],[13,15,["H7440"]],[15,16,["H5046"]],[16,18,["H8085"]],[18,19,["H2063"]],[19,20,["H3318"]],[20,23,["H5704"]],[23,25,["H7097"]],[25,28,["H776"]],[28,29,["H559"]],[29,32,["H3068"]],[32,34,["H1350"]],[34,36,["H5650"]],[36,37,["H3290"]]]},{"k":18635,"v":[[0,3,["H6770"]],[3,4,["H3808"]],[4,7,["H1980"]],[7,11,["H2723"]],[11,15,["H4325"]],[15,17,["H5140"]],[17,21,["H4480","H6697"]],[21,25,["H1234"]],[25,27,["H6697"]],[27,31,["H4325"]],[31,33,["H2100"]]]},{"k":18636,"v":[[0,3,["H369"]],[3,4,["H7965"]],[4,5,["H559"]],[5,7,["H3068"]],[7,10,["H7563"]]]},{"k":18637,"v":[[0,1,["H8085"]],[1,3,["H339"]],[3,4,["H413"]],[4,7,["H7181"]],[7,9,["H3816"]],[9,11,["H4480","H7350"]],[11,13,["H3068"]],[13,15,["H7121"]],[15,19,["H4480","H990"]],[19,22,["H4480","H4578"]],[22,25,["H517"]],[25,29,["H2142"]],[29,32,["H8034"]]]},{"k":18638,"v":[[0,4,["H7760"]],[4,6,["H6310"]],[6,9,["H2299"]],[9,10,["H2719"]],[10,13,["H6738"]],[13,16,["H3027"]],[16,19,["H2244"]],[19,22,["H7760"]],[22,25,["H1305"]],[25,26,["H2671"]],[26,29,["H827"]],[29,32,["H5641"]],[32,33,[]]]},{"k":18639,"v":[[0,2,["H559"]],[2,5,["H859"]],[5,8,["H5650"]],[8,10,["H3478"]],[10,12,["H834"]],[12,16,["H6286"]]]},{"k":18640,"v":[[0,2,["H589"]],[2,3,["H559"]],[3,6,["H3021"]],[6,8,["H7385"]],[8,11,["H3615"]],[11,13,["H3581"]],[13,15,["H8414"]],[15,18,["H1892"]],[18,20,["H403"]],[20,22,["H4941"]],[22,24,["H854"]],[24,26,["H3068"]],[26,29,["H6468"]],[29,30,["H854"]],[30,32,["H430"]]]},{"k":18641,"v":[[0,2,["H6258"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H3335"]],[7,11,["H4480","H990"]],[11,15,["H5650"]],[15,19,["H7725","H3290"]],[19,20,["H413"]],[20,23,["H3478"]],[23,26,["H622"]],[26,31,["H3513"]],[31,34,["H5869"]],[34,37,["H3068"]],[37,40,["H430"]],[40,42,["H1961"]],[42,44,["H5797"]]]},{"k":18642,"v":[[0,3,["H559"]],[3,8,["H7043"]],[8,12,["H4480","H1961"]],[12,14,["H5650"]],[14,17,["H6965","(H853)"]],[17,19,["H7626"]],[19,21,["H3290"]],[21,24,["H7725"]],[24,26,["H5336"]],[26,28,["H3478"]],[28,32,["H5414"]],[32,36,["H216"]],[36,39,["H1471"]],[39,43,["H1961"]],[43,45,["H3444"]],[45,46,["H5704"]],[46,48,["H7097"]],[48,51,["H776"]]]},{"k":18643,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H1350"]],[6,8,["H3478"]],[8,12,["H6918"]],[12,16,["H5315"]],[16,17,["H960"]],[17,22,["H1471"]],[22,23,["H8581"]],[23,26,["H5650"]],[26,28,["H4910"]],[28,29,["H4428"]],[29,31,["H7200"]],[31,33,["H6965"]],[33,34,["H8269"]],[34,37,["H7812"]],[37,39,["H4616"]],[39,41,["H3068"]],[41,42,["H834"]],[42,44,["H539"]],[44,48,["H6918"]],[48,50,["H3478"]],[50,54,["H977"]],[54,55,[]]]},{"k":18644,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,7,["H7522"]],[7,8,["H6256"]],[8,11,["H6030"]],[11,16,["H3117"]],[16,18,["H3444"]],[18,21,["H5826"]],[21,26,["H5341"]],[26,29,["H5414"]],[29,33,["H1285"]],[33,36,["H5971"]],[36,38,["H6965"]],[38,40,["H776"]],[40,44,["H5157"]],[44,46,["H8074"]],[46,47,["H5159"]]]},{"k":18645,"v":[[0,4,["H559"]],[4,7,["H631"]],[7,9,["H3318"]],[9,12,["H834"]],[12,15,["H2822"]],[15,17,["H1540"]],[17,20,["H7462"]],[20,21,["H5921"]],[21,23,["H1870"]],[23,26,["H4830"]],[26,30,["H3605"]],[30,32,["H8205"]]]},{"k":18646,"v":[[0,3,["H3808"]],[3,4,["H7456"]],[4,5,["H3808"]],[5,6,["H6770"]],[6,7,["H3808"]],[7,10,["H8273"]],[10,12,["H8121"]],[12,13,["H5221"]],[13,15,["H3588"]],[15,19,["H7355"]],[19,23,["H5090"]],[23,26,["H5921"]],[26,28,["H4002"]],[28,30,["H4325"]],[30,33,["H5095"]],[33,34,[]]]},{"k":18647,"v":[[0,4,["H7760"]],[4,5,["H3605"]],[5,7,["H2022"]],[7,9,["H1870"]],[9,12,["H4546"]],[12,15,["H7311"]]]},{"k":18648,"v":[[0,1,["H2009"]],[1,2,["H428"]],[2,4,["H935"]],[4,6,["H4480","H7350"]],[6,8,["H2009"]],[8,9,["H428"]],[9,12,["H4480","H6828"]],[12,16,["H4480","H3220"]],[16,18,["H428"]],[18,21,["H4480","H776"]],[21,23,["H5515"]]]},{"k":18649,"v":[[0,1,["H7442"]],[1,3,["H8064"]],[3,6,["H1523"]],[6,8,["H776"]],[8,11,["H6476"]],[11,13,["H7440"]],[13,15,["H2022"]],[15,16,["H3588"]],[16,18,["H3068"]],[18,20,["H5162"]],[20,22,["H5971"]],[22,26,["H7355"]],[26,29,["H6041"]]]},{"k":18650,"v":[[0,2,["H6726"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H5800"]],[7,11,["H136"]],[11,13,["H7911"]],[13,14,[]]]},{"k":18651,"v":[[0,3,["H802"]],[3,4,["H7911"]],[4,7,["H5764"]],[7,13,["H4480","H7355"]],[13,16,["H1121"]],[16,19,["H990"]],[19,20,["H1571"]],[20,21,["H428"]],[21,23,["H7911"]],[23,26,["H595"]],[26,27,["H3808"]],[27,28,["H7911"]],[28,29,[]]]},{"k":18652,"v":[[0,1,["H2005"]],[1,4,["H2710"]],[4,6,["H5921"]],[6,11,["H3709"]],[11,13,["H2346"]],[13,15,["H8548"]],[15,16,["H5048"]],[16,17,[]]]},{"k":18653,"v":[[0,2,["H1121"]],[2,5,["H4116"]],[5,7,["H2040"]],[7,13,["H2717"]],[13,16,["H3318"]],[16,17,["H4480"]],[17,18,[]]]},{"k":18654,"v":[[0,2,["H5375"]],[2,4,["H5869"]],[4,6,["H5439"]],[6,8,["H7200"]],[8,9,["H3605"]],[9,13,["H6908"]],[13,15,["H935"]],[15,19,["H589"]],[19,20,["H2416"]],[20,21,["H5002"]],[21,23,["H3068"]],[23,26,["H3588"]],[26,27,["H3847"]],[27,31,["H3605"]],[31,35,["H5716"]],[35,37,["H7194"]],[37,43,["H3618"]],[43,44,[]]]},{"k":18655,"v":[[0,1,["H3588"]],[1,3,["H2723"]],[3,7,["H8074"]],[7,10,["H776"]],[10,13,["H2035"]],[13,15,["H3588"]],[15,16,["H6258"]],[16,19,["H3334"]],[19,24,["H4480","H3427"]],[24,30,["H1104"]],[30,34,["H7368"]]]},{"k":18656,"v":[[0,2,["H1121"]],[2,12,["H7923"]],[12,14,["H559"]],[14,15,["H5750"]],[15,18,["H241"]],[18,20,["H4725"]],[20,23,["H6862"]],[23,27,["H5066"]],[27,33,["H3427"]]]},{"k":18657,"v":[[0,4,["H559"]],[4,7,["H3824"]],[7,8,["H4310"]],[8,10,["H3205"]],[10,11,["(H853)"]],[11,12,["H428"]],[12,14,["H589"]],[14,18,["H7909"]],[18,21,["H1565"]],[21,23,["H1540"]],[23,28,["H5493"]],[28,30,["H4310"]],[30,33,["H1431"]],[33,34,["H428"]],[34,35,["H2005"]],[35,36,["H589"]],[36,38,["H7604"]],[38,39,["H905"]],[39,40,["H428"]],[40,41,["H375"]],[41,43,["H1992"]],[43,44,[]]]},{"k":18658,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H2009"]],[6,10,["H5375"]],[10,12,["H3027"]],[12,13,["H413"]],[13,15,["H1471"]],[15,18,["H7311"]],[18,20,["H5251"]],[20,21,["H413"]],[21,23,["H5971"]],[23,27,["H935"]],[27,29,["H1121"]],[29,32,["H2684"]],[32,35,["H1323"]],[35,38,["H5375"]],[38,39,["H5921"]],[39,41,["H3802"]]]},{"k":18659,"v":[[0,2,["H4428"]],[2,4,["H1961"]],[4,7,["H539"]],[7,10,["H8282"]],[10,13,["H3243"]],[13,17,["H7812"]],[17,22,["H639"]],[22,25,["H776"]],[25,28,["H3897"]],[28,30,["H6083"]],[30,33,["H7272"]],[33,37,["H3045"]],[37,38,["H3588"]],[38,39,["H589"]],[39,42,["H3068"]],[42,44,["H834"]],[44,46,["H3808"]],[46,48,["H954"]],[48,50,["H6960"]],[50,52,[]]]},{"k":18660,"v":[[0,3,["H4455"]],[3,5,["H3947"]],[5,8,["H4480","H1368"]],[8,9,["H518"]],[9,11,["H6662"]],[11,12,["H7628"]],[12,13,["H4422"]]]},{"k":18661,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H1571"]],[6,8,["H7628"]],[8,11,["H1368"]],[11,15,["H3947"]],[15,18,["H4455"]],[18,21,["H6184"]],[21,24,["H4422"]],[24,26,["H595"]],[26,29,["H7378"]],[29,33,["H3401"]],[33,36,["H595"]],[36,38,["H3467"]],[38,40,["H1121"]]]},{"k":18662,"v":[[0,4,["H398","(H853)"]],[4,7,["H3238"]],[7,9,["(H853)"]],[9,12,["H1320"]],[12,17,["H7937"]],[17,21,["H1818"]],[21,25,["H6071"]],[25,27,["H3605"]],[27,28,["H1320"]],[28,30,["H3045"]],[30,31,["H3588"]],[31,32,["H589"]],[32,34,["H3068"]],[34,37,["H3467"]],[37,40,["H1350"]],[40,43,["H46"]],[43,45,["H3290"]]]},{"k":18663,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H335"]],[5,8,["H5612"]],[8,11,["H517"]],[11,12,["H3748"]],[12,13,["H834"]],[13,17,["H7971"]],[17,18,["H176"]],[18,19,["H4310"]],[19,22,["H4480","H5383"]],[22,26,["H834"]],[26,29,["H4376"]],[29,31,["H2005"]],[31,34,["H5771"]],[34,38,["H4376"]],[38,42,["H6588"]],[42,45,["H517"]],[45,47,["H7971"]]]},{"k":18664,"v":[[0,1,["H4069"]],[1,4,["H935"]],[4,7,["H369"]],[7,8,["H376"]],[8,11,["H7121"]],[11,14,["H369"]],[14,16,["H6030"]],[16,19,["H3027"]],[19,22,["H7114","H7114"]],[22,26,["H4480","H6304"]],[26,27,["H518"]],[27,30,["H369"]],[30,31,["H3581"]],[31,33,["H5337"]],[33,34,["H2005"]],[34,37,["H1606"]],[37,40,["H2717"]],[40,42,["H3220"]],[42,44,["H7760"]],[44,46,["H5104"]],[46,48,["H4057"]],[48,50,["H1710"]],[50,51,["H887"]],[51,55,["H4480","H369"]],[55,56,["H4325"]],[56,58,["H4191"]],[58,60,["H6772"]]]},{"k":18665,"v":[[0,2,["H3847"]],[2,4,["H8064"]],[4,6,["H6940"]],[6,9,["H7760"]],[9,10,["H8242"]],[10,12,["H3682"]]]},{"k":18666,"v":[[0,2,["H136"]],[2,3,["H3069"]],[3,5,["H5414"]],[5,8,["H3956"]],[8,11,["H3928"]],[11,15,["H3045"]],[15,22,["H5790","H1697"]],[22,23,["(H853)"]],[23,27,["H3287"]],[27,29,["H5782"]],[29,30,["H1242"]],[30,32,["H1242"]],[32,34,["H5782"]],[34,36,["H241"]],[36,38,["H8085"]],[38,41,["H3928"]]]},{"k":18667,"v":[[0,2,["H136"]],[2,3,["H3069"]],[3,5,["H6605"]],[5,7,["H241"]],[7,9,["H595"]],[9,11,["H3808"]],[11,12,["H4784"]],[12,13,["H3808"]],[13,15,["H5472"]],[15,16,["H268"]]]},{"k":18668,"v":[[0,2,["H5414"]],[2,4,["H1460"]],[4,7,["H5221"]],[7,10,["H3895"]],[10,17,["H4803"]],[17,19,["H5641"]],[19,20,["H3808"]],[20,22,["H6440"]],[22,24,["H4480","H3639"]],[24,26,["H7536"]]]},{"k":18669,"v":[[0,3,["H136"]],[3,4,["H3069"]],[4,6,["H5826"]],[6,8,["H5921","H3651"]],[8,11,["H3808"]],[11,13,["H3637"]],[13,14,["H5921","H3651"]],[14,17,["H7760"]],[17,19,["H6440"]],[19,22,["H2496"]],[22,25,["H3045"]],[25,26,["H3588"]],[26,29,["H3808"]],[29,31,["H954"]]]},{"k":18670,"v":[[0,3,["H7138"]],[3,5,["H6663"]],[5,7,["H4310"]],[7,9,["H7378"]],[9,10,["H854"]],[10,14,["H5975"]],[14,15,["H3162"]],[15,16,["H4310"]],[16,19,["H1167","H4941"]],[19,23,["H5066"]],[23,24,["H413"]],[24,25,[]]]},{"k":18671,"v":[[0,1,["H2005"]],[1,3,["H136"]],[3,4,["H3069"]],[4,6,["H5826"]],[6,8,["H4310"]],[8,10,["H1931"]],[10,13,["H7561"]],[13,15,["H2005"]],[15,17,["H3605"]],[17,20,["H1086"]],[20,23,["H899"]],[23,25,["H6211"]],[25,29,["H398"]]]},{"k":18672,"v":[[0,1,["H4310"]],[1,6,["H3373"]],[6,8,["H3068"]],[8,10,["H8085"]],[10,12,["H6963"]],[12,15,["H5650"]],[15,16,["H834"]],[16,17,["H1980"]],[17,19,["H2825"]],[19,22,["H369"]],[22,23,["H5051"]],[23,26,["H982"]],[26,29,["H8034"]],[29,32,["H3068"]],[32,34,["H8172"]],[34,37,["H430"]]]},{"k":18673,"v":[[0,1,["H2005"]],[1,2,["H3605"]],[2,5,["H6919"]],[5,7,["H784"]],[7,11,["H247"]],[11,13,["H2131"]],[13,14,["H1980"]],[14,17,["H217"]],[17,20,["H784"]],[20,24,["H2131"]],[24,28,["H1197"]],[28,29,["H2063"]],[29,32,["H1961"]],[32,35,["H4480","H3027"]],[35,39,["H7901"]],[39,41,["H4620"]]]},{"k":18674,"v":[[0,1,["H8085"]],[1,2,["H413"]],[2,7,["H7291"]],[7,8,["H6664"]],[8,11,["H1245"]],[11,13,["H3068"]],[13,14,["H5027"]],[14,15,["H413"]],[15,17,["H6697"]],[17,21,["H2672"]],[21,23,["H413"]],[23,25,["H4718"]],[25,28,["H953"]],[28,32,["H5365"]]]},{"k":18675,"v":[[0,1,["H5027"]],[1,2,["H413"]],[2,3,["H85"]],[3,5,["H1"]],[5,7,["H413"]],[7,8,["H8283"]],[8,10,["H2342"]],[10,12,["H3588"]],[12,14,["H7121"]],[14,16,["H259"]],[16,18,["H1288"]],[18,21,["H7235"]],[21,22,[]]]},{"k":18676,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H5162"]],[5,6,["H6726"]],[6,9,["H5162"]],[9,10,["H3605"]],[10,13,["H2723"]],[13,17,["H7760"]],[17,19,["H4057"]],[19,21,["H5731"]],[21,24,["H6160"]],[24,27,["H1588"]],[27,30,["H3068"]],[30,31,["H8342"]],[31,33,["H8057"]],[33,36,["H4672"]],[36,38,["H8426"]],[38,41,["H6963"]],[41,43,["H2172"]]]},{"k":18677,"v":[[0,1,["H7181"]],[1,2,["H413"]],[2,5,["H5971"]],[5,8,["H238"]],[8,9,["H413"]],[9,13,["H3816"]],[13,14,["H3588"]],[14,16,["H8451"]],[16,18,["H3318"]],[18,19,["H4480","H854"]],[19,26,["H4941"]],[26,28,["H7280"]],[28,31,["H216"]],[31,34,["H5971"]]]},{"k":18678,"v":[[0,2,["H6664"]],[2,4,["H7138"]],[4,6,["H3468"]],[6,9,["H3318"]],[9,12,["H2220"]],[12,14,["H8199"]],[14,16,["H5971"]],[16,18,["H339"]],[18,20,["H6960"]],[20,21,["H413"]],[21,24,["H413"]],[24,26,["H2220"]],[26,29,["H3176"]]]},{"k":18679,"v":[[0,2,["H5375"]],[2,4,["H5869"]],[4,7,["H8064"]],[7,9,["H5027"]],[9,10,["H413"]],[10,12,["H776"]],[12,13,["H4480","H8478"]],[13,14,["H3588"]],[14,16,["H8064"]],[16,19,["H4414"]],[19,21,["H6227"]],[21,24,["H776"]],[24,27,["H1086"]],[27,30,["H899"]],[30,34,["H3427"]],[34,37,["H4191"]],[37,40,["H3644","H3651"]],[40,43,["H3444"]],[43,45,["H1961"]],[45,47,["H5769"]],[47,50,["H6666"]],[50,52,["H3808"]],[52,54,["H2865"]]]},{"k":18680,"v":[[0,1,["H8085"]],[1,2,["H413"]],[2,6,["H3045"]],[6,7,["H6664"]],[7,9,["H5971"]],[9,12,["H3820"]],[12,15,["H8451"]],[15,16,["H3372"]],[16,18,["H408"]],[18,20,["H2781"]],[20,22,["H582"]],[22,23,["H408"]],[23,26,["H2865"]],[26,29,["H4480","H1421"]]]},{"k":18681,"v":[[0,1,["H3588"]],[1,3,["H6211"]],[3,7,["H398"]],[7,10,["H899"]],[10,13,["H5580"]],[13,15,["H398"]],[15,18,["H6785"]],[18,21,["H6666"]],[21,23,["H1961"]],[23,25,["H5769"]],[25,28,["H3444"]],[28,30,["H1755"]],[30,32,["H1755"]]]},{"k":18682,"v":[[0,1,["H5782"]],[1,2,["H5782"]],[2,4,["H3847"]],[4,5,["H5797"]],[5,7,["H2220"]],[7,10,["H3068"]],[10,11,["H5782"]],[11,15,["H6924"]],[15,16,["H3117"]],[16,19,["H1755"]],[19,21,["H5769"]],[21,23,["H859"]],[23,24,["H3808"]],[24,25,["H1931"]],[25,28,["H2672"]],[28,29,["H7293"]],[29,31,["H2490"]],[31,33,["H8577"]]]},{"k":18683,"v":[[0,2,["H859"]],[2,3,["H3808"]],[3,4,["H1931"]],[4,7,["H2717"]],[7,9,["H3220"]],[9,11,["H4325"]],[11,14,["H7227"]],[14,15,["H8415"]],[15,18,["H7760"]],[18,20,["H4615"]],[20,23,["H3220"]],[23,25,["H1870"]],[25,28,["H1350"]],[28,31,["H5674"]]]},{"k":18684,"v":[[0,3,["H6299"]],[3,6,["H3068"]],[6,8,["H7725"]],[8,10,["H935"]],[10,12,["H7440"]],[12,14,["H6726"]],[14,16,["H5769"]],[16,17,["H8057"]],[17,20,["H5921"]],[20,22,["H7218"]],[22,25,["H5381"]],[25,26,["H8342"]],[26,28,["H8057"]],[28,30,["H3015"]],[30,32,["H585"]],[32,35,["H5127"]]]},{"k":18685,"v":[[0,1,["H595"]],[1,3,["H595"]],[3,5,["H1931"]],[5,7,["H5162"]],[7,9,["H4310"]],[9,11,["H859"]],[11,16,["H3372"]],[16,19,["H4480","H582"]],[19,22,["H4191"]],[22,26,["H4480","H1121"]],[26,28,["H120"]],[28,32,["H5414"]],[32,34,["H2682"]]]},{"k":18686,"v":[[0,2,["H7911"]],[2,4,["H3068"]],[4,6,["H6213"]],[6,10,["H5186"]],[10,12,["H8064"]],[12,16,["H3245"]],[16,19,["H776"]],[19,22,["H6342"]],[22,23,["H8548"]],[23,24,["H3605"]],[24,25,["H3117"]],[25,26,["H4480","H6440"]],[26,29,["H2534"]],[29,32,["H6693"]],[32,33,["H834"]],[33,37,["H3559"]],[37,39,["H7843"]],[39,41,["H346"]],[41,44,["H2534"]],[44,47,["H6693"]]]},{"k":18687,"v":[[0,3,["H6808"]],[3,4,["H4116"]],[4,9,["H6605"]],[9,14,["H3808"]],[14,15,["H4191"]],[15,18,["H7845"]],[18,19,["H3808"]],[19,22,["H3899"]],[22,24,["H2637"]]]},{"k":18688,"v":[[0,2,["H595"]],[2,5,["H3068"]],[5,7,["H430"]],[7,9,["H7280"]],[9,11,["H3220"]],[11,13,["H1530"]],[13,14,["H1993"]],[14,16,["H3068"]],[16,18,["H6635"]],[18,21,["H8034"]]]},{"k":18689,"v":[[0,4,["H7760"]],[4,6,["H1697"]],[6,9,["H6310"]],[9,13,["H3680"]],[13,17,["H6738"]],[17,20,["H3027"]],[20,24,["H5193"]],[24,26,["H8064"]],[26,30,["H3245"]],[30,33,["H776"]],[33,35,["H559"]],[35,37,["H6726"]],[37,38,["H859"]],[38,41,["H5971"]]]},{"k":18690,"v":[[0,1,["H5782"]],[1,2,["H5782"]],[2,4,["H6965"]],[4,6,["H3389"]],[6,7,["H834"]],[7,9,["H8354"]],[9,12,["H4480","H3027"]],[12,15,["H3068","(H853)"]],[15,17,["H3563"]],[17,20,["H2534"]],[20,23,["H8354","(H853)"]],[23,25,["H6907"]],[25,28,["H3563"]],[28,30,["H8653"]],[30,34,["H4680"]]]},{"k":18691,"v":[[0,3,["H369"]],[3,5,["H5095"]],[5,8,["H4480","H3605"]],[8,10,["H1121"]],[10,15,["H3205"]],[15,16,["H369"]],[16,21,["H2388"]],[21,25,["H3027"]],[25,27,["H4480","H3605"]],[27,29,["H1121"]],[29,34,["H1431"]]]},{"k":18692,"v":[[0,1,["H2007"]],[1,2,["H8147"]],[2,5,["H7122"]],[5,8,["H4310"]],[8,11,["H5110"]],[11,14,["H7701"]],[14,16,["H7667"]],[16,19,["H7458"]],[19,22,["H2719"]],[22,24,["H4310"]],[24,27,["H5162"]],[27,28,[]]]},{"k":18693,"v":[[0,2,["H1121"]],[2,4,["H5968"]],[4,6,["H7901"]],[6,9,["H7218"]],[9,11,["H3605"]],[11,13,["H2351"]],[13,17,["H8377"]],[17,20,["H4364"]],[20,23,["H4392"]],[23,26,["H2534"]],[26,29,["H3068"]],[29,31,["H1606"]],[31,34,["H430"]]]},{"k":18694,"v":[[0,1,["H3651"]],[1,2,["H8085"]],[2,3,["H4994"]],[3,4,["H2063"]],[4,6,["H6041"]],[6,8,["H7937"]],[8,10,["H3808"]],[10,12,["H4480","H3196"]]]},{"k":18695,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H113"]],[4,6,["H3068"]],[6,9,["H430"]],[9,13,["H7378"]],[13,16,["H5971"]],[16,17,["H2009"]],[17,20,["H3947"]],[20,24,["H4480","H3027","(H853)"]],[24,26,["H3563"]],[26,28,["H8653"]],[28,29,["(H853)"]],[29,31,["H6907"]],[31,34,["H3563"]],[34,37,["H2534"]],[37,40,["H3808"]],[40,41,["H3254"]],[41,42,["H8354"]],[42,44,["H5750"]]]},{"k":18696,"v":[[0,4,["H7760"]],[4,8,["H3027"]],[8,12,["H3013"]],[12,14,["H834"]],[14,16,["H559"]],[16,19,["H5315"]],[19,21,["H7812"]],[21,26,["H5674"]],[26,30,["H7760"]],[30,32,["H1460"]],[32,35,["H776"]],[35,39,["H2351"]],[39,44,["H5674"]]]},{"k":18697,"v":[[0,1,["H5782"]],[1,2,["H5782"]],[2,4,["H3847"]],[4,6,["H5797"]],[6,8,["H6726"]],[8,10,["H3847"]],[10,12,["H8597"]],[12,13,["H899"]],[13,15,["H3389"]],[15,17,["H6944"]],[17,18,["H5892"]],[18,19,["H3588"]],[19,20,["H3254"]],[20,23,["H3808"]],[23,24,["H5750"]],[24,25,["H935"]],[25,29,["H6189"]],[29,32,["H2931"]]]},{"k":18698,"v":[[0,2,["H5287"]],[2,5,["H4480","H6083"]],[5,6,["H6965"]],[6,9,["H3427"]],[9,11,["H3389"]],[11,13,["H6605"]],[13,16,["H4147"]],[16,19,["H6677"]],[19,21,["H7628"]],[21,22,["H1323"]],[22,24,["H6726"]]]},{"k":18699,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,9,["H4376"]],[9,11,["H2600"]],[11,16,["H1350"]],[16,17,["H3808"]],[17,18,["H3701"]]]},{"k":18700,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,8,["H5971"]],[8,10,["H3381"]],[10,11,["H7223"]],[11,13,["H4714"]],[13,15,["H1481"]],[15,16,["H8033"]],[16,19,["H804"]],[19,20,["H6231"]],[20,23,["H657"]]]},{"k":18701,"v":[[0,1,["H6258"]],[1,3,["H4100"]],[3,6,["H6311"]],[6,7,["H5002"]],[7,9,["H3068"]],[9,10,["H3588"]],[10,12,["H5971"]],[12,15,["H3947"]],[15,17,["H2600"]],[17,21,["H4910"]],[21,26,["H3213"]],[26,27,["H5002"]],[27,29,["H3068"]],[29,32,["H8034"]],[32,33,["H8548"]],[33,34,["H3605"]],[34,35,["H3117"]],[35,37,["H5006"]]]},{"k":18702,"v":[[0,1,["H3651"]],[1,3,["H5971"]],[3,5,["H3045"]],[5,7,["H8034"]],[7,8,["H3651"]],[8,13,["H1931"]],[13,14,["H3117"]],[14,15,["H3588"]],[15,16,["H589"]],[16,18,["H1931"]],[18,21,["H1696"]],[21,22,["H2009"]],[22,25,[]]]},{"k":18703,"v":[[0,1,["H4100"]],[1,2,["H4998"]],[2,3,["H5921"]],[3,5,["H2022"]],[5,8,["H7272"]],[8,14,["H1319"]],[14,16,["H8085"]],[16,17,["H7965"]],[17,21,["H1319"]],[21,23,["H2896"]],[23,25,["H8085"]],[25,26,["H3444"]],[26,28,["H559"]],[28,30,["H6726"]],[30,32,["H430"]],[32,33,["H4427"]]]},{"k":18704,"v":[[0,2,["H6822"]],[2,5,["H5375"]],[5,7,["H6963"]],[7,10,["H6963"]],[10,11,["H3162"]],[11,14,["H7442"]],[14,15,["H3588"]],[15,18,["H7200"]],[18,19,["H5869"]],[19,21,["H5869"]],[21,24,["H3068"]],[24,27,["H7725"]],[27,28,["H6726"]]]},{"k":18705,"v":[[0,4,["H6476"]],[4,5,["H7442"]],[5,6,["H3162"]],[6,9,["H2723"]],[9,11,["H3389"]],[11,12,["H3588"]],[12,14,["H3068"]],[14,16,["H5162"]],[16,18,["H5971"]],[18,21,["H1350"]],[21,22,["H3389"]]]},{"k":18706,"v":[[0,2,["H3068"]],[2,5,["H2834","(H853)"]],[5,7,["H6944"]],[7,8,["H2220"]],[8,11,["H5869"]],[11,13,["H3605"]],[13,15,["H1471"]],[15,17,["H3605"]],[17,19,["H657"]],[19,22,["H776"]],[22,24,["H7200","(H853)"]],[24,26,["H3444"]],[26,29,["H430"]]]},{"k":18707,"v":[[0,1,["H5493"]],[1,3,["H5493"]],[3,7,["H3318"]],[7,9,["H4480","H8033"]],[9,10,["H5060"]],[10,11,["H408"]],[11,12,["H2931"]],[12,16,["H3318"]],[16,19,["H4480","H8432"]],[19,24,["H1305"]],[24,26,["H5375"]],[26,28,["H3627"]],[28,31,["H3068"]]]},{"k":18708,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,6,["H3318"]],[6,8,["H2649"]],[8,9,["H3808"]],[9,10,["H1980"]],[10,12,["H4499"]],[12,13,["H3588"]],[13,15,["H3068"]],[15,17,["H1980"]],[17,18,["H6440"]],[18,22,["H430"]],[22,24,["H3478"]],[24,28,["H622"]]]},{"k":18709,"v":[[0,1,["H2009"]],[1,3,["H5650"]],[3,6,["H7919"]],[6,10,["H7311"]],[10,12,["H5375"]],[12,16,["H1361","H3966"]]]},{"k":18710,"v":[[0,1,["H834"]],[1,2,["H7227"]],[2,4,["H8074"]],[4,5,["H5921"]],[5,8,["H4758"]],[8,10,["H3651"]],[10,11,["H4893"]],[11,15,["H4480","H376"]],[15,18,["H8389"]],[18,22,["H4480","H1121"]],[22,24,["H120"]]]},{"k":18711,"v":[[0,1,["H3651"]],[1,4,["H5137"]],[4,5,["H7227"]],[5,6,["H1471"]],[6,8,["H4428"]],[8,10,["H7092"]],[10,12,["H6310"]],[12,13,["H5921"]],[13,15,["H3588"]],[15,17,["H834"]],[17,19,["H3808"]],[19,21,["H5608"]],[21,25,["H7200"]],[25,28,["H834"]],[28,31,["H3808"]],[31,32,["H8085"]],[32,35,["H995"]]]},{"k":18712,"v":[[0,1,["H4310"]],[1,3,["H539"]],[3,5,["H8052"]],[5,7,["H5921"]],[7,8,["H4310"]],[8,11,["H2220"]],[11,14,["H3068"]],[14,15,["H1540"]]]},{"k":18713,"v":[[0,5,["H5927"]],[5,6,["H6440"]],[6,11,["H3126"]],[11,15,["H8328"]],[15,19,["H6723"]],[19,20,["H4480","H776"]],[20,23,["H3808"]],[23,24,["H8389"]],[24,25,["H3808"]],[25,26,["H1926"]],[26,31,["H7200"]],[31,35,["H3808"]],[35,36,["H4758"]],[36,40,["H2530"]],[40,41,[]]]},{"k":18714,"v":[[0,3,["H959"]],[3,5,["H2310"]],[5,7,["H376"]],[7,9,["H376"]],[9,11,["H4341"]],[11,13,["H3045"]],[13,15,["H2483"]],[15,18,["H4564"]],[18,23,["H6440"]],[23,24,["H4480"]],[24,28,["H959"]],[28,31,["H2803"]],[31,33,["H3808"]]]},{"k":18715,"v":[[0,1,["H403"]],[1,2,["H1931"]],[2,4,["H5375"]],[4,6,["H2483"]],[6,8,["H5445"]],[8,10,["H4341"]],[10,12,["H587"]],[12,14,["H2803"]],[14,16,["H5060"]],[16,17,["H5221"]],[17,19,["H430"]],[19,21,["H6031"]]]},{"k":18716,"v":[[0,2,["H1931"]],[2,4,["H2490"]],[4,7,["H4480","H6588"]],[7,10,["H1792"]],[10,13,["H4480","H5771"]],[13,15,["H4148"]],[15,18,["H7965"]],[18,20,["H5921"]],[20,25,["H2250"]],[25,28,["H7495"]]]},{"k":18717,"v":[[0,1,["H3605"]],[1,4,["H6629"]],[4,7,["H8582"]],[7,10,["H6437"]],[10,12,["H376"]],[12,16,["H1870"]],[16,19,["H3068"]],[19,21,["H6293"]],[21,23,["(H853)"]],[23,25,["H5771"]],[25,28,["H3605"]]]},{"k":18718,"v":[[0,3,["H5065"]],[3,5,["H1931"]],[5,7,["H6031"]],[7,10,["H6605"]],[10,11,["H3808"]],[11,13,["H6310"]],[13,16,["H2986"]],[16,19,["H7716"]],[19,22,["H2874"]],[22,26,["H7353"]],[26,27,["H6440"]],[27,29,["H1494"]],[29,31,["H481"]],[31,34,["H6605"]],[34,35,["H3808"]],[35,37,["H6310"]]]},{"k":18719,"v":[[0,3,["H3947"]],[3,5,["H4480","H6115"]],[5,8,["H4480","H4941"]],[8,10,["H4310"]],[10,12,["H7878"]],[12,14,["H1755"]],[14,15,["H3588"]],[15,19,["H1504"]],[19,23,["H4480","H776"]],[23,26,["H2416"]],[26,29,["H4480","H6588"]],[29,32,["H5971"]],[32,35,["H5061"]]]},{"k":18720,"v":[[0,3,["H5414"]],[3,5,["H6913"]],[5,6,["H854"]],[6,8,["H7563"]],[8,10,["H854"]],[10,12,["H6223"]],[12,15,["H4194"]],[15,16,["H5921"]],[16,19,["H6213"]],[19,20,["H3808"]],[20,21,["H2555"]],[21,22,["H3808"]],[22,25,["H4820"]],[25,28,["H6310"]]]},{"k":18721,"v":[[0,3,["H2654"]],[3,5,["H3068"]],[5,7,["H1792"]],[7,14,["H2470"]],[14,15,["H518"]],[15,18,["H7760"]],[18,20,["H5315"]],[20,24,["H817"]],[24,27,["H7200"]],[27,29,["H2233"]],[29,32,["H748"]],[32,34,["H3117"]],[34,37,["H2656"]],[37,40,["H3068"]],[40,42,["H6743"]],[42,45,["H3027"]]]},{"k":18722,"v":[[0,3,["H7200"]],[3,6,["H4480","H5999"]],[6,9,["H5315"]],[9,13,["H7646"]],[13,16,["H1847"]],[16,19,["H6662"]],[19,20,["H5650"]],[20,21,["H6663"]],[21,22,["H7227"]],[22,24,["H1931"]],[24,26,["H5445"]],[26,28,["H5771"]]]},{"k":18723,"v":[[0,1,["H3651"]],[1,4,["H2505"]],[4,10,["H7227"]],[10,14,["H2505"]],[14,16,["H7998"]],[16,17,["H854"]],[17,19,["H6099"]],[19,20,["H8478","H834"]],[20,24,["H6168"]],[24,26,["H5315"]],[26,28,["H4194"]],[28,30,["H1931"]],[30,32,["H4487"]],[32,33,["H854"]],[33,35,["H6586"]],[35,38,["H5375"]],[38,40,["H2399"]],[40,42,["H7227"]],[42,45,["H6293"]],[45,48,["H6586"]]]},{"k":18724,"v":[[0,1,["H7442"]],[1,3,["H6135"]],[3,7,["H3808"]],[7,8,["H3205"]],[8,10,["H6476"]],[10,12,["H7440"]],[12,15,["H6670"]],[15,19,["H3808"]],[19,22,["H2342"]],[22,23,["H3588"]],[23,24,["H7227"]],[24,27,["H1121"]],[27,30,["H8074"]],[30,33,["H4480","H1121"]],[33,37,["H1166"]],[37,38,["H559"]],[38,40,["H3068"]]]},{"k":18725,"v":[[0,1,["H7337"]],[1,3,["H4725"]],[3,6,["H168"]],[6,11,["H5186"]],[11,13,["H3407"]],[13,16,["H4908"]],[16,17,["H2820"]],[17,18,["H408"]],[18,19,["H748"]],[19,21,["H4340"]],[21,23,["H2388"]],[23,25,["H3489"]]]},{"k":18726,"v":[[0,1,["H3588"]],[1,5,["H6555"]],[5,9,["H3225"]],[9,13,["H8040"]],[13,16,["H2233"]],[16,18,["H3423"]],[18,20,["H1471"]],[20,24,["H8074"]],[24,25,["H5892"]],[25,28,["H3427"]]]},{"k":18727,"v":[[0,1,["H3372"]],[1,2,["H408"]],[2,3,["H3588"]],[3,6,["H3808"]],[6,8,["H954"]],[8,9,["H408"]],[9,12,["H3637"]],[12,13,["H3588"]],[13,16,["H3808"]],[16,20,["H2659"]],[20,21,["H3588"]],[21,24,["H7911"]],[24,26,["H1322"]],[26,29,["H5934"]],[29,32,["H3808"]],[32,33,["H2142"]],[33,35,["H2781"]],[35,38,["H491"]],[38,40,["H5750"]]]},{"k":18728,"v":[[0,1,["H3588"]],[1,3,["H6213"]],[3,6,["H1166"]],[6,8,["H3068"]],[8,10,["H6635"]],[10,13,["H8034"]],[13,16,["H1350"]],[16,19,["H6918"]],[19,21,["H3478"]],[21,23,["H430"]],[23,26,["H3605"]],[26,27,["H776"]],[27,31,["H7121"]]]},{"k":18729,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H7121"]],[5,9,["H802"]],[9,10,["H5800"]],[10,12,["H6087"]],[12,14,["H7307"]],[14,17,["H802"]],[17,19,["H5271"]],[19,20,["H3588"]],[20,23,["H3988"]],[23,24,["H559"]],[24,26,["H430"]]]},{"k":18730,"v":[[0,3,["H6996"]],[3,4,["H7281"]],[4,7,["H5800"]],[7,11,["H1419"]],[11,12,["H7356"]],[12,15,["H6908"]],[15,16,[]]]},{"k":18731,"v":[[0,3,["H8241"]],[3,4,["H7110"]],[4,6,["H5641"]],[6,8,["H6440"]],[8,9,["H4480"]],[9,13,["H7281"]],[13,16,["H5769"]],[16,17,["H2617"]],[17,21,["H7355"]],[21,24,["H559"]],[24,26,["H3068"]],[26,28,["H1350"]]]},{"k":18732,"v":[[0,1,["H3588"]],[1,2,["H2063"]],[2,6,["H4325"]],[6,8,["H5146"]],[8,11,["H834"]],[11,15,["H7650"]],[15,18,["H4325"]],[18,20,["H5146"]],[20,23,["H5750"]],[23,24,["H4480","H5674"]],[24,25,["H5921"]],[25,27,["H776"]],[27,28,["H3651"]],[28,31,["H7650"]],[31,37,["H4480","H7107"]],[37,38,["H5921"]],[38,41,["H4480","H1605"]],[41,42,[]]]},{"k":18733,"v":[[0,1,["H3588"]],[1,3,["H2022"]],[3,5,["H4185"]],[5,8,["H1389"]],[8,10,["H4131"]],[10,13,["H2617"]],[13,15,["H3808"]],[15,16,["H4185"]],[16,17,["H4480","H854"]],[17,19,["H3808"]],[19,22,["H1285"]],[22,25,["H7965"]],[25,27,["H4131"]],[27,28,["H559"]],[28,30,["H3068"]],[30,33,["H7355"]],[33,35,[]]]},{"k":18734,"v":[[0,3,["H6041"]],[3,6,["H5590"]],[6,8,["H3808"]],[8,9,["H5162"]],[9,10,["H2009"]],[10,11,["H595"]],[11,13,["H7257"]],[13,15,["H68"]],[15,18,["H6320"]],[18,22,["H3245"]],[22,24,["H5601"]]]},{"k":18735,"v":[[0,4,["H7760"]],[4,6,["H8121"]],[6,8,["H3539"]],[8,11,["H8179"]],[11,13,["H68","H688"]],[13,15,["H3605"]],[15,17,["H1366"]],[17,19,["H2656"]],[19,20,["H68"]]]},{"k":18736,"v":[[0,2,["H3605"]],[2,4,["H1121"]],[4,7,["H3928"]],[7,10,["H3068"]],[10,12,["H7227"]],[12,16,["H7965"]],[16,19,["H1121"]]]},{"k":18737,"v":[[0,2,["H6666"]],[2,6,["H3559"]],[6,10,["H7368"]],[10,12,["H4480","H6233"]],[12,13,["H3588"]],[13,16,["H3808"]],[16,17,["H3372"]],[17,20,["H4480","H4288"]],[20,21,["H3588"]],[21,24,["H3808"]],[24,26,["H7126","H413"]],[26,27,[]]]},{"k":18738,"v":[[0,1,["H2005"]],[1,6,["H1481","H1481"]],[6,8,["H657"]],[8,9,["H4480","H854"]],[9,11,["H4310"]],[11,14,["H1481"]],[14,15,["H854"]],[15,18,["H5307"]],[18,19,["H5921"]],[19,21,[]]]},{"k":18739,"v":[[0,1,["H2009"]],[1,2,["H595"]],[2,4,["H1254"]],[4,6,["H2796"]],[6,8,["H5301"]],[8,10,["H6352"]],[10,13,["H784"]],[13,17,["H3318"]],[17,19,["H3627"]],[19,22,["H4639"]],[22,24,["H595"]],[24,26,["H1254"]],[26,28,["H7843"]],[28,30,["H2254"]]]},{"k":18740,"v":[[0,1,["H3808","H3605"]],[1,2,["H3627"]],[2,5,["H3335"]],[5,6,["H5921"]],[6,9,["H6743"]],[9,11,["H3605"]],[11,12,["H3956"]],[12,15,["H6965"]],[15,16,["H854"]],[16,19,["H4941"]],[19,22,["H7561"]],[22,23,["H2063"]],[23,26,["H5159"]],[26,29,["H5650"]],[29,32,["H3068"]],[32,35,["H6666"]],[35,37,["H4480","H854"]],[37,39,["H5002"]],[39,41,["H3068"]]]},{"k":18741,"v":[[0,1,["H1945"]],[1,3,["H3605"]],[3,5,["H6771"]],[5,6,["H1980"]],[6,10,["H4325"]],[10,13,["H834"]],[13,15,["H369"]],[15,16,["H3701"]],[16,17,["H1980"]],[17,19,["H7666"]],[19,21,["H398"]],[21,23,["H1980"]],[23,24,["H7666"]],[24,25,["H3196"]],[25,27,["H2461"]],[27,28,["H3808"]],[28,29,["H3701"]],[29,31,["H3808"]],[31,32,["H4242"]]]},{"k":18742,"v":[[0,1,["H4100"]],[1,4,["H8254"]],[4,5,["H3701"]],[5,10,["H3808"]],[10,11,["H3899"]],[11,14,["H3018"]],[14,18,["H7654"]],[18,19,["H3808"]],[19,21,["H8085","H8085"]],[21,22,["H413"]],[22,25,["H398"]],[25,30,["H2896"]],[30,34,["H5315"]],[34,36,["H6026"]],[36,38,["H1880"]]]},{"k":18743,"v":[[0,1,["H5186"]],[1,3,["H241"]],[3,5,["H1980"]],[5,6,["H413"]],[6,8,["H8085"]],[8,11,["H5315"]],[11,13,["H2421"]],[13,17,["H3772"]],[17,19,["H5769"]],[19,20,["H1285"]],[20,25,["H539"]],[25,26,["H2617"]],[26,28,["H1732"]]]},{"k":18744,"v":[[0,1,["H2005"]],[1,4,["H5414"]],[4,8,["H5707"]],[8,11,["H3816"]],[11,13,["H5057"]],[13,15,["H6680"]],[15,18,["H3816"]]]},{"k":18745,"v":[[0,1,["H2005"]],[1,4,["H7121"]],[4,6,["H1471"]],[6,9,["H3045"]],[9,10,["H3808"]],[10,12,["H1471"]],[12,14,["H3045"]],[14,15,["H3808"]],[15,18,["H7323"]],[18,19,["H413"]],[19,21,["H4616"]],[21,24,["H3068"]],[24,26,["H430"]],[26,31,["H6918"]],[31,33,["H3478"]],[33,34,["H3588"]],[34,37,["H6286"]],[37,38,[]]]},{"k":18746,"v":[[0,1,["H1875"]],[1,4,["H3068"]],[4,9,["H4672"]],[9,10,["H7121"]],[10,16,["H1961"]],[16,17,["H7138"]]]},{"k":18747,"v":[[0,3,["H7563"]],[3,4,["H5800"]],[4,6,["H1870"]],[6,9,["H205"]],[9,10,["H376"]],[10,12,["H4284"]],[12,16,["H7725"]],[16,17,["H413"]],[17,19,["H3068"]],[19,24,["H7355"]],[24,28,["H413"]],[28,30,["H430"]],[30,31,["H3588"]],[31,34,["H7235"]],[34,35,["H5545"]]]},{"k":18748,"v":[[0,1,["H3588"]],[1,3,["H4284"]],[3,5,["H3808"]],[5,7,["H4284"]],[7,8,["H3808"]],[8,11,["H1870"]],[11,13,["H1870"]],[13,14,["H5002"]],[14,16,["H3068"]]]},{"k":18749,"v":[[0,1,["H3588"]],[1,4,["H8064"]],[4,6,["H1361"]],[6,9,["H4480","H776"]],[9,10,["H3651"]],[10,14,["H1361","H1870"]],[14,17,["H4480","H1870"]],[17,20,["H4284"]],[20,23,["H4480","H4284"]]]},{"k":18750,"v":[[0,1,["H3588"]],[1,2,["H834"]],[2,4,["H1653"]],[4,6,["H3381"]],[6,9,["H7950"]],[9,10,["H4480"]],[10,11,["H8064"]],[11,13,["H7725"]],[13,14,["H3808"]],[14,15,["H8033"]],[15,16,["H3588","H518"]],[16,17,["H7301","(H853)"]],[17,19,["H776"]],[19,24,["H3205"]],[24,26,["H6779"]],[26,30,["H5414"]],[30,31,["H2233"]],[31,34,["H2232"]],[34,36,["H3899"]],[36,39,["H398"]]]},{"k":18751,"v":[[0,1,["H3651"]],[1,4,["H1697"]],[4,5,["H1961"]],[5,6,["H834"]],[6,8,["H3318"]],[8,12,["H4480","H6310"]],[12,15,["H3808"]],[15,16,["H7725"]],[16,17,["H413"]],[17,19,["H7387"]],[19,20,["H3588","H518"]],[20,23,["H6213","(H853)"]],[23,25,["H834"]],[25,27,["H2654"]],[27,31,["H6743"]],[31,35,["H834"]],[35,37,["H7971"]],[37,38,[]]]},{"k":18752,"v":[[0,1,["H3588"]],[1,5,["H3318"]],[5,7,["H8057"]],[7,11,["H2986"]],[11,13,["H7965"]],[13,15,["H2022"]],[15,18,["H1389"]],[18,21,["H6476"]],[21,22,["H6440"]],[22,25,["H7440"]],[25,27,["H3605"]],[27,29,["H6086"]],[29,32,["H7704"]],[32,34,["H4222"]],[34,36,["H3709"]]]},{"k":18753,"v":[[0,1,["H8478"]],[1,4,["H5285"]],[4,7,["H5927"]],[7,10,["H1265"]],[10,12,["H8478"]],[12,15,["H5636"]],[15,18,["H5927"]],[18,21,["H1918"]],[21,25,["H1961"]],[25,28,["H3068"]],[28,31,["H8034"]],[31,34,["H5769"]],[34,35,["H226"]],[35,38,["H3808"]],[38,41,["H3772"]]]},{"k":18754,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H8104"]],[5,7,["H4941"]],[7,9,["H6213"]],[9,10,["H6666"]],[10,11,["H3588"]],[11,13,["H3444"]],[13,15,["H7138"]],[15,17,["H935"]],[17,20,["H6666"]],[20,23,["H1540"]]]},{"k":18755,"v":[[0,1,["H835"]],[1,4,["H582"]],[4,6,["H6213"]],[6,7,["H2063"]],[7,10,["H1121"]],[10,12,["H120"]],[12,15,["H2388"]],[15,19,["H8104"]],[19,21,["H7676"]],[21,23,["H4480","H2490"]],[23,26,["H8104"]],[26,28,["H3027"]],[28,30,["H4480","H6213"]],[30,31,["H3605"]],[31,32,["H7451"]]]},{"k":18756,"v":[[0,1,["H408"]],[1,4,["H1121"]],[4,7,["H5236"]],[7,11,["H3867"]],[11,12,["H413"]],[12,14,["H3068"]],[14,15,["H559"]],[15,16,["H559"]],[16,18,["H3068"]],[18,21,["H914","H914"]],[21,23,["H4480","H5921"]],[23,25,["H5971"]],[25,26,["H408"]],[26,29,["H5631"]],[29,30,["H559"]],[30,31,["H2005"]],[31,32,["H589"]],[32,35,["H3002"]],[35,36,["H6086"]]]},{"k":18757,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,8,["H5631"]],[8,9,["H834"]],[9,10,["H8104","(H853)"]],[10,12,["H7676"]],[12,14,["H977"]],[14,17,["H834"]],[17,18,["H2654"]],[18,22,["H2388"]],[22,25,["H1285"]]]},{"k":18758,"v":[[0,6,["H5414"]],[6,9,["H1004"]],[9,13,["H2346"]],[13,15,["H3027"]],[15,18,["H8034"]],[18,19,["H2896"]],[19,22,["H4480","H1121"]],[22,25,["H4480","H1323"]],[25,28,["H5414"]],[28,31,["H5769"]],[31,32,["H8034"]],[32,33,["H834"]],[33,35,["H3808"]],[35,38,["H3772"]]]},{"k":18759,"v":[[0,3,["H1121"]],[3,6,["H5236"]],[6,9,["H3867"]],[9,10,["H5921"]],[10,12,["H3068"]],[12,14,["H8334"]],[14,18,["H157","(H853)"]],[18,20,["H8034"]],[20,23,["H3068"]],[23,25,["H1961"]],[25,27,["H5650"]],[27,29,["H3605"]],[29,31,["H8104"]],[31,33,["H7676"]],[33,35,["H4480","H2490"]],[35,39,["H2388"]],[39,42,["H1285"]]]},{"k":18760,"v":[[0,5,["H935"]],[5,6,["H413"]],[6,8,["H6944"]],[8,9,["H2022"]],[9,13,["H8055"]],[13,16,["H1004"]],[16,18,["H8605"]],[18,21,["H5930"]],[21,24,["H2077"]],[24,27,["H7522"]],[27,28,["H5921"]],[28,30,["H4196"]],[30,31,["H3588"]],[31,33,["H1004"]],[33,36,["H7121"]],[36,38,["H1004"]],[38,40,["H8605"]],[40,42,["H3605"]],[42,43,["H5971"]]]},{"k":18761,"v":[[0,2,["H136"]],[2,3,["H3069"]],[3,5,["H6908"]],[5,7,["H1760"]],[7,9,["H3478"]],[9,10,["H5002"]],[10,11,["H5750"]],[11,14,["H6908"]],[14,16,["H5921"]],[16,22,["H6908"]],[22,24,[]]]},{"k":18762,"v":[[0,1,["H3605"]],[1,3,["H2416"]],[3,6,["H7704"]],[6,7,["H857"]],[7,9,["H398"]],[9,11,["H3605"]],[11,13,["H2416"]],[13,16,["H3293"]]]},{"k":18763,"v":[[0,2,["H6822"]],[2,4,["H5787"]],[4,7,["H3605"]],[7,8,["H3808","H3045"]],[8,11,["H3605"]],[11,12,["H483"]],[12,13,["H3611"]],[13,15,["H3201","H3808"]],[15,16,["H5024"]],[16,17,["H1957"]],[17,19,["H7901"]],[19,20,["H157"]],[20,22,["H5123"]]]},{"k":18764,"v":[[0,4,["H5794","H5315"]],[4,5,["H3611"]],[5,8,["H3808"]],[8,9,["H3045"]],[9,10,["H7654"]],[10,12,["H1992"]],[12,14,["H7462"]],[14,16,["H3045","H3808"]],[16,17,["H995"]],[17,19,["H3605"]],[19,20,["H6437"]],[20,24,["H1870"]],[24,26,["H376"]],[26,29,["H1215"]],[29,32,["H4480","H7097"]]]},{"k":18765,"v":[[0,1,["H857"]],[1,7,["H3947"]],[7,8,["H3196"]],[8,12,["H5433"]],[12,16,["H7941"]],[16,19,["H4279"]],[19,21,["H1961"]],[21,23,["H2088"]],[23,24,["H3117"]],[24,26,["H3966"]],[26,28,["H3499","H1419"]]]},{"k":18766,"v":[[0,2,["H6662"]],[2,3,["H6"]],[3,5,["H369"]],[5,6,["H376"]],[6,7,["H7760"]],[7,9,["H5921"]],[9,10,["H3820"]],[10,12,["H2617"]],[12,13,["H376"]],[13,16,["H622"]],[16,17,["H369"]],[17,18,["H995"]],[18,19,["H3588"]],[19,21,["H6662"]],[21,24,["H622"]],[24,25,["H4480","H6440"]],[25,27,["H7451"]],[27,29,[]]]},{"k":18767,"v":[[0,3,["H935"]],[3,5,["H7965"]],[5,8,["H5117"]],[8,9,["H5921"]],[9,11,["H4904"]],[11,14,["H1980"]],[14,17,["H5228"]]]},{"k":18768,"v":[[0,3,["H7126"]],[3,4,["H2008"]],[4,5,["H859"]],[5,6,["H1121"]],[6,9,["H6049"]],[9,11,["H2233"]],[11,14,["H5003"]],[14,17,["H2181"]]]},{"k":18769,"v":[[0,1,["H5921"]],[1,2,["H4310"]],[2,6,["H6026"]],[6,7,["H5921"]],[7,8,["H4310"]],[8,12,["H7337"]],[12,13,["H6310"]],[13,16,["H748"]],[16,18,["H3956"]],[18,20,["H859"]],[20,21,["H3808"]],[21,22,["H3206"]],[22,24,["H6588"]],[24,26,["H2233"]],[26,28,["H8267"]]]},{"k":18770,"v":[[0,2,["H2552"]],[2,4,["H410"]],[4,5,["H8478"]],[5,6,["H3605"]],[6,7,["H7488"]],[7,8,["H6086"]],[8,9,["H7819"]],[9,11,["H3206"]],[11,14,["H5158"]],[14,15,["H8478"]],[15,17,["H5585"]],[17,20,["H5553"]]]},{"k":18771,"v":[[0,3,["H2511"]],[3,7,["H5158"]],[7,10,["H2506"]],[10,11,["H1992"]],[11,12,["H1992"]],[12,15,["H1486"]],[15,16,["H1571"]],[16,21,["H8210"]],[21,24,["H5262"]],[24,27,["H5927"]],[27,30,["H4503"]],[30,34,["H5162"]],[34,35,["H5921"]],[35,36,["H428"]]]},{"k":18772,"v":[[0,1,["H5921"]],[1,3,["H1364"]],[3,5,["H5375"]],[5,6,["H2022"]],[6,9,["H7760"]],[9,11,["H4904"]],[11,12,["H1571"]],[12,13,["H8033"]],[13,16,["H5927"]],[16,18,["H2076"]],[18,19,["H2077"]]]},{"k":18773,"v":[[0,1,["H310"]],[1,3,["H1817"]],[3,7,["H4201"]],[7,11,["H7760"]],[11,13,["H2146"]],[13,14,["H3588"]],[14,17,["H1540"]],[17,21,["H4480","H854"]],[21,26,["H5927"]],[26,29,["H7337"]],[29,31,["H4904"]],[31,33,["H3772"]],[33,37,["H4480"]],[37,40,["H157"]],[40,42,["H4904"]],[42,43,["H3027"]],[43,45,["H2372"]],[45,46,[]]]},{"k":18774,"v":[[0,3,["H7788"]],[3,6,["H4428"]],[6,8,["H8081"]],[8,11,["H7235"]],[11,13,["H7547"]],[13,16,["H7971"]],[16,18,["H6735"]],[18,20,["H5704","H4480","H7350"]],[20,23,["H8213"]],[23,26,["H5704"]],[26,27,["H7585"]]]},{"k":18775,"v":[[0,3,["H3021"]],[3,6,["H7230"]],[6,9,["H1870"]],[9,11,["H559"]],[11,13,["H3808"]],[13,17,["H2976"]],[17,20,["H4672"]],[20,22,["H2416"]],[22,25,["H3027"]],[25,26,["H5921","H3651"]],[26,29,["H3808"]],[29,30,["H2470"]]]},{"k":18776,"v":[[0,3,["H4310"]],[3,7,["H1672"]],[7,9,["H3372"]],[9,10,["H3588"]],[10,13,["H3576"]],[13,16,["H3808"]],[16,17,["H2142"]],[17,19,["H3808"]],[19,20,["H7760"]],[20,22,["H5921"]],[22,24,["H3820"]],[24,26,["H3808"]],[26,27,["H589"]],[27,30,["H2814"]],[30,33,["H4480","H5769"]],[33,36,["H3372"]],[36,38,["H3808"]]]},{"k":18777,"v":[[0,1,["H589"]],[1,3,["H5046"]],[3,5,["H6666"]],[5,8,["H4639"]],[8,12,["H3808"]],[12,13,["H3276"]],[13,14,[]]]},{"k":18778,"v":[[0,3,["H2199"]],[3,6,["H6899"]],[6,7,["H5337"]],[7,11,["H7307"]],[11,16,["H5375","(H853)","H3605"]],[16,17,["H1892"]],[17,19,["H3947"]],[19,26,["H2620"]],[26,30,["H5157"]],[30,32,["H776"]],[32,35,["H3423"]],[35,37,["H6944"]],[37,38,["H2022"]]]},{"k":18779,"v":[[0,3,["H559"]],[3,6,["H5549"]],[6,9,["H5549"]],[9,10,["H6437"]],[10,12,["H1870"]],[12,14,["H7311"]],[14,16,["H4383"]],[16,20,["H4480","H1870"]],[20,23,["H5971"]]]},{"k":18780,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H7311"]],[5,8,["H5375"]],[8,10,["H7931"]],[10,11,["H5703"]],[11,13,["H8034"]],[13,15,["H6918"]],[15,17,["H7931"]],[17,20,["H4791"]],[20,22,["H6918"]],[22,24,["H854"]],[24,31,["H1793"]],[31,33,["H8217"]],[33,34,["H7307"]],[34,36,["H2421"]],[36,38,["H7307"]],[38,41,["H8217"]],[41,44,["H2421"]],[44,46,["H3820"]],[46,50,["H1792"]]]},{"k":18781,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H7378"]],[5,7,["H5769"]],[7,8,["H3808"]],[8,13,["H7107","H5331"]],[13,14,["H3588"]],[14,16,["H7307"]],[16,18,["H5848"]],[18,19,["H4480","H6440"]],[19,23,["H5397"]],[23,25,["H589"]],[25,27,["H6213"]]]},{"k":18782,"v":[[0,3,["H5771"]],[3,6,["H1215"]],[6,9,["H7107"]],[9,11,["H5221"]],[11,14,["H5641"]],[14,18,["H7107"]],[18,21,["H1980"]],[21,23,["H7726"]],[23,26,["H1870"]],[26,29,["H3820"]]]},{"k":18783,"v":[[0,3,["H7200"]],[3,5,["H1870"]],[5,8,["H7495"]],[8,12,["H5148"]],[12,16,["H7999"]],[16,17,["H5150"]],[17,23,["H57"]]]},{"k":18784,"v":[[0,2,["H1254"]],[2,4,["H5108"]],[4,7,["H8193"]],[7,8,["H7965"]],[8,9,["H7965"]],[9,15,["H7350"]],[15,21,["H7138"]],[21,22,["H559"]],[22,24,["H3068"]],[24,28,["H7495"]],[28,29,[]]]},{"k":18785,"v":[[0,3,["H7563"]],[3,7,["H1644"]],[7,8,["H3220"]],[8,9,["H3588"]],[9,11,["H3201","H3808"]],[11,12,["H8252"]],[12,14,["H4325"]],[14,16,["H1644"]],[16,17,["H7516"]],[17,19,["H2916"]]]},{"k":18786,"v":[[0,3,["H369"]],[3,4,["H7965"]],[4,5,["H559"]],[5,7,["H430"]],[7,10,["H7563"]]]},{"k":18787,"v":[[0,1,["H7121"]],[1,2,["H1627"]],[2,3,["H2820"]],[3,4,["H408"]],[4,6,["H7311"]],[6,8,["H6963"]],[8,11,["H7782"]],[11,13,["H5046"]],[13,15,["H5971"]],[15,17,["H6588"]],[17,20,["H1004"]],[20,22,["H3290"]],[22,24,["H2403"]]]},{"k":18788,"v":[[0,3,["H1875"]],[3,5,["H3117","H3117"]],[5,7,["H2654"]],[7,9,["H1847"]],[9,11,["H1870"]],[11,14,["H1471"]],[14,15,["H834"]],[15,16,["H6213"]],[16,17,["H6666"]],[17,19,["H5800"]],[19,20,["H3808"]],[20,22,["H4941"]],[22,25,["H430"]],[25,27,["H7592"]],[27,31,["H4941"]],[31,33,["H6664"]],[33,36,["H2654"]],[36,38,["H7132"]],[38,40,["H430"]]]},{"k":18789,"v":[[0,1,["H4100"]],[1,4,["H6684"]],[4,9,["H7200"]],[9,10,["H3808"]],[10,14,["H6031"]],[14,16,["H5315"]],[16,21,["H3045","H3808"]],[21,22,["H2005"]],[22,25,["H3117"]],[25,28,["H6685"]],[28,30,["H4672"]],[30,31,["H2656"]],[31,33,["H5065"]],[33,34,["H3605"]],[34,36,["H6092"]]]},{"k":18790,"v":[[0,1,["H2005"]],[1,3,["H6684"]],[3,5,["H7379"]],[5,7,["H4683"]],[7,10,["H5221"]],[10,13,["H106"]],[13,15,["H7562"]],[15,18,["H3808"]],[18,19,["H6684"]],[19,24,["H3117"]],[24,28,["H6963"]],[28,31,["H8085"]],[31,33,["H4791"]]]},{"k":18791,"v":[[0,1,["H1961"]],[1,3,["H2088"]],[3,5,["H6685"]],[5,9,["H977"]],[9,11,["H3117"]],[11,14,["H120"]],[14,16,["H6031"]],[16,18,["H5315"]],[18,23,["H3721"]],[23,25,["H7218"]],[25,28,["H100"]],[28,31,["H3331"]],[31,32,["H8242"]],[32,34,["H665"]],[34,39,["H7121"]],[39,40,["H2088"]],[40,42,["H6685"]],[42,45,["H7522"]],[45,46,["H3117"]],[46,49,["H3068"]]]},{"k":18792,"v":[[0,2,["H3808"]],[2,3,["H2088"]],[3,5,["H6685"]],[5,9,["H977"]],[9,11,["H6605"]],[11,13,["H2784"]],[13,15,["H7562"]],[15,17,["H5425"]],[17,19,["H4133"]],[19,20,["H92"]],[20,25,["H7533"]],[25,26,["H7971"]],[26,27,["H2670"]],[27,31,["H5423"]],[31,32,["H3605"]],[32,33,["H4133"]]]},{"k":18793,"v":[[0,3,["H3808"]],[3,5,["H6536"]],[5,7,["H3899"]],[7,10,["H7457"]],[10,14,["H935"]],[14,16,["H6041"]],[16,20,["H4788"]],[20,23,["H1004"]],[23,24,["H3588"]],[24,26,["H7200"]],[26,28,["H6174"]],[28,31,["H3680"]],[31,38,["H5956","H3808"]],[38,42,["H4480","H1320"]]]},{"k":18794,"v":[[0,1,["H227"]],[1,4,["H216"]],[4,6,["H1234"]],[6,9,["H7837"]],[9,12,["H724"]],[12,15,["H6779"]],[15,16,["H4120"]],[16,19,["H6664"]],[19,21,["H1980"]],[21,22,["H6440"]],[22,25,["H3519"]],[25,28,["H3068"]],[28,32,["H622"]]]},{"k":18795,"v":[[0,1,["H227"]],[1,4,["H7121"]],[4,7,["H3068"]],[7,9,["H6030"]],[9,12,["H7768"]],[12,16,["H559"]],[16,17,["H2009"]],[17,20,["H518"]],[20,23,["H5493"]],[23,26,["H4480","H8432"]],[26,30,["H4133"]],[30,33,["H7971"]],[33,36,["H676"]],[36,38,["H1696"]],[38,39,["H205"]]]},{"k":18796,"v":[[0,5,["H6329"]],[5,7,["H5315"]],[7,10,["H7457"]],[10,12,["H7646"]],[12,14,["H6031"]],[14,15,["H5315"]],[15,19,["H216"]],[19,20,["H2224"]],[20,22,["H2822"]],[22,25,["H653"]],[25,29,["H6672"]]]},{"k":18797,"v":[[0,3,["H3068"]],[3,5,["H5148"]],[5,7,["H8548"]],[7,9,["H7646"]],[9,11,["H5315"]],[11,13,["H6710"]],[13,16,["H2502"]],[16,18,["H6106"]],[18,22,["H1961"]],[22,25,["H7302"]],[25,26,["H1588"]],[26,30,["H4161"]],[30,32,["H4325"]],[32,33,["H834"]],[33,34,["H4325"]],[34,35,["H3576"]],[35,36,["H3808"]]]},{"k":18798,"v":[[0,6,["H4480"]],[6,9,["H1129"]],[9,11,["H5769"]],[11,13,["H2723"]],[13,17,["H6965"]],[17,19,["H4146"]],[19,22,["H1755","H1755"]],[22,27,["H7121"]],[27,29,["H1443"]],[29,32,["H6556"]],[32,34,["H7725"]],[34,36,["H5410"]],[36,38,["H3427"]],[38,39,[]]]},{"k":18799,"v":[[0,1,["H518"]],[1,4,["H7725"]],[4,6,["H7272"]],[6,9,["H4480","H7676"]],[9,11,["H6213"]],[11,13,["H2656"]],[13,16,["H6944"]],[16,17,["H3117"]],[17,19,["H7121"]],[19,21,["H7676"]],[21,23,["H6027"]],[23,25,["H6918"]],[25,28,["H3068"]],[28,29,["H3513"]],[29,32,["H3513"]],[32,35,["H4480","H6213"]],[35,38,["H1870"]],[38,40,["H4480","H4672"]],[40,43,["H2656"]],[43,45,["H1696"]],[45,48,["H1697"]]]},{"k":18800,"v":[[0,1,["H227"]],[1,5,["H6026"]],[5,6,["H5921"]],[6,8,["H3068"]],[8,15,["H7392"]],[15,16,["H5921"]],[16,19,["H1116"]],[19,22,["H776"]],[22,24,["H398"]],[24,28,["H5159"]],[28,30,["H3290"]],[30,32,["H1"]],[32,33,["H3588"]],[33,35,["H6310"]],[35,38,["H3068"]],[38,40,["H1696"]],[40,41,[]]]},{"k":18801,"v":[[0,1,["H2005"]],[1,3,["H3068"]],[3,4,["H3027"]],[4,6,["H3808"]],[6,7,["H7114"]],[7,11,["H4480","H3467"]],[11,12,["H3808"]],[12,14,["H241"]],[14,15,["H3513"]],[15,19,["H4480","H8085"]]]},{"k":18802,"v":[[0,1,["H3588","H518"]],[1,3,["H5771"]],[3,4,["H1961"]],[4,5,["H914"]],[5,6,["H996"]],[6,10,["H430"]],[10,13,["H2403"]],[13,15,["H5641"]],[15,17,["H6440"]],[17,18,["H4480"]],[18,24,["H4480","H8085"]]]},{"k":18803,"v":[[0,1,["H3588"]],[1,3,["H3709"]],[3,5,["H1351"]],[5,7,["H1818"]],[7,10,["H676"]],[10,12,["H5771"]],[12,14,["H8193"]],[14,16,["H1696"]],[16,17,["H8267"]],[17,19,["H3956"]],[19,21,["H1897"]],[21,22,["H5766"]]]},{"k":18804,"v":[[0,1,["H369"]],[1,2,["H7121"]],[2,4,["H6664"]],[4,5,["H369"]],[5,7,["H8199"]],[7,9,["H530"]],[9,11,["H982"]],[11,12,["H5921"]],[12,13,["H8414"]],[13,15,["H1696"]],[15,16,["H7723"]],[16,18,["H2029"]],[18,19,["H5999"]],[19,22,["H3205"]],[22,23,["H205"]]]},{"k":18805,"v":[[0,2,["H1234"]],[2,3,["H6848"]],[3,4,["H1000"]],[4,6,["H707"]],[6,8,["H5908"]],[8,9,["H6980"]],[9,12,["H398"]],[12,15,["H4480","H1000"]],[15,16,["H4191"]],[16,21,["H2116"]],[21,23,["H1234"]],[23,26,["H660"]]]},{"k":18806,"v":[[0,2,["H6980"]],[2,4,["H3808"]],[4,5,["H1961"]],[5,6,["H899"]],[6,7,["H3808"]],[7,11,["H3680"]],[11,14,["H4639"]],[14,16,["H4639"]],[16,18,["H4639"]],[18,20,["H205"]],[20,23,["H6467"]],[23,25,["H2555"]],[25,29,["H3709"]]]},{"k":18807,"v":[[0,2,["H7272"]],[2,3,["H7323"]],[3,5,["H7451"]],[5,9,["H4116"]],[9,11,["H8210"]],[11,12,["H5355"]],[12,13,["H1818"]],[13,15,["H4284"]],[15,17,["H4284"]],[17,19,["H205"]],[19,20,["H7701"]],[20,22,["H7667"]],[22,26,["H4546"]]]},{"k":18808,"v":[[0,2,["H1870"]],[2,4,["H7965"]],[4,6,["H3045"]],[6,7,["H3808"]],[7,11,["H369"]],[11,12,["H4941"]],[12,15,["H4570"]],[15,20,["H6140"]],[20,21,["H5410"]],[21,22,["H3605"]],[22,23,["H1869"]],[23,26,["H3808"]],[26,27,["H3045"]],[27,28,["H7965"]]]},{"k":18809,"v":[[0,1,["H5921","H3651"]],[1,4,["H7368","H4941"]],[4,5,["H4480"]],[5,7,["H3808"]],[7,9,["H6666"]],[9,10,["H5381"]],[10,13,["H6960"]],[13,15,["H216"]],[15,17,["H2009"]],[17,18,["H2822"]],[18,20,["H5054"]],[20,23,["H1980"]],[23,25,["H653"]]]},{"k":18810,"v":[[0,2,["H1659"]],[2,5,["H7023"]],[5,8,["H5787"]],[8,11,["H1659"]],[11,16,["H369"]],[16,17,["H5869"]],[17,19,["H3782"]],[19,21,["H6672"]],[21,25,["H5399"]],[25,30,["H820"]],[30,32,["H4191"]],[32,33,[]]]},{"k":18811,"v":[[0,2,["H1993"]],[2,3,["H3605"]],[3,5,["H1677"]],[5,7,["H1897","H1897"]],[7,10,["H3123"]],[10,12,["H6960"]],[12,14,["H4941"]],[14,18,["H369"]],[18,20,["H3444"]],[20,25,["H7368"]],[25,26,["H4480"]],[26,27,[]]]},{"k":18812,"v":[[0,1,["H3588"]],[1,3,["H6588"]],[3,5,["H7231"]],[5,6,["H5048"]],[6,10,["H2403"]],[10,11,["H6030"]],[11,14,["H3588"]],[14,16,["H6588"]],[16,18,["H854"]],[18,24,["H5771"]],[24,26,["H3045"]],[26,27,[]]]},{"k":18813,"v":[[0,2,["H6586"]],[2,4,["H3584"]],[4,7,["H3068"]],[7,10,["H5253"]],[10,11,["H4480","H310"]],[11,13,["H430"]],[13,14,["H1696"]],[14,15,["H6233"]],[15,17,["H5627"]],[17,18,["H2029"]],[18,20,["H1897"]],[20,23,["H4480","H3820"]],[23,24,["H1697"]],[24,26,["H8267"]]]},{"k":18814,"v":[[0,2,["H4941"]],[2,5,["H5253"]],[5,6,["H268"]],[6,8,["H6666"]],[8,9,["H5975"]],[9,11,["H4480","H7350"]],[11,12,["H3588"]],[12,13,["H571"]],[13,15,["H3782"]],[15,18,["H7339"]],[18,20,["H5229"]],[20,21,["H3201","H3808"]],[21,22,["H935"]]]},{"k":18815,"v":[[0,2,["H571"]],[2,3,["H1961","H5737"]],[3,7,["H5493"]],[7,9,["H4480","H7451"]],[9,13,["H7997"]],[13,16,["H3068"]],[16,17,["H7200"]],[17,21,["H7489","H5869"]],[21,23,["H3588"]],[23,26,["H369"]],[26,27,["H4941"]]]},{"k":18816,"v":[[0,3,["H7200"]],[3,4,["H3588"]],[4,7,["H369"]],[7,8,["H376"]],[8,10,["H8074"]],[10,11,["H3588"]],[11,14,["H369"]],[14,15,["H6293"]],[15,18,["H2220"]],[18,20,["H3467"]],[20,25,["H6666"]],[25,26,["H1931"]],[26,27,["H5564"]],[27,28,[]]]},{"k":18817,"v":[[0,4,["H3847"]],[4,5,["H6666"]],[5,8,["H8302"]],[8,11,["H3553"]],[11,13,["H3444"]],[13,16,["H7218"]],[16,20,["H3847"]],[20,22,["H899"]],[22,24,["H5359"]],[24,26,["H8516"]],[26,29,["H5844"]],[29,31,["H7068"]],[31,34,["H4598"]]]},{"k":18818,"v":[[0,1,["H5921"]],[1,4,["H1578"]],[4,5,["H5921"]],[5,8,["H7999"]],[8,9,["H2534"]],[9,12,["H6862"]],[12,13,["H1576"]],[13,16,["H341"]],[16,19,["H339"]],[19,22,["H7999"]],[22,23,["H1576"]]]},{"k":18819,"v":[[0,4,["H3372","(H853)"]],[4,6,["H8034"]],[6,9,["H3068"]],[9,12,["H4480","H4628"]],[12,13,["(H853)"]],[13,15,["H3519"]],[15,18,["H4480","H4217"]],[18,21,["H8121"]],[21,22,["H3588"]],[22,24,["H6862"]],[24,27,["H935"]],[27,30,["H5104"]],[30,32,["H7307"]],[32,35,["H3068"]],[35,40,["H5127"]],[40,42,[]]]},{"k":18820,"v":[[0,3,["H1350"]],[3,5,["H935"]],[5,7,["H6726"]],[7,13,["H7725"]],[13,14,["H6588"]],[14,16,["H3290"]],[16,17,["H5002"]],[17,19,["H3068"]]]},{"k":18821,"v":[[0,3,["H589"]],[3,4,["H2063"]],[4,7,["H1285"]],[7,8,["H854"]],[8,10,["H559"]],[10,12,["H3068"]],[12,14,["H7307"]],[14,15,["H834"]],[15,17,["H5921"]],[17,21,["H1697"]],[21,22,["H834"]],[22,25,["H7760"]],[25,28,["H6310"]],[28,30,["H3808"]],[30,31,["H4185"]],[31,35,["H4480","H6310"]],[35,40,["H4480","H6310"]],[40,43,["H2233"]],[43,48,["H4480","H6310"]],[48,51,["H2233"]],[51,52,["H2233"]],[52,53,["H559"]],[53,55,["H3068"]],[55,57,["H4480","H6258"]],[57,60,["H5704","H5769"]]]},{"k":18822,"v":[[0,1,["H6965"]],[1,2,["H215"]],[2,3,["H3588"]],[3,5,["H216"]],[5,7,["H935"]],[7,10,["H3519"]],[10,13,["H3068"]],[13,15,["H2224"]],[15,16,["H5921"]],[16,17,[]]]},{"k":18823,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H2822"]],[4,6,["H3680"]],[6,8,["H776"]],[8,11,["H6205"]],[11,13,["H3816"]],[13,16,["H3068"]],[16,18,["H2224"]],[18,19,["H5921"]],[19,23,["H3519"]],[23,26,["H7200"]],[26,27,["H5921"]],[27,28,[]]]},{"k":18824,"v":[[0,3,["H1471"]],[3,5,["H1980"]],[5,8,["H216"]],[8,10,["H4428"]],[10,13,["H5051"]],[13,16,["H2225"]]]},{"k":18825,"v":[[0,2,["H5375"]],[2,4,["H5869"]],[4,6,["H5439"]],[6,8,["H7200"]],[8,9,["H3605"]],[9,13,["H6908"]],[13,15,["H935"]],[15,19,["H1121"]],[19,21,["H935"]],[21,23,["H4480","H7350"]],[23,26,["H1323"]],[26,29,["H539"]],[29,30,["H5921"]],[30,32,["H6654"]]]},{"k":18826,"v":[[0,1,["H227"]],[1,4,["H7200"]],[4,7,["H5102"]],[7,10,["H3824"]],[10,12,["H6342"]],[12,15,["H7337"]],[15,16,["H3588"]],[16,18,["H1995"]],[18,21,["H3220"]],[21,24,["H2015"]],[24,25,["H5921"]],[25,28,["H2428"]],[28,31,["H1471"]],[31,33,["H935"]],[33,35,[]]]},{"k":18827,"v":[[0,2,["H8229"]],[2,4,["H1581"]],[4,6,["H3680"]],[6,9,["H1070"]],[9,11,["H4080"]],[11,13,["H5891"]],[13,14,["H3605"]],[14,17,["H4480","H7614"]],[17,19,["H935"]],[19,22,["H5375"]],[22,23,["H2091"]],[23,25,["H3828"]],[25,30,["H1319"]],[30,32,["H8416"]],[32,35,["H3068"]]]},{"k":18828,"v":[[0,1,["H3605"]],[1,3,["H6629"]],[3,5,["H6938"]],[5,9,["H6908"]],[9,13,["H352"]],[13,15,["H5032"]],[15,17,["H8334"]],[17,23,["H5927"]],[23,24,["H5921"]],[24,25,["H7522"]],[25,28,["H4196"]],[28,32,["H6286"]],[32,34,["H1004"]],[34,37,["H8597"]]]},{"k":18829,"v":[[0,1,["H4310"]],[1,3,["H428"]],[3,5,["H5774"]],[5,8,["H5645"]],[8,12,["H3123"]],[12,13,["H413"]],[13,15,["H699"]]]},{"k":18830,"v":[[0,1,["H3588"]],[1,3,["H339"]],[3,5,["H6960"]],[5,10,["H591"]],[10,12,["H8659"]],[12,13,["H7223"]],[13,15,["H935"]],[15,17,["H1121"]],[17,19,["H4480","H7350"]],[19,21,["H3701"]],[21,24,["H2091"]],[24,25,["H854"]],[25,29,["H8034"]],[29,32,["H3068"]],[32,34,["H430"]],[34,39,["H6918"]],[39,41,["H3478"]],[41,42,["H3588"]],[42,45,["H6286"]],[45,46,[]]]},{"k":18831,"v":[[0,3,["H1121"]],[3,5,["H5236"]],[5,8,["H1129"]],[8,10,["H2346"]],[10,13,["H4428"]],[13,15,["H8334"]],[15,18,["H3588"]],[18,21,["H7110"]],[21,23,["H5221"]],[23,28,["H7522"]],[28,32,["H7355"]],[32,34,[]]]},{"k":18832,"v":[[0,3,["H8179"]],[3,6,["H6605"]],[6,7,["H8548"]],[7,10,["H3808"]],[10,12,["H5462"]],[12,13,["H3119"]],[13,15,["H3915"]],[15,19,["H935"]],[19,20,["H413"]],[20,23,["H2428"]],[23,26,["H1471"]],[26,30,["H4428"]],[30,33,["H5090"]]]},{"k":18833,"v":[[0,1,["H3588"]],[1,3,["H1471"]],[3,5,["H4467"]],[5,6,["H834"]],[6,8,["H3808"]],[8,9,["H5647"]],[9,12,["H6"]],[12,15,["H1471"]],[15,19,["H2717","H2717"]]]},{"k":18834,"v":[[0,2,["H3519"]],[2,4,["H3844"]],[4,6,["H935"]],[6,7,["H413"]],[7,11,["H1265"]],[11,14,["H8410"]],[14,17,["H8391"]],[17,18,["H3162"]],[18,20,["H6286"]],[20,22,["H4725"]],[22,25,["H4720"]],[25,31,["H4725"]],[31,34,["H7272"]],[34,35,["H3513"]]]},{"k":18835,"v":[[0,2,["H1121"]],[2,7,["H6031"]],[7,10,["H1980"]],[10,11,["H7817"]],[11,12,["H413"]],[12,15,["H3605"]],[15,18,["H5006"]],[18,23,["H7812"]],[23,24,["H5921"]],[24,26,["H3709"]],[26,29,["H7272"]],[29,33,["H7121"]],[33,36,["H5892"]],[36,39,["H3068"]],[39,41,["H6726"]],[41,45,["H6918"]],[45,47,["H3478"]]]},{"k":18836,"v":[[0,1,["H8478"]],[1,4,["H1961"]],[4,5,["H5800"]],[5,7,["H8130"]],[7,11,["H369"]],[11,13,["H5674"]],[13,17,["H7760"]],[17,20,["H5769"]],[20,21,["H1347"]],[21,23,["H4885"]],[23,26,["H1755","H1755"]]]},{"k":18837,"v":[[0,4,["H3243"]],[4,6,["H2461"]],[6,9,["H1471"]],[9,12,["H3243"]],[12,14,["H7699"]],[14,16,["H4428"]],[16,20,["H3045"]],[20,21,["H3588"]],[21,22,["H589"]],[22,24,["H3068"]],[24,27,["H3467"]],[27,30,["H1350"]],[30,33,["H46"]],[33,35,["H3290"]]]},{"k":18838,"v":[[0,1,["H8478"]],[1,2,["H5178"]],[2,5,["H935"]],[5,6,["H2091"]],[6,8,["H8478"]],[8,9,["H1270"]],[9,12,["H935"]],[12,13,["H3701"]],[13,15,["H8478"]],[15,16,["H6086"]],[16,17,["H5178"]],[17,19,["H8478"]],[19,20,["H68"]],[20,21,["H1270"]],[21,25,["H7760"]],[25,27,["H6486"]],[27,28,["H7965"]],[28,31,["H5065"]],[31,32,["H6666"]]]},{"k":18839,"v":[[0,1,["H2555"]],[1,3,["H3808"]],[3,4,["H5750"]],[4,6,["H8085"]],[6,9,["H776"]],[9,10,["H7701"]],[10,12,["H7667"]],[12,15,["H1366"]],[15,19,["H7121"]],[19,21,["H2346"]],[21,22,["H3444"]],[22,25,["H8179"]],[25,26,["H8416"]]]},{"k":18840,"v":[[0,2,["H8121"]],[2,4,["H1961"]],[4,5,["H3808"]],[5,6,["H5750"]],[6,8,["H216"]],[8,10,["H3119"]],[10,11,["H3808"]],[11,13,["H5051"]],[13,16,["H3394"]],[16,18,["H215"]],[18,23,["H3068"]],[23,25,["H1961"]],[25,29,["H5769"]],[29,30,["H216"]],[30,33,["H430"]],[33,35,["H8597"]]]},{"k":18841,"v":[[0,2,["H8121"]],[2,4,["H3808"]],[4,5,["H5750"]],[5,7,["H935"]],[7,8,["H3808"]],[8,11,["H3391"]],[11,13,["H622"]],[13,14,["H3588"]],[14,16,["H3068"]],[16,18,["H1961"]],[18,20,["H5769"]],[20,21,["H216"]],[21,24,["H3117"]],[24,27,["H60"]],[27,30,["H7999"]]]},{"k":18842,"v":[[0,2,["H5971"]],[2,6,["H3605"]],[6,7,["H6662"]],[7,10,["H3423"]],[10,12,["H776"]],[12,14,["H5769"]],[14,16,["H5342"]],[16,19,["H4302"]],[19,21,["H4639"]],[21,24,["H3027"]],[24,29,["H6286"]]]},{"k":18843,"v":[[0,3,["H6996"]],[3,5,["H1961"]],[5,7,["H505"]],[7,11,["H6810"]],[11,13,["H6099"]],[13,14,["H1471"]],[14,15,["H589"]],[15,17,["H3068"]],[17,19,["H2363"]],[19,23,["H6256"]]]},{"k":18844,"v":[[0,2,["H7307"]],[2,5,["H136"]],[5,6,["H3069"]],[6,8,["H5921"]],[8,10,["H3282"]],[10,12,["H3068"]],[12,14,["H4886"]],[14,19,["H1319"]],[19,22,["H6035"]],[22,25,["H7971"]],[25,29,["H2280"]],[29,31,["H7665","H3820"]],[31,33,["H7121"]],[33,34,["H1865"]],[34,37,["H7617"]],[37,43,["H6495"]],[43,48,["H631"]]]},{"k":18845,"v":[[0,2,["H7121"]],[2,4,["H7522"]],[4,5,["H8141"]],[5,8,["H3068"]],[8,11,["H3117"]],[11,13,["H5359"]],[13,16,["H430"]],[16,18,["H5162"]],[18,19,["H3605"]],[19,21,["H57"]]]},{"k":18846,"v":[[0,2,["H7760"]],[2,6,["H57"]],[6,8,["H6726"]],[8,10,["H5414"]],[10,13,["H6287"]],[13,14,["H8478"]],[14,15,["H665"]],[15,17,["H8081"]],[17,19,["H8342"]],[19,20,["H8478"]],[20,21,["H60"]],[21,23,["H4594"]],[23,25,["H8416"]],[25,26,["H8478"]],[26,28,["H7307"]],[28,30,["H3544"]],[30,35,["H7121"]],[35,36,["H352"]],[36,38,["H6664"]],[38,40,["H4302"]],[40,43,["H3068"]],[43,48,["H6286"]]]},{"k":18847,"v":[[0,4,["H1129"]],[4,6,["H5769"]],[6,7,["H2723"]],[7,11,["H6965"]],[11,13,["H7223"]],[13,14,["H8074"]],[14,18,["H2318"]],[18,20,["H2721"]],[20,21,["H5892"]],[21,23,["H8074"]],[23,26,["H1755","H1755"]]]},{"k":18848,"v":[[0,2,["H2114"]],[2,4,["H5975"]],[4,6,["H7462"]],[6,8,["H6629"]],[8,11,["H1121"]],[11,14,["H5236"]],[14,18,["H406"]],[18,21,["H3755"]]]},{"k":18849,"v":[[0,2,["H859"]],[2,5,["H7121"]],[5,7,["H3548"]],[7,10,["H3068"]],[10,13,["H559"]],[13,16,["H8334"]],[16,19,["H430"]],[19,22,["H398"]],[22,24,["H2428"]],[24,27,["H1471"]],[27,31,["H3519"]],[31,35,["H3235"]]]},{"k":18850,"v":[[0,1,["H8478"]],[1,3,["H1322"]],[3,7,["H4932"]],[7,10,["H3639"]],[10,13,["H7442"]],[13,16,["H2506"]],[16,17,["H3651"]],[17,20,["H776"]],[20,23,["H3423"]],[23,25,["H4932"]],[25,26,["H5769"]],[26,27,["H8057"]],[27,29,["H1961"]],[29,31,[]]]},{"k":18851,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,4,["H3068"]],[4,5,["H157"]],[5,6,["H4941"]],[6,8,["H8130"]],[8,9,["H1498"]],[9,12,["H5930"]],[12,16,["H5414"]],[16,18,["H6468"]],[18,20,["H571"]],[20,24,["H3772"]],[24,26,["H5769"]],[26,27,["H1285"]],[27,29,[]]]},{"k":18852,"v":[[0,3,["H2233"]],[3,6,["H3045"]],[6,9,["H1471"]],[9,12,["H6631"]],[12,13,["H8432"]],[13,15,["H5971"]],[15,16,["H3605"]],[16,18,["H7200"]],[18,21,["H5234"]],[21,23,["H3588"]],[23,24,["H1992"]],[24,27,["H2233"]],[27,30,["H3068"]],[30,32,["H1288"]]]},{"k":18853,"v":[[0,4,["H7797","H7797"]],[4,7,["H3068"]],[7,9,["H5315"]],[9,12,["H1523"]],[12,15,["H430"]],[15,16,["H3588"]],[16,19,["H3847"]],[19,23,["H899"]],[23,25,["H3468"]],[25,28,["H3271"]],[28,32,["H4598"]],[32,34,["H6666"]],[34,37,["H2860"]],[37,38,["H3547"]],[38,41,["H6287"]],[41,45,["H3618"]],[45,46,["H5710"]],[46,50,["H3627"]]]},{"k":18854,"v":[[0,1,["H3588"]],[1,4,["H776"]],[4,6,["H3318"]],[6,8,["H6780"]],[8,12,["H1593"]],[12,18,["H2221"]],[18,23,["H6779"]],[23,24,["H3651"]],[24,26,["H136"]],[26,27,["H3069"]],[27,30,["H6666"]],[30,32,["H8416"]],[32,35,["H6779"]],[35,36,["H5048"]],[36,37,["H3605"]],[37,39,["H1471"]]]},{"k":18855,"v":[[0,3,["H4616","H6726"]],[3,6,["H3808"]],[6,9,["H2814"]],[9,13,["H4616","H3389"]],[13,16,["H3808"]],[16,17,["H8252"]],[17,18,["H5704"]],[18,20,["H6664"]],[20,23,["H3318"]],[23,25,["H5051"]],[25,28,["H3444"]],[28,32,["H3940"]],[32,34,["H1197"]]]},{"k":18856,"v":[[0,3,["H1471"]],[3,5,["H7200"]],[5,7,["H6664"]],[7,9,["H3605"]],[9,10,["H4428"]],[10,12,["H3519"]],[12,17,["H7121"]],[17,20,["H2319"]],[20,21,["H8034"]],[21,22,["H834"]],[22,24,["H6310"]],[24,27,["H3068"]],[27,29,["H5344"]]]},{"k":18857,"v":[[0,4,["H1961"]],[4,6,["H5850"]],[6,8,["H8597"]],[8,11,["H3027"]],[11,14,["H3068"]],[14,17,["H4410"]],[17,18,["H6797"]],[18,21,["H3709"]],[21,24,["H430"]]]},{"k":18858,"v":[[0,3,["H3808"]],[3,4,["H5750"]],[4,6,["H559"]],[6,7,["H5800"]],[7,8,["H3808"]],[8,11,["H776"]],[11,13,["H5750"]],[13,15,["H559"]],[15,16,["H8077"]],[16,17,["H3588"]],[17,21,["H7121"]],[21,22,["H2657"]],[22,25,["H776"]],[25,26,["H1166"]],[26,27,["H3588"]],[27,29,["H3068"]],[29,30,["H2654"]],[30,35,["H776"]],[35,38,["H1166"]]]},{"k":18859,"v":[[0,1,["H3588"]],[1,5,["H970"]],[5,6,["H1166"]],[6,8,["H1330"]],[8,12,["H1121"]],[12,13,["H1166"]],[13,18,["H2860"]],[18,19,["H4885"]],[19,20,["H5921"]],[20,22,["H3618"]],[22,26,["H430"]],[26,27,["H7797"]],[27,28,["H5921"]],[28,29,[]]]},{"k":18860,"v":[[0,3,["H6485"]],[3,4,["H8104"]],[4,5,["H5921"]],[5,7,["H2346"]],[7,9,["H3389"]],[9,12,["H3808","H8548"]],[12,15,["H2814"]],[15,16,["H3117"]],[16,18,["H3915"]],[18,22,["H2142"]],[22,23,["(H853)"]],[23,25,["H3068"]],[25,28,["H408","H1824"]]]},{"k":18861,"v":[[0,2,["H5414"]],[2,4,["H408"]],[4,5,["H1824"]],[5,6,["H5704"]],[6,8,["H3559"]],[8,10,["H5704"]],[10,12,["H7760","(H853)"]],[12,13,["H3389"]],[13,15,["H8416"]],[15,18,["H776"]]]},{"k":18862,"v":[[0,2,["H3068"]],[2,4,["H7650"]],[4,8,["H3225"]],[8,12,["H2220"]],[12,15,["H5797"]],[15,19,["H518"]],[19,20,["H5750"]],[20,21,["H5414","(H853)"]],[21,23,["H1715"]],[23,26,["H3978"]],[26,29,["H341"]],[29,32,["H1121"]],[32,35,["H5236"]],[35,37,["H518"]],[37,38,["H8354"]],[38,40,["H8492"]],[40,43,["H834"]],[43,46,["H3021"]]]},{"k":18863,"v":[[0,1,["H3588"]],[1,5,["H622"]],[5,8,["H398"]],[8,11,["H1984","(H853)"]],[11,13,["H3068"]],[13,20,["H6908"]],[20,22,["H8354"]],[22,26,["H2691"]],[26,29,["H6944"]]]},{"k":18864,"v":[[0,2,["H5674"]],[2,4,["H5674"]],[4,6,["H8179"]],[6,7,["H6437"]],[7,10,["H1870"]],[10,13,["H5971"]],[13,15,["H5549"]],[15,17,["H5549"]],[17,19,["H4546"]],[19,21,["H5619"]],[21,23,["H4480","H68"]],[23,25,["H7311"]],[25,27,["H5251"]],[27,28,["H5921"]],[28,30,["H5971"]]]},{"k":18865,"v":[[0,1,["H2009"]],[1,3,["H3068"]],[3,5,["H8085"]],[5,6,["H413"]],[6,8,["H7097"]],[8,11,["H776"]],[11,12,["H559"]],[12,16,["H1323"]],[16,18,["H6726"]],[18,19,["H2009"]],[19,21,["H3468"]],[21,22,["H935"]],[22,23,["H2009"]],[23,25,["H7939"]],[25,27,["H854"]],[27,31,["H6468"]],[31,32,["H6440"]],[32,33,[]]]},{"k":18866,"v":[[0,4,["H7121"]],[4,7,["H6944"]],[7,8,["H5971"]],[8,10,["H1350"]],[10,13,["H3068"]],[13,18,["H7121"]],[18,20,["H1875"]],[20,22,["H5892"]],[22,23,["H3808"]],[23,24,["H5800"]]]},{"k":18867,"v":[[0,1,["H4310"]],[1,3,["H2088"]],[3,5,["H935"]],[5,7,["H4480","H123"]],[7,9,["H2556"]],[9,10,["H899"]],[10,12,["H4480","H1224"]],[12,13,["H2088"]],[13,16,["H1921"]],[16,19,["H3830"]],[19,20,["H6808"]],[20,23,["H7230"]],[23,26,["H3581"]],[26,27,["H589"]],[27,29,["H1696"]],[29,31,["H6666"]],[31,32,["H7227"]],[32,34,["H3467"]]]},{"k":18868,"v":[[0,1,["H4069"]],[1,4,["H122"]],[4,7,["H3830"]],[7,10,["H899"]],[10,14,["H1869"]],[14,17,["H1660"]]]},{"k":18869,"v":[[0,3,["H1869"]],[3,5,["H6333"]],[5,6,["H905"]],[6,10,["H4480","H5971"]],[10,13,["H369","H376"]],[13,14,["H854"]],[14,19,["H1869"]],[19,23,["H639"]],[23,25,["H7429"]],[25,29,["H2534"]],[29,32,["H5332"]],[32,35,["H5137"]],[35,36,["H5921"]],[36,38,["H899"]],[38,42,["H1351"]],[42,43,["H3605"]],[43,45,["H4403"]]]},{"k":18870,"v":[[0,1,["H3588"]],[1,3,["H3117"]],[3,5,["H5359"]],[5,9,["H3820"]],[9,12,["H8141"]],[12,15,["H1350"]],[15,17,["H935"]]]},{"k":18871,"v":[[0,3,["H5027"]],[3,7,["H369"]],[7,9,["H5826"]],[9,12,["H8074"]],[12,16,["H369"]],[16,18,["H5564"]],[18,22,["H2220"]],[22,24,["H3467"]],[24,29,["H2534"]],[29,30,["H1931"]],[30,31,["H5564"]],[31,32,[]]]},{"k":18872,"v":[[0,5,["H947"]],[5,7,["H5971"]],[7,10,["H639"]],[10,14,["H7937"]],[14,17,["H2534"]],[17,22,["H3381"]],[22,24,["H5332"]],[24,27,["H776"]]]},{"k":18873,"v":[[0,3,["H2142"]],[3,5,["H2617"]],[5,8,["H3068"]],[8,11,["H8416"]],[11,14,["H3068"]],[14,15,["H5921"]],[15,17,["H3605"]],[17,18,["H834"]],[18,20,["H3068"]],[20,22,["H1580"]],[22,27,["H7227"]],[27,28,["H2898"]],[28,31,["H1004"]],[31,33,["H3478"]],[33,34,["H834"]],[34,37,["H1580"]],[37,43,["H7356"]],[43,48,["H7230"]],[48,51,["H2617"]]]},{"k":18874,"v":[[0,3,["H559"]],[3,4,["H389"]],[4,5,["H1992"]],[5,8,["H5971"]],[8,9,["H1121"]],[9,12,["H3808"]],[12,13,["H8266"]],[13,16,["H1961"]],[16,18,["H3467"]]]},{"k":18875,"v":[[0,2,["H3605"]],[2,4,["H6869"]],[4,7,["H6862"]],[7,10,["H4397"]],[10,13,["H6440"]],[13,14,["H3467"]],[14,18,["H160"]],[18,22,["H2551"]],[22,23,["H1931"]],[23,24,["H1350"]],[24,28,["H5190"]],[28,31,["H5375"]],[31,33,["H3605"]],[33,35,["H3117"]],[35,37,["H5769"]]]},{"k":18876,"v":[[0,2,["H1992"]],[2,3,["H4784"]],[3,5,["H6087","(H853)"]],[5,7,["H6944"]],[7,8,["H7307"]],[8,12,["H2015"]],[12,16,["H341"]],[16,18,["H1931"]],[18,19,["H3898"]],[19,21,[]]]},{"k":18877,"v":[[0,3,["H2142"]],[3,5,["H3117"]],[5,7,["H5769"]],[7,8,["H4872"]],[8,11,["H5971"]],[11,13,["H346"]],[13,19,["H5927"]],[19,23,["H4480","H3220"]],[23,24,["H854"]],[24,26,["H7462"]],[26,29,["H6629"]],[29,30,["H346"]],[30,34,["H7760","(H853)"]],[34,36,["H6944"]],[36,37,["H7307"]],[37,38,["H7130"]],[38,39,[]]]},{"k":18878,"v":[[0,2,["H1980"]],[2,7,["H3225"]],[7,9,["H4872"]],[9,12,["H8597"]],[12,13,["H2220"]],[13,14,["H1234"]],[14,16,["H4325"]],[16,17,["H4480","H6440"]],[17,20,["H6213"]],[20,23,["H5769"]],[23,24,["H8034"]]]},{"k":18879,"v":[[0,2,["H1980"]],[2,6,["H8415"]],[6,9,["H5483"]],[9,12,["H4057"]],[12,16,["H3808"]],[16,17,["H3782"]]]},{"k":18880,"v":[[0,3,["H929"]],[3,5,["H3381"]],[5,8,["H1237"]],[8,10,["H7307"]],[10,13,["H3068"]],[13,17,["H5117"]],[17,18,["H3651"]],[18,21,["H5090"]],[21,23,["H5971"]],[23,25,["H6213"]],[25,28,["H8597"]],[28,29,["H8034"]]]},{"k":18881,"v":[[0,2,["H5027"]],[2,4,["H4480","H8064"]],[4,6,["H7200"]],[6,9,["H4480","H2073"]],[9,12,["H6944"]],[12,16,["H8597"]],[16,17,["H346"]],[17,20,["H7068"]],[20,23,["H1369"]],[23,25,["H1995"]],[25,28,["H4578"]],[28,32,["H7356"]],[32,33,["H413"]],[33,37,["H662"]]]},{"k":18882,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,5,["H1"]],[5,6,["H3588"]],[6,7,["H85"]],[7,9,["H3808","H3045"]],[9,13,["H3478"]],[13,14,["H5234"]],[14,16,["H3808"]],[16,17,["H859"]],[17,19,["H3068"]],[19,22,["H1"]],[22,24,["H1350"]],[24,26,["H8034"]],[26,29,["H4480","H5769"]]]},{"k":18883,"v":[[0,2,["H3068"]],[2,3,["H4100"]],[3,9,["H8582"]],[9,12,["H4480","H1870"]],[12,14,["H7188"]],[14,16,["H3820"]],[16,19,["H4480","H3374"]],[19,20,["H7725"]],[20,24,["H4616","H5650"]],[24,26,["H7626"]],[26,29,["H5159"]]]},{"k":18884,"v":[[0,2,["H5971"]],[2,5,["H6944"]],[5,7,["H3423"]],[7,12,["H4705"]],[12,14,["H6862"]],[14,17,["H947"]],[17,19,["H4720"]]]},{"k":18885,"v":[[0,2,["H1961"]],[2,5,["H3808","H4480","H5769"]],[5,7,["H4910"]],[7,12,["H3808"]],[12,13,["H7121"]],[13,14,["H5921"]],[14,16,["H8034"]]]},{"k":18886,"v":[[0,2,["H3863"]],[2,5,["H7167"]],[5,7,["H8064"]],[7,12,["H3381"]],[12,15,["H2022"]],[15,18,["H2151"]],[18,21,["H4480","H6440"]]]},{"k":18887,"v":[[0,4,["H2003"]],[4,5,["H784"]],[5,6,["H6919"]],[6,8,["H784"]],[8,11,["H4325"]],[11,13,["H1158"]],[13,17,["H8034"]],[17,18,["H3045"]],[18,21,["H6862"]],[21,24,["H1471"]],[24,26,["H7264"]],[26,29,["H4480","H6440"]]]},{"k":18888,"v":[[0,3,["H6213"]],[3,5,["H3372"]],[5,10,["H6960","H3808"]],[10,13,["H3381"]],[13,15,["H2022"]],[15,17,["H2151"]],[17,20,["H4480","H6440"]]]},{"k":18889,"v":[[0,7,["H4480","H5769"]],[7,10,["H3808"]],[10,11,["H8085"]],[11,12,["H3808"]],[12,16,["H238"]],[16,17,["H3808"]],[17,20,["H5869"]],[20,21,["H7200"]],[21,23,["H430"]],[23,24,["H2108"]],[24,29,["H6213"]],[29,33,["H2442"]],[33,35,[]]]},{"k":18890,"v":[[0,2,["H6293","(H853)"]],[2,5,["H7797"]],[5,7,["H6213"]],[7,8,["H6664"]],[8,11,["H2142"]],[11,15,["H1870"]],[15,16,["H2005"]],[16,17,["H859"]],[17,19,["H7107"]],[19,23,["H2398"]],[23,27,["H5769"]],[27,32,["H3467"]]]},{"k":18891,"v":[[0,3,["H1961"]],[3,4,["H3605"]],[4,7,["H2931"]],[7,10,["H3605"]],[10,12,["H6666"]],[12,15,["H5708"]],[15,16,["H899"]],[16,19,["H3605"]],[19,21,["H5034"]],[21,24,["H5929"]],[24,27,["H5771"]],[27,30,["H7307"]],[30,34,["H5375"]]]},{"k":18892,"v":[[0,4,["H369"]],[4,6,["H7121"]],[6,9,["H8034"]],[9,13,["H5782"]],[13,16,["H2388"]],[16,19,["H3588"]],[19,22,["H5641"]],[22,24,["H6440"]],[24,25,["H4480"]],[25,29,["H4127"]],[29,31,["H3027"]],[31,34,["H5771"]]]},{"k":18893,"v":[[0,2,["H6258"]],[2,4,["H3068"]],[4,5,["H859"]],[5,8,["H1"]],[8,9,["H587"]],[9,12,["H2563"]],[12,14,["H859"]],[14,16,["H3335"]],[16,19,["H3605"]],[19,22,["H4639"]],[22,25,["H3027"]]]},{"k":18894,"v":[[0,3,["H7107","H408"]],[3,5,["H5704","H3966"]],[5,7,["H3068"]],[7,8,["H408"]],[8,9,["H2142"]],[9,10,["H5771"]],[10,12,["H5703"]],[12,13,["H2005"]],[13,14,["H5027"]],[14,17,["H4994"]],[17,20,["H3605"]],[20,22,["H5971"]]]},{"k":18895,"v":[[0,2,["H6944"]],[2,3,["H5892"]],[3,4,["H1961"]],[4,6,["H4057"]],[6,7,["H6726"]],[7,8,["H1961"]],[8,10,["H4057"]],[10,11,["H3389"]],[11,13,["H8077"]]]},{"k":18896,"v":[[0,2,["H6944"]],[2,5,["H8597"]],[5,6,["H1004"]],[6,7,["H834"]],[7,9,["H1"]],[9,10,["H1984"]],[10,12,["H1961"]],[12,14,["H8316"]],[14,16,["H784"]],[16,18,["H3605"]],[18,21,["H4261"]],[21,22,["H1961"]],[22,24,["H2723"]]]},{"k":18897,"v":[[0,4,["H662"]],[4,5,["H5921"]],[5,6,["H428"]],[6,9,["H3068"]],[9,14,["H2814"]],[14,16,["H6031"]],[16,19,["H5704","H3966"]]]},{"k":18898,"v":[[0,3,["H1875"]],[3,7,["H7592"]],[7,8,["H3808"]],[8,13,["H4672"]],[13,17,["H1245"]],[17,19,["H3808"]],[19,21,["H559"]],[21,22,["H2009"]],[22,24,["H2009"]],[24,26,["H413"]],[26,28,["H1471"]],[28,31,["H3808"]],[31,32,["H7121"]],[32,35,["H8034"]]]},{"k":18899,"v":[[0,4,["H6566"]],[4,6,["H3027"]],[6,7,["H3605"]],[7,9,["H3117"]],[9,10,["H413"]],[10,12,["H5637"]],[12,13,["H5971"]],[13,15,["H1980"]],[15,18,["H1870"]],[18,21,["H3808"]],[21,22,["H2896"]],[22,23,["H310"]],[23,26,["H4284"]]]},{"k":18900,"v":[[0,2,["H5971"]],[2,7,["H3707","(H853)"]],[7,8,["H8548"]],[8,9,["H5921"]],[9,11,["H6440"]],[11,13,["H2076"]],[13,15,["H1593"]],[15,18,["H6999"]],[18,19,["H5921"]],[19,22,["H3843"]]]},{"k":18901,"v":[[0,2,["H3427"]],[2,5,["H6913"]],[5,7,["H3885"]],[7,10,["H5341"]],[10,12,["H398"]],[12,13,["H2386"]],[13,14,["H1320"]],[14,16,["H6564"]],[16,18,["H6292"]],[18,23,["H3627"]]]},{"k":18902,"v":[[0,2,["H559"]],[2,3,["H7126"]],[3,4,["H413"]],[4,8,["H5066","H408"]],[8,11,["H3588"]],[11,14,["H6942"]],[14,17,["H428"]],[17,20,["H6227"]],[20,23,["H639"]],[23,25,["H784"]],[25,27,["H3344"]],[27,28,["H3605"]],[28,30,["H3117"]]]},{"k":18903,"v":[[0,1,["H2009"]],[1,4,["H3789"]],[4,5,["H6440"]],[5,9,["H3808"]],[9,11,["H2814"]],[11,12,["H3588","H518"]],[12,14,["H7999"]],[14,16,["H7999"]],[16,17,["H5921"]],[17,19,["H2436"]]]},{"k":18904,"v":[[0,2,["H5771"]],[2,5,["H5771"]],[5,8,["H1"]],[8,9,["H3162"]],[9,10,["H559"]],[10,12,["H3068"]],[12,13,["H834"]],[13,16,["H6999"]],[16,17,["H5921"]],[17,19,["H2022"]],[19,21,["H2778"]],[21,23,["H5921"]],[23,25,["H1389"]],[25,29,["H4058"]],[29,31,["H7223"]],[31,32,["H6468"]],[32,33,["H413"]],[33,35,["H2436"]]]},{"k":18905,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H834"]],[5,8,["H8492"]],[8,10,["H4672"]],[10,13,["H811"]],[13,16,["H559"]],[16,17,["H7843"]],[17,19,["H408"]],[19,20,["H3588"]],[20,22,["H1293"]],[22,26,["H3651"]],[26,29,["H6213"]],[29,33,["H4616","H5650"]],[33,37,["H1115"]],[37,38,["H7843"]],[38,40,["H3605"]]]},{"k":18906,"v":[[0,5,["H3318"]],[5,7,["H2233"]],[7,10,["H4480","H3290"]],[10,14,["H4480","H3063"]],[14,16,["H3423"]],[16,19,["H2022"]],[19,22,["H972"]],[22,24,["H3423"]],[24,28,["H5650"]],[28,30,["H7931"]],[30,31,["H8033"]]]},{"k":18907,"v":[[0,2,["H8289"]],[2,4,["H1961"]],[4,6,["H5116"]],[6,8,["H6629"]],[8,11,["H6010"]],[11,13,["H5911"]],[13,18,["H1241"]],[18,22,["H7258"]],[22,25,["H5971"]],[25,26,["H834"]],[26,28,["H1875"]],[28,29,[]]]},{"k":18908,"v":[[0,2,["H859"]],[2,6,["H5800"]],[6,8,["H3068"]],[8,10,["H7913","(H853)"]],[10,12,["H6944"]],[12,13,["H2022"]],[13,15,["H6186"]],[15,17,["H7979"]],[17,20,["H1409"]],[20,23,["H4390"]],[23,26,["H4469"]],[26,29,["H4507"]]]},{"k":18909,"v":[[0,4,["H4487"]],[4,8,["H2719"]],[8,12,["H3605"]],[12,14,["H3766"]],[14,17,["H2874"]],[17,18,["H3282"]],[18,21,["H7121"]],[21,24,["H3808"]],[24,25,["H6030"]],[25,28,["H1696"]],[28,31,["H3808"]],[31,32,["H8085"]],[32,34,["H6213"]],[34,35,["H7451"]],[35,38,["H5869"]],[38,41,["H977"]],[41,43,["H834"]],[43,45,["H2654"]],[45,46,["H3808"]]]},{"k":18910,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,9,["H5650"]],[9,11,["H398"]],[11,13,["H859"]],[13,16,["H7456"]],[16,17,["H2009"]],[17,19,["H5650"]],[19,21,["H8354"]],[21,23,["H859"]],[23,26,["H6770"]],[26,27,["H2009"]],[27,29,["H5650"]],[29,31,["H8055"]],[31,33,["H859"]],[33,36,["H954"]]]},{"k":18911,"v":[[0,1,["H2009"]],[1,3,["H5650"]],[3,5,["H7442"]],[5,7,["H4480","H2898"]],[7,9,["H3820"]],[9,11,["H859"]],[11,13,["H6817"]],[13,15,["H4480","H3511"]],[15,17,["H3820"]],[17,20,["H3213"]],[20,22,["H4480","H7667"]],[22,24,["H7307"]]]},{"k":18912,"v":[[0,4,["H5117"]],[4,6,["H8034"]],[6,9,["H7621"]],[9,12,["H972"]],[12,15,["H136"]],[15,16,["H3069"]],[16,18,["H4191"]],[18,21,["H7121"]],[21,23,["H5650"]],[23,25,["H312"]],[25,26,["H8034"]]]},{"k":18913,"v":[[0,3,["H834"]],[3,5,["H1288"]],[5,8,["H776"]],[8,11,["H1288"]],[11,14,["H430"]],[14,16,["H543"]],[16,20,["H7650"]],[20,23,["H776"]],[23,25,["H7650"]],[25,28,["H430"]],[28,30,["H543"]],[30,31,["H3588"]],[31,33,["H7223"]],[33,34,["H6869"]],[34,36,["H7911"]],[36,38,["H3588"]],[38,41,["H5641"]],[41,44,["H4480","H5869"]]]},{"k":18914,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H1254"]],[4,5,["H2319"]],[5,6,["H8064"]],[6,9,["H2319"]],[9,10,["H776"]],[10,13,["H7223"]],[13,15,["H3808"]],[15,17,["H2142"]],[17,18,["H3808"]],[18,19,["H5927"]],[19,20,["H5921"]],[20,21,["H3820"]]]},{"k":18915,"v":[[0,1,["H3588","H518"]],[1,4,["H7797"]],[4,6,["H1523"]],[6,8,["H5704","H5703"]],[8,11,["H834"]],[11,12,["H589"]],[12,13,["H1254"]],[13,14,["H3588"]],[14,15,["H2009"]],[15,17,["H1254","(H853)"]],[17,18,["H3389"]],[18,20,["H1525"]],[20,23,["H5971"]],[23,25,["H4885"]]]},{"k":18916,"v":[[0,4,["H1523"]],[4,6,["H3389"]],[6,8,["H7797"]],[8,11,["H5971"]],[11,14,["H6963"]],[14,16,["H1065"]],[16,19,["H3808"]],[19,20,["H5750"]],[20,21,["H8085"]],[21,26,["H6963"]],[26,28,["H2201"]]]},{"k":18917,"v":[[0,3,["H1961"]],[3,4,["H3808"]],[4,5,["H5750"]],[5,6,["H4480","H8033"]],[6,8,["H5764"]],[8,10,["H3117"]],[10,14,["H2205"]],[14,15,["H834"]],[15,17,["H3808"]],[17,18,["H4390","(H853)"]],[18,20,["H3117"]],[20,21,["H3588"]],[21,23,["H5288"]],[23,25,["H4191"]],[25,27,["H3967"]],[27,28,["H8141"]],[28,29,["H1121"]],[29,32,["H2398"]],[32,35,["H3967"]],[35,36,["H8141"]],[36,37,["H1121"]],[37,40,["H7043"]]]},{"k":18918,"v":[[0,4,["H1129"]],[4,5,["H1004"]],[5,7,["H3427"]],[7,12,["H5193"]],[12,13,["H3754"]],[13,15,["H398"]],[15,17,["H6529"]],[17,19,[]]]},{"k":18919,"v":[[0,3,["H3808"]],[3,4,["H1129"]],[4,6,["H312"]],[6,7,["H3427"]],[7,10,["H3808"]],[10,11,["H5193"]],[11,13,["H312"]],[13,14,["H398"]],[14,15,["H3588"]],[15,18,["H3117"]],[18,21,["H6086"]],[21,24,["H3117"]],[24,27,["H5971"]],[27,30,["H972"]],[30,33,["H1086"]],[33,35,["H4639"]],[35,38,["H3027"]]]},{"k":18920,"v":[[0,3,["H3808"]],[3,4,["H3021"]],[4,6,["H7385"]],[6,7,["H3808"]],[7,9,["H3205"]],[9,11,["H928"]],[11,12,["H3588"]],[12,13,["H1992"]],[13,16,["H2233"]],[16,19,["H1288"]],[19,22,["H3068"]],[22,25,["H6631"]],[25,26,["H854"]],[26,27,[]]]},{"k":18921,"v":[[0,6,["H1961"]],[6,8,["H2962"]],[8,10,["H7121"]],[10,11,["H589"]],[11,13,["H6030"]],[13,16,["H1992"]],[16,18,["H5750"]],[18,19,["H1696"]],[19,20,["H589"]],[20,22,["H8085"]]]},{"k":18922,"v":[[0,2,["H2061"]],[2,5,["H2924"]],[5,7,["H7462"]],[7,8,["H259"]],[8,11,["H738"]],[11,13,["H398"]],[13,14,["H8401"]],[14,17,["H1241"]],[17,19,["H6083"]],[19,23,["H5175"]],[23,24,["H3899"]],[24,27,["H3808"]],[27,28,["H7489"]],[28,29,["H3808"]],[29,30,["H7843"]],[30,32,["H3605"]],[32,34,["H6944"]],[34,35,["H2022"]],[35,36,["H559"]],[36,38,["H3068"]]]},{"k":18923,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H8064"]],[6,9,["H3678"]],[9,12,["H776"]],[12,15,["H1916","H7272"]],[15,16,["H335"]],[16,19,["H1004"]],[19,20,["H834"]],[20,22,["H1129"]],[22,26,["H335"]],[26,28,["H2088"]],[28,29,["H4725"]],[29,32,["H4496"]]]},{"k":18924,"v":[[0,2,["H3605"]],[2,3,["H428"]],[3,7,["H3027"]],[7,8,["H6213"]],[8,10,["H3605"]],[10,11,["H428"]],[11,14,["H1961"]],[14,15,["H5002"]],[15,17,["H3068"]],[17,19,["H413"]],[19,20,["H2088"]],[20,24,["H5027"]],[24,26,["H413"]],[26,30,["H6041"]],[30,34,["H5223"]],[34,35,["H7307"]],[35,37,["H2730"]],[37,38,["H5921"]],[38,40,["H1697"]]]},{"k":18925,"v":[[0,3,["H7819"]],[3,5,["H7794"]],[5,10,["H5221"]],[10,12,["H376"]],[12,15,["H2076"]],[15,17,["H7716"]],[17,25,["H6202","H3611"]],[25,28,["H5927"]],[28,30,["H4503"]],[30,35,["H2386"]],[35,36,["H1818"]],[36,39,["H2142"]],[39,40,["H3828"]],[40,44,["H1288"]],[44,46,["H205"]],[46,47,["H1571"]],[47,48,["H1992"]],[48,50,["H977"]],[50,53,["H1870"]],[53,56,["H5315"]],[56,57,["H2654"]],[57,60,["H8251"]]]},{"k":18926,"v":[[0,1,["H589"]],[1,2,["H1571"]],[2,4,["H977"]],[4,6,["H8586"]],[6,9,["H935"]],[9,11,["H4035"]],[11,14,["H3282"]],[14,17,["H7121"]],[17,18,["H369"]],[18,20,["H6030"]],[20,23,["H1696"]],[23,26,["H3808"]],[26,27,["H8085"]],[27,30,["H6213"]],[30,31,["H7451"]],[31,34,["H5869"]],[34,36,["H977"]],[36,39,["H834"]],[39,41,["H2654"]],[41,42,["H3808"]]]},{"k":18927,"v":[[0,1,["H8085"]],[1,3,["H1697"]],[3,6,["H3068"]],[6,9,["H2730"]],[9,10,["H413"]],[10,12,["H1697"]],[12,14,["H251"]],[14,16,["H8130"]],[16,21,["H5077"]],[21,25,["H4616","H8034"]],[25,26,["H559"]],[26,29,["H3068"]],[29,31,["H3513"]],[31,35,["H7200"]],[35,38,["H8057"]],[38,40,["H1992"]],[40,43,["H954"]]]},{"k":18928,"v":[[0,2,["H6963"]],[2,4,["H7588"]],[4,7,["H4480","H5892"]],[7,9,["H6963"]],[9,12,["H4480","H1964"]],[12,14,["H6963"]],[14,17,["H3068"]],[17,19,["H7999"]],[19,20,["H1576"]],[20,23,["H341"]]]},{"k":18929,"v":[[0,1,["H2962"]],[1,3,["H2342"]],[3,6,["H3205"]],[6,7,["H2962"]],[7,9,["H2256"]],[9,10,["H935"]],[10,13,["H4422"]],[13,17,["H2145"]]]},{"k":18930,"v":[[0,1,["H4310"]],[1,3,["H8085"]],[3,6,["H2063"]],[6,7,["H4310"]],[7,9,["H7200"]],[9,11,["H428"]],[11,14,["H776"]],[14,19,["H2342"]],[19,21,["H259"]],[21,22,["H3117"]],[22,26,["H1471"]],[26,28,["H3205"]],[28,30,["H259","H6471"]],[30,31,["H3588"]],[31,33,["H1571"]],[33,35,["H6726"]],[35,36,["H2342"]],[36,39,["H3205","(H853)"]],[39,41,["H1121"]]]},{"k":18931,"v":[[0,2,["H589"]],[2,6,["H7665"]],[6,8,["H3808"]],[8,12,["H3205"]],[12,13,["H559"]],[13,15,["H3068"]],[15,17,["H589"]],[17,21,["H3205"]],[21,23,["H6113"]],[23,26,["H559"]],[26,28,["H430"]]]},{"k":18932,"v":[[0,1,["H8055"]],[1,3,["H854"]],[3,4,["H3389"]],[4,7,["H1523"]],[7,10,["H3605"]],[10,13,["H157"]],[13,15,["H7797"]],[15,17,["H4885"]],[17,18,["H854"]],[18,20,["H3605"]],[20,23,["H56"]],[23,24,["H5921"]],[24,25,[]]]},{"k":18933,"v":[[0,1,["H4616"]],[1,4,["H3243"]],[4,7,["H7646"]],[7,10,["H4480","H7699"]],[10,13,["H8575"]],[13,14,["H4616"]],[14,18,["H4711"]],[18,21,["H6026"]],[21,24,["H4480","H2123"]],[24,27,["H3519"]]]},{"k":18934,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,9,["H5186"]],[9,10,["H7965"]],[10,11,["H413"]],[11,15,["H5104"]],[15,18,["H3519"]],[18,21,["H1471"]],[21,24,["H7857"]],[24,25,["H5158"]],[25,29,["H3243"]],[29,33,["H5375"]],[33,34,["H5921"]],[34,36,["H6654"]],[36,39,["H8173"]],[39,40,["H5921"]],[40,42,["H1290"]]]},{"k":18935,"v":[[0,2,["H376"]],[2,3,["H834"]],[3,5,["H517"]],[5,6,["H5162"]],[6,7,["H3651"]],[7,9,["H595"]],[9,10,["H5162"]],[10,16,["H5162"]],[16,18,["H3389"]]]},{"k":18936,"v":[[0,4,["H7200"]],[4,7,["H3820"]],[7,9,["H7797"]],[9,12,["H6106"]],[12,14,["H6524"]],[14,17,["H1877"]],[17,20,["H3027"]],[20,23,["H3068"]],[23,26,["H3045"]],[26,27,["H854"]],[27,29,["H5650"]],[29,32,["H2194"]],[32,33,["H854"]],[33,35,["H341"]]]},{"k":18937,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H3068"]],[4,6,["H935"]],[6,8,["H784"]],[8,12,["H4818"]],[12,15,["H5492"]],[15,17,["H7725"]],[17,19,["H639"]],[19,21,["H2534"]],[21,24,["H1606"]],[24,26,["H3851"]],[26,28,["H784"]]]},{"k":18938,"v":[[0,1,["H3588"]],[1,3,["H784"]],[3,7,["H2719"]],[7,10,["H3068"]],[10,11,["H8199"]],[11,12,["H854"]],[12,13,["H3605"]],[13,14,["H1320"]],[14,17,["H2491"]],[17,20,["H3068"]],[20,23,["H7231"]]]},{"k":18939,"v":[[0,4,["H6942"]],[4,7,["H2891"]],[7,8,["H413"]],[8,10,["H1593"]],[10,11,["H310"]],[11,12,["H259"]],[12,16,["H8432"]],[16,17,["H398"]],[17,18,["H2386"]],[18,19,["H1320"]],[19,22,["H8263"]],[22,25,["H5909"]],[25,28,["H5486"]],[28,29,["H3162"]],[29,30,["H5002"]],[30,32,["H3068"]]]},{"k":18940,"v":[[0,2,["H595"]],[2,5,["H4639"]],[5,8,["H4284"]],[8,11,["H935"]],[11,15,["H6908","(H853)"]],[15,16,["H3605"]],[16,17,["H1471"]],[17,19,["H3956"]],[19,23,["H935"]],[23,25,["H7200","(H853)"]],[25,27,["H3519"]]]},{"k":18941,"v":[[0,4,["H7760"]],[4,6,["H226"]],[6,12,["H7971"]],[12,15,["H6412"]],[15,17,["H4480"]],[17,18,["H413"]],[18,20,["H1471"]],[20,22,["H8659"]],[22,23,["H6322"]],[23,25,["H3865"]],[25,27,["H4900"]],[27,29,["H7198"]],[29,31,["H8422"]],[31,33,["H3120"]],[33,36,["H339"]],[36,38,["H7350"]],[38,39,["H834"]],[39,41,["H3808"]],[41,42,["H8085","(H853)"]],[42,44,["H8088"]],[44,45,["H3808"]],[45,47,["H7200","(H853)"]],[47,49,["H3519"]],[49,53,["H5046","(H853)"]],[53,55,["H3519"]],[55,58,["H1471"]]]},{"k":18942,"v":[[0,4,["H935","(H853)"]],[4,5,["H3605"]],[5,7,["H251"]],[7,10,["H4503"]],[10,13,["H3068"]],[13,16,["H4480","H3605"]],[16,17,["H1471"]],[17,19,["H5483"]],[19,22,["H7393"]],[22,25,["H6632"]],[25,28,["H6505"]],[28,32,["H3753"]],[32,33,["H5921"]],[33,35,["H6944"]],[35,36,["H2022"]],[36,37,["H3389"]],[37,38,["H559"]],[38,40,["H3068"]],[40,41,["H834"]],[41,43,["H1121"]],[43,45,["H3478"]],[45,46,["H935","(H853)"]],[46,48,["H4503"]],[48,51,["H2889"]],[51,52,["H3627"]],[52,55,["H1004"]],[55,58,["H3068"]]]},{"k":18943,"v":[[0,4,["H1571"]],[4,5,["H3947"]],[5,6,["H4480"]],[6,9,["H3548"]],[9,12,["H3881"]],[12,13,["H559"]],[13,15,["H3068"]]]},{"k":18944,"v":[[0,1,["H3588"]],[1,2,["H834"]],[2,4,["H2319"]],[4,5,["H8064"]],[5,8,["H2319"]],[8,9,["H776"]],[9,10,["H834"]],[10,11,["H589"]],[11,13,["H6213"]],[13,15,["H5975"]],[15,16,["H6440"]],[16,18,["H5002"]],[18,20,["H3068"]],[20,21,["H3651"]],[21,24,["H2233"]],[24,27,["H8034"]],[27,28,["H5975"]]]},{"k":18945,"v":[[0,6,["H1961"]],[6,8,["H4480","H1767"]],[8,11,["H2320"]],[11,13,["H2320"]],[13,15,["H4480","H1767"]],[15,17,["H7676"]],[17,19,["H7676"]],[19,21,["H3605"]],[21,22,["H1320"]],[22,23,["H935"]],[23,25,["H7812"]],[25,26,["H6440"]],[26,28,["H559"]],[28,30,["H3068"]]]},{"k":18946,"v":[[0,5,["H3318"]],[5,7,["H7200"]],[7,10,["H6297"]],[10,13,["H376"]],[13,16,["H6586"]],[16,19,["H3588"]],[19,21,["H8438"]],[21,23,["H3808"]],[23,24,["H4191"]],[24,25,["H3808"]],[25,28,["H784"]],[28,30,["H3518"]],[30,34,["H1961"]],[34,36,["H1860"]],[36,38,["H3605"]],[38,39,["H1320"]]]},{"k":18947,"v":[[0,2,["H1697"]],[2,4,["H3414"]],[4,6,["H1121"]],[6,8,["H2518"]],[8,9,["H4480"]],[9,11,["H3548"]],[11,12,["H834"]],[12,15,["H6068"]],[15,18,["H776"]],[18,20,["H1144"]]]},{"k":18948,"v":[[0,2,["H834"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H1961"]],[8,11,["H3117"]],[11,13,["H2977"]],[13,15,["H1121"]],[15,17,["H526"]],[17,18,["H4428"]],[18,20,["H3063"]],[20,23,["H7969","H6240"]],[23,24,["H8141"]],[24,27,["H4427"]]]},{"k":18949,"v":[[0,2,["H1961"]],[2,6,["H3117"]],[6,8,["H3079"]],[8,10,["H1121"]],[10,12,["H2977"]],[12,13,["H4428"]],[13,15,["H3063"]],[15,16,["H5704"]],[16,18,["H8552"]],[18,21,["H6249","H6240"]],[21,22,["H8141"]],[22,24,["H6667"]],[24,26,["H1121"]],[26,28,["H2977"]],[28,29,["H4428"]],[29,31,["H3063"]],[31,32,["H5704"]],[32,35,["H1540"]],[35,37,["H3389"]],[37,41,["H2549"]],[41,42,["H2320"]]]},{"k":18950,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":18951,"v":[[0,1,["H2962"]],[1,3,["H3335"]],[3,7,["H990"]],[7,9,["H3045"]],[9,12,["H2962"]],[12,15,["H3318"]],[15,19,["H4480","H7358"]],[19,21,["H6942"]],[21,25,["H5414"]],[25,28,["H5030"]],[28,31,["H1471"]]]},{"k":18952,"v":[[0,2,["H559"]],[2,4,["H162"]],[4,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,9,["H3808","H3045"]],[9,10,["H1696"]],[10,11,["H3588"]],[11,12,["H595"]],[12,15,["H5288"]]]},{"k":18953,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H559"]],[7,8,["H408"]],[8,9,["H595"]],[9,12,["H5288"]],[12,13,["H3588"]],[13,16,["H1980"]],[16,17,["H5921"]],[17,18,["H3605"]],[18,19,["H834"]],[19,22,["H7971"]],[22,25,["H3605","H834"]],[25,27,["H6680"]],[27,31,["H1696"]]]},{"k":18954,"v":[[0,2,["H408"]],[2,3,["H3372"]],[3,6,["H4480","H6440"]],[6,7,["H3588"]],[7,8,["H589"]],[8,10,["H854"]],[10,13,["H5337"]],[13,15,["H5002"]],[15,17,["H3068"]]]},{"k":18955,"v":[[0,3,["H3068"]],[3,5,["H7971","(H853)"]],[5,7,["H3027"]],[7,9,["H5060","H5921"]],[9,11,["H6310"]],[11,14,["H3068"]],[14,15,["H559"]],[15,16,["H413"]],[16,18,["H2009"]],[18,21,["H5414"]],[21,23,["H1697"]],[23,26,["H6310"]]]},{"k":18956,"v":[[0,1,["H7200"]],[1,4,["H2088"]],[4,5,["H3117"]],[5,6,["H6485"]],[6,8,["H5921"]],[8,10,["H1471"]],[10,12,["H5921"]],[12,14,["H4467"]],[14,17,["H5428"]],[17,21,["H5422"]],[21,24,["H6"]],[24,28,["H2040"]],[28,30,["H1129"]],[30,33,["H5193"]]]},{"k":18957,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]],[10,11,["H3414"]],[11,12,["H4100"]],[12,13,["H7200"]],[13,14,["H859"]],[14,17,["H559"]],[17,18,["H589"]],[18,19,["H7200"]],[19,21,["H4731"]],[21,25,["H8247"]]]},{"k":18958,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,9,["H3190"]],[9,10,["H7200"]],[10,11,["H3588"]],[11,12,["H589"]],[12,14,["H8245","H5921"]],[14,16,["H1697"]],[16,18,["H6213"]],[18,19,[]]]},{"k":18959,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,12,["H8145"]],[12,13,["H559"]],[13,14,["H4100"]],[14,15,["H7200"]],[15,16,["H859"]],[16,19,["H559"]],[19,20,["H589"]],[20,21,["H7200"]],[21,23,["H5301"]],[23,24,["H5518"]],[24,27,["H6440"]],[27,30,["H4480","H6440"]],[30,32,["H6828"]]]},{"k":18960,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,10,["H4480","H6828"]],[10,12,["H7451"]],[12,15,["H6605"]],[15,16,["H5921"]],[16,17,["H3605"]],[17,19,["H3427"]],[19,22,["H776"]]]},{"k":18961,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,5,["H7121"]],[5,6,["H3605"]],[6,8,["H4940"]],[8,11,["H4467"]],[11,14,["H6828"]],[14,15,["H5002"]],[15,17,["H3068"]],[17,21,["H935"]],[21,25,["H5414"]],[25,27,["H376"]],[27,29,["H3678"]],[29,32,["H6607"]],[32,35,["H8179"]],[35,37,["H3389"]],[37,39,["H5921"]],[39,40,["H3605"]],[40,42,["H2346"]],[42,45,["H5439"]],[45,47,["H5921"]],[47,48,["H3605"]],[48,50,["H5892"]],[50,52,["H3063"]]]},{"k":18962,"v":[[0,4,["H1696"]],[4,6,["H4941"]],[6,9,["H5921"]],[9,10,["H3605"]],[10,12,["H7451"]],[12,13,["H834"]],[13,15,["H5800"]],[15,20,["H6999"]],[20,22,["H312"]],[22,23,["H430"]],[23,25,["H7812"]],[25,27,["H4639"]],[27,31,["H3027"]]]},{"k":18963,"v":[[0,1,["H859"]],[1,4,["H247"]],[4,6,["H4975"]],[6,8,["H6965"]],[8,10,["H1696"]],[10,11,["H413"]],[11,12,["(H853)"]],[12,13,["H3605"]],[13,14,["H834"]],[14,15,["H595"]],[15,16,["H6680"]],[16,19,["H408"]],[19,20,["H2865"]],[20,23,["H4480","H6440"]],[23,24,["H6435"]],[24,26,["H2865"]],[26,28,["H6440"]],[28,29,[]]]},{"k":18964,"v":[[0,1,["H589"]],[1,2,["H2009"]],[2,5,["H5414"]],[5,8,["H3117"]],[8,10,["H4013"]],[10,11,["H5892"]],[11,14,["H1270"]],[14,15,["H5982"]],[15,17,["H5178"]],[17,18,["H2346"]],[18,19,["H5921"]],[19,21,["H3605"]],[21,22,["H776"]],[22,25,["H4428"]],[25,27,["H3063"]],[27,30,["H8269"]],[30,34,["H3548"]],[34,39,["H5971"]],[39,42,["H776"]]]},{"k":18965,"v":[[0,4,["H3898"]],[4,5,["H413"]],[5,10,["H3808"]],[10,11,["H3201"]],[11,14,["H3588"]],[14,15,["H589"]],[15,17,["H854"]],[17,19,["H5002"]],[19,21,["H3068"]],[21,23,["H5337"]],[23,24,[]]]},{"k":18966,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":18967,"v":[[0,1,["H1980"]],[1,3,["H7121"]],[3,6,["H241"]],[6,8,["H3389"]],[8,9,["H559"]],[9,10,["H3541"]],[10,11,["H559"]],[11,13,["H3068"]],[13,15,["H2142"]],[15,18,["H2617"]],[18,21,["H5271"]],[21,23,["H160"]],[23,26,["H3623"]],[26,29,["H1980"]],[29,30,["H310"]],[30,34,["H4057"]],[34,37,["H776"]],[37,40,["H3808"]],[40,41,["H2232"]]]},{"k":18968,"v":[[0,1,["H3478"]],[1,3,["H6944"]],[3,6,["H3068"]],[6,9,["H7225"]],[9,12,["H8393"]],[12,13,["H3605"]],[13,15,["H398"]],[15,18,["H816"]],[18,19,["H7451"]],[19,21,["H935"]],[21,22,["H413"]],[22,24,["H5002"]],[24,26,["H3068"]]]},{"k":18969,"v":[[0,1,["H8085"]],[1,4,["H1697"]],[4,7,["H3068"]],[7,9,["H1004"]],[9,11,["H3290"]],[11,13,["H3605"]],[13,15,["H4940"]],[15,18,["H1004"]],[18,20,["H3478"]]]},{"k":18970,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H4100"]],[5,6,["H5766"]],[6,9,["H1"]],[9,10,["H4672"]],[10,13,["H3588"]],[13,17,["H7368"]],[17,18,["H4480","H5921"]],[18,22,["H1980"]],[22,23,["H310"]],[23,24,["H1892"]],[24,28,["H1891"]]]},{"k":18971,"v":[[0,1,["H3808"]],[1,2,["H559"]],[2,4,["H346"]],[4,7,["H3068"]],[7,11,["H5927","(H853)"]],[11,15,["H4480","H776"]],[15,17,["H4714"]],[17,19,["H1980"]],[19,23,["H4057"]],[23,26,["H776"]],[26,28,["H6160"]],[28,31,["H7745"]],[31,34,["H776"]],[34,36,["H6723"]],[36,42,["H6757"]],[42,45,["H776"]],[45,47,["H3808"]],[47,48,["H376"]],[48,50,["H5674"]],[50,52,["H8033"]],[52,53,["H3808"]],[53,54,["H120"]],[54,55,["H3427"]]]},{"k":18972,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H3759"]],[7,8,["H776"]],[8,10,["H398"]],[10,12,["H6529"]],[12,16,["H2898"]],[16,21,["H935"]],[21,23,["H2930","(H853)"]],[23,25,["H776"]],[25,27,["H7760"]],[27,29,["H5159"]],[29,31,["H8441"]]]},{"k":18973,"v":[[0,2,["H3548"]],[2,3,["H559"]],[3,4,["H3808"]],[4,5,["H346"]],[5,8,["H3068"]],[8,12,["H8610"]],[12,14,["H8451"]],[14,15,["H3045"]],[15,17,["H3808"]],[17,19,["H7462"]],[19,21,["H6586"]],[21,26,["H5030"]],[26,27,["H5012"]],[27,29,["H1168"]],[29,31,["H1980"]],[31,32,["H310"]],[32,36,["H3808"]],[36,37,["H3276"]]]},{"k":18974,"v":[[0,1,["H3651"]],[1,4,["H5750"]],[4,5,["H7378"]],[5,6,["H854"]],[6,8,["H5002"]],[8,10,["H3068"]],[10,12,["H854"]],[12,14,["H1121"]],[14,15,["H1121"]],[15,18,["H7378"]]]},{"k":18975,"v":[[0,1,["H3588"]],[1,3,["H5674"]],[3,5,["H339"]],[5,7,["H3794"]],[7,9,["H7200"]],[9,11,["H7971"]],[11,13,["H6938"]],[13,15,["H995"]],[15,16,["H3966"]],[16,18,["H7200"]],[18,21,["H1961"]],[21,22,["H2063"]],[22,24,[]]]},{"k":18976,"v":[[0,3,["H1471"]],[3,4,["H4171"]],[4,6,["H430"]],[6,7,["H1992"]],[7,10,["H3808"]],[10,11,["H430"]],[11,14,["H5971"]],[14,16,["H4171"]],[16,18,["H3519"]],[18,23,["H3808"]],[23,24,["H3276"]]]},{"k":18977,"v":[[0,2,["H8074"]],[2,5,["H8064"]],[5,6,["H5921"]],[6,7,["H2063"]],[7,11,["H8175"]],[11,14,["H3966"]],[14,15,["H2717"]],[15,16,["H5002"]],[16,18,["H3068"]]]},{"k":18978,"v":[[0,1,["H3588"]],[1,3,["H5971"]],[3,5,["H6213"]],[5,6,["H8147"]],[6,7,["H7451"]],[7,10,["H5800"]],[10,13,["H4726"]],[13,15,["H2416"]],[15,16,["H4325"]],[16,20,["H2672"]],[20,21,["H877"]],[21,22,["H7665"]],[22,23,["H877"]],[23,24,["H834"]],[24,26,["H3557"]],[26,27,["H3808"]],[27,28,["H4325"]]]},{"k":18979,"v":[[0,2,["H3478"]],[2,4,["H5650"]],[4,6,["H1931"]],[6,8,["H1004","H3211"]],[8,10,["H4069"]],[10,11,["H1961"]],[11,13,["H957"]]]},{"k":18980,"v":[[0,3,["H3715"]],[3,4,["H7580"]],[4,5,["H5921"]],[5,8,["H5414","H6963"]],[8,11,["H7896"]],[11,13,["H776"]],[13,14,["H8047"]],[14,16,["H5892"]],[16,18,["H3341"]],[18,19,["H4480","H1097"]],[19,20,["H3427"]]]},{"k":18981,"v":[[0,1,["H1571"]],[1,3,["H1121"]],[3,5,["H5297"]],[5,7,["H8471"]],[7,9,["H7462"]],[9,14,["H6936"]]]},{"k":18982,"v":[[0,3,["H3808"]],[3,4,["H6213"]],[4,5,["H2063"]],[5,12,["H5800","(H853)"]],[12,14,["H3068"]],[14,16,["H430"]],[16,17,["H6256"]],[17,19,["H1980"]],[19,23,["H1870"]]]},{"k":18983,"v":[[0,2,["H6258"]],[2,3,["H4100"]],[3,10,["H1870"]],[10,12,["H4714"]],[12,14,["H8354"]],[14,16,["H4325"]],[16,18,["H7883"]],[18,20,["H4100"]],[20,27,["H1870"]],[27,29,["H804"]],[29,31,["H8354"]],[31,33,["H4325"]],[33,36,["H5104"]]]},{"k":18984,"v":[[0,3,["H7451"]],[3,5,["H3256"]],[5,9,["H4878"]],[9,11,["H3198"]],[11,13,["H3045"]],[13,16,["H7200"]],[16,17,["H3588"]],[17,21,["H7451"]],[21,24,["H4751"]],[24,28,["H5800","(H853)"]],[28,30,["H3068"]],[30,32,["H430"]],[32,36,["H6345"]],[36,38,["H3808"]],[38,39,["H413"]],[39,41,["H5002"]],[41,43,["H136"]],[43,44,["H3069"]],[44,46,["H6635"]]]},{"k":18985,"v":[[0,1,["H3588"]],[1,4,["H4480","H5769"]],[4,7,["H7665"]],[7,9,["H5923"]],[9,11,["H5423"]],[11,13,["H4147"]],[13,16,["H559"]],[16,19,["H3808"]],[19,20,["H5674"]],[20,21,["H3588"]],[21,22,["H5921"]],[22,23,["H3605"]],[23,24,["H1364"]],[24,25,["H1389"]],[25,27,["H8478"]],[27,28,["H3605"]],[28,29,["H7488"]],[29,30,["H6086"]],[30,31,["H859"]],[31,32,["H6808"]],[32,35,["H2181"]]]},{"k":18986,"v":[[0,2,["H595"]],[2,4,["H5193"]],[4,8,["H8321"]],[8,9,["H3605"]],[9,11,["H571"]],[11,12,["H2233"]],[12,13,["H349"]],[13,17,["H2015"]],[17,20,["H5494"]],[20,24,["H5237"]],[24,25,["H1612"]],[25,27,[]]]},{"k":18987,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,4,["H3526"]],[4,7,["H5427"]],[7,11,["H7235"]],[11,12,["H1287"]],[12,15,["H5771"]],[15,17,["H3799"]],[17,18,["H6440"]],[18,20,["H5002"]],[20,22,["H136"]],[22,23,["H3069"]]]},{"k":18988,"v":[[0,1,["H349"]],[1,4,["H559"]],[4,7,["H3808"]],[7,8,["H2930"]],[8,11,["H3808"]],[11,12,["H1980"]],[12,13,["H310"]],[13,14,["H1168"]],[14,15,["H7200"]],[15,17,["H1870"]],[17,20,["H1516"]],[20,21,["H3045"]],[21,22,["H4100"]],[22,25,["H6213"]],[25,29,["H7031"]],[29,30,["H1072"]],[30,31,["H8308"]],[31,33,["H1870"]]]},{"k":18989,"v":[[0,3,["H6501"]],[3,4,["H3928"]],[4,7,["H4057"]],[7,10,["H7602"]],[10,12,["H7307"]],[12,15,["H185","H5315"]],[15,18,["H8385"]],[18,19,["H4310"]],[19,23,["H7725"]],[23,24,["H3605"]],[24,27,["H1245"]],[27,30,["H3808"]],[30,31,["H3286"]],[31,35,["H2320"]],[35,38,["H4672"]],[38,39,[]]]},{"k":18990,"v":[[0,1,["H4513"]],[1,3,["H7272"]],[3,6,["H4480","H3182"]],[6,9,["H1627"]],[9,11,["H4480","H6773"]],[11,14,["H559"]],[14,18,["H2976"]],[18,19,["H3808"]],[19,20,["H3588"]],[20,23,["H157"]],[23,24,["H2114"]],[24,26,["H310"]],[26,30,["H1980"]]]},{"k":18991,"v":[[0,3,["H1590"]],[3,5,["H1322"]],[5,6,["H3588"]],[6,9,["H4672"]],[9,10,["H3651"]],[10,13,["H1004"]],[13,15,["H3478"]],[15,16,["H954"]],[16,17,["H1992"]],[17,19,["H4428"]],[19,21,["H8269"]],[21,24,["H3548"]],[24,27,["H5030"]]]},{"k":18992,"v":[[0,1,["H559"]],[1,4,["H6086"]],[4,5,["H859"]],[5,8,["H1"]],[8,12,["H68"]],[12,13,["H859"]],[13,17,["H3205"]],[17,18,["H3588"]],[18,21,["H6437"]],[21,23,["H6203"]],[23,24,["H413"]],[24,27,["H3808"]],[27,29,["H6440"]],[29,33,["H6256"]],[33,36,["H7451"]],[36,39,["H559"]],[39,40,["H6965"]],[40,42,["H3467"]],[42,43,[]]]},{"k":18993,"v":[[0,2,["H346"]],[2,5,["H430"]],[5,6,["H834"]],[6,9,["H6213"]],[9,13,["H6965"]],[13,14,["H518"]],[14,17,["H3467"]],[17,21,["H6256"]],[21,24,["H7451"]],[24,25,["H3588"]],[25,29,["H4557"]],[29,32,["H5892"]],[32,33,["H1961"]],[33,35,["H430"]],[35,37,["H3063"]]]},{"k":18994,"v":[[0,1,["H4100"]],[1,4,["H7378"]],[4,5,["H413"]],[5,8,["H3605"]],[8,10,["H6586"]],[10,13,["H5002"]],[13,15,["H3068"]]]},{"k":18995,"v":[[0,2,["H7723"]],[2,5,["H5221","(H853)"]],[5,7,["H1121"]],[7,9,["H3947"]],[9,10,["H3808"]],[10,11,["H4148"]],[11,14,["H2719"]],[14,16,["H398"]],[16,18,["H5030"]],[18,21,["H7843"]],[21,22,["H738"]]]},{"k":18996,"v":[[0,2,["H1755"]],[2,3,["H7200"]],[3,4,["H859"]],[4,6,["H1697"]],[6,9,["H3068"]],[9,12,["H1961"]],[12,14,["H4057"]],[14,16,["H3478"]],[16,18,["H776"]],[18,20,["H3991"]],[20,21,["H4069"]],[21,22,["H559"]],[22,24,["H5971"]],[24,27,["H7300"]],[27,30,["H935"]],[30,31,["H3808"]],[31,32,["H5750"]],[32,33,["H413"]],[33,34,[]]]},{"k":18997,"v":[[0,3,["H1330"]],[3,4,["H7911"]],[4,6,["H5716"]],[6,9,["H3618"]],[9,11,["H7196"]],[11,14,["H5971"]],[14,16,["H7911"]],[16,18,["H3117"]],[18,19,["H369"]],[19,20,["H4557"]]]},{"k":18998,"v":[[0,1,["H4100"]],[1,2,["H3190"]],[2,5,["H1870"]],[5,7,["H1245"]],[7,8,["H160"]],[8,9,["H3651"]],[9,12,["H1571"]],[12,13,["H3925","(H853)"]],[13,16,["H7451","(H853)"]],[16,18,["H1870"]]]},{"k":18999,"v":[[0,1,["H1571"]],[1,4,["H3671"]],[4,6,["H4672"]],[6,8,["H1818"]],[8,11,["H5315"]],[11,14,["H34"]],[14,15,["H5355"]],[15,18,["H3808"]],[18,19,["H4672"]],[19,23,["H4290"]],[23,24,["H3588"]],[24,25,["H5921"]],[25,26,["H3605"]],[26,27,["H428"]]]},{"k":19000,"v":[[0,3,["H559"]],[3,4,["H3588"]],[4,7,["H5352"]],[7,8,["H389"]],[8,10,["H639"]],[10,12,["H7725"]],[12,13,["H4480"]],[13,15,["H2009"]],[15,19,["H8199"]],[19,21,["H5921"]],[21,23,["H559"]],[23,26,["H3808"]],[26,27,["H2398"]]]},{"k":19001,"v":[[0,1,["H4100"]],[1,2,["H235"]],[2,6,["H3966"]],[6,8,["H8138","(H853)"]],[8,10,["H1870"]],[10,12,["H1571"]],[12,15,["H954"]],[15,17,["H4480","H4714"]],[17,18,["H834"]],[18,21,["H954"]],[21,23,["H4480","H804"]]]},{"k":19002,"v":[[0,1,["H1571"]],[1,5,["H3318"]],[5,6,["H4480","H854"]],[6,7,["H2088"]],[7,10,["H3027"]],[10,11,["H5921"]],[11,13,["H7218"]],[13,14,["H3588"]],[14,16,["H3068"]],[16,18,["H3988"]],[18,20,["H4009"]],[20,24,["H3808"]],[24,25,["H6743"]],[25,27,[]]]},{"k":19003,"v":[[0,2,["H559"]],[2,3,["H2005"]],[3,5,["H376"]],[5,7,["H7971","(H853)"]],[7,9,["H802"]],[9,12,["H1980"]],[12,13,["H4480","H854"]],[13,16,["H1961"]],[16,17,["H312"]],[17,18,["H376"]],[18,21,["H7725"]],[21,22,["H413"]],[22,24,["H5750"]],[24,26,["H3808"]],[26,27,["H1931"]],[27,28,["H776"]],[28,31,["H2610","H2610"]],[31,33,["H859"]],[33,37,["H2181"]],[37,39,["H7227"]],[39,40,["H7453"]],[40,42,["H7725"]],[42,44,["H413"]],[44,46,["H5002"]],[46,48,["H3068"]]]},{"k":19004,"v":[[0,2,["H5375"]],[2,4,["H5869"]],[4,5,["H5921"]],[5,8,["H8205"]],[8,10,["H7200"]],[10,11,["H375"]],[11,14,["H3808"]],[14,16,["H7901"]],[16,18,["H5921"]],[18,20,["H1870"]],[20,23,["H3427"]],[23,28,["H6163"]],[28,31,["H4057"]],[31,35,["H2610"]],[35,37,["H776"]],[37,40,["H2184"]],[40,44,["H7451"]]]},{"k":19005,"v":[[0,3,["H7241"]],[3,6,["H4513"]],[6,10,["H1961"]],[10,11,["H3808"]],[11,13,["H4456"]],[13,18,["H802","H2181"]],[18,19,["H4696"]],[19,21,["H3985"]],[21,24,["H3637"]]]},{"k":19006,"v":[[0,3,["H3808"]],[3,6,["H4480","H6258"]],[6,7,["H7121"]],[7,11,["H1"]],[11,12,["H859"]],[12,15,["H441"]],[15,18,["H5271"]]]},{"k":19007,"v":[[0,3,["H5201"]],[3,7,["H5769"]],[7,10,["H8104"]],[10,14,["H5331"]],[14,15,["H2009"]],[15,18,["H1696"]],[18,20,["H6213"]],[20,22,["H7451"]],[22,25,["H3201"]]]},{"k":19008,"v":[[0,2,["H3068"]],[2,3,["H559"]],[3,5,["H413"]],[5,9,["H3117"]],[9,11,["H2977"]],[11,13,["H4428"]],[13,16,["H7200"]],[16,18,["H834"]],[18,19,["H4878"]],[19,20,["H3478"]],[20,22,["H6213"]],[22,23,["H1931"]],[23,26,["H1980"]],[26,27,["H5921"]],[27,28,["H3605"]],[28,29,["H1364"]],[29,30,["H2022"]],[30,32,["H8478"]],[32,33,["H3605"]],[33,34,["H7488"]],[34,35,["H6086"]],[35,37,["H8033"]],[37,41,["H2181"]]]},{"k":19009,"v":[[0,3,["H559"]],[3,4,["H310"]],[4,7,["H6213","(H853)"]],[7,8,["H3605"]],[8,9,["H428"]],[9,11,["H7725"]],[11,13,["H413"]],[13,17,["H7725"]],[17,18,["H3808"]],[18,21,["H901"]],[21,22,["H269"]],[22,23,["H3063"]],[23,24,["H7200"]],[24,25,[]]]},{"k":19010,"v":[[0,3,["H7200"]],[3,4,["H3588"]],[4,5,["H5921"]],[5,6,["H3605"]],[6,8,["H182"]],[8,9,["H834"]],[9,10,["H4878"]],[10,11,["H3478"]],[11,13,["H5003"]],[13,18,["H7971"]],[18,20,["H5414","H413"]],[20,21,["(H853)"]],[21,23,["H5612"]],[23,25,["H3748"]],[25,28,["H898"]],[28,29,["H269"]],[29,30,["H3063"]],[30,31,["H3372"]],[31,32,["H3808"]],[32,34,["H1980"]],[34,38,["H2181"]],[38,39,["H1571"]]]},{"k":19011,"v":[[0,5,["H1961"]],[5,8,["H4480","H6963"]],[8,11,["H2184"]],[11,14,["H2610","(H853)"]],[14,16,["H776"]],[16,19,["H5003"]],[19,20,["H854"]],[20,21,["H68"]],[21,23,["H854"]],[23,24,["H6086"]]]},{"k":19012,"v":[[0,2,["H1571"]],[2,4,["H3605"]],[4,5,["H2063"]],[5,7,["H901"]],[7,8,["H269"]],[8,9,["H3063"]],[9,11,["H3808"]],[11,12,["H7725"]],[12,13,["H413"]],[13,17,["H3605"]],[17,18,["H3820"]],[18,19,["H3588","H518"]],[19,20,["H8267"]],[20,21,["H5002"]],[21,23,["H3068"]]]},{"k":19013,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,8,["H4878"]],[8,9,["H3478"]],[9,11,["H6663"]],[11,12,["H5315"]],[12,15,["H4480","H898"]],[15,16,["H3063"]]]},{"k":19014,"v":[[0,1,["H1980"]],[1,3,["H7121","(H853)"]],[3,4,["H428"]],[4,5,["H1697"]],[5,8,["H6828"]],[8,10,["H559"]],[10,11,["H7725"]],[11,13,["H4878"]],[13,14,["H3478"]],[14,15,["H5002"]],[15,17,["H3068"]],[17,21,["H3808"]],[21,24,["H6440"]],[24,26,["H5307"]],[26,29,["H3588"]],[29,30,["H589"]],[30,32,["H2623"]],[32,33,["H5002"]],[33,35,["H3068"]],[35,39,["H3808"]],[39,40,["H5201"]],[40,43,["H5769"]]]},{"k":19015,"v":[[0,1,["H389"]],[1,2,["H3045"]],[2,4,["H5771"]],[4,5,["H3588"]],[5,8,["H6586"]],[8,11,["H3068"]],[11,13,["H430"]],[13,16,["H6340","(H853)"]],[16,18,["H1870"]],[18,21,["H2114"]],[21,22,["H8478"]],[22,23,["H3605"]],[23,24,["H7488"]],[24,25,["H6086"]],[25,29,["H3808"]],[29,30,["H8085"]],[30,32,["H6963"]],[32,33,["H5002"]],[33,35,["H3068"]]]},{"k":19016,"v":[[0,1,["H7725"]],[1,3,["H7726"]],[3,4,["H1121"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,8,["H3588"]],[8,9,["H595"]],[9,11,["H1166"]],[11,17,["H3947"]],[17,19,["H259"]],[19,22,["H4480","H5892"]],[22,24,["H8147"]],[24,27,["H4480","H4940"]],[27,31,["H935"]],[31,34,["H6726"]]]},{"k":19017,"v":[[0,4,["H5414"]],[4,6,["H7462"]],[6,10,["H3820"]],[10,13,["H7462"]],[13,16,["H1844"]],[16,18,["H7919"]]]},{"k":19018,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,10,["H7235"]],[10,12,["H6509"]],[12,15,["H776"]],[15,17,["H1992"]],[17,18,["H3117"]],[18,19,["H5002"]],[19,21,["H3068"]],[21,24,["H559"]],[24,25,["H3808"]],[25,26,["H5750"]],[26,28,["H727"]],[28,31,["H1285"]],[31,34,["H3068"]],[34,35,["H3808"]],[35,38,["H5927"]],[38,39,["H5921"]],[39,40,["H3820"]],[40,41,["H3808"]],[41,44,["H2142"]],[44,46,["H3808"]],[46,49,["H6485"]],[49,51,["H3808"]],[51,55,["H6213"]],[55,57,["H5750"]]]},{"k":19019,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,6,["H7121"]],[6,7,["H3389"]],[7,9,["H3678"]],[9,12,["H3068"]],[12,14,["H3605"]],[14,16,["H1471"]],[16,19,["H6960"]],[19,20,["H413"]],[20,24,["H8034"]],[24,27,["H3068"]],[27,29,["H3389"]],[29,30,["H3808"]],[30,33,["H1980"]],[33,35,["H5750"]],[35,36,["H310"]],[36,38,["H8307"]],[38,41,["H7451"]],[41,42,["H3820"]]]},{"k":19020,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,5,["H1004"]],[5,7,["H3063"]],[7,9,["H1980"]],[9,10,["H5921"]],[10,12,["H1004"]],[12,14,["H3478"]],[14,18,["H935"]],[18,19,["H3162"]],[19,23,["H4480","H776"]],[23,26,["H6828"]],[26,27,["H5921"]],[27,29,["H776"]],[29,30,["H834"]],[30,36,["H5157"]],[36,37,["(H853)"]],[37,39,["H1"]]]},{"k":19021,"v":[[0,2,["H595"]],[2,3,["H559"]],[3,4,["H349"]],[4,7,["H7896"]],[7,11,["H1121"]],[11,13,["H5414"]],[13,16,["H2532"]],[16,17,["H776"]],[17,19,["H6643"]],[19,20,["H5159"]],[20,23,["H6635"]],[23,25,["H1471"]],[25,28,["H559"]],[28,31,["H7121"]],[31,34,["H1"]],[34,37,["H3808"]],[37,39,["H7725"]],[39,40,["H4480","H310"]],[40,41,[]]]},{"k":19022,"v":[[0,1,["H403"]],[1,4,["H802"]],[4,6,["H898"]],[6,9,["H4480","H1167"]],[9,10,["H3651"]],[10,14,["H898"]],[14,18,["H1004"]],[18,20,["H3478"]],[20,21,["H5002"]],[21,23,["H3068"]]]},{"k":19023,"v":[[0,2,["H6963"]],[2,4,["H8085"]],[4,5,["H5921"]],[5,8,["H8205"]],[8,9,["H1065"]],[9,11,["H8469"]],[11,14,["H1121"]],[14,16,["H3478"]],[16,17,["H3588"]],[17,20,["H5753","(H853)"]],[20,22,["H1870"]],[22,26,["H7911","(H853)"]],[26,28,["H3068"]],[28,30,["H430"]]]},{"k":19024,"v":[[0,1,["H7725"]],[1,3,["H7726"]],[3,4,["H1121"]],[4,8,["H7495"]],[8,10,["H4878"]],[10,11,["H2009"]],[11,13,["H857"]],[13,16,["H3588"]],[16,17,["H859"]],[17,20,["H3068"]],[20,22,["H430"]]]},{"k":19025,"v":[[0,1,["H403"]],[1,3,["H8267"]],[3,10,["H4480","H1389"]],[10,14,["H1995"]],[14,16,["H2022"]],[16,17,["H403"]],[17,20,["H3068"]],[20,22,["H430"]],[22,25,["H8668"]],[25,27,["H3478"]]]},{"k":19026,"v":[[0,2,["H1322"]],[2,4,["H398","(H853)"]],[4,6,["H3018"]],[6,9,["H1"]],[9,12,["H4480","H5271","(H853)"]],[12,14,["H6629"]],[14,17,["H1241","(H853)"]],[17,19,["H1121"]],[19,22,["H1323"]]]},{"k":19027,"v":[[0,3,["H7901"]],[3,6,["H1322"]],[6,9,["H3639"]],[9,10,["H3680"]],[10,12,["H3588"]],[12,15,["H2398"]],[15,18,["H3068"]],[18,20,["H430"]],[20,21,["H587"]],[21,24,["H1"]],[24,27,["H4480","H5271"]],[27,29,["H5704"]],[29,30,["H2088"]],[30,31,["H3117"]],[31,34,["H3808"]],[34,35,["H8085"]],[35,37,["H6963"]],[37,40,["H3068"]],[40,42,["H430"]]]},{"k":19028,"v":[[0,1,["H518"]],[1,4,["H7725"]],[4,6,["H3478"]],[6,7,["H5002"]],[7,9,["H3068"]],[9,10,["H7725"]],[10,11,["H413"]],[11,14,["H518"]],[14,18,["H5493"]],[18,20,["H8251"]],[20,24,["H4480","H6440"]],[24,28,["H3808"]],[28,29,["H5110"]]]},{"k":19029,"v":[[0,4,["H7650"]],[4,6,["H3068"]],[6,7,["H2416"]],[7,9,["H571"]],[9,11,["H4941"]],[11,14,["H6666"]],[14,17,["H1471"]],[17,20,["H1288"]],[20,28,["H1984"]]]},{"k":19030,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,8,["H376"]],[8,10,["H3063"]],[10,12,["H3389"]],[12,14,["H5214"]],[14,17,["H5215"]],[17,19,["H2232"]],[19,20,["H408"]],[20,21,["H413"]],[21,22,["H6975"]]]},{"k":19031,"v":[[0,2,["H4135"]],[2,5,["H3068"]],[5,8,["H5493"]],[8,10,["H6190"]],[10,13,["H3824"]],[13,15,["H376"]],[15,17,["H3063"]],[17,19,["H3427"]],[19,21,["H3389"]],[21,22,["H6435"]],[22,24,["H2534"]],[24,26,["H3318"]],[26,28,["H784"]],[28,30,["H1197"]],[30,32,["H369"]],[32,34,["H3518"]],[34,36,["H4480","H6440"]],[36,39,["H7455"]],[39,42,["H4611"]]]},{"k":19032,"v":[[0,1,["H5046"]],[1,4,["H3063"]],[4,6,["H8085"]],[6,8,["H3389"]],[8,10,["H559"]],[10,11,["H8628"]],[11,14,["H7782"]],[14,17,["H776"]],[17,18,["H7121"]],[18,20,["H4390"]],[20,22,["H559"]],[22,24,["H622"]],[24,28,["H935"]],[28,29,["H413"]],[29,31,["H4013"]],[31,32,["H5892"]]]},{"k":19033,"v":[[0,2,["H5375"]],[2,4,["H5251"]],[4,6,["H6726"]],[6,7,["H5756"]],[7,8,["H5975"]],[8,9,["H408"]],[9,10,["H3588"]],[10,11,["H595"]],[11,13,["H935"]],[13,14,["H7451"]],[14,17,["H4480","H6828"]],[17,20,["H1419"]],[20,21,["H7667"]]]},{"k":19034,"v":[[0,2,["H738"]],[2,5,["H5927"]],[5,8,["H4480","H5441"]],[8,11,["H7843"]],[11,14,["H1471"]],[14,18,["H5265"]],[18,22,["H3318"]],[22,25,["H4480","H4725"]],[25,27,["H7760"]],[27,29,["H776"]],[29,30,["H8047"]],[30,33,["H5892"]],[33,37,["H5327"]],[37,38,["H4480","H369"]],[38,40,["H3427"]]]},{"k":19035,"v":[[0,1,["H5921"]],[1,2,["H2063"]],[2,3,["H2296"]],[3,6,["H8242"]],[6,7,["H5594"]],[7,9,["H3213"]],[9,10,["H3588"]],[10,12,["H2740"]],[12,13,["H639"]],[13,16,["H3068"]],[16,18,["H3808"]],[18,20,["H7725"]],[20,21,["H4480"]],[21,22,[]]]},{"k":19036,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,10,["H5002"]],[10,12,["H3068"]],[12,15,["H3820"]],[15,18,["H4428"]],[18,20,["H6"]],[20,23,["H3820"]],[23,26,["H8269"]],[26,29,["H3548"]],[29,32,["H8074"]],[32,35,["H5030"]],[35,37,["H8539"]]]},{"k":19037,"v":[[0,2,["H559"]],[2,4,["H162"]],[4,5,["H136"]],[5,6,["H3069"]],[6,7,["H403"]],[7,11,["H5377","H5377"]],[11,12,["H2088"]],[12,13,["H5971"]],[13,15,["H3389"]],[15,16,["H559"]],[16,19,["H1961"]],[19,20,["H7965"]],[20,23,["H2719"]],[23,24,["H5060"]],[24,25,["H5704"]],[25,27,["H5315"]]]},{"k":19038,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,7,["H559"]],[7,9,["H2088"]],[9,10,["H5971"]],[10,13,["H3389"]],[13,15,["H6703"]],[15,16,["H7307"]],[16,20,["H8205"]],[20,23,["H4057"]],[23,26,["H1323"]],[26,29,["H5971"]],[29,30,["H3808"]],[30,32,["H2219"]],[32,33,["H3808"]],[33,35,["H1305"]]]},{"k":19039,"v":[[0,3,["H4392"]],[3,4,["H7307"]],[4,6,["H4480","H428"]],[6,9,["H935"]],[9,12,["H6258"]],[12,13,["H1571"]],[13,15,["H589"]],[15,16,["H1696"]],[16,17,["H4941"]],[17,19,[]]]},{"k":19040,"v":[[0,1,["H2009"]],[1,5,["H5927"]],[5,7,["H6051"]],[7,10,["H4818"]],[10,15,["H5492"]],[15,17,["H5483"]],[17,19,["H7043"]],[19,21,["H4480","H5404"]],[21,22,["H188"]],[22,25,["H3588"]],[25,28,["H7703"]]]},{"k":19041,"v":[[0,2,["H3389"]],[2,3,["H3526"]],[3,5,["H3820"]],[5,7,["H4480","H7451"]],[7,8,["H4616"]],[8,12,["H3467"]],[12,14,["H5704","H4970"]],[14,17,["H205"]],[17,18,["H4284"]],[18,19,["H3885"]],[19,20,["H7130"]],[20,21,[]]]},{"k":19042,"v":[[0,1,["H3588"]],[1,3,["H6963"]],[3,4,["H5046"]],[4,6,["H4480","H1835"]],[6,8,["H8085"]],[8,9,["H205"]],[9,11,["H4480","H2022"]],[11,12,["H669"]]]},{"k":19043,"v":[[0,3,["H2142"]],[3,6,["H1471"]],[6,7,["H2009"]],[7,8,["H8085"]],[8,9,["H5921"]],[9,10,["H3389"]],[10,12,["H5341"]],[12,13,["H935"]],[13,16,["H4801"]],[16,17,["H4480","H776"]],[17,20,["H5414"]],[20,22,["H6963"]],[22,23,["H5921"]],[23,25,["H5892"]],[25,27,["H3063"]]]},{"k":19044,"v":[[0,2,["H8104"]],[2,5,["H7704"]],[5,6,["H1961"]],[6,8,["H5921"]],[8,11,["H4480","H5439"]],[11,12,["H3588"]],[12,16,["H4784"]],[16,19,["H5002"]],[19,21,["H3068"]]]},{"k":19045,"v":[[0,2,["H1870"]],[2,5,["H4611"]],[5,7,["H6213"]],[7,8,["H428"]],[8,12,["H2063"]],[12,15,["H7451"]],[15,16,["H3588"]],[16,19,["H4751"]],[19,20,["H3588"]],[20,22,["H5060"]],[22,23,["H5704"]],[23,25,["H3820"]]]},{"k":19046,"v":[[0,2,["H4578"]],[2,4,["H4578"]],[4,7,["H3176"]],[7,10,["H7023"]],[10,11,["H3820"]],[11,13,["H3820"]],[13,16,["H1993"]],[16,20,["H3808"]],[20,23,["H2790"]],[23,24,["H3588"]],[24,27,["H8085"]],[27,30,["H5315"]],[30,32,["H6963"]],[32,35,["H7782"]],[35,37,["H8643"]],[37,39,["H4421"]]]},{"k":19047,"v":[[0,1,["H7667"]],[1,2,["H5921"]],[2,3,["H7667"]],[3,5,["H7121"]],[5,6,["H3588"]],[6,8,["H3605"]],[8,9,["H776"]],[9,11,["H7703"]],[11,12,["H6597"]],[12,15,["H168"]],[15,16,["H7703"]],[16,19,["H3407"]],[19,22,["H7281"]]]},{"k":19048,"v":[[0,2,["H5704","H4970"]],[2,5,["H7200"]],[5,7,["H5251"]],[7,9,["H8085"]],[9,11,["H6963"]],[11,14,["H7782"]]]},{"k":19049,"v":[[0,1,["H3588"]],[1,3,["H5971"]],[3,5,["H191"]],[5,8,["H3808"]],[8,9,["H3045"]],[9,11,["H1992"]],[11,13,["H5530"]],[13,14,["H1121"]],[14,16,["H1992"]],[16,18,["H3808"]],[18,19,["H995"]],[19,20,["H1992"]],[20,22,["H2450"]],[22,25,["H7489"]],[25,29,["H3190"]],[29,32,["H3808"]],[32,33,["H3045"]]]},{"k":19050,"v":[[0,2,["H7200","(H853)"]],[2,4,["H776"]],[4,6,["H2009"]],[6,10,["H8414"]],[10,12,["H922"]],[12,15,["H8064"]],[15,19,["H369"]],[19,20,["H216"]]]},{"k":19051,"v":[[0,2,["H7200"]],[2,4,["H2022"]],[4,6,["H2009"]],[6,8,["H7493"]],[8,10,["H3605"]],[10,12,["H1389"]],[12,14,["H7043"]]]},{"k":19052,"v":[[0,2,["H7200"]],[2,4,["H2009"]],[4,7,["H369"]],[7,8,["H120"]],[8,10,["H3605"]],[10,12,["H5775"]],[12,15,["H8064"]],[15,17,["H5074"]]]},{"k":19053,"v":[[0,2,["H7200"]],[2,4,["H2009"]],[4,7,["H3759"]],[7,10,["H4057"]],[10,12,["H3605"]],[12,14,["H5892"]],[14,18,["H5422"]],[18,21,["H4480","H6440"]],[21,24,["H3068"]],[24,26,["H4480","H6440"]],[26,28,["H2740"]],[28,29,["H639"]]]},{"k":19054,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,5,["H3068"]],[5,6,["H559"]],[6,8,["H3605"]],[8,9,["H776"]],[9,11,["H1961"]],[11,12,["H8077"]],[12,16,["H3808"]],[16,17,["H6213"]],[17,20,["H3617"]]]},{"k":19055,"v":[[0,1,["H5921"]],[1,2,["H2063"]],[2,5,["H776"]],[5,6,["H56"]],[6,9,["H8064"]],[9,10,["H4480","H4605"]],[10,12,["H6937"]],[12,13,["H5921","H3588"]],[13,16,["H1696"]],[16,20,["H2161"]],[20,24,["H3808"]],[24,25,["H5162"]],[25,26,["H3808"]],[26,30,["H7725"]],[30,31,["H4480"]],[31,32,[]]]},{"k":19056,"v":[[0,2,["H3605"]],[2,3,["H5892"]],[3,5,["H1272"]],[5,8,["H4480","H6963"]],[8,11,["H6571"]],[11,13,["H7411","H7198"]],[13,16,["H935"]],[16,18,["H5645"]],[18,21,["H5927"]],[21,24,["H3710"]],[24,25,["H3605"]],[25,26,["H5892"]],[26,29,["H5800"]],[29,31,["H369"]],[31,33,["H376"]],[33,34,["H3427"]],[34,35,["H2004"]]]},{"k":19057,"v":[[0,3,["H859"]],[3,5,["H7703"]],[5,6,["H4100"]],[6,9,["H6213"]],[9,10,["H3588"]],[10,12,["H3847"]],[12,15,["H8144"]],[15,16,["H3588"]],[16,18,["H5710"]],[18,21,["H5716"]],[21,23,["H2091"]],[23,24,["H3588"]],[24,26,["H7167"]],[26,28,["H5869"]],[28,30,["H6320"]],[30,32,["H7723"]],[32,37,["H3302"]],[37,39,["H5689"]],[39,41,["H3988"]],[41,45,["H1245"]],[45,47,["H5315"]]]},{"k":19058,"v":[[0,1,["H3588"]],[1,4,["H8085"]],[4,6,["H6963"]],[6,12,["H2470"]],[12,15,["H6869"]],[15,24,["H1069"]],[24,26,["H6963"]],[26,29,["H1323"]],[29,31,["H6726"]],[31,34,["H3306"]],[34,36,["H6566"]],[36,38,["H3709"]],[38,40,["H188"]],[40,43,["H4994"]],[43,44,["H3588"]],[44,46,["H5315"]],[46,48,["H5888"]],[48,51,["H2026"]]]},{"k":19059,"v":[[0,5,["H7751"]],[5,8,["H2351"]],[8,10,["H3389"]],[10,12,["H7200"]],[12,13,["H4994"]],[13,15,["H3045"]],[15,17,["H1245"]],[17,21,["H7339"]],[21,23,["H518"]],[23,26,["H4672"]],[26,28,["H376"]],[28,29,["H518"]],[29,31,["H3426"]],[31,34,["H6213"]],[34,35,["H4941"]],[35,37,["H1245"]],[37,39,["H530"]],[39,43,["H5545"]],[43,44,[]]]},{"k":19060,"v":[[0,2,["H518"]],[2,4,["H559"]],[4,6,["H3068"]],[6,7,["H2416"]],[7,8,["H3651"]],[8,10,["H7650"]],[10,11,["H8267"]]]},{"k":19061,"v":[[0,2,["H3068"]],[2,4,["H3808"]],[4,6,["H5869"]],[6,9,["H530"]],[9,12,["H5221"]],[12,17,["H3808"]],[17,18,["H2342"]],[18,21,["H3615"]],[21,26,["H3985"]],[26,28,["H3947"]],[28,29,["H4148"]],[29,34,["H6440"]],[34,35,["H2388"]],[35,38,["H4480","H5553"]],[38,41,["H3985"]],[41,43,["H7725"]]]},{"k":19062,"v":[[0,2,["H589"]],[2,3,["H559"]],[3,4,["H389"]],[4,5,["H1992"]],[5,7,["H1800"]],[7,10,["H2973"]],[10,11,["H3588"]],[11,13,["H3045"]],[13,14,["H3808"]],[14,16,["H1870"]],[16,19,["H3068"]],[19,22,["H4941"]],[22,25,["H430"]]]},{"k":19063,"v":[[0,3,["H1980"]],[3,5,["H413"]],[5,8,["H1419"]],[8,12,["H1696"]],[12,14,["H3588"]],[14,15,["H1992"]],[15,17,["H3045"]],[17,19,["H1870"]],[19,22,["H3068"]],[22,25,["H4941"]],[25,28,["H430"]],[28,29,["H389"]],[29,30,["H1992"]],[30,32,["H3162"]],[32,33,["H7665"]],[33,35,["H5923"]],[35,37,["H5423"]],[37,39,["H4147"]]]},{"k":19064,"v":[[0,1,["H5921","H3651"]],[1,3,["H738"]],[3,7,["H4480","H3293"]],[7,9,["H5221"]],[9,13,["H2061"]],[13,16,["H6160"]],[16,18,["H7703"]],[18,21,["H5246"]],[21,23,["H8245"]],[23,24,["H5921"]],[24,26,["H5892"]],[26,28,["H3605"]],[28,31,["H3318"]],[31,32,["H4480","H2007"]],[32,37,["H2963"]],[37,38,["H3588"]],[38,40,["H6588"]],[40,42,["H7231"]],[42,45,["H4878"]],[45,47,["H6105"]]]},{"k":19065,"v":[[0,1,["H335"]],[1,4,["H5545"]],[4,7,["H2063"]],[7,9,["H1121"]],[9,11,["H5800"]],[11,14,["H7650"]],[14,19,["H3808"]],[19,20,["H430"]],[20,28,["H7646","(H853)"]],[28,32,["H5003"]],[32,35,["H1413"]],[35,40,["H2181"]],[40,41,["H1004"]]]},{"k":19066,"v":[[0,2,["H1961"]],[2,4,["H2109"]],[4,5,["H5483"]],[5,8,["H7904"]],[8,10,["H376"]],[10,11,["H6670"]],[11,12,["H413"]],[12,14,["H7453"]],[14,15,["H802"]]]},{"k":19067,"v":[[0,3,["H3808"]],[3,4,["H6485"]],[4,5,["H5921"]],[5,6,["H428"]],[6,8,["H5002"]],[8,10,["H3068"]],[10,11,["H518"]],[11,13,["H3808"]],[13,15,["H5315"]],[15,17,["H5358"]],[17,19,["H834"]],[19,21,["H1471"]],[21,23,["H2088"]]]},{"k":19068,"v":[[0,3,["H5927"]],[3,6,["H8284"]],[6,8,["H7843"]],[8,10,["H6213"]],[10,11,["H408"]],[11,14,["H3617"]],[14,16,["H5493"]],[16,18,["H5189"]],[18,19,["H3588"]],[19,20,["H1992"]],[20,22,["H3808"]],[22,24,["H3068"]]]},{"k":19069,"v":[[0,1,["H3588"]],[1,3,["H1004"]],[3,5,["H3478"]],[5,8,["H1004"]],[8,10,["H3063"]],[10,14,["H898","H898"]],[14,17,["H5002"]],[17,19,["H3068"]]]},{"k":19070,"v":[[0,3,["H3584"]],[3,5,["H3068"]],[5,7,["H559"]],[7,10,["H3808"]],[10,11,["H1931"]],[11,12,["H3808"]],[12,14,["H7451"]],[14,15,["H935"]],[15,16,["H5921"]],[16,18,["H3808"]],[18,21,["H7200"]],[21,22,["H2719"]],[22,24,["H7458"]]]},{"k":19071,"v":[[0,3,["H5030"]],[3,5,["H1961"]],[5,6,["H7307"]],[6,9,["H1699"]],[9,11,["H369"]],[11,14,["H3541"]],[14,18,["H6213"]],[18,20,[]]]},{"k":19072,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H430"]],[6,8,["H6635"]],[8,9,["H3282"]],[9,11,["H1696","(H853)"]],[11,12,["H2088"]],[12,13,["H1697"]],[13,14,["H2009"]],[14,17,["H5414"]],[17,19,["H1697"]],[19,22,["H6310"]],[22,23,["H784"]],[23,25,["H2088"]],[25,26,["H5971"]],[26,27,["H6086"]],[27,31,["H398"]],[31,32,[]]]},{"k":19073,"v":[[0,1,["H2009"]],[1,4,["H935"]],[4,6,["H1471"]],[6,7,["H5921"]],[7,10,["H4480","H4801"]],[10,12,["H1004"]],[12,14,["H3478"]],[14,15,["H5002"]],[15,17,["H3068"]],[17,18,["H1931"]],[18,21,["H386"]],[21,22,["H1471"]],[22,23,["H1931"]],[23,26,["H4480","H5769"]],[26,27,["H1471"]],[27,29,["H1471"]],[29,31,["H3956"]],[31,33,["H3045"]],[33,34,["H3808"]],[34,35,["H3808"]],[35,36,["H8085"]],[36,37,["H4100"]],[37,39,["H1696"]]]},{"k":19074,"v":[[0,2,["H827"]],[2,6,["H6605"]],[6,7,["H6913"]],[7,10,["H3605"]],[10,12,["H1368"]]]},{"k":19075,"v":[[0,5,["H398"]],[5,7,["H7105"]],[7,10,["H3899"]],[10,13,["H1121"]],[13,16,["H1323"]],[16,18,["H398"]],[18,22,["H398"]],[22,24,["H6629"]],[24,27,["H1241"]],[27,31,["H398"]],[31,33,["H1612"]],[33,37,["H8384"]],[37,40,["H7567"]],[40,42,["H4013"]],[42,43,["H5892"]],[43,44,["H834"]],[44,45,["H859"]],[45,46,["H982"]],[46,49,["H2719"]]]},{"k":19076,"v":[[0,1,["H1571"]],[1,3,["H1992"]],[3,4,["H3117"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,10,["H3808"]],[10,11,["H6213"]],[11,14,["H3617"]],[14,15,["H854"]],[15,16,[]]]},{"k":19077,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,10,["H559"]],[10,11,["H8478","H4100"]],[11,12,["H6213"]],[12,14,["H3068"]],[14,16,["H430","(H853)"]],[16,17,["H3605"]],[17,18,["H428"]],[18,25,["H559","H413"]],[25,27,["H834"]],[27,31,["H5800"]],[31,34,["H5647"]],[34,35,["H5236"]],[35,36,["H430"]],[36,39,["H776"]],[39,40,["H3651"]],[40,43,["H5647"]],[43,44,["H2114"]],[44,47,["H776"]],[47,50,["H3808"]],[50,51,[]]]},{"k":19078,"v":[[0,1,["H5046"]],[1,2,["H2063"]],[2,5,["H1004"]],[5,7,["H3290"]],[7,9,["H8085"]],[9,12,["H3063"]],[12,13,["H559"]]]},{"k":19079,"v":[[0,1,["H8085"]],[1,2,["H4994"]],[2,3,["H2063"]],[3,5,["H5530"]],[5,6,["H5971"]],[6,8,["H369"]],[8,9,["H3820"]],[9,12,["H5869"]],[12,14,["H7200"]],[14,15,["H3808"]],[15,18,["H241"]],[18,20,["H8085"]],[20,21,["H3808"]]]},{"k":19080,"v":[[0,1,["H3372"]],[1,3,["H3808"]],[3,5,["H5002"]],[5,7,["H3068"]],[7,10,["H3808"]],[10,11,["H2342"]],[11,14,["H4480","H6440"]],[14,15,["H834"]],[15,17,["H7760"]],[17,19,["H2344"]],[19,22,["H1366"]],[22,25,["H3220"]],[25,28,["H5769"]],[28,29,["H2706"]],[29,32,["H3808"]],[32,33,["H5674"]],[33,38,["H1530"]],[38,41,["H1607"]],[41,45,["H3808"]],[45,46,["H3201"]],[46,49,["H1993"]],[49,53,["H3808"]],[53,55,["H5674"]],[55,56,[]]]},{"k":19081,"v":[[0,2,["H2088"]],[2,3,["H5971"]],[3,4,["H1961"]],[4,6,["H5637"]],[6,9,["H4784"]],[9,10,["H3820"]],[10,13,["H5493"]],[13,15,["H1980"]]]},{"k":19082,"v":[[0,1,["H3808"]],[1,2,["H559"]],[2,6,["H3824"]],[6,9,["H4994"]],[9,10,["H3372","(H853)"]],[10,12,["H3068"]],[12,14,["H430"]],[14,16,["H5414"]],[16,17,["H1653"]],[17,20,["H3138"]],[20,23,["H4456"]],[23,26,["H6256"]],[26,28,["H8104"]],[28,32,["H2708"]],[32,33,["H7620"]],[33,36,["H7105"]]]},{"k":19083,"v":[[0,2,["H5771"]],[2,5,["H5186"]],[5,6,["H428"]],[6,10,["H2403"]],[10,12,["H4513"]],[12,13,["H2896"]],[13,15,["H4480"]],[15,16,[]]]},{"k":19084,"v":[[0,1,["H3588"]],[1,4,["H5971"]],[4,6,["H4672"]],[6,7,["H7563"]],[7,11,["H7789"]],[11,15,["H7918"]],[15,16,["H3353"]],[16,18,["H5324"]],[18,20,["H4889"]],[20,22,["H3920"]],[22,23,["H376"]]]},{"k":19085,"v":[[0,3,["H3619"]],[3,5,["H4392"]],[5,7,["H5775"]],[7,8,["H3651"]],[8,11,["H1004"]],[11,12,["H4392"]],[12,14,["H4820"]],[14,15,["H5921","H3651"]],[15,19,["H1431"]],[19,22,["H6238"]]]},{"k":19086,"v":[[0,4,["H8080"]],[4,6,["H6245"]],[6,7,["H1571"]],[7,9,["H5674"]],[9,11,["H1697"]],[11,14,["H7451"]],[14,16,["H1777"]],[16,17,["H3808"]],[17,19,["H1779"]],[19,21,["H1779"]],[21,24,["H3490"]],[24,27,["H6743"]],[27,30,["H4941"]],[30,33,["H34"]],[33,36,["H3808"]],[36,37,["H8199"]]]},{"k":19087,"v":[[0,3,["H3808"]],[3,4,["H6485"]],[4,5,["H5921"]],[5,6,["H428"]],[6,8,["H5002"]],[8,10,["H3068"]],[10,12,["H3808"]],[12,14,["H5315"]],[14,16,["H5358"]],[16,18,["H834"]],[18,20,["H1471"]],[20,22,["H2088"]]]},{"k":19088,"v":[[0,2,["H8047"]],[2,5,["H8186"]],[5,7,["H1961"]],[7,10,["H776"]]]},{"k":19089,"v":[[0,2,["H5030"]],[2,3,["H5012"]],[3,4,["H8267"]],[4,7,["H3548"]],[7,9,["H7287"]],[9,10,["H5921"]],[10,12,["H3027"]],[12,15,["H5971"]],[15,16,["H157"]],[16,20,["H3651"]],[20,22,["H4100"]],[22,25,["H6213"]],[25,28,["H319"]],[28,29,[]]]},{"k":19090,"v":[[0,3,["H1121"]],[3,5,["H1144"]],[5,9,["H5756"]],[9,13,["H4480","H7130"]],[13,15,["H3389"]],[15,17,["H8628"]],[17,19,["H7782"]],[19,21,["H8620"]],[21,24,["H5375"]],[24,28,["H4864"]],[28,29,["H5921"]],[29,30,["H1021"]],[30,31,["H3588"]],[31,32,["H7451"]],[32,33,["H8259"]],[33,37,["H4480","H6828"]],[37,39,["H1419"]],[39,40,["H7667"]]]},{"k":19091,"v":[[0,3,["H1819"]],[3,5,["H1323"]],[5,7,["H6726"]],[7,10,["H5000"]],[10,12,["H6026"]],[12,13,[]]]},{"k":19092,"v":[[0,2,["H7462"]],[2,5,["H5739"]],[5,7,["H935"]],[7,8,["H413"]],[8,12,["H8628"]],[12,14,["H168"]],[14,15,["H5921"]],[15,18,["H5439"]],[18,21,["H7462"]],[21,23,["H376"]],[23,24,["H854"]],[24,26,["H3027"]]]},{"k":19093,"v":[[0,1,["H6942"]],[1,3,["H4421"]],[3,4,["H5921"]],[4,6,["H6965"]],[6,11,["H5927"]],[11,13,["H6672"]],[13,14,["H188"]],[14,17,["H3588"]],[17,19,["H3117"]],[19,21,["H6437"]],[21,22,["H3588"]],[22,24,["H6752"]],[24,27,["H6153"]],[27,30,["H5186"]]]},{"k":19094,"v":[[0,1,["H6965"]],[1,5,["H5927"]],[5,7,["H3915"]],[7,11,["H7843"]],[11,13,["H759"]]]},{"k":19095,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,5,["H3068"]],[5,7,["H6635"]],[7,8,["H559"]],[8,11,["H3772"]],[11,12,["H6097"]],[12,14,["H8210"]],[14,16,["H5550"]],[16,17,["H5921"]],[17,18,["H3389"]],[18,19,["H1931"]],[19,22,["H5892"]],[22,25,["H6485"]],[25,28,["H3605"]],[28,29,["H6233"]],[29,32,["H7130"]],[32,34,[]]]},{"k":19096,"v":[[0,3,["H953"]],[3,5,["H6979"]],[5,7,["H4325"]],[7,8,["H3651"]],[8,10,["H6979"]],[10,13,["H7451"]],[13,14,["H2555"]],[14,16,["H7701"]],[16,18,["H8085"]],[18,21,["H5921","H6440"]],[21,23,["H8548"]],[23,25,["H2483"]],[25,27,["H4347"]]]},{"k":19097,"v":[[0,3,["H3256"]],[3,5,["H3389"]],[5,6,["H6435"]],[6,8,["H5315"]],[8,9,["H3363"]],[9,10,["H4480"]],[10,12,["H6435"]],[12,14,["H7760"]],[14,16,["H8077"]],[16,18,["H776"]],[18,19,["H3808"]],[19,20,["H3427"]]]},{"k":19098,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,10,["H5953","H5953"]],[10,12,["H7611"]],[12,14,["H3478"]],[14,17,["H1612"]],[17,19,["H7725"]],[19,21,["H3027"]],[21,24,["H1219"]],[24,25,["H5921"]],[25,27,["H5552"]]]},{"k":19099,"v":[[0,1,["H5921"]],[1,2,["H4310"]],[2,5,["H1696"]],[5,8,["H5749"]],[8,12,["H8085"]],[12,13,["H2009"]],[13,15,["H241"]],[15,17,["H6189"]],[17,20,["H3201","H3808"]],[20,21,["H7181"]],[21,22,["H2009"]],[22,24,["H1697"]],[24,27,["H3068"]],[27,28,["H1961"]],[28,32,["H2781"]],[32,35,["H3808"]],[35,36,["H2654"]],[36,38,[]]]},{"k":19100,"v":[[0,4,["H4392"]],[4,5,["H854"]],[5,7,["H2534"]],[7,10,["H3068"]],[10,13,["H3811"]],[13,15,["H3557"]],[15,21,["H8210"]],[21,22,["H5921"]],[22,24,["H5768"]],[24,25,["H2351"]],[25,27,["H5921"]],[27,29,["H5475"]],[29,32,["H970"]],[32,33,["H3162"]],[33,34,["H3588"]],[34,35,["H1571"]],[35,37,["H376"]],[37,38,["H5973"]],[38,40,["H802"]],[40,43,["H3920"]],[43,45,["H2205"]],[45,46,["H5973"]],[46,50,["H4390"]],[50,52,["H3117"]]]},{"k":19101,"v":[[0,3,["H1004"]],[3,6,["H5437"]],[6,8,["H312"]],[8,11,["H7704"]],[11,13,["H802"]],[13,14,["H3162"]],[14,15,["H3588"]],[15,19,["H5186","(H853)"]],[19,21,["H3027"]],[21,22,["H5921"]],[22,24,["H3427"]],[24,27,["H776"]],[27,28,["H5002"]],[28,30,["H3068"]]]},{"k":19102,"v":[[0,1,["H3588"]],[1,4,["H4480","H6996"]],[4,8,["H5704"]],[8,10,["H1419"]],[10,14,["H3605"]],[14,17,["H1214"]],[17,18,["H1215"]],[18,22,["H4480","H5030"]],[22,24,["H5704"]],[24,26,["H3548"]],[26,28,["H3605"]],[28,29,["H6213"]],[29,30,["H8267"]]]},{"k":19103,"v":[[0,3,["H7495"]],[3,4,["(H853)"]],[4,6,["H7667"]],[6,12,["H5971"]],[12,13,["H5921","H7043"]],[13,14,["H559"]],[14,15,["H7965"]],[15,16,["H7965"]],[16,20,["H369"]],[20,21,["H7965"]]]},{"k":19104,"v":[[0,3,["H954"]],[3,4,["H3588"]],[4,7,["H6213"]],[7,8,["H8441"]],[8,9,["H1571"]],[9,12,["H3808"]],[12,15,["H954","H954"]],[15,16,["H3808"]],[16,17,["H3045"]],[17,19,["H3637"]],[19,20,["H3651"]],[20,23,["H5307"]],[23,27,["H5307"]],[27,30,["H6256"]],[30,33,["H6485"]],[33,39,["H3782"]],[39,40,["H559"]],[40,42,["H3068"]]]},{"k":19105,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5975"]],[5,7,["H5921"]],[7,9,["H1870"]],[9,11,["H7200"]],[11,13,["H7592"]],[13,16,["H5769"]],[16,17,["H5410"]],[17,18,["H335","H2088"]],[18,21,["H2896"]],[21,22,["H1870"]],[22,24,["H1980"]],[24,29,["H4672"]],[29,30,["H4771"]],[30,33,["H5315"]],[33,36,["H559"]],[36,39,["H3808"]],[39,40,["H1980"]],[40,41,[]]]},{"k":19106,"v":[[0,3,["H6965"]],[3,4,["H6822"]],[4,5,["H5921"]],[5,8,["H7181"]],[8,11,["H6963"]],[11,14,["H7782"]],[14,17,["H559"]],[17,20,["H3808"]],[20,21,["H7181"]]]},{"k":19107,"v":[[0,1,["H3651"]],[1,2,["H8085"]],[2,4,["H1471"]],[4,6,["H3045"]],[6,8,["H5712","(H853)"]],[8,9,["H834"]],[9,12,[]]]},{"k":19108,"v":[[0,1,["H8085"]],[1,3,["H776"]],[3,4,["H2009"]],[4,5,["H595"]],[5,7,["H935"]],[7,8,["H7451"]],[8,9,["H413"]],[9,10,["H2088"]],[10,11,["H5971"]],[11,14,["H6529"]],[14,17,["H4284"]],[17,18,["H3588"]],[18,21,["H3808"]],[21,22,["H7181"]],[22,23,["H5921"]],[23,25,["H1697"]],[25,29,["H8451"]],[29,31,["H3988"]],[31,32,[]]]},{"k":19109,"v":[[0,2,["H4100"]],[2,3,["H2088"]],[3,4,["H935"]],[4,8,["H3828"]],[8,10,["H4480","H7614"]],[10,13,["H2896"]],[13,14,["H7070"]],[14,17,["H4801"]],[17,18,["H4480","H776"]],[18,21,["H5930"]],[21,23,["H3808"]],[23,24,["H7522"]],[24,25,["H3808"]],[25,27,["H2077"]],[27,28,["H6149"]],[28,30,[]]]},{"k":19110,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,9,["H5414"]],[9,10,["H4383"]],[10,11,["H413"]],[11,12,["H2088"]],[12,13,["H5971"]],[13,16,["H1"]],[16,19,["H1121"]],[19,20,["H3162"]],[20,22,["H3782"]],[22,26,["H7934"]],[26,29,["H7453"]],[29,31,["H6"]]]},{"k":19111,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H2009"]],[5,7,["H5971"]],[7,8,["H935"]],[8,11,["H6828"]],[11,12,["H4480","H776"]],[12,15,["H1419"]],[15,16,["H1471"]],[16,19,["H5782"]],[19,22,["H4480","H3411"]],[22,25,["H776"]]]},{"k":19112,"v":[[0,4,["H2388"]],[4,6,["H7198"]],[6,8,["H3591"]],[8,9,["H1931"]],[9,11,["H394"]],[11,14,["H3808"]],[14,15,["H7355"]],[15,17,["H6963"]],[17,18,["H1993"]],[18,21,["H3220"]],[21,24,["H7392"]],[24,25,["H5921"]],[25,26,["H5483"]],[26,29,["H6186"]],[29,31,["H376"]],[31,33,["H4421"]],[33,34,["H5921"]],[34,37,["H1323"]],[37,39,["H6726"]]]},{"k":19113,"v":[[0,3,["H8085","(H853)"]],[3,5,["H8089"]],[5,8,["H3027"]],[8,10,["H7503"]],[10,11,["H6869"]],[11,14,["H2388"]],[14,18,["H2427"]],[18,24,["H3205"]]]},{"k":19114,"v":[[0,3,["H408","H3318"]],[3,6,["H7704"]],[6,7,["H408"]],[7,8,["H1980"]],[8,11,["H1870"]],[11,12,["H3588"]],[12,14,["H2719"]],[14,17,["H341"]],[17,19,["H4032"]],[19,23,["H4480","H5439"]]]},{"k":19115,"v":[[0,2,["H1323"]],[2,5,["H5971"]],[5,6,["H2296"]],[6,9,["H8242"]],[9,12,["H6428"]],[12,14,["H665"]],[14,15,["H6213"]],[15,17,["H60"]],[17,22,["H3173"]],[22,24,["H8563"]],[24,25,["H4553"]],[25,26,["H3588"]],[26,28,["H7703"]],[28,30,["H6597"]],[30,31,["H935"]],[31,32,["H5921"]],[32,33,[]]]},{"k":19116,"v":[[0,3,["H5414"]],[3,7,["H969"]],[7,10,["H4013"]],[10,13,["H5971"]],[13,17,["H3045"]],[17,19,["H974","(H853)"]],[19,21,["H1870"]]]},{"k":19117,"v":[[0,3,["H3605"]],[3,4,["H5493"]],[4,5,["H5637"]],[5,6,["H1980"]],[6,8,["H7400"]],[8,11,["H5178"]],[11,13,["H1270"]],[13,14,["H1992"]],[14,16,["H3605"]],[16,17,["H7843"]]]},{"k":19118,"v":[[0,2,["H4647"]],[2,4,["H2787"]],[4,6,["H5777"]],[6,8,["H8552"]],[8,11,["H4480","H784"]],[11,13,["H6884"]],[13,14,["H6884"]],[14,16,["H7723"]],[16,19,["H7451"]],[19,21,["H3808"]],[21,23,["H5423"]]]},{"k":19119,"v":[[0,1,["H3988"]],[1,2,["H3701"]],[2,5,["H7121"]],[5,7,["H3588"]],[7,9,["H3068"]],[9,11,["H3988"]],[11,12,[]]]},{"k":19120,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H413"]],[5,6,["H3414"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,10,["H559"]]]},{"k":19121,"v":[[0,1,["H5975"]],[1,4,["H8179"]],[4,7,["H3068"]],[7,8,["H1004"]],[8,10,["H7121"]],[10,11,["H8033","(H853)"]],[11,12,["H2088"]],[12,13,["H1697"]],[13,15,["H559"]],[15,16,["H8085"]],[16,18,["H1697"]],[18,21,["H3068"]],[21,22,["H3605"]],[22,25,["H3063"]],[25,27,["H935"]],[27,30,["H428"]],[30,31,["H8179"]],[31,33,["H7812"]],[33,35,["H3068"]]]},{"k":19122,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,11,["H3190"]],[11,13,["H1870"]],[13,16,["H4611"]],[16,23,["H7931"]],[23,25,["H2088"]],[25,26,["H4725"]]]},{"k":19123,"v":[[0,1,["H982"]],[1,3,["H408"]],[3,4,["H413"]],[4,5,["H8267"]],[5,6,["H1697"]],[6,7,["H559"]],[7,9,["H1964"]],[9,12,["H3068"]],[12,14,["H1964"]],[14,17,["H3068"]],[17,19,["H1964"]],[19,22,["H3068"]],[22,24,["H1992"]]]},{"k":19124,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,5,["H3190","H3190","(H853)"]],[5,7,["H1870"]],[7,10,["H4611"]],[10,11,["H518"]],[11,14,["H6213","H6213"]],[14,15,["H4941"]],[15,16,["H996"]],[16,18,["H376"]],[18,21,["H7453"]]]},{"k":19125,"v":[[0,3,["H6231"]],[3,4,["H3808"]],[4,6,["H1616"]],[6,8,["H3490"]],[8,11,["H490"]],[11,13,["H8210"]],[13,14,["H408"]],[14,15,["H5355"]],[15,16,["H1818"]],[16,18,["H2088"]],[18,19,["H4725"]],[19,20,["H3808"]],[20,21,["H1980"]],[21,22,["H310"]],[22,23,["H312"]],[23,24,["H430"]],[24,27,["H7451"]]]},{"k":19126,"v":[[0,7,["H7931"]],[7,9,["H2088"]],[9,10,["H4725"]],[10,13,["H776"]],[13,14,["H834"]],[14,16,["H5414"]],[16,19,["H1"]],[19,21,["H4480","H5769"]],[21,23,["H5704","H5769"]]]},{"k":19127,"v":[[0,1,["H2009"]],[1,2,["H859"]],[2,3,["H982"]],[3,4,["H5921"]],[4,5,["H8267"]],[5,6,["H1697"]],[6,8,["H1115"]],[8,9,["H3276"]]]},{"k":19128,"v":[[0,3,["H1589"]],[3,4,["H7523"]],[4,7,["H5003"]],[7,9,["H7650"]],[9,10,["H8267"]],[10,13,["H6999"]],[13,15,["H1168"]],[15,17,["H1980"]],[17,18,["H310"]],[18,19,["H312"]],[19,20,["H430"]],[20,21,["H834"]],[21,23,["H3045"]],[23,24,["H3808"]]]},{"k":19129,"v":[[0,2,["H935"]],[2,4,["H5975"]],[4,5,["H6440"]],[5,8,["H2088"]],[8,9,["H1004"]],[9,10,["H834"]],[10,12,["H7121"]],[12,13,["H5921"]],[13,15,["H8034"]],[15,17,["H559"]],[17,22,["H5337","H4616","H6213","(H853)"]],[22,23,["H3605"]],[23,24,["H428"]],[24,25,["H8441"]]]},{"k":19130,"v":[[0,2,["H2088"]],[2,3,["H1004"]],[3,4,["H834"]],[4,6,["H7121"]],[6,7,["H5921"]],[7,9,["H8034"]],[9,10,["H1961"]],[10,12,["H4631"]],[12,14,["H6530"]],[14,17,["H5869"]],[17,18,["H2009"]],[18,19,["H1571"]],[19,20,["H595"]],[20,22,["H7200"]],[22,24,["H5002"]],[24,26,["H3068"]]]},{"k":19131,"v":[[0,1,["H3588"]],[1,2,["H1980"]],[2,4,["H4994"]],[4,5,["H413"]],[5,7,["H4725"]],[7,8,["H834"]],[8,11,["H7887"]],[11,12,["H834"]],[12,14,["H7931"]],[14,16,["H8034"]],[16,19,["H7223"]],[19,21,["H7200","(H853)"]],[21,22,["H834"]],[22,24,["H6213"]],[24,27,["H4480","H6440"]],[27,29,["H7451"]],[29,32,["H5971"]],[32,33,["H3478"]]]},{"k":19132,"v":[[0,2,["H6258"]],[2,3,["H3282"]],[3,6,["H6213","(H853)"]],[6,7,["H3605"]],[7,8,["H428"]],[8,9,["H4639"]],[9,10,["H5002"]],[10,12,["H3068"]],[12,15,["H1696"]],[15,16,["H413"]],[16,20,["H7925"]],[20,22,["H1696"]],[22,25,["H8085"]],[25,26,["H3808"]],[26,29,["H7121"]],[29,33,["H6030"]],[33,34,["H3808"]]]},{"k":19133,"v":[[0,4,["H6213"]],[4,7,["H1004"]],[7,8,["H834"]],[8,10,["H7121"]],[10,11,["H5921"]],[11,13,["H8034"]],[13,14,["H834"]],[14,15,["H859"]],[15,16,["H982"]],[16,20,["H4725"]],[20,21,["H834"]],[21,23,["H5414"]],[23,29,["H1"]],[29,30,["H834"]],[30,33,["H6213"]],[33,35,["H7887"]]]},{"k":19134,"v":[[0,4,["H7993"]],[4,7,["H4480","H5921"]],[7,9,["H6440"]],[9,10,["H834"]],[10,14,["H7993","(H853)"]],[14,15,["H3605"]],[15,17,["H251","(H853)"]],[17,20,["H3605"]],[20,21,["H2233"]],[21,23,["H669"]]]},{"k":19135,"v":[[0,2,["H6419"]],[2,3,["H408"]],[3,4,["H859"]],[4,5,["H1157"]],[5,6,["H2088"]],[6,7,["H5971"]],[7,8,["H408"]],[8,10,["H5375"]],[10,11,["H7440"]],[11,13,["H8605"]],[13,14,["H1157"]],[14,16,["H408"]],[16,18,["H6293"]],[18,21,["H3588"]],[21,24,["H369"]],[24,25,["H8085"]],[25,26,[]]]},{"k":19136,"v":[[0,1,["H7200"]],[1,3,["H369"]],[3,4,["H4100"]],[4,5,["H1992"]],[5,6,["H6213"]],[6,9,["H5892"]],[9,11,["H3063"]],[11,15,["H2351"]],[15,17,["H3389"]]]},{"k":19137,"v":[[0,2,["H1121"]],[2,3,["H3950"]],[3,4,["H6086"]],[4,7,["H1"]],[7,8,["H1197","(H853)"]],[8,10,["H784"]],[10,13,["H802"]],[13,14,["H3888"]],[14,16,["H1217"]],[16,18,["H6213"]],[18,19,["H3561"]],[19,22,["H4446"]],[22,24,["H8064"]],[24,28,["H5258"]],[28,30,["H5262"]],[30,32,["H312"]],[32,33,["H430"]],[33,34,["H4616"]],[34,40,["H3707"]]]},{"k":19138,"v":[[0,2,["H1992"]],[2,6,["H3707","(H853)"]],[6,7,["H5002"]],[7,9,["H3068"]],[9,12,["H3808"]],[12,15,["H4616"]],[15,17,["H1322"]],[17,21,["H6440"]]]},{"k":19139,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,9,["H639"]],[9,12,["H2534"]],[12,16,["H5413"]],[16,17,["H413"]],[17,18,["H2088"]],[18,19,["H4725"]],[19,20,["H5921"]],[20,21,["H120"]],[21,23,["H5921"]],[23,24,["H929"]],[24,26,["H5921"]],[26,28,["H6086"]],[28,31,["H7704"]],[31,33,["H5921"]],[33,35,["H6529"]],[35,38,["H127"]],[38,42,["H1197"]],[42,45,["H3808"]],[45,47,["H3518"]]]},{"k":19140,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,11,["H5595"]],[11,14,["H5930"]],[14,15,["H5921"]],[15,17,["H2077"]],[17,19,["H398"]],[19,20,["H1320"]]]},{"k":19141,"v":[[0,1,["H3588"]],[1,3,["H1696"]],[3,4,["H3808"]],[4,5,["(H853)"]],[5,7,["H1"]],[7,8,["H3808"]],[8,9,["H6680"]],[9,13,["H3117"]],[13,16,["H3318"]],[16,21,["H4480","H776"]],[21,23,["H4714"]],[23,24,["H5921","H1697"]],[24,26,["H5930"]],[26,28,["H2077"]]]},{"k":19142,"v":[[0,1,["H3588","H518","(H853)"]],[1,2,["H2088"]],[2,3,["H1697"]],[3,4,["H6680"]],[4,7,["H559"]],[7,8,["H8085"]],[8,10,["H6963"]],[10,14,["H1961"]],[14,16,["H430"]],[16,18,["H859"]],[18,20,["H1961"]],[20,22,["H5971"]],[22,24,["H1980"]],[24,27,["H3605"]],[27,29,["H1870"]],[29,30,["H834"]],[30,33,["H6680"]],[33,35,["H4616"]],[35,39,["H3190"]],[39,41,[]]]},{"k":19143,"v":[[0,3,["H8085"]],[3,4,["H3808"]],[4,5,["H3808"]],[5,6,["H5186","(H853)"]],[6,8,["H241"]],[8,10,["H1980"]],[10,13,["H4156"]],[13,17,["H8307"]],[17,20,["H7451"]],[20,21,["H3820"]],[21,23,["H1961"]],[23,24,["H268"]],[24,26,["H3808"]],[26,27,["H6440"]]]},{"k":19144,"v":[[0,1,["H4480"]],[1,3,["H3117"]],[3,4,["H834"]],[4,6,["H1"]],[6,8,["H3318"]],[8,12,["H4480","H776"]],[12,14,["H4714"]],[14,15,["H5704"]],[15,16,["H2088"]],[16,17,["H3117"]],[17,21,["H7971"]],[21,22,["H413"]],[22,23,["(H853)"]],[23,24,["H3605"]],[24,26,["H5650"]],[26,28,["H5030"]],[28,29,["H3117"]],[29,32,["H7925"]],[32,34,["H7971"]],[34,35,[]]]},{"k":19145,"v":[[0,3,["H8085"]],[3,4,["H3808"]],[4,5,["H413"]],[5,7,["H3808"]],[7,8,["H5186","(H853)"]],[8,10,["H241"]],[10,12,["H7185","(H853)"]],[12,14,["H6203"]],[14,17,["H7489"]],[17,20,["H4480","H1"]]]},{"k":19146,"v":[[0,4,["H1696","(H853)"]],[4,5,["H3605"]],[5,6,["H428"]],[6,7,["H1697"]],[7,8,["H413"]],[8,13,["H3808"]],[13,14,["H8085"]],[14,15,["H413"]],[15,20,["H7121"]],[20,21,["H413"]],[21,26,["H3808"]],[26,27,["H6030"]],[27,28,[]]]},{"k":19147,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H2088"]],[7,10,["H1471"]],[10,11,["H834"]],[11,12,["H8085"]],[12,13,["H3808"]],[13,15,["H6963"]],[15,18,["H3068"]],[18,20,["H430"]],[20,21,["H3808"]],[21,22,["H3947"]],[22,23,["H4148"]],[23,24,["H530"]],[24,26,["H6"]],[26,30,["H3772"]],[30,33,["H4480","H6310"]]]},{"k":19148,"v":[[0,2,["H1494"]],[2,4,["H5145"]],[4,10,["H7993"]],[10,13,["H5375"]],[13,15,["H7015"]],[15,16,["H5921"]],[16,18,["H8205"]],[18,19,["H3588"]],[19,21,["H3068"]],[21,23,["H3988"]],[23,25,["H5203","(H853)"]],[25,27,["H1755"]],[27,30,["H5678"]]]},{"k":19149,"v":[[0,1,["H3588"]],[1,3,["H1121"]],[3,5,["H3063"]],[5,7,["H6213"]],[7,8,["H7451"]],[8,11,["H5869"]],[11,12,["H5002"]],[12,14,["H3068"]],[14,17,["H7760"]],[17,19,["H8251"]],[19,22,["H1004"]],[22,23,["H834"]],[23,25,["H7121"]],[25,26,["H5921"]],[26,28,["H8034"]],[28,30,["H2930"]],[30,31,[]]]},{"k":19150,"v":[[0,4,["H1129"]],[4,7,["H1116"]],[7,9,["H8612"]],[9,10,["H834"]],[10,14,["H1516"]],[14,17,["H1121"]],[17,19,["H2011"]],[19,21,["H8313","(H853)"]],[21,23,["H1121"]],[23,26,["H1323"]],[26,29,["H784"]],[29,30,["H834"]],[30,32,["H6680"]],[32,34,["H3808"]],[34,35,["H3808"]],[35,36,["H5927"]],[36,38,["H5921"]],[38,40,["H3820"]]]},{"k":19151,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,4,["H3117"]],[4,5,["H935"]],[5,6,["H5002"]],[6,8,["H3068"]],[8,12,["H3808"]],[12,13,["H5750"]],[13,15,["H559"]],[15,16,["H8612"]],[16,19,["H1516"]],[19,22,["H1121"]],[22,24,["H2011"]],[24,25,["H3588","H518"]],[25,27,["H1516"]],[27,29,["H2028"]],[29,33,["H6912"]],[33,35,["H8612"]],[35,39,["H4480","H369"]],[39,40,["H4725"]]]},{"k":19152,"v":[[0,3,["H5038"]],[3,5,["H2088"]],[5,6,["H5971"]],[6,8,["H1961"]],[8,9,["H3978"]],[9,12,["H5775"]],[12,15,["H8064"]],[15,19,["H929"]],[19,22,["H776"]],[22,24,["H369"]],[24,28,["H2729"]]]},{"k":19153,"v":[[0,6,["H7673"]],[6,9,["H4480","H5892"]],[9,11,["H3063"]],[11,15,["H4480","H2351"]],[15,17,["H3389"]],[17,19,["H6963"]],[19,21,["H8342"]],[21,24,["H6963"]],[24,26,["H8057"]],[26,28,["H6963"]],[28,31,["H2860"]],[31,34,["H6963"]],[34,37,["H3618"]],[37,38,["H3588"]],[38,40,["H776"]],[40,42,["H1961"]],[42,43,["H2723"]]]},{"k":19154,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,4,["H5002"]],[4,6,["H3068"]],[6,10,["H3318","(H853)"]],[10,12,["H6106"]],[12,15,["H4428"]],[15,17,["H3063"]],[17,20,["H6106"]],[20,23,["H8269"]],[23,26,["H6106"]],[26,29,["H3548"]],[29,32,["H6106"]],[32,35,["H5030"]],[35,38,["H6106"]],[38,41,["H3427"]],[41,43,["H3389"]],[43,47,["H4480","H6913"]]]},{"k":19155,"v":[[0,4,["H7849"]],[4,8,["H8121"]],[8,11,["H3394"]],[11,13,["H3605"]],[13,15,["H6635"]],[15,17,["H8064"]],[17,18,["H834"]],[18,21,["H157"]],[21,23,["H834"]],[23,26,["H5647"]],[26,28,["H310"]],[28,29,["H834"]],[29,32,["H1980"]],[32,34,["H834"]],[34,37,["H1875"]],[37,39,["H834"]],[39,42,["H7812"]],[42,45,["H3808"]],[45,47,["H622"]],[47,48,["H3808"]],[48,50,["H6912"]],[50,53,["H1961"]],[53,55,["H1828"]],[55,56,["H5921"]],[56,58,["H6440"]],[58,61,["H127"]]]},{"k":19156,"v":[[0,2,["H4194"]],[2,5,["H977"]],[5,8,["H4480","H2416"]],[8,10,["H3605"]],[10,12,["H7611"]],[12,16,["H7604"]],[16,17,["H4480"]],[17,18,["H2063"]],[18,19,["H7451"]],[19,20,["H4940"]],[20,22,["H7604"]],[22,24,["H3605"]],[24,26,["H4725"]],[26,27,["H834","H8033"]],[27,30,["H5080"]],[30,32,["H5002"]],[32,34,["H3068"]],[34,36,["H6635"]]]},{"k":19157,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H3541"]],[7,8,["H559"]],[8,10,["H3068"]],[10,13,["H5307"]],[13,15,["H3808"]],[15,16,["H6965"]],[16,20,["H7725"]],[20,22,["H3808"]],[22,23,["H7725"]]]},{"k":19158,"v":[[0,1,["H4069"]],[1,4,["H2088"]],[4,5,["H5971"]],[5,7,["H3389"]],[7,9,["H7725"]],[9,12,["H5329"]],[12,13,["H4878"]],[13,16,["H2388"]],[16,17,["H8649"]],[17,19,["H3985"]],[19,21,["H7725"]]]},{"k":19159,"v":[[0,2,["H7181"]],[2,4,["H8085"]],[4,7,["H1696"]],[7,8,["H3808"]],[8,9,["H3651"]],[9,10,["H369"]],[10,11,["H376"]],[11,12,["H5162"]],[12,14,["H5921"]],[14,16,["H7451"]],[16,17,["H559"]],[17,18,["H4100"]],[18,21,["H6213"]],[21,23,["H3605"]],[23,24,["H7725"]],[24,27,["H4794"]],[27,30,["H5483"]],[30,31,["H7857"]],[31,34,["H4421"]]]},{"k":19160,"v":[[0,1,["H1571"]],[1,3,["H2624"]],[3,6,["H8064"]],[6,7,["H3045"]],[7,10,["H4150"]],[10,13,["H8449"]],[13,16,["H5483"]],[16,19,["H5693"]],[19,20,["H8104","(H853)"]],[20,22,["H6256"]],[22,25,["H935"]],[25,28,["H5971"]],[28,29,["H3045"]],[29,30,["H3808","(H853)"]],[30,32,["H4941"]],[32,35,["H3068"]]]},{"k":19161,"v":[[0,1,["H349"]],[1,4,["H559"]],[4,5,["H587"]],[5,7,["H2450"]],[7,10,["H8451"]],[10,13,["H3068"]],[13,15,["H854"]],[15,17,["H2009"]],[17,18,["H403"]],[18,20,["H8267"]],[20,21,["H6213"]],[21,25,["H5842"]],[25,28,["H5608"]],[28,31,["H8267"]]]},{"k":19162,"v":[[0,2,["H2450"]],[2,5,["H954"]],[5,8,["H2865"]],[8,10,["H3920"]],[10,11,["H2009"]],[11,14,["H3988"]],[14,16,["H1697"]],[16,19,["H3068"]],[19,21,["H4100"]],[21,22,["H2451"]],[22,25,[]]]},{"k":19163,"v":[[0,1,["H3651"]],[1,4,["H5414","(H853)"]],[4,6,["H802"]],[6,8,["H312"]],[8,11,["H7704"]],[11,16,["H3423"]],[16,18,["H3588"]],[18,20,["H3605"]],[20,23,["H4480","H6996"]],[23,25,["H5704"]],[25,27,["H1419"]],[27,31,["H1214","H1215"]],[31,34,["H4480","H5030"]],[34,36,["H5704"]],[36,38,["H3548"]],[38,40,["H3605"]],[40,41,["H6213"]],[41,42,["H8267"]]]},{"k":19164,"v":[[0,4,["H7495","(H853)"]],[4,6,["H7667"]],[6,9,["H1323"]],[9,12,["H5971"]],[12,13,["H7043"]],[13,14,["H559"]],[14,15,["H7965"]],[15,16,["H7965"]],[16,20,["H369"]],[20,21,["H7965"]]]},{"k":19165,"v":[[0,3,["H954"]],[3,4,["H3588"]],[4,7,["H6213"]],[7,8,["H8441"]],[8,9,["H1571"]],[9,12,["H3808"]],[12,15,["H954","H954"]],[15,16,["H3808"]],[16,17,["H3045"]],[17,19,["H3637"]],[19,20,["H3651"]],[20,23,["H5307"]],[23,27,["H5307"]],[27,30,["H6256"]],[30,33,["H6486"]],[33,38,["H3782"]],[38,39,["H559"]],[39,41,["H3068"]]]},{"k":19166,"v":[[0,4,["H5486","H5486"]],[4,6,["H5002"]],[6,8,["H3068"]],[8,12,["H369"]],[12,13,["H6025"]],[13,16,["H1612"]],[16,17,["H369"]],[17,18,["H8384"]],[18,22,["H8384"]],[22,25,["H5929"]],[25,27,["H5034"]],[27,34,["H5414"]],[34,38,["H5674"]],[38,40,[]]]},{"k":19167,"v":[[0,1,["H4100","H5921"]],[1,3,["H587"]],[3,4,["H3427"]],[4,7,["H622"]],[7,11,["H935"]],[11,12,["H413"]],[12,14,["H4013"]],[14,15,["H5892"]],[15,20,["H1826"]],[20,21,["H8033"]],[21,22,["H3588"]],[22,24,["H3068"]],[24,26,["H430"]],[26,31,["H1826"]],[31,35,["H4325"]],[35,37,["H7219"]],[37,39,["H8248"]],[39,40,["H3588"]],[40,43,["H2398"]],[43,46,["H3068"]]]},{"k":19168,"v":[[0,2,["H6960"]],[2,4,["H7965"]],[4,6,["H369"]],[6,7,["H2896"]],[7,12,["H6256"]],[12,14,["H4832"]],[14,16,["H2009"]],[16,17,["H1205"]]]},{"k":19169,"v":[[0,2,["H5170"]],[2,5,["H5483"]],[5,7,["H8085"]],[7,9,["H4480","H1835"]],[9,11,["H3605"]],[11,12,["H776"]],[12,13,["H7493"]],[13,16,["H4480","H6963"]],[16,19,["H4684"]],[19,23,["H47"]],[23,27,["H935"]],[27,30,["H398"]],[30,32,["H776"]],[32,34,["H4393"]],[34,40,["H5892"]],[40,44,["H3427"]],[44,45,[]]]},{"k":19170,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,5,["H7971"]],[5,6,["H5175"]],[6,7,["H6848"]],[7,10,["H834"]],[10,12,["H369"]],[12,14,["H3908"]],[14,18,["H5391"]],[18,20,["H5002"]],[20,22,["H3068"]]]},{"k":19171,"v":[[0,4,["H4010"]],[4,6,["H5921"]],[6,7,["H3015"]],[7,9,["H3820"]],[9,11,["H1742"]],[11,12,["H5921"]],[12,13,[]]]},{"k":19172,"v":[[0,1,["H2009"]],[1,3,["H6963"]],[3,6,["H7775"]],[6,9,["H1323"]],[9,12,["H5971"]],[12,20,["H4801"]],[20,21,["H4480","H776"]],[21,23,["H369"]],[23,25,["H3068"]],[25,27,["H6726"]],[27,29,["H369"]],[29,31,["H4428"]],[31,34,["H4069"]],[34,40,["H3707"]],[40,44,["H6456"]],[44,47,["H5236"]],[47,48,["H1892"]]]},{"k":19173,"v":[[0,2,["H7105"]],[2,4,["H5674"]],[4,6,["H7019"]],[6,8,["H3615"]],[8,10,["H587"]],[10,12,["H3808"]],[12,13,["H3467"]]]},{"k":19174,"v":[[0,1,["H5921"]],[1,3,["H7667"]],[3,6,["H1323"]],[6,9,["H5971"]],[9,12,["H7665"]],[12,15,["H6937"]],[15,16,["H8047"]],[16,19,["H2388"]],[19,21,[]]]},{"k":19175,"v":[[0,3,["H369"]],[3,4,["H6875"]],[4,6,["H1568"]],[6,9,["H369"]],[9,10,["H7495"]],[10,11,["H8033"]],[11,12,["H4069"]],[12,13,["H3588"]],[13,15,["H3808"]],[15,17,["H724"]],[17,20,["H1323"]],[20,23,["H5971"]],[23,24,["H5927"]]]},{"k":19176,"v":[[0,2,["H4310"]],[2,4,["H7218"]],[4,5,["H5414"]],[5,6,["H4325"]],[6,9,["H5869"]],[9,11,["H4726"]],[11,13,["H1832"]],[13,17,["H1058"]],[17,18,["H3119"]],[18,20,["H3915"]],[20,21,["H5921"]],[21,23,["H2491"]],[23,26,["H1323"]],[26,29,["H5971"]]]},{"k":19177,"v":[[0,4,["H4310","H5414"]],[4,7,["H4057"]],[7,10,["H4411"]],[10,13,["H732"]],[13,17,["H5800","(H853)"]],[17,19,["H5971"]],[19,21,["H1980"]],[21,22,["H4480","H854"]],[22,24,["H3588"]],[24,27,["H3605"]],[27,28,["H5003"]],[28,30,["H6116"]],[30,33,["H898"]]]},{"k":19178,"v":[[0,3,["H1869","(H853)"]],[3,5,["H3956"]],[5,8,["H7198"]],[8,10,["H8267"]],[10,14,["H3808"]],[14,15,["H1396"]],[15,18,["H530"]],[18,21,["H776"]],[21,22,["H3588"]],[22,24,["H3318"]],[24,26,["H4480","H7451"]],[26,27,["H413"]],[27,28,["H7451"]],[28,31,["H3045"]],[31,32,["H3808"]],[32,34,["H5002"]],[34,36,["H3068"]]]},{"k":19179,"v":[[0,3,["H8104"]],[3,5,["H376"]],[5,8,["H4480","H7453"]],[8,10,["H982"]],[10,12,["H408"]],[12,13,["H5921"]],[13,14,["H3605"]],[14,15,["H251"]],[15,16,["H3588"]],[16,17,["H3605"]],[17,18,["H251"]],[18,21,["H6117","H6117"]],[21,23,["H3605"]],[23,24,["H7453"]],[24,26,["H1980"]],[26,28,["H7400"]]]},{"k":19180,"v":[[0,4,["H2048"]],[4,6,["H376"]],[6,8,["H7453"]],[8,11,["H3808"]],[11,12,["H1696"]],[12,14,["H571"]],[14,17,["H3925"]],[17,19,["H3956"]],[19,21,["H1696"]],[21,22,["H8267"]],[22,25,["H3811"]],[25,28,["H5753"]]]},{"k":19181,"v":[[0,2,["H3427"]],[2,6,["H8432"]],[6,8,["H4820"]],[8,10,["H4820"]],[10,12,["H3985"]],[12,14,["H3045"]],[14,16,["H5002"]],[16,18,["H3068"]]]},{"k":19182,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,8,["H2009"]],[8,11,["H6884"]],[11,14,["H974"]],[14,16,["H3588"]],[16,17,["H349"]],[17,20,["H6213"]],[20,21,["H4480","H6440"]],[21,23,["H1323"]],[23,26,["H5971"]]]},{"k":19183,"v":[[0,2,["H3956"]],[2,6,["H2671"]],[6,8,["H7819"]],[8,10,["H1696"]],[10,11,["H4820"]],[11,13,["H1696"]],[13,14,["H7965"]],[14,15,["H854"]],[15,17,["H7453"]],[17,20,["H6310"]],[20,23,["H7130"]],[23,25,["H7760"]],[25,27,["H696"]]]},{"k":19184,"v":[[0,3,["H3808"]],[3,4,["H6485"]],[4,6,["H5921"]],[6,7,["H428"]],[7,9,["H5002"]],[9,11,["H3068"]],[11,13,["H3808"]],[13,15,["H5315"]],[15,17,["H5358"]],[17,19,["H834"]],[19,21,["H1471"]],[21,23,["H2088"]]]},{"k":19185,"v":[[0,1,["H5921"]],[1,3,["H2022"]],[3,7,["H5375"]],[7,9,["H1065"]],[9,11,["H5092"]],[11,13,["H5921"]],[13,15,["H4999"]],[15,18,["H4057"]],[18,20,["H7015"]],[20,21,["H3588"]],[21,25,["H3341"]],[25,28,["H4480","H1097","H376"]],[28,31,["H5674"]],[31,33,["H3808"]],[33,36,["H8085"]],[36,38,["H6963"]],[38,41,["H4735"]],[41,44,["H4480","H5775"]],[44,47,["H8064"]],[47,50,["H929"]],[50,52,["H5074"]],[52,55,["H1980"]]]},{"k":19186,"v":[[0,4,["H5414","(H853)"]],[4,5,["H3389"]],[5,6,["H1530"]],[6,9,["H4583"]],[9,11,["H8577"]],[11,15,["H5414"]],[15,17,["H5892"]],[17,19,["H3063"]],[19,20,["H8077"]],[20,21,["H4480","H1097"]],[21,23,["H3427"]]]},{"k":19187,"v":[[0,1,["H4310"]],[1,4,["H2450"]],[4,5,["H376"]],[5,8,["H995","(H853)"]],[8,9,["H2063"]],[9,14,["H413"]],[14,17,["H6310"]],[17,20,["H3068"]],[20,22,["H1696"]],[22,26,["H5046"]],[26,28,["H5921"]],[28,29,["H4100"]],[29,31,["H776"]],[31,32,["H6"]],[32,36,["H3341"]],[36,39,["H4057"]],[39,41,["H4480","H1097"]],[41,43,["H5674"]]]},{"k":19188,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H5921"]],[5,8,["H5800","(H853)"]],[8,10,["H8451"]],[10,11,["H834"]],[11,13,["H5414"]],[13,14,["H6440"]],[14,18,["H3808"]],[18,19,["H8085"]],[19,21,["H6963"]],[21,22,["H3808"]],[22,23,["H1980"]],[23,24,[]]]},{"k":19189,"v":[[0,3,["H1980"]],[3,4,["H310"]],[4,6,["H8307"]],[6,10,["H3820"]],[10,12,["H310"]],[12,13,["H1168"]],[13,14,["H834"]],[14,16,["H1"]],[16,17,["H3925"]],[17,18,[]]]},{"k":19190,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,12,["H2009"]],[12,15,["H398"]],[15,17,["(H853)"]],[17,18,["H2088"]],[18,19,["H5971"]],[19,21,["H3939"]],[21,25,["H4325"]],[25,27,["H7219"]],[27,29,["H8248"]]]},{"k":19191,"v":[[0,3,["H6327"]],[3,8,["H1471"]],[8,9,["H834"]],[9,10,["H3808"]],[10,11,["H1992"]],[11,14,["H1"]],[14,16,["H3045"]],[16,20,["H7971","(H853)"]],[20,22,["H2719"]],[22,23,["H310"]],[23,25,["H5704"]],[25,28,["H3615"]],[28,29,[]]]},{"k":19192,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H995"]],[7,10,["H7121"]],[10,14,["H6969"]],[14,18,["H935"]],[18,20,["H7971"]],[20,21,["H413"]],[21,22,["H2450"]],[22,27,["H935"]]]},{"k":19193,"v":[[0,5,["H4116"]],[5,8,["H5375"]],[8,10,["H5092"]],[10,11,["H5921"]],[11,15,["H5869"]],[15,18,["H3381"]],[18,20,["H1832"]],[20,23,["H6079"]],[23,25,["H5140"]],[25,27,["H4325"]]]},{"k":19194,"v":[[0,1,["H3588"]],[1,3,["H6963"]],[3,5,["H5092"]],[5,7,["H8085"]],[7,10,["H4480","H6726"]],[10,11,["H349"]],[11,14,["H7703"]],[14,17,["H3966"]],[17,18,["H954"]],[18,19,["H3588"]],[19,22,["H5800"]],[22,24,["H776"]],[24,25,["H3588"]],[25,27,["H4908"]],[27,31,["H7993"]]]},{"k":19195,"v":[[0,1,["H3588"]],[1,2,["H8085"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,10,["H802"]],[10,14,["H241"]],[14,15,["H3947"]],[15,17,["H1697"]],[17,20,["H6310"]],[20,22,["H3925"]],[22,24,["H1323"]],[24,25,["H5092"]],[25,28,["H802"]],[28,30,["H7468"]],[30,31,["H7015"]]]},{"k":19196,"v":[[0,1,["H3588"]],[1,2,["H4194"]],[2,5,["H5927"]],[5,8,["H2474"]],[8,11,["H935"]],[11,14,["H759"]],[14,17,["H3772"]],[17,19,["H5768"]],[19,21,["H4480","H2351"]],[21,25,["H970"]],[25,28,["H4480","H7339"]]]},{"k":19197,"v":[[0,1,["H1696"]],[1,2,["H3541"]],[2,3,["H5002"]],[3,5,["H3068"]],[5,8,["H5038"]],[8,10,["H120"]],[10,12,["H5307"]],[12,14,["H1828"]],[14,15,["H5921"]],[15,17,["H6440"]],[17,18,["H7704"]],[18,22,["H5995"]],[22,23,["H4480","H310"]],[23,25,["H7114"]],[25,27,["H369"]],[27,29,["H622"]],[29,30,[]]]},{"k":19198,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H408"]],[6,8,["H2450"]],[8,10,["H1984"]],[10,13,["H2451"]],[13,14,["H408"]],[14,17,["H1368"]],[17,19,["H1984"]],[19,22,["H1369"]],[22,24,["H408"]],[24,26,["H6223"]],[26,28,["H1984"]],[28,31,["H6239"]]]},{"k":19199,"v":[[0,1,["H3588","H518"]],[1,5,["H1984"]],[5,6,["H1984"]],[6,8,["H2063"]],[8,11,["H7919"]],[11,13,["H3045"]],[13,15,["H3588"]],[15,16,["H589"]],[16,19,["H3068"]],[19,21,["H6213"]],[21,22,["H2617"]],[22,23,["H4941"]],[23,25,["H6666"]],[25,28,["H776"]],[28,29,["H3588"]],[29,31,["H428"]],[31,34,["H2654"]],[34,35,["H5002"]],[35,37,["H3068"]]]},{"k":19200,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,11,["H6485","H5921"]],[11,12,["H3605"]],[12,16,["H4135"]],[16,19,["H6190"]]]},{"k":19201,"v":[[0,1,["H4714"]],[1,3,["H3063"]],[3,5,["H123"]],[5,8,["H1121"]],[8,10,["H5983"]],[10,12,["H4124"]],[12,14,["H3605"]],[14,19,["H7112"]],[19,20,["H6285"]],[20,22,["H3427"]],[22,25,["H4057"]],[25,26,["H3588"]],[26,27,["H3605"]],[27,29,["H1471"]],[29,31,["H6189"]],[31,33,["H3605"]],[33,35,["H1004"]],[35,37,["H3478"]],[37,39,["H6189"]],[39,42,["H3820"]]]},{"k":19202,"v":[[0,1,["H8085"]],[1,2,["(H853)"]],[2,4,["H1697"]],[4,5,["H834"]],[5,7,["H3068"]],[7,8,["H1696"]],[8,9,["H5921"]],[9,12,["H1004"]],[12,14,["H3478"]]]},{"k":19203,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H3925"]],[5,6,["H408"]],[6,8,["H1870"]],[8,11,["H1471"]],[11,14,["H408"]],[14,15,["H2865"]],[15,18,["H4480","H226"]],[18,20,["H8064"]],[20,21,["H3588"]],[21,23,["H1471"]],[23,25,["H2865"]],[25,27,["H4480","H1992"]]]},{"k":19204,"v":[[0,1,["H3588"]],[1,3,["H2708"]],[3,6,["H5971"]],[6,8,["H1892"]],[8,9,["H3588"]],[9,11,["H3772"]],[11,13,["H6086"]],[13,17,["H4480","H3293"]],[17,19,["H4639"]],[19,22,["H3027"]],[22,25,["H2796"]],[25,28,["H4621"]]]},{"k":19205,"v":[[0,2,["H3302"]],[2,5,["H3701"]],[5,8,["H2091"]],[8,10,["H2388"]],[10,13,["H4548"]],[13,16,["H4717"]],[16,19,["H6328"]],[19,20,["H3808"]]]},{"k":19206,"v":[[0,1,["H1992"]],[1,3,["H4749"]],[3,7,["H8560"]],[7,9,["H1696"]],[9,10,["H3808"]],[10,15,["H5375","H5375"]],[15,16,["H3588"]],[16,18,["H3808"]],[18,19,["H6805"]],[19,21,["H408"]],[21,22,["H3372"]],[22,23,["H4480"]],[23,25,["H3588"]],[25,27,["H3808"]],[27,29,["H7489"]],[29,30,["H369"]],[30,31,["H1571"]],[31,34,["H854"]],[34,38,["H3190"]]]},{"k":19207,"v":[[0,5,["H4480","H369"]],[5,8,["H3644"]],[8,10,["H3068"]],[10,11,["H859"]],[11,13,["H1419"]],[13,16,["H8034"]],[16,18,["H1419"]],[18,20,["H1369"]]]},{"k":19208,"v":[[0,1,["H4310"]],[1,3,["H3808"]],[3,4,["H3372"]],[4,7,["H4428"]],[7,9,["H1471"]],[9,10,["H3588"]],[10,15,["H2969"]],[15,16,["H3588"]],[16,19,["H3605"]],[19,21,["H2450"]],[21,25,["H1471"]],[25,28,["H3605"]],[28,30,["H4438"]],[30,33,["H4480","H369"]],[33,36,["H3644"]]]},{"k":19209,"v":[[0,4,["H259"]],[4,5,["H1197"]],[5,7,["H3688"]],[7,9,["H6086"]],[9,12,["H4148"]],[12,14,["H1892"]]]},{"k":19210,"v":[[0,1,["H3701"]],[1,4,["H7554"]],[4,6,["H935"]],[6,8,["H4480","H8659"]],[8,10,["H2091"]],[10,12,["H4480","H210"]],[12,14,["H4639"]],[14,17,["H2796"]],[17,21,["H3027"]],[21,24,["H6884"]],[24,25,["H8504"]],[25,27,["H713"]],[27,30,["H3830"]],[30,33,["H3605"]],[33,35,["H4639"]],[35,37,["H2450"]],[37,38,[]]]},{"k":19211,"v":[[0,3,["H3068"]],[3,6,["H571"]],[6,7,["H430"]],[7,8,["H1931"]],[8,11,["H2416"]],[11,12,["H430"]],[12,15,["H5769"]],[15,16,["H4428"]],[16,19,["H4480","H7110"]],[19,21,["H776"]],[21,23,["H7493"]],[23,26,["H1471"]],[26,28,["H3808"]],[28,32,["H3557"]],[32,34,["H2195"]]]},{"k":19212,"v":[[0,1,["H1836"]],[1,4,["H560"]],[4,8,["H426"]],[8,9,["H1768"]],[9,11,["H3809"]],[11,12,["H5648"]],[12,14,["H8065"]],[14,17,["H778"]],[17,21,["H7"]],[21,24,["H4481","H772"]],[24,26,["H4481"]],[26,27,["H8460"]],[27,28,["H429"]],[28,29,["H8065"]]]},{"k":19213,"v":[[0,3,["H6213"]],[3,5,["H776"]],[5,8,["H3581"]],[8,11,["H3559"]],[11,13,["H8398"]],[13,16,["H2451"]],[16,20,["H5186"]],[20,22,["H8064"]],[22,25,["H8394"]]]},{"k":19214,"v":[[0,3,["H5414"]],[3,5,["H6963"]],[5,9,["H1995"]],[9,11,["H4325"]],[11,14,["H8064"]],[14,19,["H5387"]],[19,21,["H5927"]],[21,24,["H4480","H7097"]],[24,27,["H776"]],[27,29,["H6213"]],[29,30,["H1300"]],[30,32,["H4306"]],[32,35,["H3318"]],[35,37,["H7307"]],[37,41,["H4480","H214"]]]},{"k":19215,"v":[[0,1,["H3605"]],[1,2,["H120"]],[2,4,["H1197"]],[4,7,["H4480","H1847"]],[7,8,["H3605"]],[8,9,["H6884"]],[9,11,["H3001"]],[11,15,["H4480","H6459"]],[15,16,["H3588"]],[16,19,["H5262"]],[19,21,["H8267"]],[21,25,["H3808"]],[25,26,["H7307"]],[26,28,[]]]},{"k":19216,"v":[[0,1,["H1992"]],[1,3,["H1892"]],[3,6,["H4639"]],[6,8,["H8595"]],[8,11,["H6256"]],[11,14,["H6486"]],[14,17,["H6"]]]},{"k":19217,"v":[[0,2,["H2506"]],[2,4,["H3290"]],[4,6,["H3808"]],[6,8,["H428"]],[8,9,["H3588"]],[9,10,["H1931"]],[10,13,["H3335"]],[13,15,["H3605"]],[15,18,["H3478"]],[18,21,["H7626"]],[21,24,["H5159"]],[24,26,["H3068"]],[26,28,["H6635"]],[28,31,["H8034"]]]},{"k":19218,"v":[[0,2,["H622"]],[2,4,["H3666"]],[4,8,["H4480","H776"]],[8,10,["H3427"]],[10,13,["H4693"]]]},{"k":19219,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,10,["H7049","(H853)"]],[10,12,["H3427"]],[12,15,["H776"]],[15,17,["H2063"]],[17,18,["H6471"]],[18,21,["H6887"]],[21,23,["H4616"]],[23,26,["H4672"]],[26,28,[]]]},{"k":19220,"v":[[0,1,["H188"]],[1,4,["H5921"]],[4,6,["H7667"]],[6,8,["H4347"]],[8,10,["H2470"]],[10,12,["H589"]],[12,13,["H559"]],[13,14,["H389"]],[14,15,["H2088"]],[15,18,["H2483"]],[18,22,["H5375"]],[22,23,[]]]},{"k":19221,"v":[[0,2,["H168"]],[2,4,["H7703"]],[4,6,["H3605"]],[6,8,["H4340"]],[8,10,["H5423"]],[10,12,["H1121"]],[12,15,["H3318"]],[15,21,["H369"]],[21,24,["H369"]],[24,27,["H5186"]],[27,29,["H168"]],[29,31,["H5750"]],[31,35,["H6965"]],[35,37,["H3407"]]]},{"k":19222,"v":[[0,1,["H3588"]],[1,3,["H7462"]],[3,6,["H1197"]],[6,9,["H3808"]],[9,10,["H1875"]],[10,12,["H3068"]],[12,13,["H5921","H3651"]],[13,16,["H3808"]],[16,17,["H7919"]],[17,19,["H3605"]],[19,21,["H4830"]],[21,24,["H6327"]]]},{"k":19223,"v":[[0,1,["H2009"]],[1,3,["H6963"]],[3,6,["H8052"]],[6,8,["H935"]],[8,11,["H1419"]],[11,12,["H7494"]],[12,17,["H4480","H776","H6828"]],[17,19,["H7760","(H853)"]],[19,21,["H5892"]],[21,23,["H3063"]],[23,24,["H8077"]],[24,27,["H4583"]],[27,29,["H8577"]]]},{"k":19224,"v":[[0,2,["H3068"]],[2,4,["H3045"]],[4,5,["H3588"]],[5,7,["H1870"]],[7,9,["H120"]],[9,11,["H3808"]],[11,16,["H3808"]],[16,18,["H376"]],[18,20,["H1980"]],[20,22,["H3559","(H853)"]],[22,24,["H6806"]]]},{"k":19225,"v":[[0,2,["H3068"]],[2,3,["H3256"]],[3,6,["H389"]],[6,7,["H4941"]],[7,8,["H408"]],[8,11,["H639"]],[11,12,["H6435"]],[12,17,["H4591"]]]},{"k":19226,"v":[[0,2,["H8210"]],[2,4,["H2534"]],[4,5,["H5921"]],[5,7,["H1471"]],[7,8,["H834"]],[8,9,["H3045"]],[9,11,["H3808"]],[11,13,["H5921"]],[13,15,["H4940"]],[15,16,["H834"]],[16,17,["H7121"]],[17,18,["H3808"]],[18,21,["H8034"]],[21,22,["H3588"]],[22,26,["H398","(H853)"]],[26,27,["H3290"]],[27,29,["H398"]],[29,32,["H3615"]],[32,38,["H5116"]],[38,39,["H8074"]]]},{"k":19227,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H413"]],[5,6,["H3414"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,10,["H559"]]]},{"k":19228,"v":[[0,1,["H8085"]],[1,2,["(H853)"]],[2,4,["H1697"]],[4,6,["H2063"]],[6,7,["H1285"]],[7,9,["H1696"]],[9,10,["H413"]],[10,12,["H376"]],[12,14,["H3063"]],[14,16,["H5921"]],[16,18,["H3427"]],[18,20,["H3389"]]]},{"k":19229,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,10,["H430"]],[10,12,["H3478"]],[12,13,["H779"]],[13,16,["H376"]],[16,17,["H834"]],[17,18,["H8085"]],[18,19,["H3808","(H853)"]],[19,21,["H1697"]],[21,23,["H2063"]],[23,24,["H1285"]]]},{"k":19230,"v":[[0,1,["H834"]],[1,3,["H6680","(H853)"]],[3,5,["H1"]],[5,8,["H3117"]],[8,13,["H3318","(H853)"]],[13,17,["H4480","H776"]],[17,19,["H4714"]],[19,22,["H1270"]],[22,23,["H4480","H3564"]],[23,24,["H559"]],[24,25,["H8085"]],[25,27,["H6963"]],[27,29,["H6213"]],[29,33,["H3605"]],[33,34,["H834"]],[34,36,["H6680"]],[36,41,["H1961"]],[41,43,["H5971"]],[43,45,["H595"]],[45,47,["H1961"]],[47,49,["H430"]]]},{"k":19231,"v":[[0,1,["H4616"]],[1,4,["H6965","(H853)"]],[4,6,["H7621"]],[6,7,["H834"]],[7,10,["H7650"]],[10,13,["H1"]],[13,15,["H5414"]],[15,18,["H776"]],[18,19,["H2100"]],[19,21,["H2461"]],[21,23,["H1706"]],[23,27,["H2088"]],[27,28,["H3117"]],[28,30,["H6030"]],[30,33,["H559"]],[33,36,["H543"]],[36,38,["H3068"]]]},{"k":19232,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H7121","(H853)"]],[7,8,["H3605"]],[8,9,["H428"]],[9,10,["H1697"]],[10,13,["H5892"]],[13,15,["H3063"]],[15,19,["H2351"]],[19,21,["H3389"]],[21,22,["H559"]],[22,23,["H8085"]],[23,24,["(H853)"]],[24,26,["H1697"]],[26,28,["H2063"]],[28,29,["H1285"]],[29,31,["H6213"]],[31,32,[]]]},{"k":19233,"v":[[0,1,["H3588"]],[1,4,["H5749","H5749"]],[4,7,["H1"]],[7,10,["H3117"]],[10,15,["H5927","(H853)"]],[15,19,["H4480","H776"]],[19,21,["H4714"]],[21,23,["H5704"]],[23,24,["H2088"]],[24,25,["H3117"]],[25,27,["H7925"]],[27,29,["H5749"]],[29,30,["H559"]],[30,31,["H8085"]],[31,33,["H6963"]]]},{"k":19234,"v":[[0,3,["H8085"]],[3,4,["H3808"]],[4,5,["H3808"]],[5,6,["H5186","(H853)"]],[6,8,["H241"]],[8,10,["H1980"]],[10,12,["H376"]],[12,15,["H8307"]],[15,18,["H7451"]],[18,19,["H3820"]],[19,23,["H935"]],[23,24,["H5921"]],[24,25,["(H853)"]],[25,26,["H3605"]],[26,28,["H1697"]],[28,30,["H2063"]],[30,31,["H1285"]],[31,32,["H834"]],[32,34,["H6680"]],[34,37,["H6213"]],[37,40,["H6213"]],[40,42,["H3808"]]]},{"k":19235,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,8,["H7195"]],[8,10,["H4672"]],[10,13,["H376"]],[13,15,["H3063"]],[15,19,["H3427"]],[19,21,["H3389"]]]},{"k":19236,"v":[[0,4,["H7725"]],[4,5,["H5921"]],[5,7,["H5771"]],[7,10,["H7223","H1"]],[10,11,["H834"]],[11,12,["H3985"]],[12,14,["H8085","(H853)"]],[14,16,["H1697"]],[16,18,["H1992"]],[18,19,["H1980"]],[19,20,["H310"]],[20,21,["H312"]],[21,22,["H430"]],[22,24,["H5647"]],[24,27,["H1004"]],[27,29,["H3478"]],[29,32,["H1004"]],[32,34,["H3063"]],[34,36,["H6565","(H853)"]],[36,38,["H1285"]],[38,39,["H834"]],[39,41,["H3772"]],[41,42,["H854"]],[42,44,["H1"]]]},{"k":19237,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,9,["H935"]],[9,10,["H7451"]],[10,11,["H413"]],[11,13,["H834"]],[13,16,["H3808"]],[16,18,["H3201"]],[18,20,["H3318","(H4480)"]],[20,25,["H2199"]],[25,26,["H413"]],[26,30,["H3808"]],[30,31,["H8085"]],[31,32,["H413"]],[32,33,[]]]},{"k":19238,"v":[[0,4,["H5892"]],[4,6,["H3063"]],[6,8,["H3427"]],[8,10,["H3389"]],[10,11,["H1980"]],[11,13,["H2199"]],[13,14,["H413"]],[14,16,["H430"]],[16,18,["H834"]],[18,19,["H1992"]],[19,21,["H6999"]],[21,25,["H3808"]],[25,29,["H3467","H3467"]],[29,32,["H6256"]],[32,35,["H7451"]]]},{"k":19239,"v":[[0,1,["H3588"]],[1,5,["H4557"]],[5,8,["H5892"]],[8,9,["H1961"]],[9,11,["H430"]],[11,13,["H3063"]],[13,18,["H4557"]],[18,21,["H2351"]],[21,23,["H3389"]],[23,27,["H7760"]],[27,28,["H4196"]],[28,32,["H1322"]],[32,34,["H4196"]],[34,37,["H6999"]],[37,39,["H1168"]]]},{"k":19240,"v":[[0,2,["H6419"]],[2,3,["H408"]],[3,4,["H859"]],[4,5,["H1157"]],[5,6,["H2088"]],[6,7,["H5971"]],[7,8,["H408"]],[8,10,["H5375"]],[10,12,["H7440"]],[12,14,["H8605"]],[14,15,["H1157"]],[15,17,["H3588"]],[17,18,["H589"]],[18,20,["H369"]],[20,21,["H8085"]],[21,25,["H6256"]],[25,28,["H7121"]],[28,29,["H413"]],[29,31,["H1157"]],[31,33,["H7451"]]]},{"k":19241,"v":[[0,1,["H4100"]],[1,4,["H3039"]],[4,9,["H1004"]],[9,13,["H6213"]],[13,14,["H4209"]],[14,16,["H7227"]],[16,19,["H6944"]],[19,20,["H1320"]],[20,22,["H5674"]],[22,23,["H4480","H5921"]],[23,25,["H3588"]],[25,28,["H7451"]],[28,29,["H227"]],[29,31,["H5937"]]]},{"k":19242,"v":[[0,2,["H3068"]],[2,3,["H7121"]],[3,5,["H8034"]],[5,7,["H7488"]],[7,9,["H2132"]],[9,10,["H3303"]],[10,13,["H8389"]],[13,14,["H6529"]],[14,17,["H6963"]],[17,20,["H1419"]],[20,21,["H1999"]],[21,24,["H3341"]],[24,25,["H784"]],[25,26,["H5921"]],[26,30,["H1808"]],[30,34,["H7489"]]]},{"k":19243,"v":[[0,3,["H3068"]],[3,5,["H6635"]],[5,7,["H5193"]],[7,10,["H1696"]],[10,11,["H7451"]],[11,12,["H5921"]],[12,14,["H1558"]],[14,16,["H7451"]],[16,19,["H1004"]],[19,21,["H3478"]],[21,25,["H1004"]],[25,27,["H3063"]],[27,28,["H834"]],[28,31,["H6213"]],[31,38,["H3707"]],[38,41,["H6999"]],[41,43,["H1168"]]]},{"k":19244,"v":[[0,3,["H3068"]],[3,7,["H3045"]],[7,12,["H3045"]],[12,14,["H227"]],[14,16,["H7200"]],[16,19,["H4611"]]]},{"k":19245,"v":[[0,2,["H589"]],[2,6,["H3532"]],[6,9,["H441"]],[9,12,["H2986"]],[12,15,["H2873"]],[15,18,["H3045"]],[18,19,["H3808"]],[19,20,["H3588"]],[20,23,["H2803"]],[23,24,["H4284"]],[24,25,["H5921"]],[25,30,["H7843"]],[30,32,["H6086"]],[32,35,["H3899"]],[35,42,["H3772"]],[42,45,["H4480","H776"]],[45,48,["H2416"]],[48,51,["H8034"]],[51,54,["H3808"]],[54,55,["H5750"]],[55,56,["H2142"]]]},{"k":19246,"v":[[0,3,["H3068"]],[3,5,["H6635"]],[5,7,["H8199"]],[7,8,["H6664"]],[8,10,["H974"]],[10,12,["H3629"]],[12,15,["H3820"]],[15,18,["H7200"]],[18,20,["H5360"]],[20,21,["H4480"]],[21,23,["H3588"]],[23,24,["H413"]],[24,28,["H1540","(H853)"]],[28,30,["H7379"]]]},{"k":19247,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H5921"]],[6,8,["H376"]],[8,10,["H6068"]],[10,12,["H1245","(H853)"]],[12,14,["H5315"]],[14,15,["H559"]],[15,16,["H5012"]],[16,17,["H3808"]],[17,20,["H8034"]],[20,23,["H3068"]],[23,26,["H4191"]],[26,27,["H3808"]],[27,30,["H3027"]]]},{"k":19248,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,8,["H2009"]],[8,11,["H6485","H5921"]],[11,15,["H970"]],[15,17,["H4191"]],[17,20,["H2719"]],[20,22,["H1121"]],[22,25,["H1323"]],[25,27,["H4191"]],[27,29,["H7458"]]]},{"k":19249,"v":[[0,4,["H1961"]],[4,5,["H3808"]],[5,6,["H7611"]],[6,9,["H3588"]],[9,12,["H935"]],[12,13,["H7451"]],[13,14,["H413"]],[14,16,["H376"]],[16,18,["H6068"]],[18,21,["H8141"]],[21,24,["H6486"]]]},{"k":19250,"v":[[0,1,["H6662"]],[1,3,["H859"]],[3,5,["H3068"]],[5,6,["H3588"]],[6,8,["H7378"]],[8,9,["H413"]],[9,11,["H389"]],[11,14,["H1696"]],[14,15,["H854"]],[15,19,["H4941"]],[19,20,["H4069"]],[20,23,["H1870"]],[23,26,["H7563"]],[26,27,["H6743"]],[27,30,["H3605"]],[30,32,["H7951"]],[32,36,["H898","H899"]]]},{"k":19251,"v":[[0,3,["H5193"]],[3,5,["H1571"]],[5,9,["H8327"]],[9,11,["H1980"]],[11,12,["H1571"]],[12,15,["H6213"]],[15,16,["H6529"]],[16,17,["H859"]],[17,19,["H7138"]],[19,22,["H6310"]],[22,24,["H7350"]],[24,27,["H4480","H3629"]]]},{"k":19252,"v":[[0,2,["H859"]],[2,4,["H3068"]],[4,5,["H3045"]],[5,9,["H7200"]],[9,12,["H974"]],[12,14,["H3820"]],[14,15,["H854"]],[15,19,["H5423"]],[19,21,["H6629"]],[21,24,["H2878"]],[24,26,["H6942"]],[26,30,["H3117"]],[30,32,["H2028"]]]},{"k":19253,"v":[[0,2,["H5704","H4970"]],[2,5,["H776"]],[5,6,["H56"]],[6,9,["H6212"]],[9,11,["H3605"]],[11,12,["H7704"]],[12,13,["H3001"]],[13,16,["H4480","H7451"]],[16,20,["H3427"]],[20,23,["H929"]],[23,25,["H5595"]],[25,28,["H5775"]],[28,29,["H3588"]],[29,31,["H559"]],[31,34,["H3808"]],[34,35,["H7200","(H853)"]],[35,38,["H319"]]]},{"k":19254,"v":[[0,1,["H3588"]],[1,4,["H7323"]],[4,5,["H854"]],[5,7,["H7273"]],[7,11,["H3811"]],[11,14,["H349"]],[14,17,["H8474"]],[17,18,["H854"]],[18,19,["H5483"]],[19,24,["H776"]],[24,26,["H7965"]],[26,28,["H859"]],[28,29,["H982"]],[29,34,["H349"]],[34,37,["H6213"]],[37,40,["H1347"]],[40,42,["H3383"]]]},{"k":19255,"v":[[0,1,["H3588"]],[1,2,["H1571"]],[2,4,["H251"]],[4,7,["H1004"]],[7,10,["H1"]],[10,11,["H1571"]],[11,12,["H1992"]],[12,15,["H898"]],[15,18,["H1571"]],[18,19,["H1992"]],[19,21,["H7121"]],[21,23,["H4392"]],[23,24,["H310"]],[24,26,["H539"]],[26,28,["H408"]],[28,29,["H3588"]],[29,31,["H1696"]],[31,33,["H2896"]],[33,34,["H413"]],[34,35,[]]]},{"k":19256,"v":[[0,3,["H5800","(H853)"]],[3,5,["H1004"]],[5,8,["H5203","(H853)"]],[8,10,["H5159"]],[10,13,["H5414","(H853)"]],[13,16,["H3033"]],[16,19,["H5315"]],[19,22,["H3709"]],[22,25,["H341"]]]},{"k":19257,"v":[[0,2,["H5159"]],[2,3,["H1961"]],[3,8,["H738"]],[8,11,["H3293"]],[11,14,["H5414","H6963"]],[14,15,["H5921"]],[15,17,["H5921","H3651"]],[17,20,["H8130"]],[20,21,[]]]},{"k":19258,"v":[[0,2,["H5159"]],[2,8,["H6641"]],[8,9,["H5861"]],[9,11,["H5861"]],[11,13,["H5439"]],[13,15,["H5921"]],[15,17,["H1980"]],[17,19,["H622"]],[19,20,["H3605"]],[20,22,["H2416"]],[22,25,["H7704"]],[25,26,["H857"]],[26,28,["H402"]]]},{"k":19259,"v":[[0,1,["H7227"]],[1,2,["H7462"]],[2,4,["H7843"]],[4,6,["H3754"]],[6,13,["H947","(H853)","H2513"]],[13,16,["H5414","(H853)"]],[16,18,["H2532"]],[18,19,["H2513"]],[19,21,["H8077"]],[21,22,["H4057"]]]},{"k":19260,"v":[[0,3,["H7760"]],[3,5,["H8077"]],[5,8,["H8076"]],[8,10,["H56"]],[10,11,["H5921"]],[11,14,["H3605"]],[14,15,["H776"]],[15,17,["H6213"]],[17,18,["H8074"]],[18,19,["H3588"]],[19,20,["H369"]],[20,21,["H376"]],[21,22,["H7760"]],[22,24,["H5921"]],[24,25,["H3820"]]]},{"k":19261,"v":[[0,2,["H7703"]],[2,4,["H935"]],[4,5,["H5921"]],[5,6,["H3605"]],[6,8,["H8205"]],[8,11,["H4057"]],[11,12,["H3588"]],[12,14,["H2719"]],[14,17,["H3068"]],[17,19,["H398"]],[19,23,["H4480","H7097"]],[23,26,["H776"]],[26,28,["H5704"]],[28,31,["H7097"]],[31,34,["H776"]],[34,35,["H369","H3605"]],[35,36,["H1320"]],[36,39,["H7965"]]]},{"k":19262,"v":[[0,3,["H2232"]],[3,4,["H2406"]],[4,7,["H7114"]],[7,8,["H6975"]],[8,14,["H2470"]],[14,17,["H3808"]],[17,18,["H3276"]],[18,23,["H954"]],[23,26,["H4480","H8393"]],[26,30,["H4480","H2740"]],[30,31,["H639"]],[31,34,["H3068"]]]},{"k":19263,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5921"]],[5,6,["H3605"]],[6,8,["H7451"]],[8,9,["H7934"]],[9,11,["H5060"]],[11,13,["H5159"]],[13,14,["H834"]],[14,17,["(H853)"]],[17,19,["H5971","(H853)"]],[19,20,["H3478"]],[20,22,["H5157"]],[22,23,["H2009"]],[23,28,["H5428"]],[28,29,["H4480","H5921"]],[29,31,["H127"]],[31,34,["H5428"]],[34,36,["H1004"]],[36,38,["H3063"]],[38,40,["H4480","H8432"]],[40,41,[]]]},{"k":19264,"v":[[0,6,["H1961"]],[6,8,["H310"]],[8,13,["H5428","(H853)"]],[13,16,["H7725"]],[16,19,["H7355"]],[19,26,["H7725"]],[26,28,["H376"]],[28,31,["H5159"]],[31,34,["H376"]],[34,37,["H776"]]]},{"k":19265,"v":[[0,6,["H1961"]],[6,7,["H518"]],[7,11,["H3925","H3925","(H853)"]],[11,13,["H1870"]],[13,16,["H5971"]],[16,18,["H7650"]],[18,21,["H8034"]],[21,23,["H3068"]],[23,24,["H2416"]],[24,25,["H834"]],[25,27,["H3925","(H853)"]],[27,29,["H5971"]],[29,31,["H7650"]],[31,33,["H1168"]],[33,38,["H1129"]],[38,41,["H8432"]],[41,44,["H5971"]]]},{"k":19266,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H8085"]],[6,11,["H5428","H5428"]],[11,13,["H6","(H853)"]],[13,14,["H1931"]],[14,15,["H1471"]],[15,16,["H5002"]],[16,18,["H3068"]]]},{"k":19267,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,7,["H1980"]],[7,9,["H7069"]],[9,12,["H6593"]],[12,13,["H232"]],[13,15,["H7760"]],[15,17,["H5921"]],[17,19,["H4975"]],[19,21,["H935"]],[21,23,["H3808"]],[23,25,["H4325"]]]},{"k":19268,"v":[[0,3,["H7069","(H853)"]],[3,5,["H232"]],[5,9,["H1697"]],[9,12,["H3068"]],[12,14,["H7760"]],[14,16,["H5921"]],[16,18,["H4975"]]]},{"k":19269,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,12,["H8145"]],[12,13,["H559"]]]},{"k":19270,"v":[[0,1,["H3947","(H853)"]],[1,3,["H232"]],[3,4,["H834"]],[4,7,["H7069"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H4975"]],[12,14,["H6965"]],[14,15,["H1980"]],[15,17,["H6578"]],[17,19,["H2934"]],[19,21,["H8033"]],[21,24,["H5357"]],[24,27,["H5553"]]]},{"k":19271,"v":[[0,3,["H1980"]],[3,5,["H2934"]],[5,8,["H6578"]],[8,9,["H834"]],[9,11,["H3068"]],[11,12,["H6680"]],[12,13,[]]]},{"k":19272,"v":[[0,5,["H1961"]],[5,6,["H4480","H7093"]],[6,7,["H7227"]],[7,8,["H3117"]],[8,11,["H3068"]],[11,12,["H559"]],[12,13,["H413"]],[13,15,["H6965"]],[15,16,["H1980"]],[16,18,["H6578"]],[18,20,["H3947","(H853)"]],[20,22,["H232"]],[22,24,["H4480","H8033"]],[24,25,["H834"]],[25,27,["H6680"]],[27,30,["H2934"]],[30,31,["H8033"]]]},{"k":19273,"v":[[0,3,["H1980"]],[3,5,["H6578"]],[5,7,["H2658"]],[7,9,["H3947","(H853)"]],[9,11,["H232"]],[11,12,["H4480"]],[12,14,["H4725"]],[14,15,["H834","H8033"]],[15,18,["H2934"]],[18,21,["H2009"]],[21,23,["H232"]],[23,25,["H7843"]],[25,28,["H6743"]],[28,30,["H3808","H3605"]]]},{"k":19274,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":19275,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,7,["H3602"]],[7,10,["H7843"]],[10,12,["H1347"]],[12,14,["H3063"]],[14,17,["H7227"]],[17,18,["H1347"]],[18,20,["H3389"]]]},{"k":19276,"v":[[0,1,["H2088"]],[1,2,["H7451"]],[2,3,["H5971"]],[3,5,["H3987"]],[5,7,["H8085","(H853)"]],[7,9,["H1697"]],[9,11,["H1980"]],[11,14,["H8307"]],[14,17,["H3820"]],[17,19,["H1980"]],[19,20,["H310"]],[20,21,["H312"]],[21,22,["H430"]],[22,24,["H5647"]],[24,28,["H7812"]],[28,32,["H1961"]],[32,34,["H2088"]],[34,35,["H232"]],[35,36,["H834"]],[36,38,["H6743"]],[38,40,["H3808","H3605"]]]},{"k":19277,"v":[[0,1,["H3588"]],[1,2,["H834"]],[2,4,["H232"]],[4,5,["H1692"]],[5,6,["H413"]],[6,8,["H4975"]],[8,11,["H376"]],[11,12,["H3651"]],[12,17,["H1692"]],[17,18,["H413"]],[18,19,["(H853)"]],[19,21,["H3605"]],[21,22,["H1004"]],[22,24,["H3478"]],[24,27,["H3605"]],[27,28,["H1004"]],[28,30,["H3063"]],[30,31,["H5002"]],[31,33,["H3068"]],[33,37,["H1961"]],[37,42,["H5971"]],[42,46,["H8034"]],[46,50,["H8416"]],[50,54,["H8597"]],[54,58,["H3808"]],[58,59,["H8085"]]]},{"k":19278,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,6,["(H853)"]],[6,7,["H2088"]],[7,8,["H1697"]],[8,9,["H3541"]],[9,10,["H559"]],[10,12,["H3068"]],[12,13,["H430"]],[13,15,["H3478"]],[15,16,["H3605"]],[16,17,["H5035"]],[17,20,["H4390"]],[20,22,["H3196"]],[22,26,["H559"]],[26,27,["H413"]],[27,31,["H3808"]],[31,33,["H3045","H3045"]],[33,34,["H3588"]],[34,35,["H3605"]],[35,36,["H5035"]],[36,39,["H4390"]],[39,41,["H3196"]]]},{"k":19279,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H3541"]],[7,8,["H559"]],[8,10,["H3068"]],[10,11,["H2009"]],[11,14,["H4390","(H853)"]],[14,15,["H3605"]],[15,17,["H3427"]],[17,19,["H2063"]],[19,20,["H776"]],[20,23,["H4428"]],[23,25,["H3427"]],[25,26,["H5921"]],[26,27,["H1732"]],[27,28,["H3678"]],[28,31,["H3548"]],[31,34,["H5030"]],[34,36,["H3605"]],[36,38,["H3427"]],[38,40,["H3389"]],[40,42,["H7943"]]]},{"k":19280,"v":[[0,4,["H5310"]],[4,6,["H376"]],[6,7,["H413"]],[7,8,["H251"]],[8,11,["H1"]],[11,14,["H1121"]],[14,15,["H3162"]],[15,16,["H5002"]],[16,18,["H3068"]],[18,21,["H3808"]],[21,22,["H2550"]],[22,23,["H3808"]],[23,24,["H2347"]],[24,25,["H3808"]],[25,27,["H7355"]],[27,29,["H4480","H7843"]],[29,30,[]]]},{"k":19281,"v":[[0,1,["H8085"]],[1,5,["H238"]],[5,7,["H408"]],[7,8,["H1361"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,13,["H1696"]]]},{"k":19282,"v":[[0,1,["H5414"]],[1,2,["H3519"]],[2,5,["H3068"]],[5,7,["H430"]],[7,8,["H2962"]],[8,11,["H2821"]],[11,13,["H2962"]],[13,15,["H7272"]],[15,16,["H5062"]],[16,17,["H5921"]],[17,19,["H5399"]],[19,20,["H2022"]],[20,24,["H6960"]],[24,26,["H216"]],[26,28,["H7760"]],[28,34,["H6757"]],[34,36,["H7896"]],[36,39,["H6205"]]]},{"k":19283,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H8085"]],[6,9,["H5315"]],[9,11,["H1058"]],[11,14,["H4565"]],[14,15,["H4480","H6440"]],[15,17,["H1466"]],[17,20,["H5869"]],[20,23,["H1830","H1830"]],[23,26,["H3381"]],[26,28,["H1832"]],[28,29,["H3588"]],[29,31,["H3068"]],[31,32,["H5739"]],[32,36,["H7617"]]]},{"k":19284,"v":[[0,1,["H559"]],[1,4,["H4428"]],[4,8,["H1377"]],[8,10,["H8213"]],[10,12,["H3427"]],[12,13,["H3588"]],[13,15,["H4761"]],[15,18,["H3381"]],[18,21,["H5850"]],[21,24,["H8597"]]]},{"k":19285,"v":[[0,2,["H5892"]],[2,5,["H5045"]],[5,9,["H5462"]],[9,11,["H369"]],[11,13,["H6605"]],[13,15,["H3063"]],[15,20,["H1540"]],[20,21,["H3605"]],[21,27,["H7965"]],[27,30,["H1540"]]]},{"k":19286,"v":[[0,2,["H5375"]],[2,4,["H5869"]],[4,6,["H7200"]],[6,9,["H935"]],[9,12,["H4480","H6828"]],[12,13,["H346"]],[13,16,["H5739"]],[16,19,["H5414"]],[19,22,["H8597"]],[22,23,["H6629"]]]},{"k":19287,"v":[[0,1,["H4100"]],[1,4,["H559"]],[4,5,["H3588"]],[5,8,["H6485","H5921"]],[8,11,["H859"]],[11,13,["H3925"]],[13,17,["H441"]],[17,20,["H7218"]],[20,21,["H5921"]],[21,24,["H3808"]],[24,25,["H2256"]],[25,26,["H270"]],[26,28,["H3644"]],[28,30,["H802"]],[30,32,["H3205"]]]},{"k":19288,"v":[[0,2,["H3588"]],[2,4,["H559"]],[4,7,["H3824"]],[7,8,["H4069"]],[8,9,["H7122"]],[9,11,["H428"]],[11,16,["H7230"]],[16,19,["H5771"]],[19,22,["H7757"]],[22,23,["H1540"]],[23,26,["H6119"]],[26,28,["H2554"]]]},{"k":19289,"v":[[0,3,["H3569"]],[3,4,["H2015"]],[4,6,["H5785"]],[6,9,["H5246"]],[9,11,["H2272"]],[11,13,["H3201"]],[13,14,["H859"]],[14,15,["H1571"]],[15,17,["H3190"]],[17,20,["H3928"]],[20,23,["H7489"]]]},{"k":19290,"v":[[0,4,["H6327"]],[4,8,["H7179"]],[8,11,["H5674"]],[11,14,["H7307"]],[14,17,["H4057"]]]},{"k":19291,"v":[[0,1,["H2088"]],[1,4,["H1486"]],[4,6,["H4490"]],[6,9,["H4055"]],[9,10,["H4480","H854"]],[10,12,["H5002"]],[12,14,["H3068"]],[14,15,["H834"]],[15,18,["H7911"]],[18,21,["H982"]],[21,23,["H8267"]]]},{"k":19292,"v":[[0,1,["H1571"]],[1,3,["H589"]],[3,4,["H2834"]],[4,6,["H7757"]],[6,7,["H5921"]],[7,9,["H6440"]],[9,12,["H7036"]],[12,14,["H7200"]]]},{"k":19293,"v":[[0,3,["H7200"]],[3,5,["H5004"]],[5,8,["H4684"]],[8,10,["H2154"]],[10,13,["H2184"]],[13,16,["H8251"]],[16,17,["H5921"]],[17,19,["H1389"]],[19,22,["H7704"]],[22,23,["H188"]],[23,27,["H3389"]],[27,30,["H3808"]],[30,33,["H2891"]],[33,34,["H310"]],[34,37,["H5750"]],[37,38,[]]]},{"k":19294,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H834"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,10,["H5921","H1697"]],[10,12,["H1226"]]]},{"k":19295,"v":[[0,1,["H3063"]],[1,2,["H56"]],[2,5,["H8179"]],[5,7,["H535"]],[7,10,["H6937"]],[10,13,["H776"]],[13,16,["H6682"]],[16,18,["H3389"]],[18,21,["H5927"]]]},{"k":19296,"v":[[0,3,["H117"]],[3,5,["H7971"]],[5,8,["H6810"]],[8,11,["H4325"]],[11,13,["H935"]],[13,14,["H5921"]],[14,16,["H1356"]],[16,18,["H4672"]],[18,19,["H3808"]],[19,20,["H4325"]],[20,22,["H7725"]],[22,25,["H3627"]],[25,26,["H7387"]],[26,29,["H954"]],[29,31,["H3637"]],[31,33,["H2645"]],[33,35,["H7218"]]]},{"k":19297,"v":[[0,1,["H5668"]],[1,3,["H127"]],[3,5,["H2865"]],[5,6,["H3588"]],[6,8,["H1961"]],[8,9,["H3808"]],[9,10,["H1653"]],[10,13,["H776"]],[13,15,["H406"]],[15,17,["H954"]],[17,19,["H2645"]],[19,21,["H7218"]]]},{"k":19298,"v":[[0,1,["H1571"]],[1,3,["H365"]],[3,5,["H3205"]],[5,8,["H7704"]],[8,10,["H5800"]],[10,12,["H3588"]],[12,14,["H1961"]],[14,15,["H3808"]],[15,16,["H1877"]]]},{"k":19299,"v":[[0,4,["H6501"]],[4,6,["H5975"]],[6,7,["H5921"]],[7,10,["H8205"]],[10,13,["H7602"]],[13,15,["H7307"]],[15,17,["H8577"]],[17,19,["H5869"]],[19,21,["H3615"]],[21,22,["H3588"]],[22,25,["H369"]],[25,26,["H6212"]]]},{"k":19300,"v":[[0,2,["H3068"]],[2,3,["H518"]],[3,5,["H5771"]],[5,6,["H6030"]],[6,9,["H6213"]],[9,15,["H4616","H8034"]],[15,16,["H3588"]],[16,18,["H4878"]],[18,20,["H7231"]],[20,23,["H2398"]],[23,25,[]]]},{"k":19301,"v":[[0,3,["H4723"]],[3,5,["H3478"]],[5,7,["H3467"]],[7,10,["H6256"]],[10,12,["H6869"]],[12,13,["H4100"]],[13,16,["H1961"]],[16,19,["H1616"]],[19,22,["H776"]],[22,27,["H732"]],[27,30,["H5186"]],[30,32,["H3885"]],[32,35,[]]]},{"k":19302,"v":[[0,1,["H4100"]],[1,4,["H1961"]],[4,7,["H376"]],[7,8,["H1724"]],[8,12,["H1368"]],[12,14,["H3201","H3808"]],[14,15,["H3467"]],[15,17,["H859"]],[17,19,["H3068"]],[19,23,["H7130"]],[23,29,["H7121"]],[29,32,["H8034"]],[32,33,["H5117"]],[33,35,["H408"]]]},{"k":19303,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H2088"]],[6,7,["H5971"]],[7,8,["H3651"]],[8,11,["H157"]],[11,13,["H5128"]],[13,16,["H3808"]],[16,17,["H2820"]],[17,19,["H7272"]],[19,22,["H3068"]],[22,24,["H3808"]],[24,25,["H7521"]],[25,29,["H6258"]],[29,30,["H2142"]],[30,32,["H5771"]],[32,34,["H6485"]],[34,36,["H2403"]]]},{"k":19304,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,7,["H6419"]],[7,8,["H408"]],[8,9,["H1157"]],[9,10,["H2088"]],[10,11,["H5971"]],[11,14,["H2896"]]]},{"k":19305,"v":[[0,1,["H3588"]],[1,3,["H6684"]],[3,6,["H369"]],[6,7,["H8085","H413"]],[7,9,["H7440"]],[9,11,["H3588"]],[11,13,["H5927"]],[13,15,["H5930"]],[15,18,["H4503"]],[18,21,["H369"]],[21,22,["H7521"]],[22,24,["H3588"]],[24,25,["H595"]],[25,27,["H3615"]],[27,31,["H2719"]],[31,35,["H7458"]],[35,39,["H1698"]]]},{"k":19306,"v":[[0,2,["H559"]],[2,4,["H162"]],[4,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,9,["H5030"]],[9,10,["H559"]],[10,15,["H3808"]],[15,16,["H7200"]],[16,18,["H2719"]],[18,19,["H3808"]],[19,22,["H1961"]],[22,23,["H7458"]],[23,24,["H3588"]],[24,27,["H5414"]],[27,29,["H571"]],[29,30,["H7965"]],[30,32,["H2088"]],[32,33,["H4725"]]]},{"k":19307,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,8,["H5030"]],[8,9,["H5012"]],[9,10,["H8267"]],[10,13,["H8034"]],[13,15,["H7971"]],[15,17,["H3808"]],[17,18,["H3808"]],[18,21,["H6680"]],[21,23,["H3808"]],[23,24,["H1696"]],[24,25,["H413"]],[25,27,["H1992"]],[27,28,["H5012"]],[28,32,["H8267"]],[32,33,["H2377"]],[33,35,["H7081"]],[35,40,["H434"]],[40,43,["H8649"]],[43,46,["H3820"]]]},{"k":19308,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H5921"]],[6,8,["H5030"]],[8,10,["H5012"]],[10,13,["H8034"]],[13,15,["H589"]],[15,16,["H7971"]],[16,18,["H3808"]],[18,20,["H1992"]],[20,21,["H559"]],[21,22,["H2719"]],[22,24,["H7458"]],[24,26,["H3808"]],[26,27,["H1961"]],[27,29,["H2063"]],[29,30,["H776"]],[30,32,["H2719"]],[32,34,["H7458"]],[34,36,["H1992"]],[36,37,["H5030"]],[37,39,["H8552"]]]},{"k":19309,"v":[[0,3,["H5971"]],[3,5,["H834"]],[5,6,["H1992"]],[6,7,["H5012"]],[7,9,["H1961"]],[9,11,["H7993"]],[11,14,["H2351"]],[14,16,["H3389"]],[16,17,["H4480","H6440"]],[17,20,["H7458"]],[20,23,["H2719"]],[23,28,["H369"]],[28,30,["H6912"]],[30,31,["H1992"]],[31,32,["H1992"]],[32,34,["H802"]],[34,37,["H1121"]],[37,40,["H1323"]],[40,44,["H8210","(H853)"]],[44,46,["H7451"]],[46,47,["H5921"]],[47,48,[]]]},{"k":19310,"v":[[0,4,["H559","(H853)"]],[4,5,["H2088"]],[5,6,["H1697"]],[6,7,["H413"]],[7,11,["H5869"]],[11,13,["H3381"]],[13,15,["H1832"]],[15,16,["H3915"]],[16,18,["H3119"]],[18,22,["H408"]],[22,23,["H1820"]],[23,24,["H3588"]],[24,26,["H1330"]],[26,27,["H1323"]],[27,30,["H5971"]],[30,32,["H7665"]],[32,35,["H1419"]],[35,36,["H7667"]],[36,39,["H3966"]],[39,40,["H2470"]],[40,41,["H4347"]]]},{"k":19311,"v":[[0,1,["H518"]],[1,4,["H3318"]],[4,7,["H7704"]],[7,9,["H2009"]],[9,11,["H2491"]],[11,14,["H2719"]],[14,16,["H518"]],[16,18,["H935"]],[18,21,["H5892"]],[21,23,["H2009"]],[23,27,["H8463"]],[27,29,["H7458"]],[29,30,["H3588"]],[30,31,["H1571"]],[31,33,["H5030"]],[33,34,["H1571"]],[34,36,["H3548"]],[36,38,["H5503"]],[38,39,["H413"]],[39,41,["H776"]],[41,44,["H3045"]],[44,45,["H3808"]]]},{"k":19312,"v":[[0,4,["H3988","H3988","(H853)"]],[4,5,["H3063"]],[5,8,["H5315"]],[8,9,["H1602"]],[9,10,["H6726"]],[10,11,["H4069"]],[11,14,["H5221"]],[14,19,["H369"]],[19,20,["H4832"]],[20,24,["H6960"]],[24,26,["H7965"]],[26,30,["H369"]],[30,31,["H2896"]],[31,35,["H6256"]],[35,37,["H4832"]],[37,39,["H2009"]],[39,40,["H1205"]]]},{"k":19313,"v":[[0,2,["H3045"]],[2,4,["H3068"]],[4,6,["H7562"]],[6,9,["H5771"]],[9,12,["H1"]],[12,13,["H3588"]],[13,16,["H2398"]],[16,18,[]]]},{"k":19314,"v":[[0,2,["H408"]],[2,3,["H5006"]],[3,8,["H4616","H8034"]],[8,10,["H408"]],[10,11,["H5034"]],[11,13,["H3678"]],[13,16,["H3519"]],[16,17,["H2142"]],[17,18,["H6565"]],[18,19,["H408"]],[19,21,["H1285"]],[21,22,["H854"]],[22,23,[]]]},{"k":19315,"v":[[0,2,["H3426"]],[2,6,["H1892"]],[6,9,["H1471"]],[9,13,["H1652"]],[13,14,["H518"]],[14,17,["H8064"]],[17,18,["H5414"]],[18,19,["H7241"]],[19,21,["H3808"]],[21,22,["H859"]],[22,23,["H1931"]],[23,25,["H3068"]],[25,27,["H430"]],[27,31,["H6960"]],[31,34,["H3588"]],[34,35,["H859"]],[35,37,["H6213","(H853)"]],[37,38,["H3605"]],[38,39,["H428"]],[39,40,[]]]},{"k":19316,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,7,["H518"]],[7,8,["H4872"]],[8,10,["H8050"]],[10,11,["H5975"]],[11,12,["H6440"]],[12,16,["H5315"]],[16,18,["H369"]],[18,20,["H413"]],[20,21,["H2088"]],[21,22,["H5971"]],[22,23,["H7971"]],[23,26,["H4480","H5921"]],[26,28,["H6440"]],[28,33,["H3318"]]]},{"k":19317,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,9,["H559"]],[9,10,["H413"]],[10,12,["H575"]],[12,16,["H3318"]],[16,20,["H559","H413"]],[20,22,["H3541"]],[22,23,["H559"]],[23,25,["H3068"]],[25,27,["H834"]],[27,30,["H4194"]],[30,32,["H4194"]],[32,35,["H834"]],[35,39,["H2719"]],[39,42,["H2719"]],[42,45,["H834"]],[45,49,["H7458"]],[49,52,["H7458"]],[52,55,["H834"]],[55,59,["H7628"]],[59,62,["H7628"]]]},{"k":19318,"v":[[0,4,["H6485"]],[4,5,["H5921"]],[5,7,["H702"]],[7,8,["H4940"]],[8,9,["H5002"]],[9,11,["H3068","(H853)"]],[11,13,["H2719"]],[13,15,["H2026"]],[15,18,["H3611"]],[18,20,["H5498"]],[20,23,["H5775"]],[23,26,["H8064"]],[26,29,["H929"]],[29,32,["H776"]],[32,34,["H398"]],[34,36,["H7843"]]]},{"k":19319,"v":[[0,4,["H5414"]],[4,8,["H2189"]],[8,10,["H3605"]],[10,11,["H4467"]],[11,14,["H776"]],[14,16,["H1558"]],[16,17,["H4519"]],[17,19,["H1121"]],[19,21,["H3169"]],[21,22,["H4428"]],[22,24,["H3063"]],[24,25,["H5921"]],[25,27,["H834"]],[27,29,["H6213"]],[29,31,["H3389"]]]},{"k":19320,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,5,["H2550"]],[5,6,["H5921"]],[6,9,["H3389"]],[9,11,["H4310"]],[11,13,["H5110"]],[13,16,["H4310"]],[16,19,["H5493"]],[19,21,["H7592"]],[21,24,["H7965"]]]},{"k":19321,"v":[[0,1,["H859"]],[1,3,["H5203"]],[3,5,["H5002"]],[5,7,["H3068"]],[7,10,["H1980"]],[10,11,["H268"]],[11,16,["H5186","(H853)"]],[16,18,["H3027"]],[18,19,["H5921"]],[19,22,["H7843"]],[22,26,["H3811"]],[26,28,["H5162"]]]},{"k":19322,"v":[[0,4,["H2219"]],[4,8,["H4214"]],[8,11,["H8179"]],[11,14,["H776"]],[14,17,["H7921"]],[17,23,["H6","(H853)"]],[23,25,["H5971"]],[25,28,["H7725"]],[28,29,["H3808"]],[29,32,["H4480","H1870"]]]},{"k":19323,"v":[[0,2,["H490"]],[2,4,["H6105"]],[4,9,["H4480","H2344"]],[9,12,["H3220"]],[12,15,["H935"]],[15,18,["H5921"]],[18,20,["H517"]],[20,24,["H970"]],[24,26,["H7703"]],[26,28,["H6672"]],[28,34,["H5307"]],[34,35,["H5921"]],[35,37,["H6597"]],[37,39,["H928"]],[39,42,["H5892"]]]},{"k":19324,"v":[[0,4,["H3205"]],[4,5,["H7651"]],[5,6,["H535"]],[6,10,["H5301"]],[10,12,["H5315"]],[12,14,["H8121"]],[14,17,["H935"]],[17,18,["H5750"]],[18,22,["H3119"]],[22,26,["H954"]],[26,28,["H2659"]],[28,31,["H7611"]],[31,36,["H5414"]],[36,39,["H2719"]],[39,40,["H6440"]],[40,42,["H341"]],[42,43,["H5002"]],[43,45,["H3068"]]]},{"k":19325,"v":[[0,1,["H188"]],[1,5,["H517"]],[5,6,["H3588"]],[6,9,["H3205"]],[9,12,["H376"]],[12,14,["H7379"]],[14,17,["H376"]],[17,19,["H4066"]],[19,22,["H3605"]],[22,23,["H776"]],[23,26,["H3808"]],[26,29,["H5383"]],[29,30,["H3808"]],[30,37,["H5383"]],[37,40,["H3605"]],[40,44,["H7043"]],[44,45,[]]]},{"k":19326,"v":[[0,2,["H3068"]],[2,3,["H559"]],[3,4,["H518","H3808"]],[4,8,["H2896"]],[8,11,["H8293"]],[11,12,["H518","H3808"]],[12,15,["(H853)"]],[15,17,["H341"]],[17,19,["H6293"]],[19,24,["H6256"]],[24,26,["H7451"]],[26,30,["H6256"]],[30,32,["H6869"]]]},{"k":19327,"v":[[0,2,["H1270"]],[2,3,["H7489"]],[3,5,["H4480","H6828"]],[5,6,["H1270"]],[6,9,["H5178"]]]},{"k":19328,"v":[[0,2,["H2428"]],[2,5,["H214"]],[5,8,["H5414"]],[8,11,["H957"]],[11,12,["H3808"]],[12,13,["H4242"]],[13,17,["H3605"]],[17,19,["H2403"]],[19,22,["H3605"]],[22,24,["H1366"]]]},{"k":19329,"v":[[0,7,["H5674"]],[7,8,["H854"]],[8,10,["H341"]],[10,13,["H776"]],[13,16,["H3045"]],[16,17,["H3808"]],[17,18,["H3588"]],[18,20,["H784"]],[20,22,["H6919"]],[22,25,["H639"]],[25,28,["H3344"]],[28,29,["H5921"]],[29,30,[]]]},{"k":19330,"v":[[0,2,["H3068"]],[2,3,["H859"]],[3,4,["H3045"]],[4,5,["H2142"]],[5,8,["H6485"]],[8,11,["H5358"]],[11,15,["H4480","H7291"]],[15,16,["H3947"]],[16,18,["H408"]],[18,22,["H750","H639"]],[22,23,["H3045"]],[23,25,["H5921"]],[25,30,["H5375"]],[30,31,["H2781"]]]},{"k":19331,"v":[[0,2,["H1697"]],[2,4,["H4672"]],[4,8,["H398"]],[8,12,["H1697"]],[12,13,["H1961"]],[13,17,["H8342"]],[17,19,["H8057"]],[19,22,["H3824"]],[22,23,["H3588"]],[23,26,["H7121"]],[26,27,["H5921"]],[27,29,["H8034"]],[29,31,["H3068"]],[31,32,["H430"]],[32,34,["H6635"]]]},{"k":19332,"v":[[0,2,["H3427"]],[2,3,["H3808"]],[3,6,["H5475"]],[6,9,["H7832"]],[9,11,["H5937"]],[11,13,["H3427"]],[13,14,["H910"]],[14,15,["H4480","H6440"]],[15,18,["H3027"]],[18,19,["H3588"]],[19,22,["H4390"]],[22,25,["H2195"]]]},{"k":19333,"v":[[0,1,["H4100"]],[1,2,["H1961"]],[2,4,["H3511"]],[4,5,["H5331"]],[5,8,["H4347"]],[8,9,["H605"]],[9,11,["H3985"]],[11,14,["H7495"]],[14,18,["H1961","H1961"]],[18,21,["H3644"]],[21,23,["H391"]],[23,26,["H4325"]],[26,28,["H3808","H539"]]]},{"k":19334,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H518"]],[6,8,["H7725"]],[8,14,["H7725"]],[14,18,["H5975"]],[18,19,["H6440"]],[19,22,["H518"]],[22,25,["H3318"]],[25,27,["H3368"]],[27,30,["H4480","H2151"]],[30,33,["H1961"]],[33,36,["H6310"]],[36,39,["H7725"]],[39,40,["H413"]],[40,43,["H7725"]],[43,44,["H3808"]],[44,45,["H859"]],[45,46,["H413"]],[46,47,[]]]},{"k":19335,"v":[[0,4,["H5414"]],[4,7,["H2088"]],[7,8,["H5971"]],[8,10,["H1219"]],[10,11,["H5178"]],[11,12,["H2346"]],[12,16,["H3898"]],[16,17,["H413"]],[17,22,["H3808"]],[22,23,["H3201"]],[23,26,["H3588"]],[26,27,["H589"]],[27,29,["H854"]],[29,32,["H3467"]],[32,36,["H5337"]],[36,38,["H5002"]],[38,40,["H3068"]]]},{"k":19336,"v":[[0,4,["H5337"]],[4,9,["H4480","H3027"]],[9,12,["H7451"]],[12,16,["H6299"]],[16,21,["H4480","H3709"]],[21,24,["H6184"]]]},{"k":19337,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,8,["H413"]],[8,10,["H559"]]]},{"k":19338,"v":[[0,3,["H3808"]],[3,4,["H3947"]],[4,7,["H802"]],[7,8,["H3808"]],[8,11,["H1961"]],[11,12,["H1121"]],[12,14,["H1323"]],[14,16,["H2088"]],[16,17,["H4725"]]]},{"k":19339,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H5921"]],[6,8,["H1121"]],[8,10,["H5921"]],[10,12,["H1323"]],[12,15,["H3209"]],[15,17,["H2088"]],[17,18,["H4725"]],[18,20,["H5921"]],[20,22,["H517"]],[22,24,["H3205"]],[24,27,["H5921"]],[27,29,["H1"]],[29,31,["H3205"]],[31,34,["H2088"]],[34,35,["H776"]]]},{"k":19340,"v":[[0,3,["H4191"]],[3,5,["H8463"]],[5,6,["H4463"]],[6,9,["H3808"]],[9,11,["H5594"]],[11,12,["H3808"]],[12,16,["H6912"]],[16,22,["H1828"]],[22,23,["H5921"]],[23,25,["H6440"]],[25,28,["H127"]],[28,32,["H1961"]],[32,33,["H3615"]],[33,36,["H2719"]],[36,39,["H7458"]],[39,42,["H5038"]],[42,45,["H3978"]],[45,48,["H5775"]],[48,50,["H8064"]],[50,54,["H929"]],[54,57,["H776"]]]},{"k":19341,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H935"]],[6,7,["H408"]],[7,10,["H1004"]],[10,12,["H4798"]],[12,13,["H408"]],[13,14,["H1980"]],[14,16,["H5594"]],[16,17,["H408"]],[17,18,["H5110"]],[18,20,["H3588"]],[20,24,["H622","(H853)"]],[24,26,["H7965"]],[26,27,["H4480","H854"]],[27,28,["H2088"]],[28,29,["H5971"]],[29,30,["H5002"]],[30,32,["H3068"]],[32,33,["(H853)"]],[33,34,["H2617"]],[34,36,["H7356"]]]},{"k":19342,"v":[[0,3,["H1419"]],[3,6,["H6996"]],[6,8,["H4191"]],[8,10,["H2063"]],[10,11,["H776"]],[11,14,["H3808"]],[14,16,["H6912"]],[16,17,["H3808"]],[17,20,["H5594"]],[20,23,["H3808"]],[23,25,["H1413"]],[25,26,["H3808"]],[26,29,["H7139"]],[29,31,[]]]},{"k":19343,"v":[[0,1,["H3808"]],[1,4,["H6536"]],[4,8,["H5921"]],[8,9,["H60"]],[9,11,["H5162"]],[11,13,["H5921"]],[13,15,["H4191"]],[15,16,["H3808"]],[16,22,["H3563"]],[22,24,["H8575"]],[24,26,["H8248"]],[26,27,["H5921"]],[27,29,["H1"]],[29,31,["H5921"]],[31,33,["H517"]]]},{"k":19344,"v":[[0,3,["H3808"]],[3,5,["H935"]],[5,8,["H1004"]],[8,10,["H4960"]],[10,12,["H3427"]],[12,13,["H854"]],[13,16,["H398"]],[16,19,["H8354"]]]},{"k":19345,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,12,["H2009"]],[12,17,["H7673"]],[17,19,["H4480"]],[19,20,["H2088"]],[20,21,["H4725"]],[21,24,["H5869"]],[24,28,["H3117"]],[28,30,["H6963"]],[30,32,["H8342"]],[32,35,["H6963"]],[35,37,["H8057"]],[37,39,["H6963"]],[39,42,["H2860"]],[42,45,["H6963"]],[45,48,["H3618"]]]},{"k":19346,"v":[[0,6,["H1961"]],[6,7,["H3588"]],[7,10,["H5046"]],[10,11,["H2088"]],[11,12,["H5971","(H853)"]],[12,13,["H3605"]],[13,14,["H428"]],[14,15,["H1697"]],[15,19,["H559"]],[19,20,["H413"]],[20,22,["H5921","H4100"]],[22,25,["H3068"]],[25,26,["H1696","(H853)"]],[26,27,["H3605"]],[27,28,["H2063"]],[28,29,["H1419"]],[29,30,["H7451"]],[30,31,["H5921"]],[31,34,["H4100"]],[34,37,["H5771"]],[37,39,["H4100"]],[39,42,["H2403"]],[42,43,["H834"]],[43,46,["H2398"]],[46,49,["H3068"]],[49,51,["H430"]]]},{"k":19347,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H5921","H834"]],[7,9,["H1"]],[9,11,["H5800"]],[11,13,["H5002"]],[13,15,["H3068"]],[15,18,["H1980"]],[18,19,["H310"]],[19,20,["H312"]],[20,21,["H430"]],[21,24,["H5647"]],[24,28,["H7812"]],[28,32,["H5800"]],[32,36,["H3808"]],[36,37,["H8104"]],[37,39,["H8451"]]]},{"k":19348,"v":[[0,2,["H859"]],[2,4,["H6213"]],[4,5,["H7489"]],[5,8,["H4480","H1"]],[8,10,["H2009"]],[10,12,["H1980"]],[12,14,["H376"]],[14,15,["H310"]],[15,17,["H8307"]],[17,20,["H7451"]],[20,21,["H3820"]],[21,25,["H1115"]],[25,26,["H8085"]],[26,27,["H413"]],[27,28,[]]]},{"k":19349,"v":[[0,4,["H2904"]],[4,7,["H4480","H5921"]],[7,8,["H2063"]],[8,9,["H776"]],[9,10,["H5921"]],[10,12,["H776"]],[12,13,["H834"]],[13,15,["H3045"]],[15,16,["H3808"]],[16,18,["H859"]],[18,21,["H1"]],[21,23,["H8033"]],[23,26,["H5647","(H853)"]],[26,27,["H312"]],[27,28,["H430"]],[28,29,["H3119"]],[29,31,["H3915"]],[31,32,["H834"]],[32,35,["H3808"]],[35,36,["H5414"]],[36,38,["H2594"]]]},{"k":19350,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,4,["H3117"]],[4,5,["H935"]],[5,6,["H5002"]],[6,8,["H3068"]],[8,12,["H3808"]],[12,13,["H5750"]],[13,15,["H559"]],[15,17,["H3068"]],[17,18,["H2416"]],[18,19,["H834"]],[19,21,["H5927","(H853)"]],[21,23,["H1121"]],[23,25,["H3478"]],[25,29,["H4480","H776"]],[29,31,["H4714"]]]},{"k":19351,"v":[[0,1,["H3588","H518"]],[1,3,["H3068"]],[3,4,["H2416"]],[4,5,["H834"]],[5,7,["H5927","(H853)"]],[7,9,["H1121"]],[9,11,["H3478"]],[11,14,["H4480","H776"]],[14,17,["H6828"]],[17,20,["H4480","H3605"]],[20,22,["H776"]],[22,23,["H834","H8033"]],[23,26,["H5080"]],[26,33,["H7725"]],[33,34,["H5921"]],[34,36,["H127"]],[36,37,["H834"]],[37,39,["H5414"]],[39,42,["H1"]]]},{"k":19352,"v":[[0,1,["H2009"]],[1,4,["H7971"]],[4,6,["H7227"]],[6,7,["H1771"]],[7,8,["H5002"]],[8,10,["H3068"]],[10,14,["H1770"]],[14,17,["H310","H3651"]],[17,20,["H7971"]],[20,22,["H7227"]],[22,23,["H6719"]],[23,27,["H6679"]],[27,29,["H4480","H5921"]],[29,30,["H3605"]],[30,31,["H2022"]],[31,33,["H4480","H5921"]],[33,34,["H3605"]],[34,35,["H1389"]],[35,40,["H4480","H5357"]],[40,43,["H5553"]]]},{"k":19353,"v":[[0,1,["H3588"]],[1,3,["H5869"]],[3,5,["H5921"]],[5,6,["H3605"]],[6,8,["H1870"]],[8,11,["H3808"]],[11,12,["H5641"]],[12,15,["H4480","H6440"]],[15,16,["H3808"]],[16,19,["H5771"]],[19,20,["H6845"]],[20,21,["H4480","H5048"]],[21,23,["H5869"]]]},{"k":19354,"v":[[0,2,["H7223"]],[2,5,["H7999"]],[5,7,["H5771"]],[7,10,["H2403"]],[10,11,["H4932"]],[11,12,["H5921"]],[12,15,["H2490","(H853)"]],[15,17,["H776"]],[17,20,["H4390","(H853)"]],[20,22,["H5159"]],[22,25,["H5038"]],[25,28,["H8251"]],[28,31,["H8441"]]]},{"k":19355,"v":[[0,2,["H3068"]],[2,4,["H5797"]],[4,7,["H4581"]],[7,10,["H4498"]],[10,13,["H3117"]],[13,15,["H6869"]],[15,17,["H1471"]],[17,19,["H935"]],[19,20,["H413"]],[20,24,["H4480","H657"]],[24,27,["H776"]],[27,30,["H559"]],[30,31,["H389"]],[31,33,["H1"]],[33,35,["H5157"]],[35,36,["H8267"]],[36,37,["H1892"]],[37,43,["H369"]],[43,44,["H3276"]]]},{"k":19356,"v":[[0,3,["H120"]],[3,4,["H6213"]],[4,5,["H430"]],[5,9,["H1992"]],[9,11,["H3808"]],[11,12,["H430"]]]},{"k":19357,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,5,["H2063"]],[5,6,["H6471"]],[6,10,["H3045"]],[10,16,["H3045","(H853)"]],[16,18,["H3027"]],[18,21,["H1369"]],[21,25,["H3045"]],[25,26,["H3588"]],[26,28,["H8034"]],[28,31,["H3068"]]]},{"k":19358,"v":[[0,2,["H2403"]],[2,4,["H3063"]],[4,6,["H3789"]],[6,9,["H5842"]],[9,11,["H1270"]],[11,15,["H6856"]],[15,18,["H8068"]],[18,21,["H2790"]],[21,22,["H5921"]],[22,24,["H3871"]],[24,27,["H3820"]],[27,31,["H7161"]],[31,34,["H4196"]]]},{"k":19359,"v":[[0,3,["H1121"]],[3,4,["H2142"]],[4,6,["H4196"]],[6,9,["H842"]],[9,10,["H5921"]],[10,12,["H7488"]],[12,13,["H6086"]],[13,14,["H5921"]],[14,16,["H1364"]],[16,17,["H1389"]]]},{"k":19360,"v":[[0,3,["H2042"]],[3,6,["H7704"]],[6,9,["H5414"]],[9,11,["H2428"]],[11,13,["H3605"]],[13,15,["H214"]],[15,18,["H957"]],[18,22,["H1116"]],[22,24,["H2403"]],[24,26,["H3605"]],[26,28,["H1366"]]]},{"k":19361,"v":[[0,6,["H8058"]],[6,9,["H4480","H5159"]],[9,10,["H834"]],[10,12,["H5414"]],[12,20,["H5647","(H853)"]],[20,22,["H341"]],[22,25,["H776"]],[25,26,["H834"]],[26,28,["H3045"]],[28,29,["H3808"]],[29,30,["H3588"]],[30,33,["H6919"]],[33,35,["H784"]],[35,38,["H639"]],[38,41,["H3344"]],[41,43,["H5704","H5769"]]]},{"k":19362,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H779"]],[5,8,["H1397"]],[8,9,["H834"]],[9,10,["H982"]],[10,12,["H120"]],[12,14,["H7760"]],[14,15,["H1320"]],[15,17,["H2220"]],[17,20,["H3820"]],[20,21,["H5493"]],[21,22,["H4480"]],[22,24,["H3068"]]]},{"k":19363,"v":[[0,4,["H1961"]],[4,7,["H6176"]],[7,10,["H6160"]],[10,13,["H3808"]],[13,14,["H7200"]],[14,15,["H3588"]],[15,16,["H2896"]],[16,17,["H935"]],[17,20,["H7931"]],[20,23,["H2788"]],[23,26,["H4057"]],[26,29,["H4420"]],[29,30,["H776"]],[30,32,["H3808"]],[32,33,["H3427"]]]},{"k":19364,"v":[[0,1,["H1288"]],[1,4,["H1397"]],[4,5,["H834"]],[5,6,["H982"]],[6,9,["H3068"]],[9,12,["H4009"]],[12,14,["H3068"]],[14,15,["H1961"]]]},{"k":19365,"v":[[0,4,["H1961"]],[4,7,["H6086"]],[7,8,["H8362"]],[8,9,["H5921"]],[9,11,["H4325"]],[11,15,["H7971"]],[15,17,["H8328"]],[17,18,["H5921"]],[18,20,["H3105"]],[20,23,["H3808"]],[23,24,["H7200"]],[24,25,["H3588"]],[25,26,["H2527"]],[26,27,["H935"]],[27,30,["H5929"]],[30,32,["H1961"]],[32,33,["H7488"]],[33,36,["H3808"]],[36,38,["H1672"]],[38,41,["H8141"]],[41,43,["H1226"]],[43,44,["H3808"]],[44,46,["H4185"]],[46,48,["H4480","H6213"]],[48,49,["H6529"]]]},{"k":19366,"v":[[0,2,["H3820"]],[2,4,["H6121"]],[4,6,["H4480","H3605"]],[6,10,["H605"]],[10,11,["H4310"]],[11,13,["H3045"]],[13,14,[]]]},{"k":19367,"v":[[0,1,["H589"]],[1,3,["H3068"]],[3,4,["H2713"]],[4,6,["H3820"]],[6,8,["H974"]],[8,10,["H3629"]],[10,13,["H5414"]],[13,15,["H376"]],[15,19,["H1870"]],[19,24,["H6529"]],[24,27,["H4611"]]]},{"k":19368,"v":[[0,3,["H7124"]],[3,4,["H1716"]],[4,8,["H3205"]],[8,10,["H3808"]],[10,14,["H6213"]],[14,15,["H6239"]],[15,17,["H3808"]],[17,19,["H4941"]],[19,21,["H5800"]],[21,25,["H2677"]],[25,28,["H3117"]],[28,32,["H319"]],[32,34,["H1961"]],[34,36,["H5036"]]]},{"k":19369,"v":[[0,2,["H3519"]],[2,3,["H4791"]],[3,4,["H3678"]],[4,7,["H4480","H7223"]],[7,10,["H4725"]],[10,13,["H4720"]]]},{"k":19370,"v":[[0,2,["H3068"]],[2,4,["H4723"]],[4,6,["H3478"]],[6,7,["H3605"]],[7,9,["H5800"]],[9,13,["H954"]],[13,18,["H3249"]],[18,22,["H3789"]],[22,25,["H776"]],[25,26,["H3588"]],[26,29,["H5800","(H853)"]],[29,31,["H3068"]],[31,33,["H4726"]],[33,35,["H2416"]],[35,36,["H4325"]]]},{"k":19371,"v":[[0,1,["H7495"]],[1,4,["H3068"]],[4,9,["H7495"]],[9,10,["H3467"]],[10,16,["H3467"]],[16,17,["H3588"]],[17,18,["H859"]],[18,21,["H8416"]]]},{"k":19372,"v":[[0,1,["H2009"]],[1,2,["H1992"]],[2,3,["H559"]],[3,4,["H413"]],[4,6,["H346"]],[6,9,["H1697"]],[9,12,["H3068"]],[12,15,["H935"]],[15,16,["H4994"]]]},{"k":19373,"v":[[0,4,["H589"]],[4,6,["H3808"]],[6,7,["H213"]],[7,11,["H4480","H7462"]],[11,13,["H310"]],[13,15,["H3808"]],[15,18,["H183"]],[18,20,["H605"]],[20,21,["H3117"]],[21,22,["H859"]],[22,23,["H3045"]],[23,26,["H4161"]],[26,28,["H6440"]],[28,30,["H8193"]],[30,31,["H1961"]],[31,33,["H5227","H6440"]],[33,34,[]]]},{"k":19374,"v":[[0,1,["H1961"]],[1,2,["H408"]],[2,4,["H4288"]],[4,7,["H859"]],[7,10,["H4268"]],[10,13,["H3117"]],[13,15,["H7451"]]]},{"k":19375,"v":[[0,4,["H954"]],[4,6,["H7291"]],[6,10,["H408"]],[10,11,["H589"]],[11,13,["H954"]],[13,15,["H1992"]],[15,17,["H2865"]],[17,20,["H408"]],[20,21,["H589"]],[21,23,["H2865"]],[23,24,["H935"]],[24,25,["H5921"]],[25,28,["H3117"]],[28,30,["H7451"]],[30,32,["H7665"]],[32,35,["H4932"]],[35,36,["H7670"]]]},{"k":19376,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,7,["H1980"]],[7,9,["H5975"]],[9,12,["H8179"]],[12,15,["H1121"]],[15,18,["H5971"]],[18,19,["H834"]],[19,21,["H4428"]],[21,23,["H3063"]],[23,25,["H935"]],[25,29,["H834"]],[29,32,["H3318"]],[32,35,["H3605"]],[35,37,["H8179"]],[37,39,["H3389"]]]},{"k":19377,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H8085"]],[5,8,["H1697"]],[8,11,["H3068"]],[11,13,["H4428"]],[13,15,["H3063"]],[15,17,["H3605"]],[17,18,["H3063"]],[18,20,["H3605"]],[20,22,["H3427"]],[22,24,["H3389"]],[24,27,["H935"]],[27,29,["H428"]],[29,30,["H8179"]]]},{"k":19378,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H8104"]],[6,8,["H5315"]],[8,10,["H5375"]],[10,11,["H408"]],[11,12,["H4853"]],[12,15,["H7676"]],[15,16,["H3117"]],[16,20,["H935"]],[20,23,["H8179"]],[23,25,["H3389"]]]},{"k":19379,"v":[[0,1,["H3808"]],[1,3,["H3318"]],[3,5,["H4853"]],[5,9,["H4480","H1004"]],[9,12,["H7676"]],[12,13,["H3117"]],[13,14,["H3808"]],[14,15,["H6213"]],[15,17,["H3605"]],[17,18,["H4399"]],[18,20,["H6942"]],[20,21,["(H853)"]],[21,23,["H7676"]],[23,24,["H3117"]],[24,25,["H834"]],[25,27,["H6680"]],[27,29,["H1"]]]},{"k":19380,"v":[[0,3,["H8085"]],[3,4,["H3808"]],[4,5,["H3808"]],[5,6,["H5186","(H853)"]],[6,8,["H241"]],[8,10,["(H853)"]],[10,12,["H6203"]],[12,13,["H7185"]],[13,17,["H1115"]],[17,18,["H8085"]],[18,19,["H1115"]],[19,20,["H3947"]],[20,21,["H4148"]]]},{"k":19381,"v":[[0,6,["H1961"]],[6,7,["H518"]],[7,10,["H8085","H8085"]],[10,11,["H413"]],[11,13,["H5002"]],[13,15,["H3068"]],[15,18,["H935"]],[18,19,["H1115"]],[19,20,["H4853"]],[20,23,["H8179"]],[23,25,["H2063"]],[25,26,["H5892"]],[26,29,["H7676"]],[29,30,["H3117"]],[30,32,["H6942","(H853)"]],[32,34,["H7676"]],[34,35,["H3117"]],[35,37,["H6213"]],[37,38,["H1115","H3605"]],[38,39,["H4399"]],[39,40,[]]]},{"k":19382,"v":[[0,4,["H935"]],[4,7,["H8179"]],[7,9,["H2063"]],[9,10,["H5892"]],[10,11,["H4428"]],[11,13,["H8269"]],[13,14,["H3427"]],[14,15,["H5921"]],[15,17,["H3678"]],[17,19,["H1732"]],[19,20,["H7392"]],[20,22,["H7393"]],[22,25,["H5483"]],[25,26,["H1992"]],[26,29,["H8269"]],[29,31,["H376"]],[31,33,["H3063"]],[33,36,["H3427"]],[36,38,["H3389"]],[38,40,["H2063"]],[40,41,["H5892"]],[41,43,["H3427"]],[43,45,["H5769"]]]},{"k":19383,"v":[[0,4,["H935"]],[4,7,["H4480","H5892"]],[7,9,["H3063"]],[9,14,["H4480","H5439"]],[14,15,["H3389"]],[15,19,["H4480","H776"]],[19,21,["H1144"]],[21,23,["H4480"]],[23,25,["H8219"]],[25,27,["H4480"]],[27,29,["H2022"]],[29,31,["H4480"]],[31,33,["H5045"]],[33,34,["H935"]],[34,36,["H5930"]],[36,38,["H2077"]],[38,41,["H4503"]],[41,43,["H3828"]],[43,45,["H935"]],[45,48,["H8426"]],[48,51,["H1004"]],[51,54,["H3068"]]]},{"k":19384,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H8085"]],[6,7,["H413"]],[7,10,["H6942","(H853)"]],[10,12,["H7676"]],[12,13,["H3117"]],[13,15,["H1115"]],[15,17,["H5375"]],[17,19,["H4853"]],[19,21,["H935"]],[21,25,["H8179"]],[25,27,["H3389"]],[27,30,["H7676"]],[30,31,["H3117"]],[31,35,["H3341"]],[35,37,["H784"]],[37,40,["H8179"]],[40,45,["H398"]],[45,47,["H759"]],[47,49,["H3389"]],[49,53,["H3808"]],[53,55,["H3518"]]]},{"k":19385,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H413"]],[5,6,["H3414"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,10,["H559"]]]},{"k":19386,"v":[[0,1,["H6965"]],[1,4,["H3381"]],[4,7,["H3335"]],[7,8,["H1004"]],[8,10,["H8033"]],[10,16,["H8085","(H853)"]],[16,18,["H1697"]]]},{"k":19387,"v":[[0,4,["H3381"]],[4,7,["H3335"]],[7,8,["H1004"]],[8,10,["H2009"]],[10,12,["H6213"]],[12,14,["H4399"]],[14,15,["H5921"]],[15,17,["H70"]]]},{"k":19388,"v":[[0,3,["H3627"]],[3,4,["H834"]],[4,5,["H1931"]],[5,6,["H6213"]],[6,8,["H2563"]],[8,10,["H7843"]],[10,13,["H3027"]],[13,16,["H3335"]],[16,19,["H6213"]],[19,21,["H7725"]],[21,22,["H312"]],[22,23,["H3627"]],[23,24,["H834"]],[24,25,["H5869"]],[25,26,["H3474"]],[26,29,["H3335"]],[29,31,["H6213"]],[31,32,[]]]},{"k":19389,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":19390,"v":[[0,2,["H1004"]],[2,4,["H3478"]],[4,5,["H3808","H3201"]],[5,7,["H6213"]],[7,11,["H2088"]],[11,12,["H3335"]],[12,13,["H5002"]],[13,15,["H3068"]],[15,16,["H2009"]],[16,19,["H2563"]],[19,23,["H3335"]],[23,24,["H3027"]],[24,25,["H3651"]],[25,27,["H859"]],[27,30,["H3027"]],[30,32,["H1004"]],[32,34,["H3478"]]]},{"k":19391,"v":[[0,3,["H7281"]],[3,6,["H1696"]],[6,7,["H5921"]],[7,9,["H1471"]],[9,11,["H5921"]],[11,13,["H4467"]],[13,16,["H5428"]],[16,20,["H5422"]],[20,23,["H6"]],[23,24,[]]]},{"k":19392,"v":[[0,2,["H1931"]],[2,3,["H1471"]],[3,4,["H5921"]],[4,5,["H834"]],[5,8,["H1696"]],[8,9,["H7725"]],[9,12,["H4480","H7451"]],[12,15,["H5162"]],[15,16,["H5921"]],[16,18,["H7451"]],[18,19,["H834"]],[19,21,["H2803"]],[21,23,["H6213"]],[23,25,[]]]},{"k":19393,"v":[[0,4,["H7281"]],[4,7,["H1696"]],[7,8,["H5921"]],[8,10,["H1471"]],[10,12,["H5921"]],[12,14,["H4467"]],[14,16,["H1129"]],[16,19,["H5193"]],[19,20,[]]]},{"k":19394,"v":[[0,3,["H6213"]],[3,4,["H7451"]],[4,7,["H5869"]],[7,10,["H8085"]],[10,11,["H1115"]],[11,13,["H6963"]],[13,17,["H5162"]],[17,18,["H5921"]],[18,20,["H2896"]],[20,21,["H834"]],[21,23,["H559"]],[23,26,["H3190"]],[26,27,[]]]},{"k":19395,"v":[[0,1,["H6258"]],[1,3,["H4994"]],[3,5,["H559"]],[5,6,["H413"]],[6,8,["H376"]],[8,10,["H3063"]],[10,12,["H5921"]],[12,14,["H3427"]],[14,16,["H3389"]],[16,17,["H559"]],[17,18,["H3541"]],[18,19,["H559"]],[19,21,["H3068"]],[21,22,["H2009"]],[22,23,["H595"]],[23,24,["H3335"]],[24,25,["H7451"]],[25,26,["H5921"]],[26,29,["H2803"]],[29,31,["H4284"]],[31,32,["H5921"]],[32,34,["H7725"]],[34,36,["H4994"]],[36,38,["H376"]],[38,41,["H7451"]],[41,42,["H4480","H1870"]],[42,46,["H1870"]],[46,49,["H4611"]],[49,50,["H3190"]]]},{"k":19396,"v":[[0,3,["H559"]],[3,7,["H2976"]],[7,8,["H3588"]],[8,11,["H1980"]],[11,12,["H310"]],[12,15,["H4284"]],[15,20,["H376"]],[20,21,["H6213"]],[21,23,["H8307"]],[23,26,["H7451"]],[26,27,["H3820"]]]},{"k":19397,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H7592"]],[6,8,["H4994"]],[8,11,["H1471"]],[11,12,["H4310"]],[12,14,["H8085"]],[14,15,["H428"]],[15,18,["H1330"]],[18,20,["H3478"]],[20,22,["H6213"]],[22,24,["H3966"]],[24,26,["H8186"]]]},{"k":19398,"v":[[0,4,["H5800"]],[4,6,["H7950"]],[6,8,["H3844"]],[8,13,["H4480","H6697"]],[13,16,["H7704"]],[16,20,["H7119"]],[20,21,["H5140"]],[21,22,["H4325"]],[22,27,["H2114"]],[27,29,["H5428"]]]},{"k":19399,"v":[[0,1,["H3588"]],[1,3,["H5971"]],[3,5,["H7911"]],[5,10,["H6999"]],[10,12,["H7723"]],[12,19,["H3782"]],[19,22,["H1870"]],[22,25,["H5769"]],[25,26,["H7635"]],[26,28,["H1980"]],[28,30,["H5410"]],[30,33,["H1870"]],[33,34,["H3808"]],[34,36,["H5549"]]]},{"k":19400,"v":[[0,2,["H7760"]],[2,4,["H776"]],[4,5,["H8047"]],[5,8,["H5769"]],[8,9,["H8292"]],[9,11,["H3605"]],[11,13,["H5674"]],[13,14,["H5921"]],[14,17,["H8074"]],[17,19,["H5110"]],[19,21,["H7218"]]]},{"k":19401,"v":[[0,3,["H6327"]],[3,8,["H6921"]],[8,9,["H7307"]],[9,10,["H6440"]],[10,12,["H341"]],[12,15,["H7200"]],[15,18,["H6203"]],[18,20,["H3808"]],[20,22,["H6440"]],[22,25,["H3117"]],[25,28,["H343"]]]},{"k":19402,"v":[[0,2,["H559"]],[2,4,["H1980"]],[4,8,["H2803"]],[8,9,["H4284"]],[9,10,["H5921"]],[10,11,["H3414"]],[11,12,["H3588"]],[12,14,["H8451"]],[14,16,["H3808"]],[16,17,["H6"]],[17,20,["H4480","H3548"]],[20,22,["H6098"]],[22,25,["H4480","H2450"]],[25,28,["H1697"]],[28,31,["H4480","H5030"]],[31,32,["H1980"]],[32,36,["H5221"]],[36,40,["H3956"]],[40,44,["H408"]],[44,46,["H7181"]],[46,47,["H413"]],[47,48,["H3605"]],[48,51,["H1697"]]]},{"k":19403,"v":[[0,2,["H7181"]],[2,3,["H413"]],[3,6,["H3068"]],[6,8,["H8085"]],[8,11,["H6963"]],[11,15,["H3401"]],[15,17,[]]]},{"k":19404,"v":[[0,2,["H7451"]],[2,4,["H7999"]],[4,5,["H8478"]],[5,6,["H2896"]],[6,7,["H3588"]],[7,10,["H3738"]],[10,12,["H7745"]],[12,15,["H5315"]],[15,16,["H2142"]],[16,19,["H5975"]],[19,20,["H6440"]],[20,23,["H1696"]],[23,24,["H2896"]],[24,25,["H5921"]],[25,30,["H7725","(H853)"]],[30,32,["H2534"]],[32,33,["H4480"]],[33,34,[]]]},{"k":19405,"v":[[0,1,["H3651"]],[1,3,["H5414","(H853)"]],[3,5,["H1121"]],[5,8,["H7458"]],[8,11,["H5064"]],[11,14,["H5921"]],[14,16,["H3027"]],[16,19,["H2719"]],[19,23,["H802"]],[23,24,["H1961"]],[24,28,["H7909"]],[28,31,["H490"]],[31,35,["H376"]],[35,36,["H1961"]],[36,37,["H2026"]],[37,39,["H4194"]],[39,43,["H970"]],[43,45,["H5221"]],[45,48,["H2719"]],[48,50,["H4421"]]]},{"k":19406,"v":[[0,3,["H2201"]],[3,5,["H8085"]],[5,8,["H4480","H1004"]],[8,9,["H3588"]],[9,12,["H935"]],[12,14,["H1416"]],[14,15,["H6597"]],[15,16,["H5921"]],[16,18,["H3588"]],[18,21,["H3738"]],[21,23,["H7745"]],[23,25,["H3920"]],[25,28,["H2934"]],[28,29,["H6341"]],[29,32,["H7272"]]]},{"k":19407,"v":[[0,2,["H3068"]],[2,3,["H859"]],[3,4,["H3045","(H853)"]],[4,5,["H3605"]],[5,7,["H6098"]],[7,8,["H5921"]],[8,11,["H4194"]],[11,13,["H3722"]],[13,14,["H408"]],[14,16,["H5771"]],[16,17,["H408"]],[17,19,["H4229"]],[19,21,["H2403"]],[21,24,["H4480","H6440"]],[24,28,["H1961"]],[28,29,["H3782"]],[29,30,["H6440"]],[30,32,["H6213"]],[32,38,["H6256"]],[38,41,["H639"]]]},{"k":19408,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H1980"]],[5,7,["H7069"]],[7,9,["H3335"]],[9,10,["H2789"]],[10,11,["H1228"]],[11,16,["H4480","H2205"]],[16,19,["H5971"]],[19,23,["H4480","H2205"]],[23,26,["H3548"]]]},{"k":19409,"v":[[0,3,["H3318"]],[3,4,["H413"]],[4,6,["H1516"]],[6,9,["H1121"]],[9,11,["H2011"]],[11,12,["H834"]],[12,16,["H6607"]],[16,19,["H2777"]],[19,20,["H8179"]],[20,22,["H7121"]],[22,23,["H8033","(H853)"]],[23,25,["H1697"]],[25,26,["H834"]],[26,29,["H1696","H413"]],[29,30,[]]]},{"k":19410,"v":[[0,2,["H559"]],[2,3,["H8085"]],[3,6,["H1697"]],[6,9,["H3068"]],[9,11,["H4428"]],[11,13,["H3063"]],[13,15,["H3427"]],[15,17,["H3389"]],[17,18,["H3541"]],[18,19,["H559"]],[19,21,["H3068"]],[21,23,["H6635"]],[23,25,["H430"]],[25,27,["H3478"]],[27,28,["H2009"]],[28,31,["H935"]],[31,32,["H7451"]],[32,33,["H5921"]],[33,34,["H2088"]],[34,35,["H4725"]],[35,37,["H834"]],[37,38,["H3605"]],[38,39,["H8085"]],[39,41,["H241"]],[41,43,["H6750"]]]},{"k":19411,"v":[[0,1,["H3282","H834"]],[1,4,["H5800"]],[4,8,["H5234","(H853)"]],[8,9,["H2088"]],[9,10,["H4725"]],[10,14,["H6999"]],[14,18,["H312"]],[18,19,["H430"]],[19,20,["H834"]],[20,21,["H3808"]],[21,22,["H1992"]],[22,25,["H1"]],[25,27,["H3045"]],[27,30,["H4428"]],[30,32,["H3063"]],[32,35,["H4390","(H853)"]],[35,36,["H2088"]],[36,37,["H4725"]],[37,40,["H1818"]],[40,42,["H5355"]]]},{"k":19412,"v":[[0,3,["H1129"]],[3,4,["(H853)"]],[4,7,["H1116"]],[7,9,["H1168"]],[9,11,["H8313","(H853)"]],[11,13,["H1121"]],[13,15,["H784"]],[15,18,["H5930"]],[18,20,["H1168"]],[20,21,["H834"]],[21,23,["H6680"]],[23,24,["H3808"]],[24,25,["H3808"]],[25,26,["H1696"]],[26,28,["H3808"]],[28,29,["H5927"]],[29,31,["H5921"]],[31,33,["H3820"]]]},{"k":19413,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,4,["H3117"]],[4,5,["H935"]],[5,6,["H5002"]],[6,8,["H3068"]],[8,10,["H2088"]],[10,11,["H4725"]],[11,13,["H3808"]],[13,14,["H5750"]],[14,16,["H7121"]],[16,17,["H8612"]],[17,20,["H1516"]],[20,23,["H1121"]],[23,25,["H2011"]],[25,26,["H3588","H518"]],[26,28,["H1516"]],[28,30,["H2028"]]]},{"k":19414,"v":[[0,5,["H1238","(H853)"]],[5,7,["H6098"]],[7,9,["H3063"]],[9,11,["H3389"]],[11,13,["H2088"]],[13,14,["H4725"]],[14,21,["H5307"]],[21,24,["H2719"]],[24,25,["H6440"]],[25,27,["H341"]],[27,31,["H3027"]],[31,35,["H1245"]],[35,37,["H5315"]],[37,38,["(H853)"]],[38,40,["H5038"]],[40,43,["H5414"]],[43,46,["H3978"]],[46,49,["H5775"]],[49,52,["H8064"]],[52,56,["H929"]],[56,59,["H776"]]]},{"k":19415,"v":[[0,4,["H7760","(H853)"]],[4,5,["H2063"]],[5,6,["H5892"]],[6,7,["H8047"]],[7,10,["H8322"]],[10,12,["H3605"]],[12,14,["H5674"]],[14,15,["H5921"]],[15,18,["H8074"]],[18,20,["H8319"]],[20,21,["H5921"]],[21,23,["H3605"]],[23,25,["H4347"]],[25,26,[]]]},{"k":19416,"v":[[0,7,["H398","(H853)"]],[7,9,["H1320"]],[9,12,["H1121"]],[12,15,["H1320"]],[15,18,["H1323"]],[18,22,["H398"]],[22,24,["H376"]],[24,26,["H1320"]],[26,29,["H7453"]],[29,32,["H4692"]],[32,34,["H4689"]],[34,35,["H834"]],[35,37,["H341"]],[37,41,["H1245"]],[41,43,["H5315"]],[43,45,["H6693"]],[45,46,[]]]},{"k":19417,"v":[[0,4,["H7665"]],[4,6,["H1228"]],[6,9,["H5869"]],[9,12,["H376"]],[12,14,["H1980"]],[14,15,["H854"]],[15,16,[]]]},{"k":19418,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,11,["H6635"]],[11,13,["H3602"]],[13,16,["H7665","(H853)"]],[16,17,["H2088"]],[17,18,["H5971"]],[18,20,["H2063"]],[20,21,["H5892"]],[21,22,["H834"]],[22,24,["H7665","(H853)"]],[24,26,["H3335"]],[26,27,["H3627"]],[27,28,["H834"]],[28,29,["H3201","H3808"]],[29,32,["H7495"]],[32,33,["H5750"]],[33,37,["H6912"]],[37,40,["H8612"]],[40,44,["H4480","H369"]],[44,45,["H4725"]],[45,47,["H6912"]]]},{"k":19419,"v":[[0,1,["H3651"]],[1,4,["H6213"]],[4,6,["H2088"]],[6,7,["H4725"]],[7,8,["H5002"]],[8,10,["H3068"]],[10,14,["H3427"]],[14,18,["H5414","(H853)"]],[18,19,["H2063"]],[19,20,["H5892"]],[20,22,["H8612"]]]},{"k":19420,"v":[[0,3,["H1004"]],[3,5,["H3389"]],[5,8,["H1004"]],[8,11,["H4428"]],[11,13,["H3063"]],[13,15,["H1961"]],[15,16,["H2931"]],[16,19,["H4725"]],[19,21,["H8612"]],[21,24,["H3605"]],[24,26,["H1004"]],[26,27,["H5921"]],[27,28,["H834"]],[28,29,["H1406"]],[29,33,["H6999"]],[33,35,["H3605"]],[35,37,["H6635"]],[37,39,["H8064"]],[39,43,["H5258"]],[43,45,["H5262"]],[45,47,["H312"]],[47,48,["H430"]]]},{"k":19421,"v":[[0,2,["H935"]],[2,3,["H3414"]],[3,5,["H4480","H8612"]],[5,6,["H834","H8033"]],[6,8,["H3068"]],[8,10,["H7971"]],[10,13,["H5012"]],[13,16,["H5975"]],[16,19,["H2691"]],[19,22,["H3068"]],[22,23,["H1004"]],[23,25,["H559"]],[25,26,["H413"]],[26,27,["H3605"]],[27,29,["H5971"]]]},{"k":19422,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,11,["H2009"]],[11,14,["H935"]],[14,15,["H413"]],[15,16,["H2063"]],[16,17,["H5892"]],[17,19,["H5921"]],[19,20,["H3605"]],[20,22,["H5892","(H853)"]],[22,23,["H3605"]],[23,25,["H7451"]],[25,26,["H834"]],[26,29,["H1696"]],[29,30,["H5921"]],[30,32,["H3588"]],[32,35,["H7185","(H853)"]],[35,37,["H6203"]],[37,41,["H1115"]],[41,42,["H8085","(H853)"]],[42,44,["H1697"]]]},{"k":19423,"v":[[0,2,["H6583"]],[2,4,["H1121"]],[4,6,["H564"]],[6,8,["H3548"]],[8,9,["H1931"]],[9,12,["H5057"]],[12,13,["H6496"]],[13,16,["H1004"]],[16,19,["H3068"]],[19,20,["H8085"]],[20,21,["(H853)"]],[21,22,["H3414"]],[22,23,["H5012","(H853)"]],[23,24,["H428"]],[24,25,["H1697"]]]},{"k":19424,"v":[[0,2,["H6583"]],[2,3,["H5221","(H853)"]],[3,4,["H3414"]],[4,6,["H5030"]],[6,8,["H5414"]],[8,10,["H5921"]],[10,12,["H4115"]],[12,13,["H834"]],[13,17,["H5945"]],[17,18,["H8179"]],[18,20,["H1144"]],[20,21,["H834"]],[21,25,["H1004"]],[25,28,["H3068"]]]},{"k":19425,"v":[[0,5,["H1961"]],[5,8,["H4480","H4283"]],[8,10,["H6583"]],[10,12,["H3318","(H853)"]],[12,13,["H3414"]],[13,15,["H4480"]],[15,17,["H4115"]],[17,19,["H559"]],[19,20,["H3414"]],[20,21,["H413"]],[21,24,["H3068"]],[24,26,["H3808"]],[26,27,["H7121"]],[27,29,["H8034"]],[29,30,["H6583"]],[30,31,["H3588","H518"]],[31,32,["H4036"]]]},{"k":19426,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,9,["H5414"]],[9,12,["H4032"]],[12,17,["H3605"]],[17,19,["H157"]],[19,23,["H5307"]],[23,26,["H2719"]],[26,29,["H341"]],[29,32,["H5869"]],[32,34,["H7200"]],[34,39,["H5414"]],[39,40,["H3605"]],[40,41,["H3063"]],[41,44,["H3027"]],[44,47,["H4428"]],[47,49,["H894"]],[49,55,["H1540"]],[55,57,["H894"]],[57,60,["H5221"]],[60,64,["H2719"]]]},{"k":19427,"v":[[0,4,["H5414","(H853)"]],[4,5,["H3605"]],[5,7,["H2633"]],[7,9,["H2063"]],[9,10,["H5892"]],[10,12,["H3605"]],[12,14,["H3018"]],[14,17,["H3605"]],[17,20,["H3366"]],[20,23,["H3605"]],[23,25,["H214"]],[25,28,["H4428"]],[28,30,["H3063"]],[30,33,["H5414"]],[33,36,["H3027"]],[36,39,["H341"]],[39,42,["H962"]],[42,45,["H3947"]],[45,48,["H935"]],[48,51,["H894"]]]},{"k":19428,"v":[[0,2,["H859"]],[2,3,["H6583"]],[3,5,["H3605"]],[5,7,["H3427"]],[7,10,["H1004"]],[10,12,["H1980"]],[12,14,["H7628"]],[14,18,["H935"]],[18,20,["H894"]],[20,22,["H8033"]],[22,25,["H4191"]],[25,29,["H6912"]],[29,30,["H8033"]],[30,31,["H859"]],[31,33,["H3605"]],[33,35,["H157"]],[35,37,["H834"]],[37,40,["H5012"]],[40,41,["H8267"]]]},{"k":19429,"v":[[0,2,["H3068"]],[2,5,["H6601"]],[5,10,["H6601"]],[10,13,["H2388"]],[13,18,["H3201"]],[18,20,["H1961"]],[20,22,["H7814"]],[22,23,["H3605","H3117"]],[23,25,["H3605"]],[25,26,["H3932"]],[26,27,[]]]},{"k":19430,"v":[[0,1,["H3588"]],[1,2,["H4480","H1767"]],[2,4,["H1696"]],[4,7,["H2199"]],[7,9,["H7121"]],[9,10,["H2555"]],[10,12,["H7701"]],[12,13,["H3588"]],[13,15,["H1697"]],[15,18,["H3068"]],[18,20,["H1961"]],[20,22,["H2781"]],[22,27,["H7047"]],[27,28,["H3605","H3117"]]]},{"k":19431,"v":[[0,3,["H559"]],[3,6,["H3808"]],[6,8,["H2142"]],[8,11,["H3808"]],[11,12,["H1696"]],[12,14,["H5750"]],[14,17,["H8034"]],[17,21,["H1961"]],[21,24,["H3820"]],[24,27,["H1197"]],[27,28,["H784"]],[28,30,["H6113"]],[30,33,["H6106"]],[33,37,["H3811"]],[37,39,["H3557"]],[39,42,["H3201"]],[42,43,["H3808"]],[43,44,[]]]},{"k":19432,"v":[[0,1,["H3588"]],[1,3,["H8085"]],[3,5,["H1681"]],[5,7,["H7227"]],[7,8,["H4032"]],[8,11,["H4480","H5439"]],[11,12,["H5046"]],[12,18,["H5046"]],[18,20,["H3605"]],[20,22,["H582","H7965"]],[22,23,["H8104"]],[23,26,["H6761"]],[26,28,["H194"]],[28,32,["H6601"]],[32,36,["H3201"]],[36,42,["H3947"]],[42,44,["H5360"]],[44,45,["H4480"]],[45,46,[]]]},{"k":19433,"v":[[0,3,["H3068"]],[3,5,["H854"]],[5,9,["H1368"]],[9,11,["H6184"]],[11,12,["H5921","H3651"]],[12,14,["H7291"]],[14,16,["H3782"]],[16,20,["H3808"]],[20,21,["H3201"]],[21,25,["H3966"]],[25,26,["H954"]],[26,27,["H3588"]],[27,30,["H3808"]],[30,31,["H7919"]],[31,33,["H5769"]],[33,34,["H3639"]],[34,36,["H3808"]],[36,38,["H7911"]]]},{"k":19434,"v":[[0,3,["H3068"]],[3,5,["H6635"]],[5,7,["H974"]],[7,9,["H6662"]],[9,11,["H7200"]],[11,13,["H3629"]],[13,16,["H3820"]],[16,19,["H7200"]],[19,21,["H5360"]],[21,22,["H4480"]],[22,24,["H3588"]],[24,25,["H413"]],[25,29,["H1540","(H853)"]],[29,31,["H7379"]]]},{"k":19435,"v":[[0,1,["H7891"]],[1,4,["H3068"]],[4,5,["H1984"]],[5,6,["(H853)"]],[6,8,["H3068"]],[8,9,["H3588"]],[9,12,["H5337","(H853)"]],[12,14,["H5315"]],[14,17,["H34"]],[17,20,["H4480","H3027"]],[20,22,["H7489"]]]},{"k":19436,"v":[[0,1,["H779"]],[1,4,["H3117"]],[4,5,["H834"]],[5,8,["H3205"]],[8,10,["H408"]],[10,12,["H3117"]],[12,13,["H834"]],[13,15,["H517"]],[15,16,["H3205"]],[16,18,["H1961"]],[18,19,["H1288"]]]},{"k":19437,"v":[[0,1,["H779"]],[1,4,["H376"]],[4,5,["H834"]],[5,7,["H1319"]],[7,8,["(H853)"]],[8,10,["H1"]],[10,11,["H559"]],[11,13,["H2145"]],[13,14,["H1121"]],[14,16,["H3205"]],[16,22,["H8055","H8055"]]]},{"k":19438,"v":[[0,3,["H1931"]],[3,4,["H376"]],[4,5,["H1961"]],[5,8,["H5892"]],[8,9,["H834"]],[9,11,["H3068"]],[11,12,["H2015"]],[12,14,["H5162"]],[14,15,["H3808"]],[15,19,["H8085"]],[19,21,["H2201"]],[21,24,["H1242"]],[24,27,["H8643"]],[27,29,["H6256","H6672"]]]},{"k":19439,"v":[[0,1,["H834"]],[1,3,["H4191"]],[3,5,["H3808"]],[5,8,["H4480","H7358"]],[8,12,["H517"]],[12,15,["H1961"]],[15,17,["H6913"]],[17,20,["H7358"]],[20,23,["H5769"]],[23,24,["H2030"]],[24,26,[]]]},{"k":19440,"v":[[0,1,["H4100"]],[1,4,["H3318"]],[4,8,["H4480","H7358"]],[8,10,["H7200"]],[10,11,["H5999"]],[11,13,["H3015"]],[13,16,["H3117"]],[16,19,["H3615"]],[19,21,["H1322"]]]},{"k":19441,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H413"]],[5,6,["H3414"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,11,["H4428"]],[11,12,["H6667"]],[12,13,["H7971"]],[13,14,["H413"]],[14,15,["(H853)"]],[15,16,["H6583"]],[16,18,["H1121"]],[18,20,["H4441"]],[20,22,["H6846"]],[22,24,["H1121"]],[24,26,["H4641"]],[26,28,["H3548"]],[28,29,["H559"]]]},{"k":19442,"v":[[0,1,["H1875"]],[1,4,["H4994"]],[4,5,["(H853)"]],[5,7,["H3068"]],[7,8,["H1157"]],[8,10,["H3588"]],[10,11,["H5019"]],[11,12,["H4428"]],[12,14,["H894"]],[14,16,["H3898"]],[16,17,["H5921"]],[17,21,["H194"]],[21,24,["H3068"]],[24,26,["H6213"]],[26,27,["H854"]],[27,31,["H3605"]],[31,34,["H6381"]],[34,39,["H5927"]],[39,40,["H4480","H5921"]],[40,41,[]]]},{"k":19443,"v":[[0,2,["H559"]],[2,3,["H3414"]],[3,4,["H413"]],[4,6,["H3541"]],[6,9,["H559"]],[9,10,["H413"]],[10,11,["H6667"]]]},{"k":19444,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,8,["H2009"]],[8,12,["H5437","(H853)"]],[12,14,["H3627"]],[14,16,["H4421"]],[16,17,["H834"]],[17,21,["H3027"]],[21,22,["H834"]],[22,23,["H859"]],[23,24,["H3898"]],[24,25,["(H853)"]],[25,27,["H4428"]],[27,29,["H894"]],[29,33,["H3778"]],[33,35,["H6696","H5921"]],[35,37,["H4480","H2351"]],[37,39,["H2346"]],[39,43,["H622"]],[43,45,["H413"]],[45,47,["H8432"]],[47,49,["H2063"]],[49,50,["H5892"]]]},{"k":19445,"v":[[0,3,["H589"]],[3,5,["H3898"]],[5,6,["H854"]],[6,10,["H5186"]],[10,11,["H3027"]],[11,15,["H2389"]],[15,16,["H2220"]],[16,19,["H639"]],[19,22,["H2534"]],[22,25,["H1419"]],[25,26,["H7110"]]]},{"k":19446,"v":[[0,4,["H5221","(H853)"]],[4,6,["H3427"]],[6,8,["H2063"]],[8,9,["H5892"]],[9,11,["H120"]],[11,13,["H929"]],[13,16,["H4191"]],[16,19,["H1419"]],[19,20,["H1698"]]]},{"k":19447,"v":[[0,2,["H310","H3651"]],[2,3,["H5002"]],[3,5,["H3068"]],[5,8,["H5414","(H853)"]],[8,9,["H6667"]],[9,10,["H4428"]],[10,12,["H3063"]],[12,15,["H5650"]],[15,18,["H5971"]],[18,23,["H7604"]],[23,25,["H2063"]],[25,26,["H5892"]],[26,27,["H4480"]],[27,29,["H1698"]],[29,30,["H4480"]],[30,32,["H2719"]],[32,34,["H4480"]],[34,36,["H7458"]],[36,39,["H3027"]],[39,41,["H5019"]],[41,42,["H4428"]],[42,44,["H894"]],[44,48,["H3027"]],[48,51,["H341"]],[51,55,["H3027"]],[55,59,["H1245"]],[59,61,["H5315"]],[61,65,["H5221"]],[65,69,["H6310"]],[69,72,["H2719"]],[72,75,["H3808"]],[75,76,["H2347","H5921"]],[76,78,["H3808"]],[78,80,["H2550"]],[80,81,["H3808"]],[81,83,["H7355"]]]},{"k":19448,"v":[[0,2,["H413"]],[2,3,["H2088"]],[3,4,["H5971"]],[4,7,["H559"]],[7,8,["H3541"]],[8,9,["H559"]],[9,11,["H3068"]],[11,12,["H2009"]],[12,14,["H5414"]],[14,15,["H6440"]],[15,16,["(H853)"]],[16,18,["H1870"]],[18,20,["H2416"]],[20,23,["H1870"]],[23,25,["H4194"]]]},{"k":19449,"v":[[0,3,["H3427"]],[3,5,["H2063"]],[5,6,["H5892"]],[6,8,["H4191"]],[8,11,["H2719"]],[11,15,["H7458"]],[15,19,["H1698"]],[19,24,["H3318"]],[24,26,["H5307"]],[26,27,["H5921"]],[27,29,["H3778"]],[29,31,["H6696","H5921"]],[31,35,["H2421"]],[35,38,["H5315"]],[38,40,["H1961"]],[40,45,["H7998"]]]},{"k":19450,"v":[[0,1,["H3588"]],[1,4,["H7760"]],[4,6,["H6440"]],[6,8,["H2063"]],[8,9,["H5892"]],[9,11,["H7451"]],[11,13,["H3808"]],[13,15,["H2896"]],[15,16,["H5002"]],[16,18,["H3068"]],[18,22,["H5414"]],[22,25,["H3027"]],[25,28,["H4428"]],[28,30,["H894"]],[30,34,["H8313"]],[34,37,["H784"]]]},{"k":19451,"v":[[0,4,["H1004"]],[4,7,["H4428"]],[7,9,["H3063"]],[9,11,["H8085"]],[11,14,["H1697"]],[14,17,["H3068"]]]},{"k":19452,"v":[[0,2,["H1004"]],[2,4,["H1732"]],[4,5,["H3541"]],[5,6,["H559"]],[6,8,["H3068"]],[8,9,["H1777"]],[9,10,["H4941"]],[10,13,["H1242"]],[13,15,["H5337"]],[15,19,["H1497"]],[19,23,["H4480","H3027"]],[23,26,["H6231"]],[26,27,["H6435"]],[27,29,["H2534"]],[29,31,["H3318"]],[31,33,["H784"]],[33,35,["H1197"]],[35,37,["H369"]],[37,39,["H3518"]],[39,41,["H4480","H6440"]],[41,44,["H7455"]],[44,47,["H4611"]]]},{"k":19453,"v":[[0,1,["H2009"]],[1,4,["H413"]],[4,7,["H3427"]],[7,10,["H6010"]],[10,12,["H6697"]],[12,15,["H4334"]],[15,16,["H5002"]],[16,18,["H3068"]],[18,20,["H559"]],[20,21,["H4310"]],[21,24,["H5181"]],[24,25,["H5921"]],[25,28,["H4310"]],[28,30,["H935"]],[30,33,["H4585"]]]},{"k":19454,"v":[[0,4,["H6485","H5921"]],[4,9,["H6529"]],[9,12,["H4611"]],[12,13,["H5002"]],[13,15,["H3068"]],[15,19,["H3341"]],[19,21,["H784"]],[21,24,["H3293"]],[24,29,["H398"]],[29,31,["H3605"]],[31,33,["H5439"]],[33,34,[]]]},{"k":19455,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H3381"]],[6,9,["H1004"]],[9,12,["H4428"]],[12,14,["H3063"]],[14,16,["H1696"]],[16,17,["H8033","(H853)"]],[17,18,["H2088"]],[18,19,["H1697"]]]},{"k":19456,"v":[[0,2,["H559"]],[2,3,["H8085"]],[3,5,["H1697"]],[5,8,["H3068"]],[8,10,["H4428"]],[10,12,["H3063"]],[12,14,["H3427"]],[14,15,["H5921"]],[15,17,["H3678"]],[17,19,["H1732"]],[19,20,["H859"]],[20,23,["H5650"]],[23,26,["H5971"]],[26,28,["H935"]],[28,31,["H428"]],[31,32,["H8179"]]]},{"k":19457,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H6213"]],[5,7,["H4941"]],[7,9,["H6666"]],[9,11,["H5337"]],[11,13,["H1497"]],[13,17,["H4480","H3027"]],[17,20,["H6216"]],[20,23,["H408"]],[23,24,["H3238"]],[24,26,["H408"]],[26,27,["H2554"]],[27,30,["H1616"]],[30,32,["H3490"]],[32,35,["H490"]],[35,36,["H408"]],[36,37,["H8210"]],[37,38,["H5355"]],[38,39,["H1818"]],[39,41,["H2088"]],[41,42,["H4725"]]]},{"k":19458,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,4,["H6213","(H853)"]],[4,5,["H2088"]],[5,6,["H1697"]],[6,7,["H6213"]],[7,12,["H935"]],[12,15,["H8179"]],[15,17,["H2088"]],[17,18,["H1004"]],[18,19,["H4428"]],[19,20,["H3427"]],[20,21,["H5921"]],[21,23,["H3678"]],[23,25,["H1732"]],[25,26,["H7392"]],[26,28,["H7393"]],[28,31,["H5483"]],[31,32,["H1931"]],[32,35,["H5650"]],[35,38,["H5971"]]]},{"k":19459,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,6,["H8085","(H853)"]],[6,7,["H428"]],[7,8,["H1697"]],[8,10,["H7650"]],[10,13,["H5002"]],[13,15,["H3068"]],[15,16,["H3588"]],[16,17,["H2088"]],[17,18,["H1004"]],[18,20,["H1961"]],[20,22,["H2723"]]]},{"k":19460,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H5921"]],[6,8,["H4428"]],[8,9,["H1004"]],[9,11,["H3063"]],[11,12,["H859"]],[12,14,["H1568"]],[14,19,["H7218"]],[19,21,["H3844"]],[21,23,["H518","H3808"]],[23,26,["H7896"]],[26,29,["H4057"]],[29,31,["H5892"]],[31,34,["H3808"]],[34,35,["H3427"]]]},{"k":19461,"v":[[0,4,["H6942"]],[4,5,["H7843"]],[5,6,["H5921"]],[6,9,["H376"]],[9,12,["H3627"]],[12,17,["H3772"]],[17,19,["H4005"]],[19,20,["H730"]],[20,22,["H5307"]],[22,24,["H5921"]],[24,26,["H784"]]]},{"k":19462,"v":[[0,2,["H7227"]],[2,3,["H1471"]],[3,5,["H5674"]],[5,6,["H5921"]],[6,7,["H2063"]],[7,8,["H5892"]],[8,12,["H559"]],[12,14,["H376"]],[14,15,["H413"]],[15,17,["H7453"]],[17,18,["H5921","H4100"]],[18,21,["H3068"]],[21,22,["H6213"]],[22,23,["H3602"]],[23,25,["H2063"]],[25,26,["H1419"]],[26,27,["H5892"]]]},{"k":19463,"v":[[0,4,["H559"]],[4,5,["H5921","H834"]],[5,8,["H5800","(H853)"]],[8,10,["H1285"]],[10,13,["H3068"]],[13,15,["H430"]],[15,17,["H7812"]],[17,18,["H312"]],[18,19,["H430"]],[19,21,["H5647"]],[21,22,[]]]},{"k":19464,"v":[[0,1,["H1058"]],[1,3,["H408"]],[3,6,["H4191"]],[6,7,["H408"]],[7,8,["H5110"]],[8,12,["H1058","H1058"]],[12,17,["H1980"]],[17,18,["H3588"]],[18,21,["H7725"]],[21,22,["H3808"]],[22,23,["H5750"]],[23,25,["H7200","(H853)"]],[25,27,["H4138"]],[27,28,["H776"]]]},{"k":19465,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H413"]],[6,7,["H7967"]],[7,9,["H1121"]],[9,11,["H2977"]],[11,12,["H4428"]],[12,14,["H3063"]],[14,16,["H4427"]],[16,17,["H8478"]],[17,19,["H2977"]],[19,21,["H1"]],[21,22,["H834"]],[22,24,["H3318"]],[24,26,["H4480"]],[26,27,["H2088"]],[27,28,["H4725"]],[28,31,["H3808"]],[31,32,["H7725"]],[32,33,["H8033"]],[33,35,["H5750"]]]},{"k":19466,"v":[[0,1,["H3588"]],[1,4,["H4191"]],[4,7,["H4725"]],[7,8,["H834","H8033"]],[8,13,["H1540","(H853)"]],[13,16,["H7200"]],[16,17,["H2063"]],[17,18,["H776"]],[18,19,["H3808"]],[19,20,["H5750"]]]},{"k":19467,"v":[[0,1,["H1945"]],[1,5,["H1129"]],[5,7,["H1004"]],[7,9,["H3808","H6664"]],[9,12,["H5944"]],[12,14,["H3808","H4941"]],[14,18,["H7453"]],[18,19,["H5647"]],[19,21,["H2600"]],[21,23,["H5414"]],[23,25,["H3808"]],[25,28,["H6467"]]]},{"k":19468,"v":[[0,2,["H559"]],[2,5,["H1129"]],[5,8,["H4060"]],[8,9,["H1004"]],[9,11,["H7304"]],[11,12,["H5944"]],[12,16,["H7167"]],[16,17,["H2474"]],[17,21,["H5603"]],[21,23,["H730"]],[23,25,["H4886"]],[25,27,["H8350"]]]},{"k":19469,"v":[[0,3,["H4427"]],[3,4,["H3588"]],[4,5,["H859"]],[5,6,["H8474"]],[6,9,["H730"]],[9,11,["H3808"]],[11,13,["H1"]],[13,14,["H398"]],[14,16,["H8354"]],[16,18,["H6213"]],[18,19,["H4941"]],[19,21,["H6666"]],[21,23,["H227"]],[23,26,["H2896"]],[26,28,[]]]},{"k":19470,"v":[[0,2,["H1777"]],[2,4,["H1779"]],[4,7,["H6041"]],[7,9,["H34"]],[9,10,["H227"]],[10,13,["H2896"]],[13,17,["H3808"]],[17,18,["H1931"]],[18,20,["H1847"]],[20,22,["H5002"]],[22,24,["H3068"]]]},{"k":19471,"v":[[0,1,["H3588"]],[1,3,["H5869"]],[3,6,["H3820"]],[6,8,["H369"]],[8,10,["H3588","H518","H5921"]],[10,12,["H1215"]],[12,14,["H5921"]],[14,16,["H8210"]],[16,17,["H5355"]],[17,18,["H1818"]],[18,20,["H5921"]],[20,21,["H6233"]],[21,23,["H5921"]],[23,24,["H4835"]],[24,26,["H6213"]],[26,27,[]]]},{"k":19472,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H413"]],[6,7,["H3079"]],[7,9,["H1121"]],[9,11,["H2977"]],[11,12,["H4428"]],[12,14,["H3063"]],[14,17,["H3808"]],[17,18,["H5594"]],[18,22,["H1945"]],[22,24,["H251"]],[24,26,["H1945"]],[26,27,["H269"]],[27,30,["H3808"]],[30,31,["H5594"]],[31,35,["H1945"]],[35,36,["H113"]],[36,38,["H1945"]],[38,40,["H1935"]]]},{"k":19473,"v":[[0,4,["H6912"]],[4,7,["H6900"]],[7,10,["H2543"]],[10,11,["H5498"]],[11,14,["H7993"]],[14,15,["H4480","H1973"]],[15,17,["H8179"]],[17,19,["H3389"]]]},{"k":19474,"v":[[0,2,["H5927"]],[2,4,["H3844"]],[4,6,["H6817"]],[6,9,["H5414"]],[9,11,["H6963"]],[11,13,["H1316"]],[13,15,["H6817"]],[15,18,["H4480","H5676"]],[18,19,["H3588"]],[19,20,["H3605"]],[20,22,["H157"]],[22,24,["H7665"]]]},{"k":19475,"v":[[0,2,["H1696"]],[2,3,["H413"]],[3,7,["H7962"]],[7,10,["H559"]],[10,13,["H3808"]],[13,14,["H8085"]],[14,15,["H2088"]],[15,19,["H1870"]],[19,22,["H4480","H5271"]],[22,23,["H3588"]],[23,25,["H8085"]],[25,26,["H3808"]],[26,28,["H6963"]]]},{"k":19476,"v":[[0,2,["H7307"]],[2,5,["H7462"]],[5,6,["H3605"]],[6,8,["H7462"]],[8,11,["H157"]],[11,13,["H1980"]],[13,15,["H7628"]],[15,16,["H3588"]],[16,17,["H227"]],[17,21,["H954"]],[21,23,["H3637"]],[23,25,["H4480","H3605"]],[25,27,["H7451"]]]},{"k":19477,"v":[[0,2,["H3427"]],[2,4,["H3844"]],[4,8,["H7077"]],[8,11,["H730"]],[11,12,["H4100"]],[12,13,["H2603"]],[13,18,["H2256"]],[18,19,["H935"]],[19,23,["H2427"]],[23,29,["H3205"]]]},{"k":19478,"v":[[0,2,["H589"]],[2,3,["H2416"]],[3,4,["H5002"]],[4,6,["H3068"]],[6,7,["H3588","H518"]],[7,8,["H3659"]],[8,10,["H1121"]],[10,12,["H3079"]],[12,13,["H4428"]],[13,15,["H3063"]],[15,16,["H1961"]],[16,18,["H2368"]],[18,19,["H5921"]],[19,21,["H3225"]],[21,22,["H3027"]],[22,23,["H3588"]],[23,26,["H5423"]],[26,28,["H4480","H8033"]]]},{"k":19479,"v":[[0,4,["H5414"]],[4,8,["H3027"]],[8,12,["H1245"]],[12,14,["H5315"]],[14,18,["H3027"]],[18,21,["H834"]],[21,22,["H4480","H6440"]],[22,23,["H859"]],[23,24,["H3016"]],[24,28,["H3027"]],[28,30,["H5019"]],[30,31,["H4428"]],[31,33,["H894"]],[33,37,["H3027"]],[37,40,["H3778"]]]},{"k":19480,"v":[[0,6,["H2904","(H853)"]],[6,9,["H517"]],[9,10,["H834"]],[10,11,["H3205"]],[11,13,["H5921"]],[13,14,["H312"]],[14,15,["H776"]],[15,16,["H834","H8033"]],[16,19,["H3808"]],[19,20,["H3205"]],[20,22,["H8033"]],[22,25,["H4191"]]]},{"k":19481,"v":[[0,2,["H5921"]],[2,4,["H776"]],[4,5,["H834","H8033"]],[5,6,["H1992"]],[6,7,["H5375","(H853)","H5315"]],[7,9,["H7725"]],[9,10,["H8033"]],[10,13,["H3808"]],[13,14,["H7725"]]]},{"k":19482,"v":[[0,2,["H2088"]],[2,3,["H376"]],[3,4,["H3659"]],[4,6,["H959"]],[6,7,["H5310"]],[7,8,["H6089"]],[8,12,["H3627"]],[12,15,["H369"]],[15,16,["H2656"]],[16,17,["H4069"]],[17,21,["H2904"]],[21,22,["H1931"]],[22,25,["H2233"]],[25,28,["H7993"]],[28,29,["H5921"]],[29,31,["H776"]],[31,32,["H834"]],[32,34,["H3045"]],[34,35,["H3808"]]]},{"k":19483,"v":[[0,2,["H776"]],[2,3,["H776"]],[3,4,["H776"]],[4,5,["H8085"]],[5,7,["H1697"]],[7,10,["H3068"]]]},{"k":19484,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H3789"]],[5,6,["(H853)"]],[6,7,["H2088"]],[7,8,["H376"]],[8,9,["H6185"]],[9,11,["H1397"]],[11,14,["H3808"]],[14,15,["H6743"]],[15,18,["H3117"]],[18,19,["H3588"]],[19,20,["H3808"]],[20,21,["H376"]],[21,24,["H4480","H2233"]],[24,26,["H6743"]],[26,27,["H3427"]],[27,28,["H5921"]],[28,30,["H3678"]],[30,32,["H1732"]],[32,34,["H4910"]],[34,36,["H5750"]],[36,38,["H3063"]]]},{"k":19485,"v":[[0,1,["H1945"]],[1,5,["H7462"]],[5,7,["H6"]],[7,9,["H6327","(H853)"]],[9,11,["H6629"]],[11,14,["H4830"]],[14,15,["H5002"]],[15,17,["H3068"]]]},{"k":19486,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H430"]],[6,8,["H3478"]],[8,9,["H5921"]],[9,11,["H7462"]],[11,13,["H7462","(H853)"]],[13,15,["H5971"]],[15,16,["H859"]],[16,18,["H6327","(H853)"]],[18,20,["H6629"]],[20,24,["H5080"]],[24,27,["H3808"]],[27,28,["H6485"]],[28,30,["H2009"]],[30,33,["H6485"]],[33,34,["H5921"]],[34,35,["(H853)"]],[35,37,["H7455"]],[37,40,["H4611"]],[40,41,["H5002"]],[41,43,["H3068"]]]},{"k":19487,"v":[[0,2,["H589"]],[2,4,["H6908","(H853)"]],[4,6,["H7611"]],[6,9,["H6629"]],[9,12,["H4480","H3605"]],[12,13,["H776"]],[13,14,["H834","H8033"]],[14,17,["H5080"]],[17,23,["H7725","(H853)"]],[23,24,["H5921"]],[24,26,["H5116"]],[26,31,["H6509"]],[31,33,["H7235"]]]},{"k":19488,"v":[[0,5,["H6965"]],[5,6,["H7462"]],[6,7,["H5921"]],[7,11,["H7462"]],[11,16,["H3372"]],[16,17,["H3808"]],[17,18,["H5750"]],[18,19,["H3808"]],[19,21,["H2865"]],[21,22,["H3808"]],[22,26,["H6485"]],[26,27,["H5002"]],[27,29,["H3068"]]]},{"k":19489,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,11,["H6965"]],[11,13,["H1732"]],[13,15,["H6662"]],[15,16,["H6780"]],[16,19,["H4428"]],[19,21,["H4427"]],[21,23,["H7919"]],[23,26,["H6213"]],[26,27,["H4941"]],[27,29,["H6666"]],[29,32,["H776"]]]},{"k":19490,"v":[[0,3,["H3117"]],[3,4,["H3063"]],[4,7,["H3467"]],[7,9,["H3478"]],[9,11,["H7931"]],[11,12,["H983"]],[12,14,["H2088"]],[14,17,["H8034"]],[17,18,["H834"]],[18,22,["H7121"]],[22,24,["H3068"]],[24,26,["H6664"]]]},{"k":19491,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,4,["H3117"]],[4,5,["H935"]],[5,6,["H5002"]],[6,8,["H3068"]],[8,12,["H3808"]],[12,13,["H5750"]],[13,14,["H559"]],[14,16,["H3068"]],[16,17,["H2416"]],[17,18,["H834"]],[18,20,["H5927","(H853)"]],[20,22,["H1121"]],[22,24,["H3478"]],[24,28,["H4480","H776"]],[28,30,["H4714"]]]},{"k":19492,"v":[[0,1,["H3588","H518"]],[1,3,["H3068"]],[3,4,["H2416"]],[4,5,["H834"]],[5,7,["H5927"]],[7,9,["H834"]],[9,10,["H935","(H853)"]],[10,12,["H2233"]],[12,15,["H1004"]],[15,17,["H3478"]],[17,21,["H6828"]],[21,22,["H4480","H776"]],[22,25,["H4480","H3605"]],[25,26,["H776"]],[26,27,["H834","H8033"]],[27,30,["H5080"]],[30,35,["H3427"]],[35,36,["H5921"]],[36,39,["H127"]]]},{"k":19493,"v":[[0,2,["H3820"]],[2,3,["H7130"]],[3,6,["H7665"]],[6,10,["H5030"]],[10,11,["H3605"]],[11,13,["H6106"]],[13,14,["H7363"]],[14,16,["H1961"]],[16,19,["H7910"]],[19,20,["H376"]],[20,24,["H1397"]],[24,26,["H3196"]],[26,28,["H5674"]],[28,29,["H4480","H6440"]],[29,32,["H3068"]],[32,34,["H4480","H6440"]],[34,37,["H1697"]],[37,40,["H6944"]]]},{"k":19494,"v":[[0,1,["H3588"]],[1,3,["H776"]],[3,5,["H4390"]],[5,7,["H5003"]],[7,8,["H3588"]],[8,9,["H4480","H6440"]],[9,11,["H423"]],[11,13,["H776"]],[13,14,["H56"]],[14,17,["H4999"]],[17,20,["H4057"]],[20,23,["H3001"]],[23,26,["H4794"]],[26,27,["H1961"]],[27,28,["H7451"]],[28,31,["H1369"]],[31,33,["H3808"]],[33,34,["H3651"]]]},{"k":19495,"v":[[0,1,["H3588"]],[1,2,["H1571"]],[2,3,["H5030"]],[3,4,["H1571"]],[4,5,["H3548"]],[5,7,["H2610"]],[7,8,["H1571"]],[8,11,["H1004"]],[11,14,["H4672"]],[14,16,["H7451"]],[16,17,["H5002"]],[17,19,["H3068"]]]},{"k":19496,"v":[[0,1,["H3651"]],[1,3,["H1870"]],[3,5,["H1961"]],[5,9,["H2519"]],[9,13,["H653"]],[13,18,["H1760"]],[18,20,["H5307"]],[20,22,["H3588"]],[22,25,["H935"]],[25,26,["H7451"]],[26,27,["H5921"]],[27,31,["H8141"]],[31,34,["H6486"]],[34,35,["H5002"]],[35,37,["H3068"]]]},{"k":19497,"v":[[0,4,["H7200"]],[4,5,["H8604"]],[5,8,["H5030"]],[8,10,["H8111"]],[10,12,["H5012"]],[12,14,["H1168"]],[14,16,["(H853)"]],[16,18,["H5971","(H853)"]],[18,19,["H3478"]],[19,21,["H8582"]]]},{"k":19498,"v":[[0,3,["H7200"]],[3,7,["H5030"]],[7,9,["H3389"]],[9,12,["H8186"]],[12,15,["H5003"]],[15,17,["H1980"]],[17,19,["H8267"]],[19,21,["H2388"]],[21,24,["H3027"]],[24,26,["H7489"]],[26,28,["H1115","H376"]],[28,30,["H7725"]],[30,33,["H4480","H7451"]],[33,35,["H1961"]],[35,36,["H3605"]],[36,42,["H5467"]],[42,45,["H3427"]],[45,48,["H6017"]]]},{"k":19499,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,8,["H5921"]],[8,10,["H5030"]],[10,11,["H2009"]],[11,14,["H398"]],[14,17,["H3939"]],[17,21,["H8248"]],[21,23,["H4325"]],[23,25,["H7219"]],[25,26,["H3588"]],[26,27,["H4480","H854"]],[27,29,["H5030"]],[29,31,["H3389"]],[31,33,["H2613"]],[33,35,["H3318"]],[35,37,["H3605"]],[37,39,["H776"]]]},{"k":19500,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H8085"]],[7,8,["H408"]],[8,9,["H5921"]],[9,11,["H1697"]],[11,14,["H5030"]],[14,16,["H5012"]],[16,22,["H1891","(H853)"]],[22,23,["H1992"]],[23,24,["H1696"]],[24,26,["H2377"]],[26,30,["H3820"]],[30,32,["H3808"]],[32,36,["H4480","H6310"]],[36,39,["H3068"]]]},{"k":19501,"v":[[0,3,["H559","H559"]],[3,7,["H5006"]],[7,10,["H3068"]],[10,12,["H1696"]],[12,15,["H1961"]],[15,16,["H7965"]],[16,19,["H559"]],[19,22,["H3605"]],[22,24,["H1980"]],[24,27,["H8307"]],[27,31,["H3820"]],[31,32,["H3808"]],[32,33,["H7451"]],[33,35,["H935"]],[35,36,["H5921"]],[36,37,[]]]},{"k":19502,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,4,["H5975"]],[4,7,["H5475"]],[7,10,["H3068"]],[10,13,["H7200"]],[13,15,["H8085","(H853)"]],[15,17,["H1697"]],[17,18,["H4310"]],[18,20,["H7181"]],[20,22,["H1697"]],[22,24,["H8085"]],[24,25,[]]]},{"k":19503,"v":[[0,1,["H2009"]],[1,3,["H5591"]],[3,6,["H3068"]],[6,9,["H3318"]],[9,11,["H2534"]],[11,14,["H2342"]],[14,15,["H5591"]],[15,19,["H2342"]],[19,20,["H5921"]],[20,22,["H7218"]],[22,25,["H7563"]]]},{"k":19504,"v":[[0,2,["H639"]],[2,5,["H3068"]],[5,7,["H3808"]],[7,8,["H7725"]],[8,9,["H5704"]],[9,12,["H6213"]],[12,14,["H5704"]],[14,17,["H6965"]],[17,19,["H4209"]],[19,22,["H3820"]],[22,25,["H319"]],[25,26,["H3117"]],[26,29,["H995"]],[29,31,["H998"]]]},{"k":19505,"v":[[0,3,["H3808"]],[3,4,["H7971","(H853)"]],[4,6,["H5030"]],[6,8,["H1992"]],[8,9,["H7323"]],[9,12,["H3808"]],[12,13,["H1696"]],[13,14,["H413"]],[14,17,["H1992"]],[17,18,["H5012"]]]},{"k":19506,"v":[[0,2,["H518"]],[2,5,["H5975"]],[5,8,["H5475"]],[8,11,["(H853)"]],[11,13,["H5971"]],[13,15,["H8085"]],[15,17,["H1697"]],[17,22,["H7725"]],[22,26,["H7451"]],[26,27,["H4480","H1870"]],[27,31,["H4480","H7455"]],[31,34,["H4611"]]]},{"k":19507,"v":[[0,2,["H589"]],[2,4,["H430"]],[4,6,["H4480","H7138"]],[6,7,["H5002"]],[7,9,["H3068"]],[9,11,["H3808"]],[11,13,["H430"]],[13,15,["H4480","H7350"]]]},{"k":19508,"v":[[0,1,["H518"]],[1,2,["H376"]],[2,4,["H5641"]],[4,7,["H4565"]],[7,9,["H589"]],[9,11,["H3808"]],[11,12,["H7200"]],[12,14,["H5002"]],[14,16,["H3068"]],[16,18,["H3808"]],[18,19,["H589"]],[19,20,["H4390","(H853)"]],[20,21,["H8064"]],[21,23,["H776"]],[23,24,["H5002"]],[24,26,["H3068"]]]},{"k":19509,"v":[[0,3,["H8085","(H853)"]],[3,4,["H834"]],[4,6,["H5030"]],[6,7,["H559"]],[7,9,["H5012"]],[9,10,["H8267"]],[10,13,["H8034"]],[13,14,["H559"]],[14,17,["H2492"]],[17,20,["H2492"]]]},{"k":19510,"v":[[0,2,["H5704","H4970"]],[2,5,["H3426"]],[5,8,["H3820"]],[8,11,["H5030"]],[11,13,["H5012"]],[13,14,["H8267"]],[14,18,["H5030"]],[18,21,["H8649"]],[21,25,["H3820"]]]},{"k":19511,"v":[[0,2,["H2803"]],[2,4,["(H853)"]],[4,6,["H5971"]],[6,8,["H7911"]],[8,10,["H8034"]],[10,13,["H2472"]],[13,14,["H834"]],[14,16,["H5608"]],[16,18,["H376"]],[18,21,["H7453"]],[21,22,["H834"]],[22,24,["H1"]],[24,26,["H7911","(H853)"]],[26,28,["H8034"]],[28,30,["H1168"]]]},{"k":19512,"v":[[0,2,["H5030"]],[2,3,["H834","H854"]],[3,6,["H2472"]],[6,9,["H5608"]],[9,11,["H2472"]],[11,14,["H834","H854"]],[14,17,["H1697"]],[17,20,["H1696"]],[20,22,["H1697"]],[22,23,["H571"]],[23,24,["H4100"]],[24,27,["H8401"]],[27,28,["H854"]],[28,30,["H1250"]],[30,31,["H5002"]],[31,33,["H3068"]]]},{"k":19513,"v":[[0,2,["H3808"]],[2,4,["H1697"]],[4,5,["H3541"]],[5,8,["H784"]],[8,9,["H5002"]],[9,11,["H3068"]],[11,15,["H6360"]],[15,17,["H6327"]],[17,19,["H5553"]],[19,21,[]]]},{"k":19514,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,5,["H5921"]],[5,7,["H5030"]],[7,8,["H5002"]],[8,10,["H3068"]],[10,12,["H1589"]],[12,14,["H1697"]],[14,16,["H376"]],[16,17,["H4480","H854"]],[17,19,["H7453"]]]},{"k":19515,"v":[[0,1,["H2009"]],[1,4,["H5921"]],[4,6,["H5030"]],[6,7,["H5002"]],[7,9,["H3068"]],[9,11,["H3947"]],[11,13,["H3956"]],[13,15,["H5001"]],[15,17,["H5002"]]]},{"k":19516,"v":[[0,1,["H2009"]],[1,4,["H5921"]],[4,7,["H5012"]],[7,8,["H8267"]],[8,9,["H2472"]],[9,10,["H5002"]],[10,12,["H3068"]],[12,15,["H5608"]],[15,18,["(H853)"]],[18,20,["H5971"]],[20,22,["H8582"]],[22,25,["H8267"]],[25,29,["H6350"]],[29,31,["H595"]],[31,32,["H7971"]],[32,34,["H3808"]],[34,35,["H3808"]],[35,36,["H6680"]],[36,41,["H3808"]],[41,46,["H3276","H3276","H5971","H2088"]],[46,47,["H5002"]],[47,49,["H3068"]]]},{"k":19517,"v":[[0,2,["H3588"]],[2,3,["H2088"]],[3,4,["H5971"]],[4,5,["H176"]],[5,7,["H5030"]],[7,8,["H176"]],[8,10,["H3548"]],[10,12,["H7592"]],[12,14,["H559"]],[14,15,["H4100"]],[15,18,["H4853"]],[18,21,["H3068"]],[21,25,["H559"]],[25,26,["H413"]],[26,27,["(H853)"]],[27,28,["H4100"]],[28,29,["H4853"]],[29,33,["H5203"]],[33,35,["H5002"]],[35,37,["H3068"]]]},{"k":19518,"v":[[0,5,["H5030"]],[5,8,["H3548"]],[8,11,["H5971"]],[11,12,["H834"]],[12,14,["H559"]],[14,16,["H4853"]],[16,19,["H3068"]],[19,23,["H6485","H5921"]],[23,24,["H1931"]],[24,25,["H376"]],[25,28,["H1004"]]]},{"k":19519,"v":[[0,1,["H3541"]],[1,4,["H559"]],[4,6,["H376"]],[6,7,["H5921"]],[7,9,["H7453"]],[9,12,["H376"]],[12,13,["H413"]],[13,15,["H251"]],[15,16,["H4100"]],[16,19,["H3068"]],[19,20,["H6030"]],[20,22,["H4100"]],[22,25,["H3068"]],[25,26,["H1696"]]]},{"k":19520,"v":[[0,3,["H4853"]],[3,6,["H3068"]],[6,9,["H2142"]],[9,10,["H3808"]],[10,11,["H5750"]],[11,12,["H3588"]],[12,14,["H376"]],[14,15,["H1697"]],[15,17,["H1961"]],[17,19,["H4853"]],[19,23,["H2015","(H853)"]],[23,25,["H1697"]],[25,28,["H2416"]],[28,29,["H430"]],[29,32,["H3068"]],[32,34,["H6635"]],[34,36,["H430"]]]},{"k":19521,"v":[[0,1,["H3541"]],[1,4,["H559"]],[4,5,["H413"]],[5,7,["H5030"]],[7,8,["H4100"]],[8,11,["H3068"]],[11,12,["H6030"]],[12,15,["H4100"]],[15,18,["H3068"]],[18,19,["H1696"]]]},{"k":19522,"v":[[0,2,["H518"]],[2,4,["H559"]],[4,6,["H4853"]],[6,9,["H3068"]],[9,10,["H3651"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H3068"]],[14,15,["H3282"]],[15,17,["H559","(H853)"]],[17,18,["H2088"]],[18,19,["H1697"]],[19,21,["H4853"]],[21,24,["H3068"]],[24,28,["H7971"]],[28,29,["H413"]],[29,31,["H559"]],[31,34,["H3808"]],[34,35,["H559"]],[35,37,["H4853"]],[37,40,["H3068"]]]},{"k":19523,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,8,["H5382","H5382"]],[8,13,["H5203"]],[13,17,["H5892"]],[17,18,["H834"]],[18,20,["H5414"]],[20,24,["H1"]],[24,29,["H4480","H5921"]],[29,31,["H6440"]]]},{"k":19524,"v":[[0,4,["H5414"]],[4,6,["H5769"]],[6,7,["H2781"]],[7,8,["H5921"]],[8,12,["H5769"]],[12,13,["H3640"]],[13,14,["H834"]],[14,16,["H3808"]],[16,18,["H7911"]]]},{"k":19525,"v":[[0,2,["H3068"]],[2,3,["H7200"]],[3,6,["H2009"]],[6,7,["H8147"]],[7,8,["H1736"]],[8,10,["H8384"]],[10,12,["H3259"]],[12,13,["H6440"]],[13,15,["H1964"]],[15,18,["H3068"]],[18,20,["H310"]],[20,21,["H5019"]],[21,22,["H4428"]],[22,24,["H894"]],[24,28,["H1540","(H853)"]],[28,29,["H3204"]],[29,31,["H1121"]],[31,33,["H3079"]],[33,34,["H4428"]],[34,36,["H3063"]],[36,39,["H8269"]],[39,41,["H3063"]],[41,42,["H854"]],[42,44,["H2796"]],[44,46,["H4525"]],[46,48,["H4480","H3389"]],[48,51,["H935"]],[51,54,["H894"]]]},{"k":19526,"v":[[0,1,["H259"]],[1,2,["H1731"]],[2,4,["H3966"]],[4,5,["H2896"]],[5,6,["H8384"]],[6,10,["H8384"]],[10,14,["H1073"]],[14,17,["H259"]],[17,18,["H1731"]],[18,20,["H3966"]],[20,21,["H7451"]],[21,22,["H8384"]],[22,23,["H834"]],[23,25,["H3808"]],[25,27,["H398"]],[27,31,["H4480","H7455"]]]},{"k":19527,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,7,["H4100"]],[7,8,["H7200"]],[8,9,["H859"]],[9,10,["H3414"]],[10,13,["H559"]],[13,14,["H8384"]],[14,16,["H2896"]],[16,17,["H8384"]],[17,18,["H3966"]],[18,19,["H2896"]],[19,22,["H7451"]],[22,23,["H3966"]],[23,24,["H7451"]],[24,25,["H834"]],[25,26,["H3808"]],[26,28,["H398"]],[28,32,["H4480","H7455"]]]},{"k":19528,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":19529,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H430"]],[6,8,["H3478"]],[8,10,["H428"]],[10,11,["H2896"]],[11,12,["H8384"]],[12,13,["H3651"]],[13,16,["H5234","(H853)"]],[16,22,["H1546"]],[22,24,["H3063"]],[24,25,["H834"]],[25,28,["H7971"]],[28,30,["H4480"]],[30,31,["H2088"]],[31,32,["H4725"]],[32,35,["H776"]],[35,38,["H3778"]],[38,41,["H2896"]]]},{"k":19530,"v":[[0,4,["H7760"]],[4,6,["H5869"]],[6,7,["H5921"]],[7,10,["H2896"]],[10,16,["H7725"]],[16,17,["H5921"]],[17,18,["H2063"]],[18,19,["H776"]],[19,23,["H1129"]],[23,26,["H3808"]],[26,29,["H2040"]],[29,33,["H5193"]],[33,36,["H3808"]],[36,39,["H5428"]]]},{"k":19531,"v":[[0,4,["H5414"]],[4,7,["H3820"]],[7,9,["H3045"]],[9,11,["H3588"]],[11,12,["H589"]],[12,15,["H3068"]],[15,19,["H1961"]],[19,21,["H5971"]],[21,23,["H595"]],[23,25,["H1961"]],[25,27,["H430"]],[27,28,["H3588"]],[28,31,["H7725"]],[31,32,["H413"]],[32,36,["H3605"]],[36,37,["H3820"]]]},{"k":19532,"v":[[0,4,["H7451"]],[4,5,["H8384"]],[5,6,["H834"]],[6,7,["H3808"]],[7,9,["H398"]],[9,13,["H4480","H7455"]],[13,14,["H3588"]],[14,15,["H3541"]],[15,16,["H559"]],[16,18,["H3068"]],[18,19,["H3651"]],[19,22,["H5414","(H853)"]],[22,23,["H6667"]],[23,25,["H4428"]],[25,27,["H3063"]],[27,30,["H8269"]],[30,33,["H7611"]],[33,35,["H3389"]],[35,37,["H7604"]],[37,39,["H2063"]],[39,40,["H776"]],[40,44,["H3427"]],[44,47,["H776"]],[47,49,["H4714"]]]},{"k":19533,"v":[[0,4,["H5414"]],[4,8,["H2189"]],[8,10,["H3605"]],[10,12,["H4467"]],[12,15,["H776"]],[15,18,["H7451"]],[18,22,["H2781"]],[22,25,["H4912"]],[25,27,["H8148"]],[27,30,["H7045"]],[30,32,["H3605"]],[32,33,["H4725"]],[33,34,["H834","H8033"]],[34,37,["H5080"]],[37,38,[]]]},{"k":19534,"v":[[0,4,["H7971","(H853)"]],[4,6,["H2719","(H853)"]],[6,8,["H7458"]],[8,11,["H1698"]],[11,14,["H5704"]],[14,17,["H8552"]],[17,19,["H4480","H5921"]],[19,21,["H127"]],[21,22,["H834"]],[22,24,["H5414"]],[24,30,["H1"]]]},{"k":19535,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H5921"]],[5,6,["H3414"]],[6,7,["H5921"]],[7,8,["H3605"]],[8,10,["H5971"]],[10,12,["H3063"]],[12,15,["H7243"]],[15,16,["H8141"]],[16,18,["H3079"]],[18,20,["H1121"]],[20,22,["H2977"]],[22,23,["H4428"]],[23,25,["H3063"]],[25,26,["H1931"]],[26,29,["H7224"]],[29,30,["H8141"]],[30,32,["H5019"]],[32,33,["H4428"]],[33,35,["H894"]]]},{"k":19536,"v":[[0,2,["H834"]],[2,3,["H3414"]],[3,5,["H5030"]],[5,6,["H1696"]],[6,7,["H5921"]],[7,8,["H3605"]],[8,10,["H5971"]],[10,12,["H3063"]],[12,14,["H413"]],[14,15,["H3605"]],[15,17,["H3427"]],[17,19,["H3389"]],[19,20,["H559"]]]},{"k":19537,"v":[[0,1,["H4480"]],[1,3,["H7969","H6240"]],[3,4,["H8141"]],[4,6,["H2977"]],[6,8,["H1121"]],[8,10,["H526"]],[10,11,["H4428"]],[11,13,["H3063"]],[13,15,["H5704"]],[15,16,["H2088"]],[16,17,["H3117"]],[17,18,["H2088"]],[18,21,["H7969"]],[21,23,["H6242"]],[23,24,["H8141"]],[24,26,["H1697"]],[26,29,["H3068"]],[29,31,["H1961"]],[31,32,["H413"]],[32,37,["H1696"]],[37,38,["H413"]],[38,41,["H7925"]],[41,43,["H1696"]],[43,47,["H3808"]],[47,48,["H8085"]]]},{"k":19538,"v":[[0,3,["H3068"]],[3,5,["H7971"]],[5,6,["H413"]],[6,7,["(H853)"]],[7,8,["H3605"]],[8,10,["H5650"]],[10,12,["H5030"]],[12,14,["H7925"]],[14,16,["H7971"]],[16,21,["H3808"]],[21,22,["H8085"]],[22,23,["H3808"]],[23,24,["H5186","(H853)"]],[24,26,["H241"]],[26,28,["H8085"]]]},{"k":19539,"v":[[0,2,["H559"]],[2,5,["H7725"]],[5,6,["H4994"]],[6,8,["H376"]],[8,11,["H7451"]],[11,12,["H4480","H1870"]],[12,16,["H4480","H7455"]],[16,19,["H4611"]],[19,21,["H3427"]],[21,22,["H5921"]],[22,24,["H127"]],[24,25,["H834"]],[25,27,["H3068"]],[27,29,["H5414"]],[29,35,["H1"]],[35,37,["H5769"]],[37,39,["H5704","H5769"]]]},{"k":19540,"v":[[0,2,["H1980"]],[2,3,["H408"]],[3,4,["H310"]],[4,5,["H312"]],[5,6,["H430"]],[6,8,["H5647"]],[8,12,["H7812"]],[12,19,["H3808","H3707","(H853)"]],[19,22,["H4639"]],[22,25,["H3027"]],[25,32,["H3808","H7489"]]]},{"k":19541,"v":[[0,4,["H3808"]],[4,5,["H8085"]],[5,6,["H413"]],[6,8,["H5002"]],[8,10,["H3068"]],[10,11,["H4616"]],[11,17,["H3707"]],[17,20,["H4639"]],[20,23,["H3027"]],[23,27,["H7451"]]]},{"k":19542,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,8,["H3282","H834"]],[8,11,["H3808"]],[11,12,["H8085","(H853)"]],[12,14,["H1697"]]]},{"k":19543,"v":[[0,1,["H2009"]],[1,4,["H7971"]],[4,6,["H3947","(H853)"]],[6,7,["H3605"]],[7,9,["H4940"]],[9,12,["H6828"]],[12,13,["H5002"]],[13,15,["H3068"]],[15,17,["H5019"]],[17,19,["H4428"]],[19,21,["H894"]],[21,23,["H5650"]],[23,26,["H935"]],[26,28,["H5921"]],[28,29,["H2063"]],[29,30,["H776"]],[30,32,["H5921"]],[32,34,["H3427"]],[34,37,["H5921"]],[37,38,["H3605"]],[38,39,["H428"]],[39,40,["H1471"]],[40,42,["H5439"]],[42,46,["H2763"]],[46,49,["H7760"]],[49,52,["H8047"]],[52,55,["H8322"]],[55,57,["H5769"]],[57,58,["H2723"]]]},{"k":19544,"v":[[0,4,["H6"]],[4,5,["H4480"]],[5,8,["H6963"]],[8,10,["H8342"]],[10,13,["H6963"]],[13,15,["H8057"]],[15,17,["H6963"]],[17,20,["H2860"]],[20,23,["H6963"]],[23,26,["H3618"]],[26,28,["H6963"]],[28,31,["H7347"]],[31,34,["H216"]],[34,37,["H5216"]]]},{"k":19545,"v":[[0,2,["H2063"]],[2,3,["H3605"]],[3,4,["H776"]],[4,6,["H1961"]],[6,8,["H2723"]],[8,11,["H8047"]],[11,13,["H428"]],[13,14,["H1471"]],[14,16,["H5647","(H853)"]],[16,18,["H4428"]],[18,20,["H894"]],[20,21,["H7657"]],[21,22,["H8141"]]]},{"k":19546,"v":[[0,6,["H1961"]],[6,8,["H7657"]],[8,9,["H8141"]],[9,11,["H4390"]],[11,15,["H6485","H5921"]],[15,17,["H4428"]],[17,19,["H894"]],[19,21,["H1931"]],[21,22,["H1471"]],[22,23,["H5002"]],[23,25,["H3068"]],[25,26,["H854"]],[26,28,["H5771"]],[28,31,["H776"]],[31,34,["H3778"]],[34,37,["H7760"]],[37,39,["H5769"]],[39,40,["H8077"]]]},{"k":19547,"v":[[0,4,["H935"]],[4,5,["H5921"]],[5,6,["H1931"]],[6,7,["H776","(H853)"]],[7,8,["H3605"]],[8,10,["H1697"]],[10,11,["H834"]],[11,14,["H1696"]],[14,15,["H5921"]],[15,17,["(H853)"]],[17,18,["H3605"]],[18,21,["H3789"]],[21,23,["H2088"]],[23,24,["H5612"]],[24,25,["H834"]],[25,26,["H3414"]],[26,28,["H5012"]],[28,29,["H5921"]],[29,30,["H3605"]],[30,32,["H1471"]]]},{"k":19548,"v":[[0,1,["H3588"]],[1,2,["H7227"]],[2,3,["H1471"]],[3,5,["H1419"]],[5,6,["H4428"]],[6,8,["H5647"]],[8,9,["H1992"]],[9,12,["H1571"]],[12,16,["H7999"]],[16,21,["H6467"]],[21,26,["H4639"]],[26,30,["H3027"]]]},{"k":19549,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H430"]],[6,8,["H3478"]],[8,9,["H413"]],[9,11,["H3947","(H853)"]],[11,13,["H3196"]],[13,14,["H3563"]],[14,16,["H2063"]],[16,17,["H2534"]],[17,20,["H4480","H3027"]],[20,22,["(H853)"]],[22,23,["H3605"]],[23,25,["H1471"]],[25,27,["H834","H413"]],[27,28,["H595"]],[28,29,["H7971"]],[29,32,["H8248"]],[32,33,[]]]},{"k":19550,"v":[[0,4,["H8354"]],[4,7,["H1607"]],[7,10,["H1984"]],[10,11,["H4480","H6440"]],[11,14,["H2719"]],[14,15,["H834"]],[15,18,["H7971"]],[18,19,["H996"]],[19,20,[]]]},{"k":19551,"v":[[0,2,["H3947"]],[2,3,["(H853)"]],[3,5,["H3563"]],[5,8,["H3068"]],[8,9,["H4480","H3027"]],[9,11,["(H853)"]],[11,12,["H3605"]],[12,14,["H1471"]],[14,16,["H8248"]],[16,17,["H413"]],[17,18,["H834"]],[18,20,["H3068"]],[20,22,["H7971"]],[22,23,[]]]},{"k":19552,"v":[[0,2,["(H853)"]],[2,3,["H3389"]],[3,6,["H5892"]],[6,8,["H3063"]],[8,11,["H4428"]],[11,13,["(H853)"]],[13,15,["H8269"]],[15,18,["H5414"]],[18,21,["H2723"]],[21,23,["H8047"]],[23,25,["H8322"]],[25,28,["H7045"]],[28,32,["H2088"]],[32,33,["H3117"]]]},{"k":19553,"v":[[0,0,["(H853)"]],[0,1,["H6547"]],[1,2,["H4428"]],[2,4,["H4714"]],[4,7,["H5650"]],[7,10,["H8269"]],[10,12,["H3605"]],[12,14,["H5971"]]]},{"k":19554,"v":[[0,2,["H3605"]],[2,5,["H6154"]],[5,6,["(H853)"]],[6,7,["H3605"]],[7,9,["H4428"]],[9,12,["H776"]],[12,14,["H5780"]],[14,16,["H3605"]],[16,18,["H4428"]],[18,21,["H776"]],[21,24,["H6430"]],[24,26,["H831"]],[26,28,["H5804"]],[28,30,["H6138"]],[30,33,["H7611"]],[33,35,["H795"]]]},{"k":19555,"v":[[0,0,["(H853)"]],[0,1,["H123"]],[1,3,["H4124"]],[3,6,["H1121"]],[6,8,["H5983"]]]},{"k":19556,"v":[[0,2,["H3605"]],[2,4,["H4428"]],[4,6,["H6865"]],[6,8,["H3605"]],[8,10,["H4428"]],[10,12,["H6721"]],[12,15,["H4428"]],[15,18,["H339"]],[18,19,["H834"]],[19,21,["H5676"]],[21,23,["H3220"]]]},{"k":19557,"v":[[0,1,["H1719"]],[1,3,["H8485"]],[3,5,["H938"]],[5,7,["H3605"]],[7,12,["H7112"]],[12,13,["H6285"]]]},{"k":19558,"v":[[0,2,["H3605"]],[2,4,["H4428"]],[4,6,["H6152"]],[6,8,["H3605"]],[8,10,["H4428"]],[10,14,["H6154"]],[14,16,["H7931"]],[16,19,["H4057"]]]},{"k":19559,"v":[[0,2,["H3605"]],[2,4,["H4428"]],[4,6,["H2174"]],[6,8,["H3605"]],[8,10,["H4428"]],[10,12,["H5867"]],[12,14,["H3605"]],[14,16,["H4428"]],[16,19,["H4074"]]]},{"k":19560,"v":[[0,2,["H3605"]],[2,4,["H4428"]],[4,7,["H6828"]],[7,8,["H7350"]],[8,10,["H7138"]],[10,11,["H376"]],[11,12,["H413"]],[12,13,["H251"]],[13,15,["H3605"]],[15,17,["H4467"]],[17,20,["H776"]],[20,21,["H834"]],[21,23,["H5921"]],[23,25,["H6440"]],[25,28,["H127"]],[28,31,["H4428"]],[31,33,["H8347"]],[33,35,["H8354"]],[35,36,["H310"]],[36,37,[]]]},{"k":19561,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H3541"]],[7,8,["H559"]],[8,10,["H3068"]],[10,12,["H6635"]],[12,14,["H430"]],[14,16,["H3478"]],[16,17,["H8354"]],[17,21,["H7937"]],[21,23,["H7006"]],[23,25,["H5307"]],[25,27,["H6965"]],[27,28,["H3808"]],[28,30,["H4480","H6440"]],[30,33,["H2719"]],[33,34,["H834"]],[34,35,["H595"]],[35,37,["H7971"]],[37,38,["H996"]],[38,39,[]]]},{"k":19562,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,7,["H3985"]],[7,9,["H3947"]],[9,11,["H3563"]],[11,14,["H4480","H3027"]],[14,16,["H8354"]],[16,20,["H559"]],[20,21,["H413"]],[21,23,["H3541"]],[23,24,["H559"]],[24,26,["H3068"]],[26,28,["H6635"]],[28,32,["H8354","H8354"]]]},{"k":19563,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,3,["H595"]],[3,4,["H2490"]],[4,7,["H7489"]],[7,10,["H5892"]],[10,11,["H834"]],[11,13,["H7121"]],[13,14,["H5921"]],[14,16,["H8034"]],[16,19,["H859"]],[19,22,["H5352","H5352"]],[22,25,["H3808"]],[25,27,["H5352"]],[27,28,["H3588"]],[28,29,["H589"]],[29,32,["H7121"]],[32,34,["H2719"]],[34,35,["H5921"]],[35,36,["H3605"]],[36,38,["H3427"]],[38,41,["H776"]],[41,42,["H5002"]],[42,44,["H3068"]],[44,46,["H6635"]]]},{"k":19564,"v":[[0,2,["H5012"]],[2,3,["H859"]],[3,4,["H413"]],[4,5,["(H853)"]],[5,6,["H3605"]],[6,7,["H428"]],[7,8,["H1697"]],[8,10,["H559"]],[10,11,["H413"]],[11,14,["H3068"]],[14,16,["H7580"]],[16,19,["H4480","H4791"]],[19,21,["H5414"]],[21,23,["H6963"]],[23,26,["H6944"]],[26,27,["H4480","H4583"]],[27,31,["H7580","H7580"]],[31,32,["H5921"]],[32,34,["H5116"]],[34,37,["H6030"]],[37,39,["H1959"]],[39,43,["H1869"]],[43,46,["H413"]],[46,47,["H3605"]],[47,49,["H3427"]],[49,52,["H776"]]]},{"k":19565,"v":[[0,2,["H7588"]],[2,4,["H935"]],[4,6,["H5704"]],[6,8,["H7097"]],[8,11,["H776"]],[11,12,["H3588"]],[12,14,["H3068"]],[14,17,["H7379"]],[17,20,["H1471"]],[20,21,["H1931"]],[21,23,["H8199"]],[23,25,["H3605"]],[25,26,["H1320"]],[26,29,["H5414"]],[29,33,["H7563"]],[33,36,["H2719"]],[36,37,["H5002"]],[37,39,["H3068"]]]},{"k":19566,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H2009"]],[7,8,["H7451"]],[8,11,["H3318"]],[11,13,["H4480","H1471"]],[13,14,["H413"]],[14,15,["H1471"]],[15,18,["H1419"]],[18,19,["H5591"]],[19,23,["H5782"]],[23,26,["H4480","H3411"]],[26,29,["H776"]]]},{"k":19567,"v":[[0,3,["H2491"]],[3,6,["H3068"]],[6,8,["H1961"]],[8,10,["H1931"]],[10,11,["H3117"]],[11,14,["H4480","H7097"]],[14,17,["H776"]],[17,19,["H5704"]],[19,22,["H7097"]],[22,25,["H776"]],[25,28,["H3808"]],[28,30,["H5594"]],[30,31,["H3808"]],[31,32,["H622"]],[32,33,["H3808"]],[33,34,["H6912"]],[34,37,["H1961"]],[37,38,["H1828"]],[38,39,["H5921","H6440"]],[39,41,["H127"]]]},{"k":19568,"v":[[0,1,["H3213"]],[1,3,["H7462"]],[3,5,["H2199"]],[5,8,["H6428"]],[8,13,["H117"]],[13,16,["H6629"]],[16,17,["H3588"]],[17,19,["H3117"]],[19,22,["H2873"]],[22,26,["H8600"]],[26,28,["H4390"]],[28,32,["H5307"]],[32,35,["H2532"]],[35,36,["H3627"]]]},{"k":19569,"v":[[0,3,["H7462"]],[3,9,["H4480","H6","H4498"]],[9,12,["H4480","H117"]],[12,15,["H6629"]],[15,17,["H6413"]]]},{"k":19570,"v":[[0,2,["H6963"]],[2,5,["H6818"]],[5,8,["H7462"]],[8,11,["H3215"]],[11,14,["H117"]],[14,17,["H6629"]],[17,21,["H3588"]],[21,23,["H3068"]],[23,25,["H7703","(H853)"]],[25,27,["H4830"]]]},{"k":19571,"v":[[0,3,["H7965"]],[3,4,["H4999"]],[4,7,["H1826"]],[7,8,["H4480","H6440"]],[8,11,["H2740"]],[11,12,["H639"]],[12,15,["H3068"]]]},{"k":19572,"v":[[0,3,["H5800"]],[3,5,["H5520"]],[5,8,["H3715"]],[8,9,["H3588"]],[9,11,["H776"]],[11,12,["H1961"]],[12,13,["H8047"]],[13,14,["H4480","H6440"]],[14,17,["H2740"]],[17,20,["H3238"]],[20,22,["H4480","H6440"]],[22,25,["H2740"]],[25,26,["H639"]]]},{"k":19573,"v":[[0,3,["H7225"]],[3,6,["H4468"]],[6,8,["H3079"]],[8,10,["H1121"]],[10,12,["H2977"]],[12,13,["H4428"]],[13,15,["H3063"]],[15,16,["H1961"]],[16,17,["H2088"]],[17,18,["H1697"]],[18,19,["H4480","H854"]],[19,21,["H3068"]],[21,22,["H559"]]]},{"k":19574,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5975"]],[5,8,["H2691"]],[8,11,["H3068"]],[11,12,["H1004"]],[12,14,["H1696"]],[14,15,["H5921"]],[15,16,["H3605"]],[16,18,["H5892"]],[18,20,["H3063"]],[20,22,["H935"]],[22,24,["H7812"]],[24,27,["H3068"]],[27,28,["H1004"]],[28,29,["H3605"]],[29,31,["H1697"]],[31,32,["H834"]],[32,34,["H6680"]],[34,37,["H1696"]],[37,38,["H413"]],[38,40,["H1639"]],[40,41,["H408"]],[41,43,["H1697"]]]},{"k":19575,"v":[[0,3,["H194"]],[3,6,["H8085"]],[6,8,["H7725"]],[8,10,["H376"]],[10,13,["H7451"]],[13,14,["H4480","H1870"]],[14,18,["H5162"]],[18,20,["H413"]],[20,22,["H7451"]],[22,23,["H834"]],[23,24,["H595"]],[24,25,["H2803"]],[25,27,["H6213"]],[27,30,["H4480","H6440"]],[30,33,["H7455"]],[33,36,["H4611"]]]},{"k":19576,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H3541"]],[7,8,["H559"]],[8,10,["H3068"]],[10,11,["H518"]],[11,14,["H3808"]],[14,15,["H8085"]],[15,16,["H413"]],[16,19,["H1980"]],[19,22,["H8451"]],[22,23,["H834"]],[23,26,["H5414"]],[26,27,["H6440"]],[27,28,[]]]},{"k":19577,"v":[[0,2,["H8085"]],[2,3,["H5921"]],[3,5,["H1697"]],[5,8,["H5650"]],[8,10,["H5030"]],[10,11,["H834"]],[11,12,["H595"]],[12,13,["H7971"]],[13,14,["H413"]],[14,19,["H7925"]],[19,21,["H7971"]],[21,26,["H3808"]],[26,27,["H8085"]]]},{"k":19578,"v":[[0,4,["H5414","(H853)"]],[4,5,["H2088"]],[5,6,["H1004"]],[6,8,["H7887"]],[8,11,["H5414"]],[11,12,["H2063"]],[12,13,["H5892"]],[13,15,["H7045"]],[15,17,["H3605"]],[17,19,["H1471"]],[19,22,["H776"]]]},{"k":19579,"v":[[0,3,["H3548"]],[3,6,["H5030"]],[6,8,["H3605"]],[8,10,["H5971"]],[10,11,["H8085","(H853)"]],[11,12,["H3414"]],[12,13,["H1696","(H853)"]],[13,14,["H428"]],[14,15,["H1697"]],[15,18,["H1004"]],[18,21,["H3068"]]]},{"k":19580,"v":[[0,5,["H1961"]],[5,7,["H3414"]],[7,11,["H3615"]],[11,13,["H1696","(H853)"]],[13,14,["H3605"]],[14,15,["H834"]],[15,17,["H3068"]],[17,19,["H6680"]],[19,22,["H1696"]],[22,23,["H413"]],[23,24,["H3605"]],[24,26,["H5971"]],[26,29,["H3548"]],[29,32,["H5030"]],[32,34,["H3605"]],[34,36,["H5971"]],[36,37,["H8610"]],[37,39,["H559"]],[39,43,["H4191","H4191"]]]},{"k":19581,"v":[[0,1,["H4069"]],[1,4,["H5012"]],[4,7,["H8034"]],[7,10,["H3068"]],[10,11,["H559"]],[11,12,["H2088"]],[12,13,["H1004"]],[13,15,["H1961"]],[15,17,["H7887"]],[17,19,["H2063"]],[19,20,["H5892"]],[20,23,["H2717"]],[23,24,["H4480","H369"]],[24,26,["H3427"]],[26,28,["H3605"]],[28,30,["H5971"]],[30,32,["H6950"]],[32,33,["H413"]],[33,34,["H3414"]],[34,37,["H1004"]],[37,40,["H3068"]]]},{"k":19582,"v":[[0,3,["H8269"]],[3,5,["H3063"]],[5,6,["H8085","(H853)"]],[6,7,["H428"]],[7,8,["H1697"]],[8,12,["H5927"]],[12,15,["H4428"]],[15,16,["H4480","H1004"]],[16,19,["H1004"]],[19,22,["H3068"]],[22,25,["H3427"]],[25,28,["H6607"]],[28,31,["H2319"]],[31,32,["H8179"]],[32,35,["H3068"]],[35,36,[]]]},{"k":19583,"v":[[0,2,["H559"]],[2,4,["H3548"]],[4,7,["H5030"]],[7,8,["H413"]],[8,10,["H8269"]],[10,12,["H413"]],[12,13,["H3605"]],[13,15,["H5971"]],[15,16,["H559"]],[16,17,["H2088"]],[17,18,["H376"]],[18,20,["H4941"]],[20,22,["H4194"]],[22,23,["H3588"]],[23,26,["H5012"]],[26,27,["H413"]],[27,28,["H2063"]],[28,29,["H5892"]],[29,30,["H834"]],[30,33,["H8085"]],[33,36,["H241"]]]},{"k":19584,"v":[[0,2,["H559"]],[2,3,["H3414"]],[3,4,["H413"]],[4,5,["H3605"]],[5,7,["H8269"]],[7,9,["H413"]],[9,10,["H3605"]],[10,12,["H5971"]],[12,13,["H559"]],[13,15,["H3068"]],[15,16,["H7971"]],[16,19,["H5012"]],[19,20,["H413"]],[20,21,["H2088"]],[21,22,["H1004"]],[22,24,["H413"]],[24,25,["H2063"]],[25,26,["H5892"]],[26,27,["H3605"]],[27,29,["H1697"]],[29,30,["H834"]],[30,33,["H8085"]]]},{"k":19585,"v":[[0,2,["H6258"]],[2,3,["H3190"]],[3,5,["H1870"]],[5,8,["H4611"]],[8,10,["H8085"]],[10,12,["H6963"]],[12,15,["H3068"]],[15,17,["H430"]],[17,20,["H3068"]],[20,22,["H5162"]],[22,24,["H413"]],[24,26,["H7451"]],[26,27,["H834"]],[27,30,["H1696"]],[30,31,["H5921"]],[31,32,[]]]},{"k":19586,"v":[[0,3,["H589"]],[3,4,["H2009"]],[4,9,["H3027"]],[9,10,["H6213"]],[10,14,["H5869"]],[14,15,["H2896"]],[15,17,["H3477"]],[17,19,[]]]},{"k":19587,"v":[[0,1,["H389"]],[1,5,["H3045","H3045"]],[5,6,["H3588"]],[6,7,["H518"]],[7,8,["H859"]],[8,12,["H4191","(H853)"]],[12,13,["H859"]],[13,15,["H3588"]],[15,16,["H5414"]],[16,17,["H5355"]],[17,18,["H1818"]],[18,19,["H5921"]],[19,22,["H413"]],[22,23,["H2063"]],[23,24,["H5892"]],[24,26,["H413"]],[26,28,["H3427"]],[28,30,["H3588"]],[30,33,["H571"]],[33,35,["H3068"]],[35,37,["H7971"]],[37,39,["H5921"]],[39,42,["H1696","(H853)"]],[42,43,["H3605"]],[43,44,["H428"]],[44,45,["H1697"]],[45,48,["H241"]]]},{"k":19588,"v":[[0,2,["H559"]],[2,4,["H8269"]],[4,6,["H3605"]],[6,8,["H5971"]],[8,9,["H413"]],[9,11,["H3548"]],[11,13,["H413"]],[13,15,["H5030"]],[15,16,["H2088"]],[16,17,["H376"]],[17,19,["H369"]],[19,20,["H4941"]],[20,22,["H4194"]],[22,23,["H3588"]],[23,26,["H1696"]],[26,27,["H413"]],[27,31,["H8034"]],[31,34,["H3068"]],[34,36,["H430"]]]},{"k":19589,"v":[[0,3,["H6965"]],[3,4,["H376"]],[4,7,["H4480","H2205"]],[7,10,["H776"]],[10,12,["H559"]],[12,13,["H413"]],[13,14,["H3605"]],[14,16,["H6951"]],[16,19,["H5971"]],[19,20,["H559"]]]},{"k":19590,"v":[[0,1,["H4320"]],[1,3,["H4183"]],[3,4,["H1961","H5012"]],[4,7,["H3117"]],[7,9,["H2396"]],[9,10,["H4428"]],[10,12,["H3063"]],[12,14,["H559"]],[14,15,["H413"]],[15,16,["H3605"]],[16,18,["H5971"]],[18,20,["H3063"]],[20,21,["H559"]],[21,22,["H3541"]],[22,23,["H559"]],[23,25,["H3068"]],[25,27,["H6635"]],[27,28,["H6726"]],[28,31,["H2790"]],[31,34,["H7704"]],[34,36,["H3389"]],[36,38,["H1961"]],[38,39,["H5856"]],[39,42,["H2022"]],[42,45,["H1004"]],[45,49,["H1116"]],[49,52,["H3293"]]]},{"k":19591,"v":[[0,2,["H2396"]],[2,3,["H4428"]],[3,5,["H3063"]],[5,7,["H3605"]],[7,8,["H3063"]],[8,14,["H4191","H4191"]],[14,17,["H3808"]],[17,18,["H3372","(H853)"]],[18,20,["H3068"]],[20,22,["H2470","(H853)","H6440"]],[22,24,["H3068"]],[24,27,["H3068"]],[27,28,["H5162"]],[28,30,["H413"]],[30,32,["H7451"]],[32,33,["H834"]],[33,36,["H1696"]],[36,37,["H5921"]],[37,41,["H587"]],[41,42,["H6213"]],[42,43,["H1419"]],[43,44,["H7451"]],[44,45,["H5921"]],[45,47,["H5315"]]]},{"k":19592,"v":[[0,3,["H1961"]],[3,4,["H1571"]],[4,6,["H376"]],[6,8,["H5012"]],[8,11,["H8034"]],[11,14,["H3068"]],[14,15,["H223"]],[15,17,["H1121"]],[17,19,["H8098"]],[19,21,["H4480","H7157"]],[21,23,["H5012"]],[23,24,["H5921"]],[24,25,["H2063"]],[25,26,["H5892"]],[26,28,["H5921"]],[28,29,["H2063"]],[29,30,["H776"]],[30,33,["H3605"]],[33,35,["H1697"]],[35,37,["H3414"]]]},{"k":19593,"v":[[0,3,["H3079"]],[3,5,["H4428"]],[5,7,["H3605"]],[7,10,["H1368"]],[10,12,["H3605"]],[12,14,["H8269"]],[14,15,["H8085","(H853)"]],[15,17,["H1697"]],[17,19,["H4428"]],[19,20,["H1245"]],[20,25,["H4191"]],[25,28,["H223"]],[28,29,["H8085"]],[29,33,["H3372"]],[33,35,["H1272"]],[35,38,["H935"]],[38,39,["H4714"]]]},{"k":19594,"v":[[0,2,["H3079"]],[2,4,["H4428"]],[4,5,["H7971"]],[5,6,["H376"]],[6,8,["H4714"]],[8,9,["(H853)"]],[9,10,["H494"]],[10,12,["H1121"]],[12,14,["H5907"]],[14,17,["H376"]],[17,18,["H854"]],[18,20,["H413"]],[20,21,["H4714"]]]},{"k":19595,"v":[[0,4,["H3318","(H853)"]],[4,5,["H223"]],[5,8,["H4480","H4714"]],[8,10,["H935"]],[10,12,["H413"]],[12,13,["H3079"]],[13,15,["H4428"]],[15,17,["H5221"]],[17,21,["H2719"]],[21,23,["H7993","(H853)"]],[23,26,["H5038"]],[26,27,["H413"]],[27,29,["H6913"]],[29,32,["H1121"]],[32,33,["H5971"]]]},{"k":19596,"v":[[0,1,["H389"]],[1,3,["H3027"]],[3,5,["H296"]],[5,7,["H1121"]],[7,9,["H8227"]],[9,10,["H1961"]],[10,11,["H854"]],[11,12,["H3414"]],[12,16,["H1115"]],[16,17,["H5414"]],[17,21,["H3027"]],[21,24,["H5971"]],[24,29,["H4191"]]]},{"k":19597,"v":[[0,3,["H7225"]],[3,6,["H4467"]],[6,8,["H3079"]],[8,10,["H1121"]],[10,12,["H2977"]],[12,13,["H4428"]],[13,15,["H3063"]],[15,16,["H1961"]],[16,17,["H2088"]],[17,18,["H1697"]],[18,19,["H413"]],[19,20,["H3414"]],[20,21,["H4480","H854"]],[21,23,["H3068"]],[23,24,["H559"]]]},{"k":19598,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,7,["H6213"]],[7,9,["H4147"]],[9,11,["H4133"]],[11,13,["H5414"]],[13,15,["H5921"]],[15,17,["H6677"]]]},{"k":19599,"v":[[0,2,["H7971"]],[2,4,["H413"]],[4,6,["H4428"]],[6,8,["H123"]],[8,10,["H413"]],[10,12,["H4428"]],[12,14,["H4124"]],[14,16,["H413"]],[16,18,["H4428"]],[18,21,["H1121","H5983"]],[21,23,["H413"]],[23,25,["H4428"]],[25,27,["H6865"]],[27,31,["H4428"]],[31,33,["H6721"]],[33,36,["H3027"]],[36,39,["H4397"]],[39,41,["H935"]],[41,43,["H3389"]],[43,44,["H413"]],[44,45,["H6667"]],[45,46,["H4428"]],[46,48,["H3063"]]]},{"k":19600,"v":[[0,2,["H6680"]],[2,5,["H559"]],[5,6,["H413"]],[6,8,["H113"]],[8,9,["H3541"]],[9,10,["H559"]],[10,12,["H3068"]],[12,14,["H6635"]],[14,16,["H430"]],[16,18,["H3478"]],[18,19,["H3541"]],[19,22,["H559"]],[22,23,["H413"]],[23,25,["H113"]]]},{"k":19601,"v":[[0,1,["H595"]],[1,3,["H6213","(H853)"]],[3,5,["H776","(H853)"]],[5,7,["H120"]],[7,10,["H929"]],[10,11,["H834"]],[11,13,["H5921","H6440"]],[13,15,["H776"]],[15,18,["H1419"]],[18,19,["H3581"]],[19,23,["H5186"]],[23,24,["H2220"]],[24,27,["H5414"]],[27,30,["H834"]],[30,32,["H5869"]],[32,33,["H3474"]],[33,35,[]]]},{"k":19602,"v":[[0,2,["H6258"]],[2,4,["H595"]],[4,5,["H5414","(H853)"]],[5,6,["H3605"]],[6,7,["H428"]],[7,8,["H776"]],[8,11,["H3027"]],[11,13,["H5019"]],[13,15,["H4428"]],[15,17,["H894"]],[17,19,["H5650"]],[19,20,["(H853)"]],[20,22,["H2416"]],[22,25,["H7704"]],[25,28,["H5414"]],[28,30,["H1571"]],[30,32,["H5647"]],[32,33,[]]]},{"k":19603,"v":[[0,2,["H3605"]],[2,3,["H1471"]],[3,5,["H5647"]],[5,9,["H1121"]],[9,12,["H1121"]],[12,13,["H1121"]],[13,14,["H5704"]],[14,17,["H6256"]],[17,20,["H776"]],[20,21,["H935"]],[21,23,["H1571"]],[23,24,["H7227"]],[24,25,["H1471"]],[25,27,["H1419"]],[27,28,["H4428"]],[28,30,["H5647"]],[30,33,["H1931"]]]},{"k":19604,"v":[[0,6,["H1961"]],[6,9,["H1471"]],[9,11,["H4467"]],[11,12,["H834"]],[12,14,["H3808"]],[14,15,["H5647"]],[15,17,["(H853)"]],[17,18,["H5019"]],[18,20,["H4428"]],[20,22,["H894"]],[22,24,["H834"]],[24,26,["H3808"]],[26,27,["H5414","(H853)"]],[27,29,["H6677"]],[29,32,["H5923"]],[32,35,["H4428"]],[35,37,["H894"]],[37,38,["H1931"]],[38,39,["H1471"]],[39,42,["H6485"]],[42,43,["H5002"]],[43,45,["H3068"]],[45,48,["H2719"]],[48,52,["H7458"]],[52,56,["H1698"]],[56,57,["H5704"]],[57,60,["H8552"]],[60,64,["H3027"]]]},{"k":19605,"v":[[0,2,["H8085"]],[2,3,["H408"]],[3,4,["H859"]],[4,5,["H413"]],[5,7,["H5030"]],[7,9,["H413"]],[9,11,["H7080"]],[11,13,["H413"]],[13,15,["H2472"]],[15,17,["H413"]],[17,19,["H6049"]],[19,21,["H413"]],[21,23,["H3786"]],[23,24,["H834","H1992"]],[24,25,["H559"]],[25,26,["H413"]],[26,28,["H559"]],[28,31,["H3808"]],[31,32,["H5647","(H853)"]],[32,34,["H4428"]],[34,36,["H894"]]]},{"k":19606,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,3,["H5012"]],[3,5,["H8267"]],[5,8,["H4616"]],[8,11,["H7368","(H853)"]],[11,12,["H4480","H5921"]],[12,14,["H127"]],[14,21,["H5080","(H853)"]],[21,25,["H6"]]]},{"k":19607,"v":[[0,3,["H1471"]],[3,4,["H834"]],[4,5,["H935","(H853)"]],[5,7,["H6677"]],[7,10,["H5923"]],[10,13,["H4428"]],[13,15,["H894"]],[15,17,["H5647"]],[17,23,["H5117"]],[23,25,["H5921"]],[25,28,["H127"]],[28,29,["H5002"]],[29,31,["H3068"]],[31,35,["H5647"]],[35,38,["H3427"]],[38,39,[]]]},{"k":19608,"v":[[0,2,["H1696"]],[2,4,["H413"]],[4,5,["H6667"]],[5,6,["H4428"]],[6,8,["H3063"]],[8,11,["H3605"]],[11,12,["H428"]],[12,13,["H1697"]],[13,14,["H559"]],[14,15,["H935","(H853)"]],[15,17,["H6677"]],[17,20,["H5923"]],[20,23,["H4428"]],[23,25,["H894"]],[25,27,["H5647"]],[27,31,["H5971"]],[31,33,["H2421"]]]},{"k":19609,"v":[[0,1,["H4100"]],[1,4,["H4191"]],[4,5,["H859"]],[5,8,["H5971"]],[8,11,["H2719"]],[11,14,["H7458"]],[14,18,["H1698"]],[18,19,["H834"]],[19,21,["H3068"]],[21,23,["H1696"]],[23,24,["H413"]],[24,26,["H1471"]],[26,27,["H834"]],[27,29,["H3808"]],[29,30,["H5647","(H853)"]],[30,32,["H4428"]],[32,34,["H894"]]]},{"k":19610,"v":[[0,2,["H8085"]],[2,3,["H408"]],[3,4,["H413"]],[4,6,["H1697"]],[6,9,["H5030"]],[9,11,["H559"]],[11,12,["H413"]],[12,14,["H559"]],[14,17,["H3808"]],[17,18,["H5647","(H853)"]],[18,20,["H4428"]],[20,22,["H894"]],[22,23,["H3588"]],[23,24,["H1992"]],[24,25,["H5012"]],[25,27,["H8267"]],[27,29,[]]]},{"k":19611,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H7971"]],[5,7,["H5002"]],[7,9,["H3068"]],[9,11,["H1992"]],[11,12,["H5012"]],[12,14,["H8267"]],[14,17,["H8034"]],[17,18,["H4616"]],[18,23,["H5080","(H853)"]],[23,28,["H6"]],[28,29,["H859"]],[29,32,["H5030"]],[32,34,["H5012"]],[34,36,[]]]},{"k":19612,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H3548"]],[6,8,["H413"]],[8,9,["H3605"]],[9,10,["H2088"]],[10,11,["H5971"]],[11,12,["H559"]],[12,13,["H3541"]],[13,14,["H559"]],[14,16,["H3068"]],[16,17,["H8085"]],[17,18,["H408"]],[18,19,["H413"]],[19,21,["H1697"]],[21,24,["H5030"]],[24,26,["H5012"]],[26,29,["H559"]],[29,30,["H2009"]],[30,32,["H3627"]],[32,35,["H3068"]],[35,36,["H1004"]],[36,38,["H6258"]],[38,39,["H4120"]],[39,42,["H7725"]],[42,44,["H4480","H894"]],[44,45,["H3588"]],[45,46,["H1992"]],[46,47,["H5012"]],[47,49,["H8267"]],[49,51,[]]]},{"k":19613,"v":[[0,1,["H8085"]],[1,2,["H408"]],[2,3,["H413"]],[3,5,["H5647","(H853)"]],[5,7,["H4428"]],[7,9,["H894"]],[9,11,["H2421"]],[11,12,["H4100"]],[12,14,["H2063"]],[14,15,["H5892"]],[15,16,["H1961"]],[16,18,["H2723"]]]},{"k":19614,"v":[[0,2,["H518"]],[2,3,["H1992"]],[3,5,["H5030"]],[5,7,["H518"]],[7,9,["H1697"]],[9,12,["H3068"]],[12,13,["H3426"]],[13,14,["H854"]],[14,18,["H4994"]],[18,20,["H6293"]],[20,23,["H3068"]],[23,25,["H6635"]],[25,28,["H3627"]],[28,31,["H3498"]],[31,34,["H1004"]],[34,37,["H3068"]],[37,41,["H1004"]],[41,44,["H4428"]],[44,46,["H3063"]],[46,49,["H3389"]],[49,50,["H935"]],[50,51,["H1115"]],[51,53,["H894"]]]},{"k":19615,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,8,["H413"]],[8,10,["H5982"]],[10,12,["H5921"]],[12,14,["H3220"]],[14,16,["H5921"]],[16,18,["H4350"]],[18,20,["H5921"]],[20,22,["H3499"]],[22,25,["H3627"]],[25,27,["H3498"]],[27,29,["H2063"]],[29,30,["H5892"]]]},{"k":19616,"v":[[0,1,["H834"]],[1,2,["H5019"]],[2,3,["H4428"]],[3,5,["H894"]],[5,6,["H3947"]],[6,7,["H3808"]],[7,12,["H1540","(H853)"]],[12,13,["H3204"]],[13,15,["H1121"]],[15,17,["H3079"]],[17,18,["H4428"]],[18,20,["H3063"]],[20,22,["H4480","H3389"]],[22,24,["H894"]],[24,26,["H3605"]],[26,28,["H2715"]],[28,30,["H3063"]],[30,32,["H3389"]]]},{"k":19617,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,12,["H5921"]],[12,14,["H3627"]],[14,16,["H3498"]],[16,19,["H1004"]],[19,22,["H3068"]],[22,26,["H1004"]],[26,29,["H4428"]],[29,31,["H3063"]],[31,34,["H3389"]]]},{"k":19618,"v":[[0,4,["H935"]],[4,6,["H894"]],[6,8,["H8033"]],[8,11,["H1961"]],[11,12,["H5704"]],[12,14,["H3117"]],[14,17,["H6485"]],[17,19,["H5002"]],[19,21,["H3068"]],[21,27,["H5927"]],[27,29,["H7725"]],[29,31,["H413"]],[31,32,["H2008"]],[32,33,["H4725"]]]},{"k":19619,"v":[[0,5,["H1961"]],[5,7,["H1931"]],[7,8,["H8141"]],[8,11,["H7225"]],[11,14,["H4467"]],[14,16,["H6667"]],[16,17,["H4428"]],[17,19,["H3063"]],[19,22,["H7243"]],[22,23,["H8141"]],[23,27,["H2549"]],[27,28,["H2320"]],[28,30,["H2608"]],[30,32,["H1121"]],[32,34,["H5809"]],[34,36,["H5030"]],[36,37,["H834"]],[37,40,["H4480","H1391"]],[40,41,["H559"]],[41,42,["H413"]],[42,46,["H1004"]],[46,49,["H3068"]],[49,52,["H5869"]],[52,55,["H3548"]],[55,58,["H3605"]],[58,60,["H5971"]],[60,61,["H559"]]]},{"k":19620,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,11,["H559"]],[11,14,["H7665","(H853)"]],[14,16,["H5923"]],[16,19,["H4428"]],[19,21,["H894"]]]},{"k":19621,"v":[[0,1,["H5750"]],[1,4,["H8141","H3117"]],[4,6,["H589"]],[6,8,["H7725"]],[8,9,["H413"]],[9,10,["H2008"]],[10,11,["H4725","(H853)"]],[11,12,["H3605"]],[12,14,["H3627"]],[14,17,["H3068"]],[17,18,["H1004"]],[18,19,["H834"]],[19,20,["H5019"]],[20,21,["H4428"]],[21,23,["H894"]],[23,25,["H3947"]],[25,26,["H4480"]],[26,27,["H2008"]],[27,28,["H4725"]],[28,30,["H935"]],[30,33,["H894"]]]},{"k":19622,"v":[[0,2,["H589"]],[2,5,["H7725"]],[5,6,["H413"]],[6,7,["H2008"]],[7,8,["H4725"]],[8,9,["H3204"]],[9,11,["H1121"]],[11,13,["H3079"]],[13,14,["H4428"]],[14,16,["H3063"]],[16,18,["H3605"]],[18,20,["H1546"]],[20,22,["H3063"]],[22,24,["H935"]],[24,26,["H894"]],[26,27,["H5002"]],[27,29,["H3068"]],[29,30,["H3588"]],[30,33,["H7665","(H853)"]],[33,35,["H5923"]],[35,38,["H4428"]],[38,40,["H894"]]]},{"k":19623,"v":[[0,3,["H5030"]],[3,4,["H3414"]],[4,5,["H559"]],[5,6,["H413"]],[6,8,["H5030"]],[8,9,["H2608"]],[9,12,["H5869"]],[12,15,["H3548"]],[15,19,["H5869"]],[19,21,["H3605"]],[21,23,["H5971"]],[23,25,["H5975"]],[25,28,["H1004"]],[28,31,["H3068"]]]},{"k":19624,"v":[[0,3,["H5030"]],[3,4,["H3414"]],[4,5,["H559"]],[5,6,["H543"]],[6,8,["H3068"]],[8,9,["H6213"]],[9,10,["H3651"]],[10,12,["H3068"]],[12,13,["H6965","(H853)"]],[13,15,["H1697"]],[15,16,["H834"]],[16,19,["H5012"]],[19,22,["H7725"]],[22,24,["H3627"]],[24,27,["H3068"]],[27,28,["H1004"]],[28,30,["H3605"]],[30,35,["H1473"]],[35,37,["H4480","H894"]],[37,38,["H413"]],[38,39,["H2008"]],[39,40,["H4725"]]]},{"k":19625,"v":[[0,1,["H389"]],[1,2,["H8085"]],[2,4,["H4994"]],[4,5,["H2008"]],[5,6,["H1697"]],[6,7,["H834"]],[7,8,["H595"]],[8,9,["H1696"]],[9,12,["H241"]],[12,16,["H241"]],[16,18,["H3605"]],[18,20,["H5971"]]]},{"k":19626,"v":[[0,2,["H5030"]],[2,3,["H834"]],[3,5,["H1961"]],[5,6,["H6440"]],[6,9,["H6440"]],[9,11,["H4480"]],[11,12,["H5769"]],[12,13,["H5012"]],[13,15,["H413"]],[15,16,["H7227"]],[16,17,["H776"]],[17,19,["H5921"]],[19,20,["H1419"]],[20,21,["H4467"]],[21,23,["H4421"]],[23,26,["H7451"]],[26,29,["H1698"]]]},{"k":19627,"v":[[0,2,["H5030"]],[2,3,["H834"]],[3,4,["H5012"]],[4,6,["H7965"]],[6,9,["H1697"]],[9,12,["H5030"]],[12,16,["H935"]],[16,20,["H5030"]],[20,22,["H3045"]],[22,23,["H834"]],[23,25,["H3068"]],[25,27,["H571"]],[27,28,["H7971"]],[28,29,[]]]},{"k":19628,"v":[[0,2,["H2608"]],[2,4,["H5030"]],[4,5,["H3947","(H853)"]],[5,7,["H4133"]],[7,9,["H4480","H5921"]],[9,11,["H5030"]],[11,12,["H3414"]],[12,13,["H6677"]],[13,15,["H7665"]],[15,16,[]]]},{"k":19629,"v":[[0,2,["H2608"]],[2,3,["H559"]],[3,6,["H5869"]],[6,8,["H3605"]],[8,10,["H5971"]],[10,11,["H559"]],[11,12,["H3541"]],[12,13,["H559"]],[13,15,["H3068"]],[15,17,["H3602"]],[17,20,["H7665","(H853)"]],[20,22,["H5923"]],[22,24,["H5019"]],[24,25,["H4428"]],[25,27,["H894"]],[27,28,["H4480","H5921"]],[28,30,["H6677"]],[30,32,["H3605"]],[32,33,["H1471"]],[33,37,["H5750"]],[37,40,["H8141","H3117"]],[40,43,["H5030"]],[43,44,["H3414"]],[44,45,["H1980"]],[45,47,["H1870"]]]},{"k":19630,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,13,["H310"]],[13,14,["H2608"]],[14,16,["H5030"]],[16,18,["H7665","(H853)"]],[18,20,["H4133"]],[20,22,["H4480","H5921"]],[22,24,["H6677"]],[24,27,["H5030"]],[27,28,["H3414"]],[28,29,["H559"]]]},{"k":19631,"v":[[0,1,["H1980"]],[1,3,["H559","H413"]],[3,4,["H2608"]],[4,5,["H559"]],[5,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,12,["H7665"]],[12,14,["H4133"]],[14,16,["H6086"]],[16,20,["H6213"]],[20,21,["H8478"]],[21,23,["H4133"]],[23,25,["H1270"]]]},{"k":19632,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,14,["H5414"]],[14,16,["H5923"]],[16,18,["H1270"]],[18,19,["H5921"]],[19,21,["H6677"]],[21,23,["H3605"]],[23,24,["H428"]],[24,25,["H1471"]],[25,29,["H5647","(H853)"]],[29,30,["H5019"]],[30,31,["H4428"]],[31,33,["H894"]],[33,37,["H5647"]],[37,42,["H5414"]],[42,43,["(H853)"]],[43,45,["H2416"]],[45,48,["H7704"]],[48,49,["H1571"]]]},{"k":19633,"v":[[0,2,["H559"]],[2,4,["H5030"]],[4,5,["H3414"]],[5,6,["H413"]],[6,7,["H2608"]],[7,9,["H5030"]],[9,10,["H8085"]],[10,11,["H4994"]],[11,12,["H2608"]],[12,14,["H3068"]],[14,16,["H3808"]],[16,17,["H7971"]],[17,20,["H859"]],[20,21,["(H853)"]],[21,22,["H2008"]],[22,23,["H5971"]],[23,25,["H982"]],[25,26,["H5921"]],[26,28,["H8267"]]]},{"k":19634,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,9,["H7971"]],[9,12,["H4480","H5921"]],[12,14,["H6440"]],[14,17,["H127"]],[17,19,["H8141"]],[19,20,["H859"]],[20,22,["H4191"]],[22,23,["H3588"]],[23,26,["H1696"]],[26,27,["H5627"]],[27,28,["H413"]],[28,30,["H3068"]]]},{"k":19635,"v":[[0,2,["H2608"]],[2,4,["H5030"]],[4,5,["H4191"]],[5,7,["H1931"]],[7,8,["H8141"]],[8,11,["H7637"]],[11,12,["H2320"]]]},{"k":19636,"v":[[0,2,["H428"]],[2,5,["H1697"]],[5,8,["H5612"]],[8,9,["H834"]],[9,10,["H3414"]],[10,12,["H5030"]],[12,13,["H7971"]],[13,15,["H4480","H3389"]],[15,16,["H413"]],[16,18,["H3499"]],[18,21,["H2205"]],[21,26,["H1473"]],[26,28,["H413"]],[28,30,["H3548"]],[30,32,["H413"]],[32,34,["H5030"]],[34,36,["H413"]],[36,37,["H3605"]],[37,39,["H5971"]],[39,40,["H834"]],[40,41,["H5019"]],[41,45,["H1540"]],[45,47,["H4480","H3389"]],[47,49,["H894"]]]},{"k":19637,"v":[[0,2,["H310"]],[2,3,["H3204"]],[3,5,["H4428"]],[5,8,["H1377"]],[8,11,["H5631"]],[11,13,["H8269"]],[13,15,["H3063"]],[15,17,["H3389"]],[17,20,["H2796"]],[20,23,["H4525"]],[23,25,["H3318"]],[25,27,["H4480","H3389"]]]},{"k":19638,"v":[[0,3,["H3027"]],[3,5,["H501"]],[5,7,["H1121"]],[7,9,["H8227"]],[9,11,["H1587"]],[11,13,["H1121"]],[13,15,["H2518"]],[15,16,["H834"]],[16,17,["H6667"]],[17,18,["H4428"]],[18,20,["H3063"]],[20,21,["H7971"]],[21,23,["H894"]],[23,24,["H413"]],[24,25,["H5019"]],[25,26,["H4428"]],[26,28,["H894"]],[28,29,["H559"]]]},{"k":19639,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,12,["H3605"]],[12,17,["H1473"]],[17,18,["H834"]],[18,25,["H1540"]],[25,27,["H4480","H3389"]],[27,29,["H894"]]]},{"k":19640,"v":[[0,1,["H1129"]],[1,3,["H1004"]],[3,5,["H3427"]],[5,9,["H5193"]],[9,10,["H1593"]],[10,12,["H398","(H853)"]],[12,14,["H6529"]],[14,16,[]]]},{"k":19641,"v":[[0,1,["H3947"]],[1,3,["H802"]],[3,5,["H3205"]],[5,6,["H1121"]],[6,8,["H1323"]],[8,10,["H3947"]],[10,11,["H802"]],[11,14,["H1121"]],[14,16,["H5414"]],[16,18,["H1323"]],[18,20,["H376"]],[20,24,["H3205"]],[24,25,["H1121"]],[25,27,["H1323"]],[27,32,["H7235"]],[32,33,["H8033"]],[33,35,["H408"]],[35,36,["H4591"]]]},{"k":19642,"v":[[0,2,["H1875","(H853)"]],[2,4,["H7965"]],[4,7,["H5892"]],[7,8,["H834","H8033"]],[8,17,["H1540"]],[17,19,["H6419"]],[19,20,["H413"]],[20,22,["H3068"]],[22,23,["H1157"]],[23,25,["H3588"]],[25,28,["H7965"]],[28,32,["H1961"]],[32,33,["H7965"]]]},{"k":19643,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,13,["H408"]],[13,15,["H5030"]],[15,18,["H7080"]],[18,19,["H834"]],[19,23,["H7130"]],[23,26,["H5377"]],[26,28,["H408"]],[28,29,["H8085"]],[29,30,["H413"]],[30,32,["H2472"]],[32,33,["H834"]],[33,34,["H859"]],[34,38,["H2492"]]]},{"k":19644,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,3,["H5012"]],[3,4,["H8267"]],[4,9,["H8034"]],[9,12,["H3808"]],[12,13,["H7971"]],[13,15,["H5002"]],[15,17,["H3068"]]]},{"k":19645,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H3588"]],[6,7,["H6310"]],[7,8,["H7657"]],[8,9,["H8141"]],[9,11,["H4390"]],[11,13,["H894"]],[13,16,["H6485"]],[16,19,["H6965","(H853)"]],[19,21,["H2896"]],[21,22,["H1697"]],[22,23,["H5921"]],[23,29,["H7725","(H853)"]],[29,30,["H413"]],[30,31,["H2088"]],[31,32,["H4725"]]]},{"k":19646,"v":[[0,1,["H3588"]],[1,2,["H595"]],[2,3,["H3045","(H853)"]],[3,5,["H4284"]],[5,6,["H834"]],[6,7,["H595"]],[7,8,["H2803"]],[8,9,["H5921"]],[9,11,["H5002"]],[11,13,["H3068"]],[13,14,["H4284"]],[14,16,["H7965"]],[16,18,["H3808"]],[18,20,["H7451"]],[20,22,["H5414"]],[22,25,["H8615"]],[25,26,["H319"]]]},{"k":19647,"v":[[0,5,["H7121"]],[5,10,["H1980"]],[10,12,["H6419"]],[12,13,["H413"]],[13,18,["H8085"]],[18,19,["H413"]],[19,20,[]]]},{"k":19648,"v":[[0,4,["H1245"]],[4,7,["H4672"]],[7,9,["H3588"]],[9,13,["H1875"]],[13,16,["H3605"]],[16,18,["H3824"]]]},{"k":19649,"v":[[0,5,["H4672"]],[5,8,["H5002"]],[8,10,["H3068"]],[10,15,["H7725","(H853)"]],[15,17,["H7622"]],[17,21,["H6908"]],[21,24,["H4480","H3605"]],[24,26,["H1471"]],[26,29,["H4480","H3605"]],[29,31,["H4725"]],[31,32,["H834","H8033"]],[32,35,["H5080"]],[35,37,["H5002"]],[37,39,["H3068"]],[39,45,["H7725","(H853)"]],[45,46,["H413"]],[46,48,["H4725"]],[48,49,["H834","H4480","H8033"]],[49,57,["H1540"]]]},{"k":19650,"v":[[0,1,["H3588"]],[1,4,["H559"]],[4,6,["H3068"]],[6,10,["H6965"]],[10,11,["H5030"]],[11,13,["H894"]]]},{"k":19651,"v":[[0,2,["H3588"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H3068"]],[6,7,["H413"]],[7,9,["H4428"]],[9,11,["H3427"]],[11,12,["H413"]],[12,14,["H3678"]],[14,16,["H1732"]],[16,18,["H413"]],[18,19,["H3605"]],[19,21,["H5971"]],[21,23,["H3427"]],[23,25,["H2063"]],[25,26,["H5892"]],[26,30,["H251"]],[30,31,["H834"]],[31,33,["H3808"]],[33,35,["H3318"]],[35,36,["H854"]],[36,39,["H1473"]]]},{"k":19652,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H2009"]],[7,10,["H7971"]],[10,12,["(H853)"]],[12,14,["H2719","(H853)"]],[14,16,["H7458"]],[16,19,["H1698"]],[19,22,["H5414"]],[22,25,["H8182"]],[25,26,["H8384"]],[26,27,["H834"]],[27,28,["H3808"]],[28,30,["H398"]],[30,34,["H4480","H7455"]]]},{"k":19653,"v":[[0,4,["H7291","H310"]],[4,8,["H2719"]],[8,11,["H7458"]],[11,15,["H1698"]],[15,18,["H5414"]],[18,22,["H2189"]],[22,24,["H3605"]],[24,26,["H4467"]],[26,29,["H776"]],[29,33,["H423"]],[33,36,["H8047"]],[36,39,["H8322"]],[39,42,["H2781"]],[42,44,["H3605"]],[44,46,["H1471"]],[46,47,["H834","H8033"]],[47,50,["H5080"]],[50,51,[]]]},{"k":19654,"v":[[0,1,["H8478","H834"]],[1,4,["H3808"]],[4,5,["H8085"]],[5,6,["H413"]],[6,8,["H1697"]],[8,9,["H5002"]],[9,11,["H3068"]],[11,12,["H834"]],[12,14,["H7971"]],[14,15,["H413"]],[15,17,["(H853)"]],[17,19,["H5650"]],[19,21,["H5030"]],[21,24,["H7925"]],[24,26,["H7971"]],[26,31,["H3808"]],[31,32,["H8085"]],[32,33,["H5002"]],[33,35,["H3068"]]]},{"k":19655,"v":[[0,1,["H8085"]],[1,2,["H859"]],[2,5,["H1697"]],[5,8,["H3068"]],[8,9,["H3605"]],[9,13,["H1473"]],[13,14,["H834"]],[14,17,["H7971"]],[17,19,["H4480","H3389"]],[19,21,["H894"]]]},{"k":19656,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,11,["H413"]],[11,12,["H256"]],[12,14,["H1121"]],[14,16,["H6964"]],[16,18,["H413"]],[18,19,["H6667"]],[19,21,["H1121"]],[21,23,["H4641"]],[23,25,["H5012"]],[25,27,["H8267"]],[27,32,["H8034"]],[32,33,["H2009"]],[33,36,["H5414"]],[36,40,["H3027"]],[40,42,["H5019"]],[42,43,["H4428"]],[43,45,["H894"]],[45,49,["H5221"]],[49,53,["H5869"]]]},{"k":19657,"v":[[0,2,["H4480"]],[2,7,["H3947"]],[7,9,["H7045"]],[9,11,["H3605"]],[11,13,["H1546"]],[13,15,["H3063"]],[15,16,["H834"]],[16,19,["H894"]],[19,20,["H559"]],[20,22,["H3068"]],[22,23,["H7760"]],[23,26,["H6667"]],[26,29,["H256"]],[29,30,["H834"]],[30,32,["H4428"]],[32,34,["H894"]],[34,35,["H7033"]],[35,38,["H784"]]]},{"k":19658,"v":[[0,1,["H3282","H834"]],[1,4,["H6213"]],[4,5,["H5039"]],[5,7,["H3478"]],[7,11,["H5003"]],[11,12,["H854"]],[12,14,["H7453"]],[14,15,["H802"]],[15,18,["H1696"]],[18,19,["H8267"]],[19,20,["H1697"]],[20,23,["H8034"]],[23,24,["H834"]],[24,27,["H3808"]],[27,28,["H6680"]],[28,31,["H595"]],[31,32,["H3045"]],[32,36,["H5707"]],[36,37,["H5002"]],[37,39,["H3068"]]]},{"k":19659,"v":[[0,5,["H559"]],[5,6,["H413"]],[6,7,["H8098"]],[7,9,["H5161"]],[9,10,["H559"]]]},{"k":19660,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,11,["H559"]],[11,12,["H3282","H834"]],[12,13,["H859"]],[13,15,["H7971"]],[15,16,["H5612"]],[16,19,["H8034"]],[19,20,["H413"]],[20,21,["H3605"]],[21,23,["H5971"]],[23,24,["H834"]],[24,27,["H3389"]],[27,29,["H413"]],[29,30,["H6846"]],[30,32,["H1121"]],[32,34,["H4641"]],[34,36,["H3548"]],[36,38,["H413"]],[38,39,["H3605"]],[39,41,["H3548"]],[41,42,["H559"]]]},{"k":19661,"v":[[0,2,["H3068"]],[2,4,["H5414"]],[4,6,["H3548"]],[6,10,["H8478"]],[10,11,["H3077"]],[11,13,["H3548"]],[13,17,["H1961"]],[17,18,["H6496"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,26,["H3605"]],[26,27,["H376"]],[27,30,["H7696"]],[30,35,["H5012"]],[35,39,["H5414"]],[39,41,["H413"]],[41,42,["H4115"]],[42,44,["H413"]],[44,46,["H6729"]]]},{"k":19662,"v":[[0,1,["H6258"]],[1,3,["H4100"]],[3,6,["H3808"]],[6,7,["H1605"]],[7,8,["H3414"]],[8,10,["H6069"]],[10,15,["H5012"]],[15,17,[]]]},{"k":19663,"v":[[0,1,["H3588"]],[1,2,["H5921","H3651"]],[2,4,["H7971"]],[4,5,["H413"]],[5,8,["H894"]],[8,9,["H559"]],[9,10,["H1931"]],[10,13,["H752"]],[13,14,["H1129"]],[14,16,["H1004"]],[16,18,["H3427"]],[18,22,["H5193"]],[22,23,["H1593"]],[23,25,["H398","(H853)"]],[25,27,["H6529"]],[27,29,[]]]},{"k":19664,"v":[[0,2,["H6846"]],[2,4,["H3548"]],[4,5,["H7121","(H853)"]],[5,6,["H2088"]],[6,7,["H5612"]],[7,10,["H241"]],[10,12,["H3414"]],[12,14,["H5030"]]]},{"k":19665,"v":[[0,2,["H1961"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H413"]],[8,9,["H3414"]],[9,10,["H559"]]]},{"k":19666,"v":[[0,1,["H7971"]],[1,2,["H5921"]],[2,3,["H3605"]],[3,7,["H1473"]],[7,8,["H559"]],[8,9,["H3541"]],[9,10,["H559"]],[10,12,["H3068"]],[12,13,["H413"]],[13,14,["H8098"]],[14,16,["H5161"]],[16,17,["H3283","H834"]],[17,19,["H8098"]],[19,21,["H5012"]],[21,25,["H589"]],[25,26,["H7971"]],[26,28,["H3808"]],[28,34,["H982","(H853)"]],[34,35,["H5921"]],[35,37,["H8267"]]]},{"k":19667,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,9,["H6485","H5921"]],[9,10,["H8098"]],[10,12,["H5161"]],[12,15,["H2233"]],[15,18,["H3808"]],[18,19,["H1961"]],[19,21,["H376"]],[21,23,["H3427"]],[23,24,["H8432"]],[24,25,["H2088"]],[25,26,["H5971"]],[26,27,["H3808"]],[27,30,["H7200"]],[30,32,["H2896"]],[32,33,["H834"]],[33,34,["H589"]],[34,36,["H6213"]],[36,39,["H5971"]],[39,40,["H5002"]],[40,42,["H3068"]],[42,43,["H3588"]],[43,46,["H1696"]],[46,47,["H5627"]],[47,48,["H5921"]],[48,50,["H3068"]]]},{"k":19668,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H413"]],[5,6,["H3414"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,10,["H559"]]]},{"k":19669,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H430"]],[5,7,["H3478"]],[7,8,["H559"]],[8,9,["H3789"]],[9,10,["(H853)"]],[10,11,["H3605"]],[11,13,["H1697"]],[13,14,["H834"]],[14,17,["H1696"]],[17,18,["H413"]],[18,20,["H413"]],[20,22,["H5612"]]]},{"k":19670,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H3117"]],[4,5,["H935"]],[5,6,["H5002"]],[6,8,["H3068"]],[8,13,["H7725","(H853)"]],[13,15,["H7622"]],[15,18,["H5971"]],[18,19,["H3478"]],[19,21,["H3063"]],[21,22,["H559"]],[22,24,["H3068"]],[24,31,["H7725"]],[31,32,["H413"]],[32,34,["H776"]],[34,35,["H834"]],[35,37,["H5414"]],[37,40,["H1"]],[40,44,["H3423"]],[44,45,[]]]},{"k":19671,"v":[[0,2,["H428"]],[2,5,["H1697"]],[5,6,["H834"]],[6,8,["H3068"]],[8,9,["H1696"]],[9,10,["H413"]],[10,11,["H3478"]],[11,13,["H413"]],[13,14,["H3063"]]]},{"k":19672,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,8,["H8085"]],[8,10,["H6963"]],[10,12,["H2731"]],[12,14,["H6343"]],[14,16,["H369"]],[16,18,["H7965"]]]},{"k":19673,"v":[[0,1,["H7592"]],[1,3,["H4994"]],[3,5,["H7200"]],[5,6,["H518"]],[6,8,["H2145"]],[8,12,["H3205"]],[12,13,["H4069"]],[13,16,["H7200"]],[16,17,["H3605"]],[17,18,["H1397"]],[18,21,["H3027"]],[21,22,["H5921"]],[22,24,["H2504"]],[24,29,["H3205"]],[29,31,["H3605"]],[31,32,["H6440"]],[32,34,["H2015"]],[34,36,["H3420"]]]},{"k":19674,"v":[[0,1,["H1945"]],[1,2,["H3588"]],[2,3,["H1931"]],[3,4,["H3117"]],[4,6,["H1419"]],[6,9,["H4480","H369"]],[9,12,["H3644"]],[12,13,["H1931"]],[13,17,["H6256"]],[17,19,["H3290"]],[19,20,["H6869"]],[20,25,["H3467"]],[25,27,["H4480"]],[27,28,[]]]},{"k":19675,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,10,["H5002"]],[10,12,["H3068"]],[12,14,["H6635"]],[14,18,["H7665"]],[18,20,["H5923"]],[20,22,["H4480","H5921"]],[22,24,["H6677"]],[24,27,["H5423"]],[27,29,["H4147"]],[29,31,["H2114"]],[31,33,["H3808"]],[33,34,["H5750"]],[34,35,["H5647"]],[35,38,[]]]},{"k":19676,"v":[[0,4,["H5647","(H853)"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H1732"]],[10,12,["H4428"]],[12,13,["H834"]],[13,17,["H6965"]],[17,19,[]]]},{"k":19677,"v":[[0,2,["H3372"]],[2,3,["H859"]],[3,4,["H408"]],[4,7,["H5650"]],[7,8,["H3290"]],[8,9,["H5002"]],[9,11,["H3068"]],[11,12,["H408"]],[12,14,["H2865"]],[14,16,["H3478"]],[16,17,["H3588"]],[17,18,["H2009"]],[18,21,["H3467"]],[21,24,["H4480","H7350"]],[24,27,["H2233"]],[27,30,["H4480","H776"]],[30,33,["H7628"]],[33,35,["H3290"]],[35,37,["H7725"]],[37,42,["H8252"]],[42,45,["H7599"]],[45,47,["H369"]],[47,51,["H2729"]]]},{"k":19678,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,4,["H854"]],[4,6,["H5002"]],[6,8,["H3068"]],[8,10,["H3467"]],[10,12,["H3588"]],[12,14,["H6213"]],[14,17,["H3617"]],[17,19,["H3605"]],[19,20,["H1471"]],[20,21,["H834","H8033"]],[21,24,["H6327"]],[24,26,["H389"]],[26,29,["H3808"]],[29,30,["H6213"]],[30,33,["H3617"]],[33,39,["H3256"]],[39,42,["H4941"]],[42,45,["H3808"]],[45,49,["H5352","H5352"]]]},{"k":19679,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H7667"]],[7,9,["H605"]],[9,12,["H4347"]],[12,14,["H2470"]]]},{"k":19680,"v":[[0,3,["H369"]],[3,5,["H1777"]],[5,7,["H1779"]],[7,13,["H4205"]],[13,16,["H369"]],[16,17,["H8585"]],[17,18,["H7499"]]]},{"k":19681,"v":[[0,1,["H3605"]],[1,3,["H157"]],[3,5,["H7911"]],[5,8,["H1875"]],[8,10,["H3808"]],[10,11,["H3588"]],[11,14,["H5221"]],[14,18,["H4347"]],[18,21,["H341"]],[21,24,["H4148"]],[24,27,["H394"]],[27,29,["H5921"]],[29,31,["H7230"]],[31,34,["H5771"]],[34,37,["H2403"]],[37,39,["H6105"]]]},{"k":19682,"v":[[0,1,["H4100"]],[1,2,["H2199"]],[2,4,["H5921"]],[4,6,["H7667"]],[6,8,["H4341"]],[8,10,["H605"]],[10,11,["H5921"]],[11,13,["H7230"]],[13,16,["H5771"]],[16,19,["H2403"]],[19,21,["H6105"]],[21,24,["H6213"]],[24,25,["H428"]],[25,28,[]]]},{"k":19683,"v":[[0,1,["H3651"]],[1,2,["H3605"]],[2,5,["H398"]],[5,9,["H398"]],[9,11,["H3605"]],[11,13,["H6862"]],[13,15,["H3605"]],[15,19,["H1980"]],[19,21,["H7628"]],[21,25,["H7601"]],[25,28,["H1961"]],[28,30,["H4933"]],[30,32,["H3605"]],[32,34,["H962"]],[34,39,["H5414"]],[39,42,["H957"]]]},{"k":19684,"v":[[0,1,["H3588"]],[1,4,["H5927"]],[4,5,["H724"]],[5,11,["H7495"]],[11,15,["H4480","H4347"]],[15,16,["H5002"]],[16,18,["H3068"]],[18,19,["H3588"]],[19,21,["H7121"]],[21,24,["H5080"]],[24,26,["H1931"]],[26,28,["H6726"]],[28,30,["H369"]],[30,32,["H1875"]],[32,33,[]]]},{"k":19685,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H2009"]],[5,9,["H7725"]],[9,11,["H7622"]],[11,13,["H3290"]],[13,14,["H168"]],[14,17,["H7355"]],[17,20,["H4908"]],[20,23,["H5892"]],[23,26,["H1129"]],[26,27,["H5921"]],[27,30,["H8510"]],[30,33,["H759"]],[33,35,["H3427"]],[35,36,["H5921"]],[36,38,["H4941"]],[38,39,[]]]},{"k":19686,"v":[[0,3,["H4480"]],[3,6,["H3318"]],[6,7,["H8426"]],[7,10,["H6963"]],[10,15,["H7832"]],[15,19,["H7235"]],[19,24,["H3808"]],[24,26,["H4591"]],[26,30,["H3513"]],[30,35,["H3808"]],[35,37,["H6819"]]]},{"k":19687,"v":[[0,2,["H1121"]],[2,5,["H1961"]],[5,7,["H6924"]],[7,10,["H5712"]],[10,13,["H3559"]],[13,14,["H6440"]],[14,19,["H6485","H5921"]],[19,20,["H3605"]],[20,22,["H3905"]],[22,23,[]]]},{"k":19688,"v":[[0,3,["H117"]],[3,5,["H1961"]],[5,6,["H4480"]],[6,10,["H4910"]],[10,12,["H3318"]],[12,15,["H4480","H7130"]],[15,25,["H7126"]],[25,29,["H5066"]],[29,30,["H413"]],[30,32,["H3588"]],[32,33,["H4310"]],[33,35,["H2088"]],[35,36,["H1931"]],[36,37,["H6148","(H853)"]],[37,39,["H3820"]],[39,41,["H5066"]],[41,42,["H413"]],[42,44,["H5002"]],[44,46,["H3068"]]]},{"k":19689,"v":[[0,4,["H1961"]],[4,6,["H5971"]],[6,8,["H595"]],[8,10,["H1961"]],[10,12,["H430"]]]},{"k":19690,"v":[[0,1,["H2009"]],[1,3,["H5591"]],[3,6,["H3068"]],[6,8,["H3318"]],[8,10,["H2534"]],[10,12,["H1641"]],[12,13,["H5591"]],[13,18,["H2342"]],[18,19,["H5921"]],[19,21,["H7218"]],[21,24,["H7563"]]]},{"k":19691,"v":[[0,2,["H2740"]],[2,3,["H639"]],[3,6,["H3068"]],[6,8,["H3808"]],[8,9,["H7725"]],[9,10,["H5704"]],[10,13,["H6213"]],[13,16,["H5704"]],[16,19,["H6965"]],[19,21,["H4209"]],[21,24,["H3820"]],[24,27,["H319"]],[27,28,["H3117"]],[28,31,["H995"]],[31,32,[]]]},{"k":19692,"v":[[0,3,["H1931"]],[3,4,["H6256"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,10,["H1961"]],[10,12,["H430"]],[12,14,["H3605"]],[14,16,["H4940"]],[16,18,["H3478"]],[18,20,["H1992"]],[20,22,["H1961"]],[22,24,["H5971"]]]},{"k":19693,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H5971"]],[6,9,["H8300"]],[9,12,["H2719"]],[12,13,["H4672"]],[13,14,["H2580"]],[14,17,["H4057"]],[17,19,["H3478"]],[19,22,["H1980"]],[22,27,["H7280"]]]},{"k":19694,"v":[[0,2,["H3068"]],[2,4,["H7200"]],[4,6,["H4480","H7350"]],[6,13,["H157"]],[13,17,["H5769"]],[17,18,["H160"]],[18,19,["H5921","H3651"]],[19,21,["H2617"]],[21,24,["H4900"]],[24,25,[]]]},{"k":19695,"v":[[0,1,["H5750"]],[1,4,["H1129"]],[4,10,["H1129"]],[10,12,["H1330"]],[12,14,["H3478"]],[14,17,["H5750"]],[17,19,["H5710"]],[19,22,["H8596"]],[22,26,["H3318"]],[26,29,["H4234"]],[29,34,["H7832"]]]},{"k":19696,"v":[[0,3,["H5750"]],[3,4,["H5193"]],[4,5,["H3754"]],[5,8,["H2022"]],[8,10,["H8111"]],[10,12,["H5193"]],[12,14,["H5193"]],[14,21,["H2490"]]]},{"k":19697,"v":[[0,1,["H3588"]],[1,4,["H3426"]],[4,6,["H3117"]],[6,9,["H5341"]],[9,12,["H2022"]],[12,13,["H669"]],[13,15,["H7121"]],[15,16,["H6965"]],[16,22,["H5927"]],[22,24,["H6726"]],[24,25,["H413"]],[25,27,["H3068"]],[27,29,["H430"]]]},{"k":19698,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H7442"]],[6,8,["H8057"]],[8,10,["H3290"]],[10,12,["H6670"]],[12,15,["H7218"]],[15,18,["H1471"]],[18,19,["H8085"]],[19,21,["H1984"]],[21,24,["H559"]],[24,26,["H3068"]],[26,27,["H3467","(H853)"]],[27,29,["H5971","(H853)"]],[29,31,["H7611"]],[31,33,["H3478"]]]},{"k":19699,"v":[[0,1,["H2009"]],[1,4,["H935"]],[4,8,["H6828"]],[8,9,["H4480","H776"]],[9,11,["H6908"]],[11,15,["H4480","H3411"]],[15,18,["H776"]],[18,23,["H5787"]],[23,26,["H6455"]],[26,30,["H2029"]],[30,36,["H3205"]],[36,37,["H3162"]],[37,39,["H1419"]],[39,40,["H6951"]],[40,42,["H7725"]],[42,43,["H2008"]]]},{"k":19700,"v":[[0,3,["H935"]],[3,5,["H1065"]],[5,8,["H8469"]],[8,11,["H2986"]],[11,18,["H1980"]],[18,19,["H413"]],[19,21,["H5158"]],[21,23,["H4325"]],[23,26,["H3477"]],[26,27,["H1870"]],[27,31,["H3808"]],[31,32,["H3782"]],[32,33,["H3588"]],[33,35,["H1961"]],[35,37,["H1"]],[37,39,["H3478"]],[39,41,["H669"]],[41,44,["H1060"]]]},{"k":19701,"v":[[0,1,["H8085"]],[1,3,["H1697"]],[3,6,["H3068"]],[6,9,["H1471"]],[9,11,["H5046"]],[11,15,["H339"]],[15,17,["H4480","H4801"]],[17,19,["H559"]],[19,22,["H2219"]],[22,23,["H3478"]],[23,25,["H6908"]],[25,28,["H8104"]],[28,32,["H7462"]],[32,35,["H5739"]]]},{"k":19702,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H6299","(H853)"]],[5,6,["H3290"]],[6,8,["H1350"]],[8,12,["H4480","H3027"]],[12,17,["H2389"]],[17,18,["H4480"]],[18,19,[]]]},{"k":19703,"v":[[0,4,["H935"]],[4,6,["H7442"]],[6,9,["H4791"]],[9,11,["H6726"]],[11,15,["H5102"]],[15,16,["H413"]],[16,18,["H2898"]],[18,21,["H3068"]],[21,22,["H5921"]],[22,23,["H1715"]],[23,25,["H5921"]],[25,26,["H8492"]],[26,28,["H5921"]],[28,29,["H3323"]],[29,31,["H5921"]],[31,33,["H1121"]],[33,36,["H6629"]],[36,40,["H1241"]],[40,43,["H5315"]],[43,45,["H1961"]],[45,48,["H7302"]],[48,49,["H1588"]],[49,53,["H3808"]],[53,54,["H1669"]],[54,56,["H3254"]],[56,58,[]]]},{"k":19704,"v":[[0,1,["H227"]],[1,4,["H1330"]],[4,5,["H8055"]],[5,8,["H4234"]],[8,11,["H970"]],[11,13,["H2205"]],[13,14,["H3162"]],[14,18,["H2015"]],[18,20,["H60"]],[20,22,["H8342"]],[22,25,["H5162"]],[25,30,["H8055"]],[30,33,["H4480","H3015"]]]},{"k":19705,"v":[[0,4,["H7301"]],[4,6,["H5315"]],[6,9,["H3548"]],[9,11,["H1880"]],[11,14,["H5971"]],[14,18,["H7646","(H853)"]],[18,20,["H2898"]],[20,21,["H5002"]],[21,23,["H3068"]]]},{"k":19706,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6963"]],[6,8,["H8085"]],[8,10,["H7414"]],[10,11,["H5092"]],[11,13,["H8563"]],[13,14,["H1065"]],[14,15,["H7354"]],[15,16,["H1058"]],[16,17,["H5921"]],[17,19,["H1121"]],[19,20,["H3985"]],[20,23,["H5162"]],[23,24,["H5921"]],[24,26,["H1121"]],[26,27,["H3588"]],[27,30,["H369"]]]},{"k":19707,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H4513"]],[5,7,["H6963"]],[7,9,["H4480","H1065"]],[9,12,["H5869"]],[12,14,["H4480","H1832"]],[14,15,["H3588"]],[15,17,["H6468"]],[17,19,["H3426"]],[19,20,["H7939"]],[20,21,["H5002"]],[21,23,["H3068"]],[23,28,["H7725"]],[28,31,["H4480","H776"]],[31,34,["H341"]]]},{"k":19708,"v":[[0,3,["H3426"]],[3,4,["H8615"]],[4,7,["H319"]],[7,8,["H5002"]],[8,10,["H3068"]],[10,13,["H1121"]],[13,16,["H7725"]],[16,20,["H1366"]]]},{"k":19709,"v":[[0,4,["H8085","H8085"]],[4,5,["H669"]],[5,7,["H5110"]],[7,11,["H3256"]],[11,16,["H3256"]],[16,19,["H5695"]],[19,20,["H3808","H3925"]],[20,24,["H7725"]],[24,31,["H7725"]],[31,32,["H3588"]],[32,33,["H859"]],[33,36,["H3068"]],[36,38,["H430"]]]},{"k":19710,"v":[[0,1,["H3588"]],[1,3,["H310"]],[3,6,["H7725"]],[6,8,["H5162"]],[8,11,["H310"]],[11,14,["H3045"]],[14,16,["H5606"]],[16,17,["H5921"]],[17,19,["H3409"]],[19,22,["H954"]],[22,24,["H1571"]],[24,25,["H3637"]],[25,26,["H3588"]],[26,29,["H5375"]],[29,31,["H2781"]],[31,34,["H5271"]]]},{"k":19711,"v":[[0,2,["H669"]],[2,4,["H3357"]],[4,5,["H1121"]],[5,9,["H8191"]],[9,10,["H3206"]],[10,11,["H3588"]],[11,12,["H4480","H1767"]],[12,14,["H1696"]],[14,20,["H2142","H2142"]],[20,22,["H5750"]],[22,23,["H5921","H3651"]],[23,25,["H4578"]],[25,27,["H1993"]],[27,34,["H7355","H7355"]],[34,37,["H5002"]],[37,39,["H3068"]]]},{"k":19712,"v":[[0,3,["H5324"]],[3,4,["H6725"]],[4,5,["H7760"]],[5,8,["H8564"]],[8,9,["H7896"]],[9,11,["H3820"]],[11,14,["H4546"]],[14,17,["H1870"]],[17,20,["H1980"]],[20,22,["H7725"]],[22,24,["H1330"]],[24,26,["H3478"]],[26,28,["H7725"]],[28,29,["H413"]],[29,30,["H428"]],[30,32,["H5892"]]]},{"k":19713,"v":[[0,2,["H5704","H4970"]],[2,6,["H2559"]],[6,9,["H7728"]],[9,10,["H1323"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,15,["H1254"]],[15,18,["H2319"]],[18,21,["H776"]],[21,23,["H5347"]],[23,25,["H5437"]],[25,27,["H1397"]]]},{"k":19714,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,12,["H5750"]],[12,15,["H559","(H853)"]],[15,16,["H2088"]],[16,17,["H1697"]],[17,20,["H776"]],[20,22,["H3063"]],[22,26,["H5892"]],[26,32,["H7725","(H853)"]],[32,34,["H7622"]],[34,36,["H3068"]],[36,37,["H1288"]],[37,40,["H5116"]],[40,42,["H6664"]],[42,44,["H2022"]],[44,46,["H6944"]]]},{"k":19715,"v":[[0,4,["H3427"]],[4,6,["H3063"]],[6,10,["H3605"]],[10,12,["H5892"]],[12,14,["H3162"]],[14,15,["H406"]],[15,20,["H5265"]],[20,22,["H5739"]]]},{"k":19716,"v":[[0,1,["H3588"]],[1,4,["H7301"]],[4,6,["H5889"]],[6,7,["H5315"]],[7,11,["H4390"]],[11,12,["H3605"]],[12,13,["H1669"]],[13,14,["H5315"]]]},{"k":19717,"v":[[0,1,["H5921"]],[1,2,["H2063"]],[2,4,["H6974"]],[4,6,["H7200"]],[6,9,["H8142"]],[9,11,["H6149"]],[11,13,[]]]},{"k":19718,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,11,["H2232","(H853)"]],[11,13,["H1004"]],[13,15,["H3478"]],[15,18,["H1004"]],[18,20,["H3063"]],[20,23,["H2233"]],[23,25,["H120"]],[25,29,["H2233"]],[29,31,["H929"]]]},{"k":19719,"v":[[0,6,["H1961"]],[6,9,["H834"]],[9,12,["H8245"]],[12,13,["H5921"]],[13,17,["H5428"]],[17,21,["H5422"]],[21,25,["H2040"]],[25,28,["H6"]],[28,31,["H7489"]],[31,32,["H3651"]],[32,35,["H8245"]],[35,36,["H5921"]],[36,39,["H1129"]],[39,42,["H5193"]],[42,43,["H5002"]],[43,45,["H3068"]]]},{"k":19720,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,6,["H559"]],[6,7,["H3808"]],[7,8,["H5750"]],[8,10,["H1"]],[10,12,["H398"]],[12,15,["H1155"]],[15,18,["H1121"]],[18,19,["H8127"]],[19,23,["H6949"]]]},{"k":19721,"v":[[0,1,["H3588","H518"]],[1,3,["H376"]],[3,5,["H4191"]],[5,9,["H5771"]],[9,10,["H3605"]],[10,11,["H120"]],[11,13,["H398"]],[13,16,["H1155"]],[16,18,["H8127"]],[18,23,["H6949"]]]},{"k":19722,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,11,["H3772"]],[11,13,["H2319"]],[13,14,["H1285"]],[14,15,["H854"]],[15,17,["H1004"]],[17,19,["H3478"]],[19,21,["H854"]],[21,23,["H1004"]],[23,25,["H3063"]]]},{"k":19723,"v":[[0,1,["H3808"]],[1,5,["H1285"]],[5,6,["H834"]],[6,8,["H3772"]],[8,9,["H854"]],[9,11,["H1"]],[11,14,["H3117"]],[14,17,["H2388"]],[17,21,["H3027"]],[21,23,["H3318"]],[23,28,["H4480","H776"]],[28,30,["H4714"]],[30,31,["H834","(H853)"]],[31,33,["H1285"]],[33,34,["H1992"]],[34,35,["H6565"]],[35,37,["H595"]],[37,40,["H1166"]],[40,43,["H5002"]],[43,45,["H3068"]]]},{"k":19724,"v":[[0,1,["H3588"]],[1,2,["H2063"]],[2,6,["H1285"]],[6,7,["H834"]],[7,10,["H3772"]],[10,11,["H854"]],[11,13,["H1004"]],[13,15,["H3478"]],[15,16,["H310"]],[16,17,["H1992"]],[17,18,["H3117"]],[18,19,["H5002"]],[19,21,["H3068"]],[21,24,["H5414","(H853)"]],[24,26,["H8451"]],[26,30,["H7130"]],[30,32,["H3789"]],[32,34,["H5921"]],[34,36,["H3820"]],[36,39,["H1961"]],[39,41,["H430"]],[41,43,["H1992"]],[43,45,["H1961"]],[45,47,["H5971"]]]},{"k":19725,"v":[[0,4,["H3925"]],[4,5,["H3808"]],[5,6,["H5750"]],[6,8,["H376","(H853)"]],[8,10,["H7453"]],[10,13,["H376","(H853)"]],[13,15,["H251"]],[15,16,["H559"]],[16,17,["H3045","(H853)"]],[17,19,["H3068"]],[19,20,["H3588"]],[20,23,["H3605"]],[23,24,["H3045"]],[24,28,["H4480","H6996"]],[28,31,["H5704"]],[31,33,["H1419"]],[33,36,["H5002"]],[36,38,["H3068"]],[38,39,["H3588"]],[39,42,["H5545"]],[42,44,["H5771"]],[44,48,["H2142"]],[48,50,["H2403"]],[50,51,["H3808"]],[51,52,["H5750"]]]},{"k":19726,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H5414"]],[6,8,["H8121"]],[8,11,["H216"]],[11,13,["H3119"]],[13,16,["H2708"]],[16,19,["H3394"]],[19,23,["H3556"]],[23,26,["H216"]],[26,28,["H3915"]],[28,30,["H7280"]],[30,32,["H3220"]],[32,35,["H1530"]],[35,37,["H1993"]],[37,39,["H3068"]],[39,41,["H6635"]],[41,44,["H8034"]]]},{"k":19727,"v":[[0,1,["H518"]],[1,2,["H428"]],[2,3,["H2706"]],[3,4,["H4185"]],[4,6,["H4480","H6440"]],[6,8,["H5002"]],[8,10,["H3068"]],[10,13,["H2233"]],[13,15,["H3478"]],[15,16,["H1571"]],[16,18,["H7673"]],[18,20,["H4480","H1961"]],[20,22,["H1471"]],[22,23,["H6440"]],[23,26,["H3605","H3117"]]]},{"k":19728,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H518"]],[5,6,["H8064"]],[6,7,["H4480","H4605"]],[7,10,["H4058"]],[10,13,["H4146"]],[13,16,["H776"]],[16,18,["H2713"]],[18,19,["H4295"]],[19,20,["H589"]],[20,22,["H1571"]],[22,24,["H3988"]],[24,25,["H3605"]],[25,27,["H2233"]],[27,29,["H3478"]],[29,30,["H5921"]],[30,31,["H3605"]],[31,32,["H834"]],[32,35,["H6213"]],[35,36,["H5002"]],[36,38,["H3068"]]]},{"k":19729,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,10,["H5892"]],[10,13,["H1129"]],[13,16,["H3068"]],[16,19,["H4480","H4026"]],[19,21,["H2606"]],[21,24,["H8179"]],[24,27,["H6438"]]]},{"k":19730,"v":[[0,3,["H4060"]],[3,4,["H6957"]],[4,6,["H5750"]],[6,8,["H3318"]],[8,10,["H5048"]],[10,12,["H5921"]],[12,14,["H1389"]],[14,15,["H1619"]],[15,19,["H5437"]],[19,21,["H1601"]]]},{"k":19731,"v":[[0,3,["H3605"]],[3,4,["H6010"]],[4,8,["H6297"]],[8,12,["H1880"]],[12,14,["H3605"]],[14,16,["H8309"]],[16,17,["H5704"]],[17,19,["H5158"]],[19,21,["H6939"]],[21,22,["H5704"]],[22,24,["H6438"]],[24,27,["H5483"]],[27,28,["H8179"]],[28,31,["H4217"]],[31,34,["H6944"]],[34,37,["H3068"]],[37,40,["H3808"]],[40,43,["H5428"]],[43,44,["H3808"]],[44,46,["H2040"]],[46,48,["H5750"]],[48,50,["H5769"]]]},{"k":19732,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H413"]],[5,6,["H3414"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,12,["H6224"]],[12,13,["H8141"]],[13,15,["H6667"]],[15,16,["H4428"]],[16,18,["H3063"]],[18,19,["H1931"]],[19,22,["H8083","H6240"]],[22,23,["H8141"]],[23,25,["H5019"]]]},{"k":19733,"v":[[0,2,["H227"]],[2,4,["H4428"]],[4,6,["H894"]],[6,7,["H2428"]],[7,8,["H6696","H5921"]],[8,9,["H3389"]],[9,11,["H3414"]],[11,13,["H5030"]],[13,14,["H1961"]],[14,16,["H3607"]],[16,19,["H2691"]],[19,22,["H4307"]],[22,23,["H834"]],[23,27,["H4428"]],[27,29,["H3063"]],[29,30,["H1004"]]]},{"k":19734,"v":[[0,1,["H834"]],[1,2,["H6667"]],[2,3,["H4428"]],[3,5,["H3063"]],[5,9,["H3607"]],[9,10,["H559"]],[10,11,["H4069"]],[11,13,["H859"]],[13,14,["H5012"]],[14,16,["H559"]],[16,17,["H3541"]],[17,18,["H559"]],[18,20,["H3068"]],[20,21,["H2009"]],[21,24,["H5414","(H853)"]],[24,25,["H2063"]],[25,26,["H5892"]],[26,29,["H3027"]],[29,32,["H4428"]],[32,34,["H894"]],[34,38,["H3920"]],[38,39,[]]]},{"k":19735,"v":[[0,2,["H6667"]],[2,3,["H4428"]],[3,5,["H3063"]],[5,7,["H3808"]],[7,8,["H4422"]],[8,12,["H4480","H3027"]],[12,15,["H3778"]],[15,16,["H3588"]],[16,20,["H5414","H5414"]],[20,23,["H3027"]],[23,26,["H4428"]],[26,28,["H894"]],[28,31,["H1696"]],[31,32,["H5973"]],[32,34,["H6310"]],[34,36,["H6310"]],[36,39,["H5869"]],[39,41,["H7200","(H853)"]],[41,43,["H5869"]]]},{"k":19736,"v":[[0,4,["H1980","(H853)"]],[4,5,["H6667"]],[5,7,["H894"]],[7,9,["H8033"]],[9,12,["H1961"]],[12,13,["H5704"]],[13,15,["H6485"]],[15,17,["H5002"]],[17,19,["H3068"]],[19,20,["H3588"]],[20,22,["H3898"]],[22,23,["H854"]],[23,25,["H3778"]],[25,28,["H3808"]],[28,29,["H6743"]]]},{"k":19737,"v":[[0,2,["H3414"]],[2,3,["H559"]],[3,5,["H1697"]],[5,8,["H3068"]],[8,9,["H1961"]],[9,10,["H413"]],[10,12,["H559"]]]},{"k":19738,"v":[[0,1,["H2009"]],[1,2,["H2601"]],[2,4,["H1121"]],[4,6,["H7967"]],[6,8,["H1730"]],[8,10,["H935"]],[10,11,["H413"]],[11,13,["H559"]],[13,14,["H7069"]],[14,15,["(H853)"]],[15,17,["H7704"]],[17,18,["H834"]],[18,21,["H6068"]],[21,22,["H3588"]],[22,24,["H4941"]],[24,26,["H1353"]],[26,30,["H7069"]],[30,31,[]]]},{"k":19739,"v":[[0,2,["H2601"]],[2,4,["H1730"]],[4,5,["H1121"]],[5,6,["H935"]],[6,7,["H413"]],[7,9,["H413"]],[9,11,["H2691"]],[11,14,["H4307"]],[14,18,["H1697"]],[18,21,["H3068"]],[21,23,["H559"]],[23,24,["H413"]],[24,26,["H7069","(H853)"]],[26,28,["H7704"]],[28,31,["H4994"]],[31,32,["H834"]],[32,35,["H6068"]],[35,36,["H834"]],[36,40,["H776"]],[40,42,["H1144"]],[42,43,["H3588"]],[43,45,["H4941"]],[45,47,["H3425"]],[47,52,["H1353"]],[52,55,["H7069"]],[55,61,["H3045"]],[61,62,["H3588"]],[62,63,["H1931"]],[63,66,["H1697"]],[66,69,["H3068"]]]},{"k":19740,"v":[[0,3,["H7069","(H853)"]],[3,5,["H7704"]],[5,6,["H4480","H854"]],[6,7,["H2601"]],[7,9,["H1730"]],[9,10,["H1121"]],[10,11,["H834"]],[11,14,["H6068"]],[14,16,["H8254"]],[16,17,["(H853)"]],[17,19,["H3701"]],[19,21,["H7651","H6240"]],[21,22,["H8255"]],[22,24,["H3701"]]]},{"k":19741,"v":[[0,3,["H3789"]],[3,5,["H5612"]],[5,7,["H2856"]],[7,10,["H5749"]],[10,11,["H5707"]],[11,13,["H8254"]],[13,16,["H3701"]],[16,19,["H3976"]]]},{"k":19742,"v":[[0,3,["H3947","(H853)"]],[3,5,["H5612"]],[5,8,["H4736"]],[8,9,["(H853)"]],[9,13,["H2856"]],[13,17,["H4687"]],[17,19,["H2706"]],[19,24,["H1540"]]]},{"k":19743,"v":[[0,3,["H5414","(H853)"]],[3,5,["H5612"]],[5,8,["H4736"]],[8,9,["H413"]],[9,10,["H1263"]],[10,12,["H1121"]],[12,14,["H5374"]],[14,16,["H1121"]],[16,18,["H4271"]],[18,21,["H5869"]],[21,23,["H2601"]],[23,25,["H1730"]],[25,30,["H5869"]],[30,33,["H5707"]],[33,35,["H3789"]],[35,37,["H5612"]],[37,40,["H4736"]],[40,41,["H5869"]],[41,42,["H3605"]],[42,44,["H3064"]],[44,46,["H3427"]],[46,49,["H2691"]],[49,52,["H4307"]]]},{"k":19744,"v":[[0,3,["H6680","(H853)"]],[3,4,["H1263"]],[4,5,["H5869"]],[5,7,["H559"]]]},{"k":19745,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,11,["H3947","(H853)"]],[11,12,["H428"]],[12,13,["H5612","(H853)"]],[13,14,["H2088"]],[14,15,["H5612"]],[15,18,["H4736"]],[18,22,["H2856"]],[22,24,["H2088"]],[24,25,["H5612"]],[25,28,["H1540"]],[28,30,["H5414"]],[30,34,["H2789"]],[34,35,["H3627"]],[35,36,["H4616"]],[36,39,["H5975"]],[39,40,["H7227"]],[40,41,["H3117"]]]},{"k":19746,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,12,["H1004"]],[12,14,["H7704"]],[14,16,["H3754"]],[16,19,["H7069"]],[19,20,["H5750"]],[20,22,["H2063"]],[22,23,["H776"]]]},{"k":19747,"v":[[0,2,["H310"]],[2,5,["H5414","(H853)"]],[5,7,["H5612"]],[7,10,["H4736"]],[10,11,["H413"]],[11,12,["H1263"]],[12,14,["H1121"]],[14,16,["H5374"]],[16,18,["H6419"]],[18,19,["H413"]],[19,21,["H3068"]],[21,22,["H559"]]]},{"k":19748,"v":[[0,1,["H162"]],[1,2,["H136"]],[2,3,["H3069"]],[3,4,["H2009"]],[4,5,["H859"]],[5,7,["H6213","(H853)"]],[7,9,["H8064"]],[9,12,["H776"]],[12,15,["H1419"]],[15,16,["H3581"]],[16,19,["H5186"]],[19,20,["H2220"]],[20,24,["H3808","H3605","H1697"]],[24,26,["H6381"]],[26,27,["H4480"]],[27,28,[]]]},{"k":19749,"v":[[0,2,["H6213"]],[2,3,["H2617"]],[3,5,["H505"]],[5,7,["H7999"]],[7,9,["H5771"]],[9,12,["H1"]],[12,13,["H413"]],[13,15,["H2436"]],[15,18,["H1121"]],[18,19,["H310"]],[19,22,["H1419"]],[22,24,["H1368"]],[24,25,["H410"]],[25,27,["H3068"]],[27,29,["H6635"]],[29,32,["H8034"]]]},{"k":19750,"v":[[0,1,["H1419"]],[1,3,["H6098"]],[3,5,["H7227"]],[5,7,["H5950"]],[7,8,["H834"]],[8,10,["H5869"]],[10,12,["H6491"]],[12,13,["H5921"]],[13,14,["H3605"]],[14,16,["H1870"]],[16,19,["H1121"]],[19,21,["H120"]],[21,23,["H5414"]],[23,25,["H376"]],[25,29,["H1870"]],[29,34,["H6529"]],[34,37,["H4611"]]]},{"k":19751,"v":[[0,1,["H834"]],[1,3,["H7760"]],[3,4,["H226"]],[4,6,["H4159"]],[6,9,["H776"]],[9,11,["H4714"]],[11,13,["H5704"]],[13,14,["H2088"]],[14,15,["H3117"]],[15,18,["H3478"]],[18,22,["H120"]],[22,25,["H6213"]],[25,28,["H8034"]],[28,31,["H2088"]],[31,32,["H3117"]]]},{"k":19752,"v":[[0,4,["H3318","(H853)"]],[4,6,["H5971","(H853)"]],[6,7,["H3478"]],[7,11,["H4480","H776"]],[11,13,["H4714"]],[13,15,["H226"]],[15,18,["H4159"]],[18,22,["H2389"]],[22,23,["H3027"]],[23,28,["H5186"]],[28,29,["H248"]],[29,32,["H1419"]],[32,33,["H4172"]]]},{"k":19753,"v":[[0,3,["H5414"]],[3,4,["(H853)"]],[4,5,["H2063"]],[5,6,["H776"]],[6,7,["H834"]],[7,10,["H7650"]],[10,13,["H1"]],[13,15,["H5414"]],[15,18,["H776"]],[18,19,["H2100"]],[19,21,["H2461"]],[21,23,["H1706"]]]},{"k":19754,"v":[[0,3,["H935"]],[3,6,["H3423"]],[6,10,["H8085"]],[10,11,["H3808"]],[11,13,["H6963"]],[13,14,["H3808"]],[14,15,["H1980"]],[15,18,["H8451"]],[18,21,["H6213","(H853)"]],[21,22,["H3808"]],[22,24,["H3605"]],[24,25,["H834"]],[25,27,["H6680"]],[27,30,["H6213"]],[30,34,["(H853)"]],[34,35,["H3605"]],[35,36,["H2063"]],[36,37,["H7451"]],[37,40,["H7122"]],[40,41,[]]]},{"k":19755,"v":[[0,1,["H2009"]],[1,3,["H5550"]],[3,6,["H935"]],[6,9,["H5892"]],[9,11,["H3920"]],[11,15,["H5892"]],[15,17,["H5414"]],[17,20,["H3027"]],[20,23,["H3778"]],[23,25,["H3898"]],[25,26,["H5921"]],[26,28,["H4480","H6440"]],[28,31,["H2719"]],[31,35,["H7458"]],[35,39,["H1698"]],[39,41,["H834"]],[41,44,["H1696"]],[44,48,["H1961"]],[48,50,["H2009"]],[50,52,["H7200"]],[52,53,[]]]},{"k":19756,"v":[[0,2,["H859"]],[2,4,["H559"]],[4,5,["H413"]],[5,8,["H136"]],[8,9,["H3069"]],[9,10,["H7069"]],[10,13,["H7704"]],[13,15,["H3701"]],[15,17,["H5749"]],[17,18,["H5707"]],[18,21,["H5892"]],[21,23,["H5414"]],[23,26,["H3027"]],[26,29,["H3778"]]]},{"k":19757,"v":[[0,2,["H1961"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H413"]],[8,9,["H3414"]],[9,10,["H559"]]]},{"k":19758,"v":[[0,1,["H2009"]],[1,2,["H589"]],[2,5,["H3068"]],[5,7,["H430"]],[7,9,["H3605"]],[9,10,["H1320"]],[10,13,["H3605"]],[13,14,["H1697"]],[14,16,["H6381"]],[16,17,["H4480"]],[17,18,[]]]},{"k":19759,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,9,["H5414","(H853)"]],[9,10,["H2063"]],[10,11,["H5892"]],[11,14,["H3027"]],[14,17,["H3778"]],[17,21,["H3027"]],[21,23,["H5019"]],[23,24,["H4428"]],[24,26,["H894"]],[26,30,["H3920"]],[30,31,[]]]},{"k":19760,"v":[[0,3,["H3778"]],[3,5,["H3898"]],[5,6,["H5921"]],[6,7,["H2063"]],[7,8,["H5892"]],[8,10,["H935"]],[10,12,["H3341"]],[12,13,["H784"]],[13,14,["(H853)"]],[14,15,["H2063"]],[15,16,["H5892"]],[16,18,["H8313"]],[18,22,["H1004"]],[22,23,["H5921"]],[23,24,["H834"]],[24,25,["H1406"]],[25,29,["H6999"]],[29,31,["H1168"]],[31,34,["H5258"]],[34,36,["H5262"]],[36,38,["H312"]],[38,39,["H430"]],[39,40,["H4616"]],[40,44,["H3707"]]]},{"k":19761,"v":[[0,1,["H3588"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,8,["H1121"]],[8,10,["H3063"]],[10,11,["H1961"]],[11,12,["H389"]],[12,13,["H6213"]],[13,14,["H7451"]],[14,15,["H5869"]],[15,19,["H4480","H5271"]],[19,20,["H3588"]],[20,22,["H1121"]],[22,24,["H3478"]],[24,26,["H389"]],[26,30,["H3707","(H853)"]],[30,33,["H4639"]],[33,36,["H3027"]],[36,37,["H5002"]],[37,39,["H3068"]]]},{"k":19762,"v":[[0,1,["H3588","H5921"]],[1,2,["H2063"]],[2,3,["H5892"]],[3,5,["H1961"]],[5,10,["H5921"]],[10,13,["H639"]],[13,15,["H5921"]],[15,17,["H2534"]],[17,18,["H4480"]],[18,20,["H3117"]],[20,21,["H834"]],[21,23,["H1129"]],[23,26,["H5704"]],[26,27,["H2088"]],[27,28,["H3117"]],[28,32,["H5493"]],[32,35,["H4480","H5921"]],[35,37,["H6440"]]]},{"k":19763,"v":[[0,1,["H5921"]],[1,3,["H3605"]],[3,5,["H7451"]],[5,8,["H1121"]],[8,10,["H3478"]],[10,14,["H1121"]],[14,16,["H3063"]],[16,17,["H834"]],[17,20,["H6213"]],[20,25,["H3707"]],[25,26,["H1992"]],[26,28,["H4428"]],[28,30,["H8269"]],[30,32,["H3548"]],[32,35,["H5030"]],[35,38,["H376"]],[38,40,["H3063"]],[40,43,["H3427"]],[43,45,["H3389"]]]},{"k":19764,"v":[[0,4,["H6437"]],[4,5,["H413"]],[5,8,["H6203"]],[8,10,["H3808"]],[10,12,["H6440"]],[12,15,["H3925"]],[15,19,["H7925"]],[19,21,["H3925"]],[21,26,["H369"]],[26,27,["H8085"]],[27,29,["H3947"]],[29,30,["H4148"]]]},{"k":19765,"v":[[0,3,["H7760"]],[3,5,["H8251"]],[5,8,["H1004"]],[8,9,["H834"]],[9,11,["H7121"]],[11,12,["H5921"]],[12,14,["H8034"]],[14,16,["H2930"]],[16,17,[]]]},{"k":19766,"v":[[0,3,["H1129","(H853)"]],[3,6,["H1116"]],[6,8,["H1168"]],[8,9,["H834"]],[9,13,["H1516"]],[13,16,["H1121"]],[16,18,["H2011"]],[18,20,["(H853)"]],[20,22,["H1121"]],[22,25,["H1323"]],[25,28,["H5674"]],[28,32,["H4432"]],[32,33,["H834"]],[33,35,["H6680"]],[35,37,["H3808"]],[37,38,["H3808"]],[38,39,["H5927"]],[39,41,["H5921"]],[41,43,["H3820"]],[43,47,["H6213"]],[47,48,["H2063"]],[48,49,["H8441"]],[49,50,["H4616"]],[50,51,["(H853)"]],[51,52,["H3063"]],[52,54,["H2398"]]]},{"k":19767,"v":[[0,2,["H6258"]],[2,3,["H3651"]],[3,4,["H3541"]],[4,5,["H559"]],[5,7,["H3068"]],[7,9,["H430"]],[9,11,["H3478"]],[11,12,["H413"]],[12,13,["H2063"]],[13,14,["H5892"]],[14,15,["H834"]],[15,16,["H859"]],[16,17,["H559"]],[17,21,["H5414"]],[21,24,["H3027"]],[24,27,["H4428"]],[27,29,["H894"]],[29,32,["H2719"]],[32,36,["H7458"]],[36,40,["H1698"]]]},{"k":19768,"v":[[0,1,["H2009"]],[1,4,["H6908"]],[4,8,["H4480","H3605"]],[8,9,["H776"]],[9,10,["H834","H8033"]],[10,13,["H5080"]],[13,17,["H639"]],[17,21,["H2534"]],[21,24,["H1419"]],[24,25,["H7110"]],[25,31,["H7725"]],[31,32,["H413"]],[32,33,["H2088"]],[33,34,["H4725"]],[34,41,["H3427"]],[41,42,["H983"]]]},{"k":19769,"v":[[0,4,["H1961"]],[4,6,["H5971"]],[6,8,["H589"]],[8,10,["H1961"]],[10,12,["H430"]]]},{"k":19770,"v":[[0,4,["H5414"]],[4,6,["H259"]],[6,7,["H3820"]],[7,9,["H259"]],[9,10,["H1870"]],[10,14,["H3372"]],[14,17,["H3605","H3117"]],[17,20,["H2896"]],[20,26,["H1121"]],[26,27,["H310"]],[27,28,[]]]},{"k":19771,"v":[[0,4,["H3772"]],[4,6,["H5769"]],[6,7,["H1285"]],[7,10,["H834"]],[10,13,["H3808"]],[13,15,["H7725"]],[15,16,["H4480","H310"]],[16,21,["H3190","(H853)"]],[21,25,["H5414"]],[25,27,["H3374"]],[27,30,["H3824"]],[30,34,["H1115"]],[34,35,["H5493"]],[35,36,["H4480","H5921"]],[36,37,[]]]},{"k":19772,"v":[[0,4,["H7797"]],[4,5,["H5921"]],[5,10,["H2895","(H853)"]],[10,14,["H5193"]],[14,17,["H2063"]],[17,18,["H776"]],[18,19,["H571"]],[19,22,["H3605"]],[22,23,["H3820"]],[23,27,["H3605"]],[27,28,["H5315"]]]},{"k":19773,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H834"]],[7,10,["H935","(H853)"]],[10,11,["H3605"]],[11,12,["H2063"]],[12,13,["H1419"]],[13,14,["H7451"]],[14,15,["H413"]],[15,16,["H2088"]],[16,17,["H5971"]],[17,18,["H3651"]],[18,20,["H595"]],[20,21,["H935"]],[21,22,["H5921"]],[22,23,["(H853)"]],[23,24,["H3605"]],[24,26,["H2896"]],[26,27,["H834"]],[27,28,["H595"]],[28,30,["H1696","H5921"]],[30,31,[]]]},{"k":19774,"v":[[0,2,["H7704"]],[2,5,["H7069"]],[5,7,["H2063"]],[7,8,["H776"]],[8,9,["H834"]],[9,10,["H859"]],[10,11,["H559"]],[11,12,["H1931"]],[12,14,["H8077"]],[14,15,["H4480","H369"]],[15,16,["H120"]],[16,18,["H929"]],[18,21,["H5414"]],[21,24,["H3027"]],[24,27,["H3778"]]]},{"k":19775,"v":[[0,3,["H7069"]],[3,4,["H7704"]],[4,6,["H3701"]],[6,8,["H3789"]],[8,9,["H5612"]],[9,11,["H2856"]],[11,14,["H5749"]],[14,15,["H5707"]],[15,18,["H776"]],[18,20,["H1144"]],[20,25,["H5439"]],[25,26,["H3389"]],[26,30,["H5892"]],[30,32,["H3063"]],[32,36,["H5892"]],[36,39,["H2022"]],[39,43,["H5892"]],[43,46,["H8219"]],[46,50,["H5892"]],[50,53,["H5045"]],[53,54,["H3588"]],[54,57,["(H853)"]],[57,59,["H7622"]],[59,61,["H7725"]],[61,62,["H5002"]],[62,64,["H3068"]]]},{"k":19776,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,11,["H8145"]],[11,14,["H1931"]],[14,16,["H5750"]],[16,18,["H6113"]],[18,21,["H2691"]],[21,24,["H4307"]],[24,25,["H559"]]]},{"k":19777,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6213"]],[6,9,["H3068"]],[9,11,["H3335"]],[11,14,["H3559"]],[14,17,["H3068"]],[17,20,["H8034"]]]},{"k":19778,"v":[[0,1,["H7121"]],[1,2,["H413"]],[2,7,["H6030"]],[7,10,["H5046"]],[10,12,["H1419"]],[12,14,["H1219"]],[14,18,["H3045"]],[18,19,["H3808"]]]},{"k":19779,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H430"]],[7,9,["H3478"]],[9,10,["H5921"]],[10,12,["H1004"]],[12,14,["H2063"]],[14,15,["H5892"]],[15,17,["H5921"]],[17,19,["H1004"]],[19,22,["H4428"]],[22,24,["H3063"]],[24,28,["H5422"]],[28,29,["H413"]],[29,31,["H5550"]],[31,33,["H413"]],[33,35,["H2719"]]]},{"k":19780,"v":[[0,2,["H935"]],[2,4,["H3898"]],[4,5,["H854"]],[5,7,["H3778"]],[7,12,["H4390"]],[12,14,["H854"]],[14,17,["H6297"]],[17,19,["H120"]],[19,20,["H834"]],[20,23,["H5221"]],[23,26,["H639"]],[26,30,["H2534"]],[30,32,["H5921"]],[32,33,["H3605"]],[33,34,["H834"]],[34,35,["H7451"]],[35,38,["H5641"]],[38,40,["H6440"]],[40,42,["H2063"]],[42,43,["H4480","H5892"]]]},{"k":19781,"v":[[0,1,["H2009"]],[1,4,["H4608"]],[4,6,["H724"]],[6,8,["H4832"]],[8,12,["H7495"]],[12,16,["H1540"]],[16,20,["H6283"]],[20,22,["H7965"]],[22,24,["H571"]]]},{"k":19782,"v":[[0,4,["(H853)"]],[4,6,["H7622"]],[6,8,["H3063"]],[8,11,["H7622"]],[11,13,["H3478"]],[13,15,["H7725"]],[15,18,["H1129"]],[18,23,["H7223"]]]},{"k":19783,"v":[[0,4,["H2891"]],[4,7,["H4480","H3605"]],[7,9,["H5771"]],[9,10,["H834"]],[10,13,["H2398"]],[13,19,["H5545"]],[19,20,["H3605"]],[20,22,["H5771"]],[22,23,["H834"]],[23,26,["H2398"]],[26,28,["H834"]],[28,31,["H6586"]],[31,33,[]]]},{"k":19784,"v":[[0,4,["H1961"]],[4,8,["H8034"]],[8,10,["H8342"]],[10,12,["H8416"]],[12,15,["H8597"]],[15,17,["H3605"]],[17,19,["H1471"]],[19,22,["H776"]],[22,23,["H834"]],[23,25,["H8085","(H853)"]],[25,26,["H3605"]],[26,28,["H2896"]],[28,29,["H834"]],[29,30,["H595"]],[30,32,["H6213"]],[32,37,["H6342"]],[37,39,["H7264"]],[39,40,["H5921"]],[40,41,["H3605"]],[41,43,["H2896"]],[43,45,["H5921"]],[45,46,["H3605"]],[46,48,["H7965"]],[48,49,["H834"]],[49,50,["H595"]],[50,51,["H6213"]],[51,53,[]]]},{"k":19785,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5750"]],[5,9,["H8085"]],[9,11,["H2088"]],[11,12,["H4725"]],[12,13,["H834"]],[13,14,["H859"]],[14,15,["H559"]],[15,18,["H2720"]],[18,19,["H4480","H369"]],[19,20,["H120"]],[20,22,["H4480","H369"]],[22,23,["H929"]],[23,27,["H5892"]],[27,29,["H3063"]],[29,33,["H2351"]],[33,35,["H3389"]],[35,38,["H8074"]],[38,39,["H4480","H369"]],[39,40,["H120"]],[40,42,["H4480","H369"]],[42,43,["H3427"]],[43,45,["H4480","H369"]],[45,46,["H929"]]]},{"k":19786,"v":[[0,2,["H6963"]],[2,4,["H8342"]],[4,7,["H6963"]],[7,9,["H8057"]],[9,11,["H6963"]],[11,14,["H2860"]],[14,17,["H6963"]],[17,20,["H3618"]],[20,22,["H6963"]],[22,27,["H559"]],[27,28,["H3034","(H853)"]],[28,30,["H3068"]],[30,32,["H6635"]],[32,33,["H3588"]],[33,35,["H3068"]],[35,37,["H2896"]],[37,38,["H3588"]],[38,40,["H2617"]],[40,43,["H5769"]],[43,49,["H935"]],[49,53,["H8426"]],[53,56,["H1004"]],[56,59,["H3068"]],[59,60,["H3588"]],[60,65,["H7725","(H853)"]],[65,67,["H7622"]],[67,70,["H776"]],[70,74,["H7223"]],[74,75,["H559"]],[75,77,["H3068"]]]},{"k":19787,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H5750"]],[7,9,["H2088"]],[9,10,["H4725"]],[10,13,["H2720"]],[13,14,["H4480","H369"]],[14,15,["H120"]],[15,17,["H5704"]],[17,18,["H929"]],[18,21,["H3605"]],[21,23,["H5892"]],[23,26,["H1961"]],[26,28,["H5116"]],[28,30,["H7462"]],[30,33,["H6629"]],[33,36,["H7257"]]]},{"k":19788,"v":[[0,3,["H5892"]],[3,6,["H2022"]],[6,9,["H5892"]],[9,12,["H8219"]],[12,16,["H5892"]],[16,19,["H5045"]],[19,23,["H776"]],[23,25,["H1144"]],[25,30,["H5439"]],[30,31,["H3389"]],[31,35,["H5892"]],[35,37,["H3063"]],[37,40,["H6629"]],[40,41,["H5674"]],[41,42,["H5750"]],[42,43,["H5921"]],[43,45,["H3027"]],[45,49,["H4487"]],[49,51,["H559"]],[51,53,["H3068"]]]},{"k":19789,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,11,["H6965","(H853)"]],[11,13,["H2896"]],[13,14,["H1697"]],[14,15,["H834"]],[15,18,["H1696"]],[18,19,["H413"]],[19,21,["H1004"]],[21,23,["H3478"]],[23,25,["H5704"]],[25,27,["H1004"]],[27,29,["H3063"]]]},{"k":19790,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,6,["H1931"]],[6,7,["H6256"]],[7,12,["H6780"]],[12,14,["H6666"]],[14,17,["H6779"]],[17,19,["H1732"]],[19,23,["H6213"]],[23,24,["H4941"]],[24,26,["H6666"]],[26,29,["H776"]]]},{"k":19791,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,5,["H3063"]],[5,7,["H3467"]],[7,9,["H3389"]],[9,11,["H7931"]],[11,12,["H983"]],[12,14,["H2088"]],[14,18,["H834"]],[18,22,["H7121"]],[22,24,["H3068"]],[24,26,["H6664"]]]},{"k":19792,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H1732"]],[6,8,["H3808"]],[8,9,["H3772"]],[9,11,["H376"]],[11,13,["H3427"]],[13,14,["H5921"]],[14,16,["H3678"]],[16,19,["H1004"]],[19,21,["H3478"]]]},{"k":19793,"v":[[0,1,["H3808"]],[1,4,["H3548"]],[4,6,["H3881"]],[6,7,["H3772"]],[7,9,["H376"]],[9,10,["H4480","H6440"]],[10,13,["H5927"]],[13,15,["H5930"]],[15,18,["H6999"]],[18,20,["H4503"]],[20,23,["H6213"]],[23,24,["H2077"]],[24,25,["H3605","H3117"]]]},{"k":19794,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,10,["H559"]]]},{"k":19795,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H518"]],[5,8,["H6565","(H853)"]],[8,10,["H1285"]],[10,13,["H3117"]],[13,16,["H1285"]],[16,19,["H3915"]],[19,24,["H1115"]],[24,25,["H1961"]],[25,26,["H3119"]],[26,28,["H3915"]],[28,31,["H6256"]]]},{"k":19796,"v":[[0,3,["H1571"]],[3,5,["H1285"]],[5,7,["H6565"]],[7,8,["H854"]],[8,9,["H1732"]],[9,11,["H5650"]],[11,16,["H4480","H1961"]],[16,18,["H1121"]],[18,20,["H4427"]],[20,21,["H5921"]],[21,23,["H3678"]],[23,25,["H854"]],[25,27,["H3881"]],[27,29,["H3548"]],[29,31,["H8334"]]]},{"k":19797,"v":[[0,1,["H834"]],[1,3,["H6635"]],[3,5,["H8064"]],[5,6,["H3808"]],[6,8,["H5608"]],[8,9,["H3808"]],[9,11,["H2344"]],[11,14,["H3220"]],[14,15,["H4058"]],[15,16,["H3651"]],[16,19,["H7235","(H853)"]],[19,21,["H2233"]],[21,23,["H1732"]],[23,25,["H5650"]],[25,28,["H3881"]],[28,31,["H8334"]],[31,32,[]]]},{"k":19798,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,10,["H559"]]]},{"k":19799,"v":[[0,1,["H7200"]],[1,3,["H3808"]],[3,4,["H4100"]],[4,5,["H2088"]],[5,6,["H5971"]],[6,8,["H1696"]],[8,9,["H559"]],[9,11,["H8147"]],[11,12,["H4940"]],[12,13,["H834"]],[13,15,["H3068"]],[15,17,["H977"]],[17,23,["H3988"]],[23,27,["H5006"]],[27,29,["H5971"]],[29,34,["H4480","H1961"]],[34,35,["H5750"]],[35,37,["H1471"]],[37,38,["H6440"]],[38,39,[]]]},{"k":19800,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H518"]],[5,7,["H1285"]],[7,9,["H3808"]],[9,11,["H3119"]],[11,13,["H3915"]],[13,18,["H3808"]],[18,19,["H7760"]],[19,21,["H2708"]],[21,23,["H8064"]],[23,25,["H776"]]]},{"k":19801,"v":[[0,1,["H1571"]],[1,5,["H3988"]],[5,7,["H2233"]],[7,9,["H3290"]],[9,11,["H1732"]],[11,13,["H5650"]],[13,19,["H4480","H3947"]],[19,23,["H4480","H2233"]],[23,26,["H4910"]],[26,27,["H413"]],[27,29,["H2233"]],[29,31,["H85"]],[31,32,["H3446"]],[32,34,["H3290"]],[34,35,["H3588"]],[35,38,["(H853)"]],[38,40,["H7622"]],[40,42,["H7725"]],[42,45,["H7355"]],[45,47,[]]]},{"k":19802,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H413"]],[5,6,["H3414"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,11,["H5019"]],[11,12,["H4428"]],[12,14,["H894"]],[14,16,["H3605"]],[16,18,["H2428"]],[18,20,["H3605"]],[20,22,["H4467"]],[22,25,["H776"]],[25,28,["H4480","H4475","H3027"]],[28,30,["H3605"]],[30,32,["H5971"]],[32,33,["H3898"]],[33,34,["H5921"]],[34,35,["H3389"]],[35,37,["H5921"]],[37,38,["H3605"]],[38,40,["H5892"]],[40,42,["H559"]]]},{"k":19803,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H430"]],[6,8,["H3478"]],[8,9,["H1980"]],[9,11,["H559"]],[11,12,["H413"]],[12,13,["H6667"]],[13,14,["H4428"]],[14,16,["H3063"]],[16,18,["H559","H413"]],[18,20,["H3541"]],[20,21,["H559"]],[21,23,["H3068"]],[23,24,["H2009"]],[24,27,["H5414","(H853)"]],[27,28,["H2063"]],[28,29,["H5892"]],[29,32,["H3027"]],[32,35,["H4428"]],[35,37,["H894"]],[37,41,["H8313"]],[41,44,["H784"]]]},{"k":19804,"v":[[0,2,["H859"]],[2,4,["H3808"]],[4,5,["H4422"]],[5,9,["H4480","H3027"]],[9,10,["H3588"]],[10,14,["H8610","H8610"]],[14,16,["H5414"]],[16,19,["H3027"]],[19,22,["H5869"]],[22,24,["H7200","(H853)"]],[24,26,["H5869"]],[26,29,["H4428"]],[29,31,["H894"]],[31,35,["H1696"]],[35,36,["H854"]],[36,38,["H6310"]],[38,40,["H6310"]],[40,44,["H935"]],[44,46,["H894"]]]},{"k":19805,"v":[[0,1,["H389"]],[1,2,["H8085"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,9,["H6667"]],[9,10,["H4428"]],[10,12,["H3063"]],[12,13,["H3541"]],[13,14,["H559"]],[14,16,["H3068"]],[16,17,["H5921"]],[17,21,["H3808"]],[21,22,["H4191"]],[22,25,["H2719"]]]},{"k":19806,"v":[[0,4,["H4191"]],[4,6,["H7965"]],[6,10,["H4955"]],[10,13,["H1"]],[13,15,["H7223"]],[15,16,["H4428"]],[16,17,["H834"]],[17,18,["H1961"]],[18,19,["H6440"]],[19,21,["H3651"]],[21,24,["H8313"]],[24,31,["H5594"]],[31,34,["H1945"]],[34,35,["H113"]],[35,36,["H3588"]],[36,37,["H589"]],[37,39,["H1696"]],[39,41,["H1697"]],[41,42,["H5002"]],[42,44,["H3068"]]]},{"k":19807,"v":[[0,2,["H3414"]],[2,4,["H5030"]],[4,5,["H1696","(H853)"]],[5,6,["H3605"]],[6,7,["H428"]],[7,8,["H1697"]],[8,9,["H413"]],[9,10,["H6667"]],[10,11,["H4428"]],[11,13,["H3063"]],[13,15,["H3389"]]]},{"k":19808,"v":[[0,3,["H4428"]],[3,5,["H894"]],[5,6,["H2428"]],[6,7,["H3898"]],[7,8,["H5921"]],[8,9,["H3389"]],[9,11,["H5921"]],[11,12,["H3605"]],[12,14,["H5892"]],[14,16,["H3063"]],[16,19,["H3498"]],[19,20,["H413"]],[20,21,["H3923"]],[21,23,["H413"]],[23,24,["H5825"]],[24,25,["H3588"]],[25,26,["H2007"]],[26,27,["H4013"]],[27,28,["H5892"]],[28,29,["H7604"]],[29,32,["H5892"]],[32,34,["H3063"]]]},{"k":19809,"v":[[0,4,["H1697"]],[4,5,["H834"]],[5,6,["H1961"]],[6,7,["H413"]],[7,8,["H3414"]],[8,9,["H4480","H854"]],[9,11,["H3068"]],[11,13,["H310"]],[13,15,["H4428"]],[15,16,["H6667"]],[16,18,["H3772"]],[18,20,["H1285"]],[20,21,["H854"]],[21,22,["H3605"]],[22,24,["H5971"]],[24,25,["H834"]],[25,28,["H3389"]],[28,30,["H7121"]],[30,31,["H1865"]],[31,33,[]]]},{"k":19810,"v":[[0,3,["H376"]],[3,5,["(H853)"]],[5,7,["H5650"]],[7,10,["H376","(H853)"]],[10,12,["H8198"]],[12,15,["H5680"]],[15,18,["H5680"]],[18,19,["H7971"]],[19,20,["H2670"]],[20,22,["H1115","H376"]],[22,24,["H5647"]],[24,32,["H3064"]],[32,34,["H251"]]]},{"k":19811,"v":[[0,3,["H3605"]],[3,5,["H8269"]],[5,7,["H3605"]],[7,9,["H5971"]],[9,10,["H834"]],[10,12,["H935"]],[12,15,["H1285"]],[15,16,["H8085"]],[16,19,["H376"]],[19,21,["(H853)"]],[21,23,["H5650"]],[23,26,["H376","(H853)"]],[26,28,["H8198"]],[28,29,["H7971"]],[29,30,["H2670"]],[30,32,["H1115"]],[32,34,["H5647"]],[34,39,["H5750"]],[39,42,["H8085"]],[42,46,["H7971"]]]},{"k":19812,"v":[[0,2,["H310","H3651"]],[2,4,["H7725"]],[4,6,["(H853)"]],[6,8,["H5650"]],[8,11,["H8198"]],[11,12,["H834"]],[12,16,["H7971"]],[16,17,["H2670"]],[17,19,["H7725"]],[19,24,["H3533"]],[24,26,["H5650"]],[26,29,["H8198"]]]},{"k":19813,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,10,["H4480","H854"]],[10,12,["H3068"]],[12,13,["H559"]]]},{"k":19814,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H430"]],[6,8,["H3478"]],[8,9,["H595"]],[9,10,["H3772"]],[10,12,["H1285"]],[12,13,["H854"]],[13,15,["H1"]],[15,18,["H3117"]],[18,23,["H3318","(H853)"]],[23,27,["H4480","H776"]],[27,29,["H4714"]],[29,33,["H4480","H1004"]],[33,35,["H5650"]],[35,36,["H559"]]]},{"k":19815,"v":[[0,3,["H4480","H7093"]],[3,5,["H7651"]],[5,6,["H8141"]],[6,9,["H7971"]],[9,11,["H376","(H853)"]],[11,13,["H251"]],[13,15,["H5680"]],[15,16,["H834"]],[16,19,["H4376"]],[19,26,["H5647"]],[26,28,["H8337"]],[28,29,["H8141"]],[29,34,["H7971"]],[34,35,["H2670"]],[35,36,["H4480","H5973"]],[36,40,["H1"]],[40,41,["H8085"]],[41,42,["H3808"]],[42,43,["H413"]],[43,45,["H3808"]],[45,46,["H5186","(H853)"]],[46,48,["H241"]]]},{"k":19816,"v":[[0,2,["H859"]],[2,4,["H3117"]],[4,5,["H7725"]],[5,8,["H6213","(H853)"]],[8,9,["H3477"]],[9,12,["H5869"]],[12,14,["H7121"]],[14,15,["H1865"]],[15,17,["H376"]],[17,20,["H7453"]],[20,24,["H3772"]],[24,26,["H1285"]],[26,27,["H6440"]],[27,31,["H1004"]],[31,32,["H834"]],[32,34,["H7121"]],[34,35,["H5921"]],[35,37,["H8034"]]]},{"k":19817,"v":[[0,3,["H7725"]],[3,5,["H2490","(H853)"]],[5,7,["H8034"]],[7,11,["H376","(H853)"]],[11,13,["H5650"]],[13,16,["H376","(H853)"]],[16,18,["H8198"]],[18,19,["H834"]],[19,22,["H7971"]],[22,24,["H2670"]],[24,27,["H5315"]],[27,29,["H7725"]],[29,34,["H3533","(H853)"]],[34,36,["H1961"]],[36,40,["H5650"]],[40,43,["H8198"]]]},{"k":19818,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H859"]],[6,8,["H3808"]],[8,9,["H8085"]],[9,10,["H413"]],[10,13,["H7121"]],[13,14,["H1865"]],[14,16,["H376"]],[16,19,["H251"]],[19,22,["H376"]],[22,25,["H7453"]],[25,26,["H2009"]],[26,28,["H7121"]],[28,30,["H1865"]],[30,33,["H5002"]],[33,35,["H3068"]],[35,36,["H413"]],[36,38,["H2719"]],[38,39,["H413"]],[39,41,["H1698"]],[41,43,["H413"]],[43,45,["H7458"]],[45,49,["H5414"]],[49,53,["H2189"]],[53,55,["H3605"]],[55,57,["H4467"]],[57,60,["H776"]]]},{"k":19819,"v":[[0,4,["H5414","(H853)"]],[4,6,["H376"]],[6,9,["H5674","(H853)"]],[9,11,["H1285"]],[11,12,["H834"]],[12,14,["H3808"]],[14,15,["H6965","(H853)"]],[15,17,["H1697"]],[17,20,["H1285"]],[20,21,["H834"]],[21,24,["H3772"]],[24,25,["H6440"]],[25,27,["H834"]],[27,29,["H3772"]],[29,31,["H5695"]],[31,33,["H8147"]],[33,35,["H5674"]],[35,36,["H996"]],[36,38,["H1335"]],[38,39,[]]]},{"k":19820,"v":[[0,2,["H8269"]],[2,4,["H3063"]],[4,7,["H8269"]],[7,9,["H3389"]],[9,11,["H5631"]],[11,14,["H3548"]],[14,16,["H3605"]],[16,18,["H5971"]],[18,21,["H776"]],[21,23,["H5674"]],[23,24,["H996"]],[24,26,["H1335"]],[26,29,["H5695"]]]},{"k":19821,"v":[[0,4,["H5414"]],[4,8,["H3027"]],[8,11,["H341"]],[11,15,["H3027"]],[15,19,["H1245"]],[19,21,["H5315"]],[21,25,["H5038"]],[25,27,["H1961"]],[27,29,["H3978"]],[29,32,["H5775"]],[32,35,["H8064"]],[35,39,["H929"]],[39,42,["H776"]]]},{"k":19822,"v":[[0,2,["H6667"]],[2,3,["H4428"]],[3,5,["H3063"]],[5,8,["H8269"]],[8,11,["H5414"]],[11,14,["H3027"]],[14,17,["H341"]],[17,21,["H3027"]],[21,25,["H1245"]],[25,27,["H5315"]],[27,31,["H3027"]],[31,34,["H4428"]],[34,36,["H894"]],[36,37,["H2428"]],[37,41,["H5927"]],[41,42,["H4480","H5921"]],[42,43,[]]]},{"k":19823,"v":[[0,1,["H2009"]],[1,4,["H6680"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,12,["H7725"]],[12,13,["H413"]],[13,14,["H2063"]],[14,15,["H5892"]],[15,19,["H3898"]],[19,20,["H5921"]],[20,23,["H3920"]],[23,26,["H8313"]],[26,29,["H784"]],[29,33,["H5414"]],[33,35,["H5892"]],[35,37,["H3063"]],[37,39,["H8077"]],[39,40,["H4480","H369"]],[40,42,["H3427"]]]},{"k":19824,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H413"]],[5,6,["H3414"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,12,["H3117"]],[12,14,["H3079"]],[14,16,["H1121"]],[16,18,["H2977"]],[18,19,["H4428"]],[19,21,["H3063"]],[21,22,["H559"]]]},{"k":19825,"v":[[0,1,["H1980"]],[1,2,["H413"]],[2,4,["H1004"]],[4,7,["H7397"]],[7,10,["H1696"]],[10,13,["H935"]],[13,17,["H1004"]],[17,20,["H3068"]],[20,21,["H413"]],[21,22,["H259"]],[22,25,["H3957"]],[25,29,["H3196"]],[29,31,["H8248"]]]},{"k":19826,"v":[[0,3,["H3947","(H853)"]],[3,4,["H2970"]],[4,6,["H1121"]],[6,8,["H3414"]],[8,10,["H1121"]],[10,12,["H2262"]],[12,15,["H251"]],[15,17,["H3605"]],[17,19,["H1121"]],[19,22,["H3605"]],[22,23,["H1004"]],[23,26,["H7397"]]]},{"k":19827,"v":[[0,3,["H935"]],[3,7,["H1004"]],[7,10,["H3068"]],[10,11,["H413"]],[11,13,["H3957"]],[13,16,["H1121"]],[16,18,["H2605"]],[18,20,["H1121"]],[20,22,["H3012"]],[22,24,["H376"]],[24,26,["H430"]],[26,27,["H834"]],[27,29,["H681"]],[29,31,["H3957"]],[31,34,["H8269"]],[34,35,["H834"]],[35,37,["H4480","H4605"]],[37,39,["H3957"]],[39,41,["H4641"]],[41,43,["H1121"]],[43,45,["H7967"]],[45,47,["H8104"]],[47,50,["H5592"]]]},{"k":19828,"v":[[0,3,["H5414"]],[3,4,["H6440"]],[4,6,["H1121"]],[6,9,["H1004"]],[9,12,["H7397"]],[12,13,["H1375"]],[13,14,["H4392"]],[14,16,["H3196"]],[16,18,["H3563"]],[18,21,["H559"]],[21,22,["H413"]],[22,24,["H8354"]],[24,26,["H3196"]]]},{"k":19829,"v":[[0,3,["H559"]],[3,6,["H8354"]],[6,7,["H3808"]],[7,8,["H3196"]],[8,9,["H3588"]],[9,10,["H3122"]],[10,12,["H1121"]],[12,14,["H7394"]],[14,16,["H1"]],[16,17,["H6680","H5921"]],[17,19,["H559"]],[19,22,["H8354"]],[22,23,["H3808"]],[23,24,["H3196"]],[24,26,["H859"]],[26,29,["H1121"]],[29,31,["H5704","H5769"]]]},{"k":19830,"v":[[0,1,["H3808"]],[1,4,["H1129"]],[4,5,["H1004"]],[5,6,["H3808"]],[6,7,["H2232"]],[7,8,["H2233"]],[8,9,["H3808"]],[9,10,["H5193"]],[10,11,["H3754"]],[11,12,["H3808"]],[12,13,["H1961"]],[13,15,["H3588"]],[15,16,["H3605"]],[16,18,["H3117"]],[18,21,["H3427"]],[21,23,["H168"]],[23,24,["H4616"]],[24,27,["H2421"]],[27,28,["H7227"]],[28,29,["H3117"]],[29,30,["H5921","H6440"]],[30,32,["H127"]],[32,33,["H834","H8033"]],[33,34,["H859"]],[34,36,["H1481"]]]},{"k":19831,"v":[[0,4,["H8085"]],[4,6,["H6963"]],[6,8,["H3082"]],[8,10,["H1121"]],[10,12,["H7394"]],[12,14,["H1"]],[14,16,["H3605"]],[16,17,["H834"]],[17,20,["H6680"]],[20,23,["H8354"]],[23,24,["H1115"]],[24,25,["H3196"]],[25,26,["H3605"]],[26,28,["H3117"]],[28,29,["H587"]],[29,31,["H802"]],[31,33,["H1121"]],[33,36,["H1323"]]]},{"k":19832,"v":[[0,1,["H1115"]],[1,3,["H1129"]],[3,4,["H1004"]],[4,8,["H3427"]],[8,10,["H3808"]],[10,11,["H1961"]],[11,13,["H3754"]],[13,15,["H7704"]],[15,17,["H2233"]]]},{"k":19833,"v":[[0,4,["H3427"]],[4,6,["H168"]],[6,9,["H8085"]],[9,11,["H6213"]],[11,14,["H3605"]],[14,15,["H834"]],[15,16,["H3122"]],[16,18,["H1"]],[18,19,["H6680"]],[19,20,[]]]},{"k":19834,"v":[[0,5,["H1961"]],[5,7,["H5019"]],[7,8,["H4428"]],[8,10,["H894"]],[10,12,["H5927"]],[12,13,["H413"]],[13,15,["H776"]],[15,18,["H559"]],[18,19,["H935"]],[19,23,["H935"]],[23,25,["H3389"]],[25,27,["H4480","H6440"]],[27,30,["H2428"]],[30,33,["H3778"]],[33,36,["H4480","H6440"]],[36,39,["H2428"]],[39,42,["H758"]],[42,45,["H3427"]],[45,47,["H3389"]]]},{"k":19835,"v":[[0,2,["H1961"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H413"]],[8,9,["H3414"]],[9,10,["H559"]]]},{"k":19836,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,11,["H1980"]],[11,13,["H559"]],[13,15,["H376"]],[15,17,["H3063"]],[17,20,["H3427"]],[20,22,["H3389"]],[22,25,["H3808"]],[25,26,["H3947"]],[26,27,["H4148"]],[27,29,["H8085"]],[29,30,["H413"]],[30,32,["H1697"]],[32,33,["H5002"]],[33,35,["H3068"]]]},{"k":19837,"v":[[0,0,["(H853)"]],[0,2,["H1697"]],[2,4,["H3082"]],[4,6,["H1121"]],[6,8,["H7394"]],[8,9,["H834"]],[9,11,["H6680","(H853)"]],[11,13,["H1121"]],[13,14,["H1115"]],[14,16,["H8354"]],[16,17,["H3196"]],[17,19,["H6965"]],[19,21,["H5704"]],[21,22,["H2088"]],[22,23,["H3117"]],[23,25,["H8354"]],[25,26,["H3808"]],[26,27,["H3588"]],[27,28,["H8085","(H853)"]],[28,30,["H1"]],[30,31,["H4687"]],[31,33,["H595"]],[33,35,["H1696"]],[35,36,["H413"]],[36,39,["H7925"]],[39,41,["H1696"]],[41,44,["H8085"]],[44,45,["H3808"]],[45,46,["H413"]],[46,47,[]]]},{"k":19838,"v":[[0,3,["H7971"]],[3,5,["H413"]],[5,6,["(H853)"]],[6,7,["H3605"]],[7,9,["H5650"]],[9,11,["H5030"]],[11,14,["H7925"]],[14,16,["H7971"]],[16,18,["H559"]],[18,19,["H7725"]],[19,21,["H4994"]],[21,23,["H376"]],[23,26,["H7451"]],[26,27,["H4480","H1870"]],[27,29,["H3190"]],[29,31,["H4611"]],[31,33,["H1980"]],[33,34,["H408"]],[34,35,["H310"]],[35,36,["H312"]],[36,37,["H430"]],[37,39,["H5647"]],[39,44,["H3427"]],[44,45,["H413"]],[45,47,["H127"]],[47,48,["H834"]],[48,51,["H5414"]],[51,57,["H1"]],[57,61,["H3808"]],[61,62,["H5186","(H853)"]],[62,64,["H241"]],[64,65,["H3808"]],[65,66,["H8085"]],[66,67,["H413"]],[67,68,[]]]},{"k":19839,"v":[[0,1,["H3588"]],[1,3,["H1121"]],[3,5,["H3082"]],[5,7,["H1121"]],[7,9,["H7394"]],[9,11,["H6965","(H853)"]],[11,13,["H4687"]],[13,16,["H1"]],[16,17,["H834"]],[17,19,["H6680"]],[19,22,["H2088"]],[22,23,["H5971"]],[23,25,["H3808"]],[25,26,["H8085"]],[26,27,["H413"]],[27,28,[]]]},{"k":19840,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H430"]],[6,8,["H6635"]],[8,10,["H430"]],[10,12,["H3478"]],[12,13,["H2009"]],[13,16,["H935"]],[16,17,["H413"]],[17,18,["H3063"]],[18,20,["H413"]],[20,21,["H3605"]],[21,23,["H3427"]],[23,25,["H3389","(H853)"]],[25,26,["H3605"]],[26,28,["H7451"]],[28,29,["H834"]],[29,32,["H1696"]],[32,33,["H5921"]],[33,35,["H3282"]],[35,38,["H1696"]],[38,39,["H413"]],[39,44,["H3808"]],[44,45,["H8085"]],[45,49,["H7121"]],[49,55,["H3808"]],[55,56,["H6030"]]]},{"k":19841,"v":[[0,2,["H3414"]],[2,3,["H559"]],[3,6,["H1004"]],[6,9,["H7397"]],[9,10,["H3541"]],[10,11,["H559"]],[11,13,["H3068"]],[13,15,["H6635"]],[15,17,["H430"]],[17,19,["H3478"]],[19,20,["H3283","H834"]],[20,23,["H8085","H5921"]],[23,25,["H4687"]],[25,27,["H3082"]],[27,29,["H1"]],[29,31,["H8104","(H853)"]],[31,32,["H3605"]],[32,34,["H4687"]],[34,36,["H6213"]],[36,39,["H3605"]],[39,40,["H834"]],[40,43,["H6680"]],[43,44,[]]]},{"k":19842,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,12,["H3122"]],[12,14,["H1121"]],[14,16,["H7394"]],[16,18,["H3808"]],[18,19,["H3772"]],[19,21,["H376"]],[21,23,["H5975"]],[23,24,["H6440"]],[24,27,["H3605","H3117"]]]},{"k":19843,"v":[[0,5,["H1961"]],[5,8,["H7243"]],[8,9,["H8141"]],[9,11,["H3079"]],[11,13,["H1121"]],[13,15,["H2977"]],[15,16,["H4428"]],[16,18,["H3063"]],[18,20,["H2088"]],[20,21,["H1697"]],[21,22,["H1961"]],[22,23,["H413"]],[23,24,["H3414"]],[24,25,["H4480","H854"]],[25,27,["H3068"]],[27,28,["H559"]]]},{"k":19844,"v":[[0,1,["H3947"]],[1,4,["H4039"]],[4,7,["H5612"]],[7,9,["H3789"]],[9,10,["H413","(H853)"]],[10,11,["H3605"]],[11,13,["H1697"]],[13,14,["H834"]],[14,17,["H1696"]],[17,18,["H413"]],[18,20,["H5921"]],[20,21,["H3478"]],[21,23,["H5921"]],[23,24,["H3063"]],[24,26,["H5921"]],[26,27,["H3605"]],[27,29,["H1471"]],[29,32,["H4480","H3117"]],[32,34,["H1696"]],[34,35,["H413"]],[35,39,["H4480","H3117"]],[39,41,["H2977"]],[41,43,["H5704"]],[43,44,["H2088"]],[44,45,["H3117"]]]},{"k":19845,"v":[[0,4,["H194"]],[4,6,["H1004"]],[6,8,["H3063"]],[8,10,["H8085","(H853)"]],[10,11,["H3605"]],[11,13,["H7451"]],[13,14,["H834"]],[14,15,["H595"]],[15,16,["H2803"]],[16,18,["H6213"]],[18,21,["H4616"]],[21,24,["H7725"]],[24,26,["H376"]],[26,29,["H7451"]],[29,30,["H4480","H1870"]],[30,34,["H5545"]],[34,36,["H5771"]],[36,39,["H2403"]]]},{"k":19846,"v":[[0,2,["H3414"]],[2,3,["H7121","(H853)"]],[3,4,["H1263"]],[4,6,["H1121"]],[6,8,["H5374"]],[8,10,["H1263"]],[10,11,["H3789"]],[11,14,["H4480","H6310"]],[14,16,["H3414","(H853)"]],[16,17,["H3605"]],[17,19,["H1697"]],[19,22,["H3068"]],[22,23,["H834"]],[23,26,["H1696"]],[26,27,["H413"]],[27,29,["H5921"]],[29,31,["H4039"]],[31,34,["H5612"]]]},{"k":19847,"v":[[0,2,["H3414"]],[2,3,["H6680","(H853)"]],[3,4,["H1263"]],[4,5,["H559"]],[5,6,["H589"]],[6,9,["H6113"]],[9,11,["H3201","H3808"]],[11,12,["H935"]],[12,15,["H1004"]],[15,18,["H3068"]]]},{"k":19848,"v":[[0,2,["H935"]],[2,3,["H859"]],[3,5,["H7121"]],[5,8,["H4039"]],[8,9,["H834"]],[9,12,["H3789"]],[12,15,["H4480","H6310","(H853)"]],[15,17,["H1697"]],[17,20,["H3068"]],[20,23,["H241"]],[23,26,["H5971"]],[26,29,["H3068"]],[29,30,["H1004"]],[30,33,["H6685"]],[33,34,["H3117"]],[34,36,["H1571"]],[36,39,["H7121"]],[39,43,["H241"]],[43,45,["H3605"]],[45,46,["H3063"]],[46,48,["H935"]],[48,52,["H4480","H5892"]]]},{"k":19849,"v":[[0,3,["H194"]],[3,6,["H5307"]],[6,8,["H8467"]],[8,9,["H6440"]],[9,11,["H3068"]],[11,14,["H7725"]],[14,16,["H376"]],[16,19,["H7451"]],[19,20,["H4480","H1870"]],[20,21,["H3588"]],[21,22,["H1419"]],[22,25,["H639"]],[25,28,["H2534"]],[28,29,["H834"]],[29,31,["H3068"]],[31,33,["H1696"]],[33,34,["H413"]],[34,35,["H2088"]],[35,36,["H5971"]]]},{"k":19850,"v":[[0,2,["H1263"]],[2,4,["H1121"]],[4,6,["H5374"]],[6,7,["H6213"]],[7,10,["H3605"]],[10,11,["H834"]],[11,12,["H3414"]],[12,14,["H5030"]],[14,15,["H6680"]],[15,17,["H7121"]],[17,20,["H5612"]],[20,22,["H1697"]],[22,25,["H3068"]],[25,28,["H3068"]],[28,29,["H1004"]]]},{"k":19851,"v":[[0,5,["H1961"]],[5,8,["H2549"]],[8,9,["H8141"]],[9,11,["H3079"]],[11,13,["H1121"]],[13,15,["H2977"]],[15,16,["H4428"]],[16,18,["H3063"]],[18,21,["H8671"]],[21,22,["H2320"]],[22,25,["H7121"]],[25,27,["H6685"]],[27,28,["H6440"]],[28,30,["H3068"]],[30,32,["H3605"]],[32,34,["H5971"]],[34,36,["H3389"]],[36,39,["H3605"]],[39,41,["H5971"]],[41,43,["H935"]],[43,46,["H4480","H5892"]],[46,48,["H3063"]],[48,50,["H3389"]]]},{"k":19852,"v":[[0,2,["H7121"]],[2,3,["H1263"]],[3,6,["H5612","(H853)"]],[6,8,["H1697"]],[8,10,["H3414"]],[10,13,["H1004"]],[13,16,["H3068"]],[16,19,["H3957"]],[19,21,["H1587"]],[21,23,["H1121"]],[23,25,["H8227"]],[25,27,["H5608"]],[27,30,["H5945"]],[30,31,["H2691"]],[31,34,["H6607"]],[34,37,["H2319"]],[37,38,["H8179"]],[38,41,["H3068"]],[41,42,["H1004"]],[42,45,["H241"]],[45,47,["H3605"]],[47,49,["H5971"]]]},{"k":19853,"v":[[0,2,["H4321"]],[2,4,["H1121"]],[4,6,["H1587"]],[6,8,["H1121"]],[8,10,["H8227"]],[10,12,["H8085"]],[12,14,["H4480","H5921"]],[14,16,["H5612","(H853)"]],[16,17,["H3605"]],[17,19,["H1697"]],[19,22,["H3068"]]]},{"k":19854,"v":[[0,4,["H3381"]],[4,5,["H5921"]],[5,7,["H4428"]],[7,8,["H1004"]],[8,9,["H5921"]],[9,11,["H5608"]],[11,12,["H3957"]],[12,14,["H2009"]],[14,15,["H3605"]],[15,17,["H8269"]],[17,18,["H3427"]],[18,19,["H8033"]],[19,21,["H476"]],[21,23,["H5608"]],[23,25,["H1806"]],[25,27,["H1121"]],[27,29,["H8098"]],[29,31,["H494"]],[31,33,["H1121"]],[33,35,["H5907"]],[35,37,["H1587"]],[37,39,["H1121"]],[39,41,["H8227"]],[41,43,["H6667"]],[43,45,["H1121"]],[45,47,["H2608"]],[47,49,["H3605"]],[49,51,["H8269"]]]},{"k":19855,"v":[[0,2,["H4321"]],[2,3,["H5046"]],[3,5,["(H853)"]],[5,6,["H3605"]],[6,8,["H1697"]],[8,9,["H834"]],[9,12,["H8085"]],[12,14,["H1263"]],[14,15,["H7121"]],[15,17,["H5612"]],[17,20,["H241"]],[20,23,["H5971"]]]},{"k":19856,"v":[[0,2,["H3605"]],[2,4,["H8269"]],[4,5,["H7971","(H853)"]],[5,6,["H3065"]],[6,8,["H1121"]],[8,10,["H5418"]],[10,12,["H1121"]],[12,14,["H8018"]],[14,16,["H1121"]],[16,18,["H3570"]],[18,19,["H413"]],[19,20,["H1263"]],[20,21,["H559"]],[21,22,["H3947"]],[22,25,["H3027"]],[25,27,["H4039"]],[27,28,["H834"]],[28,31,["H7121"]],[31,34,["H241"]],[34,37,["H5971"]],[37,39,["H1980"]],[39,41,["H1263"]],[41,43,["H1121"]],[43,45,["H5374"]],[45,46,["H3947","(H853)"]],[46,48,["H4039"]],[48,51,["H3027"]],[51,53,["H935"]],[53,54,["H413"]],[54,55,[]]]},{"k":19857,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H3427"]],[7,8,["H4994"]],[8,10,["H7121"]],[10,14,["H241"]],[14,16,["H1263"]],[16,17,["H7121"]],[17,21,["H241"]]]},{"k":19858,"v":[[0,5,["H1961"]],[5,9,["H8085","(H853)"]],[9,10,["H3605"]],[10,12,["H1697"]],[12,15,["H6342"]],[15,16,["H413"]],[16,17,["H376"]],[17,19,["H7453"]],[19,21,["H559"]],[21,22,["H413"]],[22,23,["H1263"]],[23,27,["H5046","H5046"]],[27,29,["H4428"]],[29,30,["(H853)"]],[30,31,["H3605"]],[31,32,["H428"]],[32,33,["H1697"]]]},{"k":19859,"v":[[0,3,["H7592"]],[3,4,["H1263"]],[4,5,["H559"]],[5,6,["H5046"]],[6,8,["H4994"]],[8,9,["H349"]],[9,12,["H3789","(H853)"]],[12,13,["H3605"]],[13,14,["H428"]],[14,15,["H1697"]],[15,18,["H4480","H6310"]]]},{"k":19860,"v":[[0,2,["H1263"]],[2,3,["H559"]],[3,6,["H7121","(H853)"]],[6,7,["H3605"]],[7,8,["H428"]],[8,9,["H1697"]],[9,10,["H413"]],[10,14,["H4480","H6310"]],[14,16,["H589"]],[16,17,["H3789"]],[17,20,["H1773"]],[20,21,["H5921"]],[21,23,["H5612"]]]},{"k":19861,"v":[[0,2,["H559"]],[2,4,["H8269"]],[4,5,["H413"]],[5,6,["H1263"]],[6,7,["H1980"]],[7,8,["H5641"]],[8,10,["H859"]],[10,12,["H3414"]],[12,15,["H408"]],[15,16,["H376"]],[16,17,["H3045"]],[17,18,["H375"]],[18,20,[]]]},{"k":19862,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H4428"]],[7,10,["H2691"]],[10,14,["H6485"]],[14,16,["H4039"]],[16,19,["H3957"]],[19,21,["H476"]],[21,23,["H5608"]],[23,25,["H5046","(H853)"]],[25,26,["H3605"]],[26,28,["H1697"]],[28,31,["H241"]],[31,34,["H4428"]]]},{"k":19863,"v":[[0,3,["H4428"]],[3,4,["H7971","(H853)"]],[4,5,["H3065"]],[5,7,["H3947","(H853)"]],[7,9,["H4039"]],[9,12,["H3947"]],[12,16,["H476"]],[16,18,["H5608"]],[18,19,["H4480","H3957"]],[19,21,["H3065"]],[21,22,["H7121"]],[22,26,["H241"]],[26,29,["H4428"]],[29,33,["H241"]],[33,35,["H3605"]],[35,37,["H8269"]],[37,39,["H5975"]],[39,40,["H4480","H5921"]],[40,42,["H4428"]]]},{"k":19864,"v":[[0,3,["H4428"]],[3,4,["H3427"]],[4,7,["H1004","H2779"]],[7,10,["H8671"]],[10,11,["H2320"]],[11,19,["H254"]],[19,20,["H1197"]],[20,21,["H6440"]],[21,22,[]]]},{"k":19865,"v":[[0,5,["H1961"]],[5,8,["H3065"]],[8,10,["H7121"]],[10,11,["H7969"]],[11,13,["H702"]],[13,14,["H1817"]],[14,16,["H7167"]],[16,20,["H8593","H5608"]],[20,22,["H7993"]],[22,24,["H413"]],[24,26,["H784"]],[26,27,["H834"]],[27,29,["H413"]],[29,31,["H254"]],[31,32,["H5704"]],[32,33,["H3605"]],[33,35,["H4039"]],[35,37,["H8552"]],[37,38,["H5921"]],[38,40,["H784"]],[40,41,["H834"]],[41,43,["H5921"]],[43,45,["H254"]]]},{"k":19866,"v":[[0,4,["H3808"]],[4,5,["H6342"]],[5,6,["H3808"]],[6,7,["H7167","(H853)"]],[7,9,["H899"]],[9,12,["H4428"]],[12,14,["H3605"]],[14,17,["H5650"]],[17,19,["H8085","(H853)"]],[19,20,["H3605"]],[20,21,["H428"]],[21,22,["H1697"]]]},{"k":19867,"v":[[0,1,["H1571"]],[1,2,["H494"]],[2,4,["H1806"]],[4,6,["H1587"]],[6,9,["H6293"]],[9,12,["H4428"]],[12,16,["H1115"]],[16,17,["H8313","(H853)"]],[17,19,["H4039"]],[19,23,["H3808"]],[23,24,["H8085","H413"]],[24,25,[]]]},{"k":19868,"v":[[0,3,["H4428"]],[3,4,["H6680","(H853)"]],[4,5,["H3396"]],[5,7,["H1121"]],[7,9,["H4429"]],[9,11,["H8304"]],[11,13,["H1121"]],[13,15,["H5837"]],[15,17,["H8018"]],[17,19,["H1121"]],[19,21,["H5655"]],[21,23,["H3947","(H853)"]],[23,24,["H1263"]],[24,26,["H5608"]],[26,28,["H3414"]],[28,30,["H5030"]],[30,33,["H3068"]],[33,34,["H5641"]],[34,35,[]]]},{"k":19869,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,11,["H310"]],[11,13,["H4428"]],[13,15,["H8313","(H853)"]],[15,17,["H4039"]],[17,20,["H1697"]],[20,21,["H834"]],[21,22,["H1263"]],[22,23,["H3789"]],[23,26,["H4480","H6310"]],[26,28,["H3414"]],[28,29,["H559"]]]},{"k":19870,"v":[[0,1,["H3947"]],[1,3,["H7725"]],[3,4,["H312"]],[4,5,["H4039"]],[5,7,["H3789"]],[7,8,["H5921"]],[8,9,["(H853)"]],[9,10,["H3605"]],[10,12,["H7223"]],[12,13,["H1697"]],[13,14,["H834"]],[14,15,["H1961"]],[15,16,["H5921"]],[16,18,["H7223"]],[18,19,["H4039"]],[19,20,["H834"]],[20,21,["H3079"]],[21,23,["H4428"]],[23,25,["H3063"]],[25,27,["H8313"]]]},{"k":19871,"v":[[0,4,["H559"]],[4,5,["H5921"]],[5,6,["H3079"]],[6,7,["H4428"]],[7,9,["H3063"]],[9,10,["H3541"]],[10,11,["H559"]],[11,13,["H3068"]],[13,14,["H859"]],[14,16,["H8313","(H853)"]],[16,17,["H2063"]],[17,18,["H4039"]],[18,19,["H559"]],[19,20,["H4069"]],[20,23,["H3789"]],[23,24,["H5921"]],[24,25,["H559"]],[25,27,["H4428"]],[27,29,["H894"]],[29,32,["H935","H935"]],[32,34,["H7843","(H853)"]],[34,35,["H2063"]],[35,36,["H776"]],[36,41,["H7673"]],[41,42,["H4480"]],[42,44,["H120"]],[44,46,["H929"]]]},{"k":19872,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H5921"]],[6,7,["H3079"]],[7,8,["H4428"]],[8,10,["H3063"]],[10,13,["H1961"]],[13,14,["H3808"]],[14,16,["H3427"]],[16,17,["H5921"]],[17,19,["H3678"]],[19,21,["H1732"]],[21,25,["H5038"]],[25,27,["H1961"]],[27,29,["H7993"]],[29,32,["H3117"]],[32,35,["H2721"]],[35,39,["H3915"]],[39,42,["H7140"]]]},{"k":19873,"v":[[0,4,["H6485","H5921"]],[4,8,["H2233"]],[8,11,["H5650"]],[11,12,["(H853)"]],[12,14,["H5771"]],[14,18,["H935"]],[18,19,["H5921"]],[19,22,["H5921"]],[22,24,["H3427"]],[24,26,["H3389"]],[26,28,["H413"]],[28,30,["H376"]],[30,32,["H3063","(H853)"]],[32,33,["H3605"]],[33,35,["H7451"]],[35,36,["H834"]],[36,39,["H1696"]],[39,40,["H413"]],[40,44,["H8085"]],[44,45,["H3808"]]]},{"k":19874,"v":[[0,2,["H3947"]],[2,3,["H3414"]],[3,4,["H312"]],[4,5,["H4039"]],[5,7,["H5414"]],[7,9,["H413"]],[9,10,["H1263"]],[10,12,["H5608"]],[12,14,["H1121"]],[14,16,["H5374"]],[16,18,["H3789"]],[18,19,["H5921"]],[19,22,["H4480","H6310"]],[22,24,["H3414","(H853)"]],[24,25,["H3605"]],[25,27,["H1697"]],[27,30,["H5612"]],[30,31,["H834"]],[31,32,["H3079"]],[32,33,["H4428"]],[33,35,["H3063"]],[35,37,["H8313"]],[37,40,["H784"]],[40,44,["H3254"]],[44,45,["H5750"]],[45,46,["H5921"]],[46,48,["H7227"]],[48,49,["H1992"]],[49,50,["H1697"]]]},{"k":19875,"v":[[0,2,["H4428"]],[2,3,["H6667"]],[3,5,["H1121"]],[5,7,["H2977"]],[7,8,["H4427"]],[8,9,["H8478"]],[9,11,["H3659"]],[11,13,["H1121"]],[13,15,["H3079"]],[15,16,["H834"]],[16,17,["H5019"]],[17,18,["H4428"]],[18,20,["H894"]],[20,22,["H4427"]],[22,25,["H776"]],[25,27,["H3063"]]]},{"k":19876,"v":[[0,2,["H3808"]],[2,3,["H1931"]],[3,6,["H5650"]],[6,9,["H5971"]],[9,12,["H776"]],[12,14,["H8085"]],[14,15,["H413"]],[15,17,["H1697"]],[17,20,["H3068"]],[20,21,["H834"]],[21,23,["H1696"]],[23,24,["H3027"]],[24,26,["H5030"]],[26,27,["H3414"]]]},{"k":19877,"v":[[0,2,["H6667"]],[2,4,["H4428"]],[4,5,["H7971","(H853)"]],[5,6,["H3081"]],[6,8,["H1121"]],[8,10,["H8018"]],[10,12,["H6846"]],[12,14,["H1121"]],[14,16,["H4641"]],[16,18,["H3548"]],[18,19,["H413"]],[19,21,["H5030"]],[21,22,["H3414"]],[22,23,["H559"]],[23,24,["H6419"]],[24,25,["H4994"]],[25,26,["H413"]],[26,28,["H3068"]],[28,30,["H430"]],[30,31,["H1157"]],[31,32,[]]]},{"k":19878,"v":[[0,2,["H3414"]],[2,4,["H935"]],[4,7,["H3318"]],[7,8,["H8432"]],[8,10,["H5971"]],[10,14,["H3808"]],[14,15,["H5414"]],[15,18,["H1004","H3628"]]]},{"k":19879,"v":[[0,2,["H6547"]],[2,3,["H2428"]],[3,6,["H3318"]],[6,9,["H4480","H4714"]],[9,13,["H3778"]],[13,15,["H6696","H5921"]],[15,16,["H3389"]],[16,17,["H8085","(H853)"]],[17,18,["H8088"]],[18,22,["H5927"]],[22,23,["H4480","H5921"]],[23,24,["H3389"]]]},{"k":19880,"v":[[0,2,["H1961"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H413"]],[8,10,["H5030"]],[10,11,["H3414"]],[11,12,["H559"]]]},{"k":19881,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H430"]],[6,8,["H3478"]],[8,9,["H3541"]],[9,12,["H559"]],[12,13,["H413"]],[13,15,["H4428"]],[15,17,["H3063"]],[17,19,["H7971"]],[19,21,["H413"]],[21,24,["H1875"]],[24,27,["H2009"]],[27,28,["H6547"]],[28,29,["H2428"]],[29,33,["H3318"]],[33,35,["H5833"]],[35,38,["H7725"]],[38,40,["H4714"]],[40,44,["H776"]]]},{"k":19882,"v":[[0,3,["H3778"]],[3,6,["H7725"]],[6,8,["H3898"]],[8,9,["H5921"]],[9,10,["H2063"]],[10,11,["H5892"]],[11,13,["H3920"]],[13,16,["H8313"]],[16,19,["H784"]]]},{"k":19883,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5377"]],[5,6,["H408"]],[6,7,["H5315"]],[7,8,["H559"]],[8,10,["H3778"]],[10,13,["H1980","H1980"]],[13,14,["H4480","H5921"]],[14,16,["H3588"]],[16,19,["H3808"]],[19,20,["H1980"]]]},{"k":19884,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,5,["H5221"]],[5,7,["H3605"]],[7,8,["H2428"]],[8,11,["H3778"]],[11,13,["H3898"]],[13,14,["H854"]],[14,18,["H7604"]],[18,20,["H1856"]],[20,21,["H376"]],[21,28,["H6965"]],[28,30,["H376"]],[30,33,["H168"]],[33,35,["H8313","(H853)"]],[35,36,["H2063"]],[36,37,["H5892"]],[37,39,["H784"]]]},{"k":19885,"v":[[0,5,["H1961"]],[5,9,["H2428"]],[9,12,["H3778"]],[12,15,["H5927"]],[15,16,["H4480","H5921"]],[16,17,["H3389"]],[17,19,["H4480","H6440"]],[19,21,["H6547"]],[21,22,["H2428"]]]},{"k":19886,"v":[[0,2,["H3414"]],[2,4,["H3318"]],[4,7,["H4480","H3389"]],[7,9,["H1980"]],[9,12,["H776"]],[12,14,["H1144"]],[14,17,["H2505"]],[17,18,["H4480","H8033"]],[18,21,["H8432"]],[21,24,["H5971"]]]},{"k":19887,"v":[[0,3,["H1931"]],[3,4,["H1961"]],[4,7,["H8179"]],[7,9,["H1144"]],[9,11,["H1167"]],[11,14,["H6488"]],[14,16,["H8033"]],[16,18,["H8034"]],[18,20,["H3376"]],[20,22,["H1121"]],[22,24,["H8018"]],[24,26,["H1121"]],[26,28,["H2608"]],[28,31,["H8610","(H853)"]],[31,32,["H3414"]],[32,34,["H5030"]],[34,35,["H559"]],[35,36,["H859"]],[36,38,["H5307"]],[38,39,["H413"]],[39,41,["H3778"]]]},{"k":19888,"v":[[0,2,["H559"]],[2,3,["H3414"]],[3,6,["H8267"]],[6,8,["H5307"]],[8,9,["H369"]],[9,11,["H5921"]],[11,13,["H3778"]],[13,16,["H8085"]],[16,17,["H3808"]],[17,18,["H413"]],[18,21,["H3376"]],[21,22,["H8610"]],[22,23,["H3414"]],[23,25,["H935"]],[25,27,["H413"]],[27,29,["H8269"]]]},{"k":19889,"v":[[0,3,["H8269"]],[3,5,["H7107"]],[5,6,["H5921"]],[6,7,["H3414"]],[7,9,["H5221"]],[9,12,["H5414"]],[12,15,["H1004","H612"]],[15,18,["H1004"]],[18,20,["H3083"]],[20,22,["H5608"]],[22,23,["H3588"]],[23,26,["H6213"]],[26,29,["H1004","H3608"]]]},{"k":19890,"v":[[0,1,["H3588"]],[1,2,["H3414"]],[2,4,["H935"]],[4,5,["H413"]],[5,7,["H1004","H953"]],[7,9,["H413"]],[9,11,["H2588"]],[11,13,["H3414"]],[13,15,["H3427"]],[15,16,["H8033"]],[16,17,["H7227"]],[17,18,["H3117"]]]},{"k":19891,"v":[[0,2,["H6667"]],[2,4,["H4428"]],[4,5,["H7971"]],[5,7,["H3947"]],[7,12,["H4428"]],[12,13,["H7592"]],[13,15,["H5643"]],[15,18,["H1004"]],[18,20,["H559"]],[20,22,["H3426"]],[22,24,["H1697"]],[24,25,["H4480","H854"]],[25,27,["H3068"]],[27,29,["H3414"]],[29,30,["H559"]],[30,32,["H3426"]],[32,34,["H559"]],[34,39,["H5414"]],[39,42,["H3027"]],[42,45,["H4428"]],[45,47,["H894"]]]},{"k":19892,"v":[[0,2,["H3414"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H4428"]],[5,6,["H6667"]],[6,7,["H4100"]],[7,10,["H2398"]],[10,16,["H5650"]],[16,19,["H2088"]],[19,20,["H5971"]],[20,21,["H3588"]],[21,24,["H5414"]],[24,26,["H413"]],[26,27,["H1004","H3608"]]]},{"k":19893,"v":[[0,1,["H346"]],[1,5,["H5030"]],[5,6,["H834"]],[6,7,["H5012"]],[7,10,["H559"]],[10,12,["H4428"]],[12,14,["H894"]],[14,16,["H3808"]],[16,17,["H935"]],[17,18,["H5921"]],[18,21,["H5921"]],[21,22,["H2063"]],[22,23,["H776"]]]},{"k":19894,"v":[[0,2,["H8085"]],[2,3,["H6258"]],[3,6,["H4994"]],[6,9,["H113"]],[9,11,["H4428"]],[11,14,["H8467"]],[14,17,["H4994"]],[17,19,["H5307"]],[19,20,["H6440"]],[20,26,["H408"]],[26,28,["H7725"]],[28,31,["H1004"]],[31,33,["H3083"]],[33,35,["H5608"]],[35,36,["H3808"]],[36,38,["H4191"]],[38,39,["H8033"]]]},{"k":19895,"v":[[0,2,["H6667"]],[2,4,["H4428"]],[4,5,["H6680"]],[5,9,["H6485","(H853)"]],[9,10,["H3414"]],[10,13,["H2691"]],[13,16,["H4307"]],[16,21,["H5414"]],[21,23,["H3117"]],[23,25,["H3603"]],[25,27,["H3899"]],[27,31,["H644"]],[31,32,["H4480","H2351"]],[32,33,["H5704"]],[33,34,["H3605"]],[34,36,["H3899"]],[36,37,["H4480"]],[37,39,["H5892"]],[39,41,["H8552"]],[41,43,["H3414"]],[43,44,["H3427"]],[44,47,["H2691"]],[47,50,["H4307"]]]},{"k":19896,"v":[[0,2,["H8203"]],[2,4,["H1121"]],[4,6,["H4977"]],[6,8,["H1436"]],[8,10,["H1121"]],[10,12,["H6583"]],[12,14,["H3116"]],[14,16,["H1121"]],[16,18,["H8018"]],[18,20,["H6583"]],[20,22,["H1121"]],[22,24,["H4441"]],[24,25,["H8085","(H853)"]],[25,27,["H1697"]],[27,28,["H834"]],[28,29,["H3414"]],[29,31,["H1696"]],[31,32,["H413"]],[32,33,["H3605"]],[33,35,["H5971"]],[35,36,["H559"]]]},{"k":19897,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,7,["H3427"]],[7,9,["H2063"]],[9,10,["H5892"]],[10,12,["H4191"]],[12,15,["H2719"]],[15,18,["H7458"]],[18,22,["H1698"]],[22,27,["H3318"]],[27,28,["H413"]],[28,30,["H3778"]],[30,32,["H2421"]],[32,36,["H1961"]],[36,38,["H5315"]],[38,41,["H7998"]],[41,44,["H2425"]]]},{"k":19898,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H2063"]],[5,6,["H5892"]],[6,10,["H5414","H5414"]],[10,13,["H3027"]],[13,16,["H4428"]],[16,18,["H894"]],[18,19,["H2428"]],[19,22,["H3920"]],[22,23,[]]]},{"k":19899,"v":[[0,3,["H8269"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H4428"]],[7,10,["H4994"]],[10,11,["(H853)"]],[11,12,["H2088"]],[12,13,["H376"]],[13,17,["H4191"]],[17,18,["H3588"]],[18,19,["H5921","H3651"]],[19,20,["H1931"]],[20,21,["H7503","(H853)"]],[21,23,["H3027"]],[23,26,["H376"]],[26,28,["H4421"]],[28,30,["H7604"]],[30,32,["H2063"]],[32,33,["H5892"]],[33,36,["H3027"]],[36,38,["H3605"]],[38,40,["H5971"]],[40,42,["H1696"]],[42,43,["H428"]],[43,44,["H1697"]],[44,45,["H413"]],[45,47,["H3588"]],[47,48,["H2088"]],[48,49,["H376"]],[49,50,["H1875"]],[50,51,["H369"]],[51,53,["H7965"]],[53,55,["H2088"]],[55,56,["H5971"]],[56,57,["H3588","H518"]],[57,59,["H7451"]]]},{"k":19900,"v":[[0,2,["H6667"]],[2,4,["H4428"]],[4,5,["H559"]],[5,6,["H2009"]],[6,7,["H1931"]],[7,11,["H3027"]],[11,12,["H3588"]],[12,14,["H4428"]],[14,16,["H369"]],[16,20,["H3201"]],[20,22,["H1697"]],[22,24,[]]]},{"k":19901,"v":[[0,2,["H3947"]],[2,3,["(H853)"]],[3,4,["H3414"]],[4,6,["H7993"]],[6,8,["H413"]],[8,10,["H953"]],[10,12,["H4441"]],[12,14,["H1121"]],[14,16,["H4429"]],[16,17,["H834"]],[17,21,["H2691"]],[21,24,["H4307"]],[24,28,["H7971","(H853)"]],[28,29,["H3414"]],[29,31,["H2256"]],[31,35,["H953"]],[35,38,["H369"]],[38,39,["H4325"]],[39,40,["H3588","H518"]],[40,41,["H2916"]],[41,43,["H3414"]],[43,44,["H2883"]],[44,47,["H2916"]]]},{"k":19902,"v":[[0,3,["H5663"]],[3,5,["H3569"]],[5,6,["H376"]],[6,9,["H5631"]],[9,10,["H1931"]],[10,14,["H4428"]],[14,15,["H1004"]],[15,16,["H8085"]],[16,17,["H3588"]],[17,20,["H5414","(H853)"]],[20,21,["H3414"]],[21,22,["H413"]],[22,24,["H953"]],[24,26,["H4428"]],[26,28,["H3427"]],[28,31,["H8179"]],[31,33,["H1144"]]]},{"k":19903,"v":[[0,1,["H5663"]],[1,3,["H3318"]],[3,7,["H4428"]],[7,8,["H4480","H1004"]],[8,10,["H1696"]],[10,11,["H413"]],[11,13,["H4428"]],[13,14,["H559"]]]},{"k":19904,"v":[[0,2,["H113"]],[2,4,["H4428"]],[4,5,["H428"]],[5,6,["H376"]],[6,9,["H7489"]],[9,10,["(H853)"]],[10,11,["H3605"]],[11,12,["H834"]],[12,15,["H6213"]],[15,17,["H3414"]],[17,19,["H5030","(H853)"]],[19,20,["H834"]],[20,23,["H7993"]],[23,24,["H413"]],[24,26,["H953"]],[26,32,["H4191"]],[32,33,["H4480","H6440"]],[33,34,["H7458"]],[34,38,["H8478"]],[38,41,["H3588"]],[41,44,["H369"]],[44,45,["H5750"]],[45,46,["H3899"]],[46,49,["H5892"]]]},{"k":19905,"v":[[0,3,["H4428"]],[3,4,["H6680","(H853)"]],[4,5,["H5663"]],[5,7,["H3569"]],[7,8,["H559"]],[8,9,["H3947"]],[9,11,["H4480","H2088"]],[11,12,["H7970"]],[12,13,["H376"]],[13,14,["H3027"]],[14,18,["H5927","(H853)"]],[18,19,["H3414"]],[19,21,["H5030"]],[21,23,["H4480"]],[23,25,["H953"]],[25,26,["H2962"]],[26,28,["H4191"]]]},{"k":19906,"v":[[0,2,["H5663"]],[2,3,["H3947","(H853)"]],[3,5,["H376"]],[5,6,["H3027"]],[6,10,["H935"]],[10,12,["H1004"]],[12,15,["H4428"]],[15,16,["H413","H8478"]],[16,18,["H214"]],[18,20,["H3947"]],[20,21,["H4480","H8033"]],[21,22,["H1094"]],[22,24,["H5499"]],[24,26,["H1094"]],[26,28,["H4418"]],[28,32,["H7971"]],[32,34,["H2256"]],[34,35,["H413"]],[35,37,["H953"]],[37,38,["H413"]],[38,39,["H3414"]]]},{"k":19907,"v":[[0,2,["H5663"]],[2,4,["H3569"]],[4,5,["H559"]],[5,6,["H413"]],[6,7,["H3414"]],[7,8,["H7760"]],[8,9,["H4994"]],[9,11,["H1094"]],[11,13,["H5499"]],[13,16,["H4418"]],[16,17,["H8478"]],[17,19,["H679","H3027"]],[19,20,["H4480","H8478"]],[20,22,["H2256"]],[22,24,["H3414"]],[24,25,["H6213"]],[25,26,["H3651"]]]},{"k":19908,"v":[[0,4,["H4900","(H853)"]],[4,5,["H3414"]],[5,7,["H2256"]],[7,11,["H5927","(H853)"]],[11,13,["H4480"]],[13,15,["H953"]],[15,17,["H3414"]],[17,18,["H3427"]],[18,21,["H2691"]],[21,24,["H4307"]]]},{"k":19909,"v":[[0,2,["H6667"]],[2,4,["H4428"]],[4,5,["H7971"]],[5,7,["H3947","(H853)"]],[7,8,["H3414"]],[8,10,["H5030"]],[10,11,["H413"]],[11,13,["H413"]],[13,15,["H7992"]],[15,16,["H3996"]],[16,17,["H834"]],[17,21,["H1004"]],[21,24,["H3068"]],[24,27,["H4428"]],[27,28,["H559"]],[28,29,["H413"]],[29,30,["H3414"]],[30,31,["H589"]],[31,33,["H7592"]],[33,36,["H1697"]],[36,37,["H3582"]],[37,38,["H408","H1697"]],[38,39,["H4480"]],[39,40,[]]]},{"k":19910,"v":[[0,2,["H3414"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H6667"]],[5,6,["H3588"]],[6,8,["H5046"]],[8,14,["H3808"]],[14,19,["H4191","H4191"]],[19,21,["H3588"]],[21,25,["H3289"]],[25,28,["H3808"]],[28,29,["H8085"]],[29,30,["H413"]],[30,31,[]]]},{"k":19911,"v":[[0,2,["H6667"]],[2,4,["H4428"]],[4,5,["H7650"]],[5,6,["H5643"]],[6,7,["H413"]],[7,8,["H3414"]],[8,9,["H559"]],[9,12,["H3068"]],[12,13,["H2416","(H853)"]],[13,14,["H834"]],[14,15,["H6213"]],[15,16,["(H853)"]],[16,17,["H2063"]],[17,18,["H5315"]],[18,21,["H518"]],[21,25,["H4191"]],[25,26,["H518"]],[26,29,["H5414"]],[29,33,["H3027"]],[33,35,["H428"]],[35,36,["H376"]],[36,37,["H834"]],[37,38,["H1245","(H853)"]],[38,40,["H5315"]]]},{"k":19912,"v":[[0,2,["H559"]],[2,3,["H3414"]],[3,4,["H413"]],[4,5,["H6667"]],[5,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,11,["H430"]],[11,13,["H6635"]],[13,15,["H430"]],[15,17,["H3478"]],[17,18,["H518"]],[18,23,["H3318","H3318"]],[23,24,["H413"]],[24,26,["H4428"]],[26,28,["H894"]],[28,29,["H8269"]],[29,32,["H5315"]],[32,34,["H2421"]],[34,36,["H2063"]],[36,37,["H5892"]],[37,39,["H3808"]],[39,41,["H8313"]],[41,43,["H784"]],[43,45,["H859"]],[45,47,["H2421"]],[47,50,["H1004"]]]},{"k":19913,"v":[[0,2,["H518"]],[2,5,["H3808"]],[5,7,["H3318"]],[7,8,["H413"]],[8,10,["H4428"]],[10,12,["H894"]],[12,13,["H8269"]],[13,16,["H2063"]],[16,17,["H5892"]],[17,19,["H5414"]],[19,22,["H3027"]],[22,25,["H3778"]],[25,29,["H8313"]],[29,32,["H784"]],[32,34,["H859"]],[34,36,["H3808"]],[36,37,["H4422"]],[37,41,["H4480","H3027"]]]},{"k":19914,"v":[[0,2,["H6667"]],[2,4,["H4428"]],[4,5,["H559"]],[5,6,["H413"]],[6,7,["H3414"]],[7,8,["H589"]],[8,11,["H1672","(H853)"]],[11,13,["H3064"]],[13,14,["H834"]],[14,16,["H5307"]],[16,17,["H413"]],[17,19,["H3778"]],[19,20,["H6435"]],[20,22,["H5414"]],[22,26,["H3027"]],[26,29,["H5953"]],[29,30,[]]]},{"k":19915,"v":[[0,2,["H3414"]],[2,3,["H559"]],[3,6,["H3808"]],[6,7,["H5414"]],[7,9,["H8085"]],[9,12,["H4994"]],[12,14,["H6963"]],[14,17,["H3068"]],[17,18,["H834"]],[18,19,["H589"]],[19,20,["H1696"]],[20,21,["H413"]],[21,27,["H3190"]],[27,32,["H5315"]],[32,34,["H2421"]]]},{"k":19916,"v":[[0,2,["H518"]],[2,3,["H859"]],[3,4,["H3986"]],[4,7,["H3318"]],[7,8,["H2088"]],[8,11,["H1697"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H7200"]],[16,17,[]]]},{"k":19917,"v":[[0,2,["H2009"]],[2,3,["H3605"]],[3,5,["H802"]],[5,6,["H834"]],[6,8,["H7604"]],[8,11,["H4428"]],[11,13,["H3063"]],[13,14,["H1004"]],[14,18,["H3318"]],[18,19,["H413"]],[19,21,["H4428"]],[21,23,["H894"]],[23,24,["H8269"]],[24,26,["H2007"]],[26,29,["H559"]],[29,31,["H376","H7965"]],[31,33,["H5496"]],[33,38,["H3201"]],[38,42,["H7272"]],[42,44,["H2883"]],[44,47,["H1206"]],[47,52,["H5472"]],[52,53,["H268"]]]},{"k":19918,"v":[[0,5,["H3318"]],[5,6,["H3605"]],[6,8,["H802"]],[8,11,["H1121"]],[11,12,["H413"]],[12,14,["H3778"]],[14,16,["H859"]],[16,18,["H3808"]],[18,19,["H4422"]],[19,23,["H4480","H3027"]],[23,24,["H3588"]],[24,27,["H8610"]],[27,30,["H3027"]],[30,33,["H4428"]],[33,35,["H894"]],[35,40,["H2063"]],[40,41,["H5892"]],[41,44,["H8313"]],[44,46,["H784"]]]},{"k":19919,"v":[[0,2,["H559"]],[2,3,["H6667"]],[3,4,["H413"]],[4,5,["H3414"]],[5,7,["H408"]],[7,8,["H376"]],[8,9,["H3045"]],[9,11,["H428"]],[11,12,["H1697"]],[12,16,["H3808"]],[16,17,["H4191"]]]},{"k":19920,"v":[[0,2,["H3588"]],[2,4,["H8269"]],[4,5,["H8085"]],[5,6,["H3588"]],[6,9,["H1696"]],[9,10,["H854"]],[10,14,["H935"]],[14,15,["H413"]],[15,18,["H559"]],[18,19,["H413"]],[19,21,["H5046"]],[21,24,["H4994"]],[24,25,["H4100"]],[25,28,["H1696"]],[28,29,["H413"]],[29,31,["H4428"]],[31,32,["H3582"]],[32,34,["H408"]],[34,35,["H4480"]],[35,40,["H3808"]],[40,44,["H4191"]],[44,46,["H4100"]],[46,48,["H4428"]],[48,49,["H1696"]],[49,50,["H413"]],[50,51,[]]]},{"k":19921,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H589"]],[7,8,["H5307"]],[8,10,["H8467"]],[10,11,["H6440"]],[11,13,["H4428"]],[13,17,["H1115"]],[17,21,["H7725"]],[21,23,["H3129"]],[23,24,["H1004"]],[24,26,["H4191"]],[26,27,["H8033"]]]},{"k":19922,"v":[[0,2,["H935"]],[2,3,["H3605"]],[3,5,["H8269"]],[5,6,["H413"]],[6,7,["H3414"]],[7,9,["H7592"]],[9,13,["H5046"]],[13,17,["H3605"]],[17,18,["H428"]],[18,19,["H1697"]],[19,20,["H834"]],[20,22,["H4428"]],[22,24,["H6680"]],[24,29,["H2790"]],[29,30,["H4480"]],[30,32,["H3588"]],[32,34,["H1697"]],[34,36,["H3808"]],[36,37,["H8085"]]]},{"k":19923,"v":[[0,2,["H3414"]],[2,3,["H3427"]],[3,6,["H2691"]],[6,9,["H4307"]],[9,10,["H5704"]],[10,12,["H3117"]],[12,13,["H834"]],[13,14,["H3389"]],[14,16,["H3920"]],[16,19,["H1961"]],[19,21,["H834"]],[21,22,["H3389"]],[22,24,["H3920"]]]},{"k":19924,"v":[[0,3,["H8671"]],[3,4,["H8141"]],[4,6,["H6667"]],[6,7,["H4428"]],[7,9,["H3063"]],[9,12,["H6224"]],[12,13,["H2320"]],[13,14,["H935"]],[14,15,["H5019"]],[15,16,["H4428"]],[16,18,["H894"]],[18,20,["H3605"]],[20,22,["H2428"]],[22,23,["H413"]],[23,24,["H3389"]],[24,27,["H6696"]],[27,28,[]]]},{"k":19925,"v":[[0,4,["H6249","H6240"]],[4,5,["H8141"]],[5,7,["H6667"]],[7,10,["H7243"]],[10,11,["H2320"]],[11,13,["H8672"]],[13,17,["H2320"]],[17,19,["H5892"]],[19,22,["H1234"]]]},{"k":19926,"v":[[0,2,["H3605"]],[2,4,["H8269"]],[4,7,["H4428"]],[7,9,["H894"]],[9,11,["H935"]],[11,13,["H3427"]],[13,16,["H8432"]],[16,17,["H8179"]],[17,19,["H5371"]],[19,20,["H5562"]],[20,21,["H8310"]],[21,22,["H7249"]],[22,23,["H5371"]],[23,24,["H7248"]],[24,26,["H3605"]],[26,28,["H7611"]],[28,31,["H8269"]],[31,34,["H4428"]],[34,36,["H894"]]]},{"k":19927,"v":[[0,5,["H1961"]],[5,7,["H834"]],[7,8,["H6667"]],[8,10,["H4428"]],[10,12,["H3063"]],[12,13,["H7200"]],[13,16,["H3605"]],[16,18,["H376"]],[18,20,["H4421"]],[20,23,["H1272"]],[23,26,["H3318"]],[26,28,["H4480"]],[28,30,["H5892"]],[30,32,["H3915"]],[32,35,["H1870"]],[35,38,["H4428"]],[38,39,["H1588"]],[39,42,["H8179"]],[42,43,["H996"]],[43,46,["H2346"]],[46,50,["H3318"]],[50,52,["H1870"]],[52,55,["H6160"]]]},{"k":19928,"v":[[0,3,["H3778"]],[3,4,["H2428"]],[4,5,["H7291"]],[5,6,["H310"]],[6,9,["H5381","(H853)"]],[9,10,["H6667"]],[10,13,["H6160"]],[13,15,["H3405"]],[15,20,["H3947"]],[20,25,["H5927"]],[25,26,["H413"]],[26,27,["H5019"]],[27,28,["H4428"]],[28,30,["H894"]],[30,32,["H7247"]],[32,35,["H776"]],[35,37,["H2574"]],[37,40,["H1696"]],[40,41,["H4941"]],[41,42,["H854"]],[42,43,[]]]},{"k":19929,"v":[[0,3,["H4428"]],[3,5,["H894"]],[5,6,["H7819","(H853)"]],[6,8,["H1121"]],[8,10,["H6667"]],[10,12,["H7247"]],[12,15,["H5869"]],[15,18,["H4428"]],[18,20,["H894"]],[20,21,["H7819"]],[21,22,["H3605"]],[22,24,["H2715"]],[24,26,["H3063"]]]},{"k":19930,"v":[[0,4,["H5786"]],[4,5,["H6677"]],[5,6,["H5869"]],[6,8,["H631"]],[8,11,["H5178"]],[11,13,["H935"]],[13,16,["H894"]]]},{"k":19931,"v":[[0,3,["H3778"]],[3,4,["H8313"]],[4,6,["H4428"]],[6,7,["H1004"]],[7,10,["H1004"]],[10,13,["H5971"]],[13,15,["H784"]],[15,18,["H5422"]],[18,20,["H2346"]],[20,22,["H3389"]]]},{"k":19932,"v":[[0,1,["H227"]],[1,2,["H5018"]],[2,4,["H7227"]],[4,7,["H2876"]],[7,10,["H1540"]],[10,12,["H894"]],[12,14,["H3499"]],[14,17,["H5971"]],[17,19,["H7604"]],[19,22,["H5892"]],[22,27,["H5307"]],[27,28,["H834"]],[28,29,["H5307"]],[29,30,["H5921"]],[30,32,["(H853)"]],[32,34,["H3499"]],[34,37,["H5971"]],[37,39,["H7604"]]]},{"k":19933,"v":[[0,2,["H5018"]],[2,4,["H7227"]],[4,7,["H2876"]],[7,8,["H7604"]],[8,11,["H1800"]],[11,12,["H4480"]],[12,14,["H5971"]],[14,15,["H834"]],[15,17,["H369","H3972"]],[17,20,["H776"]],[20,22,["H3063"]],[22,24,["H5414"]],[24,26,["H3754"]],[26,28,["H3010"]],[28,31,["H1931"]],[31,32,["H3117"]]]},{"k":19934,"v":[[0,2,["H5019"]],[2,3,["H4428"]],[3,5,["H894"]],[5,7,["H6680"]],[7,8,["H5921"]],[8,9,["H3414"]],[9,10,["H3027"]],[10,11,["H5018"]],[11,13,["H7227"]],[13,16,["H2876"]],[16,17,["H559"]]]},{"k":19935,"v":[[0,1,["H3947"]],[1,5,["H5869","H7760"]],[5,6,["H5921"]],[6,9,["H6213"]],[9,11,["H408","H3972"]],[11,12,["H7451"]],[12,13,["H3588","H518"]],[13,14,["H6213"]],[14,15,["H5973"]],[15,17,["H3651"]],[17,18,["H834"]],[18,21,["H1696"]],[21,22,["H413"]],[22,23,[]]]},{"k":19936,"v":[[0,2,["H5018"]],[2,4,["H7227"]],[4,7,["H2876"]],[7,8,["H7971"]],[8,10,["H5021"]],[10,11,["H7249"]],[11,13,["H5371"]],[13,14,["H7248"]],[14,16,["H3605"]],[16,18,["H4428"]],[18,20,["H894"]],[20,21,["H7227"]]]},{"k":19937,"v":[[0,3,["H7971"]],[3,5,["H3947","(H853)"]],[5,6,["H3414"]],[6,10,["H4480","H2691"]],[10,13,["H4307"]],[13,15,["H5414"]],[15,17,["H413"]],[17,18,["H1436"]],[18,20,["H1121"]],[20,22,["H296"]],[22,24,["H1121"]],[24,26,["H8227"]],[26,30,["H3318"]],[30,32,["H1004"]],[32,35,["H3427"]],[35,36,["H8432"]],[36,38,["H5971"]]]},{"k":19938,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,12,["H1961"]],[12,14,["H6113"]],[14,17,["H2691"]],[17,20,["H4307"]],[20,21,["H559"]]]},{"k":19939,"v":[[0,1,["H1980"]],[1,3,["H559"]],[3,5,["H5663"]],[5,7,["H3569"]],[7,8,["H559"]],[8,9,["H3541"]],[9,10,["H559"]],[10,12,["H3068"]],[12,14,["H6635"]],[14,16,["H430"]],[16,18,["H3478"]],[18,19,["H2009"]],[19,22,["H935","(H853)"]],[22,24,["H1697"]],[24,25,["H413"]],[25,26,["H2063"]],[26,27,["H5892"]],[27,29,["H7451"]],[29,31,["H3808"]],[31,33,["H2896"]],[33,37,["H1961"]],[37,40,["H1931"]],[40,41,["H3117"]],[41,42,["H6440"]],[42,43,[]]]},{"k":19940,"v":[[0,4,["H5337"]],[4,7,["H1931"]],[7,8,["H3117"]],[8,9,["H5002"]],[9,11,["H3068"]],[11,15,["H3808"]],[15,17,["H5414"]],[17,20,["H3027"]],[20,23,["H376"]],[23,25,["H834"]],[25,26,["H859"]],[26,28,["H3016","H4480","H6440"]]]},{"k":19941,"v":[[0,1,["H3588"]],[1,5,["H4422","H4422"]],[5,10,["H3808"]],[10,11,["H5307"]],[11,14,["H2719"]],[14,17,["H5315"]],[17,19,["H1961"]],[19,22,["H7998"]],[22,25,["H3588"]],[25,30,["H982"]],[30,33,["H5002"]],[33,35,["H3068"]]]},{"k":19942,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H413"]],[5,6,["H3414"]],[6,7,["H4480","H854"]],[7,9,["H3068"]],[9,11,["H310"]],[11,12,["H5018"]],[12,14,["H7227"]],[14,17,["H2876"]],[17,21,["H7971"]],[21,22,["H4480"]],[22,23,["H7414"]],[23,27,["H3947"]],[27,30,["H631"]],[30,32,["H246"]],[32,33,["H8432"]],[33,34,["H3605"]],[34,39,["H1546"]],[39,41,["H3389"]],[41,43,["H3063"]],[43,48,["H1540"]],[48,50,["H894"]]]},{"k":19943,"v":[[0,3,["H7227"]],[3,6,["H2876"]],[6,7,["H3947"]],[7,8,["H3414"]],[8,10,["H559"]],[10,11,["H413"]],[11,14,["H3068"]],[14,16,["H430"]],[16,18,["H1696","(H853)"]],[18,19,["H2063"]],[19,20,["H7451"]],[20,21,["H413"]],[21,22,["H2088"]],[22,23,["H4725"]]]},{"k":19944,"v":[[0,3,["H3068"]],[3,5,["H935"]],[5,8,["H6213"]],[8,10,["H834"]],[10,13,["H1696"]],[13,14,["H3588"]],[14,17,["H2398"]],[17,20,["H3068"]],[20,23,["H3808"]],[23,24,["H8085"]],[24,26,["H6963"]],[26,28,["H2088"]],[28,29,["H1697"]],[29,31,["H1961"]],[31,33,[]]]},{"k":19945,"v":[[0,2,["H6258"]],[2,3,["H2009"]],[3,5,["H6605"]],[5,8,["H3117"]],[8,9,["H4480"]],[9,11,["H246"]],[11,12,["H834"]],[12,14,["H5921"]],[14,16,["H3027"]],[16,17,["H518"]],[17,22,["H2896","H5869"]],[22,24,["H935"]],[24,25,["H854"]],[25,28,["H894"]],[28,29,["H935"]],[29,34,["H7760","(H853)","H5869"]],[34,35,["H5921"]],[35,38,["H518"]],[38,43,["H7489","H5869"]],[43,45,["H935"]],[45,46,["H854"]],[46,49,["H894"]],[49,50,["H2308"]],[50,51,["H7200"]],[51,52,["H3605"]],[52,54,["H776"]],[54,56,["H6440"]],[56,58,["H413"]],[58,60,["H5869"]],[60,61,["H2896"]],[61,63,["H3477"]],[63,67,["H1980"]],[67,68,["H8033"]],[68,69,["H1980"]]]},{"k":19946,"v":[[0,5,["H3808"]],[5,6,["H5750"]],[6,8,["H7725"]],[8,12,["H7725"]],[12,14,["H413"]],[14,15,["H1436"]],[15,17,["H1121"]],[17,19,["H296"]],[19,21,["H1121"]],[21,23,["H8227"]],[23,24,["H834"]],[24,26,["H4428"]],[26,28,["H894"]],[28,31,["H6485"]],[31,34,["H5892"]],[34,36,["H3063"]],[36,38,["H3427"]],[38,39,["H854"]],[39,41,["H8432"]],[41,43,["H5971"]],[43,44,["H176"]],[44,45,["H1980"]],[45,46,["H413","H3605"]],[46,48,["H5869"]],[48,49,["H3477"]],[49,53,["H1980"]],[53,56,["H7227"]],[56,59,["H2876"]],[59,60,["H5414"]],[60,62,["H737"]],[62,65,["H4864"]],[65,69,["H7971"]]]},{"k":19947,"v":[[0,2,["H935"]],[2,3,["H3414"]],[3,4,["H413"]],[4,5,["H1436"]],[5,7,["H1121"]],[7,9,["H296"]],[9,11,["H4708"]],[11,13,["H3427"]],[13,14,["H854"]],[14,16,["H8432"]],[16,18,["H5971"]],[18,21,["H7604"]],[21,24,["H776"]]]},{"k":19948,"v":[[0,3,["H3605"]],[3,5,["H8269"]],[5,8,["H2428"]],[8,9,["H834"]],[9,13,["H7704"]],[13,15,["H1992"]],[15,18,["H376"]],[18,19,["H8085"]],[19,20,["H3588"]],[20,22,["H4428"]],[22,24,["H894"]],[24,26,["(H853)"]],[26,27,["H1436"]],[27,29,["H1121"]],[29,31,["H296"]],[31,32,["H6485"]],[32,35,["H776"]],[35,36,["H3588"]],[36,38,["H6485"]],[38,39,["H854"]],[39,41,["H376"]],[41,43,["H802"]],[43,45,["H2945"]],[45,49,["H4480","H1803"]],[49,52,["H776"]],[52,55,["H4480","H834"]],[55,57,["H3808"]],[57,60,["H1540"]],[60,62,["H894"]]]},{"k":19949,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,5,["H1436"]],[5,7,["H4708"]],[7,9,["H3458"]],[9,11,["H1121"]],[11,13,["H5418"]],[13,15,["H3110"]],[15,17,["H3129"]],[17,19,["H1121"]],[19,21,["H7143"]],[21,23,["H8304"]],[23,25,["H1121"]],[25,27,["H8576"]],[27,30,["H1121"]],[30,32,["H5778"]],[32,34,["H5200"]],[34,36,["H3153"]],[36,38,["H1121"]],[38,41,["H4602"]],[41,42,["H1992"]],[42,45,["H376"]]]},{"k":19950,"v":[[0,2,["H1436"]],[2,4,["H1121"]],[4,6,["H296"]],[6,8,["H1121"]],[8,10,["H8227"]],[10,11,["H7650"]],[11,17,["H376"]],[17,18,["H559"]],[18,19,["H3372"]],[19,20,["H408"]],[20,22,["H4480","H5647"]],[22,24,["H3778"]],[24,25,["H3427"]],[25,28,["H776"]],[28,30,["H5647","(H853)"]],[30,32,["H4428"]],[32,34,["H894"]],[34,39,["H3190"]],[39,41,[]]]},{"k":19951,"v":[[0,3,["H589"]],[3,4,["H2009"]],[4,7,["H3427"]],[7,9,["H4709"]],[9,11,["H5975","H6440"]],[11,13,["H3778"]],[13,14,["H834"]],[14,16,["H935"]],[16,17,["H413"]],[17,20,["H859"]],[20,21,["H622"]],[21,23,["H3196"]],[23,26,["H7019"]],[26,28,["H8081"]],[28,30,["H7760"]],[30,34,["H3627"]],[34,36,["H3427"]],[36,39,["H5892"]],[39,40,["H834"]],[40,43,["H8610"]]]},{"k":19952,"v":[[0,1,["H1571"]],[1,3,["H3605"]],[3,5,["H3064"]],[5,6,["H834"]],[6,9,["H4124"]],[9,13,["H1121","H5983"]],[13,16,["H123"]],[16,18,["H834"]],[18,21,["H3605"]],[21,23,["H776"]],[23,24,["H8085"]],[24,25,["H3588"]],[25,27,["H4428"]],[27,29,["H894"]],[29,31,["H5414"]],[31,33,["H7611"]],[33,35,["H3063"]],[35,37,["H3588"]],[37,40,["H6485"]],[40,41,["H5921"]],[41,42,["(H853)"]],[42,43,["H1436"]],[43,45,["H1121"]],[45,47,["H296"]],[47,49,["H1121"]],[49,51,["H8227"]]]},{"k":19953,"v":[[0,2,["H3605"]],[2,4,["H3064"]],[4,5,["H7725"]],[5,8,["H4480","H3605"]],[8,9,["H4725"]],[9,10,["H834","H8033"]],[10,13,["H5080"]],[13,15,["H935"]],[15,18,["H776"]],[18,20,["H3063"]],[20,21,["H413"]],[21,22,["H1436"]],[22,24,["H4708"]],[24,26,["H622"]],[26,27,["H3196"]],[27,30,["H7019"]],[30,31,["H3966"]],[31,32,["H7335"]]]},{"k":19954,"v":[[0,2,["H3110"]],[2,4,["H1121"]],[4,6,["H7143"]],[6,8,["H3605"]],[8,10,["H8269"]],[10,13,["H2428"]],[13,14,["H834"]],[14,18,["H7704"]],[18,19,["H935"]],[19,20,["H413"]],[20,21,["H1436"]],[21,23,["H4708"]]]},{"k":19955,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,8,["H3045","H3045"]],[8,9,["H3588"]],[9,10,["H1185"]],[10,12,["H4428"]],[12,15,["H1121","H5983"]],[15,17,["H7971","(H853)"]],[17,18,["H3458"]],[18,20,["H1121"]],[20,22,["H5418"]],[22,24,["H5221","H5315"]],[24,27,["H1436"]],[27,29,["H1121"]],[29,31,["H296"]],[31,32,["H539"]],[32,34,["H3808"]]]},{"k":19956,"v":[[0,2,["H3110"]],[2,4,["H1121"]],[4,6,["H7143"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H1436"]],[9,11,["H4709"]],[11,12,["H5643"]],[12,13,["H559"]],[13,16,["H1980"]],[16,19,["H4994"]],[19,23,["H5221","(H853)"]],[23,24,["H3458"]],[24,26,["H1121"]],[26,28,["H5418"]],[28,30,["H3808"]],[30,31,["H376"]],[31,33,["H3045"]],[33,35,["H4100"]],[35,38,["H5221","H5315"]],[38,41,["H3605"]],[41,43,["H3063"]],[43,46,["H6908"]],[46,47,["H413"]],[47,51,["H6327"]],[51,54,["H7611"]],[54,56,["H3063"]],[56,57,["H6"]]]},{"k":19957,"v":[[0,2,["H1436"]],[2,4,["H1121"]],[4,6,["H296"]],[6,7,["H559"]],[7,8,["H413"]],[8,9,["H3110"]],[9,11,["H1121"]],[11,13,["H7143"]],[13,16,["H408"]],[16,17,["H6213","(H853)"]],[17,18,["H2088"]],[18,19,["H1697"]],[19,20,["H3588"]],[20,21,["H859"]],[21,22,["H1696"]],[22,23,["H8267"]],[23,24,["H413"]],[24,25,["H3458"]]]},{"k":19958,"v":[[0,5,["H1961"]],[5,8,["H7637"]],[8,9,["H2320"]],[9,11,["H3458"]],[11,13,["H1121"]],[13,15,["H5418"]],[15,17,["H1121"]],[17,19,["H476"]],[19,22,["H4480","H2233"]],[22,23,["H4410"]],[23,26,["H7227"]],[26,29,["H4428"]],[29,31,["H6235"]],[31,32,["H376"]],[32,33,["H854"]],[33,35,["H935"]],[35,36,["H413"]],[36,37,["H1436"]],[37,39,["H1121"]],[39,41,["H296"]],[41,43,["H4708"]],[43,45,["H8033"]],[45,48,["H398"]],[48,49,["H3899"]],[49,50,["H3162"]],[50,52,["H4709"]]]},{"k":19959,"v":[[0,2,["H6965"]],[2,3,["H3458"]],[3,5,["H1121"]],[5,7,["H5418"]],[7,10,["H6235"]],[10,11,["H376"]],[11,12,["H834"]],[12,13,["H1961"]],[13,14,["H854"]],[14,17,["H5221","(H853)"]],[17,18,["H1436"]],[18,20,["H1121"]],[20,22,["H296"]],[22,24,["H1121"]],[24,26,["H8227"]],[26,29,["H2719"]],[29,31,["H4191"]],[31,33,["H834"]],[33,35,["H4428"]],[35,37,["H894"]],[37,40,["H6485"]],[40,43,["H776"]]]},{"k":19960,"v":[[0,1,["H3458"]],[1,3,["H5221"]],[3,4,["H3605"]],[4,6,["H3064"]],[6,7,["H834"]],[7,8,["H1961"]],[8,9,["H854"]],[9,12,["H854"]],[12,13,["H1436"]],[13,15,["H4709"]],[15,18,["H3778"]],[18,19,["H834"]],[19,21,["H4672"]],[21,22,["H8033"]],[22,25,["H376"]],[25,27,["H4421"]]]},{"k":19961,"v":[[0,5,["H1961"]],[5,7,["H8145"]],[7,8,["H3117"]],[8,12,["H4191","(H853)"]],[12,13,["H1436"]],[13,15,["H3808"]],[15,16,["H376"]],[16,17,["H3045"]],[17,18,[]]]},{"k":19962,"v":[[0,3,["H935"]],[3,4,["H376"]],[4,6,["H4480","H7927"]],[6,8,["H4480","H7887"]],[8,11,["H4480","H8111"]],[11,13,["H8084"]],[13,14,["H376"]],[14,17,["H2206"]],[17,18,["H1548"]],[18,21,["H899"]],[21,22,["H7167"]],[22,26,["H1413"]],[26,28,["H4503"]],[28,30,["H3828"]],[30,33,["H3027"]],[33,35,["H935"]],[35,39,["H1004"]],[39,42,["H3068"]]]},{"k":19963,"v":[[0,2,["H3458"]],[2,4,["H1121"]],[4,6,["H5418"]],[6,8,["H3318"]],[8,9,["H4480"]],[9,10,["H4709"]],[10,12,["H7125"]],[12,14,["H1058"]],[14,19,["H1980","H1980"]],[19,24,["H1961"]],[24,27,["H6298"]],[27,30,["H559"]],[30,31,["H413"]],[31,33,["H935"]],[33,34,["H413"]],[34,35,["H1436"]],[35,37,["H1121"]],[37,39,["H296"]]]},{"k":19964,"v":[[0,3,["H1961"]],[3,7,["H935"]],[7,8,["H413"]],[8,10,["H8432"]],[10,13,["H5892"]],[13,15,["H3458"]],[15,17,["H1121"]],[17,19,["H5418"]],[19,20,["H7819"]],[20,25,["H413"]],[25,27,["H8432"]],[27,30,["H953"]],[30,31,["H1931"]],[31,34,["H376"]],[34,35,["H834"]],[35,37,["H854"]],[37,38,[]]]},{"k":19965,"v":[[0,2,["H6235"]],[2,3,["H376"]],[3,5,["H4672"]],[5,9,["H559"]],[9,10,["H413"]],[10,11,["H3458"]],[11,12,["H4191"]],[12,14,["H408"]],[14,15,["H3588"]],[15,17,["H3426"]],[17,18,["H4301"]],[18,21,["H7704"]],[21,23,["H2406"]],[23,26,["H8184"]],[26,29,["H8081"]],[29,32,["H1706"]],[32,35,["H2308"]],[35,37,["H4191"]],[37,39,["H3808"]],[39,40,["H8432"]],[40,42,["H251"]]]},{"k":19966,"v":[[0,3,["H953"]],[3,4,["H834","H8033"]],[4,5,["H3458"]],[5,7,["H7993","(H853)"]],[7,8,["H3605"]],[8,11,["H6297"]],[11,14,["H376"]],[14,15,["H834"]],[15,18,["H5221"]],[18,19,["H3027"]],[19,21,["H1436"]],[21,23,["H1931"]],[23,24,["H834"]],[24,25,["H609"]],[25,27,["H4428"]],[27,29,["H6213"]],[29,31,["H4480","H6440"]],[31,33,["H1201"]],[33,34,["H4428"]],[34,36,["H3478"]],[36,38,["H3458"]],[38,40,["H1121"]],[40,42,["H5418"]],[42,43,["H4390"]],[43,49,["H2491"]]]},{"k":19967,"v":[[0,2,["H3458"]],[2,5,["H7617","(H853)"]],[5,6,["H3605"]],[6,8,["H7611"]],[8,11,["H5971"]],[11,12,["H834"]],[12,15,["H4709"]],[15,16,["(H853)"]],[16,18,["H4428"]],[18,19,["H1323"]],[19,21,["H3605"]],[21,23,["H5971"]],[23,25,["H7604"]],[25,27,["H4709"]],[27,28,["H834"]],[28,29,["H5018"]],[29,31,["H7227"]],[31,34,["H2876"]],[34,36,["H6485"]],[36,37,["(H853)"]],[37,38,["H1436"]],[38,40,["H1121"]],[40,42,["H296"]],[42,44,["H3458"]],[44,46,["H1121"]],[46,48,["H5418"]],[48,52,["H7617"]],[52,54,["H1980"]],[54,57,["H5674"]],[57,58,["H413"]],[58,60,["H1121","H5983"]]]},{"k":19968,"v":[[0,3,["H3110"]],[3,5,["H1121"]],[5,7,["H7143"]],[7,9,["H3605"]],[9,11,["H8269"]],[11,14,["H2428"]],[14,15,["H834"]],[15,17,["H854"]],[17,19,["H8085"]],[19,20,["(H853)"]],[20,21,["H3605"]],[21,23,["H7451"]],[23,24,["H834"]],[24,25,["H3458"]],[25,27,["H1121"]],[27,29,["H5418"]],[29,31,["H6213"]]]},{"k":19969,"v":[[0,3,["H3947","(H853)"]],[3,4,["H3605"]],[4,6,["H376"]],[6,8,["H1980"]],[8,10,["H3898"]],[10,11,["H5973"]],[11,12,["H3458"]],[12,14,["H1121"]],[14,16,["H5418"]],[16,18,["H4672"]],[18,20,["H413"]],[20,22,["H7227"]],[22,23,["H4325"]],[23,24,["H834"]],[24,27,["H1391"]]]},{"k":19970,"v":[[0,5,["H1961"]],[5,8,["H3605"]],[8,10,["H5971"]],[10,11,["H834"]],[11,13,["H854"]],[13,14,["H3458"]],[14,15,["H7200","(H853)"]],[15,16,["H3110"]],[16,18,["H1121"]],[18,20,["H7143"]],[20,22,["H3605"]],[22,24,["H8269"]],[24,27,["H2428"]],[27,28,["H834"]],[28,30,["H854"]],[30,35,["H8055"]]]},{"k":19971,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,5,["H834"]],[5,6,["H3458"]],[6,10,["H7617"]],[10,11,["H4480"]],[11,12,["H4709"]],[12,14,["H5437"]],[14,16,["H7725"]],[16,18,["H1980"]],[18,19,["H413"]],[19,20,["H3110"]],[20,22,["H1121"]],[22,24,["H7143"]]]},{"k":19972,"v":[[0,2,["H3458"]],[2,4,["H1121"]],[4,6,["H5418"]],[6,7,["H4422"]],[7,8,["H4480","H6440"]],[8,9,["H3110"]],[9,11,["H8083"]],[11,12,["H376"]],[12,14,["H1980"]],[14,15,["H413"]],[15,17,["H1121","H5983"]]]},{"k":19973,"v":[[0,2,["H3947"]],[2,3,["H3110"]],[3,5,["H1121"]],[5,7,["H7143"]],[7,9,["H3605"]],[9,11,["H8269"]],[11,14,["H2428"]],[14,15,["H834"]],[15,17,["H854"]],[17,18,["(H853)"]],[18,19,["H3605"]],[19,21,["H7611"]],[21,24,["H5971"]],[24,25,["H834"]],[25,28,["H7725"]],[28,29,["H4480","H854"]],[29,30,["H3458"]],[30,32,["H1121"]],[32,34,["H5418"]],[34,35,["H4480"]],[35,36,["H4709"]],[36,37,["H310"]],[37,41,["H5221","(H853)"]],[41,42,["H1436"]],[42,44,["H1121"]],[44,46,["H296"]],[46,48,["H1397"]],[48,49,["H376"]],[49,51,["H4421"]],[51,54,["H802"]],[54,57,["H2945"]],[57,60,["H5631"]],[60,61,["H834"]],[61,65,["H7725"]],[65,67,["H4480","H1391"]]]},{"k":19974,"v":[[0,3,["H1980"]],[3,5,["H3427"]],[5,8,["H1628"]],[8,10,["H3643"]],[10,11,["H834"]],[11,13,["H681"]],[13,14,["H1035"]],[14,16,["H1980"]],[16,19,["H935"]],[19,20,["H4714"]]]},{"k":19975,"v":[[0,1,["H4480","H6440"]],[1,4,["H3778"]],[4,5,["H3588"]],[5,8,["H3372"]],[8,9,["H4480","H6440"]],[9,11,["H3588"]],[11,12,["H3458"]],[12,14,["H1121"]],[14,16,["H5418"]],[16,18,["H5221","(H853)"]],[18,19,["H1436"]],[19,21,["H1121"]],[21,23,["H296"]],[23,24,["H834"]],[24,26,["H4428"]],[26,28,["H894"]],[28,30,["H6485"]],[30,33,["H776"]]]},{"k":19976,"v":[[0,2,["H3605"]],[2,4,["H8269"]],[4,7,["H2428"]],[7,9,["H3110"]],[9,11,["H1121"]],[11,13,["H7143"]],[13,15,["H3153"]],[15,17,["H1121"]],[17,19,["H1955"]],[19,21,["H3605"]],[21,23,["H5971"]],[23,26,["H4480","H6996"]],[26,28,["H5704"]],[28,30,["H1419"]],[30,32,["H5066"]]]},{"k":19977,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,4,["H3414"]],[4,6,["H5030"]],[6,10,["H4994"]],[10,12,["H8467"]],[12,14,["H5307"]],[14,15,["H6440"]],[15,18,["H6419"]],[18,19,["H1157"]],[19,21,["H413"]],[21,23,["H3068"]],[23,25,["H430"]],[25,27,["H1157"]],[27,28,["H3605"]],[28,29,["H2063"]],[29,30,["H7611"]],[30,31,["H3588"]],[31,34,["H7604"]],[34,37,["H4592"]],[37,39,["H4480","H7235"]],[39,40,["H834"]],[40,42,["H5869"]],[42,44,["H7200"]],[44,45,[]]]},{"k":19978,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,7,["H5046"]],[7,8,["(H853)"]],[8,10,["H1870"]],[10,11,["H834"]],[11,14,["H1980"]],[14,17,["H1697"]],[17,18,["H834"]],[18,21,["H6213"]]]},{"k":19979,"v":[[0,2,["H3414"]],[2,4,["H5030"]],[4,5,["H559"]],[5,6,["H413"]],[6,10,["H8085"]],[10,12,["H2009"]],[12,15,["H6419"]],[15,16,["H413"]],[16,18,["H3068"]],[18,20,["H430"]],[20,24,["H1697"]],[24,30,["H1961"]],[30,32,["H3605","H834"]],[32,33,["H1697"]],[33,35,["H3068"]],[35,37,["H6030"]],[37,41,["H5046"]],[41,49,["H4513","H3808","H1697"]],[49,50,["H4480"]],[50,51,[]]]},{"k":19980,"v":[[0,2,["H1992"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3414"]],[5,7,["H3068"]],[7,8,["H1961"]],[8,10,["H571"]],[10,12,["H539"]],[12,13,["H5707"]],[13,16,["H518"]],[16,18,["H6213"]],[18,19,["H3808"]],[19,20,["H3651"]],[20,23,["H3605"]],[23,24,["H1697"]],[24,27,["H834"]],[27,29,["H3068"]],[29,31,["H430"]],[31,33,["H7971"]],[33,35,["H413"]],[35,36,[]]]},{"k":19981,"v":[[0,1,["H518"]],[1,4,["H2896"]],[4,6,["H518"]],[6,9,["H7451"]],[9,12,["H8085"]],[12,14,["H6963"]],[14,17,["H3068"]],[17,19,["H430"]],[19,21,["H834"]],[21,22,["H580"]],[22,23,["H7971"]],[23,25,["H4616","H834"]],[25,29,["H3190"]],[29,32,["H3588"]],[32,34,["H8085"]],[34,36,["H6963"]],[36,39,["H3068"]],[39,41,["H430"]]]},{"k":19982,"v":[[0,5,["H1961"]],[5,6,["H4480","H7093"]],[6,7,["H6235"]],[7,8,["H3117"]],[8,11,["H1697"]],[11,14,["H3068"]],[14,15,["H1961"]],[15,16,["H413"]],[16,17,["H3414"]]]},{"k":19983,"v":[[0,2,["H7121","H413"]],[2,4,["H3110"]],[4,6,["H1121"]],[6,8,["H7143"]],[8,10,["H3605"]],[10,12,["H8269"]],[12,15,["H2428"]],[15,16,["H834"]],[16,18,["H854"]],[18,21,["H3605"]],[21,23,["H5971"]],[23,26,["H4480","H6996"]],[26,28,["H5704"]],[28,30,["H1419"]]]},{"k":19984,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H3541"]],[5,6,["H559"]],[6,8,["H3068"]],[8,10,["H430"]],[10,12,["H3478"]],[12,13,["H413"]],[13,14,["H834"]],[14,16,["H7971"]],[16,19,["H5307"]],[19,21,["H8467"]],[21,22,["H6440"]],[22,23,[]]]},{"k":19985,"v":[[0,1,["H518"]],[1,5,["H7725","H3427"]],[5,7,["H2063"]],[7,8,["H776"]],[8,12,["H1129"]],[12,15,["H3808"]],[15,18,["H2040"]],[18,22,["H5193"]],[22,25,["H3808"]],[25,28,["H5428"]],[28,29,["H3588"]],[29,31,["H5162"]],[31,33,["H413"]],[33,35,["H7451"]],[35,36,["H834"]],[36,39,["H6213"]],[39,41,[]]]},{"k":19986,"v":[[0,2,["H408"]],[2,3,["H3372"]],[3,4,["H4480","H6440"]],[4,6,["H4428"]],[6,8,["H894"]],[8,10,["H834"]],[10,11,["H859"]],[11,13,["H3372","H4480","H6440"]],[13,15,["H408"]],[15,16,["H3372"]],[16,17,["H4480"]],[17,19,["H5002"]],[19,21,["H3068"]],[21,22,["H3588"]],[22,23,["H589"]],[23,25,["H854"]],[25,28,["H3467"]],[28,32,["H5337"]],[32,36,["H4480","H3027"]]]},{"k":19987,"v":[[0,4,["H5414"]],[4,5,["H7356"]],[5,13,["H7355"]],[13,19,["H7725","(H853)"]],[19,20,["H413"]],[20,23,["H127"]]]},{"k":19988,"v":[[0,2,["H518"]],[2,3,["H859"]],[3,4,["H559"]],[4,7,["H3808"]],[7,8,["H3427"]],[8,10,["H2063"]],[10,11,["H776"]],[11,12,["H1115"]],[12,13,["H8085"]],[13,15,["H6963"]],[15,18,["H3068"]],[18,20,["H430"]]]},{"k":19989,"v":[[0,1,["H559"]],[1,2,["H3808"]],[2,3,["H3588"]],[3,6,["H935"]],[6,9,["H776"]],[9,11,["H4714"]],[11,12,["H834"]],[12,15,["H7200"]],[15,16,["H3808"]],[16,17,["H4421"]],[17,18,["H3808"]],[18,19,["H8085"]],[19,21,["H6963"]],[21,24,["H7782"]],[24,25,["H3808"]],[25,27,["H7456"]],[27,29,["H3899"]],[29,31,["H8033"]],[31,34,["H3427"]]]},{"k":19990,"v":[[0,2,["H6258"]],[2,3,["H3651"]],[3,4,["H8085"]],[4,6,["H1697"]],[6,9,["H3068"]],[9,11,["H7611"]],[11,13,["H3063"]],[13,14,["H3541"]],[14,15,["H559"]],[15,17,["H3068"]],[17,19,["H6635"]],[19,21,["H430"]],[21,23,["H3478"]],[23,24,["H518"]],[24,25,["H859"]],[25,27,["H7760","H7760"]],[27,29,["H6440"]],[29,32,["H935"]],[32,33,["H4714"]],[33,35,["H935"]],[35,37,["H1481"]],[37,38,["H8033"]]]},{"k":19991,"v":[[0,6,["H1961"]],[6,9,["H2719"]],[9,10,["H834"]],[10,11,["H859"]],[11,12,["H3373","H4480"]],[12,14,["H5381"]],[14,16,["H8033"]],[16,19,["H776"]],[19,21,["H4714"]],[21,24,["H7458"]],[24,25,["H834"]],[25,26,["H859"]],[26,28,["H1672","H4480"]],[28,31,["H1692"]],[31,32,["H310"]],[32,34,["H8033"]],[34,36,["H4714"]],[36,38,["H8033"]],[38,41,["H4191"]]]},{"k":19992,"v":[[0,4,["H1961"]],[4,6,["H3605"]],[6,8,["H376"]],[8,9,["H834"]],[9,10,["H7760","(H853)"]],[10,12,["H6440"]],[12,15,["H935"]],[15,16,["H4714"]],[16,18,["H1481"]],[18,19,["H8033"]],[19,22,["H4191"]],[22,25,["H2719"]],[25,28,["H7458"]],[28,32,["H1698"]],[32,34,["H3808"]],[34,37,["H1961"]],[37,38,["H8300"]],[38,40,["H6412"]],[40,41,["H4480","H6440"]],[41,43,["H7451"]],[43,44,["H834"]],[44,45,["H589"]],[45,47,["H935"]],[47,48,["H5921"]],[48,49,[]]]},{"k":19993,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,12,["H834"]],[12,14,["H639"]],[14,17,["H2534"]],[17,21,["H5413"]],[21,22,["H5921"]],[22,24,["H3427"]],[24,26,["H3389"]],[26,27,["H3651"]],[27,30,["H2534"]],[30,33,["H5413"]],[33,34,["H5921"]],[34,38,["H1961"]],[38,40,["H935"]],[40,41,["H4714"]],[41,47,["H423"]],[47,50,["H8047"]],[50,53,["H7045"]],[53,56,["H2781"]],[56,60,["H7200","(H853)"]],[60,61,["H2088"]],[61,62,["H4725"]],[62,63,["H3808"]],[63,64,["H5750"]]]},{"k":19994,"v":[[0,2,["H3068"]],[2,4,["H1696"]],[4,5,["H5921"]],[5,9,["H7611"]],[9,11,["H3063"]],[11,12,["H935"]],[12,14,["H408"]],[14,16,["H4714"]],[16,18,["H3045","H3045"]],[18,19,["H3588"]],[19,22,["H5749"]],[22,25,["H3117"]]]},{"k":19995,"v":[[0,1,["H3588"]],[1,3,["H8582"]],[3,6,["H5315"]],[6,7,["H3588"]],[7,8,["H859"]],[8,9,["H7971"]],[9,11,["H413"]],[11,13,["H3068"]],[13,15,["H430"]],[15,16,["H559"]],[16,17,["H6419"]],[17,18,["H1157"]],[18,20,["H413"]],[20,22,["H3068"]],[22,24,["H430"]],[24,28,["H3605"]],[28,29,["H834"]],[29,31,["H3068"]],[31,33,["H430"]],[33,35,["H559"]],[35,36,["H3651"]],[36,37,["H5046"]],[37,43,["H6213"]],[43,44,[]]]},{"k":19996,"v":[[0,6,["H3117"]],[6,7,["H5046"]],[7,14,["H3808"]],[14,15,["H8085"]],[15,17,["H6963"]],[17,20,["H3068"]],[20,22,["H430"]],[22,24,["H3605"]],[24,28,["H834"]],[28,31,["H7971"]],[31,33,["H413"]],[33,34,[]]]},{"k":19997,"v":[[0,1,["H6258"]],[1,4,["H3045","H3045"]],[4,5,["H3588"]],[5,8,["H4191"]],[8,11,["H2719"]],[11,14,["H7458"]],[14,18,["H1698"]],[18,21,["H4725"]],[21,22,["H834","H8033"]],[22,24,["H2654"]],[24,26,["H935"]],[26,29,["H1481"]]]},{"k":19998,"v":[[0,5,["H1961"]],[5,8,["H3414"]],[8,12,["H3615"]],[12,14,["H1696"]],[14,15,["H413"]],[15,16,["H3605"]],[16,18,["H5971","(H853)"]],[18,19,["H3605"]],[19,21,["H1697"]],[21,24,["H3068"]],[24,26,["H430"]],[26,28,["H834"]],[28,30,["H3068"]],[30,32,["H430"]],[32,34,["H7971"]],[34,36,["H413"]],[36,38,["(H853)"]],[38,39,["H3605"]],[39,40,["H428"]],[40,41,["H1697"]]]},{"k":19999,"v":[[0,2,["H559"]],[2,3,["H5838"]],[3,5,["H1121"]],[5,7,["H1955"]],[7,9,["H3110"]],[9,11,["H1121"]],[11,13,["H7143"]],[13,15,["H3605"]],[15,17,["H2086"]],[17,18,["H376"]],[18,19,["H559"]],[19,20,["H413"]],[20,21,["H3414"]],[21,22,["H859"]],[22,23,["H1696"]],[23,24,["H8267"]],[24,26,["H3068"]],[26,28,["H430"]],[28,30,["H3808"]],[30,31,["H7971"]],[31,34,["H559"]],[34,35,["H935"]],[35,36,["H3808"]],[36,38,["H4714"]],[38,40,["H1481"]],[40,41,["H8033"]]]},{"k":20000,"v":[[0,1,["H3588"]],[1,2,["H1263"]],[2,4,["H1121"]],[4,6,["H5374"]],[6,9,["H5496","(H853)"]],[9,12,["H4616"]],[12,14,["H5414"]],[14,18,["H3027"]],[18,21,["H3778"]],[21,28,["H4191","(H853)"]],[28,33,["H1540","(H853)"]],[33,35,["H894"]]]},{"k":20001,"v":[[0,2,["H3110"]],[2,4,["H1121"]],[4,6,["H7143"]],[6,8,["H3605"]],[8,10,["H8269"]],[10,13,["H2428"]],[13,15,["H3605"]],[15,17,["H5971"]],[17,18,["H8085"]],[18,19,["H3808"]],[19,21,["H6963"]],[21,24,["H3068"]],[24,26,["H3427"]],[26,29,["H776"]],[29,31,["H3063"]]]},{"k":20002,"v":[[0,2,["H3110"]],[2,4,["H1121"]],[4,6,["H7143"]],[6,8,["H3605"]],[8,10,["H8269"]],[10,13,["H2428"]],[13,14,["H3947","(H853)"]],[14,15,["H3605"]],[15,17,["H7611"]],[17,19,["H3063"]],[19,20,["H834"]],[20,22,["H7725"]],[22,24,["H4480","H3605"]],[24,25,["H1471"]],[25,26,["H834","H8033"]],[26,30,["H5080"]],[30,32,["H1481"]],[32,35,["H776"]],[35,37,["H3063"]]]},{"k":20003,"v":[[0,1,["(H853)"]],[1,2,["H1397"]],[2,4,["H802"]],[4,6,["H2945"]],[6,9,["H4428"]],[9,10,["H1323"]],[10,12,["H3605"]],[12,13,["H5315"]],[13,14,["H834"]],[14,15,["H5018"]],[15,17,["H7227"]],[17,20,["H2876"]],[20,22,["H5117"]],[22,23,["H854"]],[23,24,["H1436"]],[24,26,["H1121"]],[26,28,["H296"]],[28,30,["H1121"]],[30,32,["H8227"]],[32,34,["H3414"]],[34,36,["H5030"]],[36,38,["H1263"]],[38,40,["H1121"]],[40,42,["H5374"]]]},{"k":20004,"v":[[0,4,["H935"]],[4,6,["H776"]],[6,8,["H4714"]],[8,9,["H3588"]],[9,11,["H8085"]],[11,12,["H3808"]],[12,14,["H6963"]],[14,17,["H3068"]],[17,19,["H935"]],[19,22,["H5704"]],[22,23,["H8471"]]]},{"k":20005,"v":[[0,2,["H1961"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H413"]],[8,9,["H3414"]],[9,11,["H8471"]],[11,12,["H559"]]]},{"k":20006,"v":[[0,1,["H3947"]],[1,2,["H1419"]],[2,3,["H68"]],[3,6,["H3027"]],[6,8,["H2934"]],[8,12,["H4423"]],[12,15,["H4404"]],[15,16,["H834"]],[16,20,["H6607"]],[20,22,["H6547"]],[22,23,["H1004"]],[23,25,["H8471"]],[25,28,["H5869"]],[28,31,["H376"]],[31,33,["H3064"]]]},{"k":20007,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H3541"]],[5,6,["H559"]],[6,8,["H3068"]],[8,10,["H6635"]],[10,12,["H430"]],[12,14,["H3478"]],[14,15,["H2009"]],[15,18,["H7971"]],[18,20,["H3947","(H853)"]],[20,21,["H5019"]],[21,23,["H4428"]],[23,25,["H894"]],[25,27,["H5650"]],[27,30,["H7760"]],[30,32,["H3678"]],[32,33,["H4480","H4605"]],[33,34,["H428"]],[34,35,["H68"]],[35,36,["H834"]],[36,39,["H2934"]],[39,43,["H5186","(H853)"]],[43,46,["H8237"]],[46,47,["H5921"]],[47,48,[]]]},{"k":20008,"v":[[0,4,["H935"]],[4,7,["H5221","(H853)"]],[7,9,["H776"]],[9,11,["H4714"]],[11,14,["H834"]],[14,18,["H4194"]],[18,20,["H4194"]],[20,22,["H834"]],[22,26,["H7628"]],[26,28,["H7628"]],[28,30,["H834"]],[30,35,["H2719"]],[35,38,["H2719"]]]},{"k":20009,"v":[[0,4,["H3341"]],[4,6,["H784"]],[6,9,["H1004"]],[9,12,["H430"]],[12,14,["H4714"]],[14,18,["H8313"]],[18,24,["H7617"]],[24,29,["H5844"]],[29,30,["H854"]],[30,32,["H776"]],[32,34,["H4714"]],[34,35,["H834"]],[35,37,["H7462"]],[37,39,["H5844","(H853)"]],[39,41,["H899"]],[41,46,["H3318"]],[46,48,["H4480","H8033"]],[48,50,["H7965"]]]},{"k":20010,"v":[[0,3,["H7665"]],[3,4,["(H853)"]],[4,6,["H4676"]],[6,8,["H1053"]],[8,9,["H834"]],[9,13,["H776"]],[13,15,["H4714"]],[15,18,["H1004"]],[18,21,["H430"]],[21,24,["H4714"]],[24,27,["H8313"]],[27,29,["H784"]]]},{"k":20011,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H1961"]],[4,5,["H413"]],[5,6,["H3414"]],[6,7,["H413"]],[7,8,["H3605"]],[8,10,["H3064"]],[10,12,["H3427"]],[12,15,["H776"]],[15,17,["H4714"]],[17,19,["H3427"]],[19,21,["H4024"]],[21,24,["H8471"]],[24,27,["H5297"]],[27,31,["H776"]],[31,33,["H6624"]],[33,34,["H559"]]]},{"k":20012,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,11,["H859"]],[11,13,["H7200","(H853)"]],[13,14,["H3605"]],[14,16,["H7451"]],[16,17,["H834"]],[17,20,["H935"]],[20,21,["H5921"]],[21,22,["H3389"]],[22,24,["H5921"]],[24,25,["H3605"]],[25,27,["H5892"]],[27,29,["H3063"]],[29,31,["H2009"]],[31,32,["H2088"]],[32,33,["H3117"]],[33,37,["H2723"]],[37,39,["H369"]],[39,41,["H3427"]],[41,42,[]]]},{"k":20013,"v":[[0,1,["H4480","H6440"]],[1,4,["H7451"]],[4,5,["H834"]],[5,8,["H6213"]],[8,13,["H3707"]],[13,17,["H1980"]],[17,20,["H6999"]],[20,23,["H5647"]],[23,24,["H312"]],[24,25,["H430"]],[25,26,["H834"]],[26,28,["H3045"]],[28,29,["H3808"]],[29,31,["H1992"]],[31,32,["H859"]],[32,35,["H1"]]]},{"k":20014,"v":[[0,3,["H7971"]],[3,4,["H413"]],[4,5,["(H853)"]],[5,6,["H3605"]],[6,8,["H5650"]],[8,10,["H5030"]],[10,12,["H7925"]],[12,14,["H7971"]],[14,16,["H559"]],[16,17,["H4994"]],[17,18,["H6213"]],[18,19,["H408","(H853)"]],[19,20,["H2063"]],[20,21,["H8441"]],[21,22,["H1697"]],[22,23,["H834"]],[23,25,["H8130"]]]},{"k":20015,"v":[[0,3,["H8085"]],[3,4,["H3808"]],[4,5,["H3808"]],[5,6,["H5186","(H853)"]],[6,8,["H241"]],[8,10,["H7725"]],[10,13,["H4480","H7451"]],[13,15,["H6999"]],[15,16,["H1115"]],[16,19,["H312"]],[19,20,["H430"]]]},{"k":20016,"v":[[0,3,["H2534"]],[3,6,["H639"]],[6,9,["H5413"]],[9,12,["H1197"]],[12,15,["H5892"]],[15,17,["H3063"]],[17,21,["H2351"]],[21,23,["H3389"]],[23,26,["H1961"]],[26,27,["H2723"]],[27,29,["H8077"]],[29,32,["H2088"]],[32,33,["H3117"]]]},{"k":20017,"v":[[0,2,["H6258"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H3068"]],[6,8,["H430"]],[8,10,["H6635"]],[10,12,["H430"]],[12,14,["H3478"]],[14,15,["H4100"]],[15,16,["H6213"]],[16,17,["H859"]],[17,19,["H1419"]],[19,20,["H7451"]],[20,21,["H413"]],[21,23,["H5315"]],[23,26,["H3772"]],[26,29,["H376"]],[29,31,["H802"]],[31,32,["H5768"]],[32,34,["H3243"]],[34,36,["H4480","H8432"]],[36,37,["H3063"]],[37,39,["H3498"]],[39,41,["H1115"]],[41,43,["H7611"]]]},{"k":20018,"v":[[0,7,["H3707"]],[7,10,["H4639"]],[10,13,["H3027"]],[13,15,["H6999"]],[15,17,["H312"]],[17,18,["H430"]],[18,21,["H776"]],[21,23,["H4714"]],[23,24,["H834","H8033"]],[24,25,["H859"]],[25,27,["H935"]],[27,29,["H1481"]],[29,30,["H4616"]],[30,35,["H3772"]],[35,37,["H4616"]],[37,40,["H1961"]],[40,42,["H7045"]],[42,45,["H2781"]],[45,47,["H3605"]],[47,49,["H1471"]],[49,52,["H776"]]]},{"k":20019,"v":[[0,3,["H7911","(H853)"]],[3,5,["H7451"]],[5,8,["H1"]],[8,11,["H7451"]],[11,14,["H4428"]],[14,16,["H3063"]],[16,19,["H7451"]],[19,22,["H802"]],[22,26,["H7451"]],[26,29,["H7451"]],[29,32,["H802"]],[32,33,["H834"]],[33,36,["H6213"]],[36,39,["H776"]],[39,41,["H3063"]],[41,45,["H2351"]],[45,47,["H3389"]]]},{"k":20020,"v":[[0,3,["H3808"]],[3,4,["H1792"]],[4,6,["H5704"]],[6,7,["H2088"]],[7,8,["H3117"]],[8,9,["H3808"]],[9,12,["H3372"]],[12,13,["H3808"]],[13,14,["H1980"]],[14,17,["H8451"]],[17,21,["H2708"]],[21,22,["H834"]],[22,24,["H5414"]],[24,25,["H6440"]],[25,28,["H6440"]],[28,30,["H1"]]]},{"k":20021,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,12,["H2009"]],[12,15,["H7760"]],[15,17,["H6440"]],[17,21,["H7451"]],[21,25,["H3772","(H853)"]],[25,26,["H3605"]],[26,27,["H3063"]]]},{"k":20022,"v":[[0,4,["H3947","(H853)"]],[4,6,["H7611"]],[6,8,["H3063"]],[8,9,["H834"]],[9,11,["H7760"]],[11,13,["H6440"]],[13,16,["H935"]],[16,18,["H776"]],[18,20,["H4714"]],[20,22,["H1481"]],[22,23,["H8033"]],[23,27,["H3605"]],[27,29,["H8552"]],[29,31,["H5307"]],[31,34,["H776"]],[34,36,["H4714"]],[36,41,["H8552"]],[41,44,["H2719"]],[44,48,["H7458"]],[48,51,["H4191"]],[51,54,["H4480","H6996"]],[54,56,["H5704"]],[56,58,["H1419"]],[58,61,["H2719"]],[61,65,["H7458"]],[65,69,["H1961"]],[69,71,["H423"]],[71,74,["H8047"]],[74,77,["H7045"]],[77,80,["H2781"]]]},{"k":20023,"v":[[0,4,["H6485","H5921"]],[4,7,["H3427"]],[7,10,["H776"]],[10,12,["H4714"]],[12,13,["H834"]],[13,16,["H6485","H5921"]],[16,17,["H3389"]],[17,20,["H2719"]],[20,23,["H7458"]],[23,27,["H1698"]]]},{"k":20024,"v":[[0,3,["H3808"]],[3,6,["H7611"]],[6,8,["H3063"]],[8,11,["H935"]],[11,14,["H776"]],[14,16,["H4714"]],[16,18,["H1481"]],[18,19,["H8033"]],[19,20,["H1961"]],[20,21,["H6412"]],[21,23,["H8300"]],[23,27,["H7725"]],[27,30,["H776"]],[30,32,["H3063"]],[32,35,["H834"]],[35,36,["H1992"]],[36,39,["H5375","(H853)","H5315"]],[39,41,["H7725"]],[41,43,["H3427"]],[43,44,["H8033"]],[44,45,["H3588"]],[45,46,["H3808"]],[46,48,["H7725"]],[48,49,["H3588","H518"]],[49,53,["H6412"]]]},{"k":20025,"v":[[0,2,["H3605"]],[2,4,["H376"]],[4,6,["H3045"]],[6,7,["H3588"]],[7,9,["H802"]],[9,12,["H6999"]],[12,14,["H312"]],[14,15,["H430"]],[15,17,["H3605"]],[17,19,["H802"]],[19,22,["H5975"]],[22,24,["H1419"]],[24,25,["H6951"]],[25,27,["H3605"]],[27,29,["H5971"]],[29,31,["H3427"]],[31,34,["H776"]],[34,36,["H4714"]],[36,38,["H6624"]],[38,39,["H6030","(H853)"]],[39,40,["H3414"]],[40,41,["H559"]]]},{"k":20026,"v":[[0,4,["H1697"]],[4,5,["H834"]],[5,8,["H1696"]],[8,9,["H413"]],[9,13,["H8034"]],[13,16,["H3068"]],[16,19,["H369"]],[19,20,["H8085"]],[20,21,["H413"]],[21,22,[]]]},{"k":20027,"v":[[0,1,["H3588"]],[1,5,["H6213","H6213","(H853)"]],[5,6,["H3605","H834"]],[6,7,["H1697"]],[7,9,["H3318"]],[9,14,["H4480","H6310"]],[14,17,["H6999"]],[17,20,["H4446"]],[20,22,["H8064"]],[22,26,["H5258"]],[26,28,["H5262"]],[28,31,["H834"]],[31,34,["H6213"]],[34,35,["H587"]],[35,38,["H1"]],[38,40,["H4428"]],[40,43,["H8269"]],[43,46,["H5892"]],[46,48,["H3063"]],[48,52,["H2351"]],[52,54,["H3389"]],[54,59,["H7646"]],[59,61,["H3899"]],[61,63,["H1961"]],[63,64,["H2896"]],[64,66,["H7200"]],[66,67,["H3808"]],[67,68,["H7451"]]]},{"k":20028,"v":[[0,2,["H4480","H227"]],[2,5,["H2308"]],[5,8,["H6999"]],[8,11,["H4446"]],[11,13,["H8064"]],[13,17,["H5258"]],[17,19,["H5262"]],[19,24,["H2637"]],[24,25,["H3605"]],[25,30,["H8552"]],[30,33,["H2719"]],[33,37,["H7458"]]]},{"k":20029,"v":[[0,2,["H3588"]],[2,3,["H587"]],[3,5,["H6999"]],[5,8,["H4446"]],[8,10,["H8064"]],[10,13,["H5258"]],[13,15,["H5262"]],[15,20,["H6213"]],[20,22,["H3561"]],[22,24,["H6087"]],[24,28,["H5258"]],[28,30,["H5262"]],[30,33,["H4480","H1107"]],[33,35,["H376"]]]},{"k":20030,"v":[[0,2,["H3414"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3605"]],[5,7,["H5971"]],[7,8,["H5921"]],[8,10,["H1397"]],[10,12,["H5921"]],[12,14,["H802"]],[14,16,["H5921"]],[16,17,["H3605"]],[17,19,["H5971"]],[19,25,["H6030","(H853)","H1697"]],[25,26,["H559"]]]},{"k":20031,"v":[[0,0,["(H853)"]],[0,2,["H7002"]],[2,3,["H834"]],[3,5,["H6999"]],[5,8,["H5892"]],[8,10,["H3063"]],[10,14,["H2351"]],[14,16,["H3389"]],[16,17,["H859"]],[17,20,["H1"]],[20,22,["H4428"]],[22,25,["H8269"]],[25,28,["H5971"]],[28,31,["H776"]],[31,33,["H3808"]],[33,35,["H3068"]],[35,36,["H2142"]],[36,39,["H5927"]],[39,42,["H5921"]],[42,44,["H3820"]]]},{"k":20032,"v":[[0,4,["H3068"]],[4,5,["H3201"]],[5,6,["H3808"]],[6,7,["H5750"]],[7,8,["H5375"]],[8,9,["H4480","H6440"]],[9,12,["H7455"]],[12,15,["H4611"]],[15,17,["H4480","H6440"]],[17,20,["H8441"]],[20,21,["H834"]],[21,24,["H6213"]],[24,26,["H1961"]],[26,28,["H776"]],[28,30,["H2723"]],[30,33,["H8047"]],[33,36,["H7045"]],[36,37,["H4480","H369"]],[37,39,["H3427"]],[39,42,["H2088"]],[42,43,["H3117"]]]},{"k":20033,"v":[[0,1,["H4480","H6440","H834"]],[1,5,["H6999"]],[5,7,["H834"]],[7,10,["H2398"]],[10,13,["H3068"]],[13,16,["H3808"]],[16,17,["H8085"]],[17,19,["H6963"]],[19,22,["H3068"]],[22,23,["H3808"]],[23,24,["H1980"]],[24,27,["H8451"]],[27,31,["H2708"]],[31,35,["H5715"]],[35,36,["H5921","H3651"]],[36,37,["H2063"]],[37,38,["H7451"]],[38,41,["H7122"]],[41,45,["H2088"]],[45,46,["H3117"]]]},{"k":20034,"v":[[0,2,["H3414"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3605"]],[5,7,["H5971"]],[7,9,["H413"]],[9,10,["H3605"]],[10,12,["H802"]],[12,13,["H8085"]],[13,15,["H1697"]],[15,18,["H3068"]],[18,19,["H3605"]],[19,20,["H3063"]],[20,21,["H834"]],[21,25,["H776"]],[25,27,["H4714"]]]},{"k":20035,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H430"]],[8,10,["H3478"]],[10,11,["H559"]],[11,12,["H859"]],[12,15,["H802"]],[15,18,["H1696"]],[18,21,["H6310"]],[21,23,["H4390"]],[23,26,["H3027"]],[26,27,["H559"]],[27,31,["H6213","H6213","(H853)"]],[31,33,["H5088"]],[33,34,["H834"]],[34,37,["H5087"]],[37,40,["H6999"]],[40,43,["H4446"]],[43,45,["H8064"]],[45,49,["H5258"]],[49,51,["H5262"]],[51,57,["H6965","H6965","(H853)"]],[57,59,["H5088"]],[59,62,["H6213","H6213","(H853)"]],[62,64,["H5088"]]]},{"k":20036,"v":[[0,1,["H3651"]],[1,2,["H8085"]],[2,5,["H1697"]],[5,8,["H3068"]],[8,9,["H3605"]],[9,10,["H3063"]],[10,12,["H3427"]],[12,15,["H776"]],[15,17,["H4714"]],[17,18,["H2009"]],[18,21,["H7650"]],[21,24,["H1419"]],[24,25,["H8034"]],[25,26,["H559"]],[26,28,["H3068"]],[28,31,["H8034"]],[31,33,["H518"]],[33,34,["H5750"]],[34,35,["H1961"]],[35,36,["H7121"]],[36,39,["H6310"]],[39,41,["H3605"]],[41,42,["H376"]],[42,44,["H3063"]],[44,46,["H3605"]],[46,48,["H776"]],[48,50,["H4714"]],[50,51,["H559"]],[51,53,["H136"]],[53,54,["H3069"]],[54,55,["H2416"]]]},{"k":20037,"v":[[0,1,["H2009"]],[1,4,["H8245"]],[4,5,["H5921"]],[5,8,["H7451"]],[8,10,["H3808"]],[10,12,["H2896"]],[12,14,["H3605"]],[14,16,["H376"]],[16,18,["H3063"]],[18,19,["H834"]],[19,23,["H776"]],[23,25,["H4714"]],[25,28,["H8552"]],[28,31,["H2719"]],[31,35,["H7458"]],[35,36,["H5704"]],[36,40,["H3615"]],[40,42,[]]]},{"k":20038,"v":[[0,3,["H4962"]],[3,4,["H4557"]],[4,6,["H6412"]],[6,8,["H2719"]],[8,10,["H7725"]],[10,12,["H4480"]],[12,14,["H776"]],[14,16,["H4714"]],[16,19,["H776"]],[19,21,["H3063"]],[21,23,["H3605"]],[23,25,["H7611"]],[25,27,["H3063"]],[27,30,["H935"]],[30,33,["H776"]],[33,35,["H4714"]],[35,37,["H1481"]],[37,38,["H8033"]],[38,40,["H3045"]],[40,41,["H4310"]],[41,42,["H1697"]],[42,44,["H6965"]],[44,45,["H4480"]],[45,47,["H4480"]]]},{"k":20039,"v":[[0,2,["H2063"]],[2,6,["H226"]],[6,9,["H5002"]],[9,11,["H3068"]],[11,12,["H3588"]],[12,13,["H589"]],[13,15,["H6485","H5921"]],[15,18,["H2088"]],[18,19,["H4725"]],[19,20,["H4616"]],[20,23,["H3045"]],[23,24,["H3588"]],[24,26,["H1697"]],[26,29,["H6965","H6965"]],[29,30,["H5921"]],[30,33,["H7451"]]]},{"k":20040,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H2009"]],[5,8,["H5414","(H853)"]],[8,9,["H6548"]],[9,10,["H4428"]],[10,12,["H4714"]],[12,15,["H3027"]],[15,18,["H341"]],[18,22,["H3027"]],[22,26,["H1245"]],[26,28,["H5315"]],[28,29,["H834"]],[29,31,["H5414","(H853)"]],[31,32,["H6667"]],[32,33,["H4428"]],[33,35,["H3063"]],[35,38,["H3027"]],[38,40,["H5019"]],[40,41,["H4428"]],[41,43,["H894"]],[43,45,["H341"]],[45,48,["H1245"]],[48,50,["H5315"]]]},{"k":20041,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H3414"]],[4,6,["H5030"]],[6,7,["H1696"]],[7,8,["H413"]],[8,9,["H1263"]],[9,11,["H1121"]],[11,13,["H5374"]],[13,17,["H3789","(H853)"]],[17,18,["H428"]],[18,19,["H1697"]],[19,20,["H5921"]],[20,22,["H5612"]],[22,25,["H4480","H6310"]],[25,27,["H3414"]],[27,30,["H7243"]],[30,31,["H8141"]],[31,33,["H3079"]],[33,35,["H1121"]],[35,37,["H2977"]],[37,38,["H4428"]],[38,40,["H3063"]],[40,41,["H559"]]]},{"k":20042,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H430"]],[6,8,["H3478"]],[8,9,["H5921"]],[9,12,["H1263"]]]},{"k":20043,"v":[[0,3,["H559"]],[3,4,["H188"]],[4,7,["H4994"]],[7,8,["H3588"]],[8,10,["H3068"]],[10,12,["H3254"]],[12,13,["H3015"]],[13,14,["H5921"]],[14,16,["H4341"]],[16,18,["H3021"]],[18,21,["H585"]],[21,24,["H4672"]],[24,25,["H3808"]],[25,26,["H4496"]]]},{"k":20044,"v":[[0,1,["H3541"]],[1,4,["H559"]],[4,5,["H413"]],[5,8,["H3068"]],[8,9,["H559"]],[9,10,["H3541"]],[10,11,["H2009"]],[11,13,["H834"]],[13,16,["H1129"]],[16,18,["H589"]],[18,20,["H2040"]],[20,23,["H834"]],[23,26,["H5193"]],[26,27,["H589"]],[27,30,["H5428"]],[30,32,["H1931"]],[32,33,["H3605"]],[33,34,["H776"]]]},{"k":20045,"v":[[0,2,["H1245"]],[2,3,["H859"]],[3,5,["H1419"]],[5,8,["H1245"]],[8,10,["H408"]],[10,11,["H3588"]],[11,12,["H2009"]],[12,15,["H935"]],[15,16,["H7451"]],[16,17,["H5921"]],[17,18,["H3605"]],[18,19,["H1320"]],[19,20,["H5002"]],[20,22,["H3068"]],[22,23,["(H853)"]],[23,25,["H5315"]],[25,28,["H5414"]],[28,33,["H7998"]],[33,34,["H5921"]],[34,35,["H3605"]],[35,36,["H4725"]],[36,37,["H834","H8033"]],[37,39,["H1980"]]]},{"k":20046,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H834"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,11,["H5030"]],[11,12,["H5921"]],[12,14,["H1471"]]]},{"k":20047,"v":[[0,2,["H4714"]],[2,3,["H5921"]],[3,5,["H2428"]],[5,7,["H6549"]],[7,8,["H4428"]],[8,10,["H4714"]],[10,11,["H834"]],[11,12,["H1961"]],[12,13,["H5921"]],[13,15,["H5104"]],[15,16,["H6578"]],[16,18,["H3751"]],[18,19,["H834"]],[19,20,["H5019"]],[20,21,["H4428"]],[21,23,["H894"]],[23,24,["H5221"]],[24,27,["H7243"]],[27,28,["H8141"]],[28,30,["H3079"]],[30,32,["H1121"]],[32,34,["H2977"]],[34,35,["H4428"]],[35,37,["H3063"]]]},{"k":20048,"v":[[0,1,["H6186"]],[1,4,["H4043"]],[4,6,["H6793"]],[6,9,["H5066"]],[9,11,["H4421"]]]},{"k":20049,"v":[[0,1,["H631"]],[1,3,["H5483"]],[3,6,["H5927"]],[6,8,["H6571"]],[8,11,["H3320"]],[11,14,["H3553"]],[14,15,["H4838"]],[15,17,["H7420"]],[17,20,["H3847"]],[20,22,["H5630"]]]},{"k":20050,"v":[[0,1,["H4069"]],[1,4,["H7200"]],[4,5,["H1992"]],[5,6,["H2844"]],[6,9,["H5472"]],[9,10,["H268"]],[10,14,["H1368"]],[14,17,["H3807"]],[17,21,["H4498","H5127"]],[21,25,["H6437","H3808"]],[25,27,["H4032"]],[27,30,["H4480","H5439"]],[30,31,["H5002"]],[31,33,["H3068"]]]},{"k":20051,"v":[[0,2,["H408"]],[2,4,["H7031"]],[4,6,["H5127"]],[6,7,["H408"]],[7,10,["H1368"]],[10,11,["H4422"]],[11,14,["H3782"]],[14,16,["H5307"]],[16,19,["H6828"]],[19,20,["H5921","H3027"]],[20,22,["H5104"]],[22,23,["H6578"]]]},{"k":20052,"v":[[0,1,["H4310"]],[1,3,["H2088"]],[3,6,["H5927"]],[6,9,["H2975"]],[9,11,["H4325"]],[11,13,["H1607"]],[13,16,["H5104"]]]},{"k":20053,"v":[[0,1,["H4714"]],[1,3,["H5927"]],[3,6,["H2975"]],[6,9,["H4325"]],[9,11,["H1607"]],[11,14,["H5104"]],[14,17,["H559"]],[17,21,["H5927"]],[21,24,["H3680"]],[24,26,["H776"]],[26,29,["H6"]],[29,31,["H5892"]],[31,34,["H3427"]],[34,35,[]]]},{"k":20054,"v":[[0,2,["H5927"]],[2,4,["H5483"]],[4,6,["H1984"]],[6,8,["H7393"]],[8,13,["H1368"]],[13,15,["H3318"]],[15,17,["H3568"]],[17,20,["H6316"]],[20,22,["H8610"]],[22,24,["H4043"]],[24,27,["H3866"]],[27,29,["H8610"]],[29,31,["H1869"]],[31,33,["H7198"]]]},{"k":20055,"v":[[0,2,["H1931"]],[2,5,["H3117"]],[5,8,["H136"]],[8,9,["H3069"]],[9,11,["H6635"]],[11,13,["H3117"]],[13,15,["H5360"]],[15,19,["H5358"]],[19,23,["H4480","H6862"]],[23,26,["H2719"]],[26,28,["H398"]],[28,33,["H7646"]],[33,36,["H7301"]],[36,39,["H4480","H1818"]],[39,40,["H3588"]],[40,42,["H136"]],[42,43,["H3069"]],[43,45,["H6635"]],[45,48,["H2077"]],[48,51,["H6828"]],[51,52,["H776"]],[52,53,["H413"]],[53,55,["H5104"]],[55,56,["H6578"]]]},{"k":20056,"v":[[0,2,["H5927"]],[2,4,["H1568"]],[4,6,["H3947"]],[6,7,["H6875"]],[7,9,["H1330"]],[9,11,["H1323"]],[11,13,["H4714"]],[13,15,["H7723"]],[15,19,["H7235"]],[19,20,["H7499"]],[20,24,["H369"]],[24,26,["H8585"]]]},{"k":20057,"v":[[0,2,["H1471"]],[2,4,["H8085"]],[4,7,["H7036"]],[7,10,["H6682"]],[10,12,["H4390"]],[12,14,["H776"]],[14,15,["H3588"]],[15,18,["H1368"]],[18,20,["H3782"]],[20,23,["H1368"]],[23,27,["H5307"]],[27,28,["H8147"]],[28,29,["H3162"]]]},{"k":20058,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,5,["H3068"]],[5,6,["H1696"]],[6,7,["H413"]],[7,8,["H3414"]],[8,10,["H5030"]],[10,12,["H5019"]],[12,13,["H4428"]],[13,15,["H894"]],[15,17,["H935"]],[17,19,["H5221","(H853)"]],[19,21,["H776"]],[21,23,["H4714"]]]},{"k":20059,"v":[[0,1,["H5046"]],[1,4,["H4714"]],[4,6,["H8085"]],[6,8,["H4024"]],[8,10,["H8085"]],[10,12,["H5297"]],[12,15,["H8471"]],[15,16,["H559"]],[16,19,["H3320"]],[19,21,["H3559"]],[21,23,["H3588"]],[23,25,["H2719"]],[25,27,["H398"]],[27,29,["H5439"]],[29,30,[]]]},{"k":20060,"v":[[0,1,["H4069"]],[1,4,["H47"]],[4,7,["H5502"]],[7,9,["H5975"]],[9,10,["H3808"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,15,["H1920"]],[15,16,[]]]},{"k":20061,"v":[[0,3,["H7235"]],[3,5,["H3782"]],[5,6,["H1571"]],[6,7,["H376"]],[7,8,["H5307"]],[8,9,["H413"]],[9,10,["H7453"]],[10,13,["H559"]],[13,14,["H6965"]],[14,19,["H7725"]],[19,20,["H413"]],[20,23,["H5971"]],[23,25,["H413"]],[25,27,["H776"]],[27,30,["H4138"]],[30,31,["H4480","H6440"]],[31,33,["H3238"]],[33,34,["H2719"]]]},{"k":20062,"v":[[0,3,["H7121"]],[3,4,["H8033"]],[4,5,["H6547"]],[5,6,["H4428"]],[6,8,["H4714"]],[8,12,["H7588"]],[12,15,["H5674"]],[15,18,["H4150"]]]},{"k":20063,"v":[[0,2,["H589"]],[2,3,["H2416"]],[3,4,["H5002"]],[4,6,["H4428"]],[6,8,["H8034"]],[8,11,["H3068"]],[11,13,["H6635"]],[13,14,["H3588"]],[14,16,["H8396"]],[16,20,["H2022"]],[20,23,["H3760"]],[23,26,["H3220"]],[26,30,["H935"]]]},{"k":20064,"v":[[0,3,["H1323"]],[3,4,["H3427"]],[4,6,["H4714"]],[6,7,["H3627","H6213"]],[7,12,["H1473"]],[12,13,["H3588"]],[13,14,["H5297"]],[14,16,["H1961"]],[16,17,["H8047"]],[17,19,["H3341"]],[19,20,["H4480","H369"]],[20,22,["H3427"]]]},{"k":20065,"v":[[0,1,["H4714"]],[1,6,["H3304"]],[6,7,["H5697"]],[7,9,["H7171"]],[9,10,["H935"]],[10,12,["H935"]],[12,16,["H4480","H6828"]]]},{"k":20066,"v":[[0,1,["H1571"]],[1,4,["H7916"]],[4,8,["H7130"]],[8,12,["H4770"]],[12,13,["H5695"]],[13,14,["H3588"]],[14,15,["H1992"]],[15,16,["H1571"]],[16,19,["H6437"]],[19,23,["H5127"]],[23,24,["H3162"]],[24,27,["H3808"]],[27,28,["H5975"]],[28,29,["H3588"]],[29,31,["H3117"]],[31,34,["H343"]],[34,36,["H935"]],[36,37,["H5921"]],[37,41,["H6256"]],[41,44,["H6486"]]]},{"k":20067,"v":[[0,2,["H6963"]],[2,5,["H1980"]],[5,8,["H5175"]],[8,9,["H3588"]],[9,12,["H1980"]],[12,15,["H2428"]],[15,17,["H935"]],[17,21,["H7134"]],[21,23,["H2404"]],[23,25,["H6086"]]]},{"k":20068,"v":[[0,4,["H3772"]],[4,6,["H3293"]],[6,7,["H5002"]],[7,9,["H3068"]],[9,10,["H3588"]],[10,12,["H3808"]],[12,14,["H2713"]],[14,15,["H3588"]],[15,18,["H7231"]],[18,21,["H4480","H697"]],[21,24,["H369","H4557"]]]},{"k":20069,"v":[[0,2,["H1323"]],[2,4,["H4714"]],[4,7,["H3001"]],[7,11,["H5414"]],[11,14,["H3027"]],[14,17,["H5971"]],[17,20,["H6828"]]]},{"k":20070,"v":[[0,2,["H3068"]],[2,4,["H6635"]],[4,6,["H430"]],[6,8,["H3478"]],[8,9,["H559"]],[9,10,["H2009"]],[10,13,["H6485","H413"]],[13,15,["H528"]],[15,17,["H4480","H4996"]],[17,19,["H6547"]],[19,21,["H4714"]],[21,22,["H5921"]],[22,24,["H430"]],[24,27,["H4428"]],[27,29,["H6547"]],[29,34,["H982"]],[34,36,[]]]},{"k":20071,"v":[[0,4,["H5414"]],[4,8,["H3027"]],[8,12,["H1245"]],[12,14,["H5315"]],[14,18,["H3027"]],[18,20,["H5019"]],[20,21,["H4428"]],[21,23,["H894"]],[23,27,["H3027"]],[27,30,["H5650"]],[30,32,["H310","H3651"]],[32,36,["H7931"]],[36,40,["H3117"]],[40,42,["H6924"]],[42,43,["H5002"]],[43,45,["H3068"]]]},{"k":20072,"v":[[0,2,["H3372"]],[2,3,["H408"]],[3,4,["H859"]],[4,7,["H5650"]],[7,8,["H3290"]],[8,11,["H408"]],[11,12,["H2865"]],[12,14,["H3478"]],[14,15,["H3588"]],[15,16,["H2009"]],[16,19,["H3467"]],[19,23,["H4480","H7350"]],[23,26,["H2233"]],[26,29,["H4480","H776"]],[29,32,["H7628"]],[32,34,["H3290"]],[34,36,["H7725"]],[36,40,["H8252"]],[40,43,["H7599"]],[43,45,["H369"]],[45,49,["H2729"]]]},{"k":20073,"v":[[0,1,["H3372"]],[1,2,["H859"]],[2,3,["H408"]],[3,5,["H3290"]],[5,7,["H5650"]],[7,8,["H5002"]],[8,10,["H3068"]],[10,11,["H3588"]],[11,12,["H589"]],[12,14,["H854"]],[14,16,["H3588"]],[16,19,["H6213"]],[19,22,["H3617"]],[22,24,["H3605"]],[24,26,["H1471"]],[26,27,["H834","H8033"]],[27,30,["H5080"]],[30,35,["H3808"]],[35,36,["H6213"]],[36,39,["H3617"]],[39,43,["H3256"]],[43,46,["H4941"]],[46,50,["H3808"]],[50,53,["H5352"]],[53,54,["H5352"]]]},{"k":20074,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H834"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,11,["H5030"]],[11,12,["H413"]],[12,14,["H6430"]],[14,15,["H2962"]],[15,17,["H6547"]],[17,18,["H5221","(H853)"]],[18,19,["H5804"]]]},{"k":20075,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H2009"]],[5,6,["H4325"]],[6,8,["H5927"]],[8,12,["H4480","H6828"]],[12,15,["H1961"]],[15,17,["H7857"]],[17,18,["H5158"]],[18,21,["H7857"]],[21,23,["H776"]],[23,25,["H4393"]],[25,30,["H5892"]],[30,34,["H3427"]],[34,38,["H120"]],[38,40,["H2199"]],[40,42,["H3605"]],[42,44,["H3427"]],[44,47,["H776"]],[47,49,["H3213"]]]},{"k":20076,"v":[[0,3,["H4480","H6963"]],[3,6,["H8161"]],[6,9,["H6541"]],[9,12,["H47"]],[12,16,["H4480","H7494"]],[16,19,["H7393"]],[19,23,["H1995"]],[23,26,["H1534"]],[26,28,["H1"]],[28,30,["H3808"]],[30,32,["H6437"]],[32,33,["H413"]],[33,35,["H1121"]],[35,37,["H4480","H7510"]],[37,39,["H3027"]]]},{"k":20077,"v":[[0,2,["H5921"]],[2,4,["H3117"]],[4,6,["H935"]],[6,8,["H7703","(H853)"]],[8,9,["H3605"]],[9,11,["H6430"]],[11,15,["H3772"]],[15,17,["H6865"]],[17,19,["H6721"]],[19,20,["H3605"]],[20,21,["H5826"]],[21,23,["H8300"]],[23,24,["H3588"]],[24,26,["H3068"]],[26,28,["H7703","(H853)"]],[28,30,["H6430"]],[30,32,["H7611"]],[32,35,["H339"]],[35,37,["H3731"]]]},{"k":20078,"v":[[0,1,["H7144"]],[1,3,["H935"]],[3,4,["H413"]],[4,5,["H5804"]],[5,6,["H831"]],[6,9,["H1820"]],[9,12,["H7611"]],[12,15,["H6010"]],[15,17,["H5704","H4970"]],[17,21,["H1413"]]]},{"k":20079,"v":[[0,1,["H1945"]],[1,3,["H2719"]],[3,6,["H3068"]],[6,8,["H5704","H575"]],[8,12,["H3808"]],[12,15,["H8252"]],[15,18,["H622"]],[18,19,["H413"]],[19,21,["H8593"]],[21,22,["H7280"]],[22,25,["H1826"]]]},{"k":20080,"v":[[0,1,["H349"]],[1,5,["H8252"]],[5,8,["H3068"]],[8,13,["H6680"]],[13,14,["H413"]],[14,15,["H831"]],[15,17,["H413"]],[17,19,["H3220"]],[19,20,["H2348"]],[20,21,["H8033"]],[21,24,["H3259"]],[24,25,[]]]},{"k":20081,"v":[[0,2,["H4124"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,10,["H430"]],[10,12,["H3478"]],[12,13,["H1945"]],[13,14,["H413"]],[14,15,["H5015"]],[15,16,["H3588"]],[16,19,["H7703"]],[19,20,["H7156"]],[20,22,["H3001"]],[22,24,["H3920"]],[24,25,["H4869"]],[25,27,["H3001"]],[27,29,["H2865"]]]},{"k":20082,"v":[[0,4,["H369"]],[4,5,["H5750"]],[5,6,["H8416"]],[6,8,["H4124"]],[8,10,["H2809"]],[10,13,["H2803"]],[13,14,["H7451"]],[14,15,["H5921"]],[15,17,["H1980"]],[17,23,["H3772"]],[23,27,["H4480","H1471"]],[27,28,["H1571"]],[28,33,["H1826"]],[33,35,["H4086"]],[35,37,["H2719"]],[37,39,["H1980","H310"]],[39,40,[]]]},{"k":20083,"v":[[0,2,["H6963"]],[2,4,["H6818"]],[4,8,["H4480","H2773"]],[8,9,["H7701"]],[9,11,["H1419"]],[11,12,["H7667"]]]},{"k":20084,"v":[[0,1,["H4124"]],[1,3,["H7665"]],[3,6,["H6810"]],[6,10,["H2201"]],[10,13,["H8085"]]]},{"k":20085,"v":[[0,1,["H3588"]],[1,5,["H4608"]],[5,7,["H3872"]],[7,9,["H1065","H1065"]],[9,12,["H5927"]],[12,13,["H3588"]],[13,17,["H4174"]],[17,19,["H2773"]],[19,21,["H6862"]],[21,23,["H8085"]],[23,25,["H6818"]],[25,27,["H7667"]]]},{"k":20086,"v":[[0,1,["H5127"]],[1,2,["H4422"]],[2,4,["H5315"]],[4,6,["H1961"]],[6,9,["H6176"]],[9,12,["H4057"]]]},{"k":20087,"v":[[0,1,["H3588"]],[1,2,["H3282"]],[2,5,["H982"]],[5,8,["H4639"]],[8,12,["H214"]],[12,13,["H859"]],[13,15,["H1571"]],[15,17,["H3920"]],[17,19,["H3645"]],[19,22,["H3318"]],[22,24,["H1473"]],[24,27,["H3548"]],[27,30,["H8269"]],[30,31,["H3162"]]]},{"k":20088,"v":[[0,3,["H7703"]],[3,5,["H935"]],[5,6,["H413"]],[6,7,["H3605"]],[7,8,["H5892"]],[8,10,["H3808"]],[10,11,["H5892"]],[11,13,["H4422"]],[13,15,["H6010"]],[15,18,["H6"]],[18,21,["H4334"]],[21,24,["H8045"]],[24,25,["H834"]],[25,27,["H3068"]],[27,29,["H559"]]]},{"k":20089,"v":[[0,1,["H5414"]],[1,2,["H6731"]],[2,4,["H4124"]],[4,5,["H3588"]],[5,8,["H5323"]],[8,11,["H3318"]],[11,14,["H5892"]],[14,17,["H1961"]],[17,18,["H8047"]],[18,20,["H4480","H369"]],[20,22,["H3427"]],[22,23,["H2004"]]]},{"k":20090,"v":[[0,1,["H779"]],[1,5,["H6213"]],[5,7,["H4399"]],[7,10,["H3068"]],[10,11,["H7423"]],[11,13,["H779"]],[13,18,["H4513"]],[18,20,["H2719"]],[20,22,["H4480","H1818"]]]},{"k":20091,"v":[[0,1,["H4124"]],[1,5,["H7599"]],[5,8,["H4480","H5271"]],[8,10,["H1931"]],[10,12,["H8252"]],[12,13,["H413"]],[13,15,["H8105"]],[15,18,["H3808"]],[18,20,["H7324"]],[20,22,["H4480","H3627"]],[22,23,["H413"]],[23,24,["H3627"]],[24,25,["H3808"]],[25,28,["H1980"]],[28,30,["H1473"]],[30,31,["H5921","H3651"]],[31,33,["H2940"]],[33,34,["H5975"]],[34,39,["H7381"]],[39,41,["H3808"]],[41,42,["H4171"]]]},{"k":20092,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,4,["H3117"]],[4,5,["H935"]],[5,6,["H5002"]],[6,8,["H3068"]],[8,12,["H7971"]],[12,15,["H6808"]],[15,21,["H6808"]],[21,24,["H7324"]],[24,26,["H3627"]],[26,28,["H5310"]],[28,30,["H5035"]]]},{"k":20093,"v":[[0,2,["H4124"]],[2,5,["H954"]],[5,7,["H4480","H3645"]],[7,8,["H834"]],[8,10,["H1004"]],[10,12,["H3478"]],[12,14,["H954"]],[14,16,["H4480","H1008"]],[16,18,["H4009"]]]},{"k":20094,"v":[[0,1,["H349"]],[1,2,["H559"]],[2,4,["H587"]],[4,6,["H1368"]],[6,8,["H2428"]],[8,9,["H376"]],[9,12,["H4421"]]]},{"k":20095,"v":[[0,1,["H4124"]],[1,3,["H7703"]],[3,6,["H5927"]],[6,10,["H5892"]],[10,13,["H4005"]],[13,15,["H970"]],[15,18,["H3381"]],[18,21,["H2874"]],[21,22,["H5002"]],[22,24,["H4428"]],[24,26,["H8034"]],[26,29,["H3068"]],[29,31,["H6635"]]]},{"k":20096,"v":[[0,2,["H343"]],[2,4,["H4124"]],[4,6,["H7138"]],[6,8,["H935"]],[8,11,["H7451"]],[11,12,["H4116"]],[12,13,["H3966"]]]},{"k":20097,"v":[[0,1,["H3605"]],[1,5,["H5439"]],[5,7,["H5110"]],[7,10,["H3605"]],[10,13,["H3045"]],[13,15,["H8034"]],[15,16,["H559"]],[16,17,["H349"]],[17,20,["H5797"]],[20,21,["H4294"]],[21,22,["H7665"]],[22,25,["H8597"]],[25,26,["H4731"]]]},{"k":20098,"v":[[0,2,["H1323"]],[2,5,["H3427"]],[5,6,["H1769"]],[6,8,["H3381"]],[8,11,["H4480","H3519"]],[11,13,["H3427"]],[13,15,["H6772"]],[15,16,["H3588"]],[16,18,["H7703"]],[18,20,["H4124"]],[20,22,["H5927"]],[22,28,["H7843"]],[28,31,["H4013"]]]},{"k":20099,"v":[[0,2,["H3427"]],[2,4,["H6177"]],[4,5,["H5975"]],[5,6,["H413"]],[6,8,["H1870"]],[8,10,["H6822"]],[10,11,["H7592"]],[11,14,["H5127"]],[14,18,["H4422"]],[18,20,["H559"]],[20,21,["H4100"]],[21,22,["H1961"]],[22,23,[]]]},{"k":20100,"v":[[0,1,["H4124"]],[1,3,["H3001"]],[3,4,["H3588"]],[4,8,["H2865"]],[8,9,["H3213"]],[9,11,["H2199"]],[11,12,["H5046"]],[12,16,["H769"]],[16,17,["H3588"]],[17,18,["H4124"]],[18,20,["H7703"]]]},{"k":20101,"v":[[0,2,["H4941"]],[2,4,["H935"]],[4,5,["H413"]],[5,7,["H4334"]],[7,8,["H776"]],[8,9,["H413"]],[9,10,["H2473"]],[10,12,["H413"]],[12,13,["H3096"]],[13,15,["H5921"]],[15,16,["H4158"]]]},{"k":20102,"v":[[0,2,["H5921"]],[2,3,["H1769"]],[3,5,["H5921"]],[5,6,["H5015"]],[6,8,["H5921"]],[8,9,["H1015"]]]},{"k":20103,"v":[[0,2,["H5921"]],[2,3,["H7156"]],[3,5,["H5921"]],[5,6,["H1014"]],[6,8,["H5921"]],[8,9,["H1010"]]]},{"k":20104,"v":[[0,2,["H5921"]],[2,3,["H7152"]],[3,5,["H5921"]],[5,6,["H1224"]],[6,8,["H5921"]],[8,9,["H3605"]],[9,11,["H5892"]],[11,14,["H776"]],[14,16,["H4124"]],[16,17,["H7350"]],[17,19,["H7138"]]]},{"k":20105,"v":[[0,2,["H7161"]],[2,4,["H4124"]],[4,7,["H1438"]],[7,10,["H2220"]],[10,12,["H7665"]],[12,13,["H5002"]],[13,15,["H3068"]]]},{"k":20106,"v":[[0,4,["H7937"]],[4,5,["H3588"]],[5,7,["H1431"]],[7,9,["H5921"]],[9,11,["H3068"]],[11,12,["H4124"]],[12,15,["H5606"]],[15,18,["H6892"]],[18,20,["H1931"]],[20,21,["H1571"]],[21,23,["H1961"]],[23,25,["H7814"]]]},{"k":20107,"v":[[0,1,["H518"]],[1,2,["H1961"]],[2,3,["H3808"]],[3,4,["H3478"]],[4,6,["H7814"]],[6,11,["H4672"]],[11,13,["H1590"]],[13,14,["H3588"]],[14,15,["H4480","H1767"]],[15,17,["H1697"]],[17,23,["H5110"]]]},{"k":20108,"v":[[0,4,["H3427"]],[4,6,["H4124"]],[6,7,["H5800"]],[7,9,["H5892"]],[9,11,["H7931"]],[11,14,["H5553"]],[14,16,["H1961"]],[16,19,["H3123"]],[19,23,["H7077"]],[23,26,["H5676"]],[26,29,["H6354"]],[29,30,["H6310"]]]},{"k":20109,"v":[[0,3,["H8085"]],[3,5,["H1347"]],[5,7,["H4124"]],[7,10,["H3966"]],[10,11,["H1343"]],[11,13,["H1363"]],[13,16,["H1347"]],[16,19,["H1346"]],[19,22,["H7312"]],[22,25,["H3820"]]]},{"k":20110,"v":[[0,1,["H589"]],[1,2,["H3045"]],[2,4,["H5678"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,11,["H3808"]],[11,13,["H3651"]],[13,15,["H907"]],[15,17,["H3808"]],[17,18,["H3651"]],[18,19,["H6213"]],[19,20,[]]]},{"k":20111,"v":[[0,1,["H5921","H3651"]],[1,4,["H3213"]],[4,5,["H5921"]],[5,6,["H4124"]],[6,11,["H2199"]],[11,13,["H3605"]],[13,14,["H4124"]],[14,18,["H1897"]],[18,19,["H413"]],[19,21,["H376"]],[21,23,["H7025"]]]},{"k":20112,"v":[[0,2,["H1612"]],[2,4,["H7643"]],[4,7,["H1058"]],[7,12,["H4480","H1065"]],[12,14,["H3270"]],[14,16,["H5189"]],[16,19,["H5674"]],[19,21,["H3220"]],[21,23,["H5060"]],[23,25,["H5704"]],[25,27,["H3220"]],[27,29,["H3270"]],[29,31,["H7703"]],[31,33,["H5307"]],[33,34,["H5921"]],[34,37,["H7019"]],[37,39,["H5921"]],[39,41,["H1210"]]]},{"k":20113,"v":[[0,2,["H8057"]],[2,4,["H1524"]],[4,6,["H622"]],[6,10,["H4480","H3759"]],[10,14,["H4480","H776"]],[14,16,["H4124"]],[16,21,["H3196"]],[21,23,["H7673"]],[23,26,["H4480","H3342"]],[26,27,["H3808"]],[27,29,["H1869"]],[29,31,["H1959"]],[31,33,["H1959"]],[33,36,["H3808"]],[36,37,["H1959"]]]},{"k":20114,"v":[[0,3,["H4480","H2201"]],[3,5,["H2809"]],[5,7,["H5704"]],[7,8,["H500"]],[8,11,["H5704"]],[11,12,["H3096"]],[12,15,["H5414"]],[15,17,["H6963"]],[17,19,["H4480","H6820"]],[19,21,["H5704"]],[21,22,["H2773"]],[22,25,["H5697"]],[25,29,["H7992"]],[29,30,["H3588"]],[30,32,["H4325"]],[32,33,["H1571"]],[33,35,["H5249"]],[35,37,["H1961"]],[37,38,["H4923"]]]},{"k":20115,"v":[[0,6,["H7673"]],[6,8,["H4124"]],[8,9,["H5002"]],[9,11,["H3068"]],[11,14,["H5927"]],[14,18,["H1116"]],[18,23,["H6999"]],[23,26,["H430"]]]},{"k":20116,"v":[[0,1,["H5921","H3651"]],[1,3,["H3820"]],[3,5,["H1993"]],[5,7,["H4124"]],[7,9,["H2485"]],[9,12,["H3820"]],[12,14,["H1993"]],[14,16,["H2485"]],[16,17,["H413"]],[17,19,["H376"]],[19,21,["H7025"]],[21,22,["H5921","H3651"]],[22,24,["H3502"]],[24,28,["H6213"]],[28,30,["H6"]]]},{"k":20117,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,3,["H7218"]],[3,6,["H7144"]],[6,8,["H3605"]],[8,9,["H2206"]],[9,10,["H1639"]],[10,11,["H5921"]],[11,12,["H3605"]],[12,14,["H3027"]],[14,17,["H1418"]],[17,19,["H5921"]],[19,21,["H4975"]],[21,22,["H8242"]]]},{"k":20118,"v":[[0,4,["H4553"]],[4,5,["H3605"]],[5,6,["H5921"]],[6,7,["H3605"]],[7,9,["H1406"]],[9,11,["H4124"]],[11,15,["H7339"]],[15,17,["H3588"]],[17,20,["H7665","(H853)"]],[20,21,["H4124"]],[21,24,["H3627"]],[24,27,["H369"]],[27,28,["H2656"]],[28,29,["H5002"]],[29,31,["H3068"]]]},{"k":20119,"v":[[0,3,["H3213"]],[3,5,["H349"]],[5,9,["H2865"]],[9,10,["H349"]],[10,12,["H4124"]],[12,13,["H6437"]],[13,15,["H6203"]],[15,17,["H954"]],[17,20,["H4124"]],[20,21,["H1961"]],[21,23,["H7814"]],[23,26,["H4288"]],[26,28,["H3605"]],[28,30,["H5439"]],[30,31,[]]]},{"k":20120,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,9,["H1675"]],[9,12,["H5404"]],[12,15,["H6566"]],[15,17,["H3671"]],[17,18,["H413"]],[18,19,["H4124"]]]},{"k":20121,"v":[[0,1,["H7152"]],[1,3,["H3920"]],[3,7,["H4679"]],[7,9,["H8610"]],[9,13,["H1368"]],[13,14,["H3820"]],[14,16,["H4124"]],[16,18,["H1931"]],[18,19,["H3117"]],[19,21,["H1961"]],[21,24,["H3820"]],[24,27,["H802"]],[27,30,["H6887"]]]},{"k":20122,"v":[[0,2,["H4124"]],[2,5,["H8045"]],[5,9,["H4480","H5971"]],[9,10,["H3588"]],[10,13,["H1431"]],[13,15,["H5921"]],[15,17,["H3068"]]]},{"k":20123,"v":[[0,1,["H6343"]],[1,4,["H6354"]],[4,7,["H6341"]],[7,10,["H5921"]],[10,13,["H3427"]],[13,15,["H4124"]],[15,16,["H5002"]],[16,18,["H3068"]]]},{"k":20124,"v":[[0,3,["H5211"]],[3,4,["H4480","H6440"]],[4,6,["H6343"]],[6,8,["H5307"]],[8,9,["H413"]],[9,11,["H6354"]],[11,16,["H5927"]],[16,18,["H4480"]],[18,20,["H6354"]],[20,23,["H3920"]],[23,26,["H6341"]],[26,27,["H3588"]],[27,30,["H935"]],[30,31,["H413"]],[31,34,["H413"]],[34,35,["H4124"]],[35,37,["H8141"]],[37,40,["H6486"]],[40,41,["H5002"]],[41,43,["H3068"]]]},{"k":20125,"v":[[0,3,["H5127"]],[3,4,["H5975"]],[4,7,["H6738"]],[7,9,["H2809"]],[9,13,["H4480","H3581"]],[13,14,["H3588"]],[14,16,["H784"]],[16,19,["H3318"]],[19,22,["H4480","H2809"]],[22,25,["H3852"]],[25,28,["H4480","H996"]],[28,30,["H5511"]],[30,33,["H398"]],[33,35,["H6285"]],[35,37,["H4124"]],[37,43,["H6936"]],[43,46,["H7588"]],[46,47,["H1121"]]]},{"k":20126,"v":[[0,1,["H188"]],[1,6,["H4124"]],[6,8,["H5971"]],[8,10,["H3645"]],[10,11,["H6"]],[11,12,["H3588"]],[12,14,["H1121"]],[14,16,["H3947"]],[16,17,["H7628"]],[17,20,["H1323"]],[20,21,["H7633"]]]},{"k":20127,"v":[[0,5,["H7725"]],[5,7,["H7622"]],[7,9,["H4124"]],[9,12,["H319"]],[12,13,["H3117"]],[13,14,["H5002"]],[14,16,["H3068"]],[16,17,["H2008"]],[17,18,["H5704"]],[18,21,["H4941"]],[21,23,["H4124"]]]},{"k":20128,"v":[[0,3,["H1121","H5984"]],[3,4,["H3541"]],[4,5,["H559"]],[5,7,["H3068"]],[7,9,["H3478"]],[9,10,["H369"]],[10,11,["H1121"]],[11,14,["H369"]],[14,15,["H3423"]],[15,16,["H4069"]],[16,20,["H4428"]],[20,21,["H3423","(H853)"]],[21,22,["H1410"]],[22,25,["H5971"]],[25,26,["H3427"]],[26,29,["H5892"]]]},{"k":20129,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,4,["H3117"]],[4,5,["H935"]],[5,6,["H559"]],[6,8,["H3068"]],[8,14,["H8643"]],[14,16,["H4421"]],[16,19,["H8085"]],[19,20,["H413"]],[20,21,["H7237"]],[21,24,["H1121","H5983"]],[24,28,["H1961"]],[28,30,["H8077"]],[30,31,["H8510"]],[31,34,["H1323"]],[34,37,["H3341"]],[37,39,["H784"]],[39,42,["H3478"]],[42,44,["H3423"]],[44,48,["(H853)"]],[48,50,["H3423"]],[50,51,["H5002"]],[51,53,["H3068"]]]},{"k":20130,"v":[[0,1,["H3213"]],[1,3,["H2809"]],[3,4,["H3588"]],[4,5,["H5857"]],[5,7,["H7703"]],[7,8,["H6817"]],[8,10,["H1323"]],[10,12,["H7237"]],[12,13,["H2296"]],[13,16,["H8242"]],[16,17,["H5594"]],[17,22,["H7751"]],[22,25,["H1448"]],[25,26,["H3588"]],[26,28,["H4428"]],[28,30,["H1980"]],[30,32,["H1473"]],[32,35,["H3548"]],[35,38,["H8269"]],[38,39,["H3162"]]]},{"k":20131,"v":[[0,1,["H4100"]],[1,2,["H1984"]],[2,6,["H6010"]],[6,8,["H2100"]],[8,9,["H6010"]],[9,11,["H7728"]],[11,12,["H1323"]],[12,14,["H982"]],[14,17,["H214"]],[17,19,["H4310"]],[19,21,["H935"]],[21,22,["H413"]],[22,23,[]]]},{"k":20132,"v":[[0,1,["H2009"]],[1,4,["H935"]],[4,6,["H6343"]],[6,7,["H5921"]],[7,9,["H5002"]],[9,11,["H136"]],[11,12,["H3069"]],[12,14,["H6635"]],[14,16,["H4480","H3605"]],[16,20,["H5439"]],[20,27,["H5080"]],[27,29,["H376"]],[29,31,["H6440"]],[31,33,["H369"]],[33,36,["H6908"]],[36,39,["H5074"]]]},{"k":20133,"v":[[0,2,["H310","H3651"]],[2,6,["H7725","(H853)"]],[6,8,["H7622"]],[8,11,["H1121"]],[11,13,["H5983"]],[13,14,["H5002"]],[14,16,["H3068"]]]},{"k":20134,"v":[[0,2,["H123"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,10,["H2451"]],[10,11,["H369"]],[11,12,["H5750"]],[12,14,["H8487"]],[14,16,["H6098"]],[16,17,["H6"]],[17,20,["H4480","H995"]],[20,23,["H2451"]],[23,24,["H5628"]]]},{"k":20135,"v":[[0,1,["H5127"]],[1,4,["H6437"]],[4,5,["H3427"]],[5,6,["H6009"]],[6,8,["H3427"]],[8,10,["H1719"]],[10,11,["H3588"]],[11,14,["H935"]],[14,16,["H343"]],[16,18,["H6215"]],[18,19,["H5921"]],[19,22,["H6256"]],[22,26,["H6485"]],[26,27,[]]]},{"k":20136,"v":[[0,1,["H518"]],[1,2,["H1219"]],[2,3,["H935"]],[3,8,["H3808"]],[8,9,["H7604"]],[9,12,["H5955"]],[12,13,["H518"]],[13,14,["H1590"]],[14,16,["H3915"]],[16,19,["H7843"]],[19,23,["H1767"]]]},{"k":20137,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,4,["(H853)"]],[4,5,["H6215"]],[5,6,["H2834"]],[6,9,["H1540","(H853)"]],[9,12,["H4565"]],[12,16,["H3808"]],[16,18,["H3201"]],[18,21,["H2247"]],[21,23,["H2233"]],[23,25,["H7703"]],[25,28,["H251"]],[28,31,["H7934"]],[31,35,["H369"]]]},{"k":20138,"v":[[0,1,["H5800"]],[1,4,["H3490"]],[4,5,["H589"]],[5,9,["H2421"]],[9,13,["H490"]],[13,14,["H982"]],[14,15,["H5921"]],[15,16,[]]]},{"k":20139,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,8,["H834"]],[8,9,["H4941"]],[9,11,["H369"]],[11,13,["H8354"]],[13,16,["H3563"]],[16,19,["H8354","H8354"]],[19,22,["H859"]],[22,23,["H1931"]],[23,28,["H5352","H5352"]],[28,31,["H3808"]],[31,33,["H5352"]],[33,34,["H3588"]],[34,38,["H8354","H8354"]],[38,40,[]]]},{"k":20140,"v":[[0,1,["H3588"]],[1,4,["H7650"]],[4,7,["H5002"]],[7,9,["H3068"]],[9,10,["H3588"]],[10,11,["H1224"]],[11,13,["H1961"]],[13,15,["H8047"]],[15,17,["H2781"]],[17,19,["H2721"]],[19,22,["H7045"]],[22,24,["H3605"]],[24,26,["H5892"]],[26,29,["H1961"]],[29,30,["H5769"]],[30,31,["H2723"]]]},{"k":20141,"v":[[0,3,["H8085"]],[3,5,["H8052"]],[5,6,["H4480","H854"]],[6,8,["H3068"]],[8,11,["H6735"]],[11,13,["H7971"]],[13,16,["H1471"]],[16,20,["H6908"]],[20,22,["H935"]],[22,23,["H5921"]],[23,27,["H6965"]],[27,30,["H4421"]]]},{"k":20142,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,5,["H5414"]],[5,7,["H6996"]],[7,10,["H1471"]],[10,12,["H959"]],[12,14,["H120"]]]},{"k":20143,"v":[[0,2,["H8606"]],[2,4,["H5377"]],[4,8,["H2087"]],[8,11,["H3820"]],[11,15,["H7931"]],[15,18,["H2288"]],[18,21,["H5553"]],[21,23,["H8610"]],[23,25,["H4791"]],[25,28,["H1389"]],[28,29,["H3588"]],[29,34,["H7064"]],[34,36,["H1361"]],[36,39,["H5404"]],[39,44,["H3381"]],[44,46,["H4480","H8033"]],[46,47,["H5002"]],[47,49,["H3068"]]]},{"k":20144,"v":[[0,2,["H123"]],[2,4,["H1961"]],[4,6,["H8047"]],[6,8,["H3605"]],[8,10,["H5674"]],[10,11,["H5921"]],[11,15,["H8074"]],[15,18,["H8319"]],[18,19,["H5921"]],[19,20,["H3605"]],[20,22,["H4347"]],[22,23,[]]]},{"k":20145,"v":[[0,4,["H4114"]],[4,6,["H5467"]],[6,8,["H6017"]],[8,11,["H7934"]],[11,14,["H559"]],[14,16,["H3068"]],[16,17,["H3808"]],[17,18,["H376"]],[18,20,["H3427"]],[20,21,["H8033"]],[21,22,["H3808"]],[22,25,["H1121"]],[25,27,["H120"]],[27,28,["H1481"]],[28,30,[]]]},{"k":20146,"v":[[0,1,["H2009"]],[1,5,["H5927"]],[5,8,["H738"]],[8,11,["H4480","H1347"]],[11,13,["H3383"]],[13,14,["H413"]],[14,16,["H5116"]],[16,19,["H386"]],[19,20,["H3588"]],[20,23,["H7280"]],[23,27,["H7323"]],[27,28,["H4480","H5921"]],[28,31,["H4310"]],[31,34,["H977"]],[34,39,["H6485"]],[39,40,["H413"]],[40,42,["H3588"]],[42,43,["H4310"]],[43,46,["H3644"]],[46,48,["H4310"]],[48,50,["H3259"]],[50,55,["H4310"]],[55,57,["H2088"]],[57,58,["H7462"]],[58,59,["H834"]],[59,61,["H5975"]],[61,62,["H6440"]],[62,63,[]]]},{"k":20147,"v":[[0,1,["H3651"]],[1,2,["H8085"]],[2,4,["H6098"]],[4,7,["H3068"]],[7,8,["H834"]],[8,11,["H3289"]],[11,12,["H413"]],[12,13,["H123"]],[13,16,["H4284"]],[16,17,["H834"]],[17,20,["H2803"]],[20,21,["H413"]],[21,23,["H3427"]],[23,25,["H8487"]],[25,26,["H518","H3808"]],[26,28,["H6810"]],[28,31,["H6629"]],[31,35,["H5498"]],[35,36,["H518","H3808"]],[36,41,["H5116"]],[41,42,["H8074"]],[42,43,["H5921"]],[43,44,[]]]},{"k":20148,"v":[[0,2,["H776"]],[2,4,["H7493"]],[4,7,["H4480","H6963"]],[7,10,["H5307"]],[10,13,["H6818"]],[13,15,["H6963"]],[15,18,["H8085"]],[18,21,["H5488"]],[21,22,["H3220"]]]},{"k":20149,"v":[[0,1,["H2009"]],[1,5,["H5927"]],[5,7,["H1675"]],[7,10,["H5404"]],[10,12,["H6566"]],[12,14,["H3671"]],[14,15,["H5921"]],[15,16,["H1224"]],[16,19,["H1931"]],[19,20,["H3117"]],[20,23,["H3820"]],[23,27,["H1368"]],[27,29,["H123"]],[29,30,["H1961"]],[30,33,["H3820"]],[33,36,["H802"]],[36,39,["H6887"]]]},{"k":20150,"v":[[0,2,["H1834"]],[2,3,["H2574"]],[3,5,["H954"]],[5,7,["H774"]],[7,8,["H3588"]],[8,11,["H8085"]],[11,12,["H7451"]],[12,13,["H8052"]],[13,16,["H4127"]],[16,19,["H1674"]],[19,22,["H3220"]],[22,24,["H3808","H3201"]],[24,26,["H8252"]]]},{"k":20151,"v":[[0,1,["H1834"]],[1,4,["H7503"]],[4,7,["H6437"]],[7,9,["H5127"]],[9,11,["H7374"]],[11,13,["H2388"]],[13,16,["H6869"]],[16,18,["H2256"]],[18,20,["H270"]],[20,26,["H3205"]]]},{"k":20152,"v":[[0,1,["H349"]],[1,4,["H5892"]],[4,6,["H8416"]],[6,7,["H3808"]],[7,8,["H5800"]],[8,10,["H7151"]],[10,13,["H4885"]]]},{"k":20153,"v":[[0,1,["H3651"]],[1,4,["H970"]],[4,6,["H5307"]],[6,9,["H7339"]],[9,11,["H3605"]],[11,13,["H376"]],[13,15,["H4421"]],[15,19,["H1826"]],[19,21,["H1931"]],[21,22,["H3117"]],[22,23,["H5002"]],[23,25,["H3068"]],[25,27,["H6635"]]]},{"k":20154,"v":[[0,4,["H3341"]],[4,6,["H784"]],[6,9,["H2346"]],[9,11,["H1834"]],[11,15,["H398"]],[15,17,["H759"]],[17,19,["H1130"]]]},{"k":20155,"v":[[0,2,["H6938"]],[2,6,["H4467"]],[6,8,["H2674"]],[8,9,["H834"]],[9,10,["H5019"]],[10,11,["H4428"]],[11,13,["H894"]],[13,15,["H5221"]],[15,16,["H3541"]],[16,17,["H559"]],[17,19,["H3068"]],[19,20,["H6965"]],[20,23,["H5927"]],[23,24,["H413"]],[24,25,["H6938"]],[25,27,["H7703","(H853)"]],[27,29,["H1121"]],[29,32,["H6924"]]]},{"k":20156,"v":[[0,2,["H168"]],[2,5,["H6629"]],[5,9,["H3947"]],[9,12,["H5375"]],[12,16,["H3407"]],[16,18,["H3605"]],[18,20,["H3627"]],[20,23,["H1581"]],[23,27,["H7121"]],[27,28,["H5921"]],[28,30,["H4032"]],[30,34,["H4480","H5439"]]]},{"k":20157,"v":[[0,1,["H5127"]],[1,2,["H5110"]],[2,5,["H3966"]],[5,6,["H3427"]],[6,7,["H6009"]],[7,10,["H3427"]],[10,12,["H2674"]],[12,13,["H5002"]],[13,15,["H3068"]],[15,16,["H3588"]],[16,17,["H5019"]],[17,18,["H4428"]],[18,20,["H894"]],[20,22,["H3289"]],[22,23,["H6098"]],[23,24,["H5921"]],[24,28,["H2803"]],[28,30,["H4284"]],[30,31,["H5921"]],[31,32,[]]]},{"k":20158,"v":[[0,1,["H6965"]],[1,4,["H5927"]],[4,5,["H413"]],[5,7,["H7961"]],[7,8,["H1471"]],[8,10,["H3427"]],[10,12,["H983"]],[12,13,["H5002"]],[13,15,["H3068"]],[15,18,["H3808"]],[18,19,["H1817"]],[19,20,["H3808"]],[20,21,["H1280"]],[21,23,["H7931"]],[23,24,["H910"]]]},{"k":20159,"v":[[0,3,["H1581"]],[3,5,["H1961"]],[5,7,["H957"]],[7,10,["H1995"]],[10,13,["H4735"]],[13,15,["H7998"]],[15,19,["H2219"]],[19,21,["H3605"]],[21,22,["H7307"]],[22,28,["H7112"]],[28,29,["H6285"]],[29,33,["H935","(H853)"]],[33,35,["H343"]],[35,37,["H4480","H3605"]],[37,38,["H5676"]],[38,40,["H5002"]],[40,42,["H3068"]]]},{"k":20160,"v":[[0,2,["H2674"]],[2,4,["H1961"]],[4,6,["H4583"]],[6,8,["H8577"]],[8,11,["H8077"]],[11,13,["H5704","H5769"]],[13,16,["H3808"]],[16,17,["H376"]],[17,18,["H3427"]],[18,19,["H8033"]],[19,20,["H3808"]],[20,22,["H1121"]],[22,24,["H120"]],[24,25,["H1481"]],[25,27,[]]]},{"k":20161,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H834"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3414"]],[9,11,["H5030"]],[11,12,["H413"]],[12,13,["H5867"]],[13,16,["H7225"]],[16,19,["H4438"]],[19,21,["H6667"]],[21,22,["H4428"]],[22,24,["H3063"]],[24,25,["H559"]]]},{"k":20162,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H2009"]],[7,10,["H7665","(H853)"]],[10,12,["H7198"]],[12,14,["H5867"]],[14,16,["H7225"]],[16,19,["H1369"]]]},{"k":20163,"v":[[0,2,["H413"]],[2,3,["H5867"]],[3,6,["H935"]],[6,8,["H702"]],[8,9,["H7307"]],[9,12,["H4480","H702"]],[12,13,["H7098"]],[13,15,["H8064"]],[15,18,["H2219"]],[18,21,["H3605"]],[21,22,["H428"]],[22,23,["H7307"]],[23,27,["H1961"]],[27,28,["H3808"]],[28,29,["H1471"]],[29,30,["H834","H8033"]],[30,32,["H5080"]],[32,34,["H5867"]],[34,36,["H3808"]],[36,37,["H935"]]]},{"k":20164,"v":[[0,4,["(H853)"]],[4,5,["H5867"]],[5,8,["H2865"]],[8,9,["H6440"]],[9,11,["H341"]],[11,13,["H6440"]],[13,16,["H1245"]],[16,18,["H5315"]],[18,22,["H935"]],[22,23,["H7451"]],[23,24,["H5921"]],[24,26,["(H853)"]],[26,28,["H2740"]],[28,29,["H639"]],[29,30,["H5002"]],[30,32,["H3068"]],[32,36,["H7971","(H853)"]],[36,38,["H2719"]],[38,39,["H310"]],[39,41,["H5704"]],[41,44,["H3615"]],[44,45,[]]]},{"k":20165,"v":[[0,4,["H7760"]],[4,6,["H3678"]],[6,8,["H5867"]],[8,11,["H6"]],[11,13,["H4480","H8033"]],[13,15,["H4428"]],[15,18,["H8269"]],[18,19,["H5002"]],[19,21,["H3068"]]]},{"k":20166,"v":[[0,6,["H1961"]],[6,9,["H319"]],[9,10,["H3117"]],[10,15,["H7725","(H853)"]],[15,17,["H7622"]],[17,19,["H5867"]],[19,20,["H5002"]],[20,22,["H3068"]]]},{"k":20167,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,5,["H3068"]],[5,6,["H1696"]],[6,7,["H413"]],[7,8,["H894"]],[8,10,["H413"]],[10,12,["H776"]],[12,15,["H3778"]],[15,16,["H3027"]],[16,17,["H3414"]],[17,19,["H5030"]]]},{"k":20168,"v":[[0,1,["H5046"]],[1,5,["H1471"]],[5,7,["H8085"]],[7,10,["H5375"]],[10,12,["H5251"]],[12,13,["H8085"]],[13,15,["H3582"]],[15,16,["H408"]],[16,17,["H559"]],[17,18,["H894"]],[18,20,["H3920"]],[20,21,["H1078"]],[21,23,["H3001"]],[23,24,["H4781"]],[24,28,["H2844"]],[28,30,["H6091"]],[30,32,["H3001"]],[32,34,["H1544"]],[34,38,["H2865"]]]},{"k":20169,"v":[[0,1,["H3588"]],[1,5,["H4480","H6828"]],[5,8,["H5927"]],[8,10,["H1471"]],[10,11,["H5921"]],[11,13,["H1931"]],[13,15,["H7896","(H853)"]],[15,17,["H776"]],[17,18,["H8047"]],[18,20,["H3808"]],[20,21,["H1961"]],[21,22,["H3427"]],[22,26,["H5110"]],[26,29,["H1980"]],[29,31,["H4480","H120"]],[31,33,["H929"]]]},{"k":20170,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,6,["H1931"]],[6,7,["H6256"]],[7,8,["H5002"]],[8,10,["H3068"]],[10,12,["H1121"]],[12,14,["H3478"]],[14,16,["H935"]],[16,17,["H1992"]],[17,20,["H1121"]],[20,22,["H3063"]],[22,23,["H3162"]],[23,24,["H1980"]],[24,26,["H1058"]],[26,29,["H1980"]],[29,31,["H1245"]],[31,33,["H3068"]],[33,35,["H430"]]]},{"k":20171,"v":[[0,3,["H7592"]],[3,5,["H1870"]],[5,7,["H6726"]],[7,10,["H6440"]],[10,11,["H2008"]],[11,13,["H935"]],[13,18,["H3867"]],[18,19,["H413"]],[19,21,["H3068"]],[21,24,["H5769"]],[24,25,["H1285"]],[25,28,["H3808"]],[28,30,["H7911"]]]},{"k":20172,"v":[[0,2,["H5971"]],[2,4,["H1961"]],[4,5,["H6"]],[5,6,["H6629"]],[6,8,["H7462"]],[8,14,["H8582"]],[14,19,["H7725"]],[19,22,["H2022"]],[22,25,["H1980"]],[25,27,["H4480","H2022"]],[27,28,["H413"]],[28,29,["H1389"]],[29,32,["H7911"]],[32,34,["H7258"]]]},{"k":20173,"v":[[0,1,["H3605"]],[1,3,["H4672"]],[3,6,["H398"]],[6,10,["H6862"]],[10,11,["H559"]],[11,13,["H816"]],[13,14,["H3808"]],[14,15,["H8478","H834"]],[15,18,["H2398"]],[18,21,["H3068"]],[21,23,["H5116"]],[23,25,["H6664"]],[25,28,["H3068"]],[28,30,["H4723"]],[30,33,["H1"]]]},{"k":20174,"v":[[0,1,["H5110"]],[1,5,["H4480","H8432"]],[5,7,["H894"]],[7,10,["H3318"]],[10,14,["H4480","H776"]],[14,17,["H3778"]],[17,19,["H1961"]],[19,23,["H6260"]],[23,24,["H6440"]],[24,26,["H6629"]]]},{"k":20175,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,3,["H595"]],[3,5,["H5782"]],[5,10,["H5927"]],[10,11,["H5921"]],[11,12,["H894"]],[12,14,["H6951"]],[14,16,["H1419"]],[16,17,["H1471"]],[17,20,["H6828"]],[20,21,["H4480","H776"]],[21,28,["H6186"]],[28,32,["H4480","H8033"]],[32,36,["H3920"]],[36,38,["H2671"]],[38,44,["H1368"]],[44,45,["H7919"]],[45,47,["H3808"]],[47,49,["H7725"]],[49,51,["H7387"]]]},{"k":20176,"v":[[0,2,["H3778"]],[2,4,["H1961"]],[4,6,["H7997"]],[6,7,["H3605"]],[7,9,["H7998"]],[9,13,["H7646"]],[13,14,["H5002"]],[14,16,["H3068"]]]},{"k":20177,"v":[[0,1,["H3588"]],[1,4,["H8055"]],[4,5,["H3588"]],[5,7,["H5937"]],[7,10,["H8154"]],[10,13,["H5159"]],[13,14,["H3588"]],[14,18,["H6335"]],[18,21,["H5697"]],[21,23,["H1877"]],[23,25,["H6670"]],[25,27,["H47"]]]},{"k":20178,"v":[[0,2,["H517"]],[2,5,["H3966"]],[5,6,["H954"]],[6,9,["H3205"]],[9,13,["H2659"]],[13,14,["H2009"]],[14,16,["H319"]],[16,19,["H1471"]],[19,23,["H4057"]],[23,26,["H6723"]],[26,29,["H6160"]]]},{"k":20179,"v":[[0,4,["H4480","H7110"]],[4,7,["H3068"]],[7,10,["H3808"]],[10,12,["H3427"]],[12,16,["H1961"]],[16,17,["H3605"]],[17,18,["H8077"]],[18,20,["H3605"]],[20,22,["H5674"]],[22,23,["H5921"]],[23,24,["H894"]],[24,27,["H8074"]],[27,29,["H8319"]],[29,30,["H5921"]],[30,31,["H3605"]],[31,33,["H4347"]]]},{"k":20180,"v":[[0,4,["H6186"]],[4,5,["H5921"]],[5,6,["H894"]],[6,8,["H5439"]],[8,9,["H3605"]],[9,12,["H1869"]],[12,14,["H7198"]],[14,15,["H3034"]],[15,16,["H413"]],[16,18,["H2550"]],[18,19,["H408"]],[19,20,["H2671"]],[20,21,["H3588"]],[21,24,["H2398"]],[24,27,["H3068"]]]},{"k":20181,"v":[[0,1,["H7321"]],[1,2,["H5921"]],[2,5,["H5439"]],[5,8,["H5414"]],[8,10,["H3027"]],[10,12,["H803"]],[12,14,["H5307"]],[14,16,["H2346"]],[16,19,["H2040"]],[19,20,["H3588"]],[20,21,["H1931"]],[21,24,["H5360"]],[24,27,["H3068"]],[27,29,["H5358"]],[29,32,["H834"]],[32,35,["H6213"]],[35,36,["H6213"]],[36,38,[]]]},{"k":20182,"v":[[0,2,["H3772"]],[2,4,["H2232"]],[4,6,["H4480","H894"]],[6,10,["H8610"]],[10,12,["H4038"]],[12,15,["H6256"]],[15,17,["H7105"]],[17,19,["H4480","H6440"]],[19,22,["H3238"]],[22,23,["H2719"]],[23,26,["H6437"]],[26,28,["H376"]],[28,29,["H413"]],[29,31,["H5971"]],[31,35,["H5127"]],[35,37,["H376"]],[37,41,["H776"]]]},{"k":20183,"v":[[0,1,["H3478"]],[1,4,["H6340"]],[4,5,["H7716"]],[5,7,["H738"]],[7,11,["H5080"]],[11,12,["H7223"]],[12,14,["H4428"]],[14,16,["H804"]],[16,18,["H398"]],[18,21,["H314"]],[21,22,["H2088"]],[22,23,["H5019"]],[23,24,["H4428"]],[24,26,["H894"]],[26,30,["H6105"]]]},{"k":20184,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,12,["H2009"]],[12,15,["H6485","H413"]],[15,17,["H4428"]],[17,19,["H894"]],[19,22,["H776"]],[22,23,["H834"]],[23,26,["H6485","H413"]],[26,28,["H4428"]],[28,30,["H804"]]]},{"k":20185,"v":[[0,4,["H7725","(H853)"]],[4,5,["H3478"]],[5,7,["H413"]],[7,9,["H5116"]],[9,13,["H7462"]],[13,15,["H3760"]],[15,17,["H1316"]],[17,20,["H5315"]],[20,23,["H7646"]],[23,25,["H2022"]],[25,26,["H669"]],[26,28,["H1568"]]]},{"k":20186,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,6,["H1931"]],[6,7,["H6256"]],[7,8,["H5002"]],[8,10,["H3068","(H853)"]],[10,12,["H5771"]],[12,14,["H3478"]],[14,18,["H1245"]],[18,23,["H369"]],[23,26,["H2403"]],[26,28,["H3063"]],[28,32,["H3808"]],[32,34,["H4672"]],[34,35,["H3588"]],[35,38,["H5545"]],[38,40,["H834"]],[40,42,["H7604"]]]},{"k":20187,"v":[[0,2,["H5927"]],[2,3,["H5921"]],[3,5,["H776"]],[5,7,["H4850"]],[7,9,["H5921"]],[9,12,["H413"]],[12,14,["H3427"]],[14,16,["H6489"]],[16,17,["H2717"]],[17,20,["H2763"]],[20,21,["H310"]],[21,23,["H5002"]],[23,25,["H3068"]],[25,27,["H6213"]],[27,30,["H3605"]],[30,31,["H834"]],[31,34,["H6680"]],[34,35,[]]]},{"k":20188,"v":[[0,2,["H6963"]],[2,4,["H4421"]],[4,8,["H776"]],[8,11,["H1419"]],[11,12,["H7667"]]]},{"k":20189,"v":[[0,1,["H349"]],[1,4,["H6360"]],[4,7,["H3605"]],[7,8,["H776"]],[8,10,["H1438"]],[10,12,["H7665"]],[12,13,["H349"]],[13,15,["H894"]],[15,16,["H1961"]],[16,18,["H8047"]],[18,21,["H1471"]]]},{"k":20190,"v":[[0,5,["H3369"]],[5,11,["H1571"]],[11,12,["H3920"]],[12,14,["H894"]],[14,16,["H859"]],[16,18,["H3808"]],[18,19,["H3045"]],[19,22,["H4672"]],[22,24,["H1571"]],[24,25,["H8610"]],[25,26,["H3588"]],[26,29,["H1624"]],[29,32,["H3068"]]]},{"k":20191,"v":[[0,2,["H3068"]],[2,4,["H6605","(H853)"]],[4,6,["H214"]],[6,10,["H3318","(H853)"]],[10,12,["H3627"]],[12,15,["H2195"]],[15,16,["H3588"]],[16,17,["H1931"]],[17,20,["H4399"]],[20,23,["H136"]],[23,24,["H3069"]],[24,26,["H6635"]],[26,29,["H776"]],[29,32,["H3778"]]]},{"k":20192,"v":[[0,1,["H935"]],[1,7,["H4480","H7093"]],[7,8,["H6605"]],[8,10,["H3965"]],[10,13,["H5549"]],[13,15,["H6194"]],[15,17,["H2763"]],[17,21,["H408"]],[21,24,["H1961"]],[24,25,["H7611"]]]},{"k":20193,"v":[[0,1,["H2717"]],[1,2,["H3605"]],[2,4,["H6499"]],[4,8,["H3381"]],[8,11,["H2874"]],[11,12,["H1945"]],[12,13,["H5921"]],[13,15,["H3588"]],[15,17,["H3117"]],[17,19,["H935"]],[19,21,["H6256"]],[21,24,["H6486"]]]},{"k":20194,"v":[[0,2,["H6963"]],[2,6,["H5127"]],[6,8,["H6412"]],[8,12,["H4480","H776"]],[12,14,["H894"]],[14,16,["H5046"]],[16,18,["H6726","(H853)"]],[18,20,["H5360"]],[20,23,["H3068"]],[23,25,["H430"]],[25,27,["H5360"]],[27,30,["H1964"]]]},{"k":20195,"v":[[0,2,["H8085"]],[2,4,["H7228"]],[4,5,["H413"]],[5,6,["H894"]],[6,7,["H3605"]],[7,10,["H1869"]],[10,12,["H7198"]],[12,13,["H2583"]],[13,14,["H5921"]],[14,17,["H5439"]],[17,18,["H1961"]],[18,19,["H408"]],[19,21,["H6413"]],[21,22,["H7999"]],[22,27,["H6467"]],[27,30,["H3605"]],[30,31,["H834"]],[31,34,["H6213"]],[34,35,["H6213"]],[35,38,["H3588"]],[38,42,["H2102"]],[42,43,["H413"]],[43,45,["H3068"]],[45,46,["H413"]],[46,49,["H6918"]],[49,51,["H3478"]]]},{"k":20196,"v":[[0,1,["H3651"]],[1,5,["H970"]],[5,6,["H5307"]],[6,9,["H7339"]],[9,11,["H3605"]],[11,13,["H376"]],[13,15,["H4421"]],[15,19,["H1826"]],[19,21,["H1931"]],[21,22,["H3117"]],[22,23,["H5002"]],[23,25,["H3068"]]]},{"k":20197,"v":[[0,1,["H2009"]],[1,4,["H413"]],[4,9,["H2087"]],[9,10,["H5002"]],[10,12,["H136"]],[12,13,["H3069"]],[13,15,["H6635"]],[15,16,["H3588"]],[16,18,["H3117"]],[18,20,["H935"]],[20,22,["H6256"]],[22,26,["H6485"]],[26,27,[]]]},{"k":20198,"v":[[0,4,["H2087"]],[4,6,["H3782"]],[6,8,["H5307"]],[8,10,["H369"]],[10,14,["H6965"]],[14,18,["H3341"]],[18,20,["H784"]],[20,23,["H5892"]],[23,27,["H398"]],[27,28,["H3605"]],[28,30,["H5439"]],[30,31,[]]]},{"k":20199,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,13,["H1121"]],[13,15,["H3063"]],[15,17,["H6231"]],[17,18,["H3162"]],[18,20,["H3605"]],[20,24,["H7617"]],[24,27,["H2388"]],[27,29,["H3985"]],[29,33,["H7971"]]]},{"k":20200,"v":[[0,2,["H1350"]],[2,4,["H2389"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,11,["H8034"]],[11,15,["H7378","H7378","(H853)"]],[15,17,["H7379"]],[17,18,["H4616"]],[18,22,["H7280","(H853)"]],[22,25,["H776"]],[25,27,["H7264"]],[27,29,["H3427"]],[29,31,["H894"]]]},{"k":20201,"v":[[0,2,["H2719"]],[2,4,["H5921"]],[4,6,["H3778"]],[6,7,["H5002"]],[7,9,["H3068"]],[9,11,["H413"]],[11,13,["H3427"]],[13,15,["H894"]],[15,17,["H413"]],[17,19,["H8269"]],[19,21,["H413"]],[21,23,["H2450"]],[23,24,[]]]},{"k":20202,"v":[[0,2,["H2719"]],[2,4,["H413"]],[4,6,["H907"]],[6,10,["H2973"]],[10,12,["H2719"]],[12,14,["H413"]],[14,17,["H1368"]],[17,22,["H2865"]]]},{"k":20203,"v":[[0,2,["H2719"]],[2,4,["H413"]],[4,6,["H5483"]],[6,8,["H413"]],[8,10,["H7393"]],[10,12,["H413"]],[12,13,["H3605"]],[13,16,["H6154"]],[16,17,["H834"]],[17,21,["H8432"]],[21,27,["H1961"]],[27,29,["H802"]],[29,31,["H2719"]],[31,33,["H413"]],[33,35,["H214"]],[35,40,["H962"]]]},{"k":20204,"v":[[0,2,["H2721"]],[2,4,["H413"]],[4,6,["H4325"]],[6,12,["H3001"]],[12,13,["H3588"]],[13,17,["H776"]],[17,20,["H6456"]],[20,22,["H1931"]],[22,24,["H1984"]],[24,27,["H367"]]]},{"k":20205,"v":[[0,1,["H3651"]],[1,7,["H6728"]],[7,8,["H854"]],[8,14,["H338"]],[14,16,["H3427"]],[16,20,["H1323","H3284"]],[20,22,["H3427"]],[22,28,["H3808"]],[28,29,["H5750"]],[29,30,["H3427"]],[30,32,["H5331"]],[32,33,["H3808"]],[33,38,["H7931"]],[38,39,["H5704"]],[39,40,["H1755"]],[40,42,["H1755"]]]},{"k":20206,"v":[[0,2,["H430"]],[2,3,["H4114","(H853)"]],[3,4,["H5467"]],[4,6,["H6017"]],[6,9,["H7934"]],[9,12,["H5002"]],[12,14,["H3068"]],[14,17,["H3808"]],[17,18,["H376"]],[18,19,["H3427"]],[19,20,["H8033"]],[20,21,["H3808"]],[21,24,["H1121"]],[24,26,["H120"]],[26,27,["H1481"]],[27,28,[]]]},{"k":20207,"v":[[0,1,["H2009"]],[1,3,["H5971"]],[3,5,["H935"]],[5,8,["H4480","H6828"]],[8,11,["H1419"]],[11,12,["H1471"]],[12,14,["H7227"]],[14,15,["H4428"]],[15,19,["H5782"]],[19,22,["H4480","H3411"]],[22,25,["H776"]]]},{"k":20208,"v":[[0,3,["H2388"]],[3,5,["H7198"]],[5,8,["H3591"]],[8,9,["H1992"]],[9,11,["H394"]],[11,14,["H3808"]],[14,16,["H7355"]],[16,18,["H6963"]],[18,20,["H1993"]],[20,23,["H3220"]],[23,27,["H7392"]],[27,28,["H5921"]],[28,29,["H5483"]],[29,34,["H6186"]],[34,37,["H376"]],[37,40,["H4421"]],[40,41,["H5921"]],[41,44,["H1323"]],[44,46,["H894"]]]},{"k":20209,"v":[[0,2,["H4428"]],[2,4,["H894"]],[4,6,["H8085","(H853)"]],[6,8,["H8088"]],[8,13,["H3027"]],[13,15,["H7503"]],[15,16,["H6869"]],[16,18,["H2388"]],[18,22,["H2427"]],[22,28,["H3205"]]]},{"k":20210,"v":[[0,1,["H2009"]],[1,5,["H5927"]],[5,8,["H738"]],[8,11,["H4480","H1347"]],[11,13,["H3383"]],[13,14,["H413"]],[14,16,["H5116"]],[16,19,["H386"]],[19,20,["H3588"]],[20,25,["H7280"]],[25,27,["H7323"]],[27,28,["H4480","H5921"]],[28,31,["H4310"]],[31,34,["H977"]],[34,39,["H6485"]],[39,40,["H413"]],[40,42,["H3588"]],[42,43,["H4310"]],[43,46,["H3644"]],[46,48,["H4310"]],[48,53,["H3259"]],[53,55,["H4310"]],[55,57,["H2088"]],[57,58,["H7462"]],[58,59,["H834"]],[59,61,["H5975"]],[61,62,["H6440"]],[62,63,[]]]},{"k":20211,"v":[[0,1,["H3651"]],[1,2,["H8085"]],[2,5,["H6098"]],[5,8,["H3068"]],[8,9,["H834"]],[9,12,["H3289"]],[12,13,["H413"]],[13,14,["H894"]],[14,17,["H4284"]],[17,18,["H834"]],[18,21,["H2803"]],[21,22,["H413"]],[22,24,["H776"]],[24,27,["H3778"]],[27,28,["H518","H3808"]],[28,30,["H6810"]],[30,33,["H6629"]],[33,37,["H5498"]],[37,38,["H518","H3808"]],[38,43,["H5116"]],[43,44,["H8074"]],[44,45,["H5921"]],[45,46,[]]]},{"k":20212,"v":[[0,3,["H4480","H6963"]],[3,6,["H8610"]],[6,8,["H894"]],[8,10,["H776"]],[10,12,["H7493"]],[12,15,["H2201"]],[15,17,["H8085"]],[17,20,["H1471"]]]},{"k":20213,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H2009"]],[5,9,["H5782"]],[9,10,["H5921"]],[10,11,["H894"]],[11,13,["H413"]],[13,16,["H3427"]],[16,19,["H3820"]],[19,24,["H6965"]],[24,28,["H7843"]],[28,29,["H7307"]]]},{"k":20214,"v":[[0,3,["H7971"]],[3,5,["H894"]],[5,6,["H2114"]],[6,9,["H2219"]],[9,13,["H1238","(H853)"]],[13,15,["H776"]],[15,16,["H3588"]],[16,19,["H3117"]],[19,21,["H7451"]],[21,24,["H1961"]],[24,25,["H5921"]],[25,28,["H4480","H5439"]]]},{"k":20215,"v":[[0,1,["H413"]],[1,4,["H1869"]],[4,7,["H1869"]],[7,8,["H1869"]],[8,10,["H7198"]],[10,12,["H413"]],[12,17,["H5927"]],[17,20,["H5630"]],[20,22,["H2550"]],[22,24,["H408"]],[24,27,["H970"]],[27,30,["H2763"]],[30,31,["H3605"]],[31,33,["H6635"]]]},{"k":20216,"v":[[0,3,["H2491"]],[3,5,["H5307"]],[5,8,["H776"]],[8,11,["H3778"]],[11,17,["H1856"]],[17,20,["H2351"]]]},{"k":20217,"v":[[0,1,["H3588"]],[1,2,["H3478"]],[2,4,["H3808"]],[4,6,["H488"]],[6,8,["H3063"]],[8,11,["H4480","H430"]],[11,14,["H4480","H3068"]],[14,16,["H6635"]],[16,17,["H3588"]],[17,19,["H776"]],[19,21,["H4390"]],[21,23,["H817"]],[23,27,["H4480","H6918"]],[27,29,["H3478"]]]},{"k":20218,"v":[[0,1,["H5127"]],[1,5,["H4480","H8432"]],[5,7,["H894"]],[7,9,["H4422"]],[9,11,["H376"]],[11,13,["H5315"]],[13,15,["H408"]],[15,17,["H1826"]],[17,20,["H5771"]],[20,21,["H3588"]],[21,22,["H1931"]],[22,25,["H6256"]],[25,28,["H3068"]],[28,29,["H5360"]],[29,32,["H7999"]],[32,36,["H1576"]]]},{"k":20219,"v":[[0,1,["H894"]],[1,5,["H2091"]],[5,6,["H3563"]],[6,9,["H3068"]],[9,10,["H3027"]],[10,13,["H3605"]],[13,15,["H776"]],[15,16,["H7937"]],[16,18,["H1471"]],[18,20,["H8354"]],[20,23,["H4480","H3196"]],[23,24,["H5921","H3651"]],[24,26,["H1471"]],[26,28,["H1984"]]]},{"k":20220,"v":[[0,1,["H894"]],[1,3,["H6597"]],[3,4,["H5307"]],[4,6,["H7665"]],[6,7,["H3213"]],[7,8,["H5921"]],[8,10,["H3947"]],[10,11,["H6875"]],[11,14,["H4341"]],[14,17,["H194"]],[17,21,["H7495"]]]},{"k":20221,"v":[[0,4,["H7495","(H853)"]],[4,5,["H894"]],[5,9,["H3808"]],[9,10,["H7495"]],[10,11,["H5800"]],[11,16,["H1980"]],[16,18,["H376"]],[18,22,["H776"]],[22,23,["H3588"]],[23,25,["H4941"]],[25,26,["H5060"]],[26,27,["H413"]],[27,28,["H8064"]],[28,32,["H5375"]],[32,34,["H5704"]],[34,36,["H7834"]]]},{"k":20222,"v":[[0,2,["H3068"]],[2,5,["H3318","(H853)"]],[5,7,["H6666"]],[7,8,["H935"]],[8,12,["H5608"]],[12,14,["H6726","(H853)"]],[14,16,["H4639"]],[16,19,["H3068"]],[19,21,["H430"]]]},{"k":20223,"v":[[0,2,["H1305"]],[2,4,["H2671"]],[4,5,["H4390"]],[5,7,["H7982"]],[7,9,["H3068"]],[9,12,["H5782","(H853)"]],[12,14,["H7307"]],[14,17,["H4428"]],[17,20,["H4074"]],[20,21,["H3588"]],[21,23,["H4209"]],[23,25,["H5921"]],[25,26,["H894"]],[26,28,["H7843"]],[28,30,["H3588"]],[30,31,["H1931"]],[31,34,["H5360"]],[34,37,["H3068"]],[37,39,["H5360"]],[39,42,["H1964"]]]},{"k":20224,"v":[[0,2,["H5375"]],[2,4,["H5251"]],[4,5,["H413"]],[5,7,["H2346"]],[7,9,["H894"]],[9,12,["H4929"]],[12,13,["H2388"]],[13,15,["H6965"]],[15,17,["H8104"]],[17,18,["H3559"]],[18,20,["H693"]],[20,21,["H3588"]],[21,23,["H3068"]],[23,25,["H1571"]],[25,26,["H2161"]],[26,27,["H1571"]],[27,28,["H6213","(H853)"]],[28,30,["H834"]],[30,32,["H1696"]],[32,33,["H413"]],[33,35,["H3427"]],[35,37,["H894"]]]},{"k":20225,"v":[[0,4,["H7931"]],[4,5,["H5921"]],[5,6,["H7227"]],[6,7,["H4325"]],[7,8,["H7227"]],[8,10,["H214"]],[10,12,["H7093"]],[12,14,["H935"]],[14,17,["H520"]],[17,20,["H1215"]]]},{"k":20226,"v":[[0,2,["H3068"]],[2,4,["H6635"]],[4,6,["H7650"]],[6,8,["H5315"]],[8,10,["H3588","H518"]],[10,13,["H4390"]],[13,16,["H120"]],[16,19,["H3218"]],[19,24,["H6030"]],[24,26,["H1959"]],[26,27,["H5921"]],[27,28,[]]]},{"k":20227,"v":[[0,3,["H6213"]],[3,5,["H776"]],[5,8,["H3581"]],[8,11,["H3559"]],[11,13,["H8398"]],[13,16,["H2451"]],[16,20,["H5186"]],[20,22,["H8064"]],[22,25,["H8394"]]]},{"k":20228,"v":[[0,3,["H5414"]],[3,5,["H6963"]],[5,9,["H1995"]],[9,11,["H4325"]],[11,14,["H8064"]],[14,19,["H5387"]],[19,21,["H5927"]],[21,24,["H4480","H7097"]],[24,27,["H776"]],[27,29,["H6213"]],[29,30,["H1300"]],[30,32,["H4306"]],[32,35,["H3318"]],[35,37,["H7307"]],[37,41,["H4480","H214"]]]},{"k":20229,"v":[[0,1,["H3605"]],[1,2,["H120"]],[2,4,["H1197"]],[4,7,["H4480","H1847"]],[7,8,["H3605"]],[8,9,["H6884"]],[9,11,["H3001"]],[11,15,["H4480","H6459"]],[15,16,["H3588"]],[16,19,["H5262"]],[19,21,["H8267"]],[21,25,["H3808"]],[25,26,["H7307"]],[26,28,[]]]},{"k":20230,"v":[[0,1,["H1992"]],[1,3,["H1892"]],[3,5,["H4639"]],[5,7,["H8595"]],[7,10,["H6256"]],[10,13,["H6486"]],[13,16,["H6"]]]},{"k":20231,"v":[[0,2,["H2506"]],[2,4,["H3290"]],[4,6,["H3808"]],[6,8,["H428"]],[8,9,["H3588"]],[9,10,["H1931"]],[10,13,["H3335"]],[13,16,["H3605"]],[16,21,["H7626"]],[21,24,["H5159"]],[24,26,["H3068"]],[26,28,["H6635"]],[28,31,["H8034"]]]},{"k":20232,"v":[[0,1,["H859"]],[1,5,["H4661"]],[5,7,["H3627"]],[7,9,["H4421"]],[9,17,["H5310"]],[17,19,["H1471"]],[19,25,["H7843"]],[25,26,["H4467"]]]},{"k":20233,"v":[[0,8,["H5310"]],[8,10,["H5483"]],[10,13,["H7392"]],[13,21,["H5310"]],[21,23,["H7393"]],[23,26,["H7392"]]]},{"k":20234,"v":[[0,8,["H5310"]],[8,9,["H376"]],[9,11,["H802"]],[11,19,["H5310"]],[19,20,["H2205"]],[20,22,["H5288"]],[22,30,["H5310"]],[30,33,["H970"]],[33,36,["H1330"]]]},{"k":20235,"v":[[0,6,["H5310"]],[6,10,["H7462"]],[10,13,["H5739"]],[13,21,["H5310"]],[21,23,["H406"]],[23,28,["H6776"]],[28,36,["H5310"]],[36,37,["H6346"]],[37,39,["H5461"]]]},{"k":20236,"v":[[0,4,["H7999"]],[4,6,["H894"]],[6,9,["H3605"]],[9,11,["H3427"]],[11,13,["H3778","(H853)"]],[13,14,["H3605"]],[14,16,["H7451"]],[16,17,["H834"]],[17,20,["H6213"]],[20,22,["H6726"]],[22,25,["H5869"]],[25,26,["H5002"]],[26,28,["H3068"]]]},{"k":20237,"v":[[0,1,["H2009"]],[1,4,["H413"]],[4,7,["H4889"]],[7,8,["H2022"]],[8,9,["H5002"]],[9,11,["H3068"]],[11,13,["H7843","(H853)"]],[13,14,["H3605"]],[14,16,["H776"]],[16,21,["H5186","(H853)"]],[21,23,["H3027"]],[23,24,["H5921"]],[24,29,["H1556"]],[29,30,["H4480"]],[30,32,["H5553"]],[32,35,["H5414"]],[35,38,["H8316"]],[38,39,["H2022"]]]},{"k":20238,"v":[[0,4,["H3808"]],[4,5,["H3947"]],[5,6,["H4480"]],[6,9,["H68"]],[9,12,["H6438"]],[12,15,["H68"]],[15,17,["H4146"]],[17,18,["H3588"]],[18,21,["H1961"]],[21,22,["H8077"]],[22,24,["H5769"]],[24,25,["H5002"]],[25,27,["H3068"]]]},{"k":20239,"v":[[0,3,["H5375"]],[3,5,["H5251"]],[5,8,["H776"]],[8,9,["H8628"]],[9,11,["H7782"]],[11,14,["H1471"]],[14,15,["H6942"]],[15,17,["H1471"]],[17,18,["H5921"]],[18,21,["H8085"]],[21,22,["H5921"]],[22,25,["H4467"]],[25,27,["H780"]],[27,28,["H4508"]],[28,30,["H813"]],[30,31,["H6485"]],[31,33,["H2951"]],[33,34,["H5921"]],[34,38,["H5483"]],[38,41,["H5927"]],[41,44,["H5569"]],[44,45,["H3218"]]]},{"k":20240,"v":[[0,1,["H6942"]],[1,2,["H5921"]],[2,5,["H1471"]],[5,6,["(H853)"]],[6,8,["H4428"]],[8,11,["H4074","(H853)"]],[11,13,["H6346"]],[13,16,["H3605"]],[16,18,["H5461"]],[18,21,["H3605"]],[21,23,["H776"]],[23,26,["H4475"]]]},{"k":20241,"v":[[0,3,["H776"]],[3,5,["H7493"]],[5,7,["H2342"]],[7,8,["H3588"]],[8,10,["H4284"]],[10,13,["H3068"]],[13,16,["H6965"]],[16,17,["H5921"]],[17,18,["H894"]],[18,20,["H7760","(H853)"]],[20,22,["H776"]],[22,24,["H894"]],[24,26,["H8047"]],[26,27,["H4480","H369"]],[27,29,["H3427"]]]},{"k":20242,"v":[[0,3,["H1368"]],[3,5,["H894"]],[5,7,["H2308"]],[7,9,["H3898"]],[9,12,["H3427"]],[12,15,["H4679"]],[15,17,["H1369"]],[17,19,["H5405"]],[19,21,["H1961"]],[21,23,["H802"]],[23,26,["H3341"]],[26,28,["H4908"]],[28,30,["H1280"]],[30,32,["H7665"]]]},{"k":20243,"v":[[0,2,["H7323"]],[2,4,["H7323"]],[4,6,["H7125"]],[6,7,["H7323"]],[7,10,["H5046"]],[10,12,["H7125"]],[12,13,["H5046"]],[13,15,["H5046"]],[15,17,["H4428"]],[17,19,["H894"]],[19,20,["H3588"]],[20,22,["H5892"]],[22,24,["H3920"]],[24,27,["H4480","H7097"]]]},{"k":20244,"v":[[0,4,["H4569"]],[4,6,["H8610"]],[6,9,["H98"]],[9,12,["H8313"]],[12,14,["H784"]],[14,17,["H376"]],[17,19,["H4421"]],[19,21,["H926"]]]},{"k":20245,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,9,["H430"]],[9,11,["H3478"]],[11,13,["H1323"]],[13,15,["H894"]],[15,19,["H1637"]],[19,22,["H6256"]],[22,24,["H1869"]],[24,26,["H5750"]],[26,29,["H4592"]],[29,32,["H6256"]],[32,35,["H7105"]],[35,37,["H935"]]]},{"k":20246,"v":[[0,1,["H5019"]],[1,3,["H4428"]],[3,5,["H894"]],[5,7,["H398"]],[7,11,["H2000"]],[11,15,["H3322"]],[15,18,["H7385"]],[18,19,["H3627"]],[19,24,["H1104"]],[24,27,["H8577"]],[27,30,["H4390"]],[30,32,["H3770"]],[32,35,["H4480","H5730"]],[35,40,["H1740"]]]},{"k":20247,"v":[[0,2,["H2555"]],[2,9,["H7607"]],[9,11,["H5921"]],[11,12,["H894"]],[12,15,["H3427"]],[15,17,["H6726"]],[17,18,["H559"]],[18,21,["H1818"]],[21,22,["H413"]],[22,24,["H3427"]],[24,26,["H3778"]],[26,28,["H3389"]],[28,29,["H559"]]]},{"k":20248,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,9,["H7378","(H853)"]],[9,11,["H7379"]],[11,16,["H5358","(H853)","H5360"]],[16,21,["H2717","(H853)"]],[21,23,["H3220"]],[23,25,["(H853)"]],[25,27,["H4726"]],[27,28,["H3001"]]]},{"k":20249,"v":[[0,2,["H894"]],[2,4,["H1961"]],[4,5,["H1530"]],[5,7,["H4583"]],[7,9,["H8577"]],[9,11,["H8047"]],[11,14,["H8322"]],[14,15,["H4480","H369"]],[15,17,["H3427"]]]},{"k":20250,"v":[[0,3,["H7580"]],[3,4,["H3162"]],[4,6,["H3715"]],[6,9,["H5286"]],[9,11,["H738"]],[11,12,["H1484"]]]},{"k":20251,"v":[[0,3,["H2527"]],[3,6,["H7896","(H853)"]],[6,8,["H4960"]],[8,14,["H7937"]],[14,15,["H4616"]],[15,18,["H5937"]],[18,20,["H3462"]],[20,22,["H5769"]],[22,23,["H8142"]],[23,25,["H3808"]],[25,26,["H6974"]],[26,27,["H5002"]],[27,29,["H3068"]]]},{"k":20252,"v":[[0,5,["H3381"]],[5,7,["H3733"]],[7,10,["H2873"]],[10,12,["H352"]],[12,13,["H5973"]],[13,15,["H6260"]]]},{"k":20253,"v":[[0,1,["H349"]],[1,3,["H8347"]],[3,4,["H3920"]],[4,9,["H8416"]],[9,12,["H3605"]],[12,13,["H776"]],[13,14,["H8610"]],[14,15,["H349"]],[15,17,["H894"]],[17,18,["H1961"]],[18,20,["H8047"]],[20,23,["H1471"]]]},{"k":20254,"v":[[0,2,["H3220"]],[2,5,["H5927"]],[5,6,["H5921"]],[6,7,["H894"]],[7,10,["H3680"]],[10,13,["H1995"]],[13,16,["H1530"]],[16,17,[]]]},{"k":20255,"v":[[0,2,["H5892"]],[2,3,["H1961"]],[3,5,["H8047"]],[5,7,["H6723"]],[7,8,["H776"]],[8,11,["H6160"]],[11,13,["H776"]],[13,14,["H2004"]],[14,15,["H3605","H3808"]],[15,16,["H376"]],[16,17,["H3427"]],[17,18,["H3808"]],[18,21,["H1121"]],[21,23,["H120"]],[23,24,["H5674"]],[24,25,["H2004"]]]},{"k":20256,"v":[[0,4,["H6485","H5921"]],[4,5,["H1078"]],[5,7,["H894"]],[7,12,["H3318"]],[12,16,["H4480","H6310","(H853)"]],[16,22,["H1105"]],[22,25,["H1471"]],[25,27,["H3808"]],[27,29,["H5102"]],[29,31,["H5750"]],[31,32,["H413"]],[32,34,["H1571"]],[34,36,["H2346"]],[36,38,["H894"]],[38,40,["H5307"]]]},{"k":20257,"v":[[0,2,["H5971"]],[2,3,["H3318"]],[3,8,["H4480","H8432"]],[8,12,["H4422"]],[12,15,["H376","(H853)"]],[15,17,["H5315"]],[17,20,["H4480","H2740"]],[20,21,["H639"]],[21,24,["H3068"]]]},{"k":20258,"v":[[0,2,["H6435"]],[2,4,["H3824"]],[4,5,["H7401"]],[5,8,["H3372"]],[8,11,["H8052"]],[11,15,["H8085"]],[15,18,["H776"]],[18,20,["H8052"]],[20,23,["H935"]],[23,25,["H8141"]],[25,27,["H310"]],[27,31,["H8141"]],[31,35,["H8052"]],[35,37,["H2555"]],[37,40,["H776"]],[40,41,["H4910"]],[41,42,["H5921"]],[42,43,["H4910"]]]},{"k":20259,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,4,["H3117"]],[4,5,["H935"]],[5,10,["H6485"]],[10,11,["H5921"]],[11,14,["H6456"]],[14,16,["H894"]],[16,19,["H3605"]],[19,20,["H776"]],[20,23,["H954"]],[23,25,["H3605"]],[25,27,["H2491"]],[27,29,["H5307"]],[29,32,["H8432"]],[32,34,[]]]},{"k":20260,"v":[[0,3,["H8064"]],[3,6,["H776"]],[6,8,["H3605"]],[8,9,["H834"]],[9,13,["H7442"]],[13,14,["H5921"]],[14,15,["H894"]],[15,16,["H3588"]],[16,18,["H7703"]],[18,20,["H935"]],[20,25,["H4480","H6828"]],[25,26,["H5002"]],[26,28,["H3068"]]]},{"k":20261,"v":[[0,1,["H1571"]],[1,2,["H894"]],[2,6,["H2491"]],[6,8,["H3478"]],[8,10,["H5307"]],[10,11,["H1571"]],[11,13,["H894"]],[13,15,["H5307"]],[15,17,["H2491"]],[17,19,["H3605"]],[19,21,["H776"]]]},{"k":20262,"v":[[0,4,["H6412"]],[4,6,["H4480","H2719"]],[6,8,["H1980"]],[8,11,["H408","H5975"]],[11,12,["H2142","(H853)"]],[12,14,["H3068"]],[14,16,["H7350"]],[16,19,["H3389"]],[19,20,["H5927"]],[20,21,["H5921"]],[21,23,["H3824"]]]},{"k":20263,"v":[[0,3,["H954"]],[3,4,["H3588"]],[4,7,["H8085"]],[7,8,["H2781"]],[8,9,["H3639"]],[9,11,["H3680"]],[11,13,["H6440"]],[13,14,["H3588"]],[14,15,["H2114"]],[15,17,["H935"]],[17,18,["H5921"]],[18,20,["H4720"]],[20,23,["H3068"]],[23,24,["H1004"]]]},{"k":20264,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,4,["H3117"]],[4,5,["H935"]],[5,6,["H5002"]],[6,8,["H3068"]],[8,13,["H6485"]],[13,14,["H5921"]],[14,17,["H6456"]],[17,20,["H3605"]],[20,22,["H776"]],[22,24,["H2491"]],[24,26,["H602"]]]},{"k":20265,"v":[[0,1,["H3588"]],[1,2,["H894"]],[2,5,["H5927"]],[5,7,["H8064"]],[7,9,["H3588"]],[9,12,["H1219"]],[12,14,["H4791"]],[14,17,["H5797"]],[17,19,["H4480","H854"]],[19,22,["H7703"]],[22,23,["H935"]],[23,26,["H5002"]],[26,28,["H3068"]]]},{"k":20266,"v":[[0,2,["H6963"]],[2,5,["H2201"]],[5,8,["H4480","H894"]],[8,10,["H1419"]],[10,11,["H7667"]],[11,14,["H4480","H776"]],[14,17,["H3778"]]]},{"k":20267,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H7703","(H853)"]],[5,6,["H894"]],[6,8,["H6"]],[8,10,["H4480"]],[10,13,["H1419"]],[13,14,["H6963"]],[14,17,["H1530"]],[17,19,["H1993"]],[19,21,["H7227"]],[21,22,["H4325"]],[22,24,["H7588"]],[24,27,["H6963"]],[27,29,["H5414"]]]},{"k":20268,"v":[[0,1,["H3588"]],[1,3,["H7703"]],[3,5,["H935"]],[5,6,["H5921"]],[6,9,["H5921"]],[9,10,["H894"]],[10,14,["H1368"]],[14,16,["H3920"]],[16,21,["H7198"]],[21,23,["H2865"]],[23,24,["H3588"]],[24,26,["H3068"]],[26,27,["H410"]],[27,29,["H1578"]],[29,32,["H7999","H7999"]]]},{"k":20269,"v":[[0,5,["H7937"]],[5,7,["H8269"]],[7,10,["H2450"]],[10,13,["H6346"]],[13,16,["H5461"]],[16,20,["H1368"]],[20,24,["H3462"]],[24,26,["H5769"]],[26,27,["H8142"]],[27,29,["H3808"]],[29,30,["H6974"]],[30,31,["H5002"]],[31,33,["H4428"]],[33,35,["H8034"]],[35,38,["H3068"]],[38,40,["H6635"]]]},{"k":20270,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H7342"]],[8,9,["H2346"]],[9,11,["H894"]],[11,15,["H6209","H6209"]],[15,18,["H1364"]],[18,19,["H8179"]],[19,22,["H3341"]],[22,24,["H784"]],[24,27,["H5971"]],[27,29,["H3021"]],[29,31,["H7385"]],[31,34,["H3816"]],[34,37,["H784"]],[37,42,["H3286"]]]},{"k":20271,"v":[[0,2,["H1697"]],[2,3,["H834"]],[3,4,["H3414"]],[4,6,["H5030"]],[6,7,["H6680","(H853)"]],[7,8,["H8304"]],[8,10,["H1121"]],[10,12,["H5374"]],[12,14,["H1121"]],[14,16,["H4271"]],[16,19,["H1980"]],[19,20,["H854"]],[20,21,["H6667"]],[21,23,["H4428"]],[23,25,["H3063"]],[25,27,["H894"]],[27,30,["H7243"]],[30,31,["H8141"]],[31,34,["H4427"]],[34,37,["H8304"]],[37,40,["H4496"]],[40,41,["H8269"]]]},{"k":20272,"v":[[0,2,["H3414"]],[2,3,["H3789"]],[3,4,["H413"]],[4,5,["H259"]],[5,6,["H5612","(H853)"]],[6,7,["H3605"]],[7,9,["H7451"]],[9,10,["H834"]],[10,12,["H935"]],[12,13,["H413"]],[13,14,["H894"]],[14,15,["(H853)"]],[15,16,["H3605"]],[16,17,["H428"]],[17,18,["H1697"]],[18,21,["H3789"]],[21,22,["H413"]],[22,23,["H894"]]]},{"k":20273,"v":[[0,2,["H3414"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H8304"]],[5,8,["H935"]],[8,10,["H894"]],[10,13,["H7200"]],[13,16,["H7121","(H853)"]],[16,17,["H3605"]],[17,18,["H428"]],[18,19,["H1697"]]]},{"k":20274,"v":[[0,4,["H559"]],[4,6,["H3068"]],[6,7,["H859"]],[7,9,["H1696"]],[9,10,["H413"]],[10,11,["H2088"]],[11,12,["H4725"]],[12,16,["H3772"]],[16,18,["H1115"]],[18,19,["H1961"]],[19,20,["H3427"]],[20,24,["H4480","H120"]],[24,25,["H5704"]],[25,26,["H929"]],[26,27,["H3588"]],[27,31,["H1961"]],[31,32,["H8077"]],[32,34,["H5769"]]]},{"k":20275,"v":[[0,4,["H1961"]],[4,10,["H3615"]],[10,12,["H7121","(H853)"]],[12,13,["H2088"]],[13,14,["H5612"]],[14,18,["H7194"]],[18,20,["H68"]],[20,21,["H5921"]],[21,24,["H7993"]],[24,26,["H413"]],[26,28,["H8432"]],[28,30,["H6578"]]]},{"k":20276,"v":[[0,4,["H559"]],[4,5,["H3602"]],[5,7,["H894"]],[7,8,["H8257"]],[8,11,["H3808"]],[11,12,["H6965"]],[12,13,["H4480","H6440"]],[13,15,["H7451"]],[15,16,["H834"]],[16,17,["H595"]],[17,19,["H935"]],[19,20,["H5921"]],[20,26,["H3286"]],[26,27,["H5704"]],[27,28,["H2008"]],[28,31,["H1697"]],[31,33,["H3414"]]]},{"k":20277,"v":[[0,1,["H6667"]],[1,3,["H259"]],[3,5,["H6242"]],[5,6,["H8141"]],[6,7,["H1121"]],[7,12,["H4427"]],[12,15,["H4427"]],[15,16,["H6259","H6240"]],[16,17,["H8141"]],[17,19,["H3389"]],[19,22,["H517"]],[22,23,["H8034"]],[23,25,["H2537"]],[25,27,["H1323"]],[27,29,["H3414"]],[29,31,["H4480","H3841"]]]},{"k":20278,"v":[[0,3,["H6213"]],[3,7,["H7451"]],[7,10,["H5869"]],[10,13,["H3068"]],[13,16,["H3605"]],[16,17,["H834"]],[17,18,["H3079"]],[18,20,["H6213"]]]},{"k":20279,"v":[[0,1,["H3588"]],[1,2,["H5921"]],[2,4,["H639"]],[4,7,["H3068"]],[7,11,["H1961"]],[11,13,["H3389"]],[13,15,["H3063"]],[15,16,["H5704"]],[16,21,["H7993","(H853)"]],[21,22,["H4480","H5921"]],[22,24,["H6440"]],[24,26,["H6667"]],[26,27,["H4775"]],[27,30,["H4428"]],[30,32,["H894"]]]},{"k":20280,"v":[[0,5,["H1961"]],[5,8,["H8671"]],[8,9,["H8141"]],[9,12,["H4427"]],[12,15,["H6224"]],[15,16,["H2320"]],[16,19,["H6218"]],[19,23,["H2320"]],[23,25,["H5019"]],[25,26,["H4428"]],[26,28,["H894"]],[28,29,["H935"]],[29,30,["H1931"]],[30,32,["H3605"]],[32,34,["H2428"]],[34,35,["H5921"]],[35,36,["H3389"]],[36,38,["H2583"]],[38,39,["H5921"]],[39,42,["H1129"]],[42,43,["H1785"]],[43,44,["H5921"]],[44,47,["H5439"]]]},{"k":20281,"v":[[0,3,["H5892"]],[3,5,["H935","H4692"]],[5,6,["H5704"]],[6,8,["H6249","H6240"]],[8,9,["H8141"]],[9,11,["H4428"]],[11,12,["H6667"]]]},{"k":20282,"v":[[0,4,["H7243"]],[4,5,["H2320"]],[5,8,["H8672"]],[8,12,["H2320"]],[12,14,["H7458"]],[14,16,["H2388"]],[16,19,["H5892"]],[19,23,["H1961"]],[23,24,["H3808"]],[24,25,["H3899"]],[25,28,["H5971"]],[28,31,["H776"]]]},{"k":20283,"v":[[0,3,["H5892"]],[3,6,["H1234"]],[6,8,["H3605"]],[8,10,["H376"]],[10,12,["H4421"]],[12,13,["H1272"]],[13,16,["H3318"]],[16,20,["H4480","H5892"]],[20,22,["H3915"]],[22,25,["H1870"]],[25,28,["H8179"]],[28,29,["H996"]],[29,32,["H2346"]],[32,33,["H834"]],[33,35,["H5921"]],[35,37,["H4428"]],[37,38,["H1588"]],[38,41,["H3778"]],[41,43,["H5921"]],[43,45,["H5892"]],[45,47,["H5439"]],[47,50,["H1980"]],[50,53,["H1870"]],[53,56,["H6160"]]]},{"k":20284,"v":[[0,3,["H2428"]],[3,6,["H3778"]],[6,7,["H7291"]],[7,8,["H310"]],[8,10,["H4428"]],[10,12,["H5381","(H853)"]],[12,13,["H6667"]],[13,16,["H6160"]],[16,18,["H3405"]],[18,20,["H3605"]],[20,22,["H2428"]],[22,24,["H6327"]],[24,25,["H4480","H5921"]],[25,26,[]]]},{"k":20285,"v":[[0,3,["H8610","(H853)"]],[3,5,["H4428"]],[5,9,["H5927"]],[9,10,["H413"]],[10,12,["H4428"]],[12,14,["H894"]],[14,16,["H7247"]],[16,19,["H776"]],[19,21,["H2574"]],[21,24,["H1696"]],[24,25,["H4941"]],[25,26,["H854"]],[26,27,[]]]},{"k":20286,"v":[[0,3,["H4428"]],[3,5,["H894"]],[5,6,["H7819","(H853)"]],[6,8,["H1121"]],[8,10,["H6667"]],[10,13,["H5869"]],[13,15,["H7819"]],[15,16,["H1571","(H853)"]],[16,17,["H3605"]],[17,19,["H8269"]],[19,21,["H3063"]],[21,23,["H7247"]]]},{"k":20287,"v":[[0,4,["H5786"]],[4,6,["H5869"]],[6,8,["H6667"]],[8,11,["H4428"]],[11,13,["H894"]],[13,14,["H631"]],[14,17,["H5178"]],[17,19,["H935"]],[19,22,["H894"]],[22,24,["H5414"]],[24,27,["H1004","H6486"]],[27,28,["H5704"]],[28,30,["H3117"]],[30,33,["H4194"]]]},{"k":20288,"v":[[0,4,["H2549"]],[4,5,["H2320"]],[5,8,["H6218"]],[8,12,["H2320"]],[12,13,["H1931"]],[13,16,["H8672","H6240"]],[16,17,["H8141"]],[17,19,["H5019"]],[19,20,["H4428"]],[20,22,["H894"]],[22,23,["H935"]],[23,24,["H5018"]],[24,25,["H7227"]],[25,28,["H2876"]],[28,30,["H5975","H6440"]],[30,32,["H4428"]],[32,34,["H894"]],[34,36,["H3389"]]]},{"k":20289,"v":[[0,2,["H8313","(H853)"]],[2,4,["H1004"]],[4,7,["H3068"]],[7,10,["H4428"]],[10,11,["H1004"]],[11,13,["H3605"]],[13,15,["H1004"]],[15,17,["H3389"]],[17,19,["H3605"]],[19,21,["H1004"]],[21,24,["H1419"]],[24,26,["H8313"]],[26,29,["H784"]]]},{"k":20290,"v":[[0,2,["H3605"]],[2,4,["H2428"]],[4,7,["H3778"]],[7,8,["H834"]],[8,10,["H854"]],[10,12,["H7227"]],[12,15,["H2876"]],[15,17,["H5422"]],[17,18,["H3605"]],[18,20,["H2346"]],[20,22,["H3389"]],[22,24,["H5439"]]]},{"k":20291,"v":[[0,2,["H5018"]],[2,4,["H7227"]],[4,7,["H2876"]],[7,10,["H1540"]],[10,14,["H4480","H1803"]],[14,17,["H5971"]],[17,20,["H3499"]],[20,23,["H5971"]],[23,25,["H7604"]],[25,28,["H5892"]],[28,33,["H5307"]],[33,34,["H834"]],[34,35,["H5307"]],[35,36,["H413"]],[36,38,["H4428"]],[38,40,["H894"]],[40,43,["H3499"]],[43,46,["H527"]]]},{"k":20292,"v":[[0,2,["H5018"]],[2,4,["H7227"]],[4,7,["H2876"]],[7,8,["H7604"]],[8,12,["H4480","H1803"]],[12,15,["H776"]],[15,17,["H3755"]],[17,20,["H3009"]]]},{"k":20293,"v":[[0,3,["H5982"]],[3,5,["H5178"]],[5,6,["H834"]],[6,10,["H1004"]],[10,13,["H3068"]],[13,16,["H4350"]],[16,19,["H5178"]],[19,20,["H3220"]],[20,21,["H834"]],[21,25,["H1004"]],[25,28,["H3068"]],[28,30,["H3778"]],[30,31,["H7665"]],[31,33,["H5375","(H853)"]],[33,34,["H3605"]],[34,36,["H5178"]],[36,40,["H894"]]]},{"k":20294,"v":[[0,2,["H5518"]],[2,6,["H3257"]],[6,9,["H4212"]],[9,12,["H4219"]],[12,15,["H3709"]],[15,17,["H3605"]],[17,19,["H3627"]],[19,21,["H5178"]],[21,22,["H834"]],[22,24,["H8334"]],[24,27,["H3947"]]]},{"k":20295,"v":[[0,3,["H5592"]],[3,6,["H4289"]],[6,9,["H4219"]],[9,12,["H5518"]],[12,15,["H4501"]],[15,18,["H3709"]],[18,21,["H4518"]],[21,23,["H834"]],[23,26,["H2091"]],[26,28,["H2091"]],[28,31,["H834"]],[31,34,["H3701"]],[34,36,["H3701"]],[36,37,["H3947"]],[37,39,["H7227"]],[39,42,["H2876"]],[42,43,[]]]},{"k":20296,"v":[[0,2,["H8147"]],[2,3,["H5982"]],[3,4,["H259"]],[4,5,["H3220"]],[5,7,["H8147","H6240"]],[7,8,["H5178"]],[8,9,["H1241"]],[9,10,["H834"]],[10,12,["H8478"]],[12,14,["H4350"]],[14,15,["H834"]],[15,16,["H4428"]],[16,17,["H8010"]],[17,19,["H6213"]],[19,22,["H1004"]],[22,25,["H3068"]],[25,27,["H5178"]],[27,29,["H3605"]],[29,30,["H428"]],[30,31,["H3627"]],[31,32,["H1961"]],[32,33,["H3808"]],[33,34,["H4948"]]]},{"k":20297,"v":[[0,4,["H5982"]],[4,6,["H6967"]],[6,8,["H259"]],[8,9,["H5982"]],[9,11,["H8083","H6240"]],[11,12,["H520"]],[12,15,["H2339"]],[15,17,["H8147","H6240"]],[17,18,["H520"]],[18,20,["H5437"]],[20,24,["H5672"]],[24,27,["H702"]],[27,28,["H676"]],[28,31,["H5014"]]]},{"k":20298,"v":[[0,3,["H3805"]],[3,5,["H5178"]],[5,7,["H5921"]],[7,11,["H6967"]],[11,13,["H259"]],[13,14,["H3805"]],[14,16,["H2568"]],[16,17,["H520"]],[17,19,["H7639"]],[19,21,["H7416"]],[21,22,["H5921"]],[22,24,["H3805"]],[24,26,["H5439"]],[26,27,["H3605"]],[27,29,["H5178"]],[29,31,["H8145"]],[31,32,["H5982"]],[32,36,["H7416"]],[36,40,["H428"]]]},{"k":20299,"v":[[0,3,["H1961"]],[3,4,["H8673"]],[4,6,["H8337"]],[6,7,["H7416"]],[7,10,["H7307"]],[10,12,["H3605"]],[12,14,["H7416"]],[14,15,["H5921"]],[15,17,["H7639"]],[17,20,["H3967"]],[20,22,["H5439"]]]},{"k":20300,"v":[[0,3,["H7227"]],[3,6,["H2876"]],[6,7,["H3947","(H853)"]],[7,8,["H8304"]],[8,10,["H7218"]],[10,11,["H3548"]],[11,13,["H6846"]],[13,15,["H4932"]],[15,16,["H3548"]],[16,19,["H7969"]],[19,20,["H8104"]],[20,23,["H5592"]]]},{"k":20301,"v":[[0,2,["H3947"]],[2,5,["H4480"]],[5,7,["H5892"]],[7,8,["H259"]],[8,9,["H5631"]],[9,10,["H834"]],[10,11,["H1961"]],[11,13,["H6496"]],[13,14,["H5921"]],[14,16,["H376"]],[16,18,["H4421"]],[18,20,["H7651"]],[20,21,["H376"]],[21,26,["H4480","H7200"]],[26,28,["H4428"]],[28,29,["H6440"]],[29,30,["H834"]],[30,32,["H4672"]],[32,35,["H5892"]],[35,38,["H8269"]],[38,39,["H5608"]],[39,42,["H6635"]],[42,44,["H6633","(H853)"]],[44,46,["H5971"]],[46,49,["H776"]],[49,51,["H8346"]],[51,52,["H376"]],[52,55,["H4480","H5971"]],[55,58,["H776"]],[58,61,["H4672"]],[61,64,["H8432"]],[64,67,["H5892"]]]},{"k":20302,"v":[[0,2,["H5018"]],[2,4,["H7227"]],[4,7,["H2876"]],[7,8,["H3947"]],[8,11,["H1980"]],[11,13,["H413"]],[13,15,["H4428"]],[15,17,["H894"]],[17,19,["H7247"]]]},{"k":20303,"v":[[0,3,["H4428"]],[3,5,["H894"]],[5,6,["H5221"]],[6,12,["H4191"]],[12,14,["H7247"]],[14,17,["H776"]],[17,19,["H2574"]],[19,21,["H3063"]],[21,25,["H1540"]],[25,27,["H4480","H5921"]],[27,30,["H127"]]]},{"k":20304,"v":[[0,1,["H2088"]],[1,4,["H5971"]],[4,5,["H834"]],[5,6,["H5019"]],[6,9,["H1540"]],[9,12,["H7651"]],[12,13,["H8141"]],[13,14,["H7969"]],[14,15,["H505"]],[15,16,["H3064"]],[16,18,["H7969"]],[18,20,["H6242"]]]},{"k":20305,"v":[[0,3,["H8083","H6240"]],[3,4,["H8141"]],[4,6,["H5019"]],[6,10,["H1540"]],[10,12,["H4480","H3389"]],[12,13,["H8083"]],[13,14,["H3967"]],[14,15,["H7970"]],[15,17,["H8147"]],[17,18,["H5315"]]]},{"k":20306,"v":[[0,3,["H7969"]],[3,5,["H6242"]],[5,6,["H8141"]],[6,8,["H5019"]],[8,9,["H5018"]],[9,11,["H7227"]],[11,14,["H2876"]],[14,17,["H1540"]],[17,20,["H3064"]],[20,21,["H7651"]],[21,22,["H3967"]],[22,23,["H705"]],[23,25,["H2568"]],[25,26,["H5315"]],[26,27,["H3605"]],[27,29,["H5315"]],[29,31,["H702"]],[31,32,["H505"]],[32,34,["H8337"]],[34,35,["H3967"]]]},{"k":20307,"v":[[0,5,["H1961"]],[5,8,["H7651"]],[8,10,["H7970"]],[10,11,["H8141"]],[11,14,["H1546"]],[14,16,["H3078"]],[16,17,["H4428"]],[17,19,["H3063"]],[19,22,["H8147","H6240"]],[22,23,["H2320"]],[23,26,["H2568"]],[26,28,["H6242"]],[28,32,["H2320"]],[32,34,["H192"]],[34,35,["H4428"]],[35,37,["H894"]],[37,41,["H8141"]],[41,44,["H4438"]],[44,46,["H5375","(H853)"]],[46,48,["H7218"]],[48,50,["H3078"]],[50,51,["H4428"]],[51,53,["H3063"]],[53,57,["H3318","(H853)"]],[57,60,["H4480","H1004","H3628"]]]},{"k":20308,"v":[[0,2,["H1696"]],[2,3,["H2896"]],[3,4,["H854"]],[4,7,["H5414","(H853)"]],[7,9,["H3678"]],[9,10,["H4480","H4605"]],[10,12,["H3678"]],[12,15,["H4428"]],[15,16,["H834"]],[16,18,["H854"]],[18,21,["H894"]]]},{"k":20309,"v":[[0,2,["H8138","(H853)"]],[2,4,["H3608"]],[4,5,["H899"]],[5,9,["H8548"]],[9,10,["H398"]],[10,11,["H3899"]],[11,12,["H6440"]],[12,14,["H3605"]],[14,16,["H3117"]],[16,19,["H2416"]]]},{"k":20310,"v":[[0,4,["H737"]],[4,8,["H8548"]],[8,9,["H737"]],[9,10,["H5414"]],[10,12,["H4480","H854"]],[12,14,["H4428"]],[14,16,["H894"]],[16,18,["H3117","H3117"]],[18,20,["H1697"]],[20,21,["H5704"]],[21,23,["H3117"]],[23,26,["H4194"]],[26,27,["H3605"]],[27,29,["H3117"]],[29,32,["H2416"]]]},{"k":20311,"v":[[0,1,["H349"]],[1,4,["H5892"]],[4,5,["H3427"]],[5,6,["H910"]],[6,9,["H7227"]],[9,11,["H5971"]],[11,15,["H1961"]],[15,18,["H490"]],[18,22,["H7227"]],[22,25,["H1471"]],[25,27,["H8282"]],[27,30,["H4082"]],[30,34,["H1961"]],[34,35,["H4522"]]]},{"k":20312,"v":[[0,3,["H1058","H1058"]],[3,6,["H3915"]],[6,9,["H1832"]],[9,11,["H5921"]],[11,13,["H3895"]],[13,15,["H4480","H3605"]],[15,17,["H157"]],[17,20,["H369"]],[20,22,["H5162"]],[22,24,["H3605"]],[24,26,["H7453"]],[26,29,["H898"]],[29,34,["H1961"]],[34,36,["H341"]]]},{"k":20313,"v":[[0,1,["H3063"]],[1,5,["H1540"]],[5,8,["H4480","H6040"]],[8,12,["H4480","H7230"]],[12,13,["H5656"]],[13,14,["H1931"]],[14,15,["H3427"]],[15,18,["H1471"]],[18,20,["H4672"]],[20,21,["H3808"]],[21,22,["H4494"]],[22,23,["H3605"]],[23,25,["H7291"]],[25,26,["H5381"]],[26,28,["H996"]],[28,30,["H4712"]]]},{"k":20314,"v":[[0,2,["H1870"]],[2,4,["H6726"]],[4,6,["H57"]],[6,8,["H4480","H1097"]],[8,9,["H935"]],[9,13,["H4150"]],[13,14,["H3605"]],[14,16,["H8179"]],[16,18,["H8074"]],[18,20,["H3548"]],[20,21,["H584"]],[21,23,["H1330"]],[23,25,["H3013"]],[25,27,["H1931"]],[27,30,["H4843"]]]},{"k":20315,"v":[[0,2,["H6862"]],[2,3,["H1961"]],[3,5,["H7218"]],[5,7,["H341"]],[7,8,["H7951"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,13,["H3013"]],[13,15,["H5921"]],[15,17,["H7230"]],[17,20,["H6588"]],[20,22,["H5768"]],[22,24,["H1980"]],[24,26,["H7628"]],[26,27,["H6440"]],[27,29,["H6862"]]]},{"k":20316,"v":[[0,2,["H4480"]],[2,4,["H1323"]],[4,6,["H6726"]],[6,7,["H3605"]],[7,9,["H1926"]],[9,11,["H3318"]],[11,13,["H8269"]],[13,15,["H1961"]],[15,17,["H354"]],[17,19,["H4672"]],[19,20,["H3808"]],[20,21,["H4829"]],[21,25,["H1980"]],[25,26,["H3808"]],[26,27,["H3581"]],[27,28,["H6440"]],[28,30,["H7291"]]]},{"k":20317,"v":[[0,1,["H3389"]],[1,2,["H2142"]],[2,5,["H3117"]],[5,8,["H6040"]],[8,12,["H4788"]],[12,13,["H3605"]],[13,16,["H4262"]],[16,17,["H834"]],[17,19,["H1961"]],[19,22,["H4480","H3117"]],[22,24,["H6924"]],[24,27,["H5971"]],[27,28,["H5307"]],[28,31,["H3027"]],[31,34,["H6862"]],[34,36,["H369"]],[36,38,["H5826"]],[38,41,["H6862"]],[41,42,["H7200"]],[42,46,["H7832"]],[46,47,["H5921"]],[47,49,["H4868"]]]},{"k":20318,"v":[[0,1,["H3389"]],[1,4,["H2398","H2399"]],[4,5,["H5921","H3651"]],[5,7,["H1961"]],[7,8,["H5206"]],[8,9,["H3605"]],[9,11,["H3513"]],[11,13,["H2151"]],[13,15,["H3588"]],[15,18,["H7200"]],[18,20,["H6172"]],[20,21,["H1571"]],[21,22,["H1931"]],[22,23,["H584"]],[23,25,["H7725"]],[25,26,["H268"]]]},{"k":20319,"v":[[0,2,["H2932"]],[2,6,["H7757"]],[6,8,["H2142"]],[8,9,["H3808"]],[9,12,["H319"]],[12,16,["H3381"]],[16,17,["H6382"]],[17,20,["H369"]],[20,21,["H5162"]],[21,23,["H3068"]],[23,24,["H7200","(H853)"]],[24,26,["H6040"]],[26,27,["H3588"]],[27,29,["H341"]],[29,31,["H1431"]],[31,32,[]]]},{"k":20320,"v":[[0,2,["H6862"]],[2,5,["H6566"]],[5,7,["H3027"]],[7,8,["H5921"]],[8,9,["H3605"]],[9,12,["H4261"]],[12,13,["H3588"]],[13,16,["H7200"]],[16,19,["H1471"]],[19,20,["H935"]],[20,23,["H4720"]],[23,24,["H834"]],[24,27,["H6680"]],[27,31,["H3808"]],[31,32,["H935"]],[32,35,["H6951"]]]},{"k":20321,"v":[[0,1,["H3605"]],[1,3,["H5971"]],[3,4,["H584"]],[4,6,["H1245"]],[6,7,["H3899"]],[7,10,["H5414"]],[10,13,["H4262"]],[13,15,["H400"]],[15,17,["H7725"]],[17,19,["H5315"]],[19,20,["H7200"]],[20,22,["H3068"]],[22,24,["H5027"]],[24,25,["H3588"]],[25,28,["H1961"]],[28,29,["H2151"]]]},{"k":20322,"v":[[0,3,["H3808"]],[3,4,["H413"]],[4,6,["H3605"]],[6,10,["H5674","H1870"]],[10,11,["H5027"]],[11,13,["H7200"]],[13,14,["H518"]],[14,16,["H3426"]],[16,18,["H4341"]],[18,22,["H4341"]],[22,23,["H834"]],[23,25,["H5953"]],[25,28,["H834"]],[28,30,["H3068"]],[30,32,["H3013"]],[32,36,["H3117"]],[36,39,["H2740"]],[39,40,["H639"]]]},{"k":20323,"v":[[0,2,["H4480","H4791"]],[2,5,["H7971"]],[5,6,["H784"]],[6,9,["H6106"]],[9,13,["H7287"]],[13,17,["H6566"]],[17,19,["H7568"]],[19,22,["H7272"]],[22,25,["H7725"]],[25,27,["H268"]],[27,30,["H5414"]],[30,32,["H8074"]],[32,34,["H1739"]],[34,35,["H3605"]],[35,37,["H3117"]]]},{"k":20324,"v":[[0,2,["H5923"]],[2,5,["H6588"]],[5,7,["H8244"]],[7,10,["H3027"]],[10,13,["H8276"]],[13,16,["H5927"]],[16,17,["H5921"]],[17,19,["H6677"]],[19,24,["H3581"]],[24,26,["H3782"]],[26,28,["H136"]],[28,30,["H5414"]],[30,34,["H3027"]],[34,40,["H3201","H3808"]],[40,43,["H6965"]]]},{"k":20325,"v":[[0,2,["H136"]],[2,6,["H5541"]],[6,7,["H3605"]],[7,9,["H47"]],[9,13,["H7130"]],[13,18,["H7121"]],[18,20,["H4150"]],[20,21,["H5921"]],[21,24,["H7665"]],[24,27,["H970"]],[27,29,["H136"]],[29,31,["H1869"]],[31,33,["H1330"]],[33,35,["H1323"]],[35,37,["H3063"]],[37,41,["H1660"]]]},{"k":20326,"v":[[0,1,["H5921"]],[1,2,["H428"]],[2,4,["H589"]],[4,5,["H1058"]],[5,7,["H5869"]],[7,9,["H5869"]],[9,11,["H3381"]],[11,13,["H4325"]],[13,14,["H3588"]],[14,16,["H5162"]],[16,19,["H7725"]],[19,21,["H5315"]],[21,23,["H7368"]],[23,24,["H4480"]],[24,27,["H1121"]],[27,28,["H1961"]],[28,29,["H8074"]],[29,30,["H3588"]],[30,32,["H341"]],[32,33,["H1396"]]]},{"k":20327,"v":[[0,1,["H6726"]],[1,3,["H6566"]],[3,5,["H3027"]],[5,9,["H369"]],[9,11,["H5162"]],[11,14,["H3068"]],[14,16,["H6680"]],[16,18,["H3290"]],[18,21,["H6862"]],[21,25,["H5439"]],[25,27,["H3389"]],[27,28,["H1961"]],[28,32,["H5079"]],[32,33,["H996"]],[33,34,[]]]},{"k":20328,"v":[[0,2,["H3068"]],[2,4,["H6662"]],[4,5,["H3588"]],[5,8,["H4784"]],[8,11,["H6310"]],[11,12,["H8085"]],[12,15,["H4994"]],[15,16,["H3605"]],[16,17,["H5971"]],[17,19,["H7200"]],[19,21,["H4341"]],[21,23,["H1330"]],[23,27,["H970"]],[27,29,["H1980"]],[29,31,["H7628"]]]},{"k":20329,"v":[[0,2,["H7121"]],[2,5,["H157"]],[5,7,["H1992"]],[7,8,["H7411"]],[8,11,["H3548"]],[11,14,["H2205"]],[14,18,["H1478"]],[18,21,["H5892"]],[21,22,["H3588"]],[22,24,["H1245"]],[24,26,["H400"]],[26,28,["H7725","(H853)"]],[28,30,["H5315"]]]},{"k":20330,"v":[[0,1,["H7200"]],[1,3,["H3068"]],[3,4,["H3588"]],[4,8,["H6862"]],[8,10,["H4578"]],[10,12,["H2560"]],[12,14,["H3820"]],[14,16,["H2015"]],[16,17,["H7130"]],[17,19,["H3588"]],[19,23,["H4784","H4784"]],[23,24,["H4480","H2351"]],[24,26,["H2719"]],[26,27,["H7921"]],[27,29,["H1004"]],[29,33,["H4194"]]]},{"k":20331,"v":[[0,3,["H8085"]],[3,4,["H3588"]],[4,5,["H589"]],[5,6,["H584"]],[6,9,["H369"]],[9,11,["H5162"]],[11,13,["H3605"]],[13,15,["H341"]],[15,17,["H8085"]],[17,20,["H7451"]],[20,23,["H7797"]],[23,24,["H3588"]],[24,25,["H859"]],[25,27,["H6213"]],[27,31,["H935"]],[31,33,["H3117"]],[33,37,["H7121"]],[37,41,["H1961"]],[41,44,["H3644"]]]},{"k":20332,"v":[[0,2,["H3605"]],[2,4,["H7451"]],[4,5,["H935"]],[5,6,["H6440"]],[6,9,["H5953"]],[9,12,["H834"]],[12,15,["H5953"]],[15,18,["H5921"]],[18,19,["H3605"]],[19,21,["H6588"]],[21,22,["H3588"]],[22,24,["H585"]],[24,26,["H7227"]],[26,29,["H3820"]],[29,31,["H1742"]]]},{"k":20333,"v":[[0,1,["H349"]],[1,4,["H136"]],[4,5,["H5743","(H853)"]],[5,7,["H1323"]],[7,9,["H6726"]],[9,15,["H639"]],[15,18,["H7993"]],[18,20,["H4480","H8064"]],[20,23,["H776"]],[23,25,["H8597"]],[25,27,["H3478"]],[27,29,["H2142"]],[29,30,["H3808"]],[30,32,["H1916","H7272"]],[32,35,["H3117"]],[35,38,["H639"]]]},{"k":20334,"v":[[0,2,["H136"]],[2,5,["H1104","(H853)"]],[5,6,["H3605"]],[6,8,["H4999"]],[8,10,["H3290"]],[10,13,["H3808"]],[13,14,["H2550"]],[14,18,["H2040"]],[18,21,["H5678"]],[21,24,["H4013"]],[24,27,["H1323"]],[27,29,["H3063"]],[29,34,["H5060"]],[34,37,["H776"]],[37,40,["H2490"]],[40,42,["H4467"]],[42,45,["H8269"]],[45,46,[]]]},{"k":20335,"v":[[0,4,["H1438"]],[4,7,["H2750"]],[7,8,["H639"]],[8,9,["H3605"]],[9,11,["H7161"]],[11,13,["H3478"]],[13,16,["H7725"]],[16,17,["H268"]],[17,20,["H3225"]],[20,22,["H4480","H6440"]],[22,24,["H341"]],[24,27,["H1197"]],[27,29,["H3290"]],[29,32,["H3852"]],[32,33,["H784"]],[33,35,["H398"]],[35,37,["H5439"]]]},{"k":20336,"v":[[0,3,["H1869"]],[3,5,["H7198"]],[5,8,["H341"]],[8,10,["H5324"]],[10,14,["H3225"]],[14,17,["H6862"]],[17,19,["H2026"]],[19,20,["H3605"]],[20,23,["H4261"]],[23,26,["H5869"]],[26,29,["H168"]],[29,32,["H1323"]],[32,34,["H6726"]],[34,37,["H8210"]],[37,39,["H2534"]],[39,41,["H784"]]]},{"k":20337,"v":[[0,2,["H136"]],[2,3,["H1961"]],[3,6,["H341"]],[6,10,["H1104"]],[10,11,["H3478"]],[11,15,["H1104"]],[15,16,["H3605"]],[16,18,["H759"]],[18,21,["H7843"]],[21,24,["H4013"]],[24,27,["H7235"]],[27,30,["H1323"]],[30,32,["H3063"]],[32,33,["H8386"]],[33,35,["H592"]]]},{"k":20338,"v":[[0,6,["H2554"]],[6,8,["H7900"]],[8,15,["H1588"]],[15,18,["H7843"]],[18,23,["H4150"]],[23,25,["H3068"]],[25,30,["H4150"]],[30,32,["H7676"]],[32,35,["H7911"]],[35,37,["H6726"]],[37,40,["H5006"]],[40,43,["H2195"]],[43,46,["H639"]],[46,48,["H4428"]],[48,51,["H3548"]]]},{"k":20339,"v":[[0,2,["H136"]],[2,5,["H2186"]],[5,7,["H4196"]],[7,10,["H5010"]],[10,12,["H4720"]],[12,16,["H5462"]],[16,19,["H3027"]],[19,22,["H341"]],[22,24,["H2346"]],[24,27,["H759"]],[27,30,["H5414"]],[30,32,["H6963"]],[32,35,["H1004"]],[35,38,["H3068"]],[38,42,["H3117"]],[42,46,["H4150"]]]},{"k":20340,"v":[[0,2,["H3068"]],[2,4,["H2803"]],[4,6,["H7843"]],[6,8,["H2346"]],[8,11,["H1323"]],[11,13,["H6726"]],[13,17,["H5186"]],[17,19,["H6957"]],[19,22,["H3808"]],[22,23,["H7725"]],[23,25,["H3027"]],[25,27,["H4480","H1104"]],[27,32,["H2426"]],[32,35,["H2346"]],[35,37,["H56"]],[37,39,["H535"]],[39,40,["H3162"]]]},{"k":20341,"v":[[0,2,["H8179"]],[2,4,["H2883"]],[4,7,["H776"]],[7,10,["H6"]],[10,12,["H7665"]],[12,14,["H1280"]],[14,16,["H4428"]],[16,19,["H8269"]],[19,23,["H1471"]],[23,25,["H8451"]],[25,27,["H369"]],[27,30,["H5030"]],[30,31,["H1571"]],[31,32,["H4672"]],[32,33,["H3808"]],[33,34,["H2377"]],[34,37,["H4480","H3068"]]]},{"k":20342,"v":[[0,2,["H2205"]],[2,5,["H1323"]],[5,7,["H6726"]],[7,8,["H3427"]],[8,11,["H776"]],[11,14,["H1826"]],[14,18,["H5927"]],[18,19,["H6083"]],[19,20,["H5921"]],[20,22,["H7218"]],[22,25,["H2296"]],[25,28,["H8242"]],[28,30,["H1330"]],[30,32,["H3389"]],[32,34,["H3381"]],[34,36,["H7218"]],[36,39,["H776"]]]},{"k":20343,"v":[[0,2,["H5869"]],[2,4,["H3615"]],[4,6,["H1832"]],[6,8,["H4578"]],[8,10,["H2560"]],[10,12,["H3516"]],[12,14,["H8210"]],[14,17,["H776"]],[17,18,["H5921"]],[18,20,["H7667"]],[20,23,["H1323"]],[23,26,["H5971"]],[26,29,["H5768"]],[29,32,["H3243"]],[32,33,["H5848"]],[33,36,["H7339"]],[36,39,["H7151"]]]},{"k":20344,"v":[[0,2,["H559"]],[2,5,["H517"]],[5,6,["H346"]],[6,8,["H1715"]],[8,10,["H3196"]],[10,13,["H5848"]],[13,16,["H2491"]],[16,19,["H7339"]],[19,22,["H5892"]],[22,25,["H5315"]],[25,28,["H8210"]],[28,29,["H413"]],[29,31,["H517"]],[31,32,["H2436"]]]},{"k":20345,"v":[[0,2,["H4100"]],[2,7,["H5749"]],[7,11,["H4100"]],[11,14,["H1819"]],[14,18,["H1323"]],[18,20,["H3389"]],[20,21,["H4100"]],[21,24,["H7737"]],[24,30,["H5162"]],[30,33,["H1330"]],[33,34,["H1323"]],[34,36,["H6726"]],[36,37,["H3588"]],[37,39,["H7667"]],[39,41,["H1419"]],[41,44,["H3220"]],[44,45,["H4310"]],[45,47,["H7495"]],[47,48,[]]]},{"k":20346,"v":[[0,2,["H5030"]],[2,4,["H2372"]],[4,5,["H7723"]],[5,8,["H8602"]],[8,14,["H3808"]],[14,15,["H1540","H5921"]],[15,17,["H5771"]],[17,20,["H7725"]],[20,22,["H7622"]],[22,25,["H2372"]],[25,28,["H7723"]],[28,29,["H4864"]],[29,33,["H4065"]]]},{"k":20347,"v":[[0,1,["H3605"]],[1,4,["H5674","H1870"]],[4,5,["H5606"]],[5,7,["H3709"]],[7,8,["H5921"]],[8,11,["H8319"]],[11,13,["H5128"]],[13,15,["H7218"]],[15,16,["H5921"]],[16,18,["H1323"]],[18,20,["H3389"]],[20,23,["H2063"]],[23,25,["H5892"]],[25,28,["H7945","H559"]],[28,30,["H3632"]],[30,32,["H3308"]],[32,34,["H4885"]],[34,37,["H3605"]],[37,38,["H776"]]]},{"k":20348,"v":[[0,1,["H3605"]],[1,3,["H341"]],[3,5,["H6475"]],[5,7,["H6310"]],[7,8,["H5921"]],[8,11,["H8319"]],[11,13,["H2786"]],[13,15,["H8127"]],[15,17,["H559"]],[17,22,["H1104"]],[22,23,["H389"]],[23,24,["H2088"]],[24,27,["H3117"]],[27,31,["H7945","H6960"]],[31,34,["H4672"]],[34,37,["H7200"]],[37,38,[]]]},{"k":20349,"v":[[0,2,["H3068"]],[2,4,["H6213"]],[4,6,["H834"]],[6,9,["H2161"]],[9,12,["H1214"]],[12,14,["H565"]],[14,15,["H834"]],[15,18,["H6680"]],[18,21,["H4480","H3117"]],[21,23,["H6924"]],[23,27,["H2040"]],[27,30,["H3808"]],[30,31,["H2550"]],[31,37,["H341"]],[37,39,["H8055"]],[39,40,["H5921"]],[40,45,["H7311"]],[45,47,["H7161"]],[47,50,["H6862"]]]},{"k":20350,"v":[[0,2,["H3820"]],[2,3,["H6817"]],[3,4,["H413"]],[4,6,["H136"]],[6,8,["H2346"]],[8,11,["H1323"]],[11,13,["H6726"]],[13,15,["H1832"]],[15,17,["H3381"]],[17,20,["H5158"]],[20,21,["H3119"]],[21,23,["H3915"]],[23,24,["H5414"]],[24,26,["H408"]],[26,27,["H6314"]],[27,29,["H408"]],[29,31,["H1323"]],[31,34,["H5869"]],[34,35,["H1826"]]]},{"k":20351,"v":[[0,1,["H6965"]],[1,3,["H7442"]],[3,6,["H3915"]],[6,9,["H7218"]],[9,12,["H821"]],[12,14,["H8210"]],[14,16,["H3820"]],[16,18,["H4325"]],[18,19,["H5227"]],[19,21,["H6440"]],[21,24,["H136"]],[24,26,["H5375"]],[26,28,["H3709"]],[28,29,["H413"]],[29,31,["H5921"]],[31,33,["H5315"]],[33,37,["H5768"]],[37,39,["H5848"]],[39,41,["H7458"]],[41,44,["H7218"]],[44,46,["H3605"]],[46,47,["H2351"]]]},{"k":20352,"v":[[0,1,["H7200"]],[1,3,["H3068"]],[3,5,["H5027"]],[5,7,["H4310"]],[7,10,["H5953"]],[10,11,["H3541"]],[11,14,["H802"]],[14,15,["H398"]],[15,17,["H6529"]],[17,19,["H5768"]],[19,23,["H2949"]],[23,26,["H3548"]],[26,29,["H5030"]],[29,31,["H2026"]],[31,34,["H4720"]],[34,37,["H136"]]]},{"k":20353,"v":[[0,2,["H5288"]],[2,5,["H2205"]],[5,6,["H7901"]],[6,9,["H776"]],[9,12,["H2351"]],[12,14,["H1330"]],[14,18,["H970"]],[18,20,["H5307"]],[20,23,["H2719"]],[23,26,["H2026"]],[26,30,["H3117"]],[30,33,["H639"]],[33,36,["H2873"]],[36,38,["H3808"]],[38,39,["H2550"]]]},{"k":20354,"v":[[0,3,["H7121"]],[3,7,["H4150"]],[7,8,["H3117"]],[8,10,["H4032"]],[10,12,["H4480","H5439"]],[12,17,["H3117"]],[17,20,["H3068"]],[20,21,["H639"]],[21,22,["H3808"]],[22,23,["H1961","H6412"]],[23,25,["H8300"]],[25,27,["H834"]],[27,30,["H2946"]],[30,33,["H7235"]],[33,36,["H341"]],[36,37,["H3615"]]]},{"k":20355,"v":[[0,1,["H589"]],[1,4,["H1397"]],[4,7,["H7200"]],[7,8,["H6040"]],[8,11,["H7626"]],[11,14,["H5678"]]]},{"k":20356,"v":[[0,3,["H5090"]],[3,6,["H1980"]],[6,9,["H2822"]],[9,11,["H3808"]],[11,13,["H216"]]]},{"k":20357,"v":[[0,1,["H389"]],[1,6,["H7725"]],[6,8,["H2015"]],[8,10,["H3027"]],[10,13,["H3605"]],[13,15,["H3117"]]]},{"k":20358,"v":[[0,2,["H1320"]],[2,5,["H5785"]],[5,9,["H1086"]],[9,12,["H7665"]],[12,14,["H6106"]]]},{"k":20359,"v":[[0,3,["H1129"]],[3,4,["H5921"]],[4,7,["H5362"]],[7,10,["H7219"]],[10,12,["H8513"]]]},{"k":20360,"v":[[0,3,["H3427"]],[3,7,["H4285"]],[7,12,["H4191"]],[12,14,["H5769"]]]},{"k":20361,"v":[[0,3,["H1443"]],[3,5,["H1157"]],[5,8,["H3808"]],[8,10,["H3318"]],[10,16,["H3513","H5178"]]]},{"k":20362,"v":[[0,1,["H1571"]],[1,2,["H3588"]],[2,4,["H2199"]],[4,6,["H7768"]],[6,9,["H5640"]],[9,11,["H8605"]]]},{"k":20363,"v":[[0,3,["H1443"]],[3,5,["H1870"]],[5,8,["H1496"]],[8,14,["H5753","H5410"]]]},{"k":20364,"v":[[0,1,["H1931"]],[1,7,["H1677"]],[7,10,["H693"]],[10,14,["H738"]],[14,17,["H4565"]]]},{"k":20365,"v":[[0,4,["H5493"]],[4,6,["H1870"]],[6,11,["H6582"]],[11,14,["H7760"]],[14,16,["H8074"]]]},{"k":20366,"v":[[0,3,["H1869"]],[3,5,["H7198"]],[5,7,["H5324"]],[7,11,["H4307"]],[11,14,["H2671"]]]},{"k":20367,"v":[[0,5,["H1121"]],[5,8,["H827"]],[8,10,["H935"]],[10,13,["H3629"]]]},{"k":20368,"v":[[0,2,["H1961"]],[2,4,["H7814"]],[4,6,["H3605"]],[6,8,["H5971"]],[8,11,["H5058"]],[11,12,["H3605"]],[12,14,["H3117"]]]},{"k":20369,"v":[[0,3,["H7646"]],[3,6,["H4844"]],[6,11,["H7301"]],[11,13,["H3939"]]]},{"k":20370,"v":[[0,4,["H1638"]],[4,6,["H8127"]],[6,9,["H2687"]],[9,12,["H3728"]],[12,15,["H665"]]]},{"k":20371,"v":[[0,8,["H2186","H5315"]],[8,10,["H4480","H7965"]],[10,12,["H5382"]],[12,13,["H2896"]]]},{"k":20372,"v":[[0,3,["H559"]],[3,5,["H5331"]],[5,8,["H8431"]],[8,10,["H6"]],[10,13,["H4480","H3068"]]]},{"k":20373,"v":[[0,1,["H2142"]],[1,3,["H6040"]],[3,6,["H4788"]],[6,8,["H3939"]],[8,11,["H7219"]]]},{"k":20374,"v":[[0,2,["H5315"]],[2,7,["H2142","H2142"]],[7,10,["H7743"]],[10,11,["H5921"]],[11,12,[]]]},{"k":20375,"v":[[0,1,["H2063"]],[1,3,["H7725"]],[3,4,["H413"]],[4,6,["H3820"]],[6,7,["H5921","H3651"]],[7,10,["H3176"]]]},{"k":20376,"v":[[0,5,["H3068"]],[5,6,["H2617"]],[6,7,["H3588"]],[7,10,["H3808"]],[10,11,["H8552"]],[11,12,["H3588"]],[12,14,["H7356"]],[14,15,["H3615"]],[15,16,["H3808"]]]},{"k":20377,"v":[[0,3,["H2319"]],[3,5,["H1242"]],[5,6,["H7227"]],[6,9,["H530"]]]},{"k":20378,"v":[[0,2,["H3068"]],[2,5,["H2506"]],[5,6,["H559"]],[6,8,["H5315"]],[8,9,["H5921","H3651"]],[9,12,["H3176"]],[12,14,[]]]},{"k":20379,"v":[[0,2,["H3068"]],[2,4,["H2896"]],[4,9,["H6960"]],[9,13,["H5315"]],[13,15,["H1875"]],[15,16,[]]]},{"k":20380,"v":[[0,3,["H2896"]],[3,9,["H3175"]],[9,12,["H1748"]],[12,15,["H8668"]],[15,18,["H3068"]]]},{"k":20381,"v":[[0,3,["H2896"]],[3,6,["H1397"]],[6,7,["H3588"]],[7,9,["H5375"]],[9,11,["H5923"]],[11,14,["H5271"]]]},{"k":20382,"v":[[0,2,["H3427"]],[2,3,["H910"]],[3,6,["H1826"]],[6,7,["H3588"]],[7,10,["H5190"]],[10,12,["H5921"]],[12,13,[]]]},{"k":20383,"v":[[0,2,["H5414"]],[2,4,["H6310"]],[4,7,["H6083"]],[7,10,["H194"]],[10,13,["H3426"]],[13,14,["H8615"]]]},{"k":20384,"v":[[0,2,["H5414"]],[2,4,["H3895"]],[4,8,["H5221"]],[8,13,["H7646"]],[13,15,["H2781"]]]},{"k":20385,"v":[[0,1,["H3588"]],[1,3,["H136"]],[3,5,["H3808"]],[5,7,["H2186"]],[7,9,["H5769"]]]},{"k":20386,"v":[[0,1,["H3588"]],[1,2,["H518"]],[2,5,["H3013"]],[5,10,["H7355"]],[10,14,["H7230"]],[14,17,["H2617"]]]},{"k":20387,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H6031"]],[5,6,["H4480","H3820"]],[6,8,["H3013"]],[8,10,["H1121"]],[10,12,["H376"]]]},{"k":20388,"v":[[0,2,["H1792"]],[2,3,["H8478"]],[3,5,["H7272"]],[5,6,["H3605"]],[6,8,["H615"]],[8,11,["H776"]]]},{"k":20389,"v":[[0,3,["H5186"]],[3,5,["H4941"]],[5,8,["H1397"]],[8,9,["H5048"]],[9,11,["H6440"]],[11,15,["H5945"]]]},{"k":20390,"v":[[0,2,["H5791"]],[2,4,["H120"]],[4,7,["H7379"]],[7,9,["H136"]],[9,10,["H7200"]],[10,11,["H3808"]]]},{"k":20391,"v":[[0,1,["H4310"]],[1,3,["H2088"]],[3,5,["H559"]],[5,10,["H1961"]],[10,13,["H136"]],[13,14,["H6680"]],[14,16,["H3808"]]]},{"k":20392,"v":[[0,4,["H4480","H6310"]],[4,8,["H5945"]],[8,9,["H3318"]],[9,10,["H3808"]],[10,11,["H7451"]],[11,13,["H2896"]]]},{"k":20393,"v":[[0,1,["H4100"]],[1,4,["H2416"]],[4,5,["H120"]],[5,6,["H596"]],[6,8,["H1397"]],[8,9,["H5921"]],[9,14,["H2399"]]]},{"k":20394,"v":[[0,3,["H2664"]],[3,5,["H2713"]],[5,7,["H1870"]],[7,10,["H7725"]],[10,11,["H5704"]],[11,13,["H3068"]]]},{"k":20395,"v":[[0,4,["H5375"]],[4,6,["H3824"]],[6,7,["H413"]],[7,9,["H3709"]],[9,10,["H413"]],[10,11,["H410"]],[11,14,["H8064"]]]},{"k":20396,"v":[[0,1,["H5168"]],[1,3,["H6586"]],[3,6,["H4784"]],[6,7,["H859"]],[7,9,["H3808"]],[9,10,["H5545"]]]},{"k":20397,"v":[[0,3,["H5526"]],[3,5,["H639"]],[5,7,["H7291"]],[7,11,["H2026"]],[11,14,["H3808"]],[14,15,["H2550"]]]},{"k":20398,"v":[[0,3,["H5526"]],[3,7,["H6051"]],[7,10,["H8605"]],[10,14,["H4480","H5674"]]]},{"k":20399,"v":[[0,3,["H7760"]],[3,7,["H5501"]],[7,9,["H3973"]],[9,12,["H7130"]],[12,15,["H5971"]]]},{"k":20400,"v":[[0,1,["H3605"]],[1,3,["H341"]],[3,5,["H6475"]],[5,7,["H6310"]],[7,8,["H5921"]],[8,9,[]]]},{"k":20401,"v":[[0,1,["H6343"]],[1,4,["H6354"]],[4,6,["H1961"]],[6,9,["H7612"]],[9,11,["H7667"]]]},{"k":20402,"v":[[0,2,["H5869"]],[2,4,["H3381"]],[4,6,["H6388"]],[6,8,["H4325"]],[8,9,["H5921"]],[9,11,["H7667"]],[11,14,["H1323"]],[14,17,["H5971"]]]},{"k":20403,"v":[[0,2,["H5869"]],[2,4,["H5064"]],[4,6,["H1820"]],[6,7,["H3808"]],[7,9,["H4480","H369"]],[9,10,["H2014"]]]},{"k":20404,"v":[[0,1,["H5704"]],[1,3,["H3068"]],[3,5,["H8259"]],[5,7,["H7200"]],[7,9,["H4480","H8064"]]]},{"k":20405,"v":[[0,2,["H5869"]],[2,3,["H5953"]],[3,5,["H5315"]],[5,8,["H4480","H3605"]],[8,10,["H1323"]],[10,13,["H5892"]]]},{"k":20406,"v":[[0,2,["H341"]],[2,5,["H6679","H6679"]],[5,8,["H6833"]],[8,10,["H2600"]]]},{"k":20407,"v":[[0,4,["H6789"]],[4,6,["H2416"]],[6,9,["H953"]],[9,11,["H3034"]],[11,13,["H68"]],[13,15,[]]]},{"k":20408,"v":[[0,1,["H4325"]],[1,2,["H6687"]],[2,3,["H5921"]],[3,5,["H7218"]],[5,8,["H559"]],[8,12,["H1504"]]]},{"k":20409,"v":[[0,3,["H7121"]],[3,5,["H8034"]],[5,7,["H3068"]],[7,12,["H4480","H953","H8482"]]]},{"k":20410,"v":[[0,3,["H8085"]],[3,5,["H6963"]],[5,6,["H5956"]],[6,7,["H408"]],[7,9,["H241"]],[9,12,["H7309"]],[12,15,["H7775"]]]},{"k":20411,"v":[[0,3,["H7126"]],[3,6,["H3117"]],[6,10,["H7121"]],[10,13,["H559"]],[13,14,["H3372"]],[14,15,["H408"]]]},{"k":20412,"v":[[0,2,["H136"]],[2,5,["H7378"]],[5,7,["H7379"]],[7,10,["H5315"]],[10,13,["H1350"]],[13,15,["H2416"]]]},{"k":20413,"v":[[0,2,["H3068"]],[2,5,["H7200"]],[5,7,["H5792"]],[7,8,["H8199"]],[8,11,["H4941"]]]},{"k":20414,"v":[[0,3,["H7200"]],[3,4,["H3605"]],[4,6,["H5360"]],[6,8,["H3605"]],[8,10,["H4284"]],[10,12,[]]]},{"k":20415,"v":[[0,3,["H8085"]],[3,5,["H2781"]],[5,7,["H3068"]],[7,9,["H3605"]],[9,11,["H4284"]],[11,12,["H5921"]],[12,13,[]]]},{"k":20416,"v":[[0,2,["H8193"]],[2,8,["H6965"]],[8,12,["H1902"]],[12,13,["H5921"]],[13,15,["H3605"]],[15,17,["H3117"]]]},{"k":20417,"v":[[0,1,["H5027"]],[1,4,["H3427"]],[4,8,["H7012"]],[8,9,["H589"]],[9,12,["H4485"]]]},{"k":20418,"v":[[0,1,["H7725"]],[1,5,["H1576"]],[5,7,["H3068"]],[7,11,["H4639"]],[11,14,["H3027"]]]},{"k":20419,"v":[[0,1,["H5414"]],[1,3,["H4044"]],[3,5,["H3820"]],[5,7,["H8381"]],[7,9,[]]]},{"k":20420,"v":[[0,1,["H7291"]],[1,3,["H8045"]],[3,6,["H639"]],[6,8,["H4480","H8478"]],[8,10,["H8064"]],[10,13,["H3068"]]]},{"k":20421,"v":[[0,1,["H349"]],[1,4,["H2091"]],[4,6,["H6004"]],[6,10,["H2896"]],[10,12,["H3800"]],[12,13,["H8132"]],[13,15,["H68"]],[15,18,["H6944"]],[18,21,["H8210"]],[21,24,["H7218"]],[24,26,["H3605"]],[26,27,["H2351"]]]},{"k":20422,"v":[[0,2,["H3368"]],[2,3,["H1121"]],[3,5,["H6726"]],[5,6,["H5537"]],[6,9,["H6337"]],[9,10,["H349"]],[10,13,["H2803"]],[13,15,["H2789"]],[15,16,["H5035"]],[16,18,["H4639"]],[18,21,["H3027"]],[21,24,["H3335"]]]},{"k":20423,"v":[[0,1,["H1571"]],[1,4,["H8565"]],[4,6,["H2502"]],[6,8,["H7699"]],[8,11,["H3243"]],[11,15,["H1482"]],[15,17,["H1323"]],[17,20,["H5971"]],[20,23,["H393"]],[23,26,["H3283"]],[26,29,["H4057"]]]},{"k":20424,"v":[[0,2,["H3956"]],[2,6,["H3243"]],[6,7,["H1692"]],[7,8,["H413"]],[8,13,["H2441"]],[13,15,["H6772"]],[15,18,["H5768"]],[18,19,["H7592"]],[19,20,["H3899"]],[20,23,["H369"]],[23,24,["H6566"]],[24,27,[]]]},{"k":20425,"v":[[0,4,["H398"]],[4,5,["H4574"]],[5,7,["H8074"]],[7,10,["H2351"]],[10,15,["H539"]],[15,16,["H5921"]],[16,17,["H8438"]],[17,18,["H2263"]],[18,19,["H830"]]]},{"k":20426,"v":[[0,6,["H5771"]],[6,9,["H1323"]],[9,12,["H5971"]],[12,14,["H1431"]],[14,20,["H4480","H2403"]],[20,22,["H5467"]],[22,25,["H2015"]],[25,27,["H3644"]],[27,29,["H7281"]],[29,31,["H3808"]],[31,32,["H3027"]],[32,33,["H2342"]],[33,35,[]]]},{"k":20427,"v":[[0,2,["H5139"]],[2,4,["H2141"]],[4,6,["H4480","H7950"]],[6,9,["H6705"]],[9,11,["H4480","H2461"]],[11,15,["H119"]],[15,17,["H6106"]],[17,19,["H4480","H6443"]],[19,21,["H1508"]],[21,24,["H5601"]]]},{"k":20428,"v":[[0,2,["H8389"]],[2,4,["H2821"]],[4,7,["H4480","H7815"]],[7,10,["H3808"]],[10,11,["H5234"]],[11,14,["H2351"]],[14,16,["H5785"]],[16,17,["H6821"]],[17,18,["H5921"]],[18,20,["H6106"]],[20,23,["H3001"]],[23,26,["H1961"]],[26,29,["H6086"]]]},{"k":20429,"v":[[0,4,["H2491"]],[4,7,["H2719"]],[7,8,["H1961"]],[8,9,["H2896"]],[9,14,["H4480","H2491"]],[14,16,["H7458"]],[16,18,["H7945","H1992"]],[18,20,["H2100"]],[20,22,["H1856"]],[22,27,["H4480","H8570"]],[27,30,["H7704"]]]},{"k":20430,"v":[[0,2,["H3027"]],[2,5,["H7362"]],[5,6,["H802"]],[6,8,["H1310"]],[8,11,["H3206"]],[11,13,["H1961"]],[13,15,["H1262"]],[15,18,["H7667"]],[18,21,["H1323"]],[21,24,["H5971"]]]},{"k":20431,"v":[[0,2,["H3068"]],[2,4,["H3615","(H853)"]],[4,6,["H2534"]],[6,10,["H8210"]],[10,12,["H2740"]],[12,13,["H639"]],[13,16,["H3341"]],[16,18,["H784"]],[18,20,["H6726"]],[20,24,["H398"]],[24,26,["H3247"]],[26,27,[]]]},{"k":20432,"v":[[0,2,["H4428"]],[2,5,["H776"]],[5,7,["H3605"]],[7,9,["H3427"]],[9,12,["H8398"]],[12,14,["H3808"]],[14,16,["H539"]],[16,17,["H3588"]],[17,19,["H6862"]],[19,22,["H341"]],[22,25,["H935"]],[25,28,["H8179"]],[28,30,["H3389"]]]},{"k":20433,"v":[[0,3,["H4480","H2403"]],[3,6,["H5030"]],[6,9,["H5771"]],[9,12,["H3548"]],[12,15,["H8210"]],[15,17,["H1818"]],[17,20,["H6662"]],[20,23,["H7130"]],[23,25,[]]]},{"k":20434,"v":[[0,3,["H5128"]],[3,5,["H5787"]],[5,9,["H2351"]],[9,12,["H1351"]],[12,15,["H1818"]],[15,19,["H3201"]],[19,20,["H3808"]],[20,21,["H5060"]],[21,23,["H3830"]]]},{"k":20435,"v":[[0,2,["H7121"]],[2,5,["H5493"]],[5,9,["H2931"]],[9,10,["H5493"]],[10,11,["H5493"]],[11,12,["H5060"]],[12,13,["H408"]],[13,14,["H3588"]],[14,17,["H5132"]],[17,18,["H1571"]],[18,19,["H5128"]],[19,21,["H559"]],[21,24,["H1471"]],[24,27,["H3808"]],[27,28,["H3254"]],[28,29,["H1481"]],[29,30,[]]]},{"k":20436,"v":[[0,2,["H6440"]],[2,5,["H3068"]],[5,7,["H2505"]],[7,11,["H3808"]],[11,12,["H3254"]],[12,13,["H5027"]],[13,16,["H5375"]],[16,17,["H3808"]],[17,19,["H6440"]],[19,22,["H3548"]],[22,24,["H2603"]],[24,25,["H3808"]],[25,27,["H2205"]]]},{"k":20437,"v":[[0,5,["H5869"]],[5,7,["H5750"]],[7,8,["H3615"]],[8,9,["H413"]],[9,11,["H1892"]],[11,12,["H5833"]],[12,15,["H6836"]],[15,18,["H6822"]],[18,19,["H413"]],[19,21,["H1471"]],[21,24,["H3808"]],[24,25,["H3467"]],[25,26,[]]]},{"k":20438,"v":[[0,2,["H6679"]],[2,4,["H6806"]],[4,8,["H4480","H1980"]],[8,11,["H7339"]],[11,13,["H7093"]],[13,15,["H7126"]],[15,17,["H3117"]],[17,19,["H4390"]],[19,20,["H3588"]],[20,22,["H7093"]],[22,24,["H935"]]]},{"k":20439,"v":[[0,2,["H7291"]],[2,3,["H1961"]],[3,4,["H7031"]],[4,7,["H4480","H5404"]],[7,10,["H8064"]],[10,12,["H1814"]],[12,14,["H5921"]],[14,16,["H2022"]],[16,19,["H693"]],[19,24,["H4057"]]]},{"k":20440,"v":[[0,2,["H7307"]],[2,5,["H639"]],[5,7,["H4899"]],[7,10,["H3068"]],[10,12,["H3920"]],[12,15,["H7825"]],[15,17,["H834"]],[17,19,["H559"]],[19,22,["H6738"]],[22,25,["H2421"]],[25,28,["H1471"]]]},{"k":20441,"v":[[0,1,["H7797"]],[1,4,["H8055"]],[4,6,["H1323"]],[6,8,["H123"]],[8,10,["H3427"]],[10,13,["H776"]],[13,15,["H5780"]],[15,17,["H3563"]],[17,18,["H1571"]],[18,21,["H5674"]],[21,22,["H5921"]],[22,27,["H7937"]],[27,32,["H6168"]]]},{"k":20442,"v":[[0,5,["H5771"]],[5,7,["H8552"]],[7,9,["H1323"]],[9,11,["H6726"]],[11,14,["H3808"]],[14,15,["H3254"]],[15,20,["H1540"]],[20,23,["H6485"]],[23,25,["H5771"]],[25,27,["H1323"]],[27,29,["H123"]],[29,32,["H1540","H5921"]],[32,34,["H2403"]]]},{"k":20443,"v":[[0,1,["H2142"]],[1,3,["H3068"]],[3,4,["H4100"]],[4,6,["H1961"]],[6,9,["H5027"]],[9,11,["H7200","(H853)"]],[11,13,["H2781"]]]},{"k":20444,"v":[[0,2,["H5159"]],[2,4,["H2015"]],[4,6,["H2114"]],[6,8,["H1004"]],[8,10,["H5237"]]]},{"k":20445,"v":[[0,2,["H1961"]],[2,3,["H3490"]],[3,5,["H369","H1"]],[5,7,["H517"]],[7,10,["H490"]]]},{"k":20446,"v":[[0,3,["H8354"]],[3,5,["H4325"]],[5,7,["H3701"]],[7,9,["H6086"]],[9,11,["H935","H4242"]],[11,13,[]]]},{"k":20447,"v":[[0,2,["H6677"]],[2,4,["H5921"]],[4,5,["H7291"]],[5,7,["H3021"]],[7,11,["H3808","H5117"]]]},{"k":20448,"v":[[0,3,["H5414"]],[3,5,["H3027"]],[5,8,["H4714"]],[8,12,["H804"]],[12,15,["H7646"]],[15,17,["H3899"]]]},{"k":20449,"v":[[0,2,["H1"]],[2,4,["H2398"]],[4,7,["H369"]],[7,9,["H587"]],[9,11,["H5445"]],[11,13,["H5771"]]]},{"k":20450,"v":[[0,1,["H5650"]],[1,4,["H4910"]],[4,8,["H369"]],[8,11,["H6561"]],[11,16,["H4480","H3027"]]]},{"k":20451,"v":[[0,2,["H935"]],[2,4,["H3899"]],[4,10,["H5315"]],[10,12,["H4480","H6440"]],[12,14,["H2719"]],[14,17,["H4057"]]]},{"k":20452,"v":[[0,2,["H5785"]],[2,4,["H3648"]],[4,7,["H8574"]],[7,9,["H4480","H6440"]],[9,11,["H2152"]],[11,12,["H7458"]]]},{"k":20453,"v":[[0,2,["H6031"]],[2,4,["H802"]],[4,6,["H6726"]],[6,9,["H1330"]],[9,12,["H5892"]],[12,14,["H3063"]]]},{"k":20454,"v":[[0,1,["H8269"]],[1,4,["H8518"]],[4,7,["H3027"]],[7,9,["H6440"]],[9,11,["H2205"]],[11,13,["H3808"]],[13,14,["H1921"]]]},{"k":20455,"v":[[0,2,["H5375"]],[2,5,["H970"]],[5,7,["H2911"]],[7,10,["H5288"]],[10,11,["H3782"]],[11,14,["H6086"]]]},{"k":20456,"v":[[0,2,["H2205"]],[2,4,["H7673"]],[4,7,["H4480","H8179"]],[7,10,["H970"]],[10,13,["H4480","H5058"]]]},{"k":20457,"v":[[0,2,["H4885"]],[2,5,["H3820"]],[5,7,["H7673"]],[7,9,["H4234"]],[9,11,["H2015"]],[11,13,["H60"]]]},{"k":20458,"v":[[0,2,["H5850"]],[2,4,["H5307"]],[4,7,["H7218"]],[7,8,["H188"]],[8,11,["H3588"]],[11,14,["H2398"]]]},{"k":20459,"v":[[0,1,["H5921"]],[1,2,["H2088"]],[2,4,["H3820"]],[4,5,["H1961"]],[5,6,["H1739"]],[6,7,["H5921"]],[7,8,["H428"]],[8,11,["H5869"]],[11,13,["H2821"]]]},{"k":20460,"v":[[0,2,["H5921"]],[2,4,["H2022"]],[4,6,["H6726"]],[6,7,["H7945"]],[7,9,["H8074"]],[9,11,["H7776"]],[11,12,["H1980"]],[12,14,[]]]},{"k":20461,"v":[[0,1,["H859"]],[1,3,["H3068"]],[3,4,["H3427"]],[4,6,["H5769"]],[6,8,["H3678"]],[8,10,["H1755"]],[10,12,["H1755"]]]},{"k":20462,"v":[[0,1,["H4100"]],[1,4,["H7911"]],[4,7,["H5331"]],[7,9,["H5800"]],[9,12,["H753"]],[12,13,["H3117"]]]},{"k":20463,"v":[[0,1,["H7725"]],[1,4,["H413"]],[4,7,["H3068"]],[7,12,["H7725"]],[12,13,["H2318"]],[13,15,["H3117"]],[15,18,["H6924"]]]},{"k":20464,"v":[[0,1,["H3588","H518"]],[1,5,["H3988","H3988"]],[5,10,["H7107","H5704","H3966"]],[10,11,["H5921"]],[11,12,[]]]},{"k":20465,"v":[[0,5,["H1961"]],[5,8,["H7970"]],[8,9,["H8141"]],[9,12,["H7243"]],[12,16,["H2568"]],[16,20,["H2320"]],[20,22,["H589"]],[22,24,["H8432"]],[24,26,["H1473"]],[26,27,["H5921"]],[27,29,["H5104"]],[29,31,["H3529"]],[31,34,["H8064"]],[34,36,["H6605"]],[36,39,["H7200"]],[39,40,["H4759"]],[40,42,["H430"]]]},{"k":20466,"v":[[0,3,["H2568"]],[3,7,["H2320"]],[7,8,["H1931"]],[8,11,["H2549"]],[11,12,["H8141"]],[12,14,["H4428"]],[14,15,["H3112"]],[15,16,["H1546"]]]},{"k":20467,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,7,["H1961","H1961"]],[7,8,["H413"]],[8,9,["H3168"]],[9,11,["H3548"]],[11,13,["H1121"]],[13,15,["H941"]],[15,18,["H776"]],[18,21,["H3778"]],[21,22,["H5921"]],[22,24,["H5104"]],[24,25,["H3529"]],[25,28,["H3027"]],[28,31,["H3068"]],[31,32,["H1961"]],[32,33,["H8033"]],[33,34,["H5921"]],[34,35,[]]]},{"k":20468,"v":[[0,3,["H7200"]],[3,5,["H2009"]],[5,7,["H7307","H5591"]],[7,8,["H935"]],[8,10,["H4480"]],[10,12,["H6828"]],[12,14,["H1419"]],[14,15,["H6051"]],[15,18,["H784"]],[18,20,["H3947"]],[20,23,["H5051"]],[23,25,["H5439"]],[25,31,["H4480","H8432"]],[31,35,["H5869"]],[35,37,["H2830"]],[37,41,["H4480","H8432"]],[41,44,["H784"]]]},{"k":20469,"v":[[0,5,["H4480","H8432"]],[5,9,["H1823"]],[9,11,["H702"]],[11,13,["H2416"]],[13,15,["H2088"]],[15,18,["H4758"]],[18,19,["H2007"]],[19,22,["H1823"]],[22,25,["H120"]]]},{"k":20470,"v":[[0,3,["H259"]],[3,5,["H702"]],[5,6,["H6440"]],[6,9,["H259"]],[9,11,["H702"]],[11,12,["H3671"]]]},{"k":20471,"v":[[0,3,["H7272"]],[3,5,["H3477"]],[5,6,["H7272"]],[6,9,["H3709"]],[9,12,["H7272"]],[12,16,["H3709"]],[16,19,["H5695"]],[19,20,["H7272"]],[20,23,["H5340"]],[23,26,["H5869"]],[26,28,["H7044"]],[28,29,["H5178"]]]},{"k":20472,"v":[[0,5,["H3027"]],[5,8,["H120"]],[8,9,["H4480","H8478"]],[9,11,["H3671"]],[11,12,["H5921"]],[12,14,["H702"]],[14,15,["H7253"]],[15,18,["H702"]],[18,21,["H6440"]],[21,24,["H3671"]]]},{"k":20473,"v":[[0,2,["H3671"]],[2,4,["H2266"]],[4,5,["H802"]],[5,6,["H413"]],[6,7,["H269"]],[7,9,["H5437"]],[9,10,["H3808"]],[10,13,["H1980"]],[13,15,["H1980"]],[15,17,["H376"]],[17,18,["H5676"]],[18,19,["H6440"]]]},{"k":20474,"v":[[0,4,["H1823"]],[4,7,["H6440"]],[7,9,["H702"]],[9,12,["H6440"]],[12,15,["H120"]],[15,18,["H6440"]],[18,21,["H738"]],[21,22,["H413"]],[22,25,["H3225"]],[25,28,["H702"]],[28,31,["H6440"]],[31,34,["H7794"]],[34,38,["H4480","H8040"]],[38,40,["H702"]],[40,44,["H6440"]],[44,47,["H5404"]]]},{"k":20475,"v":[[0,4,["H6440"]],[4,7,["H3671"]],[7,9,["H6504"]],[9,10,["H4480","H4605"]],[10,11,["H8147"]],[11,15,["H376"]],[15,17,["H2266"]],[17,20,["H376"]],[20,22,["H8147"]],[22,23,["H3680","(H853)"]],[23,25,["H1472"]]]},{"k":20476,"v":[[0,3,["H1980"]],[3,5,["H376"]],[5,6,["H5676"]],[6,7,["H6440"]],[7,8,["H834","H8033"]],[8,10,["H7307"]],[10,11,["H1961"]],[11,13,["H1980"]],[13,15,["H1980"]],[15,18,["H5437"]],[18,19,["H3808"]],[19,22,["H1980"]]]},{"k":20477,"v":[[0,4,["H1823"]],[4,8,["H2416"]],[8,10,["H4758"]],[10,13,["H1197"]],[13,14,["H1513"]],[14,16,["H784"]],[16,20,["H4758"]],[20,22,["H3940"]],[22,23,["H1931"]],[23,27,["H1980"]],[27,28,["H996"]],[28,31,["H2416"]],[31,34,["H784"]],[34,36,["H5051"]],[36,39,["H4480"]],[39,41,["H784"]],[41,43,["H3318"]],[43,44,["H1300"]]]},{"k":20478,"v":[[0,4,["H2416"]],[4,5,["H7519"]],[5,7,["H7725"]],[7,10,["H4758"]],[10,15,["H965"]]]},{"k":20479,"v":[[0,4,["H7200"]],[4,7,["H2416"]],[7,8,["H2009"]],[8,9,["H259"]],[9,10,["H212"]],[10,13,["H776"]],[13,14,["H681"]],[14,17,["H2416"]],[17,20,["H702"]],[20,21,["H6440"]]]},{"k":20480,"v":[[0,2,["H4758"]],[2,5,["H212"]],[5,8,["H4639"]],[8,13,["H5869"]],[13,16,["H8658"]],[16,19,["H702"]],[19,21,["H259"]],[21,22,["H1823"]],[22,25,["H4758"]],[25,28,["H4639"]],[28,30,["H834"]],[30,32,["H1961"]],[32,34,["H212"]],[34,37,["H8432"]],[37,40,["H212"]]]},{"k":20481,"v":[[0,3,["H1980"]],[3,5,["H1980"]],[5,6,["H5921"]],[6,8,["H702"]],[8,9,["H7253"]],[9,12,["H5437"]],[12,13,["H3808"]],[13,16,["H1980"]]]},{"k":20482,"v":[[0,4,["H1354"]],[4,8,["H1363"]],[8,12,["H3374"]],[12,15,["H1354"]],[15,17,["H4392"]],[17,19,["H5869"]],[19,21,["H5439"]],[21,23,["H702"]]]},{"k":20483,"v":[[0,5,["H2416"]],[5,6,["H1980"]],[6,8,["H212"]],[8,9,["H1980"]],[9,10,["H681"]],[10,16,["H2416"]],[16,19,["H5375"]],[19,20,["H4480","H5921"]],[20,22,["H776"]],[22,24,["H212"]],[24,27,["H5375"]]]},{"k":20484,"v":[[0,1,["H5921","H834","H8033"]],[1,3,["H7307"]],[3,4,["H1961"]],[4,6,["H1980"]],[6,8,["H1980"]],[8,9,["H8033"]],[9,12,["H7307"]],[12,14,["H1980"]],[14,17,["H212"]],[17,20,["H5375"]],[20,22,["H5980"]],[22,24,["H3588"]],[24,26,["H7307"]],[26,30,["H2416"]],[30,34,["H212"]]]},{"k":20485,"v":[[0,3,["H1980"]],[3,5,["H1980"]],[5,9,["H5975"]],[9,11,["H5975"]],[11,17,["H5375"]],[17,18,["H4480","H5921"]],[18,20,["H776"]],[20,22,["H212"]],[22,25,["H5375"]],[25,27,["H5980"]],[27,29,["H3588"]],[29,31,["H7307"]],[31,35,["H2416"]],[35,39,["H212"]]]},{"k":20486,"v":[[0,3,["H1823"]],[3,6,["H7549"]],[6,7,["H5921"]],[7,9,["H7218"]],[9,13,["H2416"]],[13,17,["H5869"]],[17,20,["H3372"]],[20,21,["H7140"]],[21,23,["H5186"]],[23,24,["H5921"]],[24,26,["H7218"]],[26,27,["H4480","H4605"]]]},{"k":20487,"v":[[0,2,["H8478"]],[2,4,["H7549"]],[4,7,["H3671"]],[7,8,["H3477"]],[8,10,["H802"]],[10,11,["H413"]],[11,13,["H269"]],[13,15,["H376"]],[15,17,["H8147"]],[17,19,["H3680"]],[19,22,["H2007"]],[22,25,["H376"]],[25,27,["H8147"]],[27,29,["H3680"]],[29,32,["H2007","(H853)"]],[32,34,["H1472"]]]},{"k":20488,"v":[[0,4,["H1980"]],[4,6,["H8085","(H853)"]],[6,8,["H6963"]],[8,11,["H3671"]],[11,14,["H6963"]],[14,16,["H7227"]],[16,17,["H4325"]],[17,20,["H6963"]],[20,23,["H7706"]],[23,25,["H6963"]],[25,27,["H1999"]],[27,30,["H6963"]],[30,33,["H4264"]],[33,36,["H5975"]],[36,39,["H7503"]],[39,41,["H3671"]]]},{"k":20489,"v":[[0,3,["H1961"]],[3,5,["H6963"]],[5,6,["H4480","H5921"]],[6,8,["H7549"]],[8,9,["H834"]],[9,11,["H5921"]],[11,13,["H7218"]],[13,16,["H5975"]],[16,20,["H7503"]],[20,22,["H3671"]]]},{"k":20490,"v":[[0,2,["H4480","H4605"]],[2,4,["H7549"]],[4,5,["H834"]],[5,7,["H5921"]],[7,9,["H7218"]],[9,12,["H1823"]],[12,15,["H3678"]],[15,18,["H4758"]],[18,21,["H5601"]],[21,22,["H68"]],[22,24,["H5921"]],[24,26,["H1823"]],[26,29,["H3678"]],[29,32,["H1823"]],[32,35,["H4758"]],[35,38,["H120"]],[38,39,["H4480","H4605"]],[39,40,["H5921"]],[40,41,[]]]},{"k":20491,"v":[[0,3,["H7200"]],[3,6,["H5869"]],[6,8,["H2830"]],[8,11,["H4758"]],[11,13,["H784"]],[13,15,["H5439"]],[15,16,["H1004"]],[16,20,["H4480","H4758"]],[20,23,["H4975"]],[23,25,["H4605"]],[25,29,["H4480","H4758"]],[29,32,["H4975"]],[32,34,["H4295"]],[34,36,["H7200"]],[36,41,["H4758"]],[41,43,["H784"]],[43,47,["H5051"]],[47,49,["H5439"]]]},{"k":20492,"v":[[0,3,["H4758"]],[3,6,["H7198"]],[6,7,["H834"]],[7,8,["H1961"]],[8,11,["H6051"]],[11,14,["H3117"]],[14,16,["H1653"]],[16,17,["H3651"]],[17,20,["H4758"]],[20,23,["H5051"]],[23,25,["H5439"]],[25,26,["H1931"]],[26,29,["H4758"]],[29,32,["H1823"]],[32,35,["H3519"]],[35,38,["H3068"]],[38,42,["H7200"]],[42,45,["H5307"]],[45,46,["H5921"]],[46,48,["H6440"]],[48,51,["H8085"]],[51,53,["H6963"]],[53,57,["H1696"]]]},{"k":20493,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H5975"]],[9,10,["H5921"]],[10,12,["H7272"]],[12,16,["H1696"]],[16,18,[]]]},{"k":20494,"v":[[0,3,["H7307"]],[3,4,["H935"]],[4,7,["H834"]],[7,9,["H1696"]],[9,10,["H413"]],[10,13,["H5975"]],[13,15,["H5921"]],[15,17,["H7272"]],[17,20,["H8085","(H853)"]],[20,23,["H1696"]],[23,24,["H413"]],[24,25,[]]]},{"k":20495,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H589"]],[9,10,["H7971"]],[10,11,["(H853)"]],[11,12,["H413"]],[12,14,["H1121"]],[14,16,["H3478"]],[16,17,["H413"]],[17,19,["H4775"]],[19,20,["H1471"]],[20,21,["H834"]],[21,23,["H4775"]],[23,26,["H1992"]],[26,29,["H1"]],[29,31,["H6586"]],[31,35,["H5704"]],[35,36,["H2088"]],[36,37,["H6106"]],[37,38,["H3117"]]]},{"k":20496,"v":[[0,4,["H7186","H6440"]],[4,5,["H1121"]],[5,7,["H2389","H3820"]],[7,8,["H589"]],[8,10,["H7971"]],[10,12,["H413"]],[12,17,["H559"]],[17,18,["H413"]],[18,20,["H3541"]],[20,21,["H559"]],[21,23,["H136"]],[23,24,["H3069"]]]},{"k":20497,"v":[[0,2,["H1992"]],[2,3,["H518"]],[3,6,["H8085"]],[6,8,["H518"]],[8,11,["H2308"]],[11,12,["H3588"]],[12,13,["H1992"]],[13,16,["H4805"]],[16,17,["H1004"]],[17,20,["H3045"]],[20,21,["H3588"]],[21,24,["H1961"]],[24,26,["H5030"]],[26,27,["H8432"]],[27,28,[]]]},{"k":20498,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,8,["H3372","H408"]],[8,9,["H4480"]],[9,11,["H408"]],[11,13,["H3372"]],[13,16,["H4480","H1697"]],[16,17,["H3588"]],[17,18,["H5621"]],[18,20,["H5544"]],[20,22,["H854"]],[22,25,["H859"]],[25,27,["H3427"]],[27,28,["H413"]],[28,29,["H6137"]],[29,32,["H3372","H408"]],[32,35,["H4480","H1697"]],[35,36,["H408"]],[36,38,["H2865"]],[38,41,["H4480","H6440"]],[41,42,["H3588"]],[42,43,["H1992"]],[43,46,["H4805"]],[46,47,["H1004"]]]},{"k":20499,"v":[[0,4,["H1696","(H853)"]],[4,6,["H1697"]],[6,7,["H413"]],[7,9,["H518"]],[9,12,["H8085"]],[12,14,["H518"]],[14,17,["H2308"]],[17,18,["H3588"]],[18,19,["H1992"]],[19,22,["H4805"]]]},{"k":20500,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H8085","(H853)"]],[6,7,["H834"]],[7,8,["H589"]],[8,9,["H1696"]],[9,10,["H413"]],[10,12,["H1961"]],[12,13,["H408"]],[13,15,["H4805"]],[15,18,["H4805"]],[18,19,["H1004"]],[19,20,["H6475"]],[20,22,["H6310"]],[22,24,["H398","(H853)"]],[24,25,["H834"]],[25,26,["H589"]],[26,27,["H5414","H413"]],[27,28,[]]]},{"k":20501,"v":[[0,4,["H7200"]],[4,5,["H2009"]],[5,7,["H3027"]],[7,9,["H7971"]],[9,10,["H413"]],[10,13,["H2009"]],[13,15,["H4039"]],[15,18,["H5612"]],[18,20,[]]]},{"k":20502,"v":[[0,3,["H6566"]],[3,5,["H6440"]],[5,8,["H1931"]],[8,10,["H3789"]],[10,11,["H6440"]],[11,13,["H268"]],[13,17,["H3789"]],[17,18,["H413"]],[18,19,["H7015"]],[19,21,["H1899"]],[21,23,["H1958"]]]},{"k":20503,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H398","(H853)"]],[9,10,["H834"]],[10,12,["H4672"]],[12,13,["H398"]],[13,14,["H2063","(H853)"]],[14,15,["H4039"]],[15,17,["H1980"]],[17,18,["H1696"]],[18,19,["H413"]],[19,21,["H1004"]],[21,23,["H3478"]]]},{"k":20504,"v":[[0,3,["H6605","(H853)"]],[3,5,["H6310"]],[5,11,["H398","(H853)"]],[11,12,["H2063"]],[12,13,["H4039"]]]},{"k":20505,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,11,["H990"]],[11,13,["H398"]],[13,15,["H4390"]],[15,17,["H4578"]],[17,18,["H854"]],[18,19,["H2063"]],[19,20,["H4039"]],[20,21,["H834"]],[21,22,["H589"]],[22,23,["H5414","H413"]],[23,28,["H398"]],[28,32,["H1961"]],[32,35,["H6310"]],[35,37,["H1706"]],[37,39,["H4966"]]]},{"k":20506,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H1980"]],[9,10,["H935"]],[10,12,["H413"]],[12,14,["H1004"]],[14,16,["H3478"]],[16,18,["H1696"]],[18,21,["H1697"]],[21,22,["H413"]],[22,23,[]]]},{"k":20507,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H3808"]],[4,5,["H7971"]],[5,6,["H413"]],[6,8,["H5971"]],[8,11,["H6012"]],[11,12,["H8193"]],[12,16,["H3515"]],[16,17,["H3956"]],[17,19,["H413"]],[19,21,["H1004"]],[21,23,["H3478"]]]},{"k":20508,"v":[[0,1,["H3808"]],[1,2,["H413"]],[2,3,["H7227"]],[3,4,["H5971"]],[4,7,["H6012"]],[7,8,["H8193"]],[8,12,["H3515"]],[12,13,["H3956"]],[13,14,["H834"]],[14,15,["H1697"]],[15,18,["H3808"]],[18,19,["H8085"]],[19,20,["H518","H3808"]],[20,23,["H7971"]],[23,25,["H413"]],[25,27,["H1992"]],[27,30,["H8085"]],[30,31,["H413"]],[31,32,[]]]},{"k":20509,"v":[[0,3,["H1004"]],[3,5,["H3478"]],[5,6,["H14"]],[6,7,["H3808"]],[7,8,["H8085"]],[8,9,["H413"]],[9,11,["H3588"]],[11,13,["H14"]],[13,14,["H369"]],[14,15,["H8085"]],[15,16,["H413"]],[16,18,["H3588"]],[18,19,["H3605"]],[19,21,["H1004"]],[21,23,["H3478"]],[23,25,["H2389","H4696"]],[25,27,["H7186","H3820"]]]},{"k":20510,"v":[[0,1,["H2009"]],[1,4,["H5414","(H853)"]],[4,6,["H6440"]],[6,7,["H2389"]],[7,8,["H5980"]],[8,10,["H6440"]],[10,11,["(H853)"]],[11,13,["H4696"]],[13,14,["H2389"]],[14,15,["H5980"]],[15,17,["H4696"]]]},{"k":20511,"v":[[0,3,["H8068"]],[3,4,["H2389"]],[4,6,["H4480","H6864"]],[6,9,["H5414"]],[9,11,["H4696"]],[11,12,["H3372"]],[12,14,["H3808"]],[14,15,["H3808"]],[15,17,["H2865"]],[17,20,["H4480","H6440"]],[20,21,["H3588"]],[21,22,["H1992"]],[22,25,["H4805"]],[25,26,["H1004"]]]},{"k":20512,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120","(H853)"]],[8,9,["H3605"]],[9,11,["H1697"]],[11,12,["H834"]],[12,15,["H1696"]],[15,16,["H413"]],[16,18,["H3947"]],[18,21,["H3824"]],[21,23,["H8085"]],[23,26,["H241"]]]},{"k":20513,"v":[[0,2,["H1980"]],[2,3,["H935"]],[3,5,["H413"]],[5,9,["H1473"]],[9,10,["H413"]],[10,12,["H1121"]],[12,15,["H5971"]],[15,17,["H1696"]],[17,18,["H413"]],[18,21,["H559","H413"]],[21,23,["H3541"]],[23,24,["H559"]],[24,26,["H136"]],[26,27,["H3069"]],[27,28,["H518"]],[28,31,["H8085"]],[31,33,["H518"]],[33,36,["H2308"]]]},{"k":20514,"v":[[0,3,["H7307"]],[3,6,["H5375"]],[6,9,["H8085"]],[9,10,["H310"]],[10,13,["H6963"]],[13,16,["H1419"]],[16,17,["H7494"]],[17,19,["H1288"]],[19,22,["H3519"]],[22,25,["H3068"]],[25,28,["H4480","H4725"]]]},{"k":20515,"v":[[0,5,["H6963"]],[5,8,["H3671"]],[8,12,["H2416"]],[12,14,["H5401"]],[14,15,["H802"]],[15,16,["H269"]],[16,19,["H6963"]],[19,22,["H212"]],[22,24,["H5980"]],[24,28,["H6963"]],[28,31,["H1419"]],[31,32,["H7494"]]]},{"k":20516,"v":[[0,3,["H7307"]],[3,6,["H5375"]],[6,10,["H3947"]],[10,13,["H1980"]],[13,15,["H4751"]],[15,18,["H2534"]],[18,21,["H7307"]],[21,24,["H3027"]],[24,27,["H3068"]],[27,29,["H2389"]],[29,30,["H5921"]],[30,31,[]]]},{"k":20517,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,8,["H1473"]],[8,10,["H8512"]],[10,12,["H3427"]],[12,13,["H413"]],[13,15,["H5104"]],[15,17,["H3529"]],[17,20,["H3427"]],[20,21,["H8033"]],[21,22,["H1992"]],[22,23,["H3427"]],[23,25,["H3427"]],[25,26,["H8033"]],[26,27,["H8074"]],[27,28,["H8432"]],[28,30,["H7651"]],[30,31,["H3117"]]]},{"k":20518,"v":[[0,5,["H1961"]],[5,8,["H4480","H7097"]],[8,10,["H7651"]],[10,11,["H3117"]],[11,14,["H1697"]],[14,17,["H3068"]],[17,18,["H1961"]],[18,19,["H413"]],[19,21,["H559"]]]},{"k":20519,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,6,["H5414"]],[6,9,["H6822"]],[9,12,["H1004"]],[12,14,["H3478"]],[14,16,["H8085"]],[16,18,["H1697"]],[18,21,["H4480","H6310"]],[21,25,["H2094","(H853)"]],[25,26,["H4480"]],[26,27,[]]]},{"k":20520,"v":[[0,3,["H559"]],[3,6,["H7563"]],[6,10,["H4191","H4191"]],[10,16,["H2094","H3808"]],[16,17,["H3808"]],[17,18,["H1696"]],[18,20,["H2094"]],[20,22,["H7563"]],[22,25,["H7563"]],[25,26,["H4480","H1870"]],[26,30,["H2421"]],[30,32,["H1931"]],[32,33,["H7563"]],[33,36,["H4191"]],[36,39,["H5771"]],[39,42,["H1818"]],[42,45,["H1245"]],[45,48,["H4480","H3027"]]]},{"k":20521,"v":[[0,2,["H3588"]],[2,3,["H859"]],[3,4,["H2094"]],[4,6,["H7563"]],[6,9,["H7725"]],[9,10,["H3808"]],[10,13,["H4480","H7562"]],[13,17,["H7563"]],[17,18,["H4480","H1870"]],[18,19,["H1931"]],[19,21,["H4191"]],[21,24,["H5771"]],[24,26,["H859"]],[26,28,["H5337","(H853)"]],[28,30,["H5315"]]]},{"k":20522,"v":[[0,4,["H6662"]],[4,7,["H7725"]],[7,10,["H4480","H6664"]],[10,12,["H6213"]],[12,13,["H5766"]],[13,16,["H5414"]],[16,18,["H4383"]],[18,19,["H6440"]],[19,21,["H1931"]],[21,23,["H4191"]],[23,24,["H3588"]],[24,27,["H3808"]],[27,30,["H2094"]],[30,33,["H4191"]],[33,36,["H2403"]],[36,39,["H6666"]],[39,40,["H834"]],[40,43,["H6213"]],[43,45,["H3808"]],[45,47,["H2142"]],[47,50,["H1818"]],[50,53,["H1245"]],[53,56,["H4480","H3027"]]]},{"k":20523,"v":[[0,2,["H3588"]],[2,3,["H859"]],[3,4,["H2094"]],[4,6,["H6662"]],[6,10,["H6662"]],[10,11,["H2398"]],[11,12,["H1115"]],[12,14,["H1931"]],[14,16,["H3808"]],[16,17,["H2398"]],[17,21,["H2421","H2421"]],[21,22,["H3588"]],[22,25,["H2094"]],[25,27,["H859"]],[27,29,["H5337","(H853)"]],[29,31,["H5315"]]]},{"k":20524,"v":[[0,3,["H3027"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H8033"]],[8,9,["H5921"]],[9,13,["H559"]],[13,14,["H413"]],[14,16,["H6965"]],[16,18,["H3318"]],[18,19,["H413"]],[19,21,["H1237"]],[21,25,["H8033"]],[25,26,["H1696"]],[26,27,["H854"]],[27,28,[]]]},{"k":20525,"v":[[0,3,["H6965"]],[3,6,["H3318"]],[6,7,["H413"]],[7,9,["H1237"]],[9,11,["H2009"]],[11,13,["H3519"]],[13,16,["H3068"]],[16,17,["H5975"]],[17,18,["H8033"]],[18,21,["H3519"]],[21,22,["H834"]],[22,24,["H7200"]],[24,25,["H5921"]],[25,27,["H5104"]],[27,29,["H3529"]],[29,32,["H5307"]],[32,33,["H5921"]],[33,35,["H6440"]]]},{"k":20526,"v":[[0,3,["H7307"]],[3,4,["H935"]],[4,8,["H5975"]],[8,10,["H5921"]],[10,12,["H7272"]],[12,14,["H1696"]],[14,15,["H854"]],[15,18,["H559"]],[18,19,["H413"]],[19,21,["H935"]],[21,23,["H5462"]],[23,24,["H8432"]],[24,26,["H1004"]]]},{"k":20527,"v":[[0,2,["H859"]],[2,4,["H1121"]],[4,6,["H120"]],[6,7,["H2009"]],[7,10,["H5414"]],[10,11,["H5688"]],[11,12,["H5921"]],[12,16,["H631"]],[16,23,["H3808"]],[23,25,["H3318"]],[25,26,["H8432"]],[26,27,[]]]},{"k":20528,"v":[[0,6,["H3956"]],[6,7,["H1692"]],[7,8,["H413"]],[8,13,["H2441"]],[13,18,["H481"]],[18,21,["H3808"]],[21,22,["H1961"]],[22,26,["H376","H3198"]],[26,27,["H3588"]],[27,28,["H1992"]],[28,31,["H4805"]],[31,32,["H1004"]]]},{"k":20529,"v":[[0,4,["H1696"]],[4,5,["H854"]],[5,9,["H6605","(H853)"]],[9,11,["H6310"]],[11,15,["H559"]],[15,16,["H413"]],[16,18,["H3541"]],[18,19,["H559"]],[19,21,["H136"]],[21,22,["H3069"]],[22,25,["H8085"]],[25,28,["H8085"]],[28,32,["H2310"]],[32,35,["H2308"]],[35,36,["H3588"]],[36,37,["H1992"]],[37,40,["H4805"]],[40,41,["H1004"]]]},{"k":20530,"v":[[0,1,["H859"]],[1,3,["H1121"]],[3,5,["H120"]],[5,6,["H3947"]],[6,9,["H3843"]],[9,11,["H5414"]],[11,13,["H6440"]],[13,16,["H2710"]],[16,17,["H5921"]],[17,20,["H5892"]],[20,21,["(H853)"]],[21,22,["H3389"]]]},{"k":20531,"v":[[0,2,["H5414"]],[2,3,["H4692"]],[3,4,["H5921"]],[4,7,["H1129"]],[7,9,["H1785"]],[9,10,["H5921"]],[10,13,["H8210"]],[13,15,["H5550"]],[15,16,["H5921"]],[16,18,["H5414"]],[18,20,["H4264"]],[20,22,["H5921"]],[22,25,["H7760"]],[25,27,["H3733"]],[27,28,["H5921"]],[28,31,["H5439"]]]},{"k":20532,"v":[[0,2,["H3947"]],[2,3,["H859"]],[3,7,["H1270"]],[7,8,["H4227"]],[8,10,["H5414"]],[10,14,["H7023"]],[14,16,["H1270"]],[16,17,["H996"]],[17,21,["H5892"]],[21,23,["H3559","(H853)"]],[23,25,["H6440"]],[25,26,["H413"]],[26,31,["H1961"]],[31,32,["H4692"]],[32,37,["H6696"]],[37,38,["H5921"]],[38,40,["H1931"]],[40,44,["H226"]],[44,47,["H1004"]],[47,49,["H3478"]]]},{"k":20533,"v":[[0,1,["H7901"]],[1,2,["H859"]],[2,4,["H5921"]],[4,6,["H8042"]],[6,7,["H6654"]],[7,9,["H7760","(H853)"]],[9,11,["H5771"]],[11,14,["H1004"]],[14,16,["H3478"]],[16,17,["H5921"]],[17,22,["H4557"]],[22,25,["H3117"]],[25,26,["H834"]],[26,29,["H7901"]],[29,30,["H5921"]],[30,34,["H5375","(H853)"]],[34,36,["H5771"]]]},{"k":20534,"v":[[0,2,["H589"]],[2,4,["H5414"]],[4,6,["(H853)"]],[6,8,["H8141"]],[8,11,["H5771"]],[11,15,["H4557"]],[15,18,["H3117"]],[18,19,["H7969"]],[19,20,["H3967"]],[20,22,["H8673"]],[22,23,["H3117"]],[23,27,["H5375"]],[27,29,["H5771"]],[29,32,["H1004"]],[32,34,["H3478"]]]},{"k":20535,"v":[[0,5,["H3615","(H853)"]],[5,6,["H428"]],[6,7,["H7901"]],[7,8,["H8145"]],[8,9,["H5921"]],[9,11,["H3233"]],[11,12,["H6654"]],[12,16,["H5375","(H853)"]],[16,18,["H5771"]],[18,21,["H1004"]],[21,23,["H3063"]],[23,24,["H705"]],[24,25,["H3117"]],[25,28,["H5414"]],[28,34,["H3117","H8141","H3117","H8141"]]]},{"k":20536,"v":[[0,4,["H3559"]],[4,6,["H6440"]],[6,7,["H413"]],[7,9,["H4692"]],[9,11,["H3389"]],[11,14,["H2220"]],[14,17,["H2834"]],[17,21,["H5012"]],[21,22,["H5921"]],[22,23,[]]]},{"k":20537,"v":[[0,2,["H2009"]],[2,5,["H5414"]],[5,6,["H5688"]],[6,7,["H5921"]],[7,12,["H3808"]],[12,13,["H2015"]],[13,17,["H4480","H6654"]],[17,18,["H413"]],[18,19,["H6654"]],[19,20,["H5704"]],[20,23,["H3615"]],[23,25,["H3117"]],[25,28,["H4692"]]]},{"k":20538,"v":[[0,1,["H3947"]],[1,2,["H859"]],[2,6,["H2406"]],[6,8,["H8184"]],[8,10,["H6321"]],[10,12,["H5742"]],[12,14,["H1764"]],[14,16,["H3698"]],[16,18,["H5414"]],[18,21,["H259"]],[21,22,["H3627"]],[22,24,["H6213"]],[24,26,["H3899"]],[26,31,["H4557"]],[31,34,["H3117"]],[34,35,["H834"]],[35,36,["H859"]],[36,38,["H7901"]],[38,39,["H5921"]],[39,41,["H6654"]],[41,42,["H7969"]],[42,43,["H3967"]],[43,45,["H8673"]],[45,46,["H3117"]],[46,49,["H398"]],[49,50,[]]]},{"k":20539,"v":[[0,3,["H3978"]],[3,4,["H834"]],[4,7,["H398"]],[7,11,["H4946"]],[11,12,["H6242"]],[12,13,["H8255"]],[13,15,["H3117"]],[15,17,["H4480","H6256"]],[17,18,["H5704"]],[18,19,["H6256"]],[19,22,["H398"]],[22,23,[]]]},{"k":20540,"v":[[0,3,["H8354"]],[3,5,["H4325"]],[5,7,["H4884"]],[7,10,["H8345"]],[10,13,["H1969"]],[13,15,["H4480","H6256"]],[15,16,["H5704"]],[16,17,["H6256"]],[17,20,["H8354"]]]},{"k":20541,"v":[[0,4,["H398"]],[4,7,["H8184"]],[7,8,["H5692"]],[8,12,["H5746"]],[12,13,["H1931"]],[13,15,["H1561"]],[15,18,["H6627"]],[18,20,["H120"]],[20,23,["H5869"]]]},{"k":20542,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,6,["H3602"]],[6,9,["H1121"]],[9,11,["H3478"]],[11,12,["H398"]],[12,14,["H2931","(H853)"]],[14,15,["H3899"]],[15,18,["H1471"]],[18,19,["H834","H8033"]],[19,22,["H5080"]],[22,23,[]]]},{"k":20543,"v":[[0,2,["H559"]],[2,4,["H162"]],[4,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,9,["H5315"]],[9,11,["H3808"]],[11,13,["H2930"]],[13,17,["H4480","H5271"]],[17,20,["H5704"]],[20,21,["H6258"]],[21,24,["H3808"]],[24,25,["H398"]],[25,31,["H5038"]],[31,36,["H2966"]],[36,37,["H3808"]],[37,38,["H935"]],[38,40,["H6292"]],[40,41,["H1320"]],[41,44,["H6310"]]]},{"k":20544,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H7200"]],[6,9,["H5414"]],[9,10,["(H853)"]],[10,11,["H1241"]],[11,12,["H6832"]],[12,13,["H8478"]],[13,14,["H120"]],[14,15,["H1561"]],[15,19,["H6213","(H853)"]],[19,21,["H3899"]],[21,22,["H5921"]]]},{"k":20545,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H2009"]],[9,12,["H7665"]],[12,14,["H4294"]],[14,16,["H3899"]],[16,18,["H3389"]],[18,22,["H398"]],[22,23,["H3899"]],[23,25,["H4948"]],[25,28,["H1674"]],[28,32,["H8354"]],[32,33,["H4325"]],[33,35,["H4884"]],[35,38,["H8078"]]]},{"k":20546,"v":[[0,1,["H4616"]],[1,4,["H2637"]],[4,5,["H3899"]],[5,7,["H4325"]],[7,10,["H8074"]],[10,11,["H376"]],[11,13,["H251"]],[13,16,["H4743"]],[16,19,["H5771"]]]},{"k":20547,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H3947"]],[6,9,["H2299"]],[9,10,["H2719"]],[10,11,["H3947"]],[11,14,["H1532"]],[14,15,["H8593"]],[15,20,["H5674"]],[20,21,["H5921"]],[21,23,["H7218"]],[23,25,["H5921"]],[25,27,["H2206"]],[27,29,["H3947"]],[29,31,["H3976"]],[31,33,["H4948"]],[33,35,["H2505"]],[35,37,[]]]},{"k":20548,"v":[[0,3,["H1197"]],[3,5,["H217"]],[5,8,["H7992"]],[8,11,["H8432"]],[11,14,["H5892"]],[14,17,["H3117"]],[17,20,["H4692"]],[20,22,["H4390"]],[22,26,["H3947","(H853)"]],[26,29,["H7992"]],[29,31,["H5221"]],[31,32,["H5439"]],[32,36,["H2719"]],[36,40,["H7992"]],[40,43,["H2219"]],[43,46,["H7307"]],[46,51,["H7324"]],[51,53,["H2719"]],[53,54,["H310"]],[54,55,[]]]},{"k":20549,"v":[[0,4,["H3947"]],[4,5,["H4480","H8033"]],[5,7,["H4592"]],[7,9,["H4557"]],[9,11,["H6696"]],[11,15,["H3671"]]]},{"k":20550,"v":[[0,2,["H3947"]],[2,3,["H4480"]],[3,5,["H5750"]],[5,7,["H7993"]],[7,9,["H413"]],[9,11,["H8432"]],[11,14,["H784"]],[14,16,["H8313"]],[16,20,["H784"]],[20,22,["H4480"]],[22,25,["H784"]],[25,27,["H3318"]],[27,28,["H413"]],[28,29,["H3605"]],[29,31,["H1004"]],[31,33,["H3478"]]]},{"k":20551,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H2063"]],[6,8,["H3389"]],[8,11,["H7760"]],[11,15,["H8432"]],[15,18,["H1471"]],[18,20,["H776"]],[20,24,["H5439"]],[24,25,[]]]},{"k":20552,"v":[[0,4,["H4784","(H853)"]],[4,6,["H4941"]],[6,8,["H7564"]],[8,10,["H4480"]],[10,12,["H1471"]],[12,15,["H2708"]],[15,17,["H4480"]],[17,19,["H776"]],[19,20,["H834"]],[20,23,["H5439"]],[23,25,["H3588"]],[25,28,["H3988"]],[28,30,["H4941"]],[30,33,["H2708"]],[33,36,["H3808"]],[36,37,["H1980"]],[37,39,[]]]},{"k":20553,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H3282"]],[7,9,["H1995"]],[9,11,["H4480"]],[11,13,["H1471"]],[13,14,["H834"]],[14,17,["H5439"]],[17,21,["H3808"]],[21,22,["H1980"]],[22,25,["H2708"]],[25,26,["H3808"]],[26,28,["H6213"]],[28,30,["H4941"]],[30,31,["H3808"]],[31,33,["H6213"]],[33,37,["H4941"]],[37,40,["H1471"]],[40,41,["H834"]],[41,44,["H5439"]],[44,45,[]]]},{"k":20554,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,9,["H1571"]],[9,10,["H589"]],[10,12,["H5921"]],[12,16,["H6213"]],[16,17,["H4941"]],[17,20,["H8432"]],[20,25,["H5869"]],[25,28,["H1471"]]]},{"k":20555,"v":[[0,4,["H6213"]],[4,6,["(H853)"]],[6,8,["H834"]],[8,11,["H3808"]],[11,12,["H6213"]],[12,14,["H834"]],[14,17,["H3808"]],[17,18,["H6213"]],[18,20,["H5750"]],[20,22,["H3644"]],[22,24,["H3282"]],[24,25,["H3605"]],[25,27,["H8441"]]]},{"k":20556,"v":[[0,1,["H3651"]],[1,3,["H1"]],[3,5,["H398"]],[5,7,["H1121"]],[7,10,["H8432"]],[10,15,["H1121"]],[15,17,["H398"]],[17,19,["H1"]],[19,23,["H6213"]],[23,24,["H8201"]],[24,27,["(H853)"]],[27,29,["H3605"]],[29,30,["H7611"]],[30,35,["H2219"]],[35,37,["H3605"]],[37,39,["H7307"]]]},{"k":20557,"v":[[0,1,["H3651"]],[1,3,["H589"]],[3,4,["H2416"]],[4,5,["H5002"]],[5,7,["H136"]],[7,8,["H3069"]],[8,9,["H518","H3808"]],[9,10,["H3282"]],[10,13,["H2930","(H853)"]],[13,15,["H4720"]],[15,17,["H3605"]],[17,20,["H8251"]],[20,23,["H3605"]],[23,25,["H8441"]],[25,26,["H1571"]],[26,28,["H589"]],[28,30,["H1639"]],[30,32,["H3808"]],[32,35,["H5869"]],[35,36,["H2347"]],[36,37,["H3808"]],[37,39,["H589"]],[39,42,["H2550"]]]},{"k":20558,"v":[[0,3,["H7992"]],[3,7,["H4191"]],[7,10,["H1698"]],[10,13,["H7458"]],[13,17,["H3615"]],[17,20,["H8432"]],[20,26,["H7992"]],[26,28,["H5307"]],[28,31,["H2719"]],[31,33,["H5439"]],[33,38,["H2219"]],[38,41,["H7992"]],[41,43,["H3605"]],[43,45,["H7307"]],[45,50,["H7324"]],[50,52,["H2719"]],[52,53,["H310"]],[53,54,[]]]},{"k":20559,"v":[[0,4,["H639"]],[4,6,["H3615"]],[6,12,["H2534"]],[12,14,["H5117"]],[14,21,["H5162"]],[21,25,["H3045"]],[25,26,["H3588"]],[26,27,["H589"]],[27,29,["H3068"]],[29,31,["H1696"]],[31,35,["H7068"]],[35,39,["H3615"]],[39,41,["H2534"]],[41,43,[]]]},{"k":20560,"v":[[0,4,["H5414"]],[4,6,["H2723"]],[6,9,["H2781"]],[9,12,["H1471"]],[12,13,["H834"]],[13,16,["H5439"]],[16,20,["H5869"]],[20,22,["H3605"]],[22,25,["H5674"]]]},{"k":20561,"v":[[0,4,["H1961"]],[4,6,["H2781"]],[6,9,["H1422"]],[9,11,["H4148"]],[11,14,["H4923"]],[14,17,["H1471"]],[17,18,["H834"]],[18,21,["H5439"]],[21,26,["H6213"]],[26,27,["H8201"]],[27,31,["H639"]],[31,34,["H2534"]],[34,37,["H2534"]],[37,38,["H8433"]],[38,39,["H589"]],[39,41,["H3068"]],[41,43,["H1696"]],[43,44,[]]]},{"k":20562,"v":[[0,4,["H7971"]],[4,7,["(H853)"]],[7,8,["H7451"]],[8,9,["H2671"]],[9,11,["H7458"]],[11,12,["H834"]],[12,14,["H1961"]],[14,17,["H4889"]],[17,19,["H834"]],[19,22,["H7971","(H853)"]],[22,24,["H7843"]],[24,29,["H3254"]],[29,31,["H7458"]],[31,32,["H5921"]],[32,36,["H7665"]],[36,38,["H4294"]],[38,40,["H3899"]]]},{"k":20563,"v":[[0,4,["H7971"]],[4,5,["H5921"]],[5,7,["H7458"]],[7,9,["H7451"]],[9,10,["H2416"]],[10,14,["H7921"]],[14,17,["H1698"]],[17,19,["H1818"]],[19,21,["H5674"]],[21,27,["H935"]],[27,29,["H2719"]],[29,30,["H5921"]],[30,32,["H589"]],[32,34,["H3068"]],[34,36,["H1696"]],[36,37,[]]]},{"k":20564,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20565,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H7760"]],[4,6,["H6440"]],[6,7,["H413"]],[7,9,["H2022"]],[9,11,["H3478"]],[11,13,["H5012"]],[13,14,["H413"]],[14,15,[]]]},{"k":20566,"v":[[0,2,["H559"]],[2,4,["H2022"]],[4,6,["H3478"]],[6,7,["H8085"]],[7,9,["H1697"]],[9,12,["H136"]],[12,13,["H3069"]],[13,14,["H3541"]],[14,15,["H559"]],[15,17,["H136"]],[17,18,["H3069"]],[18,21,["H2022"]],[21,25,["H1389"]],[25,28,["H650"]],[28,32,["H1516"]],[32,33,["H2009"]],[33,36,["H589"]],[36,38,["H935"]],[38,40,["H2719"]],[40,41,["H5921"]],[41,46,["H6"]],[46,49,["H1116"]]]},{"k":20567,"v":[[0,3,["H4196"]],[3,6,["H8074"]],[6,9,["H2553"]],[9,12,["H7665"]],[12,17,["H5307"]],[17,19,["H2491"]],[19,21,["H6440"]],[21,23,["H1544"]]]},{"k":20568,"v":[[0,4,["H5414","(H853)"]],[4,7,["H6297"]],[7,10,["H1121"]],[10,12,["H3478"]],[12,13,["H6440"]],[13,15,["H1544"]],[15,19,["H2219","(H853)"]],[19,21,["H6106"]],[21,23,["H5439"]],[23,25,["H4196"]]]},{"k":20569,"v":[[0,2,["H3605"]],[2,4,["H4186"]],[4,6,["H5892"]],[6,10,["H2717"]],[10,14,["H1116"]],[14,17,["H3456"]],[17,18,["H4616"]],[18,20,["H4196"]],[20,24,["H2717"]],[24,27,["H816"]],[27,30,["H1544"]],[30,33,["H7665"]],[33,35,["H7673"]],[35,38,["H2553"]],[38,42,["H1438"]],[42,45,["H4639"]],[45,48,["H4229"]]]},{"k":20570,"v":[[0,3,["H2491"]],[3,5,["H5307"]],[5,8,["H8432"]],[8,14,["H3045"]],[14,15,["H3588"]],[15,16,["H589"]],[16,19,["H3068"]]]},{"k":20571,"v":[[0,6,["H3498"]],[6,10,["H1961"]],[10,14,["H6412"]],[14,16,["H2719"]],[16,19,["H1471"]],[19,24,["H2219"]],[24,27,["H776"]]]},{"k":20572,"v":[[0,4,["H6412"]],[4,8,["H2142"]],[8,12,["H1471"]],[12,13,["H834","H8033"]],[13,18,["H7617"]],[18,19,["H834"]],[19,22,["H7665"]],[22,23,["H854"]],[23,25,["H2181"]],[25,26,["H3820"]],[26,27,["H834"]],[27,29,["H5493"]],[29,30,["H4480","H5921"]],[30,33,["H854"]],[33,35,["H5869"]],[35,39,["H2181"]],[39,40,["H310"]],[40,42,["H1544"]],[42,46,["H6962"]],[46,47,["H6440"]],[47,48,["H413"]],[48,50,["H7451"]],[50,51,["H834"]],[51,54,["H6213"]],[54,56,["H3605"]],[56,58,["H8441"]]]},{"k":20573,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,14,["H3808"]],[14,15,["H1696"]],[15,17,["H413","H2600"]],[17,21,["H6213"]],[21,22,["H2063"]],[22,23,["H7451"]],[23,25,[]]]},{"k":20574,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H5221"]],[6,9,["H3709"]],[9,11,["H7554"]],[11,14,["H7272"]],[14,16,["H559"]],[16,17,["H253"]],[17,18,["H413"]],[18,19,["H3605"]],[19,21,["H7451"]],[21,22,["H8441"]],[22,25,["H1004"]],[25,27,["H3478"]],[27,28,["H834"]],[28,31,["H5307"]],[31,34,["H2719"]],[34,37,["H7458"]],[37,41,["H1698"]]]},{"k":20575,"v":[[0,5,["H7350"]],[5,7,["H4191"]],[7,10,["H1698"]],[10,15,["H7138"]],[15,17,["H5307"]],[17,20,["H2719"]],[20,24,["H7604"]],[24,27,["H5341"]],[27,29,["H4191"]],[29,32,["H7458"]],[32,36,["H3615"]],[36,38,["H2534"]],[38,40,[]]]},{"k":20576,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,12,["H2491"]],[12,15,["H1961"]],[15,16,["H8432"]],[16,18,["H1544"]],[18,20,["H5439"]],[20,22,["H4196"]],[22,23,["H413"]],[23,24,["H3605"]],[24,25,["H7311"]],[25,26,["H1389"]],[26,28,["H3605"]],[28,30,["H7218"]],[30,33,["H2022"]],[33,35,["H8478"]],[35,36,["H3605"]],[36,37,["H7488"]],[37,38,["H6086"]],[38,40,["H8478"]],[40,41,["H3605"]],[41,42,["H5687"]],[42,43,["H424"]],[43,45,["H4725"]],[45,46,["H834","H8033"]],[46,49,["H5414"]],[49,50,["H5207"]],[50,51,["H7381"]],[51,53,["H3605"]],[53,55,["H1544"]]]},{"k":20577,"v":[[0,5,["H5186","(H853)"]],[5,7,["H3027"]],[7,8,["H5921"]],[8,11,["H5414","(H853)"]],[11,13,["H776"]],[13,14,["H8077"]],[14,17,["H4923"]],[17,20,["H4480","H4057"]],[20,22,["H1689"]],[22,24,["H3605"]],[24,26,["H4186"]],[26,30,["H3045"]],[30,31,["H3588"]],[31,32,["H589"]],[32,35,["H3068"]]]},{"k":20578,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20579,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H3541"]],[6,7,["H559"]],[7,9,["H136"]],[9,10,["H3069"]],[10,13,["H127"]],[13,15,["H3478"]],[15,17,["H7093"]],[17,19,["H7093"]],[19,21,["H935"]],[21,22,["H5921"]],[22,24,["H702"]],[24,25,["H3671"]],[25,28,["H776"]]]},{"k":20580,"v":[[0,1,["H6258"]],[1,4,["H7093"]],[4,6,["H5921"]],[6,11,["H7971"]],[11,13,["H639"]],[13,18,["H8199"]],[18,23,["H1870"]],[23,26,["H5414"]],[26,27,["H5921"]],[27,28,["(H853)"]],[28,29,["H3605"]],[29,31,["H8441"]]]},{"k":20581,"v":[[0,3,["H5869"]],[3,5,["H3808"]],[5,6,["H2347","H5921"]],[6,8,["H3808"]],[8,12,["H2550"]],[12,13,["H3588"]],[13,16,["H5414"]],[16,18,["H1870"]],[18,19,["H5921"]],[19,23,["H8441"]],[23,25,["H1961"]],[25,28,["H8432"]],[28,34,["H3045"]],[34,35,["H3588"]],[35,36,["H589"]],[36,39,["H3068"]]]},{"k":20582,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,7,["H7451"]],[7,9,["H259"]],[9,10,["H7451"]],[10,11,["H2009"]],[11,13,["H935"]]]},{"k":20583,"v":[[0,2,["H7093"]],[2,4,["H935"]],[4,6,["H7093"]],[6,8,["H935"]],[8,10,["H6974"]],[10,11,["H413"]],[11,13,["H2009"]],[13,16,["H935"]]]},{"k":20584,"v":[[0,2,["H6843"]],[2,4,["H935"]],[4,5,["H413"]],[5,10,["H3427"]],[10,13,["H776"]],[13,15,["H6256"]],[15,17,["H935"]],[17,19,["H3117"]],[19,21,["H4103"]],[21,23,["H7138"]],[23,25,["H3808"]],[25,28,["H1906"]],[28,31,["H2022"]]]},{"k":20585,"v":[[0,1,["H6258"]],[1,4,["H4480","H7138"]],[4,6,["H8210"]],[6,8,["H2534"]],[8,9,["H5921"]],[9,12,["H3615"]],[12,14,["H639"]],[14,20,["H8199"]],[20,25,["H1870"]],[25,28,["H5414","H5921"]],[28,30,["(H853)"]],[30,31,["H3605"]],[31,33,["H8441"]]]},{"k":20586,"v":[[0,3,["H5869"]],[3,5,["H3808"]],[5,6,["H2347"]],[6,7,["H3808"]],[7,11,["H2550"]],[11,14,["H5414","H5921"]],[14,19,["H1870"]],[19,22,["H8441"]],[22,24,["H1961"]],[24,27,["H8432"]],[27,33,["H3045"]],[33,34,["H3588"]],[34,35,["H589"]],[35,38,["H3068"]],[38,40,["H5221"]]]},{"k":20587,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H2009"]],[4,7,["H935"]],[7,9,["H6843"]],[9,12,["H3318"]],[12,14,["H4294"]],[14,16,["H6692"]],[16,17,["H2087"]],[17,19,["H6524"]]]},{"k":20588,"v":[[0,1,["H2555"]],[1,4,["H6965"]],[4,7,["H4294"]],[7,9,["H7562"]],[9,10,["H3808"]],[10,11,["H4480"]],[11,15,["H3808"]],[15,18,["H4480","H1995"]],[18,19,["H3808"]],[19,23,["H4480","H1991"]],[23,24,["H3808"]],[24,28,["H5089"]],[28,30,[]]]},{"k":20589,"v":[[0,2,["H6256"]],[2,4,["H935"]],[4,6,["H3117"]],[6,8,["H5060"]],[8,10,["H408"]],[10,12,["H7069"]],[12,13,["H8055"]],[13,14,["H408"]],[14,16,["H4376"]],[16,17,["H56"]],[17,18,["H3588"]],[18,19,["H2740"]],[19,21,["H413"]],[21,22,["H3605"]],[22,24,["H1995"]],[24,25,[]]]},{"k":20590,"v":[[0,1,["H3588"]],[1,3,["H4376"]],[3,5,["H3808"]],[5,6,["H7725"]],[6,7,["H413"]],[7,11,["H4465"]],[11,15,["H5750"]],[15,16,["H2416","H2416"]],[16,17,["H3588"]],[17,19,["H2377"]],[19,21,["H413"]],[21,23,["H3605"]],[23,24,["H1995"]],[24,28,["H3808"]],[28,29,["H7725"]],[29,30,["H3808"]],[30,32,["H376"]],[32,34,["H2388"]],[34,37,["H5771"]],[37,40,["H2416"]]]},{"k":20591,"v":[[0,3,["H8628"]],[3,5,["H8619"]],[5,10,["H3559","H3605"]],[10,12,["H369"]],[12,13,["H1980"]],[13,16,["H4421"]],[16,17,["H3588"]],[17,19,["H2740"]],[19,21,["H413"]],[21,22,["H3605"]],[22,24,["H1995"]],[24,25,[]]]},{"k":20592,"v":[[0,2,["H2719"]],[2,4,["H2351"]],[4,7,["H1698"]],[7,10,["H7458"]],[10,11,["H4480","H1004"]],[11,13,["H834"]],[13,17,["H7704"]],[17,19,["H4191"]],[19,22,["H2719"]],[22,25,["H834"]],[25,29,["H5892"]],[29,30,["H7458"]],[30,32,["H1698"]],[32,34,["H398"]],[34,35,[]]]},{"k":20593,"v":[[0,4,["H6403"]],[4,8,["H6412"]],[8,11,["H1961"]],[11,12,["H413"]],[12,14,["H2022"]],[14,16,["H3123"]],[16,19,["H1516"]],[19,20,["H3605"]],[20,23,["H1993"]],[23,25,["H376"]],[25,28,["H5771"]]]},{"k":20594,"v":[[0,1,["H3605"]],[1,2,["H3027"]],[2,5,["H7503"]],[5,7,["H3605"]],[7,8,["H1290"]],[8,11,["H1980"]],[11,13,["H4325"]]]},{"k":20595,"v":[[0,4,["H2296"]],[4,7,["H8242"]],[7,9,["H6427"]],[9,11,["H3680"]],[11,14,["H955"]],[14,17,["H413"]],[17,18,["H3605"]],[18,19,["H6440"]],[19,21,["H7144"]],[21,23,["H3605"]],[23,25,["H7218"]]]},{"k":20596,"v":[[0,3,["H7993"]],[3,5,["H3701"]],[5,8,["H2351"]],[8,11,["H2091"]],[11,13,["H1961"]],[13,14,["H5079"]],[14,16,["H3701"]],[16,19,["H2091"]],[19,21,["H3808"]],[21,23,["H3201"]],[23,25,["H5337"]],[25,29,["H3117"]],[29,32,["H5678"]],[32,35,["H3068"]],[35,38,["H3808"]],[38,39,["H7646"]],[39,41,["H5315"]],[41,42,["H3808"]],[42,43,["H4390"]],[43,45,["H4578"]],[45,46,["H3588"]],[46,48,["H1961"]],[48,50,["H4383"]],[50,53,["H5771"]]]},{"k":20597,"v":[[0,4,["H6643"]],[4,7,["H5716"]],[7,9,["H7760"]],[9,12,["H1347"]],[12,15,["H6213"]],[15,17,["H6754"]],[17,20,["H8441"]],[20,25,["H8251"]],[25,27,["H5921","H3651"]],[27,30,["H5414"]],[30,32,["H5079"]],[32,34,[]]]},{"k":20598,"v":[[0,4,["H5414"]],[4,8,["H3027"]],[8,11,["H2114"]],[11,14,["H957"]],[14,18,["H7563"]],[18,21,["H776"]],[21,24,["H7998"]],[24,28,["H2490"]],[28,29,[]]]},{"k":20599,"v":[[0,2,["H6440"]],[2,5,["H5437"]],[5,7,["H4480"]],[7,12,["H2490","(H853)"]],[12,14,["H6845"]],[14,18,["H6530"]],[18,20,["H935"]],[20,24,["H2490"]],[24,25,[]]]},{"k":20600,"v":[[0,1,["H6213"]],[1,3,["H7569"]],[3,4,["H3588"]],[4,6,["H776"]],[6,8,["H4390"]],[8,10,["H1818"]],[10,11,["H4941"]],[11,14,["H5892"]],[14,16,["H4390"]],[16,18,["H2555"]]]},{"k":20601,"v":[[0,4,["H935"]],[4,6,["H7451"]],[6,9,["H1471"]],[9,13,["H3423","(H853)"]],[13,15,["H1004"]],[15,21,["H1347"]],[21,24,["H5794"]],[24,26,["H7673"]],[26,30,["H4720"]],[30,33,["H2490"]]]},{"k":20602,"v":[[0,1,["H7089"]],[1,2,["H935"]],[2,6,["H1245"]],[6,7,["H7965"]],[7,12,["H369"]]]},{"k":20603,"v":[[0,1,["H1943"]],[1,3,["H935"]],[3,4,["H5921"]],[4,5,["H1943"]],[5,7,["H8052"]],[7,9,["H1961"]],[9,10,["H413"]],[10,11,["H8052"]],[11,15,["H1245"]],[15,17,["H2377"]],[17,20,["H4480","H5030"]],[20,23,["H8451"]],[23,25,["H6"]],[25,28,["H4480","H3548"]],[28,30,["H6098"]],[30,33,["H4480","H2205"]]]},{"k":20604,"v":[[0,2,["H4428"]],[2,4,["H56"]],[4,7,["H5387"]],[7,10,["H3847"]],[10,12,["H8077"]],[12,15,["H3027"]],[15,18,["H5971"]],[18,21,["H776"]],[21,24,["H926"]],[24,27,["H6213"]],[27,32,["H4480","H1870"]],[32,37,["H4941"]],[37,40,["H8199"]],[40,45,["H3045"]],[45,46,["H3588"]],[46,47,["H589"]],[47,50,["H3068"]]]},{"k":20605,"v":[[0,5,["H1961"]],[5,8,["H8345"]],[8,9,["H8141"]],[9,12,["H8345"]],[12,16,["H2568"]],[16,20,["H2320"]],[20,22,["H589"]],[22,23,["H3427"]],[23,26,["H1004"]],[26,29,["H2205"]],[29,31,["H3063"]],[31,32,["H3427"]],[32,33,["H6440"]],[33,37,["H3027"]],[37,40,["H136"]],[40,41,["H3069"]],[41,42,["H5307"]],[42,43,["H8033"]],[43,44,["H5921"]],[44,45,[]]]},{"k":20606,"v":[[0,3,["H7200"]],[3,5,["H2009"]],[5,7,["H1823"]],[7,10,["H4758"]],[10,12,["H784"]],[12,15,["H4480","H4758"]],[15,18,["H4975"]],[18,20,["H4295"]],[20,21,["H784"]],[21,25,["H4480","H4975"]],[25,27,["H4605"]],[27,30,["H4758"]],[30,32,["H2096"]],[32,35,["H5869"]],[35,37,["H2830"]]]},{"k":20607,"v":[[0,4,["H7971"]],[4,6,["H8403"]],[6,9,["H3027"]],[9,11,["H3947"]],[11,15,["H6734"]],[15,18,["H7218"]],[18,21,["H7307"]],[21,24,["H5375","(H853)"]],[24,25,["H996"]],[25,27,["H776"]],[27,30,["H8064"]],[30,32,["H935"]],[32,36,["H4759"]],[36,38,["H430"]],[38,40,["H3389"]],[40,41,["H413"]],[41,43,["H6607"]],[43,46,["H6442"]],[46,47,["H8179"]],[47,49,["H6437"]],[49,52,["H6828"]],[52,53,["H834","H8033"]],[53,56,["H4186"]],[56,59,["H5566"]],[59,61,["H7068"]],[61,65,["H7065"]]]},{"k":20608,"v":[[0,2,["H2009"]],[2,4,["H3519"]],[4,7,["H430"]],[7,9,["H3478"]],[9,11,["H8033"]],[11,15,["H4758"]],[15,16,["H834"]],[16,18,["H7200"]],[18,21,["H1237"]]]},{"k":20609,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,10,["H5375"]],[10,12,["H5869"]],[12,13,["H4994"]],[13,15,["H1870"]],[15,18,["H6828"]],[18,22,["H5375"]],[22,24,["H5869"]],[24,26,["H1870"]],[26,29,["H6828"]],[29,31,["H2009"]],[31,32,["H4480","H6828"]],[32,35,["H8179"]],[35,38,["H4196"]],[38,39,["H2088"]],[39,40,["H5566"]],[40,42,["H7068"]],[42,45,["H872"]]]},{"k":20610,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H7200"]],[9,10,["H859"]],[10,11,["H4100"]],[11,12,["H1992"]],[12,13,["H6213"]],[13,16,["H1419"]],[16,17,["H8441"]],[17,18,["H834"]],[18,20,["H1004"]],[20,22,["H3478"]],[22,23,["H6213"]],[23,24,["H6311"]],[24,30,["H7368"]],[30,31,["H4480","H5921"]],[31,33,["H4720"]],[33,38,["H7725","H5750"]],[38,42,["H7200"]],[42,43,["H1419"]],[43,44,["H8441"]]]},{"k":20611,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H6607"]],[7,10,["H2691"]],[10,14,["H7200"]],[14,15,["H2009"]],[15,16,["H259"]],[16,17,["H2356"]],[17,20,["H7023"]]]},{"k":20612,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H2864"]],[9,10,["H4994"]],[10,13,["H7023"]],[13,18,["H2864"]],[18,21,["H7023"]],[21,22,["H2009"]],[22,23,["H259"]],[23,24,["H6607"]]]},{"k":20613,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H935"]],[7,9,["H7200","(H853)"]],[9,11,["H7451"]],[11,12,["H8441"]],[12,13,["H834"]],[13,14,["H1992"]],[14,15,["H6213"]],[15,16,["H6311"]]]},{"k":20614,"v":[[0,4,["H935"]],[4,6,["H7200"]],[6,8,["H2009"]],[8,9,["H3605"]],[9,10,["H8403"]],[10,13,["H7431"]],[13,15,["H8263"]],[15,16,["H929"]],[16,18,["H3605"]],[18,20,["H1544"]],[20,23,["H1004"]],[23,25,["H3478"]],[25,26,["H2707"]],[26,27,["H5921"]],[27,29,["H7023"]],[29,31,["H5439"]]]},{"k":20615,"v":[[0,3,["H5975"]],[3,4,["H6440"]],[4,6,["H7657"]],[6,7,["H376"]],[7,10,["H4480","H2205"]],[10,13,["H1004"]],[13,15,["H3478"]],[15,19,["H8432"]],[19,22,["H5975"]],[22,23,["H2970"]],[23,25,["H1121"]],[25,27,["H8227"]],[27,30,["H376"]],[30,32,["H4730"]],[32,35,["H3027"]],[35,38,["H6282"]],[38,39,["H6051"]],[39,41,["H7004"]],[41,43,["H5927"]]]},{"k":20616,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,11,["H7200"]],[11,12,["H834"]],[12,14,["H2205"]],[14,17,["H1004"]],[17,19,["H3478"]],[19,20,["H6213"]],[20,23,["H2822"]],[23,25,["H376"]],[25,28,["H2315"]],[28,31,["H4906"]],[31,32,["H3588"]],[32,34,["H559"]],[34,36,["H3068"]],[36,37,["H7200"]],[37,39,["H369"]],[39,41,["H3068"]],[41,43,["H5800","(H853)"]],[43,45,["H776"]]]},{"k":20617,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,9,["H7725","H5750"]],[9,13,["H7200"]],[13,14,["H1419"]],[14,15,["H8441"]],[15,16,["H834"]],[16,17,["H1992"]],[17,18,["H6213"]]]},{"k":20618,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H6607"]],[7,10,["H8179"]],[10,13,["H3068"]],[13,14,["H1004"]],[14,15,["H834"]],[15,17,["H413"]],[17,19,["H6828"]],[19,21,["H2009"]],[21,22,["H8033"]],[22,23,["H3427"]],[23,24,["H802"]],[24,25,["H1058"]],[25,26,["H854"]],[26,27,["H8542"]]]},{"k":20619,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,8,["H7200"]],[8,11,["H1121"]],[11,13,["H120"]],[13,17,["H7725","H5750"]],[17,21,["H7200"]],[21,22,["H1419"]],[22,23,["H8441"]],[23,25,["H4480","H428"]]]},{"k":20620,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H6442"]],[7,8,["H2691"]],[8,11,["H3068"]],[11,12,["H1004"]],[12,14,["H2009"]],[14,17,["H6607"]],[17,20,["H1964"]],[20,23,["H3068"]],[23,24,["H996"]],[24,26,["H197"]],[26,29,["H4196"]],[29,32,["H2568"]],[32,34,["H6242"]],[34,35,["H376"]],[35,38,["H268"]],[38,39,["H413"]],[39,41,["H1964"]],[41,44,["H3068"]],[44,47,["H6440"]],[47,50,["H6924"]],[50,52,["H1992"]],[52,53,["H7812"]],[53,55,["H8121"]],[55,58,["H6924"]]]},{"k":20621,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,8,["H7200"]],[8,11,["H1121"]],[11,13,["H120"]],[13,18,["H7043"]],[18,21,["H1004"]],[21,23,["H3063"]],[23,26,["H4480","H6213","(H853)"]],[26,28,["H8441"]],[28,29,["H834"]],[29,31,["H6213"]],[31,32,["H6311"]],[32,33,["H3588"]],[33,36,["H4390","(H853)"]],[36,38,["H776"]],[38,40,["H2555"]],[40,43,["H7725"]],[43,48,["H3707"]],[48,50,["H2009"]],[50,52,["H7971","(H853)"]],[52,54,["H2156"]],[54,55,["H413"]],[55,57,["H639"]]]},{"k":20622,"v":[[0,3,["H589"]],[3,4,["H1571"]],[4,5,["H6213"]],[5,7,["H2534"]],[7,9,["H5869"]],[9,11,["H3808"]],[11,12,["H2347"]],[12,13,["H3808"]],[13,17,["H2550"]],[17,21,["H7121"]],[21,24,["H241"]],[24,27,["H1419"]],[27,28,["H6963"]],[28,32,["H3808"]],[32,33,["H8085"]],[33,34,[]]]},{"k":20623,"v":[[0,2,["H7121"]],[2,6,["H241"]],[6,9,["H1419"]],[9,10,["H6963"]],[10,11,["H559"]],[11,16,["H6486"]],[16,19,["H5892"]],[19,22,["H7126"]],[22,25,["H376"]],[25,28,["H4892"]],[28,29,["H3627"]],[29,32,["H3027"]]]},{"k":20624,"v":[[0,2,["H2009"]],[2,3,["H8337"]],[3,4,["H376"]],[4,5,["H935"]],[5,8,["H4480","H1870"]],[8,11,["H5945"]],[11,12,["H8179"]],[12,13,["H834"]],[13,14,["H6437"]],[14,17,["H6828"]],[17,20,["H376"]],[20,22,["H4660"]],[22,23,["H3627"]],[23,26,["H3027"]],[26,28,["H259"]],[28,29,["H376"]],[29,30,["H8432"]],[30,33,["H3847"]],[33,35,["H906"]],[35,38,["H5608"]],[38,39,["H7083"]],[39,42,["H4975"]],[42,46,["H935"]],[46,48,["H5975"]],[48,49,["H681"]],[49,51,["H5178"]],[51,52,["H4196"]]]},{"k":20625,"v":[[0,3,["H3519"]],[3,6,["H430"]],[6,8,["H3478"]],[8,11,["H5927"]],[11,12,["H4480","H5921"]],[12,14,["H3742"]],[14,15,["H834","H5921"]],[15,17,["H1961"]],[17,18,["H413"]],[18,20,["H4670"]],[20,23,["H1004"]],[23,26,["H7121"]],[26,27,["H413"]],[27,29,["H376"]],[29,30,["H3847"]],[30,32,["H906"]],[32,33,["H834"]],[33,36,["H5608"]],[36,37,["H7083"]],[37,40,["H4975"]]]},{"k":20626,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,8,["H5674"]],[8,10,["H8432"]],[10,13,["H5892"]],[13,16,["H8432"]],[16,18,["H3389"]],[18,20,["H8427"]],[20,22,["H8420"]],[22,23,["H5921"]],[23,25,["H4696"]],[25,28,["H376"]],[28,30,["H584"]],[30,33,["H602"]],[33,34,["H5921"]],[34,35,["H3605"]],[35,37,["H8441"]],[37,40,["H6213"]],[40,43,["H8432"]],[43,44,[]]]},{"k":20627,"v":[[0,4,["H428"]],[4,6,["H559"]],[6,9,["H241"]],[9,10,["H5674"]],[10,12,["H310"]],[12,16,["H5892"]],[16,18,["H5221"]],[18,20,["H408"]],[20,22,["H5869"]],[22,23,["H2347"]],[23,24,["H408"]],[24,27,["H2550"]]]},{"k":20628,"v":[[0,1,["H2026"]],[1,2,["H4889"]],[2,3,["H2205"]],[3,5,["H970"]],[5,7,["H1330"]],[7,10,["H2945"]],[10,12,["H802"]],[12,16,["H5066","H408","H5921"]],[16,17,["H3605"]],[17,18,["H376"]],[18,19,["H5921"]],[19,20,["H834"]],[20,23,["H8420"]],[23,25,["H2490"]],[25,28,["H4480","H4720"]],[28,31,["H2490"]],[31,34,["H2205"]],[34,35,["H376"]],[35,36,["H834"]],[36,38,["H6440"]],[38,40,["H1004"]]]},{"k":20629,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H2930","(H853)"]],[6,8,["H1004"]],[8,10,["H4390","(H853)"]],[10,12,["H2691"]],[12,15,["H2491"]],[15,18,["H3318"]],[18,22,["H3318"]],[22,24,["H5221"]],[24,27,["H5892"]]]},{"k":20630,"v":[[0,5,["H1961"]],[5,9,["H5221"]],[9,12,["H589"]],[12,14,["H7604"]],[14,17,["H5307"]],[17,18,["H5921"]],[18,20,["H6440"]],[20,22,["H2199"]],[22,24,["H559"]],[24,25,["H162"]],[25,26,["H136"]],[26,27,["H3069"]],[27,29,["H859"]],[29,30,["H7843","(H853)"]],[30,31,["H3605"]],[31,33,["H7611"]],[33,35,["H3478"]],[35,39,["H8210","(H853)"]],[39,42,["H2534"]],[42,43,["H5921"]],[43,44,["H3389"]]]},{"k":20631,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,7,["H5771"]],[7,10,["H1004"]],[10,12,["H3478"]],[12,14,["H3063"]],[14,16,["H3966","H3966"]],[16,17,["H1419"]],[17,20,["H776"]],[20,22,["H4390"]],[22,24,["H1818"]],[24,27,["H5892"]],[27,28,["H4390"]],[28,30,["H4297"]],[30,31,["H3588"]],[31,33,["H559"]],[33,35,["H3068"]],[35,37,["H5800","(H853)"]],[37,39,["H776"]],[39,42,["H3068"]],[42,43,["H7200"]],[43,44,["H369"]]]},{"k":20632,"v":[[0,4,["H589"]],[4,5,["H1571"]],[5,7,["H5869"]],[7,9,["H3808"]],[9,10,["H2347"]],[10,11,["H3808"]],[11,15,["H2550"]],[15,19,["H5414"]],[19,21,["H1870"]],[21,24,["H7218"]]]},{"k":20633,"v":[[0,2,["H2009"]],[2,4,["H376"]],[4,5,["H3847"]],[5,7,["H906"]],[7,8,["H834"]],[8,11,["H7083"]],[11,14,["H4975"]],[14,15,["H7725"]],[15,17,["H1697"]],[17,18,["H559"]],[18,21,["H6213"]],[21,22,["H3605","H834"]],[22,25,["H6680"]],[25,26,[]]]},{"k":20634,"v":[[0,3,["H7200"]],[3,5,["H2009"]],[5,6,["H413"]],[6,8,["H7549"]],[8,9,["H834"]],[9,11,["H5921"]],[11,13,["H7218"]],[13,16,["H3742"]],[16,18,["H7200"]],[18,19,["H5921"]],[19,25,["H5601"]],[25,26,["H68"]],[26,29,["H4758"]],[29,32,["H1823"]],[32,35,["H3678"]]]},{"k":20635,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H376"]],[6,7,["H3847"]],[7,9,["H906"]],[9,11,["H559"]],[11,13,["H935","H413"]],[13,14,["H996"]],[14,16,["H1534"]],[16,18,["H8478"]],[18,20,["H3742"]],[20,22,["H4390"]],[22,24,["H2651"]],[24,26,["H1513"]],[26,28,["H784"]],[28,30,["H4480","H996"]],[30,32,["H3742"]],[32,34,["H2236"]],[34,36,["H5921"]],[36,38,["H5892"]],[38,41,["H935"]],[41,45,["H5869"]]]},{"k":20636,"v":[[0,3,["H3742"]],[3,4,["H5975"]],[4,8,["H4480","H3225"]],[8,11,["H1004"]],[11,14,["H376"]],[14,16,["H935"]],[16,19,["H6051"]],[19,20,["H4390"]],[20,22,["H6442","(H853)"]],[22,23,["H2691"]]]},{"k":20637,"v":[[0,3,["H3519"]],[3,6,["H3068"]],[6,8,["H7311"]],[8,9,["H4480","H5921"]],[9,11,["H3742"]],[11,14,["H5921"]],[14,16,["H4670"]],[16,19,["H1004"]],[19,22,["H1004"]],[22,24,["H4390"]],[24,25,["H854"]],[25,27,["H6051"]],[27,30,["H2691"]],[30,32,["H4390"]],[32,33,["H854"]],[33,35,["H5051"]],[35,38,["H3068"]],[38,39,["H3519"]]]},{"k":20638,"v":[[0,3,["H6963"]],[3,6,["H3742"]],[6,7,["H3671"]],[7,9,["H8085"]],[9,11,["H5704"]],[11,13,["H2435"]],[13,14,["H2691"]],[14,17,["H6963"]],[17,20,["H7706"]],[20,21,["H410"]],[21,24,["H1696"]]]},{"k":20639,"v":[[0,5,["H1961"]],[5,10,["H6680","(H853)"]],[10,12,["H376"]],[12,13,["H3847"]],[13,15,["H906"]],[15,16,["H559"]],[16,17,["H3947"]],[17,18,["H784"]],[18,20,["H4480","H996"]],[20,22,["H1534"]],[22,24,["H4480","H996"]],[24,26,["H3742"]],[26,30,["H935"]],[30,32,["H5975"]],[32,33,["H681"]],[33,35,["H212"]]]},{"k":20640,"v":[[0,3,["H3742"]],[3,5,["H7971","(H853)"]],[5,7,["H3027"]],[7,9,["H4480","H996"]],[9,11,["H3742"]],[11,12,["H413"]],[12,14,["H784"]],[14,15,["H834"]],[15,17,["H996"]],[17,19,["H3742"]],[19,21,["H5375"]],[21,24,["H5414"]],[24,26,["H413"]],[26,28,["H2651"]],[28,33,["H3847"]],[33,35,["H906"]],[35,37,["H3947"]],[37,41,["H3318"]]]},{"k":20641,"v":[[0,3,["H7200"]],[3,6,["H3742"]],[6,8,["H8403"]],[8,11,["H120"]],[11,12,["H3027"]],[12,13,["H8478"]],[13,15,["H3671"]]]},{"k":20642,"v":[[0,4,["H7200"]],[4,5,["H2009"]],[5,7,["H702"]],[7,8,["H212"]],[8,9,["H681"]],[9,11,["H3742"]],[11,12,["H259"]],[12,13,["H212"]],[13,14,["H681"]],[14,15,["H259"]],[15,16,["H3742"]],[16,18,["H259"]],[18,19,["H212"]],[19,20,["H681"]],[20,21,["H259"]],[21,22,["H3742"]],[22,25,["H4758"]],[25,28,["H212"]],[28,32,["H5869"]],[32,35,["H8658"]],[35,36,["H68"]]]},{"k":20643,"v":[[0,5,["H4758"]],[5,7,["H702"]],[7,9,["H259"]],[9,10,["H1823"]],[10,12,["H834"]],[12,14,["H212"]],[14,16,["H1961"]],[16,19,["H8432"]],[19,22,["H212"]]]},{"k":20644,"v":[[0,3,["H1980"]],[3,5,["H1980"]],[5,6,["H413"]],[6,8,["H702"]],[8,9,["H7253"]],[9,11,["H5437"]],[11,12,["H3808"]],[12,15,["H1980"]],[15,16,["H3588"]],[16,19,["H4725"]],[19,20,["H834"]],[20,22,["H7218"]],[22,23,["H6437"]],[23,25,["H1980","H310"]],[25,28,["H5437"]],[28,29,["H3808"]],[29,32,["H1980"]]]},{"k":20645,"v":[[0,3,["H3605"]],[3,4,["H1320"]],[4,7,["H1354"]],[7,10,["H3027"]],[10,13,["H3671"]],[13,16,["H212"]],[16,18,["H4392"]],[18,20,["H5869"]],[20,22,["H5439"]],[22,25,["H212"]],[25,28,["H702"]],[28,29,[]]]},{"k":20646,"v":[[0,4,["H212"]],[4,7,["H7121"]],[7,12,["H241"]],[12,14,["H1534"]]]},{"k":20647,"v":[[0,3,["H259"]],[3,5,["H702"]],[5,6,["H6440"]],[6,8,["H259"]],[8,9,["H6440"]],[9,12,["H6440"]],[12,15,["H3742"]],[15,18,["H8145"]],[18,19,["H6440"]],[19,22,["H6440"]],[22,25,["H120"]],[25,28,["H7992"]],[28,30,["H6440"]],[30,33,["H738"]],[33,36,["H7243"]],[36,38,["H6440"]],[38,41,["H5404"]]]},{"k":20648,"v":[[0,3,["H3742"]],[3,6,["H7426"]],[6,7,["H1931"]],[7,11,["H2416"]],[11,12,["H834"]],[12,14,["H7200"]],[14,17,["H5104"]],[17,19,["H3529"]]]},{"k":20649,"v":[[0,4,["H3742"]],[4,5,["H1980"]],[5,7,["H212"]],[7,8,["H1980"]],[8,9,["H681"]],[9,14,["H3742"]],[14,16,["H5375","(H853)"]],[16,18,["H3671"]],[18,21,["H7311"]],[21,22,["H4480","H5921"]],[22,24,["H776"]],[24,26,["H1992"]],[26,27,["H212"]],[27,28,["H1571"]],[28,29,["H5437"]],[29,30,["H3808"]],[30,32,["H4480","H681"]],[32,33,[]]]},{"k":20650,"v":[[0,3,["H5975"]],[3,5,["H5975"]],[5,11,["H7311"]],[11,14,["H7426"]],[14,17,["H3588"]],[17,19,["H7307"]],[19,23,["H2416"]],[23,26,[]]]},{"k":20651,"v":[[0,3,["H3519"]],[3,6,["H3068"]],[6,7,["H3318"]],[7,9,["H4480","H5921"]],[9,11,["H4670"]],[11,14,["H1004"]],[14,16,["H5975"]],[16,17,["H5921"]],[17,19,["H3742"]]]},{"k":20652,"v":[[0,3,["H3742"]],[3,5,["H5375","(H853)"]],[5,7,["H3671"]],[7,10,["H7426"]],[10,11,["H4480"]],[11,13,["H776"]],[13,16,["H5869"]],[16,20,["H3318"]],[20,22,["H212"]],[22,25,["H5980"]],[25,30,["H5975"]],[30,33,["H6607"]],[33,36,["H6931"]],[36,37,["H8179"]],[37,40,["H3068"]],[40,41,["H1004"]],[41,44,["H3519"]],[44,47,["H430"]],[47,49,["H3478"]],[49,51,["H5921"]],[51,53,["H4480","H4605"]]]},{"k":20653,"v":[[0,1,["H1931"]],[1,5,["H2416"]],[5,6,["H834"]],[6,8,["H7200"]],[8,9,["H8478"]],[9,11,["H430"]],[11,13,["H3478"]],[13,16,["H5104"]],[16,18,["H3529"]],[18,21,["H3045"]],[21,22,["H3588"]],[22,23,["H1992"]],[23,26,["H3742"]]]},{"k":20654,"v":[[0,2,["H259"]],[2,6,["H702","H702","H6440"]],[6,9,["H259"]],[9,10,["H702"]],[10,11,["H3671"]],[11,14,["H1823"]],[14,17,["H3027"]],[17,20,["H120"]],[20,22,["H8478"]],[22,24,["H3671"]]]},{"k":20655,"v":[[0,3,["H1823"]],[3,6,["H6440"]],[6,9,["H1992"]],[9,10,["H6440"]],[10,11,["H834"]],[11,13,["H7200"]],[13,14,["H5921"]],[14,16,["H5104"]],[16,18,["H3529"]],[18,20,["H4758"]],[20,24,["H1980"]],[24,26,["H376"]],[26,28,["H413","H5676","H6440"]]]},{"k":20656,"v":[[0,3,["H7307"]],[3,6,["H5375","(H853)"]],[6,8,["H935"]],[8,10,["H413"]],[10,12,["H6931"]],[12,13,["H8179"]],[13,16,["H3068"]],[16,17,["H1004"]],[17,19,["H6437"]],[19,20,["H6921"]],[20,22,["H2009"]],[22,25,["H6607"]],[25,28,["H8179"]],[28,29,["H2568"]],[29,31,["H6242"]],[31,32,["H376"]],[32,33,["H8432"]],[33,36,["H7200","(H853)"]],[36,37,["H2970"]],[37,39,["H1121"]],[39,41,["H5809"]],[41,43,["H6410"]],[43,45,["H1121"]],[45,47,["H1141"]],[47,48,["H8269"]],[48,51,["H5971"]]]},{"k":20657,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H428"]],[9,12,["H376"]],[12,14,["H2803"]],[14,15,["H205"]],[15,17,["H3289"]],[17,18,["H7451"]],[18,19,["H6098"]],[19,21,["H2063"]],[21,22,["H5892"]]]},{"k":20658,"v":[[0,2,["H559"]],[2,5,["H3808"]],[5,6,["H7138"]],[6,9,["H1129"]],[9,10,["H1004"]],[10,11,["H1931"]],[11,15,["H5518"]],[15,17,["H587"]],[17,20,["H1320"]]]},{"k":20659,"v":[[0,1,["H3651"]],[1,2,["H5012"]],[2,3,["H5921"]],[3,5,["H5012"]],[5,7,["H1121"]],[7,9,["H120"]]]},{"k":20660,"v":[[0,3,["H7307"]],[3,6,["H3068"]],[6,7,["H5307"]],[7,8,["H5921"]],[8,11,["H559"]],[11,12,["H413"]],[12,14,["H559"]],[14,15,["H3541"]],[15,16,["H559"]],[16,18,["H3068"]],[18,19,["H3651"]],[19,22,["H559"]],[22,24,["H1004"]],[24,26,["H3478"]],[26,28,["H589"]],[28,29,["H3045"]],[29,33,["H4609"]],[33,36,["H7307"]],[36,40,[]]]},{"k":20661,"v":[[0,3,["H7235"]],[3,5,["H2491"]],[5,7,["H2063"]],[7,8,["H5892"]],[8,12,["H4390"]],[12,14,["H2351"]],[14,18,["H2491"]]]},{"k":20662,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,8,["H2491"]],[8,9,["H834"]],[9,12,["H7760"]],[12,15,["H8432"]],[15,18,["H1992"]],[18,21,["H1320"]],[21,23,["H1931"]],[23,27,["H5518"]],[27,33,["H3318","(H853)"]],[33,37,["H4480","H8432"]],[37,39,[]]]},{"k":20663,"v":[[0,3,["H3372"]],[3,5,["H2719"]],[5,9,["H935"]],[9,11,["H2719"]],[11,12,["H5921"]],[12,14,["H5002"]],[14,16,["H136"]],[16,17,["H3069"]]]},{"k":20664,"v":[[0,4,["H3318"]],[4,9,["H4480","H8432"]],[9,12,["H5414"]],[12,16,["H3027"]],[16,18,["H2114"]],[18,21,["H6213"]],[21,22,["H8201"]],[22,24,[]]]},{"k":20665,"v":[[0,3,["H5307"]],[3,6,["H2719"]],[6,9,["H8199"]],[9,11,["H5921"]],[11,13,["H1366"]],[13,15,["H3478"]],[15,19,["H3045"]],[19,20,["H3588"]],[20,21,["H589"]],[21,24,["H3068"]]]},{"k":20666,"v":[[0,1,["H1931"]],[1,4,["H3808"]],[4,5,["H1961"]],[5,7,["H5518"]],[7,10,["H859"]],[10,11,["H1961"]],[11,13,["H1320"]],[13,16,["H8432"]],[16,21,["H8199"]],[21,23,["H413"]],[23,25,["H1366"]],[25,27,["H3478"]]]},{"k":20667,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,10,["H834"]],[10,13,["H3808"]],[13,14,["H1980"]],[14,17,["H2706"]],[17,18,["H3808"]],[18,19,["H6213"]],[19,21,["H4941"]],[21,24,["H6213"]],[24,27,["H4941"]],[27,30,["H1471"]],[30,31,["H834"]],[31,34,["H5439"]],[34,35,[]]]},{"k":20668,"v":[[0,5,["H1961"]],[5,8,["H5012"]],[8,10,["H6410"]],[10,12,["H1121"]],[12,14,["H1141"]],[14,15,["H4191"]],[15,19,["H5307"]],[19,20,["H5921"]],[20,22,["H6440"]],[22,24,["H2199"]],[24,27,["H1419"]],[27,28,["H6963"]],[28,30,["H559"]],[30,31,["H162"]],[31,32,["H136"]],[32,33,["H3069"]],[33,35,["H859"]],[35,36,["H6213"]],[36,39,["H3617","(H853)"]],[39,42,["H7611"]],[42,44,["H3478"]]]},{"k":20669,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20670,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,5,["H251"]],[5,8,["H251"]],[8,10,["H376"]],[10,13,["H1353"]],[13,15,["H3605"]],[15,17,["H1004"]],[17,19,["H3478"]],[19,20,["H3605"]],[20,24,["H834"]],[24,26,["H3427"]],[26,28,["H3389"]],[28,30,["H559"]],[30,33,["H7368"]],[33,34,["H4480","H5921"]],[34,36,["H3068"]],[36,40,["H1931"]],[40,41,["H776"]],[41,42,["H5414"]],[42,44,["H4181"]]]},{"k":20671,"v":[[0,1,["H3651"]],[1,2,["H559"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H136"]],[6,7,["H3069"]],[7,8,["H3588"]],[8,14,["H7368"]],[14,17,["H1471"]],[17,19,["H3588"]],[19,22,["H6327"]],[22,26,["H776"]],[26,30,["H1961"]],[30,35,["H4592"]],[35,36,["H4720"]],[36,39,["H776"]],[39,40,["H834","H8033"]],[40,43,["H935"]]]},{"k":20672,"v":[[0,1,["H3651"]],[1,2,["H559"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H136"]],[6,7,["H3069"]],[7,11,["H6908"]],[11,13,["H4480"]],[13,15,["H5971"]],[15,17,["H622"]],[17,20,["H4480"]],[20,22,["H776"]],[22,23,["H834"]],[23,27,["H6327"]],[27,31,["H5414"]],[31,32,["(H853)"]],[32,34,["H127"]],[34,36,["H3478"]]]},{"k":20673,"v":[[0,4,["H935"]],[4,5,["H8033"]],[5,10,["H5493","(H853)"]],[10,11,["H3605"]],[11,14,["H8251"]],[14,17,["H3605"]],[17,19,["H8441"]],[19,21,["H4480"]],[21,22,[]]]},{"k":20674,"v":[[0,4,["H5414"]],[4,6,["H259"]],[6,7,["H3820"]],[7,11,["H5414"]],[11,13,["H2319"]],[13,14,["H7307"]],[14,15,["H7130"]],[15,20,["H5493"]],[20,22,["H68"]],[22,23,["H3820"]],[23,27,["H4480","H1320"]],[27,30,["H5414"]],[30,33,["H3820"]],[33,35,["H1320"]]]},{"k":20675,"v":[[0,1,["H4616"]],[1,4,["H1980"]],[4,7,["H2708"]],[7,9,["H8104"]],[9,11,["H4941"]],[11,13,["H6213"]],[13,14,["(H853)"]],[14,18,["H1961"]],[18,20,["H5971"]],[20,22,["H589"]],[22,24,["H1961"]],[24,26,["H430"]]]},{"k":20676,"v":[[0,6,["H3820"]],[6,7,["H1980"]],[7,8,["H413"]],[8,10,["H3820"]],[10,14,["H8251"]],[14,17,["H8441"]],[17,20,["H5414"]],[20,22,["H1870"]],[22,26,["H7218"]],[26,27,["H5002"]],[27,29,["H136"]],[29,30,["H3069"]]]},{"k":20677,"v":[[0,4,["H3742"]],[4,6,["H5375","(H853)"]],[6,8,["H3671"]],[8,11,["H212"]],[11,12,["H5980"]],[12,16,["H3519"]],[16,19,["H430"]],[19,21,["H3478"]],[21,23,["H5921"]],[23,25,["H4480","H4605"]]]},{"k":20678,"v":[[0,3,["H3519"]],[3,6,["H3068"]],[6,8,["H5927"]],[8,9,["H4480","H5921"]],[9,11,["H8432"]],[11,14,["H5892"]],[14,16,["H5975"]],[16,17,["H5921"]],[17,19,["H2022"]],[19,20,["H834"]],[20,25,["H4480","H6924"]],[25,28,["H5892"]]]},{"k":20679,"v":[[0,3,["H7307"]],[3,6,["H5375"]],[6,8,["H935"]],[8,12,["H4758"]],[12,15,["H7307"]],[15,17,["H430"]],[17,19,["H3778"]],[19,20,["H413"]],[20,24,["H1473"]],[24,27,["H4758"]],[27,28,["H834"]],[28,31,["H7200"]],[31,33,["H5927"]],[33,34,["H4480","H5921"]],[34,35,[]]]},{"k":20680,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,8,["H1473","(H853)"]],[8,9,["H3605"]],[9,11,["H1697"]],[11,12,["H834"]],[12,14,["H3068"]],[14,16,["H7200"]],[16,17,[]]]},{"k":20681,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20682,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H859"]],[4,5,["H3427"]],[5,8,["H8432"]],[8,11,["H4805"]],[11,12,["H1004"]],[12,13,["H834"]],[13,15,["H5869"]],[15,17,["H7200"]],[17,19,["H7200"]],[19,20,["H3808"]],[20,23,["H241"]],[23,25,["H8085"]],[25,27,["H8085"]],[27,28,["H3808"]],[28,29,["H3588"]],[29,30,["H1992"]],[30,33,["H4805"]],[33,34,["H1004"]]]},{"k":20683,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H6213"]],[6,8,["H3627"]],[8,10,["H1473"]],[10,12,["H1540"]],[12,14,["H3119"]],[14,17,["H5869"]],[17,21,["H1540"]],[21,24,["H4480","H4725"]],[24,25,["H413"]],[25,26,["H312"]],[26,27,["H4725"]],[27,30,["H5869"]],[30,33,["H194"]],[33,36,["H7200"]],[36,37,["H3588"]],[37,38,["H1992"]],[38,41,["H4805"]],[41,42,["H1004"]]]},{"k":20684,"v":[[0,5,["H3318"]],[5,7,["H3627"]],[7,9,["H3119"]],[9,12,["H5869"]],[12,14,["H3627"]],[14,16,["H1473"]],[16,18,["H859"]],[18,21,["H3318"]],[21,23,["H6153"]],[23,26,["H5869"]],[26,31,["H4161"]],[31,33,["H1473"]]]},{"k":20685,"v":[[0,1,["H2864"]],[1,5,["H7023"]],[5,8,["H5869"]],[8,11,["H3318"]],[11,12,[]]]},{"k":20686,"v":[[0,3,["H5869"]],[3,6,["H5375"]],[6,8,["H5921"]],[8,10,["H3802"]],[10,14,["H3318"]],[14,17,["H5939"]],[17,20,["H3680"]],[20,22,["H6440"]],[22,25,["H7200"]],[25,26,["H3808","(H853)"]],[26,28,["H776"]],[28,29,["H3588"]],[29,32,["H5414"]],[32,36,["H4159"]],[36,39,["H1004"]],[39,41,["H3478"]]]},{"k":20687,"v":[[0,3,["H6213"]],[3,4,["H3651"]],[4,5,["H834"]],[5,8,["H6680"]],[8,11,["H3318"]],[11,13,["H3627"]],[13,15,["H3119"]],[15,17,["H3627"]],[17,19,["H1473"]],[19,23,["H6153"]],[23,25,["H2864"]],[25,28,["H7023"]],[28,31,["H3027"]],[31,35,["H3318"]],[35,38,["H5939"]],[38,41,["H5375"]],[41,43,["H5921"]],[43,45,["H3802"]],[45,48,["H5869"]]]},{"k":20688,"v":[[0,4,["H1242"]],[4,5,["H1961"]],[5,7,["H1697"]],[7,10,["H3068"]],[10,11,["H413"]],[11,13,["H559"]]]},{"k":20689,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,5,["H3808"]],[5,7,["H1004"]],[7,9,["H3478"]],[9,11,["H4805"]],[11,12,["H1004"]],[12,13,["H559"]],[13,14,["H413"]],[14,16,["H4100"]],[16,17,["H6213"]],[17,18,["H859"]]]},{"k":20690,"v":[[0,1,["H559"]],[1,3,["H413"]],[3,5,["H3541"]],[5,6,["H559"]],[6,8,["H136"]],[8,9,["H3069"]],[9,10,["H2088"]],[10,11,["H4853"]],[11,14,["H5387"]],[14,16,["H3389"]],[16,18,["H3605"]],[18,20,["H1004"]],[20,22,["H3478"]],[22,23,["H834"]],[23,25,["H8432"]],[25,26,[]]]},{"k":20691,"v":[[0,1,["H559"]],[1,2,["H589"]],[2,5,["H4159"]],[5,7,["H834"]],[7,10,["H6213"]],[10,11,["H3651"]],[11,15,["H6213"]],[15,20,["H1473"]],[20,22,["H1980"]],[22,24,["H7628"]]]},{"k":20692,"v":[[0,3,["H5387"]],[3,4,["H834"]],[4,6,["H8432"]],[6,9,["H5375"]],[9,10,["H413"]],[10,12,["H3802"]],[12,15,["H5939"]],[15,19,["H3318"]],[19,22,["H2864"]],[22,25,["H7023"]],[25,28,["H3318"]],[28,32,["H3680"]],[32,34,["H6440"]],[34,35,["H3282","H834"]],[35,36,["H1931"]],[36,37,["H7200"]],[37,38,["H3808","(H853)"]],[38,40,["H776"]],[40,43,["H5869"]]]},{"k":20693,"v":[[0,0,["(H853)"]],[0,2,["H7568"]],[2,6,["H6566"]],[6,7,["H5921"]],[7,13,["H8610"]],[13,16,["H4686"]],[16,20,["H935"]],[20,23,["H894"]],[23,26,["H776"]],[26,29,["H3778"]],[29,33,["H3808"]],[33,34,["H7200"]],[34,39,["H4191"]],[39,40,["H8033"]]]},{"k":20694,"v":[[0,4,["H2219"]],[4,6,["H3605"]],[6,7,["H7307"]],[7,8,["H3605"]],[8,9,["H834"]],[9,11,["H5439"]],[11,14,["H5828"]],[14,17,["H3605"]],[17,19,["H102"]],[19,24,["H7324"]],[24,26,["H2719"]],[26,27,["H310"]],[27,28,[]]]},{"k":20695,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,13,["H6327"]],[13,17,["H1471"]],[17,19,["H2219"]],[19,23,["H776"]]]},{"k":20696,"v":[[0,4,["H3498"]],[4,6,["H4557"]],[6,7,["H376"]],[7,8,["H4480"]],[8,12,["H4480","H2719"]],[12,15,["H4480","H7458"]],[15,19,["H4480","H1698"]],[19,20,["H4616"]],[20,23,["H5608","(H853)"]],[23,24,["H3605"]],[24,26,["H8441"]],[26,29,["H1471"]],[29,30,["H834","H8033"]],[30,32,["H935"]],[32,36,["H3045"]],[36,37,["H3588"]],[37,38,["H589"]],[38,41,["H3068"]]]},{"k":20697,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20698,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H398"]],[4,6,["H3899"]],[6,8,["H7494"]],[8,10,["H8354"]],[10,12,["H4325"]],[12,14,["H7269"]],[14,17,["H1674"]]]},{"k":20699,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H5971"]],[5,8,["H776"]],[8,9,["H3541"]],[9,10,["H559"]],[10,12,["H136"]],[12,13,["H3069"]],[13,16,["H3427"]],[16,18,["H3389"]],[18,20,["H413"]],[20,22,["H127"]],[22,24,["H3478"]],[24,27,["H398"]],[27,29,["H3899"]],[29,31,["H1674"]],[31,33,["H8354"]],[33,35,["H4325"]],[35,37,["H8078"]],[37,38,["H4616"]],[38,40,["H776"]],[40,43,["H3456"]],[43,48,["H4480","H4393"]],[48,52,["H4480","H2555"]],[52,54,["H3605"]],[54,57,["H3427"]],[57,58,[]]]},{"k":20700,"v":[[0,3,["H5892"]],[3,6,["H3427"]],[6,10,["H2717"]],[10,13,["H776"]],[13,15,["H1961"]],[15,16,["H8077"]],[16,20,["H3045"]],[20,21,["H3588"]],[21,22,["H589"]],[22,25,["H3068"]]]},{"k":20701,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20702,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H4100"]],[4,6,["H2088"]],[6,7,["H4912"]],[7,11,["H5921"]],[11,13,["H127"]],[13,15,["H3478"]],[15,16,["H559"]],[16,18,["H3117"]],[18,20,["H748"]],[20,22,["H3605"]],[22,23,["H2377"]],[23,24,["H6"]]]},{"k":20703,"v":[[0,1,["H559","H413"]],[1,3,["H3651"]],[3,4,["H3541"]],[4,5,["H559"]],[5,7,["H136"]],[7,8,["H3069"]],[8,12,["H2088"]],[12,13,["H4912","(H853)"]],[13,15,["H7673"]],[15,19,["H3808"]],[19,20,["H5750"]],[20,25,["H4911","(H853)"]],[25,27,["H3478"]],[27,28,["H3588","H518"]],[28,29,["H1696"]],[29,30,["H413"]],[30,33,["H3117"]],[33,36,["H7126"]],[36,39,["H1697"]],[39,41,["H3605"]],[41,42,["H2377"]]]},{"k":20704,"v":[[0,1,["H3588"]],[1,4,["H1961"]],[4,5,["H3808"]],[5,6,["H5750"]],[6,7,["H3605"]],[7,8,["H7723"]],[8,9,["H2377"]],[9,11,["H2509"]],[11,12,["H4738"]],[12,13,["H8432"]],[13,15,["H1004"]],[15,17,["H3478"]]]},{"k":20705,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,5,["H3068"]],[5,8,["H1696"]],[8,11,["H1697","(H853)"]],[11,12,["H834"]],[12,15,["H1696"]],[15,19,["H6213"]],[19,23,["H3808"]],[23,24,["H5750"]],[24,25,["H4900"]],[25,26,["H3588"]],[26,29,["H3117"]],[29,31,["H4805"]],[31,32,["H1004"]],[32,35,["H1696"]],[35,37,["H1697"]],[37,40,["H6213"]],[40,42,["H5002"]],[42,44,["H136"]],[44,45,["H3069"]]]},{"k":20706,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20707,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H2009"]],[4,8,["H1004"]],[8,10,["H3478"]],[10,11,["H559"]],[11,13,["H2377"]],[13,14,["H834"]],[14,15,["H1931"]],[15,16,["H2372"]],[16,19,["H7227"]],[19,20,["H3117"]],[20,24,["H1931"]],[24,25,["H5012"]],[25,28,["H6256"]],[28,32,["H7350"]]]},{"k":20708,"v":[[0,1,["H3651"]],[1,2,["H559"]],[2,3,["H413"]],[3,5,["H3541"]],[5,6,["H559"]],[6,8,["H136"]],[8,9,["H3069"]],[9,12,["H3808","H3605"]],[12,15,["H1697"]],[15,17,["H4900"]],[17,19,["H5750"]],[19,22,["H1697"]],[22,23,["H834"]],[23,26,["H1696"]],[26,29,["H6213"]],[29,30,["H5002"]],[30,32,["H136"]],[32,33,["H3069"]]]},{"k":20709,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20710,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H5012"]],[4,5,["H413"]],[5,7,["H5030"]],[7,9,["H3478"]],[9,11,["H5012"]],[11,13,["H559"]],[13,18,["H5030"]],[18,23,["H4480","H3820"]],[23,24,["H8085"]],[24,27,["H1697"]],[27,30,["H3068"]]]},{"k":20711,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H1945"]],[6,7,["H5921"]],[7,9,["H5036"]],[9,10,["H5030"]],[10,11,["H834"]],[11,12,["H1980","H310"]],[12,15,["H7307"]],[15,18,["H7200"]],[18,19,["H1115"]]]},{"k":20712,"v":[[0,2,["H3478"]],[2,4,["H5030"]],[4,5,["H1961"]],[5,8,["H7776"]],[8,11,["H2723"]]]},{"k":20713,"v":[[0,3,["H3808"]],[3,5,["H5927"]],[5,8,["H6556"]],[8,11,["H1443"]],[11,13,["H1447"]],[13,14,["H5921"]],[14,16,["H1004"]],[16,18,["H3478"]],[18,20,["H5975"]],[20,23,["H4421"]],[23,26,["H3117"]],[26,29,["H3068"]]]},{"k":20714,"v":[[0,3,["H2372"]],[3,4,["H7723"]],[4,6,["H3577"]],[6,7,["H7081"]],[7,8,["H559"]],[8,10,["H3068"]],[10,11,["H5002"]],[11,14,["H3068"]],[14,16,["H3808"]],[16,17,["H7971"]],[17,25,["H3176"]],[25,29,["H6965"]],[29,31,["H1697"]]]},{"k":20715,"v":[[0,3,["H3808"]],[3,4,["H2372"]],[4,6,["H7723"]],[6,7,["H4236"]],[7,12,["H559"]],[12,14,["H3577"]],[14,15,["H4738"]],[15,18,["H559"]],[18,20,["H3068"]],[20,21,["H5002"]],[21,24,["H589"]],[24,26,["H3808"]],[26,27,["H1696"]]]},{"k":20716,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H3282"]],[7,10,["H1696"]],[10,11,["H7723"]],[11,13,["H2372"]],[13,14,["H3577"]],[14,15,["H3651"]],[15,16,["H2009"]],[16,19,["H413"]],[19,21,["H5002"]],[21,23,["H136"]],[23,24,["H3069"]]]},{"k":20717,"v":[[0,3,["H3027"]],[3,5,["H1961"]],[5,6,["H413"]],[6,8,["H5030"]],[8,10,["H2372"]],[10,11,["H7723"]],[11,14,["H7080"]],[14,15,["H3577"]],[15,18,["H3808"]],[18,19,["H1961"]],[19,22,["H5475"]],[22,25,["H5971"]],[25,26,["H3808"]],[26,30,["H3789"]],[30,33,["H3791"]],[33,36,["H1004"]],[36,38,["H3478"]],[38,39,["H3808"]],[39,42,["H935"]],[42,43,["H413"]],[43,45,["H127"]],[45,47,["H3478"]],[47,51,["H3045"]],[51,52,["H3588"]],[52,53,["H589"]],[53,56,["H136"]],[56,57,["H3069"]]]},{"k":20718,"v":[[0,1,["H3282"]],[1,3,["H3282"]],[3,6,["H2937","(H853)"]],[6,8,["H5971"]],[8,9,["H559"]],[9,10,["H7965"]],[10,14,["H369"]],[14,15,["H7965"]],[15,17,["H1931"]],[17,19,["H1129"]],[19,21,["H2434"]],[21,23,["H2009"]],[23,25,["H2902"]],[25,28,["H8602"]],[28,29,[]]]},{"k":20719,"v":[[0,1,["H559"]],[1,2,["H413"]],[2,5,["H2902"]],[5,8,["H8602"]],[8,13,["H5307"]],[13,16,["H1961"]],[16,18,["H7857"]],[18,19,["H1653"]],[19,21,["H859"]],[21,24,["H68","H417"]],[24,26,["H5307"]],[26,29,["H5591"]],[29,30,["H7307"]],[30,32,["H1234"]],[32,33,[]]]},{"k":20720,"v":[[0,1,["H2009"]],[1,4,["H7023"]],[4,6,["H5307"]],[6,9,["H3808"]],[9,11,["H559"]],[11,12,["H413"]],[12,14,["H346"]],[14,17,["H2915"]],[17,18,["H834"]],[18,21,["H2902"]],[21,22,[]]]},{"k":20721,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,10,["H1234"]],[10,14,["H5591"]],[14,15,["H7307"]],[15,18,["H2534"]],[18,22,["H1961"]],[22,24,["H7857"]],[24,25,["H1653"]],[25,28,["H639"]],[28,31,["H68","H417"]],[31,34,["H2534"]],[34,36,["H3617"]],[36,37,[]]]},{"k":20722,"v":[[0,5,["H2040","(H853)"]],[5,7,["H7023"]],[7,8,["H834"]],[8,11,["H2902"]],[11,13,["H8602"]],[13,18,["H5060"]],[18,19,["H413"]],[19,21,["H776"]],[21,25,["H3247"]],[25,29,["H1540"]],[29,33,["H5307"]],[33,38,["H3615"]],[38,41,["H8432"]],[41,46,["H3045"]],[46,47,["H3588"]],[47,48,["H589"]],[48,51,["H3068"]]]},{"k":20723,"v":[[0,4,["H3615","(H853)"]],[4,6,["H2534"]],[6,9,["H7023"]],[9,15,["H2902"]],[15,18,["H8602"]],[18,22,["H559"]],[22,26,["H7023"]],[26,28,["H369"]],[28,30,["H369"]],[30,33,["H2902"]],[33,34,[]]]},{"k":20724,"v":[[0,4,["H5030"]],[4,6,["H3478"]],[6,8,["H5012"]],[8,9,["H413"]],[9,10,["H3389"]],[10,13,["H2372"]],[13,14,["H2377"]],[14,16,["H7965"]],[16,22,["H369"]],[22,23,["H7965"]],[23,24,["H5002"]],[24,26,["H136"]],[26,27,["H3069"]]]},{"k":20725,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H7760"]],[6,8,["H6440"]],[8,9,["H413"]],[9,11,["H1323"]],[11,14,["H5971"]],[14,16,["H5012"]],[16,18,["H4480"]],[18,21,["H3820"]],[21,23,["H5012"]],[23,25,["H5921"]],[25,26,[]]]},{"k":20726,"v":[[0,2,["H559"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H136"]],[6,7,["H3069"]],[7,8,["H1945"]],[8,13,["H8609"]],[13,14,["H3704"]],[14,15,["H5921"]],[15,16,["H3605"]],[16,17,["H679","H3027"]],[17,19,["H6213"]],[19,20,["H4555"]],[20,21,["H5921"]],[21,23,["H7218"]],[23,25,["H3605"]],[25,26,["H6967"]],[26,28,["H6679"]],[28,29,["H5315"]],[29,32,["H6679"]],[32,34,["H5315"]],[34,37,["H5971"]],[37,44,["H2421","H5315"]],[44,48,[]]]},{"k":20727,"v":[[0,4,["H2490"]],[4,6,["H413"]],[6,8,["H5971"]],[8,10,["H8168"]],[10,12,["H8184"]],[12,15,["H6595"]],[15,17,["H3899"]],[17,19,["H4191"]],[19,21,["H5315"]],[21,22,["H834"]],[22,24,["H3808"]],[24,25,["H4191"]],[25,31,["H2421","H5315"]],[31,32,["H834"]],[32,34,["H3808"]],[34,35,["H2421"]],[35,38,["H3576"]],[38,41,["H5971"]],[41,43,["H8085"]],[43,45,["H3577"]]]},{"k":20728,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,10,["H413"]],[10,12,["H3704"]],[12,13,["H834"]],[13,14,["H859"]],[14,15,["H8033"]],[15,16,["H6679","(H853)"]],[16,18,["H5315"]],[18,22,["H6524"]],[22,26,["H7167"]],[26,28,["H4480","H5921"]],[28,30,["H2220"]],[30,36,["H7971","(H853)","H5315"]],[36,37,["(H853)"]],[37,39,["H5315"]],[39,40,["H834"]],[40,41,["H859"]],[41,42,["H6679"]],[42,46,["H6524"]]]},{"k":20729,"v":[[0,0,["(H853)"]],[0,2,["H4555"]],[2,6,["H7167"]],[6,8,["H5337","(H853)"]],[8,10,["H5971"]],[10,14,["H4480","H3027"]],[14,18,["H1961"]],[18,19,["H3808"]],[19,20,["H5750"]],[20,23,["H3027"]],[23,26,["H4686"]],[26,30,["H3045"]],[30,31,["H3588"]],[31,32,["H589"]],[32,35,["H3068"]]]},{"k":20730,"v":[[0,1,["H3282"]],[1,3,["H8267"]],[3,8,["H3820"]],[8,11,["H6662"]],[11,12,["H3512"]],[12,14,["H589"]],[14,16,["H3808"]],[16,18,["H3510"]],[18,20,["H2388"]],[20,22,["H3027"]],[22,25,["H7563"]],[25,29,["H1115"]],[29,30,["H7725"]],[30,34,["H4480","H1870","H7451"]],[34,38,["H2421"]]]},{"k":20731,"v":[[0,1,["H3651"]],[1,4,["H2372"]],[4,5,["H3808"]],[5,6,["H5750"]],[6,7,["H7723"]],[7,8,["H3808"]],[8,9,["H7080"]],[9,10,["H7081"]],[10,14,["H5337","(H853)"]],[14,16,["H5971"]],[16,20,["H4480","H3027"]],[20,24,["H3045"]],[24,25,["H3588"]],[25,26,["H589"]],[26,29,["H3068"]]]},{"k":20732,"v":[[0,2,["H935"]],[2,3,["H376"]],[3,6,["H4480","H2205"]],[6,8,["H3478"]],[8,9,["H413"]],[9,12,["H3427"]],[12,13,["H6440"]],[13,14,[]]]},{"k":20733,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20734,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H428"]],[4,5,["H376"]],[5,8,["H5927"]],[8,10,["H1544"]],[10,11,["H5921"]],[11,13,["H3820"]],[13,15,["H5414"]],[15,17,["H4383"]],[17,20,["H5771"]],[20,21,["H5227"]],[21,23,["H6440"]],[23,30,["H1875","H1875"]],[30,32,[]]]},{"k":20735,"v":[[0,1,["H3651"]],[1,2,["H1696"]],[2,6,["H559"]],[6,7,["H413"]],[7,9,["H3541"]],[9,10,["H559"]],[10,12,["H136"]],[12,13,["H3069"]],[13,15,["H376","H376"]],[15,18,["H4480","H1004"]],[18,20,["H3478"]],[20,21,["H834"]],[21,23,["H5927","(H853)"]],[23,25,["H1544"]],[25,26,["H413"]],[26,28,["H3820"]],[28,30,["H7760"]],[30,32,["H4383"]],[32,35,["H5771"]],[35,36,["H5227"]],[36,38,["H6440"]],[38,40,["H935"]],[40,41,["H413"]],[41,43,["H5030"]],[43,44,["H589"]],[44,46,["H3068"]],[46,48,["H6030"]],[48,51,["H935"]],[51,55,["H7230"]],[55,58,["H1544"]]]},{"k":20736,"v":[[0,1,["H4616"]],[1,4,["H8610","(H853)"]],[4,6,["H1004"]],[6,8,["H3478"]],[8,12,["H3820"]],[12,13,["H834"]],[13,16,["H3605"]],[16,17,["H2114"]],[17,18,["H4480","H5921"]],[18,22,["H1544"]]]},{"k":20737,"v":[[0,1,["H3651"]],[1,2,["H559"]],[2,3,["H413"]],[3,5,["H1004"]],[5,7,["H3478"]],[7,8,["H3541"]],[8,9,["H559"]],[9,11,["H136"]],[11,12,["H3069"]],[12,13,["H7725"]],[13,15,["H7725"]],[15,17,["H4480","H5921"]],[17,19,["H1544"]],[19,22,["H7725"]],[22,24,["H6440"]],[24,25,["H4480","H5921"]],[25,26,["H3605"]],[26,28,["H8441"]]]},{"k":20738,"v":[[0,1,["H3588"]],[1,3,["H376","H376"]],[3,6,["H4480","H1004"]],[6,8,["H3478"]],[8,12,["H4480","H1616"]],[12,13,["H834"]],[13,14,["H1481"]],[14,16,["H3478"]],[16,19,["H5144"]],[19,20,["H4480","H310"]],[20,24,["H5927"]],[24,26,["H1544"]],[26,27,["H413"]],[27,29,["H3820"]],[29,31,["H7760"]],[31,33,["H4383"]],[33,36,["H5771"]],[36,37,["H5227"]],[37,39,["H6440"]],[39,41,["H935"]],[41,42,["H413"]],[42,44,["H5030"]],[44,46,["H1875"]],[46,51,["H589"]],[51,53,["H3068"]],[53,55,["H6030"]],[55,58,[]]]},{"k":20739,"v":[[0,4,["H5414"]],[4,6,["H6440"]],[6,8,["H1931"]],[8,9,["H376"]],[9,12,["H7760"]],[12,15,["H226"]],[15,18,["H4912"]],[18,24,["H3772"]],[24,27,["H4480","H8432"]],[27,30,["H5971"]],[30,34,["H3045"]],[34,35,["H3588"]],[35,36,["H589"]],[36,39,["H3068"]]]},{"k":20740,"v":[[0,2,["H3588"]],[2,4,["H5030"]],[4,6,["H6601"]],[6,10,["H1696"]],[10,12,["H1697"]],[12,13,["H589"]],[13,15,["H3068"]],[15,17,["H6601","(H853)"]],[17,18,["H1931"]],[18,19,["H5030"]],[19,24,["H5186","(H853)"]],[24,26,["H3027"]],[26,27,["H5921"]],[27,31,["H8045"]],[31,35,["H4480","H8432"]],[35,38,["H5971"]],[38,39,["H3478"]]]},{"k":20741,"v":[[0,4,["H5375"]],[4,9,["H5771"]],[9,11,["H5771"]],[11,14,["H5030"]],[14,16,["H1961"]],[16,20,["H5771"]],[20,24,["H1875"]],[24,26,[]]]},{"k":20742,"v":[[0,1,["H4616"]],[1,3,["H1004"]],[3,5,["H3478"]],[5,8,["H3808"]],[8,9,["H5750"]],[9,10,["H8582"]],[10,11,["H4480","H310"]],[11,13,["H3808"]],[13,15,["H2930"]],[15,17,["H5750"]],[17,19,["H3605"]],[19,21,["H6588"]],[21,26,["H1961"]],[26,28,["H5971"]],[28,30,["H589"]],[30,32,["H1961"]],[32,34,["H430"]],[34,35,["H5002"]],[35,37,["H136"]],[37,38,["H3069"]]]},{"k":20743,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,8,["H413"]],[8,10,["H559"]]]},{"k":20744,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H3588"]],[4,6,["H776"]],[6,7,["H2398"]],[7,11,["H4603"]],[11,12,["H4604"]],[12,17,["H5186"]],[17,19,["H3027"]],[19,20,["H5921"]],[20,24,["H7665"]],[24,26,["H4294"]],[26,29,["H3899"]],[29,33,["H7971"]],[33,34,["H7458"]],[34,40,["H3772"]],[40,41,["H120"]],[41,43,["H929"]],[43,44,["H4480"]],[44,45,[]]]},{"k":20745,"v":[[0,2,["H428"]],[2,3,["H7969"]],[3,4,["H376"]],[4,5,["H5146"]],[5,6,["H1840"]],[6,8,["H347"]],[8,9,["H1961"]],[9,10,["H8432"]],[10,12,["H1992"]],[12,14,["H5337"]],[14,18,["H5315"]],[18,21,["H6666"]],[21,22,["H5002"]],[22,24,["H136"]],[24,25,["H3069"]]]},{"k":20746,"v":[[0,1,["H3863"]],[1,4,["H7451"]],[4,5,["H2416"]],[5,7,["H5674"]],[7,10,["H776"]],[10,13,["H7921"]],[13,18,["H1961"]],[18,19,["H8077"]],[19,22,["H4480","H1097"]],[22,25,["H5674"]],[25,26,["H4480","H6440"]],[26,29,["H2416"]]]},{"k":20747,"v":[[0,2,["H428"]],[2,3,["H7969"]],[3,4,["H376"]],[4,6,["H8432"]],[6,9,["H589"]],[9,10,["H2416"]],[10,11,["H5002"]],[11,13,["H136"]],[13,14,["H3069"]],[14,15,["H1992"]],[15,17,["H5337"]],[17,18,["H518"]],[18,19,["H1121"]],[19,20,["H518"]],[20,21,["H1323"]],[21,23,["H905"]],[23,26,["H5337"]],[26,29,["H776"]],[29,31,["H1961"]],[31,32,["H8077"]]]},{"k":20748,"v":[[0,1,["H176"]],[1,4,["H935"]],[4,6,["H2719"]],[6,7,["H5921"]],[7,8,["H1931"]],[8,9,["H776"]],[9,11,["H559"]],[11,12,["H2719"]],[12,13,["H5674"]],[13,16,["H776"]],[16,21,["H3772"]],[21,22,["H120"]],[22,24,["H929"]],[24,25,["H4480"]],[25,26,[]]]},{"k":20749,"v":[[0,2,["H428"]],[2,3,["H7969"]],[3,4,["H376"]],[4,6,["H8432"]],[6,9,["H589"]],[9,10,["H2416"]],[10,11,["H5002"]],[11,13,["H136"]],[13,14,["H3069"]],[14,17,["H5337"]],[17,18,["H3808"]],[18,19,["H1121"]],[19,21,["H1323"]],[21,22,["H3588"]],[22,23,["H1992"]],[23,24,["H905"]],[24,28,["H5337"]]]},{"k":20750,"v":[[0,1,["H176"]],[1,4,["H7971"]],[4,6,["H1698"]],[6,7,["H413"]],[7,8,["H1931"]],[8,9,["H776"]],[9,12,["H8210"]],[12,14,["H2534"]],[14,15,["H5921"]],[15,18,["H1818"]],[18,21,["H3772"]],[21,22,["H4480"]],[22,24,["H120"]],[24,26,["H929"]]]},{"k":20751,"v":[[0,2,["H5146"]],[2,3,["H1840"]],[3,5,["H347"]],[5,7,["H8432"]],[7,10,["H589"]],[10,11,["H2416"]],[11,12,["H5002"]],[12,14,["H136"]],[14,15,["H3069"]],[15,16,["H1992"]],[16,18,["H5337"]],[18,19,["H518"]],[19,20,["H1121"]],[20,21,["H518"]],[21,22,["H1323"]],[22,26,["H5337"]],[26,29,["H5315"]],[29,32,["H6666"]]]},{"k":20752,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,9,["H637"]],[9,10,["H3588"]],[10,12,["H7971"]],[12,14,["H702"]],[14,15,["H7451"]],[15,16,["H8201"]],[16,17,["H413"]],[17,18,["H3389"]],[18,20,["H2719"]],[20,23,["H7458"]],[23,26,["H7451"]],[26,27,["H2416"]],[27,30,["H1698"]],[30,33,["H3772"]],[33,34,["H4480"]],[34,36,["H120"]],[36,38,["H929"]]]},{"k":20753,"v":[[0,2,["H2009"]],[2,6,["H3498"]],[6,8,["H6413"]],[8,13,["H3318"]],[13,15,["H1121"]],[15,17,["H1323"]],[17,18,["H2009"]],[18,22,["H3318"]],[22,23,["H413"]],[23,28,["H7200","(H853)"]],[28,30,["H1870"]],[30,33,["H5949"]],[33,38,["H5162"]],[38,39,["H5921"]],[39,41,["H7451"]],[41,42,["H834"]],[42,45,["H935"]],[45,46,["H5921"]],[46,47,["H3389"]],[47,49,["H854"]],[49,50,["H3605"]],[50,51,["H834"]],[51,54,["H935"]],[54,55,["H5921"]],[55,56,[]]]},{"k":20754,"v":[[0,4,["H5162"]],[4,6,["H3588"]],[6,8,["H7200","(H853)"]],[8,10,["H1870"]],[10,13,["H5949"]],[13,17,["H3045"]],[17,18,["H3588"]],[18,21,["H3808"]],[21,22,["H6213"]],[22,24,["H2600","(H853)"]],[24,25,["H3605"]],[25,26,["H834"]],[26,29,["H6213"]],[29,32,["H5002"]],[32,34,["H136"]],[34,35,["H3069"]]]},{"k":20755,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20756,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H4100"]],[4,5,["H1961"]],[5,7,["H1612"]],[7,8,["H6086"]],[8,11,["H4480","H3605"]],[11,12,["H6086"]],[12,16,["H2156"]],[16,17,["H834"]],[17,18,["H1961"]],[18,21,["H6086"]],[21,24,["H3293"]]]},{"k":20757,"v":[[0,2,["H6086"]],[2,4,["H3947"]],[4,5,["H4480"]],[5,7,["H6213"]],[7,9,["H4399"]],[9,10,["H518"]],[10,13,["H3947"]],[13,15,["H3489"]],[15,16,["H4480"]],[16,19,["H8518"]],[19,20,["H3605"]],[20,21,["H3627"]],[21,22,["H5921"]]]},{"k":20758,"v":[[0,1,["H2009"]],[1,4,["H5414"]],[4,7,["H784"]],[7,9,["H402"]],[9,11,["H784"]],[11,12,["H398","(H853)"]],[12,13,["H8147"]],[13,15,["H7098"]],[15,20,["H8432"]],[20,24,["H2787"]],[24,27,["H6743"]],[27,30,["H4399"]]]},{"k":20759,"v":[[0,1,["H2009"]],[1,4,["H1961"]],[4,5,["H8549"]],[5,8,["H6213"]],[8,10,["H3808"]],[10,11,["H4399"]],[11,14,["H637"]],[14,18,["H6213"]],[18,19,["H5750"]],[19,22,["H4399"]],[22,23,["H3588"]],[23,25,["H784"]],[25,27,["H398"]],[27,32,["H2787"]]]},{"k":20760,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H834"]],[7,9,["H1612"]],[9,10,["H6086"]],[10,13,["H6086"]],[13,16,["H3293"]],[16,17,["H834"]],[17,20,["H5414"]],[20,23,["H784"]],[23,25,["H402"]],[25,26,["H3651"]],[26,29,["H5414","(H853)"]],[29,31,["H3427"]],[31,33,["H3389"]]]},{"k":20761,"v":[[0,4,["H5414","(H853)"]],[4,6,["H6440"]],[6,12,["H3318"]],[12,15,["H784"]],[15,18,["H784"]],[18,20,["H398"]],[20,25,["H3045"]],[25,26,["H3588"]],[26,27,["H589"]],[27,30,["H3068"]],[30,33,["H7760","(H853)"]],[33,35,["H6440"]],[35,37,[]]]},{"k":20762,"v":[[0,4,["H5414","(H853)"]],[4,6,["H776"]],[6,7,["H8077"]],[7,8,["H3282"]],[8,11,["H4603"]],[11,13,["H4604"]],[13,14,["H5002"]],[14,16,["H136"]],[16,17,["H3069"]]]},{"k":20763,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20764,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["(H853)"]],[4,5,["H3389"]],[5,7,["H3045","(H853)"]],[7,9,["H8441"]]]},{"k":20765,"v":[[0,2,["H559"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H136"]],[6,7,["H3069"]],[7,9,["H3389"]],[9,11,["H4351"]],[11,14,["H4138"]],[14,18,["H4480","H776"]],[18,20,["H3669"]],[20,22,["H1"]],[22,25,["H567"]],[25,28,["H517"]],[28,30,["H2851"]]]},{"k":20766,"v":[[0,5,["H4138"]],[5,8,["H3117"]],[8,11,["H3205"]],[11,13,["H8270"]],[13,15,["H3808"]],[15,16,["H3772"]],[16,17,["H3808"]],[17,20,["H7364"]],[20,22,["H4325"]],[22,24,["H4935"]],[24,28,["H3808"]],[28,31,["H4414","H4414"]],[31,32,["H3808"]],[32,35,["H2853","H2853"]]]},{"k":20767,"v":[[0,1,["H3808"]],[1,2,["H5869"]],[2,3,["H2347","H5921"]],[3,6,["H6213"]],[6,7,["H259"]],[7,9,["H4480","H428"]],[9,14,["H2550"]],[14,15,["H5921"]],[15,21,["H7993"]],[21,22,["H413"]],[22,24,["H6440"]],[24,25,["H7704"]],[25,28,["H1604"]],[28,31,["H5315"]],[31,34,["H3117"]],[34,38,["H3205"]]]},{"k":20768,"v":[[0,4,["H5674"]],[4,5,["H5921"]],[5,8,["H7200"]],[8,10,["H947"]],[10,14,["H1818"]],[14,16,["H559"]],[16,24,["H1818"]],[24,25,["H2421"]],[25,28,["H559"]],[28,36,["H1818"]],[36,37,["H2421"]]]},{"k":20769,"v":[[0,3,["H5414"]],[3,6,["H7233"]],[6,9,["H6780"]],[9,12,["H7704"]],[12,16,["H7235"]],[16,19,["H1431"]],[19,23,["H935"]],[23,25,["H5716"]],[25,26,["H5716"]],[26,28,["H7699"]],[28,30,["H3559"]],[30,33,["H8181"]],[33,35,["H6779"]],[35,37,["H859"]],[37,39,["H5903"]],[39,41,["H6181"]]]},{"k":20770,"v":[[0,4,["H5674"]],[4,5,["H5921"]],[5,9,["H7200"]],[9,11,["H2009"]],[11,13,["H6256"]],[13,16,["H6256"]],[16,18,["H1730"]],[18,21,["H6566"]],[21,23,["H3671"]],[23,24,["H5921"]],[24,27,["H3680"]],[27,29,["H6172"]],[29,32,["H7650"]],[32,36,["H935"]],[36,39,["H1285"]],[39,40,["H854"]],[40,42,["H5002"]],[42,44,["H136"]],[44,45,["H3069"]],[45,48,["H1961"]],[48,49,[]]]},{"k":20771,"v":[[0,2,["H7364"]],[2,6,["H4325"]],[6,11,["H7857"]],[11,13,["H1818"]],[13,14,["H4480","H5921"]],[14,18,["H5480"]],[18,21,["H8081"]]]},{"k":20772,"v":[[0,2,["H3847"]],[2,7,["H7553"]],[7,9,["H5274"]],[9,13,["H8476"]],[13,18,["H2280"]],[18,21,["H8336"]],[21,24,["H3680"]],[24,27,["H4897"]]]},{"k":20773,"v":[[0,2,["H5710"]],[2,6,["H5716"]],[6,9,["H5414"]],[9,10,["H6781"]],[10,11,["H5921"]],[11,13,["H3027"]],[13,16,["H7242"]],[16,17,["H5921"]],[17,19,["H1627"]]]},{"k":20774,"v":[[0,3,["H5414"]],[3,5,["H5141"]],[5,6,["H5921"]],[6,8,["H639"]],[8,10,["H5694"]],[10,11,["H5921"]],[11,13,["H241"]],[13,16,["H8597"]],[16,17,["H5850"]],[17,20,["H7218"]]]},{"k":20775,"v":[[0,4,["H5710"]],[4,6,["H2091"]],[6,8,["H3701"]],[8,11,["H4403"]],[11,15,["H8336"]],[15,17,["H4897"]],[17,20,["H7553"]],[20,23,["H398"]],[23,25,["H5560"]],[25,27,["H1706"]],[27,29,["H8081"]],[29,34,["H3302","H3966","H3966"]],[34,38,["H6743"]],[38,41,["H4410"]]]},{"k":20776,"v":[[0,3,["H8034"]],[3,5,["H3318"]],[5,8,["H1471"]],[8,11,["H3308"]],[11,12,["H3588"]],[12,13,["H1931"]],[13,15,["H3632"]],[15,18,["H1926"]],[18,19,["H834"]],[19,22,["H7760"]],[22,23,["H5921"]],[23,25,["H5002"]],[25,27,["H136"]],[27,28,["H3069"]]]},{"k":20777,"v":[[0,4,["H982"]],[4,8,["H3308"]],[8,12,["H2181"]],[12,13,["H5921"]],[13,16,["H8034"]],[16,19,["H8210","(H853)"]],[19,21,["H8457"]],[21,22,["H5921"]],[22,24,["H3605"]],[24,27,["H5674"]],[27,30,["H1961"]]]},{"k":20778,"v":[[0,4,["H4480","H899"]],[4,7,["H3947"]],[7,9,["H6213"]],[9,12,["H1116"]],[12,15,["H2921"]],[15,19,["H2181"]],[19,20,["H5921"]],[20,25,["H3808"]],[25,26,["H935"]],[26,27,["H3808"]],[27,30,["H1961"]],[30,31,[]]]},{"k":20779,"v":[[0,4,["H3947"]],[4,6,["H8597"]],[6,7,["H3627"]],[7,10,["H4480","H2091"]],[10,14,["H4480","H3701"]],[14,15,["H834"]],[15,18,["H5414"]],[18,21,["H6213"]],[21,24,["H6754"]],[24,26,["H2145"]],[26,30,["H2181"]],[30,32,[]]]},{"k":20780,"v":[[0,2,["H3947"]],[2,4,["H7553","(H853)"]],[4,5,["H899"]],[5,7,["H3680"]],[7,12,["H5414"]],[12,14,["H8081"]],[14,17,["H7004"]],[17,18,["H6440"]],[18,19,[]]]},{"k":20781,"v":[[0,2,["H3899"]],[2,4,["H834"]],[4,6,["H5414"]],[6,9,["H5560"]],[9,11,["H8081"]],[11,13,["H1706"]],[13,16,["H398"]],[16,21,["H5414"]],[21,23,["H6440"]],[23,27,["H5207"]],[27,28,["H7381"]],[28,32,["H1961"]],[32,33,["H5002"]],[33,35,["H136"]],[35,36,["H3069"]]]},{"k":20782,"v":[[0,4,["H3947","(H853)"]],[4,6,["H1121"]],[6,9,["H1323"]],[9,10,["H834"]],[10,13,["H3205"]],[13,20,["H2076"]],[20,25,["H398"]],[25,28,["H4480"]],[28,30,["H8457"]],[30,33,["H4592"]]]},{"k":20783,"v":[[0,4,["H7819","(H853)"]],[4,6,["H1121"]],[6,8,["H5414"]],[8,15,["H5674"]],[15,19,[]]]},{"k":20784,"v":[[0,3,["H3605"]],[3,5,["H8441"]],[5,8,["H8457"]],[8,11,["H3808"]],[11,12,["H2142","(H853)"]],[12,14,["H3117"]],[14,17,["H5271"]],[17,20,["H1961"]],[20,21,["H5903"]],[21,23,["H6181"]],[23,25,["H1961"]],[25,26,["H947"]],[26,29,["H1818"]]]},{"k":20785,"v":[[0,5,["H1961"]],[5,6,["H310"]],[6,7,["H3605"]],[7,9,["H7451"]],[9,10,["H188"]],[10,11,["H188"]],[11,14,["H5002"]],[14,16,["H136"]],[16,17,["H3069"]]]},{"k":20786,"v":[[0,5,["H1129"]],[5,10,["H1354"]],[10,13,["H6213"]],[13,17,["H7413"]],[17,19,["H3605"]],[19,20,["H7339"]]]},{"k":20787,"v":[[0,3,["H1129"]],[3,6,["H7413"]],[6,7,["H413"]],[7,8,["H3605"]],[8,9,["H7218"]],[9,12,["H1870"]],[12,15,["(H853)"]],[15,17,["H3308"]],[17,20,["H8581"]],[20,23,["H6589","(H853)"]],[23,25,["H7272"]],[25,28,["H3605"]],[28,31,["H5674"]],[31,33,["H7235","(H853)"]],[33,35,["H8457"]]]},{"k":20788,"v":[[0,5,["H2181"]],[5,6,["H413"]],[6,8,["H1121","H4714"]],[8,10,["H7934"]],[10,11,["H1432"]],[11,13,["H1320"]],[13,16,["H7235","(H853)"]],[16,18,["H8457"]],[18,23,["H3707"]]]},{"k":20789,"v":[[0,1,["H2009"]],[1,6,["H5186"]],[6,8,["H3027"]],[8,9,["H5921"]],[9,13,["H1639"]],[13,15,["H2706"]],[15,18,["H5414"]],[18,22,["H5315"]],[22,26,["H8130"]],[26,29,["H1323"]],[29,32,["H6430"]],[32,35,["H3637"]],[35,38,["H2154"]],[38,39,["H4480","H1870"]]]},{"k":20790,"v":[[0,5,["H2181"]],[5,7,["H413"]],[7,9,["H1121","H804"]],[9,13,["H4480","H1115","H7654"]],[13,19,["H2181"]],[19,23,["H1571"]],[23,25,["H3808"]],[25,27,["H7646"]]]},{"k":20791,"v":[[0,4,["H7235","(H853)"]],[4,6,["H8457"]],[6,7,["H413"]],[7,9,["H776"]],[9,11,["H3667"]],[11,13,["H3778"]],[13,15,["H1571"]],[15,18,["H3808"]],[18,19,["H7646"]],[19,20,["H2063"]]]},{"k":20792,"v":[[0,1,["H4100"]],[1,2,["H535"]],[2,5,["H3826"]],[5,6,["H5002"]],[6,8,["H136"]],[8,9,["H3069"]],[9,12,["H6213","(H853)"]],[12,13,["H3605"]],[13,14,["H428"]],[14,17,["H4639"]],[17,20,["H7986"]],[20,21,["H2181"]],[21,22,["H802"]]]},{"k":20793,"v":[[0,4,["H1129"]],[4,7,["H1354"]],[7,10,["H7218"]],[10,12,["H3605"]],[12,13,["H1870"]],[13,15,["H6213"]],[15,18,["H7413"]],[18,20,["H3605"]],[20,21,["H7339"]],[21,24,["H3808"]],[24,25,["H1961"]],[25,28,["H2181"]],[28,32,["H7046"]],[32,33,["H868"]]]},{"k":20794,"v":[[0,4,["H802"]],[4,7,["H5003"]],[7,9,["H3947","(H853)"]],[9,10,["H2114"]],[10,11,["H8478"]],[11,14,["H376"]]]},{"k":20795,"v":[[0,2,["H5414"]],[2,3,["H5078"]],[3,5,["H3605"]],[5,6,["H2181"]],[6,8,["H859"]],[8,9,["H5414","(H853)"]],[9,11,["H5083"]],[11,13,["H3605"]],[13,15,["H157"]],[15,17,["H7809"]],[17,22,["H935"]],[22,23,["H413"]],[23,27,["H4480","H5439"]],[27,30,["H8457"]]]},{"k":20796,"v":[[0,3,["H2016"]],[3,4,["H1961"]],[4,7,["H4480"]],[7,9,["H802"]],[9,12,["H8457"]],[12,14,["H3808"]],[14,15,["H310"]],[15,19,["H2181"]],[19,24,["H5414"]],[24,26,["H868"]],[26,28,["H3808"]],[28,29,["H868"]],[29,31,["H5414"]],[31,36,["H1961"]],[36,37,["H2016"]]]},{"k":20797,"v":[[0,1,["H3651"]],[1,3,["H2181"]],[3,4,["H8085"]],[4,6,["H1697"]],[6,9,["H3068"]]]},{"k":20798,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H3282"]],[6,8,["H5178"]],[8,11,["H8210"]],[11,14,["H6172"]],[14,15,["H1540"]],[15,18,["H8457"]],[18,19,["H5921"]],[19,21,["H157"]],[21,23,["H5921"]],[23,24,["H3605"]],[24,26,["H1544"]],[26,29,["H8441"]],[29,33,["H1818"]],[33,36,["H1121"]],[36,37,["H834"]],[37,40,["H5414"]],[40,42,[]]]},{"k":20799,"v":[[0,1,["H2009"]],[1,2,["H3651"]],[2,5,["H6908","(H853)"]],[5,6,["H3605"]],[6,8,["H157"]],[8,9,["H5921"]],[9,10,["H834"]],[10,14,["H6149"]],[14,16,["H3605"]],[16,18,["H834"]],[18,21,["H157"]],[21,22,["H5921"]],[22,23,["H3605"]],[23,25,["H834"]],[25,28,["H8130"]],[28,32,["H6908"]],[32,35,["H4480","H5439"]],[35,36,["H5921"]],[36,40,["H1540"]],[40,42,["H6172"]],[42,43,["H413"]],[43,48,["H7200","(H853)"]],[48,49,["H3605"]],[49,51,["H6172"]]]},{"k":20800,"v":[[0,4,["H8199"]],[4,10,["H5003"]],[10,12,["H8210"]],[12,13,["H1818"]],[13,15,["H4941"]],[15,19,["H5414"]],[19,21,["H1818"]],[21,23,["H2534"]],[23,25,["H7068"]]]},{"k":20801,"v":[[0,5,["H5414"]],[5,9,["H3027"]],[9,14,["H2040"]],[14,17,["H1354"]],[17,21,["H5422"]],[21,24,["H7413"]],[24,27,["H6584"]],[27,32,["H899"]],[32,35,["H3947"]],[35,37,["H8597"]],[37,38,["H3627"]],[38,40,["H5117"]],[40,42,["H5903"]],[42,44,["H6181"]]]},{"k":20802,"v":[[0,5,["H5927"]],[5,7,["H6951"]],[7,8,["H5921"]],[8,13,["H7275"]],[13,16,["H68"]],[16,20,["H1333"]],[20,23,["H2719"]]]},{"k":20803,"v":[[0,4,["H8313"]],[4,6,["H1004"]],[6,8,["H784"]],[8,10,["H6213"]],[10,11,["H8201"]],[11,16,["H5869"]],[16,18,["H7227"]],[18,19,["H802"]],[19,26,["H7673"]],[26,30,["H4480","H2181"]],[30,33,["H1571"]],[33,35,["H5414"]],[35,36,["H3808"]],[36,37,["H868"]],[37,39,["H5750"]]]},{"k":20804,"v":[[0,6,["H2534"]],[6,10,["H5117"]],[10,13,["H7068"]],[13,15,["H5493"]],[15,16,["H4480"]],[16,22,["H8252"]],[22,26,["H3808"]],[26,27,["H5750"]],[27,28,["H3707"]]]},{"k":20805,"v":[[0,1,["H3282","H834"]],[1,4,["H3808"]],[4,5,["H2142","(H853)"]],[5,7,["H3117"]],[7,10,["H5271"]],[10,13,["H7264"]],[13,16,["H3605"]],[16,17,["H428"]],[17,19,["H1887"]],[19,21,["H589"]],[21,22,["H1571"]],[22,24,["H5414"]],[24,26,["H1870"]],[26,29,["H7218"]],[29,30,["H5002"]],[30,32,["H136"]],[32,33,["H3069"]],[33,37,["H3808"]],[37,38,["H6213","(H853)"]],[38,40,["H2154"]],[40,41,["H5921"]],[41,42,["H3605"]],[42,44,["H8441"]]]},{"k":20806,"v":[[0,1,["H2009"]],[1,3,["H3605"]],[3,6,["H4911"]],[6,10,["H4911"]],[10,11,["H5921"]],[11,13,["H559"]],[13,17,["H517"]],[17,21,["H1323"]]]},{"k":20807,"v":[[0,1,["H859"]],[1,4,["H517"]],[4,5,["H1323"]],[5,7,["H1602"]],[7,9,["H376"]],[9,12,["H1121"]],[12,14,["H859"]],[14,17,["H269"]],[17,20,["H269"]],[20,21,["H834"]],[21,22,["H1602"]],[22,24,["H376"]],[24,27,["H1121"]],[27,29,["H517"]],[29,32,["H2851"]],[32,35,["H1"]],[35,37,["H567"]]]},{"k":20808,"v":[[0,3,["H1419"]],[3,4,["H269"]],[4,6,["H8111"]],[6,7,["H1931"]],[7,10,["H1323"]],[10,12,["H3427"]],[12,13,["H5921"]],[13,16,["H8040"]],[16,19,["H6996"]],[19,20,["H269"]],[20,22,["H3427"]],[22,26,["H4480","H3225"]],[26,28,["H5467"]],[28,31,["H1323"]]]},{"k":20809,"v":[[0,4,["H3808"]],[4,5,["H1980"]],[5,8,["H1870"]],[8,10,["H6213"]],[10,13,["H8441"]],[13,20,["H6985"]],[20,21,["H4592"]],[21,25,["H7843"]],[25,27,["H4480"]],[27,30,["H3605"]],[30,32,["H1870"]]]},{"k":20810,"v":[[0,2,["H589"]],[2,3,["H2416"]],[3,4,["H5002"]],[4,6,["H136"]],[6,7,["H3069"]],[7,8,["H5467"]],[8,10,["H269"]],[10,12,["H518"]],[12,13,["H6213"]],[13,14,["H1931"]],[14,17,["H1323"]],[17,18,["H834"]],[18,21,["H6213"]],[21,22,["H859"]],[22,25,["H1323"]]]},{"k":20811,"v":[[0,1,["H2009"]],[1,2,["H2088"]],[2,3,["H1961"]],[3,5,["H5771"]],[5,8,["H269"]],[8,9,["H5467"]],[9,10,["H1347"]],[10,11,["H7653"]],[11,13,["H3899"]],[13,15,["H7962"]],[15,17,["H8252"]],[17,18,["H1961"]],[18,24,["H1323"]],[24,25,["H3808"]],[25,28,["H2388"]],[28,30,["H3027"]],[30,33,["H6041"]],[33,35,["H34"]]]},{"k":20812,"v":[[0,4,["H1361"]],[4,6,["H6213"]],[6,7,["H8441"]],[7,8,["H6440"]],[8,14,["H5493","(H853)"]],[14,15,["H834"]],[15,17,["H7200"]],[17,18,[]]]},{"k":20813,"v":[[0,1,["H3808"]],[1,3,["H8111"]],[3,4,["H2398"]],[4,5,["H2677"]],[5,8,["H2403"]],[8,12,["H7235","(H853)"]],[12,14,["H8441"]],[14,16,["H4480"]],[16,20,["H6663","(H853)"]],[20,22,["H269"]],[22,24,["H3605"]],[24,26,["H8441"]],[26,27,["H834"]],[27,30,["H6213"]]]},{"k":20814,"v":[[0,1,["H859"]],[1,2,["H1571"]],[2,3,["H834"]],[3,5,["H6419"]],[5,7,["H269"]],[7,8,["H5375"]],[8,11,["H3639"]],[11,14,["H2403"]],[14,15,["H834"]],[15,20,["H8581"]],[20,21,["H4480"]],[21,26,["H6663"]],[26,27,["H4480"]],[27,32,["H954","H859"]],[32,33,["H1571"]],[33,35,["H5375"]],[35,37,["H3639"]],[37,42,["H6663"]],[42,44,["H269"]]]},{"k":20815,"v":[[0,5,["H7725","(H853)"]],[5,7,["H7622","(H853)"]],[7,9,["H7622"]],[9,11,["H5467"]],[11,14,["H1323"]],[14,17,["H7622"]],[17,19,["H8111"]],[19,22,["H1323"]],[22,29,["H7622"]],[29,32,["H7622"]],[32,35,["H8432"]],[35,37,[]]]},{"k":20816,"v":[[0,1,["H4616"]],[1,4,["H5375"]],[4,7,["H3639"]],[7,11,["H3637"]],[11,13,["H4480","H3605"]],[13,14,["H834"]],[14,17,["H6213"]],[17,23,["H5162"]],[23,25,[]]]},{"k":20817,"v":[[0,3,["H269"]],[3,4,["H5467"]],[4,7,["H1323"]],[7,9,["H7725"]],[9,13,["H6927"]],[13,15,["H8111"]],[15,18,["H1323"]],[18,20,["H7725"]],[20,24,["H6927"]],[24,26,["H859"]],[26,29,["H1323"]],[29,31,["H7725"]],[31,35,["H6927"]]]},{"k":20818,"v":[[0,3,["H269"]],[3,4,["H5467"]],[4,5,["H1961"]],[5,6,["H3808"]],[6,7,["H8052"]],[7,10,["H6310"]],[10,13,["H3117"]],[13,16,["H1347"]]]},{"k":20819,"v":[[0,1,["H2962"]],[1,3,["H7451"]],[3,5,["H1540"]],[5,7,["H3644"]],[7,9,["H6256"]],[9,12,["H2781"]],[12,15,["H1323"]],[15,17,["H758"]],[17,19,["H3605"]],[19,23,["H5439"]],[23,26,["H1323"]],[26,29,["H6430"]],[29,31,["H7590"]],[31,34,["H4480","H5439"]]]},{"k":20820,"v":[[0,1,["H859"]],[1,3,["H5375","(H853)"]],[3,5,["H2154"]],[5,8,["H8441"]],[8,9,["H5002"]],[9,11,["H3068"]]]},{"k":20821,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,10,["H6213"]],[10,11,["H854"]],[11,13,["H834"]],[13,16,["H6213"]],[16,17,["H834"]],[17,19,["H959"]],[19,21,["H423"]],[21,23,["H6565"]],[23,25,["H1285"]]]},{"k":20822,"v":[[0,2,["H589"]],[2,4,["H2142","(H853)"]],[4,6,["H1285"]],[6,7,["H854"]],[7,11,["H3117"]],[11,14,["H5271"]],[14,18,["H6965"]],[18,22,["H5769"]],[22,23,["H1285"]]]},{"k":20823,"v":[[0,4,["H2142","(H853)"]],[4,6,["H1870"]],[6,9,["H3637"]],[9,13,["H3947","(H853)"]],[13,15,["H269"]],[15,17,["H1419"]],[17,20,["H6996"]],[20,24,["H5414"]],[24,29,["H1323"]],[29,31,["H3808"]],[31,34,["H4480","H1285"]]]},{"k":20824,"v":[[0,2,["H589"]],[2,4,["H6965","(H853)"]],[4,6,["H1285"]],[6,7,["H854"]],[7,12,["H3045"]],[12,13,["H3588"]],[13,14,["H589"]],[14,17,["H3068"]]]},{"k":20825,"v":[[0,1,["H4616"]],[1,4,["H2142"]],[4,7,["H954"]],[7,9,["H3808"]],[9,10,["H6610"]],[10,12,["H6310"]],[12,14,["H5750"]],[14,15,["H4480","H6440"]],[15,18,["H3639"]],[18,22,["H3722"]],[22,26,["H3605"]],[26,27,["H834"]],[27,30,["H6213"]],[30,31,["H5002"]],[31,33,["H136"]],[33,34,["H3069"]]]},{"k":20826,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20827,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,5,["H2330"]],[5,7,["H2420"]],[7,9,["H4911"]],[9,11,["H4912"]],[11,12,["H413"]],[12,14,["H1004"]],[14,16,["H3478"]]]},{"k":20828,"v":[[0,2,["H559"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H136"]],[6,7,["H3069"]],[7,9,["H1419"]],[9,10,["H5404"]],[10,12,["H1419"]],[12,13,["H3671"]],[13,14,["H750","H83"]],[14,15,["H4392"]],[15,17,["H5133"]],[17,18,["H834"]],[18,21,["H7553"]],[21,22,["H935"]],[22,23,["H413"]],[23,24,["H3844"]],[24,26,["H3947","(H853)"]],[26,29,["H6788"]],[29,32,["H730"]]]},{"k":20829,"v":[[0,3,["H6998","(H853)"]],[3,5,["H7218"]],[5,9,["H3242"]],[9,11,["H935"]],[11,13,["H413"]],[13,15,["H776"]],[15,17,["H3667"]],[17,19,["H7760"]],[19,23,["H5892"]],[23,25,["H7402"]]]},{"k":20830,"v":[[0,2,["H3947"]],[2,6,["H4480","H2233"]],[6,9,["H776"]],[9,11,["H5414"]],[11,15,["H2233"]],[15,16,["H7704"]],[16,18,["H3947"]],[18,20,["H5921"]],[20,21,["H7227"]],[21,22,["H4325"]],[22,24,["H7760"]],[24,29,["H6851"]]]},{"k":20831,"v":[[0,3,["H6779"]],[3,5,["H1961"]],[5,7,["H5628"]],[7,8,["H1612"]],[8,10,["H8217"]],[10,11,["H6967"]],[11,13,["H1808"]],[13,14,["H6437"]],[14,15,["H413"]],[15,19,["H8328"]],[19,21,["H1961"]],[21,22,["H8478"]],[22,26,["H1961"]],[26,28,["H1612"]],[28,31,["H6213"]],[31,32,["H905"]],[32,35,["H7971"]],[35,36,["H6288"]]]},{"k":20832,"v":[[0,2,["H1961"]],[2,4,["H259"]],[4,5,["H1419"]],[5,6,["H5404"]],[6,8,["H1419"]],[8,9,["H3671"]],[9,11,["H7227"]],[11,12,["H5133"]],[12,14,["H2009"]],[14,15,["H2063"]],[15,16,["H1612"]],[16,18,["H3719"]],[18,20,["H8328"]],[20,25,["H7971"]],[25,27,["H1808"]],[27,28,["H5921"]],[28,33,["H8248"]],[33,37,["H4480","H6170"]],[37,40,["H4302"]]]},{"k":20833,"v":[[0,1,["H1931"]],[1,3,["H8362"]],[3,4,["H413"]],[4,6,["H2896"]],[6,7,["H7704"]],[7,8,["H413"]],[8,9,["H7227"]],[9,10,["H4325"]],[10,15,["H6213"]],[15,16,["H6057"]],[16,21,["H5375"]],[21,22,["H6529"]],[22,26,["H1961"]],[26,28,["H155"]],[28,29,["H1612"]]]},{"k":20834,"v":[[0,1,["H559"]],[1,3,["H3541"]],[3,4,["H559"]],[4,6,["H136"]],[6,7,["H3069"]],[7,10,["H6743"]],[10,13,["H3808"]],[13,15,["H5423","(H853)"]],[15,17,["H8328"]],[17,21,["H7082"]],[21,23,["H6529"]],[23,27,["H3001"]],[27,30,["H3001"]],[30,32,["H3605"]],[32,34,["H2965"]],[34,37,["H6780"]],[37,39,["H3808"]],[39,40,["H1419"]],[40,41,["H2220"]],[41,43,["H7227"]],[43,44,["H5971"]],[44,48,["H5375","(H853)"]],[48,51,["H4480","H8328"]],[51,52,[]]]},{"k":20835,"v":[[0,2,["H2009"]],[2,4,["H8362"]],[4,7,["H6743"]],[7,10,["H3808"]],[10,12,["H3001","H3001"]],[12,15,["H6921"]],[15,16,["H7307"]],[16,17,["H5060"]],[17,21,["H3001"]],[21,22,["H5921"]],[22,24,["H6170"]],[24,27,["H6780"]]]},{"k":20836,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20837,"v":[[0,1,["H559"]],[1,2,["H4994"]],[2,5,["H4805"]],[5,6,["H1004"]],[6,7,["H3045"]],[7,9,["H3808"]],[9,10,["H4100"]],[10,11,["H428"]],[11,14,["H559"]],[14,16,["H2009"]],[16,18,["H4428"]],[18,20,["H894"]],[20,22,["H935"]],[22,24,["H3389"]],[24,27,["H3947","(H853)"]],[27,29,["H4428"]],[29,33,["H8269"]],[33,36,["H935"]],[36,38,["H413"]],[38,41,["H894"]]]},{"k":20838,"v":[[0,3,["H3947"]],[3,6,["H4410"]],[6,7,["H4480","H2233"]],[7,9,["H3772"]],[9,11,["H1285"]],[11,12,["H854"]],[12,16,["H935"]],[16,18,["H423"]],[18,24,["H3947"]],[24,26,["H352"]],[26,29,["H776"]]]},{"k":20839,"v":[[0,3,["H4467"]],[3,5,["H1961"]],[5,6,["H8217"]],[6,10,["H1115"]],[10,13,["H5375"]],[13,17,["H8104","(H853)"]],[17,20,["H1285"]],[20,23,["H5975"]]]},{"k":20840,"v":[[0,3,["H4775"]],[3,7,["H7971"]],[7,9,["H4397"]],[9,11,["H4714"]],[11,15,["H5414"]],[15,17,["H5483"]],[17,19,["H7227"]],[19,20,["H5971"]],[20,23,["H6743"]],[23,26,["H4422"]],[26,28,["H6213"]],[28,29,["H428"]],[29,34,["H6565"]],[34,36,["H1285"]],[36,39,["H4422"]]]},{"k":20841,"v":[[0,2,["H589"]],[2,3,["H2416"]],[3,4,["H5002"]],[4,6,["H136"]],[6,7,["H3069"]],[7,8,["H518","H3808"]],[8,11,["H4725"]],[11,14,["H4428"]],[14,19,["H4427","(H853)"]],[19,20,["H834","(H853)"]],[20,21,["H423"]],[21,23,["H959"]],[23,25,["H834","(H853)"]],[25,26,["H1285"]],[26,28,["H6565"]],[28,30,["H854"]],[30,34,["H8432"]],[34,36,["H894"]],[36,39,["H4191"]]]},{"k":20842,"v":[[0,1,["H3808"]],[1,3,["H6547"]],[3,6,["H1419"]],[6,7,["H2428"]],[7,9,["H7227"]],[9,10,["H6951"]],[10,11,["H6213"]],[11,16,["H4421"]],[16,19,["H8210"]],[19,20,["H5550"]],[20,22,["H1129"]],[22,23,["H1785"]],[23,26,["H3772"]],[26,27,["H7227"]],[27,28,["H5315"]]]},{"k":20843,"v":[[0,3,["H959"]],[3,5,["H423"]],[5,7,["H6565"]],[7,9,["H1285"]],[9,11,["H2009"]],[11,14,["H5414"]],[14,16,["H3027"]],[16,19,["H6213"]],[19,20,["H3605"]],[20,21,["H428"]],[21,25,["H3808"]],[25,26,["H4422"]]]},{"k":20844,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,8,["H589"]],[8,9,["H2416"]],[9,10,["H518","H3808"]],[10,12,["H423"]],[12,13,["H834"]],[13,16,["H959"]],[16,19,["H1285"]],[19,20,["H834"]],[20,23,["H6565"]],[23,28,["H5414"]],[28,32,["H7218"]]]},{"k":20845,"v":[[0,4,["H6566"]],[4,6,["H7568"]],[6,7,["H5921"]],[7,13,["H8610"]],[13,16,["H4686"]],[16,20,["H935"]],[20,23,["H894"]],[23,26,["H8199"]],[26,27,["H854"]],[27,29,["H8033"]],[29,32,["H4603"]],[32,33,["H834"]],[33,36,["H4603"]],[36,38,[]]]},{"k":20846,"v":[[0,2,["H3605"]],[2,4,["H4015"]],[4,6,["H3605"]],[6,8,["H102"]],[8,10,["H5307"]],[10,13,["H2719"]],[13,17,["H7604"]],[17,20,["H6566"]],[20,22,["H3605"]],[22,23,["H7307"]],[23,27,["H3045"]],[27,28,["H3588"]],[28,29,["H589"]],[29,31,["H3068"]],[31,33,["H1696"]],[33,34,[]]]},{"k":20847,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H589"]],[6,9,["H3947"]],[9,13,["H4480","H6788"]],[13,16,["H7311"]],[16,17,["H730"]],[17,20,["H5414"]],[20,25,["H6998"]],[25,28,["H4480","H7218"]],[28,32,["H3127"]],[32,35,["H7390"]],[35,38,["H8362"]],[38,40,["H5921"]],[40,42,["H1364"]],[42,43,["H2022"]],[43,45,["H8524"]]]},{"k":20848,"v":[[0,3,["H2022"]],[3,6,["H4791"]],[6,8,["H3478"]],[8,11,["H8362"]],[11,17,["H5375"]],[17,18,["H6057"]],[18,20,["H6213"]],[20,21,["H6529"]],[21,23,["H1961"]],[23,25,["H117"]],[25,26,["H730"]],[26,28,["H8478"]],[28,31,["H7931"]],[31,32,["H3605"]],[32,33,["H6833"]],[33,35,["H3605"]],[35,36,["H3671"]],[36,39,["H6738"]],[39,42,["H1808"]],[42,46,["H7931"]]]},{"k":20849,"v":[[0,2,["H3605"]],[2,4,["H6086"]],[4,7,["H7704"]],[7,9,["H3045"]],[9,10,["H3588"]],[10,11,["H589"]],[11,13,["H3068"]],[13,16,["H8213"]],[16,18,["H1364"]],[18,19,["H6086"]],[19,21,["H1361"]],[21,23,["H8217"]],[23,24,["H6086"]],[24,27,["H3001"]],[27,29,["H3892"]],[29,30,["H6086"]],[30,35,["H3002"]],[35,36,["H6086"]],[36,38,["H6524"]],[38,39,["H589"]],[39,41,["H3068"]],[41,43,["H1696"]],[43,46,["H6213"]],[46,47,[]]]},{"k":20850,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,7,["H413"]],[7,10,["H559"]]]},{"k":20851,"v":[[0,1,["H4100"]],[1,5,["H859"]],[5,6,["H4911"]],[6,7,["H2088","(H853)"]],[7,8,["H4912"]],[8,9,["H5921"]],[9,11,["H127"]],[11,13,["H3478"]],[13,14,["H559"]],[14,16,["H1"]],[16,18,["H398"]],[18,20,["H1155"]],[20,23,["H1121"]],[23,24,["H8127"]],[24,28,["H6949"]]]},{"k":20852,"v":[[0,2,["H589"]],[2,3,["H2416"]],[3,4,["H5002"]],[4,6,["H136"]],[6,7,["H3069"]],[7,10,["H518"]],[10,11,["H1961"]],[11,14,["H5750"]],[14,16,["H4911"]],[16,17,["H2088"]],[17,18,["H4912"]],[18,20,["H3478"]]]},{"k":20853,"v":[[0,1,["H2005"]],[1,2,["H3605"]],[2,3,["H5315"]],[3,8,["H5315"]],[8,11,["H1"]],[11,15,["H5315"]],[15,18,["H1121"]],[18,22,["H5315"]],[22,24,["H2398"]],[24,25,["H1931"]],[25,27,["H4191"]]]},{"k":20854,"v":[[0,2,["H3588"]],[2,4,["H376"]],[4,5,["H1961"]],[5,6,["H6662"]],[6,8,["H6213"]],[8,12,["H4941"]],[12,14,["H6666"]]]},{"k":20855,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,5,["H413"]],[5,7,["H2022"]],[7,8,["H3808"]],[8,11,["H5375"]],[11,13,["H5869"]],[13,14,["H413"]],[14,16,["H1544"]],[16,19,["H1004"]],[19,21,["H3478"]],[21,22,["H3808"]],[22,24,["H2930"]],[24,26,["H7453"]],[26,27,["H802"]],[27,28,["H3808"]],[28,31,["H7126"]],[31,32,["H413"]],[32,34,["H5079"]],[34,35,["H802"]]]},{"k":20856,"v":[[0,3,["H3808"]],[3,4,["H3238"]],[4,5,["H376"]],[5,8,["H7725"]],[8,11,["H2326"]],[11,13,["H2258"]],[13,15,["H1497"]],[15,16,["H3808"]],[16,18,["H1500"]],[18,20,["H5414"]],[20,22,["H3899"]],[22,25,["H7457"]],[25,28,["H3680"]],[28,30,["H5903"]],[30,33,["H899"]]]},{"k":20857,"v":[[0,4,["H3808"]],[4,6,["H5414"]],[6,8,["H5392"]],[8,9,["H3808"]],[9,11,["H3947"]],[11,13,["H8636"]],[13,16,["H7725"]],[16,18,["H3027"]],[18,20,["H4480","H5766"]],[20,22,["H6213"]],[22,23,["H571"]],[23,24,["H4941"]],[24,25,["H996"]],[25,26,["H376"]],[26,28,["H376"]]]},{"k":20858,"v":[[0,2,["H1980"]],[2,5,["H2708"]],[5,8,["H8104"]],[8,10,["H4941"]],[10,12,["H6213"]],[12,13,["H571"]],[13,14,["H1931"]],[14,16,["H6662"]],[16,20,["H2421","H2421"]],[20,21,["H5002"]],[21,23,["H136"]],[23,24,["H3069"]]]},{"k":20859,"v":[[0,3,["H3205"]],[3,5,["H1121"]],[5,9,["H6530"]],[9,11,["H8210"]],[11,13,["H1818"]],[13,16,["H6213"]],[16,18,["H251"]],[18,21,["H4480","H259"]],[21,23,["H4480","H428"]],[23,24,[]]]},{"k":20860,"v":[[0,2,["H1931"]],[2,3,["H6213"]],[3,4,["H3808","(H853)"]],[4,5,["H3605"]],[5,7,["H428"]],[7,9,["H3588"]],[9,10,["H1571"]],[10,12,["H398"]],[12,13,["H413"]],[13,15,["H2022"]],[15,17,["H2930"]],[17,19,["H7453"]],[19,20,["H802"]]]},{"k":20861,"v":[[0,2,["H3238"]],[2,4,["H6041"]],[4,6,["H34"]],[6,8,["H1497"]],[8,10,["H1500"]],[10,12,["H3808"]],[12,13,["H7725"]],[13,15,["H2258"]],[15,19,["H5375"]],[19,21,["H5869"]],[21,22,["H413"]],[22,24,["H1544"]],[24,26,["H6213"]],[26,27,["H8441"]]]},{"k":20862,"v":[[0,3,["H5414"]],[3,5,["H5392"]],[5,8,["H3947"]],[8,9,["H8636"]],[9,13,["H2421"]],[13,16,["H3808"]],[16,17,["H2421"]],[17,20,["H6213","(H853)"]],[20,21,["H3605"]],[21,22,["H428"]],[22,23,["H8441"]],[23,27,["H4191","H4191"]],[27,29,["H1818"]],[29,31,["H1961"]],[31,33,[]]]},{"k":20863,"v":[[0,2,["H2009"]],[2,5,["H3205"]],[5,7,["H1121"]],[7,9,["H7200","(H853)"]],[9,10,["H3605"]],[10,12,["H1"]],[12,13,["H2403"]],[13,14,["H834"]],[14,17,["H6213"]],[17,19,["H7200"]],[19,21,["H6213"]],[21,22,["H3808"]],[22,24,[]]]},{"k":20864,"v":[[0,3,["H3808"]],[3,4,["H398"]],[4,5,["H5921"]],[5,7,["H2022"]],[7,8,["H3808"]],[8,11,["H5375"]],[11,13,["H5869"]],[13,14,["H413"]],[14,16,["H1544"]],[16,19,["H1004"]],[19,21,["H3478"]],[21,23,["H3808"]],[23,24,["H2930"]],[24,26,["H7453","(H853)"]],[26,27,["H802"]]]},{"k":20865,"v":[[0,1,["H3808"]],[1,3,["H3238"]],[3,4,["H376"]],[4,6,["H3808"]],[6,7,["H2254"]],[7,9,["H2258"]],[9,10,["H3808"]],[10,12,["H1497"]],[12,14,["H1500"]],[14,17,["H5414"]],[17,19,["H3899"]],[19,22,["H7457"]],[22,25,["H3680"]],[25,27,["H5903"]],[27,30,["H899"]]]},{"k":20866,"v":[[0,4,["H7725"]],[4,6,["H3027"]],[6,9,["H4480","H6041"]],[9,12,["H3808"]],[12,13,["H3947"]],[13,14,["H5392"]],[14,16,["H8636"]],[16,18,["H6213"]],[18,20,["H4941"]],[20,22,["H1980"]],[22,25,["H2708"]],[25,26,["H1931"]],[26,28,["H3808"]],[28,29,["H4191"]],[29,32,["H5771"]],[32,35,["H1"]],[35,39,["H2421","H2421"]]]},{"k":20867,"v":[[0,4,["H1"]],[4,5,["H3588"]],[5,8,["H6231","H6233"]],[8,9,["H1497"]],[9,11,["H251"]],[11,13,["H1499"]],[13,15,["H6213"]],[15,17,["H834"]],[17,19,["H3808"]],[19,20,["H2896"]],[20,21,["H8432"]],[21,23,["H5971"]],[23,24,["H2009"]],[24,28,["H4191"]],[28,31,["H5771"]]]},{"k":20868,"v":[[0,2,["H559"]],[2,4,["H4069"]],[4,6,["H3808"]],[6,8,["H1121"]],[8,9,["H5375"]],[9,11,["H5771"]],[11,14,["H1"]],[14,17,["H1121"]],[17,19,["H6213"]],[19,23,["H4941"]],[23,25,["H6666"]],[25,28,["H8104","(H853)"]],[28,29,["H3605"]],[29,31,["H2708"]],[31,34,["H6213"]],[34,39,["H2421","H2421"]]]},{"k":20869,"v":[[0,2,["H5315"]],[2,4,["H2398"]],[4,5,["H1931"]],[5,7,["H4191"]],[7,9,["H1121"]],[9,11,["H3808"]],[11,12,["H5375"]],[12,14,["H5771"]],[14,17,["H1"]],[17,18,["H3808"]],[18,21,["H1"]],[21,22,["H5375"]],[22,24,["H5771"]],[24,27,["H1121"]],[27,29,["H6666"]],[29,32,["H6662"]],[32,34,["H1961"]],[34,35,["H5921"]],[35,39,["H7564"]],[39,42,["H7563"]],[42,44,["H1961"]],[44,45,["H5921"]],[45,46,[]]]},{"k":20870,"v":[[0,2,["H3588"]],[2,4,["H7563"]],[4,6,["H7725"]],[6,8,["H4480","H3605"]],[8,10,["H2403"]],[10,11,["H834"]],[11,14,["H6213"]],[14,16,["H8104","(H853)"]],[16,17,["H3605"]],[17,19,["H2708"]],[19,21,["H6213"]],[21,25,["H4941"]],[25,27,["H6666"]],[27,31,["H2421","H2421"]],[31,34,["H3808"]],[34,35,["H4191"]]]},{"k":20871,"v":[[0,1,["H3605"]],[1,3,["H6588"]],[3,4,["H834"]],[4,7,["H6213"]],[7,10,["H3808"]],[10,12,["H2142"]],[12,17,["H6666"]],[17,18,["H834"]],[18,21,["H6213"]],[21,24,["H2421"]]]},{"k":20872,"v":[[0,6,["H2654","H2654"]],[6,9,["H7563"]],[9,11,["H4194"]],[11,12,["H5002"]],[12,14,["H136"]],[14,15,["H3069"]],[15,17,["H3808"]],[17,21,["H7725"]],[21,24,["H4480","H1870"]],[24,26,["H2421"]]]},{"k":20873,"v":[[0,4,["H6662"]],[4,6,["H7725"]],[6,9,["H4480","H6666"]],[9,11,["H6213"]],[11,12,["H5766"]],[12,14,["H6213"]],[14,17,["H3605"]],[17,19,["H8441"]],[19,20,["H834"]],[20,22,["H7563"]],[22,24,["H6213"]],[24,27,["H2421"]],[27,28,["H3605"]],[28,30,["H6666"]],[30,31,["H834"]],[31,34,["H6213"]],[34,36,["H3808"]],[36,38,["H2142"]],[38,41,["H4604"]],[41,42,["H834"]],[42,45,["H4603"]],[45,49,["H2403"]],[49,50,["H834"]],[50,53,["H2398"]],[53,58,["H4191"]]]},{"k":20874,"v":[[0,3,["H559"]],[3,5,["H1870"]],[5,8,["H136"]],[8,11,["H8505","H3808"]],[11,12,["H8085"]],[12,13,["H4994"]],[13,15,["H1004"]],[15,17,["H3478"]],[17,19,["H3808"]],[19,21,["H1870"]],[21,22,["H8505"]],[22,24,["H3808"]],[24,26,["H1870"]],[26,27,["H3808","H8505"]]]},{"k":20875,"v":[[0,3,["H6662"]],[3,6,["H7725"]],[6,9,["H4480","H6666"]],[9,11,["H6213"]],[11,12,["H5766"]],[12,14,["H4191"]],[14,15,["H5921"]],[15,19,["H5766"]],[19,20,["H834"]],[20,23,["H6213"]],[23,26,["H4191"]]]},{"k":20876,"v":[[0,4,["H7563"]],[4,7,["H7725"]],[7,10,["H4480","H7564"]],[10,11,["H834"]],[11,14,["H6213"]],[14,16,["H6213"]],[16,20,["H4941"]],[20,22,["H6666"]],[22,23,["H1931"]],[23,28,["H2421","(H853)","H5315"]]]},{"k":20877,"v":[[0,3,["H7200"]],[3,6,["H7725"]],[6,8,["H4480","H3605"]],[8,10,["H6588"]],[10,11,["H834"]],[11,14,["H6213"]],[14,18,["H2421","H2421"]],[18,21,["H3808"]],[21,22,["H4191"]]]},{"k":20878,"v":[[0,2,["H559"]],[2,4,["H1004"]],[4,6,["H3478"]],[6,8,["H1870"]],[8,11,["H136"]],[11,14,["H8505","H3808"]],[14,16,["H1004"]],[16,18,["H3478"]],[18,20,["H3808"]],[20,22,["H1870"]],[22,23,["H8505"]],[23,25,["H3808"]],[25,27,["H1870"]],[27,28,["H3808","H8505"]]]},{"k":20879,"v":[[0,1,["H3651"]],[1,4,["H8199"]],[4,7,["H1004"]],[7,9,["H3478"]],[9,11,["H376"]],[11,15,["H1870"]],[15,16,["H5002"]],[16,18,["H136"]],[18,19,["H3069"]],[19,20,["H7725"]],[20,22,["H7725"]],[22,25,["H4480","H3605"]],[25,27,["H6588"]],[27,29,["H5771"]],[29,31,["H3808"]],[31,32,["H1961"]],[32,34,["H4383"]]]},{"k":20880,"v":[[0,2,["H7993"]],[2,3,["H4480","H5921"]],[3,4,["(H853)"]],[4,5,["H3605"]],[5,7,["H6588"]],[7,8,["H834"]],[8,11,["H6586"]],[11,13,["H6213"]],[13,16,["H2319"]],[16,17,["H3820"]],[17,20,["H2319"]],[20,21,["H7307"]],[21,23,["H4100"]],[23,26,["H4191"]],[26,28,["H1004"]],[28,30,["H3478"]]]},{"k":20881,"v":[[0,1,["H3588"]],[1,5,["H2654","H3808"]],[5,8,["H4194"]],[8,12,["H4191"]],[12,13,["H5002"]],[13,15,["H136"]],[15,16,["H3069"]],[16,18,["H7725"]],[18,21,["H2421"]],[21,22,[]]]},{"k":20882,"v":[[0,4,["H859","H5375"]],[4,6,["H7015"]],[6,7,["H413"]],[7,9,["H5387"]],[9,11,["H3478"]]]},{"k":20883,"v":[[0,2,["H559"]],[2,3,["H4100"]],[3,6,["H517"]],[6,8,["H3833"]],[8,11,["H7257"]],[11,12,["H996"]],[12,13,["H738"]],[13,15,["H7235"]],[15,17,["H1482"]],[17,18,["H8432"]],[18,20,["H3715"]]]},{"k":20884,"v":[[0,4,["H5927"]],[4,5,["H259"]],[5,8,["H4480","H1482"]],[8,10,["H1961"]],[10,13,["H3715"]],[13,16,["H3925"]],[16,18,["H2963"]],[18,20,["H2964"]],[20,22,["H398"]],[22,23,["H120"]]]},{"k":20885,"v":[[0,2,["H1471"]],[2,4,["H8085"]],[4,5,["H413"]],[5,9,["H8610"]],[9,12,["H7845"]],[12,15,["H935"]],[15,18,["H2397"]],[18,19,["H413"]],[19,21,["H776"]],[21,23,["H4714"]]]},{"k":20886,"v":[[0,4,["H7200"]],[4,5,["H3588"]],[5,8,["H3176"]],[8,11,["H8615"]],[11,13,["H6"]],[13,16,["H3947"]],[16,17,["H259"]],[17,20,["H4480","H1482"]],[20,22,["H7760"]],[22,26,["H3715"]]]},{"k":20887,"v":[[0,6,["H1980"]],[6,7,["H8432"]],[7,9,["H738"]],[9,11,["H1961"]],[11,14,["H3715"]],[14,16,["H3925"]],[16,18,["H2963"]],[18,20,["H2964"]],[20,22,["H398"]],[22,23,["H120"]]]},{"k":20888,"v":[[0,3,["H3045"]],[3,6,["H759"]],[6,10,["H2717"]],[10,12,["H5892"]],[12,15,["H776"]],[15,17,["H3456"]],[17,20,["H4393"]],[20,24,["H4480","H6963"]],[24,27,["H7581"]]]},{"k":20889,"v":[[0,3,["H1471"]],[3,4,["H5414"]],[4,5,["H5921"]],[5,9,["H5439"]],[9,12,["H4480","H4082"]],[12,14,["H6566"]],[14,16,["H7568"]],[16,17,["H5921"]],[17,21,["H8610"]],[21,24,["H7845"]]]},{"k":20890,"v":[[0,3,["H5414"]],[3,6,["H5474"]],[6,8,["H2397"]],[8,10,["H935"]],[10,12,["H413"]],[12,14,["H4428"]],[14,16,["H894"]],[16,18,["H935"]],[18,21,["H4679"]],[21,22,["H4616"]],[22,24,["H6963"]],[24,26,["H3808"]],[26,27,["H5750"]],[27,29,["H8085"]],[29,30,["H413"]],[30,32,["H2022"]],[32,34,["H3478"]]]},{"k":20891,"v":[[0,2,["H517"]],[2,6,["H1612"]],[6,9,["H1818"]],[9,10,["H8362"]],[10,11,["H5921"]],[11,13,["H4325"]],[13,15,["H1961"]],[15,16,["H6509"]],[16,20,["H6058"]],[20,24,["H7227"]],[24,25,["H4480","H4325"]]]},{"k":20892,"v":[[0,3,["H1961"]],[3,4,["H5797"]],[4,5,["H4294"]],[5,6,["H413"]],[6,8,["H7626"]],[8,13,["H4910"]],[13,16,["H6967"]],[16,18,["H1361"]],[18,19,["H5921","H996"]],[19,22,["H5688"]],[22,25,["H7200"]],[25,28,["H1363"]],[28,31,["H7230"]],[31,34,["H1808"]]]},{"k":20893,"v":[[0,5,["H5428"]],[5,7,["H2534"]],[7,11,["H7993"]],[11,14,["H776"]],[14,17,["H6921"]],[17,18,["H7307"]],[18,20,["H3001"]],[20,22,["H6529"]],[22,24,["H5797"]],[24,25,["H4294"]],[25,27,["H6561"]],[27,29,["H3001"]],[29,31,["H784"]],[31,32,["H398"]],[32,33,[]]]},{"k":20894,"v":[[0,2,["H6258"]],[2,5,["H8362"]],[5,8,["H4057"]],[8,11,["H6723"]],[11,13,["H6772"]],[13,14,["H776"]]]},{"k":20895,"v":[[0,2,["H784"]],[2,5,["H3318"]],[5,8,["H4480","H4294"]],[8,11,["H905"]],[11,14,["H398"]],[14,16,["H6529"]],[16,20,["H1961"]],[20,21,["H3808"]],[21,22,["H5797"]],[22,23,["H4294"]],[23,27,["H7626"]],[27,29,["H4910"]],[29,30,["H1931"]],[30,33,["H7015"]],[33,36,["H1961"]],[36,39,["H7015"]]]},{"k":20896,"v":[[0,5,["H1961"]],[5,8,["H7637"]],[8,9,["H8141"]],[9,12,["H2549"]],[12,15,["H6218"]],[15,19,["H2320"]],[19,21,["H376"]],[21,24,["H4480","H2205"]],[24,26,["H3478"]],[26,27,["H935"]],[27,29,["H1875","(H853)"]],[29,32,["H3068"]],[32,34,["H3427"]],[34,35,["H6440"]],[35,36,[]]]},{"k":20897,"v":[[0,2,["H1961"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20898,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H1696","(H853)"]],[4,7,["H2205"]],[7,9,["H3478"]],[9,11,["H559"]],[11,12,["H413"]],[12,14,["H3541"]],[14,15,["H559"]],[15,17,["H136"]],[17,18,["H3069"]],[18,20,["H859"]],[20,21,["H935"]],[21,23,["H1875"]],[23,27,["H589"]],[27,28,["H2416"]],[28,29,["H5002"]],[29,31,["H136"]],[31,32,["H3069"]],[32,35,["H518"]],[35,37,["H1875"]],[37,40,[]]]},{"k":20899,"v":[[0,3,["H8199"]],[3,5,["H1121"]],[5,7,["H120"]],[7,10,["H8199"]],[10,15,["H3045","(H853)"]],[15,17,["H8441"]],[17,20,["H1"]]]},{"k":20900,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H3541"]],[5,6,["H559"]],[6,8,["H136"]],[8,9,["H3069"]],[9,12,["H3117"]],[12,15,["H977"]],[15,16,["H3478"]],[16,19,["H5375"]],[19,21,["H3027"]],[21,24,["H2233"]],[24,27,["H1004"]],[27,29,["H3290"]],[29,33,["H3045"]],[33,38,["H776"]],[38,40,["H4714"]],[40,44,["H5375"]],[44,46,["H3027"]],[46,49,["H559"]],[49,50,["H589"]],[50,53,["H3068"]],[53,55,["H430"]]]},{"k":20901,"v":[[0,3,["H3117"]],[3,7,["H5375"]],[7,9,["H3027"]],[9,15,["H3318"]],[15,18,["H4480","H776"]],[18,20,["H4714"]],[20,21,["H413"]],[21,23,["H776"]],[23,24,["H834"]],[24,27,["H8446"]],[27,30,["H2100"]],[30,32,["H2461"]],[32,34,["H1706"]],[34,35,["H1931"]],[35,38,["H6643"]],[38,40,["H3605"]],[40,41,["H776"]]]},{"k":20902,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,8,["H7993"]],[8,10,["H376"]],[10,12,["H8251"]],[12,15,["H5869"]],[15,19,["H2930","H408"]],[19,22,["H1544"]],[22,24,["H4714"]],[24,25,["H589"]],[25,28,["H3068"]],[28,30,["H430"]]]},{"k":20903,"v":[[0,3,["H4784"]],[3,7,["H14"]],[7,8,["H3808"]],[8,9,["H8085"]],[9,10,["H413"]],[10,14,["H3808"]],[14,16,["H376"]],[16,18,["H7993","(H853)"]],[18,20,["H8251"]],[20,23,["H5869"]],[23,24,["H3808"]],[24,27,["H5800"]],[27,29,["H1544"]],[29,31,["H4714"]],[31,34,["H559"]],[34,38,["H8210"]],[38,40,["H2534"]],[40,41,["H5921"]],[41,44,["H3615"]],[44,46,["H639"]],[46,51,["H8432"]],[51,54,["H776"]],[54,56,["H4714"]]]},{"k":20904,"v":[[0,3,["H6213"]],[3,7,["H4616","H8034"]],[7,11,["H1115"]],[11,13,["H2490"]],[13,14,["H5869"]],[14,16,["H1471"]],[16,17,["H8432"]],[17,18,["H834"]],[18,19,["H1992"]],[19,22,["H834"]],[22,23,["H5869"]],[23,27,["H3045"]],[27,28,["H413"]],[28,33,["H3318"]],[33,37,["H4480","H776"]],[37,39,["H4714"]]]},{"k":20905,"v":[[0,7,["H3318"]],[7,11,["H4480","H776"]],[11,13,["H4714"]],[13,15,["H935"]],[15,17,["H413"]],[17,19,["H4057"]]]},{"k":20906,"v":[[0,3,["H5414"]],[3,4,["(H853)"]],[4,6,["H2708"]],[6,8,["H3045"]],[8,11,["H4941"]],[11,12,["H834"]],[12,15,["H120"]],[15,16,["H6213","(H853)"]],[16,20,["H2421"]],[20,22,[]]]},{"k":20907,"v":[[0,2,["H1571"]],[2,4,["H5414"]],[4,5,["(H853)"]],[5,7,["H7676"]],[7,9,["H1961"]],[9,11,["H226"]],[11,12,["H996"]],[12,19,["H3045"]],[19,20,["H3588"]],[20,21,["H589"]],[21,24,["H3068"]],[24,26,["H6942"]],[26,27,[]]]},{"k":20908,"v":[[0,3,["H1004"]],[3,5,["H3478"]],[5,6,["H4784"]],[6,11,["H4057"]],[11,13,["H1980"]],[13,14,["H3808"]],[14,17,["H2708"]],[17,20,["H3988"]],[20,22,["H4941"]],[22,23,["H834"]],[23,26,["H120"]],[26,27,["H6213","(H853)"]],[27,31,["H2421"]],[31,36,["H7676"]],[36,38,["H3966"]],[38,39,["H2490"]],[39,42,["H559"]],[42,46,["H8210"]],[46,48,["H2534"]],[48,49,["H5921"]],[49,53,["H4057"]],[53,55,["H3615"]],[55,56,[]]]},{"k":20909,"v":[[0,3,["H6213"]],[3,7,["H4616","H8034"]],[7,11,["H1115"]],[11,13,["H2490"]],[13,14,["H5869"]],[14,16,["H1471"]],[16,18,["H834"]],[18,19,["H5869"]],[19,23,["H3318"]]]},{"k":20910,"v":[[0,2,["H1571"]],[2,3,["H589"]],[3,5,["H5375"]],[5,7,["H3027"]],[7,12,["H4057"]],[12,16,["H1115"]],[16,17,["H935"]],[17,19,["H413"]],[19,21,["H776"]],[21,22,["H834"]],[22,25,["H5414"]],[25,27,["H2100"]],[27,29,["H2461"]],[29,31,["H1706"]],[31,32,["H1931"]],[32,35,["H6643"]],[35,37,["H3605"]],[37,38,["H776"]]]},{"k":20911,"v":[[0,1,["H3282"]],[1,3,["H3988"]],[3,5,["H4941"]],[5,7,["H1980"]],[7,8,["H3808"]],[8,11,["H2708"]],[11,13,["H2490"]],[13,15,["H7676"]],[15,16,["H3588"]],[16,18,["H3820"]],[18,19,["H1980"]],[19,20,["H310"]],[20,22,["H1544"]]]},{"k":20912,"v":[[0,3,["H5869"]],[3,4,["H2347","H5921"]],[4,7,["H4480","H7843"]],[7,9,["H3808"]],[9,12,["H6213"]],[12,14,["H3617"]],[14,19,["H4057"]]]},{"k":20913,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,9,["H4057"]],[9,10,["H1980"]],[10,12,["H408"]],[12,15,["H2706"]],[15,18,["H1"]],[18,19,["H408"]],[19,20,["H8104"]],[20,22,["H4941"]],[22,23,["H408"]],[23,25,["H2930"]],[25,28,["H1544"]]]},{"k":20914,"v":[[0,1,["H589"]],[1,4,["H3068"]],[4,6,["H430"]],[6,7,["H1980"]],[7,10,["H2708"]],[10,12,["H8104"]],[12,14,["H4941"]],[14,16,["H6213"]],[16,17,[]]]},{"k":20915,"v":[[0,2,["H6942"]],[2,4,["H7676"]],[4,8,["H1961"]],[8,10,["H226"]],[10,11,["H996"]],[11,18,["H3045"]],[18,19,["H3588"]],[19,20,["H589"]],[20,23,["H3068"]],[23,25,["H430"]]]},{"k":20916,"v":[[0,3,["H1121"]],[3,4,["H4784"]],[4,8,["H1980"]],[8,9,["H3808"]],[9,12,["H2708"]],[12,13,["H3808"]],[13,14,["H8104"]],[14,16,["H4941"]],[16,18,["H6213"]],[18,20,["H834"]],[20,23,["H120"]],[23,24,["H6213","(H853)"]],[24,28,["H2421"]],[28,32,["H2490","(H853)"]],[32,34,["H7676"]],[34,37,["H559"]],[37,41,["H8210"]],[41,43,["H2534"]],[43,44,["H5921"]],[44,47,["H3615"]],[47,49,["H639"]],[49,54,["H4057"]]]},{"k":20917,"v":[[0,3,["H7725","(H853)"]],[3,5,["H3027"]],[5,7,["H6213"]],[7,11,["H4616","H8034"]],[11,15,["H1115"]],[15,17,["H2490"]],[17,20,["H5869"]],[20,23,["H1471"]],[23,25,["H834"]],[25,26,["H5869"]],[26,30,["H3318","(H853)"]]]},{"k":20918,"v":[[0,1,["H589"]],[1,3,["H5375","(H853)"]],[3,5,["H3027"]],[5,8,["H1571"]],[8,11,["H4057"]],[11,15,["H6327"]],[15,19,["H1471"]],[19,21,["H2219"]],[21,25,["H776"]]]},{"k":20919,"v":[[0,1,["H3282"]],[1,4,["H3808"]],[4,5,["H6213"]],[5,7,["H4941"]],[7,10,["H3988"]],[10,12,["H2708"]],[12,15,["H2490"]],[15,17,["H7676"]],[17,20,["H5869"]],[20,21,["H1961"]],[21,22,["H310"]],[22,24,["H1"]],[24,25,["H1544"]]]},{"k":20920,"v":[[0,2,["H589"]],[2,3,["H5414"]],[3,5,["H1571"]],[5,6,["H2706"]],[6,9,["H3808"]],[9,10,["H2896"]],[10,12,["H4941"]],[12,16,["H3808"]],[16,17,["H2421"]]]},{"k":20921,"v":[[0,3,["H2930"]],[3,8,["H4979"]],[8,15,["H5674"]],[15,18,["H3605"]],[18,20,["H6363"]],[20,22,["H7356"]],[22,23,["H4616"]],[23,28,["H8074"]],[28,31,["H4616"]],[31,32,["H834"]],[32,35,["H3045"]],[35,36,["H834"]],[36,37,["H589"]],[37,40,["H3068"]]]},{"k":20922,"v":[[0,1,["H3651"]],[1,2,["H1121"]],[2,4,["H120"]],[4,5,["H1696"]],[5,6,["H413"]],[6,8,["H1004"]],[8,10,["H3478"]],[10,12,["H559"]],[12,13,["H413"]],[13,15,["H3541"]],[15,16,["H559"]],[16,18,["H136"]],[18,19,["H3069"]],[19,20,["H5750"]],[20,22,["H2063"]],[22,24,["H1"]],[24,26,["H1442"]],[26,32,["H4603"]],[32,34,["H4604"]],[34,36,[]]]},{"k":20923,"v":[[0,5,["H935"]],[5,7,["H413"]],[7,9,["H776"]],[9,12,["H834"]],[12,15,["H5375","(H853)"]],[15,17,["H3027"]],[17,19,["H5414"]],[19,25,["H7200"]],[25,26,["H3605"]],[26,27,["H7311"]],[27,28,["H1389"]],[28,30,["H3605"]],[30,32,["H5687"]],[32,33,["H6086"]],[33,36,["H2076"]],[36,37,["H8033","(H853)"]],[37,39,["H2077"]],[39,41,["H8033"]],[41,43,["H5414"]],[43,45,["H3708"]],[45,48,["H7133"]],[48,49,["H8033"]],[49,52,["H7760"]],[52,54,["H5207"]],[54,55,["H7381"]],[55,58,["H5258"]],[58,59,["H8033","(H853)"]],[59,62,["H5262"]]]},{"k":20924,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H4100"]],[6,10,["H1116"]],[10,11,["H834","H8033"]],[11,12,["H859"]],[12,13,["H935"]],[13,16,["H8034"]],[16,19,["H7121"]],[19,20,["H1117"]],[20,21,["H5704"]],[21,22,["H2088"]],[22,23,["H3117"]]]},{"k":20925,"v":[[0,1,["H3651"]],[1,2,["H559"]],[2,3,["H413"]],[3,5,["H1004"]],[5,7,["H3478"]],[7,8,["H3541"]],[8,9,["H559"]],[9,11,["H136"]],[11,12,["H3069"]],[12,14,["H859"]],[14,15,["H2930"]],[15,18,["H1870"]],[18,21,["H1"]],[21,25,["H2181","H859"]],[25,26,["H310"]],[26,28,["H8251"]]]},{"k":20926,"v":[[0,4,["H5375"]],[4,6,["H4979"]],[6,11,["H1121"]],[11,13,["H5674"]],[13,16,["H784"]],[16,17,["H859"]],[17,19,["H2930"]],[19,21,["H3605"]],[21,23,["H1544"]],[23,25,["H5704"]],[25,27,["H3117"]],[27,30,["H589"]],[30,33,["H1875"]],[33,37,["H1004"]],[37,39,["H3478"]],[39,41,["H589"]],[41,42,["H2416"]],[42,43,["H5002"]],[43,45,["H136"]],[45,46,["H3069"]],[46,49,["H518"]],[49,52,["H1875"]],[52,54,[]]]},{"k":20927,"v":[[0,4,["H5927"]],[4,5,["H5921"]],[5,7,["H7307"]],[7,9,["H3808"]],[9,12,["H1961","H1961"]],[12,13,["H834"]],[13,14,["H859"]],[14,15,["H559"]],[15,18,["H1961"]],[18,21,["H1471"]],[21,24,["H4940"]],[24,27,["H776"]],[27,29,["H8334"]],[29,30,["H6086"]],[30,32,["H68"]]]},{"k":20928,"v":[[0,2,["H589"]],[2,3,["H2416"]],[3,4,["H5002"]],[4,6,["H136"]],[6,7,["H3069"]],[7,8,["H518","H3808"]],[8,11,["H2389"]],[11,12,["H3027"]],[12,17,["H5186"]],[17,18,["H2220"]],[18,21,["H2534"]],[21,23,["H8210"]],[23,26,["H4427"]],[26,27,["H5921"]],[27,28,[]]]},{"k":20929,"v":[[0,6,["H3318","(H853)"]],[6,7,["H4480"]],[7,9,["H5971"]],[9,12,["H6908"]],[12,15,["H4480"]],[15,17,["H776"]],[17,18,["H834"]],[18,21,["H6327"]],[21,24,["H2389"]],[24,25,["H3027"]],[25,30,["H5186"]],[30,31,["H2220"]],[31,34,["H2534"]],[34,36,["H8210"]]]},{"k":20930,"v":[[0,4,["H935"]],[4,6,["H413"]],[6,8,["H4057"]],[8,11,["H5971"]],[11,13,["H8033"]],[13,16,["H8199"]],[16,17,["H854"]],[17,19,["H6440"]],[19,20,["H413"]],[20,21,["H6440"]]]},{"k":20931,"v":[[0,2,["H834"]],[2,4,["H8199"]],[4,5,["H854"]],[5,7,["H1"]],[7,10,["H4057"]],[10,13,["H776"]],[13,15,["H4714"]],[15,16,["H3651"]],[16,19,["H8199"]],[19,20,["H854"]],[20,22,["H5002"]],[22,24,["H136"]],[24,25,["H3069"]]]},{"k":20932,"v":[[0,7,["H5674"]],[7,8,["H8478"]],[8,10,["H7626"]],[10,14,["H935"]],[14,18,["H4562"]],[18,21,["H1285"]]]},{"k":20933,"v":[[0,5,["H1305"]],[5,6,["H4480"]],[6,10,["H4775"]],[10,14,["H6586"]],[14,21,["H3318","(H853)"]],[21,25,["H4480","H776"]],[25,28,["H4033"]],[28,32,["H3808"]],[32,33,["H935"]],[33,34,["H413"]],[34,36,["H127"]],[36,38,["H3478"]],[38,42,["H3045"]],[42,43,["H3588"]],[43,44,["H589"]],[44,47,["H3068"]]]},{"k":20934,"v":[[0,3,["H859"]],[3,5,["H1004"]],[5,7,["H3478"]],[7,8,["H3541"]],[8,9,["H559"]],[9,11,["H136"]],[11,12,["H3069"]],[12,13,["H1980"]],[13,15,["H5647"]],[15,18,["H376"]],[18,20,["H1544"]],[20,22,["H310"]],[22,24,["H518"]],[24,27,["H369"]],[27,28,["H8085"]],[28,29,["H413"]],[29,32,["H2490"]],[32,35,["H6944"]],[35,36,["H8034"]],[36,37,["H3808"]],[37,38,["H5750"]],[38,41,["H4979"]],[41,45,["H1544"]]]},{"k":20935,"v":[[0,1,["H3588"]],[1,4,["H6944"]],[4,5,["H2022"]],[5,8,["H2022"]],[8,11,["H4791"]],[11,13,["H3478"]],[13,14,["H5002"]],[14,16,["H136"]],[16,17,["H3069"]],[17,18,["H8033"]],[18,20,["H3605"]],[20,22,["H1004"]],[22,24,["H3478"]],[24,25,["H3605"]],[25,30,["H776"]],[30,31,["H5647"]],[31,33,["H8033"]],[33,36,["H7521"]],[36,39,["H8033"]],[39,42,["H1875","(H853)"]],[42,44,["H8641"]],[44,47,["H7225"]],[47,50,["H4864"]],[50,52,["H3605"]],[52,55,["H6944"]]]},{"k":20936,"v":[[0,3,["H7521"]],[3,7,["H5207"]],[7,8,["H7381"]],[8,13,["H3318","(H853)"]],[13,14,["H4480"]],[14,16,["H5971"]],[16,18,["H6908"]],[18,21,["H4480"]],[21,23,["H776"]],[23,24,["H834"]],[24,28,["H6327"]],[28,33,["H6942"]],[33,36,["H5869"]],[36,38,["H1471"]]]},{"k":20937,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,13,["H935"]],[13,15,["H413"]],[15,17,["H127"]],[17,19,["H3478"]],[19,20,["H413"]],[20,22,["H776"]],[22,25,["H834"]],[25,28,["H5375","(H853)"]],[28,30,["H3027"]],[30,32,["H5414"]],[32,36,["H1"]]]},{"k":20938,"v":[[0,2,["H8033"]],[2,5,["H2142","(H853)"]],[5,7,["H1870"]],[7,9,["H3605"]],[9,11,["H5949"]],[11,12,["H834"]],[12,16,["H2930"]],[16,21,["H6962"]],[21,25,["H6440"]],[25,27,["H3605"]],[27,29,["H7451"]],[29,30,["H834"]],[30,33,["H6213"]]]},{"k":20939,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,13,["H6213"]],[13,14,["H854"]],[14,19,["H4616","H8034"]],[19,20,["H3808"]],[20,24,["H7451"]],[24,25,["H1870"]],[25,30,["H7843"]],[30,31,["H5949"]],[31,34,["H1004"]],[34,36,["H3478"]],[36,37,["H5002"]],[37,39,["H136"]],[39,40,["H3069"]]]},{"k":20940,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20941,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H7760"]],[4,6,["H6440"]],[6,7,["H1870"]],[7,9,["H8486"]],[9,11,["H5197"]],[11,14,["H413"]],[14,16,["H1864"]],[16,18,["H5012"]],[18,19,["H413"]],[19,21,["H3293"]],[21,24,["H5045"]],[24,25,["H7704"]]]},{"k":20942,"v":[[0,2,["H559"]],[2,5,["H3293"]],[5,8,["H5045"]],[8,9,["H8085"]],[9,11,["H1697"]],[11,14,["H3068"]],[14,15,["H3541"]],[15,16,["H559"]],[16,18,["H136"]],[18,19,["H3069"]],[19,20,["H2009"]],[20,23,["H3341"]],[23,25,["H784"]],[25,31,["H398"]],[31,32,["H3605"]],[32,33,["H3892"]],[33,34,["H6086"]],[34,38,["H3605"]],[38,39,["H3002"]],[39,40,["H6086"]],[40,42,["H3852"]],[42,43,["H7957"]],[43,45,["H3808"]],[45,47,["H3518"]],[47,49,["H3605"]],[49,50,["H6440"]],[50,53,["H4480","H5045"]],[53,56,["H6828"]],[56,59,["H6866"]],[59,60,[]]]},{"k":20943,"v":[[0,2,["H3605"]],[2,3,["H1320"]],[3,5,["H7200"]],[5,6,["H3588"]],[6,7,["H589"]],[7,9,["H3068"]],[9,11,["H1197"]],[11,15,["H3808"]],[15,17,["H3518"]]]},{"k":20944,"v":[[0,2,["H559"]],[2,4,["H162"]],[4,5,["H136"]],[5,6,["H3069"]],[6,7,["H1992"]],[7,8,["H559"]],[8,12,["H1931"]],[12,13,["H3808"]],[13,14,["H4911"]],[14,15,["H4912"]]]},{"k":20945,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20946,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H7760"]],[4,6,["H6440"]],[6,7,["H413"]],[7,8,["H3389"]],[8,10,["H5197"]],[10,13,["H413"]],[13,16,["H4720"]],[16,18,["H5012"]],[18,19,["H413"]],[19,21,["H127"]],[21,23,["H3478"]]]},{"k":20947,"v":[[0,2,["H559"]],[2,5,["H127"]],[5,7,["H3478"]],[7,8,["H3541"]],[8,9,["H559"]],[9,11,["H3068"]],[11,12,["H2009"]],[12,15,["H413"]],[15,20,["H3318"]],[20,22,["H2719"]],[22,26,["H4480","H8593"]],[26,30,["H3772"]],[30,31,["H4480"]],[31,34,["H6662"]],[34,37,["H7563"]]]},{"k":20948,"v":[[0,2,["H3282"]],[2,3,["H834"]],[3,7,["H3772"]],[7,8,["H4480"]],[8,11,["H6662"]],[11,14,["H7563"]],[14,15,["H3651"]],[15,18,["H2719"]],[18,20,["H3318"]],[20,24,["H4480","H8593"]],[24,25,["H413"]],[25,26,["H3605"]],[26,27,["H1320"]],[27,30,["H4480","H5045"]],[30,33,["H6828"]]]},{"k":20949,"v":[[0,2,["H3605"]],[2,3,["H1320"]],[3,5,["H3045"]],[5,6,["H3588"]],[6,7,["H589"]],[7,9,["H3068"]],[9,12,["H3318"]],[12,14,["H2719"]],[14,18,["H4480","H8593"]],[18,21,["H3808"]],[21,22,["H7725"]],[22,24,["H5750"]]]},{"k":20950,"v":[[0,1,["H584"]],[1,3,["H859"]],[3,4,["H1121"]],[4,6,["H120"]],[6,9,["H7670"]],[9,12,["H4975"]],[12,15,["H4814"]],[15,16,["H584"]],[16,19,["H5869"]]]},{"k":20951,"v":[[0,4,["H1961"]],[4,5,["H3588"]],[5,7,["H559"]],[7,8,["H413"]],[8,10,["H5921","H4100"]],[10,11,["H584"]],[11,12,["H859"]],[12,16,["H559"]],[16,17,["H413"]],[17,19,["H8052"]],[19,20,["H3588"]],[20,22,["H935"]],[22,24,["H3605"]],[24,25,["H3820"]],[25,27,["H4549"]],[27,29,["H3605"]],[29,30,["H3027"]],[30,33,["H7503"]],[33,35,["H3605"]],[35,36,["H7307"]],[36,38,["H3543"]],[38,40,["H3605"]],[40,41,["H1290"]],[41,44,["H1980"]],[44,46,["H4325"]],[46,47,["H2009"]],[47,49,["H935"]],[49,55,["H1961"]],[55,56,["H5002"]],[56,58,["H136"]],[58,59,["H3069"]]]},{"k":20952,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20953,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H5012"]],[4,6,["H559"]],[6,7,["H3541"]],[7,8,["H559"]],[8,10,["H136"]],[10,11,["H559"]],[11,13,["H2719"]],[13,15,["H2719"]],[15,17,["H2300"]],[17,19,["H1571"]],[19,20,["H4803"]]]},{"k":20954,"v":[[0,3,["H2300"]],[3,4,["H4616"]],[4,8,["H2873","H2874"]],[8,11,["H4803"]],[11,12,["H4616"]],[12,15,["H1961","H1300"]],[15,18,["H176"]],[18,20,["H7797"]],[20,22,["H3988"]],[22,24,["H7626"]],[24,27,["H1121"]],[27,29,["H3605"]],[29,30,["H6086"]]]},{"k":20955,"v":[[0,4,["H5414"]],[4,8,["H4803"]],[8,13,["H8610","H3709"]],[13,14,["H1931"]],[14,15,["H2719"]],[15,17,["H2300"]],[17,19,["H1931"]],[19,21,["H4803"]],[21,23,["H5414"]],[23,27,["H3027"]],[27,30,["H2026"]]]},{"k":20956,"v":[[0,1,["H2199"]],[1,3,["H3213"]],[3,4,["H1121"]],[4,6,["H120"]],[6,7,["H3588"]],[7,8,["H1931"]],[8,10,["H1961"]],[10,13,["H5971"]],[13,14,["H1931"]],[14,18,["H3605"]],[18,20,["H5387"]],[20,22,["H3478"]],[22,23,["H4048"]],[23,26,["H413"]],[26,28,["H2719"]],[28,30,["H1961"]],[30,31,["H854"]],[31,33,["H5971"]],[33,34,["H5606"]],[34,35,["H3651"]],[35,36,["H413"]],[36,38,["H3409"]]]},{"k":20957,"v":[[0,1,["H3588"]],[1,5,["H974"]],[5,7,["H4100"]],[7,8,["H518"]],[8,11,["H3988"]],[11,12,["H1571"]],[12,14,["H7626"]],[14,17,["H1961"]],[17,18,["H3808"]],[18,20,["H5002"]],[20,22,["H136"]],[22,23,["H3069"]]]},{"k":20958,"v":[[0,1,["H859"]],[1,3,["H1121"]],[3,5,["H120"]],[5,6,["H5012"]],[6,11,["H5221","H3709","H413","H3709"]],[11,15,["H2719"]],[15,17,["H3717"]],[17,20,["H7992"]],[20,22,["H2719"]],[22,25,["H2491"]],[25,26,["H1931"]],[26,29,["H2719"]],[29,32,["H1419"]],[32,36,["H2491"]],[36,42,["H2314"]]]},{"k":20959,"v":[[0,3,["H5414"]],[3,5,["H19"]],[5,8,["H2719"]],[8,9,["H5921"]],[9,10,["H3605"]],[10,12,["H8179"]],[12,13,["H4616"]],[13,15,["H3820"]],[15,17,["H4127"]],[17,20,["H4383"]],[20,22,["H7235"]],[22,23,["H253"]],[23,27,["H6213","H1300"]],[27,31,["H4593"]],[31,34,["H2874"]]]},{"k":20960,"v":[[0,6,["H258"]],[6,11,["H3231"]],[11,15,["H8041"]],[15,16,["H575"]],[16,18,["H6440"]],[18,20,["H3259"]]]},{"k":20961,"v":[[0,1,["H589"]],[1,3,["H1571"]],[3,4,["H5221"]],[4,7,["H3709","H413","H3709"]],[7,13,["H2534"]],[13,15,["H5117"]],[15,16,["H589"]],[16,18,["H3068"]],[18,20,["H1696"]],[20,21,[]]]},{"k":20962,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,7,["H413"]],[7,10,["H559"]]]},{"k":20963,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H7760"]],[6,8,["H8147"]],[8,9,["H1870"]],[9,12,["H2719"]],[12,15,["H4428"]],[15,17,["H894"]],[17,19,["H935"]],[19,21,["H8147"]],[21,24,["H3318"]],[24,28,["H4480","H776","H259"]],[28,30,["H1254"]],[30,33,["H3027"]],[33,34,["H1254"]],[34,38,["H7218"]],[38,41,["H1870"]],[41,44,["H5892"]]]},{"k":20964,"v":[[0,1,["H7760"]],[1,3,["H1870"]],[3,6,["H2719"]],[6,8,["H935"]],[8,9,["H854"]],[9,10,["H7237"]],[10,13,["H1121","H5983"]],[13,15,["H854"]],[15,16,["H3063"]],[16,18,["H3389"]],[18,20,["H1219"]]]},{"k":20965,"v":[[0,1,["H3588"]],[1,3,["H4428"]],[3,5,["H894"]],[5,6,["H5975"]],[6,7,["H413"]],[7,9,["H517"]],[9,12,["H1870"]],[12,15,["H7218"]],[15,18,["H8147"]],[18,19,["H1870"]],[19,21,["H7080"]],[21,22,["H7081"]],[22,27,["H7043","H2671"]],[27,29,["H7592"]],[29,31,["H8655"]],[31,33,["H7200"]],[33,36,["H3516"]]]},{"k":20966,"v":[[0,4,["H3225"]],[4,5,["H1961"]],[5,7,["H7081"]],[7,9,["H3389"]],[9,11,["H7760"]],[11,12,["H3733"]],[12,14,["H6605"]],[14,16,["H6310"]],[16,19,["H7524"]],[19,22,["H7311"]],[22,24,["H6963"]],[24,26,["H8643"]],[26,28,["H7760"]],[28,30,["H3733"]],[30,31,["H5921"]],[31,33,["H8179"]],[33,35,["H8210"]],[35,37,["H5550"]],[37,40,["H1129"]],[40,42,["H1785"]]]},{"k":20967,"v":[[0,4,["H1961"]],[4,9,["H7723"]],[9,10,["H7080"]],[10,13,["H5869"]],[13,18,["H7650"]],[18,19,["H7621"]],[19,21,["H1931"]],[21,25,["H2142"]],[25,27,["H5771"]],[27,32,["H8610"]]]},{"k":20968,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H3282"]],[7,12,["H5771"]],[12,15,["H2142"]],[15,19,["H6588"]],[19,21,["H1540"]],[21,25,["H3605"]],[25,27,["H5949"]],[27,29,["H2403"]],[29,31,["H7200"]],[31,32,["H3282"]],[32,40,["H2142"]],[40,44,["H8610"]],[44,47,["H3709"]]]},{"k":20969,"v":[[0,2,["H859"]],[2,3,["H2491"]],[3,4,["H7563"]],[4,5,["H5387"]],[5,7,["H3478"]],[7,8,["H834"]],[8,9,["H3117"]],[9,11,["H935"]],[11,12,["H6256"]],[12,13,["H5771"]],[13,17,["H7093"]]]},{"k":20970,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H5493"]],[6,8,["H4701"]],[8,11,["H7311"]],[11,13,["H5850"]],[13,14,["H2063"]],[14,16,["H3808"]],[16,19,["H2063"]],[19,20,["H1361"]],[20,24,["H8217"]],[24,26,["H8213"]],[26,30,["H1364"]]]},{"k":20971,"v":[[0,2,["H7760"]],[2,3,["H5754"]],[3,4,["H5754"]],[4,5,["H5754"]],[5,7,["H1571"]],[7,8,["H2063"]],[8,10,["H1961"]],[10,11,["H3808"]],[11,13,["H5704"]],[13,15,["H935"]],[15,16,["H834"]],[16,17,["H4941"]],[17,23,["H5414"]],[23,25,[]]]},{"k":20972,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H5012"]],[6,8,["H559"]],[8,9,["H3541"]],[9,10,["H559"]],[10,12,["H136"]],[12,13,["H3069"]],[13,14,["H413"]],[14,16,["H1121","H5983"]],[16,18,["H413"]],[18,20,["H2781"]],[20,22,["H559"]],[22,25,["H2719"]],[25,27,["H2719"]],[27,29,["H6605"]],[29,32,["H2874"]],[32,35,["H4803"]],[35,37,["H3557"]],[37,39,["H4616"]],[39,41,["H1300"]]]},{"k":20973,"v":[[0,3,["H2372"]],[3,4,["H7723"]],[4,9,["H7080"]],[9,11,["H3577"]],[11,15,["H5414"]],[15,17,["H413"]],[17,19,["H6677"]],[19,24,["H2491"]],[24,27,["H7563"]],[27,28,["H834"]],[28,29,["H3119"]],[29,31,["H935"]],[31,32,["H6256"]],[32,34,["H5771"]],[34,38,["H7093"]]]},{"k":20974,"v":[[0,6,["H7725"]],[6,7,["H413"]],[7,9,["H8593"]],[9,12,["H8199"]],[12,16,["H4725"]],[16,17,["H834"]],[17,20,["H1254"]],[20,23,["H776"]],[23,26,["H4351"]]]},{"k":20975,"v":[[0,5,["H8210"]],[5,7,["H2195"]],[7,8,["H5921"]],[8,12,["H6315"]],[12,13,["H5921"]],[13,17,["H784"]],[17,20,["H5678"]],[20,22,["H5414"]],[22,26,["H3027"]],[26,28,["H1197"]],[28,29,["H376"]],[29,31,["H2796"]],[31,33,["H4889"]]]},{"k":20976,"v":[[0,3,["H1961"]],[3,5,["H402"]],[5,8,["H784"]],[8,10,["H1818"]],[10,12,["H1961"]],[12,15,["H8432"]],[15,18,["H776"]],[18,22,["H3808"]],[22,24,["H2142"]],[24,25,["H3588"]],[25,26,["H589"]],[26,28,["H3068"]],[28,30,["H1696"]],[30,31,[]]]},{"k":20977,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20978,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,8,["H8199"]],[8,11,["H8199","(H853)"]],[11,13,["H1818"]],[13,14,["H5892"]],[14,18,["H3045"]],[18,19,["(H853)"]],[19,20,["H3605"]],[20,22,["H8441"]]]},{"k":20979,"v":[[0,2,["H559"]],[2,4,["H3541"]],[4,5,["H559"]],[5,7,["H136"]],[7,8,["H3069"]],[8,10,["H5892"]],[10,11,["H8210"]],[11,12,["H1818"]],[12,15,["H8432"]],[15,20,["H6256"]],[20,22,["H935"]],[22,24,["H6213"]],[24,25,["H1544"]],[25,26,["H5921"]],[26,29,["H2930"]],[29,30,[]]]},{"k":20980,"v":[[0,4,["H816"]],[4,7,["H1818"]],[7,8,["H834"]],[8,11,["H8210"]],[11,14,["H2930"]],[14,18,["H1544"]],[18,19,["H834"]],[19,22,["H6213"]],[22,28,["H3117"]],[28,31,["H7126"]],[31,34,["H935"]],[34,36,["H5704"]],[36,38,["H8141"]],[38,39,["H5921","H3651"]],[39,42,["H5414"]],[42,45,["H2781"]],[45,48,["H1471"]],[48,51,["H7048"]],[51,53,["H3605"]],[53,54,["H776"]]]},{"k":20981,"v":[[0,4,["H7138"]],[4,9,["H7350"]],[9,10,["H4480"]],[10,13,["H7046"]],[13,17,["H2931","H8034"]],[17,19,["H7227"]],[19,20,["H4103"]]]},{"k":20982,"v":[[0,1,["H2009"]],[1,3,["H5387"]],[3,5,["H3478"]],[5,7,["H376"]],[7,8,["H1961"]],[8,13,["H2220"]],[13,14,["H4616"]],[14,15,["H8210"]],[15,16,["H1818"]]]},{"k":20983,"v":[[0,6,["H7043"]],[6,8,["H1"]],[8,10,["H517"]],[10,13,["H8432"]],[13,18,["H6213"]],[18,20,["H6233"]],[20,23,["H1616"]],[23,28,["H3238"]],[28,30,["H3490"]],[30,33,["H490"]]]},{"k":20984,"v":[[0,3,["H959"]],[3,6,["H6944"]],[6,9,["H2490"]],[9,11,["H7676"]]]},{"k":20985,"v":[[0,3,["H1961"]],[3,4,["H376"]],[4,7,["H7400"]],[7,8,["H4616"]],[8,9,["H8210"]],[9,10,["H1818"]],[10,15,["H398"]],[15,16,["H413"]],[16,18,["H2022"]],[18,21,["H8432"]],[21,25,["H6213"]],[25,26,["H2154"]]]},{"k":20986,"v":[[0,5,["H1540"]],[5,7,["H1"]],[7,8,["H6172"]],[8,13,["H6031"]],[13,18,["H5079"]],[18,20,["H2931"]]]},{"k":20987,"v":[[0,2,["H376"]],[2,4,["H6213"]],[4,5,["H8441"]],[5,6,["H854"]],[6,8,["H7453"]],[8,9,["H802"]],[9,11,["H376"]],[11,13,["H2154"]],[13,14,["H2930","(H853)"]],[14,18,["H3618"]],[18,20,["H376"]],[20,24,["H6031","(H853)"]],[24,26,["H269"]],[26,28,["H1"]],[28,29,["H1323"]]]},{"k":20988,"v":[[0,5,["H3947"]],[5,6,["H7810"]],[6,7,["H4616"]],[7,8,["H8210"]],[8,9,["H1818"]],[9,12,["H3947"]],[12,13,["H5392"]],[13,15,["H8636"]],[15,20,["H1214"]],[20,23,["H7453"]],[23,25,["H6233"]],[25,28,["H7911"]],[28,30,["H5002"]],[30,32,["H136"]],[32,33,["H3069"]]]},{"k":20989,"v":[[0,1,["H2009"]],[1,5,["H5221"]],[5,7,["H3709"]],[7,8,["H413"]],[8,11,["H1215"]],[11,12,["H834"]],[12,15,["H6213"]],[15,17,["H5921"]],[17,19,["H1818"]],[19,20,["H834"]],[20,22,["H1961"]],[22,25,["H8432"]],[25,27,[]]]},{"k":20990,"v":[[0,3,["H3820"]],[3,4,["H5975"]],[4,5,["H518"]],[5,8,["H3027"]],[8,10,["H2388"]],[10,13,["H3117"]],[13,14,["H834"]],[14,15,["H589"]],[15,17,["H6213"]],[17,20,["H589"]],[20,22,["H3068"]],[22,24,["H1696"]],[24,28,["H6213"]],[28,29,[]]]},{"k":20991,"v":[[0,4,["H6327"]],[4,8,["H1471"]],[8,10,["H2219"]],[10,14,["H776"]],[14,17,["H8552"]],[17,19,["H2932"]],[19,21,["H4480"]],[21,22,[]]]},{"k":20992,"v":[[0,6,["H2490"]],[6,11,["H5869"]],[11,14,["H1471"]],[14,18,["H3045"]],[18,19,["H3588"]],[19,20,["H589"]],[20,23,["H3068"]]]},{"k":20993,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":20994,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,5,["H1004"]],[5,7,["H3478"]],[7,11,["H1961"]],[11,12,["H5509"]],[12,13,["H3605"]],[13,16,["H5178"]],[16,18,["H913"]],[18,20,["H1270"]],[20,22,["H5777"]],[22,25,["H8432"]],[25,28,["H3564"]],[28,30,["H1961"]],[30,33,["H5509"]],[33,35,["H3701"]]]},{"k":20995,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H3282"]],[7,10,["H3605"]],[10,11,["H1961"]],[11,12,["H5509"]],[12,13,["H2009"]],[13,14,["H3651"]],[14,17,["H6908"]],[17,19,["H413"]],[19,21,["H8432"]],[21,23,["H3389"]]]},{"k":20996,"v":[[0,3,["H6910"]],[3,4,["H3701"]],[4,6,["H5178"]],[6,8,["H1270"]],[8,10,["H5777"]],[10,12,["H913"]],[12,13,["H413"]],[13,15,["H8432"]],[15,18,["H3564"]],[18,20,["H5301"]],[20,22,["H784"]],[22,23,["H5921"]],[23,26,["H5413"]],[26,28,["H3651"]],[28,31,["H6908"]],[31,35,["H639"]],[35,39,["H2534"]],[39,43,["H5117"]],[43,47,["H5413"]],[47,48,[]]]},{"k":20997,"v":[[0,4,["H3664"]],[4,7,["H5301"]],[7,8,["H5921"]],[8,12,["H784"]],[12,15,["H5678"]],[15,20,["H5413"]],[20,23,["H8432"]],[23,24,[]]]},{"k":20998,"v":[[0,2,["H3701"]],[2,4,["H2046"]],[4,7,["H8432"]],[7,10,["H3564"]],[10,11,["H3651"]],[11,15,["H5413"]],[15,18,["H8432"]],[18,23,["H3045"]],[23,24,["H3588"]],[24,25,["H589"]],[25,27,["H3068"]],[27,30,["H8210"]],[30,32,["H2534"]],[32,33,["H5921"]],[33,34,[]]]},{"k":20999,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":21000,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H559"]],[4,7,["H859"]],[7,10,["H776"]],[10,11,["H1931"]],[11,13,["H3808"]],[13,14,["H2891"]],[14,15,["H3808"]],[15,17,["H1656"]],[17,20,["H3117"]],[20,22,["H2195"]]]},{"k":21001,"v":[[0,4,["H7195"]],[4,7,["H5030"]],[7,10,["H8432"]],[10,14,["H7580"]],[14,15,["H738"]],[15,16,["H2963"]],[16,18,["H2964"]],[18,21,["H398"]],[21,22,["H5315"]],[22,25,["H3947"]],[25,27,["H2633"]],[27,30,["H3366"]],[30,35,["H7235"]],[35,36,["H490"]],[36,39,["H8432"]],[39,40,[]]]},{"k":21002,"v":[[0,2,["H3548"]],[2,4,["H2554"]],[4,6,["H8451"]],[6,9,["H2490"]],[9,12,["H6944"]],[12,17,["H914","H3808"]],[17,18,["H996"]],[18,20,["H6944"]],[20,22,["H2455"]],[22,23,["H3808"]],[23,26,["H3045"]],[26,28,["H996"]],[28,30,["H2931"]],[30,33,["H2889"]],[33,36,["H5956"]],[36,38,["H5869"]],[38,41,["H4480","H7676"]],[41,45,["H2490"]],[45,46,["H8432"]],[46,47,[]]]},{"k":21003,"v":[[0,2,["H8269"]],[2,5,["H7130"]],[5,9,["H2061"]],[9,10,["H2963"]],[10,12,["H2964"]],[12,14,["H8210"]],[14,15,["H1818"]],[15,18,["H6"]],[18,19,["H5315"]],[19,20,["H4616"]],[20,21,["H1214"]],[21,23,["H1215"]]]},{"k":21004,"v":[[0,3,["H5030"]],[3,5,["H2902"]],[5,8,["H8602"]],[8,10,["H2374"]],[10,11,["H7723"]],[11,13,["H7080"]],[13,14,["H3577"]],[14,17,["H559"]],[17,18,["H3541"]],[18,19,["H559"]],[19,21,["H136"]],[21,22,["H3069"]],[22,25,["H3068"]],[25,27,["H3808"]],[27,28,["H1696"]]]},{"k":21005,"v":[[0,2,["H5971"]],[2,5,["H776"]],[5,7,["H6231"]],[7,8,["H6233"]],[8,10,["H1497"]],[10,11,["H1498"]],[11,14,["H3238"]],[14,16,["H6041"]],[16,18,["H34"]],[18,22,["H6231"]],[22,24,["H1616"]],[24,25,["H3808","H4941"]]]},{"k":21006,"v":[[0,3,["H1245"]],[3,6,["H376"]],[6,7,["H4480"]],[7,12,["H1443"]],[12,14,["H1447"]],[14,16,["H5975"]],[16,19,["H6556"]],[19,20,["H6440"]],[20,22,["H1157"]],[22,24,["H776"]],[24,28,["H1115"]],[28,29,["H7843"]],[29,33,["H4672"]],[33,34,["H3808"]]]},{"k":21007,"v":[[0,5,["H8210"]],[5,7,["H2195"]],[7,8,["H5921"]],[8,12,["H3615"]],[12,16,["H784"]],[16,19,["H5678"]],[19,22,["H1870"]],[22,25,["H5414"]],[25,28,["H7218"]],[28,29,["H5002"]],[29,31,["H136"]],[31,32,["H3069"]]]},{"k":21008,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,8,["H413"]],[8,10,["H559"]]]},{"k":21009,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,5,["H1961"]],[5,6,["H8147"]],[6,7,["H802"]],[7,9,["H1323"]],[9,11,["H259"]],[11,12,["H517"]]]},{"k":21010,"v":[[0,4,["H2181"]],[4,6,["H4714"]],[6,9,["H2181"]],[9,12,["H5271"]],[12,13,["H8033"]],[13,16,["H7699"]],[16,17,["H4600"]],[17,19,["H8033"]],[19,21,["H6213"]],[21,23,["H1717"]],[23,26,["H1331"]]]},{"k":21011,"v":[[0,3,["H8034"]],[3,7,["H170"]],[7,9,["H1419"]],[9,11,["H172"]],[11,13,["H269"]],[13,16,["H1961"]],[16,20,["H3205"]],[20,21,["H1121"]],[21,23,["H1323"]],[23,27,["H8034"]],[27,28,["H8111"]],[28,30,["H170"]],[30,32,["H3389"]],[32,33,["H172"]]]},{"k":21012,"v":[[0,2,["H170"]],[2,5,["H2181"]],[5,8,["H8478"]],[8,12,["H5689"]],[12,13,["H5921"]],[13,15,["H157"]],[15,16,["H413"]],[16,18,["H804"]],[18,20,["H7138"]]]},{"k":21013,"v":[[0,3,["H3847"]],[3,5,["H8504"]],[5,6,["H6346"]],[6,8,["H5461"]],[8,9,["H3605"]],[9,12,["H2531"]],[12,14,["H970"]],[14,15,["H6571"]],[15,17,["H7392"]],[17,18,["H5483"]]]},{"k":21014,"v":[[0,3,["H5414"]],[3,5,["H8457"]],[5,6,["H5921"]],[6,9,["H3605"]],[9,14,["H4005"]],[14,15,["H1121"]],[15,17,["H804"]],[17,20,["H3605"]],[20,22,["H834"]],[22,24,["H5689"]],[24,26,["H3605"]],[26,28,["H1544"]],[28,31,["H2930"]]]},{"k":21015,"v":[[0,1,["H3808"]],[1,2,["H5800"]],[2,5,["H8457"]],[5,8,["H4480","H4714"]],[8,9,["H3588"]],[9,12,["H5271"]],[12,14,["H7901"]],[14,15,["H854"]],[15,18,["H1992"]],[18,19,["H6213"]],[19,21,["H1717"]],[21,24,["H1331"]],[24,26,["H8210"]],[26,28,["H8457"]],[28,29,["H5921"]],[29,30,[]]]},{"k":21016,"v":[[0,1,["H3651"]],[1,4,["H5414"]],[4,8,["H3027"]],[8,11,["H157"]],[11,14,["H3027"]],[14,17,["H1121","H804"]],[17,18,["H5921"]],[18,19,["H834"]],[19,21,["H5689"]]]},{"k":21017,"v":[[0,1,["H1992"]],[1,2,["H1540"]],[2,4,["H6172"]],[4,6,["H3947"]],[6,8,["H1121"]],[8,11,["H1323"]],[11,13,["H2026"]],[13,17,["H2719"]],[17,20,["H1961"]],[20,21,["H8034"]],[21,23,["H802"]],[23,27,["H6213"]],[27,28,["H8196"]],[28,30,[]]]},{"k":21018,"v":[[0,4,["H269"]],[4,5,["H172"]],[5,6,["H7200"]],[6,11,["H7843"]],[11,15,["H5691"]],[15,16,["H4480"]],[16,21,["H8457"]],[21,25,["H269"]],[25,28,["H4480","H2183"]]]},{"k":21019,"v":[[0,2,["H5689"]],[2,3,["H413"]],[3,5,["H1121","H804"]],[5,7,["H7138"]],[7,8,["H6346"]],[8,10,["H5461"]],[10,11,["H3847"]],[11,13,["H4358"]],[13,14,["H6571"]],[14,16,["H7392"]],[16,17,["H5483"]],[17,18,["H3605"]],[18,21,["H2531"]],[21,23,["H970"]]]},{"k":21020,"v":[[0,3,["H7200"]],[3,4,["H3588"]],[4,7,["H2930"]],[7,11,["H8147"]],[11,12,["H259"]],[12,13,["H1870"]]]},{"k":21021,"v":[[0,4,["H3254","H413"]],[4,6,["H8457"]],[6,10,["H7200"]],[10,11,["H376"]],[11,12,["H2707"]],[12,13,["H5921"]],[13,15,["H7023"]],[15,17,["H6754"]],[17,20,["H3778"]],[20,21,["H2710"]],[21,23,["H8350"]]]},{"k":21022,"v":[[0,1,["H2289"]],[1,3,["H232"]],[3,6,["H4975"]],[6,7,["H5628"]],[7,10,["H2871"]],[10,13,["H7218"]],[13,14,["H3605"]],[14,17,["H7991"]],[17,20,["H4758"]],[20,23,["H1823"]],[23,26,["H1121","H894"]],[26,28,["H3778"]],[28,30,["H776"]],[30,33,["H4138"]]]},{"k":21023,"v":[[0,6,["H4758"]],[6,10,["H5869"]],[10,12,["H5689"]],[12,13,["H5921"]],[13,16,["H7971"]],[16,17,["H4397"]],[17,18,["H413"]],[18,21,["H3778"]]]},{"k":21024,"v":[[0,3,["H1121","H894"]],[3,4,["H935"]],[4,5,["H413"]],[5,9,["H4904"]],[9,11,["H1730"]],[11,14,["H2930"]],[14,18,["H8457"]],[18,22,["H2930"]],[22,27,["H5315"]],[27,29,["H3363"]],[29,30,["H4480"]],[30,31,[]]]},{"k":21025,"v":[[0,3,["H1540"]],[3,5,["H8457"]],[5,7,["H1540","(H853)"]],[7,9,["H6172"]],[9,12,["H5315"]],[12,14,["H3363"]],[14,15,["H4480","H5921"]],[15,18,["H834"]],[18,20,["H5315"]],[20,22,["H5361"]],[22,23,["H4480","H5921"]],[23,25,["H269"]]]},{"k":21026,"v":[[0,3,["H7235","(H853)"]],[3,5,["H8457"]],[5,9,["H2142","(H853)"]],[9,11,["H3117"]],[11,14,["H5271"]],[14,15,["H834"]],[15,20,["H2181"]],[20,23,["H776"]],[23,25,["H4714"]]]},{"k":21027,"v":[[0,3,["H5689"]],[3,4,["H5921"]],[4,6,["H6370"]],[6,7,["H834"]],[7,8,["H1320"]],[8,12,["H1320"]],[12,14,["H2543"]],[14,17,["H2231"]],[17,21,["H2231"]],[21,23,["H5483"]]]},{"k":21028,"v":[[0,5,["H6485","(H853)"]],[5,7,["H2154"]],[7,10,["H5271"]],[10,12,["H6213"]],[12,14,["H1717"]],[14,17,["H4480","H4714"]],[17,18,["H4616"]],[18,20,["H7699"]],[20,23,["H5271"]]]},{"k":21029,"v":[[0,1,["H3651"]],[1,3,["H172"]],[3,4,["H3541"]],[4,5,["H559"]],[5,7,["H136"]],[7,8,["H3069"]],[8,9,["H2009"]],[9,13,["H5782","(H853)"]],[13,15,["H157"]],[15,16,["H5921"]],[16,19,["H4480","(H853)","H834"]],[19,21,["H5315"]],[21,23,["H5361"]],[23,27,["H935"]],[27,29,["H5921"]],[29,33,["H4480","H5439"]]]},{"k":21030,"v":[[0,2,["H1121","H894"]],[2,4,["H3605"]],[4,6,["H3778"]],[6,7,["H6489"]],[7,9,["H7772"]],[9,11,["H6970"]],[11,13,["H3605"]],[13,15,["H1121","H804"]],[15,16,["H854"]],[16,18,["H3605"]],[18,21,["H2531"]],[21,23,["H970"]],[23,24,["H6346"]],[24,26,["H5461"]],[26,28,["H7991"]],[28,30,["H7121"]],[30,31,["H3605"]],[31,35,["H7392"]],[35,36,["H5483"]]]},{"k":21031,"v":[[0,4,["H935"]],[4,5,["H5921"]],[5,8,["H2021"]],[8,9,["H7393"]],[9,11,["H1534"]],[11,15,["H6951"]],[15,17,["H5971"]],[17,20,["H7760"]],[20,21,["H5921"]],[21,23,["H6793"]],[23,25,["H4043"]],[25,27,["H6959"]],[27,29,["H5439"]],[29,33,["H5414"]],[33,34,["H4941"]],[34,35,["H6440"]],[35,40,["H8199"]],[40,45,["H4941"]]]},{"k":21032,"v":[[0,4,["H5414"]],[4,6,["H7068"]],[6,12,["H6213"]],[12,13,["H2534"]],[13,14,["H854"]],[14,19,["H5493"]],[19,21,["H639"]],[21,24,["H241"]],[24,27,["H319"]],[27,29,["H5307"]],[29,32,["H2719"]],[32,33,["H1992"]],[33,35,["H3947"]],[35,37,["H1121"]],[37,40,["H1323"]],[40,43,["H319"]],[43,46,["H398"]],[46,49,["H784"]]]},{"k":21033,"v":[[0,4,["H6584"]],[4,7,["H854"]],[7,9,["H899"]],[9,12,["H3947"]],[12,14,["H8597"]],[14,15,["H3627"]]]},{"k":21034,"v":[[0,6,["H2154"]],[6,8,["H7673"]],[8,9,["H4480"]],[9,13,["H2184"]],[13,17,["H4480","H776"]],[17,19,["H4714"]],[19,24,["H3808"]],[24,26,["H5375"]],[26,28,["H5869"]],[28,29,["H413"]],[29,31,["H3808"]],[31,32,["H2142"]],[32,33,["H4714"]],[33,35,["H5750"]]]},{"k":21035,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,10,["H5414"]],[10,14,["H3027"]],[14,17,["H834"]],[17,19,["H8130"]],[19,22,["H3027"]],[22,26,["H834"]],[26,28,["H5315"]],[28,30,["H5361","H4480"]]]},{"k":21036,"v":[[0,4,["H6213"]],[4,5,["H854"]],[5,7,["H8135"]],[7,11,["H3947"]],[11,12,["H3605"]],[12,14,["H3018"]],[14,17,["H5800"]],[17,19,["H5903"]],[19,21,["H6181"]],[21,24,["H6172"]],[24,27,["H2183"]],[27,30,["H1540"]],[30,33,["H2154"]],[33,36,["H8457"]]]},{"k":21037,"v":[[0,3,["H6213"]],[3,4,["H428"]],[4,13,["H2181"]],[13,14,["H310"]],[14,16,["H1471"]],[16,18,["H5921","H834"]],[18,21,["H2930"]],[21,24,["H1544"]]]},{"k":21038,"v":[[0,3,["H1980"]],[3,6,["H1870"]],[6,9,["H269"]],[9,13,["H5414"]],[13,15,["H3563"]],[15,18,["H3027"]]]},{"k":21039,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,8,["H8354"]],[8,11,["H269"]],[11,12,["H3563"]],[12,13,["H6013"]],[13,15,["H7342"]],[15,18,["H1961"]],[18,21,["H6712"]],[21,25,["H3933"]],[25,27,["H3557"]],[27,28,["H4767"]]]},{"k":21040,"v":[[0,4,["H4390"]],[4,6,["H7943"]],[6,8,["H3015"]],[8,11,["H3563"]],[11,13,["H8047"]],[13,15,["H8077"]],[15,18,["H3563"]],[18,21,["H269"]],[21,22,["H8111"]]]},{"k":21041,"v":[[0,4,["H8354"]],[4,9,["H4680"]],[9,13,["H1633"]],[13,15,["H2789"]],[15,19,["H5423"]],[19,22,["H7699"]],[22,23,["H3588"]],[23,24,["H589"]],[24,26,["H1696"]],[26,28,["H5002"]],[28,30,["H136"]],[30,31,["H3069"]]]},{"k":21042,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H3282"]],[7,10,["H7911"]],[10,13,["H7993"]],[13,15,["H310"]],[15,17,["H1458"]],[17,19,["H5375"]],[19,20,["H859"]],[20,21,["H1571"]],[21,23,["H2154"]],[23,26,["H8457"]]]},{"k":21043,"v":[[0,2,["H3068"]],[2,3,["H559"]],[3,5,["H413"]],[5,7,["H1121"]],[7,9,["H120"]],[9,12,["H8199","(H853)"]],[12,13,["H170"]],[13,15,["H172"]],[15,17,["H5046"]],[17,19,["(H853)"]],[19,21,["H8441"]]]},{"k":21044,"v":[[0,1,["H3588"]],[1,5,["H5003"]],[5,7,["H1818"]],[7,11,["H3027"]],[11,13,["H854"]],[13,15,["H1544"]],[15,19,["H5003"]],[19,22,["H1571"]],[22,23,["(H853)"]],[23,25,["H1121"]],[25,26,["H834"]],[26,28,["H3205"]],[28,35,["H5674"]],[35,39,["H402"]],[39,40,[]]]},{"k":21045,"v":[[0,1,["H5750"]],[1,2,["H2063"]],[2,5,["H6213"]],[5,10,["H2930","(H853)"]],[10,12,["H4720"]],[12,15,["H1931"]],[15,16,["H3117"]],[16,19,["H2490"]],[19,21,["H7676"]]]},{"k":21046,"v":[[0,5,["H7819","(H853)"]],[5,7,["H1121"]],[7,10,["H1544"]],[10,13,["H935"]],[13,15,["H1931"]],[15,16,["H3117"]],[16,17,["H413"]],[17,19,["H4720"]],[19,21,["H2490"]],[21,24,["H2009"]],[24,25,["H3541"]],[25,28,["H6213"]],[28,31,["H8432"]],[31,34,["H1004"]]]},{"k":21047,"v":[[0,2,["H637"]],[2,3,["H3588"]],[3,6,["H7971"]],[6,8,["H376"]],[8,10,["H935"]],[10,12,["H4480","H4801"]],[12,13,["H413"]],[13,14,["H834"]],[14,16,["H4397"]],[16,18,["H7971"]],[18,20,["H2009"]],[20,22,["H935"]],[22,24,["H834"]],[24,27,["H7364"]],[27,29,["H3583"]],[29,31,["H5869"]],[31,33,["H5710"]],[33,36,["H5716"]]]},{"k":21048,"v":[[0,2,["H3427"]],[2,3,["H5921"]],[3,5,["H3520"]],[5,6,["H4296"]],[6,9,["H7979"]],[9,10,["H6186"]],[10,11,["H6440"]],[11,13,["H5921"]],[13,16,["H7760"]],[16,18,["H7004"]],[18,21,["H8081"]]]},{"k":21049,"v":[[0,3,["H6963"]],[3,6,["H1995"]],[6,9,["H7961"]],[9,14,["H413"]],[14,16,["H376"]],[16,20,["H4480","H7230","H120"]],[20,22,["H935"]],[22,23,["H5436"]],[23,26,["H4480","H4057"]],[26,28,["H5414"]],[28,29,["H6781"]],[29,30,["H5921"]],[30,32,["H3027"]],[32,34,["H8597"]],[34,35,["H5850"]],[35,36,["H413"]],[36,38,["H7218"]]]},{"k":21050,"v":[[0,2,["H559"]],[2,8,["H1087"]],[8,10,["H5004"]],[10,13,["H6258"]],[13,14,["H2181"]],[14,15,["H8457"]],[15,19,["H1931"]],[19,21,[]]]},{"k":21051,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,10,["H935"]],[10,11,["H413"]],[11,13,["H802"]],[13,17,["H2181"]],[17,18,["H3651"]],[18,21,["H935"]],[21,22,["H413"]],[22,23,["H170"]],[23,25,["H413"]],[25,26,["H172"]],[26,28,["H2154"]],[28,29,["H802"]]]},{"k":21052,"v":[[0,3,["H6662"]],[3,4,["H376"]],[4,5,["H1992"]],[5,7,["H8199"]],[7,11,["H4941"]],[11,13,["H5003"]],[13,19,["H4941"]],[19,21,["H8210"]],[21,22,["H1818"]],[22,23,["H3588"]],[23,24,["H2007"]],[24,26,["H5003"]],[26,28,["H1818"]],[28,32,["H3027"]]]},{"k":21053,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,10,["H5927"]],[10,12,["H6951"]],[12,13,["H5921"]],[13,17,["H5414"]],[17,21,["H2189"]],[21,23,["H957"]]]},{"k":21054,"v":[[0,3,["H6951"]],[3,5,["H7275","H5921"]],[5,8,["H68"]],[8,10,["H1254"]],[10,14,["H2719"]],[14,17,["H2026"]],[17,19,["H1121"]],[19,22,["H1323"]],[22,25,["H8313"]],[25,27,["H1004"]],[27,29,["H784"]]]},{"k":21055,"v":[[0,5,["H2154"]],[5,7,["H7673"]],[7,9,["H4480"]],[9,11,["H776"]],[11,13,["H3605"]],[13,14,["H802"]],[14,17,["H3256"]],[17,18,["H3808"]],[18,20,["H6213"]],[20,23,["H2154"]]]},{"k":21056,"v":[[0,4,["H5414"]],[4,6,["H2154"]],[6,7,["H5921"]],[7,12,["H5375"]],[12,14,["H2399"]],[14,17,["H1544"]],[17,21,["H3045"]],[21,22,["H3588"]],[22,23,["H589"]],[23,26,["H136"]],[26,27,["H3069"]]]},{"k":21057,"v":[[0,4,["H8671"]],[4,5,["H8141"]],[5,8,["H6224"]],[8,9,["H2320"]],[9,12,["H6218"]],[12,16,["H2320"]],[16,18,["H1697"]],[18,21,["H3068"]],[21,22,["H1961"]],[22,23,["H413"]],[23,25,["H559"]]]},{"k":21058,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H3789"]],[4,5,["(H853)"]],[5,7,["H8034"]],[7,10,["H3117","(H853)"]],[10,13,["H2088"]],[13,14,["H6106"]],[14,15,["H3117"]],[15,17,["H4428"]],[17,19,["H894"]],[19,20,["H5564"]],[20,22,["H413"]],[22,23,["H3389"]],[23,24,["H2088"]],[24,25,["H6106"]],[25,26,["H3117"]]]},{"k":21059,"v":[[0,2,["H4911"]],[2,4,["H4912"]],[4,5,["H413"]],[5,7,["H4805"]],[7,8,["H1004"]],[8,10,["H559"]],[10,11,["H413"]],[11,13,["H3541"]],[13,14,["H559"]],[14,16,["H136"]],[16,17,["H3069"]],[17,19,["H8239"]],[19,21,["H5518"]],[21,24,["H8239"]],[24,26,["H1571"]],[26,27,["H3332"]],[27,28,["H4325"]],[28,30,[]]]},{"k":21060,"v":[[0,1,["H622"]],[1,3,["H5409"]],[3,5,["H413"]],[5,8,["H3605"]],[8,9,["H2896"]],[9,10,["H5409"]],[10,12,["H3409"]],[12,15,["H3802"]],[15,16,["H4390"]],[16,20,["H4005"]],[20,21,["H6106"]]]},{"k":21061,"v":[[0,1,["H3947"]],[1,3,["H4005"]],[3,6,["H6629"]],[6,8,["H1752"]],[8,9,["H1571"]],[9,11,["H6106"]],[11,12,["H8478"]],[12,17,["H7570"]],[17,18,["H7571"]],[18,19,["H1571"]],[19,22,["H1310"]],[22,24,["H6106"]],[24,27,["H8432"]]]},{"k":21062,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H188"]],[7,10,["H1818"]],[10,11,["H5892"]],[11,14,["H5518"]],[14,15,["H834"]],[15,16,["H2457"]],[16,21,["H2457"]],[21,23,["H3808"]],[23,25,["H3318"]],[25,26,["H4480"]],[26,30,["H3318"]],[30,31,["H5409"]],[31,33,["H5409"]],[33,35,["H3808"]],[35,36,["H1486"]],[36,37,["H5307"]],[37,38,["H5921"]],[38,39,[]]]},{"k":21063,"v":[[0,1,["H3588"]],[1,3,["H1818"]],[3,4,["H1961"]],[4,7,["H8432"]],[7,11,["H7760"]],[11,13,["H5921"]],[13,15,["H6706"]],[15,18,["H5553"]],[18,20,["H8210"]],[20,22,["H3808"]],[22,23,["H5921"]],[23,25,["H776"]],[25,27,["H3680","H5921"]],[27,30,["H6083"]]]},{"k":21064,"v":[[0,5,["H2534"]],[5,8,["H5927"]],[8,10,["H5358"]],[10,11,["H5359"]],[11,14,["H5414","(H853)"]],[14,16,["H1818"]],[16,17,["H5921"]],[17,19,["H6706"]],[19,22,["H5553"]],[22,26,["H1115"]],[26,28,["H3680"]]]},{"k":21065,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H188"]],[7,10,["H1818"]],[10,11,["H5892"]],[11,12,["H589"]],[12,14,["H1571"]],[14,19,["H4071"]],[19,20,["H1431"]]]},{"k":21066,"v":[[0,2,["H7235"]],[2,3,["H6086"]],[3,4,["H1814"]],[4,6,["H784"]],[6,7,["H8552"]],[7,9,["H1320"]],[9,13,["H7543","H4841"]],[13,17,["H6106"]],[17,19,["H2787"]]]},{"k":21067,"v":[[0,2,["H5975"]],[2,4,["H7386"]],[4,5,["H5921"]],[5,7,["H1513"]],[7,9,["H4616"]],[9,11,["H5178"]],[11,16,["H2552"]],[16,19,["H2787"]],[19,23,["H2932"]],[23,28,["H5413"]],[28,29,["H8432"]],[29,33,["H2457"]],[33,38,["H8552"]]]},{"k":21068,"v":[[0,3,["H3811"]],[3,6,["H8383"]],[6,9,["H7227"]],[9,10,["H2457"]],[10,13,["H3318","H3808"]],[13,15,["H4480"]],[15,18,["H2457"]],[18,23,["H784"]]]},{"k":21069,"v":[[0,3,["H2932"]],[3,5,["H2154"]],[5,6,["H3282"]],[6,9,["H2891"]],[9,14,["H3808"]],[14,15,["H2891"]],[15,18,["H3808"]],[18,20,["H2891"]],[20,23,["H4480","H2932"]],[23,25,["H5750"]],[25,26,["H5704"]],[26,29,["(H853)"]],[29,31,["H2534"]],[31,33,["H5117"]],[33,35,[]]]},{"k":21070,"v":[[0,1,["H589"]],[1,3,["H3068"]],[3,5,["H1696"]],[5,11,["H935"]],[11,15,["H6213"]],[15,19,["H3808"]],[19,21,["H6544"]],[21,22,["H3808"]],[22,25,["H2347"]],[25,26,["H3808"]],[26,29,["H5162"]],[29,33,["H1870"]],[33,38,["H5949"]],[38,41,["H8199"]],[41,43,["H5002"]],[43,45,["H136"]],[45,46,["H3069"]]]},{"k":21071,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":21072,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H2009"]],[4,7,["H3947"]],[7,8,["H4480"]],[8,9,["(H853)"]],[9,11,["H4261"]],[11,14,["H5869"]],[14,17,["H4046"]],[17,19,["H3808"]],[19,22,["H5594"]],[22,23,["H3808"]],[23,24,["H1058"]],[24,25,["H3808"]],[25,28,["H1832"]],[28,30,["H935"]]]},{"k":21073,"v":[[0,1,["H1826"]],[1,3,["H602"]],[3,4,["H6213"]],[4,5,["H3808"]],[5,6,["H60"]],[6,9,["H4191"]],[9,10,["H2280"]],[10,15,["H6287"]],[15,16,["H5921"]],[16,20,["H7760"]],[20,22,["H5275"]],[22,25,["H7272"]],[25,27,["H5844"]],[27,28,["H3808"]],[28,30,["H8222"]],[30,32,["H398"]],[32,33,["H3808"]],[33,35,["H3899"]],[35,37,["H376"]]]},{"k":21074,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H5971"]],[6,9,["H1242"]],[9,12,["H6153"]],[12,14,["H802"]],[14,15,["H4191"]],[15,18,["H6213"]],[18,21,["H1242"]],[21,22,["H834"]],[22,25,["H6680"]]]},{"k":21075,"v":[[0,3,["H5971"]],[3,4,["H559"]],[4,5,["H413"]],[5,9,["H3808"]],[9,10,["H5046"]],[10,12,["H4100"]],[12,13,["H428"]],[13,18,["H3588"]],[18,19,["H859"]],[19,20,["H6213"]],[20,21,[]]]},{"k":21076,"v":[[0,3,["H559","H413"]],[3,6,["H1697"]],[6,9,["H3068"]],[9,10,["H1961"]],[10,11,["H413"]],[11,13,["H559"]]]},{"k":21077,"v":[[0,1,["H559"]],[1,4,["H1004"]],[4,6,["H3478"]],[6,7,["H3541"]],[7,8,["H559"]],[8,10,["H136"]],[10,11,["H3069"]],[11,12,["H2009"]],[12,15,["H2490","(H853)"]],[15,17,["H4720"]],[17,19,["H1347"]],[19,22,["H5797"]],[22,24,["H4261"]],[24,27,["H5869"]],[27,32,["H5315"]],[32,33,["H4263"]],[33,36,["H1121"]],[36,39,["H1323"]],[39,40,["H834"]],[40,43,["H5800"]],[43,45,["H5307"]],[45,48,["H2719"]]]},{"k":21078,"v":[[0,4,["H6213"]],[4,5,["H834"]],[5,8,["H6213"]],[8,11,["H3808"]],[11,12,["H5844","H5921"]],[12,14,["H8222"]],[14,15,["H3808"]],[15,16,["H398"]],[16,18,["H3899"]],[18,20,["H376"]]]},{"k":21079,"v":[[0,3,["H6287"]],[3,6,["H5921"]],[6,8,["H7218"]],[8,11,["H5275"]],[11,14,["H7272"]],[14,17,["H3808"]],[17,18,["H5594"]],[18,19,["H3808"]],[19,20,["H1058"]],[20,25,["H4743"]],[25,28,["H5771"]],[28,30,["H5098"]],[30,31,["H376"]],[31,32,["H413"]],[32,33,["H251"]]]},{"k":21080,"v":[[0,2,["H3168"]],[2,3,["H1961"]],[3,7,["H4159"]],[7,10,["H3605"]],[10,11,["H834"]],[11,14,["H6213"]],[14,17,["H6213"]],[17,21,["H935"]],[21,24,["H3045"]],[24,25,["H3588"]],[25,26,["H589"]],[26,29,["H136"]],[29,30,["H3069"]]]},{"k":21081,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,8,["H3808"]],[8,12,["H3117"]],[12,15,["H3947"]],[15,16,["H4480"]],[16,17,["(H853)"]],[17,19,["H4581"]],[19,21,["H4885"]],[21,24,["H8597","(H853)"]],[24,26,["H4261"]],[26,29,["H5869"]],[29,34,["H4853"]],[34,36,["H5315"]],[36,38,["H1121"]],[38,41,["H1323"]]]},{"k":21082,"v":[[0,4,["H6412"]],[4,6,["H1931"]],[6,7,["H3117"]],[7,9,["H935"]],[9,10,["H413"]],[10,16,["H2045"]],[16,20,["H241"]]]},{"k":21083,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H6310"]],[6,8,["H6605","(H853)"]],[8,13,["H6412"]],[13,17,["H1696"]],[17,22,["H481","H3808","H5750"]],[22,26,["H1961"]],[26,28,["H4159"]],[28,34,["H3045"]],[34,35,["H3588"]],[35,36,["H589"]],[36,39,["H3068"]]]},{"k":21084,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,8,["H413"]],[8,10,["H559"]]]},{"k":21085,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H7760"]],[4,6,["H6440"]],[6,7,["H413"]],[7,9,["H1121","H5983"]],[9,11,["H5012"]],[11,12,["H5921"]],[12,13,[]]]},{"k":21086,"v":[[0,2,["H559"]],[2,5,["H1121","H5983"]],[5,6,["H8085"]],[6,8,["H1697"]],[8,11,["H136"]],[11,12,["H3069"]],[12,13,["H3541"]],[13,14,["H559"]],[14,16,["H136"]],[16,17,["H3069"]],[17,18,["H3282"]],[18,20,["H559"]],[20,21,["H1889"]],[21,22,["H413"]],[22,24,["H4720"]],[24,25,["H3588"]],[25,28,["H2490"]],[28,30,["H413"]],[30,32,["H127"]],[32,34,["H3478"]],[34,35,["H3588"]],[35,38,["H8074"]],[38,40,["H413"]],[40,42,["H1004"]],[42,44,["H3063"]],[44,45,["H3588"]],[45,47,["H1980"]],[47,49,["H1473"]]]},{"k":21087,"v":[[0,1,["H2009"]],[1,2,["H3651"]],[2,5,["H5414"]],[5,9,["H1121"]],[9,12,["H6924"]],[12,15,["H4181"]],[15,19,["H3427"]],[19,21,["H2918"]],[21,25,["H5414"]],[25,27,["H4908"]],[27,30,["H1992"]],[30,32,["H398"]],[32,34,["H6529"]],[34,36,["H1992"]],[36,38,["H8354"]],[38,40,["H2461"]]]},{"k":21088,"v":[[0,4,["H5414","(H853)"]],[4,5,["H7237"]],[5,7,["H5116"]],[7,9,["H1581"]],[9,12,["H1121","H5983"]],[12,14,["H4769"]],[14,16,["H6629"]],[16,20,["H3045"]],[20,21,["H3588"]],[21,22,["H589"]],[22,25,["H3068"]]]},{"k":21089,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H3282"]],[7,10,["H4222"]],[10,12,["H3027"]],[12,14,["H7554"]],[14,17,["H7272"]],[17,19,["H8055"]],[19,21,["H5315"]],[21,23,["H3605"]],[23,25,["H7589"]],[25,26,["H413"]],[26,28,["H127"]],[28,30,["H3478"]]]},{"k":21090,"v":[[0,1,["H2009"]],[1,2,["H3651"]],[2,6,["H5186","(H853)"]],[6,8,["H3027"]],[8,9,["H5921"]],[9,13,["H5414"]],[13,17,["H957"]],[17,20,["H1471"]],[20,26,["H3772"]],[26,27,["H4480"]],[27,29,["H5971"]],[29,36,["H6"]],[36,38,["H4480"]],[38,40,["H776"]],[40,43,["H8045"]],[43,48,["H3045"]],[48,49,["H3588"]],[49,50,["H589"]],[50,53,["H3068"]]]},{"k":21091,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,7,["H3282"]],[7,8,["H4124"]],[8,10,["H8165"]],[10,12,["H559"]],[12,13,["H2009"]],[13,15,["H1004"]],[15,17,["H3063"]],[17,21,["H3605"]],[21,23,["H1471"]]]},{"k":21092,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,5,["H6605","(H853)"]],[5,7,["H3802"]],[7,9,["H4124"]],[9,12,["H4480","H5892"]],[12,15,["H4480","H5892"]],[15,20,["H4480","H7097"]],[20,22,["H6643"]],[22,25,["H776"]],[25,26,["H1020"]],[26,27,["H1186"]],[27,29,["H7156"]]]},{"k":21093,"v":[[0,3,["H1121"]],[3,6,["H6924"]],[6,7,["H5921"]],[7,9,["H1121","H5983"]],[9,12,["H5414"]],[12,15,["H4181"]],[15,16,["H4616"]],[16,18,["H1121","H5983"]],[18,20,["H3808"]],[20,22,["H2142"]],[22,25,["H1471"]]]},{"k":21094,"v":[[0,4,["H6213"]],[4,5,["H8201"]],[5,7,["H4124"]],[7,11,["H3045"]],[11,12,["H3588"]],[12,13,["H589"]],[13,16,["H3068"]]]},{"k":21095,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,7,["H3282"]],[7,8,["H123"]],[8,10,["H6213"]],[10,13,["H1004"]],[13,15,["H3063"]],[15,17,["H5358"]],[17,18,["H5359"]],[18,22,["H816","H816"]],[22,25,["H5358"]],[25,27,[]]]},{"k":21096,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,11,["H5186"]],[11,13,["H3027"]],[13,14,["H5921"]],[14,15,["H123"]],[15,19,["H3772"]],[19,20,["H120"]],[20,22,["H929"]],[22,23,["H4480"]],[23,28,["H5414"]],[28,30,["H2723"]],[30,32,["H4480","H8487"]],[32,36,["H1719"]],[36,38,["H5307"]],[38,41,["H2719"]]]},{"k":21097,"v":[[0,4,["H5414","(H853)"]],[4,6,["H5360"]],[6,8,["H123"]],[8,11,["H3027"]],[11,14,["H5971"]],[14,15,["H3478"]],[15,19,["H6213"]],[19,21,["H123"]],[21,25,["H639"]],[25,30,["H2534"]],[30,34,["H3045","(H853)"]],[34,36,["H5360"]],[36,37,["H5002"]],[37,39,["H136"]],[39,40,["H3069"]]]},{"k":21098,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H3282"]],[6,8,["H6430"]],[8,10,["H6213"]],[10,12,["H5360"]],[12,15,["H5358"]],[15,16,["H5359"]],[16,19,["H7589"]],[19,20,["H5315"]],[20,22,["H4889"]],[22,26,["H5769"]],[26,27,["H342"]]]},{"k":21099,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,11,["H5186"]],[11,13,["H3027"]],[13,14,["H5921"]],[14,16,["H6430"]],[16,21,["H3772","(H853)"]],[21,23,["H3774"]],[23,25,["H6","(H853)"]],[25,27,["H7611"]],[27,30,["H3220"]],[30,31,["H2348"]]]},{"k":21100,"v":[[0,4,["H6213"]],[4,5,["H1419"]],[5,6,["H5360"]],[6,10,["H2534"]],[10,11,["H8433"]],[11,15,["H3045"]],[15,16,["H3588"]],[16,17,["H589"]],[17,20,["H3068"]],[20,24,["H5414","(H853)"]],[24,26,["H5360"]],[26,28,[]]]},{"k":21101,"v":[[0,5,["H1961"]],[5,8,["H6249","H6240"]],[8,9,["H8141"]],[9,12,["H259"]],[12,16,["H2320"]],[16,19,["H1697"]],[19,22,["H3068"]],[22,23,["H1961"]],[23,24,["H413"]],[24,26,["H559"]]]},{"k":21102,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,5,["H3282","H834"]],[5,6,["H6865"]],[6,8,["H559"]],[8,9,["H5921"]],[9,10,["H3389"]],[10,11,["H1889"]],[11,14,["H7665"]],[14,18,["H1817"]],[18,21,["H5971"]],[21,24,["H5437"]],[24,25,["H413"]],[25,30,["H4390"]],[30,35,["H2717"]]]},{"k":21103,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,10,["H5921"]],[10,13,["H6865"]],[13,17,["H7227"]],[17,18,["H1471"]],[18,21,["H5927"]],[21,22,["H5921"]],[22,26,["H3220"]],[26,29,["H1530"]],[29,32,["H5927"]]]},{"k":21104,"v":[[0,4,["H7843"]],[4,6,["H2346"]],[6,8,["H6865"]],[8,11,["H2040"]],[11,13,["H4026"]],[13,17,["H5500"]],[17,19,["H6083"]],[19,20,["H4480"]],[20,23,["H5414"]],[23,27,["H6706"]],[27,30,["H5553"]]]},{"k":21105,"v":[[0,3,["H1961"]],[3,8,["H4894"]],[8,10,["H2764"]],[10,13,["H8432"]],[13,16,["H3220"]],[16,17,["H3588"]],[17,18,["H589"]],[18,20,["H1696"]],[20,22,["H5002"]],[22,24,["H136"]],[24,25,["H3069"]],[25,29,["H1961"]],[29,31,["H957"]],[31,34,["H1471"]]]},{"k":21106,"v":[[0,3,["H1323"]],[3,4,["H834"]],[4,8,["H7704"]],[8,11,["H2026"]],[11,14,["H2719"]],[14,18,["H3045"]],[18,19,["H3588"]],[19,20,["H589"]],[20,23,["H3068"]]]},{"k":21107,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,10,["H935"]],[10,11,["H413"]],[11,12,["H6865"]],[12,13,["H5019"]],[13,14,["H4428"]],[14,16,["H894"]],[16,18,["H4428"]],[18,20,["H4428"]],[20,23,["H4480","H6828"]],[23,25,["H5483"]],[25,28,["H7393"]],[28,31,["H6571"]],[31,33,["H6951"]],[33,35,["H7227"]],[35,36,["H5971"]]]},{"k":21108,"v":[[0,3,["H2026"]],[3,6,["H2719"]],[6,8,["H1323"]],[8,11,["H7704"]],[11,15,["H5414"]],[15,17,["H1785"]],[17,18,["H5921"]],[18,21,["H8210"]],[21,23,["H5550"]],[23,24,["H5921"]],[24,28,["H6965"]],[28,30,["H6793"]],[30,31,["H5921"]],[31,32,[]]]},{"k":21109,"v":[[0,4,["H5414"]],[4,5,["H4239"]],[5,7,["H6904"]],[7,10,["H2346"]],[10,14,["H2719"]],[14,18,["H5422"]],[18,20,["H4026"]]]},{"k":21110,"v":[[0,5,["H4480","H8229"]],[5,8,["H5483"]],[8,10,["H80"]],[10,12,["H3680"]],[12,15,["H2346"]],[15,17,["H7493"]],[17,20,["H4480","H6963"]],[20,23,["H6571"]],[23,27,["H1534"]],[27,31,["H7393"]],[31,35,["H935"]],[35,38,["H8179"]],[38,42,["H3996"]],[42,44,["H5892"]],[44,49,["H1234"]]]},{"k":21111,"v":[[0,3,["H6541"]],[3,6,["H5483"]],[6,10,["H7429","(H853)"]],[10,11,["H3605"]],[11,13,["H2351"]],[13,16,["H2026"]],[16,18,["H5971"]],[18,21,["H2719"]],[21,24,["H5797"]],[24,25,["H4676"]],[25,28,["H3381"]],[28,31,["H776"]]]},{"k":21112,"v":[[0,6,["H7997"]],[6,9,["H2428"]],[9,13,["H962"]],[13,16,["H7404"]],[16,21,["H2040"]],[21,23,["H2346"]],[23,25,["H5422"]],[25,27,["H2532"]],[27,28,["H1004"]],[28,32,["H7760"]],[32,34,["H68"]],[34,37,["H6086"]],[37,40,["H6083"]],[40,43,["H8432"]],[43,46,["H4325"]]]},{"k":21113,"v":[[0,6,["H1995"]],[6,9,["H7892"]],[9,11,["H7673"]],[11,14,["H6963"]],[14,17,["H3658"]],[17,20,["H3808"]],[20,21,["H5750"]],[21,22,["H8085"]]]},{"k":21114,"v":[[0,4,["H5414"]],[4,8,["H6706"]],[8,11,["H5553"]],[11,14,["H1961"]],[14,20,["H4894","H2764"]],[20,24,["H1129"]],[24,25,["H3808"]],[25,26,["H5750"]],[26,27,["H3588"]],[27,28,["H589"]],[28,30,["H3068"]],[30,32,["H1696"]],[32,34,["H5002"]],[34,36,["H136"]],[36,37,["H3069"]]]},{"k":21115,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,7,["H6865"]],[7,9,["H3808"]],[9,11,["H339"]],[11,12,["H7493"]],[12,15,["H4480","H6963"]],[15,18,["H4658"]],[18,21,["H2491"]],[21,22,["H602"]],[22,25,["H2027"]],[25,27,["H2026"]],[27,30,["H8432"]],[30,32,[]]]},{"k":21116,"v":[[0,2,["H3605"]],[2,4,["H5387"]],[4,7,["H3220"]],[7,10,["H3381"]],[10,11,["H4480","H5921"]],[11,13,["H3678"]],[13,16,["H5493","(H853)"]],[16,18,["H4598"]],[18,21,["H6584"]],[21,23,["H7553"]],[23,24,["H899"]],[24,27,["H3847"]],[27,30,["H2731"]],[30,33,["H3427"]],[33,34,["H5921"]],[34,36,["H776"]],[36,39,["H2729"]],[39,42,["H7281"]],[42,45,["H8074"]],[45,46,["H5921"]],[46,47,[]]]},{"k":21117,"v":[[0,5,["H5375"]],[5,7,["H7015"]],[7,8,["H5921"]],[8,11,["H559"]],[11,14,["H349"]],[14,17,["H6"]],[17,20,["H3427"]],[20,23,["H4480","H3220"]],[23,25,["H1984"]],[25,26,["H5892"]],[26,27,["H834"]],[27,28,["H1961"]],[28,29,["H2389"]],[29,32,["H3220"]],[32,33,["H1931"]],[33,36,["H3427"]],[36,37,["H834"]],[37,38,["H5414"]],[38,40,["H2851"]],[40,44,["H3605"]],[44,46,["H3427"]],[46,47,[]]]},{"k":21118,"v":[[0,1,["H6258"]],[1,4,["H339"]],[4,5,["H2729"]],[5,8,["H3117"]],[8,11,["H4658"]],[11,14,["H339"]],[14,15,["H834"]],[15,19,["H3220"]],[19,22,["H926"]],[22,25,["H4480","H3318"]]]},{"k":21119,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,10,["H5414"]],[10,13,["H2717"]],[13,14,["H5892"]],[14,17,["H5892"]],[17,18,["H834"]],[18,20,["H3808"]],[20,21,["H3427"]],[21,26,["H5927","(H853)"]],[26,28,["H8415"]],[28,29,["H5921"]],[29,32,["H7227"]],[32,33,["H4325"]],[33,35,["H3680"]],[35,36,[]]]},{"k":21120,"v":[[0,6,["H3381"]],[6,7,["H854"]],[7,10,["H3381"]],[10,13,["H953"]],[13,14,["H413"]],[14,16,["H5971"]],[16,19,["H5769"]],[19,22,["H3427"]],[22,27,["H8482"]],[27,30,["H776"]],[30,33,["H2723"]],[33,35,["H4480","H5769"]],[35,36,["H854"]],[36,40,["H3381"]],[40,43,["H953"]],[43,44,["H4616"]],[44,47,["H3808"]],[47,48,["H3427"]],[48,52,["H5414"]],[52,53,["H6643"]],[53,56,["H776"]],[56,59,["H2416"]]]},{"k":21121,"v":[[0,3,["H5414"]],[3,6,["H1091"]],[6,11,["H369"]],[11,17,["H1245"]],[17,21,["H3808","H5769"]],[21,23,["H4672"]],[23,24,["H5750"]],[24,25,["H5002"]],[25,27,["H136"]],[27,28,["H3069"]]]},{"k":21122,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,8,["H413"]],[8,10,["H559"]]]},{"k":21123,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,7,["H5375"]],[7,9,["H7015"]],[9,10,["H5921"]],[10,11,["H6865"]]]},{"k":21124,"v":[[0,2,["H559"]],[2,4,["H6865"]],[4,9,["H3427"]],[9,10,["H5921"]],[10,12,["H3997"]],[12,15,["H3220"]],[15,19,["H7402"]],[19,22,["H5971"]],[22,23,["H413"]],[23,24,["H7227"]],[24,25,["H339"]],[25,26,["H3541"]],[26,27,["H559"]],[27,29,["H136"]],[29,30,["H3069"]],[30,32,["H6865"]],[32,33,["H859"]],[33,35,["H559"]],[35,36,["H589"]],[36,39,["H3632"]],[39,40,["H3308"]]]},{"k":21125,"v":[[0,2,["H1366"]],[2,6,["H3820"]],[6,9,["H3220"]],[9,11,["H1129"]],[11,13,["H3634"]],[13,15,["H3308"]]]},{"k":21126,"v":[[0,3,["H1129","(H853)"]],[3,4,["H3605"]],[4,7,["H3871"]],[7,10,["H1265"]],[10,12,["H4480","H8149"]],[12,15,["H3947"]],[15,16,["H730"]],[16,18,["H4480","H3844"]],[18,20,["H6213"]],[20,21,["H8650"]],[21,22,["H5921"]],[22,23,[]]]},{"k":21127,"v":[[0,3,["H437"]],[3,5,["H4480","H1316"]],[5,8,["H6213"]],[8,10,["H4880"]],[10,12,["H1323"]],[12,15,["H839"]],[15,17,["H6213"]],[17,19,["H7175"]],[19,21,["H8127"]],[21,26,["H4480","H339"]],[26,28,["H3794"]]]},{"k":21128,"v":[[0,2,["H8336"]],[2,5,["H7553"]],[5,7,["H4480","H4714"]],[7,8,["H1961"]],[8,13,["H4666"]],[13,15,["H1961"]],[15,17,["H5251"]],[17,18,["H8504"]],[18,20,["H713"]],[20,23,["H4480","H339"]],[23,25,["H473"]],[25,26,["H1961"]],[26,29,["H4374"]],[29,30,[]]]},{"k":21129,"v":[[0,2,["H3427"]],[2,4,["H6721"]],[4,6,["H719"]],[6,7,["H1961"]],[7,9,["H7751"]],[9,11,["H2450"]],[11,14,["H6865"]],[14,16,["H1961"]],[16,21,["H2259"]]]},{"k":21130,"v":[[0,2,["H2205"]],[2,4,["H1380"]],[4,7,["H2450"]],[7,10,["H1961"]],[10,14,["H2388","H919"]],[14,15,["H3605"]],[15,17,["H591"]],[17,20,["H3220"]],[20,23,["H4419"]],[23,24,["H1961"]],[24,28,["H6149"]],[28,30,["H4627"]]]},{"k":21131,"v":[[0,3,["H6539"]],[3,6,["H3865"]],[6,9,["H6316"]],[9,10,["H1961"]],[10,13,["H2428"]],[13,15,["H376"]],[15,17,["H4421"]],[17,19,["H8518"]],[19,21,["H4043"]],[21,23,["H3553"]],[23,26,["H1992"]],[26,28,["H5414"]],[28,30,["H1926"]]]},{"k":21132,"v":[[0,2,["H1121"]],[2,4,["H719"]],[4,7,["H2428"]],[7,9,["H5921"]],[9,11,["H2346"]],[11,13,["H5439"]],[13,16,["H1575"]],[16,17,["H1961"]],[17,20,["H4026"]],[20,22,["H8518"]],[22,24,["H7982"]],[24,25,["H5921"]],[25,27,["H2346"]],[27,29,["H5439"]],[29,30,["H1992"]],[30,35,["H3634","H3308"]]]},{"k":21133,"v":[[0,1,["H8659"]],[1,4,["H5503"]],[4,9,["H4480","H7230"]],[9,11,["H3605"]],[11,14,["H1952"]],[14,16,["H3701"]],[16,17,["H1270"]],[17,18,["H913"]],[18,20,["H5777"]],[20,22,["H5414"]],[22,25,["H5801"]]]},{"k":21134,"v":[[0,1,["H3120"]],[1,2,["H8422"]],[2,4,["H4902"]],[4,5,["H1992"]],[5,8,["H7402"]],[8,10,["H5414"]],[10,12,["H5315"]],[12,14,["H120"]],[14,16,["H3627"]],[16,18,["H5178"]],[18,21,["H4627"]]]},{"k":21135,"v":[[0,4,["H4480","H1004"]],[4,6,["H8425"]],[6,7,["H5414"]],[7,10,["H5801"]],[10,12,["H5483"]],[12,14,["H6571"]],[14,16,["H6505"]]]},{"k":21136,"v":[[0,2,["H1121"]],[2,4,["H1719"]],[4,7,["H7402"]],[7,8,["H7227"]],[8,9,["H339"]],[9,12,["H5506"]],[12,15,["H3027"]],[15,17,["H7725"]],[17,21,["H814"]],[21,22,["H7161"]],[22,24,["H8127"]],[24,26,["H1894"]]]},{"k":21137,"v":[[0,1,["H758"]],[1,4,["H5503"]],[4,9,["H4480","H7230"]],[9,15,["H4639"]],[15,17,["H5414"]],[17,20,["H5801"]],[20,22,["H5306"]],[22,23,["H713"]],[23,26,["H7553"]],[26,29,["H948"]],[29,31,["H7215"]],[31,33,["H3539"]]]},{"k":21138,"v":[[0,1,["H3063"]],[1,4,["H776"]],[4,6,["H3478"]],[6,7,["H1992"]],[7,10,["H7402"]],[10,12,["H5414"]],[12,15,["H4627"]],[15,16,["H2406"]],[16,18,["H4511"]],[18,20,["H6436"]],[20,22,["H1706"]],[22,24,["H8081"]],[24,26,["H6875"]]]},{"k":21139,"v":[[0,1,["H1834"]],[1,4,["H5503"]],[4,7,["H7230"]],[7,13,["H4639"]],[13,16,["H4480","H7230"]],[16,18,["H3605"]],[18,19,["H1952"]],[19,22,["H3196"]],[22,24,["H2463"]],[24,26,["H6713"]],[26,27,["H6785"]]]},{"k":21140,"v":[[0,1,["H2051"]],[1,4,["H3120"]],[4,8,["H235"]],[8,9,["H5414"]],[9,12,["H5801"]],[12,13,["H6219"]],[13,14,["H1270"]],[14,15,["H6916"]],[15,17,["H7070"]],[17,18,["H1961"]],[18,21,["H4627"]]]},{"k":21141,"v":[[0,1,["H1719"]],[1,4,["H7402"]],[4,6,["H2667"]],[6,7,["H899"]],[7,9,["H7396"]]]},{"k":21142,"v":[[0,1,["H6152"]],[1,3,["H3605"]],[3,5,["H5387"]],[5,7,["H6938"]],[7,8,["H1992"]],[8,10,["H5503","H3027"]],[10,13,["H3733"]],[13,15,["H352"]],[15,17,["H6260"]],[17,23,["H5503"]]]},{"k":21143,"v":[[0,2,["H7402"]],[2,4,["H7614"]],[4,6,["H7484"]],[6,7,["H1992"]],[7,10,["H7402"]],[10,12,["H5414"]],[12,15,["H5801"]],[15,17,["H7218"]],[17,19,["H3605"]],[19,20,["H1314"]],[20,23,["H3605"]],[23,24,["H3368"]],[24,25,["H68"]],[25,27,["H2091"]]]},{"k":21144,"v":[[0,1,["H2771"]],[1,3,["H3656"]],[3,5,["H5729"]],[5,7,["H7402"]],[7,9,["H7614"]],[9,10,["H804"]],[10,12,["H3638"]],[12,15,["H7402"]]]},{"k":21145,"v":[[0,1,["H1992"]],[1,4,["H7402"]],[4,7,["H4360"]],[7,11,["H8504"]],[11,12,["H1545"]],[12,15,["H7553"]],[15,18,["H1595"]],[18,21,["H1264"]],[21,22,["H2280"]],[22,24,["H2256"]],[24,28,["H729"]],[28,31,["H4819"]]]},{"k":21146,"v":[[0,2,["H591"]],[2,4,["H8659"]],[4,6,["H7788"]],[6,11,["H4627"]],[11,15,["H4390"]],[15,19,["H3513","H3966"]],[19,22,["H3820"]],[22,25,["H3220"]]]},{"k":21147,"v":[[0,2,["H7751"]],[2,4,["H935"]],[4,7,["H7227"]],[7,8,["H4325"]],[8,10,["H6921"]],[10,11,["H7307"]],[11,13,["H7665"]],[13,17,["H3820"]],[17,20,["H3220"]]]},{"k":21148,"v":[[0,2,["H1952"]],[2,5,["H5801"]],[5,7,["H4627"]],[7,9,["H4419"]],[9,12,["H2259"]],[12,14,["H2388","H919"]],[14,17,["H6148"]],[17,20,["H4627"]],[20,22,["H3605"]],[22,24,["H376"]],[24,26,["H4421"]],[26,27,["H834"]],[27,33,["H3605"]],[33,35,["H6951"]],[35,36,["H834"]],[36,40,["H8432"]],[40,44,["H5307"]],[44,47,["H3820"]],[47,50,["H3220"]],[50,53,["H3117"]],[53,56,["H4658"]]]},{"k":21149,"v":[[0,2,["H4054"]],[2,4,["H7493"]],[4,7,["H6963"]],[7,10,["H2201"]],[10,13,["H2259"]]]},{"k":21150,"v":[[0,2,["H3605"]],[2,4,["H8610"]],[4,6,["H4880"]],[6,8,["H4419"]],[8,10,["H3605"]],[10,12,["H2259"]],[12,15,["H3220"]],[15,18,["H3381"]],[18,21,["H4480","H591"]],[21,24,["H5975"]],[24,25,["H413"]],[25,27,["H776"]]]},{"k":21151,"v":[[0,5,["H6963"]],[5,8,["H8085"]],[8,9,["H5921"]],[9,13,["H2199"]],[13,14,["H4751"]],[14,18,["H5927"]],[18,19,["H6083"]],[19,20,["H5921"]],[20,22,["H7218"]],[22,26,["H6428"]],[26,29,["H665"]]]},{"k":21152,"v":[[0,7,["H7139","H7144"]],[7,8,["H413"]],[8,11,["H2296"]],[11,14,["H8242"]],[14,18,["H1058"]],[18,19,["H413"]],[19,22,["H4751"]],[22,24,["H5315"]],[24,26,["H4751"]],[26,27,["H4553"]]]},{"k":21153,"v":[[0,4,["H5204"]],[4,8,["H5375"]],[8,10,["H7015"]],[10,11,["H413"]],[11,14,["H6969"]],[14,15,["H5921"]],[15,18,["H4310"]],[18,22,["H6865"]],[22,25,["H1822"]],[25,28,["H8432"]],[28,31,["H3220"]]]},{"k":21154,"v":[[0,3,["H5801"]],[3,5,["H3318"]],[5,9,["H4480","H3220"]],[9,11,["H7646"]],[11,12,["H7227"]],[12,13,["H5971"]],[13,16,["H6238"]],[16,18,["H4428"]],[18,21,["H776"]],[21,24,["H7230"]],[24,27,["H1952"]],[27,31,["H4627"]]]},{"k":21155,"v":[[0,3,["H6256"]],[3,8,["H7665"]],[8,11,["H4480","H3220"]],[11,14,["H4615"]],[14,17,["H4325"]],[17,19,["H4627"]],[19,21,["H3605"]],[21,23,["H6951"]],[23,26,["H8432"]],[26,30,["H5307"]]]},{"k":21156,"v":[[0,1,["H3605"]],[1,3,["H3427"]],[3,6,["H339"]],[6,9,["H8074"]],[9,10,["H5921"]],[10,14,["H4428"]],[14,18,["H8175","H8178"]],[18,22,["H7481"]],[22,25,["H6440"]]]},{"k":21157,"v":[[0,2,["H5503"]],[2,5,["H5971"]],[5,7,["H8319"]],[7,8,["H5921"]],[8,12,["H1961"]],[12,14,["H1091"]],[14,16,["H369"]],[16,20,["H5704","H5769"]]]},{"k":21158,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,8,["H413"]],[8,10,["H559"]]]},{"k":21159,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H559"]],[4,7,["H5057"]],[7,9,["H6865"]],[9,10,["H3541"]],[10,11,["H559"]],[11,13,["H136"]],[13,14,["H3069"]],[14,15,["H3282"]],[15,17,["H3820"]],[17,20,["H1361"]],[20,24,["H559"]],[24,25,["H589"]],[25,28,["H410"]],[28,30,["H3427"]],[30,33,["H4186"]],[33,35,["H430"]],[35,38,["H3820"]],[38,41,["H3220"]],[41,43,["H859"]],[43,46,["H120"]],[46,48,["H3808"]],[48,49,["H410"]],[49,52,["H5414"]],[52,54,["H3820"]],[54,57,["H3820"]],[57,59,["H430"]]]},{"k":21160,"v":[[0,1,["H2009"]],[1,2,["H859"]],[2,4,["H2450"]],[4,6,["H4480","H1840"]],[6,9,["H3808"]],[9,10,["H5640"]],[10,14,["H6004"]],[14,16,[]]]},{"k":21161,"v":[[0,3,["H2451"]],[3,7,["H8394"]],[7,10,["H6213"]],[10,12,["H2428"]],[12,15,["H6213"]],[15,16,["H2091"]],[16,18,["H3701"]],[18,21,["H214"]]]},{"k":21162,"v":[[0,3,["H7230"]],[3,4,["H2451"]],[4,8,["H7404"]],[8,11,["H7235"]],[11,13,["H2428"]],[13,16,["H3824"]],[16,19,["H1361"]],[19,23,["H2428"]]]},{"k":21163,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H3282"]],[7,10,["H5414","(H853)"]],[10,12,["H3820"]],[12,15,["H3820"]],[15,17,["H430"]]]},{"k":21164,"v":[[0,1,["H2009"]],[1,2,["H3651"]],[2,5,["H935"]],[5,6,["H2114"]],[6,7,["H5921"]],[7,10,["H6184"]],[10,13,["H1471"]],[13,17,["H7324"]],[17,19,["H2719"]],[19,20,["H5921"]],[20,22,["H3308"]],[22,25,["H2451"]],[25,29,["H2490"]],[29,31,["H3314"]]]},{"k":21165,"v":[[0,5,["H3381"]],[5,8,["H7845"]],[8,12,["H4191"]],[12,14,["H4463"]],[14,19,["H2491"]],[19,22,["H3820"]],[22,25,["H3220"]]]},{"k":21166,"v":[[0,4,["H559","H559"]],[4,5,["H6440"]],[5,8,["H2026"]],[8,10,["H589"]],[10,12,["H430"]],[12,14,["H859"]],[14,18,["H120"]],[18,20,["H3808"]],[20,21,["H410"]],[21,24,["H3027"]],[24,28,["H2490"]],[28,29,[]]]},{"k":21167,"v":[[0,3,["H4191"]],[3,5,["H4194"]],[5,8,["H6189"]],[8,11,["H3027"]],[11,13,["H2114"]],[13,14,["H3588"]],[14,15,["H589"]],[15,17,["H1696"]],[17,19,["H5002"]],[19,21,["H136"]],[21,22,["H3069"]]]},{"k":21168,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":21169,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,5,["H5375"]],[5,7,["H7015"]],[7,8,["H5921"]],[8,10,["H4428"]],[10,12,["H6865"]],[12,14,["H559"]],[14,17,["H3541"]],[17,18,["H559"]],[18,20,["H136"]],[20,21,["H3069"]],[21,22,["H859"]],[22,24,["H2856"]],[24,26,["H8508"]],[26,27,["H4392"]],[27,29,["H2451"]],[29,31,["H3632"]],[31,33,["H3308"]]]},{"k":21170,"v":[[0,3,["H1961"]],[3,5,["H5731"]],[5,7,["H1588"]],[7,9,["H430"]],[9,10,["H3605"]],[10,11,["H3368"]],[11,12,["H68"]],[12,15,["H4540"]],[15,17,["H124"]],[17,18,["H6357"]],[18,21,["H3095"]],[21,23,["H8658"]],[23,25,["H7718"]],[25,28,["H3471"]],[28,30,["H5601"]],[30,32,["H5306"]],[32,35,["H1304"]],[35,37,["H2091"]],[37,39,["H4399"]],[39,42,["H8596"]],[42,46,["H5345"]],[46,48,["H3559"]],[48,53,["H3117"]],[53,57,["H1254"]]]},{"k":21171,"v":[[0,1,["H859"]],[1,4,["H4473"]],[4,5,["H3742"]],[5,7,["H5526"]],[7,11,["H5414"]],[11,15,["H1961"]],[15,18,["H6944"]],[18,19,["H2022"]],[19,21,["H430"]],[21,27,["H1980"]],[27,30,["H8432"]],[30,33,["H68"]],[33,35,["H784"]]]},{"k":21172,"v":[[0,1,["H859"]],[1,3,["H8549"]],[3,6,["H1870"]],[6,9,["H4480","H3117"]],[9,13,["H1254"]],[13,14,["H5704"]],[14,15,["H5766"]],[15,17,["H4672"]],[17,19,[]]]},{"k":21173,"v":[[0,3,["H7230"]],[3,6,["H7404"]],[6,9,["H4390"]],[9,11,["H8432"]],[11,15,["H2555"]],[15,19,["H2398"]],[19,26,["H2490"]],[26,30,["H4480","H2022"]],[30,32,["H430"]],[32,36,["H6"]],[36,39,["H5526"]],[39,40,["H3742"]],[40,43,["H4480","H8432"]],[43,46,["H68"]],[46,48,["H784"]]]},{"k":21174,"v":[[0,2,["H3820"]],[2,5,["H1361"]],[5,9,["H3308"]],[9,12,["H7843"]],[12,14,["H2451"]],[14,17,["H5921"]],[17,19,["H3314"]],[19,22,["H7993"]],[22,24,["H5921"]],[24,26,["H776"]],[26,29,["H5414"]],[29,31,["H6440"]],[31,32,["H4428"]],[32,36,["H7200"]],[36,37,[]]]},{"k":21175,"v":[[0,3,["H2490"]],[3,5,["H4720"]],[5,8,["H4480","H7230"]],[8,11,["H5771"]],[11,14,["H5766"]],[14,17,["H7404"]],[17,22,["H3318"]],[22,24,["H784"]],[24,27,["H4480","H8432"]],[27,30,["H1931"]],[30,32,["H398"]],[32,37,["H5414"]],[37,40,["H665"]],[40,41,["H5921"]],[41,43,["H776"]],[43,46,["H5869"]],[46,48,["H3605"]],[48,51,["H7200"]],[51,52,[]]]},{"k":21176,"v":[[0,1,["H3605"]],[1,4,["H3045"]],[4,8,["H5971"]],[8,11,["H8074"]],[11,12,["H5921"]],[12,16,["H1961"]],[16,18,["H1091"]],[18,20,["H369"]],[20,25,["H5704","H5769"]]]},{"k":21177,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":21178,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H7760"]],[4,6,["H6440"]],[6,7,["H413"]],[7,8,["H6721"]],[8,10,["H5012"]],[10,11,["H5921"]],[11,12,[]]]},{"k":21179,"v":[[0,2,["H559"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H136"]],[6,7,["H3069"]],[7,8,["H2009"]],[8,11,["H5921"]],[11,14,["H6721"]],[14,19,["H3513"]],[19,22,["H8432"]],[22,28,["H3045"]],[28,29,["H3588"]],[29,30,["H589"]],[30,33,["H3068"]],[33,38,["H6213"]],[38,39,["H8201"]],[39,45,["H6942"]],[45,47,[]]]},{"k":21180,"v":[[0,4,["H7971"]],[4,7,["H1698"]],[7,9,["H1818"]],[9,12,["H2351"]],[12,15,["H2491"]],[15,18,["H5307"]],[18,21,["H8432"]],[21,26,["H2719"]],[26,27,["H5921"]],[27,31,["H4480","H5439"]],[31,35,["H3045"]],[35,36,["H3588"]],[36,37,["H589"]],[37,40,["H3068"]]]},{"k":21181,"v":[[0,4,["H1961"]],[4,5,["H3808"]],[5,6,["H5750"]],[6,8,["H3992"]],[8,9,["H5544"]],[9,12,["H1004"]],[12,14,["H3478"]],[14,17,["H3510"]],[17,18,["H6975"]],[18,20,["H4480","H3605"]],[20,24,["H5439"]],[24,27,["H7590"]],[27,32,["H3045"]],[32,33,["H3588"]],[33,34,["H589"]],[34,37,["H136"]],[37,38,["H3069"]]]},{"k":21182,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,10,["H6908","(H853)"]],[10,12,["H1004"]],[12,14,["H3478"]],[14,15,["H4480"]],[15,17,["H5971"]],[17,19,["H834"]],[19,22,["H6327"]],[22,26,["H6942"]],[26,31,["H5869"]],[31,34,["H1471"]],[34,38,["H3427"]],[38,39,["H5921"]],[39,41,["H127"]],[41,42,["H834"]],[42,45,["H5414"]],[45,48,["H5650"]],[48,49,["H3290"]]]},{"k":21183,"v":[[0,4,["H3427"]],[4,5,["H983"]],[5,6,["H5921"]],[6,9,["H1129"]],[9,10,["H1004"]],[10,12,["H5193"]],[12,13,["H3754"]],[13,17,["H3427"]],[17,19,["H983"]],[19,23,["H6213"]],[23,24,["H8201"]],[24,26,["H3605"]],[26,29,["H7590"]],[29,32,["H4480","H5439"]],[32,37,["H3045"]],[37,38,["H3588"]],[38,39,["H589"]],[39,42,["H3068"]],[42,44,["H430"]]]},{"k":21184,"v":[[0,3,["H6224"]],[3,4,["H8141"]],[4,7,["H6224"]],[7,11,["H8147","H6240"]],[11,15,["H2320"]],[15,17,["H1697"]],[17,20,["H3068"]],[20,21,["H1961"]],[21,22,["H413"]],[22,24,["H559"]]]},{"k":21185,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H7760"]],[4,6,["H6440"]],[6,7,["H5921"]],[7,8,["H6547"]],[8,9,["H4428"]],[9,11,["H4714"]],[11,13,["H5012"]],[13,14,["H5921"]],[14,17,["H5921"]],[17,18,["H3605"]],[18,19,["H4714"]]]},{"k":21186,"v":[[0,1,["H1696"]],[1,3,["H559"]],[3,4,["H3541"]],[4,5,["H559"]],[5,7,["H136"]],[7,8,["H3069"]],[8,9,["H2009"]],[9,12,["H5921"]],[12,14,["H6547"]],[14,15,["H4428"]],[15,17,["H4714"]],[17,19,["H1419"]],[19,20,["H8577"]],[20,22,["H7257"]],[22,25,["H8432"]],[25,28,["H2975"]],[28,29,["H834"]],[29,31,["H559"]],[31,33,["H2975"]],[33,38,["H589"]],[38,40,["H6213"]],[40,43,[]]]},{"k":21187,"v":[[0,4,["H5414"]],[4,5,["H2397"]],[5,8,["H3895"]],[8,14,["H1710"]],[14,17,["H2975"]],[17,19,["H1692"]],[19,22,["H7193"]],[22,28,["H5927"]],[28,32,["H4480","H8432"]],[32,35,["H2975"]],[35,37,["H3605"]],[37,39,["H1710"]],[39,42,["H2975"]],[42,44,["H1692"]],[44,47,["H7193"]]]},{"k":21188,"v":[[0,4,["H5203"]],[4,9,["H4057"]],[9,12,["H3605"]],[12,14,["H1710"]],[14,17,["H2975"]],[17,20,["H5307"]],[20,21,["H5921"]],[21,23,["H6440"]],[23,24,["H7704"]],[24,27,["H3808"]],[27,30,["H622"]],[30,31,["H3808"]],[31,32,["H6908"]],[32,35,["H5414"]],[35,38,["H402"]],[38,41,["H2416"]],[41,44,["H776"]],[44,48,["H5775"]],[48,51,["H8064"]]]},{"k":21189,"v":[[0,2,["H3605"]],[2,4,["H3427"]],[4,6,["H4714"]],[6,8,["H3045"]],[8,9,["H3588"]],[9,10,["H589"]],[10,13,["H3068"]],[13,14,["H3282"]],[14,17,["H1961"]],[17,19,["H4938"]],[19,21,["H7070"]],[21,24,["H1004"]],[24,26,["H3478"]]]},{"k":21190,"v":[[0,4,["H8610"]],[4,9,["H3709"]],[9,12,["H7533"]],[12,14,["H1234"]],[14,15,["H3605"]],[15,17,["H3802"]],[17,21,["H8172"]],[21,22,["H5921"]],[22,25,["H7665"]],[25,28,["H3605"]],[28,30,["H4975"]],[30,35,["H5976"]]]},{"k":21191,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,10,["H935"]],[10,12,["H2719"]],[12,13,["H5921"]],[13,17,["H3772"]],[17,18,["H120"]],[18,20,["H929"]],[20,22,["H4480"]],[22,23,[]]]},{"k":21192,"v":[[0,3,["H776"]],[3,5,["H4714"]],[5,7,["H1961"]],[7,8,["H8077"]],[8,10,["H2723"]],[10,14,["H3045"]],[14,15,["H3588"]],[15,16,["H589"]],[16,19,["H3068"]],[19,20,["H3282"]],[20,23,["H559"]],[23,25,["H2975"]],[25,29,["H589"]],[29,31,["H6213"]],[31,32,[]]]},{"k":21193,"v":[[0,1,["H2009"]],[1,2,["H3651"]],[2,5,["H413"]],[5,8,["H413"]],[8,10,["H2975"]],[10,14,["H5414","(H853)"]],[14,16,["H776"]],[16,18,["H4714"]],[18,20,["H2723","H2721"]],[20,22,["H8077"]],[22,25,["H4480","H4024"]],[25,27,["H5482"]],[27,29,["H5704"]],[29,31,["H1366"]],[31,33,["H3568"]]]},{"k":21194,"v":[[0,1,["H3808"]],[1,2,["H7272"]],[2,4,["H120"]],[4,6,["H5674"]],[6,9,["H3808"]],[9,10,["H7272"]],[10,12,["H929"]],[12,14,["H5674"]],[14,17,["H3808"]],[17,21,["H3427"]],[21,22,["H705"]],[22,23,["H8141"]]]},{"k":21195,"v":[[0,4,["H5414","(H853)"]],[4,6,["H776"]],[6,8,["H4714"]],[8,9,["H8077"]],[9,12,["H8432"]],[12,15,["H776"]],[15,18,["H8074"]],[18,21,["H5892"]],[21,22,["H8432"]],[22,24,["H5892"]],[24,28,["H2717"]],[28,30,["H1961"]],[30,31,["H8077"]],[31,32,["H705"]],[32,33,["H8141"]],[33,37,["H6327","(H853)"]],[37,39,["H4714"]],[39,42,["H1471"]],[42,45,["H2219"]],[45,49,["H776"]]]},{"k":21196,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,9,["H4480","H7093"]],[9,11,["H705"]],[11,12,["H8141"]],[12,15,["H6908","(H853)"]],[15,17,["H4714"]],[17,18,["H4480"]],[18,20,["H5971"]],[20,21,["H834","H8033"]],[21,24,["H6327"]]]},{"k":21197,"v":[[0,5,["H7725","(H853)"]],[5,7,["H7622"]],[7,9,["H4714"]],[9,15,["H7725"]],[15,18,["H776"]],[18,20,["H6624"]],[20,21,["H5921"]],[21,23,["H776"]],[23,26,["H4351"]],[26,30,["H1961"]],[30,31,["H8033"]],[31,33,["H8217"]],[33,34,["H4467"]]]},{"k":21198,"v":[[0,3,["H1961"]],[3,5,["H8217"]],[5,6,["H4480"]],[6,8,["H4467"]],[8,9,["H3808"]],[9,13,["H5375"]],[13,15,["H5750"]],[15,16,["H5921"]],[16,18,["H1471"]],[18,22,["H4591"]],[22,28,["H1115"]],[28,29,["H7287"]],[29,32,["H1471"]]]},{"k":21199,"v":[[0,4,["H1961"]],[4,5,["H3808"]],[5,6,["H5750"]],[6,8,["H4009"]],[8,11,["H1004"]],[11,13,["H3478"]],[13,19,["H2142","H5771"]],[19,23,["H6437"]],[23,24,["H310"]],[24,29,["H3045"]],[29,30,["H3588"]],[30,31,["H589"]],[31,34,["H136"]],[34,35,["H3069"]]]},{"k":21200,"v":[[0,5,["H1961"]],[5,8,["H7651"]],[8,10,["H6242"]],[10,11,["H8141"]],[11,14,["H7223"]],[14,18,["H259"]],[18,22,["H2320"]],[22,24,["H1697"]],[24,27,["H3068"]],[27,28,["H1961"]],[28,29,["H413"]],[29,31,["H559"]]]},{"k":21201,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H5019"]],[4,5,["H4428"]],[5,7,["H894"]],[7,8,["(H853)"]],[8,10,["H2428"]],[10,12,["H5647"]],[12,14,["H1419"]],[14,15,["H5656"]],[15,16,["H413"]],[16,17,["H6865"]],[17,18,["H3605"]],[18,19,["H7218"]],[19,22,["H7139"]],[22,24,["H3605"]],[24,25,["H3802"]],[25,27,["H4803"]],[27,29,["H1961"]],[29,31,["H3808"]],[31,32,["H7939"]],[32,35,["H2428"]],[35,37,["H4480","H6865"]],[37,38,["H5921"]],[38,40,["H5656"]],[40,41,["H834"]],[41,44,["H5647"]],[44,45,["H5921"]],[45,46,[]]]},{"k":21202,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,10,["H5414","(H853)"]],[10,12,["H776"]],[12,14,["H4714"]],[14,16,["H5019"]],[16,17,["H4428"]],[17,19,["H894"]],[19,23,["H5375"]],[23,25,["H1995"]],[25,27,["H7997"]],[27,29,["H7998"]],[29,31,["H962"]],[31,33,["H957"]],[33,37,["H1961"]],[37,39,["H7939"]],[39,42,["H2428"]]]},{"k":21203,"v":[[0,3,["H5414"]],[3,4,["(H853)"]],[4,6,["H776"]],[6,8,["H4714"]],[8,11,["H6468"]],[11,12,["H834"]],[12,14,["H5647"]],[14,17,["H834"]],[17,19,["H6213"]],[19,22,["H5002"]],[22,24,["H136"]],[24,25,["H3069"]]]},{"k":21204,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,8,["H7161"]],[8,11,["H1004"]],[11,13,["H3478"]],[13,16,["H6779"]],[16,20,["H5414"]],[20,23,["H6610"]],[23,26,["H6310"]],[26,29,["H8432"]],[29,35,["H3045"]],[35,36,["H3588"]],[36,37,["H589"]],[37,40,["H3068"]]]},{"k":21205,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,8,["H413"]],[8,10,["H559"]]]},{"k":21206,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H5012"]],[4,6,["H559"]],[6,7,["H3541"]],[7,8,["H559"]],[8,10,["H136"]],[10,11,["H3069"]],[11,12,["H3213"]],[12,14,["H1929"]],[14,17,["H3117"]]]},{"k":21207,"v":[[0,1,["H3588"]],[1,3,["H3117"]],[3,5,["H7138"]],[5,8,["H3117"]],[8,11,["H3068"]],[11,13,["H7138"]],[13,15,["H6051"]],[15,16,["H3117"]],[16,19,["H1961"]],[19,21,["H6256"]],[21,24,["H1471"]]]},{"k":21208,"v":[[0,3,["H2719"]],[3,5,["H935"]],[5,7,["H4714"]],[7,10,["H2479"]],[10,12,["H1961"]],[12,14,["H3568"]],[14,17,["H2491"]],[17,19,["H5307"]],[19,21,["H4714"]],[21,26,["H3947"]],[26,28,["H1995"]],[28,31,["H3247"]],[31,35,["H2040"]]]},{"k":21209,"v":[[0,1,["H3568"]],[1,3,["H6316"]],[3,5,["H3865"]],[5,7,["H3605"]],[7,10,["H6154"]],[10,12,["H3552"]],[12,15,["H1121"]],[15,18,["H776"]],[18,22,["H1285"]],[22,24,["H5307"]],[24,25,["H854"]],[25,29,["H2719"]]]},{"k":21210,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,8,["H5564"]],[8,9,["H4714"]],[9,11,["H5307"]],[11,14,["H1347"]],[14,17,["H5797"]],[17,20,["H3381"]],[20,23,["H4480","H4024"]],[23,25,["H5482"]],[25,28,["H5307"]],[28,33,["H2719"]],[33,34,["H5002"]],[34,36,["H136"]],[36,37,["H3069"]]]},{"k":21211,"v":[[0,5,["H8074"]],[5,8,["H8432"]],[8,11,["H776"]],[11,14,["H8074"]],[14,17,["H5892"]],[17,19,["H1961"]],[19,22,["H8432"]],[22,25,["H5892"]],[25,28,["H2717"]]]},{"k":21212,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,13,["H5414"]],[13,15,["H784"]],[15,17,["H4714"]],[17,20,["H3605"]],[20,22,["H5826"]],[22,25,["H7665"]]]},{"k":21213,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,5,["H4397"]],[5,7,["H3318"]],[7,8,["H4480","H6440"]],[8,11,["H6716"]],[11,13,["(H853)"]],[13,15,["H983"]],[15,16,["H3568"]],[16,17,["H2729"]],[17,20,["H2479"]],[20,22,["H1961"]],[22,28,["H3117"]],[28,30,["H4714"]],[30,31,["H3588"]],[31,32,["H2009"]],[32,34,["H935"]]]},{"k":21214,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,9,["(H853)"]],[9,11,["H1995"]],[11,13,["H4714"]],[13,15,["H7673"]],[15,18,["H3027"]],[18,20,["H5019"]],[20,21,["H4428"]],[21,23,["H894"]]]},{"k":21215,"v":[[0,1,["H1931"]],[1,4,["H5971"]],[4,5,["H854"]],[5,8,["H6184"]],[8,11,["H1471"]],[11,14,["H935"]],[14,16,["H7843"]],[16,18,["H776"]],[18,22,["H7324"]],[22,24,["H2719"]],[24,25,["H5921"]],[25,26,["H4714"]],[26,28,["H4390","(H853)"]],[28,30,["H776"]],[30,33,["H2491"]]]},{"k":21216,"v":[[0,4,["H5414"]],[4,6,["H2975"]],[6,7,["H2724"]],[7,9,["H4376","(H853)"]],[9,11,["H776"]],[11,14,["H3027"]],[14,17,["H7451"]],[17,24,["H8074","H776"]],[24,29,["H4393"]],[29,32,["H3027"]],[32,34,["H2114"]],[34,35,["H589"]],[35,37,["H3068"]],[37,39,["H1696"]],[39,40,[]]]},{"k":21217,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,9,["H6"]],[9,11,["H1544"]],[11,17,["H457"]],[17,19,["H7673"]],[19,22,["H4480","H5297"]],[22,26,["H1961"]],[26,27,["H3808"]],[27,28,["H5750"]],[28,30,["H5387"]],[30,33,["H4480","H776"]],[33,35,["H4714"]],[35,39,["H5414"]],[39,41,["H3374"]],[41,44,["H776"]],[44,46,["H4714"]]]},{"k":21218,"v":[[0,6,["H8074","(H853)","H6624"]],[6,9,["H5414"]],[9,10,["H784"]],[10,12,["H6814"]],[12,15,["H6213"]],[15,16,["H8201"]],[16,18,["H4996"]]]},{"k":21219,"v":[[0,4,["H8210"]],[4,6,["H2534"]],[6,7,["H5921"]],[7,8,["H5512"]],[8,10,["H4581"]],[10,12,["H4714"]],[12,17,["H3772","(H853)"]],[17,19,["H1995"]],[19,21,["H4996"]]]},{"k":21220,"v":[[0,4,["H5414"]],[4,5,["H784"]],[5,7,["H4714"]],[7,8,["H5512"]],[8,12,["H2342","H2342"]],[12,14,["H4996"]],[14,16,["H1961"]],[16,18,["H1234"]],[18,20,["H5297"]],[20,23,["H6862"]],[23,24,["H3119"]]]},{"k":21221,"v":[[0,3,["H970"]],[3,5,["H205"]],[5,8,["H6364"]],[8,10,["H5307"]],[10,13,["H2719"]],[13,15,["H2007"]],[15,18,["H1980"]],[18,20,["H7628"]]]},{"k":21222,"v":[[0,2,["H8471"]],[2,5,["H3117"]],[5,8,["H2820"]],[8,12,["H7665"]],[12,13,["H8033","(H853)"]],[13,15,["H4133"]],[15,17,["H4714"]],[17,20,["H1347"]],[20,23,["H5797"]],[23,25,["H7673"]],[25,30,["H1931"]],[30,32,["H6051"]],[32,34,["H3680"]],[34,38,["H1323"]],[38,40,["H1980"]],[40,42,["H7628"]]]},{"k":21223,"v":[[0,4,["H6213"]],[4,5,["H8201"]],[5,7,["H4714"]],[7,11,["H3045"]],[11,12,["H3588"]],[12,13,["H589"]],[13,16,["H3068"]]]},{"k":21224,"v":[[0,5,["H1961"]],[5,8,["H259","H6240"]],[8,9,["H8141"]],[9,12,["H7223"]],[12,16,["H7651"]],[16,20,["H2320"]],[20,23,["H1697"]],[23,26,["H3068"]],[26,27,["H1961"]],[27,28,["H413"]],[28,30,["H559"]]]},{"k":21225,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,6,["H7665","(H853)"]],[6,8,["H2220"]],[8,10,["H6547"]],[10,11,["H4428"]],[11,13,["H4714"]],[13,15,["H2009"]],[15,18,["H3808"]],[18,21,["H2280"]],[21,24,["H5414","H7499"]],[24,26,["H7760"]],[26,28,["H2848"]],[28,30,["H2280"]],[30,35,["H2388"]],[35,37,["H8610"]],[37,39,["H2719"]]]},{"k":21226,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,10,["H413"]],[10,11,["H6547"]],[11,12,["H4428"]],[12,14,["H4714"]],[14,17,["H7665","(H853)"]],[17,19,["H2220","(H853)"]],[19,21,["H2389"]],[21,26,["H7665"]],[26,30,["(H853)"]],[30,32,["H2719"]],[32,34,["H5307"]],[34,38,["H4480","H3027"]]]},{"k":21227,"v":[[0,4,["H6327","(H853)"]],[4,6,["H4714"]],[6,9,["H1471"]],[9,12,["H2219"]],[12,16,["H776"]]]},{"k":21228,"v":[[0,4,["H2388","(H853)"]],[4,6,["H2220"]],[6,9,["H4428"]],[9,11,["H894"]],[11,13,["H5414","(H853)"]],[13,15,["H2719"]],[15,18,["H3027"]],[18,22,["H7665","(H853)"]],[22,23,["H6547"]],[23,24,["H2220"]],[24,28,["H5008"]],[28,29,["H6440"]],[29,33,["H5009"]],[33,37,["H2491"]],[37,38,[]]]},{"k":21229,"v":[[0,4,["H2388","(H853)"]],[4,6,["H2220"]],[6,9,["H4428"]],[9,11,["H894"]],[11,14,["H2220"]],[14,16,["H6547"]],[16,19,["H5307"]],[19,23,["H3045"]],[23,24,["H3588"]],[24,25,["H589"]],[25,28,["H3068"]],[28,32,["H5414"]],[32,34,["H2719"]],[34,37,["H3027"]],[37,40,["H4428"]],[40,42,["H894"]],[42,48,["H5186","(H853)"]],[48,49,["H413"]],[49,51,["H776"]],[51,53,["H4714"]]]},{"k":21230,"v":[[0,4,["H6327","(H853)"]],[4,6,["H4714"]],[6,9,["H1471"]],[9,11,["H2219"]],[11,15,["H776"]],[15,19,["H3045"]],[19,20,["H3588"]],[20,21,["H589"]],[21,24,["H3068"]]]},{"k":21231,"v":[[0,5,["H1961"]],[5,8,["H259","H6240"]],[8,9,["H8141"]],[9,12,["H7992"]],[12,16,["H259"]],[16,20,["H2320"]],[20,23,["H1697"]],[23,26,["H3068"]],[26,27,["H1961"]],[27,28,["H413"]],[28,30,["H559"]]]},{"k":21232,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H6547"]],[6,7,["H4428"]],[7,9,["H4714"]],[9,11,["H413"]],[11,13,["H1995"]],[13,14,["H413","H4310"]],[14,17,["H1819"]],[17,20,["H1433"]]]},{"k":21233,"v":[[0,1,["H2009"]],[1,3,["H804"]],[3,6,["H730"]],[6,8,["H3844"]],[8,10,["H3303"]],[10,11,["H6057"]],[11,15,["H6751"]],[15,16,["H2793"]],[16,20,["H1362"]],[20,21,["H6967"]],[21,24,["H6788"]],[24,25,["H1961"]],[25,26,["H996"]],[26,29,["H5688"]]]},{"k":21234,"v":[[0,2,["H4325"]],[2,5,["H1431"]],[5,7,["H8415"]],[7,12,["H7311"]],[12,13,["H854"]],[13,15,["H5104"]],[15,16,["H1980"]],[16,18,["H5439"]],[18,20,["H4302"]],[20,23,["H7971"]],[23,26,["H8585"]],[26,27,["H413"]],[27,28,["H3605"]],[28,30,["H6086"]],[30,33,["H7704"]]]},{"k":21235,"v":[[0,1,["H5921","H3651"]],[1,3,["H6967"]],[3,5,["H1361"]],[5,7,["H4480","H3605"]],[7,9,["H6086"]],[9,12,["H7704"]],[12,15,["H5634"]],[15,17,["H7235"]],[17,20,["H6288"]],[20,22,["H748"]],[22,26,["H7227"]],[26,28,["H4480","H4325"]],[28,32,["H7971"]]]},{"k":21236,"v":[[0,1,["H3605"]],[1,3,["H5775"]],[3,5,["H8064"]],[5,8,["H7077"]],[8,11,["H5589"]],[11,13,["H8478"]],[13,15,["H6288"]],[15,17,["H3605"]],[17,19,["H2416"]],[19,22,["H7704"]],[22,26,["H3205"]],[26,30,["H6738"]],[30,31,["H3427"]],[31,32,["H3605"]],[32,33,["H7227"]],[33,34,["H1471"]]]},{"k":21237,"v":[[0,4,["H3302"]],[4,7,["H1433"]],[7,10,["H753"]],[10,13,["H1808"]],[13,14,["H3588"]],[14,16,["H8328"]],[16,17,["H1961"]],[17,18,["H413"]],[18,19,["H7227"]],[19,20,["H4325"]]]},{"k":21238,"v":[[0,2,["H730"]],[2,5,["H1588"]],[5,7,["H430"]],[7,9,["H3808"]],[9,10,["H6004"]],[10,14,["H1265"]],[14,17,["H1819","H3808","H413"]],[17,19,["H5589"]],[19,23,["H6196"]],[23,24,["H1961"]],[24,25,["H3808"]],[25,28,["H6288"]],[28,29,["H3808"]],[29,30,["H3605"]],[30,31,["H6086"]],[31,34,["H1588"]],[34,36,["H430"]],[36,38,["H1819"]],[38,39,["H413"]],[39,43,["H3308"]]]},{"k":21239,"v":[[0,3,["H6213"]],[3,5,["H3303"]],[5,8,["H7230"]],[8,11,["H1808"]],[11,14,["H3605"]],[14,16,["H6086"]],[16,18,["H5731"]],[18,19,["H834"]],[19,23,["H1588"]],[23,25,["H430"]],[25,26,["H7065"]],[26,27,[]]]},{"k":21240,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H3282","H834"]],[7,11,["H1361"]],[11,14,["H6967"]],[14,19,["H5414"]],[19,21,["H6788"]],[21,22,["H413","H996"]],[22,25,["H5688"]],[25,28,["H3824"]],[28,31,["H7311"]],[31,34,["H1363"]]]},{"k":21241,"v":[[0,4,["H5414"]],[4,8,["H3027"]],[8,12,["H352"]],[12,15,["H1471"]],[15,19,["H6213","H6213"]],[19,26,["H1644"]],[26,29,["H7562"]]]},{"k":21242,"v":[[0,2,["H2114"]],[2,4,["H6184"]],[4,7,["H1471"]],[7,11,["H3772"]],[11,14,["H5203"]],[14,16,["H413"]],[16,18,["H2022"]],[18,21,["H3605"]],[21,23,["H1516"]],[23,25,["H1808"]],[25,27,["H5307"]],[27,30,["H6288"]],[30,32,["H7665"]],[32,34,["H3605"]],[34,36,["H650"]],[36,39,["H776"]],[39,41,["H3605"]],[41,43,["H5971"]],[43,46,["H776"]],[46,49,["H3381"]],[49,52,["H4480","H6738"]],[52,55,["H5203"]],[55,56,[]]]},{"k":21243,"v":[[0,1,["H5921"]],[1,3,["H4658"]],[3,5,["H3605"]],[5,7,["H5775"]],[7,10,["H8064"]],[10,11,["H7931"]],[11,13,["H3605"]],[13,15,["H2416"]],[15,18,["H7704"]],[18,20,["H1961"]],[20,21,["H413"]],[21,23,["H6288"]]]},{"k":21244,"v":[[0,3,["H4616"]],[3,4,["H834"]],[4,5,["H3808"]],[5,7,["H3605"]],[7,9,["H6086"]],[9,12,["H4325"]],[12,14,["H1361"]],[14,17,["H6967"]],[17,18,["H3808"]],[18,20,["H5414","(H853)"]],[20,22,["H6788"]],[22,23,["H413","H996"]],[23,26,["H5688"]],[26,27,["H3808"]],[27,29,["H352"]],[29,31,["H5975"]],[31,34,["H1363"]],[34,35,["H3605"]],[35,37,["H8354"]],[37,38,["H4325"]],[38,39,["H3588"]],[39,42,["H3605"]],[42,43,["H5414"]],[43,45,["H4194"]],[45,46,["H413"]],[46,49,["H8482"]],[49,52,["H776"]],[52,55,["H8432"]],[55,58,["H1121"]],[58,60,["H120"]],[60,61,["H413"]],[61,65,["H3381"]],[65,68,["H953"]]]},{"k":21245,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,8,["H3117"]],[8,12,["H3381"]],[12,15,["H7585"]],[15,19,["H56"]],[19,21,["H3680","(H853)"]],[21,23,["H8415"]],[23,24,["H5921"]],[24,28,["H4513"]],[28,30,["H5104"]],[30,34,["H7227"]],[34,35,["H4325"]],[35,37,["H3607"]],[37,41,["H3844"]],[41,43,["H6937"]],[43,44,["H5921"]],[44,47,["H3605"]],[47,49,["H6086"]],[49,52,["H7704"]],[52,53,["H5969"]],[53,54,["H5921"]],[54,55,[]]]},{"k":21246,"v":[[0,4,["H1471"]],[4,6,["H7493"]],[6,9,["H4480","H6963"]],[9,12,["H4658"]],[12,17,["H3381","(H853)"]],[17,19,["H7585"]],[19,20,["H854"]],[20,23,["H3381"]],[23,26,["H953"]],[26,28,["H3605"]],[28,30,["H6086"]],[30,32,["H5731"]],[32,34,["H4005"]],[34,36,["H2896"]],[36,38,["H3844"]],[38,39,["H3605"]],[39,41,["H8354"]],[41,42,["H4325"]],[42,45,["H5162"]],[45,49,["H8482"]],[49,52,["H776"]]]},{"k":21247,"v":[[0,1,["H1992"]],[1,2,["H1571"]],[2,4,["H3381"]],[4,6,["H7585"]],[6,7,["H854"]],[7,9,["H413"]],[9,13,["H2491"]],[13,16,["H2719"]],[16,22,["H2220"]],[22,24,["H3427"]],[24,27,["H6738"]],[27,30,["H8432"]],[30,33,["H1471"]]]},{"k":21248,"v":[[0,1,["H413"]],[1,2,["H4310"]],[2,6,["H1819","H3602"]],[6,8,["H3519"]],[8,11,["H1433"]],[11,14,["H6086"]],[14,16,["H5731"]],[16,22,["H3381"]],[22,23,["H854"]],[23,25,["H6086"]],[25,27,["H5731"]],[27,28,["H413"]],[28,31,["H8482"]],[31,34,["H776"]],[34,37,["H7901"]],[37,40,["H8432"]],[40,43,["H6189"]],[43,44,["H854"]],[44,48,["H2491"]],[48,51,["H2719"]],[51,52,["H1931"]],[52,54,["H6547"]],[54,56,["H3605"]],[56,58,["H1995"]],[58,59,["H5002"]],[59,61,["H136"]],[61,62,["H3069"]]]},{"k":21249,"v":[[0,5,["H1961"]],[5,8,["H8147","H6240"]],[8,9,["H8141"]],[9,12,["H8147","H6240"]],[12,13,["H2320"]],[13,16,["H259"]],[16,20,["H2320"]],[20,23,["H1697"]],[23,26,["H3068"]],[26,27,["H1961"]],[27,28,["H413"]],[28,30,["H559"]]]},{"k":21250,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,5,["H5375"]],[5,7,["H7015"]],[7,8,["H5921"]],[8,9,["H6547"]],[9,10,["H4428"]],[10,12,["H4714"]],[12,14,["H559"]],[14,15,["H413"]],[15,19,["H1819"]],[19,22,["H3715"]],[22,25,["H1471"]],[25,27,["H859"]],[27,31,["H8577"]],[31,34,["H3220"]],[34,38,["H1518"]],[38,41,["H5104"]],[41,43,["H1804"]],[43,45,["H4325"]],[45,48,["H7272"]],[48,50,["H7511"]],[50,52,["H5104"]]]},{"k":21251,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,10,["H6566","(H853)"]],[10,12,["H7568"]],[12,13,["H5921"]],[13,17,["H6951"]],[17,19,["H7227"]],[19,20,["H5971"]],[20,26,["H5927"]],[26,29,["H2764"]]]},{"k":21252,"v":[[0,4,["H5203"]],[4,8,["H776"]],[8,13,["H2904"]],[13,14,["H5921"]],[14,16,["H6440"]],[16,17,["H7704"]],[17,21,["H3605"]],[21,23,["H5775"]],[23,26,["H8064"]],[26,28,["H7931"]],[28,29,["H5921"]],[29,34,["H7646"]],[34,36,["H2416"]],[36,39,["H3605"]],[39,40,["H776"]],[40,41,["H4480"]],[41,42,[]]]},{"k":21253,"v":[[0,4,["H5414","(H853)"]],[4,6,["H1320"]],[6,7,["H5921"]],[7,9,["H2022"]],[9,11,["H4390"]],[11,13,["H1516"]],[13,16,["H7419"]]]},{"k":21254,"v":[[0,4,["H8248"]],[4,7,["H4480","H1818"]],[7,9,["H776"]],[9,12,["H6824"]],[12,14,["H413"]],[14,16,["H2022"]],[16,19,["H650"]],[19,22,["H4390"]],[22,23,["H4480"]],[23,24,[]]]},{"k":21255,"v":[[0,7,["H3518"]],[7,10,["H3680"]],[10,12,["H8064"]],[12,18,["H6937","(H853)","H3556"]],[18,21,["H3680"]],[21,23,["H8121"]],[23,26,["H6051"]],[26,29,["H3394"]],[29,31,["H3808"]],[31,32,["H215"]],[32,34,["H216"]]]},{"k":21256,"v":[[0,1,["H3605"]],[1,3,["H216"]],[3,4,["H3974"]],[4,6,["H8064"]],[6,10,["H6937"]],[10,11,["H5921"]],[11,14,["H5414"]],[14,15,["H2822"]],[15,16,["H5921"]],[16,18,["H776"]],[18,19,["H5002"]],[19,21,["H136"]],[21,22,["H3069"]]]},{"k":21257,"v":[[0,4,["H3707"]],[4,6,["H3820"]],[6,8,["H7227"]],[8,9,["H5971"]],[9,13,["H935"]],[13,15,["H7667"]],[15,18,["H1471"]],[18,19,["H5921"]],[19,21,["H776"]],[21,22,["H834"]],[22,25,["H3808"]],[25,26,["H3045"]]]},{"k":21258,"v":[[0,7,["H8074","H5971","H7227"]],[7,8,["H5921"]],[8,12,["H4428"]],[12,16,["H8175","H8178"]],[16,17,["H5921"]],[17,22,["H5774"]],[22,24,["H2719"]],[24,25,["H5921","H6440"]],[25,30,["H2729"]],[30,33,["H7281"]],[33,35,["H376"]],[35,39,["H5315"]],[39,42,["H3117"]],[42,45,["H4658"]]]},{"k":21259,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,8,["H2719"]],[8,11,["H4428"]],[11,13,["H894"]],[13,16,["H935"]],[16,17,[]]]},{"k":21260,"v":[[0,3,["H2719"]],[3,6,["H1368"]],[6,11,["H1995"]],[11,13,["H5307"]],[13,15,["H6184"]],[15,18,["H1471"]],[18,19,["H3605"]],[19,25,["H7703","(H853)"]],[25,27,["H1347"]],[27,29,["H4714"]],[29,31,["H3605"]],[31,33,["H1995"]],[33,37,["H8045"]]]},{"k":21261,"v":[[0,3,["H6"]],[3,4,["(H853)"]],[4,5,["H3605"]],[5,7,["H929"]],[7,10,["H4480","H5921"]],[10,12,["H7227"]],[12,13,["H4325"]],[13,14,["H3808"]],[14,17,["H7272"]],[17,19,["H120"]],[19,20,["H1804"]],[20,23,["H5750"]],[23,24,["H3808"]],[24,26,["H6541"]],[26,28,["H929"]],[28,29,["H1804"]],[29,30,[]]]},{"k":21262,"v":[[0,1,["H227"]],[1,7,["H8257","H4325"]],[7,11,["H5104"]],[11,13,["H1980"]],[13,15,["H8081"]],[15,16,["H5002"]],[16,18,["H136"]],[18,19,["H3069"]]]},{"k":21263,"v":[[0,4,["H5414","(H853)"]],[4,6,["H776"]],[6,8,["H4714"]],[8,9,["H8077"]],[9,12,["H776"]],[12,15,["H8074"]],[15,21,["H4480","H4393"]],[21,25,["H5221","(H853)"]],[25,26,["H3605"]],[26,29,["H3427"]],[29,34,["H3045"]],[34,35,["H3588"]],[35,36,["H589"]],[36,39,["H3068"]]]},{"k":21264,"v":[[0,1,["H1931"]],[1,4,["H7015"]],[4,8,["H6969"]],[8,11,["H1323"]],[11,14,["H1471"]],[14,16,["H6969"]],[16,20,["H6969"]],[20,24,["H5921"]],[24,25,["H4714"]],[25,27,["H5921"]],[27,28,["H3605"]],[28,30,["H1995"]],[30,31,["H5002"]],[31,33,["H136"]],[33,34,["H3069"]]]},{"k":21265,"v":[[0,4,["H1961"]],[4,8,["H8147","H6240"]],[8,9,["H8141"]],[9,12,["H2568","H6240"]],[12,16,["H2320"]],[16,19,["H1697"]],[19,22,["H3068"]],[22,23,["H1961"]],[23,24,["H413"]],[24,26,["H559"]]]},{"k":21266,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H5091"]],[4,5,["H5921"]],[5,7,["H1995"]],[7,9,["H4714"]],[9,13,["H3381"]],[13,18,["H1323"]],[18,21,["H117"]],[21,22,["H1471"]],[22,23,["H413"]],[23,26,["H8482"]],[26,29,["H776"]],[29,30,["H854"]],[30,34,["H3381"]],[34,37,["H953"]]]},{"k":21267,"v":[[0,1,["H4480","H4310"]],[1,6,["H5276"]],[6,8,["H3381"]],[8,12,["H7901"]],[12,13,["H854"]],[13,15,["H6189"]]]},{"k":21268,"v":[[0,3,["H5307"]],[3,6,["H8432"]],[6,11,["H2491"]],[11,14,["H2719"]],[14,17,["H5414"]],[17,20,["H2719"]],[20,21,["H4900"]],[21,24,["H3605"]],[24,26,["H1995"]]]},{"k":21269,"v":[[0,2,["H410"]],[2,5,["H1368"]],[5,7,["H1696"]],[7,13,["H4480","H8432"]],[13,15,["H7585"]],[15,16,["H854"]],[16,19,["H5826"]],[19,24,["H3381"]],[24,26,["H7901"]],[26,27,["H6189"]],[27,28,["H2491"]],[28,31,["H2719"]]]},{"k":21270,"v":[[0,1,["H804"]],[1,3,["H8033"]],[3,5,["H3605"]],[5,7,["H6951"]],[7,9,["H6913"]],[9,11,["H5439"]],[11,13,["H3605"]],[13,16,["H2491"]],[16,17,["H5307"]],[17,20,["H2719"]]]},{"k":21271,"v":[[0,1,["H834"]],[1,2,["H6913"]],[2,4,["H5414"]],[4,7,["H3411"]],[7,10,["H953"]],[10,13,["H6951"]],[13,14,["H1961"]],[14,16,["H5439"]],[16,18,["H6900"]],[18,19,["H3605"]],[19,22,["H2491"]],[22,23,["H5307"]],[23,26,["H2719"]],[26,27,["H834"]],[27,28,["H5414"]],[28,29,["H2851"]],[29,32,["H776"]],[32,35,["H2416"]]]},{"k":21272,"v":[[0,1,["H8033"]],[1,3,["H5867"]],[3,5,["H3605"]],[5,7,["H1995"]],[7,9,["H5439"]],[9,11,["H6900"]],[11,12,["H3605"]],[12,15,["H2491"]],[15,16,["H5307"]],[16,19,["H2719"]],[19,20,["H834"]],[20,23,["H3381"]],[23,24,["H6189"]],[24,25,["H413"]],[25,28,["H8482"]],[28,31,["H776"]],[31,32,["H834"]],[32,33,["H5414"]],[33,35,["H2851"]],[35,38,["H776"]],[38,41,["H2416"]],[41,45,["H5375"]],[45,47,["H3639"]],[47,48,["H854"]],[48,52,["H3381"]],[52,55,["H953"]]]},{"k":21273,"v":[[0,3,["H5414"]],[3,6,["H4904"]],[6,9,["H8432"]],[9,12,["H2491"]],[12,14,["H3605"]],[14,16,["H1995"]],[16,18,["H6913"]],[18,21,["H5439"]],[21,23,["H3605"]],[23,26,["H6189"]],[26,27,["H2491"]],[27,30,["H2719"]],[30,31,["H3588"]],[31,33,["H2851"]],[33,35,["H5414"]],[35,38,["H776"]],[38,41,["H2416"]],[41,45,["H5375"]],[45,47,["H3639"]],[47,48,["H854"]],[48,52,["H3381"]],[52,55,["H953"]],[55,58,["H5414"]],[58,61,["H8432"]],[61,66,["H2491"]]]},{"k":21274,"v":[[0,1,["H8033"]],[1,3,["H4902"]],[3,4,["H8422"]],[4,6,["H3605"]],[6,8,["H1995"]],[8,10,["H6913"]],[10,13,["H5439"]],[13,15,["H3605"]],[15,18,["H6189"]],[18,19,["H2490"]],[19,22,["H2719"]],[22,23,["H3588"]],[23,25,["H5414"]],[25,27,["H2851"]],[27,30,["H776"]],[30,33,["H2416"]]]},{"k":21275,"v":[[0,4,["H3808"]],[4,5,["H7901"]],[5,6,["H854"]],[6,8,["H1368"]],[8,11,["H5307"]],[11,14,["H4480","H6189"]],[14,15,["H834"]],[15,18,["H3381"]],[18,20,["H7585"]],[20,23,["H3627"]],[23,25,["H4421"]],[25,29,["H5414","(H853)"]],[29,31,["H2719"]],[31,32,["H8478"]],[32,34,["H7218"]],[34,37,["H5771"]],[37,39,["H1961"]],[39,40,["H5921"]],[40,42,["H6106"]],[42,43,["H3588"]],[43,47,["H2851"]],[47,50,["H1368"]],[50,53,["H776"]],[53,56,["H2416"]]]},{"k":21276,"v":[[0,2,["H859"]],[2,5,["H7665"]],[5,8,["H8432"]],[8,11,["H6189"]],[11,14,["H7901"]],[14,15,["H854"]],[15,19,["H2491"]],[19,22,["H2719"]]]},{"k":21277,"v":[[0,1,["H8033"]],[1,3,["H123"]],[3,5,["H4428"]],[5,7,["H3605"]],[7,9,["H5387"]],[9,10,["H834"]],[10,13,["H1369"]],[13,15,["H5414"]],[15,16,["H854"]],[16,20,["H2491"]],[20,23,["H2719"]],[23,24,["H1992"]],[24,26,["H7901"]],[26,27,["H854"]],[27,29,["H6189"]],[29,31,["H854"]],[31,35,["H3381"]],[35,38,["H953"]]]},{"k":21278,"v":[[0,1,["H8033"]],[1,4,["H5257"]],[4,7,["H6828"]],[7,8,["H3605"]],[8,12,["H3605"]],[12,14,["H6722"]],[14,15,["H834"]],[15,18,["H3381"]],[18,19,["H854"]],[19,21,["H2491"]],[21,24,["H2851"]],[24,27,["H954"]],[27,30,["H4480","H1369"]],[30,33,["H7901"]],[33,34,["H6189"]],[34,35,["H854"]],[35,39,["H2491"]],[39,42,["H2719"]],[42,44,["H5375"]],[44,46,["H3639"]],[46,47,["H854"]],[47,51,["H3381"]],[51,54,["H953"]]]},{"k":21279,"v":[[0,1,["H6547"]],[1,3,["H7200"]],[3,8,["H5162"]],[8,9,["H5921"]],[9,10,["H3605"]],[10,12,["H1995"]],[12,14,["H6547"]],[14,16,["H3605"]],[16,18,["H2428"]],[18,19,["H2491"]],[19,22,["H2719"]],[22,23,["H5002"]],[23,25,["H136"]],[25,26,["H3069"]]]},{"k":21280,"v":[[0,1,["H3588"]],[1,4,["H5414","(H853)"]],[4,6,["H2851"]],[6,9,["H776"]],[9,12,["H2416"]],[12,17,["H7901"]],[17,20,["H8432"]],[20,23,["H6189"]],[23,24,["H854"]],[24,28,["H2491"]],[28,31,["H2719"]],[31,33,["H6547"]],[33,35,["H3605"]],[35,37,["H1995"]],[37,38,["H5002"]],[38,40,["H136"]],[40,41,["H3069"]]]},{"k":21281,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":21282,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H1696"]],[4,5,["H413"]],[5,7,["H1121"]],[7,10,["H5971"]],[10,12,["H559"]],[12,13,["H413"]],[13,15,["H3588"]],[15,17,["H935"]],[17,19,["H2719"]],[19,20,["H5921"]],[20,22,["H776"]],[22,25,["H5971"]],[25,28,["H776"]],[28,29,["H3947"]],[29,30,["H259"]],[30,31,["H376"]],[31,34,["H4480","H7097"]],[34,36,["H5414"]],[36,40,["H6822"]]]},{"k":21283,"v":[[0,4,["H7200","(H853)"]],[4,6,["H2719"]],[6,7,["H935"]],[7,8,["H5921"]],[8,10,["H776"]],[10,12,["H8628"]],[12,14,["H7782"]],[14,16,["H2094","(H853)"]],[16,18,["H5971"]]]},{"k":21284,"v":[[0,3,["H8085","H8085","(H853)"]],[3,5,["H6963"]],[5,8,["H7782"]],[8,12,["H2094","H3808"]],[12,15,["H2719"]],[15,16,["H935"]],[16,20,["H3947"]],[20,22,["H1818"]],[22,24,["H1961"]],[24,28,["H7218"]]]},{"k":21285,"v":[[0,2,["H8085","(H853)"]],[2,4,["H6963"]],[4,7,["H7782"]],[7,11,["H2094","H3808"]],[11,13,["H1818"]],[13,15,["H1961"]],[15,19,["H1931"]],[19,22,["H2094"]],[22,24,["H4422"]],[24,26,["H5315"]]]},{"k":21286,"v":[[0,2,["H3588"]],[2,4,["H6822"]],[4,5,["H7200","(H853)"]],[5,7,["H2719"]],[7,8,["H935"]],[8,10,["H8628"]],[10,11,["H3808"]],[11,13,["H7782"]],[13,16,["H5971"]],[16,18,["H3808"]],[18,19,["H2094"]],[19,22,["H2719"]],[22,23,["H935"]],[23,25,["H3947"]],[25,27,["H5315"]],[27,29,["H4480"]],[29,31,["H1931"]],[31,34,["H3947"]],[34,37,["H5771"]],[37,40,["H1818"]],[40,43,["H1875"]],[43,46,["H6822"]],[46,47,["H4480","H3027"]]]},{"k":21287,"v":[[0,2,["H859"]],[2,4,["H1121"]],[4,6,["H120"]],[6,9,["H5414"]],[9,12,["H6822"]],[12,15,["H1004"]],[15,17,["H3478"]],[17,21,["H8085"]],[21,23,["H1697"]],[23,26,["H4480","H6310"]],[26,28,["H2094"]],[28,30,["H4480"]],[30,31,[]]]},{"k":21288,"v":[[0,3,["H559"]],[3,6,["H7563"]],[6,8,["H7563"]],[8,13,["H4191","H4191"]],[13,17,["H3808"]],[17,18,["H1696"]],[18,20,["H2094"]],[20,22,["H7563"]],[22,25,["H4480","H1870"]],[25,26,["H1931"]],[26,27,["H7563"]],[27,30,["H4191"]],[30,33,["H5771"]],[33,36,["H1818"]],[36,39,["H1245"]],[39,42,["H4480","H3027"]]]},{"k":21289,"v":[[0,2,["H3588"]],[2,3,["H859"]],[3,4,["H2094"]],[4,6,["H7563"]],[6,9,["H4480","H1870"]],[9,11,["H7725"]],[11,12,["H4480"]],[12,17,["H3808"]],[17,18,["H7725"]],[18,21,["H4480","H1870"]],[21,22,["H1931"]],[22,24,["H4191"]],[24,27,["H5771"]],[27,29,["H859"]],[29,31,["H5337"]],[31,33,["H5315"]]]},{"k":21290,"v":[[0,3,["H859"]],[3,4,["H1121"]],[4,6,["H120"]],[6,7,["H559"]],[7,8,["H413"]],[8,10,["H1004"]],[10,12,["H3478"]],[12,13,["H3651"]],[13,15,["H559"]],[15,16,["H559"]],[16,17,["H3588"]],[17,19,["H6588"]],[19,22,["H2403"]],[22,24,["H5921"]],[24,27,["H587"]],[27,29,["H4743"]],[29,32,["H349"]],[32,36,["H2421"]]]},{"k":21291,"v":[[0,1,["H559"]],[1,2,["H413"]],[2,5,["H589"]],[5,6,["H2416"]],[6,7,["H5002"]],[7,9,["H136"]],[9,10,["H3069"]],[10,14,["H518","H2654"]],[14,17,["H4194"]],[17,20,["H7563"]],[20,21,["H3588","H518"]],[21,24,["H7563"]],[24,25,["H7725"]],[25,28,["H4480","H1870"]],[28,30,["H2421"]],[30,31,["H7725"]],[31,33,["H7725"]],[33,37,["H7451"]],[37,38,["H4480","H1870"]],[38,40,["H4100"]],[40,43,["H4191"]],[43,45,["H1004"]],[45,47,["H3478"]]]},{"k":21292,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H559"]],[6,7,["H413"]],[7,9,["H1121"]],[9,12,["H5971"]],[12,14,["H6666"]],[14,17,["H6662"]],[17,19,["H3808"]],[19,20,["H5337"]],[20,24,["H3117"]],[24,27,["H6588"]],[27,31,["H7564"]],[31,34,["H7563"]],[34,37,["H3808"]],[37,38,["H3782"]],[38,42,["H3117"]],[42,45,["H7725"]],[45,48,["H4480","H7562"]],[48,49,["H3808"]],[49,52,["H6662"]],[52,54,["H3201"]],[54,56,["H2421"]],[56,62,["H3117"]],[62,65,["H2398"]]]},{"k":21293,"v":[[0,4,["H559"]],[4,7,["H6662"]],[7,12,["H2421","H2421"]],[12,14,["H1931"]],[14,15,["H982"]],[15,16,["H5921"]],[16,19,["H6666"]],[19,21,["H6213"]],[21,22,["H5766"]],[22,23,["H3605"]],[23,25,["H6666"]],[25,27,["H3808"]],[27,29,["H2142"]],[29,33,["H5766"]],[33,34,["H834"]],[34,37,["H6213"]],[37,40,["H4191"]],[40,42,[]]]},{"k":21294,"v":[[0,4,["H559"]],[4,7,["H7563"]],[7,11,["H4191","H4191"]],[11,14,["H7725"]],[14,17,["H4480","H2403"]],[17,19,["H6213"]],[19,23,["H4941"]],[23,25,["H6666"]]]},{"k":21295,"v":[[0,3,["H7563"]],[3,4,["H7725"]],[4,6,["H2258"]],[6,8,["H7999"]],[8,12,["H1500"]],[12,13,["H1980"]],[13,16,["H2708"]],[16,18,["H2416"]],[18,19,["H1115"]],[19,20,["H6213"]],[20,21,["H5766"]],[21,25,["H2421","H2421"]],[25,28,["H3808"]],[28,29,["H4191"]]]},{"k":21296,"v":[[0,1,["H3808","H3605"]],[1,4,["H2403"]],[4,5,["H834"]],[5,8,["H2398"]],[8,11,["H2142"]],[11,16,["H6213"]],[16,20,["H4941"]],[20,22,["H6666"]],[22,26,["H2421","H2421"]]]},{"k":21297,"v":[[0,3,["H1121"]],[3,6,["H5971"]],[6,7,["H559"]],[7,9,["H1870"]],[9,12,["H136"]],[12,15,["H8505","H3808"]],[15,19,["H1992"]],[19,21,["H1870"]],[21,24,["H8505","H3808"]]]},{"k":21298,"v":[[0,3,["H6662"]],[3,4,["H7725"]],[4,7,["H4480","H6666"]],[7,9,["H6213"]],[9,10,["H5766"]],[10,14,["H4191"]],[14,15,[]]]},{"k":21299,"v":[[0,4,["H7563"]],[4,5,["H7725"]],[5,8,["H4480","H7564"]],[8,10,["H6213"]],[10,14,["H4941"]],[14,16,["H6666"]],[16,17,["H1931"]],[17,19,["H2421"]],[19,20,["H5921"]]]},{"k":21300,"v":[[0,3,["H559"]],[3,5,["H1870"]],[5,8,["H136"]],[8,11,["H8505","H3808"]],[11,14,["H1004"]],[14,16,["H3478"]],[16,19,["H8199"]],[19,22,["H376"]],[22,25,["H1870"]]]},{"k":21301,"v":[[0,5,["H1961"]],[5,8,["H8147","H6240"]],[8,9,["H8141"]],[9,12,["H1546"]],[12,15,["H6224"]],[15,19,["H2568"]],[19,23,["H2320"]],[23,28,["H6412"]],[28,31,["H4480","H3389"]],[31,32,["H935"]],[32,33,["H413"]],[33,35,["H559"]],[35,37,["H5892"]],[37,39,["H5221"]]]},{"k":21302,"v":[[0,3,["H3027"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,12,["H6153"]],[12,13,["H6440"]],[13,17,["H6412"]],[17,18,["H935"]],[18,21,["H6605","(H853)"]],[21,23,["H6310"]],[23,24,["H5704"]],[24,26,["H935"]],[26,27,["H413"]],[27,31,["H1242"]],[31,34,["H6310"]],[34,36,["H6605"]],[36,42,["H481","H3808","H5750"]]]},{"k":21303,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":21304,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,6,["H3427"]],[6,7,["H428"]],[7,8,["H2723"]],[8,9,["H5921"]],[9,11,["H127"]],[11,13,["H3478"]],[13,14,["H559"]],[14,15,["H559"]],[15,16,["H85"]],[16,17,["H1961"]],[17,18,["H259"]],[18,21,["H3423","(H853)"]],[21,23,["H776"]],[23,25,["H587"]],[25,27,["H7227"]],[27,29,["H776"]],[29,31,["H5414"]],[31,34,["H4181"]]]},{"k":21305,"v":[[0,1,["H3651"]],[1,2,["H559"]],[2,3,["H413"]],[3,5,["H3541"]],[5,6,["H559"]],[6,8,["H136"]],[8,9,["H3069"]],[9,11,["H398"]],[11,12,["H5921"]],[12,14,["H1818"]],[14,17,["H5375"]],[17,19,["H5869"]],[19,20,["H413"]],[20,22,["H1544"]],[22,24,["H8210"]],[24,25,["H1818"]],[25,29,["H3423"]],[29,31,["H776"]]]},{"k":21306,"v":[[0,2,["H5975"]],[2,3,["H5921"]],[3,5,["H2719"]],[5,7,["H6213"]],[7,8,["H8441"]],[8,11,["H2930"]],[11,13,["H376","(H853)"]],[13,15,["H7453"]],[15,16,["H802"]],[16,20,["H3423"]],[20,22,["H776"]]]},{"k":21307,"v":[[0,1,["H559"]],[1,3,["H3541"]],[3,4,["H413"]],[4,6,["H3541"]],[6,7,["H559"]],[7,9,["H136"]],[9,10,["H3069"]],[10,12,["H589"]],[12,13,["H2416"]],[13,14,["H518","H3808"]],[14,16,["H834"]],[16,20,["H2723"]],[20,22,["H5307"]],[22,25,["H2719"]],[25,28,["H834"]],[28,30,["H5921"]],[30,32,["H6440"]],[32,33,["H7704"]],[33,36,["H5414"]],[36,39,["H2416"]],[39,42,["H398"]],[42,45,["H834"]],[45,49,["H4679"]],[49,53,["H4631"]],[53,55,["H4191"]],[55,58,["H1698"]]]},{"k":21308,"v":[[0,4,["H5414","(H853)"]],[4,6,["H776"]],[6,8,["H8077","H4923"]],[8,11,["H1347"]],[11,14,["H5797"]],[14,16,["H7673"]],[16,19,["H2022"]],[19,21,["H3478"]],[21,24,["H8074"]],[24,26,["H4480","H369"]],[26,29,["H5674"]]]},{"k":21309,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,13,["H5414","(H853)"]],[13,15,["H776"]],[15,17,["H8077","H4923"]],[17,19,["H5921"]],[19,20,["H3605"]],[20,22,["H8441"]],[22,23,["H834"]],[23,26,["H6213"]]]},{"k":21310,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,7,["H1121"]],[7,10,["H5971"]],[10,13,["H1696"]],[13,16,["H681"]],[16,18,["H7023"]],[18,22,["H6607"]],[22,25,["H1004"]],[25,27,["H1696"]],[27,28,["H2297"]],[28,29,["H854"]],[29,30,["H259"]],[30,32,["H376"]],[32,33,["H854"]],[33,35,["H251"]],[35,36,["H559"]],[36,37,["H935"]],[37,40,["H4994"]],[40,42,["H8085"]],[42,43,["H4100"]],[43,46,["H1697"]],[46,49,["H3318"]],[49,50,["H4480","H854"]],[50,52,["H3068"]]]},{"k":21311,"v":[[0,3,["H935"]],[3,4,["H413"]],[4,8,["H5971"]],[8,9,["H3996"]],[9,12,["H3427"]],[12,13,["H6440"]],[13,17,["H5971"]],[17,20,["H8085","(H853)"]],[20,22,["H1697"]],[22,26,["H3808"]],[26,27,["H6213"]],[27,29,["H3588"]],[29,32,["H6310"]],[32,33,["H1992"]],[33,34,["H6213"]],[34,36,["H5690"]],[36,39,["H3820"]],[39,40,["H1980"]],[40,41,["H310"]],[41,43,["H1215"]]]},{"k":21312,"v":[[0,2,["H2009"]],[2,10,["H5690"]],[10,11,["H7892"]],[11,17,["H3303"]],[17,18,["H6963"]],[18,25,["H5059","H3190"]],[25,28,["H8085","(H853)"]],[28,30,["H1697"]],[30,33,["H6213"]],[33,35,["H369"]]]},{"k":21313,"v":[[0,6,["H935"]],[6,7,["H2009"]],[7,10,["H935"]],[10,14,["H3045"]],[14,15,["H3588"]],[15,17,["H5030"]],[17,19,["H1961"]],[19,20,["H8432"]],[20,21,[]]]},{"k":21314,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":21315,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H5012"]],[4,5,["H5921"]],[5,7,["H7462"]],[7,9,["H3478"]],[9,10,["H5012"]],[10,12,["H559"]],[12,13,["H413"]],[13,15,["H3541"]],[15,16,["H559"]],[16,18,["H136"]],[18,19,["H3069"]],[19,22,["H7462"]],[22,23,["H1945"]],[23,27,["H7462"]],[27,29,["H3478"]],[29,30,["H834"]],[30,32,["H1961","H7462"]],[32,35,["H3808"]],[35,37,["H7462"]],[37,38,["H7462"]],[38,40,["H6629"]]]},{"k":21316,"v":[[0,2,["H398","(H853)"]],[2,4,["H2459"]],[4,7,["H3847"]],[7,9,["H854"]],[9,11,["H6785"]],[11,13,["H2076"]],[13,17,["H1277"]],[17,20,["H7462"]],[20,21,["H3808"]],[21,23,["H6629"]]]},{"k":21317,"v":[[0,0,["(H853)"]],[0,2,["H2470"]],[2,5,["H3808"]],[5,6,["H2388"]],[6,7,["H3808"]],[7,10,["H7495"]],[10,14,["H2470"]],[14,15,["H3808"]],[15,19,["H2280"]],[19,23,["H7665"]],[23,24,["H3808"]],[24,28,["H7725"]],[28,33,["H5080"]],[33,34,["H3808"]],[34,37,["H1245"]],[37,41,["H6"]],[41,44,["H2394"]],[44,47,["H6531"]],[47,50,["H7287"]],[50,51,[]]]},{"k":21318,"v":[[0,4,["H6327"]],[4,8,["H4480","H1097"]],[8,9,["H7462"]],[9,12,["H1961"]],[12,13,["H402"]],[13,15,["H3605"]],[15,17,["H2416"]],[17,20,["H7704"]],[20,24,["H6327"]]]},{"k":21319,"v":[[0,2,["H6629"]],[2,3,["H7686"]],[3,5,["H3605"]],[5,7,["H2022"]],[7,9,["H5921"]],[9,10,["H3605"]],[10,11,["H7311"]],[11,12,["H1389"]],[12,15,["H6629"]],[15,17,["H6327"]],[17,18,["H5921"]],[18,19,["H3605"]],[19,21,["H6440"]],[21,24,["H776"]],[24,26,["H369"]],[26,28,["H1875"]],[28,30,["H1245"]],[30,32,[]]]},{"k":21320,"v":[[0,1,["H3651"]],[1,3,["H7462"]],[3,4,["H8085","(H853)"]],[4,6,["H1697"]],[6,9,["H3068"]]]},{"k":21321,"v":[[0,2,["H589"]],[2,3,["H2416"]],[3,4,["H5002"]],[4,6,["H136"]],[6,7,["H3069"]],[7,8,["H518","H3808"]],[8,9,["H3282"]],[9,11,["H6629"]],[11,12,["H1961"]],[12,14,["H957"]],[14,17,["H6629"]],[17,18,["H1961"]],[18,19,["H402"]],[19,21,["H3605"]],[21,22,["H2416"]],[22,25,["H7704"]],[25,29,["H4480","H369"]],[29,30,["H7462"]],[30,31,["H3808"]],[31,34,["H7462"]],[34,35,["H1875","(H853)"]],[35,38,["H6629"]],[38,41,["H7462"]],[41,42,["H7462"]],[42,45,["H7462"]],[45,46,["H3808"]],[46,48,["H6629"]]]},{"k":21322,"v":[[0,1,["H3651"]],[1,4,["H7462"]],[4,5,["H8085"]],[5,7,["H1697"]],[7,10,["H3068"]]]},{"k":21323,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H2009"]],[6,9,["H413"]],[9,11,["H7462"]],[11,15,["H1875","(H853)"]],[15,17,["H6629"]],[17,20,["H4480","H3027"]],[20,25,["H7673"]],[25,27,["H4480","H7462"]],[27,29,["H6629"]],[29,30,["H3808"]],[30,33,["H7462"]],[33,34,["H7462"]],[34,37,["H5750"]],[37,41,["H5337"]],[41,43,["H6629"]],[43,46,["H4480","H6310"]],[46,50,["H3808"]],[50,51,["H1961"]],[51,52,["H402"]],[52,54,[]]]},{"k":21324,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H2009"]],[7,10,["H589"]],[10,13,["H1875","(H853)"]],[13,15,["H6629"]],[15,19,["H1239"]]]},{"k":21325,"v":[[0,3,["H7462"]],[3,5,["H1243"]],[5,7,["H5739"]],[7,10,["H3117"]],[10,13,["H1961"]],[13,14,["H8432"]],[14,16,["H6629"]],[16,19,["H6566"]],[19,20,["H3651"]],[20,24,["H1239","(H853)"]],[24,26,["H6629"]],[26,29,["H5337"]],[29,33,["H4480","H3605"]],[33,34,["H4725"]],[34,35,["H834","H8033"]],[35,39,["H6327"]],[39,42,["H6051"]],[42,44,["H6205"]],[44,45,["H3117"]]]},{"k":21326,"v":[[0,6,["H3318"]],[6,7,["H4480"]],[7,9,["H5971"]],[9,11,["H6908"]],[11,13,["H4480"]],[13,15,["H776"]],[15,18,["H935"]],[18,20,["H413"]],[20,23,["H127"]],[23,25,["H7462"]],[25,27,["H413"]],[27,29,["H2022"]],[29,31,["H3478"]],[31,34,["H650"]],[34,37,["H3605"]],[37,40,["H4186"]],[40,43,["H776"]]]},{"k":21327,"v":[[0,3,["H7462"]],[3,7,["H2896"]],[7,8,["H4829"]],[8,12,["H4791"]],[12,13,["H2022"]],[13,15,["H3478"]],[15,18,["H5116"]],[18,19,["H1961"]],[19,20,["H8033"]],[20,23,["H7257"]],[23,26,["H2896"]],[26,27,["H5116"]],[27,31,["H8082"]],[31,32,["H4829"]],[32,35,["H7462"]],[35,36,["H413"]],[36,38,["H2022"]],[38,40,["H3478"]]]},{"k":21328,"v":[[0,1,["H589"]],[1,3,["H7462"]],[3,5,["H6629"]],[5,7,["H589"]],[7,13,["H7257"]],[13,14,["H5002"]],[14,16,["H136"]],[16,17,["H3069"]]]},{"k":21329,"v":[[0,3,["H1245","(H853)"]],[3,7,["H6"]],[7,10,["H7725"]],[10,15,["H5080"]],[15,19,["H2280"]],[19,23,["H7665"]],[23,26,["H2388"]],[26,30,["H2470"]],[30,34,["H8045"]],[34,36,["H8082"]],[36,39,["H2389"]],[39,42,["H7462"]],[42,45,["H4941"]]]},{"k":21330,"v":[[0,4,["H859"]],[4,7,["H6629"]],[7,8,["H3541"]],[8,9,["H559"]],[9,11,["H136"]],[11,12,["H3069"]],[12,13,["H2009"]],[13,15,["H8199"]],[15,16,["H996"]],[16,17,["H7716"]],[17,19,["H7716"]],[19,22,["H352"]],[22,26,["H6260"]]]},{"k":21331,"v":[[0,5,["H4592"]],[5,6,["H4480"]],[6,11,["H7462"]],[11,13,["H2896"]],[13,14,["H4829"]],[14,19,["H7429"]],[19,22,["H7272"]],[22,24,["H3499"]],[24,27,["H4829"]],[27,31,["H8354"]],[31,34,["H4950"]],[34,35,["H4325"]],[35,39,["H7515"]],[39,41,["H3498"]],[41,44,["H7272"]]]},{"k":21332,"v":[[0,5,["H6629"]],[5,7,["H7462"]],[7,12,["H4823"]],[12,15,["H7272"]],[15,18,["H8354"]],[18,23,["H4833"]],[23,26,["H7272"]]]},{"k":21333,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H413"]],[7,9,["H2009"]],[9,10,["H589"]],[10,14,["H8199"]],[14,15,["H996"]],[15,17,["H1277"]],[17,18,["H7716"]],[18,20,["H996"]],[20,22,["H7330"]],[22,23,["H7716"]]]},{"k":21334,"v":[[0,1,["H3282"]],[1,4,["H1920"]],[4,6,["H6654"]],[6,9,["H3802"]],[9,11,["H5055"]],[11,12,["H3605"]],[12,14,["H2470"]],[14,17,["H7161"]],[17,18,["H5704","H834"]],[18,21,["H6327"]],[21,23,["H413","H2351"]]]},{"k":21335,"v":[[0,4,["H3467"]],[4,6,["H6629"]],[6,10,["H3808"]],[10,11,["H5750"]],[11,12,["H1961"]],[12,14,["H957"]],[14,18,["H8199"]],[18,19,["H996"]],[19,20,["H7716"]],[20,22,["H7716"]]]},{"k":21336,"v":[[0,5,["H6965"]],[5,6,["H259"]],[6,7,["H7462"]],[7,8,["H5921"]],[8,13,["H7462"]],[13,15,["(H853)"]],[15,17,["H5650"]],[17,18,["H1732"]],[18,21,["H7462"]],[21,24,["H1931"]],[24,26,["H1961"]],[26,28,["H7462"]]]},{"k":21337,"v":[[0,2,["H589"]],[2,4,["H3068"]],[4,6,["H1961"]],[6,8,["H430"]],[8,11,["H5650"]],[11,12,["H1732"]],[12,14,["H5387"]],[14,15,["H8432"]],[15,17,["H589"]],[17,19,["H3068"]],[19,21,["H1696"]],[21,22,[]]]},{"k":21338,"v":[[0,4,["H3772"]],[4,8,["H1285"]],[8,10,["H7965"]],[10,15,["H7451"]],[15,16,["H2416"]],[16,18,["H7673"]],[18,20,["H4480"]],[20,22,["H776"]],[22,26,["H3427"]],[26,27,["H983"]],[27,30,["H4057"]],[30,32,["H3462"]],[32,35,["H3293"]]]},{"k":21339,"v":[[0,4,["H5414"]],[4,10,["H5439"]],[10,12,["H1389"]],[12,14,["H1293"]],[14,20,["H1653"]],[20,23,["H3381"]],[23,26,["H6256"]],[26,29,["H1961"]],[29,30,["H1653"]],[30,32,["H1293"]]]},{"k":21340,"v":[[0,3,["H6086"]],[3,6,["H7704"]],[6,8,["H5414","(H853)"]],[8,10,["H6529"]],[10,13,["H776"]],[13,15,["H5414"]],[15,17,["H2981"]],[17,21,["H1961"]],[21,22,["H983"]],[22,23,["H5921"]],[23,25,["H127"]],[25,28,["H3045"]],[28,29,["H3588"]],[29,30,["H589"]],[30,33,["H3068"]],[33,37,["H7665","(H853)"]],[37,39,["H4133"]],[39,42,["H5923"]],[42,44,["H5337"]],[44,49,["H4480","H3027"]],[49,53,["H5647"]],[53,56,[]]]},{"k":21341,"v":[[0,4,["H3808"]],[4,5,["H5750"]],[5,6,["H1961"]],[6,8,["H957"]],[8,11,["H1471"]],[11,12,["H3808"]],[12,15,["H2416"]],[15,18,["H776"]],[18,19,["H398"]],[19,24,["H3427"]],[24,25,["H983"]],[25,27,["H369"]],[27,31,["H2729"]]]},{"k":21342,"v":[[0,5,["H6965"]],[5,9,["H4302"]],[9,11,["H8034"]],[11,15,["H1961"]],[15,16,["H3808"]],[16,17,["H5750"]],[17,18,["H622"]],[18,20,["H7458"]],[20,23,["H776"]],[23,24,["H3808"]],[24,25,["H5375"]],[25,27,["H3639"]],[27,30,["H1471"]],[30,32,["H5750"]]]},{"k":21343,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,8,["H3068"]],[8,10,["H430"]],[10,12,["H854"]],[12,16,["H1992"]],[16,19,["H1004"]],[19,21,["H3478"]],[21,24,["H5971"]],[24,25,["H5002"]],[25,27,["H136"]],[27,28,["H3069"]]]},{"k":21344,"v":[[0,2,["H859"]],[2,4,["H6629"]],[4,6,["H6629"]],[6,9,["H4830"]],[9,11,["H120"]],[11,13,["H589"]],[13,16,["H430"]],[16,17,["H5002"]],[17,19,["H136"]],[19,20,["H3069"]]]},{"k":21345,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":21346,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H7760"]],[4,6,["H6440"]],[6,7,["H5921"]],[7,8,["H2022"]],[8,9,["H8165"]],[9,11,["H5012"]],[11,12,["H5921"]],[12,13,[]]]},{"k":21347,"v":[[0,2,["H559"]],[2,5,["H3541"]],[5,6,["H559"]],[6,8,["H136"]],[8,9,["H3069"]],[9,10,["H2009"]],[10,12,["H2022"]],[12,13,["H8165"]],[13,16,["H413"]],[16,22,["H5186"]],[22,24,["H3027"]],[24,25,["H5921"]],[25,30,["H5414"]],[30,33,["H8077","H4923"]]]},{"k":21348,"v":[[0,3,["H7760"]],[3,5,["H5892"]],[5,6,["H2723"]],[6,8,["H859"]],[8,10,["H1961"]],[10,11,["H8077"]],[11,15,["H3045"]],[15,16,["H3588"]],[16,17,["H589"]],[17,20,["H3068"]]]},{"k":21349,"v":[[0,1,["H3282"]],[1,4,["H1961"]],[4,6,["H5769"]],[6,7,["H342"]],[7,10,["H5064"]],[10,13,["(H853)"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,18,["H5921"]],[18,20,["H3027"]],[20,23,["H2719"]],[23,26,["H6256"]],[26,29,["H343"]],[29,32,["H6256"]],[32,35,["H5771"]],[35,38,["H7093"]]]},{"k":21350,"v":[[0,1,["H3651"]],[1,3,["H589"]],[3,4,["H2416"]],[4,5,["H5002"]],[5,7,["H136"]],[7,8,["H3069"]],[8,11,["H6213"]],[11,14,["H1818"]],[14,16,["H1818"]],[16,18,["H7291"]],[18,20,["H518"]],[20,23,["H3808"]],[23,24,["H8130"]],[24,25,["H1818"]],[25,27,["H1818"]],[27,29,["H7291"]],[29,30,[]]]},{"k":21351,"v":[[0,4,["H5414","(H853)"]],[4,5,["H2022"]],[5,6,["H8165"]],[6,8,["H8077","H8077"]],[8,11,["H3772"]],[11,12,["H4480"]],[12,17,["H5674"]],[17,21,["H7725"]]]},{"k":21352,"v":[[0,4,["H4390","(H853)"]],[4,6,["H2022"]],[6,9,["H2491"]],[9,13,["H1389"]],[13,17,["H1516"]],[17,20,["H3605"]],[20,22,["H650"]],[22,25,["H5307"]],[25,28,["H2491"]],[28,31,["H2719"]]]},{"k":21353,"v":[[0,3,["H5414"]],[3,5,["H5769"]],[5,6,["H8077"]],[6,9,["H5892"]],[9,11,["H3808"]],[11,12,["H3427"]],[12,16,["H3045"]],[16,17,["H3588"]],[17,18,["H589"]],[18,21,["H3068"]]]},{"k":21354,"v":[[0,1,["H3282"]],[1,4,["H559","(H853)"]],[4,6,["H8147"]],[6,7,["H1471"]],[7,10,["H8147"]],[10,11,["H776"]],[11,13,["H1961"]],[13,18,["H3423"]],[18,22,["H3068"]],[22,23,["H1961"]],[23,24,["H8033"]]]},{"k":21355,"v":[[0,1,["H3651"]],[1,3,["H589"]],[3,4,["H2416"]],[4,5,["H5002"]],[5,7,["H136"]],[7,8,["H3069"]],[8,12,["H6213"]],[12,16,["H639"]],[16,21,["H7068"]],[21,22,["H834"]],[22,25,["H6213"]],[25,29,["H4480","H8135"]],[29,37,["H3045"]],[37,40,["H834"]],[40,43,["H8199"]],[43,44,[]]]},{"k":21356,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,14,["H8085","(H853)"]],[14,15,["H3605"]],[15,17,["H5007"]],[17,18,["H834"]],[18,21,["H559"]],[21,22,["H5921"]],[22,24,["H2022"]],[24,26,["H3478"]],[26,27,["H559"]],[27,31,["H8074"]],[31,34,["H5414"]],[34,37,["H402"]]]},{"k":21357,"v":[[0,4,["H6310"]],[4,7,["H1431"]],[7,8,["H5921"]],[8,12,["H6280"]],[12,14,["H1697"]],[14,15,["H5921"]],[15,17,["H589"]],[17,19,["H8085"]],[19,20,[]]]},{"k":21358,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,8,["H3605"]],[8,9,["H776"]],[9,10,["H8055"]],[10,13,["H6213"]],[13,15,["H8077"]]]},{"k":21359,"v":[[0,4,["H8057"]],[4,7,["H5159"]],[7,10,["H1004"]],[10,12,["H3478"]],[12,13,["H5921","H834"]],[13,16,["H8074"]],[16,17,["H3651"]],[17,20,["H6213"]],[20,25,["H1961"]],[25,26,["H8077"]],[26,28,["H2022"]],[28,29,["H8165"]],[29,31,["H3605"]],[31,32,["H123"]],[32,34,["H3605"]],[34,40,["H3045"]],[40,41,["H3588"]],[41,42,["H589"]],[42,45,["H3068"]]]},{"k":21360,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H5012"]],[6,7,["H413"]],[7,9,["H2022"]],[9,11,["H3478"]],[11,13,["H559"]],[13,15,["H2022"]],[15,17,["H3478"]],[17,18,["H8085"]],[18,20,["H1697"]],[20,23,["H3068"]]]},{"k":21361,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H3282"]],[6,8,["H341"]],[8,10,["H559"]],[10,11,["H5921"]],[11,13,["H1889"]],[13,16,["H5769"]],[16,18,["H1116"]],[18,19,["H1961"]],[19,22,["H4181"]]]},{"k":21362,"v":[[0,1,["H3651"]],[1,2,["H5012"]],[2,4,["H559"]],[4,5,["H3541"]],[5,6,["H559"]],[6,8,["H136"]],[8,9,["H3069"]],[9,10,["H3282","H3282"]],[10,15,["H8074"]],[15,19,["H7602","(H853)"]],[19,22,["H4480","H5439"]],[22,26,["H1961"]],[26,28,["H4181"]],[28,31,["H7611"]],[31,34,["H1471"]],[34,39,["H5927"]],[39,40,["H5921"]],[40,42,["H8193"]],[42,44,["H3956"]],[44,48,["H1681"]],[48,51,["H5971"]]]},{"k":21363,"v":[[0,1,["H3651"]],[1,3,["H2022"]],[3,5,["H3478"]],[5,6,["H8085"]],[6,8,["H1697"]],[8,11,["H136"]],[11,12,["H3069"]],[12,13,["H3541"]],[13,14,["H559"]],[14,16,["H136"]],[16,17,["H3069"]],[17,20,["H2022"]],[20,24,["H1389"]],[24,27,["H650"]],[27,31,["H1516"]],[31,34,["H8074"]],[34,35,["H2723"]],[35,39,["H5892"]],[39,42,["H5800"]],[42,43,["H834"]],[43,44,["H1961"]],[44,46,["H957"]],[46,48,["H3933"]],[48,51,["H7611"]],[51,54,["H1471"]],[54,55,["H834"]],[55,58,["H4480","H5439"]]]},{"k":21364,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H518","H3808"]],[7,10,["H784"]],[10,13,["H7068"]],[13,16,["H1696"]],[16,17,["H5921"]],[17,19,["H7611"]],[19,22,["H1471"]],[22,24,["H5921"]],[24,25,["H3605"]],[25,26,["H123"]],[26,27,["H834"]],[27,29,["H5414","(H853)"]],[29,31,["H776"]],[31,34,["H4181"]],[34,37,["H8057"]],[37,39,["H3605"]],[39,41,["H3824"]],[41,43,["H7589"]],[43,44,["H5315"]],[44,45,["H4616"]],[45,48,["H1644"]],[48,51,["H957"]]]},{"k":21365,"v":[[0,1,["H5012"]],[1,2,["H3651"]],[2,3,["H5921"]],[3,5,["H127"]],[5,7,["H3478"]],[7,9,["H559"]],[9,12,["H2022"]],[12,16,["H1389"]],[16,19,["H650"]],[19,23,["H1516"]],[23,24,["H3541"]],[24,25,["H559"]],[25,27,["H136"]],[27,28,["H3069"]],[28,29,["H2009"]],[29,32,["H1696"]],[32,35,["H7068"]],[35,39,["H2534"]],[39,40,["H3282"]],[40,43,["H5375"]],[43,45,["H3639"]],[45,48,["H1471"]]]},{"k":21366,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H589"]],[7,10,["H5375","(H853)"]],[10,12,["H3027"]],[12,13,["H518","H3808"]],[13,15,["H1471"]],[15,16,["H834"]],[16,18,["H4480","H5439"]],[18,20,["H1992"]],[20,22,["H5375"]],[22,24,["H3639"]]]},{"k":21367,"v":[[0,2,["H859"]],[2,4,["H2022"]],[4,6,["H3478"]],[6,10,["H5414"]],[10,12,["H6057"]],[12,14,["H5375"]],[14,16,["H6529"]],[16,19,["H5971"]],[19,21,["H3478"]],[21,22,["H3588"]],[22,26,["H7126"]],[26,28,["H935"]]]},{"k":21368,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,5,["H413"]],[5,10,["H6437"]],[10,11,["H413"]],[11,17,["H5647"]],[17,19,["H2232"]]]},{"k":21369,"v":[[0,4,["H7235"]],[4,5,["H120"]],[5,6,["H5921"]],[6,8,["H3605"]],[8,10,["H1004"]],[10,12,["H3478"]],[12,14,["H3605"]],[14,19,["H5892"]],[19,22,["H3427"]],[22,25,["H2723"]],[25,28,["H1129"]]]},{"k":21370,"v":[[0,4,["H7235"]],[4,5,["H5921"]],[5,7,["H120"]],[7,9,["H929"]],[9,13,["H7235"]],[13,16,["H6509"]],[16,20,["H3427"]],[20,25,["H6927"]],[25,29,["H3190"]],[29,35,["H4480","H7221"]],[35,39,["H3045"]],[39,40,["H3588"]],[40,41,["H589"]],[41,44,["H3068"]]]},{"k":21371,"v":[[0,5,["H120"]],[5,7,["H1980"]],[7,8,["H5921"]],[8,10,["(H853)"]],[10,12,["H5971"]],[12,13,["H3478"]],[13,17,["H3423"]],[17,22,["H1961"]],[22,24,["H5159"]],[24,28,["H3808"]],[28,29,["H3254"]],[29,30,["H5750"]],[30,31,["H7921"]],[31,34,[]]]},{"k":21372,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H3282"]],[6,8,["H559"]],[8,11,["H859"]],[11,14,["H398"]],[14,15,["H120"]],[15,18,["H1961","H7921"]],[18,20,["H1471"]]]},{"k":21373,"v":[[0,1,["H3651"]],[1,4,["H398"]],[4,5,["H120"]],[5,6,["H3808"]],[6,7,["H5750"]],[7,8,["H3808"]],[8,9,["H7921"]],[9,11,["H1471"]],[11,13,["H5750"]],[13,14,["H5002"]],[14,16,["H136"]],[16,17,["H3069"]]]},{"k":21374,"v":[[0,1,["H3808"]],[1,7,["H8085"]],[7,8,["H413"]],[8,11,["H3639"]],[11,14,["H1471"]],[14,16,["H5750"]],[16,17,["H3808"]],[17,20,["H5375"]],[20,22,["H2781"]],[22,25,["H5971"]],[25,27,["H5750"]],[27,28,["H3808"]],[28,33,["H1471"]],[33,35,["H3782"]],[35,37,["H5750"]],[37,38,["H5002"]],[38,40,["H136"]],[40,41,["H3069"]]]},{"k":21375,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":21376,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,6,["H1004"]],[6,8,["H3478"]],[8,9,["H3427"]],[9,10,["H5921"]],[10,13,["H127"]],[13,15,["H2930"]],[15,20,["H1870"]],[20,24,["H5949"]],[24,26,["H1870"]],[26,27,["H1961"]],[27,28,["H6440"]],[28,32,["H2932"]],[32,36,["H5079"]]]},{"k":21377,"v":[[0,3,["H8210"]],[3,5,["H2534"]],[5,6,["H5921"]],[6,8,["H5921"]],[8,10,["H1818"]],[10,11,["H834"]],[11,14,["H8210"]],[14,15,["H5921"]],[15,17,["H776"]],[17,21,["H1544"]],[21,25,["H2930"]],[25,26,[]]]},{"k":21378,"v":[[0,3,["H6327"]],[3,7,["H1471"]],[7,11,["H2219"]],[11,14,["H776"]],[14,18,["H1870"]],[18,23,["H5949"]],[23,25,["H8199"]],[25,26,[]]]},{"k":21379,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,7,["H1471"]],[7,8,["H834","H8033"]],[8,10,["H935"]],[10,12,["H2490","(H853)"]],[12,14,["H6944"]],[14,15,["H8034"]],[15,18,["H559"]],[18,21,["H428"]],[21,24,["H5971"]],[24,27,["H3068"]],[27,31,["H3318"]],[31,35,["H4480","H776"]]]},{"k":21380,"v":[[0,4,["H2550"]],[4,5,["H5921"]],[5,7,["H6944"]],[7,8,["H8034"]],[8,9,["H834"]],[9,11,["H1004"]],[11,13,["H3478"]],[13,15,["H2490"]],[15,18,["H1471"]],[18,19,["H834","H8033"]],[19,21,["H935"]]]},{"k":21381,"v":[[0,1,["H3651"]],[1,2,["H559"]],[2,5,["H1004"]],[5,7,["H3478"]],[7,8,["H3541"]],[8,9,["H559"]],[9,11,["H136"]],[11,12,["H3069"]],[12,13,["H589"]],[13,14,["H6213"]],[14,15,["H3808"]],[15,19,["H4616"]],[19,21,["H1004"]],[21,23,["H3478"]],[23,24,["H3588","H518"]],[24,27,["H6944"]],[27,28,["H8034"]],[28,30,["H834"]],[30,33,["H2490"]],[33,36,["H1471"]],[36,37,["H834","H8033"]],[37,39,["H935"]]]},{"k":21382,"v":[[0,4,["H6942","(H853)"]],[4,6,["H1419"]],[6,7,["H8034"]],[7,10,["H2490"]],[10,13,["H1471"]],[13,14,["H834"]],[14,17,["H2490"]],[17,20,["H8432"]],[20,25,["H1471"]],[25,27,["H3045"]],[27,28,["H3588"]],[28,29,["H589"]],[29,32,["H3068"]],[32,33,["H5002"]],[33,35,["H136"]],[35,36,["H3069"]],[36,41,["H6942"]],[41,46,["H5869"]]]},{"k":21383,"v":[[0,4,["H3947"]],[4,7,["H4480"]],[7,9,["H1471"]],[9,11,["H6908"]],[11,15,["H4480","H3605"]],[15,16,["H776"]],[16,19,["H935"]],[19,21,["H413"]],[21,24,["H127"]]]},{"k":21384,"v":[[0,4,["H2236"]],[4,5,["H2889"]],[5,6,["H4325"]],[6,7,["H5921"]],[7,13,["H2891"]],[13,15,["H4480","H3605"]],[15,17,["H2932"]],[17,20,["H4480","H3605"]],[20,22,["H1544"]],[22,25,["H2891"]],[25,26,[]]]},{"k":21385,"v":[[0,2,["H2319"]],[2,3,["H3820"]],[3,7,["H5414"]],[7,11,["H2319"]],[11,12,["H7307"]],[12,15,["H5414"]],[15,16,["H7130"]],[16,22,["H5493","(H853)"]],[22,24,["H68"]],[24,25,["H3820"]],[25,29,["H4480","H1320"]],[29,33,["H5414"]],[33,36,["H3820"]],[36,38,["H1320"]]]},{"k":21386,"v":[[0,4,["H5414"]],[4,6,["H7307"]],[6,7,["H7130"]],[7,10,["H6213"]],[10,13,["H1980"]],[13,14,["H854"]],[14,16,["H2706"]],[16,20,["H8104"]],[20,22,["H4941"]],[22,24,["H6213"]],[24,25,[]]]},{"k":21387,"v":[[0,4,["H3427"]],[4,7,["H776"]],[7,8,["H834"]],[8,10,["H5414"]],[10,13,["H1"]],[13,17,["H1961"]],[17,19,["H5971"]],[19,21,["H595"]],[21,23,["H1961"]],[23,25,["H430"]]]},{"k":21388,"v":[[0,4,["H3467"]],[4,7,["H4480","H3605"]],[7,9,["H2932"]],[9,13,["H7121"]],[13,14,["H413"]],[14,16,["H1715"]],[16,19,["H7235"]],[19,22,["H5414"]],[22,23,["H3808"]],[23,24,["H7458"]],[24,25,["H5921"]],[25,26,[]]]},{"k":21389,"v":[[0,4,["H7235","(H853)"]],[4,6,["H6529"]],[6,9,["H6086"]],[9,12,["H8570"]],[12,15,["H7704"]],[15,16,["H4616","H834"]],[16,19,["H3947"]],[19,20,["H3808"]],[20,21,["H5750"]],[21,22,["H2781"]],[22,24,["H7458"]],[24,27,["H1471"]]]},{"k":21390,"v":[[0,4,["H2142","(H853)"]],[4,7,["H7451"]],[7,8,["H1870"]],[8,11,["H4611"]],[11,12,["H834"]],[12,14,["H3808"]],[14,15,["H2896"]],[15,19,["H6962"]],[19,23,["H6440"]],[23,24,["H5921"]],[24,26,["H5771"]],[26,28,["H5921"]],[28,30,["H8441"]]]},{"k":21391,"v":[[0,1,["H3808"]],[1,4,["H4616"]],[4,5,["H6213"]],[5,6,["H589"]],[6,8,["H5002"]],[8,10,["H136"]],[10,11,["H3069"]],[11,14,["H3045"]],[14,18,["H954"]],[18,20,["H3637"]],[20,24,["H4480","H1870"]],[24,26,["H1004"]],[26,28,["H3478"]]]},{"k":21392,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,8,["H3117"]],[8,13,["H2891"]],[13,16,["H4480","H3605"]],[16,18,["H5771"]],[18,25,["H3427","(H853)"]],[25,28,["H5892"]],[28,31,["H2723"]],[31,34,["H1129"]]]},{"k":21393,"v":[[0,3,["H8074"]],[3,4,["H776"]],[4,7,["H5647"]],[7,8,["H8478","H834"]],[8,10,["H1961"]],[10,11,["H8077"]],[11,14,["H5869"]],[14,16,["H3605"]],[16,19,["H5674"]]]},{"k":21394,"v":[[0,4,["H559"]],[4,5,["H1977"]],[5,6,["H776"]],[6,9,["H8074"]],[9,11,["H1961"]],[11,14,["H1588"]],[14,16,["H5731"]],[16,19,["H2720"]],[19,21,["H8074"]],[21,23,["H2040"]],[23,24,["H5892"]],[24,27,["H1219"]],[27,30,["H3427"]]]},{"k":21395,"v":[[0,3,["H1471"]],[3,4,["H834"]],[4,6,["H7604"]],[6,8,["H5439"]],[8,11,["H3045"]],[11,12,["H3588"]],[12,13,["H589"]],[13,15,["H3068"]],[15,16,["H1129"]],[16,18,["H2040"]],[18,21,["H5193"]],[21,25,["H8074"]],[25,26,["H589"]],[26,28,["H3068"]],[28,30,["H1696"]],[30,35,["H6213"]],[35,36,[]]]},{"k":21396,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,8,["H5750"]],[8,10,["H2063"]],[10,13,["H1875"]],[13,16,["H1004"]],[16,18,["H3478"]],[18,20,["H6213"]],[20,26,["H7235"]],[26,29,["H120"]],[29,32,["H6629"]]]},{"k":21397,"v":[[0,3,["H6944"]],[3,4,["H6629"]],[4,7,["H6629"]],[7,9,["H3389"]],[9,13,["H4150"]],[13,14,["H3651"]],[14,17,["H2720"]],[17,18,["H5892"]],[18,19,["H1961"]],[19,20,["H4392"]],[20,22,["H6629"]],[22,24,["H120"]],[24,28,["H3045"]],[28,29,["H3588"]],[29,30,["H589"]],[30,33,["H3068"]]]},{"k":21398,"v":[[0,2,["H3027"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,7,["H5921"]],[7,12,["H3318"]],[12,15,["H7307"]],[15,18,["H3068"]],[18,22,["H5117"]],[22,25,["H8432"]],[25,28,["H1237"]],[28,29,["H1931"]],[29,31,["H4392"]],[31,33,["H6106"]]]},{"k":21399,"v":[[0,5,["H5674"]],[5,6,["H5921"]],[6,9,["H5439","H5439"]],[9,11,["H2009"]],[11,14,["H3966"]],[14,15,["H7227"]],[15,16,["H5921"]],[16,18,["H6440"]],[18,19,["H1237"]],[19,21,["H2009"]],[21,24,["H3966"]],[24,25,["H3002"]]]},{"k":21400,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,10,["H428"]],[10,11,["H6106"]],[11,12,["H2421"]],[12,15,["H559"]],[15,17,["H136"]],[17,18,["H3069"]],[18,19,["H859"]],[19,20,["H3045"]]]},{"k":21401,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H5012"]],[6,7,["H5921"]],[7,8,["H428"]],[8,9,["H6106"]],[9,11,["H559"]],[11,12,["H413"]],[12,16,["H3002"]],[16,17,["H6106"]],[17,18,["H8085"]],[18,20,["H1697"]],[20,23,["H3068"]]]},{"k":21402,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,7,["H428"]],[7,8,["H6106"]],[8,9,["H2009"]],[9,10,["H589"]],[10,13,["H7307"]],[13,15,["H935"]],[15,21,["H2421"]]]},{"k":21403,"v":[[0,4,["H5414"]],[4,5,["H1517"]],[5,6,["H5921"]],[6,11,["H5927"]],[11,12,["H1320"]],[12,13,["H5921"]],[13,16,["H7159","H5921"]],[16,19,["H5785"]],[19,21,["H5414"]],[21,22,["H7307"]],[22,28,["H2421"]],[28,32,["H3045"]],[32,33,["H3588"]],[33,34,["H589"]],[34,37,["H3068"]]]},{"k":21404,"v":[[0,3,["H5012"]],[3,4,["H834"]],[4,7,["H6680"]],[7,11,["H5012"]],[11,13,["H1961"]],[13,15,["H6963"]],[15,17,["H2009"]],[17,19,["H7494"]],[19,22,["H6106"]],[22,24,["H7126"]],[24,25,["H6106"]],[25,26,["H413"]],[26,28,["H6106"]]]},{"k":21405,"v":[[0,4,["H7200"]],[4,5,["H2009"]],[5,7,["H1517"]],[7,10,["H1320"]],[10,12,["H5927"]],[12,13,["H5921"]],[13,17,["H5785"]],[17,18,["H7159","H5921"]],[18,20,["H4605"]],[20,24,["H369"]],[24,25,["H7307"]],[25,27,[]]]},{"k":21406,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H5012"]],[6,7,["H413"]],[7,9,["H7307"]],[9,10,["H5012"]],[10,11,["H1121"]],[11,13,["H120"]],[13,15,["H559"]],[15,16,["H413"]],[16,18,["H7307"]],[18,19,["H3541"]],[19,20,["H559"]],[20,22,["H136"]],[22,23,["H3069"]],[23,24,["H935"]],[24,27,["H4480","H702"]],[27,28,["H7307"]],[28,30,["H7307"]],[30,32,["H5301"]],[32,34,["H428"]],[34,35,["H2026"]],[35,39,["H2421"]]]},{"k":21407,"v":[[0,3,["H5012"]],[3,4,["H834"]],[4,6,["H6680"]],[6,10,["H7307"]],[10,11,["H935"]],[11,16,["H2421"]],[16,19,["H5975"]],[19,20,["H5921"]],[20,22,["H7272"]],[22,24,["H3966","H3966"]],[24,25,["H1419"]],[25,26,["H2428"]]]},{"k":21408,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H428"]],[9,10,["H6106"]],[10,13,["H3605"]],[13,14,["H1004"]],[14,16,["H3478"]],[16,17,["H2009"]],[17,19,["H559"]],[19,21,["H6106"]],[21,23,["H3001"]],[23,26,["H8615"]],[26,28,["H6"]],[28,32,["H1504"]],[32,35,[]]]},{"k":21409,"v":[[0,1,["H3651"]],[1,2,["H5012"]],[2,4,["H559"]],[4,5,["H413"]],[5,7,["H3541"]],[7,8,["H559"]],[8,10,["H136"]],[10,11,["H3069"]],[11,12,["H2009"]],[12,15,["H5971"]],[15,16,["H589"]],[16,18,["H6605","(H853)"]],[18,20,["H6913"]],[20,26,["H5927"]],[26,30,["H4480","H6913"]],[30,32,["H935"]],[32,34,["H413"]],[34,36,["H127"]],[36,38,["H3478"]]]},{"k":21410,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,13,["H6605","(H853)"]],[13,15,["H6913"]],[15,18,["H5971"]],[18,22,["H5927","(H853)"]],[22,26,["H4480","H6913"]]]},{"k":21411,"v":[[0,3,["H5414"]],[3,5,["H7307"]],[5,11,["H2421"]],[11,15,["H5117"]],[15,17,["H5921"]],[17,20,["H127"]],[20,24,["H3045"]],[24,25,["H3588"]],[25,26,["H589"]],[26,28,["H3068"]],[28,30,["H1696"]],[30,33,["H6213"]],[33,35,["H5002"]],[35,37,["H3068"]]]},{"k":21412,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H1961"]],[6,8,["H413"]],[8,10,["H559"]]]},{"k":21413,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H3947"]],[6,8,["H259"]],[8,9,["H6086"]],[9,11,["H3789"]],[11,12,["H5921"]],[12,15,["H3063"]],[15,19,["H1121"]],[19,21,["H3478"]],[21,23,["H2270"]],[23,25,["H3947"]],[25,26,["H259"]],[26,27,["H6086"]],[27,29,["H3789"]],[29,30,["H5921"]],[30,33,["H3130"]],[33,35,["H6086"]],[35,37,["H669"]],[37,40,["H3605"]],[40,42,["H1004"]],[42,44,["H3478"]],[44,46,["H2270"]]]},{"k":21414,"v":[[0,2,["H7126"]],[2,4,["H259"]],[4,5,["H413"]],[5,6,["H259"]],[6,8,["H259"]],[8,9,["H6086"]],[9,13,["H1961"]],[13,14,["H259"]],[14,17,["H3027"]]]},{"k":21415,"v":[[0,2,["H834"]],[2,4,["H1121"]],[4,7,["H5971"]],[7,9,["H559"]],[9,10,["H413"]],[10,12,["H559"]],[12,15,["H3808"]],[15,16,["H5046"]],[16,18,["H4100"]],[18,22,["H428"]]]},{"k":21416,"v":[[0,1,["H1696"]],[1,2,["H413"]],[2,4,["H3541"]],[4,5,["H559"]],[5,7,["H136"]],[7,8,["H3069"]],[8,9,["H2009"]],[9,10,["H589"]],[10,12,["H3947","(H853)"]],[12,14,["H6086"]],[14,16,["H3130"]],[16,17,["H834"]],[17,21,["H3027"]],[21,23,["H669"]],[23,26,["H7626"]],[26,28,["H3478"]],[28,30,["H2270"]],[30,33,["H5414"]],[33,35,["H5921"]],[35,38,["H854"]],[38,40,["H6086"]],[40,42,["H3063"]],[42,44,["H6213"]],[44,46,["H259"]],[46,47,["H6086"]],[47,51,["H1961"]],[51,52,["H259"]],[52,55,["H3027"]]]},{"k":21417,"v":[[0,3,["H6086"]],[3,4,["H834","H5921"]],[4,6,["H3789"]],[6,8,["H1961"]],[8,11,["H3027"]],[11,14,["H5869"]]]},{"k":21418,"v":[[0,2,["H1696"]],[2,3,["H413"]],[3,5,["H3541"]],[5,6,["H559"]],[6,8,["H136"]],[8,9,["H3069"]],[9,10,["H2009"]],[10,11,["H589"]],[11,13,["H3947","(H853)"]],[13,15,["H1121"]],[15,17,["H3478"]],[17,19,["H4480","H996"]],[19,21,["H1471"]],[21,22,["H834","H8033"]],[22,25,["H1980"]],[25,28,["H6908"]],[28,32,["H4480","H5439"]],[32,34,["H935"]],[34,36,["H413"]],[36,39,["H127"]]]},{"k":21419,"v":[[0,4,["H6213"]],[4,6,["H259"]],[6,7,["H1471"]],[7,10,["H776"]],[10,13,["H2022"]],[13,15,["H3478"]],[15,17,["H259"]],[17,18,["H4428"]],[18,20,["H1961"]],[20,21,["H4428"]],[21,24,["H3605"]],[24,28,["H1961"]],[28,29,["H3808"]],[29,30,["H5750"]],[30,31,["H8147"]],[31,32,["H1471"]],[32,33,["H3808"]],[33,37,["H2673"]],[37,39,["H8147"]],[39,40,["H4467"]],[40,44,["H5750","H5750"]]]},{"k":21420,"v":[[0,1,["H3808"]],[1,4,["H2930"]],[4,7,["H5750"]],[7,10,["H1544"]],[10,15,["H8251"]],[15,18,["H3605"]],[18,21,["H6588"]],[21,25,["H3467"]],[25,29,["H4480","H3605"]],[29,31,["H4186"]],[31,32,["H834"]],[32,35,["H2398"]],[35,38,["H2891"]],[38,43,["H1961"]],[43,45,["H5971"]],[45,47,["H589"]],[47,49,["H1961"]],[49,51,["H430"]]]},{"k":21421,"v":[[0,2,["H1732"]],[2,4,["H5650"]],[4,7,["H4428"]],[7,8,["H5921"]],[8,12,["H3605"]],[12,14,["H1961"]],[14,15,["H259"]],[15,16,["H7462"]],[16,20,["H1980"]],[20,23,["H4941"]],[23,25,["H8104"]],[25,27,["H2708"]],[27,29,["H6213"]],[29,30,[]]]},{"k":21422,"v":[[0,4,["H3427"]],[4,5,["H5921"]],[5,7,["H776"]],[7,8,["H834"]],[8,11,["H5414"]],[11,13,["H3290"]],[13,15,["H5650"]],[15,16,["H834"]],[16,18,["H1"]],[18,20,["H3427"]],[20,24,["H3427"]],[24,25,["H5921"]],[25,27,["H1992"]],[27,30,["H1121"]],[30,33,["H1121"]],[33,34,["H1121"]],[34,36,["H5769"]],[36,39,["H5650"]],[39,40,["H1732"]],[40,44,["H5387"]],[44,46,["H5769"]]]},{"k":21423,"v":[[0,4,["H3772"]],[4,6,["H1285"]],[6,8,["H7965"]],[8,13,["H1961"]],[13,15,["H5769"]],[15,16,["H1285"]],[16,17,["H854"]],[17,22,["H5414"]],[22,25,["H7235"]],[25,29,["H5414"]],[29,31,["H4720"]],[31,34,["H8432"]],[34,38,["H5769"]]]},{"k":21424,"v":[[0,2,["H4908"]],[2,5,["H1961"]],[5,6,["H5921"]],[6,11,["H1961"]],[11,13,["H430"]],[13,15,["H1992"]],[15,17,["H1961"]],[17,19,["H5971"]]]},{"k":21425,"v":[[0,3,["H1471"]],[3,5,["H3045"]],[5,6,["H3588"]],[6,7,["H589"]],[7,9,["H3068"]],[9,11,["H6942","(H853)"]],[11,12,["H3478"]],[12,15,["H4720"]],[15,17,["H1961"]],[17,20,["H8432"]],[20,24,["H5769"]]]},{"k":21426,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,9,["H413"]],[9,10,["H559"]]]},{"k":21427,"v":[[0,1,["H1121"]],[1,3,["H120"]],[3,4,["H7760"]],[4,6,["H6440"]],[6,7,["H413"]],[7,8,["H1463"]],[8,10,["H776"]],[10,12,["H4031"]],[12,14,["H7218"]],[14,15,["H5387"]],[15,17,["H4902"]],[17,19,["H8422"]],[19,21,["H5012"]],[21,22,["H5921"]],[22,23,[]]]},{"k":21428,"v":[[0,2,["H559"]],[2,3,["H3541"]],[3,4,["H559"]],[4,6,["H136"]],[6,7,["H3069"]],[7,8,["H2009"]],[8,11,["H413"]],[11,14,["H1463"]],[14,16,["H7218"]],[16,17,["H5387"]],[17,19,["H4902"]],[19,21,["H8422"]]]},{"k":21429,"v":[[0,6,["H7725"]],[6,8,["H5414"]],[8,9,["H2397"]],[9,12,["H3895"]],[12,18,["H3318","(H853)"]],[18,20,["H3605"]],[20,22,["H2428"]],[22,23,["H5483"]],[23,25,["H6571"]],[25,26,["H3605"]],[26,29,["H3847"]],[29,32,["H4358"]],[32,37,["H7227"]],[37,38,["H6951"]],[38,40,["H6793"]],[40,42,["H4043"]],[42,43,["H3605"]],[43,46,["H8610"]],[46,47,["H2719"]]]},{"k":21430,"v":[[0,1,["H6539"]],[1,2,["H3568"]],[2,4,["H6316"]],[4,5,["H854"]],[5,7,["H3605"]],[7,11,["H4043"]],[11,13,["H3553"]]]},{"k":21431,"v":[[0,1,["H1586"]],[1,3,["H3605"]],[3,5,["H102"]],[5,7,["H1004"]],[7,9,["H8425"]],[9,12,["H6828"]],[12,13,["H3411"]],[13,15,["H3605"]],[15,17,["H102"]],[17,19,["H7227"]],[19,20,["H5971"]],[20,21,["H854"]],[21,22,[]]]},{"k":21432,"v":[[0,3,["H3559"]],[3,5,["H3559"]],[5,8,["H859"]],[8,10,["H3605"]],[10,12,["H6951"]],[12,15,["H6950"]],[15,16,["H5921"]],[16,19,["H1961"]],[19,22,["H4929"]],[22,24,[]]]},{"k":21433,"v":[[0,2,["H7227"]],[2,3,["H4480","H3117"]],[3,7,["H6485"]],[7,10,["H319"]],[10,11,["H8141"]],[11,14,["H935"]],[14,15,["H413"]],[15,17,["H776"]],[17,21,["H7725"]],[21,24,["H4480","H2719"]],[24,27,["H6908"]],[27,30,["H7227"]],[30,31,["H4480","H5971"]],[31,32,["H5921"]],[32,34,["H2022"]],[34,36,["H3478"]],[36,37,["H834"]],[37,39,["H1961"]],[39,40,["H8548"]],[40,41,["H2723"]],[41,43,["H1931"]],[43,46,["H3318"]],[46,50,["H4480","H5971"]],[50,54,["H3427"]],[54,55,["H983"]],[55,56,["H3605"]],[56,58,[]]]},{"k":21434,"v":[[0,3,["H5927"]],[3,5,["H935"]],[5,8,["H7722"]],[8,11,["H1961"]],[11,14,["H6051"]],[14,16,["H3680"]],[16,18,["H776"]],[18,19,["H859"]],[19,21,["H3605"]],[21,23,["H102"]],[23,25,["H7227"]],[25,26,["H5971"]],[26,27,["H854"]],[27,28,[]]]},{"k":21435,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,11,["H1961"]],[11,15,["H1931"]],[15,16,["H3117"]],[16,18,["H1697"]],[18,19,["H5927"]],[19,20,["H5921"]],[20,22,["H3824"]],[22,26,["H2803"]],[26,28,["H7451"]],[28,29,["H4284"]]]},{"k":21436,"v":[[0,4,["H559"]],[4,8,["H5927"]],[8,9,["H5921"]],[9,11,["H776"]],[11,14,["H6519"]],[14,17,["H935"]],[17,23,["H8252"]],[23,25,["H3427"]],[25,26,["H983"]],[26,27,["H3605"]],[27,30,["H3427"]],[30,31,["H369"]],[31,32,["H2346"]],[32,35,["H369"]],[35,36,["H1280"]],[36,38,["H1817"]]]},{"k":21437,"v":[[0,2,["H7997"]],[2,4,["H7998"]],[4,7,["H962"]],[7,9,["H957"]],[9,11,["H7725"]],[11,13,["H3027"]],[13,14,["H5921"]],[14,17,["H2723"]],[17,21,["H3427"]],[21,23,["H413"]],[23,25,["H5971"]],[25,28,["H622"]],[28,32,["H4480","H1471"]],[32,35,["H6213"]],[35,36,["H4735"]],[36,38,["H7075"]],[38,40,["H3427"]],[40,41,["H5921"]],[41,43,["H2872"]],[43,46,["H776"]]]},{"k":21438,"v":[[0,1,["H7614"]],[1,3,["H1719"]],[3,6,["H5503"]],[6,8,["H8659"]],[8,10,["H3605"]],[10,13,["H3715"]],[13,16,["H559"]],[16,20,["H859"]],[20,21,["H935"]],[21,23,["H7997"]],[23,25,["H7998"]],[25,28,["H6950"]],[28,30,["H6951"]],[30,32,["H962"]],[32,34,["H957"]],[34,37,["H5375"]],[37,38,["H3701"]],[38,40,["H2091"]],[40,43,["H3947"]],[43,44,["H4735"]],[44,46,["H7075"]],[46,48,["H7997"]],[48,50,["H1419"]],[50,51,["H7998"]]]},{"k":21439,"v":[[0,1,["H3651"]],[1,2,["H1121"]],[2,4,["H120"]],[4,5,["H5012"]],[5,7,["H559"]],[7,9,["H1463"]],[9,10,["H3541"]],[10,11,["H559"]],[11,13,["H136"]],[13,14,["H3069"]],[14,16,["H1931"]],[16,17,["H3117"]],[17,20,["H5971"]],[20,22,["H3478"]],[22,23,["H3427"]],[23,24,["H983"]],[24,27,["H3808"]],[27,28,["H3045"]],[28,29,[]]]},{"k":21440,"v":[[0,4,["H935"]],[4,7,["H4480","H4725"]],[7,11,["H6828"]],[11,12,["H4480","H3411"]],[12,13,["H859"]],[13,15,["H7227"]],[15,16,["H5971"]],[16,17,["H854"]],[17,19,["H3605"]],[19,22,["H7392"]],[22,24,["H5483"]],[24,26,["H1419"]],[26,27,["H6951"]],[27,30,["H7227"]],[30,31,["H2428"]]]},{"k":21441,"v":[[0,5,["H5927"]],[5,6,["H5921"]],[6,8,["H5971"]],[8,10,["H3478"]],[10,13,["H6051"]],[13,15,["H3680"]],[15,17,["H776"]],[17,20,["H1961"]],[20,23,["H319"]],[23,24,["H3117"]],[24,28,["H935"]],[28,30,["H5921"]],[30,32,["H776"]],[32,33,["H4616"]],[33,35,["H1471"]],[35,37,["H3045"]],[37,43,["H6942"]],[43,47,["H1463"]],[47,50,["H5869"]]]},{"k":21442,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,7,["H859"]],[7,8,["H1931"]],[8,10,["H834"]],[10,13,["H1696"]],[13,15,["H6931"]],[15,16,["H3117"]],[16,17,["H3027"]],[17,19,["H5650"]],[19,21,["H5030"]],[21,23,["H3478"]],[23,25,["H5012"]],[25,27,["H1992"]],[27,28,["H3117"]],[28,30,["H8141"]],[30,34,["H935"]],[34,36,["H5921"]],[36,37,[]]]},{"k":21443,"v":[[0,6,["H1961"]],[6,9,["H1931"]],[9,10,["H3117"]],[10,11,["H3117"]],[11,12,["H1463"]],[12,14,["H935"]],[14,15,["H5921"]],[15,17,["H127"]],[17,19,["H3478"]],[19,20,["H5002"]],[20,22,["H136"]],[22,23,["H3069"]],[23,26,["H2534"]],[26,29,["H5927"]],[29,32,["H639"]]]},{"k":21444,"v":[[0,4,["H7068"]],[4,8,["H784"]],[8,11,["H5678"]],[11,14,["H1696"]],[14,15,["H518","H3808"]],[15,17,["H1931"]],[17,18,["H3117"]],[18,21,["H1961"]],[21,23,["H1419"]],[23,24,["H7494"]],[24,25,["H5921"]],[25,27,["H127"]],[27,29,["H3478"]]]},{"k":21445,"v":[[0,4,["H1709"]],[4,7,["H3220"]],[7,10,["H5775"]],[10,13,["H8064"]],[13,16,["H2416"]],[16,19,["H7704"]],[19,21,["H3605"]],[21,23,["H7431"]],[23,25,["H7430"]],[25,26,["H5921"]],[26,28,["H127"]],[28,30,["H3605"]],[30,32,["H120"]],[32,33,["H834"]],[33,35,["H5921"]],[35,37,["H6440"]],[37,40,["H127"]],[40,42,["H7493"]],[42,45,["H4480","H6440"]],[45,48,["H2022"]],[48,52,["H2040"]],[52,56,["H4095"]],[56,58,["H5307"]],[58,60,["H3605"]],[60,61,["H2346"]],[61,63,["H5307"]],[63,66,["H776"]]]},{"k":21446,"v":[[0,5,["H7121"]],[5,7,["H2719"]],[7,8,["H5921"]],[8,11,["H3605"]],[11,13,["H2022"]],[13,14,["H5002"]],[14,16,["H136"]],[16,17,["H3069"]],[17,19,["H376"]],[19,20,["H2719"]],[20,22,["H1961"]],[22,25,["H251"]]]},{"k":21447,"v":[[0,4,["H8199"]],[4,5,["H854"]],[5,8,["H1698"]],[8,11,["H1818"]],[11,15,["H4305"]],[15,16,["H5921"]],[16,19,["H5921"]],[19,21,["H102"]],[21,23,["H5921"]],[23,25,["H7227"]],[25,26,["H5971"]],[26,27,["H834"]],[27,29,["H854"]],[29,32,["H7857"]],[32,33,["H1653"]],[33,36,["H68","H417"]],[36,37,["H784"]],[37,39,["H1614"]]]},{"k":21448,"v":[[0,5,["H1431"]],[5,8,["H6942"]],[8,13,["H3045"]],[13,16,["H5869"]],[16,18,["H7227"]],[18,19,["H1471"]],[19,23,["H3045"]],[23,24,["H3588"]],[24,25,["H589"]],[25,28,["H3068"]]]},{"k":21449,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H5012"]],[6,7,["H5921"]],[7,8,["H1463"]],[8,10,["H559"]],[10,11,["H3541"]],[11,12,["H559"]],[12,14,["H136"]],[14,15,["H3069"]],[15,16,["H2009"]],[16,19,["H413"]],[19,22,["H1463"]],[22,24,["H7218"]],[24,25,["H5387"]],[25,27,["H4902"]],[27,29,["H8422"]]]},{"k":21450,"v":[[0,6,["H7725"]],[6,12,["H8338"]],[12,21,["H5927"]],[21,24,["H6828"]],[24,25,["H4480","H3411"]],[25,28,["H935"]],[28,30,["H5921"]],[30,32,["H2022"]],[32,34,["H3478"]]]},{"k":21451,"v":[[0,4,["H5221"]],[4,6,["H7198"]],[6,10,["H8040"]],[10,11,["H4480","H3027"]],[11,16,["H2671"]],[16,18,["H5307"]],[18,22,["H3225"]],[22,23,["H4480","H3027"]]]},{"k":21452,"v":[[0,3,["H5307"]],[3,4,["H5921"]],[4,6,["H2022"]],[6,8,["H3478"]],[8,9,["H859"]],[9,11,["H3605"]],[11,13,["H102"]],[13,16,["H5971"]],[16,17,["H834"]],[17,19,["H854"]],[19,23,["H5414"]],[23,27,["H5861"]],[27,28,["H6833"]],[28,30,["H3605"]],[30,31,["H3671"]],[31,35,["H2416"]],[35,38,["H7704"]],[38,41,["H402"]]]},{"k":21453,"v":[[0,3,["H5307"]],[3,4,["H5921"]],[4,6,["H6440"]],[6,7,["H7704"]],[7,8,["H3588"]],[8,9,["H589"]],[9,11,["H1696"]],[11,13,["H5002"]],[13,15,["H136"]],[15,16,["H3069"]]]},{"k":21454,"v":[[0,4,["H7971"]],[4,6,["H784"]],[6,8,["H4031"]],[8,13,["H3427"]],[13,14,["H983"]],[14,17,["H339"]],[17,21,["H3045"]],[21,22,["H3588"]],[22,23,["H589"]],[23,26,["H3068"]]]},{"k":21455,"v":[[0,4,["H3045"]],[4,6,["H6944"]],[6,7,["H8034"]],[7,8,["H3045"]],[8,11,["H8432"]],[11,14,["H5971"]],[14,15,["H3478"]],[15,19,["H3808"]],[19,22,["H2490","(H853)"]],[22,24,["H6944"]],[24,25,["H8034"]],[25,27,["H5750"]],[27,30,["H1471"]],[30,32,["H3045"]],[32,33,["H3588"]],[33,34,["H589"]],[34,37,["H3068"]],[37,40,["H6918"]],[40,42,["H3478"]]]},{"k":21456,"v":[[0,1,["H2009"]],[1,4,["H935"]],[4,8,["H1961"]],[8,9,["H5002"]],[9,11,["H136"]],[11,12,["H3069"]],[12,13,["H1931"]],[13,16,["H3117"]],[16,17,["H834"]],[17,20,["H1696"]]]},{"k":21457,"v":[[0,4,["H3427"]],[4,7,["H5892"]],[7,9,["H3478"]],[9,12,["H3318"]],[12,17,["H1197"]],[17,19,["H5400"]],[19,21,["H5402"]],[21,24,["H4043"]],[24,27,["H6793"]],[27,29,["H7198"]],[29,32,["H2671"]],[32,35,["H4731","H3027"]],[35,38,["H7420"]],[38,42,["H1197"]],[42,45,["H784"]],[45,46,["H7651"]],[46,47,["H8141"]]]},{"k":21458,"v":[[0,5,["H5375"]],[5,6,["H3808"]],[6,7,["H6086"]],[7,9,["H4480"]],[9,11,["H7704"]],[11,12,["H3808"]],[12,14,["H2404"]],[14,17,["H4480"]],[17,19,["H3293"]],[19,20,["H3588"]],[20,23,["H1197"]],[23,25,["H5402"]],[25,27,["H784"]],[27,31,["H7997","(H853)"]],[31,34,["H7997"]],[34,37,["H962","(H853)"]],[37,40,["H962"]],[40,42,["H5002"]],[42,44,["H136"]],[44,45,["H3069"]]]},{"k":21459,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,13,["H5414"]],[13,15,["H1463"]],[15,17,["H4725"]],[17,18,["H8033"]],[18,20,["H6913"]],[20,22,["H3478"]],[22,24,["H1516"]],[24,27,["H5674"]],[27,30,["H6926"]],[30,33,["H3220"]],[33,35,["H1931"]],[35,37,["H2629","(H853)"]],[37,42,["H5674"]],[42,44,["H8033"]],[44,47,["H6912","(H853)"]],[47,48,["H1463"]],[48,50,["H3605"]],[50,52,["H1995"]],[52,56,["H7121"]],[56,59,["H1516"]],[59,61,["H1996"]]]},{"k":21460,"v":[[0,2,["H7651"]],[2,3,["H2320"]],[3,6,["H1004"]],[6,8,["H3478"]],[8,10,["H6912"]],[10,13,["H4616"]],[13,16,["H2891","(H853)"]],[16,18,["H776"]]]},{"k":21461,"v":[[0,2,["H3605"]],[2,4,["H5971"]],[4,7,["H776"]],[7,9,["H6912"]],[9,14,["H1961"]],[14,18,["H8034"]],[18,20,["H3117"]],[20,25,["H3513"]],[25,26,["H5002"]],[26,28,["H136"]],[28,29,["H3069"]]]},{"k":21462,"v":[[0,5,["H914"]],[5,6,["H376"]],[6,9,["H8548"]],[9,10,["H5674"]],[10,13,["H776"]],[13,15,["H6912","(H853)"]],[15,18,["H5674","(H853)"]],[18,21,["H3498"]],[21,22,["H5921"]],[22,24,["H6440"]],[24,27,["H776"]],[27,29,["H2891"]],[29,33,["H4480","H7097"]],[33,35,["H7651"]],[35,36,["H2320"]],[36,39,["H2713"]]]},{"k":21463,"v":[[0,3,["H5674"]],[3,6,["H5674"]],[6,8,["H776"]],[8,11,["H7200"]],[11,13,["H120"]],[13,14,["H6106"]],[14,19,["H1129"]],[19,21,["H6725"]],[21,22,["H681"]],[22,24,["H5704"]],[24,26,["H6912"]],[26,28,["H6912"]],[28,30,["H413"]],[30,32,["H1516"]],[32,34,["H1996"]]]},{"k":21464,"v":[[0,2,["H1571"]],[2,4,["H8034"]],[4,7,["H5892"]],[7,10,["H1997"]],[10,14,["H2891"]],[14,16,["H776"]]]},{"k":21465,"v":[[0,2,["H859"]],[2,3,["H1121"]],[3,5,["H120"]],[5,6,["H3541"]],[6,7,["H559"]],[7,9,["H136"]],[9,10,["H3069"]],[10,11,["H559"]],[11,13,["H3605"]],[13,14,["H3671"]],[14,15,["H6833"]],[15,18,["H3605"]],[18,19,["H2416"]],[19,22,["H7704"]],[22,24,["H6908"]],[24,26,["H935"]],[26,28,["H622"]],[28,31,["H4480","H5439"]],[31,32,["H5921"]],[32,34,["H2077"]],[34,35,["H834"]],[35,36,["H589"]],[36,38,["H2076"]],[38,43,["H1419"]],[43,44,["H2077"]],[44,45,["H5921"]],[45,47,["H2022"]],[47,49,["H3478"]],[49,53,["H398"]],[53,54,["H1320"]],[54,56,["H8354"]],[56,57,["H1818"]]]},{"k":21466,"v":[[0,3,["H398"]],[3,5,["H1320"]],[5,8,["H1368"]],[8,10,["H8354"]],[10,12,["H1818"]],[12,15,["H5387"]],[15,18,["H776"]],[18,20,["H352"]],[20,22,["H3733"]],[22,25,["H6260"]],[25,27,["H6499"]],[27,28,["H3605"]],[28,31,["H4806"]],[31,33,["H1316"]]]},{"k":21467,"v":[[0,4,["H398"]],[4,5,["H2459"]],[5,9,["H7654"]],[9,11,["H8354"]],[11,12,["H1818"]],[12,16,["H7943"]],[16,19,["H4480","H2077"]],[19,20,["H834"]],[20,23,["H2076"]],[23,25,[]]]},{"k":21468,"v":[[0,5,["H7646"]],[5,6,["H5921"]],[6,8,["H7979"]],[8,10,["H5483"]],[10,12,["H7393"]],[12,15,["H1368"]],[15,18,["H3605"]],[18,19,["H376"]],[19,21,["H4421"]],[21,22,["H5002"]],[22,24,["H136"]],[24,25,["H3069"]]]},{"k":21469,"v":[[0,4,["H5414","(H853)"]],[4,6,["H3519"]],[6,9,["H1471"]],[9,11,["H3605"]],[11,13,["H1471"]],[13,15,["H7200","(H853)"]],[15,17,["H4941"]],[17,18,["H834"]],[18,21,["H6213"]],[21,24,["H3027"]],[24,25,["H834"]],[25,28,["H7760"]],[28,30,[]]]},{"k":21470,"v":[[0,3,["H1004"]],[3,5,["H3478"]],[5,7,["H3045"]],[7,8,["H3588"]],[8,9,["H589"]],[9,12,["H3068"]],[12,14,["H430"]],[14,15,["H4480"]],[15,16,["H1931"]],[16,17,["H3117"]],[17,19,["H1973"]]]},{"k":21471,"v":[[0,3,["H1471"]],[3,5,["H3045"]],[5,6,["H3588"]],[6,8,["H1004"]],[8,10,["H3478"]],[10,13,["H1540"]],[13,16,["H5771"]],[16,17,["H5921","H834"]],[17,19,["H4603"]],[19,23,["H5641"]],[23,26,["H6440"]],[26,27,["H4480"]],[27,30,["H5414"]],[30,34,["H3027"]],[34,37,["H6862"]],[37,39,["H5307"]],[39,41,["H3605"]],[41,44,["H2719"]]]},{"k":21472,"v":[[0,4,["H2932"]],[4,9,["H6588"]],[9,12,["H6213"]],[12,16,["H5641"]],[16,18,["H6440"]],[18,19,["H4480"]],[19,20,[]]]},{"k":21473,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,7,["H6258"]],[7,11,["H7725","(H853)"]],[11,13,["H7622"]],[13,15,["H3290"]],[15,18,["H7355"]],[18,21,["H3605"]],[21,22,["H1004"]],[22,24,["H3478"]],[24,28,["H7065"]],[28,31,["H6944"]],[31,32,["H8034"]]]},{"k":21474,"v":[[0,5,["H5375","(H853)"]],[5,7,["H3639"]],[7,9,["H3605"]],[9,11,["H4604"]],[11,12,["H834"]],[12,15,["H4603"]],[15,20,["H3427"]],[20,21,["H983"]],[21,22,["H5921"]],[22,24,["H127"]],[24,26,["H369"]],[26,29,["H2729"]]]},{"k":21475,"v":[[0,6,["H7725","(H853)"]],[6,7,["H4480"]],[7,9,["H5971"]],[9,11,["H6908"]],[11,16,["H341"]],[16,17,["H4480","H776"]],[17,20,["H6942"]],[20,25,["H5869"]],[25,27,["H7227"]],[27,28,["H1471"]]]},{"k":21476,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,11,["H430"]],[11,19,["H1540"]],[19,20,["H413"]],[20,22,["H1471"]],[22,26,["H3664"]],[26,28,["H5921"]],[28,31,["H127"]],[31,34,["H3498"]],[34,35,["H3808"]],[35,36,["H4480"]],[36,39,["H5750"]],[39,40,["H8033"]]]},{"k":21477,"v":[[0,1,["H3808"]],[1,4,["H5641"]],[4,6,["H6440"]],[6,8,["H5750"]],[8,9,["H4480"]],[9,11,["H834"]],[11,15,["H8210","(H853)"]],[15,17,["H7307"]],[17,18,["H5921"]],[18,20,["H1004"]],[20,22,["H3478"]],[22,23,["H5002"]],[23,25,["H136"]],[25,26,["H3069"]]]},{"k":21478,"v":[[0,3,["H2568"]],[3,5,["H6242"]],[5,6,["H8141"]],[6,9,["H1546"]],[9,12,["H7218"]],[12,15,["H8141"]],[15,18,["H6218"]],[18,22,["H2320"]],[22,25,["H702","H6240"]],[25,26,["H8141"]],[26,27,["H310"]],[27,28,["H834"]],[28,30,["H5892"]],[30,32,["H5221"]],[32,35,["H2088","H6106"]],[35,36,["H3117"]],[36,38,["H3027"]],[38,41,["H3068"]],[41,42,["H1961"]],[42,43,["H5921"]],[43,46,["H935"]],[46,48,["H8033"]]]},{"k":21479,"v":[[0,3,["H4759"]],[3,5,["H430"]],[5,6,["H935"]],[6,9,["H413"]],[9,11,["H776"]],[11,13,["H3478"]],[13,15,["H5117"]],[15,17,["H413"]],[17,19,["H3966"]],[19,20,["H1364"]],[20,21,["H2022"]],[21,22,["H5921"]],[22,27,["H4011"]],[27,30,["H5892"]],[30,33,["H4480","H5045"]]]},{"k":21480,"v":[[0,3,["H935"]],[3,5,["H8033"]],[5,7,["H2009"]],[7,11,["H376"]],[11,13,["H4758"]],[13,17,["H4758"]],[17,19,["H5178"]],[19,22,["H6616"]],[22,24,["H6593"]],[24,27,["H3027"]],[27,30,["H4060"]],[30,31,["H7070"]],[31,33,["H1931"]],[33,34,["H5975"]],[34,37,["H8179"]]]},{"k":21481,"v":[[0,3,["H376"]],[3,4,["H1696"]],[4,5,["H413"]],[5,7,["H1121"]],[7,9,["H120"]],[9,10,["H7200"]],[10,13,["H5869"]],[13,15,["H8085"]],[15,18,["H241"]],[18,20,["H7760"]],[20,22,["H3820"]],[22,24,["H3605"]],[24,25,["H834"]],[25,26,["H589"]],[26,28,["H7200"]],[28,30,["H3588"]],[30,34,["H4616"]],[34,37,["H7200"]],[37,43,["H935"]],[43,44,["H2008"]],[44,45,["H5046","(H853)"]],[45,46,["H3605"]],[46,47,["H834"]],[47,48,["H859"]],[48,49,["H7200"]],[49,52,["H1004"]],[52,54,["H3478"]]]},{"k":21482,"v":[[0,2,["H2009"]],[2,4,["H2346"]],[4,7,["H4480","H2351"]],[7,10,["H1004"]],[10,12,["H5439","H5439"]],[12,16,["H376"]],[16,17,["H3027"]],[17,19,["H4060"]],[19,20,["H7070"]],[20,22,["H8337"]],[22,23,["H520"]],[23,27,["H520"]],[27,31,["H2948"]],[31,34,["H4058","(H853)"]],[34,36,["H7341"]],[36,39,["H1146"]],[39,40,["H259"]],[40,41,["H7070"]],[41,44,["H6967"]],[44,45,["H259"]],[45,46,["H7070"]]]},{"k":21483,"v":[[0,2,["H935"]],[2,4,["H413"]],[4,6,["H8179"]],[6,7,["H834"]],[7,8,["H6440"]],[8,9,["H1870"]],[9,11,["H6921"]],[11,14,["H5927"]],[14,16,["H4609"]],[16,19,["H4058","(H853)"]],[19,21,["H5592"]],[21,24,["H8179"]],[24,27,["H259"]],[27,28,["H7070"]],[28,29,["H7341"]],[29,32,["H259"]],[32,33,["H5592"]],[33,39,["H259"]],[39,40,["H7070"]],[40,41,["H7341"]]]},{"k":21484,"v":[[0,4,["H8372"]],[4,6,["H259"]],[6,7,["H7070"]],[7,8,["H753"]],[8,10,["H259"]],[10,11,["H7070"]],[11,12,["H7341"]],[12,14,["H996"]],[14,17,["H8372"]],[17,19,["H2568"]],[19,20,["H520"]],[20,23,["H5592"]],[23,26,["H8179"]],[26,27,["H4480","H681"]],[27,29,["H197"]],[29,32,["H8179"]],[32,33,["H1004"]],[33,35,["H259"]],[35,36,["H7070"]]]},{"k":21485,"v":[[0,2,["H4058"]],[2,3,["(H853)"]],[3,5,["H197"]],[5,8,["H8179"]],[8,9,["H1004"]],[9,10,["H259"]],[10,11,["H7070"]]]},{"k":21486,"v":[[0,2,["H4058"]],[2,3,["(H853)"]],[3,5,["H197"]],[5,8,["H8179"]],[8,9,["H8083"]],[9,10,["H520"]],[10,13,["H352"]],[13,15,["H8147"]],[15,16,["H520"]],[16,19,["H197"]],[19,22,["H8179"]],[22,24,["H1004"]]]},{"k":21487,"v":[[0,4,["H8372"]],[4,7,["H8179"]],[7,8,["H1870","H6921"]],[8,10,["H7969"]],[10,13,["H4480","H6311"]],[13,15,["H7969"]],[15,18,["H4480","H6311"]],[18,20,["H7969"]],[20,23,["H259"]],[23,24,["H4060"]],[24,27,["H352"]],[27,29,["H259"]],[29,30,["H4060"]],[30,33,["H4480","H6311"]],[33,37,["H4480","H6311"]]]},{"k":21488,"v":[[0,3,["H4058","(H853)"]],[3,5,["H7341"]],[5,8,["H6607"]],[8,11,["H8179"]],[11,12,["H6235"]],[12,13,["H520"]],[13,16,["H753"]],[16,19,["H8179"]],[19,20,["H7969","H6240"]],[20,21,["H520"]]]},{"k":21489,"v":[[0,2,["H1366"]],[2,4,["H6440"]],[4,7,["H8372"]],[7,9,["H259"]],[9,10,["H520"]],[10,16,["H1366"]],[16,18,["H259"]],[18,19,["H520"]],[19,22,["H4480","H6311"]],[22,26,["H8372"]],[26,28,["H8337"]],[28,29,["H520"]],[29,32,["H4480","H6311"]],[32,34,["H8337"]],[34,35,["H520"]],[35,38,["H4480","H6311"]]]},{"k":21490,"v":[[0,2,["H4058"]],[2,3,["(H853)"]],[3,5,["H8179"]],[5,8,["H4480","H1406"]],[8,12,["H8372"]],[12,15,["H1406"]],[15,19,["H7341"]],[19,21,["H2568"]],[21,23,["H6242"]],[23,24,["H520"]],[24,25,["H6607"]],[25,26,["H5048"]],[26,27,["H6607"]]]},{"k":21491,"v":[[0,2,["H6213"]],[2,3,["(H853)"]],[3,4,["H352"]],[4,6,["H8346"]],[6,7,["H520"]],[7,9,["H413"]],[9,11,["H352"]],[11,14,["H2691"]],[14,16,["H5439","H5439"]],[16,18,["H8179"]]]},{"k":21492,"v":[[0,2,["H5921"]],[2,4,["H6440"]],[4,7,["H8179"]],[7,10,["H2978"]],[10,11,["H5921"]],[11,13,["H6440"]],[13,16,["H197"]],[16,19,["H6442"]],[19,20,["H8179"]],[20,22,["H2572"]],[22,23,["H520"]]]},{"k":21493,"v":[[0,4,["H331"]],[4,5,["H2474"]],[5,6,["H413"]],[6,9,["H8372"]],[9,11,["H413"]],[11,13,["H352"]],[13,14,["H6441"]],[14,16,["H8179"]],[16,18,["H5439","H5439"]],[18,20,["H3651"]],[20,23,["H361"]],[23,25,["H2474"]],[25,28,["H5439","H5439"]],[28,29,["H6441"]],[29,31,["H413"]],[31,33,["H352"]],[33,36,["H8561"]]]},{"k":21494,"v":[[0,2,["H935"]],[2,5,["H413"]],[5,7,["H2435"]],[7,8,["H2691"]],[8,10,["H2009"]],[10,13,["H3957"]],[13,16,["H7531"]],[16,17,["H6213"]],[17,20,["H2691"]],[20,22,["H5439","H5439"]],[22,23,["H7970"]],[23,24,["H3957"]],[24,26,["H413"]],[26,28,["H7531"]]]},{"k":21495,"v":[[0,3,["H7531"]],[3,4,["H413"]],[4,6,["H3802"]],[6,9,["H8179"]],[9,11,["H5980"]],[11,13,["H753"]],[13,16,["H8179"]],[16,19,["H8481"]],[19,20,["H7531"]]]},{"k":21496,"v":[[0,3,["H4058"]],[3,5,["H7341"]],[5,8,["H4480","H6440"]],[8,11,["H8481"]],[11,12,["H8179"]],[12,15,["H6440"]],[15,18,["H6442"]],[18,19,["H2691"]],[19,20,["H4480","H2351"]],[20,22,["H3967"]],[22,23,["H520"]],[23,24,["H6921"]],[24,26,["H6828"]]]},{"k":21497,"v":[[0,3,["H8179"]],[3,6,["H2435"]],[6,7,["H2691"]],[7,8,["H834"]],[8,9,["H6440"]],[9,10,["H1870"]],[10,12,["H6828"]],[12,14,["H4058"]],[14,16,["H753"]],[16,20,["H7341"]],[20,21,[]]]},{"k":21498,"v":[[0,4,["H8372"]],[4,7,["H7969"]],[7,10,["H4480","H6311"]],[10,12,["H7969"]],[12,15,["H4480","H6311"]],[15,18,["H352"]],[18,22,["H361"]],[22,24,["H1961"]],[24,27,["H4060"]],[27,30,["H7223"]],[30,31,["H8179"]],[31,33,["H753"]],[33,36,["H2572"]],[36,37,["H520"]],[37,40,["H7341"]],[40,41,["H2568"]],[41,43,["H6242"]],[43,44,["H520"]]]},{"k":21499,"v":[[0,3,["H2474"]],[3,6,["H361"]],[6,10,["H8561"]],[10,14,["H4060"]],[14,17,["H8179"]],[17,18,["H834"]],[18,19,["H6440"]],[19,20,["H1870"]],[20,22,["H6921"]],[22,26,["H5927"]],[26,30,["H7651"]],[30,31,["H4609"]],[31,34,["H361"]],[34,37,["H6440"]],[37,38,[]]]},{"k":21500,"v":[[0,3,["H8179"]],[3,6,["H6442"]],[6,7,["H2691"]],[7,10,["H5048"]],[10,12,["H8179"]],[12,15,["H6828"]],[15,19,["H6921"]],[19,22,["H4058"]],[22,24,["H4480","H8179"]],[24,25,["H413"]],[25,26,["H8179"]],[26,28,["H3967"]],[28,29,["H520"]]]},{"k":21501,"v":[[0,4,["H1980"]],[4,6,["H1870"]],[6,8,["H1864"]],[8,10,["H2009"]],[10,12,["H8179"]],[12,13,["H1870"]],[13,15,["H1864"]],[15,18,["H4058"]],[18,20,["H352"]],[20,24,["H361"]],[24,28,["H428"]],[28,29,["H4060"]]]},{"k":21502,"v":[[0,4,["H2474"]],[4,10,["H361"]],[10,13,["H5439","H5439"]],[13,15,["H428"]],[15,16,["H2474"]],[16,18,["H753"]],[18,20,["H2572"]],[20,21,["H520"]],[21,24,["H7341"]],[24,25,["H2568"]],[25,27,["H6242"]],[27,28,["H520"]]]},{"k":21503,"v":[[0,4,["H7651"]],[4,5,["H4609"]],[5,8,["H5930"]],[8,13,["H361"]],[13,16,["H6440"]],[16,22,["H8561"]],[22,23,["H259"]],[23,26,["H4480","H6311"]],[26,28,["H259"]],[28,31,["H4480","H6311"]],[31,32,["H413"]],[32,34,["H352"]],[34,35,[]]]},{"k":21504,"v":[[0,5,["H8179"]],[5,8,["H6442"]],[8,9,["H2691"]],[9,10,["H1870"]],[10,12,["H1864"]],[12,15,["H4058"]],[15,17,["H4480","H8179"]],[17,18,["H413"]],[18,19,["H8179"]],[19,20,["H1870"]],[20,22,["H1864"]],[22,24,["H3967"]],[24,25,["H520"]]]},{"k":21505,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H6442"]],[7,8,["H2691"]],[8,11,["H1864"]],[11,12,["H8179"]],[12,15,["H4058","(H853)"]],[15,17,["H1864"]],[17,18,["H8179"]],[18,21,["H428"]],[21,22,["H4060"]]]},{"k":21506,"v":[[0,4,["H8372"]],[4,8,["H352"]],[8,12,["H361"]],[12,16,["H428"]],[16,17,["H4060"]],[17,21,["H2474"]],[21,27,["H361"]],[27,30,["H5439","H5439"]],[30,33,["H2572"]],[33,34,["H520"]],[34,35,["H753"]],[35,37,["H2568"]],[37,39,["H6242"]],[39,40,["H520"]],[40,41,["H7341"]]]},{"k":21507,"v":[[0,3,["H361"]],[3,5,["H5439","H5439"]],[5,7,["H2568"]],[7,9,["H6242"]],[9,10,["H520"]],[10,11,["H753"]],[11,13,["H2568"]],[13,14,["H520"]],[14,15,["H7341"]]]},{"k":21508,"v":[[0,3,["H361"]],[3,6,["H413"]],[6,8,["H2435"]],[8,9,["H2691"]],[9,12,["H8561"]],[12,14,["H413"]],[14,16,["H352"]],[16,21,["H4608"]],[21,25,["H8083"]],[25,26,["H4609"]]]},{"k":21509,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H6442"]],[7,8,["H2691"]],[8,9,["H1870"]],[9,11,["H6921"]],[11,14,["H4058","(H853)"]],[14,16,["H8179"]],[16,19,["H428"]],[19,20,["H4060"]]]},{"k":21510,"v":[[0,4,["H8372"]],[4,8,["H352"]],[8,12,["H361"]],[12,17,["H428"]],[17,18,["H4060"]],[18,22,["H2474"]],[22,27,["H361"]],[27,30,["H5439","H5439"]],[30,33,["H2572"]],[33,34,["H520"]],[34,35,["H753"]],[35,37,["H2568"]],[37,39,["H6242"]],[39,40,["H520"]],[40,41,["H7341"]]]},{"k":21511,"v":[[0,3,["H361"]],[3,8,["H2435"]],[8,9,["H2691"]],[9,12,["H8561"]],[12,14,["H413"]],[14,16,["H352"]],[16,20,["H4480","H6311"]],[20,24,["H4480","H6311"]],[24,28,["H4608"]],[28,32,["H8083"]],[32,33,["H4609"]]]},{"k":21512,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H6828"]],[7,8,["H8179"]],[8,10,["H4058"]],[10,14,["H428"]],[14,15,["H4060"]]]},{"k":21513,"v":[[0,3,["H8372"]],[3,6,["H352"]],[6,10,["H361"]],[10,14,["H2474"]],[14,18,["H5439","H5439"]],[18,20,["H753"]],[20,22,["H2572"]],[22,23,["H520"]],[23,26,["H7341"]],[26,27,["H2568"]],[27,29,["H6242"]],[29,30,["H520"]]]},{"k":21514,"v":[[0,3,["H352"]],[3,8,["H2435"]],[8,9,["H2691"]],[9,12,["H8561"]],[12,14,["H413"]],[14,16,["H352"]],[16,20,["H4480","H6311"]],[20,24,["H4480","H6311"]],[24,28,["H4608"]],[28,32,["H8083"]],[32,33,["H4609"]]]},{"k":21515,"v":[[0,3,["H3957"]],[3,6,["H6607"]],[6,11,["H352"]],[11,14,["H8179"]],[14,15,["H8033"]],[15,17,["H1740","(H853)"]],[17,20,["H5930"]]]},{"k":21516,"v":[[0,4,["H197"]],[4,7,["H8179"]],[7,9,["H8147"]],[9,10,["H7979"]],[10,13,["H4480","H6311"]],[13,15,["H8147"]],[15,16,["H7979"]],[16,19,["H4480","H6311"]],[19,21,["H7819"]],[21,22,["H413"]],[22,25,["H5930"]],[25,29,["H2403"]],[29,33,["H817"]]]},{"k":21517,"v":[[0,2,["H413"]],[2,4,["H3802"]],[4,5,["H4480","H2351"]],[5,9,["H5927"]],[9,12,["H6607"]],[12,15,["H6828"]],[15,16,["H8179"]],[16,18,["H8147"]],[18,19,["H7979"]],[19,21,["H413"]],[21,23,["H312"]],[23,24,["H3802"]],[24,25,["H834"]],[25,29,["H197"]],[29,32,["H8179"]],[32,34,["H8147"]],[34,35,["H7979"]]]},{"k":21518,"v":[[0,1,["H702"]],[1,2,["H7979"]],[2,6,["H4480","H6311"]],[6,8,["H702"]],[8,9,["H7979"]],[9,12,["H4480","H6311"]],[12,15,["H3802"]],[15,18,["H8179"]],[18,19,["H8083"]],[19,20,["H7979"]],[20,21,["H413"]],[21,23,["H7819"]],[23,25,[]]]},{"k":21519,"v":[[0,3,["H702"]],[3,4,["H7979"]],[4,7,["H1496"]],[7,8,["H68"]],[8,12,["H5930"]],[12,14,["H259"]],[14,15,["H520"]],[15,17,["H259"]],[17,18,["H2677"]],[18,19,["H753"]],[19,22,["H520"]],[22,25,["H2677"]],[25,26,["H7341"]],[26,28,["H259"]],[28,29,["H520"]],[29,30,["H1363"]],[30,31,["H413"]],[31,34,["H5117","(H853)"]],[34,36,["H3627"]],[36,37,["H834"]],[37,39,["H7819","(H853)"]],[39,42,["H5930"]],[42,45,["H2077"]]]},{"k":21520,"v":[[0,2,["H1004"]],[2,4,["H8240"]],[4,5,["H259"]],[5,7,["H2948"]],[7,8,["H3559"]],[8,10,["H5439","H5439"]],[10,12,["H413"]],[12,14,["H7979"]],[14,17,["H1320"]],[17,20,["H7133"]]]},{"k":21521,"v":[[0,2,["H4480","H2351"]],[2,4,["H6442"]],[4,5,["H8179"]],[5,8,["H3957"]],[8,11,["H7891"]],[11,14,["H6442"]],[14,15,["H2691"]],[15,16,["H834"]],[16,18,["H413"]],[18,20,["H3802"]],[20,23,["H6828"]],[23,24,["H8179"]],[24,27,["H6440"]],[27,29,["H1870"]],[29,31,["H1864"]],[31,32,["H259"]],[32,33,["H413"]],[33,35,["H3802"]],[35,38,["H6921"]],[38,39,["H8179"]],[39,42,["H6440"]],[42,43,["H1870"]],[43,45,["H6828"]]]},{"k":21522,"v":[[0,3,["H1696"]],[3,4,["H413"]],[4,6,["H2090"]],[6,7,["H3957"]],[7,8,["H834"]],[8,9,["H6440"]],[9,11,["H1870"]],[11,13,["H1864"]],[13,17,["H3548"]],[17,19,["H8104"]],[19,22,["H4931"]],[22,25,["H1004"]]]},{"k":21523,"v":[[0,3,["H3957"]],[3,4,["H834"]],[4,5,["H6440"]],[5,7,["H1870"]],[7,9,["H6828"]],[9,13,["H3548"]],[13,15,["H8104"]],[15,18,["H4931"]],[18,21,["H4196"]],[21,22,["H1992"]],[22,25,["H1121"]],[25,27,["H6659"]],[27,30,["H4480","H1121"]],[30,32,["H3878"]],[32,35,["H7131"]],[35,36,["H413"]],[36,38,["H3068"]],[38,40,["H8334"]],[40,42,[]]]},{"k":21524,"v":[[0,3,["H4058","(H853)"]],[3,5,["H2691"]],[5,7,["H3967"]],[7,8,["H520"]],[8,9,["H753"]],[9,12,["H3967"]],[12,13,["H520"]],[13,14,["H7341"]],[14,15,["H7251"]],[15,18,["H4196"]],[18,21,["H6440"]],[21,23,["H1004"]]]},{"k":21525,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H197"]],[7,10,["H1004"]],[10,12,["H4058"]],[12,14,["H352"]],[14,17,["H197"]],[17,18,["H2568"]],[18,19,["H520"]],[19,22,["H4480","H6311"]],[22,24,["H2568"]],[24,25,["H520"]],[25,28,["H4480","H6311"]],[28,31,["H7341"]],[31,34,["H8179"]],[34,36,["H7969"]],[36,37,["H520"]],[37,40,["H4480","H6311"]],[40,42,["H7969"]],[42,43,["H520"]],[43,46,["H4480","H6311"]]]},{"k":21526,"v":[[0,2,["H753"]],[2,5,["H197"]],[5,7,["H6242"]],[7,8,["H520"]],[8,11,["H7341"]],[11,12,["H6249","H6240"]],[12,13,["H520"]],[13,20,["H4609"]],[20,21,["H834"]],[21,24,["H5927"]],[24,25,["H413"]],[25,30,["H5982"]],[30,31,["H413"]],[31,33,["H352"]],[33,34,["H259"]],[34,37,["H4480","H6311"]],[37,39,["H259"]],[39,42,["H4480","H6311"]]]},{"k":21527,"v":[[0,3,["H935"]],[3,5,["H413"]],[5,7,["H1964"]],[7,9,["H4058","(H853)"]],[9,11,["H352"]],[11,12,["H8337"]],[12,13,["H520"]],[13,14,["H7341"]],[14,18,["H4480","H6311"]],[18,20,["H8337"]],[20,21,["H520"]],[21,22,["H7341"]],[22,26,["H4480","H6311"]],[26,30,["H7341"]],[30,33,["H168"]]]},{"k":21528,"v":[[0,3,["H7341"]],[3,6,["H6607"]],[6,8,["H6235"]],[8,9,["H520"]],[9,12,["H3802"]],[12,15,["H6607"]],[15,17,["H2568"]],[17,18,["H520"]],[18,22,["H4480","H6311"]],[22,24,["H2568"]],[24,25,["H520"]],[25,29,["H4480","H6311"]],[29,32,["H4058"]],[32,34,["H753"]],[34,36,["H705"]],[36,37,["H520"]],[37,40,["H7341"]],[40,41,["H6242"]],[41,42,["H520"]]]},{"k":21529,"v":[[0,2,["H935"]],[2,4,["H6441"]],[4,6,["H4058"]],[6,8,["H352"]],[8,11,["H6607"]],[11,12,["H8147"]],[12,13,["H520"]],[13,16,["H6607"]],[16,17,["H8337"]],[17,18,["H520"]],[18,21,["H7341"]],[21,24,["H6607"]],[24,25,["H7651"]],[25,26,["H520"]]]},{"k":21530,"v":[[0,3,["H4058","(H853)"]],[3,5,["H753"]],[5,7,["H6242"]],[7,8,["H520"]],[8,11,["H7341"]],[11,12,["H6242"]],[12,13,["H520"]],[13,14,["H413","H6440"]],[14,16,["H1964"]],[16,19,["H559"]],[19,20,["H413"]],[20,22,["H2088"]],[22,26,["H6944","H6944"]],[26,27,[]]]},{"k":21531,"v":[[0,3,["H4058"]],[3,5,["H7023"]],[5,8,["H1004"]],[8,9,["H8337"]],[9,10,["H520"]],[10,13,["H7341"]],[13,17,["H6763"]],[17,18,["H702"]],[18,19,["H520"]],[19,21,["H5439","H5439"]],[21,23,["H1004"]],[23,26,["H5439"]]]},{"k":21532,"v":[[0,4,["H6763"]],[4,6,["H7969"]],[6,7,["H6763"]],[7,8,["H413"]],[8,9,["H6763"]],[9,11,["H7970"]],[11,13,["H6471"]],[13,16,["H935"]],[16,19,["H7023"]],[19,20,["H834"]],[20,24,["H1004"]],[24,28,["H6763"]],[28,30,["H5439","H5439"]],[30,34,["H1961"]],[34,35,["H270"]],[35,38,["H1961"]],[38,39,["H3808"]],[39,40,["H270"]],[40,43,["H7023"]],[43,46,["H1004"]]]},{"k":21533,"v":[[0,5,["H7337"]],[5,9,["H5437"]],[9,11,["H4605","H4605"]],[11,15,["H6763"]],[15,16,["H3588"]],[16,19,["H4141"]],[19,22,["H1004"]],[22,25,["H4605","H4605"]],[25,27,["H5439","H5439"]],[27,29,["H1004"]],[29,30,["H5921","H3651"]],[30,32,["H7341"]],[32,35,["H1004"]],[35,38,["H4605"]],[38,40,["H3651"]],[40,41,["H5927"]],[41,44,["H8481"]],[44,46,["H5921"]],[46,48,["H5945"]],[48,51,["H8484"]]]},{"k":21534,"v":[[0,2,["H7200"]],[2,5,["H1363"]],[5,8,["H1004"]],[8,10,["H5439","H5439"]],[10,12,["H4328"]],[12,16,["H6763"]],[16,19,["H4393"]],[19,20,["H7070"]],[20,22,["H8337"]],[22,23,["H679"]],[23,24,["H520"]]]},{"k":21535,"v":[[0,2,["H7341"]],[2,5,["H7023"]],[5,6,["H834"]],[6,11,["H6763"]],[11,12,["H2351"]],[12,14,["H2568"]],[14,15,["H520"]],[15,18,["H834"]],[18,20,["H5117"]],[20,23,["H1004"]],[23,27,["H6763"]],[27,28,["H834"]],[28,30,["H1004"]]]},{"k":21536,"v":[[0,2,["H996"]],[2,4,["H3957"]],[4,7,["H7341"]],[7,9,["H6242"]],[9,10,["H520"]],[10,12,["H5439"]],[12,14,["H1004"]],[14,17,["H5439","H5439"]]]},{"k":21537,"v":[[0,3,["H6607"]],[3,7,["H6763"]],[7,14,["H5117"]],[14,15,["H259"]],[15,16,["H6607"]],[16,17,["H1870"]],[17,19,["H6828"]],[19,21,["H259"]],[21,22,["H6607"]],[22,25,["H1864"]],[25,28,["H7341"]],[28,31,["H4725"]],[31,34,["H5117"]],[34,36,["H2568"]],[36,37,["H520"]],[37,39,["H5439","H5439"]]]},{"k":21538,"v":[[0,3,["H1146"]],[3,4,["H834"]],[4,6,["H413","H6440"]],[6,9,["H1508"]],[9,12,["H6285"]],[12,13,["H1870"]],[13,15,["H3220"]],[15,17,["H7657"]],[17,18,["H520"]],[18,19,["H7341"]],[19,22,["H7023"]],[22,25,["H1146"]],[25,27,["H2568"]],[27,28,["H520"]],[28,29,["H7341"]],[29,31,["H5439","H5439"]],[31,34,["H753"]],[34,36,["H8673"]],[36,37,["H520"]]]},{"k":21539,"v":[[0,3,["H4058","(H853)"]],[3,5,["H1004"]],[5,7,["H3967"]],[7,8,["H520"]],[8,9,["H753"]],[9,13,["H1508"]],[13,16,["H1140"]],[16,19,["H7023"]],[19,22,["H3967"]],[22,23,["H520"]],[23,24,["H753"]]]},{"k":21540,"v":[[0,3,["H7341"]],[3,6,["H6440"]],[6,9,["H1004"]],[9,14,["H1508"]],[14,17,["H6921"]],[17,19,["H3967"]],[19,20,["H520"]]]},{"k":21541,"v":[[0,3,["H4058"]],[3,5,["H753"]],[5,8,["H1146"]],[8,10,["H413","H6440"]],[10,13,["H1508"]],[13,14,["H834"]],[14,16,["H5921","H310"]],[16,20,["H862"]],[20,25,["H4480","H6311"]],[25,30,["H4480","H6311"]],[30,32,["H3967"]],[32,33,["H520"]],[33,36,["H6442"]],[36,37,["H1964"]],[37,40,["H197"]],[40,43,["H2691"]]]},{"k":21542,"v":[[0,3,["H5592"]],[3,6,["H331"]],[6,7,["H2474"]],[7,10,["H862"]],[10,12,["H5439"]],[12,16,["H7969"]],[16,18,["H5048"]],[18,20,["H5592"]],[20,21,["H7824"]],[21,23,["H6086"]],[23,25,["H5439","H5439"]],[25,29,["H776"]],[29,31,["H5704"]],[31,33,["H2474"]],[33,36,["H2474"]],[36,38,["H3680"]]]},{"k":21543,"v":[[0,1,["H5921"]],[1,3,["H4480","H5921"]],[3,5,["H6607"]],[5,7,["H5704"]],[7,9,["H6442"]],[9,10,["H1004"]],[10,12,["H2351"]],[12,14,["H413"]],[14,15,["H3605"]],[15,17,["H7023"]],[17,19,["H5439","H5439"]],[19,20,["H6442"]],[20,22,["H2435"]],[22,24,["H4060"]]]},{"k":21544,"v":[[0,4,["H6213"]],[4,6,["H3742"]],[6,9,["H8561"]],[9,14,["H8561"]],[14,16,["H996"]],[16,18,["H3742"]],[18,21,["H3742"]],[21,24,["H3742"]],[24,26,["H8147"]],[26,27,["H6440"]]]},{"k":21545,"v":[[0,4,["H6440"]],[4,7,["H120"]],[7,9,["H413"]],[9,12,["H8561"]],[12,16,["H4480","H6311"]],[16,19,["H6440"]],[19,23,["H3715"]],[23,24,["H413"]],[24,27,["H8561"]],[27,31,["H4480","H6311"]],[31,34,["H6213"]],[34,35,["H413"]],[35,36,["H3605"]],[36,38,["H1004"]],[38,40,["H5439","H5439"]]]},{"k":21546,"v":[[0,3,["H776"]],[3,4,["H5704"]],[4,5,["H4480","H5921"]],[5,7,["H6607"]],[7,9,["H3742"]],[9,12,["H8561"]],[12,13,["H6213"]],[13,17,["H7023"]],[17,20,["H1964"]]]},{"k":21547,"v":[[0,2,["H4201"]],[2,5,["H1964"]],[5,7,["H7251"]],[7,10,["H6440"]],[10,13,["H6944"]],[13,15,["H4758"]],[15,21,["H4758"]],[21,24,[]]]},{"k":21548,"v":[[0,2,["H4196"]],[2,4,["H6086"]],[4,6,["H7969"]],[6,7,["H520"]],[7,8,["H1364"]],[8,11,["H753"]],[11,13,["H8147"]],[13,14,["H520"]],[14,17,["H4740"]],[17,21,["H753"]],[21,25,["H7023"]],[25,29,["H6086"]],[29,32,["H1696"]],[32,33,["H413"]],[33,35,["H2088"]],[35,38,["H7979"]],[38,39,["H834"]],[39,41,["H6440"]],[41,43,["H3068"]]]},{"k":21549,"v":[[0,3,["H1964"]],[3,6,["H6944"]],[6,8,["H8147"]],[8,9,["H1817"]]]},{"k":21550,"v":[[0,3,["H1817"]],[3,5,["H8147"]],[5,6,["H1817"]],[6,8,["H8147"]],[8,9,["H4142"]],[9,10,["H1817"]],[10,11,["H8147"]],[11,15,["H259"]],[15,16,["H1817"]],[16,18,["H8147"]],[18,19,["H1817"]],[19,22,["H312"]],[22,23,[]]]},{"k":21551,"v":[[0,4,["H6213"]],[4,5,["H413"]],[5,7,["H413"]],[7,9,["H1817"]],[9,12,["H1964"]],[12,13,["H3742"]],[13,16,["H8561"]],[16,18,["H834"]],[18,20,["H6213"]],[20,23,["H7023"]],[23,27,["H5645"]],[27,28,["H6086"]],[28,29,["H413"]],[29,31,["H6440"]],[31,34,["H197"]],[34,35,["H2351"]]]},{"k":21552,"v":[[0,4,["H331"]],[4,5,["H2474"]],[5,8,["H8561"]],[8,12,["H4480","H6311"]],[12,17,["H4480","H6311"]],[17,18,["H413"]],[18,20,["H3802"]],[20,23,["H197"]],[23,28,["H6763"]],[28,31,["H1004"]],[31,34,["H5646"]]]},{"k":21553,"v":[[0,5,["H3318"]],[5,6,["H413"]],[6,8,["H2435"]],[8,9,["H2691"]],[9,11,["H1870"]],[11,12,["H1870"]],[12,14,["H6828"]],[14,17,["H935"]],[17,19,["H413"]],[19,21,["H3957"]],[21,22,["H834"]],[22,25,["H5048"]],[25,28,["H1508"]],[28,30,["H834"]],[30,32,["H5048"]],[32,34,["H1146"]],[34,35,["H413"]],[35,37,["H6828"]]]},{"k":21554,"v":[[0,1,["H413","H6440"]],[1,3,["H753"]],[3,6,["H3967"]],[6,7,["H520"]],[7,10,["H6828"]],[10,11,["H6607"]],[11,14,["H7341"]],[14,16,["H2572"]],[16,17,["H520"]]]},{"k":21555,"v":[[0,2,["H5048"]],[2,4,["H6242"]],[4,6,["H834"]],[6,10,["H6442"]],[10,11,["H2691"]],[11,14,["H5048"]],[14,16,["H7531"]],[16,17,["H834"]],[17,21,["H2435"]],[21,22,["H2691"]],[22,24,["H862"]],[24,25,["H413","H6440"]],[25,26,["H862"]],[26,28,["H7992"]],[28,29,[]]]},{"k":21556,"v":[[0,2,["H6440"]],[2,4,["H3957"]],[4,7,["H4109"]],[7,9,["H6235"]],[9,10,["H520"]],[10,11,["H7341"]],[11,12,["H6442"]],[12,14,["H1870"]],[14,16,["H259"]],[16,17,["H520"]],[17,20,["H6607"]],[20,23,["H6828"]]]},{"k":21557,"v":[[0,3,["H5945"]],[3,4,["H3957"]],[4,6,["H7114"]],[6,7,["H3588"]],[7,9,["H862"]],[9,11,["H3201"]],[11,13,["H4480","H2007"]],[13,16,["H4480","H8481"]],[16,20,["H4480","H8484"]],[20,23,["H1146"]]]},{"k":21558,"v":[[0,1,["H3588"]],[1,2,["H2007"]],[2,5,["H8027"]],[5,9,["H369"]],[9,10,["H5982"]],[10,13,["H5982"]],[13,16,["H2691"]],[16,17,["H5921","H3651"]],[17,21,["H680"]],[21,25,["H4480","H8481"]],[25,28,["H8484"]],[28,31,["H4480","H776"]]]},{"k":21559,"v":[[0,3,["H1447"]],[3,4,["H834"]],[4,6,["H2351"]],[6,8,["H5980"]],[8,10,["H3957"]],[10,11,["H1870"]],[11,13,["H2435"]],[13,14,["H2691"]],[14,15,["H413"]],[15,17,["H6440"]],[17,20,["H3957"]],[20,22,["H753"]],[22,25,["H2572"]],[25,26,["H520"]]]},{"k":21560,"v":[[0,1,["H3588"]],[1,3,["H753"]],[3,6,["H3957"]],[6,7,["H834"]],[7,11,["H2435"]],[11,12,["H2691"]],[12,14,["H2572"]],[14,15,["H520"]],[15,17,["H2009"]],[17,18,["H5921","H6440"]],[18,20,["H1964"]],[20,23,["H3967"]],[23,24,["H520"]]]},{"k":21561,"v":[[0,3,["H4480","H8478"]],[3,4,["H428"]],[4,5,["H3957"]],[5,8,["H3996"]],[8,12,["H4480","H6921"]],[12,15,["H935"]],[15,17,["H2007"]],[17,21,["H2691","H2435"]]]},{"k":21562,"v":[[0,2,["H3957"]],[2,6,["H7341"]],[6,9,["H1444"]],[9,12,["H2691"]],[12,13,["H1870"]],[13,15,["H6921"]],[15,17,["H413","H6440"]],[17,20,["H1508"]],[20,23,["H413","H6440"]],[23,25,["H1146"]]]},{"k":21563,"v":[[0,3,["H1870"]],[3,4,["H6440"]],[4,9,["H4758"]],[9,12,["H3957"]],[12,13,["H834"]],[13,15,["H1870"]],[15,17,["H6828"]],[17,19,["H753"]],[19,23,["H3651"]],[23,24,["H7341"]],[24,28,["H3605"]],[28,31,["H4161"]],[31,37,["H4941"]],[37,42,["H6607"]]]},{"k":21564,"v":[[0,5,["H6607"]],[5,8,["H3957"]],[8,9,["H834"]],[9,11,["H1870"]],[11,13,["H1864"]],[13,16,["H6607"]],[16,19,["H7218"]],[19,22,["H1870"]],[22,25,["H1870"]],[25,26,["H1903"]],[26,27,["H6440"]],[27,29,["H1448"]],[29,30,["H1870"]],[30,32,["H6921"]],[32,35,["H935"]],[35,37,[]]]},{"k":21565,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,7,["H6828"]],[7,8,["H3957"]],[8,11,["H1864"]],[11,12,["H3957"]],[12,13,["H834"]],[13,15,["H413","H6440"]],[15,18,["H1508"]],[18,19,["H2007"]],[19,21,["H6944"]],[21,22,["H3957"]],[22,23,["H834","H8033"]],[23,25,["H3548"]],[25,26,["H834"]],[26,27,["H7138"]],[27,30,["H3068"]],[30,32,["H398"]],[32,36,["H6944","H6944"]],[36,37,["H8033"]],[37,40,["H5117"]],[40,44,["H6944","H6944"]],[44,48,["H4503"]],[48,52,["H2403"]],[52,56,["H817"]],[56,57,["H3588"]],[57,59,["H4725"]],[59,61,["H6918"]]]},{"k":21566,"v":[[0,3,["H3548"]],[3,4,["H935"]],[4,9,["H3808"]],[9,11,["H3318"]],[11,14,["H4480","H6944"]],[14,16,["H413"]],[16,18,["H2435"]],[18,19,["H2691"]],[19,21,["H8033"]],[21,24,["H5117"]],[24,26,["H899"]],[26,27,["H834"]],[27,29,["H8334"]],[29,30,["H3588"]],[30,31,["H2007"]],[31,33,["H6944"]],[33,37,["H3847"]],[37,38,["H312"]],[38,39,["H899"]],[39,42,["H7126"]],[42,43,["H413"]],[43,46,["H834"]],[46,50,["H5971"]]]},{"k":21567,"v":[[0,7,["H3615"]],[7,8,["(H853)"]],[8,9,["H4060"]],[9,11,["H6442"]],[11,12,["H1004"]],[12,16,["H3318"]],[16,17,["H1870"]],[17,19,["H8179"]],[19,20,["H834"]],[20,21,["H6440"]],[21,23,["H1870"]],[23,25,["H6921"]],[25,27,["H4058"]],[27,30,["H5439","H5439"]]]},{"k":21568,"v":[[0,2,["H4058"]],[2,4,["H6921"]],[4,5,["H7307"]],[5,8,["H4060"]],[8,9,["H7070"]],[9,10,["H2568"]],[10,11,["H3967"]],[11,12,["H7070"]],[12,15,["H4060"]],[15,16,["H7070"]],[16,18,["H5439"]]]},{"k":21569,"v":[[0,2,["H4058"]],[2,4,["H6828"]],[4,5,["H7307"]],[5,6,["H2568"]],[6,7,["H3967"]],[7,8,["H7070"]],[8,11,["H4060"]],[11,12,["H7070"]],[12,14,["H5439"]]]},{"k":21570,"v":[[0,2,["H4058","(H853)"]],[2,4,["H1864"]],[4,5,["H7307"]],[5,6,["H2568"]],[6,7,["H3967"]],[7,8,["H7070"]],[8,11,["H4060"]],[11,12,["H7070"]]]},{"k":21571,"v":[[0,3,["H5437"]],[3,4,["H413"]],[4,6,["H3220"]],[6,7,["H7307"]],[7,9,["H4058"]],[9,10,["H2568"]],[10,11,["H3967"]],[11,12,["H7070"]],[12,15,["H4060"]],[15,16,["H7070"]]]},{"k":21572,"v":[[0,2,["H4058"]],[2,6,["H702"]],[6,7,["H7307"]],[7,11,["H2346"]],[11,13,["H5439","H5439"]],[13,14,["H2568"]],[14,15,["H3967"]],[15,17,["H753"]],[17,19,["H2568"]],[19,20,["H3967"]],[20,21,["H7341"]],[21,25,["H914"]],[25,26,["H996"]],[26,28,["H6944"]],[28,32,["H2455"]]]},{"k":21573,"v":[[0,3,["H1980"]],[3,5,["H413"]],[5,7,["H8179"]],[7,10,["H8179"]],[10,11,["H834"]],[11,12,["H6437"]],[12,13,["H1870"]],[13,15,["H6921"]]]},{"k":21574,"v":[[0,2,["H2009"]],[2,4,["H3519"]],[4,7,["H430"]],[7,9,["H3478"]],[9,10,["H935"]],[10,13,["H4480","H1870"]],[13,16,["H6921"]],[16,19,["H6963"]],[19,23,["H6963"]],[23,25,["H7227"]],[25,26,["H4325"]],[26,29,["H776"]],[29,30,["H215"]],[30,33,["H4480","H3519"]]]},{"k":21575,"v":[[0,7,["H4758"]],[7,10,["H4758"]],[10,11,["H834"]],[11,13,["H7200"]],[13,18,["H4758"]],[18,19,["H834"]],[19,21,["H7200"]],[21,24,["H935"]],[24,26,["H7843","(H853)"]],[26,28,["H5892"]],[28,31,["H4759"]],[31,35,["H4758"]],[35,36,["H834"]],[36,38,["H7200"]],[38,39,["H413"]],[39,41,["H5104"]],[41,42,["H3529"]],[42,45,["H5307"]],[45,46,["H413"]],[46,48,["H6440"]]]},{"k":21576,"v":[[0,3,["H3519"]],[3,6,["H3068"]],[6,7,["H935"]],[7,8,["H413"]],[8,10,["H1004"]],[10,13,["H1870"]],[13,16,["H8179"]],[16,17,["H834"]],[17,18,["H6440"]],[18,20,["H1870"]],[20,22,["H6921"]]]},{"k":21577,"v":[[0,3,["H7307"]],[3,6,["H5375"]],[6,8,["H935"]],[8,10,["H413"]],[10,12,["H6442"]],[12,13,["H2691"]],[13,15,["H2009"]],[15,17,["H3519"]],[17,20,["H3068"]],[20,21,["H4390"]],[21,23,["H1004"]]]},{"k":21578,"v":[[0,3,["H8085"]],[3,5,["H1696"]],[5,6,["H413"]],[6,11,["H4480","H1004"]],[11,14,["H376"]],[14,15,["H1961","H5975"]],[15,16,["H681"]],[16,17,[]]]},{"k":21579,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120","(H853)"]],[8,10,["H4725"]],[10,13,["H3678"]],[13,16,["H4725"]],[16,19,["H3709"]],[19,22,["H7272"]],[22,23,["H834","H8033"]],[23,26,["H7931"]],[26,29,["H8432"]],[29,32,["H1121"]],[32,34,["H3478"]],[34,36,["H5769"]],[36,39,["H6944"]],[39,40,["H8034"]],[40,43,["H1004"]],[43,45,["H3478"]],[45,46,["H3808"]],[46,47,["H5750"]],[47,48,["H2930"]],[48,50,["H1992"]],[50,53,["H4428"]],[53,56,["H2184"]],[56,60,["H6297"]],[60,63,["H4428"]],[63,67,["H1116"]]]},{"k":21580,"v":[[0,3,["H5414"]],[3,6,["H5592"]],[6,7,["H854"]],[7,9,["H5592"]],[9,12,["H4201"]],[12,13,["H681"]],[13,15,["H4201"]],[15,18,["H7023"]],[18,19,["H996"]],[19,26,["H2930","(H853)"]],[26,28,["H6944"]],[28,29,["H8034"]],[29,32,["H8441"]],[32,33,["H834"]],[33,36,["H6213"]],[36,40,["H398"]],[40,44,["H639"]]]},{"k":21581,"v":[[0,1,["H6258"]],[1,5,["H7368","(H853)"]],[5,7,["H2184"]],[7,10,["H6297"]],[10,13,["H4428"]],[13,15,["H4480"]],[15,20,["H7931"]],[20,23,["H8432"]],[23,27,["H5769"]]]},{"k":21582,"v":[[0,1,["H859"]],[1,2,["H1121"]],[2,4,["H120"]],[4,5,["H5046","(H853)"]],[5,7,["H1004","(H853)"]],[7,10,["H1004"]],[10,12,["H3478"]],[12,17,["H3637"]],[17,20,["H4480","H5771"]],[20,24,["H4058","(H853)"]],[24,26,["H8508"]]]},{"k":21583,"v":[[0,2,["H518"]],[2,5,["H3637"]],[5,7,["H4480","H3605"]],[7,8,["H834"]],[8,11,["H6213"]],[11,12,["H3045"]],[12,15,["H6699"]],[15,18,["H1004"]],[18,21,["H8498"]],[21,26,["H4161"]],[26,31,["H4126"]],[31,34,["H3605"]],[34,36,["H6699"]],[36,39,["H3605"]],[39,41,["H2708"]],[41,44,["H3605"]],[44,46,["H6699"]],[46,49,["H3605"]],[49,51,["H8451"]],[51,54,["H3789"]],[54,58,["H5869"]],[58,62,["H8104","(H853)"]],[62,64,["H3605"]],[64,65,["H6699"]],[65,68,["H3605"]],[68,70,["H2708"]],[70,73,["H6213"]],[73,74,[]]]},{"k":21584,"v":[[0,1,["H2063"]],[1,4,["H8451"]],[4,7,["H1004"]],[7,8,["H5921"]],[8,10,["H7218"]],[10,13,["H2022"]],[13,15,["H3605"]],[15,16,["H1366"]],[16,19,["H5439","H5439"]],[19,23,["H6944","H6944"]],[23,24,["H2009"]],[24,25,["H2063"]],[25,28,["H8451"]],[28,31,["H1004"]]]},{"k":21585,"v":[[0,2,["H428"]],[2,5,["H4060"]],[5,8,["H4196"]],[8,11,["H520"]],[11,13,["H520"]],[13,16,["H520"]],[16,20,["H2948"]],[20,23,["H2436"]],[23,27,["H520"]],[27,30,["H7341"]],[30,32,["H520"]],[32,35,["H1366"]],[35,37,["H413"]],[37,39,["H8193"]],[39,42,["H5439"]],[42,45,["H259"]],[45,46,["H2239"]],[46,48,["H2088"]],[48,53,["H1354"]],[53,56,["H4196"]]]},{"k":21586,"v":[[0,4,["H4480","H2436"]],[4,7,["H776"]],[7,9,["H5704"]],[9,11,["H8481"]],[11,12,["H5835"]],[12,15,["H8147"]],[15,16,["H520"]],[16,19,["H7341"]],[19,20,["H259"]],[20,21,["H520"]],[21,26,["H4480","H5835","H6996"]],[26,28,["H5704"]],[28,30,["H1419"]],[30,31,["H5835"]],[31,34,["H702"]],[34,35,["H520"]],[35,38,["H7341"]],[38,40,["H520"]]]},{"k":21587,"v":[[0,3,["H2025"]],[3,6,["H702"]],[6,7,["H520"]],[7,11,["H4480","H741"]],[11,13,["H4605"]],[13,16,["H702"]],[16,17,["H7161"]]]},{"k":21588,"v":[[0,3,["H741"]],[3,6,["H8147","H6240"]],[6,8,["H753"]],[8,9,["H8147","H6240"]],[9,10,["H7341"]],[10,11,["H7251"]],[11,12,["H413"]],[12,14,["H702"]],[14,15,["H7253"]],[15,16,[]]]},{"k":21589,"v":[[0,3,["H5835"]],[3,6,["H702","H6240"]],[6,8,["H753"]],[8,10,["H702","H6240"]],[10,11,["H7341"]],[11,12,["H413"]],[12,14,["H702"]],[14,15,["H7253"]],[15,19,["H1366"]],[19,20,["H5439"]],[20,24,["H2677"]],[24,26,["H520"]],[26,29,["H2436"]],[29,34,["H520"]],[34,35,["H5439"]],[35,38,["H4609"]],[38,40,["H6437"]],[40,43,["H6921"]]]},{"k":21590,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,9,["H3541"]],[9,10,["H559"]],[10,12,["H136"]],[12,13,["H3069"]],[13,14,["H428"]],[14,17,["H2708"]],[17,20,["H4196"]],[20,23,["H3117"]],[23,27,["H6213"]],[27,30,["H5927"]],[30,32,["H5930"]],[32,33,["H5921"]],[33,36,["H2236"]],[36,37,["H1818"]],[37,38,["H5921"]]]},{"k":21591,"v":[[0,4,["H5414"]],[4,5,["H413"]],[5,7,["H3548"]],[7,9,["H3881"]],[9,10,["H834"]],[10,14,["H4480","H2233"]],[14,16,["H6659"]],[16,18,["H7138"]],[18,19,["H413"]],[19,22,["H8334"]],[22,25,["H5002"]],[25,27,["H136"]],[27,28,["H3069"]],[28,30,["H1121","H1241"]],[30,31,["H6499"]],[31,35,["H2403"]]]},{"k":21592,"v":[[0,4,["H3947"]],[4,7,["H4480","H1818"]],[7,10,["H5414"]],[10,12,["H5921"]],[12,14,["H702"]],[14,15,["H7161"]],[15,19,["H413"]],[19,21,["H702"]],[21,22,["H6438"]],[22,25,["H5835"]],[25,27,["H413"]],[27,29,["H1366"]],[29,31,["H5439"]],[31,35,["H2398"]],[35,37,["H3722"]],[37,38,[]]]},{"k":21593,"v":[[0,3,["H3947","(H853)"]],[3,5,["H6499"]],[5,10,["H2403"]],[10,14,["H8313"]],[14,19,["H4662"]],[19,22,["H1004"]],[22,23,["H4480","H2351"]],[23,25,["H4720"]]]},{"k":21594,"v":[[0,4,["H8145"]],[4,5,["H3117"]],[5,8,["H7126"]],[8,10,["H8163"]],[10,13,["H5795"]],[13,15,["H8549"]],[15,19,["H2403"]],[19,23,["H2398","(H853)"]],[23,25,["H4196"]],[25,26,["H834"]],[26,29,["H2398"]],[29,33,["H6499"]]]},{"k":21595,"v":[[0,6,["H3615"]],[6,8,["H4480","H2398"]],[8,12,["H7126"]],[12,14,["H1121","H1241"]],[14,15,["H6499"]],[15,17,["H8549"]],[17,20,["H352"]],[20,22,["H4480"]],[22,24,["H6629"]],[24,26,["H8549"]]]},{"k":21596,"v":[[0,4,["H7126"]],[4,6,["H6440"]],[6,8,["H3068"]],[8,11,["H3548"]],[11,13,["H7993"]],[13,14,["H4417"]],[14,15,["H5921"]],[15,22,["H5927","(H853)"]],[22,26,["H5930"]],[26,29,["H3068"]]]},{"k":21597,"v":[[0,1,["H7651"]],[1,2,["H3117"]],[2,5,["H6213"]],[5,7,["H3117"]],[7,9,["H8163"]],[9,13,["H2403"]],[13,17,["H6213"]],[17,19,["H1121","H1241"]],[19,20,["H6499"]],[20,23,["H352"]],[23,25,["H4480"]],[25,27,["H6629"]],[27,29,["H8549"]]]},{"k":21598,"v":[[0,1,["H7651"]],[1,2,["H3117"]],[2,5,["H3722","(H853)"]],[5,7,["H4196"]],[7,9,["H2891"]],[9,14,["H4390","H3027"]],[14,15,[]]]},{"k":21599,"v":[[0,2,["(H853)"]],[2,4,["H3117"]],[4,6,["H3615"]],[6,9,["H1961"]],[9,13,["H8066"]],[13,14,["H3117"]],[14,17,["H1973"]],[17,19,["H3548"]],[19,21,["H6213","(H853)"]],[21,24,["H5930"]],[24,25,["H5921"]],[25,27,["H4196"]],[27,31,["H8002"]],[31,35,["H7521"]],[35,37,["H5002"]],[37,39,["H136"]],[39,40,["H3069"]]]},{"k":21600,"v":[[0,5,["H7725","(H853)"]],[5,7,["H1870"]],[7,10,["H8179"]],[10,13,["H2435"]],[13,14,["H4720"]],[14,16,["H6437"]],[16,19,["H6921"]],[19,21,["H1931"]],[21,23,["H5462"]]]},{"k":21601,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,7,["H2088"]],[7,8,["H8179"]],[8,10,["H1961"]],[10,11,["H5462"]],[11,14,["H3808"]],[14,16,["H6605"]],[16,18,["H3808"]],[18,19,["H376"]],[19,22,["H935"]],[22,25,["H3588"]],[25,27,["H3068"]],[27,29,["H430"]],[29,31,["H3478"]],[31,34,["H935"]],[34,40,["H1961"]],[40,41,["H5462"]]]},{"k":21602,"v":[[0,2,["(H853)"]],[2,5,["H5387"]],[5,7,["H5387"]],[7,8,["H1931"]],[8,10,["H3427"]],[10,14,["H398"]],[14,15,["H3899"]],[15,16,["H6440"]],[16,18,["H3068"]],[18,21,["H935"]],[21,24,["H4480","H1870"]],[24,27,["H197"]],[27,30,["H8179"]],[30,34,["H3318"]],[34,37,["H4480","H1870"]],[37,40,[]]]},{"k":21603,"v":[[0,2,["H935"]],[2,6,["H1870"]],[6,9,["H6828"]],[9,10,["H8179"]],[10,11,["H413","H6440"]],[11,13,["H1004"]],[13,16,["H7200"]],[16,18,["H2009"]],[18,20,["H3519"]],[20,23,["H3068"]],[23,24,["H4390","(H853)"]],[24,26,["H1004"]],[26,29,["H3068"]],[29,32,["H5307"]],[32,33,["H413"]],[33,35,["H6440"]]]},{"k":21604,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H1121"]],[7,9,["H120"]],[9,11,["H7760","H3820"]],[11,13,["H7200"]],[13,16,["H5869"]],[16,18,["H8085"]],[18,21,["H241","(H853)"]],[21,22,["H3605"]],[22,23,["H834"]],[23,24,["H589"]],[24,25,["H1696"]],[25,29,["H3605"]],[29,31,["H2708"]],[31,34,["H1004"]],[34,37,["H3068"]],[37,39,["H3605"]],[39,41,["H8451"]],[41,45,["H7760","H3820"]],[45,48,["H3996"]],[48,51,["H1004"]],[51,53,["H3605"]],[53,55,["H4161"]],[55,58,["H4720"]]]},{"k":21605,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H4805"]],[7,9,["H413"]],[9,11,["H1004"]],[11,13,["H3478"]],[13,14,["H3541"]],[14,15,["H559"]],[15,17,["H136"]],[17,18,["H3069"]],[18,21,["H1004"]],[21,23,["H3478"]],[23,26,["H7227"]],[26,28,["H4480"]],[28,29,["H3605"]],[29,31,["H8441"]]]},{"k":21606,"v":[[0,5,["H935"]],[5,9,["H1121","H5236"]],[9,10,["H6189"]],[10,12,["H3820"]],[12,14,["H6189"]],[14,16,["H1320"]],[16,18,["H1961"]],[18,21,["H4720"]],[21,23,["H2490"]],[23,25,["(H853)"]],[25,27,["H1004"]],[27,30,["H7126","(H853)"]],[30,32,["H3899"]],[32,34,["H2459"]],[34,37,["H1818"]],[37,41,["H6565","(H853)"]],[41,43,["H1285"]],[43,45,["H413"]],[45,46,["H3605"]],[46,48,["H8441"]]]},{"k":21607,"v":[[0,4,["H3808"]],[4,5,["H8104"]],[5,7,["H4931"]],[7,11,["H6944"]],[11,15,["H7760"]],[15,16,["H8104"]],[16,19,["H4931"]],[19,22,["H4720"]],[22,24,[]]]},{"k":21608,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H3808","H3605"]],[6,7,["H1121","H5236"]],[7,8,["H6189"]],[8,10,["H3820"]],[10,12,["H6189"]],[12,14,["H1320"]],[14,16,["H935"]],[16,17,["H413"]],[17,19,["H4720"]],[19,21,["H3605"]],[21,22,["H1121","H5236"]],[22,23,["H834"]],[23,25,["H8432"]],[25,27,["H1121"]],[27,29,["H3478"]]]},{"k":21609,"v":[[0,1,["H3588","H518"]],[1,3,["H3881"]],[3,4,["H834"]],[4,8,["H7368"]],[8,9,["H4480","H5921"]],[9,12,["H3478"]],[12,14,["H8582"]],[14,15,["H834"]],[15,17,["H8582"]],[17,19,["H4480","H5921"]],[19,21,["H310"]],[21,23,["H1544"]],[23,27,["H5375"]],[27,29,["H5771"]]]},{"k":21610,"v":[[0,4,["H1961"]],[4,5,["H8334"]],[5,8,["H4720"]],[8,10,["H6486"]],[10,11,["H413"]],[11,13,["H8179"]],[13,16,["H1004"]],[16,18,["H8334","(H853)"]],[18,21,["H1004"]],[21,22,["H1992"]],[22,24,["H7819","(H853)"]],[24,27,["H5930"]],[27,30,["H2077"]],[30,33,["H5971"]],[33,35,["H1992"]],[35,37,["H5975"]],[37,38,["H6440"]],[38,41,["H8334"]],[41,43,[]]]},{"k":21611,"v":[[0,1,["H3282","H834"]],[1,4,["H8334","(H853)"]],[4,6,["H6440"]],[6,8,["H1544"]],[8,10,["H1961"]],[10,12,["H1004"]],[12,14,["H3478"]],[14,16,["H4383"]],[16,18,["H5771"]],[18,19,["H5921","H3651"]],[19,23,["H5375"]],[23,25,["H3027"]],[25,26,["H5921"]],[26,28,["H5002"]],[28,30,["H136"]],[30,31,["H3069"]],[31,35,["H5375"]],[35,37,["H5771"]]]},{"k":21612,"v":[[0,4,["H3808"]],[4,6,["H5066"]],[6,7,["H413"]],[7,15,["H3547"]],[15,21,["H5066"]],[21,22,["H5921"]],[22,23,["H3605"]],[23,27,["H6944"]],[27,28,["H413"]],[28,31,["H6944","H6944"]],[31,36,["H5375"]],[36,38,["H3639"]],[38,41,["H8441"]],[41,42,["H834"]],[42,45,["H6213"]]]},{"k":21613,"v":[[0,4,["H5414"]],[4,6,["H8104"]],[6,9,["H4931"]],[9,12,["H1004"]],[12,14,["H3605"]],[14,16,["H5656"]],[16,20,["H3605"]],[20,21,["H834"]],[21,24,["H6213"]],[24,25,[]]]},{"k":21614,"v":[[0,3,["H3548"]],[3,5,["H3881"]],[5,7,["H1121"]],[7,9,["H6659"]],[9,10,["H834"]],[10,11,["H8104","(H853)"]],[11,13,["H4931"]],[13,16,["H4720"]],[16,19,["H1121"]],[19,21,["H3478"]],[21,23,["H8582"]],[23,24,["H4480","H5921"]],[24,26,["H1992"]],[26,29,["H7126"]],[29,30,["H413"]],[30,33,["H8334"]],[33,39,["H5975"]],[39,40,["H6440"]],[40,43,["H7126"]],[43,47,["H2459"]],[47,50,["H1818"]],[50,51,["H5002"]],[51,53,["H136"]],[53,54,["H3069"]]]},{"k":21615,"v":[[0,1,["H1992"]],[1,3,["H935"]],[3,4,["H413"]],[4,6,["H4720"]],[6,8,["H1992"]],[8,11,["H7126"]],[11,12,["H413"]],[12,14,["H7979"]],[14,16,["H8334"]],[16,22,["H8104","(H853)"]],[22,24,["H4931"]]]},{"k":21616,"v":[[0,6,["H1961"]],[6,11,["H935"]],[11,12,["H413"]],[12,14,["H8179"]],[14,17,["H6442"]],[17,18,["H2691"]],[18,23,["H3847"]],[23,24,["H6593"]],[24,25,["H899"]],[25,27,["H3808"]],[27,28,["H6785"]],[28,30,["H5927"]],[30,31,["H5921"]],[31,35,["H8334"]],[35,38,["H8179"]],[38,41,["H6442"]],[41,42,["H2691"]],[42,44,["H1004"]]]},{"k":21617,"v":[[0,3,["H1961"]],[3,4,["H6593"]],[4,5,["H6287"]],[5,6,["H5921"]],[6,8,["H7218"]],[8,11,["H1961"]],[11,12,["H6593"]],[12,13,["H4370"]],[13,14,["H5921"]],[14,16,["H4975"]],[16,19,["H3808"]],[19,20,["H2296"]],[20,27,["H3154"]]]},{"k":21618,"v":[[0,5,["H3318"]],[5,6,["H413"]],[6,8,["H2435"]],[8,9,["H2691"]],[9,11,["H413"]],[11,13,["H2435"]],[13,14,["H2691"]],[14,15,["H413"]],[15,17,["H5971"]],[17,21,["H6584","(H853)"]],[21,23,["H899"]],[23,24,["H834"]],[24,25,["H1992"]],[25,26,["H8334"]],[26,28,["H5117"]],[28,32,["H6944"]],[32,33,["H3957"]],[33,38,["H3847"]],[38,39,["H312"]],[39,40,["H899"]],[40,44,["H3808"]],[44,45,["H6942","(H853)"]],[45,47,["H5971"]],[47,50,["H899"]]]},{"k":21619,"v":[[0,1,["H3808"]],[1,4,["H1548"]],[4,6,["H7218"]],[6,7,["H3808"]],[7,10,["H6545"]],[10,13,["H7971"]],[13,17,["H3697","H3697","(H853)"]],[17,19,["H7218"]]]},{"k":21620,"v":[[0,1,["H3808"]],[1,3,["H3605"]],[3,4,["H3548"]],[4,5,["H8354"]],[5,6,["H3196"]],[6,9,["H935"]],[9,10,["H413"]],[10,12,["H6442"]],[12,13,["H2691"]]]},{"k":21621,"v":[[0,1,["H3808"]],[1,4,["H3947"]],[4,7,["H802"]],[7,9,["H490"]],[9,15,["H1644"]],[15,16,["H3588","H518"]],[16,19,["H3947"]],[19,20,["H1330"]],[20,23,["H4480","H2233"]],[23,26,["H1004"]],[26,28,["H3478"]],[28,31,["H490"]],[31,32,["H834"]],[32,33,["H1961"]],[33,35,["H4480","H3548"]],[35,36,[]]]},{"k":21622,"v":[[0,4,["H3384"]],[4,6,["H5971"]],[6,9,["H996"]],[9,11,["H6944"]],[11,13,["H2455"]],[13,18,["H3045"]],[18,19,["H996"]],[19,21,["H2931"]],[21,24,["H2889"]]]},{"k":21623,"v":[[0,2,["H5921"]],[2,3,["H7379"]],[3,4,["H1992"]],[4,6,["H5975"]],[6,8,["H8199"]],[8,12,["H8199"]],[12,17,["H4941"]],[17,21,["H8104"]],[21,23,["H8451"]],[23,26,["H2708"]],[26,28,["H3605"]],[28,30,["H4150"]],[30,34,["H6942"]],[34,36,["H7676"]]]},{"k":21624,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,6,["H3808"]],[6,7,["H4191"]],[7,8,["H120"]],[8,10,["H2930"]],[10,12,["H3588","H518"]],[12,14,["H1"]],[14,17,["H517"]],[17,20,["H1121"]],[20,23,["H1323"]],[23,25,["H251"]],[25,28,["H269"]],[28,29,["H834"]],[29,31,["H1961"]],[31,32,["H3808"]],[32,33,["H376"]],[33,37,["H2930"]]]},{"k":21625,"v":[[0,2,["H310"]],[2,5,["H2893"]],[5,8,["H5608"]],[8,11,["H7651"]],[11,12,["H3117"]]]},{"k":21626,"v":[[0,4,["H3117"]],[4,7,["H935"]],[7,8,["H413"]],[8,10,["H6944"]],[10,11,["H413"]],[11,13,["H6442"]],[13,14,["H2691"]],[14,16,["H8334"]],[16,19,["H6944"]],[19,22,["H7126"]],[22,25,["H2403"]],[25,26,["H5002"]],[26,28,["H136"]],[28,29,["H3069"]]]},{"k":21627,"v":[[0,4,["H1961"]],[4,9,["H5159"]],[9,10,["H589"]],[10,13,["H5159"]],[13,17,["H5414"]],[17,19,["H3808"]],[19,20,["H272"]],[20,22,["H3478"]],[22,23,["H589"]],[23,26,["H272"]]]},{"k":21628,"v":[[0,1,["H1992"]],[1,3,["H398"]],[3,6,["H4503"]],[6,10,["H2403"]],[10,14,["H817"]],[14,16,["H3605"]],[16,18,["H2764"]],[18,20,["H3478"]],[20,22,["H1961"]],[22,23,[]]]},{"k":21629,"v":[[0,3,["H7225"]],[3,5,["H3605"]],[5,7,["H1061"]],[7,9,["H3605"]],[9,12,["H3605"]],[12,13,["H8641"]],[13,15,["H3605"]],[15,17,["H4480","H3605"]],[17,21,["H8641"]],[21,23,["H1961"]],[23,25,["H3548"]],[25,29,["H5414"]],[29,32,["H3548"]],[32,34,["H7225"]],[34,37,["H6182"]],[37,43,["H1293"]],[43,45,["H5117"]],[45,46,["H413"]],[46,48,["H1004"]]]},{"k":21630,"v":[[0,2,["H3548"]],[2,4,["H3808"]],[4,5,["H398"]],[5,8,["H3605"]],[8,13,["H5038"]],[13,15,["H2966"]],[15,16,["H4480"]],[16,19,["H5775"]],[19,20,["H4480"]],[20,21,["H929"]]]},{"k":21631,"v":[[0,7,["H5307","(H853)"]],[7,9,["H776"]],[9,11,["H5159"]],[11,14,["H7311"]],[14,16,["H8641"]],[16,19,["H3068"]],[19,22,["H6944"]],[22,23,["H4480"]],[23,25,["H776"]],[25,27,["H753"]],[27,31,["H753"]],[31,33,["H2568"]],[33,35,["H6242"]],[35,36,["H505"]],[36,40,["H7341"]],[40,43,["H6235"]],[43,44,["H505"]],[44,45,["H1931"]],[45,48,["H6944"]],[48,50,["H3605"]],[50,52,["H1366"]],[52,55,["H5439"]]]},{"k":21632,"v":[[0,2,["H4480","H2088"]],[2,5,["H1961"]],[5,6,["H413"]],[6,8,["H6944"]],[8,9,["H2568"]],[9,10,["H3967"]],[10,14,["H2568"]],[14,15,["H3967"]],[15,18,["H7251"]],[18,20,["H5439"]],[20,22,["H2572"]],[22,23,["H520"]],[23,25,["H5439"]],[25,28,["H4054"]],[28,29,[]]]},{"k":21633,"v":[[0,2,["H4480"]],[2,3,["H2063"]],[3,4,["H4060"]],[4,7,["H4058"]],[7,9,["H753"]],[9,11,["H2568"]],[11,13,["H6242"]],[13,14,["H505"]],[14,17,["H7341"]],[17,19,["H6235"]],[19,20,["H505"]],[20,25,["H1961"]],[25,27,["H4720"]],[27,31,["H6944","H6944"]],[31,32,[]]]},{"k":21634,"v":[[0,2,["H6944"]],[2,4,["H4480"]],[4,6,["H776"]],[6,8,["H1961"]],[8,11,["H3548"]],[11,13,["H8334"]],[13,16,["H4720"]],[16,20,["H7131"]],[20,23,["H8334","(H853)"]],[23,25,["H3068"]],[25,29,["H1961"]],[29,31,["H4725"]],[31,34,["H1004"]],[34,38,["H4720"]],[38,41,["H4720"]]]},{"k":21635,"v":[[0,3,["H2568"]],[3,5,["H6242"]],[5,6,["H505"]],[6,8,["H753"]],[8,11,["H6235"]],[11,12,["H505"]],[12,14,["H7341"]],[14,18,["H3881"]],[18,20,["H8334"]],[20,23,["H1004"]],[23,24,["H1961"]],[24,29,["H272"]],[29,31,["H6242"]],[31,32,["H3957"]]]},{"k":21636,"v":[[0,4,["H5414"]],[4,6,["H272"]],[6,9,["H5892"]],[9,10,["H2568"]],[10,11,["H505"]],[11,12,["H7341"]],[12,14,["H2568"]],[14,16,["H6242"]],[16,17,["H505"]],[17,18,["H753"]],[18,20,["H5980"]],[20,22,["H8641"]],[22,25,["H6944"]],[25,29,["H1961"]],[29,32,["H3605"]],[32,33,["H1004"]],[33,35,["H3478"]]]},{"k":21637,"v":[[0,8,["H5387"]],[8,12,["H4480","H2088"]],[12,17,["H4480","H2088"]],[17,20,["H8641"]],[20,23,["H6944"]],[23,28,["H272"]],[28,31,["H5892"]],[31,32,["H413","H6440"]],[32,34,["H8641"]],[34,37,["H6944"]],[37,40,["H413","H6440"]],[40,42,["H272"]],[42,45,["H5892"]],[45,48,["H3220"]],[48,49,["H4480","H6285"]],[49,50,["H3220"]],[50,54,["H6924"]],[54,55,["H4480","H6285"]],[55,56,["H6921"]],[56,59,["H753"]],[59,63,["H5980"]],[63,64,["H259"]],[64,67,["H2506"]],[67,70,["H3220"]],[70,71,["H4480","H1366"]],[71,72,["H413"]],[72,74,["H6921"]],[74,75,["H1366"]]]},{"k":21638,"v":[[0,3,["H776"]],[3,5,["H1961"]],[5,7,["H272"]],[7,9,["H3478"]],[9,12,["H5387"]],[12,14,["H3808"]],[14,15,["H5750"]],[15,16,["H3238","(H853)"]],[16,18,["H5971"]],[18,24,["H776"]],[24,27,["H5414"]],[27,30,["H1004"]],[30,32,["H3478"]],[32,36,["H7626"]]]},{"k":21639,"v":[[0,1,["H3541"]],[1,2,["H5002"]],[2,4,["H136"]],[4,5,["H3069"]],[5,8,["H7227"]],[8,11,["H5387"]],[11,13,["H3478"]],[13,14,["H5493"]],[14,15,["H2555"]],[15,17,["H7701"]],[17,19,["H6213"]],[19,20,["H4941"]],[20,22,["H6666"]],[22,24,["H7311"]],[24,26,["H1646"]],[26,27,["H4480","H5921"]],[27,29,["H5971"]],[29,30,["H559"]],[30,32,["H136"]],[32,33,["H3069"]]]},{"k":21640,"v":[[0,3,["H1961"]],[3,4,["H6664"]],[4,5,["H3976"]],[5,8,["H6664"]],[8,9,["H374"]],[9,12,["H6664"]],[12,13,["H1324"]]]},{"k":21641,"v":[[0,2,["H374"]],[2,5,["H1324"]],[5,7,["H1961"]],[7,9,["H259"]],[9,10,["H8506"]],[10,13,["H1324"]],[13,15,["H5375"]],[15,18,["H4643"]],[18,21,["H2563"]],[21,24,["H374"]],[24,27,["H6224"]],[27,30,["H2563"]],[30,32,["H4971"]],[32,35,["H1961"]],[35,36,["H413"]],[36,38,["H2563"]]]},{"k":21642,"v":[[0,3,["H8255"]],[3,6,["H6242"]],[6,7,["H1626"]],[7,8,["H6242"]],[8,9,["H8255"]],[9,10,["H2568"]],[10,12,["H6242"]],[12,13,["H8255"]],[13,14,["H2568","H6240"]],[14,15,["H8255"]],[15,17,["H1961"]],[17,19,["H4488"]]]},{"k":21643,"v":[[0,1,["H2063"]],[1,4,["H8641"]],[4,5,["H834"]],[5,8,["H7311"]],[8,11,["H8345"]],[11,14,["H374"]],[14,17,["H4480","H2563"]],[17,19,["H2406"]],[19,26,["H8341"]],[26,29,["H374"]],[29,32,["H4480","H2563"]],[32,34,["H8184"]]]},{"k":21644,"v":[[0,3,["H2706"]],[3,5,["H8081"]],[5,7,["H1324"]],[7,9,["H8081"]],[9,15,["H4643"]],[15,18,["H1324"]],[18,20,["H4480"]],[20,22,["H3734"]],[22,26,["H2563"]],[26,28,["H6235"]],[28,29,["H1324"]],[29,30,["H3588"]],[30,31,["H6235"]],[31,32,["H1324"]],[32,35,["H2563"]]]},{"k":21645,"v":[[0,2,["H259"]],[2,3,["H7716"]],[3,5,["H4480"]],[5,7,["H6629"]],[7,9,["H4480"]],[9,11,["H3967"]],[11,16,["H4480","H4945"]],[16,18,["H3478"]],[18,22,["H4503"]],[22,27,["H5930"]],[27,31,["H8002"]],[31,34,["H3722"]],[34,35,["H5921"]],[35,37,["H5002"]],[37,39,["H136"]],[39,40,["H3069"]]]},{"k":21646,"v":[[0,1,["H3605"]],[1,3,["H5971"]],[3,6,["H776"]],[6,8,["H1961","H413"]],[8,9,["H2063"]],[9,10,["H8641"]],[10,13,["H5387"]],[13,15,["H3478"]]]},{"k":21647,"v":[[0,4,["H1961"]],[4,7,["H5921","H5387"]],[7,11,["H5930"]],[11,14,["H4503"]],[14,17,["H5262"]],[17,20,["H2282"]],[20,25,["H2320"]],[25,29,["H7676"]],[29,31,["H3605"]],[31,32,["H4150"]],[32,35,["H1004"]],[35,37,["H3478"]],[37,38,["H1931"]],[38,40,["H6213","(H853)"]],[40,43,["H2403"]],[43,47,["H4503"]],[47,51,["H5930"]],[51,55,["H8002"]],[55,58,["H3722"]],[58,59,["H1157"]],[59,61,["H1004"]],[61,63,["H3478"]]]},{"k":21648,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,8,["H7223"]],[8,12,["H259"]],[12,16,["H2320"]],[16,19,["H3947"]],[19,21,["H1121","H1241"]],[21,22,["H6499"]],[22,24,["H8549"]],[24,26,["H2398","(H853)"]],[26,28,["H4720"]]]},{"k":21649,"v":[[0,3,["H3548"]],[3,5,["H3947"]],[5,8,["H4480","H1818"]],[8,12,["H2403"]],[12,14,["H5414"]],[14,16,["H413"]],[16,18,["H4201"]],[18,21,["H1004"]],[21,23,["H413"]],[23,25,["H702"]],[25,26,["H6438"]],[26,29,["H5835"]],[29,32,["H4196"]],[32,34,["H5921"]],[34,36,["H4201"]],[36,39,["H8179"]],[39,42,["H6442"]],[42,43,["H2691"]]]},{"k":21650,"v":[[0,2,["H3651"]],[2,5,["H6213"]],[5,7,["H7651"]],[7,11,["H2320"]],[11,14,["H4480","H376"]],[14,16,["H7686"]],[16,22,["H4480","H6612"]],[22,26,["H3722","(H853)"]],[26,28,["H1004"]]]},{"k":21651,"v":[[0,3,["H7223"]],[3,7,["H702","H6240"]],[7,8,["H3117"]],[8,11,["H2320"]],[11,14,["H1961"]],[14,16,["H6453"]],[16,18,["H2282"]],[18,20,["H7651"]],[20,21,["H3117"]],[21,23,["H4682"]],[23,26,["H398"]]]},{"k":21652,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,7,["H5387"]],[7,8,["H6213"]],[8,9,["H1157"]],[9,12,["H1157"]],[12,13,["H3605"]],[13,15,["H5971"]],[15,18,["H776"]],[18,20,["H6499"]],[20,24,["H2403"]]]},{"k":21653,"v":[[0,2,["H7651"]],[2,3,["H3117"]],[3,6,["H2282"]],[6,9,["H6213"]],[9,12,["H5930"]],[12,15,["H3068"]],[15,16,["H7651"]],[16,17,["H6499"]],[17,19,["H7651"]],[19,20,["H352"]],[20,22,["H8549"]],[22,23,["H3117"]],[23,25,["H7651"]],[25,26,["H3117"]],[26,29,["H8163"]],[29,32,["H5795"]],[32,33,["H3117"]],[33,37,["H2403"]]]},{"k":21654,"v":[[0,4,["H6213"]],[4,7,["H4503"]],[7,10,["H374"]],[10,13,["H6499"]],[13,16,["H374"]],[16,19,["H352"]],[19,22,["H1969"]],[22,24,["H8081"]],[24,27,["H374"]]]},{"k":21655,"v":[[0,3,["H7637"]],[3,7,["H2568","H6240"]],[7,8,["H3117"]],[8,11,["H2320"]],[11,14,["H6213"]],[14,16,["H428"]],[16,19,["H2282"]],[19,22,["H7651"]],[22,23,["H3117"]],[23,28,["H2403"]],[28,33,["H5930"]],[33,39,["H4503"]],[39,44,["H8081"]]]},{"k":21656,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,7,["H8179"]],[7,10,["H6442"]],[10,11,["H2691"]],[11,13,["H6437"]],[13,16,["H6921"]],[16,18,["H1961"]],[18,19,["H5462"]],[19,21,["H8337"]],[21,22,["H4639"]],[22,23,["H3117"]],[23,27,["H3117","H7676"]],[27,31,["H6605"]],[31,35,["H3117"]],[35,39,["H2320"]],[39,43,["H6605"]]]},{"k":21657,"v":[[0,3,["H5387"]],[3,5,["H935"]],[5,8,["H1870"]],[8,11,["H197"]],[11,14,["H8179"]],[14,15,["H4480","H2351"]],[15,18,["H5975"]],[18,19,["H5921"]],[19,21,["H4201"]],[21,24,["H8179"]],[24,27,["H3548"]],[27,29,["H6213","(H853)"]],[29,32,["H5930"]],[32,36,["H8002"]],[36,40,["H7812"]],[40,41,["H5921"]],[41,43,["H4670"]],[43,46,["H8179"]],[46,51,["H3318"]],[51,54,["H8179"]],[54,56,["H3808"]],[56,58,["H5462"]],[58,59,["H5704"]],[59,61,["H6153"]]]},{"k":21658,"v":[[0,3,["H5971"]],[3,6,["H776"]],[6,8,["H7812"]],[8,11,["H6607"]],[11,13,["H1931"]],[13,14,["H8179"]],[14,15,["H6440"]],[15,17,["H3068"]],[17,20,["H7676"]],[20,25,["H2320"]]]},{"k":21659,"v":[[0,4,["H5930"]],[4,5,["H834"]],[5,7,["H5387"]],[7,9,["H7126"]],[9,12,["H3068"]],[12,15,["H7676"]],[15,16,["H3117"]],[16,19,["H8337"]],[19,20,["H3532"]],[20,22,["H8549"]],[22,25,["H352"]],[25,27,["H8549"]]]},{"k":21660,"v":[[0,4,["H4503"]],[4,8,["H374"]],[8,11,["H352"]],[11,15,["H4503"]],[15,18,["H3532"]],[18,25,["H4991","H3027"]],[25,28,["H1969"]],[28,30,["H8081"]],[30,33,["H374"]]]},{"k":21661,"v":[[0,4,["H3117"]],[4,8,["H2320"]],[8,13,["H1121","H1241"]],[13,14,["H6499"]],[14,16,["H8549"]],[16,18,["H8337"]],[18,19,["H3532"]],[19,22,["H352"]],[22,25,["H1961"]],[25,27,["H8549"]]]},{"k":21662,"v":[[0,4,["H6213"]],[4,7,["H4503"]],[7,9,["H374"]],[9,12,["H6499"]],[12,15,["H374"]],[15,18,["H352"]],[18,22,["H3532"]],[22,24,["H834"]],[24,26,["H3027"]],[26,28,["H5381"]],[28,32,["H1969"]],[32,34,["H8081"]],[34,37,["H374"]]]},{"k":21663,"v":[[0,4,["H5387"]],[4,6,["H935"]],[6,10,["H935"]],[10,13,["H1870"]],[13,16,["H197"]],[16,19,["H8179"]],[19,24,["H3318"]],[24,27,["H1870"]],[27,28,[]]]},{"k":21664,"v":[[0,4,["H5971"]],[4,7,["H776"]],[7,9,["H935"]],[9,10,["H6440"]],[10,12,["H3068"]],[12,16,["H4150"]],[16,20,["H935"]],[20,23,["H1870"]],[23,26,["H6828"]],[26,27,["H8179"]],[27,29,["H7812"]],[29,32,["H3318"]],[32,35,["H1870"]],[35,38,["H5045"]],[38,39,["H8179"]],[39,43,["H935"]],[43,46,["H1870"]],[46,49,["H5045"]],[49,50,["H8179"]],[50,53,["H3318"]],[53,56,["H1870"]],[56,59,["H6828"]],[59,60,["H8179"]],[60,63,["H3808"]],[63,64,["H7725"]],[64,67,["H1870"]],[67,70,["H8179"]],[70,71,["H834"]],[71,74,["H935"]],[74,75,["H3588"]],[75,78,["H3318"]],[78,80,["H5227"]],[80,81,[]]]},{"k":21665,"v":[[0,3,["H5387"]],[3,6,["H8432"]],[6,12,["H935"]],[12,15,["H935"]],[15,20,["H3318"]],[20,23,["H3318"]]]},{"k":21666,"v":[[0,4,["H2282"]],[4,8,["H4150"]],[8,11,["H4503"]],[11,13,["H1961"]],[13,15,["H374"]],[15,18,["H6499"]],[18,21,["H374"]],[21,24,["H352"]],[24,28,["H3532"]],[28,34,["H4991","H3027"]],[34,37,["H1969"]],[37,39,["H8081"]],[39,42,["H374"]]]},{"k":21667,"v":[[0,2,["H3588"]],[2,4,["H5387"]],[4,6,["H6213"]],[6,8,["H5071"]],[8,10,["H5930"]],[10,11,["H176"]],[11,13,["H8002"]],[13,14,["H5071"]],[14,17,["H3068"]],[17,21,["H6605"]],[21,22,["(H853)"]],[22,24,["H8179"]],[24,26,["H6437"]],[26,29,["H6921"]],[29,33,["H6213","(H853)"]],[33,36,["H5930"]],[36,40,["H8002"]],[40,41,["H834"]],[41,43,["H6213"]],[43,46,["H7676"]],[46,47,["H3117"]],[47,52,["H3318"]],[52,54,["H310"]],[54,57,["H3318"]],[57,60,["H5462","(H853)"]],[60,62,["H8179"]]]},{"k":21668,"v":[[0,3,["H3117"]],[3,4,["H6213"]],[4,7,["H5930"]],[7,10,["H3068"]],[10,13,["H3532"]],[13,16,["H1121"]],[16,17,["H8141"]],[17,19,["H8549"]],[19,22,["H6213"]],[22,25,["H1242","H1242"]]]},{"k":21669,"v":[[0,4,["H6213"]],[4,7,["H4503"]],[7,8,["H5921"]],[8,11,["H1242","H1242"]],[11,14,["H8345"]],[14,17,["H374"]],[17,21,["H7992"]],[21,24,["H1969"]],[24,26,["H8081"]],[26,28,["H7450","(H853)"]],[28,32,["H5560"]],[32,35,["H4503"]],[35,36,["H8548"]],[36,39,["H5769"]],[39,40,["H2708"]],[40,43,["H3068"]]]},{"k":21670,"v":[[0,4,["H6213","(H853)"]],[4,6,["H3532"]],[6,10,["H4503"]],[10,13,["H8081"]],[13,15,["H1242","H1242"]],[15,18,["H8548"]],[18,20,["H5930"]]]},{"k":21671,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H3588"]],[6,8,["H5387"]],[8,9,["H5414"]],[9,11,["H4979"]],[11,13,["H376"]],[13,16,["H4480","H1121"]],[16,18,["H5159"]],[18,21,["H1961"]],[21,23,["H1121"]],[23,24,["H1931"]],[24,28,["H272"]],[28,30,["H5159"]]]},{"k":21672,"v":[[0,2,["H3588"]],[2,4,["H5414"]],[4,6,["H4979"]],[6,9,["H4480","H5159"]],[9,11,["H259"]],[11,14,["H4480","H5650"]],[14,18,["H1961"]],[18,20,["H5704"]],[20,22,["H8141"]],[22,24,["H1865"]],[24,28,["H7725"]],[28,31,["H5387"]],[31,32,["H389"]],[32,34,["H5159"]],[34,36,["H1961"]],[36,38,["H1121"]],[38,40,[]]]},{"k":21673,"v":[[0,3,["H5387"]],[3,5,["H3808"]],[5,12,["H3947","H5971","H4480","H5159"]],[12,16,["H3238"]],[16,19,["H4480","H272"]],[19,23,["(H853)"]],[23,25,["H1121"]],[25,26,["H5157"]],[26,31,["H4480","H272"]],[31,32,["H4616","H834"]],[32,34,["H5971"]],[34,36,["H3808"]],[36,37,["H6327"]],[37,39,["H376"]],[39,42,["H4480","H272"]]]},{"k":21674,"v":[[0,3,["H935"]],[3,7,["H3996"]],[7,8,["H834"]],[8,10,["H5921"]],[10,12,["H3802"]],[12,15,["H8179"]],[15,16,["H413"]],[16,18,["H6944"]],[18,19,["H3957"]],[19,20,["H413"]],[20,22,["H3548"]],[22,24,["H6437"]],[24,27,["H6828"]],[27,29,["H2009"]],[29,30,["H8033"]],[30,33,["H4725"]],[33,37,["H3411"]],[37,38,["H3220"]]]},{"k":21675,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H2088"]],[6,9,["H4725"]],[9,10,["H834","H8033"]],[10,12,["H3548"]],[12,14,["H1310","(H853)"]],[14,17,["H817"]],[17,21,["H2403"]],[21,22,["H834"]],[22,25,["H644"]],[25,28,["H4503"]],[28,34,["H3318","H1115"]],[34,35,["H413"]],[35,37,["H2435"]],[37,38,["H2691"]],[38,40,["H6942","(H853)"]],[40,42,["H5971"]]]},{"k":21676,"v":[[0,5,["H3318"]],[5,6,["H413"]],[6,8,["H2435"]],[8,9,["H2691"]],[9,14,["H5674"]],[14,15,["H413"]],[15,17,["H702"]],[17,18,["H4740"]],[18,21,["H2691"]],[21,23,["H2009"]],[23,29,["H4740","H2691","H2691","H4740","H2691"]],[29,33,["H2691"]]]},{"k":21677,"v":[[0,3,["H702"]],[3,4,["H4740"]],[4,7,["H2691"]],[7,10,["H2691"]],[10,11,["H7000"]],[11,13,["H705"]],[13,15,["H753"]],[15,17,["H7970"]],[17,18,["H7341"]],[18,20,["H702"]],[20,21,["H7106"]],[21,24,["H259"]],[24,25,["H4060"]]]},{"k":21678,"v":[[0,5,["H2905"]],[5,9,["H5439"]],[9,13,["H5439"]],[13,15,["H702"]],[15,19,["H6213"]],[19,22,["H4018"]],[22,23,["H4480","H8478"]],[23,25,["H2918"]],[25,27,["H5439"]]]},{"k":21679,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H428"]],[6,9,["H1004"]],[9,13,["H1310"]],[13,14,["H834","H8033"]],[14,16,["H8334"]],[16,19,["H1004"]],[19,21,["H1310","(H853)"]],[21,23,["H2077"]],[23,26,["H5971"]]]},{"k":21680,"v":[[0,5,["H7725"]],[5,6,["H413"]],[6,8,["H6607"]],[8,11,["H1004"]],[11,13,["H2009"]],[13,14,["H4325"]],[14,16,["H3318"]],[16,18,["H4480","H8478"]],[18,20,["H4670"]],[20,23,["H1004"]],[23,24,["H6921"]],[24,25,["H3588"]],[25,27,["H6440"]],[27,30,["H1004"]],[30,34,["H6921"]],[34,37,["H4325"]],[37,39,["H3381"]],[39,41,["H4480","H8478"]],[41,45,["H4480","H3802","H3233"]],[45,48,["H1004"]],[48,51,["H4480","H5045"]],[51,55,["H4196"]]]},{"k":21681,"v":[[0,5,["H3318"]],[5,8,["H1870"]],[8,11,["H8179"]],[11,12,["H6828"]],[12,16,["H5437"]],[16,18,["H1870"]],[18,19,["H2351"]],[19,20,["H413"]],[20,22,["H2351"]],[22,23,["H8179"]],[23,26,["H1870"]],[26,28,["H6437"]],[28,29,["H6921"]],[29,31,["H2009"]],[31,34,["H6379"]],[34,35,["H4325"]],[35,36,["H4480"]],[36,38,["H3233"]],[38,39,["H3802"]]]},{"k":21682,"v":[[0,4,["H376"]],[4,8,["H6957"]],[8,11,["H3027"]],[11,13,["H3318"]],[13,14,["H6921"]],[14,16,["H4058"]],[16,18,["H505"]],[18,19,["H520"]],[19,22,["H5674"]],[22,26,["H4325"]],[26,28,["H4325"]],[28,32,["H657"]]]},{"k":21683,"v":[[0,3,["H4058"]],[3,5,["H505"]],[5,7,["H5674"]],[7,11,["H4325"]],[11,13,["H4325"]],[13,17,["H1290"]],[17,20,["H4058"]],[20,22,["H505"]],[22,28,["H4325"]],[28,32,["H4975"]]]},{"k":21684,"v":[[0,3,["H4058"]],[3,5,["H505"]],[5,10,["H5158"]],[10,11,["H834"]],[11,13,["H3201"]],[13,14,["H3808"]],[14,16,["H5674"]],[16,17,["H3588"]],[17,19,["H4325"]],[19,21,["H1342"]],[21,22,["H4325"]],[22,25,["H7813"]],[25,27,["H5158"]],[27,28,["H834"]],[28,30,["H3808"]],[30,33,["H5674"]]]},{"k":21685,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H1121"]],[6,8,["H120"]],[8,11,["H7200"]],[11,15,["H1980"]],[15,21,["H7725"]],[21,24,["H8193"]],[24,27,["H5158"]]]},{"k":21686,"v":[[0,5,["H7725"]],[5,6,["H2009"]],[6,7,["H413"]],[7,9,["H8193"]],[9,12,["H5158"]],[12,14,["H3966"]],[14,15,["H7227"]],[15,16,["H6086"]],[16,20,["H4480","H2088"]],[20,24,["H4480","H2088"]]]},{"k":21687,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H428"]],[6,7,["H4325"]],[7,9,["H3318"]],[9,10,["H413"]],[10,12,["H6930"]],[12,13,["H1552"]],[13,16,["H3381"]],[16,17,["H5921"]],[17,19,["H6160"]],[19,22,["H935"]],[22,24,["H3220"]],[24,28,["H3318"]],[28,29,["H413"]],[29,31,["H3220"]],[31,33,["H4325"]],[33,36,["H7495"]]]},{"k":21688,"v":[[0,6,["H1961"]],[6,8,["H3605"]],[8,9,["H5315"]],[9,11,["H2416"]],[11,12,["H834"]],[12,13,["H8317"]],[13,14,["H413","H3605","H834","H8033"]],[14,16,["H5158"]],[16,18,["H935"]],[18,20,["H2421"]],[20,24,["H1961"]],[24,26,["H3966"]],[26,27,["H7227"]],[27,30,["H1710"]],[30,31,["H3588"]],[31,32,["H428"]],[32,33,["H4325"]],[33,35,["H935"]],[35,36,["H8033"]],[36,41,["H7495"]],[41,44,["H3605"]],[44,46,["H2416"]],[46,47,["H834","H8033"]],[47,49,["H5158"]],[49,50,["H935"]]]},{"k":21689,"v":[[0,6,["H1961"]],[6,9,["H1728"]],[9,11,["H5975"]],[11,12,["H5921"]],[12,15,["H4480","H5872"]],[15,17,["H5704"]],[17,18,["H5882"]],[18,21,["H1961"]],[21,26,["H4894"]],[26,27,["H2764"]],[27,29,["H1710"]],[29,31,["H1961"]],[31,35,["H4327"]],[35,38,["H1710"]],[38,41,["H1419"]],[41,42,["H3220"]],[42,43,["H3966"]],[43,44,["H7227"]]]},{"k":21690,"v":[[0,4,["H1207"]],[4,8,["H1360"]],[8,11,["H3808"]],[11,13,["H7495"]],[13,17,["H5414"]],[17,19,["H4417"]]]},{"k":21691,"v":[[0,2,["H5921"]],[2,4,["H5158"]],[4,5,["H5921"]],[5,7,["H8193"]],[7,11,["H4480","H2088"]],[11,15,["H4480","H2088"]],[15,17,["H5927"]],[17,18,["H3605"]],[18,19,["H6086"]],[19,21,["H3978"]],[21,23,["H5929"]],[23,25,["H3808"]],[25,26,["H5034"]],[26,27,["H3808"]],[27,30,["H6529"]],[30,33,["H8552"]],[33,39,["H1069"]],[39,43,["H2320"]],[43,44,["H3588"]],[44,46,["H4325"]],[46,47,["H1992"]],[47,49,["H3318"]],[49,50,["H4480"]],[50,52,["H4720"]],[52,55,["H6529"]],[55,58,["H1961"]],[58,60,["H3978"]],[60,63,["H5929"]],[63,66,["H8644"]]]},{"k":21692,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H136"]],[4,5,["H3069"]],[5,6,["H1454"]],[6,10,["H1366"]],[10,11,["H834"]],[11,14,["H5157","(H853)"]],[14,16,["H776"]],[16,20,["H8147","H6240"]],[20,21,["H7626"]],[21,23,["H3478"]],[23,24,["H3130"]],[24,28,["H2256"]]]},{"k":21693,"v":[[0,4,["H5157"]],[4,6,["H376"]],[6,10,["H251"]],[10,13,["H834"]],[13,16,["H5375","(H853)"]],[16,18,["H3027"]],[18,20,["H5414"]],[20,24,["H1"]],[24,26,["H2063"]],[26,27,["H776"]],[27,29,["H5307"]],[29,33,["H5159"]]]},{"k":21694,"v":[[0,2,["H2088"]],[2,6,["H1366"]],[6,9,["H776"]],[9,12,["H6828"]],[12,13,["H6285"]],[13,14,["H4480"]],[14,16,["H1419"]],[16,17,["H3220"]],[17,19,["H1870"]],[19,21,["H2855"]],[21,24,["H935"]],[24,26,["H6657"]]]},{"k":21695,"v":[[0,1,["H2574"]],[1,2,["H1268"]],[2,3,["H5453"]],[3,4,["H834"]],[4,6,["H996"]],[6,8,["H1366"]],[8,10,["H1834"]],[10,13,["H1366"]],[13,15,["H2574"]],[15,16,["H2694"]],[16,17,["H834"]],[17,19,["H413"]],[19,21,["H1366"]],[21,23,["H2362"]]]},{"k":21696,"v":[[0,3,["H1366"]],[3,4,["H4480"]],[4,6,["H3220"]],[6,8,["H1961"]],[8,9,["H2703"]],[9,11,["H1366"]],[11,13,["H1834"]],[13,16,["H6828"]],[16,17,["H6828"]],[17,20,["H1366"]],[20,22,["H2574"]],[22,27,["H6828"]],[27,28,["H6285"]]]},{"k":21697,"v":[[0,3,["H6921"]],[3,4,["H6285"]],[4,7,["H4058"]],[7,8,["H4480","H996"]],[8,9,["H2362"]],[9,11,["H4480","H996"]],[11,12,["H1834"]],[12,14,["H4480","H996"]],[14,15,["H1568"]],[15,17,["H4480","H996"]],[17,19,["H776"]],[19,21,["H3478"]],[21,23,["H3383"]],[23,26,["H4480","H1366"]],[26,27,["H5921"]],[27,29,["H6931"]],[29,30,["H3220"]],[30,35,["H6921"]],[35,36,["H6285"]]]},{"k":21698,"v":[[0,3,["H5045"]],[3,4,["H6285"]],[4,5,["H8486"]],[5,7,["H4480","H8559"]],[7,9,["H5704"]],[9,11,["H4325"]],[11,13,["H4809"]],[13,15,["H6946"]],[15,17,["H5158"]],[17,18,["H413"]],[18,20,["H1419"]],[20,21,["H3220"]],[21,26,["H8486"]],[26,27,["H6285"]],[27,28,["H5045"]]]},{"k":21699,"v":[[0,2,["H3220"]],[2,3,["H6285"]],[3,8,["H1419"]],[8,9,["H3220"]],[9,12,["H4480","H1366"]],[12,13,["H5704"]],[13,16,["H935"]],[16,18,["H5227"]],[18,19,["H2574"]],[19,20,["H2063"]],[20,23,["H3220"]],[23,24,["H6285"]]]},{"k":21700,"v":[[0,4,["H2505","(H853)"]],[4,5,["H2063"]],[5,6,["H776"]],[6,12,["H7626"]],[12,14,["H3478"]]]},{"k":21701,"v":[[0,6,["H1961"]],[6,13,["H5307","(H853)"]],[13,16,["H5159"]],[16,22,["H1616"]],[22,24,["H1481"]],[24,25,["H8432"]],[25,27,["H834"]],[27,29,["H3205"]],[29,30,["H1121"]],[30,31,["H8432"]],[31,36,["H1961"]],[36,43,["H249"]],[43,46,["H1121"]],[46,48,["H3478"]],[48,51,["H5307"]],[51,52,["H5159"]],[52,53,["H854"]],[53,55,["H8432"]],[55,57,["H7626"]],[57,59,["H3478"]]]},{"k":21702,"v":[[0,6,["H1961"]],[6,9,["H834"]],[9,10,["H7626"]],[10,12,["H1616"]],[12,13,["H1481"]],[13,14,["H854","H8033"]],[14,17,["H5414"]],[17,20,["H5159"]],[20,21,["H5002"]],[21,23,["H136"]],[23,24,["H3069"]]]},{"k":21703,"v":[[0,2,["H428"]],[2,5,["H8034"]],[5,8,["H7626"]],[8,11,["H6828"]],[11,12,["H4480","H7097"]],[12,13,["H413"]],[13,15,["H3027"]],[15,18,["H1870"]],[18,20,["H2855"]],[20,23,["H935"]],[23,25,["H2574"]],[25,26,["H2704"]],[26,28,["H1366"]],[28,30,["H1834"]],[30,31,["H6828"]],[31,32,["H413"]],[32,34,["H3027"]],[34,36,["H2574"]],[36,39,["H1961"]],[39,41,["H6285"]],[41,42,["H6921"]],[42,44,["H3220"]],[44,45,["H259"]],[45,48,["H1835"]]]},{"k":21704,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H1835"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,11,["H5704"]],[11,13,["H3220"]],[13,14,["H6285"]],[14,15,["H259"]],[15,18,["H836"]]]},{"k":21705,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H836"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,12,["H5704"]],[12,14,["H3220"]],[14,15,["H6285"]],[15,16,["H259"]],[16,19,["H5321"]]]},{"k":21706,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H5321"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,11,["H5704"]],[11,13,["H3220"]],[13,14,["H6285"]],[14,15,["H259"]],[15,18,["H4519"]]]},{"k":21707,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H4519"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,11,["H5704"]],[11,13,["H3220"]],[13,14,["H6285"]],[14,15,["H259"]],[15,18,["H669"]]]},{"k":21708,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H669"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,12,["H5704"]],[12,14,["H3220"]],[14,15,["H6285"]],[15,16,["H259"]],[16,19,["H7205"]]]},{"k":21709,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H7205"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,11,["H5704"]],[11,13,["H3220"]],[13,14,["H6285"]],[14,15,["H259"]],[15,18,["H3063"]]]},{"k":21710,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H3063"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,11,["H5704"]],[11,13,["H3220"]],[13,14,["H6285"]],[14,16,["H1961"]],[16,18,["H8641"]],[18,19,["H834"]],[19,22,["H7311"]],[22,24,["H2568"]],[24,26,["H6242"]],[26,27,["H505"]],[27,30,["H7341"]],[30,33,["H753"]],[33,35,["H259"]],[35,39,["H2506"]],[39,42,["H6921"]],[42,43,["H4480","H6285"]],[43,44,["H5704"]],[44,46,["H3220"]],[46,47,["H6285"]],[47,50,["H4720"]],[50,52,["H1961"]],[52,55,["H8432"]],[55,57,[]]]},{"k":21711,"v":[[0,2,["H8641"]],[2,3,["H834"]],[3,6,["H7311"]],[6,9,["H3068"]],[9,13,["H2568"]],[13,15,["H6242"]],[15,16,["H505"]],[16,18,["H753"]],[18,21,["H6235"]],[21,22,["H505"]],[22,24,["H7341"]]]},{"k":21712,"v":[[0,3,["H428"]],[3,7,["H3548"]],[7,9,["H1961"]],[9,11,["H6944"]],[11,12,["H8641"]],[12,15,["H6828"]],[15,16,["H2568"]],[16,18,["H6242"]],[18,19,["H505"]],[19,25,["H3220"]],[25,26,["H6235"]],[26,27,["H505"]],[27,29,["H7341"]],[29,33,["H6921"]],[33,34,["H6235"]],[34,35,["H505"]],[35,37,["H7341"]],[37,41,["H5045"]],[41,42,["H2568"]],[42,44,["H6242"]],[44,45,["H505"]],[45,47,["H753"]],[47,50,["H4720"]],[50,53,["H3068"]],[53,55,["H1961"]],[55,58,["H8432"]],[58,59,[]]]},{"k":21713,"v":[[0,6,["H3548"]],[6,9,["H6942"]],[9,12,["H4480","H1121"]],[12,14,["H6659"]],[14,15,["H834"]],[15,17,["H8104"]],[17,19,["H4931"]],[19,20,["H834"]],[20,23,["H8582","H3808"]],[23,26,["H1121"]],[26,28,["H3478"]],[28,30,["H8582"]],[30,31,["H834"]],[31,33,["H3881"]],[33,35,["H8582"]]]},{"k":21714,"v":[[0,3,["H8642"]],[3,6,["H776"]],[6,9,["H4480","H8641"]],[9,11,["H1961"]],[11,17,["H6944","H6944"]],[17,18,["H413"]],[18,20,["H1366"]],[20,23,["H3881"]]]},{"k":21715,"v":[[0,3,["H5980"]],[3,5,["H1366"]],[5,8,["H3548"]],[8,10,["H3881"]],[10,13,["H2568"]],[13,15,["H6242"]],[15,16,["H505"]],[16,18,["H753"]],[18,20,["H6235"]],[20,21,["H505"]],[21,23,["H7341"]],[23,24,["H3605"]],[24,26,["H753"]],[26,29,["H2568"]],[29,31,["H6242"]],[31,32,["H505"]],[32,35,["H7341"]],[35,36,["H6235"]],[36,37,["H505"]]]},{"k":21716,"v":[[0,4,["H3808"]],[4,5,["H4376"]],[5,6,["H4480"]],[6,8,["H3808"]],[8,9,["H4171"]],[9,10,["H3808"]],[10,11,["H5674"]],[11,13,["H7225"]],[13,16,["H776"]],[16,17,["H3588"]],[17,20,["H6944"]],[20,23,["H3068"]]]},{"k":21717,"v":[[0,3,["H2568"]],[3,4,["H505"]],[4,7,["H3498"]],[7,10,["H7341"]],[10,12,["H5921","H6440"]],[12,14,["H2568"]],[14,16,["H6242"]],[16,17,["H505"]],[17,21,["H2455"]],[21,25,["H5892"]],[25,27,["H4186"]],[27,30,["H4054"]],[30,33,["H5892"]],[33,35,["H1961"]],[35,38,["H8432"]],[38,39,[]]]},{"k":21718,"v":[[0,2,["H428"]],[2,6,["H4060"]],[6,9,["H6828"]],[9,10,["H6285"]],[10,11,["H702"]],[11,12,["H505"]],[12,14,["H2568"]],[14,15,["H3967"]],[15,18,["H5045"]],[18,19,["H6285"]],[19,20,["H702"]],[20,21,["H505"]],[21,23,["H2568"]],[23,24,["H3967"]],[24,28,["H6921"]],[28,29,["H4480","H6285"]],[29,30,["H702"]],[30,31,["H505"]],[31,33,["H2568"]],[33,34,["H3967"]],[34,37,["H3220"]],[37,38,["H6285"]],[38,39,["H702"]],[39,40,["H505"]],[40,42,["H2568"]],[42,43,["H3967"]]]},{"k":21719,"v":[[0,3,["H4054"]],[3,6,["H5892"]],[6,8,["H1961"]],[8,11,["H6828"]],[11,13,["H3967"]],[13,15,["H2572"]],[15,19,["H5045"]],[19,21,["H3967"]],[21,23,["H2572"]],[23,27,["H6921"]],[27,29,["H3967"]],[29,31,["H2572"]],[31,35,["H3220"]],[35,37,["H3967"]],[37,39,["H2572"]]]},{"k":21720,"v":[[0,3,["H3498"]],[3,5,["H753"]],[5,7,["H5980"]],[7,9,["H8641"]],[9,12,["H6944"]],[12,16,["H6235"]],[16,17,["H505"]],[17,18,["H6921"]],[18,20,["H6235"]],[20,21,["H505"]],[21,22,["H3220"]],[22,26,["H1961"]],[26,28,["H5980"]],[28,30,["H8641"]],[30,33,["H6944"]],[33,37,["H8393"]],[37,40,["H1961"]],[40,42,["H3899"]],[42,46,["H5647"]],[46,48,["H5892"]]]},{"k":21721,"v":[[0,4,["H5647"]],[4,6,["H5892"]],[6,8,["H5647"]],[8,12,["H4480","H3605"]],[12,14,["H7626"]],[14,16,["H3478"]]]},{"k":21722,"v":[[0,1,["H3605"]],[1,3,["H8641"]],[3,6,["H2568"]],[6,8,["H6242"]],[8,9,["H505"]],[9,11,["H2568"]],[11,13,["H6242"]],[13,14,["H505"]],[14,17,["H7311","(H853)"]],[17,19,["H6944"]],[19,20,["H8641"]],[20,21,["H7243"]],[21,22,["H413"]],[22,24,["H272"]],[24,27,["H5892"]]]},{"k":21723,"v":[[0,3,["H3498"]],[3,8,["H5387"]],[8,12,["H4480","H2088"]],[12,16,["H4480","H2088"]],[16,19,["H6944"]],[19,20,["H8641"]],[20,24,["H272"]],[24,27,["H5892"]],[27,29,["H413","H6440"]],[29,31,["H2568"]],[31,33,["H6242"]],[33,34,["H505"]],[34,37,["H8641"]],[37,38,["H5704"]],[38,40,["H6921"]],[40,41,["H1366"]],[41,43,["H3220"]],[43,45,["H5921","H6440"]],[45,47,["H2568"]],[47,49,["H6242"]],[49,50,["H505"]],[50,51,["H5921"]],[51,53,["H3220"]],[53,54,["H1366"]],[54,56,["H5980"]],[56,58,["H2506"]],[58,61,["H5387"]],[61,65,["H1961"]],[65,67,["H6944"]],[67,68,["H8641"]],[68,71,["H4720"]],[71,74,["H1004"]],[74,79,["H8432"]],[79,80,[]]]},{"k":21724,"v":[[0,4,["H4480","H272"]],[4,7,["H3881"]],[7,11,["H4480","H272"]],[11,14,["H5892"]],[14,18,["H8432"]],[18,21,["H834"]],[21,22,["H1961"]],[22,24,["H5387"]],[24,25,["H996"]],[25,27,["H1366"]],[27,29,["H3063"]],[29,32,["H1366"]],[32,34,["H1144"]],[34,36,["H1961"]],[36,39,["H5387"]]]},{"k":21725,"v":[[0,4,["H3499"]],[4,7,["H7626"]],[7,10,["H6921"]],[10,11,["H4480","H6285"]],[11,12,["H5704"]],[12,14,["H3220"]],[14,15,["H6285"]],[15,16,["H1144"]],[16,19,["H259"]],[19,20,[]]]},{"k":21726,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H1144"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,11,["H5704"]],[11,13,["H3220"]],[13,14,["H6285"]],[14,15,["H8095"]],[15,18,["H259"]],[18,19,[]]]},{"k":21727,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H8095"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,11,["H5704"]],[11,13,["H3220"]],[13,14,["H6285"]],[14,15,["H3485"]],[15,16,["H259"]],[16,17,[]]]},{"k":21728,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H3485"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,11,["H5704"]],[11,13,["H3220"]],[13,14,["H6285"]],[14,15,["H2074"]],[15,16,["H259"]],[16,17,[]]]},{"k":21729,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H2074"]],[6,9,["H6921"]],[9,10,["H4480","H6285"]],[10,11,["H5704"]],[11,13,["H3220"]],[13,14,["H6285"]],[14,15,["H1410"]],[15,16,["H259"]],[16,17,[]]]},{"k":21730,"v":[[0,2,["H5921"]],[2,4,["H1366"]],[4,6,["H1410"]],[6,7,["H413"]],[7,9,["H5045"]],[9,10,["H6285"]],[10,11,["H8486"]],[11,13,["H1366"]],[13,15,["H1961"]],[15,18,["H4480","H8559"]],[18,21,["H4325"]],[21,23,["H4808"]],[23,25,["H6946"]],[25,29,["H5158"]],[29,30,["H5921"]],[30,32,["H1419"]],[32,33,["H3220"]]]},{"k":21731,"v":[[0,1,["H2063"]],[1,4,["H776"]],[4,5,["H834"]],[5,10,["H5307"]],[10,13,["H7626"]],[13,15,["H3478"]],[15,17,["H4480","H5159"]],[17,19,["H428"]],[19,22,["H4256"]],[22,23,["H5002"]],[23,25,["H136"]],[25,26,["H3069"]]]},{"k":21732,"v":[[0,2,["H428"]],[2,6,["H8444"]],[6,9,["H5892"]],[9,12,["H6828"]],[12,13,["H4480","H6285"]],[13,14,["H702"]],[14,15,["H505"]],[15,17,["H2568"]],[17,18,["H3967"]],[18,19,["H4060"]]]},{"k":21733,"v":[[0,3,["H8179"]],[3,6,["H5892"]],[6,9,["H5921"]],[9,11,["H8034"]],[11,14,["H7626"]],[14,16,["H3478"]],[16,17,["H7969"]],[17,18,["H8179"]],[18,19,["H6828"]],[19,20,["H259"]],[20,21,["H8179"]],[21,23,["H7205"]],[23,24,["H259"]],[24,25,["H8179"]],[25,27,["H3063"]],[27,28,["H259"]],[28,29,["H8179"]],[29,31,["H3878"]]]},{"k":21734,"v":[[0,2,["H413"]],[2,4,["H6921"]],[4,5,["H6285"]],[5,6,["H702"]],[6,7,["H505"]],[7,9,["H2568"]],[9,10,["H3967"]],[10,12,["H7969"]],[12,13,["H8179"]],[13,15,["H259"]],[15,16,["H8179"]],[16,18,["H3130"]],[18,19,["H259"]],[19,20,["H8179"]],[20,22,["H1144"]],[22,23,["H259"]],[23,24,["H8179"]],[24,26,["H1835"]]]},{"k":21735,"v":[[0,4,["H5045"]],[4,5,["H6285"]],[5,6,["H702"]],[6,7,["H505"]],[7,9,["H2568"]],[9,10,["H3967"]],[10,11,["H4060"]],[11,13,["H7969"]],[13,14,["H8179"]],[14,15,["H259"]],[15,16,["H8179"]],[16,18,["H8095"]],[18,19,["H259"]],[19,20,["H8179"]],[20,22,["H3485"]],[22,23,["H259"]],[23,24,["H8179"]],[24,26,["H2074"]]]},{"k":21736,"v":[[0,3,["H3220"]],[3,4,["H6285"]],[4,5,["H702"]],[5,6,["H505"]],[6,8,["H2568"]],[8,9,["H3967"]],[9,12,["H7969"]],[12,13,["H8179"]],[13,14,["H259"]],[14,15,["H8179"]],[15,17,["H1410"]],[17,18,["H259"]],[18,19,["H8179"]],[19,21,["H836"]],[21,22,["H259"]],[22,23,["H8179"]],[23,25,["H5321"]]]},{"k":21737,"v":[[0,4,["H5439"]],[4,5,["H8083","H6240"]],[5,6,["H505"]],[6,10,["H8034"]],[10,13,["H5892"]],[13,16,["H4480","H3117"]],[16,20,["H3068"]],[20,22,["H8033"]]]},{"k":21738,"v":[[0,3,["H7969"]],[3,4,["H8141"]],[4,7,["H4438"]],[7,9,["H3079"]],[9,10,["H4428"]],[10,12,["H3063"]],[12,13,["H935"]],[13,14,["H5019"]],[14,15,["H4428"]],[15,17,["H894"]],[17,19,["H3389"]],[19,21,["H6696","H5921"]],[21,22,[]]]},{"k":21739,"v":[[0,3,["H136"]],[3,4,["H5414","(H853)"]],[4,5,["H3079"]],[5,6,["H4428"]],[6,8,["H3063"]],[8,11,["H3027"]],[11,13,["H4480","H7117"]],[13,16,["H3627"]],[16,19,["H1004"]],[19,21,["H430"]],[21,25,["H935"]],[25,27,["H776"]],[27,29,["H8152"]],[29,32,["H1004"]],[32,35,["H430"]],[35,38,["H935"]],[38,40,["H3627"]],[40,43,["H214"]],[43,44,["H1004"]],[44,47,["H430"]]]},{"k":21740,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H828"]],[6,8,["H7227"]],[8,11,["H5631"]],[11,15,["H935"]],[15,19,["H4480","H1121"]],[19,21,["H3478"]],[21,26,["H4480","H2233","H4410"]],[26,28,["H4480"]],[28,30,["H6579"]]]},{"k":21741,"v":[[0,1,["H3206"]],[1,3,["H834"]],[3,5,["H369","H3605"]],[5,6,["H3971"]],[6,9,["H2896","H4758"]],[9,11,["H7919"]],[11,13,["H3605"]],[13,14,["H2451"]],[14,16,["H3045"]],[16,18,["H1847"]],[18,20,["H995"]],[20,21,["H4093"]],[21,23,["H834"]],[23,26,["H3581"]],[26,30,["H5975"]],[30,33,["H4428"]],[33,34,["H1964"]],[34,39,["H3925"]],[39,41,["H5612"]],[41,44,["H3956"]],[44,47,["H3778"]]]},{"k":21742,"v":[[0,3,["H4428"]],[3,4,["H4487"]],[4,7,["H3117","H3117"]],[7,8,["H1697"]],[8,12,["H4480","H6598","H4428"]],[12,16,["H4480","H3196"]],[16,19,["H4960"]],[19,21,["H1431"]],[21,23,["H7969"]],[23,24,["H8141"]],[24,28,["H4480","H7117"]],[28,32,["H5975"]],[32,33,["H6440"]],[33,35,["H4428"]]]},{"k":21743,"v":[[0,4,["H1961"]],[4,7,["H4480","H1121"]],[7,9,["H3063"]],[9,10,["H1840"]],[10,11,["H2608"]],[11,12,["H4332"]],[12,14,["H5838"]]]},{"k":21744,"v":[[0,4,["H8269"]],[4,7,["H5631"]],[7,8,["H7760"]],[8,9,["H8034"]],[9,12,["H7760"]],[12,14,["H1840"]],[14,18,["H1095"]],[18,21,["H2608"]],[21,23,["H7714"]],[23,26,["H4332"]],[26,28,["H4335"]],[28,31,["H5838"]],[31,33,["H5664"]]]},{"k":21745,"v":[[0,2,["H1840"]],[2,3,["H7760"]],[3,4,["H5921"]],[4,6,["H3820"]],[6,7,["H834"]],[7,10,["H3808"]],[10,12,["H1351"]],[12,19,["H6598","H4428"]],[19,23,["H3196"]],[23,26,["H4960"]],[26,29,["H1245"]],[29,32,["H4480","H8269"]],[32,35,["H5631"]],[35,36,["H834"]],[36,39,["H3808"]],[39,41,["H1351"]]]},{"k":21746,"v":[[0,2,["H430"]],[2,4,["H5414","(H853)"]],[4,5,["H1840"]],[5,7,["H2617"]],[7,10,["H7356"]],[10,11,["H6440"]],[11,13,["H8269"]],[13,16,["H5631"]]]},{"k":21747,"v":[[0,3,["H8269"]],[3,6,["H5631"]],[6,7,["H559"]],[7,9,["H1840"]],[9,10,["H589"]],[10,11,["H3372","(H853)"]],[11,13,["H113"]],[13,15,["H4428"]],[15,16,["H834"]],[16,18,["H4487","(H853)"]],[18,20,["H3978"]],[20,23,["H4960"]],[23,24,["H834"]],[24,25,["H4100"]],[25,28,["H7200","(H853)"]],[28,30,["H6440"]],[30,32,["H2196"]],[32,33,["H4480"]],[33,35,["H3206"]],[35,36,["H834"]],[36,40,["H1524"]],[40,46,["H2325","(H853)"]],[46,48,["H7218"]],[48,51,["H4428"]]]},{"k":21748,"v":[[0,2,["H559"]],[2,3,["H1840"]],[3,4,["H413"]],[4,5,["H4453"]],[5,6,["H834"]],[6,8,["H8269"]],[8,11,["H5631"]],[11,13,["H4487"]],[13,14,["H5921"]],[14,15,["H1840"]],[15,16,["H2608"]],[16,17,["H4332"]],[17,19,["H5838"]]]},{"k":21749,"v":[[0,1,["H5254","(H853)"]],[1,3,["H5650"]],[3,6,["H4994"]],[6,7,["H6235"]],[7,8,["H3117"]],[8,12,["H5414"]],[12,14,["H2235"]],[14,16,["H398"]],[16,18,["H4325"]],[18,20,["H8354"]]]},{"k":21750,"v":[[0,4,["H4758"]],[4,7,["H7200"]],[7,8,["H6440"]],[8,12,["H4758"]],[12,15,["H3206"]],[15,17,["H398","(H853)"]],[17,24,["H6598","H4428"]],[24,26,["H834"]],[26,28,["H7200"]],[28,29,["H6213"]],[29,30,["H5973"]],[30,32,["H5650"]]]},{"k":21751,"v":[[0,3,["H8085"]],[3,7,["H2088"]],[7,8,["H1697"]],[8,10,["H5254"]],[10,12,["H6235"]],[12,13,["H3117"]]]},{"k":21752,"v":[[0,4,["H4480","H7117"]],[4,6,["H6235"]],[6,7,["H3117"]],[7,9,["H4758"]],[9,10,["H7200"]],[10,11,["H2896"]],[11,13,["H1277"]],[13,15,["H1320"]],[15,16,["H4480"]],[16,17,["H3605"]],[17,19,["H3206"]],[19,22,["H398","(H853)"]],[22,28,["H6598","H4428"]]]},{"k":21753,"v":[[0,2,["H4453"]],[2,4,["H5375","(H853)"]],[4,9,["H6598"]],[9,12,["H3196"]],[12,16,["H4960"]],[16,18,["H5414"]],[18,20,["H2235"]]]},{"k":21754,"v":[[0,3,["H428"]],[3,4,["H702"]],[4,5,["H3206"]],[5,6,["H430"]],[6,7,["H5414"]],[7,9,["H4093"]],[9,11,["H7919"]],[11,13,["H3605"]],[13,14,["H5612"]],[14,16,["H2451"]],[16,18,["H1840"]],[18,20,["H995"]],[20,22,["H3605"]],[22,23,["H2377"]],[23,25,["H2472"]]]},{"k":21755,"v":[[0,4,["H4480","H7117"]],[4,7,["H3117"]],[7,8,["H834"]],[8,10,["H4428"]],[10,12,["H559"]],[12,17,["H935"]],[17,20,["H8269"]],[20,23,["H5631"]],[23,26,["H935"]],[26,27,["H6440"]],[27,28,["H5019"]]]},{"k":21756,"v":[[0,3,["H4428"]],[3,4,["H1696"]],[4,5,["H854"]],[5,10,["H4480","H3605"]],[10,12,["H4672"]],[12,13,["H3808"]],[13,15,["H1840"]],[15,16,["H2608"]],[16,17,["H4332"]],[17,19,["H5838"]],[19,21,["H5975"]],[21,23,["H6440"]],[23,25,["H4428"]]]},{"k":21757,"v":[[0,3,["H3605"]],[3,4,["H1697"]],[4,6,["H2451"]],[6,8,["H998"]],[8,9,["H834"]],[9,11,["H4428"]],[11,12,["H1245"]],[12,13,["H4480"]],[13,16,["H4672"]],[16,18,["H6235"]],[18,19,["H3027"]],[19,21,["H5921"]],[21,22,["H3605"]],[22,24,["H2748"]],[24,26,["H825"]],[26,27,["H834"]],[27,30,["H3605"]],[30,32,["H4438"]]]},{"k":21758,"v":[[0,2,["H1840"]],[2,3,["H1961"]],[3,5,["H5704"]],[5,7,["H259"]],[7,8,["H8141"]],[8,10,["H4428"]],[10,11,["H3566"]]]},{"k":21759,"v":[[0,4,["H8147"]],[4,5,["H8141"]],[5,8,["H4438"]],[8,10,["H5019"]],[10,11,["H5019"]],[11,12,["H2492"]],[12,13,["H2472"]],[13,16,["H7307"]],[16,18,["H6470"]],[18,21,["H8142"]],[21,22,["H1961"]],[22,23,["H5921"]],[23,24,[]]]},{"k":21760,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,6,["H7121"]],[6,8,["H2748"]],[8,11,["H825"]],[11,14,["H3784"]],[14,17,["H3778"]],[17,20,["H5046"]],[20,22,["H4428"]],[22,24,["H2472"]],[24,27,["H935"]],[27,29,["H5975"]],[29,30,["H6440"]],[30,32,["H4428"]]]},{"k":21761,"v":[[0,3,["H4428"]],[3,4,["H559"]],[4,9,["H2492"]],[9,11,["H2472"]],[11,14,["H7307"]],[14,16,["H6470"]],[16,18,["H3045","(H853)"]],[18,20,["H2472"]]]},{"k":21762,"v":[[0,2,["H1696"]],[2,4,["H3778"]],[4,7,["H4428"]],[7,9,["H762"]],[9,11,["H4430"]],[11,12,["H2418"]],[12,14,["H5957"]],[14,15,["H560"]],[15,17,["H5649"]],[17,19,["H2493"]],[19,23,["H2324"]],[23,25,["H6591"]]]},{"k":21763,"v":[[0,2,["H4430"]],[2,3,["H6032"]],[3,5,["H560"]],[5,8,["H3779"]],[8,10,["H4406"]],[10,12,["H230"]],[12,13,["H4481"]],[13,15,["H2006"]],[15,18,["H3809"]],[18,20,["H3046"]],[20,24,["H2493"]],[24,27,["H6591"]],[27,32,["H5648"]],[32,34,["H1917"]],[34,37,["H1005"]],[37,40,["H7761"]],[40,42,["H5122"]]]},{"k":21764,"v":[[0,2,["H2006"]],[2,4,["H2324"]],[4,6,["H2493"]],[6,9,["H6591"]],[9,13,["H6902"]],[13,14,["H4481","H6925"]],[14,16,["H4978"]],[16,18,["H5023"]],[18,20,["H7690"]],[20,21,["H3367"]],[21,22,["H3861"]],[22,23,["H2324"]],[23,26,["H2493"]],[26,29,["H6591"]],[29,30,[]]]},{"k":21765,"v":[[0,2,["H6032"]],[2,3,["H8579"]],[3,5,["H560"]],[5,8,["H4430"]],[8,9,["H560"]],[9,11,["H5649"]],[11,13,["H2493"]],[13,17,["H2324"]],[17,19,["H6591"]],[19,21,[]]]},{"k":21766,"v":[[0,2,["H4430"]],[2,3,["H6032"]],[3,5,["H560"]],[5,6,["H576"]],[6,7,["H3046"]],[7,8,["H4481"]],[8,9,["H3330"]],[9,10,["H1768"]],[10,11,["H608"]],[11,13,["H2084"]],[13,15,["H5732"]],[15,16,["H3606","H6903","H1768"]],[16,18,["H2370","H1768"]],[18,20,["H4406"]],[20,22,["H230"]],[22,23,["H4481"]],[23,24,[]]]},{"k":21767,"v":[[0,1,["H1768"]],[1,2,["H2006"]],[2,5,["H3809"]],[5,7,["H3046"]],[7,11,["H2493"]],[11,15,["H2298"]],[15,16,["H1882"]],[16,22,["H2164"]],[22,23,["H3538"]],[23,25,["H7844"]],[25,26,["H4406"]],[26,28,["H560"]],[28,29,["H6925"]],[29,31,["H5705","H1768"]],[31,33,["H5732"]],[33,35,["H8133"]],[35,36,["H3861"]],[36,37,["H560"]],[37,40,["H2493"]],[40,44,["H3046"]],[44,45,["H1768"]],[45,48,["H2324"]],[48,51,["H6591"]],[51,52,[]]]},{"k":21768,"v":[[0,2,["H3779"]],[2,3,["H6032"]],[3,4,["H6925"]],[4,6,["H4430"]],[6,8,["H560"]],[8,10,["H383"]],[10,11,["H3809"]],[11,13,["H606"]],[13,14,["H5922"]],[14,16,["H3007"]],[16,17,["H1768"]],[17,18,["H3202"]],[18,19,["H2324"]],[19,21,["H4430"]],[21,22,["H4406"]],[22,23,["H3606","H6903","H1768"]],[23,26,["H3809","H3606"]],[26,27,["H4430"]],[27,28,["H7229"]],[28,30,["H7990"]],[30,32,["H7593"]],[32,34,["H1836"]],[34,36,["H3606"]],[36,37,["H2749"]],[37,39,["H826"]],[39,41,["H3779"]]]},{"k":21769,"v":[[0,5,["H3358"]],[5,6,["H4406"]],[6,7,["H1768"]],[7,9,["H4430"]],[9,10,["H7593"]],[10,13,["H383"]],[13,14,["H3809"]],[14,15,["H321"]],[15,16,["H1768"]],[16,18,["H2324"]],[18,20,["H6925"]],[20,22,["H4430"]],[22,23,["H3861"]],[23,25,["H426"]],[25,26,["H1768"]],[26,27,["H4070"]],[27,28,["H383"]],[28,29,["H3809"]],[29,30,["H5974"]],[30,31,["H1321"]]]},{"k":21770,"v":[[0,3,["H3606","H6903","H1836"]],[3,5,["H4430"]],[5,7,["H1149"]],[7,9,["H7690"]],[9,10,["H7108"]],[10,12,["H560"]],[12,14,["H7"]],[14,15,["H3606"]],[15,17,["H2445"]],[17,20,["H895"]]]},{"k":21771,"v":[[0,3,["H1882"]],[3,5,["H5312"]],[5,8,["H2445"]],[8,12,["H6992"]],[12,15,["H1156"]],[15,16,["H1841"]],[16,19,["H2269"]],[19,22,["H6992"]]]},{"k":21772,"v":[[0,1,["H116"]],[1,2,["H1841"]],[2,3,["H8421"]],[3,5,["H5843"]],[5,7,["H2942"]],[7,9,["H746"]],[9,11,["H7229"]],[11,12,["H1768"]],[12,14,["H4430"]],[14,15,["H2877"]],[15,16,["H1768"]],[16,19,["H5312"]],[19,21,["H6992"]],[21,23,["H2445"]],[23,26,["H895"]]]},{"k":21773,"v":[[0,2,["H6032"]],[2,4,["H560"]],[4,6,["H746"]],[6,8,["H1768","H4430"]],[8,9,["H7990"]],[9,10,["H5922","H4101"]],[10,13,["H1882"]],[13,15,["H2685"]],[15,16,["H4481","H6925"]],[16,18,["H4430"]],[18,19,["H116"]],[19,20,["H746"]],[20,24,["H3046","H4406"]],[24,26,["H1841"]]]},{"k":21774,"v":[[0,2,["H1841"]],[2,4,["H5954"]],[4,6,["H1156"]],[6,7,["H4481"]],[7,9,["H4430"]],[9,10,["H1768"]],[10,13,["H5415"]],[13,15,["H2166"]],[15,20,["H2324"]],[20,22,["H4430"]],[22,24,["H6591"]]]},{"k":21775,"v":[[0,1,["H116"]],[1,2,["H1841"]],[2,3,["H236"]],[3,6,["H1005"]],[6,11,["H3046","H4406"]],[11,13,["H2608"]],[13,14,["H4333"]],[14,16,["H5839"]],[16,18,["H2269"]]]},{"k":21776,"v":[[0,4,["H1156"]],[4,5,["H7359"]],[5,6,["H4481","H6925"]],[6,8,["H426"]],[8,10,["H8065"]],[10,11,["H5922"]],[11,12,["H1836"]],[12,13,["H7328"]],[13,14,["H1768"]],[14,15,["H1841"]],[15,18,["H2269"]],[18,20,["H3809"]],[20,21,["H7"]],[21,22,["H5974"]],[22,24,["H7606"]],[24,27,["H2445"]],[27,30,["H895"]]]},{"k":21777,"v":[[0,1,["H116"]],[1,4,["H7328"]],[4,5,["H1541"]],[5,7,["H1841"]],[7,10,["H1768","H3916"]],[10,11,["H2376"]],[11,12,["H116"]],[12,13,["H1841"]],[13,14,["H1289"]],[14,16,["H426"]],[16,18,["H8065"]]]},{"k":21778,"v":[[0,1,["H1841"]],[1,2,["H6032"]],[2,4,["H560"]],[4,5,["H1289"]],[5,6,["H1934"]],[6,8,["H8036"]],[8,9,["H1768"]],[9,10,["H426"]],[10,14,["H4481","H5957","H5705","H5957"]],[14,15,["H1768"]],[15,16,["H2452"]],[16,18,["H1370"]],[18,20,[]]]},{"k":21779,"v":[[0,2,["H1932"]],[2,3,["H8133"]],[3,5,["H5732"]],[5,8,["H2166"]],[8,10,["H5709"]],[10,11,["H4430"]],[11,14,["H6966"]],[14,15,["H4430"]],[15,17,["H3052"]],[17,18,["H2452"]],[18,21,["H2445"]],[21,23,["H4486"]],[23,27,["H3046"]],[27,28,["H999"]]]},{"k":21780,"v":[[0,1,["H1932"]],[1,2,["H1541"]],[2,4,["H5994"]],[4,7,["H5642"]],[7,9,["H3046"]],[9,10,["H4101"]],[10,14,["H2816"]],[14,17,["H5094"]],[17,18,["H8271"]],[18,19,["H5974"]],[19,20,[]]]},{"k":21781,"v":[[0,1,["H576"]],[1,2,["H3029"]],[2,5,["H7624"]],[5,9,["H426"]],[9,12,["H2"]],[12,13,["H1768"]],[13,15,["H3052"]],[15,17,["H2452"]],[17,19,["H1370"]],[19,23,["H3046"]],[23,26,["H3705"]],[26,27,["H1768"]],[27,29,["H1156"]],[29,30,["H4481"]],[30,32,["H1768"]],[32,37,["H3046"]],[37,41,["H4430"]],[41,42,["H4406"]]]},{"k":21782,"v":[[0,1,["H3606","H6903","H1836"]],[1,2,["H1841"]],[2,4,["H5954"]],[4,5,["H5922"]],[5,6,["H746"]],[6,7,["H1768"]],[7,9,["H4430"]],[9,11,["H4483"]],[11,13,["H7"]],[13,15,["H2445"]],[15,18,["H895"]],[18,20,["H236"]],[20,22,["H560"]],[22,23,["H3652"]],[23,26,["H7"]],[26,27,["H409"]],[27,29,["H2445"]],[29,32,["H895"]],[32,35,["H5924"]],[35,36,["H6925"]],[36,38,["H4430"]],[38,42,["H2324"]],[42,45,["H4430"]],[45,47,["H6591"]]]},{"k":21783,"v":[[0,1,["H116"]],[1,2,["H746"]],[2,4,["H5954"]],[4,5,["H1841"]],[5,6,["H6925"]],[6,8,["H4430"]],[8,10,["H927"]],[10,12,["H560"]],[12,13,["H3652"]],[13,18,["H7912"]],[18,20,["H1400"]],[20,21,["H4481"]],[21,23,["H1123","H1547"]],[23,24,["H1768"]],[24,25,["H3061"]],[25,26,["H1768"]],[26,29,["H3046"]],[29,32,["H4430"]],[32,34,["H6591"]]]},{"k":21784,"v":[[0,2,["H4430"]],[2,3,["H6032"]],[3,5,["H560"]],[5,7,["H1841"]],[7,8,["H1768"]],[8,9,["H8036"]],[9,11,["H1096"]],[11,12,["H383"]],[12,14,["H3546"]],[14,17,["H3046"]],[17,21,["H2493"]],[21,22,["H1768"]],[22,25,["H2370"]],[25,28,["H6591"]],[28,29,[]]]},{"k":21785,"v":[[0,1,["H1841"]],[1,2,["H6032"]],[2,6,["H6925"]],[6,8,["H4430"]],[8,10,["H560"]],[10,12,["H7328"]],[12,13,["H1768"]],[13,15,["H4430"]],[15,17,["H7593"]],[17,18,["H3202","H3809"]],[18,20,["H2445"]],[20,23,["H826"]],[23,25,["H2749"]],[25,27,["H1505"]],[27,28,["H2324"]],[28,31,["H4430"]]]},{"k":21786,"v":[[0,1,["H1297"]],[1,3,["H383"]],[3,5,["H426"]],[5,7,["H8065"]],[7,9,["H1541"]],[9,10,["H7328"]],[10,13,["H3046"]],[13,16,["H4430"]],[16,17,["H5020"]],[17,18,["H4101","H1768"]],[18,20,["H1934"]],[20,23,["H320"]],[23,24,["H3118"]],[24,26,["H2493"]],[26,29,["H2376"]],[29,32,["H7217"]],[32,33,["H5922"]],[33,35,["H4903"]],[35,37,["H1836"]]]},{"k":21787,"v":[[0,3,["H607"]],[3,5,["H4430"]],[5,7,["H7476"]],[7,8,["H5559"]],[8,12,["H5922"]],[12,14,["H4903"]],[14,15,["H4101","H1768"]],[15,19,["H1934"]],[19,20,["H311","H1836"]],[20,24,["H1541"]],[24,25,["H7328"]],[25,27,["H3046"]],[27,30,["H4101","H1768"]],[30,34,["H1934"]]]},{"k":21788,"v":[[0,4,["H576"]],[4,5,["H1836"]],[5,6,["H7328"]],[6,8,["H3809"]],[8,9,["H1541"]],[9,14,["H2452"]],[14,15,["H1768"]],[15,17,["H383"]],[17,19,["H4481"]],[19,20,["H3606"]],[20,21,["H2417"]],[21,22,["H3861"]],[22,25,["H5922","H1701"]],[25,26,["H1768"]],[26,29,["H3046"]],[29,31,["H6591"]],[31,34,["H4430"]],[34,39,["H3046"]],[39,41,["H7476"]],[41,44,["H3825"]]]},{"k":21789,"v":[[0,1,["H607"]],[1,3,["H4430"]],[3,4,["H2370","H1934"]],[4,6,["H431"]],[6,7,["H2298"]],[7,8,["H7690"]],[8,9,["H6755"]],[9,10,["H1797"]],[10,11,["H7229"]],[11,12,["H6755"]],[12,14,["H2122"]],[14,16,["H3493"]],[16,17,["H6966"]],[17,18,["H6903"]],[18,22,["H7299"]],[22,25,["H1763"]]]},{"k":21790,"v":[[0,1,["H1932"]],[1,2,["H6755"]],[2,3,["H7217"]],[3,5,["H1768"]],[5,6,["H2869"]],[6,7,["H1722"]],[7,9,["H2306"]],[9,12,["H1872"]],[12,13,["H1768"]],[13,14,["H3702"]],[14,16,["H4577"]],[16,19,["H3410"]],[19,20,["H1768"]],[20,21,["H5174"]]]},{"k":21791,"v":[[0,2,["H8243"]],[2,3,["H1768"]],[3,4,["H6523"]],[4,6,["H7271"]],[6,7,["H4481"]],[7,8,["H1768"]],[8,9,["H6523"]],[9,11,["H4481"]],[11,12,["H1768"]],[12,13,["H2635"]]]},{"k":21792,"v":[[0,2,["H2370","H1934"]],[2,3,["H5705"]],[3,4,["H1768"]],[4,6,["H69"]],[6,9,["H1505"]],[9,10,["H1768","H3809"]],[10,11,["H3028"]],[11,13,["H4223"]],[13,15,["H6755"]],[15,16,["H5922"]],[16,18,["H7271"]],[18,21,["H1768"]],[21,22,["H6523"]],[22,24,["H2635"]],[24,29,["H1855","H1994"]]]},{"k":21793,"v":[[0,1,["H116"]],[1,4,["H6523"]],[4,6,["H2635"]],[6,8,["H5174"]],[8,10,["H3702"]],[10,13,["H1722"]],[13,16,["H1751"]],[16,17,["H2298"]],[17,19,["H1934"]],[19,22,["H5784"]],[22,23,["H4481"]],[23,25,["H7007"]],[25,26,["H147"]],[26,29,["H7308"]],[29,32,["H5376","H1994"]],[32,34,["H3809","H3606"]],[34,35,["H870"]],[35,37,["H7912"]],[37,42,["H69"]],[42,43,["H1768"]],[43,44,["H4223"]],[44,46,["H6755"]],[46,47,["H1934"]],[47,49,["H7229"]],[49,50,["H2906"]],[50,52,["H4391"]],[52,54,["H3606"]],[54,55,["H772"]]]},{"k":21794,"v":[[0,1,["H1836"]],[1,4,["H2493"]],[4,8,["H560"]],[8,10,["H6591"]],[10,12,["H6925"]],[12,14,["H4430"]]]},{"k":21795,"v":[[0,1,["H607"]],[1,3,["H4430"]],[3,6,["H4430"]],[6,8,["H4430"]],[8,9,["H1768"]],[9,11,["H426"]],[11,13,["H8065"]],[13,15,["H3052"]],[15,18,["H4437"]],[18,19,["H2632"]],[19,21,["H8632"]],[21,23,["H3367"]]]},{"k":21796,"v":[[0,2,["H3606","H1768"]],[2,4,["H1123"]],[4,6,["H606"]],[6,7,["H1753"]],[7,9,["H2423"]],[9,12,["H1251"]],[12,15,["H5776"]],[15,18,["H8065"]],[18,21,["H3052"]],[21,24,["H3028"]],[24,29,["H7981"]],[29,32,["H3606"]],[32,33,["H607"]],[33,35,["H1932"]],[35,36,["H7217"]],[36,37,["H1768"]],[37,38,["H1722"]]]},{"k":21797,"v":[[0,2,["H870"]],[2,5,["H6966"]],[5,6,["H317"]],[6,7,["H4437"]],[7,8,["H772"]],[8,9,["H4481"]],[9,12,["H317"]],[12,13,["H8523"]],[13,14,["H4437"]],[14,15,["H1768"]],[15,16,["H5174"]],[16,17,["H1768"]],[17,20,["H7981"]],[20,22,["H3606"]],[22,24,["H772"]]]},{"k":21798,"v":[[0,3,["H7244"]],[3,4,["H4437"]],[4,6,["H1934"]],[6,7,["H8624"]],[7,9,["H6523"]],[9,11,["H3606","H6903","H1768"]],[11,12,["H6523"]],[12,15,["H1855"]],[15,17,["H2827"]],[17,18,["H3606"]],[18,22,["H6523"]],[22,23,["H1768"]],[23,24,["H7490"]],[24,25,["H3606"]],[25,26,["H459"]],[26,31,["H1855"]],[31,33,["H7490"]]]},{"k":21799,"v":[[0,2,["H1768"]],[2,4,["H2370"]],[4,6,["H7271"]],[6,8,["H677"]],[8,9,["H4481"]],[9,10,["H1768"]],[10,11,["H6353"]],[11,12,["H2635"]],[12,14,["H4481"]],[14,16,["H6523"]],[16,18,["H4437"]],[18,20,["H1934"]],[20,21,["H6386"]],[21,25,["H1934"]],[25,28,["H4481"]],[28,30,["H5326"]],[30,31,["H1768"]],[31,33,["H6523"]],[33,35,["H3606","H6903","H1768"]],[35,37,["H2370"]],[37,39,["H6523"]],[39,40,["H6151"]],[40,42,["H2917"]],[42,43,["H2635"]]]},{"k":21800,"v":[[0,4,["H677"]],[4,7,["H7271"]],[7,9,["H4481"]],[9,11,["H6523"]],[11,13,["H4481"]],[13,15,["H2635"]],[15,18,["H4437"]],[18,20,["H1934"]],[20,21,["H4481","H7118"]],[21,22,["H8624"]],[22,24,["H4481"]],[24,25,["H8406"]]]},{"k":21801,"v":[[0,2,["H1768"]],[2,4,["H2370"]],[4,5,["H6523"]],[5,6,["H6151"]],[6,8,["H2917"]],[8,9,["H2635"]],[9,11,["H1934"]],[11,13,["H6151"]],[13,16,["H2234"]],[16,18,["H606"]],[18,21,["H1934"]],[21,22,["H3809"]],[22,23,["H1693"]],[23,24,["H1836"]],[24,25,["H5974"]],[25,26,["H1836"]],[26,28,["H1888","H1768"]],[28,29,["H6523"]],[29,31,["H3809"]],[31,32,["H6151"]],[32,33,["H5974"]],[33,34,["H2635"]]]},{"k":21802,"v":[[0,4,["H3118"]],[4,5,["H1768"]],[5,6,["H581"]],[6,7,["H4430"]],[7,10,["H426"]],[10,12,["H8065"]],[12,14,["H6966"]],[14,16,["H4437"]],[16,17,["H1768"]],[17,19,["H3809","H5957"]],[19,21,["H2255"]],[21,24,["H4437"]],[24,26,["H3809"]],[26,28,["H7662"]],[28,30,["H321"]],[30,31,["H5972"]],[31,37,["H1855"]],[37,39,["H5487"]],[39,40,["H3606"]],[40,41,["H459"]],[41,42,["H4437"]],[42,44,["H1932"]],[44,46,["H6966"]],[46,48,["H5957"]]]},{"k":21803,"v":[[0,2,["H3606","H6903","H1768"]],[2,4,["H2370"]],[4,5,["H1768"]],[5,7,["H69"]],[7,10,["H1505"]],[10,13,["H4481","H2906"]],[13,14,["H1768","H3809"]],[14,15,["H3028"]],[15,21,["H1855"]],[21,23,["H6523"]],[23,25,["H5174"]],[25,27,["H2635"]],[27,29,["H3702"]],[29,32,["H1722"]],[32,34,["H7229"]],[34,35,["H426"]],[35,38,["H3046"]],[38,41,["H4430"]],[41,42,["H4101","H1768"]],[42,46,["H1934"]],[46,47,["H311","H1836"]],[47,50,["H2493"]],[50,52,["H3330"]],[52,55,["H6591"]],[55,57,["H540"]]]},{"k":21804,"v":[[0,1,["H116"]],[1,3,["H4430"]],[3,4,["H5020"]],[4,5,["H5308"]],[5,6,["H5922"]],[6,8,["H600"]],[8,10,["H5457"]],[10,11,["H1841"]],[11,13,["H560"]],[13,17,["H5260"]],[17,19,["H4061"]],[19,22,["H5208"]],[22,24,[]]]},{"k":21805,"v":[[0,2,["H4430"]],[2,3,["H6032"]],[3,5,["H1841"]],[5,7,["H560"]],[7,8,["H4481"]],[8,10,["H7187"]],[10,13,["H1768"]],[13,15,["H426"]],[15,18,["H426"]],[18,20,["H426"]],[20,23,["H4756"]],[23,25,["H4430"]],[25,28,["H1541"]],[28,30,["H7328"]],[30,31,["H1768"]],[31,33,["H3202"]],[33,34,["H1541"]],[34,35,["H1836"]],[35,36,["H7328"]]]},{"k":21806,"v":[[0,1,["H116"]],[1,3,["H4430"]],[3,8,["H7236","H1841"]],[8,10,["H3052"]],[10,12,["H7690"]],[12,13,["H7260"]],[13,14,["H4978"]],[14,18,["H7981"]],[18,19,["H5922"]],[19,21,["H3606"]],[21,22,["H4083"]],[22,24,["H895"]],[24,26,["H7229"]],[26,29,["H5460"]],[29,30,["H5922"]],[30,31,["H3606"]],[31,33,["H2445"]],[33,36,["H895"]]]},{"k":21807,"v":[[0,2,["H1841"]],[2,3,["H1156"]],[3,4,["H4481"]],[4,6,["H4430"]],[6,9,["H4483"]],[9,10,["H7715"]],[10,11,["H4336"]],[11,13,["H5665"]],[13,14,["H5922"]],[14,16,["H5673"]],[16,17,["H1768"]],[17,19,["H4083"]],[19,21,["H895"]],[21,23,["H1841"]],[23,27,["H8651"]],[27,30,["H4430"]]]},{"k":21808,"v":[[0,1,["H5020"]],[1,3,["H4430"]],[3,4,["H5648"]],[4,6,["H6755"]],[6,7,["H1768"]],[7,8,["H1722"]],[8,10,["H7314"]],[10,12,["H8361"]],[12,13,["H521"]],[13,16,["H6613"]],[16,18,["H8353"]],[18,19,["H521"]],[19,23,["H6966"]],[23,26,["H1236"]],[26,28,["H1757"]],[28,31,["H4083"]],[31,33,["H895"]]]},{"k":21809,"v":[[0,2,["H5020"]],[2,4,["H4430"]],[4,5,["H7972"]],[5,8,["H3673"]],[8,10,["H324"]],[10,12,["H5460"]],[12,15,["H6347"]],[15,17,["H148"]],[17,19,["H1411"]],[19,21,["H1884"]],[21,23,["H8614"]],[23,25,["H3606"]],[25,27,["H7984"]],[27,30,["H4083"]],[30,32,["H858"]],[32,35,["H2597"]],[35,38,["H6755"]],[38,39,["H1768"]],[39,40,["H5020"]],[40,42,["H4430"]],[42,45,["H6966"]]]},{"k":21810,"v":[[0,1,["H116"]],[1,3,["H324"]],[3,5,["H5460"]],[5,7,["H6347"]],[7,9,["H148"]],[9,11,["H1411"]],[11,13,["H1884"]],[13,15,["H8614"]],[15,17,["H3606"]],[17,19,["H7984"]],[19,22,["H4083"]],[22,25,["H3673"]],[25,28,["H2597"]],[28,31,["H6755"]],[31,32,["H1768"]],[32,33,["H5020"]],[33,35,["H4430"]],[35,38,["H6966"]],[38,41,["H6966"]],[41,42,["H6903"]],[42,44,["H6755"]],[44,45,["H1768"]],[45,46,["H5020"]],[46,49,["H6966"]]]},{"k":21811,"v":[[0,3,["H3744"]],[3,4,["H7123"]],[4,5,["H2429"]],[5,10,["H560"]],[10,12,["H5972"]],[12,13,["H524"]],[13,15,["H3961"]]]},{"k":21812,"v":[[0,3,["H1768"]],[3,4,["H5732"]],[4,6,["H8086"]],[6,8,["H7032"]],[8,11,["H7162"]],[11,12,["H4953"]],[12,13,["H7030"]],[13,14,["H5443"]],[14,15,["H6460"]],[15,16,["H5481"]],[16,18,["H3606"]],[18,19,["H2178"]],[19,21,["H2170"]],[21,24,["H5308"]],[24,26,["H5457"]],[26,28,["H1722"]],[28,29,["H6755"]],[29,30,["H1768"]],[30,31,["H5020"]],[31,33,["H4430"]],[33,36,["H6966"]]]},{"k":21813,"v":[[0,2,["H4479","H1768"]],[2,5,["H5308","H3809"]],[5,7,["H5457"]],[7,11,["H8160"]],[11,13,["H7412"]],[13,16,["H1459"]],[16,19,["H3345"]],[19,20,["H5135"]],[20,21,["H861"]]]},{"k":21814,"v":[[0,1,["H3606","H6903","H1836"]],[1,4,["H2166"]],[4,5,["H1768"]],[5,6,["H3606"]],[6,8,["H5972"]],[8,9,["H8086"]],[9,11,["H7032"]],[11,14,["H7162"]],[14,15,["H4953"]],[15,16,["H7030"]],[16,17,["H5443"]],[17,18,["H6460"]],[18,20,["H3606"]],[20,21,["H2178"]],[21,23,["H2170"]],[23,24,["H3606"]],[24,26,["H5972"]],[26,28,["H524"]],[28,31,["H3961"]],[31,33,["H5308"]],[33,35,["H5457"]],[35,37,["H1722"]],[37,38,["H6755"]],[38,39,["H1768"]],[39,40,["H5020"]],[40,42,["H4430"]],[42,45,["H6966"]]]},{"k":21815,"v":[[0,1,["H3606","H6903","H1836"]],[1,4,["H2166"]],[4,5,["H1400"]],[5,6,["H3779"]],[6,8,["H7127"]],[8,10,["H399","H7170"]],[10,12,["H1768","H3062"]]]},{"k":21816,"v":[[0,2,["H6032"]],[2,4,["H560"]],[4,7,["H4430"]],[7,8,["H5020"]],[8,10,["H4430"]],[10,11,["H2418"]],[11,13,["H5957"]]]},{"k":21817,"v":[[0,1,["H607"]],[1,3,["H4430"]],[3,5,["H7761"]],[5,7,["H2942"]],[7,8,["H1768"]],[8,9,["H3606"]],[9,10,["H606"]],[10,11,["H1768"]],[11,13,["H8086"]],[13,15,["H7032"]],[15,18,["H7162"]],[18,19,["H4953"]],[19,20,["H7030"]],[20,21,["H5443"]],[21,22,["H6460"]],[22,24,["H5481"]],[24,26,["H3606"]],[26,27,["H2178"]],[27,29,["H2170"]],[29,32,["H5308"]],[32,34,["H5457"]],[34,36,["H1722"]],[36,37,["H6755"]]]},{"k":21818,"v":[[0,2,["H4479","H1768"]],[2,5,["H5308","H3809"]],[5,7,["H5457"]],[7,12,["H7412"]],[12,15,["H1459"]],[15,18,["H3345"]],[18,19,["H5135"]],[19,20,["H861"]]]},{"k":21819,"v":[[0,2,["H383"]],[2,3,["H1400"]],[3,4,["H3062"]],[4,5,["H1768"]],[5,8,["H4483"]],[8,9,["H5922"]],[9,11,["H5673"]],[11,14,["H4083"]],[14,16,["H895"]],[16,17,["H7715"]],[17,18,["H4336"]],[18,20,["H5665"]],[20,21,["H479"]],[21,22,["H1400"]],[22,24,["H4430"]],[24,26,["H3809"]],[26,27,["H7761","H2942","H5922"]],[27,30,["H6399"]],[30,31,["H3809"]],[31,33,["H426"]],[33,34,["H3809"]],[34,35,["H5457"]],[35,37,["H1722"]],[37,38,["H6755"]],[38,39,["H1768"]],[39,43,["H6966"]]]},{"k":21820,"v":[[0,1,["H116"]],[1,2,["H5020"]],[2,5,["H7266"]],[5,7,["H2528"]],[7,8,["H560"]],[8,10,["H858"]],[10,11,["H7715"]],[11,12,["H4336"]],[12,14,["H5665"]],[14,15,["H116"]],[15,17,["H858"]],[17,18,["H479"]],[18,19,["H1400"]],[19,20,["H6925"]],[20,22,["H4430"]]]},{"k":21821,"v":[[0,1,["H5020"]],[1,2,["H6032"]],[2,4,["H560"]],[4,9,["H6656"]],[9,11,["H7715"]],[11,12,["H4336"]],[12,14,["H5665"]],[14,15,["H383"]],[15,16,["H3809"]],[16,18,["H6399"]],[18,20,["H426"]],[20,21,["H3809"]],[21,22,["H5457"]],[22,24,["H1722"]],[24,25,["H6755"]],[25,26,["H1768"]],[26,30,["H6966"]]]},{"k":21822,"v":[[0,1,["H3705"]],[1,2,["H2006"]],[2,4,["H383"]],[4,5,["H6263"]],[5,6,["H1768"]],[6,8,["H1768"]],[8,9,["H5732"]],[9,11,["H8086"]],[11,13,["H7032"]],[13,16,["H7162"]],[16,17,["H4953"]],[17,18,["H7030"]],[18,19,["H5443"]],[19,20,["H6460"]],[20,22,["H5481"]],[22,24,["H3606"]],[24,25,["H2178"]],[25,27,["H2170"]],[27,30,["H5308"]],[30,32,["H5457"]],[32,34,["H6755"]],[34,35,["H1768"]],[35,38,["H5648"]],[38,41,["H2006"]],[41,43,["H5457"]],[43,44,["H3809"]],[44,48,["H7412"]],[48,51,["H8160"]],[51,54,["H1459"]],[54,57,["H3345"]],[57,58,["H5135"]],[58,59,["H861"]],[59,61,["H4479"]],[61,63,["H1932"]],[63,64,["H426"]],[64,65,["H1768"]],[65,67,["H7804"]],[67,70,["H4481"]],[70,72,["H3028"]]]},{"k":21823,"v":[[0,1,["H7715"]],[1,2,["H4336"]],[2,4,["H5665"]],[4,5,["H6032"]],[5,7,["H560"]],[7,10,["H4430"]],[10,12,["H5020"]],[12,13,["H586"]],[13,15,["H3809"]],[15,16,["H2818"]],[16,18,["H8421"]],[18,20,["H5922"]],[20,21,["H1836"]],[21,22,["H6600"]]]},{"k":21824,"v":[[0,1,["H2006"]],[1,3,["H383"]],[3,6,["H426"]],[6,7,["H1768"]],[7,8,["H586"]],[8,9,["H6399"]],[9,11,["H3202"]],[11,13,["H7804"]],[13,15,["H4481"]],[15,17,["H3345"]],[17,18,["H5135"]],[18,19,["H861"]],[19,23,["H7804"]],[23,26,["H4481"]],[26,28,["H3028"]],[28,30,["H4430"]]]},{"k":21825,"v":[[0,2,["H2006"]],[2,3,["H3809"]],[3,4,["H1934"]],[4,6,["H3046"]],[6,10,["H4430"]],[10,11,["H1768"]],[11,13,["H383"]],[13,14,["H3809"]],[14,15,["H6399"]],[15,17,["H426"]],[17,18,["H3809"]],[18,19,["H5457"]],[19,21,["H1722"]],[21,22,["H6755"]],[22,23,["H1768"]],[23,27,["H6966"]]]},{"k":21826,"v":[[0,1,["H116"]],[1,3,["H5020"]],[3,4,["H4391"]],[4,6,["H2528"]],[6,9,["H6755"]],[9,12,["H600"]],[12,14,["H8133"]],[14,15,["H5922"]],[15,16,["H7715"]],[16,17,["H4336"]],[17,19,["H5665"]],[19,22,["H6032"]],[22,24,["H560"]],[24,28,["H228"]],[28,30,["H861"]],[30,31,["H2298"]],[31,33,["H7655"]],[33,34,["H5922"]],[34,35,["H1768"]],[35,38,["H2370"]],[38,41,["H228"]]]},{"k":21827,"v":[[0,3,["H560"]],[3,6,["H1401","H2429"]],[6,7,["H1400"]],[7,8,["H1768"]],[8,12,["H2429"]],[12,14,["H3729"]],[14,15,["H7715"]],[15,16,["H4336"]],[16,18,["H5665"]],[18,21,["H7412"]],[21,25,["H3345"]],[25,26,["H5135"]],[26,27,["H861"]]]},{"k":21828,"v":[[0,1,["H116"]],[1,2,["H479"]],[2,3,["H1400"]],[3,5,["H3729"]],[5,8,["H5622"]],[8,10,["H6361"]],[10,13,["H3737"]],[13,17,["H3831"]],[17,20,["H7412"]],[20,23,["H1459"]],[23,26,["H3345"]],[26,27,["H5135"]],[27,28,["H861"]]]},{"k":21829,"v":[[0,1,["H3606","H6903","H1836"]],[1,2,["H4481","H1768"]],[2,4,["H4430"]],[4,5,["H4406"]],[5,7,["H2685"]],[7,10,["H861"]],[10,11,["H3493"]],[11,12,["H228"]],[12,14,["H7631"]],[14,15,["H1768"]],[15,17,["H5135"]],[17,18,["H6992"]],[18,19,["H479"]],[19,20,["H1400"]],[20,21,["H1768"]],[21,23,["H5267"]],[23,24,["H7715"]],[24,25,["H4336"]],[25,27,["H5665"]]]},{"k":21830,"v":[[0,2,["H479"]],[2,3,["H8532"]],[3,4,["H1400"]],[4,5,["H7715"]],[5,6,["H4336"]],[6,8,["H5665"]],[8,10,["H5308"]],[10,11,["H3729"]],[11,14,["H1459"]],[14,17,["H3345"]],[17,18,["H5135"]],[18,19,["H861"]]]},{"k":21831,"v":[[0,1,["H116"]],[1,2,["H5020"]],[2,4,["H4430"]],[4,6,["H8429"]],[6,9,["H6966"]],[9,11,["H927"]],[11,13,["H6032"]],[13,15,["H560"]],[15,18,["H1907"]],[18,20,["H3809"]],[20,22,["H7412"]],[22,23,["H8532"]],[23,24,["H1400"]],[24,25,["H3729"]],[25,28,["H1459"]],[28,31,["H5135"]],[31,33,["H6032"]],[33,35,["H560"]],[35,38,["H4430"]],[38,39,["H3330"]],[39,41,["H4430"]]]},{"k":21832,"v":[[0,2,["H6032"]],[2,4,["H560"]],[4,5,["H1888"]],[5,6,["H576"]],[6,7,["H2370"]],[7,8,["H703"]],[8,9,["H1400"]],[9,10,["H8271"]],[10,11,["H1981"]],[11,14,["H1459"]],[14,17,["H5135"]],[17,20,["H383"]],[20,21,["H3809"]],[21,22,["H2257"]],[22,25,["H7299"]],[25,26,["H1768"]],[26,28,["H7244"]],[28,30,["H1821"]],[30,32,["H1247"]],[32,34,["H426"]]]},{"k":21833,"v":[[0,1,["H116"]],[1,2,["H5020"]],[2,4,["H7127"]],[4,7,["H8651"]],[7,10,["H3345"]],[10,11,["H5135"]],[11,12,["H861"]],[12,14,["H6032"]],[14,16,["H560"]],[16,17,["H7715"]],[17,18,["H4336"]],[18,20,["H5665"]],[20,22,["H5649"]],[22,23,["H1768"]],[23,26,["H5943"]],[26,27,["H426"]],[27,29,["H5312"]],[29,31,["H858"]],[31,33,["H116"]],[33,34,["H7715"]],[34,35,["H4336"]],[35,37,["H5665"]],[37,39,["H5312"]],[39,40,["H4481"]],[40,42,["H1459"]],[42,45,["H5135"]]]},{"k":21834,"v":[[0,3,["H324"]],[3,4,["H5460"]],[4,6,["H6347"]],[6,9,["H4430"]],[9,10,["H1907"]],[10,13,["H3673"]],[13,14,["H2370"]],[14,15,["H479"]],[15,16,["H1400"]],[16,18,["H1768"]],[18,19,["H1655"]],[19,21,["H5135"]],[21,24,["H7981","H3809"]],[24,25,["H3809"]],[25,28,["H8177"]],[28,31,["H7217"]],[31,32,["H2761"]],[32,33,["H3809"]],[33,36,["H5622"]],[36,37,["H8133"]],[37,38,["H3809"]],[38,40,["H7382"]],[40,42,["H5135"]],[42,44,["H5709"]],[44,46,[]]]},{"k":21835,"v":[[0,2,["H5020"]],[2,3,["H6032"]],[3,5,["H560"]],[5,6,["H1289"]],[6,9,["H426"]],[9,10,["H1768"]],[10,11,["H7715"]],[11,12,["H4336"]],[12,14,["H5665"]],[14,15,["H1768"]],[15,17,["H7972"]],[17,19,["H4398"]],[19,21,["H7804"]],[21,23,["H5649"]],[23,24,["H1768"]],[24,25,["H7365"]],[25,26,["H5922"]],[26,30,["H8133"]],[30,32,["H4430"]],[32,33,["H4406"]],[33,35,["H3052"]],[35,37,["H1655"]],[37,38,["H1768"]],[38,41,["H3809"]],[41,42,["H6399"]],[42,43,["H3809"]],[43,44,["H5457"]],[44,45,["H3606"]],[45,46,["H426"]],[46,47,["H3861"]],[47,50,["H426"]]]},{"k":21836,"v":[[0,3,["H4481","H7761"]],[3,5,["H2942"]],[5,6,["H1768"]],[6,7,["H3606"]],[7,8,["H5972"]],[8,9,["H524"]],[9,11,["H3961"]],[11,12,["H1768"]],[12,13,["H560"]],[13,16,["H7955"]],[16,17,["H5922"]],[17,19,["H426"]],[19,20,["H1768"]],[20,21,["H7715"]],[21,22,["H4336"]],[22,24,["H5665"]],[24,27,["H5648"]],[27,29,["H1917"]],[29,32,["H1005"]],[32,35,["H7739"]],[35,37,["H5122"]],[37,38,["H3606","H6903","H1768"]],[38,40,["H383"]],[40,41,["H3809"]],[41,42,["H321"]],[42,43,["H426"]],[43,44,["H1768"]],[44,45,["H3202"]],[45,46,["H5338"]],[46,49,["H1836"]]]},{"k":21837,"v":[[0,1,["H116"]],[1,3,["H4430"]],[3,4,["H6744"]],[4,5,["H7715"]],[5,6,["H4336"]],[6,8,["H5665"]],[8,11,["H4083"]],[11,13,["H895"]]]},{"k":21838,"v":[[0,1,["H5020"]],[1,3,["H4430"]],[3,5,["H3606"]],[5,6,["H5972"]],[6,7,["H524"]],[7,9,["H3961"]],[9,10,["H1768"]],[10,11,["H1753"]],[11,13,["H3606"]],[13,15,["H772"]],[15,16,["H8001"]],[16,18,["H7680"]],[18,20,[]]]},{"k":21839,"v":[[0,4,["H8232","H6925"]],[4,6,["H2324"]],[6,8,["H852"]],[8,10,["H8540"]],[10,11,["H1768"]],[11,13,["H5943"]],[13,14,["H426"]],[14,16,["H5648"]],[16,17,["H5974"]],[17,18,[]]]},{"k":21840,"v":[[0,1,["H4101"]],[1,2,["H7260"]],[2,5,["H852"]],[5,7,["H4101"]],[7,8,["H8624"]],[8,11,["H8540"]],[11,13,["H4437"]],[13,16,["H5957"]],[16,17,["H4437"]],[17,20,["H7985"]],[20,22,["H5974"]],[22,23,["H1859"]],[23,25,["H1859"]]]},{"k":21841,"v":[[0,1,["H576"]],[1,2,["H5020"]],[2,3,["H1934"]],[3,5,["H7954"]],[5,8,["H1005"]],[8,10,["H7487"]],[10,13,["H1965"]]]},{"k":21842,"v":[[0,2,["H2370"]],[2,4,["H2493"]],[4,8,["H1763"]],[8,11,["H2031"]],[11,12,["H5922"]],[12,14,["H4903"]],[14,17,["H2376"]],[17,20,["H7217"]],[20,21,["H927"]],[21,22,[]]]},{"k":21843,"v":[[0,2,["H4481","H7761"]],[2,5,["H2942"]],[5,8,["H5924"]],[8,9,["H3606"]],[9,11,["H2445"]],[11,14,["H895"]],[14,15,["H6925"]],[15,17,["H1768"]],[17,21,["H3046"]],[21,25,["H6591"]],[25,28,["H2493"]]]},{"k":21844,"v":[[0,1,["H116"]],[1,3,["H5954"]],[3,5,["H2749"]],[5,7,["H826"]],[7,9,["H3779"]],[9,12,["H1505"]],[12,14,["H576"]],[14,15,["H560"]],[15,17,["H2493"]],[17,18,["H6925"]],[18,23,["H3809"]],[23,25,["H3046"]],[25,29,["H6591"]],[29,30,[]]]},{"k":21845,"v":[[0,2,["H5705"]],[2,4,["H318"]],[4,5,["H1841"]],[5,7,["H5954"]],[7,8,["H6925"]],[8,10,["H1768"]],[10,11,["H8036"]],[11,13,["H1096"]],[13,17,["H8036"]],[17,20,["H426"]],[20,23,["H1768"]],[23,26,["H7308"]],[26,29,["H6922"]],[29,30,["H426"]],[30,32,["H6925"]],[32,35,["H560"]],[35,37,["H2493"]],[37,38,[]]]},{"k":21846,"v":[[0,2,["H1096"]],[2,3,["H7229"]],[3,6,["H2749"]],[6,7,["H1768"]],[7,8,["H576"]],[8,9,["H3046"]],[9,10,["H1768"]],[10,12,["H7308"]],[12,15,["H6922"]],[15,16,["H426"]],[16,21,["H3809","H3606"]],[21,22,["H7328"]],[22,23,["H598"]],[23,25,["H560"]],[25,28,["H2376"]],[28,31,["H2493"]],[31,32,["H1768"]],[32,35,["H2370"]],[35,38,["H6591"]],[38,39,[]]]},{"k":21847,"v":[[0,4,["H2376"]],[4,7,["H7217"]],[7,8,["H5922"]],[8,10,["H4903"]],[10,12,["H1934","H2370"]],[12,14,["H431"]],[14,16,["H363"]],[16,19,["H1459"]],[19,22,["H772"]],[22,25,["H7314"]],[25,28,["H7690"]]]},{"k":21848,"v":[[0,2,["H363"]],[2,3,["H7236"]],[3,6,["H8631"]],[6,9,["H7314"]],[9,11,["H4291"]],[11,13,["H8065"]],[13,16,["H2379"]],[16,20,["H5491"]],[20,22,["H3606"]],[22,24,["H772"]]]},{"k":21849,"v":[[0,2,["H6074"]],[2,5,["H8209"]],[5,8,["H4"]],[8,10,["H7690"]],[10,15,["H4203"]],[15,17,["H3606"]],[17,19,["H2423"]],[19,22,["H1251"]],[22,24,["H2927"]],[24,25,["H8460"]],[25,29,["H6853"]],[29,32,["H8065"]],[32,33,["H1753"]],[33,36,["H6056"]],[36,39,["H3606"]],[39,40,["H1321"]],[40,42,["H2110"]],[42,43,["H4481"]],[43,44,[]]]},{"k":21850,"v":[[0,2,["H1934","H2370"]],[2,5,["H2376"]],[5,8,["H7217"]],[8,9,["H5922"]],[9,11,["H4903"]],[11,13,["H431"]],[13,15,["H5894"]],[15,19,["H6922"]],[19,21,["H5182"]],[21,22,["H4481"]],[22,23,["H8065"]]]},{"k":21851,"v":[[0,2,["H7123"]],[2,3,["H2429"]],[3,5,["H560"]],[5,6,["H3652"]],[6,8,["H1414"]],[8,10,["H363"]],[10,13,["H7113"]],[13,15,["H6056"]],[15,17,["H5426"]],[17,19,["H6074"]],[19,21,["H921"]],[21,23,["H4"]],[23,26,["H2423"]],[26,28,["H5111"]],[28,29,["H4481"]],[29,30,["H8479"]],[30,34,["H6853"]],[34,35,["H4481"]],[35,37,["H6056"]]]},{"k":21852,"v":[[0,1,["H1297"]],[1,2,["H7662"]],[2,4,["H6136"]],[4,7,["H8330"]],[7,10,["H772"]],[10,14,["H613"]],[14,15,["H1768"]],[15,16,["H6523"]],[16,18,["H5174"]],[18,22,["H1883"]],[22,23,["H1768"]],[23,25,["H1251"]],[25,30,["H6647"]],[30,33,["H2920"]],[33,35,["H8065"]],[35,39,["H2508"]],[39,41,["H5974"]],[41,43,["H2423"]],[43,46,["H6211"]],[46,49,["H772"]]]},{"k":21853,"v":[[0,3,["H3825"]],[3,5,["H8133"]],[5,6,["H4481"]],[6,7,["H606"]],[7,11,["H2423"]],[11,12,["H3825"]],[12,14,["H3052"]],[14,19,["H7655"]],[19,20,["H5732"]],[20,21,["H2499"]],[21,22,["H5922"]],[22,23,[]]]},{"k":21854,"v":[[0,2,["H6600"]],[2,6,["H1510"]],[6,9,["H5894"]],[9,12,["H7595"]],[12,15,["H3983"]],[15,19,["H6922"]],[19,20,["H5705"]],[20,22,["H1701"]],[22,23,["H1768"]],[23,25,["H2417"]],[25,27,["H3046"]],[27,28,["H1768"]],[28,31,["H5943"]],[31,32,["H7990"]],[32,35,["H4437"]],[35,37,["H606"]],[37,39,["H5415"]],[39,42,["H4479","H1768"]],[42,44,["H6634"]],[44,47,["H6966"]],[47,48,["H5922"]],[48,51,["H8215"]],[51,53,["H606"]]]},{"k":21855,"v":[[0,1,["H1836"]],[1,2,["H2493"]],[2,3,["H576"]],[3,4,["H4430"]],[4,5,["H5020"]],[5,7,["H2370"]],[7,9,["H607"]],[9,11,["H1096"]],[11,12,["H560"]],[12,14,["H6591"]],[14,17,["H3606","H6903","H1768"]],[17,18,["H3606"]],[18,20,["H2445"]],[20,24,["H4437"]],[24,27,["H3202","H3809"]],[27,30,["H3046"]],[30,34,["H6591"]],[34,36,["H607"]],[36,38,["H3546"]],[38,39,["H1768"]],[39,41,["H7308"]],[41,44,["H6922"]],[44,45,["H426"]],[45,48,[]]]},{"k":21856,"v":[[0,1,["H116"]],[1,2,["H1841"]],[2,3,["H1768"]],[3,4,["H8036"]],[4,6,["H1096"]],[6,8,["H8075"]],[8,10,["H2298"]],[10,11,["H8160"]],[11,14,["H7476"]],[14,15,["H927"]],[15,18,["H4430"]],[18,19,["H6032"]],[19,21,["H560"]],[21,22,["H1096"]],[22,24,["H409"]],[24,26,["H2493"]],[26,29,["H6591"]],[29,31,["H927"]],[31,33,["H1096"]],[33,34,["H6032"]],[34,36,["H560"]],[36,38,["H4756"]],[38,40,["H2493"]],[40,45,["H8131"]],[45,49,["H6591"]],[49,53,["H6146"]]]},{"k":21857,"v":[[0,2,["H363"]],[2,3,["H1768"]],[3,5,["H2370"]],[5,6,["H1768"]],[6,7,["H7236"]],[7,10,["H8631"]],[10,12,["H7314"]],[12,13,["H4291"]],[13,16,["H8065"]],[16,19,["H2379"]],[19,22,["H3606"]],[22,24,["H772"]]]},{"k":21858,"v":[[0,2,["H6074"]],[2,4,["H8209"]],[4,7,["H4"]],[7,9,["H7690"]],[9,14,["H4203"]],[14,16,["H3606"]],[16,17,["H8460"]],[17,20,["H2423"]],[20,23,["H1251"]],[23,24,["H1753"]],[24,28,["H6056"]],[28,30,["H6853"]],[30,33,["H8065"]],[33,36,["H7932"]]]},{"k":21859,"v":[[0,1,["H1932"]],[1,3,["H607"]],[3,5,["H4430"]],[5,6,["H1768"]],[6,8,["H7236"]],[8,11,["H8631"]],[11,14,["H7238"]],[14,16,["H7236"]],[16,18,["H4291"]],[18,20,["H8065"]],[20,23,["H7985"]],[23,26,["H5491"]],[26,29,["H772"]]]},{"k":21860,"v":[[0,2,["H1768"]],[2,4,["H4430"]],[4,5,["H2370"]],[5,7,["H5894"]],[7,11,["H6922"]],[11,13,["H5182"]],[13,14,["H4481"]],[14,15,["H8065"]],[15,17,["H560"]],[17,21,["H1414","H363"]],[21,23,["H2255"]],[23,25,["H1297"]],[25,26,["H7662"]],[26,28,["H6136"]],[28,31,["H8330"]],[31,35,["H772"]],[35,39,["H613"]],[39,40,["H1768"]],[40,41,["H6523"]],[41,43,["H5174"]],[43,47,["H1883"]],[47,48,["H1768"]],[48,50,["H1251"]],[50,55,["H6647"]],[55,58,["H2920"]],[58,60,["H8065"]],[60,64,["H2508"]],[64,66,["H5974"]],[66,68,["H2423"]],[68,71,["H1251"]],[71,72,["H5705","H1768"]],[72,73,["H7655"]],[73,74,["H5732"]],[74,75,["H2499"]],[75,76,["H5922"]],[76,77,[]]]},{"k":21861,"v":[[0,1,["H1836"]],[1,4,["H6591"]],[4,6,["H4430"]],[6,8,["H1932"]],[8,11,["H1510"]],[11,15,["H5943"]],[15,16,["H1768"]],[16,18,["H4291"]],[18,19,["H5922"]],[19,21,["H4756"]],[21,23,["H4430"]]]},{"k":21862,"v":[[0,4,["H2957"]],[4,6,["H4481"]],[6,7,["H606"]],[7,10,["H4070"]],[10,12,["H1934"]],[12,13,["H5974"]],[13,15,["H2423"]],[15,18,["H1251"]],[18,25,["H2939"]],[25,26,["H6211"]],[26,28,["H8450"]],[28,32,["H6647"]],[32,36,["H4481","H2920"]],[36,38,["H8065"]],[38,40,["H7655"]],[40,41,["H5732"]],[41,43,["H2499"]],[43,44,["H5922"]],[44,46,["H5705","H1768"]],[46,48,["H3046"]],[48,49,["H1768"]],[49,52,["H5943"]],[52,53,["H7990"]],[53,56,["H4437"]],[56,58,["H606"]],[58,60,["H5415"]],[60,63,["H4479","H1768"]],[63,65,["H6634"]]]},{"k":21863,"v":[[0,2,["H1768"]],[2,4,["H560"]],[4,6,["H7662"]],[6,8,["H6136"]],[8,9,["H1768"]],[9,11,["H363"]],[11,12,["H8330"]],[12,14,["H4437"]],[14,17,["H7011"]],[17,21,["H4481","H1768"]],[21,25,["H3046"]],[25,26,["H1768"]],[26,28,["H8065"]],[28,30,["H7990"]]]},{"k":21864,"v":[[0,1,["H3861"]],[1,3,["H4430"]],[3,6,["H4431"]],[6,8,["H8232"]],[8,9,["H5922"]],[9,12,["H6562"]],[12,15,["H2408"]],[15,17,["H6665"]],[17,20,["H5758"]],[20,23,["H2604"]],[23,26,["H6033"]],[26,27,["H2006"]],[27,30,["H1934"]],[30,32,["H754"]],[32,35,["H7963"]]]},{"k":21865,"v":[[0,2,["H3606"]],[2,3,["H4291"]],[3,4,["H5922"]],[4,6,["H4430"]],[6,7,["H5020"]]]},{"k":21866,"v":[[0,3,["H7118"]],[3,5,["H8648","H6236"]],[5,6,["H3393"]],[6,8,["H1934","H1981"]],[8,9,["H5922"]],[9,11,["H1965"]],[11,14,["H4437"]],[14,15,["H1768"]],[15,16,["H895"]]]},{"k":21867,"v":[[0,2,["H4430"]],[2,3,["H6032"]],[3,5,["H560"]],[5,7,["H3809"]],[7,8,["H1668"]],[8,9,["H7229"]],[9,10,["H895"]],[10,11,["H1768"]],[11,12,["H576"]],[12,14,["H1124"]],[14,17,["H1005"]],[17,20,["H4437"]],[20,23,["H8632"]],[23,26,["H2632"]],[26,30,["H3367"]],[30,33,["H1923"]]]},{"k":21868,"v":[[0,1,["H5751"]],[1,3,["H4406"]],[3,7,["H4430"]],[7,8,["H6433"]],[8,10,["H5308"]],[10,12,["H7032"]],[12,13,["H4481"]],[13,14,["H8065"]],[14,17,["H4430"]],[17,18,["H5020"]],[18,23,["H560"]],[23,25,["H4437"]],[25,27,["H5709"]],[27,28,["H4481"]],[28,29,[]]]},{"k":21869,"v":[[0,4,["H2957"]],[4,6,["H4481"]],[6,7,["H606"]],[7,10,["H4070"]],[10,13,["H5974"]],[13,15,["H2423"]],[15,18,["H1251"]],[18,24,["H2939"]],[24,25,["H6211"]],[25,27,["H8450"]],[27,29,["H7655"]],[29,30,["H5732"]],[30,32,["H2499"]],[32,33,["H5922"]],[33,35,["H5705","H1768"]],[35,37,["H3046"]],[37,38,["H1768"]],[38,41,["H5943"]],[41,42,["H7990"]],[42,45,["H4437"]],[45,47,["H606"]],[47,49,["H5415"]],[49,52,["H4479","H1768"]],[52,54,["H6634"]]]},{"k":21870,"v":[[0,3,["H8160"]],[3,6,["H4406"]],[6,7,["H5487"]],[7,8,["H5922"]],[8,9,["H5020"]],[9,13,["H2957"]],[13,14,["H4481"]],[14,15,["H606"]],[15,18,["H399"]],[18,19,["H6211"]],[19,21,["H8450"]],[21,24,["H1655"]],[24,26,["H6647"]],[26,29,["H4481","H2920"]],[29,31,["H8065"]],[31,32,["H5705","H1768"]],[32,34,["H8177"]],[34,36,["H7236"]],[36,38,["H5403"]],[38,42,["H2953"]],[42,44,["H6853"]],[44,45,[]]]},{"k":21871,"v":[[0,4,["H7118"]],[4,7,["H3118"]],[7,8,["H576"]],[8,9,["H5020"]],[9,11,["H5191"]],[11,13,["H5870"]],[13,15,["H8065"]],[15,18,["H4486"]],[18,19,["H8421"]],[19,20,["H5922"]],[20,24,["H1289"]],[24,27,["H5943"]],[27,30,["H7624"]],[30,32,["H1922"]],[32,35,["H2417"]],[35,37,["H5957"]],[37,38,["H1768"]],[38,39,["H7985"]],[39,42,["H5957"]],[42,43,["H7985"]],[43,46,["H4437"]],[46,48,["H5974"]],[48,49,["H1859"]],[49,51,["H1859"]]]},{"k":21872,"v":[[0,2,["H3606"]],[2,4,["H1753"]],[4,7,["H772"]],[7,9,["H2804"]],[9,11,["H3809"]],[11,14,["H5648"]],[14,18,["H6634"]],[18,21,["H2429"]],[21,23,["H8065"]],[23,27,["H1753"]],[27,30,["H772"]],[30,32,["H3809"]],[32,33,["H383"]],[33,34,["H4223"]],[34,36,["H3028"]],[36,38,["H560"]],[38,41,["H4101"]],[41,42,["H5648"]],[42,43,[]]]},{"k":21873,"v":[[0,4,["H2166"]],[4,6,["H4486"]],[6,7,["H8421"]],[7,8,["H5922"]],[8,13,["H3367"]],[13,16,["H4437"]],[16,18,["H1923"]],[18,20,["H2122"]],[20,21,["H8421"]],[21,22,["H5922"]],[22,26,["H1907"]],[26,29,["H7261"]],[29,30,["H1156"]],[30,36,["H8627"]],[36,37,["H5922"]],[37,39,["H4437"]],[39,41,["H3493"]],[41,42,["H7238"]],[42,44,["H3255"]],[44,46,[]]]},{"k":21874,"v":[[0,1,["H3705"]],[1,2,["H576"]],[2,3,["H5020"]],[3,4,["H7624"]],[4,6,["H7313"]],[6,8,["H1922"]],[8,10,["H4430"]],[10,12,["H8065"]],[12,13,["H3606"]],[13,14,["H1768"]],[14,15,["H4567"]],[15,17,["H7187"]],[17,20,["H735"]],[20,21,["H1780"]],[21,23,["H1768"]],[23,25,["H1981"]],[25,27,["H1467"]],[27,30,["H3202"]],[30,32,["H8214"]]]},{"k":21875,"v":[[0,1,["H1113"]],[1,3,["H4430"]],[3,4,["H5648"]],[4,6,["H7229"]],[6,7,["H3900"]],[7,10,["H506"]],[10,13,["H7261"]],[13,15,["H8355"]],[15,16,["H2562"]],[16,17,["H6903"]],[17,19,["H506"]]]},{"k":21876,"v":[[0,1,["H1113"]],[1,4,["H2942"]],[4,6,["H2562"]],[6,7,["H560"]],[7,9,["H858"]],[9,11,["H1722"]],[11,13,["H3702"]],[13,14,["H3984"]],[14,15,["H1768"]],[15,17,["H2"]],[17,18,["H5020"]],[18,21,["H5312"]],[21,22,["H4481"]],[22,24,["H1965"]],[24,25,["H1768"]],[25,28,["H3390"]],[28,31,["H4430"]],[31,34,["H7261"]],[34,36,["H7695"]],[36,39,["H3904"]],[39,41,["H8355"]],[41,42,[]]]},{"k":21877,"v":[[0,1,["H116"]],[1,3,["H858"]],[3,5,["H1722"]],[5,6,["H3984"]],[6,7,["H1768"]],[7,10,["H5312"]],[10,11,["H4481"]],[11,13,["H1965"]],[13,14,["H1768"]],[14,16,["H1005"]],[16,18,["H426"]],[18,19,["H1768"]],[19,22,["H3390"]],[22,25,["H4430"]],[25,28,["H7261"]],[28,30,["H7695"]],[30,33,["H3904"]],[33,34,["H8355"]],[34,36,[]]]},{"k":21878,"v":[[0,2,["H8355"]],[2,3,["H2562"]],[3,5,["H7624"]],[5,7,["H426"]],[7,9,["H1722"]],[9,12,["H3702"]],[12,14,["H5174"]],[14,16,["H6523"]],[16,18,["H636"]],[18,21,["H69"]]]},{"k":21879,"v":[[0,4,["H8160"]],[4,6,["H5312"]],[6,7,["H677"]],[7,8,["H1768"]],[8,10,["H606"]],[10,11,["H3028"]],[11,13,["H3790"]],[13,15,["H6903"]],[15,17,["H5043"]],[17,18,["H5922"]],[18,20,["H1528"]],[20,21,["H1768"]],[21,23,["H3797"]],[23,24,["H1768"]],[24,26,["H4430"]],[26,27,["H1965"]],[27,30,["H4430"]],[30,31,["H2370"]],[31,33,["H6447"]],[33,36,["H3028"]],[36,37,["H1768"]],[37,38,["H3790"]]]},{"k":21880,"v":[[0,1,["H116"]],[1,3,["H4430"]],[3,4,["H2122"]],[4,6,["H8133"]],[6,9,["H7476"]],[9,10,["H927"]],[10,15,["H7001"]],[15,18,["H2783"]],[18,20,["H8271"]],[20,23,["H755"]],[23,24,["H5368"]],[24,25,["H1668"]],[25,27,["H1668"]]]},{"k":21881,"v":[[0,2,["H4430"]],[2,3,["H7123"]],[3,4,["H2429"]],[4,7,["H5924"]],[7,9,["H826"]],[9,11,["H3779"]],[11,14,["H1505"]],[14,17,["H4430"]],[17,18,["H6032"]],[18,20,["H560"]],[20,23,["H2445"]],[23,26,["H895"]],[26,27,["H3606","H606","H1768"]],[27,29,["H7123"]],[29,30,["H1836"]],[30,31,["H3792"]],[31,33,["H2324"]],[33,36,["H6591"]],[36,40,["H3848"]],[40,42,["H711"]],[42,46,["H2002"]],[46,47,["H1768"]],[47,48,["H1722"]],[48,49,["H5922"]],[49,51,["H6676"]],[51,57,["H7981","H8523"]],[57,60,["H4437"]]]},{"k":21882,"v":[[0,1,["H116"]],[1,3,["H5954"]],[3,4,["H3606"]],[4,6,["H4430"]],[6,7,["H2445"]],[7,11,["H3546"]],[11,12,["H3809"]],[12,13,["H7123"]],[13,15,["H3792"]],[15,18,["H3046"]],[18,21,["H4430"]],[21,23,["H6591"]],[23,24,[]]]},{"k":21883,"v":[[0,1,["H116"]],[1,3,["H4430"]],[3,4,["H1113"]],[4,5,["H7690"]],[5,6,["H927"]],[6,9,["H2122"]],[9,11,["H8133"]],[11,12,["H5922"]],[12,16,["H7261"]],[16,18,["H7672"]]]},{"k":21884,"v":[[0,3,["H4433"]],[3,6,["H6903"]],[6,8,["H4406"]],[8,11,["H4430"]],[11,14,["H7261"]],[14,15,["H5954"]],[15,18,["H4961"]],[18,19,["H1005"]],[19,22,["H4433"]],[22,23,["H6032"]],[23,25,["H560"]],[25,27,["H4430"]],[27,28,["H2418"]],[28,30,["H5957"]],[30,32,["H409"]],[32,34,["H7476"]],[34,35,["H927"]],[35,37,["H409"]],[37,40,["H2122"]],[40,42,["H8133"]]]},{"k":21885,"v":[[0,2,["H383"]],[2,4,["H1400"]],[4,7,["H4437"]],[7,9,["H1768"]],[9,12,["H7308"]],[12,15,["H6922"]],[15,16,["H426"]],[16,20,["H3118"]],[20,23,["H2"]],[23,24,["H5094"]],[24,26,["H7924"]],[26,28,["H2452"]],[28,31,["H2452"]],[31,34,["H426"]],[34,36,["H7912"]],[36,41,["H4430"]],[41,42,["H5020"]],[42,44,["H2"]],[44,46,["H4430"]],[46,50,["H2"]],[50,51,["H6966"]],[51,52,["H7229"]],[52,55,["H2749"]],[55,56,["H826"]],[56,57,["H3779"]],[57,59,["H1505"]]]},{"k":21886,"v":[[0,2,["H3606","H6903","H1768"]],[2,4,["H3493"]],[4,5,["H7308"]],[5,7,["H4486"]],[7,9,["H7924"]],[9,10,["H6591"]],[10,12,["H2493"]],[12,14,["H263"]],[14,17,["H280"]],[17,19,["H8271"]],[19,21,["H7001"]],[21,23,["H7912"]],[23,27,["H1841"]],[27,28,["H1768"]],[28,30,["H4430"]],[30,31,["H7761","H8036"]],[31,32,["H1096"]],[32,33,["H3705"]],[33,35,["H1841"]],[35,37,["H7123"]],[37,41,["H2324"]],[41,43,["H6591"]]]},{"k":21887,"v":[[0,1,["H116"]],[1,3,["H1841"]],[3,5,["H5954"]],[5,6,["H6925"]],[6,8,["H4430"]],[8,11,["H4430"]],[11,12,["H6032"]],[12,14,["H560"]],[14,16,["H1841"]],[16,18,["H607"]],[18,19,["H1932"]],[19,20,["H1841"]],[20,21,["H1768"]],[21,23,["H4481"]],[23,25,["H1123"]],[25,28,["H1547"]],[28,29,["H1768"]],[29,30,["H3061"]],[30,31,["H1768"]],[31,33,["H4430"]],[33,35,["H2"]],[35,37,["H858"]],[37,38,["H4481"]],[38,39,["H3061"]]]},{"k":21888,"v":[[0,4,["H8086"]],[4,5,["H5922"]],[5,7,["H1768"]],[7,9,["H7308"]],[9,12,["H426"]],[12,18,["H5094"]],[18,20,["H7924"]],[20,22,["H3493"]],[22,23,["H2452"]],[23,25,["H7912"]],[25,27,[]]]},{"k":21889,"v":[[0,2,["H3705"]],[2,4,["H2445"]],[4,7,["H826"]],[7,11,["H5954"]],[11,12,["H6925"]],[12,14,["H1768"]],[14,17,["H7123"]],[17,18,["H1836"]],[18,19,["H3792"]],[19,22,["H3046"]],[22,26,["H6591"]],[26,30,["H3546"]],[30,31,["H3809"]],[31,32,["H2324"]],[32,34,["H6591"]],[34,37,["H4406"]]]},{"k":21890,"v":[[0,2,["H576"]],[2,4,["H8086"]],[4,5,["H5922"]],[5,7,["H1768"]],[7,9,["H3202"]],[9,10,["H6590"]],[10,11,["H6591"]],[11,13,["H8271"]],[13,14,["H7001"]],[14,15,["H3705"]],[15,16,["H2006"]],[16,18,["H3202"]],[18,19,["H7123"]],[19,21,["H3792"]],[21,24,["H3046"]],[24,28,["H6591"]],[28,33,["H3848"]],[33,35,["H711"]],[35,39,["H2002"]],[39,40,["H1768"]],[40,41,["H1722"]],[41,42,["H5922"]],[42,44,["H6676"]],[44,50,["H7981","H8531"]],[50,53,["H4437"]]]},{"k":21891,"v":[[0,1,["H116"]],[1,2,["H1841"]],[2,3,["H6032"]],[3,5,["H560"]],[5,6,["H6925"]],[6,8,["H4430"]],[8,11,["H4978"]],[11,12,["H1934"]],[12,16,["H3052"]],[16,18,["H5023"]],[18,20,["H321"]],[20,21,["H1297"]],[21,24,["H7123"]],[24,26,["H3792"]],[26,29,["H4430"]],[29,32,["H3046"]],[32,36,["H6591"]]]},{"k":21892,"v":[[0,2,["H607"]],[2,3,["H4430"]],[3,6,["H5943"]],[6,7,["H426"]],[7,8,["H3052"]],[8,9,["H5020"]],[9,11,["H2"]],[11,13,["H4437"]],[13,15,["H7238"]],[15,17,["H3367"]],[17,19,["H1923"]]]},{"k":21893,"v":[[0,2,["H4481"]],[2,4,["H7238"]],[4,5,["H1768"]],[5,7,["H3052"]],[7,9,["H3606"]],[9,10,["H5972"]],[10,11,["H524"]],[11,13,["H3961"]],[13,14,["H1934","H2112"]],[14,16,["H1763"]],[16,17,["H4481","H6925"]],[17,19,["H1768"]],[19,21,["H1934","H6634"]],[21,23,["H1934","H6992"]],[23,25,["H1768"]],[25,27,["H1934","H6634"]],[27,30,["H1934","H2418"]],[30,32,["H1768"]],[32,34,["H1934","H6634"]],[34,37,["H1934","H7313"]],[37,39,["H1768"]],[39,41,["H1934","H6634"]],[41,44,["H1934","H8214"]]]},{"k":21894,"v":[[0,2,["H1768"]],[2,4,["H3825"]],[4,7,["H7313"]],[7,10,["H7308"]],[10,11,["H8631"]],[11,13,["H2103"]],[13,16,["H5182"]],[16,17,["H4481"]],[17,19,["H4437"]],[19,20,["H3764"]],[20,23,["H5709"]],[23,25,["H3367"]],[25,26,["H4481"]],[26,27,[]]]},{"k":21895,"v":[[0,4,["H2957"]],[4,5,["H4481"]],[5,7,["H1123"]],[7,9,["H606"]],[9,12,["H3825"]],[12,14,["H7739"]],[14,15,["H5974"]],[15,17,["H2423"]],[17,20,["H4070"]],[20,22,["H5974"]],[22,25,["H6167"]],[25,27,["H2939"]],[27,30,["H6211"]],[30,32,["H8450"]],[32,35,["H1655"]],[35,37,["H6647"]],[37,40,["H4481","H2920"]],[40,42,["H8065"]],[42,43,["H5705","H1768"]],[43,45,["H3046"]],[45,46,["H1768"]],[46,49,["H5943"]],[49,50,["H426"]],[50,51,["H7990"]],[51,54,["H4437"]],[54,56,["H606"]],[56,60,["H6966"]],[60,61,["H5922"]],[61,63,["H4479","H1768"]],[63,65,["H6634"]]]},{"k":21896,"v":[[0,2,["H607"]],[2,4,["H1247"]],[4,6,["H1113"]],[6,8,["H3809"]],[8,9,["H8214"]],[9,11,["H3825"]],[11,12,["H3606","H6903","H1768"]],[12,14,["H3046"]],[14,15,["H3606"]],[15,16,["H1836"]]]},{"k":21897,"v":[[0,5,["H7313"]],[5,6,["H5922"]],[6,8,["H4756"]],[8,10,["H8065"]],[10,14,["H858"]],[14,16,["H3984"]],[16,17,["H1768"]],[17,19,["H1005"]],[19,20,["H6925"]],[20,23,["H607"]],[23,26,["H7261"]],[26,28,["H7695"]],[28,31,["H3904"]],[31,33,["H8355"]],[33,34,["H2562"]],[34,40,["H7624"]],[40,42,["H426"]],[42,44,["H3702"]],[44,46,["H1722"]],[46,48,["H5174"]],[48,49,["H6523"]],[49,50,["H636"]],[50,52,["H69"]],[52,53,["H1768"]],[53,54,["H2370"]],[54,55,["H3809"]],[55,56,["H3809"]],[56,57,["H8086"]],[57,58,["H3809"]],[58,59,["H3046"]],[59,62,["H426"]],[62,64,["H1768"]],[64,65,["H3028"]],[65,67,["H5396"]],[67,72,["H3606"]],[72,74,["H735"]],[74,77,["H3809"]],[77,78,["H1922"]]]},{"k":21898,"v":[[0,1,["H116"]],[1,4,["H6447"]],[4,5,["H1768"]],[5,7,["H3028"]],[7,8,["H7972"]],[8,9,["H4481","H6925"]],[9,12,["H1836"]],[12,13,["H3792"]],[13,15,["H7560"]]]},{"k":21899,"v":[[0,2,["H1836"]],[2,5,["H3792"]],[5,6,["H1768"]],[6,8,["H7560"]],[8,9,["H4484"]],[9,10,["H4484"]],[10,11,["H8625"]],[11,12,["H6537"]]]},{"k":21900,"v":[[0,1,["H1836"]],[1,4,["H6591"]],[4,7,["H4406"]],[7,8,["H4484"]],[8,9,["H426"]],[9,11,["H4483"]],[11,13,["H4437"]],[13,15,["H8000"]],[15,16,[]]]},{"k":21901,"v":[[0,1,["H8625"]],[1,4,["H8625"]],[4,7,["H3977"]],[7,10,["H7912"]],[10,11,["H2627"]]]},{"k":21902,"v":[[0,1,["H6537"]],[1,3,["H4437"]],[3,5,["H6537"]],[5,7,["H3052"]],[7,10,["H4076"]],[10,12,["H6540"]]]},{"k":21903,"v":[[0,1,["H116"]],[1,2,["H560"]],[2,3,["H1113"]],[3,6,["H3848"]],[6,7,["H1841"]],[7,9,["H711"]],[9,13,["H2002"]],[13,14,["H1768"]],[14,15,["H1722"]],[15,16,["H5922"]],[16,18,["H6676"]],[18,22,["H3745"]],[22,23,["H5922"]],[23,25,["H1768"]],[25,28,["H1934"]],[28,30,["H8531"]],[30,31,["H7990"]],[31,34,["H4437"]]]},{"k":21904,"v":[[0,3,["H3916"]],[3,5,["H1113"]],[5,7,["H4430"]],[7,10,["H3779"]],[10,11,["H6992"]]]},{"k":21905,"v":[[0,2,["H1868"]],[2,4,["H4077"]],[4,5,["H6902"]],[5,7,["H4437"]],[7,10,["H8361"]],[10,12,["H8648"]],[12,13,["H8140"]],[13,14,["H1247"]]]},{"k":21906,"v":[[0,2,["H8232","H6925"]],[2,3,["H1868"]],[3,5,["H6966"]],[5,6,["H5922"]],[6,8,["H4437"]],[8,10,["H3969"]],[10,12,["H6243"]],[12,13,["H324"]],[13,14,["H1768"]],[14,16,["H1934"]],[16,19,["H3606"]],[19,20,["H4437"]]]},{"k":21907,"v":[[0,2,["H5924","H4481"]],[2,4,["H8532"]],[4,5,["H5632"]],[5,7,["H4481","H1768"]],[7,8,["H1841"]],[8,10,["H2298"]],[10,11,["H1768"]],[11,12,["H459"]],[12,13,["H324"]],[13,14,["H1934"]],[14,15,["H3052"]],[15,16,["H2941"]],[16,21,["H4430"]],[21,23,["H1934"]],[23,24,["H3809"]],[24,25,["H5142"]]]},{"k":21908,"v":[[0,1,["H116"]],[1,2,["H1836"]],[2,3,["H1841"]],[3,4,["H1934"]],[4,5,["H5330"]],[5,6,["H5922"]],[6,8,["H5632"]],[8,10,["H324"]],[10,11,["H3606","H6903","H1768"]],[11,13,["H3493"]],[13,14,["H7308"]],[14,20,["H4430"]],[20,21,["H6246"]],[21,23,["H6966"]],[23,25,["H5922"]],[25,27,["H3606"]],[27,28,["H4437"]]]},{"k":21909,"v":[[0,1,["H116"]],[1,3,["H5632"]],[3,5,["H324"]],[5,6,["H1934","H1156"]],[6,8,["H7912"]],[8,9,["H5931"]],[9,11,["H1841"]],[11,12,["H4481","H6655"]],[12,14,["H4437"]],[14,17,["H3202"]],[17,18,["H7912"]],[18,19,["H3809","H3606"]],[19,20,["H5931"]],[20,22,["H7844"]],[22,24,["H3606","H6903","H1768"]],[24,25,["H1932"]],[25,27,["H540"]],[27,28,["H3809"]],[28,31,["H3606"]],[31,32,["H7960"]],[32,34,["H7844"]],[34,35,["H7912"]],[35,36,["H5922"]],[36,37,[]]]},{"k":21910,"v":[[0,1,["H116"]],[1,2,["H560"]],[2,3,["H479"]],[3,4,["H1400"]],[4,7,["H3809"]],[7,8,["H7912"]],[8,9,["H3606"]],[9,10,["H5931"]],[10,12,["H1836"]],[12,13,["H1841"]],[13,14,["H3861"]],[14,16,["H7912"]],[16,18,["H5922"]],[18,22,["H1882"]],[22,25,["H426"]]]},{"k":21911,"v":[[0,1,["H116"]],[1,2,["H459"]],[2,3,["H5632"]],[3,5,["H324"]],[5,7,["H7284"]],[7,8,["H5922"]],[8,10,["H4430"]],[10,12,["H560"]],[12,13,["H3652"]],[13,16,["H4430"]],[16,17,["H1868"]],[17,18,["H2418"]],[18,20,["H5957"]]]},{"k":21912,"v":[[0,1,["H3606"]],[1,3,["H5632"]],[3,6,["H4437"]],[6,8,["H5460"]],[8,11,["H324"]],[11,13,["H1907"]],[13,16,["H6347"]],[16,19,["H3272"]],[19,21,["H6966"]],[21,23,["H4430"]],[23,24,["H7010"]],[24,29,["H8631"]],[29,30,["H633"]],[30,31,["H1768"]],[31,32,["H3606","H1768"]],[32,34,["H1156"]],[34,36,["H1159"]],[36,37,["H4481"]],[37,38,["H3606"]],[38,39,["H426"]],[39,41,["H606"]],[41,42,["H5705"]],[42,43,["H8533"]],[43,44,["H3118"]],[44,45,["H3861"]],[45,46,["H4481"]],[46,49,["H4430"]],[49,53,["H7412"]],[53,56,["H1358"]],[56,58,["H744"]]]},{"k":21913,"v":[[0,1,["H3705"]],[1,3,["H4430"]],[3,4,["H6966"]],[4,6,["H633"]],[6,8,["H7560"]],[8,10,["H3792"]],[10,11,["H1768"]],[11,14,["H3809"]],[14,15,["H8133"]],[15,19,["H1882"]],[19,22,["H4076"]],[22,24,["H6540"]],[24,25,["H1768"]],[25,26,["H5709"]],[26,27,["H3809"]]]},{"k":21914,"v":[[0,1,["H3606","H6903","H1836"]],[1,2,["H4430"]],[2,3,["H1868"]],[3,4,["H7560"]],[4,6,["H3792"]],[6,9,["H633"]]]},{"k":21915,"v":[[0,2,["H1768"]],[2,3,["H1841"]],[3,4,["H3046"]],[4,5,["H1768"]],[5,7,["H3792"]],[7,9,["H7560"]],[9,11,["H5954"]],[11,14,["H1005"]],[14,17,["H3551"]],[17,19,["H6606"]],[19,22,["H5952"]],[22,23,["H5049"]],[23,24,["H3390"]],[24,25,["H1932"]],[25,26,["H1289"]],[26,27,["H5922"]],[27,29,["H1291"]],[29,30,["H8532"]],[30,31,["H2166"]],[31,33,["H3118"]],[33,35,["H6739"]],[35,38,["H3029"]],[38,39,["H6925"]],[39,41,["H426"]],[41,42,["H3606","H6903","H1768"]],[42,44,["H1934","H5648"]],[44,45,["H4481","H6928","H1836"]]]},{"k":21916,"v":[[0,1,["H116"]],[1,2,["H479"]],[2,3,["H1400"]],[3,4,["H7284"]],[4,6,["H7912"]],[6,7,["H1841"]],[7,8,["H1156"]],[8,11,["H2604"]],[11,12,["H6925"]],[12,14,["H426"]]]},{"k":21917,"v":[[0,1,["H116"]],[1,4,["H7127"]],[4,6,["H560"]],[6,7,["H6925"]],[7,9,["H4430"]],[9,10,["H5922"]],[10,12,["H4430"]],[12,13,["H633"]],[13,16,["H3809"]],[16,17,["H7560"]],[17,19,["H633"]],[19,20,["H1768"]],[20,21,["H3606"]],[21,22,["H606"]],[22,23,["H1768"]],[23,25,["H1156"]],[25,28,["H4481"]],[28,29,["H3606"]],[29,30,["H426"]],[30,32,["H606"]],[32,33,["H5705"]],[33,34,["H8533"]],[34,35,["H3118"]],[35,36,["H3861"]],[36,37,["H4481"]],[37,40,["H4430"]],[40,43,["H7412"]],[43,46,["H1358"]],[46,48,["H744"]],[48,50,["H4430"]],[50,51,["H6032"]],[51,53,["H560"]],[53,55,["H4406"]],[55,57,["H3330"]],[57,61,["H1882"]],[61,64,["H4076"]],[64,66,["H6540"]],[66,67,["H1768"]],[67,68,["H5709"]],[68,69,["H3809"]]]},{"k":21918,"v":[[0,1,["H116"]],[1,2,["H6032"]],[2,5,["H560"]],[5,6,["H6925"]],[6,8,["H4430"]],[8,9,["H1768"]],[9,10,["H1841"]],[10,11,["H1768"]],[11,13,["H4481"]],[13,15,["H1123"]],[15,18,["H1547"]],[18,19,["H1768"]],[19,20,["H3061"]],[20,21,["H7761","H2942","H5922"]],[21,22,["H3809"]],[22,25,["H4430"]],[25,28,["H633"]],[28,29,["H1768"]],[29,32,["H7560"]],[32,34,["H1156"]],[34,36,["H1159"]],[36,37,["H8532"]],[37,38,["H2166"]],[38,40,["H3118"]]]},{"k":21919,"v":[[0,1,["H116"]],[1,3,["H4430"]],[3,4,["H1768"]],[4,6,["H8086"]],[6,8,["H4406"]],[8,10,["H7690"]],[10,11,["H888"]],[11,12,["H5922"]],[12,15,["H7761"]],[15,17,["H1079"]],[17,18,["H5922"]],[18,19,["H1841"]],[19,21,["H7804"]],[21,25,["H1934","H7712"]],[25,26,["H5705"]],[26,29,["H4606"]],[29,32,["H8122"]],[32,34,["H5338"]],[34,35,[]]]},{"k":21920,"v":[[0,1,["H116"]],[1,2,["H479"]],[2,3,["H1400"]],[3,4,["H7284"]],[4,5,["H5922"]],[5,7,["H4430"]],[7,9,["H560"]],[9,12,["H4430"]],[12,13,["H3046"]],[13,15,["H4430"]],[15,16,["H1768"]],[16,18,["H1882"]],[18,21,["H4076"]],[21,23,["H6540"]],[23,25,["H1768"]],[25,26,["H3809","H3606"]],[26,27,["H633"]],[27,29,["H7010"]],[29,30,["H1768"]],[30,32,["H4430"]],[32,33,["H6966"]],[33,36,["H8133"]]]},{"k":21921,"v":[[0,1,["H116"]],[1,3,["H4430"]],[3,4,["H560"]],[4,7,["H858"]],[7,8,["H1841"]],[8,10,["H7412"]],[10,14,["H1358"]],[14,15,["H1768"]],[15,16,["H744"]],[16,19,["H4430"]],[19,20,["H6032"]],[20,22,["H560"]],[22,24,["H1841"]],[24,26,["H426"]],[26,27,["H1768"]],[27,28,["H607"]],[28,29,["H6399"]],[29,30,["H8411"]],[30,31,["H1932"]],[31,33,["H7804"]],[33,34,[]]]},{"k":21922,"v":[[0,2,["H2298"]],[2,3,["H69"]],[3,5,["H858"]],[5,7,["H7761"]],[7,8,["H5922"]],[8,10,["H6433"]],[10,13,["H1358"]],[13,16,["H4430"]],[16,17,["H2857"]],[17,22,["H5824"]],[22,26,["H5824"]],[26,29,["H7261"]],[29,30,["H1768"]],[30,32,["H6640"]],[32,34,["H3809"]],[34,36,["H8133"]],[36,38,["H1841"]]]},{"k":21923,"v":[[0,1,["H116"]],[1,3,["H4430"]],[3,4,["H236"]],[4,7,["H1965"]],[7,11,["H956"]],[11,12,["H2908"]],[12,13,["H3809"]],[13,17,["H1761"]],[17,18,["H5954"]],[18,19,["H6925"]],[19,23,["H8139"]],[23,24,["H5075"]],[24,25,["H5922"]],[25,26,[]]]},{"k":21924,"v":[[0,1,["H116"]],[1,3,["H4430"]],[3,4,["H6966"]],[4,9,["H8238","H5053"]],[9,11,["H236"]],[11,13,["H927"]],[13,16,["H1358"]],[16,17,["H1768"]],[17,18,["H744"]]]},{"k":21925,"v":[[0,4,["H7127"]],[4,7,["H1358"]],[7,9,["H2200"]],[9,12,["H6088"]],[12,13,["H7032"]],[13,15,["H1841"]],[15,18,["H4430"]],[18,19,["H6032"]],[19,21,["H560"]],[21,23,["H1841"]],[23,25,["H1841"]],[25,26,["H5649"]],[26,29,["H2417"]],[29,30,["H426"]],[30,33,["H426"]],[33,34,["H1768"]],[34,35,["H607"]],[35,36,["H6399"]],[36,37,["H8411"]],[37,38,["H3202"]],[38,40,["H7804"]],[40,42,["H4481"]],[42,44,["H744"]]]},{"k":21926,"v":[[0,1,["H116"]],[1,2,["H4449"]],[2,3,["H1841"]],[3,4,["H5974"]],[4,6,["H4430"]],[6,8,["H4430"]],[8,9,["H2418"]],[9,11,["H5957"]]]},{"k":21927,"v":[[0,2,["H426"]],[2,4,["H7972"]],[4,6,["H4398"]],[6,9,["H5463"]],[9,11,["H744"]],[11,12,["H6433"]],[12,16,["H3809"]],[16,17,["H2255"]],[17,20,["H3606","H6903","H1768"]],[20,21,["H6925"]],[21,23,["H2136"]],[23,25,["H7912"]],[25,29,["H638"]],[29,30,["H6925"]],[30,33,["H4430"]],[33,36,["H5648"]],[36,37,["H3809"]],[37,38,["H2248"]]]},{"k":21928,"v":[[0,1,["H116"]],[1,6,["H4430","H7690","H2868"]],[6,7,["H5922"]],[7,10,["H560"]],[10,16,["H5267","H1841"]],[16,18,["H4481"]],[18,20,["H1358"]],[20,22,["H1841"]],[22,25,["H5267"]],[25,27,["H4481"]],[27,29,["H1358"]],[29,32,["H3809","H3606"]],[32,34,["H2257"]],[34,36,["H7912"]],[36,39,["H1768"]],[39,41,["H540"]],[41,44,["H426"]]]},{"k":21929,"v":[[0,3,["H4430"]],[3,4,["H560"]],[4,7,["H858"]],[7,8,["H479"]],[8,9,["H1400"]],[9,10,["H1768"]],[10,12,["H399","H7170"]],[12,13,["H1768","H1841"]],[13,16,["H7412"]],[16,20,["H1358"]],[20,22,["H744"]],[22,23,["H581"]],[23,25,["H1123"]],[25,28,["H5389"]],[28,31,["H744"]],[31,34,["H7981"]],[34,43,["H1855","H3606","H1635"]],[43,47,["H5705","H1768","H3809","H4291"]],[47,50,["H773"]],[50,53,["H1358"]]]},{"k":21930,"v":[[0,1,["H116"]],[1,2,["H4430"]],[2,3,["H1868"]],[3,4,["H3790"]],[4,6,["H3606"]],[6,7,["H5972"]],[7,8,["H524"]],[8,10,["H3961"]],[10,11,["H1768"]],[11,12,["H1753"]],[12,14,["H3606"]],[14,16,["H772"]],[16,17,["H8001"]],[17,19,["H7680"]],[19,21,[]]]},{"k":21931,"v":[[0,2,["H4481","H6925","H7761"]],[2,4,["H2942"]],[4,5,["H1768"]],[5,7,["H3606"]],[7,8,["H7985"]],[8,11,["H4437"]],[11,13,["H1934","H2112"]],[13,15,["H1763"]],[15,16,["H4481","H6925"]],[16,18,["H426"]],[18,19,["H1768"]],[19,20,["H1841"]],[20,21,["H1768"]],[21,22,["H1932"]],[22,25,["H2417"]],[25,26,["H426"]],[26,28,["H7011"]],[28,30,["H5957"]],[30,33,["H4437"]],[33,35,["H1768"]],[35,37,["H3809"]],[37,39,["H2255"]],[39,42,["H7985"]],[42,46,["H5705"]],[46,48,["H5491"]]]},{"k":21932,"v":[[0,2,["H7804"]],[2,4,["H5338"]],[4,7,["H5648"]],[7,8,["H852"]],[8,10,["H8540"]],[10,12,["H8065"]],[12,15,["H772"]],[15,16,["H1768"]],[16,18,["H7804"]],[18,19,["H1841"]],[19,20,["H4481"]],[20,22,["H3028"]],[22,25,["H744"]]]},{"k":21933,"v":[[0,2,["H1836"]],[2,3,["H1841"]],[3,4,["H6744"]],[4,7,["H4437"]],[7,9,["H1868"]],[9,13,["H4437"]],[13,15,["H3567"]],[15,17,["H6543"]]]},{"k":21934,"v":[[0,3,["H2298"]],[3,4,["H8140"]],[4,6,["H1113"]],[6,7,["H4430"]],[7,9,["H895"]],[9,10,["H1841"]],[10,11,["H2370"]],[11,13,["H2493"]],[13,15,["H2376"]],[15,18,["H7217"]],[18,19,["H5922"]],[19,21,["H4903"]],[21,22,["H116"]],[22,24,["H3790"]],[24,26,["H2493"]],[26,28,["H560"]],[28,30,["H7217"]],[30,33,["H4406"]]]},{"k":21935,"v":[[0,1,["H1841"]],[1,2,["H6032"]],[2,4,["H560"]],[4,6,["H1934","H2370"]],[6,9,["H2376"]],[9,10,["H5974"]],[10,11,["H3916"]],[11,13,["H718"]],[13,15,["H703"]],[15,16,["H7308"]],[16,19,["H8065"]],[19,20,["H1519"]],[20,23,["H7229"]],[23,24,["H3221"]]]},{"k":21936,"v":[[0,2,["H703"]],[2,3,["H7260"]],[3,4,["H2423"]],[4,6,["H5559"]],[6,7,["H4481"]],[7,9,["H3221"]],[9,10,["H8133"]],[10,11,["H1668"]],[11,13,["H4481","H1668"]]]},{"k":21937,"v":[[0,2,["H6933"]],[2,6,["H744"]],[6,9,["H1768","H5403"]],[9,10,["H1611"]],[10,12,["H1934","H2370"]],[12,13,["H5705","H1768"]],[13,15,["H1611"]],[15,18,["H4804"]],[18,23,["H5191"]],[23,24,["H4481"]],[24,26,["H772"]],[26,29,["H6966"]],[29,30,["H5922"]],[30,32,["H7271"]],[32,35,["H606"]],[35,38,["H606"]],[38,39,["H3825"]],[39,41,["H3052"]],[41,43,[]]]},{"k":21938,"v":[[0,2,["H718"]],[2,3,["H317"]],[3,4,["H2423"]],[4,6,["H8578"]],[6,7,["H1821"]],[7,10,["H1678"]],[10,14,["H6966"]],[14,17,["H2298"]],[17,18,["H7859"]],[18,22,["H8532"]],[22,23,["H5967"]],[23,26,["H6433"]],[26,29,["H997"]],[29,31,["H8128"]],[31,36,["H560"]],[36,37,["H3652"]],[37,40,["H6966"]],[40,41,["H399"]],[41,42,["H7690"]],[42,43,["H1321"]]]},{"k":21939,"v":[[0,1,["H870"]],[1,2,["H1836"]],[2,4,["H1934","H2370"]],[4,6,["H718"]],[6,7,["H317"]],[7,10,["H5245"]],[10,13,["H5922"]],[13,15,["H1355"]],[15,18,["H703"]],[18,19,["H1611"]],[19,20,["H1768"]],[20,22,["H5776"]],[22,24,["H2423"]],[24,27,["H703"]],[27,28,["H7217"]],[28,30,["H7985"]],[30,32,["H3052"]],[32,34,[]]]},{"k":21940,"v":[[0,1,["H870"]],[1,2,["H1836"]],[2,4,["H1934","H2370"]],[4,7,["H3916"]],[7,8,["H2376"]],[8,10,["H718"]],[10,12,["H7244"]],[12,13,["H2423"]],[13,14,["H1763"]],[14,16,["H574"]],[16,18,["H8624"]],[18,19,["H3493"]],[19,23,["H7260"]],[23,24,["H1768","H6523"]],[24,25,["H8128"]],[25,27,["H399"]],[27,31,["H1855"]],[31,33,["H7512"]],[33,35,["H7606"]],[35,38,["H7271"]],[38,42,["H1932"]],[42,44,["H8133"]],[44,45,["H4481"]],[45,46,["H3606"]],[46,48,["H2423"]],[48,49,["H1768"]],[49,51,["H6925"]],[51,56,["H6236"]],[56,57,["H7162"]]]},{"k":21941,"v":[[0,2,["H1934","H7920"]],[2,4,["H7162"]],[4,6,["H431"]],[6,9,["H5559"]],[9,10,["H997"]],[10,12,["H317"]],[12,13,["H2192"]],[13,14,["H7162"]],[14,15,["H4481","H6925"]],[15,19,["H8532"]],[19,20,["H4481"]],[20,22,["H6933"]],[22,23,["H7162"]],[23,28,["H6132"]],[28,30,["H431"]],[30,32,["H1668"]],[32,33,["H7162"]],[33,35,["H5870"]],[35,38,["H5870"]],[38,40,["H606"]],[40,43,["H6433"]],[43,44,["H4449"]],[44,46,["H7260"]]]},{"k":21942,"v":[[0,2,["H1934","H2370"]],[2,3,["H5705","H1768"]],[3,5,["H3764"]],[5,8,["H7412"]],[8,11,["H6268"]],[11,13,["H3118"]],[13,15,["H3488"]],[15,17,["H3831"]],[17,19,["H2358"]],[19,21,["H8517"]],[21,24,["H8177"]],[24,27,["H7217"]],[27,30,["H5343"]],[30,31,["H6015"]],[31,33,["H3764"]],[33,37,["H1768","H5135"]],[37,38,["H7631"]],[38,41,["H1535"]],[41,43,["H1815"]],[43,44,["H5135"]]]},{"k":21943,"v":[[0,2,["H1768","H5135"]],[2,3,["H5103"]],[3,4,["H5047"]],[4,7,["H5312"]],[7,8,["H4481"]],[8,9,["H6925"]],[9,11,["H506"]],[11,12,["H506"]],[12,13,["H8120"]],[13,21,["H7240","H7240"]],[21,22,["H6966"]],[22,23,["H6925"]],[23,26,["H1780"]],[26,28,["H3488"]],[28,31,["H5609"]],[31,33,["H6606"]]]},{"k":21944,"v":[[0,2,["H1934","H2370"]],[2,3,["H116"]],[3,5,["H4481"]],[5,7,["H7032"]],[7,10,["H7260"]],[10,11,["H4406"]],[11,12,["H1768"]],[12,14,["H7162"]],[14,15,["H4449"]],[15,17,["H1934","H2370"]],[17,19,["H5705","H1768"]],[19,21,["H2423"]],[21,23,["H6992"]],[23,26,["H1655"]],[26,27,["H7"]],[27,29,["H3052"]],[29,32,["H3346"]],[32,33,["H785"]]]},{"k":21945,"v":[[0,4,["H7606"]],[4,7,["H2423"]],[7,11,["H7985"]],[11,13,["H5709"]],[13,16,["H2417"]],[16,18,["H754","H3052"]],[18,19,["H5705"]],[19,21,["H2166"]],[21,23,["H5732"]]]},{"k":21946,"v":[[0,2,["H1934","H2370"]],[2,5,["H3916"]],[5,6,["H2376"]],[6,8,["H718"]],[8,12,["H1247"]],[12,14,["H606"]],[14,15,["H1934","H858"]],[15,16,["H5974"]],[16,18,["H6050"]],[18,20,["H8065"]],[20,22,["H4291"]],[22,23,["H5705"]],[23,25,["H6268"]],[25,27,["H3118"]],[27,32,["H7127"]],[32,33,["H6925"]],[33,34,[]]]},{"k":21947,"v":[[0,4,["H3052"]],[4,6,["H7985"]],[6,8,["H3367"]],[8,11,["H4437"]],[11,13,["H3606"]],[13,14,["H5972"]],[14,15,["H524"]],[15,17,["H3961"]],[17,19,["H6399"]],[19,22,["H7985"]],[22,25,["H5957"]],[25,26,["H7985"]],[26,27,["H1768"]],[27,29,["H3809"]],[29,31,["H5709"]],[31,34,["H4437"]],[34,36,["H1768"]],[36,38,["H3809"]],[38,40,["H2255"]]]},{"k":21948,"v":[[0,1,["H576"]],[1,2,["H1841"]],[2,4,["H3735"]],[4,7,["H7308"]],[7,10,["H1459"]],[10,13,["H5085"]],[13,16,["H2376"]],[16,19,["H7217"]],[19,20,["H927"]],[20,21,[]]]},{"k":21949,"v":[[0,3,["H7127"]],[3,4,["H5922"]],[4,5,["H2298"]],[5,6,["H4481"]],[6,10,["H6966"]],[10,12,["H1156","H4481"]],[12,15,["H3330"]],[15,16,["H5922"]],[16,17,["H3606"]],[17,18,["H1836"]],[18,21,["H560"]],[21,26,["H3046"]],[26,28,["H6591"]],[28,31,["H4406"]]]},{"k":21950,"v":[[0,1,["H459"]],[1,2,["H7260"]],[2,3,["H2423"]],[3,4,["H1768"]],[4,6,["H703"]],[6,8,["H703"]],[8,9,["H4430"]],[9,12,["H6966"]],[12,14,["H4481"]],[14,16,["H772"]]]},{"k":21951,"v":[[0,3,["H6922"]],[3,7,["H5946"]],[7,9,["H6902"]],[9,11,["H4437"]],[11,13,["H2631"]],[13,15,["H4437"]],[15,17,["H5705","H5957"]],[17,20,["H5705","H5957"]],[20,22,["H5957"]]]},{"k":21952,"v":[[0,1,["H116"]],[1,3,["H6634"]],[3,4,["H3046"]],[4,6,["H3321"]],[6,7,["H5922"]],[7,9,["H7244"]],[9,10,["H2423"]],[10,11,["H1768"]],[11,12,["H1934"]],[12,13,["H8133"]],[13,14,["H4481"]],[14,15,["H3606"]],[15,18,["H3493"]],[18,19,["H1763"]],[19,20,["H1768"]],[20,21,["H8128"]],[21,24,["H6523"]],[24,27,["H2953"]],[27,28,["H2953"]],[28,29,["H5174"]],[29,31,["H399"]],[31,34,["H1855"]],[34,36,["H7512"]],[36,38,["H7606"]],[38,41,["H7271"]]]},{"k":21953,"v":[[0,2,["H5922"]],[2,4,["H6236"]],[4,5,["H7162"]],[5,6,["H1768"]],[6,10,["H7217"]],[10,14,["H317"]],[14,15,["H1768"]],[15,17,["H5559"]],[17,19,["H4481","H6925"]],[19,21,["H8532"]],[21,22,["H5308"]],[22,25,["H1797"]],[25,26,["H7162"]],[26,29,["H5870"]],[29,32,["H6433"]],[32,34,["H4449"]],[34,37,["H7260"]],[37,39,["H2376"]],[39,42,["H7229"]],[42,43,["H4481"]],[43,45,["H2273"]]]},{"k":21954,"v":[[0,2,["H1934","H2370"]],[2,5,["H1797"]],[5,6,["H7162"]],[6,7,["H5648"]],[7,8,["H7129"]],[8,9,["H5974"]],[9,11,["H6922"]],[11,13,["H3202"]],[13,15,[]]]},{"k":21955,"v":[[0,1,["H5705","H1768"]],[1,3,["H6268"]],[3,5,["H3118"]],[5,6,["H858"]],[6,8,["H1780"]],[8,10,["H3052"]],[10,13,["H6922"]],[13,17,["H5946"]],[17,20,["H2166"]],[20,21,["H4291"]],[21,24,["H6922"]],[24,25,["H2631"]],[25,27,["H4437"]]]},{"k":21956,"v":[[0,1,["H3652"]],[1,3,["H560"]],[3,5,["H7244"]],[5,6,["H2423"]],[6,8,["H1934"]],[8,10,["H7244"]],[10,11,["H4437"]],[11,13,["H772"]],[13,14,["H1768"]],[14,17,["H8133"]],[17,18,["H4481"]],[18,19,["H3606"]],[19,20,["H4437"]],[20,23,["H399"]],[23,25,["H3606"]],[25,26,["H772"]],[26,31,["H1759"]],[31,36,["H1855"]]]},{"k":21957,"v":[[0,3,["H6236"]],[3,4,["H7162"]],[4,6,["H4481"]],[6,8,["H4437"]],[8,10,["H6236"]],[10,11,["H4430"]],[11,14,["H6966"]],[14,16,["H321"]],[16,18,["H6966"]],[18,19,["H311"]],[19,22,["H1932"]],[22,25,["H8133"]],[25,26,["H4481"]],[26,28,["H6933"]],[28,32,["H8214"]],[32,33,["H8532"]],[33,34,["H4430"]]]},{"k":21958,"v":[[0,4,["H4449"]],[4,6,["H4406"]],[6,7,["H6655"]],[7,10,["H5943"]],[10,14,["H1080"]],[14,16,["H6922"]],[16,20,["H5946"]],[20,22,["H5452"]],[22,24,["H8133"]],[24,25,["H2166"]],[25,27,["H1882"]],[27,32,["H3052"]],[32,35,["H3028"]],[35,36,["H5705"]],[36,38,["H5732"]],[38,40,["H5732"]],[40,43,["H6387"]],[43,45,["H5732"]]]},{"k":21959,"v":[[0,3,["H1780"]],[3,5,["H3488"]],[5,10,["H5709"]],[10,12,["H7985"]],[12,14,["H8046"]],[14,17,["H7"]],[17,19,["H5705"]],[19,21,["H5491"]]]},{"k":21960,"v":[[0,3,["H4437"]],[3,5,["H7985"]],[5,8,["H7238"]],[8,9,["H1768"]],[9,11,["H4437"]],[11,12,["H8460"]],[12,14,["H3606"]],[14,15,["H8065"]],[15,18,["H3052"]],[18,21,["H5972"]],[21,24,["H6922"]],[24,28,["H5946"]],[28,30,["H4437"]],[30,33,["H5957"]],[33,34,["H4437"]],[34,36,["H3606"]],[36,37,["H7985"]],[37,39,["H6399"]],[39,41,["H8086"]],[41,42,[]]]},{"k":21961,"v":[[0,1,["H5705","H3542"]],[1,4,["H5491"]],[4,5,["H1768"]],[5,7,["H4406"]],[7,10,["H576"]],[10,11,["H1841"]],[11,13,["H7476"]],[13,14,["H7690"]],[14,15,["H927"]],[15,19,["H2122"]],[19,20,["H8133"]],[20,21,["H5922"]],[21,25,["H5202"]],[25,27,["H4406"]],[27,30,["H3821"]]]},{"k":21962,"v":[[0,3,["H7969"]],[3,4,["H8141"]],[4,7,["H4438"]],[7,9,["H4428"]],[9,10,["H1112"]],[10,12,["H2377"]],[12,13,["H7200"]],[13,14,["H413"]],[14,18,["H589"]],[18,19,["H1840"]],[19,21,["H310"]],[21,23,["H7200"]],[23,24,["H413"]],[24,28,["H8462"]]]},{"k":21963,"v":[[0,3,["H7200"]],[3,6,["H2377"]],[6,11,["H1961"]],[11,14,["H7200"]],[14,16,["H589"]],[16,19,["H7800"]],[19,22,["H1002"]],[22,23,["H834"]],[23,27,["H4082"]],[27,29,["H5867"]],[29,32,["H7200"]],[32,35,["H2377"]],[35,37,["H589"]],[37,38,["H1961"]],[38,39,["H5921"]],[39,41,["H180"]],[41,43,["H195"]]]},{"k":21964,"v":[[0,4,["H5375"]],[4,6,["H5869"]],[6,8,["H7200"]],[8,10,["H2009"]],[10,12,["H5975"]],[12,13,["H6440"]],[13,15,["H180"]],[15,16,["H259"]],[16,17,["H352"]],[17,21,["H7161"]],[21,25,["H7161"]],[25,27,["H1364"]],[27,29,["H259"]],[29,31,["H1364"]],[31,32,["H4480"]],[32,34,["H8145"]],[34,37,["H1364"]],[37,39,["H5927"]],[39,40,["H314"]]]},{"k":21965,"v":[[0,2,["H7200","(H853)"]],[2,4,["H352"]],[4,5,["H5055"]],[5,6,["H3220"]],[6,8,["H6828"]],[8,10,["H5045"]],[10,13,["H3808","H3605"]],[13,14,["H2416"]],[14,16,["H5975"]],[16,17,["H6440"]],[17,19,["H369"]],[19,25,["H5337"]],[25,29,["H4480","H3027"]],[29,32,["H6213"]],[32,36,["H7522"]],[36,39,["H1431"]]]},{"k":21966,"v":[[0,3,["H589"]],[3,4,["H1961"]],[4,5,["H995"]],[5,6,["H2009"]],[6,9,["H6842","H5795"]],[9,10,["H935"]],[10,11,["H4480"]],[11,13,["H4628"]],[13,14,["H5921"]],[14,16,["H6440"]],[16,19,["H3605"]],[19,20,["H776"]],[20,22,["H5060"]],[22,23,["H369"]],[23,25,["H776"]],[25,28,["H6842"]],[28,31,["H2380"]],[31,32,["H7161"]],[32,33,["H996"]],[33,35,["H5869"]]]},{"k":21967,"v":[[0,3,["H935"]],[3,4,["H5704"]],[4,6,["H352"]],[6,8,["H1167"]],[8,10,["H7161"]],[10,11,["H834"]],[11,14,["H7200"]],[14,15,["H5975"]],[15,16,["H6440"]],[16,18,["H180"]],[18,20,["H7323"]],[20,21,["H413"]],[21,25,["H2534"]],[25,28,["H3581"]]]},{"k":21968,"v":[[0,3,["H7200"]],[3,6,["H5060"]],[6,7,["H681"]],[7,9,["H352"]],[9,15,["H4843"]],[15,16,["H413"]],[16,19,["H5221","(H853)"]],[19,21,["H352"]],[21,23,["H7665","(H853)"]],[23,25,["H8147"]],[25,26,["H7161"]],[26,29,["H1961"]],[29,30,["H3808"]],[30,31,["H3581"]],[31,34,["H352"]],[34,36,["H5975"]],[36,37,["H6440"]],[37,43,["H7993"]],[43,46,["H776"]],[46,49,["H7429"]],[49,53,["H1961"]],[53,54,["H3808"]],[54,57,["H5337"]],[57,59,["H352"]],[59,63,["H4480","H3027"]]]},{"k":21969,"v":[[0,4,["H6842","H5795"]],[4,7,["H1431","H5704","H3966"]],[7,12,["H6105"]],[12,14,["H1419"]],[14,15,["H7161"]],[15,17,["H7665"]],[17,19,["H8478"]],[19,22,["H5927"]],[22,23,["H702"]],[23,25,["H2380"]],[25,28,["H702"]],[28,29,["H7307"]],[29,31,["H8064"]]]},{"k":21970,"v":[[0,3,["H4480"]],[3,4,["H259"]],[4,5,["H4480"]],[5,8,["H3318"]],[8,9,["H259"]],[9,10,["H4480","H4704"]],[10,11,["H7161"]],[11,15,["H1431","H3499"]],[15,16,["H413"]],[16,18,["H5045"]],[18,20,["H413"]],[20,22,["H4217"]],[22,24,["H413"]],[24,26,["H6643"]],[26,27,[]]]},{"k":21971,"v":[[0,4,["H1431"]],[4,6,["H5704"]],[6,8,["H6635"]],[8,10,["H8064"]],[10,14,["H5307"]],[14,16,["H4480"]],[16,18,["H6635"]],[18,20,["H4480"]],[20,22,["H3556"]],[22,25,["H776"]],[25,28,["H7429"]],[28,29,[]]]},{"k":21972,"v":[[0,3,["H1431"]],[3,6,["H5704"]],[6,8,["H8269"]],[8,11,["H6635"]],[11,13,["H4480"]],[13,16,["H8548"]],[16,20,["H7311"]],[20,23,["H4349"]],[23,26,["H4720"]],[26,29,["H7993"]]]},{"k":21973,"v":[[0,3,["H6635"]],[3,5,["H5414"]],[5,7,["H5921"]],[7,9,["H8548"]],[9,14,["H6588"]],[14,18,["H7993"]],[18,20,["H571"]],[20,23,["H776"]],[23,26,["H6213"]],[26,28,["H6743"]]]},{"k":21974,"v":[[0,3,["H8085"]],[3,4,["H259"]],[4,5,["H6918"]],[5,6,["H1696"]],[6,8,["H259"]],[8,9,["H6918"]],[9,10,["H559"]],[10,13,["H6422"]],[13,16,["H1696"]],[16,18,["H5704","H4970"]],[18,22,["H2377"]],[22,25,["H8548"]],[25,29,["H6588"]],[29,31,["H8074"]],[31,33,["H5414"]],[33,36,["H6944"]],[36,39,["H6635"]],[39,44,["H4823"]]]},{"k":21975,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H5704"]],[6,8,["H505"]],[8,10,["H7969"]],[10,11,["H3967"]],[11,12,["H6153","H1242"]],[12,16,["H6944"]],[16,18,["H6663"]]]},{"k":21976,"v":[[0,5,["H1961"]],[5,9,["H589"]],[9,10,["H1840"]],[10,12,["H7200","(H853)"]],[12,14,["H2377"]],[14,16,["H1245"]],[16,19,["H998"]],[19,21,["H2009"]],[21,23,["H5975"]],[23,24,["H5048"]],[24,28,["H4758"]],[28,31,["H1397"]]]},{"k":21977,"v":[[0,3,["H8085"]],[3,5,["H120"]],[5,6,["H6963"]],[6,7,["H996"]],[7,11,["H195"]],[11,13,["H7121"]],[13,15,["H559"]],[15,16,["H1403"]],[16,18,["H1975"]],[18,21,["H995","(H853)"]],[21,23,["H4758"]]]},{"k":21978,"v":[[0,3,["H935"]],[3,4,["H681"]],[4,7,["H5977"]],[7,11,["H935"]],[11,14,["H1204"]],[14,16,["H5307"]],[16,17,["H5921"]],[17,19,["H6440"]],[19,22,["H559"]],[22,23,["H413"]],[23,25,["H995"]],[25,27,["H1121"]],[27,29,["H120"]],[29,30,["H3588"]],[30,33,["H6256"]],[33,36,["H7093"]],[36,40,["H2377"]]]},{"k":21979,"v":[[0,5,["H1696"]],[5,6,["H5973"]],[6,13,["H7290"]],[13,14,["H5921"]],[14,16,["H6440"]],[16,19,["H776"]],[19,22,["H5060"]],[22,25,["H5975"]],[25,27,["H5921","H5977"]]]},{"k":21980,"v":[[0,3,["H559"]],[3,4,["H2009"]],[4,9,["H3045","(H853)"]],[9,10,["H834"]],[10,12,["H1961"]],[12,16,["H319"]],[16,19,["H2195"]],[19,20,["H3588"]],[20,24,["H4150"]],[24,26,["H7093"]],[26,28,[]]]},{"k":21981,"v":[[0,2,["H352"]],[2,3,["H834"]],[3,5,["H7200"]],[5,6,["H1167"]],[6,8,["H7161"]],[8,11,["H4428"]],[11,13,["H4074"]],[13,15,["H6539"]]]},{"k":21982,"v":[[0,3,["H8163"]],[3,4,["H6842"]],[4,7,["H4428"]],[7,9,["H3120"]],[9,12,["H1419"]],[12,13,["H7161"]],[13,14,["H834"]],[14,16,["H996"]],[16,18,["H5869"]],[18,21,["H7223"]],[21,22,["H4428"]]]},{"k":21983,"v":[[0,4,["H7665"]],[4,6,["H702"]],[6,8,["H5975"]],[8,9,["H8478"]],[9,11,["H702"]],[11,12,["H4438"]],[12,15,["H5975"]],[15,19,["H4480","H1471"]],[19,21,["H3808"]],[21,24,["H3581"]]]},{"k":21984,"v":[[0,5,["H319"]],[5,8,["H4438"]],[8,11,["H6586"]],[11,16,["H8552"]],[16,18,["H4428"]],[18,20,["H5794"]],[20,21,["H6440"]],[21,23,["H995"]],[23,25,["H2420"]],[25,28,["H5975"]]]},{"k":21985,"v":[[0,3,["H3581"]],[3,6,["H6105"]],[6,8,["H3808"]],[8,12,["H3581"]],[12,16,["H7843"]],[16,17,["H6381"]],[17,20,["H6743"]],[20,22,["H6213"]],[22,25,["H7843"]],[25,27,["H6099"]],[27,30,["H6918"]],[30,31,["H5971"]]]},{"k":21986,"v":[[0,2,["H5921"]],[2,4,["H7922"]],[4,9,["H4820"]],[9,11,["H6743"]],[11,14,["H3027"]],[14,18,["H1431"]],[18,22,["H3824"]],[22,25,["H7962"]],[25,27,["H7843"]],[27,28,["H7227"]],[28,33,["H5975"]],[33,34,["H5921"]],[34,36,["H8269"]],[36,38,["H8269"]],[38,43,["H7665"]],[43,44,["H657"]],[44,45,["H3027"]]]},{"k":21987,"v":[[0,3,["H4758"]],[3,6,["H6153"]],[6,9,["H1242"]],[9,10,["H834"]],[10,12,["H559"]],[12,14,["H571"]],[14,18,["H859","H5640"]],[18,20,["H2377"]],[20,21,["H3588"]],[21,26,["H7227"]],[26,27,["H3117"]]]},{"k":21988,"v":[[0,2,["H589"]],[2,3,["H1840"]],[3,4,["H1961"]],[4,7,["H2470"]],[7,9,["H3117"]],[9,13,["H6965"]],[13,15,["H6213","(H853)"]],[15,17,["H4428"]],[17,18,["H4399"]],[18,22,["H8074"]],[22,23,["H5921"]],[23,25,["H4758"]],[25,27,["H369"]],[27,28,["H995"]],[28,29,[]]]},{"k":21989,"v":[[0,3,["H259"]],[3,4,["H8141"]],[4,6,["H1867"]],[6,8,["H1121"]],[8,10,["H325"]],[10,13,["H4480","H2233"]],[13,16,["H4074"]],[16,17,["H834"]],[17,20,["H4427"]],[20,21,["H5921"]],[21,23,["H4438"]],[23,26,["H3778"]]]},{"k":21990,"v":[[0,3,["H259"]],[3,4,["H8141"]],[4,7,["H4427"]],[7,8,["H589"]],[8,9,["H1840"]],[9,10,["H995"]],[10,12,["H5612"]],[12,14,["H4557"]],[14,17,["H8141"]],[17,18,["H834"]],[18,20,["H1697"]],[20,23,["H3068"]],[23,24,["H1961"]],[24,25,["H413"]],[25,26,["H3414"]],[26,28,["H5030"]],[28,32,["H4390"]],[32,33,["H7657"]],[33,34,["H8141"]],[34,37,["H2723"]],[37,39,["H3389"]]]},{"k":21991,"v":[[0,3,["H5414","(H853)"]],[3,5,["H6440"]],[5,6,["H413"]],[6,8,["H136"]],[8,9,["H430"]],[9,11,["H1245"]],[11,13,["H8605"]],[13,15,["H8469"]],[15,17,["H6685"]],[17,19,["H8242"]],[19,21,["H665"]]]},{"k":21992,"v":[[0,3,["H6419"]],[3,6,["H3068"]],[6,8,["H430"]],[8,12,["H3034"]],[12,14,["H559"]],[14,15,["H577"]],[15,16,["H136"]],[16,18,["H1419"]],[18,20,["H3372"]],[20,21,["H410"]],[21,22,["H8104"]],[22,24,["H1285"]],[24,26,["H2617"]],[26,30,["H157"]],[30,36,["H8104"]],[36,38,["H4687"]]]},{"k":21993,"v":[[0,3,["H2398"]],[3,7,["H5753"]],[7,11,["H7561"]],[11,14,["H4775"]],[14,17,["H5493"]],[17,20,["H4480","H4687"]],[20,24,["H4480","H4941"]]]},{"k":21994,"v":[[0,1,["H3808"]],[1,4,["H8085"]],[4,5,["H413"]],[5,7,["H5650"]],[7,9,["H5030"]],[9,10,["H834"]],[10,11,["H1696"]],[11,14,["H8034"]],[14,15,["H413"]],[15,17,["H4428"]],[17,19,["H8269"]],[19,22,["H1"]],[22,24,["H413"]],[24,25,["H3605"]],[25,27,["H5971"]],[27,30,["H776"]]]},{"k":21995,"v":[[0,2,["H136"]],[2,3,["H6666"]],[3,10,["H1322"]],[10,12,["H6440"]],[12,15,["H2088"]],[15,16,["H3117"]],[16,19,["H376"]],[19,21,["H3063"]],[21,25,["H3427"]],[25,27,["H3389"]],[27,30,["H3605"]],[30,31,["H3478"]],[31,34,["H7138"]],[34,39,["H7350"]],[39,41,["H3605"]],[41,43,["H776"]],[43,44,["H834","H8033"]],[44,47,["H5080"]],[47,52,["H4604"]],[52,53,["H834"]],[53,56,["H4603"]],[56,58,[]]]},{"k":21996,"v":[[0,2,["H3068"]],[2,6,["H1322"]],[6,8,["H6440"]],[8,11,["H4428"]],[11,14,["H8269"]],[14,18,["H1"]],[18,19,["H834"]],[19,22,["H2398"]],[22,24,[]]]},{"k":21997,"v":[[0,3,["H136"]],[3,5,["H430"]],[5,7,["H7356"]],[7,9,["H5547"]],[9,10,["H3588"]],[10,13,["H4775"]],[13,15,[]]]},{"k":21998,"v":[[0,1,["H3808"]],[1,4,["H8085"]],[4,6,["H6963"]],[6,9,["H3068"]],[9,11,["H430"]],[11,13,["H1980"]],[13,16,["H8451"]],[16,17,["H834"]],[17,19,["H5414"]],[19,20,["H6440"]],[20,22,["H3027"]],[22,24,["H5650"]],[24,26,["H5030"]]]},{"k":21999,"v":[[0,2,["H3605"]],[2,3,["H3478"]],[3,5,["H5674","(H853)"]],[5,7,["H8451"]],[7,10,["H5493"]],[10,14,["H1115"]],[14,15,["H8085"]],[15,17,["H6963"]],[17,20,["H423"]],[20,22,["H5413"]],[22,23,["H5921"]],[23,27,["H7621"]],[27,28,["H834"]],[28,30,["H3789"]],[30,33,["H8451"]],[33,35,["H4872"]],[35,37,["H5650"]],[37,39,["H430"]],[39,40,["H3588"]],[40,43,["H2398"]],[43,45,[]]]},{"k":22000,"v":[[0,4,["H6965","(H853)"]],[4,6,["H1697"]],[6,7,["H834"]],[7,9,["H1696"]],[9,10,["H5921"]],[10,13,["H5921"]],[13,15,["H8199"]],[15,16,["H834"]],[16,17,["H8199"]],[17,20,["H935"]],[20,21,["H5921"]],[21,24,["H1419"]],[24,25,["H7451"]],[25,26,["H834"]],[26,27,["H8478"]],[27,29,["H3605"]],[29,30,["H8064"]],[30,32,["H3808"]],[32,34,["H6213"]],[34,35,["H834"]],[35,38,["H6213"]],[38,40,["H3389"]]]},{"k":22001,"v":[[0,1,["H834"]],[1,4,["H3789"]],[4,7,["H8451"]],[7,9,["H4872","(H853)"]],[9,10,["H3605"]],[10,11,["H2063"]],[11,12,["H7451"]],[12,14,["H935"]],[14,15,["H5921"]],[15,22,["H2470","H3808","(H853)"]],[22,23,["H6440"]],[23,25,["H3068"]],[25,27,["H430"]],[27,31,["H7725"]],[31,34,["H4480","H5771"]],[34,36,["H7919"]],[36,38,["H571"]]]},{"k":22002,"v":[[0,4,["H3068"]],[4,5,["H8245"]],[5,6,["H5921"]],[6,8,["H7451"]],[8,10,["H935"]],[10,12,["H5921"]],[12,14,["H3588"]],[14,16,["H3068"]],[16,18,["H430"]],[18,20,["H6662"]],[20,21,["H5921"]],[21,22,["H3605"]],[22,24,["H4639"]],[24,25,["H834"]],[25,27,["H6213"]],[27,30,["H8085"]],[30,31,["H3808"]],[31,33,["H6963"]]]},{"k":22003,"v":[[0,2,["H6258"]],[2,4,["H136"]],[4,6,["H430"]],[6,7,["H834"]],[7,12,["H3318","(H853)","H5971"]],[12,16,["H4480","H776"]],[16,18,["H4714"]],[18,21,["H2389"]],[21,22,["H3027"]],[22,25,["H6213"]],[25,27,["H8034"]],[27,30,["H2088"]],[30,31,["H3117"]],[31,34,["H2398"]],[34,38,["H7561"]]]},{"k":22004,"v":[[0,2,["H136"]],[2,5,["H3605"]],[5,7,["H6666"]],[7,10,["H4994"]],[10,13,["H639"]],[13,16,["H2534"]],[16,19,["H7725"]],[19,22,["H4480","H5892"]],[22,23,["H3389"]],[23,25,["H6944"]],[25,26,["H2022"]],[26,27,["H3588"]],[27,30,["H2399"]],[30,34,["H5771"]],[34,37,["H1"]],[37,38,["H3389"]],[38,41,["H5971"]],[41,45,["H2781"]],[45,47,["H3605"]],[47,50,["H5439"]],[50,51,[]]]},{"k":22005,"v":[[0,1,["H6258"]],[1,5,["H430"]],[5,6,["H8085","H413"]],[6,8,["H8605"]],[8,11,["H5650"]],[11,14,["H8469"]],[14,18,["H6440"]],[18,20,["H215"]],[20,21,["H5921"]],[21,23,["H4720"]],[23,26,["H8076"]],[26,30,["H4616","H136"]]]},{"k":22006,"v":[[0,3,["H430"]],[3,4,["H5186"]],[4,6,["H241"]],[6,8,["H8085"]],[8,9,["H6491"]],[9,11,["H5869"]],[11,13,["H7200"]],[13,15,["H8074"]],[15,18,["H5892"]],[18,19,["H834"]],[19,21,["H7121"]],[21,22,["H5921"]],[22,24,["H8034"]],[24,25,["H3588"]],[25,26,["H587"]],[26,28,["H3808"]],[28,29,["H5307"]],[29,31,["H8469"]],[31,32,["H6440"]],[32,34,["H5921"]],[34,36,["H6666"]],[36,37,["H3588"]],[37,38,["H5921"]],[38,40,["H7227"]],[40,41,["H7356"]]]},{"k":22007,"v":[[0,2,["H136"]],[2,3,["H8085"]],[3,5,["H136"]],[5,6,["H5545"]],[6,8,["H136"]],[8,9,["H7181"]],[9,11,["H6213"]],[11,12,["H309"]],[12,13,["H408"]],[13,17,["H4616"]],[17,20,["H430"]],[20,21,["H3588"]],[21,23,["H5892"]],[23,26,["H5971"]],[26,28,["H7121"]],[28,31,["H8034"]]]},{"k":22008,"v":[[0,2,["H5750"]],[2,3,["H589"]],[3,5,["H1696"]],[5,7,["H6419"]],[7,9,["H3034"]],[9,11,["H2403"]],[11,14,["H2403"]],[14,17,["H5971"]],[17,18,["H3478"]],[18,20,["H5307"]],[20,22,["H8467"]],[22,23,["H6440"]],[23,25,["H3068"]],[25,27,["H430"]],[27,28,["H5921"]],[28,30,["H6944"]],[30,31,["H2022"]],[31,34,["H430"]]]},{"k":22009,"v":[[0,2,["H5750"]],[2,3,["H589"]],[3,5,["H1696"]],[5,7,["H8605"]],[7,10,["H376"]],[10,11,["H1403"]],[11,12,["H834"]],[12,15,["H7200"]],[15,18,["H2377"]],[18,21,["H8462"]],[21,25,["H3286"]],[25,26,["H3288"]],[26,27,["H5060","H413"]],[27,31,["H6256"]],[31,34,["H6153"]],[34,35,["H4503"]]]},{"k":22010,"v":[[0,3,["H995"]],[3,6,["H1696"]],[6,7,["H5973"]],[7,10,["H559"]],[10,12,["H1840"]],[12,15,["H6258"]],[15,17,["H3318"]],[17,21,["H7919"]],[21,23,["H998"]]]},{"k":22011,"v":[[0,3,["H8462"]],[3,6,["H8469"]],[6,8,["H1697"]],[8,10,["H3318"]],[10,12,["H589"]],[12,14,["H935"]],[14,16,["H5046"]],[16,18,["H3588"]],[18,19,["H859"]],[19,22,["H2530"]],[22,24,["H995"]],[24,26,["H1697"]],[26,28,["H995"]],[28,30,["H4758"]]]},{"k":22012,"v":[[0,1,["H7657"]],[1,2,["H7620"]],[2,4,["H2852"]],[4,5,["H5921"]],[5,7,["H5971"]],[7,9,["H5921"]],[9,11,["H6944"]],[11,12,["H5892"]],[12,14,["H3607"]],[14,16,["H6588"]],[16,21,["H2856"]],[21,23,["H2403"]],[23,27,["H3722"]],[27,29,["H5771"]],[29,33,["H935"]],[33,34,["H5769"]],[34,35,["H6664"]],[35,39,["H2856"]],[39,41,["H2377"]],[41,43,["H5030"]],[43,46,["H4886"]],[46,49,["H6944","H6944"]]]},{"k":22013,"v":[[0,1,["H3045"]],[1,4,["H7919"]],[4,6,["H4480"]],[6,9,["H4161"]],[9,12,["H1697"]],[12,14,["H7725"]],[14,17,["H1129"]],[17,18,["H3389"]],[18,19,["H5704"]],[19,21,["H4899"]],[21,23,["H5057"]],[23,26,["H7651"]],[26,27,["H7620"]],[27,29,["H8346"]],[29,31,["H8147"]],[31,32,["H7620"]],[32,34,["H7339"]],[34,37,["H1129"]],[37,38,["H7725"]],[38,41,["H2742"]],[41,44,["H6695"]],[44,45,["H6256"]]]},{"k":22014,"v":[[0,2,["H310"]],[2,3,["H8346"]],[3,5,["H8147"]],[5,6,["H7620"]],[6,8,["H4899"]],[8,11,["H3772"]],[11,13,["H369"]],[13,18,["H5971"]],[18,21,["H5057"]],[21,24,["H935"]],[24,26,["H7843"]],[26,28,["H5892"]],[28,31,["H6944"]],[31,34,["H7093"]],[34,40,["H7858"]],[40,42,["H5704"]],[42,44,["H7093"]],[44,47,["H4421"]],[47,48,["H8074"]],[48,50,["H2782"]]]},{"k":22015,"v":[[0,4,["H1396"]],[4,6,["H1285"]],[6,8,["H7227"]],[8,10,["H259"]],[10,11,["H7620"]],[11,15,["H2677"]],[15,18,["H7620"]],[18,23,["H2077"]],[23,26,["H4503"]],[26,28,["H7673"]],[28,30,["H5921"]],[30,32,["H3671"]],[32,34,["H8251"]],[34,39,["H8074"]],[39,41,["H5704"]],[41,43,["H3617"]],[43,46,["H2782"]],[46,49,["H5413"]],[49,50,["H5921"]],[50,52,["H8076"]]]},{"k":22016,"v":[[0,3,["H7969"]],[3,4,["H8141"]],[4,6,["H3566"]],[6,7,["H4428"]],[7,9,["H6539"]],[9,11,["H1697"]],[11,13,["H1540"]],[13,15,["H1840"]],[15,16,["H834"]],[16,17,["H8034"]],[17,19,["H7121"]],[19,20,["H1095"]],[20,23,["H1697"]],[23,25,["H571"]],[25,29,["H6635"]],[29,31,["H1419"]],[31,34,["H995","(H853)"]],[34,36,["H1697"]],[36,39,["H998"]],[39,42,["H4758"]]]},{"k":22017,"v":[[0,2,["H1992"]],[2,3,["H3117"]],[3,4,["H589"]],[4,5,["H1840"]],[5,6,["H1961"]],[6,7,["H56"]],[7,8,["H7969"]],[8,9,["H3117"]],[9,10,["H7620"]]]},{"k":22018,"v":[[0,2,["H398"]],[2,3,["H3808"]],[3,4,["H2530"]],[4,5,["H3899"]],[5,6,["H3808"]],[6,7,["H935"]],[7,8,["H1320"]],[8,10,["H3196"]],[10,11,["H413"]],[11,13,["H6310"]],[13,14,["H3808"]],[14,20,["H5480","H5480"]],[20,21,["H5704"]],[21,22,["H7969"]],[22,23,["H3117"]],[23,24,["H7620"]],[24,26,["H4390"]]]},{"k":22019,"v":[[0,4,["H702"]],[4,6,["H6242"]],[6,7,["H3117"]],[7,10,["H7223"]],[10,11,["H2320"]],[11,13,["H589"]],[13,14,["H1961"]],[14,15,["H5921"]],[15,17,["H3027"]],[17,20,["H1419"]],[20,21,["H5104"]],[21,22,["H1931"]],[22,24,["H2313"]]]},{"k":22020,"v":[[0,4,["H5375","(H853)"]],[4,6,["H5869"]],[6,8,["H7200"]],[8,10,["H2009"]],[10,12,["H259"]],[12,13,["H376"]],[13,14,["H3847"]],[14,16,["H906"]],[16,18,["H4975"]],[18,20,["H2296"]],[20,23,["H3800"]],[23,25,["H210"]]]},{"k":22021,"v":[[0,2,["H1472"]],[2,7,["H8658"]],[7,10,["H6440"]],[10,13,["H4758"]],[13,15,["H1300"]],[15,18,["H5869"]],[18,20,["H3940"]],[20,22,["H784"]],[22,25,["H2220"]],[25,28,["H4772"]],[28,31,["H5869"]],[31,33,["H7044"]],[33,34,["H5178"]],[34,37,["H6963"]],[37,40,["H1697"]],[40,43,["H6963"]],[43,46,["H1995"]]]},{"k":22022,"v":[[0,2,["H589"]],[2,3,["H1840"]],[3,4,["H905"]],[4,5,["H7200","(H853)"]],[5,7,["H4759"]],[7,10,["H376"]],[10,11,["H834"]],[11,12,["H1961"]],[12,13,["H5973"]],[13,15,["H7200"]],[15,16,["H3808","(H853)"]],[16,18,["H4759"]],[18,19,["H61"]],[19,21,["H1419"]],[21,22,["H2731"]],[22,23,["H5307"]],[23,24,["H5921"]],[24,29,["H1272"]],[29,32,["H2244"]]]},{"k":22023,"v":[[0,2,["H589"]],[2,4,["H7604"]],[4,5,["H905"]],[5,7,["H7200","(H853)"]],[7,8,["H2063"]],[8,9,["H1419"]],[9,10,["H4759"]],[10,13,["H7604"]],[13,14,["H3808"]],[14,15,["H3581"]],[15,20,["H1935"]],[20,22,["H2015"]],[22,23,["H5921"]],[23,26,["H4889"]],[26,29,["H6113"]],[29,30,["H3808"]],[30,31,["H3581"]]]},{"k":22024,"v":[[0,2,["H8085"]],[2,3,["(H853)"]],[3,5,["H6963"]],[5,8,["H1697"]],[8,12,["H8085","(H853)"]],[12,14,["H6963"]],[14,17,["H1697"]],[17,19,["H1961"]],[19,20,["H589"]],[20,24,["H7290"]],[24,25,["H5921"]],[25,27,["H6440"]],[27,30,["H6440"]],[30,33,["H776"]]]},{"k":22025,"v":[[0,2,["H2009"]],[2,4,["H3027"]],[4,5,["H5060"]],[5,8,["H5128"]],[8,10,["H5921"]],[10,12,["H1290"]],[12,16,["H3709"]],[16,19,["H3027"]]]},{"k":22026,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H1840"]],[7,9,["H376"]],[9,11,["H2530"]],[11,12,["H995"]],[12,14,["H1697"]],[14,15,["H834"]],[15,16,["H595"]],[16,17,["H1696"]],[17,18,["H413"]],[18,21,["H5975"]],[21,22,["H5921","H5977"]],[22,23,["H3588"]],[23,24,["H413"]],[24,28,["H6258"]],[28,29,["H7971"]],[29,34,["H1696","(H853)"]],[34,35,["H2088"]],[35,36,["H1697"]],[36,37,["H5973"]],[37,40,["H5975"]],[40,41,["H7460"]]]},{"k":22027,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H3372"]],[6,7,["H408"]],[7,8,["H1840"]],[8,9,["H3588"]],[9,10,["H4480"]],[10,12,["H7223"]],[12,13,["H3117"]],[13,14,["H834"]],[14,17,["H5414","(H853)"]],[17,19,["H3820"]],[19,21,["H995"]],[21,25,["H6031"]],[25,26,["H6440"]],[26,28,["H430"]],[28,30,["H1697"]],[30,32,["H8085"]],[32,34,["H589"]],[34,36,["H935"]],[36,39,["H1697"]]]},{"k":22028,"v":[[0,3,["H8269"]],[3,6,["H4438"]],[6,8,["H6539"]],[8,9,["H5975","H5048"]],[9,11,["H259"]],[11,13,["H6242"]],[13,14,["H3117"]],[14,16,["H2009"]],[16,17,["H4317"]],[17,18,["H259"]],[18,21,["H7223"]],[21,22,["H8269"]],[22,23,["H935"]],[23,25,["H5826"]],[25,28,["H589"]],[28,29,["H3498"]],[29,30,["H8033"]],[30,31,["H681"]],[31,33,["H4428"]],[33,35,["H6539"]]]},{"k":22029,"v":[[0,4,["H935"]],[4,8,["H995","(H853)"]],[8,9,["H834"]],[9,11,["H7136"]],[11,13,["H5971"]],[13,16,["H319"]],[16,17,["H3117"]],[17,18,["H3588"]],[18,19,["H5750"]],[19,21,["H2377"]],[21,25,["H3117"]]]},{"k":22030,"v":[[0,5,["H1696"]],[5,6,["H428"]],[6,7,["H1697"]],[7,8,["H5973"]],[8,11,["H5414"]],[11,13,["H6440"]],[13,16,["H776"]],[16,20,["H481"]]]},{"k":22031,"v":[[0,2,["H2009"]],[2,6,["H1823"]],[6,9,["H1121"]],[9,11,["H120"]],[11,12,["H5060","H5921"]],[12,14,["H8193"]],[14,17,["H6605"]],[17,19,["H6310"]],[19,21,["H1696"]],[21,23,["H559"]],[23,24,["H413"]],[24,27,["H5975"]],[27,28,["H5048"]],[28,32,["H113"]],[32,35,["H4758"]],[35,37,["H6735"]],[37,39,["H2015"]],[39,40,["H5921"]],[40,45,["H6113"]],[45,46,["H3808"]],[46,47,["H3581"]]]},{"k":22032,"v":[[0,2,["H1963"]],[2,3,["H3201"]],[3,5,["H5650"]],[5,7,["H2088"]],[7,9,["H113"]],[9,10,["H1696"]],[10,11,["H5973"]],[11,12,["H2088"]],[12,14,["H113"]],[14,18,["H589"]],[18,19,["H4480","H6258"]],[19,21,["H5975"]],[21,22,["H3808"]],[22,23,["H3581"]],[23,26,["H3808"]],[26,29,["H5397"]],[29,30,["H7604"]],[30,32,[]]]},{"k":22033,"v":[[0,4,["H3254"]],[4,6,["H5060"]],[6,11,["H4758"]],[11,14,["H120"]],[14,17,["H2388"]],[17,18,[]]]},{"k":22034,"v":[[0,2,["H559"]],[2,4,["H376"]],[4,6,["H2530"]],[6,7,["H3372"]],[7,8,["H408"]],[8,9,["H7965"]],[9,14,["H2388"]],[14,17,["H2388"]],[17,22,["H1696"]],[22,23,["H5973"]],[23,27,["H2388"]],[27,29,["H559"]],[29,32,["H113"]],[32,33,["H1696"]],[33,34,["H3588"]],[34,37,["H2388"]],[37,38,[]]]},{"k":22035,"v":[[0,2,["H559"]],[2,4,["H3045"]],[4,6,["H4100"]],[6,8,["H935"]],[8,9,["H413"]],[9,12,["H6258"]],[12,15,["H7725"]],[15,17,["H3898"]],[17,18,["H5973"]],[18,20,["H8269"]],[20,22,["H6539"]],[22,25,["H589"]],[25,28,["H3318"]],[28,29,["H2009"]],[29,31,["H8269"]],[31,33,["H3120"]],[33,35,["H935"]]]},{"k":22036,"v":[[0,1,["H61"]],[1,4,["H5046"]],[4,5,["(H853)"]],[5,9,["H7559"]],[9,12,["H3791"]],[12,14,["H571"]],[14,18,["H369","H259"]],[18,20,["H2388"]],[20,21,["H5973"]],[21,23,["H5921"]],[23,25,["H428"]],[25,26,["H3588","H518"]],[26,27,["H4317"]],[27,29,["H8269"]]]},{"k":22037,"v":[[0,2,["H589"]],[2,5,["H259"]],[5,6,["H8141"]],[6,8,["H1867"]],[8,10,["H4075"]],[10,13,["H5975"]],[13,15,["H2388"]],[15,18,["H4581"]],[18,19,[]]]},{"k":22038,"v":[[0,2,["H6258"]],[2,5,["H5046"]],[5,8,["H571"]],[8,9,["H2009"]],[9,13,["H5975"]],[13,14,["H5750"]],[14,15,["H7969"]],[15,16,["H4428"]],[16,18,["H6539"]],[18,21,["H7243"]],[21,25,["H6238","H1419","H6239"]],[25,28,["H4480","H3605"]],[28,32,["H2393"]],[32,35,["H6239"]],[35,39,["H5782"]],[39,40,["H3605"]],[40,41,["H854"]],[41,43,["H4438"]],[43,45,["H3120"]]]},{"k":22039,"v":[[0,3,["H1368"]],[3,4,["H4428"]],[4,7,["H5975"]],[7,10,["H4910"]],[10,12,["H7227"]],[12,13,["H4474"]],[13,15,["H6213"]],[15,19,["H7522"]]]},{"k":22040,"v":[[0,6,["H5975"]],[6,8,["H4438"]],[8,11,["H7665"]],[11,15,["H2673"]],[15,18,["H702"]],[18,19,["H7307"]],[19,21,["H8064"]],[21,23,["H3808"]],[23,26,["H319"]],[26,27,["H3808"]],[27,31,["H4915"]],[31,32,["H834"]],[32,34,["H4910"]],[34,35,["H3588"]],[35,37,["H4438"]],[37,41,["H5428"]],[41,44,["H312"]],[44,45,["H4480","H905"]],[45,46,["H428"]]]},{"k":22041,"v":[[0,3,["H4428"]],[3,6,["H5045"]],[6,9,["H2388"]],[9,12,["H4480"]],[12,14,["H8269"]],[14,19,["H2388"]],[19,20,["H5921"]],[20,24,["H4910"]],[24,26,["H4474"]],[26,30,["H7227"]],[30,31,["H4474"]]]},{"k":22042,"v":[[0,4,["H7093"]],[4,6,["H8141"]],[6,11,["H2266"]],[11,14,["H4428"]],[14,15,["H1323"]],[15,18,["H5045"]],[18,20,["H935"]],[20,21,["H413"]],[21,23,["H4428"]],[23,26,["H6828"]],[26,28,["H6213"]],[28,30,["H4339"]],[30,34,["H3808"]],[34,35,["H6113"]],[35,37,["H3581"]],[37,40,["H2220"]],[40,41,["H3808"]],[41,44,["H5975"]],[44,47,["H2220"]],[47,49,["H1931"]],[49,53,["H5414"]],[53,57,["H935"]],[57,62,["H3205"]],[62,67,["H2388"]],[67,71,["H6256"]]]},{"k":22043,"v":[[0,5,["H4480","H5342"]],[5,8,["H8328"]],[8,12,["H5975"]],[12,15,["H3653"]],[15,18,["H935"]],[18,19,["H413"]],[19,21,["H2428"]],[21,24,["H935"]],[24,27,["H4581"]],[27,30,["H4428"]],[30,33,["H6828"]],[33,36,["H6213"]],[36,41,["H2388"]]]},{"k":22044,"v":[[0,3,["H1571"]],[3,4,["H935"]],[4,5,["H7628"]],[5,7,["H4714"]],[7,9,["H430"]],[9,10,["H5973"]],[10,12,["H5257"]],[12,14,["H5973"]],[14,16,["H2532"]],[16,17,["H3627"]],[17,19,["H3701"]],[19,22,["H2091"]],[22,24,["H1931"]],[24,26,["H5975"]],[26,28,["H8141"]],[28,31,["H4480","H4428"]],[31,34,["H6828"]]]},{"k":22045,"v":[[0,3,["H4428"]],[3,6,["H5045"]],[6,8,["H935"]],[8,11,["H4438"]],[11,14,["H7725"]],[14,15,["H413"]],[15,18,["H127"]]]},{"k":22046,"v":[[0,3,["H1121"]],[3,7,["H1624"]],[7,10,["H622"]],[10,12,["H1995"]],[12,14,["H7227"]],[14,15,["H2428"]],[15,20,["H935","H935"]],[20,22,["H7857"]],[22,25,["H5674"]],[25,29,["H7725"]],[29,33,["H1624"]],[33,35,["H5704"]],[35,37,["H4581"]]]},{"k":22047,"v":[[0,3,["H4428"]],[3,6,["H5045"]],[6,11,["H4843"]],[11,15,["H3318"]],[15,17,["H3898"]],[17,18,["H5973"]],[18,21,["H5973"]],[21,23,["H4428"]],[23,26,["H6828"]],[26,31,["H5975"]],[31,33,["H7227"]],[33,34,["H1995"]],[34,37,["H1995"]],[37,40,["H5414"]],[40,43,["H3027"]]]},{"k":22048,"v":[[0,6,["H5375"]],[6,8,["H1995"]],[8,10,["H3824"]],[10,14,["H7311"]],[14,19,["H5307"]],[19,22,["H7239"]],[22,26,["H3808"]],[26,28,["H5810"]],[28,30,[]]]},{"k":22049,"v":[[0,3,["H4428"]],[3,6,["H6828"]],[6,8,["H7725"]],[8,12,["H5975"]],[12,14,["H1995"]],[14,15,["H7227"]],[15,16,["H4480"]],[16,18,["H7223"]],[18,22,["H935","H935"]],[22,23,["H7093"]],[23,24,["H6256"]],[24,25,["H8141"]],[25,28,["H1419"]],[28,29,["H2428"]],[29,32,["H7227"]],[32,33,["H7399"]]]},{"k":22050,"v":[[0,3,["H1992"]],[3,4,["H6256"]],[4,7,["H7227"]],[7,9,["H5975"]],[9,10,["H5921"]],[10,12,["H4428"]],[12,15,["H5045"]],[15,18,["H1121","H6530"]],[18,21,["H5971"]],[21,24,["H5375"]],[24,26,["H5975"]],[26,28,["H2377"]],[28,32,["H3782"]]]},{"k":22051,"v":[[0,3,["H4428"]],[3,6,["H6828"]],[6,8,["H935"]],[8,11,["H8210"]],[11,13,["H5550"]],[13,15,["H3920"]],[15,18,["H4013"]],[18,19,["H5892"]],[19,22,["H2220"]],[22,25,["H5045"]],[25,27,["H3808"]],[27,28,["H5975"]],[28,31,["H4005"]],[31,32,["H5971"]],[32,33,["H369"]],[33,38,["H3581"]],[38,40,["H5975"]]]},{"k":22052,"v":[[0,4,["H935"]],[4,5,["H413"]],[5,8,["H6213"]],[8,13,["H7522"]],[13,15,["H369"]],[15,17,["H5975"]],[17,18,["H6440"]],[18,23,["H5975"]],[23,26,["H6643"]],[26,27,["H776"]],[27,31,["H3027"]],[31,34,["H3615"]]]},{"k":22053,"v":[[0,4,["H7760"]],[4,6,["H6440"]],[6,8,["H935"]],[8,11,["H8633"]],[11,14,["H3605"]],[14,15,["H4438"]],[15,18,["H3477"]],[18,19,["H5973"]],[19,24,["H6213"]],[24,28,["H5414"]],[28,31,["H1323"]],[31,33,["H802"]],[33,34,["H7843"]],[34,39,["H3808"]],[39,40,["H5975"]],[40,44,["H3808"]],[44,45,["H1961"]],[45,47,[]]]},{"k":22054,"v":[[0,5,["H7725"]],[5,7,["H6440"]],[7,10,["H339"]],[10,13,["H3920"]],[13,14,["H7227"]],[14,17,["H7101"]],[17,25,["H2781"]],[25,30,["H7673"]],[30,31,["H1115"]],[31,34,["H2781"]],[34,40,["H7725"]],[40,42,[]]]},{"k":22055,"v":[[0,4,["H7725"]],[4,6,["H6440"]],[6,9,["H4581"]],[9,13,["H776"]],[13,17,["H3782"]],[17,19,["H5307"]],[19,21,["H3808"]],[21,23,["H4672"]]]},{"k":22056,"v":[[0,4,["H5975"]],[4,5,["H5921"]],[5,7,["H3653"]],[7,9,["H5674"]],[9,11,["H5065"]],[11,14,["H1925"]],[14,17,["H4438"]],[17,20,["H259"]],[20,21,["H3117"]],[21,25,["H7665"]],[25,26,["H3808"]],[26,28,["H639"]],[28,29,["H3808"]],[29,31,["H4421"]]]},{"k":22057,"v":[[0,2,["H5921"]],[2,4,["H3653"]],[4,7,["H5975"]],[7,10,["H959"]],[10,11,["H5921"]],[11,15,["H3808"]],[15,16,["H5414"]],[16,18,["H1935"]],[18,21,["H4438"]],[21,26,["H935"]],[26,27,["H7962"]],[27,29,["H2388"]],[29,31,["H4438"]],[31,33,["H2519"]]]},{"k":22058,"v":[[0,4,["H2220"]],[4,7,["H7858"]],[7,11,["H7857"]],[11,13,["H4480","H6440"]],[13,18,["H7665"]],[18,20,["H1571"]],[20,22,["H5057"]],[22,25,["H1285"]]]},{"k":22059,"v":[[0,2,["H4480"]],[2,4,["H2266"]],[4,6,["H413"]],[6,10,["H6213"]],[10,11,["H4820"]],[11,16,["H5927"]],[16,20,["H6105"]],[20,23,["H4592"]],[23,24,["H1471"]]]},{"k":22060,"v":[[0,3,["H935"]],[3,4,["H7962"]],[4,9,["H4924"]],[9,12,["H4082"]],[12,16,["H6213"]],[16,18,["H834"]],[18,20,["H1"]],[20,22,["H3808"]],[22,23,["H6213"]],[23,26,["H1"]],[26,27,["H1"]],[27,30,["H967"]],[30,34,["H961"]],[34,36,["H7998"]],[36,38,["H7399"]],[38,43,["H2803"]],[43,45,["H4284"]],[45,46,["H5921"]],[46,49,["H4013"]],[49,51,["H5704"]],[51,53,["H6256"]]]},{"k":22061,"v":[[0,5,["H5782"]],[5,7,["H3581"]],[7,10,["H3824"]],[10,11,["H5921"]],[11,13,["H4428"]],[13,16,["H5045"]],[16,19,["H1419"]],[19,20,["H2428"]],[20,23,["H4428"]],[23,26,["H5045"]],[26,30,["H1624"]],[30,32,["H4421"]],[32,35,["H5704","H3966"]],[35,36,["H1419"]],[36,38,["H6099"]],[38,39,["H2428"]],[39,43,["H3808"]],[43,44,["H5975"]],[44,45,["H3588"]],[45,48,["H2803"]],[48,49,["H4284"]],[49,50,["H5921"]],[50,51,[]]]},{"k":22062,"v":[[0,4,["H398"]],[4,10,["H6598"]],[10,12,["H7665"]],[12,16,["H2428"]],[16,18,["H7857"]],[18,20,["H7227"]],[20,23,["H5307"]],[23,24,["H2491"]]]},{"k":22063,"v":[[0,2,["H8147"]],[2,4,["H4428"]],[4,5,["H3824"]],[5,10,["H4827"]],[10,14,["H1696"]],[14,15,["H3577"]],[15,16,["H5921"]],[16,17,["H259"]],[17,18,["H7979"]],[18,22,["H3808"]],[22,23,["H6743"]],[23,24,["H3588"]],[24,25,["H5750"]],[25,27,["H7093"]],[27,33,["H4150"]]]},{"k":22064,"v":[[0,4,["H7725"]],[4,7,["H776"]],[7,9,["H1419"]],[9,10,["H7399"]],[10,13,["H3824"]],[13,16,["H5921"]],[16,18,["H6944"]],[18,19,["H1285"]],[19,23,["H6213"]],[23,26,["H7725"]],[26,30,["H776"]]]},{"k":22065,"v":[[0,4,["H4150"]],[4,7,["H7725"]],[7,9,["H935"]],[9,12,["H5045"]],[12,16,["H3808"]],[16,17,["H1961"]],[17,20,["H7223"]],[20,24,["H314"]]]},{"k":22066,"v":[[0,3,["H6716"]],[3,5,["H3794"]],[5,7,["H935"]],[7,14,["H3512"]],[14,16,["H7725"]],[16,19,["H2194"]],[19,20,["H5921"]],[20,22,["H6944"]],[22,23,["H1285"]],[23,27,["H6213"]],[27,31,["H7725"]],[31,34,["H995"]],[34,35,["H5921"]],[35,38,["H5800"]],[38,40,["H6944"]],[40,41,["H1285"]]]},{"k":22067,"v":[[0,2,["H2220"]],[2,4,["H5975"]],[4,7,["H4480"]],[7,11,["H2490"]],[11,13,["H4720"]],[13,15,["H4581"]],[15,19,["H5493"]],[19,21,["H8548"]],[21,26,["H5414"]],[26,28,["H8251"]],[28,31,["H8074"]]]},{"k":22068,"v":[[0,6,["H7561"]],[6,8,["H1285"]],[8,11,["H2610"]],[11,13,["H2514"]],[13,16,["H5971"]],[16,19,["H3045"]],[19,21,["H430"]],[21,24,["H2388"]],[24,26,["H6213"]],[26,27,[]]]},{"k":22069,"v":[[0,4,["H7919"]],[4,7,["H5971"]],[7,9,["H995"]],[9,10,["H7227"]],[10,14,["H3782"]],[14,17,["H2719"]],[17,20,["H3852"]],[20,22,["H7628"]],[22,25,["H961"]],[25,27,["H3117"]]]},{"k":22070,"v":[[0,5,["H3782"]],[5,9,["H5826"]],[9,12,["H4592"]],[12,13,["H5828"]],[13,15,["H7227"]],[15,17,["H3867"]],[17,18,["H5921"]],[18,21,["H2519"]]]},{"k":22071,"v":[[0,3,["H4480"]],[3,6,["H7919"]],[6,8,["H3782"]],[8,10,["H6884"]],[10,14,["H1305"]],[14,19,["H3835"]],[19,21,["H5704"]],[21,23,["H6256"]],[23,26,["H7093"]],[26,27,["H3588"]],[27,30,["H5750"]],[30,34,["H4150"]]]},{"k":22072,"v":[[0,3,["H4428"]],[3,5,["H6213"]],[5,9,["H7522"]],[9,14,["H7311"]],[14,17,["H1431"]],[17,18,["H5921"]],[18,19,["H3605"]],[19,20,["H410"]],[20,23,["H1696"]],[23,25,["H6381"]],[25,26,["H5921"]],[26,28,["H410"]],[28,30,["H410"]],[30,33,["H6743"]],[33,34,["H5704"]],[34,36,["H2195"]],[36,38,["H3615"]],[38,39,["H3588"]],[39,43,["H2782"]],[43,46,["H6213"]]]},{"k":22073,"v":[[0,4,["H5921","H3808","H995"]],[4,6,["H430"]],[6,9,["H1"]],[9,12,["H2532"]],[12,14,["H802"]],[14,17,["H3605","H3808","H995"]],[17,18,["H433"]],[18,19,["H3588"]],[19,23,["H1431"]],[23,24,["H5921"]],[24,25,["H3605"]]]},{"k":22074,"v":[[0,2,["H5921"]],[2,4,["H3653"]],[4,7,["H3513"]],[7,9,["H433"]],[9,11,["H4581"]],[11,14,["H433"]],[14,15,["H834"]],[15,17,["H1"]],[17,18,["H3045"]],[18,19,["H3808"]],[19,22,["H3513"]],[22,24,["H2091"]],[24,26,["H3701"]],[26,29,["H3368"]],[29,30,["H68"]],[30,33,["H2530"]]]},{"k":22075,"v":[[0,4,["H6213"]],[4,9,["H4013","H4581"]],[9,10,["H5973"]],[10,12,["H5236"]],[12,13,["H433"]],[13,14,["H834"]],[14,17,["H5234"]],[17,19,["H7235"]],[19,21,["H3519"]],[21,28,["H4910"]],[28,30,["H7227"]],[30,33,["H2505"]],[33,35,["H127"]],[35,37,["H4242"]]]},{"k":22076,"v":[[0,4,["H6256"]],[4,7,["H7093"]],[7,10,["H4428"]],[10,13,["H5045"]],[13,14,["H5055"]],[14,15,["H5973"]],[15,19,["H4428"]],[19,22,["H6828"]],[22,29,["H8175","H5921"]],[29,31,["H7393"]],[31,34,["H6571"]],[34,37,["H7227"]],[37,38,["H591"]],[38,42,["H935"]],[42,45,["H776"]],[45,48,["H7857"]],[48,51,["H5674"]]]},{"k":22077,"v":[[0,3,["H935"]],[3,7,["H6643"]],[7,8,["H776"]],[8,10,["H7227"]],[10,14,["H3782"]],[14,16,["H428"]],[16,18,["H4422"]],[18,22,["H4480","H3027"]],[22,24,["H123"]],[24,26,["H4124"]],[26,29,["H7225"]],[29,32,["H1121"]],[32,34,["H5983"]]]},{"k":22078,"v":[[0,4,["H7971"]],[4,6,["H3027"]],[6,10,["H776"]],[10,13,["H776"]],[13,15,["H4714"]],[15,17,["H3808"]],[17,18,["H1961","H6413"]]]},{"k":22079,"v":[[0,5,["H4910"]],[5,8,["H4362"]],[8,10,["H2091"]],[10,13,["H3701"]],[13,16,["H3605"]],[16,19,["H2530"]],[19,21,["H4714"]],[21,24,["H3864"]],[24,27,["H3569"]],[27,32,["H4703"]]]},{"k":22080,"v":[[0,2,["H8052"]],[2,6,["H4480","H4217"]],[6,11,["H4480","H6828"]],[11,13,["H926"]],[13,19,["H3318"]],[19,21,["H1419"]],[21,22,["H2534"]],[22,24,["H8045"]],[24,29,["H2763"]],[29,30,["H7227"]]]},{"k":22081,"v":[[0,4,["H5193"]],[4,6,["H168"]],[6,9,["H643"]],[9,10,["H996"]],[10,12,["H3220"]],[12,15,["H6643"]],[15,16,["H6944"]],[16,17,["H2022"]],[17,21,["H935"]],[21,22,["H5704"]],[22,24,["H7093"]],[24,26,["H369"]],[26,28,["H5826"]],[28,29,[]]]},{"k":22082,"v":[[0,3,["H1931"]],[3,4,["H6256"]],[4,6,["H4317"]],[6,8,["H5975"]],[8,10,["H1419"]],[10,11,["H8269"]],[11,13,["H5975"]],[13,14,["H5921"]],[14,16,["H1121"]],[16,19,["H5971"]],[19,23,["H1961"]],[23,25,["H6256"]],[25,27,["H6869"]],[27,29,["H834"]],[29,30,["H3808"]],[30,31,["H1961"]],[31,34,["H4480","H1961"]],[34,36,["H1471"]],[36,38,["H5704"]],[38,40,["H1931"]],[40,41,["H6256"]],[41,44,["H1931"]],[44,45,["H6256"]],[45,47,["H5971"]],[47,50,["H4422"]],[50,52,["H3605"]],[52,56,["H4672"]],[56,57,["H3789"]],[57,60,["H5612"]]]},{"k":22083,"v":[[0,2,["H7227"]],[2,6,["H4480","H3463"]],[6,9,["H6083"]],[9,12,["H127"]],[12,14,["H6974"]],[14,15,["H428"]],[15,17,["H5769"]],[17,18,["H2416"]],[18,20,["H428"]],[20,22,["H2781"]],[22,24,["H5769"]],[24,25,["H1860"]]]},{"k":22084,"v":[[0,5,["H7919"]],[5,7,["H2094"]],[7,10,["H2096"]],[10,13,["H7549"]],[13,20,["H6663","H7227"]],[20,23,["H3556"]],[23,25,["H5769"]],[25,27,["H5703"]]]},{"k":22085,"v":[[0,2,["H859"]],[2,4,["H1840"]],[4,6,["H5640"]],[6,8,["H1697"]],[8,10,["H2856"]],[10,12,["H5612"]],[12,14,["H5704"]],[14,16,["H6256"]],[16,19,["H7093"]],[19,20,["H7227"]],[20,25,["H7751"]],[25,27,["H1847"]],[27,30,["H7235"]]]},{"k":22086,"v":[[0,2,["H589"]],[2,3,["H1840"]],[3,4,["H7200"]],[4,6,["H2009"]],[6,8,["H5975"]],[8,9,["H312"]],[9,10,["H8147"]],[10,12,["H259"]],[12,15,["H2008"]],[15,18,["H8193"]],[18,21,["H2975"]],[21,24,["H259"]],[24,27,["H2008"]],[27,30,["H8193"]],[30,33,["H2975"]]]},{"k":22087,"v":[[0,3,["H559"]],[3,6,["H376"]],[6,7,["H3847"]],[7,9,["H906"]],[9,10,["H834"]],[10,12,["H4480","H4605"]],[12,14,["H4325"]],[14,17,["H2975"]],[17,19,["H5704","H4970"]],[19,25,["H7093"]],[25,28,["H6382"]]]},{"k":22088,"v":[[0,3,["H8085","(H853)"]],[3,5,["H376"]],[5,6,["H3847"]],[6,8,["H906"]],[8,9,["H834"]],[9,11,["H4480","H4605"]],[11,13,["H4325"]],[13,16,["H2975"]],[16,20,["H7311"]],[20,23,["H3225"]],[23,27,["H8040"]],[27,28,["H413"]],[28,29,["H8064"]],[29,31,["H7650"]],[31,35,["H2416"]],[35,37,["H5769"]],[37,38,["H3588"]],[38,44,["H4150"]],[44,45,["H4150"]],[45,48,["H2677"]],[48,54,["H3615"]],[54,56,["H5310"]],[56,58,["H3027"]],[58,61,["H6944"]],[61,62,["H5971"]],[62,63,["H3605"]],[63,64,["H428"]],[64,68,["H3615"]]]},{"k":22089,"v":[[0,2,["H589"]],[2,3,["H8085"]],[3,6,["H995"]],[6,7,["H3808"]],[7,9,["H559"]],[9,13,["H113"]],[13,14,["H4100"]],[14,18,["H319"]],[18,20,["H428"]],[20,21,[]]]},{"k":22090,"v":[[0,3,["H559"]],[3,6,["H1980"]],[6,7,["H1840"]],[7,8,["H3588"]],[8,10,["H1697"]],[10,13,["H5640"]],[13,15,["H2856"]],[15,16,["H5704"]],[16,18,["H6256"]],[18,21,["H7093"]]]},{"k":22091,"v":[[0,1,["H7227"]],[1,4,["H1305"]],[4,7,["H3835"]],[7,9,["H6884"]],[9,12,["H7563"]],[12,15,["H7561"]],[15,17,["H3808","H3605"]],[17,20,["H7563"]],[20,22,["H995"]],[22,25,["H7919"]],[25,27,["H995"]]]},{"k":22092,"v":[[0,4,["H4480","H6256"]],[4,7,["H8548"]],[7,12,["H5493"]],[12,15,["H8251"]],[15,18,["H8074"]],[18,20,["H5414"]],[20,25,["H505"]],[25,27,["H3967"]],[27,29,["H8673"]],[29,30,["H3117"]]]},{"k":22093,"v":[[0,1,["H835"]],[1,5,["H2442"]],[5,7,["H5060"]],[7,10,["H505"]],[10,11,["H7969"]],[11,12,["H3967"]],[12,14,["H2568"]],[14,16,["H7970"]],[16,17,["H3117"]]]},{"k":22094,"v":[[0,5,["H859","H1980"]],[5,8,["H7093"]],[8,13,["H5117"]],[13,15,["H5975"]],[15,18,["H1486"]],[18,21,["H7093"]],[21,24,["H3117"]]]},{"k":22095,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H834"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H1954"]],[9,11,["H1121"]],[11,13,["H882"]],[13,16,["H3117"]],[16,18,["H5818"]],[18,19,["H3147"]],[19,20,["H271"]],[20,22,["H3169"]],[22,23,["H4428"]],[23,25,["H3063"]],[25,29,["H3117"]],[29,31,["H3379"]],[31,33,["H1121"]],[33,35,["H3101"]],[35,36,["H4428"]],[36,38,["H3478"]]]},{"k":22096,"v":[[0,2,["H8462"]],[2,5,["H1696"]],[5,8,["H3068"]],[8,10,["H1954"]],[10,13,["H3068"]],[13,14,["H559"]],[14,15,["H413"]],[15,16,["H1954"]],[16,17,["H1980"]],[17,18,["H3947"]],[18,22,["H802"]],[22,24,["H2183"]],[24,26,["H3206"]],[26,28,["H2183"]],[28,29,["H3588"]],[29,31,["H776"]],[31,35,["H2181","H2181"]],[35,37,["H4480","H310"]],[37,39,["H3068"]]]},{"k":22097,"v":[[0,3,["H1980"]],[3,5,["H3947","(H853)"]],[5,6,["H1586"]],[6,8,["H1323"]],[8,10,["H1691"]],[10,12,["H2029"]],[12,14,["H3205"]],[14,17,["H1121"]]]},{"k":22098,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H7121"]],[7,9,["H8034"]],[9,10,["H3157"]],[10,11,["H3588"]],[11,12,["H5750"]],[12,14,["H4592"]],[14,19,["H6485","(H853)"]],[19,21,["H1818"]],[21,23,["H3157"]],[23,24,["H5921"]],[24,26,["H1004"]],[26,28,["H3058"]],[28,33,["H7673"]],[33,35,["H4468"]],[35,38,["H1004"]],[38,40,["H3478"]]]},{"k":22099,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,13,["H7665","(H853)"]],[13,15,["H7198"]],[15,17,["H3478"]],[17,20,["H6010"]],[20,22,["H3157"]]]},{"k":22100,"v":[[0,3,["H2029"]],[3,4,["H5750"]],[4,6,["H3205"]],[6,8,["H1323"]],[8,11,["H559"]],[11,14,["H7121"]],[14,16,["H8034"]],[16,17,["H3819"]],[17,18,["H3588"]],[18,21,["H3808"]],[21,22,["H5750","H3254"]],[22,25,["H7355","(H853)"]],[25,27,["H1004"]],[27,29,["H3478"]],[29,30,["H3588"]],[30,36,["H5375","H5375"]]]},{"k":22101,"v":[[0,6,["H7355"]],[6,8,["H1004"]],[8,10,["H3063"]],[10,13,["H3467"]],[13,17,["H3068"]],[17,19,["H430"]],[19,22,["H3808"]],[22,23,["H3467"]],[23,26,["H7198"]],[26,29,["H2719"]],[29,32,["H4421"]],[32,34,["H5483"]],[34,37,["H6571"]]]},{"k":22102,"v":[[0,5,["H1580","(H853)"]],[5,6,["H3819"]],[6,8,["H2029"]],[8,10,["H3205"]],[10,12,["H1121"]]]},{"k":22103,"v":[[0,2,["H559"]],[2,4,["H7121"]],[4,6,["H8034"]],[6,7,["H3818"]],[7,8,["H3588"]],[8,9,["H859"]],[9,11,["H3808"]],[11,13,["H5971"]],[13,15,["H595"]],[15,17,["H3808"]],[17,18,["H1961"]],[18,20,[]]]},{"k":22104,"v":[[0,3,["H4557"]],[3,6,["H1121"]],[6,8,["H3478"]],[8,10,["H1961"]],[10,13,["H2344"]],[13,16,["H3220"]],[16,17,["H834"]],[17,18,["H3808"]],[18,20,["H4058"]],[20,21,["H3808"]],[21,22,["H5608"]],[22,28,["H1961"]],[28,32,["H4725"]],[32,33,["H834"]],[33,36,["H559"]],[36,39,["H859"]],[39,41,["H3808"]],[41,43,["H5971"]],[43,48,["H559"]],[48,54,["H1121"]],[54,57,["H2416"]],[57,58,["H410"]]]},{"k":22105,"v":[[0,4,["H1121"]],[4,6,["H3063"]],[6,9,["H1121"]],[9,11,["H3478"]],[11,14,["H6908","H3162"]],[14,16,["H7760"]],[16,18,["H259"]],[18,19,["H7218"]],[19,24,["H5927"]],[24,26,["H4480"]],[26,28,["H776"]],[28,29,["H3588"]],[29,30,["H1419"]],[30,34,["H3117"]],[34,36,["H3157"]]]},{"k":22106,"v":[[0,1,["H559"]],[1,5,["H251"]],[5,6,["H5971"]],[6,10,["H269"]],[10,11,["H7355"]]]},{"k":22107,"v":[[0,1,["H7378"]],[1,4,["H517"]],[4,5,["H7378"]],[5,6,["H3588"]],[6,7,["H1931"]],[7,9,["H3808"]],[9,11,["H802"]],[11,12,["H3808"]],[12,14,["H595"]],[14,16,["H376"]],[16,21,["H5493"]],[21,23,["H2183"]],[23,27,["H4480","H6440"]],[27,30,["H5005"]],[30,32,["H4480","H996"]],[32,34,["H7699"]]]},{"k":22108,"v":[[0,1,["H6435"]],[1,3,["H6584"]],[3,5,["H6174"]],[5,7,["H3322"]],[7,12,["H3117"]],[12,16,["H3205"]],[16,18,["H7760"]],[18,22,["H4057"]],[22,24,["H7896"]],[24,28,["H6723"]],[28,29,["H776"]],[29,31,["H4191"]],[31,34,["H6772"]]]},{"k":22109,"v":[[0,4,["H3808"]],[4,7,["H7355"]],[7,9,["H1121"]],[9,10,["H3588"]],[10,11,["H1992"]],[11,14,["H1121"]],[14,16,["H2183"]]]},{"k":22110,"v":[[0,1,["H3588"]],[1,3,["H517"]],[3,7,["H2181"]],[7,10,["H2029"]],[10,14,["H954"]],[14,15,["H3588"]],[15,17,["H559"]],[17,20,["H1980"]],[20,21,["H310"]],[21,23,["H157"]],[23,25,["H5414"]],[25,28,["H3899"]],[28,31,["H4325"]],[31,33,["H6785"]],[33,36,["H6593"]],[36,38,["H8081"]],[38,41,["H8250"]]]},{"k":22111,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,6,["H7753","(H853)"]],[6,8,["H1870"]],[8,10,["H5518"]],[10,12,["H1443","(H853)"]],[12,14,["H1447"]],[14,18,["H3808"]],[18,19,["H4672"]],[19,21,["H5410"]]]},{"k":22112,"v":[[0,5,["H7291","(H853)"]],[5,7,["H157"]],[7,11,["H3808"]],[11,12,["H5381"]],[12,17,["H1245"]],[17,21,["H3808"]],[21,22,["H4672"]],[22,27,["H559"]],[27,30,["H1980"]],[30,32,["H7725"]],[32,33,["H413"]],[33,35,["H7223"]],[35,36,["H376"]],[36,37,["H3588"]],[37,38,["H227"]],[38,41,["H2896"]],[41,45,["H4480","H6258"]]]},{"k":22113,"v":[[0,2,["H1931"]],[2,4,["H3808"]],[4,5,["H3045"]],[5,6,["H3588"]],[6,7,["H595"]],[7,8,["H5414"]],[8,10,["H1715"]],[10,12,["H8492"]],[12,14,["H3323"]],[14,16,["H7235"]],[16,18,["H3701"]],[18,20,["H2091"]],[20,23,["H6213"]],[23,25,["H1168"]]]},{"k":22114,"v":[[0,1,["H3651"]],[1,4,["H7725"]],[4,7,["H3947"]],[7,9,["H1715"]],[9,12,["H6256"]],[12,16,["H8492"]],[16,19,["H4150"]],[19,23,["H5337"]],[23,25,["H6785"]],[25,28,["H6593"]],[28,31,["H3680","(H853)"]],[31,33,["H6172"]]]},{"k":22115,"v":[[0,2,["H6258"]],[2,5,["H1540","(H853)"]],[5,7,["H5040"]],[7,10,["H5869"]],[10,13,["H157"]],[13,15,["H3808","H376"]],[15,17,["H5337"]],[17,22,["H4480","H3027"]]]},{"k":22116,"v":[[0,5,["H3605"]],[5,7,["H4885"]],[7,9,["H7673"]],[9,12,["H2282"]],[12,15,["H2320"]],[15,18,["H7676"]],[18,20,["H3605"]],[20,23,["H4150"]]]},{"k":22117,"v":[[0,4,["H8074"]],[4,6,["H1612"]],[6,10,["H8384"]],[10,11,["H834"]],[11,14,["H559"]],[14,15,["H1992"]],[15,18,["H866"]],[18,19,["H834"]],[19,21,["H157"]],[21,23,["H5414"]],[23,28,["H7760"]],[28,31,["H3293"]],[31,34,["H2416"]],[34,37,["H7704"]],[37,39,["H398"]],[39,40,[]]]},{"k":22118,"v":[[0,4,["H6485"]],[4,5,["H5921"]],[5,6,["(H853)"]],[6,8,["H3117"]],[8,10,["H1168"]],[10,11,["H834"]],[11,14,["H6999"]],[14,19,["H5710"]],[19,23,["H5141"]],[23,26,["H2484"]],[26,29,["H1980"]],[29,30,["H310"]],[30,32,["H157"]],[32,34,["H7911"]],[34,36,["H5002"]],[36,38,["H3068"]]]},{"k":22119,"v":[[0,1,["H3651"]],[1,2,["H2009"]],[2,3,["H595"]],[3,5,["H6601"]],[5,8,["H1980"]],[8,12,["H4057"]],[12,14,["H1696"]],[14,15,["H5921","H3820"]],[15,17,[]]]},{"k":22120,"v":[[0,4,["H5414"]],[4,5,["(H853)"]],[5,7,["H3754"]],[7,9,["H4480","H8033"]],[9,12,["H6010"]],[12,14,["H5911"]],[14,17,["H6607"]],[17,19,["H8615"]],[19,23,["H6030"]],[23,24,["H8033"]],[24,28,["H3117"]],[28,31,["H5271"]],[31,36,["H3117"]],[36,40,["H5927"]],[40,44,["H4480","H776"]],[44,46,["H4714"]]]},{"k":22121,"v":[[0,4,["H1961"]],[4,6,["H1931"]],[6,7,["H3117"]],[7,8,["H5002"]],[8,10,["H3068"]],[10,14,["H7121"]],[14,16,["H376"]],[16,19,["H7121"]],[19,21,["H3808"]],[21,22,["H5750"]],[22,23,["H1180"]]]},{"k":22122,"v":[[0,5,["H5493","(H853)"]],[5,7,["H8034"]],[7,9,["H1168"]],[9,13,["H4480","H6310"]],[13,17,["H3808"]],[17,18,["H5750"]],[18,20,["H2142"]],[20,23,["H8034"]]]},{"k":22123,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,7,["H3772"]],[7,9,["H1285"]],[9,12,["H5973"]],[12,14,["H2416"]],[14,17,["H7704"]],[17,19,["H5973"]],[19,21,["H5775"]],[21,23,["H8064"]],[23,28,["H7431"]],[28,31,["H127"]],[31,35,["H7665"]],[35,37,["H7198"]],[37,40,["H2719"]],[40,43,["H4421"]],[43,45,["H4480"]],[45,47,["H776"]],[47,54,["H7901"]],[54,55,["H983"]]]},{"k":22124,"v":[[0,4,["H781"]],[4,9,["H5769"]],[9,13,["H781"]],[13,18,["H6664"]],[18,21,["H4941"]],[21,24,["H2617"]],[24,27,["H7356"]]]},{"k":22125,"v":[[0,4,["H781"]],[4,9,["H530"]],[9,13,["H3045","(H853)"]],[13,15,["H3068"]]]},{"k":22126,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H6030"]],[12,13,["H5002"]],[13,15,["H3068"]],[15,18,["H6030","(H853)"]],[18,20,["H8064"]],[20,22,["H1992"]],[22,24,["H6030","(H853)"]],[24,26,["H776"]]]},{"k":22127,"v":[[0,3,["H776"]],[3,5,["H6030","(H853)"]],[5,7,["H1715"]],[7,10,["H8492"]],[10,13,["H3323"]],[13,15,["H1992"]],[15,17,["H6030","(H853)"]],[17,18,["H3157"]]]},{"k":22128,"v":[[0,4,["H2232"]],[4,10,["H776"]],[10,16,["H7355","(H853)"]],[16,20,["H3808"]],[20,22,["H7355"]],[22,26,["H559"]],[26,31,["H3808"]],[31,33,["H5971"]],[33,34,["H859"]],[34,37,["H5971"]],[37,39,["H1931"]],[39,41,["H559"]],[41,45,["H430"]]]},{"k":22129,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H413"]],[5,7,["H1980"]],[7,8,["H5750"]],[8,9,["H157"]],[9,11,["H802"]],[11,12,["H157"]],[12,15,["H7453"]],[15,18,["H5003"]],[18,22,["H160"]],[22,25,["H3068"]],[25,26,["(H853)"]],[26,28,["H1121"]],[28,30,["H3478"]],[30,31,["H1992"]],[31,32,["H6437"]],[32,33,["H413"]],[33,34,["H312"]],[34,35,["H430"]],[35,37,["H157"]],[37,38,["H809"]],[38,40,["H6025"]]]},{"k":22130,"v":[[0,3,["H3739"]],[3,8,["H2568","H6240"]],[8,11,["H3701"]],[11,15,["H2563"]],[15,17,["H8184"]],[17,21,["H3963"]],[21,23,["H8184"]]]},{"k":22131,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,8,["H3427"]],[8,11,["H7227"]],[11,12,["H3117"]],[12,15,["H3808"]],[15,18,["H2181"]],[18,22,["H3808"]],[22,23,["H1961"]],[23,26,["H376"]],[26,29,["H589"]],[29,30,["H1571"]],[30,32,["H413"]],[32,33,[]]]},{"k":22132,"v":[[0,1,["H3588"]],[1,3,["H1121"]],[3,5,["H3478"]],[5,7,["H3427"]],[7,8,["H7227"]],[8,9,["H3117"]],[9,10,["H369"]],[10,12,["H4428"]],[12,14,["H369"]],[14,16,["H8269"]],[16,18,["H369"]],[18,20,["H2077"]],[20,22,["H369"]],[22,24,["H4676"]],[24,26,["H369"]],[26,28,["H646"]],[28,31,["H8655"]]]},{"k":22133,"v":[[0,1,["H310"]],[1,4,["H1121"]],[4,6,["H3478"]],[6,7,["H7725"]],[7,9,["H1245","(H853)"]],[9,11,["H3068"]],[11,13,["H430"]],[13,15,["H1732"]],[15,17,["H4428"]],[17,20,["H6342","H413"]],[20,22,["H3068"]],[22,25,["H2898"]],[25,28,["H319"]],[28,29,["H3117"]]]},{"k":22134,"v":[[0,1,["H8085"]],[1,3,["H1697"]],[3,6,["H3068"]],[6,8,["H1121"]],[8,10,["H3478"]],[10,11,["H3588"]],[11,13,["H3068"]],[13,16,["H7379"]],[16,17,["H5973"]],[17,19,["H3427"]],[19,22,["H776"]],[22,23,["H3588"]],[23,26,["H369"]],[26,27,["H571"]],[27,28,["H369"]],[28,29,["H2617"]],[29,30,["H369"]],[30,31,["H1847"]],[31,33,["H430"]],[33,36,["H776"]]]},{"k":22135,"v":[[0,2,["H422"]],[2,4,["H3584"]],[4,6,["H7523"]],[6,8,["H1589"]],[8,11,["H5003"]],[11,14,["H6555"]],[14,16,["H1818"]],[16,17,["H5060"]],[17,18,["H1818"]]]},{"k":22136,"v":[[0,1,["H5921","H3651"]],[1,4,["H776"]],[4,5,["H56"]],[5,8,["H3605"]],[8,10,["H3427"]],[10,13,["H535"]],[13,16,["H2416"]],[16,19,["H7704"]],[19,23,["H5775"]],[23,25,["H8064"]],[25,28,["H1709"]],[28,31,["H3220"]],[31,32,["H1571"]],[32,36,["H622"]]]},{"k":22137,"v":[[0,1,["H389"]],[1,3,["H408"]],[3,4,["H376"]],[4,5,["H7378"]],[5,6,["H408"]],[6,7,["H3198"]],[7,8,["H376"]],[8,11,["H5971"]],[11,16,["H7378"]],[16,19,["H3548"]]]},{"k":22138,"v":[[0,4,["H3782"]],[4,7,["H3117"]],[7,10,["H5030"]],[10,11,["H1571"]],[11,13,["H3782"]],[13,14,["H5973"]],[14,18,["H3915"]],[18,22,["H1820"]],[22,24,["H517"]]]},{"k":22139,"v":[[0,2,["H5971"]],[2,4,["H1820"]],[4,6,["H4480","H1097"]],[6,8,["H1847"]],[8,9,["H3588"]],[9,10,["H859"]],[10,12,["H3988"]],[12,13,["H1847"]],[13,17,["H3988"]],[17,24,["H4480","H3547"]],[24,30,["H7911"]],[30,32,["H8451"]],[32,35,["H430"]],[35,36,["H589"]],[36,38,["H1571"]],[38,39,["H7911"]],[39,41,["H1121"]]]},{"k":22140,"v":[[0,4,["H7231"]],[4,5,["H3651"]],[5,7,["H2398"]],[7,13,["H4171"]],[13,15,["H3519"]],[15,17,["H7036"]]]},{"k":22141,"v":[[0,3,["H398"]],[3,5,["H2403"]],[5,8,["H5971"]],[8,11,["H5375"]],[11,13,["H5315"]],[13,14,["H413"]],[14,16,["H5771"]]]},{"k":22142,"v":[[0,4,["H1961"]],[4,6,["H5971"]],[6,8,["H3548"]],[8,12,["H6485","H5921"]],[12,16,["H1870"]],[16,18,["H7725"]],[18,21,["H4611"]]]},{"k":22143,"v":[[0,4,["H398"]],[4,6,["H3808"]],[6,8,["H7646"]],[8,12,["H2181"]],[12,15,["H3808"]],[15,16,["H6555"]],[16,17,["H3588"]],[17,21,["H5800"]],[21,24,["H8104","(H853)"]],[24,27,["H3068"]]]},{"k":22144,"v":[[0,1,["H2184"]],[1,3,["H3196"]],[3,6,["H8492"]],[6,8,["H3947"]],[8,10,["H3820"]]]},{"k":22145,"v":[[0,2,["H5971"]],[2,4,["H7592"]],[4,7,["H6086"]],[7,10,["H4731"]],[10,11,["H5046"]],[11,14,["H3588"]],[14,16,["H7307"]],[16,18,["H2183"]],[18,23,["H8582"]],[23,29,["H2181"]],[29,31,["H4480","H8478"]],[31,33,["H430"]]]},{"k":22146,"v":[[0,2,["H2076"]],[2,3,["H5921"]],[3,5,["H7218"]],[5,8,["H2022"]],[8,11,["H6999"]],[11,12,["H5921"]],[12,14,["H1389"]],[14,15,["H8478"]],[15,16,["H437"]],[16,18,["H3839"]],[18,20,["H424"]],[20,21,["H3588"]],[21,23,["H6738"]],[23,26,["H2896"]],[26,27,["H5921","H3651"]],[27,29,["H1323"]],[29,32,["H2181"]],[32,35,["H3618"]],[35,38,["H5003"]]]},{"k":22147,"v":[[0,3,["H3808"]],[3,4,["H6485","H5921"]],[4,6,["H1323"]],[6,7,["H3588"]],[7,10,["H2181"]],[10,13,["H3618"]],[13,14,["H3588"]],[14,17,["H5003"]],[17,18,["H3588"]],[18,19,["H1992"]],[19,21,["H6504"]],[21,22,["H5973"]],[22,23,["H2181"]],[23,26,["H2076"]],[26,27,["H5973"]],[27,28,["H6948"]],[28,31,["H5971"]],[31,34,["H3808"]],[34,35,["H995"]],[35,37,["H3832"]]]},{"k":22148,"v":[[0,1,["H518"]],[1,2,["H859"]],[2,3,["H3478"]],[3,6,["H2181"]],[6,9,["H408"]],[9,10,["H3063"]],[10,11,["H816"]],[11,13,["H935"]],[13,14,["H408"]],[14,17,["H1537"]],[17,18,["H408"]],[18,21,["H5927"]],[21,23,["H1007"]],[23,24,["H408"]],[24,25,["H7650"]],[25,27,["H3068"]],[27,28,["H2416"]]]},{"k":22149,"v":[[0,1,["H3588"]],[1,2,["H3478"]],[2,4,["H5637"]],[4,7,["H5637"]],[7,8,["H6510"]],[8,9,["H6258"]],[9,11,["H3068"]],[11,13,["H7462"]],[13,17,["H3532"]],[17,21,["H4800"]]]},{"k":22150,"v":[[0,1,["H669"]],[1,3,["H2266"]],[3,5,["H6091"]],[5,8,["H5117"]]]},{"k":22151,"v":[[0,2,["H5435"]],[2,4,["H5493"]],[4,9,["H2181","H2181"]],[9,11,["H4043"]],[11,13,["H7036"]],[13,15,["H157"]],[15,16,["H3051"]],[16,17,[]]]},{"k":22152,"v":[[0,2,["H7307"]],[2,6,["H6887","(H853)"]],[6,9,["H3671"]],[9,14,["H954"]],[14,18,["H4480","H2077"]]]},{"k":22153,"v":[[0,1,["H8085"]],[1,3,["H2063"]],[3,5,["H3548"]],[5,7,["H7181"]],[7,9,["H1004"]],[9,11,["H3478"]],[11,15,["H238"]],[15,17,["H1004"]],[17,20,["H4428"]],[20,21,["H3588"]],[21,22,["H4941"]],[22,26,["H3588"]],[26,29,["H1961"]],[29,31,["H6341"]],[31,33,["H4709"]],[33,36,["H7568"]],[36,37,["H6566"]],[37,38,["H5921"]],[38,39,["H8396"]]]},{"k":22154,"v":[[0,3,["H7846"]],[3,5,["H6009"]],[5,8,["H7819"]],[8,10,["H589"]],[10,14,["H4148"]],[14,17,["H3605"]]]},{"k":22155,"v":[[0,1,["H589"]],[1,2,["H3045"]],[2,3,["H669"]],[3,5,["H3478"]],[5,7,["H3808"]],[7,8,["H3582"]],[8,9,["H4480"]],[9,11,["H3588"]],[11,12,["H6258"]],[12,14,["H669"]],[14,17,["H2181"]],[17,19,["H3478"]],[19,21,["H2930"]]]},{"k":22156,"v":[[0,3,["H3808"]],[3,4,["H5414"]],[4,6,["H4611"]],[6,8,["H7725"]],[8,9,["H413"]],[9,11,["H430"]],[11,12,["H3588"]],[12,14,["H7307"]],[14,16,["H2183"]],[16,20,["H7130"]],[20,26,["H3808"]],[26,27,["H3045"]],[27,29,["H3068"]]]},{"k":22157,"v":[[0,3,["H1347"]],[3,5,["H3478"]],[5,7,["H6030"]],[7,10,["H6440"]],[10,13,["H3478"]],[13,15,["H669"]],[15,16,["H3782"]],[16,19,["H5771"]],[19,20,["H3063"]],[20,21,["H1571"]],[21,23,["H3782"]],[23,24,["H5973"]],[24,25,[]]]},{"k":22158,"v":[[0,3,["H1980"]],[3,6,["H6629"]],[6,10,["H1241"]],[10,12,["H1245","(H853)"]],[12,14,["H3068"]],[14,18,["H3808"]],[18,19,["H4672"]],[19,23,["H2502"]],[23,25,["H4480"]],[25,26,[]]]},{"k":22159,"v":[[0,4,["H898"]],[4,7,["H3068"]],[7,8,["H3588"]],[8,11,["H3205"]],[11,12,["H2114"]],[12,13,["H1121"]],[13,14,["H6258"]],[14,17,["H2320"]],[17,18,["H398"]],[18,20,["H854"]],[20,22,["H2506"]]]},{"k":22160,"v":[[0,1,["H8628"]],[1,4,["H7782"]],[4,6,["H1390"]],[6,9,["H2689"]],[9,11,["H7414"]],[11,13,["H7321"]],[13,15,["H1007"]],[15,16,["H310"]],[16,19,["H1144"]]]},{"k":22161,"v":[[0,1,["H669"]],[1,3,["H1961"]],[3,4,["H8047"]],[4,7,["H3117"]],[7,9,["H8433"]],[9,12,["H7626"]],[12,14,["H3478"]],[14,18,["H3045"]],[18,23,["H539"]]]},{"k":22162,"v":[[0,2,["H8269"]],[2,4,["H3063"]],[4,5,["H1961"]],[5,9,["H5253"]],[9,11,["H1366"]],[11,16,["H8210"]],[16,18,["H5678"]],[18,19,["H5921"]],[19,22,["H4325"]]]},{"k":22163,"v":[[0,1,["H669"]],[1,3,["H6231"]],[3,5,["H7533"]],[5,7,["H4941"]],[7,8,["H3588"]],[8,10,["H2974"]],[10,11,["H1980"]],[11,12,["H310"]],[12,14,["H6673"]]]},{"k":22164,"v":[[0,3,["H589"]],[3,6,["H669"]],[6,9,["H6211"]],[9,13,["H1004"]],[13,15,["H3063"]],[15,17,["H7538"]]]},{"k":22165,"v":[[0,2,["H669"]],[2,3,["H7200","(H853)"]],[3,5,["H2483"]],[5,7,["H3063"]],[7,8,["(H853)"]],[8,10,["H4205"]],[10,12,["H1980"]],[12,13,["H669"]],[13,14,["H413"]],[14,16,["H804"]],[16,18,["H7971"]],[18,19,["H413"]],[19,20,["H4428"]],[20,21,["H3377"]],[21,23,["H3201"]],[23,24,["H1931"]],[24,25,["H3808"]],[25,26,["H7495"]],[26,28,["H3808"]],[28,29,["H1455","H4480"]],[29,33,["H4205"]]]},{"k":22166,"v":[[0,1,["H3588"]],[1,2,["H595"]],[2,6,["H669"]],[6,9,["H7826"]],[9,14,["H3715"]],[14,17,["H1004"]],[17,19,["H3063"]],[19,20,["H589"]],[20,22,["H589"]],[22,24,["H2963"]],[24,27,["H1980"]],[27,31,["H5375"]],[31,33,["H369"]],[33,35,["H5337"]],[35,36,[]]]},{"k":22167,"v":[[0,3,["H1980"]],[3,5,["H7725"]],[5,6,["H413"]],[6,8,["H4725"]],[8,9,["H5704","H834"]],[9,13,["H816"]],[13,15,["H1245"]],[15,17,["H6440"]],[17,20,["H6862"]],[20,25,["H7836"]]]},{"k":22168,"v":[[0,1,["H1980"]],[1,5,["H7725"]],[5,6,["H413"]],[6,8,["H3068"]],[8,9,["H3588"]],[9,10,["H1931"]],[10,12,["H2963"]],[12,16,["H7495"]],[16,20,["H5221"]],[20,26,["H2280"]]]},{"k":22169,"v":[[0,3,["H4480","H3117"]],[3,6,["H2421"]],[6,10,["H7992"]],[10,11,["H3117"]],[11,16,["H6965"]],[16,20,["H2421"]],[20,23,["H6440"]]]},{"k":22170,"v":[[0,4,["H3045"]],[4,8,["H7291"]],[8,10,["H3045","(H853)"]],[10,12,["H3068"]],[12,15,["H4161"]],[15,17,["H3559"]],[17,20,["H7837"]],[20,24,["H935"]],[24,29,["H1653"]],[29,32,["H4456"]],[32,35,["H3138"]],[35,38,["H776"]]]},{"k":22171,"v":[[0,2,["H669"]],[2,3,["H4100"]],[3,6,["H6213"]],[6,10,["H3063"]],[10,11,["H4100"]],[11,14,["H6213"]],[14,19,["H2617"]],[19,23,["H1242"]],[23,24,["H6051"]],[24,28,["H7925"]],[28,29,["H2919"]],[29,32,["H1980"]]]},{"k":22172,"v":[[0,1,["H5921","H3651"]],[1,4,["H2672"]],[4,8,["H5030"]],[8,11,["H2026"]],[11,15,["H561"]],[15,18,["H6310"]],[18,21,["H4941"]],[21,25,["H216"]],[25,28,["H3318"]]]},{"k":22173,"v":[[0,1,["H3588"]],[1,3,["H2654"]],[3,4,["H2617"]],[4,6,["H3808"]],[6,7,["H2077"]],[7,10,["H1847"]],[10,12,["H430"]],[12,16,["H4480","H5930"]]]},{"k":22174,"v":[[0,2,["H1992"]],[2,4,["H120"]],[4,6,["H5674"]],[6,8,["H1285"]],[8,9,["H8033"]],[9,13,["H898"]],[13,15,[]]]},{"k":22175,"v":[[0,1,["H1568"]],[1,4,["H7151"]],[4,8,["H6466"]],[8,9,["H205"]],[9,12,["H6121"]],[12,14,["H4480","H1818"]]]},{"k":22176,"v":[[0,5,["H1416"]],[5,6,["H2442"]],[6,9,["H376"]],[9,12,["H2267"]],[12,14,["H3548"]],[14,15,["H7523"]],[15,18,["H1870"]],[18,20,["H7926"]],[20,21,["H3588"]],[21,23,["H6213"]],[23,24,["H2154"]]]},{"k":22177,"v":[[0,3,["H7200"]],[3,6,["H8186"]],[6,9,["H1004"]],[9,11,["H3478"]],[11,12,["H8033"]],[12,15,["H2184"]],[15,17,["H669"]],[17,18,["H3478"]],[18,20,["H2930"]]]},{"k":22178,"v":[[0,1,["H1571"]],[1,3,["H3063"]],[3,6,["H7896"]],[6,8,["H7105"]],[8,13,["H7725"]],[13,15,["H7622"]],[15,18,["H5971"]]]},{"k":22179,"v":[[0,5,["H7495"]],[5,6,["H3478"]],[6,9,["H5771"]],[9,11,["H669"]],[11,13,["H1540"]],[13,16,["H7451"]],[16,18,["H8111"]],[18,19,["H3588"]],[19,21,["H6466"]],[21,22,["H8267"]],[22,25,["H1590"]],[25,27,["H935"]],[27,32,["H1416"]],[32,33,["H6584"]],[33,34,["H2351"]]]},{"k":22180,"v":[[0,3,["H559"]],[3,4,["H1077"]],[4,7,["H3824"]],[7,10,["H2142"]],[10,11,["H3605"]],[11,13,["H7451"]],[13,14,["H6258"]],[14,17,["H4611"]],[17,21,["H5437"]],[21,23,["H1961"]],[23,24,["H5048"]],[24,26,["H6440"]]]},{"k":22181,"v":[[0,5,["H8055","H4428"]],[5,8,["H7451"]],[8,11,["H8269"]],[11,14,["H3585"]]]},{"k":22182,"v":[[0,3,["H3605"]],[3,4,["H5003"]],[4,5,["H3644"]],[5,7,["H8574"]],[7,8,["H1197"]],[8,9,["H4480"]],[9,11,["H644"]],[11,13,["H7673"]],[13,15,["H4480","H5782"]],[15,19,["H4480","H3888"]],[19,21,["H1217"]],[21,22,["H5704"]],[22,25,["H2556"]]]},{"k":22183,"v":[[0,3,["H3117"]],[3,6,["H4428"]],[6,8,["H8269"]],[8,12,["H2470"]],[12,14,["H2534"]],[14,16,["H4480","H3196"]],[16,19,["H4900"]],[19,21,["H3027"]],[21,22,["H854"]],[22,23,["H3945"]]]},{"k":22184,"v":[[0,1,["H3588"]],[1,5,["H7126"]],[5,7,["H3820"]],[7,10,["H8574"]],[10,15,["H693"]],[15,17,["H644"]],[17,18,["H3463"]],[18,19,["H3605"]],[19,21,["H3915"]],[21,24,["H1242"]],[24,25,["H1931"]],[25,26,["H1197"]],[26,29,["H3852"]],[29,30,["H784"]]]},{"k":22185,"v":[[0,4,["H2552","H3605"]],[4,7,["H8574"]],[7,10,["H398","(H853)"]],[10,12,["H8199"]],[12,13,["H3605"]],[13,15,["H4428"]],[15,17,["H5307"]],[17,20,["H369"]],[20,24,["H7121"]],[24,25,["H413"]],[25,26,[]]]},{"k":22186,"v":[[0,1,["H669"]],[1,2,["H1931"]],[2,5,["H1101"]],[5,8,["H5971"]],[8,9,["H669"]],[9,10,["H1961"]],[10,12,["H5692"]],[12,13,["H1097"]],[13,14,["H2015"]]]},{"k":22187,"v":[[0,1,["H2114"]],[1,3,["H398"]],[3,5,["H3581"]],[5,7,["H1931"]],[7,8,["H3045"]],[8,10,["H3808"]],[10,11,["H1571"]],[11,13,["H7872"]],[13,17,["H2236"]],[17,21,["H1931"]],[21,22,["H3045"]],[22,23,["H3808"]]]},{"k":22188,"v":[[0,3,["H1347"]],[3,5,["H3478"]],[5,6,["H6030"]],[6,9,["H6440"]],[9,13,["H3808"]],[13,14,["H7725"]],[14,15,["H413"]],[15,17,["H3068"]],[17,19,["H430"]],[19,20,["H3808"]],[20,21,["H1245"]],[21,24,["H3605"]],[24,25,["H2063"]]]},{"k":22189,"v":[[0,1,["H669"]],[1,3,["H1961"]],[3,6,["H6601"]],[6,7,["H3123"]],[7,8,["H369"]],[8,9,["H3820"]],[9,11,["H7121"]],[11,13,["H4714"]],[13,15,["H1980"]],[15,17,["H804"]]]},{"k":22190,"v":[[0,1,["H834"]],[1,4,["H1980"]],[4,7,["H6566"]],[7,9,["H7568"]],[9,10,["H5921"]],[10,16,["H3381"]],[16,19,["H5775"]],[19,22,["H8064"]],[22,25,["H3256"]],[25,29,["H5712"]],[29,31,["H8088"]]]},{"k":22191,"v":[[0,1,["H188"]],[1,4,["H3588"]],[4,7,["H5074"]],[7,8,["H4480"]],[8,10,["H7701"]],[10,13,["H3588"]],[13,16,["H6586"]],[16,20,["H595"]],[20,22,["H6299"]],[22,25,["H1992"]],[25,27,["H1696"]],[27,28,["H3577"]],[28,29,["H5921"]],[29,30,[]]]},{"k":22192,"v":[[0,4,["H3808"]],[4,5,["H2199"]],[5,6,["H413"]],[6,10,["H3820"]],[10,11,["H3588"]],[11,13,["H3213"]],[13,14,["H5921"]],[14,16,["H4904"]],[16,19,["H1481"]],[19,20,["H5921"]],[20,21,["H1715"]],[21,23,["H8492"]],[23,26,["H5493"]],[26,28,[]]]},{"k":22193,"v":[[0,2,["H589"]],[2,4,["H3256"]],[4,6,["H2388"]],[6,8,["H2220"]],[8,12,["H2803"]],[12,13,["H7451"]],[13,14,["H413"]],[14,15,[]]]},{"k":22194,"v":[[0,2,["H7725"]],[2,4,["H3808"]],[4,8,["H5920"]],[8,10,["H1961"]],[10,13,["H7423"]],[13,14,["H7198"]],[14,16,["H8269"]],[16,18,["H5307"]],[18,21,["H2719"]],[21,24,["H4480","H2195"]],[24,27,["H3956"]],[27,28,["H2097"]],[28,32,["H3933"]],[32,35,["H776"]],[35,37,["H4714"]]]},{"k":22195,"v":[[0,3,["H7782"]],[3,4,["H413"]],[4,6,["H2441"]],[6,12,["H5404"]],[12,13,["H5921"]],[13,15,["H1004"]],[15,18,["H3068"]],[18,19,["H3282"]],[19,22,["H5674"]],[22,24,["H1285"]],[24,26,["H6586"]],[26,27,["H5921"]],[27,29,["H8451"]]]},{"k":22196,"v":[[0,1,["H3478"]],[1,3,["H2199"]],[3,7,["H430"]],[7,9,["H3045"]],[9,10,[]]]},{"k":22197,"v":[[0,1,["H3478"]],[1,4,["H2186"]],[4,9,["H2896"]],[9,11,["H341"]],[11,13,["H7291"]],[13,14,[]]]},{"k":22198,"v":[[0,1,["H1992"]],[1,5,["H4427"]],[5,7,["H3808"]],[7,8,["H4480"]],[8,13,["H8323"]],[13,16,["H3045"]],[16,18,["H3808"]],[18,21,["H3701"]],[21,24,["H2091"]],[24,27,["H6213"]],[27,29,["H6091"]],[29,30,["H4616"]],[30,35,["H3772"]]]},{"k":22199,"v":[[0,2,["H5695"]],[2,4,["H8111"]],[4,8,["H2186"]],[8,10,["H639"]],[10,12,["H2734"]],[12,16,["H5704","H4970"]],[16,20,["H3808"]],[20,22,["H3201"]],[22,24,["H5356"]]]},{"k":22200,"v":[[0,1,["H3588"]],[1,3,["H4480","H3478"]],[3,5,["H1931"]],[5,8,["H2796"]],[8,9,["H6213"]],[9,10,["H1931"]],[10,14,["H3808"]],[14,15,["H430"]],[15,16,["H3588"]],[16,18,["H5695"]],[18,20,["H8111"]],[20,22,["H1961"]],[22,25,["H7616"]]]},{"k":22201,"v":[[0,1,["H3588"]],[1,4,["H2232"]],[4,6,["H7307"]],[6,10,["H7114"]],[10,12,["H5492"]],[12,15,["H369"]],[15,16,["H7054"]],[16,18,["H6780"]],[18,20,["H6213"]],[20,21,["H1097"]],[21,22,["H7058"]],[22,25,["H194"]],[25,27,["H6213"]],[27,29,["H2114"]],[29,33,["H1104"]]]},{"k":22202,"v":[[0,1,["H3478"]],[1,4,["H1104"]],[4,5,["H6258"]],[5,8,["H1961"]],[8,11,["H1471"]],[11,14,["H3627"]],[14,17,["H369"]],[17,18,["H2656"]]]},{"k":22203,"v":[[0,1,["H3588"]],[1,2,["H1992"]],[2,5,["H5927"]],[5,7,["H804"]],[7,10,["H6501"]],[10,11,["H909"]],[11,14,["H669"]],[14,16,["H8566"]],[16,17,["H158"]]]},{"k":22204,"v":[[0,1,["H1571"]],[1,2,["H3588"]],[2,5,["H8566"]],[5,8,["H1471"]],[8,9,["H6258"]],[9,12,["H6908"]],[12,17,["H2490"]],[17,19,["H4592"]],[19,22,["H4480","H4853"]],[22,25,["H4428"]],[25,27,["H8269"]]]},{"k":22205,"v":[[0,1,["H3588"]],[1,2,["H669"]],[2,5,["H7235"]],[5,6,["H4196"]],[6,8,["H2398"]],[8,9,["H4196"]],[9,11,["H1961"]],[11,15,["H2398"]]]},{"k":22206,"v":[[0,3,["H3789"]],[3,8,["H7230"]],[8,11,["H8451"]],[11,15,["H2803"]],[15,16,["H3644"]],[16,19,["H2114"]]]},{"k":22207,"v":[[0,2,["H2076"]],[2,3,["H1320"]],[3,6,["H2077"]],[6,9,["H1890"]],[9,11,["H398"]],[11,15,["H3068"]],[15,16,["H7521"]],[16,18,["H3808"]],[18,19,["H6258"]],[19,22,["H2142"]],[22,24,["H5771"]],[24,26,["H6485"]],[26,28,["H2403"]],[28,29,["H1992"]],[29,31,["H7725"]],[31,33,["H4714"]]]},{"k":22208,"v":[[0,2,["H3478"]],[2,4,["H7911","(H853)"]],[4,6,["H6213"]],[6,8,["H1129"]],[8,9,["H1964"]],[9,11,["H3063"]],[11,13,["H7235"]],[13,14,["H1219"]],[14,15,["H5892"]],[15,19,["H7971"]],[19,21,["H784"]],[21,24,["H5892"]],[24,28,["H398"]],[28,30,["H759"]],[30,31,[]]]},{"k":22209,"v":[[0,1,["H8055"]],[1,2,["H408"]],[2,4,["H3478"]],[4,5,["H413"]],[5,6,["H1524"]],[6,9,["H5971"]],[9,10,["H3588"]],[10,15,["H2181"]],[15,16,["H4480","H5921"]],[16,18,["H430"]],[18,21,["H157"]],[21,23,["H868"]],[23,24,["H5921"]],[24,25,["H3605"]],[25,26,["H1715","H1637"]]]},{"k":22210,"v":[[0,2,["H1637"]],[2,5,["H3342"]],[5,7,["H3808"]],[7,8,["H7462"]],[8,13,["H8492"]],[13,15,["H3584"]],[15,17,[]]]},{"k":22211,"v":[[0,3,["H3808"]],[3,4,["H3427"]],[4,7,["H3068"]],[7,8,["H776"]],[8,10,["H669"]],[10,12,["H7725"]],[12,14,["H4714"]],[14,18,["H398"]],[18,19,["H2931"]],[19,22,["H804"]]]},{"k":22212,"v":[[0,3,["H3808"]],[3,4,["H5258"]],[4,5,["H3196"]],[5,9,["H3068"]],[9,10,["H3808"]],[10,14,["H6149"]],[14,18,["H2077"]],[18,25,["H3899"]],[25,27,["H205"]],[27,28,["H3605"]],[28,30,["H398"]],[30,34,["H2930"]],[34,35,["H3588"]],[35,37,["H3899"]],[37,40,["H5315"]],[40,42,["H3808"]],[42,44,["H935"]],[44,46,["H1004"]],[46,49,["H3068"]]]},{"k":22213,"v":[[0,1,["H4100"]],[1,4,["H6213"]],[4,7,["H4150"]],[7,8,["H3117"]],[8,12,["H3117"]],[12,15,["H2282"]],[15,18,["H3068"]]]},{"k":22214,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,5,["H1980"]],[5,8,["H4480","H7701"]],[8,9,["H4714"]],[9,13,["H6908"]],[13,14,["H4644"]],[14,16,["H6912"]],[16,19,["H4261"]],[19,23,["H3701"]],[23,24,["H7057"]],[24,26,["H3423"]],[26,28,["H2336"]],[28,33,["H168"]]]},{"k":22215,"v":[[0,2,["H3117"]],[2,4,["H6486"]],[4,6,["H935"]],[6,8,["H3117"]],[8,10,["H7966"]],[10,12,["H935"]],[12,13,["H3478"]],[13,15,["H3045"]],[15,18,["H5030"]],[18,21,["H191"]],[21,23,["H7307"]],[23,24,["H376"]],[24,26,["H7696"]],[26,27,["H5921"]],[27,29,["H7230"]],[29,32,["H5771"]],[32,35,["H7227"]],[35,36,["H4895"]]]},{"k":22216,"v":[[0,2,["H6822"]],[2,4,["H669"]],[4,6,["H5973"]],[6,8,["H430"]],[8,11,["H5030"]],[11,14,["H6341"]],[14,17,["H3352"]],[17,18,["H5921"]],[18,19,["H3605"]],[19,21,["H1870"]],[21,23,["H4895"]],[23,26,["H1004"]],[26,29,["H430"]]]},{"k":22217,"v":[[0,3,["H6009"]],[3,4,["H7843"]],[4,9,["H3117"]],[9,11,["H1390"]],[11,15,["H2142"]],[15,17,["H5771"]],[17,20,["H6485"]],[20,22,["H2403"]]]},{"k":22218,"v":[[0,2,["H4672"]],[2,3,["H3478"]],[3,5,["H6025"]],[5,8,["H4057"]],[8,10,["H7200"]],[10,12,["H1"]],[12,15,["H1063"]],[15,19,["H8384"]],[19,23,["H7225"]],[23,25,["H1992"]],[25,26,["H935"]],[26,28,["H1187"]],[28,31,["H5144"]],[31,34,["H1322"]],[34,37,["H8251"]],[37,38,["H1961"]],[38,42,["H157"]]]},{"k":22219,"v":[[0,3,["H669"]],[3,5,["H3519"]],[5,8,["H5774"]],[8,11,["H5775"]],[11,14,["H4480","H3205"]],[14,18,["H4480","H990"]],[18,22,["H4480","H2032"]]]},{"k":22220,"v":[[0,1,["H3588","H518"]],[1,4,["H1431","(H853)"]],[4,6,["H1121"]],[6,10,["H7921"]],[10,18,["H4480","H120"]],[18,20,["H3588"]],[20,21,["H188"]],[21,22,["H1571"]],[22,27,["H5493"]],[27,28,["H4480"]],[28,29,[]]]},{"k":22221,"v":[[0,1,["H669"]],[1,2,["H834"]],[2,4,["H7200"]],[4,5,["H6865"]],[5,7,["H8362"]],[7,11,["H5116"]],[11,13,["H669"]],[13,16,["H3318"]],[16,18,["H1121"]],[18,19,["H413"]],[19,21,["H2026"]]]},{"k":22222,"v":[[0,1,["H5414"]],[1,4,["H3068"]],[4,5,["H4100"]],[5,8,["H5414"]],[8,9,["H5414"]],[9,12,["H7921"]],[12,13,["H7358"]],[13,15,["H6784"]],[15,16,["H7699"]]]},{"k":22223,"v":[[0,1,["H3605"]],[1,3,["H7451"]],[3,6,["H1537"]],[6,7,["H3588"]],[7,8,["H8033"]],[8,10,["H8130"]],[10,12,["H5921"]],[12,14,["H7455"]],[14,17,["H4611"]],[17,22,["H1644"]],[22,25,["H4480","H1004"]],[25,28,["H157"]],[28,30,["H3808"]],[30,31,["H3254"]],[31,32,["H3605"]],[32,34,["H8269"]],[34,36,["H5637"]]]},{"k":22224,"v":[[0,1,["H669"]],[1,3,["H5221"]],[3,5,["H8328"]],[5,8,["H3001"]],[8,11,["H6213"]],[11,12,["H1077"]],[12,13,["H6529"]],[13,14,["H1571"]],[14,15,["H3588"]],[15,18,["H3205"]],[18,22,["H4191"]],[22,25,["H4261"]],[25,29,["H990"]]]},{"k":22225,"v":[[0,2,["H430"]],[2,6,["H3988"]],[6,7,["H3588"]],[7,10,["H3808"]],[10,11,["H8085"]],[11,17,["H1961"]],[17,18,["H5074"]],[18,21,["H1471"]]]},{"k":22226,"v":[[0,1,["H3478"]],[1,4,["H1238"]],[4,5,["H1612"]],[5,8,["H7737"]],[8,9,["H6529"]],[9,15,["H7230"]],[15,18,["H6529"]],[18,21,["H7235"]],[21,23,["H4196"]],[23,27,["H2896"]],[27,30,["H776"]],[30,34,["H3190"]],[34,35,["H4676"]]]},{"k":22227,"v":[[0,2,["H3820"]],[2,4,["H2505"]],[4,5,["H6258"]],[5,10,["H816"]],[10,11,["H1931"]],[11,14,["H6202"]],[14,16,["H4196"]],[16,19,["H7703"]],[19,21,["H4676"]]]},{"k":22228,"v":[[0,1,["H3588"]],[1,2,["H6258"]],[2,5,["H559"]],[5,8,["H369"]],[8,9,["H4428"]],[9,10,["H3588"]],[10,12,["H3372"]],[12,13,["H3808","(H853)"]],[13,15,["H3068"]],[15,16,["H4100"]],[16,20,["H4428"]],[20,21,["H6213"]],[21,23,[]]]},{"k":22229,"v":[[0,3,["H1696"]],[3,4,["H1697"]],[4,5,["H422"]],[5,6,["H7723"]],[6,8,["H3772"]],[8,10,["H1285"]],[10,12,["H4941"]],[12,14,["H6524"]],[14,16,["H7219"]],[16,17,["H5921"]],[17,19,["H8525"]],[19,22,["H7704"]]]},{"k":22230,"v":[[0,2,["H7934"]],[2,4,["H8111"]],[4,6,["H1481"]],[6,10,["H5697"]],[10,12,["H1007"]],[12,13,["H3588"]],[13,15,["H5971"]],[15,18,["H56"]],[18,19,["H5921"]],[19,23,["H3649"]],[23,26,["H1523"]],[26,27,["H5921"]],[27,29,["H5921"]],[29,31,["H3519"]],[31,33,["H3588"]],[33,36,["H1540"]],[36,37,["H4480"]],[37,38,[]]]},{"k":22231,"v":[[0,4,["H1571"]],[4,5,["H2986"]],[5,7,["H804"]],[7,10,["H4503"]],[10,12,["H4428"]],[12,13,["H3377"]],[13,14,["H669"]],[14,16,["H3947"]],[16,17,["H1317"]],[17,19,["H3478"]],[19,22,["H954"]],[22,26,["H4480","H6098"]]]},{"k":22232,"v":[[0,3,["H8111"]],[3,5,["H4428"]],[5,8,["H1820"]],[8,11,["H7110"]],[11,12,["H5921","H6440"]],[12,14,["H4325"]]]},{"k":22233,"v":[[0,3,["H1116"]],[3,6,["H206"]],[6,8,["H2403"]],[8,10,["H3478"]],[10,13,["H8045"]],[13,15,["H6975"]],[15,18,["H1863"]],[18,21,["H5927"]],[21,22,["H5921"]],[22,24,["H4196"]],[24,28,["H559"]],[28,31,["H2022"]],[31,32,["H3680"]],[32,37,["H1389"]],[37,38,["H5307"]],[38,39,["H5921"]],[39,40,[]]]},{"k":22234,"v":[[0,2,["H3478"]],[2,5,["H2398"]],[5,8,["H4480","H3117"]],[8,10,["H1390"]],[10,11,["H8033"]],[11,13,["H5975"]],[13,15,["H4421"]],[15,17,["H1390"]],[17,18,["H5921"]],[18,20,["H1121"]],[20,22,["H5932"]],[22,24,["H3808"]],[24,25,["H5381"]],[25,26,[]]]},{"k":22235,"v":[[0,5,["H185"]],[5,9,["H3256"]],[9,13,["H5971"]],[13,16,["H622"]],[16,17,["H5921"]],[17,22,["H631"]],[22,26,["H8147"]],[26,27,["H5869"]]]},{"k":22236,"v":[[0,2,["H669"]],[2,6,["H5697"]],[6,9,["H3925"]],[9,11,["H157"]],[11,14,["H1758"]],[14,18,["H589"]],[18,20,["H5674"]],[20,21,["H5921"]],[21,23,["H2898"]],[23,24,["H6677"]],[24,28,["H669"]],[28,30,["H7392"]],[30,31,["H3063"]],[31,33,["H2790"]],[33,35,["H3290"]],[35,39,["H7702"]]]},{"k":22237,"v":[[0,1,["H2232"]],[1,5,["H6666"]],[5,6,["H7114"]],[6,7,["H6310"]],[7,8,["H2617"]],[8,10,["H5214"]],[10,13,["H5215"]],[13,17,["H6256"]],[17,19,["H1875","(H853)"]],[19,21,["H3068"]],[21,22,["H5704"]],[22,24,["H935"]],[24,26,["H3384"]],[26,27,["H6664"]],[27,29,[]]]},{"k":22238,"v":[[0,3,["H2790"]],[3,4,["H7562"]],[4,7,["H7114"]],[7,8,["H5766"]],[8,11,["H398"]],[11,13,["H6529"]],[13,15,["H3585"]],[15,16,["H3588"]],[16,19,["H982"]],[19,22,["H1870"]],[22,25,["H7230"]],[25,29,["H1368"]]]},{"k":22239,"v":[[0,4,["H7588"]],[4,5,["H6965"]],[5,8,["H5971"]],[8,10,["H3605"]],[10,12,["H4013"]],[12,15,["H7703"]],[15,17,["H8020"]],[17,18,["H7701"]],[18,19,["H1009"]],[19,22,["H3117"]],[22,24,["H4421"]],[24,26,["H517"]],[26,30,["H7376"]],[30,31,["H5921"]],[31,33,["H1121"]]]},{"k":22240,"v":[[0,1,["H3602"]],[1,3,["H1008"]],[3,4,["H6213"]],[4,7,["H4480","H6440"]],[7,11,["H7451","H7451"]],[11,14,["H7837"]],[14,17,["H4428"]],[17,19,["H3478"]],[19,23,["H1820","H1820"]]]},{"k":22241,"v":[[0,1,["H3588"]],[1,2,["H3478"]],[2,5,["H5288"]],[5,8,["H157"]],[8,11,["H7121"]],[11,13,["H1121"]],[13,16,["H4480","H4714"]]]},{"k":22242,"v":[[0,3,["H7121"]],[3,5,["H3651"]],[5,7,["H1980"]],[7,8,["H4480","H6440"]],[8,11,["H2076"]],[11,13,["H1168"]],[13,16,["H6999"]],[16,19,["H6456"]]]},{"k":22243,"v":[[0,1,["H595"]],[1,6,["H8637","H669"]],[6,7,["H3947"]],[7,9,["H5921"]],[9,11,["H2220"]],[11,14,["H3045"]],[14,15,["H3808"]],[15,16,["H3588"]],[16,18,["H7495"]],[18,19,[]]]},{"k":22244,"v":[[0,2,["H4900"]],[2,5,["H2256"]],[5,8,["H120"]],[8,10,["H5688"]],[10,12,["H160"]],[12,15,["H1961"]],[15,22,["H7311"]],[22,24,["H5923"]],[24,25,["H5921"]],[25,27,["H3895"]],[27,30,["H5186"]],[30,31,["H398"]],[31,32,["H413"]],[32,33,[]]]},{"k":22245,"v":[[0,3,["H3808"]],[3,4,["H7725"]],[4,5,["H413"]],[5,7,["H776"]],[7,9,["H4714"]],[9,12,["H804"]],[12,16,["H4428"]],[16,17,["H3588"]],[17,19,["H3985"]],[19,21,["H7725"]]]},{"k":22246,"v":[[0,3,["H2719"]],[3,5,["H2342"]],[5,8,["H5892"]],[8,11,["H3615"]],[11,13,["H905"]],[13,15,["H398"]],[15,21,["H4480","H4156"]]]},{"k":22247,"v":[[0,3,["H5971"]],[3,5,["H8511"]],[5,7,["H4878"]],[7,12,["H7121"]],[12,14,["H413"]],[14,17,["H5920"]],[17,20,["H3808","H3162"]],[20,22,["H7311"]],[22,23,[]]]},{"k":22248,"v":[[0,1,["H349"]],[1,6,["H5414"]],[6,7,["H669"]],[7,11,["H4042"]],[11,13,["H3478"]],[13,14,["H349"]],[14,17,["H5414"]],[17,20,["H126"]],[20,24,["H7760"]],[24,27,["H6636"]],[27,29,["H3820"]],[29,31,["H2015"]],[31,32,["H5921"]],[32,35,["H5150"]],[35,37,["H3648"]],[37,38,["H3162"]]]},{"k":22249,"v":[[0,3,["H3808"]],[3,4,["H6213"]],[4,6,["H2740"]],[6,9,["H639"]],[9,12,["H3808"]],[12,13,["H7725"]],[13,15,["H7843"]],[15,16,["H669"]],[16,17,["H3588"]],[17,18,["H595"]],[18,20,["H410"]],[20,22,["H3808"]],[22,23,["H376"]],[23,26,["H6918"]],[26,29,["H7130"]],[29,35,["H3808"]],[35,36,["H935"]],[36,39,["H5892"]]]},{"k":22250,"v":[[0,3,["H1980"]],[3,4,["H310"]],[4,6,["H3068"]],[6,9,["H7580"]],[9,12,["H738"]],[12,13,["H3588"]],[13,14,["H1931"]],[14,16,["H7580"]],[16,19,["H1121"]],[19,21,["H2729"]],[21,24,["H4480","H3220"]]]},{"k":22251,"v":[[0,3,["H2729"]],[3,6,["H6833"]],[6,9,["H4480","H4714"]],[9,13,["H3123"]],[13,17,["H4480","H776"]],[17,19,["H804"]],[19,23,["H3427"]],[23,25,["H5921"]],[25,27,["H1004"]],[27,28,["H5002"]],[28,30,["H3068"]]]},{"k":22252,"v":[[0,1,["H669"]],[1,4,["H5437"]],[4,6,["H3585"]],[6,9,["H1004"]],[9,11,["H3478"]],[11,13,["H4820"]],[13,15,["H3063"]],[15,16,["H5750"]],[16,17,["H7300"]],[17,18,["H5973"]],[18,19,["H410"]],[19,22,["H539"]],[22,23,["H5973"]],[23,25,["H6918"]]]},{"k":22253,"v":[[0,1,["H669"]],[1,2,["H7462"]],[2,4,["H7307"]],[4,7,["H7291"]],[7,10,["H6921"]],[10,12,["H3605","H3117"]],[12,13,["H7235"]],[13,14,["H3577"]],[14,16,["H7701"]],[16,20,["H3772"]],[20,22,["H1285"]],[22,23,["H5973"]],[23,25,["H804"]],[25,27,["H8081"]],[27,29,["H2986"]],[29,31,["H4714"]]]},{"k":22254,"v":[[0,2,["H3068"]],[2,6,["H7379"]],[6,7,["H5973"]],[7,8,["H3063"]],[8,11,["H6485","H5921"]],[11,12,["H3290"]],[12,16,["H1870"]],[16,20,["H4611"]],[20,23,["H7725"]],[23,24,[]]]},{"k":22255,"v":[[0,7,["H6117","(H853)","H251"]],[7,10,["H990"]],[10,14,["H202"]],[14,17,["H8280"]],[17,18,["H854"]],[18,19,["H430"]]]},{"k":22256,"v":[[0,4,["H8280"]],[4,5,["H413"]],[5,7,["H4397"]],[7,9,["H3201"]],[9,11,["H1058"]],[11,14,["H2603"]],[14,18,["H4672"]],[18,21,["H1008"]],[21,23,["H8033"]],[23,25,["H1696"]],[25,26,["H5973"]],[26,27,[]]]},{"k":22257,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,6,["H6635"]],[6,8,["H3068"]],[8,11,["H2143"]]]},{"k":22258,"v":[[0,2,["H7725"]],[2,3,["H859"]],[3,6,["H430"]],[6,7,["H8104"]],[7,8,["H2617"]],[8,10,["H4941"]],[10,12,["H6960"]],[12,13,["H413"]],[13,15,["H430"]],[15,16,["H8548"]]]},{"k":22259,"v":[[0,4,["H3667"]],[4,6,["H3976"]],[6,8,["H4820"]],[8,12,["H3027"]],[12,14,["H157"]],[14,16,["H6231"]]]},{"k":22260,"v":[[0,2,["H669"]],[2,3,["H559"]],[3,4,["H389"]],[4,8,["H6238"]],[8,13,["H4672"]],[13,14,["H202"]],[14,16,["H3605"]],[16,18,["H3018"]],[18,21,["H4672"]],[21,22,["H3808"]],[22,23,["H5771"]],[23,26,["H834"]],[26,28,["H2399"]]]},{"k":22261,"v":[[0,2,["H595"]],[2,6,["H3068"]],[6,8,["H430"]],[8,11,["H4480","H776"]],[11,13,["H4714"]],[13,15,["H5750"]],[15,19,["H3427"]],[19,21,["H168"]],[21,25,["H3117"]],[25,29,["H4150"]]]},{"k":22262,"v":[[0,4,["H1696"]],[4,5,["H5921"]],[5,7,["H5030"]],[7,9,["H595"]],[9,11,["H7235"]],[11,12,["H2377"]],[12,15,["H1819"]],[15,18,["H3027"]],[18,21,["H5030"]]]},{"k":22263,"v":[[0,3,["H205"]],[3,5,["H1568"]],[5,6,["H389"]],[6,8,["H1961"]],[8,9,["H7723"]],[9,11,["H2076"]],[11,12,["H7794"]],[12,14,["H1537"]],[14,15,["H1571"]],[15,17,["H4196"]],[17,20,["H1530"]],[20,21,["H5921"]],[21,23,["H8525"]],[23,26,["H7704"]]]},{"k":22264,"v":[[0,2,["H3290"]],[2,3,["H1272"]],[3,6,["H7704"]],[6,8,["H758"]],[8,10,["H3478"]],[10,11,["H5647"]],[11,14,["H802"]],[14,18,["H802"]],[18,20,["H8104"]],[20,21,[]]]},{"k":22265,"v":[[0,4,["H5030"]],[4,6,["H3068"]],[6,7,["H5927","(H853)"]],[7,8,["H3478"]],[8,11,["H4480","H4714"]],[11,15,["H5030"]],[15,18,["H8104"]]]},{"k":22266,"v":[[0,1,["H669"]],[1,5,["H3707"]],[5,7,["H8563"]],[7,11,["H5203"]],[11,13,["H1818"]],[13,14,["H5921"]],[14,18,["H2781"]],[18,21,["H113"]],[21,22,["H7725"]],[22,24,[]]]},{"k":22267,"v":[[0,2,["H669"]],[2,3,["H1696"]],[3,4,["H7578"]],[4,5,["H1931"]],[5,6,["H5375"]],[6,9,["H3478"]],[9,13,["H816"]],[13,15,["H1168"]],[15,17,["H4191"]]]},{"k":22268,"v":[[0,2,["H6258"]],[2,4,["H2398"]],[4,7,["H3254"]],[7,10,["H6213"]],[10,13,["H4541"]],[13,16,["H4480","H3701"]],[16,18,["H6091"]],[18,23,["H8394"]],[23,24,["H3605"]],[24,28,["H4639"]],[28,31,["H2796"]],[31,32,["H1992"]],[32,33,["H559"]],[33,38,["H120"]],[38,40,["H2076"]],[40,41,["H5401"]],[41,43,["H5695"]]]},{"k":22269,"v":[[0,1,["H3651"]],[1,4,["H1961"]],[4,7,["H1242"]],[7,8,["H6051"]],[8,12,["H7925"]],[12,13,["H2919"]],[13,16,["H1980"]],[16,19,["H4671"]],[19,25,["H5590"]],[25,29,["H4480","H1637"]],[29,33,["H6227"]],[33,37,["H4480","H699"]]]},{"k":22270,"v":[[0,2,["H595"]],[2,5,["H3068"]],[5,7,["H430"]],[7,10,["H4480","H776"]],[10,12,["H4714"]],[12,16,["H3045"]],[16,17,["H3808"]],[17,18,["H430"]],[18,19,["H2108"]],[19,24,["H369"]],[24,25,["H3467"]],[25,26,["H1115"]],[26,27,[]]]},{"k":22271,"v":[[0,1,["H589"]],[1,3,["H3045"]],[3,7,["H4057"]],[7,10,["H776"]],[10,13,["H8514"]]]},{"k":22272,"v":[[0,4,["H4830"]],[4,8,["H7646"]],[8,11,["H7646"]],[11,14,["H3820"]],[14,16,["H7311"]],[16,17,["H5921","H3651"]],[17,20,["H7911"]],[20,21,[]]]},{"k":22273,"v":[[0,4,["H1961"]],[4,7,["H3644"]],[7,9,["H7826"]],[9,12,["H5246"]],[12,13,["H5921"]],[13,15,["H1870"]],[15,18,["H7789"]],[18,19,[]]]},{"k":22274,"v":[[0,3,["H6298"]],[3,7,["H1677"]],[7,10,["H7909"]],[10,16,["H7167"]],[16,18,["H5458"]],[18,21,["H3820"]],[21,23,["H8033"]],[23,26,["H398"]],[26,30,["H3833"]],[30,32,["H7704"]],[32,33,["H2416"]],[33,35,["H1234"]],[35,36,[]]]},{"k":22275,"v":[[0,2,["H3478"]],[2,5,["H7843"]],[5,7,["H3588"]],[7,12,["H5828"]]]},{"k":22276,"v":[[0,3,["H165"]],[3,5,["H4428"]],[5,6,["H645"]],[6,12,["H3467"]],[12,15,["H3605"]],[15,17,["H5892"]],[17,20,["H8199"]],[20,22,["H834"]],[22,24,["H559"]],[24,25,["H5414"]],[25,28,["H4428"]],[28,30,["H8269"]]]},{"k":22277,"v":[[0,2,["H5414"]],[2,5,["H4428"]],[5,8,["H639"]],[8,12,["H3947"]],[12,15,["H5678"]]]},{"k":22278,"v":[[0,2,["H5771"]],[2,4,["H669"]],[4,7,["H6887"]],[7,9,["H2403"]],[9,11,["H6845"]]]},{"k":22279,"v":[[0,2,["H2256"]],[2,6,["H3205"]],[6,8,["H935"]],[8,11,["H1931"]],[11,14,["H3808","H2450"]],[14,15,["H1121"]],[15,16,["H3588"]],[16,19,["H3808"]],[19,20,["H5975"]],[20,21,["H6256"]],[21,28,["H4866"]],[28,30,["H1121"]]]},{"k":22280,"v":[[0,3,["H6299"]],[3,7,["H4480","H3027"]],[7,10,["H7585"]],[10,13,["H1350"]],[13,16,["H4480","H4194"]],[16,18,["H4194"]],[18,21,["H165"]],[21,23,["H1698"]],[23,25,["H7585"]],[25,28,["H165"]],[28,30,["H6987"]],[30,31,["H5164"]],[31,34,["H5641"]],[34,37,["H4480","H5869"]]]},{"k":22281,"v":[[0,1,["H3588"]],[1,2,["H1931"]],[2,4,["H6500"]],[4,5,["H996"]],[5,7,["H251"]],[7,10,["H6921"]],[10,12,["H935"]],[12,14,["H7307"]],[14,17,["H3068"]],[17,20,["H5927"]],[20,23,["H4480","H4057"]],[23,26,["H4726"]],[26,29,["H954"]],[29,32,["H4599"]],[32,36,["H2717"]],[36,37,["H1931"]],[37,39,["H8154"]],[39,41,["H214"]],[41,43,["H3605"]],[43,44,["H2532"]],[44,45,["H3627"]]]},{"k":22282,"v":[[0,1,["H8111"]],[1,4,["H816"]],[4,5,["H3588"]],[5,8,["H4784"]],[8,11,["H430"]],[11,14,["H5307"]],[14,17,["H2719"]],[17,19,["H5768"]],[19,24,["H7376"]],[24,29,["H2030"]],[29,33,["H1234"]]]},{"k":22283,"v":[[0,2,["H3478"]],[2,3,["H7725"]],[3,4,["H5704"]],[4,6,["H3068"]],[6,8,["H430"]],[8,9,["H3588"]],[9,12,["H3782"]],[12,15,["H5771"]]]},{"k":22284,"v":[[0,1,["H3947"]],[1,2,["H5973"]],[2,4,["H1697"]],[4,6,["H7725"]],[6,7,["H413"]],[7,9,["H3068"]],[9,10,["H559"]],[10,11,["H413"]],[11,14,["H5375"]],[14,15,["H3605"]],[15,16,["H5771"]],[16,18,["H3947"]],[18,20,["H2895"]],[20,24,["H7999"]],[24,26,["H6499"]],[26,29,["H8193"]]]},{"k":22285,"v":[[0,1,["H804"]],[1,3,["H3808"]],[3,4,["H3467"]],[4,8,["H3808"]],[8,9,["H7392"]],[9,10,["H5921"]],[10,11,["H5483"]],[11,12,["H3808"]],[12,15,["H559"]],[15,17,["H5750"]],[17,20,["H4639"]],[20,23,["H3027"]],[23,27,["H430"]],[27,28,["H834"]],[28,32,["H3490"]],[32,34,["H7355"]]]},{"k":22286,"v":[[0,3,["H7495"]],[3,5,["H4878"]],[5,8,["H157"]],[8,10,["H5071"]],[10,11,["H3588"]],[11,13,["H639"]],[13,16,["H7725"]],[16,17,["H4480"]],[17,18,[]]]},{"k":22287,"v":[[0,3,["H1961"]],[3,6,["H2919"]],[6,8,["H3478"]],[8,11,["H6524"]],[11,14,["H7799"]],[14,17,["H5221"]],[17,19,["H8328"]],[19,21,["H3844"]]]},{"k":22288,"v":[[0,2,["H3127"]],[2,4,["H1980"]],[4,7,["H1935"]],[7,9,["H1961"]],[9,13,["H2132"]],[13,16,["H7381"]],[16,18,["H3844"]]]},{"k":22289,"v":[[0,3,["H3427"]],[3,6,["H6738"]],[6,8,["H7725"]],[8,11,["H2421"]],[11,14,["H1715"]],[14,16,["H6524"]],[16,19,["H1612"]],[19,21,["H2143"]],[21,27,["H3196"]],[27,29,["H3844"]]]},{"k":22290,"v":[[0,1,["H669"]],[1,4,["H4100"]],[4,10,["H5750"]],[10,12,["H6091"]],[12,13,["H589"]],[13,15,["H6030"]],[15,18,["H7789"]],[18,20,["H589"]],[20,24,["H7488"]],[24,26,["H1265"]],[26,27,["H4480"]],[27,31,["H6529"]],[31,32,["H4672"]]]},{"k":22291,"v":[[0,1,["H4310"]],[1,3,["H2450"]],[3,7,["H995"]],[7,8,["H428"]],[8,10,["H995"]],[10,14,["H3045"]],[14,16,["H3588"]],[16,18,["H1870"]],[18,21,["H3068"]],[21,23,["H3477"]],[23,26,["H6662"]],[26,28,["H1980"]],[28,33,["H6586"]],[33,35,["H3782"]],[35,36,[]]]},{"k":22292,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H834"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3100"]],[9,11,["H1121"]],[11,13,["H6602"]]]},{"k":22293,"v":[[0,1,["H8085"]],[1,2,["H2063"]],[2,5,["H2205"]],[5,8,["H238"]],[8,9,["H3605"]],[9,11,["H3427"]],[11,14,["H776"]],[14,16,["H2063"]],[16,17,["H1961"]],[17,20,["H3117"]],[20,22,["H518"]],[22,25,["H3117"]],[25,28,["H1"]]]},{"k":22294,"v":[[0,1,["H5608"]],[1,4,["H1121"]],[4,5,["H5921"]],[5,10,["H1121"]],[10,13,["H1121"]],[13,16,["H1121"]],[16,17,["H312"]],[17,18,["H1755"]]]},{"k":22295,"v":[[0,4,["H1501"]],[4,6,["H3499"]],[6,9,["H697"]],[9,10,["H398"]],[10,15,["H697"]],[15,17,["H3499"]],[17,20,["H3218"]],[20,21,["H398"]],[21,26,["H3218"]],[26,28,["H3499"]],[28,31,["H2625"]],[31,32,["H398"]]]},{"k":22296,"v":[[0,1,["H6974"]],[1,3,["H7910"]],[3,5,["H1058"]],[5,7,["H3213"]],[7,8,["H3605"]],[8,10,["H8354"]],[10,12,["H3196"]],[12,14,["H5921"]],[14,17,["H6071"]],[17,18,["H3588"]],[18,22,["H3772"]],[22,25,["H4480","H6310"]]]},{"k":22297,"v":[[0,1,["H3588"]],[1,3,["H1471"]],[3,6,["H5927"]],[6,7,["H5921"]],[7,9,["H776"]],[9,10,["H6099"]],[10,12,["H369"]],[12,13,["H4557"]],[13,15,["H8127"]],[15,18,["H8127"]],[18,21,["H738"]],[21,27,["H4973"]],[27,31,["H3833"]]]},{"k":22298,"v":[[0,3,["H7760"]],[3,5,["H1612"]],[5,6,["H8047"]],[6,8,["H7111"]],[8,11,["H8384"]],[11,17,["H2834","H2834"]],[17,21,["H7993"]],[21,23,["H8299"]],[23,27,["H3835"]]]},{"k":22299,"v":[[0,1,["H421"]],[1,4,["H1330"]],[4,5,["H2296"]],[5,7,["H8242"]],[7,8,["H5921"]],[8,10,["H1167"]],[10,13,["H5271"]]]},{"k":22300,"v":[[0,3,["H4503"]],[3,7,["H5262"]],[7,10,["H3772"]],[10,13,["H4480","H1004"]],[13,16,["H3068"]],[16,18,["H3548"]],[18,20,["H3068"]],[20,21,["H8334"]],[21,22,["H56"]]]},{"k":22301,"v":[[0,2,["H7704"]],[2,4,["H7703"]],[4,6,["H127"]],[6,7,["H56"]],[7,8,["H3588"]],[8,10,["H1715"]],[10,12,["H7703"]],[12,15,["H8492"]],[15,18,["H3001"]],[18,20,["H3323"]],[20,21,["H535"]]]},{"k":22302,"v":[[0,3,["H954"]],[3,6,["H406"]],[6,7,["H3213"]],[7,10,["H3755"]],[10,11,["H5921"]],[11,13,["H2406"]],[13,15,["H5921"]],[15,17,["H8184"]],[17,18,["H3588"]],[18,20,["H7105"]],[20,23,["H7704"]],[23,25,["H6"]]]},{"k":22303,"v":[[0,2,["H1612"]],[2,5,["H3001"]],[5,9,["H8384"]],[9,10,["H535"]],[10,13,["H7416"]],[13,16,["H8558"]],[16,17,["H1571"]],[17,21,["H8598"]],[21,23,["H3605"]],[23,25,["H6086"]],[25,28,["H7704"]],[28,30,["H3001"]],[30,31,["H3588"]],[31,32,["H8342"]],[32,35,["H3001"]],[35,36,["H4480"]],[36,38,["H1121"]],[38,40,["H120"]]]},{"k":22304,"v":[[0,1,["H2296"]],[1,4,["H5594"]],[4,6,["H3548"]],[6,7,["H3213"]],[7,9,["H8334"]],[9,12,["H4196"]],[12,13,["H935"]],[13,16,["H3885"]],[16,18,["H8242"]],[18,20,["H8334"]],[20,23,["H430"]],[23,24,["H3588"]],[24,27,["H4503"]],[27,31,["H5262"]],[31,33,["H4513"]],[33,36,["H4480","H1004"]],[36,39,["H430"]]]},{"k":22305,"v":[[0,1,["H6942"]],[1,4,["H6685"]],[4,5,["H7121"]],[5,8,["H6116"]],[8,9,["H622"]],[9,11,["H2205"]],[11,13,["H3605"]],[13,15,["H3427"]],[15,18,["H776"]],[18,21,["H1004"]],[21,24,["H3068"]],[24,26,["H430"]],[26,28,["H2199"]],[28,29,["H413"]],[29,31,["H3068"]]]},{"k":22306,"v":[[0,1,["H162"]],[1,4,["H3117"]],[4,5,["H3588"]],[5,7,["H3117"]],[7,10,["H3068"]],[10,13,["H7138"]],[13,17,["H7701"]],[17,20,["H4480","H7706"]],[20,23,["H935"]]]},{"k":22307,"v":[[0,2,["H3808"]],[2,4,["H400"]],[4,6,["H3772"]],[6,7,["H5048"]],[7,9,["H5869"]],[9,11,["H8057"]],[11,13,["H1524"]],[13,16,["H4480","H1004"]],[16,19,["H430"]]]},{"k":22308,"v":[[0,2,["H6507"]],[2,4,["H5685"]],[4,5,["H8478"]],[5,7,["H4053"]],[7,9,["H214"]],[9,12,["H8074"]],[12,14,["H4460"]],[14,17,["H2040"]],[17,18,["H3588"]],[18,20,["H1715"]],[20,22,["H3001"]]]},{"k":22309,"v":[[0,1,["H4100"]],[1,4,["H929"]],[4,5,["H584"]],[5,7,["H5739"]],[7,9,["H1241"]],[9,11,["H943"]],[11,12,["H3588"]],[12,15,["H369"]],[15,16,["H4829"]],[16,17,["H1571"]],[17,19,["H5739"]],[19,21,["H6629"]],[21,24,["H816"]]]},{"k":22310,"v":[[0,2,["H3068"]],[2,3,["H413"]],[3,7,["H7121"]],[7,8,["H3588"]],[8,10,["H784"]],[10,12,["H398"]],[12,14,["H4999"]],[14,17,["H4057"]],[17,20,["H3852"]],[20,22,["H3857"]],[22,23,["H3605"]],[23,25,["H6086"]],[25,28,["H7704"]]]},{"k":22311,"v":[[0,2,["H929"]],[2,5,["H7704"]],[5,6,["H6165"]],[6,7,["H1571"]],[7,8,["H413"]],[8,10,["H3588"]],[10,12,["H650"]],[12,14,["H4325"]],[14,17,["H3001"]],[17,20,["H784"]],[20,22,["H398"]],[22,24,["H4999"]],[24,27,["H4057"]]]},{"k":22312,"v":[[0,1,["H8628"]],[1,4,["H7782"]],[4,6,["H6726"]],[6,10,["H7321"]],[10,13,["H6944"]],[13,14,["H2022"]],[14,16,["H3605"]],[16,18,["H3427"]],[18,21,["H776"]],[21,22,["H7264"]],[22,23,["H3588"]],[23,25,["H3117"]],[25,28,["H3068"]],[28,29,["H935"]],[29,30,["H3588"]],[30,35,["H7138"]]]},{"k":22313,"v":[[0,2,["H3117"]],[2,4,["H2822"]],[4,7,["H653"]],[7,9,["H3117"]],[9,11,["H6051"]],[11,15,["H6205"]],[15,18,["H7837"]],[18,19,["H6566"]],[19,20,["H5921"]],[20,22,["H2022"]],[22,24,["H7227"]],[24,25,["H5971"]],[25,28,["H6099"]],[28,31,["H3808"]],[31,32,["H1961"]],[32,33,["H4480","H5769"]],[33,35,["H3644"]],[35,36,["H3808"]],[36,40,["H3254"]],[40,41,["H310"]],[41,44,["H5704"]],[44,46,["H8141"]],[46,49,["H1755","H1755"]]]},{"k":22314,"v":[[0,2,["H784"]],[2,3,["H398"]],[3,4,["H6440"]],[4,7,["H310"]],[7,10,["H3852"]],[10,11,["H3857"]],[11,13,["H776"]],[13,17,["H1588"]],[17,19,["H5731"]],[19,20,["H6440"]],[20,23,["H310"]],[23,26,["H8077"]],[26,27,["H4057"]],[27,28,["H1571"]],[28,30,["H3808"]],[30,32,["H1961","H6413"]],[32,33,[]]]},{"k":22315,"v":[[0,2,["H4758"]],[2,8,["H4758"]],[8,10,["H5483"]],[10,13,["H6571"]],[13,14,["H3651"]],[14,17,["H7323"]]]},{"k":22316,"v":[[0,3,["H6963"]],[3,5,["H4818"]],[5,6,["H5921"]],[6,8,["H7218"]],[8,10,["H2022"]],[10,13,["H7540"]],[13,16,["H6963"]],[16,19,["H3851"]],[19,21,["H784"]],[21,23,["H398"]],[23,25,["H7179"]],[25,28,["H6099"]],[28,29,["H5971"]],[29,33,["H6186","H4421"]]]},{"k":22317,"v":[[0,3,["H4480","H6440"]],[3,5,["H5971"]],[5,9,["H2342"]],[9,10,["H3605"]],[10,11,["H6440"]],[11,13,["H6908"]],[13,14,["H6289"]]]},{"k":22318,"v":[[0,3,["H7323"]],[3,6,["H1368"]],[6,9,["H5927"]],[9,11,["H2346"]],[11,13,["H376"]],[13,15,["H4421"]],[15,19,["H1980"]],[19,21,["H376"]],[21,24,["H1870"]],[24,28,["H3808"]],[28,29,["H5670"]],[29,31,["H734"]]]},{"k":22319,"v":[[0,1,["H3808"]],[1,3,["H376"]],[3,4,["H1766"]],[4,5,["H251"]],[5,8,["H1980"]],[8,10,["H1397"]],[10,13,["H4546"]],[13,17,["H5307"]],[17,18,["H1157"]],[18,20,["H7973"]],[20,23,["H3808"]],[23,25,["H1214"]]]},{"k":22320,"v":[[0,6,["H8264"]],[6,9,["H5892"]],[9,12,["H7323"]],[12,15,["H2346"]],[15,19,["H5927"]],[19,22,["H1004"]],[22,26,["H935"]],[26,27,["H1157"]],[27,29,["H2474"]],[29,32,["H1590"]]]},{"k":22321,"v":[[0,2,["H776"]],[2,4,["H7264"]],[4,5,["H6440"]],[5,8,["H8064"]],[8,10,["H7493"]],[10,12,["H8121"]],[12,15,["H3394"]],[15,18,["H6937"]],[18,21,["H3556"]],[21,23,["H622"]],[23,25,["H5051"]]]},{"k":22322,"v":[[0,3,["H3068"]],[3,5,["H5414"]],[5,7,["H6963"]],[7,8,["H6440"]],[8,10,["H2428"]],[10,11,["H3588"]],[11,13,["H4264"]],[13,15,["H3966"]],[15,16,["H7227"]],[16,17,["H3588"]],[17,20,["H6099"]],[20,22,["H6213"]],[22,24,["H1697"]],[24,25,["H3588"]],[25,27,["H3117"]],[27,30,["H3068"]],[30,32,["H1419"]],[32,34,["H3966"]],[34,35,["H3372"]],[35,37,["H4310"]],[37,39,["H3557"]],[39,40,[]]]},{"k":22323,"v":[[0,2,["H1571"]],[2,3,["H6258"]],[3,4,["H5002"]],[4,6,["H3068"]],[6,7,["H7725"]],[7,10,["H5704"]],[10,13,["H3605"]],[13,15,["H3824"]],[15,18,["H6685"]],[18,21,["H1065"]],[21,24,["H4553"]]]},{"k":22324,"v":[[0,2,["H7167"]],[2,4,["H3824"]],[4,6,["H408"]],[6,8,["H899"]],[8,10,["H7725"]],[10,11,["H413"]],[11,13,["H3068"]],[13,15,["H430"]],[15,16,["H3588"]],[16,17,["H1931"]],[17,19,["H2587"]],[19,21,["H7349"]],[21,22,["H750"]],[22,24,["H639"]],[24,27,["H7227"]],[27,28,["H2617"]],[28,30,["H5162"]],[30,32,["H5921"]],[32,34,["H7451"]]]},{"k":22325,"v":[[0,1,["H4310"]],[1,2,["H3045"]],[2,6,["H7725"]],[6,8,["H5162"]],[8,10,["H7604"]],[10,12,["H1293"]],[12,13,["H310"]],[13,18,["H4503"]],[18,22,["H5262"]],[22,25,["H3068"]],[25,27,["H430"]]]},{"k":22326,"v":[[0,1,["H8628"]],[1,3,["H7782"]],[3,5,["H6726"]],[5,6,["H6942"]],[6,8,["H6685"]],[8,9,["H7121"]],[9,12,["H6116"]]]},{"k":22327,"v":[[0,1,["H622"]],[1,3,["H5971"]],[3,4,["H6942"]],[4,6,["H6951"]],[6,7,["H6908"]],[7,9,["H2205"]],[9,10,["H622"]],[10,12,["H5768"]],[12,16,["H3243"]],[16,18,["H7699"]],[18,21,["H2860"]],[21,23,["H3318"]],[23,26,["H4480","H2315"]],[26,29,["H3618"]],[29,33,["H4480","H2646"]]]},{"k":22328,"v":[[0,3,["H3548"]],[3,5,["H8334"]],[5,8,["H3068"]],[8,9,["H1058"]],[9,10,["H996"]],[10,12,["H197"]],[12,15,["H4196"]],[15,19,["H559"]],[19,20,["H2347","H5921"]],[20,22,["H5971"]],[22,24,["H3068"]],[24,26,["H5414"]],[26,27,["H408"]],[27,29,["H5159"]],[29,31,["H2781"]],[31,34,["H1471"]],[34,36,["H4910"]],[36,39,["H4100"]],[39,42,["H559"]],[42,45,["H5971"]],[45,46,["H346"]],[46,49,["H430"]]]},{"k":22329,"v":[[0,4,["H3068"]],[4,6,["H7065"]],[6,9,["H776"]],[9,11,["H2550","H5921"]],[11,13,["H5971"]]]},{"k":22330,"v":[[0,3,["H3068"]],[3,5,["H6030"]],[5,7,["H559"]],[7,10,["H5971"]],[10,11,["H2009"]],[11,14,["H7971"]],[14,15,["(H853)"]],[15,16,["H1715"]],[16,18,["H8492"]],[18,20,["H3323"]],[20,25,["H7646"]],[25,26,["H854"]],[26,30,["H3808"]],[30,31,["H5750"]],[31,32,["H5414"]],[32,35,["H2781"]],[35,38,["H1471"]]]},{"k":22331,"v":[[0,6,["H7368"]],[6,7,["H4480","H5921"]],[7,10,["H6830"]],[10,14,["H5080"]],[14,16,["H413"]],[16,18,["H776"]],[18,19,["H6723"]],[19,21,["H8077"]],[21,22,["H854"]],[22,24,["H6440"]],[24,25,["H413"]],[25,27,["H6931"]],[27,28,["H3220"]],[28,32,["H5490"]],[32,33,["H413"]],[33,35,["H314"]],[35,36,["H3220"]],[36,39,["H889"]],[39,42,["H5927"]],[42,46,["H6709"]],[46,49,["H5927"]],[49,50,["H3588"]],[50,53,["H6213"]],[53,55,["H1431"]]]},{"k":22332,"v":[[0,1,["H3372"]],[1,2,["H408"]],[2,4,["H127"]],[4,6,["H1523"]],[6,8,["H8055"]],[8,9,["H3588"]],[9,11,["H3068"]],[11,13,["H6213"]],[13,15,["H1431"]]]},{"k":22333,"v":[[0,3,["H3372","H408"]],[3,5,["H929"]],[5,8,["H7704"]],[8,9,["H3588"]],[9,11,["H4999"]],[11,14,["H4057"]],[14,16,["H1876"]],[16,17,["H3588"]],[17,19,["H6086"]],[19,20,["H5375"]],[20,22,["H6529"]],[22,25,["H8384"]],[25,28,["H1612"]],[28,30,["H5414"]],[30,32,["H2428"]]]},{"k":22334,"v":[[0,2,["H1523"]],[2,5,["H1121"]],[5,7,["H6726"]],[7,9,["H8055"]],[9,12,["H3068"]],[12,14,["H430"]],[14,15,["H3588"]],[15,18,["H5414"]],[18,19,["(H853)"]],[19,22,["H4175"]],[22,23,["H6666"]],[23,30,["H3381"]],[30,34,["H1653"]],[34,37,["H4175"]],[37,41,["H4456"]],[41,44,["H7223"]],[44,45,[]]]},{"k":22335,"v":[[0,3,["H1637"]],[3,6,["H4390"]],[6,8,["H1250"]],[8,11,["H3342"]],[11,13,["H7783"]],[13,15,["H8492"]],[15,17,["H3323"]]]},{"k":22336,"v":[[0,4,["H7999"]],[4,6,["(H853)"]],[6,8,["H8141"]],[8,9,["H834"]],[9,11,["H697"]],[11,13,["H398"]],[13,15,["H3218"]],[15,18,["H2625"]],[18,21,["H1501"]],[21,23,["H1419"]],[23,24,["H2428"]],[24,25,["H834"]],[25,27,["H7971"]],[27,29,[]]]},{"k":22337,"v":[[0,6,["H398","H398"]],[6,9,["H7646"]],[9,11,["H1984","(H853)"]],[11,13,["H8034"]],[13,16,["H3068"]],[16,18,["H430"]],[18,19,["H834"]],[19,21,["H6213"]],[21,22,["H6381"]],[22,23,["H5973"]],[23,27,["H5971"]],[27,29,["H3808","H5769"]],[29,31,["H954"]]]},{"k":22338,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,10,["H7130"]],[10,12,["H3478"]],[12,15,["H589"]],[15,18,["H3068"]],[18,20,["H430"]],[20,22,["H369"]],[22,23,["H5750"]],[23,26,["H5971"]],[26,28,["H3808","H5769"]],[28,30,["H954"]]]},{"k":22339,"v":[[0,6,["H1961"]],[6,7,["H310","H3651"]],[7,12,["H8210","(H853)"]],[12,14,["H7307"]],[14,15,["H5921"]],[15,16,["H3605"]],[16,17,["H1320"]],[17,20,["H1121"]],[20,23,["H1323"]],[23,25,["H5012"]],[25,28,["H2205"]],[28,30,["H2492"]],[30,31,["H2472"]],[31,34,["H970"]],[34,36,["H7200"]],[36,37,["H2384"]]]},{"k":22340,"v":[[0,2,["H1571"]],[2,3,["H5921"]],[3,5,["H5650"]],[5,7,["H5921"]],[7,9,["H8198"]],[9,11,["H1992"]],[11,12,["H3117"]],[12,16,["H8210","(H853)"]],[16,18,["H7307"]]]},{"k":22341,"v":[[0,4,["H5414"]],[4,5,["H4159"]],[5,8,["H8064"]],[8,12,["H776"]],[12,13,["H1818"]],[13,15,["H784"]],[15,17,["H8490"]],[17,19,["H6227"]]]},{"k":22342,"v":[[0,2,["H8121"]],[2,5,["H2015"]],[5,7,["H2822"]],[7,10,["H3394"]],[10,12,["H1818"]],[12,13,["H6440"]],[13,15,["H1419"]],[15,18,["H3372"]],[18,19,["H3117"]],[19,22,["H3068"]],[22,23,["H935"]]]},{"k":22343,"v":[[0,6,["H1961"]],[6,8,["H3605","H834"]],[8,10,["H7121"]],[10,13,["H8034"]],[13,16,["H3068"]],[16,19,["H4422"]],[19,20,["H3588"]],[20,22,["H2022"]],[22,23,["H6726"]],[23,26,["H3389"]],[26,28,["H1961"]],[28,29,["H6413"]],[29,30,["H834"]],[30,32,["H3068"]],[32,34,["H559"]],[34,38,["H8300"]],[38,39,["H834"]],[39,41,["H3068"]],[41,43,["H7121"]]]},{"k":22344,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H1992"]],[4,5,["H3117"]],[5,8,["H1931"]],[8,9,["H6256"]],[9,10,["H834"]],[10,14,["H7725","(H853)"]],[14,16,["H7622"]],[16,18,["H3063"]],[18,20,["H3389"]]]},{"k":22345,"v":[[0,4,["H6908","(H853)"]],[4,5,["H3605"]],[5,6,["H1471"]],[6,11,["H3381"]],[11,12,["H413"]],[12,14,["H6010"]],[14,16,["H3092"]],[16,19,["H8199"]],[19,20,["H5973"]],[20,22,["H8033"]],[22,23,["H5921"]],[23,25,["H5971"]],[25,29,["H5159"]],[29,30,["H3478"]],[30,31,["H834"]],[31,34,["H6340"]],[34,37,["H1471"]],[37,39,["H2505"]],[39,41,["H776"]]]},{"k":22346,"v":[[0,4,["H3032"]],[4,5,["H1486"]],[5,6,["H413"]],[6,8,["H5971"]],[8,11,["H5414"]],[11,13,["H3206"]],[13,16,["H2181"]],[16,18,["H4376"]],[18,20,["H3207"]],[20,22,["H3196"]],[22,26,["H8354"]]]},{"k":22347,"v":[[0,1,["H1571"]],[1,3,["H4100"]],[3,5,["H859"]],[5,11,["H6865"]],[11,13,["H6721"]],[13,15,["H3605"]],[15,17,["H1552"]],[17,19,["H6429"]],[19,21,["H859"]],[21,22,["H7999","H5921"]],[22,25,["H1576"]],[25,27,["H518"]],[27,28,["H859"]],[28,29,["H1580","H5921"]],[29,31,["H7031"]],[31,33,["H4120"]],[33,36,["H7725"]],[36,38,["H1576"]],[38,42,["H7218"]]]},{"k":22348,"v":[[0,1,["H834"]],[1,4,["H3947"]],[4,6,["H3701"]],[6,9,["H2091"]],[9,12,["H935"]],[12,15,["H1964"]],[15,17,["H2896"]],[17,19,["H4261"]]]},{"k":22349,"v":[[0,2,["H1121"]],[2,5,["H3063"]],[5,8,["H1121"]],[8,10,["H3389"]],[10,13,["H4376"]],[13,16,["H1121","H3125"]],[16,17,["H4616"]],[17,22,["H7368"]],[22,23,["H4480","H5921"]],[23,25,["H1366"]]]},{"k":22350,"v":[[0,1,["H2009"]],[1,4,["H5782"]],[4,7,["H4480"]],[7,9,["H4725"]],[9,10,["H834","H8033"]],[10,13,["H4376"]],[13,17,["H7725"]],[17,19,["H1576"]],[19,23,["H7218"]]]},{"k":22351,"v":[[0,4,["H4376","(H853)"]],[4,6,["H1121"]],[6,9,["H1323"]],[9,12,["H3027"]],[12,15,["H1121"]],[15,17,["H3063"]],[17,21,["H4376"]],[21,25,["H7615"]],[25,26,["H413"]],[26,28,["H1471"]],[28,30,["H7350"]],[30,31,["H3588"]],[31,33,["H3068"]],[33,35,["H1696"]],[35,36,[]]]},{"k":22352,"v":[[0,1,["H7121"]],[1,3,["H2063"]],[3,6,["H1471"]],[6,7,["H6942"]],[7,8,["H4421"]],[8,10,["H5782"]],[10,13,["H1368"]],[13,15,["H3605"]],[15,17,["H376"]],[17,19,["H4421"]],[19,21,["H5066"]],[21,25,["H5927"]]]},{"k":22353,"v":[[0,1,["H3807"]],[1,3,["H855"]],[3,5,["H2719"]],[5,8,["H4211"]],[8,10,["H7420"]],[10,13,["H2523"]],[13,14,["H559"]],[14,15,["H589"]],[15,17,["H1368"]]]},{"k":22354,"v":[[0,1,["H5789"]],[1,4,["H935"]],[4,5,["H3605"]],[5,7,["H1471"]],[7,11,["H6908"]],[11,13,["H4480","H5439"]],[13,14,["H8033"]],[14,18,["H1368"]],[18,21,["H5181"]],[21,23,["H3068"]]]},{"k":22355,"v":[[0,3,["H1471"]],[3,5,["H5782"]],[5,8,["H5927"]],[8,9,["H413"]],[9,11,["H6010"]],[11,13,["H3092"]],[13,14,["H3588"]],[14,15,["H8033"]],[15,18,["H3427"]],[18,20,["H8199","(H853)"]],[20,21,["H3605"]],[21,23,["H1471"]],[23,25,["H4480","H5439"]]]},{"k":22356,"v":[[0,1,["H7971"]],[1,5,["H4038"]],[5,6,["H3588"]],[6,8,["H7105"]],[8,10,["H1310"]],[10,11,["H935"]],[11,14,["H3381"]],[14,15,["H3588"]],[15,17,["H1660"]],[17,19,["H4390"]],[19,21,["H3342"]],[21,22,["H7783"]],[22,23,["H3588"]],[23,25,["H7451"]],[25,27,["H7227"]]]},{"k":22357,"v":[[0,1,["H1995"]],[1,2,["H1995"]],[2,5,["H6010"]],[5,7,["H2742"]],[7,8,["H3588"]],[8,10,["H3117"]],[10,13,["H3068"]],[13,15,["H7138"]],[15,18,["H6010"]],[18,20,["H2742"]]]},{"k":22358,"v":[[0,2,["H8121"]],[2,5,["H3394"]],[5,8,["H6937"]],[8,11,["H3556"]],[11,13,["H622"]],[13,15,["H5051"]]]},{"k":22359,"v":[[0,2,["H3068"]],[2,5,["H7580"]],[5,8,["H4480","H6726"]],[8,10,["H5414"]],[10,12,["H6963"]],[12,14,["H4480","H3389"]],[14,17,["H8064"]],[17,20,["H776"]],[20,22,["H7493"]],[22,25,["H3068"]],[25,29,["H4268"]],[29,32,["H5971"]],[32,35,["H4581"]],[35,38,["H1121"]],[38,40,["H3478"]]]},{"k":22360,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,6,["H589"]],[6,9,["H3068"]],[9,11,["H430"]],[11,12,["H7931"]],[12,14,["H6726"]],[14,16,["H6944"]],[16,17,["H2022"]],[17,20,["H3389"]],[20,21,["H1961"]],[21,22,["H6944"]],[22,26,["H3808"]],[26,27,["H2114"]],[27,29,["H5674"]],[29,32,["H5750"]]]},{"k":22361,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H2022"]],[12,15,["H5197"]],[15,17,["H6071"]],[17,20,["H1389"]],[20,22,["H1980"]],[22,24,["H2461"]],[24,26,["H3605"]],[26,28,["H650"]],[28,30,["H3063"]],[30,32,["H1980"]],[32,34,["H4325"]],[34,37,["H4599"]],[37,40,["H3318"]],[40,43,["H4480","H1004"]],[43,46,["H3068"]],[46,49,["H8248","(H853)"]],[49,51,["H5158"]],[51,53,["H7851"]]]},{"k":22362,"v":[[0,1,["H4714"]],[1,3,["H1961"]],[3,5,["H8077"]],[5,7,["H123"]],[7,9,["H1961"]],[9,11,["H8077"]],[11,12,["H4057"]],[12,13,["H4480"]],[13,15,["H2555"]],[15,18,["H1121"]],[18,20,["H3063"]],[20,21,["H834"]],[21,24,["H8210"]],[24,25,["H5355"]],[25,26,["H1818"]],[26,29,["H776"]]]},{"k":22363,"v":[[0,2,["H3063"]],[2,4,["H3427"]],[4,6,["H5769"]],[6,8,["H3389"]],[8,10,["H1755"]],[10,12,["H1755"]]]},{"k":22364,"v":[[0,4,["H5352"]],[4,6,["H1818"]],[6,10,["H3808"]],[10,11,["H5352"]],[11,14,["H3068"]],[14,15,["H7931"]],[15,17,["H6726"]]]},{"k":22365,"v":[[0,2,["H1697"]],[2,4,["H5986"]],[4,5,["H834"]],[5,6,["H1961"]],[6,9,["H5349"]],[9,11,["H4480","H8620"]],[11,12,["H834"]],[12,14,["H2372"]],[14,15,["H5921"]],[15,16,["H3478"]],[16,19,["H3117"]],[19,21,["H5818"]],[21,22,["H4428"]],[22,24,["H3063"]],[24,28,["H3117"]],[28,30,["H3379"]],[30,32,["H1121"]],[32,34,["H3101"]],[34,35,["H4428"]],[35,37,["H3478"]],[37,39,["H8141"]],[39,40,["H6440"]],[40,42,["H7494"]]]},{"k":22366,"v":[[0,3,["H559"]],[3,5,["H3068"]],[5,7,["H7580"]],[7,9,["H4480","H6726"]],[9,11,["H5414"]],[11,13,["H6963"]],[13,15,["H4480","H3389"]],[15,18,["H4999"]],[18,21,["H7462"]],[21,23,["H56"]],[23,26,["H7218"]],[26,28,["H3760"]],[28,30,["H3001"]]]},{"k":22367,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5921"]],[5,6,["H7969"]],[6,7,["H6588"]],[7,9,["H1834"]],[9,11,["H5921"]],[11,12,["H702"]],[12,15,["H3808"]],[15,17,["H7725"]],[17,21,["H5921"]],[21,24,["H1758","(H853)"]],[24,25,["H1568"]],[25,28,["H2742"]],[28,30,["H1270"]]]},{"k":22368,"v":[[0,4,["H7971"]],[4,6,["H784"]],[6,9,["H1004"]],[9,11,["H2371"]],[11,14,["H398"]],[14,16,["H759"]],[16,18,["H1130"]]]},{"k":22369,"v":[[0,3,["H7665"]],[3,6,["H1280"]],[6,8,["H1834"]],[8,11,["H3772"]],[11,13,["H3427"]],[13,16,["H4480","H1237"]],[16,18,["H206"]],[18,22,["H8551"]],[22,24,["H7626"]],[24,29,["H4480","H1040"]],[29,32,["H5971"]],[32,34,["H758"]],[34,38,["H1540"]],[38,40,["H7024"]],[40,41,["H559"]],[41,43,["H3068"]]]},{"k":22370,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5921"]],[5,6,["H7969"]],[6,7,["H6588"]],[7,9,["H5804"]],[9,11,["H5921"]],[11,12,["H702"]],[12,15,["H3808"]],[15,17,["H7725"]],[17,21,["H5921"]],[21,25,["H1540"]],[25,27,["H8003"]],[27,28,["H1546"]],[28,32,["H5462"]],[32,34,["H123"]]]},{"k":22371,"v":[[0,4,["H7971"]],[4,6,["H784"]],[6,9,["H2346"]],[9,11,["H5804"]],[11,14,["H398"]],[14,16,["H759"]],[16,17,[]]]},{"k":22372,"v":[[0,5,["H3772"]],[5,7,["H3427"]],[7,9,["H4480","H795"]],[9,13,["H8551"]],[13,15,["H7626"]],[15,17,["H4480","H831"]],[17,21,["H7725"]],[21,23,["H3027"]],[23,24,["H5921"]],[24,25,["H6138"]],[25,28,["H7611"]],[28,31,["H6430"]],[31,33,["H6"]],[33,34,["H559"]],[34,36,["H136"]],[36,37,["H3069"]]]},{"k":22373,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5921"]],[5,6,["H7969"]],[6,7,["H6588"]],[7,9,["H6865"]],[9,11,["H5921"]],[11,12,["H702"]],[12,15,["H3808"]],[15,17,["H7725"]],[17,21,["H5921"]],[21,24,["H5462"]],[24,26,["H8003"]],[26,27,["H1546"]],[27,29,["H123"]],[29,31,["H2142"]],[31,32,["H3808"]],[32,34,["H251"]],[34,35,["H1285"]]]},{"k":22374,"v":[[0,4,["H7971"]],[4,6,["H784"]],[6,9,["H2346"]],[9,11,["H6865"]],[11,14,["H398"]],[14,16,["H759"]],[16,17,[]]]},{"k":22375,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5921"]],[5,6,["H7969"]],[6,7,["H6588"]],[7,9,["H123"]],[9,11,["H5921"]],[11,12,["H702"]],[12,15,["H3808"]],[15,17,["H7725"]],[17,21,["H5921"]],[21,24,["H7291"]],[24,26,["H251"]],[26,29,["H2719"]],[29,33,["H7843"]],[33,35,["H7356"]],[35,38,["H639"]],[38,40,["H2963"]],[40,41,["H5703"]],[41,44,["H8104"]],[44,46,["H5678"]],[46,48,["H5331"]]]},{"k":22376,"v":[[0,4,["H7971"]],[4,6,["H784"]],[6,8,["H8487"]],[8,11,["H398"]],[11,13,["H759"]],[13,15,["H1224"]]]},{"k":22377,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5921"]],[5,6,["H7969"]],[6,7,["H6588"]],[7,10,["H1121"]],[10,12,["H5983"]],[12,14,["H5921"]],[14,15,["H702"]],[15,18,["H3808"]],[18,20,["H7725"]],[20,24,["H5921"]],[24,28,["H1234"]],[28,32,["H2030"]],[32,34,["H1568"]],[34,35,["H4616"]],[35,38,["H7337","(H853)"]],[38,40,["H1366"]]]},{"k":22378,"v":[[0,4,["H3341"]],[4,6,["H784"]],[6,9,["H2346"]],[9,11,["H7237"]],[11,15,["H398"]],[15,17,["H759"]],[17,20,["H8643"]],[20,23,["H3117"]],[23,25,["H4421"]],[25,28,["H5591"]],[28,31,["H3117"]],[31,34,["H5492"]]]},{"k":22379,"v":[[0,3,["H4428"]],[3,5,["H1980"]],[5,7,["H1473"]],[7,8,["H1931"]],[8,11,["H8269"]],[11,12,["H3162"]],[12,13,["H559"]],[13,15,["H3068"]]]},{"k":22380,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5921"]],[5,6,["H7969"]],[6,7,["H6588"]],[7,9,["H4124"]],[9,11,["H5921"]],[11,12,["H702"]],[12,15,["H3808"]],[15,17,["H7725"]],[17,21,["H5921"]],[21,23,["H8313"]],[23,25,["H6106"]],[25,28,["H4428"]],[28,30,["H123"]],[30,32,["H7875"]]]},{"k":22381,"v":[[0,4,["H7971"]],[4,6,["H784"]],[6,8,["H4124"]],[8,12,["H398"]],[12,14,["H759"]],[14,16,["H7152"]],[16,18,["H4124"]],[18,20,["H4191"]],[20,22,["H7588"]],[22,24,["H8643"]],[24,28,["H6963"]],[28,31,["H7782"]]]},{"k":22382,"v":[[0,5,["H3772"]],[5,7,["H8199"]],[7,10,["H4480","H7130"]],[10,14,["H2026"]],[14,15,["H3605"]],[15,17,["H8269"]],[17,19,["H5973"]],[19,21,["H559"]],[21,23,["H3068"]]]},{"k":22383,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5921"]],[5,6,["H7969"]],[6,7,["H6588"]],[7,9,["H3063"]],[9,11,["H5921"]],[11,12,["H702"]],[12,15,["H3808"]],[15,17,["H7725"]],[17,21,["H5921"]],[21,24,["H3988","(H853)"]],[24,26,["H8451"]],[26,29,["H3068"]],[29,32,["H3808"]],[32,33,["H8104"]],[33,35,["H2706"]],[35,38,["H3577"]],[38,42,["H8582"]],[42,43,["H310"]],[43,45,["H834"]],[45,47,["H1"]],[47,49,["H1980"]]]},{"k":22384,"v":[[0,4,["H7971"]],[4,6,["H784"]],[6,8,["H3063"]],[8,12,["H398"]],[12,14,["H759"]],[14,16,["H3389"]]]},{"k":22385,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5921"]],[5,6,["H7969"]],[6,7,["H6588"]],[7,9,["H3478"]],[9,11,["H5921"]],[11,12,["H702"]],[12,15,["H3808"]],[15,17,["H7725"]],[17,21,["H5921"]],[21,23,["H4376"]],[23,25,["H6662"]],[25,27,["H3701"]],[27,30,["H34"]],[30,31,["H5668"]],[31,35,["H5275"]]]},{"k":22386,"v":[[0,2,["H7602"]],[2,3,["H5921"]],[3,5,["H6083"]],[5,8,["H776"]],[8,11,["H7218"]],[11,14,["H1800"]],[14,17,["H5186"]],[17,19,["H1870"]],[19,22,["H6035"]],[22,25,["H376"]],[25,28,["H1"]],[28,31,["H1980"]],[31,32,["H413"]],[32,35,["H5291"]],[35,36,["H4616"]],[36,37,["H2490","(H853)"]],[37,39,["H6944"]],[39,40,["H8034"]]]},{"k":22387,"v":[[0,5,["H5186"]],[5,6,["H5921"]],[6,7,["H899"]],[7,10,["H2254"]],[10,11,["H681"]],[11,12,["H3605"]],[12,13,["H4196"]],[13,16,["H8354"]],[16,18,["H3196"]],[18,21,["H6064"]],[21,24,["H1004"]],[24,27,["H430"]]]},{"k":22388,"v":[[0,2,["H8045"]],[2,3,["H595","(H853)"]],[3,5,["H567"]],[5,6,["H4480","H6440"]],[6,8,["H834"]],[8,9,["H1363"]],[9,13,["H1363"]],[13,16,["H730"]],[16,18,["H1931"]],[18,20,["H2634"]],[20,23,["H437"]],[23,26,["H8045"]],[26,28,["H6529"]],[28,30,["H4480","H4605"]],[30,33,["H8328"]],[33,35,["H4480","H8478"]]]},{"k":22389,"v":[[0,2,["H595"]],[2,5,["H5927","(H853)"]],[5,8,["H4480","H776"]],[8,10,["H4714"]],[10,12,["H1980"]],[12,14,["H705"]],[14,15,["H8141"]],[15,18,["H4057"]],[18,20,["H3423","(H853)"]],[20,22,["H776"]],[22,25,["H567"]]]},{"k":22390,"v":[[0,4,["H6965"]],[4,7,["H4480","H1121"]],[7,9,["H5030"]],[9,14,["H4480","H970"]],[14,16,["H5139"]],[16,19,["H369"]],[19,20,["H637"]],[20,21,["H2063"]],[21,24,["H1121"]],[24,26,["H3478"]],[26,27,["H5002"]],[27,29,["H3068"]]]},{"k":22391,"v":[[0,3,["(H853)"]],[3,5,["H5139"]],[5,6,["H3196"]],[6,8,["H8248"]],[8,10,["H6680"]],[10,12,["H5030"]],[12,13,["H559"]],[13,14,["H5012"]],[14,15,["H3808"]]]},{"k":22392,"v":[[0,1,["H2009"]],[1,2,["H595"]],[2,4,["H5781"]],[4,5,["H8478"]],[5,7,["H834"]],[7,9,["H5699"]],[9,11,["H5781"]],[11,15,["H4392"]],[15,16,["H5995"]]]},{"k":22393,"v":[[0,3,["H4498"]],[3,5,["H6"]],[5,8,["H4480","H7031"]],[8,11,["H2389"]],[11,13,["H3808"]],[13,14,["H553"]],[14,16,["H3581"]],[16,17,["H3808"]],[17,20,["H1368"]],[20,21,["H4422"]],[21,22,["H5315"]]]},{"k":22394,"v":[[0,1,["H3808"]],[1,4,["H5975"]],[4,6,["H8610"]],[6,8,["H7198"]],[8,13,["H7031"]],[13,15,["H7272"]],[15,17,["H3808"]],[17,18,["H4422"]],[18,20,["H3808"]],[20,24,["H7392"]],[24,26,["H5483"]],[26,27,["H4422"]],[27,28,["H5315"]]]},{"k":22395,"v":[[0,5,["H533","H3820"]],[5,8,["H1368"]],[8,11,["H5127"]],[11,12,["H6174"]],[12,14,["H1931"]],[14,15,["H3117"]],[15,16,["H5002"]],[16,18,["H3068"]]]},{"k":22396,"v":[[0,1,["H8085","(H853)"]],[1,2,["H2088"]],[2,3,["H1697"]],[3,4,["H834"]],[4,6,["H3068"]],[6,8,["H1696"]],[8,9,["H5921"]],[9,12,["H1121"]],[12,14,["H3478"]],[14,15,["H5921"]],[15,17,["H3605"]],[17,18,["H4940"]],[18,19,["H834"]],[19,22,["H5927"]],[22,25,["H4480","H776"]],[25,27,["H4714"]],[27,28,["H559"]]]},{"k":22397,"v":[[0,2,["H7535"]],[2,5,["H3045"]],[5,7,["H4480","H3605"]],[7,9,["H4940"]],[9,12,["H127"]],[12,13,["H5921","H3651"]],[13,16,["H6485","H5921"]],[16,17,["(H853)"]],[17,19,["H3605"]],[19,21,["H5771"]]]},{"k":22398,"v":[[0,2,["H8147"]],[2,3,["H1980"]],[3,4,["H3162"]],[4,5,["H1115","H518"]],[5,8,["H3259"]]]},{"k":22399,"v":[[0,3,["H738"]],[3,4,["H7580"]],[4,7,["H3293"]],[7,11,["H369"]],[11,12,["H2964"]],[12,16,["H3715"]],[16,17,["H5414","H6963"]],[17,21,["H4480","H4585"]],[21,22,["H518"]],[22,25,["H3920"]],[25,26,["H1115"]]]},{"k":22400,"v":[[0,3,["H6833"]],[3,4,["H5307"]],[4,5,["H5921"]],[5,7,["H6341"]],[7,10,["H776"]],[10,12,["H369"]],[12,13,["H4170"]],[13,20,["H5927"]],[20,22,["H6341"]],[22,23,["H4480"]],[23,25,["H127"]],[25,31,["H3920","H3808","H3920"]]]},{"k":22401,"v":[[0,3,["H7782"]],[3,5,["H8628"]],[5,8,["H5892"]],[8,11,["H5971"]],[11,12,["H3808"]],[12,14,["H2729"]],[14,17,["H1961"]],[17,18,["H7451"]],[18,21,["H5892"]],[21,24,["H3068"]],[24,26,["H3808"]],[26,27,["H6213"]],[27,28,[]]]},{"k":22402,"v":[[0,1,["H3588"]],[1,3,["H136"]],[3,4,["H3069"]],[4,6,["H6213"]],[6,7,["H3808","H1697"]],[7,8,["H3588","H518"]],[8,10,["H1540"]],[10,12,["H5475"]],[12,13,["H413"]],[13,15,["H5650"]],[15,17,["H5030"]]]},{"k":22403,"v":[[0,2,["H738"]],[2,4,["H7580"]],[4,5,["H4310"]],[5,7,["H3808"]],[7,8,["H3372"]],[8,10,["H136"]],[10,11,["H3069"]],[11,13,["H1696"]],[13,14,["H4310"]],[14,16,["H3808"]],[16,17,["H5012"]]]},{"k":22404,"v":[[0,1,["H8085"]],[1,2,["H5921"]],[2,4,["H759"]],[4,6,["H795"]],[6,8,["H5921"]],[8,10,["H759"]],[10,13,["H776"]],[13,15,["H4714"]],[15,17,["H559"]],[17,19,["H622"]],[19,20,["H5921"]],[20,22,["H2022"]],[22,24,["H8111"]],[24,26,["H7200"]],[26,28,["H7227"]],[28,29,["H4103"]],[29,32,["H8432"]],[32,36,["H6217"]],[36,39,["H7130"]],[39,40,[]]]},{"k":22405,"v":[[0,3,["H3045"]],[3,4,["H3808"]],[4,6,["H6213"]],[6,7,["H5229"]],[7,8,["H5002"]],[8,10,["H3068"]],[10,13,["H686"]],[13,14,["H2555"]],[14,16,["H7701"]],[16,19,["H759"]]]},{"k":22406,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,8,["H6862"]],[8,14,["H5439"]],[14,16,["H776"]],[16,21,["H3381"]],[21,23,["H5797"]],[23,24,["H4480"]],[24,28,["H759"]],[28,31,["H962"]]]},{"k":22407,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H834"]],[5,7,["H7462"]],[7,8,["H5337"]],[8,12,["H4480","H6310"]],[12,15,["H738"]],[15,16,["H8147"]],[16,17,["H3767"]],[17,18,["H176"]],[18,20,["H915"]],[20,23,["H241"]],[23,24,["H3651"]],[24,27,["H1121"]],[27,29,["H3478"]],[29,32,["H5337"]],[32,34,["H3427"]],[34,36,["H8111"]],[36,39,["H6285"]],[39,42,["H4296"]],[42,45,["H1833"]],[45,48,["H6210"]]]},{"k":22408,"v":[[0,1,["H8085"]],[1,4,["H5749"]],[4,7,["H1004"]],[7,9,["H3290"]],[9,10,["H5002"]],[10,12,["H136"]],[12,13,["H3069"]],[13,15,["H430"]],[15,17,["H6635"]]]},{"k":22409,"v":[[0,1,["H3588"]],[1,4,["H3117"]],[4,8,["H6485"]],[8,10,["H6588"]],[10,12,["H3478"]],[12,13,["H5921"]],[13,18,["H6485","H5921"]],[18,20,["H4196"]],[20,22,["H1008"]],[22,25,["H7161"]],[25,28,["H4196"]],[28,32,["H1438"]],[32,34,["H5307"]],[34,37,["H776"]]]},{"k":22410,"v":[[0,4,["H5221"]],[4,6,["H2779"]],[6,7,["H1004"]],[7,8,["H5921"]],[8,10,["H7019"]],[10,11,["H1004"]],[11,14,["H1004"]],[14,16,["H8127"]],[16,18,["H6"]],[18,21,["H7227"]],[21,22,["H1004"]],[22,26,["H5486"]],[26,27,["H5002"]],[27,29,["H3068"]]]},{"k":22411,"v":[[0,1,["H8085"]],[1,2,["H2088"]],[2,3,["H1697"]],[3,5,["H6510"]],[5,7,["H1316"]],[7,8,["H834"]],[8,12,["H2022"]],[12,14,["H8111"]],[14,16,["H6231"]],[16,18,["H1800"]],[18,20,["H7533"]],[20,22,["H34"]],[22,24,["H559"]],[24,27,["H113"]],[27,28,["H935"]],[28,32,["H8354"]]]},{"k":22412,"v":[[0,2,["H136"]],[2,3,["H3069"]],[3,5,["H7650"]],[5,8,["H6944"]],[8,9,["H3588"]],[9,10,["H2009"]],[10,12,["H3117"]],[12,14,["H935"]],[14,15,["H5921"]],[15,22,["H5375","(H853)"]],[22,24,["H6793"]],[24,27,["H319"]],[27,29,["H5518","H1729"]]]},{"k":22413,"v":[[0,5,["H3318"]],[5,8,["H6556"]],[8,9,["H802"]],[9,15,["H5048"]],[15,20,["H7993"]],[20,24,["H2038"]],[24,25,["H5002"]],[25,27,["H3068"]]]},{"k":22414,"v":[[0,1,["H935"]],[1,3,["H1008"]],[3,5,["H6586"]],[5,7,["H1537"]],[7,8,["H7235"]],[8,9,["H6586"]],[9,11,["H935"]],[11,13,["H2077"]],[13,15,["H1242"]],[15,18,["H4643"]],[18,20,["H7969"]],[20,21,["H3117"]]]},{"k":22415,"v":[[0,4,["H6999"]],[4,6,["H8426"]],[6,7,["H4480"]],[7,8,["H2557"]],[8,10,["H7121"]],[10,12,["H8085"]],[12,15,["H5071"]],[15,16,["H3588"]],[16,17,["H3651"]],[17,18,["H157"]],[18,22,["H1121"]],[22,24,["H3478"]],[24,25,["H5002"]],[25,27,["H136"]],[27,28,["H3069"]]]},{"k":22416,"v":[[0,2,["H589"]],[2,3,["H1571"]],[3,5,["H5414"]],[5,7,["H5356"]],[7,9,["H8127"]],[9,11,["H3605"]],[11,13,["H5892"]],[13,15,["H2640"]],[15,17,["H3899"]],[17,19,["H3605"]],[19,21,["H4725"]],[21,25,["H3808"]],[25,26,["H7725"]],[26,27,["H5704"]],[27,29,["H5002"]],[29,31,["H3068"]]]},{"k":22417,"v":[[0,2,["H1571"]],[2,3,["H595"]],[3,5,["H4513","(H853)"]],[5,7,["H1653"]],[7,8,["H4480"]],[8,13,["H5750"]],[13,14,["H7969"]],[14,15,["H2320"]],[15,18,["H7105"]],[18,24,["H4305"]],[24,25,["H5921"]],[25,26,["H259"]],[26,27,["H5892"]],[27,33,["H4305","H3808"]],[33,34,["H5921"]],[34,35,["H259"]],[35,36,["H5892"]],[36,37,["H259"]],[37,38,["H2513"]],[38,41,["H4305"]],[41,44,["H2513"]],[44,45,["H834","H5921"]],[45,47,["H4305"]],[47,48,["H3808"]],[48,49,["H3001"]]]},{"k":22418,"v":[[0,2,["H8147"]],[2,4,["H7969"]],[4,5,["H5892"]],[5,6,["H5128"]],[6,7,["H413"]],[7,8,["H259"]],[8,9,["H5892"]],[9,11,["H8354"]],[11,12,["H4325"]],[12,16,["H3808"]],[16,17,["H7646"]],[17,21,["H3808"]],[21,22,["H7725"]],[22,23,["H5704"]],[23,25,["H5002"]],[25,27,["H3068"]]]},{"k":22419,"v":[[0,3,["H5221"]],[3,6,["H7711"]],[6,8,["H3420"]],[8,11,["H1593"]],[11,14,["H3754"]],[14,18,["H8384"]],[18,22,["H2132"]],[22,23,["H7235"]],[23,25,["H1501"]],[25,26,["H398"]],[26,31,["H3808"]],[31,32,["H7725"]],[32,33,["H5704"]],[33,35,["H5002"]],[35,37,["H3068"]]]},{"k":22420,"v":[[0,3,["H7971"]],[3,7,["H1698"]],[7,10,["H1870"]],[10,12,["H4714"]],[12,15,["H970"]],[15,18,["H2026"]],[18,21,["H2719"]],[21,25,["H5973","H7628"]],[25,27,["H5483"]],[27,33,["H889"]],[33,36,["H4264"]],[36,39,["H5927"]],[39,42,["H639"]],[42,46,["H3808"]],[46,47,["H7725"]],[47,48,["H5704"]],[48,50,["H5002"]],[50,52,["H3068"]]]},{"k":22421,"v":[[0,3,["H2015"]],[3,8,["H430"]],[8,9,["H4114","(H853)"]],[9,10,["H5467"]],[10,12,["H6017"]],[12,15,["H1961"]],[15,18,["H181"]],[18,19,["H5337"]],[19,23,["H4480","H8316"]],[23,27,["H3808"]],[27,28,["H7725"]],[28,29,["H5704"]],[29,31,["H5002"]],[31,33,["H3068"]]]},{"k":22422,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,5,["H6213"]],[5,9,["H3478"]],[9,11,["H6118","H3588"]],[11,14,["H6213"]],[14,15,["H2063"]],[15,18,["H3559"]],[18,20,["H7125"]],[20,22,["H430"]],[22,24,["H3478"]]]},{"k":22423,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,5,["H3335"]],[5,7,["H2022"]],[7,9,["H1254"]],[9,11,["H7307"]],[11,13,["H5046"]],[13,15,["H120"]],[15,16,["H4100"]],[16,19,["H7808"]],[19,21,["H6213"]],[21,23,["H7837"]],[23,24,["H5890"]],[24,26,["H1869"]],[26,27,["H5921"]],[27,30,["H1116"]],[30,33,["H776"]],[33,35,["H3068"]],[35,37,["H430"]],[37,39,["H6635"]],[39,42,["H8034"]]]},{"k":22424,"v":[[0,1,["H8085"]],[1,2,["(H853)"]],[2,3,["H2088"]],[3,4,["H1697"]],[4,5,["H834"]],[5,6,["H595"]],[6,8,["H5375"]],[8,9,["H5921"]],[9,13,["H7015"]],[13,15,["H1004"]],[15,17,["H3478"]]]},{"k":22425,"v":[[0,2,["H1330"]],[2,4,["H3478"]],[4,6,["H5307"]],[6,9,["H3808"]],[9,10,["H3254"]],[10,11,["H6965"]],[11,14,["H5203"]],[14,15,["H5921"]],[15,17,["H127"]],[17,20,["H369"]],[20,24,["H6965"]]]},{"k":22426,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H136"]],[5,6,["H3069"]],[6,8,["H5892"]],[8,11,["H3318"]],[11,14,["H505"]],[14,16,["H7604"]],[16,18,["H3967"]],[18,23,["H3318"]],[23,26,["H3967"]],[26,28,["H7604"]],[28,29,["H6235"]],[29,32,["H1004"]],[32,34,["H3478"]]]},{"k":22427,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,8,["H1004"]],[8,10,["H3478"]],[10,11,["H1875"]],[11,17,["H2421"]]]},{"k":22428,"v":[[0,2,["H1875"]],[2,3,["H408"]],[3,4,["H1008"]],[4,5,["H3808"]],[5,6,["H935"]],[6,8,["H1537"]],[8,10,["H5674"]],[10,11,["H3808"]],[11,13,["H884"]],[13,14,["H3588"]],[14,15,["H1537"]],[15,20,["H1540","H1540"]],[20,22,["H1008"]],[22,24,["H1961"]],[24,26,["H205"]]]},{"k":22429,"v":[[0,1,["H1875","(H853)"]],[1,3,["H3068"]],[3,7,["H2421"]],[7,8,["H6435"]],[8,11,["H6743"]],[11,13,["H784"]],[13,16,["H1004"]],[16,18,["H3130"]],[18,20,["H398"]],[20,25,["H369"]],[25,27,["H3518"]],[27,30,["H1008"]]]},{"k":22430,"v":[[0,3,["H2015"]],[3,4,["H4941"]],[4,6,["H3939"]],[6,9,["H5117"]],[9,10,["H6666"]],[10,13,["H776"]]]},{"k":22431,"v":[[0,4,["H6213"]],[4,7,["H3598"]],[7,9,["H3685"]],[9,11,["H2015"]],[11,15,["H6757"]],[15,18,["H1242"]],[18,23,["H2821","H3117"]],[23,25,["H3915"]],[25,27,["H7121"]],[27,30,["H4325"]],[30,33,["H3220"]],[33,37,["H8210"]],[37,38,["H5921"]],[38,40,["H6440"]],[40,43,["H776"]],[43,45,["H3068"]],[45,48,["H8034"]]]},{"k":22432,"v":[[0,2,["H1082"]],[2,4,["H7701"]],[4,5,["H5921"]],[5,7,["H5794"]],[7,11,["H7701"]],[11,13,["H935"]],[13,14,["H5921"]],[14,16,["H4013"]]]},{"k":22433,"v":[[0,2,["H8130"]],[2,5,["H3198"]],[5,8,["H8179"]],[8,11,["H8581"]],[11,14,["H1696"]],[14,15,["H8549"]]]},{"k":22434,"v":[[0,1,["H3282"]],[1,2,["H3651"]],[2,5,["H1318"]],[5,7,["H5921"]],[7,9,["H1800"]],[9,12,["H3947"]],[12,13,["H4480"]],[13,15,["H4864"]],[15,17,["H1250"]],[17,20,["H1129"]],[20,21,["H1004"]],[21,24,["H1496"]],[24,28,["H3808"]],[28,29,["H3427"]],[29,34,["H5193"]],[34,35,["H2531"]],[35,36,["H3754"]],[36,40,["H3808"]],[40,41,["H8354","(H853)"]],[41,42,["H3196"]],[42,44,[]]]},{"k":22435,"v":[[0,1,["H3588"]],[1,3,["H3045"]],[3,5,["H7227"]],[5,6,["H6588"]],[6,9,["H6099"]],[9,10,["H2403"]],[10,12,["H6887"]],[12,14,["H6662"]],[14,16,["H3947"]],[16,18,["H3724"]],[18,22,["H5186"]],[22,24,["H34"]],[24,27,["H8179"]],[27,30,[]]]},{"k":22436,"v":[[0,1,["H3651"]],[1,3,["H7919"]],[3,6,["H1826"]],[6,8,["H1931"]],[8,9,["H6256"]],[9,10,["H3588"]],[10,11,["H1931"]],[11,14,["H7451"]],[14,15,["H6256"]]]},{"k":22437,"v":[[0,1,["H1875"]],[1,2,["H2896"]],[2,4,["H408"]],[4,5,["H7451"]],[5,6,["H4616"]],[6,9,["H2421"]],[9,11,["H3651"]],[11,13,["H3068"]],[13,15,["H430"]],[15,17,["H6635"]],[17,19,["H1961"]],[19,20,["H854"]],[20,22,["H834"]],[22,25,["H559"]]]},{"k":22438,"v":[[0,1,["H8130"]],[1,3,["H7451"]],[3,5,["H157"]],[5,7,["H2896"]],[7,9,["H3322"]],[9,10,["H4941"]],[10,13,["H8179"]],[13,16,["H194"]],[16,19,["H3068"]],[19,20,["H430"]],[20,22,["H6635"]],[22,25,["H2603"]],[25,28,["H7611"]],[28,30,["H3130"]]]},{"k":22439,"v":[[0,1,["H3651"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H6635"]],[7,9,["H136"]],[9,10,["H559"]],[10,11,["H3541"]],[11,12,["H4553"]],[12,16,["H3605"]],[16,17,["H7339"]],[17,21,["H559"]],[21,23,["H3605"]],[23,25,["H2351"]],[25,26,["H1930"]],[26,27,["H1930"]],[27,31,["H7121"]],[31,33,["H406"]],[33,34,["H413"]],[34,35,["H60"]],[35,40,["H3045"]],[40,42,["H5092"]],[42,43,["H413"]],[43,44,["H4553"]]]},{"k":22440,"v":[[0,3,["H3605"]],[3,4,["H3754"]],[4,7,["H4553"]],[7,8,["H3588"]],[8,11,["H5674"]],[11,12,["H7130"]],[12,14,["H559"]],[14,16,["H3068"]]]},{"k":22441,"v":[[0,1,["H1945"]],[1,5,["H183","(H853)"]],[5,7,["H3117"]],[7,10,["H3068"]],[10,13,["H4100"]],[13,15,["H2088"]],[15,19,["H3117"]],[19,22,["H3068"]],[22,24,["H2822"]],[24,26,["H3808"]],[26,27,["H216"]]]},{"k":22442,"v":[[0,2,["H834"]],[2,4,["H376"]],[4,6,["H5127"]],[6,7,["H4480","H6440"]],[7,9,["H738"]],[9,12,["H1677"]],[12,13,["H6293"]],[13,16,["H935"]],[16,19,["H1004"]],[19,21,["H5564"]],[21,23,["H3027"]],[23,24,["H5921"]],[24,26,["H7023"]],[26,29,["H5175"]],[29,30,["H5391"]],[30,31,[]]]},{"k":22443,"v":[[0,2,["H3808"]],[2,4,["H3117"]],[4,7,["H3068"]],[7,9,["H2822"]],[9,11,["H3808"]],[11,12,["H216"]],[12,15,["H651"]],[15,17,["H3808"]],[17,18,["H5051"]],[18,20,[]]]},{"k":22444,"v":[[0,2,["H8130"]],[2,4,["H3988"]],[4,7,["H2282"]],[7,11,["H3808"]],[11,12,["H7306"]],[12,16,["H6116"]]]},{"k":22445,"v":[[0,1,["H3588","H518"]],[1,3,["H5927"]],[3,6,["H5930"]],[6,10,["H4503"]],[10,13,["H3808"]],[13,14,["H7521"]],[14,16,["H3808"]],[16,19,["H5027"]],[19,22,["H8002"]],[22,26,["H4806"]]]},{"k":22446,"v":[[0,3,["H5493"]],[3,4,["H4480","H5921"]],[4,7,["H1995"]],[7,10,["H7892"]],[10,14,["H3808"]],[14,15,["H8085"]],[15,17,["H2172"]],[17,20,["H5035"]]]},{"k":22447,"v":[[0,3,["H4941"]],[3,5,["H1556"]],[5,7,["H4325"]],[7,9,["H6666"]],[9,12,["H386"]],[12,13,["H5158"]]]},{"k":22448,"v":[[0,3,["H5066"]],[3,6,["H2077"]],[6,8,["H4503"]],[8,11,["H4057"]],[11,12,["H705"]],[12,13,["H8141"]],[13,15,["H1004"]],[15,17,["H3478"]]]},{"k":22449,"v":[[0,4,["H5375","(H853)"]],[4,6,["H5522"]],[6,9,["H4432"]],[9,11,["H3594"]],[11,13,["H6754"]],[13,15,["H3556"]],[15,18,["H430"]],[18,19,["H834"]],[19,21,["H6213"]],[21,23,[]]]},{"k":22450,"v":[[0,9,["H1540"]],[9,10,["H4480","H1973"]],[10,11,["H1834"]],[11,12,["H559"]],[12,14,["H3068"]],[14,16,["H8034"]],[16,19,["H430"]],[19,21,["H6635"]]]},{"k":22451,"v":[[0,1,["H1945"]],[1,7,["H7600"]],[7,9,["H6726"]],[9,11,["H982"]],[11,14,["H2022"]],[14,16,["H8111"]],[16,19,["H5344"]],[19,20,["H7225"]],[20,23,["H1471"]],[23,27,["H1004"]],[27,29,["H3478"]],[29,30,["H935"]]]},{"k":22452,"v":[[0,1,["H5674"]],[1,4,["H3641"]],[4,6,["H7200"]],[6,9,["H4480","H8033"]],[9,10,["H1980"]],[10,13,["H2574"]],[13,15,["H7227"]],[15,18,["H3381"]],[18,20,["H1661"]],[20,23,["H6430"]],[23,26,["H2896"]],[26,27,["H4480"]],[27,28,["H428"]],[28,29,["H4467"]],[29,30,["H518"]],[30,32,["H1366"]],[32,33,["H7227"]],[33,36,["H4480","H1366"]]]},{"k":22453,"v":[[0,5,["H5077"]],[5,7,["H7451"]],[7,8,["H3117"]],[8,12,["H7675"]],[12,14,["H2555"]],[14,17,["H5066"]]]},{"k":22454,"v":[[0,2,["H7901"]],[2,3,["H5921"]],[3,4,["H4296"]],[4,6,["H8127"]],[6,8,["H5628"]],[8,10,["H5921"]],[10,12,["H6210"]],[12,14,["H398"]],[14,16,["H3733"]],[16,20,["H4480","H6629"]],[20,23,["H5695"]],[23,27,["H4480","H8432"]],[27,30,["H4770"]]]},{"k":22455,"v":[[0,2,["H6527"]],[2,3,["H5921"]],[3,5,["H6310"]],[5,8,["H5035"]],[8,10,["H2803"]],[10,13,["H3627"]],[13,15,["H7892"]],[15,17,["H1732"]]]},{"k":22456,"v":[[0,2,["H8354"]],[2,3,["H3196"]],[3,5,["H4219"]],[5,7,["H4886"]],[7,11,["H7225"]],[11,12,["H8081"]],[12,16,["H3808"]],[16,17,["H2470"]],[17,18,["H5921"]],[18,20,["H7667"]],[20,22,["H3130"]]]},{"k":22457,"v":[[0,1,["H3651"]],[1,2,["H6258"]],[2,6,["H1540"]],[6,9,["H7218"]],[9,12,["H1540"]],[12,15,["H4797"]],[15,19,["H5628"]],[19,23,["H5493"]]]},{"k":22458,"v":[[0,2,["H136"]],[2,3,["H3069"]],[3,5,["H7650"]],[5,7,["H5315"]],[7,8,["H5002"]],[8,10,["H3068"]],[10,12,["H430"]],[12,14,["H6635"]],[14,15,["H595"]],[15,16,["H8374","(H853)"]],[16,18,["H1347"]],[18,20,["H3290"]],[20,22,["H8130"]],[22,24,["H759"]],[24,29,["H5462"]],[29,31,["H5892"]],[31,36,["H4393"]]]},{"k":22459,"v":[[0,6,["H1961"]],[6,7,["H518"]],[7,9,["H3498"]],[9,10,["H6235"]],[10,11,["H376"]],[11,13,["H259"]],[13,14,["H1004"]],[14,18,["H4191"]]]},{"k":22460,"v":[[0,4,["H1730"]],[4,8,["H5375"]],[8,12,["H5635"]],[12,16,["H3318"]],[16,18,["H6106"]],[18,20,["H4480"]],[20,22,["H1004"]],[22,25,["H559"]],[25,28,["H834"]],[28,32,["H3411"]],[32,35,["H1004"]],[35,38,["H5750"]],[38,40,["H5973"]],[40,45,["H559"]],[45,46,["H657"]],[46,50,["H559"]],[50,53,["H2013"]],[53,54,["H3588"]],[54,57,["H3808"]],[57,59,["H2142"]],[59,62,["H8034"]],[62,65,["H3068"]]]},{"k":22461,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H3068"]],[4,5,["H6680"]],[5,9,["H5221"]],[9,11,["H1419"]],[11,12,["H1004"]],[12,14,["H7447"]],[14,17,["H6996"]],[17,18,["H1004"]],[18,20,["H1233"]]]},{"k":22462,"v":[[0,2,["H5483"]],[2,3,["H7323"]],[3,6,["H5553"]],[6,9,["H2790"]],[9,12,["H1241"]],[12,13,["H3588"]],[13,16,["H2015"]],[16,17,["H4941"]],[17,19,["H7219"]],[19,22,["H6529"]],[22,24,["H6666"]],[24,26,["H3939"]]]},{"k":22463,"v":[[0,3,["H8055"]],[3,8,["H1697","H3808"]],[8,10,["H559"]],[10,13,["H3808"]],[13,14,["H3947"]],[14,17,["H7161"]],[17,21,["H2392"]]]},{"k":22464,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,6,["H6965"]],[6,7,["H5921"]],[7,10,["H1471"]],[10,12,["H1004"]],[12,14,["H3478"]],[14,15,["H5002"]],[15,17,["H3068"]],[17,19,["H430"]],[19,21,["H6635"]],[21,25,["H3905"]],[25,30,["H4480","H935"]],[30,32,["H2574"]],[32,33,["H5704"]],[33,35,["H5158"]],[35,38,["H6160"]]]},{"k":22465,"v":[[0,1,["H3541"]],[1,4,["H136"]],[4,5,["H3069"]],[5,6,["H7200"]],[6,10,["H2009"]],[10,12,["H3335"]],[12,13,["H1462"]],[13,16,["H8462"]],[16,20,["H5927"]],[20,24,["H3954"]],[24,26,["H2009"]],[26,31,["H3954"]],[31,32,["H310"]],[32,34,["H4428"]],[34,35,["H1488"]]]},{"k":22466,"v":[[0,5,["H1961"]],[5,7,["H518"]],[7,12,["H3615"]],[12,14,["H398","(H853)"]],[14,16,["H6212"]],[16,19,["H776"]],[19,22,["H559"]],[22,24,["H136"]],[24,25,["H3069"]],[25,26,["H5545"]],[26,29,["H4994"]],[29,31,["H4310"]],[31,33,["H3290"]],[33,34,["H6965"]],[34,35,["H3588"]],[35,36,["H1931"]],[36,38,["H6996"]]]},{"k":22467,"v":[[0,2,["H3068"]],[2,3,["H5162"]],[3,4,["H5921"]],[4,5,["H2063"]],[5,8,["H3808"]],[8,9,["H1961"]],[9,10,["H559"]],[10,12,["H3068"]]]},{"k":22468,"v":[[0,1,["H3541"]],[1,4,["H136"]],[4,5,["H3069"]],[5,6,["H7200"]],[6,10,["H2009"]],[10,12,["H136"]],[12,13,["H3069"]],[13,14,["H7121"]],[14,16,["H7378"]],[16,18,["H784"]],[18,21,["H398","(H853)"]],[21,23,["H7227"]],[23,24,["H8415"]],[24,28,["H398","(H853)"]],[28,30,["H2506"]]]},{"k":22469,"v":[[0,2,["H559"]],[2,5,["H136"]],[5,6,["H3069"]],[6,7,["H2308"]],[7,10,["H4994"]],[10,12,["H4310"]],[12,14,["H3290"]],[14,15,["H6965"]],[15,16,["H3588"]],[16,17,["H1931"]],[17,19,["H6996"]]]},{"k":22470,"v":[[0,2,["H3068"]],[2,3,["H5162"]],[3,4,["H5921"]],[4,5,["H2063"]],[5,6,["H1931"]],[6,7,["H1571"]],[7,9,["H3808"]],[9,10,["H1961"]],[10,11,["H559"]],[11,13,["H136"]],[13,14,["H3069"]]]},{"k":22471,"v":[[0,1,["H3541"]],[1,3,["H7200"]],[3,6,["H2009"]],[6,8,["H136"]],[8,9,["H5324"]],[9,10,["H5921"]],[10,12,["H2346"]],[12,16,["H594"]],[16,19,["H594"]],[19,22,["H3027"]]]},{"k":22472,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H5986"]],[7,8,["H4100"]],[8,9,["H7200"]],[9,10,["H859"]],[10,13,["H559"]],[13,15,["H594"]],[15,17,["H559"]],[17,19,["H136"]],[19,20,["H2009"]],[20,23,["H7760"]],[23,25,["H594"]],[25,28,["H7130"]],[28,31,["H5971"]],[31,32,["H3478"]],[32,35,["H3808"]],[35,36,["H3254"]],[36,37,["H5674"]],[37,41,["H5750"]]]},{"k":22473,"v":[[0,4,["H1116"]],[4,6,["H3446"]],[6,9,["H8074"]],[9,12,["H4720"]],[12,14,["H3478"]],[14,18,["H2717"]],[18,22,["H6965"]],[22,23,["H5921"]],[23,25,["H1004"]],[25,27,["H3379"]],[27,30,["H2719"]]]},{"k":22474,"v":[[0,2,["H558"]],[2,4,["H3548"]],[4,6,["H1008"]],[6,7,["H7971"]],[7,8,["H413"]],[8,9,["H3379"]],[9,10,["H4428"]],[10,12,["H3478"]],[12,13,["H559"]],[13,14,["H5986"]],[14,16,["H7194"]],[16,17,["H5921"]],[17,21,["H7130"]],[21,24,["H1004"]],[24,26,["H3478"]],[26,28,["H776"]],[28,31,["H3201","H3808"]],[31,33,["H3557","(H853)"]],[33,34,["H3605"]],[34,36,["H1697"]]]},{"k":22475,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H5986"]],[3,4,["H559"]],[4,5,["H3379"]],[5,7,["H4191"]],[7,10,["H2719"]],[10,12,["H3478"]],[12,18,["H1540","H1540"]],[18,20,["H4480","H5921"]],[20,23,["H127"]]]},{"k":22476,"v":[[0,2,["H558"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H5986"]],[5,8,["H2374"]],[8,9,["H1980"]],[9,12,["H1272"]],[12,13,["H413"]],[13,15,["H776"]],[15,17,["H3063"]],[17,19,["H8033"]],[19,20,["H398"]],[20,21,["H3899"]],[21,23,["H5012"]],[23,24,["H8033"]]]},{"k":22477,"v":[[0,2,["H5012"]],[2,3,["H3808"]],[3,4,["H3254"]],[4,6,["H5750"]],[6,8,["H1008"]],[8,9,["H3588"]],[9,10,["H1931"]],[10,13,["H4428"]],[13,14,["H4720"]],[14,16,["H1931"]],[16,19,["H4467"]],[19,20,["H1004"]]]},{"k":22478,"v":[[0,2,["H6030"]],[2,3,["H5986"]],[3,5,["H559"]],[5,6,["H413"]],[6,7,["H558"]],[7,8,["H595"]],[8,10,["H3808"]],[10,11,["H5030"]],[11,12,["H3808"]],[12,14,["H595"]],[14,16,["H5030"]],[16,17,["H1121"]],[17,18,["H3588"]],[18,19,["H595"]],[19,22,["H951"]],[22,25,["H1103"]],[25,28,["H8256"]]]},{"k":22479,"v":[[0,3,["H3068"]],[3,4,["H3947"]],[4,8,["H4480","H310"]],[8,10,["H6629"]],[10,13,["H3068"]],[13,14,["H559"]],[14,15,["H413"]],[15,17,["H1980"]],[17,18,["H5012"]],[18,19,["H413"]],[19,21,["H5971"]],[21,22,["H3478"]]]},{"k":22480,"v":[[0,1,["H6258"]],[1,3,["H8085"]],[3,6,["H1697"]],[6,9,["H3068"]],[9,10,["H859"]],[10,11,["H559"]],[11,12,["H5012"]],[12,13,["H3808"]],[13,14,["H5921"]],[14,15,["H3478"]],[15,17,["H5197"]],[17,18,["H3808"]],[18,21,["H5921"]],[21,23,["H1004"]],[23,25,["H3446"]]]},{"k":22481,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H802"]],[7,11,["H2181"]],[11,14,["H5892"]],[14,17,["H1121"]],[17,20,["H1323"]],[20,22,["H5307"]],[22,25,["H2719"]],[25,28,["H127"]],[28,31,["H2505"]],[31,33,["H2256"]],[33,35,["H859"]],[35,37,["H4191"]],[37,38,["H5921"]],[38,40,["H2931"]],[40,41,["H127"]],[41,43,["H3478"]],[43,48,["H1540","H1540"]],[48,50,["H4480","H5921"]],[50,52,["H127"]]]},{"k":22482,"v":[[0,1,["H3541"]],[1,4,["H136"]],[4,5,["H3069"]],[5,6,["H7200"]],[6,10,["H2009"]],[10,12,["H3619"]],[12,15,["H7019"]]]},{"k":22483,"v":[[0,3,["H559"]],[3,4,["H5986"]],[4,5,["H4100"]],[5,6,["H7200"]],[6,7,["H859"]],[7,10,["H559"]],[10,12,["H3619"]],[12,15,["H7019"]],[15,17,["H559"]],[17,19,["H3068"]],[19,20,["H413"]],[20,23,["H7093"]],[23,25,["H935"]],[25,26,["H413"]],[26,28,["H5971"]],[28,30,["H3478"]],[30,33,["H3808"]],[33,34,["H3254"]],[34,36,["H5674"]],[36,39,["H5750"]]]},{"k":22484,"v":[[0,3,["H7892"]],[3,6,["H1964"]],[6,9,["H3213"]],[9,11,["H1931"]],[11,12,["H3117"]],[12,13,["H5002"]],[13,15,["H136"]],[15,16,["H3069"]],[16,20,["H7227"]],[20,22,["H6297"]],[22,24,["H3605"]],[24,25,["H4725"]],[25,30,["H7993"]],[30,32,["H2013"]]]},{"k":22485,"v":[[0,1,["H8085"]],[1,2,["H2063"]],[2,7,["H7602"]],[7,9,["H34"]],[9,14,["H6041"]],[14,17,["H776"]],[17,19,["H7673"]]]},{"k":22486,"v":[[0,1,["H559"]],[1,2,["H4970"]],[2,6,["H2320"]],[6,8,["H5674"]],[8,12,["H7666"]],[12,13,["H7668"]],[13,16,["H7676"]],[16,21,["H6605"]],[21,22,["H1250"]],[22,26,["H6994","H374"]],[26,29,["H8255"]],[29,30,["H1431"]],[30,32,["H5791"]],[32,34,["H3976"]],[34,36,["H4820"]]]},{"k":22487,"v":[[0,4,["H7069"]],[4,6,["H1800"]],[6,8,["H3701"]],[8,11,["H34"]],[11,12,["H5668"]],[12,16,["H5275"]],[16,19,["H7666"]],[19,21,["H4651"]],[21,24,["H1250"]]]},{"k":22488,"v":[[0,2,["H3068"]],[2,4,["H7650"]],[4,7,["H1347"]],[7,9,["H3290"]],[9,10,["H518"]],[10,13,["H5331"]],[13,14,["H7911"]],[14,15,["H3605"]],[15,18,["H4639"]]]},{"k":22489,"v":[[0,2,["H3808"]],[2,4,["H776"]],[4,5,["H7264"]],[5,6,["H5921"]],[6,7,["H2063"]],[7,10,["H3605"]],[10,11,["H56"]],[11,13,["H3427"]],[13,19,["H5927"]],[19,20,["H3605"]],[20,23,["H2975"]],[23,29,["H1644"]],[29,31,["H8257"]],[31,35,["H2975"]],[35,37,["H4714"]]]},{"k":22490,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,10,["H5002"]],[10,12,["H136"]],[12,13,["H3069"]],[13,19,["H8121"]],[19,22,["H935"]],[22,24,["H6672"]],[24,28,["H2821"]],[28,30,["H776"]],[30,33,["H216"]],[33,34,["H3117"]]]},{"k":22491,"v":[[0,4,["H2015"]],[4,6,["H2282"]],[6,8,["H60"]],[8,10,["H3605"]],[10,12,["H7892"]],[12,14,["H7015"]],[14,19,["H5927"]],[19,20,["H8242"]],[20,21,["H5921"]],[21,22,["H3605"]],[22,23,["H4975"]],[23,25,["H7144"]],[25,26,["H5921"]],[26,27,["H3605"]],[27,28,["H7218"]],[28,32,["H7760"]],[32,36,["H60"]],[36,39,["H3173"]],[39,43,["H319"]],[43,47,["H4751"]],[47,48,["H3117"]]]},{"k":22492,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,5,["H5002"]],[5,7,["H136"]],[7,8,["H3069"]],[8,12,["H7971"]],[12,14,["H7458"]],[14,17,["H776"]],[17,18,["H3808"]],[18,20,["H7458"]],[20,22,["H3899"]],[22,23,["H3808"]],[23,25,["H6772"]],[25,27,["H4325"]],[27,28,["H3588","H518"]],[28,30,["H8085","(H853)"]],[30,32,["H1697"]],[32,35,["H3068"]]]},{"k":22493,"v":[[0,4,["H5128"]],[4,6,["H4480","H3220"]],[6,7,["H5704"]],[7,8,["H3220"]],[8,12,["H4480","H6828"]],[12,14,["H5704"]],[14,16,["H4217"]],[16,22,["H7751"]],[22,24,["H1245","(H853)"]],[24,26,["H1697"]],[26,29,["H3068"]],[29,32,["H3808"]],[32,33,["H4672"]],[33,34,[]]]},{"k":22494,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H3303"]],[6,7,["H1330"]],[7,10,["H970"]],[10,11,["H5968"]],[11,13,["H6772"]]]},{"k":22495,"v":[[0,3,["H7650"]],[3,6,["H819"]],[6,8,["H8111"]],[8,10,["H559"]],[10,12,["H430"]],[12,14,["H1835"]],[14,15,["H2416"]],[15,18,["H1870"]],[18,20,["H884"]],[20,21,["H2416"]],[21,25,["H5307"]],[25,27,["H3808"]],[27,29,["H6965"]],[29,30,["H5750"]]]},{"k":22496,"v":[[0,2,["H7200","(H853)"]],[2,4,["H136"]],[4,5,["H5324"]],[5,6,["H5921"]],[6,8,["H4196"]],[8,11,["H559"]],[11,12,["H5221"]],[12,14,["H3730"]],[14,20,["H5592"]],[20,22,["H7493"]],[22,24,["H1214"]],[24,28,["H7218"]],[28,29,["H3605"]],[29,35,["H2026"]],[35,37,["H319"]],[37,42,["H2719"]],[42,45,["H5127"]],[45,49,["H3808"]],[49,51,["H5127"]],[51,55,["H6412"]],[55,59,["H3808"]],[59,61,["H4422"]]]},{"k":22497,"v":[[0,1,["H518"]],[1,3,["H2864"]],[3,5,["H7585"]],[5,6,["H4480","H8033"]],[6,9,["H3027"]],[9,10,["H3947"]],[10,12,["H518"]],[12,15,["H5927"]],[15,17,["H8064"]],[17,18,["H4480","H8033"]],[18,23,["H3381"]]]},{"k":22498,"v":[[0,2,["H518"]],[2,5,["H2244"]],[5,8,["H7218"]],[8,10,["H3760"]],[10,13,["H2664"]],[13,15,["H3947"]],[15,18,["H4480","H8033"]],[18,20,["H518"]],[20,23,["H5641"]],[23,24,["H4480","H5048"]],[24,26,["H5869"]],[26,29,["H7172"]],[29,32,["H3220"]],[32,33,["H4480","H8033"]],[33,36,["H6680","(H853)"]],[36,38,["H5175"]],[38,42,["H5391"]],[42,43,[]]]},{"k":22499,"v":[[0,2,["H518"]],[2,4,["H1980"]],[4,6,["H7628"]],[6,7,["H6440"]],[7,9,["H341"]],[9,10,["H4480","H8033"]],[10,13,["H6680","(H853)"]],[13,15,["H2719"]],[15,19,["H2026"]],[19,24,["H7760"]],[24,26,["H5869"]],[26,27,["H5921"]],[27,30,["H7451"]],[30,32,["H3808"]],[32,34,["H2896"]]]},{"k":22500,"v":[[0,3,["H136"]],[3,4,["H3069"]],[4,6,["H6635"]],[6,10,["H5060"]],[10,12,["H776"]],[12,16,["H4127"]],[16,18,["H3605"]],[18,20,["H3427"]],[20,23,["H56"]],[23,28,["H5927"]],[28,29,["H3605"]],[29,32,["H2975"]],[32,36,["H8257"]],[36,40,["H2975"]],[40,42,["H4714"]]]},{"k":22501,"v":[[0,5,["H1129"]],[5,7,["H4609"]],[7,10,["H8064"]],[10,13,["H3245"]],[13,15,["H92"]],[15,16,["H5921"]],[16,18,["H776"]],[18,21,["H7121"]],[21,24,["H4325"]],[24,27,["H3220"]],[27,31,["H8210"]],[31,32,["H5921"]],[32,34,["H6440"]],[34,37,["H776"]],[37,39,["H3068"]],[39,42,["H8034"]]]},{"k":22502,"v":[[0,2,["H859"]],[2,3,["H3808"]],[3,5,["H1121"]],[5,8,["H3569"]],[8,12,["H1121"]],[12,14,["H3478"]],[14,15,["H5002"]],[15,17,["H3068"]],[17,19,["H3808"]],[19,22,["H5927","(H853)"]],[22,23,["H3478"]],[23,27,["H4480","H776"]],[27,29,["H4714"]],[29,32,["H6430"]],[32,34,["H4480","H3731"]],[34,37,["H758"]],[37,39,["H4480","H7024"]]]},{"k":22503,"v":[[0,1,["H2009"]],[1,3,["H5869"]],[3,6,["H136"]],[6,7,["H3069"]],[7,11,["H2400"]],[11,12,["H4467"]],[12,16,["H8045"]],[16,19,["H4480","H5921"]],[19,21,["H6440"]],[21,24,["H127"]],[24,25,["H657"]],[25,26,["H3588"]],[26,29,["H3808"]],[29,31,["H8045","H8045","(H853)"]],[31,33,["H1004"]],[33,35,["H3290"]],[35,36,["H5002"]],[36,38,["H3068"]]]},{"k":22504,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,3,["H595"]],[3,5,["H6680"]],[5,9,["H5128","(H853)"]],[9,11,["H1004"]],[11,13,["H3478"]],[13,15,["H3605"]],[15,16,["H1471"]],[16,18,["H834"]],[18,21,["H5128"]],[21,24,["H3531"]],[24,27,["H3808"]],[27,30,["H6872"]],[30,31,["H5307"]],[31,34,["H776"]]]},{"k":22505,"v":[[0,1,["H3605"]],[1,3,["H2400"]],[3,6,["H5971"]],[6,8,["H4191"]],[8,11,["H2719"]],[11,13,["H559"]],[13,15,["H7451"]],[15,17,["H3808"]],[17,18,["H5066"]],[18,20,["H6923","H1157"]],[20,21,[]]]},{"k":22506,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,7,["H6965","(H853)"]],[7,9,["H5521"]],[9,11,["H1732"]],[11,14,["H5307"]],[14,17,["H1443","(H853)"]],[17,19,["H6556"]],[19,25,["H6965"]],[25,27,["H2034"]],[27,31,["H1129"]],[31,36,["H3117"]],[36,38,["H5769"]]]},{"k":22507,"v":[[0,1,["H4616"]],[1,4,["H3423","(H853)"]],[4,6,["H7611"]],[6,8,["H123"]],[8,11,["H3605"]],[11,13,["H1471"]],[13,14,["H834"]],[14,17,["H7121","H5921"]],[17,19,["H8034"]],[19,20,["H5002"]],[20,22,["H3068"]],[22,24,["H6213"]],[24,25,["H2063"]]]},{"k":22508,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,4,["H935"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,10,["H2790"]],[10,12,["H5066"]],[12,14,["H7114"]],[14,17,["H1869"]],[17,19,["H6025"]],[19,22,["H4900"]],[22,23,["H2233"]],[23,26,["H2022"]],[26,28,["H5197"]],[28,30,["H6071"]],[30,32,["H3605"]],[32,34,["H1389"]],[34,36,["H4127"]]]},{"k":22509,"v":[[0,5,["H7725","(H853)"]],[5,7,["H7622"]],[7,10,["H5971"]],[10,12,["H3478"]],[12,16,["H1129"]],[16,18,["H8074"]],[18,19,["H5892"]],[19,21,["H3427"]],[21,26,["H5193"]],[26,27,["H3754"]],[27,29,["H8354","(H853)"]],[29,31,["H3196"]],[31,36,["H6213"]],[36,37,["H1593"]],[37,39,["H398","(H853)"]],[39,41,["H6529"]],[41,43,[]]]},{"k":22510,"v":[[0,4,["H5193"]],[4,6,["H5921"]],[6,8,["H127"]],[8,12,["H3808"]],[12,13,["H5750"]],[13,16,["H5428"]],[16,18,["H4480","H5921"]],[18,20,["H127"]],[20,21,["H834"]],[21,24,["H5414"]],[24,26,["H559"]],[26,28,["H3068"]],[28,30,["H430"]]]},{"k":22511,"v":[[0,2,["H2377"]],[2,4,["H5662"]],[4,5,["H3541"]],[5,6,["H559"]],[6,8,["H136"]],[8,9,["H3069"]],[9,11,["H123"]],[11,14,["H8085"]],[14,16,["H8052"]],[16,17,["H4480","H854"]],[17,19,["H3068"]],[19,22,["H6735"]],[22,24,["H7971"]],[24,27,["H1471"]],[27,28,["H6965"]],[28,34,["H6965"]],[34,35,["H5921"]],[35,38,["H4421"]]]},{"k":22512,"v":[[0,1,["H2009"]],[1,4,["H5414"]],[4,6,["H6996"]],[6,9,["H1471"]],[9,10,["H859"]],[10,12,["H3966"]],[12,13,["H959"]]]},{"k":22513,"v":[[0,2,["H2087"]],[2,5,["H3820"]],[5,7,["H5377"]],[7,11,["H7931"]],[11,14,["H2288"]],[14,17,["H5553"]],[17,19,["H7675"]],[19,21,["H4791"]],[21,23,["H559"]],[23,26,["H3820"]],[26,27,["H4310"]],[27,31,["H3381"]],[31,34,["H776"]]]},{"k":22514,"v":[[0,1,["H518"]],[1,3,["H1361"]],[3,7,["H5404"]],[7,9,["H518"]],[9,11,["H7760"]],[11,13,["H7064"]],[13,14,["H996"]],[14,16,["H3556"]],[16,17,["H4480","H8033"]],[17,22,["H3381"]],[22,23,["H5002"]],[23,25,["H3068"]]]},{"k":22515,"v":[[0,1,["H518"]],[1,2,["H1590"]],[2,3,["H935"]],[3,6,["H518"]],[6,7,["H7703"]],[7,9,["H3915"]],[9,10,["H349"]],[10,14,["H1820"]],[14,17,["H3808"]],[17,19,["H1589"]],[19,23,["H1767"]],[23,24,["H518"]],[24,26,["H1219"]],[26,27,["H935"]],[27,32,["H3808"]],[32,33,["H7604"]],[33,35,["H5955"]]]},{"k":22516,"v":[[0,1,["H349"]],[1,6,["H6215"]],[6,8,["H2664"]],[8,13,["H4710"]],[13,15,["H1158"]]]},{"k":22517,"v":[[0,1,["H3605"]],[1,3,["H376"]],[3,6,["H1285"]],[6,8,["H7971"]],[8,11,["H5704"]],[11,13,["H1366"]],[13,15,["H376"]],[15,19,["H7965"]],[19,23,["H5377"]],[23,26,["H3201"]],[26,33,["H3899"]],[33,35,["H7760"]],[35,37,["H4204"]],[37,38,["H8478"]],[38,42,["H369"]],[42,43,["H8394"]],[43,45,[]]]},{"k":22518,"v":[[0,3,["H3808"]],[3,5,["H1931"]],[5,6,["H3117"]],[6,7,["H5002"]],[7,9,["H3068"]],[9,11,["H6"]],[11,13,["H2450"]],[13,17,["H4480","H123"]],[17,19,["H8394"]],[19,23,["H4480","H2022"]],[23,25,["H6215"]]]},{"k":22519,"v":[[0,3,["H1368"]],[3,6,["H8487"]],[6,9,["H2865"]],[9,13,["H4616"]],[13,15,["H376"]],[15,18,["H4480","H2022"]],[18,20,["H6215"]],[20,24,["H3772"]],[24,26,["H4480","H6993"]]]},{"k":22520,"v":[[0,3,["H4480","H2555"]],[3,6,["H251"]],[6,7,["H3290"]],[7,8,["H955"]],[8,10,["H3680"]],[10,17,["H3772"]],[17,19,["H5769"]]]},{"k":22521,"v":[[0,3,["H3117"]],[3,6,["H5975"]],[6,10,["H4480","H5048"]],[10,13,["H3117"]],[13,16,["H2114"]],[16,19,["H7617"]],[19,21,["H2428"]],[21,23,["H5237"]],[23,25,["H935"]],[25,27,["H8179"]],[27,29,["H3032"]],[29,30,["H1486"]],[30,31,["H5921"]],[31,32,["H3389"]],[32,33,["H1571"]],[33,34,["H859"]],[34,37,["H259"]],[37,38,["H4480"]],[38,39,[]]]},{"k":22522,"v":[[0,4,["H408"]],[4,6,["H7200"]],[6,9,["H3117"]],[9,12,["H251"]],[12,15,["H3117"]],[15,20,["H5237"]],[20,21,["H408"]],[21,25,["H8055"]],[25,28,["H1121"]],[28,30,["H3063"]],[30,33,["H3117"]],[33,36,["H6"]],[36,37,["H408"]],[37,42,["H1431","H6310"]],[42,45,["H3117"]],[45,47,["H6869"]]]},{"k":22523,"v":[[0,3,["H408"]],[3,5,["H935"]],[5,8,["H8179"]],[8,11,["H5971"]],[11,14,["H3117"]],[14,17,["H343"]],[17,18,["H1571"]],[18,19,["H859"]],[19,21,["H408"]],[21,23,["H7200"]],[23,26,["H7451"]],[26,29,["H3117"]],[29,32,["H343"]],[32,33,["H408"]],[33,35,["H7971"]],[35,39,["H2428"]],[39,42,["H3117"]],[42,45,["H343"]]]},{"k":22524,"v":[[0,1,["H408"]],[1,5,["H5975"]],[5,6,["H5921"]],[6,8,["H6563"]],[8,11,["H3772","(H853)"]],[11,17,["H6412"]],[17,18,["H408"]],[18,23,["H5462"]],[23,29,["H8300"]],[29,32,["H3117"]],[32,34,["H6869"]]]},{"k":22525,"v":[[0,1,["H3588"]],[1,3,["H3117"]],[3,6,["H3068"]],[6,8,["H7138"]],[8,9,["H5921"]],[9,10,["H3605"]],[10,12,["H1471"]],[12,13,["H834"]],[13,16,["H6213"]],[16,20,["H6213"]],[20,24,["H1576"]],[24,26,["H7725"]],[26,30,["H7218"]]]},{"k":22526,"v":[[0,1,["H3588"]],[1,2,["H834"]],[2,5,["H8354"]],[5,6,["H5921"]],[6,8,["H6944"]],[8,9,["H2022"]],[9,12,["H3605"]],[12,14,["H1471"]],[14,15,["H8354"]],[15,16,["H8548"]],[16,20,["H8354"]],[20,25,["H3886"]],[25,29,["H1961"]],[29,34,["H3808"]],[34,35,["H1961"]]]},{"k":22527,"v":[[0,3,["H2022"]],[3,4,["H6726"]],[4,6,["H1961"]],[6,7,["H6413"]],[7,11,["H1961"]],[11,12,["H6944"]],[12,15,["H1004"]],[15,17,["H3290"]],[17,19,["H3423","(H853)"]],[19,21,["H4180"]]]},{"k":22528,"v":[[0,3,["H1004"]],[3,5,["H3290"]],[5,7,["H1961"]],[7,9,["H784"]],[9,12,["H1004"]],[12,14,["H3130"]],[14,16,["H3852"]],[16,19,["H1004"]],[19,21,["H6215"]],[21,23,["H7179"]],[23,27,["H1814"]],[27,31,["H398"]],[31,36,["H3808"]],[36,37,["H1961"]],[37,39,["H8300"]],[39,42,["H1004"]],[42,44,["H6215"]],[44,45,["H3588"]],[45,47,["H3068"]],[47,49,["H1696"]],[49,50,[]]]},{"k":22529,"v":[[0,5,["H5045"]],[5,7,["H3423","(H853)"]],[7,9,["H2022"]],[9,11,["H6215"]],[11,16,["H8219","(H853)"]],[16,18,["H6430"]],[18,22,["H3423","(H853)"]],[22,24,["H7704"]],[24,26,["H669"]],[26,29,["H7704"]],[29,31,["H8111"]],[31,33,["H1144"]],[33,35,["(H853)"]],[35,36,["H1568"]]]},{"k":22530,"v":[[0,3,["H1546"]],[3,5,["H2088"]],[5,6,["H2426"]],[6,9,["H1121"]],[9,11,["H3478"]],[11,14,["H834"]],[14,17,["H3669"]],[17,19,["H5704"]],[19,20,["H6886"]],[20,23,["H1546"]],[23,25,["H3389"]],[25,26,["H834"]],[26,29,["H5614"]],[29,31,["H3423","(H853)"]],[31,33,["H5892"]],[33,36,["H5045"]]]},{"k":22531,"v":[[0,2,["H3467"]],[2,5,["H5927"]],[5,7,["H2022"]],[7,8,["H6726"]],[8,10,["H8199"]],[10,11,["(H853)"]],[11,12,["H2022"]],[12,14,["H6215"]],[14,17,["H4410"]],[17,19,["H1961"]],[19,21,["H3068"]]]},{"k":22532,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3124"]],[9,11,["H1121"]],[11,13,["H573"]],[13,14,["H559"]]]},{"k":22533,"v":[[0,1,["H6965"]],[1,2,["H1980"]],[2,3,["H413"]],[3,4,["H5210"]],[4,6,["H1419"]],[6,7,["H5892"]],[7,9,["H7121"]],[9,10,["H5921"]],[10,12,["H3588"]],[12,14,["H7451"]],[14,17,["H5927"]],[17,18,["H6440"]],[18,19,[]]]},{"k":22534,"v":[[0,2,["H3124"]],[2,4,["H6965"]],[4,6,["H1272"]],[6,8,["H8659"]],[8,11,["H4480","H6440"]],[11,14,["H3068"]],[14,17,["H3381"]],[17,19,["H3305"]],[19,22,["H4672"]],[22,24,["H591"]],[24,25,["H935"]],[25,27,["H8659"]],[27,30,["H5414"]],[30,32,["H7939"]],[32,36,["H3381"]],[36,40,["H935"]],[40,41,["H5973"]],[41,44,["H8659"]],[44,47,["H4480","H6440"]],[47,50,["H3068"]]]},{"k":22535,"v":[[0,3,["H3068"]],[3,5,["H2904"]],[5,7,["H1419"]],[7,8,["H7307"]],[8,9,["H413"]],[9,11,["H3220"]],[11,14,["H1961"]],[14,16,["H1419"]],[16,17,["H5591"]],[17,20,["H3220"]],[20,24,["H591"]],[24,26,["H2803"]],[26,29,["H7665"]]]},{"k":22536,"v":[[0,3,["H4419"]],[3,5,["H3372"]],[5,7,["H2199"]],[7,9,["H376"]],[9,10,["H413"]],[10,12,["H430"]],[12,15,["H2904","(H853)"]],[15,17,["H3627"]],[17,18,["H834"]],[18,22,["H591"]],[22,23,["H413"]],[23,25,["H3220"]],[25,27,["H7043"]],[27,29,["H4480","H5921"]],[29,32,["H3124"]],[32,35,["H3381"]],[35,36,["H413"]],[36,38,["H3411"]],[38,41,["H5600"]],[41,44,["H7901"]],[44,48,["H7290"]]]},{"k":22537,"v":[[0,3,["H7227","H2259"]],[3,4,["H7126"]],[4,5,["H413"]],[5,8,["H559"]],[8,11,["H4100"]],[11,15,["H7290"]],[15,16,["H6965"]],[16,17,["H7121"]],[17,18,["H413"]],[18,20,["H430"]],[20,23,["H194"]],[23,25,["H430"]],[25,27,["H6245"]],[27,32,["H6"]],[32,33,["H3808"]]]},{"k":22538,"v":[[0,3,["H559"]],[3,5,["H376"]],[5,6,["H413"]],[6,8,["H7453"]],[8,9,["H1980"]],[9,13,["H5307"]],[13,14,["H1486"]],[14,18,["H3045"]],[18,21,["H7945","H4310"]],[21,22,["H2063"]],[22,23,["H7451"]],[23,29,["H5307"]],[29,30,["H1486"]],[30,33,["H1486"]],[33,34,["H5307"]],[34,35,["H5921"]],[35,36,["H3124"]]]},{"k":22539,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H5046"]],[6,10,["H4994"]],[10,13,["H834","H4310"]],[13,14,["H2063"]],[14,15,["H7451"]],[15,19,["H4100"]],[19,22,["H4399"]],[22,24,["H4480","H370"]],[24,25,["H935"]],[25,27,["H4100"]],[27,30,["H776"]],[30,33,["H335","H4480","H2088"]],[33,34,["H5971"]],[34,36,["H859"]]]},{"k":22540,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H595"]],[6,9,["H5680"]],[9,11,["H589"]],[11,12,["H3372"]],[12,14,["H3068"]],[14,16,["H430"]],[16,18,["H8064"]],[18,19,["H834"]],[19,21,["H6213","(H853)"]],[21,23,["H3220"]],[23,26,["H3004"]],[26,27,[]]]},{"k":22541,"v":[[0,4,["H376"]],[4,5,["H1419"]],[5,6,["H3372","H3374"]],[6,8,["H559"]],[8,9,["H413"]],[9,11,["H4100"]],[11,14,["H6213"]],[14,15,["H2063"]],[15,16,["H3588"]],[16,18,["H376"]],[18,19,["H3045"]],[19,20,["H3588"]],[20,21,["H1931"]],[21,22,["H1272"]],[22,25,["H4480","H6440"]],[25,28,["H3068"]],[28,29,["H3588"]],[29,32,["H5046"]],[32,33,[]]]},{"k":22542,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H4100"]],[6,9,["H6213"]],[9,14,["H3220"]],[14,17,["H8367"]],[17,18,["H4480","H5921"]],[18,20,["H3588"]],[20,22,["H3220"]],[22,23,["H1980"]],[23,26,["H5590"]]]},{"k":22543,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,8,["H5375"]],[8,12,["H2904"]],[12,13,["H413"]],[13,15,["H3220"]],[15,19,["H3220"]],[19,21,["H8367"]],[21,22,["H4480","H5921"]],[22,24,["H3588"]],[24,25,["H589"]],[25,26,["H3045"]],[26,27,["H3588"]],[27,30,["H7945"]],[30,31,["H2088"]],[31,32,["H1419"]],[32,33,["H5591"]],[33,35,["H5921"]],[35,36,[]]]},{"k":22544,"v":[[0,3,["H376"]],[3,4,["H2864"]],[4,7,["H7725"]],[7,9,["H413"]],[9,11,["H3004"]],[11,14,["H3201"]],[14,15,["H3808"]],[15,16,["H3588"]],[16,18,["H3220"]],[18,19,["H1980"]],[19,22,["H5590"]],[22,23,["H5921"]],[23,24,[]]]},{"k":22545,"v":[[0,3,["H7121"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H559"]],[8,11,["H4994"]],[11,13,["H3068"]],[13,16,["H577"]],[16,19,["H408"]],[19,20,["H6"]],[20,22,["H2088"]],[22,23,["H376"]],[23,24,["H5315"]],[24,26,["H5414"]],[26,27,["H408"]],[27,28,["H5921"]],[28,30,["H5355"]],[30,31,["H1818"]],[31,32,["H3588"]],[32,33,["H859"]],[33,35,["H3068"]],[35,37,["H6213"]],[37,38,["H834"]],[38,40,["H2654"]],[40,41,[]]]},{"k":22546,"v":[[0,4,["H5375","(H853)"]],[4,5,["H3124"]],[5,9,["H2904"]],[9,10,["H413"]],[10,12,["H3220"]],[12,15,["H3220"]],[15,16,["H5975"]],[16,19,["H4480","H2197"]]]},{"k":22547,"v":[[0,3,["H376"]],[3,4,["H3372","H3374","(H853)"]],[4,6,["H3068"]],[6,7,["H1419"]],[7,9,["H2076"]],[9,11,["H2077"]],[11,14,["H3068"]],[14,16,["H5087"]],[16,17,["H5088"]]]},{"k":22548,"v":[[0,3,["H3068"]],[3,5,["H4487"]],[5,7,["H1419"]],[7,8,["H1709"]],[8,11,["H1104","(H853)"]],[11,12,["H3124"]],[12,14,["H3124"]],[14,15,["H1961"]],[15,18,["H4578"]],[18,21,["H1709"]],[21,22,["H7969"]],[22,23,["H3117"]],[23,25,["H7969"]],[25,26,["H3915"]]]},{"k":22549,"v":[[0,2,["H3124"]],[2,3,["H6419"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H430"]],[8,12,["H1710"]],[12,13,["H4480","H4578"]]]},{"k":22550,"v":[[0,2,["H559"]],[2,4,["H7121"]],[4,9,["H4480","H6869"]],[9,10,["H413"]],[10,12,["H3068"]],[12,15,["H6030"]],[15,20,["H4480","H990"]],[20,22,["H7585"]],[22,23,["H7768"]],[23,27,["H8085"]],[27,29,["H6963"]]]},{"k":22551,"v":[[0,4,["H7993"]],[4,8,["H4688"]],[8,11,["H3824"]],[11,14,["H3220"]],[14,17,["H5104"]],[17,20,["H5437"]],[20,21,["H3605"]],[21,23,["H4867"]],[23,26,["H1530"]],[26,27,["H5674"]],[27,28,["H5921"]],[28,29,[]]]},{"k":22552,"v":[[0,2,["H589"]],[2,3,["H559"]],[3,7,["H1644"]],[7,8,["H4480","H5048"]],[8,10,["H5869"]],[10,11,["H389"]],[11,14,["H5027"]],[14,15,["H3254"]],[15,16,["H413"]],[16,18,["H6944"]],[18,19,["H1964"]]]},{"k":22553,"v":[[0,2,["H4325"]],[2,5,["H661"]],[5,7,["H5704"]],[7,9,["H5315"]],[9,11,["H8415"]],[11,15,["H5437"]],[15,17,["H5488"]],[17,19,["H2280"]],[19,22,["H7218"]]]},{"k":22554,"v":[[0,3,["H3381"]],[3,6,["H7095"]],[6,9,["H2022"]],[9,11,["H776"]],[11,14,["H1280"]],[14,16,["H1157"]],[16,19,["H5769"]],[19,24,["H5927"]],[24,26,["H2416"]],[26,28,["H4480","H7845"]],[28,30,["H3068"]],[30,32,["H430"]]]},{"k":22555,"v":[[0,3,["H5315"]],[3,4,["H5848"]],[4,5,["H5921"]],[5,8,["H2142","(H853)"]],[8,10,["H3068"]],[10,13,["H8605"]],[13,15,["H935"]],[15,16,["H413"]],[16,18,["H413"]],[18,20,["H6944"]],[20,21,["H1964"]]]},{"k":22556,"v":[[0,3,["H8104"]],[3,4,["H7723"]],[4,5,["H1892"]],[5,6,["H5800"]],[6,9,["H2617"]]]},{"k":22557,"v":[[0,2,["H589"]],[2,4,["H2076"]],[4,9,["H6963"]],[9,11,["H8426"]],[11,14,["H7999"]],[14,16,["H834"]],[16,19,["H5087"]],[19,20,["H3444"]],[20,24,["H3068"]]]},{"k":22558,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,7,["H1709"]],[7,11,["H6958","(H853)"]],[11,12,["H3124"]],[12,13,["H413"]],[13,15,["H3004"]],[15,16,[]]]},{"k":22559,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H3124"]],[9,12,["H8145"]],[12,13,["H559"]]]},{"k":22560,"v":[[0,1,["H6965"]],[1,2,["H1980"]],[2,3,["H413"]],[3,4,["H5210"]],[4,6,["H1419"]],[6,7,["H5892"]],[7,9,["H7121"]],[9,10,["H413"]],[10,11,["(H853)"]],[11,13,["H7150"]],[13,14,["H834"]],[14,15,["H595"]],[15,16,["H1696","H413"]],[16,17,[]]]},{"k":22561,"v":[[0,2,["H3124"]],[2,3,["H6965"]],[3,5,["H1980"]],[5,6,["H413"]],[6,7,["H5210"]],[7,11,["H1697"]],[11,14,["H3068"]],[14,16,["H5210"]],[16,17,["H1961"]],[17,19,["H430"]],[19,20,["H1419"]],[20,21,["H5892"]],[21,23,["H7969"]],[23,24,["H3117"]],[24,25,["H4109"]]]},{"k":22562,"v":[[0,2,["H3124"]],[2,3,["H2490"]],[3,5,["H935"]],[5,8,["H5892"]],[8,9,["H259"]],[9,10,["H3117"]],[10,11,["H4109"]],[11,14,["H7121"]],[14,16,["H559"]],[16,17,["H5750"]],[17,18,["H705"]],[18,19,["H3117"]],[19,21,["H5210"]],[21,24,["H2015"]]]},{"k":22563,"v":[[0,3,["H376"]],[3,5,["H5210"]],[5,6,["H539"]],[6,7,["H430"]],[7,9,["H7121"]],[9,11,["H6685"]],[11,14,["H3847"]],[14,15,["H8242"]],[15,18,["H4480","H1419"]],[18,22,["H5704"]],[22,24,["H6996"]],[24,26,[]]]},{"k":22564,"v":[[0,2,["H1697"]],[2,3,["H5060"]],[3,4,["H413"]],[4,6,["H4428"]],[6,8,["H5210"]],[8,11,["H6965"]],[11,14,["H4480","H3678"]],[14,17,["H5674"]],[17,19,["H155"]],[19,20,["H4480","H5921"]],[20,23,["H3680"]],[23,26,["H8242"]],[26,28,["H3427"]],[28,29,["H5921"]],[29,30,["H665"]]]},{"k":22565,"v":[[0,7,["H2199"]],[7,9,["H559"]],[9,11,["H5210"]],[11,14,["H4480","H2940"]],[14,17,["H4428"]],[17,20,["H1419"]],[20,21,["H559"]],[21,23,["H408"]],[23,24,["H120"]],[24,26,["H929"]],[26,27,["H1241"]],[27,29,["H6629"]],[29,30,["H2938"]],[30,32,["H3972"]],[32,35,["H408"]],[35,36,["H7462"]],[36,37,["H408"]],[37,38,["H8354"]],[38,39,["H4325"]]]},{"k":22566,"v":[[0,3,["H120"]],[3,5,["H929"]],[5,7,["H3680"]],[7,9,["H8242"]],[9,11,["H7121"]],[11,12,["H2394"]],[12,13,["H413"]],[13,14,["H430"]],[14,18,["H7725"]],[18,20,["H376"]],[20,23,["H7451"]],[23,24,["H4480","H1870"]],[24,26,["H4480"]],[26,28,["H2555"]],[28,29,["H834"]],[29,33,["H3709"]]]},{"k":22567,"v":[[0,1,["H4310"]],[1,3,["H3045"]],[3,5,["H430"]],[5,7,["H7725"]],[7,9,["H5162"]],[9,12,["H7725"]],[12,15,["H4480","H2740"]],[15,16,["H639"]],[16,19,["H6"]],[19,20,["H3808"]]]},{"k":22568,"v":[[0,2,["H430"]],[2,3,["H7200","(H853)"]],[3,5,["H4639"]],[5,6,["H3588"]],[6,8,["H7725"]],[8,11,["H7451"]],[11,12,["H4480","H1870"]],[12,14,["H430"]],[14,15,["H5162"]],[15,16,["H5921"]],[16,18,["H7451"]],[18,19,["H834"]],[19,22,["H1696"]],[22,26,["H6213"]],[26,31,["H6213"]],[31,33,["H3808"]]]},{"k":22569,"v":[[0,3,["H7489","H413"]],[3,4,["H3124"]],[4,5,["H7451","H1419"]],[5,10,["H2734"]]]},{"k":22570,"v":[[0,3,["H6419"]],[3,4,["H413"]],[4,6,["H3068"]],[6,8,["H559"]],[8,11,["H577"]],[11,13,["H3068"]],[13,15,["H3808"]],[15,16,["H2088"]],[16,18,["H1697"]],[18,21,["H1961"]],[21,22,["H5704"]],[22,23,["H5921"]],[23,25,["H127"]],[25,26,["H5921","H3651"]],[26,28,["H1272"]],[28,29,["H6923"]],[29,31,["H8659"]],[31,32,["H3588"]],[32,34,["H3045"]],[34,35,["H3588"]],[35,36,["H859"]],[36,39,["H2587"]],[39,40,["H410"]],[40,42,["H7349"]],[42,43,["H750"]],[43,45,["H639"]],[45,48,["H7227"]],[48,49,["H2617"]],[49,51,["H5162"]],[51,53,["H5921"]],[53,55,["H7451"]]]},{"k":22571,"v":[[0,2,["H6258"]],[2,4,["H3068"]],[4,5,["H3947"]],[5,8,["H4994","(H853)"]],[8,10,["H5315"]],[10,11,["H4480"]],[11,13,["H3588"]],[13,16,["H2896"]],[16,20,["H4194"]],[20,23,["H4480","H2416"]]]},{"k":22572,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,7,["H3190"]],[7,10,["H2734"]]]},{"k":22573,"v":[[0,2,["H3124"]],[2,4,["H3318"]],[4,5,["H4480"]],[5,7,["H5892"]],[7,9,["H3427"]],[9,13,["H4480","H6924"]],[13,16,["H5892"]],[16,18,["H8033"]],[18,19,["H6213"]],[19,22,["H5521"]],[22,24,["H3427"]],[24,25,["H8478"]],[25,29,["H6738"]],[29,30,["H5704"]],[30,33,["H7200"]],[33,34,["H4100"]],[34,36,["H1961"]],[36,39,["H5892"]]]},{"k":22574,"v":[[0,3,["H3068"]],[3,4,["H430"]],[4,5,["H4487"]],[5,7,["H7021"]],[7,13,["H5927"]],[13,14,["H4480","H5921"]],[14,15,["H3124"]],[15,19,["H1961"]],[19,21,["H6738"]],[21,22,["H5921"]],[22,24,["H7218"]],[24,26,["H5337"]],[26,30,["H4480","H7451"]],[30,32,["H3124"]],[32,33,["H8055"]],[33,35,["H1419","H8057"]],[35,36,["H5921"]],[36,38,["H7021"]]]},{"k":22575,"v":[[0,2,["H430"]],[2,3,["H4487"]],[3,5,["H8438"]],[5,8,["H7837"]],[8,9,["H5927"]],[9,12,["H4283"]],[12,15,["H5221","(H853)"]],[15,17,["H7021"]],[17,20,["H3001"]]]},{"k":22576,"v":[[0,5,["H1961"]],[5,8,["H8121"]],[8,10,["H2224"]],[10,12,["H430"]],[12,13,["H4487"]],[13,15,["H2759"]],[15,16,["H6921"]],[16,17,["H7307"]],[17,20,["H8121"]],[20,21,["H5221"]],[21,22,["H5921"]],[22,24,["H7218"]],[24,26,["H3124"]],[26,29,["H5968"]],[29,31,["H7592"]],[31,32,["H854"]],[32,33,["H5315"]],[33,35,["H4191"]],[35,37,["H559"]],[37,40,["H2896"]],[40,44,["H4194"]],[44,47,["H4480","H2416"]]]},{"k":22577,"v":[[0,2,["H430"]],[2,3,["H559"]],[3,4,["H413"]],[4,5,["H3124"]],[5,8,["H3190"]],[8,11,["H2734"]],[11,12,["H5921"]],[12,14,["H7021"]],[14,17,["H559"]],[17,20,["H3190"]],[20,23,["H2734"]],[23,25,["H5704"]],[25,26,["H4194"]]]},{"k":22578,"v":[[0,2,["H559"]],[2,4,["H3068"]],[4,5,["H859"]],[5,8,["H2347"]],[8,9,["H5921"]],[9,11,["H7021"]],[11,14,["H834"]],[14,17,["H3808"]],[17,18,["H5998"]],[18,19,["H3808"]],[19,22,["H1431"]],[22,25,["H1961"]],[25,26,["H7945","H1121"]],[26,28,["H3915"]],[28,30,["H6"]],[30,31,["H1121"]],[31,33,["H3915"]]]},{"k":22579,"v":[[0,3,["H3808"]],[3,4,["H589"]],[4,5,["H2347","H5921"]],[5,6,["H5210"]],[6,8,["H1419"]],[8,9,["H5892"]],[9,10,["H834"]],[10,11,["H3426"]],[11,12,["H7235"]],[12,15,["H4480","H8147","H6240","H7239"]],[15,16,["H120"]],[16,17,["H834"]],[17,18,["H3808"]],[18,19,["H3045"]],[19,20,["H996"]],[20,23,["H3225"]],[23,27,["H8040"]],[27,30,["H7227"]],[30,31,["H929"]]]},{"k":22580,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H834"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H4318"]],[9,11,["H4183"]],[11,14,["H3117"]],[14,16,["H3147"]],[16,17,["H271"]],[17,19,["H3169"]],[19,20,["H4428"]],[20,22,["H3063"]],[22,23,["H834"]],[23,25,["H2372"]],[25,26,["H5921"]],[26,27,["H8111"]],[27,29,["H3389"]]]},{"k":22581,"v":[[0,1,["H8085"]],[1,2,["H3605"]],[2,4,["H5971"]],[4,5,["H7181"]],[5,7,["H776"]],[7,12,["H4393"]],[12,16,["H136"]],[16,17,["H3069"]],[17,18,["H1961"]],[18,19,["H5707"]],[19,23,["H136"]],[23,26,["H6944"]],[26,27,["H4480","H1964"]]]},{"k":22582,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H3068"]],[4,6,["H3318"]],[6,10,["H4480","H4725"]],[10,14,["H3381"]],[14,16,["H1869"]],[16,17,["H5921"]],[17,20,["H1116"]],[20,23,["H776"]]]},{"k":22583,"v":[[0,3,["H2022"]],[3,6,["H4549"]],[6,7,["H8478"]],[7,11,["H6010"]],[11,14,["H1234"]],[14,16,["H1749"]],[16,17,["H4480","H6440"]],[17,19,["H784"]],[19,23,["H4325"]],[23,27,["H5064"]],[27,30,["H4174"]]]},{"k":22584,"v":[[0,3,["H6588"]],[3,5,["H3290"]],[5,7,["H3605"]],[7,8,["H2063"]],[8,12,["H2403"]],[12,15,["H1004"]],[15,17,["H3478"]],[17,18,["H4310"]],[18,21,["H6588"]],[21,23,["H3290"]],[23,26,["H3808"]],[26,27,["H8111"]],[27,29,["H4310"]],[29,33,["H1116"]],[33,35,["H3063"]],[35,38,["H3808"]],[38,39,["H3389"]]]},{"k":22585,"v":[[0,4,["H7760"]],[4,5,["H8111"]],[5,8,["H5856"]],[8,11,["H7704"]],[11,14,["H4302"]],[14,17,["H3754"]],[17,22,["H5064"]],[22,24,["H68"]],[24,28,["H1516"]],[28,32,["H1540"]],[32,34,["H3247"]],[34,35,[]]]},{"k":22586,"v":[[0,2,["H3605"]],[2,5,["H6456"]],[5,11,["H3807"]],[11,13,["H3605"]],[13,15,["H868"]],[15,19,["H8313"]],[19,22,["H784"]],[22,24,["H3605"]],[24,26,["H6091"]],[26,30,["H7760"]],[30,31,["H8077"]],[31,32,["H3588"]],[32,34,["H6908"]],[34,38,["H4480","H868"]],[38,41,["H2181"]],[41,45,["H7725"]],[45,46,["H5704"]],[46,48,["H868"]],[48,51,["H2181"]]]},{"k":22587,"v":[[0,1,["H5921","H2063"]],[1,4,["H5594"]],[4,6,["H3213"]],[6,9,["H1980"]],[9,10,["H7758"]],[10,12,["H6174"]],[12,15,["H6213"]],[15,17,["H4553"]],[17,20,["H8568"]],[20,22,["H60"]],[22,25,["H1323","H3284"]]]},{"k":22588,"v":[[0,1,["H3588"]],[1,3,["H4347"]],[3,5,["H605"]],[5,6,["H3588"]],[6,9,["H935"]],[9,10,["H5704"]],[10,11,["H3063"]],[11,14,["H5060"]],[14,15,["H5704"]],[15,17,["H8179"]],[17,20,["H5971"]],[20,22,["H5704"]],[22,23,["H3389"]]]},{"k":22589,"v":[[0,1,["H5046"]],[1,4,["H408"]],[4,6,["H1661"]],[6,11,["H1058","H408","H1058"]],[11,14,["H1004"]],[14,16,["H1036"]],[16,18,["H6428"]],[18,21,["H6083"]]]},{"k":22590,"v":[[0,3,["H5674"]],[3,5,["H3427"]],[5,7,["H8208"]],[7,10,["H1322"]],[10,11,["H6181"]],[11,13,["H3427"]],[13,15,["H6630"]],[15,18,["H3318","H3808"]],[18,21,["H4553"]],[21,23,["H1018"]],[23,26,["H3947"]],[26,27,["H4480"]],[27,30,["H5979"]]]},{"k":22591,"v":[[0,1,["H3588"]],[1,3,["H3427"]],[3,5,["H4796"]],[5,7,["H2470"]],[7,9,["H2896"]],[9,10,["H3588"]],[10,11,["H7451"]],[11,13,["H3381"]],[13,14,["H4480","H854"]],[14,16,["H3068"]],[16,19,["H8179"]],[19,21,["H3389"]]]},{"k":22592,"v":[[0,3,["H3427"]],[3,5,["H3923"]],[5,6,["H7573"]],[6,8,["H4818"]],[8,12,["H7409"]],[12,13,["H1931"]],[13,16,["H7225"]],[16,19,["H2403"]],[19,22,["H1323"]],[22,24,["H6726"]],[24,25,["H3588"]],[25,27,["H6588"]],[27,29,["H3478"]],[29,31,["H4672"]],[31,33,[]]]},{"k":22593,"v":[[0,1,["H3651"]],[1,4,["H5414"]],[4,5,["H7964"]],[5,6,["H5921"]],[6,7,["H4182"]],[7,9,["H1004"]],[9,11,["H392"]],[11,15,["H391"]],[15,18,["H4428"]],[18,20,["H3478"]]]},{"k":22594,"v":[[0,1,["H5750"]],[1,4,["H935"]],[4,6,["H3423"]],[6,10,["H3427"]],[10,12,["H4762"]],[12,15,["H935"]],[15,16,["H5704"]],[16,17,["H5725"]],[17,19,["H3519"]],[19,21,["H3478"]]]},{"k":22595,"v":[[0,3,["H7139"]],[3,5,["H1494"]],[5,7,["H5921"]],[7,9,["H8588"]],[9,10,["H1121"]],[10,11,["H7337"]],[11,13,["H7144"]],[13,16,["H5404"]],[16,17,["H3588"]],[17,22,["H1540"]],[22,23,["H4480"]],[23,24,[]]]},{"k":22596,"v":[[0,1,["H1945"]],[1,5,["H2803"]],[5,6,["H205"]],[6,8,["H6466"]],[8,9,["H7451"]],[9,10,["H5921"]],[10,12,["H4904"]],[12,15,["H1242"]],[15,17,["H216"]],[17,19,["H6213"]],[19,21,["H3588"]],[21,23,["H3426"]],[23,26,["H410"]],[26,29,["H3027"]]]},{"k":22597,"v":[[0,3,["H2530"]],[3,4,["H7704"]],[4,9,["H1497"]],[9,11,["H1004"]],[11,15,["H5375"]],[15,18,["H6231"]],[18,20,["H1397"]],[20,23,["H1004"]],[23,26,["H376"]],[26,29,["H5159"]]]},{"k":22598,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,6,["H2009"]],[6,7,["H5921"]],[7,8,["H2063"]],[8,9,["H4940"]],[9,12,["H2803"]],[12,14,["H7451"]],[14,15,["H4480","H8033"]],[15,16,["H834"]],[16,19,["H3808"]],[19,20,["H4185"]],[20,22,["H6677"]],[22,23,["H3808"]],[23,26,["H1980"]],[26,27,["H7317"]],[27,28,["H3588"]],[28,29,["H1931"]],[29,30,["H6256"]],[30,32,["H7451"]]]},{"k":22599,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,7,["H5375"]],[7,9,["H4912"]],[9,10,["H5921"]],[10,13,["H5091"]],[13,16,["H5093"]],[16,17,["H5092"]],[17,19,["H559"]],[19,21,["H1961"]],[21,23,["H7703","H7703"]],[23,26,["H4171"]],[26,28,["H2506"]],[28,31,["H5971"]],[31,32,["H349"]],[32,35,["H4185"]],[35,40,["H7728"]],[40,43,["H2505"]],[43,45,["H7704"]]]},{"k":22600,"v":[[0,1,["H3651"]],[1,4,["H1961"]],[4,5,["H3808"]],[5,8,["H7993"]],[8,10,["H2256"]],[10,12,["H1486"]],[12,15,["H6951"]],[15,18,["H3068"]]]},{"k":22601,"v":[[0,1,["H5197"]],[1,3,["H408"]],[3,9,["H5197"]],[9,12,["H3808"]],[12,13,["H5197"]],[13,15,["H428"]],[15,19,["H3808"]],[19,20,["H5253"]],[20,21,["H3639"]]]},{"k":22602,"v":[[0,5,["H559"]],[5,7,["H1004"]],[7,9,["H3290"]],[9,12,["H7307"]],[12,15,["H3068"]],[15,16,["H7114"]],[16,18,["H428"]],[18,20,["H4611"]],[20,22,["H3808"]],[22,24,["H1697"]],[24,26,["H3190"]],[26,27,["H5973"]],[27,30,["H1980"]],[30,31,["H3477"]]]},{"k":22603,"v":[[0,3,["H865"]],[3,5,["H5971"]],[5,8,["H6965"]],[8,11,["H341"]],[11,14,["H6584"]],[14,16,["H145"]],[16,17,["H4480","H4136"]],[17,19,["H8008"]],[19,24,["H4480","H5674"]],[24,25,["H983"]],[25,28,["H7725"]],[28,30,["H4421"]]]},{"k":22604,"v":[[0,2,["H802"]],[2,5,["H5971"]],[5,9,["H1644"]],[9,12,["H8588"]],[12,13,["H4480","H1004"]],[13,14,["H4480","H5921"]],[14,16,["H5768"]],[16,20,["H3947"]],[20,22,["H1926"]],[22,24,["H5769"]]]},{"k":22605,"v":[[0,1,["H6965"]],[1,4,["H1980"]],[4,5,["H3588"]],[5,6,["H2063"]],[6,8,["H3808"]],[8,10,["H4496"]],[10,11,["H5668"]],[11,14,["H2930"]],[14,17,["H2254"]],[17,22,["H4834"]],[22,23,["H2256"]]]},{"k":22606,"v":[[0,1,["H3863"]],[1,3,["H376"]],[3,4,["H1980"]],[4,7,["H7307"]],[7,9,["H8267"]],[9,11,["H3576"]],[11,15,["H5197"]],[15,19,["H3196"]],[19,23,["H7941"]],[23,27,["H1961"]],[27,29,["H5197"]],[29,31,["H2088"]],[31,32,["H5971"]]]},{"k":22607,"v":[[0,4,["H622","H622"]],[4,6,["H3290"]],[6,7,["H3605"]],[7,13,["H6908","H6908"]],[13,15,["H7611"]],[15,17,["H3478"]],[17,20,["H7760"]],[20,22,["H3162"]],[22,25,["H6629"]],[25,27,["H1223"]],[27,30,["H5739"]],[30,33,["H8432"]],[33,36,["H1699"]],[36,41,["H1949"]],[41,48,["H4480","H120"]]]},{"k":22608,"v":[[0,2,["H6555"]],[2,5,["H5927"]],[5,6,["H6440"]],[6,11,["H6555"]],[11,15,["H5674"]],[15,17,["H8179"]],[17,21,["H3318"]],[21,26,["H4428"]],[26,28,["H5674"]],[28,29,["H6440"]],[29,33,["H3068"]],[33,36,["H7218"]],[36,38,[]]]},{"k":22609,"v":[[0,3,["H559"]],[3,4,["H8085"]],[4,7,["H4994"]],[7,9,["H7218"]],[9,11,["H3290"]],[11,14,["H7101"]],[14,17,["H1004"]],[17,19,["H3478"]],[19,22,["H3808"]],[22,26,["H3045","(H853)"]],[26,27,["H4941"]]]},{"k":22610,"v":[[0,2,["H8130"]],[2,4,["H2896"]],[4,6,["H157"]],[6,8,["H7451"]],[8,11,["H1497"]],[11,13,["H5785"]],[13,15,["H4480","H5921"]],[15,19,["H7607"]],[19,21,["H4480","H5921"]],[21,23,["H6106"]]]},{"k":22611,"v":[[0,1,["H834"]],[1,3,["H398"]],[3,5,["H7607"]],[5,8,["H5971"]],[8,10,["H6584"]],[10,12,["H5785"]],[12,14,["H4480","H5921"]],[14,18,["H6476"]],[18,20,["H6106"]],[20,25,["H6566"]],[25,26,["H834"]],[26,29,["H5518"]],[29,32,["H1320"]],[32,33,["H8432"]],[33,35,["H7037"]]]},{"k":22612,"v":[[0,1,["H227"]],[1,4,["H2199"]],[4,5,["H413"]],[5,7,["H3068"]],[7,11,["H3808"]],[11,12,["H6030"]],[12,17,["H5641"]],[17,19,["H6440"]],[19,20,["H4480"]],[20,23,["H1931"]],[23,24,["H6256"]],[24,25,["H834"]],[25,30,["H7489"]],[30,33,["H4611"]]]},{"k":22613,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H5921"]],[5,7,["H5030"]],[7,9,["(H853)"]],[9,11,["H5971"]],[11,12,["H8582"]],[12,14,["H5391"]],[14,17,["H8127"]],[17,19,["H7121"]],[19,20,["H7965"]],[20,23,["H834"]],[23,24,["H5414"]],[24,25,["H3808"]],[25,26,["H5921"]],[26,28,["H6310"]],[28,31,["H6942"]],[31,32,["H4421"]],[32,33,["H5921"]],[33,34,[]]]},{"k":22614,"v":[[0,1,["H3651"]],[1,2,["H3915"]],[2,13,["H4480","H2377"]],[13,18,["H2821"]],[18,25,["H4480","H7080"]],[25,28,["H8121"]],[28,31,["H935"]],[31,32,["H5921"]],[32,34,["H5030"]],[34,37,["H3117"]],[37,40,["H6937"]],[40,41,["H5921"]],[41,42,[]]]},{"k":22615,"v":[[0,4,["H2374"]],[4,6,["H954"]],[6,9,["H7080"]],[9,10,["H2659"]],[10,14,["H3605"]],[14,15,["H5844","H5921"]],[15,17,["H8222"]],[17,18,["H3588"]],[18,21,["H369"]],[21,22,["H4617"]],[22,24,["H430"]]]},{"k":22616,"v":[[0,2,["H199"]],[2,3,["H595"]],[3,5,["H4390"]],[5,7,["H3581"]],[7,8,["H854"]],[8,10,["H7307"]],[10,13,["H3068"]],[13,16,["H4941"]],[16,19,["H1369"]],[19,21,["H5046"]],[21,23,["H3290"]],[23,25,["H6588"]],[25,28,["H3478"]],[28,30,["H2403"]]]},{"k":22617,"v":[[0,1,["H8085"]],[1,2,["H2063"]],[2,5,["H4994"]],[5,7,["H7218"]],[7,10,["H1004"]],[10,12,["H3290"]],[12,14,["H7101"]],[14,17,["H1004"]],[17,19,["H3478"]],[19,21,["H8581"]],[21,22,["H4941"]],[22,24,["H6140"]],[24,25,["H3605"]],[25,26,["H3477"]]]},{"k":22618,"v":[[0,3,["H1129"]],[3,4,["H6726"]],[4,6,["H1818"]],[6,8,["H3389"]],[8,10,["H5766"]]]},{"k":22619,"v":[[0,2,["H7218"]],[2,4,["H8199"]],[4,6,["H7810"]],[6,9,["H3548"]],[9,11,["H3384"]],[11,13,["H4242"]],[13,16,["H5030"]],[16,18,["H7080"]],[18,20,["H3701"]],[20,24,["H8172"]],[24,25,["H5921"]],[25,27,["H3068"]],[27,29,["H559"]],[29,31,["H3808"]],[31,33,["H3068"]],[33,34,["H7130"]],[34,36,["H3808"]],[36,37,["H7451"]],[37,39,["H935"]],[39,40,["H5921"]],[40,41,[]]]},{"k":22620,"v":[[0,1,["H3651"]],[1,3,["H6726"]],[3,6,["H1558"]],[6,8,["H2790"]],[8,11,["H7704"]],[11,13,["H3389"]],[13,15,["H1961"]],[15,16,["H5856"]],[16,19,["H2022"]],[19,22,["H1004"]],[22,26,["H1116"]],[26,29,["H3293"]]]},{"k":22621,"v":[[0,4,["H319"]],[4,5,["H3117"]],[5,10,["H1961"]],[10,13,["H2022"]],[13,16,["H1004"]],[16,19,["H3068"]],[19,21,["H1961"]],[21,22,["H3559"]],[22,25,["H7218"]],[25,28,["H2022"]],[28,30,["H1931"]],[30,33,["H5375"]],[33,36,["H4480","H1389"]],[36,38,["H5971"]],[38,40,["H5102"]],[40,41,["H5921"]],[41,42,[]]]},{"k":22622,"v":[[0,2,["H7227"]],[2,3,["H1471"]],[3,5,["H1980"]],[5,7,["H559"]],[7,8,["H1980"]],[8,13,["H5927"]],[13,14,["H413"]],[14,16,["H2022"]],[16,19,["H3068"]],[19,21,["H413"]],[21,23,["H1004"]],[23,26,["H430"]],[26,28,["H3290"]],[28,32,["H3384"]],[32,36,["H4480","H1870"]],[36,40,["H1980"]],[40,43,["H734"]],[43,44,["H3588"]],[44,46,["H8451"]],[46,49,["H3318"]],[49,51,["H4480","H6726"]],[51,54,["H1697"]],[54,57,["H3068"]],[57,59,["H4480","H3389"]]]},{"k":22623,"v":[[0,4,["H8199"]],[4,5,["H996"]],[5,6,["H7227"]],[6,7,["H5971"]],[7,9,["H3198"]],[9,10,["H6099"]],[10,11,["H1471"]],[11,13,["H5704","H7350"]],[13,17,["H3807"]],[17,19,["H2719"]],[19,21,["H855"]],[21,24,["H2595"]],[24,26,["H4211"]],[26,27,["H1471"]],[27,29,["H3808"]],[29,31,["H5375"]],[31,33,["H2719"]],[33,34,["H413"]],[34,35,["H1471"]],[35,36,["H3808"]],[36,39,["H3925"]],[39,40,["H4421"]],[40,42,["H5750"]]]},{"k":22624,"v":[[0,4,["H3427"]],[4,6,["H376"]],[6,7,["H8478"]],[7,9,["H1612"]],[9,11,["H8478"]],[11,14,["H8384"]],[14,16,["H369"]],[16,20,["H2729"]],[20,21,["H3588"]],[21,23,["H6310"]],[23,26,["H3068"]],[26,28,["H6635"]],[28,30,["H1696"]],[30,31,[]]]},{"k":22625,"v":[[0,1,["H3588"]],[1,2,["H3605"]],[2,3,["H5971"]],[3,5,["H1980"]],[5,7,["H376"]],[7,10,["H8034"]],[10,13,["H430"]],[13,15,["H587"]],[15,17,["H1980"]],[17,20,["H8034"]],[20,23,["H3068"]],[23,25,["H430"]],[25,27,["H5769"]],[27,29,["H5703"]]]},{"k":22626,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,4,["H5002"]],[4,6,["H3068"]],[6,9,["H622"]],[9,12,["H6760"]],[12,16,["H6908"]],[16,21,["H5080"]],[21,24,["H834"]],[24,27,["H7489"]]]},{"k":22627,"v":[[0,4,["H7760","(H853)"]],[4,7,["H6760"]],[7,9,["H7611"]],[9,16,["H1972"]],[16,18,["H6099"]],[18,19,["H1471"]],[19,22,["H3068"]],[22,24,["H4427"]],[24,25,["H5921"]],[25,28,["H2022"]],[28,29,["H6726"]],[29,31,["H4480","H6258"]],[31,34,["H5704","H5769"]]]},{"k":22628,"v":[[0,2,["H859"]],[2,4,["H4026"]],[4,7,["H5739"]],[7,10,["H6076"]],[10,13,["H1323"]],[13,15,["H6726"]],[15,16,["H5704"]],[16,20,["H857"]],[20,23,["H7223"]],[23,24,["H4475"]],[24,26,["H4467"]],[26,28,["H935"]],[28,31,["H1323"]],[31,33,["H3389"]]]},{"k":22629,"v":[[0,1,["H6258"]],[1,2,["H4100"]],[2,6,["H7321"]],[6,7,["H7452"]],[7,10,["H369"]],[10,11,["H4428"]],[11,16,["H3289"]],[16,17,["H6"]],[17,18,["H3588"]],[18,19,["H2427"]],[19,21,["H2388"]],[21,27,["H3205"]]]},{"k":22630,"v":[[0,3,["H2342"]],[3,8,["H1518"]],[8,10,["H1323"]],[10,12,["H6726"]],[12,17,["H3205"]],[17,18,["H3588"]],[18,19,["H6258"]],[19,23,["H3318"]],[23,27,["H4480","H7151"]],[27,31,["H7931"]],[31,34,["H7704"]],[34,38,["H935"]],[38,40,["H5704"]],[40,41,["H894"]],[41,42,["H8033"]],[42,46,["H5337"]],[46,47,["H8033"]],[47,49,["H3068"]],[49,51,["H1350"]],[51,55,["H4480","H3709"]],[55,58,["H341"]]]},{"k":22631,"v":[[0,1,["H6258"]],[1,3,["H7227"]],[3,4,["H1471"]],[4,6,["H622"]],[6,7,["H5921"]],[7,10,["H559"]],[10,14,["H2610"]],[14,18,["H5869"]],[18,19,["H2372"]],[19,21,["H6726"]]]},{"k":22632,"v":[[0,2,["H1992"]],[2,3,["H3045"]],[3,4,["H3808"]],[4,6,["H4284"]],[6,9,["H3068"]],[9,10,["H3808"]],[10,11,["H995"]],[11,14,["H6098"]],[14,15,["H3588"]],[15,18,["H6908"]],[18,22,["H5995"]],[22,25,["H1637"]]]},{"k":22633,"v":[[0,1,["H6965"]],[1,3,["H1758"]],[3,5,["H1323"]],[5,7,["H6726"]],[7,8,["H3588"]],[8,11,["H7760"]],[11,13,["H7161"]],[13,14,["H1270"]],[14,18,["H7760"]],[18,20,["H6541"]],[20,21,["H5154"]],[21,27,["H1854"]],[27,28,["H7227"]],[28,29,["H5971"]],[29,33,["H2763"]],[33,35,["H1215"]],[35,38,["H3068"]],[38,41,["H2428"]],[41,44,["H113"]],[44,47,["H3605"]],[47,48,["H776"]]]},{"k":22634,"v":[[0,1,["H6258"]],[1,5,["H1413"]],[5,7,["H1323"]],[7,9,["H1416"]],[9,12,["H7760"]],[12,13,["H4692"]],[13,14,["H5921"]],[14,18,["H5221","(H853)"]],[18,20,["H8199"]],[20,22,["H3478"]],[22,25,["H7626"]],[25,26,["H5921"]],[26,28,["H3895"]]]},{"k":22635,"v":[[0,2,["H859"]],[2,3,["H1035"]],[3,4,["H672"]],[4,7,["H1961"]],[7,8,["H6810"]],[8,11,["H505"]],[11,13,["H3063"]],[13,16,["H4480"]],[16,21,["H3318"]],[21,27,["H1961"]],[27,28,["H4910"]],[28,30,["H3478"]],[30,33,["H4163"]],[33,38,["H4480","H6924"]],[38,40,["H4480","H3117","H5769"]]]},{"k":22636,"v":[[0,1,["H3651"]],[1,6,["H5414"]],[6,7,["H5704"]],[7,9,["H6256"]],[9,13,["H3205"]],[13,16,["H3205"]],[16,19,["H3499"]],[19,22,["H251"]],[22,24,["H7725"]],[24,25,["H5921"]],[25,27,["H1121"]],[27,29,["H3478"]]]},{"k":22637,"v":[[0,4,["H5975"]],[4,6,["H7462"]],[6,9,["H5797"]],[9,12,["H3068"]],[12,15,["H1347"]],[15,18,["H8034"]],[18,21,["H3068"]],[21,23,["H430"]],[23,27,["H3427"]],[27,28,["H3588"]],[28,29,["H6258"]],[29,33,["H1431"]],[33,34,["H5704"]],[34,36,["H657"]],[36,39,["H776"]]]},{"k":22638,"v":[[0,2,["H2088"]],[2,5,["H1961"]],[5,7,["H7965"]],[7,8,["H3588"]],[8,10,["H804"]],[10,12,["H935"]],[12,15,["H776"]],[15,17,["H3588"]],[17,20,["H1869"]],[20,23,["H759"]],[23,27,["H6965"]],[27,28,["H5921"]],[28,30,["H7651"]],[30,31,["H7462"]],[31,33,["H8083"]],[33,34,["H5257"]],[34,35,["H120"]]]},{"k":22639,"v":[[0,4,["H7489","(H853)"]],[4,6,["H776"]],[6,8,["H804"]],[8,11,["H2719"]],[11,14,["H776"]],[14,16,["H5248"]],[16,19,["H6607"]],[19,24,["H5337"]],[24,26,["H4480"]],[26,28,["H804"]],[28,29,["H3588"]],[29,31,["H935"]],[31,34,["H776"]],[34,36,["H3588"]],[36,38,["H1869"]],[38,41,["H1366"]]]},{"k":22640,"v":[[0,3,["H7611"]],[3,5,["H3290"]],[5,7,["H1961"]],[7,10,["H7130"]],[10,12,["H7227"]],[12,13,["H5971"]],[13,16,["H2919"]],[16,17,["H4480","H854"]],[17,19,["H3068"]],[19,22,["H7241"]],[22,23,["H5921"]],[23,25,["H6212"]],[25,26,["H834"]],[26,27,["H6960"]],[27,28,["H3808"]],[28,30,["H376"]],[30,31,["H3808"]],[31,32,["H3176"]],[32,35,["H1121"]],[35,37,["H120"]]]},{"k":22641,"v":[[0,3,["H7611"]],[3,5,["H3290"]],[5,7,["H1961"]],[7,10,["H1471"]],[10,13,["H7130"]],[13,15,["H7227"]],[15,16,["H5971"]],[16,19,["H738"]],[19,22,["H929"]],[22,25,["H3293"]],[25,29,["H3715"]],[29,32,["H5739"]],[32,34,["H6629"]],[34,35,["H834"]],[35,36,["H518"]],[36,39,["H5674"]],[39,42,["H7429"]],[42,46,["H2963"]],[46,48,["H369"]],[48,50,["H5337"]]]},{"k":22642,"v":[[0,2,["H3027"]],[2,6,["H7311"]],[6,7,["H5921"]],[7,9,["H6862"]],[9,11,["H3605"]],[11,13,["H341"]],[13,17,["H3772"]]]},{"k":22643,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,10,["H5002"]],[10,12,["H3068"]],[12,17,["H3772"]],[17,19,["H5483"]],[19,23,["H4480","H7130"]],[23,29,["H6"]],[29,31,["H4818"]]]},{"k":22644,"v":[[0,5,["H3772"]],[5,7,["H5892"]],[7,10,["H776"]],[10,13,["H2040"]],[13,14,["H3605"]],[14,17,["H4013"]]]},{"k":22645,"v":[[0,5,["H3772"]],[5,6,["H3785"]],[6,10,["H4480","H3027"]],[10,14,["H1961"]],[14,15,["H3808"]],[15,17,["H6049"]]]},{"k":22646,"v":[[0,3,["H6456"]],[3,8,["H3772"]],[8,12,["H4676"]],[12,16,["H4480","H7130"]],[16,22,["H3808"]],[22,23,["H5750"]],[23,24,["H7812"]],[24,26,["H4639"]],[26,29,["H3027"]]]},{"k":22647,"v":[[0,5,["H5428"]],[5,7,["H842"]],[7,11,["H4480","H7130"]],[11,17,["H8045"]],[17,19,["H5892"]]]},{"k":22648,"v":[[0,4,["H6213"]],[4,5,["H5359"]],[5,7,["H639"]],[7,9,["H2534"]],[9,10,["(H853)"]],[10,12,["H1471"]],[12,14,["H834"]],[14,17,["H3808"]],[17,18,["H8085"]]]},{"k":22649,"v":[[0,1,["H8085"]],[1,3,["H4994","(H853)"]],[3,4,["H834"]],[4,6,["H3068"]],[6,7,["H559"]],[7,8,["H6965"]],[8,9,["H7378"]],[9,11,["H854"]],[11,13,["H2022"]],[13,17,["H1389"]],[17,18,["H8085"]],[18,20,["H6963"]]]},{"k":22650,"v":[[0,1,["H8085"]],[1,4,["H2022","(H853)"]],[4,6,["H3068"]],[6,7,["H7379"]],[7,10,["H386"]],[10,11,["H4146"]],[11,14,["H776"]],[14,15,["H3588"]],[15,17,["H3068"]],[17,20,["H7379"]],[20,21,["H5973"]],[21,23,["H5971"]],[23,27,["H3198"]],[27,28,["H5973"]],[28,29,["H3478"]]]},{"k":22651,"v":[[0,3,["H5971"]],[3,4,["H4100"]],[4,7,["H6213"]],[7,11,["H4100"]],[11,14,["H3811"]],[14,16,["H6030"]],[16,18,[]]]},{"k":22652,"v":[[0,1,["H3588"]],[1,5,["H5927"]],[5,9,["H4480","H776"]],[9,11,["H4714"]],[11,13,["H6299"]],[13,18,["H4480","H1004"]],[18,20,["H5650"]],[20,23,["H7971"]],[23,24,["H6440"]],[24,25,["(H853)"]],[25,26,["H4872"]],[26,27,["H175"]],[27,29,["H4813"]]]},{"k":22653,"v":[[0,3,["H5971"]],[3,4,["H2142"]],[4,5,["H4994"]],[5,6,["H4100"]],[6,7,["H1111"]],[7,8,["H4428"]],[8,10,["H4124"]],[10,11,["H3289"]],[11,13,["H4100"]],[13,14,["H1109"]],[14,16,["H1121"]],[16,18,["H1160"]],[18,19,["H6030"]],[19,21,["H4480"]],[21,22,["H7851"]],[22,23,["H5704"]],[23,24,["H1537"]],[24,25,["H4616"]],[25,28,["H3045"]],[28,30,["H6666"]],[30,33,["H3068"]]]},{"k":22654,"v":[[0,1,["H4100"]],[1,5,["H6923"]],[5,7,["H3068"]],[7,10,["H3721"]],[10,13,["H4791"]],[13,14,["H430"]],[14,18,["H6923"]],[18,22,["H5930"]],[22,24,["H5695"]],[24,27,["H8141"]],[27,28,["H1121"]]]},{"k":22655,"v":[[0,3,["H3068"]],[3,5,["H7521"]],[5,7,["H505"]],[7,9,["H352"]],[9,13,["H7233"]],[13,15,["H5158"]],[15,17,["H8081"]],[17,20,["H5414"]],[20,22,["H1060"]],[22,25,["H6588"]],[25,27,["H6529"]],[27,30,["H990"]],[30,33,["H2403"]],[33,36,["H5315"]]]},{"k":22656,"v":[[0,3,["H5046"]],[3,6,["H120"]],[6,7,["H4100"]],[7,9,["H2896"]],[9,11,["H4100"]],[11,14,["H3068"]],[14,15,["H1875"]],[15,16,["H4480"]],[16,18,["H3588","H518"]],[18,20,["H6213"]],[20,21,["H4941"]],[21,24,["H157"]],[24,25,["H2617"]],[25,28,["H1980"]],[28,29,["H6800"]],[29,30,["H5973"]],[30,32,["H430"]]]},{"k":22657,"v":[[0,2,["H3068"]],[2,3,["H6963"]],[3,4,["H7121"]],[4,7,["H5892"]],[7,12,["H8454"]],[12,14,["H7200"]],[14,16,["H8034"]],[16,17,["H8085"]],[17,20,["H4294"]],[20,22,["H4310"]],[22,24,["H3259"]],[24,25,[]]]},{"k":22658,"v":[[0,2,["H786"]],[2,3,["H5750"]],[3,5,["H214"]],[5,7,["H7562"]],[7,10,["H1004"]],[10,13,["H7563"]],[13,16,["H7332"]],[16,17,["H374"]],[17,20,["H2194"]]]},{"k":22659,"v":[[0,5,["H2135"]],[5,8,["H7562"]],[8,9,["H3976"]],[9,13,["H3599"]],[13,15,["H4820"]],[15,16,["H68"]]]},{"k":22660,"v":[[0,1,["H834"]],[1,4,["H6223"]],[4,7,["H4390"]],[7,9,["H2555"]],[9,12,["H3427"]],[12,15,["H1696"]],[15,16,["H8267"]],[16,19,["H3956"]],[19,21,["H7423"]],[21,24,["H6310"]]]},{"k":22661,"v":[[0,2,["H1571"]],[2,4,["H589"]],[4,7,["H2470"]],[7,9,["H5221"]],[9,14,["H8074"]],[14,16,["H5921"]],[16,18,["H2403"]]]},{"k":22662,"v":[[0,1,["H859"]],[1,3,["H398"]],[3,5,["H3808"]],[5,7,["H7646"]],[7,11,["H3445"]],[11,16,["H7130"]],[16,23,["H5253"]],[23,26,["H3808"]],[26,27,["H6403"]],[27,30,["H834"]],[30,32,["H6403"]],[32,36,["H5414"]],[36,39,["H2719"]]]},{"k":22663,"v":[[0,1,["H859"]],[1,3,["H2232"]],[3,7,["H3808"]],[7,8,["H7114"]],[8,9,["H859"]],[9,11,["H1869"]],[11,13,["H2132"]],[13,17,["H3808"]],[17,18,["H5480"]],[18,21,["H8081"]],[21,24,["H8492"]],[24,27,["H3808"]],[27,28,["H8354"]],[28,29,["H3196"]]]},{"k":22664,"v":[[0,3,["H2708"]],[3,5,["H6018"]],[5,7,["H8104"]],[7,9,["H3605"]],[9,11,["H4639"]],[11,14,["H1004"]],[14,16,["H256"]],[16,19,["H1980"]],[19,22,["H4156"]],[22,23,["H4616"]],[23,26,["H5414"]],[26,29,["H8047"]],[29,32,["H3427"]],[32,35,["H8322"]],[35,39,["H5375"]],[39,41,["H2781"]],[41,44,["H5971"]]]},{"k":22665,"v":[[0,1,["H480"]],[1,4,["H3588"]],[4,6,["H1961"]],[6,11,["H625"]],[11,14,["H7019"]],[14,17,["H5955"]],[17,20,["H1210"]],[20,23,["H369"]],[23,24,["H811"]],[24,26,["H398"]],[26,28,["H5315"]],[28,29,["H183"]],[29,32,["H1063"]]]},{"k":22666,"v":[[0,2,["H2623"]],[2,5,["H6"]],[5,7,["H4480"]],[7,9,["H776"]],[9,13,["H369"]],[13,14,["H3477"]],[14,16,["H120"]],[16,18,["H3605"]],[18,21,["H693"]],[21,23,["H1818"]],[23,25,["H6679"]],[25,27,["H376","(H853)"]],[27,29,["H251"]],[29,32,["H2764"]]]},{"k":22667,"v":[[0,5,["H5921","H7451"]],[5,8,["H3709"]],[8,9,["H3190"]],[9,11,["H8269"]],[11,12,["H7592"]],[12,15,["H8199"]],[15,19,["H7966"]],[19,22,["H1419"]],[22,24,["H1931"]],[24,25,["H1696"]],[25,27,["H1942"]],[27,28,["H5315"]],[28,33,["H5686"]]]},{"k":22668,"v":[[0,2,["H2896"]],[2,8,["H2312"]],[8,11,["H3477"]],[11,17,["H4480","H4534"]],[17,19,["H3117"]],[19,22,["H6822"]],[22,25,["H6486"]],[25,26,["H935"]],[26,27,["H6258"]],[27,29,["H1961"]],[29,31,["H3998"]]]},{"k":22669,"v":[[0,1,["H539"]],[1,3,["H408"]],[3,6,["H7453"]],[6,10,["H982","H408"]],[10,13,["H441"]],[13,14,["H8104"]],[14,16,["H6607"]],[16,19,["H6310"]],[19,23,["H4480","H7901"]],[23,26,["H2436"]]]},{"k":22670,"v":[[0,1,["H3588"]],[1,3,["H1121"]],[3,4,["H5034"]],[4,6,["H1"]],[6,8,["H1323"]],[8,10,["H6965"]],[10,13,["H517"]],[13,17,["H3618"]],[17,22,["H2545"]],[22,24,["H376"]],[24,25,["H341"]],[25,28,["H376"]],[28,32,["H1004"]]]},{"k":22671,"v":[[0,2,["H589"]],[2,4,["H6822"]],[4,7,["H3068"]],[7,10,["H3176"]],[10,13,["H430"]],[13,16,["H3468"]],[16,18,["H430"]],[18,20,["H8085"]],[20,21,[]]]},{"k":22672,"v":[[0,1,["H8055"]],[1,2,["H408"]],[2,7,["H341"]],[7,8,["H3588"]],[8,10,["H5307"]],[10,13,["H6965"]],[13,14,["H3588"]],[14,16,["H3427"]],[16,18,["H2822"]],[18,20,["H3068"]],[20,24,["H216"]],[24,26,[]]]},{"k":22673,"v":[[0,3,["H5375"]],[3,5,["H2197"]],[5,8,["H3068"]],[8,9,["H3588"]],[9,12,["H2398"]],[12,15,["H5704"]],[15,17,["H7378"]],[17,19,["H7379"]],[19,21,["H6213"]],[21,22,["H4941"]],[22,29,["H3318"]],[29,32,["H216"]],[32,36,["H7200"]],[36,38,["H6666"]]]},{"k":22674,"v":[[0,6,["H341"]],[6,8,["H7200"]],[8,11,["H955"]],[11,13,["H3680"]],[13,16,["H559"]],[16,17,["H413"]],[17,19,["H346"]],[19,22,["H3068"]],[22,24,["H430"]],[24,26,["H5869"]],[26,28,["H7200"]],[28,30,["H6258"]],[30,33,["H1961"]],[33,35,["H4823"]],[35,38,["H2916"]],[38,41,["H2351"]]]},{"k":22675,"v":[[0,3,["H3117"]],[3,6,["H1447"]],[6,10,["H1129"]],[10,12,["H1931"]],[12,13,["H3117"]],[13,16,["H2706"]],[16,19,["H7368"]]]},{"k":22676,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,7,["H935"]],[7,9,["H5704"]],[9,11,["H4480"]],[11,12,["H804"]],[12,16,["H4693"]],[16,17,["H5892"]],[17,19,["H4480"]],[19,21,["H4693"]],[21,23,["H5704"]],[23,25,["H5104"]],[25,28,["H3220"]],[28,30,["H4480","H3220"]],[30,33,["H2022"]],[33,35,["H2022"]]]},{"k":22677,"v":[[0,3,["H776"]],[3,5,["H1961"]],[5,6,["H8077"]],[6,8,["H5921"]],[8,11,["H3427"]],[11,15,["H4480","H6529"]],[15,18,["H4611"]]]},{"k":22678,"v":[[0,1,["H7462"]],[1,3,["H5971"]],[3,6,["H7626"]],[6,8,["H6629"]],[8,11,["H5159"]],[11,13,["H7931"]],[13,14,["H910"]],[14,17,["H3293"]],[17,20,["H8432"]],[20,22,["H3760"]],[22,25,["H7462"]],[25,27,["H1316"]],[27,29,["H1568"]],[29,33,["H3117"]],[33,35,["H5769"]]]},{"k":22679,"v":[[0,4,["H3117"]],[4,8,["H3318"]],[8,11,["H4480","H776"]],[11,13,["H4714"]],[13,16,["H7200"]],[16,19,["H6381"]],[19,20,[]]]},{"k":22680,"v":[[0,2,["H1471"]],[2,4,["H7200"]],[4,7,["H954"]],[7,9,["H4480","H3605"]],[9,11,["H1369"]],[11,14,["H7760"]],[14,16,["H3027"]],[16,17,["H5921"]],[17,19,["H6310"]],[19,21,["H241"]],[21,24,["H2790"]]]},{"k":22681,"v":[[0,3,["H3897"]],[3,5,["H6083"]],[5,8,["H5175"]],[8,11,["H7264"]],[11,15,["H4480","H4526"]],[15,17,["H2119"]],[17,20,["H776"]],[20,24,["H6342"]],[24,25,["H413"]],[25,27,["H3068"]],[27,29,["H430"]],[29,32,["H3372"]],[32,34,["H4480"]],[34,35,[]]]},{"k":22682,"v":[[0,1,["H4310"]],[1,4,["H410"]],[4,7,["H3644"]],[7,9,["H5375"]],[9,10,["H5771"]],[10,13,["H5674","H5921"]],[13,15,["H6588"]],[15,18,["H7611"]],[18,21,["H5159"]],[21,23,["H2388"]],[23,24,["H3808"]],[24,26,["H639"]],[26,28,["H5703"]],[28,29,["H3588"]],[29,30,["H1931"]],[30,31,["H2654"]],[31,33,["H2617"]]]},{"k":22683,"v":[[0,4,["H7725"]],[4,8,["H7355"]],[8,13,["H3533"]],[13,15,["H5771"]],[15,19,["H7993"]],[19,20,["H3605"]],[20,22,["H2403"]],[22,25,["H4688"]],[25,28,["H3220"]]]},{"k":22684,"v":[[0,3,["H5414"]],[3,5,["H571"]],[5,7,["H3290"]],[7,10,["H2617"]],[10,12,["H85"]],[12,13,["H834"]],[13,16,["H7650"]],[16,19,["H1"]],[19,22,["H4480","H3117"]],[22,24,["H6924"]]]},{"k":22685,"v":[[0,2,["H4853"]],[2,4,["H5210"]],[4,6,["H5612"]],[6,9,["H2377"]],[9,11,["H5151"]],[11,13,["H512"]]]},{"k":22686,"v":[[0,1,["H410"]],[1,3,["H7072"]],[3,6,["H3068"]],[6,7,["H5358"]],[7,9,["H3068"]],[9,10,["H5358"]],[10,13,["H1167","H2534"]],[13,15,["H3068"]],[15,18,["H5358"]],[18,21,["H6862"]],[21,23,["H1931"]],[23,24,["H5201"]],[24,28,["H341"]]]},{"k":22687,"v":[[0,2,["H3068"]],[2,4,["H750"]],[4,6,["H639"]],[6,8,["H1419"]],[8,10,["H3581"]],[10,16,["H5352","H3808","H5352"]],[16,20,["H3068"]],[20,23,["H1870"]],[23,26,["H5492"]],[26,30,["H8183"]],[30,33,["H6051"]],[33,36,["H80"]],[36,39,["H7272"]]]},{"k":22688,"v":[[0,2,["H1605"]],[2,4,["H3220"]],[4,8,["H3001"]],[8,11,["H2717"]],[11,12,["H3605"]],[12,14,["H5104"]],[14,15,["H1316"]],[15,16,["H535"]],[16,18,["H3760"]],[18,21,["H6525"]],[21,23,["H3844"]],[23,24,["H535"]]]},{"k":22689,"v":[[0,2,["H2022"]],[2,3,["H7493"]],[3,4,["H4480"]],[4,8,["H1389"]],[8,9,["H4127"]],[9,12,["H776"]],[12,14,["H5375"]],[14,17,["H4480","H6440"]],[17,20,["H8398"]],[20,22,["H3605"]],[22,24,["H3427"]],[24,25,[]]]},{"k":22690,"v":[[0,1,["H4310"]],[1,3,["H5975"]],[3,4,["H6440"]],[4,6,["H2195"]],[6,8,["H4310"]],[8,10,["H6965"]],[10,13,["H2740"]],[13,16,["H639"]],[16,18,["H2534"]],[18,21,["H5413"]],[21,23,["H784"]],[23,26,["H6697"]],[26,29,["H5422"]],[29,30,["H4480"]],[30,31,[]]]},{"k":22691,"v":[[0,2,["H3068"]],[2,4,["H2896"]],[4,7,["H4581"]],[7,10,["H3117"]],[10,12,["H6869"]],[12,15,["H3045"]],[15,18,["H2620"]],[18,20,[]]]},{"k":22692,"v":[[0,4,["H5674"]],[4,5,["H7858"]],[5,8,["H6213"]],[8,11,["H3617"]],[11,14,["H4725"]],[14,17,["H2822"]],[17,19,["H7291"]],[19,21,["H341"]]]},{"k":22693,"v":[[0,1,["H4100"]],[1,4,["H2803"]],[4,5,["H413"]],[5,7,["H3068"]],[7,8,["H1931"]],[8,10,["H6213"]],[10,13,["H3617"]],[13,14,["H6869"]],[14,16,["H3808"]],[16,18,["H6965"]],[18,21,["H6471"]]]},{"k":22694,"v":[[0,1,["H3588"]],[1,2,["H5704"]],[2,6,["H5440"]],[6,8,["H5518"]],[8,13,["H5435"]],[13,15,["H5433"]],[15,19,["H398"]],[19,21,["H7179"]],[21,22,["H4390"]],[22,23,["H3002"]]]},{"k":22695,"v":[[0,5,["H3318"]],[5,6,["H4480"]],[6,9,["H2803"]],[9,10,["H7451"]],[10,11,["H5921"]],[11,13,["H3068"]],[13,15,["H1100"]],[15,16,["H3289"]]]},{"k":22696,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,5,["H518"]],[5,8,["H8003"]],[8,10,["H3651"]],[10,11,["H7227"]],[11,13,["H3651"]],[13,18,["H1494"]],[18,23,["H5674"]],[23,27,["H6031"]],[27,31,["H6031"]],[31,33,["H3808"]],[33,34,["H5750"]]]},{"k":22697,"v":[[0,2,["H6258"]],[2,5,["H7665"]],[5,7,["H4132"]],[7,9,["H4480","H5921"]],[9,17,["H5423","H4147"]]]},{"k":22698,"v":[[0,3,["H3068"]],[3,7,["H6680"]],[7,8,["H5921"]],[8,11,["H3808"]],[11,12,["H5750"]],[12,15,["H4480","H8034"]],[15,17,["H2232"]],[17,21,["H4480","H1004"]],[21,24,["H430"]],[24,28,["H3772"]],[28,31,["H6459"]],[31,35,["H4541"]],[35,38,["H7760"]],[38,40,["H6913"]],[40,41,["H3588"]],[41,44,["H7043"]]]},{"k":22699,"v":[[0,1,["H2009"]],[1,2,["H5921"]],[2,4,["H2022"]],[4,6,["H7272"]],[6,12,["H1319"]],[12,14,["H8085"]],[14,15,["H7965"]],[15,17,["H3063"]],[17,18,["H2287"]],[18,21,["H2282"]],[21,22,["H7999"]],[22,24,["H5088"]],[24,25,["H3588"]],[25,27,["H1100"]],[27,29,["H3808"]],[29,30,["H3254","H5750"]],[30,32,["H5674"]],[32,36,["H3605"]],[36,38,["H3772"]]]},{"k":22700,"v":[[0,5,["H6327"]],[5,8,["H5927"]],[8,9,["H5921"]],[9,11,["H6440"]],[11,12,["H5341"]],[12,14,["H4694"]],[14,15,["H6822"]],[15,17,["H1870"]],[17,21,["H2388","H4975"]],[21,22,["H553"]],[22,24,["H3581"]],[24,25,["H3966"]]]},{"k":22701,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,6,["H7725","(H853)"]],[6,8,["H1347"]],[8,10,["H3290"]],[10,13,["H1347"]],[13,15,["H3478"]],[15,16,["H3588"]],[16,18,["H1238"]],[18,20,["H1238"]],[20,24,["H7843"]],[24,27,["H2156"]]]},{"k":22702,"v":[[0,2,["H4043"]],[2,6,["H1368"]],[6,9,["H119"]],[9,11,["H2428"]],[11,12,["H376"]],[12,15,["H8529"]],[15,17,["H7393"]],[17,21,["H784"]],[21,22,["H6393"]],[22,25,["H3117"]],[25,28,["H3559"]],[28,32,["H1265"]],[32,36,["H7477"]]]},{"k":22703,"v":[[0,2,["H7393"]],[2,4,["H1984"]],[4,7,["H2351"]],[7,13,["H8264"]],[13,17,["H7339"]],[17,20,["H4758"]],[20,22,["H3940"]],[22,25,["H7323"]],[25,28,["H1300"]]]},{"k":22704,"v":[[0,3,["H2142"]],[3,5,["H117"]],[5,8,["H3782"]],[8,11,["H1979"]],[11,15,["H4116"]],[15,18,["H2346"]],[18,22,["H5526"]],[22,25,["H3559"]]]},{"k":22705,"v":[[0,2,["H8179"]],[2,5,["H5104"]],[5,8,["H6605"]],[8,11,["H1964"]],[11,14,["H4127"]]]},{"k":22706,"v":[[0,2,["H5324"]],[2,7,["H1540"]],[7,12,["H5927"]],[12,15,["H519"]],[15,17,["H5090"]],[17,22,["H6963"]],[22,24,["H3123"]],[24,25,["H8608"]],[25,26,["H5921"]],[26,28,["H3824"]]]},{"k":22707,"v":[[0,2,["H5210"]],[2,5,["H4480","H3117"]],[5,8,["H1295"]],[8,10,["H4325"]],[10,12,["H1992"]],[12,15,["H5127"]],[15,16,["H5975"]],[16,17,["H5975"]],[17,22,["H369"]],[22,25,["H6437"]]]},{"k":22708,"v":[[0,4,["H962"]],[4,6,["H3701"]],[6,9,["H962"]],[9,11,["H2091"]],[11,15,["H369"]],[15,16,["H7097"]],[16,19,["H8498"]],[19,21,["H3519"]],[21,24,["H4480","H3605"]],[24,26,["H2532"]],[26,27,["H3627"]]]},{"k":22709,"v":[[0,3,["H950"]],[3,5,["H4003"]],[5,7,["H1110"]],[7,10,["H3820"]],[10,11,["H4549"]],[11,14,["H1290"]],[14,16,["H6375"]],[16,19,["H2479"]],[19,22,["H3605"]],[22,23,["H4975"]],[23,26,["H6440"]],[26,29,["H3605"]],[29,30,["H6908"]],[30,31,["H6289"]]]},{"k":22710,"v":[[0,1,["H346"]],[1,4,["H4583"]],[4,7,["H738"]],[7,10,["H4829"]],[10,14,["H3715"]],[14,15,["H834","H8033"]],[15,17,["H738"]],[17,21,["H3833"]],[21,22,["H1980"]],[22,25,["H738"]],[25,26,["H1482"]],[26,28,["H369"]],[28,31,["H2729"]]]},{"k":22711,"v":[[0,2,["H738"]],[2,6,["H2963"]],[6,7,["H1767"]],[7,10,["H1484"]],[10,12,["H2614"]],[12,15,["H3833"]],[15,17,["H4390"]],[17,19,["H2356"]],[19,21,["H2964"]],[21,24,["H4585"]],[24,26,["H2966"]]]},{"k":22712,"v":[[0,1,["H2009"]],[1,4,["H413"]],[4,6,["H5002"]],[6,8,["H3068"]],[8,10,["H6635"]],[10,14,["H1197"]],[14,16,["H7393"]],[16,19,["H6227"]],[19,22,["H2719"]],[22,24,["H398"]],[24,27,["H3715"]],[27,32,["H3772"]],[32,34,["H2964"]],[34,37,["H4480","H776"]],[37,40,["H6963"]],[40,43,["H4397"]],[43,45,["H3808"]],[45,46,["H5750"]],[46,48,["H8085"]]]},{"k":22713,"v":[[0,1,["H1945"]],[1,4,["H1818"]],[4,5,["H5892"]],[5,8,["H3605"]],[8,9,["H4392"]],[9,11,["H3585"]],[11,13,["H6563"]],[13,15,["H2964"]],[15,16,["H4185"]],[16,17,["H3808"]]]},{"k":22714,"v":[[0,2,["H6963"]],[2,5,["H7752"]],[5,8,["H6963"]],[8,11,["H7494"]],[11,14,["H212"]],[14,18,["H1725"]],[18,19,["H5483"]],[19,23,["H7540"]],[23,24,["H4818"]]]},{"k":22715,"v":[[0,2,["H6571"]],[2,4,["H5927"]],[4,7,["H3851"]],[7,8,["H2719"]],[8,11,["H1300"]],[11,12,["H2595"]],[12,17,["H7230"]],[17,19,["H2491"]],[19,23,["H3514"]],[23,25,["H6297"]],[25,29,["H369"]],[29,30,["H7097"]],[30,33,["H1472"]],[33,35,["H3782"]],[35,38,["H1472"]]]},{"k":22716,"v":[[0,4,["H4480","H7230"]],[4,7,["H2183"]],[7,10,["H2896","H2580"]],[10,11,["H2181"]],[11,13,["H1172"]],[13,15,["H3785"]],[15,17,["H4376"]],[17,18,["H1471"]],[18,21,["H2183"]],[21,23,["H4940"]],[23,26,["H3785"]]]},{"k":22717,"v":[[0,1,["H2009"]],[1,4,["H413"]],[4,6,["H5002"]],[6,8,["H3068"]],[8,10,["H6635"]],[10,14,["H1540"]],[14,16,["H7757"]],[16,17,["H5921"]],[17,19,["H6440"]],[19,23,["H7200"]],[23,25,["H1471"]],[25,27,["H4626"]],[27,30,["H4467"]],[30,32,["H7036"]]]},{"k":22718,"v":[[0,4,["H7993"]],[4,6,["H8251"]],[6,7,["H5921"]],[7,12,["H5034"]],[12,15,["H7760"]],[15,19,["H7210"]]]},{"k":22719,"v":[[0,6,["H1961"]],[6,8,["H3605"]],[8,12,["H7200"]],[12,15,["H5074"]],[15,16,["H4480"]],[16,19,["H559"]],[19,20,["H5210"]],[20,23,["H7703"]],[23,24,["H4310"]],[24,26,["H5110"]],[26,28,["H4480","H370"]],[28,31,["H1245"]],[31,32,["H5162"]],[32,34,[]]]},{"k":22720,"v":[[0,3,["H3190"]],[3,5,["H528"]],[5,6,["H4480","H4996"]],[6,9,["H3427"]],[9,12,["H2975"]],[12,16,["H4325"]],[16,18,["H5439"]],[18,20,["H834"]],[20,21,["H2426"]],[21,24,["H3220"]],[24,27,["H2346"]],[27,31,["H4480","H3220"]]]},{"k":22721,"v":[[0,1,["H3568"]],[1,3,["H4714"]],[3,6,["H6109"]],[6,10,["H369","H7097"]],[10,11,["H6316"]],[11,13,["H3864"]],[13,14,["H1961"]],[14,16,["H5833"]]]},{"k":22722,"v":[[0,1,["H1571"]],[1,3,["H1931"]],[3,5,["H1473"]],[5,7,["H1980"]],[7,9,["H7628"]],[9,12,["H5768"]],[12,13,["H1571"]],[13,17,["H7376"]],[17,20,["H7218"]],[20,22,["H3605"]],[22,24,["H2351"]],[24,27,["H3032"]],[27,28,["H1486"]],[28,29,["H5921"]],[29,32,["H3513"]],[32,34,["H3605"]],[34,37,["H1419"]],[37,39,["H7576"]],[39,41,["H2131"]]]},{"k":22723,"v":[[0,1,["H859"]],[1,2,["H1571"]],[2,5,["H7937"]],[5,8,["H1961"]],[8,9,["H5956"]],[9,10,["H859"]],[10,11,["H1571"]],[11,13,["H1245"]],[13,14,["H4581"]],[14,18,["H4480","H341"]]]},{"k":22724,"v":[[0,1,["H3605"]],[1,4,["H4013"]],[4,9,["H8384"]],[9,10,["H5973"]],[10,13,["H1061"]],[13,14,["H518"]],[14,17,["H5128"]],[17,21,["H5307"]],[21,22,["H5921"]],[22,24,["H6310"]],[24,27,["H398"]]]},{"k":22725,"v":[[0,1,["H2009"]],[1,3,["H5971"]],[3,6,["H7130"]],[6,10,["H802"]],[10,12,["H8179"]],[12,15,["H776"]],[15,20,["H6605","H6605"]],[20,23,["H341"]],[23,25,["H784"]],[25,27,["H398"]],[27,29,["H1280"]]]},{"k":22726,"v":[[0,1,["H7579"]],[1,3,["H4325"]],[3,6,["H4692"]],[6,7,["H2388"]],[7,10,["H4013"]],[10,11,["H935"]],[11,13,["H2916"]],[13,15,["H7429"]],[15,17,["H2563"]],[17,19,["H2388"]],[19,21,["H4404"]]]},{"k":22727,"v":[[0,1,["H8033"]],[1,4,["H784"]],[4,5,["H398"]],[5,8,["H2719"]],[8,12,["H3772"]],[12,17,["H398"]],[17,20,["H3218"]],[20,23,["H3513"]],[23,26,["H3218"]],[26,29,["H3513"]],[29,32,["H697"]]]},{"k":22728,"v":[[0,3,["H7235"]],[3,5,["H7402"]],[5,8,["H4480","H3556"]],[8,10,["H8064"]],[10,12,["H3218"]],[12,13,["H6584"]],[13,16,["H5774"]]]},{"k":22729,"v":[[0,2,["H4502"]],[2,6,["H697"]],[6,9,["H2951"]],[9,13,["H1462","H1462"]],[13,15,["H2583"]],[15,18,["H1448"]],[18,21,["H7135"]],[21,22,["H3117"]],[22,26,["H8121"]],[26,27,["H2224"]],[27,30,["H5074"]],[30,33,["H4725"]],[33,36,["H3045","H3808"]],[36,37,["H335"]],[37,39,[]]]},{"k":22730,"v":[[0,2,["H7462"]],[2,3,["H5123"]],[3,5,["H4428"]],[5,7,["H804"]],[7,9,["H117"]],[9,11,["H7931"]],[11,16,["H5971"]],[16,18,["H6335"]],[18,19,["H5921"]],[19,21,["H2022"]],[21,24,["H369"]],[24,25,["H6908"]],[25,26,[]]]},{"k":22731,"v":[[0,3,["H369"]],[3,4,["H3545"]],[4,7,["H7667"]],[7,9,["H4347"]],[9,11,["H2470"]],[11,12,["H3605"]],[12,14,["H8085"]],[14,16,["H8088"]],[16,20,["H8628"]],[20,22,["H3709"]],[22,23,["H5921"]],[23,25,["H3588"]],[25,26,["H5921"]],[26,27,["H4310"]],[27,29,["H3808"]],[29,31,["H7451"]],[31,32,["H5674"]],[32,33,["H8548"]]]},{"k":22732,"v":[[0,2,["H4853"]],[2,3,["H834"]],[3,4,["H2265"]],[4,6,["H5030"]],[6,8,["H2372"]]]},{"k":22733,"v":[[0,2,["H3068"]],[2,4,["H5704","H575"]],[4,7,["H7768"]],[7,11,["H3808"]],[11,12,["H8085"]],[12,15,["H2199"]],[15,16,["H413"]],[16,19,["H2555"]],[19,23,["H3808"]],[23,24,["H3467"]]]},{"k":22734,"v":[[0,1,["H4100"]],[1,4,["H7200"]],[4,6,["H205"]],[6,11,["H5027"]],[11,12,["H5999"]],[12,14,["H7701"]],[14,16,["H2555"]],[16,18,["H5048"]],[18,22,["H1961"]],[22,25,["H5375"]],[25,26,["H7379"]],[26,28,["H4066"]]]},{"k":22735,"v":[[0,1,["H5921","H3651"]],[1,3,["H8451"]],[3,5,["H6313"]],[5,7,["H4941"]],[7,9,["H3808","H5331"]],[9,11,["H3318"]],[11,12,["H3588"]],[12,14,["H7563"]],[14,17,["H3803","(H853)"]],[17,19,["H6662"]],[19,20,["H5921","H3651"]],[20,21,["H6127"]],[21,22,["H4941"]],[22,23,["H3318"]]]},{"k":22736,"v":[[0,1,["H7200"]],[1,5,["H1471"]],[5,7,["H5027"]],[7,10,["H8539","H8539"]],[10,11,["H3588"]],[11,14,["H6466"]],[14,16,["H6467"]],[16,19,["H3117"]],[19,23,["H3808"]],[23,24,["H539"]],[24,25,["H3588"]],[25,28,["H5608"]],[28,29,[]]]},{"k":22737,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,5,["H6965","(H853)"]],[5,7,["H3778"]],[7,9,["H4751"]],[9,11,["H4116"]],[11,12,["H1471"]],[12,15,["H1980"]],[15,18,["H4800"]],[18,21,["H776"]],[21,23,["H3423"]],[23,25,["H4908"]],[25,28,["H3808"]],[28,29,[]]]},{"k":22738,"v":[[0,1,["H1931"]],[1,3,["H366"]],[3,5,["H3372"]],[5,7,["H4941"]],[7,10,["H7613"]],[10,12,["H3318"]],[12,13,["H4480"]],[13,14,[]]]},{"k":22739,"v":[[0,2,["H5483"]],[2,5,["H7043"]],[5,8,["H4480","H5246"]],[8,12,["H2300"]],[12,15,["H6153"]],[15,16,["H4480","H2061"]],[16,19,["H6571"]],[19,21,["H6335"]],[21,25,["H6571"]],[25,27,["H935"]],[27,29,["H4480","H7350"]],[29,32,["H5774"]],[32,35,["H5404"]],[35,37,["H2363"]],[37,39,["H398"]]]},{"k":22740,"v":[[0,3,["H935"]],[3,4,["H3605"]],[4,6,["H2555"]],[6,8,["H6440"]],[8,11,["H4041"]],[11,15,["H6921"]],[15,19,["H622"]],[19,21,["H7628"]],[21,24,["H2344"]]]},{"k":22741,"v":[[0,2,["H1931"]],[2,4,["H7046"]],[4,7,["H4428"]],[7,10,["H7336"]],[10,14,["H4890"]],[14,17,["H1931"]],[17,19,["H7832"]],[19,20,["H3605"]],[20,22,["H4013"]],[22,26,["H6651"]],[26,27,["H6083"]],[27,29,["H3920"]],[29,30,[]]]},{"k":22742,"v":[[0,1,["H227"]],[1,4,["H7307"]],[4,5,["H2498"]],[5,10,["H5674"]],[10,12,["H816"]],[12,14,["H2098"]],[14,16,["H3581"]],[16,19,["H433"]]]},{"k":22743,"v":[[0,2,["H859"]],[2,3,["H3808"]],[3,5,["H4480","H6924"]],[5,7,["H3068"]],[7,9,["H430"]],[9,12,["H6918"]],[12,15,["H3808"]],[15,16,["H4191"]],[16,18,["H3068"]],[18,21,["H7760"]],[21,24,["H4941"]],[24,28,["H6697"]],[28,31,["H3245"]],[31,34,["H3198"]]]},{"k":22744,"v":[[0,4,["H2889"]],[4,5,["H5869"]],[5,8,["H4480","H7200"]],[8,9,["H7451"]],[9,11,["H3201"]],[11,12,["H3808"]],[12,13,["H5027"]],[13,14,["H413"]],[14,15,["H5999"]],[15,16,["H4100"]],[16,17,["H5027"]],[17,23,["H898"]],[23,27,["H2790"]],[27,30,["H7563"]],[30,31,["H1104"]],[31,37,["H6662"]],[37,38,["H4480"]],[38,39,[]]]},{"k":22745,"v":[[0,2,["H6213"]],[2,3,["H120"]],[3,6,["H1709"]],[6,9,["H3220"]],[9,13,["H7431"]],[13,16,["H3808"]],[16,17,["H4910"]],[17,19,[]]]},{"k":22746,"v":[[0,3,["H5927"]],[3,4,["H3605"]],[4,9,["H2443"]],[9,11,["H1641"]],[11,15,["H2764"]],[15,17,["H622"]],[17,21,["H4365"]],[21,22,["H5921","H3651"]],[22,24,["H8055"]],[24,27,["H1523"]]]},{"k":22747,"v":[[0,1,["H5921","H3651"]],[1,3,["H2076"]],[3,6,["H2764"]],[6,9,["H6999"]],[9,12,["H4365"]],[12,13,["H3588"]],[13,15,["H1992"]],[15,17,["H2506"]],[17,19,["H8082"]],[19,22,["H3978"]],[22,23,["H1277"]]]},{"k":22748,"v":[[0,3,["H5921","H3651"]],[3,4,["H7324"]],[4,6,["H2764"]],[6,8,["H3808"]],[8,9,["H2550"]],[9,10,["H8548"]],[10,12,["H2026"]],[12,14,["H1471"]]]},{"k":22749,"v":[[0,3,["H5975"]],[3,4,["H5921"]],[4,6,["H4931"]],[6,8,["H3320"]],[8,10,["H5921"]],[10,12,["H4692"]],[12,15,["H6822"]],[15,17,["H7200"]],[17,18,["H4100"]],[18,21,["H1696"]],[21,25,["H4100"]],[25,28,["H7725"]],[28,29,["H5921"]],[29,32,["H8433"]]]},{"k":22750,"v":[[0,3,["H3068"]],[3,4,["H6030"]],[4,7,["H559"]],[7,8,["H3789"]],[8,10,["H2377"]],[10,14,["H874"]],[14,15,["H5921"]],[15,16,["H3871"]],[16,17,["H4616"]],[17,20,["H7323"]],[20,22,["H7121"]],[22,23,[]]]},{"k":22751,"v":[[0,1,["H3588"]],[1,3,["H2377"]],[3,5,["H5750"]],[5,9,["H4150"]],[9,13,["H7093"]],[13,16,["H6315"]],[16,18,["H3808"]],[18,19,["H3576"]],[19,20,["H518"]],[20,22,["H4102"]],[22,23,["H2442"]],[23,26,["H3588"]],[26,30,["H935","H935"]],[30,33,["H3808"]],[33,34,["H309"]]]},{"k":22752,"v":[[0,1,["H2009"]],[1,3,["H5315"]],[3,7,["H6075"]],[7,10,["H3474","H3808"]],[10,15,["H6662"]],[15,17,["H2421"]],[17,20,["H530"]]]},{"k":22753,"v":[[0,1,["H637"]],[1,3,["H3588"]],[3,5,["H898"]],[5,7,["H3196"]],[7,11,["H3093"]],[11,12,["H1397"]],[12,13,["H3808"]],[13,16,["H5115"]],[16,17,["H834"]],[17,18,["H7337"]],[18,20,["H5315"]],[20,22,["H7585"]],[22,26,["H4194"]],[26,28,["H3808"]],[28,30,["H7646"]],[30,32,["H622"]],[32,33,["H413"]],[33,35,["H3605"]],[35,36,["H1471"]],[36,38,["H6908"]],[38,39,["H413"]],[39,41,["H3605"]],[41,42,["H5971"]]]},{"k":22754,"v":[[0,2,["H3808"]],[2,3,["H3605"]],[3,4,["H428"]],[4,6,["H5375"]],[6,8,["H4912"]],[8,9,["H5921"]],[9,13,["H4426"]],[13,14,["H2420"]],[14,18,["H559"]],[18,19,["H1945"]],[19,23,["H7235"]],[23,27,["H3808"]],[27,30,["H5704","H4970"]],[30,35,["H3513","H5921"]],[35,39,["H5671"]]]},{"k":22755,"v":[[0,3,["H3808"]],[3,5,["H6965"]],[5,6,["H6621"]],[6,9,["H5391"]],[9,12,["H3364"]],[12,15,["H2111"]],[15,20,["H1961"]],[20,22,["H4933"]],[22,24,[]]]},{"k":22756,"v":[[0,1,["H3588"]],[1,2,["H859"]],[2,4,["H7997"]],[4,5,["H7227"]],[5,6,["H1471"]],[6,7,["H3605"]],[7,9,["H3499"]],[9,12,["H5971"]],[12,14,["H7997"]],[14,18,["H120"]],[18,19,["H4480","H1818"]],[19,23,["H2555"]],[23,26,["H776"]],[26,29,["H7151"]],[29,32,["H3605"]],[32,34,["H3427"]],[34,35,[]]]},{"k":22757,"v":[[0,1,["H1945"]],[1,5,["H1214"]],[5,7,["H7451"]],[7,8,["H1215"]],[8,11,["H1004"]],[11,15,["H7760"]],[15,17,["H7064"]],[17,19,["H4791"]],[19,24,["H5337"]],[24,27,["H4480","H3709"]],[27,29,["H7451"]]]},{"k":22758,"v":[[0,3,["H3289"]],[3,4,["H1322"]],[4,7,["H1004"]],[7,10,["H7096"]],[10,11,["H7227"]],[11,12,["H5971"]],[12,15,["H2398"]],[15,18,["H5315"]]]},{"k":22759,"v":[[0,1,["H3588"]],[1,3,["H68"]],[3,6,["H2199"]],[6,9,["H4480","H7023"]],[9,12,["H3714"]],[12,16,["H4480","H6086"]],[16,18,["H6030"]],[18,19,[]]]},{"k":22760,"v":[[0,1,["H1945"]],[1,5,["H1129"]],[5,7,["H5892"]],[7,9,["H1818"]],[9,11,["H3559"]],[11,13,["H7151"]],[13,15,["H5766"]]]},{"k":22761,"v":[[0,1,["H2009"]],[1,4,["H3808"]],[4,5,["H4480","H854"]],[5,7,["H3068"]],[7,9,["H6635"]],[9,12,["H5971"]],[12,14,["H3021"]],[14,17,["H1767"]],[17,18,["H784"]],[18,21,["H3816"]],[21,23,["H3286"]],[23,26,["H1767"]],[26,27,["H7385"]]]},{"k":22762,"v":[[0,1,["H3588"]],[1,3,["H776"]],[3,6,["H4390","(H853)"]],[6,9,["H1847"]],[9,12,["H3519"]],[12,15,["H3068"]],[15,18,["H4325"]],[18,19,["H3680","H5921"]],[19,21,["H3220"]]]},{"k":22763,"v":[[0,1,["H1945"]],[1,8,["H8248","H7453"]],[8,10,["H5596"]],[10,12,["H2573"]],[12,18,["H7937"]],[18,19,["H637"]],[19,20,["H4616"]],[20,23,["H5027"]],[23,24,["H5921"]],[24,26,["H4589"]]]},{"k":22764,"v":[[0,3,["H7646"]],[3,5,["H7036"]],[5,7,["H4480","H3519"]],[7,8,["H8354"]],[8,9,["H859"]],[9,10,["H1571"]],[10,16,["H6188"]],[16,18,["H3563"]],[18,21,["H3068"]],[21,23,["H3225"]],[23,26,["H5437"]],[26,27,["H5921"]],[27,31,["H7022"]],[31,34,["H5921"]],[34,36,["H3519"]]]},{"k":22765,"v":[[0,1,["H3588"]],[1,3,["H2555"]],[3,5,["H3844"]],[5,7,["H3680"]],[7,11,["H7701"]],[11,13,["H929"]],[13,17,["H2865"]],[17,20,["H120"]],[20,21,["H4480","H1818"]],[21,25,["H2555"]],[25,28,["H776"]],[28,31,["H7151"]],[31,34,["H3605"]],[34,36,["H3427"]],[36,37,[]]]},{"k":22766,"v":[[0,1,["H4100"]],[1,2,["H3276"]],[2,5,["H6459"]],[5,6,["H3588"]],[6,8,["H3335"]],[8,11,["H6458"]],[11,15,["H4541"]],[15,18,["H3384"]],[18,20,["H8267"]],[20,21,["H3588"]],[21,23,["H3335"]],[23,26,["H3336"]],[26,27,["H982"]],[27,28,["H5921"]],[28,30,["H6213"]],[30,31,["H483"]],[31,32,["H457"]]]},{"k":22767,"v":[[0,1,["H1945"]],[1,5,["H559"]],[5,8,["H6086"]],[8,9,["H6974"]],[9,12,["H1748"]],[12,13,["H68"]],[13,14,["H5782"]],[14,15,["H1931"]],[15,17,["H3384"]],[17,18,["H2009"]],[18,19,["H1931"]],[19,22,["H8610"]],[22,24,["H2091"]],[24,26,["H3701"]],[26,30,["H369"]],[30,31,["H7307"]],[31,33,["H3605"]],[33,36,["H7130"]],[36,38,[]]]},{"k":22768,"v":[[0,3,["H3068"]],[3,7,["H6944"]],[7,8,["H1964"]],[8,10,["H3605"]],[10,12,["H776"]],[12,14,["H2013"]],[14,15,["H4480","H6440"]],[15,16,[]]]},{"k":22769,"v":[[0,2,["H8605"]],[2,4,["H2265"]],[4,6,["H5030"]],[6,7,["H5921"]],[7,8,["H7692"]]]},{"k":22770,"v":[[0,2,["H3068"]],[2,5,["H8085"]],[5,7,["H8088"]],[7,10,["H3372"]],[10,12,["H3068"]],[12,13,["H2421"]],[13,15,["H6467"]],[15,18,["H7130"]],[18,21,["H8141"]],[21,24,["H7130"]],[24,27,["H8141"]],[27,29,["H3045"]],[29,31,["H7267"]],[31,32,["H2142"]],[32,33,["H7355"]]]},{"k":22771,"v":[[0,1,["H433"]],[1,2,["H935"]],[2,4,["H4480","H8487"]],[4,8,["H6918"]],[8,10,["H4480","H2022"]],[10,11,["H6290"]],[11,12,["H5542"]],[12,14,["H1935"]],[14,15,["H3680"]],[15,17,["H8064"]],[17,20,["H776"]],[20,22,["H4390"]],[22,25,["H8416"]]]},{"k":22772,"v":[[0,3,["H5051"]],[3,4,["H1961"]],[4,7,["H216"]],[7,10,["H7161"]],[10,15,["H4480","H3027"]],[15,17,["H8033"]],[17,20,["H2253"]],[20,23,["H5797"]]]},{"k":22773,"v":[[0,1,["H6440"]],[1,3,["H1980"]],[3,5,["H1698"]],[5,8,["H7565"]],[8,10,["H3318"]],[10,13,["H7272"]]]},{"k":22774,"v":[[0,2,["H5975"]],[2,4,["H4128"]],[4,6,["H776"]],[6,8,["H7200"]],[8,11,["H5425"]],[11,13,["H1471"]],[13,16,["H5703"]],[16,17,["H2042"]],[17,19,["H6327"]],[19,21,["H5769"]],[21,22,["H1389"]],[22,24,["H7817"]],[24,26,["H1979"]],[26,28,["H5769"]]]},{"k":22775,"v":[[0,2,["H7200"]],[2,4,["H168"]],[4,6,["H3572"]],[6,7,["H8478"]],[7,8,["H205"]],[8,11,["H3407"]],[11,14,["H776"]],[14,16,["H4080"]],[16,18,["H7264"]]]},{"k":22776,"v":[[0,3,["H3068"]],[3,4,["H2734"]],[4,7,["H5104"]],[7,10,["H639"]],[10,13,["H5104"]],[13,16,["H5678"]],[16,19,["H3220"]],[19,20,["H3588"]],[20,23,["H7392"]],[23,24,["H5921"]],[24,26,["H5483"]],[26,29,["H4818"]],[29,31,["H3444"]]]},{"k":22777,"v":[[0,2,["H7198"]],[2,6,["H5783","H6181"]],[6,10,["H7621"]],[10,13,["H4294"]],[13,16,["H562"]],[16,17,["H5542"]],[17,20,["H1234"]],[20,22,["H776"]],[22,24,["H5104"]]]},{"k":22778,"v":[[0,2,["H2022"]],[2,3,["H7200"]],[3,7,["H2342"]],[7,9,["H2230"]],[9,12,["H4325"]],[12,14,["H5674"]],[14,16,["H8415"]],[16,17,["H5414"]],[17,19,["H6963"]],[19,22,["H5375"]],[22,24,["H3027"]],[24,26,["H7315"]]]},{"k":22779,"v":[[0,2,["H8121"]],[2,4,["H3394"]],[4,6,["H5975"]],[6,9,["H2073"]],[9,12,["H216"]],[12,15,["H2671"]],[15,17,["H1980"]],[17,21,["H5051"]],[21,24,["H1300"]],[24,25,["H2595"]]]},{"k":22780,"v":[[0,4,["H6805"]],[4,6,["H776"]],[6,8,["H2195"]],[8,11,["H1758"]],[11,13,["H1471"]],[13,15,["H639"]]]},{"k":22781,"v":[[0,3,["H3318"]],[3,6,["H3468"]],[6,9,["H5971"]],[9,12,["H3468"]],[12,13,["H854"]],[13,15,["H4899"]],[15,17,["H4272"]],[17,19,["H7218"]],[19,23,["H4480","H1004"]],[23,26,["H7563"]],[26,28,["H6168"]],[28,30,["H3247"]],[30,31,["H5704"]],[31,33,["H6677"]],[33,34,["H5542"]]]},{"k":22782,"v":[[0,4,["H5344"]],[4,7,["H4294"]],[7,9,["H7218"]],[9,12,["H6518"]],[12,18,["H5590"]],[18,20,["H6327"]],[20,23,["H5951"]],[23,25,["H3644"]],[25,27,["H398"]],[27,29,["H6041"]],[29,30,["H4565"]]]},{"k":22783,"v":[[0,3,["H1869"]],[3,6,["H3220"]],[6,9,["H5483"]],[9,12,["H2563"]],[12,14,["H7227"]],[14,15,["H4325"]]]},{"k":22784,"v":[[0,3,["H8085"]],[3,5,["H990"]],[5,6,["H7264"]],[6,8,["H8193"]],[8,9,["H6750"]],[9,12,["H6963"]],[12,13,["H7538"]],[13,14,["H935"]],[14,17,["H6106"]],[17,20,["H7264"]],[20,21,["H8478"]],[21,23,["H834"]],[23,26,["H5117"]],[26,29,["H3117"]],[29,31,["H6869"]],[31,35,["H5927"]],[35,38,["H5971"]],[38,41,["H1464"]],[41,45,[]]]},{"k":22785,"v":[[0,1,["H3588"]],[1,4,["H8384"]],[4,6,["H3808"]],[6,7,["H6524"]],[7,8,["H369"]],[8,10,["H2981"]],[10,14,["H1612"]],[14,16,["H4639"]],[16,19,["H2132"]],[19,21,["H3584"]],[21,24,["H7709"]],[24,26,["H6213"]],[26,27,["H3808"]],[27,28,["H400"]],[28,30,["H6629"]],[30,34,["H1504"]],[34,37,["H4480","H4356"]],[37,42,["H369"]],[42,43,["H1241"]],[43,46,["H7517"]]]},{"k":22786,"v":[[0,2,["H589"]],[2,4,["H5937"]],[4,7,["H3068"]],[7,10,["H1523"]],[10,13,["H430"]],[13,16,["H3468"]]]},{"k":22787,"v":[[0,2,["H3068"]],[2,3,["H136"]],[3,6,["H2428"]],[6,10,["H7760"]],[10,12,["H7272"]],[12,14,["H355"]],[14,22,["H1869"]],[22,23,["H5921"]],[23,26,["H1116"]],[26,30,["H5329"]],[30,34,["H5058"]]]},{"k":22788,"v":[[0,2,["H1697"]],[2,5,["H3068"]],[5,6,["H834"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H6846"]],[9,11,["H1121"]],[11,13,["H3570"]],[13,15,["H1121"]],[15,17,["H1436"]],[17,19,["H1121"]],[19,21,["H568"]],[21,23,["H1121"]],[23,25,["H2396"]],[25,28,["H3117"]],[28,30,["H2977"]],[30,32,["H1121"]],[32,34,["H526"]],[34,35,["H4428"]],[35,37,["H3063"]]]},{"k":22789,"v":[[0,4,["H622","H5486"]],[4,5,["H3605"]],[5,8,["H4480","H5921","H6440"]],[8,10,["H127"]],[10,11,["H5002"]],[11,13,["H3068"]]]},{"k":22790,"v":[[0,3,["H5486"]],[3,4,["H120"]],[4,6,["H929"]],[6,9,["H5486"]],[9,11,["H5775"]],[11,14,["H8064"]],[14,17,["H1709"]],[17,20,["H3220"]],[20,23,["H4384"]],[23,24,["H854"]],[24,26,["H7563"]],[26,31,["H3772","(H853)"]],[31,32,["H120"]],[32,34,["H4480","H5921","H6440"]],[34,36,["H127"]],[36,37,["H5002"]],[37,39,["H3068"]]]},{"k":22791,"v":[[0,5,["H5186"]],[5,7,["H3027"]],[7,8,["H5921"]],[8,9,["H3063"]],[9,11,["H5921"]],[11,12,["H3605"]],[12,14,["H3427"]],[14,16,["H3389"]],[16,21,["H3772","(H853)"]],[21,23,["H7605"]],[23,25,["H1168"]],[25,26,["H4480"]],[26,27,["H2088"]],[27,28,["H4725"]],[28,29,["(H853)"]],[29,31,["H8034"]],[31,34,["H3649"]],[34,35,["H5973"]],[35,37,["H3548"]]]},{"k":22792,"v":[[0,4,["H7812"]],[4,6,["H6635"]],[6,8,["H8064"]],[8,9,["H5921"]],[9,11,["H1406"]],[11,15,["H7812"]],[15,18,["H7650"]],[18,21,["H3068"]],[21,24,["H7650"]],[24,26,["H4445"]]]},{"k":22793,"v":[[0,6,["H5472"]],[6,7,["H4480","H310"]],[7,9,["H3068"]],[9,12,["H834"]],[12,14,["H3808"]],[14,15,["H1245","(H853)"]],[15,17,["H3068"]],[17,18,["H3808"]],[18,19,["H1875"]],[19,21,[]]]},{"k":22794,"v":[[0,3,["H2013"]],[3,6,["H4480","H6440"]],[6,9,["H136"]],[9,10,["H3069"]],[10,11,["H3588"]],[11,13,["H3117"]],[13,16,["H3068"]],[16,19,["H7138"]],[19,20,["H3588"]],[20,22,["H3068"]],[22,24,["H3559"]],[24,26,["H2077"]],[26,29,["H6942"]],[29,31,["H7121"]]]},{"k":22795,"v":[[0,6,["H1961"]],[6,9,["H3117"]],[9,12,["H3068"]],[12,13,["H2077"]],[13,17,["H6485","H5921"]],[17,19,["H8269"]],[19,22,["H4428"]],[22,23,["H1121"]],[23,25,["H3605"]],[25,29,["H3847"]],[29,31,["H5237"]],[31,32,["H4403"]]]},{"k":22796,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,8,["H6485","H5921"]],[8,9,["H3605"]],[9,12,["H1801"]],[12,13,["H5921"]],[13,15,["H4670"]],[15,17,["H4390"]],[17,19,["H113"]],[19,20,["H1004"]],[20,22,["H2555"]],[22,24,["H4820"]]]},{"k":22797,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,10,["H5002"]],[10,12,["H3068"]],[12,18,["H6963"]],[18,21,["H6818"]],[21,24,["H1709"]],[24,25,["H4480","H8179"]],[25,28,["H3215"]],[28,29,["H4480"]],[29,31,["H4932"]],[31,34,["H1419"]],[34,35,["H7667"]],[35,38,["H4480","H1389"]]]},{"k":22798,"v":[[0,1,["H3213"]],[1,3,["H3427"]],[3,5,["H4389"]],[5,6,["H3588"]],[6,7,["H3605"]],[7,9,["H3667"]],[9,10,["H5971"]],[10,13,["H1820"]],[13,14,["H3605"]],[14,17,["H5187"]],[17,18,["H3701"]],[18,21,["H3772"]]]},{"k":22799,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H6256"]],[9,13,["H2664","(H853)"]],[13,14,["H3389"]],[14,16,["H5216"]],[16,18,["H6485","H5921"]],[18,20,["H376"]],[20,23,["H7087"]],[23,24,["H5921"]],[24,26,["H8105"]],[26,28,["H559"]],[28,31,["H3824"]],[31,33,["H3068"]],[33,35,["H3808"]],[35,37,["H3190"]],[37,38,["H3808"]],[38,42,["H7489"]]]},{"k":22800,"v":[[0,3,["H2428"]],[3,5,["H1961"]],[5,7,["H4933"]],[7,10,["H1004"]],[10,12,["H8077"]],[12,16,["H1129"]],[16,17,["H1004"]],[17,19,["H3808"]],[19,20,["H3427"]],[20,25,["H5193"]],[25,26,["H3754"]],[26,28,["H3808"]],[28,29,["H8354","(H853)"]],[29,31,["H3196"]],[31,32,[]]]},{"k":22801,"v":[[0,2,["H1419"]],[2,3,["H3117"]],[3,6,["H3068"]],[6,8,["H7138"]],[8,11,["H7138"]],[11,13,["H4118"]],[13,14,["H3966"]],[14,17,["H6963"]],[17,20,["H3117"]],[20,23,["H3068"]],[23,26,["H1368"]],[26,28,["H6873"]],[28,29,["H8033"]],[29,30,["H4751"]]]},{"k":22802,"v":[[0,1,["H1931"]],[1,2,["H3117"]],[2,5,["H3117"]],[5,7,["H5678"]],[7,9,["H3117"]],[9,11,["H6869"]],[11,13,["H4691"]],[13,15,["H3117"]],[15,17,["H7722"]],[17,19,["H4875"]],[19,21,["H3117"]],[21,23,["H2822"]],[23,25,["H653"]],[25,27,["H3117"]],[27,29,["H6051"]],[29,32,["H6205"]]]},{"k":22803,"v":[[0,2,["H3117"]],[2,5,["H7782"]],[5,7,["H8643"]],[7,8,["H5921"]],[8,10,["H1219"]],[10,11,["H5892"]],[11,13,["H5921"]],[13,15,["H1364"]],[15,16,["H6438"]]]},{"k":22804,"v":[[0,5,["H6887"]],[5,7,["H120"]],[7,11,["H1980"]],[11,14,["H5787"]],[14,15,["H3588"]],[15,18,["H2398"]],[18,21,["H3068"]],[21,24,["H1818"]],[24,28,["H8210"]],[28,30,["H6083"]],[30,33,["H3894"]],[33,36,["H1561"]]]},{"k":22805,"v":[[0,1,["H3808","H1571"]],[1,3,["H3701"]],[3,4,["H1571"]],[4,6,["H2091"]],[6,9,["H3201"]],[9,11,["H5337"]],[11,15,["H3117"]],[15,18,["H3068"]],[18,19,["H5678"]],[19,22,["H3605"]],[22,23,["H776"]],[23,26,["H398"]],[26,29,["H784"]],[29,32,["H7068"]],[32,33,["H3588"]],[33,36,["H6213"]],[36,37,["H389"]],[37,39,["H926"]],[39,40,["H3617"]],[40,41,["H854"]],[41,42,["H3605"]],[42,45,["H3427"]],[45,48,["H776"]]]},{"k":22806,"v":[[0,3,["H7197"]],[3,6,["H7197"]],[6,8,["H1471"]],[8,9,["H3808"]],[9,10,["H3700"]]]},{"k":22807,"v":[[0,1,["H2962"]],[1,3,["H2706"]],[3,5,["H3205"]],[5,8,["H3117"]],[8,9,["H5674"]],[9,12,["H4671"]],[12,13,["H2962"]],[13,15,["H2740"]],[15,16,["H639"]],[16,19,["H3068"]],[19,20,["H935"]],[20,21,["H5921"]],[21,23,["H2962"]],[23,25,["H3117"]],[25,28,["H3068"]],[28,29,["H639"]],[29,30,["H935"]],[30,31,["H5921"]],[31,32,[]]]},{"k":22808,"v":[[0,1,["H1245"]],[1,2,["(H853)"]],[2,4,["H3068"]],[4,5,["H3605"]],[5,7,["H6035"]],[7,10,["H776"]],[10,11,["H834"]],[11,13,["H6466"]],[13,15,["H4941"]],[15,16,["H1245"]],[16,17,["H6664"]],[17,18,["H1245"]],[18,19,["H6038"]],[19,22,["H194"]],[22,26,["H5641"]],[26,29,["H3117"]],[29,32,["H3068"]],[32,33,["H639"]]]},{"k":22809,"v":[[0,1,["H3588"]],[1,2,["H5804"]],[2,4,["H1961"]],[4,5,["H5800"]],[5,7,["H831"]],[7,9,["H8077"]],[9,13,["H1644"]],[13,14,["H795"]],[14,18,["H6672"]],[18,20,["H6138"]],[20,24,["H6131"]]]},{"k":22810,"v":[[0,1,["H1945"]],[1,4,["H3427"]],[4,7,["H3220"]],[7,8,["H2256"]],[8,10,["H1471"]],[10,13,["H3774"]],[13,15,["H1697"]],[15,18,["H3068"]],[18,20,["H5921"]],[20,23,["H3667"]],[23,25,["H776"]],[25,28,["H6430"]],[28,32,["H6"]],[32,38,["H4480","H369"]],[38,39,["H3427"]]]},{"k":22811,"v":[[0,3,["H3220"]],[3,4,["H2256"]],[4,6,["H1961"]],[6,7,["H5116"]],[7,9,["H3741"]],[9,11,["H7462"]],[11,13,["H1448"]],[13,15,["H6629"]]]},{"k":22812,"v":[[0,3,["H2256"]],[3,5,["H1961"]],[5,8,["H7611"]],[8,11,["H1004"]],[11,13,["H3063"]],[13,16,["H7462"]],[16,17,["H5921"]],[17,20,["H1004"]],[20,22,["H831"]],[22,26,["H7257"]],[26,29,["H6153"]],[29,30,["H3588"]],[30,32,["H3068"]],[32,34,["H430"]],[34,36,["H6485"]],[36,40,["H7725"]],[40,42,["H7622"]]]},{"k":22813,"v":[[0,3,["H8085"]],[3,5,["H2781"]],[5,7,["H4124"]],[7,10,["H1421"]],[10,13,["H1121"]],[13,15,["H5983"]],[15,16,["H834"]],[16,19,["H2778","(H853)"]],[19,21,["H5971"]],[21,23,["H1431"]],[23,25,["H5921"]],[25,27,["H1366"]]]},{"k":22814,"v":[[0,1,["H3651"]],[1,3,["H589"]],[3,4,["H2416"]],[4,5,["H5002"]],[5,7,["H3068"]],[7,9,["H6635"]],[9,11,["H430"]],[11,13,["H3478"]],[13,14,["H3588"]],[14,15,["H4124"]],[15,17,["H1961"]],[17,19,["H5467"]],[19,22,["H1121"]],[22,24,["H5983"]],[24,26,["H6017"]],[26,29,["H4476"]],[29,31,["H2738"]],[31,33,["H4417","H4379"]],[33,36,["H5704","H5769"]],[36,37,["H8077"]],[37,39,["H7611"]],[39,42,["H5971"]],[42,44,["H962"]],[44,48,["H3499"]],[48,51,["H1471"]],[51,53,["H5157"]],[53,54,[]]]},{"k":22815,"v":[[0,1,["H2063"]],[1,5,["H8478"]],[5,7,["H1347"]],[7,8,["H3588"]],[8,11,["H2778"]],[11,13,["H1431"]],[13,15,["H5921"]],[15,17,["H5971"]],[17,20,["H3068"]],[20,22,["H6635"]]]},{"k":22816,"v":[[0,2,["H3068"]],[2,5,["H3372"]],[5,6,["H5921"]],[6,8,["H3588"]],[8,11,["H7329","(H853)"]],[11,12,["H3605"]],[12,14,["H430"]],[14,17,["H776"]],[17,21,["H7812"]],[21,24,["H376"]],[24,27,["H4480","H4725"]],[27,29,["H3605"]],[29,31,["H339"]],[31,34,["H1471"]]]},{"k":22817,"v":[[0,1,["H859"]],[1,2,["H3569"]],[2,3,["H1571"]],[3,4,["H1992"]],[4,7,["H2491"]],[7,10,["H2719"]]]},{"k":22818,"v":[[0,5,["H5186"]],[5,7,["H3027"]],[7,8,["H5921"]],[8,10,["H6828"]],[10,12,["H6","(H853)"]],[12,13,["H804"]],[13,16,["H7760","(H853)"]],[16,17,["H5210"]],[17,19,["H8077"]],[19,21,["H6723"]],[21,24,["H4057"]]]},{"k":22819,"v":[[0,2,["H5739"]],[2,5,["H7257"]],[5,8,["H8432"]],[8,11,["H3605"]],[11,13,["H2416"]],[13,16,["H1471"]],[16,17,["H1571"]],[17,19,["H6893"]],[19,20,["H1571"]],[20,22,["H7090"]],[22,24,["H3885"]],[24,28,["H3730"]],[28,32,["H6963"]],[32,34,["H7891"]],[34,37,["H2474"]],[37,38,["H2721"]],[38,43,["H5592"]],[43,44,["H3588"]],[44,47,["H6168"]],[47,50,["H731"]]]},{"k":22820,"v":[[0,1,["H2063"]],[1,4,["H5947"]],[4,5,["H5892"]],[5,7,["H3427"]],[7,8,["H983"]],[8,10,["H559"]],[10,13,["H3824"]],[13,14,["H589"]],[14,19,["H657"]],[19,20,["H5750"]],[20,22,["H349"]],[22,25,["H1961"]],[25,27,["H8047"]],[27,31,["H2416"]],[31,34,["H4769"]],[34,37,["H3605"]],[37,39,["H5674"]],[39,40,["H5921"]],[40,43,["H8319"]],[43,45,["H5128"]],[45,47,["H3027"]]]},{"k":22821,"v":[[0,1,["H1945"]],[1,6,["H4784"]],[6,8,["H1351"]],[8,11,["H3238"]],[11,12,["H5892"]]]},{"k":22822,"v":[[0,2,["H8085"]],[2,3,["H3808"]],[3,5,["H6963"]],[5,7,["H3947"]],[7,8,["H3808"]],[8,9,["H4148"]],[9,11,["H982"]],[11,12,["H3808"]],[12,15,["H3068"]],[15,19,["H7126","H3808"]],[19,20,["H413"]],[20,22,["H430"]]]},{"k":22823,"v":[[0,2,["H8269"]],[2,3,["H7130"]],[3,6,["H7580"]],[6,7,["H738"]],[7,9,["H8199"]],[9,11,["H6153"]],[11,12,["H2061"]],[12,17,["H1633","H3808"]],[17,20,["H1242"]]]},{"k":22824,"v":[[0,2,["H5030"]],[2,4,["H6348"]],[4,6,["H900"]],[6,7,["H376"]],[7,9,["H3548"]],[9,11,["H2490"]],[11,13,["H6944"]],[13,17,["H2554"]],[17,20,["H8451"]]]},{"k":22825,"v":[[0,2,["H6662"]],[2,3,["H3068"]],[3,7,["H7130"]],[7,11,["H3808"]],[11,12,["H6213"]],[12,13,["H5766"]],[13,15,["H1242","H1242"]],[15,18,["H5414"]],[18,20,["H4941"]],[20,22,["H216"]],[22,24,["H5737"]],[24,25,["H3808"]],[25,28,["H5767"]],[28,29,["H3045"]],[29,30,["H3808"]],[30,31,["H1322"]]]},{"k":22826,"v":[[0,4,["H3772"]],[4,6,["H1471"]],[6,8,["H6438"]],[8,10,["H8074"]],[10,15,["H2717","H2351"]],[15,17,["H4480","H1097"]],[17,19,["H5674"]],[19,21,["H5892"]],[21,23,["H6658"]],[23,28,["H4480","H1097"]],[28,29,["H376"]],[29,33,["H4480","H369"]],[33,34,["H3427"]]]},{"k":22827,"v":[[0,2,["H559"]],[2,3,["H389"]],[3,6,["H3372"]],[6,10,["H3947"]],[10,11,["H4148"]],[11,14,["H4583"]],[14,16,["H3808"]],[16,19,["H3772"]],[19,20,["H3605","H834"]],[20,22,["H6485","H5921"]],[22,24,["H403"]],[24,27,["H7925"]],[27,29,["H7843"]],[29,30,["H3605"]],[30,32,["H5949"]]]},{"k":22828,"v":[[0,1,["H3651"]],[1,2,["H2442"]],[2,6,["H5002"]],[6,8,["H3068"]],[8,11,["H3117"]],[11,15,["H6965"]],[15,18,["H5706"]],[18,19,["H3588"]],[19,21,["H4941"]],[21,24,["H622"]],[24,26,["H1471"]],[26,30,["H6908"]],[30,32,["H4467"]],[32,34,["H8210"]],[34,35,["H5921"]],[35,38,["H2195"]],[38,40,["H3605"]],[40,42,["H2740"]],[42,43,["H639"]],[43,44,["H3588"]],[44,45,["H3605"]],[45,47,["H776"]],[47,50,["H398"]],[50,53,["H784"]],[53,56,["H7068"]]]},{"k":22829,"v":[[0,1,["H3588"]],[1,2,["H227"]],[2,5,["H2015"]],[5,6,["H413"]],[6,8,["H5971"]],[8,10,["H1305"]],[10,11,["H8193"]],[11,15,["H3605"]],[15,16,["H7121"]],[16,19,["H8034"]],[19,22,["H3068"]],[22,24,["H5647"]],[24,27,["H259"]],[27,28,["H7926"]]]},{"k":22830,"v":[[0,2,["H4480","H5676"]],[2,4,["H5104"]],[4,6,["H3568"]],[6,8,["H6282"]],[8,11,["H1323"]],[11,14,["H6327"]],[14,16,["H2986"]],[16,18,["H4503"]]]},{"k":22831,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H3808"]],[6,8,["H954"]],[8,10,["H4480","H3605"]],[10,12,["H5949"]],[12,13,["H834"]],[13,16,["H6586"]],[16,19,["H3588"]],[19,20,["H227"]],[20,24,["H5493"]],[24,28,["H4480","H7130"]],[28,33,["H5947"]],[33,36,["H1346"]],[36,40,["H3808"]],[40,41,["H3254","H5750"]],[41,43,["H1361"]],[43,47,["H6944"]],[47,48,["H2022"]]]},{"k":22832,"v":[[0,4,["H7604"]],[4,7,["H7130"]],[7,11,["H6041"]],[11,13,["H1800"]],[13,14,["H5971"]],[14,18,["H2620"]],[18,21,["H8034"]],[21,24,["H3068"]]]},{"k":22833,"v":[[0,2,["H7611"]],[2,4,["H3478"]],[4,6,["H3808"]],[6,7,["H6213"]],[7,8,["H5766"]],[8,9,["H3808"]],[9,10,["H1696"]],[10,11,["H3577"]],[11,12,["H3808"]],[12,15,["H8649"]],[15,16,["H3956"]],[16,18,["H4672"]],[18,21,["H6310"]],[21,22,["H3588"]],[22,23,["H1992"]],[23,25,["H7462"]],[25,28,["H7257"]],[28,30,["H369"]],[30,34,["H2729"]]]},{"k":22834,"v":[[0,1,["H7442"]],[1,3,["H1323"]],[3,5,["H6726"]],[5,6,["H7321"]],[6,8,["H3478"]],[8,10,["H8055"]],[10,12,["H5937"]],[12,14,["H3605"]],[14,16,["H3820"]],[16,18,["H1323"]],[18,20,["H3389"]]]},{"k":22835,"v":[[0,2,["H3068"]],[2,5,["H5493"]],[5,7,["H4941"]],[7,11,["H6437"]],[11,13,["H341"]],[13,15,["H4428"]],[15,17,["H3478"]],[17,20,["H3068"]],[20,24,["H7130"]],[24,29,["H3808"]],[29,30,["H7200"]],[30,31,["H7451"]],[31,33,["H5750"]]]},{"k":22836,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,7,["H559"]],[7,9,["H3389"]],[9,10,["H3372"]],[10,12,["H408"]],[12,15,["H6726"]],[15,17,["H408"]],[17,19,["H3027"]],[19,21,["H7503"]]]},{"k":22837,"v":[[0,2,["H3068"]],[2,4,["H430"]],[4,7,["H7130"]],[7,11,["H1368"]],[11,14,["H3467"]],[14,17,["H7797"]],[17,18,["H5921"]],[18,21,["H8057"]],[21,24,["H2790"]],[24,27,["H160"]],[27,30,["H1523"]],[30,31,["H5921"]],[31,34,["H7440"]]]},{"k":22838,"v":[[0,3,["H622"]],[3,7,["H3013"]],[7,11,["H4480","H4150"]],[11,13,["H1961"]],[13,14,["H4480"]],[14,19,["H2781"]],[19,20,["H5921"]],[20,24,["H4864"]]]},{"k":22839,"v":[[0,1,["H2009"]],[1,3,["H1931"]],[3,4,["H6256"]],[4,7,["H6213","(H853)"]],[7,8,["H3605"]],[8,10,["H6031"]],[10,15,["H3467","(H853)"]],[15,18,["H6760"]],[18,20,["H6908"]],[20,25,["H5080"]],[25,29,["H7760"]],[29,31,["H8416"]],[31,33,["H8034"]],[33,35,["H3605"]],[35,36,["H776"]],[36,43,["H1322"]]]},{"k":22840,"v":[[0,2,["H1931"]],[2,3,["H6256"]],[3,6,["H935"]],[6,12,["H6256"]],[12,15,["H6908"]],[15,17,["H3588"]],[17,20,["H5414"]],[20,23,["H8034"]],[23,26,["H8416"]],[26,28,["H3605"]],[28,29,["H5971"]],[29,32,["H776"]],[32,36,["H7725","(H853)"]],[36,38,["H7622"]],[38,41,["H5869"]],[41,42,["H559"]],[42,44,["H3068"]]]},{"k":22841,"v":[[0,3,["H8147"]],[3,4,["H8141"]],[4,6,["H1867"]],[6,8,["H4428"]],[8,11,["H8345"]],[11,12,["H2320"]],[12,15,["H259"]],[15,16,["H3117"]],[16,19,["H2320"]],[19,20,["H1961"]],[20,22,["H1697"]],[22,25,["H3068"]],[25,26,["H3027"]],[26,27,["H2292"]],[27,29,["H5030"]],[29,30,["H413"]],[30,31,["H2216"]],[31,33,["H1121"]],[33,35,["H7597"]],[35,36,["H6346"]],[36,38,["H3063"]],[38,40,["H413"]],[40,41,["H3091"]],[41,43,["H1121"]],[43,45,["H3087"]],[45,47,["H1419"]],[47,48,["H3548"]],[48,49,["H559"]]]},{"k":22842,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H559"]],[7,8,["H2088"]],[8,9,["H5971"]],[9,10,["H559"]],[10,12,["H6256"]],[12,14,["H3808"]],[14,15,["H935"]],[15,17,["H6256"]],[17,20,["H3068"]],[20,21,["H1004"]],[21,24,["H1129"]]]},{"k":22843,"v":[[0,2,["H1961"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H3027"]],[8,9,["H2292"]],[9,11,["H5030"]],[11,12,["H559"]]]},{"k":22844,"v":[[0,3,["H6256"]],[3,7,["H859"]],[7,9,["H3427"]],[9,12,["H5603"]],[12,13,["H1004"]],[13,15,["H2088"]],[15,16,["H1004"]],[16,18,["H2720"]]]},{"k":22845,"v":[[0,1,["H6258"]],[1,3,["H3541"]],[3,4,["H559"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,9,["H7760","H3824","H5921"]],[9,11,["H1870"]]]},{"k":22846,"v":[[0,3,["H2232"]],[3,4,["H7235"]],[4,7,["H935"]],[7,8,["H4592"]],[8,10,["H398"]],[10,15,["H369","H7646"]],[15,17,["H8354"]],[17,24,["H369","H7937"]],[24,26,["H3847"]],[26,32,["H369","H2552"]],[32,37,["H7936"]],[37,39,["H7936"]],[39,43,["H413"]],[43,45,["H6872"]],[45,47,["H5344"]]]},{"k":22847,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H7760","H3824","H5921"]],[7,9,["H1870"]]]},{"k":22848,"v":[[0,2,["H5927"]],[2,5,["H2022"]],[5,7,["H935"]],[7,8,["H6086"]],[8,10,["H1129"]],[10,12,["H1004"]],[12,17,["H7521"]],[17,24,["H3513"]],[24,25,["H559"]],[25,27,["H3068"]]]},{"k":22849,"v":[[0,2,["H6437"]],[2,3,["H413"]],[3,4,["H7235"]],[4,6,["H2009"]],[6,10,["H4592"]],[10,14,["H935"]],[14,16,["H1004"]],[16,19,["H5301"]],[19,22,["H3282","H4100"]],[22,23,["H5002"]],[23,25,["H3068"]],[25,27,["H6635"]],[27,28,["H3282"]],[28,31,["H1004"]],[31,32,["H834"]],[32,34,["H2720"]],[34,36,["H859"]],[36,37,["H7323"]],[37,39,["H376"]],[39,43,["H1004"]]]},{"k":22850,"v":[[0,1,["H5921","H3651"]],[1,3,["H8064"]],[3,4,["H5921"]],[4,7,["H3607"]],[7,9,["H4480","H2919"]],[9,12,["H776"]],[12,14,["H3607"]],[14,17,["H2981"]]]},{"k":22851,"v":[[0,3,["H7121"]],[3,6,["H2721"]],[6,7,["H5921"]],[7,9,["H776"]],[9,11,["H5921"]],[11,13,["H2022"]],[13,15,["H5921"]],[15,17,["H1715"]],[17,19,["H5921"]],[19,22,["H8492"]],[22,24,["H5921"]],[24,26,["H3323"]],[26,28,["H5921"]],[28,30,["H834"]],[30,32,["H127"]],[32,34,["H3318"]],[34,36,["H5921"]],[36,37,["H120"]],[37,39,["H5921"]],[39,40,["H929"]],[40,42,["H5921"]],[42,43,["H3605"]],[43,45,["H3018"]],[45,48,["H3709"]]]},{"k":22852,"v":[[0,2,["H2216"]],[2,4,["H1121"]],[4,6,["H7597"]],[6,8,["H3091"]],[8,10,["H1121"]],[10,12,["H3087"]],[12,14,["H1419"]],[14,15,["H3548"]],[15,17,["H3605"]],[17,19,["H7611"]],[19,22,["H5971"]],[22,23,["H8085"]],[23,25,["H6963"]],[25,28,["H3068"]],[28,30,["H430"]],[30,33,["H1697"]],[33,35,["H2292"]],[35,37,["H5030"]],[37,38,["H834"]],[38,40,["H3068"]],[40,42,["H430"]],[42,44,["H7971"]],[44,48,["H5971"]],[48,50,["H3372"]],[50,51,["H4480","H6440"]],[51,53,["H3068"]]]},{"k":22853,"v":[[0,2,["H559"]],[2,3,["H2292"]],[3,5,["H3068"]],[5,6,["H4397"]],[6,9,["H3068"]],[9,10,["H4400"]],[10,13,["H5971"]],[13,14,["H559"]],[14,15,["H589"]],[15,17,["H854"]],[17,19,["H5002"]],[19,21,["H3068"]]]},{"k":22854,"v":[[0,3,["H3068"]],[3,5,["H5782","(H853)"]],[5,7,["H7307"]],[7,9,["H2216"]],[9,11,["H1121"]],[11,13,["H7597"]],[13,14,["H6346"]],[14,16,["H3063"]],[16,19,["H7307"]],[19,21,["H3091"]],[21,23,["H1121"]],[23,25,["H3087"]],[25,27,["H1419"]],[27,28,["H3548"]],[28,31,["H7307"]],[31,33,["H3605"]],[33,35,["H7611"]],[35,38,["H5971"]],[38,41,["H935"]],[41,43,["H6213"]],[43,44,["H4399"]],[44,47,["H1004"]],[47,50,["H3068"]],[50,52,["H6635"]],[52,54,["H430"]]]},{"k":22855,"v":[[0,3,["H702"]],[3,5,["H6242"]],[5,6,["H3117"]],[6,9,["H8345"]],[9,10,["H2320"]],[10,13,["H8147"]],[13,14,["H8141"]],[14,16,["H1867"]],[16,18,["H4428"]]]},{"k":22856,"v":[[0,3,["H7637"]],[3,7,["H259"]],[7,9,["H6242"]],[9,13,["H2320"]],[13,14,["H1961"]],[14,16,["H1697"]],[16,19,["H3068"]],[19,20,["H3027"]],[20,22,["H5030"]],[22,23,["H2292"]],[23,24,["H559"]]]},{"k":22857,"v":[[0,1,["H559"]],[1,2,["H4994"]],[2,3,["H413"]],[3,4,["H2216"]],[4,6,["H1121"]],[6,8,["H7597"]],[8,9,["H6346"]],[9,11,["H3063"]],[11,13,["H413"]],[13,14,["H3091"]],[14,16,["H1121"]],[16,18,["H3087"]],[18,20,["H1419"]],[20,21,["H3548"]],[21,23,["H413"]],[23,25,["H7611"]],[25,28,["H5971"]],[28,29,["H559"]]]},{"k":22858,"v":[[0,1,["H4310"]],[1,3,["H7604"]],[3,6,["H834"]],[6,7,["H7200","(H853)"]],[7,8,["H2088"]],[8,9,["H1004"]],[9,12,["H7223"]],[12,13,["H3519"]],[13,15,["H4100"]],[15,17,["H859"]],[17,18,["H7200"]],[18,20,["H6258"]],[20,23,["H3808"]],[23,26,["H5869"]],[26,30,["H3644"]],[30,32,["H369"]]]},{"k":22859,"v":[[0,2,["H6258"]],[2,4,["H2388"]],[4,6,["H2216"]],[6,7,["H5002"]],[7,9,["H3068"]],[9,12,["H2388"]],[12,14,["H3091"]],[14,15,["H1121"]],[15,17,["H3087"]],[17,19,["H1419"]],[19,20,["H3548"]],[20,23,["H2388"]],[23,24,["H3605"]],[24,26,["H5971"]],[26,29,["H776"]],[29,30,["H5002"]],[30,32,["H3068"]],[32,34,["H6213"]],[34,35,["H3588"]],[35,36,["H589"]],[36,38,["H854"]],[38,40,["H5002"]],[40,42,["H3068"]],[42,44,["H6635"]]]},{"k":22860,"v":[[0,2,["(H853)"]],[2,4,["H1697"]],[4,5,["H834"]],[5,7,["H3772"]],[7,8,["H854"]],[8,13,["H3318"]],[13,15,["H4480","H4714"]],[15,18,["H7307"]],[18,19,["H5975"]],[19,20,["H8432"]],[20,22,["H3372"]],[22,24,["H408"]]]},{"k":22861,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,8,["H5750"]],[8,9,["H259"]],[9,10,["H1931"]],[10,14,["H4592"]],[14,16,["H589"]],[16,18,["H7493","(H853)"]],[18,20,["H8064"]],[20,23,["H776"]],[23,26,["H3220"]],[26,29,["H2724"]],[29,30,[]]]},{"k":22862,"v":[[0,4,["H7493","(H853)"]],[4,5,["H3605"]],[5,6,["H1471"]],[6,9,["H2532"]],[9,11,["H3605"]],[11,12,["H1471"]],[12,14,["H935"]],[14,18,["H4390","(H853)"]],[18,19,["H2088"]],[19,20,["H1004"]],[20,22,["H3519"]],[22,23,["H559"]],[23,25,["H3068"]],[25,27,["H6635"]]]},{"k":22863,"v":[[0,2,["H3701"]],[2,7,["H2091"]],[7,10,["H5002"]],[10,12,["H3068"]],[12,14,["H6635"]]]},{"k":22864,"v":[[0,2,["H3519"]],[2,4,["H2088"]],[4,5,["H314"]],[5,6,["H1004"]],[6,8,["H1961"]],[8,9,["H1419"]],[9,10,["H4480"]],[10,13,["H7223"]],[13,14,["H559"]],[14,16,["H3068"]],[16,18,["H6635"]],[18,21,["H2088"]],[21,22,["H4725"]],[22,25,["H5414"]],[25,26,["H7965"]],[26,27,["H5002"]],[27,29,["H3068"]],[29,31,["H6635"]]]},{"k":22865,"v":[[0,3,["H702"]],[3,5,["H6242"]],[5,9,["H8671"]],[9,13,["H8147"]],[13,14,["H8141"]],[14,16,["H1867"]],[16,17,["H1961"]],[17,19,["H1697"]],[19,22,["H3068"]],[22,23,["H413"]],[23,24,["H2292"]],[24,26,["H5030"]],[26,27,["H559"]]]},{"k":22866,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H7592"]],[7,8,["H4994","(H853)"]],[8,10,["H3548"]],[10,13,["H8451"]],[13,14,["H559"]]]},{"k":22867,"v":[[0,1,["H2005"]],[1,2,["H376"]],[2,3,["H5375"]],[3,4,["H6944"]],[4,5,["H1320"]],[5,8,["H3671"]],[8,11,["H899"]],[11,15,["H3671"]],[15,17,["H5060","H413"]],[17,18,["H3899"]],[18,20,["H5138"]],[20,22,["H3196"]],[22,24,["H8081"]],[24,26,["H3605"]],[26,27,["H3978"]],[27,31,["H6942"]],[31,34,["H3548"]],[34,35,["H6030"]],[35,37,["H559"]],[37,38,["H3808"]]]},{"k":22868,"v":[[0,2,["H559"]],[2,3,["H2292"]],[3,4,["H518"]],[4,8,["H2931"]],[8,12,["H5315"]],[12,13,["H5060"]],[13,14,["H3605"]],[14,16,["H428"]],[16,20,["H2930"]],[20,23,["H3548"]],[23,24,["H6030"]],[24,26,["H559"]],[26,30,["H2930"]]]},{"k":22869,"v":[[0,2,["H6030"]],[2,3,["H2292"]],[3,5,["H559"]],[5,6,["H3651"]],[6,8,["H2088"]],[8,9,["H5971"]],[9,11,["H3651"]],[11,13,["H2088"]],[13,14,["H1471"]],[14,15,["H6440"]],[15,17,["H5002"]],[17,19,["H3068"]],[19,21,["H3651"]],[21,23,["H3605"]],[23,24,["H4639"]],[24,27,["H3027"]],[27,30,["H834"]],[30,32,["H7126"]],[32,33,["H8033"]],[33,35,["H2931"]]]},{"k":22870,"v":[[0,2,["H6258"]],[2,5,["H4994"]],[5,6,["H7760","H3824"]],[6,7,["H4480"]],[7,8,["H2088"]],[8,9,["H3117"]],[9,11,["H4605"]],[11,13,["H4480","H2962"]],[13,15,["H68"]],[15,17,["H7760"]],[17,18,["H413"]],[18,20,["H68"]],[20,23,["H1964"]],[23,26,["H3068"]]]},{"k":22871,"v":[[0,4,["H4480","H1961"]],[4,7,["H935"]],[7,8,["H413"]],[8,10,["H6194"]],[10,12,["H6242"]],[12,15,["H1961"]],[15,17,["H6235"]],[17,20,["H935"]],[20,21,["H413"]],[21,23,["H3342"]],[23,27,["H2834"]],[27,28,["H2572"]],[28,33,["H6333"]],[33,35,["H1961"]],[35,37,["H6242"]]]},{"k":22872,"v":[[0,2,["H5221"]],[2,5,["H7711"]],[5,8,["H3420"]],[8,11,["H1259"]],[11,12,["H854"]],[12,13,["H3605"]],[13,15,["H4639"]],[15,18,["H3027"]],[18,22,["H369"]],[22,23,["H413"]],[23,25,["H5002"]],[25,27,["H3068"]]]},{"k":22873,"v":[[0,1,["H7760","H3824"]],[1,2,["H4994"]],[2,3,["H4480"]],[3,4,["H2088"]],[4,5,["H3117"]],[5,7,["H4605"]],[7,10,["H702"]],[10,12,["H6242"]],[12,13,["H4480","H3117"]],[13,16,["H8671"]],[16,19,["H4480"]],[19,21,["H3117"]],[21,22,["H834"]],[22,30,["H3245","H1964","H3068"]],[30,31,["H7760","H3824"]],[31,32,[]]]},{"k":22874,"v":[[0,3,["H2233"]],[3,4,["H5750"]],[4,7,["H4035"]],[7,10,["H5704"]],[10,12,["H1612"]],[12,16,["H8384"]],[16,19,["H7416"]],[19,22,["H2132"]],[22,23,["H6086"]],[23,25,["H3808"]],[25,27,["H5375"]],[27,28,["H4480"]],[28,29,["H2088"]],[29,30,["H3117"]],[30,33,["H1288"]],[33,34,[]]]},{"k":22875,"v":[[0,2,["H8145"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,8,["H1961"]],[8,9,["H413"]],[9,10,["H2292"]],[10,13,["H702"]],[13,15,["H6242"]],[15,19,["H2320"]],[19,20,["H559"]]]},{"k":22876,"v":[[0,1,["H559"]],[1,2,["H413"]],[2,3,["H2216"]],[3,4,["H6346"]],[4,6,["H3063"]],[6,7,["H559"]],[7,8,["H589"]],[8,10,["H7493","(H853)"]],[10,12,["H8064"]],[12,15,["H776"]]]},{"k":22877,"v":[[0,4,["H2015"]],[4,6,["H3678"]],[6,8,["H4467"]],[8,12,["H8045"]],[12,14,["H2392"]],[14,17,["H4467"]],[17,20,["H1471"]],[20,24,["H2015"]],[24,26,["H4818"]],[26,30,["H7392"]],[30,35,["H5483"]],[35,38,["H7392"]],[38,41,["H3381"]],[41,43,["H376"]],[43,46,["H2719"]],[46,49,["H251"]]]},{"k":22878,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,4,["H5002"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,11,["H3947"]],[11,14,["H2216"]],[14,16,["H5650"]],[16,18,["H1121"]],[18,20,["H7597"]],[20,21,["H5002"]],[21,23,["H3068"]],[23,26,["H7760"]],[26,30,["H2368"]],[30,31,["H3588"]],[31,34,["H977"]],[34,36,["H5002"]],[36,38,["H3068"]],[38,40,["H6635"]]]},{"k":22879,"v":[[0,3,["H8066"]],[3,4,["H2320"]],[4,7,["H8147"]],[7,8,["H8141"]],[8,10,["H1867"]],[10,11,["H1961"]],[11,13,["H1697"]],[13,16,["H3068"]],[16,17,["H413"]],[17,18,["H2148"]],[18,20,["H1121"]],[20,22,["H1296"]],[22,24,["H1121"]],[24,26,["H5714"]],[26,28,["H5030"]],[28,29,["H559"]]]},{"k":22880,"v":[[0,2,["H3068"]],[2,6,["H7107","H7110"]],[6,7,["H5921"]],[7,9,["H1"]]]},{"k":22881,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,11,["H6635"]],[11,12,["H7725"]],[12,14,["H413"]],[14,16,["H5002"]],[16,18,["H3068"]],[18,20,["H6635"]],[20,24,["H7725"]],[24,25,["H413"]],[25,27,["H559"]],[27,29,["H3068"]],[29,31,["H6635"]]]},{"k":22882,"v":[[0,1,["H1961"]],[1,3,["H408"]],[3,6,["H1"]],[6,7,["H413"]],[7,8,["H834"]],[8,10,["H7223"]],[10,11,["H5030"]],[11,13,["H7121"]],[13,14,["H559"]],[14,15,["H3541"]],[15,16,["H559"]],[16,18,["H3068"]],[18,20,["H6635"]],[20,21,["H7725"]],[21,23,["H4994"]],[23,26,["H7451"]],[26,27,["H4480","H1870"]],[27,31,["H7451"]],[31,32,["H4611"]],[32,36,["H3808"]],[36,37,["H8085"]],[37,38,["H3808"]],[38,39,["H7181"]],[39,40,["H413"]],[40,42,["H5002"]],[42,44,["H3068"]]]},{"k":22883,"v":[[0,2,["H1"]],[2,3,["H346"]],[3,5,["H1992"]],[5,8,["H5030"]],[8,11,["H2421"]],[11,13,["H5769"]]]},{"k":22884,"v":[[0,1,["H389"]],[1,3,["H1697"]],[3,6,["H2706"]],[6,7,["H834"]],[7,9,["H6680","(H853)"]],[9,11,["H5650"]],[11,13,["H5030"]],[13,16,["H3808"]],[16,18,["H5381"]],[18,21,["H1"]],[21,24,["H7725"]],[24,26,["H559"]],[26,28,["H834"]],[28,30,["H3068"]],[30,32,["H6635"]],[32,33,["H2161"]],[33,35,["H6213"]],[35,41,["H1870"]],[41,46,["H4611"]],[46,47,["H3651"]],[47,50,["H6213"]],[50,51,["H854"]],[51,52,[]]]},{"k":22885,"v":[[0,3,["H702"]],[3,5,["H6242"]],[5,6,["H3117"]],[6,9,["H6249","H6240"]],[9,10,["H2320"]],[10,11,["H1931"]],[11,14,["H2320"]],[14,15,["H7627"]],[15,18,["H8147"]],[18,19,["H8141"]],[19,21,["H1867"]],[21,22,["H1961"]],[22,24,["H1697"]],[24,27,["H3068"]],[27,28,["H413"]],[28,29,["H2148"]],[29,31,["H1121"]],[31,33,["H1296"]],[33,35,["H1121"]],[35,37,["H5714"]],[37,39,["H5030"]],[39,40,["H559"]]]},{"k":22886,"v":[[0,2,["H7200"]],[2,4,["H3915"]],[4,6,["H2009"]],[6,8,["H376"]],[8,9,["H7392"]],[9,10,["H5921"]],[10,12,["H122"]],[12,13,["H5483"]],[13,15,["H1931"]],[15,16,["H5975"]],[16,17,["H996"]],[17,20,["H1918"]],[20,21,["H834"]],[21,25,["H4699"]],[25,27,["H310"]],[27,31,["H122"]],[31,32,["H5483"]],[32,33,["H8320"]],[33,35,["H3836"]]]},{"k":22887,"v":[[0,2,["H559"]],[2,6,["H113"]],[6,7,["H4100"]],[7,9,["H428"]],[9,12,["H4397"]],[12,14,["H1696"]],[14,17,["H559"]],[17,18,["H413"]],[18,20,["H589"]],[20,22,["H7200"]],[22,24,["H4100"]],[24,25,["H428"]],[25,26,[]]]},{"k":22888,"v":[[0,3,["H376"]],[3,5,["H5975"]],[5,6,["H996"]],[6,9,["H1918"]],[9,10,["H6030"]],[10,12,["H559"]],[12,13,["H428"]],[13,16,["H834"]],[16,18,["H3068"]],[18,20,["H7971"]],[20,25,["H1980"]],[25,28,["H776"]]]},{"k":22889,"v":[[0,3,["H6030","(H853)"]],[3,5,["H4397"]],[5,8,["H3068"]],[8,10,["H5975"]],[10,11,["H996"]],[11,14,["H1918"]],[14,16,["H559"]],[16,22,["H1980"]],[22,25,["H776"]],[25,27,["H2009"]],[27,28,["H3605"]],[28,30,["H776"]],[30,32,["H3427"]],[32,36,["H8252"]]]},{"k":22890,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H6030"]],[7,9,["H559"]],[9,11,["H3068"]],[11,13,["H6635"]],[13,15,["H5704","H4970"]],[15,17,["H859"]],[17,18,["H3808"]],[18,21,["H7355","(H853)"]],[21,22,["H3389"]],[22,26,["H5892"]],[26,28,["H3063"]],[28,30,["H834"]],[30,34,["H2194"]],[34,35,["H2088"]],[35,38,["H7657"]],[38,39,["H8141"]]]},{"k":22891,"v":[[0,3,["H3068"]],[3,4,["H6030","(H853)"]],[4,6,["H4397"]],[6,8,["H1696"]],[8,12,["H2896"]],[12,13,["H1697"]],[13,15,["H5150"]],[15,16,["H1697"]]]},{"k":22892,"v":[[0,3,["H4397"]],[3,5,["H1696"]],[5,8,["H559"]],[8,9,["H413"]],[9,11,["H7121"]],[11,13,["H559"]],[13,14,["H3541"]],[14,15,["H559"]],[15,17,["H3068"]],[17,19,["H6635"]],[19,22,["H7065"]],[22,24,["H3389"]],[24,27,["H6726"]],[27,30,["H1419"]],[30,31,["H7068"]]]},{"k":22893,"v":[[0,2,["H589"]],[2,4,["H1419"]],[4,6,["H7107","H7110"]],[6,7,["H5921"]],[7,9,["H1471"]],[9,13,["H7600"]],[13,14,["H834"]],[14,15,["H589"]],[15,19,["H4592"]],[19,20,["H7107"]],[20,22,["H1992"]],[22,23,["H5826"]],[23,26,["H7451"]]]},{"k":22894,"v":[[0,1,["H3651"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,8,["H7725"]],[8,10,["H3389"]],[10,12,["H7356"]],[12,14,["H1004"]],[14,17,["H1129"]],[17,20,["H5002"]],[20,22,["H3068"]],[22,24,["H6635"]],[24,27,["H6957"]],[27,31,["H5186"]],[31,32,["H5921"]],[32,33,["H3389"]]]},{"k":22895,"v":[[0,1,["H7121"]],[1,2,["H5750"]],[2,3,["H559"]],[3,4,["H3541"]],[4,5,["H559"]],[5,7,["H3068"]],[7,9,["H6635"]],[9,11,["H5892"]],[11,13,["H4480","H2896"]],[13,15,["H5750"]],[15,18,["H6327"]],[18,21,["H3068"]],[21,23,["H5750"]],[23,24,["H5162","(H853)"]],[24,25,["H6726"]],[25,28,["H5750"]],[28,29,["H977"]],[29,30,["H3389"]]]},{"k":22896,"v":[[0,4,["H5375","(H853)"]],[4,6,["H5869"]],[6,8,["H7200"]],[8,10,["H2009"]],[10,11,["H702"]],[11,12,["H7161"]]]},{"k":22897,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H4397"]],[6,8,["H1696"]],[8,11,["H4100"]],[11,13,["H428"]],[13,16,["H559","H413"]],[16,18,["H428"]],[18,21,["H7161"]],[21,22,["H834"]],[22,24,["H2219","(H853)"]],[24,25,["H3063","(H853)"]],[25,26,["H3478"]],[26,28,["H3389"]]]},{"k":22898,"v":[[0,3,["H3068"]],[3,4,["H7200"]],[4,6,["H702"]],[6,7,["H2796"]]]},{"k":22899,"v":[[0,2,["H559"]],[2,4,["H4100"]],[4,5,["H935"]],[5,6,["H428"]],[6,8,["H6213"]],[8,11,["H559"]],[11,12,["H559"]],[12,13,["H428"]],[13,16,["H7161"]],[16,17,["H834"]],[17,19,["H2219","(H853)"]],[19,20,["H3063"]],[20,23,["H3808"]],[23,24,["H376"]],[24,27,["H5375"]],[27,29,["H7218"]],[29,31,["H428"]],[31,33,["H935"]],[33,35,["H2729"]],[35,39,["H3034","(H853)"]],[39,41,["H7161"]],[41,44,["H1471"]],[44,47,["H5375"]],[47,49,["H7161"]],[49,50,["H413"]],[50,52,["H776"]],[52,54,["H3063"]],[54,56,["H2219"]],[56,57,[]]]},{"k":22900,"v":[[0,3,["H5375"]],[3,5,["H5869"]],[5,8,["H7200"]],[8,10,["H2009"]],[10,12,["H376"]],[12,15,["H4060"]],[15,16,["H2256"]],[16,19,["H3027"]]]},{"k":22901,"v":[[0,2,["H559"]],[2,4,["H575"]],[4,5,["H1980"]],[5,6,["H859"]],[6,9,["H559"]],[9,10,["H413"]],[10,13,["H4058","(H853)"]],[13,14,["H3389"]],[14,16,["H7200"]],[16,17,["H4100"]],[17,20,["H7341"]],[20,23,["H4100"]],[23,26,["H753"]],[26,27,[]]]},{"k":22902,"v":[[0,2,["H2009"]],[2,4,["H4397"]],[4,6,["H1696"]],[6,10,["H3318"]],[10,12,["H312"]],[12,13,["H4397"]],[13,15,["H3318"]],[15,17,["H7125"]],[17,18,[]]]},{"k":22903,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H7323"]],[5,6,["H1696"]],[6,7,["H413"]],[7,8,["H1975"]],[8,10,["H5288"]],[10,11,["H559"]],[11,12,["H3389"]],[12,15,["H3427"]],[15,19,["H6519"]],[19,22,["H4480","H7230"]],[22,24,["H120"]],[24,26,["H929"]],[26,27,["H8432"]]]},{"k":22904,"v":[[0,2,["H589"]],[2,3,["H5002"]],[3,5,["H3068"]],[5,7,["H1961"]],[7,11,["H2346"]],[11,13,["H784"]],[13,15,["H5439"]],[15,18,["H1961"]],[18,20,["H3519"]],[20,23,["H8432"]],[23,25,[]]]},{"k":22905,"v":[[0,1,["H1945"]],[1,2,["H1945"]],[2,6,["H5127"]],[6,9,["H4480","H776"]],[9,12,["H6828"]],[12,13,["H5002"]],[13,15,["H3068"]],[15,16,["H3588"]],[16,21,["H6566","(H853)"]],[21,24,["H702"]],[24,25,["H7307"]],[25,28,["H8064"]],[28,29,["H5002"]],[29,31,["H3068"]]]},{"k":22906,"v":[[0,2,["H4422"]],[2,3,["H1945"]],[3,4,["H6726"]],[4,6,["H3427"]],[6,9,["H1323"]],[9,11,["H894"]]]},{"k":22907,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,8,["H310"]],[8,10,["H3519"]],[10,13,["H7971"]],[13,15,["H413"]],[15,17,["H1471"]],[17,19,["H7997"]],[19,21,["H3588"]],[21,24,["H5060"]],[24,26,["H5060"]],[26,28,["H892"]],[28,31,["H5869"]]]},{"k":22908,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,5,["H5130","(H853)"]],[5,7,["H3027"]],[7,8,["H5921"]],[8,13,["H1961"]],[13,15,["H7998"]],[15,18,["H5650"]],[18,22,["H3045"]],[22,23,["H3588"]],[23,25,["H3068"]],[25,27,["H6635"]],[27,29,["H7971"]],[29,30,[]]]},{"k":22909,"v":[[0,1,["H7442"]],[1,3,["H8055"]],[3,5,["H1323"]],[5,7,["H6726"]],[7,8,["H3588"]],[8,9,["H2009"]],[9,11,["H935"]],[11,15,["H7931"]],[15,18,["H8432"]],[18,21,["H5002"]],[21,23,["H3068"]]]},{"k":22910,"v":[[0,2,["H7227"]],[2,3,["H1471"]],[3,6,["H3867"]],[6,7,["H413"]],[7,9,["H3068"]],[9,11,["H1931"]],[11,12,["H3117"]],[12,15,["H1961"]],[15,17,["H5971"]],[17,21,["H7931"]],[21,24,["H8432"]],[24,30,["H3045"]],[30,31,["H3588"]],[31,33,["H3068"]],[33,35,["H6635"]],[35,37,["H7971"]],[37,39,["H413"]],[39,40,[]]]},{"k":22911,"v":[[0,3,["H3068"]],[3,5,["H5157","(H853)"]],[5,6,["H3063"]],[6,8,["H2506"]],[8,9,["H5921"]],[9,11,["H6944"]],[11,12,["H127"]],[12,15,["H977"]],[15,16,["H3389"]],[16,17,["H5750"]]]},{"k":22912,"v":[[0,2,["H2013"]],[2,4,["H3605"]],[4,5,["H1320"]],[5,6,["H4480","H6440"]],[6,8,["H3068"]],[8,9,["H3588"]],[9,13,["H5782"]],[13,17,["H6944"]],[17,18,["H4480","H4583"]]]},{"k":22913,"v":[[0,3,["H7200"]],[3,4,["(H853)"]],[4,5,["H3091"]],[5,7,["H1419"]],[7,8,["H3548"]],[8,9,["H5975"]],[9,10,["H6440"]],[10,12,["H4397"]],[12,15,["H3068"]],[15,17,["H7854"]],[17,18,["H5975"]],[18,19,["H5921"]],[19,22,["H3225"]],[22,24,["H7853"]],[24,25,[]]]},{"k":22914,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,6,["H7854"]],[6,8,["H3068"]],[8,9,["H1605"]],[9,12,["H7854"]],[12,15,["H3068"]],[15,18,["H977"]],[18,19,["H3389"]],[19,20,["H1605"]],[20,23,["H3808"]],[23,24,["H2088"]],[24,26,["H181"]],[26,27,["H5337"]],[27,31,["H4480","H784"]]]},{"k":22915,"v":[[0,2,["H3091"]],[2,3,["H1961"]],[3,4,["H3847"]],[4,6,["H6674"]],[6,7,["H899"]],[7,9,["H5975"]],[9,10,["H6440"]],[10,12,["H4397"]]]},{"k":22916,"v":[[0,3,["H6030"]],[3,5,["H559"]],[5,6,["H413"]],[6,9,["H5975"]],[9,10,["H6440"]],[10,12,["H559"]],[12,14,["H5493"]],[14,16,["H6674"]],[16,17,["H899"]],[17,18,["H4480","H5921"]],[18,21,["H413"]],[21,24,["H559"]],[24,25,["H7200"]],[25,30,["H5771"]],[30,32,["H5674"]],[32,33,["H4480","H5921"]],[33,38,["H3847"]],[38,43,["H4254"]]]},{"k":22917,"v":[[0,3,["H559"]],[3,6,["H7760"]],[6,8,["H2889"]],[8,9,["H6797"]],[9,10,["H5921"]],[10,12,["H7218"]],[12,15,["H7760"]],[15,17,["H2889"]],[17,18,["H6797"]],[18,19,["H5921"]],[19,21,["H7218"]],[21,23,["H3847"]],[23,26,["H899"]],[26,29,["H4397"]],[29,32,["H3068"]],[32,34,["H5975"]]]},{"k":22918,"v":[[0,3,["H4397"]],[3,6,["H3068"]],[6,7,["H5749"]],[7,9,["H3091"]],[9,10,["H559"]]]},{"k":22919,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H518"]],[7,10,["H1980"]],[10,13,["H1870"]],[13,15,["H518"]],[15,18,["H8104","(H853)"]],[18,20,["H4931"]],[20,22,["H859"]],[22,24,["H1571"]],[24,25,["H1777","(H853)"]],[25,27,["H1004"]],[27,30,["H1571"]],[30,31,["H8104"]],[31,32,["(H853)"]],[32,33,["H2691"]],[33,37,["H5414"]],[37,41,["H4108"]],[41,42,["H996"]],[42,43,["H428"]],[43,45,["H5975"]],[45,46,[]]]},{"k":22920,"v":[[0,1,["H8085"]],[1,2,["H4994"]],[2,4,["H3091"]],[4,6,["H1419"]],[6,7,["H3548"]],[7,8,["H859"]],[8,11,["H7453"]],[11,13,["H3427"]],[13,14,["H6440"]],[14,16,["H3588"]],[16,17,["H1992"]],[17,19,["H376"]],[19,20,["H4159"]],[20,22,["H3588"]],[22,23,["H2009"]],[23,27,["H935","(H853)"]],[27,29,["H5650"]],[29,31,["H6780"]]]},{"k":22921,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H68"]],[4,5,["H834"]],[5,8,["H5414"]],[8,9,["H6440"]],[9,10,["H3091"]],[10,11,["H5921"]],[11,12,["H259"]],[12,13,["H68"]],[13,16,["H7651"]],[16,17,["H5869"]],[17,18,["H2009"]],[18,21,["H6605"]],[21,23,["H6603"]],[23,25,["H5002"]],[25,27,["H3068"]],[27,29,["H6635"]],[29,33,["H4185","(H853)"]],[33,35,["H5771"]],[35,37,["H1931"]],[37,38,["H776"]],[38,40,["H259"]],[40,41,["H3117"]]]},{"k":22922,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,4,["H5002"]],[4,6,["H3068"]],[6,8,["H6635"]],[8,11,["H7121"]],[11,13,["H376"]],[13,15,["H7453"]],[15,16,["H413","H8478"]],[16,18,["H1612"]],[18,20,["H413","H8478"]],[20,23,["H8384"]]]},{"k":22923,"v":[[0,3,["H4397"]],[3,5,["H1696"]],[5,9,["H7725"]],[9,11,["H5782"]],[11,15,["H376"]],[15,16,["H834"]],[16,18,["H5782"]],[18,22,["H4480","H8142"]]]},{"k":22924,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H4100"]],[5,6,["H7200"]],[6,7,["H859"]],[7,10,["H559"]],[10,13,["H7200"]],[13,15,["H2009"]],[15,17,["H4501"]],[17,18,["H3605"]],[18,20,["H2091"]],[20,23,["H1543"]],[23,24,["H5921"]],[24,26,["H7218"]],[26,31,["H7651"]],[31,32,["H5216"]],[32,33,["H5921"]],[33,35,["H7651"]],[35,36,["H4166"]],[36,39,["H7651"]],[39,40,["H5216"]],[40,41,["H834"]],[41,43,["H5921"]],[43,45,["H7218"]],[45,46,[]]]},{"k":22925,"v":[[0,2,["H8147"]],[2,4,["H2132"]],[4,5,["H5921"]],[5,7,["H259"]],[7,10,["H4480","H3225"]],[10,14,["H1543"]],[14,17,["H259"]],[17,18,["H5921"]],[18,20,["H8040"]],[20,22,[]]]},{"k":22926,"v":[[0,3,["H6030"]],[3,5,["H559"]],[5,6,["H413"]],[6,8,["H4397"]],[8,10,["H1696"]],[10,13,["H559"]],[13,14,["H4100"]],[14,16,["H428"]],[16,18,["H113"]]]},{"k":22927,"v":[[0,3,["H4397"]],[3,5,["H1696"]],[5,8,["H6030"]],[8,10,["H559"]],[10,11,["H413"]],[11,13,["H3045"]],[13,15,["H3808"]],[15,16,["H4100"]],[16,17,["H428"]],[17,21,["H559"]],[21,22,["H3808"]],[22,24,["H113"]]]},{"k":22928,"v":[[0,3,["H6030"]],[3,5,["H559"]],[5,6,["H413"]],[6,8,["H559"]],[8,9,["H2088"]],[9,12,["H1697"]],[12,15,["H3068"]],[15,16,["H413"]],[16,17,["H2216"]],[17,18,["H559"]],[18,19,["H3808"]],[19,21,["H2428"]],[21,22,["H3808"]],[22,24,["H3581"]],[24,25,["H3588","H518"]],[25,28,["H7307"]],[28,29,["H559"]],[29,31,["H3068"]],[31,33,["H6635"]]]},{"k":22929,"v":[[0,1,["H4310"]],[1,3,["H859"]],[3,5,["H1419"]],[5,6,["H2022"]],[6,7,["H6440"]],[7,8,["H2216"]],[8,13,["H4334"]],[13,18,["H3318","(H853)"]],[18,20,["H68","H7222"]],[20,23,["H8663"]],[23,25,["H2580"]],[25,26,["H2580"]],[26,28,[]]]},{"k":22930,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":22931,"v":[[0,2,["H3027"]],[2,4,["H2216"]],[4,8,["H3245"]],[8,10,["H2088"]],[10,11,["H1004"]],[11,13,["H3027"]],[13,16,["H1214"]],[16,21,["H3045"]],[21,22,["H3588"]],[22,24,["H3068"]],[24,26,["H6635"]],[26,28,["H7971"]],[28,30,["H413"]],[30,31,[]]]},{"k":22932,"v":[[0,1,["H3588"]],[1,2,["H4310"]],[2,4,["H936"]],[4,6,["H3117"]],[6,9,["H6996"]],[9,13,["H8055"]],[13,16,["H7200","(H853)"]],[16,18,["H68","H913"]],[18,21,["H3027"]],[21,23,["H2216"]],[23,25,["H428"]],[25,26,["H7651"]],[26,27,["H1992"]],[27,30,["H5869"]],[30,33,["H3068"]],[33,38,["H7751"]],[38,41,["H3605"]],[41,42,["H776"]]]},{"k":22933,"v":[[0,2,["H6030"]],[2,5,["H559"]],[5,6,["H413"]],[6,8,["H4100"]],[8,10,["H428"]],[10,11,["H8147"]],[11,13,["H2132"]],[13,14,["H5921"]],[14,16,["H3225"]],[16,20,["H4501"]],[20,22,["H5921"]],[22,24,["H8040"]],[24,26,[]]]},{"k":22934,"v":[[0,3,["H6030"]],[3,4,["H8145"]],[4,6,["H559"]],[6,7,["H413"]],[7,9,["H4100"]],[9,12,["H8147"]],[12,13,["H2132"]],[13,14,["H7641"]],[14,15,["H834"]],[15,16,["H3027"]],[16,18,["H8147"]],[18,19,["H2091"]],[19,20,["H6804"]],[20,21,["H7324"]],[21,23,["H2091"]],[23,26,["H4480","H5921"]],[26,27,[]]]},{"k":22935,"v":[[0,3,["H559","H413"]],[3,6,["H559"]],[6,7,["H3045"]],[7,9,["H3808"]],[9,10,["H4100"]],[10,11,["H428"]],[11,15,["H559"]],[15,16,["H3808"]],[16,18,["H113"]]]},{"k":22936,"v":[[0,2,["H559"]],[2,4,["H428"]],[4,7,["H8147"]],[7,9,["H1121","H3323"]],[9,11,["H5975"]],[11,12,["H5921"]],[12,14,["H113"]],[14,17,["H3605"]],[17,18,["H776"]]]},{"k":22937,"v":[[0,3,["H7725"]],[3,6,["H5375"]],[6,8,["H5869"]],[8,10,["H7200"]],[10,12,["H2009"]],[12,14,["H5774"]],[14,15,["H4039"]]]},{"k":22938,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H4100"]],[6,7,["H7200"]],[7,8,["H859"]],[8,11,["H559"]],[11,12,["H589"]],[12,13,["H7200"]],[13,15,["H5774"]],[15,16,["H4039"]],[16,18,["H753"]],[18,21,["H6242"]],[21,22,["H520"]],[22,25,["H7341"]],[25,27,["H6235"]],[27,28,["H520"]]]},{"k":22939,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H2063"]],[6,9,["H423"]],[9,12,["H3318"]],[12,13,["H5921"]],[13,15,["H6440"]],[15,18,["H3605"]],[18,19,["H776"]],[19,20,["H3588"]],[20,22,["H3605"]],[22,24,["H1589"]],[24,28,["H5352"]],[28,32,["H4480","H2088"]],[32,35,["H3644"]],[35,37,["H3605"]],[37,40,["H7650"]],[40,44,["H5352"]],[44,48,["H4480","H2088"]],[48,51,["H3644"]]]},{"k":22940,"v":[[0,5,["H3318"]],[5,6,["H5002"]],[6,8,["H3068"]],[8,10,["H6635"]],[10,14,["H935"]],[14,15,["H413"]],[15,17,["H1004"]],[17,20,["H1590"]],[20,22,["H413"]],[22,24,["H1004"]],[24,28,["H7650"]],[28,29,["H8267"]],[29,32,["H8034"]],[32,36,["H3885"]],[36,39,["H8432"]],[39,42,["H1004"]],[42,45,["H3615"]],[45,49,["H6086"]],[49,53,["H68"]],[53,54,[]]]},{"k":22941,"v":[[0,3,["H4397"]],[3,5,["H1696"]],[5,9,["H3318"]],[9,11,["H559"]],[11,12,["H413"]],[12,15,["H5375"]],[15,16,["H4994"]],[16,18,["H5869"]],[18,20,["H7200"]],[20,21,["H4100"]],[21,23,["H2063"]],[23,26,["H3318"]]]},{"k":22942,"v":[[0,3,["H559"]],[3,4,["H4100"]],[4,6,["H1931"]],[6,9,["H559"]],[9,10,["H2063"]],[10,13,["H374"]],[13,16,["H3318"]],[16,18,["H559"]],[18,20,["H2063"]],[20,23,["H5869"]],[23,25,["H3605"]],[25,27,["H776"]]]},{"k":22943,"v":[[0,2,["H2009"]],[2,6,["H5375"]],[6,8,["H3603"]],[8,10,["H5777"]],[10,12,["H2063"]],[12,14,["H259"]],[14,15,["H802"]],[15,17,["H3427"]],[17,20,["H8432"]],[20,23,["H374"]]]},{"k":22944,"v":[[0,3,["H559"]],[3,4,["H2063"]],[4,6,["H7564"]],[6,9,["H7993"]],[9,11,["H413"]],[11,13,["H8432"]],[13,16,["H374"]],[16,19,["H7993","(H853)"]],[19,21,["H68"]],[21,23,["H5777"]],[23,24,["H413"]],[24,26,["H6310"]],[26,27,[]]]},{"k":22945,"v":[[0,4,["H5375"]],[4,6,["H5869"]],[6,8,["H7200"]],[8,10,["H2009"]],[10,13,["H3318"]],[13,14,["H8147"]],[14,15,["H802"]],[15,18,["H7307"]],[18,22,["H3671"]],[22,24,["H2007"]],[24,26,["H3671"]],[26,29,["H3671"]],[29,32,["H2624"]],[32,36,["H5375","(H853)"]],[36,38,["H374"]],[38,39,["H996"]],[39,41,["H776"]],[41,44,["H8064"]]]},{"k":22946,"v":[[0,2,["H559"]],[2,4,["H413"]],[4,6,["H4397"]],[6,8,["H1696"]],[8,11,["H575"]],[11,13,["H1992"]],[13,14,["H1980","(H853)"]],[14,16,["H374"]]]},{"k":22947,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,7,["H1129"]],[7,10,["H1004"]],[10,13,["H776"]],[13,15,["H8152"]],[15,20,["H3559"]],[20,22,["H5117"]],[22,23,["H8033"]],[23,24,["H5921"]],[24,27,["H4369"]]]},{"k":22948,"v":[[0,3,["H7725"]],[3,6,["H5375"]],[6,8,["H5869"]],[8,10,["H7200"]],[10,12,["H2009"]],[12,17,["H3318","H702","H4818"]],[17,19,["H4480","H996"]],[19,20,["H8147"]],[20,21,["H2022"]],[21,24,["H2022"]],[24,26,["H2022"]],[26,28,["H5178"]]]},{"k":22949,"v":[[0,3,["H7223"]],[3,4,["H4818"]],[4,6,["H122"]],[6,7,["H5483"]],[7,11,["H8145"]],[11,12,["H4818"]],[12,13,["H7838"]],[13,14,["H5483"]]]},{"k":22950,"v":[[0,4,["H7992"]],[4,5,["H4818"]],[5,6,["H3836"]],[6,7,["H5483"]],[7,11,["H7243"]],[11,12,["H4818"]],[12,13,["H1261"]],[13,15,["H554"]],[15,16,["H5483"]]]},{"k":22951,"v":[[0,3,["H6030"]],[3,5,["H559"]],[5,6,["H413"]],[6,8,["H4397"]],[8,10,["H1696"]],[10,13,["H4100"]],[13,15,["H428"]],[15,17,["H113"]]]},{"k":22952,"v":[[0,3,["H4397"]],[3,4,["H6030"]],[4,6,["H559"]],[6,7,["H413"]],[7,9,["H428"]],[9,12,["H702"]],[12,13,["H7307"]],[13,16,["H8064"]],[16,19,["H3318"]],[19,21,["H4480","H3320"]],[21,22,["H5921"]],[22,24,["H113"]],[24,26,["H3605"]],[26,28,["H776"]]]},{"k":22953,"v":[[0,2,["H7838"]],[2,3,["H5483"]],[3,4,["H834"]],[4,8,["H3318"]],[8,9,["H413"]],[9,11,["H6828"]],[11,12,["H776"]],[12,15,["H3836"]],[15,17,["H3318"]],[17,18,["H413","H310"]],[18,22,["H1261"]],[22,24,["H3318"]],[24,25,["H413"]],[25,27,["H8486"]],[27,28,["H776"]]]},{"k":22954,"v":[[0,3,["H554"]],[3,5,["H3318"]],[5,7,["H1245"]],[7,9,["H1980"]],[9,16,["H1980"]],[16,19,["H776"]],[19,22,["H559"]],[22,25,["H1980"]],[25,29,["H1980"]],[29,32,["H776"]],[32,38,["H1980"]],[38,41,["H776"]]]},{"k":22955,"v":[[0,2,["H2199"]],[2,7,["H1696"]],[7,8,["H413"]],[8,10,["H559"]],[10,11,["H7200"]],[11,14,["H3318"]],[14,15,["H413"]],[15,17,["H6828"]],[17,18,["H776"]],[18,20,["H5117","(H853)"]],[20,22,["H7307"]],[22,25,["H6828"]],[25,26,["H776"]]]},{"k":22956,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,10,["H559"]]]},{"k":22957,"v":[[0,1,["H3947"]],[1,2,["H4480","H854"]],[2,6,["H1473"]],[6,9,["H4480","H2469"]],[9,10,["H4480","H854"]],[10,11,["H2900"]],[11,13,["H4480","H854"]],[13,14,["H3048"]],[14,15,["H834"]],[15,17,["H935"]],[17,19,["H4480","H894"]],[19,21,["H935"]],[21,22,["H859"]],[22,24,["H1931"]],[24,25,["H3117"]],[25,27,["H935"]],[27,30,["H1004"]],[30,32,["H2977"]],[32,34,["H1121"]],[34,36,["H6846"]]]},{"k":22958,"v":[[0,2,["H3947"]],[2,3,["H3701"]],[3,5,["H2091"]],[5,7,["H6213"]],[7,8,["H5850"]],[8,10,["H7760"]],[10,14,["H7218"]],[14,16,["H3091"]],[16,18,["H1121"]],[18,20,["H3087"]],[20,22,["H1419"]],[22,23,["H3548"]]]},{"k":22959,"v":[[0,2,["H559"]],[2,3,["H413"]],[3,5,["H559"]],[5,6,["H3541"]],[6,7,["H559"]],[7,9,["H3068"]],[9,11,["H6635"]],[11,12,["H559"]],[12,13,["H2009"]],[13,15,["H376"]],[15,17,["H8034"]],[17,20,["H6780"]],[20,25,["H6779"]],[25,29,["H4480","H8478"]],[29,33,["H1129","(H853)"]],[33,35,["H1964"]],[35,38,["H3068"]]]},{"k":22960,"v":[[0,2,["H1931"]],[2,4,["H1129","(H853)"]],[4,6,["H1964"]],[6,9,["H3068"]],[9,11,["H1931"]],[11,13,["H5375"]],[13,15,["H1935"]],[15,18,["H3427"]],[18,20,["H4910"]],[20,21,["H5921"]],[21,23,["H3678"]],[23,27,["H1961"]],[27,29,["H3548"]],[29,30,["H5921"]],[30,32,["H3678"]],[32,35,["H6098"]],[35,37,["H7965"]],[37,39,["H1961"]],[39,40,["H996"]],[40,42,["H8147"]]]},{"k":22961,"v":[[0,3,["H5850"]],[3,5,["H1961"]],[5,7,["H2494"]],[7,10,["H2900"]],[10,13,["H3048"]],[13,16,["H2581"]],[16,18,["H1121"]],[18,20,["H6846"]],[20,23,["H2146"]],[23,26,["H1964"]],[26,29,["H3068"]]]},{"k":22962,"v":[[0,6,["H7350"]],[6,8,["H935"]],[8,10,["H1129"]],[10,13,["H1964"]],[13,16,["H3068"]],[16,20,["H3045"]],[20,21,["H3588"]],[21,23,["H3068"]],[23,25,["H6635"]],[25,27,["H7971"]],[27,29,["H413"]],[29,36,["H1961"]],[36,37,["H518"]],[37,41,["H8085","H8085"]],[41,43,["H6963"]],[43,46,["H3068"]],[46,48,["H430"]]]},{"k":22963,"v":[[0,5,["H1961"]],[5,8,["H702"]],[8,9,["H8141"]],[9,11,["H4428"]],[11,12,["H1867"]],[12,15,["H1697"]],[15,18,["H3068"]],[18,19,["H1961"]],[19,20,["H413"]],[20,21,["H2148"]],[21,24,["H702"]],[24,28,["H8671"]],[28,29,["H2320"]],[29,32,["H3691"]]]},{"k":22964,"v":[[0,4,["H7971"]],[4,9,["H1008"]],[9,10,["H8272"]],[10,12,["H7278"]],[12,15,["H376"]],[15,17,["H2470","(H853)"]],[17,18,["H6440"]],[18,20,["H3068"]]]},{"k":22965,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H3548"]],[6,7,["H834"]],[7,11,["H1004"]],[11,14,["H3068"]],[14,16,["H6635"]],[16,18,["H413"]],[18,20,["H5030"]],[20,21,["H559"]],[21,24,["H1058"]],[24,27,["H2549"]],[27,28,["H2320"]],[28,30,["H5144"]],[30,31,["H834"]],[31,34,["H6213"]],[34,35,["H2088"]],[35,37,["H4100"]],[37,38,["H8141"]]]},{"k":22966,"v":[[0,2,["H1961"]],[2,4,["H1697"]],[4,7,["H3068"]],[7,9,["H6635"]],[9,10,["H413"]],[10,12,["H559"]]]},{"k":22967,"v":[[0,1,["H559"]],[1,2,["H413"]],[2,3,["H3605"]],[3,5,["H5971"]],[5,8,["H776"]],[8,10,["H413"]],[10,12,["H3548"]],[12,13,["H559"]],[13,14,["H3588"]],[14,16,["H6684"]],[16,18,["H5594"]],[18,21,["H2549"]],[21,23,["H7637"]],[23,26,["H2088"]],[26,27,["H7657"]],[27,28,["H8141"]],[28,33,["H6684","H6684"]],[33,38,["H589"]]]},{"k":22968,"v":[[0,2,["H3588"]],[2,5,["H398"]],[5,7,["H3588"]],[7,10,["H8354"]],[10,12,["H3808"]],[12,13,["H859"]],[13,14,["H398"]],[14,18,["H8354"]],[18,20,[]]]},{"k":22969,"v":[[0,3,["H3808"]],[3,4,["(H853)"]],[4,6,["H1697"]],[6,7,["H834"]],[7,9,["H3068"]],[9,11,["H7121"]],[11,12,["H3027"]],[12,14,["H7223"]],[14,15,["H5030"]],[15,17,["H3389"]],[17,18,["H1961"]],[18,19,["H3427"]],[19,22,["H7961"]],[22,25,["H5892"]],[25,28,["H5439"]],[28,32,["H3427"]],[32,34,["H5045"]],[34,37,["H8219"]]]},{"k":22970,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,7,["H1961"]],[7,8,["H413"]],[8,9,["H2148"]],[9,10,["H559"]]]},{"k":22971,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H559"]],[7,8,["H8199"]],[8,9,["H571"]],[9,10,["H4941"]],[10,12,["H6213"]],[12,13,["H2617"]],[13,15,["H7356"]],[15,17,["H376"]],[17,18,["H854"]],[18,20,["H251"]]]},{"k":22972,"v":[[0,2,["H6231"]],[2,3,["H408"]],[3,5,["H490"]],[5,8,["H3490"]],[8,10,["H1616"]],[10,13,["H6041"]],[13,16,["H408"]],[16,19,["H2803"]],[19,20,["H7451","H376"]],[20,23,["H251"]],[23,26,["H3824"]]]},{"k":22973,"v":[[0,3,["H3985"]],[3,5,["H7181"]],[5,7,["H5414"]],[7,8,["H5637"]],[8,10,["H3802"]],[10,12,["H3513"]],[12,14,["H241"]],[14,19,["H4480","H8085"]]]},{"k":22974,"v":[[0,3,["H7760"]],[3,5,["H3820"]],[5,9,["H8068"]],[9,13,["H4480","H8085"]],[13,14,["(H853)"]],[14,15,["H8451"]],[15,18,["H1697"]],[18,19,["H834"]],[19,21,["H3068"]],[21,23,["H6635"]],[23,25,["H7971"]],[25,28,["H7307"]],[28,29,["H3027"]],[29,31,["H7223"]],[31,32,["H5030"]],[32,34,["H1961"]],[34,36,["H1419"]],[36,37,["H7110"]],[37,38,["H4480","H854"]],[38,40,["H3068"]],[40,42,["H6635"]]]},{"k":22975,"v":[[0,6,["H1961"]],[6,8,["H834"]],[8,10,["H7121"]],[10,14,["H3808"]],[14,15,["H8085"]],[15,16,["H3651"]],[16,18,["H7121"]],[18,22,["H3808"]],[22,23,["H8085"]],[23,24,["H559"]],[24,26,["H3068"]],[26,28,["H6635"]]]},{"k":22976,"v":[[0,7,["H5590"]],[7,8,["H5921"]],[8,9,["H3605"]],[9,11,["H1471"]],[11,12,["H834"]],[12,14,["H3045"]],[14,15,["H3808"]],[15,18,["H776"]],[18,20,["H8074"]],[20,21,["H310"]],[21,27,["H4480","H5674"]],[27,29,["H4480","H7725"]],[29,32,["H7760"]],[32,34,["H2532"]],[34,35,["H776"]],[35,36,["H8047"]]]},{"k":22977,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,8,["H6635"]],[8,9,["H1961"]],[9,12,["H559"]]]},{"k":22978,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,9,["H7065"]],[9,11,["H6726"]],[11,13,["H1419"]],[13,14,["H7068"]],[14,18,["H7065"]],[18,22,["H1419"]],[22,23,["H2534"]]]},{"k":22979,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,7,["H7725"]],[7,8,["H413"]],[8,9,["H6726"]],[9,12,["H7931"]],[12,15,["H8432"]],[15,17,["H3389"]],[17,19,["H3389"]],[19,22,["H7121"]],[22,24,["H5892"]],[24,26,["H571"]],[26,29,["H2022"]],[29,32,["H3068"]],[32,34,["H6635"]],[34,36,["H6944"]],[36,37,["H2022"]]]},{"k":22980,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,9,["H5750"]],[9,11,["H2205"]],[11,14,["H2205"]],[14,15,["H3427"]],[15,18,["H7339"]],[18,20,["H3389"]],[20,23,["H376"]],[23,26,["H4938"]],[26,29,["H3027"]],[29,31,["H4480","H7230"]],[31,32,["H3117"]]]},{"k":22981,"v":[[0,3,["H7339"]],[3,6,["H5892"]],[6,9,["H4390"]],[9,11,["H3206"]],[11,13,["H3207"]],[13,14,["H7832"]],[14,17,["H7339"]],[17,18,[]]]},{"k":22982,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H3588"]],[7,10,["H6381"]],[10,13,["H5869"]],[13,16,["H7611"]],[16,18,["H2088"]],[18,19,["H5971"]],[19,21,["H1992"]],[21,22,["H3117"]],[22,25,["H1571"]],[25,27,["H6381"]],[27,30,["H5869"]],[30,31,["H5002"]],[31,33,["H3068"]],[33,35,["H6635"]]]},{"k":22983,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,7,["H2009"]],[7,10,["H3467","(H853)"]],[10,12,["H5971"]],[12,15,["H4217"]],[15,16,["H4480","H776"]],[16,20,["H3996","H8121"]],[20,21,["H4480","H776"]]]},{"k":22984,"v":[[0,4,["H935"]],[4,9,["H7931"]],[9,12,["H8432"]],[12,14,["H3389"]],[14,18,["H1961"]],[18,20,["H5971"]],[20,22,["H589"]],[22,24,["H1961"]],[24,26,["H430"]],[26,28,["H571"]],[28,31,["H6666"]]]},{"k":22985,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,9,["H3027"]],[9,11,["H2388"]],[11,14,["H8085"]],[14,16,["H428"]],[16,17,["H3117","(H853)"]],[17,18,["H428"]],[18,19,["H1697"]],[19,22,["H4480","H6310"]],[22,25,["H5030"]],[25,26,["H834"]],[26,30,["H3117"]],[30,36,["H1004"]],[36,39,["H3068"]],[39,41,["H6635"]],[41,43,["H3245"]],[43,46,["H1964"]],[46,49,["H1129"]]]},{"k":22986,"v":[[0,1,["H3588"]],[1,2,["H6440"]],[2,3,["H1992"]],[3,4,["H3117"]],[4,6,["H1961"]],[6,7,["H3808"]],[7,8,["H7939"]],[8,10,["H120"]],[10,11,["H369"]],[11,13,["H7939"]],[13,15,["H929"]],[15,16,["H369"]],[16,20,["H7965"]],[20,25,["H3318"]],[25,28,["H935"]],[28,30,["H4480"]],[30,32,["H6862"]],[32,35,["H7971","(H853)"]],[35,36,["H3605"]],[36,37,["H120"]],[37,39,["H376"]],[39,42,["H7453"]]]},{"k":22987,"v":[[0,2,["H6258"]],[2,3,["H589"]],[3,5,["H3808"]],[5,9,["H7611"]],[9,11,["H2088"]],[11,12,["H5971"]],[12,16,["H7223"]],[16,17,["H3117"]],[17,18,["H5002"]],[18,20,["H3068"]],[20,22,["H6635"]]]},{"k":22988,"v":[[0,1,["H3588"]],[1,3,["H2233"]],[3,6,["H7965"]],[6,8,["H1612"]],[8,10,["H5414"]],[10,12,["H6529"]],[12,15,["H776"]],[15,17,["H5414","(H853)"]],[17,19,["H2981"]],[19,22,["H8064"]],[22,24,["H5414"]],[24,26,["H2919"]],[26,30,["(H853)"]],[30,32,["H7611"]],[32,34,["H2088"]],[34,35,["H5971"]],[35,37,["H5157","(H853)"]],[37,38,["H3605"]],[38,39,["H428"]],[39,40,[]]]},{"k":22989,"v":[[0,6,["H1961"]],[6,8,["H834"]],[8,10,["H1961"]],[10,12,["H7045"]],[12,15,["H1471"]],[15,17,["H1004"]],[17,19,["H3063"]],[19,21,["H1004"]],[21,23,["H3478"]],[23,24,["H3651"]],[24,27,["H3467"]],[27,32,["H1961"]],[32,34,["H1293"]],[34,35,["H3372"]],[35,36,["H408"]],[36,40,["H3027"]],[40,42,["H2388"]]]},{"k":22990,"v":[[0,1,["H3588"]],[1,2,["H3541"]],[2,3,["H559"]],[3,5,["H3068"]],[5,7,["H6635"]],[7,8,["H834"]],[8,10,["H2161"]],[10,12,["H7489"]],[12,16,["H1"]],[16,20,["H7107","(H853)"]],[20,21,["H559"]],[21,23,["H3068"]],[23,25,["H6635"]],[25,28,["H5162"]],[28,29,["H3808"]]]},{"k":22991,"v":[[0,1,["H3651"]],[1,2,["H7725"]],[2,5,["H2161"]],[5,7,["H428"]],[7,8,["H3117"]],[8,11,["H3190"]],[11,12,["(H853)"]],[12,13,["H3389"]],[13,17,["H1004"]],[17,19,["H3063"]],[19,20,["H3372"]],[20,22,["H408"]]]},{"k":22992,"v":[[0,1,["H428"]],[1,4,["H1697"]],[4,5,["H834"]],[5,8,["H6213"]],[8,9,["H1696"]],[9,12,["H376"]],[12,14,["H571"]],[14,15,["H854"]],[15,17,["H7453"]],[17,18,["H8199"]],[18,20,["H4941"]],[20,22,["H571"]],[22,24,["H7965"]],[24,27,["H8179"]]]},{"k":22993,"v":[[0,3,["H408","H376"]],[3,6,["H2803","(H853)"]],[6,7,["H7451"]],[7,10,["H3824"]],[10,13,["H7453"]],[13,15,["H157"]],[15,16,["H408"]],[16,17,["H8267"]],[17,18,["H7621"]],[18,19,["H3588","(H853)"]],[19,20,["H3605"]],[20,21,["H428"]],[21,24,["H834"]],[24,26,["H8130"]],[26,27,["H5002"]],[27,29,["H3068"]]]},{"k":22994,"v":[[0,3,["H1697"]],[3,6,["H3068"]],[6,8,["H6635"]],[8,9,["H1961"]],[9,10,["H413"]],[10,12,["H559"]]]},{"k":22995,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H6685"]],[8,11,["H7243"]],[11,15,["H6685"]],[15,18,["H2549"]],[18,21,["H6685"]],[21,24,["H7637"]],[24,27,["H6685"]],[27,30,["H6224"]],[30,32,["H1961"]],[32,35,["H1004"]],[35,37,["H3063"]],[37,38,["H8342"]],[38,40,["H8057"]],[40,42,["H2896"]],[42,43,["H4150"]],[43,45,["H157"]],[45,47,["H571"]],[47,49,["H7965"]]]},{"k":22996,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,9,["H5750"]],[9,13,["H834"]],[13,16,["H935"]],[16,17,["H5971"]],[17,20,["H3427"]],[20,22,["H7227"]],[22,23,["H5892"]]]},{"k":22997,"v":[[0,3,["H3427"]],[3,5,["H259"]],[5,8,["H1980"]],[8,9,["H413"]],[9,10,["H259"]],[10,11,["H559"]],[11,15,["H1980","H1980"]],[15,17,["H2470","(H853)"]],[17,18,["H6440"]],[18,20,["H3068"]],[20,23,["H1245","(H853)"]],[23,25,["H3068"]],[25,27,["H6635"]],[27,28,["H589"]],[28,30,["H1980"]],[30,31,["H1571"]]]},{"k":22998,"v":[[0,2,["H7227"]],[2,3,["H5971"]],[3,5,["H6099"]],[5,6,["H1471"]],[6,8,["H935"]],[8,10,["H1245","(H853)"]],[10,12,["H3068"]],[12,14,["H6635"]],[14,16,["H3389"]],[16,19,["H2470","(H853)"]],[19,20,["H6440"]],[20,22,["H3068"]]]},{"k":22999,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H6635"]],[6,8,["H1992"]],[8,9,["H3117"]],[9,15,["H834"]],[15,16,["H6235"]],[16,17,["H376"]],[17,20,["H2388"]],[20,23,["H4480","H3605"]],[23,24,["H3956"]],[24,27,["H1471"]],[27,31,["H2388"]],[31,34,["H3671"]],[34,36,["H376"]],[36,40,["H3064"]],[40,41,["H559"]],[41,44,["H1980"]],[44,45,["H5973"]],[45,47,["H3588"]],[47,50,["H8085"]],[50,52,["H430"]],[52,54,["H5973"]],[54,55,[]]]},{"k":23000,"v":[[0,2,["H4853"]],[2,5,["H1697"]],[5,8,["H3068"]],[8,11,["H776"]],[11,13,["H2317"]],[13,15,["H1834"]],[15,19,["H4496"]],[19,21,["H3588"]],[21,23,["H5869"]],[23,25,["H120"]],[25,28,["H3605"]],[28,30,["H7626"]],[30,32,["H3478"]],[32,37,["H3068"]]]},{"k":23001,"v":[[0,2,["H2574"]],[2,3,["H1571"]],[3,5,["H1379"]],[5,7,["H6865"]],[7,9,["H6721"]],[9,10,["H3588"]],[10,13,["H3966"]],[13,14,["H2449"]]]},{"k":23002,"v":[[0,2,["H6865"]],[2,4,["H1129"]],[4,8,["H4692"]],[8,11,["H6651"]],[11,12,["H3701"]],[12,15,["H6083"]],[15,18,["H2742"]],[18,21,["H2916"]],[21,24,["H2351"]]]},{"k":23003,"v":[[0,1,["H2009"]],[1,3,["H136"]],[3,7,["H3423"]],[7,11,["H5221"]],[11,13,["H2428"]],[13,16,["H3220"]],[16,18,["H1931"]],[18,21,["H398"]],[21,23,["H784"]]]},{"k":23004,"v":[[0,1,["H831"]],[1,3,["H7200"]],[3,6,["H3372"]],[6,7,["H5804"]],[7,15,["H3966","H2342"]],[15,17,["H6138"]],[17,18,["H3588"]],[18,20,["H4007"]],[20,23,["H954"]],[23,26,["H4428"]],[26,28,["H6"]],[28,30,["H4480","H5804"]],[30,32,["H831"]],[32,34,["H3808"]],[34,36,["H3427"]]]},{"k":23005,"v":[[0,3,["H4464"]],[3,5,["H3427"]],[5,7,["H795"]],[7,12,["H3772"]],[12,14,["H1347"]],[14,17,["H6430"]]]},{"k":23006,"v":[[0,5,["H5493"]],[5,7,["H1818"]],[7,11,["H4480","H6310"]],[11,14,["H8251"]],[14,16,["H4480","H996"]],[16,18,["H8127"]],[18,22,["H7604"]],[22,23,["H1571"]],[23,24,["H1931"]],[24,29,["H430"]],[29,33,["H1961"]],[33,36,["H441"]],[36,38,["H3063"]],[38,40,["H6138"]],[40,43,["H2983"]]]},{"k":23007,"v":[[0,4,["H2583"]],[4,7,["H1004"]],[7,11,["H4675"]],[11,17,["H4480","H5674"]],[17,23,["H4480","H7725"]],[23,25,["H3808"]],[25,26,["H5065"]],[26,28,["H5674"]],[28,29,["H5921"]],[29,32,["H5750"]],[32,33,["H3588"]],[33,34,["H6258"]],[34,37,["H7200"]],[37,40,["H5869"]]]},{"k":23008,"v":[[0,1,["H1523"]],[1,2,["H3966"]],[2,4,["H1323"]],[4,6,["H6726"]],[6,7,["H7321"]],[7,9,["H1323"]],[9,11,["H3389"]],[11,12,["H2009"]],[12,14,["H4428"]],[14,15,["H935"]],[15,18,["H1931"]],[18,20,["H6662"]],[20,23,["H3467"]],[23,24,["H6041"]],[24,26,["H7392"]],[26,27,["H5921"]],[27,29,["H2543"]],[29,31,["H5921"]],[31,33,["H5895"]],[33,35,["H1121"]],[35,38,["H860"]]]},{"k":23009,"v":[[0,5,["H3772"]],[5,7,["H7393"]],[7,9,["H4480","H669"]],[9,12,["H5483"]],[12,14,["H4480","H3389"]],[14,17,["H4421"]],[17,18,["H7198"]],[18,22,["H3772"]],[22,26,["H1696"]],[26,27,["H7965"]],[27,30,["H1471"]],[30,33,["H4915"]],[33,37,["H4480","H3220"]],[37,39,["H5704"]],[39,40,["H3220"]],[40,44,["H4480","H5104"]],[44,46,["H5704"]],[46,48,["H657"]],[48,51,["H776"]]]},{"k":23010,"v":[[0,3,["H859"]],[3,4,["H1571"]],[4,7,["H1818"]],[7,10,["H1285"]],[10,14,["H7971"]],[14,16,["H615"]],[16,20,["H4480","H953"]],[20,23,["H369"]],[23,24,["H4325"]]]},{"k":23011,"v":[[0,1,["H7725"]],[1,6,["H1225"]],[6,8,["H615"]],[8,10,["H8615"]],[10,11,["H1571"]],[11,13,["H3117"]],[13,16,["H5046"]],[16,20,["H7725"]],[20,21,["H4932"]],[21,23,[]]]},{"k":23012,"v":[[0,1,["H3588"]],[1,4,["H1869"]],[4,5,["H3063"]],[5,8,["H4390"]],[8,10,["H7198"]],[10,12,["H669"]],[12,14,["H5782"]],[14,17,["H1121"]],[17,19,["H6726"]],[19,20,["H5921"]],[20,22,["H1121"]],[22,24,["H3120"]],[24,26,["H7760"]],[26,30,["H2719"]],[30,34,["H1368"]]]},{"k":23013,"v":[[0,3,["H3068"]],[3,6,["H7200"]],[6,7,["H5921"]],[7,11,["H2671"]],[11,14,["H3318"]],[14,17,["H1300"]],[17,20,["H136"]],[20,21,["H3069"]],[21,23,["H8628"]],[23,25,["H7782"]],[25,28,["H1980"]],[28,30,["H5591"]],[30,33,["H8486"]]]},{"k":23014,"v":[[0,2,["H3068"]],[2,4,["H6635"]],[4,6,["H1598","H5921"]],[6,11,["H398"]],[11,13,["H3533"]],[13,16,["H7050","H68"]],[16,20,["H8354"]],[20,24,["H1993"]],[24,26,["H3644"]],[26,27,["H3196"]],[27,32,["H4390"]],[32,34,["H4219"]],[34,38,["H2106"]],[38,41,["H4196"]]]},{"k":23015,"v":[[0,3,["H3068"]],[3,5,["H430"]],[5,7,["H3467"]],[7,10,["H1931"]],[10,11,["H3117"]],[11,14,["H6629"]],[14,17,["H5971"]],[17,18,["H3588"]],[18,24,["H68"]],[24,27,["H5145"]],[27,32,["H5264"]],[32,33,["H5921"]],[33,35,["H127"]]]},{"k":23016,"v":[[0,1,["H3588"]],[1,2,["H4100"]],[2,6,["H2898"]],[6,8,["H4100"]],[8,12,["H3308"]],[12,13,["H1715"]],[13,18,["H970"]],[18,19,["H5107"]],[19,22,["H8492"]],[22,24,["H1330"]]]},{"k":23017,"v":[[0,1,["H7592"]],[1,5,["H4480","H3068"]],[5,6,["H4306"]],[6,9,["H6256"]],[9,13,["H4456"]],[13,16,["H3068"]],[16,18,["H6213"]],[18,20,["H2385"]],[20,22,["H5414"]],[22,24,["H1653"]],[24,26,["H4306"]],[26,29,["H376"]],[29,30,["H6212"]],[30,33,["H7704"]]]},{"k":23018,"v":[[0,1,["H3588"]],[1,3,["H8655"]],[3,5,["H1696"]],[5,6,["H205"]],[6,9,["H7080"]],[9,11,["H2372"]],[11,13,["H8267"]],[13,16,["H1696"]],[16,17,["H7723"]],[17,18,["H2472"]],[18,20,["H5162"]],[20,22,["H1892"]],[22,23,["H5921","H3651"]],[23,27,["H5265"]],[27,28,["H3644"]],[28,30,["H6629"]],[30,33,["H6031"]],[33,34,["H3588"]],[34,37,["H369"]],[37,38,["H7462"]]]},{"k":23019,"v":[[0,2,["H639"]],[2,4,["H2734"]],[4,5,["H5921"]],[5,7,["H7462"]],[7,10,["H6485","H5921"]],[10,12,["H6260"]],[12,13,["H3588"]],[13,15,["H3068"]],[15,17,["H6635"]],[17,19,["H6485","(H853)"]],[19,21,["H5739","(H853)"]],[21,23,["H1004"]],[23,25,["H3063"]],[25,28,["H7760"]],[28,32,["H1935"]],[32,33,["H5483"]],[33,36,["H4421"]]]},{"k":23020,"v":[[0,2,["H4480"]],[2,5,["H3318"]],[5,7,["H6438"]],[7,9,["H4480"]],[9,12,["H3489"]],[12,14,["H4480"]],[14,17,["H4421"]],[17,18,["H7198"]],[18,20,["H4480"]],[20,22,["H3605"]],[22,23,["H5065"]],[23,24,["H3162"]]]},{"k":23021,"v":[[0,4,["H1961"]],[4,6,["H1368"]],[6,10,["H947"]],[10,15,["H2916"]],[15,18,["H2351"]],[18,21,["H4421"]],[21,25,["H3898"]],[25,26,["H3588"]],[26,28,["H3068"]],[28,30,["H5973"]],[30,34,["H7392"]],[34,36,["H5483"]],[36,39,["H954"]]]},{"k":23022,"v":[[0,4,["H1396","(H853)"]],[4,6,["H1004"]],[6,8,["H3063"]],[8,12,["H3467"]],[12,14,["H1004"]],[14,16,["H3130"]],[16,22,["H7725"]],[22,26,["H3588"]],[26,30,["H7355"]],[30,35,["H1961"]],[35,37,["H834"]],[37,40,["H3808"]],[40,43,["H2186"]],[43,44,["H3588"]],[44,45,["H589"]],[45,48,["H3068"]],[48,50,["H430"]],[50,53,["H6030"]],[53,54,[]]]},{"k":23023,"v":[[0,4,["H669"]],[4,6,["H1961"]],[6,9,["H1368"]],[9,13,["H3820"]],[13,15,["H8055"]],[15,17,["H3644"]],[17,18,["H3196"]],[18,21,["H1121"]],[21,23,["H7200"]],[23,27,["H8055"]],[27,29,["H3820"]],[29,31,["H1523"]],[31,34,["H3068"]]]},{"k":23024,"v":[[0,3,["H8319"]],[3,7,["H6908"]],[7,9,["H3588"]],[9,12,["H6299"]],[12,17,["H7235"]],[17,18,["H3644"]],[18,21,["H7235"]]]},{"k":23025,"v":[[0,4,["H2232"]],[4,8,["H5971"]],[8,12,["H2142"]],[12,16,["H4801"]],[16,20,["H2421"]],[20,21,["H854"]],[21,23,["H1121"]],[23,26,["H7725"]]]},{"k":23026,"v":[[0,5,["H7725"]],[5,10,["H4480","H776"]],[10,12,["H4714"]],[12,14,["H6908"]],[14,18,["H4480","H804"]],[18,22,["H935"]],[22,24,["H413"]],[24,26,["H776"]],[26,28,["H1568"]],[28,30,["H3844"]],[30,34,["H3808"]],[34,36,["H4672"]],[36,38,[]]]},{"k":23027,"v":[[0,4,["H5674"]],[4,7,["H3220"]],[7,9,["H6869"]],[9,12,["H5221"]],[12,14,["H1530"]],[14,17,["H3220"]],[17,19,["H3605"]],[19,21,["H4688"]],[21,24,["H2975"]],[24,27,["H3001"]],[27,30,["H1347"]],[30,32,["H804"]],[32,36,["H3381"]],[36,39,["H7626"]],[39,41,["H4714"]],[41,44,["H5493"]]]},{"k":23028,"v":[[0,4,["H1396"]],[4,8,["H3068"]],[8,15,["H1980"]],[15,18,["H8034"]],[18,19,["H5002"]],[19,21,["H3068"]]]},{"k":23029,"v":[[0,1,["H6605"]],[1,3,["H1817"]],[3,5,["H3844"]],[5,8,["H784"]],[8,10,["H398"]],[10,12,["H730"]]]},{"k":23030,"v":[[0,1,["H3213"]],[1,3,["H1265"]],[3,4,["H3588"]],[4,6,["H730"]],[6,8,["H5307"]],[8,9,["H834"]],[9,11,["H117"]],[11,13,["H7703"]],[13,14,["H3213"]],[14,17,["H437"]],[17,19,["H1316"]],[19,20,["H3588"]],[20,22,["H3293"]],[22,25,["H1208"]],[25,28,["H3381"]]]},{"k":23031,"v":[[0,4,["H6963"]],[4,7,["H3215"]],[7,10,["H7462"]],[10,11,["H3588"]],[11,13,["H155"]],[13,15,["H7703"]],[15,17,["H6963"]],[17,20,["H7581"]],[20,23,["H3715"]],[23,24,["H3588"]],[24,26,["H1347"]],[26,28,["H3383"]],[28,30,["H7703"]]]},{"k":23032,"v":[[0,1,["H3541"]],[1,2,["H559"]],[2,4,["H3068"]],[4,6,["H430"]],[6,7,["H7462","(H853)"]],[7,9,["H6629"]],[9,12,["H2028"]]]},{"k":23033,"v":[[0,1,["H834"]],[1,2,["H7069"]],[2,3,["H2026"]],[3,9,["H816","H3808"]],[9,13,["H4376"]],[13,15,["H559"]],[15,16,["H1288"]],[16,19,["H3068"]],[19,23,["H6238"]],[23,27,["H7462"]],[27,28,["H2550","H5921"]],[28,30,["H3808"]]]},{"k":23034,"v":[[0,1,["H3588"]],[1,4,["H3808"]],[4,5,["H5750"]],[5,6,["H2550","H5921"]],[6,8,["H3427"]],[8,11,["H776"]],[11,12,["H5002"]],[12,14,["H3068"]],[14,16,["H2009"]],[16,17,["H595"]],[17,19,["H4672","(H853)"]],[19,21,["H120"]],[21,23,["H376"]],[23,26,["H7453"]],[26,27,["H3027"]],[27,31,["H3027"]],[31,34,["H4428"]],[34,38,["H3807","(H853)"]],[38,40,["H776"]],[40,45,["H4480","H3027"]],[45,48,["H3808"]],[48,49,["H5337"]],[49,50,[]]]},{"k":23035,"v":[[0,4,["H7462","(H853)"]],[4,6,["H6629"]],[6,8,["H2028"]],[8,12,["H6041"]],[12,15,["H6629"]],[15,18,["H3947"]],[18,21,["H8147"]],[21,22,["H4731"]],[22,24,["H259"]],[24,26,["H7121"]],[26,27,["H5278"]],[27,30,["H259"]],[30,32,["H7121"]],[32,33,["H2256"]],[33,36,["H7462","(H853)"]],[36,38,["H6629"]]]},{"k":23036,"v":[[0,0,["(H853)"]],[0,1,["H7969"]],[1,2,["H7462"]],[2,6,["H3582"]],[6,8,["H259"]],[8,9,["H3391"]],[9,12,["H5315"]],[12,13,["H7114"]],[13,17,["H5315"]],[17,18,["H1571"]],[18,19,["H973"]],[19,20,[]]]},{"k":23037,"v":[[0,2,["H559"]],[2,6,["H3808"]],[6,7,["H7462"]],[7,11,["H4191"]],[11,14,["H4191"]],[14,22,["H3582"]],[22,27,["H3582"]],[27,31,["H7604"]],[31,32,["H398"]],[32,34,["H802","(H853)"]],[34,36,["H1320"]],[36,38,["H7468"]]]},{"k":23038,"v":[[0,3,["H3947","(H853)"]],[3,5,["H4731"]],[5,6,["(H853)"]],[6,7,["H5278"]],[7,11,["H1438","(H853)"]],[11,15,["H6565","(H853)"]],[15,17,["H1285"]],[17,18,["H834"]],[18,21,["H3772"]],[21,22,["H854"]],[22,23,["H3605"]],[23,25,["H5971"]]]},{"k":23039,"v":[[0,4,["H6565"]],[4,6,["H1931"]],[6,7,["H3117"]],[7,9,["H3651"]],[9,11,["H6041"]],[11,14,["H6629"]],[14,17,["H8104"]],[17,19,["H3045"]],[19,20,["H3588"]],[20,21,["H1931"]],[21,24,["H1697"]],[24,27,["H3068"]]]},{"k":23040,"v":[[0,3,["H559"]],[3,4,["H413"]],[4,6,["H518"]],[6,9,["H2895","H5869"]],[9,10,["H3051"]],[10,13,["H7939"]],[13,15,["H518"]],[15,16,["H3808"]],[16,17,["H2308"]],[17,21,["H8254","(H853)"]],[21,23,["H7939"]],[23,24,["H7970"]],[24,27,["H3701"]]]},{"k":23041,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H7993"]],[7,9,["H413"]],[9,11,["H3335"]],[11,13,["H145"]],[13,14,["H3366"]],[14,15,["H834"]],[15,19,["H3365"]],[19,20,["H4480","H5921"]],[20,24,["H3947"]],[24,26,["H7970"]],[26,29,["H3701"]],[29,31,["H7993"]],[31,33,["H413"]],[33,35,["H3335"]],[35,38,["H1004"]],[38,41,["H3068"]]]},{"k":23042,"v":[[0,4,["H1438","(H853)"]],[4,6,["H8145"]],[6,7,["H4731","(H853)"]],[7,9,["H2256"]],[9,13,["H6565","(H853)"]],[13,15,["H264"]],[15,16,["H996"]],[16,17,["H3063"]],[17,19,["H3478"]]]},{"k":23043,"v":[[0,3,["H3068"]],[3,4,["H559"]],[4,5,["H413"]],[5,7,["H3947"]],[7,10,["H5750"]],[10,12,["H3627"]],[12,15,["H196"]],[15,16,["H7462"]]]},{"k":23044,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,3,["H595"]],[3,5,["H6965"]],[5,8,["H7462"]],[8,11,["H776"]],[11,14,["H3808"]],[14,15,["H6485"]],[15,20,["H3582"]],[20,21,["H3808"]],[21,23,["H1245"]],[23,26,["H5289"]],[26,27,["H3808"]],[27,28,["H7495"]],[28,32,["H7665"]],[32,33,["H3808"]],[33,34,["H3557"]],[34,38,["H5324"]],[38,42,["H398"]],[42,44,["H1320"]],[44,47,["H1277"]],[47,53,["H6561","H6541"]]]},{"k":23045,"v":[[0,1,["H1945"]],[1,4,["H457"]],[4,5,["H7473"]],[5,7,["H5800"]],[7,9,["H6629"]],[9,11,["H2719"]],[11,14,["H5921"]],[14,16,["H2220"]],[16,18,["H5921"]],[18,20,["H3225"]],[20,21,["H5869"]],[21,23,["H2220"]],[23,28,["H3001","H3001"]],[28,31,["H3225"]],[31,32,["H5869"]],[32,36,["H3543","H3543"]]]},{"k":23046,"v":[[0,2,["H4853"]],[2,5,["H1697"]],[5,8,["H3068"]],[8,9,["H5921"]],[9,10,["H3478"]],[10,11,["H5002"]],[11,13,["H3068"]],[13,16,["H5186"]],[16,18,["H8064"]],[18,22,["H3245"]],[22,25,["H776"]],[25,27,["H3335"]],[27,29,["H7307"]],[29,31,["H120"]],[31,32,["H7130"]],[32,33,[]]]},{"k":23047,"v":[[0,1,["H2009"]],[1,2,["H595"]],[2,4,["H7760","(H853)"]],[4,5,["H3389"]],[5,7,["H5592"]],[7,9,["H7478"]],[9,11,["H3605"]],[11,13,["H5971"]],[13,15,["H5439"]],[15,19,["H1961"]],[19,22,["H4692"]],[22,23,["H1571"]],[23,24,["H5921"]],[24,25,["H3063"]],[25,27,["H5921"]],[27,28,["H3389"]]]},{"k":23048,"v":[[0,3,["H1931"]],[3,4,["H3117"]],[4,7,["H7760","(H853)"]],[7,8,["H3389"]],[8,10,["H4614"]],[10,11,["H68"]],[11,13,["H3605"]],[13,14,["H5971"]],[14,15,["H3605"]],[15,17,["H6006"]],[17,25,["H8295","H8295"]],[25,27,["H3605"]],[27,29,["H1471"]],[29,32,["H776"]],[32,35,["H622"]],[35,36,["H5921"]],[36,37,[]]]},{"k":23049,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,4,["H5002"]],[4,6,["H3068"]],[6,9,["H5221"]],[9,10,["H3605"]],[10,11,["H5483"]],[11,13,["H8541"]],[13,16,["H7392"]],[16,18,["H7697"]],[18,22,["H6491","(H853)"]],[22,24,["H5869"]],[24,25,["H5921"]],[25,27,["H1004"]],[27,29,["H3063"]],[29,32,["H5221"]],[32,33,["H3605"]],[33,34,["H5483"]],[34,37,["H5971"]],[37,39,["H5788"]]]},{"k":23050,"v":[[0,3,["H441"]],[3,5,["H3063"]],[5,7,["H559"]],[7,10,["H3820"]],[10,12,["H3427"]],[12,14,["H3389"]],[14,18,["H556"]],[18,21,["H3068"]],[21,23,["H6635"]],[23,25,["H430"]]]},{"k":23051,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H7760","(H853)"]],[6,8,["H441"]],[8,10,["H3063"]],[10,13,["H3595"]],[13,15,["H784"]],[15,18,["H6086"]],[18,22,["H3940"]],[22,24,["H784"]],[24,27,["H5995"]],[27,31,["H398","(H853)"]],[31,32,["H3605"]],[32,34,["H5971"]],[34,36,["H5439"]],[36,37,["H5921"]],[37,40,["H3225"]],[40,42,["H5921"]],[42,44,["H8040"]],[44,46,["H3389"]],[46,49,["H3427"]],[49,50,["H5750"]],[50,54,["H8478"]],[54,57,["H3389"]]]},{"k":23052,"v":[[0,2,["H3068"]],[2,5,["H3467","(H853)"]],[5,7,["H168"]],[7,9,["H3063"]],[9,10,["H7223"]],[10,11,["H4616"]],[11,13,["H8597"]],[13,16,["H1004"]],[16,18,["H1732"]],[18,21,["H8597"]],[21,24,["H3427"]],[24,26,["H3389"]],[26,28,["H3808"]],[28,29,["H1431"]],[29,31,["H5921"]],[31,32,["H3063"]]]},{"k":23053,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H3068"]],[6,7,["H1598","H1157"]],[7,9,["H3427"]],[9,11,["H3389"]],[11,16,["H3782"]],[16,20,["H1931"]],[20,21,["H3117"]],[21,23,["H1961"]],[23,25,["H1732"]],[25,28,["H1004"]],[28,30,["H1732"]],[30,34,["H430"]],[34,37,["H4397"]],[37,40,["H3068"]],[40,41,["H6440"]],[41,42,[]]]},{"k":23054,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,13,["H1245"]],[13,15,["H8045","(H853)"]],[15,16,["H3605"]],[16,18,["H1471"]],[18,20,["H935"]],[20,21,["H5921"]],[21,22,["H3389"]]]},{"k":23055,"v":[[0,4,["H8210"]],[4,5,["H5921"]],[5,7,["H1004"]],[7,9,["H1732"]],[9,11,["H5921"]],[11,13,["H3427"]],[13,15,["H3389"]],[15,17,["H7307"]],[17,19,["H2580"]],[19,22,["H8469"]],[22,26,["H5027"]],[26,27,["H413"]],[27,28,["(H853)"]],[28,29,["H834"]],[29,32,["H1856"]],[32,36,["H5594"]],[36,37,["H5921"]],[37,41,["H4553"]],[41,42,["H5921"]],[42,44,["H3173"]],[44,50,["H4843"]],[50,51,["H5921"]],[51,58,["H4843"]],[58,59,["H5921"]],[59,61,["H1060"]]]},{"k":23056,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,8,["H1431"]],[8,9,["H4553"]],[9,11,["H3389"]],[11,14,["H4553"]],[14,16,["H1910"]],[16,19,["H1237"]],[19,21,["H4023"]]]},{"k":23057,"v":[[0,3,["H776"]],[3,5,["H5594"]],[5,7,["H4940","H4940"]],[7,8,["H905"]],[8,10,["H4940"]],[10,13,["H1004"]],[13,15,["H1732"]],[15,16,["H905"]],[16,19,["H802"]],[19,20,["H905"]],[20,22,["H4940"]],[22,25,["H1004"]],[25,27,["H5416"]],[27,28,["H905"]],[28,31,["H802"]],[31,32,["H905"]]]},{"k":23058,"v":[[0,2,["H4940"]],[2,5,["H1004"]],[5,7,["H3878"]],[7,8,["H905"]],[8,11,["H802"]],[11,12,["H905"]],[12,14,["H4940"]],[14,16,["H8097"]],[16,17,["H905"]],[17,20,["H802"]],[20,21,["H905"]]]},{"k":23059,"v":[[0,1,["H3605"]],[1,3,["H4940"]],[3,5,["H7604"]],[5,7,["H4940","H4940"]],[7,8,["H905"]],[8,11,["H802"]],[11,12,["H905"]]]},{"k":23060,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H1961"]],[6,8,["H4726"]],[8,9,["H6605"]],[9,12,["H1004"]],[12,14,["H1732"]],[14,18,["H3427"]],[18,20,["H3389"]],[20,22,["H2403"]],[22,25,["H5079"]]]},{"k":23061,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,10,["H5002"]],[10,12,["H3068"]],[12,14,["H6635"]],[14,19,["H3772","(H853)"]],[19,21,["H8034"]],[21,24,["H6091"]],[24,26,["H4480"]],[26,28,["H776"]],[28,32,["H3808"]],[32,33,["H5750"]],[33,35,["H2142"]],[35,37,["H1571"]],[37,40,["(H853)"]],[40,42,["H5030"]],[42,45,["H2932"]],[45,46,["H7307"]],[46,48,["H5674"]],[48,50,["H4480"]],[50,52,["H776"]]]},{"k":23062,"v":[[0,6,["H1961"]],[6,8,["H3588"]],[8,9,["H376"]],[9,11,["H5750"]],[11,12,["H5012"]],[12,15,["H1"]],[15,18,["H517"]],[18,20,["H3205"]],[20,23,["H559"]],[23,24,["H413"]],[24,28,["H3808"]],[28,29,["H2421"]],[29,30,["H3588"]],[30,32,["H1696"]],[32,33,["H8267"]],[33,36,["H8034"]],[36,39,["H3068"]],[39,42,["H1"]],[42,45,["H517"]],[45,47,["H3205"]],[47,52,["H1856"]],[52,55,["H5012"]]]},{"k":23063,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H5030"]],[12,15,["H954"]],[15,17,["H376"]],[17,20,["H4480","H2384"]],[20,24,["H5012"]],[24,25,["H3808"]],[25,28,["H3847"]],[28,30,["H8181"]],[30,31,["H155"]],[31,32,["H4616"]],[32,33,["H3584"]]]},{"k":23064,"v":[[0,4,["H559"]],[4,5,["H595"]],[5,7,["H3808"]],[7,8,["H5030"]],[8,9,["H595"]],[9,12,["H376","H5647","H127"]],[12,13,["H3588"]],[13,14,["H120"]],[14,19,["H7069"]],[19,22,["H4480","H5271"]]]},{"k":23065,"v":[[0,4,["H559"]],[4,5,["H413"]],[5,7,["H4100"]],[7,9,["H428"]],[9,10,["H4347"]],[10,11,["H996"]],[11,13,["H3027"]],[13,17,["H559"]],[17,20,["H834"]],[20,23,["H5221"]],[23,26,["H1004"]],[26,29,["H157"]]]},{"k":23066,"v":[[0,1,["H5782"]],[1,3,["H2719"]],[3,4,["H5921"]],[4,6,["H7462"]],[6,8,["H5921"]],[8,10,["H1397"]],[10,14,["H5997"]],[14,15,["H5002"]],[15,17,["H3068"]],[17,19,["H6635"]],[19,20,["H5221","(H853)"]],[20,22,["H7462"]],[22,25,["H6629"]],[25,28,["H6327"]],[28,32,["H7725"]],[32,34,["H3027"]],[34,35,["H5921"]],[35,38,["H6819"]]]},{"k":23067,"v":[[0,6,["H1961"]],[6,9,["H3605"]],[9,11,["H776"]],[11,12,["H5002"]],[12,14,["H3068"]],[14,15,["H8147"]],[15,16,["H6310"]],[16,21,["H3772"]],[21,23,["H1478"]],[23,26,["H7992"]],[26,29,["H3498"]],[29,30,[]]]},{"k":23068,"v":[[0,4,["H935","(H853)"]],[4,7,["H7992"]],[7,10,["H784"]],[10,13,["H6884"]],[13,15,["(H853)"]],[15,16,["H3701"]],[16,18,["H6884"]],[18,21,["H974"]],[21,23,["(H853)"]],[23,24,["H2091"]],[24,26,["H974"]],[26,27,["H1931"]],[27,29,["H7121"]],[29,32,["H8034"]],[32,34,["H589"]],[34,36,["H6030"]],[36,40,["H559"]],[40,41,["H1931"]],[41,44,["H5971"]],[44,46,["H1931"]],[46,48,["H559"]],[48,50,["H3068"]],[50,53,["H430"]]]},{"k":23069,"v":[[0,1,["H2009"]],[1,3,["H3117"]],[3,6,["H3068"]],[6,7,["H935"]],[7,10,["H7998"]],[10,13,["H2505"]],[13,16,["H7130"]],[16,18,[]]]},{"k":23070,"v":[[0,4,["H622","(H853)"]],[4,5,["H3605"]],[5,6,["H1471"]],[6,7,["H413"]],[7,8,["H3389"]],[8,10,["H4421"]],[10,13,["H5892"]],[13,16,["H3920"]],[16,19,["H1004"]],[19,20,["H8155"]],[20,23,["H802"]],[23,24,["H7693"]],[24,26,["H2677"]],[26,29,["H5892"]],[29,32,["H3318"]],[32,34,["H1473"]],[34,37,["H3499"]],[37,40,["H5971"]],[40,42,["H3808"]],[42,45,["H3772"]],[45,46,["H4480"]],[46,48,["H5892"]]]},{"k":23071,"v":[[0,4,["H3068"]],[4,6,["H3318"]],[6,9,["H3898"]],[9,10,["H1992"]],[10,11,["H1471"]],[11,13,["H3117"]],[13,15,["H3898"]],[15,18,["H3117"]],[18,20,["H7128"]]]},{"k":23072,"v":[[0,3,["H7272"]],[3,5,["H5975"]],[5,7,["H1931"]],[7,8,["H3117"]],[8,9,["H5921"]],[9,11,["H2022"]],[11,13,["H2132"]],[13,14,["H834"]],[14,16,["H5921","H6440"]],[16,17,["H3389"]],[17,20,["H4480","H6924"]],[20,23,["H2022"]],[23,25,["H2132"]],[25,27,["H1234"]],[27,30,["H4480","H2677"]],[30,34,["H4217"]],[34,38,["H3220"]],[38,44,["H3966"]],[44,45,["H1419"]],[45,46,["H1516"]],[46,48,["H2677"]],[48,51,["H2022"]],[51,53,["H4185"]],[53,56,["H6828"]],[56,58,["H2677"]],[58,63,["H5045"]]]},{"k":23073,"v":[[0,4,["H5127"]],[4,7,["H1516"]],[7,10,["H2022"]],[10,11,["H3588"]],[11,13,["H1516"]],[13,16,["H2022"]],[16,18,["H5060"]],[18,19,["H413"]],[19,20,["H682"]],[20,24,["H5127"]],[24,26,["H834"]],[26,28,["H5127"]],[28,30,["H4480","H6440"]],[30,32,["H7494"]],[32,35,["H3117"]],[35,37,["H5818"]],[37,38,["H4428"]],[38,40,["H3063"]],[40,43,["H3068"]],[43,45,["H430"]],[45,47,["H935"]],[47,49,["H3605"]],[49,51,["H6918"]],[51,52,["H5973"]],[52,53,[]]]},{"k":23074,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H216"]],[12,14,["H3808"]],[14,15,["H1961"]],[15,16,["H3368"]],[16,18,["H7087"]]]},{"k":23075,"v":[[0,4,["H1961"]],[4,5,["H259"]],[5,6,["H3117"]],[6,7,["H1931"]],[7,10,["H3045"]],[10,13,["H3068"]],[13,14,["H3808"]],[14,15,["H3117"]],[15,16,["H3808"]],[16,17,["H3915"]],[17,23,["H1961"]],[23,26,["H6153"]],[26,27,["H6256"]],[27,30,["H1961"]],[30,31,["H216"]]]},{"k":23076,"v":[[0,4,["H1961"]],[4,6,["H1931"]],[6,7,["H3117"]],[7,9,["H2416"]],[9,10,["H4325"]],[10,13,["H3318"]],[13,15,["H4480","H3389"]],[15,16,["H2677"]],[16,19,["H413"]],[19,21,["H6931"]],[21,22,["H3220"]],[22,24,["H2677"]],[24,27,["H413"]],[27,29,["H314"]],[29,30,["H3220"]],[30,32,["H7019"]],[32,35,["H2779"]],[35,38,["H1961"]]]},{"k":23077,"v":[[0,3,["H3068"]],[3,5,["H1961"]],[5,6,["H4428"]],[6,7,["H5921"]],[7,8,["H3605"]],[8,10,["H776"]],[10,12,["H1931"]],[12,13,["H3117"]],[13,16,["H1961"]],[16,17,["H259"]],[17,18,["H3068"]],[18,21,["H8034"]],[21,22,["H259"]]]},{"k":23078,"v":[[0,1,["H3605"]],[1,3,["H776"]],[3,6,["H5437"]],[6,9,["H6160"]],[9,11,["H4480","H1387"]],[11,13,["H7417"]],[13,14,["H5045"]],[14,16,["H3389"]],[16,22,["H7213"]],[22,24,["H3427"]],[24,27,["H8478"]],[27,29,["H1144"]],[29,30,["H4480","H8179"]],[30,31,["H5704"]],[31,33,["H4725"]],[33,36,["H7223"]],[36,37,["H8179"]],[37,38,["H5704"]],[38,40,["H6434"]],[40,41,["H8179"]],[41,45,["H4026"]],[45,47,["H2606"]],[47,48,["H5704"]],[48,50,["H4428"]],[50,51,["H3342"]]]},{"k":23079,"v":[[0,4,["H3427"]],[4,10,["H1961"]],[10,11,["H3808"]],[11,12,["H5750"]],[12,14,["H2764"]],[14,16,["H3389"]],[16,19,["H983"]],[19,20,["H3427"]]]},{"k":23080,"v":[[0,2,["H2063"]],[2,4,["H1961"]],[4,6,["H4046"]],[6,7,["H834"]],[7,9,["H3068"]],[9,11,["H5062","(H853)"]],[11,12,["H3605"]],[12,14,["H5971"]],[14,15,["H834"]],[15,17,["H6633"]],[17,18,["H5921"]],[18,19,["H3389"]],[19,21,["H1320"]],[21,24,["H4743"]],[24,26,["H1931"]],[26,27,["H5975"]],[27,30,["H5921","H7272"]],[30,33,["H5869"]],[33,36,["H4743"]],[36,39,["H2356"]],[39,42,["H3956"]],[42,45,["H4743"]],[45,48,["H6310"]]]},{"k":23081,"v":[[0,6,["H1961"]],[6,8,["H1931"]],[8,9,["H3117"]],[9,12,["H7227"]],[12,13,["H4103"]],[13,16,["H3068"]],[16,18,["H1961"]],[18,25,["H2388"]],[25,27,["H376"]],[27,30,["H3027"]],[30,33,["H7453"]],[33,36,["H3027"]],[36,39,["H5927"]],[39,40,["H5921"]],[40,42,["H3027"]],[42,45,["H7453"]]]},{"k":23082,"v":[[0,2,["H3063"]],[2,3,["H1571"]],[3,5,["H3898"]],[5,7,["H3389"]],[7,10,["H2428"]],[10,12,["H3605"]],[12,14,["H1471"]],[14,16,["H5439"]],[16,20,["H622"]],[20,21,["H2091"]],[21,23,["H3701"]],[23,25,["H899"]],[25,27,["H3966"]],[27,28,["H7230"]]]},{"k":23083,"v":[[0,2,["H3651"]],[2,4,["H1961"]],[4,6,["H4046"]],[6,9,["H5483"]],[9,12,["H6505"]],[12,15,["H1581"]],[15,19,["H2543"]],[19,22,["H3605"]],[22,24,["H929"]],[24,25,["H834"]],[25,27,["H1961"]],[27,29,["H1992"]],[29,30,["H4264"]],[30,32,["H2063"]],[32,33,["H4046"]]]},{"k":23084,"v":[[0,6,["H1961"]],[6,9,["H3605"]],[9,12,["H3498"]],[12,14,["H4480","H3605"]],[14,16,["H1471"]],[16,18,["H935"]],[18,19,["H5921"]],[19,20,["H3389"]],[20,24,["H5927"]],[24,25,["H4480","H1767"]],[25,26,["H8141"]],[26,28,["H8141"]],[28,30,["H7812"]],[30,32,["H4428"]],[32,34,["H3068"]],[34,36,["H6635"]],[36,39,["H2287","(H853)"]],[39,41,["H2282"]],[41,43,["H5521"]]]},{"k":23085,"v":[[0,4,["H1961"]],[4,6,["H834"]],[6,8,["H3808"]],[8,10,["H5927"]],[10,11,["H4480","H854"]],[11,14,["H4940"]],[14,17,["H776"]],[17,18,["H413"]],[18,19,["H3389"]],[19,21,["H7812"]],[21,23,["H4428"]],[23,25,["H3068"]],[25,27,["H6635"]],[27,29,["H5921"]],[29,32,["H1961"]],[32,33,["H3808"]],[33,34,["H1653"]]]},{"k":23086,"v":[[0,2,["H518"]],[2,4,["H4940"]],[4,6,["H4714"]],[6,9,["H5927","H3808"]],[9,11,["H935"]],[11,12,["H3808"]],[12,15,["H3808"]],[15,19,["H1961"]],[19,21,["H4046"]],[21,22,["H834"]],[22,24,["H3068"]],[24,26,["H5062","(H853)"]],[26,28,["H1471"]],[28,29,["H834"]],[29,32,["H5927","H3808"]],[32,34,["H2287","(H853)"]],[34,36,["H2282"]],[36,38,["H5521"]]]},{"k":23087,"v":[[0,1,["H2063"]],[1,3,["H1961"]],[3,5,["H2403"]],[5,7,["H4714"]],[7,10,["H2403"]],[10,12,["H3605"]],[12,13,["H1471"]],[13,14,["H834"]],[14,17,["H5927","H3808"]],[17,19,["H2287","(H853)"]],[19,21,["H2282"]],[21,23,["H5521"]]]},{"k":23088,"v":[[0,2,["H1931"]],[2,3,["H3117"]],[3,6,["H1961"]],[6,7,["H5921"]],[7,9,["H4698"]],[9,12,["H5483"]],[12,13,["H6944"]],[13,16,["H3068"]],[16,19,["H5518"]],[19,22,["H3068"]],[22,23,["H1004"]],[23,25,["H1961"]],[25,28,["H4219"]],[28,29,["H6440"]],[29,31,["H4196"]]]},{"k":23089,"v":[[0,2,["H3605"]],[2,3,["H5518"]],[3,5,["H3389"]],[5,8,["H3063"]],[8,10,["H1961"]],[10,11,["H6944"]],[11,14,["H3068"]],[14,16,["H6635"]],[16,18,["H3605"]],[18,21,["H2076"]],[21,23,["H935"]],[23,25,["H3947"]],[25,26,["H4480"]],[26,29,["H1310"]],[29,33,["H1931"]],[33,34,["H3117"]],[34,37,["H1961"]],[37,38,["H3808"]],[38,39,["H5750"]],[39,41,["H3669"]],[41,44,["H1004"]],[44,47,["H3068"]],[47,49,["H6635"]]]},{"k":23090,"v":[[0,2,["H4853"]],[2,5,["H1697"]],[5,8,["H3068"]],[8,9,["H413"]],[9,10,["H3478"]],[10,11,["H3027"]],[11,12,["H4401"]]]},{"k":23091,"v":[[0,3,["H157"]],[3,5,["H559"]],[5,7,["H3068"]],[7,10,["H559"]],[10,11,["H4100"]],[11,14,["H157"]],[14,17,["H3808"]],[17,18,["H6215"]],[18,19,["H3290"]],[19,20,["H251"]],[20,21,["H5002"]],[21,23,["H3068"]],[23,26,["H157","(H853)"]],[26,27,["H3290"]]]},{"k":23092,"v":[[0,3,["H8130"]],[3,4,["H6215"]],[4,6,["H7760","(H853)"]],[6,8,["H2022"]],[8,11,["H5159"]],[11,12,["H8077"]],[12,15,["H8568"]],[15,18,["H4057"]]]},{"k":23093,"v":[[0,1,["H3588"]],[1,2,["H123"]],[2,3,["H559"]],[3,6,["H7567"]],[6,10,["H7725"]],[10,12,["H1129"]],[12,15,["H2723"]],[15,16,["H3541"]],[16,17,["H559"]],[17,19,["H3068"]],[19,21,["H6635"]],[21,22,["H1992"]],[22,24,["H1129"]],[24,26,["H589"]],[26,29,["H2040"]],[29,33,["H7121"]],[33,36,["H1366"]],[36,38,["H7564"]],[38,41,["H5971"]],[41,43,["H834"]],[43,45,["H3068"]],[45,47,["H2194"]],[47,49,["H5704","H5769"]]]},{"k":23094,"v":[[0,3,["H5869"]],[3,5,["H7200"]],[5,7,["H859"]],[7,9,["H559"]],[9,11,["H3068"]],[11,14,["H1431"]],[14,15,["H4480","H5921"]],[15,17,["H1366"]],[17,19,["H3478"]]]},{"k":23095,"v":[[0,2,["H1121"]],[2,3,["H3513"]],[3,5,["H1"]],[5,8,["H5650"]],[8,10,["H113"]],[10,11,["H518"]],[11,13,["H589"]],[13,16,["H1"]],[16,17,["H346"]],[17,20,["H3519"]],[20,22,["H518"]],[22,23,["H589"]],[23,26,["H113"]],[26,27,["H346"]],[27,30,["H4172"]],[30,31,["H559"]],[31,33,["H3068"]],[33,35,["H6635"]],[35,39,["H3548"]],[39,41,["H959"]],[41,43,["H8034"]],[43,46,["H559"]],[46,47,["H4100"]],[47,50,["H959","(H853)"]],[50,52,["H8034"]]]},{"k":23096,"v":[[0,2,["H5066"]],[2,3,["H1351"]],[3,4,["H3899"]],[4,5,["H5921"]],[5,7,["H4196"]],[7,10,["H559"]],[10,11,["H4100"]],[11,14,["H1351"]],[14,19,["H559"]],[19,21,["H7979"]],[21,24,["H3068"]],[24,26,["H959"]]]},{"k":23097,"v":[[0,2,["H3588"]],[2,4,["H5066"]],[4,6,["H5787"]],[6,8,["H2076"]],[8,11,["H369"]],[11,12,["H7451"]],[12,14,["H3588"]],[14,16,["H5066"]],[16,18,["H6455"]],[18,20,["H2470"]],[20,23,["H369"]],[23,24,["H7451"]],[24,25,["H7126"]],[25,27,["H4994"]],[27,30,["H6346"]],[30,34,["H7521"]],[34,37,["H176"]],[37,38,["H5375"]],[38,40,["H6440"]],[40,41,["H559"]],[41,43,["H3068"]],[43,45,["H6635"]]]},{"k":23098,"v":[[0,2,["H6258"]],[2,5,["H4994"]],[5,6,["H2470"]],[6,7,["H410"]],[7,12,["H2603"]],[12,15,["H2063"]],[15,17,["H1961"]],[17,20,["H4480","H3027"]],[20,23,["H5375"]],[23,24,["H4480"]],[24,25,["H6440"]],[25,26,["H559"]],[26,28,["H3068"]],[28,30,["H6635"]]]},{"k":23099,"v":[[0,1,["H4310"]],[1,4,["H1571"]],[4,9,["H5462"]],[9,11,["H1817"]],[11,14,["H3808"]],[14,17,["H215"]],[17,21,["H4196"]],[21,23,["H2600"]],[23,26,["H369"]],[26,27,["H2656"]],[27,30,["H559"]],[30,32,["H3068"]],[32,34,["H6635"]],[34,35,["H3808"]],[35,38,["H7521"]],[38,40,["H4503"]],[40,43,["H4480","H3027"]]]},{"k":23100,"v":[[0,1,["H3588"]],[1,4,["H4480","H4217"]],[4,7,["H8121"]],[7,9,["H5704"]],[9,12,["H3996"]],[12,17,["H8034"]],[17,20,["H1419"]],[20,23,["H1471"]],[23,26,["H3605"]],[26,27,["H4725"]],[27,28,["H6999"]],[28,31,["H5066"]],[31,34,["H8034"]],[34,37,["H2889"]],[37,38,["H4503"]],[38,39,["H3588"]],[39,41,["H8034"]],[41,44,["H1419"]],[44,47,["H1471"]],[47,48,["H559"]],[48,50,["H3068"]],[50,52,["H6635"]]]},{"k":23101,"v":[[0,2,["H859"]],[2,4,["H2490"]],[4,9,["H559"]],[9,11,["H7979"]],[11,14,["H136"]],[14,16,["H1351"]],[16,19,["H5108"]],[19,23,["H400"]],[23,25,["H959"]]]},{"k":23102,"v":[[0,2,["H559"]],[2,4,["H2009"]],[4,7,["H4972","H8513"]],[7,14,["H5301"]],[14,16,["H559"]],[16,18,["H3068"]],[18,20,["H6635"]],[20,23,["H935"]],[23,27,["H1497"]],[27,30,["H6455"]],[30,33,["H2470"]],[33,36,["H935","(H853)"]],[36,38,["H4503"]],[38,41,["H7521"]],[41,45,["H4480","H3027"]],[45,46,["H559"]],[46,48,["H3068"]]]},{"k":23103,"v":[[0,2,["H779"]],[2,5,["H5230"]],[5,7,["H3426"]],[7,10,["H5739"]],[10,12,["H2145"]],[12,14,["H5087"]],[14,16,["H2076"]],[16,19,["H136"]],[19,22,["H7843"]],[22,23,["H3588"]],[23,24,["H589"]],[24,27,["H1419"]],[27,28,["H4428"]],[28,29,["H559"]],[29,31,["H3068"]],[31,33,["H6635"]],[33,36,["H8034"]],[36,38,["H3372"]],[38,41,["H1471"]]]},{"k":23104,"v":[[0,2,["H6258"]],[2,5,["H3548"]],[5,6,["H2063"]],[6,7,["H4687"]],[7,9,["H413"]],[9,10,[]]]},{"k":23105,"v":[[0,1,["H518"]],[1,4,["H3808"]],[4,5,["H8085"]],[5,7,["H518"]],[7,10,["H3808"]],[10,11,["H7760"]],[11,13,["H5921"]],[13,14,["H3820"]],[14,16,["H5414"]],[16,17,["H3519"]],[17,20,["H8034"]],[20,21,["H559"]],[21,23,["H3068"]],[23,25,["H6635"]],[25,29,["H7971","(H853)"]],[29,31,["H3994"]],[31,37,["H779","(H853)"]],[37,39,["H1293"]],[39,40,["H1571"]],[40,43,["H779"]],[43,46,["H3588"]],[46,49,["H369"]],[49,50,["H7760"]],[50,52,["H5921"]],[52,53,["H3820"]]]},{"k":23106,"v":[[0,1,["H2009"]],[1,4,["H1605","(H853)"]],[4,6,["H2233"]],[6,8,["H2219"]],[8,9,["H6569"]],[9,10,["H5921"]],[10,12,["H6440"]],[12,15,["H6569"]],[15,19,["H2282"]],[19,25,["H5375","(H853)"]],[25,26,["H413"]],[26,27,[]]]},{"k":23107,"v":[[0,4,["H3045"]],[4,5,["H3588"]],[5,8,["H7971"]],[8,9,["H2063","(H853)"]],[9,10,["H4687"]],[10,11,["H413"]],[11,15,["H1285"]],[15,17,["H1961"]],[17,18,["H854"]],[18,19,["H3878"]],[19,20,["H559"]],[20,22,["H3068"]],[22,24,["H6635"]]]},{"k":23108,"v":[[0,2,["H1285"]],[2,3,["H1961"]],[3,4,["H854"]],[4,7,["H2416"]],[7,9,["H7965"]],[9,12,["H5414"]],[12,18,["H4172"]],[18,21,["H3372"]],[21,25,["H2865"]],[25,26,["H4480","H6440"]],[26,28,["H8034"]]]},{"k":23109,"v":[[0,2,["H8451"]],[2,4,["H571"]],[4,5,["H1961"]],[5,8,["H6310"]],[8,10,["H5766"]],[10,12,["H3808"]],[12,13,["H4672"]],[13,16,["H8193"]],[16,18,["H1980"]],[18,19,["H854"]],[19,22,["H7965"]],[22,24,["H4334"]],[24,29,["H7725","H7227"]],[29,31,["H4480","H5771"]]]},{"k":23110,"v":[[0,1,["H3588"]],[1,3,["H3548"]],[3,4,["H8193"]],[4,6,["H8104"]],[6,7,["H1847"]],[7,11,["H1245"]],[11,13,["H8451"]],[13,16,["H4480","H6310"]],[16,17,["H3588"]],[17,18,["H1931"]],[18,21,["H4397"]],[21,24,["H3068"]],[24,26,["H6635"]]]},{"k":23111,"v":[[0,2,["H859"]],[2,4,["H5493"]],[4,6,["H4480"]],[6,8,["H1870"]],[8,14,["H3782","H7227"]],[14,17,["H8451"]],[17,20,["H7843"]],[20,22,["H1285"]],[22,24,["H3878"]],[24,25,["H559"]],[25,27,["H3068"]],[27,29,["H6635"]]]},{"k":23112,"v":[[0,3,["H589"]],[3,4,["H1571"]],[4,5,["H5414"]],[5,7,["H959"]],[7,9,["H8217"]],[9,11,["H3605"]],[11,13,["H5971"]],[13,15,["H6310","H834"]],[15,18,["H369"]],[18,19,["H8104","(H853)"]],[19,21,["H1870"]],[21,25,["H5375","H6440"]],[25,28,["H8451"]]]},{"k":23113,"v":[[0,3,["H3808"]],[3,4,["H3605"]],[4,5,["H259"]],[5,6,["H1"]],[6,8,["H3808"]],[8,9,["H259"]],[9,10,["H410"]],[10,11,["H1254"]],[11,13,["H4069"]],[13,17,["H898"]],[17,19,["H376"]],[19,22,["H251"]],[22,24,["H2490"]],[24,26,["H1285"]],[26,29,["H1"]]]},{"k":23114,"v":[[0,1,["H3063"]],[1,4,["H898"]],[4,7,["H8441"]],[7,9,["H6213"]],[9,11,["H3478"]],[11,14,["H3389"]],[14,15,["H3588"]],[15,16,["H3063"]],[16,18,["H2490"]],[18,20,["H6944"]],[20,23,["H3068"]],[23,24,["H834"]],[24,26,["H157"]],[26,29,["H1166"]],[29,31,["H1323"]],[31,34,["H5236"]],[34,35,["H410"]]]},{"k":23115,"v":[[0,2,["H3068"]],[2,5,["H3772"]],[5,7,["H376"]],[7,8,["H834"]],[8,9,["H6213"]],[9,12,["H5782"]],[12,15,["H6030"]],[15,19,["H4480","H168"]],[19,21,["H3290"]],[21,25,["H5066"]],[25,27,["H4503"]],[27,30,["H3068"]],[30,32,["H6635"]]]},{"k":23116,"v":[[0,2,["H2063"]],[2,5,["H6213"]],[5,6,["H8145"]],[6,7,["H3680","(H853)"]],[7,9,["H4196"]],[9,12,["H3068"]],[12,14,["H1832"]],[14,16,["H1065"]],[16,20,["H603"]],[20,24,["H6437","H413"]],[24,25,["H4480","H369"]],[25,27,["H4503"]],[27,29,["H5750"]],[29,31,["H3947"]],[31,35,["H7522"]],[35,38,["H4480","H3027"]]]},{"k":23117,"v":[[0,3,["H559"]],[3,4,["H5921","H4100"]],[4,5,["H5921","H3588"]],[5,7,["H3068"]],[7,10,["H5749"]],[10,11,["H996"]],[11,15,["H802"]],[15,18,["H5271"]],[18,20,["H834"]],[20,21,["H859"]],[21,24,["H898"]],[24,27,["H1931"]],[27,29,["H2278"]],[29,32,["H802"]],[32,35,["H1285"]]]},{"k":23118,"v":[[0,3,["H3808"]],[3,5,["H6213"]],[5,6,["H259"]],[6,11,["H7605"]],[11,14,["H7307"]],[14,16,["H4100"]],[16,17,["H259"]],[17,21,["H1245"]],[21,23,["H430"]],[23,24,["H2233"]],[24,27,["H8104"]],[27,30,["H7307"]],[30,33,["H408"]],[33,35,["H898"]],[35,38,["H802"]],[38,41,["H5271"]]]},{"k":23119,"v":[[0,1,["H3588"]],[1,3,["H3068"]],[3,5,["H430"]],[5,7,["H3478"]],[7,8,["H559"]],[8,11,["H8130"]],[11,13,["H7971"]],[13,16,["H3680"]],[16,17,["H2555"]],[17,18,["H5921"]],[18,20,["H3830"]],[20,21,["H559"]],[21,23,["H3068"]],[23,25,["H6635"]],[25,28,["H8104"]],[28,31,["H7307"]],[31,36,["H898","H3808"]]]},{"k":23120,"v":[[0,3,["H3021"]],[3,5,["H3068"]],[5,8,["H1697"]],[8,11,["H559"]],[11,12,["H4100"]],[12,15,["H3021"]],[15,19,["H559"]],[19,21,["H3605"]],[21,23,["H6213"]],[23,24,["H7451"]],[24,26,["H2896"]],[26,29,["H5869"]],[29,32,["H3068"]],[32,34,["H1931"]],[34,35,["H2654"]],[35,38,["H176"]],[38,39,["H346"]],[39,42,["H430"]],[42,44,["H4941"]]]},{"k":23121,"v":[[0,1,["H2009"]],[1,4,["H7971"]],[4,6,["H4397"]],[6,10,["H6437"]],[10,12,["H1870"]],[12,13,["H6440"]],[13,17,["H113"]],[17,18,["H834"]],[18,19,["H859"]],[19,20,["H1245"]],[20,22,["H6597"]],[22,23,["H935"]],[23,24,["H413"]],[24,26,["H1964"]],[26,29,["H4397"]],[29,32,["H1285"]],[32,33,["H834"]],[33,34,["H859"]],[34,35,["H2655"]],[35,37,["H2009"]],[37,40,["H935"]],[40,41,["H559"]],[41,43,["H3068"]],[43,45,["H6635"]]]},{"k":23122,"v":[[0,2,["H4310"]],[2,4,["H3557","(H853)"]],[4,6,["H3117"]],[6,9,["H935"]],[9,11,["H4310"]],[11,13,["H5975"]],[13,16,["H7200"]],[16,17,["H3588"]],[17,18,["H1931"]],[18,22,["H6884"]],[22,23,["H784"]],[23,26,["H3526"]],[26,27,["H1287"]]]},{"k":23123,"v":[[0,4,["H3427"]],[4,7,["H6884"]],[7,9,["H2891"]],[9,11,["H3701"]],[11,15,["H2891","(H853)"]],[15,17,["H1121"]],[17,19,["H3878"]],[19,21,["H2212"]],[21,24,["H2091"]],[24,26,["H3701"]],[26,30,["H1961","H5066"]],[30,33,["H3068"]],[33,35,["H4503"]],[35,37,["H6666"]]]},{"k":23124,"v":[[0,4,["H4503"]],[4,6,["H3063"]],[6,8,["H3389"]],[8,10,["H6149"]],[10,13,["H3068"]],[13,17,["H3117"]],[17,19,["H5769"]],[19,23,["H6931"]],[23,24,["H8141"]]]},{"k":23125,"v":[[0,5,["H7126"]],[5,6,["H413"]],[6,9,["H4941"]],[9,13,["H1961"]],[13,15,["H4116"]],[15,16,["H5707"]],[16,19,["H3784"]],[19,23,["H5003"]],[23,26,["H8267"]],[26,27,["H7650"]],[27,32,["H6231"]],[32,34,["H7916"]],[34,37,["H7939"]],[37,39,["H490"]],[39,42,["H3490"]],[42,46,["H5186"]],[46,48,["H1616"]],[48,53,["H3372"]],[53,54,["H3808"]],[54,56,["H559"]],[56,58,["H3068"]],[58,60,["H6635"]]]},{"k":23126,"v":[[0,1,["H3588"]],[1,2,["H589"]],[2,5,["H3068"]],[5,7,["H8138"]],[7,8,["H3808"]],[8,10,["H859"]],[10,11,["H1121"]],[11,13,["H3290"]],[13,15,["H3808"]],[15,16,["H3615"]]]},{"k":23127,"v":[[0,4,["H4480","H3117"]],[4,7,["H1"]],[7,11,["H5493"]],[11,14,["H4480","H2706"]],[14,17,["H3808"]],[17,18,["H8104"]],[18,20,["H7725"]],[20,21,["H413"]],[21,26,["H7725"]],[26,27,["H413"]],[27,29,["H559"]],[29,31,["H3068"]],[31,33,["H6635"]],[33,36,["H559"]],[36,37,["H4100"]],[37,40,["H7725"]]]},{"k":23128,"v":[[0,3,["H120"]],[3,4,["H6906"]],[4,5,["H430"]],[5,6,["H3588"]],[6,7,["H859"]],[7,9,["H6906"]],[9,13,["H559"]],[13,14,["H4100"]],[14,17,["H6906"]],[17,20,["H4643"]],[20,22,["H8641"]]]},{"k":23129,"v":[[0,1,["H859"]],[1,3,["H779"]],[3,6,["H3994"]],[6,8,["H859"]],[8,10,["H6906"]],[10,14,["H3605"]],[14,15,["H1471"]]]},{"k":23130,"v":[[0,1,["H935"]],[1,2,["(H853)"]],[2,3,["H3605"]],[3,5,["H4643"]],[5,6,["H413"]],[6,8,["H1004","H214"]],[8,12,["H1961"]],[12,13,["H2964"]],[13,16,["H1004"]],[16,18,["H974"]],[18,20,["H4994"]],[20,21,["H2063"]],[21,22,["H559"]],[22,24,["H3068"]],[24,26,["H6635"]],[26,27,["H518"]],[27,30,["H3808"]],[30,31,["H6605"]],[31,32,["(H853)"]],[32,34,["H699"]],[34,36,["H8064"]],[36,40,["H7324"]],[40,42,["H1293"]],[42,43,["H5704"]],[43,46,["H1097"]],[46,49,["H1767"]],[49,52,[]]]},{"k":23131,"v":[[0,4,["H1605"]],[4,6,["H398"]],[6,13,["H3808"]],[13,14,["H7843","(H853)"]],[14,16,["H6529"]],[16,19,["H127"]],[19,20,["H3808"]],[20,23,["H1612"]],[23,29,["H7921"]],[29,32,["H7704"]],[32,33,["H559"]],[33,35,["H3068"]],[35,37,["H6635"]]]},{"k":23132,"v":[[0,2,["H3605"]],[2,3,["H1471"]],[3,7,["H833","(H853)"]],[7,8,["H3588"]],[8,9,["H859"]],[9,11,["H1961"]],[11,13,["H2656"]],[13,14,["H776"]],[14,15,["H559"]],[15,17,["H3068"]],[17,19,["H6635"]]]},{"k":23133,"v":[[0,2,["H1697"]],[2,5,["H2388"]],[5,6,["H5921"]],[6,8,["H559"]],[8,10,["H3068"]],[10,13,["H559"]],[13,14,["H4100"]],[14,17,["H1696"]],[17,20,["H5921"]],[20,21,[]]]},{"k":23134,"v":[[0,3,["H559"]],[3,6,["H7723"]],[6,8,["H5647"]],[8,9,["H430"]],[9,11,["H4100"]],[11,12,["H1215"]],[12,15,["H3588"]],[15,18,["H8104"]],[18,20,["H4931"]],[20,22,["H3588"]],[22,25,["H1980"]],[25,26,["H6941"]],[26,27,["H4480","H6440"]],[27,29,["H3068"]],[29,31,["H6635"]]]},{"k":23135,"v":[[0,2,["H6258"]],[2,3,["H587"]],[3,7,["H833","H2086"]],[7,8,["H1571"]],[8,11,["H6213"]],[11,12,["H7564"]],[12,15,["H1129"]],[15,16,["H1571"]],[16,19,["H974"]],[19,20,["H430"]],[20,23,["H4422"]]]},{"k":23136,"v":[[0,1,["H227"]],[1,4,["H3373"]],[4,6,["H3068"]],[6,7,["H1696"]],[7,9,["H376"]],[9,10,["H854"]],[10,11,["H7453"]],[11,14,["H3068"]],[14,15,["H7181"]],[15,17,["H8085"]],[17,21,["H5612"]],[21,23,["H2146"]],[23,25,["H3789"]],[25,26,["H6440"]],[26,31,["H3372"]],[31,33,["H3068"]],[33,36,["H2803"]],[36,39,["H8034"]]]},{"k":23137,"v":[[0,4,["H1961"]],[4,6,["H559"]],[6,8,["H3068"]],[8,10,["H6635"]],[10,13,["H3117"]],[13,14,["H834"]],[14,15,["H589"]],[15,17,["H6213"]],[17,19,["H5459"]],[19,23,["H2550","H5921"]],[23,25,["H834"]],[25,27,["H376"]],[27,28,["H2550","H5921"]],[28,31,["H1121"]],[31,33,["H5647"]],[33,34,[]]]},{"k":23138,"v":[[0,4,["H7725"]],[4,6,["H7200"]],[6,7,["H996"]],[7,9,["H6662"]],[9,12,["H7563"]],[12,13,["H996"]],[13,16,["H5647"]],[16,17,["H430"]],[17,19,["H834"]],[19,21,["H5647"]],[21,23,["H3808"]]]},{"k":23139,"v":[[0,1,["H3588"]],[1,2,["H2009"]],[2,4,["H3117"]],[4,5,["H935"]],[5,8,["H1197"]],[8,11,["H8574"]],[11,13,["H3605"]],[13,15,["H2086"]],[15,18,["H3605"]],[18,20,["H6213"]],[20,21,["H7564"]],[21,23,["H1961"]],[23,24,["H7179"]],[24,27,["H3117"]],[27,29,["H935"]],[29,33,["H3857","(H853)"]],[33,34,["H559"]],[34,36,["H3068"]],[36,38,["H6635"]],[38,39,["H834"]],[39,42,["H5800"]],[42,44,["H3808"]],[44,45,["H8328"]],[45,47,["H6057"]]]},{"k":23140,"v":[[0,5,["H3373"]],[5,7,["H8034"]],[7,10,["H8121"]],[10,12,["H6666"]],[12,13,["H2224"]],[13,15,["H4832"]],[15,18,["H3671"]],[18,23,["H3318"]],[23,26,["H6335"]],[26,28,["H5695"]],[28,31,["H4770"]]]},{"k":23141,"v":[[0,5,["H6072"]],[5,7,["H7563"]],[7,8,["H3588"]],[8,11,["H1961"]],[11,12,["H665"]],[12,13,["H8478"]],[13,15,["H3709"]],[15,18,["H7272"]],[18,21,["H3117"]],[21,22,["H834"]],[22,23,["H589"]],[23,25,["H6213"]],[25,27,["H559"]],[27,29,["H3068"]],[29,31,["H6635"]]]},{"k":23142,"v":[[0,1,["H2142"]],[1,4,["H8451"]],[4,6,["H4872"]],[6,8,["H5650"]],[8,9,["H834"]],[9,12,["H6680"]],[12,15,["H2722"]],[15,16,["H5921"]],[16,17,["H3605"]],[17,18,["H3478"]],[18,21,["H2706"]],[21,23,["H4941"]]]},{"k":23143,"v":[[0,1,["H2009"]],[1,2,["H595"]],[2,4,["H7971"]],[4,5,["(H853)"]],[5,6,["H452"]],[6,8,["H5030"]],[8,9,["H6440"]],[9,11,["H935"]],[11,14,["H1419"]],[14,16,["H3372"]],[16,17,["H3117"]],[17,20,["H3068"]]]},{"k":23144,"v":[[0,4,["H7725"]],[4,6,["H3820"]],[6,9,["H1"]],[9,10,["H5921"]],[10,12,["H1121"]],[12,15,["H3820"]],[15,18,["H1121"]],[18,19,["H5921"]],[19,21,["H1"]],[21,22,["H6435"]],[22,24,["H935"]],[24,26,["H5221","(H853)"]],[26,28,["H776"]],[28,31,["H2764"]]]},{"k":23145,"v":[[0,2,["G976"]],[2,5,["G1078"]],[5,7,["G2424"]],[7,8,["G5547"]],[8,10,["G5207"]],[10,12,["G1138"]],[12,14,["G5207"]],[14,16,["G11"]]]},{"k":23146,"v":[[0,1,["G11"]],[1,2,["G1080"]],[2,3,["G2464"]],[3,4,["G1161"]],[4,5,["G2464"]],[5,6,["G1080"]],[6,7,["G2384"]],[7,8,["G1161"]],[8,9,["G2384"]],[9,10,["G1080"]],[10,11,["G2455"]],[11,12,["G2532"]],[12,13,["G846"]],[13,14,["G80"]]]},{"k":23147,"v":[[0,1,["G1161"]],[1,2,["G2455"]],[2,3,["G1080"]],[3,4,["G5329"]],[4,5,["G2532"]],[5,6,["G2196"]],[6,7,["G1537"]],[7,8,["G2283"]],[8,9,["G1161"]],[9,10,["G5329"]],[10,11,["G1080"]],[11,12,["G2074"]],[12,13,["G1161"]],[13,14,["G2074"]],[14,15,["G1080"]],[15,16,["G689"]]]},{"k":23148,"v":[[0,1,["G1161"]],[1,2,["G689"]],[2,3,["G1080"]],[3,4,["G284"]],[4,5,["G1161"]],[5,6,["G284"]],[6,7,["G1080"]],[7,8,["G3476"]],[8,9,["G1161"]],[9,10,["G3476"]],[10,11,["G1080"]],[11,12,["G4533"]]]},{"k":23149,"v":[[0,1,["G1161"]],[1,2,["G4533"]],[2,3,["G1080"]],[3,4,["G1003"]],[4,5,["G1537"]],[5,6,["G4477"]],[6,7,["G1161"]],[7,8,["G1003"]],[8,9,["G1080"]],[9,10,["G5601"]],[10,11,["G1537"]],[11,12,["G4503"]],[12,13,["G1161"]],[13,14,["G5601"]],[14,15,["G1080"]],[15,16,["G2421"]]]},{"k":23150,"v":[[0,1,["G1161"]],[1,2,["G2421"]],[2,3,["G1080"]],[3,4,["G1138"]],[4,5,["G3588"]],[5,6,["G935"]],[6,7,["G1161"]],[7,8,["G1138"]],[8,9,["G3588"]],[9,10,["G935"]],[10,11,["G1080"]],[11,12,["G4672"]],[12,13,["G1537"]],[13,14,["G3588"]],[14,21,["G3774"]]]},{"k":23151,"v":[[0,1,["G1161"]],[1,2,["G4672"]],[2,3,["G1080"]],[3,4,["G4497"]],[4,5,["G1161"]],[5,6,["G4497"]],[6,7,["G1080"]],[7,8,["G7"]],[8,9,["G1161"]],[9,10,["G7"]],[10,11,["G1080"]],[11,12,["G760"]]]},{"k":23152,"v":[[0,1,["G1161"]],[1,2,["G760"]],[2,3,["G1080"]],[3,4,["G2498"]],[4,5,["G1161"]],[5,6,["G2498"]],[6,7,["G1080"]],[7,8,["G2496"]],[8,9,["G1161"]],[9,10,["G2496"]],[10,11,["G1080"]],[11,12,["G3604"]]]},{"k":23153,"v":[[0,1,["G1161"]],[1,2,["G3604"]],[2,3,["G1080"]],[3,4,["G2488"]],[4,5,["G1161"]],[5,6,["G2488"]],[6,7,["G1080"]],[7,8,["G881"]],[8,9,["G1161"]],[9,10,["G881"]],[10,11,["G1080"]],[11,12,["G1478"]]]},{"k":23154,"v":[[0,1,["G1161"]],[1,2,["G1478"]],[2,3,["G1080"]],[3,4,["G3128"]],[4,5,["G1161"]],[5,6,["G3128"]],[6,7,["G1080"]],[7,8,["G300"]],[8,9,["G1161"]],[9,10,["G300"]],[10,11,["G1080"]],[11,12,["G2502"]]]},{"k":23155,"v":[[0,1,["G1161"]],[1,2,["G2502"]],[2,3,["G1080"]],[3,4,["G2423"]],[4,5,["G2532"]],[5,6,["G846"]],[6,7,["G80"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,14,["G3350"]],[14,16,["G897"]]]},{"k":23156,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,3,["G3588"]],[3,5,["G3350"]],[5,7,["G897"]],[7,8,["G2423"]],[8,9,["G1080"]],[9,10,["G4528"]],[10,11,["G1161"]],[11,12,["G4528"]],[12,13,["G1080"]],[13,14,["G2216"]]]},{"k":23157,"v":[[0,1,["G1161"]],[1,2,["G2216"]],[2,3,["G1080"]],[3,4,["G10"]],[4,5,["G1161"]],[5,6,["G10"]],[6,7,["G1080"]],[7,8,["G1662"]],[8,9,["G1161"]],[9,10,["G1662"]],[10,11,["G1080"]],[11,12,["G107"]]]},{"k":23158,"v":[[0,1,["G1161"]],[1,2,["G107"]],[2,3,["G1080"]],[3,4,["G4524"]],[4,5,["G1161"]],[5,6,["G4524"]],[6,7,["G1080"]],[7,8,["G885"]],[8,9,["G1161"]],[9,10,["G885"]],[10,11,["G1080"]],[11,12,["G1664"]]]},{"k":23159,"v":[[0,1,["G1161"]],[1,2,["G1664"]],[2,3,["G1080"]],[3,4,["G1648"]],[4,5,["G1161"]],[5,6,["G1648"]],[6,7,["G1080"]],[7,8,["G3157"]],[8,9,["G1161"]],[9,10,["G3157"]],[10,11,["G1080"]],[11,12,["G2384"]]]},{"k":23160,"v":[[0,1,["G1161"]],[1,2,["G2384"]],[2,3,["G1080"]],[3,4,["G2501"]],[4,5,["G3588"]],[5,6,["G435"]],[6,8,["G3137"]],[8,9,["G1537"]],[9,10,["G3739"]],[10,12,["G1080"]],[12,13,["G2424"]],[13,14,["G3588"]],[14,16,["G3004"]],[16,17,["G5547"]]]},{"k":23161,"v":[[0,1,["G3767"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G1074"]],[4,5,["G575"]],[5,6,["G11"]],[6,7,["G2193"]],[7,8,["G1138"]],[8,10,["G1180"]],[10,11,["G1074"]],[11,12,["G2532"]],[12,13,["G575"]],[13,14,["G1138"]],[14,15,["G2193"]],[15,16,["G3588"]],[16,18,["G3350"]],[18,20,["G897"]],[20,22,["G1180"]],[22,23,["G1074"]],[23,24,["G2532"]],[24,25,["G575"]],[25,26,["G3588"]],[26,28,["G3350"]],[28,30,["G897"]],[30,31,["G2193"]],[31,32,["G5547"]],[32,34,["G1180"]],[34,35,["G1074"]]]},{"k":23162,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1083"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,7,["G2258"]],[7,10,["G3779"]],[10,12,["G1063"]],[12,13,["G846"]],[13,14,["G3384"]],[14,15,["G3137"]],[15,17,["G3423"]],[17,19,["G2501"]],[19,20,["G4250"]],[20,21,["G846"]],[21,23,["G4905"]],[23,28,["G2147","G2192","G1722","G1064"]],[28,29,["G1537"]],[29,31,["G40"]],[31,32,["G4151"]]]},{"k":23163,"v":[[0,1,["G1161"]],[1,2,["G2501"]],[2,3,["G846"]],[3,4,["G435"]],[4,5,["G5607"]],[5,7,["G1342"]],[7,9,["G2532"]],[9,10,["G3361"]],[10,11,["G2309"]],[11,17,["G3856","G846"]],[17,19,["G1014"]],[19,23,["G630","G846"]],[23,24,["G2977"]]]},{"k":23164,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G1760"]],[4,7,["G5023"]],[7,8,["G2400"]],[8,10,["G32"]],[10,13,["G2962"]],[13,14,["G5316"]],[14,16,["G846"]],[16,17,["G2596"]],[17,19,["G3677"]],[19,20,["G3004"]],[20,21,["G2501"]],[21,23,["G5207"]],[23,25,["G1138"]],[25,26,["G5399"]],[26,27,["G3361"]],[27,29,["G3880"]],[29,32,["G3137"]],[32,33,["G4675"]],[33,34,["G1135"]],[34,35,["G1063"]],[35,39,["G1080"]],[39,40,["G1722"]],[40,41,["G846"]],[41,42,["G2076"]],[42,43,["G1537"]],[43,45,["G40"]],[45,46,["G4151"]]]},{"k":23165,"v":[[0,1,["G1161"]],[1,5,["G5088"]],[5,7,["G5207"]],[7,8,["G2532"]],[8,11,["G2564"]],[11,12,["G846"]],[12,13,["G3686"]],[13,14,["G2424"]],[14,15,["G1063"]],[15,16,["G846"]],[16,18,["G4982"]],[18,19,["G848"]],[19,20,["G2992"]],[20,21,["G575"]],[21,22,["G846"]],[22,23,["G266"]]]},{"k":23166,"v":[[0,1,["G1161"]],[1,2,["G3650"]],[2,3,["G5124"]],[3,5,["G1096"]],[5,6,["G2443"]],[6,10,["G4137"]],[10,11,["G3588"]],[11,13,["G4483"]],[13,14,["G5259"]],[14,15,["G3588"]],[15,16,["G2962"]],[16,17,["G1223"]],[17,18,["G3588"]],[18,19,["G4396"]],[19,20,["G3004"]]]},{"k":23167,"v":[[0,1,["G2400"]],[1,3,["G3933"]],[3,7,["G2192","G1722","G1064"]],[7,8,["G2532"]],[8,11,["G5088"]],[11,13,["G5207"]],[13,14,["G2532"]],[14,17,["G2564"]],[17,18,["G846"]],[18,19,["G3686"]],[19,20,["G1694"]],[20,21,["G3739"]],[21,23,["G3177"]],[23,24,["G2076"]],[24,25,["G2316"]],[25,26,["G3326"]],[26,27,["G2257"]]]},{"k":23168,"v":[[0,1,["G1161"]],[1,2,["G2501"]],[2,4,["G1326"]],[4,5,["G575"]],[5,6,["G5258"]],[6,7,["G4160"]],[7,8,["G5613"]],[8,9,["G3588"]],[9,10,["G32"]],[10,13,["G2962"]],[13,15,["G4367"]],[15,16,["G846"]],[16,17,["G2532"]],[17,18,["G3880"]],[18,21,["G848"]],[21,22,["G1135"]]]},{"k":23169,"v":[[0,1,["G2532"]],[1,2,["G1097"]],[2,3,["G846"]],[3,4,["G3756"]],[4,5,["G2193"]],[5,9,["G5088"]],[9,10,["G848"]],[10,11,["G4416"]],[11,12,["G5207"]],[12,13,["G2532"]],[13,15,["G2564"]],[15,16,["G846"]],[16,17,["G3686"]],[17,18,["G2424"]]]},{"k":23170,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,5,["G1080"]],[5,6,["G1722"]],[6,7,["G965"]],[7,9,["G2449"]],[9,10,["G1722"]],[10,12,["G2250"]],[12,14,["G2264"]],[14,15,["G3588"]],[15,16,["G935"]],[16,17,["G2400"]],[17,19,["G3854"]],[19,21,["G3097"]],[21,22,["G575"]],[22,24,["G395"]],[24,25,["G1519"]],[25,26,["G2414"]]]},{"k":23171,"v":[[0,1,["G3004"]],[1,2,["G4226"]],[2,3,["G2076"]],[3,7,["G5088"]],[7,8,["G935"]],[8,10,["G3588"]],[10,11,["G2453"]],[11,12,["G1063"]],[12,15,["G1492"]],[15,16,["G846"]],[16,17,["G792"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,20,["G395"]],[20,21,["G2532"]],[21,23,["G2064"]],[23,25,["G4352"]],[25,26,["G846"]]]},{"k":23172,"v":[[0,1,["G1161"]],[1,2,["G2264"]],[2,3,["G3588"]],[3,4,["G935"]],[4,6,["G191"]],[6,11,["G5015"]],[11,12,["G2532"]],[12,13,["G3956"]],[13,14,["G2414"]],[14,15,["G3326"]],[15,16,["G846"]]]},{"k":23173,"v":[[0,1,["G2532"]],[1,5,["G4863"]],[5,6,["G3956"]],[6,7,["G3588"]],[7,9,["G749"]],[9,10,["G2532"]],[10,11,["G1122"]],[11,13,["G3588"]],[13,14,["G2992"]],[14,17,["G4441"]],[17,18,["G3844"]],[18,19,["G846"]],[19,20,["G4226"]],[20,21,["G5547"]],[21,24,["G1080"]]]},{"k":23174,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G1722"]],[6,7,["G965"]],[7,9,["G2449"]],[9,10,["G1063"]],[10,11,["G3779"]],[11,14,["G1125"]],[14,15,["G1223"]],[15,16,["G3588"]],[16,17,["G4396"]]]},{"k":23175,"v":[[0,1,["G2532"]],[1,2,["G4771"]],[2,3,["G965"]],[3,6,["G1093"]],[6,8,["G2448"]],[8,9,["G1488"]],[9,10,["G3760"]],[10,12,["G1646"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G2232"]],[15,17,["G2448"]],[17,18,["G1063"]],[18,19,["G1537"]],[19,21,["G4675"]],[21,23,["G1831"]],[23,25,["G2233"]],[25,26,["G3748"]],[26,28,["G4165"]],[28,29,["G3450"]],[29,30,["G2992"]],[30,31,["G2474"]]]},{"k":23176,"v":[[0,1,["G5119"]],[1,2,["G2264"]],[2,6,["G2977"]],[6,7,["G2564"]],[7,8,["G3588"]],[8,10,["G3097"]],[10,14,["G198","G3844","G846"]],[14,16,["G5550"]],[16,17,["G3588"]],[17,18,["G792"]],[18,19,["G5316"]]]},{"k":23177,"v":[[0,1,["G2532"]],[1,3,["G3992"]],[3,4,["G846"]],[4,5,["G1519"]],[5,6,["G965"]],[6,8,["G2036"]],[8,9,["G4198"]],[9,11,["G1833"]],[11,12,["G199"]],[12,13,["G4012"]],[13,14,["G3588"]],[14,16,["G3813"]],[16,17,["G1161"]],[17,18,["G1875"]],[18,21,["G2147"]],[21,26,["G518","G3427"]],[26,27,["G3704"]],[27,28,["G2504"]],[28,30,["G2064"]],[30,32,["G4352"]],[32,33,["G846"]],[33,34,[]]]},{"k":23178,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G191"]],[4,5,["G3588"]],[5,6,["G935"]],[6,8,["G4198"]],[8,9,["G2532"]],[9,10,["G2400"]],[10,11,["G3588"]],[11,12,["G792"]],[12,13,["G3739"]],[13,15,["G1492"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G395"]],[18,20,["G4254"]],[20,21,["G846"]],[21,22,["G2193"]],[22,24,["G2064"]],[24,26,["G2476"]],[26,27,["G1883"]],[27,28,["G3757"]],[28,29,["G3588"]],[29,31,["G3813"]],[31,32,["G2258"]]]},{"k":23179,"v":[[0,1,["G1161"]],[1,3,["G1492"]],[3,4,["G3588"]],[4,5,["G792"]],[5,7,["G5463"]],[7,9,["G4970"]],[9,10,["G3173"]],[10,11,["G5479"]]]},{"k":23180,"v":[[0,1,["G2532"]],[1,5,["G2064"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G3614"]],[8,10,["G1492"]],[10,11,["G3588"]],[11,13,["G3813"]],[13,14,["G3326"]],[14,15,["G3137"]],[15,16,["G846"]],[16,17,["G3384"]],[17,18,["G2532"]],[18,20,["G4098"]],[20,22,["G4352"]],[22,23,["G846"]],[23,24,["G2532"]],[24,28,["G455"]],[28,29,["G848"]],[29,30,["G2344"]],[30,32,["G4374"]],[32,34,["G846"]],[34,35,["G1435"]],[35,36,["G5557"]],[36,37,["G2532"]],[37,38,["G3030"]],[38,39,["G2532"]],[39,40,["G4666"]]]},{"k":23181,"v":[[0,1,["G2532"]],[1,5,["G5537"]],[5,6,["G2596"]],[6,8,["G3677"]],[8,12,["G3361"]],[12,13,["G344"]],[13,14,["G4314"]],[14,15,["G2264"]],[15,17,["G402"]],[17,18,["G1519"]],[18,20,["G848"]],[20,22,["G5561","(G243)"]],[22,23,["G3598"]]]},{"k":23182,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G402"]],[5,6,["G2400"]],[6,8,["G32"]],[8,11,["G2962"]],[11,12,["G5316"]],[12,14,["G2501"]],[14,15,["G2596"]],[15,17,["G3677"]],[17,18,["G3004"]],[18,19,["G1453"]],[19,21,["G3880"]],[21,22,["G3588"]],[22,24,["G3813"]],[24,25,["G2532"]],[25,26,["G846"]],[26,27,["G3384"]],[27,28,["G2532"]],[28,29,["G5343"]],[29,30,["G1519"]],[30,31,["G125"]],[31,32,["G2532"]],[32,33,["G2468"]],[33,35,["G1563"]],[35,36,["G2193","(G302)"]],[36,40,["G2036","G4671"]],[40,41,["G1063"]],[41,42,["G2264"]],[42,43,["G3195"]],[43,44,["G2212"]],[44,45,["G3588"]],[45,47,["G3813"]],[47,49,["G622"]],[49,50,["G846"]]]},{"k":23183,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1453"]],[3,5,["G3880"]],[5,6,["G3588"]],[6,8,["G3813"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G3384"]],[11,13,["G3571"]],[13,14,["G2532"]],[14,15,["G402"]],[15,16,["G1519"]],[16,17,["G125"]]]},{"k":23184,"v":[[0,1,["G2532"]],[1,2,["G2258"]],[2,3,["G1563"]],[3,4,["G2193"]],[4,5,["G3588"]],[5,6,["G5054"]],[6,8,["G2264"]],[8,9,["G2443"]],[9,13,["G4137"]],[13,14,["G3588"]],[14,16,["G4483"]],[16,17,["G5259"]],[17,18,["G3588"]],[18,19,["G2962"]],[19,20,["G1223"]],[20,21,["G3588"]],[21,22,["G4396"]],[22,23,["G3004"]],[23,24,["G1537"]],[24,26,["G125"]],[26,29,["G2564"]],[29,30,["G3450"]],[30,31,["G5207"]]]},{"k":23185,"v":[[0,1,["G5119"]],[1,2,["G2264"]],[2,5,["G1492"]],[5,6,["G3754"]],[6,9,["G1702"]],[9,10,["G5259"]],[10,11,["G3588"]],[11,13,["G3097"]],[13,16,["G2373","G3029"]],[16,17,["G2532"]],[17,19,["G649"]],[19,20,["G2532"]],[20,21,["G337"]],[21,22,["G3956"]],[22,23,["G3588"]],[23,24,["G3816"]],[24,25,["G3588"]],[25,27,["G1722"]],[27,28,["G965"]],[28,29,["G2532"]],[29,30,["G1722"]],[30,31,["G3956"]],[31,32,["G3588"]],[32,33,["G3725"]],[33,34,["G846"]],[34,35,["G575"]],[35,38,["G1332"]],[38,39,["G2532"]],[39,40,["G2736"]],[40,41,["G2596"]],[41,43,["G3588"]],[43,44,["G5550"]],[44,45,["G3739"]],[45,49,["G198"]],[49,50,["G3844"]],[50,51,["G3588"]],[51,53,["G3097"]]]},{"k":23186,"v":[[0,1,["G5119"]],[1,3,["G4137"]],[3,7,["G4483"]],[7,8,["G5259"]],[8,9,["G2408"]],[9,10,["G3588"]],[10,11,["G4396"]],[11,12,["G3004"]]]},{"k":23187,"v":[[0,1,["G1722"]],[1,2,["G4471"]],[2,6,["G5456"]],[6,7,["G191"]],[7,8,["G2355"]],[8,9,["G2532"]],[9,10,["G2805"]],[10,11,["G2532"]],[11,12,["G4183"]],[12,13,["G3602"]],[13,14,["G4478"]],[14,15,["G2799"]],[15,17,["G848"]],[17,18,["G5043"]],[18,19,["G2532"]],[19,20,["G2309"]],[20,21,["G3756"]],[21,23,["G3870"]],[23,24,["G3754"]],[24,26,["G1526"]],[26,27,["G3756"]]]},{"k":23188,"v":[[0,1,["G1161"]],[1,3,["G2264"]],[3,5,["G5053"]],[5,6,["G2400"]],[6,8,["G32"]],[8,11,["G2962"]],[11,12,["G5316"]],[12,13,["G2596"]],[13,15,["G3677"]],[15,17,["G2501"]],[17,18,["G1722"]],[18,19,["G125"]]]},{"k":23189,"v":[[0,1,["G3004"]],[1,2,["G1453"]],[2,4,["G3880"]],[4,5,["G3588"]],[5,7,["G3813"]],[7,8,["G2532"]],[8,9,["G846"]],[9,10,["G3384"]],[10,11,["G2532"]],[11,12,["G4198"]],[12,13,["G1519"]],[13,15,["G1093"]],[15,17,["G2474"]],[17,18,["G1063"]],[18,21,["G2348"]],[21,23,["G2212"]],[23,24,["G3588"]],[24,26,["G3813"]],[26,27,["G5590"]]]},{"k":23190,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1453"]],[3,5,["G3880"]],[5,6,["G3588"]],[6,8,["G3813"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G3384"]],[11,12,["G2532"]],[12,13,["G2064"]],[13,14,["G1519"]],[14,16,["G1093"]],[16,18,["G2474"]]]},{"k":23191,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,5,["G3754"]],[5,6,["G745"]],[6,8,["G936"]],[8,9,["G1909"]],[9,10,["G2449"]],[10,13,["G473"]],[13,15,["G846"]],[15,16,["G3962"]],[16,17,["G2264"]],[17,20,["G5399"]],[20,22,["G565"]],[22,23,["G1563"]],[23,24,["G1161"]],[24,28,["G5537"]],[28,29,["G2596"]],[29,31,["G3677"]],[31,34,["G402"]],[34,35,["G1519"]],[35,36,["G3588"]],[36,37,["G3313"]],[37,39,["G1056"]]]},{"k":23192,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,5,["G2730"]],[5,6,["G1519"]],[6,8,["G4172"]],[8,9,["G3004"]],[9,10,["G3478"]],[10,11,["G3704"]],[11,15,["G4137"]],[15,18,["G4483"]],[18,19,["G1223"]],[19,20,["G3588"]],[20,21,["G4396"]],[21,25,["G2564"]],[25,27,["G3480"]]]},{"k":23193,"v":[[0,1,["G1722"]],[1,2,["G1565"]],[2,3,["G2250"]],[3,4,["G3854"]],[4,5,["G2491"]],[5,6,["G3588"]],[6,7,["G910"]],[7,8,["G2784"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2048"]],[11,13,["G2449"]]]},{"k":23194,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,3,["G3340"]],[3,5,["G1063"]],[5,6,["G3588"]],[6,7,["G932"]],[7,9,["G3772"]],[9,12,["G1448"]]]},{"k":23195,"v":[[0,1,["G1063"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,8,["G4483"]],[8,9,["G5259"]],[9,10,["G3588"]],[10,11,["G4396"]],[11,12,["G2268"]],[12,13,["G3004"]],[13,15,["G5456"]],[15,18,["G994"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G2048"]],[21,22,["G2090"]],[22,24,["G3588"]],[24,25,["G3598"]],[25,28,["G2962"]],[28,29,["G4160"]],[29,30,["G846"]],[30,31,["G5147"]],[31,32,["G2117"]]]},{"k":23196,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G2491"]],[4,5,["G2192"]],[5,6,["G848"]],[6,7,["G1742"]],[7,8,["G575"]],[8,9,["G2574"]],[9,10,["G2359"]],[10,11,["G2532"]],[11,13,["G1193"]],[13,14,["G2223"]],[14,15,["G4012"]],[15,16,["G846"]],[16,17,["G3751"]],[17,18,["G1161"]],[18,19,["G848"]],[19,20,["G5160"]],[20,21,["G2258"]],[21,22,["G200"]],[22,23,["G2532"]],[23,24,["G66"]],[24,25,["G3192"]]]},{"k":23197,"v":[[0,1,["G5119"]],[1,3,["G1607"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G2414"]],[6,7,["G2532"]],[7,8,["G3956"]],[8,9,["G2449"]],[9,10,["G2532"]],[10,11,["G3956"]],[11,12,["G3588"]],[12,15,["G4066"]],[15,16,["G2446"]]]},{"k":23198,"v":[[0,1,["G2532"]],[1,3,["G907"]],[3,4,["G5259"]],[4,5,["G846"]],[5,6,["G1722"]],[6,7,["G2446"]],[7,8,["G1843"]],[8,9,["G848"]],[9,10,["G266"]]]},{"k":23199,"v":[[0,1,["G1161"]],[1,4,["G1492"]],[4,5,["G4183"]],[5,7,["G3588"]],[7,8,["G5330"]],[8,9,["G2532"]],[9,10,["G4523"]],[10,11,["G2064"]],[11,12,["G1909"]],[12,13,["G846"]],[13,14,["G908"]],[14,16,["G2036"]],[16,18,["G846"]],[18,20,["G1081"]],[20,22,["G2191"]],[22,23,["G5101"]],[23,25,["G5263"]],[25,26,["G5213"]],[26,28,["G5343"]],[28,29,["G575"]],[29,30,["G3588"]],[30,31,["G3709"]],[31,33,["G3195"]]]},{"k":23200,"v":[[0,2,["G4160"]],[2,3,["G3767"]],[3,4,["G2590"]],[4,5,["G514"]],[5,7,["G3341"]]]},{"k":23201,"v":[[0,1,["G2532"]],[1,2,["G1380"]],[2,3,["G3361"]],[3,5,["G3004"]],[5,6,["G1722"]],[6,7,["G1438"]],[7,9,["G2192"]],[9,10,["G11"]],[10,13,["G3962"]],[13,14,["G1063"]],[14,16,["G3004"]],[16,18,["G5213"]],[18,19,["G3754"]],[19,20,["G2316"]],[20,22,["G1410"]],[22,23,["G1537"]],[23,24,["G5130"]],[24,25,["G3037"]],[25,28,["G1453"]],[28,29,["G5043"]],[29,31,["G11"]]]},{"k":23202,"v":[[0,1,["G1161"]],[1,2,["G2235"]],[2,3,["G2532"]],[3,4,["G3588"]],[4,5,["G513"]],[5,7,["G2749"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,10,["G4491"]],[10,12,["G3588"]],[12,13,["G1186"]],[13,14,["G3767"]],[14,15,["G3956"]],[15,16,["G1186"]],[16,20,["G4160","G3361"]],[20,21,["G2570"]],[21,22,["G2590"]],[22,25,["G1581"]],[25,26,["G2532"]],[26,27,["G906"]],[27,28,["G1519"]],[28,30,["G4442"]]]},{"k":23203,"v":[[0,1,["G1473"]],[1,2,["G3303"]],[2,3,["G907"]],[3,4,["G5209"]],[4,5,["G1722"]],[5,6,["G5204"]],[6,7,["G1519"]],[7,8,["G3341"]],[8,9,["G1161"]],[9,12,["G2064"]],[12,13,["G3694"]],[13,14,["G3450"]],[14,15,["G2076"]],[15,16,["G2478"]],[16,18,["G3450"]],[18,19,["G3739"]],[19,20,["G5266"]],[20,22,["G1510"]],[22,23,["G3756"]],[23,24,["G2425"]],[24,26,["G941"]],[26,27,["G846"]],[27,29,["G907"]],[29,30,["G5209"]],[30,31,["G1722"]],[31,33,["G40"]],[33,34,["G4151"]],[34,35,["G2532"]],[35,37,["G4442"]]]},{"k":23204,"v":[[0,1,["G3739"]],[1,2,["G4425"]],[2,4,["G1722"]],[4,5,["G846"]],[5,6,["G5495"]],[6,7,["G2532"]],[7,11,["G1245"]],[11,12,["G848"]],[12,13,["G257"]],[13,14,["G2532"]],[14,15,["G4863"]],[15,16,["G848"]],[16,17,["G4621"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G596"]],[20,21,["G1161"]],[21,25,["G2618"]],[25,26,["G3588"]],[26,27,["G892"]],[27,29,["G762"]],[29,30,["G4442"]]]},{"k":23205,"v":[[0,1,["G5119"]],[1,2,["G3854"]],[2,3,["G2424"]],[3,4,["G575"]],[4,5,["G1056"]],[5,6,["G1909"]],[6,7,["G2446"]],[7,8,["G4314"]],[8,9,["G2491"]],[9,12,["G907"]],[12,13,["G5259"]],[13,14,["G846"]]]},{"k":23206,"v":[[0,1,["G1161"]],[1,2,["G2491"]],[2,3,["G1254"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G1473"]],[6,7,["G2192"]],[7,8,["G5532"]],[8,11,["G907"]],[11,12,["G5259"]],[12,13,["G4675"]],[13,14,["G2532"]],[14,15,["G2064"]],[15,16,["G4771"]],[16,17,["G4314"]],[17,18,["G3165"]]]},{"k":23207,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G863"]],[7,12,["G737"]],[12,13,["G1063"]],[13,14,["G3779"]],[14,15,["(G2076)"]],[15,16,["G4241"]],[16,17,["G2254"]],[17,19,["G4137"]],[19,20,["G3956"]],[20,21,["G1343"]],[21,22,["G5119"]],[22,24,["G863"]],[24,25,["G846"]]]},{"k":23208,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,6,["G907"]],[6,8,["G305"]],[8,9,["G2117"]],[9,11,["G575"]],[11,12,["G3588"]],[12,13,["G5204"]],[13,14,["G2532"]],[14,15,["G2400"]],[15,16,["G3588"]],[16,17,["G3772"]],[17,19,["G455"]],[19,21,["G846"]],[21,22,["G2532"]],[22,24,["G1492"]],[24,25,["G3588"]],[25,26,["G4151"]],[26,28,["G2316"]],[28,29,["G2597"]],[29,30,["G5616"]],[30,32,["G4058"]],[32,33,["G2532"]],[33,34,["G2064"]],[34,35,["G1909"]],[35,36,["G846"]]]},{"k":23209,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G5456"]],[4,5,["G1537"]],[5,6,["G3772"]],[6,7,["G3004"]],[7,8,["G3778"]],[8,9,["G2076"]],[9,10,["G3450"]],[10,11,["G27"]],[11,12,["G5207"]],[12,13,["G1722"]],[13,14,["G3739"]],[14,18,["G2106"]]]},{"k":23210,"v":[[0,1,["G5119"]],[1,3,["G2424"]],[3,5,["G321"]],[5,6,["G5259"]],[6,7,["G3588"]],[7,8,["G4151"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G2048"]],[11,14,["G3985"]],[14,15,["G5259"]],[15,16,["G3588"]],[16,17,["G1228"]]]},{"k":23211,"v":[[0,1,["G2532"]],[1,5,["G3522"]],[5,6,["G5062"]],[6,7,["G2250"]],[7,8,["G2532"]],[8,9,["G5062"]],[9,10,["G3571"]],[10,15,["G3983","G5305"]]]},{"k":23212,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G3985"]],[4,5,["G4334"]],[5,7,["G846"]],[7,9,["G2036"]],[9,10,["G1487"]],[10,12,["G1488"]],[12,15,["G5207"]],[15,16,["G2316"]],[16,17,["G2036"]],[17,18,["G2443"]],[18,19,["G3778"]],[19,20,["G3037"]],[20,22,["G1096"]],[22,23,["G740"]]]},{"k":23213,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,8,["G1125"]],[8,9,["G444"]],[9,11,["G3756"]],[11,12,["G2198"]],[12,13,["G1909"]],[13,14,["G740"]],[14,15,["G3441"]],[15,16,["G235"]],[16,17,["G1909"]],[17,18,["G3956"]],[18,19,["G4487"]],[19,21,["G1607"]],[21,23,["G1223"]],[23,25,["G4750"]],[25,27,["G2316"]]]},{"k":23214,"v":[[0,1,["G5119"]],[1,2,["G3588"]],[2,3,["G1228"]],[3,6,["G3880","G846"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G40"]],[9,10,["G4172"]],[10,11,["G2532"]],[11,12,["G2476"]],[12,13,["G846"]],[13,14,["G1909"]],[14,16,["G4419"]],[16,18,["G3588"]],[18,19,["G2411"]]]},{"k":23215,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1487"]],[5,7,["G1488"]],[7,9,["G5207"]],[9,11,["G2316"]],[11,12,["G906"]],[12,13,["G4572"]],[13,14,["G2736"]],[14,15,["G1063"]],[15,18,["G1125"]],[18,24,["G1781","G848","G32"]],[24,25,["G4012"]],[25,26,["G4675"]],[26,27,["G2532"]],[27,28,["G1909"]],[28,30,["G5495"]],[30,35,["G142","G4571"]],[35,39,["G3379"]],[39,41,["G4350"]],[41,42,["G4675"]],[42,43,["G4228"]],[43,44,["G4314"]],[44,46,["G3037"]]]},{"k":23216,"v":[[0,1,["G2424"]],[1,2,["G5346"]],[2,4,["G846"]],[4,7,["G1125"]],[7,8,["G3825"]],[8,11,["G3756"]],[11,12,["G1598"]],[12,14,["G2962"]],[14,15,["G4675"]],[15,16,["G2316"]]]},{"k":23217,"v":[[0,1,["G3825"]],[1,2,["G3588"]],[2,3,["G1228"]],[3,6,["G3880","G846"]],[6,7,["G1519"]],[7,9,["G3029"]],[9,10,["G5308"]],[10,11,["G3735"]],[11,12,["G2532"]],[12,13,["G1166"]],[13,14,["G846"]],[14,15,["G3956"]],[15,16,["G3588"]],[16,17,["G932"]],[17,19,["G3588"]],[19,20,["G2889"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G1391"]],[23,25,["G846"]]]},{"k":23218,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G3956"]],[5,7,["G5023"]],[7,10,["G1325"]],[10,11,["G4671"]],[11,12,["G1437"]],[12,16,["G4098"]],[16,18,["G4352"]],[18,19,["G3427"]]]},{"k":23219,"v":[[0,1,["G5119"]],[1,2,["G3004"]],[2,3,["G2424"]],[3,5,["G846"]],[5,8,["G5217"]],[8,9,["G4567"]],[9,10,["G1063"]],[10,13,["G1125"]],[13,16,["G4352"]],[16,18,["G2962"]],[18,19,["G4675"]],[19,20,["G2316"]],[20,21,["G2532"]],[21,22,["G846"]],[22,23,["G3441"]],[23,26,["G3000"]]]},{"k":23220,"v":[[0,1,["G5119"]],[1,2,["G3588"]],[2,3,["G1228"]],[3,4,["G863"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G2400"]],[7,8,["G32"]],[8,9,["G4334"]],[9,10,["G2532"]],[10,11,["G1247"]],[11,13,["G846"]]]},{"k":23221,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,5,["G191"]],[5,6,["G3754"]],[6,7,["G2491"]],[7,11,["G3860"]],[11,13,["G402"]],[13,14,["G1519"]],[14,15,["G1056"]]]},{"k":23222,"v":[[0,1,["G2532"]],[1,2,["G2641"]],[2,3,["G3478"]],[3,5,["G2064"]],[5,7,["G2730"]],[7,8,["G1519"]],[8,9,["G2584"]],[9,15,["G3864"]],[15,16,["G1722"]],[16,18,["G3725"]],[18,20,["G2194"]],[20,21,["G2532"]],[21,22,["G3508"]]]},{"k":23223,"v":[[0,1,["G2443"]],[1,5,["G4137"]],[5,6,["G3588"]],[6,8,["G4483"]],[8,9,["G1223"]],[9,10,["G2268"]],[10,11,["G3588"]],[11,12,["G4396"]],[12,13,["G3004"]]]},{"k":23224,"v":[[0,2,["G1093"]],[2,4,["G2194"]],[4,5,["G2532"]],[5,7,["G1093"]],[7,9,["G3508"]],[9,12,["G3598"]],[12,15,["G2281"]],[15,16,["G4008"]],[16,17,["G2446"]],[17,18,["G1056"]],[18,20,["G3588"]],[20,21,["G1484"]]]},{"k":23225,"v":[[0,1,["G3588"]],[1,2,["G2992"]],[2,3,["G3588"]],[3,4,["G2521"]],[4,5,["G1722"]],[5,6,["G4655"]],[6,7,["G1492"]],[7,8,["G3173"]],[8,9,["G5457"]],[9,10,["G2532"]],[10,14,["G2521"]],[14,15,["G1722"]],[15,17,["G5561"]],[17,18,["G2532"]],[18,19,["G4639"]],[19,21,["G2288"]],[21,22,["G5457"]],[22,25,["G393"]]]},{"k":23226,"v":[[0,1,["G575"]],[1,3,["G5119"]],[3,4,["G2424"]],[4,5,["G756"]],[5,7,["G2784"]],[7,8,["G2532"]],[8,10,["G3004"]],[10,11,["G3340"]],[11,12,["G1063"]],[12,13,["G3588"]],[13,14,["G932"]],[14,16,["G3772"]],[16,19,["G1448"]]]},{"k":23227,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G4043"]],[3,4,["G3844"]],[4,5,["G3588"]],[5,6,["G2281"]],[6,8,["G1056"]],[8,9,["G1492"]],[9,10,["G1417"]],[10,11,["G80"]],[11,12,["G4613"]],[12,13,["G3004"]],[13,14,["G4074"]],[14,15,["G2532"]],[15,16,["G406"]],[16,17,["G846"]],[17,18,["G80"]],[18,19,["G906"]],[19,21,["G293"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G2281"]],[24,25,["G1063"]],[25,27,["G2258"]],[27,28,["G231"]]]},{"k":23228,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G1205","G3694"]],[6,7,["G3450"]],[7,8,["G2532"]],[8,11,["G4160"]],[11,12,["G5209"]],[12,13,["G231"]],[13,15,["G444"]]]},{"k":23229,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2112"]],[3,4,["G863"]],[4,6,["G1350"]],[6,8,["G190"]],[8,9,["G846"]]]},{"k":23230,"v":[[0,1,["G2532"]],[1,3,["G4260"]],[3,5,["G1564"]],[5,7,["G1492"]],[7,8,["G243"]],[8,9,["G1417"]],[9,10,["G80"]],[10,11,["G2385"]],[11,12,["G3588"]],[12,15,["G2199"]],[15,16,["G2532"]],[16,17,["G2491"]],[17,18,["G846"]],[18,19,["G80"]],[19,20,["G1722"]],[20,22,["G4143"]],[22,23,["G3326"]],[23,24,["G2199"]],[24,25,["G846"]],[25,26,["G3962"]],[26,27,["G2675"]],[27,28,["G848"]],[28,29,["G1350"]],[29,30,["G2532"]],[30,32,["G2564"]],[32,33,["G846"]]]},{"k":23231,"v":[[0,1,["G1161"]],[1,4,["G863","G2112"]],[4,5,["G3588"]],[5,6,["G4143"]],[6,7,["G2532"]],[7,8,["G848"]],[8,9,["G3962"]],[9,10,["G2532"]],[10,11,["G190"]],[11,12,["G846"]]]},{"k":23232,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,4,["G4013"]],[4,5,["G3650"]],[5,6,["G1056"]],[6,7,["G1321"]],[7,8,["G1722"]],[8,9,["G846"]],[9,10,["G4864"]],[10,11,["G2532"]],[11,12,["G2784"]],[12,13,["G3588"]],[13,14,["G2098"]],[14,16,["G3588"]],[16,17,["G932"]],[17,18,["G2532"]],[18,19,["G2323"]],[19,21,["G3956"]],[21,23,["G3554"]],[23,24,["G2532"]],[24,26,["G3956"]],[26,28,["G3119"]],[28,29,["G1722"]],[29,30,["G3588"]],[30,31,["G2992"]]]},{"k":23233,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G189"]],[3,4,["G565"]],[4,5,["G1519"]],[5,6,["G3650"]],[6,7,["G4947"]],[7,8,["G2532"]],[8,10,["G4374"]],[10,12,["G846"]],[12,13,["G3956"]],[13,15,["G2192","G2560"]],[15,18,["G4912"]],[18,20,["G4164"]],[20,21,["G3554"]],[21,22,["G2532"]],[22,23,["G931"]],[23,24,["G2532"]],[24,30,["G1139"]],[30,31,["G2532"]],[31,35,["G4583"]],[35,36,["G2532"]],[36,41,["G3885"]],[41,42,["G2532"]],[42,44,["G2323"]],[44,45,["G846"]]]},{"k":23234,"v":[[0,1,["G2532"]],[1,3,["G190"]],[3,4,["G846"]],[4,5,["G4183"]],[5,8,["G3793"]],[8,9,["G575"]],[9,10,["G1056"]],[10,11,["G2532"]],[11,13,["G1179"]],[13,14,["G2532"]],[14,16,["G2414"]],[16,17,["G2532"]],[17,19,["G2449"]],[19,20,["G2532"]],[20,22,["G4008"]],[22,23,["G2446"]]]},{"k":23235,"v":[[0,1,["G1161"]],[1,2,["G1492"]],[2,3,["G3793"]],[3,4,["G3793"]],[4,7,["G305"]],[7,8,["G1519"]],[8,10,["G3735"]],[10,11,["G2532"]],[11,13,["G846"]],[13,15,["G2523"]],[15,16,["G846"]],[16,17,["G3101"]],[17,18,["G4334"]],[18,20,["G846"]]]},{"k":23236,"v":[[0,1,["G2532"]],[1,3,["G455"]],[3,4,["G848"]],[4,5,["G4750"]],[5,7,["G1321"]],[7,8,["G846"]],[8,9,["G3004"]]]},{"k":23237,"v":[[0,1,["G3107"]],[1,3,["G3588"]],[3,4,["G4434"]],[4,6,["G4151"]],[6,7,["G3754"]],[7,8,["G846"]],[8,9,["G2076"]],[9,10,["G3588"]],[10,11,["G932"]],[11,13,["G3772"]]]},{"k":23238,"v":[[0,1,["G3107"]],[1,5,["G3996"]],[5,6,["G3754"]],[6,7,["G846"]],[7,10,["G3870"]]]},{"k":23239,"v":[[0,1,["G3107"]],[1,4,["G4239"]],[4,5,["G3754"]],[5,6,["G846"]],[6,8,["G2816"]],[8,9,["G3588"]],[9,10,["G1093"]]]},{"k":23240,"v":[[0,1,["G3107"]],[1,6,["G3983"]],[6,7,["G2532"]],[7,8,["G1372"]],[8,10,["G1343"]],[10,11,["G3754"]],[11,12,["G846"]],[12,15,["G5526"]]]},{"k":23241,"v":[[0,1,["G3107"]],[1,3,["G3588"]],[3,4,["G1655"]],[4,5,["G3754"]],[5,6,["G846"]],[6,9,["G1653"]]]},{"k":23242,"v":[[0,1,["G3107"]],[1,3,["G3588"]],[3,4,["G2513"]],[4,6,["G2588"]],[6,7,["G3754"]],[7,8,["G846"]],[8,10,["G3700"]],[10,11,["G2316"]]]},{"k":23243,"v":[[0,1,["G3107"]],[1,3,["G3588"]],[3,4,["G1518"]],[4,5,["G3754"]],[5,6,["G846"]],[6,9,["G2564"]],[9,11,["G5207"]],[11,13,["G2316"]]]},{"k":23244,"v":[[0,1,["G3107"]],[1,6,["G1377"]],[6,9,["G1752","G1343"]],[9,10,["G3754"]],[10,11,["G846"]],[11,12,["G2076"]],[12,13,["G3588"]],[13,14,["G932"]],[14,16,["G3772"]]]},{"k":23245,"v":[[0,1,["G3107"]],[1,2,["G2075"]],[2,4,["G3752"]],[4,7,["G3679"]],[7,8,["G5209"]],[8,9,["G2532"]],[9,10,["G1377"]],[10,12,["G2532"]],[12,14,["G2036"]],[14,18,["G3956","G4190","G4487"]],[18,19,["G2596"]],[19,20,["G5216"]],[20,21,["G5574"]],[21,24,["G1752","G1700"]]]},{"k":23246,"v":[[0,1,["G5463"]],[1,2,["G2532"]],[2,5,["G21"]],[5,6,["G3754"]],[6,7,["G4183"]],[7,9,["G5216"]],[9,10,["G3408"]],[10,11,["G1722"]],[11,12,["G3772"]],[12,13,["G1063"]],[13,14,["G3779"]],[14,15,["G1377"]],[15,17,["G3588"]],[17,18,["G4396"]],[18,19,["G3588"]],[19,21,["G4253"]],[21,22,["G5216"]]]},{"k":23247,"v":[[0,1,["G5210"]],[1,2,["G2075"]],[2,3,["G3588"]],[3,4,["G217"]],[4,6,["G3588"]],[6,7,["G1093"]],[7,8,["G1161"]],[8,9,["G1437"]],[9,10,["G3588"]],[10,11,["G217"]],[11,15,["G3471"]],[15,16,["G1722","G5101"]],[16,20,["G233"]],[20,23,["G2089"]],[23,24,["G2480"]],[24,25,["G1519"]],[25,26,["G3762"]],[26,27,["G1508"]],[27,30,["G906"]],[30,31,["G1854"]],[31,32,["G2532"]],[32,37,["G2662"]],[37,38,["G5259"]],[38,39,["G444"]]]},{"k":23248,"v":[[0,1,["G5210"]],[1,2,["G2075"]],[2,3,["G3588"]],[3,4,["G5457"]],[4,6,["G3588"]],[6,7,["G2889"]],[7,9,["G4172"]],[9,12,["G2749"]],[12,13,["G1883"]],[13,15,["G3735"]],[15,16,["G1410","G3756"]],[16,18,["G2928"]]]},{"k":23249,"v":[[0,1,["G3761"]],[1,4,["G2545"]],[4,6,["G3088"]],[6,7,["G2532"]],[7,8,["G5087"]],[8,9,["G846"]],[9,10,["G5259"]],[10,12,["G3426"]],[12,13,["G235"]],[13,14,["G1909"]],[14,16,["G3087"]],[16,17,["G2532"]],[17,20,["G2989"]],[20,22,["G3956"]],[22,23,["G3588"]],[23,25,["G1722"]],[25,26,["G3588"]],[26,27,["G3614"]]]},{"k":23250,"v":[[0,2,["G5216"]],[2,3,["G5457"]],[3,4,["G3779"]],[4,5,["G2989"]],[5,6,["G1715"]],[6,7,["G444"]],[7,8,["G3704"]],[8,11,["G1492"]],[11,12,["G5216"]],[12,13,["G2570"]],[13,14,["G2041"]],[14,15,["G2532"]],[15,16,["G1392"]],[16,17,["G5216"]],[17,18,["G3962"]],[18,19,["G3588"]],[19,21,["G1722"]],[21,22,["G3772"]]]},{"k":23251,"v":[[0,1,["G3543"]],[1,2,["G3361"]],[2,3,["G3754"]],[3,6,["G2064"]],[6,8,["G2647"]],[8,9,["G3588"]],[9,10,["G3551"]],[10,11,["G2228"]],[11,12,["G3588"]],[12,13,["G4396"]],[13,16,["G3756"]],[16,17,["G2064"]],[17,19,["G2647"]],[19,20,["G235"]],[20,22,["G4137"]]]},{"k":23252,"v":[[0,1,["G1063"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,7,["G2193"]],[7,8,["G3772"]],[8,9,["G2532"]],[9,10,["G1093"]],[10,11,["G3928"]],[11,12,["G1520"]],[12,13,["G2503"]],[13,14,["G2228"]],[14,15,["G3391"]],[15,16,["G2762"]],[16,20,["G3364"]],[20,21,["G3928"]],[21,22,["G575"]],[22,23,["G3588"]],[23,24,["G3551"]],[24,25,["G2193"]],[25,26,["G3956"]],[26,28,["G1096"]]]},{"k":23253,"v":[[0,1,["G3739","G1437"]],[1,2,["G3767"]],[2,4,["G3089"]],[4,5,["G3391"]],[5,7,["G5130"]],[7,8,["G1646"]],[8,9,["G1785"]],[9,10,["G2532"]],[10,12,["G1321"]],[12,13,["G444"]],[13,14,["G3779"]],[14,18,["G2564"]],[18,20,["G1646"]],[20,21,["G1722"]],[21,22,["G3588"]],[22,23,["G932"]],[23,25,["G3772"]],[25,26,["G1161"]],[26,27,["G3739","G302"]],[27,29,["G4160"]],[29,30,["G2532"]],[30,31,["G1321"]],[31,34,["G3778"]],[34,37,["G2564"]],[37,38,["G3173"]],[38,39,["G1722"]],[39,40,["G3588"]],[40,41,["G932"]],[41,43,["G3772"]]]},{"k":23254,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G3362"]],[7,8,["G5216"]],[8,9,["G1343"]],[9,11,["G4052","G4119"]],[11,15,["G3588"]],[15,16,["G1122"]],[16,17,["G2532"]],[17,18,["G5330"]],[18,23,["G3364"]],[23,24,["G1525"]],[24,25,["G1519"]],[25,26,["G3588"]],[26,27,["G932"]],[27,29,["G3772"]]]},{"k":23255,"v":[[0,3,["G191"]],[3,4,["G3754"]],[4,7,["G4483"]],[7,12,["G744"]],[12,15,["G3756"]],[15,16,["G5407"]],[16,17,["G1161"]],[17,18,["G3739","G302"]],[18,20,["G5407"]],[20,22,["G2071"]],[22,24,["G1777"]],[24,26,["G3588"]],[26,27,["G2920"]]]},{"k":23256,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G3956"]],[7,9,["G3710"]],[9,11,["G848"]],[11,12,["G80"]],[12,15,["G1500"]],[15,17,["G2071"]],[17,19,["G1777"]],[19,21,["G3588"]],[21,22,["G2920"]],[22,23,["G1161"]],[23,24,["G3739","G302"]],[24,26,["G2036"]],[26,28,["G848"]],[28,29,["G80"]],[29,30,["G4469"]],[30,32,["G2071"]],[32,34,["G1777"]],[34,36,["G3588"]],[36,37,["G4892"]],[37,38,["G1161"]],[38,39,["G3739","G302"]],[39,41,["G2036"]],[41,43,["G3474"]],[43,45,["G2071"]],[45,47,["G1777"]],[47,48,["G1519"]],[48,49,["G1067"]],[49,50,["G4442"]]]},{"k":23257,"v":[[0,1,["G3767"]],[1,2,["G1437"]],[2,4,["G4374"]],[4,5,["G4675"]],[5,6,["G1435"]],[6,7,["G1909"]],[7,8,["G3588"]],[8,9,["G2379"]],[9,11,["G2546"]],[11,12,["G3415"]],[12,13,["G3754"]],[13,14,["G4675"]],[14,15,["G80"]],[15,16,["G2192"]],[16,17,["G5100"]],[17,18,["G2596"]],[18,19,["G4675"]]]},{"k":23258,"v":[[0,1,["G863"]],[1,2,["G1563"]],[2,3,["G4675"]],[3,4,["G1435"]],[4,5,["G1715"]],[5,6,["G3588"]],[6,7,["G2379"]],[7,8,["G2532"]],[8,11,["G5217"]],[11,12,["G4412"]],[12,14,["G1259"]],[14,16,["G4675"]],[16,17,["G80"]],[17,18,["G2532"]],[18,19,["G5119"]],[19,20,["G2064"]],[20,22,["G4374"]],[22,23,["G4675"]],[23,24,["G1435"]]]},{"k":23259,"v":[[0,1,["G2468","G2132"]],[1,3,["G4675"]],[3,4,["G476"]],[4,5,["G5035"]],[5,6,["G2193","G3755"]],[6,8,["G1488"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G3598"]],[11,12,["G3326"]],[12,13,["G846"]],[13,17,["G3379"]],[17,18,["G3588"]],[18,19,["G476"]],[19,20,["G3860"]],[20,21,["G4571"]],[21,23,["G3588"]],[23,24,["G2923"]],[24,25,["G2532"]],[25,26,["G3588"]],[26,27,["G2923"]],[27,28,["G3860"]],[28,29,["G4571"]],[29,31,["G3588"]],[31,32,["G5257"]],[32,33,["G2532"]],[33,36,["G906"]],[36,37,["G1519"]],[37,38,["G5438"]]]},{"k":23260,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G4671"]],[5,10,["G3364"]],[10,12,["G1831"]],[12,13,["G1564"]],[13,14,["G2193","G302"]],[14,17,["G591"]],[17,18,["G3588"]],[18,19,["G2078"]],[19,20,["G2835"]]]},{"k":23261,"v":[[0,3,["G191"]],[3,4,["G3754"]],[4,7,["G4483"]],[7,12,["G744"]],[12,15,["G3756"]],[15,17,["G3431"]]]},{"k":23262,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G3956"]],[7,8,["G991"]],[8,11,["G1135"]],[11,13,["G1937"]],[13,15,["G846"]],[15,18,["G3431"]],[18,20,["G846"]],[20,21,["G2235"]],[21,22,["G1722"]],[22,23,["G848"]],[23,24,["G2588"]]]},{"k":23263,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G4675"]],[3,4,["G1188"]],[4,5,["G3788"]],[5,6,["G4624"]],[6,7,["G4571"]],[7,10,["G1807","G846"]],[10,11,["G2532"]],[11,12,["G906"]],[12,14,["G575"]],[14,15,["G4675"]],[15,16,["G1063"]],[16,19,["G4851"]],[19,21,["G4671"]],[21,22,["G2443"]],[22,23,["G1520"]],[23,25,["G4675"]],[25,26,["G3196"]],[26,28,["G622"]],[28,29,["G2532"]],[29,30,["G3361"]],[30,32,["G4675"]],[32,33,["G3650"]],[33,34,["G4983"]],[34,37,["G906"]],[37,38,["G1519"]],[38,39,["G1067"]]]},{"k":23264,"v":[[0,1,["G2532"]],[1,2,["G1487"]],[2,3,["G4675"]],[3,4,["G1188"]],[4,5,["G5495"]],[5,6,["G4624"]],[6,7,["G4571"]],[7,10,["G1581","G846"]],[10,11,["G2532"]],[11,12,["G906"]],[12,14,["G575"]],[14,15,["G4675"]],[15,16,["G1063"]],[16,19,["G4851"]],[19,21,["G4671"]],[21,22,["G2443"]],[22,23,["G1520"]],[23,25,["G4675"]],[25,26,["G3196"]],[26,28,["G622"]],[28,29,["G2532"]],[29,30,["G3361"]],[30,32,["G4675"]],[32,33,["G3650"]],[33,34,["G4983"]],[34,37,["G906"]],[37,38,["G1519"]],[38,39,["G1067"]]]},{"k":23265,"v":[[0,1,["(G1161)"]],[1,4,["G4483"]],[4,5,["G3739","G302"]],[5,8,["G630"]],[8,9,["G848"]],[9,10,["G1135"]],[10,13,["G1325"]],[13,14,["G846"]],[14,18,["G647"]]]},{"k":23266,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G3739","G302"]],[7,10,["G630"]],[10,11,["G848"]],[11,12,["G1135"]],[12,14,["G3924"]],[14,16,["G3056"]],[16,18,["G4202"]],[18,19,["G4160"]],[19,20,["G846"]],[20,23,["G3429"]],[23,24,["G2532"]],[24,25,["G3739","G1437"]],[25,27,["G1060"]],[27,31,["G630"]],[31,33,["G3429"]]]},{"k":23267,"v":[[0,1,["G3825"]],[1,4,["G191"]],[4,5,["G3754"]],[5,9,["G4483"]],[9,14,["G744"]],[14,17,["G3756"]],[17,18,["G1964"]],[18,20,["G1161"]],[20,22,["G591"]],[22,24,["G3588"]],[24,25,["G2962"]],[25,26,["G4675"]],[26,27,["G3727"]]]},{"k":23268,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3660"]],[6,7,["G3361"]],[7,9,["G3654"]],[9,10,["G3383"]],[10,11,["G1722"]],[11,12,["G3772"]],[12,13,["G3754"]],[13,15,["G2076"]],[15,16,["G2316"]],[16,17,["G2362"]]]},{"k":23269,"v":[[0,1,["G3383"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G1093"]],[4,5,["G3754"]],[5,7,["G2076"]],[7,8,["G846"]],[8,9,["G5286","G4228"]],[9,10,["G3383"]],[10,11,["G1519"]],[11,12,["G2414"]],[12,13,["G3754"]],[13,15,["G2076"]],[15,17,["G4172"]],[17,19,["G3588"]],[19,20,["G3173"]],[20,21,["G935"]]]},{"k":23270,"v":[[0,1,["G3383"]],[1,4,["G3660"]],[4,5,["G1722"]],[5,6,["G4675"]],[6,7,["G2776"]],[7,8,["G3754"]],[8,10,["G1410"]],[10,11,["G3756"]],[11,12,["G4160"]],[12,13,["G3391"]],[13,14,["G2359"]],[14,15,["G3022"]],[15,16,["G2228"]],[16,17,["G3189"]]]},{"k":23271,"v":[[0,1,["G1161"]],[1,3,["G5216"]],[3,4,["G3056"]],[4,5,["G2077"]],[5,6,["G3483"]],[6,7,["G3483"]],[7,8,["G3756"]],[8,9,["G3756"]],[9,10,["G1161"]],[10,13,["G4053"]],[13,15,["G5130"]],[15,16,["G2076"]],[16,17,["G1537"]],[17,18,["G4190"]]]},{"k":23272,"v":[[0,3,["G191"]],[3,4,["G3754"]],[4,8,["G4483"]],[8,10,["G3788"]],[10,11,["G473"]],[11,13,["G3788"]],[13,14,["G2532"]],[14,16,["G3599"]],[16,17,["G473"]],[17,19,["G3599"]]]},{"k":23273,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G3004"]],[3,5,["G5213"]],[5,8,["G436"]],[8,9,["G3361"]],[9,10,["G4190"]],[10,11,["G235"]],[11,12,["G3748"]],[12,14,["G4474"]],[14,15,["G4571"]],[15,16,["G1909"]],[16,17,["G4675"]],[17,18,["G1188"]],[18,19,["G4600"]],[19,20,["G4762"]],[20,22,["G846"]],[22,23,["G3588"]],[23,24,["G243"]],[24,25,["G2532"]]]},{"k":23274,"v":[[0,1,["G2532"]],[1,5,["G2309"]],[5,10,["G2919","G4671"]],[10,11,["G2532"]],[11,13,["G2983"]],[13,14,["G4675"]],[14,15,["G5509"]],[15,17,["G846"]],[17,18,["G863"]],[18,20,["G2440"]],[20,21,["G2532"]]]},{"k":23275,"v":[[0,1,["G2532"]],[1,2,["G3748"]],[2,7,["G29","G4571"]],[7,8,["G1520"]],[8,9,["G3400"]],[9,10,["G5217"]],[10,11,["G3326"]],[11,12,["G846"]],[12,13,["G1417"]]]},{"k":23276,"v":[[0,1,["G1325"]],[1,5,["G154"]],[5,6,["G4571"]],[6,7,["G2532"]],[7,11,["G2309"]],[11,12,["G1155"]],[12,13,["G575"]],[13,14,["G4675"]],[14,18,["G654","G3361"]]]},{"k":23277,"v":[[0,3,["G191"]],[3,4,["G3754"]],[4,8,["G4483"]],[8,11,["G25"]],[11,12,["G4675"]],[12,13,["G4139"]],[13,14,["G2532"]],[14,15,["G3404"]],[15,16,["G4675"]],[16,17,["G2190"]]]},{"k":23278,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G3004"]],[3,5,["G5213"]],[5,6,["G25"]],[6,7,["G5216"]],[7,8,["G2190"]],[8,9,["G2127"]],[9,12,["G2672"]],[12,13,["G5209"]],[13,14,["G4160"]],[14,15,["G2573"]],[15,19,["G3404"]],[19,20,["G5209"]],[20,21,["G2532"]],[21,22,["G4336"]],[22,23,["G5228"]],[23,27,["G1908"]],[27,28,["G5209"]],[28,29,["G2532"]],[29,30,["G1377"]],[30,31,["G5209"]]]},{"k":23279,"v":[[0,1,["G3704"]],[1,4,["G1096"]],[4,6,["G5207"]],[6,8,["G5216"]],[8,9,["G3962"]],[9,10,["G3588"]],[10,12,["G1722"]],[12,13,["G3772"]],[13,14,["G3754"]],[14,17,["G848"]],[17,18,["G2246"]],[18,20,["G393"]],[20,21,["G1909"]],[21,23,["G4190"]],[23,24,["G2532"]],[24,27,["G18"]],[27,28,["G2532"]],[28,30,["G1026"]],[30,31,["G1909"]],[31,33,["G1342"]],[33,34,["G2532"]],[34,37,["G94"]]]},{"k":23280,"v":[[0,1,["G1063"]],[1,2,["G1437"]],[2,4,["G25"]],[4,7,["G25"]],[7,8,["G5209"]],[8,9,["G5101"]],[9,10,["G3408"]],[10,11,["G2192"]],[11,13,["G4160"]],[13,14,["G3780"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G5057"]],[17,18,["G3588"]],[18,19,["G846"]]]},{"k":23281,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G782"]],[4,5,["G5216"]],[5,6,["G80"]],[6,7,["G3440"]],[7,8,["G5101"]],[8,9,["G4160"]],[9,11,["G4053"]],[11,14,["G4160"]],[14,15,["G3780"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G5057"]],[18,19,["G3779"]]]},{"k":23282,"v":[[0,1,["G2071"]],[1,2,["G5210"]],[2,3,["G3767"]],[3,4,["G5046"]],[4,6,["G5618"]],[6,7,["G5216"]],[7,8,["G3962"]],[8,9,["G3588"]],[9,11,["G1722"]],[11,12,["G3772"]],[12,13,["G2076"]],[13,14,["G5046"]]]},{"k":23283,"v":[[0,2,["G4337"]],[2,5,["G4160"]],[5,6,["G3361"]],[6,7,["G5216"]],[7,8,["G1654"]],[8,9,["G1715"]],[9,10,["G444"]],[10,13,["G2300"]],[13,15,["G846"]],[15,16,["G1490"]],[16,18,["G2192"]],[18,19,["G3756"]],[19,20,["G3408"]],[20,21,["G3844"]],[21,22,["G5216"]],[22,23,["G3962"]],[23,24,["G3588"]],[24,26,["G1722"]],[26,27,["G3772"]]]},{"k":23284,"v":[[0,1,["G3767"]],[1,2,["G3752"]],[2,4,["G4160"]],[4,6,["G1654"]],[6,8,["G3361"]],[8,11,["G4537"]],[11,12,["G1715"]],[12,13,["G4675"]],[13,14,["G5618"]],[14,15,["G3588"]],[15,16,["G5273"]],[16,17,["G4160"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,20,["G4864"]],[20,21,["G2532"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G4505"]],[24,25,["G3704"]],[25,29,["G1392"]],[29,30,["G5259"]],[30,31,["G444"]],[31,32,["G281"]],[32,34,["G3004"]],[34,36,["G5213"]],[36,38,["G568"]],[38,39,["G848"]],[39,40,["G3408"]]]},{"k":23285,"v":[[0,1,["G1161"]],[1,3,["G4675"]],[3,4,["G4160"]],[4,5,["G1654"]],[5,7,["G3361"]],[7,8,["G4675"]],[8,10,["G710"]],[10,11,["G1097"]],[11,12,["G5101"]],[12,13,["G4675"]],[13,15,["G1188"]],[15,16,["G4160"]]]},{"k":23286,"v":[[0,1,["G3704"]],[1,2,["G4675"]],[2,3,["G1654"]],[3,5,["G5600"]],[5,6,["G1722"]],[6,7,["G2927"]],[7,8,["G2532"]],[8,9,["G4675"]],[9,10,["G3962"]],[10,12,["G991"]],[12,13,["G1722"]],[13,14,["G2927"]],[14,15,["G848"]],[15,17,["G591"]],[17,18,["G4671"]],[18,19,["G1722","G5318"]]]},{"k":23287,"v":[[0,1,["G2532"]],[1,2,["G3752"]],[2,4,["G4336"]],[4,7,["G3756"]],[7,8,["G2071"]],[8,9,["G5618"]],[9,10,["G3588"]],[10,11,["G5273"]],[11,13,["G3754"]],[13,15,["G5368"]],[15,17,["G4336"]],[17,18,["G2476"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G4864"]],[21,22,["G2532"]],[22,23,["G1722"]],[23,24,["G3588"]],[24,25,["G1137"]],[25,27,["G3588"]],[27,28,["G4113"]],[28,29,["G3704"]],[29,33,["G5316","G302"]],[33,35,["G444"]],[35,36,["G281"]],[36,38,["G3004"]],[38,40,["G5213"]],[40,42,["G568"]],[42,43,["G848"]],[43,44,["G3408"]]]},{"k":23288,"v":[[0,1,["G1161"]],[1,2,["G4771"]],[2,3,["G3752"]],[3,5,["G4336"]],[5,6,["G1525"]],[6,7,["G1519"]],[7,8,["G4675"]],[8,9,["G5009"]],[9,10,["G2532"]],[10,14,["G2808"]],[14,15,["G4675"]],[15,16,["G2374"]],[16,17,["G4336"]],[17,19,["G4675"]],[19,20,["G3962"]],[20,21,["G3588"]],[21,23,["G1722"]],[23,24,["G2927"]],[24,25,["G2532"]],[25,26,["G4675"]],[26,27,["G3962"]],[27,29,["G991"]],[29,30,["G1722"]],[30,31,["G2927"]],[31,33,["G591"]],[33,34,["G4671"]],[34,35,["G1722","G5318"]]]},{"k":23289,"v":[[0,1,["G1161"]],[1,4,["G4336"]],[4,8,["G945","G3361"]],[8,9,["G5618"]],[9,10,["G3588"]],[10,11,["G1482"]],[11,13,["G1063"]],[13,15,["G1380"]],[15,16,["G3754"]],[16,20,["G1522"]],[20,21,["G1722"]],[21,22,["G848"]],[22,24,["G4180"]]]},{"k":23290,"v":[[0,2,["G3361"]],[2,4,["G3767"]],[4,6,["G3666"]],[6,7,["G846"]],[7,8,["G1063"]],[8,9,["G5216"]],[9,10,["G3962"]],[10,11,["G1492"]],[11,13,["G3739"]],[13,15,["G2192"]],[15,16,["G5532"]],[16,18,["G4253"]],[18,19,["G5209"]],[19,20,["G154"]],[20,21,["G846"]]]},{"k":23291,"v":[[0,3,["G3779"]],[3,4,["G3767"]],[4,5,["G4336"]],[5,6,["G5210"]],[6,7,["G2257"]],[7,8,["G3962"]],[8,9,["G3588"]],[9,11,["G1722"]],[11,12,["G3772"]],[12,13,["G37"]],[13,15,["G4675"]],[15,16,["G3686"]]]},{"k":23292,"v":[[0,1,["G4675"]],[1,2,["G932"]],[2,3,["G2064"]],[3,4,["G4675"]],[4,5,["G2307"]],[5,7,["G1096"]],[7,8,["G1909"]],[8,9,["G1093"]],[9,10,["G5613"]],[10,13,["G1722"]],[13,14,["G3772"]]]},{"k":23293,"v":[[0,1,["G1325"]],[1,2,["G2254"]],[2,4,["G4594"]],[4,5,["G2257"]],[5,6,["G1967"]],[6,7,["G740"]]]},{"k":23294,"v":[[0,1,["G2532"]],[1,2,["G863"]],[2,3,["G2254"]],[3,4,["G2257"]],[4,5,["G3783"]],[5,6,["G5613"]],[6,7,["G2249"]],[7,8,["G863"]],[8,9,["G2257"]],[9,10,["G3781"]]]},{"k":23295,"v":[[0,1,["G2532"]],[1,2,["G1533"]],[2,3,["G2248"]],[3,4,["G3361"]],[4,5,["G1519"]],[5,6,["G3986"]],[6,7,["G235"]],[7,8,["G4506"]],[8,9,["G2248"]],[9,10,["G575"]],[10,11,["G4190"]],[11,12,["G3754"]],[12,13,["G4675"]],[13,14,["G2076"]],[14,15,["G3588"]],[15,16,["G932"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G1411"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G1391"]],[22,24,["G1519","G165"]],[24,25,["G281"]]]},{"k":23296,"v":[[0,1,["G1063"]],[1,2,["G1437"]],[2,4,["G863"]],[4,5,["G444"]],[5,6,["G846"]],[6,7,["G3900"]],[7,8,["G5216"]],[8,9,["G3770"]],[9,10,["G3962"]],[10,12,["G2532"]],[12,13,["G863"]],[13,14,["G5213"]]]},{"k":23297,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,4,["G863"]],[4,5,["G3361"]],[5,6,["G444"]],[6,7,["G846"]],[7,8,["G3900"]],[8,9,["G3761"]],[9,11,["G5216"]],[11,12,["G3962"]],[12,13,["G863"]],[13,14,["G5216"]],[14,15,["G3900"]]]},{"k":23298,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,4,["G3522"]],[4,5,["G1096"]],[5,6,["G3361"]],[6,7,["G5618"]],[7,8,["G3588"]],[8,9,["G5273"]],[9,13,["G4659"]],[13,14,["G1063"]],[14,16,["G853"]],[16,17,["G848"]],[17,18,["G4383"]],[18,19,["G3704"]],[19,22,["G5316"]],[22,24,["G444"]],[24,26,["G3522"]],[26,27,["G281"]],[27,29,["G3004"]],[29,31,["G5213"]],[31,33,["G568"]],[33,34,["G848"]],[34,35,["G3408"]]]},{"k":23299,"v":[[0,1,["G1161"]],[1,2,["G4771"]],[2,5,["G3522"]],[5,6,["G218"]],[6,7,["G4675"]],[7,8,["G2776"]],[8,9,["G2532"]],[9,10,["G3538"]],[10,11,["G4675"]],[11,12,["G4383"]]]},{"k":23300,"v":[[0,1,["G3704"]],[1,3,["G5316"]],[3,4,["G3361"]],[4,6,["G444"]],[6,8,["G3522"]],[8,9,["G235"]],[9,11,["G4675"]],[11,12,["G3962"]],[12,13,["G3588"]],[13,15,["G1722"]],[15,16,["G2927"]],[16,17,["G2532"]],[17,18,["G4675"]],[18,19,["G3962"]],[19,21,["G991"]],[21,22,["G1722"]],[22,23,["G2927"]],[23,25,["G591"]],[25,26,["G4671"]],[26,27,["G1722","G5318"]]]},{"k":23301,"v":[[0,3,["G2343","G3361"]],[3,5,["G5213"]],[5,6,["G2344"]],[6,7,["G1909"]],[7,8,["G1093"]],[8,9,["G3699"]],[9,10,["G4597"]],[10,11,["G2532"]],[11,12,["G1035"]],[12,14,["G853"]],[14,15,["G2532"]],[15,16,["G3699"]],[16,17,["G2812"]],[17,19,["G1358"]],[19,20,["G2532"]],[20,21,["G2813"]]]},{"k":23302,"v":[[0,1,["G1161"]],[1,3,["G2343"]],[3,5,["G5213"]],[5,6,["G2344"]],[6,7,["G1722"]],[7,8,["G3772"]],[8,9,["G3699"]],[9,10,["G3777"]],[10,11,["G4597"]],[11,12,["G3777"]],[12,13,["G1035"]],[13,15,["G853"]],[15,16,["G2532"]],[16,17,["G3699"]],[17,18,["G2812"]],[18,20,["G3756"]],[20,22,["G1358"]],[22,23,["G3761"]],[23,24,["G2813"]]]},{"k":23303,"v":[[0,1,["G1063"]],[1,2,["G3699"]],[2,3,["G5216"]],[3,4,["G2344"]],[4,5,["G2076"]],[5,6,["G1563"]],[6,8,["G5216"]],[8,9,["G2588"]],[9,10,["G2071"]],[10,11,["G2532"]]]},{"k":23304,"v":[[0,1,["G3588"]],[1,2,["G3088"]],[2,4,["G3588"]],[4,5,["G4983"]],[5,6,["G2076"]],[6,7,["G3588"]],[7,8,["G3788"]],[8,9,["G1437"]],[9,10,["G3767"]],[10,11,["G4675"]],[11,12,["G3788"]],[12,13,["G5600"]],[13,14,["G573"]],[14,15,["G4675"]],[15,16,["G3650"]],[16,17,["G4983"]],[17,19,["G2071"]],[19,22,["G5460"]]]},{"k":23305,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,3,["G4675"]],[3,4,["G3788"]],[4,5,["G5600"]],[5,6,["G4190"]],[6,7,["G4675"]],[7,8,["G3650"]],[8,9,["G4983"]],[9,11,["G2071"]],[11,14,["G4652"]],[14,15,["G1487"]],[15,16,["G3767"]],[16,17,["G3588"]],[17,18,["G5457"]],[18,19,["G3588"]],[19,21,["G1722"]],[21,22,["G4671"]],[22,23,["G2076"]],[23,24,["G4655"]],[24,26,["G4214"]],[26,29,["G4655"]]]},{"k":23306,"v":[[0,2,["G3762"]],[2,3,["G1410"]],[3,4,["G1398"]],[4,5,["G1417"]],[5,6,["G2962"]],[6,7,["G1063"]],[7,8,["G2228"]],[8,11,["G3404"]],[11,12,["G3588"]],[12,13,["G1520"]],[13,14,["G2532"]],[14,15,["G25"]],[15,16,["G3588"]],[16,17,["G2087"]],[17,18,["G2228"]],[18,22,["G472"]],[22,25,["G1520"]],[25,26,["G2532"]],[26,27,["G2706"]],[27,28,["G3588"]],[28,29,["G2087"]],[29,31,["G1410","G3756"]],[31,32,["G1398"]],[32,33,["G2316"]],[33,34,["G2532"]],[34,35,["G3126"]]]},{"k":23307,"v":[[0,1,["G1223","G5124"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,8,["G3309","G3361"]],[8,10,["G5216"]],[10,11,["G5590"]],[11,12,["G5101"]],[12,15,["G5315"]],[15,16,["G2532"]],[16,17,["G5101"]],[17,20,["G4095"]],[20,22,["G3366"]],[22,24,["G5216"]],[24,25,["G4983"]],[25,26,["G5101"]],[26,30,["G1746"]],[30,31,["G2076"]],[31,32,["G3780"]],[32,33,["G3588"]],[33,34,["G5590"]],[34,35,["G4119"]],[35,37,["G5160"]],[37,38,["G2532"]],[38,39,["G3588"]],[39,40,["G4983"]],[40,42,["G1742"]]]},{"k":23308,"v":[[0,1,["G1689","G1519"]],[1,2,["G3588"]],[2,3,["G4071"]],[3,5,["G3588"]],[5,6,["G3772"]],[6,7,["G3754"]],[7,9,["G4687"]],[9,10,["G3756"]],[10,11,["G3761"]],[11,14,["G2325"]],[14,15,["G3761"]],[15,16,["G4863"]],[16,17,["G1519"]],[17,18,["G596"]],[18,19,["G2532"]],[19,20,["G5216"]],[20,21,["G3770"]],[21,22,["G3962"]],[22,23,["G5142"]],[23,24,["G846"]],[24,29,["G1308","G5210","G3756","G3123"]],[29,31,["G846"]]]},{"k":23309,"v":[[0,0,["(G1161)"]],[0,1,["G5101"]],[1,2,["G1537"]],[2,3,["G5216"]],[3,6,["G3309"]],[6,7,["G1410"]],[7,8,["G4369"]],[8,9,["G1520"]],[9,10,["G4083"]],[10,11,["G1909"]],[11,12,["G848"]],[12,13,["G2244"]]]},{"k":23310,"v":[[0,1,["G2532"]],[1,2,["G5101"]],[2,5,["G3309"]],[5,6,["G4012"]],[6,7,["G1742"]],[7,8,["G2648"]],[8,9,["G3588"]],[9,10,["G2918"]],[10,12,["G3588"]],[12,13,["G68"]],[13,14,["G4459"]],[14,16,["G837"]],[16,18,["G2872"]],[18,19,["G3756"]],[19,20,["G3761"]],[20,23,["G3514"]]]},{"k":23311,"v":[[0,1,["G1161"]],[1,4,["G3004"]],[4,6,["G5213"]],[6,7,["G3754"]],[7,8,["G3761"]],[8,9,["G4672"]],[9,10,["G1722"]],[10,11,["G3956"]],[11,12,["G848"]],[12,13,["G1391"]],[13,16,["G4016"]],[16,17,["G5613"]],[17,18,["G1520"]],[18,20,["G5130"]]]},{"k":23312,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G2316"]],[3,4,["G3779"]],[4,5,["G294"]],[5,6,["G3588"]],[6,7,["G5528"]],[7,9,["G3588"]],[9,10,["G68"]],[10,13,["G4594"]],[13,14,["G5607"]],[14,15,["G2532"]],[15,17,["G839"]],[17,19,["G906"]],[19,20,["G1519"]],[20,22,["G2823"]],[22,25,["G3756"]],[25,26,["G4183"]],[26,27,["G3123"]],[27,29,["G5209"]],[29,34,["G3640"]]]},{"k":23313,"v":[[0,1,["G3767"]],[1,4,["G3309","G3361"]],[4,5,["G3004"]],[5,6,["G5101"]],[6,9,["G5315"]],[9,10,["G2228"]],[10,11,["G5101"]],[11,14,["G4095"]],[14,15,["G2228"]],[15,16,["G5101"]],[16,20,["G4016"]]]},{"k":23314,"v":[[0,1,["G1063"]],[1,3,["G3956"]],[3,5,["G5023"]],[5,7,["G3588"]],[7,8,["G1484"]],[8,9,["G1934"]],[9,10,["G1063"]],[10,11,["G5216"]],[11,12,["G3770"]],[12,13,["G3962"]],[13,14,["G1492"]],[14,15,["G3754"]],[15,18,["G5535"]],[18,20,["G537"]],[20,22,["G5130"]]]},{"k":23315,"v":[[0,1,["G1161"]],[1,2,["G2212"]],[2,4,["G4412"]],[4,5,["G3588"]],[5,6,["G932"]],[6,8,["G2316"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G1343"]],[11,12,["G2532"]],[12,13,["G3956"]],[13,15,["G5023"]],[15,18,["G4369"]],[18,20,["G5213"]]]},{"k":23316,"v":[[0,4,["G3361","G3767","G3309"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G839"]],[7,8,["G1063"]],[8,9,["G3588"]],[9,10,["G839"]],[10,13,["G3309"]],[13,16,["G3588"]],[16,18,["G1438"]],[18,19,["G713"]],[19,21,["G3588"]],[21,22,["G2250"]],[22,24,["G3588"]],[24,25,["G2549"]],[25,26,["G846"]]]},{"k":23317,"v":[[0,1,["G2919"]],[1,2,["G3361"]],[2,3,["G2443"]],[3,6,["G3361"]],[6,7,["G2919"]]]},{"k":23318,"v":[[0,1,["G1063"]],[1,2,["G1722"]],[2,3,["G3739"]],[3,4,["G2917"]],[4,6,["G2919"]],[6,10,["G2919"]],[10,11,["G2532"]],[11,12,["G1722"]],[12,13,["G3739"]],[13,14,["G3358"]],[14,16,["G3354"]],[16,23,["G488","G5213"]]]},{"k":23319,"v":[[0,1,["G1161"]],[1,2,["G5101"]],[2,3,["G991"]],[3,5,["G3588"]],[5,6,["G2595"]],[6,7,["G3588"]],[7,9,["G1722"]],[9,10,["G4675"]],[10,11,["G80"]],[11,12,["G3788"]],[12,13,["G1161"]],[13,14,["G2657"]],[14,15,["G3756"]],[15,16,["G3588"]],[16,17,["G1385"]],[17,20,["G1722"]],[20,22,["G4674"]],[22,23,["G3788"]]]},{"k":23320,"v":[[0,1,["G2228"]],[1,2,["G4459"]],[2,5,["G2046"]],[5,7,["G4675"]],[7,8,["G80"]],[8,9,["G863"]],[9,12,["G1544"]],[12,13,["G3588"]],[13,14,["G2595"]],[14,16,["G575"]],[16,17,["G4675"]],[17,18,["G3788"]],[18,19,["G2532"]],[19,20,["G2400"]],[20,22,["G1385"]],[22,23,["G1722"]],[23,25,["G4675"]],[25,27,["G3788"]]]},{"k":23321,"v":[[0,2,["G5273"]],[2,3,["G4412"]],[3,5,["G1544"]],[5,6,["G3588"]],[6,7,["G1385"]],[7,8,["G1537"]],[8,11,["G4675"]],[11,12,["G3788"]],[12,13,["G2532"]],[13,14,["G5119"]],[14,18,["G1227"]],[18,21,["G1544"]],[21,22,["G3588"]],[22,23,["G2595"]],[23,25,["G1537"]],[25,26,["G4675"]],[26,27,["G80"]],[27,28,["G3788"]]]},{"k":23322,"v":[[0,1,["G1325"]],[1,2,["G3361"]],[2,6,["G40"]],[6,8,["G3588"]],[8,9,["G2965"]],[9,10,["G3366"]],[10,11,["G906"]],[11,13,["G5216"]],[13,14,["G3135"]],[14,15,["G1715"]],[15,16,["G5519"]],[16,17,["G3379"]],[17,19,["G2662"]],[19,20,["G846"]],[20,21,["G1722"]],[21,22,["G848"]],[22,23,["G4228"]],[23,24,["G2532"]],[24,26,["G4762"]],[26,28,["G4486"]],[28,29,["G5209"]]]},{"k":23323,"v":[[0,1,["G154"]],[1,2,["G2532"]],[2,6,["G1325"]],[6,7,["G5213"]],[7,8,["G2212"]],[8,9,["G2532"]],[9,12,["G2147"]],[12,13,["G2925"]],[13,14,["G2532"]],[14,18,["G455"]],[18,20,["G5213"]]]},{"k":23324,"v":[[0,1,["G1063"]],[1,3,["G3956"]],[3,5,["G154"]],[5,6,["G2983"]],[6,7,["G2532"]],[7,10,["G2212"]],[10,11,["G2147"]],[11,12,["G2532"]],[12,16,["G2925"]],[16,20,["G455"]]]},{"k":23325,"v":[[0,1,["G2228"]],[1,2,["G5101"]],[2,3,["G444"]],[3,4,["G2076"]],[4,6,["G1537"]],[6,7,["G5216"]],[7,8,["G3739"]],[8,9,["G1437"]],[9,10,["G846"]],[10,11,["G5207"]],[11,12,["G154"]],[12,13,["G740"]],[13,16,["G1929"]],[16,17,["G846"]],[17,18,["(G3361)"]],[18,19,["G3037"]]]},{"k":23326,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G154"]],[4,6,["G2486"]],[6,9,["G1929"]],[9,10,["G846"]],[10,12,["G3789"]]]},{"k":23327,"v":[[0,1,["G1487"]],[1,2,["G5210"]],[2,3,["G3767"]],[3,4,["G5607"]],[4,5,["G4190"]],[5,6,["G1492"]],[6,9,["G1325"]],[9,10,["G18"]],[10,11,["G1390"]],[11,13,["G5216"]],[13,14,["G5043"]],[14,16,["G4214"]],[16,17,["G3123"]],[17,19,["G5216"]],[19,20,["G3962"]],[20,21,["G3588"]],[21,23,["G1722"]],[23,24,["G3772"]],[24,25,["G1325"]],[25,27,["G18"]],[27,31,["G154"]],[31,32,["G846"]]]},{"k":23328,"v":[[0,1,["G3767"]],[1,3,["G3956"]],[3,4,["G3745","G302"]],[4,6,["G2309"]],[6,7,["G2443"]],[7,8,["G444"]],[8,10,["G4160"]],[10,12,["G5213"]],[12,13,["G4160"]],[13,14,["G5210"]],[14,15,["G2532"]],[15,16,["G3779"]],[16,18,["G846"]],[18,19,["G1063"]],[19,20,["G3778"]],[20,21,["G2076"]],[21,22,["G3588"]],[22,23,["G3551"]],[23,24,["G2532"]],[24,25,["G3588"]],[25,26,["G4396"]]]},{"k":23329,"v":[[0,1,["G1525"]],[1,3,["G1223"]],[3,5,["G3588"]],[5,6,["G4728"]],[6,7,["G4439"]],[7,8,["G3754"]],[8,9,["G4116"]],[9,11,["G3588"]],[11,12,["G4439"]],[12,13,["G2532"]],[13,14,["G2149"]],[14,16,["G3588"]],[16,17,["G3598"]],[17,19,["G520"]],[19,20,["G1519"]],[20,21,["G684"]],[21,22,["G2532"]],[22,23,["G4183"]],[23,25,["G1526"]],[25,28,["G1525"]],[28,29,["G1223","G846"]]]},{"k":23330,"v":[[0,1,["G3754"]],[1,2,["G4728"]],[2,4,["G3588"]],[4,5,["G4439"]],[5,6,["G2532"]],[6,7,["G2346"]],[7,9,["G3588"]],[9,10,["G3598"]],[10,11,["G3588"]],[11,12,["G520"]],[12,13,["G1519"]],[13,14,["G2222"]],[14,15,["G2532"]],[15,16,["G3641"]],[16,18,["G1526"]],[18,20,["G2147"]],[20,21,["G846"]]]},{"k":23331,"v":[[0,1,["G4337"]],[1,2,["G575"]],[2,4,["G5578"]],[4,5,["G3748"]],[5,6,["G2064"]],[6,7,["G4314"]],[7,8,["G5209"]],[8,9,["G1722"]],[9,10,["G4263"]],[10,11,["G1742"]],[11,12,["G1161"]],[12,13,["G2081"]],[13,15,["G1526"]],[15,16,["G727"]],[16,17,["G3074"]]]},{"k":23332,"v":[[0,3,["G1921"]],[3,4,["G846"]],[4,5,["G575"]],[5,6,["G846"]],[6,7,["G2590"]],[7,9,["(G3385)"]],[9,10,["G4816"]],[10,11,["G4718"]],[11,12,["G575"]],[12,13,["G173"]],[13,14,["G2228"]],[14,15,["G4810"]],[15,16,["G575"]],[16,17,["G5146"]]]},{"k":23333,"v":[[0,2,["G3779"]],[2,3,["G3956"]],[3,4,["G18"]],[4,5,["G1186"]],[5,7,["G4160"]],[7,8,["G2570"]],[8,9,["G2590"]],[9,10,["G1161"]],[10,12,["G4550"]],[12,13,["G1186"]],[13,15,["G4160"]],[15,16,["G4190"]],[16,17,["G2590"]]]},{"k":23334,"v":[[0,2,["G18"]],[2,3,["G1186"]],[3,4,["G1410","G3756"]],[4,6,["G4160"]],[6,7,["G4190"]],[7,8,["G2590"]],[8,9,["G3761"]],[9,12,["G4550"]],[12,13,["G1186"]],[13,15,["G4160"]],[15,16,["G2570"]],[16,17,["G2590"]]]},{"k":23335,"v":[[0,1,["G3956"]],[1,2,["G1186"]],[2,6,["G4160","G3361"]],[6,7,["G2570"]],[7,8,["G2590"]],[8,11,["G1581"]],[11,12,["G2532"]],[12,13,["G906"]],[13,14,["G1519"]],[14,16,["G4442"]]]},{"k":23336,"v":[[0,1,["G686"]],[1,2,["G575"]],[2,3,["G846"]],[3,4,["G2590"]],[4,7,["G1921"]],[7,8,["G846"]]]},{"k":23337,"v":[[0,1,["G3756"]],[1,3,["G3956"]],[3,5,["G3004"]],[5,7,["G3427"]],[7,8,["G2962"]],[8,9,["G2962"]],[9,11,["G1525"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G932"]],[14,16,["G3772"]],[16,17,["G235"]],[17,20,["G4160"]],[20,21,["G3588"]],[21,22,["G2307"]],[22,24,["G3450"]],[24,25,["G3962"]],[25,26,["G3588"]],[26,28,["G1722"]],[28,29,["G3772"]]]},{"k":23338,"v":[[0,1,["G4183"]],[1,3,["G2046"]],[3,5,["G3427"]],[5,6,["G1722"]],[6,7,["G1565"]],[7,8,["G2250"]],[8,9,["G2962"]],[9,10,["G2962"]],[10,13,["G3756"]],[13,14,["G4395"]],[14,16,["G4674"]],[16,17,["G3686"]],[17,18,["G2532"]],[18,20,["G4674"]],[20,21,["G3686"]],[21,24,["G1544"]],[24,25,["G1140"]],[25,26,["G2532"]],[26,28,["G4674"]],[28,29,["G3686"]],[29,30,["G4160"]],[30,31,["G4183"]],[31,33,["G1411"]]]},{"k":23339,"v":[[0,1,["G2532"]],[1,2,["G5119"]],[2,5,["G3670"]],[5,7,["G846"]],[7,9,["G3763"]],[9,10,["G1097"]],[10,11,["G5209"]],[11,12,["G672"]],[12,13,["G575"]],[13,14,["G1700"]],[14,17,["G2038"]],[17,18,["G458"]]]},{"k":23340,"v":[[0,1,["G3767"]],[1,2,["G3956","G3748"]],[2,3,["G191"]],[3,4,["G5128"]],[4,5,["G3056"]],[5,7,["G3450"]],[7,8,["G2532"]],[8,9,["G4160"]],[9,10,["G846"]],[10,13,["G3666"]],[13,14,["G846"]],[14,17,["G5429"]],[17,18,["G435"]],[18,19,["G3748"]],[19,20,["G3618"]],[20,21,["G848"]],[21,22,["G3614"]],[22,23,["G1909"]],[23,25,["G4073"]]]},{"k":23341,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1028"]],[3,4,["G2597"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G4215"]],[7,8,["G2064"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G417"]],[11,12,["G4154"]],[12,13,["G2532"]],[13,15,["G4363"]],[15,16,["G1565"]],[16,17,["G3614"]],[17,18,["G2532"]],[18,20,["G4098"]],[20,21,["G3756"]],[21,22,["G1063"]],[22,25,["G2311"]],[25,26,["G1909"]],[26,28,["G4073"]]]},{"k":23342,"v":[[0,1,["G2532"]],[1,3,["G3956"]],[3,5,["G191"]],[5,6,["G5128"]],[6,7,["G3056"]],[7,9,["G3450"]],[9,10,["G2532"]],[10,11,["G4160"]],[11,12,["G846"]],[12,13,["G3361"]],[13,16,["G3666"]],[16,19,["G3474"]],[19,20,["G435"]],[20,21,["G3748"]],[21,22,["G3618"]],[22,23,["G848"]],[23,24,["G3614"]],[24,25,["G1909"]],[25,26,["G3588"]],[26,27,["G285"]]]},{"k":23343,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1028"]],[3,4,["G2597"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G4215"]],[7,8,["G2064"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G417"]],[11,12,["G4154"]],[12,13,["G2532"]],[13,15,["G4350"]],[15,16,["G1565"]],[16,17,["G3614"]],[17,18,["G2532"]],[18,20,["G4098"]],[20,21,["G2532"]],[21,22,["G3173"]],[22,23,["G2258"]],[23,24,["G3588"]],[24,25,["G4431"]],[25,27,["G846"]]]},{"k":23344,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,6,["G3753"]],[6,7,["G2424"]],[7,9,["G4931"]],[9,10,["G5128"]],[10,11,["G3056"]],[11,12,["G3588"]],[12,13,["G3793"]],[13,15,["G1605"]],[15,16,["G1909"]],[16,17,["G846"]],[17,18,["G1322"]]]},{"k":23345,"v":[[0,1,["G1063"]],[1,3,["G2258","G1321"]],[3,4,["G846"]],[4,5,["G5613"]],[5,7,["G2192"]],[7,8,["G1849"]],[8,9,["G2532"]],[9,10,["G3756"]],[10,11,["G5613"]],[11,12,["G3588"]],[12,13,["G1122"]]]},{"k":23346,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,5,["G2597"]],[5,6,["G575"]],[6,7,["G3588"]],[7,8,["G3735"]],[8,9,["G4183"]],[9,10,["G3793"]],[10,11,["G190"]],[11,12,["G846"]]]},{"k":23347,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G2064"]],[4,6,["G3015"]],[6,8,["G4352"]],[8,9,["G846"]],[9,10,["G3004"]],[10,11,["G2962"]],[11,12,["G1437"]],[12,14,["G2309"]],[14,16,["G1410"]],[16,19,["G2511","G3165"]]]},{"k":23348,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,4,["G1614"]],[4,6,["G5495"]],[6,8,["G680"]],[8,9,["G846"]],[9,10,["G3004"]],[10,12,["G2309"]],[12,15,["G2511"]],[15,16,["G2532"]],[16,17,["G2112"]],[17,18,["G846"]],[18,19,["G3014"]],[19,21,["G2511"]]]},{"k":23349,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G3708"]],[6,8,["G2036"]],[8,10,["G3367"]],[10,11,["G235"]],[11,14,["G5217"]],[14,15,["G1166"]],[15,16,["G4572"]],[16,18,["G3588"]],[18,19,["G2409"]],[19,20,["G2532"]],[20,21,["G4374"]],[21,22,["G3588"]],[22,23,["G1435"]],[23,24,["G3739"]],[24,25,["G3475"]],[25,26,["G4367"]],[26,27,["G1519"]],[27,29,["G3142"]],[29,31,["G846"]]]},{"k":23350,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,5,["G1525"]],[5,6,["G1519"]],[6,7,["G2584"]],[7,9,["G4334"]],[9,11,["G846"]],[11,13,["G1543"]],[13,14,["G3870"]],[14,15,["G846"]]]},{"k":23351,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,3,["G2962"]],[3,4,["G3450"]],[4,5,["G3816"]],[5,6,["G906"]],[6,7,["G1722"]],[7,8,["G3614"]],[8,12,["G3885"]],[12,13,["G1171"]],[13,14,["G928"]]]},{"k":23352,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G1473"]],[6,8,["G2064"]],[8,10,["G2323"]],[10,11,["G846"]]]},{"k":23353,"v":[[0,0,["(G2532)"]],[0,1,["G3588"]],[1,2,["G1543"]],[2,3,["G611"]],[3,5,["G5346"]],[5,6,["G2962"]],[6,8,["G1510"]],[8,9,["G3756"]],[9,10,["G2425"]],[10,11,["G2443"]],[11,14,["G1525"]],[14,15,["G5259"]],[15,16,["G3450"]],[16,17,["G4721"]],[17,18,["G235"]],[18,19,["G2036"]],[19,21,["G3056"]],[21,22,["G3440"]],[22,23,["G2532"]],[23,24,["G3450"]],[24,25,["G3816"]],[25,28,["G2390"]]]},{"k":23354,"v":[[0,0,["(G2532)"]],[0,1,["G1063"]],[1,2,["G1473"]],[2,4,["G1510"]],[4,5,["G444"]],[5,6,["G5259"]],[6,7,["G1849"]],[7,8,["G2192"]],[8,9,["G4757"]],[9,10,["G5259"]],[10,11,["G1683"]],[11,12,["G2532"]],[12,14,["G3004"]],[14,16,["G5129"]],[16,18,["G4198"]],[18,19,["G2532"]],[19,21,["G4198"]],[21,22,["G2532"]],[22,24,["G243"]],[24,25,["G2064"]],[25,26,["G2532"]],[26,28,["G2064"]],[28,29,["G2532"]],[29,31,["G3450"]],[31,32,["G1401"]],[32,33,["G4160"]],[33,34,["G5124"]],[34,35,["G2532"]],[35,37,["G4160"]],[37,38,[]]]},{"k":23355,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G191"]],[3,6,["G2296"]],[6,7,["G2532"]],[7,8,["G2036"]],[8,12,["G190"]],[12,13,["G281"]],[13,15,["G3004"]],[15,17,["G5213"]],[17,21,["G2147"]],[21,23,["G5118"]],[23,24,["G4102"]],[24,26,["G3761"]],[26,27,["G1722"]],[27,28,["G2474"]]]},{"k":23356,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G4183"]],[7,9,["G2240"]],[9,10,["G575"]],[10,12,["G395"]],[12,13,["G2532"]],[13,14,["G1424"]],[14,15,["G2532"]],[15,18,["G347"]],[18,19,["G3326"]],[19,20,["G11"]],[20,21,["G2532"]],[21,22,["G2464"]],[22,23,["G2532"]],[23,24,["G2384"]],[24,25,["G1722"]],[25,26,["G3588"]],[26,27,["G932"]],[27,29,["G3772"]]]},{"k":23357,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G3588"]],[5,6,["G932"]],[6,10,["G1544"]],[10,11,["G1519"]],[11,12,["G1857"]],[12,13,["G4655"]],[13,14,["G1563"]],[14,16,["G2071"]],[16,17,["G2805"]],[17,18,["G2532"]],[18,19,["G1030"]],[19,21,["G3599"]]]},{"k":23358,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G3588"]],[5,6,["G1543"]],[6,9,["G5217"]],[9,10,["G2532"]],[10,11,["G5613"]],[11,14,["G4100"]],[14,18,["G1096"]],[18,20,["G4671"]],[20,21,["G2532"]],[21,22,["G846"]],[22,23,["G3816"]],[23,25,["G2390"]],[25,26,["G1722"]],[26,28,["G1565"]],[28,29,["G5610"]]]},{"k":23359,"v":[[0,1,["G2532"]],[1,3,["G2424"]],[3,5,["G2064"]],[5,6,["G1519"]],[6,7,["G4074"]],[7,8,["G3614"]],[8,10,["G1492"]],[10,11,["G846"]],[11,13,["G3994"]],[13,14,["G906"]],[14,15,["G2532"]],[15,19,["G4445"]]]},{"k":23360,"v":[[0,1,["G2532"]],[1,3,["G680"]],[3,4,["G846"]],[4,5,["G5495"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G4446"]],[8,9,["G863"]],[9,10,["G846"]],[10,11,["G2532"]],[11,13,["G1453"]],[13,14,["G2532"]],[14,15,["G1247"]],[15,17,["G846"]]]},{"k":23361,"v":[[0,1,["G1161"]],[1,3,["G3798"]],[3,5,["G1096"]],[5,7,["G4374"]],[7,9,["G846"]],[9,10,["G4183"]],[10,15,["G1139"]],[15,16,["G2532"]],[16,19,["G1544"]],[19,20,["G3588"]],[20,21,["G4151"]],[21,24,["G3056"]],[24,25,["G2532"]],[25,26,["G2323"]],[26,27,["G3956"]],[27,30,["G2192","G2560"]]]},{"k":23362,"v":[[0,1,["G3704"]],[1,5,["G4137"]],[5,8,["G4483"]],[8,9,["G1223"]],[9,10,["G2268"]],[10,11,["G3588"]],[11,12,["G4396"]],[12,13,["G3004"]],[13,14,["G846"]],[14,15,["G2983"]],[15,16,["G2257"]],[16,17,["G769"]],[17,18,["G2532"]],[18,19,["G941"]],[19,21,["G3554"]]]},{"k":23363,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,4,["G1492"]],[4,5,["G4183"]],[5,6,["G3793"]],[6,7,["G4012"]],[7,8,["G846"]],[8,11,["G2753"]],[11,13,["G565"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,17,["G4008"]]]},{"k":23364,"v":[[0,1,["G2532"]],[1,3,["G1520"]],[3,4,["G1122"]],[4,5,["G4334"]],[5,7,["G2036"]],[7,9,["G846"]],[9,10,["G1320"]],[10,13,["G190"]],[13,14,["G4671"]],[14,15,["G3699","G1437"]],[15,17,["G565"]]]},{"k":23365,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G3588"]],[6,7,["G258"]],[7,8,["G2192"]],[8,9,["G5454"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G4071"]],[12,14,["G3588"]],[14,15,["G3772"]],[15,17,["G2682"]],[17,18,["G1161"]],[18,19,["G3588"]],[19,20,["G5207"]],[20,22,["G444"]],[22,23,["G2192"]],[23,24,["G3756"]],[24,25,["G4226"]],[25,27,["G2827"]],[27,29,["G2776"]]]},{"k":23366,"v":[[0,1,["G1161"]],[1,2,["G2087"]],[2,4,["G846"]],[4,5,["G3101"]],[5,6,["G2036"]],[6,8,["G846"]],[8,9,["G2962"]],[9,10,["G2010"]],[10,11,["G3427"]],[11,12,["G4412"]],[12,14,["G565"]],[14,15,["G2532"]],[15,16,["G2290"]],[16,17,["G3450"]],[17,18,["G3962"]]]},{"k":23367,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G190"]],[6,7,["G3427"]],[7,8,["G2532"]],[8,9,["G863"]],[9,10,["G3588"]],[10,11,["G3498"]],[11,12,["G2290"]],[12,13,["G1438"]],[13,14,["G3498"]]]},{"k":23368,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G1684"]],[5,6,["G1519"]],[6,8,["G4143"]],[8,9,["G846"]],[9,10,["G3101"]],[10,11,["G190"]],[11,12,["G846"]]]},{"k":23369,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G1096"]],[4,6,["G3173"]],[6,7,["G4578"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G2281"]],[10,12,["G5620"]],[12,13,["G3588"]],[13,14,["G4143"]],[14,16,["G2572"]],[16,17,["G5259"]],[17,18,["G3588"]],[18,19,["G2949"]],[19,20,["G1161"]],[20,21,["G846"]],[21,23,["G2518"]]]},{"k":23370,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3101"]],[3,4,["G4334"]],[4,8,["G1453"]],[8,9,["G846"]],[9,10,["G3004"]],[10,11,["G2962"]],[11,12,["G4982"]],[12,13,["G2248"]],[13,15,["G622"]]]},{"k":23371,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G5101"]],[6,7,["G2075"]],[7,9,["G1169"]],[9,14,["G3640"]],[14,15,["G5119"]],[15,17,["G1453"]],[17,19,["G2008"]],[19,20,["G3588"]],[20,21,["G417"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G2281"]],[24,25,["G2532"]],[25,27,["G1096"]],[27,29,["G3173"]],[29,30,["G1055"]]]},{"k":23372,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G444"]],[3,4,["G2296"]],[4,5,["G3004"]],[5,9,["G4217"]],[9,10,["G2076"]],[10,11,["G3778"]],[11,12,["G3754"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G417"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G2281"]],[18,19,["G5219"]],[19,20,["G846"]]]},{"k":23373,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G2064"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,9,["G4008"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G5561"]],[12,14,["G3588"]],[14,15,["G1086"]],[15,17,["G5221"]],[17,18,["G846"]],[18,19,["G1417"]],[19,22,["G1139"]],[22,23,["G1831"]],[23,24,["G1537"]],[24,26,["G3588"]],[26,27,["G3419"]],[27,28,["G3029"]],[28,29,["G5467"]],[29,31,["G5620"]],[31,32,["G3361"]],[32,33,["G5100"]],[33,34,["G2480"]],[34,35,["G3928"]],[35,36,["G1223"]],[36,37,["G1565"]],[37,38,["G3598"]]]},{"k":23374,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,5,["G2896"]],[5,6,["G3004"]],[6,13,["G5101","G2254","G4671"]],[13,14,["G2424"]],[14,16,["G5207"]],[16,18,["G2316"]],[18,21,["G2064"]],[21,22,["G5602"]],[22,24,["G928"]],[24,25,["G2248"]],[25,26,["G4253"]],[26,28,["G2540"]]]},{"k":23375,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,7,["G3112"]],[7,8,["G575"]],[8,9,["G846"]],[9,11,["G34"]],[11,13,["G4183"]],[13,14,["G5519"]],[14,15,["G1006"]]]},{"k":23376,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1142"]],[3,4,["G3870"]],[4,5,["G846"]],[5,6,["G3004"]],[6,7,["G1487"]],[7,11,["G1544","G2248"]],[11,12,["G2010"]],[12,13,["G2254"]],[13,16,["G565"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,19,["G34"]],[19,21,["G5519"]]]},{"k":23377,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G5217"]],[6,7,["G1161"]],[7,12,["G1831"]],[12,14,["G565"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G34"]],[17,19,["G5519"]],[19,20,["G2532"]],[20,21,["G2400"]],[21,22,["G3588"]],[22,23,["G3956"]],[23,24,["G34"]],[24,26,["G5519"]],[26,28,["G3729"]],[28,29,["G2596"]],[29,32,["G2911"]],[32,33,["G1519"]],[33,34,["G3588"]],[34,35,["G2281"]],[35,36,["G2532"]],[36,37,["G599"]],[37,38,["G1722"]],[38,39,["G3588"]],[39,40,["G5204"]]]},{"k":23378,"v":[[0,1,["G1161"]],[1,4,["G1006"]],[4,6,["G5343"]],[6,7,["G2532"]],[7,10,["G565"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G4172"]],[13,14,["G2532"]],[14,15,["G518"]],[15,17,["G3956"]],[17,18,["G2532"]],[18,21,["G3588"]],[21,23,["G3588"]],[23,27,["G1139"]]]},{"k":23379,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G3588"]],[3,4,["G3956"]],[4,5,["G4172"]],[5,7,["G1831"]],[7,9,["G1519","G4877"]],[9,10,["G2424"]],[10,11,["G2532"]],[11,14,["G1492"]],[14,15,["G846"]],[15,17,["G3870"]],[17,19,["G3704"]],[19,22,["G3327"]],[22,24,["G575"]],[24,25,["G846"]],[25,26,["G3725"]]]},{"k":23380,"v":[[0,1,["G2532"]],[1,3,["G1684"]],[3,4,["G1519"]],[4,6,["G4143"]],[6,9,["G1276"]],[9,10,["G2532"]],[10,11,["G2064"]],[11,12,["G1519"]],[12,14,["G2398"]],[14,15,["G4172"]]]},{"k":23381,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G4374"]],[4,6,["G846"]],[6,12,["G3885"]],[12,13,["G906"]],[13,14,["G1909"]],[14,16,["G2825"]],[16,17,["G2532"]],[17,18,["G2424"]],[18,19,["G1492"]],[19,20,["G846"]],[20,21,["G4102"]],[21,22,["G2036"]],[22,24,["G3588"]],[24,28,["G3885"]],[28,29,["G5043"]],[29,33,["G2293"]],[33,34,["G4675"]],[34,35,["G266"]],[35,37,["G863"]],[37,38,["G4671"]]]},{"k":23382,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G5100"]],[3,5,["G3588"]],[5,6,["G1122"]],[6,7,["G2036"]],[7,8,["G1722"]],[8,9,["G1438"]],[9,10,["G3778"]],[10,12,["G987"]]]},{"k":23383,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G1492"]],[3,4,["G846"]],[4,5,["G1761"]],[5,6,["G2036"]],[6,7,["G2444"]],[7,8,["G1760"]],[8,9,["G5210"]],[9,10,["G4190"]],[10,11,["G1722"]],[11,12,["G5216"]],[12,13,["G2588"]]]},{"k":23384,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,3,["G2076"]],[3,4,["G2123"]],[4,6,["G2036"]],[6,8,["G266"]],[8,10,["G863"]],[10,11,["G4671"]],[11,12,["G2228"]],[12,14,["G2036"]],[14,15,["G1453"]],[15,16,["G2532"]],[16,17,["G4043"]]]},{"k":23385,"v":[[0,1,["G1161"]],[1,2,["G2443"]],[2,5,["G1492"]],[5,6,["G3754"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G444"]],[10,11,["G2192"]],[11,12,["G1849"]],[12,13,["G1909"]],[13,14,["G1093"]],[14,16,["G863"]],[16,17,["G266"]],[17,18,["G5119"]],[18,19,["G3004"]],[19,22,["G3588"]],[22,26,["G3885"]],[26,27,["G1453"]],[27,29,["G142"]],[29,30,["G4675"]],[30,31,["G2825"]],[31,32,["G2532"]],[32,33,["G5217"]],[33,34,["G1519"]],[34,35,["G4675"]],[35,36,["G3624"]]]},{"k":23386,"v":[[0,1,["G2532"]],[1,3,["G1453"]],[3,5,["G565"]],[5,6,["G1519"]],[6,7,["G848"]],[7,8,["G3624"]]]},{"k":23387,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G3793"]],[4,5,["G1492"]],[5,8,["G2296"]],[8,9,["G2532"]],[9,10,["G1392"]],[10,11,["G2316"]],[11,14,["G1325"]],[14,15,["G5108"]],[15,16,["G1849"]],[16,18,["G444"]]]},{"k":23388,"v":[[0,1,["G2532"]],[1,3,["G2424"]],[3,5,["G3855"]],[5,7,["G1564"]],[7,9,["G1492"]],[9,11,["G444"]],[11,12,["G3004"]],[12,13,["G3156"]],[13,14,["G2521"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,19,["G5058"]],[19,20,["G2532"]],[20,22,["G3004"]],[22,24,["G846"]],[24,25,["G190"]],[25,27,["G2532"]],[27,28,["G3427"]],[28,29,["G450"]],[29,31,["G190"]],[31,32,["G846"]]]},{"k":23389,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G2424"]],[7,10,["G345"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G3614"]],[13,14,["(G2400)"]],[14,15,["G4183"]],[15,16,["G5057"]],[16,17,["G2532"]],[17,18,["G268"]],[18,19,["G2064"]],[19,22,["G4873"]],[22,24,["G846"]],[24,25,["G2532"]],[25,26,["G846"]],[26,27,["G3101"]]]},{"k":23390,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G5330"]],[4,5,["G1492"]],[5,8,["G2036"]],[8,10,["G846"]],[10,11,["G3101"]],[11,12,["G1302"]],[12,13,["G2068"]],[13,14,["G5216"]],[14,15,["G1320"]],[15,16,["G3326"]],[16,17,["G5057"]],[17,18,["G2532"]],[18,19,["G268"]]]},{"k":23391,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,4,["G191"]],[4,7,["G2036"]],[7,9,["G846"]],[9,13,["G2480"]],[13,14,["G2192","G5532"]],[14,15,["G3756"]],[15,17,["G2395"]],[17,18,["G235"]],[18,22,["G2192","G2560"]]]},{"k":23392,"v":[[0,1,["G1161"]],[1,2,["G4198"]],[2,5,["G3129"]],[5,6,["G5101"]],[6,8,["G2076"]],[8,10,["G2309"]],[10,12,["G1656"]],[12,13,["G2532"]],[13,14,["G3756"]],[14,15,["G2378"]],[15,16,["G1063"]],[16,19,["G3756"]],[19,20,["G2064"]],[20,22,["G2564"]],[22,24,["G1342"]],[24,25,["G235"]],[25,26,["G268"]],[26,27,["G1519"]],[27,28,["G3341"]]]},{"k":23393,"v":[[0,1,["G5119"]],[1,2,["G4334"]],[2,4,["G846"]],[4,5,["G3588"]],[5,6,["G3101"]],[6,8,["G2491"]],[8,9,["G3004"]],[9,10,["G1302"]],[10,12,["G2249"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G5330"]],[15,16,["G3522"]],[16,17,["G4183"]],[17,18,["G1161"]],[18,19,["G4675"]],[19,20,["G3101"]],[20,21,["G3522"]],[21,22,["G3756"]]]},{"k":23394,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G1410","(G3361)"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G3588"]],[10,11,["G3567"]],[11,12,["G3996"]],[12,15,["G1909","G3745"]],[15,16,["G3588"]],[16,17,["G3566"]],[17,18,["G2076"]],[18,19,["G3326"]],[19,20,["G846"]],[20,21,["G1161"]],[21,23,["G2250"]],[23,25,["G2064"]],[25,26,["G3752"]],[26,27,["G3588"]],[27,28,["G3566"]],[28,31,["G522"]],[31,32,["G575"]],[32,33,["G846"]],[33,34,["G2532"]],[34,35,["G5119"]],[35,38,["G3522"]]]},{"k":23395,"v":[[0,0,["(G1161)"]],[0,2,["G3762"]],[2,3,["G1911"]],[3,5,["G1915"]],[5,7,["G46"]],[7,8,["G4470"]],[8,9,["G1909"]],[9,11,["G3820"]],[11,12,["G2440"]],[12,13,["G1063"]],[13,22,["G4138","G846"]],[22,23,["G142"]],[23,24,["G575"]],[24,25,["G3588"]],[25,26,["G2440"]],[26,27,["G2532"]],[27,29,["G4978"]],[29,30,["G1096"]],[30,32,["G5501"]]]},{"k":23396,"v":[[0,1,["G3761"]],[1,4,["G906"]],[4,5,["G3501"]],[5,6,["G3631"]],[6,7,["G1519"]],[7,8,["G3820"]],[8,9,["G779"]],[9,10,["G1490"]],[10,11,["G3588"]],[11,12,["G779"]],[12,13,["G4486"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G3631"]],[16,18,["G1632"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G779"]],[21,22,["G622"]],[22,23,["G235"]],[23,25,["G906"]],[25,26,["G3501"]],[26,27,["G3631"]],[27,28,["G1519"]],[28,29,["G2537"]],[29,30,["G779"]],[30,31,["G2532"]],[31,32,["G297"]],[32,34,["G4933"]]]},{"k":23397,"v":[[0,2,["G846"]],[2,3,["G2980"]],[3,5,["G5023"]],[5,7,["G846"]],[7,8,["G2400"]],[8,10,["G2064"]],[10,12,["G1520"]],[12,13,["G758"]],[13,14,["G2532"]],[14,15,["G4352"]],[15,16,["G846"]],[16,17,["G3004"]],[17,18,["G3450"]],[18,19,["G2364"]],[19,23,["G5053","G737"]],[23,24,["G235"]],[24,25,["G2064"]],[25,26,["G2532"]],[26,27,["G2007"]],[27,28,["G4675"]],[28,29,["G5495"]],[29,30,["G1909"]],[30,31,["G846"]],[31,32,["G2532"]],[32,35,["G2198"]]]},{"k":23398,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G1453"]],[3,5,["G190"]],[5,6,["G846"]],[6,7,["G2532"]],[7,10,["G846"]],[10,11,["G3101"]]]},{"k":23399,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G1135"]],[4,12,["G131"]],[12,13,["G1427"]],[13,14,["G2094"]],[14,15,["G4334"]],[15,16,["G3693"]],[16,19,["G680"]],[19,20,["G3588"]],[20,21,["G2899"]],[21,23,["G846"]],[23,24,["G2440"]]]},{"k":23400,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,4,["G1722"]],[4,5,["G1438"]],[5,6,["G1437"]],[6,9,["G3440"]],[9,10,["G680"]],[10,11,["G846"]],[11,12,["G2440"]],[12,16,["G4982"]]]},{"k":23401,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,5,["G1994"]],[5,6,["G2532"]],[6,9,["G1492"]],[9,10,["G846"]],[10,12,["G2036"]],[12,13,["G2364"]],[13,17,["G2293"]],[17,18,["G4675"]],[18,19,["G4102"]],[19,23,["G4982","G4571"]],[23,24,["G2532"]],[24,25,["G3588"]],[25,26,["G1135"]],[26,29,["G4982"]],[29,30,["G575"]],[30,31,["G1565"]],[31,32,["G5610"]]]},{"k":23402,"v":[[0,1,["G2532"]],[1,3,["G2424"]],[3,4,["G2064"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G758"]],[7,8,["G3614"]],[8,9,["G2532"]],[9,10,["G1492"]],[10,11,["G3588"]],[11,12,["G834"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G3793"]],[15,18,["G2350"]]]},{"k":23403,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,6,["G402"]],[6,7,["G1063"]],[7,8,["G3588"]],[8,9,["G2877"]],[9,12,["G599","G3756"]],[12,13,["G235"]],[13,14,["G2518"]],[14,15,["G2532"]],[15,20,["G2606","G846"]]]},{"k":23404,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,3,["G3588"]],[3,4,["G3793"]],[4,7,["G1544"]],[7,10,["G1525"]],[10,12,["G2902"]],[12,13,["G846"]],[13,15,["G3588"]],[15,16,["G5495"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G2877"]],[19,20,["G1453"]]]},{"k":23405,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5345"]],[3,4,["G3778"]],[4,6,["G1831"]],[6,7,["G1519"]],[7,8,["G3650"]],[8,9,["G1565"]],[9,10,["G1093"]]]},{"k":23406,"v":[[0,1,["G2532"]],[1,3,["G2424"]],[3,4,["G3855"]],[4,5,["G1564"]],[5,6,["G1417"]],[6,8,["G5185"]],[8,9,["G190"]],[9,10,["G846"]],[10,11,["G2896"]],[11,12,["G2532"]],[12,13,["G3004"]],[13,15,["G5207"]],[15,17,["G1138"]],[17,19,["G1653"]],[19,21,["G2248"]]]},{"k":23407,"v":[[0,1,["G1161"]],[1,5,["G2064"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G3614"]],[8,9,["G3588"]],[9,11,["G5185"]],[11,12,["G4334"]],[12,14,["G846"]],[14,15,["G2532"]],[15,16,["G2424"]],[16,17,["G3004"]],[17,19,["G846"]],[19,20,["G4100"]],[20,22,["G3754"]],[22,25,["G1410"]],[25,27,["G4160"]],[27,29,["G5124"]],[29,30,["G3004"]],[30,32,["G846"]],[32,33,["G3483"]],[33,34,["G2962"]]]},{"k":23408,"v":[[0,1,["G5119"]],[1,2,["G680"]],[2,4,["G846"]],[4,5,["G3788"]],[5,6,["G3004"]],[6,7,["G2596"]],[7,9,["G5216"]],[9,10,["G4102"]],[10,12,["G1096"]],[12,14,["G5213"]]]},{"k":23409,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3788"]],[3,5,["G455"]],[5,6,["G2532"]],[6,7,["G2424"]],[7,9,["G1690"]],[9,10,["G846"]],[10,11,["G3004"]],[11,12,["G3708"]],[12,15,["G3367"]],[15,16,["G1097"]],[16,17,[]]]},{"k":23410,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,6,["G1831"]],[6,10,["G1310","G846"]],[10,11,["G1722"]],[11,12,["G3650"]],[12,13,["G1565"]],[13,14,["G1093"]]]},{"k":23411,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,4,["G1831"]],[4,5,["G2400"]],[5,7,["G4374"]],[7,9,["G846"]],[9,11,["G2974"]],[11,12,["G444"]],[12,16,["G1139"]]]},{"k":23412,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G1140"]],[4,7,["G1544"]],[7,8,["G3588"]],[8,9,["G2974"]],[9,10,["G2980"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G3793"]],[13,14,["G2296"]],[14,15,["G3004"]],[15,18,["G3763"]],[18,19,["G3779"]],[19,20,["G5316"]],[20,21,["G1722"]],[21,22,["G2474"]]]},{"k":23413,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,4,["G3004"]],[4,7,["G1544"]],[7,8,["G1140"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G758"]],[11,13,["G3588"]],[13,14,["G1140"]]]},{"k":23414,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,4,["G4013"]],[4,5,["G3956"]],[5,6,["G3588"]],[6,7,["G4172"]],[7,8,["G2532"]],[8,9,["G2968"]],[9,10,["G1321"]],[10,11,["G1722"]],[11,12,["G846"]],[12,13,["G4864"]],[13,14,["G2532"]],[14,15,["G2784"]],[15,16,["G3588"]],[16,17,["G2098"]],[17,19,["G3588"]],[19,20,["G932"]],[20,21,["G2532"]],[21,22,["G2323"]],[22,23,["G3956"]],[23,24,["G3554"]],[24,25,["G2532"]],[25,26,["G3956"]],[26,27,["G3119"]],[27,28,["G1722"]],[28,29,["G3588"]],[29,30,["G2992"]]]},{"k":23415,"v":[[0,1,["G1161"]],[1,4,["G1492"]],[4,5,["G3588"]],[5,6,["G3793"]],[6,11,["G4697"]],[11,12,["G4012"]],[12,13,["G846"]],[13,14,["G3754"]],[14,16,["G2258","G1590"]],[16,17,["G2532"]],[17,20,["G4496"]],[20,21,["G5616"]],[21,22,["G4263"]],[22,23,["G2192"]],[23,24,["G3361"]],[24,25,["G4166"]]]},{"k":23416,"v":[[0,1,["G5119"]],[1,2,["G3004"]],[2,5,["G848"]],[5,6,["G3101"]],[6,7,["G3588"]],[7,8,["G2326"]],[8,9,["G3303"]],[9,11,["G4183"]],[11,12,["G1161"]],[12,13,["G3588"]],[13,14,["G2040"]],[14,16,["G3641"]]]},{"k":23417,"v":[[0,1,["G1189"]],[1,3,["G3767"]],[3,4,["G3588"]],[4,5,["G2962"]],[5,7,["G3588"]],[7,8,["G2326"]],[8,9,["G3704"]],[9,13,["G1544"]],[13,14,["G2040"]],[14,15,["G1519"]],[15,16,["G848"]],[16,17,["G2326"]]]},{"k":23418,"v":[[0,1,["G2532"]],[1,6,["G4341"]],[6,8,["G848"]],[8,9,["G1427"]],[9,10,["G3101"]],[10,12,["G1325"]],[12,13,["G846"]],[13,14,["G1849"]],[14,16,["G169"]],[16,17,["G4151"]],[17,18,["G5620"]],[18,21,["G1544","G846"]],[21,22,["G2532"]],[22,24,["G2323"]],[24,26,["G3956"]],[26,28,["G3554"]],[28,29,["G2532"]],[29,31,["G3956"]],[31,33,["G3119"]]]},{"k":23419,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3686"]],[3,5,["G3588"]],[5,6,["G1427"]],[6,7,["G652"]],[7,8,["G2076"]],[8,9,["G5023"]],[9,11,["G4413"]],[11,12,["G4613"]],[12,15,["G3004"]],[15,16,["G4074"]],[16,17,["G2532"]],[17,18,["G406"]],[18,19,["G846"]],[19,20,["G80"]],[20,21,["G2385"]],[21,22,["G3588"]],[22,25,["G2199"]],[25,26,["G2532"]],[26,27,["G2491"]],[27,28,["G846"]],[28,29,["G80"]]]},{"k":23420,"v":[[0,1,["G5376"]],[1,2,["G2532"]],[2,3,["G918"]],[3,4,["G2381"]],[4,5,["G2532"]],[5,6,["G3156"]],[6,7,["G3588"]],[7,8,["G5057"]],[8,9,["G2385"]],[9,10,["G2385"]],[10,13,["G256"]],[13,14,["G2532"]],[14,15,["G3002"]],[15,18,["G1941"]],[18,19,["G2280"]]]},{"k":23421,"v":[[0,1,["G4613"]],[1,2,["G3588"]],[2,3,["G2581"]],[3,4,["G2532"]],[4,5,["G2455"]],[5,6,["G2469"]],[6,9,["G3860","G2532"]],[9,10,["G846"]]]},{"k":23422,"v":[[0,1,["G5128"]],[1,2,["G1427"]],[2,3,["G2424"]],[3,5,["G649"]],[5,7,["G3853"]],[7,8,["G846"]],[8,9,["G3004"]],[9,10,["G565"]],[10,11,["G3361"]],[11,12,["G1519"]],[12,14,["G3598"]],[14,17,["G1484"]],[17,18,["G2532"]],[18,19,["G1519"]],[19,21,["G4172"]],[21,24,["G4541"]],[24,25,["G1525"]],[25,27,["G3361"]]]},{"k":23423,"v":[[0,1,["G1161"]],[1,2,["G4198"]],[2,3,["G3123"]],[3,4,["G4314"]],[4,6,["G622"]],[6,7,["G4263"]],[7,10,["G3624"]],[10,12,["G2474"]]]},{"k":23424,"v":[[0,1,["G1161"]],[1,4,["G4198"]],[4,5,["G2784"]],[5,6,["G3004"]],[6,7,["G3588"]],[7,8,["G932"]],[8,10,["G3772"]],[10,13,["G1448"]]]},{"k":23425,"v":[[0,1,["G2323"]],[1,3,["G770"]],[3,4,["G2511"]],[4,6,["G3015"]],[6,7,["G1453"]],[7,9,["G3498"]],[9,11,["G1544"]],[11,12,["G1140"]],[12,13,["G1432"]],[13,16,["G2983"]],[16,17,["G1432"]],[17,18,["G1325"]]]},{"k":23426,"v":[[0,1,["G2932"]],[1,2,["G3361"]],[2,3,["G5557"]],[3,4,["G3366"]],[4,5,["G696"]],[5,6,["G3366"]],[6,7,["G5475"]],[7,8,["G1519"]],[8,9,["G5216"]],[9,10,["G2223"]]]},{"k":23427,"v":[[0,1,["G3361"]],[1,2,["G4082"]],[2,3,["G1519"]],[3,5,["G3598"]],[5,6,["G3366"]],[6,7,["G1417"]],[7,8,["G5509"]],[8,9,["G3366"]],[9,10,["G5266"]],[10,11,["G3366"]],[11,13,["G4464"]],[13,14,["G1063"]],[14,15,["G3588"]],[15,16,["G2040"]],[16,17,["G2076"]],[17,18,["G514"]],[18,20,["G848"]],[20,21,["G5160"]]]},{"k":23428,"v":[[0,1,["G1161"]],[1,2,["G1519"]],[2,3,["G3739","G302"]],[3,4,["G4172"]],[4,5,["G2228"]],[5,6,["G2968"]],[6,9,["G1525"]],[9,10,["G1833"]],[10,11,["G5101"]],[11,12,["G1722"]],[12,13,["G846"]],[13,14,["G2076"]],[14,15,["G514"]],[15,17,["G2546"]],[17,18,["G3306"]],[18,20,["G2193","G302"]],[20,21,["G1831"]],[21,22,[]]]},{"k":23429,"v":[[0,1,["G1161"]],[1,4,["G1525"]],[4,5,["G1519"]],[5,7,["G3614"]],[7,8,["G782"]],[8,9,["G846"]]]},{"k":23430,"v":[[0,1,["G2532"]],[1,2,["G1437","(G3303)"]],[2,3,["G3588"]],[3,4,["G3614"]],[4,5,["G5600"]],[5,6,["G514"]],[6,8,["G5216"]],[8,9,["G1515"]],[9,10,["G2064"]],[10,11,["G1909"]],[11,12,["G846"]],[12,13,["G1161"]],[13,17,["G3362","G5600"]],[17,18,["G514"]],[18,20,["G5216"]],[20,21,["G1515"]],[21,22,["G1994"]],[22,23,["G4314"]],[23,24,["G5209"]]]},{"k":23431,"v":[[0,1,["G2532"]],[1,2,["G3739","G1437"]],[2,4,["G3361"]],[4,5,["G1209"]],[5,6,["G5209"]],[6,7,["G3366"]],[7,8,["G191"]],[8,9,["G5216"]],[9,10,["G3056"]],[10,13,["G1831"]],[13,16,["G1565"]],[16,17,["G3614"]],[17,18,["G2228"]],[18,19,["G4172"]],[19,21,["G1621"]],[21,22,["G3588"]],[22,23,["G2868"]],[23,25,["G5216"]],[25,26,["G4228"]]]},{"k":23432,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,8,["G2071"]],[8,10,["G414"]],[10,13,["G1093"]],[13,15,["G4670"]],[15,16,["G2532"]],[16,17,["G1116"]],[17,18,["G1722"]],[18,20,["G2250"]],[20,22,["G2920"]],[22,23,["G2228"]],[23,25,["G1565"]],[25,26,["G4172"]]]},{"k":23433,"v":[[0,1,["G2400"]],[1,2,["G1473"]],[2,5,["G649","G5209"]],[5,6,["G5613"]],[6,7,["G4263"]],[7,8,["G1722"]],[8,10,["G3319"]],[10,12,["G3074"]],[12,13,["G1096"]],[13,15,["G3767"]],[15,16,["G5429"]],[16,17,["G5613"]],[17,18,["G3789"]],[18,19,["G2532"]],[19,20,["G185"]],[20,21,["G5613"]],[21,22,["G4058"]]]},{"k":23434,"v":[[0,1,["G1161"]],[1,2,["G4337"]],[2,3,["G575"]],[3,4,["G444"]],[4,5,["G1063"]],[5,10,["G3860","G5209"]],[10,11,["G1519"]],[11,13,["G4892"]],[13,14,["G2532"]],[14,17,["G3146"]],[17,18,["G5209"]],[18,19,["G1722"]],[19,20,["G848"]],[20,21,["G4864"]]]},{"k":23435,"v":[[0,1,["G2532"]],[1,4,["(G1161)"]],[4,5,["G71"]],[5,6,["G1909"]],[6,7,["G2232"]],[7,8,["G2532"]],[8,9,["G935"]],[9,12,["G1752","G1700"]],[12,13,["G1519"]],[13,15,["G3142"]],[15,17,["G846"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G1484"]]]},{"k":23436,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,6,["G3860","G5209"]],[6,9,["G3309","G3361"]],[9,10,["G4459"]],[10,11,["G2228"]],[11,12,["G5101"]],[12,15,["G2980"]],[15,16,["G1063"]],[16,20,["G1325"]],[20,21,["G5213"]],[21,22,["G1722"]],[22,24,["G1565"]],[24,25,["G5610"]],[25,26,["G5101"]],[26,29,["G2980"]]]},{"k":23437,"v":[[0,1,["G1063"]],[1,3,["G2075"]],[3,4,["G3756"]],[4,5,["G5210"]],[5,7,["G2980"]],[7,8,["G235"]],[8,9,["G3588"]],[9,10,["G4151"]],[10,12,["G5216"]],[12,13,["G3962"]],[13,15,["G2980"]],[15,16,["G1722"]],[16,17,["G5213"]]]},{"k":23438,"v":[[0,1,["G1161"]],[1,3,["G80"]],[3,6,["G3860"]],[6,8,["G80"]],[8,9,["G1519"]],[9,10,["G2288"]],[10,11,["G2532"]],[11,13,["G3962"]],[13,15,["G5043"]],[15,16,["G2532"]],[16,18,["G5043"]],[18,21,["G1881"]],[21,22,["G1909"]],[22,24,["G1118"]],[24,25,["G2532"]],[25,32,["G2289","G846"]]]},{"k":23439,"v":[[0,1,["G2532"]],[1,4,["G2071"]],[4,5,["G3404"]],[5,6,["G5259"]],[6,7,["G3956"]],[7,12,["G1223","G3450","G3686"]],[12,13,["G1161"]],[13,16,["G5278"]],[16,17,["G1519"]],[17,19,["G5056"]],[19,21,["(G3778)"]],[21,22,["G4982"]]]},{"k":23440,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,4,["G1377"]],[4,5,["G5209"]],[5,6,["G1722"]],[6,7,["G5026"]],[7,8,["G4172"]],[8,9,["G5343"]],[9,11,["G1519"]],[11,12,["G243"]],[12,13,["G1063"]],[13,14,["G281"]],[14,16,["G3004"]],[16,18,["G5213"]],[18,21,["G3364"]],[21,24,["G5055"]],[24,25,["G3588"]],[25,26,["G4172"]],[26,28,["G2474"]],[28,29,["G2193","G302"]],[29,30,["G3588"]],[30,31,["G5207"]],[31,33,["G444"]],[33,35,["G2064"]]]},{"k":23441,"v":[[0,2,["G3101"]],[2,3,["G2076"]],[3,4,["G3756"]],[4,5,["G5228"]],[5,7,["G1320"]],[7,8,["G3761"]],[8,10,["G1401"]],[10,11,["G5228"]],[11,12,["G848"]],[12,13,["G2962"]]]},{"k":23442,"v":[[0,3,["G713"]],[3,5,["G3588"]],[5,6,["G3101"]],[6,7,["G2443"]],[7,9,["G1096"]],[9,10,["G5613"]],[10,11,["G846"]],[11,12,["G1320"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G1401"]],[15,16,["G5613"]],[16,17,["G846"]],[17,18,["G2962"]],[18,19,["G1487"]],[19,22,["G2564"]],[22,23,["G3588"]],[23,27,["G3617"]],[27,28,["G954"]],[28,30,["G4214"]],[30,31,["G3123"]],[31,38,["G3615","G846"]]]},{"k":23443,"v":[[0,1,["G5399"]],[1,2,["G846"]],[2,3,["G3361"]],[3,4,["G3767"]],[4,5,["G1063"]],[5,7,["G2076"]],[7,8,["G3762"]],[8,9,["G2572"]],[9,10,["G3739"]],[10,12,["G3756"]],[12,14,["G601"]],[14,15,["G2532"]],[15,16,["G2927"]],[16,17,["G3739"]],[17,19,["G3756"]],[19,21,["G1097"]]]},{"k":23444,"v":[[0,1,["G3739"]],[1,3,["G3004"]],[3,4,["G5213"]],[4,5,["G1722"]],[5,6,["G4653"]],[6,8,["G2036"]],[8,10,["G1722"]],[10,11,["G5457"]],[11,12,["G2532"]],[12,13,["G3739"]],[13,15,["G191"]],[15,16,["G1519"]],[16,17,["G3588"]],[17,18,["G3775"]],[18,20,["G2784"]],[20,22,["G1909"]],[22,23,["G3588"]],[23,24,["G1430"]]]},{"k":23445,"v":[[0,1,["G2532"]],[1,2,["G5399"]],[2,3,["G3361","(G575)"]],[3,6,["G615"]],[6,7,["G3588"]],[7,8,["G4983"]],[8,9,["G1161"]],[9,11,["G3361"]],[11,12,["G1410"]],[12,14,["G615"]],[14,15,["G3588"]],[15,16,["G5590"]],[16,17,["G1161"]],[17,18,["G3123"]],[18,19,["G5399"]],[19,23,["G1410"]],[23,25,["G622"]],[25,26,["G2532"]],[26,27,["G5590"]],[27,28,["G2532"]],[28,29,["G4983"]],[29,30,["G1722"]],[30,31,["G1067"]]]},{"k":23446,"v":[[0,2,["G3780"]],[2,3,["G1417"]],[3,4,["G4765"]],[4,5,["G4453"]],[5,8,["G787"]],[8,9,["G2532"]],[9,10,["G1520"]],[10,11,["G1537"]],[11,12,["G846"]],[12,14,["G3756"]],[14,15,["G4098"]],[15,16,["G1909"]],[16,17,["G3588"]],[17,18,["G1093"]],[18,19,["G427"]],[19,20,["G5216"]],[20,21,["G3962"]]]},{"k":23447,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2532"]],[3,4,["G2359"]],[4,6,["G5216"]],[6,7,["G2776"]],[7,8,["G1526"]],[8,9,["G3956"]],[9,10,["G705"]]]},{"k":23448,"v":[[0,1,["G5399"]],[1,3,["G3361"]],[3,4,["G3767"]],[4,5,["G5210"]],[5,9,["G1308"]],[9,11,["G4183"]],[11,12,["G4765"]]]},{"k":23449,"v":[[0,1,["G3956","G3748"]],[1,2,["G3767"]],[2,4,["G3670","(G1722)"]],[4,5,["G1698"]],[5,6,["G1715"]],[6,7,["G444","(G1722)"]],[7,8,["G846"]],[8,12,["G2504","G3670"]],[12,13,["G1715"]],[13,14,["G3450"]],[14,15,["G3962"]],[15,16,["G3588"]],[16,18,["G1722"]],[18,19,["G3772"]]]},{"k":23450,"v":[[0,1,["G1161"]],[1,2,["G3748","G302"]],[2,4,["G720"]],[4,5,["G3165"]],[5,6,["G1715"]],[6,7,["G444"]],[7,8,["G846"]],[8,11,["G2504"]],[11,12,["G720"]],[12,13,["G1715"]],[13,14,["G3450"]],[14,15,["G3962"]],[15,16,["G3588"]],[16,18,["G1722"]],[18,19,["G3772"]]]},{"k":23451,"v":[[0,1,["G3543"]],[1,2,["G3361"]],[2,3,["G3754"]],[3,6,["G2064"]],[6,8,["G906"]],[8,9,["G1515"]],[9,10,["G1909"]],[10,11,["G1093"]],[11,13,["G2064"]],[13,14,["G3756"]],[14,16,["G906"]],[16,17,["G1515"]],[17,18,["G235"]],[18,20,["G3162"]]]},{"k":23452,"v":[[0,1,["G1063"]],[1,4,["G2064"]],[4,10,["G1369","G444"]],[10,11,["G2596"]],[11,12,["G848"]],[12,13,["G3962"]],[13,14,["G2532"]],[14,16,["G2364"]],[16,17,["G2596"]],[17,18,["G848"]],[18,19,["G3384"]],[19,20,["G2532"]],[20,24,["G3565"]],[24,25,["G2596"]],[25,26,["G848"]],[26,29,["G3994"]]]},{"k":23453,"v":[[0,1,["G2532"]],[1,3,["G444"]],[3,4,["G2190"]],[4,11,["G3615","G846"]]]},{"k":23454,"v":[[0,3,["G5368"]],[3,4,["G3962"]],[4,5,["G2228"]],[5,6,["G3384"]],[6,7,["G5228"]],[7,9,["G1691"]],[9,10,["G2076"]],[10,11,["G3756"]],[11,12,["G514"]],[12,14,["G3450"]],[14,15,["G2532"]],[15,18,["G5368"]],[18,19,["G5207"]],[19,20,["G2228"]],[20,21,["G2364"]],[21,22,["G5228"]],[22,24,["G1691"]],[24,25,["G2076"]],[25,26,["G3756"]],[26,27,["G514"]],[27,29,["G3450"]]]},{"k":23455,"v":[[0,1,["G2532"]],[1,2,["G3739"]],[2,4,["G2983"]],[4,5,["G3756"]],[5,6,["G848"]],[6,7,["G4716"]],[7,8,["G2532"]],[8,9,["G190"]],[9,10,["G3694"]],[10,11,["G3450"]],[11,12,["G2076"]],[12,13,["G3756"]],[13,14,["G514"]],[14,16,["G3450"]]]},{"k":23456,"v":[[0,3,["G2147"]],[3,4,["G848"]],[4,5,["G5590"]],[5,7,["G622"]],[7,8,["G846"]],[8,9,["G2532"]],[9,12,["G622"]],[12,13,["G848"]],[13,14,["G5590"]],[14,17,["G1752","G1700"]],[17,19,["G2147"]],[19,20,["G846"]]]},{"k":23457,"v":[[0,3,["G1209"]],[3,4,["G5209"]],[4,5,["G1209"]],[5,6,["G1691"]],[6,7,["G2532"]],[7,10,["G1209"]],[10,11,["G1691"]],[11,12,["G1209"]],[12,15,["G649"]],[15,16,["G3165"]]]},{"k":23458,"v":[[0,3,["G1209"]],[3,5,["G4396"]],[5,6,["G1519"]],[6,8,["G3686"]],[8,11,["G4396"]],[11,13,["G2983"]],[13,15,["G4396"]],[15,16,["G3408"]],[16,17,["G2532"]],[17,20,["G1209"]],[20,23,["G1342"]],[23,24,["G1519"]],[24,26,["G3686"]],[26,30,["G1342"]],[30,32,["G2983"]],[32,35,["G1342"]],[35,36,["G3408"]]]},{"k":23459,"v":[[0,1,["G2532"]],[1,2,["G3739","G1437"]],[2,6,["G4222"]],[6,8,["G1520"]],[8,10,["G5130"]],[10,12,["G3398"]],[12,14,["G4221"]],[14,16,["G5593"]],[16,18,["G3440"]],[18,19,["G1519"]],[19,21,["G3686"]],[21,24,["G3101"]],[24,25,["G281"]],[25,27,["G3004"]],[27,29,["G5213"]],[29,34,["G3364"]],[34,35,["G622"]],[35,36,["G848"]],[36,37,["G3408"]]]},{"k":23460,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,6,["G3753"]],[6,7,["G2424"]],[7,11,["G5055"]],[11,13,["G1299"]],[13,14,["G848"]],[14,15,["G1427"]],[15,16,["G3101"]],[16,18,["G3327"]],[18,19,["G1564"]],[19,21,["G1321"]],[21,22,["G2532"]],[22,24,["G2784"]],[24,25,["G1722"]],[25,26,["G846"]],[26,27,["G4172"]]]},{"k":23461,"v":[[0,1,["G1161"]],[1,3,["G2491"]],[3,5,["G191"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G1201"]],[8,9,["G3588"]],[9,10,["G2041"]],[10,12,["G5547"]],[12,14,["G3992"]],[14,15,["G1417"]],[15,17,["G848"]],[17,18,["G3101"]]]},{"k":23462,"v":[[0,2,["G2036"]],[2,4,["G846"]],[4,5,["G1488"]],[5,6,["G4771"]],[6,10,["G2064"]],[10,11,["G2228"]],[11,14,["G4328"]],[14,16,["G2087"]]]},{"k":23463,"v":[[0,0,["(G2532)"]],[0,1,["G2424"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G846"]],[6,7,["G4198"]],[7,11,["G518","G2491"]],[11,13,["G3739"]],[13,17,["G191"]],[17,18,["G2532"]],[18,19,["G991"]]]},{"k":23464,"v":[[0,2,["G5185"]],[2,5,["G308"]],[5,6,["G2532"]],[6,8,["G5560"]],[8,9,["G4043"]],[9,11,["G3015"]],[11,13,["G2511"]],[13,14,["G2532"]],[14,16,["G2974"]],[16,17,["G191"]],[17,19,["G3498"]],[19,22,["G1453"]],[22,23,["G2532"]],[23,25,["G4434"]],[25,31,["G2097"]]]},{"k":23465,"v":[[0,1,["G2532"]],[1,2,["G3107"]],[2,3,["G2076"]],[3,5,["G3739","G1437"]],[5,7,["G3361"]],[7,9,["G4624"]],[9,10,["G1722"]],[10,11,["G1698"]]]},{"k":23466,"v":[[0,1,["G1161"]],[1,3,["G5130"]],[3,4,["G4198"]],[4,5,["G2424"]],[5,6,["G756"]],[6,8,["G3004"]],[8,10,["G3588"]],[10,11,["G3793"]],[11,12,["G4012"]],[12,13,["G2491"]],[13,14,["G5101"]],[14,17,["G1831"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G2048"]],[20,22,["G2300"]],[22,24,["G2563"]],[24,25,["G4531"]],[25,26,["G5259"]],[26,28,["G417"]]]},{"k":23467,"v":[[0,1,["G235"]],[1,2,["G5101"]],[2,5,["G1831"]],[5,8,["G1492"]],[8,10,["G444"]],[10,11,["G294"]],[11,12,["G1722"]],[12,13,["G3120"]],[13,14,["G2440"]],[14,15,["G2400"]],[15,18,["G5409"]],[18,19,["G3120"]],[19,21,["G1526"]],[21,22,["G1722"]],[22,23,["G935"]],[23,24,["G3624"]]]},{"k":23468,"v":[[0,1,["G235"]],[1,2,["G5101"]],[2,5,["G1831"]],[5,8,["G1492"]],[8,10,["G4396"]],[10,11,["G3483"]],[11,13,["G3004"]],[13,15,["G5213"]],[15,16,["G2532"]],[16,17,["G4055"]],[17,20,["G4396"]]]},{"k":23469,"v":[[0,1,["G1063"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,5,["G4012"]],[5,6,["G3739"]],[6,9,["G1125"]],[9,10,["G2400"]],[10,11,["G1473"]],[11,12,["G649"]],[12,13,["G3450"]],[13,14,["G32"]],[14,15,["G4253"]],[15,16,["G4675"]],[16,17,["G4383"]],[17,18,["G3739"]],[18,20,["G2680"]],[20,21,["G4675"]],[21,22,["G3598"]],[22,23,["G1715"]],[23,24,["G4675"]]]},{"k":23470,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G1722"]],[6,10,["G1084"]],[10,12,["G1135"]],[12,15,["G3756"]],[15,16,["G1453"]],[16,18,["G3187"]],[18,20,["G2491"]],[20,21,["G3588"]],[21,22,["G910"]],[22,23,["G1161"]],[23,27,["G3398"]],[27,28,["G1722"]],[28,29,["G3588"]],[29,30,["G932"]],[30,32,["G3772"]],[32,33,["G2076"]],[33,34,["G3187"]],[34,36,["G846"]]]},{"k":23471,"v":[[0,1,["G1161"]],[1,2,["G575"]],[2,3,["G3588"]],[3,4,["G2250"]],[4,6,["G2491"]],[6,7,["G3588"]],[7,8,["G910"]],[8,9,["G2193"]],[9,10,["G737"]],[10,11,["G3588"]],[11,12,["G932"]],[12,14,["G3772"]],[14,16,["G971"]],[16,17,["G2532"]],[17,19,["G973"]],[19,23,["G726","G846"]]]},{"k":23472,"v":[[0,1,["G1063"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G4396"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G3551"]],[7,8,["G4395"]],[8,9,["G2193"]],[9,10,["G2491"]]]},{"k":23473,"v":[[0,1,["G2532"]],[1,2,["G1487"]],[2,4,["G2309"]],[4,5,["G1209"]],[5,7,["G846"]],[7,8,["G2076"]],[8,9,["G2243"]],[9,11,["G3195"]],[11,14,["G2064"]]]},{"k":23474,"v":[[0,3,["G2192"]],[3,4,["G3775"]],[4,6,["G191"]],[6,9,["G191"]]]},{"k":23475,"v":[[0,1,["G1161"]],[1,2,["G5101"]],[2,5,["G3666"]],[5,6,["G5026"]],[6,7,["G1074"]],[7,9,["G2076"]],[9,11,["G3664"]],[11,12,["G3808"]],[12,13,["G2521"]],[13,14,["G1722"]],[14,16,["G58"]],[16,17,["G2532"]],[17,18,["G4377"]],[18,20,["G848"]],[20,21,["G2083"]]]},{"k":23476,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,5,["G832"]],[5,7,["G5213"]],[7,8,["G2532"]],[8,11,["G3756"]],[11,12,["G3738"]],[12,15,["G2354"]],[15,17,["G5213"]],[17,18,["G2532"]],[18,21,["G3756"]],[21,22,["G2875"]]]},{"k":23477,"v":[[0,1,["G1063"]],[1,2,["G2491"]],[2,3,["G2064"]],[3,4,["G3383"]],[4,5,["G2068"]],[5,6,["G3383"]],[6,7,["G4095"]],[7,8,["G2532"]],[8,10,["G3004"]],[10,12,["G2192"]],[12,14,["G1140"]]]},{"k":23478,"v":[[0,1,["G3588"]],[1,2,["G5207"]],[2,4,["G444"]],[4,5,["G2064"]],[5,6,["G2068"]],[6,7,["G2532"]],[7,8,["G4095"]],[8,9,["G2532"]],[9,11,["G3004"]],[11,12,["G2400"]],[12,14,["G444"]],[14,15,["G5314"]],[15,16,["G2532"]],[16,18,["G3630"]],[18,20,["G5384"]],[20,22,["G5057"]],[22,23,["G2532"]],[23,24,["G268"]],[24,25,["G2532"]],[25,26,["G4678"]],[26,28,["G1344"]],[28,29,["G575"]],[29,30,["G848"]],[30,31,["G5043"]]]},{"k":23479,"v":[[0,1,["G5119"]],[1,2,["G756"]],[2,5,["G3679"]],[5,6,["G3588"]],[6,7,["G4172"]],[7,8,["G1722","G3739"]],[8,9,["G4118"]],[9,11,["G846"]],[11,13,["G1411"]],[13,15,["G1096"]],[15,16,["G3754"]],[16,18,["G3340"]],[18,19,["G3756"]]]},{"k":23480,"v":[[0,1,["G3759"]],[1,3,["G4671"]],[3,4,["G5523"]],[4,5,["G3759"]],[5,7,["G4671"]],[7,8,["G966"]],[8,9,["G3754"]],[9,10,["G1487"]],[10,11,["G3588"]],[11,13,["G1411"]],[13,16,["G1096"]],[16,17,["G1722"]],[17,18,["G5213"]],[18,21,["G1096"]],[21,22,["G1722"]],[22,23,["G5184"]],[23,24,["G2532"]],[24,25,["G4605"]],[25,29,["G3340"]],[29,31,["G3819"]],[31,32,["G1722"]],[32,33,["G4526"]],[33,34,["G2532"]],[34,35,["G4700"]]]},{"k":23481,"v":[[0,1,["G4133"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,8,["G2071"]],[8,10,["G414"]],[10,12,["G5184"]],[12,13,["G2532"]],[13,14,["G4605"]],[14,15,["G1722"]],[15,17,["G2250"]],[17,19,["G2920"]],[19,20,["G2228"]],[20,22,["G5213"]]]},{"k":23482,"v":[[0,1,["G2532"]],[1,2,["G4771"]],[2,3,["G2584"]],[3,6,["G5312"]],[6,7,["G2193"]],[7,8,["G3772"]],[8,12,["G2601"]],[12,13,["G2193"]],[13,14,["G86"]],[14,15,["G3754"]],[15,16,["G1487"]],[16,17,["G3588"]],[17,19,["G1411"]],[19,23,["G1096"]],[23,24,["G1722"]],[24,25,["G4671"]],[25,28,["G1096"]],[28,29,["G1722"]],[29,30,["G4670"]],[30,34,["G3306"]],[34,35,["G3360"]],[35,37,["G4594"]]]},{"k":23483,"v":[[0,1,["G4133"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,9,["G2071"]],[9,11,["G414"]],[11,14,["G1093"]],[14,16,["G4670"]],[16,17,["G1722"]],[17,19,["G2250"]],[19,21,["G2920"]],[21,22,["G2228"]],[22,24,["G4671"]]]},{"k":23484,"v":[[0,1,["G1722"]],[1,2,["G1565"]],[2,3,["G2540"]],[3,4,["G2424"]],[4,5,["G611"]],[5,7,["G2036"]],[7,9,["G1843"]],[9,10,["G4671"]],[10,12,["G3962"]],[12,13,["G2962"]],[13,15,["G3772"]],[15,16,["G2532"]],[16,17,["G1093"]],[17,18,["G3754"]],[18,21,["G613"]],[21,23,["G5023"]],[23,24,["G575"]],[24,26,["G4680"]],[26,27,["G2532"]],[27,28,["G4908"]],[28,29,["G2532"]],[29,31,["G601"]],[31,32,["G846"]],[32,34,["G3516"]]]},{"k":23485,"v":[[0,2,["G3483"]],[2,3,["G3962"]],[3,4,["G3754"]],[4,5,["G3779"]],[5,7,["G1096"]],[7,8,["G2107"]],[8,11,["G1715","G4675"]]]},{"k":23486,"v":[[0,2,["G3956"]],[2,4,["G3860"]],[4,6,["G3427"]],[6,7,["G5259"]],[7,8,["G3450"]],[8,9,["G3962"]],[9,10,["G2532"]],[10,12,["G3762"]],[12,13,["G1921"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,16,["G1508"]],[16,17,["G3588"]],[17,18,["G3962"]],[18,19,["G3761"]],[19,20,["G1921"]],[20,22,["G5100"]],[22,23,["G3588"]],[23,24,["G3962"]],[24,25,["G1508"]],[25,26,["G3588"]],[26,27,["G5207"]],[27,28,["G2532"]],[28,31,["G3739","G1437"]],[31,32,["G3588"]],[32,33,["G5207"]],[33,34,["G1014"]],[34,35,["G601"]],[35,36,[]]]},{"k":23487,"v":[[0,1,["G1205"]],[1,2,["G4314"]],[2,3,["G3165"]],[3,4,["G3956"]],[4,7,["G2872"]],[7,8,["G2532"]],[8,11,["G5412"]],[11,13,["G2504"]],[13,17,["G373","G5209"]]]},{"k":23488,"v":[[0,1,["G142"]],[1,2,["G3450"]],[2,3,["G2218"]],[3,4,["G1909"]],[4,5,["G5209"]],[5,6,["G2532"]],[6,7,["G3129"]],[7,8,["G575"]],[8,9,["G1700"]],[9,10,["G3754"]],[10,12,["G1510"]],[12,13,["G4235"]],[13,14,["G2532"]],[14,15,["G5011"]],[15,17,["G2588"]],[17,18,["G2532"]],[18,21,["G2147"]],[21,22,["G372"]],[22,24,["G5216"]],[24,25,["G5590"]]]},{"k":23489,"v":[[0,1,["G1063"]],[1,2,["G3450"]],[2,3,["G2218"]],[3,5,["G5543"]],[5,6,["G2532"]],[6,7,["G3450"]],[7,8,["G5413"]],[8,9,["G2076"]],[9,10,["G1645"]]]},{"k":23490,"v":[[0,1,["G1722"]],[1,2,["G1565"]],[2,3,["G2540"]],[3,4,["G2424"]],[4,5,["G4198"]],[5,7,["G3588"]],[7,9,["G4521"]],[9,10,["G1223"]],[10,11,["G3588"]],[11,12,["G4702"]],[12,13,["G2532"]],[13,14,["G846"]],[14,15,["G3101"]],[15,18,["G3983"]],[18,19,["G2532"]],[19,20,["G756"]],[20,22,["G5089"]],[22,26,["G4719"]],[26,27,["G2532"]],[27,29,["G2068"]]]},{"k":23491,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G5330"]],[4,5,["G1492"]],[5,8,["G2036"]],[8,10,["G846"]],[10,11,["G2400"]],[11,12,["G4675"]],[12,13,["G3101"]],[13,14,["G4160"]],[14,16,["G3739"]],[16,19,["G1832","G3756"]],[19,21,["G4160"]],[21,22,["G1722"]],[22,25,["G4521"]]]},{"k":23492,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,8,["G3756"]],[8,9,["G314"]],[9,10,["G5101"]],[10,11,["G1138"]],[11,12,["G4160"]],[12,13,["G3753"]],[13,14,["G846"]],[14,17,["G3983"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,22,["G3326"]],[22,23,["G846"]]]},{"k":23493,"v":[[0,1,["G4459"]],[1,3,["G1525"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G3624"]],[6,8,["G2316"]],[8,9,["G2532"]],[9,11,["G5315"]],[11,12,["G3588"]],[12,13,["G740","G4286"]],[13,14,["G3739"]],[14,15,["G2258"]],[15,16,["G3756"]],[16,17,["G1832"]],[17,19,["G846"]],[19,21,["G5315"]],[21,22,["G3761"]],[22,24,["G3588"]],[24,27,["G3326"]],[27,28,["G846"]],[28,29,["G1508"]],[29,30,["G3441"]],[30,32,["G3588"]],[32,33,["G2409"]]]},{"k":23494,"v":[[0,1,["G2228"]],[1,4,["G3756"]],[4,5,["G314"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G3551"]],[8,9,["G3754"]],[9,12,["G3588"]],[12,14,["G4521"]],[14,15,["G3588"]],[15,16,["G2409"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G2411"]],[19,20,["G953"]],[20,21,["G3588"]],[21,22,["G4521"]],[22,23,["G2532"]],[23,24,["G1526"]],[24,25,["G338"]]]},{"k":23495,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,9,["G5602"]],[9,10,["G2076"]],[10,12,["G3187"]],[12,14,["G3588"]],[14,15,["G2411"]]]},{"k":23496,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,5,["G1097"]],[5,6,["G5101"]],[6,8,["G2076"]],[8,10,["G2309"]],[10,12,["G1656"]],[12,13,["G2532"]],[13,14,["G3756"]],[14,15,["G2378"]],[15,18,["G3756"]],[18,20,["G2613"]],[20,21,["G3588"]],[21,22,["G338"]]]},{"k":23497,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G444"]],[5,6,["G2076"]],[6,7,["G2962"]],[7,8,["G2532"]],[8,10,["G3588"]],[10,12,["G4521"]]]},{"k":23498,"v":[[0,1,["G2532"]],[1,5,["G3327"]],[5,6,["G1564"]],[6,8,["G2064"]],[8,9,["G1519"]],[9,10,["G846"]],[10,11,["G4864"]]]},{"k":23499,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G2258"]],[4,6,["G444"]],[6,8,["G2192"]],[8,10,["G5495"]],[10,11,["G3584"]],[11,12,["G2532"]],[12,14,["G1905"]],[14,15,["G846"]],[15,16,["G3004","(G1487)"]],[16,19,["G1832"]],[19,21,["G2323"]],[21,23,["G3588"]],[23,25,["G4521"]],[25,26,["G2443"]],[26,29,["G2723"]],[29,30,["G846"]]]},{"k":23500,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G5101"]],[6,7,["G444"]],[7,10,["G2071"]],[10,11,["G1537"]],[11,12,["G5216"]],[12,13,["G3739"]],[13,15,["G2192"]],[15,16,["G1520"]],[16,17,["G4263"]],[17,18,["G2532"]],[18,19,["G1437"]],[19,20,["G5124"]],[20,21,["G1706"]],[21,22,["G1519"]],[22,24,["G999"]],[24,26,["G3588"]],[26,28,["G4521"]],[28,31,["G3780"]],[31,33,["G2902"]],[33,35,["G846"]],[35,36,["G2532"]],[36,39,["G1453"]]]},{"k":23501,"v":[[0,2,["G4214"]],[2,3,["G3767"]],[3,7,["G1308","G444"]],[7,10,["G4263"]],[10,11,["G5620"]],[11,14,["G1832"]],[14,16,["G4160"]],[16,17,["G2573"]],[17,19,["G3588"]],[19,21,["G4521"]]]},{"k":23502,"v":[[0,1,["G5119"]],[1,2,["G3004"]],[2,5,["G3588"]],[5,6,["G444"]],[6,8,["G1614"]],[8,9,["G4675"]],[9,10,["G5495"]],[10,11,["G2532"]],[11,15,["G1614"]],[15,16,["G2532"]],[16,19,["G600"]],[19,20,["G5199"]],[20,22,["G5613"]],[22,23,["G3588"]],[23,24,["G243"]]]},{"k":23503,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,5,["G1831"]],[5,7,["G2983"]],[7,9,["G4824"]],[9,10,["G2596"]],[10,11,["G846"]],[11,12,["G3704"]],[12,15,["G622"]],[15,16,["G846"]]]},{"k":23504,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,4,["G1097"]],[4,7,["G402"]],[7,10,["G1564"]],[10,11,["G2532"]],[11,12,["G4183"]],[12,13,["G3793"]],[13,14,["G190"]],[14,15,["G846"]],[15,16,["G2532"]],[16,18,["G2323"]],[18,19,["G846"]],[19,20,["G3956"]]]},{"k":23505,"v":[[0,1,["G2532"]],[1,2,["G2008"]],[2,3,["G846"]],[3,4,["G2443"]],[4,7,["G3361"]],[7,8,["G4160"]],[8,9,["G846"]],[9,10,["G5318"]]]},{"k":23506,"v":[[0,1,["G3704"]],[1,5,["G4137"]],[5,8,["G4483"]],[8,9,["G1223"]],[9,10,["G2268"]],[10,11,["G3588"]],[11,12,["G4396"]],[12,13,["G3004"]]]},{"k":23507,"v":[[0,1,["G2400"]],[1,2,["G3450"]],[2,3,["G3816"]],[3,4,["G3739"]],[4,7,["G140"]],[7,8,["G3450"]],[8,9,["G27"]],[9,10,["G1519"]],[10,11,["G3739"]],[11,12,["G1519"]],[12,13,["G5590"]],[13,16,["G2106"]],[16,19,["G5087"]],[19,20,["G3450"]],[20,21,["G4151"]],[21,22,["G1909"]],[22,23,["G846"]],[23,24,["G2532"]],[24,27,["G518"]],[27,28,["G2920"]],[28,30,["G3588"]],[30,31,["G1484"]]]},{"k":23508,"v":[[0,3,["G3756"]],[3,4,["G2051"]],[4,5,["G3761"]],[5,6,["G2905"]],[6,7,["G3761"]],[7,10,["G5100"]],[10,11,["G191"]],[11,12,["G846"]],[12,13,["G5456"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G4113"]]]},{"k":23509,"v":[[0,2,["G4937"]],[2,3,["G2563"]],[3,6,["G3756"]],[6,7,["G2608"]],[7,8,["G2532"]],[8,9,["G5188"]],[9,10,["G3043"]],[10,13,["G3756"]],[13,14,["G4570"]],[14,15,["G2193","G302"]],[15,18,["G1544"]],[18,19,["G2920"]],[19,20,["G1519"]],[20,21,["G3534"]]]},{"k":23510,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G846"]],[3,4,["G3686"]],[4,7,["G1484"]],[7,8,["G1679"]]]},{"k":23511,"v":[[0,1,["G5119"]],[1,3,["G4374"]],[3,5,["G846"]],[5,10,["G1139"]],[10,11,["G5185"]],[11,12,["G2532"]],[12,13,["G2974"]],[13,14,["G2532"]],[14,16,["G2323"]],[16,17,["G846"]],[17,19,["G5620"]],[19,20,["G3588"]],[20,21,["G5185"]],[21,22,["G2532"]],[22,23,["G2974"]],[23,24,["G2532"]],[24,25,["G2980"]],[25,26,["G2532"]],[26,27,["G991"]]]},{"k":23512,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G3793"]],[4,6,["G1839"]],[6,7,["G2532"]],[7,8,["G3004"]],[8,9,["G2076"]],[9,10,["G3385"]],[10,11,["G3778"]],[11,12,["G3588"]],[12,13,["G5207"]],[13,15,["G1138"]]]},{"k":23513,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G5330"]],[4,5,["G191"]],[5,8,["G2036"]],[8,9,["G3778"]],[9,12,["G3756"]],[12,14,["G1544"]],[14,15,["G1140"]],[15,16,["G1508"]],[16,17,["G1722"]],[17,18,["G954"]],[18,20,["G758"]],[20,22,["G3588"]],[22,23,["G1140"]]]},{"k":23514,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G1492"]],[3,4,["G846"]],[4,5,["G1761"]],[5,7,["G2036"]],[7,9,["G846"]],[9,10,["G3956"]],[10,11,["G932"]],[11,12,["G3307"]],[12,13,["G2596"]],[13,14,["G1438"]],[14,18,["G2049"]],[18,19,["G2532"]],[19,20,["G3956"]],[20,21,["G4172"]],[21,22,["G2228"]],[22,23,["G3614"]],[23,24,["G3307"]],[24,25,["G2596"]],[25,26,["G1438"]],[26,28,["G3756"]],[28,29,["G2476"]]]},{"k":23515,"v":[[0,1,["G2532"]],[1,2,["G1487"]],[2,3,["G4567"]],[3,5,["G1544"]],[5,6,["G4567"]],[6,9,["G3307"]],[9,10,["G1909"]],[10,11,["G1438"]],[11,12,["G4459"]],[12,14,["G3767"]],[14,15,["G846"]],[15,16,["G932"]],[16,17,["G2476"]]]},{"k":23516,"v":[[0,1,["G2532"]],[1,2,["G1487"]],[2,3,["G1473"]],[3,4,["G1722"]],[4,5,["G954"]],[5,7,["G1544"]],[7,8,["G1140"]],[8,9,["G1722"]],[9,10,["G5101"]],[10,12,["G5216"]],[12,13,["G5207"]],[13,16,["G1544"]],[16,17,["G1223","G5124"]],[17,18,["G846"]],[18,20,["G2071"]],[20,21,["G5216"]],[21,22,["G2923"]]]},{"k":23517,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G1473"]],[3,5,["G1544"]],[5,6,["G1140"]],[6,7,["G1722"]],[7,9,["G4151"]],[9,11,["G2316"]],[11,12,["G686"]],[12,13,["G3588"]],[13,14,["G932"]],[14,16,["G2316"]],[16,18,["G5348"]],[18,19,["G1909"]],[19,20,["G5209"]]]},{"k":23518,"v":[[0,2,["G2228"]],[2,3,["G4459"]],[3,4,["G1410"]],[4,5,["G5100"]],[5,6,["G1525"]],[6,7,["G1519"]],[7,10,["G2478"]],[10,11,["G3614"]],[11,12,["G2532"]],[12,13,["G1283"]],[13,14,["G846"]],[14,15,["G4632"]],[15,16,["G3362"]],[16,18,["G4412"]],[18,19,["G1210"]],[19,20,["G3588"]],[20,22,["G2478"]],[22,23,["G2532"]],[23,24,["G5119"]],[24,27,["G1283"]],[27,28,["G846"]],[28,29,["G3614"]]]},{"k":23519,"v":[[0,3,["G5607"]],[3,4,["G3361"]],[4,5,["G3326"]],[5,6,["G1700"]],[6,7,["G2076"]],[7,8,["G2596"]],[8,9,["G1700"]],[9,10,["G2532"]],[10,13,["G4863"]],[13,14,["G3361"]],[14,15,["G3326"]],[15,16,["G1700"]],[16,18,["G4650"]]]},{"k":23520,"v":[[0,1,["G1223","G5124"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,7,["G3956"]],[7,9,["G266"]],[9,10,["G2532"]],[10,11,["G988"]],[11,14,["G863"]],[14,16,["G444"]],[16,17,["G1161"]],[17,18,["G3588"]],[18,19,["G988"]],[19,21,["G3588"]],[21,23,["G4151"]],[23,25,["G3756"]],[25,27,["G863"]],[27,29,["G444"]]]},{"k":23521,"v":[[0,1,["G2532"]],[1,2,["G3739","G302"]],[2,3,["G2036"]],[3,5,["G3056"]],[5,6,["G2596"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G444"]],[10,14,["G863"]],[14,15,["G846"]],[15,16,["G1161"]],[16,17,["G3739","G302"]],[17,18,["G2036"]],[18,19,["G2596"]],[19,20,["G3588"]],[20,21,["G40"]],[21,22,["G4151"]],[22,25,["G3756"]],[25,27,["G863"]],[27,28,["G846"]],[28,29,["G3777"]],[29,30,["G1722"]],[30,31,["G5129"]],[31,32,["G165"]],[32,33,["G3777"]],[33,34,["G1722"]],[34,35,["G3588"]],[35,38,["G3195"]]]},{"k":23522,"v":[[0,1,["G2228"]],[1,2,["G4160"]],[2,3,["G3588"]],[3,4,["G1186"]],[4,5,["G2570"]],[5,6,["G2532"]],[6,7,["G846"]],[7,8,["G2590"]],[8,9,["G2570"]],[9,11,["G2228"]],[11,12,["G4160"]],[12,13,["G3588"]],[13,14,["G1186"]],[14,15,["G4550"]],[15,16,["G2532"]],[16,17,["G846"]],[17,18,["G2590"]],[18,19,["G4550"]],[19,20,["G1063"]],[20,21,["G3588"]],[21,22,["G1186"]],[22,24,["G1097"]],[24,25,["G1537"]],[25,27,["G2590"]]]},{"k":23523,"v":[[0,2,["G1081"]],[2,4,["G2191"]],[4,5,["G4459"]],[5,6,["G1410"]],[6,8,["G5607"]],[8,9,["G4190"]],[9,10,["G2980"]],[10,12,["G18"]],[12,13,["G1063"]],[13,14,["G1537"]],[14,16,["G3588"]],[16,17,["G4051"]],[17,19,["G3588"]],[19,20,["G2588"]],[20,21,["G3588"]],[21,22,["G4750"]],[22,23,["G2980"]]]},{"k":23524,"v":[[0,2,["G18"]],[2,3,["G444"]],[3,4,["G1537"]],[4,6,["G3588"]],[6,7,["G18"]],[7,8,["G2344"]],[8,10,["G3588"]],[10,11,["G2588"]],[11,13,["G1544"]],[13,15,["G18"]],[15,16,["G2532"]],[16,18,["G4190"]],[18,19,["G444"]],[19,21,["G1537"]],[21,22,["G3588"]],[22,23,["G4190"]],[23,24,["G2344"]],[24,26,["G1544"]],[26,28,["G4190"]]]},{"k":23525,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G3956"]],[7,8,["G692"]],[8,9,["G4487"]],[9,10,["G3739","G1437"]],[10,11,["G444"]],[11,13,["G2980"]],[13,16,["G591"]],[16,17,["G3056"]],[17,18,["G4012","G846"]],[18,19,["G1722"]],[19,21,["G2250"]],[21,23,["G2920"]]]},{"k":23526,"v":[[0,1,["G1063"]],[1,2,["G1537"]],[2,3,["G4675"]],[3,4,["G3056"]],[4,8,["G1344"]],[8,9,["G2532"]],[9,10,["G1537"]],[10,11,["G4675"]],[11,12,["G3056"]],[12,16,["G2613"]]]},{"k":23527,"v":[[0,1,["G5119"]],[1,2,["G5100"]],[2,4,["G3588"]],[4,5,["G1122"]],[5,6,["G2532"]],[6,9,["G5330"]],[9,10,["G611"]],[10,11,["G3004"]],[11,12,["G1320"]],[12,14,["G2309"]],[14,15,["G1492"]],[15,17,["G4592"]],[17,18,["G575"]],[18,19,["G4675"]]]},{"k":23528,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,9,["G4190"]],[9,10,["G2532"]],[10,11,["G3428"]],[11,12,["G1074"]],[12,14,["G1934"]],[14,16,["G4592"]],[16,17,["G2532"]],[17,20,["G3756"]],[20,21,["G4592"]],[21,23,["G1325"]],[23,25,["G846"]],[25,26,["G1508"]],[26,27,["G3588"]],[27,28,["G4592"]],[28,30,["G3588"]],[30,31,["G4396"]],[31,32,["G2495"]]]},{"k":23529,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G2495"]],[3,4,["G2258"]],[4,5,["G5140"]],[5,6,["G2250"]],[6,7,["G2532"]],[7,8,["G5140"]],[8,9,["G3571"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G2785"]],[12,13,["G2836"]],[13,14,["G3779"]],[14,16,["G3588"]],[16,17,["G5207"]],[17,19,["G444"]],[19,20,["G2071"]],[20,21,["G5140"]],[21,22,["G2250"]],[22,23,["G2532"]],[23,24,["G5140"]],[24,25,["G3571"]],[25,26,["G1722"]],[26,27,["G3588"]],[27,28,["G2588"]],[28,30,["G3588"]],[30,31,["G1093"]]]},{"k":23530,"v":[[0,2,["G435"]],[2,4,["G3536"]],[4,6,["G450"]],[6,7,["G1722"]],[7,8,["G2920"]],[8,9,["G3326"]],[9,10,["G5026"]],[10,11,["G1074"]],[11,12,["G2532"]],[12,14,["G2632"]],[14,15,["G846"]],[15,16,["G3754"]],[16,18,["G3340"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G2782"]],[21,23,["G2495"]],[23,24,["G2532"]],[24,25,["G2400"]],[25,27,["G4119"]],[27,29,["G2495"]],[29,31,["G5602"]]]},{"k":23531,"v":[[0,2,["G938"]],[2,5,["G3558"]],[5,8,["G1453"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2920"]],[11,12,["G3326"]],[12,13,["G5026"]],[13,14,["G1074"]],[14,15,["G2532"]],[15,17,["G2632"]],[17,18,["G846"]],[18,19,["G3754"]],[19,21,["G2064"]],[21,22,["G1537"]],[22,23,["G3588"]],[23,25,["G4009"]],[25,27,["G3588"]],[27,28,["G1093"]],[28,30,["G191"]],[30,31,["G3588"]],[31,32,["G4678"]],[32,34,["G4672"]],[34,35,["G2532"]],[35,36,["G2400"]],[36,38,["G4119"]],[38,40,["G4672"]],[40,42,["G5602"]]]},{"k":23532,"v":[[0,1,["G3752"]],[1,2,["G3588"]],[2,3,["G169"]],[3,4,["G4151"]],[4,6,["G1831"]],[6,8,["G575"]],[8,10,["G444"]],[10,12,["G1330"]],[12,13,["G1223"]],[13,14,["G504"]],[14,15,["G5117"]],[15,16,["G2212"]],[16,17,["G372"]],[17,18,["G2532"]],[18,19,["G2147"]],[19,20,["G3756"]]]},{"k":23533,"v":[[0,1,["G5119"]],[1,3,["G3004"]],[3,6,["G1994"]],[6,7,["G1519"]],[7,8,["G3450"]],[8,9,["G3624"]],[9,11,["G3606"]],[11,14,["G1831"]],[14,15,["G2532"]],[15,19,["G2064"]],[19,21,["G2147"]],[21,23,["G4980"]],[23,24,["G4563"]],[24,25,["G2532"]],[25,26,["G2885"]]]},{"k":23534,"v":[[0,1,["G5119"]],[1,2,["G4198"]],[2,4,["G2532"]],[4,5,["G3880"]],[5,6,["G3326"]],[6,7,["G1438"]],[7,8,["G2033"]],[8,9,["G2087"]],[9,10,["G4151"]],[10,12,["G4191"]],[12,14,["G1438"]],[14,15,["G2532"]],[15,18,["G1525"]],[18,20,["G2730"]],[20,21,["G1563"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G2078"]],[24,27,["G1565"]],[27,28,["G444"]],[28,29,["G1096"]],[29,30,["G5501"]],[30,32,["G3588"]],[32,33,["G4413"]],[33,35,["G3779"]],[35,38,["G2071"]],[38,39,["G2532"]],[39,41,["G5026"]],[41,42,["G4190"]],[42,43,["G1074"]]]},{"k":23535,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G2089"]],[3,4,["G2980"]],[4,6,["G3588"]],[6,7,["G3793"]],[7,8,["G2400"]],[8,10,["G3384"]],[10,11,["G2532"]],[11,12,["G846"]],[12,13,["G80"]],[13,14,["G2476"]],[14,15,["G1854"]],[15,16,["G2212"]],[16,18,["G2980"]],[18,20,["G846"]]]},{"k":23536,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G2400"]],[6,7,["G4675"]],[7,8,["G3384"]],[8,9,["G2532"]],[9,10,["G4675"]],[10,11,["G80"]],[11,12,["G2476"]],[12,13,["G1854"]],[13,14,["G2212"]],[14,16,["G2980"]],[16,18,["G4671"]]]},{"k":23537,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,9,["G2036"]],[9,10,["G846"]],[10,11,["G5101"]],[11,12,["G2076"]],[12,13,["G3450"]],[13,14,["G3384"]],[14,15,["G2532"]],[15,16,["G5101"]],[16,17,["G1526"]],[17,18,["G3450"]],[18,19,["G80"]]]},{"k":23538,"v":[[0,1,["G2532"]],[1,4,["G1614"]],[4,5,["G848"]],[5,6,["G5495"]],[6,7,["G1909"]],[7,8,["G848"]],[8,9,["G3101"]],[9,11,["G2036"]],[11,12,["G2400"]],[12,13,["G3450"]],[13,14,["G3384"]],[14,15,["G2532"]],[15,16,["G3450"]],[16,17,["G80"]]]},{"k":23539,"v":[[0,1,["G1063"]],[1,2,["G3748"]],[2,4,["G4160"]],[4,5,["G3588"]],[5,6,["G2307"]],[6,8,["G3450"]],[8,9,["G3962"]],[9,10,["G3588"]],[10,12,["G1722"]],[12,13,["G3772"]],[13,15,["G846"]],[15,16,["G2076"]],[16,17,["G3450"]],[17,18,["G80"]],[18,19,["G2532"]],[19,20,["G79"]],[20,21,["G2532"]],[21,22,["G3384"]]]},{"k":23540,"v":[[0,2,["G1565"]],[2,3,["G2250"]],[3,4,["G1831"]],[4,5,["G2424"]],[5,7,["G575"]],[7,8,["G3588"]],[8,9,["G3614"]],[9,10,["G2532"]],[10,11,["G2521"]],[11,12,["G3844"]],[12,13,["G3588"]],[13,15,["G2281"]]]},{"k":23541,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,3,["G3793"]],[3,6,["G4863"]],[6,7,["G4314"]],[7,8,["G846"]],[8,10,["G5620"]],[10,11,["G846"]],[11,12,["G1684"]],[12,13,["G1519"]],[13,15,["G4143"]],[15,17,["G2521"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G3956"]],[20,21,["G3793"]],[21,22,["G2476"]],[22,23,["G1909"]],[23,24,["G3588"]],[24,25,["G123"]]]},{"k":23542,"v":[[0,1,["G2532"]],[1,3,["G2980"]],[3,5,["G4183"]],[5,7,["G846"]],[7,8,["G1722"]],[8,9,["G3850"]],[9,10,["G3004"]],[10,11,["G2400"]],[11,13,["G4687"]],[13,15,["G1831"]],[15,17,["G4687"]]]},{"k":23543,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,4,["G4687"]],[4,5,["G3739","G3303"]],[5,7,["G4098"]],[7,8,["G3844"]],[8,9,["G3588"]],[9,11,["G3598"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G4071"]],[14,15,["G2064"]],[15,16,["G2532"]],[16,19,["G2719","G846"]]]},{"k":23544,"v":[[0,0,["(G1161)"]],[0,1,["G243"]],[1,2,["G4098"]],[2,3,["G1909"]],[3,5,["G4075"]],[5,6,["G3699"]],[6,8,["G2192"]],[8,9,["G3756"]],[9,10,["G4183"]],[10,11,["G1093"]],[11,12,["G2532"]],[12,13,["G2112"]],[13,16,["G1816"]],[16,19,["G2192"]],[19,20,["G3361"]],[20,21,["G899"]],[21,23,["G1093"]]]},{"k":23545,"v":[[0,1,["G1161"]],[1,4,["G2246"]],[4,6,["G393"]],[6,9,["G2739"]],[9,10,["G2532"]],[10,13,["G2192"]],[13,14,["G3361"]],[14,15,["G4491"]],[15,18,["G3583"]]]},{"k":23546,"v":[[0,1,["G1161"]],[1,2,["G243"]],[2,3,["G4098"]],[3,4,["G1909"]],[4,5,["G173"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G173"]],[8,10,["G305"]],[10,11,["G2532"]],[11,12,["G638"]],[12,13,["G846"]]]},{"k":23547,"v":[[0,1,["G1161"]],[1,2,["G243"]],[2,3,["G4098"]],[3,4,["G1909"]],[4,5,["G2570"]],[5,6,["G1093"]],[6,7,["G2532"]],[7,9,["G1325"]],[9,10,["G2590"]],[10,11,["G3739","G3303"]],[11,13,["G1540","(G1161)"]],[13,14,["G3739"]],[14,15,["G1835","(G1161)"]],[15,16,["G3739"]],[16,17,["G5144"]]]},{"k":23548,"v":[[0,2,["G2192"]],[2,3,["G3775"]],[3,5,["G191"]],[5,8,["G191"]]]},{"k":23549,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,4,["G4334"]],[4,6,["G2036"]],[6,8,["G846"]],[8,9,["G1302"]],[9,10,["G2980"]],[10,13,["G846"]],[13,14,["G1722"]],[14,15,["G3850"]]]},{"k":23550,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G846"]],[6,7,["G3754"]],[7,10,["G1325"]],[10,12,["G5213"]],[12,14,["G1097"]],[14,15,["G3588"]],[15,16,["G3466"]],[16,18,["G3588"]],[18,19,["G932"]],[19,21,["G3772"]],[21,22,["G1161"]],[22,24,["G1565"]],[24,27,["G3756"]],[27,28,["G1325"]]]},{"k":23551,"v":[[0,1,["G1063"]],[1,2,["G3748"]],[2,3,["G2192"]],[3,5,["G846"]],[5,8,["G1325"]],[8,9,["G2532"]],[9,14,["G4052"]],[14,15,["G1161"]],[15,16,["G3748"]],[16,17,["G2192"]],[17,18,["G3756"]],[18,19,["G575"]],[19,20,["G846"]],[20,24,["G142"]],[24,25,["G2532"]],[25,26,["G3739"]],[26,28,["G2192"]]]},{"k":23552,"v":[[0,1,["G1223","G5124"]],[1,2,["G2980"]],[2,5,["G846"]],[5,6,["G1722"]],[6,7,["G3850"]],[7,8,["G3754"]],[8,10,["G991"]],[10,11,["G991"]],[11,12,["G3756"]],[12,13,["G2532"]],[13,14,["G191"]],[14,16,["G191"]],[16,17,["G3756"]],[17,18,["G3761"]],[18,21,["G4920"]]]},{"k":23553,"v":[[0,1,["G2532"]],[1,2,["G1909"]],[2,3,["G846"]],[3,5,["G378"]],[5,6,["G3588"]],[6,7,["G4394"]],[7,9,["G2268"]],[9,11,["G3004"]],[11,13,["G189"]],[13,16,["G191"]],[16,17,["G2532"]],[17,19,["G3364"]],[19,20,["G4920"]],[20,21,["G2532"]],[21,22,["G991"]],[22,25,["G991"]],[25,26,["G2532"]],[26,28,["G3364"]],[28,29,["G1492"]]]},{"k":23554,"v":[[0,1,["G1063"]],[1,2,["G5127"]],[2,3,["G2992"]],[3,4,["G2588"]],[4,7,["G3975"]],[7,8,["G2532"]],[8,10,["G3775"]],[10,14,["G191","G917"]],[14,15,["G2532"]],[15,16,["G848"]],[16,17,["G3788"]],[17,20,["G2576"]],[20,24,["G3379"]],[24,27,["G1492"]],[27,30,["G3788"]],[30,31,["G2532"]],[31,32,["G191"]],[32,35,["G3775"]],[35,36,["G2532"]],[36,38,["G4920"]],[38,41,["G2588"]],[41,42,["G2532"]],[42,45,["G1994"]],[45,46,["G2532"]],[46,49,["G2390"]],[49,50,["G846"]]]},{"k":23555,"v":[[0,1,["G1161"]],[1,2,["G3107"]],[2,4,["G5216"]],[4,5,["G3788"]],[5,6,["G3754"]],[6,8,["G991"]],[8,9,["G2532"]],[9,10,["G5216"]],[10,11,["G3775"]],[11,12,["G3754"]],[12,14,["G191"]]]},{"k":23556,"v":[[0,1,["G1063"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,7,["G3754"]],[7,8,["G4183"]],[8,9,["G4396"]],[9,10,["G2532"]],[10,11,["G1342"]],[11,14,["G1937"]],[14,16,["G1492"]],[16,19,["G3739"]],[19,21,["G991"]],[21,22,["G2532"]],[22,24,["G3756"]],[24,25,["G1492"]],[25,27,["G2532"]],[27,29,["G191"]],[29,32,["G3739"]],[32,34,["G191"]],[34,35,["G2532"]],[35,37,["G3756"]],[37,38,["G191"]],[38,39,[]]]},{"k":23557,"v":[[0,1,["G191"]],[1,2,["G5210"]],[2,3,["G3767"]],[3,4,["G3588"]],[4,5,["G3850"]],[5,7,["G3588"]],[7,8,["G4687"]]]},{"k":23558,"v":[[0,3,["G3956"]],[3,4,["G191"]],[4,5,["G3588"]],[5,6,["G3056"]],[6,8,["G3588"]],[8,9,["G932"]],[9,10,["G2532"]],[10,11,["G4920"]],[11,13,["G3361"]],[13,15,["G2064"]],[15,16,["G3588"]],[16,17,["G4190"]],[17,19,["G2532"]],[19,21,["G726"]],[21,25,["G4687"]],[25,26,["G1722"]],[26,27,["G846"]],[27,28,["G2588"]],[28,29,["G3778"]],[29,30,["G2076"]],[30,34,["G4687"]],[34,35,["G3844"]],[35,36,["G3588"]],[36,38,["G3598"]]]},{"k":23559,"v":[[0,1,["G1161"]],[1,6,["G4687"]],[6,7,["G1909"]],[7,9,["G4075"]],[9,11,["G3778"]],[11,12,["G2076"]],[12,15,["G191"]],[15,16,["G3588"]],[16,17,["G3056"]],[17,18,["G2532"]],[18,19,["G2117"]],[19,20,["G3326"]],[20,21,["G5479"]],[21,22,["G2983"]],[22,23,["G846"]]]},{"k":23560,"v":[[0,1,["G1161"]],[1,2,["G2192"]],[2,4,["G3756"]],[4,5,["G4491"]],[5,6,["G1722"]],[6,7,["G1438"]],[7,8,["G235"]],[8,12,["G2076","G4340"]],[12,13,["G1161"]],[13,15,["G2347"]],[15,16,["G2228"]],[16,17,["G1375"]],[17,18,["G1096"]],[18,19,["G1223"]],[19,21,["G3588"]],[21,22,["G3056"]],[22,25,["G2117"]],[25,28,["G4624"]]]},{"k":23561,"v":[[0,5,["G4687","G1161"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G173","(G3778)"]],[8,9,["G2076"]],[9,12,["G191"]],[12,13,["G3588"]],[13,14,["G3056"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G3308"]],[17,19,["G5127"]],[19,20,["G165"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G539"]],[23,25,["G4149"]],[25,26,["G4846"]],[26,27,["G3588"]],[27,28,["G3056"]],[28,29,["G2532"]],[29,31,["G1096"]],[31,32,["G175"]]]},{"k":23562,"v":[[0,1,["G1161"]],[1,5,["G4687"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G2570"]],[8,9,["G1093"]],[9,10,["G2076"]],[10,13,["G191"]],[13,14,["G3588"]],[14,15,["G3056"]],[15,16,["G2532"]],[16,17,["G4920"]],[17,19,["G3739"]],[19,20,["G1211"]],[20,22,["G2592"]],[22,23,["G2532"]],[23,25,["G4160"]],[25,26,["G3588","(G3303)"]],[26,28,["G1540","(G1161)"]],[28,29,["G3588"]],[29,30,["G1835","(G1161)"]],[30,31,["G3588"]],[31,32,["G5144"]]]},{"k":23563,"v":[[0,1,["G243"]],[1,2,["G3850"]],[2,5,["G3908"]],[5,7,["G846"]],[7,8,["G3004"]],[8,9,["G3588"]],[9,10,["G932"]],[10,12,["G3772"]],[12,15,["G3666"]],[15,17,["G444"]],[17,19,["G4687"]],[19,20,["G2570"]],[20,21,["G4690"]],[21,22,["G1722"]],[22,23,["G848"]],[23,24,["G68"]]]},{"k":23564,"v":[[0,1,["G1161"]],[1,3,["G444"]],[3,4,["G2518"]],[4,5,["G846"]],[5,6,["G2190"]],[6,7,["G2064"]],[7,8,["G2532"]],[8,9,["G4687"]],[9,10,["G2215"]],[10,11,["G303","G3319"]],[11,12,["G3588"]],[12,13,["G4621"]],[13,14,["G2532"]],[14,17,["G565"]]]},{"k":23565,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,3,["G3588"]],[3,4,["G5528"]],[4,7,["G985"]],[7,8,["G2532"]],[8,10,["G4160"]],[10,11,["G2590"]],[11,12,["G5119"]],[12,13,["G5316"]],[13,14,["G3588"]],[14,15,["G2215"]],[15,16,["G2532"]]]},{"k":23566,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1401"]],[3,5,["G3588"]],[5,6,["G3617"]],[6,7,["G4334"]],[7,9,["G2036"]],[9,11,["G846"]],[11,12,["G2962"]],[12,14,["G3780"]],[14,16,["G4687"]],[16,17,["G2570"]],[17,18,["G4690"]],[18,19,["G1722"]],[19,20,["G4674"]],[20,21,["G68"]],[21,23,["G4159"]],[23,24,["G3767"]],[24,25,["G2192"]],[25,27,["G2215"]]]},{"k":23567,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G5346"]],[2,4,["G846"]],[4,5,["(G444)"]],[5,6,["G2190"]],[6,8,["G4160"]],[8,9,["G5124"]],[9,10,["G3588"]],[10,11,["G1401"]],[11,12,["G2036"]],[12,14,["G846"]],[14,15,["G2309"]],[15,17,["G3767"]],[17,20,["G565"]],[20,21,["G2532"]],[21,24,["G4816","G846"]]]},{"k":23568,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5346"]],[3,4,["G3756"]],[4,5,["G3379"]],[5,9,["G4816"]],[9,10,["G3588"]],[10,11,["G2215"]],[11,14,["G1610"]],[14,16,["G3588"]],[16,17,["G4621"]],[17,18,["G260"]],[18,19,["G846"]]]},{"k":23569,"v":[[0,1,["G863"]],[1,2,["G297"]],[2,4,["G4885"]],[4,5,["G3360"]],[5,6,["G3588"]],[6,7,["G2326"]],[7,8,["G2532"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2540"]],[11,13,["G2326"]],[13,16,["G2046"]],[16,18,["G3588"]],[18,19,["G2327"]],[19,22,["G4816"]],[22,23,["G4412"]],[23,24,["G3588"]],[24,25,["G2215"]],[25,26,["G2532"]],[26,27,["G1210"]],[27,28,["G846"]],[28,29,["G1519"]],[29,30,["G1197"]],[30,32,["G2618"]],[32,33,["G846"]],[33,34,["G1161"]],[34,35,["G4863"]],[35,36,["G3588"]],[36,37,["G4621"]],[37,38,["G1519"]],[38,39,["G3450"]],[39,40,["G596"]]]},{"k":23570,"v":[[0,1,["G243"]],[1,2,["G3850"]],[2,5,["G3908"]],[5,7,["G846"]],[7,8,["G3004"]],[8,9,["G3588"]],[9,10,["G932"]],[10,12,["G3772"]],[12,13,["G2076"]],[13,15,["G3664"]],[15,17,["G2848"]],[17,20,["G4615"]],[20,21,["G3739"]],[21,23,["G444"]],[23,24,["G2983"]],[24,25,["G2532"]],[25,26,["G4687"]],[26,27,["G1722"]],[27,28,["G846"]],[28,29,["G68"]]]},{"k":23571,"v":[[0,1,["G3739"]],[1,2,["G3303"]],[2,3,["G2076"]],[3,5,["G3398"]],[5,7,["G3956"]],[7,8,["G4690"]],[8,9,["G1161"]],[9,10,["G3752"]],[10,13,["G837"]],[13,15,["G2076"]],[15,17,["G3187"]],[17,19,["G3001"]],[19,20,["G2532"]],[20,21,["G1096"]],[21,23,["G1186"]],[23,25,["G5620"]],[25,26,["G3588"]],[26,27,["G4071"]],[27,29,["G3588"]],[29,30,["G3772"]],[30,31,["G2064"]],[31,32,["G2532"]],[32,33,["G2681"]],[33,34,["G1722"]],[34,35,["G3588"]],[35,36,["G2798"]],[36,37,["G846"]]]},{"k":23572,"v":[[0,1,["G243"]],[1,2,["G3850"]],[2,3,["G2980"]],[3,6,["G846"]],[6,7,["G3588"]],[7,8,["G932"]],[8,10,["G3772"]],[10,11,["G2076"]],[11,13,["G3664"]],[13,14,["G2219"]],[14,15,["G3739"]],[15,17,["G1135"]],[17,18,["G2983"]],[18,19,["G2532"]],[19,20,["G1470"]],[20,21,["G1519"]],[21,22,["G5140"]],[22,23,["G4568"]],[23,25,["G224"]],[25,26,["G2193"]],[26,27,["(G3739)"]],[27,28,["G3650"]],[28,30,["G2220"]]]},{"k":23573,"v":[[0,1,["G3956"]],[1,3,["G5023"]],[3,4,["G2980"]],[4,5,["G2424"]],[5,7,["G3588"]],[7,8,["G3793"]],[8,9,["G1722"]],[9,10,["G3850"]],[10,11,["G2532"]],[11,12,["G5565"]],[12,14,["G3850"]],[14,15,["G2980"]],[15,17,["G3756"]],[17,19,["G846"]]]},{"k":23574,"v":[[0,1,["G3704"]],[1,5,["G4137"]],[5,8,["G4483"]],[8,9,["G1223"]],[9,10,["G3588"]],[10,11,["G4396"]],[11,12,["G3004"]],[12,15,["G455"]],[15,16,["G3450"]],[16,17,["G4750"]],[17,18,["G1722"]],[18,19,["G3850"]],[19,22,["G2044"]],[22,28,["G2928"]],[28,29,["G575"]],[29,31,["G2602"]],[31,34,["G2889"]]]},{"k":23575,"v":[[0,1,["G5119"]],[1,2,["G2424"]],[2,6,["G863","G3588","G3793"]],[6,8,["G2064"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G3614"]],[11,12,["G2532"]],[12,13,["G846"]],[13,14,["G3101"]],[14,15,["G4334"]],[15,17,["G846"]],[17,18,["G3004"]],[18,19,["G5419"]],[19,21,["G2254"]],[21,22,["G3588"]],[22,23,["G3850"]],[23,25,["G3588"]],[25,26,["G2215"]],[26,28,["G3588"]],[28,29,["G68"]]]},{"k":23576,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G846"]],[6,9,["G4687"]],[9,10,["G3588"]],[10,11,["G2570"]],[11,12,["G4690"]],[12,13,["G2076"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,17,["G444"]]]},{"k":23577,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G68"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G2889"]],[5,6,["G3588"]],[6,7,["G2570"]],[7,8,["G4690"]],[8,9,["(G3778)","G1526"]],[9,10,["G3588"]],[10,11,["G5207"]],[11,13,["G3588"]],[13,14,["G932"]],[14,15,["G1161"]],[15,16,["G3588"]],[16,17,["G2215"]],[17,18,["G1526"]],[18,19,["G3588"]],[19,20,["G5207"]],[20,22,["G3588"]],[22,23,["G4190"]],[23,24,[]]]},{"k":23578,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G2190"]],[2,4,["G4687"]],[4,5,["G846"]],[5,6,["G2076"]],[6,7,["G3588"]],[7,8,["G1228"]],[8,9,["G3588"]],[9,10,["G2326"]],[10,11,["G2076"]],[11,13,["G4930"]],[13,15,["G3588"]],[15,16,["G165"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G2327"]],[19,20,["G1526"]],[20,22,["G32"]]]},{"k":23579,"v":[[0,1,["G5618"]],[1,2,["G3767"]],[2,3,["G3588"]],[3,4,["G2215"]],[4,6,["G4816"]],[6,7,["G2532"]],[7,8,["G2618"]],[8,11,["G4442"]],[11,12,["G3779"]],[12,15,["G2071"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G4930"]],[18,20,["G5127"]],[20,21,["G165"]]]},{"k":23580,"v":[[0,1,["G3588"]],[1,2,["G5207"]],[2,4,["G444"]],[4,7,["G649"]],[7,8,["G846"]],[8,9,["G32"]],[9,10,["G2532"]],[10,13,["G4816"]],[13,15,["G1537"]],[15,16,["G848"]],[16,17,["G932"]],[17,19,["G3956"]],[19,21,["G4625"]],[21,22,["G2532"]],[22,25,["G4160"]],[25,26,["G458"]]]},{"k":23581,"v":[[0,1,["G2532"]],[1,3,["G906"]],[3,4,["G846"]],[4,5,["G1519"]],[5,7,["G2575"]],[7,9,["G4442"]],[9,10,["G1563"]],[10,12,["G2071"]],[12,13,["G2805"]],[13,14,["G2532"]],[14,15,["G1030"]],[15,17,["G3599"]]]},{"k":23582,"v":[[0,1,["G5119"]],[1,3,["G3588"]],[3,4,["G1342"]],[4,6,["G1584"]],[6,7,["G5613"]],[7,8,["G3588"]],[8,9,["G2246"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G932"]],[12,14,["G848"]],[14,15,["G3962"]],[15,17,["G2192"]],[17,18,["G3775"]],[18,20,["G191"]],[20,23,["G191"]]]},{"k":23583,"v":[[0,1,["G3825"]],[1,2,["G3588"]],[2,3,["G932"]],[3,5,["G3772"]],[5,6,["G2076"]],[6,8,["G3664"]],[8,9,["G2344"]],[9,10,["G2928"]],[10,11,["G1722"]],[11,13,["G68"]],[13,15,["G3739"]],[15,18,["G444"]],[18,20,["G2147"]],[20,22,["G2928"]],[22,23,["G2532"]],[23,24,["G575"]],[24,25,["G5479"]],[25,26,["G846"]],[26,27,["G5217"]],[27,28,["G2532"]],[28,29,["G4453"]],[29,30,["G3956"]],[30,31,["G3745"]],[31,33,["G2192"]],[33,34,["G2532"]],[34,35,["G59"]],[35,36,["G1565"]],[36,37,["G68"]]]},{"k":23584,"v":[[0,1,["G3825"]],[1,2,["G3588"]],[2,3,["G932"]],[3,5,["G3772"]],[5,6,["G2076"]],[6,8,["G3664"]],[8,10,["G1713"]],[10,11,["G444"]],[11,12,["G2212"]],[12,13,["G2570"]],[13,14,["G3135"]]]},{"k":23585,"v":[[0,1,["G3739"]],[1,5,["G2147"]],[5,6,["G1520"]],[6,7,["G3135"]],[7,10,["G4186"]],[10,11,["G565"]],[11,13,["G4097"]],[13,14,["G3956"]],[14,15,["G3745"]],[15,17,["G2192"]],[17,18,["G2532"]],[18,19,["G59"]],[19,20,["G846"]]]},{"k":23586,"v":[[0,1,["G3825"]],[1,2,["G3588"]],[2,3,["G932"]],[3,5,["G3772"]],[5,6,["G2076"]],[6,8,["G3664"]],[8,10,["G4522"]],[10,13,["G906"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G2281"]],[16,17,["G2532"]],[17,18,["G4863"]],[18,19,["G1537"]],[19,20,["G3956"]],[20,21,["G1085"]]]},{"k":23587,"v":[[0,1,["G3739"]],[1,2,["G3753"]],[2,5,["G4137"]],[5,7,["G307"]],[7,8,["G1909"]],[8,9,["G123"]],[9,10,["G2532"]],[10,12,["G2523"]],[12,14,["G4816"]],[14,15,["G3588"]],[15,16,["G2570"]],[16,17,["G1519"]],[17,18,["G30"]],[18,19,["G1161"]],[19,20,["G906"]],[20,21,["G3588"]],[21,22,["G4550"]],[22,23,["G1854"]]]},{"k":23588,"v":[[0,1,["G3779"]],[1,4,["G2071"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G4930"]],[7,9,["G3588"]],[9,10,["G165"]],[10,11,["G3588"]],[11,12,["G32"]],[12,15,["G1831"]],[15,16,["G2532"]],[16,17,["G873"]],[17,18,["G3588"]],[18,19,["G4190"]],[19,20,["G1537"]],[20,21,["G3319"]],[21,22,["G3588"]],[22,23,["G1342"]]]},{"k":23589,"v":[[0,1,["G2532"]],[1,3,["G906"]],[3,4,["G846"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G2575"]],[7,9,["G4442"]],[9,10,["G1563"]],[10,12,["G2071"]],[12,13,["G2805"]],[13,14,["G2532"]],[14,15,["G1030"]],[15,17,["G3599"]]]},{"k":23590,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,7,["G4920"]],[7,8,["G3956"]],[8,11,["G5023"]],[11,12,["G3004"]],[12,14,["G846"]],[14,15,["G3483"]],[15,16,["G2962"]]]},{"k":23591,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,5,["G846"]],[5,6,["G1223","G5124"]],[6,7,["G3956"]],[7,8,["G1122"]],[8,11,["G3100"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G932"]],[14,16,["G3772"]],[16,17,["G2076"]],[17,19,["G3664"]],[19,21,["G444"]],[21,25,["G3617"]],[25,26,["G3748"]],[26,28,["G1544"]],[28,29,["G1537"]],[29,31,["G848"]],[31,32,["G2344"]],[32,34,["G2537"]],[34,35,["G2532"]],[35,36,["G3820"]]]},{"k":23592,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G3753"]],[7,8,["G2424"]],[8,10,["G5055"]],[10,11,["G5025"]],[11,12,["G3850"]],[12,14,["G3332"]],[14,15,["G1564"]]]},{"k":23593,"v":[[0,1,["G2532"]],[1,5,["G2064"]],[5,6,["G1519"]],[6,8,["G848"]],[8,9,["G3968"]],[9,11,["G1321"]],[11,12,["G846"]],[12,13,["G1722"]],[13,14,["G846"]],[14,15,["G4864"]],[15,17,["G5620"]],[17,18,["G846"]],[18,20,["G1605"]],[20,21,["G2532"]],[21,22,["G3004"]],[22,23,["G4159"]],[23,25,["G5129"]],[25,27,["G3778"]],[27,28,["G4678"]],[28,29,["G2532"]],[29,32,["G1411"]]]},{"k":23594,"v":[[0,1,["G2076"]],[1,2,["G3756"]],[2,3,["G3778"]],[3,4,["G3588"]],[4,5,["G5045"]],[5,6,["G5207"]],[6,8,["G3780"]],[8,9,["G846"]],[9,10,["G3384"]],[10,11,["G3004"]],[11,12,["G3137"]],[12,13,["G2532"]],[13,14,["G846"]],[14,15,["G80"]],[15,16,["G2385"]],[16,17,["G2532"]],[17,18,["G2500"]],[18,19,["G2532"]],[19,20,["G4613"]],[20,21,["G2532"]],[21,22,["G2455"]]]},{"k":23595,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G79"]],[3,4,["G1526"]],[4,6,["G3780"]],[6,7,["G3956"]],[7,8,["G4314"]],[8,9,["G2248"]],[9,10,["G4159"]],[10,11,["G3767"]],[11,13,["G5129"]],[13,15,["G3956"]],[15,17,["G5023"]]]},{"k":23596,"v":[[0,1,["G2532"]],[1,4,["G4624"]],[4,5,["G1722"]],[5,6,["G846"]],[6,7,["G1161"]],[7,8,["G2424"]],[8,9,["G2036"]],[9,11,["G846"]],[11,13,["G4396"]],[13,14,["G2076"]],[14,15,["G3756"]],[15,17,["G820"]],[17,18,["G1508"]],[18,19,["G1722"]],[19,21,["G848"]],[21,22,["G3968"]],[22,23,["G2532"]],[23,24,["G1722"]],[24,26,["G848"]],[26,27,["G3614"]]]},{"k":23597,"v":[[0,1,["G2532"]],[1,3,["G4160"]],[3,4,["G3756"]],[4,5,["G4183"]],[5,7,["G1411"]],[7,8,["G1563"]],[8,9,["G1223"]],[9,11,["G846"]],[11,12,["G570"]]]},{"k":23598,"v":[[0,1,["G1722"]],[1,2,["G1565"]],[2,3,["G2540"]],[3,4,["G2264"]],[4,5,["G3588"]],[5,6,["G5076"]],[6,7,["G191"]],[7,9,["G3588"]],[9,10,["G189"]],[10,12,["G2424"]]]},{"k":23599,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,4,["G848"]],[4,5,["G3816"]],[5,6,["G3778"]],[6,7,["G2076"]],[7,8,["G2491"]],[8,9,["G3588"]],[9,10,["G910"]],[10,11,["G846"]],[11,13,["G1453"]],[13,14,["G575"]],[14,15,["G3588"]],[15,16,["G3498"]],[16,17,["G2532"]],[17,18,["G1223","G5124"]],[18,20,["G1411"]],[20,23,["G1754"]],[23,25,["G1722"]],[25,26,["G846"]]]},{"k":23600,"v":[[0,1,["G1063"]],[1,2,["G2264"]],[2,6,["G2902"]],[6,7,["G2491"]],[7,9,["G1210"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G5087"]],[12,14,["G1722"]],[14,15,["G5438"]],[15,18,["G1223","G2266"]],[18,19,["G846"]],[19,20,["G80"]],[20,21,["G5376"]],[21,22,["G1135"]]]},{"k":23601,"v":[[0,1,["G1063"]],[1,2,["G2491"]],[2,3,["G3004"]],[3,5,["G846"]],[5,9,["G1832","G3756"]],[9,11,["G4671"]],[11,13,["G2192"]],[13,14,["G846"]]]},{"k":23602,"v":[[0,1,["G2532"]],[1,4,["G2309"]],[4,9,["G615","G846"]],[9,11,["G5399"]],[11,12,["G3588"]],[12,13,["G3793"]],[13,14,["G3754"]],[14,16,["G2192"]],[16,17,["G846"]],[17,18,["G5613"]],[18,20,["G4396"]]]},{"k":23603,"v":[[0,1,["G1161"]],[1,3,["G2264"]],[3,4,["G1077"]],[4,6,["G71"]],[6,7,["G3588"]],[7,8,["G2364"]],[8,10,["G2266"]],[10,11,["G3738"]],[11,13,["G1722","G3319"]],[13,14,["G2532"]],[14,15,["G700"]],[15,16,["G2264"]]]},{"k":23604,"v":[[0,1,["G3606"]],[1,3,["G3670"]],[3,4,["G3326"]],[4,6,["G3727"]],[6,8,["G1325"]],[8,9,["G846"]],[9,10,["G3739","G1437"]],[10,13,["G154"]]]},{"k":23605,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,5,["G4264"]],[5,6,["G5259"]],[6,7,["G848"]],[7,8,["G3384"]],[8,9,["G5346"]],[9,10,["G1325"]],[10,11,["G3427"]],[11,12,["G5602"]],[12,13,["G2491"]],[13,14,["G910"]],[14,15,["G2776"]],[15,16,["G1909"]],[16,18,["G4094"]]]},{"k":23606,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G935"]],[3,5,["G3076"]],[5,6,["G1161"]],[6,10,["G1223","G3588","G3727"]],[10,11,["G2532"]],[11,18,["G4873"]],[18,20,["G2753"]],[20,24,["G1325"]],[24,25,[]]]},{"k":23607,"v":[[0,1,["G2532"]],[1,3,["G3992"]],[3,5,["G607"]],[5,6,["G2491"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G5438"]]]},{"k":23608,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G2776"]],[3,5,["G5342"]],[5,6,["G1909"]],[6,8,["G4094"]],[8,9,["G2532"]],[9,10,["G1325"]],[10,12,["G3588"]],[12,13,["G2877"]],[13,14,["G2532"]],[14,16,["G5342"]],[16,19,["G846"]],[19,20,["G3384"]]]},{"k":23609,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3101"]],[3,4,["G4334"]],[4,7,["G142"]],[7,8,["G3588"]],[8,9,["G4983"]],[9,10,["G2532"]],[10,11,["G2290"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G2064"]],[14,16,["G518"]],[16,17,["G2424"]]]},{"k":23610,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G191"]],[3,7,["G402"]],[7,8,["G1564"]],[8,9,["G1722"]],[9,10,["G4143"]],[10,11,["G1519"]],[11,13,["G2048"]],[13,14,["G5117"]],[14,15,["G2596","G2398"]],[15,16,["G2532"]],[16,18,["G3588"]],[18,19,["G3793"]],[19,21,["G191"]],[21,24,["G190"]],[24,25,["G846"]],[25,27,["G3979"]],[27,29,["G575"]],[29,30,["G3588"]],[30,31,["G4172"]]]},{"k":23611,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,4,["G1831"]],[4,6,["G1492"]],[6,8,["G4183"]],[8,9,["G3793"]],[9,10,["G2532"]],[10,14,["G4697"]],[14,15,["G1909"]],[15,16,["G846"]],[16,17,["G2532"]],[17,19,["G2323"]],[19,20,["G846"]],[20,21,["G732"]]]},{"k":23612,"v":[[0,1,["G1161"]],[1,4,["G1096"]],[4,5,["G3798"]],[5,6,["G846"]],[6,7,["G3101"]],[7,8,["G4334"]],[8,10,["G846"]],[10,11,["G3004"]],[11,13,["G2076"]],[13,15,["G2048"]],[15,16,["G5117"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G5610"]],[19,21,["G2235"]],[21,22,["G3928"]],[22,26,["G630","G3588","G3793"]],[26,27,["G2443"]],[27,30,["G565"]],[30,31,["G1519"]],[31,32,["G3588"]],[32,33,["G2968"]],[33,34,["G2532"]],[34,35,["G59"]],[35,36,["G1438"]],[36,37,["G1033"]]]},{"k":23613,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,7,["G2192","G5532"]],[7,8,["G3756"]],[8,9,["G565"]],[9,10,["G1325"]],[10,11,["G5210"]],[11,12,["G846"]],[12,14,["G5315"]]]},{"k":23614,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3004"]],[3,5,["G846"]],[5,7,["G2192","(G3756)"]],[7,8,["G5602"]],[8,9,["G1508"]],[9,10,["G4002"]],[10,11,["G740"]],[11,12,["G2532"]],[12,13,["G1417"]],[13,14,["G2486"]]]},{"k":23615,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G2036"]],[2,3,["G5342"]],[3,4,["G846"]],[4,5,["G5602"]],[5,7,["G3427"]]]},{"k":23616,"v":[[0,1,["G2532"]],[1,3,["G2753"]],[3,4,["G3588"]],[4,5,["G3793"]],[5,8,["G347"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G5528"]],[11,12,["G2532"]],[12,13,["G2983"]],[13,14,["G3588"]],[14,15,["G4002"]],[15,16,["G740"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G1417"]],[19,20,["G2486"]],[20,23,["G308"]],[23,24,["G1519"]],[24,25,["G3772"]],[25,27,["G2127"]],[27,28,["G2532"]],[28,29,["G2806"]],[29,30,["G2532"]],[30,31,["G1325"]],[31,32,["G3588"]],[32,33,["G740"]],[33,36,["G3101"]],[36,37,["G1161"]],[37,38,["G3588"]],[38,39,["G3101"]],[39,41,["G3588"]],[41,42,["G3793"]]]},{"k":23617,"v":[[0,1,["G2532"]],[1,4,["G3956"]],[4,5,["G5315"]],[5,6,["G2532"]],[6,8,["G5526"]],[8,9,["G2532"]],[9,12,["G142"]],[12,14,["G3588"]],[14,15,["G2801"]],[15,17,["G4052"]],[17,18,["G1427"]],[18,19,["G2894"]],[19,20,["G4134"]]]},{"k":23618,"v":[[0,1,["G1161"]],[1,5,["G2068"]],[5,6,["G2258"]],[6,7,["G5616"]],[7,9,["G4000"]],[9,10,["G435"]],[10,11,["G5565"]],[11,12,["G1135"]],[12,13,["G2532"]],[13,14,["G3813"]]]},{"k":23619,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G2424"]],[3,4,["G315"]],[4,5,["G848"]],[5,6,["G3101"]],[6,8,["G1684"]],[8,9,["G1519"]],[9,11,["G4143"]],[11,12,["G2532"]],[12,15,["G4254"]],[15,16,["G846"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,20,["G4008"]],[20,21,["G2193","G3739"]],[21,26,["G630","G3588","G3793"]]]},{"k":23620,"v":[[0,1,["G2532"]],[1,8,["G630","G3588","G3793"]],[8,11,["G305"]],[11,12,["G1519"]],[12,14,["G3735"]],[14,15,["G2596","G2398"]],[15,17,["G4336"]],[17,18,["G1161"]],[18,21,["G3798"]],[21,23,["G1096"]],[23,25,["G2258"]],[25,26,["G1563"]],[26,27,["G3441"]]]},{"k":23621,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4143"]],[3,4,["G2258"]],[4,5,["G2235"]],[5,8,["G3319"]],[8,10,["G3588"]],[10,11,["G2281"]],[11,12,["G928"]],[12,13,["G5259"]],[13,14,["G2949"]],[14,15,["G1063"]],[15,16,["G3588"]],[16,17,["G417"]],[17,18,["G2258"]],[18,19,["G1727"]]]},{"k":23622,"v":[[0,1,["G1161"]],[1,4,["G5067"]],[4,5,["G5438"]],[5,7,["G3588"]],[7,8,["G3571"]],[8,9,["G2424"]],[9,10,["G565"]],[10,11,["G4314"]],[11,12,["G846"]],[12,13,["G4043"]],[13,14,["G1909"]],[14,15,["G3588"]],[15,16,["G2281"]]]},{"k":23623,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G3101"]],[4,5,["G1492"]],[5,6,["G846"]],[6,7,["G4043"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,10,["G2281"]],[10,13,["G5015"]],[13,14,["G3004"]],[14,16,["G2076"]],[16,18,["G5326"]],[18,19,["G2532"]],[19,22,["G2896"]],[22,23,["G575"]],[23,24,["G5401"]]]},{"k":23624,"v":[[0,1,["G1161"]],[1,2,["G2112"]],[2,3,["G2424"]],[3,4,["G2980"]],[4,6,["G846"]],[6,7,["G3004"]],[7,11,["G2293"]],[11,13,["G1510"]],[13,14,["G1473"]],[14,17,["G5399","G3361"]]]},{"k":23625,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G611"]],[3,4,["G846"]],[4,6,["G2036"]],[6,7,["G2962"]],[7,8,["G1487"]],[8,10,["G1488"]],[10,11,["G4771"]],[11,12,["G2753"]],[12,13,["G3165"]],[13,14,["G2064"]],[14,15,["G4314"]],[15,16,["G4571"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G5204"]]]},{"k":23626,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G2064"]],[4,5,["G2532"]],[5,7,["G4074"]],[7,10,["G2597"]],[10,12,["G575"]],[12,13,["G3588"]],[13,14,["G4143"]],[14,16,["G4043"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G5204"]],[19,21,["G2064"]],[21,22,["G4314"]],[22,23,["G2424"]]]},{"k":23627,"v":[[0,1,["G1161"]],[1,4,["G991"]],[4,5,["G3588"]],[5,6,["G417"]],[6,7,["G2478"]],[7,10,["G5399"]],[10,11,["G2532"]],[11,12,["G756"]],[12,14,["G2670"]],[14,16,["G2896"]],[16,17,["G3004"]],[17,18,["G2962"]],[18,19,["G4982"]],[19,20,["G3165"]]]},{"k":23628,"v":[[0,1,["G1161"]],[1,2,["G2112"]],[2,3,["G2424"]],[3,5,["G1614"]],[5,7,["G5495"]],[7,9,["G1949"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G3004"]],[12,14,["G846"]],[14,19,["G3640"]],[19,20,["G1519","G5101"]],[20,23,["G1365"]]]},{"k":23629,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G1684"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G4143"]],[8,9,["G3588"]],[9,10,["G417"]],[10,11,["G2869"]]]},{"k":23630,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,5,["G1722"]],[5,6,["G3588"]],[6,7,["G4143"]],[7,8,["G2064"]],[8,10,["G4352"]],[10,11,["G846"]],[11,12,["G3004"]],[12,15,["G230"]],[15,17,["G1488"]],[17,19,["G5207"]],[19,21,["G2316"]]]},{"k":23631,"v":[[0,1,["G2532"]],[1,6,["G1276"]],[6,8,["G2064"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G1093"]],[11,13,["G1082"]]]},{"k":23632,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G435"]],[4,6,["G1565"]],[6,7,["G5117"]],[7,9,["G1921"]],[9,11,["G846"]],[11,14,["G649"]],[14,15,["G1519"]],[15,16,["G3650"]],[16,17,["G1565"]],[17,20,["G4066"]],[20,21,["G2532"]],[21,22,["G4374"]],[22,24,["G846"]],[24,25,["G3956"]],[25,28,["G2192","G2560"]]]},{"k":23633,"v":[[0,1,["G2532"]],[1,2,["G3870"]],[2,3,["G846"]],[3,4,["G2443"]],[4,7,["G3440"]],[7,8,["G680"]],[8,9,["G3588"]],[9,10,["G2899"]],[10,12,["G846"]],[12,13,["G2440"]],[13,14,["G2532"]],[14,17,["G3745"]],[17,18,["G680"]],[18,22,["G1295"]]]},{"k":23634,"v":[[0,1,["G5119"]],[1,2,["G4334"]],[2,4,["G2424"]],[4,5,["G1122"]],[5,6,["G2532"]],[6,7,["G5330"]],[7,8,["G3588"]],[8,10,["G575"]],[10,11,["G2414"]],[11,12,["G3004"]]]},{"k":23635,"v":[[0,1,["G1302"]],[1,3,["G4675"]],[3,4,["G3101"]],[4,5,["G3845"]],[5,6,["G3588"]],[6,7,["G3862"]],[7,9,["G3588"]],[9,10,["G4245"]],[10,11,["G1063"]],[11,13,["G3538"]],[13,14,["G3756"]],[14,15,["G848"]],[15,16,["G5495"]],[16,17,["G3752"]],[17,19,["G2068"]],[19,20,["G740"]]]},{"k":23636,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G1302"]],[8,10,["G5210"]],[10,11,["G2532"]],[11,12,["G3845"]],[12,13,["G3588"]],[13,14,["G1785"]],[14,16,["G2316"]],[16,17,["G1223"]],[17,18,["G5216"]],[18,19,["G3862"]]]},{"k":23637,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,3,["G1781"]],[3,4,["G3004"]],[4,5,["G5091"]],[5,6,["G4675"]],[6,7,["G3962"]],[7,8,["G2532"]],[8,9,["G3384"]],[9,10,["G2532"]],[10,13,["G2551"]],[13,14,["G3962"]],[14,15,["G2228"]],[15,16,["G3384"]],[16,19,["G5053"]],[19,21,["G2288"]]]},{"k":23638,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G3004"]],[3,4,["G3739","G302"]],[4,6,["G2036"]],[6,9,["G3962"]],[9,10,["G2228"]],[10,12,["G3384"]],[12,16,["G1435"]],[16,18,["G3739","G1437"]],[18,22,["G5623"]],[22,23,["G1537"]],[23,24,["G1700"]]]},{"k":23639,"v":[[0,1,["G2532"]],[1,2,["G5091"]],[2,3,["G3364"]],[3,4,["G848"]],[4,5,["G3962"]],[5,6,["G2228"]],[6,7,["G848"]],[7,8,["G3384"]],[8,13,["G2532"]],[13,23,["G208","G3588","G1785","G2316"]],[23,24,["G1223"]],[24,25,["G5216"]],[25,26,["G3862"]]]},{"k":23640,"v":[[0,2,["G5273"]],[2,3,["G2573"]],[3,5,["G2268"]],[5,6,["G4395"]],[6,7,["G4012"]],[7,8,["G5216"]],[8,9,["G3004"]]]},{"k":23641,"v":[[0,1,["G3778"]],[1,2,["G2992"]],[2,4,["G1448"]],[4,6,["G3427"]],[6,8,["G848"]],[8,9,["G4750"]],[9,10,["G2532"]],[10,11,["G5091"]],[11,12,["G3165"]],[12,15,["G5491"]],[15,16,["G1161"]],[16,17,["G846"]],[17,18,["G2588"]],[18,19,["G568"]],[19,20,["G4206"]],[20,21,["G575"]],[21,22,["G1700"]]]},{"k":23642,"v":[[0,1,["G1161"]],[1,3,["G3155"]],[3,6,["G4576"]],[6,7,["G3165"]],[7,8,["G1321"]],[8,10,["G1319"]],[10,12,["G1778"]],[12,14,["G444"]]]},{"k":23643,"v":[[0,1,["G2532"]],[1,3,["G4341"]],[3,4,["G3588"]],[4,5,["G3793"]],[5,7,["G2036"]],[7,9,["G846"]],[9,10,["G191"]],[10,11,["G2532"]],[11,12,["G4920"]]]},{"k":23644,"v":[[0,1,["G3756"]],[1,4,["G1525"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G4750"]],[7,8,["G2840"]],[8,10,["G444"]],[10,11,["G235"]],[11,14,["G1607"]],[14,15,["G1537"]],[15,17,["G3588"]],[17,18,["G4750"]],[18,19,["G5124"]],[19,20,["G2840"]],[20,22,["G444"]]]},{"k":23645,"v":[[0,1,["G5119"]],[1,2,["G4334"]],[2,3,["G846"]],[3,4,["G3101"]],[4,6,["G2036"]],[6,8,["G846"]],[8,9,["G1492"]],[9,11,["G3754"]],[11,12,["G3588"]],[12,13,["G5330"]],[13,15,["G4624"]],[15,18,["G191"]],[18,20,["G3056"]]]},{"k":23646,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,6,["G3956"]],[6,7,["G5451"]],[7,8,["G3739"]],[8,9,["G3450"]],[9,10,["G3770"]],[10,11,["G3962"]],[11,13,["G3756"]],[13,14,["G5452"]],[14,18,["G1610"]]]},{"k":23647,"v":[[0,3,["G863","G846"]],[3,5,["G1526"]],[5,6,["G5185"]],[6,7,["G3595"]],[7,10,["G5185"]],[10,11,["G1161"]],[11,12,["G1437"]],[12,14,["G5185"]],[14,15,["G3594"]],[15,17,["G5185"]],[17,18,["G297"]],[18,20,["G4098"]],[20,21,["G1519"]],[21,23,["G999"]]]},{"k":23648,"v":[[0,1,["G1161"]],[1,2,["G611"]],[2,3,["G4074"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G5419"]],[8,10,["G2254"]],[10,11,["G5026"]],[11,12,["G3850"]]]},{"k":23649,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G2075"]],[4,5,["G5210"]],[5,6,["G2532"]],[6,7,["G188"]],[7,9,["G801"]]]},{"k":23650,"v":[[0,4,["G3768"]],[4,5,["G3539"]],[5,6,["G3754"]],[6,7,["G3956"]],[7,8,["G1531"]],[8,9,["G1519"]],[9,11,["G3588"]],[11,12,["G4750"]],[12,13,["G5562"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G2836"]],[16,17,["G2532"]],[17,20,["G1544"]],[20,21,["G1519"]],[21,23,["G856"]]]},{"k":23651,"v":[[0,1,["G1161"]],[1,5,["G1607"]],[5,7,["G1537"]],[7,8,["G3588"]],[8,9,["G4750"]],[9,11,["G1831"]],[11,12,["G1537"]],[12,13,["G3588"]],[13,14,["G2588"]],[14,16,["G2548"]],[16,17,["G2840"]],[17,18,["G3588"]],[18,19,["G444"]]]},{"k":23652,"v":[[0,1,["G1063"]],[1,2,["G1537"]],[2,4,["G3588"]],[4,5,["G2588"]],[5,6,["G1831"]],[6,7,["G4190"]],[7,8,["G1261"]],[8,9,["G5408"]],[9,10,["G3430"]],[10,11,["G4202"]],[11,12,["G2829"]],[12,14,["G5577"]],[14,15,["G988"]]]},{"k":23653,"v":[[0,1,["G5023"]],[1,2,["G2076"]],[2,6,["G2840"]],[6,8,["G444"]],[8,9,["G1161"]],[9,11,["G5315"]],[11,13,["G449"]],[13,14,["G5495"]],[14,15,["G2840"]],[15,16,["G3756"]],[16,18,["G444"]]]},{"k":23654,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G1831"]],[3,4,["G1564"]],[4,6,["G402"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G3313"]],[9,11,["G5184"]],[11,12,["G2532"]],[12,13,["G4605"]]]},{"k":23655,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G1135"]],[4,6,["G5478"]],[6,7,["G1831"]],[7,9,["G575"]],[9,10,["G3588"]],[10,11,["G1565"]],[11,12,["G3725"]],[12,14,["G2905"]],[14,16,["G846"]],[16,17,["G3004"]],[17,19,["G1653"]],[19,21,["G3165"]],[21,23,["G2962"]],[23,25,["G5207"]],[25,27,["G1138"]],[27,28,["G3450"]],[28,29,["G2364"]],[29,31,["G2560"]],[31,35,["G1139"]]]},{"k":23656,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,4,["G846"]],[4,5,["G3756"]],[5,7,["G3056"]],[7,8,["G2532"]],[8,9,["G846"]],[9,10,["G3101"]],[10,11,["G4334"]],[11,13,["G2065"]],[13,14,["G846"]],[14,15,["G3004"]],[15,18,["G630","G846"]],[18,19,["G3754"]],[19,21,["G2896"]],[21,22,["G3693"]],[22,23,["G2257"]]]},{"k":23657,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,8,["G3756"]],[8,9,["G649"]],[9,10,["G1508"]],[10,11,["G1519"]],[11,13,["G622"]],[13,14,["G4263"]],[14,17,["G3624"]],[17,19,["G2474"]]]},{"k":23658,"v":[[0,1,["G1161"]],[1,2,["G2064"]],[2,3,["G3588"]],[3,5,["G4352"]],[5,6,["G846"]],[6,7,["G3004"]],[7,8,["G2962"]],[8,9,["G997"]],[9,10,["G3427"]]]},{"k":23659,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G2076"]],[7,8,["G3756"]],[8,9,["G2570"]],[9,11,["G2983"]],[11,12,["G3588"]],[12,13,["G5043"]],[13,14,["G740"]],[14,15,["G2532"]],[15,17,["G906"]],[17,20,["G2952"]]]},{"k":23660,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G3483"]],[4,5,["G2962"]],[5,6,["G1063"]],[6,7,["G3588"]],[7,8,["G2952"]],[8,9,["G2068"]],[9,10,["G575"]],[10,11,["G3588"]],[11,12,["G5589"]],[12,14,["G4098"]],[14,15,["G575"]],[15,16,["G848"]],[16,17,["G2962"]],[17,18,["G5132"]]]},{"k":23661,"v":[[0,1,["G5119"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G5599"]],[8,9,["G1135"]],[9,10,["G3173"]],[10,12,["G4675"]],[12,13,["G4102"]],[13,14,["G1096"]],[14,17,["G4671"]],[17,19,["G5613"]],[19,21,["G2309"]],[21,22,["G2532"]],[22,23,["G846"]],[23,24,["G2364"]],[24,27,["G2390"]],[27,28,["G575"]],[28,30,["G1565"]],[30,31,["G5610"]]]},{"k":23662,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G3327"]],[3,5,["G1564"]],[5,7,["G2064"]],[7,9,["G3844"]],[9,10,["G3588"]],[10,11,["G2281"]],[11,13,["G1056"]],[13,14,["G2532"]],[14,16,["G305"]],[16,17,["G1519"]],[17,19,["G3735"]],[19,22,["G2521"]],[22,23,["G1563"]]]},{"k":23663,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,3,["G3793"]],[3,4,["G4334"]],[4,6,["G846"]],[6,7,["G2192"]],[7,8,["G3326"]],[8,9,["G1438"]],[9,13,["G5560"]],[13,14,["G5185"]],[14,15,["G2974"]],[15,16,["G2948"]],[16,17,["G2532"]],[17,18,["G4183"]],[18,19,["G2087"]],[19,20,["G2532"]],[20,23,["G4496","G846"]],[23,24,["G3844"]],[24,25,["G2424"]],[25,26,["G4228"]],[26,27,["G2532"]],[27,29,["G2323"]],[29,30,["G846"]]]},{"k":23664,"v":[[0,2,["G5620"]],[2,3,["G3588"]],[3,4,["G3793"]],[4,5,["G2296"]],[5,8,["G991"]],[8,10,["G2974"]],[10,12,["G2980"]],[12,14,["G2948"]],[14,17,["G5199"]],[17,19,["G5560"]],[19,21,["G4043"]],[21,22,["G2532"]],[22,24,["G5185"]],[24,26,["G991"]],[26,27,["G2532"]],[27,29,["G1392"]],[29,30,["G3588"]],[30,31,["G2316"]],[31,33,["G2474"]]]},{"k":23665,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G4341"]],[3,4,["G848"]],[4,5,["G3101"]],[5,9,["G2036"]],[9,12,["G4697"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G3793"]],[15,16,["G3754"]],[16,19,["G4357"]],[19,20,["G3427"]],[20,21,["G2235"]],[21,22,["G5140"]],[22,23,["G2250"]],[23,24,["G2532"]],[24,25,["G2192"]],[25,26,["G5101","G3756"]],[26,28,["G5315"]],[28,29,["G2532"]],[29,31,["G2309"]],[31,32,["G3756"]],[32,35,["G630","G846"]],[35,36,["G3523"]],[36,37,["G3379"]],[37,39,["G1590"]],[39,40,["G1722"]],[40,41,["G3588"]],[41,42,["G3598"]]]},{"k":23666,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3101"]],[3,4,["G3004"]],[4,6,["G846"]],[6,7,["G4159"]],[7,9,["G2254"]],[9,12,["G5118"]],[12,13,["G740"]],[13,14,["G1722"]],[14,16,["G2047"]],[16,17,["G5620"]],[17,19,["G5526"]],[19,21,["G5118"]],[21,23,["G3793"]]]},{"k":23667,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G3004"]],[3,5,["G846"]],[5,7,["G4214"]],[7,8,["G740"]],[8,9,["G2192"]],[9,11,["G1161"]],[11,12,["G3588"]],[12,13,["G2036"]],[13,14,["G2033"]],[14,15,["G2532"]],[15,17,["G3641"]],[17,19,["G2485"]]]},{"k":23668,"v":[[0,1,["G2532"]],[1,3,["G2753"]],[3,4,["G3588"]],[4,5,["G3793"]],[5,8,["G377"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G1093"]]]},{"k":23669,"v":[[0,1,["G2532"]],[1,3,["G2983"]],[3,4,["G3588"]],[4,5,["G2033"]],[5,6,["G740"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G2486"]],[9,10,["G2532"]],[10,12,["G2168"]],[12,14,["G2806"]],[14,16,["G2532"]],[16,17,["G1325"]],[17,19,["G848"]],[19,20,["G3101"]],[20,21,["G1161"]],[21,22,["G3588"]],[22,23,["G3101"]],[23,25,["G3588"]],[25,26,["G3793"]]]},{"k":23670,"v":[[0,1,["G2532"]],[1,4,["G3956"]],[4,5,["G5315"]],[5,6,["G2532"]],[6,8,["G5526"]],[8,9,["G2532"]],[9,12,["G142"]],[12,14,["G3588"]],[14,15,["G2801"]],[15,19,["G4052"]],[19,20,["G2033"]],[20,21,["G4711"]],[21,22,["G4134"]]]},{"k":23671,"v":[[0,1,["G1161"]],[1,5,["G2068"]],[5,6,["G2258"]],[6,8,["G5070"]],[8,9,["G435"]],[9,10,["G5565"]],[10,11,["G1135"]],[11,12,["G2532"]],[12,13,["G3813"]]]},{"k":23672,"v":[[0,1,["G2532"]],[1,4,["G630"]],[4,5,["G3588"]],[5,6,["G3793"]],[6,9,["G1684","G1519","G4143"]],[9,10,["G2532"]],[10,11,["G2064"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G3725"]],[14,16,["G3093"]]]},{"k":23673,"v":[[0,0,["(G2532)"]],[0,1,["G3588"]],[1,2,["G5330"]],[2,3,["G2532"]],[3,6,["G4523"]],[6,7,["G4334"]],[7,9,["G3985"]],[9,10,["G1905"]],[10,11,["G846"]],[11,15,["G1925"]],[15,16,["G846"]],[16,18,["G4592"]],[18,19,["G1537"]],[19,20,["G3772"]]]},{"k":23674,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G846"]],[6,9,["G1096"]],[9,10,["G3798"]],[10,12,["G3004"]],[12,17,["G2105"]],[17,18,["G1063"]],[18,19,["G3588"]],[19,20,["G3772"]],[20,22,["G4449"]]]},{"k":23675,"v":[[0,1,["G2532"]],[1,4,["G4404"]],[4,9,["G5494"]],[9,11,["G4594"]],[11,12,["G1063"]],[12,13,["G3588"]],[13,14,["G3772"]],[14,16,["G4449"]],[16,17,["G2532"]],[17,18,["G4768"]],[18,21,["G5273"]],[21,23,["G1097"]],[23,24,["G1252"]],[24,25,["G3588","(G3303)"]],[25,26,["G4383"]],[26,28,["G3588"]],[28,29,["G3772"]],[29,30,["G1161"]],[30,31,["G1410"]],[31,33,["G3756"]],[33,35,["G3588"]],[35,36,["G4592"]],[36,38,["G3588"]],[38,39,["G2540"]]]},{"k":23676,"v":[[0,2,["G4190"]],[2,3,["G2532"]],[3,4,["G3428"]],[4,5,["G1074"]],[5,7,["G1934"]],[7,9,["G4592"]],[9,10,["G2532"]],[10,13,["G3756"]],[13,14,["G4592"]],[14,16,["G1325"]],[16,18,["G846"]],[18,19,["G1508"]],[19,20,["G3588"]],[20,21,["G4592"]],[21,23,["G3588"]],[23,24,["G4396"]],[24,25,["G2495"]],[25,26,["G2532"]],[26,28,["G2641"]],[28,29,["G846"]],[29,31,["G565"]]]},{"k":23677,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,4,["G3101"]],[4,6,["G2064"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,10,["G4008"]],[10,13,["G1950"]],[13,15,["G2983"]],[15,16,["G740"]]]},{"k":23678,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,7,["G3708"]],[7,8,["G2532"]],[8,9,["G4337"]],[9,10,["G575"]],[10,11,["G3588"]],[11,12,["G2219"]],[12,14,["G3588"]],[14,15,["G5330"]],[15,16,["G2532"]],[16,19,["G4523"]]]},{"k":23679,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1260"]],[3,4,["G1722"]],[4,5,["G1438"]],[5,6,["G3004"]],[6,9,["G3754"]],[9,12,["G2983"]],[12,13,["G3756"]],[13,14,["G740"]]]},{"k":23680,"v":[[0,2,["G1161"]],[2,3,["G2424"]],[3,4,["G1097"]],[4,6,["G2036"]],[6,8,["G846"]],[8,13,["G3640"]],[13,14,["G5101"]],[14,15,["G1260"]],[15,17,["G1722"]],[17,18,["G1438"]],[18,19,["G3754"]],[19,22,["G2983"]],[22,23,["G3756"]],[23,24,["G740"]]]},{"k":23681,"v":[[0,4,["G3768"]],[4,5,["G3539"]],[5,6,["G3761"]],[6,7,["G3421"]],[7,8,["G3588"]],[8,9,["G4002"]],[9,10,["G740"]],[10,12,["G3588"]],[12,14,["G4000"]],[14,15,["G2532"]],[15,17,["G4214"]],[17,18,["G2894"]],[18,21,["G2983"]]]},{"k":23682,"v":[[0,1,["G3761"]],[1,2,["G3588"]],[2,3,["G2033"]],[3,4,["G740"]],[4,6,["G3588"]],[6,8,["G5070"]],[8,9,["G2532"]],[9,11,["G4214"]],[11,12,["G4711"]],[12,15,["G2983"]]]},{"k":23683,"v":[[0,1,["G4459"]],[1,7,["G3756"]],[7,8,["G3539"]],[8,9,["G3754"]],[9,11,["G2036"]],[11,13,["G3756"]],[13,15,["G5213"]],[15,16,["G4012"]],[16,17,["G740"]],[17,21,["G4337"]],[21,22,["G575"]],[22,23,["G3588"]],[23,24,["G2219"]],[24,26,["G3588"]],[26,27,["G5330"]],[27,28,["G2532"]],[28,31,["G4523"]]]},{"k":23684,"v":[[0,1,["G5119"]],[1,2,["G4920"]],[2,4,["G3754"]],[4,7,["G2036"]],[7,9,["G3756"]],[9,10,["G4337"]],[10,11,["G575"]],[11,12,["G3588"]],[12,13,["G2219"]],[13,15,["G740"]],[15,16,["G235"]],[16,17,["G575"]],[17,18,["G3588"]],[18,19,["G1322"]],[19,21,["G3588"]],[21,22,["G5330"]],[22,23,["G2532"]],[23,26,["G4523"]]]},{"k":23685,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2064"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G3313"]],[6,8,["G2542"]],[8,9,["G5376"]],[9,11,["G2065"]],[11,12,["G848"]],[12,13,["G3101"]],[13,14,["G3004"]],[14,15,["G5101"]],[15,17,["G444"]],[17,18,["G3004"]],[18,20,["G3165"]],[20,21,["G3588"]],[21,22,["G5207"]],[22,24,["G444"]],[24,25,["G1511"]]]},{"k":23686,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G3588"]],[4,5,["(G3303)"]],[5,9,["G2491"]],[9,10,["G3588"]],[10,11,["G910","(G1161)"]],[11,12,["G243"]],[12,13,["G2243"]],[13,14,["G1161"]],[14,15,["G2087"]],[15,16,["G2408"]],[16,17,["G2228"]],[17,18,["G1520"]],[18,20,["G3588"]],[20,21,["G4396"]]]},{"k":23687,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G1161"]],[5,6,["G5101"]],[6,7,["G3004"]],[7,8,["G5210"]],[8,10,["G3165"]],[10,11,["G1511"]]]},{"k":23688,"v":[[0,1,["G1161"]],[1,2,["G4613"]],[2,3,["G4074"]],[3,4,["G611"]],[4,6,["G2036"]],[6,7,["G4771"]],[7,8,["G1488"]],[8,9,["G3588"]],[9,10,["G5547"]],[10,11,["G3588"]],[11,12,["G5207"]],[12,15,["G2198"]],[15,16,["G2316"]]]},{"k":23689,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G3107"]],[8,9,["G1488"]],[9,11,["G4613"]],[11,12,["G920"]],[12,13,["G3754"]],[13,14,["G4561"]],[14,15,["G2532"]],[15,16,["G129"]],[16,18,["G3756"]],[18,19,["G601"]],[19,22,["G4671"]],[22,23,["G235"]],[23,24,["G3450"]],[24,25,["G3962"]],[25,26,["G3588"]],[26,28,["G1722"]],[28,29,["G3772"]]]},{"k":23690,"v":[[0,1,["G1161"]],[1,4,["G2504","G3004"]],[4,6,["G4671"]],[6,7,["G3754"]],[7,8,["G4771"]],[8,9,["G1488"]],[9,10,["G4074"]],[10,11,["G2532"]],[11,12,["G1909"]],[12,13,["G5026"]],[13,14,["G4073"]],[14,17,["G3618"]],[17,18,["G3450"]],[18,19,["G1577"]],[19,20,["G2532"]],[20,22,["G4439"]],[22,24,["G86"]],[24,26,["G3756"]],[26,28,["G2729"]],[28,29,["G846"]]]},{"k":23691,"v":[[0,1,["G2532"]],[1,4,["G1325"]],[4,6,["G4671"]],[6,7,["G3588"]],[7,8,["G2807"]],[8,10,["G3588"]],[10,11,["G932"]],[11,13,["G3772"]],[13,14,["G2532"]],[14,15,["G3739","G1437"]],[15,18,["G1210"]],[18,19,["G1909"]],[19,20,["G1093"]],[20,21,["G2071"]],[21,23,["G1210"]],[23,24,["G1722"]],[24,25,["G3772"]],[25,26,["G2532"]],[26,27,["G3739","G1437"]],[27,30,["G3089"]],[30,31,["G1909"]],[31,32,["G1093"]],[32,34,["G2071"]],[34,35,["G3089"]],[35,36,["G1722"]],[36,37,["G3772"]]]},{"k":23692,"v":[[0,1,["G5119"]],[1,2,["G1291"]],[2,4,["G848"]],[4,5,["G3101"]],[5,6,["G2443"]],[6,9,["G2036"]],[9,11,["G3367"]],[11,12,["G3752"]],[12,13,["G846"]],[13,14,["G2076"]],[14,15,["G2424"]],[15,16,["G3588"]],[16,17,["G5547"]]]},{"k":23693,"v":[[0,1,["G575"]],[1,4,["G5119"]],[4,5,["G756"]],[5,6,["G2424"]],[6,8,["G1166"]],[8,10,["G848"]],[10,11,["G3101"]],[11,13,["G3754"]],[13,14,["G846"]],[14,15,["G1163"]],[15,16,["G565"]],[16,17,["G1519"]],[17,18,["G2414"]],[18,19,["G2532"]],[19,20,["G3958"]],[20,22,["G4183"]],[22,23,["G575"]],[23,24,["G3588"]],[24,25,["G4245"]],[25,26,["G2532"]],[26,28,["G749"]],[28,29,["G2532"]],[29,30,["G1122"]],[30,31,["G2532"]],[31,33,["G615"]],[33,34,["G2532"]],[34,37,["G1453"]],[37,38,["G3588"]],[38,39,["G5154"]],[39,40,["G2250"]]]},{"k":23694,"v":[[0,1,["G2532"]],[1,2,["G4074"]],[2,3,["G4355"]],[3,4,["G846"]],[4,6,["G756"]],[6,8,["G2008"]],[8,9,["G846"]],[9,10,["G3004"]],[10,13,["G2436"]],[13,15,["G4671"]],[15,16,["G2962"]],[16,17,["G5124"]],[17,19,["G3364"]],[19,20,["G2071"]],[20,22,["G4671"]]]},{"k":23695,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4762"]],[3,5,["G2036"]],[5,7,["G4074"]],[7,8,["G5217"]],[8,10,["G3694"]],[10,11,["G3450"]],[11,12,["G4567"]],[12,14,["G1488"]],[14,16,["G4625"]],[16,18,["G3450"]],[18,19,["G3754"]],[19,21,["G5426"]],[21,22,["G3756"]],[22,24,["G3588"]],[24,28,["G2316"]],[28,29,["G235"]],[29,30,["G3588"]],[30,34,["G444"]]]},{"k":23696,"v":[[0,1,["G5119"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,5,["G848"]],[5,6,["G3101"]],[6,8,["G1536"]],[8,10,["G2309"]],[10,11,["G2064"]],[11,12,["G3694"]],[12,13,["G3450"]],[13,16,["G533"]],[16,17,["G1438"]],[17,18,["G2532"]],[18,20,["G142"]],[20,21,["G848"]],[21,22,["G4716"]],[22,23,["G2532"]],[23,24,["G190"]],[24,25,["G3427"]]]},{"k":23697,"v":[[0,1,["G1063"]],[1,2,["G3739","G302"]],[2,3,["G2309"]],[3,4,["G4982"]],[4,5,["G848"]],[5,6,["G5590"]],[6,8,["G622"]],[8,9,["G846"]],[9,10,["G1161"]],[10,11,["G3739","G302"]],[11,13,["G622"]],[13,14,["G848"]],[14,15,["G5590"]],[15,18,["G1752","G1700"]],[18,20,["G2147"]],[20,21,["G846"]]]},{"k":23698,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,5,["G444"]],[5,6,["G5623"]],[6,7,["G1437"]],[7,10,["G2770"]],[10,11,["G3588"]],[11,12,["G3650"]],[12,13,["G2889"]],[13,14,["G2532"]],[14,15,["G2210"]],[15,17,["G848"]],[17,18,["G5590"]],[18,19,["G2228"]],[19,20,["G5101"]],[20,23,["G444"]],[23,24,["G1325"]],[24,26,["G465"]],[26,28,["G848"]],[28,29,["G5590"]]]},{"k":23699,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G444"]],[5,6,["G3195"]],[6,7,["G2064"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G1391"]],[10,12,["G848"]],[12,13,["G3962"]],[13,14,["G3326"]],[14,15,["G848"]],[15,16,["G32"]],[16,17,["G2532"]],[17,18,["G5119"]],[18,21,["G591"]],[21,23,["G1538"]],[23,24,["G2596"]],[24,26,["G848"]],[26,27,["G4234"]]]},{"k":23700,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,7,["G1526"]],[7,8,["G5100"]],[8,9,["G2476"]],[9,10,["G5602"]],[10,11,["G3748"]],[11,13,["G3361"]],[13,14,["G1089"]],[14,16,["G2288"]],[16,17,["G2193","G302"]],[17,19,["G1492"]],[19,20,["G3588"]],[20,21,["G5207"]],[21,23,["G444"]],[23,24,["G2064"]],[24,25,["G1722"]],[25,26,["G848"]],[26,27,["G932"]]]},{"k":23701,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,3,["G1803"]],[3,4,["G2250"]],[4,5,["G2424"]],[5,6,["G3880"]],[6,7,["G4074","(G2532)"]],[7,8,["G2385"]],[8,9,["G2532"]],[9,10,["G2491"]],[10,11,["G846"]],[11,12,["G80"]],[12,13,["G2532"]],[13,16,["G399","G846"]],[16,17,["G1519"]],[17,19,["G5308"]],[19,20,["G3735"]],[20,21,["G2596","G2398"]]]},{"k":23702,"v":[[0,1,["G2532"]],[1,3,["G3339"]],[3,4,["G1715"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G846"]],[7,8,["G4383"]],[8,10,["G2989"]],[10,11,["G5613"]],[11,12,["G3588"]],[12,13,["G2246"]],[13,14,["G1161"]],[14,15,["G846"]],[15,16,["G2440"]],[16,17,["G1096"]],[17,18,["G3022"]],[18,19,["G5613"]],[19,20,["G3588"]],[20,21,["G5457"]]]},{"k":23703,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G3700"]],[4,6,["G846"]],[6,7,["G3475"]],[7,8,["G2532"]],[8,9,["G2243"]],[9,10,["G4814"]],[10,11,["G3326"]],[11,12,["G846"]]]},{"k":23704,"v":[[0,1,["G1161"]],[1,2,["G611"]],[2,3,["G4074"]],[3,5,["G2036"]],[5,7,["G2424"]],[7,8,["G2962"]],[8,10,["G2076"]],[10,11,["G2570"]],[11,13,["G2248"]],[13,15,["G1511"]],[15,16,["G5602"]],[16,17,["G1487"]],[17,19,["G2309"]],[19,22,["G4160"]],[22,23,["G5602"]],[23,24,["G5140"]],[24,25,["G4633"]],[25,26,["G3391"]],[26,28,["G4671"]],[28,29,["G2532"]],[29,30,["G3391"]],[30,32,["G3475"]],[32,33,["G2532"]],[33,34,["G3391"]],[34,36,["G2243"]]]},{"k":23705,"v":[[0,2,["G846"]],[2,3,["G2089"]],[3,4,["G2980"]],[4,5,["G2400"]],[5,7,["G5460"]],[7,8,["G3507"]],[8,9,["G1982"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G2400"]],[12,14,["G5456"]],[14,15,["G1537"]],[15,17,["G3588"]],[17,18,["G3507"]],[18,20,["G3004"]],[20,21,["G3778"]],[21,22,["G2076"]],[22,23,["G3450"]],[23,24,["G27"]],[24,25,["G5207"]],[25,26,["G1722"]],[26,27,["G3739"]],[27,31,["G2106"]],[31,32,["G191"]],[32,34,["G846"]]]},{"k":23706,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G3101"]],[4,5,["G191"]],[5,8,["G4098"]],[8,9,["G1909"]],[9,10,["G848"]],[10,11,["G4383"]],[11,12,["G2532"]],[12,15,["G5399","G4970"]]]},{"k":23707,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G4334"]],[3,5,["G680"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G2036"]],[8,9,["G1453"]],[9,10,["G2532"]],[10,13,["G5399","G3361"]]]},{"k":23708,"v":[[0,1,["G1161"]],[1,6,["G1869"]],[6,7,["G848"]],[7,8,["G3788"]],[8,10,["G1492"]],[10,12,["G3762"]],[12,13,["G1508"]],[13,14,["G2424"]],[14,15,["G3441"]]]},{"k":23709,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G2597"]],[5,6,["G575"]],[6,7,["G3588"]],[7,8,["G3735"]],[8,9,["G2424"]],[9,10,["G1781"]],[10,11,["G846"]],[11,12,["G3004"]],[12,13,["G2036"]],[13,14,["G3588"]],[14,15,["G3705"]],[15,18,["G3367"]],[18,19,["G2193","G302"]],[19,20,["G3588"]],[20,21,["G5207"]],[21,23,["G444"]],[23,26,["G450"]],[26,27,["G1537"]],[27,29,["G3498"]]]},{"k":23710,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3101"]],[3,4,["G1905"]],[4,5,["G846"]],[5,6,["G3004"]],[6,7,["G5101"]],[7,8,["G3767"]],[8,9,["G3004"]],[9,10,["G3588"]],[10,11,["G1122"]],[11,12,["G3754"]],[12,13,["G2243"]],[13,14,["G1163"]],[14,15,["G4412"]],[15,16,["G2064"]]]},{"k":23711,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G2243"]],[8,9,["G3303"]],[9,11,["G4412"]],[11,12,["G2064"]],[12,13,["G2532"]],[13,14,["G600"]],[14,16,["G3956"]]]},{"k":23712,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G2243"]],[7,9,["G2064"]],[9,10,["G2235"]],[10,11,["G2532"]],[11,13,["G1921"]],[13,14,["G846"]],[14,15,["G3756"]],[15,16,["G235"]],[16,18,["G4160"]],[18,19,["G1722"]],[19,20,["G846"]],[20,21,["G3745"]],[21,23,["G2309"]],[23,24,["G3779"]],[24,25,["G3195"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G5207"]],[28,30,["G444"]],[30,31,["G3958"]],[31,32,["G5259"]],[32,33,["G846"]]]},{"k":23713,"v":[[0,1,["G5119"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,4,["G4920"]],[4,5,["G3754"]],[5,7,["G2036"]],[7,9,["G846"]],[9,10,["G4012"]],[10,11,["G2491"]],[11,12,["G3588"]],[12,13,["G910"]]]},{"k":23714,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G2064"]],[5,6,["G4314"]],[6,7,["G3588"]],[7,8,["G3793"]],[8,10,["G4334"]],[10,12,["G846"]],[12,15,["G444"]],[15,17,["G1120"]],[17,19,["G846"]],[19,20,["G2532"]],[20,21,["G3004"]]]},{"k":23715,"v":[[0,1,["G2962"]],[1,3,["G1653"]],[3,5,["G3450"]],[5,6,["G5207"]],[6,7,["G1063"]],[7,10,["G4583"]],[10,11,["G2532"]],[11,12,["G2560"]],[12,13,["G3958"]],[13,14,["G3754"]],[14,15,["G4178"]],[15,17,["G4098"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G4442"]],[20,21,["G2532"]],[21,22,["G4178"]],[22,23,["G1519"]],[23,24,["G3588"]],[24,25,["G5204"]]]},{"k":23716,"v":[[0,1,["G2532"]],[1,3,["G4374"]],[3,4,["G846"]],[4,6,["G4675"]],[6,7,["G3101"]],[7,8,["G2532"]],[8,10,["G1410"]],[10,11,["G3756"]],[11,12,["G2323"]],[12,13,["G846"]]]},{"k":23717,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,6,["G5599"]],[6,7,["G571"]],[7,8,["G2532"]],[8,9,["G1294"]],[9,10,["G1074"]],[10,12,["G2193","G4219"]],[12,15,["G2071"]],[15,16,["G3326"]],[16,17,["G5216"]],[17,19,["G2193","G4219"]],[19,22,["G430"]],[22,23,["G5216"]],[23,24,["G5342"]],[24,25,["G846"]],[25,26,["G5602"]],[26,28,["G3427"]]]},{"k":23718,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2008"]],[3,5,["G1140"]],[5,6,["G2532"]],[6,7,["G846"]],[7,8,["G1831"]],[8,10,["G575"]],[10,11,["G846"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G3816"]],[14,16,["G2323"]],[16,17,["G575"]],[17,19,["G1565"]],[19,20,["G5610"]]]},{"k":23719,"v":[[0,1,["G5119"]],[1,2,["G4334"]],[2,3,["G3588"]],[3,4,["G3101"]],[4,6,["G2424"]],[6,7,["G2596","G2398"]],[7,9,["G2036"]],[9,10,["G1302"]],[10,11,["G1410"]],[11,12,["G3756"]],[12,13,["G2249"]],[13,16,["G1544","G846"]]]},{"k":23720,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G1223"]],[6,8,["G5216"]],[8,9,["G570"]],[9,10,["G1063"]],[10,11,["G281"]],[11,13,["G3004"]],[13,15,["G5213"]],[15,16,["G1437"]],[16,18,["G2192"]],[18,19,["G4102"]],[19,20,["G5613"]],[20,22,["G2848"]],[22,25,["G4615"]],[25,28,["G2046"]],[28,30,["G5129"]],[30,31,["G3735"]],[31,32,["G3327"]],[32,33,["G1782"]],[33,36,["G1563"]],[36,37,["G2532"]],[37,40,["G3327"]],[40,41,["G2532"]],[41,42,["G3762"]],[42,45,["G101"]],[45,47,["G5213"]]]},{"k":23721,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,3,["G1085"]],[3,6,["G1607","G3756"]],[6,7,["G1508"]],[7,8,["G1722"]],[8,9,["G4335"]],[9,10,["G2532"]],[10,11,["G3521"]]]},{"k":23722,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G390"]],[4,5,["G1722"]],[5,6,["G1056"]],[6,7,["G2424"]],[7,8,["G2036"]],[8,10,["G846"]],[10,11,["G3588"]],[11,12,["G5207"]],[12,14,["G444"]],[14,15,["G3195"]],[15,17,["G3860"]],[17,18,["G1519"]],[18,20,["G5495"]],[20,22,["G444"]]]},{"k":23723,"v":[[0,1,["G2532"]],[1,4,["G615"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G5154"]],[8,9,["G2250"]],[9,14,["G1453"]],[14,15,["G2532"]],[15,19,["G3076","G4970"]]]},{"k":23724,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G2064"]],[5,6,["G1519"]],[6,7,["G2584"]],[7,10,["G2983"]],[10,11,["G1323"]],[11,13,["G4334"]],[13,15,["G4074"]],[15,16,["G2532"]],[16,17,["G2036"]],[17,19,["G3756"]],[19,20,["G5216"]],[20,21,["G1320"]],[21,22,["G5055"]],[22,23,["G1323"]]]},{"k":23725,"v":[[0,2,["G3004"]],[2,3,["G3483"]],[3,4,["G2532"]],[4,5,["G3753"]],[5,8,["G1525"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G3614"]],[11,12,["G2424"]],[12,13,["G4399"]],[13,14,["G846"]],[14,15,["G3004"]],[15,16,["G5101"]],[16,17,["G1380"]],[17,18,["G4671"]],[18,19,["G4613"]],[19,20,["G575"]],[20,21,["G5101"]],[21,23,["G3588"]],[23,24,["G935"]],[24,26,["G3588"]],[26,27,["G1093"]],[27,28,["G2983"]],[28,29,["G5056"]],[29,30,["G2228"]],[30,31,["G2778"]],[31,32,["G575"]],[32,34,["G848"]],[34,35,["G5207"]],[35,36,["G2228"]],[36,37,["G575"]],[37,38,["G245"]]]},{"k":23726,"v":[[0,1,["G4074"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G575"]],[5,6,["G245"]],[6,7,["G2424"]],[7,8,["G5346"]],[8,10,["G846"]],[10,11,["G686"]],[11,12,["G1526"]],[12,13,["G3588"]],[13,14,["G5207"]],[14,15,["G1658"]]]},{"k":23727,"v":[[0,1,["G1161"]],[1,2,["G3363"]],[2,5,["G4624"]],[5,6,["G846"]],[6,7,["G4198"]],[7,9,["G1519"]],[9,10,["G3588"]],[10,11,["G2281"]],[11,13,["G906"]],[13,15,["G44"]],[15,16,["G2532"]],[16,18,["G142"]],[18,20,["G2486"]],[20,22,["G4413"]],[22,24,["G305"]],[24,25,["G2532"]],[25,29,["G455"]],[29,30,["G846"]],[30,31,["G4750"]],[31,34,["G2147"]],[34,38,["G4715"]],[38,39,["G1565"]],[39,40,["G2983"]],[40,41,["G2532"]],[41,42,["G1325"]],[42,44,["G846"]],[44,45,["G473"]],[45,46,["G1700"]],[46,47,["G2532"]],[47,48,["G4675"]]]},{"k":23728,"v":[[0,1,["G1722"]],[1,3,["G1565"]],[3,4,["G5610"]],[4,5,["G4334"]],[5,6,["G3588"]],[6,7,["G3101"]],[7,9,["G2424"]],[9,10,["G3004"]],[10,11,["G5101","(G686)"]],[11,12,["G2076"]],[12,14,["G3187"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G932"]],[17,19,["G3772"]]]},{"k":23729,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G4341"]],[3,6,["G3813"]],[6,9,["G2532"]],[9,10,["G2476"]],[10,11,["G846"]],[11,12,["G1722"]],[12,14,["G3319"]],[14,16,["G846"]]]},{"k":23730,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,3,["G281"]],[3,5,["G3004"]],[5,7,["G5213"]],[7,8,["G3362"]],[8,11,["G4762"]],[11,12,["G2532"]],[12,13,["G1096"]],[13,14,["G5613"]],[14,16,["G3813"]],[16,19,["G3364"]],[19,20,["G1525"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G932"]],[23,25,["G3772"]]]},{"k":23731,"v":[[0,1,["G3748"]],[1,2,["G3767"]],[2,4,["G5013"]],[4,5,["G1438"]],[5,6,["G5613"]],[6,7,["G5124"]],[7,9,["G3813"]],[9,11,["G3778"]],[11,12,["G2076"]],[12,13,["G3187"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G932"]],[16,18,["G3772"]]]},{"k":23732,"v":[[0,1,["G2532"]],[1,2,["G3739","G1437"]],[2,4,["G1209"]],[4,5,["G1520"]],[5,6,["G5108"]],[6,8,["G3813"]],[8,9,["G1909"]],[9,10,["G3450"]],[10,11,["G3686"]],[11,12,["G1209"]],[12,13,["G1691"]]]},{"k":23733,"v":[[0,1,["G1161"]],[1,2,["G3739","G302"]],[2,4,["G4624"]],[4,5,["G1520"]],[5,7,["G5130"]],[7,9,["G3398"]],[9,11,["G4100"]],[11,12,["G1519"]],[12,13,["G1691"]],[13,16,["G4851"]],[16,18,["G846"]],[18,19,["G2443"]],[19,21,["G3458","G3684"]],[21,23,["G2910"]],[23,24,["G1909"]],[24,25,["G846"]],[25,26,["G5137"]],[26,27,["G2532"]],[27,31,["G2670"]],[31,32,["G1722"]],[32,33,["G3588"]],[33,34,["G3989"]],[34,36,["G3588"]],[36,37,["G2281"]]]},{"k":23734,"v":[[0,1,["G3759"]],[1,3,["G3588"]],[3,4,["G2889"]],[4,7,["G4625"]],[7,8,["G1063"]],[8,12,["G2076","G318"]],[12,14,["G4625"]],[14,15,["G2064"]],[15,16,["G4133"]],[16,17,["G3759"]],[17,19,["G1565"]],[19,20,["G444"]],[20,21,["G1223"]],[21,22,["G3739"]],[22,23,["G3588"]],[23,24,["G4625"]],[24,25,["G2064"]]]},{"k":23735,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G4675"]],[3,4,["G5495"]],[4,5,["G2228"]],[5,6,["G4675"]],[6,7,["G4228"]],[7,8,["G4624"]],[8,9,["G4571"]],[9,12,["G1581","G846"]],[12,13,["G2532"]],[13,14,["G906"]],[14,16,["G575"]],[16,17,["G4675"]],[17,19,["G2076"]],[19,20,["G2570"]],[20,22,["G4671"]],[22,24,["G1525"]],[24,25,["G1519"]],[25,26,["G2222"]],[26,27,["G5560"]],[27,28,["G2228"]],[28,29,["G2948"]],[29,31,["G2228"]],[31,32,["G2192"]],[32,33,["G1417"]],[33,34,["G5495"]],[34,35,["G2228"]],[35,36,["G1417"]],[36,37,["G4228"]],[37,40,["G906"]],[40,41,["G1519"]],[41,42,["G166"]],[42,43,["G4442"]]]},{"k":23736,"v":[[0,1,["G2532"]],[1,2,["G1487"]],[2,3,["G4675"]],[3,4,["G3788"]],[4,5,["G4624"]],[5,6,["G4571"]],[6,9,["G1807","G846"]],[9,10,["G2532"]],[10,11,["G906"]],[11,13,["G575"]],[13,14,["G4675"]],[14,16,["G2076"]],[16,17,["G2570"]],[17,19,["G4671"]],[19,21,["G1525"]],[21,22,["G1519"]],[22,23,["G2222"]],[23,26,["G3442"]],[26,27,["G2228"]],[27,29,["G2192"]],[29,30,["G1417"]],[30,31,["G3788"]],[31,34,["G906"]],[34,35,["G1519"]],[35,36,["G1067"]],[36,37,["G4442"]]]},{"k":23737,"v":[[0,2,["G3708"]],[2,5,["G2706"]],[5,6,["G3361"]],[6,7,["G1520"]],[7,9,["G5130"]],[9,11,["G3398"]],[11,12,["G1063"]],[12,14,["G3004"]],[14,16,["G5213"]],[16,17,["G3754"]],[17,18,["G1722"]],[18,19,["G3772"]],[19,20,["G846"]],[20,21,["G32"]],[21,23,["G1223","G3956"]],[23,24,["G991"]],[24,25,["G3588"]],[25,26,["G4383"]],[26,28,["G3450"]],[28,29,["G3962"]],[29,30,["G3588"]],[30,32,["G1722"]],[32,33,["G3772"]]]},{"k":23738,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G444"]],[5,7,["G2064"]],[7,9,["G4982"]],[9,13,["G622"]]]},{"k":23739,"v":[[0,1,["G5101"]],[1,2,["G1380"]],[2,3,["G5213"]],[3,4,["G1437"]],[4,5,["G5100"]],[5,6,["G444"]],[6,7,["G1096"]],[7,9,["G1540"]],[9,10,["G4263"]],[10,11,["G2532"]],[11,12,["G1520"]],[12,13,["G1537"]],[13,14,["G846"]],[14,17,["G4105"]],[17,20,["G3780"]],[20,21,["G863"]],[21,22,["G3588"]],[22,25,["G1768"]],[25,27,["G4198"]],[27,28,["G1909"]],[28,29,["G3588"]],[29,30,["G3735"]],[30,31,["G2532"]],[31,32,["G2212"]],[32,37,["G4105"]]]},{"k":23740,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G1096"]],[4,7,["G2147"]],[7,8,["G846"]],[8,9,["G281"]],[9,11,["G3004"]],[11,13,["G5213"]],[13,14,["(G3754)"]],[14,15,["G5463"]],[15,16,["G3123"]],[16,17,["G1909"]],[17,18,["G846"]],[18,20,["G2228"]],[20,21,["G1909"]],[21,22,["G3588"]],[22,25,["G1768"]],[25,29,["G4105","G3361"]]]},{"k":23741,"v":[[0,2,["G3779"]],[2,4,["G2076"]],[4,5,["G3756"]],[5,7,["G2307"]],[7,8,["G1715"]],[8,9,["G5216"]],[9,10,["G3962"]],[10,11,["G3588"]],[11,13,["G1722"]],[13,14,["G3772"]],[14,15,["G2443"]],[15,16,["G1520"]],[16,18,["G5130"]],[18,20,["G3398"]],[20,22,["G622"]]]},{"k":23742,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,3,["G4675"]],[3,4,["G80"]],[4,6,["G264"]],[6,7,["G1519"]],[7,8,["G4571"]],[8,9,["G5217"]],[9,10,["G2532"]],[10,14,["G1651","G846"]],[14,15,["G3342"]],[15,16,["G4675"]],[16,17,["G2532"]],[17,18,["G846"]],[18,19,["G3441"]],[19,20,["G1437"]],[20,23,["G191"]],[23,24,["G4675"]],[24,27,["G2770"]],[27,28,["G4675"]],[28,29,["G80"]]]},{"k":23743,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,5,["G3361"]],[5,6,["G191"]],[6,9,["G3880"]],[9,10,["G3326"]],[10,11,["G4675"]],[11,12,["G1520"]],[12,13,["G2228"]],[13,14,["G1417"]],[14,15,["G2089"]],[15,16,["G2443"]],[16,17,["G1909"]],[17,19,["G4750"]],[19,21,["G1417"]],[21,22,["G2228"]],[22,23,["G5140"]],[23,24,["G3144"]],[24,25,["G3956"]],[25,26,["G4487"]],[26,29,["G2476"]]]},{"k":23744,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,7,["G3878"]],[7,8,["G846"]],[8,9,["G2036"]],[9,12,["G3588"]],[12,13,["G1577"]],[13,14,["G1161"]],[14,15,["G1437"]],[15,19,["G3878"]],[19,20,["G3588"]],[20,21,["G1577"]],[21,24,["G2077"]],[24,26,["G4671"]],[26,27,["G5618"]],[27,30,["G1482"]],[30,31,["G2532"]],[31,33,["G5057"]]]},{"k":23745,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3745","G1437"]],[6,9,["G1210"]],[9,10,["G1909"]],[10,11,["G1093"]],[11,13,["G2071"]],[13,14,["G1210"]],[14,15,["G1722"]],[15,16,["G3772"]],[16,17,["G2532"]],[17,18,["G3745","G1437"]],[18,21,["G3089"]],[21,22,["G1909"]],[22,23,["G1093"]],[23,25,["G2071"]],[25,26,["G3089"]],[26,27,["G1722"]],[27,28,["G3772"]]]},{"k":23746,"v":[[0,1,["G3825"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G1437"]],[7,8,["G1417"]],[8,10,["G5216"]],[10,12,["G4856"]],[12,13,["G1909"]],[13,14,["G1093"]],[14,16,["G4012"]],[16,17,["G3956"]],[17,18,["G4229"]],[18,19,["G3739","G1437"]],[19,22,["G154"]],[22,26,["G1096"]],[26,28,["G846"]],[28,29,["G3844"]],[29,30,["G3450"]],[30,31,["G3962"]],[31,32,["G3588"]],[32,34,["G1722"]],[34,35,["G3772"]]]},{"k":23747,"v":[[0,1,["G1063"]],[1,2,["G3757"]],[2,3,["G1417"]],[3,4,["G2228"]],[4,5,["G5140"]],[5,6,["G1526"]],[6,8,["G4863"]],[8,9,["G1519"]],[9,10,["G1699"]],[10,11,["G3686"]],[11,12,["G1563"]],[12,13,["G1510"]],[13,15,["G1722"]],[15,17,["G3319"]],[17,19,["G846"]]]},{"k":23748,"v":[[0,1,["G5119"]],[1,2,["G4334"]],[2,3,["G4074"]],[3,5,["G846"]],[5,7,["G2036"]],[7,8,["G2962"]],[8,10,["G4212"]],[10,12,["G3450"]],[12,13,["G80"]],[13,14,["G264"]],[14,15,["G1519"]],[15,16,["G1691"]],[16,17,["G2532"]],[17,19,["G863"]],[19,20,["G846"]],[20,21,["G2193"]],[21,23,["G2034"]]]},{"k":23749,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,6,["G3004"]],[6,7,["G3756"]],[7,9,["G4671"]],[9,10,["G2193"]],[10,12,["G2034"]],[12,14,["G2193"]],[14,16,["G1441"]],[16,17,["G2033"]]]},{"k":23750,"v":[[0,1,["G1223","G5124"]],[1,3,["G3588"]],[3,4,["G932"]],[4,6,["G3772"]],[6,8,["G3666"]],[8,11,["G444","G935"]],[11,12,["G3739"]],[12,13,["G2309"]],[13,14,["G4868"]],[14,15,["G3056"]],[15,16,["G3326"]],[16,17,["G848"]],[17,18,["G1401"]]]},{"k":23751,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G756"]],[5,7,["G4868"]],[7,8,["G1520"]],[8,10,["G4374"]],[10,12,["G846"]],[12,14,["G3781"]],[14,17,["G3463"]],[17,18,["G5007"]]]},{"k":23752,"v":[[0,1,["G1161"]],[1,4,["G846"]],[4,5,["G2192"]],[5,6,["G3361"]],[6,8,["G591"]],[8,9,["G846"]],[9,10,["G2962"]],[10,11,["G2753"]],[11,12,["G846"]],[12,15,["G4097"]],[15,16,["G2532"]],[16,17,["G846"]],[17,18,["G1135"]],[18,19,["G2532"]],[19,20,["G5043"]],[20,21,["G2532"]],[21,22,["G3956"]],[22,24,["(G3745)"]],[24,25,["G2192"]],[25,26,["G2532"]],[26,30,["G591"]]]},{"k":23753,"v":[[0,1,["G3588"]],[1,2,["G1401"]],[2,3,["G3767"]],[3,5,["G4098"]],[5,7,["G4352"]],[7,8,["G846"]],[8,9,["G3004"]],[9,10,["G2962"]],[10,12,["G3114"]],[12,13,["G1909"]],[13,14,["G1698"]],[14,15,["G2532"]],[15,18,["G591"]],[18,19,["G4671"]],[19,20,["G3956"]]]},{"k":23754,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,5,["G1565"]],[5,6,["G1401"]],[6,10,["G4697"]],[10,12,["G630"]],[12,13,["G846"]],[13,14,["G2532"]],[14,15,["G863"]],[15,16,["G846"]],[16,17,["G3588"]],[17,18,["G1156"]]]},{"k":23755,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1565"]],[3,4,["G1401"]],[4,6,["G1831"]],[6,8,["G2147"]],[8,9,["G1520"]],[9,11,["G846"]],[11,12,["G4889"]],[12,13,["G3739"]],[13,14,["G3784"]],[14,15,["G846"]],[15,17,["G1540"]],[17,18,["G1220"]],[18,19,["G2532"]],[19,22,["G2902"]],[22,24,["G846"]],[24,30,["G4155"]],[30,31,["G3004"]],[31,32,["G591"]],[32,33,["G3427"]],[33,34,["G3748"]],[34,36,["G3784"]]]},{"k":23756,"v":[[0,1,["G3767"]],[1,2,["G846"]],[2,3,["G4889"]],[3,5,["G4098"]],[5,6,["G1519"]],[6,7,["G846"]],[7,8,["G4228"]],[8,10,["G3870"]],[10,11,["G846"]],[11,12,["G3004"]],[12,14,["G3114"]],[14,15,["G1909"]],[15,16,["G1698"]],[16,17,["G2532"]],[17,20,["G591"]],[20,21,["G4671"]],[21,22,["G3956"]]]},{"k":23757,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2309"]],[3,4,["G3756"]],[4,5,["G235"]],[5,6,["G565"]],[6,8,["G906"]],[8,9,["G846"]],[9,10,["G1519"]],[10,11,["G5438"]],[11,12,["G2193"]],[12,15,["G591"]],[15,16,["G3588"]],[16,17,["G3784"]]]},{"k":23758,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G4889"]],[4,5,["G1492"]],[5,8,["G1096"]],[8,12,["G3076","G4970"]],[12,13,["G2532"]],[13,14,["G2064"]],[14,16,["G1285"]],[16,18,["G848"]],[18,19,["G2962"]],[19,20,["G3956"]],[20,23,["G1096"]]]},{"k":23759,"v":[[0,1,["G5119"]],[1,2,["G846"]],[2,3,["G2962"]],[3,8,["G4341"]],[8,9,["G846"]],[9,10,["G3004"]],[10,12,["G846"]],[12,15,["G4190"]],[15,16,["G1401"]],[16,18,["G863"]],[18,19,["G4671"]],[19,20,["G3956"]],[20,21,["G1565"]],[21,22,["G3782"]],[22,23,["G1893"]],[23,25,["G3870"]],[25,26,["G3165"]]]},{"k":23760,"v":[[0,1,["G1163"]],[1,2,["G3756"]],[2,3,["G4571"]],[3,4,["G2532"]],[4,7,["G1653"]],[7,9,["G4675"]],[9,10,["G4889"]],[10,11,["G2532"]],[11,12,["G5613"]],[12,13,["G1473"]],[13,15,["G1653"]],[15,17,["G4571"]]]},{"k":23761,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G2962"]],[3,5,["G3710"]],[5,7,["G3860"]],[7,8,["G846"]],[8,10,["G3588"]],[10,11,["G930"]],[11,12,["G2193"]],[12,13,["(G3739)"]],[13,15,["G591"]],[15,16,["G3956"]],[16,19,["G3784"]],[19,21,["G846"]]]},{"k":23762,"v":[[0,2,["G3779"]],[2,4,["G3450"]],[4,5,["G2032"]],[5,6,["G3962"]],[6,7,["G4160"]],[7,8,["G2532"]],[8,10,["G5213"]],[10,11,["G3362"]],[11,13,["G575"]],[13,14,["G5216"]],[14,15,["G2588"]],[15,16,["G863"]],[16,17,["G3362"]],[17,19,["G1538"]],[19,20,["G848"]],[20,21,["G80"]],[21,22,["G846"]],[22,23,["G3900"]]]},{"k":23763,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G3753"]],[7,8,["G2424"]],[8,10,["G5055"]],[10,11,["G5128"]],[11,12,["G3056"]],[12,14,["G3332"]],[14,15,["G575"]],[15,16,["G1056"]],[16,17,["G2532"]],[17,18,["G2064"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G3725"]],[21,23,["G2449"]],[23,24,["G4008"]],[24,25,["G2446"]]]},{"k":23764,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,3,["G3793"]],[3,4,["G190"]],[4,5,["G846"]],[5,6,["G2532"]],[6,8,["G2323"]],[8,9,["G846"]],[9,10,["G1563"]]]},{"k":23765,"v":[[0,1,["G3588"]],[1,2,["G5330"]],[2,3,["G2532"]],[3,4,["G4334"]],[4,6,["G846"]],[6,7,["G3985"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G3004"]],[10,12,["G846","(G1487)"]],[12,15,["G1832"]],[15,18,["G444"]],[18,21,["G630"]],[21,22,["G848"]],[22,23,["G1135"]],[23,24,["G2596"]],[24,25,["G3956"]],[25,26,["G156"]]]},{"k":23766,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,10,["G3756"]],[10,11,["G314"]],[11,12,["G3754"]],[12,15,["G4160"]],[15,17,["G575"]],[17,19,["G746"]],[19,20,["G4160"]],[20,21,["G846"]],[21,22,["G730"]],[22,23,["G2532"]],[23,24,["G2338"]]]},{"k":23767,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,5,["G1752","G5127"]],[5,8,["G444"]],[8,9,["G2641"]],[9,10,["G3962"]],[10,11,["G2532"]],[11,12,["G3384"]],[12,13,["G2532"]],[13,15,["G4347"]],[15,17,["G848"]],[17,18,["G1135"]],[18,19,["G2532"]],[19,21,["G1417"]],[21,23,["G2071"]],[23,24,["G3391","(G1519)"]],[24,25,["G4561"]]]},{"k":23768,"v":[[0,1,["G5620"]],[1,3,["G1526"]],[3,5,["G3765"]],[5,6,["G1417"]],[6,7,["G235"]],[7,8,["G3391"]],[8,9,["G4561"]],[9,10,["G3739"]],[10,11,["G3767"]],[11,12,["G2316"]],[12,15,["G4801"]],[15,17,["G3361"]],[17,18,["G444"]],[18,20,["G5563"]]]},{"k":23769,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G5101"]],[5,7,["G3475"]],[7,8,["G3767"]],[8,9,["G1781"]],[9,11,["G1325"]],[11,13,["G975"]],[13,15,["G647"]],[15,16,["G2532"]],[16,20,["G630","G846"]]]},{"k":23770,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G3475"]],[5,6,["G4314"]],[6,8,["G3588"]],[8,12,["G4641","G5216"]],[12,13,["G2010"]],[13,14,["G5213"]],[14,17,["G630"]],[17,18,["G5216"]],[18,19,["G1135"]],[19,20,["G1161"]],[20,21,["G575"]],[21,23,["G746"]],[23,25,["G1096"]],[25,26,["G3756"]],[26,27,["G3779"]]]},{"k":23771,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3739","G302"]],[6,9,["G630"]],[9,10,["G848"]],[10,11,["G1135"]],[11,12,["G1508"]],[12,15,["G1909"]],[15,16,["G4202"]],[16,17,["G2532"]],[17,19,["G1060"]],[19,20,["G243"]],[20,22,["G3429"]],[22,23,["G2532"]],[23,25,["G1060"]],[25,30,["G630"]],[30,33,["G3429"]]]},{"k":23772,"v":[[0,1,["G846"]],[1,2,["G3101"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G1487"]],[6,7,["G3588"]],[7,8,["G156"]],[8,10,["G3588"]],[10,11,["G444"]],[11,12,["G2076"]],[12,13,["G3779"]],[13,14,["G3326"]],[14,16,["G1135"]],[16,20,["G4851","G3756"]],[20,22,["G1060"]]]},{"k":23773,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G3956"]],[6,9,["G5562","G3756"]],[9,10,["G5126"]],[10,11,["G3056"]],[11,12,["G235"]],[12,15,["G3739"]],[15,18,["G1325"]]]},{"k":23774,"v":[[0,1,["G1063"]],[1,3,["G1526"]],[3,5,["G2135"]],[5,6,["G3748"]],[6,8,["G3779"]],[8,9,["G1080"]],[9,10,["G1537"]],[10,12,["G3384"]],[12,13,["G2836"]],[13,14,["G2532"]],[14,16,["G1526"]],[16,18,["G2135"]],[18,19,["G3748"]],[19,22,["G2134"]],[22,23,["G5259"]],[23,24,["G444"]],[24,25,["G2532"]],[25,27,["G1526"]],[27,28,["G2135"]],[28,29,["G3748"]],[29,33,["G2134","G1438"]],[33,39,["G1223","G3588","G932","G3772"]],[39,43,["G1410"]],[43,45,["G5562"]],[45,49,["G5562"]],[49,50,[]]]},{"k":23775,"v":[[0,1,["G5119"]],[1,4,["G4374"]],[4,6,["G846"]],[6,8,["G3813"]],[8,9,["G2443"]],[9,12,["G2007"]],[12,14,["G5495"]],[14,16,["G846"]],[16,17,["G2532"]],[17,18,["G4336"]],[18,19,["G1161"]],[19,20,["G3588"]],[20,21,["G3101"]],[21,22,["G2008"]],[22,23,["G846"]]]},{"k":23776,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G863"]],[4,6,["G3813"]],[6,7,["G2532"]],[7,8,["G2967"]],[8,9,["G846"]],[9,10,["G3361"]],[10,12,["G2064"]],[12,13,["G4314"]],[13,14,["G3165"]],[14,15,["G1063"]],[15,17,["G5108"]],[17,18,["G2076"]],[18,19,["G3588"]],[19,20,["G932"]],[20,22,["G3772"]]]},{"k":23777,"v":[[0,1,["G2532"]],[1,3,["G2007"]],[3,5,["G5495"]],[5,7,["G846"]],[7,9,["G4198"]],[9,10,["G1564"]]]},{"k":23778,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G1520"]],[3,4,["G4334"]],[4,6,["G2036"]],[6,8,["G846"]],[8,9,["G18"]],[9,10,["G1320"]],[10,11,["G5101"]],[11,13,["G18"]],[13,16,["G4160"]],[16,17,["G2443"]],[17,20,["G2192"]],[20,21,["G166"]],[21,22,["G2222"]]]},{"k":23779,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G5101"]],[6,7,["G3004"]],[7,9,["G3165"]],[9,10,["G18"]],[10,13,["G3762"]],[13,14,["G18"]],[14,15,["G1508"]],[15,16,["G1520"]],[16,19,["G2316"]],[19,20,["G1161"]],[20,21,["G1487"]],[21,23,["G2309"]],[23,24,["G1525"]],[24,25,["G1519"]],[25,26,["G2222"]],[26,27,["G5083"]],[27,28,["G3588"]],[28,29,["G1785"]]]},{"k":23780,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G4169"]],[5,6,["G2424"]],[6,7,["G2036"]],[7,9,["(G3588)"]],[9,12,["G5407","G3756"]],[12,15,["G3756"]],[15,17,["G3431"]],[17,20,["G3756"]],[20,21,["G2813"]],[21,27,["G5576"]]]},{"k":23781,"v":[[0,1,["G5091"]],[1,2,["G4675"]],[2,3,["G3962"]],[3,4,["G2532"]],[4,7,["G3384"]],[7,10,["G25"]],[10,11,["G4675"]],[11,12,["G4139"]],[12,13,["G5613"]],[13,14,["G4572"]]]},{"k":23782,"v":[[0,1,["G3588"]],[1,3,["G3495"]],[3,4,["G3004"]],[4,6,["G846"]],[6,7,["G3956"]],[7,9,["G5023"]],[9,12,["G5442"]],[12,13,["G1537"]],[13,14,["G3450"]],[14,15,["G3503"]],[15,17,["G5101"]],[17,18,["G5302"]],[18,20,["G2089"]]]},{"k":23783,"v":[[0,1,["G2424"]],[1,2,["G5346"]],[2,4,["G846"]],[4,5,["G1487"]],[5,7,["G2309"]],[7,8,["G1511"]],[8,9,["G5046"]],[9,10,["G5217"]],[10,12,["G4453"]],[12,15,["G5224","G4675"]],[15,16,["G2532"]],[16,17,["G1325"]],[17,20,["G4434"]],[20,21,["G2532"]],[21,24,["G2192"]],[24,25,["G2344"]],[25,26,["G1722"]],[26,27,["G3772"]],[27,28,["G2532"]],[28,29,["G1204"]],[29,31,["G190"]],[31,32,["G3427"]]]},{"k":23784,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,5,["G3495"]],[5,6,["G191"]],[6,8,["G3056"]],[8,11,["G565"]],[11,12,["G3076"]],[12,13,["G1063"]],[13,15,["G2258","G2192"]],[15,16,["G4183"]],[16,17,["G2933"]]]},{"k":23785,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,5,["G848"]],[5,6,["G3101"]],[6,7,["G281"]],[7,9,["G3004"]],[9,11,["G5213"]],[11,12,["G3754"]],[12,15,["G4145"]],[15,17,["G1423"]],[17,18,["G1525"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G932"]],[21,23,["G3772"]]]},{"k":23786,"v":[[0,1,["G1161"]],[1,2,["G3825"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,8,["G2076"]],[8,9,["G2123"]],[9,12,["G2574"]],[12,14,["G1330"]],[14,15,["G1223"]],[15,17,["G5169"]],[17,20,["G4476"]],[20,21,["G2228"]],[21,25,["G4145"]],[25,27,["G1525"]],[27,28,["G1519"]],[28,29,["G3588"]],[29,30,["G932"]],[30,32,["G2316"]]]},{"k":23787,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G3101"]],[3,4,["G191"]],[4,8,["G4970"]],[8,9,["G1605"]],[9,10,["G3004"]],[10,11,["G5101"]],[11,12,["G686"]],[12,13,["G1410"]],[13,15,["G4982"]]]},{"k":23788,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G1689"]],[3,6,["G2036"]],[6,8,["G846"]],[8,9,["G3844"]],[9,10,["G444"]],[10,11,["G5124"]],[11,12,["G2076"]],[12,13,["G102"]],[13,14,["G1161"]],[14,15,["G3844"]],[15,16,["G2316"]],[16,18,["G3956"]],[18,19,["G2076"]],[19,20,["G1415"]]]},{"k":23789,"v":[[0,1,["G5119"]],[1,2,["G611"]],[2,3,["G4074"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G2400"]],[8,9,["G2249"]],[9,11,["G863"]],[11,12,["G3956"]],[12,13,["G2532"]],[13,14,["G190"]],[14,15,["G4671"]],[15,16,["G5101"]],[16,18,["G2254"]],[18,19,["G2071"]],[19,20,["G686"]]]},{"k":23790,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G281"]],[6,8,["G3004"]],[8,10,["G5213"]],[10,11,["G3754"]],[11,12,["G5210"]],[12,15,["G190"]],[15,16,["G3427"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G3824"]],[19,20,["G3752"]],[20,21,["G3588"]],[21,22,["G5207"]],[22,24,["G444"]],[24,26,["G2523"]],[26,27,["G1909"]],[27,29,["G2362"]],[29,31,["G848"]],[31,32,["G1391"]],[32,33,["G5210"]],[33,34,["G2532"]],[34,36,["G2523"]],[36,37,["G1909"]],[37,38,["G1427"]],[38,39,["G2362"]],[39,40,["G2919"]],[40,41,["G3588"]],[41,42,["G1427"]],[42,43,["G5443"]],[43,45,["G2474"]]]},{"k":23791,"v":[[0,1,["G2532"]],[1,3,["G3956"]],[3,4,["G3739"]],[4,6,["G863"]],[6,7,["G3614"]],[7,8,["G2228"]],[8,9,["G80"]],[9,10,["G2228"]],[10,11,["G79"]],[11,12,["G2228"]],[12,13,["G3962"]],[13,14,["G2228"]],[14,15,["G3384"]],[15,16,["G2228"]],[16,17,["G1135"]],[17,18,["G2228"]],[18,19,["G5043"]],[19,20,["G2228"]],[20,21,["G68"]],[21,25,["G1752","G3450","G3686"]],[25,27,["G2983"]],[27,29,["G1542"]],[29,30,["G2532"]],[30,32,["G2816"]],[32,33,["G166"]],[33,34,["G2222"]]]},{"k":23792,"v":[[0,1,["G1161"]],[1,2,["G4183"]],[2,5,["G4413"]],[5,7,["G2071"]],[7,8,["G2078"]],[8,9,["G2532"]],[9,11,["G2078"]],[11,14,["G4413"]]]},{"k":23793,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G932"]],[3,5,["G3772"]],[5,6,["G2076"]],[6,8,["G3664"]],[8,10,["G444"]],[10,14,["G3617"]],[14,15,["G3748"]],[15,17,["G1831"]],[17,21,["G260","G4404"]],[21,23,["G3409"]],[23,24,["G2040"]],[24,25,["G1519"]],[25,26,["G848"]],[26,27,["G290"]]]},{"k":23794,"v":[[0,1,["G1161"]],[1,5,["G4856"]],[5,6,["G3326"]],[6,7,["G3588"]],[7,8,["G2040"]],[8,9,["G1537"]],[9,11,["G1220"]],[11,13,["G2250"]],[13,15,["G649"]],[15,16,["G846"]],[16,17,["G1519"]],[17,18,["G848"]],[18,19,["G290"]]]},{"k":23795,"v":[[0,1,["G2532"]],[1,4,["G1831"]],[4,5,["G4012"]],[5,6,["G3588"]],[6,7,["G5154"]],[7,8,["G5610"]],[8,10,["G1492"]],[10,11,["G243"]],[11,12,["G2476"]],[12,13,["G692"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G58"]]]},{"k":23796,"v":[[0,4,["G2548","G2036"]],[4,5,["G5217"]],[5,6,["G5210"]],[6,7,["G2532"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G290"]],[10,11,["G2532"]],[11,12,["G3739","G1437"]],[12,13,["G5600"]],[13,14,["G1342"]],[14,17,["G1325"]],[17,18,["G5213"]],[18,19,["G1161"]],[19,20,["G3588"]],[20,23,["G565"]]]},{"k":23797,"v":[[0,1,["G3825"]],[1,4,["G1831"]],[4,5,["G4012"]],[5,7,["G1623"]],[7,8,["G2532"]],[8,9,["G1766"]],[9,10,["G5610"]],[10,12,["G4160"]],[12,13,["G5615"]]]},{"k":23798,"v":[[0,1,["G1161"]],[1,2,["G4012"]],[2,3,["G3588"]],[3,4,["G1734"]],[4,5,["G5610"]],[5,8,["G1831"]],[8,10,["G2147"]],[10,11,["G243"]],[11,12,["G2476"]],[12,13,["G692"]],[13,14,["G2532"]],[14,15,["G3004"]],[15,17,["G846"]],[17,18,["G5101"]],[18,19,["G2476"]],[19,21,["G5602"]],[21,22,["G3650"]],[22,23,["G3588"]],[23,24,["G2250"]],[24,25,["G692"]]]},{"k":23799,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G3754"]],[5,7,["G3762"]],[7,9,["G3409"]],[9,10,["G2248"]],[10,12,["G3004"]],[12,14,["G846"]],[14,15,["G5217"]],[15,16,["G5210"]],[16,17,["G2532"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G290"]],[20,21,["G2532"]],[21,22,["G3739","G1437"]],[22,23,["G5600"]],[23,24,["G1342"]],[24,28,["G2983"]]]},{"k":23800,"v":[[0,1,["G1161"]],[1,3,["G3798"]],[3,5,["G1096"]],[5,6,["G3588"]],[6,7,["G2962"]],[7,9,["G3588"]],[9,10,["G290"]],[10,13,["G848"]],[13,14,["G2012"]],[14,15,["G2564"]],[15,16,["G3588"]],[16,17,["G2040"]],[17,18,["G2532"]],[18,19,["G591"]],[19,20,["G846"]],[20,22,["G3408"]],[22,23,["G756"]],[23,24,["G575"]],[24,25,["G3588"]],[25,26,["G2078"]],[26,27,["G2193"]],[27,28,["G3588"]],[28,29,["G4413"]]]},{"k":23801,"v":[[0,1,["G2532"]],[1,4,["G2064"]],[4,5,["G3588"]],[5,8,["G4012"]],[8,9,["G3588"]],[9,10,["G1734"]],[10,11,["G5610"]],[11,13,["G2983"]],[13,15,["G303"]],[15,17,["G1220"]]]},{"k":23802,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G4413"]],[4,5,["G2064"]],[5,7,["G3543"]],[7,8,["G3754"]],[8,12,["G2983"]],[12,13,["G4119"]],[13,14,["G2532"]],[14,15,["G846"]],[15,16,["G2532"]],[16,17,["G2983"]],[17,19,["G303"]],[19,21,["G1220"]]]},{"k":23803,"v":[[0,1,["G1161"]],[1,5,["G2983"]],[5,8,["G1111"]],[8,9,["G2596"]],[9,10,["G3588"]],[10,14,["G3617"]]]},{"k":23804,"v":[[0,1,["G3004"]],[1,2,["G3778"]],[2,3,["G2078"]],[3,5,["G4160"]],[5,7,["G3391"]],[7,8,["G5610"]],[8,9,["G2532"]],[9,12,["G4160"]],[12,13,["G846"]],[13,14,["G2470"]],[14,16,["G2254"]],[16,19,["G941"]],[19,20,["G3588"]],[20,21,["G922"]],[21,22,["G2532"]],[22,23,["G2742"]],[23,25,["G3588"]],[25,26,["G2250"]]]},{"k":23805,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,4,["G1520"]],[4,6,["G846"]],[6,8,["G2036"]],[8,9,["G2083"]],[9,14,["G91","G4571","G3756"]],[14,16,["G3780"]],[16,18,["G4856"]],[18,20,["G3427"]],[20,23,["G1220"]]]},{"k":23806,"v":[[0,1,["G142"]],[1,3,["G4674"]],[3,5,["G2532"]],[5,8,["G5217"]],[8,9,["(G1161)"]],[9,10,["G2309"]],[10,11,["G1325"]],[11,13,["G5129"]],[13,14,["G2078"]],[14,15,["G2532"]],[15,16,["G5613"]],[16,18,["G4671"]]]},{"k":23807,"v":[[0,4,["G1832","G3756"]],[4,6,["G3427"]],[6,8,["G4160"]],[8,9,["G3739"]],[9,11,["G2309"]],[11,12,["G1722"]],[12,14,["G1699","(G1487)"]],[14,15,["G2076"]],[15,16,["G4675"]],[16,17,["G3788"]],[17,18,["G4190"]],[18,19,["G3754"]],[19,20,["G1473"]],[20,21,["G1510"]],[21,22,["G18"]]]},{"k":23808,"v":[[0,1,["G3779"]],[1,2,["G3588"]],[2,3,["G2078"]],[3,5,["G2071"]],[5,6,["G4413"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G4413"]],[9,10,["G2078"]],[10,11,["G1063"]],[11,12,["G4183"]],[12,13,["G1526"]],[13,14,["G2822"]],[14,15,["G1161"]],[15,16,["G3641"]],[16,17,["G1588"]]]},{"k":23809,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,4,["G305"]],[4,5,["G1519"]],[5,6,["G2414"]],[6,7,["G3880"]],[7,8,["G3588"]],[8,9,["G1427"]],[9,10,["G3101"]],[10,11,["G2596","G2398"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G3598"]],[14,15,["G2532"]],[15,16,["G2036"]],[16,18,["G846"]]]},{"k":23810,"v":[[0,1,["G2400"]],[1,4,["G305"]],[4,5,["G1519"]],[5,6,["G2414"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G5207"]],[9,11,["G444"]],[11,14,["G3860"]],[14,16,["G3588"]],[16,18,["G749"]],[18,19,["G2532"]],[19,22,["G1122"]],[22,23,["G2532"]],[23,26,["G2632"]],[26,27,["G846"]],[27,29,["G2288"]]]},{"k":23811,"v":[[0,1,["G2532"]],[1,3,["G3860"]],[3,4,["G846"]],[4,6,["G3588"]],[6,7,["G1484"]],[7,9,["G1702"]],[9,10,["G2532"]],[10,12,["G3146"]],[12,13,["G2532"]],[13,15,["G4717"]],[15,17,["G2532"]],[17,18,["G3588"]],[18,19,["G5154"]],[19,20,["G2250"]],[20,24,["G450"]]]},{"k":23812,"v":[[0,1,["G5119"]],[1,2,["G4334"]],[2,4,["G846"]],[4,5,["G3588"]],[5,6,["G3384"]],[6,8,["G2199"]],[8,9,["G5207"]],[9,10,["G3326"]],[10,11,["G848"]],[11,12,["G5207"]],[12,13,["G4352"]],[13,15,["G2532"]],[15,16,["G154"]],[16,19,["G5100"]],[19,20,["G3844"]],[20,21,["G846"]]]},{"k":23813,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G5101"]],[6,7,["G2309"]],[7,10,["G3004"]],[10,12,["G846"]],[12,13,["G2036"]],[13,14,["G2443"]],[14,15,["G3778"]],[15,16,["G3450"]],[16,17,["G1417"]],[17,18,["G5207"]],[18,20,["G2523"]],[20,22,["G1520"]],[22,23,["G1537"]],[23,24,["G4675"]],[24,26,["G1188"]],[26,27,["G2532"]],[27,29,["G1520"]],[29,30,["G1537"]],[30,32,["G2176"]],[32,33,["G1722"]],[33,34,["G4675"]],[34,35,["G932"]]]},{"k":23814,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G1492"]],[7,8,["G3756"]],[8,9,["G5101"]],[9,11,["G154"]],[11,14,["G1410"]],[14,16,["G4095"]],[16,18,["G3588"]],[18,19,["G4221"]],[19,20,["G3739"]],[20,21,["G1473"]],[21,22,["G3195"]],[22,23,["G4095"]],[23,25,["G2532"]],[25,28,["G907"]],[28,30,["G3588"]],[30,31,["G908"]],[31,32,["G3739"]],[32,33,["G1473"]],[33,35,["G907"]],[35,38,["G3004"]],[38,40,["G846"]],[40,43,["G1410"]]]},{"k":23815,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,8,["G4095"]],[8,9,["G3303"]],[9,11,["G3450"]],[11,12,["G4221"]],[12,13,["G2532"]],[13,15,["G907"]],[15,17,["G3588"]],[17,18,["G908"]],[18,19,["G3739"]],[19,20,["G1473"]],[20,22,["G907"]],[22,24,["G1161"]],[24,26,["G2523"]],[26,27,["G1537"]],[27,28,["G3450"]],[28,30,["G1188"]],[30,31,["G2532"]],[31,32,["G1537"]],[32,33,["G3450"]],[33,34,["G2176"]],[34,35,["G2076"]],[35,36,["G3756"]],[36,37,["G1699"]],[37,39,["G1325"]],[39,40,["G235"]],[40,48,["G3739"]],[48,51,["G2090"]],[51,52,["G5259"]],[52,53,["G3450"]],[53,54,["G3962"]]]},{"k":23816,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G1176"]],[4,5,["G191"]],[5,11,["G23"]],[11,12,["G4012"]],[12,13,["G3588"]],[13,14,["G1417"]],[14,15,["G80"]]]},{"k":23817,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G4341"]],[3,4,["G846"]],[4,8,["G2036"]],[8,10,["G1492"]],[10,11,["G3754"]],[11,12,["G3588"]],[12,13,["G758"]],[13,15,["G3588"]],[15,16,["G1484"]],[16,18,["G2634"]],[18,20,["G846"]],[20,21,["G2532"]],[21,25,["G3173"]],[25,27,["G2715"]],[27,29,["G846"]]]},{"k":23818,"v":[[0,1,["G1161"]],[1,4,["G3756"]],[4,5,["G2071"]],[5,6,["G3779"]],[6,7,["G1722"]],[7,8,["G5213"]],[8,9,["G235"]],[9,10,["G3739","G1437"]],[10,11,["G2309"]],[11,12,["G1096"]],[12,13,["G3173"]],[13,14,["G1722"]],[14,15,["G5213"]],[15,18,["G2077"]],[18,19,["G5216"]],[19,20,["G1249"]]]},{"k":23819,"v":[[0,1,["G2532"]],[1,2,["G3739","G1437"]],[2,3,["G2309"]],[3,4,["G1511"]],[4,5,["G4413"]],[5,6,["G1722"]],[6,7,["G5213"]],[7,10,["G2077"]],[10,11,["G5216"]],[11,12,["G1401"]]]},{"k":23820,"v":[[0,2,["G5618"]],[2,3,["G3588"]],[3,4,["G5207"]],[4,6,["G444"]],[6,7,["G2064"]],[7,8,["G3756"]],[8,12,["G1247"]],[12,13,["G235"]],[13,15,["G1247"]],[15,16,["G2532"]],[16,18,["G1325"]],[18,19,["G848"]],[19,20,["G5590"]],[20,22,["G3083"]],[22,23,["G473"]],[23,24,["G4183"]]]},{"k":23821,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,4,["G1607"]],[4,5,["G575"]],[5,6,["G2410"]],[6,8,["G4183"]],[8,9,["G3793"]],[9,10,["G190"]],[10,11,["G846"]]]},{"k":23822,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G1417"]],[3,5,["G5185"]],[5,6,["G2521"]],[6,7,["G3844"]],[7,8,["G3588"]],[8,10,["G3598"]],[10,13,["G191"]],[13,14,["G3754"]],[14,15,["G2424"]],[15,17,["G3855"]],[17,19,["G2896"]],[19,20,["G3004"]],[20,22,["G1653"]],[22,24,["G2248"]],[24,26,["G2962"]],[26,28,["G5207"]],[28,30,["G1138"]]]},{"k":23823,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3793"]],[3,4,["G2008"]],[4,5,["G846"]],[5,6,["G2443"]],[6,11,["G4623"]],[11,12,["G1161"]],[12,13,["G3588"]],[13,14,["G2896"]],[14,16,["G3185"]],[16,17,["G3004"]],[17,19,["G1653"]],[19,21,["G2248"]],[21,23,["G2962"]],[23,25,["G5207"]],[25,27,["G1138"]]]},{"k":23824,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,4,["G2476"]],[4,6,["G5455"]],[6,7,["G846"]],[7,8,["G2532"]],[8,9,["G2036"]],[9,10,["G5101"]],[10,11,["G2309"]],[11,16,["G4160"]],[16,18,["G5213"]]]},{"k":23825,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G2962"]],[5,6,["G2443"]],[6,7,["G2257"]],[7,8,["G3788"]],[8,11,["G455"]]]},{"k":23826,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,4,["G4697"]],[4,8,["G680"]],[8,9,["G846"]],[9,10,["G3788"]],[10,11,["G2532"]],[11,12,["G2112"]],[12,13,["G846"]],[13,14,["G3788"]],[14,16,["G308"]],[16,17,["G2532"]],[17,19,["G190"]],[19,20,["G846"]]]},{"k":23827,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G1448"]],[5,6,["G1519"]],[6,7,["G2414"]],[7,8,["G2532"]],[8,10,["G2064"]],[10,11,["G1519"]],[11,12,["G967"]],[12,13,["G4314"]],[13,14,["G3588"]],[14,15,["G3735"]],[15,17,["G1636"]],[17,18,["G5119"]],[18,19,["G649"]],[19,20,["G2424"]],[20,21,["G1417"]],[21,22,["G3101"]]]},{"k":23828,"v":[[0,1,["G3004"]],[1,3,["G846"]],[3,4,["G4198"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G2968"]],[7,9,["G561"]],[9,10,["G5216"]],[10,11,["G2532"]],[11,12,["G2112"]],[12,15,["G2147"]],[15,17,["G3688"]],[17,18,["G1210"]],[18,19,["G2532"]],[19,21,["G4454"]],[21,22,["G3326"]],[22,23,["G846"]],[23,24,["G3089"]],[24,27,["G71"]],[27,30,["G3427"]]]},{"k":23829,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,3,["G5100"]],[3,5,["G2036"]],[5,6,["G5100"]],[6,8,["G5213"]],[8,11,["G2046"]],[11,12,["G3588"]],[12,13,["G2962"]],[13,14,["G2192"]],[14,15,["G5532"]],[15,17,["G846"]],[17,18,["G2532"]],[18,19,["G2112"]],[19,22,["G649"]],[22,23,["G846"]]]},{"k":23830,"v":[[0,0,["(G1161)"]],[0,1,["G3650"]],[1,2,["G5124"]],[2,4,["G1096"]],[4,5,["G2443"]],[5,9,["G4137"]],[9,12,["G4483"]],[12,13,["G1223"]],[13,14,["G3588"]],[14,15,["G4396"]],[15,16,["G3004"]]]},{"k":23831,"v":[[0,1,["G2036"]],[1,3,["G3588"]],[3,4,["G2364"]],[4,6,["G4622"]],[6,7,["G2400"]],[7,8,["G4675"]],[8,9,["G935"]],[9,10,["G2064"]],[10,12,["G4671"]],[12,13,["G4239"]],[13,14,["G2532"]],[14,15,["G1910"]],[15,16,["G1909"]],[16,18,["G3688"]],[18,19,["G2532"]],[19,21,["G4454"]],[21,23,["G5207"]],[23,26,["G5268"]]]},{"k":23832,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,4,["G4198"]],[4,5,["G2532"]],[5,6,["G4160"]],[6,7,["G2531"]],[7,8,["G2424"]],[8,9,["G4367"]],[9,10,["G846"]]]},{"k":23833,"v":[[0,2,["G71"]],[2,3,["G3588"]],[3,4,["G3688"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G4454"]],[7,8,["G2532"]],[8,9,["G2007"]],[9,10,["G1883"]],[10,11,["G846"]],[11,12,["G848"]],[12,13,["G2440"]],[13,14,["G2532"]],[14,16,["G1940"]],[16,18,["G1883","G846"]]]},{"k":23834,"v":[[0,1,["G1161"]],[1,4,["G4118"]],[4,5,["G3793"]],[5,6,["G4766"]],[6,7,["G1438"]],[7,8,["G2440"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G3598","(G1161)"]],[11,12,["G243"]],[12,14,["G2875"]],[14,15,["G2798"]],[15,16,["G575"]],[16,17,["G3588"]],[17,18,["G1186"]],[18,19,["G2532"]],[19,20,["G4766"]],[20,22,["G1722"]],[22,23,["G3588"]],[23,24,["G3598"]]]},{"k":23835,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3793"]],[3,6,["G4254"]],[6,7,["G2532"]],[7,9,["G190"]],[9,10,["G2896"]],[10,11,["G3004"]],[11,12,["G5614"]],[12,14,["G3588"]],[14,15,["G5207"]],[15,17,["G1138"]],[17,18,["G2127"]],[18,22,["G2064"]],[22,23,["G1722"]],[23,25,["G3686"]],[25,28,["G2962"]],[28,29,["G5614"]],[29,30,["G1722"]],[30,31,["G3588"]],[31,32,["G5310"]]]},{"k":23836,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G1525"]],[5,6,["G1519"]],[6,7,["G2414"]],[7,8,["G3956"]],[8,9,["G3588"]],[9,10,["G4172"]],[10,12,["G4579"]],[12,13,["G3004"]],[13,14,["G5101"]],[14,15,["G2076"]],[15,16,["G3778"]]]},{"k":23837,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3793"]],[3,4,["G3004"]],[4,5,["G3778"]],[5,6,["G2076"]],[6,7,["G2424"]],[7,8,["G3588"]],[8,9,["G4396"]],[9,10,["G575"]],[10,11,["G3478"]],[11,13,["G1056"]]]},{"k":23838,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G1525"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G2411"]],[6,8,["G2316"]],[8,9,["G2532"]],[9,11,["G1544"]],[11,12,["G3956"]],[12,15,["G4453"]],[15,16,["G2532"]],[16,17,["G59"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,20,["G2411"]],[20,21,["G2532"]],[21,22,["G2690"]],[22,23,["G3588"]],[23,24,["G5132"]],[24,26,["G3588"]],[26,27,["G2855"]],[27,28,["G2532"]],[28,29,["G3588"]],[29,30,["G2515"]],[30,34,["G4453"]],[34,35,["G4058"]]]},{"k":23839,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,4,["G846"]],[4,7,["G1125"]],[7,8,["G3450"]],[8,9,["G3624"]],[9,12,["G2564"]],[12,14,["G3624"]],[14,16,["G4335"]],[16,17,["G1161"]],[17,18,["G5210"]],[18,20,["G4160"]],[20,21,["G846"]],[21,23,["G4693"]],[23,25,["G3027"]]]},{"k":23840,"v":[[0,1,["G2532"]],[1,3,["G5185"]],[3,4,["G2532"]],[4,6,["G5560"]],[6,7,["G4334"]],[7,9,["G846"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G2411"]],[12,13,["G2532"]],[13,15,["G2323"]],[15,16,["G846"]]]},{"k":23841,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,5,["G749"]],[5,6,["G2532"]],[6,7,["G1122"]],[7,8,["G1492"]],[8,9,["G3588"]],[9,11,["G2297"]],[11,12,["G3739"]],[12,14,["G4160"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G3816"]],[17,18,["G2896"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G2411"]],[21,22,["G2532"]],[22,23,["G3004"]],[23,24,["G5614"]],[24,26,["G3588"]],[26,27,["G5207"]],[27,29,["G1138"]],[29,33,["G23"]]]},{"k":23842,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G191"]],[5,7,["G5101"]],[7,8,["G3778"]],[8,9,["G3004"]],[9,10,["G2532"]],[10,11,["G2424"]],[11,12,["G3004"]],[12,14,["G846"]],[14,15,["G3483"]],[15,18,["G3763"]],[18,19,["G314"]],[19,21,["G1537"]],[21,23,["G4750"]],[23,25,["G3516"]],[25,26,["G2532"]],[26,27,["G2337"]],[27,30,["G2675"]],[30,31,["G136"]]]},{"k":23843,"v":[[0,1,["G2532"]],[1,3,["G2641"]],[3,4,["G846"]],[4,6,["G1831"]],[6,7,["G1854"]],[7,9,["G3588"]],[9,10,["G4172"]],[10,11,["G1519"]],[11,12,["G963"]],[12,13,["G2532"]],[13,15,["G835"]],[15,16,["G1563"]]]},{"k":23844,"v":[[0,1,["G1161"]],[1,4,["G4405"]],[4,7,["G1877"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G4172"]],[10,12,["G3983"]]]},{"k":23845,"v":[[0,1,["G2532"]],[1,4,["G1492"]],[4,5,["G3391"]],[5,7,["G4808"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,10,["G3598"]],[10,12,["G2064"]],[12,13,["G1909"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G2147"]],[16,17,["G3762"]],[17,18,["G1722","G846"]],[18,19,["G1508"]],[19,20,["G5444"]],[20,21,["G3440"]],[21,22,["G2532"]],[22,23,["G3004"]],[23,25,["G846"]],[25,28,["G2590"]],[28,29,["G1096"]],[29,30,["G1537"]],[30,31,["G4675"]],[31,32,["G3371"]],[32,34,["G1519","G165"]],[34,35,["G2532"]],[35,36,["G3916"]],[36,37,["G3588"]],[37,39,["G4808"]],[39,41,["G3583"]]]},{"k":23846,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G3101"]],[4,5,["G1492"]],[5,8,["G2296"]],[8,9,["G3004"]],[9,10,["G4459"]],[10,11,["G3916"]],[11,13,["G3588"]],[13,15,["G4808"]],[15,17,["G3583"]]]},{"k":23847,"v":[[0,0,["(G1161)"]],[0,1,["G2424"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G846"]],[6,7,["G281"]],[7,9,["G3004"]],[9,11,["G5213"]],[11,12,["G1437"]],[12,14,["G2192"]],[14,15,["G4102"]],[15,16,["G2532"]],[16,17,["G1252"]],[17,18,["G3361"]],[18,21,["G3756"]],[21,22,["G3440"]],[22,23,["G4160"]],[23,24,["G3588"]],[24,29,["G3588"]],[29,31,["G4808"]],[31,32,["G235"]],[32,34,["G2579"]],[34,37,["G2036"]],[37,39,["G5129"]],[39,40,["G3735"]],[40,43,["G142"]],[43,44,["G2532"]],[44,47,["G906"]],[47,48,["G1519"]],[48,49,["G3588"]],[49,50,["G2281"]],[50,54,["G1096"]]]},{"k":23848,"v":[[0,1,["G2532"]],[1,3,["G3956"]],[3,4,["G3745","G302"]],[4,7,["G154"]],[7,8,["G1722"]],[8,9,["G4335"]],[9,10,["G4100"]],[10,13,["G2983"]]]},{"k":23849,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G2064"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G2411"]],[8,9,["G3588"]],[9,11,["G749"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G4245"]],[14,16,["G3588"]],[16,17,["G2992"]],[17,18,["G4334"]],[18,20,["G846"]],[20,24,["G1321"]],[24,26,["G3004"]],[26,27,["G1722"]],[27,28,["G4169"]],[28,29,["G1849"]],[29,30,["G4160"]],[30,33,["G5023"]],[33,34,["G2532"]],[34,35,["G5101"]],[35,36,["G1325"]],[36,37,["G4671"]],[37,38,["G5026"]],[38,39,["G1849"]]]},{"k":23850,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,9,["G2504"]],[9,11,["G2065"]],[11,12,["G5209"]],[12,13,["G1520"]],[13,14,["G3056"]],[14,15,["G3739"]],[15,16,["G1437"]],[16,18,["G2036"]],[18,19,["G3427"]],[19,23,["G2504"]],[23,25,["G2046"]],[25,26,["G5213"]],[26,27,["G1722"]],[27,28,["G4169"]],[28,29,["G1849"]],[29,31,["G4160"]],[31,33,["G5023"]]]},{"k":23851,"v":[[0,1,["G3588"]],[1,2,["G908"]],[2,4,["G2491"]],[4,5,["G4159"]],[5,6,["G2258"]],[6,8,["G1537"]],[8,9,["G3772"]],[9,10,["G2228"]],[10,11,["G1537"]],[11,12,["G444"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G1260"]],[15,16,["G3844"]],[16,17,["G1438"]],[17,18,["G3004"]],[18,19,["G1437"]],[19,22,["G2036"]],[22,23,["G1537"]],[23,24,["G3772"]],[24,27,["G2046"]],[27,29,["G2254"]],[29,30,["G1302"]],[30,33,["G3756"]],[33,34,["G3767"]],[34,35,["G4100"]],[35,36,["G846"]]]},{"k":23852,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,5,["G2036"]],[5,6,["G1537"]],[6,7,["G444"]],[7,9,["G5399"]],[9,10,["G3588"]],[10,11,["G3793"]],[11,12,["G1063"]],[12,13,["G3956"]],[13,14,["G2192"]],[14,15,["G2491"]],[15,16,["G5613"]],[16,18,["G4396"]]]},{"k":23853,"v":[[0,1,["G2532"]],[1,3,["G611"]],[3,4,["G2424"]],[4,6,["G2036"]],[6,9,["G1492","G3756"]],[9,10,["G2532"]],[10,11,["G846"]],[11,12,["G5346"]],[12,14,["G846"]],[14,15,["G3761"]],[15,16,["G3004"]],[16,17,["G1473"]],[17,18,["G5213"]],[18,19,["G1722"]],[19,20,["G4169"]],[20,21,["G1849"]],[21,23,["G4160"]],[23,25,["G5023"]]]},{"k":23854,"v":[[0,1,["G1161"]],[1,2,["G5101"]],[2,3,["G1380"]],[3,4,["G5213"]],[4,7,["G444"]],[7,8,["G2192"]],[8,9,["G1417"]],[9,10,["G5043"]],[10,11,["G2532"]],[11,13,["G4334"]],[13,15,["G3588"]],[15,16,["G4413"]],[16,18,["G2036"]],[18,19,["G5043"]],[19,20,["G5217"]],[20,21,["G2038"]],[21,23,["G4594"]],[23,24,["G1722"]],[24,25,["G3450"]],[25,26,["G290"]]]},{"k":23855,"v":[[0,1,["G3588"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G2309"]],[6,7,["G3756"]],[7,8,["G1161"]],[8,9,["G5305"]],[9,11,["G3338"]],[11,13,["G565"]]]},{"k":23856,"v":[[0,1,["G2532"]],[1,3,["G4334"]],[3,5,["G3588"]],[5,6,["G1208"]],[6,8,["G2036"]],[8,9,["G5615"]],[9,10,["G1161"]],[10,11,["G3588"]],[11,12,["G611"]],[12,14,["G2036"]],[14,15,["G1473"]],[15,17,["G2962"]],[17,18,["G2532"]],[18,19,["G565"]],[19,20,["G3756"]]]},{"k":23857,"v":[[0,1,["G5101"]],[1,2,["G1537"]],[2,3,["G3588"]],[3,4,["G1417"]],[4,5,["G4160"]],[5,6,["G3588"]],[6,7,["G2307"]],[7,11,["G3962"]],[11,12,["G3004"]],[12,14,["G846"]],[14,15,["G3588"]],[15,16,["G4413"]],[16,17,["G2424"]],[17,18,["G3004"]],[18,20,["G846"]],[20,21,["G281"]],[21,23,["G3004"]],[23,25,["G5213"]],[25,26,["G3754"]],[26,27,["G3588"]],[27,28,["G5057"]],[28,29,["G2532"]],[29,30,["G3588"]],[30,31,["G4204"]],[31,38,["G4254","G1519","G3588","G932","G2316"]],[38,39,["G5209"]]]},{"k":23858,"v":[[0,1,["G1063"]],[1,2,["G2491"]],[2,3,["G2064"]],[3,4,["G4314"]],[4,5,["G5209"]],[5,6,["G1722"]],[6,8,["G3598"]],[8,10,["G1343"]],[10,11,["G2532"]],[11,13,["G4100"]],[13,14,["G846"]],[14,15,["G3756"]],[15,16,["G1161"]],[16,17,["G3588"]],[17,18,["G5057"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G4204"]],[21,22,["G4100"]],[22,23,["G846"]],[23,24,["G1161"]],[24,25,["G5210"]],[25,29,["G1492"]],[29,31,["G3338"]],[31,32,["G3756"]],[32,33,["G5305"]],[33,37,["G4100"]],[37,38,["G846"]]]},{"k":23859,"v":[[0,1,["G191"]],[1,2,["G243"]],[2,3,["G3850"]],[3,5,["G2258"]],[5,7,["G5100"]],[7,8,["(G3617)"]],[8,9,["G3748"]],[9,10,["G5452"]],[10,12,["G290"]],[12,13,["G2532"]],[13,17,["G4060","G846","G5418"]],[17,18,["G2532"]],[18,19,["G3736"]],[19,21,["G3025"]],[21,22,["G1722"]],[22,23,["G846"]],[23,24,["G2532"]],[24,25,["G3618"]],[25,27,["G4444"]],[27,28,["G2532"]],[28,31,["G1554","G846"]],[31,33,["G1092"]],[33,34,["G2532"]],[34,39,["G589"]]]},{"k":23860,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,3,["G3588"]],[3,4,["G2540"]],[4,6,["G3588"]],[6,7,["G2590"]],[7,9,["G1448"]],[9,11,["G649"]],[11,12,["G848"]],[12,13,["G1401"]],[13,14,["G4314"]],[14,15,["G3588"]],[15,16,["G1092"]],[16,20,["G2983"]],[20,21,["G3588"]],[21,22,["G2590"]],[22,24,["G846"]]]},{"k":23861,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1092"]],[3,4,["G2983"]],[4,5,["G846"]],[5,6,["G1401"]],[6,8,["G1194"]],[8,9,["G3739","G3303"]],[9,10,["G1161"]],[10,11,["G615"]],[11,12,["G3739"]],[12,13,["G1161"]],[13,14,["G3036"]],[14,15,["G3739"]]]},{"k":23862,"v":[[0,1,["G3825"]],[1,3,["G649"]],[3,4,["G243"]],[4,5,["G1401"]],[5,6,["G4119"]],[6,8,["G3588"]],[8,9,["G4413"]],[9,10,["G2532"]],[10,12,["G4160"]],[12,14,["G846"]],[14,15,["G5615"]]]},{"k":23863,"v":[[0,1,["G1161"]],[1,2,["G5305"]],[2,6,["G649"]],[6,7,["G4314"]],[7,8,["G846"]],[8,9,["G848"]],[9,10,["G5207"]],[10,11,["G3004"]],[11,14,["G1788"]],[14,15,["G3450"]],[15,16,["G5207"]]]},{"k":23864,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1092"]],[4,5,["G1492"]],[5,6,["G3588"]],[6,7,["G5207"]],[7,9,["G2036"]],[9,10,["G1722"]],[10,11,["G1438"]],[11,12,["G3778"]],[12,13,["G2076"]],[13,14,["G3588"]],[14,15,["G2818"]],[15,16,["G1205"]],[16,19,["G615"]],[19,20,["G846"]],[20,21,["G2532"]],[21,25,["G2722"]],[25,26,["G846"]],[26,27,["G2817"]]]},{"k":23865,"v":[[0,1,["G2532"]],[1,3,["G2983"]],[3,4,["G846"]],[4,5,["G2532"]],[5,6,["G1544"]],[6,8,["G1854"]],[8,10,["G3588"]],[10,11,["G290"]],[11,12,["G2532"]],[12,13,["G615"]],[13,14,[]]]},{"k":23866,"v":[[0,1,["G3752"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G3767"]],[4,6,["G3588"]],[6,7,["G290"]],[7,8,["G2064"]],[8,9,["G5101"]],[9,12,["G4160"]],[12,14,["G1565"]],[14,15,["G1092"]]]},{"k":23867,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,7,["G2560"]],[7,8,["G622"]],[8,9,["G846"]],[9,11,["G2556"]],[11,12,["G2532"]],[12,15,["G1554"]],[15,17,["G290"]],[17,19,["G243"]],[19,20,["G1092"]],[20,21,["G3748"]],[21,23,["G591"]],[23,24,["G846"]],[24,25,["G3588"]],[25,26,["G2590"]],[26,27,["G1722"]],[27,28,["G846"]],[28,29,["G2540"]]]},{"k":23868,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,7,["G3763"]],[7,8,["G314"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G1124"]],[11,13,["G3037"]],[13,14,["G3739"]],[14,15,["G3588"]],[15,16,["G3618"]],[16,17,["G593"]],[17,19,["G3778"]],[19,21,["G1096"]],[21,22,["(G1519)"]],[22,23,["G2776"]],[23,26,["G1137"]],[26,27,["G3778"]],[27,28,["G1096"]],[28,31,["G3844","G2962"]],[31,32,["G2532"]],[32,34,["G2076"]],[34,35,["G2298"]],[35,36,["G1722"]],[36,37,["G2257"]],[37,38,["G3788"]]]},{"k":23869,"v":[[0,1,["G1223","G5124"]],[1,2,["G3004"]],[2,5,["G5213"]],[5,6,["G3588"]],[6,7,["G932"]],[7,9,["G2316"]],[9,12,["G142"]],[12,13,["G575"]],[13,14,["G5216"]],[14,15,["G2532"]],[15,16,["G1325"]],[16,19,["G1484"]],[19,21,["G4160"]],[21,22,["G3588"]],[22,23,["G2590"]],[23,24,["G846"]]]},{"k":23870,"v":[[0,1,["G2532"]],[1,4,["G4098"]],[4,5,["G1909"]],[5,6,["G5126"]],[6,7,["G3037"]],[7,10,["G4917"]],[10,11,["G1161"]],[11,12,["G1909"]],[12,13,["G3739","G302"]],[13,16,["G4098"]],[16,22,["G3039","G846"]]]},{"k":23871,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,5,["G749"]],[5,6,["G2532"]],[6,7,["G5330"]],[7,9,["G191"]],[9,10,["G846"]],[10,11,["G3850"]],[11,13,["G1097"]],[13,14,["G3754"]],[14,16,["G3004"]],[16,17,["G4012"]],[17,18,["G846"]]]},{"k":23872,"v":[[0,1,["G2532"]],[1,4,["G2212"]],[4,7,["G2902"]],[7,9,["G846"]],[9,11,["G5399"]],[11,12,["G3588"]],[12,13,["G3793"]],[13,14,["G1894"]],[14,16,["G2192"]],[16,17,["G846"]],[17,18,["G5613"]],[18,20,["G4396"]]]},{"k":23873,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G3825"]],[8,9,["G1722"]],[9,10,["G3850"]],[10,12,["G3004"]]]},{"k":23874,"v":[[0,1,["G3588"]],[1,2,["G932"]],[2,4,["G3772"]],[4,7,["G3666"]],[7,10,["G444","G935"]],[10,11,["G3748"]],[11,12,["G4160"]],[12,14,["G1062"]],[14,16,["G848"]],[16,17,["G5207"]]]},{"k":23875,"v":[[0,1,["G2532"]],[1,3,["G649"]],[3,4,["G848"]],[4,5,["G1401"]],[5,7,["G2564"]],[7,11,["G2564"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G1062"]],[14,15,["G2532"]],[15,17,["G2309"]],[17,18,["G3756"]],[18,19,["G2064"]]]},{"k":23876,"v":[[0,1,["G3825"]],[1,4,["G649"]],[4,5,["G243"]],[5,6,["G1401"]],[6,7,["G3004"]],[7,8,["G2036"]],[8,12,["G2564"]],[12,13,["G2400"]],[13,16,["G2090"]],[16,17,["G3450"]],[17,18,["G712"]],[18,19,["G3450"]],[19,20,["G5022"]],[20,21,["G2532"]],[21,23,["G4619"]],[23,25,["G2380"]],[25,26,["G2532"]],[26,28,["G3956"]],[28,30,["G2092"]],[30,31,["G1205"]],[31,32,["G1519"]],[32,33,["G3588"]],[33,34,["G1062"]]]},{"k":23877,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,5,["G272"]],[5,10,["G565"]],[10,11,["G3588","G3303"]],[11,12,["G1519"]],[12,13,["G2398"]],[13,14,["G68","(G1161)"]],[14,15,["G3588","G3303"]],[15,16,["G1519"]],[16,17,["G848"]],[17,18,["G1711"]]]},{"k":23878,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3062"]],[3,4,["G2902"]],[4,5,["G846"]],[5,6,["G1401"]],[6,10,["G5195"]],[10,11,["G2532"]],[11,12,["G615"]],[12,13,[]]]},{"k":23879,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G935"]],[4,5,["G191"]],[5,9,["G3710"]],[9,10,["G2532"]],[10,13,["G3992"]],[13,14,["G848"]],[14,15,["G4753"]],[15,17,["G622"]],[17,18,["G1565"]],[18,19,["G5406"]],[19,20,["G2532"]],[20,22,["G1714"]],[22,23,["G846"]],[23,24,["G4172"]]]},{"k":23880,"v":[[0,1,["G5119"]],[1,2,["G3004"]],[2,5,["G848"]],[5,6,["G1401"]],[6,7,["G3588"]],[7,8,["G1062","(G3303)"]],[8,9,["G2076"]],[9,10,["G2092"]],[10,11,["G1161"]],[11,15,["G2564"]],[15,16,["G2258"]],[16,17,["G3756"]],[17,18,["G514"]]]},{"k":23881,"v":[[0,1,["G4198"]],[1,3,["G3767"]],[3,4,["G1909"]],[4,5,["G3588"]],[5,6,["G1327","G3598"]],[6,7,["G2532"]],[7,10,["G3745","G302"]],[10,13,["G2147"]],[13,14,["G2564"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G1062"]]]},{"k":23882,"v":[[0,1,["G2532"]],[1,2,["G1565"]],[2,3,["G1401"]],[3,5,["G1831"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G3598"]],[8,11,["G4863"]],[11,12,["G3956"]],[12,15,["G3745"]],[15,17,["G2147"]],[17,18,["G5037"]],[18,19,["G4190"]],[19,20,["G2532"]],[20,21,["G18"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G1062"]],[24,26,["G4130"]],[26,28,["G345"]]]},{"k":23883,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G935"]],[4,6,["G1525"]],[6,8,["G2300"]],[8,9,["G3588"]],[9,10,["G345"]],[10,12,["G1492"]],[12,13,["G1563"]],[13,15,["G444"]],[15,19,["G1746","G3756"]],[19,21,["G1062"]],[21,22,["G1742"]]]},{"k":23884,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G2083"]],[6,7,["G4459"]],[7,8,["G1525"]],[8,11,["G5602"]],[11,12,["G3361"]],[12,13,["G2192"]],[13,15,["G1062"]],[15,16,["G1742"]],[16,17,["G1161"]],[17,18,["G3588"]],[18,20,["G5392"]]]},{"k":23885,"v":[[0,1,["G5119"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,4,["G935"]],[4,6,["G3588"]],[6,7,["G1249"]],[7,8,["G1210"]],[8,9,["G846"]],[9,10,["G5495"]],[10,11,["G2532"]],[11,12,["G4228"]],[12,16,["G142","G846"]],[16,17,["G2532"]],[17,18,["G1544"]],[18,20,["G1519"]],[20,21,["G1857"]],[21,22,["G4655"]],[22,23,["G1563"]],[23,25,["G2071"]],[25,26,["G2805"]],[26,27,["G2532"]],[27,28,["G1030"]],[28,30,["G3599"]]]},{"k":23886,"v":[[0,1,["G1063"]],[1,2,["G4183"]],[2,3,["G1526"]],[3,4,["G2822"]],[4,5,["G1161"]],[5,6,["G3641"]],[6,8,["G1588"]]]},{"k":23887,"v":[[0,1,["G5119"]],[1,2,["G4198"]],[2,3,["G3588"]],[3,4,["G5330"]],[4,5,["G2532"]],[5,6,["G2983"]],[6,7,["G4824"]],[7,8,["G3704"]],[8,11,["G3802"]],[11,12,["G846"]],[12,13,["G1722"]],[13,15,["G3056"]]]},{"k":23888,"v":[[0,1,["G2532"]],[1,4,["G649"]],[4,6,["G846"]],[6,7,["G848"]],[7,8,["G3101"]],[8,9,["G3326"]],[9,10,["G3588"]],[10,11,["G2265"]],[11,12,["G3004"]],[12,13,["G1320"]],[13,15,["G1492"]],[15,16,["G3754"]],[16,18,["G1488"]],[18,19,["G227"]],[19,20,["G2532"]],[20,21,["G1321"]],[21,22,["G3588"]],[22,23,["G3598"]],[23,25,["G2316"]],[25,26,["G1722"]],[26,27,["G225"]],[27,28,["G2532","G3756"]],[28,29,["G3199"]],[29,30,["G4671"]],[30,31,["G4012"]],[31,32,["G3762"]],[32,34,["G1063"]],[34,36,["G991"]],[36,37,["G3756"]],[37,38,["(G1519)"]],[38,39,["G4383"]],[39,41,["G444"]]]},{"k":23889,"v":[[0,1,["G2036"]],[1,2,["G2254"]],[2,3,["G3767"]],[3,4,["G5101"]],[4,5,["G1380"]],[5,6,["G4671"]],[6,9,["G1832"]],[9,11,["G1325"]],[11,12,["G2778"]],[12,14,["G2541"]],[14,15,["G2228"]],[15,16,["G3756"]]]},{"k":23890,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G1097"]],[3,4,["G846"]],[4,5,["G4189"]],[5,7,["G2036"]],[7,8,["G5101"]],[8,9,["G3985"]],[9,11,["G3165"]],[11,13,["G5273"]]]},{"k":23891,"v":[[0,1,["G1925"]],[1,2,["G3427"]],[2,3,["G3588"]],[3,4,["G2778"]],[4,5,["G3546"]],[5,6,["G1161"]],[6,7,["G3588"]],[7,8,["G4374"]],[8,10,["G846"]],[10,12,["G1220"]]]},{"k":23892,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G5101"]],[6,8,["G3778"]],[8,9,["G1504"]],[9,10,["G2532"]],[10,11,["G1923"]]]},{"k":23893,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G2541"]],[5,6,["G5119"]],[6,7,["G3004"]],[7,10,["G846"]],[10,11,["G591"]],[11,12,["G3767"]],[12,14,["G2541"]],[14,16,["G3588"]],[16,19,["G2541"]],[19,20,["G2532"]],[20,22,["G2316"]],[22,24,["G3588"]],[24,27,["G2316"]]]},{"k":23894,"v":[[0,0,["(G2532)"]],[0,4,["G191"]],[4,8,["G2296"]],[8,9,["G2532"]],[9,10,["G863"]],[10,11,["G846"]],[11,15,["G565"]]]},{"k":23895,"v":[[0,2,["G1565"]],[2,3,["G2250"]],[3,4,["G4334"]],[4,6,["G846"]],[6,8,["G4523"]],[8,10,["G3004"]],[10,13,["G1511"]],[13,14,["G3361"]],[14,15,["G386"]],[15,16,["G2532"]],[16,17,["G1905"]],[17,18,["G846"]]]},{"k":23896,"v":[[0,1,["G3004"]],[1,2,["G1320"]],[2,3,["G3475"]],[3,4,["G2036"]],[4,5,["G1437"]],[5,7,["G5100"]],[7,8,["G599"]],[8,9,["G2192"]],[9,10,["G3361"]],[10,11,["G5043"]],[11,12,["G848"]],[12,13,["G80"]],[13,15,["G1918"]],[15,16,["G846"]],[16,17,["G1135"]],[17,18,["G2532"]],[18,20,["G450"]],[20,21,["G4690"]],[21,23,["G848"]],[23,24,["G80"]]]},{"k":23897,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G3844"]],[4,5,["G2254"]],[5,6,["G2033"]],[6,7,["G80"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G4413"]],[10,16,["G1060"]],[16,17,["G5053"]],[17,18,["G2532"]],[18,19,["G2192"]],[19,20,["G3361"]],[20,21,["G4690"]],[21,22,["G863"]],[22,23,["G848"]],[23,24,["G1135"]],[24,26,["G848"]],[26,27,["G80"]]]},{"k":23898,"v":[[0,1,["G3668"]],[1,2,["G3588"]],[2,3,["G1208"]],[3,4,["G2532"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G5154"]],[7,8,["G2193"]],[8,9,["G3588"]],[9,10,["G2033"]]]},{"k":23899,"v":[[0,1,["G1161"]],[1,2,["G5305"]],[2,4,["G3956"]],[4,5,["G3588"]],[5,6,["G1135"]],[6,7,["G599"]],[7,8,["G2532"]]]},{"k":23900,"v":[[0,1,["G3767"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G386"]],[4,5,["G5101"]],[5,6,["G1135"]],[6,9,["G2071"]],[9,11,["G3588"]],[11,12,["G2033"]],[12,13,["G1063"]],[13,15,["G3956"]],[15,16,["G2192"]],[16,17,["G846"]]]},{"k":23901,"v":[[0,0,["(G1161)"]],[0,1,["G2424"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G846"]],[6,9,["G4105"]],[9,10,["G3361"]],[10,11,["G1492"]],[11,12,["G3588"]],[12,13,["G1124"]],[13,14,["G3366"]],[14,15,["G3588"]],[15,16,["G1411"]],[16,18,["G2316"]]]},{"k":23902,"v":[[0,1,["G1063"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G386"]],[4,6,["G3777"]],[6,7,["G1060"]],[7,8,["G3777"]],[8,12,["G1547"]],[12,13,["G235"]],[13,14,["G1526"]],[14,15,["G5613"]],[15,17,["G32"]],[17,19,["G2316"]],[19,20,["G1722"]],[20,21,["G3772"]]]},{"k":23903,"v":[[0,1,["G1161"]],[1,3,["G4012"]],[3,4,["G3588"]],[4,5,["G386"]],[5,7,["G3588"]],[7,8,["G3498"]],[8,11,["G3756"]],[11,12,["G314"]],[12,16,["G4483"]],[16,18,["G5213"]],[18,19,["G5259"]],[19,20,["G2316"]],[20,21,["G3004"]]]},{"k":23904,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,3,["G3588"]],[3,4,["G2316"]],[4,6,["G11"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G2316"]],[9,11,["G2464"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G2316"]],[14,16,["G2384"]],[16,17,["G2316"]],[17,18,["G2076"]],[18,19,["G3756"]],[19,21,["G2316"]],[21,24,["G3498"]],[24,25,["G235"]],[25,28,["G2198"]]]},{"k":23905,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G3793"]],[4,5,["G191"]],[5,9,["G1605"]],[9,10,["G1909"]],[10,11,["G846"]],[11,12,["G1322"]]]},{"k":23906,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G5330"]],[4,6,["G191"]],[6,7,["G3754"]],[7,14,["G5392","G3588","G4523"]],[14,17,["G4863"]],[17,18,["G1909","G846"]]]},{"k":23907,"v":[[0,1,["G2532"]],[1,2,["G1520"]],[2,3,["G1537"]],[3,4,["G846"]],[4,8,["G3544"]],[8,9,["G1905"]],[9,13,["G3985"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G3004"]]]},{"k":23908,"v":[[0,1,["G1320"]],[1,2,["G4169"]],[2,5,["G3173"]],[5,6,["G1785"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G3551"]]]},{"k":23909,"v":[[0,0,["(G1161)"]],[0,1,["G2424"]],[1,2,["G2036"]],[2,4,["G846"]],[4,7,["G25"]],[7,9,["G2962"]],[9,10,["G4675"]],[10,11,["G2316"]],[11,12,["G1722"]],[12,13,["G3650"]],[13,14,["G4675"]],[14,15,["G2588"]],[15,16,["G2532"]],[16,17,["G1722"]],[17,18,["G3650"]],[18,19,["G4675"]],[19,20,["G5590"]],[20,21,["G2532"]],[21,22,["G1722"]],[22,23,["G3650"]],[23,24,["G4675"]],[24,25,["G1271"]]]},{"k":23910,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,4,["G4413"]],[4,5,["G2532"]],[5,6,["G3173"]],[6,7,["G1785"]]]},{"k":23911,"v":[[0,1,["G1161"]],[1,3,["G1208"]],[3,6,["G3664"]],[6,7,["G846"]],[7,10,["G25"]],[10,11,["G4675"]],[11,12,["G4139"]],[12,13,["G5613"]],[13,14,["G4572"]]]},{"k":23912,"v":[[0,1,["G1722"]],[1,2,["G5025"]],[2,3,["G1417"]],[3,4,["G1785"]],[4,5,["G2910"]],[5,6,["G3650"]],[6,7,["G3588"]],[7,8,["G3551"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G4396"]]]},{"k":23913,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,6,["G4863"]],[6,7,["G2424"]],[7,8,["G1905"]],[8,9,["G846"]]]},{"k":23914,"v":[[0,1,["G3004"]],[1,2,["G5101"]],[2,3,["G1380"]],[3,4,["G5213"]],[4,5,["G4012"]],[5,6,["G5547"]],[6,7,["G5101"]],[7,8,["G5207"]],[8,9,["G2076"]],[9,12,["G3004"]],[12,14,["G846"]],[14,18,["G1138"]]]},{"k":23915,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G4459"]],[5,6,["G3767"]],[6,8,["G1138"]],[8,9,["G1722"]],[9,10,["G4151"]],[10,11,["G2564"]],[11,12,["G846"]],[12,13,["G2962"]],[13,14,["G3004"]]]},{"k":23916,"v":[[0,1,["G3588"]],[1,2,["G2962"]],[2,3,["G2036"]],[3,5,["G3450"]],[5,6,["G2962"]],[6,7,["G2521"]],[7,9,["G1537"]],[9,10,["G3450"]],[10,12,["G1188"]],[12,13,["G2193"]],[13,15,["G5087"]],[15,16,["G4675"]],[16,17,["G2190"]],[17,18,["G4675"]],[18,19,["G5286","G4228"]]]},{"k":23917,"v":[[0,1,["G1487"]],[1,2,["G1138"]],[2,3,["G3767"]],[3,4,["G2564"]],[4,5,["G846"]],[5,6,["G2962"]],[6,7,["G4459"]],[7,8,["G2076"]],[8,10,["G846"]],[10,11,["G5207"]]]},{"k":23918,"v":[[0,1,["G2532"]],[1,3,["G3762"]],[3,5,["G1410"]],[5,7,["G611"]],[7,8,["G846"]],[8,10,["G3056"]],[10,11,["G3761"]],[11,12,["G5111"]],[12,13,["G5100"]],[13,15,["G575"]],[15,16,["G1565"]],[16,17,["G2250"]],[17,19,["G1905"]],[19,20,["G846"]],[20,22,["G3765"]],[22,23,[]]]},{"k":23919,"v":[[0,1,["G5119"]],[1,2,["G2980"]],[2,3,["G2424"]],[3,5,["G3588"]],[5,6,["G3793"]],[6,7,["G2532"]],[7,9,["G848"]],[9,10,["G3101"]]]},{"k":23920,"v":[[0,1,["G3004"]],[1,2,["G3588"]],[2,3,["G1122"]],[3,4,["G2532"]],[4,5,["G3588"]],[5,6,["G5330"]],[6,7,["G2523"]],[7,8,["G1909"]],[8,9,["G3475"]],[9,10,["G2515"]]]},{"k":23921,"v":[[0,1,["G3956"]],[1,2,["G3767"]],[2,3,["G3745","G302"]],[3,5,["G2036"]],[5,6,["G5213"]],[6,7,["G5083"]],[7,9,["G5083"]],[9,10,["G2532"]],[10,11,["G4160"]],[11,12,["G1161"]],[12,13,["G4160"]],[13,14,["G3361"]],[14,16,["G2596"]],[16,17,["G846"]],[17,18,["G2041"]],[18,19,["G1063"]],[19,21,["G3004"]],[21,22,["G2532"]],[22,23,["G4160"]],[23,24,["G3756"]]]},{"k":23922,"v":[[0,1,["G1063"]],[1,3,["G1195"]],[3,4,["G926"]],[4,5,["G5413"]],[5,6,["G2532"]],[6,10,["G1419"]],[10,11,["G2532"]],[11,12,["G2007"]],[12,14,["G1909"]],[14,15,["G444"]],[15,16,["G5606"]],[16,17,["G1161"]],[17,20,["G2309"]],[20,21,["G3756"]],[21,22,["G2795"]],[22,23,["G846"]],[23,27,["G848"]],[27,28,["G1147"]]]},{"k":23923,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,3,["G848"]],[3,4,["G2041"]],[4,6,["G4160"]],[6,10,["G2300"]],[10,12,["G444"]],[12,13,["(G1161)"]],[13,15,["G4115"]],[15,16,["G848"]],[16,17,["G5440"]],[17,18,["G2532"]],[18,19,["G3170"]],[19,20,["G3588"]],[20,21,["G2899"]],[21,23,["G848"]],[23,24,["G2440"]]]},{"k":23924,"v":[[0,1,["G5037"]],[1,2,["G5368"]],[2,3,["G3588"]],[3,5,["G4411"]],[5,6,["G1722"]],[6,7,["G1173"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,11,["G4410"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G4864"]]]},{"k":23925,"v":[[0,1,["G2532"]],[1,2,["G783"]],[2,3,["G1722"]],[3,4,["G3588"]],[4,5,["G58"]],[5,6,["G2532"]],[6,9,["G2564"]],[9,10,["G5259"]],[10,11,["G444"]],[11,12,["G4461"]],[12,13,["G4461"]]]},{"k":23926,"v":[[0,1,["G1161"]],[1,3,["G3361"]],[3,4,["G5210"]],[4,5,["G2564"]],[5,6,["G4461"]],[6,7,["G1063"]],[7,8,["G1520"]],[8,9,["G2076"]],[9,10,["G5216"]],[10,11,["G2519"]],[11,13,["G5547"]],[13,14,["G1161"]],[14,15,["G3956"]],[15,16,["G5210"]],[16,17,["G2075"]],[17,18,["G80"]]]},{"k":23927,"v":[[0,1,["G2532"]],[1,2,["G2564"]],[2,3,["G3361"]],[3,5,["G5216"]],[5,6,["G3962"]],[6,7,["G1909"]],[7,8,["G3588"]],[8,9,["G1093"]],[9,10,["G1063"]],[10,11,["G1520"]],[11,12,["G2076"]],[12,13,["G5216"]],[13,14,["G3962"]],[14,15,["G3588"]],[15,17,["G1722"]],[17,18,["G3772"]]]},{"k":23928,"v":[[0,1,["G3366"]],[1,4,["G2564"]],[4,5,["G2519"]],[5,6,["G1063"]],[6,7,["G1520"]],[7,8,["G2076"]],[8,9,["G5216"]],[9,10,["G2519"]],[10,12,["G5547"]]]},{"k":23929,"v":[[0,1,["G1161"]],[1,5,["G3187"]],[5,7,["G5216"]],[7,9,["G2071"]],[9,10,["G5216"]],[10,11,["G1249"]]]},{"k":23930,"v":[[0,1,["G1161"]],[1,2,["G3748"]],[2,4,["G5312"]],[4,5,["G1438"]],[5,8,["G5013"]],[8,9,["G2532"]],[9,10,["G3748"]],[10,13,["G5013"]],[13,14,["G1438"]],[14,17,["G5312"]]]},{"k":23931,"v":[[0,1,["G1161"]],[1,2,["G3759"]],[2,4,["G5213"]],[4,5,["G1122"]],[5,6,["G2532"]],[6,7,["G5330"]],[7,8,["G5273"]],[8,9,["G3754"]],[9,12,["G2808"]],[12,13,["G3588"]],[13,14,["G932"]],[14,16,["G3772"]],[16,17,["G1715"]],[17,18,["G444"]],[18,19,["G1063"]],[19,20,["G5210"]],[20,21,["G3756"]],[21,23,["G1525"]],[23,25,["G3761"]],[25,26,["G863"]],[26,31,["G1525"]],[31,34,["G1525"]]]},{"k":23932,"v":[[0,0,["(G1161)"]],[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G1122"]],[4,5,["G2532"]],[5,6,["G5330"]],[6,7,["G5273"]],[7,8,["G3754"]],[8,10,["G2719"]],[10,11,["G5503"]],[11,12,["G3614"]],[12,13,["G2532"]],[13,16,["G4392"]],[16,19,["G4336","G3117"]],[19,20,["G1223","G5124"]],[20,23,["G2983"]],[23,25,["G4056"]],[25,26,["G2917"]]]},{"k":23933,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G1122"]],[4,5,["G2532"]],[5,6,["G5330"]],[6,7,["G5273"]],[7,8,["G3754"]],[8,10,["G4013"]],[10,11,["G2281"]],[11,12,["G2532"]],[12,13,["G3584"]],[13,15,["G4160"]],[15,16,["G1520"]],[16,17,["G4339"]],[17,18,["G2532"]],[18,19,["G3752"]],[19,22,["G1096"]],[22,24,["G4160"]],[24,25,["G846"]],[25,27,["G1362"]],[27,29,["G5207"]],[29,31,["G1067"]],[31,33,["G5216"]]]},{"k":23934,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,5,["G5185"]],[5,6,["G3595"]],[6,8,["G3004"]],[8,9,["G3739","G302"]],[9,11,["G3660"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G3485"]],[14,16,["G2076"]],[16,17,["G3762"]],[17,18,["G1161"]],[18,19,["G3739","G302"]],[19,21,["G3660"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G5557"]],[24,26,["G3588"]],[26,27,["G3485"]],[27,31,["G3784"]]]},{"k":23935,"v":[[0,2,["G3474"]],[2,3,["G2532"]],[3,4,["G5185"]],[4,5,["G1063"]],[5,6,["G5101"]],[6,7,["G2076"]],[7,8,["G3187"]],[8,9,["G3588"]],[9,10,["G5557"]],[10,11,["G2228"]],[11,12,["G3588"]],[12,13,["G3485"]],[13,15,["G37"]],[15,16,["G3588"]],[16,17,["G5557"]]]},{"k":23936,"v":[[0,1,["G2532"]],[1,2,["G3739","G1437"]],[2,4,["G3660"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G2379"]],[7,9,["G2076"]],[9,10,["G3762"]],[10,11,["G1161"]],[11,12,["G3739","G302"]],[12,13,["G3660"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G1435"]],[16,17,["G3588"]],[17,19,["G1883"]],[19,20,["G846"]],[20,23,["G3784"]]]},{"k":23937,"v":[[0,2,["G3474"]],[2,3,["G2532"]],[3,4,["G5185"]],[4,5,["G1063"]],[5,6,["G5101"]],[6,8,["G3187"]],[8,9,["G3588"]],[9,10,["G1435"]],[10,11,["G2228"]],[11,12,["G3588"]],[12,13,["G2379"]],[13,15,["G37"]],[15,16,["G3588"]],[16,17,["G1435"]]]},{"k":23938,"v":[[0,4,["G3660","G3767"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G2379"]],[7,8,["G3660"]],[8,9,["G1722"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G1722"]],[12,14,["G3956"]],[14,15,["G1883","G846"]]]},{"k":23939,"v":[[0,4,["G3660"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G3485"]],[7,8,["G3660"]],[8,9,["G1722"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G1722"]],[12,16,["G2730","G846"]]]},{"k":23940,"v":[[0,1,["G2532"]],[1,5,["G3660"]],[5,6,["G1722"]],[6,7,["G3772"]],[7,8,["G3660"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2362"]],[11,13,["G2316"]],[13,14,["G2532"]],[14,15,["G1722"]],[15,18,["G2521"]],[18,19,["G1883","G846"]]]},{"k":23941,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G1122"]],[4,5,["G2532"]],[5,6,["G5330"]],[6,7,["G5273"]],[7,8,["G1063"]],[8,11,["G586"]],[11,13,["G2238"]],[13,14,["G2532"]],[14,15,["G432"]],[15,16,["G2532"]],[16,17,["G2951"]],[17,18,["G2532"]],[18,20,["G863"]],[20,21,["G3588"]],[21,22,["G926"]],[22,25,["G3588"]],[25,26,["G3551"]],[26,27,["G2920","(G2532)"]],[27,28,["G1656"]],[28,29,["G2532"]],[29,30,["G4102"]],[30,31,["G5023"]],[31,32,["G1163"]],[32,36,["G4160"]],[36,38,["G3361"]],[38,40,["G863"]],[40,42,["G2548"]],[42,43,["G863"]]]},{"k":23942,"v":[[0,2,["G5185"]],[2,3,["G3595"]],[3,5,["G1368"]],[5,8,["G2971"]],[8,9,["G1161"]],[9,10,["G2666"]],[10,12,["G2574"]]]},{"k":23943,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G1122"]],[4,5,["G2532"]],[5,6,["G5330"]],[6,7,["G5273"]],[7,8,["G3754"]],[8,11,["G2511"]],[11,12,["G3588"]],[12,13,["G1855"]],[13,15,["G3588"]],[15,16,["G4221"]],[16,17,["G2532"]],[17,19,["G3588"]],[19,20,["G3953"]],[20,21,["G1161"]],[21,22,["G2081"]],[22,25,["G1073"]],[25,26,["G1537"]],[26,27,["G724"]],[27,28,["G2532"]],[28,29,["G192"]]]},{"k":23944,"v":[[0,2,["G5185"]],[2,3,["G5330"]],[3,4,["G2511"]],[4,5,["G4412"]],[5,6,["G3588"]],[6,9,["G1787"]],[9,10,["G3588"]],[10,11,["G4221"]],[11,12,["G2532"]],[12,13,["G3953"]],[13,14,["G2443"]],[14,15,["G3588"]],[15,16,["G1622"]],[16,18,["G846"]],[18,20,["G1096"]],[20,21,["G2513"]],[21,22,["G2532"]]]},{"k":23945,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G1122"]],[4,5,["G2532"]],[5,6,["G5330"]],[6,7,["G5273"]],[7,8,["G3754"]],[8,12,["G3945"]],[12,13,["G2867"]],[13,14,["G5028"]],[14,15,["G3748"]],[15,16,["G3303"]],[16,17,["G5316"]],[17,18,["G5611"]],[18,19,["G1855"]],[19,20,["G1161"]],[20,23,["G1073","G2081"]],[23,25,["G3498"]],[25,27,["G3747"]],[27,28,["G2532"]],[28,30,["G3956"]],[30,31,["G167"]]]},{"k":23946,"v":[[0,2,["G3779"]],[2,3,["G5210"]],[3,4,["G2532"]],[4,5,["G1855","(G3303)"]],[5,6,["G5316"]],[6,7,["G1342"]],[7,9,["G444"]],[9,10,["G1161"]],[10,11,["G2081"]],[11,13,["G2075"]],[13,14,["G3324"]],[14,16,["G5272"]],[16,17,["G2532"]],[17,18,["G458"]]]},{"k":23947,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G1122"]],[4,5,["G2532"]],[5,6,["G5330"]],[6,7,["G5273"]],[7,8,["G3754"]],[8,10,["G3618"]],[10,11,["G3588"]],[11,12,["G5028"]],[12,14,["G3588"]],[14,15,["G4396"]],[15,16,["G2532"]],[16,17,["G2885"]],[17,18,["G3588"]],[18,19,["G3419"]],[19,21,["G3588"]],[21,22,["G1342"]]]},{"k":23948,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,3,["G1487"]],[3,6,["G2258"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G2250"]],[9,11,["G2257"]],[11,12,["G3962"]],[12,15,["G3756"]],[15,17,["G2258","G302"]],[17,18,["G2844"]],[18,20,["G846"]],[20,21,["G1722"]],[21,22,["G3588"]],[22,23,["G129"]],[23,25,["G3588"]],[25,26,["G4396"]]]},{"k":23949,"v":[[0,1,["G5620"]],[1,4,["G3140"]],[4,6,["G1438"]],[6,7,["G3754"]],[7,9,["G2075"]],[9,11,["G5207"]],[11,15,["G5407"]],[15,16,["G3588"]],[16,17,["G4396"]]]},{"k":23950,"v":[[0,3,["G4137","G5210"]],[3,4,["G2532"]],[4,5,["G3588"]],[5,6,["G3358"]],[6,8,["G5216"]],[8,9,["G3962"]]]},{"k":23951,"v":[[0,2,["G3789"]],[2,4,["G1081"]],[4,6,["G2191"]],[6,7,["G4459"]],[7,10,["G5343","(G575)"]],[10,11,["G3588"]],[11,12,["G2920"]],[12,14,["G1067"]]]},{"k":23952,"v":[[0,1,["G1223","G5124"]],[1,2,["G2400"]],[2,3,["G1473"]],[3,4,["G649"]],[4,5,["G4314"]],[5,6,["G5209"]],[6,7,["G4396"]],[7,8,["G2532"]],[8,10,["G4680"]],[10,11,["G2532"]],[11,12,["G1122"]],[12,13,["G2532"]],[13,15,["G1537"]],[15,16,["G846"]],[16,19,["G615"]],[19,20,["G2532"]],[20,21,["G4717"]],[21,22,["G2532"]],[22,24,["G1537"]],[24,25,["G846"]],[25,28,["G3146"]],[28,29,["G1722"]],[29,30,["G5216"]],[30,31,["G4864"]],[31,32,["G2532"]],[32,33,["G1377"]],[33,35,["G575"]],[35,36,["G4172"]],[36,37,["G1519"]],[37,38,["G4172"]]]},{"k":23953,"v":[[0,1,["G3704"]],[1,2,["G1909"]],[2,3,["G5209"]],[3,5,["G2064"]],[5,6,["G3956"]],[6,8,["G1342"]],[8,9,["G129"]],[9,10,["G1632"]],[10,11,["G1909"]],[11,12,["G3588"]],[12,13,["G1093"]],[13,14,["G575"]],[14,15,["G3588"]],[15,16,["G129"]],[16,18,["G1342"]],[18,19,["G6"]],[19,20,["G2193"]],[20,21,["G3588"]],[21,22,["G129"]],[22,24,["G2197"]],[24,25,["G5207"]],[25,27,["G914"]],[27,28,["G3739"]],[28,30,["G5407"]],[30,31,["G3342"]],[31,32,["G3588"]],[32,33,["G3485"]],[33,34,["G2532"]],[34,35,["G3588"]],[35,36,["G2379"]]]},{"k":23954,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3956"]],[6,8,["G5023"]],[8,10,["G2240"]],[10,11,["G1909"]],[11,12,["G5026"]],[12,13,["G1074"]]]},{"k":23955,"v":[[0,2,["G2419"]],[2,3,["G2419"]],[3,6,["G615"]],[6,7,["G3588"]],[7,8,["G4396"]],[8,9,["G2532"]],[9,10,["G3036"]],[10,14,["G649"]],[14,15,["G4314"]],[15,16,["G846"]],[16,18,["G4212"]],[18,19,["G2309"]],[19,25,["G1996","G4675","G5043"]],[25,27,["G3739","G5158"]],[27,29,["G3733"]],[29,30,["G1996"]],[30,31,["G1438"]],[31,32,["G3556"]],[32,33,["G5259"]],[33,35,["G4420"]],[35,36,["G2532"]],[36,38,["G2309"]],[38,39,["G3756"]]]},{"k":23956,"v":[[0,1,["G2400"]],[1,2,["G5216"]],[2,3,["G3624"]],[3,5,["G863"]],[5,7,["G5213"]],[7,8,["G2048"]]]},{"k":23957,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,8,["G3364"]],[8,9,["G1492"]],[9,10,["G3165"]],[10,11,["G575","G737"]],[11,12,["G2193","G302"]],[12,15,["G2036"]],[15,16,["G2127"]],[16,20,["G2064"]],[20,21,["G1722"]],[21,23,["G3686"]],[23,26,["G2962"]]]},{"k":23958,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,4,["G1831"]],[4,6,["G4198"]],[6,7,["G575"]],[7,8,["G3588"]],[8,9,["G2411"]],[9,10,["G2532"]],[10,11,["G846"]],[11,12,["G3101"]],[12,13,["G4334"]],[13,18,["G1925"]],[18,19,["G846"]],[19,20,["G3588"]],[20,21,["G3619"]],[21,23,["G3588"]],[23,24,["G2411"]]]},{"k":23959,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G991"]],[6,8,["G3756"]],[8,9,["G3956"]],[9,11,["G5023"]],[11,12,["G281"]],[12,14,["G3004"]],[14,16,["G5213"]],[16,19,["G3364"]],[19,21,["G863"]],[21,22,["G5602"]],[22,26,["G3037","G1909","G3037"]],[26,27,["G3739"]],[27,29,["G3364"]],[29,32,["G2647"]]]},{"k":23960,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G2521"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G3735"]],[7,9,["G1636"]],[9,10,["G3588"]],[10,11,["G3101"]],[11,12,["G4334"]],[12,14,["G846"]],[14,15,["G2596","G2398"]],[15,16,["G3004"]],[16,17,["G2036"]],[17,18,["G2254"]],[18,19,["G4219"]],[19,22,["G5023"]],[22,23,["G2071"]],[23,24,["G2532"]],[24,25,["G5101"]],[25,28,["G3588"]],[28,29,["G4592"]],[29,31,["G4674"]],[31,32,["G3952"]],[32,33,["G2532"]],[33,35,["G3588"]],[35,36,["G4930"]],[36,38,["G3588"]],[38,39,["G165"]]]},{"k":23961,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,9,["G991"]],[9,11,["G3361"]],[11,12,["G5100"]],[12,13,["G4105"]],[13,14,["G5209"]]]},{"k":23962,"v":[[0,1,["G1063"]],[1,2,["G4183"]],[2,4,["G2064"]],[4,5,["G1909"]],[5,6,["G3450"]],[6,7,["G3686"]],[7,8,["G3004"]],[8,9,["G1473"]],[9,10,["G1510"]],[10,11,["G5547"]],[11,12,["G2532"]],[12,14,["G4105"]],[14,15,["G4183"]]]},{"k":23963,"v":[[0,1,["G1161"]],[1,3,["G3195"]],[3,4,["G191"]],[4,6,["G4171"]],[6,7,["G2532"]],[7,8,["G189"]],[8,10,["G4171"]],[10,11,["G3708"]],[11,15,["G3361"]],[15,16,["G2360"]],[16,17,["G1063"]],[17,18,["G3956"]],[18,21,["G1163"]],[21,24,["G1096"]],[24,25,["G235"]],[25,26,["G3588"]],[26,27,["G5056"]],[27,28,["G2076"]],[28,30,["G3768"]]]},{"k":23964,"v":[[0,1,["G1063"]],[1,2,["G1484"]],[2,4,["G1453"]],[4,5,["G1909"]],[5,6,["G1484"]],[6,7,["G2532"]],[7,8,["G932"]],[8,9,["G1909"]],[9,10,["G932"]],[10,11,["G2532"]],[11,14,["G2071"]],[14,15,["G3042"]],[15,16,["G2532"]],[16,17,["G3061"]],[17,18,["G2532"]],[18,19,["G4578"]],[19,20,["G2596"]],[20,22,["G5117"]]]},{"k":23965,"v":[[0,0,["(G1161)"]],[0,1,["G3956"]],[1,2,["G5023"]],[2,5,["G746"]],[5,7,["G5604"]]]},{"k":23966,"v":[[0,1,["G5119"]],[1,6,["G3860","G5209"]],[6,9,["G1519","G2347"]],[9,10,["G2532"]],[10,12,["G615"]],[12,13,["G5209"]],[13,14,["G2532"]],[14,17,["G2071"]],[17,18,["G3404"]],[18,19,["G5259"]],[19,20,["G3956"]],[20,21,["G1484"]],[21,25,["G1223","G3450","G3686"]]]},{"k":23967,"v":[[0,1,["G2532"]],[1,2,["G5119"]],[2,4,["G4183"]],[4,6,["G4624"]],[6,7,["G2532"]],[7,9,["G3860"]],[9,11,["G240"]],[11,12,["G2532"]],[12,14,["G3404"]],[14,16,["G240"]]]},{"k":23968,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,4,["G5578"]],[4,6,["G1453"]],[6,7,["G2532"]],[7,9,["G4105"]],[9,10,["G4183"]]]},{"k":23969,"v":[[0,1,["G2532"]],[1,3,["G458"]],[3,5,["G4129"]],[5,6,["G3588"]],[6,7,["G26"]],[7,9,["G4183"]],[9,12,["G5594"]]]},{"k":23970,"v":[[0,1,["G1161"]],[1,5,["G5278"]],[5,6,["G1519"]],[6,8,["G5056"]],[8,10,["G3778"]],[10,13,["G4982"]]]},{"k":23971,"v":[[0,1,["G2532"]],[1,2,["G5124"]],[2,3,["G2098"]],[3,5,["G3588"]],[5,6,["G932"]],[6,9,["G2784"]],[9,10,["G1722"]],[10,11,["G3650"]],[11,12,["G3588"]],[12,13,["G3625"]],[13,14,["G1519"]],[14,16,["G3142"]],[16,18,["G3956"]],[18,19,["G1484"]],[19,20,["G2532"]],[20,21,["G5119"]],[21,23,["G3588"]],[23,24,["G5056"]],[24,25,["G2240"]]]},{"k":23972,"v":[[0,1,["G3752"]],[1,3,["G3767"]],[3,5,["G1492"]],[5,6,["G3588"]],[6,7,["G946"]],[7,9,["G2050"]],[9,10,["G4483"]],[10,12,["G1223"]],[12,13,["G1158"]],[13,14,["G3588"]],[14,15,["G4396"]],[15,16,["G2476"]],[16,17,["G1722"]],[17,19,["G40"]],[19,20,["G5117"]],[20,22,["G314"]],[22,25,["G3539"]]]},{"k":23973,"v":[[0,1,["G5119"]],[1,3,["G3588"]],[3,6,["G1722"]],[6,7,["G2449"]],[7,8,["G5343"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G3735"]]]},{"k":23974,"v":[[0,2,["G3588"]],[2,5,["G1909"]],[5,6,["G3588"]],[6,7,["G1430"]],[7,8,["G3361"]],[8,10,["G2597"]],[10,12,["G142"]],[12,14,["G5100"]],[14,16,["G1537"]],[16,17,["G848"]],[17,18,["G3614"]]]},{"k":23975,"v":[[0,0,["(G2532)"]],[0,1,["G3361"]],[1,3,["G3588"]],[3,6,["G1722"]],[6,7,["G3588"]],[7,8,["G68"]],[8,9,["G1994"]],[9,10,["G3694"]],[10,12,["G142"]],[12,13,["G848"]],[13,14,["G2440"]]]},{"k":23976,"v":[[0,1,["G1161"]],[1,2,["G3759"]],[2,8,["G2192","G1722","G1064"]],[8,9,["G2532"]],[9,14,["G2337"]],[14,15,["G1722"]],[15,16,["G1565"]],[16,17,["G2250"]]]},{"k":23977,"v":[[0,1,["G1161"]],[1,2,["G4336"]],[2,4,["G2443"]],[4,5,["G5216"]],[5,6,["G5437"]],[6,7,["G1096"]],[7,8,["G3361"]],[8,11,["G5494"]],[11,12,["G3366"]],[12,13,["G1722"]],[13,16,["G4521"]]]},{"k":23978,"v":[[0,1,["G1063"]],[1,2,["G5119"]],[2,4,["G2071"]],[4,5,["G3173"]],[5,6,["G2347"]],[6,8,["G3634"]],[8,9,["G1096"]],[9,10,["G3756"]],[10,11,["G575"]],[11,13,["G746"]],[13,16,["G2889"]],[16,17,["G2193"]],[17,19,["G3568"]],[19,20,["G3761"]],[20,22,["G3364"]],[22,24,["G1096"]]]},{"k":23979,"v":[[0,1,["G2532"]],[1,2,["G1508"]],[2,3,["G1565"]],[3,4,["G2250"]],[4,7,["G2856"]],[7,10,["G3756"]],[10,11,["G4561"]],[11,13,["G4982","G302"]],[13,14,["G1161"]],[14,18,["G1223","G3588","G1588"]],[18,19,["G1565"]],[19,20,["G2250"]],[20,23,["G2856"]]]},{"k":23980,"v":[[0,1,["G5119"]],[1,2,["G1437"]],[2,4,["G5100"]],[4,6,["G2036"]],[6,8,["G5213"]],[8,9,["G2400"]],[9,10,["G5602"]],[10,12,["G5547"]],[12,13,["G2228"]],[13,14,["G5602"]],[14,15,["G4100"]],[15,17,["G3361"]]]},{"k":23981,"v":[[0,1,["G1063"]],[1,4,["G1453"]],[4,6,["G5580"]],[6,7,["G2532"]],[7,9,["G5578"]],[9,10,["G2532"]],[10,12,["G1325"]],[12,13,["G3173"]],[13,14,["G4592"]],[14,15,["G2532"]],[15,16,["G5059"]],[16,18,["G5620"]],[18,19,["G1487"]],[19,22,["G1415"]],[22,25,["G4105"]],[25,26,["G3588"]],[26,27,["G2532"]],[27,28,["G1588"]]]},{"k":23982,"v":[[0,1,["G2400"]],[1,6,["G4280","G5213"]]]},{"k":23983,"v":[[0,1,["G3767"]],[1,2,["G1437"]],[2,5,["G2036"]],[5,7,["G5213"]],[7,8,["G2400"]],[8,10,["G2076"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G2048"]],[13,16,["G1831","G3361"]],[16,17,["G2400"]],[17,20,["G1722"]],[20,21,["G3588"]],[21,23,["G5009"]],[23,24,["G4100"]],[24,26,["G3361"]]]},{"k":23984,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G3588"]],[3,4,["G796"]],[4,5,["G1831"]],[5,7,["G575"]],[7,9,["G395"]],[9,10,["G2532"]],[10,11,["G5316"]],[11,13,["G2193"]],[13,15,["G1424"]],[15,16,["G3779"]],[16,18,["G2532"]],[18,19,["G3588"]],[19,20,["G3952"]],[20,22,["G3588"]],[22,23,["G5207"]],[23,25,["G444"]],[25,26,["G2071"]]]},{"k":23985,"v":[[0,1,["G1063"]],[1,2,["G3699","G1437"]],[2,3,["G3588"]],[3,4,["G4430"]],[4,5,["G5600"]],[5,6,["G1563"]],[6,8,["G3588"]],[8,9,["G105"]],[9,12,["G4863"]]]},{"k":23986,"v":[[0,1,["G2112"]],[1,2,["G3326"]],[2,3,["G3588"]],[3,4,["G2347"]],[4,6,["G1565"]],[6,7,["G2250"]],[7,9,["G3588"]],[9,10,["G2246"]],[10,12,["G4654"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G4582"]],[15,17,["G3756"]],[17,18,["G1325"]],[18,19,["G848"]],[19,20,["G5338"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G792"]],[23,25,["G4098"]],[25,26,["G575"]],[26,27,["G3772"]],[27,28,["G2532"]],[28,29,["G3588"]],[29,30,["G1411"]],[30,32,["G3588"]],[32,33,["G3772"]],[33,36,["G4531"]]]},{"k":23987,"v":[[0,1,["G2532"]],[1,2,["G5119"]],[2,4,["G5316"]],[4,5,["G3588"]],[5,6,["G4592"]],[6,8,["G3588"]],[8,9,["G5207"]],[9,11,["G444"]],[11,12,["G1722"]],[12,13,["G3772"]],[13,14,["G2532"]],[14,15,["G5119"]],[15,17,["G3956"]],[17,18,["G3588"]],[18,19,["G5443"]],[19,21,["G3588"]],[21,22,["G1093"]],[22,23,["G2875"]],[23,24,["G2532"]],[24,27,["G3700"]],[27,28,["G3588"]],[28,29,["G5207"]],[29,31,["G444"]],[31,32,["G2064"]],[32,33,["G1909"]],[33,34,["G3588"]],[34,35,["G3507"]],[35,37,["G3772"]],[37,38,["G3326"]],[38,39,["G1411"]],[39,40,["G2532"]],[40,41,["G4183"]],[41,42,["G1391"]]]},{"k":23988,"v":[[0,1,["G2532"]],[1,4,["G649"]],[4,5,["G846"]],[5,6,["G32"]],[6,7,["G3326"]],[7,9,["G3173"]],[9,10,["G5456"]],[10,13,["G4536"]],[13,14,["G2532"]],[14,18,["G1996"]],[18,19,["G848"]],[19,20,["G1588"]],[20,21,["G1537"]],[21,22,["G3588"]],[22,23,["G5064"]],[23,24,["G417"]],[24,25,["G575"]],[25,27,["G206"]],[27,29,["G3772"]],[29,30,["G2193"]],[30,32,["G206"]]]},{"k":23989,"v":[[0,1,["G1161"]],[1,2,["G3129"]],[2,4,["G3850"]],[4,5,["G575"]],[5,6,["G3588"]],[6,8,["G4808"]],[8,9,["G3752"]],[9,10,["G846"]],[10,11,["G2798"]],[11,12,["G1096"]],[12,13,["G2235"]],[13,14,["G527"]],[14,15,["G2532"]],[15,17,["G1631"]],[17,18,["G5444"]],[18,20,["G1097"]],[20,21,["G3754"]],[21,22,["G2330"]],[22,24,["G1451"]]]},{"k":23990,"v":[[0,1,["G3779"]],[1,2,["G2532"]],[2,3,["G5210"]],[3,4,["G3752"]],[4,7,["G1492"]],[7,8,["G3956"]],[8,10,["G5023"]],[10,11,["G1097"]],[11,12,["G3754"]],[12,14,["G2076"]],[14,15,["G1451"]],[15,17,["G1909"]],[17,19,["G2374"]]]},{"k":23991,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3778"]],[6,7,["G1074"]],[7,9,["G3364"]],[9,10,["G3928"]],[10,11,["G2193","G302"]],[11,12,["G3956"]],[12,14,["G5023"]],[14,16,["G1096"]]]},{"k":23992,"v":[[0,1,["G3772"]],[1,2,["G2532"]],[2,3,["G1093"]],[3,6,["G3928"]],[6,7,["G1161"]],[7,8,["G3450"]],[8,9,["G3056"]],[9,11,["G3364"]],[11,13,["G3928"]]]},{"k":23993,"v":[[0,1,["G1161"]],[1,2,["G4012"]],[2,3,["G1565"]],[3,4,["G2250"]],[4,5,["G2532"]],[5,6,["G5610"]],[6,7,["G1492"]],[7,8,["G3762"]],[8,11,["G3761"]],[11,12,["G3588"]],[12,13,["G32"]],[13,15,["G3772"]],[15,16,["G1508"]],[16,17,["G3450"]],[17,18,["G3962"]],[18,19,["G3441"]]]},{"k":23994,"v":[[0,1,["G1161"]],[1,2,["G5618"]],[2,3,["G3588"]],[3,4,["G2250"]],[4,6,["G3575"]],[6,8,["G3779"]],[8,10,["G2532"]],[10,11,["G3588"]],[11,12,["G3952"]],[12,14,["G3588"]],[14,15,["G5207"]],[15,17,["G444"]],[17,18,["G2071"]]]},{"k":23995,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G1722"]],[3,4,["G3588"]],[4,5,["G2250"]],[5,6,["G3588"]],[6,8,["G4253"]],[8,9,["G3588"]],[9,10,["G2627"]],[10,12,["G2258"]],[12,13,["G5176"]],[13,14,["G2532"]],[14,15,["G4095"]],[15,16,["G1060"]],[16,17,["G2532"]],[17,20,["G1547"]],[20,21,["G891"]],[21,23,["G2250"]],[23,24,["G3739"]],[24,25,["G3575"]],[25,26,["G1525"]],[26,27,["G1519"]],[27,28,["G3588"]],[28,29,["G2787"]]]},{"k":23996,"v":[[0,1,["G2532"]],[1,2,["G1097"]],[2,3,["G3756"]],[3,4,["G2193"]],[4,5,["G3588"]],[5,6,["G2627"]],[6,7,["G2064"]],[7,8,["G2532"]],[8,12,["G142","G537"]],[12,13,["G3779"]],[13,15,["G2532"]],[15,16,["G3588"]],[16,17,["G3952"]],[17,19,["G3588"]],[19,20,["G5207"]],[20,22,["G444"]],[22,23,["G2071"]]]},{"k":23997,"v":[[0,1,["G5119"]],[1,3,["G1417"]],[3,4,["G2071"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G68"]],[7,8,["G3588"]],[8,9,["G1520"]],[9,12,["G3880"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G1520"]],[15,16,["G863"]]]},{"k":23998,"v":[[0,1,["G1417"]],[1,5,["G229"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G3459"]],[8,10,["G3391"]],[10,13,["G3880"]],[13,14,["G2532"]],[14,16,["G3391"]],[16,17,["G863"]]]},{"k":23999,"v":[[0,1,["G1127"]],[1,2,["G3767"]],[2,3,["G3754"]],[3,5,["G1492"]],[5,6,["G3756"]],[6,7,["G4169"]],[7,8,["G5610"]],[8,9,["G5216"]],[9,10,["G2962"]],[10,12,["G2064"]]]},{"k":24000,"v":[[0,1,["G1161"]],[1,2,["G1097"]],[2,3,["G1565"]],[3,4,["G3754"]],[4,5,["G1487"]],[5,6,["G3588"]],[6,10,["G3617"]],[10,12,["G1492"]],[12,14,["G4169"]],[14,15,["G5438"]],[15,16,["G3588"]],[16,17,["G2812"]],[17,19,["G2064"]],[19,23,["G1127","G302"]],[23,24,["G2532"]],[24,26,["G3756"]],[26,28,["G1439","G302"]],[28,29,["G848"]],[29,30,["G3614"]],[30,34,["G1358"]]]},{"k":24001,"v":[[0,1,["G1223","G5124"]],[1,2,["G1096"]],[2,3,["G5210"]],[3,4,["G2532"]],[4,5,["G2092"]],[5,6,["G3754"]],[6,8,["G3739"]],[8,10,["G5610"]],[10,13,["G1380"]],[13,14,["G3756"]],[14,15,["G3588"]],[15,16,["G5207"]],[16,18,["G444"]],[18,19,["G2064"]]]},{"k":24002,"v":[[0,1,["G5101"]],[1,2,["G686"]],[2,3,["G2076"]],[3,5,["G4103"]],[5,6,["G2532"]],[6,7,["G5429"]],[7,8,["G1401"]],[8,9,["G3739"]],[9,10,["G846"]],[10,11,["G2962"]],[11,14,["G2525"]],[14,15,["G1909"]],[15,16,["G848"]],[16,17,["G2322"]],[17,19,["G1325"]],[19,20,["G846"]],[20,21,["G5160"]],[21,22,["G1722"]],[22,24,["G2540"]]]},{"k":24003,"v":[[0,1,["G3107"]],[1,3,["G1565"]],[3,4,["G1401"]],[4,5,["G3739"]],[5,6,["G846"]],[6,7,["G2962"]],[7,10,["G2064"]],[10,12,["G2147"]],[12,13,["G3779"]],[13,14,["G4160"]]]},{"k":24004,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,11,["G2525","G846"]],[11,12,["G1909"]],[12,13,["G3956"]],[13,14,["G848"]],[14,15,["G5224"]]]},{"k":24005,"v":[[0,1,["G1161"]],[1,3,["G1437"]],[3,4,["G1565"]],[4,5,["G2556"]],[5,6,["G1401"]],[6,8,["G2036"]],[8,9,["G1722"]],[9,10,["G848"]],[10,11,["G2588"]],[11,12,["G3450"]],[12,13,["G2962"]],[13,14,["G5549"]],[14,16,["G2064"]]]},{"k":24006,"v":[[0,1,["G2532"]],[1,3,["G756"]],[3,5,["G5180"]],[5,7,["G4889"]],[7,8,["G1161"]],[8,10,["G2068"]],[10,11,["G2532"]],[11,12,["G4095"]],[12,13,["G3326"]],[13,14,["G3588"]],[14,15,["G3184"]]]},{"k":24007,"v":[[0,1,["G3588"]],[1,2,["G2962"]],[2,4,["G1565"]],[4,5,["G1401"]],[5,7,["G2240"]],[7,8,["G1722"]],[8,10,["G2250"]],[10,11,["G3739"]],[11,13,["G4328"]],[13,14,["G3756"]],[14,17,["G2532"]],[17,18,["G1722"]],[18,20,["G5610"]],[20,21,["G3739"]],[21,24,["G3756"]],[24,25,["G1097"]],[25,26,[]]]},{"k":24008,"v":[[0,1,["G2532"]],[1,5,["G1371","G846"]],[5,6,["G2532"]],[6,7,["G5087"]],[7,9,["G846"]],[9,10,["G3313"]],[10,11,["G3326"]],[11,12,["G3588"]],[12,13,["G5273"]],[13,14,["G1563"]],[14,16,["G2071"]],[16,17,["G2805"]],[17,18,["G2532"]],[18,19,["G1030"]],[19,21,["G3599"]]]},{"k":24009,"v":[[0,1,["G5119"]],[1,3,["G3588"]],[3,4,["G932"]],[4,6,["G3772"]],[6,9,["G3666"]],[9,10,["G1176"]],[10,11,["G3933"]],[11,12,["G3748"]],[12,13,["G2983"]],[13,14,["G848"]],[14,15,["G2985"]],[15,18,["G1831"]],[18,20,["G1519","G529"]],[20,21,["G3588"]],[21,22,["G3566"]]]},{"k":24010,"v":[[0,1,["G1161"]],[1,2,["G4002"]],[2,3,["G1537"]],[3,4,["G846"]],[4,5,["G2258"]],[5,6,["G5429"]],[6,7,["G2532"]],[7,8,["G4002"]],[8,10,["G3474"]]]},{"k":24011,"v":[[0,2,["G3748"]],[2,4,["G3474"]],[4,5,["G2983"]],[5,6,["G1438"]],[6,7,["G2985"]],[7,9,["G2983"]],[9,10,["G3756"]],[10,11,["G1637"]],[11,12,["G3326"]],[12,13,["G1438"]]]},{"k":24012,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5429"]],[3,4,["G2983"]],[4,5,["G1637"]],[5,6,["G1722"]],[6,7,["G848"]],[7,8,["G30"]],[8,9,["G3326"]],[9,10,["G848"]],[10,11,["G2985"]]]},{"k":24013,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3566"]],[3,4,["G5549"]],[4,6,["G3956"]],[6,7,["G3573"]],[7,8,["G2532"]],[8,9,["G2518"]]]},{"k":24014,"v":[[0,1,["G1161"]],[1,3,["G3319","G3571"]],[3,7,["G2906"]],[7,8,["G1096"]],[8,9,["G2400"]],[9,10,["G3588"]],[10,11,["G3566"]],[11,12,["G2064"]],[12,15,["G1831"]],[15,17,["G1519","G529"]],[17,18,["G846"]]]},{"k":24015,"v":[[0,1,["G5119"]],[1,2,["G3956"]],[2,3,["G1565"]],[3,4,["G3933"]],[4,5,["G1453"]],[5,6,["G2532"]],[6,7,["G2885"]],[7,8,["G848"]],[8,9,["G2985"]]]},{"k":24016,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3474"]],[3,4,["G2036"]],[4,6,["G3588"]],[6,7,["G5429"]],[7,8,["G1325"]],[8,9,["G2254"]],[9,10,["G1537"]],[10,11,["G5216"]],[11,12,["G1637"]],[12,13,["G3754"]],[13,14,["G2257"]],[14,15,["G2985"]],[15,18,["G4570"]]]},{"k":24017,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5429"]],[3,4,["G611"]],[4,5,["G3004"]],[5,8,["G3379"]],[8,12,["G714","G3756"]],[12,14,["G2254"]],[14,15,["G2532"]],[15,16,["G5213"]],[16,17,["G1161"]],[17,18,["G4198"]],[18,20,["G3123"]],[20,21,["G4314"]],[21,24,["G4453"]],[24,25,["G2532"]],[25,26,["G59"]],[26,28,["G1438"]]]},{"k":24018,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G565"]],[4,6,["G59"]],[6,7,["G3588"]],[7,8,["G3566"]],[8,9,["G2064"]],[9,10,["G2532"]],[10,14,["G2092"]],[14,16,["G1525"]],[16,17,["G3326"]],[17,18,["G846"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G1062"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G2374"]],[24,26,["G2808"]]]},{"k":24019,"v":[[0,0,["(G1161)"]],[0,1,["G5305"]],[1,2,["G2064"]],[2,3,["G2532"]],[3,4,["G3588"]],[4,5,["G3062"]],[5,6,["G3933"]],[6,7,["G3004"]],[7,8,["G2962"]],[8,9,["G2962"]],[9,10,["G455"]],[10,12,["G2254"]]]},{"k":24020,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,6,["G281"]],[6,8,["G3004"]],[8,10,["G5213"]],[10,12,["G1492"]],[12,13,["G5209"]],[13,14,["G3756"]]]},{"k":24021,"v":[[0,1,["G1127"]],[1,2,["G3767"]],[2,3,["G3754"]],[3,5,["G1492"]],[5,6,["G3756"]],[6,7,["G3588"]],[7,8,["G2250"]],[8,9,["G3761"]],[9,10,["G3588"]],[10,11,["G5610"]],[11,12,["G1722","G3739"]],[12,13,["G3588"]],[13,14,["G5207"]],[14,16,["G444"]],[16,17,["G2064"]]]},{"k":24022,"v":[[0,1,["G1063"]],[1,7,["G5618"]],[7,9,["G444"]],[9,14,["G589"]],[14,16,["G2564"]],[16,18,["G2398"]],[18,19,["G1401"]],[19,20,["G2532"]],[20,21,["G3860"]],[21,23,["G846"]],[23,24,["G848"]],[24,25,["G5224"]]]},{"k":24023,"v":[[0,1,["G2532"]],[1,3,["G3739","G3303"]],[3,5,["G1325"]],[5,6,["G4002"]],[6,7,["G5007"]],[7,8,["(G1161)"]],[8,9,["G3739"]],[9,10,["G1417"]],[10,11,["G1161"]],[11,13,["G3739"]],[13,14,["G1520"]],[14,17,["G1538"]],[17,18,["G2596"]],[18,21,["G2398"]],[21,22,["G1411"]],[22,23,["G2532"]],[23,24,["G2112"]],[24,27,["G589"]]]},{"k":24024,"v":[[0,1,["G1161"]],[1,5,["G2983"]],[5,6,["G3588"]],[6,7,["G4002"]],[7,8,["G5007"]],[8,9,["G4198"]],[9,10,["G2532"]],[10,11,["G2038"]],[11,12,["G1722"]],[12,14,["G846"]],[14,15,["G2532"]],[15,16,["G4160"]],[16,18,["G243"]],[18,19,["G4002"]],[19,20,["G5007"]]]},{"k":24025,"v":[[0,1,["G2532"]],[1,2,["G5615"]],[2,3,["G3588"]],[3,7,["G1417"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G2770"]],[10,11,["G243"]],[11,12,["G1417"]]]},{"k":24026,"v":[[0,1,["G1161"]],[1,5,["G2983"]],[5,6,["G1520"]],[6,7,["G565"]],[7,9,["G3736"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G1093"]],[12,13,["G2532"]],[13,14,["G613"]],[14,15,["G848"]],[15,16,["G2962"]],[16,17,["G694"]]]},{"k":24027,"v":[[0,0,["(G1161)"]],[0,1,["G3326"]],[1,3,["G4183"]],[3,4,["G5550"]],[4,5,["G3588"]],[5,6,["G2962"]],[6,8,["G1565"]],[8,9,["G1401"]],[9,10,["G2064"]],[10,11,["G2532"]],[11,12,["G4868","G3056"]],[12,13,["G3326"]],[13,14,["G846"]]]},{"k":24028,"v":[[0,1,["G2532"]],[1,6,["G2983"]],[6,7,["(G3588)","G4002"]],[7,8,["G5007"]],[8,9,["G4334"]],[9,11,["G4374"]],[11,12,["G243"]],[12,13,["G4002"]],[13,14,["G5007"]],[14,15,["G3004"]],[15,16,["G2962"]],[16,18,["G3860"]],[18,20,["G3427"]],[20,21,["G4002"]],[21,22,["G5007"]],[22,23,["G2396"]],[23,26,["G2770"]],[26,27,["G1909"]],[27,28,["G846"]],[28,29,["G4002"]],[29,30,["G5007"]],[30,31,["G243"]]]},{"k":24029,"v":[[0,0,["(G1161)"]],[0,1,["G846"]],[1,2,["G2962"]],[2,3,["G5346"]],[3,5,["G846"]],[5,7,["G2095"]],[7,9,["G18"]],[9,10,["G2532"]],[10,11,["G4103"]],[11,12,["G1401"]],[12,15,["G2258"]],[15,16,["G4103"]],[16,17,["G1909"]],[17,20,["G3641"]],[20,25,["G2525","G4571"]],[25,26,["G1909"]],[26,28,["G4183"]],[28,29,["G1525"]],[29,31,["G1519"]],[31,32,["G3588"]],[32,33,["G5479"]],[33,35,["G4675"]],[35,36,["G2962"]]]},{"k":24030,"v":[[0,0,["(G1161)"]],[0,5,["G2983","G2532"]],[5,6,["G1417"]],[6,7,["G5007"]],[7,8,["G4334"]],[8,10,["G2036"]],[10,11,["G2962"]],[11,13,["G3860"]],[13,15,["G3427"]],[15,16,["G1417"]],[16,17,["G5007"]],[17,18,["G2396"]],[18,21,["G2770"]],[21,22,["G1417"]],[22,23,["G243"]],[23,24,["G5007"]],[24,25,["G1909"]],[25,26,["G846"]]]},{"k":24031,"v":[[0,1,["G846"]],[1,2,["G2962"]],[2,3,["G5346"]],[3,5,["G846"]],[5,7,["G2095"]],[7,8,["G18"]],[8,9,["G2532"]],[9,10,["G4103"]],[10,11,["G1401"]],[11,14,["G2258"]],[14,15,["G4103"]],[15,16,["G1909"]],[16,19,["G3641"]],[19,24,["G2525","G4571"]],[24,25,["G1909"]],[25,27,["G4183"]],[27,28,["G1525"]],[28,30,["G1519"]],[30,31,["G3588"]],[31,32,["G5479"]],[32,34,["G4675"]],[34,35,["G2962"]]]},{"k":24032,"v":[[0,1,["G1161"]],[1,5,["G2983"]],[5,6,["G3588"]],[6,7,["G1520"]],[7,8,["G5007"]],[8,9,["(G2532)","G4334"]],[9,11,["G2036"]],[11,12,["G2962"]],[12,14,["G1097"]],[14,15,["G4571"]],[15,16,["G3754"]],[16,18,["G1488"]],[18,20,["G4642"]],[20,21,["G444"]],[21,22,["G2325"]],[22,23,["G3699"]],[23,26,["G3756"]],[26,27,["G4687"]],[27,28,["G2532"]],[28,29,["G4863"]],[29,30,["G3606"]],[30,33,["G3756"]],[33,34,["G1287"]]]},{"k":24033,"v":[[0,1,["G2532"]],[1,4,["G5399"]],[4,6,["G565"]],[6,8,["G2928"]],[8,9,["G4675"]],[9,10,["G5007"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G1093"]],[13,14,["G2396"]],[14,17,["G2192"]],[17,20,["G4674"]]]},{"k":24034,"v":[[0,0,["(G1161)"]],[0,1,["G846"]],[1,2,["G2962"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,9,["G4190"]],[9,10,["G2532"]],[10,11,["G3636"]],[11,12,["G1401"]],[12,14,["G1492"]],[14,15,["G3754"]],[15,17,["G2325"]],[17,18,["G3699"]],[18,20,["G4687"]],[20,21,["G3756"]],[21,22,["G2532"]],[22,23,["G4863"]],[23,24,["G3606"]],[24,27,["G3756"]],[27,28,["G1287"]]]},{"k":24035,"v":[[0,1,["G4571"]],[1,2,["G1163"]],[2,3,["G3767"]],[3,6,["G906"]],[6,7,["G3450"]],[7,8,["G694"]],[8,10,["G3588"]],[10,11,["G5133"]],[11,12,["G2532"]],[12,16,["G2064"]],[16,17,["G1473"]],[17,20,["G2865","G302"]],[20,22,["G1699"]],[22,23,["G4862"]],[23,24,["G5110"]]]},{"k":24036,"v":[[0,1,["G142"]],[1,2,["G3767"]],[2,3,["G3588"]],[3,4,["G5007"]],[4,5,["G575"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G1325"]],[8,13,["G2192"]],[13,14,["G1176"]],[14,15,["G5007"]]]},{"k":24037,"v":[[0,1,["G1063"]],[1,4,["G3956"]],[4,6,["G2192"]],[6,9,["G1325"]],[9,10,["G2532"]],[10,14,["G4052"]],[14,15,["G1161"]],[15,16,["G575"]],[16,17,["G3588"]],[17,19,["G2192"]],[19,20,["G3361"]],[20,24,["G142"]],[24,25,["(G575","G846)","G2532"]],[25,27,["G3739"]],[27,29,["G2192"]]]},{"k":24038,"v":[[0,1,["G2532"]],[1,2,["G1544"]],[2,4,["G3588"]],[4,5,["G888"]],[5,6,["G1401"]],[6,7,["G1519"]],[7,8,["G1857"]],[8,9,["G4655"]],[9,10,["G1563"]],[10,12,["G2071"]],[12,13,["G2805"]],[13,14,["G2532"]],[14,15,["G1030"]],[15,17,["G3599"]]]},{"k":24039,"v":[[0,1,["G3752"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G444"]],[5,7,["G2064"]],[7,8,["G1722"]],[8,9,["G848"]],[9,10,["G1391"]],[10,11,["G2532"]],[11,12,["G3956"]],[12,13,["G3588"]],[13,14,["G40"]],[14,15,["G32"]],[15,16,["G3326"]],[16,17,["G846"]],[17,18,["G5119"]],[18,21,["G2523"]],[21,22,["G1909"]],[22,24,["G2362"]],[24,26,["G848"]],[26,27,["G1391"]]]},{"k":24040,"v":[[0,1,["G2532"]],[1,2,["G1715"]],[2,3,["G846"]],[3,6,["G4863"]],[6,7,["G3956"]],[7,8,["G1484"]],[8,9,["G2532"]],[9,12,["G873"]],[12,13,["G846"]],[13,16,["G240","G575"]],[16,17,["G5618"]],[17,19,["G4166"]],[19,20,["G873"]],[20,22,["G4263"]],[22,23,["G575"]],[23,24,["G3588"]],[24,25,["G2056"]]]},{"k":24041,"v":[[0,1,["G2532"]],[1,4,["G2476"]],[4,5,["G3588"]],[5,6,["(G4263)"]],[6,7,["G1537"]],[7,8,["G848"]],[8,10,["G1188"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,13,["G2055"]],[13,14,["G1537"]],[14,16,["G2176"]]]},{"k":24042,"v":[[0,1,["G5119"]],[1,3,["G3588"]],[3,4,["G935"]],[4,5,["G2046"]],[5,7,["G3588"]],[7,8,["G1537"]],[8,9,["G848"]],[9,11,["G1188"]],[11,12,["G1205"]],[12,14,["G2127"]],[14,16,["G3450"]],[16,17,["G3962"]],[17,18,["G2816"]],[18,19,["G3588"]],[19,20,["G932"]],[20,21,["G2090"]],[21,23,["G5213"]],[23,24,["G575"]],[24,26,["G2602"]],[26,29,["G2889"]]]},{"k":24043,"v":[[0,1,["G1063"]],[1,5,["G3983"]],[5,6,["G2532"]],[6,8,["G1325"]],[8,9,["G3427"]],[9,10,["G5315"]],[10,13,["G1372"]],[13,14,["G2532"]],[14,18,["G4222","G3165"]],[18,20,["G2252"]],[20,22,["G3581"]],[22,23,["G2532"]],[23,27,["G4863","G3165"]]]},{"k":24044,"v":[[0,1,["G1131"]],[1,2,["G2532"]],[2,4,["G4016"]],[4,5,["G3165"]],[5,8,["G770"]],[8,9,["G2532"]],[9,11,["G1980"]],[11,12,["G3165"]],[12,14,["G2252"]],[14,15,["G1722"]],[15,16,["G5438"]],[16,17,["G2532"]],[17,19,["G2064"]],[19,20,["G4314"]],[20,21,["G3165"]]]},{"k":24045,"v":[[0,1,["G5119"]],[1,3,["G3588"]],[3,4,["G1342"]],[4,5,["G611"]],[5,6,["G846"]],[6,7,["G3004"]],[7,8,["G2962"]],[8,9,["G4219"]],[9,10,["G1492"]],[10,12,["G4571"]],[12,14,["G3983"]],[14,15,["G2532"]],[15,16,["G5142"]],[16,18,["G2228"]],[18,19,["G1372"]],[19,20,["G2532"]],[20,23,["G4222"]]]},{"k":24046,"v":[[0,0,["(G1161)"]],[0,1,["G4219"]],[1,2,["G1492"]],[2,4,["G4571"]],[4,6,["G3581"]],[6,7,["G2532"]],[7,10,["G4863"]],[10,11,["G2228"]],[11,12,["G1131"]],[12,13,["G2532"]],[13,14,["G4016"]],[14,15,[]]]},{"k":24047,"v":[[0,1,["G1161"]],[1,2,["G4219"]],[2,3,["G1492"]],[3,5,["G4571"]],[5,6,["G772"]],[6,7,["G2228"]],[7,8,["G1722"]],[8,9,["G5438"]],[9,10,["G2532"]],[10,11,["G2064"]],[11,12,["G4314"]],[12,13,["G4571"]]]},{"k":24048,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G935"]],[3,5,["G611"]],[5,7,["G2046"]],[7,9,["G846"]],[9,10,["G281"]],[10,12,["G3004"]],[12,14,["G5213"]],[14,16,["G1909","G3745"]],[16,19,["G4160"]],[19,22,["G1520"]],[22,24,["G3588"]],[24,25,["G1646"]],[25,27,["G5130"]],[27,28,["G3450"]],[28,29,["G80"]],[29,32,["G4160"]],[32,35,["G1698"]]]},{"k":24049,"v":[[0,1,["G5119"]],[1,4,["G2046"]],[4,5,["G2532"]],[5,7,["G3588"]],[7,8,["G1537"]],[8,11,["G2176"]],[11,12,["G4198"]],[12,13,["G575"]],[13,14,["G1700"]],[14,16,["G2672"]],[16,17,["G1519"]],[17,18,["G166"]],[18,19,["G4442"]],[19,20,["G2090"]],[20,22,["G3588"]],[22,23,["G1228"]],[23,24,["G2532"]],[24,25,["G846"]],[25,26,["G32"]]]},{"k":24050,"v":[[0,1,["G1063"]],[1,5,["G3983"]],[5,6,["G2532"]],[6,8,["G1325"]],[8,9,["G3427"]],[9,10,["G3756"]],[10,11,["G5315"]],[11,14,["G1372"]],[14,15,["G2532"]],[15,20,["G4222","G3165"]]]},{"k":24051,"v":[[0,2,["G2252"]],[2,4,["G3581"]],[4,5,["G2532"]],[5,10,["G4863","G3165","G3756"]],[10,11,["G1131"]],[11,12,["G2532"]],[12,14,["G4016"]],[14,15,["G3165"]],[15,16,["G3756"]],[16,17,["G772"]],[17,18,["G2532"]],[18,19,["G1722"]],[19,20,["G5438"]],[20,21,["G2532"]],[21,23,["G1980"]],[23,24,["G3165"]],[24,25,["G3756"]]]},{"k":24052,"v":[[0,1,["G5119"]],[1,3,["G846"]],[3,4,["G2532"]],[4,5,["G611"]],[5,6,["G846"]],[6,7,["G3004"]],[7,8,["G2962"]],[8,9,["G4219"]],[9,10,["G1492"]],[10,12,["G4571"]],[12,14,["G3983"]],[14,15,["G2228"]],[15,16,["G1372"]],[16,17,["G2228"]],[17,19,["G3581"]],[19,20,["G2228"]],[20,21,["G1131"]],[21,22,["G2228"]],[22,23,["G772"]],[23,24,["G2228"]],[24,25,["G1722"]],[25,26,["G5438"]],[26,27,["G2532"]],[27,29,["G3756"]],[29,30,["G1247"]],[30,32,["G4671"]]]},{"k":24053,"v":[[0,1,["G5119"]],[1,4,["G611"]],[4,5,["G846"]],[5,6,["G3004"]],[6,7,["G281"]],[7,9,["G3004"]],[9,11,["G5213"]],[11,13,["G1909","G3745"]],[13,15,["G4160"]],[15,17,["G3756"]],[17,19,["G1520"]],[19,21,["G3588"]],[21,22,["G1646"]],[22,24,["G5130"]],[24,26,["G4160"]],[26,28,["G3761"]],[28,30,["G1698"]]]},{"k":24054,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,5,["G565"]],[5,6,["G1519"]],[6,7,["G166"]],[7,8,["G2851"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G1342"]],[11,12,["G1519"]],[12,13,["G2222"]],[13,14,["G166"]]]},{"k":24055,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,6,["G3753"]],[6,7,["G2424"]],[7,9,["G5055"]],[9,10,["G3956"]],[10,11,["G5128"]],[11,12,["G3056"]],[12,14,["G2036"]],[14,16,["G848"]],[16,17,["G3101"]]]},{"k":24056,"v":[[0,2,["G1492"]],[2,3,["G3754"]],[3,4,["G3326"]],[4,5,["G1417"]],[5,6,["G2250"]],[6,7,["G1096"]],[7,11,["G3588"]],[11,12,["G3957"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,17,["G444"]],[17,19,["G3860"]],[19,22,["G4717"]]]},{"k":24057,"v":[[0,1,["G5119"]],[1,3,["G4863"]],[3,4,["G3588"]],[4,6,["G749"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G1122"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G4245"]],[12,14,["G3588"]],[14,15,["G2992"]],[15,16,["G1519"]],[16,17,["G3588"]],[17,18,["G833"]],[18,20,["G3588"]],[20,22,["G749"]],[22,25,["G3004"]],[25,26,["G2533"]]]},{"k":24058,"v":[[0,1,["G2532"]],[1,2,["G4823"]],[2,3,["G2443"]],[3,6,["G2902"]],[6,7,["G2424"]],[7,9,["G1388"]],[9,10,["G2532"]],[10,11,["G615"]],[11,12,[]]]},{"k":24059,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,4,["G3361"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G1859"]],[7,9,["G3363"]],[9,11,["G1096"]],[11,13,["G2351"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G2992"]]]},{"k":24060,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,4,["G1096"]],[4,5,["G1722"]],[5,6,["G963"]],[6,7,["G1722"]],[7,9,["G3614"]],[9,11,["G4613"]],[11,12,["G3588"]],[12,13,["G3015"]]]},{"k":24061,"v":[[0,2,["G4334"]],[2,4,["G846"]],[4,6,["G1135"]],[6,7,["G2192"]],[7,10,["G211"]],[10,13,["G927"]],[13,14,["G3464"]],[14,15,["G2532"]],[15,16,["G2708"]],[16,18,["G1909"]],[18,19,["G846"]],[19,20,["G2776"]],[20,23,["G345"]],[23,25,[]]]},{"k":24062,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G3101"]],[4,5,["G1492"]],[5,9,["G23"]],[9,10,["G3004"]],[10,11,["G1519"]],[11,13,["G5101"]],[13,15,["G3778"]],[15,16,["G684"]]]},{"k":24063,"v":[[0,1,["G1063"]],[1,2,["G5124"]],[2,3,["G3464"]],[3,4,["G1410"]],[4,7,["G4097"]],[7,9,["G4183"]],[9,10,["G2532"]],[10,11,["G1325"]],[11,14,["G4434"]]]},{"k":24064,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G1097"]],[3,6,["G2036"]],[6,8,["G846"]],[8,9,["G5101"]],[9,10,["G3930","G2873"]],[10,12,["G3588"]],[12,13,["G1135"]],[13,14,["G1063"]],[14,17,["G2038"]],[17,19,["G2570"]],[19,20,["G2041"]],[20,21,["G1519"]],[21,22,["G1691"]]]},{"k":24065,"v":[[0,1,["G1063"]],[1,3,["G2192"]],[3,4,["G3588"]],[4,5,["G4434"]],[5,6,["G3842"]],[6,7,["G3326"]],[7,8,["G1438"]],[8,9,["G1161"]],[9,10,["G1691"]],[10,12,["G2192"]],[12,13,["G3756"]],[13,14,["G3842"]]]},{"k":24066,"v":[[0,1,["G1063"]],[1,3,["G3778"]],[3,6,["G906"]],[6,7,["G5124"]],[7,8,["G3464"]],[8,9,["G1909"]],[9,10,["G3450"]],[10,11,["G4983"]],[11,13,["G4160"]],[13,16,["G3165"]],[16,17,["G1779"]]]},{"k":24067,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3699","G1437"]],[6,7,["G5124"]],[7,8,["G2098"]],[8,11,["G2784"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G3650"]],[14,15,["G2889"]],[15,18,["G2532"]],[18,19,["G3739"]],[19,22,["G3778"]],[22,24,["G4160"]],[24,26,["G2980"]],[26,27,["G1519"]],[27,29,["G3422"]],[29,31,["G846"]]]},{"k":24068,"v":[[0,1,["G5119"]],[1,2,["G1520"]],[2,4,["G3588"]],[4,5,["G1427"]],[5,6,["G3004"]],[6,7,["G2455"]],[7,8,["G2469"]],[8,9,["G4198"]],[9,10,["G4314"]],[10,11,["G3588"]],[11,13,["G749"]]]},{"k":24069,"v":[[0,2,["G2036"]],[2,5,["G5101"]],[5,6,["G2309"]],[6,8,["G1325"]],[8,9,["G3427"]],[9,11,["G2504"]],[11,13,["G3860"]],[13,14,["G846"]],[14,16,["G5213"]],[16,17,["G1161"]],[17,18,["G3588"]],[18,19,["G2476"]],[19,21,["G846"]],[21,23,["G5144"]],[23,26,["G694"]]]},{"k":24070,"v":[[0,1,["G2532"]],[1,2,["G575"]],[2,4,["G5119"]],[4,6,["G2212"]],[6,7,["G2120"]],[7,8,["G2443"]],[8,9,["G3860"]],[9,10,["G846"]]]},{"k":24071,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4413"]],[3,6,["G3588"]],[6,10,["G106"]],[10,11,["G3588"]],[11,12,["G3101"]],[12,13,["G4334"]],[13,15,["G2424"]],[15,16,["G3004"]],[16,18,["G846"]],[18,19,["G4226"]],[19,20,["G2309"]],[20,24,["G2090"]],[24,26,["G4671"]],[26,28,["G5315"]],[28,29,["G3588"]],[29,30,["G3957"]]]},{"k":24072,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G5217"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G4172"]],[7,8,["G4314"]],[8,11,["G1170"]],[11,12,["G2532"]],[12,13,["G2036"]],[13,15,["G846"]],[15,16,["G3588"]],[16,17,["G1320"]],[17,18,["G3004"]],[18,19,["G3450"]],[19,20,["G2540"]],[20,21,["G2076"]],[21,23,["G1451"]],[23,26,["G4160"]],[26,27,["G3588"]],[27,28,["G3957"]],[28,29,["G4314"]],[29,31,["G4571"]],[31,32,["G3326"]],[32,33,["G3450"]],[33,34,["G3101"]]]},{"k":24073,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,4,["G4160"]],[4,5,["G5613"]],[5,6,["G2424"]],[6,8,["G4929"]],[8,9,["G846"]],[9,10,["G2532"]],[10,13,["G2090"]],[13,14,["G3588"]],[14,15,["G3957"]]]},{"k":24074,"v":[[0,1,["G1161"]],[1,4,["G3798"]],[4,6,["G1096"]],[6,9,["G345"]],[9,10,["G3326"]],[10,11,["G3588"]],[11,12,["G1427"]]]},{"k":24075,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G2068"]],[5,7,["G2036"]],[7,8,["G281"]],[8,10,["G3004"]],[10,12,["G5213"]],[12,13,["G3754"]],[13,14,["G1520"]],[14,15,["G1537"]],[15,16,["G5216"]],[16,18,["G3860"]],[18,19,["G3165"]]]},{"k":24076,"v":[[0,1,["G2532"]],[1,5,["G3076","G4970"]],[5,7,["G756"]],[7,9,["G1538"]],[9,11,["G846"]],[11,13,["G3004"]],[13,15,["G846"]],[15,16,["G2962","(G3385)"]],[16,17,["G1510"]],[17,19,["G1473"]]]},{"k":24077,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,8,["G1686"]],[8,10,["G5495"]],[10,11,["G3326"]],[11,12,["G1700"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G5165"]],[15,17,["G3778"]],[17,19,["G3860"]],[19,20,["G3165"]]]},{"k":24078,"v":[[0,1,["G3588"]],[1,2,["G5207"]],[2,4,["G444"]],[4,5,["G5217"]],[5,6,["G2531"]],[6,7,["(G3303)"]],[7,9,["G1125"]],[9,10,["G4012"]],[10,11,["G846"]],[11,12,["G1161"]],[12,13,["G3759"]],[13,15,["G1565"]],[15,16,["G444"]],[16,17,["G1223"]],[17,18,["G3739"]],[18,19,["G3588"]],[19,20,["G5207"]],[20,22,["G444"]],[22,24,["G3860"]],[24,27,["G2258"]],[27,28,["G2570"]],[28,29,["(G846)"]],[29,30,["G1565"]],[30,31,["G444"]],[31,32,["G1487"]],[32,35,["G3756"]],[35,37,["G1080"]]]},{"k":24079,"v":[[0,1,["G1161"]],[1,2,["G2455"]],[2,4,["G3860"]],[4,5,["G846"]],[5,6,["G611"]],[6,8,["G2036"]],[8,9,["G4461","(G3385)"]],[9,10,["G1510"]],[10,12,["G1473"]],[12,14,["G3004"]],[14,16,["G846"]],[16,17,["G4771"]],[17,19,["G2036"]]]},{"k":24080,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G2068"]],[5,6,["G2424"]],[6,7,["G2983"]],[7,8,["G740"]],[8,9,["G2532"]],[9,10,["G2127"]],[10,13,["G2806"]],[13,15,["G2532"]],[15,16,["G1325"]],[16,19,["G3588"]],[19,20,["G3101"]],[20,21,["G2532"]],[21,22,["G2036"]],[22,23,["G2983"]],[23,24,["G5315"]],[24,25,["G5124"]],[25,26,["G2076"]],[26,27,["G3450"]],[27,28,["G4983"]]]},{"k":24081,"v":[[0,1,["G2532"]],[1,3,["G2983"]],[3,4,["G3588"]],[4,5,["G4221"]],[5,6,["G2532"]],[6,8,["G2168"]],[8,10,["G1325"]],[10,13,["G846"]],[13,14,["G3004"]],[14,15,["G4095"]],[15,17,["G3956"]],[17,18,["G1537"]],[18,19,["G846"]]]},{"k":24082,"v":[[0,1,["G1063"]],[1,2,["G5124"]],[2,3,["G2076"]],[3,4,["G3450"]],[4,5,["G129"]],[5,6,["(G3588)"]],[6,7,["G3588"]],[7,8,["G2537"]],[8,9,["G1242"]],[9,12,["G1632"]],[12,13,["G4012"]],[13,14,["G4183"]],[14,15,["G1519"]],[15,17,["G859"]],[17,19,["G266"]]]},{"k":24083,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,8,["G3364"]],[8,9,["G4095"]],[9,10,["G575","G737"]],[10,11,["G1537"]],[11,12,["G5127"]],[12,13,["G1081"]],[13,15,["G3588"]],[15,16,["G288"]],[16,17,["G2193"]],[17,18,["G1565"]],[18,19,["G2250"]],[19,20,["G3752"]],[20,22,["G4095"]],[22,23,["G846"]],[23,24,["G2537"]],[24,25,["G3326"]],[25,26,["G5216"]],[26,27,["G1722"]],[27,28,["G3450"]],[28,29,["G3962"]],[29,30,["G932"]]]},{"k":24084,"v":[[0,1,["G2532"]],[1,7,["G5214"]],[7,10,["G1831"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G3735"]],[13,15,["G1636"]]]},{"k":24085,"v":[[0,1,["G5119"]],[1,2,["G3004"]],[2,3,["G2424"]],[3,5,["G846"]],[5,6,["G3956"]],[6,7,["G5210"]],[7,10,["G4624"]],[10,11,["G1722"]],[11,13,["G1698","(G1722)"]],[13,14,["G5026"]],[14,15,["G3571"]],[15,16,["G1063"]],[16,19,["G1125"]],[19,22,["G3960"]],[22,23,["G3588"]],[23,24,["G4166"]],[24,25,["G2532"]],[25,26,["G3588"]],[26,27,["G4263"]],[27,29,["G3588"]],[29,30,["G4167"]],[30,34,["G1287"]]]},{"k":24086,"v":[[0,1,["G1161"]],[1,3,["G3165"]],[3,6,["G1453"]],[6,10,["G4254"]],[10,11,["G5209"]],[11,12,["G1519"]],[12,13,["G1056"]]]},{"k":24087,"v":[[0,0,["(G1161)"]],[0,1,["G4074"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G846"]],[6,7,["G1499"]],[7,8,["G3956"]],[8,12,["G4624"]],[12,13,["G1722"]],[13,15,["G4671"]],[15,18,["G1473"]],[18,19,["G3763"]],[19,21,["G4624"]]]},{"k":24088,"v":[[0,1,["G2424"]],[1,2,["G5346"]],[2,4,["G846"]],[4,5,["G281"]],[5,7,["G3004"]],[7,9,["G4671"]],[9,10,["G3754","(G1722)"]],[10,11,["G5026"]],[11,12,["G3571"]],[12,13,["G4250"]],[13,15,["G220"]],[15,16,["G5455"]],[16,19,["G533"]],[19,20,["G3165"]],[20,21,["G5151"]]]},{"k":24089,"v":[[0,1,["G4074"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G2579"]],[5,6,["G3165"]],[6,7,["G1163"]],[7,8,["G599"]],[8,9,["G4862"]],[9,10,["G4671"]],[10,14,["G3364"]],[14,15,["G533"]],[15,16,["G4571"]],[16,17,["G3668"]],[17,18,["G2532"]],[18,19,["G2036"]],[19,20,["G3956"]],[20,21,["G3588"]],[21,22,["G3101"]]]},{"k":24090,"v":[[0,1,["G5119"]],[1,2,["G2064"]],[2,3,["G2424"]],[3,4,["G3326"]],[4,5,["G846"]],[5,6,["G1519"]],[6,8,["G5564"]],[8,9,["G3004"]],[9,10,["G1068"]],[10,11,["G2532"]],[11,12,["G3004"]],[12,14,["G3588"]],[14,15,["G3101"]],[15,16,["G2523"]],[16,18,["G847"]],[18,19,["G2193","G3739"]],[19,21,["G565"]],[21,23,["G4336"]],[23,24,["G1563"]]]},{"k":24091,"v":[[0,1,["G2532"]],[1,4,["G3880"]],[4,6,["G4074"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G1417"]],[9,10,["G5207"]],[10,12,["G2199"]],[12,14,["G756"]],[14,17,["G3076"]],[17,18,["G2532"]],[18,20,["G85"]]]},{"k":24092,"v":[[0,1,["G5119"]],[1,2,["G3004"]],[2,5,["G846"]],[5,6,["G3450"]],[6,7,["G5590"]],[7,8,["G2076"]],[8,10,["G4036"]],[10,12,["G2193"]],[12,13,["G2288"]],[13,14,["G3306"]],[14,16,["G5602"]],[16,17,["G2532"]],[17,18,["G1127"]],[18,19,["G3326"]],[19,20,["G1700"]]]},{"k":24093,"v":[[0,1,["G2532"]],[1,3,["G4281"]],[3,6,["G3397"]],[6,8,["G4098"]],[8,9,["G1909"]],[9,10,["G848"]],[10,11,["G4383"]],[11,13,["G4336","(G2532)"]],[13,14,["G3004"]],[14,16,["G3450"]],[16,17,["G3962"]],[17,18,["G1487"]],[18,20,["G2076"]],[20,21,["G1415"]],[21,23,["G5124"]],[23,24,["G4221"]],[24,25,["G3928"]],[25,26,["G575"]],[26,27,["G1700"]],[27,28,["G4133"]],[28,29,["G3756"]],[29,30,["G5613"]],[30,31,["G1473"]],[31,32,["G2309"]],[32,33,["G235"]],[33,34,["G5613"]],[34,35,["G4771"]],[35,36,[]]]},{"k":24094,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G4314"]],[4,5,["G3588"]],[5,6,["G3101"]],[6,7,["G2532"]],[7,8,["G2147"]],[8,9,["G846"]],[9,10,["G2518"]],[10,11,["G2532"]],[11,12,["G3004"]],[12,14,["G4074"]],[14,15,["G3779"]],[15,16,["G2480"]],[16,18,["G3756"]],[18,19,["G1127"]],[19,20,["G3326"]],[20,21,["G1700"]],[21,22,["G3391"]],[22,23,["G5610"]]]},{"k":24095,"v":[[0,1,["G1127"]],[1,2,["G2532"]],[2,3,["G4336"]],[3,4,["G2443"]],[4,6,["G1525"]],[6,7,["G3361"]],[7,8,["G1519"]],[8,9,["G3986"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G3303"]],[12,14,["G4289"]],[14,15,["G1161"]],[15,16,["G3588"]],[16,17,["G4561"]],[17,19,["G772"]]]},{"k":24096,"v":[[0,3,["G565"]],[3,4,["G3825"]],[4,5,["(G1537)"]],[5,7,["G1208"]],[7,9,["G4336"]],[9,10,["G3004"]],[10,12,["G3450"]],[12,13,["G3962"]],[13,14,["G1487"]],[14,15,["G5124"]],[15,16,["G4221"]],[16,17,["G1410"]],[17,18,["G3756"]],[18,20,["G3928"]],[20,21,["G575"]],[21,22,["G1700"]],[22,23,["G3362"]],[23,25,["G4095"]],[25,26,["G846"]],[26,27,["G4675"]],[27,28,["G2307"]],[28,30,["G1096"]]]},{"k":24097,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,5,["G2147"]],[5,6,["G846"]],[6,7,["G2518"]],[7,8,["G3825"]],[8,9,["G1063"]],[9,10,["G846"]],[10,11,["G3788"]],[11,12,["G2258"]],[12,13,["G916"]]]},{"k":24098,"v":[[0,1,["G2532"]],[1,3,["G863"]],[3,4,["G846"]],[4,7,["G565"]],[7,8,["G3825"]],[8,10,["G4336"]],[10,11,["(G1537)"]],[11,13,["G5154"]],[13,14,["G2036"]],[14,15,["G3588"]],[15,16,["G848"]],[16,17,["G3056"]]]},{"k":24099,"v":[[0,1,["G5119"]],[1,2,["G2064"]],[2,4,["G4314"]],[4,5,["G848"]],[5,6,["G3101"]],[6,7,["G2532"]],[7,8,["G3004"]],[8,10,["G846"]],[10,12,["G2518"]],[12,13,["G3063"]],[13,14,["G2532"]],[14,17,["G373"]],[17,18,["G2400"]],[18,19,["G3588"]],[19,20,["G5610"]],[20,23,["G1448"]],[23,24,["G2532"]],[24,25,["G3588"]],[25,26,["G5207"]],[26,28,["G444"]],[28,30,["G3860"]],[30,31,["G1519"]],[31,33,["G5495"]],[33,35,["G268"]]]},{"k":24100,"v":[[0,1,["G1453"]],[1,5,["G71"]],[5,6,["G2400"]],[6,10,["G1448"]],[10,13,["G3860"]],[13,14,["G3165"]]]},{"k":24101,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,4,["G2089"]],[4,5,["G2980"]],[5,6,["G2400"]],[6,7,["G2455"]],[7,8,["G1520"]],[8,10,["G3588"]],[10,11,["G1427"]],[11,12,["G2064"]],[12,13,["G2532"]],[13,14,["G3326"]],[14,15,["G846"]],[15,17,["G4183"]],[17,18,["G3793"]],[18,19,["G3326"]],[19,20,["G3162"]],[20,21,["G2532"]],[21,22,["G3586"]],[22,23,["G575"]],[23,24,["G3588"]],[24,26,["G749"]],[26,27,["G2532"]],[27,28,["G4245"]],[28,30,["G3588"]],[30,31,["G2992"]]]},{"k":24102,"v":[[0,1,["G1161"]],[1,4,["G3860"]],[4,5,["G846"]],[5,6,["G1325"]],[6,7,["G846"]],[7,9,["G4592"]],[9,10,["G3004"]],[10,11,["G3739","G302"]],[11,14,["G5368"]],[14,16,["G846"]],[16,17,["G2076"]],[17,21,["G2902","G846"]]]},{"k":24103,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G4334"]],[4,6,["G2424"]],[6,8,["G2036"]],[8,9,["G5463"]],[9,10,["G4461"]],[10,11,["G2532"]],[11,12,["G2705"]],[12,13,["G846"]]]},{"k":24104,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G2083"]],[6,7,["G1909","G3739"]],[7,11,["G3918"]],[11,12,["G4334"]],[12,15,["G1911"]],[15,16,["G5495"]],[16,17,["G1909"]],[17,18,["G2424"]],[18,19,["G2532"]],[19,20,["G2902"]],[20,21,["G846"]]]},{"k":24105,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G1520"]],[3,5,["G3588"]],[5,8,["G3326"]],[8,9,["G2424"]],[9,11,["G1614"]],[11,13,["G5495"]],[13,15,["G645"]],[15,16,["G848"]],[16,17,["G3162"]],[17,18,["G2532"]],[18,19,["G3960"]],[19,21,["G1401"]],[21,23,["G3588"]],[23,25,["G749"]],[25,28,["G851"]],[28,29,["G846"]],[29,30,["G5621"]]]},{"k":24106,"v":[[0,1,["G5119"]],[1,2,["G3004"]],[2,3,["G2424"]],[3,5,["G846"]],[5,8,["G654"]],[8,9,["G4675"]],[9,10,["G3162"]],[10,11,["G1519"]],[11,12,["G846"]],[12,13,["G5117"]],[13,14,["G1063"]],[14,15,["G3956"]],[15,18,["G2983"]],[18,20,["G3162"]],[20,22,["G622"]],[22,23,["G1722"]],[23,25,["G3162"]]]},{"k":24107,"v":[[0,0,["(G2228)"]],[0,1,["G1380"]],[1,3,["G3754"]],[3,5,["G1410","G3756"]],[5,6,["G737"]],[6,7,["G3870"]],[7,9,["G3450"]],[9,10,["G3962"]],[10,11,["G2532"]],[11,15,["G3936"]],[15,16,["G3427"]],[16,17,["G4119"]],[17,18,["G2228"]],[18,19,["G1427"]],[19,20,["G3003"]],[20,22,["G32"]]]},{"k":24108,"v":[[0,2,["G4459"]],[2,3,["G3767"]],[3,5,["G3588"]],[5,6,["G1124"]],[6,8,["G4137"]],[8,9,["G3754"]],[9,10,["G3779"]],[10,12,["G1163"]],[12,13,["G1096"]]]},{"k":24109,"v":[[0,1,["G1722"]],[1,3,["G1565"]],[3,4,["G5610"]],[4,5,["G2036"]],[5,6,["G2424"]],[6,8,["G3588"]],[8,9,["G3793"]],[9,13,["G1831"]],[13,14,["G5613"]],[14,15,["G1909"]],[15,17,["G3027"]],[17,18,["G3326"]],[18,19,["G3162"]],[19,20,["G2532"]],[20,21,["G3586"]],[21,24,["G4815"]],[24,25,["G3165"]],[25,27,["G2516"]],[27,28,["G2596","G2250"]],[28,29,["G4314"]],[29,30,["G5209"]],[30,31,["G1321"]],[31,32,["G1722"]],[32,33,["G3588"]],[33,34,["G2411"]],[34,35,["G2532"]],[35,39,["G2902","G3756"]],[39,41,["G3165"]]]},{"k":24110,"v":[[0,1,["G1161"]],[1,2,["G3650"]],[2,3,["G5124"]],[3,5,["G1096"]],[5,6,["G2443"]],[6,7,["G3588"]],[7,8,["G1124"]],[8,10,["G3588"]],[10,11,["G4396"]],[11,14,["G4137"]],[14,15,["G5119"]],[15,16,["G3956"]],[16,17,["G3588"]],[17,18,["G3101"]],[18,19,["G863"]],[19,20,["G846"]],[20,22,["G5343"]]]},{"k":24111,"v":[[0,1,["G1161"]],[1,6,["G2902"]],[6,8,["G2424"]],[8,11,["G520"]],[11,12,["G4314"]],[12,13,["G2533"]],[13,14,["G3588"]],[14,16,["G749"]],[16,17,["G3699"]],[17,18,["G3588"]],[18,19,["G1122"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G4245"]],[22,24,["G4863"]]]},{"k":24112,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G190"]],[3,4,["G846"]],[4,6,["G575","G3113"]],[6,7,["G2193"]],[7,8,["G3588"]],[8,10,["G749"]],[10,11,["G833"]],[11,12,["G2532"]],[12,13,["G1525"]],[13,14,["G2080"]],[14,16,["G2521"]],[16,17,["G3326"]],[17,18,["G3588"]],[18,19,["G5257"]],[19,21,["G1492"]],[21,22,["G3588"]],[22,23,["G5056"]]]},{"k":24113,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G2532"]],[5,6,["G4245"]],[6,7,["G2532"]],[7,8,["G3650"]],[8,9,["G3588"]],[9,10,["G4892"]],[10,11,["G2212"]],[11,13,["G5577"]],[13,14,["G2596"]],[14,15,["G2424"]],[15,16,["G3704"]],[16,20,["G2289","G846"]]]},{"k":24114,"v":[[0,1,["G2532"]],[1,2,["G2147"]],[2,3,["G3756"]],[3,5,["G2532"]],[5,6,["G4183"]],[6,8,["G5575"]],[8,9,["G4334"]],[9,11,["G2147"]],[11,13,["G3756"]],[13,16,["(G1161)","G5305"]],[16,17,["G4334"]],[17,18,["G1417"]],[18,20,["G5575"]]]},{"k":24115,"v":[[0,2,["G2036"]],[2,3,["G3778"]],[3,5,["G5346"]],[5,8,["G1410"]],[8,10,["G2647"]],[10,11,["G3588"]],[11,12,["G3485"]],[12,14,["G2316"]],[14,15,["G2532"]],[15,17,["G3618"]],[17,18,["G846"]],[18,19,["G1223"]],[19,20,["G5140"]],[20,21,["G2250"]]]},{"k":24116,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G450"]],[5,7,["G2036"]],[7,9,["G846"]],[9,10,["G611"]],[10,12,["G3762"]],[12,13,["G5101"]],[13,17,["G3778"]],[17,19,["G2649"]],[19,20,["G4675"]]]},{"k":24117,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,5,["G4623"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,9,["G749"]],[9,10,["G611"]],[10,12,["G2036"]],[12,14,["G846"]],[14,16,["G1844"]],[16,17,["G4571"]],[17,18,["G2596"]],[18,19,["G3588"]],[19,20,["G2198"]],[20,21,["G2316"]],[21,22,["G2443"]],[22,24,["G2036"]],[24,25,["G2254"]],[25,26,["G1487"]],[26,27,["G4771"]],[27,28,["G1488"]],[28,29,["G3588"]],[29,30,["G5547"]],[30,31,["G3588"]],[31,32,["G5207"]],[32,34,["G2316"]]]},{"k":24118,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G4771"]],[5,7,["G2036"]],[7,8,["G4133"]],[8,10,["G3004"]],[10,12,["G5213"]],[12,13,["G575","G737"]],[13,16,["G3700"]],[16,17,["G3588"]],[17,18,["G5207"]],[18,20,["G444"]],[20,21,["G2521"]],[21,22,["G1537"]],[22,25,["G1188"]],[25,27,["G1411"]],[27,28,["G2532"]],[28,29,["G2064"]],[29,30,["G1909"]],[30,31,["G3588"]],[31,32,["G3507"]],[32,34,["G3772"]]]},{"k":24119,"v":[[0,1,["G5119"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G1284"]],[5,6,["G848"]],[6,7,["G2440"]],[7,8,["G3004"]],[8,12,["G987"]],[12,13,["G5101"]],[13,14,["G2089"]],[14,15,["G5532"]],[15,16,["G2192"]],[16,19,["G3144"]],[19,20,["G2396"]],[20,21,["G3568"]],[21,24,["G191"]],[24,25,["G846"]],[25,26,["G988"]]]},{"k":24120,"v":[[0,1,["G5101"]],[1,2,["G1380"]],[2,3,["G5213","(G1161)"]],[3,4,["G3588"]],[4,5,["G611"]],[5,7,["G2036"]],[7,9,["G2076"]],[9,10,["G1777"]],[10,12,["G2288"]]]},{"k":24121,"v":[[0,1,["G5119"]],[1,4,["G1716"]],[4,5,["G1519"]],[5,6,["G846"]],[6,7,["G4383"]],[7,8,["G2532"]],[8,9,["G2852"]],[9,10,["G846"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,20,["G4474"]]]},{"k":24122,"v":[[0,1,["G3004"]],[1,2,["G4395"]],[2,4,["G2254"]],[4,6,["G5547"]],[6,7,["G5101"]],[7,8,["G2076"]],[8,11,["G3817"]],[11,12,["G4571"]]]},{"k":24123,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2521"]],[3,4,["G1854"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G833"]],[7,8,["G2532"]],[8,9,["G3391"]],[9,10,["G3814"]],[10,11,["G4334"]],[11,13,["G846"]],[13,14,["G3004"]],[14,15,["G4771"]],[15,16,["G2532"]],[16,17,["G2258"]],[17,18,["G3326"]],[18,19,["G2424"]],[19,21,["G1057"]]]},{"k":24124,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G720"]],[3,4,["G1715"]],[4,6,["G3956"]],[6,7,["G3004"]],[7,9,["G1492"]],[9,10,["G3756"]],[10,11,["G5101"]],[11,13,["G3004"]]]},{"k":24125,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,6,["G1831"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G4440"]],[9,10,["G243"]],[10,12,["G1492"]],[12,13,["G846"]],[13,14,["G2532"]],[14,15,["G3004"]],[15,17,["G3588"]],[17,20,["G1563"]],[20,21,["G3778"]],[21,23,["G2258"]],[23,24,["G2532"]],[24,25,["G3326"]],[25,26,["G2424"]],[26,28,["G3480"]]]},{"k":24126,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,4,["G720"]],[4,5,["G3326"]],[5,7,["G3727"]],[7,10,["G3756"]],[10,11,["G1492"]],[11,12,["G3588"]],[12,13,["G444"]]]},{"k":24127,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,4,["G3397"]],[4,5,["G4334"]],[5,11,["G2476"]],[11,13,["G2036"]],[13,15,["G4074"]],[15,16,["G230"]],[16,17,["G4771"]],[17,18,["G2532"]],[18,19,["G1488"]],[19,21,["G1537"]],[21,22,["G846"]],[22,23,["G1063"]],[23,24,["G4675"]],[24,25,["G2981"]],[25,26,["G4160","G1212"]],[26,27,["G4571"]]]},{"k":24128,"v":[[0,1,["G5119"]],[1,2,["G756"]],[2,5,["G2653"]],[5,6,["G2532"]],[6,8,["G3660"]],[8,11,["G1492"]],[11,12,["G3756"]],[12,13,["G3588"]],[13,14,["G444"]],[14,15,["G2532"]],[15,16,["G2112"]],[16,18,["G220"]],[18,19,["G5455"]]]},{"k":24129,"v":[[0,1,["G2532"]],[1,2,["G4074"]],[2,3,["G3415"]],[3,4,["G3588"]],[4,5,["G4487"]],[5,7,["G2424"]],[7,9,["G2046"]],[9,11,["G846"]],[11,12,["G4250"]],[12,14,["G220"]],[14,15,["G5455"]],[15,18,["G533"]],[18,19,["G3165"]],[19,20,["G5151"]],[20,21,["G2532"]],[21,23,["G1831"]],[23,24,["G1854"]],[24,26,["G2799"]],[26,27,["G4090"]]]},{"k":24130,"v":[[0,1,["G1161"]],[1,3,["G4405"]],[3,5,["G1096"]],[5,6,["G3956"]],[6,7,["G3588"]],[7,9,["G749"]],[9,10,["G2532"]],[10,11,["G4245"]],[11,13,["G3588"]],[13,14,["G2992"]],[14,15,["G2983"]],[15,16,["G4824"]],[16,17,["G2596"]],[17,18,["G2424"]],[18,19,["G5620"]],[19,23,["G2289","G846"]]]},{"k":24131,"v":[[0,1,["G2532"]],[1,5,["G1210"]],[5,6,["G846"]],[6,10,["G520"]],[10,11,["G2532"]],[11,12,["G3860"]],[12,13,["G846"]],[13,15,["G4194"]],[15,16,["G4091"]],[16,17,["G3588"]],[17,18,["G2232"]]]},{"k":24132,"v":[[0,1,["G5119"]],[1,2,["G2455"]],[2,5,["G3860"]],[5,6,["G846"]],[6,9,["G1492"]],[9,10,["G3754"]],[10,13,["G2632"]],[13,14,["G3338"]],[14,18,["G654"]],[18,19,["G3588"]],[19,20,["G5144"]],[20,23,["G694"]],[23,25,["G3588"]],[25,27,["G749"]],[27,28,["G2532"]],[28,29,["G4245"]]]},{"k":24133,"v":[[0,1,["G3004"]],[1,4,["G264"]],[4,9,["G3860"]],[9,11,["G121"]],[11,12,["G129"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G2036"]],[15,16,["G5101"]],[16,19,["G4314"]],[19,20,["G2248"]],[20,21,["G3700"]],[21,22,["G4771"]],[22,24,[]]]},{"k":24134,"v":[[0,1,["G2532"]],[1,4,["G4496"]],[4,5,["G3588"]],[5,8,["G694"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G3485"]],[11,13,["G402"]],[13,14,["G2532"]],[14,15,["G565"]],[15,17,["G519"]],[17,18,[]]]},{"k":24135,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G2983"]],[5,6,["G3588"]],[6,8,["G694"]],[8,10,["G2036"]],[10,14,["G1832","G3756"]],[14,17,["G906"]],[17,18,["G846"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G2878"]],[21,22,["G1893"]],[22,24,["G2076"]],[24,26,["G5092"]],[26,28,["G129"]]]},{"k":24136,"v":[[0,1,["G1161"]],[1,3,["G2983"]],[3,4,["G4824"]],[4,6,["G59"]],[6,7,["G1537"]],[7,8,["G846"]],[8,9,["G3588"]],[9,10,["G2763"]],[10,11,["G68"]],[11,15,["G1519","G5027","G3581"]]]},{"k":24137,"v":[[0,1,["G1352"]],[1,2,["G1565"]],[2,3,["G68"]],[3,5,["G2564"]],[5,7,["G68"]],[7,9,["G129"]],[9,10,["G2193"]],[10,12,["G4594"]]]},{"k":24138,"v":[[0,1,["G5119"]],[1,3,["G4137"]],[3,4,["G3588"]],[4,7,["G4483"]],[7,8,["G1223"]],[8,9,["G2408"]],[9,10,["G3588"]],[10,11,["G4396"]],[11,12,["G3004"]],[12,13,["G2532"]],[13,15,["G2983"]],[15,16,["G3588"]],[16,17,["G5144"]],[17,20,["G694"]],[20,21,["G3588"]],[21,22,["G5092"]],[22,27,["G5091"]],[27,28,["G3739"]],[28,30,["G575"]],[30,32,["G5207"]],[32,34,["G2474"]],[34,36,["G5091"]]]},{"k":24139,"v":[[0,1,["G2532"]],[1,2,["G1325"]],[2,3,["G846"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G2763"]],[6,7,["G68"]],[7,8,["G2505"]],[8,10,["G2962"]],[10,11,["G4929"]],[11,12,["G3427"]]]},{"k":24140,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2476"]],[3,4,["G1715"]],[4,5,["G3588"]],[5,6,["G2232"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G2232"]],[9,10,["G1905"]],[10,11,["G846"]],[11,12,["G3004"]],[12,13,["G1488"]],[13,14,["G4771"]],[14,15,["G3588"]],[15,16,["G935"]],[16,18,["G3588"]],[18,19,["G2453"]],[19,20,["G1161"]],[20,21,["G2424"]],[21,22,["G5346"]],[22,24,["G846"]],[24,25,["G4771"]],[25,26,["G3004"]]]},{"k":24141,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G2723"]],[5,6,["G5259"]],[6,7,["G3588"]],[7,9,["G749"]],[9,10,["G2532"]],[10,11,["G4245"]],[11,13,["G611"]],[13,14,["G3762"]]]},{"k":24142,"v":[[0,1,["G5119"]],[1,2,["G3004"]],[2,3,["G4091"]],[3,5,["G846"]],[5,6,["G191"]],[6,8,["G3756"]],[8,11,["G4214"]],[11,14,["G2649"]],[14,15,["G4675"]]]},{"k":24143,"v":[[0,1,["G2532"]],[1,3,["G611","(G3756)"]],[3,4,["G846"]],[4,5,["G4314"]],[5,6,["G3761"]],[6,7,["G1520"]],[7,8,["G4487"]],[8,9,["G5620"]],[9,11,["G3588"]],[11,12,["G2232"]],[12,13,["G2296"]],[13,14,["G3029"]]]},{"k":24144,"v":[[0,1,["G1161"]],[1,2,["G2596"]],[2,4,["G1859"]],[4,5,["G3588"]],[5,6,["G2232"]],[6,8,["G1486"]],[8,10,["G630"]],[10,12,["G3588"]],[12,13,["G3793"]],[13,14,["G1520"]],[14,15,["G1198"]],[15,16,["G3739"]],[16,18,["G2309"]]]},{"k":24145,"v":[[0,1,["G1161"]],[1,3,["G2192"]],[3,4,["G5119"]],[4,6,["G1978"]],[6,7,["G1198"]],[7,8,["G3004"]],[8,9,["G912"]]]},{"k":24146,"v":[[0,1,["G3767"]],[1,3,["G846"]],[3,6,["G4863"]],[6,7,["G4091"]],[7,8,["G2036"]],[8,10,["G846"]],[10,11,["G5101"]],[11,12,["G2309"]],[12,16,["G630"]],[16,18,["G5213"]],[18,19,["G912"]],[19,20,["G2228"]],[20,21,["G2424"]],[21,24,["G3004"]],[24,25,["G5547"]]]},{"k":24147,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G1223"]],[5,6,["G5355"]],[6,9,["G3860"]],[9,10,["G846"]]]},{"k":24148,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,5,["G2521"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,9,["G968"]],[9,10,["G846"]],[10,11,["G1135"]],[11,12,["G649"]],[12,13,["G4314"]],[13,14,["G846"]],[14,15,["G3004"]],[15,20,["G3367","G4671"]],[20,22,["G1565"]],[22,24,["G1342"]],[24,25,["G1063"]],[25,28,["G3958"]],[28,30,["G4183"]],[30,32,["G4594"]],[32,33,["G2596"]],[33,35,["G3677"]],[35,36,["G1223"]],[36,38,["G846"]]]},{"k":24149,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G2532"]],[5,6,["G4245"]],[6,7,["G3982"]],[7,8,["G3588"]],[8,9,["G3793"]],[9,10,["G2443"]],[10,13,["G154"]],[13,14,["G912"]],[14,15,["G1161"]],[15,16,["G622"]],[16,17,["G2424"]]]},{"k":24150,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G2232"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G5101"]],[8,9,["G575"]],[9,10,["G3588"]],[10,11,["G1417"]],[11,12,["G2309"]],[12,16,["G630"]],[16,18,["G5213","(G1161)"]],[18,19,["G3588"]],[19,20,["G2036"]],[20,21,["G912"]]]},{"k":24151,"v":[[0,1,["G4091"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G5101"]],[5,8,["G4160"]],[8,9,["G3767"]],[9,11,["G2424"]],[11,14,["G3004"]],[14,15,["G5547"]],[15,17,["G3956"]],[17,18,["G3004"]],[18,20,["G846"]],[20,24,["G4717"]]]},{"k":24152,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2232"]],[3,4,["G5346"]],[4,5,["G1063"]],[5,6,["G5101"]],[6,7,["G2556"]],[7,10,["G4160"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,14,["G2896"]],[14,16,["G4057"]],[16,17,["G3004"]],[17,21,["G4717"]]]},{"k":24153,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,3,["G1492"]],[3,4,["G3754"]],[4,7,["G5623"]],[7,8,["G3762"]],[8,9,["G235"]],[9,11,["G3123"]],[11,13,["G2351"]],[13,15,["G1096"]],[15,17,["G2983"]],[17,18,["G5204"]],[18,20,["G633"]],[20,22,["G5495"]],[22,23,["G561"]],[23,24,["G3588"]],[24,25,["G3793"]],[25,26,["G3004"]],[26,28,["G1510"]],[28,29,["G121"]],[29,30,["G575"]],[30,31,["G3588"]],[31,32,["G129"]],[32,34,["G5127"]],[34,36,["G1342"]],[36,37,["G3700"]],[37,38,["G5210"]],[38,40,[]]]},{"k":24154,"v":[[0,1,["G2532"]],[1,2,["G611"]],[2,3,["G3956"]],[3,4,["G3588"]],[4,5,["G2992"]],[5,7,["G2036"]],[7,8,["G846"]],[8,9,["G129"]],[9,11,["G1909"]],[11,12,["G2248"]],[12,13,["G2532"]],[13,14,["G1909"]],[14,15,["G2257"]],[15,16,["G5043"]]]},{"k":24155,"v":[[0,1,["G5119"]],[1,2,["G630"]],[2,4,["G912"]],[4,6,["G846"]],[6,7,["G1161"]],[7,11,["G5417"]],[11,12,["G2424"]],[12,14,["G3860"]],[14,16,["G2443"]],[16,18,["G4717"]]]},{"k":24156,"v":[[0,1,["G5119"]],[1,2,["G3588"]],[2,3,["G4757"]],[3,5,["G3588"]],[5,6,["G2232"]],[6,7,["G3880"]],[7,8,["G2424"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,12,["G4232"]],[12,14,["G4863"]],[14,15,["G1909"]],[15,16,["G846"]],[16,17,["G3588"]],[17,18,["G3650"]],[18,19,["G4686"]],[19,21,[]]]},{"k":24157,"v":[[0,1,["G2532"]],[1,3,["G1562"]],[3,4,["G846"]],[4,7,["G4060"]],[7,8,["G846"]],[8,10,["G2847"]],[10,11,["G5511"]]]},{"k":24158,"v":[[0,1,["G2532"]],[1,5,["G4120"]],[5,7,["G4735"]],[7,8,["G1537"]],[8,9,["G173"]],[9,11,["G2007"]],[11,13,["G1909"]],[13,14,["G846"]],[14,15,["G2776"]],[15,16,["G2532"]],[16,18,["G2563"]],[18,19,["G1909"]],[19,20,["G846"]],[20,22,["G1188"]],[22,23,["G2532"]],[23,27,["G1120"]],[27,28,["G1715"]],[28,29,["G846"]],[29,31,["G1702"]],[31,32,["G846"]],[32,33,["G3004"]],[33,34,["G5463"]],[34,35,["G935"]],[35,37,["G3588"]],[37,38,["G2453"]]]},{"k":24159,"v":[[0,1,["G2532"]],[1,3,["G1716"]],[3,4,["G1519"]],[4,5,["G846"]],[5,7,["G2983"]],[7,8,["G3588"]],[8,9,["G2563"]],[9,10,["G2532"]],[10,11,["G5180"]],[11,12,["G846"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G2776"]]]},{"k":24160,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,6,["G1702"]],[6,7,["G846"]],[7,9,["G1562"]],[9,10,["G3588"]],[10,11,["G5511"]],[11,13,["G1562"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G1746"]],[16,18,["G846"]],[18,19,["G2440"]],[19,21,["G846"]],[21,22,["G2532"]],[22,25,["G520","G846"]],[25,27,["G4717"]],[27,28,[]]]},{"k":24161,"v":[[0,1,["G1161"]],[1,5,["G1831"]],[5,7,["G2147"]],[7,9,["G444"]],[9,11,["G2956"]],[11,12,["G4613"]],[12,14,["G3686"]],[14,15,["G5126"]],[15,17,["G29"]],[17,18,["G2443"]],[18,19,["G142"]],[19,20,["G846"]],[20,21,["G4716"]]]},{"k":24162,"v":[[0,1,["G2532"]],[1,5,["G2064"]],[5,6,["G1519"]],[6,8,["G5117"]],[8,9,["G3004"]],[9,10,["G1115"]],[10,11,["G3739"]],[11,12,["G2076"]],[12,14,["G3004"]],[14,16,["G5117"]],[16,19,["G2898"]]]},{"k":24163,"v":[[0,2,["G1325"]],[2,3,["G846"]],[3,4,["G3690"]],[4,6,["G4095"]],[6,7,["G3396"]],[7,8,["G3326"]],[8,9,["G5521"]],[9,10,["G2532"]],[10,14,["G1089"]],[14,17,["G2309"]],[17,18,["G3756"]],[18,19,["G4095"]]]},{"k":24164,"v":[[0,1,["G1161"]],[1,3,["G4717"]],[3,4,["G846"]],[4,6,["G1266"]],[6,7,["G846"]],[7,8,["G2440"]],[8,9,["G906"]],[9,10,["G2819"]],[10,11,["G2443"]],[11,15,["G4137"]],[15,18,["G4483"]],[18,19,["G5259"]],[19,20,["G3588"]],[20,21,["G4396"]],[21,23,["G1266"]],[23,24,["G3450"]],[24,25,["G2440"]],[25,27,["G1438"]],[27,28,["G2532"]],[28,29,["G1909"]],[29,30,["G3450"]],[30,31,["G2441"]],[31,34,["G906"]],[34,35,["G2819"]]]},{"k":24165,"v":[[0,1,["G2532"]],[1,3,["G2521"]],[3,5,["G5083"]],[5,6,["G846"]],[6,7,["G1563"]]]},{"k":24166,"v":[[0,1,["G2532"]],[1,3,["G2007"]],[3,4,["G1883"]],[4,5,["G846"]],[5,6,["G2776"]],[6,7,["G846"]],[7,8,["G156"]],[8,9,["G1125"]],[9,10,["G3778"]],[10,11,["G2076"]],[11,12,["G2424"]],[12,13,["G3588"]],[13,14,["G935"]],[14,16,["G3588"]],[16,17,["G2453"]]]},{"k":24167,"v":[[0,1,["G5119"]],[1,4,["G1417"]],[4,5,["G3027"]],[5,6,["G4717"]],[6,7,["G4862"]],[7,8,["G846"]],[8,9,["G1520"]],[9,10,["G1537"]],[10,13,["G1188"]],[13,14,["G2532"]],[14,15,["G1520"]],[15,16,["G1537"]],[16,18,["G2176"]]]},{"k":24168,"v":[[0,1,["G1161"]],[1,5,["G3899"]],[5,6,["G987"]],[6,7,["G846"]],[7,8,["G2795"]],[8,9,["G848"]],[9,10,["G2776"]]]},{"k":24169,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,5,["G2647"]],[5,6,["G3588"]],[6,7,["G3485"]],[7,8,["G2532"]],[8,9,["G3618"]],[9,11,["G1722"]],[11,12,["G5140"]],[12,13,["G2250"]],[13,14,["G4982"]],[14,15,["G4572"]],[15,16,["G1487"]],[16,18,["G1488"]],[18,20,["G5207"]],[20,22,["G2316"]],[22,24,["G2597"]],[24,25,["G575"]],[25,26,["G3588"]],[26,27,["G4716"]]]},{"k":24170,"v":[[0,0,["(G1161)"]],[0,1,["G3668"]],[1,2,["G2532"]],[2,3,["G3588"]],[3,5,["G749"]],[5,6,["G1702"]],[6,8,["G3326"]],[8,9,["G3588"]],[9,10,["G1122"]],[10,11,["G2532"]],[11,12,["G4245"]],[12,13,["G3004"]]]},{"k":24171,"v":[[0,2,["G4982"]],[2,3,["G243"]],[3,4,["G1438"]],[4,6,["G1410","G3756"]],[6,7,["G4982"]],[7,8,["G1487"]],[8,10,["G2076"]],[10,12,["G935"]],[12,14,["G2474"]],[14,17,["G3568"]],[17,19,["G2597"]],[19,20,["G575"]],[20,21,["G3588"]],[21,22,["G4716"]],[22,23,["G2532"]],[23,26,["G4100"]],[26,27,["G846"]]]},{"k":24172,"v":[[0,2,["G3982"]],[2,3,["G1909"]],[3,4,["G2316"]],[4,7,["G4506"]],[7,8,["G846"]],[8,9,["G3568"]],[9,10,["G1487"]],[10,12,["G2309"]],[12,14,["G846"]],[14,15,["G1063"]],[15,17,["G2036"]],[17,19,["G1510"]],[19,21,["G5207"]],[21,23,["G2316"]]]},{"k":24173,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G3027"]],[2,3,["G846"]],[3,7,["G4957"]],[7,8,["G846"]],[8,14,["G3679","G846"]]]},{"k":24174,"v":[[0,1,["G1161"]],[1,2,["G575"]],[2,4,["G1623"]],[4,5,["G5610"]],[5,7,["G1096"]],[7,8,["G4655"]],[8,9,["G1909"]],[9,10,["G3956"]],[10,11,["G3588"]],[11,12,["G1093"]],[12,13,["G2193"]],[13,15,["G1766"]],[15,16,["G5610"]]]},{"k":24175,"v":[[0,1,["G1161"]],[1,2,["G4012"]],[2,3,["G3588"]],[3,4,["G1766"]],[4,5,["G5610"]],[5,6,["G2424"]],[6,7,["G310"]],[7,10,["G3173"]],[10,11,["G5456"]],[11,12,["G3004"]],[12,13,["G2241"]],[13,14,["G2241"]],[14,15,["G2982"]],[15,16,["G4518"]],[16,20,["G5123"]],[20,21,["G3450"]],[21,22,["G2316"]],[22,23,["G3450"]],[23,24,["G2316"]],[24,25,["G2444"]],[25,28,["G1459"]],[28,29,["G3165"]]]},{"k":24176,"v":[[0,0,["(G1161)"]],[0,1,["G5100"]],[1,5,["G2476"]],[5,6,["G1563"]],[6,9,["G191"]],[9,11,["G3004"]],[11,12,["G3778"]],[12,14,["G5455"]],[14,16,["G2243"]]]},{"k":24177,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G1520"]],[3,4,["G1537"]],[4,5,["G846"]],[5,6,["G5143"]],[6,7,["G2532"]],[7,8,["G2983"]],[8,10,["G4699"]],[10,11,["G5037"]],[11,12,["G4130"]],[12,15,["G3690"]],[15,16,["G2532"]],[16,17,["G4060"]],[17,21,["G2563"]],[21,26,["G4222","G846"]]]},{"k":24178,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G3062"]],[2,3,["G3004"]],[3,5,["G863"]],[5,8,["G1492"]],[8,9,["G1487"]],[9,10,["G2243"]],[10,12,["G2064"]],[12,14,["G4982"]],[14,15,["G846"]]]},{"k":24179,"v":[[0,0,["(G1161)"]],[0,1,["G2424"]],[1,5,["G2896"]],[5,6,["G3825"]],[6,9,["G3173"]],[9,10,["G5456"]],[10,12,["G863"]],[12,13,["G3588"]],[13,14,["G4151"]]]},{"k":24180,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G3588"]],[3,4,["G2665"]],[4,6,["G3588"]],[6,7,["G3485"]],[7,9,["G4977"]],[9,10,["G1519"]],[10,11,["G1417"]],[11,12,["G575"]],[12,14,["G509"]],[14,15,["G2193"]],[15,17,["G2736"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G1093"]],[20,22,["G4579"]],[22,23,["G2532"]],[23,24,["G3588"]],[24,25,["G4073"]],[25,26,["G4977"]]]},{"k":24181,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3419"]],[3,5,["G455"]],[5,6,["G2532"]],[6,7,["G4183"]],[7,8,["G4983"]],[8,10,["G3588"]],[10,11,["G40"]],[11,13,["G2837"]],[13,14,["G1453"]]]},{"k":24182,"v":[[0,1,["G2532"]],[1,2,["G1831"]],[2,4,["G1537"]],[4,5,["G3588"]],[5,6,["G3419"]],[6,7,["G3326"]],[7,8,["G846"]],[8,9,["G1454"]],[9,11,["G1525"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G40"]],[14,15,["G4172"]],[15,16,["G2532"]],[16,17,["G1718"]],[17,19,["G4183"]]]},{"k":24183,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1543"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,9,["G3326"]],[9,10,["G846"]],[10,11,["G5083"]],[11,12,["G2424"]],[12,13,["G1492"]],[13,14,["G3588"]],[14,15,["G4578"]],[15,16,["G2532"]],[16,21,["G1096"]],[21,23,["G5399"]],[23,24,["G4970"]],[24,25,["G3004"]],[25,26,["G230"]],[26,27,["G3778"]],[27,28,["G2258"]],[28,30,["G5207"]],[30,32,["G2316"]]]},{"k":24184,"v":[[0,1,["G1161"]],[1,2,["G4183"]],[2,3,["G1135"]],[3,4,["G2258"]],[4,5,["G1563"]],[5,6,["G2334"]],[6,8,["G575","G3113"]],[8,9,["G3748"]],[9,10,["G190"]],[10,11,["G2424"]],[11,12,["G575"]],[12,13,["G1056"]],[13,14,["G1247"]],[14,16,["G846"]]]},{"k":24185,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G2258"]],[3,4,["G3137"]],[4,5,["G3094"]],[5,6,["G2532"]],[6,7,["G3137"]],[7,8,["G3588"]],[8,9,["G3384"]],[9,11,["G2385"]],[11,12,["G2532"]],[12,13,["G2500"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G3384"]],[16,18,["G2199"]],[18,19,["G5207"]]]},{"k":24186,"v":[[0,1,["G1161"]],[1,3,["G3798"]],[3,5,["G1096"]],[5,7,["G2064"]],[7,9,["G4145"]],[9,10,["G444"]],[10,11,["G575"]],[11,12,["G707"]],[12,13,["G5122"]],[13,14,["G2501"]],[14,15,["G3739"]],[15,16,["G2532"]],[16,17,["G846"]],[17,20,["G3100","G2424"]]]},{"k":24187,"v":[[0,1,["G3778"]],[1,2,["G4334"]],[2,4,["G4091"]],[4,6,["G154"]],[6,7,["G3588"]],[7,8,["G4983"]],[8,10,["G2424"]],[10,11,["G5119"]],[11,12,["G4091"]],[12,13,["G2753"]],[13,14,["G3588"]],[14,15,["G4983"]],[15,18,["G591"]]]},{"k":24188,"v":[[0,1,["G2532"]],[1,3,["G2501"]],[3,5,["G2983"]],[5,6,["G3588"]],[6,7,["G4983"]],[7,9,["G1794"]],[9,10,["G846"]],[10,13,["G2513"]],[13,15,["G4616"]]]},{"k":24189,"v":[[0,1,["G2532"]],[1,2,["G5087"]],[2,3,["G846"]],[3,4,["G1722"]],[4,6,["G848"]],[6,7,["G2537"]],[7,8,["G3419"]],[8,9,["G3739"]],[9,13,["G2998"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G4073"]],[16,17,["G2532"]],[17,19,["G4351"]],[19,21,["G3173"]],[21,22,["G3037"]],[22,24,["G3588"]],[24,25,["G2374"]],[25,27,["G3588"]],[27,28,["G3419"]],[28,30,["G565"]]]},{"k":24190,"v":[[0,1,["G1161"]],[1,2,["G1563"]],[2,3,["G2258"]],[3,4,["G3137"]],[4,5,["G3094"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G243"]],[8,9,["G3137"]],[9,10,["G2521"]],[10,12,["G561"]],[12,13,["G3588"]],[13,14,["G5028"]]]},{"k":24191,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G1887"]],[4,5,["G3748"]],[5,6,["G2076","G3326"]],[6,10,["G3588"]],[10,11,["G3904"]],[11,12,["G3588"]],[12,14,["G749"]],[14,15,["G2532"]],[15,16,["G5330"]],[16,18,["G4863"]],[18,19,["G4314"]],[19,20,["G4091"]]]},{"k":24192,"v":[[0,1,["G3004"]],[1,2,["G2962"]],[2,4,["G3415"]],[4,5,["G3754"]],[5,6,["G1565"]],[6,7,["G4108"]],[7,8,["G2036"]],[8,9,["G2089"]],[9,13,["G2198"]],[13,14,["G3326"]],[14,15,["G5140"]],[15,16,["G2250"]],[16,20,["G1453"]]]},{"k":24193,"v":[[0,1,["G2753"]],[1,2,["G3767"]],[2,4,["G3588"]],[4,5,["G5028"]],[5,8,["G805"]],[8,9,["G2193"]],[9,10,["G3588"]],[10,11,["G5154"]],[11,12,["G2250"]],[12,13,["G3379"]],[13,14,["G846"]],[14,15,["G3101"]],[15,16,["G2064"]],[16,18,["G3571"]],[18,22,["G2813","G846"]],[22,23,["G2532"]],[23,24,["G2036"]],[24,26,["G3588"]],[26,27,["G2992"]],[27,30,["G1453"]],[30,31,["G575"]],[31,32,["G3588"]],[32,33,["G3498"]],[33,34,["G2532"]],[34,35,["G3588"]],[35,36,["G2078"]],[36,37,["G4106"]],[37,39,["G2071"]],[39,40,["G5501"]],[40,42,["G3588"]],[42,43,["G4413"]]]},{"k":24194,"v":[[0,0,["(G1161)"]],[0,1,["G4091"]],[1,2,["G5346"]],[2,4,["G846"]],[4,6,["G2192"]],[6,8,["G2892"]],[8,11,["G5217"]],[11,15,["G805"]],[15,16,["G5613"]],[16,18,["G1492"]]]},{"k":24195,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4198"]],[3,8,["G805","G3588","G5028"]],[8,9,["G4972"]],[9,10,["G3588"]],[10,11,["G3037"]],[11,12,["G2532"]],[12,15,["G3326","G2892"]]]},{"k":24196,"v":[[0,3,["(G3796)"]],[3,6,["G4521"]],[6,11,["G2020"]],[11,12,["G1519"]],[12,14,["G3391"]],[14,18,["G4521"]],[18,19,["G2064"]],[19,20,["G3137"]],[20,21,["G3094"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G243"]],[24,25,["G3137"]],[25,27,["G2334"]],[27,28,["G3588"]],[28,29,["G5028"]]]},{"k":24197,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G1096"]],[4,6,["G3173"]],[6,7,["G4578"]],[7,8,["G1063"]],[8,10,["G32"]],[10,13,["G2962"]],[13,14,["G2597"]],[14,15,["G1537"]],[15,16,["G3772"]],[16,18,["G4334"]],[18,21,["G617"]],[21,22,["G3588"]],[22,23,["G3037"]],[23,24,["G575"]],[24,25,["G3588"]],[25,26,["G2374"]],[26,27,["G2532"]],[27,28,["G2521"]],[28,29,["G1883"]],[29,30,["G846"]]]},{"k":24198,"v":[[0,0,["(G1161)"]],[0,1,["G846"]],[1,2,["G2397"]],[2,3,["G2258"]],[3,4,["G5613"]],[4,5,["G796"]],[5,6,["G2532"]],[6,7,["G846"]],[7,8,["G1742"]],[8,9,["G3022"]],[9,10,["G5616"]],[10,11,["G5510"]]]},{"k":24199,"v":[[0,1,["G1161"]],[1,2,["G575"]],[2,3,["G5401"]],[3,5,["G846"]],[5,6,["G3588"]],[6,7,["G5083"]],[7,9,["G4579"]],[9,10,["G2532"]],[10,11,["G1096"]],[11,12,["G5616"]],[12,13,["G3498"]],[13,14,[]]]},{"k":24200,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G32"]],[3,4,["G611"]],[4,6,["G2036"]],[6,8,["G3588"]],[8,9,["G1135"]],[9,10,["G5399"]],[10,11,["G3361"]],[11,12,["G5210"]],[12,13,["G1063"]],[13,15,["G1492"]],[15,16,["G3754"]],[16,18,["G2212"]],[18,19,["G2424"]],[19,22,["G4717"]]]},{"k":24201,"v":[[0,2,["G2076"]],[2,3,["G3756"]],[3,4,["G5602"]],[4,5,["G1063"]],[5,8,["G1453"]],[8,9,["G2531"]],[9,11,["G2036"]],[11,12,["G1205"]],[12,13,["G1492"]],[13,14,["G3588"]],[14,15,["G5117"]],[15,16,["G3699"]],[16,17,["G3588"]],[17,18,["G2962"]],[18,19,["G2749"]]]},{"k":24202,"v":[[0,1,["G2532"]],[1,2,["G4198"]],[2,3,["G5035"]],[3,5,["G2036"]],[5,6,["G846"]],[6,7,["G3101"]],[7,8,["G3754"]],[8,11,["G1453"]],[11,12,["G575"]],[12,13,["G3588"]],[13,14,["G3498"]],[14,15,["G2532"]],[15,16,["G2400"]],[16,19,["G4254"]],[19,20,["G5209"]],[20,21,["G1519"]],[21,22,["G1056"]],[22,23,["G1563"]],[23,26,["G3700"]],[26,27,["G846"]],[27,28,["G2400"]],[28,31,["G2036"]],[31,32,["G5213"]]]},{"k":24203,"v":[[0,1,["G2532"]],[1,3,["G1831"]],[3,4,["G5035"]],[4,5,["G575"]],[5,6,["G3588"]],[6,7,["G3419"]],[7,8,["G3326"]],[8,9,["G5401"]],[9,10,["G2532"]],[10,11,["G3173"]],[11,12,["G5479"]],[12,15,["G5143"]],[15,20,["G518","G846","G3101"]]]},{"k":24204,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,4,["G4198"]],[4,6,["G518"]],[6,7,["G846"]],[7,8,["G3101"]],[8,9,["G2400","(G2532)"]],[9,10,["G2424"]],[10,11,["G528"]],[11,12,["G846"]],[12,13,["G3004"]],[13,15,["G5463"]],[15,16,["G1161"]],[16,17,["G3588"]],[17,18,["G4334"]],[18,20,["G2902"]],[20,21,["G846"]],[21,23,["G3588"]],[23,24,["G4228"]],[24,25,["G2532"]],[25,26,["G4352"]],[26,27,["G846"]]]},{"k":24205,"v":[[0,1,["G5119"]],[1,2,["G3004"]],[2,3,["G2424"]],[3,5,["G846"]],[5,8,["G5399","G3361"]],[8,9,["G5217"]],[9,10,["G518"]],[10,11,["G3450"]],[11,12,["G80"]],[12,13,["G2443"]],[13,15,["G565"]],[15,16,["G1519"]],[16,17,["G1056"]],[17,19,["G2546"]],[19,22,["G3700"]],[22,23,["G3165"]]]},{"k":24206,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G4198"]],[5,6,["G2400"]],[6,7,["G5100"]],[7,9,["G3588"]],[9,10,["G2892"]],[10,11,["G2064"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G4172"]],[14,16,["G518"]],[16,18,["G3588"]],[18,20,["G749"]],[20,21,["G537"]],[21,26,["G1096"]]]},{"k":24207,"v":[[0,1,["G2532"]],[1,5,["G4863"]],[5,6,["G3326"]],[6,7,["G3588"]],[7,8,["G4245"]],[8,9,["G5037"]],[9,11,["G2983"]],[11,12,["G4824"]],[12,14,["G1325"]],[14,15,["G2425"]],[15,16,["G694"]],[16,18,["G3588"]],[18,19,["G4757"]]]},{"k":24208,"v":[[0,1,["G3004"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G3101"]],[5,6,["G2064"]],[6,8,["G3571"]],[8,10,["G2813"]],[10,11,["G846"]],[11,14,["G2257"]],[14,15,["G2837"]]]},{"k":24209,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,3,["G5124"]],[3,8,["G191","G1909","G2232"]],[8,9,["G2249"]],[9,11,["G3982"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G4160","G275"]],[14,15,["G5209"]]]},{"k":24210,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2983"]],[3,4,["G3588"]],[4,5,["G694"]],[5,7,["G4160"]],[7,8,["G5613"]],[8,11,["G1321"]],[11,12,["G2532"]],[12,13,["G3778"]],[13,14,["G3056"]],[14,17,["G1310"]],[17,18,["G3844"]],[18,20,["G2453"]],[20,21,["G3360"]],[21,23,["G4594"]]]},{"k":24211,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1733"]],[3,4,["G3101"]],[4,6,["G4198"]],[6,7,["G1519"]],[7,8,["G1056"]],[8,9,["G1519"]],[9,11,["G3735"]],[11,12,["G3757"]],[12,13,["G2424"]],[13,15,["G5021"]],[15,16,["G846"]]]},{"k":24212,"v":[[0,1,["G2532"]],[1,4,["G1492"]],[4,5,["G846"]],[5,7,["G4352"]],[7,8,["G846"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G1365"]]]},{"k":24213,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G4334"]],[3,5,["G2980"]],[5,7,["G846"]],[7,8,["G3004"]],[8,9,["G3956"]],[9,10,["G1849"]],[10,12,["G1325"]],[12,14,["G3427"]],[14,15,["G1722"]],[15,16,["G3772"]],[16,17,["G2532"]],[17,18,["G1909"]],[18,19,["G1093"]]]},{"k":24214,"v":[[0,1,["G4198"]],[1,3,["G3767"]],[3,5,["G3100"]],[5,6,["G3956"]],[6,7,["G1484"]],[7,8,["G907"]],[8,9,["G846"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G3686"]],[12,14,["G3588"]],[14,15,["G3962"]],[15,16,["G2532"]],[16,18,["G3588"]],[18,19,["G5207"]],[19,20,["G2532"]],[20,22,["G3588"]],[22,23,["G40"]],[23,24,["G4151"]]]},{"k":24215,"v":[[0,1,["G1321"]],[1,2,["G846"]],[2,4,["G5083"]],[4,6,["G3956"]],[6,7,["G3745"]],[7,10,["G1781"]],[10,11,["G5213"]],[11,12,["G2532"]],[12,13,["G2400"]],[13,14,["G1473"]],[14,15,["G1510"]],[15,16,["G3326"]],[16,17,["G5216"]],[17,18,["G3956","G2250"]],[18,20,["G2193"]],[20,21,["G3588"]],[21,22,["G4930"]],[22,24,["G3588"]],[24,25,["G165"]],[25,26,["G281"]]]},{"k":24216,"v":[[0,2,["G746"]],[2,4,["G3588"]],[4,5,["G2098"]],[5,7,["G2424"]],[7,8,["G5547"]],[8,10,["G5207"]],[10,12,["G2316"]]]},{"k":24217,"v":[[0,1,["G5613"]],[1,4,["G1125"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G4396"]],[7,8,["G2400"]],[8,9,["G1473"]],[9,10,["G649"]],[10,11,["G3450"]],[11,12,["G32"]],[12,13,["G4253"]],[13,14,["G4675"]],[14,15,["G4383"]],[15,16,["G3739"]],[16,18,["G2680"]],[18,19,["G4675"]],[19,20,["G3598"]],[20,21,["G1715"]],[21,22,["G4675"]]]},{"k":24218,"v":[[0,2,["G5456"]],[2,5,["G994"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G2048"]],[8,9,["G2090"]],[9,11,["G3588"]],[11,12,["G3598"]],[12,15,["G2962"]],[15,16,["G4160"]],[16,17,["G846"]],[17,18,["G5147"]],[18,19,["G2117"]]]},{"k":24219,"v":[[0,1,["G2491"]],[1,2,["G1096"]],[2,3,["G907"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G2048"]],[6,7,["G2532"]],[7,8,["G2784"]],[8,10,["G908"]],[10,12,["G3341"]],[12,13,["G1519"]],[13,15,["G859"]],[15,17,["G266"]]]},{"k":24220,"v":[[0,1,["G2532"]],[1,4,["G1607"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G3956"]],[7,8,["G3588"]],[8,9,["G5561"]],[9,11,["G2449"]],[11,12,["G2532"]],[12,15,["G2415"]],[15,16,["G2532"]],[16,18,["G3956"]],[18,19,["G907"]],[19,20,["G5259"]],[20,21,["G846"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G4215"]],[24,26,["G2446"]],[26,27,["G1843"]],[27,28,["G848"]],[28,29,["G266"]]]},{"k":24221,"v":[[0,1,["G1161"]],[1,2,["G2491"]],[2,3,["G2258"]],[3,5,["G1746"]],[5,6,["G2574"]],[6,7,["G2359"]],[7,8,["G2532"]],[8,11,["G2223"]],[11,14,["G1193"]],[14,15,["G4012"]],[15,16,["G848"]],[16,17,["G3751"]],[17,18,["G2532"]],[18,21,["G2068"]],[21,22,["G200"]],[22,23,["G2532"]],[23,24,["G66"]],[24,25,["G3192"]]]},{"k":24222,"v":[[0,1,["G2532"]],[1,2,["G2784"]],[2,3,["G3004"]],[3,5,["G2064"]],[5,6,["G3588"]],[6,7,["G2478"]],[7,9,["G3450"]],[9,10,["G3694"]],[10,11,["G3450"]],[11,12,["G3588"]],[12,13,["G2438"]],[13,15,["G848"]],[15,16,["G5266"]],[16,17,["(G3739)"]],[17,18,["G1510"]],[18,19,["G3756"]],[19,20,["G2425"]],[20,23,["G2955"]],[23,25,["G3089"]]]},{"k":24223,"v":[[0,1,["G1473"]],[1,2,["G3303"]],[2,4,["G907"]],[4,5,["G5209"]],[5,6,["G1722"]],[6,7,["G5204"]],[7,8,["G1161"]],[8,9,["G846"]],[9,11,["G907"]],[11,12,["G5209"]],[12,13,["G1722"]],[13,15,["G40"]],[15,16,["G4151"]]]},{"k":24224,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,6,["G1722"]],[6,7,["G1565"]],[7,8,["G2250"]],[8,10,["G2424"]],[10,11,["G2064"]],[11,12,["G575"]],[12,13,["G3478"]],[13,15,["G1056"]],[15,16,["G2532"]],[16,18,["G907"]],[18,19,["G5259"]],[19,20,["G2491"]],[20,21,["G1519"]],[21,22,["G2446"]]]},{"k":24225,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G305"]],[4,6,["G575"]],[6,7,["G3588"]],[7,8,["G5204"]],[8,10,["G1492"]],[10,11,["G3588"]],[11,12,["G3772"]],[12,13,["G4977"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G4151"]],[16,17,["G5616"]],[17,19,["G4058"]],[19,20,["G2597"]],[20,21,["G1909"]],[21,22,["G846"]]]},{"k":24226,"v":[[0,1,["G2532"]],[1,3,["G1096"]],[3,5,["G5456"]],[5,6,["G1537"]],[6,7,["G3772"]],[7,9,["G4771"]],[9,10,["G1488"]],[10,11,["G3450"]],[11,12,["G27"]],[12,13,["G5207"]],[13,14,["G1722"]],[14,15,["G3739"]],[15,19,["G2106"]]]},{"k":24227,"v":[[0,1,["G2532"]],[1,2,["G2117"]],[2,3,["G3588"]],[3,4,["G4151"]],[4,5,["G1544"]],[5,6,["G846"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G2048"]]]},{"k":24228,"v":[[0,1,["G2532"]],[1,3,["G2258"]],[3,4,["G1563"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G2048"]],[7,8,["G5062"]],[8,9,["G2250"]],[9,10,["G3985"]],[10,11,["G5259"]],[11,12,["G4567"]],[12,13,["G2532"]],[13,14,["G2258"]],[14,15,["G3326"]],[15,16,["G3588"]],[16,18,["G2342"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G32"]],[21,22,["G1247"]],[22,24,["G846"]]]},{"k":24229,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,4,["G2491"]],[4,8,["G3860"]],[8,9,["G2424"]],[9,10,["G2064"]],[10,11,["G1519"]],[11,12,["G1056"]],[12,13,["G2784"]],[13,14,["G3588"]],[14,15,["G2098"]],[15,17,["G3588"]],[17,18,["G932"]],[18,20,["G2316"]]]},{"k":24230,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,3,["G3588"]],[3,4,["G2540"]],[4,6,["G4137"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G932"]],[9,11,["G2316"]],[11,14,["G1448"]],[14,15,["G3340"]],[15,17,["G2532"]],[17,18,["G4100"]],[18,19,["G3588"]],[19,20,["G2098"]]]},{"k":24231,"v":[[0,1,["G1161"]],[1,4,["G4043"]],[4,5,["G3844"]],[5,6,["G3588"]],[6,7,["G2281"]],[7,9,["G1056"]],[9,11,["G1492"]],[11,12,["G4613"]],[12,13,["G2532"]],[13,14,["G406"]],[14,15,["G846"]],[15,16,["G80"]],[16,17,["G906"]],[17,19,["G293"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G2281"]],[22,23,["G1063"]],[23,25,["G2258"]],[25,26,["G231"]]]},{"k":24232,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G1205"]],[6,8,["G3694"]],[8,9,["G3450"]],[9,10,["G2532"]],[10,13,["G4160"]],[13,14,["G5209"]],[14,16,["G1096"]],[16,17,["G231"]],[17,19,["G444"]]]},{"k":24233,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G863"]],[4,5,["G848"]],[5,6,["G1350"]],[6,7,["G2532"]],[7,8,["G190"]],[8,9,["G846"]]]},{"k":24234,"v":[[0,1,["G2532"]],[1,5,["G4260"]],[5,8,["G3641"]],[8,9,["G1564"]],[9,11,["G1492"]],[11,12,["G2385"]],[12,13,["G3588"]],[13,16,["G2199"]],[16,17,["G2532"]],[17,18,["G2491"]],[18,19,["G846"]],[19,20,["G80"]],[20,21,["G846"]],[21,22,["G2532"]],[22,24,["G1722"]],[24,25,["G3588"]],[25,26,["G4143"]],[26,27,["G2675"]],[27,29,["G1350"]]]},{"k":24235,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G2564"]],[4,5,["G846"]],[5,6,["G2532"]],[6,8,["G863"]],[8,9,["G848"]],[9,10,["G3962"]],[10,11,["G2199"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G4143"]],[14,15,["G3326"]],[15,16,["G3588"]],[16,18,["G3411"]],[18,19,["G2532"]],[19,20,["G565"]],[20,21,["G3694"]],[21,22,["G846"]]]},{"k":24236,"v":[[0,1,["G2532"]],[1,3,["G1531"]],[3,4,["G1519"]],[4,5,["G2584"]],[5,6,["G2532"]],[6,7,["G2112"]],[7,9,["G3588"]],[9,11,["G4521"]],[11,13,["G1525"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G4864"]],[16,18,["G1321"]]]},{"k":24237,"v":[[0,1,["G2532"]],[1,4,["G1605"]],[4,5,["G1909"]],[5,6,["G846"]],[6,7,["G1322"]],[7,8,["G1063"]],[8,10,["G2258","G1321"]],[10,11,["G846"]],[11,12,["G5613"]],[12,15,["G2192"]],[15,16,["G1849"]],[16,17,["G2532"]],[17,18,["G3756"]],[18,19,["G5613"]],[19,20,["G3588"]],[20,21,["G1122"]]]},{"k":24238,"v":[[0,1,["G2532"]],[1,3,["G2258"]],[3,4,["G1722"]],[4,5,["G846"]],[5,6,["G4864"]],[6,8,["G444"]],[8,9,["G1722"]],[9,11,["G169"]],[11,12,["G4151"]],[12,13,["G2532"]],[13,16,["G349"]]]},{"k":24239,"v":[[0,1,["G3004"]],[1,4,["G1436"]],[4,11,["G5101","G2254","G2532","G4671"]],[11,13,["G2424"]],[13,15,["G3479"]],[15,18,["G2064"]],[18,20,["G622"]],[20,21,["G2248"]],[21,23,["G1492"]],[23,24,["G4571"]],[24,25,["G5101"]],[25,27,["G1488"]],[27,28,["G3588"]],[28,30,["G40"]],[30,32,["G2316"]]]},{"k":24240,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2008"]],[3,4,["G846"]],[4,5,["G3004"]],[5,8,["G5392"]],[8,9,["G2532"]],[9,10,["G1831"]],[10,12,["G1537"]],[12,13,["G846"]]]},{"k":24241,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G169"]],[4,5,["G4151"]],[5,7,["G4682"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G2896"]],[10,13,["G3173"]],[13,14,["G5456"]],[14,16,["G1831"]],[16,18,["G1537"]],[18,19,["G846"]]]},{"k":24242,"v":[[0,1,["G2532"]],[1,4,["G3956"]],[4,5,["G2284"]],[5,7,["G5620"]],[7,9,["G4802"]],[9,10,["G4314"]],[10,11,["G848"]],[11,12,["G3004"]],[12,14,["G5101"]],[14,15,["G2076"]],[15,16,["G5124"]],[16,17,["G5101"]],[17,18,["G2537"]],[18,19,["G1322"]],[19,21,["G3778"]],[21,22,["G3754"]],[22,23,["G2596"]],[23,24,["G1849"]],[24,25,["G2004"]],[25,27,["G2532"]],[27,28,["G3588"]],[28,29,["G169"]],[29,30,["G4151"]],[30,31,["G2532"]],[31,34,["G5219"]],[34,35,["G846"]]]},{"k":24243,"v":[[0,1,["G1161"]],[1,2,["G2117"]],[2,3,["G846"]],[3,4,["G189"]],[4,6,["G1831"]],[6,7,["G1519"]],[7,8,["G3650"]],[8,9,["G3588"]],[9,12,["G4066"]],[12,13,["G1056"]]]},{"k":24244,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,6,["G1831"]],[6,8,["G1537"]],[8,9,["G3588"]],[9,10,["G4864"]],[10,12,["G2064"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G3614"]],[15,17,["G4613"]],[17,18,["G2532"]],[18,19,["G406"]],[19,20,["G3326"]],[20,21,["G2385"]],[21,22,["G2532"]],[22,23,["G2491"]]]},{"k":24245,"v":[[0,1,["G1161"]],[1,2,["G4613"]],[2,4,["G3994"]],[4,5,["G2621"]],[5,9,["G4445"]],[9,10,["G2532"]],[10,11,["G2112"]],[11,13,["G3004"]],[13,14,["G846"]],[14,15,["G4012"]],[15,16,["G846"]]]},{"k":24246,"v":[[0,1,["G2532"]],[1,3,["G4334"]],[3,5,["G2902"]],[5,6,["G846"]],[6,8,["G3588"]],[8,9,["G5495"]],[9,13,["G1453","G846"]],[13,14,["G2532"]],[14,15,["G2112"]],[15,16,["G3588"]],[16,17,["G4446"]],[17,18,["G863"]],[18,19,["G846"]],[19,20,["G2532"]],[20,22,["G1247"]],[22,24,["G846"]]]},{"k":24247,"v":[[0,1,["G1161"]],[1,3,["G3798","G1096"]],[3,4,["G3753"]],[4,5,["G3588"]],[5,6,["G2246"]],[6,8,["G1416"]],[8,10,["G5342"]],[10,11,["G4314"]],[11,12,["G846"]],[12,13,["G3956"]],[13,16,["G2192","G2560"]],[16,17,["G2532"]],[17,23,["G1139"]]]},{"k":24248,"v":[[0,1,["G2532"]],[1,2,["G3650"]],[2,3,["G3588"]],[3,4,["G4172"]],[4,5,["G2258"]],[5,7,["G1996"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,10,["G2374"]]]},{"k":24249,"v":[[0,1,["G2532"]],[1,3,["G2323"]],[3,4,["G4183"]],[4,7,["G2192","G2560"]],[7,9,["G4164"]],[9,10,["G3554"]],[10,11,["G2532"]],[11,13,["G1544"]],[13,14,["G4183"]],[14,15,["G1140"]],[15,16,["G2532"]],[16,17,["G863"]],[17,18,["G3756"]],[18,19,["G3588"]],[19,20,["G1140"]],[20,22,["G2980"]],[22,23,["G3754"]],[23,25,["G1492"]],[25,26,["G846"]]]},{"k":24250,"v":[[0,1,["G2532"]],[1,4,["G1773"]],[4,6,["G450"]],[6,11,["G3029","G4404"]],[11,14,["G1831"]],[14,15,["G2532"]],[15,16,["G565"]],[16,17,["G1519"]],[17,19,["G2048"]],[19,20,["G5117"]],[20,22,["G2546"]],[22,23,["G4336"]]]},{"k":24251,"v":[[0,1,["G2532"]],[1,2,["G4613"]],[2,3,["G2532"]],[3,4,["G3588"]],[4,7,["G3326"]],[7,8,["G846"]],[8,10,["G2614"]],[10,11,["G846"]]]},{"k":24252,"v":[[0,1,["G2532"]],[1,5,["G2147"]],[5,6,["G846"]],[6,8,["G3004"]],[8,10,["G846"]],[10,11,["G3956"]],[11,14,["G2212"]],[14,15,["G4571"]]]},{"k":24253,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,8,["G71"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G2192"]],[11,12,["G2969"]],[12,13,["G2443"]],[13,16,["G2784"]],[16,18,["G2546"]],[18,19,["G1063"]],[19,20,["G1519","G5124"]],[20,23,["G1831"]]]},{"k":24254,"v":[[0,1,["G2532"]],[1,3,["G2258","G2784"]],[3,4,["G1722"]],[4,5,["G846"]],[5,6,["G4864"]],[6,7,["G1519"]],[7,8,["G3650"]],[8,9,["G1056"]],[9,10,["G2532"]],[10,12,["G1544"]],[12,13,["G1140"]]]},{"k":24255,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,5,["G3015"]],[5,6,["G4314"]],[6,7,["G846"]],[7,8,["G3870"]],[8,9,["G846"]],[9,10,["G2532"]],[10,12,["G1120"]],[12,14,["G846"]],[14,15,["G2532"]],[15,16,["G3004"]],[16,18,["G846"]],[18,19,["G1437"]],[19,21,["G2309"]],[21,23,["G1410"]],[23,26,["G2511","G3165"]]]},{"k":24256,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,5,["G4697"]],[5,7,["G1614"]],[7,9,["G5495"]],[9,11,["G680"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G3004"]],[14,16,["G846"]],[16,18,["G2309"]],[18,21,["G2511"]]]},{"k":24257,"v":[[0,1,["G2532"]],[1,5,["G846"]],[5,7,["G2036"]],[7,8,["G2112"]],[8,9,["G3588"]],[9,10,["G3014"]],[10,11,["G565"]],[11,12,["G575"]],[12,13,["G846"]],[13,14,["G2532"]],[14,17,["G2511"]]]},{"k":24258,"v":[[0,1,["G2532"]],[1,4,["G1690"]],[4,5,["G846"]],[5,7,["G2112"]],[7,10,["G1544","G846"]]]},{"k":24259,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G3708"]],[5,7,["G2036"]],[7,8,["G3367"]],[8,11,["G3367"]],[11,12,["G235"]],[12,15,["G5217"]],[15,16,["G1166"]],[16,17,["G4572"]],[17,19,["G3588"]],[19,20,["G2409"]],[20,21,["G2532"]],[21,22,["G4374"]],[22,23,["G4012"]],[23,24,["G4675"]],[24,25,["G2512"]],[25,28,["G3739"]],[28,29,["G3475"]],[29,30,["G4367"]],[30,31,["G1519"]],[31,33,["G3142"]],[33,35,["G846"]]]},{"k":24260,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G1831"]],[4,6,["G756"]],[6,8,["G2784"]],[8,10,["G4183"]],[10,11,["G2532"]],[11,14,["G1310"]],[14,15,["G3588"]],[15,16,["G3056"]],[16,18,["G5620"]],[18,19,["G846"]],[19,20,["G1410"]],[20,22,["G3371"]],[22,23,["G5320"]],[23,24,["G1525"]],[24,25,["G1519"]],[25,27,["G4172"]],[27,28,["G235"]],[28,29,["G2258"]],[29,30,["G1854"]],[30,31,["G1722"]],[31,32,["G2048"]],[32,33,["G5117"]],[33,34,["G2532"]],[34,36,["G2064"]],[36,37,["G4314"]],[37,38,["G846"]],[38,41,["G3836"]]]},{"k":24261,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,4,["G1525"]],[4,5,["G1519"]],[5,6,["G2584"]],[6,7,["G1223"]],[7,9,["G2250"]],[9,10,["G2532"]],[10,13,["G191"]],[13,14,["G3754"]],[14,16,["G2076"]],[16,17,["G1519"]],[17,19,["G3624"]]]},{"k":24262,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G4183"]],[3,6,["G4863"]],[6,8,["G5620"]],[8,14,["G3371","G5562"]],[14,20,["G3366"]],[20,21,["G4314"]],[21,22,["G3588"]],[22,23,["G2374"]],[23,24,["G2532"]],[24,26,["G2980"]],[26,27,["G3588"]],[27,28,["G3056"]],[28,30,["G846"]]]},{"k":24263,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G5342"]],[6,11,["G3885"]],[11,14,["G142"]],[14,15,["G5259"]],[15,16,["G5064"]]]},{"k":24264,"v":[[0,1,["G2532"]],[1,4,["G1410"]],[4,5,["G3361"]],[5,7,["G4331"]],[7,9,["G846"]],[9,10,["G1223"]],[10,11,["G3588"]],[11,12,["G3793"]],[12,14,["G648"]],[14,15,["G3588"]],[15,16,["G4721"]],[16,17,["G3699"]],[17,19,["G2258"]],[19,20,["G2532"]],[20,26,["G1846"]],[26,29,["G5465"]],[29,30,["G3588"]],[30,31,["G2895"]],[31,32,["G1909","G3739"]],[32,33,["G3588"]],[33,37,["G3885"]],[37,38,["G2621"]]]},{"k":24265,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G1492"]],[3,4,["G846"]],[4,5,["G4102"]],[5,7,["G3004"]],[7,9,["G3588"]],[9,13,["G3885"]],[13,14,["G5043"]],[14,15,["G4675"]],[15,16,["G266"]],[16,18,["G863"]],[18,19,["G4671"]]]},{"k":24266,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G5100"]],[4,6,["G3588"]],[6,7,["G1122"]],[7,8,["G2521"]],[8,9,["G1563"]],[9,10,["G2532"]],[10,11,["G1260"]],[11,12,["G1722"]],[12,13,["G848"]],[13,14,["G2588"]]]},{"k":24267,"v":[[0,1,["G5101"]],[1,3,["G3778"]],[3,5,["G3779"]],[5,6,["G2980"]],[6,7,["G988"]],[7,8,["G5101"]],[8,9,["G1410"]],[9,10,["G863"]],[10,11,["G266"]],[11,12,["G1508"]],[12,13,["G2316"]],[13,14,["G1520"]]]},{"k":24268,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G2424"]],[4,5,["G1921"]],[5,7,["G848"]],[7,8,["G4151"]],[8,9,["G3754"]],[9,11,["G3779"]],[11,12,["G1260"]],[12,13,["G1722"]],[13,14,["G1438"]],[14,16,["G2036"]],[16,18,["G846"]],[18,19,["G5101"]],[19,20,["G1260"]],[20,23,["G5023"]],[23,24,["G1722"]],[24,25,["G5216"]],[25,26,["G2588"]]]},{"k":24269,"v":[[0,1,["G5101"]],[1,2,["G2076"]],[2,4,["G2123"]],[4,6,["G2036"]],[6,8,["G3588"]],[8,12,["G3885"]],[12,14,["G266"]],[14,16,["G863"]],[16,17,["G4671"]],[17,18,["G2228"]],[18,20,["G2036"]],[20,21,["G1453"]],[21,22,["G2532"]],[22,24,["G142"]],[24,25,["G4675"]],[25,26,["G2895"]],[26,27,["G2532"]],[27,28,["G4043"]]]},{"k":24270,"v":[[0,1,["G1161"]],[1,2,["G2443"]],[2,5,["G1492"]],[5,6,["G3754"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G444"]],[10,11,["G2192"]],[11,12,["G1849"]],[12,13,["G1909"]],[13,14,["G1093"]],[14,16,["G863"]],[16,17,["G266"]],[17,19,["G3004"]],[19,21,["G3588"]],[21,25,["G3885"]]]},{"k":24271,"v":[[0,2,["G3004"]],[2,4,["G4671"]],[4,5,["G1453"]],[5,6,["G2532"]],[6,8,["G142"]],[8,9,["G4675"]],[9,10,["G2895"]],[10,11,["G2532"]],[11,14,["G5217"]],[14,15,["G1519"]],[15,16,["G4675"]],[16,17,["G3624"]]]},{"k":24272,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G1453"]],[4,6,["G142"]],[6,7,["G3588"]],[7,8,["G2895"]],[8,9,["G2532"]],[9,11,["G1831"]],[11,12,["G1726"]],[12,14,["G3956"]],[14,16,["G5620"]],[16,19,["G3956"]],[19,20,["G1839"]],[20,21,["G2532"]],[21,22,["G1392"]],[22,23,["G2316"]],[23,24,["G3004"]],[24,26,["G3763"]],[26,27,["G1492"]],[27,31,["G3779"]]]},{"k":24273,"v":[[0,1,["G2532"]],[1,4,["G1831"]],[4,5,["G3825"]],[5,6,["G3844"]],[6,7,["G3588"]],[7,9,["G2281"]],[9,10,["G2532"]],[10,11,["G3956"]],[11,12,["G3588"]],[12,13,["G3793"]],[13,14,["G2064"]],[14,15,["G4314"]],[15,16,["G846"]],[16,17,["G2532"]],[17,19,["G1321"]],[19,20,["G846"]]]},{"k":24274,"v":[[0,1,["G2532"]],[1,5,["G3855"]],[5,7,["G1492"]],[7,8,["G3018"]],[8,9,["G3588"]],[9,12,["G256"]],[12,13,["G2521"]],[13,14,["G1909"]],[14,15,["G3588"]],[15,18,["G5058"]],[18,19,["G2532"]],[19,20,["G3004"]],[20,22,["G846"]],[22,23,["G190"]],[23,24,["G3427"]],[24,25,["G2532"]],[25,27,["G450"]],[27,29,["G190"]],[29,30,["G846"]]]},{"k":24275,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["(G1722)"]],[7,8,["G846"]],[8,11,["G2621"]],[11,12,["G1722"]],[12,13,["G846"]],[13,14,["G3614"]],[14,15,["G4183"]],[15,16,["G5057"]],[16,17,["G2532"]],[17,18,["G268"]],[18,22,["G4873","G2532"]],[22,23,["G2424"]],[23,24,["G2532"]],[24,25,["G846"]],[25,26,["G3101"]],[26,27,["G1063"]],[27,29,["G2258"]],[29,30,["G4183"]],[30,31,["G2532"]],[31,33,["G190"]],[33,34,["G846"]]]},{"k":24276,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G1122"]],[4,5,["G2532"]],[5,6,["G5330"]],[6,7,["G1492"]],[7,8,["G846"]],[8,9,["G2068"]],[9,10,["G3326"]],[10,11,["G5057"]],[11,12,["G2532"]],[12,13,["G268"]],[13,15,["G3004"]],[15,17,["G846"]],[17,18,["G3101"]],[18,21,["G5101"]],[21,22,["G3754"]],[22,24,["G2068"]],[24,25,["G2532"]],[25,26,["G4095"]],[26,27,["G3326"]],[27,28,["G5057"]],[28,29,["G2532"]],[29,30,["G268"]]]},{"k":24277,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G191"]],[3,6,["G3004"]],[6,8,["G846"]],[8,12,["G2480"]],[12,13,["G2192"]],[13,14,["G3756"]],[14,15,["G5532"]],[15,18,["G2395"]],[18,19,["G235"]],[19,23,["G2192","G2560"]],[23,25,["G2064"]],[25,26,["G3756"]],[26,28,["G2564"]],[28,30,["G1342"]],[30,31,["G235"]],[31,32,["G268"]],[32,33,["G1519"]],[33,34,["G3341"]]]},{"k":24278,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,5,["G2491"]],[5,6,["G2532"]],[6,7,["(G3588)"]],[7,8,["G3588"]],[8,9,["G5330"]],[9,12,["G2258","G3522"]],[12,13,["G2532"]],[13,15,["G2064"]],[15,16,["G2532"]],[16,17,["G3004"]],[17,19,["G846"]],[19,20,["G1302"]],[20,22,["G3588"]],[22,23,["G3101"]],[23,25,["G2491"]],[25,26,["G2532"]],[26,27,["(G3588)"]],[27,28,["G3588"]],[28,29,["G5330"]],[29,30,["G3522"]],[30,31,["G1161"]],[31,32,["G4671"]],[32,33,["G3101"]],[33,34,["G3522"]],[34,35,["G3756"]]]},{"k":24279,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G1410","(G3361)"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G3588"]],[10,11,["G3567"]],[11,12,["G3522"]],[12,13,["G1722","G3739"]],[13,14,["G3588"]],[14,15,["G3566"]],[15,16,["G2076"]],[16,17,["G3326"]],[17,18,["G846"]],[18,21,["G3745"]],[21,22,["(G5550)"]],[22,23,["G2192"]],[23,24,["G3588"]],[24,25,["G3566"]],[25,26,["G3326"]],[26,27,["G1438"]],[27,29,["G1410","G3756"]],[29,30,["G3522"]]]},{"k":24280,"v":[[0,1,["G1161"]],[1,3,["G2250"]],[3,5,["G2064"]],[5,6,["G3752"]],[6,7,["G3588"]],[7,8,["G3566"]],[8,12,["G522"]],[12,13,["G575"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G5119"]],[16,19,["G3522"]],[19,20,["G1722"]],[20,21,["G1565"]],[21,22,["G2250"]]]},{"k":24281,"v":[[0,2,["G3762"]],[2,3,["G2532"]],[3,4,["G1976"]],[4,6,["G1915"]],[6,8,["G46"]],[8,9,["G4470"]],[9,10,["G1909"]],[10,12,["G3820"]],[12,13,["G2440"]],[13,14,["G1490"]],[14,15,["G3588"]],[15,17,["G2537"]],[17,21,["G4138","G846"]],[21,23,["G142"]],[23,25,["G3588"]],[25,26,["G3820"]],[26,27,["G2532"]],[27,29,["G4978"]],[29,31,["G1096"]],[31,32,["G5501"]]]},{"k":24282,"v":[[0,1,["G2532"]],[1,3,["G3762"]],[3,4,["G906"]],[4,5,["G3501"]],[5,6,["G3631"]],[6,7,["G1519"]],[7,8,["G3820"]],[8,9,["G779"]],[9,10,["G1490"]],[10,11,["G3588"]],[11,12,["G3501"]],[12,13,["G3631"]],[13,15,["G4486"]],[15,16,["G3588"]],[16,17,["G779"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G3631"]],[20,22,["G1632"]],[22,23,["G2532"]],[23,24,["G3588"]],[24,25,["G779"]],[25,28,["G622"]],[28,29,["G235"]],[29,30,["G3501"]],[30,31,["G3631"]],[31,34,["G992"]],[34,35,["G1519"]],[35,36,["G2537"]],[36,37,["G779"]]]},{"k":24283,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G846"]],[7,8,["G3899"]],[8,9,["G1223"]],[9,10,["G3588"]],[10,12,["G4702"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,16,["G4521"]],[16,17,["G2532"]],[17,18,["G846"]],[18,19,["G3101"]],[19,20,["G756"]],[20,23,["G4160","G3598"]],[23,25,["G5089"]],[25,26,["G3588"]],[26,29,["G4719"]]]},{"k":24284,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,4,["G3004"]],[4,6,["G846"]],[6,7,["G2396"]],[7,8,["G5101"]],[8,9,["G4160"]],[9,11,["G1722"]],[11,12,["G3588"]],[12,13,["G4521"]],[13,16,["G3739"]],[16,19,["G1832","G3756"]]]},{"k":24285,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3004"]],[3,5,["G846"]],[5,8,["G3763"]],[8,9,["G314"]],[9,10,["G5101"]],[10,11,["G1138"]],[11,12,["G4160"]],[12,13,["G3753"]],[13,15,["G2192"]],[15,16,["G5532"]],[16,17,["G2532"]],[17,20,["G3983"]],[20,21,["G846"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,26,["G3326"]],[26,27,["G846"]]]},{"k":24286,"v":[[0,1,["G4459"]],[1,3,["G1525"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G3624"]],[6,8,["G2316"]],[8,9,["G1909"]],[9,13,["G8"]],[13,14,["G3588"]],[14,16,["G749"]],[16,17,["G2532"]],[17,19,["G5315"]],[19,20,["G3588"]],[20,21,["G740","G4286"]],[21,22,["G3739"]],[22,25,["G1832","G3756"]],[25,27,["G5315"]],[27,28,["G1508"]],[28,30,["G3588"]],[30,31,["G2409"]],[31,32,["G2532"]],[32,33,["G1325"]],[33,34,["G2532"]],[34,38,["G5607"]],[38,39,["G4862"]],[39,40,["G846"]]]},{"k":24287,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G3588"]],[6,7,["G4521"]],[7,9,["G1096"]],[9,10,["G1223"]],[10,11,["G444"]],[11,13,["G3756"]],[13,14,["G444"]],[14,15,["G1223"]],[15,16,["G3588"]],[16,17,["G4521"]]]},{"k":24288,"v":[[0,1,["G5620"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G444"]],[5,6,["G2076"]],[6,7,["G2962"]],[7,8,["G2532"]],[8,10,["G3588"]],[10,11,["G4521"]]]},{"k":24289,"v":[[0,1,["G2532"]],[1,3,["G1525"]],[3,4,["G3825"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G4864"]],[7,8,["G2532"]],[8,10,["G2258"]],[10,12,["G444"]],[12,13,["G1563"]],[13,15,["G2192"]],[15,17,["G3583"]],[17,18,["G5495"]]]},{"k":24290,"v":[[0,1,["G2532"]],[1,3,["G3906"]],[3,4,["G846"]],[4,5,["G1487"]],[5,8,["G2323"]],[8,9,["G846"]],[9,11,["G3588"]],[11,13,["G4521"]],[13,14,["G2443"]],[14,17,["G2723"]],[17,18,["G846"]]]},{"k":24291,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G3588"]],[5,6,["G444"]],[6,8,["G2192"]],[8,9,["G3588"]],[9,10,["G3583"]],[10,11,["G5495"]],[11,12,["G1453"]],[12,13,["G1519","G3319"]]]},{"k":24292,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,8,["G1832"]],[8,11,["G15"]],[11,13,["G3588"]],[13,15,["G4521"]],[15,16,["G2228"]],[16,19,["G2554"]],[19,21,["G4982"]],[21,22,["G5590"]],[22,23,["G2228"]],[23,25,["G615"]],[25,26,["G1161"]],[26,27,["G3588"]],[27,30,["G4623"]]]},{"k":24293,"v":[[0,1,["G2532"]],[1,7,["G4017"]],[7,9,["G846"]],[9,10,["G3326"]],[10,11,["G3709"]],[11,13,["G4818"]],[13,14,["G1909"]],[14,15,["G3588"]],[15,16,["G4457"]],[16,18,["G846"]],[18,19,["G2588"]],[19,21,["G3004"]],[21,23,["G3588"]],[23,24,["G444"]],[24,26,["G1614"]],[26,27,["G4675"]],[27,28,["G5495"]],[28,29,["G2532"]],[29,33,["G1614"]],[33,34,["G2532"]],[34,35,["G846"]],[35,36,["G5495"]],[36,38,["G600"]],[38,39,["G5199"]],[39,40,["G5613"]],[40,41,["G3588"]],[41,42,["G243"]]]},{"k":24294,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,5,["G1831"]],[5,7,["G2112"]],[7,9,["G4160","G4824"]],[9,10,["G3326"]],[10,11,["G3588"]],[11,12,["G2265"]],[12,13,["G2596"]],[13,14,["G846"]],[14,15,["G3704"]],[15,18,["G622"]],[18,19,["G846"]]]},{"k":24295,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G402"]],[3,5,["G3326"]],[5,6,["G848"]],[6,7,["G3101"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,10,["G2281"]],[10,11,["G2532"]],[11,13,["G4183"]],[13,14,["G4128"]],[14,15,["G575"]],[15,16,["G1056"]],[16,17,["G190"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G575"]],[20,21,["G2449"]]]},{"k":24296,"v":[[0,1,["G2532"]],[1,2,["G575"]],[2,3,["G2414"]],[3,4,["G2532"]],[4,5,["G575"]],[5,6,["G2401"]],[6,7,["G2532"]],[7,9,["G4008"]],[9,10,["G2446"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G4012"]],[13,14,["G5184"]],[14,15,["G2532"]],[15,16,["G4605"]],[16,18,["G4183"]],[18,19,["G4128"]],[19,23,["G191"]],[23,26,["G3745"]],[26,28,["G4160"]],[28,29,["G2064"]],[29,30,["G4314"]],[30,31,["G846"]]]},{"k":24297,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G848"]],[5,6,["G3101"]],[6,7,["G2443"]],[7,10,["G4142"]],[10,13,["G4342"]],[13,14,["G846"]],[14,15,["G1223"]],[15,17,["G3588"]],[17,18,["G3793"]],[18,19,["G3363"]],[19,22,["G2346"]],[22,23,["G846"]]]},{"k":24298,"v":[[0,1,["G1063"]],[1,4,["G2323"]],[4,5,["G4183"]],[5,7,["G5620"]],[7,10,["G1968"]],[10,11,["G846"]],[11,13,["G2443"]],[13,14,["G680"]],[14,15,["G846"]],[15,18,["G3745"]],[18,19,["G2192"]],[19,20,["G3148"]]]},{"k":24299,"v":[[0,1,["G2532"]],[1,2,["G169"]],[2,3,["G4151"]],[3,4,["G3752"]],[4,6,["G2334"]],[6,7,["G846"]],[7,10,["G4363"]],[10,11,["G846"]],[11,12,["G2532"]],[12,13,["G2896"]],[13,14,["G3004"]],[14,15,["G4771"]],[15,16,["G1488"]],[16,17,["G3588"]],[17,18,["G5207"]],[18,20,["G2316"]]]},{"k":24300,"v":[[0,1,["G2532"]],[1,3,["G4183"]],[3,4,["G2008"]],[4,5,["G846"]],[5,6,["G2443"]],[6,9,["G3361"]],[9,10,["G4160"]],[10,11,["G846"]],[11,12,["G5318"]]]},{"k":24301,"v":[[0,1,["G2532"]],[1,4,["G305"]],[4,5,["G1519"]],[5,7,["G3735"]],[7,8,["G2532"]],[8,9,["G4341"]],[9,12,["G3739"]],[12,13,["G846"]],[13,14,["G2309"]],[14,15,["G2532"]],[15,17,["G565"]],[17,18,["G4314"]],[18,19,["G846"]]]},{"k":24302,"v":[[0,1,["G2532"]],[1,3,["G4160"]],[3,4,["G1427"]],[4,5,["G2443"]],[5,8,["G5600"]],[8,9,["G3326"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G2443"]],[12,17,["G649","G846"]],[17,19,["G2784"]]]},{"k":24303,"v":[[0,1,["G2532"]],[1,3,["G2192"]],[3,4,["G1849"]],[4,6,["G2323"]],[6,7,["G3554"]],[7,8,["G2532"]],[8,11,["G1544"]],[11,12,["G1140"]]]},{"k":24304,"v":[[0,1,["G2532"]],[1,2,["G4613"]],[2,4,["G2007","G3686"]],[4,5,["G4074"]]]},{"k":24305,"v":[[0,1,["G2532"]],[1,2,["G2385"]],[2,3,["G3588"]],[3,6,["G2199"]],[6,7,["G2532"]],[7,8,["G2491"]],[8,9,["G3588"]],[9,10,["G80"]],[10,12,["G2385"]],[12,13,["G2532"]],[13,15,["G2007","G3686"]],[15,16,["G846"]],[16,17,["G993"]],[17,19,["G3603"]],[19,21,["G5207"]],[21,23,["G1027"]]]},{"k":24306,"v":[[0,1,["G2532"]],[1,2,["G406"]],[2,3,["G2532"]],[3,4,["G5376"]],[4,5,["G2532"]],[5,6,["G918"]],[6,7,["G2532"]],[7,8,["G3156"]],[8,9,["G2532"]],[9,10,["G2381"]],[10,11,["G2532"]],[11,12,["G2385"]],[12,13,["G3588"]],[13,16,["G256"]],[16,17,["G2532"]],[17,18,["G2280"]],[18,19,["G2532"]],[19,20,["G4613"]],[20,21,["G3588"]],[21,22,["G2581"]]]},{"k":24307,"v":[[0,1,["G2532"]],[1,2,["G2455"]],[2,3,["G2469"]],[3,4,["G3739"]],[4,5,["G2532"]],[5,6,["G3860"]],[6,7,["G846"]],[7,8,["G2532"]],[8,10,["G2064"]],[10,11,["G1519"]],[11,13,["G3624"]]]},{"k":24308,"v":[[0,1,["G2532"]],[1,3,["G3793"]],[3,5,["G4905"]],[5,6,["G3825"]],[6,8,["G5620"]],[8,9,["G846"]],[9,10,["G1410"]],[10,11,["G3361"]],[11,14,["G3383"]],[14,15,["G5315"]],[15,16,["G740"]]]},{"k":24309,"v":[[0,1,["G2532"]],[1,4,["G3844","G846"]],[4,5,["G191"]],[5,10,["G1831"]],[10,14,["G2902"]],[14,15,["G846"]],[15,16,["G1063"]],[16,18,["G3004"]],[18,22,["G1839"]]]},{"k":24310,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1122"]],[3,6,["G2597"]],[6,7,["G575"]],[7,8,["G2414"]],[8,9,["G3004"]],[9,11,["G2192"]],[11,12,["G954"]],[12,13,["G2532"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G758"]],[16,18,["G3588"]],[18,19,["G1140"]],[19,22,["G1544"]],[22,23,["G1140"]]]},{"k":24311,"v":[[0,1,["G2532"]],[1,3,["G4341"]],[3,4,["G846"]],[4,7,["G2532"]],[7,8,["G3004"]],[8,10,["G846"]],[10,11,["G1722"]],[11,12,["G3850"]],[12,13,["G4459"]],[13,14,["G1410"]],[14,15,["G4567"]],[15,17,["G1544"]],[17,18,["G4567"]]]},{"k":24312,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G932"]],[4,6,["G3307"]],[6,7,["G1909"]],[7,8,["G1438"]],[8,9,["G1565"]],[9,10,["G932"]],[10,11,["G1410","G3756"]],[11,12,["G2476"]]]},{"k":24313,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G3614"]],[4,6,["G3307"]],[6,7,["G1909"]],[7,8,["G1438"]],[8,9,["G1565"]],[9,10,["G3614"]],[10,11,["G1410","G3756"]],[11,12,["G2476"]]]},{"k":24314,"v":[[0,1,["G2532"]],[1,2,["G1487"]],[2,3,["G4567"]],[3,5,["G450"]],[5,6,["G1909"]],[6,7,["G1438"]],[7,8,["G2532"]],[8,10,["G3307"]],[10,12,["G1410","G3756"]],[12,13,["G2476"]],[13,14,["G235"]],[14,15,["G2192"]],[15,17,["G5056"]]]},{"k":24315,"v":[[0,2,["G3762","(G3756)"]],[2,3,["G1410"]],[3,4,["G1525"]],[4,5,["G1519"]],[5,8,["G2478"]],[8,9,["G3614"]],[9,11,["G1283"]],[11,12,["G846"]],[12,13,["G4632"]],[13,14,["G3362"]],[14,17,["G4412"]],[17,18,["G1210"]],[18,19,["G3588"]],[19,21,["G2478"]],[21,22,["G2532"]],[22,23,["G5119"]],[23,26,["G1283"]],[26,27,["G846"]],[27,28,["G3614"]]]},{"k":24316,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3956"]],[6,7,["G265"]],[7,10,["G863"]],[10,12,["G3588"]],[12,13,["G5207"]],[13,15,["G444"]],[15,16,["G2532"]],[16,17,["G988"]],[17,19,["G3745","G302"]],[19,22,["G987"]]]},{"k":24317,"v":[[0,1,["G1161"]],[1,2,["G3739","G302"]],[2,5,["G987"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G40"]],[8,9,["G4151"]],[9,10,["G2192"]],[10,12,["G3756","G859","G1519","G165"]],[12,13,["G235"]],[13,14,["G2076"]],[14,16,["G1777"]],[16,18,["G166"]],[18,19,["G2920"]]]},{"k":24318,"v":[[0,1,["G3754"]],[1,3,["G3004"]],[3,5,["G2192"]],[5,7,["G169"]],[7,8,["G4151"]]]},{"k":24319,"v":[[0,2,["G2064"]],[2,3,["G3767"]],[3,5,["G80"]],[5,6,["G2532"]],[6,7,["G846"]],[7,8,["G3384"]],[8,9,["G2532"]],[9,10,["G2476"]],[10,11,["G1854"]],[11,12,["G649"]],[12,13,["G4314"]],[13,14,["G846"]],[14,15,["G5455"]],[15,16,["G846"]]]},{"k":24320,"v":[[0,1,["G2532"]],[1,3,["G3793"]],[3,4,["G2521"]],[4,5,["G4012"]],[5,6,["G846"]],[6,7,["G1161"]],[7,9,["G2036"]],[9,11,["G846"]],[11,12,["G2400"]],[12,13,["G4675"]],[13,14,["G3384"]],[14,15,["G2532"]],[15,16,["G4675"]],[16,17,["G80"]],[17,18,["G1854"]],[18,19,["G2212"]],[19,21,["G4571"]]]},{"k":24321,"v":[[0,1,["G2532"]],[1,3,["G611"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G5101"]],[6,7,["G2076"]],[7,8,["G3450"]],[8,9,["G3384"]],[9,10,["G2228"]],[10,11,["G3450"]],[11,12,["G80"]]]},{"k":24322,"v":[[0,1,["G2532"]],[1,3,["G4017"]],[3,5,["G2945"]],[5,9,["G2521"]],[9,10,["G4012"]],[10,11,["G846"]],[11,13,["G3004"]],[13,14,["G2396"]],[14,15,["G3450"]],[15,16,["G3384"]],[16,17,["G2532"]],[17,18,["G3450"]],[18,19,["G80"]]]},{"k":24323,"v":[[0,1,["G1063"]],[1,2,["G3739","G302"]],[2,4,["G4160"]],[4,5,["G3588"]],[5,6,["G2307"]],[6,8,["G2316"]],[8,10,["G3778"]],[10,11,["G2076"]],[11,12,["G3450"]],[12,13,["G80"]],[13,14,["G2532"]],[14,15,["G3450"]],[15,16,["G79"]],[16,17,["G2532"]],[17,18,["G3384"]]]},{"k":24324,"v":[[0,1,["G2532"]],[1,3,["G756"]],[3,4,["G3825"]],[4,6,["G1321"]],[6,7,["G3844"]],[7,8,["G3588"]],[8,10,["G2281"]],[10,11,["G2532"]],[11,14,["G4863"]],[14,15,["G4314"]],[15,16,["G846"]],[16,18,["G4183"]],[18,19,["G3793"]],[19,21,["G5620"]],[21,22,["G846"]],[22,23,["G1684"]],[23,24,["G1519"]],[24,26,["G4143"]],[26,28,["G2521"]],[28,29,["G1722"]],[29,30,["G3588"]],[30,31,["G2281"]],[31,32,["G2532"]],[32,33,["G3588"]],[33,34,["G3956"]],[34,35,["G3793"]],[35,36,["G2258"]],[36,37,["G4314"]],[37,38,["G3588"]],[38,39,["G2281"]],[39,40,["G1909"]],[40,41,["G3588"]],[41,42,["G1093"]]]},{"k":24325,"v":[[0,1,["G2532"]],[1,3,["G1321"]],[3,4,["G846"]],[4,6,["G4183"]],[6,7,["G1722"]],[7,8,["G3850"]],[8,9,["G2532"]],[9,10,["G3004"]],[10,12,["G846"]],[12,13,["G1722"]],[13,14,["G848"]],[14,15,["G1322"]]]},{"k":24326,"v":[[0,1,["G191"]],[1,2,["G2400"]],[2,5,["G1831"]],[5,7,["G4687"]],[7,9,["G4687"]]]},{"k":24327,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,8,["G4687"]],[8,9,["G3739","G3303"]],[9,10,["G4098"]],[10,11,["G3844"]],[11,12,["G3588"]],[12,14,["G3598"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G4071"]],[17,19,["G3588"]],[19,20,["G3772"]],[20,21,["G2064"]],[21,22,["G2532"]],[22,25,["G2719","G846"]]]},{"k":24328,"v":[[0,1,["G1161"]],[1,2,["G243"]],[2,3,["G4098"]],[3,4,["G1909"]],[4,6,["G4075"]],[6,7,["G3699"]],[7,9,["G2192"]],[9,10,["G3756"]],[10,11,["G4183"]],[11,12,["G1093"]],[12,13,["G2532"]],[13,14,["G2112"]],[14,17,["G1816"]],[17,20,["G2192"]],[20,21,["G3361"]],[21,22,["G899"]],[22,24,["G1093"]]]},{"k":24329,"v":[[0,1,["G1161"]],[1,4,["G2246"]],[4,6,["G393"]],[6,9,["G2739"]],[9,10,["G2532"]],[10,13,["G2192"]],[13,14,["G3361"]],[14,15,["G4491"]],[15,18,["G3583"]]]},{"k":24330,"v":[[0,1,["G2532"]],[1,2,["G243"]],[2,3,["G4098"]],[3,4,["G1519"]],[4,5,["G173"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G173"]],[8,10,["G305"]],[10,11,["G2532"]],[11,12,["G4846"]],[12,13,["G846"]],[13,14,["G2532"]],[14,16,["G1325"]],[16,17,["G3756"]],[17,18,["G2590"]]]},{"k":24331,"v":[[0,1,["G2532"]],[1,2,["G243"]],[2,3,["G4098"]],[3,4,["G1519"]],[4,5,["G2570"]],[5,6,["G1093"]],[6,7,["G2532"]],[7,9,["G1325"]],[9,10,["G2590"]],[10,13,["G305"]],[13,14,["G2532"]],[14,15,["G837"]],[15,16,["G2532"]],[16,18,["G5342"]],[18,19,["G1520"]],[19,20,["G5144"]],[20,21,["G2532"]],[21,22,["G1520"]],[22,23,["G1835"]],[23,24,["G2532"]],[24,25,["G1520"]],[25,27,["G1540"]]]},{"k":24332,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,8,["G2192"]],[8,9,["G3775"]],[9,11,["G191"]],[11,14,["G191"]]]},{"k":24333,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,4,["G1096"]],[4,5,["G2651"]],[5,6,["G3588"]],[6,9,["G4012"]],[9,10,["G846"]],[10,11,["G4862"]],[11,12,["G3588"]],[12,13,["G1427"]],[13,14,["G2065"]],[14,16,["G846"]],[16,17,["G3588"]],[17,18,["G3850"]]]},{"k":24334,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,7,["G5213"]],[7,10,["G1325"]],[10,12,["G1097"]],[12,13,["G3588"]],[13,14,["G3466"]],[14,16,["G3588"]],[16,17,["G932"]],[17,19,["G2316"]],[19,20,["G1161"]],[20,22,["G1565"]],[22,23,["G3588"]],[23,25,["G1854"]],[25,28,["G3956"]],[28,30,["G1096"]],[30,31,["G1722"]],[31,32,["G3850"]]]},{"k":24335,"v":[[0,1,["G2443"]],[1,2,["G991"]],[2,5,["G991"]],[5,6,["G2532"]],[6,7,["G3361"]],[7,8,["G1492"]],[8,9,["G2532"]],[9,10,["G191"]],[10,13,["G191"]],[13,14,["G2532"]],[14,15,["G3361"]],[15,16,["G4920"]],[16,20,["G3379"]],[20,24,["G1994"]],[24,25,["G2532"]],[25,27,["G265"]],[27,30,["G863"]],[30,31,["G846"]]]},{"k":24336,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G1492"]],[6,8,["G3756"]],[8,9,["G5026"]],[9,10,["G3850"]],[10,11,["G2532"]],[11,12,["G4459"]],[12,16,["G1097"]],[16,17,["G3956"]],[17,18,["G3850"]]]},{"k":24337,"v":[[0,1,["G3588"]],[1,2,["G4687"]],[2,3,["G4687"]],[3,4,["G3588"]],[4,5,["G3056"]]]},{"k":24338,"v":[[0,1,["G1161"]],[1,2,["G3778"]],[2,3,["G1526"]],[3,4,["G3588"]],[4,5,["G3844"]],[5,6,["G3588"]],[6,8,["G3598"]],[8,9,["G3699"]],[9,10,["G3588"]],[10,11,["G3056"]],[11,13,["G4687"]],[13,14,["G2532"]],[14,15,["G3752"]],[15,18,["G191"]],[18,19,["G4567"]],[19,20,["G2064"]],[20,21,["G2112"]],[21,22,["G2532"]],[22,24,["G142"]],[24,25,["G3588"]],[25,26,["G3056"]],[26,29,["G4687"]],[29,30,["G1722"]],[30,31,["G846"]],[31,32,["G2588"]]]},{"k":24339,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G1526"]],[3,8,["G4687","G3668"]],[8,9,["G1909"]],[9,11,["G4075"]],[11,12,["G3739"]],[12,13,["G3752"]],[13,16,["G191"]],[16,17,["G3588"]],[17,18,["G3056"]],[18,19,["G2112"]],[19,20,["G2983"]],[20,21,["G846"]],[21,22,["G3326"]],[22,23,["G5479"]]]},{"k":24340,"v":[[0,1,["G2532"]],[1,2,["G2192"]],[2,3,["G3756"]],[3,4,["G4491"]],[4,5,["G1722"]],[5,6,["G1438"]],[6,7,["G235"]],[7,8,["(G1526)"]],[8,13,["G4340"]],[13,14,["G1534"]],[14,16,["G2347"]],[16,17,["G2228"]],[17,18,["G1375"]],[18,19,["G1096"]],[19,23,["G1223","G3588","G3056"]],[23,24,["G2112"]],[24,27,["G4624"]]]},{"k":24341,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G1526"]],[3,7,["G4687"]],[7,8,["G1519"]],[8,9,["G173"]],[9,12,["G191"]],[12,13,["G3588"]],[13,14,["G3056"]]]},{"k":24342,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3308"]],[3,5,["G5127"]],[5,6,["G165"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G539"]],[9,11,["G4149"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G1939"]],[14,15,["G4012"]],[15,17,["G3062"]],[17,19,["G1531"]],[19,20,["G4846"]],[20,21,["G3588"]],[21,22,["G3056"]],[22,23,["G2532"]],[23,25,["G1096"]],[25,26,["G175"]]]},{"k":24343,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G1526"]],[3,7,["G4687"]],[7,8,["G1909"]],[8,9,["G2570"]],[9,10,["G1093"]],[10,12,["G3748"]],[12,13,["G191"]],[13,14,["G3588"]],[14,15,["G3056"]],[15,16,["G2532"]],[16,17,["G3858"]],[17,19,["G2532"]],[19,22,["G2592"]],[22,23,["G1520"]],[23,24,["G5144","(G2532)"]],[24,25,["G1520"]],[25,26,["G1835"]],[26,27,["G2532"]],[27,28,["G1520"]],[28,30,["G1540"]]]},{"k":24344,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,7,["(G3385)"]],[7,8,["G3088"]],[8,9,["G2064"]],[9,10,["G2443"]],[10,12,["G5087"]],[12,13,["G5259"]],[13,15,["G3426"]],[15,16,["G2228"]],[16,17,["G5259"]],[17,19,["G2825"]],[19,21,["G3756"]],[21,22,["G2443"]],[22,24,["G2007"]],[24,25,["G1909"]],[25,27,["G3087"]]]},{"k":24345,"v":[[0,1,["G1063"]],[1,3,["G2076"]],[3,4,["G3756","G5100"]],[4,5,["G2927"]],[5,6,["G3739"]],[6,8,["(G3362)"]],[8,10,["G5319"]],[10,11,["G3761"]],[11,12,["G1096"]],[12,16,["G614"]],[16,17,["G235"]],[17,18,["G2443"]],[18,21,["G2064"]],[21,22,["G1519","G5318"]]]},{"k":24346,"v":[[0,3,["G1536"]],[3,4,["G2192"]],[4,5,["G3775"]],[5,7,["G191"]],[7,10,["G191"]]]},{"k":24347,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,7,["G991"]],[7,8,["G5101"]],[8,10,["G191"]],[10,11,["G1722"]],[11,12,["G3739"]],[12,13,["G3358"]],[13,15,["G3354"]],[15,19,["G3354"]],[19,21,["G5213"]],[21,22,["G2532"]],[22,24,["G5213"]],[24,26,["G191"]],[26,30,["G4369"]]]},{"k":24348,"v":[[0,1,["G1063"]],[1,2,["G3739","G302"]],[2,4,["G2192"]],[4,6,["G846"]],[6,9,["G1325"]],[9,10,["G2532"]],[10,11,["G3739"]],[11,13,["G2192"]],[13,14,["G3756"]],[14,15,["G575"]],[15,16,["G846"]],[16,19,["G142"]],[19,20,["G2532"]],[20,22,["G3739"]],[22,24,["G2192"]]]},{"k":24349,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,4,["G3779"]],[4,5,["G2076"]],[5,6,["G3588"]],[6,7,["G932"]],[7,9,["G2316"]],[9,10,["G5613"]],[10,11,["G1437"]],[11,13,["G444"]],[13,15,["G906"]],[15,16,["G4703"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G1093"]]]},{"k":24350,"v":[[0,1,["G2532"]],[1,3,["G2518"]],[3,4,["G2532"]],[4,5,["G1453"]],[5,6,["G3571"]],[6,7,["G2532"]],[7,8,["G2250"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G4703"]],[11,13,["G985"]],[13,14,["G2532"]],[14,16,["G3373"]],[16,17,["G846"]],[17,18,["G1492"]],[18,19,["G3756"]],[19,20,["G5613"]]]},{"k":24351,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G1093"]],[3,6,["G2592"]],[6,8,["G844"]],[8,9,["G4412"]],[9,11,["G5528"]],[11,12,["G1534"]],[12,14,["G4719"]],[14,15,["G1534"]],[15,17,["G3588"]],[17,18,["G4134"]],[18,19,["G4621"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G4719"]]]},{"k":24352,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,3,["G3588"]],[3,4,["G2590"]],[4,7,["G3860"]],[7,8,["G2112"]],[8,11,["G649"]],[11,12,["G3588"]],[12,13,["G1407"]],[13,14,["G3754"]],[14,15,["G3588"]],[15,16,["G2326"]],[16,18,["G3936"]]]},{"k":24353,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,4,["G5101"]],[4,7,["G3666"]],[7,8,["G3588"]],[8,9,["G932"]],[9,11,["G2316"]],[11,12,["G2228"]],[12,13,["G1722"]],[13,14,["G4169"]],[14,15,["G3850"]],[15,18,["G3846"]],[18,19,["G846"]]]},{"k":24354,"v":[[0,3,["G5613"]],[3,5,["G2848"]],[5,8,["G4615"]],[8,9,["G3739"]],[9,10,["G3752"]],[10,13,["G4687"]],[13,14,["G1909"]],[14,15,["G3588"]],[15,16,["G1093"]],[16,17,["G2076"]],[17,18,["G3398"]],[18,20,["G3956"]],[20,21,["G3588"]],[21,22,["G4690"]],[22,23,["G3588"]],[23,24,["G2076"]],[24,25,["G1909"]],[25,26,["G3588"]],[26,27,["G1093"]]]},{"k":24355,"v":[[0,1,["G2532"]],[1,2,["G3752"]],[2,5,["G4687"]],[5,8,["G305"]],[8,9,["G2532"]],[9,10,["G1096"]],[10,11,["G3187"]],[11,13,["G3956"]],[13,14,["G3001"]],[14,15,["G2532"]],[15,17,["G4160"]],[17,18,["G3173"]],[18,19,["G2798"]],[19,21,["G5620"]],[21,22,["G3588"]],[22,23,["G4071"]],[23,25,["G3588"]],[25,26,["G3772"]],[26,27,["G1410"]],[27,28,["G2681"]],[28,29,["G5259"]],[29,30,["G3588"]],[30,31,["G4639"]],[31,33,["G846"]]]},{"k":24356,"v":[[0,1,["G2532"]],[1,3,["G4183"]],[3,4,["G5108"]],[4,5,["G3850"]],[5,6,["G2980"]],[6,8,["G3588"]],[8,9,["G3056"]],[9,11,["G846"]],[11,12,["G2531"]],[12,15,["G1410"]],[15,17,["G191"]],[17,18,[]]]},{"k":24357,"v":[[0,1,["G1161"]],[1,2,["G5565"]],[2,4,["G3850"]],[4,5,["G2980"]],[5,7,["G3756"]],[7,9,["G846"]],[9,10,["G1161"]],[10,14,["G2596","G2398"]],[14,16,["G1956"]],[16,18,["G3956"]],[18,20,["G848"]],[20,21,["G3101"]]]},{"k":24358,"v":[[0,1,["G2532"]],[1,2,["(G1722)"]],[2,3,["G1565"]],[3,4,["G2250"]],[4,7,["G3798"]],[7,9,["G1096"]],[9,11,["G3004"]],[11,13,["G846"]],[13,17,["G1330"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,21,["G4008"]]]},{"k":24359,"v":[[0,1,["G2532"]],[1,6,["G863"]],[6,7,["G3588"]],[7,8,["G3793"]],[8,10,["G3880"]],[10,11,["G846"]],[11,13,["G5613"]],[13,15,["G2258"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G4143"]],[18,19,["G1161"]],[19,21,["G2258"]],[21,22,["G2532"]],[22,23,["G3326"]],[23,24,["G846"]],[24,25,["G243"]],[25,27,["G4142"]]]},{"k":24360,"v":[[0,1,["G2532"]],[1,3,["G1096"]],[3,5,["G3173"]],[5,6,["G2978"]],[6,8,["G417"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G2949"]],[11,12,["G1911"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G4143"]],[15,17,["G5620"]],[17,18,["G846"]],[18,21,["G1072","G2235"]]]},{"k":24361,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G2258"]],[3,4,["G1909"]],[4,5,["G3588"]],[5,10,["G4403"]],[10,11,["G2518"]],[11,12,["G1909"]],[12,14,["G4344"]],[14,15,["G2532"]],[15,17,["G1326"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G3004"]],[20,22,["G846"]],[22,23,["G1320"]],[23,24,["G3199"]],[24,25,["G4671"]],[25,26,["G3756"]],[26,27,["G3754"]],[27,29,["G622"]]]},{"k":24362,"v":[[0,1,["G2532"]],[1,3,["G1326"]],[3,5,["G2008"]],[5,6,["G3588"]],[6,7,["G417"]],[7,8,["G2532"]],[8,9,["G2036"]],[9,11,["G3588"]],[11,12,["G2281"]],[12,13,["G4623"]],[13,15,["G5392"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G417"]],[18,19,["G2869"]],[19,20,["G2532"]],[20,22,["G1096"]],[22,24,["G3173"]],[24,25,["G1055"]]]},{"k":24363,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G5101"]],[6,7,["G2075"]],[7,9,["G3779"]],[9,10,["G1169"]],[10,11,["G4459"]],[11,16,["G2192"]],[16,17,["G3756"]],[17,18,["G4102"]]]},{"k":24364,"v":[[0,1,["G2532"]],[1,3,["G5399"]],[3,4,["G3173","G5401"]],[4,5,["G2532"]],[5,6,["G3004"]],[6,9,["G240","G4314"]],[9,13,["G5101","G686"]],[13,14,["G2076"]],[14,15,["G3778"]],[15,16,["G3754"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G417"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G2281"]],[22,23,["G5219"]],[23,24,["G846"]]]},{"k":24365,"v":[[0,1,["G2532"]],[1,4,["G2064"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,8,["G4008"]],[8,10,["G3588"]],[10,11,["G2281"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G5561"]],[14,16,["G3588"]],[16,17,["G1046"]]]},{"k":24366,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G1831"]],[5,7,["G1537"]],[7,8,["G3588"]],[8,9,["G4143"]],[9,10,["G2112"]],[10,12,["G528"]],[12,13,["G846"]],[13,15,["G1537"]],[15,16,["G3588"]],[16,17,["G3419"]],[17,19,["G444"]],[19,20,["G1722"]],[20,22,["G169"]],[22,23,["G4151"]]]},{"k":24367,"v":[[0,1,["G3739"]],[1,2,["G2192"]],[2,4,["G2731"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G3419"]],[7,8,["G2532"]],[8,10,["G3762"]],[10,11,["G1410"]],[11,12,["G1210"]],[12,13,["G846"]],[13,15,["G3777"]],[15,17,["G254"]]]},{"k":24368,"v":[[0,3,["G846"]],[3,6,["G4178"]],[6,7,["G1210"]],[7,9,["G3976"]],[9,10,["G2532"]],[10,11,["G254"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G254"]],[14,18,["G1288"]],[18,19,["G5259"]],[19,20,["G846"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G3976"]],[23,26,["G4937"]],[26,27,["G2532"]],[27,28,["G2480"]],[28,29,["G3762"]],[29,31,["G1150"]],[31,32,["G846"]]]},{"k":24369,"v":[[0,1,["G2532"]],[1,2,["G1275"]],[2,3,["G3571"]],[3,4,["G2532"]],[4,5,["G2250"]],[5,7,["G2258"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G3735"]],[10,11,["G2532"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G3418"]],[14,15,["G2896"]],[15,16,["G2532"]],[16,17,["G2629"]],[17,18,["G1438"]],[18,20,["G3037"]]]},{"k":24370,"v":[[0,1,["G1161"]],[1,4,["G1492"]],[4,5,["G2424"]],[5,7,["G575","G3113"]],[7,9,["G5143"]],[9,10,["G2532"]],[10,11,["G4352"]],[11,12,["G846"]]]},{"k":24371,"v":[[0,1,["G2532"]],[1,2,["G2896"]],[2,5,["G3173"]],[5,6,["G5456"]],[6,8,["G2036"]],[8,15,["G5101","G1698","G2532","G4671"]],[15,16,["G2424"]],[16,18,["G5207"]],[18,20,["G3588"]],[20,22,["G5310"]],[22,23,["G2316"]],[23,25,["G3726"]],[25,26,["G4571"]],[26,28,["G2316"]],[28,31,["G928"]],[31,32,["G3165"]],[32,33,["G3361"]]]},{"k":24372,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G1831"]],[6,8,["G1537"]],[8,9,["G3588"]],[9,10,["G444"]],[10,12,["G169"]],[12,13,["G4151"]]]},{"k":24373,"v":[[0,1,["G2532"]],[1,3,["G1905"]],[3,4,["G846"]],[4,5,["G5101"]],[5,7,["G4671"]],[7,8,["G3686"]],[8,9,["G2532"]],[9,11,["G611"]],[11,12,["G3004"]],[12,13,["G3427"]],[13,14,["G3686"]],[14,16,["G3003"]],[16,17,["G3754"]],[17,19,["G2070"]],[19,20,["G4183"]]]},{"k":24374,"v":[[0,1,["G2532"]],[1,3,["G3870"]],[3,4,["G846"]],[4,5,["G4183"]],[5,6,["G2443"]],[6,9,["G3361"]],[9,12,["G649","G846"]],[12,13,["G1854"]],[13,15,["G3588"]],[15,16,["G5561"]]]},{"k":24375,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G1563"]],[4,6,["G4314"]],[6,7,["G3588"]],[7,8,["G3735"]],[8,10,["G3173"]],[10,11,["G34"]],[11,13,["G5519"]],[13,14,["G1006"]]]},{"k":24376,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G1142"]],[4,5,["G3870"]],[5,6,["G846"]],[6,7,["G3004"]],[7,8,["G3992"]],[8,9,["G2248"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G5519"]],[12,13,["G2443"]],[13,16,["G1525"]],[16,17,["G1519"]],[17,18,["G846"]]]},{"k":24377,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G2424"]],[3,6,["G2010","G846"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G169"]],[9,10,["G4151"]],[10,12,["G1831"]],[12,13,["G2532"]],[13,14,["G1525"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G5519"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G34"]],[20,22,["G3729"]],[22,23,["G2596"]],[23,26,["G2911"]],[26,27,["G1519"]],[27,28,["G3588"]],[28,29,["G2281"]],[29,30,["(G1161)"]],[30,31,["G2258"]],[31,32,["G5613"]],[32,34,["G1367"]],[34,35,["G2532"]],[35,37,["G4155"]],[37,38,["G1722"]],[38,39,["G3588"]],[39,40,["G2281"]]]},{"k":24378,"v":[[0,1,["G1161"]],[1,4,["G1006"]],[4,5,["G3588"]],[5,6,["G5519"]],[6,7,["G5343"]],[7,8,["G2532"]],[8,9,["G312"]],[9,11,["G1519"]],[11,12,["G3588"]],[12,13,["G4172"]],[13,14,["G2532"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G68"]],[17,18,["G2532"]],[18,21,["G1831"]],[21,23,["G1492"]],[23,24,["G5101"]],[24,26,["G2076"]],[26,29,["G1096"]]]},{"k":24379,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G4314"]],[4,5,["G2424"]],[5,6,["G2532"]],[6,7,["G2334"]],[7,14,["G1139"]],[14,16,["G2192"]],[16,17,["G3588"]],[17,18,["G3003"]],[18,19,["G2521"]],[19,20,["G2532"]],[20,21,["G2439"]],[21,22,["G2532"]],[22,26,["G4993"]],[26,27,["G2532"]],[27,30,["G5399"]]]},{"k":24380,"v":[[0,1,["G2532"]],[1,4,["G1492"]],[4,6,["G1334"]],[6,7,["G846"]],[7,8,["G4459"]],[8,10,["G1096"]],[10,18,["G1139"]],[18,19,["G2532"]],[19,21,["G4012"]],[21,22,["G3588"]],[22,23,["G5519"]]]},{"k":24381,"v":[[0,1,["G2532"]],[1,3,["G756"]],[3,5,["G3870"]],[5,6,["G846"]],[6,8,["G565"]],[8,10,["G575"]],[10,11,["G846"]],[11,12,["G3725"]]]},{"k":24382,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G1684"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G4143"]],[8,16,["G1139"]],[16,17,["G3870"]],[17,18,["G846"]],[18,19,["G2443"]],[19,22,["G5600"]],[22,23,["G3326"]],[23,24,["G846"]]]},{"k":24383,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G863"]],[3,4,["G846"]],[4,5,["G3756"]],[5,6,["G235"]],[6,7,["G3004"]],[7,9,["G846"]],[9,10,["G5217"]],[10,14,["G1519","G4675","G3624","G4314","G4674"]],[14,15,["G2532"]],[15,16,["G312"]],[16,17,["G846"]],[17,20,["G3745"]],[20,21,["G3588"]],[21,22,["G2962"]],[22,24,["G4160"]],[24,26,["G4671"]],[26,27,["G2532"]],[27,30,["G1653"]],[30,32,["G4571"]]]},{"k":24384,"v":[[0,1,["G2532"]],[1,3,["G565"]],[3,4,["G2532"]],[4,5,["G756"]],[5,7,["G2784"]],[7,8,["G1722"]],[8,9,["G1179"]],[9,12,["G3745"]],[12,13,["G2424"]],[13,15,["G4160"]],[15,17,["G846"]],[17,18,["G2532"]],[18,19,["G3956"]],[19,22,["G2296"]]]},{"k":24385,"v":[[0,1,["G2532"]],[1,3,["G2424"]],[3,6,["G1276"]],[6,7,["G3825"]],[7,8,["G1722"]],[8,9,["G4143"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,13,["G4008"]],[13,14,["G4183"]],[14,15,["G3793"]],[15,16,["G4863"]],[16,17,["G1909"]],[17,18,["G846"]],[18,19,["G2532"]],[19,21,["G2258"]],[21,23,["G3844"]],[23,24,["G3588"]],[24,25,["G2281"]]]},{"k":24386,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G2064"]],[4,5,["G1520"]],[5,7,["G3588"]],[7,11,["G752"]],[11,12,["G2383"]],[12,14,["G3686"]],[14,15,["G2532"]],[15,18,["G1492"]],[18,19,["G846"]],[19,21,["G4098"]],[21,22,["G4314"]],[22,23,["G846"]],[23,24,["G4228"]]]},{"k":24387,"v":[[0,1,["G2532"]],[1,2,["G3870"]],[2,3,["G846"]],[3,4,["G4183"]],[4,5,["G3004"]],[5,6,["G3450"]],[6,8,["G2365"]],[8,14,["G2192","G2079"]],[14,16,["(G2443)"]],[16,18,["G2064"]],[18,20,["G2007"]],[20,22,["G5495"]],[22,24,["G846"]],[24,25,["G3704"]],[25,29,["G4982"]],[29,30,["G2532"]],[30,33,["G2198"]]]},{"k":24388,"v":[[0,1,["G2532"]],[1,3,["G565"]],[3,4,["G3326"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G4183"]],[7,8,["G3793"]],[8,9,["G190"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G4918"]],[12,13,["G846"]]]},{"k":24389,"v":[[0,1,["G2532"]],[1,3,["G5100"]],[3,4,["G1135"]],[4,6,["G5607"]],[6,7,["(G1722)"]],[7,8,["G4511"]],[8,10,["G129"]],[10,11,["G1427"]],[11,12,["G2094"]]]},{"k":24390,"v":[[0,1,["G2532"]],[1,3,["G3958"]],[3,5,["G4183"]],[5,6,["G5259"]],[6,7,["G4183"]],[7,8,["G2395"]],[8,9,["G2532"]],[9,11,["G1159"]],[11,15,["G3956","G3844","G1438"]],[15,16,["G2532"]],[16,18,["G3367"]],[18,19,["G5623"]],[19,20,["G235"]],[20,21,["G3123"]],[21,23,["G2064","G1519","G5501"]]]},{"k":24391,"v":[[0,4,["G191"]],[4,5,["G4012"]],[5,6,["G2424"]],[6,7,["G2064"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G3793"]],[10,11,["G3693"]],[11,13,["G680"]],[13,14,["G846"]],[14,15,["G2440"]]]},{"k":24392,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,4,["G2579"]],[4,7,["G680"]],[7,9,["G846"]],[9,10,["G2440"]],[10,14,["G4982"]]]},{"k":24393,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G3588"]],[3,4,["G4077"]],[4,6,["G846"]],[6,7,["G129"]],[7,10,["G3583"]],[10,11,["G2532"]],[11,13,["G1097"]],[13,16,["G4983"]],[16,17,["G3754"]],[17,20,["G2390"]],[20,21,["G575"]],[21,23,["G3148"]]]},{"k":24394,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2112"]],[3,4,["G1921"]],[4,5,["G1722"]],[5,6,["G1438"]],[6,8,["G1411"]],[8,10,["G1831"]],[10,12,["G1537"]],[12,13,["G846"]],[13,16,["G1994"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G3793"]],[19,20,["G2532"]],[20,21,["G3004"]],[21,22,["G5101"]],[22,23,["G680"]],[23,24,["G3450"]],[24,25,["G2440"]]]},{"k":24395,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3101"]],[3,4,["G3004"]],[4,6,["G846"]],[6,8,["G991"]],[8,9,["G3588"]],[9,10,["G3793"]],[10,11,["G4918"]],[11,12,["G4571"]],[12,13,["G2532"]],[13,14,["G3004"]],[14,16,["G5101"]],[16,17,["G680"]],[17,18,["G3450"]]]},{"k":24396,"v":[[0,1,["G2532"]],[1,5,["G4017"]],[5,7,["G1492"]],[7,11,["G4160"]],[11,13,["G5124"]]]},{"k":24397,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1135"]],[3,4,["G5399"]],[4,5,["G2532"]],[5,6,["G5141"]],[6,7,["G1492"]],[7,8,["G3739"]],[8,10,["G1096"]],[10,11,["G1909"]],[11,12,["G846"]],[12,13,["G2064"]],[13,14,["G2532"]],[14,17,["G4363"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G2036"]],[20,21,["G846"]],[21,22,["G3956"]],[22,23,["G3588"]],[23,24,["G225"]]]},{"k":24398,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G2364"]],[6,7,["G4675"]],[7,8,["G4102"]],[8,12,["G4982","G4571"]],[12,13,["G5217"]],[13,14,["G1519"]],[14,15,["G1515"]],[15,16,["G2532"]],[16,17,["G2468"]],[17,18,["G5199"]],[18,19,["G575"]],[19,20,["G4675"]],[20,21,["G3148"]]]},{"k":24399,"v":[[0,2,["G846"]],[2,3,["G2089"]],[3,4,["G2980"]],[4,6,["G2064"]],[6,7,["G575"]],[7,8,["G3588"]],[8,12,["G752"]],[12,16,["G3004"]],[16,17,["G4675"]],[17,18,["G2364"]],[18,20,["G599"]],[20,21,["G5101"]],[21,22,["G4660"]],[22,24,["G3588"]],[24,25,["G1320"]],[25,27,["G2089"]]]},{"k":24400,"v":[[0,0,["(G1161)"]],[0,3,["G2112"]],[3,4,["G2424"]],[4,5,["G191"]],[5,6,["G3588"]],[6,7,["G3056"]],[7,10,["G2980"]],[10,12,["G3004"]],[12,14,["G3588"]],[14,18,["G752"]],[18,21,["G5399","G3361"]],[21,22,["G3440"]],[22,23,["G4100"]]]},{"k":24401,"v":[[0,1,["G2532"]],[1,3,["G863"]],[3,5,["G3762"]],[5,7,["G4870"]],[7,8,["G846"]],[8,9,["G1508"]],[9,10,["G4074"]],[10,11,["G2532"]],[11,12,["G2385"]],[12,13,["G2532"]],[13,14,["G2491"]],[14,15,["G3588"]],[15,16,["G80"]],[16,18,["G2385"]]]},{"k":24402,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G3624"]],[6,8,["G3588"]],[8,12,["G752"]],[12,13,["G2532"]],[13,14,["G2334"]],[14,16,["G2351"]],[16,20,["G2799"]],[20,21,["G2532"]],[21,22,["G214"]],[22,23,["G4183"]]]},{"k":24403,"v":[[0,1,["G2532"]],[1,6,["G1525"]],[6,8,["G3004"]],[8,10,["G846"]],[10,11,["G5101"]],[11,15,["G2350"]],[15,16,["G2532"]],[16,17,["G2799"]],[17,18,["G3588"]],[18,19,["G3813"]],[19,22,["G599","G3756"]],[22,23,["G235"]],[23,24,["G2518"]]]},{"k":24404,"v":[[0,1,["G2532"]],[1,6,["G2606","G846"]],[6,7,["G1161"]],[7,9,["G3588"]],[9,14,["G1544","G537"]],[14,16,["G3880"]],[16,17,["G3588"]],[17,18,["G3962"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G3384"]],[21,23,["G3588"]],[23,24,["G3813"]],[24,25,["G2532"]],[25,26,["G3588"]],[26,29,["G3326"]],[29,30,["G846"]],[30,31,["G2532"]],[31,33,["G1531"]],[33,34,["G3699"]],[34,35,["G3588"]],[35,36,["G3813"]],[36,37,["G2258"]],[37,38,["G345"]]]},{"k":24405,"v":[[0,1,["G2532"]],[1,3,["G2902"]],[3,4,["G3588"]],[4,5,["G3813"]],[5,7,["G3588"]],[7,8,["G5495"]],[8,10,["G3004"]],[10,12,["G846"]],[12,13,["G5008"]],[13,14,["G2891"]],[14,15,["G3739"]],[15,16,["G2076"]],[16,18,["G3177"]],[18,19,["G2877"]],[19,21,["G3004"]],[21,23,["G4671"]],[23,24,["G1453"]]]},{"k":24406,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G3588"]],[3,4,["G2877"]],[4,5,["G450"]],[5,6,["G2532"]],[6,7,["G4043"]],[7,8,["G1063"]],[8,10,["G2258"]],[10,15,["G1427"]],[15,16,["G2094"]],[16,20,["G1839"]],[20,23,["G3173"]],[23,24,["G1611"]]]},{"k":24407,"v":[[0,1,["G2532"]],[1,3,["G1291"]],[3,4,["G846"]],[4,5,["G4183"]],[5,6,["G2443"]],[6,8,["G3367"]],[8,10,["G1097"]],[10,11,["G5124"]],[11,12,["G2532"]],[12,13,["G2036"]],[13,18,["G1325"]],[18,19,["G846"]],[19,21,["G5315"]]]},{"k":24408,"v":[[0,1,["G2532"]],[1,4,["G1831"]],[4,6,["G1564"]],[6,7,["G2532"]],[7,8,["G2064"]],[8,9,["G1519"]],[9,11,["G848"]],[11,12,["G3968"]],[12,13,["G2532"]],[13,14,["G846"]],[14,15,["G3101"]],[15,16,["G190"]],[16,17,["G846"]]]},{"k":24409,"v":[[0,1,["G2532"]],[1,5,["G4521"]],[5,7,["G1096"]],[7,9,["G756"]],[9,11,["G1321"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G4864"]],[14,15,["G2532"]],[15,16,["G4183"]],[16,17,["G191"]],[17,20,["G1605"]],[20,21,["G3004"]],[21,23,["G4159"]],[23,25,["G5129"]],[25,28,["G5023"]],[28,29,["G2532"]],[29,30,["G5101"]],[30,31,["G4678"]],[31,36,["G1325"]],[36,38,["G846"]],[38,39,["G3754"]],[39,40,["G2532"]],[40,41,["G5108"]],[41,43,["G1411"]],[43,45,["G1096"]],[45,46,["G1223"]],[46,47,["G846"]],[47,48,["G5495"]]]},{"k":24410,"v":[[0,1,["G2076"]],[1,2,["G3756"]],[2,3,["G3778"]],[3,4,["G3588"]],[4,5,["G5045"]],[5,6,["G3588"]],[6,7,["G5207"]],[7,9,["G3137"]],[9,10,["(G1161)"]],[10,11,["G80"]],[11,13,["G2385"]],[13,14,["G2532"]],[14,15,["G2500"]],[15,16,["G2532"]],[16,18,["G2455"]],[18,19,["G2532"]],[19,20,["G4613"]],[20,21,["G2532"]],[21,22,["G1526"]],[22,23,["G3756"]],[23,24,["G846"]],[24,25,["G79"]],[25,26,["G5602"]],[26,27,["G4314"]],[27,28,["G2248"]],[28,29,["G2532"]],[29,32,["G4624"]],[32,33,["G1722"]],[33,34,["G846"]]]},{"k":24411,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G3004"]],[3,5,["G846"]],[5,7,["G4396"]],[7,8,["G2076"]],[8,9,["G3756"]],[9,11,["G820"]],[11,12,["G1508"]],[12,13,["G1722"]],[13,15,["G848"]],[15,16,["G3968"]],[16,17,["G2532"]],[17,18,["G1722"]],[18,21,["G4773"]],[21,22,["G2532"]],[22,23,["G1722"]],[23,25,["G848"]],[25,26,["G3614"]]]},{"k":24412,"v":[[0,1,["G2532"]],[1,3,["G1410"]],[3,4,["G1563"]],[4,5,["G4160"]],[5,6,["G3756"]],[6,8,["G1411"]],[8,10,["G1508"]],[10,15,["G2007","G5495"]],[15,17,["G3641"]],[17,19,["G732"]],[19,21,["G2323"]],[21,22,[]]]},{"k":24413,"v":[[0,1,["G2532"]],[1,3,["G2296"]],[3,4,["G1223"]],[4,6,["G846"]],[6,7,["G570"]],[7,8,["G2532"]],[8,10,["G4013"]],[10,12,["G2945"]],[12,13,["G3588"]],[13,14,["G2968"]],[14,15,["G1321"]]]},{"k":24414,"v":[[0,1,["G2532"]],[1,3,["G4341"]],[3,6,["G3588"]],[6,7,["G1427"]],[7,8,["G2532"]],[8,9,["G756"]],[9,13,["G649","G846"]],[13,17,["G1417","G1417"]],[17,18,["G2532"]],[18,19,["G1325"]],[19,20,["G846"]],[20,21,["G1849"]],[21,23,["G169"]],[23,24,["G4151"]]]},{"k":24415,"v":[[0,1,["G2532"]],[1,2,["G3853"]],[2,3,["G846"]],[3,4,["G2443"]],[4,7,["G142"]],[7,8,["G3367"]],[8,9,["G1519"]],[9,11,["G3598"]],[11,12,["G1508"]],[12,14,["G4464"]],[14,15,["G3440"]],[15,16,["G3361"]],[16,17,["G4082"]],[17,18,["G3361"]],[18,19,["G740"]],[19,20,["G3361"]],[20,21,["G5475"]],[21,22,["G1519"]],[22,24,["G2223"]]]},{"k":24416,"v":[[0,1,["G235"]],[1,3,["G5265"]],[3,5,["G4547"]],[5,6,["G2532"]],[6,7,["G3361"]],[7,9,["G1746"]],[9,10,["G1417"]],[10,11,["G5509"]]]},{"k":24417,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,9,["G3699","G1437"]],[9,11,["G1525"]],[11,12,["G1519"]],[12,14,["G3614"]],[14,15,["G1563"]],[15,16,["G3306"]],[16,17,["G2193","G302"]],[17,19,["G1831"]],[19,22,["G1564"]]]},{"k":24418,"v":[[0,1,["G2532"]],[1,2,["G3745","G302"]],[2,4,["G3361"]],[4,5,["G1209"]],[5,6,["G5209"]],[6,7,["G3366"]],[7,8,["G191"]],[8,9,["G5216"]],[9,12,["G1607"]],[12,13,["G1564"]],[13,15,["G1621"]],[15,16,["G3588"]],[16,17,["G5522"]],[17,18,["G5270"]],[18,19,["G5216"]],[19,20,["G4228"]],[20,21,["G1519"]],[21,23,["G3142"]],[23,25,["G846"]],[25,26,["G281"]],[26,28,["G3004"]],[28,30,["G5213"]],[30,33,["G2071"]],[33,35,["G414"]],[35,37,["G4670"]],[37,38,["G2228"]],[38,39,["G1116"]],[39,40,["G1722"]],[40,42,["G2250"]],[42,44,["G2920"]],[44,45,["G2228"]],[45,47,["G1565"]],[47,48,["G4172"]]]},{"k":24419,"v":[[0,1,["G2532"]],[1,4,["G1831"]],[4,6,["G2784"]],[6,7,["G2443"]],[7,10,["G3340"]]]},{"k":24420,"v":[[0,1,["G2532"]],[1,4,["G1544"]],[4,5,["G4183"]],[5,6,["G1140"]],[6,7,["G2532"]],[7,8,["G218"]],[8,10,["G1637"]],[10,11,["G4183"]],[11,14,["G732"]],[14,15,["G2532"]],[15,16,["G2323"]],[16,17,[]]]},{"k":24421,"v":[[0,1,["G2532"]],[1,2,["G935"]],[2,3,["G2264"]],[3,4,["G191"]],[4,7,["G1063"]],[7,8,["G846"]],[8,9,["G3686"]],[9,12,["G1096","G5318"]],[12,13,["G2532"]],[13,15,["G3004"]],[15,16,["G3754"]],[16,17,["G2491"]],[17,18,["G3588"]],[18,19,["G907"]],[19,21,["G1453"]],[21,22,["G1537"]],[22,24,["G3498"]],[24,25,["G2532"]],[25,26,["G1223","G5124"]],[26,28,["G1411"]],[28,31,["G1754"]],[31,33,["G1722"]],[33,34,["G846"]]]},{"k":24422,"v":[[0,1,["G243"]],[1,2,["G3004"]],[2,3,["G3754"]],[3,5,["G2076"]],[5,6,["G2243"]],[6,7,["G1161"]],[7,8,["G243"]],[8,9,["G3004"]],[9,10,["G3754"]],[10,12,["G2076"]],[12,14,["G4396"]],[14,15,["G2228"]],[15,16,["G5613"]],[16,17,["G1520"]],[17,19,["G3588"]],[19,20,["G4396"]]]},{"k":24423,"v":[[0,1,["G1161"]],[1,3,["G2264"]],[3,4,["G191"]],[4,7,["G2036"]],[7,8,["G3778"]],[8,9,["G2076"]],[9,10,["G2491"]],[10,11,["G3739"]],[11,12,["G1473"]],[12,13,["G607"]],[13,14,["G846"]],[14,16,["G1453"]],[16,17,["G1537"]],[17,19,["G3498"]]]},{"k":24424,"v":[[0,1,["G1063"]],[1,2,["G2264"]],[2,3,["G846"]],[3,6,["G649"]],[6,7,["G2532"]],[7,10,["G2902"]],[10,11,["G2491"]],[11,12,["G2532"]],[12,13,["G1210"]],[13,14,["G846"]],[14,15,["G1722"]],[15,16,["G5438"]],[16,19,["G1223","G2266"]],[19,20,["G848"]],[20,21,["G80"]],[21,22,["G5376"]],[22,23,["G1135"]],[23,24,["G3754"]],[24,27,["G1060"]],[27,28,["G846"]]]},{"k":24425,"v":[[0,1,["G1063"]],[1,2,["G2491"]],[2,4,["G3004"]],[4,6,["G2264"]],[6,10,["G1832","G3756"]],[10,12,["G4671"]],[12,14,["G2192"]],[14,15,["G4675"]],[15,16,["G80"]],[16,17,["G1135"]]]},{"k":24426,"v":[[0,1,["G1161"]],[1,2,["G2266"]],[2,6,["G1758"]],[6,7,["G846"]],[7,8,["G2532"]],[8,9,["G2309"]],[9,11,["G615"]],[11,12,["G846"]],[12,13,["G2532"]],[13,15,["G1410"]],[15,16,["G3756"]]]},{"k":24427,"v":[[0,1,["G1063"]],[1,2,["G2264"]],[2,3,["G5399"]],[3,4,["G2491"]],[4,5,["G1492"]],[5,7,["G846"]],[7,10,["G1342"]],[10,11,["G435"]],[11,12,["G2532"]],[12,14,["G40"]],[14,15,["G2532"]],[15,16,["G4933"]],[16,17,["G846"]],[17,18,["G2532"]],[18,21,["G191"]],[21,22,["G846"]],[22,24,["G4160"]],[24,26,["G4183"]],[26,27,["G2532"]],[27,28,["G191"]],[28,29,["G846"]],[29,30,["G2234"]]]},{"k":24428,"v":[[0,1,["G2532"]],[1,4,["G2121"]],[4,5,["G2250"]],[5,7,["G2064"]],[7,8,["G3753"]],[8,9,["G2264"]],[9,11,["G848"]],[11,12,["G1077"]],[12,13,["G4160"]],[13,15,["G1173"]],[15,17,["G848"]],[17,18,["G3175","(G2532)"]],[18,20,["G5506"]],[20,21,["G2532"]],[21,22,["G4413"]],[22,25,["G1056"]]]},{"k":24429,"v":[[0,2,["G2532"]],[2,3,["G3588"]],[3,4,["G2364"]],[4,7,["G846"]],[7,8,["G2266"]],[8,10,["G1525"]],[10,11,["G2532"]],[11,12,["G3738"]],[12,13,["G2532"]],[13,14,["G700"]],[14,15,["G2264"]],[15,16,["G2532"]],[16,20,["G4873"]],[20,22,["G3588"]],[22,23,["G935"]],[23,24,["G2036"]],[24,26,["G3588"]],[26,27,["G2877"]],[27,28,["G154"]],[28,30,["G3165"]],[30,31,["G3739","G1437"]],[31,33,["G2309"]],[33,34,["G2532"]],[34,37,["G1325"]],[37,39,["G4671"]]]},{"k":24430,"v":[[0,1,["G2532"]],[1,3,["G3660"]],[3,5,["G846"]],[5,6,["G3739","G1437"]],[6,9,["G154"]],[9,11,["G3165"]],[11,14,["G1325"]],[14,16,["G4671"]],[16,17,["G2193"]],[17,19,["G2255"]],[19,21,["G3450"]],[21,22,["G932"]]]},{"k":24431,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G1831"]],[4,6,["G2036"]],[6,8,["G848"]],[8,9,["G3384"]],[9,10,["G5101"]],[10,13,["G154"]],[13,14,["G1161"]],[14,15,["G3588"]],[15,16,["G2036"]],[16,17,["G3588"]],[17,18,["G2776"]],[18,20,["G2491"]],[20,21,["G3588"]],[21,22,["G910"]]]},{"k":24432,"v":[[0,1,["G2532"]],[1,4,["G1525"]],[4,5,["G2112"]],[5,6,["G3326"]],[6,7,["G4710"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,10,["G935"]],[10,12,["G154"]],[12,13,["G3004"]],[13,15,["G2309"]],[15,16,["G2443"]],[16,18,["G1325"]],[18,19,["G3427"]],[19,22,["G1824"]],[22,23,["G1909"]],[23,25,["G4094"]],[25,26,["G3588"]],[26,27,["G2776"]],[27,29,["G2491"]],[29,30,["G3588"]],[30,31,["G910"]]]},{"k":24433,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G935"]],[3,4,["G1096"]],[4,6,["G4036"]],[6,11,["G1223","G3727"]],[11,12,["G2532"]],[12,18,["G4873"]],[18,21,["G2309"]],[21,22,["G3756"]],[22,23,["G114"]],[23,24,["G846"]]]},{"k":24434,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G3588"]],[3,4,["G935"]],[4,5,["G649"]],[5,7,["G4688"]],[7,9,["G2004"]],[9,10,["G846"]],[10,11,["G2776"]],[11,14,["G5342"]],[14,15,["G1161"]],[15,16,["G3588"]],[16,17,["G565"]],[17,19,["G607"]],[19,20,["G846"]],[20,21,["G1722"]],[21,22,["G3588"]],[22,23,["G5438"]]]},{"k":24435,"v":[[0,1,["G2532"]],[1,2,["G5342"]],[2,3,["G846"]],[3,4,["G2776"]],[4,5,["G1909"]],[5,7,["G4094"]],[7,8,["G2532"]],[8,9,["G1325"]],[9,10,["G846"]],[10,12,["G3588"]],[12,13,["G2877"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G2877"]],[16,17,["G1325"]],[17,18,["G846"]],[18,20,["G848"]],[20,21,["G3384"]]]},{"k":24436,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,4,["G3101"]],[4,5,["G191"]],[5,9,["G2064"]],[9,10,["G2532"]],[10,12,["G142"]],[12,13,["G846"]],[13,14,["G4430"]],[14,15,["G2532"]],[15,16,["G5087"]],[16,17,["G846"]],[17,18,["G1722"]],[18,20,["G3419"]]]},{"k":24437,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G652"]],[3,6,["G4863"]],[6,7,["G4314"]],[7,8,["G2424"]],[8,9,["G2532"]],[9,10,["G518"]],[10,11,["G846"]],[11,13,["G3956"]],[13,14,["G2532"]],[14,15,["G3745"]],[15,18,["G4160"]],[18,19,["G2532"]],[19,20,["G3745"]],[20,23,["G1321"]]]},{"k":24438,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G1205"]],[6,7,["G5210"]],[7,8,["G846"]],[8,9,["G2596","G2398"]],[9,10,["G1519"]],[10,12,["G2048"]],[12,13,["G5117"]],[13,14,["G2532"]],[14,15,["G373"]],[15,17,["G3641"]],[17,18,["G1063"]],[18,20,["G2258"]],[20,21,["G4183"]],[21,22,["G2064"]],[22,23,["G2532"]],[23,24,["G5217"]],[24,25,["G2532"]],[25,32,["G2119","G3761"]],[32,34,["G5315"]]]},{"k":24439,"v":[[0,1,["G2532"]],[1,3,["G565"]],[3,4,["G1519"]],[4,6,["G2048"]],[6,7,["G5117"]],[7,9,["G4143"]],[9,10,["G2596","G2398"]]]},{"k":24440,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3793"]],[3,4,["G1492"]],[4,5,["G846"]],[5,6,["G5217"]],[6,7,["G2532"]],[7,8,["G4183"]],[8,9,["G1921"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G4936"]],[12,13,["G3979"]],[13,14,["G1563"]],[14,16,["G575"]],[16,17,["G3956"]],[17,18,["G4172"]],[18,19,["G2532"]],[19,20,["G4281"]],[20,21,["G846"]],[21,22,["G2532"]],[22,24,["G4905"]],[24,25,["G4314"]],[25,26,["G846"]]]},{"k":24441,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,6,["G1831"]],[6,7,["G1492"]],[7,8,["G4183"]],[8,9,["G3793"]],[9,10,["G2532"]],[10,14,["G4697"]],[14,15,["G1909"]],[15,16,["G846"]],[16,17,["G3754"]],[17,19,["G2258"]],[19,20,["G5613"]],[20,21,["G4263"]],[21,22,["G3361"]],[22,23,["G2192"]],[23,25,["G4166"]],[25,26,["G2532"]],[26,28,["G756"]],[28,30,["G1321"]],[30,31,["G846"]],[31,33,["G4183"]]]},{"k":24442,"v":[[0,1,["G2532"]],[1,8,["G2235","G1096","G4183","G5610"]],[8,9,["G846"]],[9,10,["G3101"]],[10,11,["G4334"]],[11,13,["G846"]],[13,15,["G3004"]],[15,17,["G2076"]],[17,19,["G2048"]],[19,20,["G5117"]],[20,21,["G2532"]],[21,22,["G2235"]],[22,27,["G4183","G5610"]]]},{"k":24443,"v":[[0,3,["G630","G846"]],[3,4,["G2443"]],[4,7,["G565"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G68"]],[10,12,["G2945"]],[12,13,["G2532"]],[13,16,["G2968"]],[16,18,["G59"]],[18,19,["G1438"]],[19,20,["G740"]],[20,21,["G1063"]],[21,23,["G2192"]],[23,24,["G3756","G5101"]],[24,26,["G5315"]]]},{"k":24444,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G846"]],[6,7,["G1325"]],[7,8,["G5210"]],[8,9,["G846"]],[9,12,["G5315"]],[12,13,["G2532"]],[13,14,["G3004"]],[14,16,["G846"]],[16,19,["G565"]],[19,21,["G59"]],[21,23,["G1250"]],[23,24,["G1220"]],[24,26,["G740"]],[26,27,["G2532"]],[27,28,["G1325"]],[28,29,["G846"]],[29,31,["G5315"]]]},{"k":24445,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G3004"]],[2,4,["G846"]],[4,6,["G4214"]],[6,7,["G740"]],[7,8,["G2192"]],[8,10,["G5217"]],[10,11,["G2532"]],[11,12,["G1492"]],[12,13,["G2532"]],[13,16,["G1097"]],[16,18,["G3004"]],[18,19,["G4002"]],[19,20,["G2532"]],[20,21,["G1417"]],[21,22,["G2486"]]]},{"k":24446,"v":[[0,1,["G2532"]],[1,3,["G2004"]],[3,4,["G846"]],[4,9,["G347","G3956"]],[9,11,["G4849","G4849"]],[11,12,["G1909"]],[12,13,["G3588"]],[13,14,["G5515"]],[14,15,["G5528"]]]},{"k":24447,"v":[[0,1,["G2532"]],[1,4,["G377"]],[4,6,["G4237","G4237"]],[6,8,["G303","G1540"]],[8,9,["G2532"]],[9,11,["G303","G4004"]]]},{"k":24448,"v":[[0,1,["G2532"]],[1,5,["G2983"]],[5,6,["G3588"]],[6,7,["G4002"]],[7,8,["G740"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G1417"]],[11,12,["G2486"]],[12,15,["G308"]],[15,16,["G1519"]],[16,17,["G3772"]],[17,19,["G2127"]],[19,20,["G2532"]],[20,21,["G2622"]],[21,22,["G3588"]],[22,23,["G740"]],[23,24,["G2532"]],[24,25,["G1325"]],[25,28,["G848"]],[28,29,["G3101"]],[29,30,["G2443"]],[30,32,["G3908"]],[32,33,["G846"]],[33,34,["G2532"]],[34,35,["G3588"]],[35,36,["G1417"]],[36,37,["G2486"]],[37,38,["G3307"]],[38,42,["G3956"]]]},{"k":24449,"v":[[0,1,["G2532"]],[1,4,["G3956"]],[4,5,["G5315"]],[5,6,["G2532"]],[6,8,["G5526"]]]},{"k":24450,"v":[[0,1,["G2532"]],[1,4,["G142"]],[4,5,["G1427"]],[5,6,["G2894"]],[6,7,["G4134"]],[7,10,["G2801"]],[10,11,["G2532"]],[11,12,["G575"]],[12,13,["G3588"]],[13,14,["G2486"]]]},{"k":24451,"v":[[0,1,["G2532"]],[1,5,["G5315"]],[5,7,["G3588"]],[7,8,["G740"]],[8,9,["G2258"]],[9,10,["G5616"]],[10,12,["G4000"]],[12,13,["G435"]]]},{"k":24452,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G315"]],[4,5,["G848"]],[5,6,["G3101"]],[6,8,["G1684"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G4143"]],[11,12,["G2532"]],[12,18,["G4254","G1519","G4008"]],[18,19,["G4314"]],[19,21,["G966"]],[21,22,["G2193"]],[22,23,["G846"]],[23,25,["G630"]],[25,26,["G3588"]],[26,27,["G3793"]]]},{"k":24453,"v":[[0,1,["G2532"]],[1,7,["G657","G846"]],[7,9,["G565"]],[9,10,["G1519"]],[10,12,["G3735"]],[12,14,["G4336"]]]},{"k":24454,"v":[[0,1,["G2532"]],[1,3,["G3798"]],[3,5,["G1096"]],[5,6,["G3588"]],[6,7,["G4143"]],[7,8,["G2258"]],[8,9,["G1722"]],[9,11,["G3319"]],[11,13,["G3588"]],[13,14,["G2281"]],[14,15,["G2532"]],[15,16,["G846"]],[16,17,["G3441"]],[17,18,["G1909"]],[18,19,["G3588"]],[19,20,["G1093"]]]},{"k":24455,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G846"]],[4,5,["G928"]],[5,7,["G1643"]],[7,8,["G1063"]],[8,9,["G3588"]],[9,10,["G417"]],[10,11,["G2258"]],[11,12,["G1727"]],[12,14,["G846"]],[14,15,["G2532"]],[15,16,["G4012"]],[16,18,["G5067"]],[18,19,["G5438"]],[19,21,["G3588"]],[21,22,["G3571"]],[22,24,["G2064"]],[24,25,["G4314"]],[25,26,["G846"]],[26,27,["G4043"]],[27,28,["G1909"]],[28,29,["G3588"]],[29,30,["G2281"]],[30,31,["G2532"]],[31,32,["G2309"]],[32,35,["G3928"]],[35,36,["G846"]]]},{"k":24456,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1492"]],[4,5,["G846"]],[5,6,["G4043"]],[6,7,["G1909"]],[7,8,["G3588"]],[8,9,["G2281"]],[9,11,["G1380"]],[11,14,["G1511"]],[14,16,["G5326"]],[16,17,["G2532"]],[17,19,["G349"]]]},{"k":24457,"v":[[0,1,["G1063"]],[1,3,["G3956"]],[3,4,["G1492"]],[4,5,["G846"]],[5,6,["G2532"]],[6,8,["G5015"]],[8,9,["G2532"]],[9,10,["G2112"]],[10,12,["G2980"]],[12,13,["G3326"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G3004"]],[16,18,["G846"]],[18,22,["G2293"]],[22,24,["G1510"]],[24,25,["G1473"]],[25,28,["G5399","G3361"]]]},{"k":24458,"v":[[0,1,["G2532"]],[1,4,["G305"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G4143"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G417"]],[12,13,["G2869"]],[13,14,["G2532"]],[14,17,["G3029"]],[17,18,["G1839"]],[18,19,["G1722"]],[19,20,["G1438"]],[20,21,["G1537"]],[21,22,["G4053"]],[22,23,["G2532"]],[23,24,["G2296"]]]},{"k":24459,"v":[[0,1,["G1063"]],[1,3,["G4920"]],[3,4,["G3756"]],[4,7,["G1909"]],[7,8,["G3588"]],[8,9,["G740"]],[9,10,["G1063"]],[10,11,["G846"]],[11,12,["G2588"]],[12,13,["G2258"]],[13,14,["G4456"]]]},{"k":24460,"v":[[0,1,["G2532"]],[1,6,["G1276"]],[6,8,["G2064"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G1093"]],[11,13,["G1082"]],[13,14,["G2532"]],[14,18,["G4358"]]]},{"k":24461,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G1831"]],[5,7,["G1537"]],[7,8,["G3588"]],[8,9,["G4143"]],[9,10,["G2112"]],[10,12,["G1921"]],[12,13,["G846"]]]},{"k":24462,"v":[[0,3,["G4063"]],[3,4,["G1565"]],[4,5,["G3650"]],[5,8,["G4066"]],[8,10,["G756"]],[10,13,["G4064"]],[13,14,["G1909"]],[14,15,["G2895"]],[15,19,["G2192","G2560"]],[19,20,["G3699"]],[20,22,["G191"]],[22,23,["(G3754)"]],[23,24,["G2076","(G1563)"]]]},{"k":24463,"v":[[0,1,["G2532"]],[1,2,["G3699","G302"]],[2,4,["G1531"]],[4,5,["G1519"]],[5,6,["G2968"]],[6,7,["G2228"]],[7,8,["G4172"]],[8,9,["G2228"]],[9,10,["G68"]],[10,12,["G5087"]],[12,13,["G3588"]],[13,14,["G770"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G58"]],[17,18,["G2532"]],[18,19,["G3870"]],[19,20,["G846"]],[20,21,["G2443"]],[21,24,["G680"]],[24,28,["G2579"]],[28,29,["G3588"]],[29,30,["G2899"]],[30,32,["G846"]],[32,33,["G2440"]],[33,34,["G2532"]],[34,37,["G3745","G302"]],[37,38,["G680"]],[38,39,["G846"]],[39,42,["G4982"]]]},{"k":24464,"v":[[0,1,["G2532"]],[1,3,["G4863"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G3588"]],[6,7,["G5330"]],[7,8,["G2532"]],[8,9,["G5100"]],[9,11,["G3588"]],[11,12,["G1122"]],[12,14,["G2064"]],[14,15,["G575"]],[15,16,["G2414"]]]},{"k":24465,"v":[[0,1,["G2532"]],[1,4,["G1492"]],[4,5,["G5100"]],[5,7,["G846"]],[7,8,["G3101"]],[8,9,["G2068"]],[9,10,["G740"]],[10,12,["G2839"]],[12,16,["G5123"]],[16,18,["G449"]],[18,19,["G5495"]],[19,22,["G3201"]]]},{"k":24466,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,4,["G2532"]],[4,5,["G3956"]],[5,6,["G3588"]],[6,7,["G2453"]],[7,8,["G3362"]],[8,10,["G3538"]],[10,12,["G5495"]],[12,13,["G4435"]],[13,14,["G2068"]],[14,15,["G3756"]],[15,16,["G2902"]],[16,17,["G3588"]],[17,18,["G3862"]],[18,20,["G3588"]],[20,21,["G4245"]]]},{"k":24467,"v":[[0,1,["G2532"]],[1,5,["G575"]],[5,7,["G58"]],[7,8,["G3362"]],[8,10,["G907"]],[10,12,["G2068"]],[12,13,["G3756"]],[13,14,["G2532"]],[14,15,["G4183"]],[15,17,["G243"]],[17,19,["G2076"]],[19,20,["G3739"]],[20,23,["G3880"]],[23,25,["G2902"]],[25,28,["G909"]],[28,30,["G4221"]],[30,31,["G2532"]],[31,32,["G3582","(G2532)"]],[32,34,["G5473"]],[34,35,["G2532"]],[35,37,["G2825"]]]},{"k":24468,"v":[[0,1,["G1899"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,4,["G2532"]],[4,5,["G1122"]],[5,6,["G1905"]],[6,7,["G846"]],[7,8,["G1302"]],[8,9,["G4043"]],[9,10,["G3756"]],[10,11,["G4675"]],[11,12,["G3101"]],[12,13,["G2596"]],[13,15,["G3588"]],[15,16,["G3862"]],[16,18,["G3588"]],[18,19,["G4245"]],[19,20,["G235"]],[20,21,["G2068"]],[21,22,["G740"]],[22,24,["G449"]],[24,25,["G5495"]]]},{"k":24469,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G846"]],[6,7,["G2573"]],[7,9,["G2268"]],[9,10,["G4395"]],[10,11,["G4012"]],[11,12,["G5216"]],[12,13,["G5273"]],[13,14,["G5613"]],[14,17,["G1125"]],[17,18,["G3778"]],[18,19,["G2992"]],[19,20,["G5091"]],[20,21,["G3165"]],[21,24,["G5491"]],[24,25,["G1161"]],[25,26,["G846"]],[26,27,["G2588"]],[27,29,["G568","G4206"]],[29,30,["G575"]],[30,31,["G1700"]]]},{"k":24470,"v":[[0,1,["G1161"]],[1,3,["G3155"]],[3,6,["G4576"]],[6,7,["G3165"]],[7,8,["G1321"]],[8,10,["G1319"]],[10,12,["G1778"]],[12,14,["G444"]]]},{"k":24471,"v":[[0,1,["G1063"]],[1,3,["G863"]],[3,4,["G3588"]],[4,5,["G1785"]],[5,7,["G2316"]],[7,9,["G2902"]],[9,10,["G3588"]],[10,11,["G3862"]],[11,13,["G444"]],[13,16,["G909"]],[16,18,["G3582"]],[18,19,["G2532"]],[19,20,["G4221"]],[20,21,["G2532"]],[21,22,["G4183"]],[22,23,["G243"]],[23,24,["G5108"]],[24,26,["G3946"]],[26,28,["G4160"]]]},{"k":24472,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,7,["G2573"]],[7,9,["G114"]],[9,10,["G3588"]],[10,11,["G1785"]],[11,13,["G2316"]],[13,14,["G2443"]],[14,17,["G5083"]],[17,19,["G5216"]],[19,20,["G3862"]]]},{"k":24473,"v":[[0,1,["G1063"]],[1,2,["G3475"]],[2,3,["G2036"]],[3,4,["G5091"]],[4,5,["G4675"]],[5,6,["G3962"]],[6,7,["G2532"]],[7,8,["G4675"]],[8,9,["G3384"]],[9,12,["G2551"]],[12,13,["G3962"]],[13,14,["G2228"]],[14,15,["G3384"]],[15,18,["G5053"]],[18,20,["G2288"]]]},{"k":24474,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G3004"]],[3,4,["G1437"]],[4,6,["G444"]],[6,8,["G2036"]],[8,11,["G3962"]],[11,12,["G2228"]],[12,13,["G3384"]],[13,16,["G2878"]],[16,20,["G3603"]],[20,22,["G1435"]],[22,24,["G3739","G1437"]],[24,28,["G5623"]],[28,29,["G1537"]],[29,30,["G1700"]],[30,34,[]]]},{"k":24475,"v":[[0,1,["G2532"]],[1,3,["G863"]],[3,4,["G846"]],[4,6,["G3765"]],[6,8,["G4160"]],[8,9,["G3762"]],[9,11,["G848"]],[11,12,["G3962"]],[12,13,["G2228"]],[13,14,["G848"]],[14,15,["G3384"]]]},{"k":24476,"v":[[0,8,["G208","G3588","G3056","G2316"]],[8,10,["G5216"]],[10,11,["G3862"]],[11,12,["G3739"]],[12,15,["G3860"]],[15,16,["G2532"]],[16,17,["G4183"]],[17,18,["G5108"]],[18,20,["G3946"]],[20,21,["G4160"]],[21,22,[]]]},{"k":24477,"v":[[0,1,["G2532"]],[1,5,["G4341"]],[5,6,["G3956"]],[6,7,["G3588"]],[7,8,["G3793"]],[8,12,["G3004"]],[12,14,["G846"]],[14,15,["G191"]],[15,17,["G3450"]],[17,19,["G3956"]],[19,22,["G2532"]],[22,23,["G4920"]]]},{"k":24478,"v":[[0,2,["G2076"]],[2,3,["G3762"]],[3,5,["G1855"]],[5,7,["G444"]],[7,8,["G3739"]],[8,9,["G1531"]],[9,10,["G1519"]],[10,11,["G846"]],[11,12,["G1410"]],[12,13,["G2840"]],[13,14,["G846"]],[14,15,["G235"]],[15,19,["G1607"]],[19,21,["G575"]],[21,22,["G846"]],[22,23,["G1565"]],[23,24,["G2076"]],[24,27,["G2840"]],[27,28,["G3588"]],[28,29,["G444"]]]},{"k":24479,"v":[[0,3,["G1536"]],[3,4,["G2192"]],[4,5,["G3775"]],[5,7,["G191"]],[7,10,["G191"]]]},{"k":24480,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G1525"]],[5,6,["G1519"]],[6,8,["G3624"]],[8,9,["G575"]],[9,10,["G3588"]],[10,11,["G3793"]],[11,12,["G846"]],[12,13,["G3101"]],[13,14,["G1905"]],[14,15,["G846"]],[15,16,["G4012"]],[16,17,["G3588"]],[17,18,["G3850"]]]},{"k":24481,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G2075"]],[6,7,["G5210"]],[7,8,["G3779"]],[8,10,["G801"]],[10,11,["G2532"]],[11,14,["G3756"]],[14,15,["G3539"]],[15,16,["G3754"]],[16,18,["G3956"]],[18,20,["G1855"]],[20,21,["G1531"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G444"]],[24,26,["G1410","G3756"]],[26,27,["G2840"]],[27,28,["G846"]]]},{"k":24482,"v":[[0,1,["G3754"]],[1,3,["G1531"]],[3,4,["G3756"]],[4,5,["G1519"]],[5,6,["G846"]],[6,7,["G2588"]],[7,8,["G235"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G2836"]],[11,12,["G2532"]],[12,14,["G1607"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G856"]],[17,18,["G2511"]],[18,19,["G3956"]],[19,20,["G1033"]]]},{"k":24483,"v":[[0,1,["G1161"]],[1,3,["G3004","(G3754)"]],[3,6,["G1607"]],[6,8,["G1537"]],[8,9,["G3588"]],[9,10,["G444"]],[10,11,["G1565"]],[11,12,["G2840"]],[12,13,["G3588"]],[13,14,["G444"]]]},{"k":24484,"v":[[0,1,["G1063"]],[1,3,["G2081"]],[3,5,["G1537"]],[5,6,["G3588"]],[6,7,["G2588"]],[7,9,["G444"]],[9,10,["G1607"]],[10,11,["G2556"]],[11,12,["G1261"]],[12,13,["G3430"]],[13,14,["G4202"]],[14,15,["G5408"]]]},{"k":24485,"v":[[0,1,["G2829"]],[1,2,["G4124"]],[2,3,["G4189"]],[3,4,["G1388"]],[4,5,["G766"]],[5,7,["G4190"]],[7,8,["G3788"]],[8,9,["G988"]],[9,10,["G5243"]],[10,11,["G877"]]]},{"k":24486,"v":[[0,1,["G3956"]],[1,2,["G5023"]],[2,4,["G4190"]],[4,5,["G1607"]],[5,7,["G2081"]],[7,8,["G2532"]],[8,9,["G2840"]],[9,10,["G3588"]],[10,11,["G444"]]]},{"k":24487,"v":[[0,1,["G2532"]],[1,3,["G1564"]],[3,5,["G450"]],[5,7,["G565"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G3181"]],[10,12,["G5184"]],[12,13,["G2532"]],[13,14,["G4605"]],[14,15,["G2532"]],[15,16,["G1525"]],[16,17,["G1519"]],[17,19,["G3614"]],[19,21,["G2309"]],[21,24,["G3762"]],[24,25,["G1097"]],[25,27,["G2532"]],[27,29,["G1410"]],[29,30,["G3756"]],[30,32,["G2990"]]]},{"k":24488,"v":[[0,1,["G1063"]],[1,4,["G1135"]],[4,5,["G3739"]],[5,7,["G2365"]],[7,8,["G2192"]],[8,10,["G169"]],[10,11,["G4151"]],[11,12,["G191"]],[12,13,["G4012"]],[13,14,["G846"]],[14,16,["G2064"]],[16,18,["G4363"]],[18,19,["G4314"]],[19,20,["G846"]],[20,21,["G4228"]]]},{"k":24489,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G1135"]],[2,3,["G2258"]],[3,5,["G1674"]],[5,7,["G4949"]],[7,9,["G1085"]],[9,10,["G2532"]],[10,12,["G2065"]],[12,13,["G846"]],[13,14,["G2443"]],[14,18,["G1544"]],[18,19,["G3588"]],[19,20,["G1140"]],[20,22,["G1537"]],[22,23,["G848"]],[23,24,["G2364"]]]},{"k":24490,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G863"]],[6,7,["G3588"]],[7,8,["G5043"]],[8,9,["G4412"]],[9,11,["G5526"]],[11,12,["G1063"]],[12,14,["G2076"]],[14,15,["G3756"]],[15,16,["G2570"]],[16,18,["G2983"]],[18,19,["G3588"]],[19,20,["G5043"]],[20,21,["G740"]],[21,22,["G2532"]],[22,24,["G906"]],[24,27,["G3588"]],[27,28,["G2952"]]]},{"k":24491,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,4,["G2532"]],[4,5,["G3004"]],[5,7,["G846"]],[7,8,["G3483"]],[8,9,["G2962"]],[9,10,["G1063","(G2532)"]],[10,11,["G3588"]],[11,12,["G2952"]],[12,13,["G5270"]],[13,14,["G3588"]],[14,15,["G5132"]],[15,16,["G2068"]],[16,17,["G575"]],[17,18,["G3588"]],[18,19,["G3813"]],[19,20,["G5589"]]]},{"k":24492,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G1223"]],[6,7,["G5126"]],[7,8,["G3056"]],[8,11,["G5217"]],[11,12,["G3588"]],[12,13,["G1140"]],[13,15,["G1831"]],[15,17,["G1537"]],[17,18,["G4675"]],[18,19,["G2364"]]]},{"k":24493,"v":[[0,1,["G2532"]],[1,5,["G565"]],[5,6,["G1519"]],[6,7,["G848"]],[7,8,["G3624"]],[8,10,["G2147"]],[10,11,["G3588"]],[11,12,["G1140"]],[12,14,["G1831"]],[14,15,["G2532"]],[15,17,["G2364"]],[17,18,["G906"]],[18,19,["G1909"]],[19,20,["G3588"]],[20,21,["G2825"]]]},{"k":24494,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,3,["G1831"]],[3,4,["G1537"]],[4,5,["G3588"]],[5,6,["G3725"]],[6,8,["G5184"]],[8,9,["G2532"]],[9,10,["G4605"]],[10,12,["G2064"]],[12,13,["G4314"]],[13,14,["G3588"]],[14,15,["G2281"]],[15,17,["G1056"]],[17,18,["G303"]],[18,20,["G3319"]],[20,22,["G3588"]],[22,23,["G3725"]],[23,25,["G1179"]]]},{"k":24495,"v":[[0,1,["G2532"]],[1,3,["G5342"]],[3,5,["G846"]],[5,9,["G2974"]],[9,16,["G3424"]],[16,17,["G2532"]],[17,19,["G3870"]],[19,20,["G846"]],[20,21,["G2443"]],[21,25,["G2007","G5495"]],[25,26,["G846"]]]},{"k":24496,"v":[[0,1,["G2532"]],[1,3,["G618"]],[3,4,["G846"]],[4,5,["G2596","G2398"]],[5,6,["G575"]],[6,7,["G3588"]],[7,8,["G3793"]],[8,10,["G906"]],[10,11,["G848"]],[11,12,["G1147"]],[12,13,["G1519"]],[13,14,["G846"]],[14,15,["G3775"]],[15,16,["G2532"]],[16,18,["G4429"]],[18,20,["G680"]],[20,21,["G846"]],[21,22,["G1100"]]]},{"k":24497,"v":[[0,1,["G2532"]],[1,3,["G308"]],[3,4,["G1519"]],[4,5,["G3772"]],[5,7,["G4727"]],[7,8,["G2532"]],[8,9,["G3004"]],[9,11,["G846"]],[11,12,["G2188"]],[12,14,["G3603"]],[14,16,["G1272"]]]},{"k":24498,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G846"]],[3,4,["G189"]],[4,6,["G1272"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G1199"]],[9,11,["G846"]],[11,12,["G1100"]],[12,14,["G3089"]],[14,15,["G2532"]],[15,17,["G2980"]],[17,18,["G3723"]]]},{"k":24499,"v":[[0,1,["G2532"]],[1,3,["G1291"]],[3,4,["G846"]],[4,5,["G2443"]],[5,8,["G2036"]],[8,10,["G3367"]],[10,11,["G1161"]],[11,13,["G3745"]],[13,14,["G846"]],[14,15,["G1291"]],[15,16,["G846"]],[16,20,["G3123"]],[20,23,["G4054"]],[23,25,["G2784"]],[25,26,[]]]},{"k":24500,"v":[[0,1,["G2532"]],[1,4,["G5249"]],[4,5,["G1605"]],[5,6,["G3004"]],[6,9,["G4160"]],[9,11,["G3956"]],[11,12,["G2573"]],[12,14,["G4160"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G2974"]],[17,19,["G191"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G216"]],[22,24,["G2980"]]]},{"k":24501,"v":[[0,1,["G1722"]],[1,2,["G1565"]],[2,3,["G2250"]],[3,5,["G3793"]],[5,6,["G5607"]],[6,8,["G3827"]],[8,9,["G2532"]],[9,10,["G2192"]],[10,11,["G3361","G5101"]],[11,13,["G5315"]],[13,14,["G2424"]],[14,15,["G4341"]],[15,16,["G848"]],[16,17,["G3101"]],[17,20,["G2532"]],[20,21,["G3004"]],[21,23,["G846"]]]},{"k":24502,"v":[[0,3,["G4697"]],[3,4,["G1909"]],[4,5,["G3588"]],[5,6,["G3793"]],[6,7,["G3754"]],[7,10,["G2235"]],[10,11,["G4357"]],[11,13,["G3427"]],[13,14,["G5140"]],[14,15,["G2250"]],[15,16,["G2532"]],[16,17,["G2192"]],[17,18,["G3756","G5101"]],[18,20,["G5315"]]]},{"k":24503,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,6,["G630","G846"]],[6,7,["G3523"]],[7,8,["G1519"]],[8,10,["G848"]],[10,11,["G3624"]],[11,14,["G1590"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G3598"]],[17,18,["G1063"]],[18,19,["G5100"]],[19,21,["G846"]],[21,22,["G2240"]],[22,24,["G3113"]]]},{"k":24504,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3101"]],[3,4,["G611"]],[4,5,["G846"]],[5,7,["G4159"]],[7,8,["G1410"]],[8,10,["G5100"]],[10,11,["G5526"]],[11,12,["G5128"]],[12,15,["G740"]],[15,16,["G5602"]],[16,17,["G1909"]],[17,19,["G2047"]]]},{"k":24505,"v":[[0,1,["G2532"]],[1,3,["G1905"]],[3,4,["G846"]],[4,6,["G4214"]],[6,7,["G740"]],[7,8,["G2192"]],[8,10,["G1161"]],[10,11,["G3588"]],[11,12,["G2036"]],[12,13,["G2033"]]]},{"k":24506,"v":[[0,1,["G2532"]],[1,3,["G3853"]],[3,4,["G3588"]],[4,5,["G3793"]],[5,8,["G377"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G1093"]],[11,12,["G2532"]],[12,14,["G2983"]],[14,15,["G3588"]],[15,16,["G2033"]],[16,17,["G740"]],[17,20,["G2168"]],[20,22,["G2806"]],[22,23,["G2532"]],[23,24,["G1325"]],[24,26,["G848"]],[26,27,["G3101"]],[27,28,["G2443"]],[28,30,["G3908"]],[30,32,["G2532"]],[32,37,["G3908"]],[37,38,["G3588"]],[38,39,["G3793"]]]},{"k":24507,"v":[[0,1,["G2532"]],[1,3,["G2192"]],[3,5,["G3641"]],[5,7,["G2485"]],[7,8,["G2532"]],[8,10,["G2127"]],[10,12,["G2036"]],[12,17,["G3908","G846","G2532"]],[17,18,[]]]},{"k":24508,"v":[[0,1,["G1161"]],[1,4,["G5315"]],[4,5,["G2532"]],[5,7,["G5526"]],[7,8,["G2532"]],[8,11,["G142"]],[11,14,["G2801"]],[14,18,["G4051"]],[18,19,["G2033"]],[19,20,["G4711"]]]},{"k":24509,"v":[[0,1,["G1161"]],[1,5,["G5315"]],[5,6,["G2258"]],[6,7,["G5613"]],[7,9,["G5070"]],[9,10,["G2532"]],[10,14,["G630","G846"]]]},{"k":24510,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G1684"]],[4,5,["G1519"]],[5,7,["G4143"]],[7,8,["G3326"]],[8,9,["G848"]],[9,10,["G3101"]],[10,12,["G2064"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G3313"]],[15,17,["G1148"]]]},{"k":24511,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,5,["G1831"]],[5,6,["G2532"]],[6,7,["G756"]],[7,10,["G4802"]],[10,11,["G846"]],[11,12,["G2212"]],[12,13,["G3844"]],[13,14,["G846"]],[14,16,["G4592"]],[16,17,["G575"]],[17,18,["G3772"]],[18,19,["G3985"]],[19,20,["G846"]]]},{"k":24512,"v":[[0,1,["G2532"]],[1,4,["G389"]],[4,6,["G848"]],[6,7,["G4151"]],[7,8,["G2532"]],[8,9,["G3004"]],[9,10,["G5101"]],[10,12,["G3778"]],[12,13,["G1074"]],[13,15,["G1934"]],[15,17,["G4592"]],[17,18,["G281"]],[18,20,["G3004"]],[20,22,["G5213"]],[22,23,["(G1487)"]],[23,26,["G4592"]],[26,28,["G1325"]],[28,30,["G5026"]],[30,31,["G1074"]]]},{"k":24513,"v":[[0,1,["G2532"]],[1,3,["G863"]],[3,4,["G846"]],[4,6,["G1684"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G4143"]],[9,10,["G3825"]],[10,11,["G565"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,15,["G4008"]]]},{"k":24514,"v":[[0,1,["G2532"]],[1,5,["G1950"]],[5,7,["G2983"]],[7,8,["G740"]],[8,9,["G3756"]],[9,10,["G2192"]],[10,12,["G1722"]],[12,13,["G3588"]],[13,14,["G4143"]],[14,15,["G3326"]],[15,16,["G1438"]],[16,18,["G1508"]],[18,19,["G1520"]],[19,20,["G740"]]]},{"k":24515,"v":[[0,1,["G2532"]],[1,3,["G1291"]],[3,4,["G846"]],[4,5,["G3004"]],[5,7,["G3708"]],[7,8,["G991"]],[8,9,["G575"]],[9,10,["G3588"]],[10,11,["G2219"]],[11,13,["G3588"]],[13,14,["G5330"]],[14,15,["G2532"]],[15,17,["G3588"]],[17,18,["G2219"]],[18,20,["G2264"]]]},{"k":24516,"v":[[0,1,["G2532"]],[1,3,["G1260"]],[3,5,["G4314","G240"]],[5,6,["G3004"]],[6,9,["G3754"]],[9,11,["G2192"]],[11,12,["G3756"]],[12,13,["G740"]]]},{"k":24517,"v":[[0,1,["G2532"]],[1,3,["G2424"]],[3,4,["G1097"]],[4,7,["G3004"]],[7,9,["G846"]],[9,10,["G5101"]],[10,11,["G1260"]],[11,13,["G3754"]],[13,15,["G2192"]],[15,16,["G3756"]],[16,17,["G740"]],[17,18,["G3539"]],[18,21,["G3768"]],[21,22,["G3761"]],[22,23,["G4920"]],[23,24,["G2192"]],[24,26,["G5216"]],[26,27,["G2588"]],[27,28,["G2089"]],[28,29,["G4456"]]]},{"k":24518,"v":[[0,1,["G2192"]],[1,2,["G3788"]],[2,3,["G991"]],[3,5,["G3756"]],[5,6,["G2532"]],[6,7,["G2192"]],[7,8,["G3775"]],[8,9,["G191"]],[9,11,["G3756"]],[11,12,["G2532"]],[12,15,["G3756"]],[15,16,["G3421"]]]},{"k":24519,"v":[[0,1,["G3753"]],[1,3,["G2806"]],[3,4,["G3588"]],[4,5,["G4002"]],[5,6,["G740"]],[6,7,["G1519"]],[7,9,["G4000"]],[9,11,["G4214"]],[11,12,["G2894"]],[12,13,["G4134"]],[13,15,["G2801"]],[15,18,["G142"]],[18,20,["G3004"]],[20,22,["G846"]],[22,23,["G1427"]]]},{"k":24520,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,3,["G3588"]],[3,4,["G2033"]],[4,5,["G1519"]],[5,7,["G5070"]],[7,9,["G4214"]],[9,10,["G4711"]],[10,11,["G4138"]],[11,13,["G2801"]],[13,16,["G142"]],[16,17,["G1161"]],[17,18,["G3588"]],[18,19,["G2036"]],[19,20,["G2033"]]]},{"k":24521,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G4459"]],[6,12,["G3756"]],[12,13,["G4920"]]]},{"k":24522,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G1519"]],[4,5,["G966"]],[5,6,["G2532"]],[6,8,["G5342"]],[8,11,["G5185"]],[11,13,["G846"]],[13,14,["G2532"]],[14,15,["G3870"]],[15,16,["G846"]],[16,17,["G2443"]],[17,18,["G680"]],[18,19,["G846"]]]},{"k":24523,"v":[[0,1,["G2532"]],[1,3,["G1949"]],[3,4,["G3588"]],[4,6,["G5185"]],[6,8,["G3588"]],[8,9,["G5495"]],[9,11,["G1806"]],[11,12,["G846"]],[12,13,["G1854"]],[13,15,["G3588"]],[15,16,["G2968"]],[16,17,["G2532"]],[17,21,["G4429"]],[21,22,["G1519"]],[22,23,["G846"]],[23,24,["G3659"]],[24,29,["G2007","G5495"]],[29,30,["G846"]],[30,32,["G1905"]],[32,33,["G846"]],[33,37,["G1536","G991"]]]},{"k":24524,"v":[[0,1,["G2532"]],[1,4,["G308"]],[4,6,["G3004"]],[6,8,["G991"]],[8,9,["G444"]],[9,10,["G5613"]],[10,11,["G1186"]],[11,12,["G4043"]]]},{"k":24525,"v":[[0,2,["G1534"]],[2,4,["G2007"]],[4,6,["G5495"]],[6,7,["G3825"]],[7,8,["G1909"]],[8,9,["G846"]],[9,10,["G3788"]],[10,11,["G2532"]],[11,12,["G4160"]],[12,13,["G846"]],[13,15,["G308"]],[15,16,["G2532"]],[16,19,["G600"]],[19,20,["G2532"]],[20,21,["G1689"]],[21,23,["G537"]],[23,24,["G5081"]]]},{"k":24526,"v":[[0,1,["G2532"]],[1,5,["G649","G846"]],[5,6,["G1519"]],[6,7,["G846"]],[7,8,["G3624"]],[8,9,["G3004"]],[9,10,["G3366"]],[10,11,["G1525"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G2968"]],[14,15,["G3366"]],[15,16,["G2036"]],[16,19,["G5100"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G2968"]]]},{"k":24527,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,4,["G1831"]],[4,5,["G2532"]],[5,6,["G846"]],[6,7,["G3101"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G2968"]],[10,12,["G2542"]],[12,13,["G5376"]],[13,14,["G2532"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G3598"]],[17,19,["G1905"]],[19,20,["G846"]],[20,21,["G3101"]],[21,22,["G3004"]],[22,24,["G846"]],[24,25,["G5101"]],[25,27,["G444"]],[27,28,["G3004"]],[28,30,["G3165"]],[30,31,["G1511"]]]},{"k":24528,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,4,["G2491"]],[4,5,["G3588"]],[5,6,["G910"]],[6,7,["G2532"]],[7,8,["G243"]],[8,10,["G2243"]],[10,11,["G1161"]],[11,12,["G243"]],[12,13,["G1520"]],[13,15,["G3588"]],[15,16,["G4396"]]]},{"k":24529,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G1161"]],[6,7,["G5101"]],[7,8,["G3004"]],[8,9,["G5210"]],[9,11,["G3165"]],[11,12,["G1511"]],[12,13,["G1161"]],[13,14,["G4074"]],[14,15,["G611"]],[15,17,["G3004"]],[17,19,["G846"]],[19,20,["G4771"]],[20,21,["G1488"]],[21,22,["G3588"]],[22,23,["G5547"]]]},{"k":24530,"v":[[0,1,["G2532"]],[1,3,["G2008"]],[3,4,["G846"]],[4,5,["G2443"]],[5,8,["G3004"]],[8,10,["G3367"]],[10,11,["G4012"]],[11,12,["G846"]]]},{"k":24531,"v":[[0,1,["G2532"]],[1,3,["G756"]],[3,5,["G1321"]],[5,6,["G846"]],[6,7,["G3754"]],[7,8,["G3588"]],[8,9,["G5207"]],[9,11,["G444"]],[11,12,["G1163"]],[12,13,["G3958"]],[13,15,["G4183"]],[15,16,["G2532"]],[16,18,["G593"]],[18,19,["G575"]],[19,20,["G3588"]],[20,21,["G4245"]],[21,22,["G2532"]],[22,26,["G749"]],[26,27,["G2532"]],[27,28,["G1122"]],[28,29,["G2532"]],[29,31,["G615"]],[31,32,["G2532"]],[32,33,["G3326"]],[33,34,["G5140"]],[34,35,["G2250"]],[35,37,["G450"]]]},{"k":24532,"v":[[0,1,["G2532"]],[1,3,["G2980"]],[3,5,["G3056"]],[5,6,["G3954"]],[6,7,["G2532"]],[7,8,["G4074"]],[8,9,["G4355"]],[9,10,["G846"]],[10,12,["G756"]],[12,14,["G2008"]],[14,15,["G846"]]]},{"k":24533,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,6,["G1994"]],[6,7,["G2532"]],[7,9,["G1492"]],[9,10,["G848"]],[10,11,["G3101"]],[11,13,["G2008"]],[13,14,["G4074"]],[14,15,["G3004"]],[15,16,["G5217"]],[16,18,["G3694"]],[18,19,["G3450"]],[19,20,["G4567"]],[20,21,["G3754"]],[21,23,["G5426"]],[23,24,["G3756"]],[24,26,["G3588"]],[26,30,["G2316"]],[30,31,["G235"]],[31,33,["G3588"]],[33,37,["G444"]]]},{"k":24534,"v":[[0,1,["G2532"]],[1,5,["G4341"]],[5,6,["G3588"]],[6,7,["G3793"]],[7,10,["G4862"]],[10,11,["G848"]],[11,12,["G3101"]],[12,15,["G2036"]],[15,17,["G846"]],[17,18,["G3748"]],[18,19,["G2309"]],[19,20,["G2064"]],[20,21,["G3694"]],[21,22,["G3450"]],[22,25,["G533"]],[25,26,["G1438"]],[26,27,["G2532"]],[27,29,["G142"]],[29,30,["G846"]],[30,31,["G4716"]],[31,32,["G2532"]],[32,33,["G190"]],[33,34,["G3427"]]]},{"k":24535,"v":[[0,1,["G1063"]],[1,2,["G3739","G302"]],[2,3,["G2309"]],[3,4,["G4982"]],[4,5,["G848"]],[5,6,["G5590"]],[6,8,["G622"]],[8,9,["G846"]],[9,10,["G1161"]],[10,11,["G3739","G302"]],[11,13,["G622"]],[13,14,["G848"]],[14,15,["G5590"]],[15,18,["G1752","G1700"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G2098"]],[21,23,["G3778"]],[23,25,["G4982"]],[25,26,["G846"]]]},{"k":24536,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,5,["G5623"]],[5,7,["G444"]],[7,8,["G1437"]],[8,11,["G2770"]],[11,12,["G3588"]],[12,13,["G3650"]],[13,14,["G2889"]],[14,15,["G2532"]],[15,16,["G2210"]],[16,18,["G848"]],[18,19,["G5590"]]]},{"k":24537,"v":[[0,1,["G2228"]],[1,2,["G5101"]],[2,5,["G444"]],[5,6,["G1325"]],[6,8,["G465"]],[8,10,["G848"]],[10,11,["G5590"]]]},{"k":24538,"v":[[0,1,["G3739","G302"]],[1,2,["G1063"]],[2,5,["G1870"]],[5,7,["G3165"]],[7,8,["G2532"]],[8,10,["G1699"]],[10,11,["G3056"]],[11,12,["G1722"]],[12,13,["G5026"]],[13,14,["G3428"]],[14,15,["G2532"]],[15,16,["G268"]],[16,17,["G1074"]],[17,19,["G846"]],[19,20,["G2532"]],[20,22,["G3588"]],[22,23,["G5207"]],[23,25,["G444"]],[25,27,["G1870"]],[27,28,["G3752"]],[28,30,["G2064"]],[30,31,["G1722"]],[31,32,["G3588"]],[32,33,["G1391"]],[33,35,["G848"]],[35,36,["G3962"]],[36,37,["G3326"]],[37,38,["G3588"]],[38,39,["G40"]],[39,40,["G32"]]]},{"k":24539,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G281"]],[6,8,["G3004"]],[8,10,["G5213"]],[10,11,["G3754"]],[11,13,["G1526"]],[13,14,["G5100"]],[14,18,["G2476"]],[18,19,["G5602"]],[19,20,["G3748"]],[20,22,["G3364"]],[22,23,["G1089"]],[23,25,["G2288"]],[25,26,["G2193","G302"]],[26,29,["G1492"]],[29,30,["G3588"]],[30,31,["G932"]],[31,33,["G2316"]],[33,34,["G2064"]],[34,35,["G1722"]],[35,36,["G1411"]]]},{"k":24540,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,3,["G1803"]],[3,4,["G2250"]],[4,5,["G2424"]],[5,6,["G3880"]],[6,9,["G4074"]],[9,10,["G2532"]],[10,11,["G2385"]],[11,12,["G2532"]],[12,13,["G2491"]],[13,14,["G2532"]],[14,17,["G399","G846"]],[17,18,["G1519"]],[18,20,["G5308"]],[20,21,["G3735"]],[21,24,["G2596","G2398","G3441"]],[24,25,["G2532"]],[25,28,["G3339"]],[28,29,["G1715"]],[29,30,["G846"]]]},{"k":24541,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G2440"]],[3,4,["G1096"]],[4,5,["G4744"]],[5,6,["G3029"]],[6,7,["G3022"]],[7,8,["G5613"]],[8,9,["G5510"]],[9,11,["G3634"]],[11,12,["G3756"]],[12,13,["G1102"]],[13,14,["G1909"]],[14,15,["G1093"]],[15,16,["G1410"]],[16,17,["G3021"]],[17,18,[]]]},{"k":24542,"v":[[0,1,["G2532"]],[1,3,["G3700"]],[3,5,["G846"]],[5,6,["G2243"]],[6,7,["G4862"]],[7,8,["G3475"]],[8,9,["G2532"]],[9,11,["G2258"]],[11,13,["G4814"]],[13,14,["G2424"]]]},{"k":24543,"v":[[0,1,["G2532"]],[1,2,["G4074"]],[2,3,["G611"]],[3,5,["G3004"]],[5,7,["G2424"]],[7,8,["G4461"]],[8,10,["G2076"]],[10,11,["G2570"]],[11,13,["G2248"]],[13,15,["G1511"]],[15,16,["G5602"]],[16,17,["G2532"]],[17,20,["G4160"]],[20,21,["G5140"]],[21,22,["G4633"]],[22,23,["G3391"]],[23,25,["G4671"]],[25,26,["G2532"]],[26,27,["G3391"]],[27,29,["G3475"]],[29,30,["G2532"]],[30,31,["G3391"]],[31,33,["G2243"]]]},{"k":24544,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,4,["G3756"]],[4,5,["G5101"]],[5,7,["G2980"]],[7,8,["G1063"]],[8,10,["G2258"]],[10,12,["G1630"]]]},{"k":24545,"v":[[0,1,["G2532"]],[1,3,["G1096"]],[3,5,["G3507"]],[5,7,["G1982"]],[7,8,["G846"]],[8,9,["G2532"]],[9,11,["G5456"]],[11,12,["G2064"]],[12,14,["G1537"]],[14,15,["G3588"]],[15,16,["G3507"]],[16,17,["G3004"]],[17,18,["G3778"]],[18,19,["G2076"]],[19,20,["G3450"]],[20,21,["G27"]],[21,22,["G5207"]],[22,23,["G191"]],[23,24,["G846"]]]},{"k":24546,"v":[[0,1,["G2532"]],[1,2,["G1819"]],[2,8,["G4017"]],[8,10,["G1492"]],[10,12,["G3762"]],[12,14,["G3765"]],[14,15,["G235"]],[15,16,["G2424"]],[16,17,["G3440"]],[17,18,["G3326"]],[18,19,["G1438"]]]},{"k":24547,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G2597"]],[5,6,["G575"]],[6,7,["G3588"]],[7,8,["G3735"]],[8,10,["G1291"]],[10,11,["G846"]],[11,12,["G2443"]],[12,15,["G1334"]],[15,17,["G3367"]],[17,19,["G3739"]],[19,22,["G1492"]],[22,23,["G1508","G3752"]],[23,24,["G3588"]],[24,25,["G5207"]],[25,27,["G444"]],[27,29,["G450"]],[29,30,["G1537"]],[30,32,["G3498"]]]},{"k":24548,"v":[[0,1,["G2532"]],[1,3,["G2902"]],[3,5,["G3056"]],[5,6,["G4314"]],[6,7,["G1438"]],[7,11,["G4802"]],[11,12,["G5101"]],[12,13,["G3588"]],[13,14,["G450"]],[14,15,["G1537"]],[15,17,["G3498"]],[17,19,["G2076"]]]},{"k":24549,"v":[[0,1,["G2532"]],[1,3,["G1905"]],[3,4,["G846"]],[4,5,["G3004"]],[5,7,["G3004"]],[7,8,["G3588"]],[8,9,["G1122"]],[9,10,["G3754"]],[10,11,["G2243"]],[11,12,["G1163"]],[12,13,["G4412"]],[13,14,["G2064"]]]},{"k":24550,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,6,["G846"]],[6,7,["G2243"]],[7,8,["G3303"]],[8,9,["G2064"]],[9,10,["G4412"]],[10,12,["G600"]],[12,14,["G3956"]],[14,15,["G2532"]],[15,16,["G4459"]],[16,19,["G1125"]],[19,20,["G1909"]],[20,21,["G3588"]],[21,22,["G5207"]],[22,24,["G444"]],[24,25,["G2443"]],[25,28,["G3958"]],[28,30,["G4183"]],[30,31,["G2532"]],[31,35,["G1847"]]]},{"k":24551,"v":[[0,1,["G235"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G2243"]],[7,9,["G2532"]],[9,10,["G2064"]],[10,11,["G2532"]],[11,14,["G4160"]],[14,16,["G846"]],[16,17,["G3745"]],[17,19,["G2309"]],[19,20,["G2531"]],[20,23,["G1125"]],[23,24,["G1909"]],[24,25,["G846"]]]},{"k":24552,"v":[[0,1,["G2532"]],[1,4,["G2064"]],[4,5,["G4314"]],[5,7,["G3101"]],[7,9,["G1492"]],[9,11,["G4183"]],[11,12,["G3793"]],[12,13,["G4012"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G1122"]],[17,18,["G4802"]],[18,20,["G846"]]]},{"k":24553,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G3956"]],[3,4,["G3588"]],[4,5,["G3793"]],[5,8,["G1492"]],[8,9,["G846"]],[9,12,["G1568"]],[12,13,["G2532"]],[13,16,["G4370"]],[16,17,["G782"]],[17,18,["G846"]]]},{"k":24554,"v":[[0,1,["G2532"]],[1,3,["G1905"]],[3,4,["G3588"]],[4,5,["G1122"]],[5,6,["G5101"]],[6,7,["G4802"]],[7,9,["G4314"]],[9,10,["G846"]]]},{"k":24555,"v":[[0,1,["G2532"]],[1,2,["G1520"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G3793"]],[5,6,["G611"]],[6,8,["G2036"]],[8,9,["G1320"]],[9,12,["G5342"]],[12,13,["G4314"]],[13,14,["G4571"]],[14,15,["G3450"]],[15,16,["G5207"]],[16,18,["G2192"]],[18,20,["G216"]],[20,21,["G4151"]]]},{"k":24556,"v":[[0,1,["G2532"]],[1,2,["G3699","G302"]],[2,4,["G2638"]],[4,5,["G846"]],[5,7,["G4486"]],[7,8,["G846"]],[8,9,["G2532"]],[9,11,["G875"]],[11,12,["G2532"]],[12,13,["G5149"]],[13,15,["G848"]],[15,16,["G3599"]],[16,17,["G2532"]],[17,19,["G3583"]],[19,20,["G2532"]],[20,22,["G2036"]],[22,24,["G4675"]],[24,25,["G3101"]],[25,26,["G2443"]],[26,31,["G1544","G846"]],[31,32,["G2532"]],[32,34,["G2480"]],[34,35,["G3756"]]]},{"k":24557,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G611"]],[2,3,["G846"]],[3,5,["G3004"]],[5,6,["G5599"]],[6,7,["G571"]],[7,8,["G1074"]],[8,10,["G2193","G4219"]],[10,13,["G2071"]],[13,14,["G4314"]],[14,15,["G5209"]],[15,17,["G2193","G4219"]],[17,20,["G430"]],[20,21,["G5216"]],[21,22,["G5342"]],[22,23,["G846"]],[23,24,["G4314"]],[24,25,["G3165"]]]},{"k":24558,"v":[[0,1,["G2532"]],[1,3,["G5342"]],[3,4,["G846"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G2532"]],[7,10,["G1492"]],[10,11,["G846"]],[11,12,["G2112"]],[12,13,["G3588"]],[13,14,["G4151"]],[14,15,["G4682"]],[15,16,["G846"]],[16,19,["G4098"]],[19,20,["G1909"]],[20,21,["G3588"]],[21,22,["G1093"]],[22,23,["G2532"]],[23,24,["G2947"]],[24,25,["G875"]]]},{"k":24559,"v":[[0,1,["G2532"]],[1,3,["G1905"]],[3,4,["G846"]],[4,5,["G3962"]],[5,10,["G4214","G5550","G2076"]],[10,11,["G5613"]],[11,12,["G5124"]],[12,13,["G1096"]],[13,15,["G846"]],[15,16,["G1161"]],[16,17,["G3588"]],[17,18,["G2036"]],[18,21,["G3812"]]]},{"k":24560,"v":[[0,1,["G2532"]],[1,2,["G4178"]],[2,5,["G906"]],[5,6,["G846","(G2532)"]],[6,7,["G1519"]],[7,9,["G4442"]],[9,10,["G2532"]],[10,11,["G1519"]],[11,13,["G5204"]],[13,14,["G2443"]],[14,15,["G622"]],[15,16,["G846"]],[16,17,["G235"]],[17,23,["G1536","G1410"]],[23,25,["G4697"]],[25,26,["G1909"]],[26,27,["G2248"]],[27,29,["G997"]],[29,30,["G2254"]]]},{"k":24561,"v":[[0,0,["(G1161)"]],[0,1,["G2424"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G1487"]],[5,7,["G1410"]],[7,8,["G4100"]],[8,10,["G3956"]],[10,12,["G1415"]],[12,16,["G4100"]]]},{"k":24562,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G3588"]],[3,4,["G3962"]],[4,6,["G3588"]],[6,7,["G3813"]],[7,9,["G2896"]],[9,11,["G3004"]],[11,12,["G3326"]],[12,13,["G1144"]],[13,14,["G2962"]],[14,16,["G4100"]],[16,17,["G997"]],[17,19,["G3450"]],[19,20,["G570"]]]},{"k":24563,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G1492"]],[3,4,["G3754"]],[4,6,["G3793"]],[6,9,["G1998"]],[9,11,["G2008"]],[11,12,["G3588"]],[12,13,["G169"]],[13,14,["G4151"]],[14,15,["G3004"]],[15,17,["G846"]],[17,19,["G216"]],[19,20,["G2532"]],[20,21,["G2974"]],[21,22,["G4151"]],[22,23,["G1473"]],[23,24,["G2004"]],[24,25,["G4671"]],[25,26,["G1831"]],[26,28,["G1537"]],[28,29,["G846"]],[29,30,["G2532"]],[30,31,["G1525"]],[31,33,["G3371"]],[33,34,["G1519"]],[34,35,["G846"]]]},{"k":24564,"v":[[0,1,["G2532"]],[1,4,["G2896"]],[4,5,["G2532"]],[5,6,["G4682"]],[6,7,["G846"]],[7,8,["G4183"]],[8,11,["G1831"]],[11,14,["G2532"]],[14,16,["G1096"]],[16,17,["G5616"]],[17,19,["G3498"]],[19,21,["G5620"]],[21,22,["G4183"]],[22,23,["G3004"]],[23,26,["G599"]]]},{"k":24565,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2902"]],[3,4,["G846"]],[4,6,["G3588"]],[6,7,["G5495"]],[7,11,["G1453","G846"]],[11,12,["G2532"]],[12,14,["G450"]]]},{"k":24566,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G1525"]],[5,6,["G1519"]],[6,8,["G3624"]],[8,9,["G846"]],[9,10,["G3101"]],[10,11,["G1905"]],[11,12,["G846"]],[12,13,["G2596","G2398"]],[13,14,["G3754"]],[14,15,["G1410"]],[15,16,["G3756"]],[16,17,["G2249"]],[17,20,["G1544","G846"]]]},{"k":24567,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G5124"]],[6,7,["G1085"]],[7,8,["G1410"]],[8,10,["G1831"]],[10,11,["G1722"]],[11,12,["G3762"]],[12,13,["G1508"]],[13,14,["G1722"]],[14,15,["G4335"]],[15,16,["G2532"]],[16,17,["G3521"]]]},{"k":24568,"v":[[0,1,["G2532"]],[1,3,["G1831"]],[3,4,["G1564"]],[4,6,["G3899"]],[6,7,["G1223"]],[7,8,["G1056"]],[8,9,["G2532"]],[9,11,["G2309"]],[11,12,["G3756"]],[12,13,["G2443"]],[13,15,["G5100"]],[15,17,["G1097"]],[17,18,[]]]},{"k":24569,"v":[[0,1,["G1063"]],[1,3,["G1321"]],[3,4,["G848"]],[4,5,["G3101"]],[5,6,["G2532"]],[6,7,["G3004"]],[7,9,["G846"]],[9,10,["G3588"]],[10,11,["G5207"]],[11,13,["G444"]],[13,15,["G3860"]],[15,16,["G1519"]],[16,18,["G5495"]],[18,20,["G444"]],[20,21,["G2532"]],[21,24,["G615"]],[24,25,["G846"]],[25,26,["G2532"]],[26,31,["G615"]],[31,34,["G450"]],[34,35,["G3588"]],[35,36,["G5154"]],[36,37,["G2250"]]]},{"k":24570,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G50"]],[3,6,["G4487"]],[6,7,["G2532"]],[7,9,["G5399"]],[9,11,["G1905"]],[11,12,["G846"]]]},{"k":24571,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G1519"]],[4,5,["G2584"]],[5,6,["G2532"]],[6,7,["G1096"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G3614"]],[10,12,["G1905"]],[12,13,["G846"]],[13,14,["G5101"]],[14,19,["G1260"]],[19,20,["G4314"]],[20,21,["G1438"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G3598"]]]},{"k":24572,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,5,["G4623"]],[5,6,["G1063"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G3598"]],[9,12,["G1256"]],[12,13,["G4314"]],[13,14,["G240"]],[14,15,["G5101"]],[15,19,["G3187"]]]},{"k":24573,"v":[[0,1,["G2532"]],[1,4,["G2523"]],[4,6,["G5455"]],[6,7,["G3588"]],[7,8,["G1427"]],[8,9,["G2532"]],[9,10,["G3004"]],[10,12,["G846"]],[12,15,["G1536"]],[15,16,["G2309"]],[16,18,["G1511"]],[18,19,["G4413"]],[19,23,["G2071"]],[23,24,["G2078"]],[24,26,["G3956"]],[26,27,["G2532"]],[27,28,["G1249"]],[28,30,["G3956"]]]},{"k":24574,"v":[[0,1,["G2532"]],[1,3,["G2983"]],[3,5,["G3813"]],[5,7,["G2476"]],[7,8,["G846"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G3319"]],[11,13,["G846"]],[13,14,["G2532"]],[14,22,["G1723","G846"]],[22,24,["G2036"]],[24,26,["G846"]]]},{"k":24575,"v":[[0,1,["G3739","G1437"]],[1,3,["G1209"]],[3,4,["G1520"]],[4,6,["G5108"]],[6,7,["G3813"]],[7,8,["G1909"]],[8,9,["G3450"]],[9,10,["G3686"]],[10,11,["G1209"]],[11,12,["G1691"]],[12,13,["G2532"]],[13,14,["G3739","G1437"]],[14,16,["G1209"]],[16,17,["G1691"]],[17,18,["G1209"]],[18,19,["G3756"]],[19,20,["G1691"]],[20,21,["G235"]],[21,24,["G649"]],[24,25,["G3165"]]]},{"k":24576,"v":[[0,1,["G1161"]],[1,2,["G2491"]],[2,3,["G611"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G1320"]],[6,8,["G1492"]],[8,9,["G5100"]],[9,11,["G1544"]],[11,12,["G1140"]],[12,13,["G1722"]],[13,14,["G4675"]],[14,15,["G3686"]],[15,17,["G3739"]],[17,18,["G190"]],[18,19,["G3756"]],[19,20,["G2254"]],[20,21,["G2532"]],[21,23,["G2967"]],[23,24,["G846"]],[24,25,["G3754"]],[25,27,["G190"]],[27,28,["G3756"]],[28,29,["G2254"]]]},{"k":24577,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G2967"]],[4,5,["G846"]],[5,6,["G3361"]],[6,7,["G1063"]],[7,9,["G2076"]],[9,11,["G3762"]],[11,12,["G3739"]],[12,14,["G4160"]],[14,16,["G1411"]],[16,17,["G1909"]],[17,18,["G3450"]],[18,19,["G3686"]],[19,20,["G2532"]],[20,21,["G1410"]],[21,22,["G5035"]],[22,24,["G2551"]],[24,26,["G3165"]]]},{"k":24578,"v":[[0,1,["G1063"]],[1,2,["G3739"]],[2,4,["G2076"]],[4,5,["G3756"]],[5,6,["G2596"]],[6,7,["G5216"]],[7,8,["G2076"]],[8,11,["G5228","G5216"]]]},{"k":24579,"v":[[0,1,["G1063"]],[1,2,["G3739","G302"]],[2,11,["G4222","G5209","G4221","G5204"]],[11,12,["G1722"]],[12,13,["G3450"]],[13,14,["G3686"]],[14,15,["G3754"]],[15,18,["G2075"]],[18,19,["G5547"]],[19,20,["G281"]],[20,22,["G3004"]],[22,24,["G5213"]],[24,27,["G3364"]],[27,28,["G622"]],[28,29,["G848"]],[29,30,["G3408"]]]},{"k":24580,"v":[[0,1,["G2532"]],[1,2,["G3739","G302"]],[2,4,["G4624"]],[4,5,["G1520"]],[5,9,["G3398"]],[9,11,["G4100"]],[11,12,["G1519"]],[12,13,["G1691"]],[13,15,["G2076"]],[15,16,["G2570","G3123"]],[16,18,["G846"]],[18,19,["G1487"]],[19,21,["G3037","G3457"]],[21,23,["G4029"]],[23,24,["G4012"]],[24,25,["G846"]],[25,26,["G5137"]],[26,27,["G2532"]],[27,30,["G906"]],[30,31,["G1519"]],[31,32,["G3588"]],[32,33,["G2281"]]]},{"k":24581,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,3,["G4675"]],[3,4,["G5495"]],[4,5,["G4624"]],[5,6,["G4571"]],[6,9,["G609","G846"]],[9,11,["G2076"]],[11,12,["G2570"]],[12,14,["G4671"]],[14,16,["G1525"]],[16,17,["G1519"]],[17,18,["G2222"]],[18,19,["G2948"]],[19,20,["G2228"]],[20,21,["G2192"]],[21,22,["G1417"]],[22,23,["G5495"]],[23,25,["G565"]],[25,26,["G1519"]],[26,27,["G1067"]],[27,28,["G1519"]],[28,29,["G3588"]],[29,30,["G4442"]],[30,35,["G762"]]]},{"k":24582,"v":[[0,1,["G3699"]],[1,2,["G846"]],[2,3,["G4663"]],[3,4,["G5053"]],[4,5,["G3756"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G4442"]],[8,10,["G3756"]],[10,11,["G4570"]]]},{"k":24583,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,3,["G4675"]],[3,4,["G4228"]],[4,5,["G4624"]],[5,6,["G4571"]],[6,9,["G609","G846"]],[9,11,["G2076"]],[11,12,["G2570"]],[12,14,["G4671"]],[14,16,["G1525"]],[16,17,["G5560"]],[17,18,["G1519"]],[18,19,["G2222"]],[19,20,["G2228"]],[20,21,["G2192"]],[21,22,["G1417"]],[22,23,["G4228"]],[23,26,["G906"]],[26,27,["G1519"]],[27,28,["G1067"]],[28,29,["G1519"]],[29,30,["G3588"]],[30,31,["G4442"]],[31,36,["G762"]]]},{"k":24584,"v":[[0,1,["G3699"]],[1,2,["G846"]],[2,3,["G4663"]],[3,4,["G5053"]],[4,5,["G3756"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G4442"]],[8,10,["G3756"]],[10,11,["G4570"]]]},{"k":24585,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,3,["G4675"]],[3,4,["G3788"]],[4,5,["G4624"]],[5,6,["G4571"]],[6,9,["G1544","G846"]],[9,11,["G2076"]],[11,12,["G2570"]],[12,14,["G4671"]],[14,16,["G1525"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,19,["G932"]],[19,21,["G2316"]],[21,24,["G3442"]],[24,25,["G2228"]],[25,26,["G2192"]],[26,27,["G1417"]],[27,28,["G3788"]],[28,31,["G906"]],[31,32,["G1519"]],[32,33,["G1067"]],[33,34,["G4442"]]]},{"k":24586,"v":[[0,1,["G3699"]],[1,2,["G846"]],[2,3,["G4663"]],[3,4,["G5053"]],[4,5,["G3756"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G4442"]],[8,10,["G3756"]],[10,11,["G4570"]]]},{"k":24587,"v":[[0,1,["G1063"]],[1,3,["G3956"]],[3,6,["G233"]],[6,8,["G4442"]],[8,9,["G2532"]],[9,10,["G3956"]],[10,11,["G2378"]],[11,14,["G233"]],[14,16,["G251"]]]},{"k":24588,"v":[[0,1,["G217"]],[1,3,["G2570"]],[3,4,["G1161"]],[4,5,["G1437"]],[5,6,["G3588"]],[6,7,["G217"]],[7,11,["G1096","G358"]],[11,12,["G1722","G5101"]],[12,15,["G741"]],[15,16,["G846"]],[16,17,["G2192"]],[17,18,["G217"]],[18,19,["G1722"]],[19,20,["G1438"]],[20,21,["G2532"]],[21,23,["G1514"]],[23,26,["G240","G1722"]]]},{"k":24589,"v":[[0,5,["G2547","G450"]],[5,7,["G2064"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G3725"]],[10,12,["G2449"]],[12,13,["G1223"]],[13,14,["G3588"]],[14,16,["G4008"]],[16,18,["G2446"]],[18,19,["G2532"]],[19,21,["G3793"]],[21,22,["G4848"]],[22,23,["G4314"]],[23,24,["G846"]],[24,25,["G3825"]],[25,26,["G2532"]],[26,27,["G5613"]],[27,30,["G1486"]],[30,32,["G1321"]],[32,33,["G846"]],[33,34,["G3825"]]]},{"k":24590,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,5,["G4334"]],[5,8,["G1905"]],[8,9,["G846","(G1487)"]],[9,12,["G1832"]],[12,15,["G435"]],[15,18,["G630"]],[18,20,["G1135"]],[20,21,["G3985"]],[21,22,["G846"]]]},{"k":24591,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G5101"]],[8,10,["G3475"]],[10,11,["G1781"]],[11,12,["G5213"]]]},{"k":24592,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G3475"]],[4,5,["G2010"]],[5,7,["G1125"]],[7,9,["G975"]],[9,11,["G647"]],[11,12,["G2532"]],[12,16,["G630"]]]},{"k":24593,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,13,["G4641","G5216"]],[13,15,["G1125"]],[15,16,["G5213"]],[16,17,["G5026"]],[17,18,["G1785"]]]},{"k":24594,"v":[[0,1,["G1161"]],[1,2,["G575"]],[2,4,["G746"]],[4,7,["G2937"]],[7,8,["G2316"]],[8,9,["G4160"]],[9,10,["G846"]],[10,11,["G730"]],[11,12,["G2532"]],[12,13,["G2338"]]]},{"k":24595,"v":[[0,3,["G1752","G5127"]],[3,6,["G444"]],[6,7,["G2641"]],[7,8,["G848"]],[8,9,["G3962"]],[9,10,["G2532"]],[10,11,["G3384"]],[11,12,["G2532"]],[12,13,["G4347"]],[13,14,["G4314"]],[14,15,["G848"]],[15,16,["G1135"]]]},{"k":24596,"v":[[0,1,["G2532"]],[1,3,["G1417"]],[3,5,["G2071"]],[5,6,["G3391"]],[6,7,["G4561"]],[7,9,["G5620"]],[9,11,["G1526"]],[11,13,["G3765"]],[13,14,["G1417"]],[14,15,["G235"]],[15,16,["G3391"]],[16,17,["G4561"]]]},{"k":24597,"v":[[0,1,["G3739"]],[1,2,["G3767"]],[2,3,["G2316"]],[3,6,["G4801"]],[6,8,["G3361"]],[8,9,["G444"]],[9,11,["G5563"]]]},{"k":24598,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G3614"]],[4,5,["G846"]],[5,6,["G3101"]],[6,7,["G1905"]],[7,8,["G846"]],[8,9,["G3825"]],[9,10,["G4012"]],[10,12,["G846"]],[12,13,[]]]},{"k":24599,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G3739","G1437"]],[6,9,["G630"]],[9,10,["G848"]],[10,11,["G1135"]],[11,12,["G2532"]],[12,13,["G1060"]],[13,14,["G243"]],[14,16,["G3429"]],[16,17,["G1909"]],[17,18,["G846"]]]},{"k":24600,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G1135"]],[4,7,["G630"]],[7,8,["G848"]],[8,9,["G435"]],[9,10,["G2532"]],[10,12,["G1060"]],[12,14,["G243"]],[14,17,["G3429"]]]},{"k":24601,"v":[[0,1,["G2532"]],[1,3,["G4374"]],[3,5,["G3813"]],[5,7,["G846"]],[7,8,["G2443"]],[8,11,["G680"]],[11,12,["G846"]],[12,13,["G1161"]],[13,15,["G3101"]],[15,16,["G2008"]],[16,19,["G4374"]],[19,20,[]]]},{"k":24602,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,4,["G1492"]],[4,9,["G23"]],[9,10,["G2532"]],[10,11,["G2036"]],[11,13,["G846"]],[13,14,["G863"]],[14,15,["G3588"]],[15,17,["G3813"]],[17,19,["G2064"]],[19,20,["G4314"]],[20,21,["G3165"]],[21,22,["G2532"]],[22,23,["G2967"]],[23,24,["G846"]],[24,25,["G3361"]],[25,26,["G1063"]],[26,28,["G5108"]],[28,29,["G2076"]],[29,30,["G3588"]],[30,31,["G932"]],[31,33,["G2316"]]]},{"k":24603,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3739","G1437"]],[6,8,["G3361"]],[8,9,["G1209"]],[9,10,["G3588"]],[10,11,["G932"]],[11,13,["G2316"]],[13,14,["G5613"]],[14,17,["G3813"]],[17,20,["G3364"]],[20,21,["G1525"]],[21,22,["G1519","G846"]]]},{"k":24604,"v":[[0,1,["G2532"]],[1,8,["G1723","G846"]],[8,9,["G5087"]],[9,11,["G5495"]],[11,12,["G1909"]],[12,13,["G846"]],[13,15,["G2127"]],[15,16,["G846"]]]},{"k":24605,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,6,["G1607"]],[6,7,["G1519"]],[7,9,["G3598"]],[9,12,["G1520"]],[12,13,["G4370"]],[13,14,["G2532"]],[14,15,["G1120"]],[15,17,["G846"]],[17,19,["G1905"]],[19,20,["G846"]],[20,21,["G18"]],[21,22,["G1320"]],[22,23,["G5101"]],[23,26,["G4160"]],[26,27,["G2443"]],[27,30,["G2816"]],[30,31,["G166"]],[31,32,["G2222"]]]},{"k":24606,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G5101"]],[6,7,["G3004"]],[7,9,["G3165"]],[9,10,["G18"]],[10,13,["G3762"]],[13,14,["G18"]],[14,15,["G1508"]],[15,16,["G1520"]],[16,19,["G2316"]]]},{"k":24607,"v":[[0,2,["G1492"]],[2,3,["G3588"]],[3,4,["G1785"]],[4,6,["G3361"]],[6,8,["G3431"]],[8,10,["G3361"]],[10,11,["G5407"]],[11,13,["G3361"]],[13,14,["G2813"]],[14,16,["G3361"]],[16,19,["G5576"]],[19,20,["G650"]],[20,21,["G3361"]],[21,22,["G5091"]],[22,23,["G4675"]],[23,24,["G3962"]],[24,25,["G2532"]],[25,26,["G3384"]]]},{"k":24608,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G1320"]],[8,9,["G3956"]],[9,10,["G5023"]],[10,13,["G5442"]],[13,14,["G1537"]],[14,15,["G3450"]],[15,16,["G3503"]]]},{"k":24609,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G1689"]],[3,4,["G846"]],[4,5,["G25"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G2036"]],[8,10,["G846"]],[10,12,["G1520"]],[12,13,["G4671"]],[13,14,["G5302"]],[14,17,["G5217"]],[17,18,["G4453"]],[18,19,["G3745"]],[19,21,["G2192"]],[21,22,["G2532"]],[22,23,["G1325"]],[23,25,["G3588"]],[25,26,["G4434"]],[26,27,["G2532"]],[27,30,["G2192"]],[30,31,["G2344"]],[31,32,["G1722"]],[32,33,["G3772"]],[33,34,["G2532"]],[34,35,["G1204"]],[35,37,["G142"]],[37,38,["G3588"]],[38,39,["G4716"]],[39,41,["G190"]],[41,42,["G3427"]]]},{"k":24610,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G4768"]],[4,5,["G1909"]],[5,7,["G3056"]],[7,10,["G565"]],[10,11,["G3076"]],[11,12,["G1063"]],[12,14,["G2258","G2192"]],[14,15,["G4183"]],[15,16,["G2933"]]]},{"k":24611,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,5,["G4017"]],[5,7,["G3004"]],[7,9,["G848"]],[9,10,["G3101"]],[10,11,["G4459"]],[11,12,["G1423"]],[12,16,["G2192"]],[16,17,["G5536"]],[17,18,["G1525"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G932"]],[21,23,["G2316"]]]},{"k":24612,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,5,["G2284"]],[5,6,["G1909"]],[6,7,["G846"]],[7,8,["G3056"]],[8,9,["G1161"]],[9,10,["G2424"]],[10,11,["G611"]],[11,12,["G3825"]],[12,14,["G3004"]],[14,16,["G846"]],[16,17,["G5043"]],[17,18,["G4459"]],[18,19,["G1422"]],[19,20,["G2076"]],[20,25,["G3982"]],[25,26,["G1909"]],[26,27,["G5536"]],[27,29,["G1525"]],[29,30,["G1519"]],[30,31,["G3588"]],[31,32,["G932"]],[32,34,["G2316"]]]},{"k":24613,"v":[[0,2,["G2076"]],[2,3,["G2123"]],[3,6,["G2574"]],[6,8,["G1525"]],[8,9,["G1223"]],[9,10,["G3588"]],[10,11,["G5168"]],[11,14,["G4476"]],[14,15,["G2228"]],[15,19,["G4145"]],[19,21,["G1525"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G932"]],[24,26,["G2316"]]]},{"k":24614,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G1605"]],[4,7,["G4057"]],[7,8,["G3004"]],[8,9,["G4314"]],[9,10,["G1438"]],[10,11,["G5101"]],[11,12,["G2532"]],[12,13,["G1410"]],[13,15,["G4982"]]]},{"k":24615,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,4,["G1689"]],[4,5,["G846"]],[5,6,["G3004"]],[6,7,["G3844"]],[7,8,["G444"]],[8,11,["G102"]],[11,12,["G235"]],[12,13,["G3756"]],[13,14,["G3844"]],[14,15,["G2316"]],[15,16,["G1063"]],[16,17,["G3844"]],[17,18,["G2316"]],[18,20,["G3956"]],[20,21,["G2076"]],[21,22,["G1415"]]]},{"k":24616,"v":[[0,1,["G2532"]],[1,2,["G4074"]],[2,3,["G756"]],[3,5,["G3004"]],[5,7,["G846"]],[7,8,["G2400"]],[8,9,["G2249"]],[9,11,["G863"]],[11,12,["G3956"]],[12,13,["G2532"]],[13,15,["G190"]],[15,16,["G4671"]]]},{"k":24617,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,6,["G281"]],[6,8,["G3004"]],[8,10,["G5213"]],[10,12,["G2076"]],[12,14,["G3762"]],[14,17,["G863"]],[17,18,["G3614"]],[18,19,["G2228"]],[19,20,["G80"]],[20,21,["G2228"]],[21,22,["G79"]],[22,23,["G2228"]],[23,24,["G3962"]],[24,25,["G2228"]],[25,26,["G3384"]],[26,27,["G2228"]],[27,28,["G1135"]],[28,29,["G2228"]],[29,30,["G5043"]],[30,31,["G2228"]],[31,32,["G68"]],[32,35,["G1752","G1700"]],[35,36,["G2532"]],[36,37,["G3588"]],[37,38,["G2098"]]]},{"k":24618,"v":[[0,1,["G1437","G3361"]],[1,4,["G2983"]],[4,6,["G1542"]],[6,7,["G3568"]],[7,8,["G1722"]],[8,9,["G5129"]],[9,10,["G2540"]],[10,11,["G3614"]],[11,12,["G2532"]],[12,13,["G80"]],[13,14,["G2532"]],[14,15,["G79"]],[15,16,["G2532"]],[16,17,["G3384"]],[17,18,["G2532"]],[18,19,["G5043"]],[19,20,["G2532"]],[20,21,["G68"]],[21,22,["G3326"]],[22,23,["G1375"]],[23,24,["G2532"]],[24,25,["G1722"]],[25,26,["G3588"]],[26,27,["G165"]],[27,29,["G2064"]],[29,30,["G166"]],[30,31,["G2222"]]]},{"k":24619,"v":[[0,1,["G1161"]],[1,2,["G4183"]],[2,5,["G4413"]],[5,7,["G2071"]],[7,8,["G2078"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G2078"]],[11,12,["G4413"]]]},{"k":24620,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G3598"]],[6,8,["G305"]],[8,9,["G1519"]],[9,10,["G2414"]],[10,11,["G2532"]],[11,12,["G2424"]],[12,14,["G2258","G4254"]],[14,15,["G846"]],[15,16,["G2532"]],[16,19,["G2284"]],[19,20,["G2532"]],[20,23,["G190"]],[23,26,["G5399"]],[26,27,["G2532"]],[27,29,["G3880"]],[29,30,["G3825"]],[30,31,["G3588"]],[31,32,["G1427"]],[32,34,["G756"]],[34,36,["G3004"]],[36,37,["G846"]],[37,40,["G3195"]],[40,41,["G4819"]],[41,43,["G846"]]]},{"k":24621,"v":[[0,2,["G2400"]],[2,5,["G305"]],[5,6,["G1519"]],[6,7,["G2414"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G5207"]],[10,12,["G444"]],[12,15,["G3860"]],[15,17,["G3588"]],[17,19,["G749"]],[19,20,["G2532"]],[20,22,["G3588"]],[22,23,["G1122"]],[23,24,["G2532"]],[24,27,["G2632"]],[27,28,["G846"]],[28,30,["G2288"]],[30,31,["G2532"]],[31,33,["G3860"]],[33,34,["G846"]],[34,36,["G3588"]],[36,37,["G1484"]]]},{"k":24622,"v":[[0,1,["G2532"]],[1,4,["G1702"]],[4,5,["G846"]],[5,6,["G2532"]],[6,8,["G3146"]],[8,9,["G846"]],[9,13,["G1716"]],[13,14,["G846"]],[14,15,["G2532"]],[15,17,["G615"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G5154"]],[21,22,["G2250"]],[22,26,["G450"]]]},{"k":24623,"v":[[0,1,["G2532"]],[1,2,["G2385"]],[2,3,["G2532"]],[3,4,["G2491"]],[4,5,["G3588"]],[5,6,["G5207"]],[6,8,["G2199"]],[8,9,["G4365"]],[9,11,["G846"]],[11,12,["G3004"]],[12,13,["G1320"]],[13,15,["G2309"]],[15,16,["G2443"]],[16,19,["G4160"]],[19,21,["G2254"]],[21,22,["G3739","G1437"]],[22,25,["G154"]]]},{"k":24624,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G5101"]],[6,7,["G2309"]],[7,10,["G3165"]],[10,12,["G4160"]],[12,14,["G5213"]]]},{"k":24625,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G1325"]],[5,7,["G2254"]],[7,8,["G2443"]],[8,11,["G2523"]],[11,12,["G1520"]],[12,13,["G1537"]],[13,14,["G4675"]],[14,16,["G1188"]],[16,17,["G2532"]],[17,19,["G1520"]],[19,20,["G1537"]],[20,21,["G4675"]],[21,23,["G2176"]],[23,24,["G1722"]],[24,25,["G4675"]],[25,26,["G1391"]]]},{"k":24626,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,7,["G1492"]],[7,8,["G3756"]],[8,9,["G5101"]],[9,11,["G154"]],[11,12,["G1410"]],[12,14,["G4095"]],[14,16,["G3588"]],[16,17,["G4221"]],[17,18,["G3739"]],[18,19,["G1473"]],[19,20,["G4095"]],[20,22,["G2532"]],[22,24,["G907"]],[24,26,["G3588"]],[26,27,["G908"]],[27,28,["G3739"]],[28,29,["G1473"]],[29,31,["G907"]],[31,32,[]]]},{"k":24627,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,7,["G1410"]],[7,8,["G1161"]],[8,9,["G2424"]],[9,10,["G2036"]],[10,12,["G846"]],[12,15,["G3303"]],[15,16,["G4095"]],[16,18,["G3588"]],[18,19,["G4221"]],[19,20,["G3739"]],[20,21,["G1473"]],[21,22,["G4095"]],[22,24,["G2532"]],[24,26,["G3588"]],[26,27,["G908"]],[27,28,["G3739"]],[28,29,["G1473"]],[29,31,["G907"]],[31,36,["G907"]]]},{"k":24628,"v":[[0,1,["G1161"]],[1,3,["G2523"]],[3,4,["G1537"]],[4,5,["G3450"]],[5,7,["G1188"]],[7,8,["G2532"]],[8,9,["G1537"]],[9,10,["G3450"]],[10,12,["G2176"]],[12,13,["G2076"]],[13,14,["G3756"]],[14,15,["G1699"]],[15,17,["G1325"]],[17,18,["G235"]],[18,26,["G3739"]],[26,29,["G2090"]]]},{"k":24629,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G1176"]],[4,5,["G191"]],[5,8,["G756"]],[8,12,["G23"]],[12,13,["G4012"]],[13,14,["G2385"]],[14,15,["G2532"]],[15,16,["G2491"]]]},{"k":24630,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G4341"]],[3,4,["G846"]],[4,8,["G3004"]],[8,10,["G846"]],[10,12,["G1492"]],[12,13,["G3754"]],[13,17,["G1380"]],[17,20,["G757"]],[20,21,["G3588"]],[21,22,["G1484"]],[22,24,["G2634"]],[24,26,["G846"]],[26,27,["G2532"]],[27,28,["G846"]],[28,30,["G3173"]],[30,32,["G2715"]],[32,34,["G846"]]]},{"k":24631,"v":[[0,1,["G1161"]],[1,2,["G3779"]],[2,5,["G3756"]],[5,6,["G2071"]],[6,7,["G1722"]],[7,8,["G5213"]],[8,9,["G235"]],[9,10,["G3739","G1437"]],[10,11,["G2309"]],[11,12,["G1096"]],[12,13,["G3173"]],[13,14,["G1722"]],[14,15,["G5213"]],[15,17,["G2071"]],[17,18,["G5216"]],[18,19,["G1249"]]]},{"k":24632,"v":[[0,1,["G2532"]],[1,2,["G3739","G302"]],[2,4,["G5216"]],[4,5,["G2309"]],[5,6,["G1096"]],[6,8,["G4413"]],[8,10,["G2071"]],[10,11,["G1401"]],[11,13,["G3956"]]]},{"k":24633,"v":[[0,1,["G1063"]],[1,2,["G2532"]],[2,3,["G3588"]],[3,4,["G5207"]],[4,6,["G444"]],[6,7,["G2064"]],[7,8,["G3756"]],[8,12,["G1247"]],[12,13,["G235"]],[13,15,["G1247"]],[15,16,["G2532"]],[16,18,["G1325"]],[18,19,["G848"]],[19,20,["G5590"]],[20,22,["G3083"]],[22,23,["G473"]],[23,24,["G4183"]]]},{"k":24634,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G1519"]],[4,5,["G2410"]],[5,6,["G2532"]],[6,8,["G846"]],[8,9,["G1607"]],[9,11,["G575"]],[11,12,["G2410"]],[12,13,["G2532"]],[13,14,["G846"]],[14,15,["G3101"]],[15,16,["G2532"]],[16,19,["G2425"]],[19,21,["G3793"]],[21,22,["G5185"]],[22,23,["G924"]],[23,25,["G5207"]],[25,27,["G5090"]],[27,28,["G2521"]],[28,29,["G3844"]],[29,30,["G3588"]],[30,32,["G3598"]],[32,33,["G4319"]]]},{"k":24635,"v":[[0,1,["G2532"]],[1,4,["G191"]],[4,5,["G3754"]],[5,7,["G2076"]],[7,8,["G2424"]],[8,10,["G3480"]],[10,12,["G756"]],[12,15,["G2896"]],[15,16,["G2532"]],[16,17,["G3004"]],[17,18,["G2424"]],[18,20,["G5207"]],[20,22,["G1138"]],[22,24,["G1653"]],[24,26,["G3165"]]]},{"k":24636,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,3,["G2008"]],[3,4,["G846"]],[4,5,["G2443"]],[5,10,["G4623"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,13,["G2896"]],[13,15,["G4183"]],[15,18,["G3123"]],[18,20,["G5207"]],[20,22,["G1138"]],[22,24,["G1653"]],[24,26,["G3165"]]]},{"k":24637,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,4,["G2476"]],[4,6,["G2036"]],[6,7,["G846"]],[7,10,["G5455"]],[10,11,["G2532"]],[11,13,["G5455"]],[13,14,["G3588"]],[14,16,["G5185"]],[16,17,["G3004"]],[17,19,["G846"]],[19,23,["G2293"]],[23,24,["G1453"]],[24,26,["G5455"]],[26,27,["G4571"]]]},{"k":24638,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G577"]],[4,5,["G848"]],[5,6,["G2440"]],[6,7,["G450"]],[7,9,["G2064"]],[9,10,["G4314"]],[10,11,["G2424"]]]},{"k":24639,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G3004"]],[5,7,["G846"]],[7,8,["G5101"]],[8,9,["G2309"]],[9,14,["G4160"]],[14,16,["G4671","(G1161)"]],[16,17,["G3588"]],[17,19,["G5185"]],[19,20,["G2036"]],[20,22,["G846"]],[22,23,["G4462"]],[23,24,["G2443"]],[24,29,["G308"]]]},{"k":24640,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,8,["G5217"]],[8,9,["G4675"]],[9,10,["G4102"]],[10,14,["G4982","G4571"]],[14,15,["G2532"]],[15,16,["G2112"]],[16,20,["G308"]],[20,21,["G2532"]],[21,22,["G190"]],[22,23,["G2424"]],[23,24,["G1722"]],[24,25,["G3588"]],[25,26,["G3598"]]]},{"k":24641,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G1448"]],[5,6,["G1519"]],[6,7,["G2419"]],[7,8,["G1519"]],[8,9,["G967"]],[9,10,["G2532"]],[10,11,["G963"]],[11,12,["G4314"]],[12,13,["G3588"]],[13,14,["G3735"]],[14,16,["G1636"]],[16,19,["G649"]],[19,20,["G1417"]],[20,22,["G848"]],[22,23,["G3101"]]]},{"k":24642,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,4,["G846"]],[4,7,["G5217"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G2968"]],[10,12,["G2713"]],[12,13,["G5216"]],[13,14,["G2532"]],[14,17,["G2112"]],[17,20,["G1531"]],[20,21,["G1519"]],[21,22,["G846"]],[22,25,["G2147"]],[25,27,["G4454"]],[27,28,["G1210"]],[28,29,["G1909","G3739"]],[29,30,["G3762"]],[30,31,["G444"]],[31,32,["G2523"]],[32,33,["G3089"]],[33,34,["G846"]],[34,36,["G71"]],[36,37,[]]]},{"k":24643,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G5100"]],[4,5,["G2036"]],[5,7,["G5213"]],[7,8,["G5101"]],[8,9,["G4160"]],[9,11,["G5124"]],[11,12,["G2036"]],[12,14,["G3754"]],[14,15,["G3588"]],[15,16,["G2962"]],[16,17,["G2192"]],[17,18,["G5532"]],[18,20,["G846"]],[20,21,["G2532"]],[21,22,["G2112"]],[22,25,["G649"]],[25,26,["G846"]],[26,27,["G5602"]]]},{"k":24644,"v":[[0,1,["G1161"]],[1,5,["G565"]],[5,6,["G2532"]],[6,7,["G2147"]],[7,8,["G3588"]],[8,9,["G4454"]],[9,10,["G1210"]],[10,11,["G4314"]],[11,12,["G3588"]],[12,13,["G2374"]],[13,14,["G1854"]],[14,15,["G1909"]],[15,21,["G296"]],[21,22,["G2532"]],[22,24,["G3089"]],[24,25,["G846"]]]},{"k":24645,"v":[[0,1,["G2532"]],[1,2,["G5100"]],[2,6,["G2476"]],[6,7,["G1563"]],[7,8,["G3004"]],[8,10,["G846"]],[10,11,["G5101"]],[11,12,["G4160"]],[12,14,["G3089"]],[14,15,["G3588"]],[15,16,["G4454"]]]},{"k":24646,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,7,["G2531"]],[7,8,["G2424"]],[8,10,["G1781"]],[10,11,["G2532"]],[11,15,["G863","G846"]]]},{"k":24647,"v":[[0,1,["G2532"]],[1,3,["G71"]],[3,4,["G3588"]],[4,5,["G4454"]],[5,6,["G4314"]],[6,7,["G2424"]],[7,8,["G2532"]],[8,9,["G1911"]],[9,10,["G848"]],[10,11,["G2440"]],[11,13,["G846"]],[13,14,["G2532"]],[14,16,["G2523"]],[16,17,["G1909"]],[17,18,["G846"]]]},{"k":24648,"v":[[0,1,["G1161"]],[1,2,["G4183"]],[2,3,["G4766"]],[3,4,["G848"]],[4,5,["G2440"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G3598"]],[8,9,["G1161"]],[9,10,["G243"]],[10,12,["G2875"]],[12,13,["G4746"]],[13,14,["G1537"]],[14,15,["G3588"]],[15,16,["G1186"]],[16,17,["G2532"]],[17,18,["G4766"]],[18,20,["G1519"]],[20,21,["G3588"]],[21,22,["G3598"]]]},{"k":24649,"v":[[0,1,["G2532"]],[1,5,["G4254"]],[5,6,["G2532"]],[6,9,["G190"]],[9,10,["G2896"]],[10,11,["G3004"]],[11,12,["G5614"]],[12,13,["G2127"]],[13,17,["G2064"]],[17,18,["G1722"]],[18,20,["G3686"]],[20,23,["G2962"]]]},{"k":24650,"v":[[0,1,["G2127"]],[1,3,["G3588"]],[3,4,["G932"]],[4,6,["G2257"]],[6,7,["G3962"]],[7,8,["G1138"]],[8,10,["G2064"]],[10,11,["G1722"]],[11,13,["G3686"]],[13,16,["G2962"]],[16,17,["G5614"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,20,["G5310"]]]},{"k":24651,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G1525"]],[3,4,["G1519"]],[4,5,["G2414"]],[5,6,["G2532"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G2411"]],[9,10,["G2532"]],[10,16,["G4017"]],[16,19,["G3956"]],[19,20,["G2532"]],[20,21,["G2235"]],[21,22,["G3588"]],[22,23,["G5610"]],[23,25,["G5607","G3798"]],[25,28,["G1831"]],[28,29,["G1519"]],[29,30,["G963"]],[30,31,["G3326"]],[31,32,["G3588"]],[32,33,["G1427"]]]},{"k":24652,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G1887"]],[4,6,["G846"]],[6,8,["G1831"]],[8,9,["G575"]],[9,10,["G963"]],[10,13,["G3983"]]]},{"k":24653,"v":[[0,1,["G2532"]],[1,2,["G1492"]],[2,5,["G4808"]],[5,7,["G3113"]],[7,8,["G2192"]],[8,9,["G5444"]],[9,11,["G2064"]],[11,12,["G1487"]],[12,13,["G686"]],[13,16,["G2147"]],[16,18,["G5100"]],[18,19,["G1722","G846"]],[19,20,["G2532"]],[20,23,["G2064"]],[23,24,["G1909"]],[24,26,["G846"]],[26,27,["G2147"]],[27,28,["G3762"]],[28,29,["G1508"]],[29,30,["G5444"]],[30,31,["G1063"]],[31,33,["G2540"]],[33,35,["G4810"]],[35,36,["G2258"]],[36,37,["G3756"]],[37,38,[]]]},{"k":24654,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,9,["G3367"]],[9,10,["G5315"]],[10,11,["G2590"]],[11,12,["G1537"]],[12,13,["G4675"]],[13,14,["G3371"]],[14,16,["G1519","G165"]],[16,17,["G2532"]],[17,18,["G846"]],[18,19,["G3101"]],[19,20,["G191"]],[20,21,[]]]},{"k":24655,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G1519"]],[4,5,["G2414"]],[5,6,["G2532"]],[6,7,["G2424"]],[7,8,["G1525"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G2411"]],[11,13,["G756"]],[13,16,["G1544"]],[16,19,["G4453"]],[19,20,["G2532"]],[20,21,["G59"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G2411"]],[24,25,["G2532"]],[25,26,["G2690"]],[26,27,["G3588"]],[27,28,["G5132"]],[28,30,["G3588"]],[30,31,["G2855"]],[31,32,["G2532"]],[32,33,["G3588"]],[33,34,["G2515"]],[34,38,["G4453"]],[38,39,["G4058"]]]},{"k":24656,"v":[[0,1,["G2532"]],[1,3,["G3756"]],[3,4,["G863"]],[4,5,["G2443"]],[5,7,["G5100"]],[7,9,["G1308"]],[9,11,["G4632"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G2411"]]]},{"k":24657,"v":[[0,1,["G2532"]],[1,3,["G1321"]],[3,4,["G3004"]],[4,6,["G846"]],[6,9,["G3756"]],[9,10,["G1125"]],[10,11,["G3450"]],[11,12,["G3624"]],[12,15,["G2564"]],[15,17,["G3956"]],[17,18,["G1484"]],[18,20,["G3624"]],[20,22,["G4335"]],[22,23,["G1161"]],[23,24,["G5210"]],[24,26,["G4160"]],[26,27,["G846"]],[27,29,["G4693"]],[29,31,["G3027"]]]},{"k":24658,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1122"]],[3,4,["G2532"]],[4,6,["G749"]],[6,7,["G191"]],[7,9,["G2532"]],[9,10,["G2212"]],[10,11,["G4459"]],[11,14,["G622"]],[14,15,["G846"]],[15,16,["G1063"]],[16,18,["G5399"]],[18,19,["G846"]],[19,20,["G3754"]],[20,21,["G3956"]],[21,22,["G3588"]],[22,23,["G3793"]],[23,25,["G1605"]],[25,26,["G1909"]],[26,27,["G846"]],[27,28,["G1322"]]]},{"k":24659,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,3,["G3796"]],[3,5,["G1096"]],[5,7,["G1607"]],[7,8,["G1854"]],[8,10,["G3588"]],[10,11,["G4172"]]]},{"k":24660,"v":[[0,1,["G2532"]],[1,4,["G4404"]],[4,8,["G3899"]],[8,10,["G1492"]],[10,11,["G3588"]],[11,13,["G4808"]],[13,15,["G3583"]],[15,16,["G1537"]],[16,18,["G4491"]]]},{"k":24661,"v":[[0,1,["G2532"]],[1,2,["G4074"]],[2,5,["G363"]],[5,6,["G3004"]],[6,8,["G846"]],[8,9,["G4461"]],[9,10,["G2396"]],[10,11,["G3588"]],[11,13,["G4808"]],[13,14,["G3739"]],[14,16,["G2672"]],[16,19,["G3583"]]]},{"k":24662,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G3004"]],[4,6,["G846"]],[6,7,["G2192"]],[7,8,["G4102"]],[8,10,["G2316"]]]},{"k":24663,"v":[[0,1,["G1063"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,7,["G3754"]],[7,8,["G3739","G302"]],[8,10,["G2036"]],[10,12,["G5129"]],[12,13,["G3735"]],[13,16,["G142"]],[16,17,["G2532"]],[17,20,["G906"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G2281"]],[23,24,["G2532"]],[24,26,["G3361"]],[26,27,["G1252"]],[27,28,["G1722"]],[28,29,["G848"]],[29,30,["G2588"]],[30,31,["G235"]],[31,33,["G4100"]],[33,34,["G3754"]],[34,37,["G3739"]],[37,39,["G3004"]],[39,43,["G1096"]],[43,44,["G846"]],[44,46,["G2071"]],[46,47,["G3739","G1437"]],[47,49,["G2036"]]]},{"k":24664,"v":[[0,1,["G1223","G5124"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,8,["G3956","G3745","G302"]],[8,10,["G154"]],[10,13,["G4336"]],[13,14,["G4100"]],[14,15,["G3754"]],[15,17,["G2983"]],[17,19,["G2532"]],[19,20,["G5213"]],[20,22,["G2071"]],[22,23,[]]]},{"k":24665,"v":[[0,1,["G2532"]],[1,2,["G3752"]],[2,4,["G4739"]],[4,5,["G4336"]],[5,6,["G863"]],[6,7,["G1487"]],[7,9,["G2192"]],[9,10,["G5100"]],[10,11,["G2596"]],[11,12,["G5100"]],[12,13,["G2443"]],[13,14,["G5216"]],[14,15,["G3962"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,19,["G1722"]],[19,20,["G3772"]],[20,22,["G863"]],[22,23,["G5213"]],[23,24,["G5216"]],[24,25,["G3900"]]]},{"k":24666,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5210"]],[3,5,["G3756"]],[5,6,["G863"]],[6,7,["G3761"]],[7,9,["G5216"]],[9,10,["G3962"]],[10,11,["G3588"]],[11,13,["G1722"]],[13,14,["G3772"]],[14,15,["G863"]],[15,16,["G5216"]],[16,17,["G3900"]]]},{"k":24667,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G3825"]],[4,5,["G1519"]],[5,6,["G2414"]],[6,7,["G2532"]],[7,9,["G846"]],[9,11,["G4043"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G2411"]],[14,16,["G2064"]],[16,17,["G4314"]],[17,18,["G846"]],[18,19,["G3588"]],[19,21,["G749"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G1122"]],[24,25,["G2532"]],[25,26,["G3588"]],[26,27,["G4245"]]]},{"k":24668,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1722"]],[5,6,["G4169"]],[6,7,["G1849"]],[7,8,["G4160"]],[8,11,["G5023"]],[11,12,["G2532"]],[12,13,["G5101"]],[13,14,["G1325"]],[14,15,["G4671"]],[15,16,["G5026"]],[16,17,["G1849"]],[17,18,["G2443"]],[18,19,["G4160"]],[19,21,["G5023"]]]},{"k":24669,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,11,["G2504","G1905"]],[11,13,["G5209"]],[13,14,["G1520"]],[14,15,["G3056"]],[15,16,["G2532"]],[16,17,["G611"]],[17,18,["G3427"]],[18,19,["G2532"]],[19,22,["G2046"]],[22,23,["G5213"]],[23,24,["G1722"]],[24,25,["G4169"]],[25,26,["G1849"]],[26,28,["G4160"]],[28,30,["G5023"]]]},{"k":24670,"v":[[0,1,["G3588"]],[1,2,["G908"]],[2,4,["G2491"]],[4,5,["G2258"]],[5,7,["G1537"]],[7,8,["G3772"]],[8,9,["G2228"]],[9,10,["G1537"]],[10,11,["G444"]],[11,12,["G611"]],[12,13,["G3427"]]]},{"k":24671,"v":[[0,1,["G2532"]],[1,3,["G3049"]],[3,4,["G4314"]],[4,5,["G1438"]],[5,6,["G3004"]],[6,7,["G1437"]],[7,10,["G2036"]],[10,11,["G1537"]],[11,12,["G3772"]],[12,15,["G2046"]],[15,16,["G1302"]],[16,17,["G3767"]],[17,20,["G3756"]],[20,21,["G4100"]],[21,22,["G846"]]]},{"k":24672,"v":[[0,1,["G235"]],[1,2,["G1437"]],[2,5,["G2036"]],[5,6,["G1537"]],[6,7,["G444"]],[7,9,["G5399"]],[9,10,["G3588"]],[10,11,["G2992"]],[11,12,["G1063"]],[12,13,["G537"]],[13,15,["G2192"]],[15,16,["G2491"]],[16,17,["G3754"]],[17,19,["G2258"]],[19,21,["G4396"]],[21,22,["G3689"]]]},{"k":24673,"v":[[0,1,["G2532"]],[1,3,["G611"]],[3,5,["G3004"]],[5,7,["G2424"]],[7,10,["G1492","G3756"]],[10,11,["G2532"]],[11,12,["G2424"]],[12,13,["G611"]],[13,14,["G3004"]],[14,16,["G846"]],[16,17,["G3761"]],[17,19,["G1473"]],[19,20,["G3004"]],[20,21,["G5213"]],[21,22,["G1722"]],[22,23,["G4169"]],[23,24,["G1849"]],[24,26,["G4160"]],[26,28,["G5023"]]]},{"k":24674,"v":[[0,1,["G2532"]],[1,3,["G756"]],[3,5,["G3004"]],[5,7,["G846"]],[7,8,["G1722"]],[8,9,["G3850"]],[9,12,["G444"]],[12,13,["G5452"]],[13,15,["G290"]],[15,16,["G2532"]],[16,20,["G4060","G5418"]],[20,22,["G2532"]],[22,23,["G3736"]],[23,28,["G5276"]],[28,29,["G2532"]],[29,30,["G3618"]],[30,32,["G4444"]],[32,33,["G2532"]],[33,36,["G1554","G846"]],[36,38,["G1092"]],[38,39,["G2532"]],[39,44,["G589"]]]},{"k":24675,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G2540"]],[4,6,["G649"]],[6,7,["G4314"]],[7,8,["G3588"]],[8,9,["G1092"]],[9,11,["G1401"]],[11,12,["G2443"]],[12,15,["G2983"]],[15,16,["G3844"]],[16,17,["G3588"]],[17,18,["G1092"]],[18,19,["G575"]],[19,20,["G3588"]],[20,21,["G2590"]],[21,23,["G3588"]],[23,24,["G290"]]]},{"k":24676,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2983"]],[3,6,["G1194"]],[6,7,["G846"]],[7,8,["G2532"]],[8,11,["G649"]],[11,12,["G2756"]]]},{"k":24677,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,4,["G649"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G243"]],[7,8,["G1401"]],[8,11,["G2548"]],[11,14,["G3036"]],[14,20,["G2775"]],[20,21,["G2532"]],[21,24,["G649"]],[24,26,["G821"]]]},{"k":24678,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,4,["G649"]],[4,5,["G243"]],[5,7,["G2548"]],[7,9,["G615"]],[9,10,["G2532"]],[10,11,["G4183"]],[11,12,["G243"]],[12,13,["G1194"]],[13,14,["G3588","G3303"]],[14,15,["G1161"]],[15,16,["G615"]],[16,17,["G3588"]]]},{"k":24679,"v":[[0,1,["G2192"]],[1,2,["G2089"]],[2,3,["G3767"]],[3,4,["G1520"]],[4,5,["G5207"]],[5,6,["G848"]],[6,7,["G27"]],[7,9,["G649"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G2078"]],[12,13,["G4314"]],[13,14,["G846"]],[14,15,["G3004"]],[15,18,["G1788"]],[18,19,["G3450"]],[19,20,["G5207"]]]},{"k":24680,"v":[[0,1,["G1161"]],[1,2,["G1565"]],[2,3,["G1092"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G1438"]],[6,7,["G3778"]],[7,8,["G2076"]],[8,9,["G3588"]],[9,10,["G2818"]],[10,11,["G1205"]],[11,14,["G615"]],[14,15,["G846"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G2817"]],[18,20,["G2071"]],[20,21,["G2257"]]]},{"k":24681,"v":[[0,1,["G2532"]],[1,3,["G2983"]],[3,4,["G846"]],[4,6,["G615"]],[6,8,["G2532"]],[8,9,["G1544"]],[9,11,["G1854"]],[11,13,["G3588"]],[13,14,["G290"]]]},{"k":24682,"v":[[0,1,["G5101"]],[1,3,["G3767"]],[3,4,["G3588"]],[4,5,["G2962"]],[5,7,["G3588"]],[7,8,["G290"]],[8,9,["G4160"]],[9,12,["G2064"]],[12,13,["G2532"]],[13,14,["G622"]],[14,15,["G3588"]],[15,16,["G1092"]],[16,17,["G2532"]],[17,19,["G1325"]],[19,20,["G3588"]],[20,21,["G290"]],[21,23,["G243"]]]},{"k":24683,"v":[[0,4,["G3761"]],[4,5,["G314"]],[5,6,["G5026"]],[6,7,["G1124"]],[7,9,["G3037"]],[9,10,["G3739"]],[10,11,["G3588"]],[11,12,["G3618"]],[12,13,["G593"]],[13,14,["(G3778)"]],[14,15,["G1096"]],[15,16,["(G1519)"]],[16,17,["G2776"]],[17,20,["G1137"]]]},{"k":24684,"v":[[0,1,["G3778"]],[1,2,["G1096"]],[2,5,["G3844","G2962"]],[5,6,["G2532"]],[6,8,["G2076"]],[8,9,["G2298"]],[9,10,["G1722"]],[10,11,["G2254"]],[11,12,["G3788"]]]},{"k":24685,"v":[[0,1,["G2532"]],[1,3,["G2212"]],[3,7,["G2902"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G5399"]],[10,11,["G3588"]],[11,12,["G3793"]],[12,13,["G1063"]],[13,15,["G1097"]],[15,16,["G3754"]],[16,19,["G2036"]],[19,20,["G3588"]],[20,21,["G3850"]],[21,22,["G4314"]],[22,23,["G846"]],[23,24,["G2532"]],[24,26,["G863"]],[26,27,["G846"]],[27,31,["G565"]]]},{"k":24686,"v":[[0,1,["G2532"]],[1,3,["G649"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G5100"]],[6,8,["G3588"]],[8,9,["G5330"]],[9,10,["G2532"]],[10,12,["G3588"]],[12,13,["G2265"]],[13,14,["G2443"]],[14,15,["G64"]],[15,16,["G846"]],[16,19,["G3056"]]]},{"k":24687,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,5,["G2064"]],[5,7,["G3004"]],[7,9,["G846"]],[9,10,["G1320"]],[10,12,["G1492"]],[12,13,["G3754"]],[13,15,["G1488"]],[15,16,["G227"]],[16,17,["G2532","(G3756)"]],[17,18,["G3199","G4671"]],[18,19,["G4012"]],[19,21,["G3762"]],[21,22,["G1063"]],[22,24,["G991"]],[24,25,["G3756"]],[25,26,["(G1519)"]],[26,27,["G4383"]],[27,29,["G444"]],[29,30,["G235"]],[30,31,["G1321"]],[31,32,["G3588"]],[32,33,["G3598"]],[33,35,["G2316"]],[35,36,["G1909"]],[36,37,["G225"]],[37,40,["G1832"]],[40,42,["G1325"]],[42,43,["G2778"]],[43,45,["G2541"]],[45,46,["G2228"]],[46,47,["G3756"]]]},{"k":24688,"v":[[0,3,["G1325"]],[3,4,["G2228"]],[4,7,["G3361"]],[7,8,["G1325"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G1492"]],[11,12,["G846"]],[12,13,["G5272"]],[13,14,["G2036"]],[14,16,["G846"]],[16,17,["G5101"]],[17,18,["G3985"]],[18,20,["G3165"]],[20,21,["G5342"]],[21,22,["G3427"]],[22,24,["G1220"]],[24,25,["G2443"]],[25,28,["G1492"]],[28,29,[]]]},{"k":24689,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5342"]],[3,5,["G2532"]],[5,7,["G3004"]],[7,9,["G846"]],[9,10,["G5101"]],[10,12,["G3778"]],[12,13,["G1504"]],[13,14,["G2532"]],[14,15,["G1923"]],[15,16,["G1161"]],[16,17,["G3588"]],[17,18,["G2036"]],[18,20,["G846"]],[20,21,["G2541"]]]},{"k":24690,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G591"]],[7,9,["G2541"]],[9,11,["G3588"]],[11,14,["G2541"]],[14,15,["G2532"]],[15,17,["G2316"]],[17,19,["G3588"]],[19,22,["G2316"]],[22,23,["G2532"]],[23,25,["G2296"]],[25,26,["G1909"]],[26,27,["G846"]]]},{"k":24691,"v":[[0,1,["G2532"]],[1,2,["G2064"]],[2,3,["G4314"]],[3,4,["G846"]],[4,6,["G4523"]],[6,7,["G3748"]],[7,8,["G3004"]],[8,10,["G1511"]],[10,11,["G3361"]],[11,12,["G386"]],[12,13,["G2532"]],[13,15,["G1905"]],[15,16,["G846"]],[16,17,["G3004"]]]},{"k":24692,"v":[[0,1,["G1320"]],[1,2,["G3475"]],[2,3,["G1125"]],[3,5,["G2254"]],[5,6,["G1437"]],[6,8,["G5100"]],[8,9,["G80"]],[9,10,["G599"]],[10,11,["G2532"]],[11,12,["G2641"]],[12,14,["G1135"]],[14,17,["G2532"]],[17,18,["G863"]],[18,19,["G3361"]],[19,20,["G5043"]],[20,21,["G2443"]],[21,22,["G848"]],[22,23,["G80"]],[23,25,["G2983"]],[25,26,["G846"]],[26,27,["G1135"]],[27,28,["G2532"]],[28,30,["G1817"]],[30,31,["G4690"]],[31,33,["G846"]],[33,34,["G80"]]]},{"k":24693,"v":[[0,3,["G2258"]],[3,4,["G2033"]],[4,5,["G80"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G4413"]],[8,9,["G2983"]],[9,11,["G1135"]],[11,12,["G2532"]],[12,13,["G599"]],[13,14,["G863"]],[14,15,["G3756"]],[15,16,["G4690"]]]},{"k":24694,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1208"]],[3,4,["G2983"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G599"]],[7,8,["(G3761)"]],[8,9,["G863"]],[9,10,["G846"]],[10,12,["G4690"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G5154"]],[15,16,["G5615"]]]},{"k":24695,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2033"]],[3,4,["G2983"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G863"]],[7,8,["G3756"]],[8,9,["G4690"]],[9,10,["G2078"]],[10,12,["G3956"]],[12,13,["G3588"]],[13,14,["G1135"]],[14,15,["G599"]],[15,16,["G2532"]]]},{"k":24696,"v":[[0,1,["G1722"]],[1,2,["G3588"]],[2,3,["G386"]],[3,4,["G3767"]],[4,5,["G3752"]],[5,8,["G450"]],[8,9,["G5101"]],[9,10,["G1135"]],[10,13,["G2071"]],[13,15,["G846"]],[15,16,["G1063"]],[16,17,["G3588"]],[17,18,["G2033"]],[18,19,["G2192"]],[19,20,["G846"]],[20,22,["G1135"]]]},{"k":24697,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,6,["G846"]],[6,9,["G3756"]],[9,10,["G1223","G5124"]],[10,11,["G4105"]],[11,14,["G1492"]],[14,15,["G3361"]],[15,16,["G3588"]],[16,17,["G1124"]],[17,18,["G3366"]],[18,19,["G3588"]],[19,20,["G1411"]],[20,22,["G2316"]]]},{"k":24698,"v":[[0,1,["G1063"]],[1,2,["G3752"]],[2,5,["G450"]],[5,6,["G1537"]],[6,8,["G3498"]],[8,10,["G3777"]],[10,11,["G1060"]],[11,12,["G3777"]],[12,16,["G1061"]],[16,17,["G235"]],[17,18,["G1526"]],[18,19,["G5613"]],[19,21,["G32"]],[21,22,["G3588"]],[22,24,["G1722"]],[24,25,["G3772"]]]},{"k":24699,"v":[[0,1,["G1161"]],[1,3,["G4012"]],[3,4,["G3588"]],[4,5,["G3498"]],[5,6,["G3754"]],[6,8,["G1453"]],[8,11,["G3756"]],[11,12,["G314"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G976"]],[15,17,["G3475"]],[17,18,["G5613"]],[18,19,["G1909"]],[19,20,["G3588"]],[20,21,["G942"]],[21,22,["G2316"]],[22,23,["G2036"]],[23,25,["G846"]],[25,26,["G3004"]],[26,27,["G1473"]],[27,29,["G3588"]],[29,30,["G2316"]],[30,32,["G11"]],[32,33,["G2532"]],[33,34,["G3588"]],[34,35,["G2316"]],[35,37,["G2464"]],[37,38,["G2532"]],[38,39,["G3588"]],[39,40,["G2316"]],[40,42,["G2384"]]]},{"k":24700,"v":[[0,2,["G2076"]],[2,3,["G3756"]],[3,4,["G3588"]],[4,5,["G2316"]],[5,8,["G3498"]],[8,9,["G235"]],[9,11,["G2316"]],[11,14,["G2198"]],[14,15,["G5210"]],[15,16,["G3767"]],[16,18,["G4183"]],[18,19,["G4105"]]]},{"k":24701,"v":[[0,1,["G2532"]],[1,2,["G1520"]],[2,4,["G3588"]],[4,5,["G1122"]],[5,6,["G4334"]],[6,9,["G191"]],[9,10,["G846"]],[10,12,["G4802"]],[12,14,["G1492"]],[14,15,["G3754"]],[15,18,["G611"]],[18,19,["G846"]],[19,20,["G2573"]],[20,21,["G1905"]],[21,22,["G846"]],[22,23,["G4169"]],[23,24,["G2076"]],[24,26,["G4413"]],[26,27,["G1785"]],[27,29,["G3956"]]]},{"k":24702,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G846"]],[4,6,["G4413"]],[6,8,["G3956"]],[8,9,["G3588"]],[9,10,["G1785"]],[10,12,["G191"]],[12,14,["G2474"]],[14,16,["G2962"]],[16,17,["G2257"]],[17,18,["G2316"]],[18,19,["G2076"]],[19,20,["G1520"]],[20,21,["G2962"]]]},{"k":24703,"v":[[0,1,["G2532"]],[1,4,["G25"]],[4,6,["G2962"]],[6,7,["G4675"]],[7,8,["G2316"]],[8,9,["G1537"]],[9,10,["G3650"]],[10,11,["G4675"]],[11,12,["G2588"]],[12,13,["G2532"]],[13,14,["G1537"]],[14,15,["G3650"]],[15,16,["G4675"]],[16,17,["G5590"]],[17,18,["G2532"]],[18,19,["G1537"]],[19,20,["G3650"]],[20,21,["G4675"]],[21,22,["G1271"]],[22,23,["G2532"]],[23,24,["G1537"]],[24,25,["G3650"]],[25,26,["G4675"]],[26,27,["G2479"]],[27,28,["G3778"]],[28,31,["G4413"]],[31,32,["G1785"]]]},{"k":24704,"v":[[0,1,["G2532"]],[1,3,["G1208"]],[3,5,["G3664"]],[5,7,["G3778"]],[7,10,["G25"]],[10,11,["G4675"]],[11,12,["G4139"]],[12,13,["G5613"]],[13,14,["G4572"]],[14,16,["G2076"]],[16,17,["G3756"]],[17,18,["G243"]],[18,19,["G1785"]],[19,20,["G3187"]],[20,22,["G5130"]]]},{"k":24705,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1122"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G2573"]],[7,8,["G1320"]],[8,11,["G2036"]],[11,12,["(G1909)"]],[12,13,["G225"]],[13,14,["G3754"]],[14,16,["G2076"]],[16,17,["G1520"]],[17,18,["G2316"]],[18,19,["G2532"]],[19,21,["G2076"]],[21,22,["G3756"]],[22,23,["G243"]],[23,24,["G4133"]],[24,25,["G846"]]]},{"k":24706,"v":[[0,1,["G2532"]],[1,3,["G25"]],[3,4,["G846"]],[4,5,["G1537"]],[5,6,["G3650"]],[6,7,["G3588"]],[7,8,["G2588"]],[8,9,["G2532"]],[9,10,["G1537"]],[10,11,["G3650"]],[11,12,["G3588"]],[12,13,["G4907"]],[13,14,["G2532"]],[14,15,["G1537"]],[15,16,["G3650"]],[16,17,["G3588"]],[17,18,["G5590"]],[18,19,["G2532"]],[19,20,["G1537"]],[20,21,["G3650"]],[21,22,["G3588"]],[22,23,["G2479"]],[23,24,["G2532"]],[24,26,["G25"]],[26,28,["G4139"]],[28,29,["G5613"]],[29,30,["G1438"]],[30,31,["G2076"]],[31,32,["G4119"]],[32,34,["G3956"]],[34,37,["G3646"]],[37,38,["G2532"]],[38,39,["G2378"]]]},{"k":24707,"v":[[0,1,["G2532"]],[1,3,["G2424"]],[3,4,["G1492"]],[4,5,["G3754"]],[5,7,["G611"]],[7,8,["G3562"]],[8,10,["G2036"]],[10,12,["G846"]],[12,14,["G1488"]],[14,15,["G3756"]],[15,16,["G3112"]],[16,17,["G575"]],[17,18,["G3588"]],[18,19,["G932"]],[19,21,["G2316"]],[21,22,["G2532"]],[22,24,["G3762"]],[24,26,["G3765"]],[26,27,["G5111"]],[27,28,["G1905"]],[28,29,["G846"]],[29,31,[]]]},{"k":24708,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G3004"]],[5,8,["G1321"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2411"]],[11,12,["G4459"]],[12,13,["G3004"]],[13,14,["G3588"]],[14,15,["G1122"]],[15,16,["G3754"]],[16,17,["G5547"]],[17,18,["G2076"]],[18,20,["G5207"]],[20,22,["G1138"]]]},{"k":24709,"v":[[0,1,["G1063"]],[1,2,["G1138"]],[2,3,["G846"]],[3,4,["G2036"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G40"]],[7,8,["G4151"]],[8,9,["G3588"]],[9,10,["G2962"]],[10,11,["G2036"]],[11,13,["G3450"]],[13,14,["G2962"]],[14,15,["G2521"]],[15,17,["G1537"]],[17,18,["G3450"]],[18,20,["G1188"]],[20,21,["G2193","G302"]],[21,23,["G5087"]],[23,24,["G4675"]],[24,25,["G2190"]],[25,27,["G5286","G4675","G4228"]]]},{"k":24710,"v":[[0,1,["G1138"]],[1,2,["G3767"]],[2,3,["G846"]],[3,4,["G3004"]],[4,5,["G846"]],[5,6,["G2962"]],[6,7,["G2532"]],[7,8,["G4159"]],[8,9,["G2076"]],[9,12,["G846"]],[12,13,["G5207"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G4183"]],[16,17,["G3793"]],[17,18,["G191"]],[18,19,["G846"]],[19,20,["G2234"]]]},{"k":24711,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G1722"]],[6,7,["G848"]],[7,8,["G1322"]],[8,9,["G991"]],[9,10,["G575"]],[10,11,["G3588"]],[11,12,["G1122"]],[12,14,["G2309"]],[14,16,["G4043"]],[16,17,["G1722"]],[17,19,["G4749"]],[19,20,["G2532"]],[20,22,["G783"]],[22,23,["G1722"]],[23,24,["G3588"]],[24,25,["G58"]]]},{"k":24712,"v":[[0,1,["G2532"]],[1,4,["G4410"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G4864"]],[7,8,["G2532"]],[8,11,["G4411"]],[11,12,["G1722"]],[12,13,["G1173"]]]},{"k":24713,"v":[[0,2,["G2719"]],[2,3,["G5503"]],[3,4,["G3614"]],[4,5,["G2532"]],[5,8,["G4392"]],[8,11,["G4336","G3117"]],[11,12,["G3778"]],[12,14,["G2983"]],[14,15,["G4055"]],[15,16,["G2917"]]]},{"k":24714,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2523"]],[3,5,["G2713"]],[5,6,["G3588"]],[6,7,["G1049"]],[7,9,["G2334"]],[9,10,["G4459"]],[10,11,["G3588"]],[11,12,["G3793"]],[12,13,["G906"]],[13,14,["G5475"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G1049"]],[17,18,["G2532"]],[18,19,["G4183"]],[19,22,["G4145"]],[22,24,["G906"]],[24,25,["G4183"]]]},{"k":24715,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,5,["G3391"]],[5,6,["G4434"]],[6,7,["G5503"]],[7,11,["G906"]],[11,12,["G1417"]],[12,13,["G3016"]],[13,15,["G3603"]],[15,17,["G2835"]]]},{"k":24716,"v":[[0,1,["G2532"]],[1,3,["G4341"]],[3,6,["G848"]],[6,7,["G3101"]],[7,9,["G3004"]],[9,11,["G846"]],[11,12,["G281"]],[12,14,["G3004"]],[14,16,["G5213"]],[16,17,["G3754"]],[17,18,["G3778"]],[18,19,["G4434"]],[19,20,["G5503"]],[20,24,["G906","G4119"]],[24,26,["G3956"]],[26,30,["G906"]],[30,31,["G1519"]],[31,32,["G3588"]],[32,33,["G1049"]]]},{"k":24717,"v":[[0,1,["G1063"]],[1,2,["G3956"]],[2,6,["G906"]],[6,7,["G1537"]],[7,8,["G846"]],[8,9,["G4052"]],[9,10,["G1161"]],[10,11,["G3778"]],[11,12,["G1537"]],[12,13,["G848"]],[13,14,["G5304"]],[14,17,["G906"]],[17,18,["G3956"]],[18,19,["G3745"]],[19,21,["G2192"]],[21,23,["G3650"]],[23,24,["G848"]],[24,25,["G979"]]]},{"k":24718,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,4,["G1607"]],[4,6,["G1537"]],[6,7,["G3588"]],[7,8,["G2411"]],[8,9,["G1520"]],[9,11,["G846"]],[11,12,["G3101"]],[12,13,["G3004"]],[13,15,["G846"]],[15,16,["G1320"]],[16,17,["G2396"]],[17,19,["G4217"]],[19,21,["G3037"]],[21,22,["G2532"]],[22,23,["G4217"]],[23,24,["G3619"]],[24,26,[]]]},{"k":24719,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G991"]],[7,9,["G5025"]],[9,10,["G3173"]],[10,11,["G3619"]],[11,14,["G3364"]],[14,16,["G863"]],[16,20,["G3037","G1909","G3037"]],[20,21,["G3739"]],[21,23,["G3364"]],[23,26,["G2647"]]]},{"k":24720,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,4,["G2521"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G3735"]],[7,9,["G1636"]],[9,11,["G2713"]],[11,12,["G3588"]],[12,13,["G2411"]],[13,14,["G4074"]],[14,15,["G2532"]],[15,16,["G2385"]],[16,17,["G2532"]],[17,18,["G2491"]],[18,19,["G2532"]],[19,20,["G406"]],[20,21,["G1905"]],[21,22,["G846"]],[22,23,["G2596","G2398"]]]},{"k":24721,"v":[[0,1,["G2036"]],[1,2,["G2254"]],[2,3,["G4219"]],[3,6,["G5023"]],[6,7,["G2071"]],[7,8,["G2532"]],[8,9,["G5101"]],[9,12,["G3588"]],[12,13,["G4592"]],[13,14,["G3752"]],[14,15,["G3956"]],[15,17,["G5023"]],[17,18,["G3195"]],[18,20,["G4931"]]]},{"k":24722,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G846"]],[4,5,["G756"]],[5,7,["G3004"]],[7,9,["G991"]],[9,10,["G3361"]],[10,11,["G5100"]],[11,13,["G4105"]],[13,14,["G5209"]]]},{"k":24723,"v":[[0,1,["G1063"]],[1,2,["G4183"]],[2,4,["G2064"]],[4,5,["G1909"]],[5,6,["G3450"]],[6,7,["G3686"]],[7,8,["G3004"]],[8,9,["G1473"]],[9,10,["G1510"]],[10,12,["G2532"]],[12,14,["G4105"]],[14,15,["G4183"]]]},{"k":24724,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,5,["G191"]],[5,7,["G4171"]],[7,8,["G2532"]],[8,9,["G189"]],[9,11,["G4171"]],[11,14,["G3361"]],[14,15,["G2360"]],[15,16,["G1063"]],[16,20,["G1163"]],[20,21,["G1096"]],[21,22,["G235"]],[22,23,["G3588"]],[23,24,["G5056"]],[24,28,["G3768"]]]},{"k":24725,"v":[[0,1,["G1063"]],[1,2,["G1484"]],[2,4,["G1453"]],[4,5,["G1909"]],[5,6,["G1484"]],[6,7,["G2532"]],[7,8,["G932"]],[8,9,["G1909"]],[9,10,["G932"]],[10,11,["G2532"]],[11,14,["G2071"]],[14,15,["G4578"]],[15,18,["G2596","G5117"]],[18,19,["G2532"]],[19,22,["G2071"]],[22,23,["G3042"]],[23,24,["G2532"]],[24,25,["G5016"]],[25,26,["G5023"]],[26,29,["G746"]],[29,31,["G5604"]]]},{"k":24726,"v":[[0,1,["G1161"]],[1,3,["G991"]],[3,5,["G1438"]],[5,6,["G1063"]],[6,11,["G3860","G5209"]],[11,12,["G1519"]],[12,13,["G4892"]],[13,14,["G2532"]],[14,15,["G1519"]],[15,17,["G4864"]],[17,21,["G1194"]],[21,22,["G2532"]],[22,26,["G2476"]],[26,27,["G1909"]],[27,28,["G2232"]],[28,29,["G2532"]],[29,30,["G935"]],[30,33,["G1752","G1700"]],[33,34,["G1519"]],[34,36,["G3142"]],[36,38,["G846"]]]},{"k":24727,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2098"]],[3,4,["G1163"]],[4,5,["G4412"]],[5,7,["G2784"]],[7,8,["G1519"]],[8,9,["G3956"]],[9,10,["G1484"]]]},{"k":24728,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,5,["G71"]],[5,6,["G5209"]],[6,10,["G3860"]],[10,14,["G4305","G3361"]],[14,15,["G5101"]],[15,18,["G2980"]],[18,19,["G3366"]],[19,22,["G3191"]],[22,24,["G3739","G1437"]],[24,27,["G1325"]],[27,28,["G5213"]],[28,29,["G1722"]],[29,30,["G1565"]],[30,31,["G5610"]],[31,32,["G5124"]],[32,33,["G2980"]],[33,35,["G1063"]],[35,37,["G2075"]],[37,38,["G3756"]],[38,39,["G5210"]],[39,41,["G2980"]],[41,42,["G235"]],[42,43,["G3588"]],[43,44,["G40"]],[44,45,["G4151"]]]},{"k":24729,"v":[[0,1,["G1161"]],[1,3,["G80"]],[3,5,["G3860"]],[5,7,["G80"]],[7,8,["G1519"]],[8,9,["G2288"]],[9,10,["G2532"]],[10,12,["G3962"]],[12,14,["G5043"]],[14,15,["G2532"]],[15,16,["G5043"]],[16,19,["G1881"]],[19,20,["G1909"]],[20,22,["G1118"]],[22,23,["G2532"]],[23,31,["G2289","G846"]]]},{"k":24730,"v":[[0,1,["G2532"]],[1,4,["G2071"]],[4,5,["G3404"]],[5,6,["G5259"]],[6,7,["G3956"]],[7,12,["G1223","G3450","G3686"]],[12,13,["G1161"]],[13,17,["G5278"]],[17,18,["G1519"]],[18,20,["G5056"]],[20,22,["G3778"]],[22,25,["G4982"]]]},{"k":24731,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,5,["G1492"]],[5,6,["G3588"]],[6,7,["G946"]],[7,9,["G2050"]],[9,11,["G4483"]],[11,12,["G5259"]],[12,13,["G1158"]],[13,14,["G3588"]],[14,15,["G4396"]],[15,16,["G2476"]],[16,17,["G3699"]],[17,19,["G1163"]],[19,20,["G3756"]],[20,24,["G314"]],[24,25,["G3539"]],[25,26,["G5119"]],[26,28,["G3588"]],[28,31,["G1722"]],[31,32,["G2449"]],[32,33,["G5343"]],[33,34,["G1519"]],[34,35,["G3588"]],[35,36,["G3735"]]]},{"k":24732,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,6,["G1909"]],[6,7,["G3588"]],[7,8,["G1430"]],[8,9,["G3361"]],[9,11,["G2597"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G3614"]],[14,15,["G3366"]],[15,16,["G1525"]],[16,19,["G142"]],[19,21,["G5100"]],[21,23,["G1537"]],[23,24,["G848"]],[24,25,["G3614"]]]},{"k":24733,"v":[[0,1,["G2532"]],[1,5,["G5607"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G68"]],[8,9,["G3361"]],[9,11,["G1994"]],[11,12,["G1519","G3694"]],[12,16,["G142"]],[16,17,["G848"]],[17,18,["G2440"]]]},{"k":24734,"v":[[0,1,["G1161"]],[1,2,["G3759"]],[2,8,["G2192","G1722","G1064"]],[8,9,["G2532"]],[9,14,["G2337"]],[14,15,["G1722"]],[15,16,["G1565"]],[16,17,["G2250"]]]},{"k":24735,"v":[[0,1,["G1161"]],[1,2,["G4336"]],[2,4,["G2443"]],[4,5,["G5216"]],[5,6,["G5437"]],[6,7,["G1096"]],[7,8,["G3361"]],[8,11,["G5494"]]]},{"k":24736,"v":[[0,1,["G1063"]],[1,3,["G1565"]],[3,4,["G2250"]],[4,6,["G2071"]],[6,7,["G2347"]],[7,9,["G3634"]],[9,10,["G1096"]],[10,11,["G3756","(G5108)"]],[11,12,["G575"]],[12,14,["G746"]],[14,17,["G2937"]],[17,18,["G3739"]],[18,19,["G2316"]],[19,20,["G2936"]],[20,21,["G2193"]],[21,23,["G3568","(G2532)"]],[23,24,["G3364"]],[24,26,["G1096"]]]},{"k":24737,"v":[[0,1,["G2532"]],[1,2,["G1508"]],[2,5,["G2962"]],[5,7,["G2856"]],[7,9,["G2250"]],[9,10,["G3956","G3756"]],[10,11,["G4561"]],[11,14,["G4982","G302"]],[14,15,["G235"]],[15,19,["G1223","G3588","G1588"]],[19,20,["G3739"]],[20,23,["G1586"]],[23,26,["G2856"]],[26,27,["G3588"]],[27,28,["G2250"]]]},{"k":24738,"v":[[0,1,["G2532"]],[1,2,["G5119"]],[2,3,["G1437"]],[3,5,["G5100"]],[5,7,["G2036"]],[7,9,["G5213"]],[9,10,["G2400"]],[10,11,["G5602"]],[11,13,["G5547"]],[13,14,["G2228"]],[14,15,["G2400"]],[15,18,["G1563"]],[18,19,["G4100"]],[19,21,["G3361"]]]},{"k":24739,"v":[[0,1,["G1063"]],[1,3,["G5580"]],[3,4,["G2532"]],[4,6,["G5578"]],[6,8,["G1453"]],[8,9,["G2532"]],[9,11,["G1325"]],[11,12,["G4592"]],[12,13,["G2532"]],[13,14,["G5059"]],[14,16,["G635"]],[16,17,["G1487"]],[17,20,["G1415"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G1588"]]]},{"k":24740,"v":[[0,1,["G1161"]],[1,4,["G991","G5210"]],[4,5,["G2400"]],[5,8,["G4280"]],[8,9,["G5213"]],[9,11,["G3956"]]]},{"k":24741,"v":[[0,1,["G235"]],[1,2,["G1722"]],[2,3,["G1565"]],[3,4,["G2250"]],[4,5,["G3326"]],[5,6,["G1565"]],[6,7,["G2347"]],[7,8,["G3588"]],[8,9,["G2246"]],[9,12,["G4654"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G4582"]],[15,17,["G3756"]],[17,18,["G1325"]],[18,19,["G848"]],[19,20,["G5338"]]]},{"k":24742,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G792"]],[3,5,["G3772"]],[5,6,["(G2071)"]],[6,7,["G1601"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G1411"]],[10,11,["G3588"]],[11,13,["G1722"]],[13,14,["G3772"]],[14,17,["G4531"]]]},{"k":24743,"v":[[0,1,["G2532"]],[1,2,["G5119"]],[2,5,["G3700"]],[5,6,["G3588"]],[6,7,["G5207"]],[7,9,["G444"]],[9,10,["G2064"]],[10,11,["G1722"]],[11,13,["G3507"]],[13,14,["G3326"]],[14,15,["G4183"]],[15,16,["G1411"]],[16,17,["G2532"]],[17,18,["G1391"]]]},{"k":24744,"v":[[0,1,["G2532"]],[1,2,["G5119"]],[2,5,["G649"]],[5,6,["G848"]],[6,7,["G32"]],[7,8,["G2532"]],[8,11,["G1996"]],[11,12,["G848"]],[12,13,["G1588"]],[13,14,["G1537"]],[14,15,["G3588"]],[15,16,["G5064"]],[16,17,["G417"]],[17,18,["G575"]],[18,21,["G206"]],[21,24,["G1093"]],[24,25,["G2193"]],[25,28,["G206"]],[28,30,["G3772"]]]},{"k":24745,"v":[[0,1,["G1161"]],[1,2,["G3129"]],[2,4,["G3850"]],[4,5,["G575"]],[5,6,["G3588"]],[6,8,["G4808"]],[8,9,["G3752"]],[9,10,["G846"]],[10,11,["G2798"]],[11,12,["G1096"]],[12,13,["G2235"]],[13,14,["G527"]],[14,15,["G2532"]],[15,17,["G1631"]],[17,18,["G5444"]],[18,20,["G1097"]],[20,21,["G3754"]],[21,22,["G2330"]],[22,23,["G2076"]],[23,24,["G1451"]]]},{"k":24746,"v":[[0,1,["G3779"]],[1,2,["G5210"]],[2,5,["G2532"]],[5,6,["G3752"]],[6,9,["G1492"]],[9,11,["G5023"]],[11,14,["G1096"]],[14,15,["G1097"]],[15,16,["G3754"]],[16,18,["G2076"]],[18,19,["G1451"]],[19,21,["G1909"]],[21,23,["G2374"]]]},{"k":24747,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G3778"]],[7,8,["G1074"]],[8,10,["G3364"]],[10,11,["G3928"]],[11,12,["G3360"]],[12,13,["G3956"]],[13,15,["G5023"]],[15,17,["G1096"]]]},{"k":24748,"v":[[0,1,["G3772"]],[1,2,["G2532"]],[2,3,["G1093"]],[3,6,["G3928"]],[6,7,["G1161"]],[7,8,["G3450"]],[8,9,["G3056"]],[9,11,["G3364"]],[11,13,["G3928"]]]},{"k":24749,"v":[[0,1,["G1161"]],[1,2,["G4012"]],[2,3,["G1565"]],[3,4,["G2250"]],[4,5,["G2532"]],[5,7,["G5610"]],[7,8,["G1492"]],[8,10,["G3762"]],[10,12,["G3761"]],[12,13,["G3588"]],[13,14,["G32"]],[14,15,["G3588"]],[15,17,["G1722"]],[17,18,["G3772"]],[18,19,["G3761"]],[19,20,["G3588"]],[20,21,["G5207"]],[21,22,["G1508"]],[22,23,["G3588"]],[23,24,["G3962"]]]},{"k":24750,"v":[[0,3,["G991"]],[3,4,["G69"]],[4,5,["G2532"]],[5,6,["G4336"]],[6,7,["G1063"]],[7,9,["G1492"]],[9,10,["G3756"]],[10,11,["G4219"]],[11,12,["G3588"]],[12,13,["G2540"]],[13,14,["G2076"]]]},{"k":24751,"v":[[0,7,["G5613"]],[7,9,["G444"]],[9,13,["G590"]],[13,15,["G863"]],[15,16,["G848"]],[16,17,["G3614"]],[17,18,["G2532"]],[18,19,["G1325"]],[19,20,["G1849"]],[20,22,["G848"]],[22,23,["G1401"]],[23,24,["G2532"]],[24,27,["G1538"]],[27,28,["G848"]],[28,29,["G2041"]],[29,30,["G2532"]],[30,31,["G1781"]],[31,32,["G3588"]],[32,33,["G2377"]],[33,34,["G2443"]],[34,35,["G1127"]]]},{"k":24752,"v":[[0,1,["G1127"]],[1,3,["G3767"]],[3,4,["G1063"]],[4,6,["G1492"]],[6,7,["G3756"]],[7,8,["G4219"]],[8,9,["G3588"]],[9,10,["G2962"]],[10,12,["G3588"]],[12,13,["G3614"]],[13,14,["G2064"]],[14,16,["G3796"]],[16,17,["G2228"]],[17,19,["G3317"]],[19,20,["G2228"]],[20,23,["G219"]],[23,24,["G2228"]],[24,27,["G4404"]]]},{"k":24753,"v":[[0,1,["G3361"]],[1,2,["G2064"]],[2,3,["G1810"]],[3,5,["G2147"]],[5,6,["G5209"]],[6,7,["G2518"]]]},{"k":24754,"v":[[0,1,["G1161"]],[1,2,["G3739"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,8,["G3004"]],[8,10,["G3956"]],[10,11,["G1127"]]]},{"k":24755,"v":[[0,1,["(G3326)"]],[1,2,["G1417"]],[2,3,["G2250"]],[3,4,["G2258"]],[4,8,["G3588"]],[8,9,["G3957"]],[9,10,["G2532"]],[10,13,["G106"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,17,["G749"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G1122"]],[20,21,["G2212"]],[21,22,["G4459"]],[22,25,["G2902"]],[25,26,["G846"]],[26,27,["G1722"]],[27,28,["G1388"]],[28,33,["G615"]]]},{"k":24756,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,4,["G3361"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G1859"]],[7,9,["G3379"]],[9,11,["G2071"]],[11,13,["G2351"]],[13,15,["G3588"]],[15,16,["G2992"]]]},{"k":24757,"v":[[0,1,["G2532"]],[1,2,["G5607"]],[2,3,["G1722"]],[3,4,["G963"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G3614"]],[7,9,["G4613"]],[9,10,["G3588"]],[10,11,["G3015"]],[11,13,["G846"]],[13,16,["G2621"]],[16,18,["G2064"]],[18,20,["G1135"]],[20,21,["G2192"]],[21,24,["G211"]],[24,26,["G3464"]],[26,28,["G4101","G3487"]],[28,30,["G4185"]],[30,31,["G2532"]],[31,33,["G4937"]],[33,34,["G3588"]],[34,35,["G211"]],[35,37,["G2708"]],[37,39,["G2596"]],[39,40,["G846"]],[40,41,["G2776"]]]},{"k":24758,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G5100"]],[4,7,["G23"]],[7,8,["G4314"]],[8,9,["G1438"]],[9,10,["G2532"]],[10,11,["G3004"]],[11,12,["G5101"]],[12,14,["G3778"]],[14,15,["G684"]],[15,17,["G3588"]],[17,18,["G3464"]],[18,19,["G1096"]]]},{"k":24759,"v":[[0,1,["G1063"]],[1,2,["G5124"]],[2,5,["G1410"]],[5,6,["G4097"]],[6,9,["G1883"]],[9,11,["G5145"]],[11,12,["G1220"]],[12,13,["G2532"]],[13,16,["G1325"]],[16,18,["G3588"]],[18,19,["G4434"]],[19,20,["G2532"]],[20,23,["G1690"]],[23,24,["G846"]]]},{"k":24760,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,6,["G863","G846"]],[6,7,["G5101"]],[7,8,["G3930","G2873"]],[8,10,["G846"]],[10,13,["G2038"]],[13,15,["G2570"]],[15,16,["G2041"]],[16,17,["G1519"]],[17,18,["G1691"]]]},{"k":24761,"v":[[0,1,["G1063"]],[1,3,["G2192"]],[3,4,["G3588"]],[4,5,["G4434"]],[5,6,["G3326"]],[6,7,["G1438"]],[7,8,["G3842"]],[8,9,["G2532"]],[9,10,["G3752"]],[10,12,["G2309"]],[12,14,["G1410"]],[14,15,["G4160"]],[15,16,["G846"]],[16,17,["G2095"]],[17,18,["G1161"]],[18,19,["G1691"]],[19,21,["G2192"]],[21,22,["G3756"]],[22,23,["G3842"]]]},{"k":24762,"v":[[0,3,["G4160"]],[3,4,["G3739"]],[4,5,["G3778"]],[5,6,["G2192"]],[6,10,["G4301"]],[10,12,["G3462"]],[12,13,["G3450"]],[13,14,["G4983"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G1780"]]]},{"k":24763,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3699","G302"]],[6,7,["G5124"]],[7,8,["G2098"]],[8,11,["G2784"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G3650"]],[14,15,["G2889"]],[15,17,["G2532"]],[17,18,["G3739"]],[18,19,["G3778"]],[19,21,["G4160"]],[21,25,["G2980"]],[25,26,["G1519"]],[26,28,["G3422"]],[28,30,["G846"]]]},{"k":24764,"v":[[0,1,["G2532"]],[1,2,["G2455"]],[2,3,["G2469"]],[3,4,["G1520"]],[4,6,["G3588"]],[6,7,["G1427"]],[7,8,["G565"]],[8,9,["G4314"]],[9,10,["G3588"]],[10,12,["G749"]],[12,13,["G2443"]],[13,14,["G3860"]],[14,15,["G846"]],[15,17,["G846"]]]},{"k":24765,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G191"]],[4,8,["G5463"]],[8,9,["G2532"]],[9,10,["G1861"]],[10,12,["G1325"]],[12,13,["G846"]],[13,14,["G694"]],[14,15,["G2532"]],[15,17,["G2212"]],[17,18,["G4459"]],[18,21,["G2122"]],[21,22,["G3860"]],[22,23,["G846"]]]},{"k":24766,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4413"]],[3,4,["G2250"]],[4,7,["G106"]],[7,8,["G3753"]],[8,10,["G2380"]],[10,11,["G3588"]],[11,12,["G3957"]],[12,13,["G846"]],[13,14,["G3101"]],[14,15,["G3004"]],[15,17,["G846"]],[17,18,["G4226"]],[18,19,["G2309"]],[19,23,["G565"]],[23,25,["G2090"]],[25,26,["G2443"]],[26,29,["G5315"]],[29,30,["G3588"]],[30,31,["G3957"]]]},{"k":24767,"v":[[0,1,["G2532"]],[1,4,["G649"]],[4,5,["G1417"]],[5,7,["G848"]],[7,8,["G3101"]],[8,9,["G2532"]],[9,10,["G3004"]],[10,12,["G846"]],[12,13,["G5217"]],[13,15,["G1519"]],[15,16,["G3588"]],[16,17,["G4172"]],[17,18,["G2532"]],[18,21,["G528"]],[21,22,["G5213"]],[22,24,["G444"]],[24,25,["G941"]],[25,27,["G2765"]],[27,29,["G5204"]],[29,30,["G190"]],[30,31,["G846"]]]},{"k":24768,"v":[[0,1,["G2532"]],[1,2,["G3699","G1437"]],[2,6,["G1525"]],[6,7,["G2036"]],[7,10,["G3588"]],[10,14,["G3617"]],[14,15,["G3588"]],[15,16,["G1320"]],[16,17,["G3004"]],[17,18,["G4226"]],[18,19,["G2076"]],[19,20,["G3588"]],[20,21,["G2646"]],[21,22,["G3699"]],[22,25,["G5315"]],[25,26,["G3588"]],[26,27,["G3957"]],[27,28,["G3326"]],[28,29,["G3450"]],[29,30,["G3101"]]]},{"k":24769,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,4,["G1166"]],[4,5,["G5213"]],[5,7,["G3173"]],[7,9,["G508"]],[9,10,["G4766"]],[10,12,["G2092"]],[12,13,["G1563"]],[13,15,["G2090"]],[15,17,["G2254"]]]},{"k":24770,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3101"]],[3,5,["G1831"]],[5,6,["G2532"]],[6,7,["G2064"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G4172"]],[10,11,["G2532"]],[11,12,["G2147"]],[12,13,["G2531"]],[13,16,["G2036"]],[16,18,["G846"]],[18,19,["G2532"]],[19,22,["G2090"]],[22,23,["G3588"]],[23,24,["G3957"]]]},{"k":24771,"v":[[0,1,["G2532"]],[1,4,["G3798"]],[4,5,["(G1096)"]],[5,6,["G2064"]],[6,7,["G3326"]],[7,8,["G3588"]],[8,9,["G1427"]]]},{"k":24772,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,4,["G345"]],[4,5,["G2532"]],[5,7,["G2068"]],[7,8,["G2424"]],[8,9,["G2036"]],[9,10,["G281"]],[10,12,["G3004"]],[12,14,["G5213"]],[14,15,["G1520"]],[15,16,["G1537"]],[16,17,["G5216"]],[17,19,["G2068"]],[19,20,["G3326"]],[20,21,["G1700"]],[21,23,["G3860"]],[23,24,["G3165"]]]},{"k":24773,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G756"]],[3,6,["G3076"]],[6,7,["G2532"]],[7,9,["G3004"]],[9,11,["G846"]],[11,14,["G1527"]],[14,15,["(G3385)"]],[15,17,["G1473"]],[17,18,["G2532"]],[18,19,["G243"]],[19,21,["(G3385)"]],[21,23,["G1473"]]]},{"k":24774,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,10,["G1520"]],[10,11,["G1537"]],[11,12,["G3588"]],[12,13,["G1427"]],[13,15,["G1686"]],[15,16,["G3326"]],[16,17,["G1700"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G5165"]]]},{"k":24775,"v":[[0,1,["G3588"]],[1,2,["G5207"]],[2,4,["G444"]],[4,5,["G3303"]],[5,6,["G5217"]],[6,7,["G2531"]],[7,10,["G1125"]],[10,11,["G4012"]],[11,12,["G846"]],[12,13,["G1161"]],[13,14,["G3759"]],[14,16,["G1565"]],[16,17,["G444"]],[17,18,["G1223"]],[18,19,["G3739"]],[19,20,["G3588"]],[20,21,["G5207"]],[21,23,["G444"]],[23,25,["G3860"]],[25,26,["G2570"]],[26,27,["G2258"]],[27,28,["(G846)"]],[28,30,["G1565"]],[30,31,["G444"]],[31,32,["G1487"]],[32,35,["G3756"]],[35,37,["G1080"]]]},{"k":24776,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G2068"]],[5,6,["G2424"]],[6,7,["G2983"]],[7,8,["G740"]],[8,10,["G2127"]],[10,12,["G2806"]],[12,14,["G2532"]],[14,15,["G1325"]],[15,17,["G846"]],[17,18,["G2532"]],[18,19,["G2036"]],[19,20,["G2983"]],[20,21,["G5315"]],[21,22,["G5124"]],[22,23,["G2076"]],[23,24,["G3450"]],[24,25,["G4983"]]]},{"k":24777,"v":[[0,1,["G2532"]],[1,3,["G2983"]],[3,4,["G3588"]],[4,5,["G4221"]],[5,11,["G2168"]],[11,13,["G1325"]],[13,16,["G846"]],[16,17,["G2532"]],[17,19,["G3956"]],[19,20,["G4095"]],[20,21,["G1537"]],[21,22,["G846"]]]},{"k":24778,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G5124"]],[6,7,["G2076"]],[7,8,["G3450"]],[8,9,["G129"]],[9,10,["(G3588)"]],[10,11,["G3588"]],[11,12,["G2537"]],[12,13,["G1242"]],[13,16,["G1632"]],[16,17,["G4012"]],[17,18,["G4183"]]]},{"k":24779,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,8,["G4095"]],[8,9,["G3364"]],[9,10,["G3765"]],[10,11,["G1537"]],[11,12,["G3588"]],[12,13,["G1081"]],[13,15,["G3588"]],[15,16,["G288"]],[16,17,["G2193"]],[17,18,["G1565"]],[18,19,["G2250"]],[19,20,["G3752"]],[20,22,["G4095"]],[22,23,["G846"]],[23,24,["G2537"]],[24,25,["G1722"]],[25,26,["G3588"]],[26,27,["G932"]],[27,29,["G2316"]]]},{"k":24780,"v":[[0,1,["G2532"]],[1,7,["G5214"]],[7,10,["G1831"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G3735"]],[13,15,["G1636"]]]},{"k":24781,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G3956"]],[6,10,["G4624"]],[10,12,["G1722"]],[12,13,["G1698","(G1722)"]],[13,14,["G5026"]],[14,15,["G3571"]],[15,16,["G3754"]],[16,19,["G1125"]],[19,22,["G3960"]],[22,23,["G3588"]],[23,24,["G4166"]],[24,25,["G2532"]],[25,26,["G3588"]],[26,27,["G4263"]],[27,30,["G1287"]]]},{"k":24782,"v":[[0,1,["G235"]],[1,2,["G3326"]],[2,5,["G3165"]],[5,6,["G1453"]],[6,10,["G4254"]],[10,11,["G5209"]],[11,12,["G1519"]],[12,13,["G1056"]]]},{"k":24783,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G5346"]],[3,5,["G846"]],[5,6,["G2532","G1487"]],[6,7,["G3956"]],[7,10,["G4624"]],[10,11,["G235"]],[11,13,["G3756"]],[13,14,["G1473"]]]},{"k":24784,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G281"]],[6,8,["G3004"]],[8,10,["G4671"]],[10,11,["G3754"]],[11,13,["G4594"]],[13,15,["G1722"]],[15,16,["G5026"]],[16,17,["G3571"]],[17,18,["G4250"]],[18,19,["(G2228)"]],[19,20,["G220"]],[20,21,["G5455"]],[21,22,["G1364"]],[22,25,["G533"]],[25,26,["G3165"]],[26,27,["G5151"]]]},{"k":24785,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3004"]],[3,5,["G3123"]],[5,6,["G1537","G4053"]],[6,7,["G1437"]],[7,8,["G3165"]],[8,9,["G1163"]],[9,11,["G4880"]],[11,12,["G4671"]],[12,20,["G3364","G533","G4571","(G1161)"]],[20,21,["G5615"]],[21,22,["G2532"]],[22,23,["G3004"]],[23,25,["G3956"]]]},{"k":24786,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G1519"]],[4,6,["G5564"]],[6,7,["G3739"]],[7,9,["G3686"]],[9,10,["G1068"]],[10,11,["G2532"]],[11,13,["G3004"]],[13,15,["G848"]],[15,16,["G3101"]],[16,17,["G2523"]],[17,19,["G5602"]],[19,20,["G2193"]],[20,23,["G4336"]]]},{"k":24787,"v":[[0,1,["G2532"]],[1,3,["G3880"]],[3,4,["G3326"]],[4,5,["G1438"]],[5,6,["G4074"]],[6,7,["G2532"]],[7,8,["G2385"]],[8,9,["G2532"]],[9,10,["G2491"]],[10,11,["G2532"]],[11,12,["G756"]],[12,16,["G1568"]],[16,17,["G2532"]],[17,21,["G85"]]]},{"k":24788,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G3450"]],[5,6,["G5590"]],[6,7,["G2076"]],[7,9,["G4036"]],[9,10,["G2193"]],[10,11,["G2288"]],[11,12,["G3306"]],[12,14,["G5602"]],[14,15,["G2532"]],[15,16,["G1127"]]]},{"k":24789,"v":[[0,1,["G2532"]],[1,4,["G4281"]],[4,6,["G3397"]],[6,8,["G4098"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G1093"]],[11,12,["G2532"]],[12,13,["G4336"]],[13,14,["G2443"]],[14,15,["G1487"]],[15,17,["G2076"]],[17,18,["G1415"]],[18,19,["G3588"]],[19,20,["G5610"]],[20,22,["G3928"]],[22,23,["G575"]],[23,24,["G846"]]]},{"k":24790,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,4,["G5"]],[4,5,["G3962"]],[5,7,["G3956"]],[7,9,["G1415"]],[9,11,["G4671"]],[11,13,["G3911"]],[13,14,["G5124"]],[14,15,["G4221"]],[15,16,["G575"]],[16,17,["G1700"]],[17,18,["G235"]],[18,19,["G3756"]],[19,20,["G5101"]],[20,21,["G1473"]],[21,22,["G2309"]],[22,23,["G235"]],[23,24,["G5101"]],[24,25,["G4771"]],[25,26,[]]]},{"k":24791,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G2532"]],[4,5,["G2147"]],[5,6,["G846"]],[6,7,["G2518"]],[7,8,["G2532"]],[8,9,["G3004"]],[9,11,["G4074"]],[11,12,["G4613"]],[12,13,["G2518"]],[13,15,["G2480"]],[15,16,["G3756"]],[16,18,["G1127"]],[18,19,["G3391"]],[19,20,["G5610"]]]},{"k":24792,"v":[[0,1,["G1127"]],[1,3,["G2532"]],[3,4,["G4336"]],[4,5,["G3363"]],[5,7,["G1525"]],[7,8,["G1519"]],[8,9,["G3986"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G3303"]],[12,14,["G4289"]],[14,15,["G1161"]],[15,16,["G3588"]],[16,17,["G4561"]],[17,19,["G772"]]]},{"k":24793,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,5,["G565"]],[5,7,["G4336"]],[7,9,["G2036"]],[9,10,["G3588"]],[10,11,["G846"]],[11,12,["G3056"]]]},{"k":24794,"v":[[0,1,["G2532"]],[1,4,["G5290"]],[4,6,["G2147"]],[6,7,["G846"]],[7,8,["G2518"]],[8,9,["G3825"]],[9,10,["G1063"]],[10,11,["G846"]],[11,12,["G3788"]],[12,13,["G2258"]],[13,14,["G916"]],[14,15,["G2532","G3756"]],[15,16,["G1492"]],[16,18,["G5101"]],[18,20,["G611"]],[20,21,["G846"]]]},{"k":24795,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G3588"]],[4,6,["G5154"]],[6,7,["G2532"]],[7,8,["G3004"]],[8,10,["G846"]],[10,12,["G2518"]],[12,13,["G3063"]],[13,14,["G2532"]],[14,17,["G373"]],[17,20,["G566"]],[20,21,["G3588"]],[21,22,["G5610"]],[22,24,["G2064"]],[24,25,["G2400"]],[25,26,["G3588"]],[26,27,["G5207"]],[27,29,["G444"]],[29,31,["G3860"]],[31,32,["G1519"]],[32,33,["G3588"]],[33,34,["G5495"]],[34,36,["G268"]]]},{"k":24796,"v":[[0,2,["G1453"]],[2,5,["G71"]],[5,6,["G2400"]],[6,9,["G3860"]],[9,10,["G3165"]],[10,13,["G1448"]]]},{"k":24797,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G846"]],[4,5,["G2089"]],[5,6,["G2980"]],[6,7,["G3854"]],[7,8,["G2455"]],[8,9,["G1520"]],[9,11,["G3588"]],[11,12,["G1427"]],[12,13,["G2532"]],[13,14,["G3326"]],[14,15,["G846"]],[15,17,["G4183"]],[17,18,["G3793"]],[18,19,["G3326"]],[19,20,["G3162"]],[20,21,["G2532"]],[21,22,["G3586"]],[22,23,["G3844"]],[23,24,["G3588"]],[24,26,["G749"]],[26,27,["G2532"]],[27,28,["G3588"]],[28,29,["G1122"]],[29,30,["G2532"]],[30,31,["G3588"]],[31,32,["G4245"]]]},{"k":24798,"v":[[0,1,["G1161"]],[1,4,["G3860"]],[4,5,["G846"]],[5,7,["G1325"]],[7,8,["G846"]],[8,10,["G4953"]],[10,11,["G3004"]],[11,12,["G3739","G302"]],[12,15,["G5368"]],[15,17,["G846"]],[17,18,["G2076"]],[18,20,["G2902"]],[20,21,["G846"]],[21,22,["G2532"]],[22,26,["G520","G806"]]]},{"k":24799,"v":[[0,1,["G2532"]],[1,7,["G2064"]],[7,9,["G4334"]],[9,10,["G2112"]],[10,12,["G846"]],[12,14,["G3004"]],[14,15,["G4461"]],[15,16,["G4461"]],[16,17,["G2532"]],[17,18,["G2705"]],[18,19,["G846"]]]},{"k":24800,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1911"]],[3,4,["G848"]],[4,5,["G5495"]],[5,6,["G1909"]],[6,7,["G846"]],[7,8,["G2532"]],[8,9,["G2902"]],[9,10,["G846"]]]},{"k":24801,"v":[[0,1,["G1161"]],[1,2,["G1520"]],[2,7,["G3936"]],[7,8,["G4685"]],[8,10,["G3162"]],[10,12,["G3817"]],[12,14,["G1401"]],[14,16,["G3588"]],[16,18,["G749"]],[18,19,["G2532"]],[19,21,["G851"]],[21,22,["G846"]],[22,23,["G5621"]]]},{"k":24802,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,11,["G1831"]],[11,12,["G5613"]],[12,13,["G1909"]],[13,15,["G3027"]],[15,16,["G3326"]],[16,17,["G3162"]],[17,18,["G2532"]],[18,20,["G3586"]],[20,22,["G4815"]],[22,23,["G3165"]]]},{"k":24803,"v":[[0,2,["G2252"]],[2,3,["G2596","G2250"]],[3,4,["G4314"]],[4,5,["G5209"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G2411"]],[8,9,["G1321"]],[9,10,["G2532"]],[10,12,["G2902"]],[12,13,["G3165"]],[13,14,["G3756"]],[14,15,["G235","(G2443)"]],[15,16,["G3588"]],[16,17,["G1124"]],[17,20,["G4137"]]]},{"k":24804,"v":[[0,1,["G2532"]],[1,3,["G3956"]],[3,4,["G863"]],[4,5,["G846"]],[5,7,["G5343"]]]},{"k":24805,"v":[[0,1,["G2532"]],[1,3,["G190"]],[3,4,["G846"]],[4,5,["G1520"]],[5,6,["G5100"]],[6,8,["G3495"]],[8,9,["G4016"]],[9,12,["G4616"]],[12,14,["G1909"]],[14,16,["G1131"]],[16,18,["G2532"]],[18,19,["G3588"]],[19,21,["G3495"]],[21,24,["G2902"]],[24,25,["G846"]]]},{"k":24806,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2641"]],[3,4,["G3588"]],[4,6,["G4616"]],[6,8,["G5343"]],[8,9,["G575"]],[9,10,["G846"]],[10,11,["G1131"]]]},{"k":24807,"v":[[0,1,["G2532"]],[1,5,["G520","G2424"]],[5,6,["G4314"]],[6,7,["G3588"]],[7,9,["G749"]],[9,10,["G2532"]],[10,12,["G846"]],[12,14,["G4905"]],[14,15,["G3956"]],[15,16,["G3588"]],[16,18,["G749"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G4245"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G1122"]]]},{"k":24808,"v":[[0,1,["G2532"]],[1,2,["G4074"]],[2,3,["G190"]],[3,4,["G846"]],[4,6,["G575","G3113"]],[6,7,["G2193"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G833"]],[10,12,["G3588"]],[12,14,["G749"]],[14,15,["G2532"]],[15,17,["G2258","G4775"]],[17,18,["G3326"]],[18,19,["G3588"]],[19,20,["G5257"]],[20,21,["G2532"]],[21,22,["G2328"]],[22,24,["G4314"]],[24,25,["G3588"]],[25,26,["G5457"]]]},{"k":24809,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G2532"]],[5,6,["G3650"]],[6,7,["G3588"]],[7,8,["G4892"]],[8,9,["G2212"]],[9,11,["G3141"]],[11,12,["G2596"]],[12,13,["G2424"]],[13,18,["G2289","G846"]],[18,19,["G2532"]],[19,20,["G2147"]],[20,21,["G3756"]]]},{"k":24810,"v":[[0,1,["G1063"]],[1,2,["G4183"]],[2,5,["G5576"]],[5,6,["G2596"]],[6,7,["G846"]],[7,8,["G2532"]],[8,9,["G846"]],[9,10,["G3141"]],[10,13,["G2258","G3756","G2470"]]]},{"k":24811,"v":[[0,1,["G2532"]],[1,3,["G450"]],[3,4,["G5100"]],[4,8,["G5576"]],[8,9,["G2596"]],[9,10,["G846"]],[10,11,["G3004"]]]},{"k":24812,"v":[[0,1,["G2249"]],[1,2,["G191"]],[2,3,["G846"]],[3,4,["G3004"]],[4,5,["G1473"]],[5,7,["G2647"]],[7,8,["G5126"]],[8,9,["G3485"]],[9,14,["G5499"]],[14,15,["G2532"]],[15,16,["G1223"]],[16,17,["G5140"]],[17,18,["G2250"]],[18,21,["G3618"]],[21,22,["G243"]],[22,25,["G886"]]]},{"k":24813,"v":[[0,1,["G2532"]],[1,2,["G3761"]],[2,3,["G3779"]],[3,5,["G846"]],[5,6,["G3141"]],[6,8,["G2258","G2470"]]]},{"k":24814,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,4,["G749"]],[4,6,["G450"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G3319"]],[9,11,["G1905"]],[11,12,["G2424"]],[12,13,["G3004","(G3756)"]],[13,14,["G611"]],[14,16,["G3762"]],[16,17,["G5101"]],[17,21,["G3778"]],[21,23,["G2649"]],[23,24,["G4675"]]]},{"k":24815,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,5,["G4623"]],[5,6,["G2532"]],[6,7,["G611"]],[7,8,["G3762"]],[8,9,["G3825"]],[9,10,["G3588"]],[10,12,["G749"]],[12,13,["G1905"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G3004"]],[16,18,["G846"]],[18,19,["G1488"]],[19,20,["G4771"]],[20,21,["G3588"]],[21,22,["G5547"]],[22,23,["G3588"]],[23,24,["G5207"]],[24,26,["G3588"]],[26,27,["G2128"]]]},{"k":24816,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G1473"]],[4,5,["G1510"]],[5,6,["G2532"]],[6,9,["G3700"]],[9,10,["G3588"]],[10,11,["G5207"]],[11,13,["G444"]],[13,14,["G2521"]],[14,15,["G1537"]],[15,18,["G1188"]],[18,20,["G1411"]],[20,21,["G2532"]],[21,22,["G2064"]],[22,23,["G3326"]],[23,24,["G3588"]],[24,25,["G3507"]],[25,27,["G3772"]]]},{"k":24817,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G1284"]],[5,6,["G848"]],[6,7,["G5509"]],[7,9,["G3004"]],[9,10,["G5101"]],[10,11,["G2192","G5532"]],[11,14,["G2089"]],[14,15,["G3144"]]]},{"k":24818,"v":[[0,3,["G191"]],[3,4,["G3588"]],[4,5,["G988"]],[5,6,["G5101"]],[6,7,["G5316"]],[7,8,["G5213"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G3956"]],[11,12,["G2632"]],[12,13,["G846"]],[13,15,["G1511"]],[15,16,["G1777"]],[16,18,["G2288"]]]},{"k":24819,"v":[[0,1,["G2532"]],[1,2,["G5100"]],[2,3,["G756"]],[3,6,["G1716"]],[6,7,["G846"]],[7,8,["G2532"]],[8,10,["G4028"]],[10,11,["G846"]],[11,12,["G4383"]],[12,13,["G2532"]],[13,15,["G2852"]],[15,16,["G846"]],[16,17,["G2532"]],[17,19,["G3004"]],[19,21,["G846"]],[21,22,["G4395"]],[22,23,["G2532"]],[23,24,["G3588"]],[24,25,["G5257"]],[25,27,["G906"]],[27,28,["G846"]],[28,34,["G4475"]]]},{"k":24820,"v":[[0,1,["G2532"]],[1,3,["G4074"]],[3,4,["G5607"]],[4,5,["G2736"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G833"]],[8,10,["G2064"]],[10,11,["G3391"]],[11,13,["G3588"]],[13,14,["G3814"]],[14,16,["G3588"]],[16,18,["G749"]]]},{"k":24821,"v":[[0,1,["G2532"]],[1,4,["G1492"]],[4,5,["G4074"]],[5,6,["G2328"]],[6,10,["G1689"]],[10,11,["G846"]],[11,13,["G3004"]],[13,14,["G2532"]],[14,15,["G4771"]],[15,17,["G2258"]],[17,18,["G3326"]],[18,19,["G2424"]],[19,21,["G3479"]]]},{"k":24822,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G720"]],[3,4,["G3004"]],[4,6,["G1492"]],[6,7,["G3756"]],[7,8,["G3761"]],[8,9,["G1987"]],[9,11,["G5101"]],[11,12,["G4771"]],[12,13,["G3004"]],[13,14,["G2532"]],[14,16,["G1831"]],[16,17,["G1854"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G4259"]],[20,21,["G2532"]],[21,23,["G220"]],[23,24,["G5455"]]]},{"k":24823,"v":[[0,1,["G2532"]],[1,3,["G3814"]],[3,4,["G1492"]],[4,5,["G846"]],[5,6,["G3825"]],[6,8,["G756"]],[8,10,["G3004"]],[10,15,["G3936"]],[15,16,["G3778"]],[16,17,["G2076"]],[17,19,["G1537"]],[19,20,["G846"]]]},{"k":24824,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G720"]],[3,5,["G3825"]],[5,6,["G2532"]],[6,8,["G3397"]],[8,9,["G3326"]],[9,13,["G3936"]],[13,14,["G3004"]],[14,15,["G3825"]],[15,17,["G4074"]],[17,18,["G230"]],[18,20,["G1488"]],[20,22,["G1537"]],[22,23,["G846"]],[23,24,["G1063"]],[24,25,["(G2532)"]],[25,26,["G1488"]],[26,28,["G1057"]],[28,29,["G2532"]],[29,30,["G4675"]],[30,31,["G2981"]],[31,32,["G3662"]],[32,33,[]]]},{"k":24825,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G756"]],[3,5,["G332"]],[5,6,["G2532"]],[6,8,["G3660"]],[8,11,["G1492"]],[11,12,["G3756"]],[12,13,["G5126"]],[13,14,["G444"]],[14,16,["G3739"]],[16,18,["G3004"]]]},{"k":24826,"v":[[0,1,["G2532"]],[1,2,["(G1537)"]],[2,4,["G1208"]],[4,6,["G220"]],[6,7,["G5455"]],[7,8,["G2532"]],[8,9,["G4074"]],[9,12,["G363"]],[12,13,["G3588"]],[13,14,["G4487"]],[14,15,["G3739"]],[15,16,["G2424"]],[16,17,["G2036"]],[17,19,["G846"]],[19,20,["G4250"]],[20,22,["G220"]],[22,23,["G5455"]],[23,24,["G1364"]],[24,27,["G533"]],[27,28,["G3165"]],[28,29,["G5151"]],[29,30,["G2532"]],[30,34,["G1911"]],[34,36,["G2799"]]]},{"k":24827,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G1909"]],[3,4,["G3588"]],[4,5,["G4404"]],[5,6,["G3588"]],[6,8,["G749"]],[8,9,["G4160"]],[9,11,["G4824"]],[11,12,["G3326"]],[12,13,["G3588"]],[13,14,["G4245"]],[14,15,["G2532"]],[15,16,["G1122"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G3650"]],[19,20,["G4892"]],[20,22,["G1210"]],[22,23,["G2424"]],[23,27,["G667"]],[27,28,["G2532"]],[28,29,["G3860"]],[29,32,["G4091"]]]},{"k":24828,"v":[[0,1,["G2532"]],[1,2,["G4091"]],[2,3,["G1905"]],[3,4,["G846"]],[4,5,["G1488"]],[5,6,["G4771"]],[6,7,["G3588"]],[7,8,["G935"]],[8,10,["G3588"]],[10,11,["G2453"]],[11,12,["G1161"]],[12,13,["G3588"]],[13,14,["G611"]],[14,15,["G2036"]],[15,17,["G846"]],[17,18,["G4771"]],[18,19,["G3004"]],[19,20,[]]]},{"k":24829,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G2723"]],[5,6,["G846"]],[6,9,["G4183"]],[9,10,["G1161"]],[10,11,["G3588"]],[11,12,["G611"]],[12,13,["G3762"]]]},{"k":24830,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,3,["G1905"]],[3,4,["G846"]],[4,5,["G3825"]],[5,6,["G3004"]],[6,7,["G611"]],[7,8,["(G3756)"]],[8,9,["G3762"]],[9,10,["G2396"]],[10,13,["G4214"]],[13,16,["G2649"]],[16,17,["G4675"]]]},{"k":24831,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G3765"]],[3,4,["G611"]],[4,5,["G3762"]],[5,7,["G5620"]],[7,8,["G4091"]],[8,9,["G2296"]]]},{"k":24832,"v":[[0,1,["G1161"]],[1,2,["G2596"]],[2,4,["G1859"]],[4,6,["G630"]],[6,8,["G846"]],[8,9,["G1520"]],[9,10,["G1198"]],[10,11,["G3746"]],[11,13,["G154"]]]},{"k":24833,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,5,["G3004"]],[5,6,["G912"]],[6,9,["G1210"]],[9,10,["G3326"]],[10,17,["G4955"]],[17,18,["G3748"]],[18,20,["G4160"]],[20,21,["G5408"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G4714"]]]},{"k":24834,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3793"]],[3,5,["G310"]],[5,6,["G756"]],[6,8,["G154"]],[8,12,["G2531"]],[12,15,["G104"]],[15,16,["G4160"]],[16,18,["G846"]]]},{"k":24835,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,3,["G611"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G2309"]],[6,10,["G630"]],[10,12,["G5213"]],[12,13,["G3588"]],[13,14,["G935"]],[14,16,["G3588"]],[16,17,["G2453"]]]},{"k":24836,"v":[[0,1,["G1063"]],[1,3,["G1097"]],[3,4,["G3754"]],[4,5,["G3588"]],[5,7,["G749"]],[7,9,["G3860"]],[9,10,["G846"]],[10,11,["G1223"]],[11,12,["G5355"]]]},{"k":24837,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G383"]],[5,6,["G3588"]],[6,7,["G3793"]],[7,8,["G2443"]],[8,11,["G3123"]],[11,12,["G630"]],[12,13,["G912"]],[13,15,["G846"]]]},{"k":24838,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,3,["G611"]],[3,5,["G2036"]],[5,6,["G3825"]],[6,8,["G846"]],[8,9,["G5101"]],[9,10,["G2309"]],[10,12,["G3767"]],[12,16,["G4160"]],[16,19,["G3739"]],[19,21,["G3004"]],[21,22,["G3588"]],[22,23,["G935"]],[23,25,["G3588"]],[25,26,["G2453"]]]},{"k":24839,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G2896"]],[4,5,["G3825"]],[5,6,["G4717"]],[6,7,["G846"]]]},{"k":24840,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G1063"]],[6,7,["G5101"]],[7,8,["G2556"]],[8,11,["G4160"]],[11,12,["G1161"]],[12,13,["G3588"]],[13,15,["G2896"]],[15,18,["G4056"]],[18,19,["G4717"]],[19,20,["G846"]]]},{"k":24841,"v":[[0,1,["G1161"]],[1,3,["G4091"]],[3,4,["G1014"]],[4,6,["G4160","G2425"]],[6,7,["G3588"]],[7,8,["G3793"]],[8,9,["G630"]],[9,10,["G912"]],[10,12,["G846"]],[12,13,["G2532"]],[13,14,["G3860"]],[14,15,["G2424"]],[15,19,["G5417"]],[19,21,["G2443"]],[21,23,["G4717"]]]},{"k":24842,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4757"]],[3,6,["G520","G846"]],[6,7,["G2080"]],[7,8,["G3588"]],[8,9,["G833"]],[9,10,["G3603"]],[10,11,["G4232"]],[11,12,["G2532"]],[12,15,["G4779"]],[15,16,["G3588"]],[16,17,["G3650"]],[17,18,["G4686"]]]},{"k":24843,"v":[[0,1,["G2532"]],[1,5,["G1746","G846"]],[5,6,["G4209"]],[6,7,["G2532"]],[7,8,["G4120"]],[8,10,["G4735"]],[10,12,["G174"]],[12,16,["G4060"]],[16,17,["G846"]],[17,18,[]]]},{"k":24844,"v":[[0,1,["G2532"]],[1,2,["G756"]],[2,4,["G782"]],[4,5,["G846"]],[5,6,["G5463"]],[6,7,["G935"]],[7,9,["G3588"]],[9,10,["G2453"]]]},{"k":24845,"v":[[0,1,["G2532"]],[1,3,["G5180"]],[3,4,["G846"]],[4,6,["G3588"]],[6,7,["G2776"]],[7,10,["G2563"]],[10,11,["G2532"]],[11,14,["G1716"]],[14,15,["G846"]],[15,16,["G2532"]],[16,17,["G5087"]],[17,19,["G1119"]],[19,20,["G4352"]],[20,21,["G846"]]]},{"k":24846,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G1702"]],[5,6,["G846"]],[6,9,["G1562"]],[9,10,["G3588"]],[10,11,["G4209"]],[11,13,["G846"]],[13,14,["G2532"]],[14,19,["G1746","G2398","G2440"]],[19,20,["G846"]],[20,21,["G2532"]],[21,24,["G1806","G846"]],[24,25,["G2443"]],[25,26,["G4717"]],[26,27,["G846"]]]},{"k":24847,"v":[[0,1,["G2532"]],[1,3,["G29"]],[3,4,["G5100"]],[4,5,["G4613"]],[5,7,["G2956"]],[7,10,["G3855"]],[10,11,["G2064"]],[11,13,["G575"]],[13,15,["G68"]],[15,16,["G3588"]],[16,17,["G3962"]],[17,19,["G223"]],[19,20,["G2532"]],[20,21,["G4504"]],[21,22,["G2443"]],[22,23,["G142"]],[23,24,["G846"]],[24,25,["G4716"]]]},{"k":24848,"v":[[0,1,["G2532"]],[1,3,["G5342"]],[3,4,["G846"]],[4,5,["G1909"]],[5,7,["G5117"]],[7,8,["G1115"]],[8,10,["G3603"]],[10,12,["G3177"]],[12,14,["G5117"]],[14,17,["G2898"]]]},{"k":24849,"v":[[0,1,["G2532"]],[1,3,["G1325"]],[3,4,["G846"]],[4,6,["G4095"]],[6,7,["G3631"]],[7,10,["G4669"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,13,["G2983"]],[13,15,["G3756"]]]},{"k":24850,"v":[[0,1,["G2532"]],[1,5,["G4717"]],[5,6,["G846"]],[6,8,["G1266"]],[8,9,["G846"]],[9,10,["G2440"]],[10,11,["G906"]],[11,12,["G2819"]],[12,13,["G1909"]],[13,14,["G846"]],[14,17,["G5101","G5101"]],[17,19,["G142"]]]},{"k":24851,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,5,["G5154"]],[5,6,["G5610"]],[6,7,["G2532"]],[7,9,["G4717"]],[9,10,["G846"]]]},{"k":24852,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1923"]],[3,5,["G846"]],[5,6,["G156"]],[6,7,["G2258"]],[7,9,["G1924"]],[9,10,["G3588"]],[10,11,["G935"]],[11,13,["G3588"]],[13,14,["G2453"]]]},{"k":24853,"v":[[0,1,["G2532"]],[1,2,["G4862"]],[2,3,["G846"]],[3,5,["G4717"]],[5,6,["G1417"]],[6,7,["G3027"]],[7,9,["G1520"]],[9,10,["G1537"]],[10,13,["G1188"]],[13,14,["G2532"]],[14,16,["G1520"]],[16,17,["G1537"]],[17,18,["G846"]],[18,19,["G2176"]]]},{"k":24854,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1124"]],[3,5,["G4137"]],[5,7,["G3004"]],[7,8,["G2532"]],[8,11,["G3049"]],[11,12,["G3326"]],[12,14,["G459"]]]},{"k":24855,"v":[[0,1,["G2532"]],[1,5,["G3899"]],[5,7,["G987"]],[7,8,["G846"]],[8,9,["G2795"]],[9,10,["G848"]],[10,11,["G2776"]],[11,12,["G2532"]],[12,13,["G3004"]],[13,14,["G3758"]],[14,17,["G2647"]],[17,18,["G3588"]],[18,19,["G3485"]],[19,20,["G2532"]],[20,21,["G3618"]],[21,23,["G1722"]],[23,24,["G5140"]],[24,25,["G2250"]]]},{"k":24856,"v":[[0,1,["G4982"]],[1,2,["G4572"]],[2,3,["G2532"]],[3,5,["G2597"]],[5,6,["G575"]],[6,7,["G3588"]],[7,8,["G4716"]]]},{"k":24857,"v":[[0,0,["(G1161)"]],[0,1,["G3668"]],[1,2,["G2532"]],[2,3,["G3588"]],[3,5,["G749"]],[5,6,["G1702"]],[6,7,["G3004"]],[7,8,["G4314"]],[8,9,["G240"]],[9,10,["G3326"]],[10,11,["G3588"]],[11,12,["G1122"]],[12,14,["G4982"]],[14,15,["G243"]],[15,16,["G1438"]],[16,18,["G1410","G3756"]],[18,19,["G4982"]]]},{"k":24858,"v":[[0,2,["G5547"]],[2,3,["G3588"]],[3,4,["G935"]],[4,6,["G2474"]],[6,7,["G2597"]],[7,8,["G3568"]],[8,9,["G575"]],[9,10,["G3588"]],[10,11,["G4716"]],[11,12,["G2443"]],[12,15,["G1492"]],[15,16,["G2532"]],[16,17,["G4100"]],[17,18,["G2532"]],[18,23,["G4957"]],[23,24,["G846"]],[24,25,["G3679"]],[25,26,["G846"]]]},{"k":24859,"v":[[0,1,["G1161"]],[1,4,["G1623"]],[4,5,["G5610"]],[5,7,["G1096"]],[7,9,["G1096"]],[9,10,["G4655"]],[10,11,["G1909"]],[11,12,["G3588"]],[12,13,["G3650"]],[13,14,["G1093"]],[14,15,["G2193"]],[15,17,["G1766"]],[17,18,["G5610"]]]},{"k":24860,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G1766"]],[4,5,["G5610"]],[5,6,["G2424"]],[6,7,["G994"]],[7,10,["G3173"]],[10,11,["G5456"]],[11,12,["G3004"]],[12,13,["G1682"]],[13,14,["G1682"]],[14,15,["G2982"]],[15,16,["G4518"]],[16,18,["G3603"]],[18,20,["G3177"]],[20,21,["G3450"]],[21,22,["G2316"]],[22,23,["G3450"]],[23,24,["G2316"]],[24,25,["G5101"]],[25,28,["G1459"]],[28,29,["G3165"]]]},{"k":24861,"v":[[0,1,["G2532"]],[1,2,["G5100"]],[2,7,["G3936"]],[7,10,["G191"]],[10,12,["G3004"]],[12,13,["G2400"]],[13,15,["G5455"]],[15,16,["G2243"]]]},{"k":24862,"v":[[0,1,["G1161"]],[1,2,["G1520"]],[2,3,["G5143"]],[3,4,["G2532"]],[4,8,["G1072","G4699"]],[8,10,["G3690"]],[10,11,["G5037"]],[11,14,["G4060"]],[14,16,["G2563"]],[16,17,["G2532"]],[17,21,["G4222","G846"]],[21,22,["G3004"]],[22,24,["G863"]],[24,27,["G1492"]],[27,28,["G1487"]],[28,29,["G2243"]],[29,31,["G2064"]],[31,35,["G2507","G846"]]]},{"k":24863,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G863"]],[3,6,["G3173"]],[6,7,["G5456"]],[7,12,["G1606"]]]},{"k":24864,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2665"]],[3,5,["G3588"]],[5,6,["G3485"]],[6,8,["G4977"]],[8,9,["G1519"]],[9,10,["G1417"]],[10,11,["G575"]],[11,13,["G509"]],[13,14,["G2193"]],[14,16,["G2736"]]]},{"k":24865,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G2760"]],[4,6,["G3936"]],[6,8,["G1537","G1727"]],[8,9,["G846"]],[9,10,["G1492"]],[10,11,["G3754"]],[11,13,["G3779"]],[13,15,["G2896"]],[15,20,["G1606"]],[20,22,["G2036"]],[22,23,["G230"]],[23,24,["G3778"]],[24,25,["G444"]],[25,26,["G2258"]],[26,28,["G5207"]],[28,30,["G2316"]]]},{"k":24866,"v":[[0,1,["(G1161)"]],[1,2,["G2258"]],[2,3,["G2532"]],[3,4,["G1135"]],[4,6,["G2334"]],[6,8,["G575","G3113"]],[8,9,["G1722"]],[9,10,["G3739"]],[10,11,["G2258"]],[11,12,["G3137"]],[12,13,["G3094"]],[13,14,["G2532"]],[14,15,["G3137"]],[15,16,["G3588"]],[16,17,["G3384"]],[17,19,["G2385"]],[19,20,["G3588"]],[20,21,["G3398"]],[21,22,["G2532"]],[22,24,["G2500"]],[24,25,["G2532"]],[25,26,["G4539"]]]},{"k":24867,"v":[[0,1,["G3739"]],[1,2,["G2532"]],[2,3,["G3753"]],[3,5,["G2258"]],[5,6,["G1722"]],[6,7,["G1056"]],[7,8,["G190"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G1247"]],[11,13,["G846"]],[13,14,["G2532"]],[14,15,["G4183"]],[15,17,["G243"]],[17,21,["G4872"]],[21,22,["G846"]],[22,23,["G1519"]],[23,24,["G2414"]]]},{"k":24868,"v":[[0,1,["G2532"]],[1,2,["G2235"]],[2,5,["G3798"]],[5,7,["G1096"]],[7,8,["G1893"]],[8,10,["G2258"]],[10,12,["G3904"]],[12,14,["G3603"]],[14,19,["G4315"]]]},{"k":24869,"v":[[0,1,["G2501"]],[1,2,["G575"]],[2,3,["G707"]],[3,5,["G2158"]],[5,6,["G1010"]],[6,7,["G3739"]],[7,8,["G2532"]],[8,10,["G2258","G4327"]],[10,11,["G3588"]],[11,12,["G932"]],[12,14,["G2316"]],[14,15,["G2064"]],[15,18,["G1525"]],[18,19,["G5111"]],[19,20,["G4314"]],[20,21,["G4091"]],[21,22,["G2532"]],[22,23,["G154"]],[23,24,["G3588"]],[24,25,["G4983"]],[25,27,["G2424"]]]},{"k":24870,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,3,["G2296"]],[3,4,["G1487"]],[4,8,["G2348","G2235"]],[8,9,["G2532"]],[9,10,["G4341"]],[10,13,["G3588"]],[13,14,["G2760"]],[14,16,["G1905"]],[16,17,["G846"]],[17,18,["G1487"]],[18,24,["G599","G3819"]]]},{"k":24871,"v":[[0,1,["G2532"]],[1,4,["G1097"]],[4,6,["G575"]],[6,7,["G3588"]],[7,8,["G2760"]],[8,10,["G1433"]],[10,11,["G3588"]],[11,12,["G4983"]],[12,14,["G2501"]]]},{"k":24872,"v":[[0,1,["G2532"]],[1,3,["G59"]],[3,5,["G4616"]],[5,6,["G2532"]],[6,9,["G2507","G846"]],[9,13,["G1750"]],[13,14,["G3588"]],[14,15,["G4616"]],[15,16,["G2532"]],[16,17,["G2698"]],[17,18,["G846"]],[18,19,["G1722"]],[19,21,["G3419"]],[21,22,["G3739"]],[22,23,["G2258"]],[23,24,["G2998"]],[24,26,["G1537"]],[26,28,["G4073"]],[28,29,["G2532"]],[29,30,["G4351"]],[30,32,["G3037"]],[32,33,["G1909"]],[33,34,["G3588"]],[34,35,["G2374"]],[35,37,["G3588"]],[37,38,["G3419"]]]},{"k":24873,"v":[[0,1,["G1161"]],[1,2,["G3137"]],[2,3,["G3094"]],[3,4,["G2532"]],[4,5,["G3137"]],[5,9,["G2500"]],[9,10,["G2334"]],[10,11,["G4226"]],[11,14,["G5087"]]]},{"k":24874,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G4521"]],[4,6,["G1230"]],[6,7,["G3137"]],[7,8,["G3094"]],[8,9,["G2532"]],[9,10,["G3137"]],[10,11,["G3588"]],[11,14,["G2385"]],[14,15,["G2532"]],[15,16,["G4539"]],[16,18,["G59"]],[18,20,["G759"]],[20,21,["G2443"]],[21,24,["G2064"]],[24,26,["G218"]],[26,27,["G846"]]]},{"k":24875,"v":[[0,1,["G2532"]],[1,2,["G3029"]],[2,6,["G4404"]],[6,7,["G3588"]],[7,8,["G3391"]],[8,11,["G3588"]],[11,12,["G4521"]],[12,14,["G2064"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,17,["G3419"]],[17,20,["G393"]],[20,22,["G3588"]],[22,23,["G2246"]]]},{"k":24876,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,4,["G4314"]],[4,5,["G1438"]],[5,6,["G5101"]],[6,10,["G617","G2254"]],[10,11,["G3588"]],[11,12,["G3037"]],[12,13,["G1537"]],[13,14,["G3588"]],[14,15,["G2374"]],[15,17,["G3588"]],[17,18,["G3419"]]]},{"k":24877,"v":[[0,1,["G2532"]],[1,4,["G308"]],[4,6,["G2334"]],[6,7,["G3754"]],[7,8,["G3588"]],[8,9,["G3037"]],[9,12,["G617"]],[12,13,["G1063"]],[13,15,["G2258"]],[15,16,["G4970"]],[16,17,["G3173"]]]},{"k":24878,"v":[[0,1,["G2532"]],[1,2,["G1525"]],[2,3,["G1519"]],[3,4,["G3588"]],[4,5,["G3419"]],[5,7,["G1492"]],[7,10,["G3495"]],[10,11,["G2521"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,15,["G1188"]],[15,17,["G4016"]],[17,21,["G4749","G3022"]],[21,22,["G2532"]],[22,25,["G1568"]]]},{"k":24879,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3004"]],[3,5,["G846"]],[5,7,["G3361"]],[7,8,["G1568"]],[8,10,["G2212"]],[10,11,["G2424"]],[11,13,["G3479"]],[13,16,["G4717"]],[16,19,["G1453"]],[19,21,["G2076"]],[21,22,["G3756"]],[22,23,["G5602"]],[23,24,["G2396"]],[24,25,["G3588"]],[25,26,["G5117"]],[26,27,["G3699"]],[27,29,["G5087"]],[29,30,["G846"]]]},{"k":24880,"v":[[0,1,["G235"]],[1,4,["G5217"]],[4,5,["G2036"]],[5,6,["G846"]],[6,7,["G3101"]],[7,8,["G2532"]],[8,9,["G4074"]],[9,10,["G3754"]],[10,13,["G4254"]],[13,14,["G5209"]],[14,15,["G1519"]],[15,16,["G1056"]],[16,17,["G1563"]],[17,20,["G3700"]],[20,21,["G846"]],[21,22,["G2531"]],[22,24,["G2036"]],[24,26,["G5213"]]]},{"k":24881,"v":[[0,1,["G2532"]],[1,4,["G1831"]],[4,5,["G5035"]],[5,7,["G5343"]],[7,8,["G575"]],[8,9,["G3588"]],[9,10,["G3419"]],[10,11,["G1161"]],[11,12,["G846"]],[12,13,["G5156","G2192"]],[13,14,["G2532"]],[14,16,["G1611"]],[16,17,["G2532"]],[17,18,["G2036"]],[18,21,["G3762"]],[21,23,["G3762"]],[23,25,["G1063"]],[25,28,["G5399"]]]},{"k":24882,"v":[[0,1,["G1161"]],[1,5,["G450"]],[5,6,["G4404"]],[6,8,["G4413"]],[8,12,["G4521"]],[12,14,["G5316"]],[14,15,["G4412"]],[15,17,["G3137"]],[17,18,["G3094"]],[18,20,["G575"]],[20,21,["G3739"]],[21,24,["G1544"]],[24,25,["G2033"]],[25,26,["G1140"]]]},{"k":24883,"v":[[0,2,["G1565"]],[2,3,["G4198"]],[3,5,["G518"]],[5,9,["G1096"]],[9,10,["G3326"]],[10,11,["G846"]],[11,14,["G3996"]],[14,15,["G2532"]],[15,16,["G2799"]]]},{"k":24884,"v":[[0,2,["G2548"]],[2,6,["G191"]],[6,7,["G3754"]],[7,10,["G2198"]],[10,11,["G2532"]],[11,14,["G2300"]],[14,15,["G5259"]],[15,16,["G846"]],[16,18,["G569"]]]},{"k":24885,"v":[[0,1,["G3326"]],[1,2,["G5023"]],[2,4,["G5319"]],[4,5,["G1722"]],[5,6,["G2087"]],[6,7,["G3444"]],[7,9,["G1417"]],[9,10,["G1537"]],[10,11,["G846"]],[11,14,["G4043"]],[14,16,["G4198"]],[16,17,["G1519"]],[17,19,["G68"]]]},{"k":24886,"v":[[0,2,["G2548"]],[2,3,["G565"]],[3,5,["G518"]],[5,8,["G3588"]],[8,9,["G3062"]],[9,10,["G3761"]],[10,11,["G4100"]],[11,13,["G1565"]]]},{"k":24887,"v":[[0,1,["G5305"]],[1,3,["G5319"]],[3,5,["G3588"]],[5,6,["G1733"]],[6,8,["G846"]],[8,11,["G345"]],[11,12,["G2532"]],[12,13,["G3679"]],[13,16,["G846"]],[16,17,["G570"]],[17,18,["G2532"]],[18,21,["G4641"]],[21,22,["G3754"]],[22,24,["G4100"]],[24,25,["G3756"]],[25,29,["G2300"]],[29,30,["G846"]],[30,34,["G1453"]]]},{"k":24888,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G4198"]],[6,8,["G1519"]],[8,9,["G537"]],[9,10,["G3588"]],[10,11,["G2889"]],[11,13,["G2784"]],[13,14,["G3588"]],[14,15,["G2098"]],[15,17,["G3956"]],[17,18,["G2937"]]]},{"k":24889,"v":[[0,3,["G4100"]],[3,4,["G2532"]],[4,6,["G907"]],[6,9,["G4982"]],[9,10,["G1161"]],[10,14,["G569"]],[14,17,["G2632"]]]},{"k":24890,"v":[[0,1,["G1161"]],[1,2,["G5023"]],[2,3,["G4592"]],[3,5,["G3877"]],[5,6,["G3588"]],[6,8,["G4100"]],[8,9,["G1722"]],[9,10,["G3450"]],[10,11,["G3686"]],[11,15,["G1544"]],[15,16,["G1140"]],[16,19,["G2980"]],[19,21,["G2537"]],[21,22,["G1100"]]]},{"k":24891,"v":[[0,4,["G142"]],[4,5,["G3789"]],[5,7,["G2579"]],[7,9,["G4095"]],[9,10,["G5100"]],[10,12,["G2286"]],[12,15,["G3364"]],[15,16,["G984"]],[16,17,["G846"]],[17,20,["G2007"]],[20,21,["G5495"]],[21,22,["G1909"]],[22,24,["G732"]],[24,25,["G2532"]],[25,28,["G2192","G2573"]]]},{"k":24892,"v":[[0,1,["G3767"]],[1,2,["G3303"]],[2,3,["G3326"]],[3,4,["G3588"]],[4,5,["G2962"]],[5,7,["G2980"]],[7,9,["G846"]],[9,13,["G353"]],[13,14,["G1519"]],[14,15,["G3772"]],[15,16,["G2532"]],[16,17,["G2523"]],[17,18,["G1537"]],[18,21,["G1188"]],[21,23,["G2316"]]]},{"k":24893,"v":[[0,1,["G1161"]],[1,2,["G1565"]],[2,4,["G1831"]],[4,6,["G2784"]],[6,8,["G3837"]],[8,9,["G3588"]],[9,10,["G2962"]],[10,12,["G4903"]],[12,14,["G2532"]],[14,15,["G950"]],[15,16,["G3588"]],[16,17,["G3056"]],[17,18,["G1223"]],[18,19,["G4592"]],[19,20,["G1872"]],[20,21,["G281"]]]},{"k":24894,"v":[[0,1,["G1895"]],[1,3,["G4183"]],[3,7,["G2021"]],[7,12,["G392"]],[12,14,["G1335"]],[14,15,["G4012"]],[15,17,["G4229"]],[17,22,["G4135"]],[22,23,["G1722"]],[23,24,["G2254"]]]},{"k":24895,"v":[[0,2,["G2531"]],[2,4,["G3860"]],[4,7,["G2254"]],[7,12,["G1096","G575","G746"]],[12,13,["G845"]],[13,14,["G2532"]],[14,15,["G5257"]],[15,17,["G3588"]],[17,18,["G3056"]]]},{"k":24896,"v":[[0,3,["G1380"]],[3,6,["G2504"]],[6,9,["G199"]],[9,10,["G3877"]],[10,13,["G3956"]],[13,17,["G509"]],[17,19,["G1125"]],[19,21,["G4671"]],[21,23,["G2517"]],[23,25,["G2903"]],[25,26,["G2321"]]]},{"k":24897,"v":[[0,1,["G2443"]],[1,4,["G1921"]],[4,5,["G3588"]],[5,6,["G803"]],[6,9,["G3056"]],[9,10,["G4012","G3739"]],[10,14,["G2727"]]]},{"k":24898,"v":[[0,2,["G1096"]],[2,3,["G1722"]],[3,4,["G3588"]],[4,5,["G2250"]],[5,7,["G2264"]],[7,8,["G3588"]],[8,9,["G935"]],[9,11,["G2449"]],[11,13,["G5100"]],[13,14,["G2409"]],[14,15,["G3686"]],[15,16,["G2197"]],[16,17,["G1537"]],[17,19,["G2183"]],[19,21,["G7"]],[21,22,["G2532"]],[22,23,["G846"]],[23,24,["G1135"]],[24,26,["G1537"]],[26,27,["G3588"]],[27,28,["G2364"]],[28,30,["G2"]],[30,31,["G2532"]],[31,32,["G846"]],[32,33,["G3686"]],[33,35,["G1665"]]]},{"k":24899,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G297"]],[4,5,["G1342"]],[5,6,["G1799"]],[6,7,["G2316"]],[7,8,["G4198"]],[8,9,["G1722"]],[9,10,["G3956"]],[10,11,["G3588"]],[11,12,["G1785"]],[12,13,["G2532"]],[13,14,["G1345"]],[14,16,["G3588"]],[16,17,["G2962"]],[17,18,["G273"]]]},{"k":24900,"v":[[0,1,["G2532"]],[1,3,["G2258","G846"]],[3,4,["G3756"]],[4,5,["G5043"]],[5,7,["G2530"]],[7,8,["G1665"]],[8,9,["G2258"]],[9,10,["G4723"]],[10,11,["G2532"]],[11,13,["G297"]],[13,14,["G2258"]],[14,17,["G4260"]],[17,18,["G1722"]],[18,19,["G2250"]]]},{"k":24901,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,8,["G846"]],[8,12,["G2407"]],[12,13,["G1725"]],[13,14,["G2316"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G5010"]],[17,19,["G848"]],[19,20,["G2183"]]]},{"k":24902,"v":[[0,1,["G2596"]],[1,3,["G3588"]],[3,4,["G1485"]],[4,6,["G3588"]],[6,8,["G2405"]],[8,11,["G2975"]],[11,14,["G2370"]],[14,17,["G1525"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G3485"]],[20,22,["G3588"]],[22,23,["G2962"]]]},{"k":24903,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3956"]],[3,4,["G4128"]],[4,6,["G3588"]],[6,7,["G2992"]],[7,8,["G2258"]],[8,9,["G4336"]],[9,10,["G1854"]],[10,12,["G3588"]],[12,13,["G5610"]],[13,15,["G2368"]]]},{"k":24904,"v":[[0,1,["G1161"]],[1,3,["G3700"]],[3,5,["G846"]],[5,7,["G32"]],[7,10,["G2962"]],[10,11,["G2476"]],[11,12,["G1537"]],[12,15,["G1188"]],[15,17,["G3588"]],[17,18,["G2379"]],[18,20,["G2368"]]]},{"k":24905,"v":[[0,1,["G2532"]],[1,3,["G2197"]],[3,4,["G1492"]],[4,8,["G5015"]],[8,9,["G2532"]],[9,10,["G5401"]],[10,11,["G1968"]],[11,12,["G1909"]],[12,13,["G846"]]]},{"k":24906,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G32"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G5399"]],[7,8,["G3361"]],[8,9,["G2197"]],[9,10,["G1360"]],[10,11,["G4675"]],[11,12,["G1162"]],[12,14,["G1522"]],[14,15,["G2532"]],[15,16,["G4675"]],[16,17,["G1135"]],[17,18,["G1665"]],[18,20,["G1080"]],[20,21,["G4671"]],[21,23,["G5207"]],[23,24,["G2532"]],[24,27,["G2564"]],[27,28,["G846"]],[28,29,["G3686"]],[29,30,["G2491"]]]},{"k":24907,"v":[[0,1,["G2532"]],[1,2,["G4671"]],[2,4,["G2071"]],[4,5,["G5479"]],[5,6,["G2532"]],[6,7,["G20"]],[7,8,["G2532"]],[8,9,["G4183"]],[9,11,["G5463"]],[11,12,["G1909"]],[12,13,["G846"]],[13,14,["G1083"]]]},{"k":24908,"v":[[0,1,["G1063"]],[1,4,["G2071"]],[4,5,["G3173"]],[5,8,["G1799"]],[8,10,["G3588"]],[10,11,["G2962"]],[11,12,["G2532"]],[12,14,["G4095"]],[14,15,["G3364"]],[15,16,["G3631"]],[16,17,["G2532"]],[17,19,["G4608"]],[19,20,["G2532"]],[20,24,["G4130"]],[24,27,["G40"]],[27,28,["G4151"]],[28,29,["G2089"]],[29,30,["G1537"]],[30,31,["G848"]],[31,32,["G3384"]],[32,33,["G2836"]]]},{"k":24909,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,4,["G3588"]],[4,5,["G5207"]],[5,7,["G2474"]],[7,10,["G1994"]],[10,11,["G1909"]],[11,13,["G2962"]],[13,14,["G846"]],[14,15,["G2316"]]]},{"k":24910,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,4,["G4281"]],[4,5,["G1799"]],[5,6,["G846"]],[6,9,["G4151"]],[9,10,["G2532"]],[10,11,["G1411"]],[11,13,["G2243"]],[13,15,["G1994"]],[15,17,["G2588"]],[17,20,["G3962"]],[20,21,["G1909"]],[21,23,["G5043"]],[23,24,["G2532"]],[24,26,["G545"]],[26,27,["G1722"]],[27,29,["G5428"]],[29,32,["G1342"]],[32,35,["G2090"]],[35,37,["G2992"]],[37,38,["G2680"]],[38,41,["G2962"]]]},{"k":24911,"v":[[0,1,["G2532"]],[1,2,["G2197"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G3588"]],[5,6,["G32"]],[6,7,["G2596","G5101"]],[7,10,["G1097"]],[10,11,["G5124"]],[11,12,["G1063"]],[12,13,["G1473"]],[13,14,["G1510"]],[14,17,["G4246"]],[17,18,["G2532"]],[18,19,["G3450"]],[19,20,["G1135"]],[20,22,["G4260"]],[22,23,["G1722"]],[23,24,["G2250"]]]},{"k":24912,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G32"]],[3,4,["G611"]],[4,5,["G2036"]],[5,7,["G846"]],[7,8,["G1473"]],[8,9,["G1510"]],[9,10,["G1043"]],[10,12,["G3936"]],[12,15,["G1799"]],[15,17,["G2316"]],[17,18,["G2532"]],[18,20,["G649"]],[20,22,["G2980"]],[22,23,["G4314"]],[23,24,["G4571"]],[24,25,["G2532"]],[25,31,["G2097","G4671","G5023"]]]},{"k":24913,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,5,["G2071"]],[5,6,["G4623"]],[6,7,["G2532"]],[7,8,["G3361"]],[8,9,["G1410"]],[9,11,["G2980"]],[11,12,["G891"]],[12,13,["(G3739)"]],[13,14,["G2250"]],[14,17,["G5023"]],[17,20,["G1096"]],[20,21,["G473"]],[21,22,["(G3739)"]],[22,23,["G4100"]],[23,24,["G3756"]],[24,25,["G3450"]],[25,26,["G3056"]],[26,27,["G3748"]],[27,30,["G4137"]],[30,31,["G1519"]],[31,32,["G848"]],[32,33,["G2540"]]]},{"k":24914,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2992"]],[3,5,["G2258","G4328"]],[5,6,["G2197"]],[6,7,["G2532"]],[7,8,["G2296"]],[8,10,["G846"]],[10,13,["G5549"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G3485"]]]},{"k":24915,"v":[[0,1,["G1161"]],[1,5,["G1831"]],[5,7,["G1410"]],[7,8,["G3756"]],[8,9,["G2980"]],[9,11,["G846"]],[11,12,["G2532"]],[12,14,["G1921"]],[14,15,["G3754"]],[15,18,["G3708"]],[18,20,["G3701"]],[20,21,["G1722"]],[21,22,["G3588"]],[22,23,["G3485"]],[23,24,["G2532"]],[24,25,["G846"]],[25,26,["G2258","G1269"]],[26,28,["G846"]],[28,29,["G2532"]],[29,30,["G1265"]],[30,31,["G2974"]]]},{"k":24916,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,9,["G5613"]],[9,10,["G3588"]],[10,11,["G2250"]],[11,13,["G846"]],[13,14,["G3009"]],[14,16,["G4130"]],[16,18,["G565"]],[18,19,["G1519"]],[19,21,["G848"]],[21,22,["G3624"]]]},{"k":24917,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,3,["G5025"]],[3,4,["G2250"]],[4,5,["G846"]],[5,6,["G1135"]],[6,7,["G1665"]],[7,8,["G4815"]],[8,9,["G2532"]],[9,10,["G4032"]],[10,11,["G1438"]],[11,12,["G4002"]],[12,13,["G3376"]],[13,14,["G3004"]]]},{"k":24918,"v":[[0,1,["G3779"]],[1,3,["G3588"]],[3,4,["G2962"]],[4,5,["G4160"]],[5,7,["G3427"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G2250"]],[10,11,["G3739"]],[11,14,["G1896"]],[14,18,["G851"]],[18,19,["G3450"]],[19,20,["G3681"]],[20,21,["G1722"]],[21,22,["G444"]]]},{"k":24919,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G1623"]],[4,5,["G3376"]],[5,6,["G3588"]],[6,7,["G32"]],[7,8,["G1043"]],[8,10,["G649"]],[10,11,["G5259"]],[11,12,["G2316"]],[12,13,["G1519"]],[13,15,["G4172"]],[15,17,["G1056"]],[17,18,["G3686"]],[18,19,["G3478"]]]},{"k":24920,"v":[[0,1,["G4314"]],[1,3,["G3933"]],[3,4,["G3423"]],[4,7,["G435"]],[7,8,["G3739"]],[8,9,["G3686"]],[9,11,["G2501"]],[11,12,["G1537"]],[12,14,["G3624"]],[14,16,["G1138"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G3933"]],[19,20,["G3686"]],[20,22,["G3137"]]]},{"k":24921,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G32"]],[3,5,["G1525"]],[5,6,["G4314"]],[6,7,["G846"]],[7,9,["G2036"]],[9,10,["G5463"]],[10,15,["G5487"]],[15,16,["G3588"]],[16,17,["G2962"]],[17,19,["G3326"]],[19,20,["G4675"]],[20,21,["G2127"]],[21,23,["G4771"]],[23,24,["G1722"]],[24,25,["G1135"]]]},{"k":24922,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1492"]],[4,8,["G1298"]],[8,9,["G1909"]],[9,10,["G846"]],[10,11,["G3056"]],[11,12,["G2532"]],[12,16,["G1260"]],[16,18,["G4217"]],[18,20,["G783"]],[20,21,["G3778"]],[21,23,["G1498"]]]},{"k":24923,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G32"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G5399"]],[7,8,["G3361"]],[8,9,["G3137"]],[9,10,["G1063"]],[10,13,["G2147"]],[13,14,["G5485"]],[14,15,["G3844"]],[15,16,["G2316"]]]},{"k":24924,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,5,["G4815"]],[5,6,["G1722"]],[6,8,["G1064"]],[8,9,["G2532"]],[9,11,["G5088"]],[11,13,["G5207"]],[13,14,["G2532"]],[14,16,["G2564"]],[16,17,["G846"]],[17,18,["G3686"]],[18,19,["G2424"]]]},{"k":24925,"v":[[0,1,["G3778"]],[1,3,["G2071"]],[3,4,["G3173"]],[4,5,["G2532"]],[5,8,["G2564"]],[8,10,["G5207"]],[10,13,["G5310"]],[13,14,["G2532"]],[14,16,["G2962"]],[16,17,["G2316"]],[17,19,["G1325"]],[19,21,["G846"]],[21,22,["G3588"]],[22,23,["G2362"]],[23,25,["G846"]],[25,26,["G3962"]],[26,27,["G1138"]]]},{"k":24926,"v":[[0,1,["G2532"]],[1,4,["G936"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G3624"]],[7,9,["G2384"]],[9,11,["G1519","G165"]],[11,12,["G2532"]],[12,14,["G846"]],[14,15,["G932"]],[15,18,["G2071"]],[18,19,["G3756"]],[19,20,["G5056"]]]},{"k":24927,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G3137"]],[3,4,["G4314"]],[4,5,["G3588"]],[5,6,["G32"]],[6,7,["G4459"]],[7,9,["G5124"]],[9,10,["G2071"]],[10,11,["G1893"]],[11,13,["G1097"]],[13,14,["G3756"]],[14,16,["G435"]]]},{"k":24928,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G32"]],[3,4,["G611"]],[4,6,["G2036"]],[6,8,["G846"]],[8,10,["G40"]],[10,11,["G4151"]],[11,13,["G1904"]],[13,14,["G1909"]],[14,15,["G4571"]],[15,16,["G2532"]],[16,18,["G1411"]],[18,21,["G5310"]],[21,23,["G1982"]],[23,24,["G4671"]],[24,25,["G1352"]],[25,26,["G2532"]],[26,29,["G40"]],[29,33,["G1080"]],[33,34,["G1537"]],[34,35,["G4675"]],[35,38,["G2564"]],[38,40,["G5207"]],[40,42,["G2316"]]]},{"k":24929,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G4675"]],[3,4,["G4773"]],[4,5,["G1665"]],[5,6,["G846"]],[6,8,["G2532"]],[8,9,["G4815"]],[9,11,["G5207"]],[11,12,["G1722"]],[12,13,["G848"]],[13,15,["G1094"]],[15,16,["G2532"]],[16,17,["G3778"]],[17,18,["G2076"]],[18,20,["G1623"]],[20,21,["G3376"]],[21,23,["G846"]],[23,26,["G2564"]],[26,27,["G4723"]]]},{"k":24930,"v":[[0,1,["G3754"]],[1,2,["G3844"]],[2,3,["G2316"]],[3,4,["G3956","G4487","G3756"]],[4,7,["G101"]]]},{"k":24931,"v":[[0,1,["G1161"]],[1,2,["G3137"]],[2,3,["G2036"]],[3,4,["G2400"]],[4,5,["G3588"]],[5,6,["G1399"]],[6,9,["G2962"]],[9,10,["G1096"]],[10,13,["G3427"]],[13,14,["G2596"]],[14,16,["G4675"]],[16,17,["G4487"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G32"]],[20,21,["G565"]],[21,22,["G575"]],[22,23,["G846"]]]},{"k":24932,"v":[[0,1,["G1161"]],[1,2,["G3137"]],[2,3,["G450"]],[3,4,["G1722"]],[4,5,["G5025"]],[5,6,["G2250"]],[6,8,["G4198"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,12,["G3714"]],[12,13,["G3326"]],[13,14,["G4710"]],[14,15,["G1519"]],[15,17,["G4172"]],[17,19,["G2448"]]]},{"k":24933,"v":[[0,1,["G2532"]],[1,2,["G1525"]],[2,3,["G1519"]],[3,4,["G3588"]],[4,5,["G3624"]],[5,7,["G2197"]],[7,8,["G2532"]],[8,9,["G782"]],[9,10,["G1665"]]]},{"k":24934,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G5613"]],[7,8,["G1665"]],[8,9,["G191"]],[9,10,["G3588"]],[10,11,["G783"]],[11,13,["G3137"]],[13,14,["G3588"]],[14,15,["G1025"]],[15,16,["G4640"]],[16,17,["G1722"]],[17,18,["G846"]],[18,19,["G2836"]],[19,20,["G2532"]],[20,21,["G1665"]],[21,23,["G4130"]],[23,26,["G40"]],[26,27,["G4151"]]]},{"k":24935,"v":[[0,1,["G2532"]],[1,4,["G400"]],[4,7,["G3173"]],[7,8,["G5456"]],[8,9,["G2532"]],[9,10,["G2036"]],[10,11,["G2127"]],[11,13,["G4771"]],[13,14,["G1722"]],[14,15,["G1135"]],[15,16,["G2532"]],[16,17,["G2127"]],[17,19,["G3588"]],[19,20,["G2590"]],[20,22,["G4675"]],[22,23,["G2836"]]]},{"k":24936,"v":[[0,1,["G2532"]],[1,2,["G4159"]],[2,4,["G5124"]],[4,6,["G3427"]],[6,7,["G2443"]],[7,8,["G3588"]],[8,9,["G3384"]],[9,11,["G3450"]],[11,12,["G2962"]],[12,14,["G2064"]],[14,15,["G4314"]],[15,16,["G3165"]]]},{"k":24937,"v":[[0,1,["G1063"]],[1,2,["G2400"]],[2,5,["G5613"]],[5,6,["G3588"]],[6,7,["G5456"]],[7,9,["G4675"]],[9,10,["G783"]],[10,11,["G1096"]],[11,12,["G1519"]],[12,13,["G3450"]],[13,14,["G3775"]],[14,15,["G3588"]],[15,16,["G1025"]],[16,17,["G4640"]],[17,18,["G1722"]],[18,19,["G3450"]],[19,20,["G2836"]],[20,21,["G1722"]],[21,22,["G20"]]]},{"k":24938,"v":[[0,1,["G2532"]],[1,2,["G3107"]],[2,6,["G4100"]],[6,7,["G3754"]],[7,10,["G2071"]],[10,12,["G5050"]],[12,18,["G2980"]],[18,19,["G846"]],[19,20,["G3844"]],[20,22,["G2962"]]]},{"k":24939,"v":[[0,1,["G2532"]],[1,2,["G3137"]],[2,3,["G2036"]],[3,4,["G3450"]],[4,5,["G5590"]],[5,7,["G3170"]],[7,8,["G3588"]],[8,9,["G2962"]]]},{"k":24940,"v":[[0,1,["G2532"]],[1,2,["G3450"]],[2,3,["G4151"]],[3,5,["G21"]],[5,6,["G1909"]],[6,7,["G2316"]],[7,8,["G3450"]],[8,9,["G4990"]]]},{"k":24941,"v":[[0,1,["G3754"]],[1,4,["G1914"]],[4,5,["G3588"]],[5,7,["G5014"]],[7,9,["G848"]],[9,10,["G1399"]],[10,11,["G1063"]],[11,12,["G2400"]],[12,13,["G575"]],[13,14,["G3568"]],[14,15,["G3956"]],[15,16,["G1074"]],[16,20,["G3106","G3165"]]]},{"k":24942,"v":[[0,1,["G3754"]],[1,5,["G1415"]],[5,7,["G4160"]],[7,9,["G3427"]],[9,11,["G3167"]],[11,12,["G2532"]],[12,13,["G40"]],[13,15,["G846"]],[15,16,["G3686"]]]},{"k":24943,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G1656"]],[3,8,["G5399"]],[8,9,["G846"]],[9,10,["G1519"]],[10,11,["G1074"]],[11,13,["G1074"]]]},{"k":24944,"v":[[0,3,["G4160"]],[3,4,["G2904"]],[4,5,["G1722"]],[5,6,["G848"]],[6,7,["G1023"]],[7,10,["G1287"]],[10,12,["G5244"]],[12,15,["G1271"]],[15,17,["G846"]],[17,18,["G2588"]]]},{"k":24945,"v":[[0,4,["G2507"]],[4,6,["G1413"]],[6,7,["G575"]],[7,9,["G2362"]],[9,10,["G2532"]],[10,11,["G5312"]],[11,15,["G5011"]]]},{"k":24946,"v":[[0,3,["G1705"]],[3,5,["G3983"]],[5,8,["G18"]],[8,9,["G2532"]],[9,11,["G4147"]],[11,16,["G1821","G2756"]]]},{"k":24947,"v":[[0,3,["G482"]],[3,4,["G848"]],[4,5,["G3816"]],[5,6,["G2474"]],[6,8,["G3415"]],[8,11,["G1656"]]]},{"k":24948,"v":[[0,1,["G2531"]],[1,3,["G2980"]],[3,4,["G4314"]],[4,5,["G2257"]],[5,6,["G3962"]],[6,8,["G11"]],[8,9,["G2532"]],[9,11,["G846"]],[11,12,["G4690"]],[12,14,["G1519","G165"]]]},{"k":24949,"v":[[0,1,["G1161"]],[1,2,["G3137"]],[2,3,["G3306"]],[3,4,["G4862"]],[4,5,["G846"]],[5,6,["G5616"]],[6,7,["G5140"]],[7,8,["G3376"]],[8,9,["G2532"]],[9,10,["G5290"]],[10,11,["G1519"]],[11,13,["G848"]],[13,14,["G3624"]]]},{"k":24950,"v":[[0,1,["G1161"]],[1,2,["G1665"]],[2,4,["G5550"]],[4,5,["G4130"]],[5,7,["G846"]],[7,10,["G5088"]],[10,11,["G2532"]],[11,14,["G1080"]],[14,16,["G5207"]]]},{"k":24951,"v":[[0,1,["G2532"]],[1,2,["G848"]],[2,3,["G4040"]],[3,4,["G2532"]],[4,6,["G4773"]],[6,7,["G191"]],[7,8,["G3754"]],[8,10,["G2962"]],[10,14,["G3170","G848","G1656"]],[14,15,["G3326"]],[15,16,["G846"]],[16,17,["G2532"]],[17,20,["G4796"]],[20,21,["G846"]]]},{"k":24952,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G1722"]],[7,8,["G3588"]],[8,9,["G3590"]],[9,10,["G2250"]],[10,12,["G2064"]],[12,14,["G4059"]],[14,15,["G3588"]],[15,16,["G3813"]],[16,17,["G2532"]],[17,19,["G2564"]],[19,20,["G846"]],[20,21,["G2197"]],[21,22,["G1909"]],[22,23,["G3588"]],[23,24,["G3686"]],[24,26,["G846"]],[26,27,["G3962"]]]},{"k":24953,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3384"]],[3,4,["G611"]],[4,6,["G2036"]],[6,7,["G3780"]],[7,9,["G235"]],[9,13,["G2564"]],[13,14,["G2491"]]]},{"k":24954,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,7,["G2076"]],[7,8,["G3762"]],[8,9,["G1722"]],[9,10,["G4675"]],[10,11,["G4772"]],[11,12,["G3739"]],[12,14,["G2564"]],[14,16,["G5129"]],[16,17,["G3686"]]]},{"k":24955,"v":[[0,1,["G2532"]],[1,4,["G1770"]],[4,6,["G846"]],[6,7,["G3962"]],[7,8,["G5101"]],[8,11,["G2309","G302"]],[11,12,["G846"]],[12,13,["G2564"]]]},{"k":24956,"v":[[0,1,["G2532"]],[1,3,["G154"]],[3,7,["G4093"]],[7,9,["G1125"]],[9,10,["G3004"]],[10,11,["G846"]],[11,12,["G3686"]],[12,13,["G2076"]],[13,14,["G2491"]],[14,15,["G2532"]],[15,17,["G2296"]],[17,18,["G3956"]]]},{"k":24957,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G4750"]],[3,5,["G455"]],[5,6,["G3916"]],[6,7,["G2532"]],[7,8,["G846"]],[8,9,["G1100"]],[9,11,["G2532"]],[11,13,["G2980"]],[13,15,["G2127"]],[15,16,["G2316"]]]},{"k":24958,"v":[[0,1,["G2532"]],[1,2,["G5401"]],[2,3,["G1096"]],[3,4,["G1909"]],[4,5,["G3956"]],[5,9,["G4039"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G3956"]],[12,13,["G5023"]],[13,14,["G4487"]],[14,17,["G1255"]],[17,18,["G1722"]],[18,19,["G3650"]],[19,20,["G3588"]],[20,22,["G3714"]],[22,24,["G2449"]]]},{"k":24959,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,5,["G191"]],[5,9,["G5087"]],[9,10,["G1722"]],[10,11,["G848"]],[11,12,["G2588"]],[12,13,["G3004"]],[13,15,["G5101"]],[15,16,["(G686)"]],[16,17,["G3813"]],[17,19,["G5124"]],[19,20,["G2071"]],[20,21,["G2532"]],[21,23,["G5495"]],[23,26,["G2962"]],[26,27,["G2258"]],[27,28,["G3326"]],[28,29,["G846"]]]},{"k":24960,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3962"]],[3,4,["G2197"]],[4,6,["G4130"]],[6,9,["G40"]],[9,10,["G4151"]],[10,11,["G2532"]],[11,12,["G4395"]],[12,13,["G3004"]]]},{"k":24961,"v":[[0,1,["G2128"]],[1,4,["G2962"]],[4,5,["G2316"]],[5,7,["G2474"]],[7,8,["G3754"]],[8,11,["G1980"]],[11,12,["G2532"]],[12,13,["G4160","G3085"]],[13,14,["G848"]],[14,15,["G2992"]]]},{"k":24962,"v":[[0,1,["G2532"]],[1,4,["G1453"]],[4,6,["G2768"]],[6,8,["G4991"]],[8,10,["G2254"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G3624"]],[13,15,["G848"]],[15,16,["G3816"]],[16,17,["G1138"]]]},{"k":24963,"v":[[0,1,["G2531"]],[1,3,["G2980"]],[3,4,["G1223"]],[4,6,["G4750"]],[6,8,["G848"]],[8,9,["G40"]],[9,10,["G4396"]],[10,11,["G3588"]],[11,17,["G575","G165"]]]},{"k":24964,"v":[[0,5,["G4991"]],[5,6,["G1537"]],[6,7,["G2257"]],[7,8,["G2190"]],[8,9,["G2532"]],[9,10,["G1537"]],[10,12,["G5495"]],[12,14,["G3956"]],[14,16,["G3404"]],[16,17,["G2248"]]]},{"k":24965,"v":[[0,2,["G4160"]],[2,4,["G1656"]],[4,6,["G3326"]],[6,7,["G2257"]],[7,8,["G3962"]],[8,9,["G2532"]],[9,11,["G3415"]],[11,12,["G848"]],[12,13,["G40"]],[13,14,["G1242"]]]},{"k":24966,"v":[[0,2,["G3727"]],[2,3,["G3739"]],[3,5,["G3660"]],[5,6,["G4314"]],[6,7,["G2257"]],[7,8,["G3962"]],[8,9,["G11"]]]},{"k":24967,"v":[[0,4,["G1325"]],[4,6,["G2254"]],[6,10,["G4506"]],[10,12,["G1537"]],[12,14,["G5495"]],[14,16,["G2257"]],[16,17,["G2190"]],[17,19,["G3000"]],[19,20,["G846"]],[20,22,["G870"]]]},{"k":24968,"v":[[0,1,["G1722"]],[1,2,["G3742"]],[2,3,["G2532"]],[3,4,["G1343"]],[4,5,["G1799"]],[5,6,["G846"]],[6,7,["G3956"]],[7,8,["G3588"]],[8,9,["G2250"]],[9,11,["G2257"]],[11,12,["G2222"]]]},{"k":24969,"v":[[0,1,["G2532"]],[1,2,["G4771"]],[2,3,["G3813"]],[3,6,["G2564"]],[6,8,["G4396"]],[8,11,["G5310"]],[11,12,["G1063"]],[12,15,["G4313"]],[15,16,["G4253"]],[16,18,["G4383"]],[18,21,["G2962"]],[21,23,["G2090"]],[23,24,["G846"]],[24,25,["G3598"]]]},{"k":24970,"v":[[0,2,["G1325"]],[2,3,["G1108"]],[3,5,["G4991"]],[5,7,["G846"]],[7,8,["G2992"]],[8,9,["G1722"]],[9,11,["G859"]],[11,13,["G846"]],[13,14,["G266"]]]},{"k":24971,"v":[[0,1,["G1223"]],[1,4,["G4698","G1656"]],[4,6,["G2257"]],[6,7,["G2316"]],[7,8,["G1722","G3739"]],[8,10,["G395"]],[10,11,["G1537"]],[11,13,["G5311"]],[13,15,["G1980"]],[15,16,["G2248"]]]},{"k":24972,"v":[[0,3,["G2014"]],[3,7,["G2521"]],[7,8,["G1722"]],[8,9,["G4655"]],[9,10,["G2532"]],[10,13,["G4639"]],[13,15,["G2288"]],[15,17,["G2720"]],[17,18,["G2257"]],[18,19,["G4228"]],[19,20,["G1519"]],[20,22,["G3598"]],[22,24,["G1515"]]]},{"k":24973,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3813"]],[3,4,["G837"]],[4,5,["G2532"]],[5,7,["G2901"]],[7,9,["G4151"]],[9,10,["G2532"]],[10,11,["G2258"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G2048"]],[14,15,["G2193"]],[15,17,["G2250"]],[17,19,["G846"]],[19,20,["G323"]],[20,21,["G4314"]],[21,22,["G2474"]]]},{"k":24974,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,6,["G1722"]],[6,7,["G1565"]],[7,8,["G2250"]],[8,12,["G1831"]],[12,14,["G1378"]],[14,15,["G3844"]],[15,16,["G2541"]],[16,17,["G828"]],[17,19,["G3956"]],[19,20,["G3588"]],[20,21,["G3625"]],[21,24,["G583"]]]},{"k":24975,"v":[[0,2,["G3778"]],[2,3,["G582"]],[3,5,["G4413"]],[5,6,["G1096"]],[6,8,["G2958"]],[8,10,["G2230"]],[10,12,["G4947"]]]},{"k":24976,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G4198"]],[3,6,["G583"]],[6,8,["G1538"]],[8,9,["G1519"]],[9,11,["G2398"]],[11,12,["G4172"]]]},{"k":24977,"v":[[0,1,["G1161"]],[1,2,["G2501"]],[2,3,["G2532"]],[3,5,["G305"]],[5,6,["G575"]],[6,7,["G1056"]],[7,9,["G1537"]],[9,11,["G4172"]],[11,13,["G3478"]],[13,14,["G1519"]],[14,15,["G2449"]],[15,16,["G1519"]],[16,18,["G4172"]],[18,20,["G1138"]],[20,21,["G3748"]],[21,23,["G2564"]],[23,24,["G965"]],[24,25,["G1223"]],[25,26,["G846"]],[26,27,["G1511"]],[27,28,["G1537"]],[28,30,["G3624"]],[30,31,["G2532"]],[31,32,["G3965"]],[32,34,["G1138"]]]},{"k":24978,"v":[[0,3,["G583"]],[3,4,["G4862"]],[4,5,["G3137"]],[5,6,["G846"]],[6,7,["G3423"]],[7,8,["G1135"]],[8,9,["G5607"]],[9,12,["G1471"]]]},{"k":24979,"v":[[0,1,["G1161"]],[1,4,["G1096"]],[4,7,["G846"]],[7,8,["G1511"]],[8,9,["G1563"]],[9,10,["G3588"]],[10,11,["G2250"]],[11,13,["G4130"]],[13,15,["G846"]],[15,18,["G5088"]]]},{"k":24980,"v":[[0,1,["G2532"]],[1,4,["G5088"]],[4,5,["G848"]],[5,6,["G4416"]],[6,7,["G5207"]],[7,8,["G2532"]],[8,13,["G4683","G846"]],[13,14,["G2532"]],[14,15,["G347"]],[15,16,["G846"]],[16,17,["G1722"]],[17,19,["G5336"]],[19,20,["G1360"]],[20,22,["G2258"]],[22,23,["G3756"]],[23,24,["G5117"]],[24,26,["G846"]],[26,27,["G1722"]],[27,28,["G3588"]],[28,29,["G2646"]]]},{"k":24981,"v":[[0,1,["G2532"]],[1,3,["G2258"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G846"]],[6,7,["G5561"]],[7,8,["G4166"]],[8,10,["G63"]],[10,12,["(G2532)"]],[12,13,["G5442"]],[13,14,["G5438"]],[14,15,["G1909"]],[15,16,["G848"]],[16,17,["G4167"]],[17,19,["G3571"]]]},{"k":24982,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G32"]],[4,7,["G2962"]],[7,9,["G2186"]],[9,10,["G846"]],[10,11,["G2532"]],[11,13,["G1391"]],[13,16,["G2962"]],[16,19,["G4034"]],[19,20,["G846"]],[20,21,["G2532"]],[21,25,["G5399","G3173","G5401"]]]},{"k":24983,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G32"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G5399"]],[7,8,["G3361"]],[8,9,["G1063"]],[9,10,["G2400"]],[10,15,["G2097","G5213"]],[15,17,["G3173"]],[17,18,["G5479"]],[18,19,["G3748"]],[19,21,["G2071"]],[21,23,["G3956"]],[23,24,["G2992"]]]},{"k":24984,"v":[[0,1,["G3754"]],[1,3,["G5213"]],[3,5,["G5088"]],[5,7,["G4594"]],[7,8,["G1722"]],[8,10,["G4172"]],[10,12,["G1138"]],[12,14,["G4990"]],[14,15,["G3739"]],[15,16,["G2076"]],[16,17,["G5547"]],[17,19,["G2962"]]]},{"k":24985,"v":[[0,1,["G2532"]],[1,2,["G5124"]],[2,6,["G4592"]],[6,8,["G5213"]],[8,11,["G2147"]],[11,13,["G1025"]],[13,17,["G4683"]],[17,18,["G2749"]],[18,19,["G1722"]],[19,21,["G5336"]]]},{"k":24986,"v":[[0,1,["G2532"]],[1,2,["G1810"]],[2,4,["G1096"]],[4,5,["G4862"]],[5,6,["G3588"]],[6,7,["G32"]],[7,9,["G4128"]],[9,12,["G3770"]],[12,13,["G4756"]],[13,14,["G134"]],[14,15,["G2316"]],[15,16,["G2532"]],[16,17,["G3004"]]]},{"k":24987,"v":[[0,1,["G1391"]],[1,3,["G2316"]],[3,4,["G1722"]],[4,6,["G5310"]],[6,7,["G2532"]],[7,8,["G1909"]],[8,9,["G1093"]],[9,10,["G1515"]],[10,12,["G2107"]],[12,13,["G1722"]],[13,14,["G444"]]]},{"k":24988,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,6,["G5613"]],[6,7,["G3588"]],[7,8,["G32"]],[8,11,["G565"]],[11,12,["G575"]],[12,13,["G846"]],[13,14,["G1519"]],[14,15,["G3772","(G444)"]],[15,16,["G3588"]],[16,17,["G4166"]],[17,18,["G2036"]],[18,21,["G240","G4314"]],[21,25,["G1330"]],[25,26,["G1211"]],[26,27,["G2193"]],[27,28,["G965"]],[28,29,["G2532"]],[29,30,["G1492"]],[30,31,["G5124"]],[31,32,["G4487"]],[32,37,["G1096"]],[37,38,["G3739"]],[38,39,["G3588"]],[39,40,["G2962"]],[40,43,["G1107"]],[43,45,["G2254"]]]},{"k":24989,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,5,["G4692"]],[5,6,["G2532"]],[6,7,["G429","(G5037)"]],[7,8,["G3137"]],[8,9,["G2532"]],[9,10,["G2501"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G1025"]],[13,14,["G2749"]],[14,15,["G1722"]],[15,17,["G5336"]]]},{"k":24990,"v":[[0,1,["G1161"]],[1,5,["G1492"]],[5,9,["G1232"]],[9,10,["(G4012)"]],[10,11,["G3588"]],[11,12,["G4487"]],[12,15,["G2980"]],[15,16,["G846"]],[16,17,["G4012"]],[17,18,["G5127"]],[18,19,["G3813"]]]},{"k":24991,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,5,["G191"]],[5,7,["G2296"]],[7,8,["G4012"]],[8,13,["G2980"]],[13,14,["G846"]],[14,15,["G5259"]],[15,16,["G3588"]],[16,17,["G4166"]]]},{"k":24992,"v":[[0,1,["G1161"]],[1,2,["G3137"]],[2,3,["G4933"]],[3,4,["G3956"]],[4,5,["G5023"]],[5,6,["G4487"]],[6,8,["G4820"]],[8,10,["G1722"]],[10,11,["G848"]],[11,12,["G2588"]]]},{"k":24993,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4166"]],[3,4,["G1994"]],[4,5,["G1392"]],[5,6,["G2532"]],[6,7,["G134"]],[7,8,["G2316"]],[8,9,["G1909"]],[9,10,["G3956"]],[10,13,["G3739"]],[13,16,["G191"]],[16,17,["G2532"]],[17,18,["G1492"]],[18,19,["G2531"]],[19,22,["G2980"]],[22,23,["G4314"]],[23,24,["G846"]]]},{"k":24994,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,3,["G3638"]],[3,4,["G2250"]],[4,6,["G4130"]],[6,9,["G4059"]],[9,11,["G3588"]],[11,12,["G3813","(G2532)"]],[12,13,["G846"]],[13,14,["G3686"]],[14,16,["G2564"]],[16,17,["G2424"]],[17,21,["G2564"]],[21,22,["G5259"]],[22,23,["G3588"]],[23,24,["G32"]],[24,25,["G4253"]],[25,26,["G846"]],[26,28,["G4815"]],[28,29,["G1722"]],[29,30,["G3588"]],[30,31,["G2836"]]]},{"k":24995,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,3,["G3588"]],[3,4,["G2250"]],[4,6,["G846"]],[6,7,["G2512"]],[7,8,["G2596"]],[8,10,["G3588"]],[10,11,["G3551"]],[11,13,["G3475"]],[13,15,["G4130"]],[15,17,["G321"]],[17,18,["G846"]],[18,19,["G1519"]],[19,20,["G2414"]],[20,22,["G3936"]],[22,25,["G3588"]],[25,26,["G2962"]]]},{"k":24996,"v":[[0,1,["G2531"]],[1,4,["G1125"]],[4,5,["G1722"]],[5,7,["G3551"]],[7,10,["G2962"]],[10,11,["G3956"]],[11,12,["G730"]],[12,14,["G1272"]],[14,16,["G3388"]],[16,19,["G2564"]],[19,20,["G40"]],[20,22,["G3588"]],[22,23,["G2962"]]]},{"k":24997,"v":[[0,1,["G2532"]],[1,3,["G1325"]],[3,5,["G2378"]],[5,6,["G2596"]],[6,11,["G2046"]],[11,12,["G1722"]],[12,14,["G3551"]],[14,17,["G2962"]],[17,19,["G2201"]],[19,21,["G5167"]],[21,22,["G2228"]],[22,23,["G1417"]],[23,24,["G3502"]],[24,25,["G4058"]]]},{"k":24998,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G2258"]],[4,6,["G444"]],[6,7,["G1722"]],[7,8,["G2419"]],[8,9,["G3739"]],[9,10,["G3686"]],[10,12,["G4826"]],[12,13,["G2532"]],[13,15,["G3778"]],[15,16,["G444"]],[16,18,["G1342"]],[18,19,["G2532"]],[19,20,["G2126"]],[20,22,["G4327"]],[22,24,["G3874"]],[24,26,["G2474"]],[26,27,["G2532"]],[27,29,["G40"]],[29,30,["G4151"]],[30,31,["G2258"]],[31,32,["G1909"]],[32,33,["G846"]]]},{"k":24999,"v":[[0,1,["G2532"]],[1,3,["G2258"]],[3,4,["G5537"]],[4,6,["G846"]],[6,7,["G5259"]],[7,8,["G3588"]],[8,9,["G40"]],[9,10,["G4151"]],[10,14,["G3361"]],[14,15,["G1492"]],[15,16,["G2288"]],[16,17,["G4250"]],[17,20,["G1492"]],[20,22,["G2962"]],[22,23,["G5547"]]]},{"k":25000,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G4151"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G2411"]],[9,10,["G2532"]],[10,12,["G3588"]],[12,13,["G1118"]],[13,15,["G1521"]],[15,16,["G3588"]],[16,17,["G3813"]],[17,18,["G2424"]],[18,20,["G4160"]],[20,21,["G4012"]],[21,22,["G846"]],[22,23,["G2596"]],[23,24,["G3588"]],[24,25,["G1480"]],[25,27,["G3588"]],[27,28,["G3551"]]]},{"k":25001,"v":[[0,1,["G2532"]],[1,5,["G1209","G846","G846"]],[5,6,["G1519"]],[6,7,["G848"]],[7,8,["G43"]],[8,9,["G2532"]],[9,10,["G2127"]],[10,11,["G2316"]],[11,12,["G2532"]],[12,13,["G2036"]]]},{"k":25002,"v":[[0,1,["G1203"]],[1,2,["G3568"]],[2,5,["G4675"]],[5,6,["G1401"]],[6,7,["G630"]],[7,8,["G1722"]],[8,9,["G1515"]],[9,10,["G2596"]],[10,12,["G4675"]],[12,13,["G4487"]]]},{"k":25003,"v":[[0,1,["G3754"]],[1,2,["G3450"]],[2,3,["G3788"]],[3,5,["G1492"]],[5,6,["G4675"]],[6,7,["G4992"]]]},{"k":25004,"v":[[0,1,["G3739"]],[1,4,["G2090"]],[4,5,["G2596"]],[5,7,["G4383"]],[7,9,["G3956"]],[9,10,["G2992"]]]},{"k":25005,"v":[[0,2,["G5457"]],[2,3,["G1519"]],[3,4,["G602"]],[4,6,["G1484"]],[6,7,["G2532"]],[7,9,["G1391"]],[9,11,["G4675"]],[11,12,["G2992"]],[12,13,["G2474"]]]},{"k":25006,"v":[[0,1,["G2532"]],[1,2,["G2501"]],[2,3,["G2532"]],[3,4,["G846"]],[4,5,["G3384"]],[5,6,["G2258","G2296"]],[6,7,["G1909"]],[7,12,["G2980"]],[12,13,["G4012"]],[13,14,["G846"]]]},{"k":25007,"v":[[0,1,["G2532"]],[1,2,["G4826"]],[2,3,["G2127"]],[3,4,["G846"]],[4,5,["G2532"]],[5,6,["G2036"]],[6,7,["G4314"]],[7,8,["G3137"]],[8,9,["G846"]],[9,10,["G3384"]],[10,11,["G2400"]],[11,12,["G3778"]],[12,15,["G2749"]],[15,16,["G1519"]],[16,18,["G4431"]],[18,19,["G2532"]],[19,21,["G386"]],[21,23,["G4183"]],[23,24,["G1722"]],[24,25,["G2474"]],[25,26,["G2532"]],[26,27,["G1519"]],[27,29,["G4592"]],[29,34,["G483"]]]},{"k":25008,"v":[[0,1,["G1161"]],[1,2,["(G846)"]],[2,3,["G4501"]],[3,6,["G1330"]],[6,8,["G846"]],[8,9,["G5590"]],[9,10,["G2532"]],[10,11,["G3704"]],[11,13,["G1261"]],[13,14,["G1537"]],[14,15,["G4183"]],[15,16,["G2588"]],[16,19,["G601","G302"]]]},{"k":25009,"v":[[0,1,["G2532"]],[1,3,["G2258"]],[3,5,["G451"]],[5,7,["G4398"]],[7,9,["G2364"]],[9,11,["G5323"]],[11,12,["G1537"]],[12,14,["G5443"]],[14,16,["G768"]],[16,17,["G3778"]],[17,22,["G4260","G1722","G4183","G2250"]],[22,25,["G2198"]],[25,26,["G3326"]],[26,28,["G435"]],[28,29,["G2033"]],[29,30,["G2094"]],[30,31,["G575"]],[31,32,["G848"]],[32,33,["G3932"]]]},{"k":25010,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,5,["G5503"]],[5,7,["G5613"]],[7,10,["G3589","G5064"]],[10,11,["G2094"]],[11,12,["G3739"]],[12,13,["G868"]],[13,14,["G3756"]],[14,15,["G575"]],[15,16,["G3588"]],[16,17,["G2411"]],[17,19,["G3000"]],[19,22,["G3521"]],[22,23,["G2532"]],[23,24,["G1162"]],[24,25,["G3571"]],[25,26,["G2532"]],[26,27,["G2250"]]]},{"k":25011,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G2186"]],[3,6,["G846","G5610"]],[6,8,["G437"]],[8,11,["G3588"]],[11,12,["G2962"]],[12,13,["G2532"]],[13,14,["G2980"]],[14,15,["G4012"]],[15,16,["G846"]],[16,18,["G3956"]],[18,22,["G4327"]],[22,23,["G3085"]],[23,24,["G1722"]],[24,25,["G2419"]]]},{"k":25012,"v":[[0,1,["G2532"]],[1,2,["G5613"]],[2,5,["G5055"]],[5,7,["G537"]],[7,8,["G2596"]],[8,10,["G3588"]],[10,11,["G3551"]],[11,14,["G2962"]],[14,16,["G5290"]],[16,17,["G1519"]],[17,18,["G1056"]],[18,19,["G1519"]],[19,21,["G848"]],[21,22,["G4172"]],[22,23,["G3478"]]]},{"k":25013,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3813"]],[3,4,["G837"]],[4,5,["G2532"]],[5,7,["G2901"]],[7,9,["G4151"]],[9,10,["G4137"]],[10,12,["G4678"]],[12,13,["G2532"]],[13,15,["G5485"]],[15,17,["G2316"]],[17,18,["G2258"]],[18,19,["G1909"]],[19,20,["G846"]]]},{"k":25014,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G1118"]],[3,4,["G4198"]],[4,5,["G1519"]],[5,6,["G2419"]],[6,8,["G2596","G2094"]],[8,10,["G3588"]],[10,11,["G1859"]],[11,13,["G3588"]],[13,14,["G3957"]]]},{"k":25015,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,4,["G1096"]],[4,7,["G1427","G2094"]],[7,8,["G846"]],[8,10,["G305"]],[10,11,["G1519"]],[11,12,["G2414"]],[12,13,["G2596"]],[13,14,["G3588"]],[14,15,["G1485"]],[15,17,["G3588"]],[17,18,["G1859"]]]},{"k":25016,"v":[[0,1,["G2532"]],[1,5,["G5048"]],[5,6,["G3588"]],[6,7,["G2250"]],[7,9,["G846"]],[9,10,["G5290"]],[10,11,["G3588"]],[11,12,["G3816"]],[12,13,["G2424"]],[13,15,["G5278"]],[15,16,["G1722"]],[16,17,["G2419"]],[17,18,["G2532"]],[18,19,["G2501"]],[19,20,["G2532"]],[20,21,["G846"]],[21,22,["G3384"]],[22,23,["G1097"]],[23,24,["G3756"]],[24,26,[]]]},{"k":25017,"v":[[0,1,["G1161"]],[1,3,["G3543"]],[3,4,["G846"]],[4,7,["G1511"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G4923"]],[10,11,["G2064"]],[11,13,["G2250"]],[13,14,["G3598"]],[14,15,["G2532"]],[15,17,["G327"]],[17,18,["G846"]],[18,19,["G1722"]],[19,21,["G4773"]],[21,22,["G2532","(G1722)"]],[22,23,["G1110"]]]},{"k":25018,"v":[[0,1,["G2532"]],[1,4,["G2147"]],[4,5,["G846"]],[5,6,["G3361"]],[6,10,["G5290"]],[10,11,["G1519"]],[11,12,["G2419"]],[12,13,["G2212"]],[13,14,["G846"]]]},{"k":25019,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G3326"]],[7,8,["G5140"]],[8,9,["G2250"]],[9,11,["G2147"]],[11,12,["G846"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G2411"]],[15,16,["G2516"]],[16,17,["G1722"]],[17,19,["G3319"]],[19,21,["G3588"]],[21,22,["G1320"]],[22,23,["G2532"]],[23,24,["G191"]],[24,25,["G846"]],[25,26,["G2532"]],[26,29,["G1905","G846"]]]},{"k":25020,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,4,["G191"]],[4,5,["G846"]],[5,7,["G1839"]],[7,8,["G1909"]],[8,9,["G846"]],[9,10,["G4907"]],[10,11,["G2532"]],[11,12,["G612"]]]},{"k":25021,"v":[[0,1,["G2532"]],[1,4,["G1492"]],[4,5,["G846"]],[5,8,["G1605"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G3384"]],[11,12,["G2036"]],[12,13,["G4314"]],[13,14,["G846"]],[14,15,["G5043"]],[15,16,["G5101"]],[16,19,["G3779"]],[19,20,["G4160"]],[20,22,["G2254"]],[22,23,["G2400"]],[23,24,["G4675"]],[24,25,["G3962"]],[25,27,["G2504"]],[27,29,["G2212"]],[29,30,["G4571"]],[30,31,["G3600"]]]},{"k":25022,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G5101"]],[6,9,["G3754"]],[9,11,["G2212"]],[11,12,["G3165"]],[12,13,["G1492"]],[13,15,["G3756"]],[15,16,["G3754"]],[16,17,["G3165"]],[17,18,["G1163"]],[18,19,["G1511"]],[19,20,["G1722"]],[20,21,["G3450"]],[21,23,["G3588","G3962"]]]},{"k":25023,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G4920"]],[3,4,["G3756"]],[4,5,["G3588"]],[5,6,["G4487"]],[6,7,["G3739"]],[7,9,["G2980"]],[9,11,["G846"]]]},{"k":25024,"v":[[0,1,["G2532"]],[1,4,["G2597"]],[4,5,["G3326"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G2064"]],[8,9,["G1519"]],[9,10,["G3478"]],[10,11,["G2532"]],[11,12,["G2258"]],[12,14,["G5293"]],[14,15,["G846"]],[15,16,["G2532"]],[16,17,["G846"]],[17,18,["G3384"]],[18,19,["G1301"]],[19,20,["G3956"]],[20,21,["G5023"]],[21,22,["G4487"]],[22,23,["G1722"]],[23,24,["G848"]],[24,25,["G2588"]]]},{"k":25025,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G4298"]],[3,5,["G4678"]],[5,6,["G2532"]],[6,7,["G2244"]],[7,8,["G2532"]],[8,10,["G5485"]],[10,11,["G3844"]],[11,12,["G2316"]],[12,13,["G2532"]],[13,14,["G444"]]]},{"k":25026,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,4,["G4003"]],[4,5,["G2094"]],[5,7,["G3588"]],[7,8,["G2231"]],[8,10,["G5086"]],[10,11,["G2541"]],[11,12,["G4194"]],[12,13,["G4091"]],[13,15,["G2230"]],[15,17,["G2449"]],[17,18,["G2532"]],[18,19,["G2264"]],[19,21,["G5075"]],[21,23,["G1056"]],[23,24,["G1161"]],[24,25,["G846"]],[25,26,["G80"]],[26,27,["G5376"]],[27,28,["G5075"]],[28,30,["G2484"]],[30,31,["G2532"]],[31,34,["G5561"]],[34,36,["G5139"]],[36,37,["G2532"]],[37,38,["G3078"]],[38,40,["G5075"]],[40,42,["G9"]]]},{"k":25027,"v":[[0,1,["G452"]],[1,2,["G2532"]],[2,3,["G2533"]],[3,7,["G1909","G749"]],[7,9,["G4487"]],[9,11,["G2316"]],[11,12,["G1096"]],[12,13,["G1909"]],[13,14,["G2491"]],[14,15,["G3588"]],[15,16,["G5207"]],[16,18,["G2197"]],[18,19,["G2197"]],[19,20,["G3588"]],[20,21,["G2048"]]]},{"k":25028,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G1519"]],[4,5,["G3956"]],[5,6,["G3588"]],[6,8,["G4066"]],[8,9,["G2446"]],[9,10,["G2784"]],[10,12,["G908"]],[12,14,["G3341"]],[14,15,["G1519"]],[15,17,["G859"]],[17,19,["G266"]]]},{"k":25029,"v":[[0,1,["G5613"]],[1,4,["G1125"]],[4,5,["G1722"]],[5,7,["G976"]],[7,10,["G3056"]],[10,12,["G2268"]],[12,13,["G3588"]],[13,14,["G4396"]],[14,15,["G3004"]],[15,17,["G5456"]],[17,20,["G994"]],[20,21,["G1722"]],[21,22,["G3588"]],[22,23,["G2048"]],[23,24,["G2090"]],[24,26,["G3588"]],[26,27,["G3598"]],[27,30,["G2962"]],[30,31,["G4160"]],[31,32,["G846"]],[32,33,["G5147"]],[33,34,["G2117"]]]},{"k":25030,"v":[[0,1,["G3956"]],[1,2,["G5327"]],[2,5,["G4137"]],[5,6,["G2532"]],[6,7,["G3956"]],[7,8,["G3735"]],[8,9,["G2532"]],[9,10,["G1015"]],[10,14,["G5013"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G4646"]],[17,20,["G2071"]],[20,21,["G2117"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,25,["G5138"]],[25,27,["(G1519","G3598)"]],[27,29,["G3006"]]]},{"k":25031,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G4561"]],[3,5,["G3700"]],[5,6,["G3588"]],[6,7,["G4992"]],[7,9,["G2316"]]]},{"k":25032,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,6,["G3793"]],[6,9,["G1607"]],[9,12,["G907"]],[12,13,["G5259"]],[13,14,["G846"]],[14,16,["G1081"]],[16,18,["G2191"]],[18,19,["G5101"]],[19,21,["G5263"]],[21,22,["G5213"]],[22,24,["G5343"]],[24,25,["G575"]],[25,26,["G3588"]],[26,27,["G3709"]],[27,29,["G3195"]]]},{"k":25033,"v":[[0,2,["G4160"]],[2,3,["G3767"]],[3,4,["G2590"]],[4,5,["G514"]],[5,7,["G3341"]],[7,8,["G2532"]],[8,9,["G756"]],[9,10,["G3361"]],[10,12,["G3004"]],[12,13,["G1722"]],[13,14,["G1438"]],[14,16,["G2192"]],[16,17,["G11"]],[17,20,["G3962"]],[20,21,["G1063"]],[21,23,["G3004"]],[23,25,["G5213"]],[25,26,["G3754"]],[26,27,["G2316"]],[27,29,["G1410"]],[29,30,["G1537"]],[30,31,["G5130"]],[31,32,["G3037"]],[32,35,["G1453"]],[35,36,["G5043"]],[36,38,["G11"]]]},{"k":25034,"v":[[0,1,["G1161"]],[1,2,["G2235"]],[2,3,["G2532"]],[3,4,["G3588"]],[4,5,["G513"]],[5,7,["G2749"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,10,["G4491"]],[10,12,["G3588"]],[12,13,["G1186"]],[13,14,["G3956"]],[14,15,["G1186"]],[15,16,["G3767"]],[16,20,["G4160","G3361"]],[20,21,["G2570"]],[21,22,["G2590"]],[22,25,["G1581"]],[25,26,["G2532"]],[26,27,["G906"]],[27,28,["G1519"]],[28,30,["G4442"]]]},{"k":25035,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3793"]],[3,4,["G1905"]],[4,5,["G846"]],[5,6,["G3004"]],[6,7,["G5101"]],[7,10,["G4160"]],[10,11,["G3767"]]]},{"k":25036,"v":[[0,1,["(G1161)"]],[1,2,["G611"]],[2,4,["G3004"]],[4,6,["G846"]],[6,9,["G2192"]],[9,10,["G1417"]],[10,11,["G5509"]],[11,14,["G3330"]],[14,18,["G2192"]],[18,19,["G3361"]],[19,20,["G2532"]],[20,23,["G2192"]],[23,24,["G1033"]],[24,27,["G4160"]],[27,28,["G3668"]]]},{"k":25037,"v":[[0,1,["G1161"]],[1,2,["G2064"]],[2,3,["G2532"]],[3,4,["G5057"]],[4,7,["G907"]],[7,8,["G2532"]],[8,9,["G2036"]],[9,10,["G4314"]],[10,11,["G846"]],[11,12,["G1320"]],[12,13,["G5101"]],[13,16,["G4160"]]]},{"k":25038,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G4238"]],[6,7,["G3367"]],[7,8,["G4119"]],[8,9,["G3844"]],[9,13,["G1299"]],[13,14,["G5213"]]]},{"k":25039,"v":[[0,1,["G1161"]],[1,3,["G4754"]],[3,4,["G2532"]],[4,5,["G1905"]],[5,7,["G846"]],[7,8,["G3004"]],[8,9,["G2532"]],[9,10,["G5101"]],[10,12,["G2248"]],[12,13,["G4160"]],[13,14,["G2532"]],[14,16,["G2036"]],[16,17,["G4314"]],[17,18,["G846"]],[18,20,["G1286"]],[20,23,["G3367"]],[23,24,["G3366"]],[24,27,["G4811"]],[27,28,["G2532"]],[28,30,["G714"]],[30,32,["G5216"]],[32,33,["G3800"]]]},{"k":25040,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G2992"]],[4,7,["G4328"]],[7,8,["G2532"]],[8,10,["G3956"]],[10,11,["G1260"]],[11,12,["G1722"]],[12,13,["G848"]],[13,14,["G2588"]],[14,15,["G4012"]],[15,16,["G2491"]],[16,23,["G3379","G846","G1498","G3588","G5547"]]]},{"k":25041,"v":[[0,1,["G2491"]],[1,2,["G611"]],[2,3,["G3004"]],[3,6,["G537"]],[6,7,["G1473"]],[7,8,["G3303"]],[8,9,["G907"]],[9,10,["G5209"]],[10,12,["G5204"]],[12,13,["G1161"]],[13,15,["G2478"]],[15,17,["G3450"]],[17,18,["G2064"]],[18,19,["G3588"]],[19,20,["G2438"]],[20,22,["G3739"]],[22,23,["G5266"]],[23,25,["G1510"]],[25,26,["G3756"]],[26,27,["G2425"]],[27,29,["G3089"]],[29,30,["G846"]],[30,32,["G907"]],[32,33,["G5209"]],[33,34,["G1722"]],[34,36,["G40"]],[36,37,["G4151"]],[37,38,["G2532"]],[38,40,["G4442"]]]},{"k":25042,"v":[[0,1,["G3739"]],[1,2,["G4425"]],[2,4,["G1722"]],[4,5,["G846"]],[5,6,["G5495"]],[6,7,["G2532"]],[7,11,["G1245"]],[11,12,["G848"]],[12,13,["G257"]],[13,14,["G2532"]],[14,16,["G4863"]],[16,17,["G3588"]],[17,18,["G4621"]],[18,19,["G1519"]],[19,20,["G848"]],[20,21,["G596"]],[21,22,["G1161"]],[22,23,["G3588"]],[23,24,["G892"]],[24,27,["G2618"]],[27,29,["G4442"]],[29,30,["G762"]]]},{"k":25043,"v":[[0,1,["G2532","(G3767","G3303)"]],[1,2,["G4183"]],[2,4,["G2087"]],[4,7,["G3870"]],[7,8,["G2097"]],[8,11,["G3588"]],[11,12,["G2992"]]]},{"k":25044,"v":[[0,1,["G1161"]],[1,2,["G2264"]],[2,3,["G3588"]],[3,4,["G5076"]],[4,6,["G1651"]],[6,7,["G5259"]],[7,8,["G846"]],[8,9,["G4012"]],[9,10,["G2266"]],[10,11,["G846"]],[11,12,["G80"]],[12,13,["G5376"]],[13,14,["G1135"]],[14,15,["G2532"]],[15,16,["G4012"]],[16,17,["G3956"]],[17,19,["G4190"]],[19,20,["G3739"]],[20,21,["G2264"]],[21,23,["G4160"]]]},{"k":25045,"v":[[0,1,["G4369"]],[1,2,["G2532"]],[2,3,["G5124"]],[3,4,["G1909"]],[4,5,["G3956"]],[5,6,["G2532"]],[6,9,["G2623"]],[9,10,["G2491"]],[10,11,["G1722"]],[11,12,["G5438"]]]},{"k":25046,"v":[[0,1,["G1161"]],[1,3,["G537"]],[3,4,["G3588"]],[4,5,["G2992"]],[5,7,["G907"]],[7,11,["G1096"]],[11,13,["G2424"]],[13,14,["G2532"]],[14,16,["G907"]],[16,17,["G2532"]],[17,18,["G4336"]],[18,19,["G3588"]],[19,20,["G3772"]],[20,22,["G455"]]]},{"k":25047,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G40"]],[3,4,["G4151"]],[4,5,["G2597"]],[5,8,["G4984"]],[8,9,["G1491"]],[9,10,["G5616"]],[10,12,["G4058"]],[12,13,["G1909"]],[13,14,["G846"]],[14,15,["G2532"]],[15,17,["G5456"]],[17,18,["G1096"]],[18,19,["G1537"]],[19,20,["G3772"]],[20,22,["G3004"]],[22,23,["G4771"]],[23,24,["G1488"]],[24,25,["G3450"]],[25,26,["G27"]],[26,27,["G5207"]],[27,28,["G1722"]],[28,29,["G4671"]],[29,33,["G2106"]]]},{"k":25048,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G846"]],[3,4,["G756"]],[4,6,["G2258"]],[6,7,["G5616"]],[7,11,["G5144","G2094"]],[11,12,["G5607"]],[12,13,["G5613"]],[13,15,["G3543"]],[15,16,["G3588"]],[16,17,["G5207"]],[17,19,["G2501"]],[19,25,["G2242"]]]},{"k":25049,"v":[[0,6,["G3158"]],[6,12,["G3017"]],[12,18,["G3197"]],[18,24,["G2388"]],[24,30,["G2501"]]]},{"k":25050,"v":[[0,6,["G3161"]],[6,12,["G301"]],[12,18,["G3486"]],[18,24,["G2069"]],[24,30,["G3477"]]]},{"k":25051,"v":[[0,6,["G3092"]],[6,12,["G3161"]],[12,18,["G4584"]],[18,24,["G2501"]],[24,30,["G2455"]]]},{"k":25052,"v":[[0,6,["G2490"]],[6,12,["G4488"]],[12,18,["G2216"]],[18,24,["G4528"]],[24,30,["G3518"]]]},{"k":25053,"v":[[0,6,["G3197"]],[6,12,["G78"]],[12,18,["G2973"]],[18,24,["G1678"]],[24,30,["G2262"]]]},{"k":25054,"v":[[0,6,["G2499"]],[6,12,["G1663"]],[12,18,["G2497"]],[18,24,["G3158"]],[24,30,["G3017"]]]},{"k":25055,"v":[[0,6,["G4826"]],[6,12,["G2455"]],[12,18,["G2501"]],[18,24,["G2494"]],[24,30,["G1662"]]]},{"k":25056,"v":[[0,6,["G3190"]],[6,12,["G3104"]],[12,18,["G3160"]],[18,24,["G3481"]],[24,30,["G1138"]]]},{"k":25057,"v":[[0,6,["G2421"]],[6,12,["G5601"]],[12,18,["G1003"]],[18,24,["G4533"]],[24,30,["G3476"]]]},{"k":25058,"v":[[0,6,["G284"]],[6,12,["G689"]],[12,18,["G2074"]],[18,24,["G5329"]],[24,30,["G2455"]]]},{"k":25059,"v":[[0,6,["G2384"]],[6,12,["G2464"]],[12,18,["G11"]],[18,24,["G2291"]],[24,30,["G3493"]]]},{"k":25060,"v":[[0,6,["G4562"]],[6,12,["G4466"]],[12,18,["G5317"]],[18,24,["G1443"]],[24,30,["G4527"]]]},{"k":25061,"v":[[0,6,["G2536"]],[6,12,["G742"]],[12,18,["G4590"]],[18,24,["G3575"]],[24,30,["G2984"]]]},{"k":25062,"v":[[0,6,["G3103"]],[6,12,["G1802"]],[12,18,["G2391"]],[18,24,["G3121"]],[24,30,["G2536"]]]},{"k":25063,"v":[[0,6,["G1800"]],[6,12,["G4589"]],[12,18,["G76"]],[18,24,["G2316"]]]},{"k":25064,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,4,["G4134"]],[4,7,["G40"]],[7,8,["G4151"]],[8,9,["G5290"]],[9,10,["G575"]],[10,11,["G2446"]],[11,12,["G2532"]],[12,14,["G71"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G4151"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G2048"]]]},{"k":25065,"v":[[0,2,["G5062"]],[2,3,["G2250"]],[3,4,["G3985"]],[4,5,["G5259"]],[5,6,["G3588"]],[6,7,["G1228"]],[7,8,["G2532"]],[8,9,["G1722"]],[9,10,["G1565"]],[10,11,["G2250"]],[11,13,["(G3756)"]],[13,14,["G5315"]],[14,15,["G3762"]],[15,16,["G2532"]],[16,18,["G846"]],[18,20,["G4931"]],[20,22,["G5305"]],[22,23,["G3983"]]]},{"k":25066,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1228"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G1487"]],[7,9,["G1488"]],[9,11,["G5207"]],[11,13,["G2316"]],[13,14,["G2036"]],[14,15,["G5129"]],[15,16,["G3037"]],[16,17,["G2443"]],[17,20,["G1096"]],[20,21,["G740"]]]},{"k":25067,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611","(G4314)"]],[3,4,["G846"]],[4,5,["G3004"]],[5,8,["G1125"]],[8,9,["G3754"]],[9,10,["G444"]],[10,12,["G3756"]],[12,13,["G2198"]],[13,14,["G1909"]],[14,15,["G740"]],[15,16,["G3441"]],[16,17,["G235"]],[17,18,["G1909"]],[18,19,["G3956"]],[19,20,["G4487"]],[20,22,["G2316"]]]},{"k":25068,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1228"]],[3,6,["G321","G846"]],[6,7,["G1519"]],[7,9,["G5308"]],[9,10,["G3735"]],[10,11,["G1166"]],[11,13,["G846"]],[13,14,["G3956"]],[14,15,["G3588"]],[15,16,["G932"]],[16,18,["G3588"]],[18,19,["G3625"]],[19,20,["G1722"]],[20,22,["G4743"]],[22,24,["G5550"]]]},{"k":25069,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1228"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G537"]],[7,8,["G5026"]],[8,9,["G1849"]],[9,12,["G1325"]],[12,13,["G4671"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G1391"]],[16,18,["G846"]],[18,19,["G3754"]],[19,22,["G3860"]],[22,24,["G1698"]],[24,25,["G2532"]],[25,27,["G3739","G1437"]],[27,29,["G2309"]],[29,31,["G1325"]],[31,32,["G846"]]]},{"k":25070,"v":[[0,1,["G1437"]],[1,2,["G4771"]],[2,3,["G3767"]],[3,5,["G4352"]],[5,6,["G3450"]],[6,7,["G3956"]],[7,9,["G2071"]],[9,10,["G4675"]]]},{"k":25071,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G5217"]],[8,10,["G3694"]],[10,11,["G3450"]],[11,12,["G4567"]],[12,13,["G1063"]],[13,16,["G1125"]],[16,19,["G4352"]],[19,21,["G2962"]],[21,22,["G4675"]],[22,23,["G2316"]],[23,24,["G2532"]],[24,25,["G846"]],[25,26,["G3441"]],[26,29,["G3000"]]]},{"k":25072,"v":[[0,1,["G2532"]],[1,3,["G71"]],[3,4,["G846"]],[4,5,["G1519"]],[5,6,["G2419"]],[6,7,["G2532"]],[7,8,["G2476"]],[8,9,["G846"]],[9,10,["G1909"]],[10,12,["G4419"]],[12,14,["G3588"]],[14,15,["G2411"]],[15,16,["G2532"]],[16,17,["G2036"]],[17,19,["G846"]],[19,20,["G1487"]],[20,22,["G1488"]],[22,24,["G5207"]],[24,26,["G2316"]],[26,27,["G906"]],[27,28,["G4572"]],[28,29,["G2736"]],[29,31,["G1782"]]]},{"k":25073,"v":[[0,1,["G1063"]],[1,4,["G1125"]],[4,10,["G1781","G848","G32"]],[10,11,["G4012"]],[11,12,["G4675"]],[12,14,["G1314"]],[14,15,["G4571"]]]},{"k":25074,"v":[[0,1,["G2532"]],[1,2,["G1909"]],[2,4,["G5495"]],[4,9,["G142","G4571"]],[9,13,["G3379"]],[13,15,["G4350"]],[15,16,["G4675"]],[16,17,["G4228"]],[17,18,["G4314"]],[18,20,["G3037"]]]},{"k":25075,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,6,["G846"]],[6,9,["G2046"]],[9,12,["G3756"]],[12,13,["G1598"]],[13,15,["G2962"]],[15,16,["G4675"]],[16,17,["G2316"]]]},{"k":25076,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G1228"]],[4,6,["G4931"]],[6,7,["G3956"]],[7,9,["G3986"]],[9,11,["G868"]],[11,12,["G575"]],[12,13,["G846"]],[13,16,["G891","G2540"]]]},{"k":25077,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G5290"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G1411"]],[6,8,["G3588"]],[8,9,["G4151"]],[9,10,["G1519"]],[10,11,["G1056"]],[11,12,["G2532"]],[12,15,["G1831"]],[15,17,["G5345"]],[17,18,["G4012"]],[18,19,["G846"]],[19,20,["G2596"]],[20,21,["G3650"]],[21,22,["G3588"]],[22,25,["G4066"]]]},{"k":25078,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G1321"]],[3,4,["G1722"]],[4,5,["G846"]],[5,6,["G4864"]],[6,8,["G1392"]],[8,9,["G5259"]],[9,10,["G3956"]]]},{"k":25079,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G1519"]],[4,5,["G3478"]],[5,6,["G3757"]],[6,9,["G2258"]],[9,11,["G5142"]],[11,12,["G2532"]],[12,13,["G2596"]],[13,14,["G846"]],[14,15,["G1486"]],[15,18,["G1525"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G4864"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G4521"]],[24,25,["G2250"]],[25,26,["G2532"]],[26,28,["G450"]],[28,31,["G314"]]]},{"k":25080,"v":[[0,1,["G2532"]],[1,4,["G1929"]],[4,6,["G846"]],[6,8,["G975"]],[8,10,["G3588"]],[10,11,["G4396"]],[11,12,["G2268"]],[12,13,["G2532"]],[13,17,["G380"]],[17,18,["G3588"]],[18,19,["G975"]],[19,21,["G2147"]],[21,22,["G3588"]],[22,23,["G5117"]],[23,24,["G3757"]],[24,26,["G2258"]],[26,27,["G1125"]]]},{"k":25081,"v":[[0,2,["G4151"]],[2,5,["G2962"]],[5,7,["G1909"]],[7,8,["G1691"]],[8,9,["G3739","G1752"]],[9,12,["G5548"]],[12,13,["G3165"]],[13,17,["G2097"]],[17,20,["G4434"]],[20,23,["G649"]],[23,24,["G3165"]],[24,26,["G2390"]],[26,27,["G3588"]],[27,28,["G4937","G2588"]],[28,30,["G2784"]],[30,31,["G859"]],[31,34,["G164"]],[34,35,["G2532"]],[35,38,["G309"]],[38,41,["G5185"]],[41,43,["G649"]],[43,44,["G1722"]],[44,45,["G859"]],[45,49,["G2352"]]]},{"k":25082,"v":[[0,2,["G2784"]],[2,4,["G1184"]],[4,5,["G1763"]],[5,8,["G2962"]]]},{"k":25083,"v":[[0,1,["G2532"]],[1,3,["G4428"]],[3,4,["G3588"]],[4,5,["G975"]],[5,10,["G591"]],[10,12,["G3588"]],[12,13,["G5257"]],[13,16,["G2523"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G3788"]],[19,21,["G3956"]],[21,25,["G1722"]],[25,26,["G3588"]],[26,27,["G4864"]],[27,28,["G2258"]],[28,30,["G816"]],[30,31,["G846"]]]},{"k":25084,"v":[[0,1,["G1161"]],[1,3,["G756"]],[3,5,["G3004"]],[5,6,["G4314"]],[6,7,["G846"]],[7,9,["G4594"]],[9,11,["G3778"]],[11,12,["G1124"]],[12,13,["G4137"]],[13,14,["G1722"]],[14,15,["G5216"]],[15,16,["G3775"]]]},{"k":25085,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,5,["G3140","G846"]],[5,6,["G2532"]],[6,7,["G2296"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,10,["G5485"]],[10,11,["G3056"]],[11,13,["G1607"]],[13,15,["G1537"]],[15,16,["G846"]],[16,17,["G4750"]],[17,18,["G2532"]],[18,20,["G3004"]],[20,21,["G2076"]],[21,22,["G3756"]],[22,23,["G3778"]],[23,24,["G2501"]],[24,25,["G5207"]]]},{"k":25086,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,8,["G3843"]],[8,9,["G2046"]],[9,11,["G3427"]],[11,12,["G5026"]],[12,13,["G3850"]],[13,14,["G2395"]],[14,15,["G2323"]],[15,16,["G4572"]],[16,17,["G3745"]],[17,20,["G191"]],[20,21,["G1096"]],[21,22,["G1722"]],[22,23,["G2584"]],[23,24,["G4160"]],[24,25,["G2532"]],[25,26,["G5602"]],[26,27,["G1722"]],[27,28,["G4675"]],[28,29,["G3968"]]]},{"k":25087,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G281"]],[4,6,["G3004"]],[6,8,["G5213"]],[8,9,["G3762"]],[9,10,["G4396"]],[10,11,["G2076"]],[11,12,["G1184"]],[12,13,["G1722"]],[13,15,["G848"]],[15,16,["G3968"]]]},{"k":25088,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,4,["G5213"]],[4,5,["G1909"]],[5,7,["G225"]],[7,8,["G4183"]],[8,9,["G5503"]],[9,10,["G2258"]],[10,11,["G1722"]],[11,12,["G2474"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G2250"]],[15,17,["G2243"]],[17,18,["G3753"]],[18,19,["G3588"]],[19,20,["G3772"]],[20,23,["G2808"]],[23,24,["G5140"]],[24,25,["G2094"]],[25,26,["G2532"]],[26,27,["G1803"]],[27,28,["G3376"]],[28,29,["G5613"]],[29,30,["G3173"]],[30,31,["G3042"]],[31,32,["G1096"]],[32,33,["G1909"]],[33,34,["G3956"]],[34,35,["G3588"]],[35,36,["G1093"]]]},{"k":25089,"v":[[0,1,["G2532"]],[1,2,["G4314"]],[2,3,["G3762"]],[3,5,["G846"]],[5,7,["G2243"]],[7,8,["G3992"]],[8,9,["G1508"]],[9,10,["G1519"]],[10,11,["G4558"]],[11,15,["G4605"]],[15,16,["G4314"]],[16,18,["G1135"]],[18,22,["G5503"]]]},{"k":25090,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,3,["G3015"]],[3,4,["G2258"]],[4,5,["G1722"]],[5,6,["G2474"]],[6,9,["G1909"]],[9,11,["G1666"]],[11,12,["G3588"]],[12,13,["G4396"]],[13,14,["G2532"]],[14,15,["G3762"]],[15,17,["G846"]],[17,19,["G2511"]],[19,20,["G1508"]],[20,21,["G3497"]],[21,22,["G3588"]],[22,23,["G4948"]]]},{"k":25091,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,4,["G1722"]],[4,5,["G3588"]],[5,6,["G4864"]],[6,9,["G191"]],[9,11,["G5023"]],[11,13,["G4130"]],[13,15,["G2372"]]]},{"k":25092,"v":[[0,1,["G2532"]],[1,3,["G450"]],[3,5,["G1544"]],[5,6,["G846"]],[6,7,["G1854"]],[7,9,["G3588"]],[9,10,["G4172"]],[10,11,["G2532"]],[11,12,["G71"]],[12,13,["G846"]],[13,14,["G2193"]],[14,15,["G3588"]],[15,16,["G3790"]],[16,18,["G3588"]],[18,19,["G3735"]],[19,20,["G1909","G3739"]],[20,21,["G846"]],[21,22,["G4172"]],[22,24,["G3618"]],[24,31,["G2630","G846"]]]},{"k":25093,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G1330"]],[3,4,["G1223"]],[4,6,["G3319"]],[6,8,["G846"]],[8,11,["G4198"]]]},{"k":25094,"v":[[0,1,["G2532"]],[1,3,["G2718"]],[3,4,["G1519"]],[4,5,["G2584"]],[5,7,["G4172"]],[7,9,["G1056"]],[9,10,["G2532"]],[10,11,["G2258","G1321"]],[11,12,["G846"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,16,["G4521"]]]},{"k":25095,"v":[[0,1,["G2532"]],[1,4,["G1605"]],[4,5,["G1909"]],[5,6,["G846"]],[6,7,["G1322"]],[7,8,["G3754"]],[8,9,["G846"]],[9,10,["G3056"]],[10,11,["G2258"]],[11,12,["G1722"]],[12,13,["G1849"]]]},{"k":25096,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G4864"]],[4,6,["G2258"]],[6,8,["G444"]],[8,10,["G2192"]],[10,12,["G4151"]],[12,15,["G169"]],[15,16,["G1140"]],[16,17,["G2532"]],[17,19,["G349"]],[19,22,["G3173"]],[22,23,["G5456"]]]},{"k":25097,"v":[[0,1,["G3004"]],[1,4,["G1436"]],[4,11,["G5101","G2254","G2532","G4671"]],[11,13,["G2424"]],[13,15,["G3479"]],[15,18,["G2064"]],[18,20,["G622"]],[20,21,["G2248"]],[21,23,["G1492"]],[23,24,["G4571"]],[24,25,["G5101"]],[25,27,["G1488"]],[27,28,["G3588"]],[28,30,["G40"]],[30,32,["G2316"]]]},{"k":25098,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2008"]],[3,4,["G846"]],[4,5,["G3004"]],[5,8,["G5392"]],[8,9,["G2532"]],[9,10,["G1831"]],[10,12,["G1537"]],[12,13,["G846"]],[13,14,["G2532"]],[14,16,["G3588"]],[16,17,["G1140"]],[17,19,["G4496"]],[19,20,["G846"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G3319"]],[23,25,["G1831"]],[25,27,["G575"]],[27,28,["G846"]],[28,29,["G2532"]],[29,30,["G984"]],[30,31,["G846"]],[31,32,["G3367"]]]},{"k":25099,"v":[[0,1,["G2532"]],[1,3,["(G1909)"]],[3,4,["G3956"]],[4,5,["G2285","G1096"]],[5,6,["G2532"]],[6,7,["G4814"]],[7,8,["G4314"]],[8,9,["G240"]],[9,10,["G3004"]],[10,11,["G5101"]],[11,13,["G3056"]],[13,15,["G3778"]],[15,16,["G3754"]],[16,17,["G1722"]],[17,18,["G1849"]],[18,19,["G2532"]],[19,20,["G1411"]],[20,22,["G2004"]],[22,23,["G3588"]],[23,24,["G169"]],[24,25,["G4151"]],[25,26,["G2532"]],[26,29,["G1831"]]]},{"k":25100,"v":[[0,1,["G2532"]],[1,3,["G2279"]],[3,4,["G4012"]],[4,5,["G846"]],[5,7,["G1607"]],[7,8,["G1519"]],[8,9,["G3956"]],[9,10,["G5117"]],[10,12,["G3588"]],[12,15,["G4066"]]]},{"k":25101,"v":[[0,1,["G1161"]],[1,3,["G450"]],[3,5,["G1537"]],[5,6,["G3588"]],[6,7,["G4864"]],[7,9,["G1525"]],[9,10,["G1519"]],[10,11,["G4613"]],[11,12,["G3614"]],[12,13,["G1161"]],[13,14,["G4613"]],[14,16,["G3994"]],[16,17,["G2258"]],[17,19,["G4912"]],[19,21,["G3173"]],[21,22,["G4446"]],[22,23,["G2532"]],[23,25,["G2065"]],[25,26,["G846"]],[26,27,["G4012"]],[27,28,["G846"]]]},{"k":25102,"v":[[0,1,["G2532"]],[1,3,["G2186"]],[3,4,["G1883"]],[4,5,["G846"]],[5,7,["G2008"]],[7,8,["G3588"]],[8,9,["G4446"]],[9,10,["G2532"]],[10,12,["G863"]],[12,13,["G846"]],[13,14,["G1161"]],[14,15,["G3916"]],[15,17,["G450"]],[17,19,["G1247"]],[19,21,["G846"]]]},{"k":25103,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G2246"]],[4,6,["G1416"]],[6,7,["G3956"]],[7,8,["G3745"]],[8,10,["G2192"]],[10,12,["G770"]],[12,14,["G4164"]],[14,15,["G3554"]],[15,16,["G71"]],[16,17,["G846"]],[17,18,["G4314"]],[18,19,["G846"]],[19,20,["G1161"]],[20,21,["G3588"]],[21,25,["G2007","G5495"]],[25,26,["G1538"]],[26,27,["G1520"]],[27,29,["G846"]],[29,31,["G2323"]],[31,32,["G846"]]]},{"k":25104,"v":[[0,1,["G1161"]],[1,2,["G1140"]],[2,3,["G2532"]],[3,4,["G1831"]],[4,6,["G575"]],[6,7,["G4183"]],[7,9,["G2896"]],[9,10,["G2532"]],[10,11,["G3004"]],[11,12,["G4771"]],[12,13,["G1488"]],[13,14,["G5547"]],[14,15,["G3588"]],[15,16,["G5207"]],[16,18,["G2316"]],[18,19,["G2532"]],[19,21,["G2008"]],[21,23,["G1439"]],[23,24,["G846"]],[24,25,["G3756"]],[25,27,["G2980"]],[27,28,["G3754"]],[28,30,["G1492"]],[30,32,["G846"]],[32,33,["G1511"]],[33,34,["G5547"]]]},{"k":25105,"v":[[0,1,["G1161"]],[1,4,["G1096"]],[4,5,["G2250"]],[5,7,["G1831"]],[7,9,["G4198"]],[9,10,["G1519"]],[10,12,["G2048"]],[12,13,["G5117"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G3793"]],[16,17,["G2212"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G2064"]],[20,21,["G2193"]],[21,22,["G846"]],[22,23,["G2532"]],[23,24,["G2722"]],[24,25,["G846"]],[25,29,["G3361"]],[29,30,["G4198"]],[30,31,["G575"]],[31,32,["G846"]]]},{"k":25106,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G3165"]],[6,7,["G1163"]],[7,8,["G2097"]],[8,9,["G3588"]],[9,10,["G932"]],[10,12,["G2316"]],[12,14,["G2087"]],[14,15,["G4172"]],[15,16,["G2532"]],[16,17,["G3754"]],[17,18,["G1519","G5124"]],[18,21,["G649"]]]},{"k":25107,"v":[[0,1,["G2532"]],[1,3,["G2258","G2784"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G4864"]],[6,8,["G1056"]]]},{"k":25108,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,8,["G3588"]],[8,9,["G3793"]],[9,11,["G1945"]],[11,12,["G846"]],[12,14,["G191"]],[14,15,["G3588"]],[15,16,["G3056"]],[16,18,["G2316","(G2532)"]],[18,19,["G846"]],[19,20,["G2258","G2476"]],[20,21,["G3844"]],[21,22,["G3588"]],[22,23,["G3041"]],[23,25,["G1082"]]]},{"k":25109,"v":[[0,1,["G2532"]],[1,2,["G1492"]],[2,3,["G1417"]],[3,4,["G4143"]],[4,5,["G2476"]],[5,6,["G3844"]],[6,7,["G3588"]],[7,8,["G3041"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G231"]],[11,13,["G576"]],[13,15,["G576"]],[15,16,["G846"]],[16,19,["G637"]],[19,21,["G1350"]]]},{"k":25110,"v":[[0,1,["G1161"]],[1,3,["G1684"]],[3,4,["G1519"]],[4,5,["G1520"]],[5,7,["G3588"]],[7,8,["G4143"]],[8,9,["G3739"]],[9,10,["G2258"]],[10,11,["G4613"]],[11,13,["G2065"]],[13,14,["G846"]],[14,19,["G1877"]],[19,21,["G3641"]],[21,22,["G575"]],[22,23,["G3588"]],[23,24,["G1093"]],[24,25,["G2532"]],[25,28,["G2523"]],[28,30,["G1321"]],[30,31,["G3588"]],[31,32,["G3793"]],[32,34,["G1537"]],[34,35,["G3588"]],[35,36,["G4143"]]]},{"k":25111,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,5,["G3973"]],[5,6,["G2980"]],[6,8,["G2036"]],[8,9,["G4314"]],[9,10,["G4613"]],[10,12,["G1877"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G899"]],[15,16,["G2532"]],[16,18,["G5465"]],[18,19,["G5216"]],[19,20,["G1350"]],[20,21,["G1519"]],[21,23,["G61"]]]},{"k":25112,"v":[[0,1,["G2532"]],[1,2,["G4613"]],[2,3,["G611"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G1988"]],[7,10,["G2872","(G1223)"]],[10,11,["G3650"]],[11,12,["G3588"]],[12,13,["G3571"]],[13,16,["G2983"]],[16,17,["G3762"]],[17,18,["G1161"]],[18,19,["G1909"]],[19,20,["G4675"]],[20,21,["G4487"]],[21,25,["G5465"]],[25,26,["G3588"]],[26,27,["G1350"]]]},{"k":25113,"v":[[0,1,["G2532"]],[1,5,["G5124"]],[5,6,["G4160"]],[6,8,["G4788"]],[8,10,["G4183"]],[10,11,["G4128"]],[11,13,["G2486"]],[13,14,["G1161"]],[14,15,["G846"]],[15,16,["G1350"]],[16,17,["G1284"]]]},{"k":25114,"v":[[0,1,["G2532"]],[1,3,["G2656"]],[3,6,["G3353"]],[6,7,["G3588"]],[7,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2087"]],[11,12,["G4143"]],[12,16,["G2064"]],[16,18,["G4815"]],[18,19,["G846"]],[19,20,["G2532"]],[20,22,["G2064"]],[22,23,["G2532"]],[23,24,["G4130"]],[24,25,["G297"]],[25,26,["G3588"]],[26,27,["G4143"]],[27,29,["G5620"]],[29,30,["G846"]],[30,33,["G1036"]]]},{"k":25115,"v":[[0,1,["G1161"]],[1,2,["G4613"]],[2,3,["G4074"]],[3,4,["G1492"]],[4,8,["G4363"]],[8,10,["G2424"]],[10,11,["G1119"]],[11,12,["G3004"]],[12,13,["G1831"]],[13,14,["G575"]],[14,15,["G1700"]],[15,16,["G3754"]],[16,18,["G1510"]],[18,20,["G268"]],[20,21,["G435"]],[21,23,["G2962"]]]},{"k":25116,"v":[[0,1,["G1063"]],[1,2,["G846"]],[2,4,["G2285","G4023"]],[4,5,["G2532"]],[5,6,["G3956"]],[6,7,["G3588"]],[7,9,["G4862"]],[9,10,["G846"]],[10,11,["G1909"]],[11,12,["G3588"]],[12,13,["G61"]],[13,15,["G3588"]],[15,16,["G2486"]],[16,17,["G3739"]],[17,20,["G4815"]]]},{"k":25117,"v":[[0,1,["G1161"]],[1,2,["G3668"]],[2,4,["G2532"]],[4,5,["G2385"]],[5,6,["G2532"]],[6,7,["G2491"]],[7,9,["G5207"]],[9,11,["G2199"]],[11,12,["G3739"]],[12,13,["G2258"]],[13,14,["G2844"]],[14,16,["G4613"]],[16,17,["G2532"]],[17,18,["G2424"]],[18,19,["G2036"]],[19,20,["G4314"]],[20,21,["G4613"]],[21,22,["G5399"]],[22,23,["G3361"]],[23,24,["G575"]],[24,25,["G3568"]],[25,27,["(G2071)"]],[27,28,["G2221"]],[28,29,["G444"]]]},{"k":25118,"v":[[0,1,["G2532"]],[1,5,["G2609"]],[5,7,["G4143"]],[7,8,["G1909"]],[8,9,["G1093"]],[9,11,["G863"]],[11,12,["G537"]],[12,14,["G190"]],[14,15,["G846"]]]},{"k":25119,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G846"]],[7,8,["G1511"]],[8,9,["G1722"]],[9,11,["G3391"]],[11,12,["G4172","(G2532)"]],[12,13,["G2400"]],[13,15,["G435"]],[15,16,["G4134"]],[16,18,["G3014"]],[18,19,["(G2532)"]],[19,20,["G1492"]],[20,21,["G2424"]],[21,22,["G4098"]],[22,23,["G1909"]],[23,25,["G4383"]],[25,27,["G1189"]],[27,28,["G846"]],[28,29,["G3004"]],[29,30,["G2962"]],[30,31,["G1437"]],[31,33,["G2309"]],[33,35,["G1410"]],[35,38,["G2511","G3165"]]]},{"k":25120,"v":[[0,1,["G2532"]],[1,4,["G1614"]],[4,6,["G5495"]],[6,8,["G680"]],[8,9,["G846"]],[9,10,["G2036"]],[10,12,["G2309"]],[12,15,["G2511"]],[15,16,["G2532"]],[16,17,["G2112"]],[17,18,["G3588"]],[18,19,["G3014"]],[19,20,["G565"]],[20,21,["G575"]],[21,22,["G846"]]]},{"k":25121,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3853"]],[3,4,["G846"]],[4,6,["G2036"]],[6,8,["G3367"]],[8,9,["G235"]],[9,10,["G565"]],[10,12,["G1166"]],[12,13,["G4572"]],[13,15,["G3588"]],[15,16,["G2409"]],[16,17,["G2532"]],[17,18,["G4374"]],[18,19,["G4012"]],[19,20,["G4675"]],[20,21,["G2512"]],[21,23,["G2531"]],[23,24,["G3475"]],[24,25,["G4367"]],[25,26,["G1519"]],[26,28,["G3142"]],[28,30,["G846"]]]},{"k":25122,"v":[[0,1,["G1161"]],[1,5,["G3123"]],[5,10,["G1330","G3056"]],[10,11,["G4012"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G4183"]],[14,15,["G3793"]],[15,17,["G4905"]],[17,19,["G191"]],[19,20,["G2532"]],[20,23,["G2323"]],[23,24,["G5259"]],[24,25,["G846"]],[25,26,["G575"]],[26,27,["G848"]],[27,28,["G769"]]]},{"k":25123,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G2258","G5298"]],[3,5,["G1722"]],[5,6,["G3588"]],[6,7,["G2048"]],[7,8,["G2532"]],[8,9,["G4336"]]]},{"k":25124,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,6,["G1722"]],[6,8,["G3391"]],[8,9,["G2250"]],[9,10,["(G2532)"]],[10,11,["G846"]],[11,12,["G2258"]],[12,13,["G1321"]],[13,14,["G2532"]],[14,16,["G2258"]],[16,17,["G5330"]],[17,18,["G2532"]],[18,22,["G3547"]],[22,24,["G2521"]],[24,25,["G3739"]],[25,26,["G2258"]],[26,27,["G2064"]],[27,29,["G1537"]],[29,30,["G3956"]],[30,31,["G2968"]],[31,33,["G1056"]],[33,34,["G2532"]],[34,35,["G2449"]],[35,36,["G2532"]],[36,37,["G2419"]],[37,38,["G2532"]],[38,40,["G1411"]],[40,43,["G2962"]],[43,44,["G2258"]],[44,47,["G2390"]],[47,48,["G846"]]]},{"k":25125,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G435"]],[3,4,["G5342"]],[4,5,["G1909"]],[5,7,["G2825"]],[7,9,["G444"]],[9,10,["G3739"]],[10,11,["G2258"]],[11,15,["G3886"]],[15,16,["G2532"]],[16,18,["G2212"]],[18,23,["G1533","G846"]],[23,24,["G2532"]],[24,26,["G5087"]],[26,28,["G1799"]],[28,29,["G846"]]]},{"k":25126,"v":[[0,1,["G2532"]],[1,5,["G3361"]],[5,6,["G2147"]],[6,7,["G1223"]],[7,8,["G4169"]],[8,14,["G1533","G846"]],[14,16,["G1223"]],[16,17,["G3588"]],[17,18,["G3793"]],[18,20,["G305"]],[20,21,["G1909"]],[21,22,["G3588"]],[22,23,["G1430"]],[23,24,["G2532"]],[24,27,["G2524","G846"]],[27,28,["G1223"]],[28,29,["G3588"]],[29,30,["G2766"]],[30,31,["G4862"]],[31,33,["G2826"]],[33,34,["G1519"]],[34,35,["G3588"]],[35,36,["G3319"]],[36,37,["G1715"]],[37,38,["G2424"]]]},{"k":25127,"v":[[0,1,["G2532"]],[1,4,["G1492"]],[4,5,["G846"]],[5,6,["G4102"]],[6,8,["G2036"]],[8,10,["G846"]],[10,11,["G444"]],[11,12,["G4675"]],[12,13,["G266"]],[13,15,["G863"]],[15,16,["G4671"]]]},{"k":25128,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1122"]],[3,4,["G2532"]],[4,5,["G3588"]],[5,6,["G5330"]],[6,7,["G756"]],[7,9,["G1260"]],[9,10,["G3004"]],[10,11,["G5101"]],[11,12,["G2076"]],[12,13,["G3778"]],[13,14,["G3739"]],[14,15,["G2980"]],[15,16,["G988"]],[16,17,["G5101"]],[17,18,["G1410"]],[18,19,["G863"]],[19,20,["G266"]],[20,21,["G1508"]],[21,22,["G2316"]],[22,23,["G3441"]]]},{"k":25129,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,4,["G1921"]],[4,5,["G846"]],[5,6,["G1261"]],[6,8,["G611"]],[8,9,["G2036"]],[9,10,["G4314"]],[10,11,["G846"]],[11,12,["G5101"]],[12,13,["G1260"]],[13,15,["G1722"]],[15,16,["G5216"]],[16,17,["G2588"]]]},{"k":25130,"v":[[0,1,["G5101"]],[1,2,["G2076"]],[2,3,["G2123"]],[3,5,["G2036"]],[5,6,["G4675"]],[6,7,["G266"]],[7,9,["G863"]],[9,10,["G4671"]],[10,11,["G2228"]],[11,13,["G2036"]],[13,15,["G1453"]],[15,16,["G2532"]],[16,17,["G4043"]]]},{"k":25131,"v":[[0,1,["G1161"]],[1,2,["G2443"]],[2,5,["G1492"]],[5,6,["G3754"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G444"]],[10,11,["G2192"]],[11,12,["G1849"]],[12,13,["G1909"]],[13,14,["G1093"]],[14,16,["G863"]],[16,17,["G266"]],[17,19,["G2036"]],[19,21,["G3588"]],[21,25,["G3886"]],[25,27,["G3004"]],[27,29,["G4671"]],[29,30,["G1453"]],[30,31,["G2532"]],[31,33,["G142"]],[33,34,["G4675"]],[34,35,["G2826"]],[35,36,["G2532"]],[36,37,["G4198"]],[37,38,["G1519"]],[38,39,["G4675"]],[39,40,["G3624"]]]},{"k":25132,"v":[[0,1,["G2532"]],[1,2,["G3916"]],[2,5,["G450"]],[5,6,["G1799"]],[6,7,["G846"]],[7,10,["G142"]],[10,12,["G1909","G3739"]],[12,14,["G2621"]],[14,16,["G565"]],[16,17,["G1519"]],[17,19,["G848"]],[19,20,["G3624"]],[20,21,["G1392"]],[21,22,["G2316"]]]},{"k":25133,"v":[[0,1,["G2532"]],[1,5,["G1611","G2983","G537"]],[5,6,["G2532"]],[6,8,["G1392"]],[8,9,["G2316"]],[9,10,["G2532"]],[10,12,["G4130"]],[12,14,["G5401"]],[14,15,["G3004"]],[15,18,["G1492"]],[18,20,["G3861"]],[20,22,["G4594"]]]},{"k":25134,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,4,["G5023"]],[4,7,["G1831"]],[7,8,["G2532"]],[8,9,["G2300"]],[9,11,["G5057"]],[11,12,["G3686"]],[12,13,["G3018"]],[13,14,["G2521"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,19,["G5058"]],[19,20,["G2532"]],[20,22,["G2036"]],[22,24,["G846"]],[24,25,["G190"]],[25,26,["G3427"]]]},{"k":25135,"v":[[0,1,["G2532"]],[1,3,["G2641"]],[3,4,["G537"]],[4,6,["G450"]],[6,8,["G190"]],[8,9,["G846"]]]},{"k":25136,"v":[[0,1,["G2532"]],[1,2,["G3018"]],[2,3,["G4160"]],[3,4,["G846"]],[4,6,["G3173"]],[6,7,["G1403"]],[7,8,["G1722"]],[8,10,["G848"]],[10,11,["G3614"]],[11,12,["G2532"]],[12,14,["G2258"]],[14,16,["G4183"]],[16,17,["G3793"]],[17,19,["G5057"]],[19,20,["G2532"]],[20,22,["G243"]],[22,23,["G3739"]],[23,25,["G2258","G2621"]],[25,26,["G3326"]],[26,27,["G846"]]]},{"k":25137,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G1122"]],[3,4,["G2532"]],[4,5,["G5330"]],[5,6,["G1111"]],[6,7,["G4314"]],[7,8,["G846"]],[8,9,["G3101"]],[9,10,["G3004"]],[10,11,["G1302"]],[11,14,["G2068"]],[14,15,["G2532"]],[15,16,["G4095"]],[16,17,["G3326"]],[17,18,["G5057"]],[18,19,["G2532"]],[19,20,["G268"]]]},{"k":25138,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G846"]],[6,10,["G5198"]],[10,11,["G2192","G5532"]],[11,12,["G3756"]],[12,14,["G2395"]],[14,15,["G235"]],[15,19,["G2192","G2560"]]]},{"k":25139,"v":[[0,2,["G2064"]],[2,3,["G3756"]],[3,5,["G2564"]],[5,7,["G1342"]],[7,8,["G235"]],[8,9,["G268"]],[9,10,["G1519"]],[10,11,["G3341"]]]},{"k":25140,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G1302"]],[6,8,["G3588"]],[8,9,["G3101"]],[9,11,["G2491"]],[11,12,["G3522"]],[12,13,["G4437"]],[13,14,["G2532"]],[14,15,["G4160"]],[15,16,["G1162"]],[16,17,["G2532"]],[17,18,["G3668"]],[18,20,["(G3588)"]],[20,22,["G3588"]],[22,23,["G5330"]],[23,24,["G1161"]],[24,25,["G4674"]],[25,26,["G2068"]],[26,27,["G2532"]],[27,28,["G4095"]]]},{"k":25141,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G1410"]],[6,7,["(G3361)"]],[7,8,["G4160"]],[8,9,["G3588"]],[9,10,["G5207"]],[10,12,["G3588"]],[12,13,["G3567"]],[13,14,["G3522"]],[14,15,["G1722","G3739"]],[15,16,["G3588"]],[16,17,["G3566"]],[17,18,["G2076"]],[18,19,["G3326"]],[19,20,["G846"]]]},{"k":25142,"v":[[0,1,["G1161"]],[1,3,["G2250"]],[3,5,["G2064","(G2532)"]],[5,6,["G3752"]],[6,7,["G3588"]],[7,8,["G3566"]],[8,12,["G522"]],[12,13,["G575"]],[13,14,["G846"]],[14,16,["G5119"]],[16,19,["G3522"]],[19,20,["G1722"]],[20,21,["G1565"]],[21,22,["G2250"]]]},{"k":25143,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,4,["G2532"]],[4,6,["G3850"]],[6,7,["G4314"]],[7,8,["G846"]],[8,10,["G3762"]],[10,11,["G1911"]],[11,13,["G1915"]],[13,16,["G2537"]],[16,17,["G2440"]],[17,18,["G1909"]],[18,20,["G3820"]],[20,22,["G1490"]],[22,24,["G2532"]],[24,25,["G3588"]],[25,26,["G2537"]],[26,29,["G4977"]],[29,30,["G2532"]],[30,31,["G3588"]],[31,32,["G1915"]],[32,33,["G3588"]],[33,37,["G575"]],[37,38,["G3588"]],[38,39,["G2537"]],[39,40,["G4856"]],[40,41,["G3756"]],[41,43,["G3588"]],[43,44,["G3820"]]]},{"k":25144,"v":[[0,1,["G2532"]],[1,3,["G3762"]],[3,4,["G906"]],[4,5,["G3501"]],[5,6,["G3631"]],[6,7,["G1519"]],[7,8,["G3820"]],[8,9,["G779"]],[9,10,["G1490"]],[10,11,["G3588"]],[11,12,["G3501"]],[12,13,["G3631"]],[13,15,["G4486"]],[15,16,["G3588"]],[16,17,["G779"]],[17,18,["G2532"]],[18,19,["(G846)"]],[19,20,["G1632"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G779"]],[23,25,["G622"]]]},{"k":25145,"v":[[0,1,["G235"]],[1,2,["G3501"]],[2,3,["G3631"]],[3,6,["G992"]],[6,7,["G1519"]],[7,8,["G2537"]],[8,9,["G779"]],[9,10,["G2532"]],[10,11,["G297"]],[11,13,["G4933"]]]},{"k":25146,"v":[[0,2,["G3762"]],[2,3,["G2532"]],[3,5,["G4095"]],[5,6,["G3820"]],[6,8,["G2112"]],[8,9,["G2309"]],[9,10,["G3501"]],[10,11,["G1063"]],[11,13,["G3004"]],[13,14,["G3588"]],[14,15,["G3820"]],[15,16,["G2076"]],[16,17,["G5543"]]]},{"k":25147,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,6,["G1722"]],[6,12,["G1207","G4521"]],[12,14,["G846"]],[14,15,["G1279"]],[15,16,["G1223"]],[16,17,["G3588"]],[17,19,["G4702"]],[19,20,["G2532"]],[20,21,["G846"]],[21,22,["G3101"]],[22,23,["G5089"]],[23,24,["G3588"]],[24,27,["G4719"]],[27,28,["G2532"]],[28,30,["G2068"]],[30,31,["G5597"]],[31,35,["G5495"]]]},{"k":25148,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,4,["G3588"]],[4,5,["G5330"]],[5,6,["G2036"]],[6,8,["G846"]],[8,9,["G5101"]],[9,10,["G4160"]],[10,13,["G3739"]],[13,16,["G1832","G3756"]],[16,18,["G4160"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,22,["G4521"]]]},{"k":25149,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611","(G4314)"]],[3,4,["G846"]],[4,5,["G2036"]],[5,12,["G3761","G314"]],[12,13,["G5124"]],[13,14,["G3739"]],[14,15,["G1138"]],[15,16,["G4160"]],[16,17,["G3698"]],[17,18,["G846"]],[18,21,["G3983"]],[21,22,["G2532"]],[22,25,["G5607"]],[25,26,["G3326"]],[26,27,["G846"]]]},{"k":25150,"v":[[0,1,["G5613"]],[1,3,["G1525"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G3624"]],[6,8,["G2316"]],[8,9,["G2532"]],[9,11,["G2983"]],[11,12,["G2532"]],[12,13,["G5315"]],[13,14,["G3588"]],[14,15,["G740","G4286"]],[15,16,["G2532"]],[16,17,["G1325"]],[17,18,["G2532"]],[18,20,["G3588"]],[20,23,["G3326"]],[23,24,["G846"]],[24,25,["G3739"]],[25,29,["G1832","G3756"]],[29,31,["G5315"]],[31,32,["G1508"]],[32,34,["G3588"]],[34,35,["G2409"]],[35,36,["G3441"]]]},{"k":25151,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G3754"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G444"]],[10,11,["G2076"]],[11,12,["G2962"]],[12,13,["G2532"]],[13,15,["G3588"]],[15,16,["G4521"]]]},{"k":25152,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,6,["G2532"]],[6,7,["G1722"]],[7,8,["G2087"]],[8,9,["G4521"]],[9,11,["G846"]],[11,12,["G1525"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G4864"]],[15,16,["G2532"]],[16,17,["G1321"]],[17,18,["G2532"]],[18,19,["G1563"]],[19,20,["G2258"]],[20,22,["G444","(G2532)"]],[22,23,["G846"]],[23,24,["G1188"]],[24,25,["G5495"]],[25,26,["G2258"]],[26,27,["G3584"]]]},{"k":25153,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1122"]],[3,4,["G2532"]],[4,5,["G5330"]],[5,6,["G3906"]],[6,7,["G846"]],[7,8,["G1487"]],[8,11,["G2323"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,15,["G4521"]],[15,16,["G2443"]],[16,19,["G2147"]],[19,21,["G2724"]],[21,23,["G846"]]]},{"k":25154,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G1492"]],[3,4,["G846"]],[4,5,["G1261"]],[5,6,["G2532"]],[6,7,["G2036"]],[7,9,["G3588"]],[9,10,["G444"]],[10,12,["G2192"]],[12,14,["G3584"]],[14,15,["G5495"]],[15,17,["G1453"]],[17,18,["G2532"]],[18,20,["G2476"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G3319"]],[23,24,["G1161"]],[24,25,["G3588"]],[25,26,["G450"]],[26,29,["G2476"]]]},{"k":25155,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,4,["G4314"]],[4,5,["G846"]],[5,8,["G1905"]],[8,9,["G5209"]],[9,11,["G5101"]],[11,14,["G1832"]],[14,16,["G3588"]],[16,18,["G4521"]],[18,21,["G15"]],[21,22,["G2228"]],[22,25,["G2554"]],[25,27,["G4982"]],[27,28,["G5590"]],[28,29,["G2228"]],[29,31,["G622"]],[31,32,[]]]},{"k":25156,"v":[[0,1,["G2532"]],[1,5,["G4017"]],[5,6,["G846"]],[6,7,["G3956"]],[7,9,["G2036"]],[9,11,["G3588"]],[11,12,["G444"]],[12,14,["G1614"]],[14,15,["G4675"]],[15,16,["G5495"]],[16,17,["G1161"]],[17,18,["G3588"]],[18,19,["G4160"]],[19,20,["G3779"]],[20,21,["G2532"]],[21,22,["G846"]],[22,23,["G5495"]],[23,25,["G600"]],[25,26,["G5199"]],[26,27,["G5613"]],[27,28,["G3588"]],[28,29,["G243"]]]},{"k":25157,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,4,["G4130"]],[4,6,["G454"]],[6,7,["G2532"]],[7,8,["G1255"]],[8,11,["G240","G4314"]],[11,12,["G5101"]],[12,15,["G4160","G302"]],[15,17,["G2424"]]]},{"k":25158,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,6,["G1722"]],[6,7,["G5025"]],[7,8,["G2250"]],[8,12,["G1831"]],[12,13,["G1519"]],[13,15,["G3735"]],[15,17,["G4336"]],[17,18,["G2532"]],[18,21,["G2258","G1273"]],[21,22,["G1722"]],[22,23,["G4335"]],[23,25,["G2316"]]]},{"k":25159,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,4,["G1096"]],[4,5,["G2250"]],[5,7,["G4377"]],[7,10,["G848"]],[10,11,["G3101"]],[11,12,["G2532"]],[12,13,["G575"]],[13,14,["G846"]],[14,16,["G1586"]],[16,17,["G1427"]],[17,18,["G3739"]],[18,19,["G2532"]],[19,21,["G3687"]],[21,22,["G652"]]]},{"k":25160,"v":[[0,1,["G4613"]],[1,2,["G3739"]],[2,4,["G2532"]],[4,5,["G3687"]],[5,6,["G4074"]],[6,7,["G2532"]],[7,8,["G406"]],[8,9,["G846"]],[9,10,["G80"]],[10,11,["G2385"]],[11,12,["G2532"]],[12,13,["G2491"]],[13,14,["G5376"]],[14,15,["G2532"]],[15,16,["G918"]]]},{"k":25161,"v":[[0,1,["G3156"]],[1,2,["G2532"]],[2,3,["G2381"]],[3,4,["G2385"]],[4,5,["G3588"]],[5,8,["G256"]],[8,9,["G2532"]],[9,10,["G4613"]],[10,11,["G2564"]],[11,12,["G2208"]]]},{"k":25162,"v":[[0,2,["G2455"]],[2,6,["G2385"]],[6,7,["G2532"]],[7,8,["G2455"]],[8,9,["G2469"]],[9,10,["G3739"]],[10,11,["G2532"]],[11,12,["G1096"]],[12,14,["G4273"]]]},{"k":25163,"v":[[0,1,["G2532"]],[1,4,["G2597"]],[4,5,["G3326"]],[5,6,["G846"]],[6,8,["G2476"]],[8,9,["G1909"]],[9,11,["G3977","G5117"]],[11,12,["G2532"]],[12,14,["G3793"]],[14,16,["G846"]],[16,17,["G3101"]],[17,18,["G2532"]],[18,20,["G4183"]],[20,21,["G4128"]],[21,23,["G2992"]],[23,25,["G575"]],[25,26,["G3956"]],[26,27,["G2449"]],[27,28,["G2532"]],[28,29,["G2419"]],[29,30,["G2532"]],[30,32,["G3588"]],[32,34,["G3882"]],[34,36,["G5184"]],[36,37,["G2532"]],[37,38,["G4605"]],[38,39,["G3739"]],[39,40,["G2064"]],[40,42,["G191"]],[42,43,["G846"]],[43,44,["G2532"]],[44,47,["G2390"]],[47,48,["G575"]],[48,49,["G848"]],[49,50,["G3554"]]]},{"k":25164,"v":[[0,1,["G2532"]],[1,5,["G3791"]],[5,6,["G5259"]],[6,7,["G169"]],[7,8,["G4151"]],[8,9,["G2532"]],[9,12,["G2323"]]]},{"k":25165,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3956"]],[3,4,["G3793"]],[4,5,["G2212"]],[5,7,["G680"]],[7,8,["G846"]],[8,9,["G3754"]],[9,13,["G1831","G1411"]],[13,14,["G3844"]],[14,15,["G846"]],[15,16,["G2532"]],[16,17,["G2390"]],[17,19,["G3956"]]]},{"k":25166,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,4,["G1869"]],[4,5,["G848"]],[5,6,["G3788"]],[6,7,["G1519"]],[7,8,["G846"]],[8,9,["G3101"]],[9,11,["G3004"]],[11,12,["G3107"]],[12,15,["G4434"]],[15,16,["G3754"]],[16,17,["G5212"]],[17,18,["G2076"]],[18,19,["G3588"]],[19,20,["G932"]],[20,22,["G2316"]]]},{"k":25167,"v":[[0,1,["G3107"]],[1,5,["G3983"]],[5,6,["G3568"]],[6,7,["G3754"]],[7,11,["G5526"]],[11,12,["G3107"]],[12,16,["G2799"]],[16,17,["G3568"]],[17,18,["G3754"]],[18,21,["G1070"]]]},{"k":25168,"v":[[0,1,["G3107"]],[1,2,["G2075"]],[2,4,["G3752"]],[4,5,["G444"]],[5,7,["G3404"]],[7,8,["G5209"]],[8,9,["G2532"]],[9,10,["G3752"]],[10,13,["G873"]],[13,14,["G5209"]],[14,18,["G2532"]],[18,20,["G3679"]],[20,22,["G2532"]],[22,24,["G1544"]],[24,25,["G5216"]],[25,26,["G3686"]],[26,27,["G5613"]],[27,28,["G4190"]],[28,34,["G1752","G3588","G5207","G444"]]]},{"k":25169,"v":[[0,1,["G5463"]],[1,3,["G1722"]],[3,4,["G1565"]],[4,5,["G2250"]],[5,6,["G2532"]],[6,9,["G4640"]],[9,10,["G1063"]],[10,11,["G2400"]],[11,12,["G5216"]],[12,13,["G3408"]],[13,15,["G4183"]],[15,16,["G1722"]],[16,17,["G3772"]],[17,18,["G1063"]],[18,22,["G2596","G5024"]],[22,23,["G4160"]],[23,24,["G846"]],[24,25,["G3962"]],[25,27,["G3588"]],[27,28,["G4396"]]]},{"k":25170,"v":[[0,1,["G4133"]],[1,2,["G3759"]],[2,4,["G5213"]],[4,7,["G4145"]],[7,8,["G3754"]],[8,11,["G568"]],[11,12,["G5216"]],[12,13,["G3874"]]]},{"k":25171,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,6,["G1705"]],[6,7,["G3754"]],[7,10,["G3983"]],[10,11,["G3759"]],[11,13,["G5213"]],[13,15,["G1070"]],[15,16,["G3568"]],[16,17,["G3754"]],[17,20,["G3996"]],[20,21,["G2532"]],[21,22,["G2799"]]]},{"k":25172,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G3752"]],[4,5,["G3956"]],[5,6,["G444"]],[6,8,["G2036"]],[8,9,["G2573"]],[9,11,["G5209"]],[11,12,["G1063"]],[12,13,["G2596","G5024"]],[13,14,["G4160"]],[14,15,["G846"]],[15,16,["G3962"]],[16,18,["G3588"]],[18,20,["G5578"]]]},{"k":25173,"v":[[0,1,["G235"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,7,["G191"]],[7,8,["G25"]],[8,9,["G5216"]],[9,10,["G2190"]],[10,11,["G4160"]],[11,12,["G2573"]],[12,16,["G3404"]],[16,17,["G5209"]]]},{"k":25174,"v":[[0,1,["G2127"]],[1,4,["G2672"]],[4,5,["G5213"]],[5,6,["G2532"]],[6,7,["G4336"]],[7,8,["G5228"]],[8,12,["G1908"]],[12,13,["G5209"]]]},{"k":25175,"v":[[0,5,["G5180"]],[5,6,["G4571"]],[6,7,["G1909"]],[7,8,["G3588"]],[8,10,["G4600"]],[10,11,["G3930"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G243"]],[14,15,["G2532"]],[15,19,["G142"]],[19,20,["G4675"]],[20,21,["G2440"]],[21,22,["G2967"]],[22,23,["G3361"]],[23,27,["G5509"]],[27,28,["G2532"]]]},{"k":25176,"v":[[0,0,["(G1161)"]],[0,1,["G1325"]],[1,4,["G3956"]],[4,6,["G154"]],[6,8,["G4571"]],[8,9,["G2532"]],[9,10,["G575"]],[10,14,["G142"]],[14,16,["G4674"]],[16,20,["G523","G3361"]]]},{"k":25177,"v":[[0,1,["G2532"]],[1,2,["G2531"]],[2,4,["G2309"]],[4,5,["G2443"]],[5,6,["G444"]],[6,8,["G4160"]],[8,10,["G5213"]],[10,11,["G4160"]],[11,12,["G5210"]],[12,13,["G2532"]],[13,15,["G846"]],[15,16,["G3668"]]]},{"k":25178,"v":[[0,1,["G2532"]],[1,2,["G1487"]],[2,4,["G25"]],[4,7,["G25"]],[7,8,["G5209"]],[8,9,["G4169"]],[9,10,["G5485"]],[10,11,["G2076"]],[11,12,["G5213"]],[12,13,["G1063"]],[13,14,["G268"]],[14,15,["G2532"]],[15,16,["G25"]],[16,19,["G25"]],[19,20,["G846"]]]},{"k":25179,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,5,["G15"]],[5,10,["G15"]],[10,12,["G5209"]],[12,13,["G4169"]],[13,14,["G5485"]],[14,15,["G2076"]],[15,16,["G5213"]],[16,17,["G1063"]],[17,18,["G268"]],[18,19,["G2532"]],[19,20,["G4160"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G846"]]]},{"k":25180,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G1155"]],[4,7,["G3844"]],[7,8,["G3739"]],[8,10,["G1679"]],[10,12,["G618"]],[12,13,["G4169"]],[13,14,["G5485"]],[14,15,["G2076"]],[15,16,["G5213"]],[16,17,["G1063"]],[17,18,["G268"]],[18,19,["G2532"]],[19,20,["G1155"]],[20,22,["G268"]],[22,23,["G2443"]],[23,24,["G618"]],[24,27,["G2470"]]]},{"k":25181,"v":[[0,1,["G4133"]],[1,2,["G25"]],[2,4,["G5216"]],[4,5,["G2190"]],[5,6,["G2532"]],[6,8,["G15"]],[8,9,["G2532"]],[9,10,["G1155"]],[10,14,["G560","G3367"]],[14,15,["G2532"]],[15,16,["G5216"]],[16,17,["G3408"]],[17,19,["G2071"]],[19,20,["G4183"]],[20,21,["G2532"]],[21,24,["G2071"]],[24,26,["G5207"]],[26,28,["G3588"]],[28,29,["G5310"]],[29,30,["G3754"]],[30,31,["G846"]],[31,32,["G2076"]],[32,33,["G5543"]],[33,34,["G1909"]],[34,35,["G3588"]],[35,36,["G884"]],[36,37,["G2532"]],[37,40,["G4190"]]]},{"k":25182,"v":[[0,1,["G1096"]],[1,3,["G3767"]],[3,4,["G3629"]],[4,5,["G2531"]],[5,6,["G5216"]],[6,7,["G3962"]],[7,8,["G2532"]],[8,9,["G2076"]],[9,10,["G3629"]]]},{"k":25183,"v":[[0,1,["G2919"]],[1,2,["G3361"]],[2,3,["G2532"]],[3,6,["G3364"]],[6,8,["G2919"]],[8,9,["G2613"]],[9,10,["G3361"]],[10,11,["G2532"]],[11,14,["G3364"]],[14,16,["G2613"]],[16,17,["G630"]],[17,18,["G2532"]],[18,22,["G630"]]]},{"k":25184,"v":[[0,1,["G1325"]],[1,2,["G2532"]],[2,6,["G1325"]],[6,8,["G5213"]],[8,9,["G2570"]],[9,10,["G3358"]],[10,12,["G4085"]],[12,13,["G2532"]],[13,15,["G4531"]],[15,16,["G2532"]],[16,18,["G5240"]],[18,21,["G1325"]],[21,22,["G1519"]],[22,23,["G5216"]],[23,24,["G2859"]],[24,25,["G1063"]],[25,27,["G3588"]],[27,28,["G846"]],[28,29,["G3358"]],[29,30,["G3739"]],[30,32,["G3354"]],[32,40,["G488","G5213"]]]},{"k":25185,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G3850"]],[5,7,["G846"]],[7,8,["G1410","G3385"]],[8,10,["G5185"]],[10,11,["G3594"]],[11,13,["G5185"]],[13,16,["G3780"]],[16,17,["G297"]],[17,18,["G4098"]],[18,19,["G1519"]],[19,21,["G999"]]]},{"k":25186,"v":[[0,2,["G3101"]],[2,3,["G2076"]],[3,4,["G3756"]],[4,5,["G5228"]],[5,6,["G848"]],[6,7,["G1320"]],[7,8,["G1161"]],[8,10,["G3956"]],[10,13,["G2675"]],[13,15,["G2071"]],[15,16,["G5613"]],[16,17,["G846"]],[17,18,["G1320"]]]},{"k":25187,"v":[[0,1,["G1161"]],[1,2,["G5101"]],[2,3,["G991"]],[3,5,["G3588"]],[5,6,["G2595"]],[6,7,["G3588"]],[7,9,["G1722"]],[9,10,["G4675"]],[10,11,["G80"]],[11,12,["G3788"]],[12,13,["G1161"]],[13,14,["G2657"]],[14,15,["G3756"]],[15,16,["G3588"]],[16,17,["G1385"]],[17,18,["G3588"]],[18,20,["G1722"]],[20,22,["G2398"]],[22,23,["G3788"]]]},{"k":25188,"v":[[0,1,["G2228"]],[1,2,["G4459"]],[2,3,["G1410"]],[3,5,["G3004"]],[5,7,["G4675"]],[7,8,["G80"]],[8,9,["G80"]],[9,10,["G863"]],[10,13,["G1544"]],[13,14,["G3588"]],[14,15,["G2595"]],[15,16,["G3588"]],[16,18,["G1722"]],[18,19,["G4675"]],[19,20,["G3788"]],[20,23,["G846"]],[23,24,["G991"]],[24,25,["G3756"]],[25,26,["G3588"]],[26,27,["G1385"]],[27,28,["G3588"]],[28,30,["G1722"]],[30,32,["G4675"]],[32,33,["G3788"]],[33,35,["G5273"]],[35,37,["G1544"]],[37,38,["G4412"]],[38,39,["G3588"]],[39,40,["G1385"]],[40,42,["G1537"]],[42,44,["G4675"]],[44,45,["G3788"]],[45,46,["G2532"]],[46,47,["G5119"]],[47,51,["G1227"]],[51,54,["G1544"]],[54,55,["G3588"]],[55,56,["G2595"]],[56,57,["G3588"]],[57,59,["G1722"]],[59,60,["G4675"]],[60,61,["G80"]],[61,62,["G3788"]]]},{"k":25189,"v":[[0,1,["G1063"]],[1,3,["G2570"]],[3,4,["G1186"]],[4,7,["G2076","G3756","G4160"]],[7,8,["G4550"]],[8,9,["G2590"]],[9,10,["G3761"]],[10,13,["G4550"]],[13,14,["G1186"]],[14,16,["G4160"]],[16,17,["G2570"]],[17,18,["G2590"]]]},{"k":25190,"v":[[0,1,["G1063"]],[1,2,["G1538"]],[2,3,["G1186"]],[3,5,["G1097"]],[5,6,["G1537"]],[6,8,["G2398"]],[8,9,["G2590"]],[9,10,["G1063"]],[10,11,["G1537"]],[11,12,["G173"]],[12,15,["G3756"]],[15,16,["G4816"]],[16,17,["G4810"]],[17,18,["G3761"]],[18,19,["G1537"]],[19,22,["G942"]],[22,23,["G5166"]],[23,25,["G4718"]]]},{"k":25191,"v":[[0,2,["G18"]],[2,3,["G444"]],[3,4,["G1537"]],[4,6,["G3588"]],[6,7,["G18"]],[7,8,["G2344"]],[8,10,["G848"]],[10,11,["G2588"]],[11,13,["G4393"]],[13,17,["G18"]],[17,18,["G2532"]],[18,20,["G4190"]],[20,21,["G444"]],[21,22,["G1537"]],[22,24,["G3588"]],[24,25,["G4190"]],[25,26,["G2344"]],[26,28,["G848"]],[28,29,["G2588"]],[29,31,["G4393"]],[31,35,["G4190"]],[35,36,["G1063"]],[36,37,["G1537"]],[37,38,["G3588"]],[38,39,["G4051"]],[39,41,["G3588"]],[41,42,["G2588"]],[42,43,["G846"]],[43,44,["G4750"]],[44,45,["G2980"]]]},{"k":25192,"v":[[0,1,["G1161"]],[1,2,["G5101"]],[2,3,["G2564"]],[3,5,["G3165"]],[5,6,["G2962"]],[6,7,["G2962"]],[7,8,["G2532"]],[8,9,["G4160"]],[9,10,["G3756"]],[10,13,["G3739"]],[13,15,["G3004"]]]},{"k":25193,"v":[[0,1,["G3956"]],[1,2,["G2064"]],[2,3,["G4314"]],[3,4,["G3165"]],[4,5,["G2532"]],[5,6,["G191"]],[6,7,["G3450"]],[7,8,["G3056"]],[8,9,["G2532"]],[9,10,["G4160"]],[10,11,["G846"]],[11,14,["G5263"]],[14,15,["G5213"]],[15,17,["G5101"]],[17,19,["G2076"]],[19,20,["G3664"]]]},{"k":25194,"v":[[0,2,["G2076"]],[2,3,["G3664"]],[3,5,["G444"]],[5,7,["G3618"]],[7,9,["G3614"]],[9,10,["(G3739)"]],[10,11,["G4626"]],[11,12,["G900"]],[12,13,["G2532"]],[13,14,["G5087"]],[14,16,["G2310"]],[16,17,["G1909"]],[17,19,["G4073"]],[19,20,["G1161"]],[20,23,["G4132"]],[23,24,["G1096"]],[24,25,["G3588"]],[25,26,["G4215"]],[26,29,["G4366"]],[29,30,["G1565"]],[30,31,["G3614"]],[31,32,["G2532"]],[32,33,["G2480"]],[33,34,["G3756"]],[34,35,["G4531"]],[35,36,["G846"]],[36,37,["G1063"]],[37,40,["G2311"]],[40,41,["G1909"]],[41,43,["G4073"]]]},{"k":25195,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,5,["G2532"]],[5,6,["G4160"]],[6,7,["G3361"]],[7,8,["G2076"]],[8,9,["G3664"]],[9,11,["G444"]],[11,13,["G5565"]],[13,15,["G2310"]],[15,16,["G3618"]],[16,18,["G3614"]],[18,19,["G1909"]],[19,20,["G3588"]],[20,21,["G1093"]],[21,28,["G4366","G3739","G3588","G4215"]],[28,29,["G2532"]],[29,30,["G2112"]],[30,32,["G4098"]],[32,33,["G2532"]],[33,34,["G3588"]],[34,35,["G4485"]],[35,37,["G1565"]],[37,38,["G3614"]],[38,39,["G1096"]],[39,40,["G3173"]]]},{"k":25196,"v":[[0,1,["G1161"]],[1,2,["G1893"]],[2,5,["G4137"]],[5,6,["G3956"]],[6,7,["G848"]],[7,8,["G4487"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G189"]],[11,13,["G3588"]],[13,14,["G2992"]],[14,16,["G1525"]],[16,17,["G1519"]],[17,18,["G2584"]]]},{"k":25197,"v":[[0,1,["G1161"]],[1,3,["G5100"]],[3,4,["G1543"]],[4,5,["G1401"]],[5,6,["G3739"]],[6,7,["G2258"]],[7,8,["G1784"]],[8,10,["G846"]],[10,12,["G2192","G2560"]],[12,14,["G3195"]],[14,16,["G5053"]]]},{"k":25198,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,5,["G4012"]],[5,6,["G2424"]],[6,8,["G649"]],[8,9,["G4314"]],[9,10,["G846"]],[10,12,["G4245"]],[12,14,["G3588"]],[14,15,["G2453"]],[15,16,["G2065"]],[16,17,["G846"]],[17,18,["G3704"]],[18,21,["G2064"]],[21,22,["G2532"]],[22,23,["G1295"]],[23,24,["G846"]],[24,25,["G1401"]]]},{"k":25199,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G3854"]],[4,5,["G4314"]],[5,6,["G2424"]],[6,8,["G3870"]],[8,9,["G846"]],[9,10,["G4709"]],[10,11,["G3004"]],[11,12,["G3754"]],[12,14,["G2076"]],[14,15,["G514"]],[15,17,["G3739"]],[17,20,["G3930"]],[20,21,["G5124"]]]},{"k":25200,"v":[[0,1,["G1063"]],[1,3,["G25"]],[3,4,["G2257"]],[4,5,["G1484"]],[5,6,["G2532"]],[6,7,["G846"]],[7,9,["G3618"]],[9,10,["G2254"]],[10,12,["G4864"]]]},{"k":25201,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G4198"]],[3,4,["G4862"]],[4,5,["G846"]],[5,6,["G1161"]],[6,8,["G846"]],[8,9,["G568"]],[9,10,["G2235"]],[10,11,["G3756"]],[11,12,["G3112"]],[12,13,["G575"]],[13,14,["G3588"]],[14,15,["G3614"]],[15,16,["G3588"]],[16,17,["G1543"]],[17,18,["G3992"]],[18,19,["G5384"]],[19,20,["G4314"]],[20,21,["G846"]],[21,22,["G3004"]],[22,24,["G846"]],[24,25,["G2962"]],[25,26,["G4660"]],[26,27,["G3361"]],[27,29,["G1063"]],[29,31,["G1510"]],[31,32,["G3756"]],[32,33,["G2425"]],[33,34,["G2443"]],[34,37,["G1525"]],[37,38,["G5259"]],[38,39,["G3450"]],[39,40,["G4721"]]]},{"k":25202,"v":[[0,1,["G1352"]],[1,2,["G3761"]],[2,6,["G515","G1683"]],[6,8,["G2064"]],[8,9,["G4314"]],[9,10,["G4571"]],[10,11,["G235"]],[11,12,["G2036"]],[12,15,["G3056"]],[15,16,["G2532"]],[16,17,["G3450"]],[17,18,["G3816"]],[18,21,["G2390"]]]},{"k":25203,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,3,["G2532"]],[3,4,["G1510"]],[4,6,["G444"]],[6,7,["G5021"]],[7,8,["G5259"]],[8,9,["G1849"]],[9,10,["G2192"]],[10,11,["G5259"]],[11,12,["G1683"]],[12,13,["G4757"]],[13,14,["G2532"]],[14,16,["G3004"]],[16,18,["G5129"]],[18,19,["G4198"]],[19,20,["G2532"]],[20,22,["G4198"]],[22,23,["G2532"]],[23,25,["G243"]],[25,26,["G2064"]],[26,27,["G2532"]],[27,29,["G2064"]],[29,30,["G2532"]],[30,32,["G3450"]],[32,33,["G1401"]],[33,34,["G4160"]],[34,35,["G5124"]],[35,36,["G2532"]],[36,38,["G4160"]],[38,39,[]]]},{"k":25204,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G191"]],[3,5,["G5023"]],[5,7,["G2296"]],[7,9,["G846"]],[9,10,["G2532"]],[10,13,["G4762"]],[13,15,["G2036"]],[15,17,["G3588"]],[17,18,["G3793"]],[18,20,["G190"]],[20,21,["G846"]],[21,23,["G3004"]],[23,25,["G5213"]],[25,29,["G2147"]],[29,31,["G5118"]],[31,32,["G4102"]],[32,34,["G3761"]],[34,35,["G1722"]],[35,36,["G2474"]]]},{"k":25205,"v":[[0,1,["G2532"]],[1,5,["G3992"]],[5,6,["G5290"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G3624"]],[9,10,["G2147"]],[10,11,["G3588"]],[11,12,["G1401"]],[12,13,["G5198"]],[13,17,["G770"]]]},{"k":25206,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,6,["G3588"]],[6,8,["G1836"]],[8,11,["G4198"]],[11,12,["G1519"]],[12,14,["G4172"]],[14,15,["G2564"]],[15,16,["G3484"]],[16,17,["G2532"]],[17,18,["G2425"]],[18,20,["G846"]],[20,21,["G3101"]],[21,23,["G4848"]],[23,24,["G846"]],[24,25,["G2532"]],[25,26,["G4183"]],[26,27,["G3793"]]]},{"k":25207,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,5,["G1448"]],[5,7,["G3588"]],[7,8,["G4439"]],[8,10,["G3588"]],[10,11,["G4172","(G2532)"]],[11,12,["G2400"]],[12,17,["G2348"]],[17,19,["G1580"]],[19,21,["G3439"]],[21,22,["G5207"]],[22,24,["G848"]],[24,25,["G3384"]],[25,26,["G2532"]],[26,27,["G3778"]],[27,28,["G2258"]],[28,30,["G5503"]],[30,31,["G2532"]],[31,32,["G2425"]],[32,33,["G3793"]],[33,35,["G3588"]],[35,36,["G4172"]],[36,37,["G2258"]],[37,38,["G4862"]],[38,39,["G846"]]]},{"k":25208,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G2962"]],[4,5,["G1492"]],[5,6,["G846"]],[6,9,["G4697"]],[9,10,["G1909"]],[10,11,["G846"]],[11,12,["G2532"]],[12,13,["G2036"]],[13,15,["G846"]],[15,16,["G2799"]],[16,17,["G3361"]]]},{"k":25209,"v":[[0,1,["G2532"]],[1,3,["G4334"]],[3,5,["G680"]],[5,6,["G3588"]],[6,7,["G4673"]],[7,8,["G1161"]],[8,11,["G941"]],[11,14,["G2476"]],[14,15,["G2532"]],[15,17,["G2036"]],[17,19,["G3495"]],[19,21,["G3004"]],[21,23,["G4671"]],[23,24,["G1453"]]]},{"k":25210,"v":[[0,1,["G2532"]],[1,5,["G3498"]],[5,7,["G339"]],[7,8,["G2532"]],[8,9,["G756"]],[9,11,["G2980"]],[11,12,["G2532"]],[12,14,["G1325"]],[14,15,["G846"]],[15,17,["G846"]],[17,18,["G3384"]]]},{"k":25211,"v":[[0,1,["G1161"]],[1,5,["G5401","G2983"]],[5,7,["G537"]],[7,8,["G2532"]],[8,10,["G1392"]],[10,11,["G2316"]],[11,12,["G3004"]],[12,13,["G3754"]],[13,15,["G3173"]],[15,16,["G4396"]],[16,19,["G1453"]],[19,20,["G1722"]],[20,21,["G2254"]],[21,22,["G2532"]],[22,23,["G3754"]],[23,24,["G2316"]],[24,26,["G1980"]],[26,27,["G848"]],[27,28,["G2992"]]]},{"k":25212,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G3056"]],[3,4,["G4012"]],[4,5,["G846"]],[5,7,["G1831"]],[7,8,["G1722"]],[8,9,["G3650"]],[9,10,["G2449"]],[10,11,["G2532"]],[11,12,["G1722"]],[12,13,["G3956"]],[13,14,["G3588"]],[14,17,["G4066"]]]},{"k":25213,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,5,["G2491"]],[5,6,["G518"]],[6,7,["G846"]],[7,8,["G4012"]],[8,9,["G3956"]],[9,11,["G5130"]]]},{"k":25214,"v":[[0,1,["G2532"]],[1,2,["G2491"]],[2,3,["G4341"]],[3,5,["(G5100)"]],[5,6,["G1417"]],[6,8,["G848"]],[8,9,["G3101"]],[9,10,["G3992"]],[10,12,["G4314"]],[12,13,["G2424"]],[13,14,["G3004"]],[14,15,["G1488"]],[15,16,["G4771"]],[16,20,["G2064"]],[20,21,["G2228"]],[21,24,["G4328"]],[24,25,["G243"]]]},{"k":25215,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G435"]],[3,5,["G3854"]],[5,6,["G4314"]],[6,7,["G846"]],[7,9,["G2036"]],[9,10,["G2491"]],[10,11,["G910"]],[11,13,["G649"]],[13,14,["G2248"]],[14,15,["G4314"]],[15,16,["G4571"]],[16,17,["G3004"]],[17,18,["G1488"]],[18,19,["G4771"]],[19,23,["G2064"]],[23,24,["G2228"]],[24,27,["G4328"]],[27,28,["G243"]]]},{"k":25216,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,4,["G846"]],[4,5,["G5610"]],[5,7,["G2323"]],[7,8,["G4183"]],[8,9,["G575"]],[9,11,["G3554"]],[11,12,["G2532"]],[12,13,["G3148"]],[13,14,["G2532"]],[14,16,["G4190"]],[16,17,["G4151"]],[17,18,["G2532"]],[18,20,["G4183"]],[20,23,["G5185"]],[23,25,["G5483"]],[25,26,["G991"]]]},{"k":25217,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,6,["G846"]],[6,9,["G4198"]],[9,11,["G518"]],[11,12,["G2491"]],[12,14,["G3739"]],[14,17,["G1492"]],[17,18,["G2532"]],[18,19,["G191"]],[19,21,["G3754"]],[21,23,["G5185"]],[23,24,["G308"]],[24,26,["G5560"]],[26,27,["G4043"]],[27,29,["G3015"]],[29,31,["G2511"]],[31,33,["G2974"]],[33,34,["G191"]],[34,36,["G3498"]],[36,38,["G1453"]],[38,41,["G4434"]],[41,45,["G2097"]]]},{"k":25218,"v":[[0,1,["G2532"]],[1,2,["G3107"]],[2,3,["G2076"]],[3,5,["G3739","G1437"]],[5,7,["G3361"]],[7,9,["G4624"]],[9,10,["G1722"]],[10,11,["G1698"]]]},{"k":25219,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G32"]],[4,6,["G2491"]],[6,8,["G565"]],[8,10,["G756"]],[10,12,["G3004"]],[12,13,["G4314"]],[13,14,["G3588"]],[14,15,["G3793"]],[15,16,["G4012"]],[16,17,["G2491"]],[17,18,["G5101"]],[18,21,["G1831"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G2048"]],[24,27,["G2300"]],[27,29,["G2563"]],[29,30,["G4531"]],[30,31,["G5259"]],[31,33,["G417"]]]},{"k":25220,"v":[[0,1,["G235"]],[1,2,["G5101"]],[2,5,["G1831"]],[5,8,["G1492"]],[8,10,["G444"]],[10,11,["G294"]],[11,12,["G1722"]],[12,13,["G3120"]],[13,14,["G2440"]],[14,15,["G2400"]],[15,16,["G3588"]],[16,20,["G1722","G1741","G2441"]],[20,21,["G2532"]],[21,22,["G5225"]],[22,23,["G5172"]],[23,24,["G1526"]],[24,25,["G1722"]],[25,27,["G933"]]]},{"k":25221,"v":[[0,1,["G235"]],[1,2,["G5101"]],[2,5,["G1831"]],[5,8,["G1492"]],[8,10,["G4396"]],[10,11,["G3483"]],[11,13,["G3004"]],[13,15,["G5213"]],[15,16,["G2532"]],[16,18,["G4055"]],[18,21,["G4396"]]]},{"k":25222,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,4,["G4012"]],[4,5,["G3739"]],[5,8,["G1125"]],[8,9,["G2400"]],[9,10,["G1473"]],[10,11,["G649"]],[11,12,["G3450"]],[12,13,["G32"]],[13,14,["G4253"]],[14,15,["G4675"]],[15,16,["G4383"]],[16,17,["G3739"]],[17,19,["G2680"]],[19,20,["G4675"]],[20,21,["G3598"]],[21,22,["G1715"]],[22,23,["G4675"]]]},{"k":25223,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G1722"]],[6,10,["G1084"]],[10,12,["G1135"]],[12,14,["G2076"]],[14,15,["G3762"]],[15,17,["G3187"]],[17,18,["G4396"]],[18,20,["G2491"]],[20,21,["G3588"]],[21,22,["G910"]],[22,23,["G1161"]],[23,27,["G3398"]],[27,28,["G1722"]],[28,29,["G3588"]],[29,30,["G932"]],[30,32,["G2316"]],[32,33,["G2076"]],[33,34,["G3187"]],[34,36,["G846"]]]},{"k":25224,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G2992"]],[4,6,["G191"]],[6,8,["G2532"]],[8,9,["G3588"]],[9,10,["G5057"]],[10,11,["G1344"]],[11,12,["G2316"]],[12,14,["G907"]],[14,16,["G3588"]],[16,17,["G908"]],[17,19,["G2491"]]]},{"k":25225,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,4,["G2532"]],[4,5,["G3544"]],[5,6,["G114"]],[6,7,["G3588"]],[7,8,["G1012"]],[8,10,["G2316"]],[10,11,["G1519"]],[11,12,["G1438"]],[12,14,["G3361"]],[14,15,["G907"]],[15,16,["G5259"]],[16,17,["G846"]]]},{"k":25226,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2036"]],[4,5,["G5101"]],[5,6,["G3767"]],[6,9,["G3666"]],[9,10,["G3588"]],[10,11,["G444"]],[11,13,["G5026"]],[13,14,["G1074"]],[14,15,["G2532"]],[15,17,["G5101"]],[17,18,["G1526"]],[18,20,["G3664"]]]},{"k":25227,"v":[[0,2,["G1526"]],[2,4,["G3664"]],[4,5,["G3813"]],[5,6,["G2521"]],[6,7,["G1722"]],[7,9,["G58"]],[9,10,["G2532"]],[10,11,["G4377"]],[11,14,["G240"]],[14,15,["G2532"]],[15,16,["G3004"]],[16,19,["G832"]],[19,21,["G5213"]],[21,22,["G2532"]],[22,25,["G3756"]],[25,26,["G3738"]],[26,29,["G2354"]],[29,31,["G5213"]],[31,32,["G2532"]],[32,35,["G3756"]],[35,36,["G2799"]]]},{"k":25228,"v":[[0,1,["G1063"]],[1,2,["G2491"]],[2,3,["G3588"]],[3,4,["G910"]],[4,5,["G2064"]],[5,6,["G3383"]],[6,7,["G2068"]],[7,8,["G740"]],[8,9,["G3383"]],[9,10,["G4095"]],[10,11,["G3631"]],[11,12,["G2532"]],[12,14,["G3004"]],[14,16,["G2192"]],[16,18,["G1140"]]]},{"k":25229,"v":[[0,1,["G3588"]],[1,2,["G5207"]],[2,4,["G444"]],[4,6,["G2064"]],[6,7,["G2068"]],[7,8,["G2532"]],[8,9,["G4095"]],[9,10,["G2532"]],[10,12,["G3004"]],[12,13,["G2400"]],[13,15,["G5314"]],[15,16,["G444"]],[16,17,["G2532"]],[17,19,["G3630"]],[19,21,["G5384"]],[21,23,["G5057"]],[23,24,["G2532"]],[24,25,["G268"]]]},{"k":25230,"v":[[0,1,["G2532"]],[1,2,["G4678"]],[2,4,["G1344"]],[4,5,["G575"]],[5,6,["G3956"]],[6,7,["G848"]],[7,8,["G5043"]]]},{"k":25231,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,4,["G3588"]],[4,5,["G5330"]],[5,6,["G2065"]],[6,7,["G846"]],[7,8,["G2443"]],[8,11,["G5315"]],[11,12,["G3326"]],[12,13,["G846"]],[13,14,["G2532"]],[14,16,["G1525"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,19,["G5330"]],[19,20,["G3614"]],[20,21,["G2532"]],[21,25,["G347"]]]},{"k":25232,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G1135"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G4172"]],[7,8,["G3748"]],[8,9,["G2258"]],[9,11,["G268"]],[11,14,["G1921"]],[14,15,["G3754"]],[15,19,["G345"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G5330"]],[22,23,["G3614"]],[23,24,["G2865"]],[24,27,["G211"]],[27,29,["G3464"]]]},{"k":25233,"v":[[0,1,["G2532"]],[1,2,["G2476"]],[2,3,["G3844"]],[3,4,["G846"]],[4,5,["G4228"]],[5,6,["G3694"]],[6,8,["G2799"]],[8,10,["G756"]],[10,12,["G1026"]],[12,13,["G846"]],[13,14,["G4228"]],[14,16,["G1144"]],[16,17,["G2532"]],[17,19,["G1591"]],[19,22,["G3588"]],[22,23,["G2359"]],[23,25,["G848"]],[25,26,["G2776"]],[26,27,["G2532"]],[27,28,["G2705"]],[28,29,["G846"]],[29,30,["G4228"]],[30,31,["G2532"]],[31,32,["G218"]],[32,35,["G3588"]],[35,36,["G3464"]]]},{"k":25234,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G5330"]],[4,7,["G2564"]],[7,8,["G846"]],[8,9,["G1492"]],[9,12,["G2036"]],[12,13,["G1722"]],[13,14,["G1438"]],[14,15,["G3004"]],[15,17,["G3778"]],[17,18,["G1487"]],[18,20,["G2258"]],[20,22,["G4396"]],[22,25,["G1097","G302"]],[25,26,["G5101"]],[26,27,["G2532"]],[27,29,["G4217"]],[29,31,["G1135"]],[31,34,["G3748"]],[34,35,["G680"]],[35,36,["G846"]],[36,37,["G3754"]],[37,39,["G2076"]],[39,41,["G268"]]]},{"k":25235,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G4613"]],[7,9,["G2192"]],[9,10,["G5100"]],[10,12,["G2036"]],[12,14,["G4671"]],[14,15,["G1161"]],[15,16,["G3588"]],[16,17,["G5346"]],[17,18,["G1320"]],[18,20,["G2036"]]]},{"k":25236,"v":[[0,4,["G5100"]],[4,5,["G1157"]],[5,7,["G2258"]],[7,8,["G1417"]],[8,9,["G5533"]],[9,10,["G3588"]],[10,11,["G1520"]],[11,12,["G3784"]],[12,14,["G4001"]],[14,15,["G1220"]],[15,16,["G1161"]],[16,17,["G3588"]],[17,18,["G2087"]],[18,19,["G4004"]]]},{"k":25237,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G2192"]],[4,5,["G3361"]],[5,7,["G591"]],[7,10,["G5483"]],[10,12,["G297"]],[12,13,["G2036"]],[13,15,["G3767"]],[15,16,["G5101"]],[16,18,["G846"]],[18,20,["G25"]],[20,21,["G846"]],[21,22,["G4119"]]]},{"k":25238,"v":[[0,0,["(G1161)"]],[0,1,["G4613"]],[1,2,["G611"]],[2,4,["G2036"]],[4,6,["G5274"]],[6,7,["G3754"]],[7,10,["G3739"]],[10,12,["G5483"]],[12,13,["G4119"]],[13,14,["G1161"]],[14,15,["G3588"]],[15,16,["G2036"]],[16,18,["G846"]],[18,21,["G3723"]],[21,22,["G2919"]]]},{"k":25239,"v":[[0,1,["G2532"]],[1,3,["G4762"]],[3,4,["G4314"]],[4,5,["G3588"]],[5,6,["G1135"]],[6,8,["G5346"]],[8,10,["G4613"]],[10,11,["G991"]],[11,13,["G5026"]],[13,14,["G1135"]],[14,16,["G1525"]],[16,17,["G1519"]],[17,18,["G4675"]],[18,19,["G3614"]],[19,21,["G1325"]],[21,23,["G3756"]],[23,24,["G5204"]],[24,25,["G1909"]],[25,26,["G3450"]],[26,27,["G4228"]],[27,28,["G1161"]],[28,29,["G3778"]],[29,31,["G1026"]],[31,32,["G3450"]],[32,33,["G4228"]],[33,35,["G1144"]],[35,36,["G2532"]],[36,37,["G1591"]],[37,40,["G3588"]],[40,41,["G2359"]],[41,43,["G848"]],[43,44,["G2776"]]]},{"k":25240,"v":[[0,2,["G1325"]],[2,3,["G3427"]],[3,4,["G3756"]],[4,5,["G5370"]],[5,6,["G1161"]],[6,8,["G3778"]],[8,9,["G575"]],[9,11,["G3739"]],[11,14,["G1525"]],[14,16,["G3756"]],[16,17,["G1257"]],[17,19,["G2705"]],[19,20,["G3450"]],[20,21,["G4228"]]]},{"k":25241,"v":[[0,1,["G3450"]],[1,2,["G2776"]],[2,4,["G1637"]],[4,7,["G3756"]],[7,8,["G218"]],[8,9,["G1161"]],[9,11,["G3778"]],[11,13,["G218"]],[13,14,["G3450"]],[14,15,["G4228"]],[15,17,["G3464"]]]},{"k":25242,"v":[[0,1,["G5484","G3739"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G846"]],[6,7,["G266"]],[7,10,["G4183"]],[10,12,["G863"]],[12,13,["G3754"]],[13,15,["G25"]],[15,16,["G4183"]],[16,17,["G1161"]],[17,19,["G3739"]],[19,20,["G3641"]],[20,22,["G863"]],[22,25,["G25"]],[25,26,["G3641"]]]},{"k":25243,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G4675"]],[6,7,["G266"]],[7,9,["G863"]]]},{"k":25244,"v":[[0,1,["G2532"]],[1,7,["G4873"]],[7,9,["G756"]],[9,11,["G3004"]],[11,12,["G1722"]],[12,13,["G1438"]],[13,14,["G5101"]],[14,15,["G2076"]],[15,16,["G3778"]],[16,17,["G3739"]],[17,18,["G863"]],[18,19,["G266"]],[19,20,["G2532"]]]},{"k":25245,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G3588"]],[5,6,["G1135"]],[6,7,["G4675"]],[7,8,["G4102"]],[8,10,["G4982"]],[10,11,["G4571"]],[11,12,["G4198"]],[12,13,["G1519"]],[13,14,["G1515"]]]},{"k":25246,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,6,["G1722","G2517"]],[6,7,["G2532"]],[7,8,["G846"]],[8,10,["G1353"]],[10,12,["G2596","G4172"]],[12,13,["G2532"]],[13,14,["G2968"]],[14,15,["G2784"]],[15,16,["G2532"]],[16,20,["G2097"]],[20,22,["G3588"]],[22,23,["G932"]],[23,25,["G2316"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G1427"]],[28,30,["G4862"]],[30,31,["G846"]]]},{"k":25247,"v":[[0,1,["G2532"]],[1,2,["G5100"]],[2,3,["G1135"]],[3,4,["G3739"]],[4,6,["G2258"]],[6,7,["G2323"]],[7,8,["G575"]],[8,9,["G4190"]],[9,10,["G4151"]],[10,11,["G2532"]],[11,12,["G769"]],[12,13,["G3137"]],[13,14,["G2564"]],[14,15,["G3094"]],[15,17,["G575"]],[17,18,["G3739"]],[18,19,["G1831"]],[19,20,["G2033"]],[20,21,["G1140"]]]},{"k":25248,"v":[[0,1,["G2532"]],[1,2,["G2489"]],[2,4,["G1135"]],[4,6,["G5529"]],[6,7,["G2264"]],[7,8,["G2012"]],[8,9,["G2532"]],[9,10,["G4677"]],[10,11,["G2532"]],[11,12,["G4183"]],[12,13,["G2087"]],[13,14,["G3748"]],[14,15,["G1247"]],[15,17,["G846"]],[17,18,["G575"]],[18,19,["G846"]],[19,20,["G5224"]]]},{"k":25249,"v":[[0,1,["G1161"]],[1,3,["G4183"]],[3,4,["G3793"]],[4,7,["G4896"]],[7,8,["G2532"]],[8,10,["G1975"]],[10,11,["G4314"]],[11,12,["G846"]],[12,16,["G2596","G4172"]],[16,18,["G2036"]],[18,19,["G1223"]],[19,21,["G3850"]]]},{"k":25250,"v":[[0,2,["G4687"]],[2,4,["G1831"]],[4,6,["G4687"]],[6,7,["G848"]],[7,8,["G4703"]],[8,9,["G2532"]],[9,11,["G846"]],[11,12,["G4687"]],[12,13,["G3739","G3303"]],[13,14,["G4098"]],[14,15,["G3844"]],[15,16,["G3588"]],[16,18,["G3598"]],[18,19,["G2532"]],[19,23,["G2662"]],[23,24,["G2532"]],[24,25,["G3588"]],[25,26,["G4071"]],[26,28,["G3588"]],[28,29,["G3772"]],[29,30,["G2719"]],[30,31,["G846"]]]},{"k":25251,"v":[[0,1,["G2532"]],[1,2,["G2087"]],[2,3,["G4098"]],[3,4,["G1909"]],[4,6,["G4073"]],[6,7,["G2532"]],[7,14,["G5453"]],[14,17,["G3583"]],[17,20,["G2192","G3361"]],[20,21,["G2429"]]]},{"k":25252,"v":[[0,1,["G2532"]],[1,2,["G2087"]],[2,3,["G4098"]],[3,4,["G1722","G3319"]],[4,5,["G173"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G173"]],[8,11,["G4855"]],[11,14,["G638"]],[14,15,["G846"]]]},{"k":25253,"v":[[0,1,["G2532"]],[1,2,["G2087"]],[2,3,["G4098"]],[3,4,["G1909"]],[4,5,["G18"]],[5,6,["G1093"]],[6,7,["G2532"]],[7,9,["G5453"]],[9,11,["G4160"]],[11,12,["G2590"]],[12,14,["G1542"]],[14,19,["G3004"]],[19,21,["G3778"]],[21,23,["G5455"]],[23,26,["G2192"]],[26,27,["G3775"]],[27,29,["G191"]],[29,32,["G191"]]]},{"k":25254,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G3101"]],[3,4,["G1905"]],[4,5,["G846"]],[5,6,["G3004"]],[6,7,["G5101"]],[7,9,["G3778"]],[9,10,["G3850"]],[10,11,["G1498"]]]},{"k":25255,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G5213"]],[5,8,["G1325"]],[8,10,["G1097"]],[10,11,["G3588"]],[11,12,["G3466"]],[12,14,["G3588"]],[14,15,["G932"]],[15,17,["G2316"]],[17,18,["G1161"]],[18,20,["G3062"]],[20,21,["G1722"]],[21,22,["G3850"]],[22,23,["G2443"]],[23,24,["G991"]],[24,27,["G3361"]],[27,28,["G991"]],[28,29,["G2532"]],[29,30,["G191"]],[30,33,["G3361"]],[33,34,["G4920"]]]},{"k":25256,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3850"]],[3,4,["G2076"]],[4,5,["G3778"]],[5,6,["G3588"]],[6,7,["G4703"]],[7,8,["G2076"]],[8,9,["G3588"]],[9,10,["G3056"]],[10,12,["G2316"]]]},{"k":25257,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G3844"]],[2,3,["G3588"]],[3,5,["G3598"]],[5,6,["G1526"]],[6,9,["G191"]],[9,10,["G1534"]],[10,11,["G2064"]],[11,12,["G3588"]],[12,13,["G1228"]],[13,14,["G2532"]],[14,16,["G142"]],[16,17,["G3588"]],[17,18,["G3056"]],[18,20,["G575"]],[20,21,["G846"]],[21,22,["G2588"]],[22,23,["G3363"]],[23,26,["G4100"]],[26,29,["G4982"]]]},{"k":25258,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G1909"]],[2,3,["G3588"]],[3,4,["G4073"]],[4,7,["G3739"]],[7,8,["G3752"]],[8,10,["G191"]],[10,11,["G1209"]],[11,12,["G3588"]],[12,13,["G3056"]],[13,14,["G3326"]],[14,15,["G5479"]],[15,16,["G2532"]],[16,17,["G3778"]],[17,18,["G2192"]],[18,19,["G3756"]],[19,20,["G4491"]],[20,21,["G3739"]],[21,22,["G4314"]],[22,24,["G2540"]],[24,25,["G4100"]],[25,26,["G2532"]],[26,27,["G1722"]],[27,28,["G2540"]],[28,30,["G3986"]],[30,32,["G868"]]]},{"k":25259,"v":[[0,1,["G1161"]],[1,4,["G4098"]],[4,5,["G1519"]],[5,6,["G173"]],[6,7,["G1526"]],[7,13,["G191"]],[13,15,["G4198"]],[15,16,["G2532"]],[16,18,["G4846"]],[18,19,["G5259"]],[19,20,["G3308"]],[20,21,["G2532"]],[21,22,["G4149"]],[22,23,["G2532"]],[23,24,["G2237"]],[24,27,["G979"]],[27,28,["G2532"]],[28,33,["G5052","G3756"]]]},{"k":25260,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1722"]],[3,4,["G3588"]],[4,5,["G2570"]],[5,6,["G1093"]],[6,7,["G1526"]],[7,8,["G3748"]],[8,10,["G1722"]],[10,12,["G2570"]],[12,13,["G2532"]],[13,14,["G18"]],[14,15,["G2588"]],[15,17,["G191"]],[17,18,["G3588"]],[18,19,["G3056"]],[19,20,["G2722"]],[20,22,["G2532"]],[22,25,["G2592"]],[25,26,["G1722"]],[26,27,["G5281"]]]},{"k":25261,"v":[[0,2,["G3762"]],[2,6,["G681"]],[6,8,["G3088"]],[8,9,["G2572"]],[9,10,["G846"]],[10,13,["G4632"]],[13,14,["G2228"]],[14,15,["G5087"]],[15,17,["G5270"]],[17,19,["G2825"]],[19,20,["G235"]],[20,21,["G2007"]],[21,23,["G1909"]],[23,25,["G3087"]],[25,26,["G2443"]],[26,30,["G1531"]],[30,32,["G991"]],[32,33,["G3588"]],[33,34,["G5457"]]]},{"k":25262,"v":[[0,1,["G1063"]],[1,2,["G3756"]],[2,3,["G2076"]],[3,4,["G2927"]],[4,5,["G3739"]],[5,7,["G3756"]],[7,9,["G1096"]],[9,10,["G5318"]],[10,11,["G3761"]],[11,14,["G614"]],[14,15,["G3739"]],[15,17,["G3756"]],[17,19,["G1097"]],[19,20,["G2532"]],[20,21,["G2064"]],[21,22,["G1519","G5318"]]]},{"k":25263,"v":[[0,2,["G991"]],[2,3,["G3767"]],[3,4,["G4459"]],[4,6,["G191"]],[6,7,["G1063"]],[7,8,["G3739","G302"]],[8,9,["G2192"]],[9,11,["G846"]],[11,14,["G1325"]],[14,15,["G2532"]],[15,16,["G3739","G302"]],[16,17,["G2192"]],[17,18,["G3361"]],[18,19,["G575"]],[19,20,["G846"]],[20,23,["G142"]],[23,24,["G2532"]],[24,26,["G3739"]],[26,28,["G1380"]],[28,30,["G2192"]]]},{"k":25264,"v":[[0,1,["G1161"]],[1,2,["G3854"]],[2,3,["G4314"]],[3,4,["G846"]],[4,6,["G3384"]],[6,7,["G2532"]],[7,8,["G846"]],[8,9,["G80"]],[9,10,["G2532"]],[10,11,["G1410"]],[11,12,["G3756"]],[12,14,["G4940"]],[14,15,["G846"]],[15,16,["G1223"]],[16,17,["G3588"]],[17,18,["G3793"]]]},{"k":25265,"v":[[0,1,["G2532"]],[1,4,["G518"]],[4,5,["G846"]],[5,9,["G3004"]],[9,10,["G4675"]],[10,11,["G3384"]],[11,12,["G2532"]],[12,13,["G4675"]],[13,14,["G80"]],[14,15,["G2476"]],[15,16,["G1854"]],[16,17,["G2309"]],[17,19,["G1492"]],[19,20,["G4571"]]]},{"k":25266,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,5,["G2036"]],[5,6,["G4314"]],[6,7,["G846"]],[7,8,["G3450"]],[8,9,["G3384"]],[9,10,["G2532"]],[10,11,["G3450"]],[11,12,["G80"]],[12,13,["G1526"]],[13,14,["G3778"]],[14,16,["G191"]],[16,17,["G3588"]],[17,18,["G3056"]],[18,20,["G2316"]],[20,21,["G2532"]],[21,22,["G4160"]],[22,23,["G846"]]]},{"k":25267,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,6,["G1722"]],[6,8,["G3391"]],[8,9,["G2250"]],[9,10,["(G2532)"]],[10,11,["G846"]],[11,12,["G1684"]],[12,13,["G1519"]],[13,15,["G4143"]],[15,16,["(G2532)"]],[16,17,["G846"]],[17,18,["G3101"]],[18,19,["G2532"]],[19,21,["G2036"]],[21,22,["G4314"]],[22,23,["G846"]],[23,27,["G1330"]],[27,28,["G1519"]],[28,29,["G3588"]],[29,31,["G4008"]],[31,33,["G3588"]],[33,34,["G3041"]],[34,35,["G2532"]],[35,38,["G321"]]]},{"k":25268,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G4126"]],[4,7,["G879"]],[7,8,["G2532"]],[8,11,["G2597"]],[11,13,["G2978"]],[13,15,["G417"]],[15,16,["G1519"]],[16,17,["G3588"]],[17,18,["G3041"]],[18,19,["G2532"]],[19,22,["G4845"]],[22,25,["G2532"]],[25,28,["G2793"]]]},{"k":25269,"v":[[0,1,["G1161"]],[1,3,["G4334"]],[3,7,["G1326"]],[7,8,["G846"]],[8,9,["G3004"]],[9,10,["G1988"]],[10,11,["G1988"]],[11,13,["G622"]],[13,14,["G1161"]],[14,15,["G3588"]],[15,16,["G1453"]],[16,18,["G2008"]],[18,19,["G3588"]],[19,20,["G417"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G2830"]],[23,25,["G3588"]],[25,26,["G5204"]],[26,27,["G2532"]],[27,29,["G3973"]],[29,30,["G2532"]],[30,32,["G1096"]],[32,34,["G1055"]]]},{"k":25270,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G4226"]],[6,7,["G2076"]],[7,8,["G5216"]],[8,9,["G4102"]],[9,10,["G1161"]],[10,13,["G5399"]],[13,14,["G2296"]],[14,15,["G3004"]],[15,18,["G240","G4314"]],[18,22,["G5101","(G686)"]],[22,23,["G2076"]],[23,24,["G3778"]],[24,25,["G3754"]],[25,27,["G2004"]],[27,28,["G2532"]],[28,29,["G3588"]],[29,30,["G417"]],[30,31,["G2532"]],[31,32,["G5204"]],[32,33,["G2532"]],[33,35,["G5219"]],[35,36,["G846"]]]},{"k":25271,"v":[[0,1,["G2532"]],[1,3,["G2668"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G5561"]],[6,8,["G3588"]],[8,9,["G1046"]],[9,10,["G3748"]],[10,11,["G2076"]],[11,13,["G495"]],[13,14,["G1056"]]]},{"k":25272,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G1831"]],[5,6,["G1909"]],[6,7,["G1093"]],[7,9,["G5221"]],[9,10,["G846"]],[10,12,["G1537"]],[12,13,["G3588"]],[13,14,["G4172"]],[14,16,["G5100"]],[16,17,["G435"]],[17,18,["G3739"]],[18,19,["G2192"]],[19,20,["G1140","(G1537)"]],[20,22,["G2425","G5550"]],[22,23,["G2532"]],[23,24,["G1737"]],[24,25,["G3756"]],[25,26,["G2440"]],[26,27,["G2532","G3756"]],[27,28,["G3306"]],[28,29,["G1722"]],[29,31,["G3614"]],[31,32,["G235"]],[32,33,["G1722"]],[33,34,["G3588"]],[34,35,["G3418"]]]},{"k":25273,"v":[[0,1,["(G1161)"]],[1,3,["G1492"]],[3,4,["G2424"]],[4,7,["G349"]],[7,8,["G2532"]],[8,11,["G4363"]],[11,12,["G846"]],[12,13,["G2532"]],[13,16,["G3173"]],[16,17,["G5456"]],[17,18,["G2036"]],[18,25,["G5101","G1698","G2532","G4671"]],[25,26,["G2424"]],[26,28,["G5207"]],[28,30,["G2316"]],[30,32,["G5310"]],[32,34,["G1189"]],[34,35,["G4675"]],[35,36,["G928"]],[36,37,["G3165"]],[37,38,["G3361"]]]},{"k":25274,"v":[[0,1,["G1063"]],[1,4,["G3853"]],[4,5,["G3588"]],[5,6,["G169"]],[6,7,["G4151"]],[7,9,["G1831"]],[9,11,["G575"]],[11,12,["G3588"]],[12,13,["G444"]],[13,14,["G1063"]],[14,15,["G4183","G5550"]],[15,18,["G4884"]],[18,19,["G846"]],[19,20,["G2532"]],[20,23,["G5442"]],[23,24,["G1196"]],[24,26,["G254"]],[26,27,["G2532"]],[27,29,["G3976"]],[29,30,["G2532"]],[30,32,["G1284"]],[32,33,["G3588"]],[33,34,["G1199"]],[34,37,["G1643"]],[37,38,["G5259"]],[38,39,["G3588"]],[39,40,["G1142"]],[40,41,["G1519"]],[41,42,["G3588"]],[42,43,["G2048"]]]},{"k":25275,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G1905"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G5101"]],[6,7,["G2076"]],[7,8,["G4671"]],[8,9,["G3686"]],[9,10,["G1161"]],[10,11,["G3588"]],[11,12,["G2036"]],[12,13,["G3003"]],[13,14,["G3754"]],[14,15,["G4183"]],[15,16,["G1140"]],[16,18,["G1525"]],[18,19,["G1519"]],[19,20,["G846"]]]},{"k":25276,"v":[[0,1,["G2532"]],[1,3,["G3870"]],[3,4,["G846"]],[4,5,["G2443"]],[5,8,["G3361"]],[8,9,["G2004"]],[9,10,["G846"]],[10,13,["G565"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G12"]]]},{"k":25277,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G1563"]],[4,6,["G34"]],[6,8,["G2425"]],[8,9,["G5519"]],[9,10,["G1006"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G3735"]],[13,14,["G2532"]],[14,16,["G3870"]],[16,17,["G846"]],[17,18,["G2443"]],[18,21,["G2010"]],[21,22,["G846"]],[22,24,["G1525"]],[24,25,["G1519"]],[25,26,["G1565"]],[26,27,["G2532"]],[27,29,["G2010"]],[29,30,["G846"]]]},{"k":25278,"v":[[0,1,["G1161"]],[1,2,["G1831"]],[2,3,["G3588"]],[3,4,["G1140"]],[4,6,["G575"]],[6,7,["G3588"]],[7,8,["G444"]],[8,10,["G1525"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G5519"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G34"]],[16,18,["G3729"]],[18,19,["G2596"]],[19,22,["G2911"]],[22,23,["G1519"]],[23,24,["G3588"]],[24,25,["G3041"]],[25,26,["G2532"]],[26,28,["G638"]]]},{"k":25279,"v":[[0,1,["(G1161)"]],[1,4,["G1006"]],[4,6,["G1492"]],[6,9,["G1096"]],[9,11,["G5343"]],[11,12,["G2532"]],[12,13,["G565"]],[13,15,["G518"]],[15,17,["G1519"]],[17,18,["G3588"]],[18,19,["G4172"]],[19,20,["G2532"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G68"]]]},{"k":25280,"v":[[0,1,["G1161"]],[1,4,["G1831"]],[4,6,["G1492"]],[6,9,["G1096"]],[9,10,["G2532"]],[10,11,["G2064"]],[11,12,["G4314"]],[12,13,["G2424"]],[13,14,["G2532"]],[14,15,["G2147"]],[15,16,["G3588"]],[16,17,["G444"]],[17,19,["G575"]],[19,20,["G3739"]],[20,21,["G3588"]],[21,22,["G1140"]],[22,24,["G1831"]],[24,25,["G2521"]],[25,26,["G3844"]],[26,27,["G3588"]],[27,28,["G4228"]],[28,30,["G2424"]],[30,31,["G2439"]],[31,32,["G2532"]],[32,36,["G4993"]],[36,37,["G2532"]],[37,40,["G5399"]]]},{"k":25281,"v":[[0,0,["(G1161)"]],[0,4,["G1492","G2532"]],[4,6,["G518"]],[6,7,["G846"]],[7,10,["G4459"]],[10,17,["G1139"]],[17,19,["G4982"]]]},{"k":25282,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G537"]],[3,4,["G4128"]],[4,6,["G3588"]],[6,12,["G4066","G3588","G1046"]],[12,13,["G2065"]],[13,14,["G846"]],[14,16,["G565"]],[16,17,["G575"]],[17,18,["G846"]],[18,19,["G3754"]],[19,22,["G4912"]],[22,24,["G3173"]],[24,25,["G5401"]],[25,26,["G1161"]],[26,27,["G846"]],[27,29,["G1684"]],[29,30,["G1519"]],[30,31,["G3588"]],[31,32,["G4143"]],[32,36,["G5290"]]]},{"k":25283,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G435"]],[3,5,["G575"]],[5,6,["G3739"]],[6,7,["G3588"]],[7,8,["G1140"]],[8,10,["G1831"]],[10,11,["G1189"]],[11,12,["G846"]],[12,16,["G1511"]],[16,17,["G4862"]],[17,18,["G846"]],[18,19,["G1161"]],[19,20,["G2424"]],[20,23,["G630","G846"]],[23,24,["G3004"]]]},{"k":25284,"v":[[0,1,["G5290"]],[1,2,["G1519"]],[2,4,["G4675"]],[4,5,["G3624"]],[5,6,["G2532"]],[6,7,["G1334"]],[7,10,["G3745"]],[10,11,["G2316"]],[11,13,["G4160"]],[13,15,["G4671"]],[15,16,["G2532"]],[16,20,["G565"]],[20,22,["G2784"]],[22,23,["G2596"]],[23,24,["G3588"]],[24,25,["G3650"]],[25,26,["G4172"]],[26,29,["G3745"]],[29,30,["G2424"]],[30,32,["G4160"]],[32,34,["G846"]]]},{"k":25285,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,8,["G2424"]],[8,10,["G5290"]],[10,11,["G3588"]],[11,12,["G3793"]],[12,14,["G588"]],[14,15,["G846"]],[15,16,["G1063"]],[16,18,["G2258"]],[18,19,["G3956"]],[19,21,["G4328"]],[21,22,["G846"]]]},{"k":25286,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G2064"]],[4,6,["G435"]],[6,7,["G3686"]],[7,8,["G2383"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G5225"]],[11,13,["G758"]],[13,15,["G3588"]],[15,16,["G4864"]],[16,17,["G2532"]],[17,20,["G4098"]],[20,21,["G3844"]],[21,22,["G2424"]],[22,23,["G4228"]],[23,25,["G3870"]],[25,26,["G846"]],[26,30,["G1525"]],[30,31,["G1519"]],[31,32,["G848"]],[32,33,["G3624"]]]},{"k":25287,"v":[[0,1,["G3754"]],[1,2,["G846"]],[2,3,["G2258"]],[3,5,["G3439"]],[5,6,["G2364"]],[6,7,["G5613"]],[7,8,["G1427"]],[8,11,["G2094"]],[11,12,["G2532"]],[12,13,["G3778"]],[13,16,["G599"]],[16,17,["G1161"]],[17,19,["G846"]],[19,20,["G5217"]],[20,21,["G3588"]],[21,22,["G3793"]],[22,23,["G4846"]],[23,24,["G846"]]]},{"k":25288,"v":[[0,1,["G2532"]],[1,3,["G1135"]],[3,4,["G5607"]],[4,5,["(G1722)"]],[5,6,["G4511"]],[6,8,["G129"]],[8,9,["G1427"]],[9,10,["G2094"]],[10,11,["G3748"]],[11,13,["G4321"]],[13,14,["G3650"]],[14,16,["G979"]],[16,17,["G1519"]],[17,18,["G2395"]],[18,19,["G3756"]],[19,20,["G2480"]],[20,22,["G2323"]],[22,23,["G5259"]],[23,24,["G3762"]]]},{"k":25289,"v":[[0,1,["G4334"]],[1,2,["G3693"]],[2,5,["G680"]],[5,6,["G3588"]],[6,7,["G2899"]],[7,9,["G846"]],[9,10,["G2440"]],[10,11,["G2532"]],[11,12,["G3916"]],[12,13,["G846"]],[13,14,["G4511"]],[14,16,["G129"]],[16,17,["G2476"]]]},{"k":25290,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G5101"]],[4,5,["G680"]],[5,6,["G3450"]],[6,7,["G1161"]],[7,8,["G3956"]],[8,9,["G720"]],[9,10,["G4074"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,15,["G3326"]],[15,16,["G846"]],[16,17,["G2036"]],[17,18,["G1988"]],[18,19,["G3588"]],[19,20,["G3793"]],[20,21,["G4912"]],[21,22,["G4571"]],[22,23,["G2532"]],[23,24,["G598"]],[24,26,["G2532"]],[26,27,["G3004"]],[27,29,["G5101"]],[29,30,["G680"]],[30,31,["G3450"]]]},{"k":25291,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G5100"]],[4,6,["G680"]],[6,7,["G3450"]],[7,8,["G1063"]],[8,9,["G1473"]],[9,10,["G1097"]],[10,12,["G1411"]],[12,14,["G1831"]],[14,16,["G575"]],[16,17,["G1700"]]]},{"k":25292,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1135"]],[4,5,["G1492"]],[5,6,["G3754"]],[6,9,["G3756"]],[9,10,["G2990"]],[10,12,["G2064"]],[12,13,["G5141"]],[13,14,["G2532"]],[14,17,["G4363"]],[17,18,["G846"]],[18,20,["G518"]],[20,22,["G846"]],[22,23,["G1799"]],[23,24,["G3956"]],[24,25,["G3588"]],[25,26,["G2992"]],[26,27,["G1223"]],[27,28,["G3739"]],[28,29,["G156"]],[29,32,["G680"]],[32,33,["G846"]],[33,34,["G2532"]],[34,35,["G5613"]],[35,38,["G2390"]],[38,39,["G3916"]]]},{"k":25293,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G2364"]],[6,10,["G2293"]],[10,11,["G4675"]],[11,12,["G4102"]],[12,16,["G4982","G4571"]],[16,17,["G4198"]],[17,18,["G1519"]],[18,19,["G1515"]]]},{"k":25294,"v":[[0,2,["G846"]],[2,3,["G2089"]],[3,4,["G2980"]],[4,6,["G2064"]],[6,7,["G5100"]],[7,8,["G3844"]],[8,9,["G3588"]],[9,13,["G752"]],[13,15,["G3004"]],[15,17,["G846"]],[17,18,["G4675"]],[18,19,["G2364"]],[19,21,["G2348"]],[21,22,["G4660"]],[22,23,["G3361"]],[23,24,["G3588"]],[24,25,["G1320"]]]},{"k":25295,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,4,["G191"]],[4,7,["G611"]],[7,8,["G846"]],[8,9,["G3004"]],[9,10,["G5399"]],[10,11,["G3361"]],[11,12,["G4100"]],[12,13,["G3440"]],[13,14,["G2532"]],[14,19,["G4982"]]]},{"k":25296,"v":[[0,1,["G1161"]],[1,4,["G1525"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G3614"]],[7,9,["G863"]],[9,11,["G3756","G3762"]],[11,14,["G1525"]],[14,15,["G1508"]],[15,16,["G4074"]],[16,17,["G2532"]],[17,18,["G2385"]],[18,19,["G2532"]],[19,20,["G2491"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G3962"]],[23,24,["G2532"]],[24,25,["G3588"]],[25,26,["G3384"]],[26,28,["G3588"]],[28,29,["G3816"]]]},{"k":25297,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,3,["G2799"]],[3,4,["G2532"]],[4,5,["G2875"]],[5,6,["G846"]],[6,7,["G1161"]],[7,8,["G3588"]],[8,9,["G2036"]],[9,10,["G2799"]],[10,11,["G3361"]],[11,15,["G599","G3756"]],[15,16,["G235"]],[16,17,["G2518"]]]},{"k":25298,"v":[[0,1,["G2532"]],[1,6,["G2606","G846"]],[6,7,["G1492"]],[7,8,["G3754"]],[8,11,["G599"]]]},{"k":25299,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G1544"]],[3,5,["G3956"]],[5,6,["G1854"]],[6,7,["G2532"]],[7,8,["G2902"]],[8,9,["G846"]],[9,11,["G3588"]],[11,12,["G5495"]],[12,14,["G5455"]],[14,15,["G3004"]],[15,16,["G3816"]],[16,17,["G1453"]]]},{"k":25300,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G4151"]],[3,5,["G1994"]],[5,6,["G2532"]],[6,8,["G450"]],[8,9,["G3916"]],[9,10,["G2532"]],[10,12,["G1299"]],[12,14,["G1325"]],[14,15,["G846"]],[15,16,["G5315"]]]},{"k":25301,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G1118"]],[3,5,["G1839"]],[5,6,["G1161"]],[6,7,["G3588"]],[7,8,["G3853"]],[8,9,["G846"]],[9,13,["G2036"]],[13,15,["G3367"]],[15,18,["G1096"]]]},{"k":25302,"v":[[0,1,["G1161"]],[1,7,["G4779","G848","G1427","G3101"]],[7,9,["G1325"]],[9,10,["G846"]],[10,11,["G1411"]],[11,12,["G2532"]],[12,13,["G1849"]],[13,14,["G1909"]],[14,15,["G3956"]],[15,16,["G1140"]],[16,17,["G2532"]],[17,19,["G2323"]],[19,20,["G3554"]]]},{"k":25303,"v":[[0,1,["G2532"]],[1,3,["G649"]],[3,4,["G846"]],[4,6,["G2784"]],[6,7,["G3588"]],[7,8,["G932"]],[8,10,["G2316"]],[10,11,["G2532"]],[11,13,["G2390"]],[13,14,["G3588"]],[14,15,["G770"]]]},{"k":25304,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G142"]],[6,7,["G3367"]],[7,8,["G1519"]],[8,10,["G3598"]],[10,11,["G3383"]],[11,12,["G4464"]],[12,13,["G3383"]],[13,14,["G4082"]],[14,15,["G3383"]],[15,16,["G740"]],[16,17,["G3383"]],[17,18,["G694"]],[18,19,["G3383"]],[19,20,["G2192"]],[20,21,["G1417"]],[21,22,["G5509"]],[22,23,["G303"]]]},{"k":25305,"v":[[0,1,["G2532"]],[1,2,["G3739","G302"]],[2,3,["G3614"]],[3,5,["G1525"]],[5,6,["G1519"]],[6,7,["G1563"]],[7,8,["G3306"]],[8,9,["G2532"]],[9,10,["G1564"]],[10,11,["G1831"]]]},{"k":25306,"v":[[0,1,["G2532"]],[1,2,["G3745","G302"]],[2,4,["G3361"]],[4,5,["G1209"]],[5,6,["G5209"]],[6,9,["G1831"]],[9,11,["G575"]],[11,12,["G1565"]],[12,13,["G4172"]],[13,15,["G660"]],[15,16,["G3588"]],[16,17,["G2532"]],[17,18,["G2868"]],[18,19,["G575"]],[19,20,["G5216"]],[20,21,["G4228"]],[21,22,["G1519"]],[22,24,["G3142"]],[24,25,["G1909"]],[25,26,["G846"]]]},{"k":25307,"v":[[0,1,["G1161"]],[1,3,["G1831"]],[3,5,["G1330"]],[5,6,["G2596"]],[6,7,["G3588"]],[7,8,["G2968"]],[8,11,["G2097"]],[11,12,["G2532"]],[12,13,["G2323"]],[13,15,["G3837"]]]},{"k":25308,"v":[[0,1,["G1161"]],[1,2,["G2264"]],[2,3,["G3588"]],[3,4,["G5076"]],[4,5,["G191"]],[5,7,["G3956"]],[7,10,["G1096"]],[10,11,["G5259"]],[11,12,["G846"]],[12,13,["G2532"]],[13,16,["G1280"]],[16,21,["G3004"]],[21,22,["G5259"]],[22,23,["G5100"]],[23,24,["G3754"]],[24,25,["G2491"]],[25,27,["G1453"]],[27,28,["G1537"]],[28,30,["G3498"]]]},{"k":25309,"v":[[0,1,["G1161"]],[1,2,["G5259"]],[2,3,["G5100"]],[3,4,["G3754"]],[4,5,["G2243"]],[5,7,["G5316"]],[7,8,["G1161"]],[8,10,["G243"]],[10,11,["G3754"]],[11,12,["G1520"]],[12,14,["G3588"]],[14,15,["G744"]],[15,16,["G4396"]],[16,19,["G450"]]]},{"k":25310,"v":[[0,1,["G2532"]],[1,2,["G2264"]],[2,3,["G2036"]],[3,4,["G2491"]],[4,6,["G1473"]],[6,7,["G607"]],[7,8,["G1161"]],[8,9,["G5101"]],[9,10,["G2076"]],[10,11,["G3778"]],[11,12,["G4012"]],[12,13,["G3739"]],[13,14,["G1473"]],[14,15,["G191"]],[15,17,["G5108"]],[17,18,["G2532"]],[18,20,["G2212"]],[20,22,["G1492"]],[22,23,["G846"]]]},{"k":25311,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G652"]],[3,7,["G5290"]],[7,8,["G1334"]],[8,9,["G846"]],[9,11,["G3745"]],[11,14,["G4160"]],[14,15,["G2532"]],[15,17,["G3880"]],[17,18,["G846"]],[18,21,["G5298"]],[21,22,["G2596","G2398"]],[22,23,["G1519"]],[23,25,["G2048"]],[25,26,["G5117"]],[26,30,["G4172"]],[30,31,["G2564"]],[31,32,["G966"]]]},{"k":25312,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3793"]],[3,6,["G1097"]],[6,8,["G190"]],[8,9,["G846"]],[9,10,["G2532"]],[10,12,["G1209"]],[12,13,["G846"]],[13,15,["G2980"]],[15,17,["G846"]],[17,18,["G4012"]],[18,19,["G3588"]],[19,20,["G932"]],[20,22,["G2316"]],[22,23,["G2532"]],[23,24,["G2390"]],[24,27,["G2192"]],[27,28,["G5532"]],[28,30,["G2322"]]]},{"k":25313,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G2250"]],[4,5,["G756"]],[5,8,["G2827"]],[8,9,["G1161"]],[9,10,["G4334"]],[10,11,["G3588"]],[11,12,["G1427"]],[12,14,["G2036"]],[14,16,["G846"]],[16,20,["G630","G3588","G3793"]],[20,21,["G2443"]],[21,24,["G565"]],[24,25,["G1519"]],[25,26,["G3588"]],[26,27,["G2968"]],[27,28,["G2532"]],[28,29,["G68"]],[29,31,["G2945"]],[31,33,["G2647"]],[33,34,["G2532"]],[34,35,["G2147"]],[35,36,["G1979"]],[36,37,["G3754"]],[37,39,["G2070"]],[39,40,["G5602"]],[40,41,["G1722"]],[41,43,["G2048"]],[43,44,["G5117"]]]},{"k":25314,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G1325"]],[6,7,["G5210"]],[7,8,["G846"]],[8,10,["G5315"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,13,["G2036"]],[13,14,["G2254"]],[14,15,["G1526"]],[15,16,["G3756"]],[16,17,["G4119"]],[17,18,["G2228"]],[18,19,["G4002"]],[19,20,["G740"]],[20,21,["G2532"]],[21,22,["G1417"]],[22,23,["G2486"]],[23,24,["G1509"]],[24,25,["G2249"]],[25,27,["G4198"]],[27,29,["G59"]],[29,30,["G1033"]],[30,31,["G1519"]],[31,32,["G3956"]],[32,33,["G5126"]],[33,34,["G2992"]]]},{"k":25315,"v":[[0,1,["G1063"]],[1,3,["G2258"]],[3,4,["G5616"]],[4,6,["G4000"]],[6,7,["G435"]],[7,8,["G1161"]],[8,9,["G3588"]],[9,10,["G2036"]],[10,11,["G4314"]],[11,12,["G848"]],[12,13,["G3101"]],[13,15,["G846"]],[15,17,["G2625"]],[17,18,["G303"]],[18,19,["G4004"]],[19,22,["G2828"]]]},{"k":25316,"v":[[0,1,["G2532"]],[1,3,["G4160"]],[3,4,["G3779"]],[4,5,["G2532"]],[5,8,["G537"]],[8,10,["G347"]]]},{"k":25317,"v":[[0,1,["G1161"]],[1,3,["G2983"]],[3,4,["G3588"]],[4,5,["G4002"]],[5,6,["G740"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G1417"]],[9,10,["G2486"]],[10,13,["G308"]],[13,14,["G1519"]],[14,15,["G3772"]],[15,17,["G2127"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G2622"]],[20,21,["G2532"]],[21,22,["G1325"]],[22,24,["G3588"]],[24,25,["G3101"]],[25,28,["G3908"]],[28,29,["G3588"]],[29,30,["G3793"]]]},{"k":25318,"v":[[0,1,["G2532"]],[1,4,["G5315"]],[4,5,["G2532"]],[5,7,["G3956"]],[7,8,["G5526"]],[8,9,["G2532"]],[9,13,["G142"]],[13,15,["G2801"]],[15,17,["G4052"]],[17,19,["G846"]],[19,20,["G1427"]],[20,21,["G2894"]]]},{"k":25319,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G846"]],[7,8,["G1511"]],[8,9,["G2651"]],[9,10,["G4336"]],[10,12,["G3101"]],[12,14,["G4895"]],[14,15,["G846"]],[15,16,["G2532"]],[16,18,["G1905"]],[18,19,["G846"]],[19,20,["G3004"]],[20,21,["G5101"]],[21,22,["G3004"]],[22,23,["G3588"]],[23,24,["G3793"]],[24,26,["G3165"]],[26,27,["G1511"]]]},{"k":25320,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G611"]],[2,3,["G2036"]],[3,4,["G2491"]],[4,5,["G3588"]],[5,6,["G910"]],[6,7,["G1161"]],[7,8,["G243"]],[8,10,["G2243"]],[10,11,["G1161"]],[11,12,["G243"]],[12,14,["G3754"]],[14,15,["G5100"]],[15,17,["G3588"]],[17,18,["G744"]],[18,19,["G4396"]],[19,22,["G450"]]]},{"k":25321,"v":[[0,0,["(G1161)"]],[0,2,["G2036"]],[2,4,["G846"]],[4,5,["G1161"]],[5,6,["G5101"]],[6,7,["G3004"]],[7,8,["G5210"]],[8,10,["G3165"]],[10,11,["G1511","(G1161)"]],[11,12,["G4074"]],[12,13,["G611"]],[13,14,["G2036"]],[14,15,["G3588"]],[15,16,["G5547"]],[16,18,["G2316"]]]},{"k":25322,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G2008"]],[4,5,["G846"]],[5,7,["G3853"]],[7,10,["G2036"]],[10,12,["G3367"]],[12,14,["G5124"]]]},{"k":25323,"v":[[0,1,["G2036"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G444"]],[5,6,["G1163"]],[6,7,["G3958"]],[7,9,["G4183"]],[9,10,["G2532"]],[10,12,["G593"]],[12,13,["G575"]],[13,14,["G3588"]],[14,15,["G4245"]],[15,16,["G2532"]],[16,18,["G749"]],[18,19,["G2532"]],[19,20,["G1122"]],[20,21,["G2532"]],[21,23,["G615"]],[23,24,["G2532"]],[24,26,["G1453"]],[26,27,["G3588"]],[27,28,["G5154"]],[28,29,["G2250"]]]},{"k":25324,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,4,["G4314"]],[4,6,["G3956"]],[6,7,["G1487"]],[7,8,["G5100"]],[8,10,["G2309"]],[10,11,["G2064"]],[11,12,["G3694"]],[12,13,["G3450"]],[13,16,["G533"]],[16,17,["G1438"]],[17,18,["G2532"]],[18,20,["G142"]],[20,21,["G848"]],[21,22,["G4716"]],[22,23,["G2596","G2250"]],[23,24,["G2532"]],[24,25,["G190"]],[25,26,["G3427"]]]},{"k":25325,"v":[[0,1,["G1063"]],[1,2,["G3739","G302"]],[2,3,["G2309"]],[3,4,["G4982"]],[4,5,["G848"]],[5,6,["G5590"]],[6,8,["G622"]],[8,9,["G846"]],[9,10,["G1161"]],[10,11,["G3739","G302"]],[11,13,["G622"]],[13,14,["G848"]],[14,15,["G5590"]],[15,18,["G1752","G1700"]],[18,20,["G3778"]],[20,22,["G4982"]],[22,23,["G846"]]]},{"k":25326,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,5,["G444"]],[5,6,["G5623"]],[6,9,["G2770"]],[9,10,["G3588"]],[10,11,["G3650"]],[11,12,["G2889"]],[12,13,["G1161"]],[13,14,["G622"]],[14,15,["G1438"]],[15,16,["G2228"]],[16,19,["G2210"]]]},{"k":25327,"v":[[0,1,["G1063"]],[1,2,["G3739","G302"]],[2,5,["G1870"]],[5,7,["G3165"]],[7,8,["G2532"]],[8,10,["G1699"]],[10,11,["G3056"]],[11,13,["G5126"]],[13,15,["G3588"]],[15,16,["G5207"]],[16,18,["G444"]],[18,20,["G1870"]],[20,21,["G3752"]],[21,24,["G2064"]],[24,25,["G1722"]],[25,27,["G848"]],[27,28,["G1391"]],[28,29,["G2532"]],[29,32,["G3962"]],[32,33,["G2532"]],[33,35,["G3588"]],[35,36,["G40"]],[36,37,["G32"]]]},{"k":25328,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,4,["G5213"]],[4,7,["G230"]],[7,9,["G1526"]],[9,10,["G5100"]],[10,11,["G2476"]],[11,12,["G5602"]],[12,13,["G3739"]],[13,15,["G3364"]],[15,16,["G1089"]],[16,18,["G2288"]],[18,19,["G2193","G302"]],[19,21,["G1492"]],[21,22,["G3588"]],[22,23,["G932"]],[23,25,["G2316"]]]},{"k":25329,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,6,["G5616"]],[6,8,["G3638"]],[8,9,["G2250"]],[9,10,["G3326"]],[10,11,["G5128"]],[11,12,["G3056"]],[12,13,["(G2532)"]],[13,14,["G3880"]],[14,15,["G4074"]],[15,16,["G2532"]],[16,17,["G2491"]],[17,18,["G2532"]],[18,19,["G2385"]],[19,22,["G305"]],[22,23,["G1519"]],[23,25,["G3735"]],[25,27,["G4336"]]]},{"k":25330,"v":[[0,1,["G2532"]],[1,2,["(G1096)"]],[2,3,["G846"]],[3,4,["G4336"]],[4,5,["G3588"]],[5,6,["G1491"]],[6,8,["G846"]],[8,9,["G4383"]],[9,11,["G2087"]],[11,12,["G2532"]],[12,13,["G846"]],[13,14,["G2441"]],[14,16,["G3022"]],[16,18,["G1823"]]]},{"k":25331,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,5,["G4814"]],[5,6,["G846"]],[6,7,["G1417"]],[7,8,["G444"]],[8,9,["G3748"]],[9,10,["G2258"]],[10,11,["G3475"]],[11,12,["G2532"]],[12,13,["G2243"]]]},{"k":25332,"v":[[0,1,["G3739"]],[1,2,["G3700"]],[2,3,["G1722"]],[3,4,["G1391"]],[4,6,["G3004"]],[6,8,["G846"]],[8,9,["G1841"]],[9,10,["G3739"]],[10,12,["G3195"]],[12,13,["G4137"]],[13,14,["G1722"]],[14,15,["G2419"]]]},{"k":25333,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2532"]],[3,4,["G3588"]],[4,7,["G4862"]],[7,8,["G846"]],[8,9,["G2258"]],[9,10,["G916"]],[10,12,["G5258"]],[12,13,["G1161"]],[13,17,["G1235"]],[17,19,["G1492"]],[19,20,["G846"]],[20,21,["G1391"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G1417"]],[24,25,["G444"]],[25,28,["G4921"]],[28,29,["G846"]]]},{"k":25334,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G846"]],[7,8,["G1316"]],[8,9,["G575"]],[9,10,["G846"]],[10,11,["G4074"]],[11,12,["G2036"]],[12,13,["G4314"]],[13,14,["G2424"]],[14,15,["G1988"]],[15,17,["G2076"]],[17,18,["G2570"]],[18,20,["G2248"]],[20,22,["G1511"]],[22,23,["G5602"]],[23,24,["G2532"]],[24,27,["G4160"]],[27,28,["G5140"]],[28,29,["G4633"]],[29,30,["G3391"]],[30,32,["G4671"]],[32,33,["G2532"]],[33,34,["G3391"]],[34,36,["G3475"]],[36,37,["G2532"]],[37,38,["G3391"]],[38,40,["G2243"]],[40,41,["G3361"]],[41,42,["G1492"]],[42,43,["G3739"]],[43,45,["G3004"]]]},{"k":25335,"v":[[0,1,["(G1161)"]],[1,2,["G846"]],[2,3,["G5023"]],[3,4,["G3004"]],[4,6,["G1096"]],[6,8,["G3507"]],[8,9,["G2532"]],[9,10,["G1982"]],[10,11,["G846"]],[11,12,["G1161"]],[12,14,["G5399"]],[14,16,["G1565"]],[16,17,["G1525"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G3507"]]]},{"k":25336,"v":[[0,1,["G2532"]],[1,3,["G1096"]],[3,5,["G5456"]],[5,7,["G1537"]],[7,8,["G3588"]],[8,9,["G3507"]],[9,10,["G3004"]],[10,11,["G3778"]],[11,12,["G2076"]],[12,13,["G3450"]],[13,14,["G27"]],[14,15,["G5207"]],[15,16,["G191"]],[16,17,["G846"]]]},{"k":25337,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G5456"]],[4,6,["G1096"]],[6,7,["G2424"]],[7,9,["G2147"]],[9,10,["G3441"]],[10,11,["G2532"]],[11,12,["G846"]],[12,15,["G4601"]],[15,16,["G2532"]],[16,17,["G518"]],[17,19,["G3762"]],[19,20,["G1722"]],[20,21,["G1565"]],[21,22,["G2250"]],[22,26,["G3762"]],[26,27,["G3739"]],[27,30,["G3708"]]]},{"k":25338,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,7,["G1722"]],[7,8,["G3588"]],[8,9,["G1836"]],[9,10,["G2250"]],[10,12,["G846"]],[12,15,["G2718"]],[15,16,["G575"]],[16,17,["G3588"]],[17,18,["G3735"]],[18,19,["G4183"]],[19,20,["G3793"]],[20,21,["G4876"]],[21,22,["G846"]]]},{"k":25339,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G435"]],[4,5,["G575"]],[5,6,["G3588"]],[6,7,["G3793"]],[7,9,["G310"]],[9,10,["G3004"]],[10,11,["G1320"]],[11,13,["G1189"]],[13,14,["G4675"]],[14,15,["G1914"]],[15,16,["G1909"]],[16,17,["G3450"]],[17,18,["G5207"]],[18,19,["G3754"]],[19,21,["G2076"]],[21,22,["G3427"]],[22,24,["G3439"]]]},{"k":25340,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G4151"]],[4,5,["G2983"]],[5,6,["G846"]],[6,7,["G2532"]],[7,9,["G1810"]],[9,11,["G2896"]],[11,12,["G2532"]],[12,14,["G4682"]],[14,15,["G846"]],[15,19,["G3326","G876"]],[19,20,["G2532"]],[20,21,["G4937"]],[21,22,["G846"]],[22,23,["G3425"]],[23,24,["G672"]],[24,25,["G575"]],[25,26,["G846"]]]},{"k":25341,"v":[[0,1,["G2532"]],[1,3,["G1189"]],[3,4,["G4675"]],[4,5,["G3101"]],[5,6,["G2443"]],[6,9,["G1544","G846"]],[9,10,["G2532"]],[10,12,["G1410"]],[12,13,["G3756"]]]},{"k":25342,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,5,["G5599"]],[5,6,["G571"]],[6,7,["G2532"]],[7,8,["G1294"]],[8,9,["G1074"]],[9,11,["G2193","G4219"]],[11,14,["G2071"]],[14,15,["G4314"]],[15,16,["G5209"]],[16,17,["G2532"]],[17,18,["G430"]],[18,19,["G5216"]],[19,20,["G4317"]],[20,21,["G4675"]],[21,22,["G5207"]],[22,23,["G5602"]]]},{"k":25343,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G2089"]],[5,7,["G4334"]],[7,8,["G3588"]],[8,9,["G1140"]],[9,12,["G4486","G846"]],[12,13,["G2532"]],[13,14,["G4952"]],[14,16,["G1161"]],[16,17,["G2424"]],[17,18,["G2008"]],[18,19,["G3588"]],[19,20,["G169"]],[20,21,["G4151"]],[21,22,["G2532"]],[22,23,["G2390"]],[23,24,["G3588"]],[24,25,["G3816"]],[25,26,["G2532"]],[26,29,["G591","G846"]],[29,31,["G846"]],[31,32,["G3962"]]]},{"k":25344,"v":[[0,1,["G1161"]],[1,4,["G3956"]],[4,5,["G1605"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,9,["G3168"]],[9,11,["G2316"]],[11,12,["G1161"]],[12,15,["G2296"]],[15,17,["G3956"]],[17,18,["G1909"]],[18,20,["G3956"]],[20,21,["G3739"]],[21,22,["G2424"]],[22,23,["G4160"]],[23,25,["G2036"]],[25,26,["G4314"]],[26,27,["G848"]],[27,28,["G3101"]]]},{"k":25345,"v":[[0,1,["(G5210)"]],[1,2,["G5128"]],[2,3,["G3056"]],[3,5,["G5087"]],[5,6,["G1519"]],[6,7,["G5216"]],[7,8,["G3775"]],[8,9,["G1063"]],[9,10,["G3588"]],[10,11,["G5207"]],[11,13,["G444"]],[13,14,["G3195"]],[14,16,["G3860"]],[16,17,["G1519"]],[17,19,["G5495"]],[19,21,["G444"]]]},{"k":25346,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G50"]],[4,5,["G5124"]],[5,6,["G4487"]],[6,7,["G2532"]],[7,9,["G2258"]],[9,10,["G3871"]],[10,11,["G575"]],[11,12,["G846"]],[12,13,["G2443"]],[13,15,["G143"]],[15,16,["G846"]],[16,17,["G3361"]],[17,18,["G2532"]],[18,20,["G5399"]],[20,22,["G2065"]],[22,23,["G846"]],[23,24,["G4012"]],[24,25,["G5127"]],[25,26,["G4487"]]]},{"k":25347,"v":[[0,1,["G1161"]],[1,3,["G1525"]],[3,5,["G1261"]],[5,6,["G1722"]],[6,7,["G846"]],[7,8,["G5101"]],[8,10,["G846"]],[10,12,["G1498"]],[12,13,["G3187"]]]},{"k":25348,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G1492"]],[3,4,["G3588"]],[4,5,["G1261"]],[5,7,["G846"]],[7,8,["G2588"]],[8,9,["G1949"]],[9,11,["G3813"]],[11,13,["G2476"]],[13,14,["G846"]],[14,15,["G3844"]],[15,16,["G1438"]]]},{"k":25349,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G3739","G1437"]],[5,7,["G1209"]],[7,8,["G5124"]],[8,9,["G3813"]],[9,10,["G1909"]],[10,11,["G3450"]],[11,12,["G3686"]],[12,13,["G1209"]],[13,14,["G1691"]],[14,15,["G2532"]],[15,16,["G3739","G1437"]],[16,18,["G1209"]],[18,19,["G1691"]],[19,20,["G1209"]],[20,23,["G649"]],[23,24,["G3165"]],[24,25,["G1063"]],[25,28,["G5225"]],[28,29,["G3398"]],[29,30,["G1722"]],[30,31,["G5213"]],[31,32,["G3956"]],[32,34,["G3778"]],[34,36,["G2071"]],[36,37,["G3173"]]]},{"k":25350,"v":[[0,1,["G1161"]],[1,2,["G2491"]],[2,3,["G611"]],[3,5,["G2036"]],[5,6,["G1988"]],[6,8,["G1492"]],[8,9,["G5100"]],[9,11,["G1544"]],[11,12,["G1140"]],[12,13,["G1909"]],[13,14,["G4675"]],[14,15,["G3686"]],[15,16,["G2532"]],[16,18,["G2967"]],[18,19,["G846"]],[19,20,["G3754"]],[20,22,["G190"]],[22,23,["G3756"]],[23,24,["G3326"]],[24,25,["G2257"]]]},{"k":25351,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G2967"]],[6,8,["G3361"]],[8,9,["G1063"]],[9,10,["G3739"]],[10,12,["G2076"]],[12,13,["G3756"]],[13,14,["G2596"]],[14,15,["G2257"]],[15,16,["G2076"]],[16,17,["G5228"]],[17,18,["G2257"]]]},{"k":25352,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,7,["G3588"]],[7,8,["G2250"]],[8,10,["G4845"]],[10,11,["G2532"]],[11,12,["G846"]],[12,16,["G354"]],[16,17,["G846"]],[17,19,["G4741"]],[19,20,["G848"]],[20,21,["G4383"]],[21,23,["G4198"]],[23,24,["G1519"]],[24,25,["G2419"]]]},{"k":25353,"v":[[0,1,["G2532"]],[1,2,["G649"]],[2,3,["G32"]],[3,4,["G4253"]],[4,5,["G848"]],[5,6,["G4383"]],[6,7,["G2532"]],[7,9,["G4198"]],[9,11,["G1525"]],[11,12,["G1519"]],[12,14,["G2968"]],[14,17,["G4541"]],[17,18,["G5620"]],[18,20,["G2090"]],[20,22,["G846"]]]},{"k":25354,"v":[[0,1,["G2532"]],[1,4,["G3756"]],[4,5,["G1209"]],[5,6,["G846"]],[6,7,["G3754"]],[7,8,["G846"]],[8,9,["G4383"]],[9,10,["G2258"]],[10,15,["G4198"]],[15,16,["G1519"]],[16,17,["G2419"]]]},{"k":25355,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G3101"]],[4,5,["G2385"]],[5,6,["G2532"]],[6,7,["G2491"]],[7,8,["G1492"]],[8,11,["G2036"]],[11,12,["G2962"]],[12,13,["G2309"]],[13,17,["G2036"]],[17,18,["G4442"]],[18,21,["G2597"]],[21,22,["G575"]],[22,23,["G3772"]],[23,24,["G2532"]],[24,25,["G355"]],[25,26,["G846"]],[26,27,["G2532"]],[27,28,["G5613"]],[28,29,["G2243"]],[29,30,["G4160"]]]},{"k":25356,"v":[[0,1,["G1161"]],[1,3,["G4762"]],[3,5,["G2008"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G2036"]],[8,10,["G1492"]],[10,11,["G3756"]],[11,13,["G3634"]],[13,15,["G4151"]],[15,16,["G5210"]],[16,17,["G2075"]],[17,18,[]]]},{"k":25357,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G444"]],[5,7,["G3756"]],[7,8,["G2064"]],[8,10,["G622"]],[10,11,["G444"]],[11,12,["G5590"]],[12,13,["G235"]],[13,15,["G4982"]],[15,17,["G2532"]],[17,19,["G4198"]],[19,20,["G1519"]],[20,21,["G2087"]],[21,22,["G2968"]]]},{"k":25358,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,8,["G846"]],[8,9,["G4198"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G3598"]],[12,14,["G5100"]],[14,16,["G2036"]],[16,17,["G4314"]],[17,18,["G846"]],[18,19,["G2962"]],[19,22,["G190"]],[22,23,["G4671"]],[23,24,["G3699","G302"]],[24,26,["G565"]]]},{"k":25359,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G258"]],[6,7,["G2192"]],[7,8,["G5454"]],[8,9,["G2532"]],[9,10,["G4071"]],[10,12,["G3588"]],[12,13,["G3772"]],[13,15,["G2682"]],[15,16,["G1161"]],[16,17,["G3588"]],[17,18,["G5207"]],[18,20,["G444"]],[20,21,["G2192"]],[21,22,["G3756"]],[22,23,["G4226"]],[23,25,["G2827"]],[25,27,["G2776"]]]},{"k":25360,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G2087"]],[5,6,["G190"]],[6,7,["G3427"]],[7,8,["G1161"]],[8,9,["G3588"]],[9,10,["G2036"]],[10,11,["G2962"]],[11,12,["G2010"]],[12,13,["G3427"]],[13,14,["G4412"]],[14,16,["G565"]],[16,18,["G2290"]],[18,19,["G3450"]],[19,20,["G3962"]]]},{"k":25361,"v":[[0,0,["(G1161)"]],[0,1,["G2424"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G863"]],[5,6,["G3588"]],[6,7,["G3498"]],[7,8,["G2290"]],[8,9,["G1438"]],[9,10,["G3498"]],[10,11,["G1161"]],[11,12,["G565"]],[12,13,["G4771"]],[13,15,["G1229"]],[15,16,["G3588"]],[16,17,["G932"]],[17,19,["G2316"]]]},{"k":25362,"v":[[0,1,["G1161"]],[1,2,["G2087"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,5,["G2962"]],[5,8,["G190"]],[8,9,["G4671"]],[9,10,["G1161"]],[10,11,["G2010"]],[11,12,["G3427"]],[12,13,["G4412"]],[13,17,["G657"]],[17,18,["G3588"]],[18,22,["G1519"]],[22,23,["G3450"]],[23,24,["G3624"]]]},{"k":25363,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,7,["G3762"]],[7,9,["G1911"]],[9,10,["G848"]],[10,11,["G5495"]],[11,12,["G1909"]],[12,14,["G723"]],[14,15,["G2532"]],[15,16,["G991"]],[16,17,["G1519","G3694"]],[17,18,["G2076"]],[18,19,["G2111"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G932"]],[22,24,["G2316"]]]},{"k":25364,"v":[[0,1,["(G3326)"]],[1,3,["G5023"]],[3,4,["G3588"]],[4,5,["G2962"]],[5,6,["G322"]],[6,7,["G2087"]],[7,8,["G1440"]],[8,9,["G2532"]],[9,10,["G2532"]],[10,11,["G649"]],[11,12,["G846"]],[12,15,["G303","G1417"]],[15,16,["G4253"]],[16,17,["G848"]],[17,18,["G4383"]],[18,19,["G1519"]],[19,20,["G3956"]],[20,21,["G4172"]],[21,22,["G2532"]],[22,23,["G5117"]],[23,24,["G3757"]],[24,26,["G846"]],[26,27,["G3195"]],[27,28,["G2064"]]]},{"k":25365,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,4,["G4314"]],[4,5,["G846"]],[5,6,["G3588"]],[6,7,["G2326"]],[7,8,["G3303"]],[8,10,["G4183"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,13,["G2040"]],[13,15,["G3641"]],[15,16,["G1189"]],[16,18,["G3767"]],[18,19,["G3588"]],[19,20,["G2962"]],[20,22,["G3588"]],[22,23,["G2326"]],[23,24,["G3704"]],[24,28,["G1544"]],[28,29,["G2040"]],[29,30,["G1519"]],[30,31,["G848"]],[31,32,["G2326"]]]},{"k":25366,"v":[[0,3,["G5217"]],[3,4,["G2400"]],[4,5,["G1473"]],[5,8,["G649","G5209"]],[8,9,["G5613"]],[9,10,["G704"]],[10,11,["G1722","G3319"]],[11,12,["G3074"]]]},{"k":25367,"v":[[0,1,["G941"]],[1,2,["G3361"]],[2,3,["G905"]],[3,4,["G3361"]],[4,5,["G4082"]],[5,6,["G3366"]],[6,7,["G5266"]],[7,8,["G2532"]],[8,9,["G782"]],[9,11,["G3367"]],[11,12,["G2596"]],[12,13,["G3588"]],[13,14,["G3598"]]]},{"k":25368,"v":[[0,1,["G1161"]],[1,2,["G1519"]],[2,3,["G3739","G302"]],[3,4,["G3614"]],[4,6,["G1525"]],[6,7,["G4412"]],[7,8,["G3004"]],[8,9,["G1515"]],[9,12,["G5129"]],[12,13,["G3624"]]]},{"k":25369,"v":[[0,1,["G2532"]],[1,2,["G1437","(G3303)"]],[2,3,["G3588"]],[3,4,["G5207"]],[4,6,["G1515"]],[6,7,["G5600"]],[7,8,["G1563"]],[8,9,["G5216"]],[9,10,["G1515"]],[10,12,["G1879"]],[12,13,["G1909"]],[13,14,["G846"]],[14,16,["G1490"]],[16,22,["G344","G1909","G5209"]]]},{"k":25370,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G846"]],[4,5,["G3614"]],[5,6,["G3306"]],[6,7,["G2068"]],[7,8,["G2532"]],[8,9,["G4095"]],[9,14,["G3588","G3844","G846"]],[14,15,["G1063"]],[15,16,["G3588"]],[16,17,["G2040"]],[17,18,["G2076"]],[18,19,["G514"]],[19,21,["G848"]],[21,22,["G3408"]],[22,23,["G3327"]],[23,24,["G3361"]],[24,25,["G1537"]],[25,26,["G3614"]],[26,27,["G1519"]],[27,28,["G3614"]]]},{"k":25371,"v":[[0,1,["G2532"]],[1,2,["G1519","(G1161)"]],[2,3,["G3739","G302"]],[3,4,["G4172"]],[4,6,["G1525"]],[6,7,["G2532"]],[7,9,["G1209"]],[9,10,["G5209"]],[10,11,["G2068"]],[11,17,["G3908"]],[17,18,["G5213"]]]},{"k":25372,"v":[[0,1,["G2532"]],[1,2,["G2323"]],[2,3,["G3588"]],[3,4,["G772"]],[4,7,["G1722","G846"]],[7,8,["G2532"]],[8,9,["G3004"]],[9,11,["G846"]],[11,12,["G3588"]],[12,13,["G932"]],[13,15,["G2316"]],[15,18,["G1448"]],[18,19,["G1909"]],[19,20,["G5209"]]]},{"k":25373,"v":[[0,1,["G1161"]],[1,2,["G1519","(G1161)"]],[2,3,["G3739","G302"]],[3,4,["G4172"]],[4,6,["G1525"]],[6,7,["G2532"]],[7,9,["G1209"]],[9,10,["G5209"]],[10,11,["G3361"]],[11,15,["G1831"]],[15,16,["G1519"]],[16,17,["G3588"]],[17,18,["G4113"]],[18,21,["G846"]],[21,23,["G2036"]]]},{"k":25374,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,4,["G2868"]],[4,5,["G1537"]],[5,6,["G5216"]],[6,7,["G4172"]],[7,9,["G2853"]],[9,11,["G2254"]],[11,15,["G631"]],[15,17,["G5213"]],[17,18,["G4133"]],[18,21,["G1097"]],[21,23,["G5124"]],[23,24,["G3754"]],[24,25,["G3588"]],[25,26,["G932"]],[26,28,["G2316"]],[28,31,["G1448"]],[31,32,["G1909"]],[32,33,["G5209"]]]},{"k":25375,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,9,["G2071"]],[9,11,["G414"]],[11,12,["G1722"]],[12,13,["G1565"]],[13,14,["G2250"]],[14,16,["G4670"]],[16,17,["G2228"]],[17,19,["G1565"]],[19,20,["G4172"]]]},{"k":25376,"v":[[0,1,["G3759"]],[1,3,["G4671"]],[3,4,["G5523"]],[4,5,["G3759"]],[5,7,["G4671"]],[7,8,["G966"]],[8,9,["G3754"]],[9,10,["G1487"]],[10,11,["G3588"]],[11,13,["G1411"]],[13,16,["G1096"]],[16,17,["G1722"]],[17,18,["G5184"]],[18,19,["G2532"]],[19,20,["G4605"]],[20,24,["G1096"]],[24,25,["G1722"]],[25,26,["G5213"]],[26,28,["(G302)"]],[28,32,["G3819"]],[32,33,["G3340"]],[33,34,["G2521"]],[34,35,["G1722"]],[35,36,["G4526"]],[36,37,["G2532"]],[37,38,["G4700"]]]},{"k":25377,"v":[[0,1,["G4133"]],[1,4,["G2071"]],[4,6,["G414"]],[6,8,["G5184"]],[8,9,["G2532"]],[9,10,["G4605"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G2920"]],[13,14,["G2228"]],[14,16,["G5213"]]]},{"k":25378,"v":[[0,1,["G2532"]],[1,2,["G4771"]],[2,3,["G2584"]],[3,6,["G5312"]],[6,7,["G2193"]],[7,8,["G3772"]],[8,12,["G2601"]],[12,13,["G2193"]],[13,14,["G86"]]]},{"k":25379,"v":[[0,3,["G191"]],[3,4,["G5216"]],[4,5,["G191"]],[5,6,["G1700"]],[6,7,["G2532"]],[7,10,["G114"]],[10,11,["G5209"]],[11,12,["G114"]],[12,13,["G1691"]],[13,14,["G1161"]],[14,17,["G114"]],[17,18,["G1691"]],[18,19,["G114"]],[19,20,["G3588"]],[20,22,["G649"]],[22,23,["G3165"]]]},{"k":25380,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1440"]],[3,5,["G5290"]],[5,6,["G3326"]],[6,7,["G5479"]],[7,8,["G3004"]],[8,9,["G2962"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G1140"]],[12,15,["G5293"]],[15,16,["G2254"]],[16,17,["G1722"]],[17,18,["G4675"]],[18,19,["G3686"]]]},{"k":25381,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G846"]],[5,7,["G2334"]],[7,8,["G4567"]],[8,9,["G5613"]],[9,10,["G796"]],[10,11,["G4098"]],[11,12,["G1537"]],[12,13,["G3772"]]]},{"k":25382,"v":[[0,1,["G2400"]],[1,3,["G1325"]],[3,5,["G5213"]],[5,6,["G1849"]],[6,8,["G3961"]],[8,9,["G1883"]],[9,10,["G3789"]],[10,11,["G2532"]],[11,12,["G4651"]],[12,13,["G2532"]],[13,14,["G1909"]],[14,15,["G3956"]],[15,16,["G3588"]],[16,17,["G1411"]],[17,19,["G3588"]],[19,20,["G2190"]],[20,21,["G2532"]],[21,22,["G3762"]],[22,26,["G3364"]],[26,27,["G91"]],[27,28,["G5209"]]]},{"k":25383,"v":[[0,1,["G4133"]],[1,2,["G1722"]],[2,3,["G5129"]],[3,4,["G5463"]],[4,5,["G3361"]],[5,6,["G3754"]],[6,7,["G3588"]],[7,8,["G4151"]],[8,10,["G5293"]],[10,12,["G5213"]],[12,13,["G1161"]],[13,14,["G3123"]],[14,15,["G5463"]],[15,16,["G3754"]],[16,17,["G5216"]],[17,18,["G3686"]],[18,20,["G1125"]],[20,21,["G1722"]],[21,22,["G3772"]]]},{"k":25384,"v":[[0,1,["G1722"]],[1,2,["G846"]],[2,3,["G5610"]],[3,4,["G2424"]],[4,5,["G21"]],[5,7,["G4151"]],[7,8,["G2532"]],[8,9,["G2036"]],[9,11,["G1843"]],[11,12,["G4671"]],[12,14,["G3962"]],[14,15,["G2962"]],[15,17,["G3772"]],[17,18,["G2532"]],[18,19,["G1093"]],[19,20,["G3754"]],[20,23,["G613"]],[23,25,["G5023"]],[25,26,["G575"]],[26,28,["G4680"]],[28,29,["G2532"]],[29,30,["G4908"]],[30,31,["G2532"]],[31,33,["G601"]],[33,34,["G846"]],[34,36,["G3516"]],[36,38,["G3483"]],[38,39,["G3962"]],[39,40,["G3754"]],[40,41,["G3779"]],[41,43,["G1096"]],[43,44,["G2107"]],[44,47,["G1715","G4675"]]]},{"k":25385,"v":[[0,2,["G3956"]],[2,4,["G3860"]],[4,6,["G3427"]],[6,7,["G5259"]],[7,8,["G3450"]],[8,9,["G3962"]],[9,10,["G2532"]],[10,12,["G3762"]],[12,13,["G1097"]],[13,14,["G5101"]],[14,15,["G3588"]],[15,16,["G5207"]],[16,17,["G2076"]],[17,18,["G1508"]],[18,19,["G3588"]],[19,20,["G3962"]],[20,21,["G2532"]],[21,22,["G5101"]],[22,23,["G3588"]],[23,24,["G3962"]],[24,25,["G2076"]],[25,26,["G1508"]],[26,27,["G3588"]],[27,28,["G5207"]],[28,29,["G2532"]],[29,32,["G3739","G1437"]],[32,33,["G3588"]],[33,34,["G5207"]],[34,35,["G1014"]],[35,36,["G601"]],[36,37,[]]]},{"k":25386,"v":[[0,1,["G2532"]],[1,3,["G4762"]],[3,5,["G4314"]],[5,7,["G3101"]],[7,9,["G2036"]],[9,10,["G2596","G2398"]],[10,11,["G3107"]],[11,13,["G3588"]],[13,14,["G3788"]],[14,16,["G991"]],[16,19,["G3739"]],[19,21,["G991"]]]},{"k":25387,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,4,["G5213"]],[4,5,["G3754"]],[5,6,["G4183"]],[6,7,["G4396"]],[7,8,["G2532"]],[8,9,["G935"]],[9,11,["G2309"]],[11,13,["G1492"]],[13,16,["G3739"]],[16,17,["G5210"]],[17,18,["G991"]],[18,19,["G2532"]],[19,21,["G3756"]],[21,22,["G1492"]],[22,24,["G2532"]],[24,26,["G191"]],[26,29,["G3739"]],[29,31,["G191"]],[31,32,["G2532"]],[32,34,["G3756"]],[34,35,["G191"]],[35,36,[]]]},{"k":25388,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G5100"]],[4,5,["G3544"]],[5,7,["G450"]],[7,9,["G1598"]],[9,10,["G846","(G2532)"]],[10,11,["G3004"]],[11,12,["G1320"]],[12,13,["G5101"]],[13,16,["G4160"]],[16,18,["G2816"]],[18,19,["G166"]],[19,20,["G2222"]]]},{"k":25389,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G2036"]],[2,3,["G4314"]],[3,4,["G846"]],[4,5,["G5101"]],[5,7,["G1125"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G3551"]],[10,11,["G4459"]],[11,12,["G314"]],[12,13,[]]]},{"k":25390,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,4,["G2036"]],[4,7,["G25"]],[7,9,["G2962"]],[9,10,["G4675"]],[10,11,["G2316"]],[11,12,["G1537"]],[12,13,["G3650"]],[13,14,["G4675"]],[14,15,["G2588"]],[15,16,["G2532"]],[16,17,["G1537"]],[17,18,["G3650"]],[18,19,["G4675"]],[19,20,["G5590"]],[20,21,["G2532"]],[21,22,["G1537"]],[22,23,["G3650"]],[23,24,["G4675"]],[24,25,["G2479"]],[25,26,["G2532"]],[26,27,["G1537"]],[27,28,["G3650"]],[28,29,["G4675"]],[29,30,["G1271"]],[30,31,["G2532"]],[31,32,["G4675"]],[32,33,["G4139"]],[33,34,["G5613"]],[34,35,["G4572"]]]},{"k":25391,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G846"]],[5,8,["G611"]],[8,9,["G3723"]],[9,10,["G5124"]],[10,11,["G4160"]],[11,12,["G2532"]],[12,15,["G2198"]]]},{"k":25392,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2309"]],[3,5,["G1344"]],[5,6,["G1438"]],[6,7,["G2036"]],[7,8,["G4314"]],[8,9,["G2424"]],[9,10,["G2532"]],[10,11,["G5101"]],[11,12,["G2076"]],[12,13,["G3450"]],[13,14,["G4139"]]]},{"k":25393,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G5274"]],[3,4,["G2036"]],[4,6,["G5100"]],[6,7,["(G444)"]],[7,9,["G2597"]],[9,10,["G575"]],[10,11,["G2419"]],[11,12,["G1519"]],[12,13,["G2410"]],[13,14,["G2532"]],[14,16,["G4045"]],[16,17,["G3027"]],[17,18,["G3739","(G2532)"]],[18,19,["G1562"]],[19,20,["G846"]],[20,24,["G2532"]],[24,25,["G2007","G4127"]],[25,28,["G565"]],[28,29,["G863"]],[29,30,["(G5177)"]],[30,32,["G2253"]]]},{"k":25394,"v":[[0,1,["G1161"]],[1,2,["G2596"]],[2,3,["G4795"]],[3,6,["G2597"]],[6,8,["G5100"]],[8,9,["G2409","(G1722)"]],[9,10,["G1565"]],[10,11,["G3598"]],[11,12,["G2532"]],[12,15,["G1492"]],[15,16,["G846"]],[16,23,["G492"]]]},{"k":25395,"v":[[0,1,["G1161"]],[1,2,["G3668"]],[2,3,["(G2532)"]],[3,4,["G3019"]],[4,7,["G1096"]],[7,8,["G2596"]],[8,9,["G3588"]],[9,10,["G5117"]],[10,11,["G2064"]],[11,12,["G2532"]],[12,13,["G1492"]],[13,22,["G492"]]]},{"k":25396,"v":[[0,1,["G1161"]],[1,3,["G5100"]],[3,4,["G4541"]],[4,7,["G3593"]],[7,8,["G2064"]],[8,11,["G2596","G846"]],[11,12,["G2532"]],[12,15,["G1492"]],[15,16,["G846"]],[16,19,["G4697"]],[19,21,[]]]},{"k":25397,"v":[[0,1,["G2532"]],[1,2,["G4334"]],[2,7,["G2611"]],[7,8,["G846"]],[8,9,["G5134"]],[9,11,["G2022"]],[11,12,["G1637"]],[12,13,["G2532"]],[13,14,["G3631"]],[14,15,["G1161"]],[15,16,["G1913"]],[16,17,["G846"]],[17,18,["G1909"]],[18,20,["G2398"]],[20,21,["G2934"]],[21,23,["G71"]],[23,24,["G846"]],[24,25,["G1519"]],[25,27,["G3829"]],[27,28,["G2532"]],[28,30,["G1959"]],[30,32,["G846"]]]},{"k":25398,"v":[[0,1,["G2532"]],[1,2,["G1909"]],[2,3,["G3588"]],[3,4,["G839"]],[4,7,["G1831"]],[7,10,["G1544"]],[10,11,["G1417"]],[11,12,["G1220"]],[12,14,["G1325"]],[14,17,["G3588"]],[17,18,["G3830"]],[18,19,["G2532"]],[19,20,["G2036"]],[20,22,["G846"]],[22,24,["G1959"]],[24,26,["G846"]],[26,27,["G2532"]],[27,28,["G3748","G302"]],[28,31,["G4325"]],[31,33,["G3165"]],[33,35,["G1880"]],[35,36,["G1473"]],[36,38,["G591"]],[38,39,["G4671"]]]},{"k":25399,"v":[[0,1,["G5101"]],[1,2,["G3767"]],[2,4,["G5130"]],[4,5,["G5140"]],[5,6,["G1380"]],[6,7,["G4671"]],[7,8,["G1096"]],[8,9,["G4139"]],[9,13,["G1706"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G3027"]]]},{"k":25400,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,6,["G4160"]],[6,7,["G1656"]],[7,8,["G3326"]],[8,9,["G846"]],[9,10,["G3767"]],[10,11,["G2036"]],[11,12,["G2424"]],[12,14,["G846"]],[14,15,["G4198"]],[15,16,["G2532"]],[16,17,["G4160"]],[17,18,["G4771"]],[18,19,["G3668"]]]},{"k":25401,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,7,["G846"]],[7,8,["G4198"]],[8,9,["(G2532)"]],[9,10,["G846"]],[10,11,["G1525"]],[11,12,["G1519"]],[12,14,["G5100"]],[14,15,["G2968"]],[15,16,["G1161"]],[16,18,["G5100"]],[18,19,["G1135"]],[19,20,["G3686"]],[20,21,["G3136"]],[21,22,["G5264"]],[22,23,["G846"]],[23,24,["G1519"]],[24,25,["G848"]],[25,26,["G3624"]]]},{"k":25402,"v":[[0,1,["G2532"]],[1,2,["G3592"]],[2,3,["G2258"]],[3,5,["G79"]],[5,6,["G2564"]],[6,7,["G3137"]],[7,8,["G3739"]],[8,9,["G2532"]],[9,10,["G3869"]],[10,11,["G3844"]],[11,12,["G2424"]],[12,13,["G4228"]],[13,15,["G191"]],[15,16,["G846"]],[16,17,["G3056"]]]},{"k":25403,"v":[[0,1,["G1161"]],[1,2,["G3136"]],[2,4,["G4049"]],[4,5,["G4012"]],[5,6,["G4183"]],[6,7,["G1248"]],[7,8,["G1161"]],[8,9,["G2186"]],[9,13,["G2036"]],[13,14,["G2962"]],[14,18,["G3199","G3756","G4671"]],[18,19,["G3754"]],[19,20,["G3450"]],[20,21,["G79"]],[21,23,["G2641"]],[23,24,["G3165"]],[24,26,["G1247"]],[26,27,["G3440"]],[27,28,["G2036"]],[28,29,["G846"]],[29,30,["G3767"]],[30,31,["G2443"]],[31,33,["G4878"]],[33,34,["G3427"]]]},{"k":25404,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,8,["G3136"]],[8,9,["G3136"]],[9,12,["G3309"]],[12,13,["G2532"]],[13,14,["G5182"]],[14,15,["G4012"]],[15,17,["G4183"]]]},{"k":25405,"v":[[0,1,["G1161"]],[1,3,["G1520"]],[3,4,["G2076"]],[4,5,["G5532"]],[5,6,["G1161"]],[6,7,["G3137"]],[7,9,["G1586"]],[9,11,["G18"]],[11,12,["G3310"]],[12,13,["G3748"]],[13,15,["G3756"]],[15,18,["G851"]],[18,19,["G575"]],[19,20,["G846"]]]},{"k":25406,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,8,["G846"]],[8,9,["G1511"]],[9,10,["G4336"]],[10,11,["G1722"]],[11,13,["G5100"]],[13,14,["G5117"]],[14,15,["G5613"]],[15,17,["G3973"]],[17,18,["G5100"]],[18,20,["G846"]],[20,21,["G3101"]],[21,22,["G2036"]],[22,23,["G4314"]],[23,24,["G846"]],[24,25,["G2962"]],[25,26,["G1321"]],[26,27,["G2248"]],[27,29,["G4336"]],[29,30,["G2531"]],[30,31,["G2491"]],[31,32,["G2532"]],[32,33,["G1321"]],[33,34,["G848"]],[34,35,["G3101"]]]},{"k":25407,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G3752"]],[6,8,["G4336"]],[8,9,["G3004"]],[9,10,["G2257"]],[10,11,["G3962"]],[11,12,["G3588"]],[12,14,["G1722"]],[14,15,["G3772"]],[15,16,["G37"]],[16,18,["G4675"]],[18,19,["G3686"]],[19,20,["G4675"]],[20,21,["G932"]],[21,22,["G2064"]],[22,23,["G4675"]],[23,24,["G2307"]],[24,26,["G1096"]],[26,27,["G5613"]],[27,28,["G1722"]],[28,29,["G3772"]],[29,30,["G2532"]],[30,31,["G1909"]],[31,32,["G1093"]]]},{"k":25408,"v":[[0,1,["G1325"]],[1,2,["G2254"]],[2,5,["G2596","G2250"]],[5,6,["G2257"]],[6,7,["G1967"]],[7,8,["G740"]]]},{"k":25409,"v":[[0,1,["G2532"]],[1,2,["G863"]],[2,3,["G2254"]],[3,4,["G2257"]],[4,5,["G266"]],[5,6,["G1063"]],[6,7,["G846"]],[7,8,["G2532"]],[8,9,["G863"]],[9,11,["G3956"]],[11,14,["G3784"]],[14,16,["G2254"]],[16,17,["G2532"]],[17,18,["G1533"]],[18,19,["G2248"]],[19,20,["G3361"]],[20,21,["G1519"]],[21,22,["G3986"]],[22,23,["G235"]],[23,24,["G4506"]],[24,25,["G2248"]],[25,26,["G575"]],[26,27,["G4190"]]]},{"k":25410,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G5101"]],[6,7,["G1537"]],[7,8,["G5216"]],[8,10,["G2192"]],[10,12,["G5384"]],[12,13,["G2532"]],[13,15,["G4198"]],[15,16,["G4314"]],[16,17,["G846"]],[17,19,["G3317"]],[19,20,["G2532"]],[20,21,["G2036"]],[21,23,["G846"]],[23,24,["G5384"]],[24,25,["G5531"]],[25,26,["G3427"]],[26,27,["G5140"]],[27,28,["G740"]]]},{"k":25411,"v":[[0,1,["G1894"]],[1,3,["G5384"]],[3,5,["G3450"]],[5,6,["G1537"]],[6,8,["G3598"]],[8,10,["G3854"]],[10,11,["G4314"]],[11,12,["G3165"]],[12,13,["G2532"]],[13,15,["G2192"]],[15,16,["G3756"]],[16,17,["(G3739)"]],[17,19,["G3908"]],[19,20,["G846"]]]},{"k":25412,"v":[[0,2,["G2548"]],[2,4,["G2081"]],[4,6,["G611"]],[6,8,["G2036"]],[8,11,["G3930","G3427","G3361","G2873"]],[11,12,["G3588"]],[12,13,["G2374"]],[13,15,["G2235"]],[15,16,["G2808"]],[16,17,["G2532"]],[17,18,["G3450"]],[18,19,["G3813"]],[19,20,["G1526"]],[20,21,["G3326"]],[21,22,["G1700"]],[22,23,["G1519"]],[23,24,["G2845"]],[24,26,["G1410","G3756"]],[26,27,["G450"]],[27,29,["G1325"]],[29,30,["G4671"]]]},{"k":25413,"v":[[0,2,["G3004"]],[2,4,["G5213"]],[4,5,["G1499"]],[5,8,["G3756"]],[8,9,["G450"]],[9,11,["G1325"]],[11,12,["G846"]],[12,15,["G1511"]],[15,16,["G846"]],[16,17,["G5384"]],[17,18,["G1065"]],[18,19,["G1223"]],[19,21,["G846"]],[21,22,["G335"]],[22,25,["G1453"]],[25,27,["G1325"]],[27,28,["G846"]],[28,31,["G3745"]],[31,33,["G5535"]]]},{"k":25414,"v":[[0,2,["G2504"]],[2,3,["G3004"]],[3,5,["G5213"]],[5,6,["G154"]],[6,7,["G2532"]],[7,11,["G1325"]],[11,12,["G5213"]],[12,13,["G2212"]],[13,14,["G2532"]],[14,17,["G2147"]],[17,18,["G2925"]],[18,19,["G2532"]],[19,23,["G455"]],[23,25,["G5213"]]]},{"k":25415,"v":[[0,1,["G1063"]],[1,3,["G3956"]],[3,5,["G154"]],[5,6,["G2983"]],[6,7,["G2532"]],[7,10,["G2212"]],[10,11,["G2147"]],[11,12,["G2532"]],[12,16,["G2925"]],[16,20,["G455"]]]},{"k":25416,"v":[[0,1,["(G1161)"]],[1,3,["G5207"]],[3,5,["G154"]],[5,6,["G740"]],[6,8,["G5101"]],[8,10,["G5216"]],[10,14,["G3962"]],[14,16,["(G3361)"]],[16,17,["G1929"]],[17,18,["G846"]],[18,20,["G3037"]],[20,21,["G2532"]],[21,22,["G1487"]],[22,26,["G2486"]],[26,27,["(G3361)"]],[27,29,["G473"]],[29,31,["G2486"]],[31,32,["G1929"]],[32,33,["G846"]],[33,35,["G3789"]]]},{"k":25417,"v":[[0,1,["G2228","(G2532)"]],[1,2,["G1437"]],[2,5,["G154"]],[5,7,["G5609"]],[7,9,["(G3361)"]],[9,10,["G1929"]],[10,11,["G846"]],[11,13,["G4651"]]]},{"k":25418,"v":[[0,1,["G1487"]],[1,2,["G5210"]],[2,3,["G3767"]],[3,4,["G5225"]],[4,5,["G4190"]],[5,6,["G1492"]],[6,9,["G1325"]],[9,10,["G18"]],[10,11,["G1390"]],[11,13,["G5216"]],[13,14,["G5043"]],[14,16,["G4214"]],[16,17,["G3123"]],[17,20,["G1537","G3772"]],[20,21,["G3962"]],[21,22,["G1325"]],[22,24,["G40"]],[24,25,["G4151"]],[25,29,["G154"]],[29,30,["G846"]]]},{"k":25419,"v":[[0,1,["G2532"]],[1,3,["G2258"]],[3,5,["G1544"]],[5,7,["G1140"]],[7,8,["G2532"]],[8,9,["G846"]],[9,10,["G2258"]],[10,11,["G2974"]],[11,12,["G1161"]],[12,16,["G1096"]],[16,18,["G3588"]],[18,19,["G1140"]],[19,22,["G1831"]],[22,23,["G3588"]],[23,24,["G2974"]],[24,25,["G2980"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G3793"]],[28,29,["G2296"]]]},{"k":25420,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G1537"]],[3,4,["G846"]],[4,5,["G2036"]],[5,8,["G1544"]],[8,9,["G1140"]],[9,10,["G1722"]],[10,11,["G954"]],[11,13,["G758"]],[13,15,["G3588"]],[15,16,["G1140"]]]},{"k":25421,"v":[[0,1,["G1161"]],[1,2,["G2087"]],[2,3,["G3985"]],[3,5,["G2212"]],[5,6,["G3844"]],[6,7,["G846"]],[7,9,["G4592"]],[9,10,["G1537"]],[10,11,["G3772"]]]},{"k":25422,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G1492"]],[3,4,["G846"]],[4,5,["G1270"]],[5,6,["G2036"]],[6,8,["G846"]],[8,9,["G3956"]],[9,10,["G932"]],[10,11,["G1266"]],[11,12,["G1909"]],[12,13,["G1438"]],[13,17,["G2049"]],[17,18,["G2532"]],[18,20,["G3624"]],[20,22,["G1909"]],[22,24,["G3624"]],[24,25,["G4098"]]]},{"k":25423,"v":[[0,0,["(G1161)"]],[0,1,["G1487"]],[1,2,["G4567"]],[2,3,["G2532"]],[3,5,["G1266"]],[5,6,["G1909"]],[6,7,["G1438"]],[7,8,["G4459"]],[8,10,["G846"]],[10,11,["G932"]],[11,12,["G2476"]],[12,13,["G3754"]],[13,15,["G3004"]],[15,17,["G3165"]],[17,19,["G1544"]],[19,20,["G1140"]],[20,21,["G1722"]],[21,22,["G954"]]]},{"k":25424,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G1473"]],[3,4,["G1722"]],[4,5,["G954"]],[5,7,["G1544"]],[7,8,["G1140"]],[8,9,["G1722"]],[9,10,["G5101"]],[10,12,["G5216"]],[12,13,["G5207"]],[13,16,["G1544"]],[16,17,["G1223","G5124"]],[17,19,["G846"]],[19,20,["G2071"]],[20,21,["G5216"]],[21,22,["G2923"]]]},{"k":25425,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G1722"]],[4,6,["G1147"]],[6,8,["G2316"]],[8,10,["G1544"]],[10,11,["G1140"]],[11,13,["G686"]],[13,14,["G3588"]],[14,15,["G932"]],[15,17,["G2316"]],[17,19,["G5348"]],[19,20,["G1909"]],[20,21,["G5209"]]]},{"k":25426,"v":[[0,1,["G3752"]],[1,4,["G2478"]],[4,5,["G2528"]],[5,6,["G5442"]],[6,7,["G1438"]],[7,8,["G833"]],[8,9,["G846"]],[9,10,["G5224"]],[10,11,["G2076"]],[11,12,["G1722"]],[12,13,["G1515"]]]},{"k":25427,"v":[[0,1,["G1161"]],[1,2,["G1875"]],[2,4,["G2478"]],[4,6,["G846"]],[6,9,["G1904"]],[9,12,["G3528"]],[12,13,["G846"]],[13,15,["G142"]],[15,20,["G3833","G846"]],[20,21,["G1909","G3739"]],[21,23,["G3982"]],[23,24,["G2532"]],[24,25,["G1239"]],[25,26,["G846"]],[26,27,["G4661"]]]},{"k":25428,"v":[[0,3,["G5607"]],[3,4,["G3361"]],[4,5,["G3326"]],[5,6,["G1700"]],[6,7,["G2076"]],[7,8,["G2596"]],[8,9,["G1700"]],[9,10,["G2532"]],[10,13,["G4863"]],[13,14,["G3361"]],[14,15,["G3326"]],[15,16,["G1700"]],[16,17,["G4650"]]]},{"k":25429,"v":[[0,1,["G3752"]],[1,2,["G3588"]],[2,3,["G169"]],[3,4,["G4151"]],[4,6,["G1831"]],[6,8,["G575"]],[8,10,["G444"]],[10,12,["G1330"]],[12,13,["G1223"]],[13,14,["G504"]],[14,15,["G5117"]],[15,16,["G2212"]],[16,17,["G372"]],[17,18,["G2532"]],[18,19,["G2147"]],[19,20,["G3361"]],[20,22,["G3004"]],[22,25,["G5290"]],[25,26,["G1519"]],[26,27,["G3450"]],[27,28,["G3624"]],[28,29,["G3606"]],[29,32,["G1831"]]]},{"k":25430,"v":[[0,1,["G2532"]],[1,4,["G2064"]],[4,6,["G2147"]],[6,8,["G4563"]],[8,9,["G2532"]],[9,10,["G2885"]]]},{"k":25431,"v":[[0,1,["G5119"]],[1,2,["G4198"]],[2,4,["G2532"]],[4,5,["G3880"]],[5,8,["G2033"]],[8,9,["G2087"]],[9,10,["G4151"]],[10,12,["G4191"]],[12,14,["G1438"]],[14,15,["G2532"]],[15,18,["G1525"]],[18,19,["G2532"]],[19,20,["G2730"]],[20,21,["G1563"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G2078"]],[24,27,["G1565"]],[27,28,["G444"]],[28,29,["G1096"]],[29,30,["G5501"]],[30,32,["G3588"]],[32,33,["G4413"]]]},{"k":25432,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,7,["G846"]],[7,8,["G3004"]],[8,10,["G5023"]],[10,12,["G5100"]],[12,13,["G1135"]],[13,14,["G1537"]],[14,15,["G3588"]],[15,16,["G3793"]],[16,18,["G1869"]],[18,20,["G5456"]],[20,22,["G2036"]],[22,24,["G846"]],[24,25,["G3107"]],[25,27,["G3588"]],[27,28,["G2836"]],[28,30,["G941"]],[30,31,["G4571"]],[31,32,["G2532"]],[32,34,["G3149"]],[34,35,["G3739"]],[35,38,["G2337"]]]},{"k":25433,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G2036"]],[3,5,["G3304"]],[5,6,["G3107"]],[6,10,["G191"]],[10,11,["G3588"]],[11,12,["G3056"]],[12,14,["G2316"]],[14,15,["G2532"]],[15,16,["G5442"]],[16,17,["G846"]]]},{"k":25434,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G3793"]],[4,8,["G1865"]],[8,10,["G756"]],[10,12,["G3004"]],[12,13,["G3778"]],[13,14,["G2076"]],[14,16,["G4190"]],[16,17,["G1074"]],[17,19,["G1934"]],[19,21,["G4592"]],[21,22,["G2532"]],[22,25,["G3756"]],[25,26,["G4592"]],[26,28,["G1325"]],[28,29,["G846"]],[29,30,["G1508"]],[30,31,["G3588"]],[31,32,["G4592"]],[32,34,["G2495"]],[34,35,["G3588"]],[35,36,["G4396"]]]},{"k":25435,"v":[[0,1,["G1063"]],[1,2,["G2531"]],[2,3,["G2495"]],[3,4,["G1096"]],[4,6,["G4592"]],[6,8,["G444"]],[8,9,["G3536"]],[9,10,["G3779"]],[10,12,["G2532"]],[12,13,["G3588"]],[13,14,["G5207"]],[14,16,["G444"]],[16,17,["G2071"]],[17,19,["G5026"]],[19,20,["G1074"]]]},{"k":25436,"v":[[0,2,["G938"]],[2,5,["G3558"]],[5,8,["G1453"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2920"]],[11,12,["G3326"]],[12,13,["G3588"]],[13,14,["G435"]],[14,16,["G5026"]],[16,17,["G1074"]],[17,18,["G2532"]],[18,19,["G2632"]],[19,20,["G846"]],[20,21,["G3754"]],[21,23,["G2064"]],[23,24,["G1537"]],[24,25,["G3588"]],[25,27,["G4009"]],[27,29,["G3588"]],[29,30,["G1093"]],[30,32,["G191"]],[32,33,["G3588"]],[33,34,["G4678"]],[34,36,["G4672"]],[36,37,["G2532"]],[37,38,["G2400"]],[38,40,["G4119"]],[40,42,["G4672"]],[42,44,["G5602"]]]},{"k":25437,"v":[[0,2,["G435"]],[2,4,["G3535"]],[4,7,["G450"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G2920"]],[10,11,["G3326"]],[11,12,["G5026"]],[12,13,["G1074"]],[13,14,["G2532"]],[14,16,["G2632"]],[16,17,["G846"]],[17,18,["G3754"]],[18,20,["G3340"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G2782"]],[23,25,["G2495"]],[25,26,["G2532"]],[26,27,["G2400"]],[27,29,["G4119"]],[29,31,["G2495"]],[31,33,["G5602"]]]},{"k":25438,"v":[[0,2,["G3762"]],[2,6,["G681"]],[6,8,["G3088"]],[8,9,["G5087"]],[9,11,["G1519"]],[11,14,["G2927"]],[14,15,["G3761"]],[15,16,["G5259"]],[16,18,["G3426"]],[18,19,["G235"]],[19,20,["G1909"]],[20,22,["G3087"]],[22,23,["G2443"]],[23,27,["G1531"]],[27,29,["G991"]],[29,30,["G3588"]],[30,31,["G5338"]]]},{"k":25439,"v":[[0,1,["G3588"]],[1,2,["G3088"]],[2,4,["G3588"]],[4,5,["G4983"]],[5,6,["G2076"]],[6,7,["G3588"]],[7,8,["G3788"]],[8,9,["G3767"]],[9,10,["G3752"]],[10,11,["G4675"]],[11,12,["G3788"]],[12,13,["G5600"]],[13,14,["G573"]],[14,15,["G4675"]],[15,16,["G3650"]],[16,17,["G4983"]],[17,18,["G2532"]],[18,19,["G2076"]],[19,22,["G5460"]],[22,23,["G1161"]],[23,24,["G1875"]],[24,27,["G5600"]],[27,28,["G4190"]],[28,29,["G4675"]],[29,30,["G4983"]],[30,31,["G2532"]],[31,35,["G4652"]]]},{"k":25440,"v":[[0,2,["G4648"]],[2,3,["G3767"]],[3,5,["G3588"]],[5,6,["G5457"]],[6,7,["G3588"]],[7,9,["G1722"]],[9,10,["G4671"]],[10,11,["G2076"]],[11,12,["G3361"]],[12,13,["G4655"]]]},{"k":25441,"v":[[0,1,["G1487"]],[1,2,["G4675"]],[2,3,["G3650"]],[3,4,["G4983"]],[4,5,["G3767"]],[5,9,["G5460"]],[9,10,["G2192"]],[10,11,["G3361","G5100"]],[11,12,["G3313"]],[12,13,["G4652"]],[13,15,["G3650"]],[15,17,["G2071"]],[17,20,["G5460"]],[20,21,["G5613"]],[21,22,["G3752"]],[22,23,["G3588"]],[23,25,["G796"]],[25,28,["G3088"]],[28,32,["G5461","G4571"]]]},{"k":25442,"v":[[0,1,["G1161"]],[1,4,["G2980"]],[4,6,["G5100"]],[6,7,["G5330"]],[7,8,["G2065"]],[8,9,["G846"]],[9,10,["G3704"]],[10,11,["G709"]],[11,12,["G3844"]],[12,13,["G846"]],[13,14,["G1161"]],[14,16,["G1525"]],[16,22,["G377"]]]},{"k":25443,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G5330"]],[4,5,["G1492"]],[5,8,["G2296"]],[8,9,["G3754"]],[9,12,["G3756"]],[12,13,["G4412"]],[13,14,["G907"]],[14,15,["G4253"]],[15,16,["G712"]]]},{"k":25444,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G3568"]],[7,9,["G5210"]],[9,10,["G5330"]],[10,12,["G2511"]],[12,13,["G3588"]],[13,14,["G1855"]],[14,16,["G3588"]],[16,17,["G4221"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G4094"]],[20,21,["G1161"]],[21,22,["G5216"]],[22,24,["G2081"]],[24,26,["G1073"]],[26,28,["G724"]],[28,29,["G2532"]],[29,30,["G4189"]]]},{"k":25445,"v":[[0,2,["G878"]],[2,4,["G3756"]],[4,7,["G4160"]],[7,8,["G3588"]],[8,11,["G1855"]],[11,12,["G4160"]],[12,13,["G3588"]],[13,16,["G2081"]],[16,17,["G2532"]]]},{"k":25446,"v":[[0,1,["G4133"]],[1,3,["G1325"]],[3,4,["G1654"]],[4,10,["G1751"]],[10,11,["G2532"]],[11,12,["G2400"]],[12,14,["G3956"]],[14,15,["G2076"]],[15,16,["G2513"]],[16,18,["G5213"]]]},{"k":25447,"v":[[0,1,["G235"]],[1,2,["G3759"]],[2,4,["G5213"]],[4,5,["G5330"]],[5,6,["G3754"]],[6,8,["G586"]],[8,9,["G2238"]],[9,10,["G2532"]],[10,11,["G4076"]],[11,12,["G2532"]],[12,14,["G3956"]],[14,16,["G3001"]],[16,17,["G2532"]],[17,19,["G3928"]],[19,20,["G2920"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G26"]],[23,25,["G2316"]],[25,26,["G5023"]],[26,27,["G1163"]],[27,31,["G4160"]],[31,38,["G2548","G3361","G863"]]]},{"k":25448,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G5330"]],[4,5,["G3754"]],[5,7,["G25"]],[7,8,["G3588"]],[8,10,["G4410"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G4864"]],[13,14,["G2532"]],[14,15,["G783"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G58"]]]},{"k":25449,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G1122"]],[4,5,["G2532"]],[5,6,["G5330"]],[6,7,["G5273"]],[7,8,["G3754"]],[8,10,["G2075"]],[10,11,["G5613"]],[11,12,["G3419"]],[12,15,["G82"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G444"]],[18,20,["G4043"]],[20,21,["G1883"]],[21,25,["G1492","G3756"]],[25,27,[]]]},{"k":25450,"v":[[0,1,["G1161"]],[1,2,["G611"]],[2,3,["G5100"]],[3,5,["G3588"]],[5,6,["G3544"]],[6,8,["G3004"]],[8,10,["G846"]],[10,11,["G1320"]],[11,12,["G5023"]],[12,13,["G3004"]],[13,15,["G5195"]],[15,16,["G2248"]],[16,17,["G2532"]]]},{"k":25451,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G3759"]],[4,6,["G5213"]],[6,7,["G2532"]],[7,9,["G3544"]],[9,10,["G3754"]],[10,12,["G5412"]],[12,13,["G444"]],[13,15,["G5413"]],[15,19,["G1419"]],[19,20,["G2532"]],[20,22,["G846"]],[22,23,["G4379"]],[23,24,["G3756"]],[24,25,["G3588"]],[25,26,["G5413"]],[26,28,["G1520"]],[28,30,["G5216"]],[30,31,["G1147"]]]},{"k":25452,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G3754"]],[4,6,["G3618"]],[6,7,["G3588"]],[7,8,["G3419"]],[8,10,["G3588"]],[10,11,["G4396"]],[11,12,["G1161"]],[12,13,["G5216"]],[13,14,["G3962"]],[14,15,["G615"]],[15,16,["G846"]]]},{"k":25453,"v":[[0,1,["G686"]],[1,4,["G3140"]],[4,5,["G2532"]],[5,7,["G4909"]],[7,8,["G3588"]],[8,9,["G2041"]],[9,11,["G5216"]],[11,12,["G3962"]],[12,13,["G3754"]],[13,14,["G846"]],[14,15,["G3303"]],[15,16,["G615"]],[16,17,["G846"]],[17,18,["G1161"]],[18,19,["G5210"]],[19,20,["G3618"]],[20,21,["G846"]],[21,22,["G3419"]]]},{"k":25454,"v":[[0,1,["G1223","G5124"]],[1,2,["G2532"]],[2,3,["G2036"]],[3,4,["G3588"]],[4,5,["G4678"]],[5,7,["G2316"]],[7,10,["G649","(G1519)"]],[10,11,["G846"]],[11,12,["G4396"]],[12,13,["G2532"]],[13,14,["G652"]],[14,15,["G2532"]],[15,17,["G1537"]],[17,18,["G846"]],[18,21,["G615"]],[21,22,["G2532"]],[22,23,["G1559"]]]},{"k":25455,"v":[[0,1,["G2443"]],[1,2,["G3588"]],[2,3,["G129"]],[3,5,["G3956"]],[5,6,["G3588"]],[6,7,["G4396"]],[7,10,["G1632"]],[10,11,["G575"]],[11,13,["G2602"]],[13,16,["G2889"]],[16,19,["G1567"]],[19,20,["G575"]],[20,21,["G5026"]],[21,22,["G1074"]]]},{"k":25456,"v":[[0,1,["G575"]],[1,2,["G3588"]],[2,3,["G129"]],[3,5,["G6"]],[5,6,["G2193"]],[6,7,["G3588"]],[7,8,["G129"]],[8,10,["G2197"]],[10,12,["G622"]],[12,13,["G3342"]],[13,14,["G3588"]],[14,15,["G2379"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G3624"]],[18,19,["G3483"]],[19,21,["G3004"]],[21,23,["G5213"]],[23,27,["G1567"]],[27,28,["G575"]],[28,29,["G5026"]],[29,30,["G1074"]]]},{"k":25457,"v":[[0,1,["G3759"]],[1,3,["G5213"]],[3,4,["G3544"]],[4,5,["G3754"]],[5,9,["G142"]],[9,10,["G3588"]],[10,11,["G2807"]],[11,13,["G1108"]],[13,17,["G1525","G3756"]],[17,18,["G846"]],[18,19,["G2532"]],[19,24,["G1525"]],[24,26,["G2967"]]]},{"k":25458,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G3004"]],[4,6,["G5023"]],[6,7,["G4314"]],[7,8,["G846"]],[8,9,["G3588"]],[9,10,["G1122"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G5330"]],[13,14,["G756"]],[14,16,["G1758"]],[16,18,["G1171"]],[18,19,["G2532"]],[19,24,["G653","G846"]],[24,25,["G4012"]],[25,27,["G4119"]]]},{"k":25459,"v":[[0,2,["G1748"]],[2,4,["G846"]],[4,5,["G2532"]],[5,6,["G2212"]],[6,8,["G2340"]],[8,9,["G5100"]],[9,11,["G1537"]],[11,12,["G846"]],[12,13,["G4750"]],[13,14,["G2443"]],[14,17,["G2723"]],[17,18,["G846"]]]},{"k":25460,"v":[[0,4,["G1722","G3739"]],[4,9,["G1996"]],[9,12,["G3461"]],[12,14,["G3793"]],[14,16,["G5620"]],[16,18,["G2662"]],[18,21,["G240"]],[21,23,["G756"]],[23,25,["G3004"]],[25,26,["G4314"]],[26,27,["G848"]],[27,28,["G3101"]],[28,31,["G4412"]],[31,32,["G4337"]],[32,33,["G1438"]],[33,34,["G575"]],[34,35,["G3588"]],[35,36,["G2219"]],[36,38,["G3588"]],[38,39,["G5330"]],[39,40,["G3748"]],[40,41,["G2076"]],[41,42,["G5272"]]]},{"k":25461,"v":[[0,1,["G1161"]],[1,3,["G2076"]],[3,4,["G3762"]],[4,5,["G4780"]],[5,6,["G3739"]],[6,8,["G3756"]],[8,10,["G601"]],[10,11,["G2532"]],[11,12,["G2927"]],[12,13,["G3739"]],[13,15,["G3756"]],[15,17,["G1097"]]]},{"k":25462,"v":[[0,1,["G473","G3739"]],[1,2,["G3745"]],[2,5,["G2036"]],[5,6,["G1722"]],[6,7,["G4653"]],[7,10,["G191"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G5457"]],[13,14,["G2532"]],[14,16,["G3739"]],[16,19,["G2980"]],[19,20,["G4314"]],[20,21,["G3588"]],[21,22,["G3775"]],[22,23,["G1722"]],[23,24,["G5009"]],[24,27,["G2784"]],[27,28,["G1909"]],[28,29,["G3588"]],[29,30,["G1430"]]]},{"k":25463,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3450"]],[6,7,["G5384"]],[7,10,["G5399","G3361"]],[10,11,["G575"]],[11,14,["G615"]],[14,15,["G3588"]],[15,16,["G4983"]],[16,17,["G2532"]],[17,18,["G3326"]],[18,19,["G5023"]],[19,20,["G2192"]],[20,21,["G3361"]],[21,22,["G5100","G4055"]],[22,26,["G4160"]]]},{"k":25464,"v":[[0,1,["G1161"]],[1,4,["G5263"]],[4,5,["G5213"]],[5,6,["G5101"]],[6,9,["G5399"]],[9,10,["G5399"]],[10,16,["G615"]],[16,17,["G2192"]],[17,18,["G1849"]],[18,20,["G1685"]],[20,21,["G1519"]],[21,22,["G1067"]],[22,23,["G3483"]],[23,25,["G3004"]],[25,27,["G5213"]],[27,28,["G5399"]],[28,29,["G5126"]]]},{"k":25465,"v":[[0,2,["G3780"]],[2,3,["G4002"]],[3,4,["G4765"]],[4,5,["G4453"]],[5,7,["G1417"]],[7,8,["G787"]],[8,9,["G2532"]],[9,10,["G3756"]],[10,11,["G1520"]],[11,12,["G1537"]],[12,13,["G846"]],[13,14,["G2076"]],[14,15,["G1950"]],[15,16,["G1799"]],[16,17,["G2316"]]]},{"k":25466,"v":[[0,1,["G235"]],[1,2,["G2532"]],[2,3,["G3588"]],[3,5,["G2359"]],[5,7,["G5216"]],[7,8,["G2776"]],[8,10,["G3956"]],[10,11,["G705"]],[11,12,["G5399"]],[12,13,["G3361"]],[13,14,["G3767"]],[14,19,["G1308"]],[19,21,["G4183"]],[21,22,["G4765"]]]},{"k":25467,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3956","G3739","G302"]],[6,8,["G3670"]],[8,9,["G1698"]],[9,10,["G1715"]],[10,11,["G444","(G1722)"]],[11,12,["G846"]],[12,14,["G3588"]],[14,15,["G5207"]],[15,17,["G444"]],[17,18,["G2532"]],[18,19,["G3670"]],[19,20,["G1715"]],[20,21,["G3588"]],[21,22,["G32"]],[22,24,["G2316"]]]},{"k":25468,"v":[[0,1,["G1161"]],[1,4,["G720"]],[4,5,["G3165"]],[5,6,["G1799"]],[6,7,["G444"]],[7,10,["G533"]],[10,11,["G1799"]],[11,12,["G3588"]],[12,13,["G32"]],[13,15,["G2316"]]]},{"k":25469,"v":[[0,1,["G2532"]],[1,2,["G3956","G3739"]],[2,4,["G2046"]],[4,6,["G3056"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G5207"]],[9,11,["G444"]],[11,15,["G863"]],[15,16,["G846"]],[16,17,["G1161"]],[17,21,["G987"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G40"]],[24,25,["G4151"]],[25,28,["G3756"]],[28,30,["G863"]]]},{"k":25470,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,4,["G4374"]],[4,5,["G5209"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G4864"]],[8,9,["G2532"]],[9,11,["G746"]],[11,12,["G2532"]],[12,13,["G1849"]],[13,17,["G3309","G3361"]],[17,18,["G4459"]],[18,19,["G2228"]],[19,21,["G5101"]],[21,24,["G626"]],[24,25,["G2228"]],[25,26,["G5101"]],[26,29,["G2036"]]]},{"k":25471,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G40"]],[3,4,["G4151"]],[4,6,["G1321"]],[6,7,["G5209"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G846"]],[10,11,["G5610"]],[11,12,["G3739"]],[12,14,["G1163"]],[14,16,["G2036"]]]},{"k":25472,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G3793"]],[5,6,["G2036"]],[6,8,["G846"]],[8,9,["G1320"]],[9,10,["G2036"]],[10,12,["G3450"]],[12,13,["G80"]],[13,16,["G3307"]],[16,17,["G3588"]],[17,18,["G2817"]],[18,19,["G3326"]],[19,20,["G1700"]]]},{"k":25473,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G444"]],[6,7,["G5101"]],[7,8,["G2525"]],[8,9,["G3165"]],[9,11,["G1348"]],[11,12,["G2228"]],[12,14,["G3312"]],[14,15,["G1909"]],[15,16,["G5209"]]]},{"k":25474,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,7,["G3708"]],[7,8,["G2532"]],[8,9,["G5442"]],[9,10,["G575"]],[10,11,["G4124"]],[11,12,["G3754"]],[12,14,["G5100"]],[14,15,["G2222"]],[15,16,["G2076"]],[16,17,["G3756"]],[17,20,["G4052"]],[20,21,["G1537"]],[21,26,["G5224","G846"]]]},{"k":25475,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G3850"]],[5,6,["G4314"]],[6,7,["G846"]],[7,8,["G3004"]],[8,9,["G3588"]],[9,10,["G5561"]],[10,13,["G5100"]],[13,14,["G4145"]],[14,15,["G444"]],[15,18,["G2164"]]]},{"k":25476,"v":[[0,1,["G2532"]],[1,3,["G1260"]],[3,4,["G1722"]],[4,5,["G1438"]],[5,6,["G3004"]],[6,7,["G5101"]],[7,10,["G4160"]],[10,11,["G3754"]],[11,13,["G2192"]],[13,14,["G3756"]],[14,16,["G4226"]],[16,18,["G4863"]],[18,19,["G3450"]],[19,20,["G2590"]]]},{"k":25477,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,4,["G5124"]],[4,7,["G4160"]],[7,11,["G2507"]],[11,12,["G3450"]],[12,13,["G596"]],[13,14,["G2532"]],[14,15,["G3618"]],[15,16,["G3187"]],[16,17,["G2532"]],[17,18,["G1563"]],[18,21,["G4863"]],[21,22,["G3956"]],[22,23,["G3450"]],[23,24,["G1081"]],[24,25,["G2532"]],[25,26,["G3450"]],[26,27,["G18"]]]},{"k":25478,"v":[[0,1,["G2532"]],[1,4,["G2046"]],[4,6,["G3450"]],[6,7,["G5590"]],[7,8,["G5590"]],[8,10,["G2192"]],[10,11,["G4183"]],[11,12,["G18"]],[12,14,["G2749"]],[14,15,["G1519"]],[15,16,["G4183"]],[16,17,["G2094"]],[17,20,["G373"]],[20,21,["G5315"]],[21,22,["G4095"]],[22,25,["G2165"]]]},{"k":25479,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,3,["G2036"]],[3,5,["G846"]],[5,7,["G878"]],[7,8,["G5026"]],[8,9,["G3571"]],[9,10,["G4675"]],[10,11,["G5590"]],[11,14,["G523"]],[14,15,["G575"]],[15,16,["G4675"]],[16,17,["G1161"]],[17,18,["G5101"]],[18,21,["G3739"]],[21,22,["G2071"]],[22,26,["G2090"]]]},{"k":25480,"v":[[0,1,["G3779"]],[1,3,["G3588"]],[3,7,["G2343"]],[7,9,["G1438"]],[9,10,["G2532"]],[10,13,["G4147","G3361"]],[13,14,["G1519"]],[14,15,["G2316"]]]},{"k":25481,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G848"]],[5,6,["G3101"]],[6,7,["G1223","G5124"]],[7,9,["G3004"]],[9,11,["G5213"]],[11,14,["G3309","G3361"]],[14,16,["G5216"]],[16,17,["G5590"]],[17,18,["G5101"]],[18,21,["G5315"]],[21,22,["G3366"]],[22,24,["G3588"]],[24,25,["G4983"]],[25,26,["G5101"]],[26,30,["G1746"]]]},{"k":25482,"v":[[0,1,["G3588"]],[1,2,["G5590"]],[2,3,["G2076"]],[3,4,["G4119"]],[4,6,["G5160"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G4983"]],[9,13,["G1742"]]]},{"k":25483,"v":[[0,1,["G2657"]],[1,2,["G3588"]],[2,3,["G2876"]],[3,4,["G3754"]],[4,6,["G3756"]],[6,7,["G4687"]],[7,8,["G3761"]],[8,9,["G2325"]],[9,10,["G3739"]],[10,11,["G3756"]],[11,12,["G2076"]],[12,13,["G5009"]],[13,14,["G3761"]],[14,15,["G596"]],[15,16,["G2532"]],[16,17,["G2316"]],[17,18,["G5142"]],[18,19,["G846"]],[19,21,["G4214"]],[21,22,["G3123"]],[22,25,["G1308","G5210"]],[25,27,["G3588"]],[27,28,["G4071"]]]},{"k":25484,"v":[[0,1,["G1161"]],[1,2,["G5101"]],[2,3,["G1537"]],[3,4,["G5216"]],[4,7,["G3309"]],[7,8,["G1410"]],[8,9,["G4369"]],[9,10,["G1909"]],[10,11,["G848"]],[11,12,["G2244"]],[12,13,["G1520"]],[13,14,["G4083"]]]},{"k":25485,"v":[[0,1,["G1487"]],[1,3,["G3767"]],[3,6,["G1410","G3777"]],[6,13,["G1646"]],[13,14,["G5101"]],[14,17,["G3309"]],[17,18,["G4012"]],[18,19,["G3588"]],[19,20,["G3062"]]]},{"k":25486,"v":[[0,1,["G2657"]],[1,2,["G3588"]],[2,3,["G2918"]],[3,4,["G4459"]],[4,6,["G837"]],[6,8,["G2872"]],[8,9,["G3756"]],[9,11,["G3514"]],[11,12,["G3761"]],[12,13,["G1161"]],[13,16,["G3004"]],[16,18,["G5213"]],[18,20,["G4672"]],[20,21,["G1722"]],[21,22,["G3956"]],[22,23,["G848"]],[23,24,["G1391"]],[24,26,["G3761"]],[26,27,["G4016"]],[27,28,["G5613"]],[28,29,["G1520"]],[29,31,["G5130"]]]},{"k":25487,"v":[[0,0,["(G1161)"]],[0,1,["G1487"]],[1,3,["G2316"]],[3,4,["G3779"]],[4,5,["G294"]],[5,6,["G3588"]],[6,7,["G5528"]],[7,9,["G5607"]],[9,11,["G4594"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G68"]],[14,15,["G2532"]],[15,17,["G839"]],[17,19,["G906"]],[19,20,["G1519"]],[20,22,["G2823"]],[22,24,["G4214"]],[24,25,["G3123"]],[25,29,["G5209"]],[29,34,["G3640"]]]},{"k":25488,"v":[[0,1,["G2532"]],[1,2,["G2212"]],[2,3,["G3361"]],[3,4,["G5210"]],[4,5,["G5101"]],[5,8,["G5315"]],[8,9,["G2228"]],[9,10,["G5101"]],[10,13,["G4095"]],[13,14,["G2532","G3361"]],[14,19,["G3349"]]]},{"k":25489,"v":[[0,1,["G1063"]],[1,2,["G3956"]],[2,4,["G5023"]],[4,6,["G3588"]],[6,7,["G1484"]],[7,9,["G3588"]],[9,10,["G2889"]],[10,12,["G1934"]],[12,13,["G1161"]],[13,14,["G5216"]],[14,15,["G3962"]],[15,16,["G1492"]],[16,17,["G3754"]],[17,20,["G5535"]],[20,23,["G5130"]]]},{"k":25490,"v":[[0,1,["G4133"]],[1,3,["G2212"]],[3,5,["G3588"]],[5,6,["G932"]],[6,8,["G2316"]],[8,9,["G2532"]],[9,10,["G3956"]],[10,12,["G5023"]],[12,15,["G4369"]],[15,17,["G5213"]]]},{"k":25491,"v":[[0,1,["G5399"]],[1,2,["G3361"]],[2,3,["G3398"]],[3,4,["G4168"]],[4,5,["G3754"]],[5,11,["G2106","G5216","G3962"]],[11,13,["G1325"]],[13,14,["G5213"]],[14,15,["G3588"]],[15,16,["G932"]]]},{"k":25492,"v":[[0,1,["G4453"]],[1,4,["G5216","G5224"]],[4,5,["G2532"]],[5,6,["G1325"]],[6,7,["G1654"]],[7,8,["G4160"]],[8,9,["G1438"]],[9,10,["G905"]],[10,14,["G3822","G3361"]],[14,16,["G2344"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G3772"]],[19,22,["G413"]],[22,23,["G3699"]],[23,24,["G3756"]],[24,25,["G2812"]],[25,26,["G1448"]],[26,27,["G3761"]],[27,28,["G4597"]],[28,29,["G1311"]]]},{"k":25493,"v":[[0,1,["G1063"]],[1,2,["G3699"]],[2,3,["G5216"]],[3,4,["G2344"]],[4,5,["G2076"]],[5,6,["G1563"]],[6,8,["G5216"]],[8,9,["G2588"]],[9,10,["G2071"]],[10,11,["G2532"]]]},{"k":25494,"v":[[0,2,["G5216"]],[2,3,["G3751"]],[3,4,["G2077"]],[4,6,["G4024"]],[6,7,["G2532"]],[7,9,["G3088"]],[9,10,["G2545"]]]},{"k":25495,"v":[[0,1,["G2532"]],[1,3,["G5210"]],[3,5,["G3664"]],[5,6,["G444"]],[6,9,["G4327"]],[9,10,["G1438"]],[10,11,["G2962"]],[11,12,["G4219"]],[12,15,["G360"]],[15,16,["G1537"]],[16,17,["G3588"]],[17,18,["G1062"]],[18,19,["G2443"]],[19,22,["G2064"]],[22,23,["G2532"]],[23,24,["G2925"]],[24,27,["G455"]],[27,29,["G846"]],[29,30,["G2112"]]]},{"k":25496,"v":[[0,1,["G3107"]],[1,3,["G1565"]],[3,4,["G1401"]],[4,5,["G3739"]],[5,6,["G3588"]],[6,7,["G2962"]],[7,10,["G2064"]],[10,12,["G2147"]],[12,13,["G1127"]],[13,14,["G281"]],[14,16,["G3004"]],[16,18,["G5213"]],[18,19,["G3754"]],[19,22,["G4024"]],[22,24,["G2532"]],[24,26,["G846"]],[26,31,["G347"]],[31,32,["G2532"]],[32,35,["G3928"]],[35,37,["G1247"]],[37,38,["G846"]]]},{"k":25497,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,5,["G2064"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G1208"]],[8,9,["G5438"]],[9,10,["G2532"]],[10,11,["G2064"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G5154"]],[14,15,["G5438"]],[15,16,["G2532"]],[16,17,["G2147"]],[17,19,["G3779"]],[19,20,["G3107"]],[20,21,["G1526"]],[21,22,["G1565"]],[22,23,["G1401"]]]},{"k":25498,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,3,["G1097"]],[3,4,["G3754"]],[4,5,["G1487"]],[5,6,["G3588"]],[6,10,["G3617"]],[10,12,["G1492"]],[12,13,["G4169"]],[13,14,["G5610"]],[14,15,["G3588"]],[15,16,["G2812"]],[16,18,["G2064"]],[18,22,["G1127","G302"]],[22,23,["G2532"]],[23,24,["G3756"]],[24,26,["G863","G302"]],[26,27,["G848"]],[27,28,["G3624"]],[28,32,["G1358"]]]},{"k":25499,"v":[[0,1,["G1096"]],[1,2,["G5210"]],[2,3,["G3767"]],[3,4,["G2092"]],[4,5,["G2532"]],[5,6,["G3754"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G444"]],[10,11,["G2064"]],[11,12,["(G3739)"]],[12,14,["G5610"]],[14,17,["G1380"]],[17,18,["G3756"]]]},{"k":25500,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G2962"]],[6,7,["G3004"]],[7,9,["G5026"]],[9,10,["G3850"]],[10,11,["G4314"]],[11,12,["G2248"]],[12,13,["G2228"]],[13,14,["G2532"]],[14,15,["G4314"]],[15,16,["G3956"]]]},{"k":25501,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2036"]],[4,5,["G5101"]],[5,6,["G686"]],[6,7,["G2076"]],[7,9,["G4103"]],[9,10,["G2532"]],[10,11,["G5429"]],[11,12,["G3623"]],[12,13,["G3739"]],[13,15,["G2962"]],[15,18,["G2525"]],[18,19,["G1909"]],[19,20,["G848"]],[20,21,["G2322"]],[21,23,["G1325"]],[23,28,["G4620"]],[28,29,["G1722"]],[29,31,["G2540"]]]},{"k":25502,"v":[[0,1,["G3107"]],[1,3,["G1565"]],[3,4,["G1401"]],[4,5,["G3739"]],[5,6,["G846"]],[6,7,["G2962"]],[7,10,["G2064"]],[10,12,["G2147"]],[12,13,["G3779"]],[13,14,["G4160"]]]},{"k":25503,"v":[[0,3,["G230"]],[3,5,["G3004"]],[5,7,["G5213"]],[7,8,["G3754"]],[8,13,["G2525","G846"]],[13,14,["G1909"]],[14,15,["G3956"]],[15,18,["G5224","G848"]]]},{"k":25504,"v":[[0,1,["G1161"]],[1,3,["G1437"]],[3,4,["G1565"]],[4,5,["G1401"]],[5,6,["G2036"]],[6,7,["G1722"]],[7,8,["G848"]],[8,9,["G2588"]],[9,10,["G3450"]],[10,11,["G2962"]],[11,12,["G5549"]],[12,14,["G2064"]],[14,15,["G2532"]],[15,17,["G756"]],[17,19,["G5180"]],[19,20,["G3588"]],[20,21,["G3816"]],[21,22,["G2532"]],[22,23,["G3814"]],[23,24,["G5037"]],[24,26,["G2068"]],[26,27,["G2532"]],[27,28,["G4095"]],[28,29,["G2532"]],[29,32,["G3182"]]]},{"k":25505,"v":[[0,1,["G3588"]],[1,2,["G2962"]],[2,4,["G1565"]],[4,5,["G1401"]],[5,7,["G2240"]],[7,8,["G1722"]],[8,10,["G2250"]],[10,11,["G3739"]],[11,15,["G4328","G3756"]],[15,17,["G2532"]],[17,18,["G1722"]],[18,20,["G5610"]],[20,21,["G3739"]],[21,25,["G1097","G3756"]],[25,26,["G2532"]],[26,31,["G1371","G846"]],[31,32,["G2532"]],[32,34,["G5087"]],[34,35,["G846"]],[35,37,["G3313"]],[37,38,["G3326"]],[38,39,["G3588"]],[39,40,["G571"]]]},{"k":25506,"v":[[0,1,["G1161"]],[1,2,["G1565"]],[2,3,["G1401"]],[3,5,["G1097"]],[5,6,["G1438"]],[6,7,["G2962"]],[7,8,["G2307"]],[8,9,["G2532"]],[9,10,["G2090"]],[10,11,["G3361"]],[11,13,["G3366"]],[13,14,["G4160"]],[14,16,["G4314"]],[16,17,["G846"]],[17,18,["G2307"]],[18,21,["G1194"]],[21,23,["G4183"]],[23,24,[]]]},{"k":25507,"v":[[0,1,["G1161"]],[1,4,["G1097"]],[4,5,["G3361"]],[5,6,["G1161"]],[6,8,["G4160"]],[8,10,["G514"]],[10,12,["G4127"]],[12,15,["G1194"]],[15,17,["G3641"]],[17,19,["G1161"]],[19,21,["G3956","G3739"]],[21,22,["G4183"]],[22,24,["G1325"]],[24,25,["G3844"]],[25,26,["G846"]],[26,29,["G4183"]],[29,30,["G2212"]],[30,31,["G2532"]],[31,33,["G3739"]],[33,36,["G3908"]],[36,37,["G4183"]],[37,39,["G846"]],[39,42,["G154"]],[42,44,["G4055"]]]},{"k":25508,"v":[[0,3,["G2064"]],[3,5,["G906"]],[5,6,["G4442"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G1093"]],[9,10,["G2532"]],[10,11,["G5101"]],[11,12,["G2309"]],[12,14,["G1487"]],[14,17,["G2235"]],[17,18,["G381"]]]},{"k":25509,"v":[[0,1,["G1161"]],[1,3,["G2192"]],[3,5,["G908"]],[5,8,["G907"]],[8,10,["G2532"]],[10,11,["G4459"]],[11,14,["G4912"]],[14,15,["G2193"]],[15,16,["(G3739)"]],[16,18,["G5055"]]]},{"k":25510,"v":[[0,1,["G1380"]],[1,3,["G3754"]],[3,6,["G3854"]],[6,8,["G1325"]],[8,9,["G1515"]],[9,10,["G1722"]],[10,11,["G1093"]],[11,13,["G3004"]],[13,14,["G5213"]],[14,15,["G3780"]],[15,16,["G235"]],[16,17,["G2228"]],[17,18,["G1267"]]]},{"k":25511,"v":[[0,1,["G1063"]],[1,2,["G575"]],[2,3,["G3568"]],[3,6,["G2071"]],[6,7,["G4002"]],[7,8,["G1722"]],[8,9,["G1520"]],[9,10,["G3624"]],[10,11,["G1266"]],[11,12,["G5140"]],[12,13,["G1909"]],[13,14,["G1417"]],[14,15,["G2532"]],[15,16,["G1417"]],[16,17,["G1909"]],[17,18,["G5140"]]]},{"k":25512,"v":[[0,2,["G3962"]],[2,5,["G1266"]],[5,6,["G1909"]],[6,8,["G5207"]],[8,9,["G2532"]],[9,11,["G5207"]],[11,12,["G1909"]],[12,14,["G3962"]],[14,16,["G3384"]],[16,17,["G1909"]],[17,19,["G2364"]],[19,20,["G2532"]],[20,22,["G2364"]],[22,23,["G1909"]],[23,25,["G3384"]],[25,29,["G3994"]],[29,30,["G1909"]],[30,31,["G848"]],[31,34,["G3565"]],[34,35,["G2532"]],[35,39,["G3565"]],[39,40,["G1909"]],[40,41,["G848"]],[41,44,["G3994"]]]},{"k":25513,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,4,["G2532"]],[4,6,["G3588"]],[6,7,["G3793"]],[7,8,["G3752"]],[8,10,["G1492"]],[10,12,["G3507"]],[12,13,["G393"]],[13,15,["G575"]],[15,17,["G1424"]],[17,18,["G2112"]],[18,20,["G3004"]],[20,22,["G2064"]],[22,24,["G3655"]],[24,25,["G2543"]],[25,26,["G3779"]],[26,28,["G1096"]]]},{"k":25514,"v":[[0,1,["G2532"]],[1,2,["G3752"]],[2,7,["G3558"]],[7,8,["G4154"]],[8,10,["G3004"]],[10,13,["G2071"]],[13,14,["G2742"]],[14,15,["G2532"]],[15,19,["G1096"]]]},{"k":25515,"v":[[0,2,["G5273"]],[2,4,["G1492"]],[4,5,["G1381"]],[5,6,["G3588"]],[6,7,["G4383"]],[7,9,["G3588"]],[9,10,["G3772"]],[10,11,["G2532"]],[11,13,["G3588"]],[13,14,["G1093"]],[14,15,["G1161"]],[15,16,["G4459"]],[16,22,["G3756"]],[22,23,["G1381"]],[23,24,["G5126"]],[24,25,["G2540"]]]},{"k":25516,"v":[[0,2,["G1161"]],[2,3,["G5101"]],[3,4,["G2532"]],[4,5,["G575"]],[5,6,["G1438"]],[6,7,["G2919"]],[7,9,["G3756"]],[9,12,["G1342"]]]},{"k":25517,"v":[[0,0,["(G1161)"]],[0,1,["G5613"]],[1,3,["G5217"]],[3,4,["G3326"]],[4,5,["G4675"]],[5,6,["G476"]],[6,7,["G1909"]],[7,9,["G758"]],[9,13,["G1722"]],[13,14,["G3588"]],[14,15,["G3598"]],[15,16,["G1325"]],[16,17,["G2039"]],[17,22,["G525"]],[22,23,["G575"]],[23,24,["G846"]],[24,25,["G3379"]],[25,27,["G2694"]],[27,28,["G4571"]],[28,29,["G4314"]],[29,30,["G3588"]],[30,31,["G2923"]],[31,32,["G2532"]],[32,33,["G3588"]],[33,34,["G2923"]],[34,35,["G3860"]],[35,36,["G4571"]],[36,38,["G3588"]],[38,39,["G4233"]],[39,40,["G2532"]],[40,41,["G3588"]],[41,42,["G4233"]],[42,43,["G906"]],[43,44,["G4571"]],[44,45,["G1519"]],[45,46,["G5438"]]]},{"k":25518,"v":[[0,2,["G3004"]],[2,3,["G4671"]],[3,6,["G3364"]],[6,7,["G1831"]],[7,8,["G1564"]],[8,9,["G2193","G3757"]],[9,12,["G591"]],[12,13,["G3588"]],[13,14,["G2532"]],[14,15,["G2078"]],[15,16,["G3016"]]]},{"k":25519,"v":[[0,1,["(G1161)"]],[1,3,["G3918"]],[3,4,["G1722"]],[4,5,["G846"]],[5,6,["G2540"]],[6,7,["G5100"]],[7,9,["G518"]],[9,10,["G846"]],[10,11,["G4012"]],[11,12,["G3588"]],[12,13,["G1057"]],[13,14,["G3739"]],[14,15,["G129"]],[15,16,["G4091"]],[16,18,["G3396"]],[18,19,["G3326"]],[19,20,["G846"]],[20,21,["G2378"]]]},{"k":25520,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G1380"]],[7,9,["G3754"]],[9,10,["G3778"]],[10,11,["G1057"]],[11,12,["G1096"]],[12,13,["G268"]],[13,14,["G3844"]],[14,15,["G3956"]],[15,16,["G3588"]],[16,17,["G1057"]],[17,18,["G3754"]],[18,20,["G3958"]],[20,22,["G5108"]]]},{"k":25521,"v":[[0,2,["G3004"]],[2,3,["G5213"]],[3,4,["G3780"]],[4,5,["G235"]],[5,6,["G1437","G3361"]],[6,8,["G3340"]],[8,11,["G3956"]],[11,12,["G5615"]],[12,13,["G622"]]]},{"k":25522,"v":[[0,1,["G2228"]],[1,2,["G1565"]],[2,3,["G1176","G2532","G3638"]],[3,4,["G1909"]],[4,5,["G3739"]],[5,6,["G3588"]],[6,7,["G4444"]],[7,8,["G1722"]],[8,9,["G4611"]],[9,10,["G4098"]],[10,11,["G2532"]],[11,12,["G615"]],[12,13,["G846"]],[13,14,["G1380"]],[14,16,["G3754"]],[16,17,["G3778"]],[17,18,["G1096"]],[18,19,["G3781"]],[19,20,["G3844"]],[20,21,["G3956"]],[21,22,["G444"]],[22,24,["G2730"]],[24,25,["G1722"]],[25,26,["G2419"]]]},{"k":25523,"v":[[0,2,["G3004"]],[2,3,["G5213"]],[3,4,["G3780"]],[4,5,["G235"]],[5,6,["G1437","G3361"]],[6,8,["G3340"]],[8,11,["G3956"]],[11,12,["G3668"]],[12,13,["G622"]]]},{"k":25524,"v":[[0,2,["G3004"]],[2,3,["G1161"]],[3,4,["G5026"]],[4,5,["G3850"]],[5,7,["G5100"]],[7,9,["G2192"]],[9,12,["G4808"]],[12,13,["G5452"]],[13,14,["G1722"]],[14,15,["G848"]],[15,16,["G290"]],[16,17,["G2532"]],[17,19,["G2064"]],[19,21,["G2212"]],[21,22,["G2590"]],[22,23,["G1722","G846"]],[23,24,["G2532"]],[24,25,["G2147"]],[25,26,["G3756"]]]},{"k":25525,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,4,["G4314"]],[4,5,["G3588"]],[5,9,["G289"]],[9,10,["G2400"]],[10,12,["G5140"]],[12,13,["G2094"]],[13,15,["G2064"]],[15,16,["G2212"]],[16,17,["G2590"]],[17,18,["G1722"]],[18,19,["G5026"]],[19,21,["G4808"]],[21,22,["G2532"]],[22,23,["G2147"]],[23,24,["G3756"]],[24,27,["G1581","G846"]],[27,28,["G2444","(G2532)"]],[28,29,["G2673"]],[29,31,["G3588"]],[31,32,["G1093"]]]},{"k":25526,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,4,["G3004"]],[4,6,["G846"]],[6,7,["G2962"]],[7,10,["G863","G846"]],[10,11,["G5124"]],[11,12,["G2094"]],[12,13,["G2532"]],[13,14,["G2193","G3755"]],[14,17,["G4626"]],[17,18,["G4012"]],[18,19,["G846"]],[19,20,["G2532"]],[20,21,["G906","G2874"]],[21,22,[]]]},{"k":25527,"v":[[0,2,["G2579"]],[2,3,["(G3303)"]],[3,4,["G4160"]],[4,5,["G2590"]],[5,9,["G1490"]],[9,12,["G1519","G3195"]],[12,17,["G1581","G846"]]]},{"k":25528,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G1321"]],[4,5,["G1722"]],[5,6,["G3391"]],[6,8,["G3588"]],[8,9,["G4864"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G4521"]]]},{"k":25529,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G2258"]],[4,6,["G1135"]],[6,8,["G2192"]],[8,10,["G4151"]],[10,12,["G769"]],[12,13,["G1176","G2532","G3638"]],[13,14,["G2094"]],[14,15,["G2532"]],[15,16,["G2258"]],[16,18,["G4794"]],[18,19,["G2532"]],[19,20,["G1410"]],[20,23,["G3361","G1519","G3838"]],[23,25,["G352"]],[25,26,[]]]},{"k":25530,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,4,["G1492"]],[4,5,["G846"]],[5,7,["G4377"]],[7,11,["G2532"]],[11,12,["G2036"]],[12,14,["G846"]],[14,15,["G1135"]],[15,18,["G630"]],[18,20,["G4675"]],[20,21,["G769"]]]},{"k":25531,"v":[[0,1,["G2532"]],[1,3,["G2007"]],[3,5,["G5495"]],[5,7,["G846"]],[7,8,["G2532"]],[8,9,["G3916"]],[9,13,["G461"]],[13,14,["G2532"]],[14,15,["G1392"]],[15,16,["G2316"]]]},{"k":25532,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,6,["G752"]],[6,7,["G611"]],[7,9,["G23"]],[9,10,["G3754"]],[10,12,["G2424"]],[12,14,["G2323"]],[14,16,["G3588"]],[16,18,["G4521"]],[18,20,["G3004"]],[20,22,["G3588"]],[22,23,["G3793"]],[23,25,["G1526"]],[25,26,["G1803"]],[26,27,["G2250"]],[27,28,["G1722"]],[28,29,["G3739"]],[29,31,["G1163"]],[31,33,["G2038"]],[33,34,["G1722"]],[34,35,["G5025"]],[35,36,["G3767"]],[36,37,["G2064"]],[37,38,["G2532"]],[38,40,["G2323"]],[40,41,["G2532"]],[41,42,["G3361"]],[42,44,["G3588"]],[44,45,["G4521"]],[45,46,["G2250"]]]},{"k":25533,"v":[[0,1,["G3588"]],[1,2,["G2962"]],[2,3,["G3767"]],[3,4,["G611"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G2036"]],[7,9,["G5273"]],[9,11,["G3756"]],[11,13,["G1538"]],[13,15,["G5216"]],[15,17,["G3588"]],[17,18,["G4521"]],[18,19,["G3089"]],[19,20,["G848"]],[20,21,["G1016"]],[21,22,["G2228"]],[22,24,["G3688"]],[24,25,["G575"]],[25,26,["G3588"]],[26,27,["G5336"]],[27,28,["G2532"]],[28,31,["G520"]],[31,33,["G4222"]]]},{"k":25534,"v":[[0,1,["G1161"]],[1,2,["G1163"]],[2,3,["G3756"]],[3,5,["G5026"]],[5,6,["G5607"]],[6,8,["G2364"]],[8,10,["G11"]],[10,11,["G3739"]],[11,12,["G4567"]],[12,14,["G1210"]],[14,15,["G2400"]],[15,17,["G1176","G2532","G3638"]],[17,18,["G2094"]],[18,20,["G3089"]],[20,21,["G575"]],[21,22,["G5127"]],[22,23,["G1199"]],[23,25,["G3588"]],[25,26,["G4521"]],[26,27,["G2250"]]]},{"k":25535,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G3004"]],[5,7,["G5023"]],[7,8,["G3956"]],[8,9,["G846"]],[9,10,["G480"]],[10,12,["G2617"]],[12,13,["G2532"]],[13,14,["G3956"]],[14,15,["G3588"]],[15,16,["G3793"]],[16,17,["G5463"]],[17,18,["G1909"]],[18,19,["G3956"]],[19,20,["G3588"]],[20,22,["G1741"]],[22,25,["G1096"]],[25,26,["G5259"]],[26,27,["G846"]]]},{"k":25536,"v":[[0,1,["G1161"]],[1,2,["G3004"]],[2,5,["G5101"]],[5,6,["G2076"]],[6,7,["G3588"]],[7,8,["G932"]],[8,10,["G2316"]],[10,11,["G3664"]],[11,12,["G2532"]],[12,13,["G5101"]],[13,16,["G3666"]],[16,17,["G846"]]]},{"k":25537,"v":[[0,2,["G2076"]],[2,3,["G3664"]],[3,5,["G2848"]],[5,8,["G4615"]],[8,9,["G3739"]],[9,11,["G444"]],[11,12,["G2983"]],[12,14,["G906"]],[14,15,["G1519"]],[15,16,["G1438"]],[16,17,["G2779"]],[17,18,["G2532"]],[18,20,["G837"]],[20,21,["G2532"]],[21,22,["G1096"]],[22,24,["G3173"]],[24,25,["G1186"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G4071"]],[28,30,["G3588"]],[30,31,["G3772"]],[31,32,["G2681"]],[32,33,["G1722"]],[33,34,["G3588"]],[34,35,["G2798"]],[35,37,["G846"]]]},{"k":25538,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,4,["G2036"]],[4,5,["G5101"]],[5,8,["G3666"]],[8,9,["G3588"]],[9,10,["G932"]],[10,12,["G2316"]]]},{"k":25539,"v":[[0,2,["G2076"]],[2,3,["G3664"]],[3,4,["G2219"]],[4,5,["G3739"]],[5,7,["G1135"]],[7,8,["G2983"]],[8,10,["G1470"]],[10,11,["G1519"]],[11,12,["G5140"]],[12,13,["G4568"]],[13,15,["G224"]],[15,16,["G2193","G3757"]],[16,18,["G3650"]],[18,20,["G2220"]]]},{"k":25540,"v":[[0,1,["G2532"]],[1,3,["G1279"]],[3,4,["G2596"]],[4,6,["G4172"]],[6,7,["G2532"]],[7,8,["G2968"]],[8,9,["G1321"]],[9,10,["G2532"]],[10,11,["G4160","G4197"]],[11,12,["G1519"]],[12,13,["G2419"]]]},{"k":25541,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G5100"]],[3,5,["G846"]],[5,6,["G2962"]],[6,7,["(G1487)"]],[7,9,["G3641"]],[9,12,["G4982"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G2036"]],[15,16,["G4314"]],[16,17,["G846"]]]},{"k":25542,"v":[[0,1,["G75"]],[1,4,["G1525"]],[4,5,["G1223"]],[5,6,["G3588"]],[6,7,["G4728"]],[7,8,["G4439"]],[8,9,["G3754"]],[9,10,["G4183"]],[10,12,["G3004"]],[12,14,["G5213"]],[14,16,["G2212"]],[16,19,["G1525"]],[19,20,["G2532"]],[20,22,["G3756"]],[22,24,["G2480"]]]},{"k":25543,"v":[[0,2,["G575","G3739","G302"]],[2,3,["G3588"]],[3,7,["G3617"]],[7,10,["G1453"]],[10,11,["G2532"]],[11,14,["G608"]],[14,15,["G3588"]],[15,16,["G2374"]],[16,17,["G2532"]],[17,19,["G756"]],[19,21,["G2476"]],[21,22,["G1854"]],[22,23,["G2532"]],[23,25,["G2925"]],[25,27,["G3588"]],[27,28,["G2374"]],[28,29,["G3004"]],[29,30,["G2962"]],[30,31,["G2962"]],[31,32,["G455"]],[32,34,["G2254"]],[34,35,["G2532"]],[35,38,["G611"]],[38,40,["G2046"]],[40,42,["G5213"]],[42,44,["G1492"]],[44,45,["G5209"]],[45,46,["G3756"]],[46,47,["G4159"]],[47,49,["G2075"]]]},{"k":25544,"v":[[0,1,["G5119"]],[1,4,["G756"]],[4,6,["G3004"]],[6,9,["G5315"]],[9,10,["G2532"]],[10,11,["G4095"]],[11,14,["G1799","G4675"]],[14,15,["G2532"]],[15,18,["G1321"]],[18,19,["G1722"]],[19,20,["G2257"]],[20,21,["G4113"]]]},{"k":25545,"v":[[0,1,["G2532"]],[1,4,["G2046"]],[4,6,["G3004"]],[6,7,["G5213"]],[7,9,["G1492"]],[9,10,["G5209"]],[10,11,["G3756"]],[11,12,["G4159"]],[12,14,["G2075"]],[14,15,["G868"]],[15,16,["G575"]],[16,17,["G1700"]],[17,18,["G3956"]],[18,20,["G2040"]],[20,22,["G93"]]]},{"k":25546,"v":[[0,1,["G1563"]],[1,3,["G2071"]],[3,4,["G2805"]],[4,5,["G2532"]],[5,6,["G1030"]],[6,8,["G3599"]],[8,9,["G3752"]],[9,12,["G3700"]],[12,13,["G11"]],[13,14,["G2532"]],[14,15,["G2464"]],[15,16,["G2532"]],[16,17,["G2384"]],[17,18,["G2532"]],[18,19,["G3956"]],[19,20,["G3588"]],[20,21,["G4396"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G932"]],[24,26,["G2316"]],[26,27,["G1161"]],[27,28,["G5209"]],[28,30,["G1544"]],[30,31,["G1854"]]]},{"k":25547,"v":[[0,1,["G2532"]],[1,4,["G2240"]],[4,5,["G575"]],[5,7,["G395"]],[7,8,["G2532"]],[8,11,["G1424"]],[11,12,["G2532"]],[12,13,["G575"]],[13,15,["G1005"]],[15,16,["G2532"]],[16,19,["G3558"]],[19,20,["G2532"]],[20,23,["G347"]],[23,24,["G1722"]],[24,25,["G3588"]],[25,26,["G932"]],[26,27,["G2316"]],[27,28,[]]]},{"k":25548,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G1526"]],[4,5,["G2078"]],[5,6,["G3739"]],[6,8,["G2071"]],[8,9,["G4413"]],[9,10,["G2532"]],[10,12,["G1526"]],[12,13,["G4413"]],[13,14,["G3739"]],[14,16,["G2071"]],[16,17,["G2078"]]]},{"k":25549,"v":[[0,1,["(G1722)"]],[1,2,["G846"]],[2,3,["G2250"]],[3,5,["G4334"]],[5,6,["G5100"]],[6,9,["G5330"]],[9,10,["G3004"]],[10,12,["G846"]],[12,15,["G1831"]],[15,16,["G2532"]],[16,17,["G4198"]],[17,18,["G1782"]],[18,19,["G3754"]],[19,20,["G2264"]],[20,21,["G2309"]],[21,22,["G615"]],[22,23,["G4571"]]]},{"k":25550,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G4198"]],[6,9,["G2036"]],[9,10,["G5026"]],[10,11,["G258"]],[11,12,["G2400"]],[12,15,["G1544"]],[15,16,["G1140"]],[16,17,["G2532"]],[17,19,["G2005"]],[19,20,["G2392"]],[20,22,["G4594"]],[22,23,["G2532"]],[23,25,["G839"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G5154"]],[28,33,["G5048"]]]},{"k":25551,"v":[[0,1,["G4133"]],[1,2,["G3165"]],[2,3,["G1163"]],[3,4,["G4198"]],[4,6,["G4594"]],[6,7,["G2532"]],[7,9,["G839"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,13,["G2192"]],[13,14,["G3754"]],[14,17,["G1735","G3756"]],[17,20,["G4396"]],[20,21,["G622"]],[21,22,["G1854"]],[22,24,["G2419"]]]},{"k":25552,"v":[[0,2,["G2419"]],[2,3,["G2419"]],[3,5,["G615"]],[5,6,["G3588"]],[6,7,["G4396"]],[7,8,["G2532"]],[8,9,["G3036"]],[9,13,["G649"]],[13,14,["G4314"]],[14,15,["G846"]],[15,17,["G4212"]],[17,18,["G2309"]],[18,24,["G1996","G4675","G5043"]],[24,25,["G3739","G5158"]],[25,27,["G3733"]],[27,30,["G1438"]],[30,31,["G3555"]],[31,32,["G5259"]],[32,34,["G4420"]],[34,35,["G2532"]],[35,37,["G2309"]],[37,38,["G3756"]]]},{"k":25553,"v":[[0,1,["G2400"]],[1,2,["G5216"]],[2,3,["G3624"]],[3,5,["G863"]],[5,7,["G5213"]],[7,8,["G2048"]],[8,9,["G1161"]],[9,10,["G281"]],[10,12,["G3004"]],[12,14,["G5213"]],[14,17,["G3364"]],[17,18,["G1492"]],[18,19,["G3165"]],[19,20,["G2193","G302"]],[20,23,["G2240"]],[23,24,["G3753"]],[24,27,["G2036"]],[27,28,["G2127"]],[28,32,["G2064"]],[32,33,["G1722"]],[33,35,["G3686"]],[35,38,["G2962"]]]},{"k":25554,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G846"]],[7,8,["G2064"]],[8,9,["G1519"]],[9,11,["G3624"]],[11,13,["G5100"]],[13,15,["G3588"]],[15,16,["G758"]],[16,17,["G5330"]],[17,19,["G5315"]],[19,20,["G740"]],[20,24,["G4521"]],[24,25,["G2532"]],[25,26,["G846"]],[26,27,["G2258","G3906"]],[27,28,["G846"]]]},{"k":25555,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G2258"]],[4,6,["G5100"]],[6,7,["G444"]],[7,8,["G1715"]],[8,9,["G846"]],[9,13,["G5203"]]]},{"k":25556,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G3588"]],[6,7,["G3544"]],[7,8,["G2532"]],[8,9,["G5330"]],[9,10,["G3004","(G1487)"]],[10,13,["G1832"]],[13,15,["G2323"]],[15,17,["G3588"]],[17,19,["G4521"]]]},{"k":25557,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,5,["G2270"]],[5,6,["G2532"]],[6,8,["G1949"]],[8,11,["G2390"]],[11,12,["G846"]],[12,13,["G2532"]],[13,16,["G630"]]]},{"k":25558,"v":[[0,1,["G2532"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G2036"]],[4,5,["G5101"]],[5,7,["G5216"]],[7,11,["G3688"]],[11,12,["G2228"]],[12,14,["G1016"]],[14,15,["G1706"]],[15,16,["G1519"]],[16,18,["G5421"]],[18,19,["G2532"]],[19,21,["G3756"]],[21,22,["G2112"]],[22,25,["G385","G846"]],[25,26,["G1722"]],[26,27,["G3588"]],[27,28,["G4521"]],[28,29,["G2250"]]]},{"k":25559,"v":[[0,1,["G2532"]],[1,3,["G2480"]],[3,4,["G3756"]],[4,7,["G470","G846"]],[7,8,["G4314"]],[8,10,["G5023"]]]},{"k":25560,"v":[[0,1,["G1161"]],[1,4,["G3004"]],[4,6,["G3850"]],[6,7,["G4314"]],[7,11,["G2564"]],[11,14,["G1907"]],[14,15,["G4459"]],[15,18,["G1586"]],[18,19,["G3588"]],[19,21,["G4411"]],[21,22,["G3004"]],[22,23,["G4314"]],[23,24,["G846"]]]},{"k":25561,"v":[[0,1,["G3752"]],[1,4,["G2564"]],[4,5,["G5259"]],[5,6,["G5100"]],[6,8,["G1519"]],[8,10,["G1062"]],[10,13,["G2625","G3361"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,17,["G4411"]],[17,18,["G3379"]],[18,22,["G1784"]],[22,24,["G4675"]],[24,25,["G5600"]],[25,26,["G2564"]],[26,27,["G5259"]],[27,28,["G846"]]]},{"k":25562,"v":[[0,1,["G2532"]],[1,4,["G2564"]],[4,5,["G4571"]],[5,6,["G2532"]],[6,7,["G846"]],[7,8,["G2064"]],[8,10,["G2046"]],[10,12,["G4671"]],[12,13,["G1325"]],[13,15,["G5129"]],[15,16,["G5117"]],[16,17,["G2532"]],[17,18,["(G5119)"]],[18,19,["G756"]],[19,20,["G3326"]],[20,21,["G152"]],[21,23,["G2722"]],[23,24,["G3588"]],[24,25,["G2078"]],[25,26,["G5117"]]]},{"k":25563,"v":[[0,1,["G235"]],[1,2,["G3752"]],[2,5,["G2564"]],[5,6,["G4198"]],[6,9,["G377"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G2078"]],[12,13,["G5117"]],[13,14,["G2443"]],[14,15,["G3752"]],[15,18,["G2564"]],[18,19,["G4571"]],[19,20,["G2064"]],[20,23,["G2036"]],[23,25,["G4671"]],[25,26,["G5384"]],[26,28,["G4320"]],[28,29,["G511"]],[29,30,["G5119"]],[30,32,["G4671"]],[32,33,["G2071"]],[33,34,["G1391"]],[34,37,["G1799"]],[37,44,["G4873"]],[44,45,["G4671"]]]},{"k":25564,"v":[[0,1,["G3754"]],[1,2,["G3956"]],[2,3,["G5312"]],[3,4,["G1438"]],[4,7,["G5013"]],[7,8,["G2532"]],[8,11,["G5013"]],[11,12,["G1438"]],[12,15,["G5312"]]]},{"k":25565,"v":[[0,1,["G1161"]],[1,2,["G3004"]],[2,4,["G2532"]],[4,8,["G2564"]],[8,9,["G846"]],[9,10,["G3752"]],[10,12,["G4160"]],[12,14,["G712"]],[14,15,["G2228"]],[15,17,["G1173"]],[17,18,["G5455"]],[18,19,["G3361"]],[19,20,["G4675"]],[20,21,["G5384"]],[21,22,["G3366"]],[22,23,["G4675"]],[23,24,["G80"]],[24,25,["G3366"]],[25,26,["G4675"]],[26,27,["G4773"]],[27,28,["G3366"]],[28,30,["G4145"]],[30,31,["G1069"]],[31,32,["G3379"]],[32,33,["G846"]],[33,34,["G2532"]],[34,37,["G479","G4571"]],[37,38,["G2532"]],[38,40,["G468"]],[40,42,["G1096"]],[42,43,["G4671"]]]},{"k":25566,"v":[[0,1,["G235"]],[1,2,["G3752"]],[2,4,["G4160"]],[4,6,["G1403"]],[6,7,["G2564"]],[7,9,["G4434"]],[9,11,["G376"]],[11,13,["G5560"]],[13,15,["G5185"]]]},{"k":25567,"v":[[0,1,["G2532"]],[1,4,["G2071"]],[4,5,["G3107"]],[5,6,["G3754"]],[6,8,["G2192","G3756"]],[8,9,["G467"]],[9,10,["G4671"]],[10,11,["G1063"]],[11,12,["G4671"]],[12,15,["G467"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G386"]],[18,20,["G3588"]],[20,21,["G1342"]]]},{"k":25568,"v":[[0,1,["G1161"]],[1,3,["G5100"]],[3,10,["G4873"]],[10,12,["G191"]],[12,14,["G5023"]],[14,16,["G2036"]],[16,18,["G846"]],[18,19,["G3107"]],[19,21,["G3739"]],[21,24,["G5315"]],[24,25,["G740"]],[25,26,["G1722"]],[26,27,["G3588"]],[27,28,["G932"]],[28,30,["G2316"]]]},{"k":25569,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,5,["G846"]],[5,7,["G5100"]],[7,8,["G444"]],[8,9,["G4160"]],[9,11,["G3173"]],[11,12,["G1173"]],[12,13,["G2532"]],[13,14,["G2564"]],[14,15,["G4183"]]]},{"k":25570,"v":[[0,1,["G2532"]],[1,2,["G649"]],[2,3,["G848"]],[3,4,["G1401"]],[4,6,["G1173"]],[6,7,["G5610"]],[7,9,["G2036"]],[9,14,["G2564"]],[14,15,["G2064"]],[15,16,["G3754"]],[16,18,["G3956"]],[18,19,["G2076"]],[19,20,["G2235"]],[20,21,["G2092"]]]},{"k":25571,"v":[[0,1,["G2532"]],[1,3,["G3956"]],[3,4,["G575"]],[4,5,["G3391"]],[5,7,["G756"]],[7,10,["G3868"]],[10,11,["G3588"]],[11,12,["G4413"]],[12,13,["G2036"]],[13,15,["G846"]],[15,18,["G59"]],[18,22,["G68"]],[22,23,["G2532"]],[23,25,["G2192"]],[25,26,["G318"]],[26,27,["G1831"]],[27,28,["G2532"]],[28,29,["G1492"]],[29,30,["G846"]],[30,32,["G2065"]],[32,33,["G4571"]],[33,34,["G2192"]],[34,35,["G3165"]],[35,36,["G3868"]]]},{"k":25572,"v":[[0,1,["G2532"]],[1,2,["G2087"]],[2,3,["G2036"]],[3,6,["G59"]],[6,7,["G4002"]],[7,8,["G2201"]],[8,10,["G1016"]],[10,11,["G2532"]],[11,13,["G4198"]],[13,15,["G1381"]],[15,16,["G846"]],[16,18,["G2065"]],[18,19,["G4571"]],[19,20,["G2192"]],[20,21,["G3165"]],[21,22,["G3868"]]]},{"k":25573,"v":[[0,1,["G2532"]],[1,2,["G2087"]],[2,3,["G2036"]],[3,6,["G1060"]],[6,8,["G1135"]],[8,9,["G2532"]],[9,10,["G1223","G5124"]],[10,12,["G1410","G3756"]],[12,13,["G2064"]]]},{"k":25574,"v":[[0,1,["G2532"]],[1,2,["G1565"]],[2,3,["G1401"]],[3,4,["G3854"]],[4,6,["G518"]],[6,7,["G848"]],[7,8,["G2962"]],[8,10,["G5023"]],[10,11,["G5119"]],[11,12,["G3588"]],[12,16,["G3617"]],[16,18,["G3710"]],[18,19,["G2036"]],[19,21,["G848"]],[21,22,["G1401"]],[22,24,["G1831"]],[24,25,["G5030"]],[25,26,["G1519"]],[26,27,["G3588"]],[27,28,["G4113"]],[28,29,["G2532"]],[29,30,["G4505"]],[30,32,["G3588"]],[32,33,["G4172"]],[33,34,["G2532"]],[34,36,["G1521"]],[36,37,["G5602"]],[37,38,["G3588"]],[38,39,["G4434"]],[39,40,["G2532"]],[40,42,["G376"]],[42,43,["G2532"]],[43,45,["G5560"]],[45,46,["G2532"]],[46,48,["G5185"]]]},{"k":25575,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1401"]],[3,4,["G2036"]],[4,5,["G2962"]],[5,8,["G1096"]],[8,9,["G5613"]],[9,12,["G2004"]],[12,13,["G2532"]],[13,14,["G2089"]],[14,16,["G2076"]],[16,17,["G5117"]]]},{"k":25576,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G3588"]],[6,7,["G1401"]],[7,9,["G1831"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G3598"]],[12,13,["G2532"]],[13,14,["G5418"]],[14,15,["G2532"]],[15,16,["G315"]],[16,20,["G1525"]],[20,21,["G2443"]],[21,22,["G3450"]],[22,23,["G3624"]],[23,26,["G1072"]]]},{"k":25577,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G3762"]],[7,9,["G1565"]],[9,10,["G435"]],[10,13,["G2564"]],[13,15,["G1089"]],[15,17,["G3450"]],[17,18,["G1173"]]]},{"k":25578,"v":[[0,1,["G1161"]],[1,6,["G4848","G4183","G3793"]],[6,7,["G846"]],[7,8,["G2532"]],[8,10,["G4762"]],[10,12,["G2036"]],[12,13,["G4314"]],[13,14,["G846"]]]},{"k":25579,"v":[[0,2,["G1536"]],[2,4,["G2064"]],[4,5,["G4314"]],[5,6,["G3165"]],[6,7,["G2532"]],[7,8,["G3404"]],[8,9,["G3756"]],[9,10,["G1438"]],[10,11,["G3962"]],[11,12,["G2532"]],[12,13,["G3384"]],[13,14,["G2532"]],[14,15,["G1135"]],[15,16,["G2532"]],[16,17,["G5043"]],[17,18,["G2532"]],[18,19,["G80"]],[19,20,["G2532"]],[20,21,["G79"]],[21,22,["(G2089)"]],[22,23,["G1161"]],[23,25,["G1438"]],[25,26,["G5590"]],[26,27,["G2532"]],[27,29,["G1410","G3756"]],[29,30,["G1511"]],[30,31,["G3450"]],[31,32,["G3101"]]]},{"k":25580,"v":[[0,1,["G2532"]],[1,2,["G3748"]],[2,4,["G3756"]],[4,5,["G941"]],[5,6,["G848"]],[6,7,["G4716"]],[7,8,["G2532"]],[8,9,["G2064"]],[9,10,["G3694"]],[10,11,["G3450"]],[11,12,["G1410","G3756"]],[12,13,["G1511"]],[13,14,["G3450"]],[14,15,["G3101"]]]},{"k":25581,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,3,["G1537"]],[3,4,["G5216"]],[4,5,["G2309"]],[5,7,["G3618"]],[7,9,["G4444"]],[9,12,["G2523","G3780"]],[12,13,["G4412"]],[13,15,["G5585"]],[15,16,["G3588"]],[16,17,["G1160"]],[17,18,["G1487"]],[18,20,["G2192"]],[20,23,["G4314","G535"]],[23,24,[]]]},{"k":25582,"v":[[0,2,["G3379"]],[2,3,["(G2443)"]],[3,4,["G846"]],[4,6,["G5087"]],[6,8,["G2310"]],[8,9,["G2532"]],[9,12,["G2480","G3361"]],[12,14,["G1615"]],[14,16,["G3956"]],[16,18,["G2334"]],[18,20,["G756"]],[20,22,["G1702"]],[22,23,["G846"]]]},{"k":25583,"v":[[0,1,["G3004"]],[1,2,["G3778"]],[2,3,["G444"]],[3,4,["G756"]],[4,6,["G3618"]],[6,7,["G2532"]],[7,10,["G2480","G3756"]],[10,12,["G1615"]]]},{"k":25584,"v":[[0,1,["G2228"]],[1,2,["G5101"]],[2,3,["G935"]],[3,4,["G4198"]],[4,7,["G4820","G1519","G4171"]],[7,9,["G2087"]],[9,10,["G935"]],[10,13,["G2523","G3780"]],[13,14,["G4412"]],[14,15,["G2532"]],[15,16,["G1011"]],[16,17,["G1487"]],[17,19,["G2076"]],[19,20,["G1415"]],[20,21,["G1722"]],[21,22,["G1176"]],[22,23,["G5505"]],[23,25,["G528"]],[25,28,["G2064"]],[28,29,["G1909"]],[29,30,["G846"]],[30,31,["G3326"]],[31,32,["G1501"]],[32,33,["G5505"]]]},{"k":25585,"v":[[0,2,["G1490"]],[2,5,["G846"]],[5,6,["G5607"]],[6,7,["G2089"]],[7,11,["G4206"]],[11,13,["G649"]],[13,15,["G4242"]],[15,17,["G2065"]],[17,18,["G3588"]],[18,19,["G4314"]],[19,20,["G1515"]]]},{"k":25586,"v":[[0,1,["G3767"]],[1,2,["G3779"]],[2,3,["G3956"]],[3,6,["G1537"]],[6,7,["G5216"]],[7,8,["G3739"]],[8,9,["G657"]],[9,10,["G3756"]],[10,11,["G3956"]],[11,14,["G5224","G1438"]],[14,16,["G1410","G3756"]],[16,17,["G1511"]],[17,18,["G3450"]],[18,19,["G3101"]]]},{"k":25587,"v":[[0,1,["G217"]],[1,3,["G2570"]],[3,4,["G1161"]],[4,5,["G1437"]],[5,6,["G3588"]],[6,7,["G217"]],[7,11,["G3471"]],[11,12,["G1722","G5101"]],[12,16,["G741"]]]},{"k":25588,"v":[[0,2,["G2076"]],[2,3,["G3777"]],[3,4,["G2111"]],[4,5,["G1519"]],[5,7,["G1093"]],[7,9,["G3777"]],[9,10,["G1519"]],[10,12,["G2874"]],[12,15,["G906"]],[15,16,["G846"]],[16,17,["G1854"]],[17,20,["G2192"]],[20,21,["G3775"]],[21,23,["G191"]],[23,26,["G191"]]]},{"k":25589,"v":[[0,1,["G1161"]],[1,3,["G2258","G1448"]],[3,5,["G846"]],[5,6,["G3956"]],[6,7,["G3588"]],[7,8,["G5057"]],[8,9,["G2532"]],[9,10,["G268"]],[10,13,["G191"]],[13,14,["G846"]]]},{"k":25590,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,4,["G2532"]],[4,5,["G1122"]],[5,6,["G1234"]],[6,7,["G3004"]],[7,9,["G3778"]],[9,10,["G4327"]],[10,11,["G268"]],[11,12,["G2532"]],[12,14,["G4906"]],[14,15,["G846"]]]},{"k":25591,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G5026"]],[4,5,["G3850"]],[5,6,["G4314"]],[6,7,["G846"]],[7,8,["G3004"]]]},{"k":25592,"v":[[0,1,["G5101"]],[1,2,["G444"]],[2,3,["G1537"]],[3,4,["G5216"]],[4,5,["G2192"]],[5,7,["G1540"]],[7,8,["G4263"]],[8,9,["G2532"]],[9,11,["G622"]],[11,12,["G1520"]],[12,13,["G1537"]],[13,14,["G846"]],[14,16,["G3756"]],[16,17,["G2641"]],[17,18,["G3588"]],[18,21,["G1768"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G2048"]],[24,25,["G2532"]],[25,26,["G4198"]],[26,27,["G1909"]],[27,31,["G622"]],[31,32,["G2193"]],[32,34,["G2147"]],[34,35,["G846"]]]},{"k":25593,"v":[[0,1,["G2532"]],[1,5,["G2147"]],[5,8,["G2007"]],[8,10,["G1909"]],[10,11,["G1438"]],[11,12,["G5606"]],[12,13,["G5463"]]]},{"k":25594,"v":[[0,1,["G2532"]],[1,4,["G2064"]],[4,5,["G3624"]],[5,8,["G4779"]],[8,10,["G5384"]],[10,11,["G2532"]],[11,12,["G1069"]],[12,13,["G3004"]],[13,15,["G846"]],[15,17,["G4796"]],[17,18,["G3427"]],[18,19,["G3754"]],[19,22,["G2147"]],[22,23,["G3450"]],[23,24,["G4263"]],[24,27,["G622"]]]},{"k":25595,"v":[[0,2,["G3004"]],[2,4,["G5213"]],[4,5,["G3754"]],[5,6,["G3779"]],[6,7,["G5479"]],[7,9,["G2071"]],[9,10,["G1722"]],[10,11,["G3772"]],[11,12,["G1909"]],[12,13,["G1520"]],[13,14,["G268"]],[14,16,["G3340"]],[16,18,["G2228"]],[18,19,["G1909"]],[19,22,["G1768"]],[22,24,["G1342"]],[24,25,["G3748"]],[25,26,["G2192","G5532"]],[26,27,["G3756"]],[27,28,["G3341"]]]},{"k":25596,"v":[[0,1,["G2228"]],[1,2,["G5101"]],[2,3,["G1135"]],[3,4,["G2192"]],[4,5,["G1176"]],[5,8,["G1406"]],[8,9,["G1437"]],[9,11,["G622"]],[11,12,["G3391"]],[12,13,["G1406"]],[13,15,["G3780"]],[15,16,["G681"]],[16,18,["G3088"]],[18,19,["G2532"]],[19,20,["G4563"]],[20,21,["G3588"]],[21,22,["G3614"]],[22,23,["G2532"]],[23,24,["G2212"]],[24,25,["G1960"]],[25,26,["G2193","G3755"]],[26,28,["G2147"]],[28,29,[]]]},{"k":25597,"v":[[0,1,["G2532"]],[1,5,["G2147"]],[5,14,["G4779","G5384","G2532","G1069"]],[14,15,["G3004"]],[15,17,["G4796"]],[17,18,["G3427"]],[18,19,["G3754"]],[19,22,["G2147"]],[22,23,["G3588"]],[23,24,["G1406"]],[24,25,["G3739"]],[25,28,["G622"]]]},{"k":25598,"v":[[0,1,["G3779"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,7,["G1096"]],[7,8,["G5479"]],[8,11,["G1799"]],[11,13,["G3588"]],[13,14,["G32"]],[14,16,["G2316"]],[16,17,["G1909"]],[17,18,["G1520"]],[18,19,["G268"]],[19,21,["G3340"]]]},{"k":25599,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G5100"]],[5,6,["G444"]],[6,7,["G2192"]],[7,8,["G1417"]],[8,9,["G5207"]]]},{"k":25600,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3501"]],[3,5,["G846"]],[5,6,["G2036"]],[6,9,["G3962"]],[9,10,["G3962"]],[10,11,["G1325"]],[11,12,["G3427"]],[12,13,["G3588"]],[13,14,["G3313"]],[14,16,["G3776"]],[16,18,["G1911"]],[18,21,["G2532"]],[21,23,["G1244"]],[23,25,["G846"]],[25,27,["G979"]]]},{"k":25601,"v":[[0,1,["G2532"]],[1,2,["G3756"]],[2,3,["G4183"]],[3,4,["G2250"]],[4,5,["G3326"]],[5,6,["G3588"]],[6,7,["G3501"]],[7,8,["G5207"]],[8,11,["G4863","G537"]],[11,15,["G589"]],[15,16,["G1519"]],[16,18,["G3117"]],[18,19,["G5561"]],[19,20,["G2532"]],[20,21,["G1563"]],[21,22,["G1287"]],[22,23,["G848"]],[23,24,["G3776"]],[24,26,["G811"]],[26,27,["G2198"]]]},{"k":25602,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G1159"]],[5,6,["G3956"]],[6,8,["G1096"]],[8,10,["G2478"]],[10,11,["G3042"]],[11,12,["G2596"]],[12,13,["G1565"]],[13,14,["G5561"]],[14,15,["G2532"]],[15,16,["G846"]],[16,17,["G756"]],[17,21,["G5302"]]]},{"k":25603,"v":[[0,1,["G2532"]],[1,3,["G4198"]],[3,5,["G2853"]],[5,8,["G1520"]],[8,9,["G4177"]],[9,11,["G1565"]],[11,12,["G5561"]],[12,13,["G2532"]],[13,15,["G3992"]],[15,16,["G846"]],[16,17,["G1519"]],[17,18,["G848"]],[18,19,["G68"]],[19,21,["G1006"]],[21,22,["G5519"]]]},{"k":25604,"v":[[0,1,["G2532"]],[1,4,["G1937"]],[4,6,["G1072"]],[6,7,["G848"]],[7,8,["G2836"]],[8,9,["G575"]],[9,10,["G3588"]],[10,11,["G2769"]],[11,12,["G3739"]],[12,13,["G3588"]],[13,14,["G5519"]],[14,16,["G2068"]],[16,17,["G2532"]],[17,19,["G3762"]],[19,20,["G1325"]],[20,22,["G846"]]]},{"k":25605,"v":[[0,1,["G1161"]],[1,4,["G2064"]],[4,5,["G1519"]],[5,6,["G1438"]],[6,8,["G2036"]],[8,10,["G4214"]],[10,12,["G3407"]],[12,14,["G3450"]],[14,15,["G3962"]],[15,21,["G4052","G740"]],[21,22,["G1161"]],[22,23,["G1473"]],[23,24,["G622"]],[24,26,["G3042"]]]},{"k":25606,"v":[[0,3,["G450"]],[3,5,["G4198"]],[5,6,["G4314"]],[6,7,["G3450"]],[7,8,["G3962"]],[8,9,["G2532"]],[9,11,["G2046"]],[11,13,["G846"]],[13,14,["G3962"]],[14,17,["G264"]],[17,18,["G1519"]],[18,19,["G3772"]],[19,20,["G2532"]],[20,21,["G1799"]],[21,22,["G4675"]]]},{"k":25607,"v":[[0,1,["G2532"]],[1,2,["G1510"]],[2,4,["G3765"]],[4,5,["G514"]],[5,8,["G2564"]],[8,9,["G4675"]],[9,10,["G5207"]],[10,11,["G4160"]],[11,12,["G3165"]],[12,13,["G5613"]],[13,14,["G1520"]],[14,16,["G4675"]],[16,18,["G3407"]]]},{"k":25608,"v":[[0,1,["G2532"]],[1,3,["G450"]],[3,5,["G2064"]],[5,6,["G4314"]],[6,7,["G1438"]],[7,8,["G3962"]],[8,9,["G1161"]],[9,11,["G846"]],[11,17,["G568","G2089","G3112"]],[17,18,["G846"]],[18,19,["G3962"]],[19,20,["G1492"]],[20,21,["G846"]],[21,22,["G2532"]],[22,24,["G4697"]],[24,25,["G2532"]],[25,26,["G5143"]],[26,28,["G1968"]],[28,29,["G1909"]],[29,30,["G846"]],[30,31,["G5137"]],[31,32,["G2532"]],[32,33,["G2705"]],[33,34,["G846"]]]},{"k":25609,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G3962"]],[7,10,["G264"]],[10,11,["G1519"]],[11,12,["G3772"]],[12,13,["G2532"]],[13,16,["G1799","G4675"]],[16,17,["G2532"]],[17,18,["G1510"]],[18,20,["G3765"]],[20,21,["G514"]],[21,24,["G2564"]],[24,25,["G4675"]],[25,26,["G5207"]]]},{"k":25610,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3962"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G848"]],[6,7,["G1401"]],[7,9,["G1627"]],[9,10,["G3588"]],[10,11,["G4413"]],[11,12,["G4749"]],[12,13,["G2532"]],[13,16,["G1746"]],[16,17,["G846"]],[17,18,["G2532"]],[18,19,["G1325"]],[19,21,["G1146"]],[21,22,["G1519"]],[22,23,["G846"]],[23,24,["G5495"]],[24,25,["G2532"]],[25,26,["G5266"]],[26,27,["G1519"]],[27,29,["G4228"]]]},{"k":25611,"v":[[0,1,["G2532"]],[1,3,["G5342"]],[3,4,["G3588"]],[4,5,["G4618"]],[5,6,["G3448"]],[6,8,["G2380"]],[8,10,["G2532"]],[10,13,["G5315"]],[13,16,["G2165"]]]},{"k":25612,"v":[[0,1,["G3754"]],[1,2,["G3778"]],[2,3,["G3450"]],[3,4,["G5207"]],[4,5,["G2258"]],[5,6,["G3498"]],[6,7,["G2532"]],[7,10,["G326"]],[10,12,["G2258"]],[12,13,["G622"]],[13,14,["G2532"]],[14,16,["G2147"]],[16,17,["G2532"]],[17,19,["G756"]],[19,22,["G2165"]]]},{"k":25613,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G4245"]],[3,4,["G5207"]],[4,5,["G2258"]],[5,6,["G1722"]],[6,8,["G68"]],[8,9,["G2532"]],[9,10,["G5613"]],[10,12,["G2064"]],[12,15,["G1448"]],[15,17,["G3588"]],[17,18,["G3614"]],[18,20,["G191"]],[20,21,["G4858"]],[21,22,["G2532"]],[22,23,["G5525"]]]},{"k":25614,"v":[[0,1,["G2532"]],[1,3,["G4341"]],[3,4,["G1520"]],[4,6,["G3588"]],[6,7,["G3816"]],[7,8,["G2532"]],[8,9,["G4441"]],[9,10,["G5101"]],[10,12,["G5023"]],[12,13,["G1498"]]]},{"k":25615,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G4675"]],[6,7,["G80"]],[7,9,["G2240"]],[9,10,["G2532"]],[10,11,["G4675"]],[11,12,["G3962"]],[12,14,["G2380"]],[14,15,["G3588"]],[15,16,["G4618"]],[16,17,["G3448"]],[17,18,["G3754"]],[18,21,["G618"]],[21,22,["G846"]],[22,25,["G5198"]]]},{"k":25616,"v":[[0,1,["G1161"]],[1,4,["G3710"]],[4,5,["G2532"]],[5,6,["G2309"]],[6,7,["G3756"]],[7,9,["G1525"]],[9,10,["G3767"]],[10,14,["G1831","G846","G3962"]],[14,15,["G2532"]],[15,16,["G3870"]],[16,17,["G846"]]]},{"k":25617,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G611"]],[3,4,["G2036"]],[4,7,["G3962"]],[7,8,["G2400"]],[8,10,["G5118"]],[10,11,["G2094"]],[11,14,["G1398"]],[14,15,["G4671"]],[15,16,["G2532"]],[16,17,["G3928"]],[17,21,["G3763"]],[21,22,["G4675"]],[22,23,["G1785"]],[23,24,["G2532"]],[24,27,["G3763"]],[27,28,["G1325"]],[28,29,["G1698"]],[29,31,["G2056"]],[31,32,["G2443"]],[32,36,["G2165"]],[36,37,["G3326"]],[37,38,["G3450"]],[38,39,["G5384"]]]},{"k":25618,"v":[[0,1,["G1161"]],[1,4,["G3753"]],[4,5,["G3778"]],[5,6,["G4675"]],[6,7,["G5207"]],[7,9,["G2064"]],[9,12,["G2719"]],[12,14,["G979"]],[14,15,["G3326"]],[15,16,["G4204"]],[16,19,["G2380"]],[19,21,["G846"]],[21,22,["G3588"]],[22,23,["G4618"]],[23,24,["G3448"]]]},{"k":25619,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G5043"]],[6,7,["G4771"]],[7,8,["G1488"]],[8,9,["G3842"]],[9,10,["G3326"]],[10,11,["G1700"]],[11,12,["G2532"]],[12,13,["G3956"]],[13,16,["G1699"]],[16,17,["G2076"]],[17,18,["G4674"]]]},{"k":25620,"v":[[0,1,["(G1161)"]],[1,3,["G1163"]],[3,8,["G2165"]],[8,9,["G2532"]],[9,11,["G5463"]],[11,12,["G3754"]],[12,13,["G3778"]],[13,14,["G4675"]],[14,15,["G80"]],[15,16,["G2258"]],[16,17,["G3498"]],[17,18,["G2532"]],[18,21,["G326"]],[21,22,["G2532"]],[22,23,["G2258"]],[23,24,["G622"]],[24,25,["G2532"]],[25,27,["G2147"]]]},{"k":25621,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,4,["G2532"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G3101"]],[7,9,["G2258"]],[9,11,["G5100"]],[11,12,["G4145"]],[12,13,["G444"]],[13,14,["G3739"]],[14,15,["G2192"]],[15,17,["G3623"]],[17,18,["G2532"]],[18,20,["G3778"]],[20,22,["G1225"]],[22,24,["G846"]],[24,25,["G5613"]],[25,28,["G1287"]],[28,29,["G848"]],[29,30,["G5224"]]]},{"k":25622,"v":[[0,1,["G2532"]],[1,3,["G5455"]],[3,4,["G846"]],[4,6,["G2036"]],[6,8,["G846"]],[8,9,["G5101"]],[9,14,["G191"]],[14,15,["G5124"]],[15,16,["G4012"]],[16,17,["G4675"]],[17,18,["G591"]],[18,20,["G3056"]],[20,22,["G4675"]],[22,23,["G3622"]],[23,24,["G1063"]],[24,26,["G1410"]],[26,30,["G3621","G3756","G2089"]]]},{"k":25623,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3623"]],[3,4,["G2036"]],[4,5,["G1722"]],[5,6,["G1438"]],[6,7,["G5101"]],[7,10,["G4160"]],[10,11,["G3754"]],[11,12,["G3450"]],[12,13,["G2962"]],[13,15,["G851"]],[15,16,["G575"]],[16,17,["G1700"]],[17,18,["G3588"]],[18,19,["G3622"]],[19,21,["G2480","G3756"]],[21,22,["G4626"]],[22,24,["G1871"]],[24,27,["G153"]]]},{"k":25624,"v":[[0,3,["G1097"]],[3,4,["G5101"]],[4,6,["G4160"]],[6,7,["G2443"]],[7,8,["G3752"]],[8,12,["G3179"]],[12,14,["G3588"]],[14,15,["G3622"]],[15,18,["G1209"]],[18,19,["G3165"]],[19,20,["G1519"]],[20,21,["G848"]],[21,22,["G3624"]]]},{"k":25625,"v":[[0,1,["G2532"]],[1,3,["G4341"]],[3,4,["G1538"]],[4,5,["G1520"]],[5,7,["G1438"]],[7,8,["G2962"]],[8,9,["G5533"]],[9,13,["G3004"]],[13,15,["G3588"]],[15,16,["G4413"]],[16,18,["G4214"]],[18,19,["G3784"]],[19,22,["G3450"]],[22,23,["G2962"]]]},{"k":25626,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G1540"]],[5,6,["G943"]],[6,8,["G1637"]],[8,9,["G2532"]],[9,11,["G2036"]],[11,13,["G846"]],[13,14,["G1209"]],[14,15,["G4675"]],[15,16,["G1121"]],[16,17,["G2532"]],[17,19,["G2523"]],[19,20,["G5030"]],[20,22,["G1125"]],[22,23,["G4004"]]]},{"k":25627,"v":[[0,1,["G1899"]],[1,2,["G2036"]],[2,5,["G2087"]],[5,6,["G1161"]],[6,8,["G4214"]],[8,9,["G3784"]],[9,10,["G4771"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,13,["G2036"]],[13,15,["G1540"]],[15,16,["G2884"]],[16,18,["G4621"]],[18,19,["G2532"]],[19,21,["G3004"]],[21,23,["G846"]],[23,24,["G1209"]],[24,25,["G4675"]],[25,26,["G1121"]],[26,27,["G2532"]],[27,28,["G1125"]],[28,29,["G3589"]]]},{"k":25628,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G1867"]],[4,5,["G3588"]],[5,6,["G93"]],[6,7,["G3623"]],[7,8,["G3754"]],[8,11,["G4160"]],[11,12,["G5430"]],[12,13,["G3754"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,17,["G5127"]],[17,18,["G165"]],[18,19,["G1526"]],[19,20,["G1519"]],[20,21,["G1438"]],[21,22,["G1074"]],[22,23,["G5429"]],[23,24,["G5228"]],[24,25,["G3588"]],[25,26,["G5207"]],[26,28,["G5457"]]]},{"k":25629,"v":[[0,2,["G2504"]],[2,3,["G3004"]],[3,5,["G5213"]],[5,6,["G4160"]],[6,8,["G1438"]],[8,9,["G5384"]],[9,10,["G1537"]],[10,11,["G3588"]],[11,12,["G3126"]],[12,14,["G93"]],[14,15,["G2443"]],[15,16,["G3752"]],[16,18,["G1587"]],[18,21,["G1209"]],[21,22,["G5209"]],[22,23,["G1519"]],[23,24,["G166"]],[24,25,["G4633"]]]},{"k":25630,"v":[[0,4,["G4103"]],[4,5,["G1722"]],[5,9,["G1646"]],[9,10,["G2076"]],[10,11,["G4103"]],[11,12,["G2532"]],[12,13,["G1722"]],[13,14,["G4183"]],[14,15,["G2532"]],[15,19,["G94"]],[19,20,["G1722"]],[20,22,["G1646"]],[22,23,["G2076"]],[23,24,["G94"]],[24,25,["G2532"]],[25,26,["G1722"]],[26,27,["G4183"]]]},{"k":25631,"v":[[0,1,["G1487"]],[1,2,["G3767"]],[2,5,["G3756"]],[5,6,["G1096"]],[6,7,["G4103"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G94"]],[10,11,["G3126"]],[11,12,["G5101"]],[12,17,["G4100","G5213"]],[17,18,["G3588"]],[18,19,["G228"]],[19,20,[]]]},{"k":25632,"v":[[0,1,["G2532"]],[1,2,["G1487"]],[2,5,["G3756"]],[5,6,["G1096"]],[6,7,["G4103"]],[7,8,["G1722"]],[8,13,["G245"]],[13,14,["G5101"]],[14,16,["G1325"]],[16,17,["G5213"]],[17,22,["G5212"]]]},{"k":25633,"v":[[0,1,["G3762"]],[1,2,["G3610"]],[2,3,["G1410"]],[3,4,["G1398"]],[4,5,["G1417"]],[5,6,["G2962"]],[6,7,["G1063"]],[7,8,["G2228"]],[8,11,["G3404"]],[11,12,["G3588"]],[12,13,["G1520"]],[13,14,["G2532"]],[14,15,["G25"]],[15,16,["G3588"]],[16,17,["G2087"]],[17,19,["G2228"]],[19,23,["G472"]],[23,25,["G1520"]],[25,26,["G2532"]],[26,27,["G2706"]],[27,28,["G3588"]],[28,29,["G2087"]],[29,31,["G1410","G3756"]],[31,32,["G1398"]],[32,33,["G2316"]],[33,34,["G2532"]],[34,35,["G3126"]]]},{"k":25634,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5330"]],[3,4,["G2532"]],[4,6,["G5225"]],[6,7,["G5366"]],[7,8,["G191"]],[8,9,["G3956"]],[9,11,["G5023"]],[11,12,["G2532"]],[12,14,["G1592"]],[14,15,["G846"]]]},{"k":25635,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G5210"]],[6,7,["G2075"]],[7,10,["G1344"]],[10,11,["G1438"]],[11,12,["G1799"]],[12,13,["G444"]],[13,14,["G1161"]],[14,15,["G2316"]],[15,16,["G1097"]],[16,17,["G5216"]],[17,18,["G2588"]],[18,19,["G3754"]],[19,24,["G5308"]],[24,25,["G1722"]],[25,26,["G444"]],[26,27,["G2076"]],[27,28,["G946"]],[28,31,["G1799"]],[31,33,["G2316"]]]},{"k":25636,"v":[[0,1,["G3588"]],[1,2,["G3551"]],[2,3,["G2532"]],[3,4,["G3588"]],[4,5,["G4396"]],[5,7,["G2193"]],[7,8,["G2491"]],[8,9,["G575"]],[9,11,["G5119"]],[11,12,["G3588"]],[12,13,["G932"]],[13,15,["G2316"]],[15,17,["G2097"]],[17,18,["G2532"]],[18,20,["G3956"]],[20,21,["G971"]],[21,22,["G1519"]],[22,23,["G846"]]]},{"k":25637,"v":[[0,1,["G1161"]],[1,3,["G2076"]],[3,4,["G2123"]],[4,6,["G3772"]],[6,7,["G2532"]],[7,8,["G1093"]],[8,10,["G3928"]],[10,11,["G2228"]],[11,12,["G3391"]],[12,13,["G2762"]],[13,15,["G3588"]],[15,16,["G3551"]],[16,18,["G4098"]]]},{"k":25638,"v":[[0,1,["G3956"]],[1,3,["G630"]],[3,4,["G848"]],[4,5,["G1135"]],[5,6,["G2532"]],[6,7,["G1060"]],[7,8,["G2087"]],[8,10,["G3431"]],[10,11,["G2532"]],[11,12,["G3956"]],[12,13,["G1060"]],[13,18,["G630"]],[18,19,["G575"]],[19,21,["G435"]],[21,23,["G3431"]]]},{"k":25639,"v":[[0,1,["(G1161)"]],[1,2,["G2258"]],[2,4,["G5100"]],[4,5,["G4145"]],[5,6,["G444"]],[6,7,["(G2532)"]],[7,9,["G1737"]],[9,11,["G4209"]],[11,12,["G2532"]],[12,14,["G1040"]],[14,16,["G2165"]],[16,17,["G2988"]],[17,19,["G2596","G2250"]]]},{"k":25640,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,5,["G5100"]],[5,6,["G4434"]],[6,7,["G3686"]],[7,8,["G2976"]],[8,9,["G3739"]],[9,11,["G906"]],[11,12,["G4314"]],[12,13,["G846"]],[13,14,["G4440"]],[14,17,["G1669"]]]},{"k":25641,"v":[[0,1,["G2532"]],[1,2,["G1937"]],[2,5,["G5526"]],[5,6,["G575"]],[6,7,["G3588"]],[7,8,["G5589"]],[8,10,["G4098"]],[10,11,["G575"]],[11,12,["G3588"]],[12,14,["G4145"]],[14,15,["G5132"]],[15,16,["G235","G2532"]],[16,17,["G3588"]],[17,18,["G2965"]],[18,19,["G2064"]],[19,21,["G621"]],[21,22,["G846"]],[22,23,["G1668"]]]},{"k":25642,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,7,["G3588"]],[7,8,["G4434"]],[8,9,["G599"]],[9,10,["G2532"]],[10,11,["(G846)"]],[11,12,["G667"]],[12,13,["G5259"]],[13,14,["G3588"]],[14,15,["G32"]],[15,16,["G1519"]],[16,17,["G11"]],[17,18,["G2859","(G1161)"]],[18,19,["G3588"]],[19,21,["G4145"]],[21,22,["G2532"]],[22,23,["G599"]],[23,24,["G2532"]],[24,26,["G2290"]]]},{"k":25643,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G86"]],[3,6,["G1869"]],[6,7,["G848"]],[7,8,["G3788"]],[8,9,["G5225"]],[9,10,["G1722"]],[10,11,["G931"]],[11,13,["G3708"]],[13,14,["G11"]],[14,16,["G575","G3113"]],[16,17,["G2532"]],[17,18,["G2976"]],[18,19,["G1722"]],[19,20,["G846"]],[20,21,["G2859"]]]},{"k":25644,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G5455"]],[3,5,["G2036"]],[5,6,["G3962"]],[6,7,["G11"]],[7,9,["G1653"]],[9,11,["G3165"]],[11,12,["G2532"]],[12,13,["G3992"]],[13,14,["G2976"]],[14,15,["G2443"]],[15,18,["G911"]],[18,19,["G3588"]],[19,20,["G206"]],[20,22,["G848"]],[22,23,["G1147"]],[23,25,["G5204"]],[25,26,["G2532"]],[26,27,["G2711"]],[27,28,["G3450"]],[28,29,["G1100"]],[29,30,["G3754"]],[30,33,["G3600"]],[33,34,["G1722"]],[34,35,["G5026"]],[35,36,["G5395"]]]},{"k":25645,"v":[[0,1,["G1161"]],[1,2,["G11"]],[2,3,["G2036"]],[3,4,["G5043"]],[4,5,["G3415"]],[5,6,["G3754"]],[6,7,["G4771"]],[7,8,["G1722"]],[8,9,["G4675"]],[9,10,["G2222"]],[10,11,["G618"]],[11,12,["G4675"]],[12,14,["G18"]],[14,15,["G2532"]],[15,16,["G3668"]],[16,17,["G2976"]],[17,19,["G2556"]],[19,20,["G1161"]],[20,21,["G3568"]],[21,22,["G3592"]],[22,24,["G3870"]],[24,25,["G1161"]],[25,26,["G4771"]],[26,28,["G3600"]]]},{"k":25646,"v":[[0,1,["G2532"]],[1,2,["G1909"]],[2,3,["G3956"]],[3,4,["G5125"]],[4,5,["G3342"]],[5,6,["G2257"]],[6,7,["G2532"]],[7,8,["G5216"]],[8,12,["G3173"]],[12,13,["G5490"]],[13,14,["G4741"]],[14,16,["G3704"]],[16,19,["G2309"]],[19,20,["G1224"]],[20,22,["G1782"]],[22,23,["G4314"]],[23,24,["G5209"]],[24,25,["G1410","G3361"]],[25,26,["G3366"]],[26,29,["G1276"]],[29,30,["G4314"]],[30,31,["G2248"]],[31,36,["G1564"]]]},{"k":25647,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G2065"]],[5,6,["G4571"]],[6,7,["G3767"]],[7,8,["G3962"]],[8,9,["G2443"]],[9,12,["G3992"]],[12,13,["G846"]],[13,14,["G1519"]],[14,15,["G3450"]],[15,16,["G3962"]],[16,17,["G3624"]]]},{"k":25648,"v":[[0,1,["G1063"]],[1,3,["G2192"]],[3,4,["G4002"]],[4,5,["G80"]],[5,6,["G3704"]],[6,9,["G1263"]],[9,11,["G846"]],[11,12,["G3363"]],[12,13,["G846"]],[13,14,["G2532"]],[14,15,["G2064"]],[15,16,["G1519"]],[16,17,["G5126"]],[17,18,["G5117"]],[18,20,["G931"]]]},{"k":25649,"v":[[0,1,["G11"]],[1,2,["G3004"]],[2,4,["G846"]],[4,6,["G2192"]],[6,7,["G3475"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G4396"]],[10,13,["G191"]],[13,14,["G846"]]]},{"k":25650,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G3780"]],[4,5,["G3962"]],[5,6,["G11"]],[6,7,["G235"]],[7,8,["G1437"]],[8,9,["G5100"]],[9,10,["G4198"]],[10,11,["G4314"]],[11,12,["G846"]],[12,13,["G575"]],[13,15,["G3498"]],[15,18,["G3340"]]]},{"k":25651,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G846"]],[5,8,["G191"]],[8,9,["G3756"]],[9,10,["G3475"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G4396"]],[13,14,["G3756"]],[14,18,["G3982"]],[18,19,["G3761","G1437"]],[19,20,["G5100"]],[20,21,["G450"]],[21,22,["G1537"]],[22,24,["G3498"]]]},{"k":25652,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,4,["G4314"]],[4,5,["G3588"]],[5,6,["G3101"]],[6,8,["G2076"]],[8,9,["G418"]],[9,11,["G3361"]],[11,12,["G4625"]],[12,14,["G2064"]],[14,15,["G1161"]],[15,16,["G3759"]],[16,19,["G1223"]],[19,20,["G3739"]],[20,22,["G2064"]]]},{"k":25653,"v":[[0,3,["G3081"]],[3,5,["G846"]],[5,6,["G1487"]],[6,8,["G3458","G3684"]],[8,10,["G4029"]],[10,11,["G4012"]],[11,12,["G846"]],[12,13,["G5137"]],[13,14,["G2532"]],[14,16,["G4496"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,19,["G2281"]],[19,20,["G2228"]],[20,21,["G2443"]],[21,24,["G4624"]],[24,25,["G1520"]],[25,27,["G5130"]],[27,29,["G3398"]]]},{"k":25654,"v":[[0,2,["G4337"]],[2,4,["G1438","(G1161)"]],[4,5,["G1437"]],[5,6,["G4675"]],[6,7,["G80"]],[7,8,["G264"]],[8,9,["G1519"]],[9,10,["G4571"]],[10,11,["G2008"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G1437"]],[14,16,["G3340"]],[16,17,["G863"]],[17,18,["G846"]]]},{"k":25655,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G264"]],[4,5,["G1519"]],[5,6,["G4571"]],[6,8,["G2034"]],[8,11,["G2250"]],[11,12,["G2532"]],[12,14,["G2034"]],[14,17,["G2250"]],[17,19,["G1994"]],[19,20,["G1909"]],[20,21,["G4571"]],[21,22,["G3004"]],[22,24,["G3340"]],[24,27,["G863"]],[27,28,["G846"]]]},{"k":25656,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G652"]],[3,4,["G2036"]],[4,6,["G3588"]],[6,7,["G2962"]],[7,8,["G4369"]],[8,9,["G2254"]],[9,10,["G4102"]]]},{"k":25657,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2036"]],[4,5,["G1487"]],[5,7,["G2192"]],[7,8,["G4102"]],[8,9,["G5613"]],[9,11,["G2848"]],[11,14,["G4615"]],[14,17,["G3004","G302"]],[17,19,["G5026"]],[19,21,["G4807"]],[21,28,["G1610"]],[28,29,["G2532"]],[29,32,["G5452"]],[32,33,["G1722"]],[33,34,["G3588"]],[34,35,["G2281"]],[35,36,["G2532"]],[36,39,["G5219","G302"]],[39,40,["G5213"]]]},{"k":25658,"v":[[0,1,["G1161"]],[1,2,["G5101"]],[2,3,["G1537"]],[3,4,["G5216"]],[4,5,["G2192"]],[5,7,["G1401"]],[7,8,["G722"]],[8,9,["G2228"]],[9,11,["G4165"]],[11,13,["G2046"]],[13,18,["G2112"]],[18,22,["G1525"]],[22,23,["G1537"]],[23,24,["G3588"]],[24,25,["G68"]],[25,26,["G3928"]],[26,31,["G377"]]]},{"k":25659,"v":[[0,1,["G235"]],[1,3,["G3780"]],[3,5,["G2046"]],[5,7,["G846"]],[7,9,["G2090"]],[9,10,["G5101"]],[10,13,["G1172"]],[13,14,["G2532"]],[14,15,["G4024"]],[15,18,["G1247"]],[18,19,["G3427"]],[19,20,["G2193"]],[20,23,["G5315"]],[23,24,["G2532"]],[24,25,["G4095"]],[25,26,["G2532"]],[26,27,["G3326","G5023"]],[27,28,["G4771"]],[28,30,["G5315"]],[30,31,["G2532"]],[31,32,["G4095"]]]},{"k":25660,"v":[[0,3,["G2192","G3361","G5485"]],[3,4,["G1565"]],[4,5,["G1401"]],[5,6,["G3754"]],[6,8,["G4160"]],[8,13,["G1299"]],[13,14,["G846"]],[14,16,["G1380"]],[16,17,["G3756"]]]},{"k":25661,"v":[[0,2,["G3779","(G2532)"]],[2,3,["G5210"]],[3,4,["G3752"]],[4,8,["G4160"]],[8,9,["G3956"]],[9,14,["G1299"]],[14,15,["G5213"]],[15,16,["G3004"]],[16,18,["G2070"]],[18,19,["G888"]],[19,20,["G1401"]],[20,21,["(G3754)"]],[21,23,["G4160"]],[23,25,["G3739"]],[25,28,["G3784"]],[28,30,["G4160"]]]},{"k":25662,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G846"]],[7,8,["G4198"]],[8,9,["G1519"]],[9,10,["G2419"]],[10,11,["G2532"]],[11,12,["G846"]],[12,13,["G1330"]],[13,14,["G1223"]],[14,16,["G3319"]],[16,18,["G4540"]],[18,19,["G2532"]],[19,20,["G1056"]]]},{"k":25663,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,4,["G1525"]],[4,5,["G1519"]],[5,7,["G5100"]],[7,8,["G2968"]],[8,10,["G528"]],[10,11,["G846"]],[11,12,["G1176"]],[12,13,["G435"]],[13,16,["G3015"]],[16,17,["G3739"]],[17,18,["G2476"]],[18,20,["G4207"]]]},{"k":25664,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,4,["G142"]],[4,6,["G5456"]],[6,8,["G3004"]],[8,9,["G2424"]],[9,10,["G1988"]],[10,12,["G1653"]],[12,14,["G2248"]]]},{"k":25665,"v":[[0,1,["G2532"]],[1,4,["G1492"]],[4,7,["G2036"]],[7,9,["G846"]],[9,10,["G4198"]],[10,11,["G1925"]],[11,12,["G1438"]],[12,14,["G3588"]],[14,15,["G2409"]],[15,16,["G2532"]],[16,20,["G1096"]],[20,23,["G846"]],[23,24,["G5217"]],[24,27,["G2511"]]]},{"k":25666,"v":[[0,1,["G1161"]],[1,2,["G1520"]],[2,3,["G1537"]],[3,4,["G846"]],[4,7,["G1492"]],[7,8,["G3754"]],[8,11,["G2390"]],[11,13,["G5290"]],[13,15,["G3326"]],[15,17,["G3173"]],[17,18,["G5456"]],[18,19,["G1392"]],[19,20,["G2316"]]]},{"k":25667,"v":[[0,1,["G2532"]],[1,3,["G4098"]],[3,4,["G1909"]],[4,6,["G4383"]],[6,7,["G3844"]],[7,8,["G846"]],[8,9,["G4228"]],[9,12,["G2168","G846"]],[12,13,["G2532"]],[13,14,["G846"]],[14,15,["G2258"]],[15,17,["G4541"]]]},{"k":25668,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,7,["G3780"]],[7,8,["G1176"]],[8,9,["G2511"]],[9,10,["G1161"]],[10,11,["G4226"]],[11,13,["G3588"]],[13,14,["G1767"]]]},{"k":25669,"v":[[0,3,["G3756"]],[3,4,["G2147"]],[4,6,["G5290"]],[6,8,["G1325"]],[8,9,["G1391"]],[9,11,["G2316"]],[11,12,["G1508"]],[12,13,["G3778"]],[13,14,["G241"]]]},{"k":25670,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G450"]],[6,9,["G4198"]],[9,10,["G4675"]],[10,11,["G4102"]],[11,15,["G4982","G4571"]]]},{"k":25671,"v":[[0,1,["G1161"]],[1,5,["G1905"]],[5,6,["G5259"]],[6,7,["G3588"]],[7,8,["G5330"]],[8,9,["G4219"]],[9,10,["G3588"]],[10,11,["G932"]],[11,13,["G2316"]],[13,15,["G2064"]],[15,17,["G611"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G2036"]],[20,21,["G3588"]],[21,22,["G932"]],[22,24,["G2316"]],[24,25,["G2064"]],[25,26,["G3756"]],[26,27,["G3326"]],[27,28,["G3907"]]]},{"k":25672,"v":[[0,1,["G3761"]],[1,4,["G2046"]],[4,5,["G2400"]],[5,6,["G5602"]],[6,7,["G2228"]],[7,8,["G2400"]],[8,9,["G1563"]],[9,10,["G1063"]],[10,11,["G2400"]],[11,12,["G3588"]],[12,13,["G932"]],[13,15,["G2316"]],[15,16,["G2076"]],[16,17,["G1787"]],[17,18,["G5216"]]]},{"k":25673,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G3588"]],[5,6,["G3101"]],[6,8,["G2250"]],[8,10,["G2064"]],[10,11,["G3753"]],[11,14,["G1937"]],[14,16,["G1492"]],[16,17,["G3391"]],[17,19,["G3588"]],[19,20,["G2250"]],[20,22,["G3588"]],[22,23,["G5207"]],[23,25,["G444"]],[25,26,["G2532"]],[26,29,["G3756"]],[29,30,["G3700"]],[30,31,[]]]},{"k":25674,"v":[[0,1,["G2532"]],[1,4,["G2046"]],[4,6,["G5213"]],[6,7,["G2400"]],[7,8,["G5602"]],[8,9,["G2228"]],[9,10,["G2400"]],[10,11,["G1563"]],[11,14,["G565","G3361"]],[14,16,["G3366"]],[16,17,["G1377"]],[17,18,[]]]},{"k":25675,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G3588"]],[3,4,["G796"]],[4,6,["G797"]],[6,7,["G1537"]],[7,10,["G3588"]],[10,12,["G5259"]],[12,13,["G3772"]],[13,14,["G2989"]],[14,15,["G1519"]],[15,17,["G3588"]],[17,19,["G5259"]],[19,20,["G3772"]],[20,21,["G3779"]],[21,23,["G2532"]],[23,24,["G3588"]],[24,25,["G5207"]],[25,27,["G444"]],[27,28,["G2071"]],[28,29,["G1722"]],[29,30,["G848"]],[30,31,["G2250"]]]},{"k":25676,"v":[[0,1,["G1161"]],[1,2,["G4412"]],[2,3,["G1163"]],[3,4,["G846"]],[4,5,["G3958"]],[5,7,["G4183"]],[7,8,["G2532"]],[8,10,["G593"]],[10,11,["G575"]],[11,12,["G5026"]],[12,13,["G1074"]]]},{"k":25677,"v":[[0,1,["G2532"]],[1,2,["G2531"]],[2,4,["G1096"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G2250"]],[7,9,["G3575"]],[9,10,["G3779"]],[10,13,["G2071"]],[13,14,["G2532"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G2250"]],[17,19,["G3588"]],[19,20,["G5207"]],[20,22,["G444"]]]},{"k":25678,"v":[[0,3,["G2068"]],[3,5,["G4095"]],[5,8,["G1060"]],[8,13,["G1547"]],[13,14,["G891"]],[14,15,["(G3739)"]],[15,16,["G2250"]],[16,18,["G3575"]],[18,19,["G1525"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G2787"]],[22,23,["G2532"]],[23,24,["G3588"]],[24,25,["G2627"]],[25,26,["G2064"]],[26,27,["G2532"]],[27,28,["G622"]],[28,30,["G537"]]]},{"k":25679,"v":[[0,1,["G3668"]],[1,2,["G2532"]],[2,3,["G5613"]],[3,5,["G1096"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G2250"]],[8,10,["G3091"]],[10,13,["G2068"]],[13,15,["G4095"]],[15,17,["G59"]],[17,19,["G4453"]],[19,21,["G5452"]],[21,23,["G3618"]]]},{"k":25680,"v":[[0,1,["G1161"]],[1,3,["G3739"]],[3,4,["G2250"]],[4,6,["G3091"]],[6,8,["G1831"]],[8,9,["G575"]],[9,10,["G4670"]],[10,12,["G1026"]],[12,13,["G4442"]],[13,14,["G2532"]],[14,15,["G2303"]],[15,16,["G575"]],[16,17,["G3772"]],[17,18,["G2532"]],[18,19,["G622"]],[19,21,["G537"]]]},{"k":25681,"v":[[0,2,["G2596","G5024"]],[2,5,["G2071"]],[5,7,["(G3739)"]],[7,8,["G2250"]],[8,10,["G3588"]],[10,11,["G5207"]],[11,13,["G444"]],[13,15,["G601"]]]},{"k":25682,"v":[[0,1,["G1722"]],[1,2,["G1565"]],[2,3,["G2250"]],[3,5,["G3739"]],[5,7,["G2071"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,10,["G1430"]],[10,11,["G2532"]],[11,12,["G846"]],[12,13,["G4632"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G3614"]],[16,19,["G3361"]],[19,21,["G2597"]],[21,25,["G142","G846"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,30,["G1722"]],[30,31,["G3588"]],[31,32,["G68"]],[32,35,["G3668"]],[35,36,["G3361"]],[36,37,["G1994"]],[37,38,["G1519","G3694"]]]},{"k":25683,"v":[[0,1,["G3421"]],[1,2,["G3091"]],[2,3,["G1135"]]]},{"k":25684,"v":[[0,1,["G3739","G1437"]],[1,3,["G2212"]],[3,5,["G4982"]],[5,6,["G848"]],[6,7,["G5590"]],[7,9,["G622"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G3739","G1437"]],[12,14,["G622"]],[14,15,["G848"]],[15,18,["G2225"]],[18,19,["G846"]]]},{"k":25685,"v":[[0,2,["G3004"]],[2,3,["G5213"]],[3,5,["G5026"]],[5,6,["G3571"]],[6,9,["G2071"]],[9,10,["G1417"]],[10,12,["G1909"]],[12,13,["G3391"]],[13,14,["G2825"]],[14,15,["G3588"]],[15,16,["G1520"]],[16,19,["G3880"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G2087"]],[22,25,["G863"]]]},{"k":25686,"v":[[0,1,["G1417"]],[1,4,["G2071"]],[4,5,["G229"]],[5,6,["G1909","G846"]],[6,7,["G3588"]],[7,8,["G3391"]],[8,11,["G3880"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G2087"]],[14,15,["G863"]]]},{"k":25687,"v":[[0,1,["G1417"]],[1,4,["G2071"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G68"]],[7,8,["G3588"]],[8,9,["G1520"]],[9,12,["G3880"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G2087"]],[15,16,["G863"]]]},{"k":25688,"v":[[0,1,["G2532"]],[1,3,["G611"]],[3,5,["G3004"]],[5,7,["G846"]],[7,8,["G4226"]],[8,9,["G2962"]],[9,10,["G1161"]],[10,11,["G3588"]],[11,12,["G2036"]],[12,14,["G846"]],[14,15,["G3699"]],[15,16,["G3588"]],[16,17,["G4983"]],[17,19,["G1563"]],[19,21,["G3588"]],[21,22,["G105"]],[22,25,["G4863"]]]},{"k":25689,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,4,["(G2532)"]],[4,5,["G3850"]],[5,7,["G846"]],[7,13,["G1163"]],[13,14,["G3842"]],[14,16,["G4336"]],[16,17,["G2532"]],[17,18,["G3361"]],[18,20,["G1573"]]]},{"k":25690,"v":[[0,1,["G3004"]],[1,3,["G2258"]],[3,4,["G1722"]],[4,5,["(G5100)"]],[5,6,["G4172"]],[6,7,["(G5100)"]],[7,8,["G2923"]],[8,10,["G5399"]],[10,11,["G3361"]],[11,12,["G2316"]],[12,13,["G2532","G3361"]],[13,14,["G1788"]],[14,15,["G444"]]]},{"k":25691,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,5,["G5503"]],[5,6,["G1722"]],[6,7,["G1565"]],[7,8,["G4172"]],[8,9,["G2532"]],[9,11,["G2064"]],[11,12,["G4314"]],[12,13,["G846"]],[13,14,["G3004"]],[14,15,["G1556"]],[15,16,["G3165"]],[16,17,["G575"]],[17,18,["G3450"]],[18,19,["G476"]]]},{"k":25692,"v":[[0,1,["G2532"]],[1,3,["G2309"]],[3,4,["G3756"]],[4,7,["G1909","G5550"]],[7,8,["G1161"]],[8,9,["G3326","G5023"]],[9,11,["G2036"]],[11,12,["G1722"]],[12,13,["G1438"]],[13,14,["G1499"]],[14,16,["G5399"]],[16,17,["G3756"]],[17,18,["G2316"]],[18,19,["G2532","G3756"]],[19,20,["G1788"]],[20,21,["G444"]]]},{"k":25693,"v":[[0,1,["G1065"]],[1,3,["G5026"]],[3,4,["G5503"]],[4,5,["G3930","G2873"]],[5,6,["G3427"]],[6,9,["G1556"]],[9,10,["G846"]],[10,11,["G3363"]],[11,14,["G1519","G5056"]],[14,15,["G2064"]],[15,17,["G5299"]],[17,18,["G3165"]]]},{"k":25694,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2036"]],[4,5,["G191"]],[5,6,["G5101"]],[6,7,["G3588"]],[7,8,["G93"]],[8,9,["G2923"]],[9,10,["G3004"]]]},{"k":25695,"v":[[0,1,["G1161"]],[1,3,["G3364"]],[3,4,["G2316"]],[4,5,["G4160","G1557"]],[5,7,["G848"]],[7,8,["G1588"]],[8,10,["G994"]],[10,11,["G2250"]],[11,12,["G2532"]],[12,13,["G3571"]],[13,14,["G4314"]],[14,15,["G846"]],[15,16,["G2532"]],[16,19,["G3114"]],[19,20,["G1909"]],[20,21,["G846"]]]},{"k":25696,"v":[[0,2,["G3004"]],[2,3,["G5213"]],[3,4,["G3754"]],[4,7,["G4160","G1557"]],[7,8,["G846"]],[8,9,["G1722","G5034"]],[9,10,["G4133"]],[10,12,["G3588"]],[12,13,["G5207"]],[13,15,["G444"]],[15,16,["G2064"]],[16,17,["(G687)"]],[17,19,["G2147"]],[19,20,["G4102"]],[20,21,["G1909"]],[21,22,["G3588"]],[22,23,["G1093"]]]},{"k":25697,"v":[[0,1,["G1161"]],[1,3,["G2036","(G2532)"]],[3,4,["G5026"]],[4,5,["G3850"]],[5,6,["G4314"]],[6,7,["G5100"]],[7,9,["G3982"]],[9,10,["G1909"]],[10,11,["G1438"]],[11,12,["G3754"]],[12,14,["G1526"]],[14,15,["G1342"]],[15,16,["G2532"]],[16,17,["G1848"]],[17,18,["G3062"]]]},{"k":25698,"v":[[0,1,["G1417"]],[1,2,["G444"]],[2,4,["G305"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G2411"]],[7,9,["G4336"]],[9,10,["G3588"]],[10,11,["G1520"]],[11,13,["G5330"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G2087"]],[16,18,["G5057"]]]},{"k":25699,"v":[[0,1,["G3588"]],[1,2,["G5330"]],[2,3,["G2476"]],[3,5,["G4336"]],[5,6,["G5023"]],[6,7,["G4314"]],[7,8,["G1438"]],[8,9,["G2316"]],[9,11,["G2168"]],[11,12,["G4671"]],[12,13,["G3754"]],[13,15,["G1510"]],[15,16,["G3756"]],[16,17,["G5618"]],[17,18,["G3062"]],[18,19,["G444"]],[19,21,["G727"]],[21,22,["G94"]],[22,23,["G3432"]],[23,24,["G2228"]],[24,25,["G2532"]],[25,26,["G5613"]],[26,27,["G3778"]],[27,28,["G5057"]]]},{"k":25700,"v":[[0,2,["G3522"]],[2,3,["G1364"]],[3,5,["G3588"]],[5,6,["G4521"]],[6,9,["G586"]],[9,11,["G3956"]],[11,12,["G3745"]],[12,14,["G2932"]]]},{"k":25701,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5057"]],[3,4,["G2476"]],[4,6,["G3113"]],[6,7,["G2309"]],[7,8,["G3756"]],[8,10,["G1869"]],[10,13,["G3761"]],[13,15,["G3788"]],[15,16,["G1519"]],[16,17,["G3772"]],[17,18,["G235"]],[18,19,["G5180"]],[19,20,["G1519"]],[20,21,["G848"]],[21,22,["G4738"]],[22,23,["G3004"]],[23,24,["G2316"]],[24,26,["G2433"]],[26,28,["G3427"]],[28,30,["G268"]]]},{"k":25702,"v":[[0,2,["G3004"]],[2,3,["G5213"]],[3,5,["G3778"]],[5,7,["G2597"]],[7,8,["G1519"]],[8,9,["G848"]],[9,10,["G3624"]],[10,11,["G1344"]],[11,13,["G2228"]],[13,15,["G1565"]],[15,16,["G3754"]],[16,18,["G3956"]],[18,20,["G5312"]],[20,21,["G1438"]],[21,24,["G5013"]],[24,25,["G1161"]],[25,28,["G5013"]],[28,29,["G1438"]],[29,32,["G5312"]]]},{"k":25703,"v":[[0,1,["G1161"]],[1,3,["G4374"]],[3,5,["G846"]],[5,6,["G2532"]],[6,7,["G1025"]],[7,8,["G2443"]],[8,11,["G680"]],[11,12,["G846"]],[12,13,["G1161"]],[13,16,["G3101"]],[16,17,["G1492"]],[17,20,["G2008"]],[20,21,["G846"]]]},{"k":25704,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G4341"]],[3,4,["G846"]],[4,8,["G2036"]],[8,9,["G863"]],[9,11,["G3813"]],[11,13,["G2064"]],[13,14,["G4314"]],[14,15,["G3165"]],[15,16,["G2532"]],[16,17,["G2967"]],[17,18,["G846"]],[18,19,["G3361"]],[19,20,["G1063"]],[20,22,["G5108"]],[22,23,["G2076"]],[23,24,["G3588"]],[24,25,["G932"]],[25,27,["G2316"]]]},{"k":25705,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3739","G1437"]],[6,8,["G3361"]],[8,9,["G1209"]],[9,10,["G3588"]],[10,11,["G932"]],[11,13,["G2316"]],[13,14,["G5613"]],[14,17,["G3813"]],[17,21,["G3364"]],[21,22,["G1525"]],[22,23,["G1519","G846"]]]},{"k":25706,"v":[[0,1,["G2532"]],[1,3,["G5100"]],[3,4,["G758"]],[4,5,["G1905"]],[5,6,["G846"]],[6,7,["G3004"]],[7,8,["G18"]],[8,9,["G1320"]],[9,10,["G5101"]],[10,13,["G4160"]],[13,15,["G2816"]],[15,16,["G166"]],[16,17,["G2222"]]]},{"k":25707,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G5101"]],[6,7,["G3004"]],[7,9,["G3165"]],[9,10,["G18"]],[10,11,["G3762"]],[11,13,["G18"]],[13,14,["G1508"]],[14,15,["G1520"]],[15,18,["G2316"]]]},{"k":25708,"v":[[0,2,["G1492"]],[2,3,["G3588"]],[3,4,["G1785"]],[4,6,["G3361"]],[6,8,["G3431"]],[8,10,["G3361"]],[10,11,["G5407"]],[11,13,["G3361"]],[13,14,["G2813"]],[14,16,["G3361"]],[16,19,["G5576"]],[19,20,["G5091"]],[20,21,["G4675"]],[21,22,["G3962"]],[22,23,["G2532"]],[23,24,["G4675"]],[24,25,["G3384"]]]},{"k":25709,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G3956"]],[4,5,["G5023"]],[5,8,["G5442"]],[8,9,["G1537"]],[9,10,["G3450"]],[10,11,["G3503"]],[11,12,[]]]},{"k":25710,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,4,["G191"]],[4,6,["G5023"]],[6,8,["G2036"]],[8,10,["G846"]],[10,11,["G2089"]],[11,12,["G3007"]],[12,13,["G4671"]],[13,15,["G1520"]],[15,16,["G4453"]],[16,17,["G3956"]],[17,18,["G3745"]],[18,20,["G2192"]],[20,21,["G2532"]],[21,22,["G1239"]],[22,25,["G4434"]],[25,26,["G2532"]],[26,29,["G2192"]],[29,30,["G2344"]],[30,31,["G1722"]],[31,32,["G3772"]],[32,33,["G2532"]],[33,34,["G1204"]],[34,35,["G190"]],[35,36,["G3427"]]]},{"k":25711,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G191"]],[4,5,["G5023"]],[5,7,["G1096"]],[7,9,["G4036"]],[9,10,["G1063"]],[10,12,["G2258"]],[12,13,["G4970"]],[13,14,["G4145"]]]},{"k":25712,"v":[[0,1,["G1161"]],[1,3,["G2424"]],[3,4,["G1492"]],[4,6,["G846"]],[6,7,["G1096"]],[7,9,["G4036"]],[9,11,["G2036"]],[11,12,["G4459"]],[12,13,["G1423"]],[13,17,["G2192"]],[17,18,["G5536"]],[18,19,["G1525"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G932"]],[22,24,["G2316"]]]},{"k":25713,"v":[[0,1,["G1063"]],[1,3,["G2076"]],[3,4,["G2123"]],[4,7,["G2574"]],[7,9,["G1525"]],[9,10,["G1223"]],[10,12,["G4476"]],[12,13,["G5168"]],[13,14,["G2228"]],[14,18,["G4145"]],[18,20,["G1525"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G932"]],[23,25,["G2316"]]]},{"k":25714,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,6,["G2036"]],[6,7,["G5101"]],[7,8,["G2532"]],[8,9,["G1410"]],[9,11,["G4982"]]]},{"k":25715,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,8,["G102"]],[8,9,["G3844"]],[9,10,["G444"]],[10,11,["G2076"]],[11,12,["G1415"]],[12,13,["G3844"]],[13,14,["G2316"]]]},{"k":25716,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2036"]],[3,4,["G2400"]],[4,5,["G2249"]],[5,7,["G863"]],[7,8,["G3956"]],[8,9,["G2532"]],[9,10,["G190"]],[10,11,["G4671"]]]},{"k":25717,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G281"]],[6,8,["G3004"]],[8,10,["G5213"]],[10,12,["G2076"]],[12,14,["G3762"]],[14,15,["G3739"]],[15,17,["G863"]],[17,18,["G3614"]],[18,19,["G2228"]],[19,20,["G1118"]],[20,21,["G2228"]],[21,22,["G80"]],[22,23,["G2228"]],[23,24,["G1135"]],[24,25,["G2228"]],[25,26,["G5043"]],[26,32,["G1752","G3588","G932","G2316"]]]},{"k":25718,"v":[[0,1,["G3739"]],[1,3,["G3364"]],[3,4,["G618"]],[4,6,["G4179"]],[6,7,["G1722"]],[7,8,["G5129"]],[8,10,["G2540"]],[10,11,["G2532"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G165"]],[14,16,["G2064"]],[16,17,["G2222"]],[17,18,["G166"]]]},{"k":25719,"v":[[0,1,["G1161"]],[1,3,["G3880"]],[3,6,["G3588"]],[6,7,["G1427"]],[7,9,["G2036"]],[9,10,["G4314"]],[10,11,["G846"]],[11,12,["G2400"]],[12,15,["G305"]],[15,16,["G1519"]],[16,17,["G2414"]],[17,18,["G2532"]],[18,20,["G3956"]],[20,23,["G1125"]],[23,24,["G1223"]],[24,25,["G3588"]],[25,26,["G4396"]],[26,28,["G3588"]],[28,29,["G5207"]],[29,31,["G444"]],[31,34,["G5055"]]]},{"k":25720,"v":[[0,1,["G1063"]],[1,5,["G3860"]],[5,7,["G3588"]],[7,8,["G1484"]],[8,9,["G2532"]],[9,12,["G1702"]],[12,13,["G2532"]],[13,15,["G5195"]],[15,16,["G2532"]],[16,18,["G1716"]]]},{"k":25721,"v":[[0,1,["G2532"]],[1,4,["G3146"]],[4,10,["G615","G846"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G5154"]],[13,14,["G2250"]],[14,18,["G450"]]]},{"k":25722,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G4920"]],[3,4,["G3762"]],[4,7,["G5130"]],[7,8,["G2532"]],[8,9,["G5124"]],[9,10,["G4487"]],[10,11,["G2258"]],[11,12,["G2928"]],[12,13,["G575"]],[13,14,["G846"]],[14,15,["G2532","G3756"]],[15,16,["G1097"]],[16,22,["G3004"]]]},{"k":25723,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,8,["G846"]],[8,11,["G1448"]],[11,12,["G1519"]],[12,13,["G2410"]],[13,15,["G5100"]],[15,17,["G5185"]],[17,18,["G2521"]],[18,19,["G3844"]],[19,20,["G3588"]],[20,22,["G3598"]],[22,23,["G4319"]]]},{"k":25724,"v":[[0,1,["G1161"]],[1,2,["G191"]],[2,4,["G3793"]],[4,6,["G1279"]],[6,8,["G4441"]],[8,9,["G5101"]],[9,10,["G5124"]],[10,11,["G1498"]]]},{"k":25725,"v":[[0,1,["G1161"]],[1,3,["G518"]],[3,4,["G846"]],[4,5,["G3754"]],[5,6,["G2424"]],[6,8,["G3480"]],[8,10,["G3928"]]]},{"k":25726,"v":[[0,1,["G2532"]],[1,3,["G994"]],[3,4,["G3004"]],[4,5,["G2424"]],[5,7,["G5207"]],[7,9,["G1138"]],[9,11,["G1653"]],[11,13,["G3165"]]]},{"k":25727,"v":[[0,1,["G2532"]],[1,5,["G4254"]],[5,6,["G2008"]],[6,7,["G846"]],[7,8,["G2443"]],[8,13,["G4623"]],[13,14,["G1161"]],[14,15,["G846"]],[15,16,["G2896"]],[16,18,["G4183"]],[18,20,["G3123"]],[20,22,["G5207"]],[22,24,["G1138"]],[24,26,["G1653"]],[26,28,["G3165"]]]},{"k":25728,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2476"]],[3,5,["G2753"]],[5,6,["G846"]],[6,9,["G71"]],[9,10,["G4314"]],[10,11,["G846"]],[11,12,["G1161"]],[12,14,["G846"]],[14,17,["G1448"]],[17,19,["G1905"]],[19,20,["G846"]]]},{"k":25729,"v":[[0,1,["G3004"]],[1,2,["G5101"]],[2,3,["G2309"]],[3,8,["G4160"]],[8,10,["G4671"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,13,["G2036"]],[13,14,["G2962"]],[14,15,["G2443"]],[15,20,["G308"]]]},{"k":25730,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,8,["G308"]],[8,9,["G4675"]],[9,10,["G4102"]],[10,12,["G4982"]],[12,13,["G4571"]]]},{"k":25731,"v":[[0,1,["G2532"]],[1,2,["G3916"]],[2,6,["G308"]],[6,7,["G2532"]],[7,8,["G190"]],[8,9,["G846"]],[9,10,["G1392"]],[10,11,["G2316"]],[11,12,["G2532"]],[12,13,["G3956"]],[13,14,["G3588"]],[14,15,["G2992"]],[15,18,["G1492"]],[18,20,["G1325"]],[20,21,["G136"]],[21,23,["G2316"]]]},{"k":25732,"v":[[0,1,["G2532"]],[1,3,["G1525"]],[3,6,["G1330"]],[6,7,["G2410"]]]},{"k":25733,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,6,["G435"]],[6,7,["G3686","G2564"]],[7,8,["G2195","(G2532)"]],[8,9,["G846"]],[9,10,["G2258"]],[10,15,["G754"]],[15,16,["G2532"]],[16,17,["G3778"]],[17,18,["G2258"]],[18,19,["G4145"]]]},{"k":25734,"v":[[0,1,["G2532"]],[1,3,["G2212"]],[3,5,["G1492"]],[5,6,["G2424"]],[6,7,["G5101"]],[7,9,["G2076"]],[9,10,["G2076"]],[10,11,["G1410"]],[11,12,["G3756"]],[12,13,["G575"]],[13,14,["G3588"]],[14,15,["G3793"]],[15,16,["G3754"]],[16,18,["G2258"]],[18,19,["G3398"]],[19,21,["G2244"]]]},{"k":25735,"v":[[0,1,["G2532"]],[1,3,["G4390"]],[3,4,["G1715"]],[4,7,["G305"]],[7,8,["G1909"]],[8,11,["G4809"]],[11,12,["G2443"]],[12,13,["G1492"]],[13,14,["G846"]],[14,15,["G3754"]],[15,17,["G3195"]],[17,19,["G1330"]],[19,20,["G1565"]],[20,21,[]]]},{"k":25736,"v":[[0,1,["G2532"]],[1,2,["G5613"]],[2,3,["G2424"]],[3,4,["G2064"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G5117"]],[7,10,["G308"]],[10,12,["G1492"]],[12,13,["G846"]],[13,14,["G2532"]],[14,15,["G2036"]],[15,16,["G4314"]],[16,17,["G846"]],[17,18,["G2195"]],[18,20,["G4692"]],[20,23,["G2597"]],[23,24,["G1063"]],[24,26,["G4594"]],[26,27,["G3165"]],[27,28,["G1163"]],[28,29,["G3306"]],[29,30,["G1722"]],[30,31,["G4675"]],[31,32,["G3624"]]]},{"k":25737,"v":[[0,1,["G2532"]],[1,4,["G4692"]],[4,7,["G2597"]],[7,8,["G2532"]],[8,9,["G5264"]],[9,10,["G846"]],[10,11,["G5463"]]]},{"k":25738,"v":[[0,1,["G2532"]],[1,4,["G1492"]],[4,7,["G537"]],[7,8,["G1234"]],[8,9,["G3004"]],[9,10,["G3754"]],[10,13,["G1525"]],[13,16,["G2647"]],[16,17,["G3844"]],[17,19,["G435"]],[19,23,["G268"]]]},{"k":25739,"v":[[0,1,["G1161"]],[1,2,["G2195"]],[2,3,["G2476"]],[3,5,["G2036"]],[5,6,["G4314"]],[6,7,["G3588"]],[7,8,["G2962"]],[8,9,["G2400"]],[9,10,["G2962"]],[10,11,["G3588"]],[11,12,["G2255"]],[12,14,["G3450"]],[14,15,["G5224"]],[15,17,["G1325"]],[17,19,["G3588"]],[19,20,["G4434"]],[20,21,["G2532"]],[21,22,["G1487"]],[22,33,["G4811","G5100","G5100"]],[33,35,["G591"]],[35,37,["G5073"]]]},{"k":25740,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,7,["G4594"]],[7,9,["G4991"]],[9,10,["G1096"]],[10,12,["G5129"]],[12,13,["G3624"]],[13,15,["G2530"]],[15,16,["G846"]],[16,17,["G2532"]],[17,18,["G2076"]],[18,20,["G5207"]],[20,22,["G11"]]]},{"k":25741,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G444"]],[5,7,["G2064"]],[7,9,["G2212"]],[9,10,["G2532"]],[10,12,["G4982"]],[12,16,["G622"]]]},{"k":25742,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G191"]],[4,6,["G5023"]],[6,8,["G4369"]],[8,10,["G2036"]],[10,12,["G3850"]],[12,14,["G846"]],[14,15,["G1511"]],[15,17,["G1451"]],[17,18,["G2419"]],[18,19,["G2532"]],[19,21,["G846"]],[21,22,["G1380"]],[22,23,["G3754"]],[23,24,["G3588"]],[24,25,["G932"]],[25,27,["G2316"]],[27,28,["G3195"]],[28,29,["G3916"]],[29,30,["G398"]]]},{"k":25743,"v":[[0,2,["G2036"]],[2,3,["G3767"]],[3,5,["G5100"]],[5,6,["G2104","G444"]],[6,7,["G4198"]],[7,8,["G1519"]],[8,10,["G3117"]],[10,11,["G5561"]],[11,13,["G2983"]],[13,15,["G1438"]],[15,17,["G932"]],[17,18,["G2532"]],[18,20,["G5290"]]]},{"k":25744,"v":[[0,1,["G1161"]],[1,3,["G2564"]],[3,4,["G1438"]],[4,5,["G1176"]],[5,6,["G1401"]],[6,8,["G1325"]],[8,9,["G846"]],[9,10,["G1176"]],[10,11,["G3414"]],[11,12,["G2532"]],[12,13,["G2036"]],[13,14,["G4314"]],[14,15,["G846"]],[15,16,["G4231"]],[16,17,["G2193"]],[17,19,["G2064"]]]},{"k":25745,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G4177"]],[3,4,["G3404"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G649"]],[7,9,["G4242"]],[9,10,["G3694"]],[10,11,["G846"]],[11,12,["G3004"]],[12,15,["G3756"]],[15,16,["G2309"]],[16,17,["G5126"]],[17,20,["G936"]],[20,21,["G1909"]],[21,22,["G2248"]]]},{"k":25746,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,8,["G846"]],[8,10,["G1880"]],[10,12,["G2983"]],[12,13,["G3588"]],[13,14,["G932"]],[14,15,["G2532"]],[15,17,["G2036"]],[17,18,["G5128"]],[18,19,["G1401"]],[19,22,["G5455"]],[22,24,["G848"]],[24,26,["G3739"]],[26,29,["G1325"]],[29,30,["G3588"]],[30,31,["G694"]],[31,32,["G2443"]],[32,35,["G1097"]],[35,37,["G5101"]],[37,39,["G5100"]],[39,43,["G1281"]]]},{"k":25747,"v":[[0,1,["G1161"]],[1,2,["G3854"]],[2,3,["G3588"]],[3,4,["G4413"]],[4,5,["G3004"]],[5,6,["G2962"]],[6,7,["G4675"]],[7,8,["G3414"]],[8,10,["G4333"]],[10,11,["G1176"]],[11,12,["G3414"]]]},{"k":25748,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G2095"]],[6,8,["G18"]],[8,9,["G1401"]],[9,10,["G3754"]],[10,13,["G1096"]],[13,14,["G4103"]],[14,15,["G1722"]],[15,18,["G1646"]],[18,19,["G2468","G2192"]],[19,21,["G1849"]],[21,22,["G1883"]],[22,23,["G1176"]],[23,24,["G4172"]]]},{"k":25749,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1208"]],[3,4,["G2064"]],[4,5,["G3004"]],[5,6,["G2962"]],[6,7,["G4675"]],[7,8,["G3414"]],[8,10,["G4160"]],[10,11,["G4002"]],[11,12,["G3414"]]]},{"k":25750,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G2532"]],[4,6,["G5129"]],[6,7,["G1096"]],[7,8,["G4771"]],[8,9,["G2532"]],[9,10,["G1883"]],[10,11,["G4002"]],[11,12,["G4172"]]]},{"k":25751,"v":[[0,1,["G2532"]],[1,2,["G2087"]],[2,3,["G2064"]],[3,4,["G3004"]],[4,5,["G2962"]],[5,6,["G2400"]],[6,9,["G4675"]],[9,10,["G3414"]],[10,11,["G3739"]],[11,13,["G2192"]],[13,16,["G606"]],[16,17,["G1722"]],[17,19,["G4676"]]]},{"k":25752,"v":[[0,1,["G1063"]],[1,3,["G5399"]],[3,4,["G4571"]],[4,5,["G3754"]],[5,7,["G1488"]],[7,9,["G840"]],[9,10,["G444"]],[10,13,["G142"]],[13,14,["G3739"]],[14,18,["G5087","G3756"]],[18,19,["G2532"]],[19,20,["G2325"]],[20,21,["G3739"]],[21,24,["G3756"]],[24,25,["G4687"]]]},{"k":25753,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G1537"]],[6,9,["G4675"]],[9,10,["G4750"]],[10,13,["G2919"]],[13,14,["G4571"]],[14,16,["G4190"]],[16,17,["G1401"]],[17,19,["G1492"]],[19,20,["G3754"]],[20,21,["G1473"]],[21,22,["G1510"]],[22,24,["G840"]],[24,25,["G444"]],[25,27,["G142"]],[27,28,["G3739"]],[28,32,["G5087","G3756"]],[32,33,["G2532"]],[33,34,["G2325"]],[34,35,["G3739"]],[35,38,["G3756"]],[38,39,["G4687"]]]},{"k":25754,"v":[[0,1,["G1302"]],[1,2,["G2532"]],[2,3,["G1325"]],[3,4,["G3756"]],[4,6,["G3450"]],[6,7,["G694"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,10,["G5132"]],[10,11,["G2532"]],[11,13,["G1473"]],[13,14,["G2064"]],[14,18,["G4238","G302"]],[18,20,["G846"]],[20,21,["G4862"]],[21,22,["G5110"]]]},{"k":25755,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,8,["G3936"]],[8,9,["G142"]],[9,10,["G575"]],[10,11,["G846"]],[11,12,["G3588"]],[12,13,["G3414"]],[13,14,["G2532"]],[14,15,["G1325"]],[15,20,["G2192"]],[20,21,["G1176"]],[21,22,["G3414"]]]},{"k":25756,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G2962"]],[6,8,["G2192"]],[8,9,["G1176"]],[9,10,["G3414"]]]},{"k":25757,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,9,["G3956"]],[9,11,["G2192"]],[11,14,["G1325"]],[14,15,["G1161"]],[15,16,["G575"]],[16,19,["G2192"]],[19,20,["G3361"]],[20,21,["G2532"]],[21,22,["G3739"]],[22,24,["G2192"]],[24,28,["G142"]],[28,29,["G575"]],[29,30,["G846"]]]},{"k":25758,"v":[[0,1,["G4133"]],[1,2,["G1565"]],[2,3,["G3450"]],[3,4,["G2190"]],[4,6,["G2309"]],[6,7,["G3361"]],[7,9,["G3165"]],[9,11,["G936"]],[11,12,["G1909"]],[12,13,["G846"]],[13,14,["G71"]],[14,15,["G5602"]],[15,16,["G2532"]],[16,17,["G2695"]],[17,19,["G1715"]],[19,20,["G3450"]]]},{"k":25759,"v":[[0,1,["G2532"]],[1,5,["G5023"]],[5,6,["G2036"]],[6,8,["G4198"]],[8,9,["G1715"]],[9,11,["G305"]],[11,12,["G1519"]],[12,13,["G2414"]]]},{"k":25760,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,6,["G5613"]],[6,10,["G1448"]],[10,11,["G1519"]],[11,12,["G967"]],[12,13,["G2532"]],[13,14,["G963"]],[14,15,["G4314"]],[15,16,["G3588"]],[16,17,["G3735"]],[17,18,["G2564"]],[18,22,["G1636"]],[22,24,["G649"]],[24,25,["G1417"]],[25,27,["G848"]],[27,28,["G3101"]]]},{"k":25761,"v":[[0,1,["G2036"]],[1,2,["G5217"]],[2,4,["G1519"]],[4,5,["G3588"]],[5,6,["G2968"]],[6,8,["G2713"]],[8,10,["G1722"]],[10,12,["G3739"]],[12,15,["G1531"]],[15,18,["G2147"]],[18,20,["G4454"]],[20,21,["G1210"]],[21,22,["G1909","G3739"]],[22,24,["G4455","G3762"]],[24,25,["G444"]],[25,26,["G2523"]],[26,27,["G3089"]],[27,28,["G846"]],[28,30,["G71"]],[30,32,[]]]},{"k":25762,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G5100"]],[4,5,["G2065"]],[5,6,["G5209"]],[6,7,["G1302"]],[7,10,["G3089"]],[10,12,["G3779"]],[12,15,["G2046"]],[15,17,["G846"]],[17,18,["G3754"]],[18,19,["G3588"]],[19,20,["G2962"]],[20,21,["G2192"]],[21,22,["G5532"]],[22,24,["G846"]]]},{"k":25763,"v":[[0,1,["G1161"]],[1,5,["G649"]],[5,8,["G565"]],[8,10,["G2147"]],[10,12,["G2531"]],[12,15,["G2036"]],[15,17,["G846"]]]},{"k":25764,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G3089"]],[5,6,["G3588"]],[6,7,["G4454"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,10,["G846"]],[10,11,["G2036"]],[11,12,["G4314"]],[12,13,["G846"]],[13,14,["G5101"]],[14,15,["G3089"]],[15,17,["G3588"]],[17,18,["G4454"]]]},{"k":25765,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G3588"]],[4,5,["G2962"]],[5,6,["G2192"]],[6,7,["G5532"]],[7,9,["G846"]]]},{"k":25766,"v":[[0,1,["G2532"]],[1,3,["G71"]],[3,4,["G846"]],[4,5,["G4314"]],[5,6,["G2424"]],[6,7,["G2532"]],[7,9,["G1977"]],[9,10,["G1438"]],[10,11,["G2440"]],[11,12,["G1909"]],[12,13,["G3588"]],[13,14,["G4454"]],[14,19,["G1913","G2424"]]]},{"k":25767,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G4198"]],[4,6,["G5291"]],[6,7,["G848"]],[7,8,["G2440"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G3598"]]]},{"k":25768,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,6,["G1448"]],[6,8,["G2235"]],[8,9,["G4314"]],[9,10,["G3588"]],[10,11,["G2600"]],[11,13,["G3588"]],[13,14,["G3735"]],[14,16,["G1636"]],[16,17,["G3588"]],[17,18,["G537"]],[18,19,["G4128"]],[19,21,["G3588"]],[21,22,["G3101"]],[22,23,["G756"]],[23,25,["G5463"]],[25,27,["G134"]],[27,28,["G2316"]],[28,31,["G3173"]],[31,32,["G5456"]],[32,33,["G4012"]],[33,34,["G3956"]],[34,37,["G1411"]],[37,38,["G3739"]],[38,41,["G1492"]]]},{"k":25769,"v":[[0,1,["G3004"]],[1,2,["G2127"]],[2,4,["G3588"]],[4,5,["G935"]],[5,7,["G2064"]],[7,8,["G1722"]],[8,10,["G3686"]],[10,13,["G2962"]],[13,14,["G1515"]],[14,15,["G1722"]],[15,16,["G3772"]],[16,17,["G2532"]],[17,18,["G1391"]],[18,19,["G1722"]],[19,21,["G5310"]]]},{"k":25770,"v":[[0,1,["G2532"]],[1,2,["G5100"]],[2,4,["G3588"]],[4,5,["G5330"]],[5,6,["G575"]],[6,8,["G3588"]],[8,9,["G3793"]],[9,10,["G2036"]],[10,11,["G4314"]],[11,12,["G846"]],[12,13,["G1320"]],[13,14,["G2008"]],[14,15,["G4675"]],[15,16,["G3101"]]]},{"k":25771,"v":[[0,1,["G2532"]],[1,3,["G611"]],[3,5,["G2036"]],[5,7,["G846"]],[7,9,["G3004"]],[9,10,["G5213"]],[10,11,["G3754"]],[11,12,["G1437"]],[12,13,["G3778"]],[13,17,["G4623"]],[17,18,["G3588"]],[18,19,["G3037"]],[19,23,["G2896"]]]},{"k":25772,"v":[[0,1,["G2532"]],[1,2,["G5613"]],[2,6,["G1448"]],[6,8,["G1492"]],[8,9,["G3588"]],[9,10,["G4172"]],[10,12,["G2799"]],[12,13,["G1909"]],[13,14,["G846"]]]},{"k":25773,"v":[[0,1,["G3004"]],[1,2,["G1487"]],[2,5,["G1097"]],[5,6,["G2532"]],[6,7,["G4771"]],[7,9,["G2532","G1065"]],[9,10,["G1722"]],[10,11,["G5026"]],[11,12,["G4675"]],[12,13,["G2250"]],[13,15,["G3588"]],[15,18,["G4314"]],[18,19,["G4675"]],[19,20,["G1515"]],[20,21,["G1161"]],[21,22,["G3568"]],[22,25,["G2928"]],[25,26,["G575"]],[26,27,["G4675"]],[27,28,["G3788"]]]},{"k":25774,"v":[[0,1,["G3754"]],[1,3,["G2250"]],[3,5,["G2240"]],[5,6,["G1909"]],[6,7,["G4571"]],[7,8,["G2532"]],[8,9,["G4675"]],[9,10,["G2190"]],[10,15,["G4016","G5482"]],[15,16,["G4571"]],[16,17,["G2532"]],[17,20,["G4033","G4571"]],[20,21,["G2532"]],[21,24,["G4912","G4571"]],[24,27,["G3840"]]]},{"k":25775,"v":[[0,1,["G2532"]],[1,8,["G1474","G4571"]],[8,9,["G2532"]],[9,10,["G4675"]],[10,11,["G5043"]],[11,12,["G1722"]],[12,13,["G4671"]],[13,14,["G2532"]],[14,17,["G3756"]],[17,18,["G863"]],[18,19,["G1722"]],[19,20,["G4671"]],[20,24,["G3037","G1909","G3037"]],[24,25,["G473","G3739"]],[25,27,["G1097"]],[27,28,["G3756"]],[28,29,["G3588"]],[29,30,["G2540"]],[30,32,["G4675"]],[32,33,["G1984"]]]},{"k":25776,"v":[[0,1,["G2532"]],[1,3,["G1525"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G2411"]],[6,8,["G756"]],[8,11,["G1544"]],[11,14,["G4453"]],[14,15,["G1722","G846"]],[15,16,["G2532"]],[16,19,["G59"]]]},{"k":25777,"v":[[0,1,["G3004"]],[1,3,["G846"]],[3,6,["G1125"]],[6,7,["G3450"]],[7,8,["G3624"]],[8,9,["G2076"]],[9,11,["G3624"]],[11,13,["G4335"]],[13,14,["G1161"]],[14,15,["G5210"]],[15,17,["G4160"]],[17,18,["G846"]],[18,20,["G4693"]],[20,22,["G3027"]]]},{"k":25778,"v":[[0,1,["G2532"]],[1,3,["G2258","G1321"]],[3,4,["G2596","G2250"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G2411"]],[7,8,["G1161"]],[8,9,["G3588"]],[9,11,["G749"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G1122"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G4413"]],[17,19,["G3588"]],[19,20,["G2992"]],[20,21,["G2212"]],[21,23,["G622"]],[23,24,["G846"]]]},{"k":25779,"v":[[0,1,["G2532"]],[1,3,["G3756"]],[3,4,["G2147"]],[4,5,["G5101"]],[5,8,["G4160"]],[8,9,["G1063"]],[9,10,["G537"]],[10,11,["G3588"]],[11,12,["G2992"]],[12,15,["G1582"]],[15,17,["G191"]],[17,18,["G846"]]]},{"k":25780,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G1722"]],[7,8,["G3391"]],[8,10,["G1565"]],[10,11,["G2250"]],[11,13,["G846"]],[13,14,["G1321"]],[14,15,["G3588"]],[15,16,["G2992"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G2411"]],[19,20,["G2532"]],[20,23,["G2097"]],[23,24,["G3588"]],[24,26,["G749"]],[26,27,["G2532"]],[27,28,["G3588"]],[28,29,["G1122"]],[29,31,["G2186"]],[31,33,["G4862"]],[33,34,["G3588"]],[34,35,["G4245"]]]},{"k":25781,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,3,["G4314"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G2036"]],[6,7,["G2254"]],[7,8,["G1722"]],[8,9,["G4169"]],[9,10,["G1849"]],[10,11,["G4160"]],[11,14,["G5023"]],[14,15,["G2228"]],[15,16,["G5101"]],[16,17,["G2076"]],[17,20,["G1325"]],[20,21,["G4671"]],[21,22,["G5026"]],[22,23,["G1849"]]]},{"k":25782,"v":[[0,1,["G1161"]],[1,3,["G611"]],[3,5,["G2036"]],[5,6,["G4314"]],[6,7,["G846"]],[7,11,["G2504","G2065"]],[11,12,["G5209"]],[12,13,["G1520"]],[13,14,["G3056"]],[14,15,["G2532"]],[15,16,["G2036"]],[16,17,["G3427"]]]},{"k":25783,"v":[[0,1,["G3588"]],[1,2,["G908"]],[2,4,["G2491"]],[4,5,["G2258"]],[5,7,["G1537"]],[7,8,["G3772"]],[8,9,["G2228"]],[9,10,["G1537"]],[10,11,["G444"]]]},{"k":25784,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4817"]],[3,4,["G4314"]],[4,5,["G1438"]],[5,6,["G3004"]],[6,7,["G1437"]],[7,10,["G2036"]],[10,11,["G1537"]],[11,12,["G3772"]],[12,15,["G2046"]],[15,16,["G1302"]],[16,17,["G3767"]],[17,18,["G4100"]],[18,20,["G846"]],[20,21,["G3756"]]]},{"k":25785,"v":[[0,1,["G1161"]],[1,3,["G1437"]],[3,5,["G2036"]],[5,6,["G1537"]],[6,7,["G444"]],[7,8,["G3956"]],[8,9,["G3588"]],[9,10,["G2992"]],[10,12,["G2642"]],[12,13,["G2248"]],[13,14,["G1063"]],[14,16,["G2076"]],[16,17,["G3982"]],[17,19,["G2491"]],[19,20,["G1511"]],[20,22,["G4396"]]]},{"k":25786,"v":[[0,1,["G2532"]],[1,3,["G611"]],[3,7,["G3361"]],[7,8,["G1492"]],[8,9,["G4159"]],[9,11,[]]]},{"k":25787,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G3761"]],[6,7,["G3004"]],[7,8,["G1473"]],[8,9,["G5213"]],[9,10,["G1722"]],[10,11,["G4169"]],[11,12,["G1849"]],[12,14,["G4160"]],[14,16,["G5023"]]]},{"k":25788,"v":[[0,1,["G1161"]],[1,2,["G756"]],[2,5,["G3004"]],[5,6,["G4314"]],[6,7,["G3588"]],[7,8,["G2992"]],[8,9,["G5026"]],[9,10,["G3850"]],[10,12,["G5100"]],[12,13,["G444"]],[13,14,["G5452"]],[14,16,["G290"]],[16,17,["G2532"]],[17,20,["G1554","G846"]],[20,22,["G1092"]],[22,23,["G2532"]],[23,28,["G589"]],[28,31,["G2425"]],[31,32,["G5550"]]]},{"k":25789,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,4,["G2540"]],[4,6,["G649"]],[6,8,["G1401"]],[8,9,["G4314"]],[9,10,["G3588"]],[10,11,["G1092"]],[11,12,["G2443"]],[12,15,["G1325"]],[15,16,["G846"]],[16,17,["G575"]],[17,18,["G3588"]],[18,19,["G2590"]],[19,21,["G3588"]],[21,22,["G290"]],[22,23,["G1161"]],[23,24,["G3588"]],[24,25,["G1092"]],[25,26,["G1194"]],[26,27,["G846"]],[27,31,["G1821"]],[31,32,["G2756"]]]},{"k":25790,"v":[[0,1,["G2532"]],[1,4,["G4369","G3992"]],[4,5,["G2087"]],[5,6,["G1401"]],[6,7,["G1161"]],[7,8,["G3588"]],[8,9,["G1194"]],[9,11,["G2548"]],[11,12,["G2532"]],[12,15,["G818"]],[15,19,["G1821"]],[19,20,["G2756"]]]},{"k":25791,"v":[[0,1,["G2532"]],[1,4,["G4369","G3992"]],[4,6,["G5154"]],[6,7,["G1161"]],[7,8,["G3588"]],[8,9,["G5135"]],[9,10,["G5126"]],[10,12,["G2532"]],[12,15,["G1544"]]]},{"k":25792,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,4,["G2962"]],[4,6,["G3588"]],[6,7,["G290"]],[7,8,["G5101"]],[8,11,["G4160"]],[11,14,["G3992"]],[14,15,["G3450"]],[15,16,["G27"]],[16,17,["G5207"]],[17,20,["G2481"]],[20,23,["G1788"]],[23,27,["G1492"]],[27,28,["G5126"]]]},{"k":25793,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1092"]],[4,5,["G1492"]],[5,6,["G846"]],[6,8,["G1260"]],[8,9,["G4314"]],[9,10,["G1438"]],[10,11,["G3004"]],[11,12,["G3778"]],[12,13,["G2076"]],[13,14,["G3588"]],[14,15,["G2818"]],[15,16,["G1205"]],[16,19,["G615"]],[19,20,["G846"]],[20,21,["G2443"]],[21,22,["G3588"]],[22,23,["G2817"]],[23,25,["G1096"]],[25,26,["G2254"]]]},{"k":25794,"v":[[0,1,["G2532"]],[1,3,["G1544"]],[3,4,["G846"]],[4,5,["G1854"]],[5,7,["G3588"]],[7,8,["G290"]],[8,10,["G615"]],[10,12,["G5101"]],[12,13,["G3767"]],[13,15,["G3588"]],[15,16,["G2962"]],[16,18,["G3588"]],[18,19,["G290"]],[19,20,["G4160"]],[20,22,["G846"]]]},{"k":25795,"v":[[0,3,["G2064"]],[3,4,["G2532"]],[4,5,["G622"]],[5,6,["G5128"]],[6,7,["G1092"]],[7,8,["G2532"]],[8,10,["G1325"]],[10,11,["G3588"]],[11,12,["G290"]],[12,14,["G243"]],[14,15,["G1161"]],[15,18,["G191"]],[18,21,["G2036"]],[21,23,["G1096","G3361"]]]},{"k":25796,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1689"]],[3,4,["G846"]],[4,6,["G2036"]],[6,7,["G5101"]],[7,8,["G2076"]],[8,9,["G5124"]],[9,10,["G3767"]],[10,13,["G1125"]],[13,15,["G3037"]],[15,16,["G3739"]],[16,17,["G3588"]],[17,18,["G3618"]],[18,19,["G593"]],[19,21,["G3778"]],[21,23,["G1096"]],[23,24,["(G1519)"]],[24,25,["G2776"]],[25,28,["G1137"]]]},{"k":25797,"v":[[0,1,["G3956"]],[1,3,["G4098"]],[3,4,["G1909"]],[4,5,["G1565"]],[5,6,["G3037"]],[6,9,["G4917"]],[9,10,["G1161"]],[10,11,["G1909"]],[11,12,["G3739","G302"]],[12,15,["G4098"]],[15,21,["G3039","G846"]]]},{"k":25798,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G1122"]],[7,9,["G846"]],[9,10,["G5610"]],[10,11,["G2212"]],[11,13,["G1911"]],[13,14,["G5495"]],[14,15,["G1909"]],[15,16,["G846"]],[16,17,["G2532"]],[17,19,["G5399"]],[19,20,["G3588"]],[20,21,["G2992"]],[21,22,["G1063"]],[22,24,["G1097"]],[24,25,["G3754"]],[25,28,["G2036"]],[28,29,["G5026"]],[29,30,["G3850"]],[30,31,["G4314"]],[31,32,["G846"]]]},{"k":25799,"v":[[0,1,["G2532"]],[1,3,["G3906"]],[3,7,["G649"]],[7,8,["G1455"]],[8,11,["G5271"]],[11,12,["G1438"]],[12,14,["G1342"]],[14,15,["G2443"]],[15,19,["G1949"]],[19,21,["G846"]],[21,22,["G3056"]],[22,27,["G3860"]],[27,28,["G846"]],[28,30,["G3588"]],[30,31,["G746"]],[31,32,["G2532"]],[32,33,["G1849"]],[33,35,["G3588"]],[35,36,["G2232"]]]},{"k":25800,"v":[[0,1,["G2532"]],[1,3,["G1905"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G1320"]],[6,8,["G1492"]],[8,9,["G3754"]],[9,11,["G3004"]],[11,12,["G2532"]],[12,13,["G1321"]],[13,14,["G3723"]],[14,15,["G2532","G3756"]],[15,16,["G2983"]],[16,19,["G4383"]],[19,22,["G235"]],[22,23,["G1321"]],[23,24,["G3588"]],[24,25,["G3598"]],[25,27,["G2316"]],[27,28,["G1909","G225"]]]},{"k":25801,"v":[[0,3,["G1832"]],[3,5,["G2254"]],[5,7,["G1325"]],[7,8,["G5411"]],[8,10,["G2541"]],[10,11,["G2228"]],[11,12,["G3756"]]]},{"k":25802,"v":[[0,1,["G1161"]],[1,3,["G2657"]],[3,4,["G848"]],[4,5,["G3834"]],[5,7,["G2036"]],[7,8,["G4314"]],[8,9,["G846"]],[9,10,["G5101"]],[10,11,["G3985"]],[11,13,["G3165"]]]},{"k":25803,"v":[[0,1,["G1925"]],[1,2,["G3427"]],[2,4,["G1220"]],[4,5,["G5101"]],[5,6,["G1504"]],[6,7,["G2532"]],[7,8,["G1923"]],[8,9,["G2192"]],[9,11,["(G1161)"]],[11,12,["G611"]],[12,14,["G2036"]],[14,15,["G2541"]]]},{"k":25804,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G591"]],[6,7,["G5106"]],[7,9,["G2541"]],[9,11,["G3588"]],[11,14,["G2541"]],[14,15,["G2532"]],[15,17,["G2316"]],[17,19,["G3588"]],[19,22,["G2316"]]]},{"k":25805,"v":[[0,1,["G2532"]],[1,3,["G2480"]],[3,4,["G3756"]],[4,6,["G1949"]],[6,8,["G846"]],[8,9,["G4487"]],[9,10,["G1726"]],[10,11,["G3588"]],[11,12,["G2992"]],[12,13,["G2532"]],[13,15,["G2296"]],[15,16,["G1909"]],[16,17,["G846"]],[17,18,["G612"]],[18,22,["G4601"]]]},{"k":25806,"v":[[0,1,["G1161"]],[1,2,["G4334"]],[2,5,["G5100"]],[5,7,["G3588"]],[7,8,["G4523"]],[8,10,["G483"]],[10,13,["G1511"]],[13,14,["(G3361)"]],[14,15,["G386"]],[15,18,["G1905"]],[18,19,["G846"]]]},{"k":25807,"v":[[0,1,["G3004"]],[1,2,["G1320"]],[2,3,["G3475"]],[3,4,["G1125"]],[4,6,["G2254"]],[6,7,["G1437"]],[7,9,["G5100"]],[9,10,["G80"]],[10,11,["G599"]],[11,12,["G2192"]],[12,14,["G1135"]],[14,15,["G2532"]],[15,16,["G3778"]],[16,17,["G599"]],[17,19,["G815"]],[19,20,["G2443"]],[20,21,["G846"]],[21,22,["G80"]],[22,24,["G2983"]],[24,26,["G1135"]],[26,27,["G2532"]],[27,29,["G1817"]],[29,30,["G4690"]],[30,32,["G848"]],[32,33,["G80"]]]},{"k":25808,"v":[[0,2,["G2258"]],[2,3,["G3767"]],[3,4,["G2033"]],[4,5,["G80"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G4413"]],[8,9,["G2983"]],[9,11,["G1135"]],[11,13,["G599"]],[13,15,["G815"]]]},{"k":25809,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1208"]],[3,4,["G2983"]],[4,7,["G1135"]],[7,8,["G2532"]],[8,9,["G3778"]],[9,10,["G599"]],[10,11,["G815"]]]},{"k":25810,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5154"]],[3,4,["G2983"]],[4,5,["G846"]],[5,6,["G1161"]],[6,9,["G5615"]],[9,10,["G3588"]],[10,11,["G2033"]],[11,12,["G2532"]],[12,15,["G2641"]],[15,16,["G3756"]],[16,17,["G5043"]],[17,18,["G2532"]],[18,19,["G599"]]]},{"k":25811,"v":[[0,0,["(G1161)"]],[0,1,["G5305"]],[1,3,["G3956"]],[3,4,["G3588"]],[4,5,["G1135"]],[5,6,["G599"]],[6,7,["G2532"]]]},{"k":25812,"v":[[0,1,["G3767"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G386"]],[4,5,["G5101"]],[5,6,["G1135"]],[6,8,["G846"]],[8,10,["G1096"]],[10,11,["G1063"]],[11,12,["G2033"]],[12,13,["G2192"]],[13,14,["G846"]],[14,16,["G1135"]]]},{"k":25813,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G5127"]],[10,11,["G165"]],[11,12,["G1060"]],[12,13,["G2532"]],[13,17,["G1548"]]]},{"k":25814,"v":[[0,1,["G1161"]],[1,7,["G2661"]],[7,9,["G5177"]],[9,10,["G1565"]],[10,11,["G165"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G386"]],[14,15,["G1537"]],[15,17,["G3498"]],[17,18,["G3777"]],[18,19,["G1060"]],[19,20,["G3777"]],[20,24,["G1548"]]]},{"k":25815,"v":[[0,0,["(G1063)"]],[0,1,["G3777"]],[1,2,["G1410"]],[2,4,["G599"]],[4,6,["G2089"]],[6,7,["G1063"]],[7,9,["G1526"]],[9,13,["G2465"]],[13,14,["G2532"]],[14,15,["G1526"]],[15,17,["G5207"]],[17,19,["G2316"]],[19,20,["G5607"]],[20,22,["G5207"]],[22,24,["G3588"]],[24,25,["G386"]]]},{"k":25816,"v":[[0,1,["G1161"]],[1,2,["G3754"]],[2,3,["G3588"]],[3,4,["G3498"]],[4,6,["G1453"]],[6,7,["G2532"]],[7,8,["G3475"]],[8,9,["G3377"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G942"]],[12,13,["G5613"]],[13,15,["G3004"]],[15,17,["G2962"]],[17,18,["G3588"]],[18,19,["G2316"]],[19,21,["G11"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G2316"]],[24,26,["G2464"]],[26,27,["G2532"]],[27,28,["G3588"]],[28,29,["G2316"]],[29,31,["G2384"]]]},{"k":25817,"v":[[0,1,["G1161"]],[1,3,["G2076"]],[3,4,["G3756"]],[4,6,["G2316"]],[6,9,["G3498"]],[9,10,["G235"]],[10,13,["G2198"]],[13,14,["G1063"]],[14,15,["G3956"]],[15,16,["G2198"]],[16,18,["G846"]]]},{"k":25818,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,4,["G3588"]],[4,5,["G1122"]],[5,6,["G611"]],[6,7,["G2036"]],[7,8,["G1320"]],[8,11,["G2573"]],[11,12,["G2036"]]]},{"k":25819,"v":[[0,1,["G1161"]],[1,5,["G5111"]],[5,6,["G3765"]],[6,7,["G1905"]],[7,8,["G846"]],[8,9,["G3762"]],[9,12,[]]]},{"k":25820,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G4459"]],[6,7,["G3004"]],[7,10,["G5547"]],[10,11,["G1511"]],[11,12,["G1138"]],[12,13,["G5207"]]]},{"k":25821,"v":[[0,1,["G2532"]],[1,2,["G1138"]],[2,3,["G846"]],[3,4,["G3004"]],[4,5,["G1722"]],[5,7,["G976"]],[7,9,["G5568"]],[9,10,["G3588"]],[10,11,["G2962"]],[11,12,["G2036"]],[12,14,["G3450"]],[14,15,["G2962"]],[15,16,["G2521"]],[16,18,["G1537"]],[18,19,["G3450"]],[19,21,["G1188"]]]},{"k":25822,"v":[[0,1,["G2193","G302"]],[1,3,["G5087"]],[3,4,["G4675"]],[4,5,["G2190"]],[5,6,["G4675"]],[6,7,["G5286","G4228"]]]},{"k":25823,"v":[[0,1,["G1138"]],[1,2,["G3767"]],[2,3,["G2564"]],[3,4,["G846"]],[4,5,["G2962"]],[5,6,["G4459"]],[6,8,["G2076"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G5207"]]]},{"k":25824,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,6,["G3956"]],[6,7,["G3588"]],[7,8,["G2992"]],[8,10,["G2036"]],[10,12,["G848"]],[12,13,["G3101"]]]},{"k":25825,"v":[[0,1,["G4337"]],[1,2,["G575"]],[2,3,["G3588"]],[3,4,["G1122"]],[4,6,["G2309"]],[6,8,["G4043"]],[8,9,["G1722"]],[9,11,["G4749"]],[11,12,["G2532"]],[12,13,["G5368"]],[13,14,["G783"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G58"]],[17,18,["G2532"]],[18,21,["G4410"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G4864"]],[24,25,["G2532"]],[25,28,["G4411"]],[28,29,["G1722"]],[29,30,["G1173"]]]},{"k":25826,"v":[[0,1,["G3739"]],[1,2,["G2719"]],[2,3,["G5503"]],[3,4,["G3614"]],[4,5,["G2532"]],[5,8,["G4392"]],[8,11,["G4336","G3117"]],[11,13,["G3778"]],[13,15,["G2983"]],[15,16,["G4055"]],[16,17,["G2917"]]]},{"k":25827,"v":[[0,1,["G1161"]],[1,4,["G308"]],[4,6,["G1492"]],[6,7,["G3588"]],[7,9,["G4145"]],[9,10,["G906"]],[10,11,["G848"]],[11,12,["G1435"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G1049"]]]},{"k":25828,"v":[[0,1,["G1161"]],[1,3,["G1492"]],[3,4,["G2532"]],[4,6,["G5100"]],[6,7,["G3998"]],[7,8,["G5503"]],[8,10,["G906"]],[10,11,["G1563"]],[11,12,["G1417"]],[12,13,["G3016"]]]},{"k":25829,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,6,["G230"]],[6,8,["G3004"]],[8,10,["G5213"]],[10,11,["G3754"]],[11,12,["G3778"]],[12,13,["G4434"]],[13,14,["G5503"]],[14,17,["G906"]],[17,18,["G4119"]],[18,21,["G3956"]]]},{"k":25830,"v":[[0,1,["G1063"]],[1,2,["G537"]],[2,3,["G3778"]],[3,5,["G1537"]],[5,6,["G846"]],[6,7,["G4052"]],[7,9,["G906"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G1435"]],[12,14,["G2316"]],[14,15,["G1161"]],[15,16,["G3778"]],[16,17,["G1537"]],[17,18,["G848"]],[18,19,["G5303"]],[19,22,["G906"]],[22,23,["G537"]],[23,24,["G3588"]],[24,25,["G979"]],[25,26,["G3739"]],[26,28,["G2192"]]]},{"k":25831,"v":[[0,1,["G2532"]],[1,3,["G5100"]],[3,4,["G3004"]],[4,5,["G4012"]],[5,6,["G3588"]],[6,7,["G2411"]],[7,8,["G3754"]],[8,11,["G2885"]],[11,13,["G2570"]],[13,14,["G3037"]],[14,15,["G2532"]],[15,16,["G334"]],[16,18,["G2036"]]]},{"k":25832,"v":[[0,4,["G5023"]],[4,5,["G3739"]],[5,7,["G2334"]],[7,9,["G2250"]],[9,11,["G2064"]],[11,12,["G1722"]],[12,14,["G3739"]],[14,17,["G3756"]],[17,19,["G863"]],[19,23,["G3037","G1909","G3037"]],[23,24,["G3739"]],[24,26,["G3756"]],[26,29,["G2647"]]]},{"k":25833,"v":[[0,1,["G1161"]],[1,3,["G1905"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G1320"]],[6,8,["G4219"]],[8,9,["(G3767)"]],[9,11,["G5023"]],[11,12,["G2071"]],[12,13,["G2532"]],[13,14,["G5101"]],[14,15,["G4592"]],[15,19,["G3752"]],[19,21,["G5023"]],[21,22,["G3195"]],[22,25,["G1096"]]]},{"k":25834,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G991"]],[5,9,["G3361"]],[9,10,["G4105"]],[10,11,["G1063"]],[11,12,["G4183"]],[12,14,["G2064"]],[14,15,["G1909"]],[15,16,["G3450"]],[16,17,["G3686"]],[17,18,["G3004"]],[18,19,["G1473"]],[19,20,["G1510"]],[20,22,["G2532"]],[22,23,["G3588"]],[23,24,["G2540"]],[24,26,["G1448"]],[26,27,["G4198"]],[27,29,["G3361"]],[29,30,["G3767"]],[30,31,["G3694"]],[31,32,["G846"]]]},{"k":25835,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,5,["G191"]],[5,7,["G4171"]],[7,8,["G2532"]],[8,9,["G181"]],[9,11,["G3361"]],[11,12,["G4422"]],[12,13,["G1063"]],[13,15,["G5023"]],[15,16,["G1163"]],[16,17,["G4412"]],[17,20,["G1096"]],[20,21,["G235"]],[21,22,["G3588"]],[22,23,["G5056"]],[23,25,["G3756"]],[25,28,["G2112"]]]},{"k":25836,"v":[[0,1,["G5119"]],[1,2,["G3004"]],[2,5,["G846"]],[5,6,["G1484"]],[6,8,["G1453"]],[8,9,["G1909"]],[9,10,["G1484"]],[10,11,["G2532"]],[11,12,["G932"]],[12,13,["G1909"]],[13,14,["G932"]]]},{"k":25837,"v":[[0,1,["G5037"]],[1,2,["G3173"]],[2,3,["G4578"]],[3,5,["G2071"]],[5,8,["G2596","G5117"]],[8,9,["G2532"]],[9,10,["G3042"]],[10,11,["G2532"]],[11,12,["G3061"]],[12,13,["G5037"]],[13,15,["G5400"]],[15,16,["G2532"]],[16,17,["G3173"]],[17,18,["G4592"]],[18,21,["G2071"]],[21,22,["G575"]],[22,23,["G3772"]]]},{"k":25838,"v":[[0,1,["G1161"]],[1,2,["G4253"]],[2,3,["G537"]],[3,4,["G5130"]],[4,7,["G1911"]],[7,8,["G848"]],[8,9,["G5495"]],[9,10,["G1909"]],[10,11,["G5209"]],[11,12,["G2532"]],[12,13,["G1377"]],[13,17,["G3860"]],[17,18,["G1519"]],[18,20,["G4864"]],[20,21,["G2532"]],[21,23,["G5438"]],[23,25,["G71"]],[25,26,["G1909"]],[26,27,["G935"]],[27,28,["G2532"]],[28,29,["G2232"]],[29,33,["G1752","G3450","G3686"]]]},{"k":25839,"v":[[0,1,["G1161"]],[1,4,["G576"]],[4,6,["G5213"]],[6,7,["G1519"]],[7,9,["G3142"]]]},{"k":25840,"v":[[0,1,["G5087"]],[1,3,["G3767"]],[3,4,["G1519"]],[4,5,["G5216"]],[5,6,["G2588"]],[6,7,["G3361"]],[7,10,["G4304"]],[10,14,["G626"]]]},{"k":25841,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,4,["G1325"]],[4,5,["G5213"]],[5,7,["G4750"]],[7,8,["G2532"]],[8,9,["G4678"]],[9,10,["G3739"]],[10,11,["G3956"]],[11,12,["G5213"]],[12,13,["G480"]],[13,15,["G3756"]],[15,17,["G1410"]],[17,19,["G471"]],[19,20,["G3761"]],[20,21,["G436"]]]},{"k":25842,"v":[[0,1,["G1161"]],[1,5,["G3860"]],[5,6,["G2532"]],[6,7,["G5259"]],[7,8,["G1118"]],[8,9,["G2532"]],[9,10,["G80"]],[10,11,["G2532"]],[11,12,["G4773"]],[12,13,["G2532"]],[13,14,["G5384"]],[14,15,["G2532"]],[15,17,["G1537"]],[17,18,["G5216"]],[18,26,["G2289"]]]},{"k":25843,"v":[[0,1,["G2532"]],[1,4,["G2071"]],[4,5,["G3404"]],[5,6,["G5259"]],[6,7,["G3956"]],[7,12,["G1223","G3450","G3686"]]]},{"k":25844,"v":[[0,1,["G2532"]],[1,4,["G3364"]],[4,6,["G2359"]],[6,7,["G1537"]],[7,8,["G5216"]],[8,9,["G2776"]],[9,10,["G622"]]]},{"k":25845,"v":[[0,1,["G1722"]],[1,2,["G5216"]],[2,3,["G5281"]],[3,4,["G2932"]],[4,6,["G5216"]],[6,7,["G5590"]]]},{"k":25846,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,5,["G1492"]],[5,6,["G2419"]],[6,7,["G2944"]],[7,8,["G5259"]],[8,9,["G4760"]],[9,10,["G5119"]],[10,11,["G1097"]],[11,12,["G3754"]],[12,13,["G3588"]],[13,14,["G2050"]],[14,15,["G846"]],[15,17,["G1448"]]]},{"k":25847,"v":[[0,1,["G5119"]],[1,3,["G3588"]],[3,6,["G1722"]],[6,7,["G2449"]],[7,8,["G5343"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G3735"]],[11,12,["G2532"]],[12,14,["G3588"]],[14,17,["G1722"]],[17,19,["G3319"]],[19,21,["G848"]],[21,23,["G1633"]],[23,24,["G2532"]],[24,26,["G3361"]],[26,27,["G3588"]],[27,30,["G1722"]],[30,31,["G3588"]],[31,32,["G5561"]],[32,33,["G1525"]],[33,34,["G1519","G846"]]]},{"k":25848,"v":[[0,1,["G3754"]],[1,2,["G3778"]],[2,3,["G1526"]],[3,5,["G2250"]],[5,7,["G1557"]],[7,10,["G3956"]],[10,13,["G1125"]],[13,16,["G4137"]]]},{"k":25849,"v":[[0,1,["G1161"]],[1,2,["G3759"]],[2,8,["G2192","G1722","G1064"]],[8,9,["G2532"]],[9,14,["G2337"]],[14,15,["G1722"]],[15,16,["G1565"]],[16,17,["G2250"]],[17,18,["G1063"]],[18,21,["G2071"]],[21,22,["G3173"]],[22,23,["G318"]],[23,24,["G1909"]],[24,25,["G3588"]],[25,26,["G1093"]],[26,27,["G2532"]],[27,28,["G3709"]],[28,29,["G1722"]],[29,30,["G5129"]],[30,31,["G2992"]]]},{"k":25850,"v":[[0,1,["G2532"]],[1,4,["G4098"]],[4,7,["G4750"]],[7,10,["G3162"]],[10,11,["G2532"]],[11,16,["G163"]],[16,17,["G1519"]],[17,18,["G3956"]],[18,19,["G1484"]],[19,20,["G2532"]],[20,21,["G2419"]],[21,23,["G2071"]],[23,25,["G3961"]],[25,26,["G5259"]],[26,28,["G1484"]],[28,29,["G891"]],[29,31,["G2540"]],[31,34,["G1484"]],[34,36,["G4137"]]]},{"k":25851,"v":[[0,1,["G2532"]],[1,4,["G2071"]],[4,5,["G4592"]],[5,6,["G1722"]],[6,8,["G2246"]],[8,9,["G2532"]],[9,12,["G4582"]],[12,13,["G2532"]],[13,16,["G798"]],[16,17,["G2532"]],[17,18,["G1909"]],[18,19,["G3588"]],[19,20,["G1093"]],[20,21,["G4928"]],[21,23,["G1484"]],[23,24,["G1722"]],[24,25,["G640"]],[25,27,["G2281"]],[27,28,["G2532"]],[28,30,["G4535"]],[30,31,["G2278"]]]},{"k":25852,"v":[[0,1,["G444"]],[1,4,["G674"]],[4,5,["G575"]],[5,6,["G5401"]],[6,7,["G2532"]],[7,10,["G4329"]],[10,16,["G1904"]],[16,17,["G3588"]],[17,18,["G3625"]],[18,19,["G1063"]],[19,20,["G3588"]],[20,21,["G1411"]],[21,23,["G3772"]],[23,26,["G4531"]]]},{"k":25853,"v":[[0,1,["G2532"]],[1,2,["G5119"]],[2,5,["G3700"]],[5,6,["G3588"]],[6,7,["G5207"]],[7,9,["G444"]],[9,10,["G2064"]],[10,11,["G1722"]],[11,13,["G3507"]],[13,14,["G3326"]],[14,15,["G1411"]],[15,16,["G2532"]],[16,17,["G4183"]],[17,18,["G1391"]]]},{"k":25854,"v":[[0,1,["G1161"]],[1,4,["G5130"]],[4,5,["G756"]],[5,9,["G1096"]],[9,12,["G352"]],[12,13,["G2532"]],[13,15,["G1869"]],[15,16,["G5216"]],[16,17,["G2776"]],[17,18,["G1360"]],[18,19,["G5216"]],[19,20,["G629"]],[20,22,["G1448"]]]},{"k":25855,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,7,["G3850"]],[7,8,["G1492"]],[8,9,["G3588"]],[9,11,["G4808"]],[11,12,["G2532"]],[12,13,["G3956"]],[13,14,["G3588"]],[14,15,["G1186"]]]},{"k":25856,"v":[[0,1,["G3752"]],[1,3,["G2235"]],[3,5,["G4261"]],[5,7,["G991"]],[7,9,["G1097"]],[9,10,["G575"]],[10,13,["G1438"]],[13,14,["G3754"]],[14,15,["G2330"]],[15,16,["G2076"]],[16,17,["G2235"]],[17,20,["G1451"]]]},{"k":25857,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,3,["G5210"]],[3,4,["G3752"]],[4,6,["G1492"]],[6,8,["G5023"]],[8,11,["G1096"]],[11,12,["G1097"]],[12,14,["G3754"]],[14,15,["G3588"]],[15,16,["G932"]],[16,18,["G2316"]],[18,19,["G2076"]],[19,22,["G1451"]]]},{"k":25858,"v":[[0,1,["G281"]],[1,3,["G3004"]],[3,5,["G5213","(G3754)"]],[5,6,["G3778"]],[6,7,["G1074"]],[7,9,["G3364"]],[9,11,["G3928"]],[11,12,["G2193","G302"]],[12,13,["G3956"]],[13,15,["G1096"]]]},{"k":25859,"v":[[0,1,["G3772"]],[1,2,["G2532"]],[2,3,["G1093"]],[3,6,["G3928"]],[6,7,["G1161"]],[7,8,["G3450"]],[8,9,["G3056"]],[9,11,["G3364"]],[11,13,["G3928"]]]},{"k":25860,"v":[[0,1,["G1161"]],[1,3,["G4337"]],[3,5,["G1438"]],[5,9,["G3379"]],[9,10,["G5216"]],[10,11,["G2588"]],[11,13,["G925"]],[13,14,["G1722"]],[14,15,["G2897"]],[15,16,["G2532"]],[16,17,["G3178"]],[17,18,["G2532"]],[18,19,["G3308"]],[19,22,["G982"]],[22,23,["G2532"]],[23,25,["G1565"]],[25,26,["G2250"]],[26,27,["G2186"]],[27,28,["G1909"]],[28,29,["G5209"]],[29,30,["G160"]]]},{"k":25861,"v":[[0,1,["G1063"]],[1,2,["G5613"]],[2,4,["G3803"]],[4,7,["G1904"]],[7,8,["G1909"]],[8,9,["G3956"]],[9,12,["G2521"]],[12,13,["G1909"]],[13,15,["G4383"]],[15,17,["G3588"]],[17,18,["G3956"]],[18,19,["G1093"]]]},{"k":25862,"v":[[0,1,["G69"]],[1,3,["G3767"]],[3,5,["G1189"]],[5,6,["G1722","G3956","G2540"]],[6,7,["G2443"]],[7,12,["G2661"]],[12,14,["G1628"]],[14,15,["G3956"]],[15,17,["G5023"]],[17,19,["G3195"]],[19,22,["G1096"]],[22,23,["G2532"]],[23,25,["G2476"]],[25,26,["G1715"]],[26,27,["G3588"]],[27,28,["G5207"]],[28,30,["G444"]]]},{"k":25863,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,5,["G2250"]],[5,7,["G2258"]],[7,8,["G1321"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2411"]],[11,12,["G1161"]],[12,14,["G3571"]],[14,17,["G1831"]],[17,19,["G835"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G3735"]],[22,25,["G2564"]],[25,29,["G1636"]]]},{"k":25864,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G2992"]],[4,9,["G3719"]],[9,10,["G4314"]],[10,11,["G846"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G2411"]],[14,17,["G191"]],[17,18,["G846"]]]},{"k":25865,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1859"]],[3,6,["G106"]],[6,8,["G1448"]],[8,11,["G3004"]],[11,13,["G3957"]]]},{"k":25866,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G2532"]],[5,6,["G1122"]],[6,7,["G2212"]],[7,8,["G4459"]],[8,11,["G337"]],[11,12,["G846"]],[12,13,["G1063"]],[13,15,["G5399"]],[15,16,["G3588"]],[16,17,["G2992"]]]},{"k":25867,"v":[[0,1,["G1161"]],[1,2,["G1525"]],[2,3,["G4567"]],[3,4,["G1519"]],[4,5,["G2455"]],[5,6,["G1941"]],[6,7,["G2469"]],[7,8,["G5607"]],[8,9,["G1537"]],[9,10,["G3588"]],[10,11,["G706"]],[11,13,["G3588"]],[13,14,["G1427"]]]},{"k":25868,"v":[[0,1,["G2532"]],[1,5,["G565"]],[5,8,["G4814"]],[8,9,["G3588"]],[9,11,["G749"]],[11,12,["G2532"]],[12,13,["G4755"]],[13,14,["G4459"]],[14,17,["G3860"]],[17,18,["G846"]],[18,20,["G846"]]]},{"k":25869,"v":[[0,1,["G2532"]],[1,4,["G5463"]],[4,5,["G2532"]],[5,6,["G4934"]],[6,8,["G1325"]],[8,9,["G846"]],[9,10,["G694"]]]},{"k":25870,"v":[[0,1,["G2532"]],[1,3,["G1843"]],[3,4,["G2532"]],[4,5,["G2212"]],[5,6,["G2120"]],[6,8,["G3860"]],[8,9,["G846"]],[9,11,["G846"]],[11,15,["G817"]],[15,17,["G3793"]]]},{"k":25871,"v":[[0,1,["G1161"]],[1,2,["G2064"]],[2,3,["G3588"]],[3,4,["G2250"]],[4,7,["G106"]],[7,8,["G1722","G3739"]],[8,9,["G3588"]],[9,10,["G3957"]],[10,11,["G1163"]],[11,13,["G2380"]]]},{"k":25872,"v":[[0,1,["G2532"]],[1,3,["G649"]],[3,4,["G4074"]],[4,5,["G2532"]],[5,6,["G2491"]],[6,7,["G2036"]],[7,8,["G4198"]],[8,10,["G2090"]],[10,11,["G2254"]],[11,12,["G3588"]],[12,13,["G3957"]],[13,14,["G2443"]],[14,17,["G5315"]]]},{"k":25873,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G4226"]],[6,7,["G2309"]],[7,11,["G2090"]]]},{"k":25874,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G2400"]],[6,8,["G5216"]],[8,10,["G1525"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G4172"]],[13,17,["G444"]],[17,18,["G4876"]],[18,19,["G5213"]],[19,20,["G941"]],[20,22,["G2765"]],[22,24,["G5204"]],[24,25,["G190"]],[25,26,["G846"]],[26,27,["G1519"]],[27,28,["G3588"]],[28,29,["G3614"]],[29,30,["G3757"]],[30,33,["G1531"]]]},{"k":25875,"v":[[0,1,["G2532"]],[1,4,["G2046"]],[4,6,["G3588"]],[6,7,["G3617"]],[7,9,["G3588"]],[9,10,["G3614"]],[10,11,["G3588"]],[11,12,["G1320"]],[12,13,["G3004"]],[13,15,["G4671"]],[15,16,["G4226"]],[16,17,["G2076"]],[17,18,["G3588"]],[18,19,["G2646"]],[19,20,["G3699"]],[20,23,["G5315"]],[23,24,["G3588"]],[24,25,["G3957"]],[25,26,["G3326"]],[26,27,["G3450"]],[27,28,["G3101"]]]},{"k":25876,"v":[[0,2,["G2548"]],[2,4,["G1166"]],[4,5,["G5213"]],[5,7,["G3173"]],[7,9,["G508"]],[9,10,["G4766"]],[10,11,["G1563"]],[11,13,["G2090"]]]},{"k":25877,"v":[[0,1,["G1161"]],[1,3,["G565"]],[3,5,["G2147"]],[5,6,["G2531"]],[6,9,["G2046"]],[9,11,["G846"]],[11,12,["G2532"]],[12,15,["G2090"]],[15,16,["G3588"]],[16,17,["G3957"]]]},{"k":25878,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,3,["G3588"]],[3,4,["G5610"]],[4,6,["G1096"]],[6,9,["G377"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G1427"]],[12,13,["G652"]],[13,14,["G4862"]],[14,15,["G846"]]]},{"k":25879,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,7,["G1939"]],[7,10,["G1937"]],[10,12,["G5315"]],[12,13,["G5124"]],[13,14,["G3957"]],[14,15,["G3326"]],[15,16,["G5216"]],[16,17,["G4253"]],[17,18,["G3165"]],[18,19,["G3958"]]]},{"k":25880,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,7,["(G3754)"]],[7,8,["G3364"]],[8,10,["G3765"]],[10,11,["G5315"]],[11,12,["G1537","G846"]],[12,13,["G2193","G3755"]],[13,16,["G4137"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G932"]],[19,21,["G2316"]]]},{"k":25881,"v":[[0,1,["G2532"]],[1,3,["G1209"]],[3,5,["G4221"]],[5,8,["G2168"]],[8,10,["G2036"]],[10,11,["G2983"]],[11,12,["G5124"]],[12,13,["G2532"]],[13,14,["G1266"]],[14,17,["G1438"]]]},{"k":25882,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,7,["(G3754)"]],[7,8,["G3364"]],[8,9,["G4095"]],[9,10,["G575"]],[10,11,["G3588"]],[11,12,["G1081"]],[12,14,["G3588"]],[14,15,["G288"]],[15,16,["G2193","G3755"]],[16,17,["G3588"]],[17,18,["G932"]],[18,20,["G2316"]],[20,22,["G2064"]]]},{"k":25883,"v":[[0,1,["G2532"]],[1,3,["G2983"]],[3,4,["G740"]],[4,7,["G2168"]],[7,9,["G2806"]],[9,11,["G2532"]],[11,12,["G1325"]],[12,14,["G846"]],[14,15,["G3004"]],[15,16,["G5124"]],[16,17,["G2076"]],[17,18,["G3450"]],[18,19,["G4983"]],[19,22,["G1325"]],[22,23,["G5228"]],[23,24,["G5216"]],[24,25,["G5124"]],[25,26,["G4160"]],[26,27,["G1519"]],[27,28,["G364"]],[28,30,["G1699"]]]},{"k":25884,"v":[[0,1,["G5615"]],[1,2,["G2532"]],[2,3,["G3588"]],[3,4,["G4221"]],[4,6,["G1172"]],[6,7,["G3004"]],[7,8,["G5124"]],[8,10,["G4221"]],[10,11,["G3588"]],[11,12,["G2537"]],[12,13,["G1242"]],[13,14,["G1722"]],[14,15,["G3450"]],[15,16,["G129"]],[16,19,["G1632"]],[19,20,["G5228"]],[20,21,["G5216"]]]},{"k":25885,"v":[[0,1,["G4133"]],[1,2,["G2400"]],[2,3,["G3588"]],[3,4,["G5495"]],[4,8,["G3860"]],[8,9,["G3165"]],[9,11,["G3326"]],[11,12,["G1700"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G5132"]]]},{"k":25886,"v":[[0,1,["G2532"]],[1,2,["G3303"]],[2,3,["G3588"]],[3,4,["G5207"]],[4,6,["G444"]],[6,7,["G4198"]],[7,8,["G2596"]],[8,11,["G3724"]],[11,12,["G4133"]],[12,13,["G3759"]],[13,15,["G1565"]],[15,16,["G444"]],[16,17,["G1223"]],[17,18,["G3739"]],[18,21,["G3860"]]]},{"k":25887,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G756"]],[3,5,["G4802"]],[5,6,["G4314"]],[6,7,["G1438"]],[7,8,["G5101","(G686)"]],[8,9,["G1537"]],[9,10,["G846"]],[10,12,["G1498"]],[12,14,["G3195"]],[14,15,["G4238"]],[15,17,["G5124"]]]},{"k":25888,"v":[[0,1,["G1161"]],[1,3,["G1096"]],[3,4,["G2532"]],[4,6,["G5379"]],[6,7,["G1722"]],[7,8,["G846"]],[8,9,["G5101"]],[9,11,["G846"]],[11,14,["G1380"]],[14,15,["(G1511)"]],[15,16,["G3187"]]]},{"k":25889,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G3588"]],[6,7,["G935"]],[7,9,["G3588"]],[9,10,["G1484"]],[10,13,["G2961"]],[13,14,["G846"]],[14,15,["G2532"]],[15,20,["G1850"]],[20,21,["G846"]],[21,23,["G2564"]],[23,24,["G2110"]]]},{"k":25890,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,4,["G3756"]],[4,6,["G3779"]],[6,7,["G235"]],[7,11,["G3187"]],[11,12,["G1722"]],[12,13,["G5213"]],[13,16,["G1096"]],[16,17,["G5613"]],[17,18,["G3588"]],[18,19,["G3501"]],[19,20,["G2532"]],[20,24,["G2233"]],[24,25,["G5613"]],[25,29,["G1247"]]]},{"k":25891,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,4,["G3187"]],[4,9,["G345"]],[9,10,["G2228"]],[10,13,["G1247"]],[13,15,["G3780"]],[15,20,["G345"]],[20,21,["G1161"]],[21,22,["G1473"]],[22,23,["G1510"]],[23,24,["G1722","G3319"]],[24,25,["G5216"]],[25,26,["G5613"]],[26,29,["G1247"]]]},{"k":25892,"v":[[0,0,["(G1161)"]],[0,1,["G5210"]],[1,2,["G2075"]],[2,6,["G1265"]],[6,7,["G3326"]],[7,8,["G1700"]],[8,9,["G1722"]],[9,10,["G3450"]],[10,11,["G3986"]]]},{"k":25893,"v":[[0,2,["G2504"]],[2,3,["G1303"]],[3,5,["G5213"]],[5,7,["G932"]],[7,8,["G2531"]],[8,9,["G3450"]],[9,10,["G3962"]],[10,12,["G1303"]],[12,14,["G3427"]]]},{"k":25894,"v":[[0,1,["G2443"]],[1,4,["G2068"]],[4,5,["G2532"]],[5,6,["G4095"]],[6,7,["G1909"]],[7,8,["G3450"]],[8,9,["G5132"]],[9,10,["G1722"]],[10,11,["G3450"]],[11,12,["G932"]],[12,13,["G2532"]],[13,14,["G2523"]],[14,15,["G1909"]],[15,16,["G2362"]],[16,17,["G2919"]],[17,18,["G3588"]],[18,19,["G1427"]],[19,20,["G5443"]],[20,22,["G2474"]]]},{"k":25895,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2036"]],[4,5,["G4613"]],[5,6,["G4613"]],[6,7,["G2400"]],[7,8,["G4567"]],[8,10,["G1809"]],[10,13,["G5209"]],[13,17,["G4617"]],[17,19,["G5613"]],[19,20,["G4621"]]]},{"k":25896,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,4,["G1189"]],[4,5,["G4012"]],[5,6,["G4675"]],[6,7,["G2443"]],[7,8,["G4675"]],[8,9,["G4102"]],[9,10,["G1587"]],[10,11,["G3361"]],[11,12,["G2532"]],[12,13,["G4218"]],[13,14,["G4771"]],[14,16,["G1994"]],[16,17,["G4741"]],[17,18,["G4675"]],[18,19,["G80"]]]},{"k":25897,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G2962"]],[6,8,["G1510"]],[8,9,["G2092"]],[9,11,["G4198"]],[11,12,["G3326"]],[12,13,["G4675"]],[13,14,["G2532"]],[14,15,["G1519"]],[15,16,["G5438"]],[16,17,["G2532"]],[17,18,["G1519"]],[18,19,["G2288"]]]},{"k":25898,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G3004"]],[5,6,["G4671"]],[6,7,["G4074"]],[7,9,["G220"]],[9,11,["G3364"]],[11,12,["G5455"]],[12,14,["G4594"]],[14,15,["G4250"]],[15,16,["(G2228)"]],[16,19,["G5151"]],[19,20,["G533"]],[20,22,["(G3361)"]],[22,23,["G1492"]],[23,24,["G3165"]]]},{"k":25899,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G3753"]],[6,8,["G649"]],[8,9,["G5209"]],[9,10,["G817"]],[10,11,["G905"]],[11,12,["G2532"]],[12,13,["G4082"]],[13,14,["G2532"]],[14,15,["G5266","(G3361)"]],[15,16,["G5302"]],[16,19,["G5100"]],[19,20,["G1161"]],[20,21,["G3588"]],[21,22,["G2036"]],[22,23,["G3762"]]]},{"k":25900,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,5,["G846"]],[5,6,["G235"]],[6,7,["G3568"]],[7,10,["G2192"]],[10,12,["G905"]],[12,15,["G142"]],[15,17,["G2532"]],[17,18,["G3668"]],[18,19,["(G2532)"]],[19,20,["G4082"]],[20,21,["G2532"]],[21,24,["G2192"]],[24,25,["G3361"]],[25,29,["G4453"]],[29,30,["G848"]],[30,31,["G2440"]],[31,32,["G2532"]],[32,33,["G59"]],[33,34,["(G3162)"]]]},{"k":25901,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,7,["G5124"]],[7,10,["G1125"]],[10,11,["G1163"]],[11,12,["G2089"]],[12,14,["G5055"]],[14,15,["G1722"]],[15,16,["G1698"]],[16,17,["G2532"]],[17,20,["G3049"]],[20,21,["G3326"]],[21,23,["G459"]],[23,24,["G1063","(G2532)"]],[24,26,["G3588"]],[26,27,["G4012"]],[27,28,["G1700"]],[28,29,["G2192"]],[29,31,["G5056"]]]},{"k":25902,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G2962"]],[4,5,["G2400"]],[5,6,["G5602"]],[6,8,["G1417"]],[8,9,["G3162"]],[9,10,["G1161"]],[10,11,["G3588"]],[11,12,["G2036"]],[12,14,["G846"]],[14,16,["G2076"]],[16,17,["G2425"]]]},{"k":25903,"v":[[0,1,["G2532"]],[1,4,["G1831"]],[4,6,["G4198"]],[6,10,["G2596","G1485"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G3735"]],[13,15,["G1636"]],[15,16,["G1161"]],[16,17,["G846"]],[17,18,["G3101"]],[18,19,["G2532"]],[19,20,["G190"]],[20,21,["G846"]]]},{"k":25904,"v":[[0,1,["G1161"]],[1,4,["G1096"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G5117"]],[7,9,["G2036"]],[9,11,["G846"]],[11,12,["G4336"]],[12,15,["G1525"]],[15,16,["G3361"]],[16,17,["G1519"]],[17,18,["G3986"]]]},{"k":25905,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,4,["G645"]],[4,5,["G575"]],[5,6,["G846"]],[6,7,["G5616"]],[7,9,["G3037"]],[9,10,["G1000"]],[10,11,["G2532"]],[11,13,["G5087","G1119"]],[13,15,["G4336"]]]},{"k":25906,"v":[[0,1,["G3004"]],[1,2,["G3962"]],[2,3,["G1487"]],[3,6,["G1014"]],[6,7,["G3911"]],[7,8,["G5124"]],[8,9,["G4221"]],[9,10,["G575"]],[10,11,["G1700"]],[11,12,["G4133"]],[12,13,["G3361"]],[13,14,["G3450"]],[14,15,["G2307"]],[15,16,["G235"]],[16,17,["G4674"]],[17,19,["G1096"]]]},{"k":25907,"v":[[0,1,["G1161"]],[1,3,["G3700"]],[3,5,["G32"]],[5,7,["G846"]],[7,8,["G575"]],[8,9,["G3772"]],[9,10,["G1765"]],[10,11,["G846"]]]},{"k":25908,"v":[[0,1,["G2532"]],[1,2,["G1096"]],[2,3,["G1722"]],[3,5,["G74"]],[5,7,["G4336"]],[7,9,["G1617"]],[9,10,["G1161"]],[10,11,["G846"]],[11,12,["G2402"]],[12,13,["G1096"]],[13,16,["G5616"]],[16,18,["G2361"]],[18,20,["G129"]],[20,22,["G2597"]],[22,23,["G1909"]],[23,24,["G3588"]],[24,25,["G1093"]]]},{"k":25909,"v":[[0,1,["G2532"]],[1,5,["G450"]],[5,6,["G575"]],[6,7,["G4335"]],[7,10,["G2064"]],[10,11,["G4314"]],[11,13,["G3101"]],[13,15,["G2147"]],[15,16,["G846"]],[16,17,["G2837"]],[17,18,["G575"]],[18,19,["G3077"]]]},{"k":25910,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G5101"]],[5,6,["G2518"]],[6,8,["G450"]],[8,10,["G4336"]],[10,11,["G3363"]],[11,13,["G1525"]],[13,14,["G1519"]],[14,15,["G3986"]]]},{"k":25911,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G2089"]],[4,5,["G2980"]],[5,6,["G2400"]],[6,8,["G3793"]],[8,9,["G2532"]],[9,13,["G3004"]],[13,14,["G2455"]],[14,15,["G1520"]],[15,17,["G3588"]],[17,18,["G1427"]],[18,20,["G4281"]],[20,21,["G846"]],[21,22,["G2532"]],[22,24,["G1448"]],[24,26,["G2424"]],[26,28,["G5368"]],[28,29,["G846"]]]},{"k":25912,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G2455"]],[6,7,["G3860"]],[7,9,["G3588"]],[9,10,["G5207"]],[10,12,["G444"]],[12,15,["G5370"]]]},{"k":25913,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,5,["G4012"]],[5,6,["G846"]],[6,7,["G1492"]],[7,10,["G2071"]],[10,12,["G2036"]],[12,14,["G846"]],[14,15,["G2962"]],[15,17,["(G1487)"]],[17,18,["G3960"]],[18,19,["G1722"]],[19,21,["G3162"]]]},{"k":25914,"v":[[0,1,["G2532","(G5100)"]],[1,2,["G1520"]],[2,3,["G1537"]],[3,4,["G846"]],[4,5,["G3960"]],[5,6,["G3588"]],[6,7,["G1401"]],[7,9,["G3588"]],[9,11,["G749"]],[11,12,["G2532"]],[12,14,["G851"]],[14,15,["G846"]],[15,16,["G1188"]],[16,17,["G3775"]]]},{"k":25915,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,5,["G2036"]],[5,6,["G1439"]],[6,9,["G2193","G5127"]],[9,10,["G2532"]],[10,12,["G680"]],[12,13,["G846"]],[13,14,["G5621"]],[14,16,["G2390"]],[16,17,["G846"]]]},{"k":25916,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,7,["G749"]],[7,8,["G2532"]],[8,9,["G4755"]],[9,11,["G3588"]],[11,12,["G2411"]],[12,13,["G2532"]],[13,15,["G4245"]],[15,18,["G3854"]],[18,19,["G1909"]],[19,20,["G846"]],[20,24,["G1831"]],[24,25,["G5613"]],[25,26,["G1909"]],[26,28,["G3027"]],[28,29,["G3326"]],[29,30,["G3162"]],[30,31,["G2532"]],[31,32,["G3586"]]]},{"k":25917,"v":[[0,2,["G3450"]],[2,3,["G5607"]],[3,4,["G2596","G2250"]],[4,5,["G3326"]],[5,6,["G5216"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G2411"]],[9,12,["G1614"]],[12,13,["G3756"]],[13,14,["G5495"]],[14,15,["G1909"]],[15,16,["G1691"]],[16,17,["G235"]],[17,18,["G3778"]],[18,19,["G2076"]],[19,20,["G5216"]],[20,21,["G5610"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G1849"]],[24,26,["G4655"]]]},{"k":25918,"v":[[0,1,["G1161"]],[1,2,["G4815"]],[2,4,["G846"]],[4,6,["G71"]],[6,8,["G2532"]],[8,9,["G1521"]],[9,10,["G846"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,14,["G749"]],[14,15,["G3624"]],[15,16,["G1161"]],[16,17,["G4074"]],[17,18,["G190"]],[18,20,["G3113"]]]},{"k":25919,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G681"]],[5,7,["G4442"]],[7,8,["G1722"]],[8,10,["G3319"]],[10,12,["G3588"]],[12,13,["G833"]],[13,14,["G2532"]],[14,18,["G4776"]],[18,19,["G4074"]],[19,21,["G2521"]],[21,22,["G1722","G3319"]],[22,23,["G846"]]]},{"k":25920,"v":[[0,1,["G1161"]],[1,3,["G5100"]],[3,4,["G3814"]],[4,5,["G1492"]],[5,6,["G846"]],[6,9,["G2521"]],[9,10,["G4314"]],[10,11,["G3588"]],[11,12,["G5457"]],[12,13,["G2532"]],[13,15,["G816"]],[15,17,["G846"]],[17,19,["G2036"]],[19,21,["G3778"]],[21,22,["G2258"]],[22,23,["G2532"]],[23,24,["G4862"]],[24,25,["G846"]]]},{"k":25921,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G720"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G1135"]],[6,8,["G1492"]],[8,9,["G846"]],[9,10,["G3756"]]]},{"k":25922,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,5,["G1024"]],[5,6,["G2087"]],[6,7,["G1492"]],[7,8,["G846"]],[8,10,["G5346"]],[10,11,["G4771"]],[11,12,["G1488"]],[12,13,["G2532"]],[13,14,["G1537"]],[14,15,["G846"]],[15,16,["G1161"]],[16,17,["G4074"]],[17,18,["G2036"]],[18,19,["G444"]],[19,21,["G1510"]],[21,22,["G3756"]]]},{"k":25923,"v":[[0,1,["G2532"]],[1,2,["G5616"]],[2,8,["G1339","G3391","G5610"]],[8,9,["G243"]],[9,11,["G1340"]],[11,12,["G3004"]],[12,15,["G1909","G225"]],[15,16,["G3778"]],[16,18,["G2532"]],[18,19,["G2258"]],[19,20,["G3326"]],[20,21,["G846"]],[21,22,["G1063"]],[22,24,["G2076"]],[24,25,["(G2532)"]],[25,26,["G1057"]]]},{"k":25924,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2036"]],[3,4,["G444"]],[4,6,["G1492"]],[6,7,["G3756"]],[7,8,["G3739"]],[8,10,["G3004"]],[10,11,["G2532"]],[11,12,["G3916"]],[12,14,["G846"]],[14,15,["G2089"]],[15,16,["G2980"]],[16,17,["G3588"]],[17,18,["G220"]],[18,19,["G5455"]]]},{"k":25925,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G4762"]],[4,7,["G1689"]],[7,8,["G4074"]],[8,9,["G2532"]],[9,10,["G4074"]],[10,11,["G5279"]],[11,12,["G3588"]],[12,13,["G3056"]],[13,15,["G3588"]],[15,16,["G2962"]],[16,17,["G5613"]],[17,20,["G2036"]],[20,22,["G846"]],[22,23,["G4250"]],[23,25,["G220"]],[25,26,["G5455"]],[26,29,["G533"]],[29,30,["G3165"]],[30,31,["G5151"]]]},{"k":25926,"v":[[0,1,["G2532"]],[1,2,["G4074"]],[2,3,["G1831"]],[3,4,["G1854"]],[4,6,["G2799"]],[6,7,["G4090"]]]},{"k":25927,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G435"]],[3,5,["G4912"]],[5,6,["G2424"]],[6,7,["G1702"]],[7,8,["G846"]],[8,10,["G1194"]],[10,11,[]]]},{"k":25928,"v":[[0,1,["G2532"]],[1,5,["G4028"]],[5,6,["G846"]],[6,8,["G5180"]],[8,9,["G846"]],[9,11,["G3588"]],[11,12,["G4383"]],[12,13,["G2532"]],[13,14,["G1905"]],[14,15,["G846"]],[15,16,["G3004"]],[16,17,["G4395"]],[17,18,["G5101"]],[18,19,["G2076"]],[19,22,["G3817"]],[22,23,["G4571"]]]},{"k":25929,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,4,["G2087"]],[4,5,["G987"]],[5,6,["G3004"]],[6,8,["G1519"]],[8,9,["G846"]]]},{"k":25930,"v":[[0,1,["G2532"]],[1,4,["G5613"]],[4,6,["G1096"]],[6,7,["G2250"]],[7,8,["G3588"]],[8,9,["G4244"]],[9,11,["G3588"]],[11,12,["G2992"]],[12,13,["G5037"]],[13,16,["G749"]],[16,17,["G2532"]],[17,19,["G1122"]],[19,21,["G4863"]],[21,22,["G2532"]],[22,23,["G321"]],[23,24,["G846"]],[24,25,["G1519"]],[25,26,["G1438"]],[26,27,["G4892"]],[27,28,["G3004"]]]},{"k":25931,"v":[[0,0,["(G1161)"]],[0,1,["G1488"]],[1,2,["G4771"]],[2,3,["G3588"]],[3,4,["G5547"]],[4,5,["G2036"]],[5,6,["G2254"]],[6,7,["G1161"]],[7,9,["G2036"]],[9,11,["G846"]],[11,12,["G1437"]],[12,14,["G2036"]],[14,15,["G5213"]],[15,18,["G3364"]],[18,19,["G4100"]]]},{"k":25932,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,4,["G2532"]],[4,5,["G2065"]],[5,9,["G3364"]],[9,10,["G611"]],[10,11,["G3427"]],[11,12,["G2228"]],[12,15,["G630"]]]},{"k":25933,"v":[[0,1,["G575","G3568"]],[1,2,["(G2071)"]],[2,3,["G3588"]],[3,4,["G5207"]],[4,6,["G444"]],[6,7,["G2521"]],[7,8,["G1537"]],[8,11,["G1188"]],[11,13,["G3588"]],[13,14,["G1411"]],[14,16,["G2316"]]]},{"k":25934,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,4,["G3956"]],[4,5,["G1488"]],[5,6,["G4771"]],[6,7,["G3767"]],[7,8,["G3588"]],[8,9,["G5207"]],[9,11,["G2316"]],[11,12,["G1161"]],[12,13,["G3588"]],[13,14,["G5346"]],[14,15,["G4314"]],[15,16,["G846"]],[16,17,["G5210"]],[17,18,["G3004"]],[18,19,["G3754"]],[19,20,["G1473"]],[20,21,["G1510"]]]},{"k":25935,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G5101"]],[4,5,["G2192","G5532"]],[5,8,["G2089"]],[8,9,["G3141"]],[9,10,["G1063"]],[10,12,["G846"]],[12,14,["G191"]],[14,15,["G575"]],[15,17,["G846"]],[17,18,["G4750"]]]},{"k":25936,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G537"]],[3,4,["G4128"]],[4,6,["G846"]],[6,7,["G450"]],[7,9,["G71"]],[9,10,["G846"]],[10,11,["G1909"]],[11,12,["G4091"]]]},{"k":25937,"v":[[0,1,["G1161"]],[1,3,["G756"]],[3,5,["G2723"]],[5,6,["G846"]],[6,7,["G3004"]],[7,9,["G2147"]],[9,10,["G5126"]],[10,12,["G1294"]],[12,13,["G3588"]],[13,14,["G1484"]],[14,15,["G2532"]],[15,16,["G2967"]],[16,18,["G1325"]],[18,19,["G5411"]],[19,21,["G2541"]],[21,22,["G3004"]],[22,25,["G1438"]],[25,26,["G1511"]],[26,27,["G5547"]],[27,29,["G935"]]]},{"k":25938,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,3,["G1905"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G1488"]],[6,7,["G4771"]],[7,8,["G3588"]],[8,9,["G935"]],[9,11,["G3588"]],[11,12,["G2453"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G611"]],[15,16,["G846"]],[16,18,["G5346"]],[18,19,["G4771"]],[19,20,["G3004"]],[20,21,[]]]},{"k":25939,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G4091"]],[3,4,["G4314"]],[4,5,["G3588"]],[5,7,["G749"]],[7,8,["G2532"]],[8,10,["G3588"]],[10,11,["G3793"]],[11,13,["G2147"]],[13,14,["G3762"]],[14,15,["G158"]],[15,16,["G1722"]],[16,17,["G5129"]],[17,18,["G444"]]]},{"k":25940,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,6,["G2001"]],[6,7,["G3004"]],[7,10,["G383"]],[10,11,["G3588"]],[11,12,["G2992"]],[12,13,["G1321"]],[13,14,["G2596"]],[14,15,["G3650"]],[15,16,["G2449"]],[16,17,["G756"]],[17,18,["G575"]],[18,19,["G1056"]],[19,20,["G2193"]],[20,22,["G5602"]]]},{"k":25941,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,3,["G191"]],[3,5,["G1056"]],[5,7,["G1905"]],[7,8,["G1487"]],[8,9,["G3588"]],[9,10,["G444"]],[10,11,["G2076"]],[11,13,["G1057"]]]},{"k":25942,"v":[[0,1,["G2532"]],[1,6,["G1921"]],[6,7,["G3754"]],[7,10,["G2076","G1537"]],[10,11,["G2264"]],[11,12,["G1849"]],[12,14,["G375"]],[14,15,["G846"]],[15,16,["G4314"]],[16,17,["G2264"]],[17,19,["G846"]],[19,20,["G2532"]],[20,21,["G5607"]],[21,22,["G1722"]],[22,23,["G2414"]],[23,24,["G1722"]],[24,25,["G5025"]],[25,26,["G2250"]]]},{"k":25943,"v":[[0,1,["G1161"]],[1,3,["G2264"]],[3,4,["G1492"]],[4,5,["G2424"]],[5,9,["G5463","G3029"]],[9,10,["G1063"]],[10,12,["G2258"]],[12,13,["G2309"]],[13,15,["G1492"]],[15,16,["G846"]],[16,17,["G1537"]],[17,19,["G2425"]],[19,24,["G191"]],[24,26,["G4183"]],[26,27,["G4012"]],[27,28,["G846"]],[28,29,["G2532"]],[29,31,["G1679"]],[31,34,["G1492"]],[34,35,["G5100"]],[35,36,["G4592"]],[36,37,["G1096"]],[37,38,["G5259"]],[38,39,["G846"]]]},{"k":25944,"v":[[0,1,["G1161"]],[1,3,["G1905"]],[3,5,["G846"]],[5,6,["G1722"]],[6,7,["G2425"]],[7,8,["G3056"]],[8,9,["G1161"]],[9,10,["G846"]],[10,11,["G611"]],[11,12,["G846"]],[12,13,["G3762"]]]},{"k":25945,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G2532"]],[5,6,["G1122"]],[6,7,["G2476"]],[7,9,["G2159"]],[9,10,["G2723"]],[10,11,["G846"]]]},{"k":25946,"v":[[0,1,["G1161"]],[1,2,["G2264"]],[2,3,["G4862"]],[3,4,["G848"]],[4,7,["G4753"]],[7,11,["G1848","G846"]],[11,12,["G2532"]],[12,13,["G1702"]],[13,16,["G4016"]],[16,17,["G846"]],[17,20,["G2986"]],[20,21,["G2066"]],[21,25,["G375","G846"]],[25,27,["G4091"]]]},{"k":25947,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G2250"]],[4,5,["G4091"]],[5,6,["G2532"]],[6,7,["G2264"]],[7,9,["G1096"]],[9,10,["G5384"]],[10,11,["G3326","G240"]],[11,12,["G1063"]],[12,13,["G4391"]],[13,15,["G5607"]],[15,16,["G1722"]],[16,17,["G2189"]],[17,18,["G4314"]],[18,19,["G1438"]]]},{"k":25948,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,7,["G4779"]],[7,8,["G3588"]],[8,10,["G749"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G758"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G2992"]]]},{"k":25949,"v":[[0,1,["G2036"]],[1,2,["G4314"]],[2,3,["G846"]],[3,6,["G4374"]],[6,7,["G5126"]],[7,8,["G444"]],[8,10,["G3427"]],[10,11,["G5613"]],[11,14,["G654"]],[14,15,["G3588"]],[15,16,["G2992"]],[16,17,["G2532"]],[17,18,["G2400"]],[18,19,["G1473"]],[19,21,["G350"]],[21,23,["G1799"]],[23,24,["G5216"]],[24,26,["G2147"]],[26,27,["G3762"]],[27,28,["G158"]],[28,29,["G1722"]],[29,30,["G5129"]],[30,31,["G444"]],[31,35,["G3739"]],[35,37,["G2723"]],[37,38,["G846"]]]},{"k":25950,"v":[[0,1,["(G235)"]],[1,3,["G3761"]],[3,4,["G2264"]],[4,5,["G1063"]],[5,7,["G375"]],[7,8,["G5209"]],[8,9,["G4314"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G2400"]],[12,13,["G3762"]],[13,14,["G514"]],[14,16,["G2288"]],[16,17,["G2076"]],[17,18,["G4238"]],[18,20,["G846"]]]},{"k":25951,"v":[[0,3,["G3767"]],[3,4,["G3811"]],[4,5,["G846"]],[5,7,["G630"]],[7,8,[]]]},{"k":25952,"v":[[0,1,["G1161"]],[1,3,["G318"]],[3,5,["G2192"]],[5,6,["G630"]],[6,7,["G1520"]],[7,9,["G846"]],[9,10,["G2596"]],[10,12,["G1859"]]]},{"k":25953,"v":[[0,1,["G1161"]],[1,4,["G349"]],[4,7,["G3826"]],[7,8,["G3004"]],[8,9,["G142"]],[9,11,["G5126"]],[11,13,["G1161"]],[13,14,["G630"]],[14,16,["G2254"]],[16,17,["G912"]]]},{"k":25954,"v":[[0,1,["G3748"]],[1,2,["G1223"]],[2,4,["G5100"]],[4,5,["G4714"]],[5,6,["G1096"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G4172"]],[9,10,["G2532"]],[10,12,["G5408"]],[12,13,["G2258"]],[13,14,["G906"]],[14,15,["G1519"]],[15,16,["G5438"]]]},{"k":25955,"v":[[0,1,["G4091"]],[1,2,["G3767"]],[2,3,["G2309"]],[3,5,["G630"]],[5,6,["G2424"]],[6,10,["G4377","G3825"]]]},{"k":25956,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2019"]],[3,4,["G3004"]],[4,5,["G4717"]],[5,7,["G4717"]],[7,8,["G846"]]]},{"k":25957,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,8,["G5154"]],[8,9,["G1063"]],[9,10,["G5101"]],[10,11,["G2556"]],[11,13,["G3778"]],[13,14,["G4160"]],[14,17,["G2147"]],[17,18,["G3762"]],[18,19,["G158"]],[19,21,["G2288"]],[21,22,["G1722"]],[22,23,["G846"]],[23,26,["G3767"]],[26,27,["G3811"]],[27,28,["G846"]],[28,29,["G2532"]],[29,32,["G630"]]]},{"k":25958,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G1945"]],[4,6,["G3173"]],[6,7,["G5456"]],[7,8,["G154"]],[8,10,["G846"]],[10,13,["G4717"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G5456"]],[16,18,["G846"]],[18,19,["G2532"]],[19,21,["G3588"]],[21,23,["G749"]],[23,24,["G2729"]]]},{"k":25959,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,4,["G1948"]],[4,8,["G1096"]],[8,11,["G846","G155"]]]},{"k":25960,"v":[[0,1,["G1161"]],[1,3,["G630"]],[3,5,["G846"]],[5,8,["G1223"]],[8,9,["G4714"]],[9,10,["G2532"]],[10,11,["G5408"]],[11,13,["G906"]],[13,14,["G1519"]],[14,15,["G5438"]],[15,16,["G3739"]],[16,19,["G154"]],[19,20,["G1161"]],[20,22,["G3860"]],[22,23,["G2424"]],[23,25,["G846"]],[25,26,["G2307"]]]},{"k":25961,"v":[[0,1,["G2532"]],[1,2,["G5613"]],[2,6,["G520","G846"]],[6,10,["G1949"]],[10,11,["G5100"]],[11,12,["G4613"]],[12,14,["G2956"]],[14,15,["G2064"]],[15,17,["G575"]],[17,19,["G68"]],[19,22,["G846"]],[22,24,["G2007"]],[24,25,["G3588"]],[25,26,["G4716"]],[26,30,["G5342"]],[30,32,["G3693"]],[32,33,["G2424"]]]},{"k":25962,"v":[[0,1,["G1161"]],[1,3,["G190"]],[3,4,["G846"]],[4,6,["G4183"]],[6,7,["G4128"]],[7,9,["G2992"]],[9,10,["G2532"]],[10,12,["G1135"]],[12,13,["G3739"]],[13,14,["G2532"]],[14,15,["G2875"]],[15,16,["G2532"]],[16,17,["G2354"]],[17,18,["G846"]]]},{"k":25963,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G4762"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G2036"]],[6,7,["G2364"]],[7,9,["G2419"]],[9,10,["G2799"]],[10,11,["G3361"]],[11,12,["G1909"]],[12,13,["G1691"]],[13,14,["G4133"]],[14,15,["G2799"]],[15,16,["G1909"]],[16,17,["G1438"]],[17,18,["G2532"]],[18,19,["G1909"]],[19,20,["G5216"]],[20,21,["G5043"]]]},{"k":25964,"v":[[0,1,["G3754"]],[1,2,["G2400"]],[2,4,["G2250"]],[4,6,["G2064"]],[6,7,["G1722"]],[7,9,["G3739"]],[9,12,["G2046"]],[12,13,["G3107"]],[13,15,["G3588"]],[15,16,["G4723"]],[16,17,["G2532"]],[17,19,["G2836"]],[19,20,["G3739"]],[20,21,["G3756"]],[21,22,["G1080"]],[22,23,["G2532"]],[23,25,["G3149"]],[25,26,["G3739"]],[26,27,["G3756"]],[27,29,["G2337"]]]},{"k":25965,"v":[[0,1,["G5119"]],[1,4,["G756"]],[4,6,["G3004"]],[6,8,["G3588"]],[8,9,["G3735"]],[9,10,["G4098"]],[10,11,["G1909"]],[11,12,["G2248"]],[12,13,["G2532"]],[13,15,["G3588"]],[15,16,["G1015"]],[16,17,["G2572"]],[17,18,["G2248"]]]},{"k":25966,"v":[[0,1,["G3754"]],[1,2,["G1487"]],[2,4,["G4160"]],[4,6,["G5023"]],[6,7,["G1722"]],[7,9,["G5200"]],[9,10,["G3586"]],[10,11,["G5101"]],[11,14,["G1096"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G3584"]]]},{"k":25967,"v":[[0,1,["G1161"]],[1,4,["G2532"]],[4,5,["G1417"]],[5,6,["G2087"]],[6,7,["G2557"]],[7,8,["G71"]],[8,9,["G4862"]],[9,10,["G846"]],[10,15,["G337"]]]},{"k":25968,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G565"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G5117"]],[8,11,["G2564"]],[11,12,["G2898"]],[12,13,["G1563"]],[13,15,["G4717"]],[15,16,["G846"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G2557"]],[19,20,["G3739","G3303"]],[20,21,["G1537"]],[21,24,["G1188"]],[24,25,["G1161"]],[25,27,["G3739"]],[27,28,["G1537"]],[28,30,["G710"]]]},{"k":25969,"v":[[0,1,["G1161"]],[1,2,["G3004"]],[2,3,["G2424"]],[3,4,["G3962"]],[4,5,["G863"]],[5,6,["G846"]],[6,7,["G1063"]],[7,9,["G1492"]],[9,10,["G3756"]],[10,11,["G5101"]],[11,13,["G4160"]],[13,14,["G1161"]],[14,16,["G1266"]],[16,17,["G846"]],[17,18,["G2440"]],[18,20,["G906"]],[20,21,["G2819"]]]},{"k":25970,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2992"]],[3,4,["G2476"]],[4,5,["G2334"]],[5,6,["G1161"]],[6,7,["G3588"]],[7,8,["G758"]],[8,9,["G2532"]],[9,10,["G4862"]],[10,11,["G846"]],[11,12,["G1592"]],[12,14,["G3004"]],[14,16,["G4982"]],[16,17,["G243"]],[17,20,["G4982"]],[20,21,["G1438"]],[21,22,["G1487"]],[22,23,["G3778"]],[23,24,["G2076"]],[24,25,["G5547"]],[25,26,["G3588"]],[26,27,["G1588"]],[27,29,["G2316"]]]},{"k":25971,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4757"]],[3,4,["G2532"]],[4,5,["G1702"]],[5,6,["G846"]],[6,8,["G4334"]],[8,10,["G2532"]],[10,11,["G4374"]],[11,12,["G846"]],[12,13,["G3690"]]]},{"k":25972,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,3,["G1487"]],[3,4,["G4771"]],[4,5,["G1488"]],[5,6,["G3588"]],[6,7,["G935"]],[7,9,["G3588"]],[9,10,["G2453"]],[10,11,["G4982"]],[11,12,["G4572"]]]},{"k":25973,"v":[[0,1,["G1161"]],[1,3,["G1923"]],[3,4,["G2532"]],[4,5,["G2258"]],[5,6,["G1125"]],[6,7,["G1909"]],[7,8,["G846"]],[8,10,["G1121"]],[10,12,["G1673"]],[12,13,["G2532"]],[13,14,["G4513"]],[14,15,["G2532"]],[15,16,["G1444"]],[16,17,["G3778"]],[17,18,["G2076"]],[18,19,["G3588"]],[19,20,["G935"]],[20,22,["G3588"]],[22,23,["G2453"]]]},{"k":25974,"v":[[0,1,["G1161"]],[1,2,["G1520"]],[2,4,["G3588"]],[4,5,["G2557"]],[5,8,["G2910"]],[8,10,["G987"]],[10,11,["G846"]],[11,12,["G3004"]],[12,13,["G1487"]],[13,14,["G4771"]],[14,15,["G1488"]],[15,16,["G5547"]],[16,17,["G4982"]],[17,18,["G4572"]],[18,19,["G2532"]],[19,20,["G2248"]]]},{"k":25975,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2087"]],[3,4,["G611"]],[4,5,["G2008"]],[5,6,["G846"]],[6,7,["G3004"]],[7,9,["G3761"]],[9,10,["G4771"]],[10,11,["G5399"]],[11,12,["G2316"]],[12,13,["(G3754)"]],[13,15,["G1488"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G846"]],[18,19,["G2917"]]]},{"k":25976,"v":[[0,1,["G2532"]],[1,2,["G2249"]],[2,3,["G3303"]],[3,4,["G1346"]],[4,5,["G1063"]],[5,7,["G618"]],[7,10,["G514"]],[10,13,["G3739","G4238"]],[13,14,["G1161"]],[14,16,["G3778"]],[16,18,["G4238"]],[18,19,["G3762"]],[19,20,["G824"]]]},{"k":25977,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G2424"]],[5,6,["G2962"]],[6,7,["G3415"]],[7,8,["G3450"]],[8,9,["G3752"]],[9,11,["G2064"]],[11,12,["G1722"]],[12,13,["G4675"]],[13,14,["G932"]]]},{"k":25978,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G281"]],[6,8,["G3004"]],[8,10,["G4671"]],[10,12,["G4594"]],[12,15,["G2071"]],[15,16,["G3326"]],[16,17,["G1700"]],[17,18,["G1722"]],[18,19,["G3857"]]]},{"k":25979,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G5616"]],[4,6,["G1623"]],[6,7,["G5610"]],[7,8,["G2532"]],[8,10,["G1096"]],[10,12,["G4655"]],[12,13,["G1909"]],[13,14,["G3650"]],[14,15,["G3588"]],[15,16,["G1093"]],[16,17,["G2193"]],[17,19,["G1766"]],[19,20,["G5610"]]]},{"k":25980,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2246"]],[3,5,["G4654"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G2665"]],[8,10,["G3588"]],[10,11,["G3485"]],[11,13,["G4977"]],[13,16,["G3319"]]]},{"k":25981,"v":[[0,1,["G2532"]],[1,3,["G2424"]],[3,5,["G5455"]],[5,8,["G3173"]],[8,9,["G5456"]],[9,11,["G2036"]],[11,12,["G3962"]],[12,13,["G1519"]],[13,14,["G4675"]],[14,15,["G5495"]],[15,17,["G3908"]],[17,18,["G3450"]],[18,19,["G4151"]],[19,20,["G2532"]],[20,22,["G2036"]],[22,23,["G5023"]],[23,28,["G1606"]]]},{"k":25982,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1543"]],[4,5,["G1492"]],[5,8,["G1096"]],[8,10,["G1392"]],[10,11,["G2316"]],[11,12,["G3004"]],[12,13,["G3689"]],[13,14,["G3778"]],[14,15,["G2258"]],[15,17,["G1342"]],[17,18,["G444"]]]},{"k":25983,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G3793"]],[4,7,["G4836"]],[7,8,["G1909"]],[8,9,["G5026"]],[9,10,["G2335"]],[10,11,["G2334"]],[11,16,["G1096"]],[16,17,["G5180"]],[17,18,["G1438"]],[18,19,["G4738"]],[19,21,["G5290"]]]},{"k":25984,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,3,["G846"]],[3,4,["G1110"]],[4,5,["G2532"]],[5,7,["G1135"]],[7,9,["G4870"]],[9,10,["G846"]],[10,11,["G575"]],[11,12,["G1056"]],[12,13,["G2476"]],[13,15,["G3113"]],[15,16,["G3708"]],[16,18,["G5023"]]]},{"k":25985,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,6,["G435"]],[6,7,["G3686"]],[7,8,["G2501"]],[8,9,["(G5225)"]],[9,10,["G1010"]],[10,15,["G18"]],[15,16,["G435"]],[16,17,["G2532"]],[17,19,["G1342"]]]},{"k":25986,"v":[[0,2,["G3778"]],[2,3,["G2258"]],[3,4,["G3756"]],[4,5,["G4784"]],[5,7,["G3588"]],[7,8,["G1012"]],[8,9,["G2532"]],[9,10,["G4234"]],[10,12,["G846"]],[12,15,["G575"]],[15,16,["G707"]],[16,18,["G4172"]],[18,20,["G3588"]],[20,21,["G2453"]],[21,22,["G3739"]],[22,23,["G2532"]],[23,24,["G846"]],[24,26,["G4327"]],[26,27,["G3588"]],[27,28,["G932"]],[28,30,["G2316"]]]},{"k":25987,"v":[[0,1,["G3778"]],[1,3,["G4334"]],[3,5,["G4091"]],[5,7,["G154"]],[7,8,["G3588"]],[8,9,["G4983"]],[9,11,["G2424"]]]},{"k":25988,"v":[[0,1,["G2532"]],[1,5,["G2507","G846"]],[5,7,["G1794"]],[7,8,["G846"]],[8,10,["G4616"]],[10,11,["G2532"]],[11,12,["G5087"]],[12,13,["G846"]],[13,14,["G1722"]],[14,16,["G3418"]],[16,21,["G2991"]],[21,22,["G3757"]],[22,24,["G3762","G3764"]],[24,25,["(G3756)"]],[25,26,["G2258"]],[26,27,["G2749"]]]},{"k":25989,"v":[[0,1,["G2532"]],[1,3,["G2250"]],[3,4,["G2258"]],[4,6,["G3904"]],[6,7,["G2532"]],[7,9,["G4521"]],[9,11,["G2020"]]]},{"k":25990,"v":[[0,1,["G1161"]],[1,3,["G1135"]],[3,4,["G2532"]],[4,5,["G3748"]],[5,7,["G2258","G4905"]],[7,8,["G846"]],[8,9,["G1537"]],[9,10,["G1056"]],[10,12,["G2628"]],[12,14,["G2300"]],[14,15,["G3588"]],[15,16,["G3419"]],[16,17,["G2532"]],[17,18,["G5613"]],[18,19,["G846"]],[19,20,["G4983"]],[20,22,["G5087"]]]},{"k":25991,"v":[[0,1,["G1161"]],[1,3,["G5290"]],[3,5,["G2090"]],[5,6,["G759"]],[6,7,["G2532"]],[7,8,["G3464"]],[8,9,["G2532"]],[9,10,["G2270"]],[10,11,["G3588","(G3303)"]],[11,13,["G4521"]],[13,14,["G2596"]],[14,16,["G3588"]],[16,17,["G1785"]]]},{"k":25992,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G3391"]],[4,7,["G3588"]],[7,8,["G4521"]],[8,13,["G901","G3722"]],[13,15,["G2064"]],[15,16,["G1909"]],[16,17,["G3588"]],[17,18,["G3418"]],[18,19,["G5342"]],[19,21,["G759"]],[21,22,["G3739"]],[22,25,["G2090"]],[25,26,["G2532"]],[26,27,["G5100"]],[27,29,["G4862"]],[29,30,["G846"]]]},{"k":25993,"v":[[0,1,["G1161"]],[1,3,["G2147"]],[3,4,["G3588"]],[4,5,["G3037"]],[5,7,["G617"]],[7,8,["G575"]],[8,9,["G3588"]],[9,10,["G3419"]]]},{"k":25994,"v":[[0,1,["G2532"]],[1,4,["G1525"]],[4,6,["G2147"]],[6,7,["G3756"]],[7,8,["G3588"]],[8,9,["G4983"]],[9,11,["G3588"]],[11,12,["G2962"]],[12,13,["G2424"]]]},{"k":25995,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G846"]],[7,10,["G1280"]],[10,11,["G4012","G5127","(G2532)"]],[11,12,["G2400"]],[12,13,["G1417"]],[13,14,["G435"]],[14,16,["G2186"]],[16,17,["G846"]],[17,18,["G1722"]],[18,19,["G797"]],[19,20,["G2067"]]]},{"k":25996,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G1096"]],[4,5,["G1719"]],[5,6,["G2532"]],[6,8,["G2827"]],[8,10,["G4383"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G1093"]],[13,15,["G2036"]],[15,16,["G4314"]],[16,17,["G846"]],[17,18,["G5101"]],[18,19,["G2212"]],[19,21,["G3588"]],[21,22,["G2198"]],[22,23,["G3326"]],[23,24,["G3588"]],[24,25,["G3498"]]]},{"k":25997,"v":[[0,2,["G2076"]],[2,3,["G3756"]],[3,4,["G5602"]],[4,5,["G235"]],[5,7,["G1453"]],[7,8,["G3415"]],[8,9,["G5613"]],[9,11,["G2980"]],[11,13,["G5213"]],[13,16,["G5607"]],[16,17,["G2089"]],[17,18,["G1722"]],[18,19,["G1056"]]]},{"k":25998,"v":[[0,1,["G3004"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G444"]],[5,6,["G1163"]],[6,8,["G3860"]],[8,9,["G1519"]],[9,11,["G5495"]],[11,13,["G268"]],[13,14,["G435"]],[14,15,["G2532"]],[15,17,["G4717"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G5154"]],[20,21,["G2250"]],[21,23,["G450"]]]},{"k":25999,"v":[[0,1,["G2532"]],[1,3,["G3415"]],[3,4,["G846"]],[4,5,["G4487"]]]},{"k":26000,"v":[[0,1,["G2532"]],[1,2,["G5290"]],[2,3,["G575"]],[3,4,["G3588"]],[4,5,["G3419"]],[5,7,["G518"]],[7,8,["G3956"]],[8,10,["G5023"]],[10,12,["G3588"]],[12,13,["G1733"]],[13,14,["G2532"]],[14,16,["G3956"]],[16,17,["G3588"]],[17,18,["G3062"]]]},{"k":26001,"v":[[0,0,["(G1161)"]],[0,2,["G2258"]],[2,3,["G3137"]],[3,4,["G3094"]],[4,5,["G2532"]],[5,6,["G2489"]],[6,7,["G2532"]],[7,8,["G3137"]],[8,12,["G2385"]],[12,13,["G2532"]],[13,14,["G3062"]],[14,18,["G4862"]],[18,19,["G846"]],[19,20,["G3739"]],[20,21,["G3004"]],[21,23,["G5023"]],[23,24,["G4314"]],[24,25,["G3588"]],[25,26,["G652"]]]},{"k":26002,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G4487"]],[3,4,["G5316"]],[4,5,["G1799"]],[5,6,["G846"]],[6,7,["G5616"]],[7,9,["G3026"]],[9,10,["G2532"]],[10,14,["G569","G846"]]]},{"k":26003,"v":[[0,1,["G1161"]],[1,2,["G450"]],[2,3,["G4074"]],[3,5,["G5143"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G3419"]],[8,9,["G2532"]],[9,11,["G3879"]],[11,13,["G991"]],[13,14,["G3588"]],[14,16,["G3608"]],[16,17,["G2749"]],[17,19,["G3441"]],[19,20,["G2532"]],[20,21,["G565"]],[21,22,["G2296"]],[22,23,["G4314"]],[23,24,["G1438"]],[24,31,["G1096"]]]},{"k":26004,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G1417"]],[3,4,["G1537"]],[4,5,["G846"]],[5,6,["G2258","G4198"]],[6,8,["G846"]],[8,9,["G2250"]],[9,10,["G1519"]],[10,12,["G2968"]],[12,13,["G3686"]],[13,14,["G1695"]],[14,16,["G568"]],[16,17,["G575"]],[17,18,["G2419"]],[18,20,["G1835"]],[20,21,["G4712"]]]},{"k":26005,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3656"]],[3,4,["G4314","G240"]],[4,5,["G4012"]],[5,6,["G3956"]],[6,8,["G5130"]],[8,11,["G4819"]]]},{"k":26006,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,8,["G846"]],[8,9,["G3656"]],[9,11,["G2532"]],[11,12,["G4802","(G2532)"]],[12,13,["G2424"]],[13,14,["G846"]],[14,16,["G1448"]],[16,19,["G4848"]],[19,20,["G846"]]]},{"k":26007,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G3788"]],[3,5,["G2902"]],[5,9,["G3361"]],[9,10,["G1921"]],[10,11,["G846"]]]},{"k":26008,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,7,["G5101"]],[7,9,["G3056"]],[9,11,["G3778"]],[11,12,["G3739"]],[12,14,["G474"]],[14,17,["G240","G4314"]],[17,20,["G4043"]],[20,21,["G2532"]],[21,22,["G2075"]],[22,23,["G4659"]]]},{"k":26009,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1520"]],[3,6,["G3739"]],[6,7,["G3686"]],[7,9,["G2810"]],[9,10,["G611"]],[10,11,["G2036"]],[11,12,["G4314"]],[12,13,["G846"]],[13,18,["G3939","G4771","G3441"]],[18,19,["G1722"]],[19,20,["G2419"]],[20,21,["G2532"]],[21,23,["G3756"]],[23,24,["G1097"]],[24,31,["G1096"]],[31,32,["G846"]],[32,33,["G1722"]],[33,34,["G5025"]],[34,35,["G2250"]]]},{"k":26010,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,7,["G4169"]],[7,8,["G1161"]],[8,9,["G3588"]],[9,10,["G2036"]],[10,12,["G846"]],[12,13,["G4012"]],[13,14,["G2424"]],[14,16,["G3480"]],[16,17,["G3739"]],[17,18,["G1096"]],[18,19,["(G435)"]],[19,20,["G4396"]],[20,21,["G1415"]],[21,22,["G1722"]],[22,23,["G2041"]],[23,24,["G2532"]],[24,25,["G3056"]],[25,26,["G1726"]],[26,27,["G2316"]],[27,28,["G2532"]],[28,29,["G3956"]],[29,30,["G3588"]],[30,31,["G2992"]]]},{"k":26011,"v":[[0,1,["G5037"]],[1,2,["G3704"]],[2,3,["G3588"]],[3,5,["G749"]],[5,6,["G2532"]],[6,7,["G2257"]],[7,8,["G758"]],[8,9,["G3860"]],[9,10,["G846"]],[10,11,["G1519"]],[11,13,["G2917"]],[13,15,["G2288"]],[15,16,["G2532"]],[16,18,["G4717"]],[18,19,["G846"]]]},{"k":26012,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,3,["G1679"]],[3,4,["G3754"]],[4,7,["G2076"]],[7,8,["G846"]],[8,10,["G3195"]],[10,12,["G3084"]],[12,13,["G2474"]],[13,14,["G1065","G235"]],[14,15,["G4862"]],[15,16,["G3956"]],[16,17,["G5125"]],[17,19,["G4594"]],[19,20,["G71"]],[20,21,["(G5026)"]],[21,22,["G5154"]],[22,23,["G2250"]],[23,24,["G575","G3739"]],[24,26,["G5023"]],[26,28,["G1096"]]]},{"k":26013,"v":[[0,2,["G235"]],[2,3,["G5100"]],[3,4,["G1135"]],[4,5,["G2532"]],[5,6,["G1537"]],[6,8,["G2257"]],[8,11,["G1839","G2248"]],[11,13,["G1096"]],[13,14,["G3721"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,17,["G3419"]]]},{"k":26014,"v":[[0,1,["G2532"]],[1,4,["G2147"]],[4,5,["G3361"]],[5,6,["G846"]],[6,7,["G4983"]],[7,9,["G2064"]],[9,10,["G3004"]],[10,14,["G2532"]],[14,15,["G3708"]],[15,17,["G3701"]],[17,19,["G32"]],[19,20,["G3739"]],[20,21,["G3004"]],[21,23,["G846"]],[23,25,["G2198"]]]},{"k":26015,"v":[[0,1,["G2532"]],[1,2,["G5100"]],[2,4,["G3588"]],[4,7,["G4862"]],[7,8,["G2254"]],[8,9,["G565"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G3419"]],[12,13,["G2532"]],[13,14,["G2147"]],[14,16,["G2532"]],[16,17,["G3779"]],[17,18,["G2531"]],[18,19,["G3588"]],[19,20,["G1135"]],[20,22,["G2036"]],[22,23,["G1161"]],[23,24,["G846"]],[24,26,["G1492"]],[26,27,["G3756"]]]},{"k":26016,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G5599"]],[6,7,["G453"]],[7,8,["G2532"]],[8,9,["G1021"]],[9,11,["G2588"]],[11,13,["G4100"]],[13,14,["G3956"]],[14,15,["G3739"]],[15,16,["G3588"]],[16,17,["G4396"]],[17,19,["G2980"]]]},{"k":26017,"v":[[0,1,["G1163"]],[1,2,["G3780"]],[2,3,["G5547"]],[3,6,["G3958"]],[6,8,["G5023"]],[8,9,["G2532"]],[9,11,["G1525"]],[11,12,["G1519"]],[12,13,["G848"]],[13,14,["G1391"]]]},{"k":26018,"v":[[0,1,["G2532"]],[1,2,["G756"]],[2,3,["G575"]],[3,4,["G3475"]],[4,5,["G2532"]],[5,6,["G3956"]],[6,7,["G3588"]],[7,8,["G4396"]],[8,10,["G1329"]],[10,12,["G846"]],[12,13,["G1722"]],[13,14,["G3956"]],[14,15,["G3588"]],[15,16,["G1124"]],[16,18,["G3588"]],[18,19,["G4012"]],[19,20,["G1438"]]]},{"k":26019,"v":[[0,1,["G2532"]],[1,4,["G1448"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G2968"]],[7,8,["G3757"]],[8,10,["G4198"]],[10,11,["G2532"]],[11,12,["G846"]],[12,15,["G4364"]],[15,19,["G4198"]],[19,20,["G4208"]]]},{"k":26020,"v":[[0,1,["G2532"]],[1,3,["G3849"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G3306"]],[6,7,["G3326"]],[7,8,["G2257"]],[8,9,["G3754"]],[9,11,["G2076"]],[11,12,["G4314"]],[12,13,["G2073"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G2250"]],[16,19,["G2827"]],[19,20,["G2532"]],[20,23,["G1525"]],[23,25,["G3306"]],[25,26,["G4862"]],[26,27,["G846"]]]},{"k":26021,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G846"]],[7,10,["G2625"]],[10,11,["G3326"]],[11,12,["G846"]],[12,14,["G2983"]],[14,15,["G740"]],[15,17,["G2127"]],[17,19,["G2532"]],[19,20,["G2806"]],[20,22,["G1929"]],[22,24,["G846"]]]},{"k":26022,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G3788"]],[3,5,["G1272"]],[5,6,["G2532"]],[6,8,["G1921"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G846"]],[11,12,["G1096","G855"]],[12,16,["G575","G846"]]]},{"k":26023,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,6,["G240","G4314"]],[6,8,["G3780"]],[8,9,["G2257"]],[9,10,["G2588"]],[10,11,["G2258","G2545"]],[11,12,["G1722"]],[12,13,["G2254"]],[13,14,["G5613"]],[14,16,["G2980"]],[16,18,["G2254"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G3598"]],[21,22,["G2532"]],[22,23,["G5613"]],[23,25,["G1272"]],[25,27,["G2254"]],[27,28,["G3588"]],[28,29,["G1124"]]]},{"k":26024,"v":[[0,1,["G2532"]],[1,4,["G450"]],[4,5,["G3588"]],[5,6,["G846"]],[6,7,["G5610"]],[7,9,["G5290"]],[9,10,["G1519"]],[10,11,["G2419"]],[11,12,["G2532"]],[12,13,["G2147"]],[13,14,["G3588"]],[14,15,["G1733"]],[15,17,["G4867"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,22,["G4862"]],[22,23,["G846"]]]},{"k":26025,"v":[[0,1,["G3004"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,5,["G1453"]],[5,6,["G3689"]],[6,7,["G2532"]],[7,9,["G3700"]],[9,11,["G4613"]]]},{"k":26026,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G1834"]],[3,5,["G3588"]],[5,8,["G1722"]],[8,9,["G3588"]],[9,10,["G3598"]],[10,11,["G2532"]],[11,12,["G5613"]],[12,15,["G1097"]],[15,17,["G846"]],[17,18,["G1722"]],[18,19,["G2800"]],[19,21,["G740"]]]},{"k":26027,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G5023"]],[4,5,["G2980"]],[5,6,["G2424"]],[6,7,["G846"]],[7,8,["G2476"]],[8,9,["G1722"]],[9,11,["G3319"]],[11,13,["G846"]],[13,14,["G2532"]],[14,15,["G3004"]],[15,17,["G846"]],[17,18,["G1515"]],[18,21,["G5213"]]]},{"k":26028,"v":[[0,1,["G1161"]],[1,4,["G4422"]],[4,5,["G2532"]],[5,6,["G1096","G1719"]],[6,8,["G1380"]],[8,12,["G2334"]],[12,14,["G4151"]]]},{"k":26029,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G5101"]],[6,7,["G2075"]],[7,9,["G5015"]],[9,10,["G2532"]],[10,11,["G1302"]],[11,13,["G1261"]],[13,14,["G305"]],[14,15,["G1722"]],[15,16,["G5216"]],[16,17,["G2588"]]]},{"k":26030,"v":[[0,1,["G1492"]],[1,2,["G3450"]],[2,3,["G5495"]],[3,4,["G2532"]],[4,5,["G3450"]],[5,6,["G4228"]],[6,7,["G3754"]],[7,9,["G1510"]],[9,10,["G1473"]],[10,11,["G846"]],[11,12,["G5584"]],[12,13,["G3165"]],[13,14,["G2532"]],[14,15,["G1492"]],[15,16,["G3754"]],[16,18,["G4151"]],[18,19,["G2192"]],[19,20,["G3756"]],[20,21,["G4561"]],[21,22,["G2532"]],[22,23,["G3747"]],[23,24,["G2531"]],[24,26,["G2334"]],[26,27,["G1691"]],[27,28,["G2192"]]]},{"k":26031,"v":[[0,1,["G2532"]],[1,5,["G5124"]],[5,6,["G2036"]],[6,8,["G1925"]],[8,9,["G846"]],[9,11,["G5495"]],[11,12,["G2532"]],[12,14,["G4228"]]]},{"k":26032,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G2089"]],[4,6,["G569"]],[6,7,["G575"]],[7,8,["G5479"]],[8,9,["G2532"]],[9,10,["G2296"]],[10,12,["G2036"]],[12,14,["G846"]],[14,15,["G2192"]],[15,17,["G1759"]],[17,18,["G5100"]],[18,19,["G1034"]]]},{"k":26033,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1929"]],[3,4,["G846"]],[4,6,["G3313"]],[6,9,["G3702"]],[9,10,["G2486"]],[10,11,["G2532"]],[11,12,["G575"]],[12,14,["G3193","G2781"]]]},{"k":26034,"v":[[0,1,["G2532"]],[1,3,["G2983"]],[3,7,["G5315"]],[7,8,["G1799"]],[8,9,["G846"]]]},{"k":26035,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G3778"]],[6,8,["G3588"]],[8,9,["G3056"]],[9,10,["G3739"]],[10,12,["G2980"]],[12,13,["G4314"]],[13,14,["G5209"]],[14,17,["G5607"]],[17,18,["G2089"]],[18,19,["G4862"]],[19,20,["G5213"]],[20,21,["G3754"]],[21,23,["G3956"]],[23,24,["G1163"]],[24,26,["G4137"]],[26,29,["G1125"]],[29,30,["G1722"]],[30,31,["G3588"]],[31,32,["G3551"]],[32,34,["G3475"]],[34,35,["G2532"]],[35,38,["G4396"]],[38,39,["G2532"]],[39,42,["G5568"]],[42,43,["G4012"]],[43,44,["G1700"]]]},{"k":26036,"v":[[0,1,["G5119"]],[1,2,["G1272"]],[2,4,["G846"]],[4,5,["G3563"]],[5,9,["G4920"]],[9,10,["G3588"]],[10,11,["G1124"]]]},{"k":26037,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G3779"]],[5,8,["G1125"]],[8,9,["G2532"]],[9,10,["G3779"]],[10,12,["G1163"]],[12,13,["G5547"]],[13,15,["G3958"]],[15,16,["G2532"]],[16,18,["G450"]],[18,19,["G1537"]],[19,21,["G3498"]],[21,22,["G3588"]],[22,23,["G5154"]],[23,24,["G2250"]]]},{"k":26038,"v":[[0,1,["G2532"]],[1,3,["G3341"]],[3,4,["G2532"]],[4,5,["G859"]],[5,7,["G266"]],[7,10,["G2784"]],[10,11,["G1909"]],[11,12,["G846"]],[12,13,["G3686"]],[13,14,["G1519"]],[14,15,["G3956"]],[15,16,["G1484"]],[16,17,["G756"]],[17,18,["G575"]],[18,19,["G2419"]]]},{"k":26039,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G2075"]],[3,4,["G3144"]],[4,7,["G5130"]]]},{"k":26040,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G1473"]],[3,4,["G649"]],[4,5,["G3588"]],[5,6,["G1860"]],[6,8,["G3450"]],[8,9,["G3962"]],[9,10,["G1909"]],[10,11,["G5209"]],[11,12,["G1161"]],[12,13,["G2523"]],[13,14,["G5210"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G4172"]],[17,19,["G2419"]],[19,20,["G2193","G3757"]],[20,23,["G1746"]],[23,25,["G1411"]],[25,26,["G1537"]],[26,28,["G5311"]]]},{"k":26041,"v":[[0,1,["G1161"]],[1,3,["G1806"]],[3,4,["G846"]],[4,5,["G1854"]],[5,8,["G2193"]],[8,9,["G1519"]],[9,10,["G963"]],[10,11,["G2532"]],[11,14,["G1869"]],[14,15,["G848"]],[15,16,["G5495"]],[16,18,["G2127"]],[18,19,["G846"]]]},{"k":26042,"v":[[0,1,["G2532"]],[1,5,["G1096"]],[5,7,["G846"]],[7,8,["G2127"]],[8,9,["G846"]],[9,12,["G1339"]],[12,13,["G575"]],[13,14,["G846"]],[14,15,["G2532"]],[15,17,["G399"]],[17,18,["G1519"]],[18,19,["G3772"]]]},{"k":26043,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G4352"]],[3,4,["G846"]],[4,6,["G5290"]],[6,7,["G1519"]],[7,8,["G2419"]],[8,9,["G3326"]],[9,10,["G3173"]],[10,11,["G5479"]]]},{"k":26044,"v":[[0,1,["G2532"]],[1,2,["G2258"]],[2,3,["G1275"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G2411"]],[6,7,["G134"]],[7,8,["G2532"]],[8,9,["G2127"]],[9,10,["G2316"]],[10,11,["G281"]]]},{"k":26045,"v":[[0,1,["G1722"]],[1,3,["G746"]],[3,4,["G2258"]],[4,5,["G3588"]],[5,6,["G3056"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G3056"]],[9,10,["G2258"]],[10,11,["G4314"]],[11,12,["G2316"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G3056"]],[15,16,["G2258"]],[16,17,["G2316"]]]},{"k":26046,"v":[[0,2,["G3778"]],[2,3,["G2258"]],[3,4,["G1722"]],[4,6,["G746"]],[6,7,["G4314"]],[7,8,["G2316"]]]},{"k":26047,"v":[[0,2,["G3956"]],[2,4,["G1096"]],[4,5,["G1223"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G5565"]],[8,9,["G846"]],[9,11,["G3761"]],[11,13,["G1520"]],[13,14,["G1096"]],[14,15,["G3739"]],[15,17,["G1096"]]]},{"k":26048,"v":[[0,1,["G1722"]],[1,2,["G846"]],[2,3,["G2258"]],[3,4,["G2222"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G2222"]],[7,8,["G2258"]],[8,9,["G3588"]],[9,10,["G5457"]],[10,12,["G444"]]]},{"k":26049,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5457"]],[3,4,["G5316"]],[4,5,["G1722"]],[5,6,["G4653"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G4653"]],[9,10,["G2638"]],[10,11,["G846"]],[11,12,["G3756"]]]},{"k":26050,"v":[[0,2,["G1096"]],[2,4,["G444"]],[4,5,["G649"]],[5,6,["G3844"]],[6,7,["G2316"]],[7,8,["G846"]],[8,9,["G3686"]],[9,11,["G2491"]]]},{"k":26051,"v":[[0,2,["G3778"]],[2,3,["G2064"]],[3,4,["G1519"]],[4,6,["G3141"]],[6,7,["G2443"]],[7,9,["G3140"]],[9,10,["G4012"]],[10,11,["G3588"]],[11,12,["G5457"]],[12,13,["G2443"]],[13,14,["G3956"]],[14,16,["G1223"]],[16,17,["G846"]],[17,19,["G4100"]]]},{"k":26052,"v":[[0,1,["G1565"]],[1,2,["G2258"]],[2,3,["G3756"]],[3,5,["G5457"]],[5,6,["G235"]],[6,9,["G2443"]],[9,11,["G3140"]],[11,12,["G4012"]],[12,14,["G5457"]]]},{"k":26053,"v":[[0,2,["G2258"]],[2,3,["G3588"]],[3,4,["G228"]],[4,5,["G5457"]],[5,6,["G3739"]],[6,7,["G5461"]],[7,8,["G3956"]],[8,9,["G444"]],[9,11,["G2064"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G2889"]]]},{"k":26054,"v":[[0,2,["G2258"]],[2,3,["G1722"]],[3,4,["G3588"]],[4,5,["G2889"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G2889"]],[8,10,["G1096"]],[10,11,["G1223"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G2889"]],[15,16,["G1097"]],[16,17,["G846"]],[17,18,["G3756"]]]},{"k":26055,"v":[[0,2,["G2064"]],[2,3,["G1519"]],[3,5,["G2398"]],[5,6,["G2532"]],[6,8,["G2398"]],[8,9,["G3880"]],[9,10,["G846"]],[10,11,["G3756"]]]},{"k":26056,"v":[[0,1,["G1161"]],[1,4,["G3745"]],[4,5,["G2983"]],[5,6,["G846"]],[6,8,["G846"]],[8,9,["G1325"]],[9,11,["G1849"]],[11,13,["G1096"]],[13,15,["G5043"]],[15,17,["G2316"]],[17,22,["G4100"]],[22,23,["G1519"]],[23,24,["G846"]],[24,25,["G3686"]]]},{"k":26057,"v":[[0,1,["G3739"]],[1,3,["G1080"]],[3,4,["G3756"]],[4,5,["G1537"]],[5,6,["G129"]],[6,7,["G3761"]],[7,8,["G1537"]],[8,10,["G2307"]],[10,13,["G4561"]],[13,14,["G3761"]],[14,15,["G1537"]],[15,17,["G2307"]],[17,19,["G435"]],[19,20,["G235"]],[20,21,["G1537"]],[21,22,["G2316"]]]},{"k":26058,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,5,["G1096"]],[5,6,["G4561"]],[6,7,["G2532"]],[7,8,["G4637"]],[8,9,["G1722"]],[9,10,["G2254"]],[10,11,["G2532"]],[11,13,["G2300"]],[13,14,["G846"]],[14,15,["G1391"]],[15,17,["G1391"]],[17,18,["G5613"]],[18,22,["G3439"]],[22,23,["G3844"]],[23,25,["G3962"]],[25,26,["G4134"]],[26,28,["G5485"]],[28,29,["G2532"]],[29,30,["G225"]]]},{"k":26059,"v":[[0,1,["G2491"]],[1,3,["G3140"]],[3,4,["G4012"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G2896"]],[7,8,["G3004"]],[8,9,["G3778"]],[9,10,["G2258"]],[10,13,["G3739"]],[13,15,["G2036"]],[15,18,["G2064"]],[18,19,["G3694"]],[19,20,["G3450"]],[20,22,["G1096"]],[22,23,["G1715"]],[23,24,["G3450"]],[24,26,["G3754"]],[26,27,["G2258"]],[27,28,["G4413"]],[28,29,["G3450"]]]},{"k":26060,"v":[[0,1,["G2532"]],[1,2,["G1537"]],[2,3,["G846"]],[3,4,["G4138"]],[4,6,["G3956"]],[6,7,["G2249"]],[7,8,["G2983"]],[8,9,["G2532"]],[9,10,["G5485"]],[10,11,["G473"]],[11,12,["G5485"]]]},{"k":26061,"v":[[0,1,["G3754"]],[1,2,["G3588"]],[2,3,["G3551"]],[3,5,["G1325"]],[5,6,["G1223"]],[6,7,["G3475"]],[7,9,["G5485"]],[9,10,["G2532"]],[10,11,["G225"]],[11,12,["G1096"]],[12,13,["G1223"]],[13,14,["G2424"]],[14,15,["G5547"]]]},{"k":26062,"v":[[0,2,["G3762"]],[2,4,["G3708"]],[4,5,["G2316"]],[5,8,["G4455"]],[8,9,["G3588"]],[9,11,["G3439"]],[11,12,["G5207"]],[12,14,["G5607"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G2859"]],[17,19,["G3588"]],[19,20,["G3962"]],[20,21,["G1565"]],[21,23,["G1834"]],[23,24,[]]]},{"k":26063,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G3141"]],[5,7,["G2491"]],[7,8,["G3753"]],[8,9,["G3588"]],[9,10,["G2453"]],[10,11,["G649"]],[11,12,["G2409"]],[12,13,["G2532"]],[13,14,["G3019"]],[14,15,["G1537"]],[15,16,["G2414"]],[16,17,["G2443"]],[17,18,["G2065"]],[18,19,["G846"]],[19,20,["G5101"]],[20,21,["G1488"]],[21,22,["G4771"]]]},{"k":26064,"v":[[0,1,["G2532"]],[1,3,["G3670"]],[3,4,["G2532"]],[4,5,["G720"]],[5,6,["G3756"]],[6,7,["G2532"]],[7,8,["G3670"]],[8,9,["G1473"]],[9,10,["G1510"]],[10,11,["G3756"]],[11,12,["G3588"]],[12,13,["G5547"]]]},{"k":26065,"v":[[0,1,["G2532"]],[1,3,["G2065"]],[3,4,["G846"]],[4,5,["G5101"]],[5,6,["G3767"]],[6,7,["G1488"]],[7,8,["G4771"]],[8,9,["G2243"]],[9,10,["G2532"]],[10,12,["G3004"]],[12,14,["G1510"]],[14,15,["G3756"]],[15,16,["G1488"]],[16,17,["G4771"]],[17,19,["G4396"]],[19,20,["G2532"]],[20,22,["G611"]],[22,23,["G3756"]]]},{"k":26066,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,5,["G846"]],[5,6,["G5101"]],[6,7,["G1488"]],[7,9,["G2443"]],[9,12,["G1325"]],[12,14,["G612"]],[14,18,["G3992"]],[18,19,["G2248"]],[19,20,["G5101"]],[20,21,["G3004"]],[21,23,["G4012"]],[23,24,["G4572"]]]},{"k":26067,"v":[[0,2,["G5346"]],[2,3,["G1473"]],[3,6,["G5456"]],[6,9,["G994"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G2048"]],[12,14,["G2116"]],[14,15,["G3588"]],[15,16,["G3598"]],[16,19,["G2962"]],[19,20,["G2531"]],[20,21,["G2036"]],[21,22,["G3588"]],[22,23,["G4396"]],[23,24,["G2268"]]]},{"k":26068,"v":[[0,1,["G2532"]],[1,5,["G649"]],[5,6,["G2258"]],[6,7,["G1537"]],[7,8,["G3588"]],[8,9,["G5330"]]]},{"k":26069,"v":[[0,1,["G2532"]],[1,3,["G2065"]],[3,4,["G846"]],[4,5,["G2532"]],[5,6,["G2036"]],[6,8,["G846"]],[8,9,["G5101"]],[9,10,["G907"]],[10,12,["G3767"]],[12,13,["G1487"]],[13,14,["G4771"]],[14,15,["G1488"]],[15,16,["G3756"]],[16,18,["G5547"]],[18,19,["G3777"]],[19,20,["G2243"]],[20,21,["G3777"]],[21,23,["G4396"]]]},{"k":26070,"v":[[0,1,["G2491"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G3004"]],[4,5,["G1473"]],[5,6,["G907"]],[6,7,["G1722"]],[7,8,["G5204"]],[8,9,["G1161"]],[9,11,["G2476"]],[11,13,["G3319"]],[13,14,["G5216"]],[14,15,["G3739"]],[15,16,["G5210"]],[16,17,["G1492"]],[17,18,["G3756"]]]},{"k":26071,"v":[[0,1,["G846"]],[1,3,["G2076"]],[3,5,["G2064"]],[5,6,["G3694"]],[6,7,["G3450"]],[7,9,["G1096"]],[9,10,["G1715"]],[10,11,["G3450"]],[11,12,["G3739"]],[12,13,["G5266"]],[13,14,["G2438"]],[14,15,["G1473"]],[15,16,["G1510"]],[16,17,["G3756"]],[17,18,["G514"]],[18,19,["G2443"]],[19,20,["G3089","(G846)"]]]},{"k":26072,"v":[[0,2,["G5023"]],[2,4,["G1096"]],[4,5,["G1722"]],[5,6,["G962"]],[6,7,["G4008"]],[7,8,["G2446"]],[8,9,["G3699"]],[9,10,["G2491"]],[10,11,["G2258"]],[11,12,["G907"]]]},{"k":26073,"v":[[0,1,["G3588"]],[1,3,["G1887"]],[3,4,["G2491"]],[4,5,["G991"]],[5,6,["G2424"]],[6,7,["G2064"]],[7,8,["G4314"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G3004"]],[11,12,["G2396"]],[12,13,["G3588"]],[13,14,["G286"]],[14,16,["G2316"]],[16,19,["G142"]],[19,20,["G3588"]],[20,21,["G266"]],[21,23,["G3588"]],[23,24,["G2889"]]]},{"k":26074,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,4,["G4012"]],[4,5,["G3739"]],[5,6,["G1473"]],[6,7,["G2036"]],[7,8,["G3694"]],[8,9,["G3450"]],[9,10,["G2064"]],[10,12,["G435"]],[12,13,["G3739"]],[13,15,["G1096"]],[15,16,["G1715"]],[16,17,["G3450"]],[17,18,["G3754"]],[18,20,["G2258"]],[20,21,["G4413"]],[21,22,["G3450"]]]},{"k":26075,"v":[[0,2,["G2504"]],[2,3,["G1492"]],[3,4,["G846"]],[4,5,["G3756"]],[5,6,["G235"]],[6,7,["G2443"]],[7,12,["G5319"]],[12,14,["G2474"]],[14,15,["G1223","G5124"]],[15,17,["G1473"]],[17,18,["G2064"]],[18,19,["G907"]],[19,20,["G1722"]],[20,21,["G5204"]]]},{"k":26076,"v":[[0,1,["G2532"]],[1,2,["G2491"]],[2,4,["G3140"]],[4,5,["G3004"]],[5,7,["G2300"]],[7,8,["G3588"]],[8,9,["G4151"]],[9,10,["G2597"]],[10,11,["G1537"]],[11,12,["G3772"]],[12,13,["G5616"]],[13,15,["G4058"]],[15,16,["G2532"]],[16,18,["G3306"]],[18,19,["G1909"]],[19,20,["G846"]]]},{"k":26077,"v":[[0,2,["G2504"]],[2,3,["G1492"]],[3,4,["G846"]],[4,5,["G3756"]],[5,6,["G235"]],[6,9,["G3992"]],[9,10,["G3165"]],[10,12,["G907"]],[12,13,["G1722"]],[13,14,["G5204"]],[14,16,["G1565"]],[16,17,["G2036"]],[17,19,["G3427"]],[19,20,["G1909"]],[20,21,["G3739","G302"]],[21,24,["G1492"]],[24,25,["G3588"]],[25,26,["G4151"]],[26,27,["G2597"]],[27,28,["G2532"]],[28,29,["G3306"]],[29,30,["G1909"]],[30,31,["G846"]],[31,33,["G3778"]],[33,34,["G2076"]],[34,37,["G907"]],[37,38,["G1722"]],[38,40,["G40"]],[40,41,["G4151"]]]},{"k":26078,"v":[[0,2,["G2504"]],[2,3,["G3708"]],[3,4,["G2532"]],[4,6,["G3140"]],[6,7,["G3754"]],[7,8,["G3778"]],[8,9,["G2076"]],[9,10,["G3588"]],[10,11,["G5207"]],[11,13,["G2316"]]]},{"k":26079,"v":[[0,1,["G3825"]],[1,2,["G3588"]],[2,5,["G1887"]],[5,6,["G2491"]],[6,7,["G2476"]],[7,8,["G2532"]],[8,9,["G1417"]],[9,10,["G1537"]],[10,11,["G846"]],[11,12,["G3101"]]]},{"k":26080,"v":[[0,1,["G2532"]],[1,3,["G1689"]],[3,4,["G2424"]],[4,7,["G4043"]],[7,9,["G3004"]],[9,10,["G2396"]],[10,11,["G3588"]],[11,12,["G286"]],[12,14,["G2316"]]]},{"k":26081,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1417"]],[3,4,["G3101"]],[4,5,["G191"]],[5,6,["G846"]],[6,7,["G2980"]],[7,8,["G2532"]],[8,10,["G190"]],[10,11,["G2424"]]]},{"k":26082,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G4762"]],[3,4,["G2532"]],[4,5,["G2300"]],[5,6,["G846"]],[6,7,["G190"]],[7,9,["G3004"]],[9,11,["G846"]],[11,12,["G5101"]],[12,13,["G2212"]],[13,14,["(G1161)"]],[14,16,["G2036"]],[16,18,["G846"]],[18,19,["G4461"]],[19,20,["G3739"]],[20,23,["G3004"]],[23,25,["G2059"]],[25,26,["G1320"]],[26,27,["G4226"]],[27,28,["G3306"]],[28,29,[]]]},{"k":26083,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G2064"]],[5,6,["G2532"]],[6,7,["G1492"]],[7,9,["G2064"]],[9,10,["G2532"]],[10,11,["G1492"]],[11,12,["G4226"]],[12,14,["G3306"]],[14,15,["G2532"]],[15,16,["G3306"]],[16,17,["G3844"]],[17,18,["G846"]],[18,19,["G1565"]],[19,20,["G2250"]],[20,21,["G1161"]],[21,23,["G2258"]],[23,24,["G5613"]],[24,26,["G1182"]],[26,27,["G5610"]]]},{"k":26084,"v":[[0,1,["G1520"]],[1,2,["G1537"]],[2,3,["G3588"]],[3,4,["G1417"]],[4,6,["G191"]],[6,7,["G2491"]],[7,9,["G2532"]],[9,10,["G190"]],[10,11,["G846"]],[11,12,["G2258"]],[12,13,["G406"]],[13,14,["G4613"]],[14,15,["G4074"]],[15,16,["G80"]]]},{"k":26085,"v":[[0,1,["G3778"]],[1,2,["G4413"]],[2,3,["G2147"]],[3,5,["G2398"]],[5,6,["G80"]],[6,7,["G4613"]],[7,8,["G2532"]],[8,9,["G3004"]],[9,11,["G846"]],[11,14,["G2147"]],[14,15,["G3588"]],[15,16,["G3323"]],[16,18,["G3603"]],[18,20,["G3177"]],[20,21,["G3588"]],[21,22,["G5547"]]]},{"k":26086,"v":[[0,1,["G2532"]],[1,3,["G71"]],[3,4,["G846"]],[4,5,["G4314"]],[5,6,["G2424"]],[6,7,["G1161"]],[7,9,["G2424"]],[9,10,["G1689"]],[10,11,["G846"]],[11,13,["G2036"]],[13,14,["G4771"]],[14,15,["G1488"]],[15,16,["G4613"]],[16,17,["G3588"]],[17,18,["G5207"]],[18,20,["G2495"]],[20,21,["G4771"]],[21,24,["G2564"]],[24,25,["G2786"]],[25,26,["G3739"]],[26,29,["G2059"]],[29,31,["G4074"]]]},{"k":26087,"v":[[0,1,["G3588"]],[1,3,["G1887"]],[3,4,["G2424"]],[4,5,["G2309"]],[5,7,["G1831"]],[7,8,["G1519"]],[8,9,["G1056"]],[9,10,["G2532"]],[10,11,["G2147"]],[11,12,["G5376"]],[12,13,["G2532"]],[13,14,["G3004"]],[14,16,["G846"]],[16,17,["G190"]],[17,18,["G3427"]]]},{"k":26088,"v":[[0,1,["G1161"]],[1,2,["G5376"]],[2,3,["G2258"]],[3,4,["G575"]],[4,5,["G966"]],[5,6,["G3588"]],[6,7,["G4172"]],[7,9,["G406"]],[9,10,["G2532"]],[10,11,["G4074"]]]},{"k":26089,"v":[[0,1,["G5376"]],[1,2,["G2147"]],[2,3,["G3482"]],[3,4,["G2532"]],[4,5,["G3004"]],[5,7,["G846"]],[7,10,["G2147"]],[10,13,["G3739"]],[13,14,["G3475"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G3551"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G4396"]],[20,22,["G1125"]],[22,23,["G2424"]],[23,24,["G575"]],[24,25,["G3478"]],[25,26,["G3588"]],[26,27,["G5207"]],[27,29,["G2501"]]]},{"k":26090,"v":[[0,1,["G2532"]],[1,2,["G3482"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G1410"]],[6,8,["G5100"]],[8,10,["G18"]],[10,11,["G1511"]],[11,13,["G1537"]],[13,14,["G3478"]],[14,15,["G5376"]],[15,16,["G3004"]],[16,18,["G846"]],[18,19,["G2064"]],[19,20,["G2532"]],[20,21,["G1492"]]]},{"k":26091,"v":[[0,1,["G2424"]],[1,2,["G1492"]],[2,3,["G3482"]],[3,4,["G2064"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G3004"]],[8,9,["G4012"]],[9,10,["G846"]],[10,11,["G2396"]],[11,13,["G2475"]],[13,14,["G230"]],[14,15,["G1722"]],[15,16,["G3739"]],[16,17,["G2076"]],[17,18,["G3756"]],[18,19,["G1388"]]]},{"k":26092,"v":[[0,1,["G3482"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G4159"]],[5,6,["G1097"]],[6,8,["G3165"]],[8,9,["G2424"]],[9,10,["G611"]],[10,11,["G2532"]],[11,12,["G2036"]],[12,14,["G846"]],[14,15,["G4253"]],[15,17,["G5376"]],[17,18,["G5455"]],[18,19,["G4571"]],[19,22,["G5607"]],[22,23,["G5259"]],[23,24,["G3588"]],[24,26,["G4808"]],[26,28,["G1492"]],[28,29,["G4571"]]]},{"k":26093,"v":[[0,1,["G3482"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G3004"]],[4,6,["G846"]],[6,7,["G4461"]],[7,8,["G4771"]],[8,9,["G1488"]],[9,10,["G3588"]],[10,11,["G5207"]],[11,13,["G2316"]],[13,14,["G4771"]],[14,15,["G1488"]],[15,16,["G3588"]],[16,17,["G935"]],[17,19,["G2474"]]]},{"k":26094,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G3754"]],[7,9,["G2036"]],[9,11,["G4671"]],[11,13,["G1492"]],[13,14,["G4571"]],[14,15,["G5270"]],[15,16,["G3588"]],[16,18,["G4808"]],[18,19,["G4100"]],[19,23,["G3700"]],[23,25,["G3187"]],[25,27,["G5130"]]]},{"k":26095,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,6,["G281"]],[6,7,["G281"]],[7,9,["G3004"]],[9,11,["G5213"]],[11,12,["G575","G737"]],[12,15,["G3700"]],[15,16,["G3772"]],[16,17,["G455"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G32"]],[20,22,["G2316"]],[22,23,["G305"]],[23,24,["G2532"]],[24,25,["G2597"]],[25,26,["G1909"]],[26,27,["G3588"]],[27,28,["G5207"]],[28,30,["G444"]]]},{"k":26096,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5154"]],[3,4,["G2250"]],[4,6,["G1096"]],[6,8,["G1062"]],[8,9,["G1722"]],[9,10,["G2580"]],[10,12,["G1056"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G3384"]],[15,17,["G2424"]],[17,18,["G2258"]],[18,19,["G1563"]]]},{"k":26097,"v":[[0,1,["G1161"]],[1,2,["G2532"]],[2,3,["G2424"]],[3,5,["G2564"]],[5,6,["G2532"]],[6,7,["G846"]],[7,8,["G3101"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G1062"]]]},{"k":26098,"v":[[0,1,["G2532"]],[1,4,["G5302"]],[4,5,["G3631"]],[5,6,["G3588"]],[6,7,["G3384"]],[7,9,["G2424"]],[9,10,["G3004"]],[10,11,["G4314"]],[11,12,["G846"]],[12,14,["G2192"]],[14,15,["G3756"]],[15,16,["G3631"]]]},{"k":26099,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1135"]],[5,12,["G5101","G1698","G2532","G4671"]],[12,13,["G3450"]],[13,14,["G5610"]],[14,17,["G3768"]],[17,18,["G2240"]]]},{"k":26100,"v":[[0,1,["G846"]],[1,2,["G3384"]],[2,3,["G3004"]],[3,5,["G3588"]],[5,6,["G1249"]],[6,7,["G3748","G302"]],[7,9,["G3004"]],[9,11,["G5213"]],[11,12,["G4160"]],[12,13,[]]]},{"k":26101,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G2749"]],[4,5,["G1563"]],[5,6,["G1803"]],[6,7,["G5201"]],[7,9,["G3035"]],[9,10,["G2596"]],[10,11,["G3588"]],[11,15,["G2512"]],[15,17,["G3588"]],[17,18,["G2453"]],[18,19,["G5562"]],[19,20,["G1417"]],[20,21,["G2228"]],[21,22,["G5140"]],[22,23,["G3355"]],[23,24,["G303"]]]},{"k":26102,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1072"]],[5,6,["G3588"]],[6,7,["G5201"]],[7,9,["G5204"]],[9,10,["G2532"]],[10,12,["G1072"]],[12,13,["G846"]],[13,15,["G2193"]],[15,17,["G507"]]]},{"k":26103,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G846"]],[5,7,["G501"]],[7,8,["G3568"]],[8,9,["G2532"]],[9,10,["G5342"]],[10,12,["G3588"]],[12,16,["G755"]],[16,17,["G2532"]],[17,19,["G5342"]],[19,20,[]]]},{"k":26104,"v":[[0,0,["(G1161)"]],[0,1,["G5613"]],[1,2,["G3588"]],[2,6,["G755"]],[6,8,["G1089"]],[8,9,["G3588"]],[9,10,["G5204"]],[10,13,["G1096"]],[13,14,["G3631"]],[14,15,["G2532"]],[15,16,["G1492"]],[16,17,["G3756"]],[17,18,["G4159"]],[18,20,["G2076"]],[20,21,["G1161"]],[21,22,["G3588"]],[22,23,["G1249"]],[23,25,["G501"]],[25,26,["G3588"]],[26,27,["G5204"]],[27,28,["G1492"]],[28,29,["G3588"]],[29,33,["G755"]],[33,34,["G5455"]],[34,35,["G3588"]],[35,36,["G3566"]]]},{"k":26105,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G3956"]],[5,6,["G444"]],[6,9,["G4412"]],[9,12,["G5087"]],[12,13,["G2570"]],[13,14,["G3631"]],[14,15,["G2532"]],[15,16,["G3752"]],[16,20,["G3184"]],[20,21,["G5119"]],[21,25,["G1640"]],[25,27,["G4771"]],[27,29,["G5083"]],[29,30,["G3588"]],[30,31,["G2570"]],[31,32,["G3631"]],[32,33,["G2193"]],[33,34,["G737"]]]},{"k":26106,"v":[[0,1,["G5026"]],[1,2,["G746"]],[2,4,["G4592"]],[4,5,["G4160"]],[5,6,["G2424"]],[6,7,["G1722"]],[7,8,["G2580"]],[8,10,["G1056"]],[10,11,["G2532"]],[11,13,["G5319"]],[13,14,["G848"]],[14,15,["G1391"]],[15,16,["G2532"]],[16,17,["G846"]],[17,18,["G3101"]],[18,19,["G4100"]],[19,20,["G1519"]],[20,21,["G846"]]]},{"k":26107,"v":[[0,1,["G3326"]],[1,2,["G5124"]],[2,5,["G2597"]],[5,6,["G1519"]],[6,7,["G2584"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G3384"]],[11,12,["G2532"]],[12,13,["G846"]],[13,14,["G80"]],[14,15,["G2532"]],[15,16,["G846"]],[16,17,["G3101"]],[17,18,["G2532"]],[18,20,["G3306"]],[20,21,["G1563"]],[21,22,["G3756"]],[22,23,["G4183"]],[23,24,["G2250"]]]},{"k":26108,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,4,["G3957"]],[4,5,["G2258"]],[5,7,["G1451"]],[7,8,["G2532"]],[8,9,["G2424"]],[9,11,["G305"]],[11,12,["G1519"]],[12,13,["G2414"]]]},{"k":26109,"v":[[0,1,["G2532"]],[1,2,["G2147"]],[2,3,["G1722"]],[3,4,["G3588"]],[4,5,["G2411"]],[5,8,["G4453"]],[8,9,["G1016"]],[9,10,["G2532"]],[10,11,["G4263"]],[11,12,["G2532"]],[12,13,["G4058"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,18,["G2773"]],[18,19,["G2521"]]]},{"k":26110,"v":[[0,1,["G2532"]],[1,5,["G4160"]],[5,7,["G5416"]],[7,8,["G1537"]],[8,10,["G4979"]],[10,12,["G1544"]],[12,14,["G3956"]],[14,16,["G1537"]],[16,17,["G3588"]],[17,18,["G2411"]],[18,19,["G5037"]],[19,20,["G3588"]],[20,21,["G4263"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G1016"]],[24,25,["G2532"]],[25,27,["G1632"]],[27,28,["G3588"]],[28,29,["G2855"]],[29,30,["G2772"]],[30,31,["G2532"]],[31,32,["G390"]],[32,33,["G3588"]],[33,34,["G5132"]]]},{"k":26111,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,6,["G4453"]],[6,7,["G4058"]],[7,8,["G142"]],[8,10,["G5023"]],[10,11,["G1782"]],[11,12,["G4160"]],[12,13,["G3361"]],[13,14,["G3450"]],[14,15,["G3962"]],[15,16,["G3624"]],[16,18,["G3624"]],[18,20,["G1712"]]]},{"k":26112,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G3101"]],[3,4,["G3415"]],[4,5,["G3754"]],[5,7,["G2076"]],[7,8,["G1125"]],[8,9,["G3588"]],[9,10,["G2205"]],[10,12,["G4675"]],[12,13,["G3624"]],[13,17,["G2719","G3165"]]]},{"k":26113,"v":[[0,1,["G3767"]],[1,2,["G611"]],[2,3,["G3588"]],[3,4,["G2453"]],[4,5,["G2532"]],[5,6,["G2036"]],[6,8,["G846"]],[8,9,["G5101"]],[9,10,["G4592"]],[10,11,["G1166"]],[11,14,["G2254"]],[14,16,["G3754"]],[16,18,["G4160"]],[18,20,["G5023"]]]},{"k":26114,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G3089"]],[7,8,["G5126"]],[8,9,["G3485"]],[9,10,["G2532"]],[10,11,["G1722"]],[11,12,["G5140"]],[12,13,["G2250"]],[13,18,["G1453","G846"]]]},{"k":26115,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,4,["G2453"]],[4,7,["G5062","G2532","G1803"]],[7,8,["G2094"]],[8,13,["G3618","G3778","G3485"]],[13,14,["G2532"]],[14,16,["G4771"]],[16,19,["G1453","G846"]],[19,20,["G1722"]],[20,21,["G5140"]],[21,22,["G2250"]]]},{"k":26116,"v":[[0,1,["G1161"]],[1,2,["G1565"]],[2,3,["G3004"]],[3,4,["G4012"]],[4,5,["G3588"]],[5,6,["G3485"]],[6,8,["G848"]],[8,9,["G4983"]]]},{"k":26117,"v":[[0,1,["G3753"]],[1,2,["G3767"]],[2,5,["G1453"]],[5,6,["G1537"]],[6,8,["G3498"]],[8,9,["G846"]],[9,10,["G3101"]],[10,11,["G3415"]],[11,12,["G3754"]],[12,15,["G3004"]],[15,16,["G5124"]],[16,18,["G846"]],[18,19,["G2532"]],[19,21,["G4100"]],[21,22,["G3588"]],[22,23,["G1124"]],[23,24,["G2532"]],[24,25,["G3588"]],[25,26,["G3056"]],[26,27,["G3739"]],[27,28,["G2424"]],[28,30,["G2036"]]]},{"k":26118,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,4,["G2258"]],[4,5,["G1722"]],[5,6,["G2414"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G3957"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G1859"]],[12,14,["G4183"]],[14,15,["G4100"]],[15,16,["G1519"]],[16,17,["G846"]],[17,18,["G3686"]],[18,21,["G2334"]],[21,22,["G3588"]],[22,23,["G4592"]],[23,24,["G3739"]],[24,26,["G4160"]]]},{"k":26119,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,4,["G3756"]],[4,5,["G4100"]],[5,6,["G1438"]],[6,8,["G846"]],[8,10,["G846"]],[10,11,["G1097"]],[11,12,["G3956"]],[12,13,[]]]},{"k":26120,"v":[[0,1,["G2532","(G3754)"]],[1,2,["G2192","G5532"]],[2,3,["G3756"]],[3,4,["G2443"]],[4,5,["G5100"]],[5,7,["G3140"]],[7,8,["G4012"]],[8,9,["G444"]],[9,10,["G1063"]],[10,11,["G846"]],[11,12,["G1097"]],[12,13,["G5101"]],[13,14,["G2258"]],[14,15,["G1722"]],[15,16,["G444"]]]},{"k":26121,"v":[[0,1,["(G1161)"]],[1,2,["G2258"]],[2,4,["G444"]],[4,5,["G1537"]],[5,6,["G3588"]],[6,7,["G5330"]],[7,8,["G3686"]],[8,9,["G3530"]],[9,11,["G758"]],[11,13,["G3588"]],[13,14,["G2453"]]]},{"k":26122,"v":[[0,2,["G3778"]],[2,3,["G2064"]],[3,4,["G4314"]],[4,5,["G2424"]],[5,7,["G3571"]],[7,8,["G2532"]],[8,9,["G2036"]],[9,11,["G846"]],[11,12,["G4461"]],[12,14,["G1492"]],[14,15,["G3754"]],[15,19,["G1320"]],[19,20,["G2064"]],[20,21,["G575"]],[21,22,["G2316"]],[22,23,["G1063"]],[23,25,["G3762"]],[25,26,["G1410"]],[26,27,["G4160"]],[27,28,["G5023"]],[28,29,["G4592"]],[29,30,["G3739"]],[30,31,["G4771"]],[31,32,["G4160"]],[32,33,["G3362"]],[33,34,["G2316"]],[34,35,["G5600"]],[35,36,["G3326"]],[36,37,["G846"]]]},{"k":26123,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G281"]],[7,8,["G281"]],[8,10,["G3004"]],[10,12,["G4671"]],[12,13,["G3362"]],[13,15,["G5100"]],[15,17,["G1080"]],[17,18,["G509"]],[18,20,["G1410","G3756"]],[20,21,["G1492"]],[21,22,["G3588"]],[22,23,["G932"]],[23,25,["G2316"]]]},{"k":26124,"v":[[0,1,["G3530"]],[1,2,["G3004"]],[2,3,["G4314"]],[3,4,["G846"]],[4,5,["G4459"]],[5,6,["G1410"]],[6,8,["G444"]],[8,10,["G1080"]],[10,13,["G5607"]],[13,14,["G1088"]],[14,15,["G1410"]],[15,16,["(G3361)"]],[16,17,["G1525"]],[17,20,["G1208"]],[20,21,["G1519"]],[21,22,["G848"]],[22,23,["G3384"]],[23,24,["G2836"]],[24,25,["G2532"]],[25,27,["G1080"]]]},{"k":26125,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G281"]],[3,4,["G281"]],[4,6,["G3004"]],[6,8,["G4671"]],[8,9,["G3362"]],[9,11,["G5100"]],[11,13,["G1080"]],[13,14,["G1537"]],[14,15,["G5204"]],[15,16,["G2532"]],[16,19,["G4151"]],[19,21,["G1410","G3756"]],[21,22,["G1525"]],[22,23,["G1519"]],[23,24,["G3588"]],[24,25,["G932"]],[25,27,["G2316"]]]},{"k":26126,"v":[[0,4,["G1080"]],[4,5,["G1537"]],[5,6,["G3588"]],[6,7,["G4561"]],[7,8,["G2076"]],[8,9,["G4561"]],[9,10,["G2532"]],[10,14,["G1080"]],[14,15,["G1537"]],[15,16,["G3588"]],[16,17,["G4151"]],[17,18,["G2076"]],[18,19,["G4151"]]]},{"k":26127,"v":[[0,1,["G2296"]],[1,2,["G3361"]],[2,3,["G3754"]],[3,5,["G2036"]],[5,7,["G4671"]],[7,8,["G5209"]],[8,9,["G1163"]],[9,11,["G1080"]],[11,12,["G509"]]]},{"k":26128,"v":[[0,1,["G3588"]],[1,2,["G4151"]],[2,3,["G4154"]],[3,4,["G3699"]],[4,6,["G2309"]],[6,7,["G2532"]],[7,9,["G191"]],[9,10,["G3588"]],[10,11,["G5456"]],[11,12,["G846"]],[12,13,["G235"]],[13,16,["G1492","G3756"]],[16,17,["G4159"]],[17,19,["G2064"]],[19,20,["G2532"]],[20,21,["G4226"]],[21,23,["G5217"]],[23,24,["G3779"]],[24,25,["G2076"]],[25,27,["G3956"]],[27,30,["G1080"]],[30,31,["G1537"]],[31,32,["G3588"]],[32,33,["G4151"]]]},{"k":26129,"v":[[0,1,["G3530"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G4459"]],[7,8,["G1410"]],[8,10,["G5023"]],[10,11,["G1096"]]]},{"k":26130,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G1488"]],[7,8,["G4771"]],[8,10,["G1320"]],[10,12,["G2474"]],[12,13,["G2532"]],[13,14,["G1097"]],[14,15,["G3756"]],[15,17,["G5023"]]]},{"k":26131,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G4671"]],[6,7,["(G3754)"]],[7,8,["G2980"]],[8,9,["G3739"]],[9,12,["G1492"]],[12,13,["G2532"]],[13,14,["G3140"]],[14,15,["G3739"]],[15,18,["G3708"]],[18,19,["G2532"]],[19,21,["G2983"]],[21,22,["G3756"]],[22,23,["G2257"]],[23,24,["G3141"]]]},{"k":26132,"v":[[0,1,["G1487"]],[1,4,["G2036"]],[4,5,["G5213"]],[5,7,["G1919"]],[7,8,["G2532"]],[8,10,["G4100"]],[10,11,["G3756"]],[11,12,["G4459"]],[12,15,["G4100"]],[15,16,["G1437"]],[16,18,["G2036"]],[18,19,["G5213"]],[19,22,["G2032"]]]},{"k":26133,"v":[[0,1,["G2532"]],[1,3,["G3762"]],[3,6,["G305"]],[6,7,["G1519"]],[7,8,["G3772"]],[8,9,["G1508"]],[9,13,["G2597"]],[13,14,["G1537"]],[14,15,["G3772"]],[15,17,["G3588"]],[17,18,["G5207"]],[18,20,["G444"]],[20,22,["G5607"]],[22,23,["G1722"]],[23,24,["G3772"]]]},{"k":26134,"v":[[0,1,["G2532"]],[1,2,["G2531"]],[2,3,["G3475"]],[3,5,["G5312"]],[5,6,["G3588"]],[6,7,["G3789"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G2048"]],[10,12,["G3779"]],[12,13,["G1163"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,17,["G444"]],[17,20,["G5312"]]]},{"k":26135,"v":[[0,1,["G2443"]],[1,2,["G3956"]],[2,3,["G4100"]],[3,4,["G1519"]],[4,5,["G846"]],[5,7,["G3361"]],[7,8,["G622"]],[8,9,["G235"]],[9,10,["G2192"]],[10,11,["G166"]],[11,12,["G2222"]]]},{"k":26136,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,3,["G3779"]],[3,4,["G25"]],[4,5,["G3588"]],[5,6,["G2889"]],[6,7,["G5620"]],[7,9,["G1325"]],[9,10,["G848"]],[10,12,["G3439"]],[12,13,["G5207"]],[13,14,["G2443"]],[14,15,["G3956"]],[15,16,["G4100"]],[16,17,["G1519"]],[17,18,["G846"]],[18,20,["G3361"]],[20,21,["G622"]],[21,22,["G235"]],[22,23,["G2192"]],[23,24,["G166"]],[24,25,["G2222"]]]},{"k":26137,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,3,["G649"]],[3,4,["G3756"]],[4,5,["G848"]],[5,6,["G5207"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G2889"]],[9,10,["G2443"]],[10,11,["G2919"]],[11,12,["G3588"]],[12,13,["G2889"]],[13,14,["G235"]],[14,15,["G2443"]],[15,16,["G3588"]],[16,17,["G2889"]],[17,18,["G1223"]],[18,19,["G846"]],[19,22,["G4982"]]]},{"k":26138,"v":[[0,3,["G4100"]],[3,4,["G1519"]],[4,5,["G846"]],[5,7,["G3756"]],[7,8,["G2919"]],[8,9,["G1161"]],[9,12,["G4100"]],[12,13,["G3361"]],[13,15,["G2919"]],[15,16,["G2235"]],[16,17,["G3754"]],[17,20,["G3361"]],[20,21,["G4100"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G3686"]],[24,26,["G3588"]],[26,28,["G3439"]],[28,29,["G5207"]],[29,31,["G2316"]]]},{"k":26139,"v":[[0,1,["G1161"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G2920"]],[5,6,["G3754"]],[6,7,["G5457"]],[7,9,["G2064"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G2889"]],[12,13,["G2532"]],[13,14,["G444"]],[14,15,["G25"]],[15,16,["G4655"]],[16,17,["G3123"]],[17,18,["G2228"]],[18,19,["G5457"]],[19,20,["G1063"]],[20,21,["G846"]],[21,22,["G2041"]],[22,23,["G2258"]],[23,24,["G4190"]]]},{"k":26140,"v":[[0,1,["G1063"]],[1,3,["G3956"]],[3,5,["G4238"]],[5,6,["G5337"]],[6,7,["G3404"]],[7,8,["G3588"]],[8,9,["G5457"]],[9,10,["G2532","G3756"]],[10,11,["G2064"]],[11,12,["G4314"]],[12,13,["G3588"]],[13,14,["G5457"]],[14,15,["G3363"]],[15,16,["G846"]],[16,17,["G2041"]],[17,20,["G1651"]]]},{"k":26141,"v":[[0,1,["G1161"]],[1,4,["G4160"]],[4,5,["G225"]],[5,6,["G2064"]],[6,7,["G4314"]],[7,8,["G3588"]],[8,9,["G5457"]],[9,10,["G2443"]],[10,11,["G846"]],[11,12,["G2041"]],[12,16,["G5319"]],[16,17,["G3754"]],[17,19,["G2076"]],[19,20,["G2038"]],[20,21,["G1722"]],[21,22,["G2316"]]]},{"k":26142,"v":[[0,1,["G3326"]],[1,3,["G5023"]],[3,4,["G2064"]],[4,5,["G2424"]],[5,6,["G2532"]],[6,7,["G846"]],[7,8,["G3101"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G1093"]],[11,13,["G2449"]],[13,14,["G2532"]],[14,15,["G1563"]],[15,17,["G1304"]],[17,18,["G3326"]],[18,19,["G846"]],[19,20,["G2532"]],[20,21,["G907"]]]},{"k":26143,"v":[[0,1,["G1161"]],[1,2,["G2491"]],[2,3,["G2532"]],[3,4,["G2258"]],[4,5,["G907"]],[5,6,["G1722"]],[6,7,["G137"]],[7,9,["G1451"]],[9,10,["G4530"]],[10,11,["G3754"]],[11,13,["G2258"]],[13,14,["G4183"]],[14,15,["G5204"]],[15,16,["G1563"]],[16,17,["G2532"]],[17,19,["G3854"]],[19,20,["G2532"]],[20,22,["G907"]]]},{"k":26144,"v":[[0,1,["G1063"]],[1,2,["G2491"]],[2,3,["G2258"]],[3,5,["G3768"]],[5,6,["G906"]],[6,7,["G1519"]],[7,8,["G5438"]]]},{"k":26145,"v":[[0,1,["G3767"]],[1,3,["G1096"]],[3,5,["G2214"]],[5,8,["G1537"]],[8,9,["G2491"]],[9,10,["G3101"]],[10,11,["G3326"]],[11,13,["G2453"]],[13,14,["G4012"]],[14,15,["G2512"]]]},{"k":26146,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G4314"]],[4,5,["G2491"]],[5,6,["G2532"]],[6,7,["G2036"]],[7,9,["G846"]],[9,10,["G4461"]],[10,12,["G3739"]],[12,13,["G2258"]],[13,14,["G3326"]],[14,15,["G4675"]],[15,16,["G4008"]],[16,17,["G2446"]],[17,19,["G3739"]],[19,20,["G4771"]],[20,22,["G3140"]],[22,23,["G2396"]],[23,25,["G3778"]],[25,26,["G907"]],[26,27,["G2532"]],[27,28,["G3956"]],[28,30,["G2064"]],[30,31,["G4314"]],[31,32,["G846"]]]},{"k":26147,"v":[[0,1,["G2491"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G444"]],[6,7,["G1410","(G3756)"]],[7,8,["G2983"]],[8,9,["G3762"]],[9,10,["G3362"]],[10,12,["G5600"]],[12,13,["G1325"]],[13,14,["G846"]],[14,15,["G1537"]],[15,16,["G3772"]]]},{"k":26148,"v":[[0,1,["G5210"]],[1,2,["G846"]],[2,5,["G3140","G3427"]],[5,6,["G3754"]],[6,8,["G2036"]],[8,9,["G1473"]],[9,10,["G1510"]],[10,11,["G3756"]],[11,12,["G3588"]],[12,13,["G5547"]],[13,14,["G235"]],[14,15,["G3754"]],[15,17,["G1510"]],[17,18,["G649"]],[18,19,["G1715"]],[19,20,["G1565"]]]},{"k":26149,"v":[[0,3,["G2192"]],[3,4,["G3588"]],[4,5,["G3565"]],[5,6,["G2076"]],[6,8,["G3566"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G5384"]],[11,13,["G3588"]],[13,14,["G3566"]],[14,16,["G2476"]],[16,17,["G2532"]],[17,18,["G191"]],[18,19,["G846"]],[19,20,["G5463"]],[20,21,["G5479"]],[21,22,["G1223"]],[22,24,["G3588"]],[24,25,["G3566"]],[25,26,["G5456"]],[26,27,["G3778"]],[27,28,["G1699"]],[28,29,["G5479"]],[29,30,["G3767"]],[30,32,["G4137"]]]},{"k":26150,"v":[[0,1,["G1565"]],[1,2,["G1163"]],[2,3,["G837"]],[3,4,["G1161"]],[4,5,["G1691"]],[5,7,["G1642"]]]},{"k":26151,"v":[[0,3,["G2064"]],[3,5,["G509"]],[5,6,["G2076"]],[6,7,["G1883"]],[7,8,["G3956"]],[8,11,["G5607"]],[11,12,["G1537"]],[12,13,["G3588"]],[13,14,["G1093"]],[14,15,["G2076"]],[15,16,["G1537","G1093"]],[16,17,["G2532"]],[17,18,["G2980"]],[18,19,["G1537"]],[19,20,["G3588"]],[20,21,["G1093"]],[21,24,["G2064"]],[24,25,["G1537"]],[25,26,["G3772"]],[26,27,["G2076"]],[27,28,["G1883"]],[28,29,["G3956"]]]},{"k":26152,"v":[[0,1,["G2532"]],[1,2,["G3739"]],[2,5,["G3708"]],[5,6,["G2532"]],[6,7,["G191"]],[7,8,["G5124"]],[8,10,["G3140"]],[10,11,["G2532"]],[11,13,["G3762"]],[13,14,["G2983"]],[14,15,["G846"]],[15,16,["G3141"]]]},{"k":26153,"v":[[0,4,["G2983"]],[4,5,["G846"]],[5,6,["G3141"]],[6,11,["G4972"]],[11,12,["G3754"]],[12,13,["G2316"]],[13,14,["G2076"]],[14,15,["G227"]]]},{"k":26154,"v":[[0,1,["G1063"]],[1,3,["G3739"]],[3,4,["G2316"]],[4,6,["G649"]],[6,7,["G2980"]],[7,8,["G3588"]],[8,9,["G4487"]],[9,11,["G2316"]],[11,12,["G1063"]],[12,13,["G2316"]],[13,14,["G1325"]],[14,15,["G3756"]],[15,16,["G3588"]],[16,17,["G4151"]],[17,18,["G1537"]],[18,19,["G3358"]],[19,21,[]]]},{"k":26155,"v":[[0,1,["G3588"]],[1,2,["G3962"]],[2,3,["G25"]],[3,4,["G3588"]],[4,5,["G5207"]],[5,6,["G2532"]],[6,8,["G1325"]],[8,10,["G3956"]],[10,11,["G1722"]],[11,12,["G846"]],[12,13,["G5495"]]]},{"k":26156,"v":[[0,3,["G4100"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G5207"]],[6,7,["G2192"]],[7,8,["G166"]],[8,9,["G2222"]],[9,10,["G1161"]],[10,13,["G544"]],[13,15,["G3588"]],[15,16,["G5207"]],[16,18,["G3756"]],[18,19,["G3700"]],[19,20,["G2222"]],[20,21,["G235"]],[21,22,["G3588"]],[22,23,["G3709"]],[23,25,["G2316"]],[25,26,["G3306"]],[26,27,["G1909"]],[27,28,["G846"]]]},{"k":26157,"v":[[0,1,["G5613"]],[1,2,["G3767"]],[2,3,["G3588"]],[3,4,["G2962"]],[4,5,["G1097"]],[5,6,["G3754"]],[6,7,["G3588"]],[7,8,["G5330"]],[8,10,["G191"]],[10,11,["G3754"]],[11,12,["G2424"]],[12,13,["G4160"]],[13,14,["G2532"]],[14,15,["G907"]],[15,16,["G4119"]],[16,17,["G3101"]],[17,18,["G2228"]],[18,19,["G2491"]]]},{"k":26158,"v":[[0,1,["G2544"]],[1,2,["G2424"]],[2,3,["G846"]],[3,4,["G907"]],[4,5,["G3756"]],[5,6,["G235"]],[6,7,["G846"]],[7,8,["G3101"]]]},{"k":26159,"v":[[0,2,["G863"]],[2,3,["G2449"]],[3,4,["G2532"]],[4,5,["G565"]],[5,6,["G3825"]],[6,7,["G1519"]],[7,8,["G1056"]]]},{"k":26160,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,4,["G1163"]],[4,5,["G1330"]],[5,6,["G1223"]],[6,7,["G4540"]]]},{"k":26161,"v":[[0,1,["G3767"]],[1,2,["G2064"]],[2,4,["G1519"]],[4,6,["G4172"]],[6,8,["G4540"]],[8,11,["G3004"]],[11,12,["G4965"]],[12,13,["G4139"]],[13,15,["G3588"]],[15,18,["G5564"]],[18,19,["G3739"]],[19,20,["G2384"]],[20,21,["G1325"]],[21,23,["G848"]],[23,24,["G5207"]],[24,25,["G2501"]]]},{"k":26162,"v":[[0,1,["G1161"]],[1,2,["G2384"]],[2,3,["G4077"]],[3,4,["G2258"]],[4,5,["G1563"]],[5,6,["G2424"]],[6,7,["G3767"]],[7,9,["G2872"]],[9,10,["G1537"]],[10,12,["G3597"]],[12,13,["G2516"]],[13,14,["G3779"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,17,["G4077"]],[17,20,["G2258"]],[20,21,["G5616"]],[21,23,["G1623"]],[23,24,["G5610"]]]},{"k":26163,"v":[[0,2,["G2064"]],[2,4,["G1135"]],[4,5,["G1537"]],[5,6,["G4540"]],[6,8,["G501"]],[8,9,["G5204"]],[9,10,["G2424"]],[10,11,["G3004"]],[11,13,["G846"]],[13,14,["G1325"]],[14,15,["G3427"]],[15,17,["G4095"]]]},{"k":26164,"v":[[0,1,["G1063"]],[1,2,["G846"]],[2,3,["G3101"]],[3,6,["G565"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G4172"]],[9,10,["G2443"]],[10,11,["G59"]],[11,12,["G5160"]]]},{"k":26165,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G3588"]],[3,4,["G1135"]],[4,6,["G4542"]],[6,8,["G846"]],[8,9,["G4459"]],[9,13,["G4771"]],[13,14,["G5607"]],[14,16,["G2453"]],[16,17,["G154"]],[17,18,["G4095"]],[18,19,["G3844"]],[19,20,["G1700"]],[20,22,["G5607"]],[22,24,["G1135"]],[24,26,["G4542"]],[26,27,["G1063"]],[27,29,["G2453"]],[29,32,["G4798","G3756"]],[32,35,["G4541"]]]},{"k":26166,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G1487"]],[7,9,["G1492"]],[9,10,["G3588"]],[10,11,["G1431"]],[11,13,["G2316"]],[13,14,["G2532"]],[14,15,["G5101"]],[15,17,["G2076"]],[17,19,["G3004"]],[19,21,["G4671"]],[21,22,["G1325"]],[22,23,["G3427"]],[23,25,["G4095"]],[25,26,["G4771"]],[26,29,["G154","G302"]],[29,31,["G846"]],[31,32,["G2532"]],[32,36,["G1325","G302"]],[36,37,["G4671"]],[37,38,["G2198"]],[38,39,["G5204"]]]},{"k":26167,"v":[[0,1,["G3588"]],[1,2,["G1135"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G2962"]],[6,8,["G2192"]],[8,9,["G3777"]],[9,11,["G502"]],[11,13,["G2532"]],[13,14,["G3588"]],[14,15,["G5421"]],[15,16,["G2076"]],[16,17,["G901"]],[17,19,["G4159"]],[19,20,["G3767"]],[20,21,["G2192"]],[21,24,["G2198"]],[24,25,["G5204"]]]},{"k":26168,"v":[[0,1,["G1488"]],[1,2,["G4771","(G3361)"]],[2,3,["G3187"]],[3,5,["G2257"]],[5,6,["G3962"]],[6,7,["G2384"]],[7,8,["G3739"]],[8,9,["G1325"]],[9,10,["G2254"]],[10,11,["G3588"]],[11,12,["G5421"]],[12,13,["G2532"]],[13,14,["G4095"]],[14,15,["G1537","G846"]],[15,16,["G846"]],[16,17,["G2532"]],[17,18,["G846"]],[18,19,["G5207"]],[19,20,["G2532"]],[20,21,["G846"]],[21,22,["G2353"]]]},{"k":26169,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G3956"]],[7,8,["G4095"]],[8,9,["G1537"]],[9,10,["G5127"]],[10,11,["G5204"]],[11,13,["G1372"]],[13,14,["G3825"]]]},{"k":26170,"v":[[0,1,["G1161"]],[1,2,["G3739","G302"]],[2,3,["G4095"]],[3,4,["G1537"]],[4,5,["G3588"]],[5,6,["G5204"]],[6,7,["G3739"]],[7,8,["G1473"]],[8,10,["G1325"]],[10,11,["G846"]],[11,13,["G3364","G1519","G165"]],[13,14,["G1372"]],[14,15,["G235"]],[15,16,["G3588"]],[16,17,["G5204"]],[17,18,["G3739"]],[18,21,["G1325"]],[21,22,["G846"]],[22,24,["G1096"]],[24,25,["G1722"]],[25,26,["G846"]],[26,28,["G4077"]],[28,30,["G5204"]],[30,32,["G242"]],[32,33,["G1519"]],[33,34,["G166"]],[34,35,["G2222"]]]},{"k":26171,"v":[[0,1,["G3588"]],[1,2,["G1135"]],[2,3,["G3004"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G2962"]],[6,7,["G1325"]],[7,8,["G3427"]],[8,9,["G5124"]],[9,10,["G5204"]],[10,11,["G2443"]],[11,13,["G1372"]],[13,14,["G3361"]],[14,15,["G3366"]],[15,16,["G2064"]],[16,17,["G1759"]],[17,19,["G501"]]]},{"k":26172,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G5217"]],[5,6,["G5455"]],[6,7,["G4675"]],[7,8,["G435"]],[8,9,["G2532"]],[9,10,["G2064"]],[10,11,["G1759"]]]},{"k":26173,"v":[[0,1,["G3588"]],[1,2,["G1135"]],[2,3,["G611"]],[3,4,["G2532"]],[4,5,["G2036"]],[5,7,["G2192"]],[7,8,["G3756"]],[8,9,["G435"]],[9,10,["G2424"]],[10,11,["G3004"]],[11,13,["G846"]],[13,16,["G2573"]],[16,17,["G2036"]],[17,19,["G2192"]],[19,20,["G3756"]],[20,21,["G435"]]]},{"k":26174,"v":[[0,1,["G1063"]],[1,4,["G2192"]],[4,5,["G4002"]],[5,6,["G435"]],[6,7,["G2532"]],[7,9,["G3739"]],[9,11,["G3568"]],[11,12,["G2192"]],[12,13,["G2076"]],[13,14,["G3756"]],[14,15,["G4675"]],[15,16,["G435"]],[16,18,["G5124"]],[18,19,["G2046"]],[19,21,["G227"]]]},{"k":26175,"v":[[0,1,["G3588"]],[1,2,["G1135"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G2962"]],[6,8,["G2334"]],[8,9,["G3754"]],[9,10,["G4771"]],[10,11,["G1488"]],[11,13,["G4396"]]]},{"k":26176,"v":[[0,1,["G2257"]],[1,2,["G3962"]],[2,3,["G4352"]],[3,4,["G1722"]],[4,5,["G5129"]],[5,6,["G3735"]],[6,7,["G2532"]],[7,8,["G5210"]],[8,9,["G3004"]],[9,10,["G3754"]],[10,11,["G1722"]],[11,12,["G2414"]],[12,13,["G2076"]],[13,14,["G3588"]],[14,15,["G5117"]],[15,16,["G3699"]],[16,18,["G1163"]],[18,20,["G4352"]]]},{"k":26177,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1135"]],[5,6,["G4100"]],[6,7,["G3427","(G3754)"]],[7,9,["G5610"]],[9,10,["G2064"]],[10,11,["G3753"]],[11,14,["G3777"]],[14,15,["G1722"]],[15,16,["G5129"]],[16,17,["G3735"]],[17,19,["G3777"]],[19,20,["G1722"]],[20,21,["G2414"]],[21,22,["G4352"]],[22,23,["G3588"]],[23,24,["G3962"]]]},{"k":26178,"v":[[0,1,["G5210"]],[1,2,["G4352"]],[2,4,["G1492"]],[4,5,["G3756"]],[5,6,["G3739"]],[6,7,["G2249"]],[7,8,["G1492"]],[8,9,["G3739"]],[9,11,["G4352"]],[11,12,["G3754"]],[12,13,["G4991"]],[13,14,["G2076"]],[14,15,["G1537"]],[15,16,["G3588"]],[16,17,["G2453"]]]},{"k":26179,"v":[[0,1,["G235"]],[1,3,["G5610"]],[3,4,["G2064"]],[4,5,["G2532"]],[5,6,["G3568"]],[6,7,["G2076"]],[7,8,["G3753"]],[8,9,["G3588"]],[9,10,["G228"]],[10,11,["G4353"]],[11,13,["G4352"]],[13,14,["G3588"]],[14,15,["G3962"]],[15,16,["G1722"]],[16,17,["G4151"]],[17,18,["G2532"]],[18,20,["G225"]],[20,21,["G1063"]],[21,22,["G3588"]],[22,23,["G3962","(G2532)"]],[23,24,["G2212"]],[24,25,["G5108"]],[25,27,["G4352"]],[27,28,["G846"]]]},{"k":26180,"v":[[0,1,["G2316"]],[1,4,["G4151"]],[4,5,["G2532"]],[5,8,["G4352"]],[8,9,["G846"]],[9,10,["G1163"]],[10,11,["G4352"]],[11,13,["G1722"]],[13,14,["G4151"]],[14,15,["G2532"]],[15,17,["G225"]]]},{"k":26181,"v":[[0,1,["G3588"]],[1,2,["G1135"]],[2,3,["G3004"]],[3,5,["G846"]],[5,7,["G1492"]],[7,8,["G3754"]],[8,9,["G3323"]],[9,10,["G2064"]],[10,13,["G3004"]],[13,14,["G5547"]],[14,15,["G3752"]],[15,16,["G1565"]],[16,18,["G2064"]],[18,21,["G312"]],[21,22,["G2254"]],[22,24,["G3956"]]]},{"k":26182,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1473"]],[5,7,["G2980"]],[7,9,["G4671"]],[9,10,["G1510"]],[10,11,[]]]},{"k":26183,"v":[[0,1,["G2532"]],[1,2,["G1909"]],[2,3,["G5129"]],[3,4,["G2064"]],[4,5,["G846"]],[5,6,["G3101"]],[6,7,["G2532"]],[7,8,["G2296"]],[8,9,["G3754"]],[9,11,["G2980"]],[11,12,["G3326"]],[12,14,["G1135"]],[14,15,["G3305"]],[15,17,["G3762"]],[17,18,["G2036"]],[18,19,["G5101"]],[19,20,["G2212"]],[20,22,["G2228"]],[22,23,["G5101"]],[23,24,["G2980"]],[24,26,["G3326"]],[26,27,["G846"]]]},{"k":26184,"v":[[0,1,["G3588"]],[1,2,["G1135"]],[2,3,["G3767"]],[3,4,["G863"]],[4,5,["G848"]],[5,6,["G5201"]],[6,7,["G2532"]],[7,10,["G565"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G4172"]],[13,14,["G2532"]],[14,15,["G3004"]],[15,17,["G3588"]],[17,18,["G444"]]]},{"k":26185,"v":[[0,1,["G1205"]],[1,2,["G1492"]],[2,4,["G444"]],[4,5,["G3739"]],[5,6,["G2036"]],[6,7,["G3427"]],[7,9,["G3956"]],[9,11,["G3745"]],[11,13,["G4160"]],[13,14,["G2076"]],[14,15,["G3385"]],[15,16,["G3778"]],[16,17,["G3588"]],[17,18,["G5547"]]]},{"k":26186,"v":[[0,1,["G3767"]],[1,3,["G1831"]],[3,5,["G1537"]],[5,6,["G3588"]],[6,7,["G4172"]],[7,8,["G2532"]],[8,9,["G2064"]],[9,10,["G4314"]],[10,11,["G846"]]]},{"k":26187,"v":[[0,0,["(G1161)"]],[0,1,["G1722"]],[1,2,["G3588"]],[2,4,["G3342"]],[4,6,["G3101"]],[6,7,["G2065"]],[7,8,["G846"]],[8,9,["G3004"]],[9,10,["G4461"]],[10,11,["G5315"]]]},{"k":26188,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G1473"]],[6,7,["G2192"]],[7,8,["G1035"]],[8,10,["G5315"]],[10,11,["G3739"]],[11,12,["G5210"]],[12,13,["G1492"]],[13,14,["G3756"]],[14,15,[]]]},{"k":26189,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G3588"]],[3,4,["G3101"]],[4,7,["G240","G4314"]],[7,10,["G3387"]],[10,11,["G5342"]],[11,12,["G846"]],[12,15,["G5315"]]]},{"k":26190,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1699"]],[5,6,["G1033"]],[6,7,["G2076"]],[7,8,["G2443"]],[8,9,["G4160"]],[9,10,["G3588"]],[10,11,["G2307"]],[11,15,["G3992"]],[15,16,["G3165"]],[16,17,["G2532"]],[17,19,["G5048"]],[19,20,["G846"]],[20,21,["G2041"]]]},{"k":26191,"v":[[0,1,["G3004"]],[1,2,["G3756"]],[2,3,["G5210"]],[3,5,["G2076"]],[5,6,["G2089"]],[6,8,["G5072"]],[8,9,["G2532"]],[9,11,["G2064"]],[11,12,["G2326"]],[12,13,["G2400"]],[13,15,["G3004"]],[15,17,["G5213"]],[17,19,["G1869"]],[19,20,["G5216"]],[20,21,["G3788"]],[21,22,["G2532"]],[22,24,["G2300"]],[24,25,["G3588"]],[25,26,["G5561"]],[26,27,["G3754"]],[27,29,["G1526"]],[29,30,["G3022"]],[30,31,["G2235"]],[31,32,["G4314"]],[32,33,["G2326"]]]},{"k":26192,"v":[[0,1,["G2532"]],[1,4,["G2325"]],[4,5,["G2983"]],[5,6,["G3408"]],[6,7,["G2532"]],[7,8,["G4863"]],[8,9,["G2590"]],[9,10,["G1519"]],[10,11,["G2222"]],[11,12,["G166"]],[12,13,["G2443"]],[13,14,["G2532"]],[14,17,["G4687"]],[17,18,["G2532"]],[18,21,["G2325"]],[21,23,["G5463"]],[23,24,["G3674"]]]},{"k":26193,"v":[[0,1,["G1063"]],[1,2,["G1722","G5129"]],[2,3,["G2076"]],[3,5,["G3056"]],[5,6,["G228"]],[6,7,["G243"]],[7,8,["G4687"]],[8,9,["G2532"]],[9,10,["G243"]],[10,11,["G2325"]]]},{"k":26194,"v":[[0,1,["G1473"]],[1,2,["G649"]],[2,3,["G5209"]],[3,5,["G2325"]],[5,7,["G3739"]],[7,8,["G5210"]],[8,11,["G2872","G3756"]],[11,13,["G243"]],[13,14,["G2872"]],[14,15,["G2532"]],[15,16,["G5210"]],[16,18,["G1525"]],[18,19,["G1519"]],[19,20,["G846"]],[20,21,["G2873"]]]},{"k":26195,"v":[[0,1,["G1161"]],[1,2,["G4183"]],[2,4,["G3588"]],[4,5,["G4541"]],[5,6,["G1537"]],[6,7,["G1565"]],[7,8,["G4172"]],[8,9,["G4100"]],[9,10,["G1519"]],[10,11,["G846"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G3056"]],[14,16,["G3588"]],[16,17,["G1135"]],[17,19,["G3140"]],[19,21,["G2036"]],[21,22,["G3427"]],[22,23,["G3956"]],[23,25,["G3745"]],[25,27,["G4160"]]]},{"k":26196,"v":[[0,1,["G3767"]],[1,2,["G5613"]],[2,3,["G3588"]],[3,4,["G4541"]],[4,6,["G2064"]],[6,7,["G4314"]],[7,8,["G846"]],[8,10,["G2065"]],[10,11,["G846"]],[11,15,["G3306"]],[15,16,["G3844"]],[16,17,["G846"]],[17,18,["G2532"]],[18,20,["G3306"]],[20,21,["G1563"]],[21,22,["G1417"]],[22,23,["G2250"]]]},{"k":26197,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,3,["G4119"]],[3,4,["G4100"]],[4,5,["G1223"]],[5,8,["G846"]],[8,9,["G3056"]]]},{"k":26198,"v":[[0,1,["G5037"]],[1,2,["G3004"]],[2,4,["G3588"]],[4,5,["G1135"]],[5,6,["G3765"]],[6,8,["G4100"]],[8,10,["G1223"]],[10,12,["G4674"]],[12,13,["G2981"]],[13,14,["G1063"]],[14,17,["G191"]],[17,19,["G846"]],[19,20,["G2532"]],[20,21,["G1492"]],[21,22,["G3754"]],[22,23,["G3778"]],[23,24,["G2076"]],[24,25,["G230"]],[25,26,["G3588"]],[26,27,["G5547"]],[27,28,["G3588"]],[28,29,["G4990"]],[29,31,["G3588"]],[31,32,["G2889"]]]},{"k":26199,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,3,["G1417"]],[3,4,["G2250"]],[4,6,["G1831"]],[6,7,["G1564"]],[7,8,["G2532"]],[8,9,["G565"]],[9,10,["G1519"]],[10,11,["G1056"]]]},{"k":26200,"v":[[0,1,["G1063"]],[1,2,["G2424"]],[2,3,["G846"]],[3,4,["G3140"]],[4,5,["G3754"]],[5,7,["G4396"]],[7,8,["G2192"]],[8,9,["G3756"]],[9,10,["G5092"]],[10,11,["G1722"]],[11,13,["G2398"]],[13,14,["G3968"]]]},{"k":26201,"v":[[0,1,["G3767"]],[1,2,["G3753"]],[2,5,["G2064"]],[5,6,["G1519"]],[6,7,["G1056"]],[7,8,["G3588"]],[8,9,["G1057"]],[9,10,["G1209"]],[10,11,["G846"]],[11,13,["G3708"]],[13,16,["G3956"]],[16,17,["G3739"]],[17,19,["G4160"]],[19,20,["G1722"]],[20,21,["G2414"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G1859"]],[24,25,["G1063"]],[25,26,["G846"]],[26,27,["G2532"]],[27,28,["G2064"]],[28,29,["G1519"]],[29,30,["G3588"]],[30,31,["G1859"]]]},{"k":26202,"v":[[0,1,["G3767"]],[1,2,["G2424"]],[2,3,["G2064"]],[3,4,["G3825"]],[4,5,["G1519"]],[5,6,["G2580"]],[6,8,["G1056"]],[8,9,["G3699"]],[9,11,["G4160"]],[11,12,["G3588"]],[12,13,["G5204"]],[13,14,["G3631"]],[14,15,["G2532"]],[15,17,["G2258"]],[17,19,["G5100"]],[19,20,["G937"]],[20,21,["G3739"]],[21,22,["G5207"]],[22,24,["G770"]],[24,25,["G1722"]],[25,26,["G2584"]]]},{"k":26203,"v":[[0,2,["G3778"]],[2,3,["G191"]],[3,4,["G3754"]],[4,5,["G2424"]],[5,7,["G2240"]],[7,9,["G1537"]],[9,10,["G2449"]],[10,11,["G1519"]],[11,12,["G1056"]],[12,14,["G565"]],[14,15,["G4314"]],[15,16,["G846"]],[16,17,["G2532"]],[17,18,["G2065"]],[18,19,["G846"]],[19,20,["G2443"]],[20,24,["G2597"]],[24,25,["G2532"]],[25,26,["G2390"]],[26,27,["G846"]],[27,28,["G5207"]],[28,29,["G1063"]],[29,36,["G3195","G599"]]]},{"k":26204,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G3362"]],[6,8,["G1492"]],[8,9,["G4592"]],[9,10,["G2532"]],[10,11,["G5059"]],[11,14,["G3364"]],[14,15,["G4100"]]]},{"k":26205,"v":[[0,1,["G3588"]],[1,2,["G937"]],[2,3,["G3004"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G2962"]],[6,8,["G2597"]],[8,9,["G4250"]],[9,10,["G3450"]],[10,11,["G3813"]],[11,12,["G599"]]]},{"k":26206,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,7,["G4198"]],[7,8,["G4675"]],[8,9,["G5207"]],[9,10,["G2198"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G444"]],[13,14,["G4100"]],[14,15,["G3588"]],[15,16,["G3056"]],[16,17,["G3739"]],[17,18,["G2424"]],[18,20,["G2036"]],[20,22,["G846"]],[22,23,["G2532"]],[23,27,["G4198"]]]},{"k":26207,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G2235"]],[5,7,["G2597"]],[7,8,["G846"]],[8,9,["G1401"]],[9,10,["G528"]],[10,11,["G846"]],[11,12,["G2532"]],[12,13,["G518"]],[13,15,["G3004"]],[15,16,["G4675"]],[16,17,["G3816"]],[17,18,["G2198"]]]},{"k":26208,"v":[[0,1,["G3767"]],[1,2,["G4441"]],[2,4,["G3844"]],[4,5,["G846"]],[5,6,["G3588"]],[6,7,["G5610"]],[7,8,["G1722","G3739"]],[8,12,["G2192","G2866"]],[12,13,["G2532"]],[13,15,["G2036"]],[15,17,["G846"]],[17,18,["G5504"]],[18,21,["G1442"]],[21,22,["G5610"]],[22,23,["G3588"]],[23,24,["G4446"]],[24,25,["G863"]],[25,26,["G846"]]]},{"k":26209,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,3,["G3962"]],[3,4,["G1097"]],[4,5,["G3754"]],[5,8,["G1722"]],[8,10,["G1565"]],[10,11,["G5610"]],[11,12,["G1722"]],[12,14,["G3739"]],[14,15,["G2424"]],[15,16,["G2036"]],[16,18,["G846"]],[18,19,["G4675"]],[19,20,["G5207"]],[20,21,["G2198"]],[21,22,["G2532"]],[22,23,["G846"]],[23,24,["G4100"]],[24,25,["G2532"]],[25,26,["G846"]],[26,27,["G3650"]],[27,28,["G3614"]]]},{"k":26210,"v":[[0,1,["G5124"]],[1,3,["G3825"]],[3,5,["G1208"]],[5,6,["G4592"]],[6,8,["G2424"]],[8,9,["G4160"]],[9,13,["G2064"]],[13,15,["G1537"]],[15,16,["G2449"]],[16,17,["G1519"]],[17,18,["G1056"]]]},{"k":26211,"v":[[0,1,["G3326"]],[1,2,["G5023"]],[2,4,["G2258"]],[4,6,["G1859"]],[6,8,["G3588"]],[8,9,["G2453"]],[9,10,["G2532"]],[10,11,["G2424"]],[11,13,["G305"]],[13,14,["G1519"]],[14,15,["G2414"]]]},{"k":26212,"v":[[0,1,["G1161"]],[1,3,["G2076"]],[3,4,["G1722"]],[4,5,["G2414"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G4262"]],[8,11,["G2861"]],[11,14,["G1951"]],[14,18,["G1447"]],[18,19,["G964"]],[19,20,["G2192"]],[20,21,["G4002"]],[21,22,["G4745"]]]},{"k":26213,"v":[[0,1,["G1722"]],[1,2,["G5025"]],[2,3,["G2621"]],[3,5,["G4183"]],[5,6,["G4128"]],[6,9,["G770"]],[9,11,["G5185"]],[11,12,["G5560"]],[12,13,["G3584"]],[13,15,["G1551"]],[15,16,["G3588"]],[16,17,["G2796"]],[17,19,["G3588"]],[19,20,["G5204"]]]},{"k":26214,"v":[[0,1,["G1063"]],[1,3,["G32"]],[3,5,["G2597"]],[5,9,["G2596","G2540"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G2861"]],[12,13,["G2532"]],[13,14,["G5015"]],[14,15,["G3588"]],[15,16,["G5204"]],[16,18,["G3767"]],[18,19,["G4413"]],[19,20,["G3326"]],[20,21,["G3588"]],[21,22,["G5016"]],[22,24,["G3588"]],[24,25,["G5204"]],[25,27,["G1684"]],[27,29,["G1096"]],[29,30,["G5199"]],[30,32,["G3739","G1221"]],[32,33,["G3553"]],[33,35,["G2722"]]]},{"k":26215,"v":[[0,1,["G1161"]],[1,3,["G5100"]],[3,4,["G444"]],[4,5,["G2258"]],[5,6,["G1563"]],[6,8,["G2192"]],[8,9,["(G1722)"]],[9,10,["G769"]],[10,13,["G5144","G3638"]],[13,14,["G2094"]]]},{"k":26216,"v":[[0,2,["G2424"]],[2,3,["G1492"]],[3,4,["G5126"]],[4,5,["G2621"]],[5,6,["G2532"]],[6,7,["G1097"]],[7,8,["G3754"]],[8,11,["G2192"]],[11,12,["G2235"]],[12,14,["G4183"]],[14,15,["G5550"]],[15,20,["G3004"]],[20,22,["G846"]],[22,23,["G2309"]],[23,26,["G1096"]],[26,27,["G5199"]]]},{"k":26217,"v":[[0,1,["G3588"]],[1,3,["G770"]],[3,4,["G611"]],[4,5,["G846"]],[5,6,["G2962"]],[6,8,["G2192"]],[8,9,["G3756"]],[9,10,["G444","(G2443)"]],[10,11,["G3752"]],[11,12,["G3588"]],[12,13,["G5204"]],[13,15,["G5015"]],[15,17,["G906"]],[17,18,["G3165"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G2861"]],[21,22,["G1161"]],[22,23,["G1722","G3739"]],[23,24,["G1473"]],[24,26,["G2064"]],[26,27,["G243"]],[27,29,["G2597"]],[29,30,["G4253"]],[30,31,["G1700"]]]},{"k":26218,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1453"]],[5,7,["G142"]],[7,8,["G4675"]],[8,9,["G2895"]],[9,10,["G2532"]],[10,11,["G4043"]]]},{"k":26219,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,3,["G3588"]],[3,4,["G444"]],[4,6,["G1096"]],[6,7,["G5199"]],[7,8,["G2532"]],[8,10,["G142"]],[10,11,["G846"]],[11,12,["G2895"]],[12,13,["G2532"]],[13,14,["G4043"]],[14,15,["G1161"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G1565"]],[18,19,["G2250"]],[19,20,["G2258"]],[20,22,["G4521"]]]},{"k":26220,"v":[[0,1,["G3588"]],[1,2,["G2453"]],[2,3,["G3767"]],[3,4,["G3004"]],[4,9,["G2323"]],[9,11,["G2076"]],[11,14,["G4521"]],[14,18,["G1832","G3756"]],[18,20,["G4671"]],[20,22,["G142"]],[22,24,["G2895"]]]},{"k":26221,"v":[[0,2,["G611"]],[2,3,["G846"]],[3,6,["G4160"]],[6,7,["G3165"]],[7,8,["G5199"]],[8,10,["G1565"]],[10,11,["G2036"]],[11,13,["G3427"]],[13,15,["G142"]],[15,16,["G4675"]],[16,17,["G2895"]],[17,18,["G2532"]],[18,19,["G4043"]]]},{"k":26222,"v":[[0,1,["G3767"]],[1,2,["G2065"]],[2,4,["G846"]],[4,5,["G5101"]],[5,6,["G444"]],[6,7,["G2076"]],[7,10,["G2036"]],[10,12,["G4671"]],[12,14,["G142"]],[14,15,["G4675"]],[15,16,["G2895"]],[16,17,["G2532"]],[17,18,["G4043"]]]},{"k":26223,"v":[[0,1,["G1161"]],[1,5,["G2390"]],[5,6,["G1492"]],[6,7,["G3756"]],[7,8,["G5101"]],[8,10,["G2076"]],[10,11,["G1063"]],[11,12,["G2424"]],[12,16,["G1593"]],[16,18,["G3793"]],[18,19,["G5607"]],[19,20,["G1722"]],[20,22,["G5117"]]]},{"k":26224,"v":[[0,1,["G3326","G5023"]],[1,2,["G2424"]],[2,3,["G2147"]],[3,4,["G846"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G2411"]],[7,8,["G2532"]],[8,9,["G2036"]],[9,11,["G846"]],[11,12,["G2396"]],[12,15,["G1096"]],[15,16,["G5199"]],[16,17,["G264"]],[17,19,["G3371"]],[19,20,["G3363"]],[20,22,["G5501"]],[22,23,["G5100"]],[23,24,["G1096"]],[24,26,["G4671"]]]},{"k":26225,"v":[[0,1,["G3588"]],[1,2,["G444"]],[2,3,["G565"]],[3,4,["G2532"]],[4,5,["G312"]],[5,6,["G3588"]],[6,7,["G2453"]],[7,8,["G3754"]],[8,10,["G2076"]],[10,11,["G2424"]],[11,14,["G4160"]],[14,15,["G846"]],[15,16,["G5199"]]]},{"k":26226,"v":[[0,1,["G2532"]],[1,2,["G1223","G5124"]],[2,4,["G3588"]],[4,5,["G2453"]],[5,6,["G1377"]],[6,7,["G2424"]],[7,8,["G2532"]],[8,9,["G2212"]],[9,11,["G615"]],[11,12,["G846"]],[12,13,["G3754"]],[13,16,["G4160"]],[16,18,["G5023"]],[18,19,["G1722"]],[19,22,["G4521"]]]},{"k":26227,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G846"]],[4,5,["G3450"]],[5,6,["G3962"]],[6,7,["G2038"]],[7,8,["G2193","G737"]],[8,10,["G2504"]],[10,11,["G2038"]]]},{"k":26228,"v":[[0,1,["G1223","G5124","(G3767)"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,4,["G2212"]],[4,6,["G3123"]],[6,8,["G615"]],[8,9,["G846"]],[9,10,["G3754"]],[10,12,["G3756"]],[12,13,["G3440"]],[13,15,["G3089"]],[15,16,["G3588"]],[16,17,["G4521"]],[17,18,["G235"]],[18,19,["G3004"]],[19,20,["G2532"]],[20,22,["G2316"]],[22,24,["G2398"]],[24,25,["G3962"]],[25,26,["G4160"]],[26,27,["G1438"]],[27,28,["G2470"]],[28,30,["G2316"]]]},{"k":26229,"v":[[0,1,["G3767"]],[1,2,["G611"]],[2,3,["G2424"]],[3,4,["G2532"]],[4,5,["G2036"]],[5,7,["G846"]],[7,8,["G281"]],[8,9,["G281"]],[9,11,["G3004"]],[11,13,["G5213"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,16,["G1410","(G3756)"]],[16,17,["G4160"]],[17,18,["G3762"]],[18,19,["G575"]],[19,20,["G1438"]],[20,21,["G3362"]],[21,22,["G5100"]],[22,24,["G991"]],[24,25,["G3588"]],[25,26,["G3962"]],[26,27,["G4160"]],[27,28,["G1063"]],[28,31,["G3739","G302"]],[31,32,["G1565"]],[32,33,["G4160"]],[33,34,["G5023"]],[34,35,["G2532"]],[35,36,["G4160"]],[36,37,["G3588"]],[37,38,["G5207"]],[38,39,["G3668"]]]},{"k":26230,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3962"]],[3,4,["G5368"]],[4,5,["G3588"]],[5,6,["G5207"]],[6,7,["G2532"]],[7,8,["G1166"]],[8,9,["G846"]],[9,11,["G3956"]],[11,12,["G3739"]],[12,13,["G846"]],[13,14,["G4160"]],[14,15,["G2532"]],[15,18,["G1166"]],[18,19,["G846"]],[19,20,["G3187"]],[20,21,["G2041"]],[21,23,["G5130"]],[23,24,["G2443"]],[24,25,["G5210"]],[25,27,["G2296"]]]},{"k":26231,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G3588"]],[3,4,["G3962"]],[4,6,["G1453"]],[6,7,["G3588"]],[7,8,["G3498"]],[8,9,["G2532"]],[9,10,["G2227"]],[10,13,["G3779"]],[13,14,["G3588"]],[14,15,["G5207","(G2532)"]],[15,16,["G2227"]],[16,17,["G3739"]],[17,19,["G2309"]]]},{"k":26232,"v":[[0,1,["G1063","(G3761)"]],[1,2,["G3588"]],[2,3,["G3962"]],[3,4,["G2919"]],[4,6,["G3762"]],[6,7,["G235"]],[7,9,["G1325"]],[9,10,["G3956"]],[10,11,["G2920"]],[11,13,["G3588"]],[13,14,["G5207"]]]},{"k":26233,"v":[[0,1,["G2443"]],[1,2,["G3956"]],[2,5,["G5091"]],[5,6,["G3588"]],[6,7,["G5207"]],[7,9,["G2531"]],[9,11,["G5091"]],[11,12,["G3588"]],[12,13,["G3962"]],[13,16,["G5091"]],[16,17,["G3361"]],[17,18,["G3588"]],[18,19,["G5207"]],[19,20,["G5091"]],[20,21,["G3756"]],[21,22,["G3588"]],[22,23,["G3962"]],[23,26,["G3992"]],[26,27,["G846"]]]},{"k":26234,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213","(G3754)"]],[6,9,["G191"]],[9,10,["G3450"]],[10,11,["G3056"]],[11,12,["G2532"]],[12,13,["G4100"]],[13,17,["G3992"]],[17,18,["G3165"]],[18,19,["G2192"]],[19,20,["G166"]],[20,21,["G2222"]],[21,22,["G2532"]],[22,24,["G3756"]],[24,25,["G2064"]],[25,26,["G1519"]],[26,27,["G2920"]],[27,28,["G235"]],[28,30,["G3327"]],[30,31,["G1537"]],[31,32,["G2288"]],[32,33,["G1519"]],[33,34,["G2222"]]]},{"k":26235,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,7,["(G3754)"]],[7,8,["G5610"]],[8,10,["G2064"]],[10,11,["G2532"]],[11,12,["G3568"]],[12,13,["G2076"]],[13,14,["G3753"]],[14,15,["G3588"]],[15,16,["G3498"]],[16,18,["G191"]],[18,19,["G3588"]],[19,20,["G5456"]],[20,22,["G3588"]],[22,23,["G5207"]],[23,25,["G2316"]],[25,26,["G2532"]],[26,29,["G191"]],[29,31,["G2198"]]]},{"k":26236,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G3588"]],[3,4,["G3962"]],[4,5,["G2192"]],[5,6,["G2222"]],[6,7,["G1722"]],[7,8,["G1438"]],[8,9,["G3779"]],[9,12,["G1325"]],[12,13,["(G2532)"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,17,["G2192"]],[17,18,["G2222"]],[18,19,["G1722"]],[19,20,["G1438"]]]},{"k":26237,"v":[[0,1,["G2532"]],[1,3,["G1325"]],[3,4,["G846"]],[4,5,["G1849"]],[5,7,["G4160"]],[7,8,["G2920"]],[8,9,["G2532"]],[9,10,["G3754"]],[10,12,["G2076"]],[12,14,["G5207"]],[14,16,["G444"]]]},{"k":26238,"v":[[0,1,["G2296"]],[1,2,["G3361"]],[2,4,["G5124"]],[4,5,["G3754"]],[5,7,["G5610"]],[7,9,["G2064"]],[9,10,["G1722"]],[10,12,["G3739"]],[12,13,["G3956"]],[13,14,["G3588"]],[14,16,["G1722"]],[16,17,["G3588"]],[17,18,["G3419"]],[18,20,["G191"]],[20,21,["G846"]],[21,22,["G5456"]]]},{"k":26239,"v":[[0,1,["G2532"]],[1,4,["G1607"]],[4,8,["G4160"]],[8,9,["G18"]],[9,10,["G1519"]],[10,12,["G386"]],[12,14,["G2222"]],[14,15,["G1161"]],[15,19,["G4238"]],[19,20,["G5337"]],[20,21,["G1519"]],[21,23,["G386"]],[23,25,["G2920"]]]},{"k":26240,"v":[[0,1,["G1473"]],[1,2,["G1410","(G3756)"]],[2,3,["G575"]],[3,6,["G1683"]],[6,7,["G4160"]],[7,8,["G3762"]],[8,9,["G2531"]],[9,11,["G191"]],[11,13,["G2919"]],[13,14,["G2532"]],[14,15,["G1699"]],[15,16,["G2920"]],[16,17,["G2076"]],[17,18,["G1342"]],[18,19,["G3754"]],[19,21,["G2212"]],[21,22,["G3756"]],[22,24,["G1699"]],[24,25,["G2307"]],[25,26,["G235"]],[26,27,["G3588"]],[27,28,["G2307"]],[28,30,["G3588"]],[30,31,["G3962"]],[31,34,["G3992"]],[34,35,["G3165"]]]},{"k":26241,"v":[[0,1,["G1437"]],[1,2,["G1473"]],[2,4,["G3140"]],[4,5,["G4012"]],[5,6,["G1683"]],[6,7,["G3450"]],[7,8,["G3141"]],[8,9,["G2076"]],[9,10,["G3756"]],[10,11,["G227"]]]},{"k":26242,"v":[[0,2,["G2076"]],[2,3,["G243"]],[3,6,["G3140"]],[6,7,["G4012"]],[7,8,["G1700"]],[8,9,["G2532"]],[9,11,["G1492"]],[11,12,["G3754"]],[12,13,["G3588"]],[13,14,["G3141"]],[14,15,["G3739"]],[15,17,["G3140"]],[17,18,["G4012"]],[18,19,["G1700"]],[19,20,["G2076"]],[20,21,["G227"]]]},{"k":26243,"v":[[0,1,["G5210"]],[1,2,["G649"]],[2,3,["G4314"]],[3,4,["G2491"]],[4,5,["G2532"]],[5,8,["G3140"]],[8,10,["G3588"]],[10,11,["G225"]]]},{"k":26244,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G2983"]],[3,4,["G3756"]],[4,5,["G3141"]],[5,6,["G3844"]],[6,7,["G444"]],[7,8,["G235"]],[8,10,["G5023"]],[10,12,["G3004"]],[12,13,["G2443"]],[13,14,["G5210"]],[14,17,["G4982"]]]},{"k":26245,"v":[[0,1,["G1565"]],[1,2,["G2258"]],[2,4,["G2545"]],[4,5,["G2532"]],[5,7,["G5316"]],[7,8,["G3088"]],[8,9,["G1161"]],[9,10,["G5210"]],[10,12,["G2309"]],[12,13,["G4314"]],[13,15,["G5610"]],[15,17,["G21"]],[17,18,["G1722"]],[18,19,["G846"]],[19,20,["G5457"]]]},{"k":26246,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G2192"]],[3,4,["G3187"]],[4,5,["G3141"]],[5,9,["G2491"]],[9,10,["G1063"]],[10,11,["G3588"]],[11,12,["G2041"]],[12,13,["G3739"]],[13,14,["G3588"]],[14,15,["G3962"]],[15,17,["G1325"]],[17,18,["G3427"]],[18,19,["G2443"]],[19,20,["G5048"]],[20,21,["(G846)"]],[21,22,["G846"]],[22,23,["G2041"]],[23,24,["G3739"]],[24,25,["G1473"]],[25,26,["G4160"]],[26,28,["G3140"]],[28,29,["G4012"]],[29,30,["G1700"]],[30,31,["G3754"]],[31,32,["G3588"]],[32,33,["G3962"]],[33,35,["G649"]],[35,36,["G3165"]]]},{"k":26247,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3962"]],[3,4,["G846"]],[4,7,["G3992"]],[7,8,["G3165"]],[8,11,["G3140"]],[11,12,["G4012"]],[12,13,["G1700"]],[13,16,["G3777"]],[16,17,["G191"]],[17,18,["G846"]],[18,19,["G5456"]],[19,22,["G4455"]],[22,23,["G3777"]],[23,24,["G3708"]],[24,25,["G846"]],[25,26,["G1491"]]]},{"k":26248,"v":[[0,1,["G2532"]],[1,3,["G2192"]],[3,4,["G3756"]],[4,5,["G846"]],[5,6,["G3056"]],[6,7,["G3306"]],[7,8,["G1722"]],[8,9,["G5213"]],[9,10,["G3754"]],[10,11,["G3739"]],[11,12,["G1565"]],[12,14,["G649"]],[14,15,["G5129"]],[15,16,["G5210"]],[16,17,["G4100"]],[17,18,["G3756"]]]},{"k":26249,"v":[[0,1,["G2045"]],[1,2,["G3588"]],[2,3,["G1124"]],[3,4,["G3754"]],[4,5,["G1722"]],[5,6,["G846"]],[6,7,["G5210"]],[7,8,["G1380"]],[8,10,["G2192"]],[10,11,["G166"]],[11,12,["G2222"]],[12,13,["G2532"]],[13,14,["G1565"]],[14,15,["G1526"]],[15,18,["G3140"]],[18,19,["G4012"]],[19,20,["G1700"]]]},{"k":26250,"v":[[0,1,["G2532"]],[1,3,["G2309"]],[3,4,["G3756"]],[4,5,["G2064"]],[5,6,["G4314"]],[6,7,["G3165"]],[7,8,["G2443"]],[8,11,["G2192"]],[11,12,["G2222"]]]},{"k":26251,"v":[[0,2,["G2983"]],[2,3,["G3756"]],[3,4,["G1391"]],[4,5,["G3844"]],[5,6,["G444"]]]},{"k":26252,"v":[[0,1,["G235"]],[1,3,["G1097"]],[3,4,["G5209"]],[4,5,["G3754"]],[5,7,["G2192"]],[7,8,["G3756"]],[8,9,["G3588"]],[9,10,["G26"]],[10,12,["G2316"]],[12,13,["G1722"]],[13,14,["G1438"]]]},{"k":26253,"v":[[0,1,["G1473"]],[1,3,["G2064"]],[3,4,["G1722"]],[4,5,["G3450"]],[5,6,["G3962"]],[6,7,["G3686"]],[7,8,["G2532"]],[8,10,["G2983"]],[10,11,["G3165"]],[11,12,["G3756"]],[12,13,["G1437"]],[13,14,["G243"]],[14,16,["G2064"]],[16,17,["G1722"]],[17,19,["G2398"]],[19,20,["G3686"]],[20,21,["G1565"]],[21,24,["G2983"]]]},{"k":26254,"v":[[0,1,["G4459"]],[1,2,["G1410"]],[2,3,["G5210"]],[3,4,["G4100"]],[4,6,["G2983"]],[6,7,["G1391"]],[7,10,["G240","G3844"]],[10,11,["G2532"]],[11,12,["G2212"]],[12,13,["G3756"]],[13,14,["G3588"]],[14,15,["G1391"]],[15,16,["G3588"]],[16,18,["G3844"]],[18,19,["G2316"]],[19,20,["G3441"]]]},{"k":26255,"v":[[0,2,["G3361"]],[2,3,["G1380"]],[3,4,["G3754"]],[4,5,["G1473"]],[5,7,["G2723"]],[7,8,["G5216"]],[8,9,["G4314"]],[9,10,["G3588"]],[10,11,["G3962"]],[11,13,["G2076"]],[13,16,["G2723"]],[16,17,["G5216"]],[17,19,["G3475"]],[19,20,["G1519"]],[20,21,["G3739"]],[21,22,["G5210"]],[22,23,["G1679"]]]},{"k":26256,"v":[[0,1,["G1063"]],[1,3,["(G1487)"]],[3,4,["G4100"]],[4,5,["G3475"]],[5,9,["G4100","G302"]],[9,10,["G1698"]],[10,11,["G1063"]],[11,12,["G1565"]],[12,13,["G1125"]],[13,14,["G4012"]],[14,15,["G1700"]]]},{"k":26257,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G4100"]],[4,5,["G3756"]],[5,6,["G1565"]],[6,7,["G1121"]],[7,8,["G4459"]],[8,11,["G4100"]],[11,12,["G1699"]],[12,13,["G4487"]]]},{"k":26258,"v":[[0,1,["G3326"]],[1,3,["G5023"]],[3,4,["G2424"]],[4,5,["G565"]],[5,6,["G4008"]],[6,7,["G3588"]],[7,8,["G2281"]],[8,10,["G1056"]],[10,16,["G5085"]]]},{"k":26259,"v":[[0,1,["G2532"]],[1,3,["G4183"]],[3,4,["G3793"]],[4,5,["G190"]],[5,6,["G846"]],[6,7,["G3754"]],[7,9,["G3708"]],[9,10,["G846"]],[10,11,["G4592"]],[11,12,["G3739"]],[12,14,["G4160"]],[14,15,["G1909"]],[15,19,["G770"]]]},{"k":26260,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,4,["G424"]],[4,5,["G1519"]],[5,7,["G3735"]],[7,8,["G2532"]],[8,9,["G1563"]],[9,11,["G2521"]],[11,12,["G3326"]],[12,13,["G848"]],[13,14,["G3101"]]]},{"k":26261,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3957"]],[3,5,["G1859"]],[5,7,["G3588"]],[7,8,["G2453"]],[8,9,["G2258"]],[9,10,["G1451"]]]},{"k":26262,"v":[[0,2,["G2424"]],[2,3,["G3767"]],[3,5,["G1869"]],[5,7,["G3788"]],[7,8,["G2532"]],[8,9,["G2300"]],[9,10,["(G3754)"]],[10,11,["G4183"]],[11,12,["G3793"]],[12,13,["G2064"]],[13,14,["G4314"]],[14,15,["G846"]],[15,17,["G3004"]],[17,18,["G4314"]],[18,19,["G5376"]],[19,20,["G4159"]],[20,23,["G59"]],[23,24,["G740"]],[24,25,["G2443"]],[25,26,["G3778"]],[26,28,["G5315"]]]},{"k":26263,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,4,["G3004"]],[4,6,["G3985"]],[6,7,["G846"]],[7,8,["G1063"]],[8,9,["G846"]],[9,11,["G1492"]],[11,12,["G5101"]],[12,14,["G3195"]],[14,15,["G4160"]]]},{"k":26264,"v":[[0,1,["G5376"]],[1,2,["G611"]],[2,3,["G846"]],[3,5,["G1250"]],[5,6,["G1220"]],[6,8,["G740"]],[8,11,["G714","G3756"]],[11,13,["G846"]],[13,14,["G2443"]],[14,16,["G1538"]],[16,18,["G846"]],[18,20,["G2983"]],[20,22,["G5100","G1024"]]]},{"k":26265,"v":[[0,1,["G1520"]],[1,2,["G1537"]],[2,3,["G846"]],[3,4,["G3101"]],[4,5,["G406"]],[5,6,["G4613"]],[6,7,["G4074"]],[7,8,["G80"]],[8,9,["G3004"]],[9,11,["G846"]]]},{"k":26266,"v":[[0,2,["G2076"]],[2,3,["G1520"]],[3,4,["G3808"]],[4,5,["G5602"]],[5,6,["G3739"]],[6,7,["G2192"]],[7,8,["G4002"]],[8,9,["G2916"]],[9,10,["G740"]],[10,11,["G2532"]],[11,12,["G1417"]],[12,14,["G3795"]],[14,15,["G235"]],[15,16,["G5101"]],[16,17,["G2076"]],[17,18,["G5023"]],[18,19,["G1519"]],[19,21,["G5118"]]]},{"k":26267,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G4160"]],[4,5,["G3588"]],[5,6,["G444"]],[6,8,["G377"]],[8,9,["G1161"]],[9,11,["G2258"]],[11,12,["G4183"]],[12,13,["G5528"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G5117"]],[16,17,["G3767"]],[17,18,["G3588"]],[18,19,["G435"]],[19,21,["G377"]],[21,23,["G706"]],[23,24,["G5616"]],[24,26,["G4000"]]]},{"k":26268,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2983"]],[3,4,["G3588"]],[4,5,["G740"]],[5,6,["G2532"]],[6,11,["G2168"]],[11,13,["G1239"]],[13,15,["G3588"]],[15,16,["G3101"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G3101"]],[19,25,["G345"]],[25,26,["G2532"]],[26,27,["G3668"]],[27,28,["G1537"]],[28,29,["G3588"]],[29,30,["G3795"]],[30,33,["G3745"]],[33,35,["G2309"]]]},{"k":26269,"v":[[0,0,["(G1161)"]],[0,1,["G5613"]],[1,4,["G1705"]],[4,6,["G3004"]],[6,8,["G848"]],[8,9,["G3101"]],[9,11,["G4863"]],[11,12,["G3588"]],[12,13,["G2801"]],[13,15,["G4052"]],[15,16,["G2443"]],[16,17,["G5100","G3361"]],[17,19,["G622"]]]},{"k":26270,"v":[[0,1,["G3767"]],[1,5,["G4863"]],[5,6,["G2532"]],[6,7,["G1072"]],[7,8,["G1427"]],[8,9,["G2894"]],[9,12,["G2801"]],[12,13,["G1537"]],[13,14,["G3588"]],[14,15,["G4002"]],[15,16,["G2916"]],[16,17,["G740"]],[17,18,["G3739"]],[18,22,["G4052"]],[22,27,["G977"]]]},{"k":26271,"v":[[0,1,["G3767"]],[1,3,["G444"]],[3,7,["G1492"]],[7,9,["G4592"]],[9,10,["G3739"]],[10,11,["G2424"]],[11,12,["G4160"]],[12,13,["G3004"]],[13,14,["G3778"]],[14,15,["G2076"]],[15,18,["G230"]],[18,20,["G4396"]],[20,23,["G2064"]],[23,24,["G1519"]],[24,25,["G3588"]],[25,26,["G2889"]]]},{"k":26272,"v":[[0,2,["G2424"]],[2,3,["G3767"]],[3,4,["G1097"]],[4,5,["G3754"]],[5,7,["G3195"]],[7,8,["G2064"]],[8,9,["G2532"]],[9,13,["G726","G846"]],[13,14,["G2443"]],[14,15,["G4160"]],[15,16,["G846"]],[16,18,["G935"]],[18,20,["G402"]],[20,21,["G3825"]],[21,22,["G1519"]],[22,24,["G3735"]],[24,25,["G846"]],[25,26,["G3441"]]]},{"k":26273,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G3798"]],[3,6,["G1096"]],[6,7,["G846"]],[7,8,["G3101"]],[8,10,["G2597"]],[10,11,["G1909"]],[11,12,["G3588"]],[12,13,["G2281"]]]},{"k":26274,"v":[[0,1,["G2532"]],[1,2,["G1684"]],[2,3,["G1519"]],[3,5,["G4143"]],[5,7,["G2064"]],[7,8,["G4008"]],[8,9,["G3588"]],[9,10,["G2281"]],[10,11,["G1519"]],[11,12,["G2584"]],[12,13,["G2532"]],[13,15,["G1096"]],[15,16,["G2235"]],[16,17,["G4653"]],[17,18,["G2532"]],[18,19,["G2424"]],[19,21,["G3756"]],[21,22,["G2064"]],[22,23,["G4314"]],[23,24,["G846"]]]},{"k":26275,"v":[[0,1,["G5037"]],[1,2,["(G3739)"]],[2,3,["G2281"]],[3,4,["G1326"]],[4,9,["G3173"]],[9,10,["G417"]],[10,12,["G4154"]]]},{"k":26276,"v":[[0,1,["G3767"]],[1,5,["G1643"]],[5,6,["G5613"]],[6,9,["G4002","G1501"]],[9,10,["G2228"]],[10,11,["G5144"]],[11,12,["G4712"]],[12,14,["G2334"]],[14,15,["G2424"]],[15,16,["G4043"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G2281"]],[19,20,["G2532"]],[20,21,["G1096"]],[21,22,["G1451"]],[22,24,["G3588"]],[24,25,["G4143"]],[25,26,["G2532"]],[26,29,["G5399"]]]},{"k":26277,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3004"]],[3,5,["G846"]],[5,7,["G1510"]],[7,8,["G1473"]],[8,11,["G5399","G3361"]]]},{"k":26278,"v":[[0,1,["G3767"]],[1,3,["G2309"]],[3,4,["G2983"]],[4,5,["G846"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G4143"]],[8,9,["G2532"]],[9,10,["G2112"]],[10,11,["G3588"]],[11,12,["G4143"]],[12,13,["G1096"]],[13,14,["G1909"]],[14,15,["G3588"]],[15,16,["G1093"]],[16,17,["G1519","G3739"]],[17,19,["G5217"]]]},{"k":26279,"v":[[0,1,["G3588"]],[1,3,["G1887"]],[3,5,["G3588"]],[5,6,["G3793"]],[6,8,["G2476"]],[8,12,["G4008"]],[12,14,["G3588"]],[14,15,["G2281"]],[15,16,["G1492"]],[16,17,["G3754"]],[17,19,["G2258"]],[19,20,["G3756"]],[20,21,["G243"]],[21,22,["G4142"]],[22,23,["G1563"]],[23,24,["G1508"]],[24,25,["G1565"]],[25,26,["G1520"]],[26,27,["G1519","G3739"]],[27,28,["G848"]],[28,29,["G3101"]],[29,31,["G1684"]],[31,32,["G2532"]],[32,33,["G3754"]],[33,34,["G2424"]],[34,37,["G4897","G3756"]],[37,38,["G846"]],[38,39,["G3101"]],[39,40,["G1519"]],[40,41,["G3588"]],[41,42,["G4142"]],[42,43,["G235"]],[43,45,["G846"]],[45,46,["G3101"]],[46,49,["G565"]],[49,50,["G3441"]]]},{"k":26280,"v":[[0,1,["G1161"]],[1,3,["G2064"]],[3,4,["G243"]],[4,5,["G4142"]],[5,6,["G1537"]],[6,7,["G5085"]],[7,9,["G1451"]],[9,10,["G3588"]],[10,11,["G5117"]],[11,12,["G3699"]],[12,15,["G5315"]],[15,16,["G740"]],[16,19,["G3588"]],[19,20,["G2962"]],[20,23,["G2168"]]]},{"k":26281,"v":[[0,1,["G3753"]],[1,2,["G3588"]],[2,3,["G3793"]],[3,4,["G3767"]],[4,5,["G1492"]],[5,6,["G3754"]],[6,7,["G2424"]],[7,8,["G2076"]],[8,9,["G3756"]],[9,10,["G1563"]],[10,11,["G3761"]],[11,12,["G846"]],[12,13,["G3101"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G1684"]],[16,17,["G1519","G4143"]],[17,18,["G2532"]],[18,19,["G2064"]],[19,20,["G1519"]],[20,21,["G2584"]],[21,23,["G2212"]],[23,24,["G2424"]]]},{"k":26282,"v":[[0,1,["G2532"]],[1,5,["G2147"]],[5,6,["G846"]],[6,10,["G4008"]],[10,12,["G3588"]],[12,13,["G2281"]],[13,15,["G2036"]],[15,17,["G846"]],[17,18,["G4461"]],[18,19,["G4219"]],[19,20,["G1096"]],[20,22,["G5602"]]]},{"k":26283,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G2532"]],[4,5,["G2036"]],[5,6,["G281"]],[6,7,["G281"]],[7,9,["G3004"]],[9,11,["G5213"]],[11,13,["G2212"]],[13,14,["G3165"]],[14,15,["G3756"]],[15,16,["G3754"]],[16,18,["G1492"]],[18,20,["G4592"]],[20,21,["G235"]],[21,22,["G3754"]],[22,25,["G5315"]],[25,26,["G1537"]],[26,27,["G3588"]],[27,28,["G740"]],[28,29,["G2532"]],[29,31,["G5526"]]]},{"k":26284,"v":[[0,1,["G2038"]],[1,2,["G3361"]],[2,4,["G3588"]],[4,5,["G1035"]],[5,7,["G622"]],[7,8,["G235"]],[8,11,["G1035"]],[11,13,["G3306"]],[13,14,["G1519"]],[14,15,["G166"]],[15,16,["G2222"]],[16,17,["G3739"]],[17,18,["G3588"]],[18,19,["G5207"]],[19,21,["G444"]],[21,23,["G1325"]],[23,25,["G5213"]],[25,26,["G1063"]],[26,27,["G5126"]],[27,29,["G2316"]],[29,30,["G3588"]],[30,31,["G3962"]],[31,32,["G4972"]]]},{"k":26285,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,4,["G4314"]],[4,5,["G846"]],[5,6,["G5101"]],[6,9,["G4160"]],[9,10,["G2443"]],[10,13,["G2038"]],[13,14,["G3588"]],[14,15,["G2041"]],[15,17,["G2316"]]]},{"k":26286,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G5124"]],[7,8,["G2076"]],[8,9,["G3588"]],[9,10,["G2041"]],[10,12,["G2316"]],[12,13,["G2443"]],[13,15,["G4100"]],[15,16,["G1519"]],[16,18,["G3739"]],[18,19,["G1565"]],[19,21,["G649"]]]},{"k":26287,"v":[[0,2,["G2036"]],[2,3,["G3767"]],[3,5,["G846"]],[5,6,["G5101"]],[6,7,["G4592"]],[7,8,["G4160"]],[8,9,["G4771"]],[9,10,["G3767"]],[10,11,["G2443"]],[11,14,["G1492"]],[14,15,["G2532"]],[15,16,["G4100"]],[16,17,["G4671"]],[17,18,["G5101"]],[18,21,["G2038"]]]},{"k":26288,"v":[[0,1,["G2257"]],[1,2,["G3962"]],[2,4,["G5315"]],[4,5,["G3131"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G2048"]],[8,9,["G2531"]],[9,11,["G2076"]],[11,12,["G1125"]],[12,14,["G1325"]],[14,15,["G846"]],[15,16,["G740"]],[16,17,["G1537"]],[17,18,["G3772"]],[18,20,["G5315"]]]},{"k":26289,"v":[[0,1,["G3767"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G281"]],[6,7,["G281"]],[7,9,["G3004"]],[9,11,["G5213"]],[11,12,["G3475"]],[12,13,["G1325"]],[13,14,["G5213"]],[14,15,["G3756"]],[15,17,["G740"]],[17,18,["G1537"]],[18,19,["G3772"]],[19,20,["G235"]],[20,21,["G3450"]],[21,22,["G3962"]],[22,23,["G1325"]],[23,24,["G5213"]],[24,25,["G3588"]],[25,26,["G228"]],[26,27,["G740"]],[27,28,["G1537"]],[28,29,["G3772"]]]},{"k":26290,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G740"]],[3,5,["G2316"]],[5,6,["G2076"]],[6,10,["G2597"]],[10,11,["G1537"]],[11,12,["G3772"]],[12,13,["G2532"]],[13,14,["G1325"]],[14,15,["G2222"]],[15,17,["G3588"]],[17,18,["G2889"]]]},{"k":26291,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,4,["G4314"]],[4,5,["G846"]],[5,6,["G2962"]],[6,7,["G3842"]],[7,8,["G1325"]],[8,9,["G2254"]],[9,10,["G5126"]],[10,11,["G740"]]]},{"k":26292,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G1473"]],[6,7,["G1510"]],[7,8,["G3588"]],[8,9,["G740"]],[9,11,["G2222"]],[11,14,["G2064"]],[14,15,["G4314"]],[15,16,["G3165"]],[16,18,["G3364"]],[18,19,["G3983"]],[19,20,["G2532"]],[20,23,["G4100"]],[23,24,["G1519"]],[24,25,["G1691"]],[25,27,["G3364","G4455"]],[27,28,["G1372"]]]},{"k":26293,"v":[[0,1,["G235"]],[1,3,["G2036"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,8,["G2532"]],[8,10,["G3708"]],[10,11,["G3165"]],[11,12,["G2532"]],[12,13,["G4100"]],[13,14,["G3756"]]]},{"k":26294,"v":[[0,1,["G3956"]],[1,2,["G3739"]],[2,3,["G3588"]],[3,4,["G3962"]],[4,5,["G1325"]],[5,6,["G3427"]],[6,8,["G2240"]],[8,9,["G4314"]],[9,10,["G1691"]],[10,11,["G2532"]],[11,14,["G2064"]],[14,15,["G4314"]],[15,16,["G3165"]],[16,21,["G3364"]],[21,22,["G1544"]],[22,23,["G1854"]]]},{"k":26295,"v":[[0,1,["G3754"]],[1,4,["G2597"]],[4,5,["G1537"]],[5,6,["G3772"]],[6,7,["G3756"]],[7,8,["G2443"]],[8,9,["G4160"]],[9,11,["G1699"]],[11,12,["G2307"]],[12,13,["G235"]],[13,14,["G3588"]],[14,15,["G2307"]],[15,19,["G3992"]],[19,20,["G3165"]]]},{"k":26296,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G3962"]],[5,6,["G2307"]],[6,9,["G3992"]],[9,10,["G3165"]],[10,11,["G2443"]],[11,13,["G3956"]],[13,14,["G3739"]],[14,17,["G1325"]],[17,18,["G3427"]],[18,20,["(G3361)"]],[20,21,["G622"]],[21,22,["G1537","G846"]],[22,23,["G235"]],[23,28,["G450","G846"]],[28,29,["G1722"]],[29,30,["G3588"]],[30,31,["G2078"]],[31,32,["G2250"]]]},{"k":26297,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G2307"]],[5,9,["G3992"]],[9,10,["G3165"]],[10,11,["G2443"]],[11,13,["G3956"]],[13,15,["G2334"]],[15,16,["G3588"]],[16,17,["G5207"]],[17,18,["G2532"]],[18,19,["G4100"]],[19,20,["G1519"]],[20,21,["G846"]],[21,23,["G2192"]],[23,24,["G166"]],[24,25,["G2222"]],[25,26,["G2532"]],[26,27,["G1473"]],[27,31,["G450","G846"]],[31,33,["G3588"]],[33,34,["G2078"]],[34,35,["G2250"]]]},{"k":26298,"v":[[0,1,["G3588"]],[1,2,["G2453"]],[2,3,["G3767"]],[3,4,["G1111"]],[4,5,["G4012"]],[5,6,["G846"]],[6,7,["G3754"]],[7,9,["G2036"]],[9,10,["G1473"]],[10,11,["G1510"]],[11,12,["G3588"]],[12,13,["G740"]],[13,16,["G2597"]],[16,17,["G1537"]],[17,18,["G3772"]]]},{"k":26299,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,4,["G2076"]],[4,5,["G3756"]],[5,6,["G3778"]],[6,7,["G2424"]],[7,8,["G3588"]],[8,9,["G5207"]],[9,11,["G2501"]],[11,12,["G3739"]],[12,13,["G3962"]],[13,14,["G2532"]],[14,15,["G3384"]],[15,16,["G2249"]],[16,17,["G1492"]],[17,18,["G4459"]],[18,21,["G3767"]],[21,23,["G3778"]],[23,24,["G3004"]],[24,27,["G2597"]],[27,28,["G1537"]],[28,29,["G3772"]]]},{"k":26300,"v":[[0,1,["G2424"]],[1,2,["G3767"]],[2,3,["G611"]],[3,4,["G2532"]],[4,5,["G2036"]],[5,7,["G846"]],[7,8,["G1111"]],[8,9,["G3361"]],[9,10,["G3326"]],[10,11,["G240"]]]},{"k":26301,"v":[[0,2,["G3762"]],[2,3,["G1410"]],[3,4,["G2064"]],[4,5,["G4314"]],[5,6,["G3165"]],[6,7,["G3362"]],[7,8,["G3588"]],[8,9,["G3962"]],[9,12,["G3992"]],[12,13,["G3165"]],[13,14,["G1670"]],[14,15,["G846"]],[15,16,["G2532"]],[16,17,["G1473"]],[17,21,["G450","G846"]],[21,23,["G3588"]],[23,24,["G2078"]],[24,25,["G2250"]]]},{"k":26302,"v":[[0,2,["G2076"]],[2,3,["G1125"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G4396"]],[6,7,["G2532"]],[7,10,["G2071"]],[10,11,["G3956"]],[11,12,["G1318"]],[12,14,["G2316"]],[14,16,["G3956"]],[16,17,["G3767"]],[17,20,["G191"]],[20,21,["G2532"]],[21,23,["G3129"]],[23,24,["G3844"]],[24,25,["G3588"]],[25,26,["G3962"]],[26,27,["G2064"]],[27,28,["G4314"]],[28,29,["G3165"]]]},{"k":26303,"v":[[0,1,["G3756"]],[1,2,["G3754"]],[2,4,["G5100"]],[4,6,["G3708"]],[6,7,["G3588"]],[7,8,["G3962"]],[8,9,["G1508"]],[9,12,["G5607"]],[12,13,["G3844"]],[13,14,["G2316"]],[14,15,["G3778"]],[15,17,["G3708"]],[17,18,["G3588"]],[18,19,["G3962"]]]},{"k":26304,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,9,["G4100"]],[9,10,["G1519"]],[10,11,["G1691"]],[11,12,["G2192"]],[12,13,["G166"]],[13,14,["G2222"]]]},{"k":26305,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,4,["G740"]],[4,6,["G2222"]]]},{"k":26306,"v":[[0,1,["G5216"]],[1,2,["G3962"]],[2,4,["G5315"]],[4,5,["G3131"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G2048"]],[8,9,["G2532"]],[9,11,["G599"]]]},{"k":26307,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,3,["G3588"]],[3,4,["G740"]],[4,7,["G2597"]],[7,8,["G1537"]],[8,9,["G3772"]],[9,10,["G2443"]],[10,12,["G5100"]],[12,14,["G5315"]],[14,15,["G1537","G846"]],[15,16,["G2532"]],[16,17,["G3361"]],[17,18,["G599"]]]},{"k":26308,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,3,["G3588"]],[3,4,["G2198"]],[4,5,["G740"]],[5,8,["G2597"]],[8,9,["G1537"]],[9,10,["G3772"]],[10,11,["G1437"]],[11,13,["G5100"]],[13,14,["G5315"]],[14,15,["G1537"]],[15,16,["G5127"]],[16,17,["G740"]],[17,20,["G2198"]],[20,22,["G1519","G165"]],[22,23,["G1161"]],[23,24,["G3588"]],[24,25,["G740"]],[25,26,["G3739"]],[26,27,["G1473"]],[27,29,["G1325"]],[29,30,["G2076"]],[30,31,["G3450"]],[31,32,["G4561"]],[32,33,["G3739"]],[33,34,["G1473"]],[34,36,["G1325"]],[36,37,["G5228"]],[37,38,["G3588"]],[38,39,["G2222"]],[39,41,["G3588"]],[41,42,["G2889"]]]},{"k":26309,"v":[[0,1,["G3588"]],[1,2,["G2453"]],[2,3,["G3767"]],[3,4,["G3164"]],[4,5,["G4314"]],[5,6,["G240"]],[6,7,["G3004"]],[7,8,["G4459"]],[8,9,["G1410"]],[9,11,["G3778"]],[11,12,["G1325"]],[12,13,["G2254"]],[13,15,["G4561"]],[15,17,["G5315"]]]},{"k":26310,"v":[[0,1,["G3767"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G281"]],[6,7,["G281"]],[7,9,["G3004"]],[9,11,["G5213"]],[11,12,["G3362"]],[12,14,["G5315"]],[14,15,["G3588"]],[15,16,["G4561"]],[16,18,["G3588"]],[18,19,["G5207"]],[19,21,["G444"]],[21,22,["G2532"]],[22,23,["G4095"]],[23,24,["G846"]],[24,25,["G129"]],[25,27,["G2192"]],[27,28,["G3756"]],[28,29,["G2222"]],[29,30,["G1722"]],[30,31,["G1438"]]]},{"k":26311,"v":[[0,2,["G5176"]],[2,3,["G3450"]],[3,4,["G4561"]],[4,5,["G2532"]],[5,6,["G4095"]],[6,7,["G3450"]],[7,8,["G129"]],[8,9,["G2192"]],[9,10,["G166"]],[10,11,["G2222"]],[11,12,["G2532"]],[12,13,["G1473"]],[13,17,["G450","G846"]],[17,19,["G3588"]],[19,20,["G2078"]],[20,21,["G2250"]]]},{"k":26312,"v":[[0,1,["G1063"]],[1,2,["G3450"]],[2,3,["G4561"]],[3,4,["G2076"]],[4,5,["G1035"]],[5,6,["G230"]],[6,7,["G2532"]],[7,8,["G3450"]],[8,9,["G129"]],[9,10,["G2076"]],[10,11,["G4213"]],[11,12,["G230"]]]},{"k":26313,"v":[[0,3,["G5176"]],[3,4,["G3450"]],[4,5,["G4561"]],[5,6,["G2532"]],[6,7,["G4095"]],[7,8,["G3450"]],[8,9,["G129"]],[9,10,["G3306"]],[10,11,["G1722"]],[11,12,["G1698"]],[12,14,["G2504"]],[14,15,["G1722"]],[15,16,["G846"]]]},{"k":26314,"v":[[0,1,["G2531"]],[1,2,["G3588"]],[2,3,["G2198"]],[3,4,["G3962"]],[4,6,["G649"]],[6,7,["G3165"]],[7,9,["G2504"]],[9,10,["G2198"]],[10,11,["G1223"]],[11,12,["G3588"]],[12,13,["G3962"]],[13,14,["G2532"]],[14,17,["G5176"]],[17,18,["G3165"]],[18,20,["G2548"]],[20,22,["G2198"]],[22,23,["G1223"]],[23,24,["G1691"]]]},{"k":26315,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,4,["G740"]],[4,7,["G2597"]],[7,8,["G1537"]],[8,9,["G3772"]],[9,10,["G3756"]],[10,11,["G2531"]],[11,12,["G5216"]],[12,13,["G3962"]],[13,15,["G5315"]],[15,16,["G3131"]],[16,17,["G2532"]],[17,19,["G599"]],[19,22,["G5176"]],[22,24,["G5126"]],[24,25,["G740"]],[25,27,["G2198"]],[27,29,["G1519","G165"]]]},{"k":26316,"v":[[0,2,["G5023"]],[2,3,["G2036"]],[3,5,["G1722"]],[5,7,["G4864"]],[7,10,["G1321"]],[10,11,["G1722"]],[11,12,["G2584"]]]},{"k":26317,"v":[[0,1,["G4183"]],[1,2,["G3767"]],[2,3,["G1537"]],[3,4,["G846"]],[4,5,["G3101"]],[5,9,["G191"]],[9,11,["G2036"]],[11,12,["G3778"]],[12,13,["G2076"]],[13,15,["G4642"]],[15,16,["G3056"]],[16,17,["G5101"]],[17,18,["G1410"]],[18,19,["G191"]],[19,20,["G846"]]]},{"k":26318,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G1492"]],[3,4,["G1722"]],[4,5,["G1438"]],[5,6,["G3754"]],[6,7,["G846"]],[7,8,["G3101"]],[8,9,["G1111"]],[9,10,["G4012"]],[10,11,["G5127"]],[11,13,["G2036"]],[13,15,["G846"]],[15,17,["G5124"]],[17,18,["G4624"]],[18,19,["G5209"]]]},{"k":26319,"v":[[0,2,["G3767"]],[2,3,["G1437"]],[3,6,["G2334"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G444"]],[10,12,["G305"]],[12,13,["G3699"]],[13,15,["G2258"]],[15,16,["G4386"]]]},{"k":26320,"v":[[0,2,["G2076"]],[2,3,["G3588"]],[3,4,["G4151"]],[4,6,["G2227"]],[6,7,["G3588"]],[7,8,["G4561","(G3756)"]],[8,9,["G5623"]],[9,10,["G3762"]],[10,11,["G3588"]],[11,12,["G4487"]],[12,13,["G3739"]],[13,14,["G1473"]],[14,15,["G2980"]],[15,17,["G5213"]],[17,19,["G2076"]],[19,20,["G4151"]],[20,21,["G2532"]],[21,23,["G2076"]],[23,24,["G2222"]]]},{"k":26321,"v":[[0,1,["G235"]],[1,3,["G1526"]],[3,4,["G5100"]],[4,5,["G1537"]],[5,6,["G5216"]],[6,7,["G3739"]],[7,8,["G4100"]],[8,9,["G3756"]],[9,10,["G1063"]],[10,11,["G2424"]],[11,12,["G1492"]],[12,13,["G1537"]],[13,15,["G746"]],[15,16,["G5101"]],[16,18,["G1526"]],[18,20,["G4100"]],[20,21,["G3361"]],[21,22,["G2532"]],[22,23,["G5101"]],[23,24,["G2076"]],[24,25,["G3860"]],[25,26,["G846"]]]},{"k":26322,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,4,["G1223","G5124"]],[4,5,["G2046"]],[5,8,["G5213"]],[8,9,["G3754"]],[9,11,["G3762"]],[11,12,["G1410"]],[12,13,["G2064"]],[13,14,["G4314"]],[14,15,["G3165"]],[15,16,["G3362"]],[16,18,["G5600"]],[18,19,["G1325"]],[19,21,["G846"]],[21,22,["G1537"]],[22,23,["G3450"]],[23,24,["G3962"]]]},{"k":26323,"v":[[0,1,["G1537"]],[1,2,["G5127"]],[2,4,["G4183"]],[4,6,["G846"]],[6,7,["G3101"]],[7,8,["G565"]],[8,9,["G1519","G3694"]],[9,10,["G2532"]],[10,11,["G4043"]],[11,13,["G3765"]],[13,14,["G3326"]],[14,15,["G846"]]]},{"k":26324,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,5,["G3588"]],[5,6,["G1427"]],[6,7,["G2309","(G3361)"]],[7,8,["G5210"]],[8,9,["G2532"]],[9,11,["G5217"]]]},{"k":26325,"v":[[0,1,["G3767"]],[1,2,["G4613"]],[2,3,["G4074"]],[3,4,["G611"]],[4,5,["G846"]],[5,6,["G2962"]],[6,7,["G4314"]],[7,8,["G5101"]],[8,11,["G565"]],[11,13,["G2192"]],[13,15,["G4487"]],[15,17,["G166"]],[17,18,["G2222"]]]},{"k":26326,"v":[[0,1,["G2532"]],[1,2,["G2249"]],[2,3,["G4100"]],[3,4,["G2532"]],[4,6,["G1097"]],[6,7,["G3754"]],[7,8,["G4771"]],[8,9,["G1488"]],[9,11,["G5547"]],[11,12,["G3588"]],[12,13,["G5207"]],[13,15,["G3588"]],[15,16,["G2198"]],[16,17,["G2316"]]]},{"k":26327,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,5,["G3756"]],[5,6,["G1473"]],[6,7,["G1586"]],[7,8,["G5209"]],[8,9,["G1427"]],[9,10,["G2532"]],[10,11,["G1520"]],[11,12,["G1537"]],[12,13,["G5216"]],[13,14,["G2076"]],[14,16,["G1228"]]]},{"k":26328,"v":[[0,0,["(G1161)"]],[0,2,["G3004"]],[2,4,["G2455"]],[4,5,["G2469"]],[5,9,["G4613"]],[9,10,["G1063"]],[10,11,["G3778"]],[11,15,["G3195"]],[15,16,["G3860"]],[16,17,["G846"]],[17,18,["G5607"]],[18,19,["G1520"]],[19,20,["G1537"]],[20,21,["G3588"]],[21,22,["G1427"]]]},{"k":26329,"v":[[0,0,["(G2532)"]],[0,1,["G3326"]],[1,3,["G5023"]],[3,4,["G2424"]],[4,5,["G4043"]],[5,6,["G1722"]],[6,7,["G1056"]],[7,8,["G1063"]],[8,10,["G2309"]],[10,11,["G3756"]],[11,12,["G4043"]],[12,13,["G1722"]],[13,14,["G2449"]],[14,15,["G3754"]],[15,16,["G3588"]],[16,17,["G2453"]],[17,18,["G2212"]],[18,20,["G615"]],[20,21,["G846"]]]},{"k":26330,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,4,["G1859"]],[4,6,["G4634"]],[6,7,["G2258"]],[7,9,["G1451"]]]},{"k":26331,"v":[[0,1,["G846"]],[1,2,["G80"]],[2,3,["G3767"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G3327"]],[7,8,["G1782"]],[8,9,["G2532"]],[9,10,["G5217"]],[10,11,["G1519"]],[11,12,["G2449"]],[12,13,["G2443"]],[13,14,["G4675"]],[14,15,["G3101"]],[15,16,["G2532"]],[16,18,["G2334"]],[18,19,["G3588"]],[19,20,["G2041"]],[20,21,["G3739"]],[21,23,["G4160"]]]},{"k":26332,"v":[[0,1,["G1063"]],[1,5,["G3762"]],[5,7,["G4160"]],[7,9,["G5100"]],[9,10,["G1722"]],[10,11,["G2927"]],[11,12,["G2532"]],[12,13,["G846"]],[13,15,["G2212"]],[15,17,["G1511"]],[17,19,["G1722","G3954"]],[19,20,["G1487"]],[20,22,["G4160"]],[22,24,["G5023"]],[24,25,["G5319"]],[25,26,["G4572"]],[26,28,["G3588"]],[28,29,["G2889"]]]},{"k":26333,"v":[[0,1,["G1063"]],[1,2,["G3761"]],[2,4,["G846"]],[4,5,["G80"]],[5,6,["G4100"]],[6,7,["G1519"]],[7,8,["G846"]]]},{"k":26334,"v":[[0,1,["G3767"]],[1,2,["G2424"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G1699"]],[6,7,["G2540"]],[7,10,["G3768"]],[10,11,["G3918"]],[11,12,["G1161"]],[12,13,["G5212"]],[13,14,["G2540"]],[14,15,["G2076"]],[15,16,["G3842"]],[16,17,["G2092"]]]},{"k":26335,"v":[[0,1,["G3588"]],[1,2,["G2889"]],[2,3,["G1410","G3756"]],[3,4,["G3404"]],[4,5,["G5209"]],[5,6,["G1161"]],[6,7,["G1691"]],[7,9,["G3404"]],[9,10,["G3754"]],[10,11,["G1473"]],[11,12,["G3140"]],[12,13,["G4012"]],[13,14,["G846"]],[14,15,["G3754"]],[15,16,["G3588"]],[16,17,["G2041"]],[17,18,["G846"]],[18,19,["G2076"]],[19,20,["G4190"]]]},{"k":26336,"v":[[0,3,["G305","G5210"]],[3,4,["G1519"]],[4,5,["G5026"]],[5,6,["G1859"]],[6,7,["G1473"]],[7,11,["G305","G3768"]],[11,12,["G1519"]],[12,13,["G5026"]],[13,14,["G1859"]],[14,15,["G3754"]],[15,16,["G1699"]],[16,17,["G2540"]],[17,20,["G3768"]],[20,22,["G4137"]]]},{"k":26337,"v":[[0,1,["G1161"]],[1,4,["G2036"]],[4,6,["G5023"]],[6,8,["G846"]],[8,10,["G3306"]],[10,12,["G1722"]],[12,13,["G1056"]]]},{"k":26338,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G846"]],[3,4,["G80"]],[4,7,["G305"]],[7,8,["G5119"]],[8,12,["G305","G846","G2532"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G1859"]],[15,16,["G3756"]],[16,17,["G5320"]],[17,18,["G235"]],[18,21,["G5613"]],[21,22,["G1722"]],[22,23,["G2927"]]]},{"k":26339,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,4,["G2212"]],[4,5,["G846"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G1859"]],[8,9,["G2532"]],[9,10,["G3004"]],[10,11,["G4226"]],[11,12,["G2076"]],[12,13,["G1565"]]]},{"k":26340,"v":[[0,1,["G2532"]],[1,3,["G2258"]],[3,4,["G4183"]],[4,5,["G1112"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G3793"]],[8,9,["G4012"]],[9,10,["G846"]],[10,11,["G1063"]],[11,12,["G3588","G3303"]],[12,13,["G3004"]],[13,15,["G2076"]],[15,18,["G18","(G1161)"]],[18,19,["G243"]],[19,20,["G3004"]],[20,21,["G3756"]],[21,22,["G235"]],[22,24,["G4105"]],[24,25,["G3588"]],[25,26,["G3793"]]]},{"k":26341,"v":[[0,1,["G3305"]],[1,3,["G3762"]],[3,4,["G2980"]],[4,5,["G3954"]],[5,6,["G4012"]],[6,7,["G846"]],[7,8,["G1223"]],[8,9,["G5401"]],[9,11,["G3588"]],[11,12,["G2453"]]]},{"k":26342,"v":[[0,1,["G1161"]],[1,2,["G2235"]],[2,4,["G3322"]],[4,6,["G3588"]],[6,7,["G1859"]],[7,8,["G2424"]],[8,10,["G305"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G2411"]],[13,14,["G2532"]],[14,15,["G1321"]]]},{"k":26343,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,4,["G2296"]],[4,5,["G3004"]],[5,6,["G4459"]],[6,7,["G1492"]],[7,9,["G3778"]],[9,10,["G1121"]],[10,12,["G3361"]],[12,13,["G3129"]]]},{"k":26344,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G2532"]],[4,5,["G2036"]],[5,6,["G1699"]],[6,7,["G1322"]],[7,8,["G2076"]],[8,9,["G3756"]],[9,10,["G1699"]],[10,11,["G235"]],[11,14,["G3992"]],[14,15,["G3165"]]]},{"k":26345,"v":[[0,1,["G1437"]],[1,3,["G5100"]],[3,4,["G2309"]],[4,5,["G4160"]],[5,6,["G846"]],[6,7,["G2307"]],[7,10,["G1097"]],[10,11,["G4012"]],[11,12,["G3588"]],[12,13,["G1322"]],[13,14,["G4220"]],[14,16,["G2076"]],[16,17,["G1537"]],[17,18,["G2316"]],[18,19,["G2228"]],[19,21,["G1473"]],[21,22,["G2980"]],[22,23,["G575"]],[23,24,["G1683"]]]},{"k":26346,"v":[[0,3,["G2980"]],[3,4,["G575"]],[4,5,["G1438"]],[5,6,["G2212"]],[6,8,["G2398"]],[8,9,["G1391"]],[9,10,["G1161"]],[10,13,["G2212"]],[13,15,["G1391"]],[15,17,["G3992"]],[17,18,["G846"]],[18,20,["G3778"]],[20,21,["G2076"]],[21,22,["G227"]],[22,23,["G2532"]],[23,24,["G3756"]],[24,25,["G93"]],[25,26,["G2076"]],[26,27,["G1722"]],[27,28,["G846"]]]},{"k":26347,"v":[[0,2,["G3756"]],[2,3,["G3475"]],[3,4,["G1325"]],[4,5,["G5213"]],[5,6,["G3588"]],[6,7,["G3551"]],[7,8,["G2532"]],[8,10,["G3762"]],[10,11,["G1537"]],[11,12,["G5216"]],[12,13,["G4160"]],[13,14,["G3588"]],[14,15,["G3551"]],[15,16,["G5101"]],[16,19,["G2212"]],[19,21,["G615"]],[21,22,["G3165"]]]},{"k":26348,"v":[[0,1,["G3588"]],[1,2,["G3793"]],[2,3,["G611"]],[3,4,["G2532"]],[4,5,["G2036"]],[5,7,["G2192"]],[7,9,["G1140"]],[9,10,["G5101"]],[10,12,["G2212"]],[12,14,["G615"]],[14,15,["G4571"]]]},{"k":26349,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,9,["G4160"]],[9,10,["G1520"]],[10,11,["G2041"]],[11,12,["G2532"]],[12,14,["G3956"]],[14,15,["G2296"]]]},{"k":26350,"v":[[0,1,["G3475"]],[1,2,["G1223","G5124"]],[2,3,["G1325"]],[3,5,["G5213"]],[5,6,["G4061"]],[6,7,["G3756"]],[7,8,["G3754"]],[8,10,["G2076"]],[10,11,["G1537"]],[11,12,["G3475"]],[12,13,["G235"]],[13,14,["G1537"]],[14,15,["G3588"]],[15,16,["G3962"]],[16,17,["G2532"]],[17,19,["G1722"]],[19,22,["G4521"]],[22,23,["G4059"]],[23,25,["G444"]]]},{"k":26351,"v":[[0,1,["G1487"]],[1,3,["G444"]],[3,4,["G1722"]],[4,7,["G4521"]],[7,8,["G2983"]],[8,9,["G4061"]],[9,10,["G2443"]],[10,11,["G3588"]],[11,12,["G3551"]],[12,14,["G3475"]],[14,16,["G3361"]],[16,18,["G3089"]],[18,21,["G5520"]],[21,23,["G1698"]],[23,24,["G3754"]],[24,27,["G4160"]],[27,29,["G444"]],[29,31,["G3650"]],[31,32,["G5199"]],[32,33,["G1722"]],[33,36,["G4521"]]]},{"k":26352,"v":[[0,1,["G2919"]],[1,2,["G3361"]],[2,3,["G2596"]],[3,6,["G3799"]],[6,7,["G235"]],[7,8,["G2919"]],[8,9,["G1342"]],[9,10,["G2920"]]]},{"k":26353,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G5100"]],[3,4,["G1537"]],[4,7,["G2415"]],[7,8,["G2076"]],[8,9,["G3756"]],[9,10,["G3778"]],[10,12,["G3739"]],[12,14,["G2212"]],[14,16,["G615"]]]},{"k":26354,"v":[[0,1,["G2532"]],[1,2,["G2396"]],[2,4,["G2980"]],[4,5,["G3954"]],[5,6,["G2532"]],[6,8,["G3004"]],[8,9,["G3762"]],[9,11,["G846"]],[11,12,["(G3379)"]],[12,13,["G3588"]],[13,14,["G758"]],[14,15,["G1097"]],[15,16,["G230"]],[16,17,["G3754"]],[17,18,["G3778"]],[18,19,["G2076"]],[19,20,["G3588"]],[20,21,["G230"]],[21,22,["G5547"]]]},{"k":26355,"v":[[0,1,["G235"]],[1,3,["G1492"]],[3,5,["G5126"]],[5,6,["G4159"]],[6,8,["G2076"]],[8,9,["G1161"]],[9,10,["G3752"]],[10,11,["G5547"]],[11,12,["G2064"]],[12,14,["G3762"]],[14,15,["G1097"]],[15,16,["G4159"]],[16,18,["G2076"]]]},{"k":26356,"v":[[0,1,["G3767"]],[1,2,["G2896"]],[2,3,["G2424"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G2411"]],[6,9,["G1321","(G2532)"]],[9,10,["G3004"]],[10,14,["G2504","G1492"]],[14,15,["G2532"]],[15,17,["G1492"]],[17,18,["G4159"]],[18,20,["G1510"]],[20,21,["G2532"]],[21,24,["G3756"]],[24,25,["G2064"]],[25,26,["G575"]],[26,27,["G1683"]],[27,28,["G235"]],[28,31,["G3992"]],[31,32,["G3165"]],[32,33,["G2076"]],[33,34,["G228"]],[34,35,["G3739"]],[35,36,["G5210"]],[36,37,["G1492"]],[37,38,["G3756"]]]},{"k":26357,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G1492"]],[3,4,["G846"]],[4,5,["G3754"]],[5,7,["G1510"]],[7,8,["G3844"]],[8,9,["G846"]],[9,11,["G2548"]],[11,13,["G649"]],[13,14,["G3165"]]]},{"k":26358,"v":[[0,1,["G3767"]],[1,3,["G2212"]],[3,5,["G4084"]],[5,6,["G846"]],[6,7,["G2532"]],[7,9,["G3762"]],[9,10,["G1911"]],[10,11,["G5495"]],[11,12,["G1909"]],[12,13,["G846"]],[13,14,["G3754"]],[14,15,["G846"]],[15,16,["G5610"]],[16,19,["G3768"]],[19,20,["G2064"]]]},{"k":26359,"v":[[0,1,["G1161"]],[1,2,["G4183"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G3793"]],[5,6,["G4100"]],[6,7,["G1519"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G3004"]],[10,11,["G3752"]],[11,12,["G5547"]],[12,13,["G2064"]],[13,15,["(G3385)"]],[15,16,["G4160"]],[16,17,["G4119"]],[17,18,["G4592"]],[18,20,["G5130"]],[20,21,["G3739"]],[21,22,["G3778"]],[22,25,["G4160"]]]},{"k":26360,"v":[[0,1,["G3588"]],[1,2,["G5330"]],[2,3,["G191"]],[3,5,["G3588"]],[5,6,["G3793"]],[6,7,["G1111"]],[7,9,["G5023"]],[9,10,["G4012"]],[10,11,["G846"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G5330"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,18,["G749"]],[18,19,["G649"]],[19,20,["G5257"]],[20,21,["G2443"]],[21,22,["G4084"]],[22,23,["G846"]]]},{"k":26361,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,5,["G846"]],[5,6,["G2089"]],[6,8,["G3398"]],[8,9,["G5550"]],[9,10,["G1510"]],[10,12,["G3326"]],[12,13,["G5216"]],[13,14,["G2532"]],[14,17,["G5217"]],[17,18,["G4314"]],[18,21,["G3992"]],[21,22,["G3165"]]]},{"k":26362,"v":[[0,3,["G2212"]],[3,4,["G3165"]],[4,5,["G2532"]],[5,7,["G3756"]],[7,8,["G2147"]],[8,10,["G2532"]],[10,11,["G3699"]],[11,12,["G1473"]],[12,13,["G1510"]],[13,15,["G5210"]],[15,16,["G1410","G3756"]],[16,17,["G2064"]]]},{"k":26363,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,4,["G2453"]],[4,5,["G4314"]],[5,6,["G1438"]],[6,7,["G4226"]],[7,8,["G3195"]],[8,9,["G3778"]],[9,10,["G4198"]],[10,11,["G3754"]],[11,12,["G2249"]],[12,14,["G3756"]],[14,15,["G2147"]],[15,16,["G846"]],[16,17,["G3195"]],[17,18,["(G3361)"]],[18,19,["G4198"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G1290"]],[22,24,["G3588"]],[24,25,["G1672"]],[25,26,["G2532"]],[26,27,["G1321"]],[27,28,["G3588"]],[28,29,["G1672"]]]},{"k":26364,"v":[[0,1,["G5101"]],[1,4,["G3056"]],[4,5,["G2076"]],[5,6,["G3778"]],[6,7,["G3739"]],[7,9,["G2036"]],[9,12,["G2212"]],[12,13,["G3165"]],[13,14,["G2532"]],[14,16,["G3756"]],[16,17,["G2147"]],[17,19,["G2532"]],[19,20,["G3699"]],[20,21,["G1473"]],[21,22,["G1510"]],[22,24,["G5210"]],[24,25,["G1410","G3756"]],[25,26,["G2064"]]]},{"k":26365,"v":[[0,1,["G1722"]],[1,2,["G3588"]],[2,3,["G2078"]],[3,4,["G2250"]],[4,6,["G3173"]],[6,9,["G3588"]],[9,10,["G1859"]],[10,11,["G2424"]],[11,12,["G2476"]],[12,13,["G2532"]],[13,14,["G2896"]],[14,15,["G3004"]],[15,16,["G1437"]],[16,18,["G5100"]],[18,19,["G1372"]],[19,22,["G2064"]],[22,23,["G4314"]],[23,24,["G3165"]],[24,25,["G2532"]],[25,26,["G4095"]]]},{"k":26366,"v":[[0,3,["G4100"]],[3,4,["G1519"]],[4,5,["G1691"]],[5,6,["G2531"]],[6,7,["G3588"]],[7,8,["G1124"]],[8,10,["G2036"]],[10,12,["G1537"]],[12,13,["G846"]],[13,14,["G2836"]],[14,16,["G4482"]],[16,17,["G4215"]],[17,19,["G2198"]],[19,20,["G5204"]]]},{"k":26367,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,3,["G2036"]],[3,5,["G4012"]],[5,6,["G3588"]],[6,7,["G4151"]],[7,8,["G3739"]],[8,11,["G4100"]],[11,12,["G1519"]],[12,13,["G846"]],[13,14,["G3195"]],[14,15,["G2983"]],[15,16,["G1063"]],[16,18,["G40"]],[18,19,["G4151"]],[19,20,["G2258"]],[20,22,["G3768"]],[22,24,["G3754"]],[24,26,["G2424"]],[26,29,["G3764"]],[29,30,["G1392"]]]},{"k":26368,"v":[[0,1,["G4183"]],[1,2,["G1537"]],[2,3,["G3588"]],[3,4,["G3793"]],[4,5,["G3767"]],[5,8,["G191"]],[8,10,["G3056"]],[10,11,["G3004"]],[11,14,["G230"]],[14,15,["G3778"]],[15,16,["G2076"]],[16,17,["G3588"]],[17,18,["G4396"]]]},{"k":26369,"v":[[0,1,["G243"]],[1,2,["G3004"]],[2,3,["G3778"]],[3,4,["G2076"]],[4,5,["G3588"]],[5,6,["G5547"]],[6,7,["G1161"]],[7,8,["G243"]],[8,9,["G3004"]],[9,10,["(G1063","G3361)"]],[10,11,["G5547"]],[11,12,["G2064"]],[12,14,["G1537"]],[14,15,["G1056"]]]},{"k":26370,"v":[[0,2,["G3780"]],[2,3,["G3588"]],[3,4,["G1124"]],[4,5,["G2036"]],[5,6,["G3754"]],[6,7,["G5547"]],[7,8,["G2064"]],[8,9,["G1537"]],[9,10,["G3588"]],[10,11,["G4690"]],[11,13,["G1138"]],[13,14,["G2532"]],[14,16,["G575"]],[16,17,["G3588"]],[17,18,["G2968"]],[18,20,["G965"]],[20,21,["G3699"]],[21,22,["G1138"]],[22,23,["G2258"]]]},{"k":26371,"v":[[0,1,["G3767"]],[1,3,["G1096"]],[3,5,["G4978"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G3793"]],[8,9,["G1223"]],[9,11,["G846"]]]},{"k":26372,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G1537"]],[3,4,["G846"]],[4,5,["G2309"]],[5,7,["G4084"]],[7,8,["G846"]],[8,9,["G235"]],[9,11,["G3762"]],[11,12,["G1911"]],[12,13,["G5495"]],[13,14,["G1909"]],[14,15,["G846"]]]},{"k":26373,"v":[[0,1,["G3767"]],[1,2,["G2064"]],[2,3,["G3588"]],[3,4,["G5257"]],[4,5,["G4314"]],[5,6,["G3588"]],[6,8,["G749"]],[8,9,["G2532"]],[9,10,["G5330"]],[10,11,["G2532"]],[11,12,["G1565"]],[12,13,["G2036"]],[13,15,["G846"]],[15,16,["G1302"]],[16,19,["G3756"]],[19,20,["G71"]],[20,21,["G846"]]]},{"k":26374,"v":[[0,1,["G3588"]],[1,2,["G5257"]],[2,3,["G611"]],[3,4,["G3763"]],[4,5,["G444"]],[5,6,["G2980"]],[6,7,["G5613"]],[7,8,["G3778"]],[8,9,["G444"]]]},{"k":26375,"v":[[0,1,["G3767"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G3588"]],[4,5,["G5330"]],[5,6,["(G3361)"]],[6,7,["G5210"]],[7,8,["G2532"]],[8,9,["G4105"]]]},{"k":26376,"v":[[0,2,["G3387"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G758"]],[5,6,["G2228"]],[6,7,["G1537"]],[7,8,["G3588"]],[8,9,["G5330"]],[9,10,["G4100"]],[10,11,["G1519"]],[11,12,["G846"]]]},{"k":26377,"v":[[0,1,["G235"]],[1,2,["G3778"]],[2,3,["G3793"]],[3,5,["G1097"]],[5,6,["G3361"]],[6,7,["G3588"]],[7,8,["G3551"]],[8,9,["G1526"]],[9,10,["G1944"]]]},{"k":26378,"v":[[0,1,["G3530"]],[1,2,["G3004"]],[2,3,["G4314"]],[3,4,["G846"]],[4,7,["G2064"]],[7,8,["G4314"]],[8,9,["G846"]],[9,11,["G3571"]],[11,12,["G5607"]],[12,13,["G1520"]],[13,14,["G1537"]],[14,15,["G846"]]]},{"k":26379,"v":[[0,2,["G2257"]],[2,3,["G3551","(G3361)"]],[3,4,["G2919"]],[4,6,["G444"]],[6,7,["G4386","G3362"]],[7,9,["G191"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G1097"]],[12,13,["G5101"]],[13,15,["G4160"]]]},{"k":26380,"v":[[0,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G1488","(G3361)"]],[7,8,["G4771"]],[8,9,["G2532"]],[9,10,["G1537"]],[10,11,["G1056"]],[11,12,["G2045"]],[12,13,["G2532"]],[13,14,["G1492"]],[14,15,["G3754"]],[15,17,["G1537"]],[17,18,["G1056"]],[18,19,["G1453"]],[19,20,["G3756"]],[20,21,["G4396"]]]},{"k":26381,"v":[[0,1,["G2532"]],[1,3,["G1538"]],[3,4,["G4198"]],[4,5,["G1519"]],[5,7,["G848"]],[7,8,["G3624"]]]},{"k":26382,"v":[[0,0,["(G1161)"]],[0,1,["G2424"]],[1,2,["G4198"]],[2,3,["G1519"]],[3,4,["G3588"]],[4,5,["G3735"]],[5,7,["G1636"]]]},{"k":26383,"v":[[0,1,["G1161"]],[1,5,["G3722"]],[5,7,["G3854"]],[7,8,["G3825"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G2411"]],[11,12,["G2532"]],[12,13,["G3956"]],[13,14,["G3588"]],[14,15,["G2992"]],[15,16,["G2064"]],[16,17,["G4314"]],[17,18,["G846"]],[18,19,["G2532"]],[19,22,["G2523"]],[22,24,["G1321"]],[24,25,["G846"]]]},{"k":26384,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1122"]],[3,4,["G2532"]],[4,5,["G5330"]],[5,6,["G71"]],[6,7,["G4314"]],[7,8,["G846"]],[8,10,["G1135"]],[10,11,["G2638"]],[11,12,["G1722"]],[12,13,["G3430"]],[13,14,["G2532"]],[14,18,["G2476"]],[18,19,["G846"]],[19,20,["G1722"]],[20,22,["G3319"]]]},{"k":26385,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G1320"]],[5,6,["G3778"]],[6,7,["G1135"]],[7,9,["G2638"]],[9,11,["G3431"]],[11,15,["G1888"]]]},{"k":26386,"v":[[0,1,["G1161"]],[1,2,["G3475"]],[2,3,["G1722"]],[3,4,["G3588"]],[4,5,["G3551"]],[5,6,["G1781"]],[6,7,["G2254"]],[7,9,["G5108"]],[9,12,["G3036"]],[12,13,["G3767"]],[13,14,["G5101"]],[14,15,["G3004"]],[15,16,["G4771"]]]},{"k":26387,"v":[[0,0,["(G1161)"]],[0,1,["G5124"]],[1,3,["G3004"]],[3,4,["G3985"]],[4,5,["G846"]],[5,6,["G2443"]],[6,9,["G2192"]],[9,11,["G2723"]],[11,12,["G846"]],[12,13,["G1161"]],[13,14,["G2424"]],[14,15,["G2955"]],[15,16,["G2736"]],[16,20,["G1147"]],[20,21,["G1125"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G1093"]],[24,30,[]]]},{"k":26388,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,4,["G1961"]],[4,5,["G2065"]],[5,6,["G846"]],[6,9,["G352"]],[9,12,["G2036"]],[12,13,["G4314"]],[13,14,["G846"]],[14,19,["G361"]],[19,21,["G5216"]],[21,24,["G4413"]],[24,25,["G906"]],[25,27,["G3037"]],[27,28,["G1909"]],[28,29,["G846"]]]},{"k":26389,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,4,["G2955"]],[4,5,["G2736"]],[5,7,["G1125"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G1093"]]]},{"k":26390,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,6,["(G2532)"]],[6,7,["G1651"]],[7,8,["G5259"]],[8,11,["G4893"]],[11,13,["G1831"]],[13,16,["G1527"]],[16,17,["G756"]],[17,18,["G575"]],[18,19,["G3588"]],[19,20,["G4245"]],[20,22,["G2193"]],[22,23,["G3588"]],[23,24,["G2078"]],[24,25,["G2532"]],[25,26,["G2424"]],[26,28,["G2641"]],[28,29,["G3441"]],[29,30,["G2532"]],[30,31,["G3588"]],[31,32,["G1135"]],[32,33,["G2476"]],[33,34,["G1722"]],[34,36,["G3319"]]]},{"k":26391,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,5,["G352"]],[5,7,["G2532"]],[7,8,["G2300"]],[8,9,["G3367"]],[9,10,["G4133"]],[10,11,["G3588"]],[11,12,["G1135"]],[12,14,["G2036"]],[14,16,["G846"]],[16,17,["G1135"]],[17,18,["G4226"]],[18,19,["G1526"]],[19,20,["G1565"]],[20,21,["G4675"]],[21,22,["G2725"]],[22,25,["G3762"]],[25,26,["G2632"]],[26,27,["G4571"]]]},{"k":26392,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G2036"]],[2,4,["G3762"]],[4,5,["G2962"]],[5,6,["G1161"]],[6,7,["G2424"]],[7,8,["G2036"]],[8,10,["G846"]],[10,11,["G3761"]],[11,13,["G1473"]],[13,14,["G2632"]],[14,15,["G4571"]],[15,16,["G4198"]],[16,17,["G2532"]],[17,18,["G264"]],[18,20,["G3371"]]]},{"k":26393,"v":[[0,1,["G3767"]],[1,2,["G2980"]],[2,3,["G2424"]],[3,4,["G3825"]],[4,6,["G846"]],[6,7,["G3004"]],[7,8,["G1473"]],[8,9,["G1510"]],[9,10,["G3588"]],[10,11,["G5457"]],[11,13,["G3588"]],[13,14,["G2889"]],[14,17,["G190"]],[17,18,["G1698"]],[18,20,["G3364"]],[20,21,["G4043"]],[21,22,["G1722"]],[22,23,["G4653"]],[23,24,["G235"]],[24,26,["G2192"]],[26,27,["G3588"]],[27,28,["G5457"]],[28,30,["G2222"]]]},{"k":26394,"v":[[0,1,["G3588"]],[1,2,["G5330"]],[2,3,["G3767"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G4771"]],[7,9,["G3140"]],[9,10,["G4012"]],[10,11,["G4572"]],[11,12,["G4675"]],[12,13,["G3141"]],[13,14,["G2076"]],[14,15,["G3756"]],[15,16,["G227"]]]},{"k":26395,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G2579"]],[7,8,["G1473"]],[8,10,["G3140"]],[10,11,["G4012"]],[11,12,["G1683"]],[12,14,["G3450"]],[14,15,["G3141"]],[15,16,["G2076"]],[16,17,["G227"]],[17,18,["G3754"]],[18,20,["G1492"]],[20,21,["G4159"]],[21,23,["G2064"]],[23,24,["G2532"]],[24,25,["G4226"]],[25,27,["G5217"]],[27,28,["G1161"]],[28,29,["G5210"]],[29,31,["G1492","G3756"]],[31,32,["G4159"]],[32,34,["G2064"]],[34,35,["G2532"]],[35,36,["G4226"]],[36,38,["G5217"]]]},{"k":26396,"v":[[0,1,["G5210"]],[1,2,["G2919"]],[2,3,["G2596"]],[3,4,["G3588"]],[4,5,["G4561"]],[5,6,["G1473"]],[6,7,["G2919"]],[7,9,["G3762"]]]},{"k":26397,"v":[[0,1,["G2532"]],[1,2,["G1161"]],[2,3,["G1437"]],[3,4,["G1473"]],[4,5,["G2919"]],[5,6,["G1699"]],[6,7,["G2920"]],[7,8,["G2076"]],[8,9,["G227"]],[9,10,["G3754"]],[10,12,["G1510"]],[12,13,["G3756"]],[13,14,["G3441"]],[14,15,["G235"]],[15,16,["G1473"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G3962"]],[19,21,["G3992"]],[21,22,["G3165"]]]},{"k":26398,"v":[[0,2,["(G2532)"]],[2,3,["G1161"]],[3,4,["G1125"]],[4,5,["G1722"]],[5,6,["G5212"]],[6,7,["G3551"]],[7,8,["G3754"]],[8,9,["G3588"]],[9,10,["G3141"]],[10,12,["G1417"]],[12,13,["G444"]],[13,14,["G2076"]],[14,15,["G227"]]]},{"k":26399,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,6,["G3140"]],[6,7,["G4012"]],[7,8,["G1683"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G3962"]],[11,12,["G3588"]],[12,13,["G3992"]],[13,14,["G3165"]],[14,16,["G3140"]],[16,17,["G4012"]],[17,18,["G1700"]]]},{"k":26400,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,5,["G846"]],[5,6,["G4226"]],[6,7,["G2076"]],[7,8,["G4675"]],[8,9,["G3962"]],[9,10,["G2424"]],[10,11,["G611"]],[11,13,["G3777"]],[13,14,["G1492"]],[14,15,["G1691"]],[15,16,["G3777"]],[16,17,["G3450"]],[17,18,["G3962"]],[18,19,["G1487"]],[19,22,["G1492"]],[22,23,["G1691"]],[23,27,["G1492","G302"]],[27,28,["G3450"]],[28,29,["G3962"]],[29,30,["G2532"]]]},{"k":26401,"v":[[0,1,["G5023"]],[1,2,["G4487"]],[2,3,["G2980"]],[3,4,["G2424"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G1049"]],[7,10,["G1321"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G2411"]],[13,14,["G2532"]],[14,16,["G3762"]],[16,19,["G4084"]],[19,20,["G846"]],[20,21,["G3754"]],[21,22,["G846"]],[22,23,["G5610"]],[23,26,["G3768"]],[26,27,["G2064"]]]},{"k":26402,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,4,["G3825"]],[4,6,["G846"]],[6,7,["G1473"]],[7,10,["G5217"]],[10,11,["G2532"]],[11,14,["G2212"]],[14,15,["G3165"]],[15,16,["G2532"]],[16,18,["G599"]],[18,19,["G1722"]],[19,20,["G5216"]],[20,21,["G266"]],[21,22,["G3699"]],[22,23,["G1473"]],[23,24,["G5217"]],[24,25,["G5210"]],[25,26,["G1410","G3756"]],[26,27,["G2064"]]]},{"k":26403,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G3588"]],[3,4,["G2453"]],[4,5,["(G3385)"]],[5,7,["G615"]],[7,8,["G1438"]],[8,9,["G3754"]],[9,11,["G3004"]],[11,12,["G3699"]],[12,13,["G1473"]],[13,14,["G5217"]],[14,15,["G5210"]],[15,16,["G1410","G3756"]],[16,17,["G2064"]]]},{"k":26404,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G846"]],[5,6,["G5210"]],[6,7,["G2075"]],[7,8,["G1537"]],[8,9,["G2736"]],[9,10,["G1473"]],[10,11,["G1510"]],[11,12,["G1537"]],[12,13,["G507"]],[13,14,["G5210"]],[14,15,["G2075"]],[15,16,["G1537"]],[16,17,["G5127"]],[17,18,["G2889"]],[18,19,["G1473"]],[19,20,["G1510"]],[20,21,["G3756"]],[21,22,["G1537"]],[22,23,["G5127"]],[23,24,["G2889"]]]},{"k":26405,"v":[[0,2,["G2036"]],[2,3,["G3767"]],[3,5,["G5213"]],[5,6,["G3754"]],[6,9,["G599"]],[9,10,["G1722"]],[10,11,["G5216"]],[11,12,["G266"]],[12,13,["G1063"]],[13,14,["G1437"]],[14,16,["G4100"]],[16,17,["G3361"]],[17,18,["G3754"]],[18,19,["G1473"]],[19,20,["G1510"]],[20,24,["G599"]],[24,25,["G1722"]],[25,26,["G5216"]],[26,27,["G266"]]]},{"k":26406,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,5,["G846"]],[5,6,["G5101"]],[6,7,["G1488"]],[7,8,["G4771"]],[8,9,["G2532"]],[9,10,["G2424"]],[10,11,["G2036"]],[11,13,["G846"]],[13,14,["G2532"]],[14,17,["G3748"]],[17,19,["G2980"]],[19,21,["G5213"]],[21,23,["G3588"]],[23,24,["G746"]]]},{"k":26407,"v":[[0,2,["G2192"]],[2,4,["G4183"]],[4,6,["G2980"]],[6,7,["G2532"]],[7,9,["G2919"]],[9,10,["G4012"]],[10,11,["G5216"]],[11,12,["G235"]],[12,15,["G3992"]],[15,16,["G3165"]],[16,17,["G2076"]],[17,18,["G227"]],[18,20,["G2504"]],[20,21,["G3004"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G2889"]],[24,26,["G5023"]],[26,27,["G3739"]],[27,30,["G191"]],[30,31,["G3844"]],[31,32,["G846"]]]},{"k":26408,"v":[[0,2,["G1097"]],[2,3,["G3756"]],[3,4,["G3754"]],[4,6,["G3004"]],[6,8,["G846"]],[8,10,["G3588"]],[10,11,["G3962"]]]},{"k":26409,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,5,["G846"]],[5,6,["G3752"]],[6,10,["G5312"]],[10,11,["G3588"]],[11,12,["G5207"]],[12,14,["G444"]],[14,15,["G5119"]],[15,18,["G1097"]],[18,19,["G3754"]],[19,20,["G1473"]],[20,21,["G1510"]],[21,23,["G2532"]],[23,26,["G4160"]],[26,27,["G3762"]],[27,28,["G575"]],[28,29,["G1683"]],[29,30,["G235"]],[30,31,["G2531"]],[31,32,["G3450"]],[32,33,["G3962"]],[33,35,["G1321"]],[35,36,["G3165"]],[36,38,["G2980"]],[38,40,["G5023"]]]},{"k":26410,"v":[[0,1,["G2532"]],[1,4,["G3992"]],[4,5,["G3165"]],[5,6,["G2076"]],[6,7,["G3326"]],[7,8,["G1700"]],[8,9,["G3588"]],[9,10,["G3962"]],[10,12,["G3756"]],[12,13,["G863"]],[13,14,["G3165"]],[14,15,["G3441"]],[15,16,["G3754"]],[16,17,["G1473"]],[17,18,["G4160"]],[18,19,["G3842"]],[19,23,["G701"]],[23,24,["G846"]]]},{"k":26411,"v":[[0,2,["G846"]],[2,3,["G2980"]],[3,5,["G5023"]],[5,6,["G4183"]],[6,7,["G4100"]],[7,8,["G1519"]],[8,9,["G846"]]]},{"k":26412,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G2424"]],[3,4,["G4314"]],[4,6,["G2453"]],[6,8,["G4100"]],[8,10,["G846"]],[10,11,["G1437"]],[11,12,["G5210"]],[12,13,["G3306"]],[13,14,["G1722"]],[14,15,["G1699"]],[15,16,["G3056"]],[16,18,["G2075"]],[18,20,["G3450"]],[20,21,["G3101"]],[21,22,["G230"]]]},{"k":26413,"v":[[0,1,["G2532"]],[1,4,["G1097"]],[4,5,["G3588"]],[5,6,["G225"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G225"]],[9,13,["G1659","G5209"]]]},{"k":26414,"v":[[0,2,["G611"]],[2,3,["G846"]],[3,5,["G2070"]],[5,6,["G11"]],[6,7,["G4690"]],[7,8,["G2532"]],[8,12,["G1398","G4455"]],[12,15,["G3762"]],[15,16,["G4459"]],[16,17,["G3004"]],[17,18,["G4771"]],[18,22,["G1096"]],[22,23,["G1658"]]]},{"k":26415,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G281"]],[4,5,["G281"]],[5,7,["G3004"]],[7,9,["G5213"]],[9,10,["G3956"]],[10,11,["G4160"]],[11,12,["G266"]],[12,13,["G2076"]],[13,15,["G1401"]],[15,17,["G266"]]]},{"k":26416,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1401"]],[3,4,["G3306"]],[4,5,["G3756"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G3614"]],[8,10,["G1519","G165"]],[10,12,["G3588"]],[12,13,["G5207"]],[13,14,["G3306"]],[14,15,["G1519","G165"]]]},{"k":26417,"v":[[0,1,["G1437"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,4,["G3767"]],[4,8,["G1659","G5209"]],[8,11,["G2071"]],[11,12,["G1658"]],[12,13,["G3689"]]]},{"k":26418,"v":[[0,2,["G1492"]],[2,3,["G3754"]],[3,5,["G2075"]],[5,6,["G11"]],[6,7,["G4690"]],[7,8,["G235"]],[8,10,["G2212"]],[10,12,["G615"]],[12,13,["G3165"]],[13,14,["G3754"]],[14,15,["G1699"]],[15,16,["G3056"]],[16,19,["G5562","G3756"]],[19,20,["G1722"]],[20,21,["G5213"]]]},{"k":26419,"v":[[0,1,["G1473"]],[1,2,["G2980"]],[2,4,["G3739"]],[4,7,["G3708"]],[7,8,["G3844"]],[8,9,["G3450"]],[9,10,["G3962"]],[10,11,["G2532"]],[11,12,["G5210"]],[12,13,["G4160"]],[13,15,["G3739"]],[15,17,["(G3767)"]],[17,18,["G3708"]],[18,19,["G3844"]],[19,20,["G5216"]],[20,21,["G3962"]]]},{"k":26420,"v":[[0,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G11"]],[7,8,["G2076"]],[8,9,["G2257"]],[9,10,["G3962"]],[10,11,["G2424"]],[11,12,["G3004"]],[12,14,["G846"]],[14,15,["G1487"]],[15,17,["G2258"]],[17,18,["G11"]],[18,19,["G5043"]],[19,22,["G4160","G302"]],[22,23,["G3588"]],[23,24,["G2041"]],[24,26,["G11"]]]},{"k":26421,"v":[[0,1,["G1161"]],[1,2,["G3568"]],[2,4,["G2212"]],[4,6,["G615"]],[6,7,["G3165"]],[7,9,["G444"]],[9,10,["G3739"]],[10,12,["G2980"]],[12,13,["G5213"]],[13,14,["G3588"]],[14,15,["G225"]],[15,16,["G3739"]],[16,19,["G191"]],[19,20,["G3844"]],[20,21,["G2316"]],[21,22,["G5124"]],[22,23,["G4160"]],[23,24,["G3756"]],[24,25,["G11"]]]},{"k":26422,"v":[[0,1,["G5210"]],[1,2,["G4160"]],[2,3,["G3588"]],[3,4,["G2041"]],[4,6,["G5216"]],[6,7,["G3962"]],[7,8,["G3767"]],[8,9,["G2036"]],[9,12,["G846"]],[12,13,["G2249"]],[13,15,["G3756"]],[15,16,["G1080"]],[16,17,["G1537"]],[17,18,["G4202"]],[18,20,["G2192"]],[20,21,["G1520"]],[21,22,["G3962"]],[22,24,["G2316"]]]},{"k":26423,"v":[[0,1,["G2424"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G1487"]],[5,6,["G2316"]],[6,7,["G2258"]],[7,8,["G5216"]],[8,9,["G3962"]],[9,12,["G25","G302"]],[12,13,["G1691"]],[13,14,["G1063"]],[14,15,["G1473"]],[15,17,["G1831"]],[17,18,["G2532"]],[18,19,["G2240"]],[19,20,["G1537"]],[20,21,["G2316","(G1063)"]],[21,22,["G3761"]],[22,23,["G2064"]],[23,25,["G575"]],[25,26,["G1683"]],[26,27,["G235"]],[27,28,["G1565"]],[28,29,["G649"]],[29,30,["G3165"]]]},{"k":26424,"v":[[0,1,["G1302"]],[1,4,["G3756"]],[4,5,["G1097"]],[5,6,["G1699"]],[6,7,["G2981"]],[7,9,["G3754"]],[9,11,["G1410","G3756"]],[11,12,["G191"]],[12,13,["G1699"]],[13,14,["G3056"]]]},{"k":26425,"v":[[0,1,["G5210"]],[1,2,["G2075"]],[2,3,["G1537"]],[3,5,["G3962"]],[5,6,["G3588"]],[6,7,["G1228"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G1939"]],[10,12,["G5216"]],[12,13,["G3962"]],[13,15,["G2309"]],[15,16,["G4160"]],[16,17,["G1565"]],[17,18,["G2258"]],[18,20,["G443"]],[20,21,["G575"]],[21,23,["G746"]],[23,24,["G2532"]],[24,25,["G2476"]],[25,26,["G3756"]],[26,27,["G1722"]],[27,28,["G3588"]],[28,29,["G225"]],[29,30,["G3754"]],[30,32,["G2076"]],[32,33,["G3756"]],[33,34,["G225"]],[34,35,["G1722"]],[35,36,["G846"]],[36,37,["G3752"]],[37,39,["G2980"]],[39,41,["G5579"]],[41,43,["G2980"]],[43,44,["G1537"]],[44,46,["G2398"]],[46,47,["G3754"]],[47,49,["G2076"]],[49,51,["G5583"]],[51,52,["G2532"]],[52,53,["G3588"]],[53,54,["G3962"]],[54,56,["G846"]]]},{"k":26426,"v":[[0,1,["G1161"]],[1,2,["G3754"]],[2,3,["G1473"]],[3,4,["G3004"]],[4,6,["G3588"]],[6,7,["G225"]],[7,9,["G4100"]],[9,10,["G3427"]],[10,11,["G3756"]]]},{"k":26427,"v":[[0,1,["G5101"]],[1,2,["G1537"]],[2,3,["G5216"]],[3,4,["G1651"]],[4,5,["G3165"]],[5,6,["G4012"]],[6,7,["G266"]],[7,8,["G1161"]],[8,9,["G1487"]],[9,11,["G3004"]],[11,13,["G225"]],[13,14,["G1302"]],[14,16,["G5210"]],[16,17,["G3756"]],[17,18,["G4100"]],[18,19,["G3427"]]]},{"k":26428,"v":[[0,3,["G5607"]],[3,4,["G1537"]],[4,5,["G2316"]],[5,6,["G191"]],[6,7,["G2316"]],[7,8,["G4487"]],[8,9,["G5210"]],[9,10,["G1223","G5124"]],[10,11,["G191"]],[11,13,["G3756"]],[13,14,["G3754"]],[14,16,["G2075"]],[16,17,["G3756"]],[17,18,["G1537"]],[18,19,["G2316"]]]},{"k":26429,"v":[[0,1,["G3767"]],[1,2,["G611"]],[2,3,["G3588"]],[3,4,["G2453"]],[4,5,["G2532"]],[5,6,["G2036"]],[6,8,["G846"]],[8,9,["G3004"]],[9,10,["G2249"]],[10,11,["G3756"]],[11,12,["G2573"]],[12,13,["G3754"]],[13,14,["G4771"]],[14,15,["G1488"]],[15,17,["G4541"]],[17,18,["G2532"]],[18,19,["G2192"]],[19,21,["G1140"]]]},{"k":26430,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G1473"]],[3,4,["G2192"]],[4,5,["G3756"]],[5,7,["G1140"]],[7,8,["G235"]],[8,10,["G5091"]],[10,11,["G3450"]],[11,12,["G3962"]],[12,13,["G2532"]],[13,14,["G5210"]],[14,16,["G818"]],[16,17,["G3165"]]]},{"k":26431,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G2212"]],[3,4,["G3756"]],[4,6,["G3450"]],[6,7,["G1391"]],[7,9,["G2076"]],[9,12,["G2212"]],[12,13,["G2532"]],[13,14,["G2919"]]]},{"k":26432,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,7,["G1437"]],[7,9,["G5100"]],[9,10,["G5083"]],[10,11,["G1699"]],[11,12,["G3056"]],[12,15,["G3364","G1519","G165"]],[15,16,["G2334"]],[16,17,["G2288"]]]},{"k":26433,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,4,["G2453"]],[4,6,["G846"]],[6,7,["G3568"]],[7,9,["G1097"]],[9,10,["G3754"]],[10,12,["G2192"]],[12,14,["G1140"]],[14,15,["G11"]],[15,17,["G599"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G4396"]],[20,21,["G2532"]],[21,22,["G4771"]],[22,23,["G3004"]],[23,24,["G1437"]],[24,26,["G5100"]],[26,27,["G5083"]],[27,28,["G3450"]],[28,29,["G3056"]],[29,32,["G3364","G1519","G165"]],[32,33,["G1089"]],[33,35,["G2288"]]]},{"k":26434,"v":[[0,1,["G1488","(G3361)"]],[1,2,["G4771"]],[2,3,["G3187"]],[3,5,["G2257"]],[5,6,["G3962"]],[6,7,["G11"]],[7,8,["G3748"]],[8,10,["G599"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G4396"]],[13,15,["G599"]],[15,16,["G5101"]],[16,17,["G4160"]],[17,18,["G4771"]],[18,19,["G4572"]]]},{"k":26435,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G1437"]],[3,4,["G1473"]],[4,5,["G1392"]],[5,6,["G1683"]],[6,7,["G3450"]],[7,8,["G1391"]],[8,9,["G2076"]],[9,10,["G3762"]],[10,12,["G2076"]],[12,13,["G3450"]],[13,14,["G3962"]],[14,16,["G1392"]],[16,17,["G3165"]],[17,19,["G3739"]],[19,20,["G5210"]],[20,21,["G3004"]],[21,22,["G3754"]],[22,24,["G2076"]],[24,25,["G5216"]],[25,26,["G2316"]]]},{"k":26436,"v":[[0,1,["G2532"]],[1,4,["G3756"]],[4,5,["G1097"]],[5,6,["G846"]],[6,7,["G1161"]],[7,9,["G1492"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G1437"]],[12,15,["G2036"]],[15,16,["(G3754)"]],[16,17,["G1492"]],[17,18,["G846"]],[18,19,["G3756"]],[19,22,["G2071"]],[22,24,["G5583"]],[24,26,["G3664"]],[26,27,["G5216"]],[27,28,["G235"]],[28,30,["G1492"]],[30,31,["G846"]],[31,32,["G2532"]],[32,33,["G5083"]],[33,34,["G846"]],[34,35,["G3056"]]]},{"k":26437,"v":[[0,1,["G5216"]],[1,2,["G3962"]],[2,3,["G11"]],[3,4,["G21"]],[4,5,["G2443"]],[5,6,["G1492"]],[6,7,["G1699"]],[7,8,["G2250"]],[8,9,["G2532"]],[9,11,["G1492"]],[11,13,["G2532"]],[13,15,["G5463"]]]},{"k":26438,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,4,["G2453"]],[4,5,["G4314"]],[5,6,["G846"]],[6,8,["G2192"]],[8,10,["G3768"]],[10,11,["G4004"]],[11,13,["G2094"]],[13,14,["G2532"]],[14,17,["G3708"]],[17,18,["G11"]]]},{"k":26439,"v":[[0,1,["G2424"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G281"]],[5,6,["G281"]],[6,8,["G3004"]],[8,10,["G5213"]],[10,11,["G4250"]],[11,12,["G11"]],[12,13,["G1096"]],[13,14,["G1473"]],[14,15,["G1510"]]]},{"k":26440,"v":[[0,1,["G3767"]],[1,4,["G142"]],[4,5,["G3037"]],[5,6,["G2443"]],[6,7,["G906"]],[7,8,["G1909"]],[8,9,["G846"]],[9,10,["G1161"]],[10,11,["G2424"]],[11,12,["G2928"]],[12,14,["G2532"]],[14,15,["G1831"]],[15,17,["G1537"]],[17,18,["G3588"]],[18,19,["G2411"]],[19,20,["G1330"]],[20,21,["G1223"]],[21,23,["G3319"]],[23,25,["G846"]],[25,26,["G2532"]],[26,27,["G3779"]],[27,29,["G3855"]]]},{"k":26441,"v":[[0,1,["G2532"]],[1,5,["G3855"]],[5,7,["G1492"]],[7,9,["G444"]],[9,12,["G5185"]],[12,13,["G1537"]],[13,15,["G1079"]]]},{"k":26442,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3101"]],[3,4,["G2065"]],[4,5,["G846"]],[5,6,["G3004"]],[6,7,["G4461"]],[7,8,["G5101"]],[8,10,["G264"]],[10,12,["G3778"]],[12,13,["G2228"]],[13,14,["G846"]],[14,15,["G1118"]],[15,16,["G2443"]],[16,19,["G1080"]],[19,20,["G5185"]]]},{"k":26443,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G3777"]],[3,6,["G3778"]],[6,7,["G264"]],[7,8,["G3777"]],[8,9,["G846"]],[9,10,["G1118"]],[10,11,["G235"]],[11,12,["G2443"]],[12,13,["G3588"]],[13,14,["G2041"]],[14,16,["G2316"]],[16,20,["G5319"]],[20,21,["G1722"]],[21,22,["G846"]]]},{"k":26444,"v":[[0,1,["G1691"]],[1,2,["G1163"]],[2,3,["G2038"]],[3,4,["G3588"]],[4,5,["G2041"]],[5,9,["G3992"]],[9,10,["G3165"]],[10,11,["G2193"]],[11,13,["G2076"]],[13,14,["G2250"]],[14,16,["G3571"]],[16,17,["G2064"]],[17,18,["G3753"]],[18,20,["G3762"]],[20,21,["G1410"]],[21,22,["G2038"]]]},{"k":26445,"v":[[0,3,["G3752"]],[3,5,["G5600"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G2889"]],[8,10,["G1510"]],[10,12,["G5457"]],[12,14,["G3588"]],[14,15,["G2889"]]]},{"k":26446,"v":[[0,4,["G5023"]],[4,5,["G2036"]],[5,7,["G4429"]],[7,10,["G5476"]],[10,11,["G2532"]],[11,12,["G4160"]],[12,13,["G4081"]],[13,14,["G1537"]],[14,15,["G3588"]],[15,16,["G4427"]],[16,17,["G2532"]],[17,19,["G2025"]],[19,20,["G3588"]],[20,21,["G3788"]],[21,23,["G3588"]],[23,25,["G5185"]],[25,27,["G3588"]],[27,28,["G4081"]]]},{"k":26447,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G5217"]],[5,6,["G3538"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G2861"]],[9,11,["G4611"]],[11,12,["G3739"]],[12,15,["G2059"]],[15,16,["G649"]],[16,20,["G565"]],[20,21,["G3767"]],[21,22,["G2532"]],[22,23,["G3538"]],[23,24,["G2532"]],[24,25,["G2064"]],[25,26,["G991"]]]},{"k":26448,"v":[[0,1,["G3588"]],[1,2,["G1069"]],[2,3,["G3767"]],[3,4,["G2532"]],[4,7,["G4386"]],[7,9,["G2334"]],[9,10,["G846"]],[10,11,["G3754"]],[11,13,["G2258"]],[13,14,["G5185"]],[14,15,["G3004"]],[15,16,["G2076"]],[16,17,["G3756"]],[17,18,["G3778"]],[18,21,["G2521"]],[21,22,["G2532"]],[22,23,["G4319"]]]},{"k":26449,"v":[[0,1,["G243"]],[1,2,["G3004"]],[2,3,["G3778"]],[3,4,["G2076"]],[4,5,["(G1161)"]],[5,6,["G243"]],[6,9,["G2076"]],[9,10,["G3664"]],[10,11,["G846"]],[11,13,["G1565"]],[13,14,["G3004"]],[14,15,["G1473"]],[15,16,["G1510"]],[16,17,[]]]},{"k":26450,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,5,["G846"]],[5,6,["G4459"]],[6,8,["G4675"]],[8,9,["G3788"]],[9,10,["G455"]]]},{"k":26451,"v":[[0,1,["G1565"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G444"]],[6,9,["G3004"]],[9,10,["G2424"]],[10,11,["G4160"]],[11,12,["G4081"]],[12,13,["G2532"]],[13,14,["G2025"]],[14,15,["G3450"]],[15,16,["G3788"]],[16,17,["G2532"]],[17,18,["G2036"]],[18,20,["G3427"]],[20,21,["G5217"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G2861"]],[24,26,["G4611"]],[26,27,["G2532"]],[27,28,["G3538"]],[28,29,["G1161"]],[29,31,["G565"]],[31,32,["G2532"]],[32,33,["G3538"]],[33,34,["G2532"]],[34,37,["G308"]]]},{"k":26452,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,5,["G846"]],[5,6,["G4226"]],[6,7,["G2076"]],[7,8,["G1565"]],[8,10,["G3004"]],[10,12,["G1492"]],[12,13,["G3756"]]]},{"k":26453,"v":[[0,2,["G71"]],[2,3,["G4314"]],[3,4,["G3588"]],[4,5,["G5330"]],[5,6,["G846"]],[6,8,["G4218"]],[8,10,["G5185"]]]},{"k":26454,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,6,["G4521"]],[6,7,["G3753"]],[7,8,["G2424"]],[8,9,["G4160"]],[9,10,["G3588"]],[10,11,["G4081"]],[11,12,["G2532"]],[12,13,["G455"]],[13,14,["G846"]],[14,15,["G3788"]]]},{"k":26455,"v":[[0,1,["G3767"]],[1,2,["G3825"]],[2,3,["G3588"]],[3,4,["G5330"]],[4,5,["G2532"]],[5,6,["G2065"]],[6,7,["G846"]],[7,8,["G4459"]],[8,13,["G308","(G1161)"]],[13,14,["G3588"]],[14,15,["G2036"]],[15,17,["G846"]],[17,19,["G2007"]],[19,20,["G4081"]],[20,21,["G1909"]],[21,22,["G3450"]],[22,23,["G3788"]],[23,24,["G2532"]],[24,26,["G3538"]],[26,27,["G2532"]],[27,29,["G991"]]]},{"k":26456,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G5100"]],[3,4,["G1537"]],[4,5,["G3588"]],[5,6,["G5330"]],[6,7,["G3778"]],[7,8,["G444"]],[8,9,["G2076"]],[9,10,["G3756"]],[10,11,["G3844"]],[11,12,["G2316"]],[12,13,["G3754"]],[13,15,["G5083"]],[15,16,["G3756"]],[16,17,["G3588"]],[17,19,["G4521"]],[19,20,["G243"]],[20,21,["G3004"]],[21,22,["G4459"]],[22,23,["G1410"]],[23,25,["G444"]],[25,29,["G268"]],[29,30,["G4160"]],[30,31,["G5108"]],[31,32,["G4592"]],[32,33,["G2532"]],[33,35,["G2258"]],[35,37,["G4978"]],[37,38,["G1722"]],[38,39,["G846"]]]},{"k":26457,"v":[[0,2,["G3004"]],[2,4,["G3588"]],[4,6,["G5185"]],[6,7,["G3825"]],[7,8,["G5101"]],[8,9,["G3004"]],[9,10,["G4771"]],[10,11,["G4012"]],[11,12,["G846"]],[12,13,["G3754"]],[13,16,["G455"]],[16,17,["G4675"]],[17,18,["G3788","(G1161)"]],[18,19,["G3588"]],[19,20,["G2036"]],[20,22,["G2076"]],[22,24,["G4396"]]]},{"k":26458,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,5,["G3756"]],[5,6,["G4100"]],[6,7,["G4012"]],[7,8,["G846"]],[8,9,["G3754"]],[9,12,["G2258"]],[12,13,["G5185"]],[13,14,["G2532"]],[14,17,["G308"]],[17,18,["G2193","G3755"]],[18,20,["G5455"]],[20,21,["G3588"]],[21,22,["G1118"]],[22,24,["G846"]],[24,29,["G308"]]]},{"k":26459,"v":[[0,1,["G2532"]],[1,3,["G2065"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G2076"]],[6,7,["G3778"]],[7,8,["G5216"]],[8,9,["G5207"]],[9,10,["G3739"]],[10,11,["G5210"]],[11,12,["G3004"]],[12,13,["(G3754)"]],[13,14,["G1080"]],[14,15,["G5185"]],[15,16,["G4459"]],[16,17,["G3767"]],[17,20,["G737"]],[20,21,["G991"]]]},{"k":26460,"v":[[0,1,["G846"]],[1,2,["G1118"]],[2,3,["G611"]],[3,4,["G846"]],[4,5,["G2532"]],[5,6,["G2036"]],[6,8,["G1492"]],[8,9,["G3754"]],[9,10,["G3778"]],[10,11,["G2076"]],[11,12,["G2257"]],[12,13,["G5207"]],[13,14,["G2532"]],[14,15,["G3754"]],[15,18,["G1080"]],[18,19,["G5185"]]]},{"k":26461,"v":[[0,1,["G1161"]],[1,4,["G4459"]],[4,6,["G3568"]],[6,7,["G991"]],[7,9,["G1492"]],[9,10,["G3756"]],[10,11,["G2228"]],[11,12,["G5101"]],[12,14,["G455"]],[14,15,["G846"]],[15,16,["G3788"]],[16,17,["G2249"]],[17,18,["G1492"]],[18,19,["G3756"]],[19,20,["G846"]],[20,23,["G2192","G2244"]],[23,24,["G2065"]],[24,25,["G846"]],[25,26,["G846"]],[26,28,["G2980"]],[28,29,["G4012"]],[29,30,["G848"]]]},{"k":26462,"v":[[0,1,["G5023"]],[1,3,["G2036"]],[3,4,["G846"]],[4,5,["G1118"]],[5,6,["G3754"]],[6,8,["G5399"]],[8,9,["G3588"]],[9,10,["G2453"]],[10,11,["G1063"]],[11,12,["G3588"]],[12,13,["G2453"]],[13,15,["G4934"]],[15,16,["G2235"]],[16,17,["G2443"]],[17,18,["G1437"]],[18,20,["G5100"]],[20,22,["G3670"]],[22,24,["G846"]],[24,26,["G5547"]],[26,29,["G1096"]],[29,34,["G656"]]]},{"k":26463,"v":[[0,1,["G1223","G5124"]],[1,2,["G2036"]],[2,3,["G846"]],[3,4,["G1118"]],[4,8,["G2192","G2244"]],[8,9,["G2065"]],[9,10,["G846"]]]},{"k":26464,"v":[[0,1,["G3767"]],[1,2,["G1537","G1208"]],[2,3,["G5455"]],[3,5,["G3588"]],[5,6,["G444"]],[6,7,["G3739"]],[7,8,["G2258"]],[8,9,["G5185"]],[9,10,["G2532"]],[10,11,["G2036"]],[11,13,["G846"]],[13,14,["G1325"]],[14,15,["G2316"]],[15,17,["G1391"]],[17,18,["G2249"]],[18,19,["G1492"]],[19,20,["G3754"]],[20,21,["G3778"]],[21,22,["G444"]],[22,23,["G2076"]],[23,25,["G268"]]]},{"k":26465,"v":[[0,1,["G1565"]],[1,2,["G611","(G3767)"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,5,["G1487"]],[5,7,["G2076"]],[7,9,["G268"]],[9,13,["G1492"]],[13,14,["G3756"]],[14,16,["G1520"]],[16,18,["G1492"]],[18,19,["G3754"]],[19,22,["G5607"]],[22,23,["G5185"]],[23,24,["G737"]],[24,26,["G991"]]]},{"k":26466,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,5,["G846"]],[5,6,["G3825"]],[6,7,["G5101"]],[7,8,["G4160"]],[8,11,["G4671"]],[11,12,["G4459"]],[12,13,["G455"]],[13,15,["G4675"]],[15,16,["G3788"]]]},{"k":26467,"v":[[0,2,["G611"]],[2,3,["G846"]],[3,6,["G2036"]],[6,7,["G5213"]],[7,8,["G2235"]],[8,9,["G2532"]],[9,12,["G3756"]],[12,13,["G191"]],[13,14,["G5101"]],[14,15,["G2309"]],[15,17,["G191"]],[17,19,["G3825"]],[19,20,["G2309","(G3361)"]],[20,21,["G5210"]],[21,22,["G2532"]],[22,23,["G1096"]],[23,24,["G846"]],[24,25,["G3101"]]]},{"k":26468,"v":[[0,1,["G3767"]],[1,3,["G3058"]],[3,4,["G846"]],[4,5,["G2532"]],[5,6,["G2036"]],[6,7,["G4771"]],[7,8,["G1488"]],[8,9,["G1565"]],[9,10,["G3101"]],[10,11,["G1161"]],[11,12,["G2249"]],[12,13,["G2070"]],[13,14,["G3475"]],[14,15,["G3101"]]]},{"k":26469,"v":[[0,1,["G2249"]],[1,2,["G1492"]],[2,3,["G3754"]],[3,4,["G2316"]],[4,5,["G2980"]],[5,7,["G3475"]],[7,9,["(G1161)"]],[9,10,["G5126"]],[10,13,["G1492"]],[13,14,["G3756"]],[14,16,["G4159"]],[16,18,["G2076"]]]},{"k":26470,"v":[[0,1,["G3588"]],[1,2,["G444"]],[2,3,["G611"]],[3,4,["G2532"]],[4,5,["G2036"]],[5,7,["G846"]],[7,8,["G1063"]],[8,9,["G1722","G5129"]],[9,10,["G2076"]],[10,13,["G2298"]],[13,14,["G3754"]],[14,15,["G5210"]],[15,16,["G1492"]],[16,17,["G3756"]],[17,19,["G4159"]],[19,21,["G2076"]],[21,22,["G2532"]],[22,26,["G455"]],[26,27,["G3450"]],[27,28,["G3788"]]]},{"k":26471,"v":[[0,1,["G1161"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G2316"]],[5,6,["G191"]],[6,7,["G3756"]],[7,8,["G268"]],[8,9,["G235"]],[9,10,["G1437"]],[10,12,["G5100"]],[12,13,["G5600"]],[13,17,["G2318"]],[17,18,["G2532"]],[18,19,["G4160"]],[19,20,["G846"]],[20,21,["G2307"]],[21,22,["G5127"]],[22,24,["G191"]]]},{"k":26472,"v":[[0,4,["G1537","G165"]],[4,7,["G3756"]],[7,8,["G191"]],[8,9,["G3754"]],[9,11,["G5100"]],[11,12,["G455"]],[12,14,["G3788"]],[14,19,["G1080"]],[19,20,["G5185"]]]},{"k":26473,"v":[[0,1,["G1508"]],[1,3,["G3778"]],[3,4,["G2258"]],[4,5,["G3756"]],[5,6,["G3844"]],[6,7,["G2316"]],[7,9,["G1410"]],[9,10,["G4160"]],[10,11,["G3762"]]]},{"k":26474,"v":[[0,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G4771"]],[7,9,["G3650"]],[9,10,["G1080"]],[10,11,["G1722"]],[11,12,["G266"]],[12,13,["G2532"]],[13,15,["G4771"]],[15,16,["G1321"]],[16,17,["G2248"]],[17,18,["G2532"]],[18,20,["G1544"]],[20,21,["G846"]],[21,22,["G1854"]]]},{"k":26475,"v":[[0,1,["G2424"]],[1,2,["G191"]],[2,3,["G3754"]],[3,6,["G1544"]],[6,7,["G846"]],[7,8,["G1854"]],[8,9,["G2532"]],[9,13,["G2147"]],[13,14,["G846"]],[14,16,["G2036"]],[16,18,["G846"]],[18,20,["G4771"]],[20,21,["G4100"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G5207"]],[24,26,["G2316"]]]},{"k":26476,"v":[[0,1,["G1565"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,5,["G5101"]],[5,6,["G2076"]],[6,8,["G2962"]],[8,9,["G2443"]],[9,12,["G4100"]],[12,13,["G1519"]],[13,14,["G846"]]]},{"k":26477,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,8,["G2532"]],[8,9,["G3708"]],[9,10,["G846"]],[10,11,["G2532"]],[11,13,["G2076"]],[13,14,["G1565"]],[14,16,["G2980"]],[16,17,["G3326"]],[17,18,["G4675"]]]},{"k":26478,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5346"]],[3,4,["G2962"]],[4,6,["G4100"]],[6,7,["G2532"]],[7,9,["G4352"]],[9,10,["G846"]]]},{"k":26479,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,4,["G1519"]],[4,5,["G2917"]],[5,6,["G1473"]],[6,8,["G2064"]],[8,9,["G1519"]],[9,10,["G5126"]],[10,11,["G2889"]],[11,12,["G2443"]],[12,15,["G991"]],[15,16,["G3361"]],[16,18,["G991"]],[18,19,["G2532"]],[19,23,["G991"]],[23,26,["G1096"]],[26,27,["G5185"]]]},{"k":26480,"v":[[0,1,["G2532"]],[1,3,["G1537"]],[3,4,["G3588"]],[4,5,["G5330"]],[5,7,["G5607"]],[7,8,["G3326"]],[8,9,["G846"]],[9,10,["G191"]],[10,12,["G5023"]],[12,13,["G2532"]],[13,14,["G2036"]],[14,16,["G846"]],[16,17,["G2070"]],[17,18,["G2249","(G3361)"]],[18,19,["G5185"]],[19,20,["G2532"]]]},{"k":26481,"v":[[0,1,["G2424"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G1487"]],[5,7,["G2258"]],[7,8,["G5185"]],[8,11,["G2192","G302"]],[11,12,["G3756"]],[12,13,["G266"]],[13,14,["G1161"]],[14,15,["G3568"]],[15,17,["G3004"]],[17,19,["G991"]],[19,20,["G3767"]],[20,21,["G5216"]],[21,22,["G266"]],[22,23,["G3306"]]]},{"k":26482,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,9,["G1525"]],[9,10,["G3361"]],[10,11,["G1223"]],[11,12,["G3588"]],[12,13,["G2374"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G833","G4263"]],[16,17,["G235"]],[17,19,["G305"]],[19,22,["G237"]],[22,24,["G1565"]],[24,25,["G2076"]],[25,27,["G2812"]],[27,28,["G2532"]],[28,30,["G3027"]]]},{"k":26483,"v":[[0,1,["G1161"]],[1,5,["G1525"]],[5,6,["G1223"]],[6,7,["G3588"]],[7,8,["G2374"]],[8,9,["G2076"]],[9,10,["G3588"]],[10,11,["G4166"]],[11,13,["G3588"]],[13,14,["G4263"]]]},{"k":26484,"v":[[0,2,["G5129"]],[2,3,["G3588"]],[3,4,["G2377"]],[4,5,["G455"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G4263"]],[8,9,["G191"]],[9,10,["G846"]],[10,11,["G5456"]],[11,12,["G2532"]],[12,14,["G2564"]],[14,16,["G2398"]],[16,17,["G4263"]],[17,18,["G2596"]],[18,19,["G3686"]],[19,20,["G2532"]],[20,23,["G1806","G846"]]]},{"k":26485,"v":[[0,1,["G2532"]],[1,2,["G3752"]],[2,5,["G1544"]],[5,7,["G2398"]],[7,8,["G4263"]],[8,10,["G4198"]],[10,11,["G1715"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G4263"]],[15,16,["G190"]],[16,17,["G846"]],[17,18,["G3754"]],[18,20,["G1492"]],[20,21,["G846"]],[21,22,["G5456"]]]},{"k":26486,"v":[[0,1,["G1161"]],[1,3,["G245"]],[3,6,["G3364"]],[6,7,["G190"]],[7,8,["G235"]],[8,10,["G5343"]],[10,11,["G575"]],[11,12,["G846"]],[12,13,["G3754"]],[13,15,["G1492"]],[15,16,["G3756"]],[16,17,["G3588"]],[17,18,["G5456"]],[18,20,["G245"]]]},{"k":26487,"v":[[0,1,["G5026"]],[1,2,["G3942"]],[2,3,["G2036"]],[3,4,["G2424"]],[4,6,["G846"]],[6,7,["G1161"]],[7,8,["G1565"]],[8,9,["G1097"]],[9,10,["G3756"]],[10,12,["G5101"]],[12,14,["G2258"]],[14,15,["G3739"]],[15,17,["G2980"]],[17,19,["G846"]]]},{"k":26488,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,5,["G846"]],[5,6,["G3825"]],[6,7,["G281"]],[7,8,["G281"]],[8,10,["G3004"]],[10,12,["G5213","(G3754)"]],[12,13,["G1473"]],[13,14,["G1510"]],[14,15,["G3588"]],[15,16,["G2374"]],[16,18,["G3588"]],[18,19,["G4263"]]]},{"k":26489,"v":[[0,1,["G3956"]],[1,2,["G3745"]],[2,4,["G2064"]],[4,5,["G4253"]],[5,6,["G1700"]],[6,7,["G1526"]],[7,8,["G2812"]],[8,9,["G2532"]],[9,10,["G3027"]],[10,11,["G235"]],[11,12,["G3588"]],[12,13,["G4263"]],[13,15,["G3756"]],[15,16,["G191"]],[16,17,["G846"]]]},{"k":26490,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,3,["G3588"]],[3,4,["G2374"]],[4,5,["G1223"]],[5,6,["G1700"]],[6,7,["G1437"]],[7,9,["G5100"]],[9,11,["G1525"]],[11,15,["G4982"]],[15,16,["G2532"]],[16,19,["G1525"]],[19,20,["G2532"]],[20,21,["G1831"]],[21,22,["G2532"]],[22,23,["G2147"]],[23,24,["G3542"]]]},{"k":26491,"v":[[0,1,["G3588"]],[1,2,["G2812"]],[2,3,["G2064"]],[3,4,["G3756"]],[4,5,["G1508"]],[5,7,["G2443"]],[7,8,["G2813"]],[8,9,["G2532"]],[9,11,["G2380"]],[11,12,["G2532"]],[12,14,["G622"]],[14,15,["G1473"]],[15,17,["G2064"]],[17,18,["G2443"]],[18,21,["G2192"]],[21,22,["G2222"]],[22,23,["G2532"]],[23,27,["G2192"]],[27,30,["G4053"]]]},{"k":26492,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,3,["G3588"]],[3,4,["G2570"]],[4,5,["G4166"]],[5,6,["G3588"]],[6,7,["G2570"]],[7,8,["G4166"]],[8,9,["G5087"]],[9,10,["G846"]],[10,11,["G5590"]],[11,12,["G5228"]],[12,13,["G3588"]],[13,14,["G4263"]]]},{"k":26493,"v":[[0,1,["G1161"]],[1,6,["G3411"]],[6,7,["G2532"]],[7,8,["G3756"]],[8,9,["(G5607)"]],[9,10,["G4166"]],[10,11,["G3739"]],[11,12,["G2398"]],[12,13,["G3588"]],[13,14,["G4263"]],[14,15,["G1526"]],[15,16,["G3756"]],[16,17,["G2334"]],[17,18,["G3588"]],[18,19,["G3074"]],[19,20,["G2064"]],[20,21,["G2532"]],[21,22,["G863"]],[22,23,["G3588"]],[23,24,["G4263"]],[24,25,["G2532"]],[25,26,["G5343"]],[26,27,["G2532"]],[27,28,["G3588"]],[28,29,["G3074"]],[29,30,["G726"]],[30,31,["G846"]],[31,32,["G2532"]],[32,33,["G4650"]],[33,34,["G3588"]],[34,35,["G4263"]]]},{"k":26494,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G3411"]],[2,3,["G5343"]],[3,4,["G3754"]],[4,6,["G2076"]],[6,8,["G3411"]],[8,9,["G2532"]],[9,10,["G3199"]],[10,11,["G3756"]],[11,12,["G4012"]],[12,13,["G3588"]],[13,14,["G4263"]]]},{"k":26495,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,3,["G3588"]],[3,4,["G2570"]],[4,5,["G4166"]],[5,6,["G2532"]],[6,7,["G1097"]],[7,8,["G1699"]],[8,10,["G2532"]],[10,12,["G1097"]],[12,13,["G5259"]],[13,14,["G1699"]]]},{"k":26496,"v":[[0,1,["G2531"]],[1,2,["G3588"]],[2,3,["G3962"]],[3,4,["G1097"]],[4,5,["G3165"]],[5,9,["G2504","G1097"]],[9,10,["G3588"]],[10,11,["G3962"]],[11,12,["G2532"]],[12,15,["G5087"]],[15,16,["G3450"]],[16,17,["G5590"]],[17,18,["G5228"]],[18,19,["G3588"]],[19,20,["G4263"]]]},{"k":26497,"v":[[0,1,["G2532"]],[1,2,["G243"]],[2,3,["G4263"]],[3,5,["G2192"]],[5,6,["G3739"]],[6,7,["G2076"]],[7,8,["G3756"]],[8,9,["G1537"]],[9,10,["G5026"]],[10,11,["G833"]],[11,13,["G2548"]],[13,14,["G3165"]],[14,15,["G1163"]],[15,16,["G71"]],[16,17,["G2532"]],[17,20,["G191"]],[20,21,["G3450"]],[21,22,["G5456"]],[22,23,["G2532"]],[23,26,["G1096"]],[26,27,["G3391"]],[27,28,["G4167"]],[28,30,["G1520"]],[30,31,["G4166"]]]},{"k":26498,"v":[[0,1,["G1223","G5124"]],[1,4,["G3962"]],[4,5,["G25"]],[5,6,["G3165"]],[6,7,["G3754"]],[7,8,["G1473"]],[8,10,["G5087"]],[10,11,["G3450"]],[11,12,["G5590"]],[12,13,["G2443"]],[13,16,["G2983"]],[16,17,["G846"]],[17,18,["G3825"]]]},{"k":26499,"v":[[0,2,["G3762"]],[2,3,["G142"]],[3,4,["G846"]],[4,5,["G575"]],[5,6,["G1700"]],[6,7,["G235"]],[7,8,["G1473"]],[8,11,["G5087","G846"]],[11,12,["G575"]],[12,13,["G1683"]],[13,15,["G2192"]],[15,16,["G1849"]],[16,20,["G5087","G846"]],[20,21,["G2532"]],[21,23,["G2192"]],[23,24,["G1849"]],[24,26,["G2983"]],[26,27,["G846"]],[27,28,["G3825"]],[28,29,["G5026"]],[29,30,["G1785"]],[30,33,["G2983"]],[33,34,["G3844"]],[34,35,["G3450"]],[35,36,["G3962"]]]},{"k":26500,"v":[[0,2,["G1096"]],[2,4,["G4978"]],[4,5,["G3767"]],[5,6,["G3825"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G2453"]],[9,10,["G1223"]],[10,11,["G5128"]],[11,12,["G3056"]]]},{"k":26501,"v":[[0,1,["G1161"]],[1,2,["G4183"]],[2,3,["G1537"]],[3,4,["G846"]],[4,5,["G3004"]],[5,7,["G2192"]],[7,9,["G1140"]],[9,10,["G2532"]],[10,12,["G3105"]],[12,13,["G5101"]],[13,14,["G191"]],[14,16,["G846"]]]},{"k":26502,"v":[[0,1,["G243"]],[1,2,["G3004"]],[2,3,["G5023"]],[3,4,["G2076"]],[4,5,["G3756"]],[5,6,["G3588"]],[6,7,["G4487"]],[7,13,["G1139"]],[13,14,["G1410"]],[14,15,["(G3361)"]],[15,16,["G1140"]],[16,17,["G455"]],[17,19,["G3788"]],[19,22,["G5185"]]]},{"k":26503,"v":[[0,1,["G1161"]],[1,3,["G1096"]],[3,4,["G1722"]],[4,5,["G2414"]],[5,6,["G3588"]],[6,10,["G1456"]],[10,11,["G2532"]],[11,13,["G2258"]],[13,14,["G5494"]]]},{"k":26504,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,3,["G4043"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G2411"]],[6,7,["G1722"]],[7,8,["G4672"]],[8,9,["G4745"]]]},{"k":26505,"v":[[0,1,["G3767"]],[1,6,["G2944","G3588","G2453"]],[6,7,["G846"]],[7,8,["G2532"]],[8,9,["G3004"]],[9,11,["G846"]],[11,13,["G2193","G4219"]],[13,19,["G142","G2257","G5590"]],[19,20,["G1487"]],[20,21,["G4771"]],[21,22,["G1488"]],[22,23,["G3588"]],[23,24,["G5547"]],[24,25,["G2036"]],[25,26,["G2254"]],[26,27,["G3954"]]]},{"k":26506,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,5,["G2036"]],[5,6,["G5213"]],[6,7,["G2532"]],[7,9,["G4100"]],[9,10,["G3756"]],[10,11,["G3588"]],[11,12,["G2041"]],[12,13,["G3739"]],[13,14,["G1473"]],[14,15,["G4160"]],[15,16,["G1722"]],[16,17,["G3450"]],[17,18,["G3962"]],[18,19,["G3686"]],[19,20,["G5023"]],[20,22,["G3140"]],[22,23,["G4012"]],[23,24,["G1700"]]]},{"k":26507,"v":[[0,1,["G235"]],[1,2,["G5210"]],[2,3,["G4100"]],[3,4,["G3756"]],[4,5,["G1063"]],[5,7,["G2075"]],[7,8,["G3756"]],[8,9,["G1537"]],[9,10,["G1699"]],[10,11,["G4263"]],[11,12,["G2531"]],[12,14,["G2036"]],[14,16,["G5213"]]]},{"k":26508,"v":[[0,1,["G1699"]],[1,2,["G4263"]],[2,3,["G191"]],[3,4,["G3450"]],[4,5,["G5456"]],[5,7,["G2504"]],[7,8,["G1097"]],[8,9,["G846"]],[9,10,["G2532"]],[10,12,["G190"]],[12,13,["G3427"]]]},{"k":26509,"v":[[0,2,["G2504"]],[2,3,["G1325"]],[3,5,["G846"]],[5,6,["G166"]],[6,7,["G2222"]],[7,8,["G2532"]],[8,11,["G3364","G1519","G165"]],[11,12,["G622"]],[12,13,["G2532","G3756"]],[13,15,["G5100"]],[15,17,["G726"]],[17,18,["G846"]],[18,20,["G1537"]],[20,21,["G3450"]],[21,22,["G5495"]]]},{"k":26510,"v":[[0,1,["G3450"]],[1,2,["G3962"]],[2,3,["G3739"]],[3,4,["G1325"]],[4,6,["G3427"]],[6,7,["G2076"]],[7,8,["G3187"]],[8,10,["G3956"]],[10,11,["G2532"]],[11,12,["G3762"]],[12,15,["G1410"]],[15,17,["G726"]],[17,20,["G1537"]],[20,21,["G3450"]],[21,22,["G3962"]],[22,23,["G5495"]]]},{"k":26511,"v":[[0,1,["G1473"]],[1,2,["G2532"]],[2,4,["G3962"]],[4,5,["G2070"]],[5,6,["G1520"]]]},{"k":26512,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,5,["G941"]],[5,6,["G3037"]],[6,7,["G3825"]],[7,8,["G2443"]],[8,9,["G3034"]],[9,10,["G846"]]]},{"k":26513,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G4183"]],[4,5,["G2570"]],[5,6,["G2041"]],[6,9,["G1166"]],[9,10,["G5213"]],[10,11,["G1537"]],[11,12,["G3450"]],[12,13,["G3962"]],[13,14,["G1223"]],[14,15,["G4169"]],[15,17,["G846"]],[17,18,["G2041"]],[18,21,["G3034"]],[21,22,["G3165"]]]},{"k":26514,"v":[[0,1,["G3588"]],[1,2,["G2453"]],[2,3,["G611"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G4012"]],[6,8,["G2570"]],[8,9,["G2041"]],[9,11,["G3034"]],[11,12,["G4571"]],[12,13,["G3756"]],[13,14,["G235"]],[14,15,["G4012"]],[15,16,["G988"]],[16,17,["G2532"]],[17,18,["G3754"]],[18,20,["G4771"]],[20,21,["G5607"]],[21,23,["G444"]],[23,24,["G4160"]],[24,25,["G4572"]],[25,26,["G2316"]]]},{"k":26515,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G2076"]],[4,6,["G3756"]],[6,7,["G1125"]],[7,8,["G1722"]],[8,9,["G5216"]],[9,10,["G3551"]],[10,11,["G1473"]],[11,12,["G2036"]],[12,14,["G2075"]],[14,15,["G2316"]]]},{"k":26516,"v":[[0,1,["G1487"]],[1,3,["G2036"]],[3,4,["G1565"]],[4,5,["G2316"]],[5,6,["G4314"]],[6,7,["G3739"]],[7,8,["G3588"]],[8,9,["G3056"]],[9,11,["G2316"]],[11,12,["G1096"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G1124"]],[15,16,["G1410","G3756"]],[16,18,["G3089"]]]},{"k":26517,"v":[[0,1,["G3004"]],[1,2,["G5210"]],[2,5,["G3739"]],[5,6,["G3588"]],[6,7,["G3962"]],[7,9,["G37"]],[9,10,["G2532"]],[10,11,["G649"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G2889"]],[14,16,["G987"]],[16,17,["G3754"]],[17,19,["G3004"]],[19,21,["G1510"]],[21,23,["G5207"]],[23,25,["G2316"]]]},{"k":26518,"v":[[0,1,["G1487"]],[1,3,["G4160"]],[3,4,["G3756"]],[4,5,["G3588"]],[5,6,["G2041"]],[6,8,["G3450"]],[8,9,["G3962"]],[9,10,["G4100"]],[10,11,["G3427"]],[11,12,["G3361"]]]},{"k":26519,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G4160"]],[4,5,["G2579"]],[5,7,["G4100"]],[7,8,["G3361"]],[8,9,["G1698"]],[9,10,["G4100"]],[10,11,["G3588"]],[11,12,["G2041"]],[12,13,["G2443"]],[13,16,["G1097"]],[16,17,["G2532"]],[17,18,["G4100"]],[18,19,["G3754"]],[19,20,["G3588"]],[20,21,["G3962"]],[21,23,["G1722"]],[23,24,["G1698"]],[24,26,["G2504"]],[26,27,["G1722"]],[27,28,["G846"]]]},{"k":26520,"v":[[0,1,["G3767"]],[1,3,["G2212"]],[3,4,["G3825"]],[4,6,["G4084"]],[6,7,["G846"]],[7,8,["G2532"]],[8,10,["G1831"]],[10,12,["G1537"]],[12,13,["G846"]],[13,14,["G5495"]]]},{"k":26521,"v":[[0,1,["G2532"]],[1,3,["G565"]],[3,4,["G3825"]],[4,5,["G4008"]],[5,6,["G2446"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G5117"]],[9,10,["G3699"]],[10,11,["G2491"]],[11,13,["G4412"]],[13,14,["G2258","G907"]],[14,15,["G2532"]],[15,16,["G1563"]],[16,18,["G3306"]]]},{"k":26522,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,3,["G2064"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G3004"]],[7,8,["G2491"]],[8,9,["G4160"]],[9,10,["G3762"]],[10,11,["G4592"]],[11,12,["G1161"]],[12,14,["G3956"]],[14,15,["G3745"]],[15,16,["G2491"]],[16,17,["G2036"]],[17,18,["G4012"]],[18,20,["G5127"]],[20,21,["G2258"]],[21,22,["G227"]]]},{"k":26523,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,3,["G4100"]],[3,4,["G1519"]],[4,5,["G846"]],[5,6,["G1563"]]]},{"k":26524,"v":[[0,1,["G1161"]],[1,3,["G5100"]],[3,5,["G2258"]],[5,6,["G770"]],[6,8,["G2976"]],[8,9,["G575"]],[9,10,["G963"]],[10,11,["G3588"]],[11,12,["G2968"]],[12,14,["G3137"]],[14,15,["G2532"]],[15,16,["G846"]],[16,17,["G79"]],[17,18,["G3136"]]]},{"k":26525,"v":[[0,1,["(G1161)"]],[1,2,["G2258"]],[2,4,["G3137"]],[4,6,["G218"]],[6,7,["G3588"]],[7,8,["G2962"]],[8,10,["G3464"]],[10,11,["G2532"]],[11,12,["G1591"]],[12,13,["G846"]],[13,14,["G4228"]],[14,16,["G848"]],[16,17,["G2359"]],[17,18,["G3739"]],[18,19,["G80"]],[19,20,["G2976"]],[20,22,["G770"]]]},{"k":26526,"v":[[0,1,["G3767"]],[1,3,["G79"]],[3,4,["G649"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G3004"]],[7,8,["G2962"]],[8,9,["G2396"]],[9,11,["G3739"]],[11,13,["G5368"]],[13,15,["G770"]]]},{"k":26527,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G191"]],[3,6,["G2036"]],[6,7,["G3778"]],[7,8,["G769"]],[8,9,["G2076"]],[9,10,["G3756"]],[10,11,["G4314"]],[11,12,["G2288"]],[12,13,["G235"]],[13,14,["G5228"]],[14,15,["G3588"]],[15,16,["G1391"]],[16,18,["G2316"]],[18,19,["G2443"]],[19,20,["G3588"]],[20,21,["G5207"]],[21,23,["G2316"]],[23,26,["G1392"]],[26,27,["G1223","G846"]]]},{"k":26528,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G25"]],[3,4,["G3136"]],[4,5,["G2532"]],[5,6,["G846"]],[6,7,["G79"]],[7,8,["G2532"]],[8,9,["G2976"]]]},{"k":26529,"v":[[0,1,["G5613"]],[1,4,["G191"]],[4,5,["G3767"]],[5,6,["G3754"]],[6,9,["G770"]],[9,11,["G3306","(G3303)"]],[11,12,["G1417"]],[12,13,["G2250"]],[13,14,["G5119"]],[14,15,["G1722"]],[15,17,["G3739"]],[17,18,["G5117"]],[18,21,["G2258"]]]},{"k":26530,"v":[[0,1,["G1899"]],[1,2,["G3326"]],[2,3,["G5124"]],[3,4,["G3004"]],[4,8,["G3101"]],[8,11,["G71"]],[11,12,["G1519"]],[12,13,["G2449"]],[13,14,["G3825"]]]},{"k":26531,"v":[[0,2,["G3101"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G4461"]],[6,7,["G3588"]],[7,8,["G2453"]],[8,10,["G3568"]],[10,11,["G2212"]],[11,13,["G3034"]],[13,14,["G4571"]],[14,15,["G2532"]],[15,16,["G5217"]],[16,18,["G1563"]],[18,19,["G3825"]]]},{"k":26532,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G1526"]],[3,5,["G3780"]],[5,6,["G1427"]],[6,7,["G5610"]],[7,9,["G3588"]],[9,10,["G2250"]],[10,11,["G1437"]],[11,13,["G5100"]],[13,14,["G4043"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G2250"]],[17,19,["G4350"]],[19,20,["G3756"]],[20,21,["G3754"]],[21,23,["G991"]],[23,24,["G3588"]],[24,25,["G5457"]],[25,27,["G5127"]],[27,28,["G2889"]]]},{"k":26533,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,4,["G5100"]],[4,5,["G4043"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G3571"]],[8,10,["G4350"]],[10,11,["G3754"]],[11,13,["G2076"]],[13,14,["G3756"]],[14,15,["G5457"]],[15,16,["G1722"]],[16,17,["G846"]]]},{"k":26534,"v":[[0,2,["G5023"]],[2,3,["G2036"]],[3,5,["G2532"]],[5,6,["G3326"]],[6,7,["G5124"]],[7,9,["G3004"]],[9,11,["G846"]],[11,12,["G2257"]],[12,13,["G5384"]],[13,14,["G2976"]],[14,15,["G2837"]],[15,16,["G235"]],[16,18,["G4198"]],[18,19,["G2443"]],[19,26,["G1852","G846"]]]},{"k":26535,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G846"]],[3,4,["G3101"]],[4,5,["G2962"]],[5,6,["G1487"]],[6,8,["G2837"]],[8,12,["G4982"]]]},{"k":26536,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G2046"]],[3,4,["G4012"]],[4,5,["G846"]],[5,6,["G2288"]],[6,7,["G1161"]],[7,8,["G1565"]],[8,9,["G1380"]],[9,10,["G3754"]],[10,13,["G3004"]],[13,14,["G4012"]],[14,17,["G2838"]],[17,19,["G5258"]]]},{"k":26537,"v":[[0,1,["G5119","(G3767)"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,5,["G846"]],[5,6,["G3954"]],[6,7,["G2976"]],[7,9,["G599"]]]},{"k":26538,"v":[[0,1,["G2532"]],[1,4,["G5463"]],[4,7,["G1223","G5209"]],[7,8,["G3754"]],[8,10,["G2252"]],[10,11,["G3756"]],[11,12,["G1563"]],[12,15,["G2443"]],[15,18,["G4100"]],[18,19,["G235"]],[19,22,["G71"]],[22,23,["G4314"]],[23,24,["G846"]]]},{"k":26539,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2381"]],[3,6,["G3004"]],[6,7,["G1324"]],[7,10,["G4827"]],[10,12,["G2249"]],[12,13,["G2532"]],[13,14,["G71"]],[14,15,["G2443"]],[15,18,["G599"]],[18,19,["G3326"]],[19,20,["G846"]]]},{"k":26540,"v":[[0,1,["G3767"]],[1,3,["G2424"]],[3,4,["G2064"]],[4,6,["G2147"]],[6,7,["(G846)"]],[7,9,["G2192"]],[9,11,["G1722"]],[11,12,["G3588"]],[12,13,["G3419"]],[13,14,["G5064"]],[14,15,["G2250"]],[15,16,["G2235"]]]},{"k":26541,"v":[[0,1,["G1161"]],[1,2,["G963"]],[2,3,["G2258"]],[3,5,["G1451"]],[5,6,["G2414"]],[6,7,["G5613"]],[7,8,["G1178"]],[8,9,["G4712"]],[9,10,["G575"]]]},{"k":26542,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G2453"]],[5,6,["G2064"]],[6,7,["G4314"]],[7,8,["G3136"]],[8,9,["G2532"]],[9,10,["G3137"]],[10,11,["G2443"]],[11,12,["G3888"]],[12,13,["G846"]],[13,14,["G4012"]],[14,15,["G846"]],[15,16,["G80"]]]},{"k":26543,"v":[[0,1,["G3767"]],[1,2,["G3136"]],[2,5,["G5613"]],[5,7,["G191"]],[7,8,["G3754"]],[8,9,["G2424"]],[9,11,["G2064"]],[11,14,["G5221"]],[14,15,["G846"]],[15,16,["G1161"]],[16,17,["G3137"]],[17,18,["G2516"]],[18,20,["G1722"]],[20,21,["G3588"]],[21,22,["G3624"]]]},{"k":26544,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G3136"]],[3,4,["G4314"]],[4,5,["G2424"]],[5,6,["G2962"]],[6,7,["G1487"]],[7,10,["G2258"]],[10,11,["G5602"]],[11,12,["G3450"]],[12,13,["G80"]],[13,15,["G3756"]],[15,16,["G2348","G302"]]]},{"k":26545,"v":[[0,1,["G235"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G2532"]],[5,6,["G3568"]],[6,7,["G3745"]],[7,10,["G154","G302"]],[10,12,["G2316"]],[12,13,["G2316"]],[13,15,["G1325"]],[15,17,["G4671"]]]},{"k":26546,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G4675"]],[5,6,["G80"]],[6,9,["G450"]]]},{"k":26547,"v":[[0,1,["G3136"]],[1,2,["G3004"]],[2,4,["G846"]],[4,6,["G1492"]],[6,7,["G3754"]],[7,11,["G450"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G386"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G2078"]],[17,18,["G2250"]]]},{"k":26548,"v":[[0,1,["G2424"]],[1,2,["G2036"]],[2,4,["G846"]],[4,5,["G1473"]],[5,6,["G1510"]],[6,7,["G3588"]],[7,8,["G386"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G2222"]],[11,14,["G4100"]],[14,15,["G1519"]],[15,16,["G1691"]],[16,17,["G2579"]],[17,20,["G599"]],[20,24,["G2198"]]]},{"k":26549,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G2198"]],[3,4,["G2532"]],[4,5,["G4100"]],[5,6,["G1519"]],[6,7,["G1691"]],[7,9,["G3364","G1519","G165"]],[9,10,["G599"]],[10,11,["G4100"]],[11,13,["G5124"]]]},{"k":26550,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G3483"]],[5,6,["G2962"]],[6,7,["G1473"]],[7,8,["G4100"]],[8,9,["G3754"]],[9,10,["G4771"]],[10,11,["G1488"]],[11,12,["G3588"]],[12,13,["G5547"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,17,["G2316"]],[17,20,["G2064"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G2889"]]]},{"k":26551,"v":[[0,1,["G2532"]],[1,5,["G5023"]],[5,6,["G2036"]],[6,10,["G565"]],[10,11,["G2532"]],[11,12,["G5455"]],[12,13,["G3137"]],[13,14,["G848"]],[14,15,["G79"]],[15,16,["G2977"]],[16,17,["G2036"]],[17,18,["G3588"]],[18,19,["G1320"]],[19,21,["G3918"]],[21,22,["G2532"]],[22,23,["G5455"]],[23,25,["G4571"]]]},{"k":26552,"v":[[0,3,["G5613"]],[3,4,["G1565"]],[4,5,["G191"]],[5,8,["G1453"]],[8,9,["G5035"]],[9,10,["G2532"]],[10,11,["G2064"]],[11,12,["G4314"]],[12,13,["G846"]]]},{"k":26553,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,5,["G3768"]],[5,6,["G2064"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G2968"]],[9,10,["G235"]],[10,11,["G2258"]],[11,12,["G1722"]],[12,14,["G5117"]],[14,15,["G3699"]],[15,16,["G3136"]],[16,17,["G5221"]],[17,18,["G846"]]]},{"k":26554,"v":[[0,1,["G3588"]],[1,2,["G2453"]],[2,3,["G3767"]],[3,5,["G5607"]],[5,6,["G3326"]],[6,7,["G846"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G3614"]],[10,11,["G2532"]],[11,12,["G3888"]],[12,13,["G846"]],[13,16,["G1492"]],[16,17,["G3137"]],[17,18,["G3754"]],[18,21,["G450"]],[21,22,["G5030"]],[22,23,["G2532"]],[23,25,["G1831"]],[25,26,["G190"]],[26,27,["G846"]],[27,28,["G3004"]],[28,30,["G5217"]],[30,31,["G1519"]],[31,32,["G3588"]],[32,33,["G3419"]],[33,34,["G2443"]],[34,35,["G2799"]],[35,36,["G1563"]]]},{"k":26555,"v":[[0,1,["G3767"]],[1,2,["G5613"]],[2,3,["G3137"]],[3,5,["G2064"]],[5,6,["G3699"]],[6,7,["G2424"]],[7,8,["G2258"]],[8,10,["G1492"]],[10,11,["G846"]],[11,14,["G4098"]],[14,15,["G1519"]],[15,16,["G846"]],[16,17,["G4228"]],[17,18,["G3004"]],[18,20,["G846"]],[20,21,["G2962"]],[21,22,["G1487"]],[22,25,["G2258"]],[25,26,["G5602"]],[26,27,["G3450"]],[27,28,["G80"]],[28,30,["G3756"]],[30,31,["G599","G302"]]]},{"k":26556,"v":[[0,1,["G5613"]],[1,2,["G2424"]],[2,3,["G3767"]],[3,4,["G1492"]],[4,5,["G846"]],[5,6,["G2799"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G2453"]],[9,11,["G2799"]],[11,14,["G4905"]],[14,15,["G846"]],[15,17,["G1690"]],[17,19,["G3588"]],[19,20,["G4151"]],[20,21,["G2532"]],[21,23,["G5015","(G1438)"]]]},{"k":26557,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,3,["G4226"]],[3,6,["G5087"]],[6,8,["G846"]],[8,9,["G3004"]],[9,11,["G846"]],[11,12,["G2962"]],[12,13,["G2064"]],[13,14,["G2532"]],[14,15,["G1492"]]]},{"k":26558,"v":[[0,1,["G2424"]],[1,2,["G1145"]]]},{"k":26559,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G3588"]],[3,4,["G2453"]],[4,5,["G2396"]],[5,6,["G4459"]],[6,8,["G5368"]],[8,9,["G846"]]]},{"k":26560,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G1537"]],[3,4,["G846"]],[4,5,["G2036"]],[5,6,["G1410"]],[6,7,["G3756"]],[7,9,["G3778"]],[9,11,["G455"]],[11,12,["G3588"]],[12,13,["G3788"]],[13,15,["G3588"]],[15,16,["G5185"]],[16,18,["G4160"]],[18,19,["G2443"]],[19,20,["G2532"]],[20,22,["G3778"]],[22,24,["G3361"]],[24,26,["G599"]]]},{"k":26561,"v":[[0,1,["G2424"]],[1,2,["G3767"]],[2,3,["G3825"]],[3,4,["G1690"]],[4,5,["G1722"]],[5,6,["G1438"]],[6,7,["G2064"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G3419"]],[10,11,["(G1161)"]],[11,12,["G2258"]],[12,14,["G4693"]],[14,15,["G2532"]],[15,17,["G3037"]],[17,18,["G1945"]],[18,19,["G1909"]],[19,20,["G846"]]]},{"k":26562,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,5,["G142"]],[5,6,["G3588"]],[6,7,["G3037"]],[7,8,["G3136"]],[8,9,["G3588"]],[9,10,["G79"]],[10,15,["G2348"]],[15,16,["G3004"]],[16,18,["G846"]],[18,19,["G2962"]],[19,22,["G2235"]],[22,24,["G3605"]],[24,25,["G1063"]],[25,28,["G2076"]],[28,31,["G5066"]]]},{"k":26563,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G2036"]],[5,7,["G3756"]],[7,9,["G4671"]],[9,10,["G3754"]],[10,11,["G1437"]],[11,14,["G4100"]],[14,17,["G3700"]],[17,18,["G3588"]],[18,19,["G1391"]],[19,21,["G2316"]]]},{"k":26564,"v":[[0,1,["G3767"]],[1,4,["G142"]],[4,5,["G3588"]],[5,6,["G3037"]],[6,10,["G3757"]],[10,11,["G3588"]],[11,12,["G2348"]],[12,13,["G2258"]],[13,14,["G2749"]],[14,15,["G1161"]],[15,16,["G2424"]],[16,17,["G142"]],[17,18,["G507"]],[18,20,["G3788"]],[20,21,["G2532"]],[21,22,["G2036"]],[22,23,["G3962"]],[23,25,["G2168"]],[25,26,["G4671"]],[26,27,["G3754"]],[27,30,["G191"]],[30,31,["G3450"]]]},{"k":26565,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G1492"]],[3,4,["G3754"]],[4,6,["G191"]],[6,7,["G3450"]],[7,8,["G3842"]],[8,9,["G235"]],[9,10,["G1223"]],[10,12,["G3588"]],[12,13,["G3793"]],[13,16,["G4026"]],[16,18,["G2036"]],[18,20,["G2443"]],[20,23,["G4100"]],[23,24,["G3754"]],[24,25,["G4771"]],[25,27,["G649"]],[27,28,["G3165"]]]},{"k":26566,"v":[[0,1,["G2532"]],[1,4,["G5023"]],[4,6,["G2036"]],[6,8,["G2905"]],[8,11,["G3173"]],[11,12,["G5456"]],[12,13,["G2976"]],[13,14,["G1204"]],[14,15,["G1854"]]]},{"k":26567,"v":[[0,1,["G2532"]],[1,5,["G2348"]],[5,7,["G1831"]],[7,8,["G1210"]],[8,9,["G5495"]],[9,10,["G2532"]],[10,11,["G4228"]],[11,13,["G2750"]],[13,14,["G2532"]],[14,15,["G846"]],[15,16,["G3799"]],[16,19,["G4019"]],[19,22,["G4676"]],[22,23,["G2424"]],[23,24,["G3004"]],[24,26,["G846"]],[26,27,["G3089"]],[27,28,["G846"]],[28,29,["G2532"]],[29,30,["G863"]],[30,32,["G5217"]]]},{"k":26568,"v":[[0,1,["G3767"]],[1,2,["G4183"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G2453"]],[5,7,["G2064"]],[7,8,["G4314"]],[8,9,["G3137"]],[9,10,["G2532"]],[10,12,["G2300"]],[12,15,["G3739"]],[15,16,["G2424"]],[16,17,["G4160"]],[17,18,["G4100"]],[18,19,["G1519"]],[19,20,["G846"]]]},{"k":26569,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G1537"]],[3,4,["G846"]],[4,7,["G565"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,10,["G5330"]],[10,11,["G2532"]],[11,12,["G2036"]],[12,13,["G846"]],[13,15,["G3739"]],[15,16,["G2424"]],[16,18,["G4160"]]]},{"k":26570,"v":[[0,1,["G3767"]],[1,2,["G4863"]],[2,3,["G3588"]],[3,5,["G749"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G5330"]],[8,10,["G4892"]],[10,11,["G2532"]],[11,12,["G3004"]],[12,13,["G5101"]],[13,14,["G4160"]],[14,16,["G3754"]],[16,17,["G3778"]],[17,18,["G444"]],[18,19,["G4160"]],[19,20,["G4183"]],[20,21,["G4592"]]]},{"k":26571,"v":[[0,1,["G1437"]],[1,6,["G863","G846","G3779"]],[6,7,["G3956"]],[7,10,["G4100"]],[10,11,["G1519"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G4514"]],[15,17,["G2064"]],[17,18,["G2532"]],[18,20,["G142"]],[20,21,["G2532"]],[21,22,["G2257"]],[22,23,["G5117"]],[23,24,["G2532"]],[24,25,["G1484"]]]},{"k":26572,"v":[[0,1,["G1161","(G5100)"]],[1,2,["G1520"]],[2,3,["G1537"]],[3,4,["G846"]],[4,6,["G2533"]],[6,7,["G5607"]],[7,10,["G749"]],[10,12,["G1565"]],[12,13,["G1763"]],[13,14,["G2036"]],[14,16,["G846"]],[16,17,["G5210"]],[17,18,["G1492","(G3756)"]],[18,21,["G3762"]]]},{"k":26573,"v":[[0,1,["G3761"]],[1,2,["G1260"]],[2,3,["G3754"]],[3,6,["G4851"]],[6,8,["G2254"]],[8,9,["G2443"]],[9,10,["G1520"]],[10,11,["G444"]],[11,13,["G599"]],[13,14,["G5228"]],[14,15,["G3588"]],[15,16,["G2992"]],[16,17,["G2532"]],[17,19,["G3588"]],[19,20,["G3650"]],[20,21,["G1484"]],[21,22,["G622"]],[22,23,["G3361"]]]},{"k":26574,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,3,["G2036"]],[3,5,["G3756"]],[5,6,["G575"]],[6,7,["G1438"]],[7,8,["G235"]],[8,9,["G5607"]],[9,11,["G749"]],[11,12,["G1565"]],[12,13,["G1763"]],[13,15,["G4395"]],[15,16,["G3754"]],[16,17,["G2424"]],[17,18,["G3195"]],[18,19,["G599"]],[19,20,["G5228"]],[20,22,["G1484"]]]},{"k":26575,"v":[[0,1,["G2532"]],[1,2,["G3756"]],[2,3,["G5228"]],[3,5,["G1484"]],[5,6,["G3440"]],[6,7,["G235"]],[7,8,["G2443"]],[8,9,["G2532"]],[9,13,["G4863"]],[13,14,["G1519"]],[14,15,["G1520"]],[15,16,["G3588"]],[16,17,["G5043"]],[17,19,["G2316"]],[19,23,["G1287"]]]},{"k":26576,"v":[[0,1,["G3767"]],[1,2,["G575"]],[2,3,["G1565"]],[3,4,["G2250"]],[4,9,["G4823"]],[9,11,["G2443"]],[11,15,["G615","G846"]]]},{"k":26577,"v":[[0,1,["G2424"]],[1,2,["G3767"]],[2,3,["G4043"]],[3,4,["G3756"]],[4,5,["G2089"]],[5,6,["G3954"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G2453"]],[9,10,["G235"]],[10,11,["G565"]],[11,12,["G1564"]],[12,13,["G1519"]],[13,15,["G5561"]],[15,17,["G1451"]],[17,18,["G3588"]],[18,19,["G2048"]],[19,20,["G1519"]],[20,22,["G4172"]],[22,23,["G3004"]],[23,24,["G2187"]],[24,26,["G2546"]],[26,27,["G1304"]],[27,28,["G3326"]],[28,29,["G846"]],[29,30,["G3101"]]]},{"k":26578,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,4,["G3957"]],[4,5,["G2258"]],[5,8,["G1451"]],[8,9,["G2532"]],[9,10,["G4183"]],[10,16,["G305","G1537","G3588","G5561"]],[16,17,["G1519"]],[17,18,["G2414"]],[18,19,["G4253"]],[19,20,["G3588"]],[20,21,["G3957"]],[21,22,["G2443"]],[22,23,["G48"]],[23,24,["G1438"]]]},{"k":26579,"v":[[0,1,["G3767"]],[1,2,["G2212"]],[2,5,["G2424"]],[5,6,["G2532"]],[6,7,["G3004"]],[7,8,["G3326"]],[8,9,["G240"]],[9,12,["G2476"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G2411"]],[15,16,["G5101"]],[16,17,["G1380"]],[17,18,["G5213"]],[18,19,["G3754"]],[19,22,["G3364"]],[22,23,["G2064"]],[23,24,["G1519"]],[24,25,["G3588"]],[25,26,["G1859"]]]},{"k":26580,"v":[[0,1,["G1161"]],[1,2,["G2532"]],[2,3,["G3588"]],[3,5,["G749"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G5330"]],[8,10,["G1325"]],[10,12,["G1785"]],[12,13,["G2443"]],[13,14,["G1437"]],[14,16,["G5100"]],[16,17,["G1097"]],[17,18,["G4226"]],[18,20,["G2076"]],[20,23,["G3377"]],[23,25,["G3704"]],[25,28,["G4084"]],[28,29,["G846"]]]},{"k":26581,"v":[[0,1,["G3767"]],[1,2,["G2424"]],[2,3,["G1803"]],[3,4,["G2250"]],[4,5,["G4253"]],[5,6,["G3588"]],[6,7,["G3957"]],[7,8,["G2064"]],[8,9,["G1519"]],[9,10,["G963"]],[10,11,["G3699"]],[11,12,["G2976"]],[12,13,["G2258"]],[13,17,["G2348"]],[17,18,["G3739"]],[18,20,["G1453"]],[20,21,["G1537"]],[21,23,["G3498"]]]},{"k":26582,"v":[[0,0,["(G3767)"]],[0,1,["G1563"]],[1,3,["G4160"]],[3,4,["G4160"]],[4,6,["G1173"]],[6,7,["G2532"]],[7,8,["G3136"]],[8,9,["G1247"]],[9,10,["G1161"]],[10,11,["G2976"]],[11,12,["G2258"]],[12,13,["G1520"]],[13,21,["G4873"]],[21,22,["G846"]]]},{"k":26583,"v":[[0,1,["G3767"]],[1,2,["G2983"]],[2,3,["G3137"]],[3,5,["G3046"]],[5,7,["G3464"]],[7,9,["G4101","G3487"]],[9,11,["G4186"]],[11,13,["G218"]],[13,14,["G3588"]],[14,15,["G4228"]],[15,17,["G2424"]],[17,18,["G2532"]],[18,19,["G1591"]],[19,20,["G846"]],[20,21,["G4228"]],[21,23,["G848"]],[23,24,["G2359"]],[24,25,["G1161"]],[25,26,["G3588"]],[26,27,["G3614"]],[27,29,["G4137"]],[29,30,["G1537"]],[30,31,["G3588"]],[31,32,["G3744"]],[32,34,["G3588"]],[34,35,["G3464"]]]},{"k":26584,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G1520"]],[3,4,["G1537"]],[4,5,["G846"]],[5,6,["G3101"]],[6,7,["G2455"]],[7,8,["G2469"]],[8,9,["G4613"]],[9,12,["G3195"]],[12,13,["G3860"]],[13,14,["G846"]]]},{"k":26585,"v":[[0,1,["G1302"]],[1,3,["G3756"]],[3,4,["G5124"]],[4,5,["G3464"]],[5,6,["G4097"]],[6,9,["G5145"]],[9,10,["G1220"]],[10,11,["G2532"]],[11,12,["G1325"]],[12,15,["G4434"]]]},{"k":26586,"v":[[0,0,["(G1161)"]],[0,1,["G5124"]],[1,3,["G2036"]],[3,4,["G3756"]],[4,5,["G3754"]],[5,6,["G846"]],[6,7,["G3199"]],[7,8,["G4012"]],[8,9,["G3588"]],[9,10,["G4434"]],[10,11,["G235"]],[11,12,["G3754"]],[12,14,["G2258"]],[14,16,["G2812"]],[16,17,["G2532"]],[17,18,["G2192"]],[18,19,["G3588"]],[19,20,["G1101"]],[20,21,["G2532"]],[21,22,["G941"]],[22,25,["G906"]],[25,26,[]]]},{"k":26587,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,6,["G863","G846"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G2250"]],[9,11,["G3450"]],[11,12,["G1780"]],[12,15,["G5083"]],[15,16,["G846"]]]},{"k":26588,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G4434"]],[3,4,["G3842"]],[4,6,["G2192"]],[6,7,["G3326"]],[7,8,["G1438"]],[8,9,["G1161"]],[9,10,["G1691"]],[10,12,["G2192"]],[12,13,["G3756"]],[13,14,["G3842"]]]},{"k":26589,"v":[[0,1,["G4183"]],[1,2,["G3793"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G2453"]],[5,6,["G3767"]],[6,7,["G1097"]],[7,8,["G3754"]],[8,10,["G2076"]],[10,11,["G1563"]],[11,12,["G2532"]],[12,14,["G2064"]],[14,15,["G3756"]],[15,18,["G1223","G2424"]],[18,19,["G3440"]],[19,20,["G235"]],[20,21,["G2443"]],[21,24,["G1492"]],[24,25,["G2976"]],[25,26,["G2532"]],[26,27,["G3739"]],[27,30,["G1453"]],[30,31,["G1537"]],[31,33,["G3498"]]]},{"k":26590,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G1011"]],[5,6,["G2443"]],[6,13,["G615","G2976","G2532"]]]},{"k":26591,"v":[[0,1,["G3754"]],[1,5,["G1223"]],[5,6,["G846"]],[6,7,["G4183"]],[7,9,["G3588"]],[9,10,["G2453"]],[10,12,["G5217"]],[12,13,["G2532"]],[13,14,["G4100"]],[14,15,["G1519"]],[15,16,["G2424"]]]},{"k":26592,"v":[[0,2,["G3588"]],[2,4,["G1887"]],[4,5,["G4183"]],[5,6,["G3793"]],[6,9,["G2064"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G1859"]],[12,15,["G191"]],[15,16,["G3754"]],[16,17,["G2424"]],[17,19,["G2064"]],[19,20,["G1519"]],[20,21,["G2414"]]]},{"k":26593,"v":[[0,1,["G2983"]],[1,2,["G902"]],[2,5,["G5404"]],[5,6,["G2532"]],[6,8,["G1831"]],[8,9,["G1519"]],[9,10,["G5222"]],[10,11,["G846"]],[11,12,["G2532"]],[12,13,["G2896"]],[13,14,["G5614"]],[14,15,["G2127"]],[15,17,["G3588"]],[17,18,["G935"]],[18,20,["G2474"]],[20,22,["G2064"]],[22,23,["G1722"]],[23,25,["G3686"]],[25,28,["G2962"]]]},{"k":26594,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,6,["G2147"]],[6,9,["G3678"]],[9,10,["G2523"]],[10,11,["G1909","G846"]],[11,12,["G2531"]],[12,14,["G2076"]],[14,15,["G1125"]]]},{"k":26595,"v":[[0,1,["G5399"]],[1,2,["G3361"]],[2,3,["G2364"]],[3,5,["G4622"]],[5,6,["G2400"]],[6,7,["G4675"]],[7,8,["G935"]],[8,9,["G2064"]],[9,10,["G2521"]],[10,11,["G1909"]],[11,13,["G3688"]],[13,14,["G4454"]]]},{"k":26596,"v":[[0,0,["(G1161)"]],[0,2,["G5023"]],[2,3,["G1097"]],[3,4,["G3756"]],[4,5,["G846"]],[5,6,["G3101"]],[6,9,["G4412"]],[9,10,["G235"]],[10,11,["G3753"]],[11,12,["G2424"]],[12,14,["G1392"]],[14,15,["G5119"]],[15,16,["G3415"]],[16,18,["G3754"]],[18,20,["G5023"]],[20,21,["G2258"]],[21,22,["G1125"]],[22,23,["G1909"]],[23,24,["G846"]],[24,25,["G2532"]],[25,29,["G4160"]],[29,31,["G5023"]],[31,33,["G846"]]]},{"k":26597,"v":[[0,1,["G3588"]],[1,2,["G3793"]],[2,3,["G3767"]],[3,5,["G5607"]],[5,6,["G3326"]],[6,7,["G846"]],[7,8,["G3753"]],[8,10,["G5455"]],[10,11,["G2976"]],[11,13,["G1537"]],[13,15,["G3419"]],[15,16,["G2532"]],[16,17,["G1453"]],[17,18,["G846"]],[18,19,["G1537"]],[19,21,["G3498"]],[21,23,["G3140"]]]},{"k":26598,"v":[[0,3,["G1223","G5124"]],[3,4,["G3588"]],[4,5,["G3793"]],[5,6,["G2532"]],[6,7,["G5221"]],[7,8,["G846"]],[8,9,["G3754"]],[9,12,["G191"]],[12,14,["G846"]],[14,16,["G4160"]],[16,17,["G5124"]],[17,18,["G4592"]]]},{"k":26599,"v":[[0,1,["G3588"]],[1,2,["G5330"]],[2,3,["G3767"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G1438"]],[6,7,["G2334"]],[7,9,["G3754"]],[9,11,["G5623","(G3756)"]],[11,12,["G3762"]],[12,13,["G2396"]],[13,14,["G3588"]],[14,15,["G2889"]],[15,17,["G565"]],[17,18,["G3694"]],[18,19,["G846"]]]},{"k":26600,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G5100"]],[4,5,["G1672"]],[5,6,["G1537"]],[6,10,["G305"]],[10,11,["G2443"]],[11,12,["G4352"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G1859"]]]},{"k":26601,"v":[[0,2,["G3778"]],[2,3,["G4334"]],[3,4,["G3767"]],[4,6,["G5376"]],[6,7,["G3588"]],[7,9,["G575"]],[9,10,["G966"]],[10,12,["G1056"]],[12,13,["G2532"]],[13,14,["G2065"]],[14,15,["G846"]],[15,16,["G3004"]],[16,17,["G2962"]],[17,19,["G2309"]],[19,20,["G1492"]],[20,21,["G2424"]]]},{"k":26602,"v":[[0,1,["G5376"]],[1,2,["G2064"]],[2,3,["G2532"]],[3,4,["G3004"]],[4,5,["G406"]],[5,6,["G2532"]],[6,7,["G3825"]],[7,8,["G406"]],[8,9,["G2532"]],[9,10,["G5376"]],[10,11,["G3004"]],[11,12,["G2424"]]]},{"k":26603,"v":[[0,1,["G1161"]],[1,2,["G2424"]],[2,3,["G611"]],[3,4,["G846"]],[4,5,["G3004"]],[5,6,["G3588"]],[6,7,["G5610"]],[7,9,["G2064"]],[9,10,["G2443"]],[10,11,["G3588"]],[11,12,["G5207"]],[12,14,["G444"]],[14,17,["G1392"]]]},{"k":26604,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,7,["G3362"]],[7,9,["G2848"]],[9,11,["G4621"]],[11,12,["G4098"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G1093"]],[15,17,["G599"]],[17,18,["G846"]],[18,19,["G3306"]],[19,20,["G3441"]],[20,21,["G1161"]],[21,22,["G1437"]],[22,24,["G599"]],[24,27,["G5342"]],[27,28,["G4183"]],[28,29,["G2590"]]]},{"k":26605,"v":[[0,3,["G5368"]],[3,4,["G848"]],[4,5,["G5590"]],[5,7,["G622"]],[7,8,["G846"]],[8,9,["G2532"]],[9,12,["G3404"]],[12,13,["G848"]],[13,14,["G5590"]],[14,15,["G1722"]],[15,16,["G5129"]],[16,17,["G2889"]],[17,19,["G5442"]],[19,20,["G846"]],[20,21,["G1519"]],[21,22,["G2222"]],[22,23,["G166"]]]},{"k":26606,"v":[[0,1,["G1437"]],[1,3,["G5100"]],[3,4,["G1247"]],[4,5,["G1698"]],[5,8,["G190"]],[8,9,["G1698"]],[9,10,["G2532"]],[10,11,["G3699"]],[11,12,["G1473"]],[12,13,["G1510"]],[13,14,["G1563"]],[14,16,["G2532"]],[16,17,["G1699"]],[17,18,["G1249"]],[18,19,["G2071","(G2532)"]],[19,20,["G1437"]],[20,22,["G5100"]],[22,23,["G1247"]],[23,24,["G1698"]],[24,25,["G846"]],[25,28,["G3962"]],[28,29,["G5091"]]]},{"k":26607,"v":[[0,1,["G3568"]],[1,3,["G3450"]],[3,4,["G5590"]],[4,5,["G5015"]],[5,6,["G2532"]],[6,7,["G5101"]],[7,10,["G2036"]],[10,11,["G3962"]],[11,12,["G4982"]],[12,13,["G3165"]],[13,14,["G1537"]],[14,15,["G5026"]],[15,16,["G5610"]],[16,17,["G235"]],[17,20,["G1223","G5124"]],[20,21,["G2064"]],[21,23,["G1519"]],[23,24,["G5026"]],[24,25,["G5610"]]]},{"k":26608,"v":[[0,1,["G3962"]],[1,2,["G1392"]],[2,3,["G4675"]],[3,4,["G3686"]],[4,5,["G3767"]],[5,6,["G2064"]],[6,9,["G5456"]],[9,10,["G1537"]],[10,11,["G3772"]],[11,15,["G2532"]],[15,16,["G1392"]],[16,18,["G2532"]],[18,20,["G1392"]],[20,22,["G3825"]]]},{"k":26609,"v":[[0,1,["G3588"]],[1,2,["G3793"]],[2,3,["G3767"]],[3,6,["G2476"]],[6,7,["G2532"]],[7,8,["G191"]],[8,10,["G3004"]],[10,13,["G1096","G1027"]],[13,14,["G243"]],[14,15,["G3004"]],[15,17,["G32"]],[17,18,["G2980"]],[18,20,["G846"]]]},{"k":26610,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,5,["G3778"]],[5,6,["G5456"]],[6,7,["G1096"]],[7,8,["G3756"]],[8,9,["G1223"]],[9,11,["G1691"]],[11,12,["G235"]],[12,15,["G1223","G5209"]]]},{"k":26611,"v":[[0,1,["G3568"]],[1,2,["G2076"]],[2,4,["G2920"]],[4,6,["G5127"]],[6,7,["G2889"]],[7,8,["G3568"]],[8,10,["G3588"]],[10,11,["G758"]],[11,13,["G5127"]],[13,14,["G2889"]],[14,16,["G1544"]],[16,17,["G1854"]]]},{"k":26612,"v":[[0,2,["G2504"]],[2,3,["G1437"]],[3,7,["G5312"]],[7,8,["G1537"]],[8,9,["G3588"]],[9,10,["G1093"]],[10,12,["G1670"]],[12,13,["G3956"]],[13,15,["G4314"]],[15,16,["G1683"]]]},{"k":26613,"v":[[0,0,["(G1161)"]],[0,1,["G5124"]],[1,3,["G3004"]],[3,4,["G4591"]],[4,5,["G4169"]],[5,6,["G2288"]],[6,8,["G3195"]],[8,9,["G599"]]]},{"k":26614,"v":[[0,1,["G3588"]],[1,2,["G3793"]],[2,3,["G611"]],[3,4,["G846"]],[4,5,["G2249"]],[5,7,["G191"]],[7,9,["G1537"]],[9,10,["G3588"]],[10,11,["G3551"]],[11,12,["G3754"]],[12,13,["G5547"]],[13,14,["G3306"]],[14,16,["G1519","G165"]],[16,17,["G2532"]],[17,18,["G4459"]],[18,19,["G3004"]],[19,20,["G4771"]],[20,21,["G3588"]],[21,22,["G5207"]],[22,24,["G444"]],[24,25,["G1163"]],[25,28,["G5312"]],[28,29,["G5101"]],[29,30,["G2076"]],[30,31,["G3778"]],[31,32,["G5207"]],[32,34,["G444"]]]},{"k":26615,"v":[[0,1,["G3767"]],[1,2,["G2424"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G2089"]],[6,8,["G3398"]],[8,9,["G5550"]],[9,10,["G2076"]],[10,11,["G3588"]],[11,12,["G5457"]],[12,13,["G3326"]],[13,14,["G5216"]],[14,15,["G4043"]],[15,16,["G2193"]],[16,18,["G2192"]],[18,19,["G3588"]],[19,20,["G5457"]],[20,21,["G3363"]],[21,22,["G4653"]],[22,24,["G2638"]],[24,25,["G5209"]],[25,26,["G2532"]],[26,29,["G4043"]],[29,30,["G1722"]],[30,31,["G4653"]],[31,32,["G1492"]],[32,33,["G3756"]],[33,34,["G4226"]],[34,36,["G5217"]]]},{"k":26616,"v":[[0,1,["G2193"]],[1,3,["G2192"]],[3,4,["G5457"]],[4,5,["G4100"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G5457"]],[8,9,["G2443"]],[9,12,["G1096"]],[12,14,["G5207"]],[14,16,["G5457"]],[16,18,["G5023"]],[18,19,["G2980"]],[19,20,["G2424"]],[20,21,["G2532"]],[21,22,["G565"]],[22,25,["G2928"]],[25,27,["G575"]],[27,28,["G846"]]]},{"k":26617,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G4160"]],[5,7,["G5118"]],[7,8,["G4592"]],[8,9,["G1715"]],[9,10,["G846"]],[10,13,["G4100"]],[13,14,["G3756"]],[14,15,["G1519"]],[15,16,["G846"]]]},{"k":26618,"v":[[0,1,["G2443"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,5,["G2268"]],[5,6,["G3588"]],[6,7,["G4396"]],[7,10,["G4137"]],[10,11,["G3739"]],[11,13,["G2036"]],[13,14,["G2962"]],[14,15,["G5101"]],[15,17,["G4100"]],[17,18,["G2257"]],[18,19,["G189"]],[19,20,["G2532"]],[20,22,["G5101"]],[22,24,["G3588"]],[24,25,["G1023"]],[25,28,["G2962"]],[28,30,["G601"]]]},{"k":26619,"v":[[0,1,["G1223","G5124"]],[1,3,["G1410"]],[3,4,["G3756"]],[4,5,["G4100"]],[5,6,["G3754"]],[6,8,["G2268"]],[8,9,["G2036"]],[9,10,["G3825"]]]},{"k":26620,"v":[[0,3,["G5186"]],[3,4,["G846"]],[4,5,["G3788"]],[5,6,["G2532"]],[6,7,["G4456"]],[7,8,["G846"]],[8,9,["G2588"]],[9,10,["G2443"]],[10,13,["G3361"]],[13,14,["G1492"]],[14,17,["G3788"]],[17,18,["G2532"]],[18,19,["G3539"]],[19,22,["G2588"]],[22,23,["G2532"]],[23,25,["G1994"]],[25,26,["G2532"]],[26,29,["G2390"]],[29,30,["G846"]]]},{"k":26621,"v":[[0,2,["G5023"]],[2,3,["G2036"]],[3,4,["G2268"]],[4,5,["G3753"]],[5,7,["G1492"]],[7,8,["G846"]],[8,9,["G1391"]],[9,10,["G2532"]],[10,11,["G2980"]],[11,12,["G4012"]],[12,13,["G846"]]]},{"k":26622,"v":[[0,1,["G3676","(G3305","G2532)"]],[1,2,["G1537"]],[2,3,["G3588"]],[3,5,["G758"]],[5,6,["G2532"]],[6,7,["G4183"]],[7,8,["G4100"]],[8,9,["G1519"]],[9,10,["G846"]],[10,11,["G235"]],[11,12,["G1223"]],[12,14,["G3588"]],[14,15,["G5330"]],[15,18,["G3756"]],[18,19,["G3670"]],[19,21,["G3363"]],[21,24,["G1096"]],[24,29,["G656"]]]},{"k":26623,"v":[[0,1,["G1063"]],[1,3,["G25"]],[3,4,["G3588"]],[4,5,["G1391"]],[5,7,["G444"]],[7,8,["G3123"]],[8,9,["G2260"]],[9,10,["G3588"]],[10,11,["G1391"]],[11,13,["G2316"]]]},{"k":26624,"v":[[0,0,["(G1161)"]],[0,1,["G2424"]],[1,2,["G2896"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,7,["G4100"]],[7,8,["G1519"]],[8,9,["G1691"]],[9,10,["G4100"]],[10,11,["G3756"]],[11,12,["G1519"]],[12,13,["G1691"]],[13,14,["G235"]],[14,15,["G1519"]],[15,18,["G3992"]],[18,19,["G3165"]]]},{"k":26625,"v":[[0,1,["G2532"]],[1,4,["G2334"]],[4,5,["G1691"]],[5,6,["G2334"]],[6,9,["G3992"]],[9,10,["G3165"]]]},{"k":26626,"v":[[0,1,["G1473"]],[1,3,["G2064"]],[3,5,["G5457"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G2889"]],[8,9,["G2443"]],[9,10,["G3956"]],[10,11,["G4100"]],[11,12,["G1519"]],[12,13,["G1691"]],[13,15,["G3361"]],[15,16,["G3306"]],[16,17,["G1722"]],[17,18,["G4653"]]]},{"k":26627,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G5100"]],[4,5,["G191"]],[5,6,["G3450"]],[6,7,["G4487"]],[7,8,["G2532"]],[8,9,["G4100"]],[9,10,["G3361"]],[10,11,["G1473"]],[11,12,["G2919"]],[12,13,["G846"]],[13,14,["G3756"]],[14,15,["G1063"]],[15,17,["G2064"]],[17,18,["G3756"]],[18,19,["G2443"]],[19,20,["G2919"]],[20,21,["G3588"]],[21,22,["G2889"]],[22,23,["G235"]],[23,24,["G2443"]],[24,25,["G4982"]],[25,26,["G3588"]],[26,27,["G2889"]]]},{"k":26628,"v":[[0,3,["G114"]],[3,4,["G1691"]],[4,5,["G2532"]],[5,6,["G2983"]],[6,7,["G3361"]],[7,8,["G3450"]],[8,9,["G4487"]],[9,10,["G2192"]],[10,13,["G2919"]],[13,14,["G846"]],[14,15,["G3588"]],[15,16,["G3056"]],[16,17,["G3739"]],[17,20,["G2980"]],[20,22,["G1565"]],[22,24,["G2919"]],[24,25,["G846"]],[25,26,["G1722"]],[26,27,["G3588"]],[27,28,["G2078"]],[28,29,["G2250"]]]},{"k":26629,"v":[[0,1,["G3754"]],[1,2,["G1473"]],[2,4,["G3756"]],[4,5,["G2980"]],[5,6,["G1537"]],[6,7,["G1683"]],[7,8,["G235"]],[8,10,["G3962"]],[10,12,["G3992"]],[12,13,["G3165"]],[13,14,["G846"]],[14,15,["G1325"]],[15,16,["G3427"]],[16,18,["G1785"]],[18,19,["G5101"]],[19,22,["G2036"]],[22,23,["G2532"]],[23,24,["G5101"]],[24,27,["G2980"]]]},{"k":26630,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G846"]],[5,6,["G1785"]],[6,7,["G2076"]],[7,8,["G2222"]],[8,9,["G166"]],[9,10,["G3739"]],[10,11,["G1473"]],[11,12,["G2980"]],[12,13,["G3767"]],[13,15,["G2531"]],[15,16,["G3588"]],[16,17,["G3962"]],[17,18,["G2046"]],[18,20,["G3427"]],[20,21,["G3779"]],[21,23,["G2980"]]]},{"k":26631,"v":[[0,1,["G1161"]],[1,2,["G4253"]],[2,3,["G3588"]],[3,4,["G1859"]],[4,6,["G3588"]],[6,7,["G3957"]],[7,9,["G2424"]],[9,10,["G1492"]],[10,11,["G3754"]],[11,12,["G846"]],[12,13,["G5610"]],[13,15,["G2064"]],[15,16,["G2443"]],[16,19,["G3327"]],[19,21,["G1537"]],[21,22,["G5127"]],[22,23,["G2889"]],[23,24,["G4314"]],[24,25,["G3588"]],[25,26,["G3962"]],[26,28,["G25"]],[28,30,["G2398"]],[30,31,["G3588"]],[31,33,["G1722"]],[33,34,["G3588"]],[34,35,["G2889"]],[35,37,["G25"]],[37,38,["G846"]],[38,39,["G1519"]],[39,41,["G5056"]]]},{"k":26632,"v":[[0,1,["G2532"]],[1,2,["G1173"]],[2,4,["G1096"]],[4,5,["G3588"]],[5,6,["G1228"]],[6,8,["G2235"]],[8,9,["G906"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G2588"]],[12,14,["G2455"]],[14,15,["G2469"]],[15,16,["G4613"]],[16,18,["G2443"]],[18,19,["G3860"]],[19,20,["G846"]]]},{"k":26633,"v":[[0,1,["G2424"]],[1,2,["G1492"]],[2,3,["G3754"]],[3,4,["G3588"]],[4,5,["G3962"]],[5,7,["G1325"]],[7,9,["G3956"]],[9,10,["G1519"]],[10,11,["G846"]],[11,12,["G5495"]],[12,13,["G2532"]],[13,14,["G3754"]],[14,17,["G1831"]],[17,18,["G575"]],[18,19,["G2316"]],[19,20,["G2532"]],[20,21,["G5217"]],[21,22,["G4314"]],[22,23,["G2316"]]]},{"k":26634,"v":[[0,2,["G1453"]],[2,3,["G1537"]],[3,4,["G1173"]],[4,5,["G2532"]],[5,7,["G5087"]],[7,9,["G2440"]],[9,10,["G2532"]],[10,11,["G2983"]],[11,13,["G3012"]],[13,15,["G1241"]],[15,16,["G1438"]]]},{"k":26635,"v":[[0,2,["G1534"]],[2,4,["G906"]],[4,5,["G5204"]],[5,6,["G1519"]],[6,8,["G3537"]],[8,9,["G2532"]],[9,10,["G756"]],[10,12,["G3538"]],[12,13,["G3588"]],[13,14,["G3101"]],[14,15,["G4228"]],[15,16,["G2532"]],[16,18,["G1591"]],[18,21,["G3588"]],[21,22,["G3012"]],[22,23,["G3739"]],[23,25,["G2258"]],[25,26,["G1241"]]]},{"k":26636,"v":[[0,1,["G3767"]],[1,2,["G2064"]],[2,4,["G4314"]],[4,5,["G4613"]],[5,6,["G4074"]],[6,7,["G2532"]],[7,8,["G1565"]],[8,9,["G3004"]],[9,11,["G846"]],[11,12,["G2962"]],[12,14,["G4771"]],[14,15,["G3538"]],[15,16,["G3450"]],[16,17,["G4228"]]]},{"k":26637,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G3739"]],[7,8,["G1473"]],[8,9,["G4160"]],[9,10,["G4771"]],[10,11,["G1492"]],[11,12,["G3756"]],[12,13,["G737"]],[13,14,["G1161"]],[14,17,["G1097"]],[17,18,["G3326","G5023"]]]},{"k":26638,"v":[[0,1,["G4074"]],[1,2,["G3004"]],[2,4,["G846"]],[4,7,["G3364","G1519","G165"]],[7,8,["G3538"]],[8,9,["G3450"]],[9,10,["G4228"]],[10,11,["G2424"]],[11,12,["G611"]],[12,13,["G846"]],[13,14,["G3362"]],[14,16,["G3538"]],[16,17,["G4571"]],[17,18,["G3756"]],[18,20,["G2192"]],[20,21,["G3756"]],[21,22,["G3313"]],[22,23,["G3326"]],[23,24,["G1700"]]]},{"k":26639,"v":[[0,1,["G4613"]],[1,2,["G4074"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G2962"]],[6,7,["G3361"]],[7,8,["G3450"]],[8,9,["G4228"]],[9,10,["G3440"]],[10,11,["G235"]],[11,12,["G2532"]],[12,14,["G5495"]],[14,15,["G2532"]],[15,17,["G2776"]]]},{"k":26640,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,8,["G3068"]],[8,9,["G2192","G5532"]],[9,10,["G3756"]],[10,11,["G2228"]],[11,13,["G3538"]],[13,15,["G4228"]],[15,16,["G235"]],[16,17,["G2076"]],[17,18,["G2513"]],[18,20,["G3650"]],[20,21,["G2532"]],[21,22,["G5210"]],[22,23,["G2075"]],[23,24,["G2513"]],[24,25,["G235"]],[25,26,["G3780"]],[26,27,["G3956"]]]},{"k":26641,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,6,["G3860"]],[6,7,["G846"]],[7,8,["G1223","G5124"]],[8,9,["G2036"]],[9,12,["G2075"]],[12,13,["G3780"]],[13,14,["G3956"]],[14,15,["G2513"]]]},{"k":26642,"v":[[0,1,["G3767"]],[1,2,["G3753"]],[2,5,["G3538"]],[5,6,["G846"]],[6,7,["G4228"]],[7,8,["G2532"]],[8,10,["G2983"]],[10,11,["G848"]],[11,12,["G2440"]],[12,16,["G377"]],[16,17,["G3825"]],[17,19,["G2036"]],[19,21,["G846"]],[21,22,["G1097"]],[22,24,["G5101"]],[24,27,["G4160"]],[27,29,["G5213"]]]},{"k":26643,"v":[[0,1,["G5210"]],[1,2,["G5455"]],[2,3,["G3165"]],[3,4,["G1320"]],[4,5,["G2532"]],[5,6,["G2962"]],[6,7,["G2532"]],[7,9,["G3004"]],[9,10,["G2573"]],[10,11,["G1063"]],[11,14,["G1510"]]]},{"k":26644,"v":[[0,1,["G1487"]],[1,2,["G1473"]],[2,3,["G3767"]],[3,5,["G2962"]],[5,6,["G2532"]],[6,7,["G1320"]],[7,9,["G3538"]],[9,10,["G5216"]],[10,11,["G4228"]],[11,12,["G5210"]],[12,13,["G2532"]],[13,14,["G3784"]],[14,16,["G3538"]],[16,18,["G240"]],[18,19,["G4228"]]]},{"k":26645,"v":[[0,1,["G1063"]],[1,4,["G1325"]],[4,5,["G5213"]],[5,7,["G5262"]],[7,8,["G2443"]],[8,9,["G5210"]],[9,10,["(G2532)"]],[10,11,["G4160"]],[11,12,["G2531"]],[12,13,["G1473"]],[13,15,["G4160"]],[15,17,["G5213"]]]},{"k":26646,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,8,["G1401"]],[8,9,["G2076"]],[9,10,["G3756"]],[10,11,["G3187"]],[11,13,["G848"]],[13,14,["G2962"]],[14,15,["G3761"]],[15,19,["G652"]],[19,20,["G3187"]],[20,24,["G3992"]],[24,25,["G846"]]]},{"k":26647,"v":[[0,1,["G1487"]],[1,3,["G1492"]],[3,5,["G5023"]],[5,6,["G3107"]],[6,7,["G2075"]],[7,9,["G1437"]],[9,11,["G4160"]],[11,12,["G846"]]]},{"k":26648,"v":[[0,2,["G3004"]],[2,3,["G3756"]],[3,4,["G4012"]],[4,5,["G5216"]],[5,6,["G3956"]],[6,7,["G1473"]],[7,8,["G1492"]],[8,9,["G3739"]],[9,12,["G1586"]],[12,13,["G235"]],[13,14,["G2443"]],[14,15,["G3588"]],[15,16,["G1124"]],[16,19,["G4137"]],[19,22,["G5176"]],[22,23,["G740"]],[23,24,["G3326"]],[24,25,["G1700"]],[25,28,["G1869"]],[28,29,["G848"]],[29,30,["G4418"]],[30,31,["G1909"]],[31,32,["G1691"]]]},{"k":26649,"v":[[0,1,["G575","G737"]],[1,3,["G3004"]],[3,4,["G5213"]],[4,5,["G4253"]],[5,7,["G1096"]],[7,8,["G2443"]],[8,9,["G3752"]],[9,14,["G1096"]],[14,17,["G4100"]],[17,18,["G3754"]],[18,19,["G1473"]],[19,20,["G1510"]],[20,21,[]]]},{"k":26650,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,9,["G2983"]],[9,10,["G5100","G1437"]],[10,12,["G3992"]],[12,13,["G2983"]],[13,14,["G1691"]],[14,15,["G1161"]],[15,18,["G2983"]],[18,19,["G1691"]],[19,20,["G2983"]],[20,23,["G3992"]],[23,24,["G3165"]]]},{"k":26651,"v":[[0,2,["G2424"]],[2,4,["G5023"]],[4,5,["G2036"]],[5,8,["G5015"]],[8,10,["G4151"]],[10,11,["G2532"]],[11,12,["G3140"]],[12,13,["G2532"]],[13,14,["G2036"]],[14,15,["G281"]],[15,16,["G281"]],[16,18,["G3004"]],[18,20,["G5213"]],[20,21,["G3754"]],[21,22,["G1520"]],[22,23,["G1537"]],[23,24,["G5216"]],[24,26,["G3860"]],[26,27,["G3165"]]]},{"k":26652,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,4,["G991"]],[4,7,["G240","G1519"]],[7,8,["G639"]],[8,9,["G4012"]],[9,10,["G5101"]],[10,12,["G3004"]]]},{"k":26653,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G345"]],[4,5,["G1722"]],[5,6,["G2424"]],[6,7,["G2859"]],[7,8,["G1520"]],[8,9,["G1537"]],[9,10,["G846"]],[10,11,["G3101"]],[11,12,["G3739"]],[12,13,["G2424"]],[13,14,["G25"]]]},{"k":26654,"v":[[0,1,["G4613"]],[1,2,["G4074"]],[2,3,["G3767"]],[3,4,["G3506"]],[4,6,["G5129"]],[6,10,["G4441"]],[10,11,["G5101"]],[11,14,["G1498","G302"]],[14,15,["G4012"]],[15,16,["G3739"]],[16,18,["G3004"]]]},{"k":26655,"v":[[0,1,["G1565"]],[1,2,["G1161"]],[2,3,["G1968"]],[3,4,["G1909"]],[4,5,["G2424"]],[5,6,["G4738"]],[6,7,["G3004"]],[7,9,["G846"]],[9,10,["G2962"]],[10,11,["G5101"]],[11,12,["G2076"]],[12,13,[]]]},{"k":26656,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G1565"]],[3,5,["G2076"]],[5,7,["G3739"]],[7,8,["G1473"]],[8,10,["G1929"]],[10,12,["G5596"]],[12,16,["G911"]],[16,18,["G2532"]],[18,22,["G1686"]],[22,23,["G3588"]],[23,24,["G5596"]],[24,26,["G1325"]],[26,29,["G2455"]],[29,30,["G2469"]],[30,34,["G4613"]]]},{"k":26657,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,3,["G3588"]],[3,4,["G5596"]],[4,5,["G4567"]],[5,6,["G1525"]],[6,7,["G1519"]],[7,8,["G1565"]],[8,9,["G3767"]],[9,10,["G3004"]],[10,11,["G2424"]],[11,13,["G846"]],[13,14,["G3739"]],[14,16,["G4160"]],[16,17,["G4160"]],[17,18,["G5032"]]]},{"k":26658,"v":[[0,1,["G1161"]],[1,3,["G3762"]],[3,6,["G345"]],[6,7,["G1097"]],[7,8,["G4314"]],[8,10,["G5101"]],[10,12,["G2036"]],[12,13,["G5124"]],[13,15,["G846"]]]},{"k":26659,"v":[[0,1,["G1063"]],[1,2,["G5100"]],[2,5,["G1380"]],[5,6,["G1893"]],[6,7,["G2455"]],[7,8,["G2192"]],[8,9,["G3588"]],[9,10,["G1101"]],[10,11,["G3754"]],[11,12,["G2424"]],[12,14,["G3004"]],[14,16,["G846"]],[16,17,["G59"]],[17,20,["G3739"]],[20,22,["G2192"]],[22,23,["G5532"]],[23,25,["G1519"]],[25,26,["G3588"]],[26,27,["G1859"]],[27,28,["G2228"]],[28,29,["G2443"]],[29,32,["G1325"]],[32,33,["G5100"]],[33,35,["G3588"]],[35,36,["G4434"]]]},{"k":26660,"v":[[0,1,["G1565"]],[1,2,["G3767"]],[2,4,["G2983"]],[4,5,["G3588"]],[5,6,["G5596"]],[6,9,["G1831","G2112"]],[9,10,["G1161"]],[10,12,["G2258"]],[12,13,["G3571"]]]},{"k":26661,"v":[[0,1,["G3753"]],[1,6,["G1831"]],[6,7,["G2424"]],[7,8,["G3004"]],[8,9,["G3568"]],[9,11,["G3588"]],[11,12,["G5207"]],[12,14,["G444"]],[14,15,["G1392"]],[15,16,["G2532"]],[16,17,["G2316"]],[17,19,["G1392"]],[19,20,["G1722"]],[20,21,["G846"]]]},{"k":26662,"v":[[0,1,["G1487"]],[1,2,["G2316"]],[2,4,["G1392"]],[4,5,["G1722"]],[5,6,["G846"]],[6,7,["G2316"]],[7,9,["G2532"]],[9,10,["G1392"]],[10,11,["G846"]],[11,12,["G1722"]],[12,13,["G1438"]],[13,14,["G2532"]],[14,16,["G2117"]],[16,17,["G1392"]],[17,18,["G846"]]]},{"k":26663,"v":[[0,2,["G5040"]],[2,3,["G2089"]],[3,6,["G3397"]],[6,8,["G1510"]],[8,9,["G3326"]],[9,10,["G5216"]],[10,13,["G2212"]],[13,14,["G3165"]],[14,15,["G2532"]],[15,16,["G2531"]],[16,18,["G2036"]],[18,20,["G3588"]],[20,21,["G2453"]],[21,22,["G3699"]],[22,23,["G1473"]],[23,24,["G5217"]],[24,25,["G5210"]],[25,26,["G1410","G3756"]],[26,27,["G2064"]],[27,28,["G2532"]],[28,29,["G737"]],[29,31,["G3004"]],[31,33,["G5213"]]]},{"k":26664,"v":[[0,2,["G2537"]],[2,3,["G1785"]],[3,5,["G1325"]],[5,7,["G5213"]],[7,8,["G2443"]],[8,10,["G25"]],[10,12,["G240"]],[12,13,["G2531"]],[13,16,["G25"]],[16,17,["G5209"]],[17,18,["G2443"]],[18,19,["G5210"]],[19,20,["G2532"]],[20,21,["G25"]],[21,23,["G240"]]]},{"k":26665,"v":[[0,1,["G1722"]],[1,2,["G5129"]],[2,4,["G3956"]],[4,6,["G1097"]],[6,7,["G3754"]],[7,9,["G2075"]],[9,10,["G1698"]],[10,11,["G3101"]],[11,12,["G1437"]],[12,14,["G2192"]],[14,15,["G26"]],[15,18,["G240","G1722"]]]},{"k":26666,"v":[[0,1,["G4613"]],[1,2,["G4074"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G2962"]],[6,7,["G4226"]],[7,8,["G5217"]],[8,10,["G2424"]],[10,11,["G611"]],[11,12,["G846"]],[12,13,["G3699"]],[13,15,["G5217"]],[15,17,["G1410"]],[17,18,["G3756"]],[18,19,["G190"]],[19,20,["G3427"]],[20,21,["G3568"]],[21,22,["G1161"]],[22,25,["G190"]],[25,26,["G3427"]],[26,27,["G5305"]]]},{"k":26667,"v":[[0,1,["G4074"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G2962"]],[5,6,["G1302"]],[6,7,["G1410","G3756"]],[7,9,["G190"]],[9,10,["G4671"]],[10,11,["G737"]],[11,15,["G5087"]],[15,16,["G3450"]],[16,17,["G5590"]],[17,20,["G5228","G4675"]]]},{"k":26668,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,7,["G5087"]],[7,8,["G4675"]],[8,9,["G5590"]],[9,12,["G5228","G1700"]],[12,13,["G281"]],[13,14,["G281"]],[14,16,["G3004"]],[16,18,["G4671"]],[18,20,["G220"]],[20,22,["G3364"]],[22,23,["G5455"]],[23,24,["G2193","G3757"]],[24,27,["G533"]],[27,28,["G3165"]],[28,29,["G5151"]]]},{"k":26669,"v":[[0,2,["G3361"]],[2,3,["G5216"]],[3,4,["G2588"]],[4,6,["G5015"]],[6,8,["G4100"]],[8,9,["G1519"]],[9,10,["G2316"]],[10,11,["G4100"]],[11,12,["G2532"]],[12,13,["G1519"]],[13,14,["G1691"]]]},{"k":26670,"v":[[0,1,["G1722"]],[1,2,["G3450"]],[2,3,["G3962"]],[3,4,["G3614"]],[4,5,["G1526"]],[5,6,["G4183"]],[6,7,["G3438"]],[7,11,["G1490"]],[11,16,["G2036","G302"]],[16,17,["G5213"]],[17,19,["G4198"]],[19,21,["G2090"]],[21,23,["G5117"]],[23,25,["G5213"]]]},{"k":26671,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G4198"]],[4,5,["G2532"]],[5,6,["G2090"]],[6,8,["G5117"]],[8,10,["G5213"]],[10,13,["G2064"]],[13,14,["G3825"]],[14,15,["G2532"]],[15,16,["G3880"]],[16,17,["G5209"]],[17,18,["G4314"]],[18,19,["G1683"]],[19,20,["G2443"]],[20,21,["G3699"]],[21,22,["G1473"]],[22,23,["G1510"]],[23,25,["G5210"]],[25,27,["G5600"]],[27,28,["G2532"]]]},{"k":26672,"v":[[0,1,["G2532"]],[1,2,["G3699"]],[2,3,["G1473"]],[3,4,["G5217"]],[4,6,["G1492"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G3598"]],[9,11,["G1492"]]]},{"k":26673,"v":[[0,1,["G2381"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G2962"]],[5,7,["G1492"]],[7,8,["G3756"]],[8,9,["G4226"]],[9,11,["G5217"]],[11,12,["G2532"]],[12,13,["G4459"]],[13,14,["G1410"]],[14,16,["G1492"]],[16,17,["G3588"]],[17,18,["G3598"]]]},{"k":26674,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1473"]],[5,6,["G1510"]],[6,7,["G3588"]],[7,8,["G3598"]],[8,9,["G3588"]],[9,10,["G225"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G2222"]],[13,15,["G3762"]],[15,16,["G2064"]],[16,17,["G4314"]],[17,18,["G3588"]],[18,19,["G3962"]],[19,20,["G1508"]],[20,21,["G1223"]],[21,22,["G1700"]]]},{"k":26675,"v":[[0,1,["G1487"]],[1,4,["G1097"]],[4,5,["G3165"]],[5,9,["G1097","G302"]],[9,10,["G3450"]],[10,11,["G3962"]],[11,12,["G2532"]],[12,13,["G2532"]],[13,14,["G575"]],[14,15,["G737"]],[15,17,["G1097"]],[17,18,["G846"]],[18,19,["G2532"]],[19,21,["G3708"]],[21,22,["G846"]]]},{"k":26676,"v":[[0,1,["G5376"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G2962"]],[5,6,["G1166"]],[6,7,["G2254"]],[7,8,["G3588"]],[8,9,["G3962"]],[9,10,["G2532"]],[10,12,["G714"]],[12,13,["G2254"]]]},{"k":26677,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,7,["G1510"]],[7,9,["G5118"]],[9,10,["G5550"]],[10,11,["G3326"]],[11,12,["G5216"]],[12,13,["G2532"]],[13,17,["G3756"]],[17,18,["G1097"]],[18,19,["G3165"]],[19,20,["G5376"]],[20,24,["G3708"]],[24,25,["G1691"]],[25,27,["G3708"]],[27,28,["G3588"]],[28,29,["G3962"]],[29,30,["G2532"]],[30,31,["G4459"]],[31,32,["G3004"]],[32,33,["G4771"]],[33,35,["G1166"]],[35,36,["G2254"]],[36,37,["G3588"]],[37,38,["G3962"]]]},{"k":26678,"v":[[0,1,["G4100"]],[1,3,["G3756"]],[3,4,["G3754"]],[4,5,["G1473"]],[5,7,["G1722"]],[7,8,["G3588"]],[8,9,["G3962"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G3962"]],[12,13,["G1722"]],[13,14,["G1698"]],[14,15,["G3588"]],[15,16,["G4487"]],[16,17,["G3739"]],[17,18,["G1473"]],[18,19,["G2980"]],[19,21,["G5213"]],[21,23,["G2980"]],[23,24,["G3756"]],[24,25,["G575"]],[25,26,["G1683"]],[26,27,["G1161"]],[27,28,["G3588"]],[28,29,["G3962"]],[29,31,["G3306"]],[31,32,["G1722"]],[32,33,["G1698"]],[33,34,["G846"]],[34,35,["G4160"]],[35,36,["G3588"]],[36,37,["G2041"]]]},{"k":26679,"v":[[0,1,["G4100"]],[1,2,["G3427"]],[2,3,["G3754"]],[3,4,["G1473"]],[4,6,["G1722"]],[6,7,["G3588"]],[7,8,["G3962"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G3962"]],[11,12,["G1722"]],[12,13,["G1698"]],[13,15,["G1490"]],[15,16,["G4100"]],[16,17,["G3427"]],[17,22,["G1223","G3588","G846","G2041"]]]},{"k":26680,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,9,["G4100"]],[9,10,["G1519"]],[10,11,["G1691"]],[11,12,["G3588"]],[12,13,["G2041"]],[13,14,["G3739"]],[14,15,["G1473"]],[15,16,["G4160"]],[16,20,["G2548","G4160"]],[20,21,["G2532"]],[21,22,["G3187"]],[22,25,["G5130"]],[25,28,["G4160"]],[28,29,["G3754"]],[29,30,["G1473"]],[30,31,["G4198"]],[31,32,["G4314"]],[32,33,["G3450"]],[33,34,["G3962"]]]},{"k":26681,"v":[[0,1,["G2532"]],[1,2,["G3748","G302"]],[2,5,["G154"]],[5,6,["G1722"]],[6,7,["G3450"]],[7,8,["G3686"]],[8,9,["G5124"]],[9,12,["G4160"]],[12,13,["G2443"]],[13,14,["G3588"]],[14,15,["G3962"]],[15,18,["G1392"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G5207"]]]},{"k":26682,"v":[[0,1,["G1437"]],[1,4,["G154"]],[4,6,["G5100"]],[6,7,["G1722"]],[7,8,["G3450"]],[8,9,["G3686"]],[9,10,["G1473"]],[10,12,["G4160"]],[12,13,[]]]},{"k":26683,"v":[[0,1,["G1437"]],[1,3,["G25"]],[3,4,["G3165"]],[4,5,["G5083"]],[5,6,["G1699"]],[6,7,["G1785"]]]},{"k":26684,"v":[[0,1,["G2532"]],[1,2,["G1473"]],[2,4,["G2065"]],[4,5,["G3588"]],[5,6,["G3962"]],[6,7,["G2532"]],[7,10,["G1325"]],[10,11,["G5213"]],[11,12,["G243"]],[12,13,["G3875"]],[13,14,["G2443"]],[14,17,["G3306"]],[17,18,["G3326"]],[18,19,["G5216"]],[19,21,["G1519","G165"]]]},{"k":26685,"v":[[0,2,["G3588"]],[2,3,["G4151"]],[3,5,["G225"]],[5,6,["G3739"]],[6,7,["G3588"]],[7,8,["G2889"]],[8,9,["G1410","G3756"]],[9,10,["G2983"]],[10,11,["G3754"]],[11,13,["G2334"]],[13,14,["G846"]],[14,15,["G3756"]],[15,16,["G3761"]],[16,17,["G1097"]],[17,18,["G846"]],[18,19,["G1161"]],[19,20,["G5210"]],[20,21,["G1097"]],[21,22,["G846"]],[22,23,["G3754"]],[23,25,["G3306"]],[25,26,["G3844"]],[26,27,["G5213"]],[27,28,["G2532"]],[28,30,["G2071"]],[30,31,["G1722"]],[31,32,["G5213"]]]},{"k":26686,"v":[[0,3,["G3756"]],[3,4,["G863"]],[4,5,["G5209"]],[5,6,["G3737"]],[6,9,["G2064"]],[9,10,["G4314"]],[10,11,["G5209"]]]},{"k":26687,"v":[[0,1,["G2089"]],[1,4,["G3397"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G2889"]],[7,8,["G2334"]],[8,9,["G3165"]],[9,10,["G3756"]],[10,11,["G2089"]],[11,12,["G1161"]],[12,13,["G5210"]],[13,14,["G2334"]],[14,15,["G3165"]],[15,16,["G3754"]],[16,17,["G1473"]],[17,18,["G2198"]],[18,19,["G5210"]],[19,21,["G2198"]],[21,22,["G2532"]]]},{"k":26688,"v":[[0,1,["G1722"]],[1,2,["G1565"]],[2,3,["G2250"]],[3,4,["G5210"]],[4,6,["G1097"]],[6,7,["G3754"]],[7,8,["G1473"]],[8,10,["G1722"]],[10,11,["G3450"]],[11,12,["G3962"]],[12,13,["G2532"]],[13,14,["G5210"]],[14,15,["G1722"]],[15,16,["G1698"]],[16,18,["G2504"]],[18,19,["G1722"]],[19,20,["G5213"]]]},{"k":26689,"v":[[0,3,["G2192"]],[3,4,["G3450"]],[4,5,["G1785"]],[5,6,["G2532"]],[6,7,["G5083"]],[7,8,["G846"]],[8,9,["G1565"]],[9,11,["G2076"]],[11,13,["G25"]],[13,14,["G3165"]],[14,15,["G1161"]],[15,18,["G25"]],[18,19,["G3165"]],[19,22,["G25"]],[22,23,["G5259"]],[23,24,["G3450"]],[24,25,["G3962"]],[25,26,["G2532"]],[26,27,["G1473"]],[27,29,["G25"]],[29,30,["G846"]],[30,31,["G2532"]],[31,33,["G1718"]],[33,34,["G1683"]],[34,36,["G846"]]]},{"k":26690,"v":[[0,1,["G2455"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G3756"]],[5,6,["G2469"]],[6,7,["G2962"]],[7,8,["G5101"]],[8,9,["G1096"]],[9,11,["G3754"]],[11,13,["G3195"]],[13,14,["G1718"]],[14,15,["G4572"]],[15,17,["G2254"]],[17,18,["G2532"]],[18,19,["G3780"]],[19,21,["G3588"]],[21,22,["G2889"]]]},{"k":26691,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G1437"]],[7,9,["G5100"]],[9,10,["G25"]],[10,11,["G3165"]],[11,14,["G5083"]],[14,15,["G3450"]],[15,16,["G3056"]],[16,17,["G2532"]],[17,18,["G3450"]],[18,19,["G3962"]],[19,21,["G25"]],[21,22,["G846"]],[22,23,["G2532"]],[23,26,["G2064"]],[26,27,["G4314"]],[27,28,["G846"]],[28,29,["G2532"]],[29,30,["G4160"]],[30,32,["G3438"]],[32,33,["G3844"]],[33,34,["G846"]]]},{"k":26692,"v":[[0,3,["G25"]],[3,4,["G3165"]],[4,5,["G3361"]],[5,6,["G5083"]],[6,7,["G3756"]],[7,8,["G3450"]],[8,9,["G3056"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G3056"]],[12,13,["G3739"]],[13,15,["G191"]],[15,16,["G2076"]],[16,17,["G3756"]],[17,18,["G1699"]],[18,19,["G235"]],[19,21,["G3962"]],[21,23,["G3992"]],[23,24,["G3165"]]]},{"k":26693,"v":[[0,2,["G5023"]],[2,5,["G2980"]],[5,7,["G5213"]],[7,10,["G3306"]],[10,11,["G3844"]],[11,12,["G5213"]]]},{"k":26694,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3875"]],[3,6,["G3588"]],[6,7,["G40"]],[7,8,["G4151"]],[8,9,["G3739"]],[9,10,["G3588"]],[10,11,["G3962"]],[11,13,["G3992"]],[13,14,["G1722"]],[14,15,["G3450"]],[15,16,["G3686"]],[16,17,["G1565"]],[17,19,["G1321"]],[19,20,["G5209"]],[20,22,["G3956"]],[22,23,["G2532"]],[23,29,["G5279","G3956","G5209"]],[29,30,["G3739"]],[30,33,["G2036"]],[33,35,["G5213"]]]},{"k":26695,"v":[[0,1,["G1515"]],[1,3,["G863"]],[3,5,["G5213"]],[5,6,["G1699"]],[6,7,["G1515"]],[7,9,["G1325"]],[9,11,["G5213"]],[11,12,["G3756"]],[12,13,["G2531"]],[13,14,["G3588"]],[14,15,["G2889"]],[15,16,["G1325"]],[16,17,["G1325"]],[17,18,["G1473"]],[18,20,["G5213"]],[20,22,["G3361"]],[22,23,["G5216"]],[23,24,["G2588"]],[24,26,["G5015"]],[26,27,["G3366"]],[27,31,["G1168"]]]},{"k":26696,"v":[[0,3,["G191"]],[3,4,["G3754"]],[4,5,["G1473"]],[5,6,["G2036"]],[6,8,["G5213"]],[8,11,["G5217"]],[11,12,["G2532"]],[12,13,["G2064"]],[13,15,["G4314"]],[15,16,["G5209"]],[16,17,["G1487"]],[17,19,["G25"]],[19,20,["G3165"]],[20,23,["G5463","G302"]],[23,24,["G3754"]],[24,26,["G2036"]],[26,28,["G4198"]],[28,29,["G4314"]],[29,30,["G3588"]],[30,31,["G3962"]],[31,32,["G3754"]],[32,33,["G3450"]],[33,34,["G3962"]],[34,35,["G2076"]],[35,36,["G3187"]],[36,38,["G3450"]]]},{"k":26697,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,5,["G2046"]],[5,6,["G5213"]],[6,7,["G4250"]],[7,11,["G1096"]],[11,12,["G2443"]],[12,13,["G3752"]],[13,18,["G1096"]],[18,21,["G4100"]]]},{"k":26698,"v":[[0,1,["G2089"]],[1,4,["G3756"]],[4,5,["G2980"]],[5,6,["G4183"]],[6,7,["G3326"]],[7,8,["G5216"]],[8,9,["G1063"]],[9,10,["G3588"]],[10,11,["G758"]],[11,13,["G5127"]],[13,14,["G2889"]],[14,15,["G2064"]],[15,16,["G2532"]],[16,17,["G2192","(G3756)"]],[17,18,["G3762"]],[18,19,["G1722"]],[19,20,["G1698"]]]},{"k":26699,"v":[[0,1,["G235"]],[1,2,["G2443"]],[2,3,["G3588"]],[3,4,["G2889"]],[4,6,["G1097"]],[6,7,["G3754"]],[7,9,["G25"]],[9,10,["G3588"]],[10,11,["G3962"]],[11,12,["G2532"]],[12,13,["G2531"]],[13,14,["G3588"]],[14,15,["G3962"]],[15,18,["G1781","G3427"]],[18,20,["G3779"]],[20,22,["G4160"]],[22,23,["G1453"]],[23,26,["G71"]],[26,27,["G1782"]]]},{"k":26700,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,3,["G3588"]],[3,4,["G228"]],[4,5,["G288"]],[5,6,["G2532"]],[6,7,["G3450"]],[7,8,["G3962"]],[8,9,["G2076"]],[9,10,["G3588"]],[10,11,["G1092"]]]},{"k":26701,"v":[[0,1,["G3956"]],[1,2,["G2814"]],[2,3,["G1722"]],[3,4,["G1698"]],[4,6,["G5342"]],[6,7,["G3361"]],[7,8,["G2590"]],[8,11,["G142","(G846)"]],[11,12,["G2532"]],[12,13,["G3956"]],[13,16,["G5342"]],[16,17,["G2590"]],[17,19,["G2508"]],[19,20,["G846"]],[20,21,["G2443"]],[21,25,["G5342"]],[25,26,["G4119"]],[26,27,["G2590"]]]},{"k":26702,"v":[[0,1,["G2235"]],[1,2,["G5210"]],[2,3,["G2075"]],[3,4,["G2513"]],[4,5,["G1223"]],[5,6,["G3588"]],[6,7,["G3056"]],[7,8,["G3739"]],[8,11,["G2980"]],[11,13,["G5213"]]]},{"k":26703,"v":[[0,1,["G3306"]],[1,2,["G1722"]],[2,3,["G1698"]],[3,5,["G2504"]],[5,6,["G1722"]],[6,7,["G5213"]],[7,8,["G2531"]],[8,9,["G3588"]],[9,10,["G2814"]],[10,11,["G1410","G3756"]],[11,12,["G5342"]],[12,13,["G2590"]],[13,14,["G575"]],[14,15,["G1438"]],[15,16,["G3362"]],[16,18,["G3306"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G288"]],[21,22,["G3761"]],[22,23,["G3779"]],[23,25,["G5210"]],[25,26,["G3362"]],[26,28,["G3306"]],[28,29,["G1722"]],[29,30,["G1698"]]]},{"k":26704,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,3,["G3588"]],[3,4,["G288"]],[4,5,["G5210"]],[5,7,["G3588"]],[7,8,["G2814"]],[8,11,["G3306"]],[11,12,["G1722"]],[12,13,["G1698"]],[13,15,["G2504"]],[15,16,["G1722"]],[16,17,["G846"]],[17,19,["G3778"]],[19,21,["G5342"]],[21,22,["G4183"]],[22,23,["G2590"]],[23,24,["G3754"]],[24,25,["G5565"]],[25,26,["G1700"]],[26,28,["G1410","(G3756)"]],[28,29,["G4160"]],[29,30,["G3762"]]]},{"k":26705,"v":[[0,5,["G3362","G5100","G3306"]],[5,6,["G1722"]],[6,7,["G1698"]],[7,10,["G906"]],[10,11,["G1854"]],[11,12,["G5613"]],[12,14,["G2814"]],[14,15,["G2532"]],[15,17,["G3583"]],[17,18,["G2532"]],[18,20,["G4863"]],[20,21,["G846"]],[21,22,["G2532"]],[22,23,["G906"]],[23,25,["G1519"]],[25,27,["G4442"]],[27,28,["G2532"]],[28,31,["G2545"]]]},{"k":26706,"v":[[0,1,["G1437"]],[1,3,["G3306"]],[3,4,["G1722"]],[4,5,["G1698"]],[5,6,["G2532"]],[6,7,["G3450"]],[7,8,["G4487"]],[8,9,["G3306"]],[9,10,["G1722"]],[10,11,["G5213"]],[11,14,["G154"]],[14,15,["G3739","G1437"]],[15,17,["G2309"]],[17,18,["G2532"]],[18,22,["G1096"]],[22,24,["G5213"]]]},{"k":26707,"v":[[0,1,["G1722","G5129"]],[1,3,["G3450"]],[3,4,["G3962"]],[4,5,["G1392"]],[5,6,["G2443"]],[6,8,["G5342"]],[8,9,["G4183"]],[9,10,["G2590"]],[10,11,["G2532"]],[11,14,["G1096"]],[14,15,["G1698"]],[15,16,["G3101"]]]},{"k":26708,"v":[[0,1,["G2531"]],[1,2,["G3588"]],[2,4,["G3962"]],[4,5,["G25"]],[5,6,["G3165"]],[6,10,["G2504","G25"]],[10,11,["G5209"]],[11,12,["G3306"]],[12,14,["G1722"]],[14,15,["G1699"]],[15,16,["G26"]]]},{"k":26709,"v":[[0,1,["G1437"]],[1,3,["G5083"]],[3,4,["G3450"]],[4,5,["G1785"]],[5,8,["G3306"]],[8,9,["G1722"]],[9,10,["G3450"]],[10,11,["G26"]],[11,13,["G2531"]],[13,14,["G1473"]],[14,16,["G5083"]],[16,17,["G3450"]],[17,18,["G3962"]],[18,19,["G1785"]],[19,20,["G2532"]],[20,21,["G3306"]],[21,22,["G1722"]],[22,23,["G846"]],[23,24,["G26"]]]},{"k":26710,"v":[[0,2,["G5023"]],[2,5,["G2980"]],[5,7,["G5213"]],[7,8,["G2443"]],[8,9,["G1699"]],[9,10,["G5479"]],[10,12,["G3306"]],[12,13,["G1722"]],[13,14,["G5213"]],[14,15,["G2532"]],[15,17,["G5216"]],[17,18,["G5479"]],[18,21,["G4137"]]]},{"k":26711,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,3,["G1699"]],[3,4,["G1785"]],[4,5,["G2443"]],[5,7,["G25"]],[7,9,["G240"]],[9,10,["G2531"]],[10,13,["G25"]],[13,14,["G5209"]]]},{"k":26712,"v":[[0,1,["G3187"]],[1,2,["G26"]],[2,3,["G2192"]],[3,5,["G3762"]],[5,7,["G5026"]],[7,8,["G2443"]],[8,10,["G5100"]],[10,12,["G5087"]],[12,13,["G848"]],[13,14,["G5590"]],[14,15,["G5228"]],[15,16,["G848"]],[16,17,["G5384"]]]},{"k":26713,"v":[[0,1,["G5210"]],[1,2,["G2075"]],[2,3,["G3450"]],[3,4,["G5384"]],[4,5,["G1437"]],[5,7,["G4160"]],[7,8,["G3745"]],[8,9,["G1473"]],[9,10,["G1781"]],[10,11,["G5213"]]]},{"k":26714,"v":[[0,5,["G3765","G3004","G5209"]],[5,6,["G1401"]],[6,7,["G3754"]],[7,8,["G3588"]],[8,9,["G1401"]],[9,10,["G1492"]],[10,11,["G3756"]],[11,12,["G5101"]],[12,13,["G846"]],[13,14,["G2962"]],[14,15,["G4160"]],[15,16,["G1161"]],[16,19,["G2046"]],[19,20,["G5209"]],[20,21,["G5384"]],[21,22,["G3754"]],[22,24,["G3956"]],[24,25,["G3739"]],[25,28,["G191"]],[28,29,["G3844"]],[29,30,["G3450"]],[30,31,["G3962"]],[31,35,["G1107"]],[35,37,["G5213"]]]},{"k":26715,"v":[[0,1,["G5210"]],[1,3,["G3756"]],[3,4,["G1586"]],[4,5,["G3165"]],[5,6,["G235"]],[6,7,["G1473"]],[7,9,["G1586"]],[9,10,["G5209"]],[10,11,["G2532"]],[11,12,["G5087"]],[12,13,["G5209"]],[13,14,["G2443"]],[14,15,["G5210"]],[15,17,["G5217"]],[17,18,["G2532"]],[18,20,["G5342"]],[20,21,["G2590"]],[21,22,["G2532"]],[22,24,["G5216"]],[24,25,["G2590"]],[25,27,["G3306"]],[27,28,["G2443"]],[28,29,["G3748","G302"]],[29,32,["G154"]],[32,34,["G3588"]],[34,35,["G3962"]],[35,36,["G1722"]],[36,37,["G3450"]],[37,38,["G3686"]],[38,41,["G1325"]],[41,43,["G5213"]]]},{"k":26716,"v":[[0,2,["G5023"]],[2,4,["G1781"]],[4,5,["G5213"]],[5,6,["G2443"]],[6,8,["G25"]],[8,10,["G240"]]]},{"k":26717,"v":[[0,1,["G1487"]],[1,2,["G3588"]],[2,3,["G2889"]],[3,4,["G3404"]],[4,5,["G5209"]],[5,7,["G1097"]],[7,8,["G3754"]],[8,10,["G3404"]],[10,11,["G1691"]],[11,12,["G4412"]],[12,15,["G5216"]]]},{"k":26718,"v":[[0,1,["G1487"]],[1,3,["G2258"]],[3,4,["G1537"]],[4,5,["G3588"]],[5,6,["G2889"]],[6,7,["G3588"]],[7,8,["G2889"]],[8,10,["G5368","G302"]],[10,12,["G2398"]],[12,13,["G1161"]],[13,14,["G3754"]],[14,16,["G2075"]],[16,17,["G3756"]],[17,18,["G1537"]],[18,19,["G3588"]],[19,20,["G2889"]],[20,21,["G235"]],[21,22,["G1473"]],[22,24,["G1586"]],[24,25,["G5209"]],[25,27,["G1537"]],[27,28,["G3588"]],[28,29,["G2889"]],[29,30,["G1223","G5124"]],[30,31,["G3588"]],[31,32,["G2889"]],[32,33,["G3404"]],[33,34,["G5209"]]]},{"k":26719,"v":[[0,1,["G3421"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,4,["G3739"]],[4,5,["G1473"]],[5,6,["G2036"]],[6,8,["G5213"]],[8,10,["G1401"]],[10,11,["G2076"]],[11,12,["G3756"]],[12,13,["G3187"]],[13,15,["G848"]],[15,16,["G2962"]],[16,17,["G1487"]],[17,20,["G1377"]],[20,21,["G1691"]],[21,24,["G2532"]],[24,25,["G1377"]],[25,26,["G5209"]],[26,27,["G1487"]],[27,30,["G5083"]],[30,31,["G3450"]],[31,32,["G3056"]],[32,35,["G5083"]],[35,36,["G5212"]],[36,37,["G2532"]]]},{"k":26720,"v":[[0,1,["G235"]],[1,2,["G3956"]],[2,4,["G5023"]],[4,7,["G4160"]],[7,9,["G5213"]],[9,13,["G1223","G3450","G3686"]],[13,14,["G3754"]],[14,16,["G1492"]],[16,17,["G3756"]],[17,20,["G3992"]],[20,21,["G3165"]]]},{"k":26721,"v":[[0,1,["G1487"]],[1,4,["G3361"]],[4,5,["G2064"]],[5,6,["G2532"]],[6,7,["G2980"]],[7,9,["G846"]],[9,12,["G3756"]],[12,13,["G2192"]],[13,14,["G266"]],[14,15,["G1161"]],[15,16,["G3568"]],[16,18,["G2192"]],[18,19,["G3756"]],[19,20,["G4392"]],[20,21,["G4012"]],[21,22,["G848"]],[22,23,["G266"]]]},{"k":26722,"v":[[0,3,["G3404"]],[3,4,["G1691"]],[4,5,["G3404"]],[5,6,["G3450"]],[6,7,["G3962"]],[7,8,["G2532"]]]},{"k":26723,"v":[[0,1,["G1487"]],[1,4,["G3361"]],[4,5,["G4160"]],[5,6,["G1722"]],[6,7,["G846"]],[7,8,["G3588"]],[8,9,["G2041"]],[9,10,["G3739"]],[10,11,["G3762"]],[11,13,["G243"]],[13,14,["G4160"]],[14,17,["G3756"]],[17,18,["G2192"]],[18,19,["G266"]],[19,20,["G1161"]],[20,21,["G3568"]],[21,24,["G2532"]],[24,25,["G3708"]],[25,26,["G2532"]],[26,27,["G3404"]],[27,28,["G2532"]],[28,29,["G1691"]],[29,30,["G2532"]],[30,31,["G3450"]],[31,32,["G3962"]]]},{"k":26724,"v":[[0,1,["G235"]],[1,6,["G2443"]],[6,7,["G3588"]],[7,8,["G3056"]],[8,11,["G4137"]],[11,14,["G1125"]],[14,15,["G1722"]],[15,16,["G846"]],[16,17,["G3551"]],[17,19,["G3404"]],[19,20,["G3165"]],[20,23,["G1432"]]]},{"k":26725,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,3,["G3588"]],[3,4,["G3875"]],[4,6,["G2064"]],[6,7,["G3739"]],[7,8,["G1473"]],[8,10,["G3992"]],[10,12,["G5213"]],[12,13,["G3844"]],[13,14,["G3588"]],[14,15,["G3962"]],[15,17,["G3588"]],[17,18,["G4151"]],[18,20,["G225"]],[20,21,["G3739"]],[21,22,["G1607"]],[22,23,["G3844"]],[23,24,["G3588"]],[24,25,["G3962"]],[25,26,["G1565"]],[26,28,["G3140"]],[28,29,["G4012"]],[29,30,["G1700"]]]},{"k":26726,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G2532"]],[3,6,["G3140"]],[6,7,["G3754"]],[7,10,["G2075"]],[10,11,["G3326"]],[11,12,["G1700"]],[12,13,["G575"]],[13,15,["G746"]]]},{"k":26727,"v":[[0,2,["G5023"]],[2,5,["G2980"]],[5,7,["G5213"]],[7,8,["G2443"]],[8,11,["G3361"]],[11,13,["G4624"]]]},{"k":26728,"v":[[0,3,["G4160"]],[3,4,["G5209"]],[4,8,["G656"]],[8,9,["G235"]],[9,11,["G5610"]],[11,12,["G2064"]],[12,13,["G2443"]],[13,14,["G3956"]],[14,15,["G615"]],[15,16,["G5209"]],[16,18,["G1380"]],[18,21,["G4374"]],[21,22,["G2316"]],[22,23,["G2999"]]]},{"k":26729,"v":[[0,1,["G2532"]],[1,3,["G5023"]],[3,6,["G4160"]],[6,8,["G5213"]],[8,9,["G3754"]],[9,12,["G3756"]],[12,13,["G1097"]],[13,14,["G3588"]],[14,15,["G3962"]],[15,16,["G3761"]],[16,17,["G1691"]]]},{"k":26730,"v":[[0,1,["G235"]],[1,3,["G5023"]],[3,6,["G2980"]],[6,7,["G5213"]],[7,8,["G2443"]],[8,9,["G3752"]],[9,10,["G3588"]],[10,11,["G5610"]],[11,13,["G2064"]],[13,16,["G3421"]],[16,17,["G3754"]],[17,18,["G1473"]],[18,19,["G2036"]],[19,20,["G5213"]],[20,22,["G846"]],[22,23,["G1161"]],[23,25,["G5023"]],[25,27,["G2036"]],[27,28,["G3756"]],[28,30,["G5213"]],[30,31,["G1537"]],[31,33,["G746"]],[33,34,["G3754"]],[34,36,["G2252"]],[36,37,["G3326"]],[37,38,["G5216"]]]},{"k":26731,"v":[[0,1,["G1161"]],[1,2,["G3568"]],[2,6,["G5217"]],[6,7,["G4314"]],[7,10,["G3992"]],[10,11,["G3165"]],[11,12,["G2532"]],[12,13,["G3762"]],[13,14,["G1537"]],[14,15,["G5216"]],[15,16,["G2065"]],[16,17,["G3165"]],[17,18,["G4226"]],[18,19,["G5217"]],[19,20,[]]]},{"k":26732,"v":[[0,1,["G235"]],[1,2,["G3754"]],[2,5,["G2980"]],[5,7,["G5023"]],[7,9,["G5213"]],[9,10,["G3077"]],[10,12,["G4137"]],[12,13,["G5216"]],[13,14,["G2588"]]]},{"k":26733,"v":[[0,1,["G235"]],[1,2,["G1473"]],[2,3,["G3004"]],[3,4,["G5213"]],[4,5,["G3588"]],[5,6,["G225"]],[6,9,["G4851"]],[9,11,["G5213"]],[11,12,["G2443"]],[12,13,["G1473"]],[13,15,["G565"]],[15,16,["G1063"]],[16,18,["G1437"]],[18,21,["G565","G3361"]],[21,22,["G3588"]],[22,23,["G3875"]],[23,25,["G3756"]],[25,26,["G2064"]],[26,27,["G4314"]],[27,28,["G5209"]],[28,29,["G1161"]],[29,30,["G1437"]],[30,32,["G4198"]],[32,35,["G3992"]],[35,36,["G846"]],[36,37,["G4314"]],[37,38,["G5209"]]]},{"k":26734,"v":[[0,1,["G2532"]],[1,3,["G1565"]],[3,5,["G2064"]],[5,8,["G1651"]],[8,9,["G3588"]],[9,10,["G2889"]],[10,11,["G4012"]],[11,12,["G266"]],[12,13,["G2532"]],[13,14,["G4012"]],[14,15,["G1343"]],[15,16,["G2532"]],[16,17,["G4012"]],[17,18,["G2920"]]]},{"k":26735,"v":[[0,1,["G4012"]],[1,2,["G266","(G3303)"]],[2,3,["G3754"]],[3,5,["G4100"]],[5,6,["G3756"]],[6,7,["G1519"]],[7,8,["G1691"]]]},{"k":26736,"v":[[0,0,["(G1161)"]],[0,1,["G4012"]],[1,2,["G1343"]],[2,3,["G3754"]],[3,5,["G5217"]],[5,6,["G4314"]],[6,7,["G3450"]],[7,8,["G3962"]],[8,9,["G2532"]],[9,11,["G2334"]],[11,12,["G3165"]],[12,13,["G3756"]],[13,14,["G2089"]]]},{"k":26737,"v":[[0,0,["(G1161)"]],[0,1,["G4012"]],[1,2,["G2920"]],[2,3,["G3754"]],[3,4,["G3588"]],[4,5,["G758"]],[5,7,["G5127"]],[7,8,["G2889"]],[8,10,["G2919"]]]},{"k":26738,"v":[[0,2,["G2192"]],[2,3,["G2089"]],[3,5,["G4183"]],[5,7,["G3004"]],[7,9,["G5213"]],[9,10,["G235"]],[10,12,["G1410","G3756"]],[12,13,["G941"]],[13,15,["G737"]]]},{"k":26739,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,3,["G1565"]],[3,4,["G3588"]],[4,5,["G4151"]],[5,7,["G225"]],[7,9,["G2064"]],[9,12,["G3594"]],[12,13,["G5209"]],[13,14,["G1519"]],[14,15,["G3956"]],[15,16,["G225"]],[16,17,["G1063"]],[17,20,["G3756"]],[20,21,["G2980"]],[21,22,["G575"]],[22,23,["G1438"]],[23,24,["G235"]],[24,25,["G3745","G302"]],[25,28,["G191"]],[28,32,["G2980"]],[32,33,["G2532"]],[33,36,["G312"]],[36,37,["G5213"]],[37,40,["G2064"]]]},{"k":26740,"v":[[0,1,["G1565"]],[1,3,["G1392"]],[3,4,["G1691"]],[4,5,["G3754"]],[5,8,["G2983"]],[8,9,["G1537"]],[9,10,["G1699"]],[10,11,["G2532"]],[11,13,["G312"]],[13,16,["G5213"]]]},{"k":26741,"v":[[0,2,["G3956"]],[2,3,["G3745"]],[3,4,["G3588"]],[4,5,["G3962"]],[5,6,["G2192"]],[6,7,["G2076"]],[7,8,["G1699"]],[8,9,["G1223","G5124"]],[9,10,["G2036"]],[10,12,["G3754"]],[12,15,["G2983"]],[15,16,["G1537"]],[16,17,["G1699"]],[17,18,["G2532"]],[18,20,["G312"]],[20,23,["G5213"]]]},{"k":26742,"v":[[0,3,["G3397"]],[3,4,["G2532"]],[4,7,["G3756"]],[7,8,["G2334"]],[8,9,["G3165"]],[9,10,["G2532"]],[10,11,["G3825"]],[11,14,["G3397"]],[14,15,["G2532"]],[15,18,["G3700"]],[18,19,["G3165"]],[19,20,["G3754"]],[20,21,["G1473"]],[21,22,["G5217"]],[22,23,["G4314"]],[23,24,["G3588"]],[24,25,["G3962"]]]},{"k":26743,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,4,["G1537"]],[4,5,["G846"]],[5,6,["G3101"]],[6,7,["G4314"]],[7,8,["G240"]],[8,9,["G5101"]],[9,10,["G2076"]],[10,11,["G5124"]],[11,12,["G3739"]],[12,14,["G3004"]],[14,16,["G2254"]],[16,19,["G3397"]],[19,20,["G2532"]],[20,23,["G3756"]],[23,24,["G2334"]],[24,25,["G3165"]],[25,26,["G2532"]],[26,27,["G3825"]],[27,30,["G3397"]],[30,31,["G2532"]],[31,34,["G3700"]],[34,35,["G3165"]],[35,36,["G2532"]],[36,37,["G3754"]],[37,38,["G1473"]],[38,39,["G5217"]],[39,40,["G4314"]],[40,41,["G3588"]],[41,42,["G3962"]]]},{"k":26744,"v":[[0,2,["G3004"]],[2,3,["G3767"]],[3,4,["G5101"]],[4,5,["G2076"]],[5,6,["G5124"]],[6,7,["G3739"]],[7,9,["G3004"]],[9,12,["G3397"]],[12,15,["G1492","G3756"]],[15,16,["G5101"]],[16,18,["G2980"]]]},{"k":26745,"v":[[0,1,["G3767"]],[1,2,["G2424"]],[2,3,["G1097"]],[3,4,["G3754"]],[4,7,["G2309"]],[7,9,["G2065"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["G2036"]],[12,14,["G846"]],[14,17,["G2212"]],[17,18,["G3326"]],[18,19,["G240"]],[19,20,["G4012"]],[20,21,["(G3754)"]],[21,23,["G2036"]],[23,26,["G3397"]],[26,27,["G2532"]],[27,30,["G3756"]],[30,31,["G2334"]],[31,32,["G3165"]],[32,33,["G2532"]],[33,34,["G3825"]],[34,37,["G3397"]],[37,38,["G2532"]],[38,41,["G3700"]],[41,42,["G3165"]]]},{"k":26746,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,7,["G3754"]],[7,8,["G5210"]],[8,10,["G2799"]],[10,11,["G2532"]],[11,12,["G2354"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G2889"]],[15,17,["G5463"]],[17,18,["G1161"]],[18,19,["G5210"]],[19,22,["G3076"]],[22,23,["G235"]],[23,24,["G5216"]],[24,25,["G3077"]],[25,28,["G1096"]],[28,29,["G1519"]],[29,30,["G5479"]]]},{"k":26747,"v":[[0,2,["G1135"]],[2,3,["G3752"]],[3,7,["G5088"]],[7,8,["G2192"]],[8,9,["G3077"]],[9,10,["G3754"]],[10,11,["G846"]],[11,12,["G5610"]],[12,14,["G2064"]],[14,15,["G1161"]],[15,18,["G3752"]],[18,21,["G1080"]],[21,23,["G3588"]],[23,24,["G3813"]],[24,26,["G3421"]],[26,27,["G3756"]],[27,28,["G2089"]],[28,29,["G3588"]],[29,30,["G2347"]],[30,31,["G1223"]],[31,32,["G5479"]],[32,33,["G3754"]],[33,35,["G444"]],[35,37,["G1080"]],[37,38,["G1519"]],[38,39,["G3588"]],[39,40,["G2889"]]]},{"k":26748,"v":[[0,1,["G2532"]],[1,2,["G5210"]],[2,3,["G3568"]],[3,4,["G3767","(G3303)"]],[4,5,["G2192"]],[5,6,["G3077"]],[6,7,["G1161"]],[7,10,["G3700"]],[10,11,["G5209"]],[11,12,["G3825"]],[12,13,["G2532"]],[13,14,["G5216"]],[14,15,["G2588"]],[15,17,["G5463"]],[17,18,["G2532"]],[18,19,["G5216"]],[19,20,["G5479"]],[20,22,["G3762"]],[22,23,["G142"]],[23,24,["G575"]],[24,25,["G5216"]]]},{"k":26749,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G1565"]],[3,4,["G2250"]],[4,6,["(G3756)"]],[6,7,["G2065"]],[7,8,["G1691"]],[8,9,["G3762"]],[9,10,["G281"]],[10,11,["G281"]],[11,13,["G3004"]],[13,15,["G5213"]],[15,16,["(G3745)","G302"]],[16,19,["G154"]],[19,20,["G3588"]],[20,21,["G3962"]],[21,22,["G1722"]],[22,23,["G3450"]],[23,24,["G3686"]],[24,27,["G1325"]],[27,29,["G5213"]]]},{"k":26750,"v":[[0,1,["G2193","G737"]],[1,3,["(G3756)"]],[3,4,["G154"]],[4,5,["G3762"]],[5,6,["G1722"]],[6,7,["G3450"]],[7,8,["G3686"]],[8,9,["G154"]],[9,10,["G2532"]],[10,13,["G2983"]],[13,14,["G2443"]],[14,15,["G5216"]],[15,16,["G5479"]],[16,18,["G5600"]],[18,19,["G4137"]]]},{"k":26751,"v":[[0,2,["G5023"]],[2,5,["G2980"]],[5,7,["G5213"]],[7,8,["G1722"]],[8,9,["G3942"]],[9,10,["G235"]],[10,12,["G5610"]],[12,13,["G2064"]],[13,14,["G3753"]],[14,17,["G3756"]],[17,18,["G2089"]],[18,19,["G2980"]],[19,21,["G5213"]],[21,22,["G1722"]],[22,23,["G3942"]],[23,24,["G235"]],[24,27,["G312"]],[27,28,["G5213"]],[28,29,["G3954"]],[29,30,["G4012"]],[30,31,["G3588"]],[31,32,["G3962"]]]},{"k":26752,"v":[[0,1,["G1722"]],[1,2,["G1565"]],[2,3,["G2250"]],[3,6,["G154"]],[6,7,["G1722"]],[7,8,["G3450"]],[8,9,["G3686"]],[9,10,["G2532"]],[10,12,["G3004"]],[12,13,["G3756"]],[13,15,["G5213"]],[15,16,["G3754"]],[16,17,["G1473"]],[17,19,["G2065"]],[19,20,["G3588"]],[20,21,["G3962"]],[21,22,["G4012"]],[22,23,["G5216"]]]},{"k":26753,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3962"]],[3,4,["G846"]],[4,5,["G5368"]],[5,6,["G5209"]],[6,7,["G3754"]],[7,8,["G5210"]],[8,10,["G5368"]],[10,11,["G1691"]],[11,12,["G2532"]],[12,14,["G4100"]],[14,15,["G3754"]],[15,16,["G1473"]],[16,18,["G1831"]],[18,19,["G3844"]],[19,20,["G2316"]]]},{"k":26754,"v":[[0,3,["G1831"]],[3,4,["G3844"]],[4,5,["G3588"]],[5,6,["G3962"]],[6,7,["G2532"]],[7,9,["G2064"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G2889"]],[12,13,["G3825"]],[13,15,["G863"]],[15,16,["G3588"]],[16,17,["G2889"]],[17,18,["G2532"]],[18,19,["G4198"]],[19,20,["G4314"]],[20,21,["G3588"]],[21,22,["G3962"]]]},{"k":26755,"v":[[0,1,["G846"]],[1,2,["G3101"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G2396"]],[6,7,["G3568"]],[7,8,["G2980"]],[8,10,["G3954"]],[10,11,["G2532"]],[11,12,["G3004"]],[12,13,["G3762"]],[13,14,["G3942"]]]},{"k":26756,"v":[[0,1,["G3568"]],[1,4,["G1492"]],[4,5,["G3754"]],[5,7,["G1492"]],[7,9,["G3956"]],[9,10,["G2532"]],[10,11,["G2192","G5532"]],[11,12,["G3756"]],[12,13,["G2443"]],[13,15,["G5100"]],[15,17,["G2065"]],[17,18,["G4571"]],[18,19,["G1722"]],[19,20,["G5129"]],[20,22,["G4100"]],[22,23,["G3754"]],[23,26,["G1831"]],[26,27,["G575"]],[27,28,["G2316"]]]},{"k":26757,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,6,["G737"]],[6,7,["G4100"]]]},{"k":26758,"v":[[0,1,["G2400"]],[1,3,["G5610"]],[3,4,["G2064"]],[4,5,["G2532"]],[5,7,["G3568"]],[7,8,["G2064"]],[8,9,["G2443"]],[9,13,["G4650"]],[13,15,["G1538"]],[15,16,["G1519"]],[16,18,["G2398"]],[18,19,["G2532"]],[19,21,["G863"]],[21,22,["G1691"]],[22,23,["G3441"]],[23,24,["G2532"]],[24,27,["G1510"]],[27,28,["G3756"]],[28,29,["G3441"]],[29,30,["G3754"]],[30,31,["G3588"]],[31,32,["G3962"]],[32,33,["G2076"]],[33,34,["G3326"]],[34,35,["G1700"]]]},{"k":26759,"v":[[0,2,["G5023"]],[2,5,["G2980"]],[5,7,["G5213"]],[7,8,["G2443"]],[8,9,["G1722"]],[9,10,["G1698"]],[10,13,["G2192"]],[13,14,["G1515"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G2889"]],[17,20,["G2192"]],[20,21,["G2347"]],[21,22,["G235"]],[22,26,["G2293"]],[26,27,["G1473"]],[27,29,["G3528"]],[29,30,["G3588"]],[30,31,["G2889"]]]},{"k":26760,"v":[[0,2,["G5023"]],[2,3,["G2980"]],[3,4,["G2424"]],[4,5,["G2532"]],[5,7,["G1869"]],[7,8,["G848"]],[8,9,["G3788"]],[9,10,["G1519"]],[10,11,["G3772"]],[11,12,["G2532"]],[12,13,["G2036"]],[13,14,["G3962"]],[14,15,["G3588"]],[15,16,["G5610"]],[16,18,["G2064"]],[18,19,["G1392"]],[19,20,["G4675"]],[20,21,["G5207"]],[21,22,["G2443"]],[22,23,["G4675"]],[23,24,["G5207"]],[24,25,["G2532"]],[25,27,["G1392"]],[27,28,["G4571"]]]},{"k":26761,"v":[[0,1,["G2531"]],[1,4,["G1325"]],[4,5,["G846"]],[5,6,["G1849"]],[6,8,["G3956"]],[8,9,["G4561"]],[9,10,["G2443"]],[10,13,["G1325"]],[13,14,["G166"]],[14,15,["G2222"]],[15,19,["G3956","G3739"]],[19,22,["G1325"]],[22,23,["G846"]]]},{"k":26762,"v":[[0,1,["G1161"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,4,["G2222"]],[4,5,["G166"]],[5,6,["G2443"]],[6,9,["G1097"]],[9,10,["G4571"]],[10,11,["G3588"]],[11,12,["G3441"]],[12,13,["G228"]],[13,14,["G2316"]],[14,15,["G2532"]],[15,16,["G2424"]],[16,17,["G5547"]],[17,18,["G3739"]],[18,21,["G649"]]]},{"k":26763,"v":[[0,1,["G1473"]],[1,3,["G1392"]],[3,4,["G4571"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G1093"]],[7,10,["G5048"]],[10,11,["G3588"]],[11,12,["G2041"]],[12,13,["G3739"]],[13,15,["G1325"]],[15,16,["G3427"]],[16,17,["G2443"]],[17,18,["G4160"]]]},{"k":26764,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,4,["G3962"]],[4,5,["G1392"]],[5,6,["G4771"]],[6,7,["G3165"]],[7,8,["G3844"]],[8,11,["G4572"]],[11,14,["G1391"]],[14,15,["G3739"]],[15,17,["G2192"]],[17,18,["G3844"]],[18,19,["G4671"]],[19,20,["G4253"]],[20,21,["G3588"]],[21,22,["G2889"]],[22,23,["G1511"]]]},{"k":26765,"v":[[0,3,["G5319"]],[3,4,["G4675"]],[4,5,["G3686"]],[5,7,["G3588"]],[7,8,["G444"]],[8,9,["G3739"]],[9,11,["G1325"]],[11,12,["G3427"]],[12,14,["G1537"]],[14,15,["G3588"]],[15,16,["G2889"]],[16,17,["G4674"]],[17,19,["G2258"]],[19,20,["G2532"]],[20,22,["G1325"]],[22,23,["G846"]],[23,24,["G1698"]],[24,25,["G2532"]],[25,28,["G5083"]],[28,29,["G4675"]],[29,30,["G3056"]]]},{"k":26766,"v":[[0,1,["G3568"]],[1,4,["G1097"]],[4,5,["G3754"]],[5,7,["G3956"]],[7,8,["G3745"]],[8,11,["G1325"]],[11,12,["G3427"]],[12,13,["G2076"]],[13,14,["G3844"]],[14,15,["G4675"]]]},{"k":26767,"v":[[0,1,["G3754"]],[1,4,["G1325"]],[4,6,["G846"]],[6,7,["G3588"]],[7,8,["G4487"]],[8,9,["G3739"]],[9,11,["G1325"]],[11,12,["G3427"]],[12,13,["G2532"]],[13,14,["G846"]],[14,16,["G2983"]],[16,18,["G2532"]],[18,20,["G1097"]],[20,21,["G230"]],[21,22,["G3754"]],[22,25,["G1831"]],[25,26,["G3844"]],[26,27,["G4675"]],[27,28,["G2532"]],[28,31,["G4100"]],[31,32,["G3754"]],[32,33,["G4771"]],[33,35,["G649"]],[35,36,["G3165"]]]},{"k":26768,"v":[[0,1,["G1473"]],[1,2,["G2065"]],[2,3,["G4012"]],[3,4,["G846"]],[4,6,["G2065"]],[6,7,["G3756"]],[7,8,["G4012"]],[8,9,["G3588"]],[9,10,["G2889"]],[10,11,["G235"]],[11,12,["G4012"]],[12,14,["G3739"]],[14,17,["G1325"]],[17,18,["G3427"]],[18,19,["G3754"]],[19,21,["G1526"]],[21,22,["G4671"]]]},{"k":26769,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G1699"]],[3,4,["G2076"]],[4,5,["G4674"]],[5,6,["G2532"]],[6,7,["G4674"]],[7,9,["G1699"]],[9,10,["G2532"]],[10,13,["G1392"]],[13,14,["G1722"]],[14,15,["G846"]]]},{"k":26770,"v":[[0,1,["G2532"]],[1,4,["G1510"]],[4,5,["G3756"]],[5,6,["G2089"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G2889"]],[9,10,["G2532"]],[10,11,["G3778"]],[11,12,["G1526"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G2889"]],[15,16,["G2532"]],[16,17,["G1473"]],[17,18,["G2064"]],[18,19,["G4314"]],[19,20,["G4571"]],[20,21,["G40"]],[21,22,["G3962"]],[22,23,["G5083"]],[23,24,["G1722"]],[24,26,["G4675"]],[26,27,["G3686"]],[27,28,["G846"]],[28,29,["G3739"]],[29,32,["G1325"]],[32,33,["G3427"]],[33,34,["G2443"]],[34,37,["G5600"]],[37,38,["G1520"]],[38,39,["G2531"]],[39,40,["G2249"]],[40,41,[]]]},{"k":26771,"v":[[0,1,["G3753"]],[1,3,["G2252"]],[3,4,["G3326"]],[4,5,["G846"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G2889"]],[8,9,["G1473"]],[9,10,["G5083"]],[10,11,["G846"]],[11,12,["G1722"]],[12,13,["G4675"]],[13,14,["G3686"]],[14,16,["G3739"]],[16,18,["G1325"]],[18,19,["G3427"]],[19,22,["G5442"]],[22,23,["G2532"]],[23,24,["G3762"]],[24,25,["G1537"]],[25,26,["G846"]],[26,28,["G622"]],[28,29,["G1508"]],[29,30,["G3588"]],[30,31,["G5207"]],[31,33,["G684"]],[33,34,["G2443"]],[34,35,["G3588"]],[35,36,["G1124"]],[36,39,["G4137"]]]},{"k":26772,"v":[[0,1,["G1161"]],[1,2,["G3568"]],[2,3,["G2064"]],[3,5,["G4314"]],[5,6,["G4571"]],[6,7,["G2532"]],[7,9,["G5023"]],[9,11,["G2980"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G2889"]],[14,15,["G2443"]],[15,18,["G2192"]],[18,19,["G1699"]],[19,20,["G5479"]],[20,21,["G4137"]],[21,22,["G1722"]],[22,23,["G848"]]]},{"k":26773,"v":[[0,1,["G1473"]],[1,3,["G1325"]],[3,4,["G846"]],[4,5,["G4675"]],[5,6,["G3056"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G2889"]],[9,11,["G3404"]],[11,12,["G846"]],[12,13,["G3754"]],[13,15,["G1526"]],[15,16,["G3756"]],[16,17,["G1537"]],[17,18,["G3588"]],[18,19,["G2889"]],[19,21,["G2531"]],[21,22,["G1473"]],[22,23,["G1510"]],[23,24,["G3756"]],[24,25,["G1537"]],[25,26,["G3588"]],[26,27,["G2889"]]]},{"k":26774,"v":[[0,2,["G2065"]],[2,3,["G3756"]],[3,4,["G2443"]],[4,7,["G142"]],[7,8,["G846"]],[8,10,["G1537"]],[10,11,["G3588"]],[11,12,["G2889"]],[12,13,["G235"]],[13,14,["G2443"]],[14,17,["G5083"]],[17,18,["G846"]],[18,19,["G1537"]],[19,20,["G3588"]],[20,21,["G4190"]]]},{"k":26775,"v":[[0,2,["G1526"]],[2,3,["G3756"]],[3,4,["G1537"]],[4,5,["G3588"]],[5,6,["G2889"]],[6,8,["G2531"]],[8,9,["G1473"]],[9,10,["G1510"]],[10,11,["G3756"]],[11,12,["G1537"]],[12,13,["G3588"]],[13,14,["G2889"]]]},{"k":26776,"v":[[0,1,["G37"]],[1,2,["G846"]],[2,3,["G1722"]],[3,4,["G4675"]],[4,5,["G225"]],[5,6,["G4674"]],[6,7,["G3056"]],[7,8,["G2076"]],[8,9,["G225"]]]},{"k":26777,"v":[[0,1,["G2531"]],[1,4,["G649"]],[4,5,["G1691"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G2889"]],[8,13,["G2504"]],[13,14,["G649"]],[14,15,["G846"]],[15,16,["G1519"]],[16,17,["G3588"]],[17,18,["G2889"]]]},{"k":26778,"v":[[0,1,["G2532"]],[1,4,["G5228","G846"]],[4,5,["G1473"]],[5,6,["G37"]],[6,7,["G1683"]],[7,8,["G2443"]],[8,9,["G846"]],[9,10,["G2532"]],[10,12,["G5600"]],[12,13,["G37"]],[13,14,["G1722"]],[14,16,["G225"]]]},{"k":26779,"v":[[0,1,["G1161","G3756"]],[1,2,["G2065"]],[2,4,["G4012"]],[4,5,["G5130"]],[5,6,["G3440"]],[6,7,["G235"]],[7,8,["G4012"]],[8,13,["G4100","G2532"]],[13,14,["G1519"]],[14,15,["G1691"]],[15,16,["G1223"]],[16,17,["G846"]],[17,18,["G3056"]]]},{"k":26780,"v":[[0,1,["G2443"]],[1,3,["G3956"]],[3,5,["G5600"]],[5,6,["G1520"]],[6,7,["G2531"]],[7,8,["G4771"]],[8,9,["G3962"]],[9,11,["G1722"]],[11,12,["G1698"]],[12,14,["G2504"]],[14,15,["G1722"]],[15,16,["G4671"]],[16,17,["G2443"]],[17,18,["G846"]],[18,19,["G2532"]],[19,21,["G5600"]],[21,22,["G1520"]],[22,23,["G1722"]],[23,24,["G2254"]],[24,25,["G2443"]],[25,26,["G3588"]],[26,27,["G2889"]],[27,29,["G4100"]],[29,30,["G3754"]],[30,31,["G4771"]],[31,33,["G649"]],[33,34,["G3165"]]]},{"k":26781,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1391"]],[3,4,["G3739"]],[4,6,["G1325"]],[6,7,["G3427"]],[7,8,["G1473"]],[8,10,["G1325"]],[10,11,["G846"]],[11,12,["G2443"]],[12,15,["G5600"]],[15,16,["G1520"]],[16,18,["G2531"]],[18,19,["G2249"]],[19,20,["G2070"]],[20,21,["G1520"]]]},{"k":26782,"v":[[0,1,["G1473"]],[1,2,["G1722"]],[2,3,["G846"]],[3,4,["G2532"]],[4,5,["G4771"]],[5,6,["G1722"]],[6,7,["G1698"]],[7,8,["G2443"]],[8,11,["G5600"]],[11,13,["G5048"]],[13,14,["G1519"]],[14,15,["G1520"]],[15,16,["G2532"]],[16,17,["G2443"]],[17,18,["G3588"]],[18,19,["G2889"]],[19,21,["G1097"]],[21,22,["G3754"]],[22,23,["G4771"]],[23,25,["G649"]],[25,26,["G3165"]],[26,27,["G2532"]],[27,29,["G25"]],[29,30,["G846"]],[30,31,["G2531"]],[31,34,["G25"]],[34,35,["G1691"]]]},{"k":26783,"v":[[0,1,["G3962"]],[1,3,["G2309"]],[3,4,["G2443"]],[4,6,["G2548"]],[6,7,["G3739"]],[7,10,["G1325"]],[10,11,["G3427"]],[11,12,["G5600"]],[12,13,["G3326"]],[13,14,["G1700"]],[14,15,["G3699"]],[15,16,["G1473"]],[16,17,["G1510"]],[17,18,["G2443"]],[18,21,["G2334"]],[21,22,["G1699"]],[22,23,["G1391"]],[23,24,["G3739"]],[24,27,["G1325"]],[27,28,["G3427"]],[28,29,["G3754"]],[29,31,["G25"]],[31,32,["G3165"]],[32,33,["G4253"]],[33,35,["G2602"]],[35,38,["G2889"]]]},{"k":26784,"v":[[0,2,["G1342"]],[2,3,["G3962","(G2532)"]],[3,4,["G3588"]],[4,5,["G2889"]],[5,7,["G3756"]],[7,8,["G1097"]],[8,9,["G4571"]],[9,10,["G1161"]],[10,11,["G1473"]],[11,13,["G1097"]],[13,14,["G4571"]],[14,15,["G2532"]],[15,16,["G3778"]],[16,18,["G1097"]],[18,19,["G3754"]],[19,20,["G4771"]],[20,22,["G649"]],[22,23,["G3165"]]]},{"k":26785,"v":[[0,1,["G2532"]],[1,4,["G1107"]],[4,6,["G846"]],[6,7,["G4675"]],[7,8,["G3686"]],[8,9,["G2532"]],[9,11,["G1107"]],[11,13,["G2443"]],[13,14,["G3588"]],[14,15,["G26"]],[15,16,["G3739"]],[16,19,["G25"]],[19,20,["G3165"]],[20,22,["G5600"]],[22,23,["G1722"]],[23,24,["G846"]],[24,26,["G2504"]],[26,27,["G1722"]],[27,28,["G846"]]]},{"k":26786,"v":[[0,2,["G2424"]],[2,4,["G2036"]],[4,6,["G5023"]],[6,9,["G1831"]],[9,10,["G4862"]],[10,11,["G846"]],[11,12,["G3101"]],[12,13,["G4008"]],[13,14,["G3588"]],[14,15,["G5493"]],[15,16,["G2748"]],[16,17,["G3699"]],[17,18,["G2258"]],[18,20,["G2779"]],[20,21,["G1519"]],[21,23,["G3739"]],[23,24,["G846"]],[24,25,["G1525"]],[25,26,["G2532"]],[26,27,["G846"]],[27,28,["G3101"]]]},{"k":26787,"v":[[0,1,["G1161"]],[1,2,["G2455"]],[2,3,["G2532"]],[3,5,["G3860"]],[5,6,["G846"]],[6,7,["G1492"]],[7,8,["G3588"]],[8,9,["G5117"]],[9,10,["G3754"]],[10,11,["G2424"]],[11,12,["G4178"]],[12,13,["G4863"]],[13,14,["G1563"]],[14,15,["G3326"]],[15,16,["G846"]],[16,17,["G3101"]]]},{"k":26788,"v":[[0,1,["G2455"]],[1,2,["G3767"]],[2,4,["G2983"]],[4,6,["G4686"]],[6,9,["G2532"]],[9,10,["G5257"]],[10,11,["G1537"]],[11,12,["G3588"]],[12,14,["G749"]],[14,15,["G2532"]],[15,16,["G5330"]],[16,17,["G2064"]],[17,18,["G1563"]],[18,19,["G3326"]],[19,20,["G5322"]],[20,21,["G2532"]],[21,22,["G2985"]],[22,23,["G2532"]],[23,24,["G3696"]]]},{"k":26789,"v":[[0,1,["G2424"]],[1,2,["G3767"]],[2,3,["G1492"]],[3,5,["G3956"]],[5,8,["G2064"]],[8,9,["G1909"]],[9,10,["G848"]],[10,12,["G1831"]],[12,14,["G2036"]],[14,16,["G846"]],[16,17,["G5101"]],[17,18,["G2212"]],[18,19,[]]]},{"k":26790,"v":[[0,2,["G611"]],[2,3,["G846"]],[3,4,["G2424"]],[4,6,["G3480"]],[6,7,["G2424"]],[7,8,["G3004"]],[8,10,["G846"]],[10,11,["G1473"]],[11,12,["G1510"]],[12,14,["G1161"]],[14,15,["G2455"]],[15,16,["G2532"]],[16,18,["G3860"]],[18,19,["G846"]],[19,20,["G2476"]],[20,21,["G3326"]],[21,22,["G846"]]]},{"k":26791,"v":[[0,4,["G5613","G3767"]],[4,7,["G2036"]],[7,9,["G846"]],[9,10,["G1473"]],[10,11,["G1510"]],[11,14,["G565"]],[14,15,["G1519","G3694"]],[15,16,["G2532"]],[16,17,["G4098"]],[17,20,["G5476"]]]},{"k":26792,"v":[[0,1,["G3767"]],[1,2,["G1905"]],[2,4,["G846"]],[4,5,["G3825"]],[5,6,["G5101"]],[6,7,["G2212"]],[7,9,["G1161"]],[9,10,["G3588"]],[10,11,["G2036"]],[11,12,["G2424"]],[12,14,["G3480"]]]},{"k":26793,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,5,["G2036"]],[5,6,["G5213"]],[6,7,["G3754"]],[7,8,["G1473"]],[8,9,["G1510"]],[9,11,["G1487"]],[11,12,["G3767"]],[12,14,["G2212"]],[14,15,["G1691"]],[15,16,["G863"]],[16,17,["G5128"]],[17,20,["G5217"]]]},{"k":26794,"v":[[0,1,["G2443"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,6,["G4137"]],[6,7,["G3739"]],[7,9,["G2036"]],[9,10,["G1537"]],[10,11,["G846"]],[11,12,["G3739"]],[12,14,["G1325"]],[14,15,["G3427"]],[15,16,["(G3756)"]],[16,18,["G622"]],[18,19,["G3762"]]]},{"k":26795,"v":[[0,1,["G3767"]],[1,2,["G4613"]],[2,3,["G4074"]],[3,4,["G2192"]],[4,6,["G3162"]],[6,7,["G1670"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G3817"]],[10,11,["G3588"]],[11,13,["G749"]],[13,14,["G1401"]],[14,15,["G2532"]],[15,17,["G609"]],[17,18,["G846"]],[18,19,["G1188"]],[19,20,["G5621","(G1161)"]],[20,21,["G3588"]],[21,22,["G1401"]],[22,23,["G3686"]],[23,24,["G2258"]],[24,25,["G3124"]]]},{"k":26796,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,5,["G4074"]],[5,7,["G906"]],[7,8,["G4675"]],[8,9,["G3162"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G2336"]],[12,13,["G3588"]],[13,14,["G4221"]],[14,15,["G3739"]],[15,17,["G3962"]],[17,19,["G1325"]],[19,20,["G3427"]],[20,23,["G3364"]],[23,24,["G4095"]],[24,25,["G846"]]]},{"k":26797,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,3,["G4686"]],[3,4,["G2532"]],[4,5,["G3588"]],[5,6,["G5506"]],[6,7,["G2532"]],[7,8,["G5257"]],[8,10,["G3588"]],[10,11,["G2453"]],[11,12,["G4815"]],[12,13,["G2424"]],[13,14,["G2532"]],[14,15,["G1210"]],[15,16,["G846"]]]},{"k":26798,"v":[[0,1,["G2532"]],[1,4,["G520","G846"]],[4,5,["G4314"]],[5,6,["G452"]],[6,7,["G4412"]],[7,8,["G1063"]],[8,10,["G2258"]],[10,13,["G3995"]],[13,15,["G2533"]],[15,16,["G3739"]],[16,17,["G2258"]],[17,20,["G749"]],[20,22,["G1565"]],[22,23,["G1763"]]]},{"k":26799,"v":[[0,1,["G1161"]],[1,2,["G2533"]],[2,3,["G2258"]],[3,4,["G3588"]],[4,7,["G4823"]],[7,9,["G3588"]],[9,10,["G2453"]],[10,11,["G3754"]],[11,14,["G4851"]],[14,16,["G1520"]],[16,17,["G444"]],[17,19,["G622"]],[19,20,["G5228"]],[20,21,["G3588"]],[21,22,["G2992"]]]},{"k":26800,"v":[[0,1,["G1161"]],[1,2,["G4613"]],[2,3,["G4074"]],[3,4,["G190"]],[4,5,["G2424"]],[5,6,["G2532"]],[6,9,["G243"]],[9,10,["G3101","(G1161)"]],[10,11,["G1565"]],[11,12,["G3101"]],[12,13,["G2258"]],[13,14,["G1110"]],[14,16,["G3588"]],[16,18,["G749"]],[18,19,["G2532"]],[19,22,["G4897"]],[22,23,["G2424"]],[23,24,["G1519"]],[24,25,["G3588"]],[25,26,["G833"]],[26,28,["G3588"]],[28,30,["G749"]]]},{"k":26801,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2476"]],[3,4,["G4314"]],[4,5,["G3588"]],[5,6,["G2374"]],[6,7,["G1854"]],[7,8,["G3767"]],[8,10,["G1831"]],[10,12,["G243"]],[12,13,["G3101"]],[13,14,["G3739"]],[14,15,["G2258"]],[15,16,["G1110"]],[16,18,["G3588"]],[18,20,["G749"]],[20,21,["G2532"]],[21,22,["G2036"]],[22,28,["G2377"]],[28,29,["G2532"]],[29,31,["G1521"]],[31,32,["G4074"]]]},{"k":26802,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G3588"]],[3,4,["G3814"]],[4,8,["G2377"]],[8,10,["G4074"]],[10,11,["G1488"]],[11,12,["G3361"]],[12,13,["G4771"]],[13,14,["G2532"]],[14,16,["G1537"]],[16,17,["G5127"]],[17,18,["G444"]],[18,19,["G3101"]],[19,20,["G1565"]],[20,21,["G3004"]],[21,23,["G1510"]],[23,24,["G3756"]]]},{"k":26803,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1401"]],[3,4,["G2532"]],[4,5,["G5257"]],[5,6,["G2476"]],[6,10,["G4160"]],[10,14,["G439"]],[14,15,["G3754"]],[15,17,["G2258"]],[17,18,["G5592"]],[18,19,["G2532"]],[19,21,["G2328"]],[21,23,["G1161"]],[23,24,["G4074"]],[24,25,["G2258","G2476"]],[25,26,["G3326"]],[26,27,["G846"]],[27,28,["G2532"]],[28,29,["G2328"]],[29,30,[]]]},{"k":26804,"v":[[0,1,["G3588"]],[1,3,["G749"]],[3,4,["G3767"]],[4,5,["G2065"]],[5,6,["G2424"]],[6,7,["G4012"]],[7,8,["G846"]],[8,9,["G3101"]],[9,10,["G2532"]],[10,11,["G4012"]],[11,12,["G846"]],[12,13,["G1322"]]]},{"k":26805,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G1473"]],[4,5,["G2980"]],[5,6,["G3954"]],[6,8,["G3588"]],[8,9,["G2889"]],[9,10,["G1473"]],[10,11,["G3842"]],[11,12,["G1321"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G4864"]],[15,16,["G2532"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G2411"]],[19,20,["G3699"]],[20,21,["G3588"]],[21,22,["G2453"]],[22,23,["G3842"]],[23,24,["G4905"]],[24,25,["G2532"]],[25,26,["G1722"]],[26,27,["G2927"]],[27,30,["G2980"]],[30,31,["G3752"]]]},{"k":26806,"v":[[0,1,["G5101"]],[1,2,["G1905"]],[2,4,["G1905"]],[4,5,["G1905"]],[5,8,["G191"]],[8,10,["G5101"]],[10,13,["G2980"]],[13,15,["G846"]],[15,16,["G2396"]],[16,17,["G3778"]],[17,18,["G1492"]],[18,19,["G3739"]],[19,20,["G1473"]],[20,21,["G2036"]]]},{"k":26807,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G5023"]],[5,6,["G2036"]],[6,7,["G1520"]],[7,9,["G3588"]],[9,10,["G5257"]],[10,13,["G3936"]],[13,21,["G1325","G2424","G4475"]],[21,22,["G2036"]],[22,23,["G611"]],[23,25,["G3588"]],[25,27,["G749"]],[27,28,["G3779"]]]},{"k":26808,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G1487"]],[4,7,["G2980"]],[7,8,["G2560"]],[8,10,["G3140"]],[10,11,["G4012"]],[11,12,["G3588"]],[12,13,["G2556"]],[13,14,["G1161"]],[14,15,["G1487"]],[15,16,["G2573"]],[16,17,["G5101"]],[17,18,["G1194"]],[18,20,["G3165"]]]},{"k":26809,"v":[[0,1,["G3767"]],[1,2,["G452"]],[2,4,["G649"]],[4,5,["G846"]],[5,6,["G1210"]],[6,7,["G4314"]],[7,8,["G2533"]],[8,9,["G3588"]],[9,11,["G749"]]]},{"k":26810,"v":[[0,2,["G4613"]],[2,3,["G4074"]],[3,4,["G2258","G2476"]],[4,5,["G2532"]],[5,6,["G2328"]],[6,9,["G2036"]],[9,10,["G3767"]],[10,12,["G846"]],[12,13,["G1488"]],[13,14,["G3361"]],[14,15,["G4771"]],[15,16,["G2532"]],[16,18,["G1537"]],[18,19,["G846"]],[19,20,["G3101"]],[20,21,["G1565"]],[21,22,["G720"]],[22,24,["G2532"]],[24,25,["G2036"]],[25,27,["G1510"]],[27,28,["G3756"]]]},{"k":26811,"v":[[0,1,["G1520"]],[1,2,["G1537"]],[2,3,["G3588"]],[3,4,["G1401"]],[4,6,["G3588"]],[6,8,["G749"]],[8,9,["G5607"]],[9,11,["G4773"]],[11,12,["G3739"]],[12,13,["G5621"]],[13,14,["G4074"]],[14,16,["G609"]],[16,17,["G3004"]],[17,19,["G3756"]],[19,20,["G1473"]],[20,21,["G1492"]],[21,22,["G4571"]],[22,23,["G1722"]],[23,24,["G3588"]],[24,25,["G2779"]],[25,26,["G3326"]],[26,27,["G846"]]]},{"k":26812,"v":[[0,1,["G4074"]],[1,2,["G3767"]],[2,3,["G720"]],[3,4,["G3825"]],[4,5,["G2532"]],[5,6,["G2112"]],[6,8,["G220"]],[8,9,["G5455"]]]},{"k":26813,"v":[[0,1,["G3767"]],[1,2,["G71"]],[2,4,["G2424"]],[4,5,["G575"]],[5,6,["G2533"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,11,["G4232"]],[11,12,["G1161"]],[12,14,["G2258"]],[14,15,["G4405"]],[15,16,["G2532"]],[16,17,["G846"]],[17,19,["G1525"]],[19,20,["G3756"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,24,["G4232"]],[24,25,["G3363"]],[25,29,["G3392"]],[29,30,["G235"]],[30,31,["G2443"]],[31,34,["G5315"]],[34,35,["G3588"]],[35,36,["G3957"]]]},{"k":26814,"v":[[0,1,["G4091"]],[1,2,["G3767"]],[2,4,["G1831"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G2036"]],[8,9,["G5101"]],[9,10,["G2724"]],[10,11,["G5342"]],[11,13,["G2596"]],[13,14,["G5127"]],[14,15,["G444"]]]},{"k":26815,"v":[[0,2,["G611"]],[2,3,["G2532"]],[3,4,["G2036"]],[4,6,["G846"]],[6,7,["G1487"]],[7,8,["G3778"]],[8,9,["G2258"]],[9,10,["G3361"]],[10,12,["G2555"]],[12,15,["G3756"]],[15,16,["(G302)"]],[16,19,["G3860","G846"]],[19,21,["G4671"]]]},{"k":26816,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G4091"]],[3,5,["G846"]],[5,6,["G2983"]],[6,7,["G5210"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G2919"]],[10,11,["G846"]],[11,12,["G2596"]],[12,14,["G5216"]],[14,15,["G3551"]],[15,16,["G3588"]],[16,17,["G2453"]],[17,18,["G3767"]],[18,19,["G2036"]],[19,21,["G846"]],[21,25,["G1832","G3756"]],[25,27,["G2254"]],[27,33,["G615","G3762"]]]},{"k":26817,"v":[[0,1,["G2443"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,5,["G2424"]],[5,8,["G4137"]],[8,9,["G3739"]],[9,11,["G2036"]],[11,12,["G4591"]],[12,13,["G4169"]],[13,14,["G2288"]],[14,16,["G3195"]],[16,17,["G599"]]]},{"k":26818,"v":[[0,1,["G3767"]],[1,2,["G4091"]],[2,3,["G1525"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,7,["G4232"]],[7,8,["G3825"]],[8,9,["G2532"]],[9,10,["G5455"]],[10,11,["G2424"]],[11,12,["G2532"]],[12,13,["G2036"]],[13,15,["G846"]],[15,16,["G1488"]],[16,17,["G4771"]],[17,18,["G3588"]],[18,19,["G935"]],[19,21,["G3588"]],[21,22,["G2453"]]]},{"k":26819,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G846"]],[3,4,["G3004"]],[4,5,["G4771"]],[5,7,["G5124"]],[7,8,["G575"]],[8,9,["G1438"]],[9,10,["G2228"]],[10,12,["G243"]],[12,13,["G2036"]],[13,15,["G4671"]],[15,16,["G4012"]],[16,17,["G1700"]]]},{"k":26820,"v":[[0,1,["G4091"]],[1,2,["G611","(G3385)"]],[2,3,["G1510"]],[3,4,["G1473"]],[4,6,["G2453"]],[6,8,["G4674"]],[8,9,["G1484"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,13,["G749"]],[13,15,["G3860"]],[15,16,["G4571"]],[16,18,["G1698"]],[18,19,["G5101"]],[19,22,["G4160"]]]},{"k":26821,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["G1699"]],[3,4,["G932"]],[4,5,["G2076"]],[5,6,["G3756"]],[6,7,["G1537"]],[7,8,["G5127"]],[8,9,["G2889"]],[9,10,["G1487"]],[10,11,["G1699"]],[11,12,["G932"]],[12,13,["G2258"]],[13,14,["G1537"]],[14,15,["G5127"]],[15,16,["G2889"]],[16,19,["G1699"]],[19,20,["G5257"]],[20,21,["G75","G302"]],[21,22,["G2443"]],[22,25,["G3361"]],[25,27,["G3860"]],[27,29,["G3588"]],[29,30,["G2453"]],[30,31,["G1161"]],[31,32,["G3568"]],[32,33,["G2076"]],[33,34,["G1699"]],[34,35,["G932"]],[35,36,["G3756"]],[36,38,["G1782"]]]},{"k":26822,"v":[[0,1,["G4091"]],[1,2,["G3767"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G1488"]],[6,7,["G4771"]],[7,9,["G935"]],[9,10,["G3766"]],[10,11,["G2424"]],[11,12,["G611"]],[12,13,["G4771"]],[13,14,["G3004"]],[14,15,["G3754"]],[15,16,["G1473"]],[16,17,["G1510"]],[17,19,["G935"]],[19,20,["G1519"]],[20,22,["G5124"]],[22,24,["G1473"]],[24,25,["G1080"]],[25,26,["G2532"]],[26,27,["G1519"]],[27,29,["G5124"]],[29,30,["G2064"]],[30,32,["G1519"]],[32,33,["G3588"]],[33,34,["G2889"]],[34,35,["G2443"]],[35,39,["G3140"]],[39,41,["G3588"]],[41,42,["G225"]],[42,44,["G3956"]],[44,46,["G5607"]],[46,47,["G1537"]],[47,48,["G3588"]],[48,49,["G225"]],[49,50,["G191"]],[50,51,["G3450"]],[51,52,["G5456"]]]},{"k":26823,"v":[[0,1,["G4091"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G5101"]],[5,6,["G2076"]],[6,7,["G225"]],[7,8,["G2532"]],[8,12,["G2036"]],[12,13,["G5124"]],[13,16,["G1831"]],[16,17,["G3825"]],[17,18,["G4314"]],[18,19,["G3588"]],[19,20,["G2453"]],[20,21,["G2532"]],[21,22,["G3004"]],[22,24,["G846"]],[24,25,["G1473"]],[25,26,["G2147"]],[26,27,["G1722"]],[27,28,["G846"]],[28,29,["G3762"]],[29,30,["G156"]],[30,32,[]]]},{"k":26824,"v":[[0,1,["G1161"]],[1,2,["G5213"]],[2,3,["G2076"]],[3,5,["G4914"]],[5,6,["G2443"]],[6,9,["G630"]],[9,11,["G5213"]],[11,12,["G1520"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G3957"]],[15,16,["G1014"]],[16,18,["G3767"]],[18,21,["G630"]],[21,23,["G5213"]],[23,24,["G3588"]],[24,25,["G935"]],[25,27,["G3588"]],[27,28,["G2453"]]]},{"k":26825,"v":[[0,1,["G3767"]],[1,2,["G2905"]],[2,4,["G3956"]],[4,5,["G3825"]],[5,6,["G3004"]],[6,7,["G3361"]],[7,9,["G5126"]],[9,10,["G235"]],[10,11,["G912"]],[11,12,["G1161"]],[12,13,["G912"]],[13,14,["G2258"]],[14,16,["G3027"]]]},{"k":26826,"v":[[0,1,["G5119"]],[1,2,["G4091"]],[2,3,["G3767"]],[3,4,["G2983"]],[4,5,["G2424"]],[5,6,["G2532"]],[6,7,["G3146"]],[7,8,[]]]},{"k":26827,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4757"]],[3,4,["G4120"]],[4,6,["G4735"]],[6,7,["G1537"]],[7,8,["G173"]],[8,12,["G2007"]],[12,13,["G846"]],[13,14,["G2776"]],[14,15,["G2532"]],[15,18,["G4016"]],[18,19,["G846"]],[19,21,["G4210"]],[21,22,["G2440"]]]},{"k":26828,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,3,["G5463"]],[3,4,["G935"]],[4,6,["G3588"]],[6,7,["G2453"]],[7,8,["G2532"]],[8,14,["G1325","G846","G4475"]]]},{"k":26829,"v":[[0,1,["G4091"]],[1,2,["G3767"]],[2,3,["G1831"]],[3,4,["G1854"]],[4,5,["G3825"]],[5,6,["G2532"]],[6,7,["G3004"]],[7,9,["G846"]],[9,10,["G2396"]],[10,12,["G71"]],[12,13,["G846"]],[13,14,["G1854"]],[14,16,["G5213"]],[16,17,["G2443"]],[17,20,["G1097"]],[20,21,["G3754"]],[21,23,["G2147"]],[23,24,["G3762"]],[24,25,["G156"]],[25,26,["G1722"]],[26,27,["G846"]]]},{"k":26830,"v":[[0,1,["G3767"]],[1,2,["G1831"]],[2,3,["G2424"]],[3,4,["G1854"]],[4,5,["G5409"]],[5,6,["G3588"]],[6,7,["G4735"]],[7,9,["G174"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G4210"]],[12,13,["G2440"]],[13,14,["G2532"]],[14,16,["G3004"]],[16,18,["G846"]],[18,19,["G2396"]],[19,20,["G3588"]],[20,21,["G444"]]]},{"k":26831,"v":[[0,1,["G3753"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G3767"]],[5,6,["G2532"]],[6,7,["G5257"]],[7,8,["G1492"]],[8,9,["G846"]],[9,12,["G2905"]],[12,13,["G3004"]],[13,14,["G4717"]],[14,16,["G4717"]],[16,18,["G4091"]],[18,19,["G3004"]],[19,21,["G846"]],[21,22,["G2983"]],[22,23,["G5210"]],[23,24,["G846"]],[24,25,["G2532"]],[25,26,["G4717"]],[26,28,["G1063"]],[28,29,["G1473"]],[29,30,["G2147"]],[30,31,["G3756"]],[31,32,["G156"]],[32,33,["G1722"]],[33,34,["G846"]]]},{"k":26832,"v":[[0,1,["G3588"]],[1,2,["G2453"]],[2,3,["G611"]],[3,4,["G846"]],[4,5,["G2249"]],[5,6,["G2192"]],[6,8,["G3551"]],[8,9,["G2532"]],[9,10,["G2596"]],[10,11,["G2257"]],[11,12,["G3551"]],[12,14,["G3784"]],[14,16,["G599"]],[16,17,["G3754"]],[17,19,["G4160"]],[19,20,["G1438"]],[20,22,["G5207"]],[22,24,["G2316"]]]},{"k":26833,"v":[[0,1,["G3753"]],[1,2,["G4091"]],[2,3,["G3767"]],[3,4,["G191"]],[4,5,["G5126"]],[5,6,["G3056"]],[6,11,["G5399","G3123"]]]},{"k":26834,"v":[[0,1,["G2532"]],[1,2,["G1525"]],[2,3,["G3825"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,7,["G4232"]],[7,8,["G2532"]],[8,9,["G3004"]],[9,11,["G2424"]],[11,12,["G4159"]],[12,13,["G1488"]],[13,14,["G4771"]],[14,15,["G1161"]],[15,16,["G2424"]],[16,17,["G1325"]],[17,18,["G846"]],[18,19,["G3756"]],[19,20,["G612"]]]},{"k":26835,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G4091"]],[3,5,["G846"]],[5,6,["G2980"]],[6,8,["G3756"]],[8,10,["G1698"]],[10,11,["G1492"]],[11,13,["G3756"]],[13,14,["G3754"]],[14,16,["G2192"]],[16,17,["G1849"]],[17,19,["G4717"]],[19,20,["G4571"]],[20,21,["G2532"]],[21,22,["G2192"]],[22,23,["G1849"]],[23,25,["G630"]],[25,26,["G4571"]]]},{"k":26836,"v":[[0,1,["G2424"]],[1,2,["G611"]],[2,3,["(G3756)"]],[3,5,["G2192"]],[5,6,["G3762"]],[6,7,["G1849"]],[7,10,["G2596"]],[10,11,["G1700"]],[11,12,["G1487","G3361"]],[12,14,["G2258"]],[14,15,["G1325"]],[15,16,["G4571"]],[16,18,["G509"]],[18,19,["G1223","G5124"]],[19,22,["G3860"]],[22,23,["G3165"]],[23,25,["G4571"]],[25,26,["G2192"]],[26,28,["G3187"]],[28,29,["G266"]]]},{"k":26837,"v":[[0,2,["G1537"]],[2,3,["G5127"]],[3,4,["G4091"]],[4,5,["G2212"]],[5,7,["G630"]],[7,8,["G846"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G2453"]],[11,13,["G2896"]],[13,14,["G3004"]],[14,15,["G1437"]],[15,20,["G630","G5126"]],[20,22,["G1488"]],[22,23,["G3756"]],[23,24,["G2541"]],[24,25,["G5384"]],[25,26,["G3956"]],[26,27,["G4160"]],[27,28,["G848"]],[28,30,["G935"]],[30,32,["G483"]],[32,33,["G2541"]]]},{"k":26838,"v":[[0,2,["G4091"]],[2,3,["G3767"]],[3,4,["G191"]],[4,5,["G5126"]],[5,6,["G3056"]],[6,8,["G71"]],[8,9,["G2424"]],[9,10,["G1854"]],[10,11,["G2532"]],[11,13,["G2523"]],[13,14,["G1909"]],[14,15,["G3588"]],[15,17,["G968"]],[17,18,["G1519"]],[18,20,["G5117"]],[20,23,["G3004"]],[23,25,["G3038"]],[25,26,["G1161"]],[26,29,["G1447"]],[29,30,["G1042"]]]},{"k":26839,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,5,["G3904"]],[5,7,["G3588"]],[7,8,["G3957"]],[8,9,["G1161"]],[9,10,["G5616"]],[10,12,["G1623"]],[12,13,["G5610"]],[13,14,["G2532"]],[14,16,["G3004"]],[16,18,["G3588"]],[18,19,["G2453"]],[19,20,["G2396"]],[20,21,["G5216"]],[21,22,["G935"]]]},{"k":26840,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G2905"]],[4,6,["G142"]],[6,9,["G142"]],[9,11,["G4717"]],[11,12,["G846"]],[12,13,["G4091"]],[13,14,["G3004"]],[14,16,["G846"]],[16,19,["G4717"]],[19,20,["G5216"]],[20,21,["G935"]],[21,22,["G3588"]],[22,24,["G749"]],[24,25,["G611"]],[25,27,["G2192"]],[27,28,["G3756"]],[28,29,["G935"]],[29,30,["G1508"]],[30,31,["G2541"]]]},{"k":26841,"v":[[0,1,["G5119"]],[1,2,["G3860"]],[2,4,["G846"]],[4,5,["G3767"]],[5,7,["G846"]],[7,10,["G4717"]],[10,11,["G1161"]],[11,13,["G3880"]],[13,14,["G2424"]],[14,15,["G2532"]],[15,18,["G520"]]]},{"k":26842,"v":[[0,1,["G2532"]],[1,3,["G941"]],[3,4,["G848"]],[4,5,["G4716"]],[5,7,["G1831"]],[7,8,["G1519"]],[8,10,["G5117"]],[10,11,["G3004"]],[11,16,["G2898"]],[16,17,["G3739"]],[17,19,["G3004"]],[19,22,["G1447"]],[22,23,["G1115"]]]},{"k":26843,"v":[[0,1,["G3699"]],[1,3,["G4717"]],[3,4,["G846"]],[4,5,["G2532"]],[5,6,["G1417"]],[6,7,["G243"]],[7,8,["G3326"]],[8,9,["G846"]],[9,13,["G1782","G2532","G1782"]],[13,14,["G1161"]],[14,15,["G2424"]],[15,18,["G3319"]]]},{"k":26844,"v":[[0,1,["G1161"]],[1,2,["G4091"]],[2,3,["G1125"]],[3,5,["G5102"]],[5,6,["G2532"]],[6,7,["G5087"]],[7,9,["G1909"]],[9,10,["G3588"]],[10,11,["G4716"]],[11,12,["G1161"]],[12,14,["G1125"]],[14,15,["G2258"]],[15,16,["G2424"]],[16,18,["G3480"]],[18,19,["G3588"]],[19,20,["G935"]],[20,22,["G3588"]],[22,23,["G2453"]]]},{"k":26845,"v":[[0,1,["G5126"]],[1,2,["G5102"]],[2,3,["G3767"]],[3,4,["G314"]],[4,5,["G4183"]],[5,7,["G3588"]],[7,8,["G2453"]],[8,9,["G3754"]],[9,10,["G3588"]],[10,11,["G5117"]],[11,12,["G3699"]],[12,13,["G2424"]],[13,15,["G4717"]],[15,16,["G2258"]],[16,18,["G1451"]],[18,19,["G3588"]],[19,20,["G4172"]],[20,21,["G2532"]],[21,23,["G2258"]],[23,24,["G1125"]],[24,26,["G1447"]],[26,28,["G1676"]],[28,30,["G4515"]]]},{"k":26846,"v":[[0,1,["G3767"]],[1,2,["G3004"]],[2,3,["G3588"]],[3,5,["G749"]],[5,7,["G3588"]],[7,8,["G2453"]],[8,10,["G4091"]],[10,11,["G1125"]],[11,12,["G3361"]],[12,13,["G3588"]],[13,14,["G935"]],[14,16,["G3588"]],[16,17,["G2453"]],[17,18,["G235"]],[18,19,["G3754"]],[19,20,["G1565"]],[20,22,["G2036"]],[22,23,["G1510"]],[23,24,["G935"]],[24,26,["G3588"]],[26,27,["G2453"]]]},{"k":26847,"v":[[0,1,["G4091"]],[1,2,["G611"]],[2,3,["G3739"]],[3,6,["G1125"]],[6,9,["G1125"]]]},{"k":26848,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,3,["G4757"]],[3,4,["G3753"]],[4,7,["G4717"]],[7,8,["G2424"]],[8,9,["G2983"]],[9,10,["G846"]],[10,11,["G2440"]],[11,12,["G2532"]],[12,13,["G4160"]],[13,14,["G5064"]],[14,15,["G3313"]],[15,17,["G1538"]],[17,18,["G4757"]],[18,20,["G3313"]],[20,21,["G2532"]],[21,24,["G5509"]],[24,25,["G1161"]],[25,26,["G3588"]],[26,27,["G5509"]],[27,28,["G2258"]],[28,30,["G729"]],[30,31,["G5307"]],[31,32,["G1537"]],[32,33,["G3588"]],[33,34,["G509"]],[34,35,["G1223","G3650"]]]},{"k":26849,"v":[[0,2,["G2036"]],[2,3,["G3767"]],[3,4,["G4314"]],[4,5,["G240"]],[5,8,["G3361"]],[8,9,["G4977"]],[9,10,["G846"]],[10,11,["G235"]],[11,13,["G2975"]],[13,14,["G4012"]],[14,15,["G846"]],[15,16,["G5101"]],[16,19,["G2071"]],[19,20,["G2443"]],[20,21,["G3588"]],[21,22,["G1124"]],[22,25,["G4137"]],[25,27,["G3004"]],[27,29,["G1266"]],[29,30,["G3450"]],[30,31,["G2440"]],[31,33,["G1438"]],[33,34,["G2532"]],[34,35,["G1909"]],[35,36,["G3450"]],[36,37,["G2441"]],[37,40,["G906"]],[40,41,["G2819"]],[41,43,["G5023"]],[43,44,["G3767","(G3303)"]],[44,45,["G3588"]],[45,46,["G4757"]],[46,47,["G4160"]]]},{"k":26850,"v":[[0,1,["G1161"]],[1,3,["G2476"]],[3,4,["G3844"]],[4,5,["G3588"]],[5,6,["G4716"]],[6,8,["G2424"]],[8,9,["G846"]],[9,10,["G3384"]],[10,11,["G2532"]],[11,12,["G846"]],[12,13,["G3384"]],[13,14,["G79"]],[14,15,["G3137"]],[15,16,["G3588"]],[16,19,["G2832"]],[19,20,["G2532"]],[20,21,["G3137"]],[21,22,["G3094"]]]},{"k":26851,"v":[[0,2,["G2424"]],[2,3,["G3767"]],[3,4,["G1492"]],[4,6,["G3384"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G3101"]],[9,11,["G3936"]],[11,12,["G3739"]],[12,14,["G25"]],[14,16,["G3004"]],[16,18,["G848"]],[18,19,["G3384"]],[19,20,["G1135"]],[20,21,["G2400"]],[21,22,["G4675"]],[22,23,["G5207"]]]},{"k":26852,"v":[[0,1,["G1534"]],[1,2,["G3004"]],[2,5,["G3588"]],[5,6,["G3101"]],[6,7,["G2400"]],[7,8,["G4675"]],[8,9,["G3384"]],[9,10,["G2532"]],[10,11,["G575"]],[11,12,["G1565"]],[12,13,["G5610"]],[13,15,["G3101"]],[15,16,["G2983"]],[16,17,["G846"]],[17,18,["G1519"]],[18,20,["G2398"]],[20,21,[]]]},{"k":26853,"v":[[0,1,["G3326"]],[1,2,["G5124"]],[2,3,["G2424"]],[3,4,["G1492"]],[4,5,["G3754"]],[5,7,["G3956"]],[7,9,["G2235"]],[9,10,["G5055"]],[10,11,["G2443"]],[11,12,["G3588"]],[12,13,["G1124"]],[13,16,["G5048"]],[16,17,["G3004"]],[17,19,["G1372"]]]},{"k":26854,"v":[[0,1,["G3767"]],[1,4,["G2749"]],[4,6,["G4632"]],[6,7,["G3324"]],[7,9,["G3690"]],[9,10,["G1161"]],[10,11,["G3588"]],[11,12,["G4130"]],[12,14,["G4699"]],[14,16,["G3690"]],[16,17,["G2532"]],[17,20,["G4060"]],[20,21,["G5301"]],[21,22,["G2532"]],[22,24,["G4374"]],[24,26,["G846"]],[26,27,["G4750"]]]},{"k":26855,"v":[[0,1,["G3753"]],[1,2,["G2424"]],[2,3,["G3767"]],[3,5,["G2983"]],[5,6,["G3588"]],[6,7,["G3690"]],[7,9,["G2036"]],[9,12,["G5055"]],[12,13,["G2532"]],[13,15,["G2827"]],[15,17,["G2776"]],[17,20,["G3860"]],[20,21,["G3588"]],[21,22,["G4151"]]]},{"k":26856,"v":[[0,1,["G3588"]],[1,2,["G2453"]],[2,3,["G3767"]],[3,4,["G1893"]],[4,6,["G2258"]],[6,8,["G3904"]],[8,9,["G2443"]],[9,10,["G3588"]],[10,11,["G4983"]],[11,13,["G3361"]],[13,14,["G3306"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,17,["G4716"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,21,["G4521"]],[21,22,["G1063"]],[22,23,["G1565"]],[23,24,["G4521"]],[24,25,["G2250"]],[25,26,["G2258"]],[26,29,["G3173"]],[29,30,["G2065"]],[30,31,["G4091"]],[31,32,["G2443"]],[32,33,["G846"]],[33,34,["G4628"]],[34,37,["G2608"]],[37,38,["G2532"]],[38,44,["G142"]]]},{"k":26857,"v":[[0,1,["G3767"]],[1,2,["G2064"]],[2,3,["G3588"]],[3,4,["G4757"]],[4,5,["G2532"]],[5,6,["G2608"]],[6,7,["G3588"]],[7,8,["G4628"]],[8,10,["G3588"]],[10,11,["G4413"]],[11,12,["G2532"]],[12,14,["G3588"]],[14,15,["G243"]],[15,19,["G4957"]],[19,20,["G846"]]]},{"k":26858,"v":[[0,1,["G1161"]],[1,4,["G2064"]],[4,5,["G1909"]],[5,6,["G2424"]],[6,7,["(G5613)"]],[7,8,["G1492"]],[8,10,["G846"]],[10,12,["G2348"]],[12,13,["G2235"]],[13,15,["G2608"]],[15,16,["G3756"]],[16,17,["G846"]],[17,18,["G4628"]]]},{"k":26859,"v":[[0,1,["G235"]],[1,2,["G1520"]],[2,4,["G3588"]],[4,5,["G4757"]],[5,8,["G3057"]],[8,9,["G3572"]],[9,10,["G846"]],[10,11,["G4125"]],[11,12,["G2532"]],[12,13,["G2117"]],[13,16,["G1831"]],[16,17,["G129"]],[17,18,["G2532"]],[18,19,["G5204"]]]},{"k":26860,"v":[[0,1,["G2532"]],[1,4,["G3708"]],[4,7,["G3140"]],[7,8,["G2532"]],[8,9,["G846"]],[9,10,["G3141"]],[10,11,["G2076"]],[11,12,["G228"]],[12,14,["G2548"]],[14,15,["G1492"]],[15,16,["G3754"]],[16,18,["G3004"]],[18,19,["G227"]],[19,20,["G2443"]],[20,21,["G5210"]],[21,23,["G4100"]]]},{"k":26861,"v":[[0,1,["G1063"]],[1,3,["G5023"]],[3,5,["G1096"]],[5,6,["G2443"]],[6,7,["G3588"]],[7,8,["G1124"]],[8,11,["G4137"]],[11,13,["G3747"]],[13,15,["G846"]],[15,17,["G3756"]],[17,19,["G4937"]]]},{"k":26862,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,3,["G2087"]],[3,4,["G1124"]],[4,5,["G3004"]],[5,8,["G3700"]],[8,9,["G1519"]],[9,11,["G3739"]],[11,13,["G1574"]]]},{"k":26863,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,3,["G5023"]],[3,4,["G2501"]],[4,5,["G575"]],[5,6,["G707"]],[6,7,["G5607"]],[7,9,["G3101"]],[9,11,["G2424"]],[11,12,["G1161"]],[12,13,["G2928"]],[13,14,["G1223"]],[14,15,["G5401"]],[15,17,["G3588"]],[17,18,["G2453"]],[18,19,["G2065"]],[19,20,["G4091"]],[20,21,["G2443"]],[21,25,["G142"]],[25,26,["G3588"]],[26,27,["G4983"]],[27,29,["G2424"]],[29,30,["G2532"]],[30,31,["G4091"]],[31,34,["G2010"]],[34,36,["G2064"]],[36,37,["G3767"]],[37,38,["G2532"]],[38,39,["G142"]],[39,40,["G3588"]],[40,41,["G4983"]],[41,43,["G2424"]]]},{"k":26864,"v":[[0,1,["G1161"]],[1,3,["G2064"]],[3,4,["G2532"]],[4,5,["G3530"]],[5,10,["G2064","G4412"]],[10,11,["G4314"]],[11,12,["G2424"]],[12,14,["G3571"]],[14,16,["G5342"]],[16,18,["G3395"]],[18,20,["G4666"]],[20,21,["G2532"]],[21,22,["G250"]],[22,23,["G5616"]],[23,25,["G1540"]],[25,26,["G3046"]],[26,27,[]]]},{"k":26865,"v":[[0,1,["G3767"]],[1,2,["G2983"]],[2,4,["G3588"]],[4,5,["G4983"]],[5,7,["G2424"]],[7,8,["G2532"]],[8,9,["G1210"]],[9,10,["G846"]],[10,13,["G3608"]],[13,14,["G3326"]],[14,15,["G3588"]],[15,16,["G759"]],[16,17,["G2531"]],[17,19,["G1485"]],[19,21,["G3588"]],[21,22,["G2453"]],[22,23,["G2076"]],[23,25,["G1779"]]]},{"k":26866,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G5117"]],[4,5,["G3699"]],[5,8,["G4717"]],[8,10,["G2258"]],[10,12,["G2779"]],[12,13,["G2532"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G2779"]],[16,18,["G2537"]],[18,19,["G3419"]],[19,20,["G1722","G3739"]],[20,24,["G3764","G3762"]],[24,25,["G5087"]]]},{"k":26867,"v":[[0,1,["G1563"]],[1,2,["G5087"]],[2,4,["G2424"]],[4,5,["G3767"]],[5,7,["G1223"]],[7,8,["G3588"]],[8,9,["G2453"]],[9,10,["G3904"]],[10,12,["G3754"]],[12,13,["G3588"]],[13,14,["G3419"]],[14,15,["G2258"]],[15,18,["G1451"]]]},{"k":26868,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G3391"]],[2,5,["G3588"]],[5,6,["G4521"]],[6,7,["G2064"]],[7,8,["G3137"]],[8,9,["G3094"]],[9,10,["G4404"]],[10,13,["G5607"]],[13,14,["G2089"]],[14,15,["G4653"]],[15,16,["G1519"]],[16,17,["G3588"]],[17,18,["G3419"]],[18,19,["G2532"]],[19,20,["G991"]],[20,21,["G3588"]],[21,22,["G3037"]],[22,24,["G142"]],[24,25,["G1537"]],[25,26,["G3588"]],[26,27,["G3419"]]]},{"k":26869,"v":[[0,1,["G3767"]],[1,3,["G5143"]],[3,4,["G2532"]],[4,5,["G2064"]],[5,6,["G4314"]],[6,7,["G4613"]],[7,8,["G4074"]],[8,9,["G2532"]],[9,10,["G4314"]],[10,11,["G3588"]],[11,12,["G243"]],[12,13,["G3101"]],[13,14,["G3739"]],[14,15,["G2424"]],[15,16,["G5368"]],[16,17,["G2532"]],[17,18,["G3004"]],[18,20,["G846"]],[20,24,["G142"]],[24,25,["G3588"]],[25,26,["G2962"]],[26,27,["G1537"]],[27,29,["G3588"]],[29,30,["G3419"]],[30,31,["G2532"]],[31,33,["G1492"]],[33,34,["G3756"]],[34,35,["G4226"]],[35,38,["G5087"]],[38,39,["G846"]]]},{"k":26870,"v":[[0,1,["G4074"]],[1,2,["G3767"]],[2,4,["G1831"]],[4,5,["G2532"]],[5,7,["G243"]],[7,8,["G3101"]],[8,9,["G2532"]],[9,10,["G2064"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G3419"]]]},{"k":26871,"v":[[0,1,["G1161"]],[1,3,["G5143"]],[3,4,["G1417"]],[4,5,["G3674"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G243"]],[8,9,["G3101"]],[9,11,["G4390","G5032"]],[11,12,["G4074"]],[12,13,["G2532"]],[13,14,["G2064"]],[14,15,["G4413"]],[15,16,["G1519"]],[16,17,["G3588"]],[17,18,["G3419"]]]},{"k":26872,"v":[[0,1,["G2532"]],[1,4,["G3879"]],[4,8,["G991"]],[8,9,["G3588"]],[9,11,["G3608"]],[11,12,["G2749"]],[12,13,["G3305"]],[13,17,["G1525","G3756"]]]},{"k":26873,"v":[[0,1,["G3767"]],[1,2,["G2064"]],[2,3,["G4613"]],[3,4,["G4074"]],[4,5,["G190"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G1525"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G3419"]],[11,12,["G2532"]],[12,13,["G2334"]],[13,14,["G3588"]],[14,16,["G3608"]],[16,17,["G2749"]]]},{"k":26874,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4676"]],[3,4,["G3739"]],[4,5,["G2258"]],[5,6,["G1909"]],[6,7,["G846"]],[7,8,["G2776"]],[8,9,["G3756"]],[9,10,["G2749"]],[10,11,["G3326"]],[11,12,["G3588"]],[12,14,["G3608"]],[14,15,["G235"]],[15,17,["G1794"]],[17,18,["G1519"]],[18,19,["G1520"]],[19,20,["G5117"]],[20,22,["G5565"]]]},{"k":26875,"v":[[0,1,["G5119"]],[1,3,["G1525"]],[3,4,["G2532"]],[4,5,["(G3767)"]],[5,6,["G243"]],[6,7,["G3101"]],[7,9,["G2064"]],[9,10,["G4413"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G3419"]],[13,14,["G2532"]],[14,16,["G1491"]],[16,17,["G2532"]],[17,18,["G4100"]]]},{"k":26876,"v":[[0,1,["G1063"]],[1,6,["G3764","G1492"]],[6,7,["G3588"]],[7,8,["G1124"]],[8,9,["G3754"]],[9,10,["G846"]],[10,11,["G1163"]],[11,13,["G450"]],[13,14,["G1537"]],[14,16,["G3498"]]]},{"k":26877,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,5,["G565"]],[5,6,["G3825"]],[6,7,["G4314"]],[7,10,["G1438"]]]},{"k":26878,"v":[[0,1,["G1161"]],[1,2,["G3137"]],[2,3,["G2476"]],[3,4,["G1854"]],[4,5,["G4314"]],[5,6,["G3588"]],[6,7,["G3419"]],[7,8,["G2799"]],[8,9,["G3767"]],[9,10,["G5613"]],[10,12,["G2799"]],[12,15,["G3879"]],[15,18,["G1519"]],[18,19,["G3588"]],[19,20,["G3419"]]]},{"k":26879,"v":[[0,1,["G2532"]],[1,2,["G2334"]],[2,3,["G1417"]],[3,4,["G32"]],[4,5,["G1722"]],[5,6,["G3022"]],[6,7,["G2516"]],[7,9,["G1520"]],[9,10,["G4314"]],[10,11,["G3588"]],[11,12,["G2776"]],[12,13,["G2532"]],[13,15,["G1520"]],[15,16,["G4314"]],[16,17,["G3588"]],[17,18,["G4228"]],[18,19,["G3699"]],[19,20,["G3588"]],[20,21,["G4983"]],[21,23,["G2424"]],[23,25,["G2749"]]]},{"k":26880,"v":[[0,1,["G2532"]],[1,2,["G1565"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G1135"]],[6,7,["G5101"]],[7,8,["G2799"]],[8,11,["G3004"]],[11,13,["G846"]],[13,14,["G3754"]],[14,18,["G142"]],[18,19,["G3450"]],[19,20,["G2962"]],[20,21,["G2532"]],[21,23,["G1492"]],[23,24,["G3756"]],[24,25,["G4226"]],[25,28,["G5087"]],[28,29,["G846"]]]},{"k":26881,"v":[[0,1,["G2532"]],[1,5,["G5023"]],[5,6,["G2036"]],[6,8,["G4762"]],[8,10,["G1519","G3694"]],[10,11,["G2532"]],[11,12,["G2334"]],[12,13,["G2424"]],[13,14,["G2476"]],[14,15,["G2532"]],[15,16,["G1492"]],[16,17,["G3756"]],[17,18,["G3754"]],[18,20,["G2076"]],[20,21,["G2424"]]]},{"k":26882,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1135"]],[5,6,["G5101"]],[6,7,["G2799"]],[7,9,["G5101"]],[9,10,["G2212"]],[10,12,["G1565"]],[12,13,["G1380"]],[13,14,["(G3754)"]],[14,16,["G2076"]],[16,17,["G3588"]],[17,18,["G2780"]],[18,19,["G3004"]],[19,21,["G846"]],[21,22,["G2962"]],[22,23,["G1487"]],[23,24,["G4771"]],[24,26,["G941"]],[26,27,["G846"]],[27,29,["G2036"]],[29,30,["G3427"]],[30,31,["G4226"]],[31,34,["G5087"]],[34,35,["G846"]],[35,37,["G2504"]],[37,41,["G142","G846"]]]},{"k":26883,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G3137"]],[5,6,["G1565"]],[6,7,["G4762"]],[7,10,["G3004"]],[10,12,["G846"]],[12,13,["G4462"]],[13,17,["G3739","G3004"]],[17,18,["G1320"]]]},{"k":26884,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G680"]],[5,6,["G3450"]],[6,7,["G3361"]],[7,8,["G1063"]],[8,12,["G3768"]],[12,13,["G305"]],[13,14,["G4314"]],[14,15,["G3450"]],[15,16,["G3962"]],[16,17,["G1161"]],[17,18,["G4198"]],[18,19,["G4314"]],[19,20,["G3450"]],[20,21,["G80"]],[21,22,["G2532"]],[22,23,["G2036"]],[23,25,["G846"]],[25,27,["G305"]],[27,28,["G4314"]],[28,29,["G3450"]],[29,30,["G3962"]],[30,31,["G2532"]],[31,32,["G5216"]],[32,33,["G3962"]],[33,34,["G2532"]],[34,36,["G3450"]],[36,37,["G2316"]],[37,38,["G2532"]],[38,39,["G5216"]],[39,40,["G2316"]]]},{"k":26885,"v":[[0,1,["G3137"]],[1,2,["G3094"]],[2,3,["G2064"]],[3,5,["G518"]],[5,6,["G3588"]],[6,7,["G3101"]],[7,8,["G3754"]],[8,11,["G3708"]],[11,12,["G3588"]],[12,13,["G2962"]],[13,14,["G2532"]],[14,18,["G2036"]],[18,20,["G5023"]],[20,22,["G846"]]]},{"k":26886,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,3,["G1565"]],[3,4,["G2250"]],[4,6,["G3798"]],[6,7,["G5607"]],[7,8,["G3588"]],[8,9,["G3391"]],[9,12,["G3588"]],[12,13,["G4521"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G2374"]],[16,18,["G2808"]],[18,19,["G3699"]],[19,20,["G3588"]],[20,21,["G3101"]],[21,22,["G2258"]],[22,23,["G4863"]],[23,24,["G1223"]],[24,25,["G5401"]],[25,27,["G3588"]],[27,28,["G2453"]],[28,29,["G2064"]],[29,30,["G2424"]],[30,31,["G2532"]],[31,32,["G2476"]],[32,33,["G1519"]],[33,34,["G3588"]],[34,35,["G3319"]],[35,36,["G2532"]],[36,37,["G3004"]],[37,39,["G846"]],[39,40,["G1515"]],[40,43,["G5213"]]]},{"k":26887,"v":[[0,1,["G2532"]],[1,5,["G5124"]],[5,6,["G2036"]],[6,8,["G1166"]],[8,10,["G846"]],[10,12,["G5495"]],[12,13,["G2532"]],[13,14,["G848"]],[14,15,["G4125"]],[15,16,["G3767"]],[16,20,["G5463","G3588","G3101"]],[20,23,["G1492"]],[23,24,["G3588"]],[24,25,["G2962"]]]},{"k":26888,"v":[[0,1,["G3767"]],[1,2,["G2036"]],[2,3,["G2424"]],[3,5,["G846"]],[5,6,["G3825"]],[6,7,["G1515"]],[7,10,["G5213"]],[10,11,["G2531"]],[11,13,["G3962"]],[13,15,["G649"]],[15,16,["G3165"]],[16,20,["G2504","G3992"]],[20,21,["G5209"]]]},{"k":26889,"v":[[0,1,["G2532"]],[1,5,["G2036"]],[5,6,["G5124"]],[6,9,["G1720"]],[9,11,["G2532"]],[11,12,["G3004"]],[12,14,["G846"]],[14,15,["G2983"]],[15,18,["G40"]],[18,19,["G4151"]]]},{"k":26890,"v":[[0,2,["G5100","G302"]],[2,3,["G266"]],[3,5,["G863"]],[5,8,["G863"]],[8,10,["G846"]],[10,13,["G5100","G302"]],[13,16,["G2902"]],[16,19,["G2902"]]]},{"k":26891,"v":[[0,1,["G1161"]],[1,2,["G2381"]],[2,3,["G1520"]],[3,4,["G1537"]],[4,5,["G3588"]],[5,6,["G1427"]],[6,7,["G3004"]],[7,8,["G1324"]],[8,9,["G2258"]],[9,10,["G3756"]],[10,11,["G3326"]],[11,12,["G846"]],[12,13,["G3753"]],[13,14,["G2424"]],[14,15,["G2064"]]]},{"k":26892,"v":[[0,1,["G3588"]],[1,2,["G243"]],[2,3,["G3101"]],[3,4,["G3767"]],[4,5,["G3004"]],[5,7,["G846"]],[7,10,["G3708"]],[10,11,["G3588"]],[11,12,["G2962"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G2036"]],[15,17,["G846"]],[17,18,["G3362"]],[18,21,["G1492"]],[21,22,["G1722"]],[22,23,["G846"]],[23,24,["G5495"]],[24,25,["G3588"]],[25,26,["G5179"]],[26,28,["G3588"]],[28,29,["G2247"]],[29,30,["G2532"]],[30,31,["G906"]],[31,32,["G3450"]],[32,33,["G1147"]],[33,34,["G1519"]],[34,35,["G3588"]],[35,36,["G5179"]],[36,38,["G3588"]],[38,39,["G2247"]],[39,40,["G2532"]],[40,41,["G906"]],[41,42,["G3450"]],[42,43,["G5495"]],[43,44,["G1519"]],[44,45,["G846"]],[45,46,["G4125"]],[46,49,["G3364"]],[49,50,["G4100"]]]},{"k":26893,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,3,["G3638"]],[3,4,["G2250"]],[4,5,["G3825"]],[5,6,["G846"]],[6,7,["G3101"]],[7,8,["G2258"]],[8,9,["G2080"]],[9,10,["G2532"]],[10,11,["G2381"]],[11,12,["G3326"]],[12,13,["G846"]],[13,15,["G2064"]],[15,16,["G2424"]],[16,17,["G3588"]],[17,18,["G2374"]],[18,20,["G2808"]],[20,21,["G2532"]],[21,22,["G2476"]],[22,23,["G1519"]],[23,24,["G3588"]],[24,25,["G3319"]],[25,26,["G2532"]],[26,27,["G2036"]],[27,28,["G1515"]],[28,31,["G5213"]]]},{"k":26894,"v":[[0,1,["G1534"]],[1,2,["G3004"]],[2,5,["G2381"]],[5,6,["G5342"]],[6,7,["G5602"]],[7,8,["G4675"]],[8,9,["G1147"]],[9,10,["G2532"]],[10,11,["G1492"]],[11,12,["G3450"]],[12,13,["G5495"]],[13,14,["G2532"]],[14,15,["G5342"]],[15,17,["G4675"]],[17,18,["G5495"]],[18,19,["G2532"]],[19,20,["G906"]],[20,22,["G1519"]],[22,23,["G3450"]],[23,24,["G4125"]],[24,25,["G2532"]],[25,26,["G1096"]],[26,27,["G3361"]],[27,28,["G571"]],[28,29,["G235"]],[29,30,["G4103"]]]},{"k":26895,"v":[[0,1,["G2532"]],[1,2,["G2381"]],[2,3,["G611"]],[3,4,["G2532"]],[4,5,["G2036"]],[5,7,["G846"]],[7,8,["G3450"]],[8,9,["G2962"]],[9,10,["G2532"]],[10,11,["G3450"]],[11,12,["G2316"]]]},{"k":26896,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G2381"]],[5,6,["G3754"]],[6,9,["G3708"]],[9,10,["G3165"]],[10,13,["G4100"]],[13,14,["G3107"]],[14,20,["G1492","G3361"]],[20,21,["G2532"]],[21,24,["G4100"]]]},{"k":26897,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,3,["G243"]],[3,4,["G4592"]],[4,5,["G3303"]],[5,6,["G4160"]],[6,7,["G2424"]],[7,10,["G1799"]],[10,12,["G848"]],[12,13,["G3101"]],[13,14,["G3739"]],[14,15,["G2076"]],[15,16,["G3756"]],[16,17,["G1125"]],[17,18,["G1722"]],[18,19,["G5129"]],[19,20,["G975"]]]},{"k":26898,"v":[[0,1,["G1161"]],[1,2,["G5023"]],[2,4,["G1125"]],[4,5,["G2443"]],[5,8,["G4100"]],[8,9,["G3754"]],[9,10,["G2424"]],[10,11,["G2076"]],[11,12,["G3588"]],[12,13,["G5547"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,17,["G2316"]],[17,18,["G2532"]],[18,19,["G2443"]],[19,20,["G4100"]],[20,23,["G2192"]],[23,24,["G2222"]],[24,25,["G1722"]],[25,26,["G846"]],[26,27,["G3686"]]]},{"k":26899,"v":[[0,1,["G3326"]],[1,3,["G5023"]],[3,4,["G2424"]],[4,5,["G5319"]],[5,6,["G1438"]],[6,7,["G3825"]],[7,9,["G3588"]],[9,10,["G3101"]],[10,11,["G1909"]],[11,12,["G3588"]],[12,13,["G2281"]],[13,15,["G5085"]],[15,16,["G1161"]],[16,19,["G3779"]],[19,20,["G5319"]],[20,22,[]]]},{"k":26900,"v":[[0,2,["G2258"]],[2,3,["G3674"]],[3,4,["G4613"]],[4,5,["G4074"]],[5,6,["G2532"]],[6,7,["G2381"]],[7,8,["G3004"]],[8,9,["G1324"]],[9,10,["G2532"]],[10,11,["G3482"]],[11,12,["G575"]],[12,13,["G2580"]],[13,15,["G1056"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,20,["G2199"]],[20,21,["G2532"]],[21,22,["G1417"]],[22,23,["G243"]],[23,24,["G1537"]],[24,25,["G846"]],[25,26,["G3101"]]]},{"k":26901,"v":[[0,1,["G4613"]],[1,2,["G4074"]],[2,3,["G3004"]],[3,5,["G846"]],[5,7,["G5217"]],[7,9,["G232"]],[9,11,["G3004"]],[11,13,["G846"]],[13,14,["G2249"]],[14,15,["G2532"]],[15,16,["G2064"]],[16,17,["G4862"]],[17,18,["G4671"]],[18,21,["G1831"]],[21,22,["G2532"]],[22,23,["G305"]],[23,24,["G1519"]],[24,26,["G4143"]],[26,27,["G2117"]],[27,28,["G2532"]],[28,29,["G1565"]],[29,30,["G3571"]],[30,32,["G4084"]],[32,33,["G3762"]]]},{"k":26902,"v":[[0,1,["G1161"]],[1,4,["G4405"]],[4,6,["G2235"]],[6,7,["G1096"]],[7,8,["G2424"]],[8,9,["G2476"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G123"]],[12,13,["G3305"]],[13,14,["G3588"]],[14,15,["G3101"]],[15,16,["G1492"]],[16,17,["G3756"]],[17,18,["G3754"]],[18,20,["G2076"]],[20,21,["G2424"]]]},{"k":26903,"v":[[0,1,["G3767"]],[1,2,["G2424"]],[2,3,["G3004"]],[3,5,["G846"]],[5,6,["G3813"]],[6,7,["G2192"]],[7,9,["G3387"]],[9,10,["G4371"]],[10,12,["G611"]],[12,13,["G846"]],[13,14,["G3756"]]]},{"k":26904,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G906"]],[6,7,["G3588"]],[7,8,["G1350"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G1188"]],[11,12,["G3313"]],[12,14,["G3588"]],[14,15,["G4143"]],[15,16,["G2532"]],[16,19,["G2147"]],[19,21,["G906"]],[21,22,["G3767"]],[22,23,["G2532"]],[23,24,["G2089"]],[24,28,["G2480","G3756"]],[28,30,["G1670"]],[30,31,["G846"]],[31,32,["G575"]],[32,33,["G3588"]],[33,34,["G4128"]],[34,36,["G2486"]]]},{"k":26905,"v":[[0,1,["G3767"]],[1,2,["G1565"]],[2,3,["G3101"]],[3,4,["G3739"]],[4,5,["G2424"]],[5,6,["G25"]],[6,7,["G3004"]],[7,9,["G4074"]],[9,11,["G2076"]],[11,12,["G3588"]],[12,13,["G2962"]],[13,14,["G3767"]],[14,16,["G4613"]],[16,17,["G4074"]],[17,18,["G191"]],[18,19,["G3754"]],[19,21,["G2076"]],[21,22,["G3588"]],[22,23,["G2962"]],[23,25,["G1241"]],[25,28,["G1903"]],[28,31,["G1063"]],[31,33,["G2258"]],[33,34,["G1131"]],[34,35,["G2532"]],[35,37,["G906"]],[37,38,["G1438"]],[38,39,["G1519"]],[39,40,["G3588"]],[40,41,["G2281"]]]},{"k":26906,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G243"]],[3,4,["G3101"]],[4,5,["G2064"]],[5,9,["G4142"]],[9,10,["G1063"]],[10,12,["G2258"]],[12,13,["G3756"]],[13,14,["G3112"]],[14,15,["G575"]],[15,16,["G1093"]],[16,17,["G235"]],[17,20,["G5613"]],[20,21,["(G575)"]],[21,22,["G1250"]],[22,23,["G4083"]],[23,24,["G4951"]],[24,25,["G3588"]],[25,26,["G1350"]],[26,28,["G2486"]]]},{"k":26907,"v":[[0,4,["G5613","G3767"]],[4,7,["G576"]],[7,8,["G1519"]],[8,9,["G1093"]],[9,11,["G991"]],[11,15,["G439"]],[15,16,["(G2749)"]],[16,17,["G2532"]],[17,18,["G3795"]],[18,20,["G1945"]],[20,21,["G2532"]],[21,22,["G740"]]]},{"k":26908,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G5342"]],[5,6,["G575"]],[6,7,["G3588"]],[7,8,["G3795"]],[8,9,["G3739"]],[9,12,["G3568"]],[12,13,["G4084"]]]},{"k":26909,"v":[[0,1,["G4613"]],[1,2,["G4074"]],[2,4,["G305"]],[4,5,["G2532"]],[5,6,["G1670"]],[6,7,["G3588"]],[7,8,["G1350"]],[8,9,["G1909"]],[9,10,["G1093"]],[10,11,["G3324"]],[11,13,["G3173"]],[13,14,["G2486"]],[14,20,["G1540","G4004","G5140"]],[20,21,["G2532"]],[21,25,["G5607"]],[25,27,["G5118"]],[27,30,["G3756"]],[30,31,["G3588"]],[31,32,["G1350"]],[32,33,["G4977"]]]},{"k":26910,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1205"]],[5,7,["G709"]],[7,8,["G1161"]],[8,9,["G3762"]],[9,11,["G3588"]],[11,12,["G3101"]],[12,13,["G5111"]],[13,14,["G1833"]],[14,15,["G846"]],[15,16,["G5101"]],[16,17,["G1488"]],[17,18,["G4771"]],[18,19,["G1492"]],[19,20,["G3754"]],[20,22,["G2076"]],[22,23,["G3588"]],[23,24,["G2962"]]]},{"k":26911,"v":[[0,1,["G2424"]],[1,2,["G3767"]],[2,3,["G2064"]],[3,4,["G2532"]],[4,5,["G2983"]],[5,6,["G740"]],[6,7,["G2532"]],[7,8,["G1325"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G3795"]],[11,12,["G3668"]]]},{"k":26912,"v":[[0,1,["G5124"]],[1,3,["G2235"]],[3,6,["G5154"]],[6,8,["G2424"]],[8,9,["G5319"]],[9,12,["G848"]],[12,13,["G3101"]],[13,18,["G1453"]],[18,19,["G1537"]],[19,21,["G3498"]]]},{"k":26913,"v":[[0,1,["G3767"]],[1,2,["G3753"]],[2,5,["G709"]],[5,6,["G2424"]],[6,7,["G3004"]],[7,9,["G4613"]],[9,10,["G4074"]],[10,11,["G4613"]],[11,14,["G2495"]],[14,15,["G25"]],[15,17,["G3165"]],[17,18,["G4119"]],[18,21,["G5130"]],[21,22,["G3004"]],[22,24,["G846"]],[24,25,["G3483"]],[25,26,["G2962"]],[26,27,["G4771"]],[27,28,["G1492"]],[28,29,["G3754"]],[29,31,["G5368"]],[31,32,["G4571"]],[32,34,["G3004"]],[34,36,["G846"]],[36,37,["G1006"]],[37,38,["G3450"]],[38,39,["G721"]]]},{"k":26914,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G3825"]],[5,8,["G1208"]],[8,9,["G4613"]],[9,12,["G2495"]],[12,13,["G25"]],[13,16,["G3165"]],[16,17,["G3004"]],[17,19,["G846"]],[19,20,["G3483"]],[20,21,["G2962"]],[21,22,["G4771"]],[22,23,["G1492"]],[23,24,["G3754"]],[24,26,["G5368"]],[26,27,["G4571"]],[27,29,["G3004"]],[29,31,["G846"]],[31,32,["G4165"]],[32,33,["G3450"]],[33,34,["G4263"]]]},{"k":26915,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G3588"]],[5,7,["G5154"]],[7,8,["G4613"]],[8,11,["G2495"]],[11,12,["G5368"]],[12,14,["G3165"]],[14,15,["G4074"]],[15,17,["G3076"]],[17,18,["G3754"]],[18,20,["G2036"]],[20,22,["G846"]],[22,23,["G3588"]],[23,25,["G5154"]],[25,26,["G5368"]],[26,28,["G3165"]],[28,29,["G2532"]],[29,31,["G2036"]],[31,33,["G846"]],[33,34,["G2962"]],[34,35,["G4771"]],[35,36,["G1492"]],[36,38,["G3956"]],[38,39,["G4771"]],[39,40,["G1097"]],[40,41,["G3754"]],[41,43,["G5368"]],[43,44,["G4571"]],[44,45,["G2424"]],[45,46,["G3004"]],[46,48,["G846"]],[48,49,["G1006"]],[49,50,["G3450"]],[50,51,["G4263"]]]},{"k":26916,"v":[[0,1,["G281"]],[1,2,["G281"]],[2,4,["G3004"]],[4,6,["G4671"]],[6,7,["G3753"]],[7,9,["G2258"]],[9,10,["G3501"]],[10,12,["G2224"]],[12,13,["G4572"]],[13,14,["G2532"]],[14,15,["G4043"]],[15,16,["G3699"]],[16,18,["G2309"]],[18,19,["G1161"]],[19,20,["G3752"]],[20,24,["G1095"]],[24,28,["G1614"]],[28,29,["G4675"]],[29,30,["G5495"]],[30,31,["G2532"]],[31,32,["G243"]],[32,34,["G2224"]],[34,35,["G4571"]],[35,36,["G2532"]],[36,37,["G5342"]],[37,39,["G3699"]],[39,41,["G2309"]],[41,42,["G3756"]]]},{"k":26917,"v":[[0,0,["(G1161)"]],[0,1,["G5124"]],[1,2,["G2036"]],[2,4,["G4591"]],[4,6,["G4169"]],[6,7,["G2288"]],[7,10,["G1392"]],[10,11,["G2316"]],[11,12,["G2532"]],[12,16,["G2036"]],[16,17,["G5124"]],[17,19,["G3004"]],[19,21,["G846"]],[21,22,["G190"]],[22,23,["G3427"]]]},{"k":26918,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,4,["G1994"]],[4,5,["G991"]],[5,6,["G3588"]],[6,7,["G3101"]],[7,8,["G3739"]],[8,9,["G2424"]],[9,10,["G25"]],[10,11,["G190"]],[11,12,["G3739"]],[12,13,["G2532"]],[13,14,["G377"]],[14,15,["G1909"]],[15,16,["G846"]],[16,17,["G4738"]],[17,18,["G1722"]],[18,19,["G1173"]],[19,20,["G2532"]],[20,21,["G2036"]],[21,22,["G2962"]],[22,23,["G5101"]],[23,24,["G2076"]],[24,27,["G3860"]],[27,28,["G4571"]]]},{"k":26919,"v":[[0,1,["G4074"]],[1,2,["G1492"]],[2,3,["G5126"]],[3,4,["G3004"]],[4,6,["G2424"]],[6,7,["G2962"]],[7,8,["G1161"]],[8,9,["G5101"]],[9,12,["G3778"]],[12,13,[]]]},{"k":26920,"v":[[0,1,["G2424"]],[1,2,["G3004"]],[2,4,["G846"]],[4,5,["G1437"]],[5,7,["G2309"]],[7,9,["G846"]],[9,10,["G3306"]],[10,11,["G2193"]],[11,13,["G2064"]],[13,14,["G5101"]],[14,17,["G4314"]],[17,18,["G4571"]],[18,19,["G190"]],[19,20,["G4771"]],[20,21,["G3427"]]]},{"k":26921,"v":[[0,1,["G3767"]],[1,5,["G1831","G3778","G3056"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G80"]],[8,9,["G3754"]],[9,10,["G1565"]],[10,11,["G3101"]],[11,13,["G3756"]],[13,14,["G599"]],[14,15,["G2532"]],[15,16,["G2424"]],[16,17,["G2036"]],[17,18,["G3756"]],[18,20,["G846"]],[20,22,["(G3754)"]],[22,23,["G3756"]],[23,24,["G599"]],[24,25,["G235"]],[25,26,["G1437"]],[26,28,["G2309"]],[28,30,["G846"]],[30,31,["G3306"]],[31,32,["G2193"]],[32,34,["G2064"]],[34,35,["G5101"]],[35,38,["G4314"]],[38,39,["G4571"]]]},{"k":26922,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,3,["G3588"]],[3,4,["G3101"]],[4,6,["G3140"]],[6,7,["G4012"]],[7,9,["G5023"]],[9,10,["G2532"]],[10,11,["G1125"]],[11,13,["G5023"]],[13,14,["G2532"]],[14,16,["G1492"]],[16,17,["G3754"]],[17,18,["G846"]],[18,19,["G3141"]],[19,20,["G2076"]],[20,21,["G227"]]]},{"k":26923,"v":[[0,1,["G1161"]],[1,3,["G2076"]],[3,4,["G2532"]],[4,5,["G4183"]],[5,7,["G243"]],[7,8,["G3745"]],[8,9,["G2424"]],[9,10,["G4160"]],[10,12,["G3748"]],[12,13,["G1437"]],[13,17,["G1125"]],[17,19,["G2596","G1520"]],[19,21,["G3633"]],[21,24,["G3588"]],[24,25,["G2889"]],[25,26,["G846"]],[26,28,["G3761"]],[28,29,["G5562"]],[29,30,["G3588"]],[30,31,["G975"]],[31,35,["G1125"]],[35,36,["G281"]]]},{"k":26924,"v":[[0,1,["G3588"]],[1,2,["G4413"]],[2,3,["G3056"]],[3,4,["(G3303)"]],[4,6,["G4160"]],[6,7,["G5599"]],[7,8,["G2321"]],[8,9,["G4012"]],[9,10,["G3956"]],[10,11,["G3739"]],[11,12,["G2424"]],[12,13,["G756"]],[13,14,["G5037"]],[14,16,["G4160"]],[16,17,["G2532"]],[17,18,["G1321"]]]},{"k":26925,"v":[[0,1,["G891"]],[1,3,["G2250"]],[3,5,["G3739"]],[5,9,["G353"]],[9,13,["G1223"]],[13,15,["G40"]],[15,16,["G4151"]],[16,19,["G1781"]],[19,21,["G3588"]],[21,22,["G652"]],[22,23,["G3739"]],[23,26,["G1586"]]]},{"k":26926,"v":[[0,2,["G3739"]],[2,3,["G2532"]],[3,5,["G3936"]],[5,6,["G1438"]],[6,7,["G2198"]],[7,9,["G846"]],[9,10,["G3958"]],[10,11,["G1722"]],[11,12,["G4183"]],[12,14,["G5039"]],[14,16,["G3700"]],[16,18,["G846"]],[18,19,["G5062"]],[19,20,["G2250"]],[20,21,["G2532"]],[21,22,["G3004"]],[22,25,["G3588"]],[25,26,["G4012"]],[26,28,["G3588"]],[28,29,["G932"]],[29,31,["G2316"]]]},{"k":26927,"v":[[0,1,["G2532"]],[1,5,["G4871"]],[5,7,["G3853"]],[7,8,["G846"]],[8,12,["G3361"]],[12,13,["G5563"]],[13,14,["G575"]],[14,15,["G2414"]],[15,16,["G235"]],[16,18,["G4037"]],[18,19,["G3588"]],[19,20,["G1860"]],[20,22,["G3588"]],[22,23,["G3962"]],[23,24,["G3739"]],[24,29,["G191"]],[29,31,["G3450"]]]},{"k":26928,"v":[[0,1,["G3754"]],[1,2,["G2491"]],[2,3,["G3303"]],[3,4,["G907"]],[4,6,["G5204"]],[6,7,["G1161"]],[7,8,["G5210"]],[8,11,["G907"]],[11,12,["G1722"]],[12,14,["G40"]],[14,15,["G4151"]],[15,16,["G3756"]],[16,17,["G4183"]],[17,18,["G2250"]],[18,19,["G5025"]]]},{"k":26929,"v":[[0,2,["G3588","(G3303)"]],[2,3,["G3767"]],[3,6,["G4905"]],[6,8,["G1905"]],[8,10,["G846"]],[10,11,["G3004"]],[11,12,["G2962"]],[12,14,["(G1487)"]],[14,15,["G1722"]],[15,16,["G5129"]],[16,17,["G5550"]],[17,19,["G600"]],[19,20,["G3588"]],[20,21,["G932"]],[21,23,["G2474"]]]},{"k":26930,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,7,["G2076"]],[7,8,["G3756"]],[8,10,["G5216"]],[10,12,["G1097"]],[12,14,["G5550"]],[14,15,["G2228"]],[15,17,["G2540"]],[17,18,["G3739"]],[18,19,["G3588"]],[19,20,["G3962"]],[20,22,["G5087"]],[22,23,["G1722"]],[23,25,["G2398"]],[25,26,["G1849"]]]},{"k":26931,"v":[[0,1,["G235"]],[1,4,["G2983"]],[4,5,["G1411"]],[5,8,["G3588"]],[8,9,["G40"]],[9,10,["G4151"]],[10,12,["G1904"]],[12,13,["G1909"]],[13,14,["G5209"]],[14,15,["G2532"]],[15,18,["G2071"]],[18,19,["G3144"]],[19,21,["G3427"]],[21,22,["G5037"]],[22,23,["G1722"]],[23,24,["G2419"]],[24,25,["G2532"]],[25,26,["G1722"]],[26,27,["G3956"]],[27,28,["G2449"]],[28,29,["G2532"]],[29,31,["G4540"]],[31,32,["G2532"]],[32,33,["G2193"]],[33,36,["G2078"]],[36,38,["G3588"]],[38,39,["G1093"]]]},{"k":26932,"v":[[0,1,["G2532"]],[1,5,["G2036"]],[5,7,["G5023"]],[7,9,["G846"]],[9,10,["G991"]],[10,14,["G1869"]],[14,15,["G2532"]],[15,17,["G3507"]],[17,18,["G5274"]],[18,19,["G846"]],[19,21,["G575"]],[21,22,["G846"]],[22,23,["G3788"]]]},{"k":26933,"v":[[0,1,["G2532"]],[1,2,["G5613"]],[2,5,["G2258","G816"]],[5,6,["G1519"]],[6,7,["G3772"]],[7,9,["G846"]],[9,11,["G4198"]],[11,12,["G2400"]],[12,13,["G1417"]],[13,14,["G435","(G2532)"]],[14,16,["G3936"]],[16,17,["G846"]],[17,18,["G1722"]],[18,19,["G3022"]],[19,20,["G2066"]]]},{"k":26934,"v":[[0,1,["G3739"]],[1,2,["G2532"]],[2,3,["G2036"]],[3,5,["G435"]],[5,7,["G1057"]],[7,8,["G5101"]],[8,9,["G2476"]],[9,12,["G1689"]],[12,13,["G1519"]],[13,14,["G3772"]],[14,16,["G3778"]],[16,17,["G2424"]],[17,21,["G353"]],[21,22,["G575"]],[22,23,["G5216"]],[23,24,["G1519"]],[24,25,["G3772"]],[25,27,["G3779"]],[27,28,["G2064"]],[28,31,["G3739","G5158"]],[31,35,["G2300"]],[35,36,["G846"]],[36,37,["G4198"]],[37,38,["G1519"]],[38,39,["G3772"]]]},{"k":26935,"v":[[0,1,["G5119"]],[1,2,["G5290"]],[2,4,["G1519"]],[4,5,["G2419"]],[5,6,["G575"]],[6,8,["G3735"]],[8,9,["G2564"]],[9,10,["G1638"]],[10,12,["G3603"]],[12,13,["G1451"]],[13,14,["G2419"]],[14,15,["(G2192)"]],[15,17,["G4521"]],[17,18,["G3598"]]]},{"k":26936,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,6,["G1525"]],[6,9,["G305"]],[9,10,["G1519"]],[10,13,["G5253"]],[13,14,["G3757"]],[14,15,["G2258","G2650"]],[15,16,["G5037"]],[16,17,["G4074"]],[17,18,["G2532"]],[18,19,["G2385"]],[19,20,["G2532"]],[20,21,["G2491"]],[21,22,["G2532"]],[22,23,["G406"]],[23,24,["G5376"]],[24,25,["G2532"]],[25,26,["G2381"]],[26,27,["G918"]],[27,28,["G2532"]],[28,29,["G3156"]],[29,30,["G2385"]],[30,34,["G256"]],[34,35,["G2532"]],[35,36,["G4613"]],[36,37,["G2208"]],[37,38,["G2532"]],[38,39,["G2455"]],[39,43,["G2385"]]]},{"k":26937,"v":[[0,1,["G3778"]],[1,2,["G3956"]],[2,3,["G2258","G4342"]],[3,6,["G3661"]],[6,8,["G4335"]],[8,9,["G2532"]],[9,10,["G1162"]],[10,11,["G4862"]],[11,13,["G1135"]],[13,14,["G2532"]],[14,15,["G3137"]],[15,16,["G3588"]],[16,17,["G3384"]],[17,19,["G2424"]],[19,20,["G2532"]],[20,21,["G4862"]],[21,22,["G846"]],[22,23,["G80"]]]},{"k":26938,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G5025"]],[3,4,["G2250"]],[4,5,["G4074"]],[5,7,["G450"]],[7,8,["G1722"]],[8,10,["G3319"]],[10,12,["G3588"]],[12,13,["G3101"]],[13,15,["G2036"]],[15,16,["(G5037)"]],[16,17,["G3793"]],[17,19,["G3686"]],[19,20,["G1909","G846"]],[20,21,["G2258"]],[21,22,["G5613"]],[22,26,["G1540","G1501"]]]},{"k":26939,"v":[[0,1,["G435"]],[1,3,["G80"]],[3,4,["G5026"]],[4,5,["G1124"]],[5,7,["G1163"]],[7,10,["G4137"]],[10,11,["G3739"]],[11,12,["G3588"]],[12,13,["G40"]],[13,14,["G4151"]],[14,15,["G1223"]],[15,17,["G4750"]],[17,19,["G1138"]],[19,21,["G4277"]],[21,22,["G4012"]],[22,23,["G2455"]],[23,25,["G1096"]],[25,26,["G3595"]],[26,30,["G4815"]],[30,31,["G2424"]]]},{"k":26940,"v":[[0,1,["G3754"]],[1,3,["G2258"]],[3,4,["G2674"]],[4,5,["G4862"]],[5,6,["G2254"]],[6,7,["G2532"]],[7,9,["G2975"]],[9,10,["G2819"]],[10,12,["G5026"]],[12,13,["G1248"]]]},{"k":26941,"v":[[0,1,["G3767"]],[1,3,["G3778","(G3303)"]],[3,4,["G2932"]],[4,6,["G5564"]],[6,7,["G1537"]],[7,8,["G3588"]],[8,9,["G3408"]],[9,11,["G93"]],[11,12,["G2532"]],[12,13,["G1096"]],[13,14,["G4248"]],[14,17,["G2997"]],[17,20,["G3319"]],[20,21,["G2532"]],[21,22,["G3956"]],[22,23,["G846"]],[23,24,["G4698"]],[24,26,["G1632"]]]},{"k":26942,"v":[[0,1,["G2532"]],[1,3,["G1096"]],[3,4,["G1110"]],[4,6,["G3956"]],[6,7,["G3588"]],[7,8,["G2730"]],[8,10,["G2419"]],[10,12,["G5620"]],[12,13,["G1565"]],[13,14,["G5564"]],[14,16,["G2564"]],[16,18,["G846"]],[18,19,["G2398"]],[19,20,["G1258"]],[20,21,["G184"]],[21,25,["G5123"]],[25,27,["G5564"]],[27,29,["G129"]]]},{"k":26943,"v":[[0,1,["G1063"]],[1,4,["G1125"]],[4,5,["G1722"]],[5,7,["G976"]],[7,9,["G5568"]],[9,11,["G846"]],[11,12,["G1886"]],[12,13,["G1096"]],[13,14,["G2048"]],[14,15,["G2532"]],[15,17,["G3361"]],[17,18,["(G2077)"]],[18,19,["G2730"]],[19,20,["G1722","G846"]],[20,21,["G2532"]],[21,22,["G846"]],[22,23,["G1984"]],[23,25,["G2087"]],[25,26,["G2983"]]]},{"k":26944,"v":[[0,1,["G3767"]],[1,2,["(G1163)"]],[2,4,["G435"]],[4,7,["G4905"]],[7,9,["G2254"]],[9,10,["G3956"]],[10,12,["G5550"]],[12,13,["G1722","G3739"]],[13,14,["G3588"]],[14,15,["G2962"]],[15,16,["G2424"]],[16,18,["G1525"]],[18,19,["G2532"]],[19,20,["G1831"]],[20,21,["G1909"]],[21,22,["G2248"]]]},{"k":26945,"v":[[0,1,["G756"]],[1,2,["G575"]],[2,3,["G3588"]],[3,4,["G908"]],[4,6,["G2491"]],[6,7,["G2193"]],[7,10,["G2250"]],[10,11,["G3739"]],[11,15,["G353"]],[15,16,["G575"]],[16,17,["G2257"]],[17,19,["G1520"]],[19,20,["(G5130)"]],[20,21,["G1096"]],[21,25,["G3144"]],[25,26,["G4862"]],[26,27,["G2254"]],[27,29,["G846"]],[29,30,["G386"]]]},{"k":26946,"v":[[0,1,["G2532"]],[1,3,["G2476"]],[3,4,["G1417"]],[4,5,["G2501"]],[5,6,["G2564"]],[6,7,["G923"]],[7,8,["G3739"]],[8,10,["G1941"]],[10,11,["G2459"]],[11,12,["G2532"]],[12,13,["G3159"]]]},{"k":26947,"v":[[0,1,["G2532"]],[1,3,["G4336"]],[3,5,["G2036"]],[5,6,["G4771"]],[6,7,["G2962"]],[7,11,["G2589"]],[11,13,["G3956"]],[13,15,["G322"]],[15,16,["G3739","G1520"]],[16,17,["G1537"]],[17,18,["G5130"]],[18,19,["G1417"]],[19,22,["G1586"]]]},{"k":26948,"v":[[0,4,["G2983"]],[4,5,["G2819"]],[5,7,["G5026"]],[7,8,["G1248"]],[8,9,["G2532"]],[9,10,["G651"]],[10,11,["G1537"]],[11,12,["G3739"]],[12,13,["G2455"]],[13,16,["G3845"]],[16,20,["G4198"]],[20,21,["G1519"]],[21,23,["G2398"]],[23,24,["G5117"]]]},{"k":26949,"v":[[0,1,["G2532"]],[1,4,["G1325"]],[4,5,["G846"]],[5,6,["G2819"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G2819"]],[9,10,["G4098"]],[10,11,["G1909"]],[11,12,["G3159"]],[12,13,["G2532"]],[13,16,["G4785"]],[16,17,["G3326"]],[17,18,["G3588"]],[18,19,["G1733"]],[19,20,["G652"]]]},{"k":26950,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G2250"]],[4,6,["G4005"]],[6,9,["G4845"]],[9,11,["G2258"]],[11,12,["G537"]],[12,15,["G3661"]],[15,16,["G1909"]],[16,18,["G846"]]]},{"k":26951,"v":[[0,1,["G2532"]],[1,2,["G869"]],[2,4,["G1096"]],[4,6,["G2279"]],[6,7,["G1537"]],[7,8,["G3772"]],[8,9,["G5618"]],[9,12,["G5342"]],[12,13,["G972"]],[13,14,["G4157"]],[14,15,["G2532"]],[15,17,["G4137"]],[17,18,["G3650"]],[18,19,["G3588"]],[19,20,["G3624"]],[20,21,["G3757"]],[21,23,["G2258"]],[23,24,["G2521"]]]},{"k":26952,"v":[[0,1,["G2532"]],[1,3,["G3700"]],[3,5,["G846"]],[5,6,["G1266"]],[6,7,["G1100"]],[7,9,["G5616"]],[9,11,["G4442"]],[11,12,["G5037"]],[12,14,["G2523"]],[14,15,["G1909"]],[15,16,["G1538","G1520"]],[16,18,["G846"]]]},{"k":26953,"v":[[0,1,["G2532"]],[1,4,["G537"]],[4,5,["G4130"]],[5,8,["G40"]],[8,9,["G4151"]],[9,10,["G2532"]],[10,11,["G756"]],[11,13,["G2980"]],[13,15,["G2087"]],[15,16,["G1100"]],[16,17,["G2531"]],[17,18,["G3588"]],[18,19,["G4151"]],[19,20,["G1325"]],[20,21,["G846"]],[21,22,["G669"]]]},{"k":26954,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G2730"]],[4,5,["G1722"]],[5,6,["G2419"]],[6,7,["G2453"]],[7,8,["G2126"]],[8,9,["G435"]],[9,11,["G575"]],[11,12,["G3956"]],[12,13,["G1484"]],[13,14,["G5259"]],[14,15,["G3772"]]]},{"k":26955,"v":[[0,1,["G1161"]],[1,3,["G5026"]],[3,6,["G1096","G5456"]],[6,7,["G3588"]],[7,8,["G4128"]],[8,10,["G4905"]],[10,11,["G2532"]],[11,13,["G4797"]],[13,14,["G3754"]],[14,17,["G1538","G1520"]],[17,18,["G191"]],[18,19,["G846"]],[19,20,["G2980"]],[20,23,["G2398"]],[23,24,["G1258"]]]},{"k":26956,"v":[[0,1,["G1161"]],[1,4,["G3956"]],[4,5,["G1839"]],[5,6,["G2532"]],[6,7,["G2296"]],[7,8,["G3004"]],[8,11,["G240","G4314"]],[11,12,["G2400"]],[12,13,["G1526"]],[13,14,["G3756"]],[14,15,["G3956"]],[15,16,["G3778"]],[16,18,["G2980"]],[18,19,["G1057"]]]},{"k":26957,"v":[[0,1,["G2532"]],[1,2,["G4459"]],[2,3,["G191"]],[3,4,["G2249"]],[4,6,["G1538"]],[6,8,["G2257"]],[8,9,["G2398"]],[9,10,["G1258"]],[10,11,["G1722","G3739"]],[11,14,["G1080"]]]},{"k":26958,"v":[[0,1,["G3934"]],[1,2,["G2532"]],[2,3,["G3370"]],[3,4,["G2532"]],[4,5,["G1639"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G2730"]],[8,10,["G3318"]],[10,11,["G5037"]],[11,13,["G2449"]],[13,14,["G2532"]],[14,15,["G2587"]],[15,17,["G4195"]],[17,18,["G2532"]],[18,19,["G773"]]]},{"k":26959,"v":[[0,0,["(G5037)"]],[0,1,["G5435"]],[1,2,["G2532"]],[2,3,["G3828"]],[3,5,["G125"]],[5,6,["G2532"]],[6,8,["G3588"]],[8,9,["G3313"]],[9,11,["G3033"]],[11,12,["G2596"]],[12,13,["G2957"]],[13,14,["G2532"]],[14,15,["G1927"]],[15,17,["G4514","(G5037)"]],[17,18,["G2453"]],[18,19,["G2532"]],[19,20,["G4339"]]]},{"k":26960,"v":[[0,1,["G2912"]],[1,2,["G2532"]],[2,3,["G690"]],[3,6,["G191"]],[6,7,["G846"]],[7,8,["G2980"]],[8,10,["G2251"]],[10,11,["G1100"]],[11,12,["G3588"]],[12,14,["G3167"]],[14,16,["G2316"]]]},{"k":26961,"v":[[0,1,["G1161"]],[1,4,["G3956"]],[4,5,["G1839"]],[5,6,["G2532"]],[6,9,["G1280"]],[9,10,["G3004"]],[10,13,["G243","G4314","G243"]],[13,14,["G5101"]],[14,15,["G2309","G302","G1511"]],[15,16,["G5124"]]]},{"k":26962,"v":[[0,0,["(G1161)"]],[0,1,["G2087"]],[1,2,["G5512"]],[2,3,["G3004"]],[3,6,["G1526"]],[6,7,["G3325"]],[7,10,["G1098"]]]},{"k":26963,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,4,["G2476"]],[4,5,["G4862"]],[5,6,["G3588"]],[6,7,["G1733"]],[7,9,["G1869"]],[9,10,["G848"]],[10,11,["G5456"]],[11,12,["G2532"]],[12,13,["G669"]],[13,15,["G846"]],[15,17,["G435"]],[17,19,["G2453"]],[19,20,["G2532"]],[20,21,["G537"]],[21,24,["G2730"]],[24,26,["G2419"]],[26,27,["G2077"]],[27,28,["G5124"]],[28,29,["G1110"]],[29,31,["G5213"]],[31,32,["G2532"]],[32,33,["G1801"]],[33,35,["G3450"]],[35,36,["G4487"]]]},{"k":26964,"v":[[0,1,["G1063"]],[1,2,["G3778"]],[2,4,["G3756"]],[4,5,["G3184"]],[5,6,["G5613"]],[6,7,["G5210"]],[7,8,["G5274"]],[8,9,["G1063"]],[9,11,["G2076"]],[11,14,["G5154"]],[14,15,["G5610"]],[15,17,["G3588"]],[17,18,["G2250"]]]},{"k":26965,"v":[[0,1,["G235"]],[1,2,["G5124"]],[2,3,["G2076"]],[3,7,["G2046"]],[7,8,["G1223"]],[8,9,["G3588"]],[9,10,["G4396"]],[10,11,["G2493"]]]},{"k":26966,"v":[[0,1,["G2532"]],[1,6,["G2071"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G2078"]],[9,10,["G2250"]],[10,11,["G3004"]],[11,12,["G2316"]],[12,16,["G1632"]],[16,17,["G575"]],[17,18,["G3450"]],[18,19,["G4151"]],[19,20,["G1909"]],[20,21,["G3956"]],[21,22,["G4561"]],[22,23,["G2532"]],[23,24,["G5216"]],[24,25,["G5207"]],[25,26,["G2532"]],[26,27,["G5216"]],[27,28,["G2364"]],[28,30,["G4395"]],[30,31,["G2532"]],[31,32,["G5216"]],[32,34,["G3495"]],[34,36,["G3700"]],[36,37,["G3706"]],[37,38,["G2532"]],[38,39,["G5216"]],[39,41,["G4245"]],[41,43,["G1797"]],[43,44,["G1798"]]]},{"k":26967,"v":[[0,1,["G2532","(G1065)"]],[1,2,["G1909"]],[2,3,["G3450"]],[3,4,["G1401"]],[4,5,["G2532"]],[5,6,["G1909"]],[6,7,["G3450"]],[7,8,["G1399"]],[8,12,["G1632"]],[12,13,["G1722"]],[13,14,["G1565"]],[14,15,["G2250"]],[15,16,["G575"]],[16,17,["G3450"]],[17,18,["G4151"]],[18,19,["G2532"]],[19,22,["G4395"]]]},{"k":26968,"v":[[0,1,["G2532"]],[1,4,["G1325"]],[4,5,["G5059"]],[5,6,["G1722"]],[6,7,["G3772"]],[7,8,["G507"]],[8,9,["G2532"]],[9,10,["G4592"]],[10,11,["G1909"]],[11,12,["G3588"]],[12,13,["G1093"]],[13,14,["G2736"]],[14,15,["G129"]],[15,16,["G2532"]],[16,17,["G4442"]],[17,18,["G2532"]],[18,19,["G822"]],[19,21,["G2586"]]]},{"k":26969,"v":[[0,1,["G3588"]],[1,2,["G2246"]],[2,5,["G3344"]],[5,6,["G1519"]],[6,7,["G4655"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G4582"]],[10,11,["G1519"]],[11,12,["G129"]],[12,13,["G4250"]],[13,14,["(G2228)"]],[14,15,["G3173"]],[15,16,["G2532"]],[16,17,["G2016"]],[17,18,["G2250"]],[18,21,["G2962"]],[21,22,["G2064"]]]},{"k":26970,"v":[[0,1,["G2532"]],[1,6,["G2071"]],[6,8,["G3956","G3739","G302"]],[8,11,["G1941"]],[11,12,["G3588"]],[12,13,["G3686"]],[13,16,["G2962"]],[16,19,["G4982"]]]},{"k":26971,"v":[[0,2,["G435"]],[2,4,["G2475"]],[4,5,["G191"]],[5,6,["G5128"]],[6,7,["G3056"]],[7,8,["G2424"]],[8,10,["G3480"]],[10,12,["G435"]],[12,13,["G584"]],[13,14,["G575"]],[14,15,["G2316"]],[15,16,["G1519"]],[16,17,["G5209"]],[17,19,["G1411"]],[19,20,["G2532"]],[20,21,["G5059"]],[21,22,["G2532"]],[22,23,["G4592"]],[23,24,["G3739"]],[24,25,["G2316"]],[25,26,["G4160"]],[26,27,["G1223"]],[27,28,["G846"]],[28,29,["G1722"]],[29,31,["G3319"]],[31,33,["G5216"]],[33,34,["G2531"]],[34,35,["G846"]],[35,37,["G2532"]],[37,38,["G1492"]]]},{"k":26972,"v":[[0,1,["G5126"]],[1,3,["G1560"]],[3,5,["G3588"]],[5,6,["G3724"]],[6,7,["G1012"]],[7,8,["G2532"]],[8,9,["G4268"]],[9,11,["G2316"]],[11,14,["G2983"]],[14,16,["G1223"]],[16,17,["G459"]],[17,18,["G5495"]],[18,20,["G4362"]],[20,22,["G337"]]]},{"k":26973,"v":[[0,1,["G3739"]],[1,2,["G2316"]],[2,5,["G450"]],[5,7,["G3089"]],[7,8,["G3588"]],[8,9,["G5604"]],[9,11,["G2288"]],[11,12,["G2530"]],[12,14,["G2258"]],[14,15,["G3756"]],[15,16,["G1415"]],[16,18,["G846"]],[18,21,["G2902"]],[21,22,["G5259"]],[22,23,["G846"]]]},{"k":26974,"v":[[0,1,["G1063"]],[1,2,["G1138"]],[2,3,["G3004"]],[3,4,["G1519"]],[4,5,["G846"]],[5,7,["G4308"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,10,["G1223","G3956"]],[10,11,["G1799"]],[11,13,["G3450"]],[13,14,["G3754"]],[14,16,["G2076"]],[16,17,["G1537"]],[17,18,["G3450"]],[18,20,["G1188"]],[20,21,["G2443"]],[21,24,["G3361"]],[24,26,["G4531"]]]},{"k":26975,"v":[[0,1,["G1223","G5124"]],[1,3,["G3450"]],[3,4,["G2588"]],[4,5,["G2165"]],[5,6,["G2532"]],[6,7,["G3450"]],[7,8,["G1100"]],[8,10,["G21"]],[10,11,["G1161","G2089"]],[11,12,["G2532"]],[12,13,["G3450"]],[13,14,["G4561"]],[14,16,["G2681"]],[16,17,["G1909"]],[17,18,["G1680"]]]},{"k":26976,"v":[[0,1,["G3754"]],[1,4,["G3756"]],[4,5,["G1459"]],[5,6,["G3450"]],[6,7,["G5590"]],[7,8,["G1519"]],[8,9,["G86"]],[9,10,["G3761"]],[10,13,["G1325"]],[13,14,["G4675"]],[14,16,["G3741"]],[16,18,["G1492"]],[18,19,["G1312"]]]},{"k":26977,"v":[[0,4,["G1107"]],[4,6,["G3427"]],[6,8,["G3598"]],[8,10,["G2222"]],[10,15,["G4137","G3165"]],[15,17,["G2167"]],[17,18,["G3326"]],[18,19,["G4675"]],[19,20,["G4383"]]]},{"k":26978,"v":[[0,1,["G435"]],[1,3,["G80"]],[3,4,["G1832"]],[4,6,["G3326","G3954"]],[6,7,["G2036"]],[7,8,["G4314"]],[8,9,["G5209"]],[9,10,["G4012"]],[10,11,["G3588"]],[11,12,["G3966"]],[12,13,["G1138"]],[13,14,["G3754"]],[14,18,["G5053","G2532"]],[18,19,["G2532"]],[19,20,["G2290"]],[20,21,["G2532"]],[21,22,["G846"]],[22,23,["G3418"]],[23,24,["G2076"]],[24,25,["G1722"]],[25,26,["G2254"]],[26,27,["G891"]],[27,28,["G5026"]],[28,29,["G2250"]]]},{"k":26979,"v":[[0,1,["G3767"]],[1,2,["G5225"]],[2,4,["G4396"]],[4,5,["G2532"]],[5,6,["G1492"]],[6,7,["G3754"]],[7,8,["G2316"]],[8,10,["G3660"]],[10,13,["G3727"]],[13,15,["G846"]],[15,17,["G1537"]],[17,19,["G2590"]],[19,21,["G846"]],[21,22,["G3751"]],[22,24,["G2596"]],[24,26,["G4561"]],[26,30,["G450"]],[30,31,["G5547"]],[31,33,["G2523"]],[33,34,["G1909"]],[34,35,["G846"]],[35,36,["G2362"]]]},{"k":26980,"v":[[0,4,["G4275"]],[4,5,["G2980"]],[5,6,["G4012"]],[6,7,["G3588"]],[7,8,["G386"]],[8,10,["G5547"]],[10,11,["G3754"]],[11,12,["G846"]],[12,13,["G5590"]],[13,15,["G3756"]],[15,16,["G2641"]],[16,17,["G1519"]],[17,18,["G86"]],[18,19,["G3761"]],[19,20,["G846"]],[20,21,["G4561"]],[21,23,["G1492"]],[23,24,["G1312"]]]},{"k":26981,"v":[[0,1,["G5126"]],[1,2,["G2424"]],[2,4,["G2316"]],[4,6,["G450"]],[6,7,["G3739"]],[7,8,["G2249"]],[8,9,["G3956"]],[9,10,["G2070"]],[10,11,["G3144"]]]},{"k":26982,"v":[[0,1,["G3767"]],[1,4,["G3588"]],[4,6,["G1188"]],[6,8,["G2316"]],[8,9,["G5312"]],[9,10,["G5037"]],[10,12,["G2983"]],[12,13,["G3844"]],[13,14,["G3588"]],[14,15,["G3962"]],[15,16,["G3588"]],[16,17,["G1860"]],[17,19,["G3588"]],[19,20,["G40"]],[20,21,["G4151"]],[21,25,["G1632"]],[25,26,["G5124"]],[26,27,["G3739"]],[27,28,["G5210"]],[28,29,["G3568"]],[29,30,["G991"]],[30,31,["G2532"]],[31,32,["G191"]]]},{"k":26983,"v":[[0,1,["G1063"]],[1,2,["G1138"]],[2,4,["G3756"]],[4,5,["G305"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G3772"]],[8,9,["G1161"]],[9,10,["G846"]],[10,11,["G3004"]],[11,13,["G3588"]],[13,14,["G2962"]],[14,15,["G2036"]],[15,17,["G3450"]],[17,18,["G2962"]],[18,19,["G2521"]],[19,21,["G1537"]],[21,22,["G3450"]],[22,24,["G1188"]]]},{"k":26984,"v":[[0,1,["G2193"]],[1,3,["G5087","G302"]],[3,4,["G4675"]],[4,5,["G2190"]],[5,7,["G5286","G4675","G4228"]]]},{"k":26985,"v":[[0,1,["G3767"]],[1,3,["G3956"]],[3,5,["G3624"]],[5,7,["G2474"]],[7,8,["G1097"]],[8,9,["G806"]],[9,10,["G3754"]],[10,11,["G2316"]],[11,13,["G4160"]],[13,15,["G5126"]],[15,16,["G2424"]],[16,17,["G3739"]],[17,18,["G5210"]],[18,20,["G4717"]],[20,21,["G2532"]],[21,22,["G2962"]],[22,23,["G2532"]],[23,24,["G5547"]]]},{"k":26986,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,8,["G2660"]],[8,11,["G2588"]],[11,12,["G5037"]],[12,13,["G2036"]],[13,14,["G4314"]],[14,15,["G4074"]],[15,16,["G2532"]],[16,18,["G3588"]],[18,19,["G3062"]],[19,22,["G652"]],[22,23,["G435"]],[23,25,["G80"]],[25,26,["G5101"]],[26,29,["G4160"]]]},{"k":26987,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G5346"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G3340"]],[6,7,["G2532"]],[7,9,["G907"]],[9,11,["G1538"]],[11,13,["G5216"]],[13,14,["G1909"]],[14,15,["G3588"]],[15,16,["G3686"]],[16,18,["G2424"]],[18,19,["G5547"]],[19,20,["G1519"]],[20,22,["G859"]],[22,24,["G266"]],[24,25,["G2532"]],[25,28,["G2983"]],[28,29,["G3588"]],[29,30,["G1431"]],[30,32,["G3588"]],[32,33,["G40"]],[33,34,["G4151"]]]},{"k":26988,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G1860"]],[3,4,["G2076"]],[4,6,["G5213"]],[6,7,["G2532"]],[7,9,["G5216"]],[9,10,["G5043"]],[10,11,["G2532"]],[11,13,["G3956"]],[13,14,["G3588"]],[14,17,["G1519","G3112"]],[17,21,["G3745","G302"]],[21,23,["G2962"]],[23,24,["G2257"]],[24,25,["G2316"]],[25,27,["G4341"]]]},{"k":26989,"v":[[0,1,["G5037"]],[1,3,["G4119"]],[3,4,["G2087"]],[4,5,["G3056"]],[5,8,["G1263"]],[8,9,["G2532"]],[9,10,["G3870"]],[10,11,["G3004"]],[11,12,["G4982"]],[12,14,["G575"]],[14,15,["G5026"]],[15,16,["G4646"]],[16,17,["G1074"]]]},{"k":26990,"v":[[0,1,["G3767"]],[1,5,["G588","G780","(G3303)"]],[5,6,["G846"]],[6,7,["G3056"]],[7,9,["G907"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G1565"]],[12,13,["G2250"]],[13,16,["G4369"]],[16,19,["G5616"]],[19,21,["G5153"]],[21,22,["G5590"]]]},{"k":26991,"v":[[0,1,["G1161"]],[1,4,["G2258","G4342"]],[4,6,["G3588"]],[6,7,["G652"]],[7,8,["G1322"]],[8,9,["G2532"]],[9,10,["G2842"]],[10,11,["G2532"]],[11,13,["G2800"]],[13,15,["G740"]],[15,16,["G2532"]],[16,18,["G4335"]]]},{"k":26992,"v":[[0,1,["G1161"]],[1,2,["G5401"]],[2,3,["G1096"]],[3,5,["G3956"]],[5,6,["G5590"]],[6,7,["G5037"]],[7,8,["G4183"]],[8,9,["G5059"]],[9,10,["G2532"]],[10,11,["G4592"]],[11,13,["G1096"]],[13,14,["G1223"]],[14,15,["G3588"]],[15,16,["G652"]]]},{"k":26993,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,4,["G4100"]],[4,5,["G2258"]],[5,6,["G1909","G846"]],[6,7,["G2532"]],[7,8,["G2192"]],[8,10,["G537"]],[10,11,["G2839"]]]},{"k":26994,"v":[[0,1,["G2532"]],[1,2,["G4097"]],[2,4,["G2933"]],[4,5,["G2532"]],[5,6,["G5223"]],[6,7,["G2532"]],[7,8,["G1266"]],[8,9,["G846"]],[9,11,["G3956"]],[11,13,["G2530"]],[13,15,["G5100","G302"]],[15,16,["G2192"]],[16,17,["G5532"]]]},{"k":26995,"v":[[0,1,["G5037"]],[1,3,["G4342"]],[3,4,["G2596","G2250"]],[4,7,["G3661"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G2411"]],[10,11,["G5037"]],[11,12,["G2806"]],[12,13,["G740"]],[13,17,["G2596","G3624"]],[17,19,["G3335"]],[19,21,["G5160"]],[21,22,["G1722"]],[22,23,["G20"]],[23,24,["G2532"]],[24,25,["G858"]],[25,27,["G2588"]]]},{"k":26996,"v":[[0,1,["G134"]],[1,2,["G2316"]],[2,3,["G2532"]],[3,4,["G2192"]],[4,5,["G5485"]],[5,6,["G4314"]],[6,7,["G3650"]],[7,8,["G3588"]],[8,9,["G2992"]],[9,10,["G1161"]],[10,11,["G3588"]],[11,12,["G2962"]],[12,13,["G4369"]],[13,15,["G3588"]],[15,16,["G1577"]],[16,17,["G2596","G2250"]],[17,22,["G4982"]]]},{"k":26997,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2532"]],[3,4,["G2491"]],[4,6,["G305"]],[6,7,["G1909","G846"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G2411"]],[10,11,["G1909"]],[11,12,["G3588"]],[12,13,["G5610"]],[13,15,["G4335"]],[15,17,["G3588"]],[17,18,["G1766"]],[18,19,[]]]},{"k":26998,"v":[[0,1,["G2532"]],[1,3,["G5100"]],[3,4,["G435"]],[4,5,["G5560"]],[5,6,["G1537"]],[6,7,["G848"]],[7,8,["G3384"]],[8,9,["G2836"]],[9,11,["G941"]],[11,12,["G3739"]],[12,14,["G5087"]],[14,15,["G2596","G2250"]],[15,16,["G4314"]],[16,17,["G3588"]],[17,18,["G2374"]],[18,20,["G3588"]],[20,21,["G2411"]],[21,24,["G3004"]],[24,25,["G5611"]],[25,27,["G154"]],[27,28,["G1654"]],[28,29,["G3844"]],[29,32,["G1531"]],[32,33,["G1519"]],[33,34,["G3588"]],[34,35,["G2411"]]]},{"k":26999,"v":[[0,1,["G3739"]],[1,2,["G1492"]],[2,3,["G4074"]],[3,4,["G2532"]],[4,5,["G2491"]],[5,6,["G3195"]],[6,8,["G1524"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G2411"]],[11,12,["G2065"]],[12,13,["(G2983)"]],[13,14,["G1654"]]]},{"k":27000,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,5,["G816"]],[5,6,["G1519"]],[6,7,["G846"]],[7,8,["G4862"]],[8,9,["G2491"]],[9,10,["G2036"]],[10,11,["G991"]],[11,12,["G1519"]],[12,13,["G2248"]]]},{"k":27001,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G1907"]],[4,6,["G846"]],[6,7,["G4328"]],[7,9,["G2983"]],[9,10,["G5100"]],[10,11,["G3844"]],[11,12,["G846"]]]},{"k":27002,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2036"]],[3,4,["G694"]],[4,5,["G2532"]],[5,6,["G5553"]],[6,7,["G5225"]],[7,8,["G3427"]],[8,9,["G3756"]],[9,10,["G1161"]],[10,11,["G3739"]],[11,14,["G2192"]],[14,15,["G1325"]],[15,17,["G4671"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,20,["G3686"]],[20,22,["G2424"]],[22,23,["G5547"]],[23,25,["G3480"]],[25,27,["G1453"]],[27,28,["G2532"]],[28,29,["G4043"]]]},{"k":27003,"v":[[0,1,["G2532"]],[1,3,["G4084"]],[3,4,["G846"]],[4,6,["G3588"]],[6,7,["G1188"]],[7,8,["G5495"]],[8,12,["G1453"]],[12,13,["G1161"]],[13,14,["G3916"]],[14,15,["G846"]],[15,16,["G939"]],[16,17,["G2532"]],[17,19,["G4974"]],[19,21,["G4732"]]]},{"k":27004,"v":[[0,1,["G2532"]],[1,4,["G1814"]],[4,5,["G2476"]],[5,6,["G2532"]],[6,7,["G4043"]],[7,8,["G2532"]],[8,9,["G1525"]],[9,10,["G4862"]],[10,11,["G846"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,14,["G2411"]],[14,15,["G4043"]],[15,16,["G2532"]],[16,17,["G242"]],[17,18,["G2532"]],[18,19,["G134"]],[19,20,["G2316"]]]},{"k":27005,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G2992"]],[4,5,["G1492"]],[5,6,["G846"]],[6,7,["G4043"]],[7,8,["G2532"]],[8,9,["G134"]],[9,10,["G2316"]]]},{"k":27006,"v":[[0,1,["G5037"]],[1,3,["G1921"]],[3,4,["G3754"]],[4,6,["G2258"]],[6,7,["G3778"]],[7,9,["G2521"]],[9,10,["G4314"]],[10,11,["G1654"]],[11,12,["G1909"]],[12,13,["G3588"]],[13,14,["G5611"]],[14,15,["G4439"]],[15,17,["G3588"]],[17,18,["G2411"]],[18,19,["G2532"]],[19,22,["G4130"]],[22,24,["G2285"]],[24,25,["G2532"]],[25,26,["G1611"]],[26,27,["G1909"]],[27,31,["G4819"]],[31,33,["G846"]]]},{"k":27007,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,5,["G5560"]],[5,8,["G2390"]],[8,9,["G2902"]],[9,10,["G4074"]],[10,11,["G2532"]],[11,12,["G2491"]],[12,13,["G3956"]],[13,14,["G3588"]],[14,15,["G2992"]],[15,17,["G4936"]],[17,18,["G4314"]],[18,19,["G846"]],[19,20,["G1909"]],[20,21,["G3588"]],[21,22,["G4745"]],[22,25,["G2564"]],[25,26,["G4672"]],[26,28,["G1569"]]]},{"k":27008,"v":[[0,1,["G1161"]],[1,3,["G4074"]],[3,4,["G1492"]],[4,7,["G611"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,10,["G2992"]],[10,12,["G435"]],[12,14,["G2475"]],[14,15,["G5101"]],[15,16,["G2296"]],[16,17,["G1909"]],[17,19,["G5129"]],[19,20,["G2228"]],[20,21,["G5101"]],[21,25,["G816"]],[25,27,["G2254"]],[27,29,["G5613"]],[29,32,["G2398"]],[32,33,["G1411"]],[33,34,["G2228"]],[34,35,["G2150"]],[35,38,["G4160"]],[38,40,["G846"]],[40,42,["G4043"]]]},{"k":27009,"v":[[0,1,["G3588"]],[1,2,["G2316"]],[2,4,["G11"]],[4,5,["G2532"]],[5,7,["G2464"]],[7,8,["G2532"]],[8,10,["G2384"]],[10,11,["G3588"]],[11,12,["G2316"]],[12,14,["G2257"]],[14,15,["G3962"]],[15,17,["G1392"]],[17,18,["G848"]],[18,19,["G3816"]],[19,20,["G2424"]],[20,21,["G3739"]],[21,22,["G5210"]],[22,24,["G3860"]],[24,25,["G2532"]],[25,26,["G720"]],[26,27,["G846"]],[27,30,["G2596","G4383"]],[30,32,["G4091"]],[32,34,["G1565"]],[34,36,["G2919"]],[36,40,["G630"]]]},{"k":27010,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G720"]],[3,4,["G3588"]],[4,6,["G40"]],[6,7,["G2532"]],[7,9,["G1342"]],[9,10,["G2532"]],[10,11,["G154"]],[11,12,["(G435)"]],[12,13,["G5406"]],[13,16,["G5483"]],[16,18,["G5213"]]]},{"k":27011,"v":[[0,1,["G1161"]],[1,2,["G615"]],[2,3,["G3588"]],[3,4,["G747"]],[4,6,["G2222"]],[6,7,["G3739"]],[7,8,["G2316"]],[8,10,["G1453"]],[10,11,["G1537"]],[11,13,["G3498"]],[13,14,["G3739"]],[14,15,["G2249"]],[15,16,["G2070"]],[16,17,["G3144"]]]},{"k":27012,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3686"]],[3,4,["G1909"]],[4,5,["G4102"]],[5,7,["G846"]],[7,8,["G3686"]],[8,13,["G4732","G5126"]],[13,14,["G3739"]],[14,16,["G2334"]],[16,17,["G2532"]],[17,18,["G1492"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G4102"]],[21,22,["G3588"]],[22,24,["G1223"]],[24,25,["G846"]],[25,27,["G1325"]],[27,28,["G846"]],[28,29,["G5026"]],[29,31,["G3647"]],[31,34,["G561"]],[34,36,["G5216"]],[36,37,["G3956"]]]},{"k":27013,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,3,["G80"]],[3,5,["G1492"]],[5,6,["G3754"]],[6,7,["G2596"]],[7,8,["G52"]],[8,10,["G4238"]],[10,12,["G5618"]],[12,14,["G2532"]],[14,15,["G5216"]],[15,16,["G758"]]]},{"k":27014,"v":[[0,1,["G1161"]],[1,3,["G3739"]],[3,5,["G2316"]],[5,8,["G4293"]],[8,9,["G1223"]],[9,11,["G4750"]],[11,13,["G3956"]],[13,14,["G846"]],[14,15,["G4396"]],[15,17,["G5547"]],[17,19,["G3958"]],[19,22,["G3779"]],[22,23,["G4137"]]]},{"k":27015,"v":[[0,1,["G3340"]],[1,3,["G3767"]],[3,4,["G2532"]],[4,6,["G1994"]],[6,8,["G5216"]],[8,9,["G266"]],[9,13,["G1813"]],[13,14,["G3704"]],[14,16,["G2540"]],[16,18,["G403"]],[18,20,["G2064","G302"]],[20,21,["G575"]],[21,23,["G4383"]],[23,25,["G3588"]],[25,26,["G2962"]]]},{"k":27016,"v":[[0,1,["G2532"]],[1,4,["G649"]],[4,5,["G2424"]],[5,6,["G5547"]],[6,10,["G4296"]],[10,12,["G5213"]]]},{"k":27017,"v":[[0,1,["G3739"]],[1,3,["G3772"]],[3,4,["G1163","(G3303)"]],[4,5,["G1209"]],[5,6,["G891"]],[6,8,["G5550"]],[8,10,["G605"]],[10,13,["G3956"]],[13,14,["G3739"]],[14,15,["G2316"]],[15,17,["G2980"]],[17,18,["G1223"]],[18,20,["G4750"]],[20,22,["G3956"]],[22,23,["G848"]],[23,24,["G40"]],[24,25,["G4396"]],[25,29,["G575","G165"]]]},{"k":27018,"v":[[0,1,["G1063"]],[1,2,["G3475"]],[2,3,["G3303"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G3588"]],[6,7,["G3962"]],[7,9,["G4396"]],[9,12,["G2962"]],[12,13,["G5216"]],[13,14,["G2316"]],[14,16,["G450"]],[16,18,["G5213"]],[18,19,["G1537"]],[19,20,["G5216"]],[20,21,["G80"]],[21,23,["G5613"]],[23,24,["G1691"]],[24,25,["G846"]],[25,28,["G191"]],[28,29,["G2596"]],[29,31,["G3956"]],[31,32,["G3745","G302"]],[32,35,["G2980"]],[35,36,["G4314"]],[36,37,["G5209"]]]},{"k":27019,"v":[[0,1,["G1161"]],[1,6,["G2071"]],[6,8,["G3956"]],[8,9,["G5590"]],[9,10,["G3748"]],[10,12,["G3361"]],[12,13,["G191","G302"]],[13,14,["G1565"]],[14,15,["G4396"]],[15,18,["G1842"]],[18,19,["G1537"]],[19,21,["G3588"]],[21,22,["G2992"]]]},{"k":27020,"v":[[0,1,["G1161"]],[1,2,["G2532"]],[2,3,["G3956"]],[3,4,["G3588"]],[4,5,["G4396"]],[5,6,["G575"]],[6,7,["G4545"]],[7,8,["G2532"]],[8,12,["G2517"]],[12,15,["G3745"]],[15,17,["G2980"]],[17,19,["G2532"]],[19,20,["G4293"]],[20,22,["G5025"]],[22,23,["G2250"]]]},{"k":27021,"v":[[0,1,["G5210"]],[1,2,["G2075"]],[2,4,["G5207"]],[4,6,["G3588"]],[6,7,["G4396"]],[7,8,["G2532"]],[8,10,["G3588"]],[10,11,["G1242"]],[11,12,["G3739"]],[12,13,["G2316"]],[13,14,["G1303"]],[14,15,["G4314"]],[15,16,["G2257"]],[16,17,["G3962"]],[17,18,["G3004"]],[18,19,["G4314"]],[19,20,["G11"]],[20,21,["G2532"]],[21,23,["G4675"]],[23,24,["G4690"]],[24,26,["G3956"]],[26,27,["G3588"]],[27,28,["G3965"]],[28,30,["G3588"]],[30,31,["G1093"]],[31,33,["G1757"]]]},{"k":27022,"v":[[0,2,["G5213"]],[2,3,["G4412"]],[3,4,["G2316"]],[4,7,["G450"]],[7,8,["G848"]],[8,9,["G3816"]],[9,10,["G2424"]],[10,11,["G649"]],[11,12,["G846"]],[12,14,["G2127"]],[14,15,["G5209"]],[15,18,["G654"]],[18,20,["G1538"]],[20,23,["G575"]],[23,24,["G5216"]],[24,25,["G4189"]]]},{"k":27023,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G2980"]],[4,5,["G4314"]],[5,6,["G3588"]],[6,7,["G2992"]],[7,8,["G3588"]],[8,9,["G2409"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G4755"]],[12,14,["G3588"]],[14,15,["G2411"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G4523"]],[18,20,["G2186"]],[20,21,["G846"]]]},{"k":27024,"v":[[0,2,["G1278"]],[2,4,["G846"]],[4,5,["G1321"]],[5,6,["G3588"]],[6,7,["G2992"]],[7,8,["G2532"]],[8,9,["G2605"]],[9,10,["G1722"]],[10,11,["G2424"]],[11,12,["G3588"]],[12,13,["G386"]],[13,14,["G1537"]],[14,16,["G3498"]]]},{"k":27025,"v":[[0,1,["G2532"]],[1,5,["G1911","G5495"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G5087"]],[8,10,["G1519"]],[10,11,["G5084"]],[11,12,["G1519"]],[12,13,["G3588"]],[13,15,["G839"]],[15,16,["G1063"]],[16,18,["G2258"]],[18,19,["G2235"]],[19,20,["G2073"]]]},{"k":27026,"v":[[0,1,["G1161"]],[1,2,["G4183"]],[2,6,["G191"]],[6,7,["G3588"]],[7,8,["G3056"]],[8,9,["G4100"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G706"]],[12,14,["G3588"]],[14,15,["G435"]],[15,16,["G1096"]],[16,17,["G5616"]],[17,18,["G4002"]],[18,19,["G5505"]]]},{"k":27027,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G839"]],[8,10,["G846"]],[10,11,["G758"]],[11,12,["G2532"]],[12,13,["G4245"]],[13,14,["G2532"]],[14,15,["G1122"]]]},{"k":27028,"v":[[0,1,["G2532"]],[1,2,["G452"]],[2,3,["G3588"]],[3,5,["G749"]],[5,6,["G2532"]],[6,7,["G2533"]],[7,8,["G2532"]],[8,9,["G2491"]],[9,10,["G2532"]],[10,11,["G223"]],[11,12,["G2532"]],[12,15,["G3745"]],[15,16,["G2258"]],[16,17,["G1537"]],[17,19,["G1085"]],[19,23,["G748"]],[23,26,["G4863"]],[26,27,["G1519"]],[27,28,["G2419"]]]},{"k":27029,"v":[[0,1,["G2532"]],[1,5,["G2476"]],[5,6,["G846"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G3319"]],[9,11,["G4441"]],[11,12,["G1722"]],[12,13,["G4169"]],[13,14,["G1411"]],[14,15,["G2228"]],[15,16,["G1722"]],[16,17,["G4169"]],[17,18,["G3686"]],[18,20,["G5210"]],[20,21,["G4160"]],[21,22,["G5124"]]]},{"k":27030,"v":[[0,1,["G5119"]],[1,2,["G4074"]],[2,3,["G4130"]],[3,6,["G40"]],[6,7,["G4151"]],[7,8,["G2036"]],[8,9,["G4314"]],[9,10,["G846"]],[10,12,["G758"]],[12,14,["G3588"]],[14,15,["G2992"]],[15,16,["G2532"]],[16,17,["G4245"]],[17,19,["G2474"]]]},{"k":27031,"v":[[0,1,["G1487"]],[1,2,["G2249"]],[2,4,["G4594"]],[4,6,["G350"]],[6,7,["G1909"]],[7,11,["G2108"]],[11,14,["G772"]],[14,15,["G444"]],[15,16,["G1722"]],[16,18,["G5101"]],[18,19,["G3778"]],[19,22,["G4982"]]]},{"k":27032,"v":[[0,1,["G2077"]],[1,3,["G1110"]],[3,5,["G5213"]],[5,6,["G3956"]],[6,7,["G2532"]],[7,9,["G3956"]],[9,10,["G3588"]],[10,11,["G2992"]],[11,13,["G2474"]],[13,14,["G3754"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G3686"]],[17,19,["G2424"]],[19,20,["G5547"]],[20,22,["G3480"]],[22,23,["G3739"]],[23,24,["G5210"]],[24,25,["G4717"]],[25,26,["G3739"]],[26,27,["G2316"]],[27,28,["G1453"]],[28,29,["G1537"]],[29,31,["G3498"]],[31,33,["G1722"]],[33,34,["G5129"]],[34,37,["G3778"]],[37,38,["G3936"]],[38,40,["G1799"]],[40,41,["G5216"]],[41,42,["G5199"]]]},{"k":27033,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,3,["G3588"]],[3,4,["G3037"]],[4,9,["G1848"]],[9,10,["G5259"]],[10,11,["G5216"]],[11,12,["G3618"]],[12,15,["G1096"]],[15,16,["(G1519)"]],[16,17,["G2776"]],[17,20,["G1137"]]]},{"k":27034,"v":[[0,1,["G2532","G3756"]],[1,2,["G2076"]],[2,4,["G4991"]],[4,5,["G1722"]],[5,6,["G3762"]],[6,7,["G243"]],[7,8,["G1063"]],[8,10,["G2076"]],[10,11,["G3777"]],[11,12,["G2087"]],[12,13,["G3686"]],[13,14,["G5259"]],[14,15,["G3772"]],[15,16,["G1325"]],[16,17,["G1722"]],[17,18,["G444"]],[18,19,["G1722","G3739"]],[19,20,["G2248"]],[20,21,["G1163"]],[21,23,["G4982"]]]},{"k":27035,"v":[[0,1,["G1161"]],[1,4,["G2334"]],[4,5,["G3588"]],[5,6,["G3954"]],[6,8,["G4074"]],[8,9,["G2532"]],[9,10,["G2491"]],[10,11,["G2532"]],[11,12,["G2638"]],[12,13,["G3754"]],[13,15,["G1526"]],[15,16,["G62"]],[16,17,["G2532"]],[17,18,["G2399"]],[18,19,["G444"]],[19,21,["G2296"]],[21,22,["G5037"]],[22,25,["G1921"]],[25,27,["G846"]],[27,28,["G3754"]],[28,31,["G2258"]],[31,32,["G4862"]],[32,33,["G2424"]]]},{"k":27036,"v":[[0,1,["G1161"]],[1,2,["G991"]],[2,3,["G3588"]],[3,4,["G444"]],[4,7,["G2323"]],[7,8,["G2476"]],[8,9,["G4862"]],[9,10,["G846"]],[10,12,["G2192"]],[12,15,["G471","G3762"]],[15,16,[]]]},{"k":27037,"v":[[0,1,["G1161"]],[1,5,["G2753"]],[5,6,["G846"]],[6,9,["G565"]],[9,10,["G1854"]],[10,12,["G3588"]],[12,13,["G4892"]],[13,15,["G4820"]],[15,16,["G4314"]],[16,17,["G240"]]]},{"k":27038,"v":[[0,1,["G3004"]],[1,2,["G5101"]],[2,5,["G4160"]],[5,7,["G5125"]],[7,8,["G444"]],[8,9,["G1063"]],[9,10,["G3754"]],[10,11,["G3303"]],[11,13,["G1110"]],[13,14,["G4592"]],[14,17,["G1096"]],[17,18,["G1223"]],[18,19,["G846"]],[19,21,["G5318"]],[21,23,["G3956"]],[23,26,["G2730"]],[26,28,["G2419"]],[28,29,["G2532"]],[29,31,["G1410","G3756"]],[31,32,["G720"]],[32,33,[]]]},{"k":27039,"v":[[0,1,["G235"]],[1,2,["G2443"]],[2,4,["G1268"]],[4,5,["G3361"]],[5,6,["G1909","G4119"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G2992"]],[9,13,["G546","G547"]],[13,14,["G846"]],[14,17,["G2980"]],[17,18,["G3371"]],[18,20,["G3367"]],[20,21,["G444"]],[21,22,["G1909"]],[22,23,["G5127"]],[23,24,["G3686"]]]},{"k":27040,"v":[[0,1,["G2532"]],[1,3,["G2564"]],[3,4,["G846"]],[4,6,["G3853"]],[6,7,["G846"]],[7,8,["G3361"]],[8,10,["G5350"]],[10,12,["G2527"]],[12,13,["G3366"]],[13,14,["G1321"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,17,["G3686"]],[17,19,["G2424"]]]},{"k":27041,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2532"]],[3,4,["G2491"]],[4,5,["G611"]],[5,7,["G2036"]],[7,8,["G4314"]],[8,9,["G846"]],[9,10,["G1487"]],[10,12,["G2076"]],[12,13,["G1342"]],[13,16,["G1799"]],[16,18,["G2316"]],[18,20,["G191"]],[20,22,["G5216"]],[22,23,["G3123"]],[23,24,["G2228"]],[24,26,["G2316"]],[26,27,["G2919"]],[27,28,[]]]},{"k":27042,"v":[[0,1,["G1063"]],[1,2,["G2249"]],[2,3,["G1410","G3756"]],[3,4,["G3361"]],[4,5,["G2980"]],[5,8,["G3739"]],[8,11,["G1492"]],[11,12,["G2532"]],[12,13,["G191"]]]},{"k":27043,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,6,["G4324"]],[6,11,["G630","G846"]],[11,12,["G2147"]],[12,13,["G3367"]],[13,14,["G4459"]],[14,17,["G2849"]],[17,18,["G846"]],[18,19,["G1223"]],[19,21,["G3588"]],[21,22,["G2992"]],[22,23,["G3754"]],[23,24,["G3956"]],[24,26,["G1392"]],[26,27,["G2316"]],[27,28,["G1909"]],[28,32,["G1096"]]]},{"k":27044,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G444"]],[3,4,["G2258"]],[4,5,["G4119"]],[5,6,["G5062"]],[6,8,["G2094"]],[8,9,["G1909"]],[9,10,["G3739"]],[10,11,["G5124"]],[11,12,["G4592"]],[12,14,["G2392"]],[14,16,["G1096"]]]},{"k":27045,"v":[[0,1,["G1161"]],[1,4,["G630"]],[4,6,["G2064"]],[6,7,["G4314"]],[7,10,["G2398"]],[10,11,["G2532"]],[11,12,["G518"]],[12,14,["G3745"]],[14,15,["G3588"]],[15,17,["G749"]],[17,18,["G2532"]],[18,19,["G4245"]],[19,21,["G2036"]],[21,22,["G4314"]],[22,23,["G846"]]]},{"k":27046,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G191"]],[4,8,["G142"]],[8,10,["G5456"]],[10,11,["G4314"]],[11,12,["G2316"]],[12,15,["G3661"]],[15,16,["G2532"]],[16,17,["G2036"]],[17,18,["G1203"]],[18,19,["G4771"]],[19,21,["G2316"]],[21,24,["G4160"]],[24,25,["G3772"]],[25,26,["G2532"]],[26,27,["G1093"]],[27,28,["G2532"]],[28,29,["G3588"]],[29,30,["G2281"]],[30,31,["G2532"]],[31,32,["G3956"]],[32,33,["G3588"]],[33,34,["G1722"]],[34,35,["G846"]],[35,36,[]]]},{"k":27047,"v":[[0,2,["G1223"]],[2,4,["G4750"]],[4,6,["G4675"]],[6,7,["G3816"]],[7,8,["G1138"]],[8,10,["G2036"]],[10,11,["G2444"]],[11,14,["G1484"]],[14,15,["G5433"]],[15,16,["G2532"]],[16,18,["G2992"]],[18,19,["G3191"]],[19,21,["G2756"]]]},{"k":27048,"v":[[0,1,["G3588"]],[1,2,["G935"]],[2,4,["G3588"]],[4,5,["G1093"]],[5,7,["G3936"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G758"]],[10,12,["G4863"]],[12,13,["G1909","G846"]],[13,14,["G2596"]],[14,15,["G3588"]],[15,16,["G2962"]],[16,17,["G2532"]],[17,18,["G2596"]],[18,19,["G846"]],[19,20,["G5547"]]]},{"k":27049,"v":[[0,1,["G1063"]],[1,2,["G1909"]],[2,4,["G225"]],[4,5,["G1909"]],[5,6,["G4675"]],[6,7,["G40"]],[7,8,["G3816"]],[8,9,["G2424"]],[9,10,["G3739"]],[10,13,["G5548"]],[13,14,["G5037"]],[14,15,["G2264"]],[15,16,["G2532"]],[16,17,["G4194"]],[17,18,["G4091"]],[18,19,["G4862"]],[19,21,["G1484"]],[21,22,["G2532"]],[22,24,["G2992"]],[24,26,["G2474"]],[26,29,["G4863"]]]},{"k":27050,"v":[[0,3,["G4160"]],[3,4,["G3745"]],[4,5,["G4675"]],[5,6,["G5495"]],[6,7,["G2532"]],[7,8,["G4675"]],[8,9,["G1012"]],[9,11,["G4309"]],[11,14,["G1096"]]]},{"k":27051,"v":[[0,1,["G2532"]],[1,2,["G3569"]],[2,3,["G2962"]],[3,4,["G1896","(G1909)"]],[4,5,["G846"]],[5,6,["G547"]],[6,7,["G2532"]],[7,8,["G1325"]],[8,10,["G4675"]],[10,11,["G1401"]],[11,13,["G3326"]],[13,14,["G3956"]],[14,15,["G3954"]],[15,18,["G2980"]],[18,19,["G4675"]],[19,20,["G3056"]]]},{"k":27052,"v":[[0,1,["(G4571)"]],[1,3,["G1614"]],[3,4,["G4675"]],[4,5,["G5495"]],[5,6,["G1519"]],[6,7,["G2392"]],[7,8,["G2532"]],[8,10,["G4592"]],[10,11,["G2532"]],[11,12,["G5059"]],[12,15,["G1096"]],[15,16,["G1223"]],[16,17,["G3588"]],[17,18,["G3686"]],[18,20,["G4675"]],[20,21,["G40"]],[21,22,["G3816"]],[22,23,["G2424"]]]},{"k":27053,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G1189"]],[5,6,["G3588"]],[6,7,["G5117"]],[7,9,["G4531"]],[9,10,["G1722","G3739"]],[10,12,["G2258"]],[12,14,["G4863"]],[14,15,["G2532"]],[15,18,["G537"]],[18,19,["G4130"]],[19,22,["G40"]],[22,23,["G4151"]],[23,24,["G2532"]],[24,26,["G2980"]],[26,27,["G3588"]],[27,28,["G3056"]],[28,30,["G2316"]],[30,31,["G3326"]],[31,32,["G3954"]]]},{"k":27054,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4128"]],[3,7,["G4100"]],[7,8,["G2258"]],[8,10,["G3391"]],[10,11,["G2588"]],[11,12,["G2532"]],[12,15,["G5590"]],[15,16,["G2532","G3761"]],[16,17,["G3004"]],[17,18,["G1520"]],[18,22,["G5100"]],[22,28,["G5224","G846"]],[28,29,["G1511"]],[29,31,["G2398"]],[31,32,["G235"]],[32,33,["G846"]],[33,34,["G2258"]],[34,36,["G537"]],[36,37,["G2839"]]]},{"k":27055,"v":[[0,1,["G2532"]],[1,3,["G3173"]],[3,4,["G1411"]],[4,5,["G591"]],[5,6,["G3588"]],[6,7,["G652"]],[7,8,["G3142"]],[8,10,["G3588"]],[10,11,["G386"]],[11,13,["G3588"]],[13,14,["G2962"]],[14,15,["G2424"]],[15,16,["G5037"]],[16,17,["G3173"]],[17,18,["G5485"]],[18,19,["G2258"]],[19,20,["G1909"]],[20,21,["G846"]],[21,22,["G3956"]]]},{"k":27056,"v":[[0,0,["(G1063)"]],[0,1,["G3761"]],[1,2,["G5225"]],[2,4,["G5100"]],[4,5,["G1722"]],[5,6,["G846"]],[6,8,["G1729"]],[8,9,["G1063"]],[9,12,["G3745"]],[12,13,["G5225"]],[13,14,["G2935"]],[14,16,["G5564"]],[16,17,["G2228"]],[17,18,["G3614"]],[18,19,["G4453"]],[19,22,["G5342"]],[22,23,["G3588"]],[23,24,["G5092"]],[24,30,["G4097"]]]},{"k":27057,"v":[[0,1,["G2532"]],[1,4,["G5087"]],[4,5,["G3844"]],[5,6,["G3588"]],[6,7,["G652"]],[7,8,["G4228"]],[8,9,["G1161"]],[9,12,["G1239"]],[12,15,["G1538"]],[15,17,["G2530","G302"]],[17,18,["G5100"]],[18,19,["G2192"]],[19,20,["G5532"]]]},{"k":27058,"v":[[0,1,["G1161"]],[1,2,["G2500"]],[2,3,["G3588"]],[3,4,["G5259"]],[4,5,["G3588"]],[5,6,["G652"]],[6,8,["G1941"]],[8,9,["G921"]],[9,11,["G3603"]],[11,13,["G3177"]],[13,15,["G5207"]],[15,18,["G3874"]],[18,19,["G3019"]],[19,25,["G1085","G2953"]]]},{"k":27059,"v":[[0,1,["G5225"]],[1,2,["G68"]],[2,3,["G4453"]],[3,6,["G5342"]],[6,7,["G3588"]],[7,8,["G5536"]],[8,9,["G2532"]],[9,10,["G5087"]],[10,12,["G3844"]],[12,13,["G3588"]],[13,14,["G652"]],[14,15,["G4228"]]]},{"k":27060,"v":[[0,1,["G1161"]],[1,3,["G5100"]],[3,4,["G435"]],[4,5,["G3686"]],[5,6,["G367"]],[6,7,["G4862"]],[7,8,["G4551"]],[8,9,["G848"]],[9,10,["G1135"]],[10,11,["G4453"]],[11,13,["G2933"]]]},{"k":27061,"v":[[0,1,["G2532"]],[1,3,["G3557"]],[3,5,["G575"]],[5,6,["G3588"]],[6,7,["G5092"]],[7,8,["G846"]],[8,9,["G1135"]],[9,10,["G2532"]],[10,12,["G4894"]],[12,15,["G2532"]],[15,16,["G5342"]],[16,18,["G5100"]],[18,19,["G3313"]],[19,21,["G5087"]],[21,23,["G3844"]],[23,24,["G3588"]],[24,25,["G652"]],[25,26,["G4228"]]]},{"k":27062,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2036"]],[3,4,["G367"]],[4,5,["G1302"]],[5,7,["G4567"]],[7,8,["G4137"]],[8,9,["G4675"]],[9,10,["G2588"]],[10,12,["G5574"]],[12,14,["G3588"]],[14,15,["G40"]],[15,16,["G4151"]],[16,17,["G2532"]],[17,20,["G3557"]],[20,22,["G575"]],[22,23,["G3588"]],[23,24,["G5092"]],[24,26,["G3588"]],[26,27,["G5564"]]]},{"k":27063,"v":[[0,3,["G3306"]],[3,8,["G3306","G3780","G4671"]],[8,9,["G2532"]],[9,13,["G4097"]],[13,14,["G5225"]],[14,17,["G1722"]],[17,19,["G4674"]],[19,20,["G1849","(G3754)"]],[20,21,["G5101"]],[21,24,["G5087"]],[24,25,["G5124"]],[25,26,["G4229"]],[26,27,["G1722"]],[27,28,["G4675"]],[28,29,["G2588"]],[29,32,["G3756"]],[32,33,["G5574"]],[33,35,["G444"]],[35,36,["G235"]],[36,38,["G2316"]]]},{"k":27064,"v":[[0,1,["G1161"]],[1,2,["G367"]],[2,3,["G191"]],[3,4,["G5128"]],[4,5,["G3056"]],[5,7,["G4098"]],[7,12,["G1634"]],[12,13,["G2532"]],[13,14,["G3173"]],[14,15,["G5401"]],[15,16,["G1096"]],[16,17,["G1909"]],[17,18,["G3956"]],[18,21,["G191"]],[21,23,["G5023"]]]},{"k":27065,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G3501"]],[4,5,["G450"]],[5,8,["G4958","G846"]],[8,9,["G2532"]],[9,12,["G1627"]],[12,14,["G2290"]],[14,15,[]]]},{"k":27066,"v":[[0,1,["G1161"]],[1,3,["G1096"]],[3,4,["G5613"]],[4,6,["G1292"]],[6,8,["G5140"]],[8,9,["G5610"]],[9,11,["G2532"]],[11,12,["G846"]],[12,13,["G1135"]],[13,14,["G3361"]],[14,15,["G1492"]],[15,18,["G1096"]],[18,20,["G1525"]]]},{"k":27067,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G611"]],[3,5,["G846"]],[5,6,["G2036"]],[6,7,["G3427"]],[7,8,["G1487"]],[8,10,["G591"]],[10,11,["G3588"]],[11,12,["G5564"]],[12,15,["G5118"]],[15,16,["G1161"]],[16,17,["G3588"]],[17,18,["G2036"]],[18,19,["G3483"]],[19,22,["G5118"]]]},{"k":27068,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G5101"]],[6,9,["G3754"]],[9,10,["G5213"]],[10,13,["G4856"]],[13,15,["G3985"]],[15,16,["G3588"]],[16,17,["G4151"]],[17,20,["G2962"]],[20,21,["G2400"]],[21,22,["G3588"]],[22,23,["G4228"]],[23,28,["G2290"]],[28,29,["G4675"]],[29,30,["G435"]],[30,32,["G1909"]],[32,33,["G3588"]],[33,34,["G2374"]],[34,35,["G2532"]],[35,39,["G1627","G4571"]]]},{"k":27069,"v":[[0,1,["G1161"]],[1,4,["G4098"]],[4,5,["G3916"]],[5,6,["G3844"]],[6,7,["G846"]],[7,8,["G4228"]],[8,9,["G2532"]],[9,13,["G1634"]],[13,14,["G1161"]],[14,15,["G3588"]],[15,17,["G3495"]],[17,19,["G1525"]],[19,21,["G2147"]],[21,22,["G846"]],[22,23,["G3498"]],[23,24,["G2532"]],[24,27,["G1627"]],[27,28,["G2290"]],[28,30,["G4314"]],[30,31,["G846"]],[31,32,["G435"]]]},{"k":27070,"v":[[0,1,["G2532"]],[1,2,["G3173"]],[2,3,["G5401"]],[3,4,["G1096"]],[4,5,["G1909"]],[5,6,["G3650"]],[6,7,["G3588"]],[7,8,["G1577"]],[8,9,["G2532"]],[9,10,["G1909"]],[10,13,["G3956"]],[13,14,["G191"]],[14,16,["G5023"]]]},{"k":27071,"v":[[0,1,["G1161"]],[1,2,["G1223"]],[2,3,["G3588"]],[3,4,["G5495"]],[4,6,["G3588"]],[6,7,["G652"]],[7,9,["G4183"]],[9,10,["G4592"]],[10,11,["G2532"]],[11,12,["G5059"]],[12,13,["G1096"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G2992"]],[16,17,["G2532"]],[17,19,["G2258"]],[19,20,["G537"]],[20,23,["G3661"]],[23,24,["G1722"]],[24,25,["G4672"]],[25,26,["G4745"]]]},{"k":27072,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G3062"]],[4,5,["G5111"]],[5,7,["G3762"]],[7,8,["G2853"]],[8,11,["G846"]],[11,12,["G235"]],[12,13,["G3588"]],[13,14,["G2992"]],[14,15,["G3170"]],[15,16,["G846"]]]},{"k":27073,"v":[[0,1,["G1161"]],[1,2,["G4100"]],[2,5,["G3123"]],[5,6,["G4369"]],[6,8,["G3588"]],[8,9,["G2962"]],[9,10,["G4128"]],[10,11,["G5037"]],[11,13,["G435"]],[13,14,["G2532"]],[14,15,["G1135"]]]},{"k":27074,"v":[[0,2,["G5620"]],[2,5,["G1627"]],[5,6,["G3588"]],[6,7,["G772"]],[7,8,["G2596"]],[8,9,["G3588"]],[9,10,["G4113"]],[10,11,["G2532"]],[11,12,["G5087"]],[12,14,["G1909"]],[14,15,["G2825"]],[15,16,["G2532"]],[16,17,["G2895"]],[17,18,["G2443"]],[18,21,["G2579"]],[21,22,["G3588"]],[22,23,["G4639"]],[23,25,["G4074"]],[25,27,["G2064"]],[27,29,["G1982"]],[29,30,["G5100"]],[30,32,["G846"]]]},{"k":27075,"v":[[0,0,["(G1161)"]],[0,2,["G4905"]],[2,3,["G2532"]],[3,5,["G4128"]],[5,8,["G3588"]],[8,9,["G4172"]],[9,11,["G4038"]],[11,12,["G1519"]],[12,13,["G2419"]],[13,14,["G5342"]],[14,16,["G772"]],[16,17,["G2532"]],[17,21,["G3791"]],[21,22,["G5259"]],[22,23,["G169"]],[23,24,["G4151"]],[24,26,["G3748"]],[26,28,["G2323"]],[28,30,["G537"]]]},{"k":27076,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,6,["G450"]],[6,7,["G2532"]],[7,8,["G3956"]],[8,9,["G3588"]],[9,12,["G4862"]],[12,13,["G846"]],[13,15,["G5607"]],[15,17,["G139"]],[17,19,["G3588"]],[19,20,["G4523"]],[20,23,["G4130"]],[23,25,["G2205"]]]},{"k":27077,"v":[[0,1,["G2532"]],[1,2,["G1911"]],[2,3,["G846"]],[3,4,["G5495"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G652"]],[7,8,["G2532"]],[8,9,["G5087"]],[9,10,["G848"]],[10,11,["G1722"]],[11,13,["G1219"]],[13,14,["G5084"]]]},{"k":27078,"v":[[0,1,["G1161"]],[1,3,["G32"]],[3,6,["G2962"]],[6,7,["G1223"]],[7,8,["G3571"]],[8,9,["G455"]],[9,10,["G3588"]],[10,11,["G5438"]],[11,12,["G2374"]],[12,13,["G5037"]],[13,16,["G1806","G846"]],[16,18,["G2036"]]]},{"k":27079,"v":[[0,1,["G4198","(G2532)"]],[1,2,["G2476"]],[2,4,["G2980"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G2411"]],[7,9,["G3588"]],[9,10,["G2992"]],[10,11,["G3956"]],[11,12,["G3588"]],[12,13,["G4487"]],[13,15,["G5026"]],[15,16,["G2222"]]]},{"k":27080,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,7,["G1525"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G2411"]],[10,14,["G5259","G3722"]],[14,15,["G2532"]],[15,16,["G1321"]],[16,17,["G1161"]],[17,18,["G3588"]],[18,20,["G749"]],[20,21,["G3854"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,26,["G4862"]],[26,27,["G846"]],[27,32,["G4779","G3588","G4892"]],[32,33,["G2532"]],[33,34,["G3956"]],[34,35,["G3588"]],[35,36,["G1087"]],[36,38,["G3588"]],[38,39,["G5207"]],[39,41,["G2474"]],[41,42,["G2532"]],[42,43,["G649"]],[43,44,["G1519"]],[44,45,["G3588"]],[45,46,["G1201"]],[46,49,["G846"]],[49,50,["G71"]]]},{"k":27081,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G5257"]],[4,5,["G3854"]],[5,7,["G2147"]],[7,8,["G846"]],[8,9,["G3756"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G5438"]],[12,13,["(G1161)"]],[13,14,["G390"]],[14,16,["G518"]]]},{"k":27082,"v":[[0,1,["G3004"]],[1,2,["G3588"]],[2,3,["G1201"]],[3,4,["G3303"]],[4,5,["G2147"]],[5,7,["G2808"]],[7,8,["G1722"]],[8,9,["G3956"]],[9,10,["G803"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G5441"]],[13,14,["G2476"]],[14,15,["G1854"]],[15,16,["G4253"]],[16,17,["G3588"]],[17,18,["G2374"]],[18,19,["G1161"]],[19,23,["G455"]],[23,25,["G2147"]],[25,27,["G3762"]],[27,28,["G2080"]]]},{"k":27083,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["(G5037","G3739)"]],[3,5,["G2409"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G4755"]],[8,10,["G3588"]],[10,11,["G2411"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,15,["G749"]],[15,16,["G191"]],[16,17,["G5128"]],[17,18,["G3056"]],[18,20,["G1280"]],[20,21,["G4012"]],[21,22,["G846"]],[22,23,["G5101"]],[23,24,["G5124"]],[24,26,["G1096","G302"]]]},{"k":27084,"v":[[0,1,["G1161"]],[1,2,["G3854"]],[2,3,["G5100"]],[3,5,["G518"]],[5,6,["G846"]],[6,7,["G3004"]],[7,8,["G2400"]],[8,9,["G3588"]],[9,10,["G435"]],[10,11,["G3739"]],[11,13,["G5087"]],[13,14,["G1722"]],[14,15,["G5438"]],[15,16,["G1526"]],[16,17,["G2476"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,20,["G2411"]],[20,21,["G2532"]],[21,22,["G1321"]],[22,23,["G3588"]],[23,24,["G2992"]]]},{"k":27085,"v":[[0,1,["G5119"]],[1,2,["G565"]],[2,3,["G3588"]],[3,4,["G4755"]],[4,5,["G4862"]],[5,6,["G3588"]],[6,7,["G5257"]],[7,9,["G71"]],[9,10,["G846"]],[10,11,["G3326","G3756"]],[11,12,["G970"]],[12,13,["G1063"]],[13,15,["G5399"]],[15,16,["G3588"]],[16,17,["G2992"]],[17,18,["G3363"]],[18,23,["G3034"]]]},{"k":27086,"v":[[0,1,["G1161"]],[1,5,["G71"]],[5,6,["G846"]],[6,8,["G2476"]],[8,10,["G1722"]],[10,11,["G3588"]],[11,12,["G4892"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,16,["G749"]],[16,17,["G1905"]],[17,18,["G846"]]]},{"k":27087,"v":[[0,1,["G3004"]],[1,3,["G3756"]],[3,6,["G3853","G3852"]],[6,7,["G5213"]],[7,11,["G3361"]],[11,12,["G1321"]],[12,13,["G1909"]],[13,14,["G5129"]],[14,15,["G3686"]],[15,16,["G2532"]],[16,17,["G2400"]],[17,20,["G4137"]],[20,21,["G2419"]],[21,23,["G5216"]],[23,24,["G1322"]],[24,25,["G2532"]],[25,26,["G1014"]],[26,28,["G1863"]],[28,29,["G5127"]],[29,30,["G444"]],[30,31,["G129"]],[31,32,["G1909"]],[32,33,["G2248"]]]},{"k":27088,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2532"]],[3,4,["G3588"]],[4,6,["G652"]],[6,7,["G611"]],[7,9,["G2036"]],[9,11,["G1163"]],[11,13,["G3980"]],[13,14,["G2316"]],[14,15,["G3123"]],[15,16,["G2228"]],[16,17,["G444"]]]},{"k":27089,"v":[[0,1,["G3588"]],[1,2,["G2316"]],[2,4,["G2257"]],[4,5,["G3962"]],[5,7,["G1453"]],[7,8,["G2424"]],[8,9,["G3739"]],[9,10,["G5210"]],[10,11,["G1315"]],[11,13,["G2910"]],[13,14,["G1909"]],[14,16,["G3586"]]]},{"k":27090,"v":[[0,1,["G5126"]],[1,3,["G2316"]],[3,4,["G5312"]],[4,6,["G848"]],[6,8,["G1188"]],[8,12,["G747"]],[12,13,["G2532"]],[13,15,["G4990"]],[15,18,["G1325"]],[18,19,["G3341"]],[19,21,["G2474"]],[21,22,["G2532"]],[22,23,["G859"]],[23,25,["G266"]]]},{"k":27091,"v":[[0,1,["G2532"]],[1,2,["G2249"]],[2,3,["G2070"]],[3,4,["G846"]],[4,5,["G3144"]],[5,7,["G5130"]],[7,8,["G4487"]],[8,9,["G2532"]],[9,12,["G1161"]],[12,13,["G3588"]],[13,14,["G40"]],[14,15,["G4151"]],[15,16,["G3739"]],[16,17,["G2316"]],[17,19,["G1325"]],[19,23,["G3980"]],[23,24,["G846"]]]},{"k":27092,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G191"]],[3,7,["G1282"]],[7,11,["G2532"]],[11,13,["G1011"]],[13,15,["G337"]],[15,16,["G846"]]]},{"k":27093,"v":[[0,1,["G1161"]],[1,4,["G450"]],[4,5,["G5100"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G4892"]],[8,10,["G5330"]],[10,11,["G3686"]],[11,12,["G1059"]],[12,17,["G3547"]],[17,20,["G5093"]],[20,22,["G3956"]],[22,23,["G3588"]],[23,24,["G2992"]],[24,26,["G2753"]],[26,28,["G4160"]],[28,29,["G3588"]],[29,30,["G652"]],[30,31,["G1854"]],[31,34,["G1024","G5100"]]]},{"k":27094,"v":[[0,1,["G5037"]],[1,2,["G2036"]],[2,3,["G4314"]],[3,4,["G846"]],[4,6,["G435"]],[6,8,["G2475"]],[8,10,["G4337"]],[10,12,["G1438"]],[12,13,["G5101"]],[13,15,["G3195"]],[15,17,["G4238"]],[17,19,["G1909"]],[19,20,["G5125"]],[20,21,["G444"]]]},{"k":27095,"v":[[0,1,["G1063"]],[1,2,["G4253"]],[2,3,["G5130"]],[3,4,["G2250"]],[4,6,["G450"]],[6,7,["G2333"]],[7,8,["G3004"]],[8,9,["G1438"]],[9,11,["G1511"]],[11,12,["G5100"]],[12,14,["G3739"]],[14,16,["G706"]],[16,18,["G435"]],[18,19,["G5616"]],[19,21,["G5071"]],[21,22,["G4347"]],[22,24,["G3739"]],[24,26,["G337"]],[26,27,["G2532"]],[27,28,["G3956"]],[28,31,["G3745"]],[31,32,["G3982"]],[32,33,["G846"]],[33,35,["G1262"]],[35,36,["G2532"]],[36,37,["G1096"]],[37,38,["G1519"]],[38,39,["G3762"]]]},{"k":27096,"v":[[0,1,["G3326"]],[1,3,["G5126"]],[3,5,["G450"]],[5,6,["G2455"]],[6,8,["G1057"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2250"]],[11,13,["G3588"]],[13,14,["G582"]],[14,15,["G2532"]],[15,17,["G868"]],[17,18,["G2425"]],[18,19,["G2992"]],[19,20,["G3694"]],[20,21,["G848"]],[21,23,["G2548"]],[23,24,["G622"]],[24,25,["G2532"]],[25,26,["G3956"]],[26,30,["G3745"]],[30,31,["G3982"]],[31,32,["G846"]],[32,34,["G1287"]]]},{"k":27097,"v":[[0,1,["G2532"]],[1,2,["G3569"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,7,["G868"]],[7,8,["G575"]],[8,9,["G5130"]],[9,10,["G444"]],[10,11,["G2532"]],[11,14,["G1439","G846"]],[14,15,["G3754"]],[15,16,["G1437"]],[16,17,["G3778"]],[17,18,["G1012"]],[18,19,["G2228"]],[19,20,["G5124"]],[20,21,["G2041"]],[21,22,["G5600"]],[22,23,["G1537"]],[23,24,["G444"]],[24,29,["G2647"]]]},{"k":27098,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G2076"]],[4,5,["G1537"]],[5,6,["G2316"]],[6,8,["G1410","G3756"]],[8,9,["G2647"]],[9,10,["G846"]],[10,12,["G3379"]],[12,15,["G2147"]],[15,16,["G2532"]],[16,20,["G2314"]]]},{"k":27099,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G3982"]],[5,6,["G2532"]],[6,10,["G4341"]],[10,11,["G3588"]],[11,12,["G652"]],[12,14,["G1194"]],[14,17,["G3853"]],[17,21,["G3361"]],[21,22,["G2980"]],[22,23,["G1909"]],[23,24,["G3588"]],[24,25,["G3686"]],[25,27,["G2424"]],[27,28,["G2532"]],[28,31,["G630","G846"]]]},{"k":27100,"v":[[0,1,["G3767","(G3303)"]],[1,2,["G3588"]],[2,3,["G4198"]],[3,4,["G575"]],[4,6,["G4383"]],[6,8,["G3588"]],[8,9,["G4892"]],[9,10,["G5463"]],[10,11,["G3754"]],[11,15,["G2661"]],[15,18,["G818"]],[18,19,["G5228"]],[19,20,["G846"]],[20,21,["G3686"]]]},{"k":27101,"v":[[0,1,["G5037"]],[1,2,["G3956","G2250"]],[2,3,["G1722"]],[3,4,["G3588"]],[4,5,["G2411"]],[5,6,["G2532"]],[6,9,["G2596","G3624"]],[9,11,["G3973"]],[11,12,["G3756"]],[12,14,["G1321"]],[14,15,["G2532"]],[15,16,["G2097"]],[16,17,["G2424"]],[17,18,["G5547"]]]},{"k":27102,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,3,["G5025"]],[3,4,["G2250"]],[4,9,["G3588"]],[9,10,["G3101"]],[10,12,["G4129"]],[12,14,["G1096"]],[14,16,["G1112"]],[16,18,["G3588"]],[18,19,["G1675"]],[19,20,["G4314"]],[20,21,["G3588"]],[21,22,["G1445"]],[22,23,["G3754"]],[23,24,["G846"]],[24,25,["G5503"]],[25,27,["G3865"]],[27,28,["G1722"]],[28,29,["G3588"]],[29,30,["G2522"]],[30,31,["G1248"]]]},{"k":27103,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1427"]],[3,4,["G4341"]],[4,5,["G3588"]],[5,6,["G4128"]],[6,8,["G3588"]],[8,9,["G3101"]],[9,13,["G2036"]],[13,15,["G2076"]],[15,16,["G3756"]],[16,17,["G701"]],[17,19,["G2248"]],[19,21,["G2641"]],[21,22,["G3588"]],[22,23,["G3056"]],[23,25,["G2316"]],[25,27,["G1247"]],[27,28,["G5132"]]]},{"k":27104,"v":[[0,1,["G3767"]],[1,2,["G80"]],[2,5,["G1980"]],[5,6,["G1537"]],[6,7,["G5216"]],[7,8,["G2033"]],[8,9,["G435"]],[9,12,["G3140"]],[12,13,["G4134"]],[13,16,["G40"]],[16,17,["G4151"]],[17,18,["G2532"]],[18,19,["G4678"]],[19,20,["G3739"]],[20,23,["G2525"]],[23,24,["G1909"]],[24,25,["G5026"]],[25,26,["G5532"]]]},{"k":27105,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,6,["G4342"]],[6,8,["G4335"]],[8,9,["G2532"]],[9,11,["G3588"]],[11,12,["G1248"]],[12,14,["G3588"]],[14,15,["G3056"]]]},{"k":27106,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,4,["G700"]],[4,5,["(G1799)"]],[5,6,["G3956"]],[6,7,["G4128"]],[7,8,["G2532"]],[8,10,["G1586"]],[10,11,["G4736"]],[11,13,["G435"]],[13,14,["G4134"]],[14,16,["G4102"]],[16,17,["G2532"]],[17,20,["G40"]],[20,21,["G4151"]],[21,22,["G2532"]],[22,23,["G5376"]],[23,24,["G2532"]],[24,25,["G4402"]],[25,26,["G2532"]],[26,27,["G3527"]],[27,28,["G2532"]],[28,29,["G5096"]],[29,30,["G2532"]],[30,31,["G3937"]],[31,32,["G2532"]],[32,33,["G3532"]],[33,35,["G4339"]],[35,37,["G491"]]]},{"k":27107,"v":[[0,1,["G3739"]],[1,3,["G2476"]],[3,4,["G1799"]],[4,5,["G3588"]],[5,6,["G652"]],[6,7,["G2532"]],[7,11,["G4336"]],[11,16,["G2007","G5495"]],[16,17,["G846"]]]},{"k":27108,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,5,["G2316"]],[5,6,["G837"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G706"]],[9,11,["G3588"]],[11,12,["G3101"]],[12,13,["G4129"]],[13,14,["G1722"]],[14,15,["G2419"]],[15,16,["G4970"]],[16,17,["G5037"]],[17,19,["G4183"]],[19,20,["G3793"]],[20,22,["G3588"]],[22,23,["G2409"]],[23,25,["G5219"]],[25,27,["G3588"]],[27,28,["G4102"]]]},{"k":27109,"v":[[0,1,["G1161"]],[1,2,["G4736"]],[2,3,["G4134"]],[3,5,["G4102"]],[5,6,["G2532"]],[6,7,["G1411"]],[7,8,["G4160"]],[8,9,["G3173"]],[9,10,["G5059"]],[10,11,["G2532"]],[11,12,["G4592"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G2992"]]]},{"k":27110,"v":[[0,1,["G1161"]],[1,3,["G450"]],[3,4,["G5100"]],[4,5,["G1537"]],[5,6,["G3588"]],[6,7,["G4864"]],[7,10,["G3004"]],[10,15,["G3032"]],[15,16,["G2532"]],[16,17,["G2956"]],[17,18,["G2532"]],[18,19,["G221"]],[19,20,["G2532"]],[20,22,["G3588"]],[22,23,["G575"]],[23,24,["G2791"]],[24,25,["G2532"]],[25,27,["G773"]],[27,29,["G4802"]],[29,30,["G4736"]]]},{"k":27111,"v":[[0,1,["G2532"]],[1,5,["G2480","G3756"]],[5,7,["G436"]],[7,8,["G3588"]],[8,9,["G4678"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G4151"]],[12,14,["G3739"]],[14,16,["G2980"]]]},{"k":27112,"v":[[0,1,["G5119"]],[1,3,["G5260"]],[3,4,["G435"]],[4,6,["G3004"]],[6,9,["G191"]],[9,10,["G846"]],[10,11,["G2980"]],[11,12,["G989"]],[12,13,["G4487"]],[13,14,["G1519"]],[14,15,["G3475"]],[15,16,["G2532"]],[16,18,["G2316"]]]},{"k":27113,"v":[[0,1,["G5037"]],[1,4,["G4787"]],[4,5,["G3588"]],[5,6,["G2992"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G4245"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G1122"]],[12,13,["G2532"]],[13,15,["G2186"]],[15,18,["G4884"]],[18,19,["G846"]],[19,20,["G2532"]],[20,21,["G71"]],[21,23,["G1519"]],[23,24,["G3588"]],[24,25,["G4892"]]]},{"k":27114,"v":[[0,1,["G5037"]],[1,3,["G2476"]],[3,4,["G5571"]],[4,5,["G3144"]],[5,7,["G3004"]],[7,8,["G3778"]],[8,9,["G444"]],[9,10,["G3973"]],[10,11,["G3756"]],[11,13,["G2980"]],[13,14,["G989"]],[14,15,["G4487"]],[15,16,["G2596"]],[16,17,["G5127"]],[17,18,["G40"]],[18,19,["G5117"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G3551"]]]},{"k":27115,"v":[[0,1,["G1063"]],[1,4,["G191"]],[4,5,["G846"]],[5,6,["G3004"]],[6,7,["G3754"]],[7,8,["G3778"]],[8,9,["G2424"]],[9,11,["G3480"]],[11,13,["G2647"]],[13,14,["G5126"]],[14,15,["G5117"]],[15,16,["G2532"]],[16,18,["G236"]],[18,19,["G3588"]],[19,20,["G1485"]],[20,21,["G3739"]],[21,22,["G3475"]],[22,23,["G3860"]],[23,24,["G2254"]]]},{"k":27116,"v":[[0,1,["G2532"]],[1,2,["G537"]],[2,4,["G2516"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G4892"]],[7,9,["G816"]],[9,10,["G1519"]],[10,11,["G846"]],[11,12,["G1492"]],[12,13,["G846"]],[13,14,["G4383"]],[14,18,["G5616"]],[18,20,["G4383"]],[20,23,["G32"]]]},{"k":27117,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,5,["G749","(G1487","G686)"]],[5,6,["G2192"]],[6,7,["G5023"]],[7,9,["G3779"]]]},{"k":27118,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5346"]],[3,4,["G435"]],[4,5,["G80"]],[5,6,["G2532"]],[6,7,["G3962"]],[7,8,["G191"]],[8,9,["G3588"]],[9,10,["G2316"]],[10,12,["G1391"]],[12,13,["G3700"]],[13,15,["G2257"]],[15,16,["G3962"]],[16,17,["G11"]],[17,20,["G5607"]],[20,21,["G1722"]],[21,22,["G3318"]],[22,23,["G4250","(G2228)"]],[23,24,["G846"]],[24,25,["G2730"]],[25,26,["G1722"]],[26,27,["G5488"]]]},{"k":27119,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,3,["G4314"]],[3,4,["G846"]],[4,5,["G1831"]],[5,8,["G1537"]],[8,9,["G4675"]],[9,10,["G1093"]],[10,11,["G2532"]],[11,12,["G1537"]],[12,13,["G4675"]],[13,14,["G4772"]],[14,15,["G2532"]],[15,16,["G1204"]],[16,17,["G1519"]],[17,19,["G1093"]],[19,20,["G3739","G302"]],[20,23,["G1166"]],[23,24,["G4671"]]]},{"k":27120,"v":[[0,1,["G5119"]],[1,2,["G1831"]],[2,5,["G1537"]],[5,7,["G1093"]],[7,10,["G5466"]],[10,12,["G2730"]],[12,13,["G1722"]],[13,14,["G5488"]],[14,17,["G2547"]],[17,19,["G846"]],[19,20,["G3962"]],[20,22,["G599"]],[22,24,["G3351"]],[24,25,["G846"]],[25,26,["G1519"]],[26,27,["G5026"]],[27,28,["G1093"]],[28,29,["G1519","G3739"]],[29,30,["G5210"]],[30,31,["G3568"]],[31,32,["G2730"]]]},{"k":27121,"v":[[0,1,["G2532"]],[1,3,["G1325"]],[3,4,["G846"]],[4,5,["G3756"]],[5,6,["G2817"]],[6,7,["G1722"]],[7,9,["G846"]],[9,10,["G3761"]],[10,18,["G968","G4228"]],[18,19,["G2532"]],[19,21,["G1861"]],[21,25,["G1325"]],[25,26,["G846"]],[26,28,["G846"]],[28,29,["G1519"]],[29,31,["G2697"]],[31,32,["G2532"]],[32,34,["G846"]],[34,35,["G4690"]],[35,36,["G3326"]],[36,37,["G846"]],[37,41,["G846"]],[41,42,["G5607"]],[42,43,["G3756"]],[43,44,["G5043"]]]},{"k":27122,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,3,["G2980"]],[3,6,["G3779"]],[6,7,["G3754"]],[7,8,["G846"]],[8,9,["G4690"]],[9,10,["G2071"]],[10,11,["G3941"]],[11,12,["G1722"]],[12,14,["G245"]],[14,15,["G1093"]],[15,16,["G2532"]],[16,23,["G1402","G846"]],[23,24,["G2532"]],[24,27,["G2559"]],[27,29,["G5071"]],[29,30,["G2094"]]]},{"k":27123,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1484"]],[3,5,["G3739"]],[5,7,["(G1437)"]],[7,10,["G1398"]],[10,12,["G1473"]],[12,13,["G2919"]],[13,14,["G2036"]],[14,15,["G2316"]],[15,16,["G2532"]],[16,17,["G3326"]],[17,18,["G5023"]],[18,22,["G1831"]],[22,23,["G2532"]],[23,24,["G3000"]],[24,25,["G3427"]],[25,26,["G1722"]],[26,27,["G5129"]],[27,28,["G5117"]]]},{"k":27124,"v":[[0,1,["G2532"]],[1,3,["G1325"]],[3,4,["G846"]],[4,6,["G1242"]],[6,8,["G4061"]],[8,9,["G2532"]],[9,10,["G3779"]],[10,12,["G1080"]],[12,13,["G2464"]],[13,14,["G2532"]],[14,15,["G4059"]],[15,16,["G846"]],[16,17,["G3588"]],[17,18,["G3590"]],[18,19,["G2250"]],[19,20,["G2532"]],[20,21,["G2464"]],[21,23,["G2384"]],[23,24,["G2532"]],[24,25,["G2384"]],[25,27,["G3588"]],[27,28,["G1427"]],[28,29,["G3966"]]]},{"k":27125,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3966"]],[3,6,["G2206"]],[6,7,["G591"]],[7,8,["G2501"]],[8,9,["G1519"]],[9,10,["G125"]],[10,11,["G2532"]],[11,12,["G2316"]],[12,13,["G2258"]],[13,14,["G3326"]],[14,15,["G846"]]]},{"k":27126,"v":[[0,1,["G2532"]],[1,2,["G1807"]],[2,3,["G846"]],[3,5,["G1537"]],[5,6,["G3956"]],[6,7,["G846"]],[7,8,["G2347"]],[8,9,["G2532"]],[9,10,["G1325"]],[10,11,["G846"]],[11,12,["G5485"]],[12,13,["G2532"]],[13,14,["G4678"]],[14,17,["G1726"]],[17,19,["G5328"]],[19,20,["G935"]],[20,22,["G125"]],[22,23,["G2532"]],[23,25,["G2525"]],[25,26,["G846"]],[26,27,["G2233"]],[27,28,["G1909"]],[28,29,["G125"]],[29,30,["G2532"]],[30,31,["G3650"]],[31,32,["G848"]],[32,33,["G3624"]]]},{"k":27127,"v":[[0,1,["G1161"]],[1,3,["G2064"]],[3,5,["G3042"]],[5,6,["G1909"]],[6,7,["G3650"]],[7,8,["G3588"]],[8,9,["G1093"]],[9,11,["G125"]],[11,12,["G2532"]],[12,13,["G5477"]],[13,14,["G2532"]],[14,15,["G3173"]],[15,16,["G2347"]],[16,17,["G2532"]],[17,18,["G2257"]],[18,19,["G3962"]],[19,20,["G2147"]],[20,21,["G3756"]],[21,22,["G5527"]]]},{"k":27128,"v":[[0,1,["G1161"]],[1,3,["G2384"]],[3,4,["G191"]],[4,7,["G5607"]],[7,8,["G4621"]],[8,9,["G1722"]],[9,10,["G125"]],[10,13,["G1821"]],[13,14,["G2257"]],[14,15,["G3962"]],[15,16,["G4412"]]]},{"k":27129,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G1208"]],[4,6,["G2501"]],[6,9,["G319"]],[9,11,["G848"]],[11,12,["G80"]],[12,13,["G2532"]],[13,14,["G2501"]],[14,15,["G1085"]],[15,17,["G1096"]],[17,18,["G5318"]],[18,20,["G5328"]]]},{"k":27130,"v":[[0,1,["G1161"]],[1,2,["G649"]],[2,3,["G2501"]],[3,5,["G3333"]],[5,6,["G848"]],[6,7,["G3962"]],[7,8,["G2384"]],[8,11,["G2532"]],[11,12,["G3956"]],[12,13,["G848"]],[13,14,["G4772"]],[14,17,["G1440","G4002"]],[17,18,["G5590"]]]},{"k":27131,"v":[[0,1,["G1161"]],[1,2,["G2384"]],[2,4,["G2597"]],[4,5,["G1519"]],[5,6,["G125"]],[6,7,["G2532"]],[7,8,["G5053"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G2257"]],[11,12,["G3962"]]]},{"k":27132,"v":[[0,1,["G2532"]],[1,4,["G3346"]],[4,5,["G1519"]],[5,6,["G4966"]],[6,7,["G2532"]],[7,8,["G5087"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G3418"]],[11,12,["G3739"]],[12,13,["G11"]],[13,14,["G5608"]],[14,17,["G5092"]],[17,19,["G694"]],[19,20,["G3844"]],[20,21,["G3588"]],[21,22,["G5207"]],[22,24,["G1697"]],[24,28,["G4966"]]]},{"k":27133,"v":[[0,1,["G1161"]],[1,2,["G2531"]],[2,3,["G3588"]],[3,4,["G5550"]],[4,6,["G3588"]],[6,7,["G1860"]],[7,9,["G1448"]],[9,10,["G3739"]],[10,11,["G2316"]],[11,13,["G3660"]],[13,15,["G11"]],[15,16,["G3588"]],[16,17,["G2992"]],[17,18,["G837"]],[18,19,["G2532"]],[19,20,["G4129"]],[20,21,["G1722"]],[21,22,["G125"]]]},{"k":27134,"v":[[0,1,["G891","G3757"]],[1,2,["G2087"]],[2,3,["G935"]],[3,4,["G450"]],[4,5,["G3739"]],[5,6,["G1492"]],[6,7,["G3756"]],[7,8,["G2501"]]]},{"k":27135,"v":[[0,2,["G3778"]],[2,5,["G2686"]],[5,6,["G2257"]],[6,7,["G1085"]],[7,10,["G2559"]],[10,11,["G2257"]],[11,12,["G3962"]],[12,17,["G4160","G1570"]],[17,18,["G846"]],[18,20,["G1025"]],[20,26,["G3361"]],[26,27,["G2225"]]]},{"k":27136,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G2540"]],[3,4,["G3475"]],[4,6,["G1080"]],[6,7,["G2532"]],[7,8,["G2258"]],[8,10,["G791"]],[10,11,["G2532"]],[11,13,["G397"]],[13,14,["G1722"]],[14,15,["G848"]],[15,16,["G3962"]],[16,17,["G3624"]],[17,18,["G5140"]],[18,19,["G3376"]]]},{"k":27137,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,6,["G1620"]],[6,7,["G5328"]],[7,8,["G2364"]],[8,11,["G337","G846"]],[11,12,["G2532"]],[12,13,["G397"]],[13,14,["G846"]],[14,15,["G1519"]],[15,17,["G1438"]],[17,18,["G5207"]]]},{"k":27138,"v":[[0,1,["G2532"]],[1,2,["G3475"]],[2,4,["G3811"]],[4,6,["G3956"]],[6,8,["G4678"]],[8,11,["G124"]],[11,12,["G1161"]],[12,13,["G2258"]],[13,14,["G1415"]],[14,15,["G1722"]],[15,16,["G3056"]],[16,17,["G2532"]],[17,18,["G1722"]],[18,19,["G2041"]]]},{"k":27139,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G846"]],[3,5,["G4137"]],[5,6,["G5063"]],[6,8,["G5550"]],[8,10,["G305"]],[10,11,["G1909"]],[11,12,["G846"]],[12,13,["G2588"]],[13,15,["G1980"]],[15,16,["G848"]],[16,17,["G80"]],[17,18,["G3588"]],[18,19,["G5207"]],[19,21,["G2474"]]]},{"k":27140,"v":[[0,1,["G2532"]],[1,2,["G1492"]],[2,3,["G5100"]],[3,7,["G91"]],[7,9,["G292"]],[9,11,["G2532"]],[11,12,["G4160","G1557"]],[12,16,["G2669"]],[16,18,["G3960"]],[18,19,["G3588"]],[19,20,["G124"]]]},{"k":27141,"v":[[0,1,["G1161"]],[1,3,["G3543"]],[3,4,["G848"]],[4,5,["G80"]],[5,8,["G4920"]],[8,10,["G3754"]],[10,11,["G2316"]],[11,12,["G1223"]],[12,13,["G846"]],[13,14,["G5495"]],[14,16,["G1325","G4991"]],[16,17,["G846"]],[17,18,["G1161"]],[18,19,["G3588"]],[19,20,["G4920"]],[20,21,["G3756"]]]},{"k":27142,"v":[[0,1,["G5037"]],[1,2,["G3588"]],[2,3,["G1966"]],[3,4,["G2250"]],[4,7,["G3700"]],[7,9,["G846"]],[9,12,["G3164"]],[12,13,["G2532"]],[13,20,["G4900","G846","G1519","G1515"]],[20,21,["G2036"]],[21,22,["G435"]],[22,23,["G5210"]],[23,24,["G2075"]],[24,25,["G80"]],[25,26,["G2444"]],[26,29,["G91"]],[29,32,["G240"]]]},{"k":27143,"v":[[0,1,["G1161"]],[1,7,["G91","G4139"]],[7,10,["G683","G846"]],[10,11,["G2036"]],[11,12,["G5101"]],[12,13,["G2525"]],[13,14,["G4571"]],[14,16,["G758"]],[16,17,["G2532"]],[17,19,["G1348"]],[19,20,["G1909"]],[20,21,["G2248"]]]},{"k":27144,"v":[[0,1,["G2309","(G3361)"]],[1,2,["G4771"]],[2,3,["G337"]],[3,4,["G3165"]],[4,7,["G3739","G5158","G337"]],[7,8,["G3588"]],[8,9,["G124"]],[9,10,["G5504"]]]},{"k":27145,"v":[[0,1,["G1161"]],[1,2,["G5343"]],[2,3,["G3475"]],[3,4,["G1722"]],[4,5,["G5129"]],[5,6,["G3056"]],[6,7,["G2532"]],[7,8,["G1096"]],[8,10,["G3941"]],[10,11,["G1722"]],[11,13,["G1093"]],[13,15,["G3099"]],[15,16,["G3757"]],[16,18,["G1080"]],[18,19,["G1417"]],[19,20,["G5207"]]]},{"k":27146,"v":[[0,1,["G2532"]],[1,3,["G5062"]],[3,4,["G2094"]],[4,6,["G4137"]],[6,8,["G3700"]],[8,10,["G846"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G2048"]],[13,15,["G3735"]],[15,16,["G4614"]],[16,18,["G32"]],[18,21,["G2962"]],[21,22,["G1722"]],[22,24,["G5395"]],[24,26,["G4442"]],[26,29,["G942"]]]},{"k":27147,"v":[[0,1,["G1161"]],[1,2,["G3475"]],[2,3,["G1492"]],[3,6,["G2296"]],[6,8,["G3588"]],[8,9,["G3705"]],[9,10,["G1161"]],[10,12,["G846"]],[12,14,["G4334"]],[14,16,["G2657"]],[16,19,["G5456"]],[19,22,["G2962"]],[22,23,["G1096"]],[23,24,["G4314"]],[24,25,["G846"]]]},{"k":27148,"v":[[0,2,["G1473"]],[2,4,["G3588"]],[4,5,["G2316"]],[5,7,["G4675"]],[7,8,["G3962"]],[8,9,["G3588"]],[9,10,["G2316"]],[10,12,["G11"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G2316"]],[15,17,["G2464"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G2316"]],[20,22,["G2384"]],[22,23,["G1161"]],[23,24,["G3475"]],[24,25,["G1096","G1790"]],[25,27,["G5111"]],[27,28,["G3756"]],[28,29,["G2657"]]]},{"k":27149,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,4,["G2962"]],[4,6,["G846"]],[6,8,["G3089"]],[8,10,["G5266"]],[10,12,["G4675"]],[12,13,["G4228"]],[13,14,["G1063"]],[14,15,["G3588"]],[15,16,["G5117"]],[16,17,["G1722","G3739"]],[17,19,["G2476"]],[19,20,["G2076"]],[20,21,["G40"]],[21,22,["G1093"]]]},{"k":27150,"v":[[0,3,["G1492"]],[3,6,["G1492"]],[6,7,["G3588"]],[7,8,["G2561"]],[8,10,["G3450"]],[10,11,["G2992"]],[11,12,["G3588"]],[12,14,["G1722"]],[14,15,["G125"]],[15,16,["G2532"]],[16,19,["G191"]],[19,20,["G846"]],[20,21,["G4726"]],[21,22,["G2532"]],[22,25,["G2597"]],[25,27,["G1807"]],[27,28,["G846"]],[28,29,["G2532"]],[29,30,["G3568"]],[30,31,["G1204"]],[31,34,["G649"]],[34,35,["G4571"]],[35,36,["G1519"]],[36,37,["G125"]]]},{"k":27151,"v":[[0,1,["G5126"]],[1,2,["G3475"]],[2,3,["G3739"]],[3,5,["G720"]],[5,6,["G2036"]],[6,7,["G5101"]],[7,8,["G2525"]],[8,9,["G4571"]],[9,11,["G758"]],[11,12,["G2532"]],[12,14,["G1348"]],[14,16,["G5126"]],[16,18,["G2316"]],[18,19,["G649"]],[19,23,["G758"]],[23,24,["G2532"]],[24,26,["G3086"]],[26,27,["G1722"]],[27,29,["G5495"]],[29,32,["G32"]],[32,34,["G3700"]],[34,36,["G846"]],[36,37,["G1722"]],[37,38,["G3588"]],[38,39,["G942"]]]},{"k":27152,"v":[[0,1,["G3778"]],[1,4,["G1806","G846"]],[4,9,["G4160"]],[9,10,["G5059"]],[10,11,["G2532"]],[11,12,["G4592"]],[12,13,["G1722"]],[13,15,["G1093"]],[15,17,["G125"]],[17,18,["G2532"]],[18,19,["G1722"]],[19,21,["G2063"]],[21,22,["G2281"]],[22,23,["G2532"]],[23,24,["G1722"]],[24,25,["G3588"]],[25,26,["G2048"]],[26,27,["G5062"]],[27,28,["G2094"]]]},{"k":27153,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,4,["G3475"]],[4,6,["G2036"]],[6,8,["G3588"]],[8,9,["G5207"]],[9,11,["G2474"]],[11,13,["G4396"]],[13,16,["G2962"]],[16,17,["G5216"]],[17,18,["G2316"]],[18,20,["G450"]],[20,22,["G5213"]],[22,23,["G1537"]],[23,24,["G5216"]],[24,25,["G80"]],[25,27,["G5613"]],[27,28,["G1691"]],[28,29,["G846"]],[29,32,["G191"]]]},{"k":27154,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,5,["G1096"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G1577"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2048"]],[11,12,["G3326"]],[12,13,["G3588"]],[13,14,["G32"]],[14,16,["G2980"]],[16,18,["G846"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G3735"]],[21,22,["G4614"]],[22,23,["G2532"]],[23,25,["G2257"]],[25,26,["G3962"]],[26,27,["G3739"]],[27,28,["G1209"]],[28,30,["G2198"]],[30,31,["G3051"]],[31,33,["G1325"]],[33,35,["G2254"]]]},{"k":27155,"v":[[0,2,["G3739"]],[2,3,["G2257"]],[3,4,["G3962"]],[4,5,["G2309"]],[5,6,["G3756"]],[6,7,["G1096","G5255"]],[7,8,["G235"]],[8,11,["G683"]],[11,13,["G2532"]],[13,15,["G848"]],[15,16,["G2588"]],[16,19,["G4762"]],[19,20,["G1519"]],[20,21,["G125"]]]},{"k":27156,"v":[[0,1,["G2036"]],[1,3,["G2"]],[3,4,["G4160"]],[4,5,["G2254"]],[5,6,["G2316"]],[6,7,["(G3739)"]],[7,9,["G4313"]],[9,10,["G2257"]],[10,11,["G1063"]],[11,14,["G3778"]],[14,15,["G3475"]],[15,16,["G3739"]],[16,17,["G1806"]],[17,18,["G2248"]],[18,20,["G1537"]],[20,22,["G1093"]],[22,24,["G125"]],[24,26,["G1492"]],[26,27,["G3756"]],[27,28,["G5101"]],[28,30,["G1096"]],[30,32,["G846"]]]},{"k":27157,"v":[[0,1,["G2532"]],[1,5,["G3447"]],[5,6,["G1722"]],[6,7,["G1565"]],[7,8,["G2250"]],[8,9,["G2532"]],[9,10,["G321"]],[10,11,["G2378"]],[11,13,["G3588"]],[13,14,["G1497"]],[14,15,["G2532"]],[15,16,["G2165"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G2041"]],[19,22,["G848"]],[22,23,["G5495"]]]},{"k":27158,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,3,["G4762"]],[3,4,["G2532"]],[4,7,["G3860","G846"]],[7,9,["G3000"]],[9,10,["G3588"]],[10,11,["G4756"]],[11,13,["G3772"]],[13,14,["G2531"]],[14,17,["G1125"]],[17,18,["G1722"]],[18,20,["G976"]],[20,22,["G3588"]],[22,23,["G4396"]],[23,26,["G3624"]],[26,28,["G2474"]],[28,30,["(G3361)"]],[30,31,["G4374"]],[31,33,["G3427"]],[33,35,["G4968"]],[35,36,["G2532"]],[36,37,["G2378"]],[37,42,["G5062"]],[42,43,["G2094"]],[43,44,["G1722"]],[44,45,["G3588"]],[45,46,["G2048"]]]},{"k":27159,"v":[[0,1,["G2532"]],[1,4,["G353"]],[4,5,["G3588"]],[5,6,["G4633"]],[6,8,["G3434"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G798"]],[11,13,["G5216"]],[13,14,["G2316"]],[14,15,["G4481"]],[15,16,["G5179"]],[16,17,["G3739"]],[17,19,["G4160"]],[19,21,["G4352"]],[21,22,["G846"]],[22,23,["G2532"]],[23,28,["G3351","G5209"]],[28,29,["G1900"]],[29,30,["G897"]]]},{"k":27160,"v":[[0,1,["G2257"]],[1,2,["G3962"]],[2,3,["G2258"]],[3,4,["G3588"]],[4,5,["G4633"]],[5,7,["G3142"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G2048"]],[10,14,["G1299"]],[14,15,["G2980"]],[15,17,["G3475"]],[17,21,["G4160"]],[21,22,["G846"]],[22,23,["G2596"]],[23,25,["G3588"]],[25,26,["G5179"]],[26,27,["G3739"]],[27,30,["G3708"]]]},{"k":27161,"v":[[0,1,["G3739"]],[1,2,["G2532"]],[2,3,["G2257"]],[3,4,["G3962"]],[4,7,["G1237"]],[7,9,["G1521"]],[9,10,["G3326"]],[10,11,["G2424"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G2697"]],[14,16,["G3588"]],[16,17,["G1484"]],[17,18,["G3739"]],[18,19,["G2316"]],[19,21,["G1856"]],[21,22,["G575"]],[22,24,["G4383"]],[24,26,["G2257"]],[26,27,["G3962"]],[27,28,["G2193"]],[28,29,["G3588"]],[29,30,["G2250"]],[30,32,["G1138"]]]},{"k":27162,"v":[[0,1,["G3739"]],[1,2,["G2147"]],[2,3,["G5485"]],[3,4,["G1799"]],[4,5,["G2316"]],[5,6,["G2532"]],[6,7,["G154"]],[7,9,["G2147"]],[9,11,["G4638"]],[11,13,["G3588"]],[13,14,["G2316"]],[14,16,["G2384"]]]},{"k":27163,"v":[[0,1,["G1161"]],[1,2,["G4672"]],[2,3,["G3618"]],[3,4,["G846"]],[4,6,["G3624"]]]},{"k":27164,"v":[[0,1,["G235"]],[1,2,["G3588"]],[2,4,["G5310"]],[4,5,["G2730"]],[5,6,["G3756"]],[6,7,["G1722"]],[7,8,["G3485"]],[8,11,["G5499"]],[11,12,["G2531"]],[12,13,["G3004"]],[13,14,["G3588"]],[14,15,["G4396"]]]},{"k":27165,"v":[[0,1,["G3772"]],[1,3,["G3427"]],[3,4,["G2362"]],[4,5,["G1161"]],[5,6,["G1093"]],[6,8,["G3450"]],[8,9,["G5286","G4228"]],[9,10,["G4169"]],[10,11,["G3624"]],[11,14,["G3618"]],[14,15,["G3427"]],[15,16,["G3004"]],[16,18,["G2962"]],[18,19,["G2228"]],[19,20,["G5101"]],[20,23,["G5117"]],[23,25,["G3450"]],[25,26,["G2663"]]]},{"k":27166,"v":[[0,2,["G3780"]],[2,3,["G3450"]],[3,4,["G5495"]],[4,5,["G4160"]],[5,6,["G3956"]],[6,8,["G5023"]]]},{"k":27167,"v":[[0,2,["G4644"]],[2,3,["G2532"]],[3,4,["G564"]],[4,6,["G2588"]],[6,7,["G2532"]],[7,8,["G3775"]],[8,9,["G5210"]],[9,11,["G104"]],[11,12,["G496"]],[12,13,["G3588"]],[13,14,["G40"]],[14,15,["G4151"]],[15,16,["G5613"]],[16,17,["G5216"]],[17,18,["G3962"]],[18,20,["G2532"]],[20,22,["G5210"]]]},{"k":27168,"v":[[0,1,["G5101"]],[1,3,["G3588"]],[3,4,["G4396"]],[4,6,["G3756"]],[6,7,["G5216"]],[7,8,["G3962"]],[8,9,["G1377"]],[9,10,["G2532"]],[10,13,["G615"]],[13,17,["G4293"]],[17,18,["G4012"]],[18,19,["G3588"]],[19,20,["G1660"]],[20,22,["G3588"]],[22,24,["G1342"]],[24,26,["G3739"]],[26,27,["G5210"]],[27,29,["G1096"]],[29,30,["G3568"]],[30,32,["G4273"]],[32,33,["G2532"]],[33,34,["G5406"]]]},{"k":27169,"v":[[0,1,["G3748"]],[1,3,["G2983"]],[3,4,["G3588"]],[4,5,["G3551"]],[5,6,["G1519"]],[6,8,["G1296"]],[8,10,["G32"]],[10,11,["G2532"]],[11,13,["G3756"]],[13,14,["G5442"]],[14,15,[]]]},{"k":27170,"v":[[0,1,["G1161"]],[1,3,["G191"]],[3,5,["G5023"]],[5,8,["G1282"]],[8,9,["(G848)"]],[9,10,["G3588"]],[10,11,["G2588"]],[11,12,["G2532"]],[12,14,["G1031"]],[14,15,["G1909"]],[15,16,["G846"]],[16,19,["G3599"]]]},{"k":27171,"v":[[0,1,["G1161"]],[1,3,["G5225"]],[3,4,["G4134"]],[4,7,["G40"]],[7,8,["G4151"]],[8,11,["G816"]],[11,12,["G1519"]],[12,13,["G3772"]],[13,15,["G1492"]],[15,17,["G1391"]],[17,19,["G2316"]],[19,20,["G2532"]],[20,21,["G2424"]],[21,22,["G2476"]],[22,23,["G1537"]],[23,26,["G1188"]],[26,28,["G2316"]]]},{"k":27172,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,3,["G2400"]],[3,5,["G2334"]],[5,6,["G3588"]],[6,7,["G3772"]],[7,8,["G455"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G5207"]],[11,13,["G444"]],[13,14,["G2476"]],[14,15,["G1537"]],[15,18,["G1188"]],[18,20,["G2316"]]]},{"k":27173,"v":[[0,1,["G1161"]],[1,4,["G2896"]],[4,7,["G3173"]],[7,8,["G5456"]],[8,10,["G4912"]],[10,11,["G848"]],[11,12,["G3775"]],[12,13,["G2532"]],[13,14,["G3729"]],[14,15,["G1909"]],[15,16,["G846"]],[16,19,["G3661"]]]},{"k":27174,"v":[[0,1,["G2532"]],[1,2,["G1544"]],[2,4,["G1854"]],[4,6,["G3588"]],[6,7,["G4172"]],[7,9,["G3036"]],[9,11,["G2532"]],[11,12,["G3588"]],[12,13,["G3144"]],[13,15,["G659"]],[15,16,["G848"]],[16,17,["G2440"]],[17,18,["G3844"]],[18,21,["G3494"]],[21,22,["G4228"]],[22,24,["G2564"]],[24,26,["G4569"]]]},{"k":27175,"v":[[0,1,["G2532"]],[1,3,["G3036"]],[3,4,["G4736"]],[4,6,["G1941"]],[6,8,["G2532"]],[8,9,["G3004"]],[9,10,["G2962"]],[10,11,["G2424"]],[11,12,["G1209"]],[12,13,["G3450"]],[13,14,["G4151"]]]},{"k":27176,"v":[[0,1,["G1161"]],[1,4,["G5087","G1119"]],[4,6,["G2896"]],[6,9,["G3173"]],[9,10,["G5456"]],[10,11,["G2962"]],[11,12,["G2476"]],[12,13,["G3361"]],[13,14,["G5026"]],[14,15,["G266"]],[15,18,["G846"]],[18,19,["G2532"]],[19,23,["G2036"]],[23,24,["G5124"]],[24,27,["G2837"]]]},{"k":27177,"v":[[0,1,["G1161"]],[1,2,["G4569"]],[2,3,["G2258"]],[3,4,["G4909"]],[4,6,["G846"]],[6,7,["G336"]],[7,8,["G1161"]],[8,9,["G1722"]],[9,10,["G1565"]],[10,11,["G2250"]],[11,13,["G1096"]],[13,15,["G3173"]],[15,16,["G1375"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G1577"]],[19,20,["G3588"]],[20,22,["G1722"]],[22,23,["G2414"]],[23,24,["G5037"]],[24,27,["G3956"]],[27,29,["G1289"]],[29,30,["G2596"]],[30,31,["G3588"]],[31,32,["G5561"]],[32,34,["G2449"]],[34,35,["G2532"]],[35,36,["G4540"]],[36,37,["G4133"]],[37,38,["G3588"]],[38,39,["G652"]]]},{"k":27178,"v":[[0,1,["G1161"]],[1,2,["G2126"]],[2,3,["G435"]],[3,4,["G4792"]],[4,5,["G4736"]],[5,9,["G2532"]],[9,10,["G4160"]],[10,11,["G3173"]],[11,12,["G2870"]],[12,13,["G1909"]],[13,14,["G846"]]]},{"k":27179,"v":[[0,2,["(G1161)"]],[2,3,["G4569"]],[3,6,["G3075"]],[6,8,["G3588"]],[8,9,["G1577"]],[9,11,["G1531"]],[11,13,["G2596","G3624"]],[13,14,["G5037"]],[14,15,["G4951"]],[15,16,["G435"]],[16,17,["G2532"]],[17,18,["G1135"]],[18,19,["G3860"]],[19,21,["G1519"]],[21,22,["G5438"]]]},{"k":27180,"v":[[0,1,["G3767","(G3303)"]],[1,6,["G1289"]],[6,9,["G1330"]],[9,10,["G2097"]],[10,11,["G3588"]],[11,12,["G3056"]]]},{"k":27181,"v":[[0,1,["G1161"]],[1,2,["G5376"]],[2,4,["G2718"]],[4,5,["G1519"]],[5,7,["G4172"]],[7,9,["G4540"]],[9,11,["G2784"]],[11,12,["G5547"]],[12,14,["G846"]]]},{"k":27182,"v":[[0,1,["G5037"]],[1,2,["G3588"]],[2,3,["G3793"]],[3,6,["G3661"]],[6,8,["G4337"]],[8,12,["(G5259)"]],[12,13,["G5376"]],[13,14,["G3004"]],[14,15,["G191"]],[15,16,["G2532"]],[16,17,["G991"]],[17,18,["G3588"]],[18,19,["G4592"]],[19,20,["G3739"]],[20,22,["G4160"]]]},{"k":27183,"v":[[0,1,["G1063"]],[1,2,["G169"]],[2,3,["G4151"]],[3,4,["G994"]],[4,6,["G3173"]],[6,7,["G5456"]],[7,9,["G1831"]],[9,11,["G4183"]],[11,14,["G2192"]],[14,17,["G1161"]],[17,18,["G4183"]],[18,21,["G3886"]],[21,22,["G2532"]],[22,25,["G5560"]],[25,27,["G2323"]]]},{"k":27184,"v":[[0,1,["G2532"]],[1,3,["G1096"]],[3,4,["G3173"]],[4,5,["G5479"]],[5,6,["G1722"]],[6,7,["G1565"]],[7,8,["G4172"]]]},{"k":27185,"v":[[0,1,["G1161"]],[1,5,["G5100"]],[5,6,["G435"]],[6,7,["G3686"]],[7,8,["G4613"]],[8,10,["G4391"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,14,["G4172"]],[14,16,["G3096"]],[16,17,["G2532"]],[17,18,["G1839"]],[18,19,["G3588"]],[19,20,["G1484"]],[20,22,["G4540"]],[22,24,["G3004"]],[24,26,["G1438"]],[26,27,["G1511"]],[27,28,["G5100"]],[28,30,["G3173"]]]},{"k":27186,"v":[[0,2,["G3739"]],[2,4,["G3956"]],[4,6,["G4337"]],[6,7,["G575"]],[7,9,["G3398"]],[9,10,["G2193"]],[10,12,["G3173"]],[12,13,["G3004"]],[13,15,["G3778"]],[15,16,["G2076"]],[16,17,["G3588"]],[17,18,["G3173"]],[18,19,["G1411"]],[19,21,["G2316"]]]},{"k":27187,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,6,["G4337"]],[6,10,["G2425"]],[10,11,["G5550"]],[11,14,["G1839"]],[14,15,["G846"]],[15,17,["G3095"]]]},{"k":27188,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,4,["G4100"]],[4,5,["G5376"]],[5,6,["G2097"]],[6,8,["G3588"]],[8,9,["G4012"]],[9,10,["G3588"]],[10,11,["G932"]],[11,13,["G2316"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G3686"]],[16,18,["G2424"]],[18,19,["G5547"]],[19,22,["G907"]],[22,23,["G5037"]],[23,24,["G435"]],[24,25,["G2532"]],[25,26,["G1135"]]]},{"k":27189,"v":[[0,1,["G1161"]],[1,2,["G4613"]],[2,3,["G846"]],[3,4,["G4100"]],[4,5,["G2532"]],[5,6,["G2532"]],[6,10,["G907"]],[10,12,["G2258","G4342"]],[12,14,["G5376"]],[14,15,["G5037"]],[15,16,["G1839"]],[16,17,["G2334"]],[17,18,["(G3173)"]],[18,19,["G1411"]],[19,20,["G2532"]],[20,21,["G4592"]],[21,24,["G1096"]]]},{"k":27190,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G652"]],[4,5,["G3588"]],[5,7,["G1722"]],[7,8,["G2414"]],[8,9,["G191"]],[9,10,["G3754"]],[10,11,["G4540"]],[11,13,["G1209"]],[13,14,["G3588"]],[14,15,["G3056"]],[15,17,["G2316"]],[17,19,["G649"]],[19,20,["G4314"]],[20,21,["G846"]],[21,22,["G4074"]],[22,23,["G2532"]],[23,24,["G2491"]]]},{"k":27191,"v":[[0,1,["G3748"]],[1,6,["G2597"]],[6,7,["G4336"]],[7,8,["G4012"]],[8,9,["G846"]],[9,10,["G3704"]],[10,13,["G2983"]],[13,15,["G40"]],[15,16,["G4151"]]]},{"k":27192,"v":[[0,1,["G1063"]],[1,3,["G3768"]],[3,5,["G2258"]],[5,6,["G1968"]],[6,7,["G1909"]],[7,8,["G3762"]],[8,10,["G846","(G1161)"]],[10,11,["G3440"]],[11,13,["G5225"]],[13,14,["G907"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G3686"]],[17,19,["G3588"]],[19,20,["G2962"]],[20,21,["G2424"]]]},{"k":27193,"v":[[0,1,["G5119"]],[1,2,["G2007"]],[2,5,["G5495"]],[5,6,["G1909"]],[6,7,["G846"]],[7,8,["G2532"]],[8,10,["G2983"]],[10,12,["G40"]],[12,13,["G4151"]]]},{"k":27194,"v":[[0,1,["G1161"]],[1,3,["G4613"]],[3,4,["G2300"]],[4,5,["G3754"]],[5,6,["G1223"]],[6,8,["G1936"]],[8,10,["G3588"]],[10,11,["G652"]],[11,12,["G5495"]],[12,13,["G3588"]],[13,14,["G40"]],[14,15,["G4151"]],[15,17,["G1325"]],[17,19,["G4374"]],[19,20,["G846"]],[20,21,["G5536"]]]},{"k":27195,"v":[[0,1,["G3004"]],[1,2,["G1325"]],[2,4,["G2504"]],[4,5,["G5026"]],[5,6,["G1849"]],[6,7,["G2443"]],[7,9,["G3739","G302"]],[9,11,["G2007"]],[11,12,["G5495"]],[12,15,["G2983"]],[15,17,["G40"]],[17,18,["G4151"]]]},{"k":27196,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G4675"]],[6,7,["G694"]],[7,8,["G1498","G1519","G684"]],[8,9,["G4862"]],[9,10,["G4671"]],[10,11,["G3754"]],[11,14,["G3543"]],[14,16,["G3588"]],[16,17,["G1431"]],[17,19,["G2316"]],[19,22,["G2932"]],[22,23,["G1223"]],[23,24,["G5536"]]]},{"k":27197,"v":[[0,1,["G4671"]],[1,2,["G2076"]],[2,3,["G3756"]],[3,4,["G3310"]],[4,5,["G3761"]],[5,6,["G2819"]],[6,7,["G1722"]],[7,8,["G5129"]],[8,9,["G3056"]],[9,10,["G1063"]],[10,11,["G4675"]],[11,12,["G2588"]],[12,13,["G2076"]],[13,14,["G3756"]],[14,15,["G2117"]],[15,18,["G1799"]],[18,20,["G2316"]]]},{"k":27198,"v":[[0,1,["G3340"]],[1,2,["G3767"]],[2,3,["G575"]],[3,4,["G5026"]],[4,5,["G4675"]],[5,6,["G2549"]],[6,7,["G2532"]],[7,8,["G1189"]],[8,9,["G2316"]],[9,10,["G1487"]],[10,11,["G686"]],[11,12,["G3588"]],[12,13,["G1963"]],[13,15,["G4675"]],[15,16,["G2588"]],[16,19,["G863"]],[19,20,["G4671"]]]},{"k":27199,"v":[[0,1,["G1063"]],[1,3,["G3708"]],[3,5,["G4571"]],[5,6,["G5607"]],[6,7,["G1519"]],[7,9,["G5521"]],[9,11,["G4088"]],[11,12,["G2532"]],[12,15,["G4886"]],[15,17,["G93"]]]},{"k":27200,"v":[[0,1,["G1161"]],[1,2,["G611"]],[2,3,["G4613"]],[3,5,["G2036"]],[5,6,["G1189"]],[6,7,["G5210"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,10,["G2962"]],[10,11,["G5228"]],[11,12,["G1700"]],[12,13,["G3704"]],[13,14,["G3367"]],[14,18,["G3739"]],[18,21,["G2046"]],[21,22,["G1904"]],[22,23,["G1909"]],[23,24,["G1691"]]]},{"k":27201,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,4,["(G3303","G3767)"]],[4,6,["G1263"]],[6,7,["G2532"]],[7,8,["G2980"]],[8,9,["G3588"]],[9,10,["G3056"]],[10,12,["G3588"]],[12,13,["G2962"]],[13,14,["G5290"]],[14,15,["G1519"]],[15,16,["G2419"]],[16,17,["G5037"]],[17,20,["G2097"]],[20,22,["G4183"]],[22,23,["G2968"]],[23,25,["G3588"]],[25,26,["G4541"]]]},{"k":27202,"v":[[0,1,["G1161"]],[1,3,["G32"]],[3,6,["G2962"]],[6,7,["G2980"]],[7,8,["G4314"]],[8,9,["G5376"]],[9,10,["G3004"]],[10,11,["G450"]],[11,12,["G2532"]],[12,13,["G4198"]],[13,14,["G2596"]],[14,16,["G3314"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G3598"]],[19,22,["G2597"]],[22,23,["G575"]],[23,24,["G2419"]],[24,25,["G1519"]],[25,26,["G1048"]],[26,27,["G3778"]],[27,28,["G2076"]],[28,29,["G2048"]]]},{"k":27203,"v":[[0,1,["G2532"]],[1,3,["G450"]],[3,4,["G2532"]],[4,5,["G4198"]],[5,6,["G2532"]],[6,7,["G2400"]],[7,9,["G435"]],[9,11,["G128"]],[11,13,["G2135"]],[13,16,["G1413"]],[16,18,["G2582"]],[18,19,["G938"]],[19,22,["G128"]],[22,23,["G3739"]],[23,26,["G2258","G1909"]],[26,28,["G3956"]],[28,29,["G848"]],[29,30,["G1047"]],[30,31,["G2532"]],[31,32,["(G3739)"]],[32,33,["G2064"]],[33,34,["G1519"]],[34,35,["G2419"]],[35,38,["G4352"]]]},{"k":27204,"v":[[0,0,["(G5037)"]],[0,1,["G2258"]],[1,2,["G5290"]],[2,3,["G2532"]],[3,4,["G2521"]],[4,5,["G1909"]],[5,6,["G848"]],[6,7,["G716","(G2532)"]],[7,8,["G314"]],[8,9,["G2268"]],[9,10,["G3588"]],[10,11,["G4396"]]]},{"k":27205,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4151"]],[3,4,["G2036"]],[4,6,["G5376"]],[6,8,["G4334"]],[8,9,["G2532"]],[9,11,["G2853"]],[11,13,["G5129"]],[13,14,["G716"]]]},{"k":27206,"v":[[0,1,["G1161"]],[1,2,["G5376"]],[2,4,["G4370"]],[4,8,["G191"]],[8,9,["G846"]],[9,10,["G314"]],[10,11,["G3588"]],[11,12,["G4396"]],[12,13,["G2268"]],[13,14,["G2532"]],[14,15,["G2036","(G687","G1065)"]],[15,16,["G1097"]],[16,18,["G3739"]],[18,20,["G314"]]]},{"k":27207,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036","(G1063)"]],[3,4,["G4459"]],[4,5,["G1410","G302"]],[5,7,["G3362"]],[7,9,["G5100"]],[9,11,["G3594"]],[11,12,["G3165"]],[12,13,["G5037"]],[13,15,["G3870"]],[15,16,["G5376"]],[16,21,["G305"]],[21,23,["G2523"]],[23,24,["G4862"]],[24,25,["G846"]]]},{"k":27208,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G4042"]],[2,4,["G3588"]],[4,5,["G1124"]],[5,6,["G3739"]],[6,8,["G314"]],[8,9,["G2258"]],[9,10,["G3778"]],[10,13,["G71"]],[13,14,["G5613"]],[14,16,["G4263"]],[16,17,["G1909"]],[17,19,["G4967"]],[19,20,["G2532"]],[20,21,["G5613"]],[21,23,["G286"]],[23,24,["G880"]],[24,25,["G1726"]],[25,26,["G846"]],[26,27,["G2751"]],[27,28,["G3779"]],[28,29,["G455"]],[29,31,["G3756"]],[31,32,["G848"]],[32,33,["G4750"]]]},{"k":27209,"v":[[0,1,["G1722"]],[1,2,["G846"]],[2,3,["G5014"]],[3,4,["G846"]],[4,5,["G2920"]],[5,8,["G142"]],[8,9,["G1161"]],[9,10,["G5101"]],[10,12,["G1334"]],[12,13,["G846"]],[13,14,["G1074"]],[14,15,["G3754"]],[15,16,["G846"]],[16,17,["G2222"]],[17,19,["G142"]],[19,20,["G575"]],[20,21,["G3588"]],[21,22,["G1093"]]]},{"k":27210,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2135"]],[3,4,["G611"]],[4,5,["G5376"]],[5,7,["G2036"]],[7,9,["G1189"]],[9,10,["G4675"]],[10,11,["G4012"]],[11,12,["G5101"]],[12,13,["G3004"]],[13,14,["G3588"]],[14,15,["G4396"]],[15,16,["G5124"]],[16,17,["G4012"]],[17,18,["G1438"]],[18,19,["G2228"]],[19,20,["G4012"]],[20,23,["G5101","G2087"]]]},{"k":27211,"v":[[0,1,["G1161"]],[1,2,["G5376"]],[2,3,["G455"]],[3,4,["G848"]],[4,5,["G4750"]],[5,6,["G2532"]],[6,7,["G756"]],[7,8,["G575"]],[8,10,["G5026"]],[10,11,["G1124"]],[11,13,["G2097"]],[13,15,["G846"]],[15,16,["G2424"]]]},{"k":27212,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,4,["G4198"]],[4,5,["G2596"]],[5,7,["G3598"]],[7,9,["G2064"]],[9,10,["G1909"]],[10,12,["G5100"]],[12,13,["G5204"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G2135"]],[16,17,["G5346"]],[17,18,["G2400"]],[18,21,["G5204"]],[21,22,["G5101"]],[22,24,["G2967"]],[24,25,["G3165"]],[25,28,["G907"]]]},{"k":27213,"v":[[0,1,["G1161"]],[1,2,["G5376"]],[2,3,["G2036"]],[3,4,["G1487"]],[4,6,["G4100"]],[6,7,["G1537"]],[7,8,["G3650"]],[8,10,["G2588"]],[10,12,["G1832"]],[12,13,["G1161"]],[13,15,["G611"]],[15,17,["G2036"]],[17,19,["G4100"]],[19,21,["G2424"]],[21,22,["G5547"]],[22,23,["G1511"]],[23,24,["G3588"]],[24,25,["G5207"]],[25,27,["G2316"]]]},{"k":27214,"v":[[0,1,["G2532"]],[1,3,["G2753"]],[3,4,["G3588"]],[4,5,["G716"]],[5,8,["G2476"]],[8,9,["G2532"]],[9,12,["G2597"]],[12,13,["G297"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G5204"]],[16,17,["G5037"]],[17,18,["G5376"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G2135"]],[21,22,["G2532"]],[22,24,["G907"]],[24,25,["G846"]]]},{"k":27215,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,6,["G305"]],[6,8,["G1537"]],[8,9,["G3588"]],[9,10,["G5204"]],[10,12,["G4151"]],[12,15,["G2962"]],[15,17,["G726"]],[17,18,["G5376"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G2135","(G3756)"]],[21,22,["G1492"]],[22,23,["G846"]],[23,25,["G3765"]],[25,26,["(G1063)"]],[26,28,["G4198"]],[28,30,["G848"]],[30,31,["G3598"]],[31,32,["G5463"]]]},{"k":27216,"v":[[0,1,["G1161"]],[1,2,["G5376"]],[2,4,["G2147"]],[4,5,["G1519"]],[5,6,["G108"]],[6,7,["G2532"]],[7,9,["G1330"]],[9,11,["G2097"]],[11,13,["G3956"]],[13,14,["G3588"]],[14,15,["G4172"]],[15,16,["G2193"]],[16,17,["G846"]],[17,18,["G2064"]],[18,19,["G1519"]],[19,20,["G2542"]]]},{"k":27217,"v":[[0,1,["G1161"]],[1,2,["G4569"]],[2,3,["G2089"]],[3,5,["G1709"]],[5,6,["G547"]],[6,7,["G2532"]],[7,8,["G5408"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G3101"]],[11,13,["G3588"]],[13,14,["G2962"]],[14,15,["G4334"]],[15,17,["G3588"]],[17,19,["G749"]]]},{"k":27218,"v":[[0,2,["G154"]],[2,3,["G3844"]],[3,4,["G846"]],[4,5,["G1992"]],[5,6,["G1519"]],[6,7,["G1154"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,10,["G4864"]],[10,11,["G3704"]],[11,12,["G1437"]],[12,14,["G2147"]],[14,15,["G5100"]],[15,17,["(G5607)"]],[17,18,["G3598"]],[18,19,["G5037"]],[19,22,["G435"]],[22,23,["G2532"]],[23,24,["G1135"]],[24,27,["G71"]],[27,29,["G1210"]],[29,30,["G1519"]],[30,31,["G2419"]]]},{"k":27219,"v":[[0,1,["G1161"]],[1,4,["G4198"]],[4,5,["G846"]],[5,7,["G1448"]],[7,8,["G1154"]],[8,9,["G2532"]],[9,10,["G1810"]],[10,14,["G4015"]],[14,15,["G846"]],[15,17,["G5457"]],[17,18,["G575"]],[18,19,["G3772"]]]},{"k":27220,"v":[[0,1,["G2532"]],[1,3,["G4098"]],[3,4,["G1909"]],[4,5,["G3588"]],[5,6,["G1093"]],[6,8,["G191"]],[8,10,["G5456"]],[10,11,["G3004"]],[11,13,["G848"]],[13,14,["G4549"]],[14,15,["G4549"]],[15,16,["G5101"]],[16,17,["G1377"]],[17,19,["G3165"]]]},{"k":27221,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G5101"]],[4,5,["G1488"]],[5,7,["G2962"]],[7,8,["G1161"]],[8,9,["G3588"]],[9,10,["G2962"]],[10,11,["G2036"]],[11,12,["G1473"]],[12,13,["G1510"]],[13,14,["G2424"]],[14,15,["G3739"]],[15,16,["G4771"]],[16,17,["G1377"]],[17,20,["G4642"]],[20,22,["G4671"]],[22,24,["G2979"]],[24,25,["G4314"]],[25,27,["G2759"]]]},{"k":27222,"v":[[0,1,["G5037"]],[1,3,["G5141"]],[3,4,["G2532"]],[4,5,["G2284"]],[5,6,["G2036"]],[6,7,["G2962"]],[7,8,["G5101"]],[8,9,["G2309"]],[9,12,["G3165"]],[12,14,["G4160"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G2962"]],[17,19,["G4314"]],[19,20,["G846"]],[20,21,["G450"]],[21,22,["G2532"]],[22,23,["G1525"]],[23,24,["G1519"]],[24,25,["G3588"]],[25,26,["G4172"]],[26,27,["G2532"]],[27,31,["G2980"]],[31,32,["G4671"]],[32,33,["G5101"]],[33,35,["G1163"]],[35,36,["G4160"]]]},{"k":27223,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G435"]],[3,6,["G4922"]],[6,7,["G846"]],[7,8,["G2476"]],[8,9,["G1769"]],[9,10,["G191"]],[10,11,["(G3303)"]],[11,12,["G5456"]],[12,13,["G1161"]],[13,14,["G2334"]],[14,16,["G3367"]]]},{"k":27224,"v":[[0,1,["G1161"]],[1,2,["G4569"]],[2,3,["G1453"]],[3,4,["G575"]],[4,5,["G3588"]],[5,6,["G1093"]],[6,7,["G1161"]],[7,9,["G848"]],[9,10,["G3788"]],[10,12,["G455"]],[12,14,["G991"]],[14,16,["G3762"]],[16,17,["G1161"]],[17,23,["G5496","G846"]],[23,25,["G1521"]],[25,27,["G1519"]],[27,28,["G1154"]]]},{"k":27225,"v":[[0,1,["G2532"]],[1,3,["G2258"]],[3,4,["G5140"]],[4,5,["G2250"]],[5,6,["G3361"]],[6,7,["G991"]],[7,8,["G2532"]],[8,9,["G3756"]],[9,11,["G5315"]],[11,12,["G3761"]],[12,13,["G4095"]]]},{"k":27226,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,5,["G5100"]],[5,6,["G3101"]],[6,7,["G1722"]],[7,8,["G1154"]],[8,9,["G3686"]],[9,10,["G367"]],[10,11,["G2532"]],[11,12,["G4314"]],[12,13,["G846"]],[13,14,["G2036"]],[14,15,["G3588"]],[15,16,["G2962"]],[16,17,["G1722"]],[17,19,["G3705"]],[19,20,["G367"]],[20,21,["G1161"]],[21,22,["G3588"]],[22,23,["G2036"]],[23,24,["G2400"]],[24,25,["G1473"]],[25,28,["G2962"]]]},{"k":27227,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,5,["G4314"]],[5,6,["G846"]],[6,7,["G450"]],[7,9,["G4198"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G4505"]],[12,15,["G2564"]],[15,16,["G2117"]],[16,17,["G2532"]],[17,18,["G2212"]],[18,19,["G1722"]],[19,21,["G3614"]],[21,23,["G2455"]],[23,26,["G3686"]],[26,27,["G4569"]],[27,29,["G5018"]],[29,30,["G1063"]],[30,31,["G2400"]],[31,33,["G4336"]]]},{"k":27228,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G1722"]],[4,6,["G3705"]],[6,8,["G435"]],[8,9,["G3686"]],[9,10,["G367"]],[10,12,["G1525"]],[12,13,["G2532"]],[13,14,["G2007"]],[14,16,["G5495"]],[16,18,["G846"]],[18,19,["G3704"]],[19,24,["G308"]]]},{"k":27229,"v":[[0,1,["G1161"]],[1,2,["G367"]],[2,3,["G611"]],[3,4,["G2962"]],[4,7,["G191"]],[7,8,["G575"]],[8,9,["G4183"]],[9,10,["G4012"]],[10,11,["G5127"]],[11,12,["G435"]],[12,14,["G3745"]],[14,15,["G2556"]],[15,18,["G4160"]],[18,20,["G4675"]],[20,21,["G40"]],[21,22,["G1722"]],[22,23,["G2419"]]]},{"k":27230,"v":[[0,1,["G2532"]],[1,2,["G5602"]],[2,4,["G2192"]],[4,5,["G1849"]],[5,6,["G3844"]],[6,7,["G3588"]],[7,9,["G749"]],[9,11,["G1210"]],[11,12,["G3956"]],[12,15,["G1941"]],[15,16,["G4675"]],[16,17,["G3686"]]]},{"k":27231,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G846"]],[6,9,["G4198"]],[9,10,["G3754"]],[10,11,["G3778"]],[11,12,["G2076"]],[12,14,["G1589"]],[14,15,["G4632"]],[15,17,["G3427"]],[17,19,["G941"]],[19,20,["G3450"]],[20,21,["G3686"]],[21,22,["G1799"]],[22,24,["G1484"]],[24,25,["G2532"]],[25,26,["G935"]],[26,27,["G5037"]],[27,29,["G5207"]],[29,31,["G2474"]]]},{"k":27232,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,4,["G5263"]],[4,5,["G846"]],[5,8,["G3745"]],[8,9,["G846"]],[9,10,["G1163"]],[10,11,["G3958"]],[11,12,["G5228"]],[12,15,["G3450","G3686"]]]},{"k":27233,"v":[[0,1,["G1161"]],[1,2,["G367"]],[2,5,["G565"]],[5,6,["G2532"]],[6,7,["G1525"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G3614"]],[10,11,["G2532"]],[11,12,["G2007"]],[12,14,["G5495"]],[14,15,["G1909"]],[15,16,["G846"]],[16,17,["G2036"]],[17,18,["G80"]],[18,19,["G4549"]],[19,20,["G3588"]],[20,21,["G2962"]],[21,23,["G2424"]],[23,25,["G3700"]],[25,27,["G4671"]],[27,28,["G1722"]],[28,29,["G3588"]],[29,30,["G3598"]],[30,31,["G3739"]],[31,33,["G2064"]],[33,35,["G649"]],[35,36,["G3165"]],[36,37,["G3704"]],[37,42,["G308"]],[42,43,["G2532"]],[43,45,["G4130"]],[45,48,["G40"]],[48,49,["G4151"]]]},{"k":27234,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G634"]],[4,5,["G575"]],[5,6,["G846"]],[6,7,["G3788"]],[7,11,["G5616"]],[11,12,["G3013"]],[12,13,["G5037"]],[13,16,["G308"]],[16,17,["G3916"]],[17,18,["G2532"]],[18,19,["G450"]],[19,22,["G907"]]]},{"k":27235,"v":[[0,1,["G2532"]],[1,5,["G2983"]],[5,6,["G5160"]],[6,9,["G1765"]],[9,10,["G1161"]],[10,11,["G1096"]],[11,12,["G4569"]],[12,13,["G5100"]],[13,14,["G2250"]],[14,15,["G3326"]],[15,16,["G3588"]],[16,17,["G3101"]],[17,20,["G1722"]],[20,21,["G1154"]]]},{"k":27236,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G2784"]],[4,5,["G5547"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G4864"]],[8,9,["G3754"]],[9,10,["G3778"]],[10,11,["G2076"]],[11,12,["G3588"]],[12,13,["G5207"]],[13,15,["G2316"]]]},{"k":27237,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,4,["G191"]],[4,7,["G1839"]],[7,8,["G2532"]],[8,9,["G3004"]],[9,10,["G2076"]],[10,11,["G3756"]],[11,12,["G3778"]],[12,15,["G4199"]],[15,19,["G1941"]],[19,20,["G5124"]],[20,21,["G3686"]],[21,22,["G1722"]],[22,23,["G2419"]],[23,24,["G2532"]],[24,25,["G2064"]],[25,26,["G5602"]],[26,27,["G1519"]],[27,29,["G5124"]],[29,30,["G2443"]],[30,33,["G71"]],[33,34,["G846"]],[34,35,["G1210"]],[35,36,["G1909"]],[36,37,["G3588"]],[37,39,["G749"]]]},{"k":27238,"v":[[0,1,["G1161"]],[1,2,["G4569"]],[2,7,["G1743","G3123"]],[7,8,["G2532"]],[8,9,["G4797"]],[9,10,["G3588"]],[10,11,["G2453"]],[11,13,["G2730"]],[13,14,["G1722"]],[14,15,["G1154"]],[15,16,["G4822"]],[16,17,["G3754"]],[17,18,["G3778"]],[18,19,["G2076"]],[19,21,["G5547"]]]},{"k":27239,"v":[[0,1,["G1161"]],[1,3,["G5613"]],[3,4,["G2425"]],[4,5,["G2250"]],[5,7,["G4137"]],[7,8,["G3588"]],[8,9,["G2453"]],[9,11,["G4823"]],[11,13,["G337"]],[13,14,["G846"]]]},{"k":27240,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,4,["G1917"]],[4,6,["G1097"]],[6,8,["G4569"]],[8,9,["G5037"]],[9,11,["G3906"]],[11,12,["G3588"]],[12,13,["G4439","(G5037)"]],[13,14,["G2250"]],[14,15,["G2532"]],[15,16,["G3571"]],[16,17,["G3704"]],[17,18,["G337"]],[18,19,["G846"]]]},{"k":27241,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,4,["G2983"]],[4,5,["G846"]],[5,7,["G3571"]],[7,11,["G2524","G5465"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G5038"]],[14,15,["G1722"]],[15,17,["G4711"]]]},{"k":27242,"v":[[0,1,["G1161"]],[1,3,["G4569"]],[3,5,["G3854"]],[5,6,["G1519"]],[6,7,["G2419"]],[7,9,["G3987"]],[9,12,["G2853"]],[12,14,["G3588"]],[14,15,["G3101"]],[15,16,["G2532"]],[16,20,["G5399","G3956"]],[20,22,["G846"]],[22,24,["G4100"]],[24,25,["G3361"]],[25,26,["G3754"]],[26,28,["G2076"]],[28,30,["G3101"]]]},{"k":27243,"v":[[0,1,["G1161"]],[1,2,["G921"]],[2,3,["G1949"]],[3,4,["G846"]],[4,6,["G71"]],[6,8,["G4314"]],[8,9,["G3588"]],[9,10,["G652"]],[10,11,["G2532"]],[11,12,["G1334"]],[12,14,["G846"]],[14,15,["G4459"]],[15,18,["G1492"]],[18,19,["G3588"]],[19,20,["G2962"]],[20,21,["G1722"]],[21,22,["G3588"]],[22,23,["G3598"]],[23,24,["G2532"]],[24,25,["G3754"]],[25,28,["G2980"]],[28,30,["G846"]],[30,31,["G2532"]],[31,32,["G4459"]],[32,36,["G3955"]],[36,37,["G1722"]],[37,38,["G1154"]],[38,39,["G1722"]],[39,40,["G3588"]],[40,41,["G3686"]],[41,43,["G2424"]]]},{"k":27244,"v":[[0,1,["G2532"]],[1,3,["G2258"]],[3,4,["G3326"]],[4,5,["G846"]],[5,7,["G1531"]],[7,8,["G2532"]],[8,10,["G1607"]],[10,11,["G1722"]],[11,12,["G2419"]]]},{"k":27245,"v":[[0,1,["G2532"]],[1,4,["G3955"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G3686"]],[7,9,["G3588"]],[9,10,["G2962"]],[10,11,["G2424"]],[11,12,["G5037"]],[12,13,["(G2980","G4802)"]],[13,14,["G4314"]],[14,15,["G3588"]],[15,16,["G1675"]],[16,17,["G1161"]],[17,18,["G3588"]],[18,20,["G2021"]],[20,22,["G337"]],[22,23,["G846"]]]},{"k":27246,"v":[[0,2,["G1161"]],[2,3,["G3588"]],[3,4,["G80"]],[4,5,["G1921"]],[5,9,["G2609","G846"]],[9,10,["G1519"]],[10,11,["G2542"]],[11,12,["G2532"]],[12,15,["G1821","G846"]],[15,16,["G1519"]],[16,17,["G5019"]]]},{"k":27247,"v":[[0,1,["G3767","(G3303)"]],[1,2,["G2192"]],[2,3,["G3588"]],[3,4,["G1577"]],[4,5,["G1515"]],[5,6,["G2596"]],[6,7,["G3650"]],[7,8,["G2449"]],[8,9,["G2532"]],[9,10,["G1056"]],[10,11,["G2532"]],[11,12,["G4540"]],[12,15,["G3618"]],[15,16,["G2532"]],[16,17,["G4198"]],[17,19,["G3588"]],[19,20,["G5401"]],[20,22,["G3588"]],[22,23,["G2962"]],[23,24,["G2532"]],[24,26,["G3588"]],[26,27,["G3874"]],[27,29,["G3588"]],[29,30,["G40"]],[30,31,["G4151"]],[31,33,["G4129"]]]},{"k":27248,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,7,["G4074"]],[7,8,["G1330"]],[8,9,["G1223"]],[9,10,["G3956"]],[10,14,["G2718"]],[14,15,["G2532"]],[15,16,["G4314"]],[16,17,["G3588"]],[17,18,["G40"]],[18,20,["G2730"]],[20,22,["G3069"]]]},{"k":27249,"v":[[0,1,["G1161"]],[1,2,["G1563"]],[2,4,["G2147"]],[4,6,["G5100"]],[6,7,["G444"]],[7,8,["G3686"]],[8,9,["G132"]],[9,14,["G2621","G1909","G2895","(G1537)"]],[14,15,["G3638"]],[15,16,["G2094"]],[16,17,["(G3739)"]],[17,18,["G2258"]],[18,22,["G3886"]]]},{"k":27250,"v":[[0,1,["G2532"]],[1,2,["G4074"]],[2,3,["G2036"]],[3,5,["G846"]],[5,6,["G132"]],[6,7,["G2424"]],[7,8,["G5547"]],[8,11,["G2390","G4571"]],[11,12,["G450"]],[12,13,["G2532"]],[13,16,["G4766","G4572"]],[16,17,["G2532"]],[17,19,["G450"]],[19,20,["G2112"]]]},{"k":27251,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,4,["G2730"]],[4,6,["G3069"]],[6,7,["G2532"]],[7,8,["G4565"]],[8,9,["G1492"]],[9,10,["G846"]],[10,11,["(G3748)"]],[11,12,["G1994"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G2962"]]]},{"k":27252,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G1722"]],[4,5,["G2445"]],[5,7,["G5100"]],[7,8,["G3102"]],[8,9,["G3686"]],[9,10,["G5000"]],[10,11,["G3739"]],[11,13,["G1329"]],[13,15,["G3004"]],[15,16,["G1393"]],[16,18,["G3778"]],[18,19,["G2258"]],[19,20,["G4134"]],[20,22,["G18"]],[22,23,["G2041"]],[23,24,["G2532"]],[24,25,["G1654"]],[25,26,["G3739"]],[26,28,["G4160"]]]},{"k":27253,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,6,["G1722"]],[6,7,["G1565"]],[7,8,["G2250"]],[8,10,["G846"]],[10,12,["G770"]],[12,14,["G599"]],[14,16,["G1161"]],[16,19,["G3068"]],[19,20,["(G846)"]],[20,21,["G5087"]],[21,23,["G1722"]],[23,26,["G5253"]]]},{"k":27254,"v":[[0,1,["G1161"]],[1,4,["G3069"]],[4,5,["G5607"]],[5,7,["G1451"]],[7,8,["G2445"]],[8,10,["G3588"]],[10,11,["G3101"]],[11,13,["G191"]],[13,14,["G3754"]],[14,15,["G4074"]],[15,16,["G2076"]],[16,17,["G1722","G846"]],[17,19,["G649"]],[19,20,["G4314"]],[20,21,["G846"]],[21,22,["G1417"]],[22,23,["G435"]],[23,24,["G3870"]],[24,29,["G3361"]],[29,30,["G3635"]],[30,32,["G1330"]],[32,33,["G2193"]],[33,34,["G846"]]]},{"k":27255,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G450"]],[3,6,["G4905"]],[6,7,["G846"]],[7,8,["(G3739)"]],[8,11,["G3854"]],[11,13,["G321"]],[13,15,["G1519"]],[15,16,["G3588"]],[16,18,["G5253"]],[18,19,["G2532"]],[19,20,["G3956"]],[20,21,["G3588"]],[21,22,["G5503"]],[22,24,["G3936"]],[24,25,["G846"]],[25,26,["G2799"]],[26,27,["G2532"]],[27,28,["G1925"]],[28,30,["G5509"]],[30,31,["G2532"]],[31,32,["G2440"]],[32,33,["G3745"]],[33,34,["G1393"]],[34,35,["G4160"]],[35,38,["G5607"]],[38,39,["G3326"]],[39,40,["G846"]]]},{"k":27256,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G1544"]],[3,5,["G3956"]],[5,6,["G1854"]],[6,9,["G5087","G1119"]],[9,11,["G4336"]],[11,12,["G2532"]],[12,13,["G1994"]],[13,15,["G4314"]],[15,16,["G3588"]],[16,17,["G4983"]],[17,18,["G2036"]],[18,19,["G5000"]],[19,20,["G450"]],[20,21,["G1161"]],[21,22,["G3588"]],[22,23,["G455"]],[23,24,["G848"]],[24,25,["G3788"]],[25,26,["G2532"]],[26,29,["G1492"]],[29,30,["G4074"]],[30,33,["G339"]]]},{"k":27257,"v":[[0,1,["G1161"]],[1,3,["G1325"]],[3,4,["G846"]],[4,6,["G5495"]],[6,10,["G450","G846"]],[10,11,["G1161"]],[11,15,["G5455"]],[15,16,["G3588"]],[16,17,["G40"]],[17,18,["G2532"]],[18,19,["G5503"]],[19,20,["G3936"]],[20,21,["G846"]],[21,22,["G2198"]]]},{"k":27258,"v":[[0,1,["G1161"]],[1,3,["G1096"]],[3,4,["G1110"]],[4,5,["G2596"]],[5,6,["G3650"]],[6,7,["G2445"]],[7,8,["G2532"]],[8,9,["G4183"]],[9,10,["G4100"]],[10,11,["G1909"]],[11,12,["G3588"]],[12,13,["G2962"]]]},{"k":27259,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,7,["G846"]],[7,8,["G3306"]],[8,9,["G2425"]],[9,10,["G2250"]],[10,11,["G1722"]],[11,12,["G2445"]],[12,13,["G3844"]],[13,14,["G5100"]],[14,15,["G4613"]],[15,17,["G1038"]]]},{"k":27260,"v":[[0,1,["(G1161)"]],[1,2,["G2258"]],[2,4,["G5100"]],[4,5,["G435"]],[5,6,["G1722"]],[6,7,["G2542"]],[7,8,["G3686"]],[8,9,["G2883"]],[9,11,["G1543"]],[11,12,["G1537"]],[12,14,["G4686"]],[14,15,["G2564"]],[15,17,["G2483"]],[17,18,[]]]},{"k":27261,"v":[[0,2,["G2152"]],[2,4,["G2532"]],[4,7,["G5399"]],[7,8,["G2316"]],[8,9,["G4862"]],[9,10,["G3956"]],[10,11,["G848"]],[11,12,["G3624"]],[12,13,["(G5037)"]],[13,14,["G4160"]],[14,15,["G4183"]],[15,16,["G1654"]],[16,18,["G3588"]],[18,19,["G2992"]],[19,20,["G2532"]],[20,21,["G1189"]],[21,23,["G2316"]],[23,24,["G1275"]]]},{"k":27262,"v":[[0,2,["G1492"]],[2,3,["G1722"]],[3,5,["G3705"]],[5,6,["G5320"]],[6,7,["G5616"]],[7,9,["G1766"]],[9,10,["G5610"]],[10,12,["G3588"]],[12,13,["G2250"]],[13,15,["G32"]],[15,17,["G2316"]],[17,19,["G1525"]],[19,20,["G4314"]],[20,21,["G846"]],[21,22,["G2532"]],[22,23,["G2036"]],[23,25,["G846"]],[25,26,["G2883"]]]},{"k":27263,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G816"]],[4,6,["G846"]],[6,7,["(G2532)"]],[7,8,["G1096"]],[8,9,["G1719"]],[9,11,["G2036"]],[11,12,["G5101"]],[12,13,["G2076"]],[13,15,["G2962"]],[15,16,["G1161"]],[16,18,["G2036"]],[18,20,["G846"]],[20,21,["G4675"]],[21,22,["G4335"]],[22,23,["G2532"]],[23,24,["G4675"]],[24,25,["G1654"]],[25,28,["G305"]],[28,29,["G1519"]],[29,31,["G3422"]],[31,32,["G1799"]],[32,33,["G2316"]]]},{"k":27264,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,3,["G3992"]],[3,4,["G435"]],[4,5,["G1519"]],[5,6,["G2445"]],[6,7,["G2532"]],[7,9,["G3343"]],[9,11,["G4613"]],[11,12,["G3739"]],[12,14,["G1941"]],[14,15,["G4074"]]]},{"k":27265,"v":[[0,1,["G3778"]],[1,2,["G3579"]],[2,3,["G3844"]],[3,4,["G5100"]],[4,5,["G4613"]],[5,7,["G1038"]],[7,8,["G3739"]],[8,9,["G3614"]],[9,10,["G2076"]],[10,11,["G3844"]],[11,14,["G2281"]],[14,15,["G3778"]],[15,17,["G2980"]],[17,18,["G4671"]],[18,19,["G5101"]],[19,20,["G4571"]],[20,21,["G1163"]],[21,23,["G4160"]]]},{"k":27266,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G3588"]],[3,4,["G32"]],[4,6,["G2980"]],[6,8,["G2883"]],[8,10,["G565"]],[10,12,["G5455"]],[12,13,["G1417"]],[13,15,["G848"]],[15,17,["G3610"]],[17,18,["G2532"]],[18,20,["G2152"]],[20,21,["G4757"]],[21,28,["G4342","G846"]]]},{"k":27267,"v":[[0,1,["G2532"]],[1,5,["G1834"]],[5,6,["G537"]],[6,10,["G846"]],[10,12,["G649"]],[12,13,["G846"]],[13,14,["G1519"]],[14,15,["G2445"]]]},{"k":27268,"v":[[0,1,["(G1161)"]],[1,2,["G3588"]],[2,3,["G1887"]],[3,5,["G1565"]],[5,9,["G3596"]],[9,10,["G2532"]],[10,12,["G1448"]],[12,14,["G3588"]],[14,15,["G4172"]],[15,16,["G4074"]],[16,18,["G305"]],[18,19,["G1909"]],[19,20,["G3588"]],[20,21,["G1430"]],[21,23,["G4336"]],[23,24,["G4012"]],[24,26,["G1623"]],[26,27,["G5610"]]]},{"k":27269,"v":[[0,1,["G1161"]],[1,3,["G1096"]],[3,5,["G4361"]],[5,6,["G2532"]],[6,7,["G2309"]],[7,9,["G1089"]],[9,10,["G1161"]],[10,12,["G1565"]],[12,14,["G3903"]],[14,16,["G1968"]],[16,17,["G1909"]],[17,18,["(G846)"]],[18,19,["G1611"]]]},{"k":27270,"v":[[0,1,["G2532"]],[1,2,["G2334"]],[2,3,["G3772"]],[3,4,["G455"]],[4,5,["G2532"]],[5,7,["G5100"]],[7,8,["G4632"]],[8,9,["G2597"]],[9,10,["G1909"]],[10,11,["G846"]],[11,15,["G5613"]],[15,17,["G3173"]],[17,18,["G3607"]],[18,19,["G1210"]],[19,22,["G5064"]],[22,23,["G746"]],[23,24,["G2532"]],[24,26,["G2524"]],[26,27,["G1909"]],[27,28,["G3588"]],[28,29,["G1093"]]]},{"k":27271,"v":[[0,1,["G1722","G3739"]],[1,2,["G5225"]],[2,4,["G3956"]],[4,7,["G5074"]],[7,9,["G3588"]],[9,10,["G1093"]],[10,11,["G2532"]],[11,13,["G2342"]],[13,14,["G2532"]],[14,16,["G2062"]],[16,17,["G2532"]],[17,18,["G4071"]],[18,20,["G3588"]],[20,21,["G3772"]]]},{"k":27272,"v":[[0,1,["G2532"]],[1,3,["G1096"]],[3,5,["G5456"]],[5,6,["G4314"]],[6,7,["G846"]],[7,8,["G450"]],[8,9,["G4074"]],[9,10,["G2380"]],[10,11,["G2532"]],[11,12,["G5315"]]]},{"k":27273,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G2036"]],[3,5,["G3365"]],[5,6,["G2962"]],[6,7,["G3754"]],[7,10,["G3763"]],[10,11,["G5315"]],[11,13,["G3956"]],[13,16,["G2839"]],[16,17,["G2228"]],[17,18,["G169"]]]},{"k":27274,"v":[[0,1,["G2532"]],[1,3,["G5456"]],[3,5,["G4314"]],[5,6,["G846"]],[6,7,["G3825"]],[7,8,["(G1537)"]],[8,10,["G1208"]],[10,11,["G3739"]],[11,12,["G2316"]],[12,14,["G2511"]],[14,19,["G2840","G3361","G4771"]]]},{"k":27275,"v":[[0,0,["(G1161)"]],[0,1,["G5124"]],[1,2,["G1096"]],[2,3,["(G1909)"]],[3,4,["G5151"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G4632"]],[7,10,["G353"]],[10,11,["G3825"]],[11,12,["G1519"]],[12,13,["G3772"]]]},{"k":27276,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G4074"]],[3,4,["G1280"]],[4,5,["G1722"]],[5,6,["G1438"]],[6,7,["G5101"]],[7,9,["G3705"]],[9,10,["G3739"]],[10,13,["G1492"]],[13,15,["G1498","G302","(G2532)"]],[15,16,["G2400"]],[16,17,["G3588"]],[17,18,["G435"]],[18,21,["G649"]],[21,22,["G575"]],[22,23,["G2883"]],[23,26,["G1331"]],[26,28,["G4613"]],[28,29,["G3614"]],[29,31,["G2186"]],[31,32,["G1909"]],[32,33,["G3588"]],[33,34,["G4440"]]]},{"k":27277,"v":[[0,1,["G2532"]],[1,2,["G5455"]],[2,4,["G4441"]],[4,5,["G1487"]],[5,6,["G4613"]],[6,9,["G1941"]],[9,10,["G4074"]],[10,12,["G3579"]],[12,13,["G1759"]]]},{"k":27278,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G1760"]],[3,4,["G4012"]],[4,5,["G3588"]],[5,6,["G3705"]],[6,7,["G3588"]],[7,8,["G4151"]],[8,9,["G2036"]],[9,11,["G846"]],[11,12,["G2400"]],[12,13,["G5140"]],[13,14,["G435"]],[14,15,["G2212"]],[15,16,["G4571"]]]},{"k":27279,"v":[[0,1,["G450"]],[1,2,["G235"]],[2,6,["G2597"]],[6,7,["G2532"]],[7,8,["G4198"]],[8,9,["G4862"]],[9,10,["G846"]],[10,11,["G1252"]],[11,12,["G3367"]],[12,13,["G1360"]],[13,14,["G1473"]],[14,16,["G649"]],[16,17,["G846"]]]},{"k":27280,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,4,["G2597"]],[4,5,["G4314"]],[5,6,["G3588"]],[6,7,["G435"]],[7,10,["G649"]],[10,11,["G4314"]],[11,12,["G846"]],[12,13,["G575"]],[13,14,["G2883"]],[14,16,["G2036"]],[16,17,["G2400"]],[17,18,["G1473"]],[18,19,["G1510"]],[19,21,["G3739"]],[21,23,["G2212"]],[23,24,["G5101"]],[24,26,["G3588"]],[26,27,["G156"]],[27,28,["G1223","G3739"]],[28,31,["G3918"]]]},{"k":27281,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G2883"]],[4,6,["G1543"]],[6,8,["G1342"]],[8,9,["G435"]],[9,10,["G2532"]],[10,13,["G5399"]],[13,14,["G2316"]],[14,15,["G5037"]],[15,18,["G3140"]],[18,19,["G5259"]],[19,20,["G3650"]],[20,21,["G3588"]],[21,22,["G1484"]],[22,24,["G3588"]],[24,25,["G2453"]],[25,29,["G5537"]],[29,30,["G5259"]],[30,32,["G40"]],[32,33,["G32"]],[33,36,["G3343"]],[36,37,["G4571"]],[37,38,["G1519"]],[38,39,["G848"]],[39,40,["G3624"]],[40,41,["G2532"]],[41,43,["G191"]],[43,44,["G4487"]],[44,45,["G3844"]],[45,46,["G4675"]]]},{"k":27282,"v":[[0,1,["G3767"]],[1,5,["G1528","G846"]],[5,7,["G3579"]],[7,9,["G1161"]],[9,11,["G3588"]],[11,12,["G1887"]],[12,13,["G4074"]],[13,15,["G1831"]],[15,16,["G4862"]],[16,17,["G846"]],[17,18,["G2532"]],[18,19,["G5100"]],[19,20,["G80"]],[20,21,["G575"]],[21,22,["G2445"]],[22,23,["G4905"]],[23,24,["G846"]]]},{"k":27283,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,4,["G1887"]],[4,6,["G1525"]],[6,7,["G1519"]],[7,8,["G2542"]],[8,9,["G1161"]],[9,10,["G2883"]],[10,12,["G2258","G4328"]],[12,13,["G846"]],[13,17,["G4779"]],[17,18,["G848"]],[18,19,["G4773"]],[19,20,["G2532"]],[20,21,["G316"]],[21,22,["G5384"]]]},{"k":27284,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G4074"]],[3,4,["G1096"]],[4,6,["G1525"]],[6,7,["G2883"]],[7,8,["G4876"]],[8,9,["G846"]],[9,12,["G4098"]],[12,13,["G1909"]],[13,15,["G4228"]],[15,17,["G4352"]],[17,18,[]]]},{"k":27285,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,5,["G1453","G846"]],[5,6,["G3004"]],[6,8,["G450"]],[8,11,["G2504","G846"]],[11,12,["G1510"]],[12,14,["G444"]]]},{"k":27286,"v":[[0,1,["G2532"]],[1,5,["G4926"]],[5,6,["G846"]],[6,9,["G1525"]],[9,10,["G2532"]],[10,11,["G2147"]],[11,12,["G4183"]],[12,16,["G4905"]]]},{"k":27287,"v":[[0,1,["G5037"]],[1,3,["G5346"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G5210"]],[6,7,["G1987"]],[7,8,["G5613"]],[8,11,["G2076"]],[11,14,["G111"]],[14,17,["G435"]],[17,21,["G2453"]],[21,24,["G2853"]],[24,25,["G2228"]],[25,27,["G4334"]],[27,31,["G246"]],[31,32,["G2532"]],[32,33,["G2316"]],[33,35,["G1166"]],[35,36,["G1698"]],[36,41,["G3004"]],[41,42,["G3367"]],[42,43,["G444"]],[43,44,["G2839"]],[44,45,["G2228"]],[45,46,["G169"]]]},{"k":27288,"v":[[0,1,["G1352","(G2532)"]],[1,2,["G2064"]],[2,7,["G369"]],[7,14,["G3343"]],[14,16,["G4441"]],[16,17,["G3767"]],[17,19,["G5101"]],[19,20,["G3056"]],[20,24,["G3343"]],[24,25,["G3165"]]]},{"k":27289,"v":[[0,1,["G2532"]],[1,2,["G2883"]],[2,3,["G5346"]],[3,4,["G5067"]],[4,5,["G2250"]],[5,6,["G575"]],[6,8,["G2252"]],[8,9,["G3522"]],[9,10,["G3360"]],[10,11,["G5026"]],[11,12,["G5610"]],[12,13,["G2532"]],[13,15,["G3588"]],[15,16,["G1766"]],[16,17,["G5610"]],[17,19,["G4336"]],[19,20,["G1722"]],[20,21,["G3450"]],[21,22,["G3624"]],[22,23,["G2532"]],[23,24,["G2400"]],[24,26,["G435"]],[26,27,["G2476"]],[27,28,["G1799"]],[28,29,["G3450"]],[29,30,["G1722"]],[30,31,["G2986"]],[31,32,["G2066"]]]},{"k":27290,"v":[[0,1,["G2532"]],[1,2,["G5346"]],[2,3,["G2883"]],[3,4,["G4675"]],[4,5,["G4335"]],[5,7,["G1522"]],[7,8,["G2532"]],[8,9,["G4675"]],[9,10,["G1654"]],[10,14,["G3415"]],[14,17,["G1799"]],[17,19,["G2316"]]]},{"k":27291,"v":[[0,1,["G3992"]],[1,2,["G3767"]],[2,3,["G1519"]],[3,4,["G2445"]],[4,5,["G2532"]],[5,7,["G3333"]],[7,8,["G4613"]],[8,9,["G3739"]],[9,11,["G1941"]],[11,12,["G4074"]],[12,13,["G3778"]],[13,15,["G3579"]],[15,16,["G1722"]],[16,18,["G3614"]],[18,21,["G4613"]],[21,23,["G1038"]],[23,24,["G3844"]],[24,27,["G2281"]],[27,28,["G3739"]],[28,31,["G3854"]],[31,33,["G2980"]],[33,35,["G4671"]]]},{"k":27292,"v":[[0,1,["G1824"]],[1,2,["G3767"]],[2,4,["G3992"]],[4,5,["G4314"]],[5,6,["G4571"]],[6,7,["G5037"]],[7,8,["G4771"]],[8,10,["G2573"]],[10,11,["G4160"]],[11,15,["G3854"]],[15,16,["G3568"]],[16,17,["G3767"]],[17,22,["G3918","G2249","G3956"]],[22,23,["G1799"]],[23,24,["G2316"]],[24,26,["G191"]],[26,28,["G3956"]],[28,31,["G4367"]],[31,32,["G4671"]],[32,33,["G5259"]],[33,34,["G2316"]]]},{"k":27293,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G455"]],[3,5,["G4750"]],[5,7,["G2036"]],[7,8,["G1909"]],[8,10,["G225"]],[10,12,["G2638"]],[12,13,["G3754"]],[13,14,["G2316"]],[14,15,["G2076"]],[15,16,["G3756"]],[16,19,["G4381"]]]},{"k":27294,"v":[[0,1,["G235"]],[1,2,["G1722"]],[2,3,["G3956"]],[3,4,["G1484"]],[4,7,["G5399"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G2038"]],[10,11,["G1343"]],[11,12,["G2076"]],[12,13,["G1184"]],[13,15,["G846"]]]},{"k":27295,"v":[[0,1,["G3588"]],[1,2,["G3056"]],[2,3,["G3739"]],[3,5,["G649"]],[5,7,["G3588"]],[7,8,["G5207"]],[8,10,["G2474"]],[10,11,["G2097"]],[11,12,["G1515"]],[12,13,["G1223"]],[13,14,["G2424"]],[14,15,["G5547"]],[15,16,["G3778"]],[16,17,["G2076"]],[17,18,["G2962"]],[18,20,["G3956"]]]},{"k":27296,"v":[[0,2,["G4487"]],[2,5,["G5210"]],[5,6,["G1492"]],[6,9,["G1096"]],[9,10,["G2596"]],[10,11,["G3650"]],[11,12,["G2449"]],[12,14,["G756"]],[14,15,["G575"]],[15,16,["G1056"]],[16,17,["G3326"]],[17,18,["G3588"]],[18,19,["G908"]],[19,20,["G3739"]],[20,21,["G2491"]],[21,22,["G2784"]]]},{"k":27297,"v":[[0,1,["G5613"]],[1,2,["G2316"]],[2,3,["G5548"]],[3,4,["G2424"]],[4,5,["G575"]],[5,6,["G3478"]],[6,9,["G40"]],[9,10,["G4151"]],[10,11,["G2532"]],[11,13,["G1411"]],[13,14,["G3739"]],[14,16,["G1330"]],[16,18,["G2109"]],[18,19,["G2532"]],[19,20,["G2390"]],[20,21,["G3956"]],[21,24,["G2616"]],[24,25,["G5259"]],[25,26,["G3588"]],[26,27,["G1228"]],[27,28,["G3754"]],[28,29,["G2316"]],[29,30,["G2258"]],[30,31,["G3326"]],[31,32,["G846"]]]},{"k":27298,"v":[[0,1,["G2532"]],[1,2,["G2249"]],[2,3,["G2070"]],[3,4,["G3144"]],[4,7,["G3956"]],[7,8,["G3739"]],[8,10,["G4160"]],[10,11,["G5037"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G5561"]],[14,16,["G3588"]],[16,17,["G2453"]],[17,18,["G2532"]],[18,19,["G1722"]],[19,20,["G2419"]],[20,21,["G3739"]],[21,23,["G337"]],[23,25,["G2910"]],[25,26,["G1909"]],[26,28,["G3586"]]]},{"k":27299,"v":[[0,1,["G5126"]],[1,2,["G2316"]],[2,4,["G1453"]],[4,5,["G3588"]],[5,6,["G5154"]],[6,7,["G2250"]],[7,8,["G2532"]],[8,11,["G1325","G846","G1096","G1717"]]]},{"k":27300,"v":[[0,1,["G3756"]],[1,3,["G3956"]],[3,4,["G3588"]],[4,5,["G2992"]],[5,6,["G235"]],[6,8,["G3144"]],[8,10,["G4401"]],[10,11,["G5259"]],[11,12,["G2316"]],[12,15,["G2254"]],[15,16,["G3748"]],[16,18,["G4906"]],[18,19,["G2532"]],[19,21,["G4844"]],[21,22,["G846"]],[22,24,["G846"]],[24,25,["G450"]],[25,26,["G1537"]],[26,28,["G3498"]]]},{"k":27301,"v":[[0,1,["G2532"]],[1,3,["G3853"]],[3,4,["G2254"]],[4,6,["G2784"]],[6,8,["G3588"]],[8,9,["G2992"]],[9,10,["G2532"]],[10,12,["G1263"]],[12,13,["G3754"]],[13,15,["G2076"]],[15,16,["G846"]],[16,19,["G3724"]],[19,20,["G5259"]],[20,21,["G2316"]],[21,25,["G2923"]],[25,27,["G2198"]],[27,28,["G2532"]],[28,29,["G3498"]]]},{"k":27302,"v":[[0,2,["G5129"]],[2,7,["G3140","G3956","G3588","G4396"]],[7,9,["G1223"]],[9,10,["G846"]],[10,11,["G3686"]],[11,12,["G3956"]],[12,13,["G4100"]],[13,14,["G1519"]],[14,15,["G846"]],[15,17,["G2983"]],[17,18,["G859"]],[18,20,["G266"]]]},{"k":27303,"v":[[0,2,["G4074"]],[2,3,["G2089"]],[3,4,["G2980"]],[4,5,["G5023"]],[5,6,["G4487"]],[6,7,["G3588"]],[7,8,["G40"]],[8,9,["G4151"]],[9,10,["G1968"]],[10,11,["G1909"]],[11,12,["G3956"]],[12,15,["G191"]],[15,16,["G3588"]],[16,17,["G3056"]]]},{"k":27304,"v":[[0,1,["G2532"]],[1,7,["G4103","G1537","G4061"]],[7,9,["G1839"]],[9,12,["G3745"]],[12,14,["G4905"]],[14,15,["G4074"]],[15,16,["G3754"]],[16,18,["G1909"]],[18,19,["G3588"]],[19,20,["G1484"]],[20,21,["G2532"]],[21,24,["G1632"]],[24,25,["G3588"]],[25,26,["G1431"]],[26,28,["G3588"]],[28,29,["G40"]],[29,30,["G4151"]]]},{"k":27305,"v":[[0,1,["G1063"]],[1,3,["G191"]],[3,4,["G846"]],[4,5,["G2980"]],[5,7,["G1100"]],[7,8,["G2532"]],[8,9,["G3170"]],[9,10,["G2316"]],[10,11,["G5119"]],[11,12,["G611"]],[12,13,["G4074"]]]},{"k":27306,"v":[[0,1,["G1410"]],[1,3,["G5100"]],[3,4,["G2967","(G3385)"]],[4,5,["G5204"]],[5,7,["G5128"]],[7,9,["G3361"]],[9,11,["G907"]],[11,12,["G3748"]],[12,14,["G2983"]],[14,15,["G3588"]],[15,16,["G40"]],[16,17,["G4151"]],[17,20,["G2531","G2532"]],[20,21,["G2249"]]]},{"k":27307,"v":[[0,1,["G5037"]],[1,3,["G4367"]],[3,4,["G846"]],[4,7,["G907"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G3686"]],[10,12,["G3588"]],[12,13,["G2962"]],[13,14,["G5119"]],[14,15,["G2065"]],[15,17,["G846"]],[17,19,["G1961"]],[19,20,["G5100"]],[20,21,["G2250"]]]},{"k":27308,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G652"]],[3,4,["G2532"]],[4,5,["G80"]],[5,7,["G5607"]],[7,8,["G2596"]],[8,9,["G2449"]],[9,10,["G191"]],[10,11,["G3754"]],[11,12,["G3588"]],[12,13,["G1484"]],[13,15,["G2532"]],[15,16,["G1209"]],[16,17,["G3588"]],[17,18,["G3056"]],[18,20,["G2316"]]]},{"k":27309,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,3,["G4074"]],[3,6,["G305"]],[6,7,["G1519"]],[7,8,["G2414"]],[8,9,["G3588"]],[9,12,["G1537"]],[12,14,["G4061"]],[14,15,["G1252"]],[15,16,["G4314"]],[16,17,["G846"]]]},{"k":27310,"v":[[0,1,["G3004"]],[1,4,["G1525"]],[4,5,["G4314"]],[5,6,["G435"]],[6,7,["G203"]],[7,8,["G2532"]],[8,11,["G4906"]],[11,12,["G846"]]]},{"k":27311,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,8,["G756"]],[8,10,["G1620"]],[10,13,["G2517"]],[13,15,["G846"]],[15,16,["G3004"]]]},{"k":27312,"v":[[0,1,["G1473"]],[1,2,["G2252"]],[2,3,["G1722"]],[3,5,["G4172"]],[5,7,["G2445"]],[7,8,["G4336"]],[8,9,["G2532"]],[9,10,["G1722"]],[10,12,["G1611"]],[12,14,["G1492"]],[14,16,["G3705"]],[16,18,["G5100"]],[18,19,["G4632"]],[19,20,["G2597"]],[20,24,["G5613"]],[24,26,["G3173"]],[26,27,["G3607"]],[27,29,["G2524"]],[29,30,["G1537"]],[30,31,["G3772"]],[31,33,["G5064"]],[33,34,["G746"]],[34,35,["G2532"]],[35,37,["G2064"]],[37,39,["G891"]],[39,40,["G1700"]]]},{"k":27313,"v":[[0,1,["G1519"]],[1,3,["G3739"]],[3,9,["G816"]],[9,11,["G2657"]],[11,12,["G2532"]],[12,13,["G1492"]],[13,15,["G5074"]],[15,17,["G3588"]],[17,18,["G1093"]],[18,19,["G2532"]],[19,21,["G2342"]],[21,22,["G2532"]],[22,24,["G2062"]],[24,25,["G2532"]],[25,26,["G4071"]],[26,28,["G3588"]],[28,29,["G3772"]]]},{"k":27314,"v":[[0,1,["G1161"]],[1,3,["G191"]],[3,5,["G5456"]],[5,6,["G3004"]],[6,8,["G3427"]],[8,9,["G450"]],[9,10,["G4074"]],[10,11,["G2380"]],[11,12,["G2532"]],[12,13,["G5315"]]]},{"k":27315,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,5,["G3365"]],[5,6,["G2962"]],[6,7,["G3754"]],[7,8,["G3956"]],[8,9,["G2839"]],[9,10,["G2228"]],[10,11,["G169"]],[11,15,["G3763"]],[15,16,["G1525"]],[16,17,["G1519"]],[17,18,["G3450"]],[18,19,["G4750"]]]},{"k":27316,"v":[[0,1,["G1161"]],[1,3,["G5456"]],[3,4,["G611"]],[4,5,["G3427"]],[5,6,["G1537","G1208"]],[6,7,["G1537"]],[7,8,["G3772"]],[8,9,["G3739"]],[9,10,["G2316"]],[10,12,["G2511"]],[12,17,["G2840","G3361","G4771"]]]},{"k":27317,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,4,["G1096"]],[4,6,["G5151"]],[6,7,["G2532"]],[7,8,["G537"]],[8,11,["G385"]],[11,12,["G3825"]],[12,13,["G1519"]],[13,14,["G3772"]]]},{"k":27318,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,3,["G1824"]],[3,6,["G5140"]],[6,7,["G435"]],[7,9,["G2186"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G3614"]],[12,13,["G1722","G3739"]],[13,15,["G2252"]],[15,16,["G649"]],[16,17,["G575"]],[17,18,["G2542"]],[18,19,["G4314"]],[19,20,["G3165"]]]},{"k":27319,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4151"]],[3,4,["G2036"]],[4,5,["G3427"]],[5,7,["G4905"]],[7,8,["G846"]],[8,9,["G3367"]],[9,10,["G1252"]],[10,11,["G1161"]],[11,12,["G3778"]],[12,13,["G1803"]],[13,14,["G80","(G2532)"]],[14,15,["G2064","G4862"]],[15,16,["G1698"]],[16,17,["G2532"]],[17,19,["G1525"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G435"]],[22,23,["G3624"]]]},{"k":27320,"v":[[0,1,["G5037"]],[1,3,["G518"]],[3,4,["G2254"]],[4,5,["G4459"]],[5,8,["G1492"]],[8,10,["G32"]],[10,11,["G1722"]],[11,12,["G846"]],[12,13,["G3624"]],[13,15,["G2476"]],[15,16,["G2532"]],[16,17,["G2036"]],[17,19,["G846"]],[19,20,["G649"]],[20,21,["G435"]],[21,22,["G1519"]],[22,23,["G2445"]],[23,24,["G2532"]],[24,26,["G3343"]],[26,27,["G4613"]],[27,30,["G1941"]],[30,31,["G4074"]]]},{"k":27321,"v":[[0,1,["G3739"]],[1,3,["G2980"]],[3,4,["G4571"]],[4,5,["G4487"]],[5,6,["G1722","G3739"]],[6,7,["G4771"]],[7,8,["G2532"]],[8,9,["G3956"]],[9,10,["G4675"]],[10,11,["G3624"]],[11,14,["G4982"]]]},{"k":27322,"v":[[0,1,["G1161"]],[1,3,["G3165"]],[3,4,["G756"]],[4,6,["G2980"]],[6,7,["G3588"]],[7,8,["G40"]],[8,9,["G4151"]],[9,10,["G1968"]],[10,11,["G1909"]],[11,12,["G846"]],[12,13,["G5618","(G2532)"]],[13,14,["G1909"]],[14,15,["G2248"]],[15,16,["G1722"]],[16,18,["G746"]]]},{"k":27323,"v":[[0,1,["G1161"]],[1,2,["G3415"]],[2,4,["G3588"]],[4,5,["G4487"]],[5,8,["G2962"]],[8,9,["G5613"]],[9,12,["G3004"]],[12,13,["G2491"]],[13,14,["G3303"]],[14,15,["G907"]],[15,17,["G5204"]],[17,18,["G1161"]],[18,19,["G5210"]],[19,22,["G907"]],[22,23,["G1722"]],[23,25,["G40"]],[25,26,["G4151"]]]},{"k":27324,"v":[[0,1,["G1487"]],[1,2,["G3767"]],[2,4,["G2316"]],[4,5,["G1325"]],[5,6,["G846"]],[6,7,["G3588"]],[7,8,["G2470"]],[8,9,["G1431"]],[9,10,["G5613"]],[10,12,["(G2532)"]],[12,14,["G2254"]],[14,16,["G4100"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G2962"]],[19,20,["G2424"]],[20,21,["G5547"]],[21,22,["G5101"]],[22,23,["G2252"]],[23,27,["G1415"]],[27,28,["G2967"]],[28,29,["G2316"]]]},{"k":27325,"v":[[0,1,["G1161"]],[1,3,["G191"]],[3,5,["G5023"]],[5,9,["G2270"]],[9,10,["G2532"]],[10,11,["G1392"]],[11,12,["G2316"]],[12,13,["G3004"]],[13,14,["G686"]],[14,15,["(G1065)"]],[15,16,["G2316"]],[16,17,["G2532"]],[17,19,["G3588"]],[19,20,["G1484"]],[20,21,["G1325"]],[21,22,["G3341"]],[22,23,["G1519"]],[23,24,["G2222"]]]},{"k":27326,"v":[[0,1,["G3767"]],[1,6,["G1289","(G3303)"]],[6,7,["G575"]],[7,8,["G3588"]],[8,9,["G2347"]],[9,11,["G1096"]],[11,12,["G1909"]],[12,13,["G4736"]],[13,14,["G1330"]],[14,17,["G2193"]],[17,18,["G5403"]],[18,19,["G2532"]],[19,20,["G2954"]],[20,21,["G2532"]],[21,22,["G490"]],[22,23,["G2980"]],[23,24,["G3588"]],[24,25,["G3056"]],[25,27,["G3367"]],[27,28,["G1508"]],[28,31,["G2453"]],[31,32,["G3440"]]]},{"k":27327,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G1537"]],[3,4,["G846"]],[4,5,["G2258"]],[5,6,["G435"]],[6,8,["G2953"]],[8,9,["G2532"]],[9,10,["G2956"]],[10,11,["G3748"]],[11,15,["G1525"]],[15,16,["G1519"]],[16,17,["G490"]],[17,18,["G2980"]],[18,19,["G4314"]],[19,20,["G3588"]],[20,21,["G1675"]],[21,22,["G2097"]],[22,23,["G3588"]],[23,24,["G2962"]],[24,25,["G2424"]]]},{"k":27328,"v":[[0,1,["G2532"]],[1,3,["G5495"]],[3,6,["G2962"]],[6,7,["G2258"]],[7,8,["G3326"]],[8,9,["G846"]],[9,10,["G5037"]],[10,12,["G4183"]],[12,13,["G706"]],[13,14,["G4100"]],[14,16,["G1994"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G2962"]]]},{"k":27329,"v":[[0,1,["G1161"]],[1,6,["G3056","G4012","G846","G191"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G3775"]],[9,11,["G3588"]],[11,12,["G1577"]],[12,13,["G3588"]],[13,15,["G1722"]],[15,16,["G2414"]],[16,17,["G2532"]],[17,20,["G1821"]],[20,21,["G921"]],[21,25,["G1330"]],[25,28,["G2193"]],[28,29,["G490"]]]},{"k":27330,"v":[[0,1,["G3739"]],[1,4,["G3854"]],[4,5,["G2532"]],[5,7,["G1492"]],[7,8,["G3588"]],[8,9,["G5485"]],[9,11,["G2316"]],[11,13,["G5463"]],[13,14,["G2532"]],[14,15,["G3870"]],[15,17,["G3956"]],[17,20,["G4286"]],[20,22,["G2588"]],[22,26,["G4357"]],[26,27,["G3588"]],[27,28,["G2962"]]]},{"k":27331,"v":[[0,1,["G3754"]],[1,3,["G2258"]],[3,5,["G18"]],[5,6,["G435"]],[6,7,["G2532"]],[7,8,["G4134"]],[8,11,["G40"]],[11,12,["G4151"]],[12,13,["G2532"]],[13,15,["G4102"]],[15,16,["G2532"]],[16,17,["G2425"]],[17,18,["G3793"]],[18,20,["G4369"]],[20,22,["G3588"]],[22,23,["G2962"]]]},{"k":27332,"v":[[0,1,["G1161"]],[1,2,["G1831"]],[2,3,["G921"]],[3,4,["G1519"]],[4,5,["G5019"]],[5,8,["G327"]],[8,9,["G4569"]]]},{"k":27333,"v":[[0,1,["G2532"]],[1,5,["G2147"]],[5,6,["G846"]],[6,8,["G71"]],[8,9,["G846"]],[9,10,["G1519"]],[10,11,["G490"]],[11,12,["G1161"]],[12,16,["G1096"]],[16,19,["G3650"]],[19,20,["G1763"]],[20,21,["G846"]],[21,23,["G4863"]],[23,24,["G1722"]],[24,25,["G3588"]],[25,26,["G1577"]],[26,27,["G2532"]],[27,28,["G1321"]],[28,29,["G2425"]],[29,30,["G3793"]],[30,31,["G5037"]],[31,32,["G3588"]],[32,33,["G3101"]],[33,35,["G5537"]],[35,36,["G5546"]],[36,37,["G4412"]],[37,38,["G1722"]],[38,39,["G490"]]]},{"k":27334,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,3,["G5025"]],[3,4,["G2250"]],[4,5,["G2718"]],[5,6,["G4396"]],[6,7,["G575"]],[7,8,["G2414"]],[8,9,["G1519"]],[9,10,["G490"]]]},{"k":27335,"v":[[0,1,["G1161"]],[1,4,["G450"]],[4,5,["G1520"]],[5,6,["G1537"]],[6,7,["G846"]],[7,8,["G3686"]],[8,9,["G13"]],[9,11,["G4591"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G4151"]],[14,17,["G3195"]],[17,18,["G1510"]],[18,19,["G3173"]],[19,20,["G3042"]],[20,21,["G1909"]],[21,22,["G3650"]],[22,23,["G3588"]],[23,24,["G3625"]],[24,25,["G3748","(G2532)"]],[25,28,["G1096"]],[28,32,["G1909"]],[32,33,["G2804"]],[33,34,["G2541"]]]},{"k":27336,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,5,["G1538"]],[5,7,["G2531"]],[7,9,["G5100","G2141"]],[9,10,["G3724"]],[10,12,["G3992"]],[12,13,["G1519","G1248"]],[13,15,["G3588"]],[15,16,["G80"]],[16,18,["G2730"]],[18,19,["G1722"]],[19,20,["G2449"]]]},{"k":27337,"v":[[0,1,["G3739"]],[1,2,["G2532"]],[2,4,["G4160"]],[4,6,["G649"]],[6,8,["G4314"]],[8,9,["G3588"]],[9,10,["G4245"]],[10,11,["G1223"]],[11,13,["G5495"]],[13,15,["G921"]],[15,16,["G2532"]],[16,17,["G4569"]]]},{"k":27338,"v":[[0,1,["G1161"]],[1,2,["G2596"]],[2,3,["G1565"]],[3,4,["G2540"]],[4,5,["G2264"]],[5,6,["G3588"]],[6,7,["G935"]],[7,9,["G1911"]],[9,11,["G5495"]],[11,13,["G2559"]],[13,14,["G5100"]],[14,15,["G575"]],[15,16,["G3588"]],[16,17,["G1577"]]]},{"k":27339,"v":[[0,1,["G1161"]],[1,3,["G337"]],[3,4,["G2385"]],[4,5,["G3588"]],[5,6,["G80"]],[6,8,["G2491"]],[8,11,["G3162"]]]},{"k":27340,"v":[[0,1,["G2532"]],[1,4,["G1492"]],[4,5,["(G3754)"]],[5,6,["G2076","G701"]],[6,7,["G3588"]],[7,8,["G2453"]],[8,11,["G4369"]],[11,13,["G4815"]],[13,14,["G4074"]],[14,15,["G2532"]],[15,16,["G1161"]],[16,17,["G2258"]],[17,19,["G2250"]],[19,22,["G106"]]]},{"k":27341,"v":[[0,1,["G2532"]],[1,3,["(G3739)"]],[3,5,["G4084"]],[5,8,["G5087"]],[8,10,["G1519"]],[10,11,["G5438"]],[11,13,["G3860"]],[13,16,["G5064"]],[16,17,["G5069"]],[17,19,["G4757"]],[19,21,["G5442"]],[21,22,["G846"]],[22,23,["G1014"]],[23,24,["G3326"]],[24,25,["G3957"]],[25,29,["G321","G846"]],[29,31,["G3588"]],[31,32,["G2992"]]]},{"k":27342,"v":[[0,1,["G4074"]],[1,2,["G3767"]],[2,3,["(G3303)"]],[3,4,["G5083"]],[4,5,["G1722"]],[5,6,["G5438"]],[6,7,["G1161"]],[7,8,["G4335"]],[8,9,["G2258"]],[9,10,["G1096"]],[10,12,["G1618"]],[12,13,["G5259"]],[13,14,["G3588"]],[14,15,["G1577"]],[15,16,["G4314"]],[16,17,["G2316"]],[17,18,["G5228"]],[18,19,["G846"]]]},{"k":27343,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,3,["G2264"]],[3,4,["G3195"]],[4,8,["G4254","G846"]],[8,9,["G3588"]],[9,10,["G1565"]],[10,11,["G3571"]],[11,12,["G4074"]],[12,13,["G2258"]],[13,14,["G2837"]],[14,15,["G3342"]],[15,16,["G1417"]],[16,17,["G4757"]],[17,18,["G1210"]],[18,20,["G1417"]],[20,21,["G254"]],[21,22,["G5037"]],[22,24,["G5441"]],[24,25,["G4253"]],[25,26,["G3588"]],[26,27,["G2374"]],[27,28,["G5083"]],[28,29,["G3588"]],[29,30,["G5438"]]]},{"k":27344,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G32"]],[4,7,["G2962"]],[7,9,["G2186"]],[9,11,["G2532"]],[11,13,["G5457"]],[13,14,["G2989"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G3612"]],[17,18,["G1161"]],[18,20,["G3960"]],[20,21,["G4074"]],[21,23,["G3588"]],[23,24,["G4125"]],[24,28,["G1453","G846"]],[28,29,["G3004"]],[29,31,["G450"]],[31,32,["G1722","G5034"]],[32,33,["G2532"]],[33,34,["G846"]],[34,35,["G254"]],[35,37,["G1601"]],[37,38,["G1537"]],[38,40,["G5495"]]]},{"k":27345,"v":[[0,1,["G5037"]],[1,2,["G3588"]],[2,3,["G32"]],[3,4,["G2036"]],[4,5,["G4314"]],[5,6,["G846"]],[6,8,["G4024"]],[8,9,["G2532"]],[9,10,["G5265"]],[10,12,["G4675"]],[12,13,["G4547"]],[13,14,["G1161"]],[14,15,["G3779"]],[15,17,["G4160"]],[17,18,["G2532"]],[18,20,["G3004"]],[20,22,["G846"]],[22,26,["G4016","G4675","G2440"]],[26,28,["G2532"]],[28,29,["G190"]],[29,30,["G3427"]]]},{"k":27346,"v":[[0,1,["G2532"]],[1,4,["G1831"]],[4,6,["G190"]],[6,7,["G846"]],[7,8,["G2532"]],[8,9,["G1492"]],[9,10,["G3756"]],[10,11,["G3754"]],[11,13,["G2076"]],[13,14,["G227"]],[14,17,["G1096"]],[17,18,["G1223"]],[18,19,["G3588"]],[19,20,["G32"]],[20,21,["G1161"]],[21,22,["G1380"]],[22,24,["G991"]],[24,26,["G3705"]]]},{"k":27347,"v":[[0,1,["G1161"]],[1,4,["G1330"]],[4,6,["G4413"]],[6,7,["G2532"]],[7,9,["G1208"]],[9,10,["G5438"]],[10,12,["G2064"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G4603"]],[15,16,["G4439"]],[16,18,["G5342"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G4172"]],[21,22,["G3748"]],[22,23,["G455"]],[23,25,["G846"]],[25,29,["G844"]],[29,30,["G2532"]],[30,33,["G1831"]],[33,36,["G4281"]],[36,38,["G3391"]],[38,39,["G4505"]],[39,40,["G2532"]],[40,41,["G2112"]],[41,42,["G3588"]],[42,43,["G32"]],[43,44,["G868"]],[44,45,["G575"]],[45,46,["G846"]]]},{"k":27348,"v":[[0,1,["G2532"]],[1,3,["G4074"]],[3,5,["G1096"]],[5,6,["G1722"]],[6,7,["G1438"]],[7,9,["G2036"]],[9,10,["G3568"]],[10,12,["G1492"]],[12,15,["G230"]],[15,16,["G3754"]],[16,18,["G2962"]],[18,20,["G1821"]],[20,21,["G848"]],[21,22,["G32"]],[22,23,["G2532"]],[23,25,["G1807"]],[25,26,["G3165"]],[26,28,["G1537"]],[28,30,["G5495"]],[30,32,["G2264"]],[32,33,["G2532"]],[33,35,["G3956"]],[35,36,["G3588"]],[36,37,["G4329"]],[37,39,["G3588"]],[39,40,["G2992"]],[40,42,["G3588"]],[42,43,["G2453"]]]},{"k":27349,"v":[[0,1,["G5037"]],[1,5,["G4894"]],[5,9,["G2064"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G3614"]],[12,14,["G3137"]],[14,15,["G3588"]],[15,16,["G3384"]],[16,18,["G2491"]],[18,20,["G1941"]],[20,22,["G3138"]],[22,23,["G3757"]],[23,24,["G2425"]],[24,25,["G2258"]],[25,27,["G4867","(G2532)"]],[27,28,["G4336"]]]},{"k":27350,"v":[[0,1,["G1161"]],[1,3,["G4074"]],[3,4,["G2925"]],[4,6,["G3588"]],[6,7,["G2374"]],[7,9,["G3588"]],[9,10,["G4440"]],[10,12,["G3814"]],[12,13,["G4334"]],[13,15,["G5219"]],[15,16,["G3686"]],[16,17,["G4498"]]]},{"k":27351,"v":[[0,1,["G2532"]],[1,4,["G1921"]],[4,5,["G4074"]],[5,6,["G5456"]],[6,8,["G455"]],[8,9,["G3756"]],[9,10,["G3588"]],[10,11,["G4440"]],[11,12,["G575"]],[12,13,["G5479"]],[13,14,["G1161"]],[14,16,["G1532"]],[16,18,["G518"]],[18,20,["G4074"]],[20,21,["G2476"]],[21,22,["G4253"]],[22,23,["G3588"]],[23,24,["G4440"]]]},{"k":27352,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,8,["G3105"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,12,["G1340"]],[12,15,["G2192"]],[15,17,["G3779"]],[17,18,["G1161"]],[18,19,["G3004"]],[19,20,["G3588"]],[20,22,["G2076"]],[22,23,["G846"]],[23,24,["G32"]]]},{"k":27353,"v":[[0,1,["G1161"]],[1,2,["G4074"]],[2,3,["G1961"]],[3,4,["G2925"]],[4,5,["G1161"]],[5,9,["G455"]],[9,13,["G1492"]],[13,14,["G846"]],[14,16,["(G2532)"]],[16,17,["G1839"]]]},{"k":27354,"v":[[0,1,["G1161"]],[1,3,["G2678"]],[3,5,["G846"]],[5,7,["G3588"]],[7,8,["G5495"]],[8,12,["G4601"]],[12,13,["G1334"]],[13,15,["G846"]],[15,16,["G4459"]],[16,17,["G3588"]],[17,18,["G2962"]],[18,20,["G1806"]],[20,21,["G846"]],[21,23,["G1537"]],[23,24,["G3588"]],[24,25,["G5438"]],[25,26,["G1161"]],[26,28,["G2036"]],[28,30,["G518"]],[30,32,["G5023"]],[32,34,["G2385"]],[34,35,["G2532"]],[35,37,["G3588"]],[37,38,["G80"]],[38,39,["G2532"]],[39,41,["G1831"]],[41,43,["G4198"]],[43,44,["G1519"]],[44,45,["G2087"]],[45,46,["G5117"]]]},{"k":27355,"v":[[0,1,["G1161"]],[1,6,["G1096"]],[6,7,["G2250"]],[7,9,["G2258"]],[9,10,["G3756"]],[10,11,["G3641"]],[11,12,["G5017"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G4757"]],[15,16,["G5101"]],[16,17,["(G686)"]],[17,18,["G1096"]],[18,20,["G4074"]]]},{"k":27356,"v":[[0,1,["G1161"]],[1,3,["G2264"]],[3,6,["G1934"]],[6,7,["G846"]],[7,8,["G2532"]],[8,9,["G2147"]],[9,11,["G3361"]],[11,13,["G350"]],[13,14,["G3588"]],[14,15,["G5441"]],[15,17,["G2753"]],[17,24,["G520"]],[24,25,["G2532"]],[25,28,["G2718"]],[28,29,["G575"]],[29,30,["G2449"]],[30,31,["G1519"]],[31,32,["G2542"]],[32,35,["G1304"]]]},{"k":27357,"v":[[0,1,["G1161"]],[1,2,["G2264"]],[2,3,["G2258"]],[3,5,["G2371"]],[5,9,["G5183"]],[9,10,["G2532"]],[10,11,["G4606"]],[11,12,["G1161"]],[12,14,["G3918"]],[14,17,["G3661"]],[17,18,["G4314"]],[18,19,["G846"]],[19,20,["G2532"]],[20,28,["G3982","G986","G3588","G935","G1909","G2846"]],[28,29,["G154"]],[29,30,["G1515"]],[30,32,["G846"]],[32,33,["G5561"]],[33,35,["G5142"]],[35,36,["G575"]],[36,37,["G3588"]],[37,38,["G937"]],[38,39,[]]]},{"k":27358,"v":[[0,1,["G1161"]],[1,4,["G5002"]],[4,5,["G2250"]],[5,6,["G2264"]],[6,7,["G1746"]],[7,9,["G937"]],[9,10,["G2066","(G2532)"]],[10,11,["G2523"]],[11,12,["G1909"]],[12,14,["G968"]],[14,18,["G1215"]],[18,19,["G4314"]],[19,20,["G846"]]]},{"k":27359,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1218"]],[3,6,["G2019"]],[6,11,["G5456"]],[11,14,["G2316"]],[14,15,["G2532"]],[15,16,["G3756"]],[16,19,["G444"]]]},{"k":27360,"v":[[0,1,["G1161"]],[1,2,["G3916"]],[2,4,["G32"]],[4,7,["G2962"]],[7,8,["G3960"]],[8,9,["G846"]],[9,10,["G473","G3739"]],[10,12,["G1325"]],[12,13,["G3756"]],[13,14,["G2316"]],[14,15,["G3588"]],[15,16,["G1391"]],[16,17,["G2532"]],[17,19,["G1096"]],[19,22,["G4662"]],[22,27,["G1634"]]]},{"k":27361,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,5,["G2316"]],[5,6,["G837"]],[6,7,["G2532"]],[7,8,["G4129"]]]},{"k":27362,"v":[[0,1,["G1161"]],[1,2,["G921"]],[2,3,["G2532"]],[3,4,["G4569"]],[4,5,["G5290"]],[5,6,["G1537"]],[6,7,["G2419"]],[7,11,["G4137"]],[11,13,["G1248"]],[13,14,["G2532"]],[14,16,["G4838"]],[16,18,["G2491"]],[18,21,["G1941"]],[21,22,["G3138"]]]},{"k":27363,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G2596"]],[4,5,["G3588"]],[5,6,["G1577"]],[6,8,["G5607"]],[8,9,["G1722"]],[9,10,["G490"]],[10,11,["G5100"]],[11,12,["G4396"]],[12,13,["G2532"]],[13,14,["G1320"]],[14,15,["(G5037","G3739)"]],[15,16,["G921"]],[16,17,["G2532"]],[17,18,["G4826"]],[18,21,["G2564"]],[21,22,["G3526"]],[22,23,["G2532"]],[23,24,["G3066"]],[24,26,["G2956"]],[26,27,["G5037"]],[27,28,["G3127"]],[28,34,["G4939"]],[34,35,["G2264"]],[35,36,["G3588"]],[36,37,["G5076"]],[37,38,["G2532"]],[38,39,["G4569"]]]},{"k":27364,"v":[[0,1,["(G1161)"]],[1,2,["G846"]],[2,3,["G3008"]],[3,5,["G3588"]],[5,6,["G2962"]],[6,7,["G2532"]],[7,8,["G3522"]],[8,9,["G3588"]],[9,10,["G40"]],[10,11,["G4151"]],[11,12,["G2036"]],[12,13,["G873","(G1211)"]],[13,14,["G3427","(G5037)"]],[14,15,["G921"]],[15,16,["G2532"]],[16,17,["G4569"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G2041"]],[20,21,["G3739"]],[21,24,["G4341"]],[24,25,["G846"]]]},{"k":27365,"v":[[0,2,["G5119"]],[2,5,["G3522"]],[5,6,["G2532"]],[6,7,["G4336"]],[7,8,["G2532"]],[8,9,["G2007"]],[9,11,["G5495"]],[11,13,["G846"]],[13,17,["G630"]]]},{"k":27366,"v":[[0,1,["G3767"]],[1,2,["G3778"]],[2,3,["(G3303)"]],[3,5,["G1599"]],[5,6,["G5259"]],[6,7,["G3588"]],[7,8,["G40"]],[8,9,["G4151"]],[9,10,["G2718"]],[10,11,["G1519"]],[11,12,["G4581"]],[12,13,["G5037"]],[13,15,["G1564"]],[15,17,["G636"]],[17,18,["G1519"]],[18,19,["G2954"]]]},{"k":27367,"v":[[0,1,["G2532"]],[1,4,["G1096"]],[4,5,["G1722"]],[5,6,["G4529"]],[6,8,["G2605"]],[8,9,["G3588"]],[9,10,["G3056"]],[10,12,["G2316"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G4864"]],[15,17,["G3588"]],[17,18,["G2453"]],[18,19,["G1161"]],[19,21,["G2192"]],[21,22,["G2532"]],[22,23,["G2491"]],[23,26,["G5257"]]]},{"k":27368,"v":[[0,1,["G1161"]],[1,6,["G1330"]],[6,7,["G3588"]],[7,8,["G3520"]],[8,9,["G891"]],[9,10,["G3974"]],[10,12,["G2147"]],[12,14,["G5100"]],[14,15,["G3097"]],[15,18,["G5578"]],[18,20,["G2453"]],[20,21,["G3739"]],[21,22,["G3686"]],[22,24,["G919"]]]},{"k":27369,"v":[[0,1,["G3739"]],[1,2,["G2258"]],[2,3,["G4862"]],[3,4,["G3588"]],[4,8,["G446"]],[8,9,["G4588"]],[9,10,["G3972"]],[10,12,["G4908"]],[12,13,["G435"]],[13,14,["G3778"]],[14,16,["G4341"]],[16,17,["G921"]],[17,18,["G2532"]],[18,19,["G4569"]],[19,21,["G1934"]],[21,23,["G191"]],[23,24,["G3588"]],[24,25,["G3056"]],[25,27,["G2316"]]]},{"k":27370,"v":[[0,1,["G1161"]],[1,2,["G1681"]],[2,3,["G3588"]],[3,4,["G3097"]],[4,5,["G1063"]],[5,6,["G3779"]],[6,11,["G3177","G846","G3686"]],[11,12,["G436"]],[12,13,["G846"]],[13,14,["G2212"]],[14,17,["G1294"]],[17,18,["G3588"]],[18,19,["G446"]],[19,20,["G575"]],[20,21,["G3588"]],[21,22,["G4102"]]]},{"k":27371,"v":[[0,1,["G1161"]],[1,2,["G4569"]],[2,3,["G3588"]],[3,4,["G2532"]],[4,7,["G3972"]],[7,8,["G4130"]],[8,11,["G40"]],[11,12,["G4151","(G2532)"]],[12,15,["G816"]],[15,16,["G1519"]],[16,17,["G846"]]]},{"k":27372,"v":[[0,2,["G2036"]],[2,3,["G5599"]],[3,4,["G4134"]],[4,6,["G3956"]],[6,7,["G1388"]],[7,8,["G2532"]],[8,9,["G3956"]],[9,10,["G4468"]],[10,12,["G5207"]],[12,15,["G1228"]],[15,17,["G2190"]],[17,19,["G3956"]],[19,20,["G1343"]],[20,23,["G3756"]],[23,24,["G3973"]],[24,26,["G1294"]],[26,27,["G3588"]],[27,28,["G2117"]],[28,29,["G3598"]],[29,32,["G2962"]]]},{"k":27373,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,3,["G2400"]],[3,5,["G5495"]],[5,7,["G3588"]],[7,8,["G2962"]],[8,10,["G1909"]],[10,11,["G4571"]],[11,12,["G2532"]],[12,15,["G2071"]],[15,16,["G5185"]],[16,17,["G3361"]],[17,18,["G991"]],[18,19,["G3588"]],[19,20,["G2246"]],[20,21,["G891"]],[21,23,["G2540"]],[23,24,["G1161"]],[24,25,["G3916"]],[25,27,["G1968"]],[27,28,["G1909"]],[28,29,["G846"]],[29,31,["G887"]],[31,32,["G2532"]],[32,34,["G4655"]],[34,35,["G2532"]],[35,38,["G4013"]],[38,39,["G2212"]],[39,46,["G5497"]]]},{"k":27374,"v":[[0,1,["G5119"]],[1,2,["G3588"]],[2,3,["G446"]],[3,6,["G1492"]],[6,9,["G1096"]],[9,10,["G4100"]],[10,12,["G1605"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G1322"]],[15,17,["G3588"]],[17,18,["G2962"]]]},{"k":27375,"v":[[0,1,["G1161"]],[1,3,["G3972"]],[3,6,["G4012"]],[6,7,["G321"]],[7,8,["G575"]],[8,9,["G3974"]],[9,11,["G2064"]],[11,12,["G1519"]],[12,13,["G4011"]],[13,15,["G3828"]],[15,16,["G1161"]],[16,17,["G2491"]],[17,18,["G672"]],[18,19,["G575"]],[19,20,["G846"]],[20,21,["G5290"]],[21,22,["G1519"]],[22,23,["G2414"]]]},{"k":27376,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G1330"]],[4,5,["G575"]],[5,6,["G4011"]],[6,8,["G3854"]],[8,9,["G1519"]],[9,10,["G490"]],[10,12,["G4099"]],[12,13,["G2532"]],[13,14,["G1525"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G4864"]],[17,19,["G3588"]],[19,20,["G4521"]],[20,21,["G2250"]],[21,24,["G2523"]]]},{"k":27377,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,3,["G3588"]],[3,4,["G320"]],[4,6,["G3588"]],[6,7,["G3551"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G4396"]],[10,11,["G3588"]],[11,15,["G752"]],[15,16,["G649"]],[16,17,["G4314"]],[17,18,["G846"]],[18,19,["G3004"]],[19,21,["G435"]],[21,23,["G80"]],[23,24,["G1487"]],[24,26,["G2076","G1722","G5213"]],[26,28,["G3056"]],[28,30,["G3874"]],[30,31,["G4314"]],[31,32,["G3588"]],[32,33,["G2992"]],[33,35,["G3004"]]]},{"k":27378,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,4,["G450"]],[4,5,["G2532"]],[5,6,["G2678"]],[6,9,["G5495"]],[9,10,["G2036"]],[10,11,["G435"]],[11,13,["G2475"]],[13,14,["G2532"]],[14,17,["G5399"]],[17,18,["G2316"]],[18,20,["G191"]]]},{"k":27379,"v":[[0,1,["G3588"]],[1,2,["G2316"]],[2,4,["G5127"]],[4,5,["G2992"]],[5,7,["G2474"]],[7,8,["G1586"]],[8,9,["G2257"]],[9,10,["G3962"]],[10,11,["G2532"]],[11,12,["G5312"]],[12,13,["G3588"]],[13,14,["G2992"]],[14,15,["G1722"]],[15,19,["G3940"]],[19,20,["G1722"]],[20,22,["G1093"]],[22,24,["G125"]],[24,25,["G2532"]],[25,26,["G3326"]],[26,28,["G5308"]],[28,29,["G1023"]],[29,30,["G1806"]],[30,32,["G846"]],[32,34,["G1537"]],[34,35,["G846"]]]},{"k":27380,"v":[[0,1,["G2532"]],[1,2,["G5613"]],[2,4,["G5550"]],[4,7,["G5063"]],[7,11,["G5159","G846"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G2048"]]]},{"k":27381,"v":[[0,1,["G2532"]],[1,5,["G2507"]],[5,6,["G2033"]],[6,7,["G1484"]],[7,8,["G1722"]],[8,10,["G1093"]],[10,12,["G5477"]],[12,20,["G2624","G846","G1093","G846"]]]},{"k":27382,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,3,["G5023"]],[3,5,["G1325"]],[5,8,["G2923"]],[8,12,["G5613"]],[12,14,["G5071"]],[14,15,["G2532"]],[15,16,["G4004"]],[16,17,["G2094"]],[17,18,["G2193"]],[18,19,["G4545"]],[19,20,["G3588"]],[20,21,["G4396"]]]},{"k":27383,"v":[[0,2,["G2547"]],[2,4,["G154"]],[4,6,["G935"]],[6,7,["G2532"]],[7,8,["G2316"]],[8,9,["G1325"]],[9,11,["G846"]],[11,12,["G4549"]],[12,14,["G5207"]],[14,16,["G2797"]],[16,18,["G435"]],[18,19,["G1537"]],[19,21,["G5443"]],[21,23,["G958"]],[23,28,["G5062"]],[28,29,["G2094"]]]},{"k":27384,"v":[[0,1,["G2532"]],[1,5,["G3179"]],[5,6,["G846"]],[6,9,["G1453"]],[9,11,["G846"]],[11,12,["G1138"]],[12,16,["G1519","G935"]],[16,18,["G3739"]],[18,19,["G2532"]],[19,22,["G3140"]],[22,24,["G2036"]],[24,27,["G2147"]],[27,28,["G1138"]],[28,29,["G3588"]],[29,32,["G2421"]],[32,34,["G435"]],[34,35,["G2596"]],[35,37,["G3450"]],[37,38,["G2588"]],[38,39,["G3739"]],[39,41,["G4160"]],[41,42,["G3956"]],[42,43,["G3450"]],[43,44,["G2307"]]]},{"k":27385,"v":[[0,1,["G575"]],[1,3,["G5127"]],[3,4,["G4690"]],[4,6,["G2316"]],[6,7,["G2596"]],[7,10,["G1860"]],[10,11,["G1453"]],[11,13,["G2474"]],[13,15,["G4990"]],[15,16,["G2424"]]]},{"k":27386,"v":[[0,2,["G2491"]],[2,5,["G4296"]],[5,6,["G4253"]],[6,7,["G846"]],[7,8,["G1529","G4383"]],[8,10,["G908"]],[10,12,["G3341"]],[12,14,["G3956"]],[14,15,["G3588"]],[15,16,["G2992"]],[16,18,["G2474"]]]},{"k":27387,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G2491"]],[3,4,["G4137"]],[4,6,["G1408"]],[6,8,["G3004"]],[8,9,["G5101"]],[9,10,["G5282"]],[10,13,["G3165"]],[13,14,["G1511"]],[14,15,["G1473"]],[15,16,["G1510"]],[16,17,["G3756"]],[17,19,["G235"]],[19,20,["G2400"]],[20,22,["G2064"]],[22,24,["G3326"]],[24,25,["G1691"]],[25,26,["G3739"]],[26,27,["G5266"]],[27,30,["G4228"]],[30,32,["G1510"]],[32,33,["G3756"]],[33,34,["G514"]],[34,36,["G3089"]]]},{"k":27388,"v":[[0,1,["G435"]],[1,3,["G80"]],[3,4,["G5207"]],[4,7,["G1085"]],[7,9,["G11"]],[9,10,["G2532"]],[10,12,["G1722"]],[12,13,["G5213"]],[13,14,["G5399"]],[14,15,["G2316"]],[15,17,["G5213"]],[17,19,["G3588"]],[19,20,["G3056"]],[20,22,["G5026"]],[22,23,["G4991"]],[23,24,["G649"]]]},{"k":27389,"v":[[0,1,["G1063"]],[1,4,["G2730"]],[4,5,["G1722"]],[5,6,["G2419"]],[6,7,["G2532"]],[7,8,["G846"]],[8,9,["G758"]],[9,14,["G50","G5126"]],[14,15,["G2532"]],[15,17,["G3588"]],[17,18,["G5456"]],[18,20,["G3588"]],[20,21,["G4396"]],[21,24,["G314"]],[24,25,["G2596","G3956"]],[25,27,["G4521"]],[27,30,["G4137"]],[30,33,["G2919"]],[33,34,[]]]},{"k":27390,"v":[[0,1,["G2532"]],[1,4,["G2147"]],[4,5,["G3367"]],[5,6,["G156"]],[6,8,["G2288"]],[8,12,["G154"]],[12,14,["G4091"]],[14,16,["G846"]],[16,19,["G337"]]]},{"k":27391,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,5,["G5055"]],[5,6,["G537"]],[6,9,["G1125"]],[9,10,["G4012"]],[10,11,["G846"]],[11,15,["G2507"]],[15,16,["G575"]],[16,17,["G3588"]],[17,18,["G3586"]],[18,20,["G5087"]],[20,22,["G1519"]],[22,24,["G3419"]]]},{"k":27392,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,3,["G1453"]],[3,4,["G846"]],[4,5,["G1537"]],[5,7,["G3498"]]]},{"k":27393,"v":[[0,2,["G3739"]],[2,4,["G3700"]],[4,5,["G4119"]],[5,6,["G2250"]],[6,12,["G4872"]],[12,13,["G846"]],[13,14,["G575"]],[14,15,["G1056"]],[15,16,["G1519"]],[16,17,["G2419"]],[17,18,["G3748"]],[18,19,["G1526"]],[19,20,["G846"]],[20,21,["G3144"]],[21,22,["G4314"]],[22,23,["G3588"]],[23,24,["G2992"]]]},{"k":27394,"v":[[0,1,["G2532"]],[1,2,["G2249"]],[2,7,["G2097","G5209"]],[7,10,["G3588"]],[10,11,["G1860"]],[11,14,["G1096"]],[14,15,["G4314"]],[15,16,["G3588"]],[16,17,["G3962"]]]},{"k":27395,"v":[[0,0,["(G3754)"]],[0,1,["G2316"]],[1,3,["G1603"]],[3,5,["G5026"]],[5,7,["G2254"]],[7,8,["G846"]],[8,9,["G5043"]],[9,17,["G450","G2424"]],[17,18,["G5613"]],[18,21,["G2532"]],[21,22,["G1125"]],[22,23,["G1722"]],[23,24,["G3588"]],[24,25,["G1208"]],[25,26,["G5568"]],[26,27,["G4771"]],[27,28,["G1488"]],[28,29,["G3450"]],[29,30,["G5207"]],[30,32,["G4594"]],[32,34,["G1473"]],[34,35,["G1080"]],[35,36,["G4571"]]]},{"k":27396,"v":[[0,1,["G1161"]],[1,4,["G3754"]],[4,8,["G450","G846"]],[8,9,["G1537"]],[9,11,["G3498"]],[11,14,["G3371"]],[14,15,["(G3195)"]],[15,16,["G5290"]],[16,17,["G1519"]],[17,18,["G1312"]],[18,20,["G2046"]],[20,23,["G3779"]],[23,26,["G1325"]],[26,27,["G5213"]],[27,28,["G3588"]],[28,29,["G4103"]],[29,30,["G3741"]],[30,32,["G1138"]]]},{"k":27397,"v":[[0,1,["G1352"]],[1,3,["G3004"]],[3,4,["G2532"]],[4,5,["G1722"]],[5,6,["G2087"]],[6,10,["G3756"]],[10,11,["G1325"]],[11,12,["G4675"]],[12,14,["G3741"]],[14,16,["G1492"]],[16,17,["G1312"]]]},{"k":27398,"v":[[0,1,["G1063"]],[1,2,["G1138"]],[2,4,["(G3303)"]],[4,6,["G5256"]],[6,8,["G2398"]],[8,9,["G1074"]],[9,11,["G3588"]],[11,12,["G1012"]],[12,14,["G2316"]],[14,17,["G2837"]],[17,18,["G2532"]],[18,20,["G4369"]],[20,21,["G4314"]],[21,22,["G848"]],[22,23,["G3962"]],[23,24,["G2532"]],[24,25,["G1492"]],[25,26,["G1312"]]]},{"k":27399,"v":[[0,1,["G1161"]],[1,3,["G3739"]],[3,4,["G2316"]],[4,6,["G1453"]],[6,7,["G1492"]],[7,8,["G3756"]],[8,9,["G1312"]]]},{"k":27400,"v":[[0,1,["G2077"]],[1,3,["G1110"]],[3,5,["G5213"]],[5,6,["G3767"]],[6,7,["G435"]],[7,9,["G80"]],[9,10,["G3754"]],[10,11,["G1223"]],[11,13,["G5127"]],[13,15,["G2605"]],[15,17,["G5213"]],[17,19,["G859"]],[19,21,["G266"]]]},{"k":27401,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G5129"]],[3,4,["G3956"]],[4,6,["G4100"]],[6,8,["G1344"]],[8,9,["G575"]],[9,11,["G3956"]],[11,13,["G3739"]],[13,15,["G1410"]],[15,16,["G3756"]],[16,18,["G1344"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G3551"]],[21,23,["G3475"]]]},{"k":27402,"v":[[0,1,["G991"]],[1,2,["G3767"]],[2,3,["G3361"]],[3,5,["G1904"]],[5,6,["G1909"]],[6,7,["G5209"]],[7,11,["G2046"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G4396"]]]},{"k":27403,"v":[[0,1,["G1492"]],[1,3,["G2707"]],[3,4,["G2532"]],[4,5,["G2296"]],[5,6,["G2532"]],[6,7,["G853"]],[7,8,["G3754"]],[8,9,["G1473"]],[9,10,["G2038"]],[10,12,["G2041"]],[12,13,["G1722"]],[13,14,["G5216"]],[14,15,["G2250"]],[15,17,["G2041"]],[17,18,["G3739"]],[18,23,["G3364"]],[23,24,["G4100"]],[24,25,["G1437"]],[25,27,["G5100"]],[27,28,["G1555"]],[28,31,["G5213"]]]},{"k":27404,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G2453"]],[4,6,["G1826"]],[6,8,["G1537"]],[8,9,["G3588"]],[9,10,["G4864"]],[10,11,["G3588"]],[11,12,["G1484"]],[12,13,["G3870"]],[13,15,["G5023"]],[15,16,["G4487"]],[16,19,["G2980"]],[19,21,["G848"]],[21,22,["G3588"]],[22,23,["G3342"]],[23,24,["G4521"]]]},{"k":27405,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G4864"]],[4,7,["G3089"]],[7,8,["G4183"]],[8,10,["G3588"]],[10,11,["G2453"]],[11,12,["G2532"]],[12,13,["G4576"]],[13,14,["G4339"]],[14,15,["G190"]],[15,16,["G3972"]],[16,17,["G2532"]],[17,18,["G921"]],[18,19,["G3748"]],[19,21,["G4354"]],[21,22,["G846"]],[22,23,["G3982"]],[23,24,["G846"]],[24,26,["G1961"]],[26,28,["G3588"]],[28,29,["G5485"]],[29,31,["G2316"]]]},{"k":27406,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2064"]],[3,5,["G4521"]],[5,11,["G4863","G4975","G3588","G3956","G4172"]],[11,13,["G191"]],[13,14,["G3588"]],[14,15,["G3056"]],[15,17,["G2316"]]]},{"k":27407,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G2453"]],[4,5,["G1492"]],[5,6,["G3588"]],[6,7,["G3793"]],[7,10,["G4130"]],[10,12,["G2205"]],[12,13,["G2532"]],[13,15,["G483"]],[15,20,["G3004"]],[20,21,["G5259"]],[21,22,["G3972"]],[22,23,["G483"]],[23,24,["G2532"]],[24,25,["G987"]]]},{"k":27408,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,3,["G2532"]],[3,4,["G921"]],[4,6,["G3955"]],[6,8,["G2036"]],[8,10,["G2258"]],[10,11,["G316"]],[11,13,["G3588"]],[13,14,["G3056"]],[14,16,["G2316"]],[16,18,["G4412"]],[18,21,["G2980"]],[21,23,["G5213"]],[23,24,["G1161"]],[24,25,["G1894"]],[25,30,["G683","G846"]],[30,31,["G2532"]],[31,32,["G2919"]],[32,33,["G1438"]],[33,34,["G3756","G514"]],[34,36,["G166"]],[36,37,["G2222"]],[37,38,["G2400"]],[38,40,["G4762"]],[40,41,["G1519"]],[41,42,["G3588"]],[42,43,["G1484"]]]},{"k":27409,"v":[[0,1,["G1063"]],[1,2,["G3779"]],[2,4,["G3588"]],[4,5,["G2962"]],[5,6,["G1781"]],[6,7,["G2254"]],[7,11,["G5087"]],[11,12,["G4571"]],[12,16,["G1519","G5457"]],[16,19,["G1484"]],[19,21,["G4571"]],[21,23,["G1511"]],[23,24,["G1519"]],[24,25,["G4991"]],[25,26,["G2193"]],[26,28,["G2078"]],[28,30,["G3588"]],[30,31,["G1093"]]]},{"k":27410,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1484"]],[4,5,["G191"]],[5,9,["G5463"]],[9,10,["G2532"]],[10,11,["G1392"]],[11,12,["G3588"]],[12,13,["G3056"]],[13,15,["G3588"]],[15,16,["G2962"]],[16,17,["G2532"]],[17,20,["G3745"]],[20,21,["G2258"]],[21,22,["G5021"]],[22,23,["G1519"]],[23,24,["G166"]],[24,25,["G2222"]],[25,26,["G4100"]]]},{"k":27411,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,5,["G3588"]],[5,6,["G2962"]],[6,8,["G1308"]],[8,9,["G1223"]],[9,10,["G3650"]],[10,11,["G3588"]],[11,12,["G5561"]]]},{"k":27412,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,5,["G3951"]],[5,6,["G3588"]],[6,7,["G4576"]],[7,8,["G2532"]],[8,9,["G2158"]],[9,10,["G1135"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,14,["G4413"]],[14,16,["G3588"]],[16,17,["G4172"]],[17,18,["G2532"]],[18,19,["G1892"]],[19,20,["G1375"]],[20,21,["G1909"]],[21,22,["G3972"]],[22,23,["G2532"]],[23,24,["G921"]],[24,25,["G2532"]],[25,26,["G1544"]],[26,27,["G846"]],[27,29,["G575"]],[29,30,["G848"]],[30,31,["G3725"]]]},{"k":27413,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G1621"]],[4,5,["G3588"]],[5,6,["G2868"]],[6,8,["G848"]],[8,9,["G4228"]],[9,10,["G1909"]],[10,11,["G846"]],[11,13,["G2064"]],[13,14,["G1519"]],[14,15,["G2430"]]]},{"k":27414,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3101"]],[3,5,["G4137"]],[5,7,["G5479"]],[7,8,["G2532"]],[8,11,["G40"]],[11,12,["G4151"]]]},{"k":27415,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,6,["G1722"]],[6,7,["G2430"]],[7,9,["G846"]],[9,10,["G1525"]],[10,12,["G2596","G846"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G4864"]],[15,17,["G3588"]],[17,18,["G2453"]],[18,19,["G2532"]],[19,20,["G3779"]],[20,21,["G2980"]],[21,22,["G5620"]],[22,24,["G4183"]],[24,25,["G4128"]],[25,26,["G5037"]],[26,29,["G2453"]],[29,30,["G2532"]],[30,34,["G1672"]],[34,35,["G4100"]]]},{"k":27416,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G544"]],[3,4,["G2453"]],[4,6,["G1892"]],[6,7,["G3588"]],[7,8,["G1484"]],[8,9,["G2532"]],[9,14,["G2559","G5590"]],[14,15,["G2596"]],[15,16,["G3588"]],[16,17,["G80"]]]},{"k":27417,"v":[[0,1,["G2425"]],[1,2,["G5550","(G3303)"]],[2,3,["G3767"]],[3,4,["G1304"]],[4,7,["G3955"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,10,["G2962"]],[10,11,["G3588"]],[11,13,["G3140"]],[13,15,["G3588"]],[15,16,["G3056"]],[16,18,["G848"]],[18,19,["G5485"]],[19,20,["G2532"]],[20,21,["G1325"]],[21,22,["G4592"]],[22,23,["G2532"]],[23,24,["G5059"]],[24,27,["G1096"]],[27,28,["G1223"]],[28,29,["G846"]],[29,30,["G5495"]]]},{"k":27418,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4128"]],[3,5,["G3588"]],[5,6,["G4172"]],[6,8,["G4977"]],[8,9,["G2532"]],[9,10,["G3588","G3303"]],[10,11,["G2258"]],[11,12,["G4862"]],[12,13,["G3588"]],[13,14,["G2453"]],[14,15,["G1161"]],[15,16,["G3588"]],[16,17,["G4862"]],[17,18,["G3588"]],[18,19,["G652"]]]},{"k":27419,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,4,["G1096"]],[4,6,["G3730"]],[6,8,["G5037"]],[8,10,["G3588"]],[10,11,["G1484"]],[11,12,["G2532"]],[12,16,["G2453"]],[16,17,["G4862"]],[17,18,["G846"]],[18,19,["G758"]],[19,23,["G5195"]],[23,24,["G2532"]],[24,26,["G3036"]],[26,27,["G846"]]]},{"k":27420,"v":[[0,4,["G4894"]],[4,7,["G2703"]],[7,8,["G1519"]],[8,9,["G3082"]],[9,10,["G2532"]],[10,11,["G1191"]],[11,12,["G4172"]],[12,14,["G3071"]],[14,15,["G2532"]],[15,17,["G3588"]],[17,22,["G4066"]]]},{"k":27421,"v":[[0,2,["G2546"]],[2,6,["G2258","G2097"]]]},{"k":27422,"v":[[0,1,["G2532"]],[1,3,["G2521"]],[3,5,["G5100"]],[5,6,["G435"]],[6,7,["G1722"]],[7,8,["G3082"]],[8,9,["G102"]],[9,12,["G4228"]],[12,13,["G5225"]],[13,15,["G5560"]],[15,16,["G1537"]],[16,17,["G848"]],[17,18,["G3384"]],[18,19,["G2836"]],[19,20,["G3739"]],[20,21,["G3763"]],[21,23,["G4043"]]]},{"k":27423,"v":[[0,2,["G3778"]],[2,3,["G191"]],[3,4,["G3972"]],[4,5,["G2980"]],[5,6,["G3739"]],[6,8,["G816"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G1492"]],[11,12,["G3754"]],[12,14,["G2192"]],[14,15,["G4102"]],[15,18,["G4982"]]]},{"k":27424,"v":[[0,1,["G2036"]],[1,4,["G3173"]],[4,5,["G5456"]],[5,6,["G450"]],[6,7,["G3717"]],[7,8,["G1909"]],[8,9,["G4675"]],[9,10,["G4228"]],[10,13,["G242"]],[13,14,["G2532"]],[14,15,["G4043"]]]},{"k":27425,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G3793"]],[4,5,["G1492"]],[5,6,["G3739"]],[6,7,["G3972"]],[7,9,["G4160"]],[9,12,["G1869"]],[12,13,["G848"]],[13,14,["G5456"]],[14,15,["G3004"]],[15,20,["G3072"]],[20,21,["G3588"]],[21,22,["G2316"]],[22,25,["G2597"]],[25,26,["G4314"]],[26,27,["G2248"]],[27,30,["G3666"]],[30,32,["G444"]]]},{"k":27426,"v":[[0,1,["G5037"]],[1,3,["G2564"]],[3,4,["G921","(G3303)"]],[4,5,["G2203"]],[5,6,["G1161"]],[6,7,["G3972"]],[7,8,["G2060"]],[8,9,["G1894"]],[9,10,["G846"]],[10,11,["G2258"]],[11,12,["G3588"]],[12,14,["G2233","G3056"]]]},{"k":27427,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2409"]],[3,5,["G2203"]],[5,7,["G5607"]],[7,8,["G4253"]],[8,9,["G846"]],[9,10,["G4172"]],[10,11,["G5342"]],[11,12,["G5022"]],[12,13,["G2532"]],[13,14,["G4725"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,17,["G4440"]],[17,19,["G2309"]],[19,22,["G2380"]],[22,23,["G4862"]],[23,24,["G3588"]],[24,25,["G3793"]]]},{"k":27428,"v":[[0,2,["G1161"]],[2,3,["G3588"]],[3,4,["G652"]],[4,5,["G921"]],[5,6,["G2532"]],[6,7,["G3972"]],[7,8,["G191"]],[8,11,["G1284"]],[11,12,["G848"]],[12,13,["G2440"]],[13,16,["G1530"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,19,["G3793"]],[19,21,["G2896"]]]},{"k":27429,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,3,["G435"]],[3,4,["G5101"]],[4,5,["G4160"]],[5,8,["G5023"]],[8,9,["G2249"]],[9,10,["G2532"]],[10,11,["G2070"]],[11,12,["G444"]],[12,15,["G3663"]],[15,17,["G5213"]],[17,19,["G2097"]],[19,21,["G5209"]],[21,25,["G1994"]],[25,26,["G575"]],[26,27,["G5130"]],[27,28,["G3152"]],[28,29,["G1909"]],[29,30,["G3588"]],[30,31,["G2198"]],[31,32,["G2316"]],[32,33,["G3739"]],[33,34,["G4160"]],[34,35,["G3772"]],[35,36,["G2532"]],[36,37,["G1093"]],[37,38,["G2532"]],[38,39,["G3588"]],[39,40,["G2281"]],[40,41,["G2532"]],[41,43,["G3956"]],[43,44,["G3588"]],[44,46,["G1722","G846"]]]},{"k":27430,"v":[[0,1,["G3739"]],[1,2,["G1722"]],[2,3,["G1074"]],[3,4,["G3944"]],[4,5,["G1439"]],[5,6,["G3956"]],[6,7,["G1484"]],[7,9,["G4198"]],[9,12,["G848"]],[12,13,["G3598"]]]},{"k":27431,"v":[[0,1,["G2544"]],[1,3,["G863"]],[3,4,["G3756"]],[4,5,["G1438"]],[5,7,["G267"]],[7,12,["G15"]],[12,14,["G1325"]],[14,15,["G2254"]],[15,16,["G5205"]],[16,18,["G3771"]],[18,19,["G2532"]],[19,20,["G2593"]],[20,21,["G2540"]],[21,22,["G1705"]],[22,23,["G2257"]],[23,24,["G2588"]],[24,26,["G5160"]],[26,27,["G2532"]],[27,28,["G2167"]]]},{"k":27432,"v":[[0,1,["G2532"]],[1,3,["G5023"]],[3,4,["G3004"]],[4,5,["G3433"]],[5,6,["G2664"]],[6,8,["G3588"]],[8,9,["G3793"]],[9,13,["G3361"]],[13,15,["G2380"]],[15,17,["G846"]]]},{"k":27433,"v":[[0,1,["G1161"]],[1,4,["G1904"]],[4,6,["G2453"]],[6,7,["G575"]],[7,8,["G490"]],[8,9,["G2532"]],[9,10,["G2430"]],[10,11,["(G2532)"]],[11,12,["G3982"]],[12,13,["G3588"]],[13,14,["G3793"]],[14,15,["G2532"]],[15,17,["G3034"]],[17,18,["G3972"]],[18,19,["G4951"]],[19,21,["G1854"]],[21,23,["G3588"]],[23,24,["G4172"]],[24,25,["G3543"]],[25,26,["G846"]],[26,29,["G2348"]]]},{"k":27434,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G3101"]],[4,7,["G2944"]],[7,8,["G846"]],[8,11,["G450"]],[11,13,["G1525"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G4172"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,20,["G1887"]],[20,22,["G1831"]],[22,23,["G4862"]],[23,24,["G921"]],[24,25,["G1519"]],[25,26,["G1191"]]]},{"k":27435,"v":[[0,1,["G5037"]],[1,7,["G2097"]],[7,9,["G1565"]],[9,10,["G4172"]],[10,11,["G2532"]],[11,13,["G3100"]],[13,14,["G2425"]],[14,17,["G5290"]],[17,18,["G1519"]],[18,19,["G3082"]],[19,20,["G2532"]],[20,22,["G2430"]],[22,23,["G2532"]],[23,24,["G490"]]]},{"k":27436,"v":[[0,1,["G1991"]],[1,2,["G3588"]],[2,3,["G5590"]],[3,5,["G3588"]],[5,6,["G3101"]],[6,8,["G3870"]],[8,11,["G1696"]],[11,13,["G3588"]],[13,14,["G4102"]],[14,15,["G2532"]],[15,16,["G3754"]],[16,17,["G2248"]],[17,18,["G1163"]],[18,19,["G1223"]],[19,20,["G4183"]],[20,21,["G2347"]],[21,22,["G1525"]],[22,23,["G1519"]],[23,24,["G3588"]],[24,25,["G932"]],[25,27,["G2316"]]]},{"k":27437,"v":[[0,1,["G1161"]],[1,5,["G5500"]],[5,6,["G846"]],[6,7,["G4245"]],[7,10,["G2596","G1577"]],[10,13,["G4336"]],[13,14,["G3326"]],[14,15,["G3521"]],[15,17,["G3908"]],[17,18,["G846"]],[18,20,["G3588"]],[20,21,["G2962"]],[21,22,["G1519"]],[22,23,["G3739"]],[23,25,["G4100"]]]},{"k":27438,"v":[[0,1,["G2532"]],[1,6,["G1330"]],[6,7,["G4099"]],[7,9,["G2064"]],[9,10,["G1519"]],[10,11,["G3828"]]]},{"k":27439,"v":[[0,1,["G2532"]],[1,5,["G2980"]],[5,6,["G3588"]],[6,7,["G3056"]],[7,8,["G1722"]],[8,9,["G4011"]],[9,12,["G2597"]],[12,13,["G1519"]],[13,14,["G825"]]]},{"k":27440,"v":[[0,2,["G2547"]],[2,3,["G636"]],[3,4,["G1519"]],[4,5,["G490"]],[5,7,["G3606"]],[7,10,["G2258"]],[10,11,["G3860"]],[11,13,["G3588"]],[13,14,["G5485"]],[14,16,["G2316"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,19,["G2041"]],[19,20,["G3739"]],[20,22,["G4137"]]]},{"k":27441,"v":[[0,1,["G1161"]],[1,5,["G3854"]],[5,6,["G2532"]],[6,11,["G4863","G3588","G1577"]],[11,13,["G312"]],[13,15,["G3745"]],[15,16,["G2316"]],[16,18,["G4160"]],[18,19,["G3326"]],[19,20,["G846"]],[20,21,["G2532"]],[21,22,["G3754"]],[22,25,["G455"]],[25,27,["G2374"]],[27,29,["G4102"]],[29,31,["G3588"]],[31,32,["G1484"]]]},{"k":27442,"v":[[0,1,["G1161"]],[1,2,["G1563"]],[2,4,["G1304"]],[4,5,["G3756","G3641"]],[5,6,["G5550"]],[6,7,["G4862"]],[7,8,["G3588"]],[8,9,["G3101"]]]},{"k":27443,"v":[[0,1,["G2532"]],[1,3,["G5100"]],[3,6,["G2718"]],[6,7,["G575"]],[7,8,["G2449"]],[8,9,["G1321"]],[9,10,["G3588"]],[10,11,["G80"]],[11,14,["G3362"]],[14,17,["G4059"]],[17,19,["G3588"]],[19,20,["G1485"]],[20,22,["G3475"]],[22,24,["G1410","G3756"]],[24,26,["G4982"]]]},{"k":27444,"v":[[0,2,["G3767"]],[2,3,["G3972"]],[3,4,["G2532"]],[4,5,["G921"]],[5,6,["G1096"]],[6,7,["G3756"]],[7,8,["G3641"]],[8,9,["G4714"]],[9,10,["G2532"]],[10,11,["G4803"]],[11,12,["G4314"]],[12,13,["G846"]],[13,15,["G5021"]],[15,17,["G3972"]],[17,18,["G2532"]],[18,19,["G921"]],[19,20,["G2532"]],[20,21,["G5100"]],[21,22,["G243"]],[22,23,["G1537"]],[23,24,["G846"]],[24,27,["G305"]],[27,28,["G1519"]],[28,29,["G2419"]],[29,30,["G4314"]],[30,31,["G3588"]],[31,32,["G652"]],[32,33,["G2532"]],[33,34,["G4245"]],[34,35,["G4012"]],[35,36,["G5127"]],[36,37,["G2213"]]]},{"k":27445,"v":[[0,1,["G3767"]],[1,2,["(G3303)"]],[2,6,["G4311"]],[6,7,["G5259"]],[7,8,["G3588"]],[8,9,["G1577"]],[9,10,["G3588"]],[10,12,["G1330"]],[12,13,["G5403"]],[13,14,["G2532"]],[14,15,["G4540"]],[15,16,["G1555"]],[16,17,["G3588"]],[17,18,["G1995"]],[18,20,["G3588"]],[20,21,["G1484"]],[21,22,["G2532"]],[22,24,["G4160"]],[24,25,["G3173"]],[25,26,["G5479"]],[26,28,["G3956"]],[28,29,["G3588"]],[29,30,["G80"]]]},{"k":27446,"v":[[0,1,["G1161"]],[1,5,["G3854"]],[5,6,["G1519"]],[6,7,["G2419"]],[7,10,["G588"]],[10,11,["G5259"]],[11,12,["G3588"]],[12,13,["G1577"]],[13,14,["G2532"]],[14,16,["G3588"]],[16,17,["G652"]],[17,18,["G2532"]],[18,19,["G4245"]],[19,20,["G5037"]],[20,22,["G312"]],[22,25,["G3745"]],[25,26,["G2316"]],[26,28,["G4160"]],[28,29,["G3326"]],[29,30,["G846"]]]},{"k":27447,"v":[[0,1,["G1161"]],[1,4,["G1817"]],[4,5,["G5100"]],[5,6,["G575"]],[6,7,["G3588"]],[7,8,["G139"]],[8,10,["G3588"]],[10,11,["G5330"]],[11,13,["G4100"]],[13,14,["G3004"]],[14,15,["G3754"]],[15,18,["G1163"]],[18,20,["G4059"]],[20,21,["G846"]],[21,22,["G5037"]],[22,24,["G3853"]],[24,27,["G5083"]],[27,28,["G3588"]],[28,29,["G3551"]],[29,31,["G3475"]]]},{"k":27448,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G652"]],[3,4,["G2532"]],[4,5,["G4245"]],[5,7,["G4863"]],[7,10,["G1492"]],[10,11,["G4012"]],[11,12,["G5127"]],[12,13,["G3056"]]]},{"k":27449,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,6,["G4183"]],[6,7,["G4803"]],[7,8,["G4074"]],[8,10,["G450"]],[10,12,["G2036"]],[12,13,["G4314"]],[13,14,["G846"]],[14,15,["G435"]],[15,17,["G80"]],[17,18,["G5210"]],[18,19,["G1987"]],[19,21,["G3754"]],[21,25,["G575","G744","G2250"]],[25,26,["G2316"]],[26,28,["G1586"]],[28,29,["G1722"]],[29,30,["G2254"]],[30,32,["G3588"]],[32,33,["G1484"]],[33,34,["G1223"]],[34,35,["G3450"]],[35,36,["G4750"]],[36,38,["G191"]],[38,39,["G3588"]],[39,40,["G3056"]],[40,42,["G3588"]],[42,43,["G2098"]],[43,44,["G2532"]],[44,45,["G4100"]]]},{"k":27450,"v":[[0,1,["G2532"]],[1,2,["G2316"]],[2,6,["G2589"]],[6,9,["G3140","G846"]],[9,10,["G1325"]],[10,11,["G846"]],[11,12,["G3588"]],[12,13,["G40"]],[13,14,["G4151"]],[14,16,["G2531"]],[16,20,["G2254"]]]},{"k":27451,"v":[[0,1,["G2532"]],[1,4,["G1252","G3762"]],[4,5,["G3342","(G5037)"]],[5,6,["G2257"]],[6,7,["G2532"]],[7,8,["G846"]],[8,9,["G2511"]],[9,10,["G846"]],[10,11,["G2588"]],[11,13,["G4102"]]]},{"k":27452,"v":[[0,1,["G3568"]],[1,2,["G3767"]],[2,3,["G5101"]],[3,4,["G3985"]],[4,6,["G2316"]],[6,8,["G2007"]],[8,10,["G2218"]],[10,11,["G1909"]],[11,12,["G3588"]],[12,13,["G5137"]],[13,15,["G3588"]],[15,16,["G3101"]],[16,17,["G3739"]],[17,18,["G3777"]],[18,19,["G2257"]],[19,20,["G3962"]],[20,21,["G3777"]],[21,22,["G2249"]],[22,24,["G2480"]],[24,26,["G941"]]]},{"k":27453,"v":[[0,1,["G235"]],[1,3,["G4100"]],[3,5,["G1223"]],[5,6,["G3588"]],[6,7,["G5485"]],[7,9,["G3588"]],[9,10,["G2962"]],[10,11,["G2424"]],[11,12,["G5547"]],[12,16,["G4982"]],[16,19,["G2596","G3739","G5158","G2548"]]]},{"k":27454,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G4128"]],[4,6,["G4601"]],[6,7,["G2532"]],[7,9,["G191"]],[9,11,["G921"]],[11,12,["G2532"]],[12,13,["G3972"]],[13,14,["G1834"]],[14,15,["G3745"]],[15,16,["G4592"]],[16,17,["G2532"]],[17,18,["G5059"]],[18,19,["G2316"]],[19,21,["G4160"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G1484"]],[24,25,["G1223"]],[25,26,["G846"]]]},{"k":27455,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,7,["G4601"]],[7,8,["G2385"]],[8,9,["G611"]],[9,10,["G3004"]],[10,11,["G435"]],[11,13,["G80"]],[13,14,["G191"]],[14,16,["G3450"]]]},{"k":27456,"v":[[0,1,["G4826"]],[1,3,["G1834"]],[3,4,["G2531"]],[4,5,["G2316"]],[5,8,["G4412"]],[8,10,["G1980"]],[10,12,["G1484"]],[12,14,["G2983"]],[14,16,["G1537"]],[16,19,["G2992"]],[19,20,["G1909"]],[20,21,["G848"]],[21,22,["G3686"]]]},{"k":27457,"v":[[0,1,["G2532"]],[1,3,["G5129"]],[3,4,["G4856"]],[4,5,["G3588"]],[5,6,["G3056"]],[6,8,["G3588"]],[8,9,["G4396"]],[9,10,["G2531"]],[10,13,["G1125"]]]},{"k":27458,"v":[[0,1,["G3326"]],[1,2,["G5023"]],[2,5,["G390"]],[5,6,["G2532"]],[6,9,["G456"]],[9,10,["G3588"]],[10,11,["G4633"]],[11,13,["G1138"]],[13,17,["G4098"]],[17,18,["G2532"]],[18,22,["G456"]],[22,23,["G3588"]],[23,24,["G2679"]],[24,25,["G846"]],[25,26,["G2532"]],[26,31,["G461","G846"]]]},{"k":27459,"v":[[0,1,["G3704"]],[1,2,["G3588"]],[2,3,["G2645"]],[3,5,["G444"]],[5,8,["G1567","G302"]],[8,9,["G3588"]],[9,10,["G2962"]],[10,11,["G2532"]],[11,12,["G3956"]],[12,13,["G3588"]],[13,14,["G1484"]],[14,15,["G1909"]],[15,16,["G3739"]],[16,17,["G3450"]],[17,18,["G3686"]],[18,20,["G1941"]],[20,21,["(G3004","G846)"]],[21,23,["G2962"]],[23,25,["G4160"]],[25,26,["G3956"]],[26,28,["G5023"]]]},{"k":27460,"v":[[0,1,["G1110"]],[1,3,["G2316"]],[3,4,["G2076"]],[4,5,["G3956"]],[5,6,["G848"]],[6,7,["G2041"]],[7,8,["G575"]],[8,13,["G165"]]]},{"k":27461,"v":[[0,1,["G1352"]],[1,2,["G1473"]],[2,4,["G2919"]],[4,7,["G3926"]],[7,8,["G3361"]],[8,11,["G575"]],[11,13,["G3588"]],[13,14,["G1484"]],[14,16,["G1994"]],[16,17,["G1909"]],[17,18,["G2316"]]]},{"k":27462,"v":[[0,1,["G235"]],[1,4,["G1989"]],[4,6,["G846"]],[6,9,["G567"]],[9,10,["G575"]],[10,11,["G234"]],[11,13,["G1497"]],[13,14,["G2532"]],[14,16,["G4202"]],[16,17,["G2532"]],[17,20,["G4156"]],[20,21,["G2532"]],[21,23,["G129"]]]},{"k":27463,"v":[[0,1,["G1063"]],[1,2,["G3475"]],[2,5,["G1537","G744","G1074"]],[5,6,["G2192"]],[6,9,["G2596","G4172"]],[9,12,["G2784"]],[12,13,["G846"]],[13,15,["G314"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G4864"]],[18,19,["G2596","G3956"]],[19,21,["G4521"]]]},{"k":27464,"v":[[0,1,["G5119"]],[1,2,["G1380"]],[2,4,["G3588"]],[4,5,["G652"]],[5,6,["G2532"]],[6,7,["G4245"]],[7,8,["G4862"]],[8,9,["G3588"]],[9,10,["G3650"]],[10,11,["G1577"]],[11,13,["G3992"]],[13,14,["G1586"]],[14,15,["G435"]],[15,16,["G1537"]],[16,19,["G846"]],[19,20,["G1519"]],[20,21,["G490"]],[21,22,["G4862"]],[22,23,["G3972"]],[23,24,["G2532"]],[24,25,["G921"]],[25,27,["G2455"]],[27,28,["G1941"]],[28,29,["G923"]],[29,30,["G2532"]],[30,31,["G4609"]],[31,32,["G2233"]],[32,33,["G435"]],[33,34,["G1722"]],[34,35,["G3588"]],[35,36,["G80"]]]},{"k":27465,"v":[[0,3,["G1125"]],[3,5,["G1223"]],[5,6,["G848"]],[6,9,["G3592"]],[9,10,["G3588"]],[10,11,["G652"]],[11,13,["G4245"]],[13,14,["G2532"]],[14,15,["G80"]],[15,17,["G5463"]],[17,19,["G3588"]],[19,20,["G80"]],[20,21,["G3588"]],[21,23,["G1537"]],[23,25,["G1484"]],[25,26,["G2596"]],[26,27,["G490"]],[27,28,["G2532"]],[28,29,["G4947"]],[29,30,["G2532"]],[30,31,["G2791"]]]},{"k":27466,"v":[[0,2,["G1894"]],[2,5,["G191"]],[5,6,["G3754"]],[6,7,["G5100"]],[7,10,["G1831"]],[10,11,["G1537"]],[11,12,["G2257"]],[12,14,["G5015"]],[14,15,["G5209"]],[15,17,["G3056"]],[17,18,["G384"]],[18,19,["G5216"]],[19,20,["G5590"]],[20,21,["G3004"]],[21,25,["G4059"]],[25,26,["G2532"]],[26,27,["G5083"]],[27,28,["G3588"]],[28,29,["G3551"]],[29,31,["G3739"]],[31,36,["G1291","G3756"]]]},{"k":27467,"v":[[0,3,["G1380"]],[3,5,["G2254"]],[5,7,["G1096"]],[7,10,["G3661"]],[10,12,["G3992"]],[12,13,["G1586"]],[13,14,["G435"]],[14,15,["G4314"]],[15,16,["G5209"]],[16,17,["G4862"]],[17,18,["G2257"]],[18,19,["G27"]],[19,20,["G921"]],[20,21,["G2532"]],[21,22,["G3972"]]]},{"k":27468,"v":[[0,1,["G444"]],[1,4,["G3860"]],[4,5,["G848"]],[5,6,["G5590"]],[6,7,["G5228"]],[7,8,["G3588"]],[8,9,["G3686"]],[9,11,["G2257"]],[11,12,["G2962"]],[12,13,["G2424"]],[13,14,["G5547"]]]},{"k":27469,"v":[[0,3,["G649"]],[3,4,["G3767"]],[4,5,["G2455"]],[5,6,["G2532"]],[6,7,["G4609"]],[7,8,["G846"]],[8,10,["G2532"]],[10,11,["G518"]],[11,13,["G3588"]],[13,15,["G846"]],[15,17,["G1223","G3056"]]]},{"k":27470,"v":[[0,1,["G1063"]],[1,4,["G1380"]],[4,6,["G3588"]],[6,7,["G40"]],[7,8,["G4151"]],[8,9,["G2532"]],[9,11,["G2254"]],[11,13,["G2007"]],[13,15,["G5213"]],[15,16,["G3367"]],[16,17,["G4119"]],[17,18,["G922"]],[18,19,["G4133"]],[19,20,["G5130"]],[20,22,["G1876"]]]},{"k":27471,"v":[[0,3,["G567"]],[3,8,["G1494"]],[8,9,["G2532"]],[9,11,["G129"]],[11,12,["G2532"]],[12,15,["G4156"]],[15,16,["G2532"]],[16,18,["G4202"]],[18,19,["G1537"]],[19,20,["G3739"]],[20,23,["G1301"]],[23,24,["G1438"]],[24,27,["G4238"]],[27,28,["G2095"]],[28,31,["G4517"]]]},{"k":27472,"v":[[0,1,["G3767"]],[1,3,["G3588"]],[3,4,["(G3303)"]],[4,5,["G630"]],[5,7,["G2064"]],[7,8,["G1519"]],[8,9,["G490"]],[9,10,["G2532"]],[10,17,["G4863","G3588","G4128"]],[17,19,["G1929"]],[19,20,["G3588"]],[20,21,["G1992"]]]},{"k":27473,"v":[[0,2,["G1161"]],[2,5,["G314"]],[5,7,["G5463"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,10,["G3874"]]]},{"k":27474,"v":[[0,1,["G5037"]],[1,2,["G2455"]],[2,3,["G2532"]],[3,4,["G4609"]],[4,5,["G5607"]],[5,6,["G4396"]],[6,7,["G2532"]],[7,8,["G848"]],[8,9,["G3870"]],[9,10,["G3588"]],[10,11,["G80"]],[11,12,["G1223"]],[12,13,["G4183"]],[13,14,["G3056"]],[14,15,["G2532"]],[15,16,["G1991"]],[16,17,[]]]},{"k":27475,"v":[[0,1,["G1161"]],[1,5,["G4160"]],[5,8,["G5550"]],[8,12,["G630"]],[12,13,["G3326"]],[13,14,["G1515"]],[14,15,["G575"]],[15,16,["G3588"]],[16,17,["G80"]],[17,18,["G4314"]],[18,19,["G3588"]],[19,20,["G652"]]]},{"k":27476,"v":[[0,1,["G1161"]],[1,3,["G1380"]],[3,4,["G4609"]],[4,6,["G1961"]],[6,7,["G847"]],[7,8,[]]]},{"k":27477,"v":[[0,1,["G3972"]],[1,2,["G1161"]],[2,3,["G2532"]],[3,4,["G921"]],[4,5,["G1304"]],[5,6,["G1722"]],[6,7,["G490"]],[7,8,["G1321"]],[8,9,["G2532"]],[9,10,["G2097"]],[10,11,["G3588"]],[11,12,["G3056"]],[12,14,["G3588"]],[14,15,["G2962"]],[15,16,["G3326"]],[16,17,["G4183"]],[17,18,["G2087"]],[18,19,["G2532"]]]},{"k":27478,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G2250"]],[3,4,["G3326"]],[4,5,["G3972"]],[5,6,["G2036"]],[6,7,["G4314"]],[7,8,["G921"]],[8,12,["G1994","(G1211)"]],[12,14,["G1980"]],[14,15,["G2257"]],[15,16,["G80"]],[16,17,["G2596"]],[17,18,["G3956"]],[18,19,["G4172"]],[19,20,["G1722","G3739"]],[20,23,["G2605"]],[23,24,["G3588"]],[24,25,["G3056"]],[25,27,["G3588"]],[27,28,["G2962"]],[28,31,["G4459"]],[31,33,["G2192"]]]},{"k":27479,"v":[[0,1,["G1161"]],[1,2,["G921"]],[2,3,["G1011"]],[3,6,["G4838"]],[6,8,["G2491"]],[8,11,["G2564"]],[11,12,["G3138"]]]},{"k":27480,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,5,["G515","G3361"]],[5,9,["G4838","G5126"]],[9,12,["G868"]],[12,13,["G575"]],[13,14,["G846"]],[14,15,["G575"]],[15,16,["G3828"]],[16,17,["G2532"]],[17,20,["G4905","G3361"]],[20,21,["G846"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G2041"]]]},{"k":27481,"v":[[0,1,["G3767"]],[1,7,["G3948","G1096"]],[7,9,["G5620"]],[9,10,["G846"]],[10,12,["G673"]],[12,16,["G575","G240"]],[16,17,["G5037"]],[17,19,["G921"]],[19,20,["G3880"]],[20,21,["G3138"]],[21,23,["G1602"]],[23,24,["G1519"]],[24,25,["G2954"]]]},{"k":27482,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,3,["G1951"]],[3,4,["G4609"]],[4,6,["G1831"]],[6,8,["G3860"]],[8,9,["G5259"]],[9,10,["G3588"]],[10,11,["G80"]],[11,13,["G3588"]],[13,14,["G5485"]],[14,16,["G2316"]]]},{"k":27483,"v":[[0,1,["G1161"]],[1,4,["G1330"]],[4,5,["G4947"]],[5,6,["G2532"]],[6,7,["G2791"]],[7,8,["G1991"]],[8,9,["G3588"]],[9,10,["G1577"]]]},{"k":27484,"v":[[0,1,["G1161"]],[1,2,["G2658"]],[2,4,["G1519"]],[4,5,["G1191"]],[5,6,["G2532"]],[6,7,["G3082"]],[7,8,["G2532"]],[8,9,["G2400"]],[9,11,["G5100"]],[11,12,["G3101"]],[12,13,["G2258"]],[13,14,["G1563"]],[14,15,["G3686"]],[15,16,["G5095"]],[16,18,["G5207"]],[18,21,["G5100"]],[21,22,["G1135"]],[22,26,["G2453"]],[26,28,["G4103"]],[28,29,["G1161"]],[29,31,["G3962"]],[31,34,["G1672"]]]},{"k":27485,"v":[[0,1,["G3739"]],[1,5,["G3140"]],[5,6,["G5259"]],[6,7,["G3588"]],[7,8,["G80"]],[8,11,["G1722"]],[11,12,["G3082"]],[12,13,["G2532"]],[13,14,["G2430"]]]},{"k":27486,"v":[[0,1,["G5126"]],[1,2,["G2309"]],[2,3,["G3972"]],[3,7,["G1831"]],[7,8,["G4862"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G2983"]],[11,13,["G4059"]],[13,14,["G846"]],[14,16,["G1223"]],[16,17,["G3588"]],[17,18,["G2453"]],[18,20,["G5607"]],[20,21,["G1722"]],[21,22,["G1565"]],[22,23,["G5117"]],[23,24,["G1063"]],[24,26,["G1492"]],[26,27,["G537"]],[27,28,["G3754"]],[28,29,["G848"]],[29,30,["G3962"]],[30,31,["G5225"]],[31,33,["G1672"]]]},{"k":27487,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,5,["G1279"]],[5,6,["G3588"]],[6,7,["G4172"]],[7,9,["G3860"]],[9,10,["G846"]],[10,11,["G3588"]],[11,12,["G1378"]],[12,15,["G5442"]],[15,18,["G2919"]],[18,19,["G5259"]],[19,20,["G3588"]],[20,21,["G652"]],[21,22,["G2532"]],[22,23,["G4245"]],[23,24,["G3588"]],[24,26,["G1722"]],[26,27,["G2419"]]]},{"k":27488,"v":[[0,1,["G3767"]],[1,2,["G3303"]],[2,4,["G3588"]],[4,5,["G1577"]],[5,6,["G4732"]],[6,8,["G3588"]],[8,9,["G4102"]],[9,10,["G2532"]],[10,11,["G4052"]],[11,13,["G706"]],[13,14,["G2596","G2250"]]]},{"k":27489,"v":[[0,1,["G1161"]],[1,6,["G1330"]],[6,7,["G5435"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G5561"]],[10,12,["G1054"]],[12,15,["G2967"]],[15,16,["G5259"]],[16,17,["G3588"]],[17,18,["G40"]],[18,19,["G4151"]],[19,21,["G2980"]],[21,22,["G3588"]],[22,23,["G3056"]],[23,24,["G1722"]],[24,25,["G773"]]]},{"k":27490,"v":[[0,4,["G2064"]],[4,5,["G2596"]],[5,6,["G3465"]],[6,8,["G3985"]],[8,10,["G4198"]],[10,11,["G2596"]],[11,12,["G978"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G4151"]],[15,16,["G1439"]],[16,17,["G846"]],[17,18,["G3756"]]]},{"k":27491,"v":[[0,1,["G1161"]],[1,4,["G3928"]],[4,5,["G3465"]],[5,7,["G2597"]],[7,8,["G1519"]],[8,9,["G5174"]]]},{"k":27492,"v":[[0,1,["G2532"]],[1,3,["G3705"]],[3,4,["G3700"]],[4,6,["G3972"]],[6,7,["G1223"]],[7,8,["G3588"]],[8,9,["G3571"]],[9,11,["G2258","G2476"]],[11,13,["G435"]],[13,15,["G3110"]],[15,16,["G2532"]],[16,17,["G3870"]],[17,18,["G846"]],[18,19,["G3004"]],[19,21,["G1224"]],[21,22,["G1519"]],[22,23,["G3109"]],[23,25,["G997"]],[25,26,["G2254"]]]},{"k":27493,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,5,["G1492"]],[5,6,["G3588"]],[6,7,["G3705"]],[7,8,["G2112"]],[8,10,["G2212"]],[10,12,["G1831"]],[12,13,["G1519"]],[13,14,["G3109"]],[14,16,["G4822"]],[16,17,["G3754"]],[17,18,["G3588"]],[18,19,["G2962"]],[19,21,["G4341"]],[21,22,["G2248"]],[22,27,["G2097"]],[27,29,["G846"]]]},{"k":27494,"v":[[0,1,["G3767"]],[1,2,["G321"]],[2,3,["G575"]],[3,4,["G5174"]],[4,10,["G2113"]],[10,11,["G1519"]],[11,12,["G4543"]],[12,13,["G5037"]],[13,14,["G3588"]],[14,15,["G1966"]],[15,17,["G1519"]],[17,18,["G3496"]]]},{"k":27495,"v":[[0,1,["G5037"]],[1,3,["G1564"]],[3,4,["G1519"]],[4,5,["G5375"]],[5,6,["G3748"]],[6,7,["G2076"]],[7,9,["G4413"]],[9,10,["G4172"]],[10,13,["G3310"]],[13,15,["G3109"]],[15,18,["G2862"]],[18,19,["G1161"]],[19,21,["G2258"]],[21,22,["G1722"]],[22,23,["G5026"]],[23,24,["G4172"]],[24,25,["G1304"]],[25,26,["G5100"]],[26,27,["G2250"]]]},{"k":27496,"v":[[0,1,["G5037"]],[1,2,["(G2250)"]],[2,3,["G3588"]],[3,4,["G4521"]],[4,6,["G1831"]],[6,7,["G1854"]],[7,9,["G3588"]],[9,10,["G4172"]],[10,11,["G3844"]],[11,14,["G4215"]],[14,15,["G3757"]],[15,16,["G4335"]],[16,18,["G3543"]],[18,21,["G1511"]],[21,22,["G2532"]],[22,25,["G2523"]],[25,27,["G2980"]],[27,29,["G3588"]],[29,30,["G1135"]],[30,32,["G4905"]],[32,33,[]]]},{"k":27497,"v":[[0,1,["G2532"]],[1,3,["G5100"]],[3,4,["G1135"]],[4,5,["G3686"]],[5,6,["G3070"]],[6,10,["G4211"]],[10,13,["G4172"]],[13,15,["G2363"]],[15,17,["G4576"]],[17,18,["G2316"]],[18,19,["G191"]],[19,21,["G3739"]],[21,22,["G2588"]],[22,23,["G3588"]],[23,24,["G2962"]],[24,25,["G1272"]],[25,28,["G4337"]],[28,34,["G2980"]],[34,35,["G5259"]],[35,36,["G3972"]]]},{"k":27498,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,5,["G907"]],[5,6,["G2532"]],[6,7,["G848"]],[7,8,["G3624"]],[8,10,["G3870"]],[10,12,["G3004"]],[12,13,["G1487"]],[13,16,["G2919"]],[16,17,["G3165"]],[17,19,["G1511"]],[19,20,["G4103"]],[20,22,["G3588"]],[22,23,["G2962"]],[23,24,["G1525"]],[24,25,["G1519"]],[25,26,["G3450"]],[26,27,["G3624"]],[27,29,["G3306"]],[29,31,["G2532"]],[31,33,["G3849"]],[33,34,["G2248"]]]},{"k":27499,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,7,["G2257"]],[7,8,["G4198"]],[8,9,["G1519"]],[9,10,["G4335"]],[10,12,["G5100"]],[12,13,["G3814"]],[13,14,["G2192"]],[14,17,["G4151"]],[17,19,["G4436"]],[19,20,["G528"]],[20,21,["G2254"]],[21,22,["G3748"]],[22,23,["G3930"]],[23,24,["G848"]],[24,25,["G2962"]],[25,26,["G4183"]],[26,27,["G2039"]],[27,29,["G3132"]]]},{"k":27500,"v":[[0,2,["G3778"]],[2,3,["G2628"]],[3,4,["G3972"]],[4,5,["G2532"]],[5,6,["G2254"]],[6,8,["G2896"]],[8,9,["G3004"]],[9,10,["G3778"]],[10,11,["G444"]],[11,12,["G1526"]],[12,14,["G1401"]],[14,16,["G3588"]],[16,18,["G5310"]],[18,19,["G2316"]],[19,20,["G3748"]],[20,21,["G2605"]],[21,23,["G2254"]],[23,25,["G3598"]],[25,27,["G4991"]]]},{"k":27501,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,3,["G4160"]],[3,4,["(G1909)"]],[4,5,["G4183"]],[5,6,["G2250"]],[6,7,["G1161"]],[7,8,["G3972"]],[8,10,["G1278"]],[10,11,["G1994"]],[11,12,["G2532"]],[12,13,["G2036"]],[13,15,["G3588"]],[15,16,["G4151"]],[16,18,["G3853"]],[18,19,["G4671"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G3686"]],[22,24,["G2424"]],[24,25,["G5547"]],[25,27,["G1831"]],[27,29,["G575"]],[29,30,["G846"]],[30,31,["G2532"]],[31,34,["G1831"]],[34,35,["G3588"]],[35,36,["G846"]],[36,37,["G5610"]]]},{"k":27502,"v":[[0,1,["G1161"]],[1,3,["G848"]],[3,4,["G2962"]],[4,5,["G1492"]],[5,6,["G3754"]],[6,7,["G3588"]],[7,8,["G1680"]],[8,10,["G848"]],[10,11,["G2039"]],[11,13,["G1831"]],[13,15,["G1949"]],[15,16,["G3972"]],[16,17,["G2532"]],[17,18,["G4609"]],[18,20,["G1670"]],[20,22,["G1519"]],[22,23,["G3588"]],[23,24,["G58"]],[24,25,["G1909"]],[25,26,["G3588"]],[26,27,["G758"]]]},{"k":27503,"v":[[0,1,["G2532"]],[1,2,["G4317"]],[2,3,["G846"]],[3,5,["G3588"]],[5,6,["G4755"]],[6,7,["G2036"]],[7,8,["G3778"]],[8,9,["G444"]],[9,10,["G5225"]],[10,11,["G2453"]],[11,14,["G1613"]],[14,15,["G2257"]],[15,16,["G4172"]]]},{"k":27504,"v":[[0,1,["G2532"]],[1,2,["G2605"]],[2,3,["G1485"]],[3,4,["G3739"]],[4,7,["G1832","G3756"]],[7,9,["G2254"]],[9,11,["G3858"]],[11,12,["G3761"]],[12,14,["G4160"]],[14,15,["G5607"]],[15,16,["G4514"]]]},{"k":27505,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3793"]],[3,6,["G4911"]],[6,7,["G2596"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G4755"]],[11,13,["G4048"]],[13,14,["G846"]],[14,15,["G2440"]],[15,17,["G2753"]],[17,19,["G4463"]],[19,20,[]]]},{"k":27506,"v":[[0,1,["G5037"]],[1,5,["G2007"]],[5,6,["G4183"]],[6,7,["G4127"]],[7,9,["G846"]],[9,11,["G906"]],[11,13,["G1519"]],[13,14,["G5438"]],[14,15,["G3853"]],[15,16,["G3588"]],[16,17,["G1200"]],[17,19,["G5083"]],[19,20,["G846"]],[20,21,["G806"]]]},{"k":27507,"v":[[0,1,["G3739"]],[1,3,["G2983"]],[3,4,["G5108"]],[4,6,["G3852"]],[6,7,["G906"]],[7,8,["G846"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G2082"]],[11,12,["G5438"]],[12,13,["G2532"]],[13,17,["G805","G846","G4228"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G3586"]]]},{"k":27508,"v":[[0,1,["G1161"]],[1,2,["G2596"]],[2,3,["G3317"]],[3,4,["G3972"]],[4,5,["G2532"]],[5,6,["G4609"]],[6,7,["G4336"]],[7,8,["G2532"]],[8,10,["G5214"]],[10,12,["G2316"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G1198"]],[15,16,["G1874"]],[16,17,["G846"]]]},{"k":27509,"v":[[0,1,["G1161"]],[1,2,["G869"]],[2,4,["G1096"]],[4,6,["G3173"]],[6,7,["G4578"]],[7,9,["G5620"]],[9,10,["G3588"]],[10,11,["G2310"]],[11,13,["G3588"]],[13,14,["G1201"]],[14,16,["G4531"]],[16,17,["G5037"]],[17,18,["G3916"]],[18,19,["G3956"]],[19,20,["G3588"]],[20,21,["G2374"]],[21,23,["G455"]],[23,24,["G2532"]],[24,26,["G3956"]],[26,27,["G1199"]],[27,29,["G447"]]]},{"k":27510,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,6,["G1200"]],[6,11,["G1096","G1853"]],[11,12,["G2532"]],[12,13,["G1492"]],[13,14,["G3588"]],[14,15,["G5438"]],[15,16,["G2374"]],[16,17,["G455"]],[17,20,["G4685"]],[20,22,["G3162"]],[22,24,["G3195"]],[24,26,["G337"]],[26,27,["G1438"]],[27,28,["G3543"]],[28,30,["G3588"]],[30,31,["G1198"]],[31,34,["G1628"]]]},{"k":27511,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,3,["G5455"]],[3,6,["G3173"]],[6,7,["G5456"]],[7,8,["G3004"]],[8,9,["G4238"]],[9,10,["G4572"]],[10,11,["G3367"]],[11,12,["G2556"]],[12,13,["G1063"]],[13,15,["G2070"]],[15,16,["G537"]],[16,17,["G1759"]]]},{"k":27512,"v":[[0,1,["G1161"]],[1,3,["G154"]],[3,6,["G5457"]],[6,9,["G1530"]],[9,10,["G2532"]],[10,11,["G1096"]],[11,12,["G1790"]],[12,16,["G4363"]],[16,17,["G3972"]],[17,18,["G2532"]],[18,19,["G4609"]]]},{"k":27513,"v":[[0,1,["G2532"]],[1,2,["G4254"]],[2,3,["G846"]],[3,4,["G1854"]],[4,6,["G5346"]],[6,7,["G2962"]],[7,8,["G5101"]],[8,9,["G1163"]],[9,10,["G3165"]],[10,11,["G4160"]],[11,12,["G2443"]],[12,14,["G4982"]]]},{"k":27514,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G4100"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G2962"]],[7,8,["G2424"]],[8,9,["G5547"]],[9,10,["G2532"]],[10,11,["G4771"]],[11,14,["G4982"]],[14,15,["G2532"]],[15,16,["G4675"]],[16,17,["G3624"]]]},{"k":27515,"v":[[0,1,["G2532"]],[1,3,["G2980"]],[3,5,["G846"]],[5,6,["G3588"]],[6,7,["G3056"]],[7,9,["G3588"]],[9,10,["G2962"]],[10,11,["G2532"]],[11,13,["G3956"]],[13,14,["G3588"]],[14,16,["G1722"]],[16,17,["G848"]],[17,18,["G3614"]]]},{"k":27516,"v":[[0,1,["G2532"]],[1,3,["G3880"]],[3,4,["G846"]],[4,5,["G3588"]],[5,6,["G1565"]],[6,7,["G5610"]],[7,9,["G3588"]],[9,10,["G3571"]],[10,12,["G3068"]],[12,13,["(G575)"]],[13,14,["G4127"]],[14,15,["G2532"]],[15,17,["G907"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G3956"]],[20,21,["G846"]],[21,22,["G3916"]]]},{"k":27517,"v":[[0,1,["G5037"]],[1,5,["G321"]],[5,6,["G846"]],[6,7,["G1519"]],[7,8,["G848"]],[8,9,["G3624"]],[9,13,["G3908","G5132"]],[13,15,["G2532"]],[15,16,["G21"]],[16,17,["G4100"]],[17,19,["G2316"]],[19,23,["G3832"]]]},{"k":27518,"v":[[0,1,["G1161"]],[1,4,["G1096"]],[4,5,["G2250"]],[5,6,["G3588"]],[6,7,["G4755"]],[7,8,["G649"]],[8,9,["G3588"]],[9,10,["G4465"]],[10,11,["G3004"]],[11,15,["G630","G1565","G444"]]]},{"k":27519,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,6,["G1200"]],[6,7,["G518"]],[7,8,["G5128"]],[8,9,["G3056"]],[9,10,["G4314"]],[10,11,["G3972"]],[11,12,["G3588"]],[12,13,["G4755"]],[13,15,["G649"]],[15,16,["G2443"]],[16,19,["G630"]],[19,20,["G3568"]],[20,21,["G3767"]],[21,22,["G1831"]],[22,24,["G4198"]],[24,25,["G1722"]],[25,26,["G1515"]]]},{"k":27520,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,3,["G5346"]],[3,4,["G4314"]],[4,5,["G846"]],[5,8,["G1194"]],[8,9,["G2248"]],[9,10,["G1219"]],[10,11,["G178"]],[11,12,["G5225"]],[12,13,["G4514"]],[13,14,["(G444)"]],[14,16,["G906"]],[16,18,["G1519"]],[18,19,["G5438"]],[19,20,["G2532"]],[20,21,["G3568"]],[21,26,["G1544","G2248"]],[26,27,["G2977"]],[27,28,["G3756"]],[28,29,["G1063"]],[29,30,["G235"]],[30,33,["G2064"]],[33,34,["G848"]],[34,38,["G1806","G2248"]]]},{"k":27521,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4465"]],[3,4,["G312"]],[4,5,["G5023"]],[5,6,["G4487"]],[6,8,["G3588"]],[8,9,["G4755"]],[9,10,["G2532"]],[10,12,["G5399"]],[12,15,["G191"]],[15,16,["G3754"]],[16,18,["G1526"]],[18,19,["G4514"]]]},{"k":27522,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,5,["G3870"]],[5,6,["G846"]],[6,7,["G2532"]],[7,10,["G1806"]],[10,12,["G2065"]],[12,16,["G1831"]],[16,18,["G3588"]],[18,19,["G4172"]]]},{"k":27523,"v":[[0,1,["G1161"]],[1,3,["G1831"]],[3,5,["G1537"]],[5,6,["G3588"]],[6,7,["G5438"]],[7,9,["G1525"]],[9,10,["G1519"]],[10,14,["G3070"]],[14,15,["G2532"]],[15,19,["G1492"]],[19,20,["G3588"]],[20,21,["G80"]],[21,23,["G3870"]],[23,24,["G846"]],[24,25,["G2532"]],[25,26,["G1831"]]]},{"k":27524,"v":[[0,1,["G1161"]],[1,6,["G1353"]],[6,7,["G295"]],[7,8,["G2532"]],[8,9,["G624"]],[9,11,["G2064"]],[11,12,["G1519"]],[12,13,["G2332"]],[13,14,["G3699"]],[14,15,["G2258"]],[15,17,["G4864"]],[17,19,["G3588"]],[19,20,["G2453"]]]},{"k":27525,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,6,["G2596","G1486"]],[6,8,["G1525"]],[8,9,["G4314"]],[9,10,["G846"]],[10,11,["G2532"]],[11,12,["(G5140)"]],[12,14,["G4521"]],[14,15,["G1256"]],[15,17,["G846"]],[17,19,["G575"]],[19,20,["G3588"]],[20,21,["G1124"]]]},{"k":27526,"v":[[0,1,["G1272"]],[1,2,["G2532"]],[2,3,["G3908"]],[3,4,["G3754"]],[4,5,["G5547"]],[5,7,["G1163"]],[7,9,["G3958"]],[9,10,["G2532"]],[10,12,["G450"]],[12,13,["G1537"]],[13,15,["G3498"]],[15,16,["G2532"]],[16,17,["G3754"]],[17,18,["G3778"]],[18,19,["G2424"]],[19,20,["G3739"]],[20,21,["G1473"]],[21,22,["G2605"]],[22,24,["G5213"]],[24,25,["G2076"]],[25,26,["G5547"]]]},{"k":27527,"v":[[0,1,["G2532"]],[1,2,["G5100"]],[2,3,["G1537"]],[3,4,["G846"]],[4,5,["G3982"]],[5,6,["G2532"]],[6,8,["G4345"]],[8,9,["G3972"]],[9,10,["G2532"]],[10,11,["G4609"]],[11,12,["G5037"]],[12,14,["G3588"]],[14,15,["G4576"]],[15,16,["G1672"]],[16,18,["G4183"]],[18,19,["G4128"]],[19,20,["G5037"]],[20,22,["G3588"]],[22,23,["G4413"]],[23,24,["G1135"]],[24,25,["G3756"]],[25,27,["G3641"]]]},{"k":27528,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,6,["G544"]],[6,9,["G2206","(G2532)"]],[9,11,["G4355"]],[11,13,["G5100"]],[13,14,["G4190"]],[14,15,["G435"]],[15,17,["G3588"]],[17,19,["G60"]],[19,20,["G2532"]],[20,23,["G3792"]],[23,31,["G2350","G3588","G4172"]],[31,32,["G5037"]],[32,33,["G2186"]],[33,34,["G3588"]],[34,35,["G3614"]],[35,37,["G2394"]],[37,39,["G2212"]],[39,40,["(G846)"]],[40,43,["G71"]],[43,44,["G1519"]],[44,45,["G3588"]],[45,46,["G1218"]]]},{"k":27529,"v":[[0,1,["G1161"]],[1,4,["G2147"]],[4,5,["G846"]],[5,6,["G3361"]],[6,8,["G4951"]],[8,9,["G2394"]],[9,10,["G2532"]],[10,11,["G5100"]],[11,12,["G80"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,18,["G4173"]],[18,19,["G994"]],[19,20,["G3778"]],[20,27,["G387","G3588","G3625"]],[27,29,["G3918"]],[29,30,["G1759"]],[30,31,["G2532"]]]},{"k":27530,"v":[[0,1,["G3739"]],[1,2,["G2394"]],[2,4,["G5264"]],[4,5,["G2532"]],[5,6,["G3778"]],[6,7,["G3956"]],[7,8,["G4238"]],[8,9,["G561"]],[9,11,["G3588"]],[11,12,["G1378"]],[12,14,["G2541"]],[14,15,["G3004"]],[15,18,["G1511"]],[18,19,["G2087"]],[19,20,["G935"]],[20,22,["G2424"]]]},{"k":27531,"v":[[0,1,["G1161"]],[1,3,["G5015"]],[3,4,["G3588"]],[4,5,["G3793"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,11,["G4173"]],[11,14,["G191"]],[14,16,["G5023"]]]},{"k":27532,"v":[[0,1,["G2532"]],[1,5,["G2983"]],[5,6,["G2425"]],[6,7,["G3844"]],[7,8,["G2394"]],[8,9,["G2532"]],[9,11,["G3588"]],[11,12,["G3062"]],[12,16,["G630","G846"]]]},{"k":27533,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G80"]],[3,4,["G2112"]],[4,6,["G1599","(G5037)"]],[6,7,["G3972"]],[7,8,["G2532"]],[8,9,["G4609"]],[9,10,["G1223"]],[10,11,["G3571"]],[11,12,["G1519"]],[12,13,["G960"]],[13,14,["G3748"]],[14,15,["G3854"]],[15,17,["G549"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G4864"]],[20,22,["G3588"]],[22,23,["G2453"]]]},{"k":27534,"v":[[0,1,["(G3778)"]],[1,2,["G2258"]],[2,4,["G2104"]],[4,6,["G3588"]],[6,7,["G1722"]],[7,8,["G2332"]],[8,11,["G3748"]],[11,12,["G1209"]],[12,13,["G3588"]],[13,14,["G3056"]],[14,15,["G3326"]],[15,16,["G3956"]],[16,19,["G4288"]],[19,21,["G350"]],[21,22,["G3588"]],[22,23,["G1124"]],[23,24,["G2596","G2250"]],[24,25,["G1487"]],[25,27,["G5023"]],[27,28,["G2192"]],[28,29,["G3779"]]]},{"k":27535,"v":[[0,1,["G3767"]],[1,2,["G4183","(G3303)"]],[2,3,["G1537"]],[3,4,["G846"]],[4,5,["G4100"]],[5,6,["G2532"]],[6,8,["G2158"]],[8,9,["G1135"]],[9,12,["G1674"]],[12,13,["G2532"]],[13,15,["G435"]],[15,16,["G3756"]],[16,18,["G3641"]]]},{"k":27536,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G3588"]],[3,4,["G2453"]],[4,5,["G575"]],[5,6,["G2332"]],[6,8,["G1097"]],[8,9,["G3754"]],[9,10,["G3588"]],[10,11,["G3056"]],[11,13,["G2316"]],[13,15,["G2605"]],[15,16,["G5259"]],[16,17,["G3972"]],[17,18,["G1722"]],[18,19,["G960"]],[19,21,["G2064"]],[21,23,["G2546"]],[23,26,["G4531"]],[26,27,["G3588"]],[27,28,["G3793"]]]},{"k":27537,"v":[[0,1,["G1161"]],[1,2,["G5119"]],[2,3,["G2112"]],[3,4,["G3588"]],[4,5,["G80"]],[5,7,["G1821"]],[7,8,["G3972"]],[8,10,["G4198"]],[10,13,["G5613"]],[13,14,["G1909"]],[14,15,["G3588"]],[15,16,["G2281"]],[16,17,["G1161","(G5037)"]],[17,18,["G4609"]],[18,19,["G2532"]],[19,20,["G5095"]],[20,21,["G5278"]],[21,22,["G1563"]],[22,23,[]]]},{"k":27538,"v":[[0,1,["G1161"]],[1,4,["G2525"]],[4,5,["G3972"]],[5,6,["G71"]],[6,7,["G846"]],[7,8,["G2193"]],[8,9,["G116"]],[9,10,["G2532"]],[10,11,["G2983"]],[11,13,["G1785"]],[13,14,["G4314"]],[14,15,["G4609"]],[15,16,["G2532"]],[16,17,["G5095"]],[17,20,["G2064"]],[20,21,["G4314"]],[21,22,["G846"]],[22,25,["G5613","G5033"]],[25,27,["G1826"]]]},{"k":27539,"v":[[0,1,["G1161"]],[1,3,["G3972"]],[3,5,["G1551"]],[5,6,["G846"]],[6,7,["G1722"]],[7,8,["G116"]],[8,9,["G848"]],[9,10,["G4151"]],[10,12,["G3947"]],[12,13,["G1722"]],[13,14,["G846"]],[14,17,["G2334"]],[17,18,["G3588"]],[18,19,["G4172"]],[19,23,["G2712"]]]},{"k":27540,"v":[[0,1,["G3767"]],[1,2,["G1256"]],[2,3,["(G3303)"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G4864"]],[6,8,["G3588"]],[8,9,["G2453"]],[9,10,["G2532"]],[10,12,["G3588"]],[12,14,["G4576"]],[14,15,["G2532"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G58"]],[18,19,["G2596","G3956","G2250"]],[19,20,["G4314"]],[20,24,["G3909"]],[24,25,[]]]},{"k":27541,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G5386"]],[3,5,["G3588"]],[5,6,["G1946"]],[6,7,["G2532"]],[7,9,["G3588"]],[9,10,["G4770"]],[10,11,["G4820"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G5100"]],[14,15,["G3004"]],[15,16,["G5101"]],[16,17,["G2309","G302"]],[17,18,["G3778"]],[18,19,["G4691"]],[19,20,["G3004","(G1161)"]],[20,21,["G3588"]],[21,24,["G1380"]],[24,26,["G1511"]],[26,29,["G2604"]],[29,31,["G3581"]],[31,32,["G1140"]],[32,33,["G3754"]],[33,35,["G2097"]],[35,37,["G846"]],[37,38,["G2424"]],[38,39,["G2532"]],[39,40,["G3588"]],[40,41,["G386"]]]},{"k":27542,"v":[[0,1,["G5037"]],[1,3,["G1949"]],[3,4,["G846"]],[4,6,["G71"]],[6,8,["G1909"]],[8,9,["G697"]],[9,10,["G3004"]],[10,11,["G1410"]],[11,13,["G1097"]],[13,14,["G5101"]],[14,15,["G3778"]],[15,16,["G2537"]],[16,17,["G1322"]],[17,18,["G3588"]],[18,19,["G4675"]],[19,20,["G2980"]],[20,21,[]]]},{"k":27543,"v":[[0,1,["G1063"]],[1,3,["G1533"]],[3,4,["G5100"]],[4,6,["G3579"]],[6,7,["G1519"]],[7,8,["G2257"]],[8,9,["G189"]],[9,11,["G1014"]],[11,12,["G1097"]],[12,13,["G3767"]],[13,14,["G5101"]],[14,16,["G5023"]],[16,17,["G2309","G302","(G1511)"]]]},{"k":27544,"v":[[0,1,["(G1161)"]],[1,2,["G3956"]],[2,4,["G117"]],[4,5,["G2532"]],[5,6,["G3581"]],[6,9,["G1927"]],[9,12,["G2119"]],[12,13,["G1519"]],[13,14,["G3762"]],[14,15,["G2087"]],[15,16,["G2228"]],[16,19,["G3004"]],[19,20,["G2532"]],[20,22,["G191"]],[22,23,["G5100"]],[23,25,["G2537"]]]},{"k":27545,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,3,["G2476"]],[3,4,["G1722"]],[4,6,["G3319"]],[6,9,["G697"]],[9,11,["G5346"]],[11,13,["G435"]],[13,15,["G117"]],[15,17,["G2334"]],[17,19,["G2596"]],[19,21,["G3956"]],[21,22,["G5209"]],[22,23,["(G5613)"]],[23,25,["G1174"]]]},{"k":27546,"v":[[0,1,["G1063"]],[1,5,["G1330"]],[5,6,["G2532"]],[6,7,["G333"]],[7,8,["G5216"]],[8,9,["G4574"]],[9,11,["G2147"]],[11,12,["(G2532)"]],[12,13,["G1041"]],[13,16,["G1722","G3739","G1924"]],[16,19,["G57"]],[19,20,["G2316"]],[20,21,["G3739"]],[21,22,["G3767"]],[22,24,["G50"]],[24,25,["G2151"]],[25,26,["G5126"]],[26,27,["G2605"]],[27,28,["G1473"]],[28,30,["G5213"]]]},{"k":27547,"v":[[0,1,["G2316"]],[1,3,["G4160"]],[3,4,["G3588"]],[4,5,["G2889"]],[5,6,["G2532"]],[6,8,["G3956"]],[8,9,["G1722","G846"]],[9,12,["G3778"]],[12,13,["G5225"]],[13,14,["G2962"]],[14,16,["G3772"]],[16,17,["G2532"]],[17,18,["G1093"]],[18,19,["G2730"]],[19,20,["G3756"]],[20,21,["G1722"]],[21,22,["G3485"]],[22,25,["G5499"]]]},{"k":27548,"v":[[0,1,["G3761"]],[1,3,["G2323"]],[3,4,["G5259"]],[4,5,["G444"]],[5,6,["G5495"]],[6,10,["G4326"]],[10,12,["G5100"]],[12,14,["G846"]],[14,15,["G1325"]],[15,17,["G3956"]],[17,18,["G2222"]],[18,19,["G2532"]],[19,20,["G4157"]],[20,23,["G2596","G3956"]]]},{"k":27549,"v":[[0,1,["G5037"]],[1,3,["G4160"]],[3,4,["G1537"]],[4,5,["G1520"]],[5,6,["G129"]],[6,7,["G3956"]],[7,8,["G1484"]],[8,10,["G444"]],[10,13,["G2730"]],[13,14,["G1909"]],[14,15,["G3956"]],[15,16,["G3588"]],[16,17,["G4383"]],[17,19,["G3588"]],[19,20,["G1093"]],[20,23,["G3724"]],[23,25,["G2540"]],[25,27,["G4384"]],[27,28,["G2532"]],[28,29,["G3588"]],[29,30,["G3734"]],[30,32,["G848"]],[32,33,["G2733"]]]},{"k":27550,"v":[[0,4,["G2212"]],[4,5,["G3588"]],[5,6,["G2962"]],[6,7,["G1487"]],[7,8,["G686","G1065"]],[8,12,["G5584"]],[12,13,["G846"]],[13,14,["G2532"]],[14,15,["G2147"]],[15,17,["G2544"]],[17,19,["G5225"]],[19,20,["G3756"]],[20,21,["G3112"]],[21,22,["G575"]],[22,23,["G1538"]],[23,24,["G1520"]],[24,26,["G2257"]]]},{"k":27551,"v":[[0,1,["G1063"]],[1,2,["G1722"]],[2,3,["G846"]],[3,5,["G2198"]],[5,6,["G2532"]],[6,7,["G2795"]],[7,8,["G2532"]],[8,11,["G2070"]],[11,12,["G5613"]],[12,13,["G5100"]],[13,14,["G2532"]],[14,17,["G2596","G5209"]],[17,18,["G4163"]],[18,20,["G2046"]],[20,21,["G1063"]],[21,23,["G2070"]],[23,24,["G2532"]],[24,25,["G5120"]],[25,26,["G1085"]]]},{"k":27552,"v":[[0,2,["G3767"]],[2,5,["G5225"]],[5,7,["G1085"]],[7,9,["G2316"]],[9,11,["G3784"]],[11,12,["G3756"]],[12,14,["G3543"]],[14,16,["G3588"]],[16,17,["G2304"]],[17,18,["G1511"]],[18,20,["G3664"]],[20,21,["G5557"]],[21,22,["G2228"]],[22,23,["G696"]],[23,24,["G2228"]],[24,25,["G3037"]],[25,26,["G5480"]],[26,28,["G5078"]],[28,29,["G2532"]],[29,30,["G444"]],[30,31,["G1761"]]]},{"k":27553,"v":[[0,1,["(G3767","G3303)"]],[1,2,["G3588"]],[2,3,["G5550"]],[3,6,["G52"]],[6,7,["G2316"]],[7,8,["G5237"]],[8,11,["G3569"]],[11,12,["G3853"]],[12,13,["G3956"]],[13,14,["G444"]],[14,16,["G3837"]],[16,18,["G3340"]]]},{"k":27554,"v":[[0,1,["G1360"]],[1,4,["G2476"]],[4,6,["G2250"]],[6,7,["G1722"]],[7,9,["G3739"]],[9,11,["G3195"]],[11,12,["G2919"]],[12,13,["G3588"]],[13,14,["G3625"]],[14,15,["G1722"]],[15,16,["G1343"]],[16,17,["G1722"]],[17,19,["G435"]],[19,20,["G3739"]],[20,23,["G3724"]],[23,27,["G3930"]],[27,28,["G4102"]],[28,30,["G3956"]],[30,36,["G450"]],[36,37,["G846"]],[37,38,["G1537"]],[38,40,["G3498"]]]},{"k":27555,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,7,["G386"]],[7,10,["G3498"]],[10,11,["G3588","G3303"]],[11,12,["G5512"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G2036"]],[15,18,["G191"]],[18,19,["G4675"]],[19,20,["G3825"]],[20,21,["G4012"]],[21,22,["G5127"]],[22,23,[]]]},{"k":27556,"v":[[0,0,["(G2532)"]],[0,1,["G3779"]],[1,2,["G3972"]],[2,3,["G1831"]],[3,4,["G1537"]],[4,5,["G3319"]],[5,6,["G846"]]]},{"k":27557,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G435"]],[3,4,["G2853"]],[4,6,["G846"]],[6,7,["G2532"]],[7,8,["G4100"]],[8,9,["G1722"]],[9,11,["G3739"]],[11,13,["G1354"]],[13,14,["G3588"]],[14,15,["G698"]],[15,16,["G2532"]],[16,18,["G1135"]],[18,19,["G3686"]],[19,20,["G1152"]],[20,21,["G2532"]],[21,22,["G2087"]],[22,23,["G4862"]],[23,24,["G846"]]]},{"k":27558,"v":[[0,0,["(G1161)"]],[0,1,["G3326"]],[1,3,["G5023"]],[3,4,["G3972"]],[4,5,["G5563"]],[5,6,["G1537"]],[6,7,["G116"]],[7,9,["G2064"]],[9,10,["G1519"]],[10,11,["G2882"]]]},{"k":27559,"v":[[0,1,["G2532"]],[1,2,["G2147"]],[2,4,["G5100"]],[4,5,["G2453"]],[5,6,["G3686"]],[6,7,["G207"]],[7,8,["G1085"]],[8,10,["G4193"]],[10,11,["G4373"]],[11,12,["G2064"]],[12,13,["G575"]],[13,14,["G2482"]],[14,15,["G2532"]],[15,16,["G848"]],[16,17,["G1135"]],[17,18,["G4252"]],[18,20,["G1223"]],[20,21,["G2804"]],[21,23,["G1299"]],[23,24,["G3956"]],[24,25,["G2453"]],[25,27,["G5563"]],[27,28,["G1537"]],[28,29,["G4516"]],[29,31,["G4334"]],[31,33,["G846"]]]},{"k":27560,"v":[[0,1,["G2532"]],[1,4,["G1511"]],[4,6,["G3588"]],[6,8,["G3673"]],[8,10,["G3306"]],[10,11,["G3844"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G2038"]],[14,15,["G1063"]],[15,18,["G5078"]],[18,20,["G2258"]],[20,21,["G4635"]]]},{"k":27561,"v":[[0,1,["G1161"]],[1,3,["G1256"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G4864"]],[6,7,["G2596","G3956"]],[7,8,["G4521"]],[8,9,["G5037"]],[9,10,["G3982"]],[10,12,["G2453"]],[12,13,["G2532"]],[13,15,["G1672"]]]},{"k":27562,"v":[[0,1,["G1161"]],[1,2,["G5613","(G5037)"]],[2,3,["G4609"]],[3,4,["G2532"]],[4,5,["G5095"]],[5,7,["G2718"]],[7,8,["G575"]],[8,9,["G3109"]],[9,10,["G3972"]],[10,12,["G4912"]],[12,14,["G3588"]],[14,15,["G4151"]],[15,17,["G1263"]],[17,19,["G3588"]],[19,20,["G2453"]],[20,22,["G2424"]],[22,24,["G5547"]]]},{"k":27563,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G498"]],[5,6,["G2532"]],[6,7,["G987"]],[7,9,["G1621"]],[9,11,["G2440"]],[11,13,["G2036"]],[13,14,["G4314"]],[14,15,["G846"]],[15,16,["G5216"]],[16,17,["G129"]],[17,19,["G1909"]],[19,21,["G5216"]],[21,22,["G2776"]],[22,23,["G1473"]],[23,25,["G2513"]],[25,26,["G575"]],[26,27,["G3568"]],[27,30,["G4198"]],[30,31,["G1519"]],[31,32,["G3588"]],[32,33,["G1484"]]]},{"k":27564,"v":[[0,1,["G2532"]],[1,3,["G3327"]],[3,4,["G1564"]],[4,6,["G2064"]],[6,7,["G1519"]],[7,9,["G5100"]],[9,11,["G3614"]],[11,12,["G3686"]],[12,13,["G2459"]],[13,16,["G4576"]],[16,17,["G2316"]],[17,18,["G3739"]],[18,19,["G3614"]],[19,21,["G2258","G4927"]],[21,23,["G3588"]],[23,24,["G4864"]]]},{"k":27565,"v":[[0,1,["G1161"]],[1,2,["G2921"]],[2,3,["G3588"]],[3,8,["G752"]],[8,9,["G4100"]],[9,11,["G3588"]],[11,12,["G2962"]],[12,13,["G4862"]],[13,14,["G3650"]],[14,15,["G848"]],[15,16,["G3624"]],[16,17,["G2532"]],[17,18,["G4183"]],[18,20,["G3588"]],[20,21,["G2881"]],[21,22,["G191"]],[22,23,["G4100"]],[23,24,["G2532"]],[24,26,["G907"]]]},{"k":27566,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G3588"]],[3,4,["G2962"]],[4,6,["G3972"]],[6,7,["G1722"]],[7,9,["G3571"]],[9,10,["G1223"]],[10,12,["G3705"]],[12,15,["G5399","G3361"]],[15,16,["G235"]],[16,17,["G2980"]],[17,18,["G2532"]],[18,22,["G4623","G3361"]]]},{"k":27567,"v":[[0,1,["G1360"]],[1,2,["G1473"]],[2,3,["G1510"]],[3,4,["G3326"]],[4,5,["G4675"]],[5,6,["G2532"]],[6,8,["G3762"]],[8,11,["G2007"]],[11,12,["G4671"]],[12,14,["G2559"]],[14,15,["G4571"]],[15,16,["G1360"]],[16,17,["G3427"]],[17,18,["G2076"]],[18,19,["G4183"]],[19,20,["G2992"]],[20,21,["G1722"]],[21,22,["G5026"]],[22,23,["G4172"]]]},{"k":27568,"v":[[0,1,["G5037"]],[1,3,["G2523"]],[3,6,["G1763"]],[6,7,["G2532"]],[7,8,["G1803"]],[8,9,["G3376"]],[9,10,["G1321"]],[10,11,["G3588"]],[11,12,["G3056"]],[12,14,["G2316"]],[14,15,["G1722"]],[15,16,["G846"]]]},{"k":27569,"v":[[0,1,["G1161"]],[1,3,["G1058"]],[3,6,["G445"]],[6,8,["G882"]],[8,9,["G3588"]],[9,10,["G2453"]],[10,16,["G2721","G3661"]],[16,17,["G3972"]],[17,18,["G2532"]],[18,19,["G71"]],[19,20,["G846"]],[20,21,["G1909"]],[21,22,["G3588"]],[22,24,["G968"]]]},{"k":27570,"v":[[0,1,["G3004"]],[1,2,["G3778"]],[2,4,["G374"]],[4,5,["G444"]],[5,7,["G4576"]],[7,8,["G2316"]],[8,9,["G3844"]],[9,11,["G3588"]],[11,12,["G3551"]]]},{"k":27571,"v":[[0,1,["G1161"]],[1,3,["G3972"]],[3,6,["G3195"]],[6,8,["G455"]],[8,10,["G4750"]],[10,11,["G1058"]],[11,12,["G2036"]],[12,13,["G4314"]],[13,14,["G3588"]],[14,15,["G2453"]],[15,16,["G1487"]],[16,17,["(G3303","G3767)"]],[17,18,["G2258"]],[18,19,["(G5100)"]],[19,22,["G92"]],[22,23,["G2228"]],[23,24,["G4190"]],[24,25,["G4467"]],[25,26,["G5599"]],[26,28,["G2453"]],[28,29,["G3056"]],[29,35,["G430","G302"]],[35,36,["G5216"]]]},{"k":27572,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G2076"]],[4,6,["G2213"]],[6,7,["G4012"]],[7,8,["G3056"]],[8,9,["G2532"]],[9,10,["G3686"]],[10,11,["G2532"]],[11,12,["(G2596)"]],[12,13,["G5209"]],[13,14,["G3551"]],[14,15,["G3700"]],[15,16,["G846"]],[16,19,["G1063"]],[19,20,["G1473"]],[20,21,["G1014"]],[21,22,["G1511"]],[22,23,["G3756"]],[23,24,["G2923"]],[24,26,["G5130"]],[26,27,[]]]},{"k":27573,"v":[[0,1,["G2532"]],[1,3,["G556"]],[3,4,["G846"]],[4,5,["G575"]],[5,6,["G3588"]],[6,8,["G968"]]]},{"k":27574,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G1672"]],[4,5,["G1949"]],[5,6,["G4988"]],[6,7,["G3588"]],[7,12,["G752"]],[12,14,["G5180"]],[14,16,["G1715"]],[16,17,["G3588"]],[17,19,["G968"]],[19,20,["G2532"]],[20,21,["G1058"]],[21,23,["G3199"]],[23,24,["G3762"]],[24,27,["G5130"]]]},{"k":27575,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,5,["G4357"]],[5,7,["G2089"]],[7,10,["G2425","G2250"]],[10,15,["G657"]],[15,17,["G3588"]],[17,18,["G80"]],[18,21,["G1602"]],[21,22,["G1519"]],[22,23,["G4947"]],[23,24,["G2532"]],[24,25,["G4862"]],[25,26,["G846"]],[26,27,["G4252"]],[27,28,["G2532"]],[28,29,["G207"]],[29,31,["G2751"]],[31,33,["G2776"]],[33,34,["G1722"]],[34,35,["G2747"]],[35,36,["G1063"]],[36,38,["G2192"]],[38,40,["G2171"]]]},{"k":27576,"v":[[0,1,["G1161"]],[1,3,["G2658"]],[3,4,["G1519"]],[4,5,["G2181"]],[5,8,["G2548","G2641"]],[8,9,["G847"]],[9,10,["G1161"]],[10,11,["G848"]],[11,13,["G1525"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G4864"]],[16,18,["G1256"]],[18,20,["G3588"]],[20,21,["G2453"]]]},{"k":27577,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G2065"]],[3,6,["G3306"]],[6,7,["G4119"]],[7,8,["G5550"]],[8,9,["G3844"]],[9,10,["G846"]],[10,12,["G1962"]],[12,13,["G3756"]]]},{"k":27578,"v":[[0,1,["G235"]],[1,4,["G657","G846"]],[4,5,["G2036"]],[5,6,["G3165"]],[6,7,["G1163"]],[7,10,["G3843"]],[10,11,["G4160"]],[11,13,["G1859"]],[13,15,["G2064"]],[15,16,["G1519"]],[16,17,["G2414"]],[17,18,["G1161"]],[18,21,["G344"]],[21,22,["G3825"]],[22,23,["G4314"]],[23,24,["G5209"]],[24,26,["G2316"]],[26,27,["G2309"]],[27,28,["G2532"]],[28,30,["G321"]],[30,31,["G575"]],[31,32,["G2181"]]]},{"k":27579,"v":[[0,1,["G2532"]],[1,5,["G2718"]],[5,6,["G1519"]],[6,7,["G2542"]],[7,10,["G305"]],[10,11,["G2532"]],[11,12,["G782"]],[12,13,["G3588"]],[13,14,["G1577"]],[14,17,["G2597"]],[17,18,["G1519"]],[18,19,["G490"]]]},{"k":27580,"v":[[0,1,["G2532"]],[1,5,["G4160"]],[5,6,["G5100"]],[6,7,["G5550"]],[7,10,["G1831"]],[10,13,["G1330"]],[13,15,["G3588"]],[15,16,["G5561"]],[16,18,["G1054"]],[18,19,["G2532"]],[19,20,["G5435"]],[20,22,["G2517"]],[22,23,["G1991"]],[23,24,["G3956"]],[24,25,["G3588"]],[25,26,["G3101"]]]},{"k":27581,"v":[[0,1,["G1161"]],[1,3,["G5100"]],[3,4,["G2453"]],[4,5,["G3686"]],[5,6,["G625"]],[6,7,["G1085"]],[7,9,["G221"]],[9,11,["G3052"]],[11,12,["G435"]],[12,13,["(G5607)"]],[13,14,["G1415"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G1124"]],[17,18,["G2658"]],[18,19,["G1519"]],[19,20,["G2181"]]]},{"k":27582,"v":[[0,2,["G3778"]],[2,3,["G2258"]],[3,4,["G2727"]],[4,6,["G3588"]],[6,7,["G3598"]],[7,9,["G3588"]],[9,10,["G2962"]],[10,11,["G2532"]],[11,13,["G2204"]],[13,15,["G3588"]],[15,16,["G4151"]],[16,18,["G2980"]],[18,19,["G2532"]],[19,20,["G1321"]],[20,21,["G199"]],[21,23,["G3588"]],[23,24,["G4012"]],[24,25,["G3588"]],[25,26,["G2962"]],[26,27,["G1987"]],[27,28,["G3440"]],[28,29,["G3588"]],[29,30,["G908"]],[30,32,["G2491"]]]},{"k":27583,"v":[[0,1,["G5037"]],[1,2,["G3778"]],[2,3,["G756"]],[3,6,["G3955"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G4864","(G1161)"]],[9,10,["G846"]],[10,12,["G207"]],[12,13,["G2532"]],[13,14,["G4252"]],[14,16,["G191"]],[16,20,["G4355","G846"]],[20,22,["G2532"]],[22,23,["G1620"]],[23,25,["G846"]],[25,26,["G3588"]],[26,27,["G3598"]],[27,29,["G2316"]],[29,31,["G197"]]]},{"k":27584,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G1014"]],[5,7,["G1330"]],[7,8,["G1519"]],[8,9,["G882"]],[9,10,["G3588"]],[10,11,["G80"]],[11,12,["G1125"]],[12,13,["G4389"]],[13,14,["G3588"]],[14,15,["G3101"]],[15,17,["G588"]],[17,18,["G846"]],[18,19,["G3739"]],[19,23,["G3854"]],[23,24,["G4820"]],[24,26,["G4183"]],[26,29,["G4100"]],[29,30,["G1223"]],[30,31,["G5485"]]]},{"k":27585,"v":[[0,1,["G1063"]],[1,3,["G2159"]],[3,4,["G1246"]],[4,5,["G3588"]],[5,6,["G2453"]],[6,9,["G1219"]],[9,10,["G1925"]],[10,11,["G1223"]],[11,12,["G3588"]],[12,13,["G1124"]],[13,15,["G2424"]],[15,16,["G1511"]],[16,17,["G5547"]]]},{"k":27586,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,8,["G625"]],[8,9,["G1511"]],[9,10,["G1722"]],[10,11,["G2882"]],[11,12,["G3972"]],[12,15,["G1330"]],[15,16,["G3588"]],[16,17,["G510"]],[17,18,["G3313"]],[18,19,["G2064"]],[19,20,["G1519"]],[20,21,["G2181"]],[21,22,["G2532"]],[22,23,["G2147"]],[23,24,["G5100"]],[24,25,["G3101"]]]},{"k":27587,"v":[[0,2,["G2036"]],[2,3,["G4314"]],[3,4,["G846"]],[4,5,["(G1487)"]],[5,7,["G2983"]],[7,9,["G40"]],[9,10,["G4151"]],[10,13,["G4100"]],[13,14,["G1161"]],[14,15,["G3588"]],[15,16,["G2036"]],[16,17,["G4314"]],[17,18,["G846"]],[18,24,["G235","G3761"]],[24,25,["G191"]],[25,26,["G1487"]],[26,28,["G2076"]],[28,30,["G40"]],[30,31,["G4151"]]]},{"k":27588,"v":[[0,1,["G5037"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G1519"]],[6,7,["G5101"]],[7,8,["G3767"]],[8,11,["G907"]],[11,12,["G1161"]],[12,13,["G3588"]],[13,14,["G2036"]],[14,15,["G1519"]],[15,16,["G2491"]],[16,17,["G908"]]]},{"k":27589,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G3972"]],[3,4,["G2491"]],[4,5,["G3303"]],[5,6,["G907"]],[6,9,["G908"]],[9,11,["G3341"]],[11,12,["G3004"]],[12,14,["G3588"]],[14,15,["G2992"]],[15,16,["G2443"]],[16,19,["G4100"]],[19,20,["G1519"]],[20,24,["G2064"]],[24,25,["G3326"]],[25,26,["G846"]],[26,28,["G5123"]],[28,29,["G1519"]],[29,30,["G5547"]],[30,31,["G2424"]]]},{"k":27590,"v":[[0,1,["G1161"]],[1,3,["G191"]],[3,7,["G907"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G3686"]],[10,12,["G3588"]],[12,13,["G2962"]],[13,14,["G2424"]]]},{"k":27591,"v":[[0,1,["G2532"]],[1,3,["G3972"]],[3,5,["G2007"]],[5,7,["G5495"]],[7,9,["G846"]],[9,10,["G3588"]],[10,11,["G40"]],[11,12,["G4151"]],[12,13,["G2064"]],[13,14,["G1909"]],[14,15,["G846"]],[15,16,["G5037"]],[16,18,["G2980"]],[18,20,["G1100"]],[20,21,["G2532"]],[21,22,["G4395"]]]},{"k":27592,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,4,["G435"]],[4,5,["G2258"]],[5,6,["G5616"]],[6,7,["G1177"]]]},{"k":27593,"v":[[0,1,["G1161"]],[1,3,["G1525"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G4864"]],[6,9,["G3955"]],[9,13,["G1909"]],[13,14,["G5140"]],[14,15,["G3376"]],[15,16,["G1256"]],[16,17,["G2532"]],[17,18,["G3982"]],[18,20,["G3588"]],[20,21,["G4012"]],[21,22,["G3588"]],[22,23,["G932"]],[23,25,["G2316"]]]},{"k":27594,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G5100"]],[3,5,["G4645"]],[5,6,["G2532"]],[6,8,["G544"]],[8,11,["G2551"]],[11,14,["G3598"]],[14,15,["G1799"]],[15,16,["G3588"]],[16,17,["G4128"]],[17,19,["G868"]],[19,20,["G575"]],[20,21,["G846"]],[21,23,["G873"]],[23,24,["G3588"]],[24,25,["G3101"]],[25,26,["G1256"]],[26,27,["G2596","G2250"]],[27,28,["G1722"]],[28,29,["G3588"]],[29,30,["G4981"]],[30,32,["G5100"]],[32,33,["G5181"]]]},{"k":27595,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,3,["G1096"]],[3,7,["G1909"]],[7,8,["G1417"]],[8,9,["G2094"]],[9,11,["G5620"]],[11,12,["G3956"]],[12,15,["G2730"]],[15,17,["G773"]],[17,18,["G191"]],[18,19,["G3588"]],[19,20,["G3056"]],[20,22,["G3588"]],[22,23,["G2962"]],[23,24,["G2424"]],[24,25,["G5037"]],[25,26,["G2453"]],[26,27,["G2532"]],[27,28,["G1672"]]]},{"k":27596,"v":[[0,1,["G5037"]],[1,2,["G2316"]],[2,3,["G4160"]],[3,4,["G3756","G5177"]],[4,5,["G1411"]],[5,6,["G1223"]],[6,7,["G3588"]],[7,8,["G5495"]],[8,10,["G3972"]]]},{"k":27597,"v":[[0,2,["G5620","(G2532)"]],[2,3,["G575"]],[3,4,["G846"]],[4,5,["G5559"]],[5,7,["G2018"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,10,["G770"]],[10,11,["G4676"]],[11,12,["G2228"]],[12,13,["G4612"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G3554"]],[16,17,["G525"]],[17,18,["G575"]],[18,19,["G846"]],[19,20,["G5037"]],[20,21,["G3588"]],[21,22,["G4190"]],[22,23,["G4151"]],[23,24,["G1831"]],[24,26,["G575"]],[26,27,["G846"]]]},{"k":27598,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G575"]],[3,4,["G3588"]],[4,5,["G4022"]],[5,6,["G2453"]],[6,7,["G1845"]],[7,9,["G2021"]],[9,12,["G3687"]],[12,13,["G1909"]],[13,16,["G2192"]],[16,17,["G4190"]],[17,18,["G4151"]],[18,19,["G3588"]],[19,20,["G3686"]],[20,22,["G3588"]],[22,23,["G2962"]],[23,24,["G2424"]],[24,25,["G3004"]],[25,27,["G3726"]],[27,28,["G5209"]],[28,30,["G2424"]],[30,31,["G3739"]],[31,32,["G3972"]],[32,33,["G2784"]]]},{"k":27599,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G2033"]],[4,5,["G5207"]],[5,8,["G4630"]],[8,10,["G2453"]],[10,15,["G749"]],[15,17,["G4160"]],[17,18,["G5124"]]]},{"k":27600,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4190"]],[3,4,["G4151"]],[4,5,["G611"]],[5,7,["G2036"]],[7,8,["G2424"]],[8,10,["G1097"]],[10,11,["G2532"]],[11,12,["G3972"]],[12,14,["G1987"]],[14,15,["G1161"]],[15,16,["G5101"]],[16,17,["G2075"]],[17,18,["G5210"]]]},{"k":27601,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G444"]],[3,4,["G1722"]],[4,5,["G3739"]],[5,6,["G3588"]],[6,7,["G4190"]],[7,8,["G4151"]],[8,9,["G2258"]],[9,10,["G2177"]],[10,11,["G1909"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G2634"]],[14,15,["G846"]],[15,17,["G2480"]],[17,18,["G2596"]],[18,19,["G846"]],[19,21,["G5620"]],[21,23,["G1628"]],[23,25,["G1537"]],[25,26,["G1565"]],[26,27,["G3624"]],[27,28,["G1131"]],[28,29,["G2532"]],[29,30,["G5135"]]]},{"k":27602,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,3,["G1096"]],[3,4,["G1110"]],[4,6,["G3956"]],[6,8,["G2453"]],[8,9,["G2532"]],[9,10,["G1672"]],[10,11,["G5037"]],[11,12,["G2730"]],[12,14,["G2181"]],[14,15,["G2532"]],[15,16,["G5401"]],[16,17,["G1968"]],[17,18,["G1909"]],[18,19,["G846"]],[19,20,["G3956"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G3686"]],[23,25,["G3588"]],[25,26,["G2962"]],[26,27,["G2424"]],[27,29,["G3170"]]]},{"k":27603,"v":[[0,1,["G5037"]],[1,2,["G4183"]],[2,4,["G4100"]],[4,5,["G2064"]],[5,7,["G1843"]],[7,8,["G2532"]],[8,9,["G312"]],[9,10,["G848"]],[10,11,["G4234"]]]},{"k":27604,"v":[[0,0,["(G1161)"]],[0,1,["G2425"]],[1,6,["G4238"]],[6,8,["G4021"]],[8,12,["G4851","G976"]],[12,14,["G2618"]],[14,16,["G1799"]],[16,17,["G3956"]],[17,19,["G2532"]],[19,21,["G4860"]],[21,22,["G3588"]],[22,23,["G5092"]],[23,25,["G846"]],[25,26,["G2532"]],[26,27,["G2147"]],[27,30,["G4002","G3461"]],[30,33,["G694"]]]},{"k":27605,"v":[[0,1,["G3779"]],[1,2,["G2596","G2904"]],[2,3,["G837"]],[3,4,["G3588"]],[4,5,["G3056"]],[5,7,["G2962"]],[7,8,["G2532"]],[8,9,["G2480"]]]},{"k":27606,"v":[[0,0,["(G1161)"]],[0,1,["G5613"]],[1,3,["G5023"]],[3,5,["G4137"]],[5,6,["G3972"]],[6,7,["G5087"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G4151"]],[10,15,["G1330"]],[15,16,["G3109"]],[16,17,["G2532"]],[17,18,["G882"]],[18,20,["G4198"]],[20,21,["G1519"]],[21,22,["G2419"]],[22,23,["G2036"]],[23,25,["G3165"]],[25,27,["G1096"]],[27,28,["G1563"]],[28,29,["G3165"]],[29,30,["G1163"]],[30,31,["G2532"]],[31,32,["G1492"]],[32,33,["G4516"]]]},{"k":27607,"v":[[0,1,["G1161"]],[1,3,["G649"]],[3,4,["G1519"]],[4,5,["G3109"]],[5,6,["G1417"]],[6,10,["G1247"]],[10,12,["G846"]],[12,13,["G5095"]],[13,14,["G2532"]],[14,15,["G2037"]],[15,17,["G846"]],[17,19,["G1907"]],[19,20,["G1519"]],[20,21,["G773"]],[21,24,["G5550"]]]},{"k":27608,"v":[[0,1,["G1161"]],[1,3,["G2596","G1565"]],[3,4,["G2540"]],[4,6,["G1096"]],[6,7,["G3756"]],[7,8,["G3641"]],[8,9,["G5017"]],[9,10,["G4012"]],[10,12,["G3598"]]]},{"k":27609,"v":[[0,1,["G1063"]],[1,3,["G5100"]],[3,5,["G3686"]],[5,6,["G1216"]],[6,8,["G695"]],[8,10,["G4160"]],[10,11,["G693"]],[11,12,["G3485"]],[12,14,["G735"]],[14,15,["G3930"]],[15,16,["G3756"]],[16,17,["G3641"]],[17,18,["G2039"]],[18,20,["G3588"]],[20,21,["G5079"]]]},{"k":27610,"v":[[0,1,["G3739"]],[1,4,["G4867"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G2040"]],[7,8,["G4012"]],[8,10,["G5108"]],[10,12,["G2036"]],[12,13,["G435"]],[13,15,["G1987"]],[15,16,["G3754"]],[16,17,["G1537"]],[17,18,["G5026"]],[18,19,["G2039"]],[19,21,["G2076"]],[21,22,["G2257"]],[22,23,["G2142"]]]},{"k":27611,"v":[[0,1,["G2532"]],[1,3,["G2334"]],[3,4,["G2532"]],[4,5,["G191"]],[5,6,["G3754"]],[6,7,["G3756"]],[7,8,["G3440"]],[8,10,["G2181"]],[10,11,["G235"]],[11,12,["G4975"]],[12,14,["G3956"]],[14,15,["G773"]],[15,16,["G3778"]],[16,17,["G3972"]],[17,19,["G3982"]],[19,22,["G3179"]],[22,23,["G2425"]],[23,24,["G3793"]],[24,25,["G3004"]],[25,26,["G3754"]],[26,28,["G1526"]],[28,29,["G3756"]],[29,30,["G2316"]],[30,31,["G3588"]],[31,33,["G1096"]],[33,34,["G1223"]],[34,35,["G5495"]]]},{"k":27612,"v":[[0,2,["(G1161)"]],[2,3,["G3756"]],[3,4,["G3440"]],[4,5,["G5124"]],[5,6,["G2254"]],[6,7,["G3313"]],[7,10,["G2793"]],[10,15,["G2064","G1519","G557"]],[15,16,["G235"]],[16,17,["G2532"]],[17,19,["G3588"]],[19,20,["G2411"]],[20,22,["G3588"]],[22,23,["G3173"]],[23,24,["G2299"]],[24,25,["G735"]],[25,28,["G1519","G3762","G3049"]],[28,29,["G1161"]],[29,30,["G848"]],[30,31,["G3168"]],[31,32,["G3195"]],[32,33,["(G2532)"]],[33,34,["G2507"]],[34,35,["G3739"]],[35,36,["G3650"]],[36,37,["G773"]],[37,38,["G2532"]],[38,39,["G3588"]],[39,40,["G3625"]],[40,41,["G4576"]]]},{"k":27613,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,8,["G1096"]],[8,9,["G4134"]],[9,11,["G2372"]],[11,12,["G2532"]],[12,14,["G2896"]],[14,15,["G3004"]],[15,16,["G3173"]],[16,18,["G735"]],[18,21,["G2180"]]]},{"k":27614,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3650"]],[3,4,["G4172"]],[4,6,["G4130"]],[6,8,["G4799"]],[8,9,["G5037"]],[9,11,["G4884"]],[11,12,["G1050"]],[12,13,["G2532"]],[13,14,["G708"]],[14,17,["G3110"]],[17,18,["G3972"]],[18,21,["G4898"]],[21,23,["G3729"]],[23,26,["G3661"]],[26,27,["G1519"]],[27,28,["G3588"]],[28,29,["G2302"]]]},{"k":27615,"v":[[0,1,["G1161"]],[1,3,["G3972"]],[3,4,["G1014"]],[4,7,["G1525"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G1218"]],[10,11,["G3588"]],[11,12,["G3101"]],[12,13,["G1439"]],[13,14,["G846"]],[14,15,["G3756"]]]},{"k":27616,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["(G2532)"]],[3,4,["G3588"]],[4,7,["G775"]],[7,9,["G5607"]],[9,10,["G846"]],[10,11,["G5384"]],[11,12,["G3992"]],[12,13,["G4314"]],[13,14,["G846"]],[14,15,["G3870"]],[15,20,["G3361"]],[20,21,["G1325"]],[21,22,["G1438"]],[22,23,["G1519"]],[23,24,["G3588"]],[24,25,["G2302"]]]},{"k":27617,"v":[[0,5,["G243","G3303","G3767","G2896"]],[5,7,["G243"]],[7,8,["G5100"]],[8,9,["G1063"]],[9,10,["G3588"]],[10,11,["G1577"]],[11,12,["G2258"]],[12,13,["G4797"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,17,["G4119"]],[17,18,["G1492"]],[18,19,["G3756"]],[19,20,["G5101","G1752"]],[20,24,["G4905"]]]},{"k":27618,"v":[[0,1,["G1161"]],[1,3,["G4264"]],[3,4,["G223"]],[4,6,["G1537"]],[6,7,["G3588"]],[7,8,["G3793"]],[8,9,["G3588"]],[9,10,["G2453"]],[10,13,["G4261","G846"]],[13,14,["G1161"]],[14,15,["G223"]],[15,16,["G2678"]],[16,18,["G3588"]],[18,19,["G5495"]],[19,21,["G2309"]],[21,25,["G626"]],[25,27,["G3588"]],[27,28,["G1218"]]]},{"k":27619,"v":[[0,1,["G1161"]],[1,4,["G1921"]],[4,5,["G3754"]],[5,7,["G2076"]],[7,9,["G2453"]],[9,13,["G1096","G5456","G3391","G1537","G3956"]],[13,17,["G5613","G1909"]],[17,18,["G1417"]],[18,19,["G5610"]],[19,21,["G2896"]],[21,22,["G3173"]],[22,24,["G735"]],[24,27,["G2180"]]]},{"k":27620,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1122"]],[4,6,["G2687"]],[6,7,["G3588"]],[7,8,["G3793"]],[8,10,["G5346"]],[10,12,["G435"]],[12,14,["G2180","(G1063)"]],[14,15,["G5101"]],[15,16,["G444"]],[16,17,["G2076"]],[17,19,["G3739"]],[19,20,["G1097"]],[20,21,["G3756"]],[21,24,["G3588"]],[24,25,["G4172"]],[25,28,["G2180"]],[28,29,["G5607"]],[29,31,["G3511"]],[31,33,["G3588"]],[33,34,["G3173"]],[34,35,["G2299"]],[35,36,["G735"]],[36,37,["G2532"]],[37,45,["G1356"]]]},{"k":27621,"v":[[0,2,["G3767"]],[2,5,["G5130"]],[5,9,["G5607","G368"]],[9,10,["G5209","(G2076)"]],[10,11,["G1163"]],[11,13,["G5225"]],[13,14,["G2687"]],[14,15,["G2532"]],[15,17,["G4238"]],[17,18,["G3367"]],[18,19,["G4312"]]]},{"k":27622,"v":[[0,1,["G1063"]],[1,4,["G71"]],[4,6,["G5128"]],[6,7,["G435"]],[7,10,["G3777"]],[10,13,["G2417"]],[13,14,["G3777"]],[14,16,["G987"]],[16,18,["G5216"]],[18,19,["G2299"]]]},{"k":27623,"v":[[0,1,["G3767"]],[1,2,["G1487","(G3303)"]],[2,3,["G1216"]],[3,4,["G2532"]],[4,5,["G3588"]],[5,6,["G5079"]],[6,9,["G4862"]],[9,10,["G846"]],[10,11,["G2192"]],[11,13,["G3056"]],[13,14,["G4314"]],[14,16,["G5100"]],[16,20,["G60","G71"]],[20,21,["G2532"]],[21,23,["G1526"]],[23,24,["G446"]],[24,27,["G1458"]],[27,29,["G240"]]]},{"k":27624,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G1934"]],[4,6,["G5100"]],[6,7,["G4012"]],[7,9,["G2087"]],[9,13,["G1956"]],[13,14,["G1722"]],[14,16,["G1772"]],[16,17,["G1577"]]]},{"k":27625,"v":[[0,1,["G1063"]],[1,5,["G2793"]],[5,6,["(G2532)"]],[6,10,["G1458"]],[10,11,["G4012"]],[11,13,["G4594"]],[13,14,["G4714"]],[14,16,["G5225"]],[16,17,["G3367"]],[17,18,["G158"]],[18,19,["G4012","G3739"]],[19,21,["G1410"]],[21,22,["G591"]],[22,24,["G3056"]],[24,26,["G5026"]],[26,27,["G4963"]]]},{"k":27626,"v":[[0,1,["G2532"]],[1,5,["G5023"]],[5,6,["G2036"]],[6,8,["G630"]],[8,9,["G3588"]],[9,10,["G1577"]]]},{"k":27627,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G2351"]],[4,6,["G3973"]],[6,7,["G3972"]],[7,9,["G4341"]],[9,11,["G3588"]],[11,12,["G3101"]],[12,13,["G2532"]],[13,14,["G782"]],[14,17,["G1831"]],[17,20,["G4198"]],[20,21,["G1519"]],[21,22,["G3109"]]]},{"k":27628,"v":[[0,1,["G1161"]],[1,6,["G1330"]],[6,7,["G1565"]],[7,8,["G3313"]],[8,9,["G2532"]],[9,11,["G3870"]],[11,12,["G846"]],[12,13,["G4183"]],[13,14,["G3056"]],[14,16,["G2064"]],[16,17,["G1519"]],[17,18,["G1671"]]]},{"k":27629,"v":[[0,1,["G5037"]],[1,3,["G4160"]],[3,4,["G5140"]],[4,5,["G3376"]],[5,7,["(G5259)"]],[7,8,["G3588"]],[8,9,["G2453"]],[9,12,["G1917","G1096"]],[12,13,["G846"]],[13,17,["G3195"]],[17,19,["G321"]],[19,20,["G1519"]],[20,21,["G4947"]],[21,23,["G1096","G1106"]],[23,25,["G5290"]],[25,26,["G1223"]],[26,27,["G3109"]]]},{"k":27630,"v":[[0,1,["G1161"]],[1,3,["G4902"]],[3,4,["G846"]],[4,5,["G891"]],[5,6,["G773"]],[6,7,["G4986"]],[7,9,["G961"]],[9,10,["G1161"]],[10,13,["G2331"]],[13,14,["G708"]],[14,15,["G2532"]],[15,16,["G4580"]],[16,17,["G2532"]],[17,18,["G1050"]],[18,20,["G1190"]],[20,21,["G2532"]],[21,22,["G5095"]],[22,23,["G1161"]],[23,25,["G774"]],[25,26,["G5190"]],[26,27,["G2532"]],[27,28,["G5161"]]]},{"k":27631,"v":[[0,1,["G3778"]],[1,3,["G4281"]],[3,4,["G3306"]],[4,6,["G2248"]],[6,7,["G1722"]],[7,8,["G5174"]]]},{"k":27632,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,4,["G1602"]],[4,5,["G575"]],[5,6,["G5375"]],[6,7,["G3326"]],[7,8,["G3588"]],[8,9,["G2250"]],[9,12,["G106"]],[12,13,["G2532"]],[13,14,["G2064"]],[14,15,["G4314"]],[15,16,["G846"]],[16,17,["G1519"]],[17,18,["G5174"]],[18,19,["G891"]],[19,20,["G4002"]],[20,21,["G2250"]],[21,22,["G3757"]],[22,24,["G1304"]],[24,25,["G2033"]],[25,26,["G2250"]]]},{"k":27633,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G3391"]],[4,7,["G3588"]],[7,8,["G4521"]],[8,10,["G3588"]],[10,11,["G3101"]],[11,13,["G4863"]],[13,15,["G2806"]],[15,16,["G740"]],[16,17,["G3972"]],[17,18,["G1256"]],[18,20,["G846"]],[20,21,["G3195"]],[21,23,["G1826"]],[23,25,["G3588"]],[25,26,["G1887"]],[26,27,["G5037"]],[27,28,["G3905"]],[28,30,["G3056"]],[30,31,["G3360"]],[31,32,["G3317"]]]},{"k":27634,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G2425"]],[4,5,["G2985"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,9,["G5253"]],[9,10,["G3757"]],[10,12,["G2258"]],[12,14,["G4863"]]]},{"k":27635,"v":[[0,1,["G1161"]],[1,3,["G2521"]],[3,4,["G1909"]],[4,6,["G2376"]],[6,8,["G5100"]],[8,10,["G3494"]],[10,11,["G3686"]],[11,12,["G2161"]],[12,15,["G2702"]],[15,17,["G901"]],[17,18,["G5258"]],[18,21,["G3972"]],[21,22,["(G1909)"]],[22,23,["G4119"]],[23,24,["G1256"]],[24,27,["G2702"]],[27,28,["G575"]],[28,29,["G5258"]],[29,31,["G4098"]],[31,32,["G2736"]],[32,33,["G575"]],[33,34,["G3588"]],[34,36,["G5152"]],[36,37,["G2532"]],[37,40,["G142"]],[40,41,["G3498"]]]},{"k":27636,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,4,["G2597"]],[4,7,["G1968"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G4843"]],[10,12,["G2036"]],[12,15,["G2350","G3361"]],[15,16,["G1063"]],[16,17,["G846"]],[17,18,["G5590"]],[18,19,["G2076"]],[19,20,["G1722"]],[20,21,["G846"]]]},{"k":27637,"v":[[0,1,["G1161"]],[1,7,["G305"]],[7,8,["G2532"]],[8,10,["G2806"]],[10,11,["G740"]],[11,12,["G2532"]],[12,13,["G1089"]],[13,14,["G5037"]],[14,15,["G3656"]],[15,18,["G1909","G2425"]],[18,20,["G891"]],[20,23,["G827"]],[23,24,["G3779"]],[24,26,["G1831"]]]},{"k":27638,"v":[[0,1,["G1161"]],[1,3,["G71"]],[3,4,["G3588"]],[4,6,["G3816"]],[6,7,["G2198"]],[7,8,["G2532"]],[8,10,["G3756"]],[10,12,["G3357"]],[12,13,["G3870"]]]},{"k":27639,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,4,["G4281"]],[4,5,["G1909"]],[5,6,["G4143"]],[6,8,["G321"]],[8,9,["G1519"]],[9,10,["G789"]],[10,11,["G1564"]],[11,12,["G3195"]],[12,15,["G353"]],[15,16,["G3972"]],[16,17,["G1063"]],[17,18,["G3779"]],[18,19,["G2258"]],[19,21,["G1299"]],[21,22,["G3195"]],[22,23,["G846"]],[23,26,["G3978"]]]},{"k":27640,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,4,["G4820"]],[4,6,["G2254"]],[6,7,["G1519"]],[7,8,["G789"]],[8,12,["G353","G846"]],[12,14,["G2064"]],[14,15,["G1519"]],[15,16,["G3412"]]]},{"k":27641,"v":[[0,4,["G2547","G636"]],[4,6,["G2658"]],[6,7,["G3588"]],[7,8,["G1966"]],[8,11,["G481"]],[11,12,["G5508"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G2087"]],[15,18,["G3846"]],[18,19,["G1519"]],[19,20,["G4544"]],[20,21,["G2532"]],[21,22,["G3306"]],[22,23,["G1722"]],[23,24,["G5175"]],[24,26,["G3588"]],[26,27,["G2192"]],[27,30,["G2064"]],[30,31,["G1519"]],[31,32,["G3399"]]]},{"k":27642,"v":[[0,1,["G1063"]],[1,2,["G3972"]],[2,4,["G2919"]],[4,7,["G3896"]],[7,8,["G2181"]],[8,9,["G3704"]],[9,10,["G846"]],[10,11,["G1096"]],[11,12,["G3361"]],[12,15,["G5551"]],[15,16,["G1722"]],[16,17,["G773"]],[17,18,["G1063"]],[18,20,["G4692"]],[20,21,["G1487"]],[21,23,["G2258"]],[23,24,["G1415"]],[24,26,["G846"]],[26,28,["G1096"]],[28,29,["G1519"]],[29,30,["G2414"]],[30,31,["G3588"]],[31,32,["G2250"]],[32,34,["G4005"]]]},{"k":27643,"v":[[0,1,["G1161"]],[1,2,["G575"]],[2,3,["G3399"]],[3,5,["G3992"]],[5,6,["G1519"]],[6,7,["G2181"]],[7,9,["G3333"]],[9,10,["G3588"]],[10,11,["G4245"]],[11,13,["G3588"]],[13,14,["G1577"]]]},{"k":27644,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,5,["G3854"]],[5,6,["G4314"]],[6,7,["G846"]],[7,9,["G2036"]],[9,11,["G846"]],[11,12,["G5210"]],[12,13,["G1987"]],[13,14,["G575"]],[14,16,["G4413"]],[16,17,["G2250"]],[17,18,["G575","G3739"]],[18,20,["G1910"]],[20,21,["G1519"]],[21,22,["G773"]],[22,25,["G4459"]],[25,28,["G1096"]],[28,29,["G3326"]],[29,30,["G5216"]],[30,32,["G3956"]],[32,33,["G5550"]]]},{"k":27645,"v":[[0,1,["G1398"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G3326"]],[4,5,["G3956"]],[5,8,["G5012"]],[8,9,["G2532"]],[9,11,["G4183"]],[11,12,["G1144"]],[12,13,["G2532"]],[13,14,["G3986"]],[14,16,["G4819"]],[16,17,["G3427"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,22,["G1917"]],[22,24,["G3588"]],[24,25,["G2453"]]]},{"k":27646,"v":[[0,2,["G5613"]],[2,5,["G5288"]],[5,6,["G3762"]],[6,9,["G4851"]],[9,14,["G312"]],[14,15,["G5213"]],[15,16,["G2532"]],[16,18,["G1321"]],[18,19,["G5209"]],[19,20,["G1219"]],[20,21,["G2532"]],[21,25,["G2596","G3624"]]]},{"k":27647,"v":[[0,1,["G1263"]],[1,2,["G5037"]],[2,5,["G2453"]],[5,6,["G2532"]],[6,10,["G1672"]],[10,11,["G3341"]],[11,12,["G1519"]],[12,13,["G2316"]],[13,14,["G2532"]],[14,15,["G4102"]],[15,16,["G1519"]],[16,17,["G2257"]],[17,18,["G2962"]],[18,19,["G2424"]],[19,20,["G5547"]]]},{"k":27648,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,3,["G2400"]],[3,4,["G1473"]],[4,5,["G4198"]],[5,6,["G1210"]],[6,8,["G3588"]],[8,9,["G4151"]],[9,10,["G1519"]],[10,11,["G2419"]],[11,12,["G3361"]],[12,13,["G1492"]],[13,18,["G4876"]],[18,19,["G3427"]],[19,20,["G1722","G846"]]]},{"k":27649,"v":[[0,1,["G4133"]],[1,2,["G3754"]],[2,3,["G3588"]],[3,4,["G40"]],[4,5,["G4151"]],[5,6,["G1263"]],[6,9,["G2596","G4172"]],[9,10,["G3004"]],[10,11,["G3754"]],[11,12,["G1199"]],[12,13,["G2532"]],[13,14,["G2347"]],[14,15,["G3306"]],[15,16,["G3165"]]]},{"k":27650,"v":[[0,1,["G235"]],[1,7,["G4160","G3056","G3762"]],[7,8,["G3761"]],[8,9,["G2192"]],[9,11,["G3450"]],[11,12,["G5590"]],[12,13,["G5093"]],[13,15,["G1683"]],[15,17,["G5613"]],[17,20,["G5048"]],[20,21,["G3450"]],[21,22,["G1408"]],[22,23,["G3326"]],[23,24,["G5479"]],[24,25,["G2532"]],[25,26,["G3588"]],[26,27,["G1248"]],[27,28,["G3739"]],[28,31,["G2983"]],[31,32,["G3844"]],[32,33,["G3588"]],[33,34,["G2962"]],[34,35,["G2424"]],[35,37,["G1263"]],[37,38,["G3588"]],[38,39,["G2098"]],[39,41,["G3588"]],[41,42,["G5485"]],[42,44,["G2316"]]]},{"k":27651,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,3,["G2400"]],[3,4,["G1473"]],[4,5,["G1492"]],[5,6,["G3754"]],[6,7,["G5210"]],[7,8,["G3956"]],[8,9,["G1722"]],[9,10,["G3739"]],[10,13,["G1330"]],[13,14,["G2784"]],[14,15,["G3588"]],[15,16,["G932"]],[16,18,["G2316"]],[18,20,["G3700"]],[20,21,["G3450"]],[21,22,["G4383"]],[22,24,["G3765"]]]},{"k":27652,"v":[[0,1,["G1352"]],[1,6,["G3143","G5213"]],[6,7,["G4594"]],[7,8,["G2250"]],[8,9,["G3754"]],[9,10,["G1473"]],[10,12,["G2513"]],[12,13,["G575"]],[13,14,["G3588"]],[14,15,["G129"]],[15,17,["G3956"]],[17,18,[]]]},{"k":27653,"v":[[0,1,["G1063"]],[1,4,["G3756"]],[4,5,["G5288"]],[5,6,["(G3361)"]],[6,7,["G312"]],[7,9,["G5213"]],[9,10,["G3956"]],[10,11,["G3588"]],[11,12,["G1012"]],[12,14,["G2316"]]]},{"k":27654,"v":[[0,2,["G4337"]],[2,3,["G3767"]],[3,5,["G1438"]],[5,6,["G2532"]],[6,8,["G3956"]],[8,9,["G3588"]],[9,10,["G4168"]],[10,11,["G1722"]],[11,13,["G3739"]],[13,14,["G3588"]],[14,15,["G40"]],[15,16,["G4151"]],[16,18,["G5087"]],[18,19,["G5209"]],[19,20,["G1985"]],[20,22,["G4165"]],[22,23,["G3588"]],[23,24,["G1577"]],[24,26,["G2316"]],[26,27,["G3739"]],[27,30,["G4046"]],[30,31,["G1223"]],[31,33,["G2398"]],[33,34,["G129"]]]},{"k":27655,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,3,["G1492"]],[3,4,["G5124"]],[4,5,["G3754"]],[5,6,["G3326"]],[6,7,["G3450"]],[7,8,["G867"]],[8,10,["G926"]],[10,11,["G3074"]],[11,13,["G1525"]],[13,14,["G1519"]],[14,15,["G5209"]],[15,16,["G3361"]],[16,17,["G5339"]],[17,18,["G3588"]],[18,19,["G4168"]]]},{"k":27656,"v":[[0,1,["G2532"]],[1,2,["G1537"]],[2,5,["G5216","G846"]],[5,7,["G435"]],[7,8,["G450"]],[8,9,["G2980"]],[9,11,["G1294"]],[11,14,["G645"]],[14,15,["G3101"]],[15,16,["G3694"]],[16,17,["G846"]]]},{"k":27657,"v":[[0,1,["G1352"]],[1,2,["G1127"]],[2,4,["G3421"]],[4,5,["G3754"]],[5,11,["G5148"]],[11,13,["G3973"]],[13,14,["G3756"]],[14,16,["G3560"]],[16,17,["G1538"]],[17,18,["G1520"]],[18,19,["G3571"]],[19,20,["G2532"]],[20,21,["G2250"]],[21,22,["G3326"]],[22,23,["G1144"]]]},{"k":27658,"v":[[0,1,["G2532"]],[1,2,["G3569"]],[2,3,["G80"]],[3,5,["G3908"]],[5,6,["G5209"]],[6,8,["G2316"]],[8,9,["G2532"]],[9,11,["G3588"]],[11,12,["G3056"]],[12,14,["G846"]],[14,15,["G5485"]],[15,18,["G1410"]],[18,22,["G2026"]],[22,23,["G2532"]],[23,25,["G1325"]],[25,26,["G5213"]],[26,28,["G2817"]],[28,29,["G1722"]],[29,30,["G3956"]],[30,34,["G37"]]]},{"k":27659,"v":[[0,3,["G1937"]],[3,5,["G3762"]],[5,6,["G694"]],[6,7,["G2228"]],[7,8,["G5553"]],[8,9,["G2228"]],[9,10,["G2441"]]]},{"k":27660,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,4,["G1097"]],[4,5,["G3754"]],[5,6,["G3778"]],[6,7,["G5495"]],[7,9,["G5256"]],[9,11,["G3450"]],[11,12,["G5532"]],[12,13,["G2532"]],[13,17,["G5607"]],[17,18,["G3326"]],[18,19,["G1700"]]]},{"k":27661,"v":[[0,3,["G5263"]],[3,4,["G5213"]],[4,6,["G3956"]],[6,8,["G3754"]],[8,9,["G3779"]],[9,10,["G2872"]],[10,12,["G1163"]],[12,14,["G482"]],[14,15,["G3588"]],[15,16,["G770"]],[16,17,["G5037"]],[17,19,["G3421"]],[19,20,["G3588"]],[20,21,["G3056"]],[21,23,["G3588"]],[23,24,["G2962"]],[24,25,["G2424"]],[25,26,["G3754"]],[26,27,["G848"]],[27,28,["G2036"]],[28,30,["G2076"]],[30,31,["G3123"]],[31,32,["G3107"]],[32,34,["G1325"]],[34,35,["G2228"]],[35,37,["G2983"]]]},{"k":27662,"v":[[0,1,["G2532"]],[1,5,["G5023"]],[5,6,["G2036"]],[6,9,["G5087","G846","G1119"]],[9,11,["G4336"]],[11,12,["G4862"]],[12,13,["G846"]],[13,14,["G3956"]]]},{"k":27663,"v":[[0,1,["G1161"]],[1,5,["G1096","G2425","G2805","G3956"]],[5,6,["G2532"]],[6,7,["G1968"]],[7,8,["G1909"]],[8,9,["G3972"]],[9,10,["G5137"]],[10,12,["G2705"]],[12,13,["G846"]]]},{"k":27664,"v":[[0,1,["G3600"]],[1,4,["G3122"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G3056"]],[7,8,["G3739"]],[8,10,["G2046"]],[10,11,["G3754"]],[11,13,["G3195"]],[13,14,["G2334"]],[14,15,["G848"]],[15,16,["G4383"]],[16,18,["G3765"]],[18,19,["G1161"]],[19,21,["G4311"]],[21,22,["G846"]],[22,23,["G1519"]],[23,24,["G3588"]],[24,25,["G4143"]]]},{"k":27665,"v":[[0,1,["G1161"]],[1,2,["(G5613)"]],[2,5,["G1096"]],[5,8,["G2248"]],[8,10,["G645"]],[10,11,["G575"]],[11,12,["G846"]],[12,15,["G321"]],[15,17,["G2064"]],[17,21,["G2113"]],[21,22,["G1519"]],[22,23,["G2972"]],[23,24,["G1161"]],[24,25,["G3588"]],[25,27,["G1836"]],[27,28,["G1519"]],[28,29,["G4499"]],[29,32,["G2547"]],[32,33,["G1519"]],[33,34,["G3959"]]]},{"k":27666,"v":[[0,1,["G2532"]],[1,2,["G2147"]],[2,4,["G4143"]],[4,6,["G1276"]],[6,7,["G1519"]],[7,8,["G5403"]],[8,11,["G1910"]],[11,14,["G321"]]]},{"k":27667,"v":[[0,1,["G1161"]],[1,5,["G398"]],[5,6,["G2954"]],[6,7,["(G2532)"]],[7,8,["G2641"]],[8,9,["G846"]],[9,13,["G2176"]],[13,15,["G4126"]],[15,16,["G1519"]],[16,17,["G4947"]],[17,18,["G2532"]],[18,19,["G2609"]],[19,20,["G1519"]],[20,21,["G5184"]],[21,22,["G1063"]],[22,23,["G1566"]],[23,24,["G3588"]],[24,25,["G4143"]],[25,26,["G2258"]],[26,28,["G670"]],[28,30,["G1117"]]]},{"k":27668,"v":[[0,1,["G2532"]],[1,2,["G429"]],[2,3,["G3101"]],[3,5,["G1961"]],[5,6,["G847"]],[6,7,["G2033"]],[7,8,["G2250"]],[8,9,["G3748"]],[9,10,["G3004"]],[10,12,["G3972"]],[12,13,["G1223"]],[13,14,["G3588"]],[14,15,["G4151"]],[15,19,["G3361"]],[19,21,["G305"]],[21,22,["G1519"]],[22,23,["G2419"]]]},{"k":27669,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,3,["G2248"]],[3,4,["G1096"]],[4,5,["G1822"]],[5,7,["G2250"]],[7,9,["G1831"]],[9,13,["G4198"]],[13,16,["G3956"]],[16,21,["G4311","G2248"]],[21,22,["G4862"]],[22,23,["G1135"]],[23,24,["G2532"]],[24,25,["G5043"]],[25,26,["G2193"]],[26,29,["G1854"]],[29,31,["G3588"]],[31,32,["G4172"]],[32,33,["G2532"]],[33,36,["G5087","G1119"]],[36,37,["G1909"]],[37,38,["G3588"]],[38,39,["G123"]],[39,41,["G4336"]]]},{"k":27670,"v":[[0,1,["G2532"]],[1,7,["G782"]],[7,10,["G240"]],[10,13,["G1910","G1519","G4143"]],[13,14,["G1161"]],[14,15,["G1565"]],[15,16,["G5290"]],[16,18,["G1519","G2398"]]]},{"k":27671,"v":[[0,1,["G1161"]],[1,3,["G2249"]],[3,5,["G1274"]],[5,7,["G4144"]],[7,8,["G575"]],[8,9,["G5184"]],[9,11,["G2658"]],[11,12,["G1519"]],[12,13,["G4424"]],[13,14,["G2532"]],[14,15,["G782"]],[15,16,["G3588"]],[16,17,["G80"]],[17,19,["G3306"]],[19,20,["G3844"]],[20,21,["G846"]],[21,22,["G3391"]],[22,23,["G2250"]]]},{"k":27672,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1887"]],[3,10,["G4012","G3972"]],[10,11,["G1831"]],[11,13,["G2064"]],[13,14,["G1519"]],[14,15,["G2542"]],[15,16,["G2532"]],[16,18,["G1525"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G3624"]],[21,23,["G5376"]],[23,24,["G3588"]],[24,25,["G2099"]],[25,27,["G5607"]],[27,29,["G1537"]],[29,30,["G3588"]],[30,31,["G2033"]],[31,33,["G3306"]],[33,34,["G3844"]],[34,35,["G846"]]]},{"k":27673,"v":[[0,1,["G1161"]],[1,4,["G5129"]],[4,5,["G2258"]],[5,6,["G5064"]],[6,7,["G2364"]],[7,8,["G3933"]],[8,11,["G4395"]]]},{"k":27674,"v":[[0,1,["G1161"]],[1,3,["G2257"]],[3,4,["G1961"]],[4,6,["G4119"]],[6,7,["G2250"]],[7,10,["G2718"]],[10,11,["G575"]],[11,12,["G2449"]],[12,14,["G5100"]],[14,15,["G4396"]],[15,16,["G3686"]],[16,17,["G13"]]]},{"k":27675,"v":[[0,1,["G2532"]],[1,5,["G2064"]],[5,6,["G4314"]],[6,7,["G2248"]],[7,8,["(G2532)"]],[8,9,["G142"]],[9,10,["G3972"]],[10,11,["G2223"]],[11,12,["G5037"]],[12,13,["G1210"]],[13,15,["G848"]],[15,16,["G5495"]],[16,17,["G2532"]],[17,18,["G4228"]],[18,20,["G2036"]],[20,21,["G3592"]],[21,22,["G3004"]],[22,23,["G3588"]],[23,24,["G40"]],[24,25,["G4151"]],[25,26,["G3779"]],[26,28,["G3588"]],[28,29,["G2453"]],[29,30,["G1722"]],[30,31,["G2419"]],[31,32,["G1210"]],[32,33,["G3588"]],[33,34,["G435"]],[34,35,["G3739"]],[35,36,["G2076"]],[36,37,["G3778"]],[37,38,["G2223"]],[38,39,["G2532"]],[39,41,["G3860"]],[41,43,["G1519"]],[43,45,["G5495"]],[45,48,["G1484"]]]},{"k":27676,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,4,["G191"]],[4,6,["G5023"]],[6,7,["G5037"]],[7,8,["G2249"]],[8,9,["G2532"]],[9,13,["G1786"]],[13,14,["G3870"]],[14,15,["G846"]],[15,16,["G3361"]],[16,19,["G305"]],[19,20,["G1519"]],[20,21,["G2419"]]]},{"k":27677,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,3,["G611"]],[3,4,["G5101"]],[4,5,["G4160"]],[5,8,["G2799"]],[8,9,["G2532"]],[9,11,["G4919"]],[11,12,["G3450"]],[12,13,["G2588"]],[13,14,["G1063"]],[14,15,["G1473"]],[15,16,["G2192"]],[16,17,["G2093"]],[17,18,["G3756"]],[18,21,["G1210"]],[21,22,["G3440"]],[22,23,["G235"]],[23,24,["G2532"]],[24,26,["G599"]],[26,27,["G1519"]],[27,28,["G2419"]],[28,29,["G5228"]],[29,30,["G3588"]],[30,31,["G3686"]],[31,33,["G3588"]],[33,34,["G2962"]],[34,35,["G2424"]]]},{"k":27678,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G3361"]],[5,7,["G3982"]],[7,9,["G2270"]],[9,10,["G2036"]],[10,11,["G3588"]],[11,12,["G2307"]],[12,14,["G3588"]],[14,15,["G2962"]],[15,17,["G1096"]]]},{"k":27679,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,3,["G5025"]],[3,4,["G2250"]],[4,9,["G643"]],[9,12,["G305"]],[12,13,["G1519"]],[13,14,["G2419"]]]},{"k":27680,"v":[[0,1,["(G1161)"]],[1,2,["G4905"]],[2,3,["G4862"]],[3,4,["G2254"]],[4,5,["G2532"]],[5,8,["G3588"]],[8,9,["G3101"]],[9,10,["G575"]],[10,11,["G2542"]],[11,13,["G71"]],[13,16,["G5100"]],[16,17,["G3416"]],[17,19,["G2953"]],[19,21,["G744"]],[21,22,["G3101"]],[22,23,["G3844"]],[23,24,["G3739"]],[24,27,["G3579"]]]},{"k":27681,"v":[[0,1,["G1161"]],[1,3,["G2257"]],[3,5,["G1096"]],[5,6,["G1519"]],[6,7,["G2414"]],[7,8,["G3588"]],[8,9,["G80"]],[9,10,["G1209"]],[10,11,["G2248"]],[11,12,["G780"]]]},{"k":27682,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G1966"]],[4,5,["G3972"]],[5,7,["G1524"]],[7,8,["G4862"]],[8,9,["G2254"]],[9,10,["G4314"]],[10,11,["G2385"]],[11,12,["G5037"]],[12,13,["G3956"]],[13,14,["G3588"]],[14,15,["G4245"]],[15,17,["G3854"]]]},{"k":27683,"v":[[0,1,["G2532"]],[1,5,["G782"]],[5,6,["G846"]],[6,8,["G1834"]],[8,9,["G2596","G1520","G1538"]],[9,11,["G3739"]],[11,12,["G2316"]],[12,14,["G4160"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G1484"]],[17,18,["G1223"]],[18,19,["G848"]],[19,20,["G1248"]]]},{"k":27684,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G191"]],[4,7,["G1392"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,10,["G5037"]],[10,11,["G2036"]],[11,13,["G846"]],[13,15,["G2334"]],[15,16,["G80"]],[16,18,["G4214"]],[18,19,["G3461"]],[19,21,["G2453"]],[21,23,["G1526"]],[23,25,["G4100"]],[25,26,["G2532"]],[26,28,["G5225"]],[28,29,["G3956"]],[29,30,["G2207"]],[30,32,["G3588"]],[32,33,["G3551"]]]},{"k":27685,"v":[[0,1,["G1161"]],[1,4,["G2727"]],[4,5,["G4012"]],[5,6,["G4675"]],[6,7,["G3754"]],[7,9,["G1321"]],[9,10,["G3956"]],[10,12,["G2453"]],[12,13,["G3588"]],[13,15,["G2596"]],[15,16,["G3588"]],[16,17,["G1484"]],[17,19,["G646"]],[19,20,["G3475"]],[20,21,["G3004"]],[21,23,["G846"]],[23,25,["G3361"]],[25,27,["G4059"]],[27,29,["G5043"]],[29,30,["G3366"]],[30,32,["G4043"]],[32,34,["G3588"]],[34,35,["G1485"]]]},{"k":27686,"v":[[0,1,["G5101"]],[1,2,["G2076"]],[2,4,["G3767"]],[4,6,["G4128"]],[6,7,["G1163"]],[7,8,["G3843"]],[8,10,["G4905"]],[10,11,["G1063"]],[11,14,["G191"]],[14,15,["G3754"]],[15,18,["G2064"]]]},{"k":27687,"v":[[0,1,["G4160"]],[1,2,["G3767"]],[2,3,["G5124"]],[3,4,["G3739"]],[4,6,["G3004"]],[6,8,["G4671"]],[8,9,["G2254"]],[9,10,["G1526"]],[10,11,["G5064"]],[11,12,["G435"]],[12,14,["G2192"]],[14,16,["G2171"]],[16,17,["G1909"]],[17,18,["G1438"]]]},{"k":27688,"v":[[0,1,["G5128"]],[1,2,["G3880"]],[2,4,["G48"]],[4,6,["G4862"]],[6,7,["G846"]],[7,8,["G2532"]],[8,11,["G1159"]],[11,12,["G1909"]],[12,13,["G846"]],[13,14,["G2443"]],[14,17,["G3587"]],[17,19,["G2776"]],[19,20,["G2532"]],[20,21,["G3956"]],[21,23,["G1097"]],[23,24,["G3754"]],[24,27,["G3739"]],[27,30,["G2727"]],[30,31,["G4012"]],[31,32,["G4675"]],[32,33,["G2076"]],[33,34,["G3762"]],[34,35,["G235"]],[35,37,["G848"]],[37,39,["G2532"]],[39,41,["G4748"]],[41,43,["G5442"]],[43,44,["G3588"]],[44,45,["G3551"]]]},{"k":27689,"v":[[0,0,["(G1161)"]],[0,2,["G4012"]],[2,3,["G3588"]],[3,4,["G1484"]],[4,6,["G4100"]],[6,7,["G2249"]],[7,9,["G1989"]],[9,11,["G2919"]],[11,13,["G846"]],[13,14,["G5083"]],[14,15,["G3367"]],[15,17,["G5108"]],[17,18,["G1508"]],[18,22,["G5442"]],[22,23,["G846"]],[23,24,["(G5037)"]],[24,28,["G1494"]],[28,29,["G2532"]],[29,31,["G129"]],[31,32,["G2532"]],[32,34,["G4156"]],[34,35,["G2532"]],[35,37,["G4202"]]]},{"k":27690,"v":[[0,1,["G5119"]],[1,2,["G3972"]],[2,3,["G3880"]],[3,4,["G3588"]],[4,5,["G435"]],[5,7,["G3588"]],[7,8,["G2192"]],[8,9,["G2250"]],[9,10,["G48"]],[10,12,["G4862"]],[12,13,["G846"]],[13,14,["G1524"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G2411"]],[17,19,["G1229"]],[19,20,["G3588"]],[20,21,["G1604"]],[21,23,["G3588"]],[23,24,["G2250"]],[24,26,["G49"]],[26,27,["G2193","G3757"]],[27,30,["G4376"]],[30,33,["G4374"]],[33,34,["G5228"]],[34,35,["G1538"]],[35,36,["G1520"]],[36,38,["G846"]]]},{"k":27691,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G3588"]],[3,4,["G2033"]],[4,5,["G2250"]],[5,7,["G3195"]],[7,8,["G4931"]],[8,9,["G3588"]],[9,10,["G2453"]],[10,13,["G575"]],[13,14,["G773"]],[14,17,["G2300"]],[17,18,["G846"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G2411"]],[21,23,["G4797"]],[23,24,["G3956"]],[24,25,["G3588"]],[25,26,["G3793"]],[26,27,["G2532"]],[27,28,["G1911"]],[28,29,["G5495"]],[29,30,["G1909"]],[30,31,["G846"]]]},{"k":27692,"v":[[0,2,["G2896"]],[2,3,["G435"]],[3,5,["G2475"]],[5,6,["G997"]],[6,7,["G3778"]],[7,8,["G2076"]],[8,9,["G3588"]],[9,10,["G444"]],[10,12,["G1321"]],[12,13,["G3956"]],[13,16,["G3837"]],[16,17,["G2596"]],[17,18,["G3588"]],[18,19,["G2992"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G3551"]],[22,23,["G2532"]],[23,24,["G5127"]],[24,25,["G5117"]],[25,26,["G5037"]],[26,27,["G2089"]],[27,28,["G1521"]],[28,29,["G1672"]],[29,30,["G2532"]],[30,31,["G1519"]],[31,32,["G3588"]],[32,33,["G2411"]],[33,34,["G2532"]],[34,36,["G2840"]],[36,37,["G5126"]],[37,38,["G40"]],[38,39,["G5117"]]]},{"k":27693,"v":[[0,1,["G1063"]],[1,3,["G2258"]],[3,5,["G4308"]],[5,6,["G4862"]],[6,7,["G846"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G4172"]],[10,11,["G5161"]],[11,13,["G2180"]],[13,14,["G3739"]],[14,16,["G3543"]],[16,17,["G3754"]],[17,18,["G3972"]],[18,20,["G1521"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G2411"]]]},{"k":27694,"v":[[0,1,["G5037"]],[1,2,["G3650"]],[2,3,["G3588"]],[3,4,["G4172"]],[4,6,["G2795"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G2992"]],[9,11,["G1096","G4890"]],[11,12,["G2532"]],[12,14,["G1949"]],[14,15,["G3972"]],[15,17,["G1670"]],[17,18,["G846"]],[18,19,["G1854"]],[19,21,["G3588"]],[21,22,["G2411"]],[22,23,["G2532"]],[23,24,["G2112"]],[24,25,["G3588"]],[25,26,["G2374"]],[26,28,["G2808"]]]},{"k":27695,"v":[[0,1,["G1161"]],[1,5,["G2212"]],[5,7,["G615"]],[7,8,["G846"]],[8,9,["G5334"]],[9,10,["G305"]],[10,12,["G3588"]],[12,14,["G5506"]],[14,16,["G3588"]],[16,17,["G4686"]],[17,18,["G3754"]],[18,19,["G3650"]],[19,20,["G2419"]],[20,24,["G4797"]]]},{"k":27696,"v":[[0,1,["G3739"]],[1,2,["G1824"]],[2,3,["G3880"]],[3,4,["G4757"]],[4,5,["G2532"]],[5,6,["G1543"]],[6,9,["G2701"]],[9,10,["G1909"]],[10,11,["G846"]],[11,12,["G1161"]],[12,14,["G3588"]],[14,15,["G1492"]],[15,16,["G3588"]],[16,18,["G5506"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G4757"]],[21,23,["G3973"]],[23,24,["G5180"]],[24,26,["G3972"]]]},{"k":27697,"v":[[0,1,["G5119"]],[1,2,["G3588"]],[2,4,["G5506"]],[4,6,["G1448"]],[6,8,["G1949"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G2753"]],[11,15,["G1210"]],[15,17,["G1417"]],[17,18,["G254"]],[18,19,["G2532"]],[19,20,["G4441"]],[20,21,["G5101"]],[21,23,["G1498","G302"]],[23,24,["G2532"]],[24,25,["G5101"]],[25,27,["G2076"]],[27,28,["G4160"]]]},{"k":27698,"v":[[0,1,["G1161"]],[1,7,["G243","G994","G243","G5100"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G3793"]],[10,11,["G1161"]],[11,14,["G1410"]],[14,15,["G3361"]],[15,16,["G1097"]],[16,17,["G3588"]],[17,18,["G804"]],[18,19,["G1223"]],[19,20,["G3588"]],[20,21,["G2351"]],[21,23,["G2753"]],[23,24,["G846"]],[24,27,["G71"]],[27,28,["G1519"]],[28,29,["G3588"]],[29,30,["G3925"]]]},{"k":27699,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,4,["G1096"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G304"]],[7,10,["G4819"]],[10,12,["G846"]],[12,14,["G941"]],[14,15,["G5259"]],[15,16,["G3588"]],[16,17,["G4757"]],[17,18,["G1223"]],[18,19,["G3588"]],[19,20,["G970"]],[20,22,["G3588"]],[22,23,["G3793"]]]},{"k":27700,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G4128"]],[3,5,["G3588"]],[5,6,["G2992"]],[6,8,["G190"]],[8,9,["G2896"]],[9,10,["G142"]],[10,12,["G846"]]]},{"k":27701,"v":[[0,1,["G5037"]],[1,3,["G3972"]],[3,4,["(G3195)"]],[4,7,["G1521"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G3925"]],[10,12,["G3004"]],[12,14,["G3588"]],[14,16,["G5506","(G1487)"]],[16,17,["G1832"]],[17,18,["G3427"]],[18,19,["G2036"]],[19,20,["G4314"]],[20,21,["G4571","(G1161)"]],[21,22,["G3588"]],[22,23,["G5346"]],[23,27,["G1097","G1676"]]]},{"k":27702,"v":[[0,1,["G1488"]],[1,2,["G3756"]],[2,3,["G4771"]],[3,4,["(G686)"]],[4,5,["G124"]],[5,7,["G4253"]],[7,8,["G5130"]],[8,9,["G2250"]],[9,12,["G387"]],[12,13,["G2532"]],[13,15,["G1806"]],[15,16,["G1519"]],[16,17,["G3588"]],[17,18,["G2048"]],[18,20,["G5070"]],[20,21,["G435"]],[21,24,["G4607"]]]},{"k":27703,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,3,["G2036"]],[3,4,["G1473"]],[4,5,["G1510"]],[5,7,["G444"]],[7,8,["(G3303)"]],[8,11,["G2453"]],[11,13,["G5018"]],[13,17,["G2791"]],[17,19,["G4177"]],[19,21,["G3756"]],[21,22,["G767"]],[22,23,["G4172"]],[23,24,["G1161"]],[24,26,["G1189"]],[26,27,["G4675"]],[27,28,["G2010"]],[28,29,["G3427"]],[29,31,["G2980"]],[31,32,["G4314"]],[32,33,["G3588"]],[33,34,["G2992"]]]},{"k":27704,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,7,["G2010"]],[7,8,["G3972"]],[8,9,["G2476"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G304"]],[12,14,["G2678"]],[14,16,["G3588"]],[16,17,["G5495"]],[17,19,["G3588"]],[19,20,["G2992"]],[20,21,["G1161"]],[21,25,["G1096"]],[25,27,["G4183"]],[27,28,["G4602"]],[28,31,["G4377"]],[31,34,["G3588"]],[34,35,["G1446"]],[35,36,["G1258"]],[36,37,["G3004"]]]},{"k":27705,"v":[[0,1,["G435"]],[1,2,["G80"]],[2,3,["G2532"]],[3,4,["G3962"]],[4,5,["G191"]],[5,7,["G3450"]],[7,8,["G627"]],[8,12,["G3568"]],[12,13,["G4314"]],[13,14,["G5209"]]]},{"k":27706,"v":[[0,1,["G1161"]],[1,4,["G191"]],[4,5,["G3754"]],[5,7,["G4377"]],[7,9,["G3588"]],[9,10,["G1446"]],[10,11,["G1258"]],[11,13,["G846"]],[13,15,["G3930"]],[15,17,["G3123"]],[17,18,["G2271"]],[18,19,["G2532"]],[19,21,["G5346"]]]},{"k":27707,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,3,["G3303"]],[3,5,["G435"]],[5,9,["G2453"]],[9,10,["G1080"]],[10,11,["G1722"]],[11,12,["G5019"]],[12,16,["G2791"]],[16,17,["G1161"]],[17,19,["G397"]],[19,20,["G1722"]],[20,21,["G5026"]],[21,22,["G4172"]],[22,23,["G3844"]],[23,24,["G3588"]],[24,25,["G4228"]],[25,27,["G1059"]],[27,29,["G3811"]],[29,30,["G2596"]],[30,34,["G195"]],[34,37,["G3551"]],[37,39,["G3588"]],[39,40,["G3971"]],[40,42,["G5225"]],[42,43,["G2207"]],[43,45,["G2316"]],[45,46,["G2531"]],[46,47,["G5210"]],[47,48,["G3956"]],[48,49,["G2075"]],[49,51,["G4594"]]]},{"k":27708,"v":[[0,2,["(G3739)"]],[2,3,["G1377"]],[3,4,["G5026"]],[4,5,["G3598"]],[5,6,["G891"]],[6,8,["G2288"]],[8,9,["G1195"]],[9,10,["G2532"]],[10,11,["G3860"]],[11,12,["G1519"]],[12,13,["G5438"]],[13,14,["G5037"]],[14,15,["G435"]],[15,16,["G2532"]],[16,17,["G1135"]]]},{"k":27709,"v":[[0,1,["G5613"]],[1,2,["G2532"]],[2,3,["G3588"]],[3,5,["G749"]],[5,9,["G3140","G3427"]],[9,10,["G2532"]],[10,11,["G3956"]],[11,12,["G3588"]],[12,16,["G4244"]],[16,17,["G3844"]],[17,18,["G3739"]],[18,19,["G2532"]],[19,21,["G1209"]],[21,22,["G1992"]],[22,23,["G4314"]],[23,24,["G3588"]],[24,25,["G80"]],[25,27,["G4198"]],[27,28,["G1519"]],[28,29,["G1154"]],[29,31,["G71","(G2532)"]],[31,34,["G5607"]],[34,35,["G1566"]],[35,36,["G1210"]],[36,37,["G1519"]],[37,38,["G2419"]],[38,40,["G2443"]],[40,42,["G5097"]]]},{"k":27710,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,8,["G3427"]],[8,11,["G4198"]],[11,12,["G2532"]],[12,15,["G1448"]],[15,17,["G1154"]],[17,18,["G4012"]],[18,19,["G3314"]],[19,20,["G1810"]],[20,22,["G4015"]],[22,23,["G1537"]],[23,24,["G3772"]],[24,26,["G2425"]],[26,27,["G5457"]],[27,29,["G4012"]],[29,30,["G1691"]]]},{"k":27711,"v":[[0,1,["G5037"]],[1,3,["G4098"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G1475"]],[6,7,["G2532"]],[7,8,["G191"]],[8,10,["G5456"]],[10,11,["G3004"]],[11,13,["G3427"]],[13,14,["G4549"]],[14,15,["G4549"]],[15,16,["G5101"]],[16,17,["G1377"]],[17,19,["G3165"]]]},{"k":27712,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G611"]],[3,4,["G5101"]],[4,5,["G1488"]],[5,7,["G2962"]],[7,8,["G5037"]],[8,10,["G2036"]],[10,11,["G4314"]],[11,12,["G3165"]],[12,13,["G1473"]],[13,14,["G1510"]],[14,15,["G2424"]],[15,17,["G3480"]],[17,18,["G3739"]],[18,19,["G4771"]],[19,20,["G1377"]]]},{"k":27713,"v":[[0,1,["G1161"]],[1,4,["G5607"]],[4,5,["G4862"]],[5,6,["G1698"]],[6,7,["G2300"]],[7,8,["G3303"]],[8,9,["G3588"]],[9,10,["G5457"]],[10,11,["G2532"]],[11,12,["G1096"]],[12,13,["G1719"]],[13,14,["G1161"]],[14,16,["G191"]],[16,17,["G3756"]],[17,18,["G3588"]],[18,19,["G5456"]],[19,23,["G2980"]],[23,25,["G3427"]]]},{"k":27714,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G5101"]],[4,7,["G4160"]],[7,8,["G2962"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G2962"]],[11,12,["G2036"]],[12,13,["G4314"]],[13,14,["G3165"]],[14,15,["G450"]],[15,17,["G4198"]],[17,18,["G1519"]],[18,19,["G1154"]],[19,21,["G2546"]],[21,25,["G2980"]],[25,26,["G4671"]],[26,27,["G4012"]],[27,29,["G3956"]],[29,30,["G3739"]],[30,32,["G5021"]],[32,34,["G4671"]],[34,36,["G4160"]]]},{"k":27715,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,5,["G3756"]],[5,6,["G1689"]],[6,7,["G575"]],[7,8,["G3588"]],[8,9,["G1391"]],[9,11,["G1565"]],[11,12,["G5457"]],[12,17,["G5496"]],[17,18,["G5259"]],[18,22,["G4895"]],[22,23,["G3427"]],[23,25,["G2064"]],[25,26,["G1519"]],[26,27,["G1154"]]]},{"k":27716,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G367"]],[3,5,["G2152"]],[5,6,["G435"]],[6,7,["G2596"]],[7,9,["G3588"]],[9,10,["G3551"]],[10,14,["G3140"]],[14,15,["G5259"]],[15,16,["G3956"]],[16,17,["G3588"]],[17,18,["G2453"]],[18,20,["G2730"]],[20,21,[]]]},{"k":27717,"v":[[0,1,["G2064"]],[1,2,["G4314"]],[2,3,["G3165"]],[3,4,["G2532"]],[4,5,["G2186"]],[5,7,["G2036"]],[7,9,["G3427"]],[9,10,["G80"]],[10,11,["G4549"]],[11,14,["G308"]],[14,16,["G3588"]],[16,17,["G846"]],[17,18,["G5610"]],[18,19,["G2504"]],[19,21,["G308"]],[21,22,["G1519"]],[22,23,["G846"]]]},{"k":27718,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G3588"]],[4,5,["G2316"]],[5,7,["G2257"]],[7,8,["G3962"]],[8,10,["G4400"]],[10,11,["G4571"]],[11,15,["G1097"]],[15,16,["G848"]],[16,17,["G2307"]],[17,18,["G2532"]],[18,19,["G1492"]],[19,22,["G1342"]],[22,23,["G2532"]],[23,25,["G191"]],[25,27,["G5456"]],[27,28,["G1537"]],[28,29,["G848"]],[29,30,["G4750"]]]},{"k":27719,"v":[[0,1,["G3754"]],[1,4,["G2071"]],[4,5,["G846"]],[5,6,["G3144"]],[6,7,["G4314"]],[7,8,["G3956"]],[8,9,["G444"]],[9,11,["G3739"]],[11,14,["G3708"]],[14,15,["G2532"]],[15,16,["G191"]]]},{"k":27720,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,3,["G5101"]],[3,4,["G3195"]],[4,6,["G450"]],[6,9,["G907"]],[9,10,["G2532"]],[10,12,["G628"]],[12,13,["G4675"]],[13,14,["G266"]],[14,16,["G1941"]],[16,17,["G3588"]],[17,18,["G3686"]],[18,20,["G3588"]],[20,21,["G2962"]]]},{"k":27721,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,8,["G3427"]],[8,11,["G5290"]],[11,12,["G1519"]],[12,13,["G2419"]],[13,14,["G2532"]],[14,16,["G3450"]],[16,17,["G4336"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,20,["G2411"]],[20,21,["G3165"]],[21,22,["G1096"]],[22,23,["G1722"]],[23,25,["G1611"]]]},{"k":27722,"v":[[0,1,["G2532"]],[1,2,["G1492"]],[2,3,["G846"]],[3,4,["G3004"]],[4,6,["G3427"]],[6,8,["G4692"]],[8,9,["G2532"]],[9,10,["G1831"]],[10,12,["G1722","G5034"]],[12,14,["G1537"]],[14,15,["G2419"]],[15,16,["G1360"]],[16,19,["G3756"]],[19,20,["G3858"]],[20,21,["G4675"]],[21,22,["G3141"]],[22,23,["G4012"]],[23,24,["G1700"]]]},{"k":27723,"v":[[0,2,["G2504"]],[2,3,["G2036"]],[3,4,["G2962"]],[4,5,["G846"]],[5,6,["G1987"]],[6,7,["G3754"]],[7,8,["G1473"]],[8,9,["G2252","G5439"]],[9,10,["G2532"]],[10,11,["G1194"]],[11,14,["G2596","G4864"]],[14,17,["G4100"]],[17,18,["G1909"]],[18,19,["G4571"]]]},{"k":27724,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,3,["G3588"]],[3,4,["G129"]],[4,6,["G4675"]],[6,7,["G3144"]],[7,8,["G4736"]],[8,10,["G1632"]],[10,11,["G848"]],[11,12,["G2532"]],[12,13,["G2252"]],[13,15,["G2186"]],[15,16,["G2532"]],[16,17,["G4909"]],[17,19,["G848"]],[19,20,["G336"]],[20,21,["G2532"]],[21,22,["G5442"]],[22,23,["G3588"]],[23,24,["G2440"]],[24,28,["G337"]],[28,29,["G846"]]]},{"k":27725,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,4,["G4314"]],[4,5,["G3165"]],[5,6,["G4198"]],[6,7,["G3754"]],[7,8,["G1473"]],[8,10,["G1821"]],[10,11,["G4571"]],[11,13,["G3112"]],[13,14,["G1519"]],[14,16,["G1484"]]]},{"k":27726,"v":[[0,1,["G1161"]],[1,5,["G191","G846"]],[5,6,["G891"]],[6,7,["G5127"]],[7,8,["G3056"]],[8,9,["G2532"]],[9,12,["G1869"]],[12,13,["G848"]],[13,14,["G5456"]],[14,16,["G3004"]],[16,17,["G142"]],[17,19,["G5108"]],[19,22,["G575"]],[22,23,["G3588"]],[23,24,["G1093"]],[24,25,["G1063"]],[25,29,["G2520","G3756"]],[29,31,["G846"]],[31,33,["G2198"]]]},{"k":27727,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G2905"]],[5,6,["G2532"]],[6,8,["G4495"]],[8,10,["G2440"]],[10,11,["G2532"]],[11,12,["G906"]],[12,13,["G2868"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G109"]]]},{"k":27728,"v":[[0,1,["G3588"]],[1,3,["G5506"]],[3,4,["G2753"]],[4,5,["G846"]],[5,8,["G71"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G3925"]],[11,13,["G2036"]],[13,15,["G846"]],[15,18,["G426"]],[18,20,["G3148"]],[20,21,["G2443"]],[21,24,["G1921"]],[24,25,["G1223","G3739","G156"]],[25,29,["G2019","G3779"]],[29,30,["G846"]]]},{"k":27729,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,4,["G4385"]],[4,5,["G846"]],[5,7,["G2438"]],[7,8,["G3972"]],[8,9,["G2036"]],[9,10,["G4314"]],[10,12,["G1543"]],[12,15,["G2476","(G1487)"]],[15,18,["G1832"]],[18,20,["G5213"]],[20,22,["G3147"]],[22,24,["G444"]],[24,28,["G4514"]],[28,29,["G2532"]],[29,30,["G178"]]]},{"k":27730,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1543"]],[3,4,["G191"]],[4,7,["G4334"]],[7,9,["G518"]],[9,10,["G3588"]],[10,12,["G5506"]],[12,13,["G3004"]],[13,15,["G3708"]],[15,16,["G5101"]],[16,17,["(G3195)"]],[17,18,["G4160"]],[18,19,["G1063"]],[19,20,["G3778"]],[20,21,["G444"]],[21,22,["G2076"]],[22,24,["G4514"]]]},{"k":27731,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G5506"]],[4,5,["G4334"]],[5,7,["G2036"]],[7,9,["G846"]],[9,10,["G3004"]],[10,11,["G3427","(G1487)"]],[11,12,["G1488"]],[12,13,["G4771"]],[13,15,["G4514","(G1161)"]],[15,16,["G3588"]],[16,17,["G5346"]],[17,18,["G3483"]]]},{"k":27732,"v":[[0,1,["G5037"]],[1,2,["G3588"]],[2,4,["G5506"]],[4,5,["G611"]],[5,8,["G4183"]],[8,9,["G2774"]],[9,10,["G2932"]],[10,11,["G1473"]],[11,12,["G5026"]],[12,13,["G4174"]],[13,14,["G1161"]],[14,15,["G3972"]],[15,16,["G5346"]],[16,17,["G1161"]],[17,18,["G1473"]],[18,19,["(G2532)"]],[19,21,["G1080"]]]},{"k":27733,"v":[[0,1,["G3767"]],[1,2,["G2112"]],[2,4,["G868"]],[4,5,["G575"]],[5,6,["G846"]],[6,8,["G3195"]],[8,10,["G426"]],[10,11,["G846"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,15,["G5506"]],[15,16,["G1161"]],[16,18,["G5399"]],[18,21,["G1921"]],[21,22,["G3754"]],[22,24,["G2076"]],[24,26,["G4514"]],[26,27,["G2532"]],[27,28,["G3754"]],[28,30,["G2258"]],[30,31,["G1210"]],[31,32,["G846"]]]},{"k":27734,"v":[[0,1,["(G1161)"]],[1,2,["G3588"]],[2,3,["G1887"]],[3,6,["G1014"]],[6,8,["G1097"]],[8,9,["G3588"]],[9,10,["G804"]],[10,11,["G5101"]],[11,14,["G2723"]],[14,15,["G3844"]],[15,16,["G3588"]],[16,17,["G2453"]],[17,19,["G3089"]],[19,20,["G846"]],[20,21,["G575"]],[21,23,["G1199"]],[23,24,["G2532"]],[24,25,["G2753"]],[25,26,["G3588"]],[26,28,["G749"]],[28,29,["G2532"]],[29,30,["G3650"]],[30,31,["G848"]],[31,32,["G4892"]],[32,34,["G2064"]],[34,35,["G2532"]],[35,38,["G2609","G3972"]],[38,40,["G2476"]],[40,42,["G1519"]],[42,43,["G846"]]]},{"k":27735,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,4,["G816"]],[4,5,["G3588"]],[5,6,["G4892"]],[6,7,["G2036"]],[7,8,["G435"]],[8,10,["G80"]],[10,11,["G1473"]],[11,13,["G4176"]],[13,15,["G3956"]],[15,16,["G18"]],[16,17,["G4893"]],[17,19,["G2316"]],[19,20,["G891"]],[20,21,["G5026"]],[21,22,["G2250"]]]},{"k":27736,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G367"]],[5,6,["G2004"]],[6,10,["G3936"]],[10,11,["G846"]],[11,13,["G5180"]],[13,14,["G848"]],[14,16,["G3588"]],[16,17,["G4750"]]]},{"k":27737,"v":[[0,1,["G5119"]],[1,2,["G2036"]],[2,3,["G3972"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G2316"]],[6,7,["G3195"]],[7,8,["G5180"]],[8,9,["G4571"]],[9,11,["G2867"]],[11,12,["G5109"]],[12,13,["G2532"]],[13,14,["G2521"]],[14,15,["G4771"]],[15,17,["G2919"]],[17,18,["G3165"]],[18,19,["G2596"]],[19,20,["G3588"]],[20,21,["G3551"]],[21,22,["G2532"]],[22,23,["G2753"]],[23,24,["G3165"]],[24,27,["G5180"]],[27,31,["G3891"]]]},{"k":27738,"v":[[0,1,["G1161"]],[1,5,["G3936"]],[5,6,["G2036"]],[6,7,["G3058"]],[7,9,["G2316"]],[9,11,["G749"]]]},{"k":27739,"v":[[0,1,["G5037"]],[1,2,["G5346"]],[2,3,["G3972"]],[3,5,["G1492"]],[5,6,["G3756"]],[6,7,["G80"]],[7,8,["G3754"]],[8,10,["G2076"]],[10,13,["G749"]],[13,14,["G1063"]],[14,17,["G1125"]],[17,20,["G3756"]],[20,21,["G2046"]],[21,22,["G2560"]],[22,25,["G758"]],[25,27,["G4675"]],[27,28,["G2992"]]]},{"k":27740,"v":[[0,1,["G1161"]],[1,3,["G3972"]],[3,4,["G1097"]],[4,5,["G3754"]],[5,6,["G3588"]],[6,7,["G1520"]],[7,8,["G3313"]],[8,9,["G2076"]],[9,10,["G4523"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,13,["G2087"]],[13,14,["G5330"]],[14,17,["G2896"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,20,["G4892"]],[20,21,["G435"]],[21,23,["G80"]],[23,24,["G1473"]],[24,25,["G1510"]],[25,27,["G5330"]],[27,29,["G5207"]],[29,32,["G5330"]],[32,33,["G4012"]],[33,35,["G1680"]],[35,36,["G2532"]],[36,37,["G386"]],[37,40,["G3498"]],[40,41,["G1473"]],[41,45,["G2919"]]]},{"k":27741,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G5124"]],[5,6,["G2980"]],[6,8,["G1096"]],[8,10,["G4714"]],[10,12,["G3588"]],[12,13,["G5330"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G4523"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G4128"]],[19,21,["G4977"]]]},{"k":27742,"v":[[0,1,["G1063"]],[1,2,["(G3303)"]],[2,3,["G4523"]],[3,4,["G3004"]],[4,7,["G1511"]],[7,8,["G3361"]],[8,9,["G386"]],[9,10,["G3366"]],[10,11,["G32"]],[11,12,["G3383"]],[12,13,["G4151"]],[13,14,["G1161"]],[14,16,["G5330"]],[16,17,["G3670"]],[17,18,["G297"]]]},{"k":27743,"v":[[0,1,["G1161"]],[1,3,["G1096"]],[3,5,["G3173"]],[5,6,["G2906"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G1122"]],[9,13,["G3588"]],[13,14,["G5330"]],[14,15,["G3313"]],[15,16,["G450"]],[16,18,["G1264"]],[18,19,["G3004"]],[19,21,["G2147"]],[21,22,["G3762"]],[22,23,["G2556"]],[23,24,["G1722"]],[24,25,["G5129"]],[25,26,["G444"]],[26,27,["G1161"]],[27,28,["G1487"]],[28,30,["G4151"]],[30,31,["G2228"]],[31,33,["G32"]],[33,35,["G2980"]],[35,37,["G846"]],[37,40,["G3361"]],[40,43,["G2313"]]]},{"k":27744,"v":[[0,1,["G1161"]],[1,4,["G1096"]],[4,6,["G4183"]],[6,7,["G4714"]],[7,8,["G3588"]],[8,10,["G5506"]],[10,11,["G2125"]],[11,12,["G3361"]],[12,13,["G3972"]],[13,19,["G1288"]],[19,20,["G5259"]],[20,21,["G846"]],[21,22,["G2753"]],[22,23,["G3588"]],[23,24,["G4753"]],[24,27,["G2597"]],[27,33,["G726","G846"]],[33,34,["G1537"]],[34,35,["G3319"]],[35,36,["G848"]],[36,37,["G5037"]],[37,39,["G71"]],[39,41,["G1519"]],[41,42,["G3588"]],[42,43,["G3925"]]]},{"k":27745,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3571"]],[3,4,["G1966"]],[4,5,["G3588"]],[5,6,["G2962"]],[6,8,["G2186"]],[8,9,["G846"]],[9,11,["G2036"]],[11,15,["G2293"]],[15,16,["G3972"]],[16,17,["G1063"]],[17,18,["G5613"]],[18,21,["G1263"]],[21,22,["G4012"]],[22,23,["G1700"]],[23,24,["G1722"]],[24,25,["G2419"]],[25,26,["G3779"]],[26,27,["G1163"]],[27,28,["G4571"]],[28,30,["G3140"]],[30,31,["G2532"]],[31,32,["G1519"]],[32,33,["G4516"]]]},{"k":27746,"v":[[0,1,["G1161"]],[1,4,["G1096"]],[4,5,["G2250"]],[5,6,["G5100"]],[6,8,["G3588"]],[8,9,["G2453"]],[9,11,["G4160","G4963"]],[11,17,["G332","G1438"]],[17,18,["G3004"]],[18,22,["G3383"]],[22,23,["G5315"]],[23,24,["G3383"]],[24,25,["G4095"]],[25,26,["G2193","G3757"]],[26,29,["G615"]],[29,30,["G3972"]]]},{"k":27747,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G4119"]],[4,6,["G5062"]],[6,9,["G4160"]],[9,10,["G5026"]],[10,11,["G4945"]]]},{"k":27748,"v":[[0,2,["G3748"]],[2,3,["G4334"]],[3,5,["G3588"]],[5,7,["G749"]],[7,8,["G2532"]],[8,9,["G4245"]],[9,11,["G2036"]],[11,19,["G332","G1438","G331"]],[19,23,["G1089"]],[23,24,["G3367"]],[24,25,["G2193","G3757"]],[25,28,["G615"]],[28,29,["G3972"]]]},{"k":27749,"v":[[0,1,["G3568"]],[1,2,["G3767"]],[2,3,["G5210"]],[3,4,["G4862"]],[4,5,["G3588"]],[5,6,["G4892"]],[6,7,["G1718"]],[7,9,["G3588"]],[9,11,["G5506"]],[11,12,["G3704"]],[12,16,["G2609","G846"]],[16,17,["G4314"]],[17,18,["G5209"]],[18,20,["G839"]],[20,22,["G5613"]],[22,24,["G3195"]],[24,25,["G1231"]],[25,28,["G197"]],[28,29,["G4012"]],[29,30,["G846"]],[30,31,["G1161"]],[31,32,["G2249"]],[32,34,["G4253"]],[34,35,["G846"]],[35,37,["G1448"]],[37,38,["G2070"]],[38,39,["G2092"]],[39,41,["G337"]],[41,42,["G846"]]]},{"k":27750,"v":[[0,1,["G1161"]],[1,3,["G3972"]],[3,4,["G79"]],[4,5,["G5207"]],[5,6,["G191"]],[6,11,["G1749"]],[11,13,["G3854"]],[13,14,["G2532"]],[14,15,["G1525"]],[15,16,["G1519"]],[16,17,["G3588"]],[17,18,["G3925"]],[18,20,["G518"]],[20,21,["G3972"]]]},{"k":27751,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,8,["G4341","G1520","G3588","G1543"]],[8,11,["G5346"]],[11,12,["G520"]],[12,13,["G5126"]],[13,15,["G3494"]],[15,16,["G4314"]],[16,17,["G3588"]],[17,19,["G5506"]],[19,20,["G1063"]],[20,22,["G2192"]],[22,25,["G5100"]],[25,27,["G518"]],[27,28,["G846"]]]},{"k":27752,"v":[[0,1,["G3767"]],[1,2,["G3588","(G3303)"]],[2,3,["G3880"]],[3,4,["G846"]],[4,6,["G71"]],[6,8,["G4314"]],[8,9,["G3588"]],[9,11,["G5506"]],[11,12,["G2532"]],[12,13,["G5346"]],[13,14,["G3972"]],[14,15,["G3588"]],[15,16,["G1198"]],[16,19,["G4341","G3165"]],[19,22,["G2065"]],[22,25,["G71"]],[25,26,["G5126"]],[26,28,["G3494"]],[28,29,["G4314"]],[29,30,["G4571"]],[30,32,["G2192"]],[32,33,["G5100"]],[33,35,["G2980"]],[35,37,["G4671"]]]},{"k":27753,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G5506"]],[4,5,["G1949"]],[5,6,["G848"]],[6,8,["G3588"]],[8,9,["G5495"]],[9,10,["G2532"]],[10,14,["G402"]],[14,15,["G2596","G2398"]],[15,17,["G4441"]],[17,19,["G5101"]],[19,20,["G2076"]],[20,21,["G3739"]],[21,23,["G2192"]],[23,25,["G518"]],[25,26,["G3427"]]]},{"k":27754,"v":[[0,1,["G1161"]],[1,3,["G2036"]],[3,4,["G3588"]],[4,5,["G2453"]],[5,7,["G4934"]],[7,9,["G2065"]],[9,10,["G4571"]],[10,11,["G3704"]],[11,15,["G2609"]],[15,16,["G3972"]],[16,18,["G839"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G4892"]],[21,23,["G5613"]],[23,25,["G3195"]],[25,26,["G4441"]],[26,27,["G5100"]],[27,28,["G4012"]],[28,29,["G846"]],[29,31,["G197"]]]},{"k":27755,"v":[[0,1,["G3767"]],[1,3,["G3361"]],[3,4,["G4771"]],[4,5,["G3982"]],[5,7,["G846"]],[7,8,["G1063"]],[8,12,["G1748"]],[12,14,["G846"]],[14,15,["G1537"]],[15,16,["G846"]],[16,17,["G4119"]],[17,19,["G5062"]],[19,20,["G435"]],[20,21,["G3748"]],[21,27,["G332","G1438"]],[27,31,["G3383"]],[31,32,["G5315"]],[32,33,["G3383"]],[33,34,["G4095"]],[34,35,["G2193","G3757"]],[35,38,["G337"]],[38,39,["G846"]],[39,40,["G2532"]],[40,41,["G3568"]],[41,42,["G1526"]],[42,44,["G2092"]],[44,46,["G4327"]],[46,48,["G1860"]],[48,49,["G575"]],[49,50,["G4675"]]]},{"k":27756,"v":[[0,1,["G3767"]],[1,2,["G3588"]],[2,4,["G5506"]],[4,5,["(G3303)"]],[5,10,["G630","G3588","G3494"]],[10,12,["G3853"]],[12,16,["G1583"]],[16,18,["G3367"]],[18,19,["G3754"]],[19,22,["G1718"]],[22,24,["G5023"]],[24,25,["G4314"]],[25,26,["G3165"]]]},{"k":27757,"v":[[0,1,["G2532"]],[1,4,["G4341"]],[4,6,["G1417"]],[6,7,["G1543"]],[7,8,["G2036"]],[8,10,["G2090"]],[10,12,["G1250"]],[12,13,["G4757"]],[13,14,["G3704"]],[14,15,["G4198"]],[15,16,["G2193"]],[16,17,["G2542"]],[17,18,["G2532"]],[18,19,["G2460"]],[19,22,["G1440"]],[22,23,["G2532"]],[23,24,["G1187"]],[24,26,["G1250"]],[26,27,["G575"]],[27,29,["G5154"]],[29,30,["G5610"]],[30,32,["G3588"]],[32,33,["G3571"]]]},{"k":27758,"v":[[0,1,["G5037"]],[1,2,["G3936"]],[2,4,["G2934"]],[4,5,["G2443"]],[5,10,["G1913","G3972"]],[10,14,["G1295"]],[14,15,["G4314"]],[15,16,["G5344"]],[16,17,["G3588"]],[17,18,["G2232"]]]},{"k":27759,"v":[[0,3,["G1125"]],[3,5,["G1992"]],[5,6,["G4023"]],[6,7,["G5126"]],[7,8,["G5179"]]]},{"k":27760,"v":[[0,1,["G2804"]],[1,2,["G3079"]],[2,4,["G3588"]],[4,6,["G2903"]],[6,7,["G2232"]],[7,8,["G5344"]],[8,10,["G5463"]]]},{"k":27761,"v":[[0,1,["G5126"]],[1,2,["G435"]],[2,4,["G4815"]],[4,5,["G5259"]],[5,6,["G3588"]],[6,7,["G2453"]],[7,8,["G2532"]],[8,9,["G3195"]],[9,12,["G337"]],[12,13,["G5259"]],[13,14,["G846"]],[14,16,["G2186"]],[16,18,["G4862"]],[18,20,["G4753"]],[20,22,["G1807"]],[22,23,["G846"]],[23,25,["G3129"]],[25,26,["G3754"]],[26,28,["G2076"]],[28,30,["G4514"]]]},{"k":27762,"v":[[0,1,["G1161"]],[1,4,["G1014"]],[4,6,["G1097"]],[6,7,["G3588"]],[7,8,["G156"]],[8,9,["G1223","G3739"]],[9,11,["G1458"]],[11,12,["G846"]],[12,16,["G2609","G846"]],[16,17,["G1519"]],[17,18,["G848"]],[18,19,["G4892"]]]},{"k":27763,"v":[[0,1,["G3739"]],[1,3,["G2147"]],[3,6,["G1458"]],[6,7,["G4012"]],[7,8,["G2213"]],[8,10,["G848"]],[10,11,["G3551"]],[11,12,["G1161"]],[12,14,["G2192"]],[14,15,["G3367"]],[15,19,["G1462"]],[19,20,["G514"]],[20,22,["G2288"]],[22,23,["G2228"]],[23,25,["G1199"]]]},{"k":27764,"v":[[0,1,["G1161"]],[1,5,["G3377"]],[5,6,["G3427"]],[6,8,["(G5259)"]],[8,9,["G3588"]],[9,10,["G2453"]],[10,12,["G1917","G3195","G1510"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G435"]],[15,17,["G3992"]],[17,18,["G1824"]],[18,19,["G4314"]],[19,20,["G4571"]],[20,23,["G3853"]],[23,26,["G2725"]],[26,27,["G2532"]],[27,29,["G3004"]],[29,30,["G1909"]],[30,31,["G4675"]],[31,32,["G3588"]],[32,35,["G4314"]],[35,36,["G846"]],[36,37,["G4517"]]]},{"k":27765,"v":[[0,1,["G3767","(G3303)"]],[1,2,["G3588"]],[2,3,["G4757"]],[3,4,["G2596"]],[4,7,["G1299"]],[7,8,["G846"]],[8,9,["G353"]],[9,10,["G3972"]],[10,12,["G71"]],[12,14,["G1223"]],[14,15,["G3571"]],[15,16,["G1519"]],[16,17,["G494"]]]},{"k":27766,"v":[[0,1,["(G1161)"]],[1,2,["G3588"]],[2,3,["G1887"]],[3,5,["G1439"]],[5,6,["G3588"]],[6,7,["G2460"]],[7,9,["G4198"]],[9,10,["G4862"]],[10,11,["G846"]],[11,13,["G5290"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G3925"]]]},{"k":27767,"v":[[0,1,["G3748"]],[1,4,["G1525"]],[4,5,["G1519"]],[5,6,["G2542"]],[6,7,["G2532"]],[7,8,["G325"]],[8,9,["G3588"]],[9,10,["G1992"]],[10,12,["G3588"]],[12,13,["G2232"]],[13,14,["G3936"]],[14,15,["G3972"]],[15,16,["G2532"]],[16,18,["G846"]]]},{"k":27768,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G2232"]],[4,6,["G314"]],[6,9,["(G2532)"]],[9,10,["G1905"]],[10,11,["G1537"]],[11,12,["G4169"]],[12,13,["G1885"]],[13,15,["G2076"]],[15,16,["G2532"]],[16,19,["G4441"]],[19,20,["G3754"]],[20,23,["G575"]],[23,24,["G2791"]]]},{"k":27769,"v":[[0,3,["G1251"]],[3,4,["G4675"]],[4,5,["G5346"]],[5,7,["G3752"]],[7,8,["G4675"]],[8,9,["G2725"]],[9,11,["G2532"]],[11,12,["G3854"]],[12,13,["G5037"]],[13,15,["G2753"]],[15,16,["G846"]],[16,19,["G5442"]],[19,20,["G1722"]],[20,21,["G2264"]],[21,23,["G4232"]]]},{"k":27770,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,3,["G4002"]],[3,4,["G2250"]],[4,5,["G367"]],[5,6,["G3588"]],[6,8,["G749"]],[8,9,["G2597"]],[9,10,["G3326"]],[10,11,["G3588"]],[11,12,["G4245"]],[12,13,["G2532"]],[13,16,["G5100"]],[16,17,["G4489"]],[17,19,["G5061"]],[19,20,["G3748"]],[20,21,["G1718"]],[21,22,["G3588"]],[22,23,["G2232"]],[23,24,["G2596"]],[24,25,["G3972"]]]},{"k":27771,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,6,["G2564"]],[6,7,["G5061"]],[7,8,["G756"]],[8,10,["G2723"]],[10,12,["G3004"]],[12,15,["G1223"]],[15,16,["G4675"]],[16,18,["G5177"]],[18,19,["G4183"]],[19,20,["G1515"]],[20,21,["G2532"]],[21,25,["G2735"]],[25,27,["G1096"]],[27,29,["G5129"]],[29,30,["G1484"]],[30,31,["G1223"]],[31,32,["G4674"]],[32,33,["G4307"]]]},{"k":27772,"v":[[0,2,["G588"]],[2,3,["(G5037)"]],[3,4,["G3839"]],[4,5,["G2532"]],[5,8,["G3837"]],[8,10,["G2903"]],[10,11,["G5344"]],[11,12,["G3326"]],[12,13,["G3956"]],[13,14,["G2169"]]]},{"k":27773,"v":[[0,1,["G1161"]],[1,2,["G2443"]],[2,7,["G1465","G3361","G1909","G4119"]],[7,9,["G4571"]],[9,11,["G3870"]],[11,14,["G4571"]],[14,16,["G191"]],[16,17,["G2257"]],[17,19,["G4674"]],[19,20,["G1932"]],[20,23,["G4935"]]]},{"k":27774,"v":[[0,1,["G1063"]],[1,4,["G2147"]],[4,5,["G5126"]],[5,6,["G435"]],[6,8,["G3061"]],[8,10,["G2532"]],[10,12,["G2795"]],[12,14,["G4714"]],[14,16,["G3956"]],[16,17,["G3588"]],[17,18,["G2453"]],[18,19,["G2596"]],[19,20,["G3588"]],[20,21,["G3625"]],[21,22,["G5037"]],[22,24,["G4414"]],[24,26,["G3588"]],[26,27,["G139"]],[27,29,["G3588"]],[29,30,["G3480"]]]},{"k":27775,"v":[[0,1,["G3739"]],[1,2,["G2532"]],[2,5,["G3985"]],[5,7,["G953"]],[7,8,["G3588"]],[8,9,["G2411"]],[9,10,["G3739"]],[10,12,["G2902"]],[12,13,["G2532"]],[13,14,["G2309"]],[14,16,["G2919"]],[16,17,["G2596"]],[17,19,["G2251"]],[19,20,["G3551"]]]},{"k":27776,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G5506"]],[4,5,["G3079"]],[5,6,["G3928"]],[6,10,["G3326"]],[10,11,["G4183"]],[11,12,["G970"]],[12,15,["G520"]],[15,17,["G1537"]],[17,18,["G2257"]],[18,19,["G5495"]]]},{"k":27777,"v":[[0,1,["G2753"]],[1,2,["G848"]],[2,3,["G2725"]],[3,5,["G2064"]],[5,6,["G1909"]],[6,7,["G4571"]],[7,9,["G350"]],[9,10,["G3844"]],[10,11,["G3739"]],[11,12,["G846"]],[12,13,["G1410"]],[13,15,["G1921"]],[15,16,["G4012"]],[16,17,["G3956"]],[17,19,["G5130"]],[19,20,["G3739"]],[20,21,["G2249"]],[21,22,["G2723"]],[22,23,["G846"]]]},{"k":27778,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2453"]],[3,4,["G2532"]],[4,5,["G4934"]],[5,6,["G5335"]],[6,9,["G5023"]],[9,10,["G2192"]],[10,11,["G3779"]]]},{"k":27779,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,5,["G3588"]],[5,6,["G2232"]],[6,8,["G3506"]],[8,10,["G846"]],[10,12,["G3004"]],[12,13,["G611"]],[13,17,["G1987"]],[17,19,["G4571"]],[19,21,["G5607"]],[21,22,["G1537"]],[22,23,["G4183"]],[23,24,["G2094"]],[24,26,["G2923"]],[26,28,["G5129"]],[28,29,["G1484"]],[29,34,["G2115"]],[34,35,["G626"]],[35,36,["G4012"]],[36,37,["G1683"]]]},{"k":27780,"v":[[0,3,["G4675"]],[3,4,["G1410"]],[4,5,["G1097"]],[5,6,["G3754"]],[6,8,["G1526","(G3427)"]],[8,10,["G3756","G4119","G2228"]],[10,11,["G1177"]],[11,12,["G2250"]],[12,13,["G575","G3739"]],[13,16,["G305"]],[16,17,["G1722"]],[17,18,["G2419"]],[18,21,["G4352"]]]},{"k":27781,"v":[[0,1,["G2532"]],[1,3,["G3777"]],[3,4,["G2147"]],[4,5,["G3165"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G2411"]],[8,9,["G1256"]],[9,10,["G4314"]],[10,12,["G5100"]],[12,13,["G2228"]],[13,15,["G4160","G1999"]],[15,17,["G3793"]],[17,18,["G3777"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G4864"]],[21,22,["G3777"]],[22,23,["G2596"]],[23,24,["G3588"]],[24,25,["G4172"]]]},{"k":27782,"v":[[0,1,["G3777"]],[1,2,["G1410"]],[2,4,["G3936"]],[4,7,["G4012","G3739"]],[7,9,["G3568"]],[9,10,["G2723"]],[10,11,["G3450"]]]},{"k":27783,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,4,["G3670"]],[4,6,["G4671"]],[6,7,["G3754"]],[7,8,["G2596"]],[8,9,["G3588"]],[9,10,["G3598"]],[10,11,["G3739"]],[11,13,["G3004"]],[13,14,["G139"]],[14,15,["G3779"]],[15,16,["G3000"]],[16,19,["G2316"]],[19,22,["G3971"]],[22,23,["G4100"]],[23,25,["G3956"]],[25,28,["G1125"]],[28,29,["G2596"]],[29,30,["G3588"]],[30,31,["G3551"]],[31,32,["G2532"]],[32,34,["G3588"]],[34,35,["G4396"]]]},{"k":27784,"v":[[0,2,["G2192"]],[2,3,["G1680"]],[3,4,["G1519"]],[4,5,["G2316"]],[5,6,["G3739"]],[6,7,["G3778"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G4327"]],[10,13,["G3195"]],[13,14,["G1510"]],[14,16,["G386"]],[16,19,["G3498"]],[19,20,["G5037"]],[20,23,["G1342"]],[23,24,["G2532"]],[24,25,["G94"]]]},{"k":27785,"v":[[0,1,["G1161"]],[1,2,["G1722","G5129"]],[2,5,["G778"]],[5,6,["G846"]],[6,8,["G2192"]],[8,9,["G1275"]],[9,11,["G4893"]],[11,14,["G677"]],[14,15,["G4314"]],[15,16,["G2316"]],[16,17,["G2532"]],[17,19,["G444"]]]},{"k":27786,"v":[[0,1,["G1161"]],[1,2,["G1223"]],[2,3,["G4119"]],[3,4,["G2094"]],[4,6,["G3854"]],[6,8,["G4160"]],[8,9,["G1654"]],[9,10,["G1519"]],[10,11,["G3450"]],[11,12,["G1484"]],[12,13,["G2532"]],[13,14,["G4376"]]]},{"k":27787,"v":[[0,1,["G1722","G3739","(G1161)"]],[1,2,["G5100"]],[2,3,["G2453"]],[3,4,["G575"]],[4,5,["G773"]],[5,6,["G2147"]],[6,7,["G3165"]],[7,8,["G48"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G2411"]],[11,12,["G3756"]],[12,13,["G3326"]],[13,14,["G3793"]],[14,15,["G3761"]],[15,16,["G3326"]],[16,17,["G2351"]]]},{"k":27788,"v":[[0,1,["G3739"]],[1,2,["G1163"]],[2,6,["G3918"]],[6,7,["G1909"]],[7,8,["G4675"]],[8,9,["G2532"]],[9,10,["G2723"]],[10,14,["G1536","G2192"]],[14,15,["G4314"]],[15,16,["G3165"]]]},{"k":27789,"v":[[0,1,["G2228"]],[1,4,["G3778"]],[4,5,["G846"]],[5,7,["G2036"]],[7,12,["G1536","G2147"]],[12,14,["G92"]],[14,15,["G1722"]],[15,16,["G1698"]],[16,18,["G3450"]],[18,19,["G2476"]],[19,20,["G1909"]],[20,21,["G3588"]],[21,22,["G4892"]]]},{"k":27790,"v":[[0,1,["G2228"]],[1,4,["G4012"]],[4,5,["G5026"]],[5,6,["G3391"]],[6,7,["G5456"]],[7,8,["G3739"]],[8,10,["G2896"]],[10,11,["G2476"]],[11,12,["G1722"]],[12,13,["G846","(G3754)"]],[13,14,["G4012"]],[14,16,["G386"]],[16,19,["G3498"]],[19,20,["G1473"]],[20,24,["G2919"]],[24,25,["G5259"]],[25,26,["G5216"]],[26,28,["G4594"]]]},{"k":27791,"v":[[0,1,["G1161"]],[1,3,["G5344"]],[3,4,["G191"]],[4,6,["G5023"]],[6,10,["G1492","G197"]],[10,11,["G4012"]],[11,13,["G3598"]],[13,15,["G306"]],[15,16,["G846"]],[16,18,["G2036"]],[18,19,["G3752"]],[19,20,["G3079"]],[20,21,["G3588"]],[21,23,["G5506"]],[23,26,["G2597"]],[26,31,["G1231"]],[31,34,["G2596","G5209"]]]},{"k":27792,"v":[[0,1,["G5037"]],[1,3,["G1299"]],[3,5,["G1543"]],[5,7,["G5083"]],[7,8,["G3972"]],[8,9,["G5037"]],[9,13,["G2192"]],[13,14,["G425"]],[14,15,["G2532"]],[15,19,["G2967"]],[19,20,["G3367"]],[20,22,["G846"]],[22,23,["G2398"]],[23,25,["G5256"]],[25,26,["G2228"]],[26,28,["G4334"]],[28,29,["G846"]]]},{"k":27793,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,3,["G5100"]],[3,4,["G2250"]],[4,6,["G5344"]],[6,7,["G3854"]],[7,8,["G4862"]],[8,9,["G848"]],[9,10,["G1135"]],[10,11,["G1409"]],[11,13,["G5607"]],[13,15,["G2453"]],[15,18,["G3343"]],[18,19,["G3972"]],[19,20,["G2532"]],[20,21,["G191"]],[21,22,["G846"]],[22,23,["G4012"]],[23,24,["G3588"]],[24,25,["G4102"]],[25,26,["G1519"]],[26,27,["G5547"]]]},{"k":27794,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G1256"]],[4,5,["G4012"]],[5,6,["G1343","(G2532)"]],[6,7,["G1466"]],[7,8,["G2532"]],[8,9,["G2917"]],[9,11,["G1510"]],[11,12,["G5344"]],[12,13,["G1096","G1719"]],[13,15,["G611"]],[15,18,["G4198"]],[18,21,["G3568","G2192"]],[21,22,["(G1161)"]],[22,24,["G3335"]],[24,27,["G2540"]],[27,31,["G3333"]],[31,32,["G4571"]]]},{"k":27795,"v":[[0,1,["(G1161)"]],[1,2,["G1679"]],[2,3,["G2532"]],[3,4,["G3754"]],[4,5,["G5536"]],[5,9,["G1325"]],[9,10,["G846"]],[10,11,["G5259"]],[11,12,["G3972"]],[12,13,["G3704"]],[13,16,["G3089"]],[16,17,["G846"]],[17,18,["G1352"]],[18,19,["(G2532)"]],[19,21,["G3343"]],[21,22,["G846"]],[22,24,["G4437"]],[24,26,["G3656"]],[26,28,["G846"]]]},{"k":27796,"v":[[0,1,["G1161"]],[1,4,["G4137","G1333"]],[4,5,["G4201"]],[5,6,["G5347"]],[6,10,["G2983","G1240","G5344"]],[10,11,["G5037"]],[11,12,["G5344"]],[12,13,["G2309"]],[13,15,["G2698"]],[15,16,["G3588"]],[16,17,["G2453"]],[17,19,["G5485"]],[19,20,["G2641"]],[20,21,["G3972"]],[21,22,["G1210"]]]},{"k":27797,"v":[[0,1,["G3767"]],[1,3,["G5347"]],[3,6,["G1910"]],[6,7,["G3588"]],[7,8,["G1885"]],[8,9,["G3326"]],[9,10,["G5140"]],[10,11,["G2250"]],[11,13,["G305"]],[13,14,["G575"]],[14,15,["G2542"]],[15,16,["G1519"]],[16,17,["G2414"]]]},{"k":27798,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G749"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G4413"]],[7,9,["G3588"]],[9,10,["G2453"]],[10,11,["G1718"]],[11,12,["G846"]],[12,13,["G2596"]],[13,14,["G3972"]],[14,15,["G2532"]],[15,16,["G3870"]],[16,17,["G846"]]]},{"k":27799,"v":[[0,2,["G154"]],[2,3,["G5485"]],[3,4,["G2596"]],[4,5,["G846"]],[5,6,["G3704"]],[6,10,["G3343"]],[10,11,["G846"]],[11,12,["G1519"]],[12,13,["G2419"]],[13,15,["G4160","G1747"]],[15,16,["G2596"]],[16,17,["G3588"]],[17,18,["G3598"]],[18,20,["G337"]],[20,21,["G846"]]]},{"k":27800,"v":[[0,1,["G3767","(G3303)"]],[1,2,["G5347"]],[2,3,["G611"]],[3,5,["G3972"]],[5,8,["G5083"]],[8,9,["G1722"]],[9,10,["G2542"]],[10,11,["G1161"]],[11,14,["G1438"]],[14,15,["G3195"]],[15,16,["G1607"]],[16,17,["G1722","G5034"]],[17,18,[]]]},{"k":27801,"v":[[0,2,["G3588"]],[2,3,["G3767"]],[3,4,["G5346"]],[4,7,["G1722"]],[7,8,["G5213"]],[8,10,["G1415"]],[10,13,["G4782"]],[13,16,["G2723"]],[16,17,["G5129"]],[17,18,["G435"]],[18,22,["G1536","G2076"]],[22,23,["G824"]],[23,24,["G1722"]],[24,25,["G846"]]]},{"k":27802,"v":[[0,1,["G1161"]],[1,5,["G1304"]],[5,6,["G1722"]],[6,7,["G846"]],[7,8,["G4119"]],[8,9,["G2228"]],[9,10,["G1176"]],[10,11,["G2250"]],[11,14,["G2597"]],[14,15,["G1519"]],[15,16,["G2542"]],[16,18,["G3588"]],[18,20,["G1887"]],[20,21,["G2523"]],[21,22,["G1909"]],[22,23,["G3588"]],[23,25,["G968"]],[25,26,["G2753"]],[26,27,["G3972"]],[27,30,["G71"]]]},{"k":27803,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,5,["G3854"]],[5,6,["G3588"]],[6,7,["G2453"]],[7,10,["G2597"]],[10,11,["G575"]],[11,12,["G2414"]],[12,15,["G4026"]],[15,17,["G5342"]],[17,18,["G4183"]],[18,19,["G2532"]],[19,20,["G926"]],[20,21,["G157"]],[21,22,["G2596"]],[22,23,["G3972"]],[23,24,["G3739"]],[24,26,["G2480"]],[26,27,["G3756"]],[27,28,["G584"]]]},{"k":27804,"v":[[0,2,["G846"]],[2,5,["G626"]],[5,6,["G3777"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G3551"]],[9,11,["G3588"]],[11,12,["G2453"]],[12,13,["G3777"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G2411"]],[16,17,["G3777"]],[17,19,["G1519"]],[19,20,["G2541"]],[20,23,["G264"]],[23,25,["G5100"]],[25,27,[]]]},{"k":27805,"v":[[0,1,["G1161"]],[1,2,["G5347"]],[2,3,["G2309"]],[3,5,["G2698"]],[5,6,["G3588"]],[6,7,["G2453"]],[7,9,["G5485"]],[9,10,["G611"]],[10,11,["G3972"]],[11,13,["G2036"]],[13,14,["G2309"]],[14,17,["G305"]],[17,18,["G1519"]],[18,19,["G2414"]],[19,21,["G1563"]],[21,23,["G2919"]],[23,24,["G4012"]],[24,26,["G5130"]],[26,27,["G1909"]],[27,28,["G1700"]]]},{"k":27806,"v":[[0,1,["G1161"]],[1,2,["G2036"]],[2,3,["G3972"]],[3,5,["G1510","G2476"]],[5,6,["G1909"]],[6,7,["G2541"]],[7,9,["G968"]],[9,10,["G3757"]],[10,11,["G3165"]],[11,12,["G1163"]],[12,15,["G2919"]],[15,18,["G2453"]],[18,23,["G91","G3762"]],[23,24,["G5613","(G2532)"]],[24,25,["G4771"]],[25,27,["G2566"]],[27,28,["G1921"]]]},{"k":27807,"v":[[0,1,["G1063"]],[1,2,["G1437"]],[2,3,["(G3303)"]],[3,6,["G91"]],[6,7,["G2532"]],[7,9,["G4238"]],[9,11,["G5100"]],[11,12,["G514"]],[12,14,["G2288"]],[14,16,["G3868"]],[16,17,["G3756"]],[17,19,["G599"]],[19,20,["G1161"]],[20,21,["G1487"]],[21,23,["G2076"]],[23,24,["G3762"]],[24,28,["G3739"]],[28,29,["G3778"]],[29,30,["G2723"]],[30,31,["G3450"]],[31,33,["G3762"]],[33,34,["G1410"]],[34,35,["G5483"]],[35,36,["G3165"]],[36,38,["G846"]],[38,40,["G1941"]],[40,42,["G2541"]]]},{"k":27808,"v":[[0,0,["(G1161)"]],[0,1,["G5119"]],[1,2,["G5347"]],[2,6,["G4814"]],[6,7,["G3326"]],[7,8,["G3588"]],[8,9,["G4824"]],[9,10,["G611"]],[10,13,["G1941"]],[13,15,["G2541"]],[15,16,["G1909"]],[16,17,["G2541"]],[17,20,["G4198"]]]},{"k":27809,"v":[[0,1,["G1161"]],[1,2,["G1230"]],[2,3,["G5100"]],[3,4,["G2250"]],[4,5,["G935"]],[5,6,["G67"]],[6,7,["G2532"]],[7,8,["G959"]],[8,9,["G2658"]],[9,10,["G1519"]],[10,11,["G2542"]],[11,13,["G782"]],[13,14,["G5347"]]]},{"k":27810,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,5,["G1304"]],[5,6,["G1563"]],[6,7,["G4119"]],[7,8,["G2250"]],[8,9,["G5347"]],[9,10,["G394"]],[10,11,["G3972"]],[11,12,["G2596"]],[12,14,["G3588"]],[14,15,["G935"]],[15,16,["G3004"]],[16,18,["G2076"]],[18,20,["G5100"]],[20,21,["G435"]],[21,24,["G2641","G1198"]],[24,25,["G5259"]],[25,26,["G5344"]]]},{"k":27811,"v":[[0,1,["G4012"]],[1,2,["G3739"]],[2,4,["G3450"]],[4,5,["G1096"]],[5,6,["G1519"]],[6,7,["G2414"]],[7,8,["G3588"]],[8,10,["G749"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G4245"]],[13,15,["G3588"]],[15,16,["G2453"]],[16,17,["G1718"]],[17,19,["G154"]],[19,22,["G1349"]],[22,23,["G2596"]],[23,24,["G846"]]]},{"k":27812,"v":[[0,1,["G4314"]],[1,2,["G3739"]],[2,4,["G611"]],[4,5,["(G3754)"]],[5,6,["G2076"]],[6,7,["G3756"]],[7,9,["G1485"]],[9,12,["G4514"]],[12,14,["G5483"]],[14,15,["G5100"]],[15,16,["G444"]],[16,17,["G1519"]],[17,18,["G684"]],[18,19,["G4250"]],[19,20,["G2228"]],[20,24,["G2723"]],[24,25,["G2192"]],[25,26,["G3588"]],[26,27,["G2725"]],[27,30,["G2596","G4383"]],[30,31,["G5037"]],[31,33,["G2983","G5117"]],[33,37,["G627"]],[37,38,["G4012"]],[38,39,["G3588"]],[39,43,["G1462"]]]},{"k":27813,"v":[[0,1,["G3767"]],[1,3,["G846"]],[3,5,["G4905"]],[5,6,["G1759"]],[6,8,["G3367"]],[8,9,["G311"]],[9,11,["G3588"]],[11,12,["G1836"]],[12,14,["G2523"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,18,["G968"]],[18,20,["G2753"]],[20,21,["G3588"]],[21,22,["G435"]],[22,26,["G71"]]]},{"k":27814,"v":[[0,1,["G4012"]],[1,2,["G3739"]],[2,4,["G3588"]],[4,5,["G2725"]],[5,7,["G2476"]],[7,9,["G2018"]],[9,10,["G3762"]],[10,11,["G156"]],[11,14,["G3739"]],[14,16,["G1473"]],[16,17,["G5282"]]]},{"k":27815,"v":[[0,1,["G1161"]],[1,2,["G2192"]],[2,3,["G5100"]],[3,4,["G2213"]],[4,5,["G4314"]],[5,6,["G846"]],[6,7,["G4012"]],[7,9,["G2398"]],[9,10,["G1175"]],[10,11,["G2532"]],[11,12,["G4012"]],[12,13,["G5100"]],[13,14,["G2424"]],[14,17,["G2348"]],[17,18,["G3739"]],[18,19,["G3972"]],[19,20,["G5335"]],[20,23,["G2198"]]]},{"k":27816,"v":[[0,1,["G1161"]],[1,3,["G1473"]],[3,4,["G639"]],[4,5,["G1519"]],[5,9,["G2214","G4012","G5127"]],[9,11,["G3004"]],[11,13,["G1487"]],[13,15,["G1014"]],[15,16,["G4198"]],[16,17,["G1519"]],[17,18,["G2419"]],[18,20,["G2546"]],[20,22,["G2919"]],[22,23,["G4012"]],[23,25,["G5130"]]]},{"k":27817,"v":[[0,1,["G1161"]],[1,3,["G3972"]],[3,5,["G1941"]],[5,7,["(G846)"]],[7,8,["G5083"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G1233"]],[11,13,["G4575"]],[13,15,["G2753"]],[15,16,["G846"]],[16,19,["G5083"]],[19,20,["G2193","G3757"]],[20,23,["G3992"]],[23,24,["G846"]],[24,25,["G4314"]],[25,26,["G2541"]]]},{"k":27818,"v":[[0,1,["G1161"]],[1,2,["G67"]],[2,3,["G5346"]],[3,4,["G4314"]],[4,5,["G5347"]],[5,7,["G1014"]],[7,8,["G2532"]],[8,9,["G191"]],[9,10,["G3588"]],[10,11,["G444"]],[11,12,["G848","(G1161)"]],[12,14,["G839"]],[14,15,["G5346"]],[15,16,["G3588"]],[16,19,["G191"]],[19,20,["G846"]]]},{"k":27819,"v":[[0,1,["G3767"]],[1,3,["G3588"]],[3,4,["G1887"]],[4,6,["G67"]],[6,8,["G2064"]],[8,9,["G2532"]],[9,10,["G959"]],[10,11,["G3326"]],[11,12,["G4183"]],[12,13,["G5325"]],[13,14,["G2532"]],[14,16,["G1525"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,21,["G201"]],[21,22,["G4862","(G5037)"]],[22,23,["G3588"]],[23,25,["G5506"]],[25,26,["G2532"]],[26,27,["G2596","G1851"]],[27,28,["G435"]],[28,29,["(G5607)"]],[29,30,["G3588"]],[30,31,["G4172"]],[31,32,["(G2532)"]],[32,33,["G5347"]],[33,34,["G2753"]],[34,35,["G3972"]],[35,38,["G71"]]]},{"k":27820,"v":[[0,1,["G2532"]],[1,2,["G5347"]],[2,3,["G5346"]],[3,4,["G935"]],[4,5,["G67"]],[5,6,["G2532"]],[6,7,["G3956"]],[7,8,["G435"]],[8,12,["G4840"]],[12,14,["G2254"]],[14,16,["G2334"]],[16,18,["G5126"]],[18,19,["G4012"]],[19,20,["G3739"]],[20,21,["G3956"]],[21,22,["G3588"]],[22,23,["G4128"]],[23,25,["G3588"]],[25,26,["G2453"]],[26,28,["G1793"]],[28,30,["G3427"]],[30,31,["G5037"]],[31,32,["G1722"]],[32,33,["G2414"]],[33,34,["G2532"]],[34,36,["G1759"]],[36,37,["G1916"]],[37,39,["G846"]],[39,40,["G1163"]],[40,41,["G3361"]],[41,43,["G2198"]],[43,45,["G3371"]]]},{"k":27821,"v":[[0,1,["G1161"]],[1,3,["G1473"]],[3,4,["G2638"]],[4,6,["G846"]],[6,8,["G4238"]],[8,9,["G3367"]],[9,10,["G514"]],[10,12,["G2288"]],[12,13,["G1161"]],[13,15,["G5127"]],[15,16,["G848"]],[16,17,["(G2532)"]],[17,18,["G1941"]],[18,20,["G4575"]],[20,23,["G2919"]],[23,25,["G3992"]],[25,26,["G846"]]]},{"k":27822,"v":[[0,1,["G4012"]],[1,2,["G3739"]],[2,4,["G2192"]],[4,5,["G3756"]],[5,7,["G804","G5100"]],[7,9,["G1125"]],[9,12,["G2962"]],[12,13,["G1352"]],[13,18,["G4254","G846"]],[18,19,["G1909"]],[19,20,["G5216"]],[20,21,["G2532"]],[21,22,["G3122"]],[22,23,["G1909"]],[23,24,["G4675"]],[24,26,["G935"]],[26,27,["G67"]],[27,28,["G3704"]],[28,30,["G351"]],[30,31,["G1096"]],[31,34,["G2192"]],[34,35,["G5100"]],[35,37,["G1125"]]]},{"k":27823,"v":[[0,1,["G1063"]],[1,3,["G1380"]],[3,5,["G3427"]],[5,6,["G249"]],[6,8,["G3992"]],[8,10,["G1198"]],[10,11,["G2532"]],[11,12,["G3361"]],[12,13,["G2532"]],[13,15,["G4591"]],[15,16,["G3588"]],[16,17,["G156"]],[17,19,["G2596"]],[19,20,["G846"]]]},{"k":27824,"v":[[0,1,["G1161"]],[1,2,["G67"]],[2,3,["G5346"]],[3,4,["G4314"]],[4,5,["G3972"]],[5,6,["G4671"]],[6,8,["G2010"]],[8,10,["G3004"]],[10,11,["G5228"]],[11,12,["G4572"]],[12,13,["G5119"]],[13,14,["G3972"]],[14,16,["G1614"]],[16,17,["G3588"]],[17,18,["G5495"]],[18,22,["G626"]]]},{"k":27825,"v":[[0,2,["G2233"]],[2,3,["G1683"]],[3,4,["G3107"]],[4,5,["G935"]],[5,6,["G67"]],[6,9,["G3195"]],[9,12,["G626"]],[12,14,["G4594"]],[14,15,["G1909"]],[15,16,["G4675"]],[16,17,["G4012"]],[17,18,["G3956"]],[18,21,["G3739"]],[21,24,["G1458"]],[24,25,["G5259"]],[25,27,["G2453"]]]},{"k":27826,"v":[[0,1,["G3122"]],[1,4,["(G1492)"]],[4,5,["G4571"]],[5,7,["G5607"]],[7,8,["G1109"]],[8,10,["G3956"]],[10,11,["G1485"]],[11,12,["G5037","(G2532)"]],[12,13,["G2213"]],[13,16,["G2596"]],[16,18,["G2453"]],[18,19,["G1352"]],[19,21,["G1189"]],[21,22,["G4675"]],[22,24,["G191"]],[24,25,["G3450"]],[25,26,["G3116"]]]},{"k":27827,"v":[[0,1,["G3450"]],[1,4,["G981","(G3303","G3767)"]],[4,5,["G1537"]],[5,7,["G3503"]],[7,9,["G1096"]],[9,10,["G575"]],[10,12,["G746"]],[12,13,["G1722"]],[13,15,["G3450"]],[15,16,["G1484"]],[16,17,["G1722"]],[17,18,["G2414"]],[18,19,["G2467"]],[19,20,["G3956"]],[20,21,["G3588"]],[21,22,["G2453"]]]},{"k":27828,"v":[[0,2,["G4267"]],[2,3,["G3165"]],[3,6,["G509"]],[6,7,["G1437"]],[7,9,["G2309"]],[9,10,["G3140"]],[10,11,["G3754"]],[11,12,["G2596"]],[12,13,["G3588"]],[13,15,["G196"]],[15,16,["G139"]],[16,18,["G2251"]],[18,19,["G2356"]],[19,21,["G2198"]],[21,23,["G5330"]]]},{"k":27829,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,4,["G2476"]],[4,7,["G2919"]],[7,8,["G1909"]],[8,10,["G1680"]],[10,12,["G3588"]],[12,13,["G1860"]],[13,14,["G1096"]],[14,15,["G5259"]],[15,16,["G2316"]],[16,17,["G4314"]],[17,19,["G3962"]]]},{"k":27830,"v":[[0,1,["G1519"]],[1,2,["G3739"]],[2,4,["G2257"]],[4,6,["G1429"]],[6,7,["G1722","G1616"]],[7,8,["G3000"]],[8,10,["G2250"]],[10,11,["G2532"]],[11,12,["G3571"]],[12,13,["G1679"]],[13,15,["G2658"]],[15,16,["G4012"]],[16,17,["G3739"]],[17,18,["G1680"]],[18,20,["G935"]],[20,21,["G67"]],[21,24,["G1458"]],[24,25,["G5259"]],[25,26,["G3588"]],[26,27,["G2453"]]]},{"k":27831,"v":[[0,1,["G5101"]],[1,5,["G2919"]],[5,8,["G571"]],[8,9,["G3844"]],[9,10,["G5213"]],[10,11,["G1487"]],[11,12,["G2316"]],[12,14,["G1453"]],[14,16,["G3498"]]]},{"k":27832,"v":[[0,1,["G1473"]],[1,2,["G3303","(G3767)"]],[2,3,["G1380"]],[3,5,["G1683"]],[5,8,["G1163"]],[8,10,["G4238"]],[10,12,["G4183"]],[12,13,["G1727"]],[13,14,["G4314"]],[14,15,["G3588"]],[15,16,["G3686"]],[16,18,["G2424"]],[18,20,["G3480"]]]},{"k":27833,"v":[[0,2,["G3739"]],[2,4,["G2532"]],[4,5,["G4160"]],[5,6,["G1722"]],[6,7,["G2414"]],[7,8,["G2532"]],[8,9,["G4183"]],[9,11,["G3588"]],[11,12,["G40"]],[12,14,["G1473"]],[14,16,["G2623"]],[16,18,["G5438"]],[18,20,["G2983"]],[20,21,["G1849"]],[21,22,["G3844"]],[22,23,["G3588"]],[23,25,["G749"]],[25,26,["G5037"]],[26,28,["G846"]],[28,32,["G337"]],[32,37,["G2702","G5586"]],[37,38,[]]]},{"k":27834,"v":[[0,1,["G2532"]],[1,3,["G5097"]],[3,4,["G846"]],[4,5,["G4178"]],[5,7,["G2596","G3956"]],[7,8,["G4864"]],[8,10,["G315"]],[10,13,["G987"]],[13,14,["G5037"]],[14,18,["G1693","G4057"]],[18,19,["G846"]],[19,21,["G1377"]],[21,23,["G2193","(G2532)"]],[23,24,["G1519"]],[24,25,["G1854"]],[25,26,["G4172"]]]},{"k":27835,"v":[[0,1,["G1722","G3739"]],[1,2,["(G2532)"]],[2,4,["G4198"]],[4,5,["G1519"]],[5,6,["G1154"]],[6,7,["G3326"]],[7,8,["G1849"]],[8,9,["G2532"]],[9,10,["G2011"]],[10,11,["G3844"]],[11,12,["G3588"]],[12,14,["G749"]]]},{"k":27836,"v":[[0,2,["G3319","G2250"]],[2,4,["G935"]],[4,5,["G1492"]],[5,7,["G2596"]],[7,8,["G3588"]],[8,9,["G3598"]],[9,11,["G5457"]],[11,13,["G3771"]],[13,14,["G5228"]],[14,15,["G3588"]],[15,16,["G2987"]],[16,18,["G3588"]],[18,19,["G2246"]],[19,22,["G4034"]],[22,23,["G3165"]],[23,24,["G2532"]],[24,27,["G4198"]],[27,28,["G4862"]],[28,29,["G1698"]]]},{"k":27837,"v":[[0,1,["G1161"]],[1,3,["G2257"]],[3,5,["G3956"]],[5,6,["G2667"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G1093"]],[9,11,["G191"]],[11,13,["G5456"]],[13,14,["G2980"]],[14,15,["G4314"]],[15,16,["G3165"]],[16,17,["G2532"]],[17,18,["G3004"]],[18,20,["G3588"]],[20,21,["G1446"]],[21,22,["G1258"]],[22,23,["G4549"]],[23,24,["G4549"]],[24,25,["G5101"]],[25,26,["G1377"]],[26,28,["G3165"]],[28,31,["G4642"]],[31,33,["G4671"]],[33,35,["G2979"]],[35,36,["G4314"]],[36,38,["G2759"]]]},{"k":27838,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G2036"]],[3,4,["G5101"]],[4,5,["G1488"]],[5,7,["G2962"]],[7,8,["G1161"]],[8,9,["G3588"]],[9,10,["G2036"]],[10,11,["G1473"]],[11,12,["G1510"]],[12,13,["G2424"]],[13,14,["G3739"]],[14,15,["G4771"]],[15,16,["G1377"]]]},{"k":27839,"v":[[0,1,["G235"]],[1,2,["G450"]],[2,3,["G2532"]],[3,4,["G2476"]],[4,5,["G1909"]],[5,6,["G4675"]],[6,7,["G4228"]],[7,8,["G1063"]],[8,11,["G3700"]],[11,13,["G4671"]],[13,14,["G1519"]],[14,15,["G5124"]],[15,18,["G4400"]],[18,19,["G4571"]],[19,21,["G5257"]],[21,22,["G2532"]],[22,24,["G3144"]],[24,25,["G5037"]],[25,29,["G3739"]],[29,32,["G1492"]],[32,33,["G5037"]],[33,39,["G3739"]],[39,42,["G3700"]],[42,44,["G4671"]]]},{"k":27840,"v":[[0,1,["G1807"]],[1,2,["G4571"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G2992"]],[5,6,["G2532"]],[6,8,["G3588"]],[8,9,["G1484"]],[9,10,["G1519"]],[10,11,["G3739"]],[11,12,["G3568"]],[12,14,["G649"]],[14,15,["G4571"]]]},{"k":27841,"v":[[0,2,["G455"]],[2,3,["G846"]],[3,4,["G3788"]],[4,7,["G1994"]],[7,9,["G575"]],[9,10,["G4655"]],[10,11,["G1519"]],[11,12,["G5457"]],[12,13,["G2532"]],[13,15,["G3588"]],[15,16,["G1849"]],[16,18,["G4567"]],[18,19,["G1909"]],[19,20,["G2316"]],[20,21,["G3588"]],[21,22,["G846"]],[22,24,["G2983"]],[24,25,["G859"]],[25,27,["G266"]],[27,28,["G2532"]],[28,29,["G2819"]],[29,30,["G1722"]],[30,31,["G3588"]],[31,34,["G37"]],[34,36,["G4102"]],[36,37,["G3588"]],[37,39,["G1519"]],[39,40,["G1691"]]]},{"k":27842,"v":[[0,1,["G3606"]],[1,3,["G935"]],[3,4,["G67"]],[4,6,["G1096"]],[6,7,["G3756"]],[7,8,["G545"]],[8,10,["G3588"]],[10,11,["G3770"]],[11,12,["G3701"]]]},{"k":27843,"v":[[0,1,["G235"]],[1,2,["G518"]],[2,3,["G4412"]],[3,5,["G3588"]],[5,6,["G1722"]],[6,7,["G1154"]],[7,8,["G2532"]],[8,10,["G2414"]],[10,11,["G5037"]],[11,12,["G1519"]],[12,13,["G3956"]],[13,14,["G3588"]],[14,15,["G5561"]],[15,17,["G2449"]],[17,18,["G2532"]],[18,21,["G3588"]],[21,22,["G1484"]],[22,26,["G3340"]],[26,27,["G2532"]],[27,28,["G1994"]],[28,29,["G1909"]],[29,30,["G2316"]],[30,32,["G4238"]],[32,33,["G2041"]],[33,34,["G514"]],[34,36,["G3341"]]]},{"k":27844,"v":[[0,3,["G1752","G5130"]],[3,4,["G3588"]],[4,5,["G2453"]],[5,6,["G4815"]],[6,7,["G3165"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G2411"]],[10,13,["G3987"]],[13,15,["G1315"]],[15,16,[]]]},{"k":27845,"v":[[0,2,["G3767"]],[2,3,["G5177"]],[3,4,["G1947"]],[4,5,["G3844"]],[5,6,["G2316"]],[6,8,["G2476"]],[8,9,["G891"]],[9,10,["G5026"]],[10,11,["G2250"]],[11,12,["G3140"]],[12,13,["G5037"]],[13,15,["G3398"]],[15,16,["G2532"]],[16,17,["G3173"]],[17,18,["G3004"]],[18,19,["G3762"]],[19,21,["G1622"]],[21,24,["G3739","(G5037)"]],[24,25,["G3588"]],[25,26,["G4396"]],[26,27,["G2532"]],[27,28,["G3475"]],[28,30,["G2980"]],[30,31,["G3195"]],[31,32,["G1096"]]]},{"k":27846,"v":[[0,1,["(G1487)"]],[1,2,["G5547"]],[2,4,["G3805"]],[4,6,["(G1487)"]],[6,11,["G4413"]],[11,14,["G1537","G386"]],[14,17,["G3498"]],[17,19,["G3195"]],[19,20,["G2605"]],[20,21,["G5457"]],[21,23,["G3588"]],[23,24,["G2992"]],[24,25,["G2532"]],[25,27,["G3588"]],[27,28,["G1484"]]]},{"k":27847,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,4,["G5023"]],[4,7,["G626"]],[7,8,["G5347"]],[8,9,["G5346"]],[9,12,["G3173"]],[12,13,["G5456"]],[13,14,["G3972"]],[14,18,["G3105"]],[18,19,["G4183"]],[19,20,["G1121"]],[20,22,["G4062"]],[22,23,["G4571"]],[23,24,["G3130"]]]},{"k":27848,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5346"]],[3,7,["G3105","G3756"]],[7,9,["G2903"]],[9,10,["G5347"]],[10,11,["G235"]],[11,13,["G669"]],[13,15,["G4487"]],[15,17,["G225"]],[17,18,["G2532"]],[18,19,["G4997"]]]},{"k":27849,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G935"]],[3,4,["G1987"]],[4,5,["G4012"]],[5,7,["G5130"]],[7,8,["G4314"]],[8,9,["G3739"]],[9,10,["G2532"]],[10,12,["G2980"]],[12,13,["G3955"]],[13,14,["G1063"]],[14,17,["G3982"]],[17,19,["G3756","G5100"]],[19,22,["G5130"]],[22,24,["G2990"]],[24,26,["G846"]],[26,27,["G1063"]],[27,29,["G5124"]],[29,30,["G2076"]],[30,31,["G3756"]],[31,32,["G4238"]],[32,33,["G1722"]],[33,35,["G1137"]]]},{"k":27850,"v":[[0,1,["G935"]],[1,2,["G67"]],[2,3,["G4100"]],[3,5,["G3588"]],[5,6,["G4396"]],[6,8,["G1492"]],[8,9,["G3754"]],[9,11,["G4100"]]]},{"k":27851,"v":[[0,1,["G1161"]],[1,2,["G67"]],[2,3,["G5346"]],[3,4,["G4314"]],[4,5,["G3972"]],[5,6,["G1722","G3641"]],[6,8,["G3982"]],[8,9,["G3165"]],[9,11,["G1096"]],[11,13,["G5546"]]]},{"k":27852,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,3,["G2036"]],[3,5,["G2172","G302"]],[5,7,["G2316"]],[7,9,["G3756"]],[9,10,["G3440"]],[10,11,["G4571"]],[11,12,["G235"]],[12,13,["G2532"]],[13,14,["G3956"]],[14,16,["G191"]],[16,17,["G3450"]],[17,19,["G4594"]],[19,20,["G1096"]],[20,21,["G2532"]],[21,22,["G1722","G3641"]],[22,23,["G2532"]],[23,24,["G1722","G4183"]],[24,25,["G5108"]],[25,26,["G3697"]],[26,27,["G2504"]],[27,28,["G1510"]],[28,29,["G3924"]],[29,30,["G5130"]],[30,31,["G1199"]]]},{"k":27853,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G5023"]],[5,6,["G2036"]],[6,7,["G3588"]],[7,8,["G935"]],[8,10,["G450"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G2232"]],[13,14,["G5037"]],[14,15,["G959"]],[15,16,["G2532"]],[16,20,["G4775"]],[20,21,["G846"]]]},{"k":27854,"v":[[0,1,["G2532"]],[1,6,["G402"]],[6,8,["G2980"]],[8,10,["G4314","G240"]],[10,11,["G3004"]],[11,12,["G3778"]],[12,13,["G444"]],[13,14,["G4238"]],[14,15,["G3762"]],[15,16,["G514"]],[16,18,["G2288"]],[18,19,["G2228"]],[19,21,["G1199"]]]},{"k":27855,"v":[[0,1,["G1161"]],[1,2,["G5346"]],[2,3,["G67"]],[3,5,["G5347"]],[5,6,["G3778"]],[6,7,["G444"]],[7,8,["G1410"]],[8,13,["G630"]],[13,14,["G1487"]],[14,17,["G3361"]],[17,18,["G1941"]],[18,20,["G2541"]]]},{"k":27856,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,5,["G2919"]],[5,7,["G2248"]],[7,9,["G636"]],[9,10,["G1519"]],[10,11,["G2482"]],[11,13,["G3860","(G5037)"]],[13,14,["G3972"]],[14,15,["G2532"]],[15,16,["G5100"]],[16,17,["G2087"]],[17,18,["G1202"]],[18,21,["G3686"]],[21,22,["G2457"]],[22,24,["G1543"]],[24,26,["G4575"]],[26,27,["G4686"]]]},{"k":27857,"v":[[0,1,["G1161"]],[1,3,["G1910"]],[3,5,["G4143"]],[5,7,["G98"]],[7,9,["G321"]],[9,10,["G3195"]],[10,12,["G4126"]],[12,14,["G3588"]],[14,15,["G5117"]],[15,16,["G2596"]],[16,17,["G773"]],[17,19,["G708"]],[19,21,["G3110"]],[21,23,["G2331"]],[23,24,["G5607"]],[24,25,["G4862"]],[25,26,["G2254"]]]},{"k":27858,"v":[[0,1,["G5037"]],[1,2,["G3588"]],[2,3,["G2087"]],[3,6,["G2609"]],[6,7,["G1519"]],[7,8,["G4605"]],[8,9,["G5037"]],[9,10,["G2457"]],[10,11,["G5364"]],[11,12,["G5530"]],[12,13,["G3972"]],[13,17,["G2010"]],[17,19,["G4198"]],[19,20,["G4314"]],[20,22,["G5384"]],[22,25,["G5177","G1958"]]]},{"k":27859,"v":[[0,7,["G2547","G321"]],[7,10,["G5284"]],[10,11,["G2954"]],[11,13,["G3588"]],[13,14,["G417"]],[14,15,["G1511"]],[15,16,["G1727"]]]},{"k":27860,"v":[[0,1,["G5037"]],[1,6,["G1277"]],[6,7,["G3588"]],[7,8,["G3989"]],[8,9,["G2596"]],[9,10,["G2791"]],[10,11,["G2532"]],[11,12,["G3828"]],[12,14,["G2718"]],[14,15,["G1519"]],[15,16,["G3460"]],[16,20,["G3073"]]]},{"k":27861,"v":[[0,2,["G2546"]],[2,3,["G3588"]],[3,4,["G1543"]],[4,5,["G2147"]],[5,7,["G4143"]],[7,9,["G222"]],[9,10,["G4126"]],[10,11,["G1519"]],[11,12,["G2482"]],[12,15,["G1688"]],[15,16,["G2248"]],[16,17,["G1519","G846"]]]},{"k":27862,"v":[[0,1,["G1161"]],[1,6,["G1020"]],[6,7,["G2425"]],[7,8,["G2250"]],[8,9,["G2532"]],[9,10,["G3433"]],[10,12,["G1096"]],[12,14,["G2596"]],[14,15,["G2834"]],[15,16,["G3588"]],[16,17,["G417"]],[17,18,["G3361"]],[18,19,["G4330"]],[19,20,["G2248"]],[20,23,["G5284"]],[23,24,["G2914"]],[24,26,["G2596"]],[26,27,["G4534"]]]},{"k":27863,"v":[[0,1,["G5037"]],[1,2,["G3433"]],[2,3,["G3881"]],[3,4,["G846"]],[4,5,["G2064"]],[5,6,["G1519"]],[6,7,["G5100"]],[7,8,["G5117"]],[8,11,["G2564"]],[11,13,["G2568"]],[13,15,["G1451"]],[15,16,["G3739"]],[16,17,["G2258"]],[17,19,["G4172"]],[19,21,["G2996"]]]},{"k":27864,"v":[[0,1,["G1161"]],[1,3,["G2425"]],[3,4,["G5550"]],[4,6,["G1230"]],[6,7,["G2532"]],[7,9,["G4144"]],[9,10,["G5607"]],[10,11,["G2235"]],[11,12,["G2000"]],[12,13,["(G2532)"]],[13,14,["G3588"]],[14,15,["G3521"]],[15,19,["G3928","G2235"]],[19,20,["G3972"]],[20,21,["G3867"]],[21,22,[]]]},{"k":27865,"v":[[0,2,["G3004"]],[2,4,["G846"]],[4,5,["G435"]],[5,7,["G2334"]],[7,8,["G3754"]],[8,10,["G4144"]],[10,11,["G3195"]],[11,12,["G1510"]],[12,13,["G3326"]],[13,14,["G5196"]],[14,15,["G2532"]],[15,16,["G4183"]],[16,17,["G2209"]],[17,18,["G3756"]],[18,19,["G3440"]],[19,21,["G3588"]],[21,22,["G5414"]],[22,23,["G2532"]],[23,24,["G4143"]],[24,25,["G235"]],[25,26,["G2532"]],[26,28,["G2257"]],[28,29,["G5590"]]]},{"k":27866,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1543"]],[3,4,["G3982"]],[4,5,["G3588"]],[5,6,["G2942"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,12,["G3490"]],[12,13,["G3123"]],[13,14,["G2228"]],[14,19,["G3004"]],[19,20,["G5259"]],[20,21,["G3972"]]]},{"k":27867,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G3040"]],[4,5,["G5225"]],[5,7,["G428"]],[7,8,["G4314"]],[8,10,["G3915"]],[10,11,["G3588"]],[11,13,["G4119"]],[13,14,["G5087","G1012"]],[14,16,["G321"]],[16,18,["G2547"]],[18,22,["G1513"]],[22,24,["G1410"]],[24,25,["G2658"]],[25,26,["G1519"]],[26,27,["G5405"]],[27,31,["G3914"]],[31,35,["G3040"]],[35,37,["G2914"]],[37,39,["G991"]],[39,40,["G2596"]],[40,43,["G3047"]],[43,44,["G2532"]],[44,46,["G5566"]]]},{"k":27868,"v":[[0,1,["G1161"]],[1,5,["G3558"]],[5,7,["G5285"]],[7,8,["G1380"]],[8,12,["G2902"]],[12,14,["G4286"]],[14,15,["G142","G788"]],[15,20,["G3881"]],[20,21,["G2914"]]]},{"k":27869,"v":[[0,1,["G1161"]],[1,2,["G3756"]],[2,3,["G4183"]],[3,4,["G3326"]],[4,6,["G906"]],[6,7,["G2596"]],[7,8,["G846"]],[8,10,["G5189"]],[10,11,["G417"]],[11,12,["G2564"]],[12,13,["G2148"]]]},{"k":27870,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G4143"]],[4,6,["G4884"]],[6,7,["G2532"]],[7,8,["G1410"]],[8,9,["G3361"]],[9,11,["G503"]],[11,13,["G3588"]],[13,14,["G417"]],[14,18,["G1929","G5342"]]]},{"k":27871,"v":[[0,1,["G1161"]],[1,3,["G5295"]],[3,5,["G5100"]],[5,6,["G3519"]],[6,9,["G2564"]],[9,10,["G2802"]],[10,14,["G2480","G3433"]],[14,17,["G1096","G4031"]],[17,18,["G3588"]],[18,19,["G4627"]]]},{"k":27872,"v":[[0,1,["G3739"]],[1,6,["G142"]],[6,8,["G5530"]],[8,9,["G996"]],[9,10,["G5269"]],[10,11,["G3588"]],[11,12,["G4143"]],[12,13,["G5037"]],[13,14,["G5399"]],[14,15,["G3361"]],[15,18,["G1601"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G4950"]],[21,23,["G5465","G4632"]],[23,25,["G3779"]],[25,27,["G5342"]]]},{"k":27873,"v":[[0,1,["G1161"]],[1,2,["G2257"]],[2,4,["G4971"]],[4,8,["G5492"]],[8,9,["G3588"]],[9,10,["G1836"]],[10,15,["G4160","G1546"]]]},{"k":27874,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5154"]],[3,7,["G4496"]],[7,11,["G849"]],[11,12,["G3588"]],[12,13,["G4631"]],[13,15,["G3588"]],[15,16,["G4143"]]]},{"k":27875,"v":[[0,1,["G1161"]],[1,3,["G3383"]],[3,4,["G2246"]],[4,5,["G3383"]],[5,6,["G798"]],[6,7,["G1909"]],[7,8,["G4119"]],[8,9,["G2250"]],[9,10,["G2014"]],[10,11,["G5037"]],[11,12,["G3756"]],[12,13,["G3641"]],[13,14,["G5494"]],[14,16,["G1945"]],[16,18,["G3956"]],[18,19,["G1680"]],[19,21,["G2248"]],[21,24,["G4982"]],[24,26,["G3063"]],[26,28,["G4014"]]]},{"k":27876,"v":[[0,1,["G1161"]],[1,2,["(G5225)"]],[2,3,["G4183"]],[3,4,["G776"]],[4,5,["G3972"]],[5,7,["G2476"]],[7,8,["G1722"]],[8,10,["G3319"]],[10,12,["G848"]],[12,14,["G2036","(G5599)"]],[14,15,["G435"]],[15,17,["G1163"]],[17,18,["(G3303)"]],[18,19,["G3980"]],[19,21,["G3427"]],[21,23,["G3361"]],[23,25,["G321"]],[25,26,["G575"]],[26,27,["G2914"]],[27,28,["G5037"]],[28,31,["G2770"]],[31,32,["G5026"]],[32,33,["G5196"]],[33,34,["G2532"]],[34,35,["G2209"]]]},{"k":27877,"v":[[0,1,["G2532"]],[1,2,["G3569"]],[2,4,["G3867"]],[4,5,["G5209"]],[5,10,["G2114"]],[10,11,["G1063"]],[11,14,["G2071"]],[14,15,["G3762"]],[15,16,["G580"]],[16,20,["G5590"]],[20,21,["G1537"]],[21,22,["G5216"]],[22,23,["G4133"]],[23,25,["G3588"]],[25,26,["G4143"]]]},{"k":27878,"v":[[0,1,["G1063"]],[1,4,["G3936"]],[4,5,["G3427"]],[5,6,["G5026"]],[6,7,["G3571"]],[7,9,["G32"]],[9,11,["G2316"]],[11,12,["G3739"]],[12,14,["G1510"]],[14,15,["G2532"]],[15,16,["G3739"]],[16,18,["G3000"]]]},{"k":27879,"v":[[0,1,["G3004"]],[1,2,["G5399"]],[2,3,["G3361"]],[3,4,["G3972"]],[4,5,["G4571"]],[5,6,["G1163"]],[6,9,["G3936"]],[9,10,["G2541"]],[10,11,["G2532"]],[11,12,["G2400"]],[12,13,["G2316"]],[13,15,["G5483"]],[15,16,["G4671"]],[16,17,["G3956"]],[17,20,["G4126"]],[20,21,["G3326"]],[21,22,["G4675"]]]},{"k":27880,"v":[[0,1,["G1352"]],[1,2,["G435"]],[2,6,["G2114"]],[6,7,["G1063"]],[7,9,["G4100"]],[9,10,["G2316"]],[10,11,["G3754"]],[11,12,["(G3779)"]],[12,14,["G2071"]],[14,16,["G2596","G3739","G5158"]],[16,19,["G2980"]],[19,20,["G3427"]]]},{"k":27881,"v":[[0,1,["G1161"]],[1,2,["G2248"]],[2,3,["G1163"]],[3,5,["G1601"]],[5,6,["G1519"]],[6,8,["G5100"]],[8,9,["G3520"]]]},{"k":27882,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,4,["G5065"]],[4,5,["G3571"]],[5,7,["G1096"]],[7,9,["G2257"]],[9,14,["G1308"]],[14,15,["G1722"]],[15,16,["G99"]],[16,17,["G2596"]],[17,18,["G3319","G3571"]],[18,19,["G3588"]],[19,20,["G3492"]],[20,21,["G5282"]],[21,23,["G848"]],[23,25,["G4317"]],[25,27,["G5100"]],[27,28,["G5561"]]]},{"k":27883,"v":[[0,1,["G2532"]],[1,2,["G1001"]],[2,4,["G2147"]],[4,6,["G1501"]],[6,7,["G3712"]],[7,8,["G1161"]],[8,15,["G1339","G1024"]],[15,17,["G1001"]],[17,18,["G3825"]],[18,19,["G2532"]],[19,20,["G2147"]],[20,22,["G1178"]],[22,23,["G3712"]]]},{"k":27884,"v":[[0,1,["G5037"]],[1,2,["G5399"]],[2,3,["G3381"]],[3,7,["G1601"]],[7,8,["G1519"]],[8,9,["G5138","G5117"]],[9,11,["G4496"]],[11,12,["G5064"]],[12,13,["G45"]],[13,14,["G1537"]],[14,17,["G4403"]],[17,19,["G2172"]],[19,22,["G2250","(G1096)"]]]},{"k":27885,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G3492"]],[4,6,["G2212"]],[6,8,["G5343"]],[8,10,["G1537"]],[10,11,["G3588"]],[11,12,["G4143"]],[12,13,["G2532"]],[13,17,["G5465"]],[17,18,["G3588"]],[18,19,["G4627"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G2281"]],[22,24,["G4392"]],[24,26,["G5613"]],[26,28,["G3195"]],[28,30,["G1614"]],[30,31,["G45"]],[31,33,["G1537"]],[33,35,["G4408"]]]},{"k":27886,"v":[[0,1,["G3972"]],[1,2,["G2036"]],[2,4,["G3588"]],[4,5,["G1543"]],[5,6,["G2532"]],[6,8,["G3588"]],[8,9,["G4757"]],[9,10,["G3362"]],[10,11,["G3778"]],[11,12,["G3306"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G4143"]],[15,16,["G5210"]],[16,17,["G1410","G3756"]],[17,19,["G4982"]]]},{"k":27887,"v":[[0,1,["G5119"]],[1,2,["G3588"]],[2,3,["G4757"]],[3,5,["G609"]],[5,6,["G3588"]],[6,7,["G4979"]],[7,9,["G3588"]],[9,10,["G4627"]],[10,11,["G2532"]],[11,12,["G1439"]],[12,13,["G846"]],[13,15,["G1601"]]]},{"k":27888,"v":[[0,1,["G1161"]],[1,2,["G891","G3739"]],[2,4,["G2250"]],[4,5,["G3195"]],[5,7,["G1096"]],[7,8,["G3972"]],[8,9,["G3870"]],[9,11,["G537"]],[11,13,["G3335"]],[13,14,["G5160"]],[14,15,["G3004"]],[15,17,["G4594"]],[17,20,["G5065"]],[20,21,["G2250"]],[21,25,["G4328"]],[25,27,["G1300"]],[27,28,["G777"]],[28,30,["G4355"]],[30,31,["G3367"]]]},{"k":27889,"v":[[0,1,["G1352"]],[1,3,["G3870"]],[3,4,["G5209"]],[4,6,["G4355"]],[6,8,["G5160"]],[8,9,["G1063"]],[9,10,["G5124"]],[10,11,["G5225"]],[11,12,["G4314"]],[12,13,["G5212"]],[13,14,["G4991"]],[14,15,["G1063"]],[15,20,["G2359"]],[20,21,["G4098"]],[21,22,["G1537"]],[22,23,["G3588"]],[23,24,["G2776"]],[24,26,["G3762"]],[26,28,["G5216"]]]},{"k":27890,"v":[[0,1,["G1161"]],[1,5,["G5023"]],[5,6,["G2036"]],[6,7,["(G2532)"]],[7,8,["G2983"]],[8,9,["G740"]],[9,12,["G2168"]],[12,14,["G2316"]],[14,16,["G1799"]],[16,19,["G3956"]],[19,20,["G2532"]],[20,24,["G2806"]],[24,27,["G756"]],[27,29,["G2068"]]]},{"k":27891,"v":[[0,1,["G1161"]],[1,2,["G1096"]],[2,4,["G3956"]],[4,7,["G2115"]],[7,9,["G848"]],[9,10,["G2532"]],[10,11,["G4355"]],[11,13,["G5160"]]]},{"k":27892,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,5,["G3956"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G4143"]],[8,13,["G1250","G1440","G1803"]],[13,14,["G5590"]]]},{"k":27893,"v":[[0,1,["G1161"]],[1,6,["G2880","G5160"]],[6,8,["G2893"]],[8,9,["G3588"]],[9,10,["G4143"]],[10,13,["G1544"]],[13,14,["G3588"]],[14,15,["G4621"]],[15,16,["G1519"]],[16,17,["G3588"]],[17,18,["G2281"]]]},{"k":27894,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,4,["G1096"]],[4,5,["G2250"]],[5,7,["G1921"]],[7,8,["G3756"]],[8,9,["G3588"]],[9,10,["G1093"]],[10,11,["G1161"]],[11,13,["G2657"]],[13,15,["G5100"]],[15,16,["G2859"]],[16,17,["(G2192)"]],[17,19,["G123"]],[19,20,["G1519"]],[20,22,["G3739"]],[22,25,["G1011"]],[25,26,["G1487"]],[26,29,["G1410"]],[29,32,["G1856"]],[32,33,["G3588"]],[33,34,["G4143"]]]},{"k":27895,"v":[[0,1,["G2532"]],[1,6,["G4014"]],[6,7,["G3588"]],[7,8,["G45"]],[8,10,["G1439"]],[10,12,["G1519"]],[12,13,["G3588"]],[13,14,["G2281"]],[14,15,["(G260)"]],[15,16,["G447"]],[16,17,["G3588"]],[17,18,["G4079"]],[18,19,["G2202"]],[19,20,["G2532"]],[20,22,["G1869"]],[22,23,["G3588"]],[23,24,["G736"]],[24,26,["G3588"]],[26,27,["G4154"]],[27,29,["G2722"]],[29,30,["G1519"]],[30,31,["G123"]]]},{"k":27896,"v":[[0,1,["G1161"]],[1,2,["G4045"]],[2,3,["G1519"]],[3,5,["G5117"]],[5,9,["G1337"]],[9,14,["G2027","G3588","G3491"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G4408","(G3303)"]],[17,19,["G2043"]],[19,21,["G3306"]],[21,22,["G761"]],[22,23,["G1161"]],[23,24,["G3588"]],[24,26,["G4403"]],[26,28,["G3089"]],[28,29,["G5259"]],[29,30,["G3588"]],[30,31,["G970"]],[31,33,["G3588"]],[33,34,["G2949"]]]},{"k":27897,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4757"]],[3,4,["G1012"]],[4,5,["G1096"]],[5,6,["G2443"]],[6,7,["G615"]],[7,8,["G3588"]],[8,9,["G1202"]],[9,13,["G3361","G5100"]],[13,16,["G1579"]],[16,18,["G1309"]]]},{"k":27898,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1543"]],[3,4,["G1014"]],[4,6,["G1295"]],[6,7,["G3972"]],[7,8,["G2967"]],[8,9,["G846"]],[9,12,["G1013"]],[12,13,["G5037"]],[13,14,["G2753"]],[14,18,["G1410"]],[18,19,["G2860"]],[19,21,["G641"]],[21,23,["G4413"]],[23,28,["G1826"]],[28,29,["G1909"]],[29,30,["G1093"]]]},{"k":27899,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3062"]],[3,4,["G3739"]],[4,5,["G1909"]],[5,6,["G4548"]],[6,7,["G1161"]],[7,8,["G3739","(G3303)"]],[8,9,["G1909"]],[9,11,["(G5100)"]],[11,12,["G575"]],[12,13,["G3588"]],[13,14,["G4143"]],[14,15,["G2532"]],[15,16,["G3779"]],[16,20,["G1096"]],[20,25,["G1295","G3956"]],[25,26,["G1909"]],[26,27,["G1093"]]]},{"k":27900,"v":[[0,1,["G2532"]],[1,5,["G1295"]],[5,6,["G5119"]],[6,8,["G1921"]],[8,9,["G3754"]],[9,10,["G3588"]],[10,11,["G3520"]],[11,13,["G2564"]],[13,14,["G3194"]]]},{"k":27901,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G915"]],[4,5,["G3930"]],[5,6,["G2254"]],[6,7,["G3756"]],[7,8,["G5177"]],[8,9,["G5363"]],[9,10,["G1063"]],[10,12,["G381"]],[12,14,["G4443"]],[14,16,["G4355"]],[16,17,["G2248"]],[17,19,["G3956"]],[19,20,["G1223"]],[20,22,["G3588"]],[22,23,["G2186"]],[23,24,["G5205"]],[24,25,["G2532"]],[25,26,["G1223"]],[26,28,["G3588"]],[28,29,["G5592"]]]},{"k":27902,"v":[[0,1,["G1161"]],[1,3,["G3972"]],[3,5,["G4962"]],[5,7,["G4128"]],[7,9,["G5434"]],[9,10,["G2532"]],[10,11,["G2007"]],[11,13,["G1909"]],[13,14,["G3588"]],[14,15,["G4443"]],[15,17,["G1831"]],[17,19,["G2191"]],[19,21,["G1537"]],[21,22,["G3588"]],[22,23,["G2329"]],[23,25,["G2510"]],[25,27,["G848"]],[27,28,["G5495"]]]},{"k":27903,"v":[[0,1,["G1161"]],[1,2,["G5613"]],[2,3,["G3588"]],[3,4,["G915"]],[4,5,["G1492"]],[5,6,["G3588"]],[6,8,["G2342"]],[8,9,["G2910"]],[9,10,["G1537"]],[10,11,["G848"]],[11,12,["G5495"]],[12,14,["G3004"]],[14,15,["G4314"]],[15,16,["G240"]],[16,18,["G3843"]],[18,19,["G3778"]],[19,20,["G444"]],[20,21,["G2076"]],[21,23,["G5406"]],[23,24,["G3739"]],[24,28,["G1295"]],[28,29,["G3588"]],[29,30,["G2281"]],[30,32,["G1349"]],[32,33,["G1439"]],[33,34,["G3756"]],[34,36,["G2198"]]]},{"k":27904,"v":[[0,1,["G3767"]],[1,2,["G3588","(G3303)"]],[2,4,["G660"]],[4,5,["G3588"]],[5,6,["G2342"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G4442"]],[9,11,["G3958"]],[11,12,["G3762"]],[12,13,["G2556"]]]},{"k":27905,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4328"]],[3,5,["G846"]],[5,6,["G3195"]],[6,8,["G4092"]],[8,9,["G2228"]],[9,11,["G2667"]],[11,12,["G3498"]],[12,13,["G869"]],[13,14,["G1161"]],[14,16,["G846"]],[16,18,["G4328"]],[18,21,["G1909","G4183"]],[21,22,["G2532"]],[22,23,["G2334"]],[23,25,["G3367","G824"]],[25,26,["G1096"]],[26,27,["G1519"]],[27,28,["G846"]],[28,32,["G3328"]],[32,34,["G3004"]],[34,36,["G846"]],[36,37,["G1511"]],[37,39,["G2316"]]]},{"k":27906,"v":[[0,0,["(G1161)"]],[0,1,["G1722"]],[1,2,["G3588"]],[2,4,["G4012","G1565","G5117"]],[4,5,["G5225"]],[5,6,["G5564"]],[6,8,["G3588"]],[8,10,["G4413"]],[10,12,["G3588"]],[12,13,["G3520"]],[13,15,["G3686"]],[15,17,["G4196"]],[17,18,["G3739"]],[18,19,["G324"]],[19,20,["G2248"]],[20,22,["G3579"]],[22,24,["G5140"]],[24,25,["G2250"]],[25,26,["G5390"]]]},{"k":27907,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,7,["G3588"]],[7,8,["G3962"]],[8,10,["G4196"]],[10,11,["G2621"]],[11,12,["G4912"]],[12,15,["G4446"]],[15,16,["G2532"]],[16,20,["G1420"]],[20,21,["G4314"]],[21,22,["G3739"]],[22,23,["G3972"]],[23,25,["G1525"]],[25,26,["G2532"]],[26,27,["G4336"]],[27,29,["G2007"]],[29,31,["G5495"]],[31,33,["G846"]],[33,35,["G2390"]],[35,36,["G846"]]]},{"k":27908,"v":[[0,1,["G3767"]],[1,3,["G5127"]],[3,5,["G1096"]],[5,6,["G3062"]],[6,7,["G2532"]],[7,9,["G2192"]],[9,10,["G769"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G3520"]],[13,14,["G4334"]],[14,15,["G2532"]],[15,17,["G2323"]]]},{"k":27909,"v":[[0,1,["G3739"]],[1,2,["G2532"]],[2,3,["G5092"]],[3,4,["G2248"]],[4,6,["G4183"]],[6,7,["G5091"]],[7,8,["G2532"]],[8,11,["G321"]],[11,13,["G2007"]],[13,20,["G4314","G5532"]]]},{"k":27910,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,3,["G5140"]],[3,4,["G3376"]],[4,6,["G321"]],[6,7,["G1722"]],[7,9,["G4143"]],[9,11,["G222"]],[11,14,["G3914"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G3520"]],[17,19,["G3902"]],[19,23,["G1359"]]]},{"k":27911,"v":[[0,1,["G2532"]],[1,2,["G2609"]],[2,3,["G1519"]],[3,4,["G4946"]],[4,6,["G1961"]],[6,8,["G5140"]],[8,9,["G2250"]]]},{"k":27912,"v":[[0,3,["G3606"]],[3,7,["G4022"]],[7,9,["G2658"]],[9,10,["G1519"]],[10,11,["G4484"]],[11,12,["G2532"]],[12,13,["G3326"]],[13,14,["G3391"]],[14,15,["G2250"]],[15,18,["G3558"]],[18,19,["G1920"]],[19,22,["G2064"]],[22,25,["G1206"]],[25,26,["G1519"]],[26,27,["G4223"]]]},{"k":27913,"v":[[0,1,["G3757"]],[1,3,["G2147"]],[3,4,["G80"]],[4,7,["G3870"]],[7,9,["G1961"]],[9,10,["G1909"]],[10,11,["G846"]],[11,12,["G2033"]],[12,13,["G2250"]],[13,14,["G2532"]],[14,15,["G3779"]],[15,17,["G2064"]],[17,18,["G1519"]],[18,19,["G4516"]]]},{"k":27914,"v":[[0,3,["G2547"]],[3,5,["G3588"]],[5,6,["G80"]],[6,7,["G191"]],[7,8,["G4012"]],[8,9,["G2257"]],[9,11,["G1831"]],[11,12,["G1519"]],[12,13,["G529"]],[13,14,["G2254"]],[14,17,["G891"]],[17,18,["G675"]],[18,19,["G5410"]],[19,20,["G2532"]],[20,22,["G5140"]],[22,23,["G4999"]],[23,24,["G3739"]],[24,26,["G3972"]],[26,27,["G1492"]],[27,29,["G2168"]],[29,30,["G2316"]],[30,32,["G2983"]],[32,33,["G2294"]]]},{"k":27915,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,4,["G2064"]],[4,5,["G1519"]],[5,6,["G4516"]],[6,7,["G3588"]],[7,8,["G1543"]],[8,9,["G3860"]],[9,10,["G3588"]],[10,11,["G1198"]],[11,13,["G3588"]],[13,17,["G4759"]],[17,18,["G1161"]],[18,19,["G3972"]],[19,21,["G2010"]],[21,23,["G3306"]],[23,24,["G2596"]],[24,25,["G1438"]],[25,26,["G4862"]],[26,28,["G4757"]],[28,30,["G5442"]],[30,31,["G846"]]]},{"k":27916,"v":[[0,1,["G1161"]],[1,5,["G1096"]],[5,7,["G3326"]],[7,8,["G5140"]],[8,9,["G2250"]],[9,10,["G3972"]],[10,17,["G4779","G3588","G5607","G4413","G3588","G2453"]],[17,18,["G1161"]],[18,20,["G848"]],[20,23,["G4905"]],[23,25,["G3004"]],[25,26,["G4314"]],[26,27,["G846"]],[27,28,["G435"]],[28,30,["G80"]],[30,32,["G1473"]],[32,34,["G4160"]],[34,35,["G3762"]],[35,36,["G1727"]],[36,37,["G3588"]],[37,38,["G2992"]],[38,39,["G2228"]],[39,40,["G1485"]],[40,43,["G3971"]],[43,47,["G3860"]],[47,48,["G1198"]],[48,49,["G1537"]],[49,50,["G2414"]],[50,51,["G1519"]],[51,52,["G3588"]],[52,53,["G5495"]],[53,55,["G3588"]],[55,56,["G4514"]]]},{"k":27917,"v":[[0,1,["G3748"]],[1,5,["G350"]],[5,6,["G3165"]],[6,7,["G1014"]],[7,11,["G630"]],[11,14,["G5225"]],[14,15,["G3367"]],[15,16,["G156"]],[16,18,["G2288"]],[18,19,["G1722"]],[19,20,["G1698"]]]},{"k":27918,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G2453"]],[4,6,["G483"]],[6,10,["G315"]],[10,13,["G1941"]],[13,14,["G2541"]],[14,15,["G3756"]],[15,16,["G5613"]],[16,18,["G2192"]],[18,19,["G5100"]],[19,21,["G2723"]],[21,22,["G3450"]],[22,23,["G1484"]],[23,24,[]]]},{"k":27919,"v":[[0,1,["G1223"]],[1,2,["G5026"]],[2,3,["G156"]],[3,4,["G3767"]],[4,7,["G3870"]],[7,9,["G5209"]],[9,11,["G1492"]],[11,13,["G2532"]],[13,16,["G4354"]],[16,18,["G1752"]],[18,20,["G1063"]],[20,21,["G3588"]],[21,22,["G1680"]],[22,24,["G2474"]],[24,27,["G4029"]],[27,29,["G5026"]],[29,30,["G254"]]]},{"k":27920,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2036"]],[3,4,["G4314"]],[4,5,["G846"]],[5,6,["G2249"]],[6,7,["G3777"]],[7,8,["G1209"]],[8,9,["G1121"]],[9,11,["G575"]],[11,12,["G2449"]],[12,13,["G4012"]],[13,14,["G4675"]],[14,15,["G3777"]],[15,16,["G5100"]],[16,18,["G3588"]],[18,19,["G80"]],[19,21,["G3854"]],[21,22,["G518"]],[22,23,["G2228"]],[23,24,["G2980"]],[24,25,["G5100"]],[25,26,["G4190"]],[26,27,["G4012"]],[27,28,["G4675"]]]},{"k":27921,"v":[[0,1,["G1161"]],[1,3,["G515"]],[3,5,["G191"]],[5,6,["G3844"]],[6,7,["G4675"]],[7,8,["G3739"]],[8,10,["G5426"]],[10,11,["G1063"]],[11,12,["(G3303)"]],[12,13,["G4012"]],[13,14,["G5026"]],[14,15,["G139"]],[15,16,["G2254"]],[16,17,["G2076","G1110"]],[17,18,["G3754"]],[18,20,["G3837"]],[20,24,["G483"]]]},{"k":27922,"v":[[0,1,["G1161"]],[1,5,["G5021"]],[5,6,["G846"]],[6,8,["G2250"]],[8,10,["G2240"]],[10,11,["G4119"]],[11,12,["G4314"]],[12,13,["G846"]],[13,14,["G1519"]],[14,16,["G3578"]],[16,18,["G3739"]],[18,20,["G1620"]],[20,22,["G1263"]],[22,23,["G3588"]],[23,24,["G932"]],[24,26,["G2316","(G5037)"]],[26,27,["G3982"]],[27,28,["G846"]],[28,29,["G4012"]],[29,30,["G2424"]],[30,31,["G5037"]],[31,33,["G575"]],[33,34,["G3588"]],[34,35,["G3551"]],[35,37,["G3475"]],[37,38,["G2532"]],[38,41,["G3588"]],[41,42,["G4396"]],[42,43,["G575"]],[43,44,["G4404"]],[44,45,["G2193"]],[45,46,["G2073"]]]},{"k":27923,"v":[[0,1,["G2532"]],[1,2,["G3588","G3303"]],[2,3,["G3982"]],[3,8,["G3004"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,12,["G569"]]]},{"k":27924,"v":[[0,1,["G1161"]],[1,5,["G5607","G800"]],[5,6,["G4314"]],[6,7,["G240"]],[7,9,["G630"]],[9,12,["G3972"]],[12,14,["G2036"]],[14,15,["G1520"]],[15,16,["G4487"]],[16,17,["G2573"]],[17,18,["G2980"]],[18,19,["G3588"]],[19,20,["G40"]],[20,21,["G4151"]],[21,22,["G1223"]],[22,23,["G2268"]],[23,24,["G3588"]],[24,25,["G4396"]],[25,26,["G4314"]],[26,27,["G2257"]],[27,28,["G3962"]]]},{"k":27925,"v":[[0,1,["G3004"]],[1,2,["G4198"]],[2,3,["G4314"]],[3,4,["G5126"]],[4,5,["G2992"]],[5,6,["G2532"]],[6,7,["G2036"]],[7,8,["G189"]],[8,11,["G191"]],[11,12,["G2532"]],[12,14,["G3364"]],[14,15,["G4920"]],[15,16,["G2532"]],[16,17,["G991"]],[17,20,["G991"]],[20,21,["G2532"]],[21,22,["G3364"]],[22,23,["G1492"]]]},{"k":27926,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G2588"]],[3,5,["G5127"]],[5,6,["G2992"]],[6,9,["G3975"]],[9,10,["G2532"]],[10,12,["G3775"]],[12,16,["G191","G917"]],[16,17,["G2532"]],[17,18,["G848"]],[18,19,["G3788"]],[19,22,["G2576"]],[22,23,["G3379"]],[23,26,["G1492"]],[26,29,["G3788"]],[29,30,["G2532"]],[30,31,["G191"]],[31,34,["G3775"]],[34,35,["G2532"]],[35,36,["G4920"]],[36,39,["G2588"]],[39,40,["G2532"]],[40,43,["G1994"]],[43,44,["G2532"]],[44,47,["G2390"]],[47,48,["G846"]]]},{"k":27927,"v":[[0,1,["G2077"]],[1,3,["G1110"]],[3,4,["G3767"]],[4,6,["G5213"]],[6,7,["G3754"]],[7,8,["G3588"]],[8,9,["G4992"]],[9,11,["G2316"]],[11,13,["G649"]],[13,15,["G3588"]],[15,16,["G1484"]],[16,17,["G2532"]],[17,19,["G846"]],[19,21,["G191"]],[21,22,[]]]},{"k":27928,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G2036"]],[5,7,["G5023"]],[7,8,["G3588"]],[8,9,["G2453"]],[9,10,["G565"]],[10,12,["G2192"]],[12,13,["G4183"]],[13,14,["G4803"]],[14,15,["G1722"]],[15,16,["G1438"]]]},{"k":27929,"v":[[0,1,["G1161"]],[1,2,["G3972"]],[2,3,["G3306"]],[3,6,["G1333","G3650"]],[6,7,["G1722"]],[7,9,["G2398"]],[9,11,["G3410"]],[11,12,["G2532"]],[12,13,["G588"]],[13,14,["G3956"]],[14,17,["G1531"]],[17,18,["G4314"]],[18,19,["G846"]]]},{"k":27930,"v":[[0,1,["G2784"]],[1,2,["G3588"]],[2,3,["G932"]],[3,5,["G2316"]],[5,6,["G2532"]],[6,7,["G1321"]],[7,9,["G3588"]],[9,11,["G4012"]],[11,12,["G3588"]],[12,13,["G2962"]],[13,14,["G2424"]],[14,15,["G5547"]],[15,16,["G3326"]],[16,17,["G3956"]],[17,18,["G3954"]],[18,22,["G209"]]]},{"k":27931,"v":[[0,1,["G3972"]],[1,3,["G1401"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,7,["G2822"]],[7,11,["G652"]],[11,12,["G873"]],[12,13,["G1519"]],[13,15,["G2098"]],[15,17,["G2316"]]]},{"k":27932,"v":[[0,1,["G3739"]],[1,5,["G4279"]],[5,6,["G1223"]],[6,7,["G848"]],[7,8,["G4396"]],[8,9,["G1722"]],[9,11,["G40"]],[11,12,["G1124"]]]},{"k":27933,"v":[[0,1,["G4012"]],[1,2,["G848"]],[2,3,["G5207"]],[3,4,["G2424"]],[4,5,["G5547"]],[5,6,["G2257"]],[6,7,["G2962"]],[7,8,["G3588"]],[8,10,["G1096"]],[10,11,["G1537"]],[11,13,["G4690"]],[13,15,["G1138"]],[15,16,["G2596"]],[16,19,["G4561"]]]},{"k":27934,"v":[[0,2,["G3724"]],[2,6,["G5207"]],[6,8,["G2316"]],[8,9,["G1722"]],[9,10,["G1411"]],[10,11,["G2596"]],[11,14,["G4151"]],[14,16,["G42"]],[16,17,["G1537"]],[17,19,["G386"]],[19,22,["G3498"]]]},{"k":27935,"v":[[0,1,["G1223"]],[1,2,["G3739"]],[2,5,["G2983"]],[5,6,["G5485"]],[6,7,["G2532"]],[7,8,["G651"]],[8,9,["G1519"]],[9,10,["G5218"]],[10,13,["G4102"]],[13,14,["G1722"]],[14,15,["G3956"]],[15,16,["G1484"]],[16,17,["G5228"]],[17,18,["G848"]],[18,19,["G3686"]]]},{"k":27936,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G2075"]],[3,4,["G5210"]],[4,5,["G2532"]],[5,7,["G2822"]],[7,9,["G2424"]],[9,10,["G5547"]]]},{"k":27937,"v":[[0,2,["G3956"]],[2,4,["G5607"]],[4,5,["G1722"]],[5,6,["G4516"]],[6,7,["G27"]],[7,9,["G2316"]],[9,10,["G2822"]],[10,13,["G40"]],[13,14,["G5485"]],[14,16,["G5213"]],[16,17,["G2532"]],[17,18,["G1515"]],[18,19,["G575"]],[19,20,["G2316"]],[20,21,["G2257"]],[21,22,["G3962"]],[22,23,["G2532"]],[23,25,["G2962"]],[25,26,["G2424"]],[26,27,["G5547"]]]},{"k":27938,"v":[[0,1,["G4412"]],[1,2,["(G3303)"]],[2,3,["G2168"]],[3,4,["G3450"]],[4,5,["G2316"]],[5,6,["G1223"]],[6,7,["G2424"]],[7,8,["G5547"]],[8,9,["G5228"]],[9,10,["G5216"]],[10,11,["G3956"]],[11,12,["G3754"]],[12,13,["G5216"]],[13,14,["G4102"]],[14,17,["G2605","G1722"]],[17,19,["G3588"]],[19,20,["G3650"]],[20,21,["G2889"]]]},{"k":27939,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,3,["G2076"]],[3,4,["G3450"]],[4,5,["G3144"]],[5,6,["G3739"]],[6,8,["G3000"]],[8,9,["G1722"]],[9,10,["G3450"]],[10,11,["G4151"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G2098"]],[14,16,["G848"]],[16,17,["G5207"]],[17,18,["G5613"]],[18,20,["G89"]],[20,22,["G4160"]],[22,23,["G3417"]],[23,25,["G5216"]],[25,26,["G3842"]],[26,27,["G1909"]],[27,28,["G3450"]],[28,29,["G4335"]]]},{"k":27940,"v":[[0,2,["G1189"]],[2,6,["G1513"]],[6,7,["G2235"]],[7,9,["G4218"]],[9,15,["G2137"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G2307"]],[18,20,["G2316"]],[20,22,["G2064"]],[22,23,["G4314"]],[23,24,["G5209"]]]},{"k":27941,"v":[[0,1,["G1063"]],[1,3,["G1971"]],[3,5,["G1492"]],[5,6,["G5209"]],[6,7,["G2443"]],[7,10,["G3330"]],[10,12,["G5213"]],[12,13,["G5100"]],[13,14,["G4152"]],[14,15,["G5486"]],[15,19,["G5209"]],[19,22,["G4741"]]]},{"k":27942,"v":[[0,0,["(G1161)"]],[0,1,["G5124"]],[1,2,["G2076"]],[2,8,["G4837"]],[8,9,["G1722"]],[9,10,["G5213"]],[10,11,["G1223"]],[11,12,["G3588"]],[12,13,["G1722","G240"]],[13,14,["G4102"]],[14,15,["G5037"]],[15,17,["G5216"]],[17,18,["G2532"]],[18,19,["G1700"]]]},{"k":27943,"v":[[0,1,["G1161"]],[1,3,["G2309"]],[3,4,["G3756"]],[4,7,["G50","G5209"]],[7,8,["G80"]],[8,9,["G3754"]],[9,10,["G4178"]],[10,12,["G4388"]],[12,14,["G2064"]],[14,15,["G4314"]],[15,16,["G5209"]],[16,17,["G2532"]],[17,19,["G2967"]],[19,20,["G891","G1204"]],[20,21,["G2443"]],[21,24,["G2192"]],[24,25,["G5100"]],[25,26,["G2590"]],[26,27,["G1722"]],[27,28,["G5213"]],[28,29,["G2532"]],[29,30,["G2532"]],[30,31,["G2531"]],[31,32,["G1722"]],[32,33,["G3062"]],[33,34,["G1484"]]]},{"k":27944,"v":[[0,2,["G1510"]],[2,3,["G3781"]],[3,4,["G5037"]],[4,7,["G1672"]],[7,8,["G2532"]],[8,11,["G915"]],[11,12,["G5037"]],[12,15,["G4680"]],[15,16,["G2532"]],[16,19,["G453"]]]},{"k":27945,"v":[[0,1,["G3779"]],[1,7,["G2596","G1691"]],[7,10,["G4289"]],[10,14,["G2097"]],[14,16,["G5213"]],[16,17,["G3588"]],[17,19,["G1722"]],[19,20,["G4516"]],[20,21,["G2532"]]]},{"k":27946,"v":[[0,1,["G1063"]],[1,4,["G3756"]],[4,5,["G1870"]],[5,7,["G3588"]],[7,8,["G2098"]],[8,10,["G5547"]],[10,11,["G1063"]],[11,13,["G2076"]],[13,15,["G1411"]],[15,17,["G2316"]],[17,18,["G1519"]],[18,19,["G4991"]],[19,22,["G3956"]],[22,24,["G4100"]],[24,27,["G2453"]],[27,28,["G4412"]],[28,29,["G2532"]],[29,30,["G5037"]],[30,33,["G1672"]]]},{"k":27947,"v":[[0,1,["G1063"]],[1,2,["G1722","G846"]],[2,5,["G1343"]],[5,7,["G2316"]],[7,8,["G601"]],[8,9,["G1537"]],[9,10,["G4102"]],[10,11,["G1519"]],[11,12,["G4102"]],[12,13,["G2531"]],[13,16,["G1125","(G1161)"]],[16,17,["G3588"]],[17,18,["G1342"]],[18,20,["G2198"]],[20,21,["G1537"]],[21,22,["G4102"]]]},{"k":27948,"v":[[0,1,["G1063"]],[1,3,["G3709"]],[3,5,["G2316"]],[5,7,["G601"]],[7,8,["G575"]],[8,9,["G3772"]],[9,10,["G1909"]],[10,11,["G3956"]],[11,12,["G763"]],[12,13,["G2532"]],[13,14,["G93"]],[14,16,["G444"]],[16,18,["G2722"]],[18,19,["G3588"]],[19,20,["G225"]],[20,21,["G1722"]],[21,22,["G93"]]]},{"k":27949,"v":[[0,1,["G1360"]],[1,6,["G1110"]],[6,8,["G2316"]],[8,9,["G2076"]],[9,10,["G5318"]],[10,11,["G1722"]],[11,12,["G846"]],[12,13,["G1063"]],[13,14,["G2316"]],[14,16,["G5319"]],[16,19,["G846"]]]},{"k":27950,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,4,["G517"]],[4,6,["G846"]],[6,7,["G575"]],[7,9,["G2937"]],[9,12,["G2889"]],[12,15,["G2529"]],[15,17,["G3539"]],[17,19,["G3588"]],[19,22,["G4161"]],[22,24,["(G5037","G3739)"]],[24,25,["G848"]],[25,26,["G126"]],[26,27,["G1411"]],[27,28,["G2532"]],[28,29,["G2305"]],[29,32,["G846"]],[32,33,["G1511"]],[33,35,["G379"]]]},{"k":27951,"v":[[0,2,["G1360"]],[2,5,["G1097"]],[5,6,["G2316"]],[6,8,["G1392"]],[8,10,["G3756"]],[10,11,["G5613"]],[11,12,["G2316"]],[12,13,["G2228"]],[13,15,["G2168"]],[15,16,["G235"]],[16,18,["G3154"]],[18,19,["G1722"]],[19,20,["G848"]],[20,21,["G1261"]],[21,22,["G2532"]],[22,23,["G848"]],[23,24,["G801"]],[24,25,["G2588"]],[25,27,["G4654"]]]},{"k":27952,"v":[[0,1,["G5335"]],[1,4,["G1511"]],[4,5,["G4680"]],[5,8,["G3471"]]]},{"k":27953,"v":[[0,1,["G2532"]],[1,2,["G236"]],[2,3,["G3588"]],[3,4,["G1391"]],[4,6,["G3588"]],[6,7,["G862"]],[7,8,["G2316"]],[8,9,["G1722"]],[9,11,["G1504"]],[11,14,["G3667"]],[14,15,["G5349"]],[15,16,["G444"]],[16,17,["G2532"]],[17,19,["G4071"]],[19,20,["G2532"]],[20,22,["G5074"]],[22,23,["G2532"]],[23,25,["G2062"]]]},{"k":27954,"v":[[0,1,["G1352"]],[1,2,["G2316"]],[2,3,["G2532"]],[3,6,["G3860","G846"]],[6,7,["G1519"]],[7,8,["G167"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G1939"]],[11,14,["G848"]],[14,15,["G2588"]],[15,17,["G818"]],[17,19,["G848"]],[19,20,["G4983"]],[20,21,["G1722"]],[21,22,["G1438"]]]},{"k":27955,"v":[[0,1,["G3748"]],[1,2,["G3337"]],[2,3,["G3588"]],[3,4,["G225"]],[4,6,["G2316"]],[6,7,["G1722"]],[7,9,["G5579"]],[9,10,["G2532"]],[10,11,["G4573"]],[11,12,["G2532"]],[12,13,["G3000"]],[13,14,["G3588"]],[14,15,["G2937"]],[15,17,["G3844"]],[17,18,["G3588"]],[18,19,["G2936"]],[19,20,["G3739"]],[20,21,["G2076"]],[21,22,["G2128"]],[22,24,["G1519","G165"]],[24,25,["G281"]]]},{"k":27956,"v":[[0,3,["G1223","G5124"]],[3,4,["G2316"]],[4,7,["G3860","G846"]],[7,8,["G1519"]],[8,9,["G819"]],[9,10,["G3806"]],[10,11,["G1063"]],[11,12,["G5037","(G3739)"]],[12,13,["G848"]],[13,14,["G2338"]],[14,16,["G3337"]],[16,17,["G3588"]],[17,18,["G5446"]],[18,19,["G5540"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,24,["G3844"]],[24,25,["G5449"]]]},{"k":27957,"v":[[0,1,["G5037"]],[1,2,["G3668"]],[2,3,["G2532"]],[3,4,["G3588"]],[4,5,["G730"]],[5,6,["G863"]],[6,7,["G3588"]],[7,8,["G5446"]],[8,9,["G5540"]],[9,11,["G3588"]],[11,12,["G2338"]],[12,13,["G1572"]],[13,14,["G1722"]],[14,15,["G848"]],[15,16,["G3715"]],[16,19,["G240","G1519"]],[19,20,["G730"]],[20,21,["G1722"]],[21,22,["G730"]],[22,23,["G2716"]],[23,27,["G808"]],[27,28,["G2532"]],[28,29,["G618"]],[29,30,["G1722"]],[30,31,["G1438"]],[31,33,["G489"]],[33,35,["G848"]],[35,36,["G4106"]],[36,37,["G3739"]],[37,39,["G1163"]]]},{"k":27958,"v":[[0,1,["G2532"]],[1,3,["G2531"]],[3,6,["G3756"]],[6,7,["G1381"]],[7,9,["G2192"]],[9,10,["G2316"]],[10,11,["G1722"]],[11,13,["G1922"]],[13,14,["G2316"]],[14,17,["G3860","G846"]],[17,18,["G1519"]],[18,20,["G96"]],[20,21,["G3563"]],[21,23,["G4160"]],[23,29,["G2520","G3361"]]]},{"k":27959,"v":[[0,2,["G4137"]],[2,4,["G3956"]],[4,5,["G93"]],[5,6,["G4202"]],[6,7,["G4189"]],[7,8,["G4124"]],[8,9,["G2549"]],[9,10,["G3324"]],[10,12,["G5355"]],[12,13,["G5408"]],[13,14,["G2054"]],[14,15,["G1388"]],[15,16,["G2550"]],[16,17,["G5588"]]]},{"k":27960,"v":[[0,1,["G2637"]],[1,4,["G2319"]],[4,5,["G5197"]],[5,6,["G5244"]],[6,7,["G213"]],[7,8,["G2182"]],[8,11,["G2556"]],[11,12,["G545"]],[12,14,["G1118"]]]},{"k":27961,"v":[[0,2,["G801"]],[2,3,["G802"]],[3,6,["G794"]],[6,7,["G786"]],[7,8,["G415"]]]},{"k":27962,"v":[[0,1,["G3748"]],[1,2,["G1921"]],[2,3,["G3588"]],[3,4,["G1345"]],[4,6,["G2316"]],[6,7,["G3754"]],[7,10,["G4238"]],[10,12,["G5108"]],[12,13,["G1526"]],[13,14,["G514"]],[14,16,["G2288"]],[16,17,["G3756"]],[17,18,["G3440"]],[18,19,["G4160"]],[19,21,["G846"]],[21,22,["G235","(G2532)"]],[22,24,["G4909"]],[24,28,["G4238"]],[28,29,[]]]},{"k":27963,"v":[[0,1,["G1352"]],[1,3,["G1488"]],[3,4,["G379"]],[4,5,["G5599"]],[5,6,["G444"]],[6,7,["G3956"]],[7,11,["G2919"]],[11,12,["G1063"]],[12,13,["G1722","G3739"]],[13,15,["G2919"]],[15,16,["G2087"]],[16,18,["G2632"]],[18,19,["G4572"]],[19,20,["G1063"]],[20,23,["G2919"]],[23,24,["G4238"]],[24,25,["G3588"]],[25,27,["G846"]]]},{"k":27964,"v":[[0,1,["G1161"]],[1,4,["G1492"]],[4,5,["G3754"]],[5,6,["G3588"]],[6,7,["G2917"]],[7,9,["G2316"]],[9,10,["G2076"]],[10,11,["G2596"]],[11,13,["G225"]],[13,14,["G1909"]],[14,17,["G4238"]],[17,19,["G5108"]]]},{"k":27965,"v":[[0,1,["G1161"]],[1,2,["G3049"]],[2,4,["G5124"]],[4,5,["G5599"]],[5,6,["G444"]],[6,8,["G2919"]],[8,11,["G4238"]],[11,13,["G5108"]],[13,14,["G2532"]],[14,15,["G4160"]],[15,17,["G846"]],[17,18,["G3754"]],[18,19,["G4771"]],[19,21,["G1628"]],[21,22,["G3588"]],[22,23,["G2917"]],[23,25,["G2316"]]]},{"k":27966,"v":[[0,1,["G2228"]],[1,2,["G2706"]],[2,4,["G3588"]],[4,5,["G4149"]],[5,7,["G848"]],[7,8,["G5544"]],[8,9,["G2532"]],[9,10,["G463"]],[10,11,["G2532"]],[11,12,["G3115"]],[12,14,["G50"]],[14,15,["G3754"]],[15,16,["G3588"]],[16,17,["G5543"]],[17,19,["G2316"]],[19,20,["G71"]],[20,21,["G4571"]],[21,22,["G1519"]],[22,23,["G3341"]]]},{"k":27967,"v":[[0,1,["G1161"]],[1,2,["G2596"]],[2,3,["G4675"]],[3,4,["G4643"]],[4,5,["G2532"]],[5,6,["G279"]],[6,7,["G2588"]],[7,9,["G2343"]],[9,11,["G4572"]],[11,12,["G3709"]],[12,13,["G1722"]],[13,15,["G2250"]],[15,17,["G3709"]],[17,18,["G2532"]],[18,19,["G602"]],[19,23,["G1341"]],[23,25,["G2316"]]]},{"k":27968,"v":[[0,1,["G3739"]],[1,3,["G591"]],[3,6,["G1538"]],[6,7,["G2596"]],[7,9,["G846"]],[9,10,["G2041"]]]},{"k":27969,"v":[[0,3,["(G3303)"]],[3,4,["G2596"]],[4,6,["G5281"]],[6,8,["G18"]],[8,9,["G2041"]],[9,11,["G2212"]],[11,12,["G1391"]],[12,13,["G2532"]],[13,14,["G5092"]],[14,15,["G2532"]],[15,16,["G861"]],[16,17,["G166"]],[17,18,["G2222"]]]},{"k":27970,"v":[[0,1,["G1161"]],[1,6,["G1537","G2052"]],[6,7,["G2532"]],[7,10,["G544","(G3303)"]],[10,11,["G3588"]],[11,12,["G225"]],[12,13,["G1161"]],[13,14,["G3982"]],[14,15,["G93"]],[15,16,["G2372"]],[16,17,["G2532"]],[17,18,["G3709"]]]},{"k":27971,"v":[[0,1,["G2347"]],[1,2,["G2532"]],[2,3,["G4730"]],[3,4,["G1909"]],[4,5,["G3956"]],[5,6,["G5590"]],[6,8,["G444"]],[8,10,["G2716"]],[10,11,["G2556"]],[11,13,["(G5037)"]],[13,14,["G2453"]],[14,15,["G4412"]],[15,16,["G2532"]],[16,20,["G1672"]]]},{"k":27972,"v":[[0,1,["G1161"]],[1,2,["G1391"]],[2,3,["G5092"]],[3,4,["G2532"]],[4,5,["G1515"]],[5,8,["G3956"]],[8,10,["G2038"]],[10,11,["G18"]],[11,13,["(G5037)"]],[13,14,["G2453"]],[14,15,["G4412"]],[15,16,["G2532"]],[16,20,["G1672"]]]},{"k":27973,"v":[[0,1,["G1063"]],[1,3,["G2076"]],[3,4,["G3756"]],[4,7,["G4382"]],[7,8,["G3844"]],[8,9,["G2316"]]]},{"k":27974,"v":[[0,1,["G1063"]],[1,4,["G3745"]],[4,6,["G264"]],[6,8,["G460"]],[8,10,["G2532"]],[10,11,["G622"]],[11,13,["G460"]],[13,14,["G2532"]],[14,17,["G3745"]],[17,19,["G264"]],[19,20,["G1722"]],[20,22,["G3551"]],[22,25,["G2919"]],[25,26,["G1223"]],[26,28,["G3551"]]]},{"k":27975,"v":[[0,1,["G1063"]],[1,2,["G3756"]],[2,3,["G3588"]],[3,4,["G202"]],[4,6,["G3588"]],[6,7,["G3551"]],[7,9,["G1342"]],[9,10,["G3844"]],[10,11,["G2316"]],[11,12,["G235"]],[12,13,["G3588"]],[13,14,["G4163"]],[14,16,["G3588"]],[16,17,["G3551"]],[17,20,["G1344"]]]},{"k":27976,"v":[[0,1,["G1063"]],[1,2,["G3752"]],[2,4,["G1484"]],[4,6,["G2192"]],[6,7,["G3361"]],[7,9,["G3551"]],[9,10,["G4160"]],[10,12,["G5449"]],[12,14,["G3588"]],[14,17,["G3588"]],[17,18,["G3551"]],[18,19,["G3778"]],[19,20,["G2192"]],[20,21,["G3361"]],[21,23,["G3551"]],[23,24,["G1526"]],[24,26,["G3551"]],[26,28,["G1438"]]]},{"k":27977,"v":[[0,1,["G3748"]],[1,2,["G1731"]],[2,3,["G3588"]],[3,4,["G2041"]],[4,6,["G3588"]],[6,7,["G3551"]],[7,8,["G1123"]],[8,9,["G1722"]],[9,10,["G848"]],[10,11,["G2588"]],[11,12,["G848"]],[12,13,["G4893"]],[13,16,["G4828"]],[16,17,["G2532"]],[17,19,["G3053"]],[19,22,["G3342"]],[22,23,["G2723"]],[23,24,["G2228"]],[24,25,["G2532"]],[25,26,["G626"]],[26,28,["G240"]]]},{"k":27978,"v":[[0,1,["G1722"]],[1,3,["G2250"]],[3,4,["G3753"]],[4,5,["G2316"]],[5,7,["G2919"]],[7,8,["G3588"]],[8,9,["G2927"]],[9,11,["G444"]],[11,12,["G1223"]],[12,13,["G2424"]],[13,14,["G5547"]],[14,15,["G2596"]],[15,17,["G3450"]],[17,18,["G2098"]]]},{"k":27979,"v":[[0,1,["G2396"]],[1,2,["G4771"]],[2,4,["G2028"]],[4,6,["G2453"]],[6,7,["G2532"]],[7,9,["G1879"]],[9,10,["G3588"]],[10,11,["G3551"]],[11,12,["G2532"]],[12,15,["G2744"]],[15,16,["G1722"]],[16,17,["G2316"]]]},{"k":27980,"v":[[0,1,["G2532"]],[1,2,["G1097"]],[2,4,["G2307"]],[4,5,["G2532"]],[5,6,["G1381"]],[6,12,["G1308"]],[12,14,["G2727"]],[14,16,["G1537"]],[16,17,["G3588"]],[17,18,["G3551"]]]},{"k":27981,"v":[[0,1,["G5037"]],[1,3,["G3982"]],[3,6,["G4572"]],[6,7,["G1511"]],[7,9,["G3595"]],[9,12,["G5185"]],[12,14,["G5457"]],[14,16,["G3588"]],[16,19,["G1722"]],[19,20,["G4655"]]]},{"k":27982,"v":[[0,2,["G3810"]],[2,5,["G878"]],[5,7,["G1320"]],[7,9,["G3516"]],[9,11,["G2192"]],[11,12,["G3588"]],[12,13,["G3446"]],[13,15,["G1108"]],[15,16,["G2532"]],[16,18,["G3588"]],[18,19,["G225"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G3551"]]]},{"k":27983,"v":[[0,4,["G1321","G3767"]],[4,5,["G2087"]],[5,6,["G1321"]],[6,8,["G3756"]],[8,9,["G4572"]],[9,12,["G2784"]],[12,16,["G3361"]],[16,17,["G2813"]],[17,20,["G2813"]]]},{"k":27984,"v":[[0,3,["G3004"]],[3,7,["G3361"]],[7,9,["G3431"]],[9,13,["G3431"]],[13,16,["G948"]],[16,17,["G1497"]],[17,21,["G2416"]]]},{"k":27985,"v":[[0,2,["G3739"]],[2,5,["G2744"]],[5,6,["G1722"]],[6,8,["G3551"]],[8,9,["G1223"]],[9,10,["G3847"]],[10,11,["G3588"]],[11,12,["G3551"]],[12,13,["G818"]],[13,15,["G2316"]]]},{"k":27986,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3686"]],[3,5,["G2316"]],[5,7,["G987"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G1484"]],[10,11,["G1223"]],[11,12,["G5209"]],[12,13,["G2531"]],[13,16,["G1125"]]]},{"k":27987,"v":[[0,1,["G1063"]],[1,2,["G4061"]],[2,3,["G3303"]],[3,4,["G5623"]],[4,5,["G1437"]],[5,7,["G4238"]],[7,9,["G3551"]],[9,10,["G1161"]],[10,11,["G1437"]],[11,15,["G3848"]],[15,18,["G3551"]],[18,19,["G4675"]],[19,20,["G4061"]],[20,22,["G1096"]],[22,23,["G203"]]]},{"k":27988,"v":[[0,1,["G3767"]],[1,2,["G1437"]],[2,3,["G3588"]],[3,4,["G203"]],[4,5,["G5442"]],[5,6,["G3588"]],[6,7,["G1345"]],[7,9,["G3588"]],[9,10,["G3551"]],[10,12,["G3780"]],[12,13,["G848"]],[13,14,["G203"]],[14,16,["G3049"]],[16,17,["G1519"]],[17,18,["G4061"]]]},{"k":27989,"v":[[0,1,["G2532"]],[1,4,["G203"]],[4,7,["G1537"]],[7,8,["G5449"]],[8,11,["G5055"]],[11,12,["G3588"]],[12,13,["G3551"]],[13,14,["G2919"]],[14,15,["G4571"]],[15,17,["G1223"]],[17,19,["G1121"]],[19,20,["G2532"]],[20,21,["G4061"]],[21,23,["G3848"]],[23,25,["G3551"]]]},{"k":27990,"v":[[0,1,["G1063"]],[1,3,["G2076"]],[3,4,["G3756"]],[4,6,["G2453"]],[6,10,["G1722","G5318"]],[10,11,["G3761"]],[11,14,["G4061"]],[14,17,["G1722","G5318"]],[17,18,["G1722"]],[18,20,["G4561"]]]},{"k":27991,"v":[[0,1,["G235"]],[1,5,["G2453"]],[5,9,["G1722","G2927"]],[9,10,["G2532"]],[10,11,["G4061"]],[11,16,["G2588"]],[16,17,["G1722"]],[17,19,["G4151"]],[19,21,["G3756"]],[21,24,["G1121"]],[24,25,["G3739"]],[25,26,["G1868"]],[26,28,["G3756"]],[28,29,["G1537"]],[29,30,["G444"]],[30,31,["G235"]],[31,32,["G1537"]],[32,33,["G2316"]]]},{"k":27992,"v":[[0,1,["G5101"]],[1,2,["G4053"]],[2,3,["G3767"]],[3,5,["G3588"]],[5,6,["G2453"]],[6,7,["G2228"]],[7,8,["G5101"]],[8,9,["G5622"]],[9,13,["G4061"]]]},{"k":27993,"v":[[0,1,["G4183"]],[1,2,["G3956"]],[2,3,["G5158"]],[3,4,["G4412","(G3303)"]],[4,5,["G1063"]],[5,6,["G3754"]],[6,10,["G4100"]],[10,11,["G3588"]],[11,12,["G3051"]],[12,14,["G2316"]]]},{"k":27994,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,3,["G1487"]],[3,4,["G5100"]],[4,7,["G569"]],[7,9,["G848"]],[9,10,["G570","(G3361)"]],[10,17,["G2673","G3588","G4102","G2316"]]]},{"k":27995,"v":[[0,2,["G1096","G3361"]],[2,5,["G2316"]],[5,6,["G1096"]],[6,7,["G227"]],[7,8,["G1161"]],[8,9,["G3956"]],[9,10,["G444"]],[10,12,["G5583"]],[12,13,["G2531"]],[13,16,["G1125"]],[16,17,["G3704"]],[17,21,["G1344","G302"]],[21,22,["G1722"]],[22,23,["G4675"]],[23,24,["G3056"]],[24,25,["G2532"]],[25,27,["G3528"]],[27,29,["G4571"]],[29,31,["G2919"]]]},{"k":27996,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G2257"]],[3,4,["G93"]],[4,5,["G4921"]],[5,7,["G1343"]],[7,9,["G2316"]],[9,10,["G5101"]],[10,13,["G2046"]],[13,15,["G2316"]],[15,16,["G94"]],[16,18,["G2018"]],[18,20,["G3709"]],[20,21,["G3004"]],[21,22,["G2596"]],[22,24,["G444"]]]},{"k":27997,"v":[[0,2,["G1096","G3361"]],[2,4,["G1893"]],[4,5,["G4459"]],[5,7,["G2316"]],[7,8,["G2919"]],[8,9,["G3588"]],[9,10,["G2889"]]]},{"k":27998,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G225"]],[4,6,["G2316"]],[6,9,["G4052"]],[9,10,["G1722"]],[10,11,["G1699"]],[11,12,["G5582"]],[12,13,["G1519"]],[13,14,["G848"]],[14,15,["G1391"]],[15,16,["G5101"]],[16,17,["G2089"]],[17,20,["G2504"]],[20,21,["G2919"]],[21,22,["G5613"]],[22,24,["G268"]]]},{"k":27999,"v":[[0,1,["G2532"]],[1,2,["G3361"]],[2,4,["G2531"]],[4,8,["G987"]],[8,9,["G2532"]],[9,10,["G2531"]],[10,11,["G5100"]],[11,12,["G5346"]],[12,14,["G2248"]],[14,15,["G3004"]],[15,18,["G4160"]],[18,19,["G2556"]],[19,20,["G2443"]],[20,21,["G18"]],[21,23,["G2064"]],[23,24,["G3739"]],[24,25,["G2917"]],[25,26,["G2076"]],[26,27,["G1738"]]]},{"k":28000,"v":[[0,1,["G5101"]],[1,2,["G3767"]],[2,5,["G4284"]],[5,8,["G3756"]],[8,11,["G3843"]],[11,12,["G1063"]],[12,16,["G4256"]],[16,17,["G5037"]],[17,18,["G2453"]],[18,19,["G2532"]],[19,20,["G1672"]],[20,23,["G1511"]],[23,24,["G3956"]],[24,25,["G5259"]],[25,26,["G266"]]]},{"k":28001,"v":[[0,1,["G2531"]],[1,4,["G1125"]],[4,6,["G2076"]],[6,7,["G3756"]],[7,8,["G1342"]],[8,10,["G3761"]],[10,11,["G1520"]]]},{"k":28002,"v":[[0,2,["G2076"]],[2,3,["G3756"]],[3,5,["G4920"]],[5,7,["G2076"]],[7,8,["G3756"]],[8,11,["G1567"]],[11,12,["G2316"]]]},{"k":28003,"v":[[0,3,["G3956"]],[3,8,["G1578"]],[8,11,["G260"]],[11,13,["G889"]],[13,15,["G2076"]],[15,16,["G3756"]],[16,18,["G4160"]],[18,19,["G5544"]],[19,20,["(G2076)"]],[20,21,["G3756","(G2193)"]],[21,22,["G1520"]]]},{"k":28004,"v":[[0,1,["G848"]],[1,2,["G2995"]],[2,5,["G455"]],[5,6,["G5028"]],[6,8,["G848"]],[8,9,["G1100"]],[9,13,["G1387"]],[13,15,["G2447"]],[15,17,["G785"]],[17,19,["G5259"]],[19,20,["G848"]],[20,21,["G5491"]]]},{"k":28005,"v":[[0,1,["G3739"]],[1,2,["G4750"]],[2,4,["G1073"]],[4,6,["G685"]],[6,7,["G2532"]],[7,8,["G4088"]]]},{"k":28006,"v":[[0,1,["G848"]],[1,2,["G4228"]],[2,4,["G3691"]],[4,6,["G1632"]],[6,7,["G129"]]]},{"k":28007,"v":[[0,1,["G4938"]],[1,2,["G2532"]],[2,3,["G5004"]],[3,5,["G1722"]],[5,6,["G848"]],[6,7,["G3598"]]]},{"k":28008,"v":[[0,1,["G2532"]],[1,3,["G3598"]],[3,5,["G1515"]],[5,8,["G3756"]],[8,9,["G1097"]]]},{"k":28009,"v":[[0,2,["G2076"]],[2,3,["G3756"]],[3,4,["G5401"]],[4,6,["G2316"]],[6,7,["G561"]],[7,8,["G848"]],[8,9,["G3788"]]]},{"k":28010,"v":[[0,1,["G1161"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,7,["G3745"]],[7,8,["G3588"]],[8,9,["G3551"]],[9,10,["G3004"]],[10,12,["G2980"]],[12,14,["G3588"]],[14,17,["G1722"]],[17,18,["G3588"]],[18,19,["G3551"]],[19,20,["G2443"]],[20,21,["G3956"]],[21,22,["G4750"]],[22,25,["G5420"]],[25,26,["G2532"]],[26,27,["G3956"]],[27,28,["G3588"]],[28,29,["G2889"]],[29,31,["G1096"]],[31,32,["G5267"]],[32,34,["G2316"]]]},{"k":28011,"v":[[0,1,["G1360"]],[1,2,["G1537"]],[2,4,["G2041"]],[4,7,["G3551"]],[7,10,["G3756","G3956"]],[10,11,["G4561"]],[11,13,["G1344"]],[13,16,["G1799","G846"]],[16,17,["G1063"]],[17,18,["G1223"]],[18,20,["G3551"]],[20,23,["G1922"]],[23,25,["G266"]]]},{"k":28012,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,4,["G1343"]],[4,6,["G2316"]],[6,7,["G5565"]],[7,9,["G3551"]],[9,11,["G5319"]],[11,13,["G3140"]],[13,14,["G5259"]],[14,15,["G3588"]],[15,16,["G3551"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G4396"]]]},{"k":28013,"v":[[0,1,["G1161"]],[1,3,["G1343"]],[3,5,["G2316"]],[5,8,["G1223"]],[8,9,["G4102"]],[9,11,["G2424"]],[11,12,["G5547"]],[12,13,["G1519"]],[13,14,["G3956"]],[14,15,["G2532"]],[15,16,["G1909"]],[16,17,["G3956"]],[17,20,["G4100"]],[20,21,["G1063"]],[21,23,["G2076"]],[23,24,["G3756"]],[24,25,["G1293"]]]},{"k":28014,"v":[[0,1,["G1063"]],[1,2,["G3956"]],[2,4,["G264"]],[4,5,["G2532"]],[5,7,["G5302"]],[7,9,["G3588"]],[9,10,["G1391"]],[10,12,["G2316"]]]},{"k":28015,"v":[[0,2,["G1344"]],[2,3,["G1432"]],[3,5,["G848"]],[5,6,["G5485"]],[6,7,["G1223"]],[7,8,["G3588"]],[8,9,["G629"]],[9,10,["G3588"]],[10,12,["G1722"]],[12,13,["G5547"]],[13,14,["G2424"]]]},{"k":28016,"v":[[0,1,["G3739"]],[1,2,["G2316"]],[2,5,["G4388"]],[5,9,["G2435"]],[9,10,["G1223"]],[10,11,["G4102"]],[11,12,["G1722"]],[12,13,["G848"]],[13,14,["G129"]],[14,16,["G1519","G1732"]],[16,17,["G848"]],[17,18,["G1343"]],[18,19,["G1223"]],[19,20,["G3588"]],[20,21,["G3929"]],[21,23,["G265"]],[23,26,["G4266"]],[26,27,["G1722"]],[27,28,["G3588"]],[28,29,["G463"]],[29,31,["G2316"]]]},{"k":28017,"v":[[0,1,["G4314"]],[1,2,["G1732"]],[2,5,["G1722"]],[5,6,["G3568"]],[6,7,["G2540"]],[7,8,["G846"]],[8,9,["G1343"]],[9,11,["G846"]],[11,13,["G1511"]],[13,14,["G1342"]],[14,15,["G2532"]],[15,17,["G1344"]],[17,19,["G3588"]],[19,21,["G1537","G4102"]],[21,23,["G2424"]]]},{"k":28018,"v":[[0,1,["G4226"]],[1,3,["G2746"]],[3,4,["G3767"]],[4,7,["G1576"]],[7,8,["G1223"]],[8,9,["G4169"]],[9,10,["G3551"]],[10,12,["G2041"]],[12,13,["G3780"]],[13,14,["G235"]],[14,15,["G1223"]],[15,17,["G3551"]],[17,19,["G4102"]]]},{"k":28019,"v":[[0,1,["G3767"]],[1,3,["G3049"]],[3,6,["G444"]],[6,8,["G1344"]],[8,10,["G4102"]],[10,11,["G5565"]],[11,13,["G2041"]],[13,16,["G3551"]]]},{"k":28020,"v":[[0,2,["(G2228)"]],[2,3,["G3588"]],[3,4,["G2316"]],[4,7,["G2453"]],[7,8,["G3440"]],[8,10,["(G1161)"]],[10,11,["G3780"]],[11,12,["G2532"]],[12,15,["G1484"]],[15,16,["G3483"]],[16,19,["G1484"]],[19,20,["G2532"]]]},{"k":28021,"v":[[0,1,["G1897"]],[1,4,["G1520"]],[4,5,["G2316"]],[5,6,["G3739"]],[6,8,["G1344"]],[8,10,["G4061"]],[10,11,["G1537"]],[11,12,["G4102"]],[12,13,["G2532"]],[13,14,["G203"]],[14,15,["G1223"]],[15,16,["G4102"]]]},{"k":28022,"v":[[0,3,["G3767"]],[3,5,["G2673"]],[5,7,["G3551"]],[7,8,["G1223"]],[8,9,["G4102"]],[9,11,["G1096","G3361"]],[11,12,["G235"]],[12,14,["G2476"]],[14,16,["G3551"]]]},{"k":28023,"v":[[0,1,["G5101"]],[1,4,["G2046"]],[4,5,["G3767"]],[5,7,["G11"]],[7,8,["G2257"]],[8,9,["G3962"]],[9,11,["G2596"]],[11,14,["G4561"]],[14,16,["G2147"]]]},{"k":28024,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G11"]],[3,5,["G1344"]],[5,6,["G1537"]],[6,7,["G2041"]],[7,9,["G2192"]],[9,12,["G2745"]],[12,13,["G235"]],[13,14,["G3756"]],[14,15,["G4314"]],[15,16,["G2316"]]]},{"k":28025,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,3,["G3004"]],[3,4,["G3588"]],[4,5,["G1124","(G1161)"]],[5,6,["G11"]],[6,7,["G4100"]],[7,8,["G2316"]],[8,9,["G2532"]],[9,12,["G3049"]],[12,14,["G846"]],[14,15,["G1519"]],[15,16,["G1343"]]]},{"k":28026,"v":[[0,1,["G1161"]],[1,5,["G2038"]],[5,7,["G3588"]],[7,8,["G3408"]],[8,9,["G3756"]],[9,10,["G3049"]],[10,11,["G2596"]],[11,12,["G5485"]],[12,13,["G235"]],[13,14,["G2596"]],[14,15,["G3783"]]]},{"k":28027,"v":[[0,1,["G1161"]],[1,5,["G2038"]],[5,6,["G3361"]],[6,7,["G1161"]],[7,8,["G4100"]],[8,9,["G1909"]],[9,12,["G1344"]],[12,13,["G3588"]],[13,14,["G765"]],[14,15,["G848"]],[15,16,["G4102"]],[16,18,["G3049"]],[18,19,["G1519"]],[19,20,["G1343"]]]},{"k":28028,"v":[[0,2,["G2509"]],[2,3,["G1138"]],[3,4,["G2532"]],[4,5,["G3004"]],[5,6,["G3588"]],[6,7,["G3108"]],[7,9,["G3588"]],[9,10,["G444"]],[10,12,["G3739"]],[12,13,["G2316"]],[13,14,["G3049"]],[14,15,["G1343"]],[15,16,["G5565"]],[16,17,["G2041"]]]},{"k":28029,"v":[[0,2,["G3107"]],[2,5,["G3739"]],[5,6,["G458"]],[6,8,["G863"]],[8,9,["G2532"]],[9,10,["G3739"]],[10,11,["G266"]],[11,13,["G1943"]]]},{"k":28030,"v":[[0,1,["G3107"]],[1,4,["G435"]],[4,6,["G3739"]],[6,8,["G2962"]],[8,10,["G3364"]],[10,11,["G3049"]],[11,12,["G266"]]]},{"k":28031,"v":[[0,2,["G3778"]],[2,3,["G3108"]],[3,4,["G3767"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G4061"]],[7,9,["G2228"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G203"]],[12,13,["G2532"]],[13,14,["G1063"]],[14,16,["G3004"]],[16,17,["G3754"]],[17,18,["G4102"]],[18,20,["G3049"]],[20,22,["G11"]],[22,23,["G1519"]],[23,24,["G1343"]]]},{"k":28032,"v":[[0,1,["G4459"]],[1,4,["G3767"]],[4,5,["G3049"]],[5,8,["G5607"]],[8,9,["G1722"]],[9,10,["G4061"]],[10,11,["G2228"]],[11,12,["G1722"]],[12,13,["G203"]],[13,14,["G3756"]],[14,15,["G1722"]],[15,16,["G4061"]],[16,17,["G235"]],[17,18,["G1722"]],[18,19,["G203"]]]},{"k":28033,"v":[[0,1,["G2532"]],[1,3,["G2983"]],[3,5,["G4592"]],[5,7,["G4061"]],[7,9,["G4973"]],[9,11,["G3588"]],[11,12,["G1343"]],[12,14,["G3588"]],[14,15,["G4102"]],[15,16,["G3588"]],[16,22,["G1722","G203"]],[22,23,["G846"]],[23,25,["G1511"]],[25,27,["G3962"]],[27,29,["G3956"]],[29,32,["G4100"]],[32,37,["G1223","G203"]],[37,39,["G1343"]],[39,42,["G3049"]],[42,44,["G846"]],[44,45,["G2532"]]]},{"k":28034,"v":[[0,1,["G2532"]],[1,3,["G3962"]],[3,5,["G4061"]],[5,7,["G3588"]],[7,10,["G3756"]],[10,11,["G1537"]],[11,13,["G4061"]],[13,14,["G3440"]],[14,15,["G235"]],[15,18,["G4748","G2532"]],[18,20,["G3588"]],[20,21,["G2487"]],[21,24,["G4102"]],[24,26,["G2257"]],[26,27,["G3962"]],[27,28,["G11"]],[28,34,["G1722","G203"]]]},{"k":28035,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G1860"]],[3,5,["G846"]],[5,7,["G1511"]],[7,8,["G3588"]],[8,9,["G2818"]],[9,11,["G3588"]],[11,12,["G2889"]],[12,14,["G3756"]],[14,16,["G11"]],[16,17,["G2228"]],[17,19,["G848"]],[19,20,["G4690"]],[20,21,["G1223"]],[21,23,["G3551"]],[23,24,["G235"]],[24,25,["G1223"]],[25,27,["G1343"]],[27,29,["G4102"]]]},{"k":28036,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,6,["G1537"]],[6,8,["G3551"]],[8,10,["G2818"]],[10,11,["G4102"]],[11,14,["G2758"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G1860"]],[17,21,["G2673"]]]},{"k":28037,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3551"]],[3,4,["G2716"]],[4,5,["G3709"]],[5,6,["G1063"]],[6,7,["G3757"]],[7,8,["G3756"]],[8,9,["G3551"]],[9,10,["G2076"]],[10,13,["G3761"]],[13,14,["G3847"]]]},{"k":28038,"v":[[0,1,["G1223","G5124"]],[1,4,["G1537"]],[4,5,["G4102"]],[5,6,["G2443"]],[6,10,["G2596"]],[10,11,["G5485"]],[11,15,["G3588"]],[15,16,["G1860"]],[16,18,["G1511"]],[18,19,["G949"]],[19,21,["G3956"]],[21,22,["G3588"]],[22,23,["G4690"]],[23,24,["G3756"]],[24,26,["G3588"]],[26,27,["G3440"]],[27,30,["G1537"]],[30,31,["G3588"]],[31,32,["G3551"]],[32,33,["G235"]],[33,35,["G3588"]],[35,36,["G2532"]],[36,39,["G1537"]],[39,41,["G4102"]],[41,43,["G11"]],[43,44,["G3739"]],[44,45,["G2076"]],[45,47,["G3962"]],[47,49,["G2257"]],[49,50,["G3956"]]]},{"k":28039,"v":[[0,1,["G2531"]],[1,4,["G1125"]],[4,7,["G5087"]],[7,8,["G4571"]],[8,10,["G3962"]],[10,12,["G4183"]],[12,13,["G1484"]],[13,14,["G2713"]],[14,16,["G3739"]],[16,18,["G4100"]],[18,20,["G2316"]],[20,22,["G2227"]],[22,23,["G3588"]],[23,24,["G3498"]],[24,25,["G2532"]],[25,26,["G2564"]],[26,30,["G5607"]],[30,31,["G3361"]],[31,33,["G5613"]],[33,35,["G5607"]]]},{"k":28040,"v":[[0,1,["G3739"]],[1,2,["G3844"]],[2,3,["G1680"]],[3,4,["G4100"]],[4,5,["G1909"]],[5,6,["G1680"]],[6,8,["G846"]],[8,10,["G1096"]],[10,12,["G3962"]],[12,14,["G4183"]],[14,15,["G1484"]],[15,16,["G2596"]],[16,21,["G2046"]],[21,22,["G3779"]],[22,24,["G4675"]],[24,25,["G4690"]],[25,26,["G2071"]]]},{"k":28041,"v":[[0,1,["G2532"]],[1,4,["G770","G3361"]],[4,6,["G4102"]],[6,8,["G2657"]],[8,9,["G3756"]],[9,11,["G1438"]],[11,12,["G4983"]],[12,13,["G2235"]],[13,14,["G3499"]],[14,17,["G5225"]],[17,18,["G4225"]],[18,22,["G1541"]],[22,23,["G2532"]],[23,25,["G3588"]],[25,26,["G3500"]],[26,28,["G4564"]],[28,29,["G3388"]]]},{"k":28042,"v":[[0,1,["(G1161)"]],[1,2,["G1252"]],[2,3,["G3756"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G1860"]],[6,8,["G2316"]],[8,10,["G570"]],[10,11,["G235"]],[11,13,["G1743"]],[13,15,["G4102"]],[15,16,["G1325"]],[16,17,["G1391"]],[17,19,["G2316"]]]},{"k":28043,"v":[[0,1,["G2532"]],[1,4,["G4135"]],[4,5,["G3754"]],[5,6,["G3739"]],[6,9,["G1861"]],[9,11,["G2076"]],[11,12,["G1415"]],[12,13,["G2532"]],[13,15,["G4160"]]]},{"k":28044,"v":[[0,1,["G2532"]],[1,2,["G1352"]],[2,5,["G3049"]],[5,7,["G846"]],[7,8,["G1519"]],[8,9,["G1343"]]]},{"k":28045,"v":[[0,1,["G1161"]],[1,4,["G3756"]],[4,5,["G1125"]],[5,8,["G1223","G846"]],[8,9,["G3440"]],[9,10,["G3754"]],[10,13,["G3049"]],[13,15,["G846"]]]},{"k":28046,"v":[[0,1,["G235"]],[1,2,["G1223"]],[2,3,["G2248"]],[3,4,["G2532"]],[4,6,["G3739"]],[6,8,["G3195"]],[8,10,["G3049"]],[10,12,["G3588"]],[12,13,["G4100"]],[13,14,["G1909"]],[14,18,["G1453"]],[18,19,["G2424"]],[19,20,["G2257"]],[20,21,["G2962"]],[21,22,["G1537"]],[22,24,["G3498"]]]},{"k":28047,"v":[[0,1,["G3739"]],[1,3,["G3860"]],[3,4,["G1223"]],[4,5,["G2257"]],[5,6,["G3900"]],[6,7,["G2532"]],[7,10,["G1453"]],[10,11,["G1223"]],[11,12,["G2257"]],[12,13,["G1347"]]]},{"k":28048,"v":[[0,1,["G3767"]],[1,3,["G1344"]],[3,4,["G1537"]],[4,5,["G4102"]],[5,7,["G2192"]],[7,8,["G1515"]],[8,9,["G4314"]],[9,10,["G2316"]],[10,11,["G1223"]],[11,12,["G2257"]],[12,13,["G2962"]],[13,14,["G2424"]],[14,15,["G5547"]]]},{"k":28049,"v":[[0,1,["G1223"]],[1,2,["G3739"]],[2,3,["G2532"]],[3,5,["G2192"]],[5,6,["G4318"]],[6,8,["G4102"]],[8,9,["G1519"]],[9,10,["G5026"]],[10,11,["G5485"]],[11,12,["G1722","G3739"]],[12,14,["G2476"]],[14,15,["G2532"]],[15,16,["G2744"]],[16,17,["G1909"]],[17,18,["G1680"]],[18,20,["G3588"]],[20,21,["G1391"]],[21,23,["G2316"]]]},{"k":28050,"v":[[0,1,["G1161"]],[1,2,["G3756"]],[2,3,["G3440"]],[3,5,["G235"]],[5,7,["G2744"]],[7,8,["G1722"]],[8,9,["G2347"]],[9,10,["G2532"]],[10,11,["G1492"]],[11,12,["G3754"]],[12,13,["G2347"]],[13,14,["G2716"]],[14,15,["G5281"]]]},{"k":28051,"v":[[0,1,["G1161"]],[1,2,["G5281"]],[2,3,["G1382"]],[3,4,["G1161"]],[4,5,["G1382"]],[5,6,["G1680"]]]},{"k":28052,"v":[[0,1,["G1161"]],[1,2,["G1680"]],[2,5,["G2617","G3756"]],[5,6,["G3754"]],[6,7,["G3588"]],[7,8,["G26"]],[8,10,["G2316"]],[10,13,["G1632"]],[13,14,["G1722"]],[14,15,["G2257"]],[15,16,["G2588"]],[16,17,["G1223"]],[17,19,["G40"]],[19,20,["G4151"]],[20,23,["G1325"]],[23,25,["G2254"]]]},{"k":28053,"v":[[0,1,["G1063"]],[1,3,["G2257"]],[3,4,["G5607"]],[4,5,["G2089"]],[5,7,["G772"]],[7,8,["G2596"]],[8,10,["G2540"]],[10,11,["G5547"]],[11,12,["G599"]],[12,13,["G5228"]],[13,15,["G765"]]]},{"k":28054,"v":[[0,1,["G1063"]],[1,2,["G3433"]],[2,3,["G5228"]],[3,6,["G1342"]],[6,8,["G5100"]],[8,9,["G599"]],[9,10,["G1063"]],[10,11,["G5029"]],[11,12,["G5228"]],[12,15,["G18"]],[15,16,["G5100"]],[16,18,["G2532"]],[18,19,["G5111"]],[19,21,["G599"]]]},{"k":28055,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,3,["G4921"]],[3,4,["G1438"]],[4,5,["G26"]],[5,6,["G1519"]],[6,7,["G2248"]],[7,9,["G3754"]],[9,11,["G2257"]],[11,12,["G5607"]],[12,13,["G2089"]],[13,14,["G268"]],[14,15,["G5547"]],[15,16,["G599"]],[16,17,["G5228"]],[17,18,["G2257"]]]},{"k":28056,"v":[[0,1,["G4183"]],[1,2,["G3123"]],[2,3,["G3767"]],[3,5,["G3568"]],[5,6,["G1344"]],[6,7,["G1722"]],[7,8,["G848"]],[8,9,["G129"]],[9,13,["G4982"]],[13,14,["G575"]],[14,15,["G3709"]],[15,16,["G1223"]],[16,17,["G846"]]]},{"k":28057,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,5,["G5607"]],[5,6,["G2190"]],[6,9,["G2644"]],[9,11,["G2316"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G2288"]],[14,16,["G848"]],[16,17,["G5207"]],[17,18,["G4183"]],[18,19,["G3123"]],[19,21,["G2644"]],[21,25,["G4982"]],[25,26,["G1722"]],[26,27,["G848"]],[27,28,["G2222"]]]},{"k":28058,"v":[[0,1,["G1161"]],[1,2,["G3756"]],[2,3,["G3440"]],[3,5,["G235"]],[5,7,["G2532"]],[7,8,["G2744"]],[8,9,["G1722"]],[9,10,["G2316"]],[10,11,["G1223"]],[11,12,["G2257"]],[12,13,["G2962"]],[13,14,["G2424"]],[14,15,["G5547"]],[15,16,["G1223"]],[16,17,["G3739"]],[17,20,["G3568"]],[20,21,["G2983"]],[21,22,["G3588"]],[22,23,["G2643"]]]},{"k":28059,"v":[[0,1,["G1223","G5124"]],[1,2,["G5618"]],[2,3,["G1223"]],[3,4,["G1520"]],[4,5,["G444"]],[5,6,["G266"]],[6,7,["G1525"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G2889"]],[10,11,["G2532"]],[11,12,["G2288"]],[12,13,["G1223"]],[13,14,["G266"]],[14,15,["G2532"]],[15,16,["G3779"]],[16,17,["G2288"]],[17,18,["G1330"]],[18,19,["G1519"]],[19,20,["G3956"]],[20,21,["G444"]],[21,22,["G1909"]],[22,23,["G3739"]],[23,24,["G3956"]],[24,26,["G264"]]]},{"k":28060,"v":[[0,1,["G1063"]],[1,2,["G891"]],[2,4,["G3551"]],[4,5,["G266"]],[5,6,["G2258"]],[6,7,["G1722"]],[7,9,["G2889"]],[9,10,["G1161"]],[10,11,["G266"]],[11,13,["G3756"]],[13,14,["G1677"]],[14,17,["G5607"]],[17,18,["G3361"]],[18,19,["G3551"]]]},{"k":28061,"v":[[0,1,["G235"]],[1,2,["G2288"]],[2,3,["G936"]],[3,4,["G575"]],[4,5,["G76"]],[5,6,["G3360"]],[6,7,["G3475"]],[7,8,["G2532"]],[8,9,["G1909"]],[9,14,["G264","G3361"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,17,["G3667"]],[17,19,["G76"]],[19,20,["G3847"]],[20,21,["G3739"]],[21,22,["G2076"]],[22,24,["G5179"]],[24,26,["G3588"]],[26,30,["G3195"]]]},{"k":28062,"v":[[0,1,["G235"]],[1,2,["G3756"]],[2,3,["G5613"]],[3,4,["G3588"]],[4,5,["G3900"]],[5,6,["G3779"]],[6,7,["G2532"]],[7,9,["G3588"]],[9,11,["G5486"]],[11,12,["G1063"]],[12,13,["G1487"]],[13,15,["G3588"]],[15,16,["G3900"]],[16,18,["G1520"]],[18,19,["G4183"]],[19,21,["G599"]],[21,22,["G4183"]],[22,23,["G3123"]],[23,24,["G3588"]],[24,25,["G5485"]],[25,27,["G2316"]],[27,28,["G2532"]],[28,29,["G3588"]],[29,30,["G1431"]],[30,31,["G1722"]],[31,32,["G5485"]],[32,33,["(G3588)"]],[33,36,["G1520"]],[36,37,["G444"]],[37,38,["G2424"]],[38,39,["G5547"]],[39,41,["G4052"]],[41,42,["G1519"]],[42,43,["G4183"]]]},{"k":28063,"v":[[0,1,["G2532"]],[1,2,["G3756"]],[2,3,["G5613"]],[3,6,["G1223"]],[6,7,["G1520"]],[7,9,["G264"]],[9,12,["G3588"]],[12,13,["G1434"]],[13,14,["G1063"]],[14,15,["G3588","(G3303)"]],[15,16,["G2917"]],[16,18,["G1537"]],[18,19,["G1520"]],[19,20,["G1519"]],[20,21,["G2631"]],[21,22,["G1161"]],[22,23,["G3588"]],[23,25,["G5486"]],[25,27,["G1537"]],[27,28,["G4183"]],[28,29,["G3900"]],[29,30,["G1519"]],[30,31,["G1345"]]]},{"k":28064,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,5,["G1520"]],[5,6,["G3900"]],[6,7,["G2288"]],[7,8,["G936"]],[8,9,["G1223"]],[9,10,["G1520"]],[10,11,["G4183"]],[11,12,["G3123"]],[12,15,["G2983"]],[15,16,["G4050"]],[16,18,["G5485"]],[18,19,["G2532"]],[19,21,["G3588"]],[21,22,["G1431"]],[22,24,["G1343"]],[24,26,["G936"]],[26,27,["G1722"]],[27,28,["G2222"]],[28,29,["G1223"]],[29,30,["G1520"]],[30,31,["G2424"]],[31,32,["G5547"]]]},{"k":28065,"v":[[0,1,["G686","G3767"]],[1,2,["G5613"]],[2,3,["G1223"]],[3,5,["G3900"]],[5,7,["G1520"]],[7,10,["G1519"]],[10,11,["G3956"]],[11,12,["G444"]],[12,13,["G1519"]],[13,14,["G2631"]],[14,15,["G2532"]],[15,16,["G3779"]],[16,17,["G1223"]],[17,19,["G1345"]],[19,21,["G1520"]],[21,26,["G1519"]],[26,27,["G3956"]],[27,28,["G444"]],[28,29,["G1519"]],[29,30,["G1347"]],[30,32,["G2222"]]]},{"k":28066,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G1223"]],[3,4,["G1520"]],[4,5,["G444"]],[5,6,["G3876"]],[6,7,["G4183"]],[7,9,["G2525"]],[9,10,["G268"]],[10,11,["G3779","(G2532)"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G5218"]],[14,16,["G1520"]],[16,18,["G4183"]],[18,20,["G2525"]],[20,21,["G1342"]]]},{"k":28067,"v":[[0,1,["G1161"]],[1,3,["G3551"]],[3,4,["G3922"]],[4,5,["G2443"]],[5,6,["G3588"]],[6,7,["G3900"]],[7,9,["G4121"]],[9,10,["G1161"]],[10,11,["G3757"]],[11,12,["G266"]],[12,13,["G4121"]],[13,14,["G5485"]],[14,18,["G5248"]]]},{"k":28068,"v":[[0,1,["G2443"]],[1,2,["G5618"]],[2,3,["G266"]],[3,5,["G936"]],[5,6,["G1722"]],[6,7,["G2288"]],[7,8,["G2532"]],[8,9,["G3779"]],[9,11,["G5485"]],[11,12,["G936"]],[12,13,["G1223"]],[13,14,["G1343"]],[14,15,["G1519"]],[15,16,["G166"]],[16,17,["G2222"]],[17,18,["G1223"]],[18,19,["G2424"]],[19,20,["G5547"]],[20,21,["G2257"]],[21,22,["G2962"]]]},{"k":28069,"v":[[0,1,["G5101"]],[1,4,["G2046"]],[4,5,["G3767"]],[5,8,["G1961"]],[8,10,["G266"]],[10,11,["G2443"]],[11,12,["G5485"]],[12,14,["G4121"]]]},{"k":28070,"v":[[0,2,["G1096","G3361"]],[2,3,["G4459"]],[3,6,["G3748"]],[6,8,["G599"]],[8,10,["G266"]],[10,11,["G2198"]],[11,13,["G2089"]],[13,14,["G1722","G846"]]]},{"k":28071,"v":[[0,0,["(G2228)"]],[0,3,["G50"]],[3,4,["G3754"]],[4,9,["G3745"]],[9,11,["G907"]],[11,12,["G1519"]],[12,13,["G2424"]],[13,14,["G5547"]],[14,16,["G907"]],[16,17,["G1519"]],[17,18,["G848"]],[18,19,["G2288"]]]},{"k":28072,"v":[[0,1,["G3767"]],[1,4,["G4916"]],[4,6,["G846"]],[6,7,["G1223"]],[7,8,["G908"]],[8,9,["G1519"]],[9,10,["G2288"]],[10,11,["G2443"]],[11,13,["G5618"]],[13,14,["G5547"]],[14,17,["G1453"]],[17,18,["G1537"]],[18,20,["G3498"]],[20,21,["G1223"]],[21,22,["G3588"]],[22,23,["G1391"]],[23,25,["G3588"]],[25,26,["G3962"]],[26,27,["G2532"]],[27,28,["G3779"]],[28,29,["G2249"]],[29,30,["G2532"]],[30,32,["G4043"]],[32,33,["G1722"]],[33,34,["G2538"]],[34,36,["G2222"]]]},{"k":28073,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,5,["G1096"]],[5,7,["G4854"]],[7,9,["G3588"]],[9,10,["G3667"]],[10,12,["G848"]],[12,13,["G2288"]],[13,16,["G2071","(G235)"]],[16,17,["G2532"]],[17,23,["G386"]]]},{"k":28074,"v":[[0,1,["G1097"]],[1,2,["G5124"]],[2,3,["G3754"]],[3,4,["G2257"]],[4,5,["G3820"]],[5,6,["G444"]],[6,9,["G4957"]],[9,11,["G2443"]],[11,12,["G3588"]],[12,13,["G4983"]],[13,15,["G266"]],[15,18,["G2673"]],[18,20,["G3371"]],[20,21,["G2248"]],[21,24,["G1398"]],[24,25,["G266"]]]},{"k":28075,"v":[[0,1,["G1063"]],[1,5,["G599"]],[5,7,["G1344"]],[7,8,["G575"]],[8,9,["G266"]]]},{"k":28076,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,5,["G599"]],[5,6,["G4862"]],[6,7,["G5547"]],[7,9,["G4100"]],[9,10,["G3754"]],[10,13,["G2532"]],[13,15,["G4800"]],[15,16,["G846"]]]},{"k":28077,"v":[[0,1,["G1492"]],[1,2,["G3754"]],[2,3,["G5547"]],[3,5,["G1453"]],[5,6,["G1537"]],[6,8,["G3498"]],[8,9,["G599"]],[9,11,["G3765"]],[11,12,["G2288"]],[12,17,["G2961","G3765"]],[17,18,["G846"]]]},{"k":28078,"v":[[0,1,["G1063"]],[1,3,["G3739"]],[3,5,["G599"]],[5,7,["G599"]],[7,9,["G266"]],[9,10,["G2178"]],[10,11,["G1161"]],[11,13,["G3739"]],[13,15,["G2198"]],[15,17,["G2198"]],[17,19,["G2316"]]]},{"k":28079,"v":[[0,1,["G3779"]],[1,2,["G3049"]],[2,3,["G5210"]],[3,4,["G2532"]],[4,5,["G1438"]],[5,7,["G1511"]],[7,8,["G3498"]],[8,9,["G3303"]],[9,11,["G266"]],[11,12,["G1161"]],[12,13,["G2198"]],[13,15,["G2316"]],[15,16,["G1722"]],[16,17,["G2424"]],[17,18,["G5547"]],[18,19,["G2257"]],[19,20,["G2962"]]]},{"k":28080,"v":[[0,2,["G3361"]],[2,3,["G266"]],[3,4,["G3767"]],[4,5,["G936"]],[5,6,["G1722"]],[6,7,["G5216"]],[7,8,["G2349"]],[8,9,["G4983"]],[9,13,["G5219"]],[13,14,["G846"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G1939"]],[17,18,["G848"]]]},{"k":28081,"v":[[0,1,["G3366"]],[1,2,["G3936"]],[2,4,["G5216"]],[4,5,["G3196"]],[5,7,["G3696"]],[7,9,["G93"]],[9,11,["G266"]],[11,12,["G235"]],[12,13,["G3936"]],[13,14,["G1438"]],[14,16,["G2316"]],[16,17,["G5613"]],[17,21,["G2198"]],[21,22,["G1537"]],[22,24,["G3498"]],[24,25,["G2532"]],[25,26,["G5216"]],[26,27,["G3196"]],[27,29,["G3696"]],[29,31,["G1343"]],[31,33,["G2316"]]]},{"k":28082,"v":[[0,1,["G1063"]],[1,2,["G266"]],[2,4,["G3756"]],[4,7,["G2961"]],[7,8,["G5216"]],[8,9,["G1063"]],[9,11,["G2075"]],[11,12,["G3756"]],[12,13,["G5259"]],[13,15,["G3551"]],[15,16,["G235"]],[16,17,["G5259"]],[17,18,["G5485"]]]},{"k":28083,"v":[[0,1,["G5101"]],[1,2,["G3767"]],[2,5,["G264"]],[5,6,["G3754"]],[6,8,["G2070"]],[8,9,["G3756"]],[9,10,["G5259"]],[10,12,["G3551"]],[12,13,["G235"]],[13,14,["G5259"]],[14,15,["G5485"]],[15,17,["G1096","G3361"]]]},{"k":28084,"v":[[0,1,["G1492"]],[1,3,["G3756"]],[3,4,["G3754"]],[4,6,["G3739"]],[6,8,["G3936"]],[8,9,["G1438"]],[9,10,["G1401"]],[10,11,["G1519"]],[11,12,["G5218"]],[12,14,["G1401"]],[14,16,["G2075"]],[16,18,["G3739"]],[18,20,["G5219"]],[20,21,["G2273"]],[21,23,["G266"]],[23,24,["G1519"]],[24,25,["G2288"]],[25,26,["G2228"]],[26,28,["G5218"]],[28,29,["G1519"]],[29,30,["G1343"]]]},{"k":28085,"v":[[0,1,["G1161"]],[1,4,["G2316","G5485"]],[4,5,["G3754"]],[5,7,["G2258"]],[7,9,["G1401"]],[9,11,["G266"]],[11,12,["G1161"]],[12,15,["G5219"]],[15,16,["G1537"]],[16,18,["G2588"]],[18,20,["G5179"]],[20,22,["G1322","(G1519)"]],[22,23,["G3739"]],[23,25,["G3860"]],[25,26,[]]]},{"k":28086,"v":[[0,2,["(G1161)"]],[2,4,["G1659"]],[4,5,["G575"]],[5,6,["G266"]],[6,10,["G1402"]],[10,12,["G1343"]]]},{"k":28087,"v":[[0,2,["G3004"]],[2,7,["G442"]],[7,8,["G1223"]],[8,10,["G3588"]],[10,11,["G769"]],[11,13,["G5216"]],[13,14,["G4561"]],[14,15,["G1063"]],[15,16,["G5618"]],[16,19,["G3936"]],[19,20,["G5216"]],[20,21,["G3196"]],[21,22,["G1400"]],[22,24,["G167"]],[24,25,["G2532"]],[25,27,["G458"]],[27,28,["G1519"]],[28,29,["G458"]],[29,31,["G3779"]],[31,32,["G3568"]],[32,33,["G3936"]],[33,34,["G5216"]],[34,35,["G3196"]],[35,36,["G1400"]],[36,38,["G1343"]],[38,39,["G1519"]],[39,40,["G38"]]]},{"k":28088,"v":[[0,1,["G1063"]],[1,2,["G3753"]],[2,4,["G2258"]],[4,6,["G1401"]],[6,8,["G266"]],[8,10,["G2258"]],[10,11,["G1658"]],[11,13,["G1343"]]]},{"k":28089,"v":[[0,1,["G5101"]],[1,2,["G2590","(G3767)"]],[2,3,["G2192"]],[3,5,["G5119"]],[5,6,["G1909"]],[6,9,["G3739"]],[9,13,["G1870","G3568"]],[13,14,["G1063"]],[14,15,["G3588"]],[15,16,["G5056"]],[16,19,["G1565"]],[19,21,["G2288"]]]},{"k":28090,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,5,["G1659"]],[5,6,["G575"]],[6,7,["G266"]],[7,8,["G1161"]],[8,10,["G1402"]],[10,12,["G2316"]],[12,14,["G2192"]],[14,15,["G5216"]],[15,16,["G2590"]],[16,17,["G1519"]],[17,18,["G38"]],[18,19,["G1161"]],[19,20,["G3588"]],[20,21,["G5056"]],[21,22,["G166"]],[22,23,["G2222"]]]},{"k":28091,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3800"]],[3,5,["G266"]],[5,7,["G2288"]],[7,8,["G1161"]],[8,9,["G3588"]],[9,10,["G5486"]],[10,12,["G2316"]],[12,14,["G166"]],[14,15,["G2222"]],[15,16,["G1722"]],[16,17,["G2424"]],[17,18,["G5547"]],[18,19,["G2257"]],[19,20,["G2962"]]]},{"k":28092,"v":[[0,0,["(G2228)"]],[0,3,["G50"]],[3,4,["G80"]],[4,5,["G1063"]],[5,7,["G2980"]],[7,11,["G1097"]],[11,13,["G3551"]],[13,15,["G3754"]],[15,16,["G3588"]],[16,17,["G3551"]],[17,20,["G2961"]],[20,22,["G444","(G1909)"]],[22,25,["G3745","G5550"]],[25,27,["G2198"]]]},{"k":28093,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G1135"]],[3,7,["G5220"]],[7,9,["G1210"]],[9,12,["G3551"]],[12,15,["G435"]],[15,20,["G2198"]],[20,21,["G1161"]],[21,22,["G1437"]],[22,23,["G3588"]],[23,24,["G435"]],[24,26,["G599"]],[26,29,["G2673"]],[29,30,["G575"]],[30,31,["G3588"]],[31,32,["G3551"]],[32,35,["G435"]]]},{"k":28094,"v":[[0,1,["G686"]],[1,2,["G3767"]],[2,3,["G1437"]],[3,6,["G435"]],[6,7,["G2198"]],[7,10,["G1096"]],[10,12,["G2087"]],[12,13,["G435"]],[13,17,["G5537"]],[17,19,["G3428"]],[19,20,["G1161"]],[20,21,["G1437"]],[21,23,["G435"]],[23,25,["G599"]],[25,27,["G2076"]],[27,28,["G1658"]],[28,29,["G575"]],[29,31,["G3551"]],[31,34,["G846"]],[34,35,["G1511"]],[35,36,["G3361"]],[36,37,["G3428"]],[37,41,["G1096"]],[41,43,["G2087"]],[43,44,["G435"]]]},{"k":28095,"v":[[0,1,["G5620"]],[1,2,["G3450"]],[2,3,["G80"]],[3,4,["G5210"]],[4,5,["G2532"]],[5,8,["G2289"]],[8,10,["G3588"]],[10,11,["G3551"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G4983"]],[14,16,["G5547"]],[16,18,["G5209"]],[18,21,["G1096"]],[21,23,["G2087"]],[23,29,["G1453"]],[29,30,["G1537"]],[30,32,["G3498"]],[32,33,["G2443"]],[33,38,["G2592"]],[38,40,["G2316"]]]},{"k":28096,"v":[[0,1,["G1063"]],[1,2,["G3753"]],[2,4,["G2258"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G4561"]],[7,8,["G3588"]],[8,9,["G3804"]],[9,11,["G266"]],[11,12,["G3588"]],[12,14,["G1223"]],[14,15,["G3588"]],[15,16,["G3551"]],[16,18,["G1754"]],[18,19,["G1722"]],[19,20,["G2257"]],[20,21,["G3196"]],[21,25,["G2592"]],[25,27,["G2288"]]]},{"k":28097,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,5,["G2673"]],[5,6,["G575"]],[6,7,["G3588"]],[7,8,["G3551"]],[8,11,["G599"]],[11,12,["G1722","G3739"]],[12,15,["G2722"]],[15,16,["G5620"]],[16,17,["G2248"]],[17,19,["G1398"]],[19,20,["G1722"]],[20,21,["G2538"]],[21,23,["G4151"]],[23,24,["G2532"]],[24,25,["G3756"]],[25,28,["G3821"]],[28,31,["G1121"]]]},{"k":28098,"v":[[0,1,["G5101"]],[1,4,["G2046"]],[4,5,["G3767"]],[5,7,["G3588"]],[7,8,["G3551"]],[8,9,["G266"]],[9,11,["G1096","G3361"]],[11,12,["G235"]],[12,15,["G3756"]],[15,16,["G1097"]],[16,17,["G266"]],[17,18,["G1508"]],[18,19,["G1223"]],[19,21,["G3551"]],[21,22,["G1063"]],[22,24,["(G5037)"]],[24,25,["G3756"]],[25,26,["G1492"]],[26,27,["G1939"]],[27,28,["G1508"]],[28,29,["G3588"]],[29,30,["G3551"]],[30,32,["G3004"]],[32,35,["G3756"]],[35,36,["G1937"]]]},{"k":28099,"v":[[0,1,["G1161"]],[1,2,["G266"]],[2,3,["G2983"]],[3,4,["G874"]],[4,5,["G1223"]],[5,6,["G3588"]],[6,7,["G1785"]],[7,8,["G2716"]],[8,9,["G1722"]],[9,10,["G1698"]],[10,12,["G3956"]],[12,14,["G1939"]],[14,15,["G1063"]],[15,16,["G5565"]],[16,18,["G3551"]],[18,19,["G266"]],[19,21,["G3498"]]]},{"k":28100,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,4,["G2198"]],[4,5,["G5565"]],[5,7,["G3551"]],[7,8,["G4218"]],[8,9,["G1161"]],[9,11,["G3588"]],[11,12,["G1785"]],[12,13,["G2064"]],[13,14,["G266"]],[14,15,["G326"]],[15,16,["G1161"]],[16,17,["G1473"]],[17,18,["G599"]]]},{"k":28101,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1785"]],[3,4,["G3588"]],[4,7,["G1519"]],[7,8,["G2222"]],[8,9,["G3427"]],[9,10,["G2147"]],[10,12,["(G3778)"]],[12,13,["G1519"]],[13,14,["G2288"]]]},{"k":28102,"v":[[0,1,["G1063"]],[1,2,["G266"]],[2,3,["G2983"]],[3,4,["G874"]],[4,5,["G1223"]],[5,6,["G3588"]],[6,7,["G1785"]],[7,8,["G1818"]],[8,9,["G3165"]],[9,10,["G2532"]],[10,11,["G1223"]],[11,12,["G846"]],[12,13,["G615"]],[13,14,[]]]},{"k":28103,"v":[[0,1,["G5620"]],[1,2,["G3588"]],[2,3,["G3551"]],[3,5,["G40"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G1785"]],[8,9,["G40"]],[9,10,["G2532"]],[10,11,["G1342"]],[11,12,["G2532"]],[12,13,["G18"]]]},{"k":28104,"v":[[0,2,["G3767"]],[2,6,["G18"]],[6,7,["G1096"]],[7,8,["G2288"]],[8,10,["G1698"]],[10,12,["G1096","G3361"]],[12,13,["G235"]],[13,14,["G266"]],[14,15,["G2443"]],[15,18,["G5316"]],[18,19,["G266"]],[19,20,["G2716"]],[20,21,["G2288"]],[21,23,["G3427"]],[23,24,["G1223"]],[24,28,["G18"]],[28,29,["G2443"]],[29,30,["G266"]],[30,31,["G1223"]],[31,32,["G3588"]],[32,33,["G1785"]],[33,35,["G1096"]],[35,36,["G2596","G5236"]],[36,37,["G268"]]]},{"k":28105,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G3588"]],[5,6,["G3551"]],[6,7,["G2076"]],[7,8,["G4152"]],[8,9,["G1161"]],[9,10,["G1473"]],[10,11,["G1510"]],[11,12,["G4559"]],[12,13,["G4097"]],[13,14,["G5259"]],[14,15,["G266"]]]},{"k":28106,"v":[[0,1,["G1063"]],[1,3,["G3739"]],[3,5,["G2716"]],[5,7,["G1097"]],[7,8,["G3756"]],[8,9,["G1063"]],[9,10,["G3739"]],[10,12,["G2309"]],[12,13,["G5124"]],[13,14,["G4238"]],[14,16,["G3756"]],[16,17,["G235"]],[17,18,["G3739"]],[18,20,["G3404"]],[20,21,["G5124"]],[21,22,["G4160"]],[22,23,[]]]},{"k":28107,"v":[[0,1,["G1487"]],[1,2,["G1161"]],[2,4,["G4160"]],[4,5,["G5124"]],[5,6,["G3739"]],[6,8,["G2309"]],[8,9,["G3756"]],[9,11,["G4852"]],[11,13,["G3588"]],[13,14,["G3551"]],[14,15,["G3754"]],[15,18,["G2570"]]]},{"k":28108,"v":[[0,1,["G3570"]],[1,2,["G1161"]],[2,6,["G3765"]],[6,7,["G1473"]],[7,9,["G2716"]],[9,10,["G846"]],[10,11,["G235"]],[11,12,["G266"]],[12,14,["G3611"]],[14,15,["G1722"]],[15,16,["G1698"]]]},{"k":28109,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G1722"]],[5,6,["G1698"]],[6,8,["G5123"]],[8,9,["G1722"]],[9,10,["G3450"]],[10,11,["G4561"]],[11,12,["G3611"]],[12,13,["G3756"]],[13,15,["G18"]],[15,16,["G1063"]],[16,18,["G2309"]],[18,20,["G3873"]],[20,22,["G3427"]],[22,23,["G1161"]],[23,26,["G2716"]],[26,30,["G2570"]],[30,32,["G2147"]],[32,33,["G3756"]]]},{"k":28110,"v":[[0,1,["G1063"]],[1,3,["G18"]],[3,4,["G3739"]],[4,6,["G2309"]],[6,8,["G4160"]],[8,9,["G3756"]],[9,10,["G235"]],[10,12,["G2556"]],[12,13,["G3739"]],[13,15,["G2309"]],[15,16,["G3756"]],[16,17,["G5124"]],[17,19,["G4238"]]]},{"k":28111,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G1473"]],[3,4,["G4160"]],[4,5,["G5124"]],[5,6,["(G3739)"]],[6,7,["G2309"]],[7,8,["G3756"]],[8,12,["G3765"]],[12,13,["G1473"]],[13,15,["G2716"]],[15,16,["G846"]],[16,17,["G235"]],[17,18,["G266"]],[18,20,["G3611"]],[20,21,["G1722"]],[21,22,["G1698"]]]},{"k":28112,"v":[[0,2,["G2147"]],[2,3,["G686"]],[3,5,["G3551"]],[5,8,["G1698"]],[8,9,["G2309"]],[9,10,["G4160"]],[10,11,["G2570","(G3754)"]],[11,12,["G2556"]],[12,14,["G3873"]],[14,16,["G1698"]]]},{"k":28113,"v":[[0,1,["G1063"]],[1,3,["G4913"]],[3,5,["G3588"]],[5,6,["G3551"]],[6,8,["G2316"]],[8,9,["G2596"]],[9,10,["G3588"]],[10,11,["G2080"]],[11,12,["G444"]]]},{"k":28114,"v":[[0,1,["G1161"]],[1,3,["G991"]],[3,4,["G2087"]],[4,5,["G3551"]],[5,6,["G1722"]],[6,7,["G3450"]],[7,8,["G3196"]],[8,10,["G497"]],[10,11,["G3588"]],[11,12,["G3551"]],[12,14,["G3450"]],[14,15,["G3563"]],[15,16,["G2532"]],[16,20,["G163","G3165"]],[20,22,["G3588"]],[22,23,["G3551"]],[23,25,["G266"]],[25,27,["G5607"]],[27,28,["G1722"]],[28,29,["G3450"]],[29,30,["G3196"]]]},{"k":28115,"v":[[0,2,["G5005"]],[2,3,["G444"]],[3,5,["G1473"]],[5,7,["G5101"]],[7,9,["G4506"]],[9,10,["G3165"]],[10,11,["G1537"]],[11,12,["G3588"]],[12,13,["G4983"]],[13,15,["G5127"]],[15,16,["G2288"]]]},{"k":28116,"v":[[0,2,["G2168"]],[2,3,["G2316"]],[3,4,["G1223"]],[4,5,["G2424"]],[5,6,["G5547"]],[6,7,["G2257"]],[7,8,["G2962"]],[8,9,["G686"]],[9,10,["G3767"]],[10,12,["G3588"]],[12,13,["G3563"]],[13,14,["G1473"]],[14,15,["G848","(G3303)"]],[15,16,["G1398"]],[16,18,["G3551"]],[18,20,["G2316"]],[20,21,["G1161"]],[21,23,["G3588"]],[23,24,["G4561"]],[24,26,["G3551"]],[26,28,["G266"]]]},{"k":28117,"v":[[0,3,["G686"]],[3,4,["G3568"]],[4,5,["G3762"]],[5,6,["G2631"]],[6,8,["G3588"]],[8,11,["G1722"]],[11,12,["G5547"]],[12,13,["G2424"]],[13,15,["G4043"]],[15,16,["G3361"]],[16,17,["G2596"]],[17,19,["G4561"]],[19,20,["G235"]],[20,21,["G2596"]],[21,23,["G4151"]]]},{"k":28118,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3551"]],[3,5,["G3588"]],[5,6,["G4151"]],[6,8,["G2222"]],[8,9,["G1722"]],[9,10,["G5547"]],[10,11,["G2424"]],[11,15,["G1659","G3165"]],[15,16,["G575"]],[16,17,["G3588"]],[17,18,["G3551"]],[18,20,["G266"]],[20,21,["G2532"]],[21,22,["G2288"]]]},{"k":28119,"v":[[0,1,["G1063"]],[1,3,["G3588"]],[3,4,["G3551"]],[4,7,["G102"]],[7,8,["G1722"]],[8,9,["G3739"]],[9,12,["G770"]],[12,13,["G1223"]],[13,14,["G3588"]],[14,15,["G4561"]],[15,16,["G2316"]],[16,17,["G3992"]],[17,19,["G1438"]],[19,20,["G5207"]],[20,21,["G1722"]],[21,23,["G3667"]],[23,25,["G266"]],[25,26,["G4561"]],[26,27,["G2532"]],[27,28,["G4012"]],[28,29,["G266"]],[29,30,["G2632"]],[30,31,["G266"]],[31,32,["G1722"]],[32,33,["G3588"]],[33,34,["G4561"]]]},{"k":28120,"v":[[0,1,["G2443"]],[1,2,["G3588"]],[2,3,["G1345"]],[3,5,["G3588"]],[5,6,["G3551"]],[6,9,["G4137"]],[9,10,["G1722"]],[10,11,["G2254"]],[11,13,["G4043"]],[13,14,["G3361"]],[14,15,["G2596"]],[15,17,["G4561"]],[17,18,["G235"]],[18,19,["G2596"]],[19,21,["G4151"]]]},{"k":28121,"v":[[0,1,["G1063"]],[1,4,["G5607"]],[4,5,["G2596"]],[5,7,["G4561"]],[7,9,["G5426"]],[9,11,["G3588"]],[11,13,["G3588"]],[13,14,["G4561"]],[14,15,["G1161"]],[15,16,["G3588"]],[16,19,["G2596"]],[19,21,["G4151"]],[21,23,["G3588"]],[23,25,["G3588"]],[25,26,["G4151"]]]},{"k":28122,"v":[[0,1,["G1063"]],[1,4,["G4561"]],[4,5,["G5427"]],[5,7,["G2288"]],[7,8,["G1161"]],[8,11,["G4151"]],[11,12,["G5427"]],[12,14,["G2222"]],[14,15,["G2532"]],[15,16,["G1515"]]]},{"k":28123,"v":[[0,1,["G1360"]],[1,2,["G3588"]],[2,3,["G4561"]],[3,4,["G5427"]],[4,6,["G2189"]],[6,7,["G1519"]],[7,8,["G2316"]],[8,9,["G1063"]],[9,13,["G5293","G3756"]],[13,15,["G3588"]],[15,16,["G3551"]],[16,18,["G2316"]],[18,19,["G3761"]],[19,20,["G1063"]],[20,21,["G1410"]],[21,22,[]]]},{"k":28124,"v":[[0,1,["G1161"]],[1,5,["G5607"]],[5,6,["G1722"]],[6,8,["G4561"]],[8,9,["G1410","G3756"]],[9,10,["G700"]],[10,11,["G2316"]]]},{"k":28125,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G2075"]],[3,4,["G3756"]],[4,5,["G1722"]],[5,7,["G4561"]],[7,8,["G235"]],[8,9,["G1722"]],[9,11,["G4151"]],[11,15,["G1512"]],[15,17,["G4151"]],[17,19,["G2316"]],[19,20,["G3611"]],[20,21,["G1722"]],[21,22,["G5213"]],[22,23,["G1161"]],[23,26,["G1536"]],[26,27,["G2192"]],[27,28,["G3756"]],[28,30,["G4151"]],[30,32,["G5547"]],[32,33,["G3778"]],[33,34,["G2076"]],[34,35,["G3756"]],[35,37,["G848"]]]},{"k":28126,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5547"]],[3,5,["G1722"]],[5,6,["G5213"]],[6,7,["G3588"]],[7,8,["G4983"]],[8,9,["(G3303)"]],[9,10,["G3498"]],[10,11,["G1223"]],[11,13,["G266"]],[13,14,["G1161"]],[14,15,["G3588"]],[15,16,["G4151"]],[16,18,["G2222"]],[18,19,["G1223"]],[19,21,["G1343"]]]},{"k":28127,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G4151"]],[4,9,["G1453"]],[9,10,["G2424"]],[10,11,["G1537"]],[11,13,["G3498"]],[13,14,["G3611"]],[14,15,["G1722"]],[15,16,["G5213"]],[16,20,["G1453"]],[20,21,["G5547"]],[21,22,["G1537"]],[22,24,["G3498"]],[24,26,["G2532"]],[26,27,["G2227"]],[27,28,["G5216"]],[28,29,["G2349"]],[29,30,["G4983"]],[30,31,["G1223"]],[31,32,["G848"]],[32,33,["G4151"]],[33,35,["G1774"]],[35,36,["G1722"]],[36,37,["G5213"]]]},{"k":28128,"v":[[0,1,["G686","G3767"]],[1,2,["G80"]],[2,4,["G2070"]],[4,5,["G3781"]],[5,6,["G3756"]],[6,8,["G3588"]],[8,9,["G4561"]],[9,11,["G2198"]],[11,12,["G2596"]],[12,13,["G3588"]],[13,14,["G4561"]]]},{"k":28129,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,4,["G2198"]],[4,5,["G2596"]],[5,7,["G4561"]],[7,9,["G3195"]],[9,10,["G599"]],[10,11,["G1161"]],[11,12,["G1487"]],[12,16,["G4151"]],[16,18,["G2289"]],[18,19,["G3588"]],[19,20,["G4234"]],[20,22,["G3588"]],[22,23,["G4983"]],[23,26,["G2198"]]]},{"k":28130,"v":[[0,1,["G1063"]],[1,4,["G3745"]],[4,6,["G71"]],[6,9,["G4151"]],[9,11,["G2316"]],[11,12,["G3778"]],[12,13,["G1526"]],[13,15,["G5207"]],[15,17,["G2316"]]]},{"k":28131,"v":[[0,1,["G1063"]],[1,4,["G3756"]],[4,5,["G2983"]],[5,7,["G4151"]],[7,9,["G1397"]],[9,10,["G3825"]],[10,11,["G1519"]],[11,12,["G5401"]],[12,13,["G235"]],[13,16,["G2983"]],[16,18,["G4151"]],[18,20,["G5206"]],[20,21,["G1722","G3739"]],[21,23,["G2896"]],[23,24,["G5"]],[24,25,["G3962"]]]},{"k":28132,"v":[[0,1,["G3588"]],[1,2,["G4151"]],[2,3,["G846"]],[3,6,["G4828"]],[6,7,["G2257"]],[7,8,["G4151"]],[8,9,["G3754"]],[9,11,["G2070"]],[11,13,["G5043"]],[13,15,["G2316"]]]},{"k":28133,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5043"]],[3,4,["G2532"]],[4,5,["G2818"]],[5,6,["G2818"]],[6,7,["(G3303)"]],[7,8,["G2316"]],[8,9,["G1161"]],[9,10,["G4789"]],[10,12,["G5547"]],[12,16,["G1512"]],[16,19,["G4841"]],[19,21,["G2443"]],[21,25,["G2532"]],[25,27,["G4888"]]]},{"k":28134,"v":[[0,1,["G1063"]],[1,3,["G3049"]],[3,4,["G3754"]],[4,5,["G3588"]],[5,6,["G3804"]],[6,9,["G3568"]],[9,10,["G2540"]],[10,12,["G3756"]],[12,13,["G514"]],[13,17,["G4314"]],[17,18,["G3588"]],[18,19,["G1391"]],[19,21,["G3195"]],[21,23,["G601"]],[23,24,["G1519"]],[24,25,["G2248"]]]},{"k":28135,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,4,["G603"]],[4,6,["G3588"]],[6,7,["G2937"]],[7,9,["G553"]],[9,10,["G3588"]],[10,11,["G602"]],[11,13,["G3588"]],[13,14,["G5207"]],[14,16,["G2316"]]]},{"k":28136,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G2937"]],[3,6,["G5293"]],[6,8,["G3153"]],[8,9,["G3756"]],[9,10,["G1635"]],[10,11,["G235"]],[11,14,["G1223"]],[14,18,["G5293"]],[18,21,["G1909"]],[21,22,["G1680"]]]},{"k":28137,"v":[[0,1,["G3754"]],[1,2,["G3588"]],[2,3,["G2937"]],[3,4,["G848"]],[4,5,["G2532"]],[5,8,["G1659"]],[8,9,["G575"]],[9,10,["G3588"]],[10,11,["G1397"]],[11,13,["G5356"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G1391"]],[16,17,["G1657"]],[17,19,["G3588"]],[19,20,["G5043"]],[20,22,["G2316"]]]},{"k":28138,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,6,["G3956"]],[6,7,["G2937"]],[7,8,["G4959"]],[8,9,["G2532"]],[9,13,["G4944"]],[13,14,["G891"]],[14,15,["G3568"]]]},{"k":28139,"v":[[0,1,["G1161"]],[1,2,["G3756"]],[2,3,["G3440"]],[3,5,["G235"]],[5,6,["G848"]],[6,7,["G2532"]],[7,9,["G2192"]],[9,10,["G3588"]],[10,11,["G536"]],[11,13,["G3588"]],[13,14,["G4151"]],[14,15,["G2532"]],[15,16,["G2249"]],[16,17,["G848"]],[17,18,["G4727"]],[18,19,["G1722"]],[19,20,["G1438"]],[20,22,["G553"]],[22,24,["G5206"]],[24,27,["G3588"]],[27,28,["G629"]],[28,30,["G2257"]],[30,31,["G4983"]]]},{"k":28140,"v":[[0,1,["G1063"]],[1,4,["G4982"]],[4,6,["G1680"]],[6,7,["G1161"]],[7,8,["G1680"]],[8,11,["G991"]],[11,12,["G2076"]],[12,13,["G3756"]],[13,14,["G1680"]],[14,15,["G1063"]],[15,16,["G3739"]],[16,18,["G5100"]],[18,19,["G991"]],[19,20,["G5101"]],[20,23,["G2532"]],[23,25,["G1679"]]]},{"k":28141,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,5,["G1679"]],[5,6,["G3739"]],[6,8,["G991"]],[8,9,["G3756"]],[9,13,["G1223"]],[13,14,["G5281"]],[14,16,["G553"]],[16,17,[]]]},{"k":28142,"v":[[0,0,["(G1161)"]],[0,1,["G5615"]],[1,2,["G3588"]],[2,3,["G4151"]],[3,4,["G2532"]],[4,5,["G4878"]],[5,6,["G2257"]],[6,7,["G769"]],[7,8,["G1063"]],[8,10,["G1492"]],[10,11,["G3756"]],[11,12,["G5101"]],[12,16,["G4336"]],[16,17,["G2526"]],[17,19,["G1163"]],[19,20,["G235"]],[20,21,["G3588"]],[21,22,["G4151"]],[22,23,["G848"]],[23,25,["G5241"]],[25,26,["G5228"]],[26,27,["G2257"]],[27,29,["G4726"]],[29,33,["G215"]]]},{"k":28143,"v":[[0,1,["G1161"]],[1,4,["G2045"]],[4,5,["G3588"]],[5,6,["G2588"]],[6,7,["G1492"]],[7,8,["G5101"]],[8,10,["G3588"]],[10,11,["G5427"]],[11,13,["G3588"]],[13,14,["G4151"]],[14,15,["G3754"]],[15,18,["G1793"]],[18,19,["G5228"]],[19,21,["G40"]],[21,22,["G2596"]],[22,27,["G2316"]]]},{"k":28144,"v":[[0,1,["G1161"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,6,["G3956"]],[6,8,["G4903"]],[8,9,["G1519"]],[9,10,["G18"]],[10,14,["G25"]],[14,15,["G2316"]],[15,19,["G5607"]],[19,20,["G3588"]],[20,21,["G2822"]],[21,22,["G2596"]],[22,25,["G4286"]]]},{"k":28145,"v":[[0,1,["G3754"]],[1,2,["G3739"]],[2,5,["G4267"]],[5,7,["G2532"]],[7,9,["G4309"]],[9,13,["G4832"]],[13,14,["G3588"]],[14,15,["G1504"]],[15,17,["G848"]],[17,18,["G5207"]],[18,20,["G846"]],[20,22,["G1511"]],[22,24,["G4416"]],[24,25,["G1722"]],[25,26,["G4183"]],[26,27,["G80"]]]},{"k":28146,"v":[[0,1,["G1161"]],[1,2,["G3739"]],[2,5,["G4309"]],[5,6,["G5128"]],[6,8,["G2532"]],[8,9,["G2564"]],[9,10,["G2532"]],[10,11,["G3739"]],[11,13,["G2564"]],[13,14,["G5128"]],[14,16,["G2532"]],[16,17,["G1344"]],[17,18,["G1161"]],[18,19,["G3739"]],[19,21,["G1344"]],[21,22,["G5128"]],[22,24,["G2532"]],[24,25,["G1392"]]]},{"k":28147,"v":[[0,1,["G5101"]],[1,4,["G3767"]],[4,5,["G2046"]],[5,6,["G4314"]],[6,7,["G5023"]],[7,9,["G1487"]],[9,10,["G2316"]],[10,12,["G5228"]],[12,13,["G2257"]],[13,14,["G5101"]],[14,17,["G2596"]],[17,18,["G2257"]]]},{"k":28148,"v":[[0,2,["G3739","(G1065)"]],[2,3,["G5339"]],[3,4,["G3756"]],[4,6,["G2398"]],[6,7,["G5207"]],[7,8,["G235"]],[8,11,["G3860","G846"]],[11,12,["G5228"]],[12,13,["G2257"]],[13,14,["G3956"]],[14,15,["G4459"]],[15,18,["G3780"]],[18,19,["G4862"]],[19,20,["G846"]],[20,21,["G2532"]],[21,23,["G5483"]],[23,24,["G2254"]],[24,26,["G3956"]]]},{"k":28149,"v":[[0,1,["G5101"]],[1,8,["G1458","G2596"]],[8,10,["G2316"]],[10,11,["G1588"]],[11,14,["G2316"]],[14,16,["G1344"]]]},{"k":28150,"v":[[0,1,["G5101"]],[1,5,["G2632"]],[5,8,["G5547"]],[8,10,["G599"]],[10,11,["G1161"]],[11,12,["G3123"]],[12,13,["(G2532)"]],[13,16,["G1453"]],[16,17,["G3739"]],[17,18,["G2076"]],[18,19,["G2532"]],[19,20,["G1722"]],[20,23,["G1188"]],[23,25,["G2316"]],[25,26,["G3739"]],[26,27,["G2532"]],[27,29,["G1793"]],[29,30,["G5228"]],[30,31,["G2257"]]]},{"k":28151,"v":[[0,1,["G5101"]],[1,3,["G5563"]],[3,4,["G2248"]],[4,5,["G575"]],[5,6,["G3588"]],[6,7,["G26"]],[7,9,["G5547"]],[9,11,["G2347"]],[11,12,["G2228"]],[12,13,["G4730"]],[13,14,["G2228"]],[14,15,["G1375"]],[15,16,["G2228"]],[16,17,["G3042"]],[17,18,["G2228"]],[18,19,["G1132"]],[19,20,["G2228"]],[20,21,["G2794"]],[21,22,["G2228"]],[22,23,["G3162"]]]},{"k":28152,"v":[[0,1,["G2531"]],[1,4,["G1125"]],[4,7,["G1752","G4675"]],[7,10,["G2289"]],[10,11,["G3650"]],[11,12,["G3588"]],[12,13,["G2250"]],[13,17,["G3049"]],[17,18,["G5613"]],[18,19,["G4263"]],[19,22,["G4967"]]]},{"k":28153,"v":[[0,1,["G235"]],[1,2,["G1722"]],[2,3,["G3956"]],[3,5,["G5125"]],[5,10,["G5245"]],[10,11,["G1223"]],[11,14,["G25"]],[14,15,["G2248"]]]},{"k":28154,"v":[[0,1,["G1063"]],[1,4,["G3982"]],[4,5,["G3754"]],[5,6,["G3777"]],[6,7,["G2288"]],[7,8,["G3777"]],[8,9,["G2222"]],[9,10,["G3777"]],[10,11,["G32"]],[11,12,["G3777"]],[12,13,["G746"]],[13,14,["G3777"]],[14,15,["G1411"]],[15,16,["G3777"]],[16,18,["G1764"]],[18,19,["G3777"]],[19,22,["G3195"]]]},{"k":28155,"v":[[0,1,["G3777"]],[1,2,["G5313"]],[2,3,["G3777"]],[3,4,["G899"]],[4,5,["G3777"]],[5,6,["G5100"]],[6,7,["G2087"]],[7,8,["G2937"]],[8,11,["G1410"]],[11,13,["G5563"]],[13,14,["G2248"]],[14,15,["G575"]],[15,16,["G3588"]],[16,17,["G26"]],[17,19,["G2316"]],[19,20,["G3588"]],[20,22,["G1722"]],[22,23,["G5547"]],[23,24,["G2424"]],[24,25,["G2257"]],[25,26,["G2962"]]]},{"k":28156,"v":[[0,2,["G3004"]],[2,4,["G225"]],[4,5,["G1722"]],[5,6,["G5547"]],[6,8,["G5574"]],[8,9,["G3756"]],[9,10,["G3450"]],[10,11,["G4893"]],[11,15,["G4828","G3427"]],[15,16,["G1722"]],[16,18,["G40"]],[18,19,["G4151"]]]},{"k":28157,"v":[[0,1,["G3754"]],[1,2,["G3427"]],[2,3,["G2076"]],[3,4,["G3173"]],[4,5,["G3077"]],[5,6,["G2532"]],[6,7,["G88"]],[7,8,["G3601"]],[8,10,["G3450"]],[10,11,["G2588"]]]},{"k":28158,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,4,["G2172"]],[4,6,["G848"]],[6,7,["G1511"]],[7,8,["G331"]],[8,9,["G575"]],[9,10,["G5547"]],[10,11,["G5228"]],[11,12,["G3450"]],[12,13,["G80"]],[13,14,["G3450"]],[14,15,["G4773"]],[15,16,["G2596"]],[16,19,["G4561"]]]},{"k":28159,"v":[[0,1,["G3748"]],[1,2,["G1526"]],[2,3,["G2475"]],[3,5,["G3739"]],[5,7,["G3588"]],[7,8,["G5206"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G1391"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G1242"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,20,["G3548"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G2999"]],[23,26,["G2532"]],[26,27,["G3588"]],[27,28,["G1860"]]]},{"k":28160,"v":[[0,1,["G3739"]],[1,3,["G3588"]],[3,4,["G3962"]],[4,5,["G2532"]],[5,6,["G1537"]],[6,7,["G3739"]],[7,9,["G2596"]],[9,11,["G4561"]],[11,12,["G5547"]],[12,15,["G5607"]],[15,16,["G1909"]],[16,17,["G3956"]],[17,18,["G2316"]],[18,19,["G2128"]],[19,21,["G1519","G165"]],[21,22,["G281"]]]},{"k":28161,"v":[[0,0,["(G1161)"]],[0,1,["G3756"]],[1,3,["G3754","(G3634)"]],[3,4,["G3588"]],[4,5,["G3056"]],[5,7,["G2316"]],[7,11,["G1601"]],[11,12,["G1063"]],[12,13,["G3778"]],[13,15,["G3756"]],[15,16,["G3956"]],[16,17,["G2474"]],[17,18,["G3588"]],[18,20,["G1537"]],[20,21,["G2474"]]]},{"k":28162,"v":[[0,1,["G3761"]],[1,2,["G3754"]],[2,4,["G1526"]],[4,6,["G4690"]],[6,8,["G11"]],[8,11,["G3956"]],[11,12,["G5043"]],[12,13,["G235"]],[13,14,["G1722"]],[14,15,["G2464"]],[15,17,["G4671"]],[17,18,["G4690"]],[18,20,["G2564"]]]},{"k":28163,"v":[[0,2,["G5123"]],[2,6,["G3588"]],[6,7,["G5043"]],[7,9,["G3588"]],[9,10,["G4561"]],[10,11,["G5023"]],[11,13,["G3756"]],[13,15,["G5043"]],[15,17,["G2316"]],[17,18,["G235"]],[18,19,["G3588"]],[19,20,["G5043"]],[20,22,["G3588"]],[22,23,["G1860"]],[23,25,["G3049"]],[25,26,["G1519"]],[26,28,["G4690"]]]},{"k":28164,"v":[[0,1,["G1063"]],[1,2,["G3778"]],[2,4,["G3588"]],[4,5,["G3056"]],[5,7,["G1860"]],[7,8,["G2596"]],[8,9,["G5126"]],[9,10,["G2540"]],[10,13,["G2064"]],[13,14,["G2532"]],[14,15,["G4564"]],[15,17,["G2071"]],[17,19,["G5207"]]]},{"k":28165,"v":[[0,1,["G1161"]],[1,2,["G3756"]],[2,3,["G3440"]],[3,5,["G235"]],[5,7,["G4479"]],[7,8,["G2532"]],[8,9,["G2192"]],[9,10,["G2845"]],[10,11,["G1537"]],[11,12,["G1520"]],[12,15,["G2257"]],[15,16,["G3962"]],[16,17,["G2464"]]]},{"k":28166,"v":[[0,1,["G1063"]],[1,6,["G3380"]],[6,7,["G1080"]],[7,8,["G3366"]],[8,10,["G4238"]],[10,11,["G5100"]],[11,12,["G18"]],[12,13,["G2228"]],[13,14,["G2556"]],[14,15,["G2443"]],[15,16,["G3588"]],[16,17,["G4286"]],[17,19,["G2316"]],[19,20,["G2596"]],[20,22,["G1589"]],[22,24,["G3306"]],[24,25,["G3756"]],[25,26,["G1537"]],[26,27,["G2041"]],[27,28,["G235"]],[28,29,["G1537"]],[29,32,["G2564"]]]},{"k":28167,"v":[[0,3,["G4483"]],[3,5,["G846"]],[5,6,["G3588"]],[6,7,["G3187"]],[7,9,["G1398"]],[9,10,["G3588"]],[10,11,["G1640"]]]},{"k":28168,"v":[[0,1,["G2531"]],[1,4,["G1125"]],[4,5,["G2384"]],[5,8,["G25"]],[8,9,["G1161"]],[9,10,["G2269"]],[10,13,["G3404"]]]},{"k":28169,"v":[[0,1,["G5101"]],[1,4,["G2046"]],[4,5,["G3767"]],[5,7,["(G3361)"]],[7,8,["G93"]],[8,9,["G3844"]],[9,10,["G2316"]],[10,12,["G1096","G3361"]]]},{"k":28170,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G3475"]],[5,9,["G1653"]],[9,11,["G3739","G302"]],[11,15,["G1653"]],[15,16,["G2532"]],[16,20,["G3627"]],[20,22,["G3739","G302"]],[22,26,["G3627"]]]},{"k":28171,"v":[[0,1,["G686"]],[1,2,["G3767"]],[2,5,["G3756"]],[5,9,["G2309"]],[9,10,["G3761"]],[10,14,["G5143"]],[14,15,["G235"]],[15,17,["G2316"]],[17,20,["G1653"]]]},{"k":28172,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G1124"]],[3,4,["G3004"]],[4,6,["G5328"]],[6,8,["G1519"]],[8,11,["G5124","G846"]],[11,16,["G1825","G4571"]],[16,17,["G3704"]],[17,20,["G1731"]],[20,21,["G3450"]],[21,22,["G1411"]],[22,23,["G1722"]],[23,24,["G4671"]],[24,25,["G2532"]],[25,26,["G3704"]],[26,27,["G3450"]],[27,28,["G3686"]],[28,31,["G1229"]],[31,32,["G1722"]],[32,33,["G3956"]],[33,34,["G3588"]],[34,35,["G1093"]]]},{"k":28173,"v":[[0,1,["G686","G3767"]],[1,4,["G1653"]],[4,6,["G3739"]],[6,8,["G2309"]],[8,11,["G1161"]],[11,12,["G3739"]],[12,14,["G2309"]],[14,16,["G4645"]]]},{"k":28174,"v":[[0,3,["G2046"]],[3,4,["G3767"]],[4,6,["G3427"]],[6,7,["G5101"]],[7,10,["G2089"]],[10,12,["G3201"]],[12,13,["G1063"]],[13,14,["G5101"]],[14,16,["G436"]],[16,17,["G846"]],[17,18,["G1013"]]]},{"k":28175,"v":[[0,2,["G3304"]],[2,3,["G5599"]],[3,4,["G444"]],[4,5,["G5101"]],[5,6,["G1488"]],[6,7,["G4771"]],[7,10,["G470"]],[10,11,["G2316"]],[11,12,["(G3361)"]],[12,13,["G3588"]],[13,15,["G4110"]],[15,16,["G2046"]],[16,20,["G4111"]],[20,22,["G5101"]],[22,25,["G4160"]],[25,26,["G3165"]],[26,27,["G3779"]]]},{"k":28176,"v":[[0,0,["(G2228)"]],[0,1,["G2192"]],[1,2,["G3756"]],[2,3,["G3588"]],[3,4,["G2763"]],[4,5,["G1849"]],[5,7,["G3588"]],[7,8,["G4081"]],[8,9,["G1537"]],[9,10,["G3588"]],[10,11,["G846"]],[11,12,["G5445"]],[12,14,["G4160"]],[14,15,["G3739","G3303"]],[15,16,["G4632"]],[16,17,["G1519"]],[17,18,["G5092"]],[18,19,["G1161"]],[19,20,["G3739"]],[20,21,["G1519"]],[21,22,["G819"]]]},{"k":28177,"v":[[0,1,["(G1161)"]],[1,2,["G1487"]],[2,3,["G2316"]],[3,4,["G2309"]],[4,6,["G1731"]],[6,8,["G3709"]],[8,9,["G2532"]],[9,14,["G1107","G848","G1415"]],[14,15,["G5342"]],[15,16,["G1722"]],[16,17,["G4183"]],[17,18,["G3115"]],[18,20,["G4632"]],[20,22,["G3709"]],[22,23,["G2675"]],[23,24,["G1519"]],[24,25,["G684"]]]},{"k":28178,"v":[[0,1,["G2532"]],[1,2,["G2443"]],[2,6,["G1107"]],[6,7,["G3588"]],[7,8,["G4149"]],[8,10,["G848"]],[10,11,["G1391"]],[11,12,["G1909"]],[12,14,["G4632"]],[14,16,["G1656"]],[16,17,["G3739"]],[17,21,["G4282"]],[21,22,["G1519"]],[22,23,["G1391"]]]},{"k":28179,"v":[[0,1,["G2532"]],[1,2,["G2248"]],[2,3,["G3739"]],[3,6,["G2564"]],[6,7,["G3756"]],[7,8,["G1537"]],[8,10,["G2453"]],[10,11,["G3440"]],[11,12,["G235"]],[12,13,["G2532"]],[13,14,["G1537"]],[14,16,["G1484"]]]},{"k":28180,"v":[[0,1,["G5613"]],[1,3,["G3004"]],[3,4,["G2532"]],[4,5,["G1722"]],[5,6,["G5617"]],[6,9,["G2564"]],[9,11,["G3450"]],[11,12,["G2992"]],[12,13,["G3588"]],[13,15,["G3756"]],[15,16,["G3450"]],[16,17,["G2992"]],[17,18,["G2532"]],[18,20,["G25"]],[20,24,["G25","G3756"]]]},{"k":28181,"v":[[0,1,["G2532"]],[1,6,["G2071"]],[6,8,["G1722"]],[8,9,["G3588"]],[9,10,["G5117"]],[10,11,["G3757"]],[11,14,["G4483"]],[14,16,["G846"]],[16,17,["G5210"]],[17,19,["G3756"]],[19,20,["G3450"]],[20,21,["G2992"]],[21,22,["G1563"]],[22,26,["G2564"]],[26,28,["G5207"]],[28,31,["G2198"]],[31,32,["G2316"]]]},{"k":28182,"v":[[0,1,["G2268"]],[1,2,["G1161"]],[2,3,["G2896"]],[3,4,["G5228"]],[4,5,["G2474"]],[5,6,["G1437"]],[6,7,["G3588"]],[7,8,["G706"]],[8,10,["G3588"]],[10,11,["G5207"]],[11,13,["G2474"]],[13,14,["G5600"]],[14,15,["G5613"]],[15,16,["G3588"]],[16,17,["G285"]],[17,19,["G3588"]],[19,20,["G2281"]],[20,22,["G2640"]],[22,25,["G4982"]]]},{"k":28183,"v":[[0,1,["G1063"]],[1,4,["G4931"]],[4,6,["G3056"]],[6,7,["G2532"]],[7,10,["G4932"]],[10,11,["G1722"]],[11,12,["G1343"]],[12,13,["G3754"]],[13,15,["G4932"]],[15,16,["G3056"]],[16,19,["G2962"]],[19,20,["G4160"]],[20,21,["G1909"]],[21,22,["G3588"]],[22,23,["G1093"]]]},{"k":28184,"v":[[0,1,["G2532"]],[1,2,["G2531"]],[2,3,["G2268"]],[3,5,["G4280"]],[5,6,["G1508"]],[6,8,["G2962"]],[8,10,["G4519"]],[10,12,["G1459"]],[12,13,["G2254"]],[13,15,["G4690"]],[15,18,["G1096","G302"]],[18,19,["G5613"]],[19,20,["G4670"]],[20,21,["G2532"]],[21,24,["G3666","G302"]],[24,25,["G5613"]],[25,26,["G1116"]]]},{"k":28185,"v":[[0,1,["G5101"]],[1,4,["G2046"]],[4,5,["G3767"]],[5,6,["G3754"]],[6,8,["G1484"]],[8,9,["G3588"]],[9,10,["G1377"]],[10,11,["G3361"]],[11,13,["G1343"]],[13,15,["G2638"]],[15,17,["G1343"]],[17,18,["G1161"]],[18,20,["G1343"]],[20,21,["G3588"]],[21,23,["G1537"]],[23,24,["G4102"]]]},{"k":28186,"v":[[0,1,["G1161"]],[1,2,["G2474"]],[2,4,["G1377"]],[4,7,["G3551"]],[7,9,["G1343"]],[9,11,["G3756"]],[11,12,["G5348"]],[12,13,["G1519"]],[13,15,["G3551"]],[15,17,["G1343"]]]},{"k":28187,"v":[[0,1,["G1302"]],[1,2,["G3754"]],[2,6,["G3756"]],[6,7,["G1537"]],[7,8,["G4102"]],[8,9,["G235"]],[9,12,["G5613"]],[12,13,["G1537"]],[13,15,["G2041"]],[15,18,["G3551"]],[18,19,["G1063"]],[19,21,["G4350"]],[21,24,["G4348","G3037"]]]},{"k":28188,"v":[[0,1,["G2531"]],[1,4,["G1125"]],[4,5,["G2400"]],[5,7,["G5087"]],[7,8,["G1722"]],[8,9,["G4622"]],[9,11,["G4348","G3037"]],[11,12,["G2532"]],[12,13,["G4073"]],[13,15,["G4625"]],[15,16,["G2532"]],[16,17,["G3956"]],[17,18,["G4100"]],[18,19,["G1909"]],[19,20,["G846"]],[20,22,["G3756"]],[22,24,["G2617"]]]},{"k":28189,"v":[[0,1,["G80"]],[1,2,["G1699"]],[2,3,["G2588"]],[3,4,["G2107","(G3303)"]],[4,5,["G2532"]],[5,6,["G1162"]],[6,7,["G4314"]],[7,8,["G2316"]],[8,9,["G5228"]],[9,10,["G2474"]],[10,11,["G2076"]],[11,16,["G1519","G4991"]]]},{"k":28190,"v":[[0,1,["G1063"]],[1,5,["G3140","G846"]],[5,6,["G3754"]],[6,8,["G2192"]],[8,10,["G2205"]],[10,12,["G2316"]],[12,13,["G235"]],[13,14,["G3756"]],[14,15,["G2596"]],[15,17,["G1922"]]]},{"k":28191,"v":[[0,1,["G1063"]],[1,4,["G50"]],[4,6,["G2316"]],[6,7,["G1343"]],[7,8,["G2532"]],[8,10,["G2212"]],[10,12,["G2476"]],[12,14,["G2398"]],[14,15,["G1343"]],[15,17,["G3756"]],[17,19,["G5293"]],[19,21,["G3588"]],[21,22,["G1343"]],[22,24,["G2316"]]]},{"k":28192,"v":[[0,1,["G1063"]],[1,2,["G5547"]],[2,5,["G5056"]],[5,8,["G3551"]],[8,9,["G1519"]],[9,10,["G1343"]],[10,13,["G3956"]],[13,15,["G4100"]]]},{"k":28193,"v":[[0,1,["G1063"]],[1,2,["G3475"]],[2,3,["G1125"]],[3,4,["G3588"]],[4,5,["G1343"]],[5,6,["G3588"]],[6,8,["G1537"]],[8,9,["G3588"]],[9,10,["G3551"]],[10,11,["G3754"]],[11,12,["G3588"]],[12,13,["G444"]],[13,15,["G4160"]],[15,17,["G846"]],[17,19,["G2198"]],[19,20,["G1722"]],[20,21,["G846"]]]},{"k":28194,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1343"]],[3,6,["G1537"]],[6,7,["G4102"]],[7,8,["G3004"]],[8,11,["G3779"]],[11,12,["G2036"]],[12,13,["G3361"]],[13,14,["G1722"]],[14,15,["G4675"]],[15,16,["G2588"]],[16,17,["G5101"]],[17,19,["G305"]],[19,20,["G1519"]],[20,21,["G3772"]],[21,23,["G5123"]],[23,27,["G2609","G5547"]],[27,29,[]]]},{"k":28195,"v":[[0,1,["G2228"]],[1,2,["G5101"]],[2,4,["G2597"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G12"]],[7,9,["G5123"]],[9,14,["G321","G5547"]],[14,15,["G1537"]],[15,17,["G3498"]]]},{"k":28196,"v":[[0,1,["G235"]],[1,2,["G5101"]],[2,3,["G3004"]],[3,5,["G3588"]],[5,6,["G4487"]],[6,7,["G2076"]],[7,8,["G1451"]],[8,9,["G4675"]],[9,11,["G1722"]],[11,12,["G4675"]],[12,13,["G4750"]],[13,14,["G2532"]],[14,15,["G1722"]],[15,16,["G4675"]],[16,17,["G2588"]],[17,19,["G5123"]],[19,20,["G3588"]],[20,21,["G4487"]],[21,23,["G4102"]],[23,24,["G3739"]],[24,26,["G2784"]]]},{"k":28197,"v":[[0,1,["G3754"]],[1,2,["G1437"]],[2,5,["G3670"]],[5,6,["G1722"]],[6,7,["G4675"]],[7,8,["G4750"]],[8,10,["G2962"]],[10,11,["G2424"]],[11,12,["G2532"]],[12,14,["G4100"]],[14,15,["G1722"]],[15,16,["G4675"]],[16,17,["G2588"]],[17,18,["G3754"]],[18,19,["G2316"]],[19,21,["G1453"]],[21,22,["G846"]],[22,23,["G1537"]],[23,25,["G3498"]],[25,29,["G4982"]]]},{"k":28198,"v":[[0,1,["G1063"]],[1,4,["G2588"]],[4,6,["G4100"]],[6,7,["G1519"]],[7,8,["G1343"]],[8,9,["G1161"]],[9,12,["G4750"]],[12,15,["G3670"]],[15,16,["G1519"]],[16,17,["G4991"]]]},{"k":28199,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G1124"]],[3,4,["G3004"]],[4,5,["G3956"]],[5,6,["G4100"]],[6,7,["G1909"]],[7,8,["G846"]],[8,10,["G3756"]],[10,12,["G2617"]]]},{"k":28200,"v":[[0,1,["G1063"]],[1,3,["G2076"]],[3,4,["G3756"]],[4,5,["G1293"]],[5,6,["(G5037)"]],[6,8,["G2453"]],[8,9,["G2532"]],[9,11,["G1672"]],[11,12,["G1063"]],[12,13,["G3588"]],[13,14,["G846"]],[14,15,["G2962"]],[15,17,["G3956"]],[17,19,["G4147"]],[19,20,["G1519"]],[20,21,["G3956"]],[21,24,["G1941"]],[24,25,["G846"]]]},{"k":28201,"v":[[0,1,["G1063"]],[1,2,["G3956","G3739","G302"]],[2,5,["G1941"]],[5,6,["G3588"]],[6,7,["G3686"]],[7,10,["G2962"]],[10,13,["G4982"]]]},{"k":28202,"v":[[0,1,["G4459"]],[1,2,["G3767"]],[2,6,["G1941"]],[6,8,["G1519"]],[8,9,["G3739"]],[9,12,["G3756"]],[12,13,["G4100"]],[13,14,["G1161"]],[14,15,["G4459"]],[15,18,["G4100"]],[18,22,["G3739"]],[22,25,["G3756"]],[25,26,["G191"]],[26,27,["G1161"]],[27,28,["G4459"]],[28,31,["G191"]],[31,32,["G5565"]],[32,34,["G2784"]]]},{"k":28203,"v":[[0,1,["G1161"]],[1,2,["G4459"]],[2,5,["G2784"]],[5,6,["G3362"]],[6,9,["G649"]],[9,11,["G2531"]],[11,13,["G1125"]],[13,14,["G5613"]],[14,15,["G5611"]],[15,17,["G3588"]],[17,18,["G4228"]],[18,24,["G2097"]],[24,26,["G1515"]],[26,30,["G2097"]],[30,33,["G18"]]]},{"k":28204,"v":[[0,1,["G235"]],[1,4,["G3756"]],[4,5,["G3956"]],[5,6,["G5219"]],[6,7,["G3588"]],[7,8,["G2098"]],[8,9,["G1063"]],[9,10,["G2268"]],[10,11,["G3004"]],[11,12,["G2962"]],[12,13,["G5101"]],[13,15,["G4100"]],[15,16,["G2257"]],[16,17,["G189"]]]},{"k":28205,"v":[[0,2,["G686"]],[2,3,["G4102"]],[3,5,["G1537"]],[5,6,["G189"]],[6,7,["G1161"]],[7,8,["G189"]],[8,9,["G1223"]],[9,11,["G4487"]],[11,13,["G2316"]]]},{"k":28206,"v":[[0,1,["G235"]],[1,3,["G3004"]],[3,6,["G3378"]],[6,7,["G191"]],[7,9,["G3304"]],[9,10,["G848"]],[10,11,["G5353"]],[11,12,["G1831"]],[12,13,["G1519"]],[13,14,["G3956"]],[14,15,["G3588"]],[15,16,["G1093"]],[16,17,["G2532"]],[17,18,["G848"]],[18,19,["G4487"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G4009"]],[22,24,["G3588"]],[24,25,["G3625"]]]},{"k":28207,"v":[[0,1,["G235"]],[1,3,["G3004"]],[3,5,["G3378"]],[5,6,["G2474"]],[6,7,["G1097"]],[7,8,["G4413"]],[8,9,["G3475"]],[9,10,["G3004"]],[10,11,["G1473"]],[11,16,["G3863","G5209"]],[16,17,["G1909"]],[17,21,["G3756"]],[21,22,["G1484"]],[22,24,["G1909"]],[24,26,["G801"]],[26,27,["G1484"]],[27,30,["G3949"]],[30,31,["G5209"]]]},{"k":28208,"v":[[0,1,["G1161"]],[1,2,["G2268"]],[2,5,["G662"]],[5,6,["G2532"]],[6,7,["G3004"]],[7,10,["G2147"]],[10,14,["G2212"]],[14,15,["G1691"]],[15,16,["G3361"]],[16,19,["G1096"]],[19,20,["G1717"]],[20,26,["G1905","G3361"]],[26,27,["G1691"]]]},{"k":28209,"v":[[0,1,["G1161"]],[1,2,["G4314"]],[2,3,["G2474"]],[3,5,["G3004"]],[5,6,["G3650"]],[6,7,["G2250"]],[7,12,["G1600"]],[12,13,["G3450"]],[13,14,["G5495"]],[14,15,["G4314"]],[15,17,["G544"]],[17,18,["G2532"]],[18,19,["G483"]],[19,20,["G2992"]]]},{"k":28210,"v":[[0,2,["G3004"]],[2,3,["G3767"]],[3,4,["(G3361)"]],[4,5,["G2316"]],[5,7,["G683"]],[7,8,["G848"]],[8,9,["G2992"]],[9,11,["G1096","G3361"]],[11,12,["G1063"]],[12,13,["G1473"]],[13,14,["G2532"]],[14,15,["G1510"]],[15,17,["G2475"]],[17,18,["G1537"]],[18,20,["G4690"]],[20,22,["G11"]],[22,25,["G5443"]],[25,27,["G958"]]]},{"k":28211,"v":[[0,1,["G2316"]],[1,3,["G3756"]],[3,5,["G683"]],[5,6,["G848"]],[6,7,["G2992"]],[7,8,["G3739"]],[8,10,["G4267","(G2228)"]],[10,11,["G1492"]],[11,13,["G3756"]],[13,14,["G5101"]],[14,15,["G3588"]],[15,16,["G1124"]],[16,17,["G3004"]],[17,18,["G1722"]],[18,19,["G2243"]],[19,20,["G5613"]],[20,23,["G1793"]],[23,25,["G2316"]],[25,26,["G2596"]],[26,27,["G2474"]],[27,28,["G3004"]]]},{"k":28212,"v":[[0,1,["G2962"]],[1,4,["G615"]],[4,5,["G4675"]],[5,6,["G4396"]],[6,7,["G2532"]],[7,9,["G2679"]],[9,10,["G4675"]],[10,11,["G2379"]],[11,13,["G2504"]],[13,15,["G5275"]],[15,16,["G3441"]],[16,17,["G2532"]],[17,19,["G2212"]],[19,20,["G3450"]],[20,21,["G5590"]]]},{"k":28213,"v":[[0,1,["G235"]],[1,2,["G5101"]],[2,3,["G3004"]],[3,4,["G3588"]],[4,7,["G5538"]],[7,9,["G846"]],[9,12,["G2641"]],[12,14,["G1683"]],[14,16,["G2035"]],[16,17,["G435"]],[17,18,["G3748"]],[18,20,["G3756"]],[20,21,["G2578"]],[21,23,["G1119"]],[23,28,["G896"]]]},{"k":28214,"v":[[0,2,["G3779"]],[2,3,["G3767"]],[3,4,["G1722"]],[4,6,["G3568"]],[6,7,["G2540"]],[7,8,["G2532"]],[8,10,["G1096"]],[10,12,["G3005"]],[12,13,["G2596"]],[13,16,["G1589"]],[16,18,["G5485"]]]},{"k":28215,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G5485"]],[4,9,["G3765"]],[9,10,["G1537"]],[10,11,["G2041"]],[11,12,["G1893"]],[12,13,["G5485"]],[13,14,["G1096"]],[14,16,["G3765"]],[16,17,["G5485"]],[17,18,["G1161"]],[18,19,["G1487"]],[19,22,["G1537"]],[22,23,["G2041"]],[23,25,["G2076"]],[25,28,["G3765"]],[28,29,["G5485"]],[29,30,["G1893"]],[30,31,["G2041"]],[31,32,["G2076"]],[32,34,["G3765"]],[34,35,["G2041"]]]},{"k":28216,"v":[[0,1,["G5101"]],[1,2,["G3767"]],[2,3,["G2474"]],[3,4,["(G5127)"]],[4,5,["G3756"]],[5,6,["G2013"]],[6,8,["G3739"]],[8,11,["G1934"]],[11,12,["G1161"]],[12,13,["G3588"]],[13,14,["G1589"]],[14,16,["G2013"]],[16,18,["G1161"]],[18,19,["G3588"]],[19,20,["G3062"]],[20,22,["G4456"]]]},{"k":28217,"v":[[0,2,["G2531"]],[2,5,["G1125"]],[5,6,["G2316"]],[6,8,["G1325"]],[8,9,["G846"]],[9,11,["G4151"]],[11,13,["G2659"]],[13,14,["G3788"]],[14,18,["G3361"]],[18,19,["G991"]],[19,20,["G2532"]],[20,21,["G3775"]],[21,25,["G3361"]],[25,26,["G191"]],[26,27,["G2193"]],[27,28,["G4594"]],[28,29,["G2250"]]]},{"k":28218,"v":[[0,1,["G2532"]],[1,2,["G1138"]],[2,3,["G3004"]],[3,5,["G848"]],[5,6,["G5132"]],[6,8,["G1096"]],[8,9,["(G1519)"]],[9,10,["G3803"]],[10,11,["G2532"]],[11,12,["(G1519)"]],[12,13,["G2339"]],[13,14,["G2532"]],[14,15,["(G1519)"]],[15,16,["G4625"]],[16,17,["G2532"]],[17,18,["(G1519)"]],[18,19,["G468"]],[19,21,["G846"]]]},{"k":28219,"v":[[0,2,["G848"]],[2,3,["G3788"]],[3,5,["G4654"]],[5,9,["G3361"]],[9,10,["G991"]],[10,11,["G2532"]],[11,13,["G4781"]],[13,14,["G848"]],[14,15,["G3577"]],[15,16,["G1275"]]]},{"k":28220,"v":[[0,2,["G3004"]],[2,3,["G3767"]],[3,5,["(G3361)"]],[5,6,["G4417"]],[6,7,["G2443"]],[7,10,["G4098"]],[10,12,["G1096","G3361"]],[12,13,["G235"]],[13,16,["G848"]],[16,17,["G3900"]],[17,18,["G4991"]],[18,22,["G3588"]],[22,23,["G1484"]],[23,29,["G3863","G846"]]]},{"k":28221,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G3900"]],[4,6,["G848"]],[6,9,["G4149"]],[9,12,["G2889"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G2275"]],[15,17,["G848"]],[17,19,["G4149"]],[19,22,["G1484"]],[22,24,["G4214"]],[24,25,["G3123"]],[25,26,["G848"]],[26,27,["G4138"]]]},{"k":28222,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,5,["G5213"]],[5,6,["G1484"]],[6,8,["G1909","G3745","G3303"]],[8,9,["G1473"]],[9,10,["G1510"]],[10,12,["G652"]],[12,15,["G1484"]],[15,17,["G1392"]],[17,18,["G3450"]],[18,19,["G1248"]]]},{"k":28223,"v":[[0,1,["G1487"]],[1,4,["G4459"]],[4,9,["G3863"]],[9,13,["G3450"]],[13,14,["G4561"]],[14,15,["G2532"]],[15,17,["G4982"]],[17,18,["G5100"]],[18,19,["G1537"]],[19,20,["G846"]]]},{"k":28224,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,5,["G580"]],[5,7,["G846"]],[7,10,["G2643"]],[10,13,["G2889"]],[13,14,["G5101"]],[14,16,["G3588"]],[16,17,["G4356"]],[17,21,["G1508"]],[21,22,["G2222"]],[22,23,["G1537"]],[23,25,["G3498"]]]},{"k":28225,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G536"]],[4,6,["G40"]],[6,7,["G3588"]],[7,8,["G5445"]],[8,10,["G2532"]],[10,12,["G2532"]],[12,13,["G1487"]],[13,14,["G3588"]],[14,15,["G4491"]],[15,17,["G40"]],[17,18,["G2532"]],[18,20,["G3588"]],[20,21,["G2798"]]]},{"k":28226,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5100"]],[3,5,["G3588"]],[5,6,["G2798"]],[6,9,["G1575"]],[9,10,["G1161"]],[10,11,["G4771"]],[11,12,["G5607"]],[12,16,["G65"]],[16,19,["G1461"]],[19,20,["G1722"]],[20,21,["G846"]],[21,22,["G2532"]],[22,24,["(G1096)"]],[24,25,["G4791"]],[25,27,["G3588"]],[27,28,["G4491"]],[28,29,["G2532"]],[29,30,["G4096"]],[30,32,["G3588"]],[32,34,["G1636"]]]},{"k":28227,"v":[[0,3,["G2620","G3361"]],[3,4,["G3588"]],[4,5,["G2798"]],[5,6,["G1161"]],[6,7,["G1487"]],[7,9,["G2620"]],[9,10,["G4771"]],[10,11,["G941"]],[11,12,["G3756"]],[12,13,["G3588"]],[13,14,["G4491"]],[14,15,["G235"]],[15,16,["G3588"]],[16,17,["G4491"]],[17,18,["G4571"]]]},{"k":28228,"v":[[0,3,["G2046"]],[3,4,["G3767"]],[4,5,["G3588"]],[5,6,["G2798"]],[6,9,["G1575"]],[9,10,["G2443"]],[10,11,["G1473"]],[11,15,["G1461"]]]},{"k":28229,"v":[[0,1,["G2573"]],[1,4,["G570"]],[4,8,["G1575"]],[8,9,["G1161"]],[9,10,["G4771"]],[10,11,["G2476"]],[11,13,["G4102"]],[13,16,["G5309","G3361"]],[16,17,["G235"]],[17,18,["G5399"]]]},{"k":28230,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G2316"]],[3,4,["G5339"]],[4,5,["G3756"]],[5,6,["G3588"]],[6,7,["G2596","G5449"]],[7,8,["G2798"]],[8,11,["G3381"]],[11,14,["G5339"]],[14,15,["G3761"]],[15,16,["G4675"]]]},{"k":28231,"v":[[0,1,["G1492"]],[1,2,["G3767"]],[2,4,["G5544"]],[4,5,["G2532"]],[5,6,["G663"]],[6,8,["G2316"]],[8,9,["G1909","(G3303)"]],[9,12,["G4098"]],[12,13,["G663"]],[13,14,["G1161"]],[14,15,["G1909"]],[15,16,["G4571"]],[16,17,["G5544"]],[17,18,["G1437"]],[18,21,["G1961"]],[21,23,["G5544"]],[23,24,["G1893"]],[24,25,["G4771"]],[25,26,["G2532"]],[26,30,["G1581"]]]},{"k":28232,"v":[[0,1,["G1161"]],[1,2,["G1565"]],[2,3,["G2532"]],[3,7,["G3362","G1961"]],[7,10,["G570"]],[10,14,["G1461"]],[14,15,["G1063"]],[15,16,["G2316"]],[16,17,["G2076"]],[17,18,["G1415"]],[18,22,["G1461","G846"]],[22,23,["G3825"]]]},{"k":28233,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G4771"]],[3,5,["G1581"]],[5,6,["G1537"]],[6,8,["G3588"]],[8,13,["G65"]],[13,14,["G2596"]],[14,15,["G5449"]],[15,16,["G2532"]],[16,18,["G1461"]],[18,19,["G3844"]],[19,21,["G5449"]],[21,22,["G1519"]],[22,26,["G2565"]],[26,28,["G4214"]],[28,29,["G3123"]],[29,31,["G3778"]],[31,32,["G3588"]],[32,35,["G2596","G5449"]],[35,39,["G1461"]],[39,41,["G2398"]],[41,43,["G1636"]]]},{"k":28234,"v":[[0,1,["G1063"]],[1,3,["G2309"]],[3,4,["G3756"]],[4,5,["G80"]],[5,7,["G5209"]],[7,10,["G50"]],[10,12,["G5124"]],[12,13,["G3466"]],[13,14,["G3363"]],[14,17,["G5600"]],[17,18,["G5429"]],[18,19,["G3844"]],[19,22,["G1438"]],[22,23,["G3754"]],[23,24,["G4457"]],[24,25,["G575"]],[25,26,["G3313"]],[26,28,["G1096"]],[28,30,["G2474"]],[30,31,["G891","G3757"]],[31,32,["G3588"]],[32,33,["G4138"]],[33,35,["G3588"]],[35,36,["G1484"]],[36,39,["G1525"]]]},{"k":28235,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,3,["G3956"]],[3,4,["G2474"]],[4,7,["G4982"]],[7,8,["G2531"]],[8,11,["G1125"]],[11,14,["G2240"]],[14,16,["G1537"]],[16,17,["G4622"]],[17,18,["G3588"]],[18,19,["G4506"]],[19,20,["G2532"]],[20,23,["G654"]],[23,24,["G763"]],[24,25,["G575"]],[25,26,["G2384"]]]},{"k":28236,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["(G3844)"]],[3,4,["G1700"]],[4,5,["G1242"]],[5,7,["G846"]],[7,8,["G3752"]],[8,12,["G851"]],[12,13,["G848"]],[13,14,["G266"]]]},{"k":28237,"v":[[0,2,["G2596","(G3303)"]],[2,3,["G3588"]],[3,4,["G2098"]],[4,7,["G2190"]],[7,10,["G1223","G5209"]],[10,11,["G1161"]],[11,13,["G2596"]],[13,14,["G3588"]],[14,15,["G1589"]],[15,18,["G27"]],[18,22,["G1223","G3588","G3962"]]]},{"k":28238,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G5486"]],[3,4,["G2532"]],[4,5,["G2821"]],[5,7,["G2316"]],[7,10,["G278"]]]},{"k":28239,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G5210"]],[3,6,["G4218"]],[6,7,["(G2532)"]],[7,9,["G544"]],[9,10,["G2316"]],[10,11,["G1161"]],[11,13,["G3568"]],[13,15,["G1653"]],[15,17,["G5130"]],[17,18,["G543"]]]},{"k":28240,"v":[[0,2,["G3779"]],[2,4,["G3778"]],[4,5,["G2532"]],[5,6,["G3568"]],[6,8,["G544"]],[8,9,["G2443"]],[9,11,["G5212"]],[11,12,["G1656"]],[12,13,["G846"]],[13,14,["G2532"]],[14,17,["G1653"]]]},{"k":28241,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,4,["G4788"]],[4,6,["G3956"]],[6,7,["G1519"]],[7,8,["G543"]],[8,9,["G2443"]],[9,13,["G1653"]],[13,15,["G3956"]]]},{"k":28242,"v":[[0,1,["G5599"]],[1,3,["G899"]],[3,6,["G4149"]],[6,7,["G2532"]],[7,10,["G4678"]],[10,11,["G2532"]],[11,12,["G1108"]],[12,14,["G2316"]],[14,15,["G5613"]],[15,16,["G419"]],[16,18,["G848"]],[18,19,["G2917"]],[19,20,["G2532"]],[20,21,["G848"]],[21,22,["G3598"]],[22,25,["G421"]]]},{"k":28243,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,4,["G1097"]],[4,6,["G3563"]],[6,9,["G2962"]],[9,10,["G2228"]],[10,11,["G5101"]],[11,13,["G1096"]],[13,14,["G848"]],[14,15,["G4825"]]]},{"k":28244,"v":[[0,1,["G2228"]],[1,2,["G5101"]],[2,5,["G4272"]],[5,7,["G846"]],[7,8,["G2532"]],[8,12,["G467"]],[12,14,["G846"]],[14,15,[]]]},{"k":28245,"v":[[0,1,["G3754"]],[1,2,["G1537"]],[2,3,["G846"]],[3,4,["G2532"]],[4,5,["G1223"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G1519"]],[8,9,["G846"]],[9,12,["G3956"]],[12,14,["G846"]],[14,16,["G1391"]],[16,18,["G1519","G165"]],[18,19,["G281"]]]},{"k":28246,"v":[[0,2,["G3870"]],[2,3,["G5209"]],[3,4,["G3767"]],[4,5,["G80"]],[5,6,["G1223"]],[6,7,["G3588"]],[7,8,["G3628"]],[8,10,["G2316"]],[10,13,["G3936"]],[13,14,["G5216"]],[14,15,["G4983"]],[15,17,["G2198"]],[17,18,["G2378"]],[18,19,["G40"]],[19,20,["G2101"]],[20,22,["G2316"]],[22,25,["G5216"]],[25,26,["G3050"]],[26,27,["G2999"]]]},{"k":28247,"v":[[0,1,["G2532"]],[1,3,["G3361"]],[3,4,["G4964"]],[4,6,["G5129"]],[6,7,["G165"]],[7,8,["G235"]],[8,11,["G3339"]],[11,13,["G3588"]],[13,14,["G342"]],[14,16,["G5216"]],[16,17,["G3563"]],[17,19,["G5209"]],[19,21,["G1381"]],[21,22,["G5101"]],[22,25,["G18"]],[25,26,["G2532"]],[26,27,["G2101"]],[27,28,["G2532"]],[28,29,["G5046"]],[29,30,["G2307"]],[30,32,["G2316"]]]},{"k":28248,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,4,["G1223"]],[4,5,["G3588"]],[5,6,["G5485"]],[6,7,["G1325"]],[7,9,["G3427"]],[9,12,["G3956"]],[12,14,["G5607"]],[14,15,["G1722"]],[15,16,["G5213"]],[16,17,["G3361"]],[17,24,["G5252","G3844","G3739"]],[24,26,["G1163"]],[26,28,["G5426"]],[28,29,["G235"]],[29,31,["G5426"]],[31,32,["G4993"]],[32,34,["G5613"]],[34,35,["G2316"]],[35,37,["G3307"]],[37,40,["G1538"]],[40,42,["G3358"]],[42,44,["G4102"]]]},{"k":28249,"v":[[0,1,["G1063"]],[1,2,["G2509"]],[2,4,["G2192"]],[4,5,["G4183"]],[5,6,["G3196"]],[6,7,["G1722"]],[7,8,["G1520"]],[8,9,["G4983"]],[9,10,["G1161"]],[10,11,["G3956"]],[11,12,["G3196"]],[12,13,["G2192"]],[13,14,["G3756"]],[14,15,["G3588"]],[15,16,["G846"]],[16,17,["G4234"]]]},{"k":28250,"v":[[0,1,["G3779"]],[1,4,["G4183"]],[4,5,["G2070"]],[5,6,["G1520"]],[6,7,["G4983"]],[7,8,["G1722"]],[8,9,["G5547"]],[9,10,["G1161"]],[10,11,["G2596"]],[11,12,["G1520"]],[12,13,["G3196"]],[13,16,["G240"]]]},{"k":28251,"v":[[0,1,["G2192"]],[1,2,["G1161"]],[2,3,["G5486"]],[3,4,["G1313"]],[4,5,["G2596"]],[5,7,["G3588"]],[7,8,["G5485"]],[8,11,["G1325"]],[11,13,["G2254"]],[13,14,["G1535"]],[14,15,["G4394"]],[15,19,["G2596"]],[19,21,["G3588"]],[21,22,["G356"]],[22,24,["G4102"]]]},{"k":28252,"v":[[0,1,["G1535"]],[1,2,["G1248"]],[2,6,["G1722"]],[6,8,["G1248"]],[8,9,["G1535"]],[9,12,["G1321"]],[12,13,["G1722"]],[13,14,["G1319"]]]},{"k":28253,"v":[[0,1,["G1535"]],[1,4,["G3870"]],[4,5,["G1722"]],[5,6,["G3874"]],[6,9,["G3330"]],[9,14,["G1722"]],[14,15,["G572"]],[15,18,["G4291"]],[18,19,["G1722"]],[19,20,["G4710"]],[20,24,["G1653"]],[24,25,["G1722"]],[25,26,["G2432"]]]},{"k":28254,"v":[[0,2,["G26"]],[2,5,["G505"]],[5,6,["G655"]],[6,10,["G4190"]],[10,11,["G2853"]],[11,16,["G18"]]]},{"k":28255,"v":[[0,3,["G5387"]],[3,6,["G240","G1519"]],[6,9,["G5360"]],[9,11,["G5092"]],[11,12,["G4285"]],[12,14,["G240"]]]},{"k":28256,"v":[[0,1,["G3361"]],[1,2,["G3636"]],[2,4,["G4710"]],[4,5,["G2204"]],[5,7,["G4151"]],[7,8,["G1398"]],[8,9,["G3588"]],[9,10,["G2962"]]]},{"k":28257,"v":[[0,1,["G5463"]],[1,3,["G1680"]],[3,4,["G5278"]],[4,6,["G2347"]],[6,8,["G4342"]],[8,10,["G4335"]]]},{"k":28258,"v":[[0,1,["G2841"]],[1,3,["G3588"]],[3,4,["G5532"]],[4,6,["G40"]],[6,8,["G1377"]],[8,9,["G5381"]]]},{"k":28259,"v":[[0,1,["G2127"]],[1,4,["G1377"]],[4,5,["G5209"]],[5,6,["G2127"]],[6,7,["G2532"]],[7,8,["G2672"]],[8,9,["G3361"]]]},{"k":28260,"v":[[0,1,["G5463"]],[1,2,["G3326"]],[2,6,["G5463"]],[6,7,["G2532"]],[7,8,["G2799"]],[8,9,["G3326"]],[9,12,["G2799"]]]},{"k":28261,"v":[[0,3,["G3588"]],[3,4,["G846"]],[4,5,["G5426"]],[5,8,["G240","G1519"]],[8,9,["G5426"]],[9,10,["G3361"]],[10,12,["G5308"]],[12,13,["G235"]],[13,14,["G4879"]],[14,19,["G5011"]],[19,20,["G1096"]],[20,21,["G3361"]],[21,22,["G5429"]],[22,23,["G3844"]],[23,26,["G1438"]]]},{"k":28262,"v":[[0,1,["G591"]],[1,4,["G3367"]],[4,5,["G2556"]],[5,6,["G473"]],[6,7,["G2556"]],[7,8,["G4306"]],[8,10,["G2570"]],[10,13,["G1799"]],[13,15,["G3956"]],[15,16,["G444"]]]},{"k":28263,"v":[[0,1,["G1487"]],[1,4,["G1415"]],[4,10,["G1537","G5216"]],[10,12,["G1514"]],[12,13,["G3326"]],[13,14,["G3956"]],[14,15,["G444"]]]},{"k":28264,"v":[[0,2,["G27"]],[2,3,["G1556"]],[3,4,["G3361"]],[4,5,["G1438"]],[5,6,["G235"]],[6,8,["G1325"]],[8,9,["G5117"]],[9,11,["G3709"]],[11,12,["G1063"]],[12,15,["G1125"]],[15,16,["G1557"]],[16,18,["G1698"]],[18,19,["G1473"]],[19,21,["G467"]],[21,22,["G3004"]],[22,24,["G2962"]]]},{"k":28265,"v":[[0,1,["G3767"]],[1,2,["G1437"]],[2,3,["G4675"]],[3,4,["G2190"]],[4,5,["G3983"]],[5,6,["G5595"]],[6,7,["G846"]],[7,8,["G1437"]],[8,10,["G1372"]],[10,13,["G4222","G846"]],[13,14,["G1063"]],[14,16,["G5124"]],[16,17,["G4160"]],[17,20,["G4987"]],[20,21,["G440"]],[21,23,["G4442"]],[23,24,["G1909"]],[24,25,["G848"]],[25,26,["G2776"]]]},{"k":28266,"v":[[0,2,["G3361"]],[2,3,["G3528"]],[3,4,["G5259"]],[4,5,["G2556"]],[5,6,["G235"]],[6,7,["G3528"]],[7,8,["G2556"]],[8,9,["G1722"]],[9,10,["G18"]]]},{"k":28267,"v":[[0,2,["G3956"]],[2,3,["G5590"]],[3,5,["G5293"]],[5,8,["G5242"]],[8,9,["G1849"]],[9,10,["G1063"]],[10,12,["G2076"]],[12,13,["G3756"]],[13,14,["G1849"]],[14,15,["G1508"]],[15,16,["G575"]],[16,17,["G2316","(G1161)"]],[17,18,["G3588"]],[18,19,["G1849"]],[19,21,["G5607"]],[21,22,["G1526"]],[22,23,["G5021"]],[23,24,["G5259"]],[24,25,["G2316"]]]},{"k":28268,"v":[[0,3,["G498","G5620"]],[3,4,["G3588"]],[4,5,["G1849"]],[5,6,["G436"]],[6,7,["G3588"]],[7,8,["G1296"]],[8,10,["G2316"]],[10,11,["G1161"]],[11,14,["G436"]],[14,16,["G2983"]],[16,18,["G1438"]],[18,19,["G2917"]]]},{"k":28269,"v":[[0,1,["G1063"]],[1,2,["G758"]],[2,3,["G1526"]],[3,4,["G3756"]],[4,6,["G5401"]],[6,8,["G18"]],[8,9,["G2041"]],[9,10,["G235"]],[10,12,["G3588"]],[12,13,["G2556"]],[13,14,["G2309"]],[14,16,["G1161"]],[16,17,["G3361"]],[17,19,["G5399"]],[19,21,["G3588"]],[21,22,["G1849"]],[22,23,["G4160"]],[23,27,["G18"]],[27,28,["G2532"]],[28,31,["G2192"]],[31,32,["G1868"]],[32,33,["G1537"]],[33,35,["G846"]]]},{"k":28270,"v":[[0,1,["G1063"]],[1,3,["G2076"]],[3,5,["G1249"]],[5,7,["G2316"]],[7,9,["G4671"]],[9,10,["G1519"]],[10,11,["G18"]],[11,12,["G1161"]],[12,13,["G1437"]],[13,15,["G4160"]],[15,19,["G2556"]],[19,21,["G5399"]],[21,22,["G1063"]],[22,24,["G5409"]],[24,25,["G3756"]],[25,26,["G3588"]],[26,27,["G3162"]],[27,29,["G1500"]],[29,30,["G1063"]],[30,32,["G2076"]],[32,34,["G1249"]],[34,36,["G2316"]],[36,38,["G1558"]],[38,39,["G1519"]],[39,41,["G3709"]],[41,45,["G4238"]],[45,46,["G2556"]]]},{"k":28271,"v":[[0,1,["G1352"]],[1,4,["G318"]],[4,6,["G5293"]],[6,7,["G3756"]],[7,8,["G3440"]],[8,9,["G1223"]],[9,10,["G3709"]],[10,11,["G235"]],[11,12,["G2532"]],[12,15,["G1223","G4893"]]]},{"k":28272,"v":[[0,1,["G1063"]],[1,4,["G1223","G5124"]],[4,5,["G5055"]],[5,7,["G5411"]],[7,8,["G2532"]],[8,9,["G1063"]],[9,11,["G1526"]],[11,12,["G2316"]],[12,13,["G3011"]],[13,15,["G4342"]],[15,16,["G1519"]],[16,19,["G5124","G846"]]]},{"k":28273,"v":[[0,1,["G591"]],[1,2,["G3767"]],[2,4,["G3956"]],[4,6,["G3782"]],[6,7,["G5411"]],[7,9,["G3588"]],[9,10,["G5411"]],[10,13,["G5056"]],[13,15,["G3588"]],[15,16,["G5056"]],[16,17,["G5401"]],[17,19,["G3588"]],[19,20,["G5401"]],[20,21,["G5092"]],[21,23,["G3588"]],[23,24,["G5092"]]]},{"k":28274,"v":[[0,1,["G3784"]],[1,3,["G3367"]],[3,5,["G3367"]],[5,6,["G1508"]],[6,8,["G25"]],[8,10,["G240"]],[10,11,["G1063"]],[11,14,["G25"]],[14,15,["G2087"]],[15,17,["G4137"]],[17,19,["G3551"]]]},{"k":28275,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,5,["G3756"]],[5,7,["G3431"]],[7,10,["G3756"]],[10,11,["G5407"]],[11,14,["G3756"]],[14,15,["G2813"]],[15,18,["G3756"]],[18,21,["G5576"]],[21,24,["G3756"]],[24,25,["G1937"]],[25,26,["G2532"]],[26,30,["G1536"]],[30,31,["G2087"]],[31,32,["G1785"]],[32,36,["G346"]],[36,37,["G1722"]],[37,38,["G5129"]],[38,39,["G3056"]],[39,40,["G1722","G3588"]],[40,43,["G25"]],[43,44,["G4675"]],[44,45,["G4139"]],[45,46,["G5613"]],[46,47,["G1438"]]]},{"k":28276,"v":[[0,1,["G26"]],[1,2,["G2038"]],[2,3,["G3756"]],[3,4,["G2556"]],[4,7,["G4139"]],[7,8,["G3767"]],[8,9,["G26"]],[9,12,["G4138"]],[12,15,["G3551"]]]},{"k":28277,"v":[[0,1,["G2532"]],[1,2,["G5124"]],[2,3,["G1492"]],[3,4,["G3588"]],[4,5,["G2540"]],[5,6,["G3754"]],[6,7,["G2235"]],[7,11,["G5610"]],[11,12,["(G2248)"]],[12,13,["G1453"]],[13,15,["G1537"]],[15,16,["G5258"]],[16,17,["G1063"]],[17,18,["G3568"]],[18,20,["G2257"]],[20,21,["G4991"]],[21,22,["G1452"]],[22,23,["G2228"]],[23,24,["G3753"]],[24,26,["G4100"]]]},{"k":28278,"v":[[0,1,["G3588"]],[1,2,["G3571"]],[2,5,["G4298","(G1161)"]],[5,6,["G3588"]],[6,7,["G2250"]],[7,10,["G1448"]],[10,13,["G3767"]],[13,15,["G659"]],[15,16,["G3588"]],[16,17,["G2041"]],[17,19,["G4655"]],[19,20,["G2532"]],[20,24,["G1746"]],[24,25,["G3588"]],[25,26,["G3696"]],[26,28,["G5457"]]]},{"k":28279,"v":[[0,3,["G4043"]],[3,4,["G2156"]],[4,5,["G5613"]],[5,6,["G1722"]],[6,8,["G2250"]],[8,9,["G3361"]],[9,11,["G2970"]],[11,12,["G2532"]],[12,13,["G3178"]],[13,14,["G3361"]],[14,16,["G2845"]],[16,17,["G2532"]],[17,18,["G766"]],[18,19,["G3361"]],[19,21,["G2054"]],[21,22,["G2532"]],[22,23,["G2205"]]]},{"k":28280,"v":[[0,1,["G235"]],[1,4,["G1746"]],[4,5,["G3588"]],[5,6,["G2962"]],[6,7,["G2424"]],[7,8,["G5547"]],[8,9,["G2532"]],[9,10,["G4160"]],[10,11,["G3361"]],[11,12,["G4307"]],[12,14,["G3588"]],[14,15,["G4561"]],[15,18,["(G1519)"]],[18,19,["G1939"]],[19,20,[]]]},{"k":28281,"v":[[0,0,["(G1161)"]],[0,4,["G770"]],[4,6,["G3588"]],[6,7,["G4102"]],[7,8,["G4355"]],[8,11,["G3361"]],[11,12,["G1519"]],[12,13,["G1261"]],[13,14,["G1253"]]]},{"k":28282,"v":[[0,2,["G3739","G3303"]],[2,3,["G4100"]],[3,7,["G5315"]],[7,9,["G3956","(G1161)"]],[9,10,["G3588"]],[10,13,["G770"]],[13,14,["G2068"]],[14,15,["G3001"]]]},{"k":28283,"v":[[0,2,["G3361"]],[2,5,["G2068"]],[5,6,["G1848"]],[6,10,["G2068","G3361"]],[10,11,["G2532"]],[11,13,["G3361"]],[13,17,["G2068","G3361"]],[17,18,["G2919"]],[18,21,["G2068"]],[21,22,["G1063"]],[22,23,["G2316"]],[23,25,["G4355"]],[25,26,["G846"]]]},{"k":28284,"v":[[0,1,["G5101"]],[1,2,["G1488"]],[2,3,["G4771"]],[3,5,["G2919"]],[5,7,["G245"]],[7,8,["G3610"]],[8,11,["G2398"]],[11,12,["G2962"]],[12,14,["G4739"]],[14,15,["G2228"]],[15,16,["G4098"]],[16,17,["G1161"]],[17,22,["G2476"]],[22,23,["G1063"]],[23,24,["G2316"]],[24,25,["G2076"]],[25,26,["G1415"]],[26,30,["G2476","G846"]]]},{"k":28285,"v":[[0,2,["G3739","G3303"]],[2,3,["G2919"]],[3,7,["G2250","G3844","G2250","(G1161)"]],[7,8,["G3739"]],[8,9,["G2919"]],[9,10,["G3956"]],[10,11,["G2250"]],[11,15,["G1538"]],[15,18,["G4135"]],[18,19,["G1722"]],[19,21,["G2398"]],[21,22,["G3563"]]]},{"k":28286,"v":[[0,3,["G5426"]],[3,4,["G3588"]],[4,5,["G2250"]],[5,6,["G5426"]],[6,10,["G2962"]],[10,11,["G2532"]],[11,15,["G5426","G3361"]],[15,16,["G3588"]],[16,17,["G2250"]],[17,20,["G2962"]],[20,23,["G3756"]],[23,24,["G5426"]],[24,28,["G2068"]],[28,29,["G2068"]],[29,32,["G2962"]],[32,33,["G1063"]],[33,37,["G2168","G2316"]],[37,38,["G2532"]],[38,42,["G2068","G3361"]],[42,45,["G2962"]],[45,47,["G2068"]],[47,48,["G3756"]],[48,49,["G2532"]],[49,52,["G2168","G2316"]]]},{"k":28287,"v":[[0,1,["G1063"]],[1,2,["G3762"]],[2,4,["G2257"]],[4,5,["G2198"]],[5,7,["G1438"]],[7,8,["G2532"]],[8,10,["G3762"]],[10,11,["G599"]],[11,13,["G1438"]]]},{"k":28288,"v":[[0,1,["G1063"]],[1,2,["G1437"]],[2,3,["(G5037)"]],[3,4,["G2198"]],[4,6,["G2198"]],[6,8,["G3588"]],[8,9,["G2962"]],[9,10,["G5037"]],[10,11,["G1437"]],[11,13,["G599"]],[13,15,["G599"]],[15,17,["G3588"]],[17,18,["G2962","(G5037)"]],[18,19,["G1437"]],[19,21,["G2198"]],[21,22,["G3767"]],[22,23,["G5037","(G1437)"]],[23,24,["G599"]],[24,26,["G2070"]],[26,27,["G3588"]],[27,28,["G2962"]]]},{"k":28289,"v":[[0,1,["G1063"]],[1,2,["G1519"]],[2,4,["G5124"]],[4,5,["G5547"]],[5,6,["G2532"]],[6,7,["G599"]],[7,8,["G2532"]],[8,9,["G450"]],[9,10,["G2532"]],[10,11,["G326"]],[11,12,["G2443"]],[12,16,["G2961"]],[16,17,["G2532"]],[17,20,["G3498"]],[20,21,["G2532"]],[21,22,["G2198"]]]},{"k":28290,"v":[[0,1,["G1161"]],[1,2,["G5101"]],[2,4,["G4771"]],[4,5,["G2919"]],[5,6,["G4675"]],[6,7,["G80"]],[7,8,["G2228","(G2532)"]],[8,9,["G5101"]],[9,11,["G4771"]],[11,14,["G1848"]],[14,15,["G4675"]],[15,16,["G80"]],[16,17,["G1063"]],[17,20,["G3956"]],[20,22,["G3936"]],[22,23,["G3588"]],[23,25,["G968"]],[25,27,["G5547"]]]},{"k":28291,"v":[[0,1,["G1063"]],[1,4,["G1125"]],[4,6,["G1473"]],[6,7,["G2198"]],[7,8,["G3004"]],[8,10,["G2962","(G3754)"]],[10,11,["G3956"]],[11,12,["G1119"]],[12,14,["G2578"]],[14,16,["G1698"]],[16,17,["G2532"]],[17,18,["G3956"]],[18,19,["G1100"]],[19,21,["G1843"]],[21,23,["G2316"]]]},{"k":28292,"v":[[0,1,["G686"]],[1,2,["G3767"]],[2,4,["G1538"]],[4,6,["G2257"]],[6,8,["G1325"]],[8,9,["G3056"]],[9,10,["G4012"]],[10,11,["G1438"]],[11,13,["G2316"]]]},{"k":28293,"v":[[0,5,["G2919","G3767"]],[5,7,["G240"]],[7,9,["G3371"]],[9,10,["G235"]],[10,11,["G2919"]],[11,12,["G5124"]],[12,13,["G3123"]],[13,16,["G3361"]],[16,17,["G5087"]],[17,19,["G4348"]],[19,20,["G2228"]],[20,24,["G4625"]],[24,27,["G80"]],[27,28,[]]]},{"k":28294,"v":[[0,2,["G1492"]],[2,3,["G2532"]],[3,5,["G3982"]],[5,6,["G1722"]],[6,8,["G2962"]],[8,9,["G2424"]],[9,10,["G3754"]],[10,13,["G3762"]],[13,14,["G2839"]],[14,15,["G1223"]],[15,16,["G1438"]],[16,17,["G1508"]],[17,21,["G3049"]],[21,23,["G5100"]],[23,25,["G1511"]],[25,26,["G2839"]],[26,28,["G1565"]],[28,31,["G2839"]]]},{"k":28295,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G4675"]],[3,4,["G80"]],[4,6,["G3076"]],[6,7,["G1223"]],[7,9,["G1033"]],[9,13,["G3765","G4043"]],[13,14,["G2596","G26"]],[14,15,["G622"]],[15,16,["G3361"]],[16,17,["G1565"]],[17,19,["G4675"]],[19,20,["G1033"]],[20,21,["G5228"]],[21,22,["G3739"]],[22,23,["G5547"]],[23,24,["G599"]]]},{"k":28296,"v":[[0,2,["G3361"]],[2,3,["G3767"]],[3,4,["G5216"]],[4,5,["G18"]],[5,9,["G987"]]]},{"k":28297,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G932"]],[3,5,["G2316"]],[5,6,["G2076"]],[6,7,["G3756"]],[7,8,["G1035"]],[8,9,["G2532"]],[9,10,["G4213"]],[10,11,["G235"]],[11,12,["G1343"]],[12,13,["G2532"]],[13,14,["G1515"]],[14,15,["G2532"]],[15,16,["G5479"]],[16,17,["G1722"]],[17,19,["G40"]],[19,20,["G4151"]]]},{"k":28298,"v":[[0,1,["G1063"]],[1,4,["G1722"]],[4,6,["G5125"]],[6,7,["G1398"]],[7,8,["G5547"]],[8,10,["G2101"]],[10,12,["G2316"]],[12,13,["G2532"]],[13,14,["G1384"]],[14,16,["G444"]]]},{"k":28299,"v":[[0,0,["(G686)"]],[0,5,["G1377","G3767"]],[5,7,["G3588"]],[7,11,["G1515"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,17,["G3619","(G1519)"]],[17,18,["G240"]]]},{"k":28300,"v":[[0,1,["G1752"]],[1,2,["G1033"]],[2,3,["G2647"]],[3,4,["G3361"]],[4,5,["G3588"]],[5,6,["G2041"]],[6,8,["G2316"]],[8,10,["G3956"]],[10,11,["G3303"]],[11,13,["G2513"]],[13,14,["G235"]],[14,17,["G2556"]],[17,20,["G444"]],[20,22,["G2068"]],[22,23,["G1223"]],[23,24,["G4348"]]]},{"k":28301,"v":[[0,3,["G2570"]],[3,4,["G3361"]],[4,6,["G5315"]],[6,7,["G2907"]],[7,8,["G3366"]],[8,10,["G4095"]],[10,11,["G3631"]],[11,12,["G3366"]],[12,15,["G1722","G3739"]],[15,16,["G4675"]],[16,17,["G80"]],[17,18,["G4350"]],[18,19,["G2228"]],[19,21,["G4624"]],[21,22,["G2228"]],[22,25,["G770"]]]},{"k":28302,"v":[[0,1,["G2192"]],[1,2,["G4771"]],[2,3,["G4102"]],[3,4,["G2192"]],[4,6,["G2596"]],[6,7,["G4572"]],[7,8,["G1799"]],[8,9,["G2316"]],[9,10,["G3107"]],[10,14,["G2919"]],[14,15,["G3361"]],[15,16,["G1438"]],[16,17,["G1722"]],[17,20,["G3739"]],[20,22,["G1381"]]]},{"k":28303,"v":[[0,1,["G1161"]],[1,4,["G1252"]],[4,6,["G2632"]],[6,7,["G1437"]],[7,9,["G5315"]],[9,10,["G3754"]],[10,13,["G3756"]],[13,14,["G1537"]],[14,15,["G4102"]],[15,16,["G1161"]],[16,17,["G3956","G3739"]],[17,19,["G3756"]],[19,20,["G1537"]],[20,21,["G4102"]],[21,22,["G2076"]],[22,23,["G266"]]]},{"k":28304,"v":[[0,1,["G2249"]],[1,2,["G1161"]],[2,5,["G1415"]],[5,6,["G3784"]],[6,8,["G941"]],[8,9,["G3588"]],[9,10,["G771"]],[10,12,["G3588"]],[12,13,["G102"]],[13,14,["G2532"]],[14,15,["G3361"]],[15,17,["G700"]],[17,18,["G1438"]]]},{"k":28305,"v":[[0,1,["(G1063)"]],[1,3,["G1538"]],[3,5,["G2257"]],[5,6,["G700"]],[6,8,["G4139"]],[8,9,["G1519"]],[9,11,["G18"]],[11,12,["G4314"]],[12,13,["G3619"]]]},{"k":28306,"v":[[0,1,["G1063"]],[1,2,["G2532"]],[2,3,["G5547"]],[3,4,["G700"]],[4,5,["G3756"]],[5,6,["G1438"]],[6,7,["G235"]],[7,8,["G2531"]],[8,11,["G1125"]],[11,12,["G3588"]],[12,13,["G3680"]],[13,17,["G3679"]],[17,18,["G4571"]],[18,19,["G1968"]],[19,20,["G1909"]],[20,21,["G1691"]]]},{"k":28307,"v":[[0,1,["G1063"]],[1,3,["G3745"]],[3,6,["G4270"]],[6,8,["G4270"]],[8,9,["G1519"]],[9,10,["G2251"]],[10,11,["G1319"]],[11,12,["G2443"]],[12,14,["G1223"]],[14,15,["G5281"]],[15,16,["G2532"]],[16,17,["G3874"]],[17,19,["G3588"]],[19,20,["G1124"]],[20,22,["G2192"]],[22,23,["G1680"]]]},{"k":28308,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2316"]],[3,5,["G5281"]],[5,6,["G2532"]],[6,7,["G3874"]],[7,8,["G1325"]],[8,9,["G5213"]],[9,12,["G5426","G846"]],[12,15,["G240","G1722"]],[15,16,["G2596"]],[16,18,["G5547"]],[18,19,["G2424"]]]},{"k":28309,"v":[[0,1,["G2443"]],[1,6,["G3661"]],[6,7,["(G1722)"]],[7,8,["G1520"]],[8,9,["G4750"]],[9,10,["G1392"]],[10,11,["G2316"]],[11,12,["G2532"]],[12,14,["G3962"]],[14,16,["G2257"]],[16,17,["G2962"]],[17,18,["G2424"]],[18,19,["G5547"]]]},{"k":28310,"v":[[0,1,["G1352"]],[1,2,["G4355"]],[2,5,["G240"]],[5,6,["G2531"]],[6,7,["G5547"]],[7,8,["G2532"]],[8,9,["G4355"]],[9,10,["G2248"]],[10,11,["G1519"]],[11,13,["G1391"]],[13,15,["G2316"]]]},{"k":28311,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,7,["G1096"]],[7,9,["G1249"]],[9,12,["G4061"]],[12,13,["G5228"]],[13,15,["G225"]],[15,17,["G2316"]],[17,19,["G950"]],[19,20,["G3588"]],[20,21,["G1860"]],[21,24,["G3588"]],[24,25,["G3962"]]]},{"k":28312,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1484"]],[4,6,["G1392"]],[6,7,["G2316"]],[7,8,["G5228"]],[8,10,["G1656"]],[10,11,["G2531"]],[11,14,["G1125"]],[14,17,["G1223","G5124"]],[17,20,["G1843"]],[20,22,["G4671"]],[22,23,["G1722"]],[23,25,["G1484"]],[25,26,["G2532"]],[26,27,["G5567"]],[27,29,["G4675"]],[29,30,["G3686"]]]},{"k":28313,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,4,["G3004"]],[4,5,["G2165"]],[5,7,["G1484"]],[7,8,["G3326"]],[8,9,["G848"]],[9,10,["G2992"]]]},{"k":28314,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,3,["G134"]],[3,4,["G3588"]],[4,5,["G2962"]],[5,6,["G3956"]],[6,8,["G1484"]],[8,9,["G2532"]],[9,10,["G1867"]],[10,11,["G846"]],[11,12,["G3956"]],[12,14,["G2992"]]]},{"k":28315,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,3,["G2268"]],[3,4,["G3004"]],[4,7,["G2071"]],[7,9,["G4491"]],[9,11,["G2421"]],[11,12,["G2532"]],[12,16,["G450"]],[16,19,["G757"]],[19,21,["G1484"]],[21,22,["G1909"]],[22,23,["G846"]],[23,26,["G1484"]],[26,27,["G1679"]]]},{"k":28316,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2316"]],[3,5,["G1680"]],[5,6,["G4137"]],[6,7,["G5209"]],[7,9,["G3956"]],[9,10,["G5479"]],[10,11,["G2532"]],[11,12,["G1515"]],[12,14,["G4100"]],[14,16,["G5209"]],[16,18,["G4052"]],[18,19,["G1722"]],[19,20,["G1680"]],[20,21,["G1722"]],[21,23,["G1411"]],[23,26,["G40"]],[26,27,["G4151"]]]},{"k":28317,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G848"]],[3,4,["G2532"]],[4,6,["G3982"]],[6,7,["G4012"]],[7,8,["G5216"]],[8,9,["G3450"]],[9,10,["G80"]],[10,11,["G3754"]],[11,12,["G848"]],[12,13,["G2532"]],[13,14,["G2075"]],[14,15,["G3324"]],[15,17,["G19"]],[17,18,["G4137"]],[18,20,["G3956"]],[20,21,["G1108"]],[21,22,["G1410"]],[22,23,["G2532"]],[23,25,["G3560"]],[25,27,["G240"]]]},{"k":28318,"v":[[0,1,["G1161"]],[1,2,["G80"]],[2,5,["G1125"]],[5,8,["G5112"]],[8,10,["G5213"]],[10,13,["G575","G3313"]],[13,14,["G5613"]],[14,18,["G1878","G5209"]],[18,19,["G1223"]],[19,21,["G3588"]],[21,22,["G5485"]],[22,25,["G1325"]],[25,27,["G3427"]],[27,28,["G5259"]],[28,29,["G2316"]]]},{"k":28319,"v":[[0,3,["G3165"]],[3,4,["G1511"]],[4,6,["G3011"]],[6,8,["G2424"]],[8,9,["G5547"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G1484"]],[12,13,["G2418"]],[13,14,["G3588"]],[14,15,["G2098"]],[15,17,["G2316"]],[17,18,["G2443"]],[18,19,["G3588"]],[19,21,["G4376"]],[21,23,["G3588"]],[23,24,["G1484"]],[24,26,["G1096"]],[26,27,["G2144"]],[27,29,["G37"]],[29,30,["G1722"]],[30,32,["G40"]],[32,33,["G4151"]]]},{"k":28320,"v":[[0,2,["G2192"]],[2,3,["G3767"]],[3,7,["G2746"]],[7,8,["G1722"]],[8,9,["G2424"]],[9,10,["G5547"]],[10,15,["G4314"]],[15,17,["G2316"]]]},{"k":28321,"v":[[0,1,["G1063"]],[1,4,["G3756"]],[4,5,["G5111"]],[5,7,["G2980"]],[7,9,["G5100"]],[9,12,["G3739"]],[12,14,["G5547"]],[14,16,["G3756"]],[16,17,["G2716"]],[17,18,["G1223"]],[18,19,["G1700"]],[19,20,["G1519"]],[20,24,["G5218","G1484"]],[24,26,["G3056"]],[26,27,["G2532"]],[27,28,["G2041"]]]},{"k":28322,"v":[[0,1,["G1722"]],[1,2,["G1411"]],[2,3,["G4592"]],[3,4,["G2532"]],[4,5,["G5059"]],[5,6,["G1722"]],[6,8,["G1411"]],[8,11,["G4151"]],[11,13,["G2316"]],[13,15,["G5620"]],[15,16,["G575"]],[16,17,["G2419"]],[17,18,["G2532"]],[18,20,["G2945"]],[20,21,["G3360"]],[21,22,["G2437"]],[22,23,["G3165"]],[23,26,["G4137"]],[26,27,["G3588"]],[27,28,["G2098"]],[28,30,["G5547"]]]},{"k":28323,"v":[[0,1,["G1161"]],[1,2,["G3779"]],[2,5,["G5389"]],[5,9,["G2097"]],[9,10,["G3756"]],[10,11,["G3699"]],[11,12,["G5547"]],[12,14,["G3687"]],[14,15,["G3363"]],[15,18,["G3618"]],[18,19,["G1909"]],[19,21,["G245"]],[21,22,["G2310"]]]},{"k":28324,"v":[[0,1,["G235"]],[1,2,["G2531"]],[2,5,["G1125"]],[5,7,["G3739"]],[7,10,["G3756"]],[10,11,["G312"]],[11,12,["G4012"]],[12,13,["(G846)"]],[13,15,["G3700"]],[15,16,["G2532"]],[16,17,["G3739"]],[17,20,["G3756"]],[20,21,["G191"]],[21,23,["G4920"]]]},{"k":28325,"v":[[0,3,["G1352"]],[3,4,["G2532"]],[4,8,["G4183"]],[8,9,["G1465"]],[9,11,["G2064"]],[11,12,["G4314"]],[12,13,["G5209"]]]},{"k":28326,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,3,["G2192"]],[3,5,["G3371"]],[5,6,["G5117"]],[6,7,["G1722"]],[7,8,["G5125"]],[8,9,["G2824"]],[9,10,["G1161"]],[10,11,["G2192"]],[11,14,["G1974"]],[14,15,["(G575)"]],[15,16,["G4183"]],[16,17,["G2094"]],[17,19,["G2064"]],[19,20,["G4314"]],[20,21,["G5209"]]]},{"k":28327,"v":[[0,1,["G5613","G1437"]],[1,5,["G4198"]],[5,6,["G1519"]],[6,7,["G4681"]],[7,10,["G2064"]],[10,11,["G4314"]],[11,12,["G5209"]],[12,13,["G1063"]],[13,15,["G1679"]],[15,17,["G2300"]],[17,18,["G5209"]],[18,21,["G1279"]],[21,22,["G2532"]],[22,28,["G4311"]],[28,29,["G1563"]],[29,30,["G5259"]],[30,31,["G5216"]],[31,32,["G1437"]],[32,33,["G4412"]],[33,36,["G575","G3313"]],[36,37,["G1705"]],[37,39,["G5216"]],[39,40,[]]]},{"k":28328,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,4,["G4198"]],[4,5,["G1519"]],[5,6,["G2419"]],[6,9,["G1247"]],[9,10,["G3588"]],[10,11,["G40"]]]},{"k":28329,"v":[[0,1,["G1063"]],[1,4,["G2106"]],[4,7,["G3109"]],[7,8,["G2532"]],[8,9,["G882"]],[9,11,["G4160"]],[11,13,["G5100"]],[13,14,["G2842"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G4434"]],[17,18,["G40"]],[18,19,["G3588"]],[19,21,["G1722"]],[21,22,["G2419"]]]},{"k":28330,"v":[[0,3,["G2106"]],[3,5,["G1063"]],[5,6,["G2532"]],[6,7,["G848"]],[7,8,["G3781"]],[8,10,["G1526"]],[10,11,["G1063"]],[11,12,["G1487"]],[12,13,["G3588"]],[13,14,["G1484"]],[14,18,["G2841"]],[18,20,["G848"]],[20,22,["G4152"]],[22,24,["G3784"]],[24,26,["G2532"]],[26,28,["G3008"]],[28,30,["G846"]],[30,33,["G4559"]]]},{"k":28331,"v":[[0,2,["G3767"]],[2,5,["G2005"]],[5,6,["G5124"]],[6,7,["G2532"]],[7,9,["G4972"]],[9,11,["G846"]],[11,12,["G5126"]],[12,13,["G2590"]],[13,16,["G565"]],[16,17,["G1223"]],[17,18,["G5216"]],[18,19,["G1519"]],[19,20,["G4681"]]]},{"k":28332,"v":[[0,1,["G1161"]],[1,4,["G1492"]],[4,5,["G3754"]],[5,8,["G2064"]],[8,9,["G4314"]],[9,10,["G5209"]],[10,13,["G2064"]],[13,14,["G1722"]],[14,16,["G4138"]],[16,19,["G2129"]],[19,21,["G3588"]],[21,22,["G2098"]],[22,24,["G5547"]]]},{"k":28333,"v":[[0,1,["G1161"]],[1,3,["G3870"]],[3,4,["G5209"]],[4,5,["G80"]],[5,11,["G1223","G2257","G2962","G2424","G5547"]],[11,12,["G2532"]],[12,13,["G1223"]],[13,14,["G3588"]],[14,15,["G26"]],[15,17,["G3588"]],[17,18,["G4151"]],[18,23,["G4865"]],[23,24,["G3427"]],[24,25,["G1722"]],[25,27,["G4335"]],[27,28,["G4314"]],[28,29,["G2316"]],[29,30,["G5228"]],[30,31,["G1700"]]]},{"k":28334,"v":[[0,1,["G2443"]],[1,5,["G4506"]],[5,6,["G575"]],[6,11,["G544"]],[11,12,["G1722"]],[12,13,["G2449"]],[13,14,["G2532"]],[14,15,["G2443"]],[15,16,["G3450"]],[16,17,["G1248"]],[17,18,["G3588"]],[18,21,["G1519"]],[21,22,["G2419"]],[22,24,["G1096"]],[24,25,["G2144"]],[25,27,["G3588"]],[27,28,["G40"]]]},{"k":28335,"v":[[0,1,["G2443"]],[1,4,["G2064"]],[4,5,["G4314"]],[5,6,["G5209"]],[6,7,["G1722"]],[7,8,["G5479"]],[8,9,["G1223"]],[9,11,["G2307"]],[11,13,["G2316"]],[13,14,["G2532"]],[14,17,["G5213"]],[17,19,["G4875"]]]},{"k":28336,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2316"]],[3,5,["G1515"]],[5,7,["G3326"]],[7,8,["G5216"]],[8,9,["G3956"]],[9,10,["G281"]]]},{"k":28337,"v":[[0,0,["(G1161)"]],[0,2,["G4921"]],[2,4,["G5213"]],[4,5,["G5402"]],[5,6,["G2257"]],[6,7,["G79"]],[7,9,["G5607"]],[9,11,["G1249"]],[11,13,["G3588"]],[13,14,["G1577"]],[14,15,["G3588"]],[15,17,["G1722"]],[17,18,["G2747"]]]},{"k":28338,"v":[[0,1,["G2443"]],[1,3,["G4327"]],[3,4,["G846"]],[4,5,["G1722"]],[5,7,["G2962"]],[7,9,["G516"]],[9,10,["G40"]],[10,11,["G2532"]],[11,14,["G3936"]],[14,15,["G846"]],[15,16,["G1722"]],[16,17,["G3739","G302"]],[17,18,["G4229"]],[18,21,["G5535"]],[21,23,["G5216"]],[23,24,["G1063"]],[24,25,["G3778"]],[25,26,["(G2532)"]],[26,27,["G1096"]],[27,29,["G4368"]],[29,31,["G4183"]],[31,32,["G2532"]],[32,33,["(G1700)"]],[33,34,["G848"]],[34,35,[]]]},{"k":28339,"v":[[0,1,["G782"]],[1,2,["G4252"]],[2,3,["G2532"]],[3,4,["G207"]],[4,5,["G3450"]],[5,6,["G4904"]],[6,7,["G1722"]],[7,8,["G5547"]],[8,9,["G2424"]]]},{"k":28340,"v":[[0,1,["G3748"]],[1,3,["G5228"]],[3,4,["G3450"]],[4,5,["G5590"]],[5,7,["G5294"]],[7,9,["G1438"]],[9,10,["G5137"]],[10,12,["G3739"]],[12,13,["G3756"]],[13,14,["G3441"]],[14,15,["G1473"]],[15,17,["G2168"]],[17,18,["G235"]],[18,19,["G2532"]],[19,20,["G3956"]],[20,21,["G3588"]],[21,22,["G1577"]],[22,24,["G3588"]],[24,25,["G1484"]]]},{"k":28341,"v":[[0,1,["(G2532)"]],[1,3,["G3588"]],[3,4,["G1577"]],[4,7,["G2596"]],[7,8,["G848"]],[8,9,["G3624"]],[9,10,["G782"]],[10,11,["G3450"]],[11,12,["G27"]],[12,13,["G1866"]],[13,14,["G3739"]],[14,15,["G2076"]],[15,17,["G536"]],[17,19,["G882"]],[19,20,["G1519"]],[20,21,["G5547"]]]},{"k":28342,"v":[[0,1,["G782"]],[1,2,["G3137"]],[2,3,["G3748"]],[3,6,["G2872","G4183"]],[6,7,["G1519"]],[7,8,["G2248"]]]},{"k":28343,"v":[[0,1,["G782"]],[1,2,["G408"]],[2,3,["G2532"]],[3,4,["G2458"]],[4,5,["G3450"]],[5,6,["G4773"]],[6,7,["G2532"]],[7,8,["G3450"]],[8,9,["G4869"]],[9,10,["G3748"]],[10,11,["G1526"]],[11,13,["G1978"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G652"]],[16,17,["G3739"]],[17,18,["G2532"]],[18,19,["G1096"]],[19,20,["G1722"]],[20,21,["G5547"]],[21,22,["G4253"]],[22,23,["G1700"]]]},{"k":28344,"v":[[0,1,["G782"]],[1,2,["G291"]],[2,3,["G3450"]],[3,4,["G27"]],[4,5,["G1722"]],[5,7,["G2962"]]]},{"k":28345,"v":[[0,1,["G782"]],[1,2,["G3773"]],[2,3,["G2257"]],[3,4,["G4904"]],[4,5,["G1722"]],[5,6,["G5547"]],[6,7,["G2532"]],[7,8,["G4720"]],[8,9,["G3450"]],[9,10,["G27"]]]},{"k":28346,"v":[[0,1,["G782"]],[1,2,["G559"]],[2,3,["G1384"]],[3,4,["G1722"]],[4,5,["G5547"]],[5,6,["G782"]],[6,7,["G3588"]],[7,10,["G1537"]],[10,11,["G711"]],[11,12,[]]]},{"k":28347,"v":[[0,1,["G782"]],[1,2,["G2267"]],[2,3,["G3450"]],[3,4,["G4773"]],[4,5,["G782"]],[5,6,["G3588"]],[6,9,["G1537"]],[9,10,["G3588"]],[10,13,["G3488"]],[13,15,["G5607"]],[15,16,["G1722"]],[16,18,["G2962"]]]},{"k":28348,"v":[[0,1,["G782"]],[1,2,["G5170"]],[2,3,["G2532"]],[3,4,["G5173"]],[4,5,["G3588"]],[5,6,["G2872"]],[6,7,["G1722"]],[7,9,["G2962"]],[9,10,["G782"]],[10,11,["G3588"]],[11,12,["G27"]],[12,13,["G4069"]],[13,14,["G3748"]],[14,15,["G2872"]],[15,16,["G4183"]],[16,17,["G1722"]],[17,19,["G2962"]]]},{"k":28349,"v":[[0,1,["G782"]],[1,2,["G4504"]],[2,3,["G1588"]],[3,4,["G1722"]],[4,6,["G2962"]],[6,7,["G2532"]],[7,8,["G848"]],[8,9,["G3384"]],[9,10,["G2532"]],[10,11,["G1700"]]]},{"k":28350,"v":[[0,1,["G782"]],[1,2,["G799"]],[2,3,["G5393"]],[3,4,["G2057"]],[4,5,["G3969"]],[5,6,["G2060"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G80"]],[9,12,["G4862"]],[12,13,["G846"]]]},{"k":28351,"v":[[0,1,["G782"]],[1,2,["G5378"]],[2,3,["G2532"]],[3,4,["G2456"]],[4,5,["G3517"]],[5,6,["G2532"]],[6,7,["G848"]],[7,8,["G79"]],[8,9,["G2532"]],[9,10,["G3652"]],[10,11,["G2532"]],[11,12,["G3956"]],[12,13,["G3588"]],[13,14,["G40"]],[14,17,["G4862"]],[17,18,["G846"]]]},{"k":28352,"v":[[0,1,["G782"]],[1,3,["G240"]],[3,4,["G1722"]],[4,6,["G40"]],[6,7,["G5370"]],[7,8,["G3588"]],[8,9,["G1577"]],[9,11,["G5547"]],[11,12,["G782"]],[12,13,["G5209"]]]},{"k":28353,"v":[[0,1,["G1161"]],[1,3,["G3870"]],[3,4,["G5209"]],[4,5,["G80"]],[5,6,["G4648"]],[6,9,["G4160"]],[9,10,["G1370"]],[10,11,["G2532"]],[11,12,["G4625"]],[12,13,["G3844"]],[13,15,["G3588"]],[15,16,["G1322"]],[16,17,["G3739"]],[17,18,["G5210"]],[18,20,["G3129"]],[20,21,["G2532"]],[21,22,["G1578","G575"]],[22,23,["G846"]]]},{"k":28354,"v":[[0,1,["G1063"]],[1,5,["G5108"]],[5,6,["G1398"]],[6,7,["G3756"]],[7,8,["G2257"]],[8,9,["G2962"]],[9,10,["G2424"]],[10,11,["G5547"]],[11,12,["G235"]],[12,14,["G1438"]],[14,15,["G2836"]],[15,16,["G2532"]],[16,17,["G1223"]],[17,19,["G5542"]],[19,20,["G2532"]],[20,22,["G2129"]],[22,23,["G1818"]],[23,24,["G3588"]],[24,25,["G2588"]],[25,27,["G3588"]],[27,28,["G172"]]]},{"k":28355,"v":[[0,1,["G1063"]],[1,2,["G5216"]],[2,3,["G5218"]],[3,6,["G864"]],[6,7,["G1519"]],[7,8,["G3956"]],[8,12,["G5463"]],[12,13,["G3767"]],[13,16,["G1909","G5213"]],[16,17,["G1161"]],[17,20,["G2309"]],[20,22,["G5209"]],[22,23,["(G1511)","G4680"]],[23,24,["(G1519)"]],[24,28,["G18"]],[28,29,["G1161"]],[29,30,["G185"]],[30,31,["G1519"]],[31,32,["G2556"]]]},{"k":28356,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2316"]],[3,5,["G1515"]],[5,7,["G4937"]],[7,8,["G4567"]],[8,9,["G5259"]],[9,10,["G2257"]],[10,11,["G4228"]],[11,12,["G1722","G5034"]],[12,13,["G3588"]],[13,14,["G5485"]],[14,16,["G2257"]],[16,17,["G2962"]],[17,18,["G2424"]],[18,19,["G5547"]],[19,21,["G3326"]],[21,22,["G5216"]],[22,23,["G281"]]]},{"k":28357,"v":[[0,1,["G5095"]],[1,2,["G3450"]],[2,3,["G4904"]],[3,4,["G2532"]],[4,5,["G3066"]],[5,6,["G2532"]],[6,7,["G2394"]],[7,8,["G2532"]],[8,9,["G4989"]],[9,10,["G3450"]],[10,11,["G4773"]],[11,12,["G782"]],[12,13,["G5209"]]]},{"k":28358,"v":[[0,1,["G1473"]],[1,2,["G5060"]],[2,4,["G1125"]],[4,6,["G1992"]],[6,7,["G782"]],[7,8,["G5209"]],[8,9,["G1722"]],[9,11,["G2962"]]]},{"k":28359,"v":[[0,1,["G1050"]],[1,2,["G3450"]],[2,3,["G3581"]],[3,4,["G2532"]],[4,6,["G3588"]],[6,7,["G3650"]],[7,8,["G1577"]],[8,9,["G782"]],[9,10,["G5209"]],[10,11,["G2037"]],[11,12,["G3588"]],[12,13,["G3623"]],[13,15,["G3588"]],[15,16,["G4172"]],[16,17,["G782"]],[17,18,["G5209"]],[18,19,["G2532"]],[19,20,["G2890"]],[20,22,["G80"]]]},{"k":28360,"v":[[0,1,["G3588"]],[1,2,["G5485"]],[2,4,["G2257"]],[4,5,["G2962"]],[5,6,["G2424"]],[6,7,["G5547"]],[7,9,["G3326"]],[9,10,["G5216"]],[10,11,["G3956"]],[11,12,["G281"]]]},{"k":28361,"v":[[0,1,["G1161"]],[1,7,["G1410"]],[7,9,["G4741"]],[9,10,["G5209"]],[10,11,["G2596"]],[11,13,["G3450"]],[13,14,["G2098"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G2782"]],[17,19,["G2424"]],[19,20,["G5547"]],[20,21,["G2596"]],[21,24,["G602"]],[24,27,["G3466"]],[27,31,["G4601"]],[31,35,["G5550","G166"]]]},{"k":28362,"v":[[0,1,["G1161"]],[1,2,["G3568"]],[2,5,["G5319"]],[5,6,["G5037"]],[6,7,["G1223"]],[7,9,["G1124"]],[9,12,["G4397"]],[12,13,["G2596"]],[13,16,["G2003"]],[16,18,["G3588"]],[18,19,["G166"]],[19,20,["G2316"]],[20,22,["G1107"]],[22,23,["G1519"]],[23,24,["G3956"]],[24,25,["G1484"]],[25,26,["G1519"]],[26,28,["G5218"]],[28,30,["G4102"]]]},{"k":28363,"v":[[0,2,["G2316"]],[2,3,["G3441"]],[3,4,["G4680"]],[4,6,["G1391"]],[6,7,["G1223"]],[7,8,["G2424"]],[8,9,["G5547"]],[9,11,["G1519","G165"]],[11,12,["G281"]]]},{"k":28364,"v":[[0,1,["G3972"]],[1,2,["G2822"]],[2,6,["G652"]],[6,8,["G2424"]],[8,9,["G5547"]],[9,10,["G1223"]],[10,12,["G2307"]],[12,14,["G2316"]],[14,15,["G2532"]],[15,16,["G4988"]],[16,18,["G80"]]]},{"k":28365,"v":[[0,2,["G3588"]],[2,3,["G1577"]],[3,5,["G2316"]],[5,7,["G5607"]],[7,8,["G1722"]],[8,9,["G2882"]],[9,14,["G37"]],[14,15,["G1722"]],[15,16,["G5547"]],[16,17,["G2424"]],[17,18,["G2822"]],[18,21,["G40"]],[21,22,["G4862"]],[22,23,["G3956"]],[23,25,["G1722"]],[25,26,["G3956"]],[26,27,["G5117"]],[27,29,["G1941"]],[29,30,["G3588"]],[30,31,["G3686"]],[31,33,["G2424"]],[33,34,["G5547"]],[34,35,["G2257"]],[35,36,["G2962"]],[36,37,["G5037"]],[37,38,["G848"]],[38,39,["G2532"]],[39,40,["G2257"]]]},{"k":28366,"v":[[0,1,["G5485"]],[1,4,["G5213"]],[4,5,["G2532"]],[5,6,["G1515"]],[6,7,["G575"]],[7,8,["G2316"]],[8,9,["G2257"]],[9,10,["G3962"]],[10,11,["G2532"]],[11,14,["G2962"]],[14,15,["G2424"]],[15,16,["G5547"]]]},{"k":28367,"v":[[0,2,["G2168"]],[2,3,["G3450"]],[3,4,["G2316"]],[4,5,["G3842"]],[5,8,["G4012","G5216"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G5485"]],[11,13,["G2316"]],[13,16,["G1325"]],[16,17,["G5213"]],[17,18,["G1722"]],[18,19,["G2424"]],[19,20,["G5547"]]]},{"k":28368,"v":[[0,1,["G3754"]],[1,2,["G1722"]],[2,4,["G3956"]],[4,7,["G4148"]],[7,8,["G1722"]],[8,9,["G846"]],[9,10,["G1722"]],[10,11,["G3956"]],[11,12,["G3056"]],[12,13,["G2532"]],[13,15,["G3956"]],[15,16,["G1108"]]]},{"k":28369,"v":[[0,2,["G2531"]],[2,3,["G3588"]],[3,4,["G3142"]],[4,6,["G5547"]],[6,8,["G950"]],[8,9,["G1722"]],[9,10,["G5213"]]]},{"k":28370,"v":[[0,2,["G5620"]],[2,3,["G5209","(G3361)"]],[3,5,["G5302"]],[5,6,["G1722"]],[6,7,["G3367"]],[7,8,["G5486"]],[8,10,["G553"]],[10,11,["G3588"]],[11,12,["G602"]],[12,14,["G2257"]],[14,15,["G2962"]],[15,16,["G2424"]],[16,17,["G5547"]]]},{"k":28371,"v":[[0,1,["G3739"]],[1,3,["G2532"]],[3,4,["G950"]],[4,5,["G5209"]],[5,6,["G2193"]],[6,8,["G5056"]],[8,13,["G410"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G2250"]],[16,18,["G2257"]],[18,19,["G2962"]],[19,20,["G2424"]],[20,21,["G5547"]]]},{"k":28372,"v":[[0,1,["G2316"]],[1,3,["G4103"]],[3,4,["G1223"]],[4,5,["G3739"]],[5,8,["G2564"]],[8,9,["G1519"]],[9,11,["G2842"]],[11,13,["G848"]],[13,14,["G5207"]],[14,15,["G2424"]],[15,16,["G5547"]],[16,17,["G2257"]],[17,18,["G2962"]]]},{"k":28373,"v":[[0,1,["G1161"]],[1,3,["G3870"]],[3,4,["G5209"]],[4,5,["G80"]],[5,6,["G1223"]],[6,7,["G3588"]],[7,8,["G3686"]],[8,10,["G2257"]],[10,11,["G2962"]],[11,12,["G2424"]],[12,13,["G5547"]],[13,14,["G2443"]],[14,16,["G3956"]],[16,17,["G3004"]],[17,18,["G3588"]],[18,20,["G846"]],[20,21,["G2532"]],[21,24,["G5600"]],[24,25,["G3361"]],[25,26,["G4978"]],[26,27,["G1722"]],[27,28,["G5213"]],[28,29,["G1161"]],[29,32,["G5600"]],[32,35,["G2675"]],[35,36,["G1722"]],[36,37,["G3588"]],[37,38,["G846"]],[38,39,["G3563"]],[39,40,["G2532"]],[40,41,["G1722"]],[41,42,["G3588"]],[42,43,["G846"]],[43,44,["G1106"]]]},{"k":28374,"v":[[0,1,["G1063"]],[1,5,["G1213"]],[5,7,["G3427"]],[7,8,["G4012"]],[8,9,["G5216"]],[9,10,["G3450"]],[10,11,["G80"]],[11,12,["G5259"]],[12,13,["G3588"]],[13,20,["G5514"]],[20,21,["G3754"]],[21,23,["G1526"]],[23,24,["G2054"]],[24,25,["G1722"]],[25,26,["G5213"]]]},{"k":28375,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,4,["G3004"]],[4,5,["G3754"]],[5,7,["G1538"]],[7,9,["G5216"]],[9,10,["G3004"]],[10,11,["G1473","(G3303)"]],[11,12,["G1510"]],[12,14,["G3972"]],[14,15,["G1161"]],[15,16,["G1473"]],[16,18,["G625"]],[18,19,["G1161"]],[19,20,["G1473"]],[20,22,["G2786"]],[22,23,["G1161"]],[23,24,["G1473"]],[24,26,["G5547"]]]},{"k":28376,"v":[[0,2,["G5547"]],[2,3,["G3307"]],[3,4,["(G3361)"]],[4,5,["G3972"]],[5,6,["G4717"]],[6,7,["G5228"]],[7,8,["G5216"]],[8,9,["G2228"]],[9,12,["G907"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G3686"]],[15,17,["G3972"]]]},{"k":28377,"v":[[0,2,["G2168"]],[2,3,["G2316"]],[3,4,["G3754"]],[4,6,["G907"]],[6,7,["G3762"]],[7,9,["G5216"]],[9,10,["G1508"]],[10,11,["G2921"]],[11,12,["G2532"]],[12,13,["G1050"]]]},{"k":28378,"v":[[0,1,["G3363"]],[1,2,["G5100"]],[2,4,["G2036"]],[4,5,["G3754"]],[5,8,["G907"]],[8,9,["G1519"]],[9,11,["G1699"]],[11,12,["G3686"]]]},{"k":28379,"v":[[0,1,["G1161"]],[1,3,["G907"]],[3,4,["G2532"]],[4,5,["G3588"]],[5,6,["G3624"]],[6,8,["G4734"]],[8,9,["G3063"]],[9,11,["G1492"]],[11,12,["G3756"]],[12,16,["G1536","G907"]],[16,17,["G243"]]]},{"k":28380,"v":[[0,1,["G1063"]],[1,2,["G5547"]],[2,3,["G649"]],[3,4,["G3165"]],[4,5,["G3756"]],[5,7,["G907"]],[7,8,["G235"]],[8,12,["G2097"]],[12,13,["G3756"]],[13,14,["G1722"]],[14,15,["G4678"]],[15,17,["G3056"]],[17,18,["G3363"]],[18,19,["G3588"]],[19,20,["G4716"]],[20,22,["G5547"]],[22,28,["G2758"]]]},{"k":28381,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,4,["(G3588)"]],[4,5,["G3588"]],[5,6,["G4716"]],[6,7,["G2076"]],[7,11,["G622","(G3303)"]],[11,12,["G3472"]],[12,13,["G1161"]],[13,15,["G2254"]],[15,16,["G3588"]],[16,18,["G4982"]],[18,20,["G2076"]],[20,22,["G1411"]],[22,24,["G2316"]]]},{"k":28382,"v":[[0,1,["G1063"]],[1,4,["G1125"]],[4,7,["G622"]],[7,8,["G3588"]],[8,9,["G4678"]],[9,11,["G3588"]],[11,12,["G4680"]],[12,13,["G2532"]],[13,17,["G114"]],[17,18,["G3588"]],[18,19,["G4907"]],[19,21,["G3588"]],[21,22,["G4908"]]]},{"k":28383,"v":[[0,1,["G4226"]],[1,4,["G4680"]],[4,5,["G4226"]],[5,8,["G1122"]],[8,9,["G4226"]],[9,12,["G4804"]],[12,14,["G5127"]],[14,15,["G165"]],[15,17,["G3780"]],[17,18,["G2316"]],[18,20,["G3471"]],[20,21,["G3588"]],[21,22,["G4678"]],[22,24,["G5127"]],[24,25,["G2889"]]]},{"k":28384,"v":[[0,1,["G1063"]],[1,3,["G1894"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G4678"]],[6,8,["G2316"]],[8,9,["G3588"]],[9,10,["G2889"]],[10,11,["G1223"]],[11,12,["G4678"]],[12,13,["G1097"]],[13,14,["G3756"]],[14,15,["G2316"]],[15,17,["G2106"]],[17,18,["G2316"]],[18,19,["G1223"]],[19,20,["G3588"]],[20,21,["G3472"]],[21,23,["G2782"]],[23,25,["G4982"]],[25,28,["G4100"]]]},{"k":28385,"v":[[0,1,["G1894"]],[1,2,["(G2532)"]],[2,3,["G2453"]],[3,4,["G154"]],[4,6,["G4592"]],[6,7,["G2532"]],[7,9,["G1672"]],[9,11,["G2212"]],[11,12,["G4678"]]]},{"k":28386,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,3,["G2784"]],[3,4,["G5547"]],[4,5,["G4717"]],[5,8,["G2453"]],[8,9,["(G3303)"]],[9,10,["G4625"]],[10,11,["G1161"]],[11,14,["G1672"]],[14,15,["G3472"]]]},{"k":28387,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,6,["G2822"]],[6,7,["G5037"]],[7,8,["G2453"]],[8,9,["G2532"]],[9,10,["G1672"]],[10,11,["G5547"]],[11,13,["G1411"]],[13,15,["G2316"]],[15,16,["G2532"]],[16,18,["G4678"]],[18,20,["G2316"]]]},{"k":28388,"v":[[0,1,["G3754"]],[1,2,["G3588"]],[2,3,["G3474"]],[3,5,["G2316"]],[5,6,["G2076"]],[6,7,["G4680"]],[7,9,["G444"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G772"]],[12,14,["G2316"]],[14,15,["G2076"]],[15,16,["G2478"]],[16,18,["G444"]]]},{"k":28389,"v":[[0,1,["G1063"]],[1,3,["G991"]],[3,4,["G5216"]],[4,5,["G2821"]],[5,6,["G80"]],[6,8,["G3754"]],[8,9,["G3756"]],[9,10,["G4183"]],[10,12,["G4680"]],[12,13,["G2596"]],[13,15,["G4561"]],[15,16,["G3756"]],[16,17,["G4183"]],[17,18,["G1415"]],[18,19,["G3756"]],[19,20,["G4183"]],[20,21,["G2104"]],[21,23,[]]]},{"k":28390,"v":[[0,1,["G235"]],[1,2,["G2316"]],[2,4,["G1586"]],[4,5,["G3588"]],[5,7,["G3474"]],[7,9,["G3588"]],[9,10,["G2889"]],[10,11,["G2443"]],[11,12,["G2617"]],[12,13,["G3588"]],[13,14,["G4680"]],[14,15,["G2532"]],[15,16,["G2316"]],[16,18,["G1586"]],[18,19,["G3588"]],[19,21,["G772"]],[21,23,["G3588"]],[23,24,["G2889"]],[24,25,["G2443"]],[25,26,["G2617"]],[26,31,["G2478"]]]},{"k":28391,"v":[[0,1,["G2532"]],[1,3,["G36"]],[3,5,["G3588"]],[5,6,["G2889"]],[6,7,["G2532"]],[7,11,["G1848"]],[11,13,["G2316"]],[13,14,["G1586"]],[14,16,["G2532"]],[16,17,["G3588"]],[17,19,["G5607"]],[19,20,["G3361"]],[20,21,["G2443"]],[21,24,["G2673"]],[24,27,["G5607"]]]},{"k":28392,"v":[[0,1,["G3704"]],[1,2,["G3956","G3361"]],[2,3,["G4561"]],[3,5,["G2744"]],[5,8,["G1799","G846"]]]},{"k":28393,"v":[[0,1,["G1161"]],[1,2,["G1537"]],[2,3,["G846"]],[3,4,["G2075"]],[4,5,["G5210"]],[5,6,["G1722"]],[6,7,["G5547"]],[7,8,["G2424"]],[8,9,["G3739"]],[9,10,["G575"]],[10,11,["G2316"]],[11,13,["G1096"]],[13,15,["G2254"]],[15,16,["G4678"]],[16,17,["G5037"]],[17,18,["G1343"]],[18,19,["G2532"]],[19,20,["G38"]],[20,21,["G2532"]],[21,22,["G629"]]]},{"k":28394,"v":[[0,1,["G2443"]],[1,3,["G2531"]],[3,6,["G1125"]],[6,7,["G3588"]],[7,9,["G2744"]],[9,12,["G2744"]],[12,13,["G1722"]],[13,15,["G2962"]]]},{"k":28395,"v":[[0,2,["G2504"]],[2,3,["G80"]],[3,6,["G2064"]],[6,7,["G4314"]],[7,8,["G5209"]],[8,9,["G2064"]],[9,10,["G3756"]],[10,11,["G2596"]],[11,12,["G5247"]],[12,14,["G3056"]],[14,15,["G2228"]],[15,17,["G4678"]],[17,18,["G2605"]],[18,20,["G5213"]],[20,21,["G3588"]],[21,22,["G3142"]],[22,24,["G2316"]]]},{"k":28396,"v":[[0,1,["G1063"]],[1,3,["G2919"]],[3,4,["G3756"]],[4,6,["G1492"]],[6,8,["G5100"]],[8,9,["G1722"]],[9,10,["G5213"]],[10,11,["G1508"]],[11,12,["G2424"]],[12,13,["G5547"]],[13,14,["G2532"]],[14,15,["G5126"]],[15,16,["G4717"]]]},{"k":28397,"v":[[0,1,["G2532"]],[1,2,["G1473"]],[2,3,["G1096"]],[3,4,["G4314"]],[4,5,["G5209"]],[5,6,["G1722"]],[6,7,["G769"]],[7,8,["G2532"]],[8,9,["G1722"]],[9,10,["G5401"]],[10,11,["G2532"]],[11,12,["G1722"]],[12,13,["G4183"]],[13,14,["G5156"]]]},{"k":28398,"v":[[0,1,["G2532"]],[1,2,["G3450"]],[2,3,["G3056"]],[3,4,["G2532"]],[4,5,["G3450"]],[5,6,["G2782"]],[6,8,["G3756"]],[8,9,["G1722"]],[9,10,["G3981"]],[10,11,["G3056"]],[11,13,["G442"]],[13,14,["G4678"]],[14,15,["G235"]],[15,16,["G1722"]],[16,17,["G585"]],[17,20,["G4151"]],[20,21,["G2532"]],[21,23,["G1411"]]]},{"k":28399,"v":[[0,1,["G2443"]],[1,2,["G5216"]],[2,3,["G4102"]],[3,5,["G3361"]],[5,6,["G5600"]],[6,7,["G1722"]],[7,9,["G4678"]],[9,11,["G444"]],[11,12,["G235"]],[12,13,["G1722"]],[13,15,["G1411"]],[15,17,["G2316"]]]},{"k":28400,"v":[[0,1,["G1161"]],[1,3,["G2980"]],[3,4,["G4678"]],[4,5,["G1722"]],[5,9,["G5046"]],[9,10,["G1161"]],[10,11,["G3756"]],[11,13,["G4678"]],[13,15,["G5127"]],[15,16,["G165"]],[16,17,["G3761"]],[17,19,["G3588"]],[19,20,["G758"]],[20,22,["G5127"]],[22,23,["G165"]],[23,27,["G2673"]]]},{"k":28401,"v":[[0,1,["G235"]],[1,3,["G2980"]],[3,5,["G4678"]],[5,7,["G2316"]],[7,8,["G1722"]],[8,10,["G3466"]],[10,12,["G3588"]],[12,13,["G613"]],[13,15,["G3739"]],[15,16,["G2316"]],[16,17,["G4309"]],[17,18,["G4253"]],[18,19,["G3588"]],[19,20,["G165"]],[20,21,["G1519"]],[21,22,["G2257"]],[22,23,["G1391"]]]},{"k":28402,"v":[[0,1,["G3739"]],[1,2,["G3762"]],[2,4,["G3588"]],[4,5,["G758"]],[5,7,["G5127"]],[7,8,["G165"]],[8,9,["G1097"]],[9,10,["G1063"]],[10,12,["(G1487)"]],[12,13,["G1097"]],[13,17,["G3756"]],[17,18,["(G302)"]],[18,19,["G4717"]],[19,20,["G3588"]],[20,21,["G2962"]],[21,23,["G1391"]]]},{"k":28403,"v":[[0,1,["G235"]],[1,2,["G2531"]],[2,5,["G1125","(G3739)"]],[5,6,["G3788"]],[6,8,["G3756"]],[8,9,["G1492"]],[9,10,["G3756"]],[10,11,["G3775"]],[11,12,["G191"]],[12,13,["G2532","G3756"]],[13,15,["G305"]],[15,16,["G1909"]],[16,18,["G2588"]],[18,20,["G444"]],[20,23,["G3739"]],[23,24,["G2316"]],[24,26,["G2090"]],[26,30,["G25"]],[30,31,["G846"]]]},{"k":28404,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,4,["G601"]],[4,7,["G2254"]],[7,8,["G1223"]],[8,9,["G848"]],[9,10,["G4151"]],[10,11,["G1063"]],[11,12,["G3588"]],[12,13,["G4151"]],[13,14,["G2045"]],[14,16,["G3956"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,20,["G899"]],[20,22,["G2316"]]]},{"k":28405,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,3,["G444"]],[3,4,["G1492"]],[4,6,["G3588"]],[6,9,["G444"]],[9,10,["G1508"]],[10,11,["G3588"]],[11,12,["G4151"]],[12,14,["G444"]],[14,15,["G3588"]],[15,17,["G1722"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G3779"]],[20,22,["G3588"]],[22,24,["G2316"]],[24,25,["G1492"]],[25,27,["G3762"]],[27,28,["G1508"]],[28,29,["G3588"]],[29,30,["G4151"]],[30,32,["G2316"]]]},{"k":28406,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,4,["G2983"]],[4,5,["G3756"]],[5,6,["G3588"]],[6,7,["G4151"]],[7,9,["G3588"]],[9,10,["G2889"]],[10,11,["G235"]],[11,12,["G3588"]],[12,13,["G4151"]],[13,14,["G3588"]],[14,16,["G1537"]],[16,17,["G2316"]],[17,18,["G2443"]],[18,21,["G1492"]],[21,23,["G3588"]],[23,27,["G5483"]],[27,29,["G2254"]],[29,30,["G5259"]],[30,31,["G2316"]]]},{"k":28407,"v":[[0,2,["G3739"]],[2,3,["G2532"]],[3,5,["G2980"]],[5,6,["G3756"]],[6,7,["G1722"]],[7,9,["G3056"]],[9,11,["G442"]],[11,12,["G4678"]],[12,13,["G1318"]],[13,14,["G235"]],[14,15,["G1722"]],[15,17,["G40"]],[17,18,["G4151"]],[18,19,["G1318"]],[19,20,["G4793"]],[20,22,["G4152"]],[22,24,["G4152"]]]},{"k":28408,"v":[[0,1,["G1161"]],[1,3,["G5591"]],[3,4,["G444"]],[4,5,["G1209"]],[5,6,["G3756"]],[6,8,["G3588"]],[8,10,["G3588"]],[10,11,["G4151"]],[11,13,["G2316"]],[13,14,["G1063"]],[14,16,["G2076"]],[16,17,["G3472"]],[17,19,["G846"]],[19,20,["G2532","G3756"]],[20,21,["G1410"]],[21,23,["G1097"]],[23,25,["G3754"]],[25,28,["G4153"]],[28,29,["G350"]]]},{"k":28409,"v":[[0,1,["G1161"]],[1,5,["G4152","(G3303)"]],[5,6,["G350"]],[6,8,["G3956"]],[8,9,["G1161"]],[9,10,["G846"]],[10,13,["G350"]],[13,14,["G5259"]],[14,16,["G3762"]]]},{"k":28410,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,4,["G1097"]],[4,6,["G3563"]],[6,9,["G2962"]],[9,10,["G3739"]],[10,13,["G4822"]],[13,14,["G846"]],[14,15,["G1161"]],[15,16,["G2249"]],[16,17,["G2192"]],[17,19,["G3563"]],[19,21,["G5547"]]]},{"k":28411,"v":[[0,1,["G2532"]],[1,2,["G1473"]],[2,3,["G80"]],[3,4,["G1410"]],[4,5,["G3756"]],[5,6,["G2980"]],[6,8,["G5213"]],[8,9,["G5613"]],[9,11,["G4152"]],[11,12,["G235"]],[12,13,["G5613"]],[13,15,["G4559"]],[15,17,["G5613"]],[17,19,["G3516"]],[19,20,["G1722"]],[20,21,["G5547"]]]},{"k":28412,"v":[[0,3,["G4222"]],[3,4,["G5209"]],[4,6,["G1051"]],[6,7,["G2532"]],[7,8,["G3756"]],[8,10,["G1033"]],[10,11,["G1063"]],[11,16,["G3768","G1410"]],[16,20,["G3777"]],[20,21,["G2089"]],[21,22,["G3568"]],[22,25,["G1410"]]]},{"k":28413,"v":[[0,1,["G1063"]],[1,3,["G2075"]],[3,4,["G2089"]],[4,5,["G4559"]],[5,6,["G1063"]],[6,7,["G3699"]],[7,10,["G1722"]],[10,11,["G5213"]],[11,12,["G2205"]],[12,13,["G2532"]],[13,14,["G2054"]],[14,15,["G2532"]],[15,16,["G1370"]],[16,17,["G2075"]],[17,19,["G3780"]],[19,20,["G4559"]],[20,21,["G2532"]],[21,22,["G4043"]],[22,23,["G2596"]],[23,24,["G444"]]]},{"k":28414,"v":[[0,1,["G1063"]],[1,2,["G3752"]],[2,3,["G5100"]],[3,4,["G3004"]],[4,5,["G1473","(G3303)"]],[5,6,["G1510"]],[6,8,["G3972"]],[8,9,["G1161"]],[9,10,["G2087"]],[10,11,["G1473"]],[11,14,["G625"]],[14,15,["G2075"]],[15,17,["G3780"]],[17,18,["G4559"]]]},{"k":28415,"v":[[0,1,["G5101"]],[1,2,["G3767"]],[2,3,["G2076"]],[3,4,["G3972"]],[4,5,["G1161"]],[5,6,["G5101"]],[6,8,["G625"]],[8,9,["G235","(G2228)"]],[9,10,["G1249"]],[10,11,["G1223"]],[11,12,["G3739"]],[12,14,["G4100"]],[14,15,["G2532"]],[15,16,["G5613"]],[16,17,["G3588"]],[17,18,["G2962"]],[18,19,["G1325"]],[19,22,["G1538"]]]},{"k":28416,"v":[[0,1,["G1473"]],[1,3,["G5452"]],[3,4,["G625"]],[4,5,["G4222"]],[5,6,["G235"]],[6,7,["G2316"]],[7,10,["G837"]]]},{"k":28417,"v":[[0,2,["G5620"]],[2,3,["G3777"]],[3,4,["G2076"]],[4,7,["G5452"]],[7,9,["G5100"]],[9,10,["G3777"]],[10,13,["G4222"]],[13,14,["G235"]],[14,15,["G2316"]],[15,19,["G837"]]]},{"k":28418,"v":[[0,1,["G1161"]],[1,4,["G5452"]],[4,5,["G2532"]],[5,8,["G4222"]],[8,9,["G1526"]],[9,10,["G1520"]],[10,11,["G1161"]],[11,13,["G1538"]],[13,15,["G2983"]],[15,17,["G2398"]],[17,18,["G3408"]],[18,19,["G2596"]],[19,22,["G2398"]],[22,23,["G2873"]]]},{"k":28419,"v":[[0,1,["G1063"]],[1,3,["G2070"]],[3,6,["G4904"]],[6,7,["G2316"]],[7,9,["G2075"]],[9,10,["G2316"]],[10,11,["G1091"]],[11,14,["G2316"]],[14,15,["G3619"]]]},{"k":28420,"v":[[0,1,["G2596"]],[1,3,["G3588"]],[3,4,["G5485"]],[4,6,["G2316"]],[6,9,["G1325"]],[9,11,["G3427"]],[11,12,["G5613"]],[12,14,["G4680"]],[14,15,["G753"]],[15,18,["G5087"]],[18,20,["G2310"]],[20,21,["G1161"]],[21,22,["G243"]],[22,24,["G2026"]],[24,25,["G1161"]],[25,28,["G1538"]],[28,30,["G991"]],[30,31,["G4459"]],[31,34,["G2026"]]]},{"k":28421,"v":[[0,1,["G1063"]],[1,2,["G243"]],[2,3,["G2310"]],[3,4,["G1410"]],[4,6,["G3762"]],[6,7,["G5087"]],[7,8,["G3844"]],[8,11,["G2749"]],[11,12,["G3739"]],[12,13,["G2076"]],[13,14,["G2424"]],[14,15,["G5547"]]]},{"k":28422,"v":[[0,1,["G1161"]],[1,4,["G1536"]],[4,5,["G2026"]],[5,6,["G1909"]],[6,7,["G5126"]],[7,8,["G2310"]],[8,9,["G5557"]],[9,10,["G696"]],[10,11,["G5093"]],[11,12,["G3037"]],[12,13,["G3586"]],[13,14,["G5528"]],[14,15,["G2562"]]]},{"k":28423,"v":[[0,2,["G1538"]],[2,3,["G2041"]],[3,6,["G1096"]],[6,7,["G5318"]],[7,8,["G1063"]],[8,9,["G3588"]],[9,10,["G2250"]],[10,12,["G1213"]],[12,14,["G3754"]],[14,18,["G601"]],[18,19,["G1722"]],[19,20,["G4442"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G4442"]],[23,25,["G1381"]],[25,27,["G1538"]],[27,28,["G2041"]],[28,31,["G3697"]],[31,33,["G2076"]]]},{"k":28424,"v":[[0,3,["G1536"]],[3,4,["G2041"]],[4,5,["G3306"]],[5,6,["G3739"]],[6,10,["G2026"]],[10,13,["G2983"]],[13,15,["G3408"]]]},{"k":28425,"v":[[0,3,["G1536"]],[3,4,["G2041"]],[4,7,["G2618"]],[7,11,["G2210"]],[11,12,["G1161"]],[12,13,["G848"]],[13,17,["G4982"]],[17,18,["G1161"]],[18,19,["G3779"]],[19,20,["G5613"]],[20,21,["G1223"]],[21,22,["G4442"]]]},{"k":28426,"v":[[0,1,["G1492"]],[1,3,["G3756"]],[3,4,["G3754"]],[4,6,["G2075"]],[6,8,["G3485"]],[8,10,["G2316"]],[10,11,["G2532"]],[11,13,["G3588"]],[13,14,["G4151"]],[14,16,["G2316"]],[16,17,["G3611"]],[17,18,["G1722"]],[18,19,["G5213"]]]},{"k":28427,"v":[[0,3,["G1536"]],[3,4,["G5351"]],[4,5,["G3588"]],[5,6,["G3485"]],[6,8,["G2316"]],[8,9,["G5126"]],[9,11,["G2316"]],[11,12,["G5351"]],[12,13,["G1063"]],[13,14,["G3588"]],[14,15,["G3485"]],[15,17,["G2316"]],[17,18,["G2076"]],[18,19,["G40"]],[19,20,["G3748"]],[20,22,["G5210"]],[22,23,["G2075"]]]},{"k":28428,"v":[[0,3,["G3367"]],[3,4,["G1818"]],[4,5,["G1438"]],[5,8,["G1536"]],[8,9,["G1722"]],[9,10,["G5213"]],[10,11,["G1380"]],[11,13,["G1511"]],[13,14,["G4680"]],[14,15,["G1722"]],[15,16,["G5129"]],[16,17,["G165"]],[17,20,["G1096"]],[20,22,["G3474"]],[22,23,["G2443"]],[23,26,["G1096"]],[26,27,["G4680"]]]},{"k":28429,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G4678"]],[3,5,["G5127"]],[5,6,["G2889"]],[6,7,["G2076"]],[7,8,["G3472"]],[8,9,["G3844"]],[9,10,["G2316"]],[10,11,["G1063"]],[11,14,["G1125"]],[14,16,["G1405"]],[16,17,["G3588"]],[17,18,["G4680"]],[18,19,["G1722"]],[19,21,["G848"]],[21,22,["G3834"]]]},{"k":28430,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,4,["G2962"]],[4,5,["G1097"]],[5,6,["G3588"]],[6,7,["G1261"]],[7,9,["G3588"]],[9,10,["G4680"]],[10,11,["G3754"]],[11,13,["G1526"]],[13,14,["G3152"]]]},{"k":28431,"v":[[0,1,["G5620"]],[1,4,["G3367"]],[4,5,["G2744"]],[5,6,["G1722"]],[6,7,["G444"]],[7,8,["G1063"]],[8,10,["G3956"]],[10,11,["G2076"]],[11,12,["G5216"]]]},{"k":28432,"v":[[0,1,["G1535"]],[1,2,["G3972"]],[2,3,["G1535"]],[3,4,["G625"]],[4,5,["G1535"]],[5,6,["G2786"]],[6,7,["G1535"]],[7,9,["G2889"]],[9,10,["G1535"]],[10,11,["G2222"]],[11,12,["G1535"]],[12,13,["G2288"]],[13,14,["G1535"]],[14,16,["G1764"]],[16,17,["G1535"]],[17,20,["G3195"]],[20,21,["G3956"]],[21,22,["G2076"]],[22,23,["G5216"]]]},{"k":28433,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,4,["G5547"]],[4,5,["G1161"]],[5,6,["G5547"]],[6,8,["G2316"]]]},{"k":28434,"v":[[0,3,["G444"]],[3,4,["G3779"]],[4,5,["G3049"]],[5,7,["G2248"]],[7,8,["G5613"]],[8,11,["G5257"]],[11,13,["G5547"]],[13,14,["G2532"]],[14,15,["G3623"]],[15,18,["G3466"]],[18,20,["G2316"]]]},{"k":28435,"v":[[0,0,["(G1161)"]],[0,1,["G3063","G3739"]],[1,4,["G2212"]],[4,5,["G1722"]],[5,6,["G3623"]],[6,7,["G2443"]],[7,9,["G5100"]],[9,11,["G2147"]],[11,12,["G4103"]]]},{"k":28436,"v":[[0,1,["G1161"]],[1,3,["G1698"]],[3,5,["G2076"]],[5,6,["(G1519)"]],[6,9,["G1646"]],[9,10,["G2443"]],[10,14,["G350"]],[14,15,["G5259"]],[15,16,["G5216"]],[16,17,["G2228"]],[17,18,["G5259"]],[18,19,["G442"]],[19,20,["G2250"]],[20,21,["G235"]],[21,23,["G350"]],[23,24,["G3761"]],[24,27,["G1683"]]]},{"k":28437,"v":[[0,1,["G1063"]],[1,3,["G4894"]],[3,4,["G3762"]],[4,6,["G1683"]],[6,7,["G235"]],[7,10,["G3756"]],[10,11,["G1722","G5129"]],[11,12,["G1344"]],[12,13,["G1161"]],[13,16,["G350"]],[16,17,["G3165"]],[17,18,["G2076"]],[18,20,["G2962"]]]},{"k":28438,"v":[[0,1,["G5620"]],[1,2,["G2919"]],[2,3,["G5100","G3361"]],[3,4,["G4253"]],[4,6,["G2540"]],[6,7,["G2193","G302"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,10,["G2064"]],[10,11,["G3739"]],[11,12,["G2532"]],[12,16,["G5461"]],[16,17,["G3588"]],[17,19,["G2927"]],[19,21,["G4655"]],[21,22,["G2532"]],[22,25,["G5319"]],[25,26,["G3588"]],[26,27,["G1012"]],[27,29,["G3588"]],[29,30,["G2588"]],[30,31,["G2532"]],[31,32,["G5119"]],[32,35,["G1538"]],[35,36,["G1096"]],[36,37,["G1868"]],[37,38,["G575"]],[38,39,["G2316"]]]},{"k":28439,"v":[[0,1,["G1161"]],[1,3,["G5023"]],[3,4,["G80"]],[4,10,["G3345"]],[10,11,["G1519"]],[11,12,["G1683"]],[12,13,["G2532"]],[13,15,["G625"]],[15,18,["G1223","G5209"]],[18,19,["G2443"]],[19,22,["G3129"]],[22,23,["G1722"]],[23,24,["G2254"]],[24,25,["G3361"]],[25,27,["G5426"]],[27,30,["G5228"]],[30,32,["G3739"]],[32,34,["G1125"]],[34,35,["G2443"]],[35,36,["G3361"]],[36,37,["G1520"]],[37,42,["G5448"]],[42,43,["G5228"]],[43,44,["G1520"]],[44,45,["G2596"]],[45,46,["G2087"]]]},{"k":28440,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,6,["G1252","G4571"]],[6,9,["G1161"]],[9,10,["G5101"]],[10,11,["G2192"]],[11,13,["G3739"]],[13,16,["G3756"]],[16,17,["G2983"]],[17,18,["G1161"]],[18,19,["G1487"]],[19,21,["(G2532)"]],[21,22,["G2983"]],[22,24,["G5101"]],[24,27,["G2744"]],[27,28,["G5613"]],[28,29,["G1487"]],[29,32,["G3361"]],[32,33,["G2983"]],[33,34,[]]]},{"k":28441,"v":[[0,1,["G2235"]],[1,3,["G2075"]],[3,4,["G2880"]],[4,5,["G2235"]],[5,8,["G4147"]],[8,13,["G936"]],[13,14,["G5565"]],[14,15,["G2257"]],[15,16,["G2532"]],[16,20,["G3785","G1065"]],[20,23,["G936"]],[23,24,["G2443"]],[24,25,["G2249"]],[25,26,["G2532"]],[26,29,["G4821"]],[29,30,["G5213"]]]},{"k":28442,"v":[[0,1,["G1063"]],[1,3,["G1380"]],[3,4,["G3754"]],[4,5,["G2316"]],[5,8,["G584"]],[8,9,["G2248"]],[9,10,["G3588"]],[10,11,["G652"]],[11,12,["G2078"]],[12,15,["G5613"]],[15,18,["G1935"]],[18,19,["G3754"]],[19,22,["G1096"]],[22,24,["G2302"]],[24,26,["G3588"]],[26,27,["G2889"]],[27,28,["G2532"]],[28,30,["G32"]],[30,31,["G2532"]],[31,33,["G444"]]]},{"k":28443,"v":[[0,1,["G2249"]],[1,3,["G3474"]],[3,6,["G1223","G5547"]],[6,7,["G1161"]],[7,8,["G5210"]],[8,10,["G5429"]],[10,11,["G1722"]],[11,12,["G5547"]],[12,13,["G2249"]],[13,15,["G772"]],[15,16,["G1161"]],[16,17,["G5210"]],[17,19,["G2478"]],[19,20,["G5210"]],[20,22,["G1741"]],[22,23,["G1161"]],[23,24,["G2249"]],[24,26,["G820"]]]},{"k":28444,"v":[[0,2,["G891"]],[2,4,["G737"]],[4,5,["G5610"]],[5,7,["G2532"]],[7,8,["G3983"]],[8,9,["G2532"]],[9,10,["G1372"]],[10,11,["G2532"]],[11,13,["G1130"]],[13,14,["G2532"]],[14,16,["G2852"]],[16,17,["G2532"]],[17,21,["G790"]]]},{"k":28445,"v":[[0,1,["G2532"]],[1,2,["G2872"]],[2,3,["G2038"]],[3,6,["G2398"]],[6,7,["G5495"]],[7,9,["G3058"]],[9,11,["G2127"]],[11,13,["G1377"]],[13,15,["G430"]],[15,16,[]]]},{"k":28446,"v":[[0,2,["G987"]],[2,4,["G3870"]],[4,7,["G1096"]],[7,8,["G5613"]],[8,10,["G4027"]],[10,12,["G3588"]],[12,13,["G2889"]],[13,17,["G4067"]],[17,20,["G3956"]],[20,21,["G2193"]],[21,23,["G737"]]]},{"k":28447,"v":[[0,2,["G1125"]],[2,3,["G3756"]],[3,5,["G5023"]],[5,7,["G1788"]],[7,8,["G5209"]],[8,9,["G235"]],[9,10,["G5613"]],[10,11,["G3450"]],[11,12,["G27"]],[12,13,["G5043"]],[13,15,["G3560"]],[15,16,[]]]},{"k":28448,"v":[[0,1,["G1063"]],[1,2,["G1437"]],[2,4,["G2192"]],[4,6,["G3463"]],[6,7,["G3807"]],[7,8,["G1722"]],[8,9,["G5547"]],[9,10,["G235"]],[10,13,["G3756"]],[13,14,["G4183"]],[14,15,["G3962"]],[15,16,["G1063"]],[16,17,["G1722"]],[17,18,["G5547"]],[18,19,["G2424"]],[19,20,["G1473"]],[20,22,["G1080"]],[22,23,["G5209"]],[23,24,["G1223"]],[24,25,["G3588"]],[25,26,["G2098"]]]},{"k":28449,"v":[[0,1,["G3767"]],[1,3,["G3870"]],[3,4,["G5209"]],[4,5,["G1096"]],[5,7,["G3402"]],[7,9,["G3450"]]]},{"k":28450,"v":[[0,3,["G1223","G5124"]],[3,6,["G3992"]],[6,8,["G5213"]],[8,9,["G5095"]],[9,10,["G3739"]],[10,11,["G2076"]],[11,12,["G3450"]],[12,13,["G27"]],[13,14,["G5043"]],[14,15,["G2532"]],[15,16,["G4103"]],[16,17,["G1722"]],[17,19,["G2962"]],[19,20,["G3739"]],[20,25,["G363","G5209"]],[25,27,["G3450"]],[27,28,["G3598"]],[28,29,["G3588"]],[29,31,["G1722"]],[31,32,["G5547"]],[32,33,["G2531"]],[33,35,["G1321"]],[35,37,["G3837"]],[37,38,["G1722"]],[38,39,["G3956"]],[39,40,["G1577"]]]},{"k":28451,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,5,["G5448"]],[5,7,["G5613"]],[7,8,["G3450"]],[8,10,["G3361"]],[10,11,["G2064"]],[11,12,["G4314"]],[12,13,["G5209"]]]},{"k":28452,"v":[[0,1,["G1161"]],[1,4,["G2064"]],[4,5,["G4314"]],[5,6,["G5209"]],[6,7,["G5030"]],[7,8,["G1437"]],[8,9,["G3588"]],[9,10,["G2962"]],[10,11,["G2309"]],[11,12,["G2532"]],[12,14,["G1097"]],[14,15,["G3756"]],[15,16,["G3588"]],[16,17,["G3056"]],[17,23,["G5448"]],[23,24,["G235"]],[24,25,["G3588"]],[25,26,["G1411"]]]},{"k":28453,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G932"]],[3,5,["G2316"]],[5,7,["G3756"]],[7,8,["G1722"]],[8,9,["G3056"]],[9,10,["G235"]],[10,11,["G1722"]],[11,12,["G1411"]]]},{"k":28454,"v":[[0,1,["G5101"]],[1,2,["G2309"]],[2,6,["G2064"]],[6,7,["G4314"]],[7,8,["G5209"]],[8,9,["G1722"]],[9,11,["G4464"]],[11,12,["G2228"]],[12,13,["G1722"]],[13,14,["G26"]],[14,15,["G5037"]],[15,18,["G4151"]],[18,20,["G4236"]]]},{"k":28455,"v":[[0,3,["G191"]],[3,4,["G3654"]],[4,8,["G4202"]],[8,9,["G1722"]],[9,10,["G5213"]],[10,11,["G2532"]],[11,12,["G5108"]],[12,13,["G4202"]],[13,14,["G3748"]],[14,19,["G3761"]],[19,20,["G3687"]],[20,21,["G1722"]],[21,22,["G3588"]],[22,23,["G1484"]],[23,24,["G5620"]],[24,25,["G5100"]],[25,27,["G2192"]],[27,29,["G3962"]],[29,30,["G1135"]]]},{"k":28456,"v":[[0,1,["G2532"]],[1,2,["G5210"]],[2,3,["G2075"]],[3,5,["G5448"]],[5,6,["G2532"]],[6,8,["G3780"]],[8,9,["G3123"]],[9,10,["G3996"]],[10,11,["G2443"]],[11,15,["G4160"]],[15,16,["G5124"]],[16,17,["G2041"]],[17,21,["G1808"]],[21,22,["G1537"]],[22,23,["G3319"]],[23,24,["G5216"]]]},{"k":28457,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,3,["G3303"]],[3,4,["G5613"]],[4,5,["G548"]],[5,7,["G4983"]],[7,8,["G1161"]],[8,9,["G3918"]],[9,11,["G4151"]],[11,13,["G2919"]],[13,14,["G2235"]],[14,16,["G5613"]],[16,19,["G3918"]],[19,25,["G2716","G3779"]],[25,27,["G5124"]]]},{"k":28458,"v":[[0,1,["G1722"]],[1,2,["G3588"]],[2,3,["G3686"]],[3,5,["G2257"]],[5,6,["G2962"]],[6,7,["G2424"]],[7,8,["G5547"]],[8,10,["G5216"]],[10,13,["G4863"]],[13,14,["G2532"]],[14,15,["G1699"]],[15,16,["G4151"]],[16,17,["G4862"]],[17,18,["G3588"]],[18,19,["G1411"]],[19,21,["G2257"]],[21,22,["G2962"]],[22,23,["G2424"]],[23,24,["G5547"]]]},{"k":28459,"v":[[0,2,["G3860"]],[2,5,["G5108"]],[5,7,["G4567"]],[7,8,["G1519"]],[8,10,["G3639"]],[10,12,["G3588"]],[12,13,["G4561"]],[13,14,["G2443"]],[14,15,["G3588"]],[15,16,["G4151"]],[16,19,["G4982"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G2250"]],[22,24,["G3588"]],[24,25,["G2962"]],[25,26,["G2424"]]]},{"k":28460,"v":[[0,1,["G5216"]],[1,2,["G2745"]],[2,4,["G3756"]],[4,5,["G2570"]],[5,6,["G1492"]],[6,8,["G3756"]],[8,9,["G3754"]],[9,11,["G3398"]],[11,12,["G2219"]],[12,13,["G2220"]],[13,14,["G3588"]],[14,15,["G3650"]],[15,16,["G5445"]]]},{"k":28461,"v":[[0,2,["G1571"]],[2,3,["G3767"]],[3,4,["G3588"]],[4,5,["G3820"]],[5,6,["G2219"]],[6,7,["G2443"]],[7,10,["G5600"]],[10,12,["G3501"]],[12,13,["G5445"]],[13,14,["G2531"]],[14,16,["G2075"]],[16,17,["G106"]],[17,18,["G1063"]],[18,19,["G2532"]],[19,20,["G5547"]],[20,21,["G2257"]],[21,22,["(G3957)"]],[22,24,["G2380"]],[24,25,["G5228"]],[25,26,["G2257"]]]},{"k":28462,"v":[[0,1,["G5620"]],[1,6,["G1858"]],[6,7,["G3361"]],[7,8,["G1722"]],[8,9,["G3820"]],[9,10,["G2219"]],[10,11,["G3366"]],[11,12,["G1722"]],[12,14,["G2219"]],[14,16,["G2549"]],[16,17,["G2532"]],[17,18,["G4189"]],[18,19,["G235"]],[19,20,["G1722"]],[20,22,["G106"]],[22,25,["G1505"]],[25,26,["G2532"]],[26,27,["G225"]]]},{"k":28463,"v":[[0,2,["G1125"]],[2,4,["G5213"]],[4,5,["G1722"]],[5,7,["G1992"]],[7,8,["G3361"]],[8,11,["G4874"]],[11,12,["G4205"]]]},{"k":28464,"v":[[0,1,["G2532"]],[1,2,["G3756"]],[2,3,["G3843"]],[3,5,["G3588"]],[5,6,["G4205"]],[6,8,["G5127"]],[8,9,["G2889"]],[9,10,["G2228"]],[10,12,["G3588"]],[12,13,["G4123"]],[13,14,["G2228"]],[14,15,["G727"]],[15,16,["G2228"]],[16,18,["G1496"]],[18,19,["G1893"]],[19,20,["G686"]],[20,23,["G3784"]],[23,24,["G1831"]],[24,26,["G1537"]],[26,27,["G3588"]],[27,28,["G2889"]]]},{"k":28465,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,5,["G1125"]],[5,7,["G5213"]],[7,8,["G3361"]],[8,11,["G4874"]],[11,12,["G1437"]],[12,14,["G5100"]],[14,17,["G3687"]],[17,19,["G80"]],[19,22,["G4205"]],[22,23,["G2228"]],[23,24,["G4123"]],[24,25,["G2228"]],[25,27,["G1496"]],[27,28,["G2228"]],[28,30,["G3060"]],[30,31,["G2228"]],[31,33,["G3183"]],[33,34,["G2228"]],[34,36,["G727"]],[36,40,["G5108"]],[40,42,["G3366"]],[42,44,["G4906"]]]},{"k":28466,"v":[[0,1,["G1063"]],[1,6,["G5101","G3427"]],[6,8,["G2919"]],[8,13,["G1854","G2532"]],[13,15,["G3780"]],[15,16,["G5210"]],[16,17,["G2919"]],[17,21,["G2080"]]]},{"k":28467,"v":[[0,1,["G1161"]],[1,5,["G1854"]],[5,6,["G2316"]],[6,7,["G2919"]],[7,8,["G2532"]],[8,10,["G1808"]],[10,11,["G1537"]],[11,13,["G5216","G848"]],[13,16,["G4190"]]]},{"k":28468,"v":[[0,1,["G5111"]],[1,2,["G5100"]],[2,4,["G5216"]],[4,5,["G2192"]],[5,7,["G4229"]],[7,8,["G4314"]],[8,9,["G2087"]],[9,12,["G2919"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G94"]],[15,16,["G2532"]],[16,17,["G3780"]],[17,18,["G1909"]],[18,19,["G3588"]],[19,20,["G40"]]]},{"k":28469,"v":[[0,3,["G3756"]],[3,4,["G1492"]],[4,5,["G3754"]],[5,6,["G3588"]],[6,7,["G40"]],[7,9,["G2919"]],[9,10,["G3588"]],[10,11,["G2889"]],[11,12,["G2532"]],[12,13,["G1487"]],[13,14,["G3588"]],[14,15,["G2889"]],[15,18,["G2919"]],[18,19,["G1722"]],[19,20,["G5213"]],[20,21,["G2075"]],[21,23,["G370"]],[23,28,["G2922","G1646"]]]},{"k":28470,"v":[[0,1,["G1492"]],[1,3,["G3756"]],[3,4,["G3754"]],[4,7,["G2919"]],[7,8,["G32"]],[8,11,["G3386"]],[11,17,["G982"]]]},{"k":28471,"v":[[0,1,["G1437"]],[1,2,["G3767"]],[2,3,["(G3303)"]],[3,4,["G2192"]],[4,5,["G2922"]],[5,11,["G982"]],[11,12,["G2523"]],[12,13,["G5128"]],[13,19,["G1848"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G1577"]]]},{"k":28472,"v":[[0,2,["G3004"]],[2,3,["G4314"]],[3,4,["G5213"]],[4,5,["G1791"]],[5,8,["G3779"]],[8,11,["G2076"]],[11,12,["G3756"]],[12,15,["G4680"]],[15,16,["G1722"]],[16,17,["G5213"]],[17,19,["G3761"]],[19,20,["G1520"]],[20,21,["G3739"]],[21,24,["G1410"]],[24,26,["G1252"]],[26,27,["G303","G3319"]],[27,28,["G848"]],[28,29,["G80"]]]},{"k":28473,"v":[[0,1,["G235"]],[1,2,["G80"]],[2,5,["G2919"]],[5,6,["G3326"]],[6,7,["G80"]],[7,8,["G2532"]],[8,9,["G5124"]],[9,10,["G1909"]],[10,12,["G571"]]]},{"k":28474,"v":[[0,1,["G2235"]],[1,3,["G3767","(G3303)"]],[3,4,["G2076"]],[4,5,["G3654"]],[5,7,["G2275"]],[7,8,["G1722"]],[8,9,["G5213"]],[9,10,["G3754"]],[10,14,["G2192","G2917"]],[14,17,["G3326","G1438"]],[17,18,["G1302"]],[18,21,["G3780"]],[21,22,["G3123"]],[22,24,["G91"]],[24,25,["G1302"]],[25,28,["G3780"]],[28,29,["G3123"]],[29,34,["G650"]]]},{"k":28475,"v":[[0,1,["G235"]],[1,2,["G5210"]],[2,4,["G91"]],[4,5,["G2532"]],[5,6,["G650"]],[6,7,["G2532"]],[7,8,["G5023"]],[8,10,["G80"]]]},{"k":28476,"v":[[0,0,["(G2228)"]],[0,1,["G1492"]],[1,3,["G3756"]],[3,4,["G3754"]],[4,6,["G94"]],[6,8,["G3756"]],[8,9,["G2816"]],[9,11,["G932"]],[11,13,["G2316"]],[13,15,["G3361"]],[15,16,["G4105"]],[16,17,["G3777"]],[17,18,["G4205"]],[18,19,["G3777"]],[19,20,["G1496"]],[20,21,["G3777"]],[21,22,["G3432"]],[22,23,["G3777"]],[23,24,["G3120"]],[24,25,["G3777"]],[25,30,["G733"]]]},{"k":28477,"v":[[0,1,["G3777"]],[1,2,["G2812"]],[2,3,["G3777"]],[3,4,["G4123"]],[4,5,["G3777"]],[5,6,["G3183"]],[6,7,["G3756"]],[7,8,["G3060"]],[8,9,["G3756"]],[9,10,["G727"]],[10,11,["(G3756)"]],[11,12,["G2816"]],[12,14,["G932"]],[14,16,["G2316"]]]},{"k":28478,"v":[[0,1,["G2532"]],[1,2,["G5023"]],[2,3,["G2258"]],[3,4,["G5100"]],[4,7,["G235"]],[7,10,["G628"]],[10,11,["G235"]],[11,14,["G37"]],[14,15,["G235"]],[15,18,["G1344"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G3686"]],[21,23,["G3588"]],[23,24,["G2962"]],[24,25,["G2424"]],[25,26,["G2532"]],[26,27,["G1722"]],[27,28,["G3588"]],[28,29,["G4151"]],[29,31,["G2257"]],[31,32,["G2316"]]]},{"k":28479,"v":[[0,2,["G3956"]],[2,4,["G1832"]],[4,6,["G3427"]],[6,7,["G235"]],[7,9,["G3956"]],[9,12,["G4851","G3756"]],[12,14,["G3956"]],[14,16,["G1832"]],[16,18,["G3427"]],[18,19,["G235"]],[19,20,["G1473"]],[20,22,["G3756"]],[22,27,["G1850"]],[27,28,["G5259"]],[28,29,["G5100"]]]},{"k":28480,"v":[[0,1,["G1033"]],[1,3,["G3588"]],[3,4,["G2836"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G2836"]],[7,9,["G1033"]],[9,10,["G1161"]],[10,11,["G2316"]],[11,13,["G2673"]],[13,14,["G2532"]],[14,15,["G5026"]],[15,16,["G2532"]],[16,17,["G5023"]],[17,18,["G1161"]],[18,19,["G3588"]],[19,20,["G4983"]],[20,22,["G3756"]],[22,24,["G4202"]],[24,25,["G235"]],[25,27,["G3588"]],[27,28,["G2962"]],[28,29,["G2532"]],[29,30,["G3588"]],[30,31,["G2962"]],[31,33,["G3588"]],[33,34,["G4983"]]]},{"k":28481,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,4,["G2532"]],[4,6,["G1453"]],[6,7,["G3588"]],[7,8,["G2962"]],[8,9,["G2532"]],[9,13,["G1825"]],[13,14,["G2248"]],[14,15,["G1223"]],[15,17,["G848"]],[17,18,["G1411"]]]},{"k":28482,"v":[[0,1,["G1492"]],[1,3,["G3756"]],[3,4,["G3754"]],[4,5,["G5216"]],[5,6,["G4983"]],[6,7,["G2076"]],[7,9,["G3196"]],[9,11,["G5547"]],[11,14,["G3767"]],[14,15,["G142"]],[15,16,["G3588"]],[16,17,["G3196"]],[17,19,["G5547"]],[19,21,["G4160"]],[21,24,["G3196"]],[24,27,["G4204"]],[27,29,["G1096","G3361"]]]},{"k":28483,"v":[[0,1,["G2228"]],[1,2,["G1492"]],[2,4,["G3756"]],[4,5,["G3754"]],[5,9,["G2853"]],[9,12,["G4204"]],[12,13,["G2076"]],[13,14,["G1520"]],[14,15,["G4983"]],[15,16,["G1063"]],[16,17,["G1417"]],[17,18,["G5346"]],[18,21,["G2071"]],[21,22,["(G3391)"]],[22,23,["G4561"]]]},{"k":28484,"v":[[0,1,["G1161"]],[1,5,["G2853"]],[5,7,["G3588"]],[7,8,["G2962"]],[8,9,["G2076"]],[9,10,["G1520"]],[10,11,["G4151"]]]},{"k":28485,"v":[[0,1,["G5343"]],[1,2,["G4202"]],[2,3,["G3956"]],[3,4,["G265"]],[4,5,["G3739"]],[5,7,["G444"]],[7,8,["G4160","G1437"]],[8,9,["G2076"]],[9,10,["G1622"]],[10,11,["G3588"]],[11,12,["G4983"]],[12,13,["G1161"]],[13,17,["G4203"]],[17,18,["G264"]],[18,19,["G1519"]],[19,21,["G2398"]],[21,22,["G4983"]]]},{"k":28486,"v":[[0,1,["G2228"]],[1,2,["G1492"]],[2,4,["G3756"]],[4,5,["G3754"]],[5,6,["G5216"]],[6,7,["G4983"]],[7,8,["G2076"]],[8,10,["G3485"]],[10,12,["G3588"]],[12,13,["G40"]],[13,14,["G4151"]],[14,17,["G1722"]],[17,18,["G5213"]],[18,19,["G3739"]],[19,21,["G2192"]],[21,22,["G575"]],[22,23,["G2316"]],[23,24,["G2532"]],[24,26,["G2075"]],[26,27,["G3756"]],[27,29,["G1438"]]]},{"k":28487,"v":[[0,1,["G1063"]],[1,4,["G59"]],[4,7,["G5092"]],[7,8,["G1211"]],[8,9,["G1392"]],[9,10,["G2316"]],[10,11,["G1722"]],[11,12,["G5216"]],[12,13,["G4983"]],[13,14,["G2532"]],[14,15,["G1722"]],[15,16,["G5216"]],[16,17,["G4151"]],[17,18,["G3748"]],[18,19,["G2076"]],[19,20,["G2316"]]]},{"k":28488,"v":[[0,1,["G1161"]],[1,2,["G4012"]],[2,5,["G3739"]],[5,7,["G1125"]],[7,9,["G3427"]],[9,12,["G2570"]],[12,15,["G444"]],[15,16,["G3361"]],[16,18,["G680"]],[18,20,["G1135"]]]},{"k":28489,"v":[[0,1,["G1161"]],[1,3,["(G1223)"]],[3,4,["G4202"]],[4,7,["G1538"]],[7,8,["G2192"]],[8,10,["G1438"]],[10,11,["G1135"]],[11,12,["G2532"]],[12,15,["G1538"]],[15,16,["G2192"]],[16,18,["G2398"]],[18,19,["G435"]]]},{"k":28490,"v":[[0,2,["G3588"]],[2,3,["G435"]],[3,4,["G591"]],[4,6,["G3588"]],[6,7,["G1135"]],[7,8,["G3784"]],[8,9,["G2133"]],[9,10,["G1161"]],[10,11,["G3668"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G1135"]],[14,16,["G3588"]],[16,17,["G435"]]]},{"k":28491,"v":[[0,1,["G3588"]],[1,2,["G1135"]],[2,5,["G1850","G3756"]],[5,8,["G2398"]],[8,9,["G4983"]],[9,10,["G235"]],[10,11,["G3588"]],[11,12,["G435"]],[12,13,["G1161"]],[13,14,["G3668"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G435"]],[17,20,["G1850","G3756"]],[20,23,["G2398"]],[23,24,["G4983"]],[24,25,["G235"]],[25,26,["G3588"]],[26,27,["G1135"]]]},{"k":28492,"v":[[0,1,["G650"]],[1,3,["G3361"]],[3,6,["G240"]],[6,7,["G1509","G302"]],[7,10,["G1537"]],[10,11,["G4859"]],[11,12,["G4314"]],[12,14,["G2540"]],[14,15,["G2443"]],[15,19,["G4980"]],[19,21,["G3521"]],[21,22,["G2532"]],[22,23,["G4335"]],[23,24,["G2532"]],[24,26,["G4905"]],[26,27,["G3825"]],[27,28,["G2443"]],[28,29,["G4567"]],[29,30,["G3985"]],[30,31,["G5209"]],[31,32,["G3361"]],[32,33,["G1223"]],[33,34,["G5216"]],[34,35,["G192"]]]},{"k":28493,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,4,["G5124"]],[4,5,["G2596"]],[5,6,["G4774"]],[6,8,["G3756"]],[8,9,["G2596"]],[9,10,["G2003"]]]},{"k":28494,"v":[[0,1,["G1063"]],[1,3,["G2309"]],[3,5,["G3956"]],[5,6,["G444"]],[6,7,["G1511"]],[7,9,["G5613","G2532"]],[9,11,["G1683"]],[11,12,["G235"]],[12,14,["G1538"]],[14,15,["G2192"]],[15,17,["G2398"]],[17,18,["G5486"]],[18,19,["G1537"]],[19,20,["G2316"]],[20,21,["G3739","G3303"]],[21,24,["G3779"]],[24,25,["G1161"]],[25,26,["G3739"]],[26,28,["G3779"]]]},{"k":28495,"v":[[0,2,["G3004"]],[2,3,["G1161"]],[3,5,["G3588"]],[5,6,["G22"]],[6,7,["G2532"]],[7,8,["G5503"]],[8,10,["G2076"]],[10,11,["G2570"]],[11,13,["G846"]],[13,14,["G1437"]],[14,16,["G3306"]],[16,19,["G2504","G5613"]]]},{"k":28496,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,5,["G1467","G3756"]],[5,8,["G1060"]],[8,9,["G1063"]],[9,11,["G2076"]],[11,12,["G2909"]],[12,14,["G1060"]],[14,15,["G2228"]],[15,17,["G4448"]]]},{"k":28497,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1060"]],[4,6,["G3853"]],[6,8,["G3756"]],[8,9,["G1473"]],[9,10,["G235"]],[10,11,["G3588"]],[11,12,["G2962"]],[12,14,["G3361"]],[14,16,["G1135"]],[16,17,["G5563"]],[17,18,["G575"]],[18,20,["G435"]]]},{"k":28498,"v":[[0,1,["G1161"]],[1,2,["G2532"]],[2,3,["G1437"]],[3,5,["G5563"]],[5,8,["G3306"]],[8,9,["G22"]],[9,10,["G2228"]],[10,12,["G2644"]],[12,15,["G435"]],[15,16,["G2532"]],[16,18,["G3361"]],[18,20,["G435"]],[20,22,["G863"]],[22,24,["G1135"]]]},{"k":28499,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G3062"]],[4,5,["G3004"]],[5,6,["G1473"]],[6,7,["G3756"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,11,["G1536"]],[11,12,["G80"]],[12,13,["G2192"]],[13,15,["G1135"]],[15,18,["G571"]],[18,19,["G2532"]],[19,20,["G846"]],[20,22,["G4909"]],[22,24,["G3611"]],[24,25,["G3326"]],[25,26,["G846"]],[26,29,["G3361"]],[29,32,["G863","G846"]]]},{"k":28500,"v":[[0,1,["G2532"]],[1,3,["G1135"]],[3,4,["G3748"]],[4,5,["G2192"]],[5,7,["G435"]],[7,10,["G571"]],[10,11,["G2532"]],[11,13,["G846"]],[13,15,["G4909"]],[15,17,["G3611"]],[17,18,["G3326"]],[18,19,["G846"]],[19,22,["G3361"]],[22,23,["G863"]],[23,24,["G846"]]]},{"k":28501,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G571"]],[3,4,["G435"]],[4,6,["G37"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G1135"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G571"]],[12,13,["G1135"]],[13,15,["G37"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G435"]],[18,19,["G1893","(G686)"]],[19,20,["G2076"]],[20,21,["G5216"]],[21,22,["G5043"]],[22,23,["G169"]],[23,24,["G1161"]],[24,25,["G3568"]],[25,26,["G2076"]],[26,28,["G40"]]]},{"k":28502,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G571"]],[4,5,["G5563"]],[5,8,["G5563"]],[8,10,["G80"]],[10,11,["G2228"]],[11,13,["G79"]],[13,15,["G3756"]],[15,17,["G1402"]],[17,18,["G1722"]],[18,19,["G5108"]],[19,21,["G1161"]],[21,22,["G2316"]],[22,24,["G2564"]],[24,25,["G2248"]],[25,26,["G1722"]],[26,27,["G1515"]]]},{"k":28503,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,3,["G1492"]],[3,6,["G1135"]],[6,7,["G1487"]],[7,10,["G4982"]],[10,12,["G435"]],[12,13,["G2228"]],[13,14,["G5101"]],[14,15,["G1492"]],[15,18,["G435"]],[18,19,["G1487"]],[19,22,["G4982"]],[22,24,["G1135"]]]},{"k":28504,"v":[[0,1,["G1508"]],[1,2,["G5613"]],[2,3,["G2316"]],[3,5,["G3307"]],[5,8,["G1538"]],[8,9,["G5613"]],[9,10,["G3588"]],[10,11,["G2962"]],[11,13,["G2564"]],[13,15,["G1538"]],[15,16,["G3779"]],[16,19,["G4043"]],[19,20,["G2532"]],[20,21,["G3779"]],[21,22,["G1299"]],[22,24,["G1722"]],[24,25,["G3956"]],[25,26,["G1577"]]]},{"k":28505,"v":[[0,3,["G5100"]],[3,4,["G2564"]],[4,6,["G4059"]],[6,9,["G3361"]],[9,11,["G1986"]],[11,13,["G5100"]],[13,14,["G2564"]],[14,15,["G1722"]],[15,16,["G203"]],[16,19,["G3361"]],[19,21,["G4059"]]]},{"k":28506,"v":[[0,1,["G4061"]],[1,2,["G2076"]],[2,3,["G3762"]],[3,4,["G2532"]],[4,5,["G203"]],[5,6,["G2076"]],[6,7,["G3762"]],[7,8,["G235"]],[8,10,["G5084"]],[10,13,["G1785"]],[13,15,["G2316"]]]},{"k":28507,"v":[[0,3,["G1538","(G1722","G5026)"]],[3,4,["G3306"]],[4,5,["G1722"]],[5,7,["G3588"]],[7,8,["G2821"]],[8,9,["G3739"]],[9,12,["G2564"]]]},{"k":28508,"v":[[0,3,["G2564"]],[3,6,["G1401"]],[6,7,["G3199"]],[7,8,["G3361"]],[8,9,["(G4671)"]],[9,11,["G235"]],[11,12,["G1487"]],[12,14,["G1410"]],[14,16,["G1096"]],[16,17,["G1658"]],[17,18,["G5530"]],[18,20,["G3123"]]]},{"k":28509,"v":[[0,1,["G1063"]],[1,5,["G2564"]],[5,6,["G1722"]],[6,8,["G2962"]],[8,11,["G1401"]],[11,12,["G2076"]],[12,14,["G2962"]],[14,15,["G558"]],[15,16,["G3668"]],[16,17,["G2532"]],[17,21,["G2564"]],[21,23,["G1658"]],[23,24,["G2076"]],[24,25,["G5547"]],[25,26,["G1401"]]]},{"k":28510,"v":[[0,3,["G59"]],[3,6,["G5092"]],[6,7,["G1096"]],[7,8,["G3361"]],[8,11,["G1401"]],[11,13,["G444"]]]},{"k":28511,"v":[[0,1,["G80"]],[1,4,["G1538"]],[4,5,["G1722","G3739"]],[5,8,["G2564"]],[8,9,["G1722","G5129"]],[9,10,["G3306"]],[10,11,["G3844"]],[11,12,["G2316"]]]},{"k":28512,"v":[[0,1,["G1161"]],[1,2,["G4012"]],[2,3,["G3933"]],[3,5,["G2192"]],[5,6,["G3756"]],[6,7,["G2003"]],[7,10,["G2962"]],[10,11,["G1161"]],[11,13,["G1325"]],[13,15,["G1106"]],[15,16,["G5613"]],[16,21,["G1653"]],[21,22,["G5259"]],[22,24,["G2962"]],[24,26,["G1511"]],[26,27,["G4103"]]]},{"k":28513,"v":[[0,2,["G3543"]],[2,3,["G3767"]],[3,5,["G5124"]],[5,6,["G5225"]],[6,7,["G2570"]],[7,8,["G1223"]],[8,9,["G3588"]],[9,10,["G1764"]],[10,11,["G318"]],[11,14,["G3754"]],[14,17,["G2570"]],[17,20,["G444"]],[20,21,["G3779"]],[21,23,["G1511"]]]},{"k":28514,"v":[[0,3,["G1210"]],[3,6,["G1135"]],[6,7,["G2212"]],[7,8,["G3361"]],[8,11,["G3080"]],[11,14,["G3089"]],[14,15,["G575"]],[15,17,["G1135"]],[17,18,["G2212"]],[18,19,["G3361"]],[19,21,["G1135"]]]},{"k":28515,"v":[[0,1,["G1161"]],[1,2,["G2532"]],[2,3,["G1437"]],[3,5,["G1060"]],[5,8,["G3756"]],[8,9,["G264"]],[9,10,["G2532"]],[10,11,["G1437"]],[11,13,["G3933"]],[13,14,["G1060"]],[14,17,["G3756"]],[17,18,["G264"]],[18,19,["G1161"]],[19,20,["G5108"]],[20,22,["G2192"]],[22,23,["G2347"]],[23,25,["G3588"]],[25,26,["G4561"]],[26,27,["G1161"]],[27,28,["G1473"]],[28,29,["G5339"]],[29,30,["G5216"]]]},{"k":28516,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,4,["G5346"]],[4,5,["G80"]],[5,6,["G3588"]],[6,7,["G2540"]],[7,9,["G4958"]],[9,11,["G2076","G3063"]],[11,12,["G2443"]],[12,13,["G2532"]],[13,16,["G2192"]],[16,17,["G1135"]],[17,18,["G5600"]],[18,20,["G5613"]],[20,22,["G2192"]],[22,23,["G3361"]]]},{"k":28517,"v":[[0,1,["G2532"]],[1,4,["G2799"]],[4,6,["G5613"]],[6,8,["G2799"]],[8,9,["G3361"]],[9,10,["G2532"]],[10,13,["G5463"]],[13,15,["G5613"]],[15,17,["G5463"]],[17,18,["G3361"]],[18,19,["G2532"]],[19,22,["G59"]],[22,24,["G5613"]],[24,26,["G2722"]],[26,27,["G3361"]]]},{"k":28518,"v":[[0,1,["G2532"]],[1,4,["G5530"]],[4,5,["G5129"]],[5,6,["G2889"]],[6,7,["G5613"]],[7,8,["G3361"]],[8,9,["G2710"]],[9,11,["G1063"]],[11,12,["G3588"]],[12,13,["G4976"]],[13,15,["G5127"]],[15,16,["G2889"]],[16,18,["G3855"]]]},{"k":28519,"v":[[0,1,["G1161"]],[1,3,["G2309"]],[3,4,["G1511"]],[4,5,["G5209"]],[5,7,["G275"]],[7,11,["G22"]],[11,13,["G3309"]],[13,15,["G3588"]],[15,19,["G3588"]],[19,20,["G2962"]],[20,21,["G4459"]],[21,24,["G700"]],[24,25,["G3588"]],[25,26,["G2962"]]]},{"k":28520,"v":[[0,1,["G1161"]],[1,5,["G1060"]],[5,7,["G3309"]],[7,9,["G3588"]],[9,13,["G3588"]],[13,14,["G2889"]],[14,15,["G4459"]],[15,18,["G700"]],[18,20,["G1135"]]]},{"k":28521,"v":[[0,5,["G3307"]],[5,7,["G1135"]],[7,8,["G2532"]],[8,10,["G3933"]],[10,11,["G3588"]],[11,13,["G22"]],[13,15,["G3309"]],[15,17,["G3588"]],[17,19,["G3588"]],[19,20,["G2962"]],[20,21,["G2443"]],[21,24,["G5600"]],[24,25,["G40"]],[25,26,["G2532"]],[26,28,["G4983"]],[28,29,["G2532"]],[29,31,["G4151"]],[31,32,["G1161"]],[32,36,["G1060"]],[36,38,["G3309"]],[38,40,["G3588"]],[40,42,["G3588"]],[42,43,["G2889"]],[43,44,["G4459"]],[44,47,["G700"]],[47,49,["G435"]]]},{"k":28522,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,4,["G3004"]],[4,5,["G4314"]],[5,7,["G5216","G846"]],[7,8,["G4851"]],[8,9,["G3756"]],[9,10,["G2443"]],[10,13,["G1911"]],[13,15,["G1029"]],[15,17,["G5213"]],[17,18,["G235"]],[18,19,["G4314"]],[19,23,["G2158"]],[23,24,["G2532"]],[24,29,["G2145"]],[29,30,["G3588"]],[30,31,["G2962"]],[31,33,["G563"]]]},{"k":28523,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G5100"]],[4,5,["G3543"]],[5,10,["G807"]],[10,11,["G1909"]],[11,12,["G848"]],[12,13,["G3933"]],[13,14,["G1437"]],[14,21,["G5600","G5230"]],[21,22,["G2532"]],[22,23,["G3784"]],[23,24,["G3779"]],[24,25,["G1096"]],[25,28,["G4160"]],[28,29,["G3739"]],[29,31,["G2309"]],[31,33,["G264"]],[33,34,["G3756"]],[34,37,["G1060"]]]},{"k":28524,"v":[[0,1,["G1161"]],[1,2,["G3739"]],[2,4,["G2476"]],[4,5,["G1476"]],[5,6,["G1722"]],[6,8,["G2588"]],[8,9,["G2192"]],[9,10,["G3361"]],[10,11,["G318"]],[11,12,["G1161"]],[12,13,["G2192"]],[13,14,["G1849"]],[14,15,["G4012"]],[15,17,["G2398"]],[17,18,["G2307"]],[18,19,["G2532"]],[19,21,["G5124"]],[21,22,["G2919"]],[22,23,["G1722"]],[23,24,["G848"]],[24,25,["G2588"]],[25,29,["G5083"]],[29,30,["G1438"]],[30,31,["G3933"]],[31,32,["G4160"]],[32,33,["G2573"]]]},{"k":28525,"v":[[0,2,["G5620","(G2532)"]],[2,8,["G1547"]],[8,9,["G4160"]],[9,10,["G2573"]],[10,11,["G1161"]],[11,18,["G1547","G3361"]],[18,19,["G4160"]],[19,20,["G2908"]]]},{"k":28526,"v":[[0,2,["G1135"]],[2,4,["G1210"]],[4,7,["G3551"]],[7,10,["G1909","G3745","G5550"]],[10,11,["G848"]],[11,12,["G435"]],[12,13,["G2198"]],[13,14,["G1161"]],[14,15,["G1437"]],[15,16,["G848"]],[16,17,["G435"]],[17,19,["G2837"]],[19,21,["G2076"]],[21,23,["G1658"]],[23,26,["G1060"]],[26,28,["G3739"]],[28,30,["G2309"]],[30,31,["G3440"]],[31,32,["G1722"]],[32,34,["G2962"]]]},{"k":28527,"v":[[0,1,["G1161"]],[1,3,["G2076"]],[3,4,["G3107"]],[4,5,["G1437"]],[5,7,["G3779"]],[7,8,["G3306"]],[8,9,["G2596"]],[9,10,["G1699"]],[10,11,["G1106"]],[11,12,["G1161"]],[12,14,["G1380"]],[14,17,["G2504"]],[17,18,["G2192"]],[18,20,["G4151"]],[20,22,["G2316"]]]},{"k":28528,"v":[[0,1,["G1161"]],[1,3,["G4012"]],[3,7,["G1494"]],[7,9,["G1492"]],[9,10,["G3754"]],[10,12,["G3956"]],[12,13,["G2192"]],[13,14,["G1108"]],[14,15,["G1108"]],[15,17,["G5448"]],[17,18,["G1161"]],[18,19,["G26"]],[19,20,["G3618"]]]},{"k":28529,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G5100"]],[4,5,["G1380"]],[5,8,["G1492"]],[8,10,["G5100"]],[10,12,["G1097"]],[12,13,["G3762"]],[13,14,["G3764"]],[14,15,["G2531"]],[15,17,["G1163"]],[17,19,["G1097"]]]},{"k":28530,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G5100"]],[4,5,["G25"]],[5,6,["G2316"]],[6,8,["G3778"]],[8,10,["G1097"]],[10,11,["G5259"]],[11,12,["G846"]]]},{"k":28531,"v":[[0,2,["G4012"]],[2,3,["G3767"]],[3,4,["G3588"]],[4,5,["G1035"]],[5,15,["G1494"]],[15,17,["G1492"]],[17,18,["G3754"]],[18,20,["G1497"]],[20,22,["G3762"]],[22,23,["G1722"]],[23,25,["G2889"]],[25,26,["G2532"]],[26,27,["G3754"]],[27,30,["G3762"]],[30,31,["G2087"]],[31,32,["G2316"]],[32,33,["G1508"]],[33,34,["G1520"]]]},{"k":28532,"v":[[0,1,["G1063"]],[1,2,["G2532","G1512"]],[2,4,["G1526"]],[4,7,["G3004"]],[7,8,["G2316"]],[8,9,["G1535"]],[9,10,["G1722"]],[10,11,["G3772"]],[11,12,["G1535"]],[12,13,["G1909"]],[13,14,["G1093"]],[14,15,["G5618"]],[15,17,["G1526"]],[17,18,["G2316"]],[18,19,["G4183"]],[19,20,["G2532"]],[20,21,["G2962"]],[21,22,["G4183"]]]},{"k":28533,"v":[[0,1,["G235"]],[1,3,["G2254"]],[3,7,["G1520"]],[7,8,["G2316"]],[8,9,["G3588"]],[9,10,["G3962"]],[10,11,["G1537"]],[11,12,["G3739"]],[12,15,["G3956"]],[15,16,["G2532"]],[16,17,["G2249"]],[17,18,["G1519"]],[18,19,["G846"]],[19,20,["G2532"]],[20,21,["G1520"]],[21,22,["G2962"]],[22,23,["G2424"]],[23,24,["G5547"]],[24,25,["G1223"]],[25,26,["G3739"]],[26,29,["G3956"]],[29,30,["G2532"]],[30,31,["G2249"]],[31,32,["G1223"]],[32,33,["G846"]]]},{"k":28534,"v":[[0,1,["G235"]],[1,4,["G3756"]],[4,5,["G1722"]],[5,7,["G3956"]],[7,9,["G1108"]],[9,10,["G1161"]],[10,11,["G5100"]],[11,13,["G4893"]],[13,15,["G3588"]],[15,16,["G1497"]],[16,17,["G2193"]],[17,19,["G737"]],[19,20,["G2068"]],[20,22,["G5613"]],[22,28,["G1494"]],[28,29,["G2532"]],[29,30,["G848"]],[30,31,["G4893"]],[31,32,["G5607"]],[32,33,["G772"]],[33,35,["G3435"]]]},{"k":28535,"v":[[0,1,["G1161"]],[1,2,["G1033"]],[2,3,["G3936"]],[3,4,["G2248"]],[4,5,["G3756"]],[5,7,["G2316"]],[7,8,["G1063"]],[8,9,["G3777"]],[9,10,["G1437"]],[10,12,["G5315"]],[12,16,["G4052"]],[16,17,["G3777"]],[17,18,["G1437"]],[18,20,["G5315"]],[20,21,["G3361"]],[21,25,["G5302"]]]},{"k":28536,"v":[[0,1,["G1161"]],[1,3,["G991"]],[3,7,["G3381"]],[7,8,["G3778"]],[8,9,["G1849"]],[9,11,["G5216"]],[11,12,["G1096"]],[12,14,["G4348"]],[14,19,["G770"]]]},{"k":28537,"v":[[0,1,["G1063"]],[1,2,["G1437"]],[2,4,["G5100"]],[4,5,["G1492"]],[5,6,["G4571"]],[6,8,["G2192"]],[8,9,["G1108"]],[9,12,["G2621"]],[12,13,["G1722"]],[13,16,["G1493"]],[16,18,["G3780"]],[18,19,["G3588"]],[19,20,["G4893"]],[20,22,["G846"]],[22,24,["G5607"]],[24,25,["G772"]],[25,27,["G3618"]],[27,29,["G2068"]],[29,36,["G1494"]]]},{"k":28538,"v":[[0,1,["G2532"]],[1,2,["G1909"]],[2,3,["G4674"]],[3,4,["G1108"]],[4,6,["G3588"]],[6,7,["G770"]],[7,8,["G80"]],[8,9,["G622"]],[9,10,["G1223"]],[10,11,["G3739"]],[11,12,["G5547"]],[12,13,["G599"]]]},{"k":28539,"v":[[0,1,["G1161"]],[1,4,["G264"]],[4,5,["G3779"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G80"]],[8,9,["G2532"]],[9,10,["G5180"]],[10,11,["G848"]],[11,12,["G770"]],[12,13,["G4893"]],[13,15,["G264"]],[15,16,["G1519"]],[16,17,["G5547"]]]},{"k":28540,"v":[[0,1,["G1355"]],[1,2,["G1487"]],[2,3,["G1033"]],[3,8,["G4624","G3450","G80"]],[8,11,["G5315"]],[11,12,["G3364"]],[12,13,["G2907"]],[13,17,["G1519","G3588","G165"]],[17,18,["G3363"]],[18,24,["G4624","G3450","G80"]]]},{"k":28541,"v":[[0,1,["G1510"]],[1,3,["G3756"]],[3,5,["G652"]],[5,6,["G1510"]],[6,8,["G3756"]],[8,9,["G1658"]],[9,12,["G3780"]],[12,13,["G3708"]],[13,14,["G2424"]],[14,15,["G5547"]],[15,16,["G2257"]],[16,17,["G2962"]],[17,18,["G2075"]],[18,19,["G3756"]],[19,20,["G5210"]],[20,21,["G3450"]],[21,22,["G2041"]],[22,23,["G1722"]],[23,25,["G2962"]]]},{"k":28542,"v":[[0,1,["G1487"]],[1,3,["G1510"]],[3,4,["G3756"]],[4,6,["G652"]],[6,8,["G243"]],[8,9,["G235"]],[9,10,["G1065"]],[10,12,["G1510"]],[12,14,["G5213"]],[14,15,["G1063"]],[15,16,["G3588"]],[16,17,["G4973"]],[17,19,["G1699"]],[19,20,["G651"]],[20,21,["G2075"]],[21,22,["G5210"]],[22,23,["G1722"]],[23,25,["G2962"]]]},{"k":28543,"v":[[0,1,["G1699"]],[1,2,["G627"]],[2,7,["G350"]],[7,8,["G1691"]],[8,9,["G2076"]],[9,10,["G3778"]]]},{"k":28544,"v":[[0,1,["G2192"]],[1,3,["G3378"]],[3,4,["G1849"]],[4,6,["G5315"]],[6,7,["G2532"]],[7,9,["G4095"]]]},{"k":28545,"v":[[0,1,["G2192"]],[1,3,["G3378"]],[3,4,["G1849"]],[4,7,["G4013"]],[7,9,["G79"]],[9,11,["G1135"]],[11,14,["G5613","G2532"]],[14,15,["G3062"]],[15,16,["G652"]],[16,17,["G2532"]],[17,19,["G3588"]],[19,20,["G80"]],[20,22,["G3588"]],[22,23,["G2962"]],[23,24,["G2532"]],[24,25,["G2786"]]]},{"k":28546,"v":[[0,1,["G2228"]],[1,2,["G1473"]],[2,3,["G3441"]],[3,4,["G2532"]],[4,5,["G921"]],[5,6,["G2192"]],[6,7,["G3756"]],[7,9,["G1849"]],[9,12,["G2038","G3361"]]]},{"k":28547,"v":[[0,1,["G5101"]],[1,4,["G4754"]],[4,6,["G4218"]],[6,9,["G2398"]],[9,10,["G3800"]],[10,11,["G5101"]],[11,12,["G5452"]],[12,14,["G290"]],[14,15,["G2532"]],[15,16,["G2068"]],[16,17,["G3756"]],[17,18,["G1537"]],[18,19,["G3588"]],[19,20,["G2590"]],[20,21,["G848"]],[21,22,["G2228"]],[22,23,["G5101"]],[23,24,["G4165"]],[24,26,["G4167"]],[26,27,["G2532"]],[27,28,["G2068"]],[28,29,["G3756"]],[29,30,["G1537"]],[30,31,["G3588"]],[31,32,["G1051"]],[32,34,["G3588"]],[34,35,["G4167"]]]},{"k":28548,"v":[[0,1,["G2980"]],[1,4,["G5023","(G3361)"]],[4,5,["G2596"]],[5,7,["G444"]],[7,8,["G2228"]],[8,9,["G3004"]],[9,10,["G3780"]],[10,11,["G3588"]],[11,12,["G3551"]],[12,14,["G5023"]],[14,15,["G2532"]]]},{"k":28549,"v":[[0,1,["G1063"]],[1,4,["G1125"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G3551"]],[7,9,["G3475"]],[9,12,["G3756"]],[12,13,["G5392"]],[13,18,["G1016"]],[18,23,["G248"]],[23,24,["(G3361)"]],[24,25,["G2316"]],[25,27,["G3199"]],[27,29,["G1016"]]]},{"k":28550,"v":[[0,1,["G2228"]],[1,2,["G3004"]],[2,5,["G3843"]],[5,8,["G1223","G2248"]],[8,11,["G1223","G2248"]],[11,13,["G1063"]],[13,16,["G1125"]],[16,17,["G3754"]],[17,20,["G722"]],[20,21,["G3784"]],[21,22,["G722"]],[22,23,["G1909"]],[23,24,["G1680"]],[24,25,["G2532"]],[25,29,["G248"]],[29,30,["G1909"]],[30,31,["G1680"]],[31,34,["G3348"]],[34,36,["G848"]],[36,37,["G1680"]]]},{"k":28551,"v":[[0,1,["G1487"]],[1,2,["G2249"]],[2,4,["G4687"]],[4,6,["G5213"]],[6,8,["G4152"]],[8,13,["G3173"]],[13,14,["G1487"]],[14,15,["G2249"]],[15,17,["G2325"]],[17,18,["G5216"]],[18,20,["G4559"]]]},{"k":28552,"v":[[0,1,["G1487"]],[1,2,["G243"]],[2,4,["G3348"]],[4,7,["G1849"]],[7,9,["G5216"]],[9,11,["G3756"]],[11,12,["G2249"]],[12,13,["G3123"]],[13,14,["G235"]],[14,17,["G3756"]],[17,18,["G5530"]],[18,19,["G5026"]],[19,20,["G1849"]],[20,21,["G235"]],[21,22,["G4722"]],[22,24,["G3956"]],[24,25,["G3363"]],[25,28,["G1325","G5100","G1464"]],[28,29,["G3588"]],[29,30,["G2098"]],[30,32,["G5547"]]]},{"k":28553,"v":[[0,3,["G3756"]],[3,4,["G1492"]],[4,5,["G3754"]],[5,8,["G2038"]],[8,11,["G2413"]],[11,12,["G2068"]],[12,16,["G1537"]],[16,17,["G3588"]],[17,18,["G2411"]],[18,22,["G4332"]],[22,24,["G3588"]],[24,25,["G2379"]],[25,28,["G4829"]],[28,29,["G3588"]],[29,30,["G2379"]]]},{"k":28554,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,4,["G3588"]],[4,5,["G2962"]],[5,6,["G1299"]],[6,10,["G2605"]],[10,11,["G3588"]],[11,12,["G2098"]],[12,14,["G2198"]],[14,15,["G1537"]],[15,16,["G3588"]],[16,17,["G2098"]]]},{"k":28555,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,4,["G5530"]],[4,5,["G3762"]],[5,8,["G5130"]],[8,9,["G1161","G3756"]],[9,12,["G1125"]],[12,14,["G5023"]],[14,15,["G2443"]],[15,19,["G3779"]],[19,20,["G1096"]],[20,21,["G1722"]],[21,22,["G1698"]],[22,23,["G1063"]],[23,26,["G2570"]],[26,28,["G3427"]],[28,29,["(G3123)"]],[29,30,["G599"]],[30,31,["G2228"]],[31,32,["G2443"]],[32,34,["G5100"]],[34,39,["G2758","G3450","G2745"]]]},{"k":28556,"v":[[0,1,["G1063"]],[1,2,["G1437"]],[2,6,["G2097"]],[6,7,["G3427"]],[7,8,["G2076"]],[8,9,["G3756"]],[9,12,["G2745"]],[12,13,["G1063"]],[13,14,["G318"]],[14,17,["G1945"]],[17,18,["G3427"]],[18,19,["G1161"]],[19,20,["G3759"]],[20,21,["G2076"]],[21,23,["G3427"]],[23,24,["G1437"]],[24,29,["G2097","G3361"]]]},{"k":28557,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,4,["G4238"]],[4,6,["G5124"]],[6,7,["G1635"]],[7,9,["G2192"]],[9,11,["G3408"]],[11,12,["G1161"]],[12,13,["G1487"]],[13,16,["G210"]],[16,18,["G3622"]],[18,23,["G4100"]],[23,25,[]]]},{"k":28558,"v":[[0,1,["G5101"]],[1,2,["G2076"]],[2,3,["G3427"]],[3,4,["G3408"]],[4,5,["G3767"]],[5,7,["G2443"]],[7,12,["G2097"]],[12,15,["G5087"]],[15,16,["G3588"]],[16,17,["G2098"]],[17,19,["G5547"]],[19,21,["G77"]],[21,24,["G2710"]],[24,25,["G3361"]],[25,26,["G3450"]],[26,27,["G1849"]],[27,28,["G1722"]],[28,29,["G3588"]],[29,30,["G2098"]]]},{"k":28559,"v":[[0,1,["G1063"]],[1,4,["G5607"]],[4,5,["G1658"]],[5,6,["G1537"]],[6,7,["G3956"]],[7,14,["G1402","G1683"]],[14,16,["G3956"]],[16,17,["G2443"]],[17,20,["G2770"]],[20,21,["G3588"]],[21,22,["G4119"]]]},{"k":28560,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G2453"]],[4,6,["G1096"]],[6,7,["G5613"]],[7,9,["G2453"]],[9,10,["G2443"]],[10,13,["G2770"]],[13,15,["G2453"]],[15,17,["G3588"]],[17,20,["G5259"]],[20,22,["G3551"]],[22,23,["G5613"]],[23,24,["G5259"]],[24,26,["G3551"]],[26,27,["G2443"]],[27,30,["G2770"]],[30,31,["G3588"]],[31,34,["G5259"]],[34,36,["G3551"]]]},{"k":28561,"v":[[0,6,["G459"]],[6,7,["G5613"]],[7,9,["G459"]],[9,10,["G5607"]],[10,11,["G3361"]],[11,13,["G459"]],[13,15,["G2316"]],[15,16,["G235"]],[16,19,["G1772"]],[19,21,["G5547"]],[21,22,["G2443"]],[22,25,["G2770"]],[25,30,["G459"]]]},{"k":28562,"v":[[0,2,["G3588"]],[2,3,["G772"]],[3,4,["G1096"]],[4,6,["G5613"]],[6,7,["G772"]],[7,8,["G2443"]],[8,11,["G2770"]],[11,12,["G3588"]],[12,13,["G772"]],[13,16,["G1096"]],[16,18,["G3956"]],[18,20,["G3956"]],[20,22,["G2443"]],[22,27,["G3843"]],[27,28,["G4982"]],[28,29,["G5100"]]]},{"k":28563,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,4,["G4160"]],[4,8,["G1223","G3588","G2098"]],[8,9,["G2443"]],[9,12,["G1096"]],[12,15,["G4791","G846"]],[15,16,[]]]},{"k":28564,"v":[[0,1,["G1492"]],[1,3,["G3756"]],[3,4,["G3754"]],[4,7,["G5143"]],[7,8,["G1722"]],[8,10,["G4712"]],[10,11,["G5143"]],[11,12,["G3956","(G3303)"]],[12,13,["G1161"]],[13,14,["G1520"]],[14,15,["G2983"]],[15,16,["G3588"]],[16,17,["G1017"]],[17,18,["G3779"]],[18,19,["G5143"]],[19,20,["G2443"]],[20,23,["G2638"]]]},{"k":28565,"v":[[0,1,["G1161"]],[1,3,["G3956"]],[3,8,["G75"]],[8,10,["G1467"]],[10,13,["G3956"]],[13,14,["G3767"]],[14,15,["G1565"]],[15,17,["(G3303)"]],[17,18,["G2443"]],[18,19,["G2983"]],[19,21,["G5349"]],[21,22,["G4735"]],[22,23,["G1161"]],[23,24,["G2249"]],[24,26,["G862"]]]},{"k":28566,"v":[[0,1,["G1473"]],[1,2,["G5106"]],[2,3,["G3779"]],[3,4,["G5143"]],[4,5,["G3756"]],[5,6,["G5613"]],[6,7,["G84"]],[7,8,["G3779"]],[8,9,["G4438"]],[9,11,["G3756"]],[11,12,["G5613"]],[12,15,["G1194"]],[15,17,["G109"]]]},{"k":28567,"v":[[0,1,["G235"]],[1,4,["G5299"]],[4,5,["G3450"]],[5,6,["G4983"]],[6,7,["G2532"]],[7,11,["G1396"]],[11,16,["G3381"]],[16,20,["G2784"]],[20,22,["G243"]],[22,24,["G848"]],[24,26,["G1096"]],[26,28,["G96"]]]},{"k":28568,"v":[[0,1,["G1161"]],[1,2,["G80"]],[2,4,["G2309"]],[4,5,["G3756"]],[5,7,["G5209"]],[7,10,["G50"]],[10,12,["G3754"]],[12,13,["G3956"]],[13,14,["G2257"]],[14,15,["G3962"]],[15,16,["G2258"]],[16,17,["G5259"]],[17,18,["G3588"]],[18,19,["G3507"]],[19,20,["G2532"]],[20,21,["G3956"]],[21,22,["G1330"]],[22,23,["G1223"]],[23,24,["G3588"]],[24,25,["G2281"]]]},{"k":28569,"v":[[0,1,["G2532"]],[1,3,["G3956"]],[3,4,["G907"]],[4,5,["G1519"]],[5,6,["G3475"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G3507"]],[9,10,["G2532"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G2281"]]]},{"k":28570,"v":[[0,1,["G2532"]],[1,3,["G3956"]],[3,4,["G5315"]],[4,5,["G3588"]],[5,6,["G846"]],[6,7,["G4152"]],[7,8,["G1033"]]]},{"k":28571,"v":[[0,1,["G2532"]],[1,3,["G3956"]],[3,4,["G4095"]],[4,5,["G3588"]],[5,6,["G846"]],[6,7,["G4152"]],[7,8,["G4188"]],[8,9,["G1063"]],[9,11,["G4095"]],[11,12,["G1537"]],[12,14,["G4152"]],[14,15,["G4073"]],[15,17,["G190"]],[17,19,["G1161"]],[19,21,["G4073"]],[21,22,["G2258"]],[22,23,["G5547"]]]},{"k":28572,"v":[[0,1,["G235"]],[1,2,["G1722"]],[2,3,["G4119"]],[3,5,["G846"]],[5,6,["G2316"]],[6,10,["G2106","G3756"]],[10,11,["G1063"]],[11,14,["G2693"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G2048"]]]},{"k":28573,"v":[[0,1,["G1161"]],[1,3,["G5023"]],[3,4,["G1096"]],[4,5,["G2257"]],[5,6,["G5179"]],[6,10,["G2248"]],[10,14,["G1511","G3361","G1938"]],[14,16,["G2556"]],[16,17,["G2531"]],[17,19,["G2548"]],[19,20,["G1937"]]]},{"k":28574,"v":[[0,1,["G3366"]],[1,2,["G1096"]],[2,4,["G1496"]],[4,5,["G2531"]],[5,7,["G5100"]],[7,9,["G846"]],[9,10,["G5613"]],[10,13,["G1125"]],[13,14,["G3588"]],[14,15,["G2992"]],[15,17,["G2523"]],[17,19,["G5315"]],[19,20,["G2532"]],[20,21,["G4095"]],[21,22,["G2532"]],[22,24,["G450"]],[24,26,["G3815"]]]},{"k":28575,"v":[[0,1,["G3366"]],[1,5,["G4203"]],[5,6,["G2531"]],[6,7,["G5100"]],[7,9,["G846"]],[9,10,["G4203"]],[10,11,["G2532"]],[11,12,["G4098"]],[12,13,["G1722"]],[13,14,["G3391"]],[14,15,["G2250"]],[15,19,["G5140","G1501","G5505"]]]},{"k":28576,"v":[[0,1,["G3366"]],[1,4,["G1598"]],[4,5,["G5547"]],[5,6,["G2531"]],[6,7,["G5100"]],[7,9,["G846"]],[9,10,["G2532"]],[10,11,["G3985"]],[11,12,["G2532"]],[12,14,["G622"]],[14,15,["G5259"]],[15,16,["G3789"]]]},{"k":28577,"v":[[0,1,["G3366"]],[1,2,["G1111"]],[2,4,["G2531"]],[4,5,["G5100"]],[5,7,["G846"]],[7,8,["G2532"]],[8,9,["G1111"]],[9,10,["G2532"]],[10,12,["G622"]],[12,13,["G5259"]],[13,14,["G3588"]],[14,15,["G3644"]]]},{"k":28578,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,4,["G5023"]],[4,5,["G4819"]],[5,7,["G1565"]],[7,9,["G5179"]],[9,10,["G1161"]],[10,13,["G1125"]],[13,14,["G4314"]],[14,15,["G2257"]],[15,16,["G3559"]],[16,17,["G1519"]],[17,18,["G3739"]],[18,19,["G3588"]],[19,20,["G5056"]],[20,22,["G3588"]],[22,23,["G165"]],[23,25,["G2658"]]]},{"k":28579,"v":[[0,1,["G5620"]],[1,5,["G1380"]],[5,7,["G2476"]],[7,9,["G991"]],[9,10,["G3361"]],[10,12,["G4098"]]]},{"k":28580,"v":[[0,3,["G3756"]],[3,4,["G3986"]],[4,5,["G2983"]],[5,6,["G5209"]],[6,7,["G1508"]],[7,13,["G442"]],[13,14,["G1161"]],[14,15,["G2316"]],[15,17,["G4103"]],[17,18,["G3739"]],[18,20,["G3756"]],[20,21,["G1439"]],[21,22,["G5209"]],[22,25,["G3985"]],[25,26,["G5228"]],[26,27,["G3739"]],[27,30,["G1410"]],[30,31,["G235"]],[31,33,["G4862"]],[33,34,["G3588"]],[34,35,["G3986"]],[35,36,["G2532"]],[36,37,["G4160"]],[37,41,["G1545"]],[41,43,["G5209"]],[43,46,["G1410"]],[46,48,["G5297"]],[48,49,[]]]},{"k":28581,"v":[[0,1,["G1355"]],[1,2,["G3450"]],[2,4,["G27"]],[4,5,["G5343"]],[5,6,["G575"]],[6,7,["G1495"]]]},{"k":28582,"v":[[0,2,["G3004"]],[2,3,["G5613"]],[3,6,["G5429"]],[6,7,["G2919"]],[7,8,["G5210"]],[8,9,["G3739"]],[9,11,["G5346"]]]},{"k":28583,"v":[[0,1,["G3588"]],[1,2,["G4221"]],[2,4,["G2129"]],[4,5,["G3739"]],[5,7,["G2127"]],[7,8,["G2076"]],[8,10,["G3780"]],[10,12,["G2842"]],[12,14,["G3588"]],[14,15,["G129"]],[15,17,["G5547"]],[17,18,["G3588"]],[18,19,["G740"]],[19,20,["G3739"]],[20,22,["G2806"]],[22,23,["G2076"]],[23,25,["G3780"]],[25,27,["G2842"]],[27,29,["G3588"]],[29,30,["G4983"]],[30,32,["G5547"]]]},{"k":28584,"v":[[0,1,["G3754"]],[1,4,["G4183"]],[4,5,["G2070"]],[5,6,["G1520"]],[6,7,["G740"]],[7,9,["G1520"]],[9,10,["G4983"]],[10,11,["G1063"]],[11,15,["G3348","G3956"]],[15,16,["G1537"]],[16,18,["G1520"]],[18,19,["G740"]]]},{"k":28585,"v":[[0,1,["G991"]],[1,2,["G2474"]],[2,3,["G2596"]],[3,5,["G4561"]],[5,6,["G1526"]],[6,7,["G3780"]],[7,10,["G2068"]],[10,12,["G3588"]],[12,13,["G2378"]],[13,14,["G2844"]],[14,16,["G3588"]],[16,17,["G2379"]]]},{"k":28586,"v":[[0,1,["G5101"]],[1,2,["G5346"]],[2,4,["G3767"]],[4,5,["G3754"]],[5,7,["G1497"]],[7,8,["G2076"]],[8,10,["G5100"]],[10,11,["G2228","(G3754)"]],[11,19,["G1494"]],[19,20,["G2076"]],[20,22,["G5100"]]]},{"k":28587,"v":[[0,1,["G235"]],[1,4,["G3754"]],[4,7,["G3739"]],[7,8,["G3588"]],[8,9,["G1484"]],[9,10,["G2380"]],[10,12,["G2380"]],[12,14,["G1140"]],[14,15,["G2532"]],[15,16,["G3756"]],[16,18,["G2316"]],[18,19,["G1161"]],[19,21,["G2309"]],[21,22,["G3756"]],[22,24,["G5209"]],[24,26,["G1096"]],[26,27,["G2844"]],[27,29,["G1140"]]]},{"k":28588,"v":[[0,2,["G1410","G3756"]],[2,3,["G4095"]],[3,5,["G4221"]],[5,8,["G2962"]],[8,9,["G2532"]],[9,11,["G4221"]],[11,13,["G1140"]],[13,15,["G1410","G3756"]],[15,17,["G3348"]],[17,20,["G2962"]],[20,21,["G5132"]],[21,22,["G2532"]],[22,25,["G5132"]],[25,27,["G1140"]]]},{"k":28589,"v":[[0,2,["(G2228)"]],[2,7,["G3863","G3588","G2962"]],[7,8,["G2070"]],[8,9,["(G3361)"]],[9,10,["G2478"]],[10,12,["G846"]]]},{"k":28590,"v":[[0,2,["G3956"]],[2,4,["G1832"]],[4,6,["G3427"]],[6,7,["G235"]],[7,9,["G3956"]],[9,12,["G4851","G3756"]],[12,14,["G3956"]],[14,16,["G1832"]],[16,18,["G3427"]],[18,19,["G235"]],[19,21,["G3956"]],[21,22,["G3618"]],[22,23,["G3756"]]]},{"k":28591,"v":[[0,3,["G3367"]],[3,4,["G2212"]],[4,6,["G1438"]],[6,7,["G235"]],[7,9,["G1538"]],[9,10,["(G2087)"]],[10,11,[]]]},{"k":28592,"v":[[0,1,["G3956"]],[1,3,["G4453"]],[3,4,["G1722"]],[4,6,["G3111"]],[6,8,["G2068"]],[8,11,["G350","G3367"]],[11,14,["G1223","G4893"]]]},{"k":28593,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G1093"]],[3,5,["G3588"]],[5,6,["G2962"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G4138"]],[9,10,["G848"]]]},{"k":28594,"v":[[0,0,["(G1161)"]],[0,1,["G1487"]],[1,2,["G5100"]],[2,7,["G571"]],[7,8,["G2564"]],[8,9,["G5209"]],[9,13,["G2532"]],[13,16,["G2309"]],[16,18,["G4198"]],[18,19,["G3956"]],[19,22,["G3908"]],[22,23,["G5213"]],[23,24,["G2068"]],[24,27,["G350","G3367"]],[27,30,["G1223","G4893"]]]},{"k":28595,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,4,["G5100"]],[4,5,["G2036"]],[5,7,["G5213"]],[7,8,["G5124"]],[8,9,["G2076"]],[9,14,["G1494"]],[14,15,["G2068"]],[15,16,["G3361"]],[16,19,["G1223","G1565"]],[19,21,["G3377"]],[21,23,["G2532"]],[23,25,["G4893"]],[25,27,["G1063"]],[27,28,["G3588"]],[28,29,["G1093"]],[29,31,["G3588"]],[31,32,["G2962"]],[32,33,["G2532"]],[33,34,["G3588"]],[34,35,["G4138"]],[35,36,["G848"]]]},{"k":28596,"v":[[0,0,["(G1161)"]],[0,1,["G4893"]],[1,3,["G3004"]],[3,4,["G3780"]],[4,6,["G1438"]],[6,7,["G235"]],[7,8,["(G3588)"]],[8,9,["G3588"]],[9,10,["G2087"]],[10,11,["G1063"]],[11,12,["G2444"]],[12,14,["G3450"]],[14,15,["G1657"]],[15,16,["G2919"]],[16,17,["G5259"]],[17,18,["G243"]],[18,20,["G4893"]]]},{"k":28597,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G1473"]],[3,5,["G5485"]],[5,8,["G3348"]],[8,9,["G5101"]],[9,14,["G987"]],[14,15,["G5228"]],[15,16,["G3739"]],[16,19,["G1473"]],[19,21,["G2168"]]]},{"k":28598,"v":[[0,1,["G1535"]],[1,2,["G3767"]],[2,4,["G2068"]],[4,5,["G1535"]],[5,6,["G4095"]],[6,7,["G1535"]],[7,8,["G5100"]],[8,10,["G4160"]],[10,11,["G4160"]],[11,12,["G3956"]],[12,14,["G1519"]],[14,15,["G1391"]],[15,17,["G2316"]]]},{"k":28599,"v":[[0,3,["G1096","G677"]],[3,4,["G2532"]],[4,7,["G2453"]],[7,8,["G2532"]],[8,11,["G1672"]],[11,12,["G2532"]],[12,14,["G3588"]],[14,15,["G1577"]],[15,17,["G2316"]]]},{"k":28600,"v":[[0,3,["G2504","G2531"]],[3,4,["G700"]],[4,5,["G3956"]],[5,8,["G3956"]],[8,10,["G3361"]],[10,11,["G2212"]],[11,13,["G1683"]],[13,14,["G4851"]],[14,15,["G235"]],[15,16,["G3588"]],[16,19,["G4183"]],[19,20,["G2443"]],[20,24,["G4982"]]]},{"k":28601,"v":[[0,1,["G1096"]],[1,3,["G3402"]],[3,5,["G3450"]],[5,7,["G2531"]],[7,9,["G2504"]],[9,12,["G5547"]]]},{"k":28602,"v":[[0,1,["G1161"]],[1,3,["G1867"]],[3,4,["G5209"]],[4,5,["G80"]],[5,6,["G3754"]],[6,8,["G3415"]],[8,9,["G3450"]],[9,12,["G3956"]],[12,13,["G2532"]],[13,14,["G2722"]],[14,15,["G3588"]],[15,16,["G3862"]],[16,17,["G2531"]],[17,19,["G3860"]],[19,22,["G5213"]]]},{"k":28603,"v":[[0,1,["G1161"]],[1,3,["G2309"]],[3,5,["G5209"]],[5,6,["G1492"]],[6,7,["G3754"]],[7,8,["G3588"]],[8,9,["G2776"]],[9,11,["G3956"]],[11,12,["G435"]],[12,13,["G2076"]],[13,14,["G5547"]],[14,15,["G1161"]],[15,17,["G2776"]],[17,20,["G1135"]],[20,22,["G3588"]],[22,23,["G435"]],[23,24,["G1161"]],[24,26,["G2776"]],[26,28,["G5547"]],[28,30,["G2316"]]]},{"k":28604,"v":[[0,1,["G3956"]],[1,2,["G435"]],[2,3,["G4336"]],[3,4,["G2228"]],[4,5,["G4395"]],[5,6,["G2192"]],[6,9,["G2596","G2776"]],[9,10,["G2617"]],[10,11,["G848"]],[11,12,["G2776"]]]},{"k":28605,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,3,["G1135"]],[3,5,["G4336"]],[5,6,["G2228"]],[6,7,["G4395"]],[7,10,["G2776"]],[10,11,["G177"]],[11,12,["G2617"]],[12,13,["G1438"]],[13,14,["G2776"]],[14,15,["G1063"]],[15,17,["G2076"]],[17,20,["G1520","G2532","G848"]],[20,25,["G3587"]]]},{"k":28606,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G1135"]],[4,6,["G3756"]],[6,7,["G2619"]],[7,10,["G2532"]],[10,12,["G2751"]],[12,13,["G1161"]],[13,14,["G1487"]],[14,18,["G149"]],[18,21,["G1135"]],[21,24,["G2751"]],[24,25,["G2228"]],[25,26,["G3587"]],[26,30,["G2619"]]]},{"k":28607,"v":[[0,1,["G1063"]],[1,3,["G435"]],[3,4,["G3303"]],[4,5,["G3784"]],[5,6,["G3756"]],[6,8,["G2619"]],[8,10,["G2776"]],[10,14,["G5225"]],[14,16,["G1504"]],[16,17,["G2532"]],[17,18,["G1391"]],[18,20,["G2316"]],[20,21,["G1161"]],[21,23,["G1135"]],[23,24,["G2076"]],[24,26,["G1391"]],[26,29,["G435"]]]},{"k":28608,"v":[[0,1,["G1063"]],[1,3,["G435"]],[3,4,["G2076"]],[4,5,["G3756"]],[5,6,["G1537"]],[6,8,["G1135"]],[8,9,["G235"]],[9,11,["G1135"]],[11,12,["G1537"]],[12,14,["G435"]]]},{"k":28609,"v":[[0,0,["(G1063)"]],[0,1,["G2532","G3756"]],[1,4,["G435"]],[4,5,["G2936"]],[5,6,["G1223"]],[6,7,["G3588"]],[7,8,["G1135"]],[8,9,["G235"]],[9,11,["G1135"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G435"]]]},{"k":28610,"v":[[0,3,["G1223","G5124"]],[3,4,["G3784"]],[4,5,["G3588"]],[5,6,["G1135"]],[6,8,["G2192"]],[8,9,["G1849"]],[9,10,["G1909"]],[10,12,["G2776"]],[12,13,["G1223"]],[13,15,["G3588"]],[15,16,["G32"]]]},{"k":28611,"v":[[0,1,["G4133"]],[1,2,["G3777"]],[2,5,["G435"]],[5,6,["G5565"]],[6,8,["G1135"]],[8,9,["G3777"]],[9,11,["G1135"]],[11,12,["G5565"]],[12,14,["G435"]],[14,15,["G1722"]],[15,17,["G2962"]]]},{"k":28612,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G3588"]],[3,4,["G1135"]],[4,6,["G1537"]],[6,7,["G3588"]],[7,8,["G435"]],[8,10,["G3779"]],[10,12,["G3588"]],[12,13,["G435"]],[13,14,["G2532"]],[14,15,["G1223"]],[15,16,["G3588"]],[16,17,["G1135"]],[17,18,["G1161"]],[18,20,["G3956"]],[20,21,["G1537"]],[21,22,["G2316"]]]},{"k":28613,"v":[[0,1,["G2919"]],[1,2,["G1722"]],[2,3,["G5213","G846"]],[3,4,["G2076"]],[4,6,["G4241"]],[6,9,["G1135"]],[9,10,["G4336"]],[10,12,["G2316"]],[12,13,["G177"]]]},{"k":28614,"v":[[0,1,["(G2228)"]],[1,3,["G3761"]],[3,4,["G5449"]],[4,5,["G846"]],[5,6,["G1321"]],[6,7,["G5209"]],[7,8,["G3754"]],[8,9,["G1437"]],[9,11,["G435"]],[11,14,["(G2863)"]],[14,16,["G2076"]],[16,18,["G819"]],[18,20,["G846"]]]},{"k":28615,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,4,["G1135"]],[4,7,["G2863"]],[7,9,["G2076"]],[9,11,["G1391"]],[11,13,["G846"]],[13,14,["G3754"]],[14,16,["G2864"]],[16,18,["G1325"]],[18,19,["G846"]],[19,20,["G473"]],[20,22,["G4018"]]]},{"k":28616,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G5100"]],[4,5,["G1380"]],[5,7,["G1511"]],[7,8,["G5380"]],[8,9,["G2249"]],[9,10,["G2192"]],[10,11,["G3756"]],[11,12,["G5108"]],[12,13,["G4914"]],[13,14,["G3761"]],[14,15,["G3588"]],[15,16,["G1577"]],[16,18,["G2316"]]]},{"k":28617,"v":[[0,1,["G1161"]],[1,3,["G5124"]],[3,6,["G3853"]],[6,10,["G1867"]],[10,12,["G3756"]],[12,13,["G3754"]],[13,16,["G4905"]],[16,17,["G3756"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G2909"]],[20,21,["G235"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G2276"]]]},{"k":28618,"v":[[0,1,["G1063"]],[1,4,["G4412"]],[4,5,["(G3303)"]],[5,6,["G5216"]],[6,8,["G4905"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G1577"]],[11,13,["G191"]],[13,16,["G5225"]],[16,17,["G4978"]],[17,18,["G1722"]],[18,19,["G5213"]],[19,20,["G2532"]],[20,22,["G3313","G5100"]],[22,23,["G4100"]],[23,24,[]]]},{"k":28619,"v":[[0,1,["G1063"]],[1,3,["G1163"]],[3,4,["G1511"]],[4,5,["G2532"]],[5,6,["G139"]],[6,7,["G1722"]],[7,8,["G5213"]],[8,9,["G2443"]],[9,13,["G1384"]],[13,16,["G1096"]],[16,17,["G5318"]],[17,18,["G1722"]],[18,19,["G5213"]]]},{"k":28620,"v":[[0,2,["G5216"]],[2,4,["G4905"]],[4,5,["G3767"]],[5,6,["G1909"]],[6,8,["G846"]],[8,10,["G2076"]],[10,11,["G3756"]],[11,13,["G5315"]],[13,15,["G2960"]],[15,16,["G1173"]]]},{"k":28621,"v":[[0,1,["G1063"]],[1,2,["G1722"]],[2,3,["G5315"]],[3,5,["G1538"]],[5,7,["G4301"]],[7,10,["G2398"]],[10,11,["G1173"]],[11,12,["G2532"]],[12,13,["G3739","G3303"]],[13,15,["G3983"]],[15,16,["G1161"]],[16,17,["G3739"]],[17,19,["G3184"]]]},{"k":28622,"v":[[0,1,["(G1063","G3361)"]],[1,2,["G2192"]],[2,4,["G3756"]],[4,5,["G3614"]],[5,7,["G2068"]],[7,8,["G2532"]],[8,10,["G4095"]],[10,12,["G2228"]],[12,13,["G2706"]],[13,15,["G3588"]],[15,16,["G1577"]],[16,18,["G2316"]],[18,19,["G2532"]],[19,20,["G2617"]],[20,23,["G2192"]],[23,24,["G3361"]],[24,25,["G5101"]],[25,28,["G2036"]],[28,30,["G5213"]],[30,33,["G1867"]],[33,34,["G5209"]],[34,35,["G1722"]],[35,36,["G5129"]],[36,38,["G1867"]],[38,40,["G3756"]]]},{"k":28623,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,4,["G3880"]],[4,5,["G575"]],[5,6,["G3588"]],[6,7,["G2962"]],[7,9,["G3739"]],[9,10,["G2532"]],[10,12,["G3860"]],[12,14,["G5213"]],[14,15,["G3754"]],[15,16,["G3588"]],[16,17,["G2962"]],[17,18,["G2424"]],[18,19,["G3588"]],[19,21,["G3571"]],[21,23,["G3739"]],[23,26,["G3860"]],[26,27,["G2983"]],[27,28,["G740"]]]},{"k":28624,"v":[[0,1,["G2532"]],[1,6,["G2168"]],[6,8,["G2806"]],[8,10,["G2532"]],[10,12,["G2036","G2983"]],[12,13,["G5315"]],[13,14,["G5124"]],[14,15,["G2076"]],[15,16,["G3450"]],[16,17,["G4983"]],[17,20,["G2806"]],[20,21,["G5228"]],[21,22,["G5216"]],[22,23,["G5124"]],[23,24,["G4160"]],[24,25,["G1519"]],[25,26,["G364"]],[26,28,["G1699"]]]},{"k":28625,"v":[[0,1,["G3326"]],[1,4,["G5615"]],[4,5,["G2532"]],[5,8,["G3588"]],[8,9,["G4221"]],[9,13,["G1172"]],[13,14,["G3004"]],[14,15,["G5124"]],[15,16,["G4221"]],[16,17,["G2076"]],[17,18,["G3588"]],[18,19,["G2537"]],[19,20,["G1242"]],[20,21,["G1722"]],[21,22,["G1699"]],[22,23,["G129"]],[23,24,["G5124"]],[24,25,["G4160"]],[25,29,["G3740"]],[29,31,["G4095","G302"]],[31,33,["G1519"]],[33,34,["G364"]],[34,36,["G1699"]]]},{"k":28626,"v":[[0,1,["G1063"]],[1,4,["G3740"]],[4,6,["G2068","G302"]],[6,7,["G5126"]],[7,8,["G740"]],[8,9,["G2532"]],[9,10,["G4095","G302"]],[10,11,["G5124"]],[11,12,["G4221"]],[12,15,["G2605"]],[15,16,["G3588"]],[16,17,["G2962"]],[17,18,["G2288"]],[18,19,["G891","G3757"]],[19,21,["G2064"]]]},{"k":28627,"v":[[0,1,["G5620"]],[1,2,["G3739","G302"]],[2,4,["G2068"]],[4,5,["G5126"]],[5,6,["G740"]],[6,7,["G2228"]],[7,8,["G4095"]],[8,10,["G4221"]],[10,12,["G3588"]],[12,13,["G2962"]],[13,14,["G371"]],[14,16,["G2071"]],[16,17,["G1777"]],[17,19,["G3588"]],[19,20,["G4983"]],[20,21,["G2532"]],[21,22,["G129"]],[22,24,["G3588"]],[24,25,["G2962"]]]},{"k":28628,"v":[[0,1,["G1161"]],[1,4,["G444"]],[4,5,["G1381"]],[5,6,["G1438"]],[6,7,["G2532"]],[7,8,["G3779"]],[8,11,["G2068"]],[11,12,["G1537"]],[12,14,["G740"]],[14,15,["G2532"]],[15,16,["G4095"]],[16,17,["G1537"]],[17,19,["G4221"]]]},{"k":28629,"v":[[0,1,["G1063"]],[1,4,["G2068"]],[4,5,["G2532"]],[5,6,["G4095"]],[6,7,["G371"]],[7,8,["G2068"]],[8,9,["G2532"]],[9,10,["G4095"]],[10,11,["G2917"]],[11,13,["G1438"]],[13,14,["G3361"]],[14,15,["G1252"]],[15,16,["G3588"]],[16,17,["G2962"]],[17,18,["G4983"]]]},{"k":28630,"v":[[0,3,["G1223","G5124"]],[3,4,["G4183"]],[4,6,["G772"]],[6,7,["G2532"]],[7,8,["G732"]],[8,9,["G1722"]],[9,10,["G5213"]],[10,11,["G2532"]],[11,12,["G2425"]],[12,13,["G2837"]]]},{"k":28631,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,5,["G1252"]],[5,6,["G1438"]],[6,9,["G3756"]],[9,11,["G2919"]]]},{"k":28632,"v":[[0,1,["G1161"]],[1,5,["G2919"]],[5,8,["G3811"]],[8,9,["G5259"]],[9,11,["G2962"]],[11,12,["G2443"]],[12,15,["G3361"]],[15,17,["G2632"]],[17,18,["G4862"]],[18,19,["G3588"]],[19,20,["G2889"]]]},{"k":28633,"v":[[0,1,["G5620"]],[1,2,["G3450"]],[2,3,["G80"]],[3,7,["G4905"]],[7,9,["G5315"]],[9,10,["G1551"]],[10,13,["G240"]]]},{"k":28634,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G5100"]],[4,5,["G3983"]],[5,8,["G2068"]],[8,9,["G1722"]],[9,10,["G3624"]],[10,11,["G2443"]],[11,15,["G4905","G3361"]],[15,16,["G1519"]],[16,17,["G2917"]],[17,18,["G1161"]],[18,19,["G3588"]],[19,20,["G3062"]],[20,25,["G1299"]],[25,26,["G5613","G302"]],[26,28,["G2064"]]]},{"k":28635,"v":[[0,1,["G1161"]],[1,2,["G4012"]],[2,3,["G4152"]],[3,5,["G80"]],[5,7,["G2309"]],[7,8,["G3756"]],[8,10,["G5209"]],[10,11,["G50"]]]},{"k":28636,"v":[[0,2,["G1492"]],[2,3,["G3754"]],[3,5,["G2258"]],[5,6,["G1484"]],[6,8,["G520"]],[8,9,["G4314"]],[9,11,["G880"]],[11,12,["G1497"]],[12,14,["G5613"]],[14,17,["G71","G302"]]]},{"k":28637,"v":[[0,1,["G1352"]],[1,6,["G1107","G5213"]],[6,7,["G3754"]],[7,9,["G3762"]],[9,10,["G2980"]],[10,11,["G1722"]],[11,13,["G4151"]],[13,15,["G2316"]],[15,16,["G3004"]],[16,17,["G2424"]],[17,18,["G331"]],[18,19,["G2532"]],[19,22,["G3762"]],[22,23,["G1410"]],[23,24,["G2036"]],[24,26,["G2424"]],[26,29,["G2962"]],[29,30,["G1508"]],[30,31,["G1722"]],[31,33,["G40"]],[33,34,["G4151"]]]},{"k":28638,"v":[[0,1,["G1161"]],[1,3,["G1526"]],[3,4,["G1243"]],[4,6,["G5486"]],[6,7,["G1161"]],[7,8,["G3588"]],[8,9,["G846"]],[9,10,["G4151"]]]},{"k":28639,"v":[[0,1,["G2532"]],[1,3,["G1526"]],[3,4,["G1243"]],[4,6,["G1248"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G846"]],[9,10,["G2962"]]]},{"k":28640,"v":[[0,1,["G2532"]],[1,3,["G1526"]],[3,4,["G1243"]],[4,6,["G1755"]],[6,7,["G1161"]],[7,9,["G2076"]],[9,10,["G3588"]],[10,11,["G846"]],[11,12,["G2316"]],[12,14,["G1754"]],[14,15,["G3956"]],[15,16,["G1722"]],[16,17,["G3956"]]]},{"k":28641,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5321"]],[3,5,["G3588"]],[5,6,["G4151"]],[6,8,["G1325"]],[8,11,["G1538"]],[11,12,["G4314"]],[12,13,["G4851"]],[13,14,[]]]},{"k":28642,"v":[[0,1,["G1063"]],[1,3,["G3739","G3303"]],[3,5,["G1325"]],[5,6,["G1223"]],[6,7,["G3588"]],[7,8,["G4151"]],[8,10,["G3056"]],[10,12,["G4678"]],[12,13,["(G1161)"]],[13,14,["G243"]],[14,16,["G3056"]],[16,18,["G1108"]],[18,19,["G2596"]],[19,20,["G3588"]],[20,21,["G846"]],[21,22,["G4151"]]]},{"k":28643,"v":[[0,1,["(G1161)"]],[1,2,["G2087"]],[2,3,["G4102"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G846"]],[6,7,["G4151"]],[7,8,["(G1161)"]],[8,9,["G243"]],[9,11,["G5486"]],[11,13,["G2386"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G846"]],[16,17,["G4151"]]]},{"k":28644,"v":[[0,1,["(G1161)"]],[1,2,["G243"]],[2,4,["G1755"]],[4,6,["G1411"]],[6,7,["(G1161)"]],[7,8,["G243"]],[8,9,["G4394"]],[9,10,["(G1161)"]],[10,11,["G243"]],[11,12,["G1253"]],[12,14,["G4151"]],[14,15,["(G1161)"]],[15,16,["G2087"]],[16,18,["G1085"]],[18,20,["G1100"]],[20,21,["(G1161)"]],[21,22,["G243"]],[22,24,["G2058"]],[24,26,["G1100"]]]},{"k":28645,"v":[[0,1,["G1161"]],[1,2,["G3956"]],[2,3,["G5023"]],[3,4,["G1754"]],[4,6,["G1520"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G846"]],[9,10,["G4151"]],[10,11,["G1244"]],[11,14,["G1538"]],[14,15,["G2398"]],[15,16,["G2531"]],[16,18,["G1014"]]]},{"k":28646,"v":[[0,1,["G1063"]],[1,2,["G2509"]],[2,3,["G3588"]],[3,4,["G4983"]],[4,5,["G2076"]],[5,6,["G1520"]],[6,7,["G2532"]],[7,8,["G2192"]],[8,9,["G4183"]],[9,10,["G3196"]],[10,11,["G1161"]],[11,12,["G3956"]],[12,13,["G3588"]],[13,14,["G3196"]],[14,17,["G1520"]],[17,18,["G4983"]],[18,19,["G5607"]],[19,20,["G4183"]],[20,21,["G2076"]],[21,22,["G1520"]],[22,23,["G4983"]],[23,24,["G3779"]],[24,25,["G2532"]],[25,27,["G5547"]]]},{"k":28647,"v":[[0,1,["G1063"]],[1,2,["G1722"]],[2,3,["G1520"]],[3,4,["G4151"]],[4,6,["G2249"]],[6,7,["G3956"]],[7,8,["G907"]],[8,9,["G1519"]],[9,10,["G1520"]],[10,11,["G4983"]],[11,12,["G1535"]],[12,15,["G2453"]],[15,16,["G1535"]],[16,17,["G1672"]],[17,18,["G1535"]],[18,21,["G1401"]],[21,22,["G1535"]],[22,23,["G1658"]],[23,24,["G2532"]],[24,27,["G3956"]],[27,30,["G4222"]],[30,31,["G1519"]],[31,32,["G1520"]],[32,33,["G4151"]]]},{"k":28648,"v":[[0,1,["G1063"]],[1,2,["(G2532)","G3588"]],[2,3,["G4983"]],[3,4,["G2076"]],[4,5,["G3756"]],[5,6,["G1520"]],[6,7,["G3196"]],[7,8,["G235"]],[8,9,["G4183"]]]},{"k":28649,"v":[[0,1,["G1437"]],[1,2,["G3588"]],[2,3,["G4228"]],[3,5,["G2036"]],[5,8,["G1510"]],[8,9,["G3756"]],[9,11,["G5495"]],[11,13,["G1510"]],[13,14,["G3756"]],[14,15,["G1537"]],[15,16,["G3588"]],[16,17,["G4983"]],[17,18,["G2076"]],[18,19,["(G3756)"]],[19,20,["G3844","G5124"]],[20,21,["G3756"]],[21,22,["G1537"]],[22,23,["G3588"]],[23,24,["G4983"]]]},{"k":28650,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,3,["G3588"]],[3,4,["G3775"]],[4,6,["G2036"]],[6,7,["G3754"]],[7,9,["G1510"]],[9,10,["G3756"]],[10,12,["G3788"]],[12,14,["G1510"]],[14,15,["G3756"]],[15,16,["G1537"]],[16,17,["G3588"]],[17,18,["G4983"]],[18,19,["G2076"]],[19,20,["(G3756)"]],[20,21,["G3844","G5124"]],[21,22,["G3756"]],[22,23,["G1537"]],[23,24,["G3588"]],[24,25,["G4983"]]]},{"k":28651,"v":[[0,1,["G1487"]],[1,2,["G3588"]],[2,3,["G3650"]],[3,4,["G4983"]],[4,7,["G3788"]],[7,8,["G4226"]],[8,10,["G3588"]],[10,11,["G189"]],[11,12,["G1487"]],[12,14,["G3650"]],[14,16,["G189"]],[16,17,["G4226"]],[17,19,["G3588"]],[19,20,["G3750"]]]},{"k":28652,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,4,["G2316"]],[4,5,["G5087"]],[5,6,["G3588"]],[6,7,["G3196"]],[7,8,["G1538"]],[8,9,["G1520"]],[9,11,["G846"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G4983"]],[14,15,["G2531"]],[15,18,["G2309"]],[18,19,[]]]},{"k":28653,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G2258"]],[4,5,["G3956"]],[5,6,["G1520"]],[6,7,["G3196"]],[7,8,["G4226"]],[8,10,["G3588"]],[10,11,["G4983"]]]},{"k":28654,"v":[[0,1,["G1161"]],[1,2,["G3568"]],[2,5,["G4183"]],[5,6,["G3196"]],[6,7,["G1161"]],[7,9,["G1520"]],[9,10,["G4983"]]]},{"k":28655,"v":[[0,1,["G1161"]],[1,3,["G3788"]],[3,4,["G1410","G3756"]],[4,5,["G2036"]],[5,7,["G3588"]],[7,8,["G5495"]],[8,10,["G2192"]],[10,11,["G3756"]],[11,12,["G5532"]],[12,14,["G4675"]],[14,15,["G2228"]],[15,16,["G3825"]],[16,17,["G3588"]],[17,18,["G2776"]],[18,20,["G3588"]],[20,21,["G4228"]],[21,23,["G2192"]],[23,24,["G3756"]],[24,25,["G5532"]],[25,27,["G5216"]]]},{"k":28656,"v":[[0,1,["G235"]],[1,2,["G4183"]],[2,3,["G3123"]],[3,5,["G3196"]],[5,7,["G3588"]],[7,8,["G4983"]],[8,10,["G1380"]],[10,12,["G5225"]],[12,14,["G772"]],[14,15,["G2076"]],[15,16,["G316"]]]},{"k":28657,"v":[[0,1,["G2532"]],[1,5,["G3588"]],[5,6,["G4983"]],[6,7,["G3739"]],[7,9,["G1380"]],[9,11,["G1511"]],[11,13,["G820"]],[13,15,["G5125"]],[15,17,["G4060"]],[17,19,["G4055"]],[19,20,["G5092"]],[20,21,["G2532"]],[21,22,["G2257"]],[22,23,["G809"]],[23,25,["G2192"]],[25,27,["G4055"]],[27,28,["G2157"]]]},{"k":28658,"v":[[0,1,["G1161"]],[1,2,["G2257"]],[2,3,["G2158"]],[3,5,["G2192"]],[5,6,["G3756"]],[6,7,["G5532"]],[7,8,["G235"]],[8,9,["G2316"]],[9,14,["G4786","G3588","G4983"]],[14,16,["G1325"]],[16,18,["G4055"]],[18,19,["G5092"]],[19,24,["G5302"]]]},{"k":28659,"v":[[0,1,["G2443"]],[1,4,["G5600"]],[4,5,["G3361"]],[5,6,["G4978"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G4983"]],[9,10,["G235"]],[10,12,["G3588"]],[12,13,["G3196"]],[13,18,["G3309","G3588","G846"]],[18,21,["G240","G5228"]]]},{"k":28660,"v":[[0,1,["G2532"]],[1,2,["G1535"]],[2,3,["G1520"]],[3,4,["G3196"]],[4,5,["G3958"]],[5,6,["G3956"]],[6,7,["G3588"]],[7,8,["G3196"]],[8,10,["G4841"]],[10,12,["G1535"]],[12,13,["G1520"]],[13,14,["G3196"]],[14,16,["G1392"]],[16,17,["G3956"]],[17,18,["G3588"]],[18,19,["G3196"]],[19,21,["G4796"]],[21,22,[]]]},{"k":28661,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G2075"]],[3,5,["G4983"]],[5,7,["G5547"]],[7,8,["G2532"]],[8,9,["G3196"]],[9,10,["G1537"]],[10,11,["G3313"]]]},{"k":28662,"v":[[0,1,["G2532"]],[1,2,["G2316"]],[2,4,["G5087"]],[4,5,["G3739","G3303"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G1577"]],[8,9,["G4412"]],[9,10,["G652"]],[10,11,["G1208"]],[11,12,["G4396"]],[12,13,["G5154"]],[13,14,["G1320"]],[14,16,["G1899"]],[16,17,["G1411"]],[17,18,["G1534"]],[18,19,["G5486"]],[19,21,["G2386"]],[21,22,["G484"]],[22,23,["G2941"]],[23,24,["G1085"]],[24,26,["G1100"]]]},{"k":28663,"v":[[0,1,["(G3361)"]],[1,2,["G3956"]],[2,3,["G652"]],[3,4,["(G3361)"]],[4,5,["G3956"]],[5,6,["G4396"]],[6,7,["(G3361)"]],[7,8,["G3956"]],[8,9,["G1320"]],[9,10,["(G3361)"]],[10,11,["G3956"]],[11,14,["G1411"]]]},{"k":28664,"v":[[0,0,["(G3361)"]],[0,1,["G2192"]],[1,2,["G3956"]],[2,4,["G5486"]],[4,6,["G2386"]],[6,7,["(G3361)"]],[7,8,["G3956"]],[8,9,["G2980"]],[9,11,["G1100"]],[11,12,["(G3361)"]],[12,13,["G3956"]],[13,14,["G1329"]]]},{"k":28665,"v":[[0,1,["G1161"]],[1,3,["G2206"]],[3,4,["G3588"]],[4,5,["G2909"]],[5,6,["G5486"]],[6,7,["G2532"]],[7,8,["G2089"]],[8,9,["G1166"]],[9,12,["G5213"]],[12,15,["G2596","G5236"]],[15,16,["G3598"]]]},{"k":28666,"v":[[0,1,["G1437"]],[1,3,["G2980"]],[3,5,["G3588"]],[5,6,["G1100"]],[6,8,["G444"]],[8,9,["G2532"]],[9,11,["G32"]],[11,12,["G1161"]],[12,13,["G2192"]],[13,14,["G3361"]],[14,15,["G26"]],[15,18,["G1096"]],[18,20,["G2278"]],[20,21,["G5475"]],[21,22,["G2228"]],[22,24,["G214"]],[24,25,["G2950"]]]},{"k":28667,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G2192"]],[4,8,["G4394"]],[8,9,["G2532"]],[9,10,["G1492"]],[10,11,["G3956"]],[11,12,["G3466"]],[12,13,["G2532"]],[13,14,["G3956"]],[14,15,["G1108"]],[15,16,["G2532"]],[16,17,["G1437"]],[17,19,["G2192"]],[19,20,["G3956"]],[20,21,["G4102"]],[21,23,["G5620"]],[23,26,["G3179"]],[26,27,["G3735"]],[27,28,["G1161"]],[28,29,["G2192"]],[29,30,["G3361"]],[30,31,["G26"]],[31,33,["G1510"]],[33,34,["G3762"]]]},{"k":28668,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,9,["G5595","G3956","G3450","G5224"]],[9,12,["G2532"]],[12,13,["G1437"]],[13,15,["G3860"]],[15,16,["G3450"]],[16,17,["G4983"]],[17,18,["G2443"]],[18,20,["G2545"]],[20,21,["G2532"]],[21,22,["G2192"]],[22,23,["G3361"]],[23,24,["G26"]],[24,26,["G5623"]],[26,28,["G3762"]]]},{"k":28669,"v":[[0,1,["G26"]],[1,3,["G3114"]],[3,6,["G5541"]],[6,7,["G26"]],[7,8,["G2206"]],[8,9,["G3756"]],[9,10,["G26"]],[10,13,["G4068","G3756"]],[13,15,["G3756"]],[15,17,["G5448"]]]},{"k":28670,"v":[[0,2,["G3756"]],[2,5,["G807"]],[5,6,["G2212"]],[6,7,["G3756"]],[7,9,["G1438"]],[9,11,["G3756"]],[11,13,["G3947"]],[13,14,["G3049"]],[14,15,["G3756"]],[15,16,["G2556"]]]},{"k":28671,"v":[[0,1,["G5463"]],[1,2,["G3756"]],[2,3,["G1909"]],[3,4,["G93"]],[4,5,["G1161"]],[5,6,["G4796"]],[6,8,["G3588"]],[8,9,["G225"]]]},{"k":28672,"v":[[0,1,["G4722"]],[1,3,["G3956"]],[3,4,["G4100"]],[4,6,["G3956"]],[6,7,["G1679"]],[7,9,["G3956"]],[9,10,["G5278"]],[10,12,["G3956"]]]},{"k":28673,"v":[[0,1,["G26"]],[1,2,["G3763"]],[2,3,["G1601"]],[3,4,["G1161"]],[4,5,["G1535"]],[5,8,["G4394"]],[8,11,["G2673"]],[11,12,["G1535"]],[12,15,["G1100"]],[15,18,["G3973"]],[18,19,["G1535"]],[19,22,["G1108"]],[22,26,["G2673"]]]},{"k":28674,"v":[[0,1,["G1063"]],[1,3,["G1097"]],[3,4,["G1537"]],[4,5,["G3313"]],[5,6,["G2532"]],[6,8,["G4395"]],[8,9,["G1537"]],[9,10,["G3313"]]]},{"k":28675,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,6,["G5046"]],[6,8,["G2064"]],[8,9,["G5119"]],[9,10,["G3588"]],[10,13,["G1537"]],[13,14,["G3313"]],[14,18,["G2673"]]]},{"k":28676,"v":[[0,1,["G3753"]],[1,3,["G2252"]],[3,5,["G3516"]],[5,7,["G2980"]],[7,8,["G5613"]],[8,10,["G3516"]],[10,12,["G5426"]],[12,13,["G5613"]],[13,15,["G3516"]],[15,17,["G3049"]],[17,18,["G5613"]],[18,20,["G3516"]],[20,21,["G1161"]],[21,22,["G3753"]],[22,24,["G1096"]],[24,26,["G435"]],[26,29,["G2673"]],[29,31,["G3588","G3516"]]]},{"k":28677,"v":[[0,1,["G1063"]],[1,2,["G737"]],[2,4,["G991"]],[4,5,["G1223"]],[5,7,["G2072"]],[7,8,["G1722","G135"]],[8,9,["G1161"]],[9,10,["G5119"]],[10,11,["G4383"]],[11,12,["G4314"]],[12,13,["G4383"]],[13,14,["G737"]],[14,16,["G1097"]],[16,17,["G1537"]],[17,18,["G3313"]],[18,19,["G1161"]],[19,20,["G5119"]],[20,23,["G1921"]],[23,25,["G2531"]],[25,26,["G2532"]],[26,29,["G1921"]]]},{"k":28678,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,3,["G3306"]],[3,4,["G4102"]],[4,5,["G1680"]],[5,6,["G26"]],[6,7,["G5023"]],[7,8,["G5140"]],[8,9,["G1161"]],[9,11,["G3187"]],[11,13,["G5130"]],[13,15,["G26"]]]},{"k":28679,"v":[[0,2,["G1377"]],[2,3,["G26"]],[3,4,["G1161"]],[4,5,["G2206"]],[5,6,["G4152"]],[6,8,["G1161"]],[8,9,["G3123"]],[9,10,["G2443"]],[10,13,["G4395"]]]},{"k":28680,"v":[[0,1,["G1063"]],[1,4,["G2980"]],[4,8,["G1100"]],[8,9,["G2980"]],[9,10,["G3756"]],[10,12,["G444"]],[12,13,["G235"]],[13,15,["G2316"]],[15,16,["G1063"]],[16,18,["G3762"]],[18,19,["G191"]],[19,21,["G1161"]],[21,24,["G4151"]],[24,26,["G2980"]],[26,27,["G3466"]]]},{"k":28681,"v":[[0,1,["G1161"]],[1,4,["G4395"]],[4,5,["G2980"]],[5,7,["G444"]],[7,9,["G3619"]],[9,10,["G2532"]],[10,11,["G3874"]],[11,12,["G2532"]],[12,13,["G3889"]]]},{"k":28682,"v":[[0,3,["G2980"]],[3,7,["G1100"]],[7,8,["G3618"]],[8,9,["G1438"]],[9,10,["G1161"]],[10,13,["G4395"]],[13,14,["G3618"]],[14,16,["G1577"]]]},{"k":28683,"v":[[0,1,["(G1161)"]],[1,2,["G2309"]],[2,4,["G5209"]],[4,5,["G3956"]],[5,6,["G2980"]],[6,8,["G1100"]],[8,9,["G1161"]],[9,10,["G3123"]],[10,11,["G2443"]],[11,13,["G4395"]],[13,14,["G1063"]],[14,15,["G3187"]],[15,19,["G4395"]],[19,20,["G2228"]],[20,23,["G2980"]],[23,25,["G1100"]],[25,26,["G1622","G1508"]],[26,28,["G1329"]],[28,29,["G2443"]],[29,30,["G3588"]],[30,31,["G1577"]],[31,33,["G2983"]],[33,34,["G3619"]]]},{"k":28684,"v":[[0,0,["(G1161)"]],[0,1,["G3570"]],[1,2,["G80"]],[2,3,["G1437"]],[3,5,["G2064"]],[5,6,["G4314"]],[6,7,["G5209"]],[7,8,["G2980"]],[8,10,["G1100"]],[10,11,["G5101"]],[11,14,["G5623"]],[14,15,["G5209"]],[15,16,["G3362"]],[16,19,["G2980"]],[19,21,["G5213"]],[21,22,["G2228"]],[22,23,["G1722"]],[23,24,["G602"]],[24,25,["G2228"]],[25,26,["G1722"]],[26,27,["G1108"]],[27,28,["G2228"]],[28,29,["G1722"]],[29,30,["G4394"]],[30,31,["G2228"]],[31,32,["G1722"]],[32,33,["G1322"]]]},{"k":28685,"v":[[0,2,["G3676"]],[2,5,["G895"]],[5,6,["G1325"]],[6,7,["G5456"]],[7,8,["G1535"]],[8,9,["G836"]],[9,10,["G1535"]],[10,11,["G2788"]],[11,12,["G1437"]],[12,14,["G1325"]],[14,15,["(G3361)"]],[15,16,["G1293"]],[16,18,["G3588"]],[18,19,["G5353"]],[19,20,["G4459"]],[20,24,["G1097"]],[24,27,["G832"]],[27,28,["G2228"]],[28,29,["G2789"]]]},{"k":28686,"v":[[0,1,["G1063","(G2532)"]],[1,2,["G1437"]],[2,4,["G4536"]],[4,5,["G1325"]],[5,7,["G82"]],[7,8,["G5456"]],[8,9,["G5101"]],[9,11,["G3903"]],[11,13,["G1519"]],[13,15,["G4171"]]]},{"k":28687,"v":[[0,1,["G3779"]],[1,2,["G2532"]],[2,3,["G5210"]],[3,4,["G3362"]],[4,6,["G1325"]],[6,7,["G1223"]],[7,8,["G3588"]],[8,9,["G1100"]],[9,10,["G3056"]],[10,14,["G2154"]],[14,15,["G4459"]],[15,19,["G1097"]],[19,22,["G2980"]],[22,23,["G1063"]],[23,26,["G2071","G2980"]],[26,27,["G1519"]],[27,29,["G109"]]]},{"k":28688,"v":[[0,2,["G2076"]],[2,5,["G1487","G5177"]],[5,7,["G5118"]],[7,8,["G1085"]],[8,10,["G5456"]],[10,11,["G1722"]],[11,13,["G2889"]],[13,14,["G2532"]],[14,15,["G3762"]],[15,17,["G846"]],[17,20,["G880"]]]},{"k":28689,"v":[[0,1,["G3767"]],[1,2,["G1437"]],[2,4,["G1492"]],[4,5,["G3361"]],[5,6,["G3588"]],[6,7,["G1411"]],[7,9,["G3588"]],[9,10,["G5456"]],[10,13,["G2071"]],[13,17,["G2980"]],[17,19,["G915"]],[19,20,["G2532"]],[20,23,["G2980"]],[23,27,["G915"]],[27,28,["G1722"]],[28,29,["G1698"]]]},{"k":28690,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,3,["G5210"]],[3,5,["G1893"]],[5,7,["G2075"]],[7,8,["G2207"]],[8,10,["G4151"]],[10,12,["G2212"]],[12,13,["G2443"]],[13,16,["G4052"]],[16,17,["G4314"]],[17,18,["G3588"]],[18,19,["G3619"]],[19,21,["G3588"]],[21,22,["G1577"]]]},{"k":28691,"v":[[0,1,["G1355"]],[1,5,["G2980"]],[5,9,["G1100"]],[9,10,["G4336"]],[10,11,["G2443"]],[11,14,["G1329"]]]},{"k":28692,"v":[[0,1,["G1063"]],[1,2,["G1437"]],[2,4,["G4336"]],[4,8,["G1100"]],[8,9,["G3450"]],[9,10,["G4151"]],[10,11,["G4336"]],[11,12,["G1161"]],[12,13,["G3450"]],[13,14,["G3563"]],[14,15,["G2076"]],[15,16,["G175"]]]},{"k":28693,"v":[[0,1,["G5101"]],[1,2,["G2076"]],[2,4,["G3767"]],[4,7,["G4336"]],[7,9,["G3588"]],[9,10,["G4151"]],[10,11,["G1161"]],[11,14,["G4336"]],[14,16,["G3588"]],[16,17,["G3563"]],[17,18,["G2532"]],[18,21,["G5567"]],[21,23,["G3588"]],[23,24,["G4151"]],[24,25,["G1161"]],[25,28,["G5567"]],[28,30,["G3588"]],[30,31,["G3563"]],[31,32,["G2532"]]]},{"k":28694,"v":[[0,1,["G1893"]],[1,2,["G1437"]],[2,5,["G2127"]],[5,7,["G3588"]],[7,8,["G4151"]],[8,9,["G4459"]],[9,13,["G378"]],[13,14,["G3588"]],[14,15,["G5117"]],[15,17,["G3588"]],[17,18,["G2399"]],[18,19,["G2046"]],[19,20,["G281"]],[20,21,["G1909"]],[21,22,["G4674"]],[22,25,["G2169"]],[25,26,["G1894"]],[26,28,["G1492"]],[28,29,["G3756"]],[29,30,["G5101"]],[30,32,["G3004"]]]},{"k":28695,"v":[[0,1,["G1063"]],[1,2,["G4771"]],[2,3,["G3303"]],[3,5,["G2168"]],[5,6,["G2573"]],[6,7,["G235"]],[7,8,["G3588"]],[8,9,["G2087"]],[9,11,["G3756"]],[11,12,["G3618"]]]},{"k":28696,"v":[[0,2,["G2168"]],[2,3,["G3450"]],[3,4,["G2316"]],[4,6,["G2980"]],[6,8,["G1100"]],[8,9,["G3123"]],[9,11,["G5216"]],[11,12,["G3956"]]]},{"k":28697,"v":[[0,1,["G235"]],[1,2,["G1722"]],[2,4,["G1577"]],[4,6,["G2309"]],[6,8,["G2980"]],[8,9,["G4002"]],[9,10,["G3056"]],[10,11,["G1223"]],[11,12,["G3450"]],[12,13,["G3563"]],[13,14,["G2443"]],[14,20,["G2727"]],[20,21,["G243"]],[21,22,["G2532"]],[22,23,["G2228"]],[23,25,["G3463"]],[25,26,["G3056"]],[26,27,["G1722"]],[27,30,["G1100"]]]},{"k":28698,"v":[[0,1,["G80"]],[1,2,["G1096"]],[2,3,["G3361"]],[3,4,["G3813"]],[4,6,["G5424"]],[6,7,["G235"]],[7,9,["G2549"]],[9,12,["G3515"]],[12,13,["G1161"]],[13,15,["G5424"]],[15,16,["G1096"]],[16,17,["G5046"]]]},{"k":28699,"v":[[0,1,["G1722"]],[1,2,["G3588"]],[2,3,["G3551"]],[3,6,["G1125"]],[6,7,["G1722"]],[7,11,["G2084"]],[11,12,["G2532"]],[12,13,["(G1722)","G2087"]],[13,14,["G5491"]],[14,17,["G2980"]],[17,19,["G5129"]],[19,20,["G2992"]],[20,21,["G2532"]],[21,25,["G3779"]],[25,28,["G3761"]],[28,29,["G1522"]],[29,30,["G3450"]],[30,31,["G3004"]],[31,33,["G2962"]]]},{"k":28700,"v":[[0,1,["G5620"]],[1,2,["G1100"]],[2,3,["G1526"]],[3,4,["G1519"]],[4,6,["G4592"]],[6,7,["G3756"]],[7,11,["G4100"]],[11,12,["G235"]],[12,17,["G571"]],[17,18,["G1161"]],[18,19,["G4394"]],[19,21,["G3756"]],[21,26,["G571"]],[26,27,["G235"]],[27,31,["G4100"]]]},{"k":28701,"v":[[0,1,["G1437"]],[1,2,["G3767"]],[2,3,["G3588"]],[3,4,["G3650"]],[4,5,["G1577"]],[5,8,["G4905"]],[8,9,["G1909"]],[9,11,["G846"]],[11,12,["G2532"]],[12,13,["G3956"]],[13,14,["G2980"]],[14,16,["G1100"]],[16,17,["G1161"]],[17,20,["G1525"]],[20,24,["G2399"]],[24,25,["G2228"]],[25,26,["G571"]],[26,29,["G3756"]],[29,30,["G2046"]],[30,31,["G3754"]],[31,34,["G3105"]]]},{"k":28702,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,3,["G3956"]],[3,4,["G4395"]],[4,5,["G1161"]],[5,8,["G1525"]],[8,9,["G5100"]],[9,12,["G571"]],[12,13,["G2228"]],[13,15,["G2399"]],[15,18,["G1651"]],[18,19,["G5259"]],[19,20,["G3956"]],[20,23,["G350"]],[23,24,["G5259"]],[24,25,["G3956"]]]},{"k":28703,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,4,["G3588"]],[4,5,["G2927"]],[5,7,["G848"]],[7,8,["G2588"]],[8,9,["G1096"]],[9,10,["G5318"]],[10,11,["G2532"]],[11,12,["G3779"]],[12,14,["G4098"]],[14,15,["G1909"]],[15,17,["G4383"]],[17,20,["G4352"]],[20,21,["G2316"]],[21,23,["G518"]],[23,24,["G3754"]],[24,25,["G2316"]],[25,26,["G2076"]],[26,27,["G1722"]],[27,28,["G5213"]],[28,31,["G3689"]]]},{"k":28704,"v":[[0,1,["G5101"]],[1,2,["G2076"]],[2,4,["G3767"]],[4,5,["G80"]],[5,6,["G3752"]],[6,9,["G4905"]],[9,11,["G1538"]],[11,13,["G5216"]],[13,14,["G2192"]],[14,16,["G5568"]],[16,17,["G2192"]],[17,19,["G1322"]],[19,20,["G2192"]],[20,22,["G1100"]],[22,23,["G2192"]],[23,25,["G602"]],[25,26,["G2192"]],[26,28,["G2058"]],[28,31,["G3956"]],[31,33,["G1096"]],[33,34,["G4314"]],[34,35,["G3619"]]]},{"k":28705,"v":[[0,1,["G1535"]],[1,3,["G5100"]],[3,4,["G2980"]],[4,8,["G1100"]],[8,12,["G2596"]],[12,13,["G1417"]],[13,14,["G2228"]],[14,16,["G3588"]],[16,17,["G4118"]],[17,19,["G5140"]],[19,20,["G2532"]],[20,22,["G303"]],[22,23,["G3313"]],[23,24,["G2532"]],[24,26,["G1520"]],[26,27,["G1329"]]]},{"k":28706,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,4,["G5600"]],[4,5,["G3361"]],[5,6,["G1328"]],[6,10,["G4601"]],[10,11,["G1722"]],[11,13,["G1577"]],[13,14,["G1161"]],[14,17,["G2980"]],[17,19,["G1438"]],[19,20,["G2532"]],[20,22,["G2316"]]]},{"k":28707,"v":[[0,1,["(G1161)"]],[1,3,["G4396"]],[3,4,["G2980"]],[4,5,["G1417"]],[5,6,["G2228"]],[6,7,["G5140"]],[7,8,["G2532"]],[8,10,["G3588"]],[10,11,["G243"]],[11,12,["G1252"]]]},{"k":28708,"v":[[0,0,["(G1161)"]],[0,1,["G1437"]],[1,5,["G601"]],[5,7,["G243"]],[7,10,["G2521"]],[10,12,["G3588"]],[12,13,["G4413"]],[13,16,["G4601"]]]},{"k":28709,"v":[[0,1,["G1063"]],[1,3,["G1410"]],[3,4,["G3956"]],[4,5,["G4395"]],[5,8,["G2596","G1520"]],[8,9,["G2443"]],[9,10,["G3956"]],[10,12,["G3129"]],[12,13,["G2532"]],[13,14,["G3956"]],[14,17,["G3870"]]]},{"k":28710,"v":[[0,1,["G2532"]],[1,3,["G4151"]],[3,6,["G4396"]],[6,8,["G5293"]],[8,11,["G4396"]]]},{"k":28711,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,3,["G2076"]],[3,4,["G3756"]],[4,8,["G181"]],[8,9,["G235"]],[9,11,["G1515"]],[11,12,["G5613"]],[12,13,["G1722"]],[13,14,["G3956"]],[14,15,["G1577"]],[15,17,["G3588"]],[17,18,["G40"]]]},{"k":28712,"v":[[0,2,["G5216"]],[2,3,["G1135"]],[3,5,["G4601"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G1577"]],[8,9,["G1063"]],[9,12,["G3756"]],[12,13,["G2010"]],[13,15,["G846"]],[15,17,["G2980"]],[17,18,["G235"]],[18,25,["G5293"]],[25,26,["G2531"]],[26,27,["G2532"]],[27,28,["G3004"]],[28,29,["G3588"]],[29,30,["G3551"]]]},{"k":28713,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G2309"]],[4,5,["G3129"]],[5,7,["G5100"]],[7,10,["G1905"]],[10,11,["G2398"]],[11,12,["G435"]],[12,13,["G1722"]],[13,14,["G3624"]],[14,15,["G1063"]],[15,17,["G2076"]],[17,19,["G149"]],[19,21,["G1135"]],[21,23,["G2980"]],[23,24,["G1722"]],[24,26,["G1577"]]]},{"k":28714,"v":[[0,1,["G2228"]],[1,2,["G1831"]],[2,3,["G3588"]],[3,4,["G3056"]],[4,6,["G2316"]],[6,8,["G575"]],[8,9,["G5216"]],[9,10,["G2228"]],[10,11,["G2658"]],[11,13,["G1519"]],[13,14,["G5209"]],[14,15,["G3441"]]]},{"k":28715,"v":[[0,3,["G1536"]],[3,5,["G1380"]],[5,7,["G1511"]],[7,9,["G4396"]],[9,10,["G2228"]],[10,11,["G4152"]],[11,14,["G1921"]],[14,15,["G3754"]],[15,18,["G3739"]],[18,20,["G1125"]],[20,22,["G5213"]],[22,23,["G1526"]],[23,25,["G1785"]],[25,27,["G3588"]],[27,28,["G2962"]]]},{"k":28716,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G5100"]],[4,6,["G50"]],[6,10,["G50"]]]},{"k":28717,"v":[[0,1,["G5620"]],[1,2,["G80"]],[2,3,["G2206"]],[3,5,["G4395"]],[5,6,["G2532"]],[6,7,["G2967"]],[7,8,["G3361"]],[8,10,["G2980"]],[10,12,["G1100"]]]},{"k":28718,"v":[[0,3,["G3956"]],[3,5,["G1096"]],[5,6,["G2156"]],[6,7,["G2532"]],[7,8,["G2596"]],[8,9,["G5010"]]]},{"k":28719,"v":[[0,1,["G1161"]],[1,2,["G80"]],[2,4,["G1107"]],[4,6,["G5213"]],[6,7,["G3588"]],[7,8,["G2098"]],[8,9,["G3739"]],[9,11,["G2097"]],[11,13,["G5213"]],[13,14,["G3739"]],[14,15,["G2532"]],[15,18,["G3880"]],[18,19,["G2532"]],[19,20,["G1722","G3739"]],[20,22,["G2476"]]]},{"k":28720,"v":[[0,1,["G1223"]],[1,2,["G3739"]],[2,3,["G2532"]],[3,6,["G4982"]],[6,7,["G1487"]],[7,11,["G2722"]],[11,12,["G5101"]],[12,13,["(G3056)"]],[13,14,["G2097"]],[14,16,["G5213"]],[16,17,["G1622","G1508"]],[17,20,["G4100"]],[20,22,["G1500"]]]},{"k":28721,"v":[[0,1,["G1063"]],[1,3,["G3860"]],[3,5,["G5213"]],[5,8,["G1722","G4413"]],[8,10,["G3739"]],[10,12,["G2532"]],[12,13,["G3880"]],[13,15,["G3754"]],[15,16,["G5547"]],[16,17,["G599"]],[17,18,["G5228"]],[18,19,["G2257"]],[19,20,["G266"]],[20,21,["G2596"]],[21,23,["G3588"]],[23,24,["G1124"]]]},{"k":28722,"v":[[0,1,["G2532"]],[1,2,["G3754"]],[2,5,["G2290"]],[5,6,["G2532"]],[6,7,["G3754"]],[7,10,["G1453"]],[10,11,["G3588"]],[11,12,["G5154"]],[12,13,["G2250"]],[13,14,["G2596"]],[14,16,["G3588"]],[16,17,["G1124"]]]},{"k":28723,"v":[[0,1,["G2532"]],[1,2,["G3754"]],[2,5,["G3700"]],[5,7,["G2786"]],[7,8,["G1534"]],[8,10,["G3588"]],[10,11,["G1427"]]]},{"k":28724,"v":[[0,2,["G1899"]],[2,5,["G3700"]],[5,7,["G1883"]],[7,9,["G4001"]],[9,10,["G80"]],[10,12,["G2178"]],[12,13,["G1537"]],[13,14,["G3739"]],[14,15,["G3588"]],[15,17,["G4119"]],[17,18,["G3306"]],[18,19,["G2193"]],[19,21,["G737"]],[21,22,["G1161"]],[22,23,["G5100"]],[23,24,["(G2532)"]],[24,26,["G2837"]]]},{"k":28725,"v":[[0,2,["G1899"]],[2,5,["G3700"]],[5,7,["G2385"]],[7,8,["G1534"]],[8,10,["G3956"]],[10,11,["G3588"]],[11,12,["G652"]]]},{"k":28726,"v":[[0,1,["G1161"]],[1,2,["G2078"]],[2,4,["G3956"]],[4,7,["G3700"]],[7,10,["G2504"]],[10,11,["G5619"]],[11,18,["G1626"]]]},{"k":28727,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,3,["G1510"]],[3,4,["G3588"]],[4,5,["G1646"]],[5,7,["G3588"]],[7,8,["G652"]],[8,9,["G3739"]],[9,10,["G1510"]],[10,11,["G3756"]],[11,12,["G2425"]],[12,15,["G2564"]],[15,17,["G652"]],[17,18,["G1360"]],[18,20,["G1377"]],[20,21,["G3588"]],[21,22,["G1577"]],[22,24,["G2316"]]]},{"k":28728,"v":[[0,1,["G1161"]],[1,4,["G5485"]],[4,6,["G2316"]],[6,8,["G1510"]],[8,9,["G3739"]],[9,11,["G1510"]],[11,12,["G2532"]],[12,13,["G848"]],[13,14,["G5485"]],[14,15,["G3588"]],[15,18,["G1519"]],[18,19,["G1691"]],[19,20,["G1096"]],[20,21,["G3756"]],[21,23,["G2756"]],[23,24,["G235"]],[24,26,["G2872"]],[26,28,["G4054"]],[28,30,["G846"]],[30,31,["G3956"]],[31,32,["G1161"]],[32,33,["G3756"]],[33,34,["G1473"]],[34,35,["G235"]],[35,36,["G3588"]],[36,37,["G5485"]],[37,39,["G2316"]],[39,40,["G3588"]],[40,42,["G4862"]],[42,43,["G1698"]]]},{"k":28729,"v":[[0,1,["G3767"]],[1,2,["G1535"]],[2,5,["G1473"]],[5,7,["G1565"]],[7,8,["G3779"]],[8,10,["G2784"]],[10,11,["G2532"]],[11,12,["G3779"]],[12,14,["G4100"]]]},{"k":28730,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5547"]],[3,5,["G2784"]],[5,6,["G3754"]],[6,8,["G1453"]],[8,9,["G1537"]],[9,11,["G3498"]],[11,12,["G4459"]],[12,13,["G3004"]],[13,14,["G5100"]],[14,15,["G1722"]],[15,16,["G5213"]],[16,17,["G3754"]],[17,19,["G2076"]],[19,20,["G3756"]],[20,21,["G386"]],[21,24,["G3498"]]]},{"k":28731,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G2076"]],[4,5,["G3756"]],[5,6,["G386"]],[6,9,["G3498"]],[9,12,["G5547"]],[12,13,["G3761"]],[13,14,["G1453"]]]},{"k":28732,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5547"]],[3,5,["G3756"]],[5,6,["G1453"]],[6,7,["G686"]],[7,9,["G2257"]],[9,10,["G2782"]],[10,11,["G2756"]],[11,12,["G1161"]],[12,13,["G5216"]],[13,14,["G4102"]],[14,16,["G2532"]],[16,17,["G2756"]]]},{"k":28733,"v":[[0,1,["G1161"]],[1,2,["G2532"]],[2,5,["G2147"]],[5,7,["G5575"]],[7,9,["G2316"]],[9,10,["G3754"]],[10,13,["G3140"]],[13,14,["G2596"]],[14,15,["G2316"]],[15,16,["G3754"]],[16,19,["G1453"]],[19,20,["G5547"]],[20,21,["G3739"]],[21,25,["G1453","G3756"]],[25,29,["G1512","G686"]],[29,31,["G3498"]],[31,32,["G1453"]],[32,33,["G3756"]]]},{"k":28734,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,4,["G3498"]],[4,5,["G1453"]],[5,6,["G3756"]],[6,9,["G3761"]],[9,10,["G5547"]],[10,11,["G1453"]]]},{"k":28735,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5547"]],[3,5,["G3756"]],[5,6,["G1453"]],[6,7,["G5216"]],[7,8,["G4102"]],[8,10,["G3152"]],[10,12,["G2075"]],[12,13,["G2089"]],[13,14,["G1722"]],[14,15,["G5216"]],[15,16,["G266"]]]},{"k":28736,"v":[[0,1,["G686"]],[1,7,["G2837","G2532"]],[7,8,["G1722"]],[8,9,["G5547"]],[9,11,["G622"]]]},{"k":28737,"v":[[0,1,["G1487"]],[1,2,["G1722"]],[2,3,["G5026"]],[3,4,["G2222"]],[4,5,["G3440"]],[5,7,["G2070"]],[7,8,["G1679"]],[8,9,["G1722"]],[9,10,["G5547"]],[10,12,["G2070"]],[12,14,["G3956"]],[14,15,["G444"]],[15,17,["G1652"]]]},{"k":28738,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,4,["G5547"]],[4,5,["G1453"]],[5,6,["G1537"]],[6,8,["G3498"]],[8,10,["G1096"]],[10,12,["G536"]],[12,16,["G2837"]]]},{"k":28739,"v":[[0,1,["G1063"]],[1,2,["G1894"]],[2,3,["G1223"]],[3,4,["G444"]],[4,6,["G2288"]],[6,7,["G1223"]],[7,8,["G444"]],[8,10,["G2532"]],[10,12,["G386"]],[12,15,["G3498"]]]},{"k":28740,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G1722"]],[3,4,["G76"]],[4,5,["G3956"]],[5,6,["G599"]],[6,7,["G2532"]],[7,8,["G3779"]],[8,9,["G1722"]],[9,10,["G5547"]],[10,12,["G3956"]],[12,15,["G2227"]]]},{"k":28741,"v":[[0,1,["G1161"]],[1,3,["G1538"]],[3,4,["G1722"]],[4,6,["G2398"]],[6,7,["G5001"]],[7,8,["G5547"]],[8,10,["G536"]],[10,11,["G1899"]],[11,12,["G3588"]],[12,15,["G5547"]],[15,16,["G1722"]],[16,17,["G848"]],[17,18,["G3952"]]]},{"k":28742,"v":[[0,1,["G1534"]],[1,3,["G3588"]],[3,4,["G5056"]],[4,5,["G3752"]],[5,10,["G3860"]],[10,11,["G3588"]],[11,12,["G932"]],[12,14,["G2316"]],[14,15,["G2532"]],[15,17,["G3962"]],[17,18,["G3752"]],[18,23,["G2673"]],[23,24,["G3956"]],[24,25,["G746"]],[25,26,["G2532"]],[26,27,["G3956"]],[27,28,["G1849"]],[28,29,["G2532"]],[29,30,["G1411"]]]},{"k":28743,"v":[[0,1,["G1063"]],[1,2,["G846"]],[2,3,["G1163"]],[3,4,["G936"]],[4,5,["G891","G3757"]],[5,8,["G5087"]],[8,9,["G3956"]],[9,10,["G2190"]],[10,11,["G5259"]],[11,12,["G848"]],[12,13,["G4228"]]]},{"k":28744,"v":[[0,2,["G2078"]],[2,3,["G2190"]],[3,7,["G2673"]],[7,9,["G2288"]]]},{"k":28745,"v":[[0,1,["G1063"]],[1,4,["G5293"]],[4,6,["G3956"]],[6,7,["G5259"]],[7,8,["G848"]],[8,9,["G4228"]],[9,10,["G1161"]],[10,11,["G3752"]],[11,13,["G2036","(G3754)"]],[13,15,["G3956"]],[15,18,["G5293"]],[18,22,["G1212"]],[22,23,["G3754"]],[23,26,["G1622"]],[26,32,["G5293","G3956"]],[32,33,["G846"]]]},{"k":28746,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,4,["G3956"]],[4,8,["G5293"]],[8,9,["G846"]],[9,10,["G5119"]],[10,12,["G3588"]],[12,13,["G5207"]],[13,14,["G2532"]],[14,15,["G848"]],[15,17,["G5293"]],[17,24,["G5293","G3956"]],[24,25,["G846"]],[25,26,["G2443"]],[26,27,["G2316"]],[27,29,["G5600"]],[29,30,["G3956"]],[30,31,["G1722"]],[31,32,["G3956"]]]},{"k":28747,"v":[[0,1,["G1893"]],[1,2,["G5101"]],[2,5,["G4160"]],[5,8,["G907"]],[8,9,["G5228"]],[9,10,["G3588"]],[10,11,["G3498"]],[11,12,["G1487"]],[12,14,["G3498"]],[14,15,["G1453"]],[15,16,["G3756"]],[16,18,["G3654"]],[18,19,["G5101"]],[19,22,["G2532"]],[22,23,["G907"]],[23,24,["G5228"]],[24,25,["G3588"]],[25,26,["G3498"]]]},{"k":28748,"v":[[0,1,["G2532"]],[1,2,["G5101"]],[2,6,["G2793","G2249"]],[6,7,["G3956"]],[7,8,["G5610"]]]},{"k":28749,"v":[[0,2,["G3513"]],[2,4,["G2251"]],[4,5,["G2746"]],[5,6,["G3739"]],[6,8,["G2192"]],[8,9,["G1722"]],[9,10,["G5547"]],[10,11,["G2424"]],[11,12,["G2257"]],[12,13,["G2962"]],[13,15,["G599"]],[15,16,["G2596","G2250"]]]},{"k":28750,"v":[[0,1,["G1487"]],[1,4,["G2596"]],[4,6,["G444"]],[6,11,["G2341"]],[11,12,["G1722"]],[12,13,["G2181"]],[13,14,["G5101"]],[14,15,["G3786"]],[15,17,["G3427"]],[17,18,["G1487"]],[18,20,["G3498"]],[20,21,["G1453"]],[21,22,["G3756"]],[22,25,["G5315"]],[25,26,["G2532"]],[26,27,["G4095"]],[27,28,["G1063"]],[28,30,["G839"]],[30,32,["G599"]]]},{"k":28751,"v":[[0,2,["G3361"]],[2,3,["G4105"]],[3,4,["G2556"]],[4,5,["G3657"]],[5,6,["G5351"]],[6,7,["G5543"]],[7,8,["G2239"]]]},{"k":28752,"v":[[0,1,["G1594"]],[1,3,["G1346"]],[3,4,["G2532"]],[4,5,["G264"]],[5,6,["G3361"]],[6,7,["G1063"]],[7,8,["G5100"]],[8,12,["G2192","G56"]],[12,14,["G2316"]],[14,16,["G3004"]],[16,18,["G4314"]],[18,19,["G5213"]],[19,20,["G1791"]]]},{"k":28753,"v":[[0,1,["G235"]],[1,2,["G5100"]],[2,5,["G2046"]],[5,6,["G4459"]],[6,8,["G3588"]],[8,9,["G3498"]],[9,11,["G1453"]],[11,12,["G1161"]],[12,14,["G4169"]],[14,15,["G4983"]],[15,18,["G2064"]]]},{"k":28754,"v":[[0,2,["G878"]],[2,4,["G3739"]],[4,5,["G4771"]],[5,6,["G4687"]],[6,8,["G3756"]],[8,9,["G2227"]],[9,10,["G3362"]],[10,12,["G599"]]]},{"k":28755,"v":[[0,1,["G2532"]],[1,3,["G3739"]],[3,5,["G4687"]],[5,7,["G4687"]],[7,8,["G3756"]],[8,10,["G4983"]],[10,13,["G1096"]],[13,14,["G235"]],[14,15,["G1131"]],[15,16,["G2848","(G1487)"]],[16,19,["G5177"]],[19,21,["G4621"]],[21,22,["G2228"]],[22,24,["G5100"]],[24,25,["G3062"]],[25,26,[]]]},{"k":28756,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,3,["G1325"]],[3,4,["G846"]],[4,6,["G4983"]],[6,7,["G2531"]],[7,10,["G2309"]],[10,12,["G2532"]],[12,14,["G1538"]],[14,15,["G4690"]],[15,17,["G2398"]],[17,18,["G4983"]]]},{"k":28757,"v":[[0,1,["G3956"]],[1,2,["G4561"]],[2,4,["G3756"]],[4,5,["G3588"]],[5,6,["G846"]],[6,7,["G4561"]],[7,8,["G235"]],[8,11,["G243"]],[11,12,["(G3303)"]],[12,14,["G4561"]],[14,16,["G444","(G1161)"]],[16,17,["G243"]],[17,18,["G4561"]],[18,20,["G2934","(G1161)"]],[20,21,["G243"]],[21,23,["G2486"]],[23,24,["(G1161)"]],[24,25,["G243"]],[25,27,["G4421"]]]},{"k":28758,"v":[[0,3,["G2532"]],[3,4,["G2032"]],[4,5,["G4983"]],[5,6,["G2532"]],[6,7,["G4983"]],[7,8,["G1919"]],[8,9,["G235"]],[9,10,["G3588"]],[10,11,["G1391"]],[11,13,["G3588"]],[13,14,["G2032"]],[14,15,["(G3303)"]],[15,16,["G2087"]],[16,17,["G1161"]],[17,18,["G3588"]],[18,21,["G3588"]],[21,22,["G1919"]],[22,24,["G2087"]]]},{"k":28759,"v":[[0,3,["G243"]],[3,4,["G1391"]],[4,7,["G2246"]],[7,8,["G2532"]],[8,9,["G243"]],[9,10,["G1391"]],[10,13,["G4582"]],[13,14,["G2532"]],[14,15,["G243"]],[15,16,["G1391"]],[16,19,["G792"]],[19,20,["G1063"]],[20,22,["G792"]],[22,24,["G1308"]],[24,26,["G792"]],[26,27,["G1722"]],[27,28,["G1391"]]]},{"k":28760,"v":[[0,1,["G3779"]],[1,2,["G2532"]],[2,4,["G3588"]],[4,5,["G386"]],[5,7,["G3588"]],[7,8,["G3498"]],[8,11,["G4687"]],[11,12,["G1722"]],[12,13,["G5356"]],[13,16,["G1453"]],[16,17,["G1722"]],[17,18,["G861"]]]},{"k":28761,"v":[[0,3,["G4687"]],[3,4,["G1722"]],[4,5,["G819"]],[5,8,["G1453"]],[8,9,["G1722"]],[9,10,["G1391"]],[10,13,["G4687"]],[13,14,["G1722"]],[14,15,["G769"]],[15,18,["G1453"]],[18,19,["G1722"]],[19,20,["G1411"]]]},{"k":28762,"v":[[0,3,["G4687"]],[3,5,["G5591"]],[5,6,["G4983"]],[6,9,["G1453"]],[9,11,["G4152"]],[11,12,["G4983"]],[12,14,["G2076"]],[14,16,["G5591"]],[16,17,["G4983"]],[17,18,["G2532"]],[18,20,["G2076"]],[20,22,["G4152"]],[22,23,["G4983"]]]},{"k":28763,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,5,["G1125"]],[5,6,["G3588"]],[6,7,["G4413"]],[7,8,["G444"]],[8,9,["G76"]],[9,11,["G1096"]],[11,12,["(G1519)"]],[12,13,["G2198"]],[13,14,["G5590"]],[14,15,["G3588"]],[15,16,["G2078"]],[16,17,["G76"]],[17,21,["G2227"]],[21,22,["G4151"]]]},{"k":28764,"v":[[0,1,["G235"]],[1,4,["G3756"]],[4,5,["G4412"]],[5,8,["G4152"]],[8,9,["G235"]],[9,13,["G5591"]],[13,15,["G1899"]],[15,19,["G4152"]]]},{"k":28765,"v":[[0,1,["G3588"]],[1,2,["G4413"]],[2,3,["G444"]],[3,5,["G1537"]],[5,7,["G1093"]],[7,8,["G5517"]],[8,9,["G3588"]],[9,10,["G1208"]],[10,11,["G444"]],[11,13,["G3588"]],[13,14,["G2962"]],[14,15,["G1537"]],[15,16,["G3772"]]]},{"k":28766,"v":[[0,1,["G3634"]],[1,3,["G3588"]],[3,4,["G5517"]],[4,5,["G5108"]],[5,11,["G5517","G2532"]],[11,12,["G2532"]],[12,13,["G3634"]],[13,15,["G3588"]],[15,16,["G2032"]],[16,17,["G5108"]],[17,23,["G2032","G2532"]]]},{"k":28767,"v":[[0,1,["G2532"]],[1,2,["G2531"]],[2,5,["G5409"]],[5,6,["G3588"]],[6,7,["G1504"]],[7,9,["G3588"]],[9,10,["G5517"]],[10,13,["G2532"]],[13,14,["G5409"]],[14,15,["G3588"]],[15,16,["G1504"]],[16,18,["G3588"]],[18,19,["G2032"]]]},{"k":28768,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,4,["G5346"]],[4,5,["G80"]],[5,6,["G3754"]],[6,7,["G4561"]],[7,8,["G2532"]],[8,9,["G129"]],[9,10,["G1410","G3756"]],[10,11,["G2816"]],[11,13,["G932"]],[13,15,["G2316"]],[15,16,["G3761"]],[16,18,["G5356"]],[18,19,["G2816"]],[19,20,["G861"]]]},{"k":28769,"v":[[0,1,["G2400"]],[1,3,["G3004"]],[3,4,["G5213"]],[4,6,["G3466"]],[6,9,["G3756"]],[9,10,["G3956"]],[10,11,["(G2837)"]],[11,12,["G1161"]],[12,15,["G3956"]],[15,17,["G236"]]]},{"k":28770,"v":[[0,1,["G1722"]],[1,3,["G823"]],[3,4,["G1722"]],[4,6,["G4493"]],[6,9,["G3788"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G2078"]],[12,13,["G4536"]],[13,14,["G1063"]],[14,18,["G4537"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G3498"]],[21,24,["G1453"]],[24,25,["G862"]],[25,26,["G2532"]],[26,27,["G2249"]],[27,30,["G236"]]]},{"k":28771,"v":[[0,1,["G1063"]],[1,2,["G5124"]],[2,3,["G5349"]],[3,4,["G1163"]],[4,6,["G1746"]],[6,7,["G861"]],[7,8,["G2532"]],[8,9,["G5124"]],[9,10,["G2349"]],[10,13,["G1746"]],[13,14,["G110"]]]},{"k":28772,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,3,["G5124"]],[3,4,["G5349"]],[4,8,["G1746"]],[8,9,["G861"]],[9,10,["G2532"]],[10,11,["G5124"]],[11,12,["G2349"]],[12,16,["G1746"]],[16,17,["G110"]],[17,18,["G5119"]],[18,23,["G1096"]],[23,24,["G3588"]],[24,25,["G3056"]],[25,28,["G1125"]],[28,29,["G2288"]],[29,32,["G2666"]],[32,33,["G1519"]],[33,34,["G3534"]]]},{"k":28773,"v":[[0,2,["G2288"]],[2,3,["G4226"]],[3,5,["G4675"]],[5,6,["G2759"]],[6,8,["G86"]],[8,9,["G4226"]],[9,11,["G4675"]],[11,12,["G3534"]]]},{"k":28774,"v":[[0,0,["(G1161)"]],[0,1,["G3588"]],[1,2,["G2759"]],[2,4,["G2288"]],[4,6,["G266"]],[6,7,["G1161"]],[7,8,["G3588"]],[8,9,["G1411"]],[9,11,["G266"]],[11,13,["G3588"]],[13,14,["G3551"]]]},{"k":28775,"v":[[0,1,["G1161"]],[1,2,["G5485"]],[2,5,["G2316"]],[5,7,["G1325"]],[7,8,["G2254"]],[8,9,["G3588"]],[9,10,["G3534"]],[10,11,["G1223"]],[11,12,["G2257"]],[12,13,["G2962"]],[13,14,["G2424"]],[14,15,["G5547"]]]},{"k":28776,"v":[[0,1,["G5620"]],[1,2,["G3450"]],[2,3,["G27"]],[3,4,["G80"]],[4,5,["G1096"]],[5,7,["G1476"]],[7,8,["G277"]],[8,9,["G3842"]],[9,10,["G4052"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G2041"]],[13,15,["G3588"]],[15,16,["G2962"]],[16,20,["G1492"]],[20,21,["G3754"]],[21,22,["G5216"]],[22,23,["G2873"]],[23,24,["G2076"]],[24,25,["G3756"]],[25,27,["G2756"]],[27,28,["G1722"]],[28,30,["G2962"]]]},{"k":28777,"v":[[0,1,["G1161"]],[1,2,["G4012"]],[2,3,["G3588"]],[3,4,["G3048"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G40"]],[7,8,["G5618"]],[8,12,["G1299"]],[12,14,["G3588"]],[14,15,["G1577"]],[15,17,["G1053"]],[17,18,["G2532"]],[18,19,["G3779"]],[19,20,["G4160"]],[20,21,["G5210"]]]},{"k":28778,"v":[[0,3,["G2596","G3391"]],[3,7,["G4521"]],[7,10,["G1538"]],[10,12,["G5216"]],[12,13,["G5087"]],[13,14,["G3844"]],[14,15,["G1438"]],[15,17,["G2343"]],[17,18,["G3748","G302"]],[18,21,["G2137"]],[21,23,["G2443"]],[23,25,["G1096"]],[25,26,["G3361"]],[26,27,["G3048"]],[27,28,["(G3752)"]],[28,30,["G2064"]]]},{"k":28779,"v":[[0,1,["G1161"]],[1,2,["G3752"]],[2,4,["G3854"]],[4,5,["G3739","G1437"]],[5,8,["G1381"]],[8,9,["G1223"]],[9,11,["G1992"]],[11,12,["G5128"]],[12,15,["G3992"]],[15,17,["G667"]],[17,18,["G5216"]],[18,19,["G5485"]],[19,20,["G1519"]],[20,21,["G2419"]]]},{"k":28780,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,4,["G5600"]],[4,5,["G514"]],[5,9,["G2504","G4198"]],[9,12,["G4198"]],[12,13,["G4862"]],[13,14,["G1698"]]]},{"k":28781,"v":[[0,1,["G1161"]],[1,4,["G2064"]],[4,5,["G4314"]],[5,6,["G5209"]],[6,7,["G3752"]],[7,11,["G1330"]],[11,12,["G3109"]],[12,13,["G1063"]],[13,17,["G1330"]],[17,18,["G3109"]]]},{"k":28782,"v":[[0,1,["G1161"]],[1,4,["G5177"]],[4,8,["G3887"]],[8,9,["G2228"]],[9,10,["G2532"]],[10,11,["G3914"]],[11,12,["G4314"]],[12,13,["G5209"]],[13,14,["G2443"]],[14,15,["G5210"]],[15,21,["G4311","G3165"]],[21,22,["G3757","G1437"]],[22,24,["G4198"]]]},{"k":28783,"v":[[0,1,["G1063"]],[1,3,["G2309"]],[3,4,["G3756"]],[4,5,["G1492"]],[5,6,["G5209"]],[6,7,["G737"]],[7,10,["G1722","G3938"]],[10,11,["G1161"]],[11,13,["G1679"]],[13,15,["G1961"]],[15,17,["G5100","G5550"]],[17,18,["G4314"]],[18,19,["G5209"]],[19,20,["G1437"]],[20,21,["G3588"]],[21,22,["G2962"]],[22,23,["G2010"]]]},{"k":28784,"v":[[0,1,["G1161"]],[1,4,["G1961"]],[4,5,["G1722"]],[5,6,["G2181"]],[6,7,["G2193"]],[7,8,["G4005"]]]},{"k":28785,"v":[[0,1,["G1063"]],[1,3,["G3173"]],[3,4,["G2374"]],[4,5,["G2532"]],[5,6,["G1756"]],[6,8,["G455"]],[8,10,["G3427"]],[10,11,["G2532"]],[11,14,["G4183"]],[14,15,["G480"]]]},{"k":28786,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,3,["G5095"]],[3,4,["G2064"]],[4,5,["G991"]],[5,6,["G2443"]],[6,9,["G1096"]],[9,10,["G4314"]],[10,11,["G5209"]],[11,13,["G870"]],[13,14,["G1063"]],[14,16,["G2038"]],[16,17,["G3588"]],[17,18,["G2041"]],[18,21,["G2962"]],[21,22,["G5613"]],[22,23,["G1473"]],[23,24,["G2532"]],[24,25,[]]]},{"k":28787,"v":[[0,2,["G3361"]],[2,3,["G5100"]],[3,4,["G3767"]],[4,5,["G1848"]],[5,6,["G846"]],[6,7,["G1161"]],[7,10,["G4311","G846"]],[10,11,["G1722"]],[11,12,["G1515"]],[12,13,["G2443"]],[13,16,["G2064"]],[16,17,["G4314"]],[17,18,["G3165"]],[18,19,["G1063"]],[19,22,["G1551"]],[22,23,["G846"]],[23,24,["G3326"]],[24,25,["G3588"]],[25,26,["G80"]]]},{"k":28788,"v":[[0,0,["(G1161)"]],[0,2,["G4012"]],[2,4,["G80"]],[4,5,["G625"]],[5,7,["G4183"]],[7,8,["G3870"]],[8,9,["G846"]],[9,10,["G2443"]],[10,11,["G2064"]],[11,12,["G4314"]],[12,13,["G5209"]],[13,14,["G3326"]],[14,15,["G3588"]],[15,16,["G80"]],[16,17,["G2532"]],[17,19,["G2307"]],[19,20,["G2258"]],[20,23,["G3843","G3756"]],[23,24,["G2443"]],[24,25,["G2064"]],[25,28,["G3568"]],[28,29,["G1161"]],[29,32,["G2064"]],[32,33,["G3752"]],[33,38,["G2119"]]]},{"k":28789,"v":[[0,1,["G1127"]],[1,4,["G4739"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G4102"]],[7,11,["G407"]],[11,13,["G2901"]]]},{"k":28790,"v":[[0,4,["G3956","G5216"]],[4,6,["G1096"]],[6,7,["G1722"]],[7,8,["G26"]]]},{"k":28791,"v":[[0,0,["(G1161)"]],[0,2,["G3870"]],[2,3,["G5209"]],[3,4,["G80"]],[4,6,["G1492"]],[6,7,["G3588"]],[7,8,["G3614"]],[8,10,["G4734"]],[10,11,["G3754"]],[11,13,["G2076"]],[13,15,["G536"]],[15,17,["G882"]],[17,18,["G2532"]],[18,22,["G5021"]],[22,23,["G1438"]],[23,24,["G1519"]],[24,26,["G1248"]],[26,28,["G3588"]],[28,29,["G40"]]]},{"k":28792,"v":[[0,1,["G2443","(G2532)"]],[1,2,["G5210"]],[2,5,["G5293"]],[5,6,["G5108"]],[6,7,["G2532"]],[7,10,["G3956"]],[10,13,["G4903"]],[13,15,["G2532"]],[15,16,["G2872"]]]},{"k":28793,"v":[[0,0,["(G1161)"]],[0,3,["G5463"]],[3,4,["G1909"]],[4,5,["G3588"]],[5,6,["G3952"]],[6,8,["G4734"]],[8,9,["G2532"]],[9,10,["G5415"]],[10,11,["G2532"]],[11,12,["G883"]],[12,13,["G3754"]],[13,17,["G5303"]],[17,20,["G5216"]],[20,21,["G3778"]],[21,23,["G378"]]]},{"k":28794,"v":[[0,1,["G1063"]],[1,4,["G373"]],[4,5,["G1699"]],[5,6,["G4151"]],[6,7,["G2532"]],[7,8,["G5216"]],[8,9,["G3767"]],[9,10,["G1921"]],[10,15,["G5108"]]]},{"k":28795,"v":[[0,1,["G3588"]],[1,2,["G1577"]],[2,4,["G773"]],[4,5,["G782"]],[5,6,["G5209"]],[6,7,["G207"]],[7,8,["G2532"]],[8,9,["G4252"]],[9,10,["G782"]],[10,11,["G5209"]],[11,12,["G4183"]],[12,13,["G1722"]],[13,15,["G2962"]],[15,16,["G4862"]],[16,17,["G3588"]],[17,18,["G1577"]],[18,21,["G2596"]],[21,22,["G848"]],[22,23,["G3624"]]]},{"k":28796,"v":[[0,1,["G3956"]],[1,2,["G3588"]],[2,3,["G80"]],[3,4,["G782"]],[4,5,["G5209"]],[5,6,["G782"]],[6,9,["G240"]],[9,10,["G1722"]],[10,12,["G40"]],[12,13,["G5370"]]]},{"k":28797,"v":[[0,1,["G3588"]],[1,2,["G783"]],[2,5,["G3972"]],[5,8,["G1699"]],[8,9,["G5495"]]]},{"k":28798,"v":[[0,3,["G1536"]],[3,4,["G5368"]],[4,5,["G3756"]],[5,6,["G3588"]],[6,7,["G2962"]],[7,8,["G2424"]],[8,9,["G5547"]],[9,12,["G2277"]],[12,13,["G331"]],[13,14,["G3134"]]]},{"k":28799,"v":[[0,1,["G3588"]],[1,2,["G5485"]],[2,5,["G2962"]],[5,6,["G2424"]],[6,7,["G5547"]],[7,9,["G3326"]],[9,10,["G5216"]]]},{"k":28800,"v":[[0,1,["G3450"]],[1,2,["G26"]],[2,4,["G3326"]],[4,5,["G5216"]],[5,6,["G3956"]],[6,7,["G1722"]],[7,8,["G5547"]],[8,9,["G2424"]],[9,10,["G281"]]]},{"k":28801,"v":[[0,1,["G3972"]],[1,3,["G652"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,7,["G1223"]],[7,9,["G2307"]],[9,11,["G2316"]],[11,12,["G2532"]],[12,13,["G5095"]],[13,15,["G80"]],[15,17,["G3588"]],[17,18,["G1577"]],[18,20,["G2316"]],[20,22,["G5607"]],[22,23,["G1722"]],[23,24,["G2882"]],[24,25,["G4862"]],[25,26,["G3956"]],[26,27,["G3588"]],[27,28,["G40"]],[28,30,["G5607"]],[30,31,["G1722"]],[31,32,["G3650"]],[32,33,["G882"]]]},{"k":28802,"v":[[0,1,["G5485"]],[1,4,["G5213"]],[4,5,["G2532"]],[5,6,["G1515"]],[6,7,["G575"]],[7,8,["G2316"]],[8,9,["G2257"]],[9,10,["G3962"]],[10,11,["G2532"]],[11,14,["G2962"]],[14,15,["G2424"]],[15,16,["G5547"]]]},{"k":28803,"v":[[0,1,["G2128"]],[1,3,["G2316"]],[3,4,["G2532"]],[4,6,["G3962"]],[6,8,["G2257"]],[8,9,["G2962"]],[9,10,["G2424"]],[10,11,["G5547"]],[11,12,["G3588"]],[12,13,["G3962"]],[13,15,["G3628"]],[15,16,["G2532"]],[16,18,["G2316"]],[18,20,["G3956"]],[20,21,["G3874"]]]},{"k":28804,"v":[[0,1,["G3588"]],[1,2,["G3870"]],[2,3,["G2248"]],[3,4,["G1909"]],[4,5,["G3956"]],[5,6,["G2257"]],[6,7,["G2347"]],[7,9,["G2248"]],[9,12,["G1410"]],[12,14,["G3870"]],[14,15,["G3588"]],[15,18,["G1722"]],[18,19,["G3956"]],[19,20,["G2347"]],[20,21,["G1223"]],[21,22,["G3588"]],[22,23,["G3874"]],[23,24,["G3739"]],[24,25,["G848"]],[25,28,["G3870"]],[28,29,["G5259"]],[29,30,["G2316"]]]},{"k":28805,"v":[[0,1,["G3754"]],[1,2,["G2531"]],[2,3,["G3588"]],[3,4,["G3804"]],[4,6,["G5547"]],[6,7,["G4052"]],[7,8,["G1519"]],[8,9,["G2248"]],[9,10,["G3779"]],[10,11,["G2257"]],[11,12,["G3874"]],[12,13,["G2532"]],[13,14,["G4052"]],[14,15,["G1223"]],[15,16,["G5547"]]]},{"k":28806,"v":[[0,1,["G1161"]],[1,2,["G1535"]],[2,5,["G2346"]],[5,8,["G5228"]],[8,9,["G5216"]],[9,10,["G3874"]],[10,11,["G2532"]],[11,12,["G4991"]],[12,15,["G1754"]],[15,16,["G1722"]],[16,18,["G5281"]],[18,20,["G3588"]],[20,21,["G846"]],[21,22,["G3804"]],[22,23,["G3739"]],[23,24,["G2249"]],[24,25,["G2532"]],[25,26,["G3958"]],[26,28,["G1535"]],[28,31,["G3870"]],[31,34,["G5228"]],[34,35,["G5216"]],[35,36,["G3874"]],[36,37,["G2532"]],[37,38,["G4991"]]]},{"k":28807,"v":[[0,1,["G2532"]],[1,2,["G2257"]],[2,3,["G1680"]],[3,4,["G5228"]],[4,5,["G5216"]],[5,7,["G949"]],[7,8,["G1492"]],[8,9,["G3754"]],[9,10,["G5618"]],[10,12,["G2075"]],[12,13,["G2844"]],[13,15,["G3588"]],[15,16,["G3804"]],[16,17,["G3779"]],[17,21,["G2532"]],[21,23,["G3588"]],[23,24,["G3874"]]]},{"k":28808,"v":[[0,1,["G1063"]],[1,3,["G2309"]],[3,4,["G3756"]],[4,5,["G80"]],[5,8,["G50","G5209"]],[8,9,["G5228"]],[9,10,["G2257"]],[10,11,["G2347"]],[11,13,["G1096"]],[13,15,["G2254"]],[15,16,["G1722"]],[16,17,["G773"]],[17,18,["G3754"]],[18,21,["G916"]],[21,24,["G2596","G5236"]],[24,25,["G5228"]],[25,26,["G1411"]],[26,28,["G5620"]],[28,29,["G2248"]],[29,30,["G1820"]],[30,31,["G2532"]],[31,33,["G2198"]]]},{"k":28809,"v":[[0,1,["G235"]],[1,2,["G848"]],[2,3,["G2192"]],[3,4,["G3588"]],[4,5,["G610"]],[5,7,["G2288"]],[7,8,["G1722"]],[8,9,["G1438"]],[9,10,["G2443"]],[10,12,["G5600"]],[12,13,["G3361"]],[13,14,["G3982"]],[14,15,["G1909"]],[15,16,["G1438"]],[16,17,["G235"]],[17,18,["G1909"]],[18,19,["G2316"]],[19,21,["G1453"]],[21,22,["G3588"]],[22,23,["G3498"]]]},{"k":28810,"v":[[0,1,["G3739"]],[1,2,["G4506"]],[2,3,["G2248"]],[3,4,["G1537"]],[4,6,["G5082"]],[6,8,["G2288"]],[8,9,["G2532"]],[9,11,["G4506"]],[11,12,["G1519"]],[12,13,["G3739"]],[13,15,["G1679"]],[15,16,["G3754"]],[16,18,["(G2532)"]],[18,19,["G2089"]],[19,20,["G4506"]],[20,21,[]]]},{"k":28811,"v":[[0,1,["G5216"]],[1,2,["G2532"]],[2,4,["G4943"]],[4,6,["G1162"]],[6,7,["G5228"]],[7,8,["G2257"]],[8,9,["G2443"]],[9,12,["G5486"]],[12,14,["G1519"]],[14,15,["G2248"]],[15,19,["G1537"]],[19,20,["G4183"]],[20,21,["G4383"]],[21,25,["G2168"]],[25,26,["G1223"]],[26,27,["G4183"]],[27,30,["G5228","G2257"]]]},{"k":28812,"v":[[0,1,["G1063"]],[1,2,["G2257"]],[2,3,["G2746"]],[3,4,["G2076"]],[4,5,["G3778"]],[5,6,["G3588"]],[6,7,["G3142"]],[7,9,["G2257"]],[9,10,["G4893"]],[10,11,["G3754"]],[11,12,["G1722"]],[12,13,["G572"]],[13,14,["G2532"]],[14,15,["G2316"]],[15,16,["G1505"]],[16,17,["G3756"]],[17,18,["G1722"]],[18,19,["G4559"]],[19,20,["G4678"]],[20,21,["G235"]],[21,22,["G1722"]],[22,24,["G5485"]],[24,26,["G2316"]],[26,31,["G390"]],[31,32,["G1722"]],[32,33,["G3588"]],[33,34,["G2889"]],[34,35,["G1161"]],[35,37,["G4056"]],[37,38,["G4314"]],[38,39,["G5209"]]]},{"k":28813,"v":[[0,1,["G1063"]],[1,3,["G1125"]],[3,4,["G3756"]],[4,6,["G243"]],[6,8,["G5213"]],[8,9,["G235","G2228"]],[9,10,["G3739"]],[10,12,["G314"]],[12,13,["G2228","(G2532)"]],[13,14,["G1921"]],[14,15,["G1161"]],[15,17,["G1679"]],[17,19,["(G3754)"]],[19,20,["G1921"]],[20,21,["G2532"]],[21,22,["G2193"]],[22,24,["G5056"]]]},{"k":28814,"v":[[0,1,["G2531"]],[1,2,["G2532"]],[2,5,["G1921"]],[5,6,["G2248"]],[6,7,["G575"]],[7,8,["G3313"]],[8,9,["G3754"]],[9,11,["G2070"]],[11,12,["G5216"]],[12,13,["G2745"]],[13,15,["G2509"]],[15,16,["G5210"]],[16,17,["G2532"]],[17,19,["G2257"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G2250"]],[22,24,["G3588"]],[24,25,["G2962"]],[25,26,["G2424"]]]},{"k":28815,"v":[[0,1,["G2532"]],[1,3,["G5026"]],[3,4,["G4006"]],[4,7,["G1014"]],[7,9,["G2064"]],[9,10,["G4314"]],[10,11,["G5209"]],[11,12,["G4386"]],[12,13,["G2443"]],[13,16,["G2192"]],[16,18,["G1208"]],[18,19,["G5485"]]]},{"k":28816,"v":[[0,1,["G2532"]],[1,3,["G1330"]],[3,4,["G1223"]],[4,5,["G5216"]],[5,6,["G1519"]],[6,7,["G3109"]],[7,8,["G2532"]],[8,10,["G2064"]],[10,11,["G3825"]],[11,13,["G575"]],[13,14,["G3109"]],[14,15,["G4314"]],[15,16,["G5209"]],[16,17,["G2532"]],[17,18,["G5259"]],[18,19,["G5216"]],[19,25,["G4311"]],[25,26,["G1519"]],[26,27,["G2449"]]]},{"k":28817,"v":[[0,3,["G3767"]],[3,6,["G1011","G5124"]],[6,8,["(G3385","G686)"]],[8,9,["G5530"]],[9,10,["G1644"]],[10,11,["G2228"]],[11,14,["G3739"]],[14,16,["G1011"]],[16,19,["G1011"]],[19,20,["G2596"]],[20,23,["G4561"]],[23,24,["G2443"]],[24,25,["G3844"]],[25,26,["G1698"]],[26,29,["G5600"]],[29,30,["G3483"]],[30,31,["G3483"]],[31,32,["G2532"]],[32,33,["G3756"]],[33,34,["G3756"]]]},{"k":28818,"v":[[0,1,["G1161"]],[1,3,["G2316"]],[3,5,["G4103","(G3754)"]],[5,6,["G2257"]],[6,7,["G3056"]],[7,8,["G4314"]],[8,9,["G5209"]],[9,10,["G1096"]],[10,11,["G3756"]],[11,14,["G3483","G2532","G3756"]]]},{"k":28819,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G5207"]],[3,5,["G2316"]],[5,6,["G2424"]],[6,7,["G5547"]],[7,10,["G2784"]],[10,11,["G1722"]],[11,12,["G5213"]],[12,13,["G1223"]],[13,14,["G2257"]],[14,16,["G1223"]],[16,17,["G1700"]],[17,18,["G2532"]],[18,19,["G4610"]],[19,20,["G2532"]],[20,21,["G5095"]],[21,22,["G1096"]],[22,23,["G3756"]],[23,26,["G3483","G2532","G3756"]],[26,27,["G235"]],[27,28,["G1722"]],[28,29,["G846"]],[29,30,["G1096"]],[30,31,["G3483"]]]},{"k":28820,"v":[[0,1,["G1063"]],[1,2,["G3745"]],[2,4,["G1860"]],[4,6,["G2316"]],[6,7,["G1722"]],[7,8,["G846"]],[8,9,["(G3588)"]],[9,10,["G3483"]],[10,11,["G2532"]],[11,12,["G1722"]],[12,13,["G846","(G3588)"]],[13,14,["G281"]],[14,15,["G4314"]],[15,17,["G1391"]],[17,19,["G2316"]],[19,20,["G1223"]],[20,21,["G2257"]]]},{"k":28821,"v":[[0,1,["G1161"]],[1,4,["G950"]],[4,5,["G2248"]],[5,6,["G4862"]],[6,7,["G5213"]],[7,8,["G1519"]],[8,9,["G5547"]],[9,10,["G2532"]],[10,12,["G5548"]],[12,13,["G2248"]],[13,15,["G2316"]]]},{"k":28822,"v":[[0,4,["G4972","G2532"]],[4,5,["G2248"]],[5,6,["G2532"]],[6,7,["G1325"]],[7,8,["G3588"]],[8,9,["G728"]],[9,11,["G3588"]],[11,12,["G4151"]],[12,13,["G1722"]],[13,14,["G2257"]],[14,15,["G2588"]]]},{"k":28823,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G1941"]],[3,4,["G2316"]],[4,7,["G3144"]],[7,8,["G1909"]],[8,9,["G1699"]],[9,10,["G5590"]],[10,11,["G3754"]],[11,13,["G5339"]],[13,14,["G5216"]],[14,16,["G2064"]],[16,19,["G3765"]],[19,20,["G1519"]],[20,21,["G2882"]]]},{"k":28824,"v":[[0,1,["G3756"]],[1,3,["G3754"]],[3,7,["G2961"]],[7,8,["G5216"]],[8,9,["G4102"]],[9,10,["G235"]],[10,11,["G2070"]],[11,12,["G4904"]],[12,14,["G5216"]],[14,15,["G5479"]],[15,16,["G1063"]],[16,18,["G4102"]],[18,20,["G2476"]]]},{"k":28825,"v":[[0,1,["G1161"]],[1,3,["G2919"]],[3,4,["G5124"]],[4,6,["G1683"]],[6,10,["G3361"]],[10,11,["G2064"]],[11,12,["G3825"]],[12,13,["G4314"]],[13,14,["G5209"]],[14,15,["G1722"]],[15,16,["G3077"]]]},{"k":28826,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G1473"]],[3,6,["G3076","G5209"]],[6,7,["G5101","(G2532)"]],[7,8,["G2076"]],[8,14,["G2165","G3165"]],[14,15,["G1508"]],[15,21,["G3076"]],[21,22,["G1537"]],[22,23,["G1700"]]]},{"k":28827,"v":[[0,1,["G2532"]],[1,3,["G1125"]],[3,4,["G5124"]],[4,5,["G846"]],[5,7,["G5213"]],[7,8,["G3363"]],[8,11,["G2064"]],[11,14,["G2192"]],[14,15,["G3077"]],[15,16,["G575"]],[16,19,["G3739"]],[19,20,["G3165"]],[20,21,["G1163"]],[21,23,["G5463"]],[23,25,["G3982"]],[25,26,["G1909"]],[26,27,["G5209"]],[27,28,["G3956"]],[28,29,["G3754"]],[29,30,["G1699"]],[30,31,["G5479"]],[31,32,["G2076"]],[32,36,["G5216"]],[36,37,["G3956"]]]},{"k":28828,"v":[[0,1,["G1063"]],[1,3,["G1537"]],[3,4,["G4183"]],[4,5,["G2347"]],[5,6,["G2532"]],[6,7,["G4928"]],[7,9,["G2588"]],[9,11,["G1125"]],[11,13,["G5213"]],[13,14,["G1223"]],[14,15,["G4183"]],[15,16,["G1144"]],[16,17,["G3756"]],[17,18,["G2443"]],[18,22,["G3076"]],[22,23,["G235"]],[23,24,["G2443"]],[24,27,["G1097"]],[27,28,["G3588"]],[28,29,["G26"]],[29,30,["G3739"]],[30,32,["G2192"]],[32,34,["G4056"]],[34,35,["G1519"]],[35,36,["G5209"]]]},{"k":28829,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5100"]],[3,6,["G3076"]],[6,9,["G3756"]],[9,10,["G3076"]],[10,11,["G1691"]],[11,12,["G235"]],[12,14,["G575","G3313"]],[14,15,["G2443"]],[15,18,["G3361"]],[18,19,["G1912"]],[19,20,["G5209"]],[20,21,["G3956"]]]},{"k":28830,"v":[[0,1,["G2425"]],[1,5,["G5108"]],[5,7,["G3778"]],[7,8,["G2009"]],[8,9,["G3588"]],[9,12,["G5259"]],[12,13,["G4119"]]]},{"k":28831,"v":[[0,2,["G5620"]],[2,3,["G5121"]],[3,4,["G5209"]],[4,6,["G3123"]],[6,8,["G5483"]],[8,10,["G2532"]],[10,11,["G3870"]],[11,13,["G3381"]],[13,17,["G5108"]],[17,21,["G2666"]],[21,23,["G4055"]],[23,24,["G3077"]]]},{"k":28832,"v":[[0,1,["G1352"]],[1,3,["G3870"]],[3,4,["G5209"]],[4,8,["G2964"]],[8,10,["G26"]],[10,11,["G1519"]],[11,12,["G846"]]]},{"k":28833,"v":[[0,1,["G1063"]],[1,2,["G1519"]],[2,4,["G5124"]],[4,5,["G2532"]],[5,8,["G1125"]],[8,9,["G2443"]],[9,12,["G1097"]],[12,13,["G3588"]],[13,14,["G1382"]],[14,16,["G5216"]],[16,17,["G1487"]],[17,19,["G2075"]],[19,20,["G5255"]],[20,21,["G1519"]],[21,23,["G3956"]]]},{"k":28834,"v":[[0,0,["(G1161)"]],[0,2,["G3739"]],[2,4,["G5483"]],[4,6,["G5100"]],[6,7,["G1473"]],[7,9,["G2532"]],[9,10,["G1063"]],[10,15,["G1536","G1473","G5483","(G2532)"]],[15,17,["G3739"]],[17,19,["G5483"]],[19,23,["G1223","G5209"]],[23,27,["G1722"]],[27,29,["G4383"]],[29,31,["G5547"]]]},{"k":28835,"v":[[0,1,["G3363"]],[1,2,["G4567"]],[2,6,["G4122"]],[6,9,["G1063"]],[9,13,["G50","G3756"]],[13,15,["G846"]],[15,16,["G3540"]]]},{"k":28836,"v":[[0,4,["G2064"]],[4,5,["G1519"]],[5,6,["G5174"]],[6,7,["G1519"]],[7,9,["G5547"]],[9,10,["G2098"]],[10,11,["G2532"]],[11,13,["G2374"]],[13,15,["G455"]],[15,17,["G3427"]],[17,18,["G1722"]],[18,20,["G2962"]]]},{"k":28837,"v":[[0,2,["G2192"]],[2,3,["G3756"]],[3,4,["G425"]],[4,6,["G3450"]],[6,7,["G4151"]],[7,9,["G3165"]],[9,10,["G2147"]],[10,11,["G3361"]],[11,12,["G5103"]],[12,13,["G3450"]],[13,14,["G80"]],[14,15,["G235"]],[15,18,["G657"]],[18,20,["G846"]],[20,24,["G1831"]],[24,25,["G1519"]],[25,26,["G3109"]]]},{"k":28838,"v":[[0,1,["G1161"]],[1,2,["G5485"]],[2,5,["G2316"]],[5,11,["G2358","G3842","G2248"]],[11,12,["G1722"]],[12,13,["G5547"]],[13,14,["G2532"]],[14,16,["G5319"]],[16,17,["G3588"]],[17,18,["G3744"]],[18,20,["G848"]],[20,21,["G1108"]],[21,22,["G1223"]],[22,23,["G2257"]],[23,24,["G1722"]],[24,25,["G3956"]],[25,26,["G5117"]]]},{"k":28839,"v":[[0,1,["G3754"]],[1,3,["G2070"]],[3,5,["G2316"]],[5,8,["G2175"]],[8,10,["G5547"]],[10,11,["G1722"]],[11,15,["G4982"]],[15,16,["G2532"]],[16,17,["G1722"]],[17,20,["G622"]]]},{"k":28840,"v":[[0,3,["G3739","G3303"]],[3,7,["G3744"]],[7,9,["G2288"]],[9,10,["G1519"]],[10,11,["G2288"]],[11,12,["G1161"]],[12,15,["G3739"]],[15,17,["G3744"]],[17,19,["G2222"]],[19,20,["G1519"]],[20,21,["G2222"]],[21,22,["G2532"]],[22,23,["G5101"]],[23,25,["G2425"]],[25,26,["G4314"]],[26,28,["G5023"]]]},{"k":28841,"v":[[0,1,["G1063"]],[1,3,["G2070"]],[3,4,["G3756"]],[4,5,["G5613"]],[5,6,["G4183"]],[6,8,["G2585"]],[8,9,["G3588"]],[9,10,["G3056"]],[10,12,["G2316"]],[12,13,["G235"]],[13,14,["G5613"]],[14,15,["G1537"]],[15,16,["G1505"]],[16,17,["G235"]],[17,18,["G5613"]],[18,19,["G1537"]],[19,20,["G2316"]],[20,23,["G2714"]],[23,25,["G2316"]],[25,26,["G2980"]],[26,28,["G1722"]],[28,29,["G5547"]]]},{"k":28842,"v":[[0,3,["G756"]],[3,4,["G3825"]],[4,6,["G4921"]],[6,7,["G1438"]],[7,8,["G1508"]],[8,9,["G5535"]],[9,11,["G5613"]],[11,12,["G5100"]],[12,14,["G1992"]],[14,16,["G4956"]],[16,17,["G4314"]],[17,18,["G5209"]],[18,19,["G2228"]],[19,22,["G4956"]],[22,23,["G1537"]],[23,24,["G5216"]]]},{"k":28843,"v":[[0,1,["G5210"]],[1,2,["G2075"]],[2,3,["G2257"]],[3,4,["G1992"]],[4,5,["G1449"]],[5,6,["G1722"]],[6,7,["G2257"]],[7,8,["G2588"]],[8,9,["G1097"]],[9,10,["G2532"]],[10,11,["G314"]],[11,12,["G5259"]],[12,13,["G3956"]],[13,14,["G444"]]]},{"k":28844,"v":[[0,6,["G5319"]],[6,7,["(G3754)"]],[7,8,["G2075"]],[8,10,["G1992"]],[10,12,["G5547"]],[12,13,["G1247"]],[13,14,["G5259"]],[14,15,["G2257"]],[15,16,["G1449"]],[16,17,["G3756"]],[17,19,["G3188"]],[19,20,["G235"]],[20,23,["G4151"]],[23,26,["G2198"]],[26,27,["G2316"]],[27,28,["G3756"]],[28,29,["G1722"]],[29,30,["G4109"]],[30,32,["G3035"]],[32,33,["G235"]],[33,34,["G1722"]],[34,35,["G4560"]],[35,36,["G4109"]],[36,39,["G2588"]]]},{"k":28845,"v":[[0,1,["G1161"]],[1,2,["G5108"]],[2,3,["G4006"]],[3,4,["G2192"]],[4,6,["G1223"]],[6,7,["G5547"]],[7,8,["G4314"]],[8,9,["G2316"]]]},{"k":28846,"v":[[0,1,["G3756"]],[1,2,["G3754"]],[2,4,["G2070"]],[4,5,["G2425"]],[5,6,["G575"]],[6,7,["G1438"]],[7,9,["G3049"]],[9,11,["G5100"]],[11,12,["G5613"]],[12,13,["G1537"]],[13,14,["G1438"]],[14,15,["G235"]],[15,16,["G2257"]],[16,17,["G2426"]],[17,19,["G1537"]],[19,20,["G2316"]]]},{"k":28847,"v":[[0,1,["G3739"]],[1,2,["G2532"]],[2,6,["G2427","G2248"]],[6,7,["G1249"]],[7,10,["G2537"]],[10,11,["G1242"]],[11,12,["G3756"]],[12,15,["G1121"]],[15,16,["G235"]],[16,19,["G4151"]],[19,20,["G1063"]],[20,21,["G3588"]],[21,22,["G1121"]],[22,23,["G615"]],[23,24,["G1161"]],[24,25,["G3588"]],[25,26,["G4151"]],[26,28,["G2227"]]]},{"k":28848,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G1248"]],[4,6,["G2288"]],[6,7,["G1722","G1121"]],[7,9,["G1795"]],[9,10,["G1722"]],[10,11,["G3037"]],[11,12,["G1096"]],[12,13,["G1722","G1391"]],[13,15,["G5620"]],[15,16,["G3588"]],[16,17,["G5207"]],[17,19,["G2474"]],[19,20,["G1410"]],[20,21,["G3361"]],[21,22,["G816"]],[22,23,["(G1519)"]],[23,24,["G3588"]],[24,25,["G4383"]],[25,27,["G3475"]],[27,28,["G1223"]],[28,29,["G3588"]],[29,30,["G1391"]],[30,32,["G846"]],[32,33,["G4383"]],[33,40,["G2673"]]]},{"k":28849,"v":[[0,1,["G4459"]],[1,3,["G3780"]],[3,4,["G3588"]],[4,5,["G1248"]],[5,7,["G3588"]],[7,8,["G4151"]],[8,9,["G2071"]],[9,10,["G3123"]],[10,11,["G1722","G1391"]]]},{"k":28850,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G1248"]],[4,6,["G2633"]],[6,8,["G1391"]],[8,9,["G4183"]],[9,10,["G3123"]],[10,12,["G3588"]],[12,13,["G1248"]],[13,15,["G1343"]],[15,16,["G4052"]],[16,17,["G1722"]],[17,18,["G1391"]]]},{"k":28851,"v":[[0,1,["G1063"]],[1,2,["G2532"]],[2,7,["G1392"]],[7,10,["G1392","G3761"]],[10,11,["G1722"]],[11,12,["G5129"]],[12,13,["G3313"]],[13,16,["G1752"]],[16,17,["G3588"]],[17,18,["G1391"]],[18,20,["G5235"]]]},{"k":28852,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,7,["G2673"]],[7,9,["G1223","G1391"]],[9,10,["G4183"]],[10,11,["G3123"]],[11,14,["G3306"]],[14,16,["G1722","G1391"]]]},{"k":28853,"v":[[0,2,["G3767"]],[2,5,["G2192"]],[5,6,["G5108"]],[6,7,["G1680"]],[7,9,["G5530"]],[9,10,["G4183"]],[10,13,["G3954"]]]},{"k":28854,"v":[[0,1,["G2532"]],[1,2,["G3756"]],[2,3,["G2509"]],[3,4,["G3475"]],[4,6,["G5087"]],[6,8,["G2571"]],[8,9,["G1909"]],[9,10,["G1438"]],[10,11,["G4383"]],[11,13,["G3588"]],[13,14,["G5207"]],[14,16,["G2474"]],[16,18,["G3361"]],[18,20,["G816"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G5056"]],[23,28,["G2673"]]]},{"k":28855,"v":[[0,1,["G235"]],[1,2,["G846"]],[2,3,["G3540"]],[3,5,["G4456"]],[5,6,["G1063"]],[6,7,["G891"]],[7,9,["G4594"]],[9,10,["G3306"]],[10,11,["G3588"]],[11,12,["G846"]],[12,13,["G2571"]],[13,15,["G343","G3361"]],[15,16,["G1909"]],[16,17,["G3588"]],[17,18,["G320"]],[18,20,["G3588"]],[20,21,["G3820"]],[21,22,["G1242"]],[22,23,["G3748"]],[23,27,["G2673"]],[27,28,["G1722"]],[28,29,["G5547"]]]},{"k":28856,"v":[[0,1,["G235"]],[1,3,["G2193"]],[3,5,["G4594"]],[5,6,["G2259"]],[6,7,["G3475"]],[7,9,["G314"]],[9,11,["G2571"]],[11,12,["G2749"]],[12,13,["G1909"]],[13,14,["G846"]],[14,15,["G2588"]]]},{"k":28857,"v":[[0,1,["G1161"]],[1,2,["G2259","G302"]],[2,5,["G1994"]],[5,6,["G4314"]],[6,8,["G2962"]],[8,9,["G3588"]],[9,10,["G2571"]],[10,14,["G4014"]]]},{"k":28858,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2076"]],[4,6,["G4151"]],[6,7,["G1161"]],[7,8,["G3757"]],[8,9,["G3588"]],[9,10,["G4151"]],[10,13,["G2962"]],[13,15,["G1563"]],[15,17,["G1657"]]]},{"k":28859,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,3,["G3956"]],[3,5,["G343"]],[5,6,["G4383"]],[6,11,["G2734"]],[11,12,["G3588"]],[12,13,["G1391"]],[13,16,["G2962"]],[16,18,["G3339"]],[18,20,["G3588"]],[20,21,["G846"]],[21,22,["G1504"]],[22,23,["G575"]],[23,24,["G1391"]],[24,25,["G1519"]],[25,26,["G1391"]],[26,28,["G2509"]],[28,29,["G575"]],[29,31,["G4151"]],[31,34,["G2962"]]]},{"k":28860,"v":[[0,1,["G1223","G5124"]],[1,4,["G2192"]],[4,5,["G5026"]],[5,6,["G1248"]],[6,7,["G2531"]],[7,11,["G1653"]],[11,13,["G1573"]],[13,14,["G3756"]]]},{"k":28861,"v":[[0,1,["G235"]],[1,3,["G550"]],[3,4,["G3588"]],[4,6,["G2927"]],[6,8,["G152"]],[8,9,["G3361"]],[9,10,["G4043"]],[10,11,["G1722"]],[11,12,["G3834"]],[12,13,["G3366"]],[13,19,["G1389","G3588","G3056","G2316"]],[19,20,["G235"]],[20,22,["G5321"]],[22,24,["G3588"]],[24,25,["G225"]],[25,26,["G4921"]],[26,27,["G1438"]],[27,28,["G4314"]],[28,29,["G3956"]],[29,30,["G444"]],[30,31,["G4893"]],[31,34,["G1799"]],[34,36,["G2316"]]]},{"k":28862,"v":[[0,1,["G1161"]],[1,2,["G1487","(G2532)"]],[2,3,["G2257"]],[3,4,["G2098"]],[4,5,["G2076"]],[5,6,["G2572"]],[6,8,["G2076"]],[8,9,["G2572"]],[9,10,["G1722"]],[10,14,["G622"]]]},{"k":28863,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G3588"]],[3,4,["G2316"]],[4,6,["G5127"]],[6,7,["G165"]],[7,9,["G5186"]],[9,10,["G3588"]],[10,11,["G3540"]],[11,16,["G571"]],[16,17,["G3361"]],[17,18,["G3588"]],[18,19,["G5462"]],[19,21,["G3588"]],[21,22,["G1391"]],[22,23,["G2098"]],[23,25,["G5547"]],[25,26,["G3739"]],[26,27,["G2076"]],[27,29,["G1504"]],[29,31,["G2316"]],[31,33,["G826"]],[33,35,["G846"]]]},{"k":28864,"v":[[0,1,["G1063"]],[1,3,["G2784"]],[3,4,["G3756"]],[4,5,["G1438"]],[5,6,["G235"]],[6,7,["G5547"]],[7,8,["G2424"]],[8,10,["G2962"]],[10,11,["G1161"]],[11,12,["G1438"]],[12,13,["G5216"]],[13,14,["G1401"]],[14,17,["G1223","G2424"]]]},{"k":28865,"v":[[0,1,["G3754"]],[1,2,["G2316"]],[2,4,["G2036"]],[4,6,["G5457"]],[6,8,["G2989"]],[8,10,["G1537"]],[10,11,["G4655"]],[11,12,["(G3739)"]],[12,13,["G2989"]],[13,14,["G1722"]],[14,15,["G2257"]],[15,16,["G2588"]],[16,17,["G4314"]],[17,20,["G5462"]],[20,22,["G3588"]],[22,23,["G1108"]],[23,25,["G3588"]],[25,26,["G1391"]],[26,28,["G2316"]],[28,29,["G1722"]],[29,31,["G4383"]],[31,33,["G2424"]],[33,34,["G5547"]]]},{"k":28866,"v":[[0,1,["G1161"]],[1,3,["G2192"]],[3,4,["G5126"]],[4,5,["G2344"]],[5,6,["G1722"]],[6,7,["G3749"]],[7,8,["G4632"]],[8,9,["G2443"]],[9,10,["G3588"]],[10,11,["G5236"]],[11,13,["G3588"]],[13,14,["G1411"]],[14,16,["G5600"]],[16,18,["G2316"]],[18,19,["G2532"]],[19,20,["G3361"]],[20,21,["G1537"]],[21,22,["G2257"]]]},{"k":28867,"v":[[0,3,["G2346"]],[3,4,["G1722"]],[4,6,["G3956"]],[6,7,["G235"]],[7,8,["G3756"]],[8,9,["G4729"]],[9,12,["G639"]],[12,13,["G235"]],[13,14,["G3756"]],[14,16,["G1820"]]]},{"k":28868,"v":[[0,1,["G1377"]],[1,2,["G235"]],[2,3,["G3756"]],[3,4,["G1459"]],[4,6,["G2598"]],[6,7,["G235"]],[7,8,["G3756"]],[8,9,["G622"]]]},{"k":28869,"v":[[0,1,["G3842"]],[1,3,["G4064"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G4983"]],[6,7,["G3588"]],[7,8,["G3500"]],[8,10,["G3588"]],[10,11,["G2962"]],[11,12,["G2424"]],[12,13,["G2443"]],[13,14,["G3588"]],[14,15,["G2222"]],[15,16,["G2532"]],[16,18,["G2424"]],[18,22,["G5319"]],[22,23,["G1722"]],[23,24,["G2257"]],[24,25,["G4983"]]]},{"k":28870,"v":[[0,1,["G1063"]],[1,2,["G2249"]],[2,4,["G2198"]],[4,6,["G104"]],[6,7,["G3860"]],[7,8,["G1519"]],[8,9,["G2288"]],[9,12,["G1223","G2424"]],[12,13,["G2443"]],[13,14,["G3588"]],[14,15,["G2222"]],[15,16,["G2532"]],[16,18,["G2424"]],[18,22,["G5319"]],[22,23,["G1722"]],[23,24,["G2257"]],[24,25,["G2349"]],[25,26,["G4561"]]]},{"k":28871,"v":[[0,2,["G5620","(G3303)"]],[2,3,["G2288"]],[3,4,["G1754"]],[4,5,["G1722"]],[5,6,["G2254"]],[6,7,["G1161"]],[7,8,["G2222"]],[8,9,["G1722"]],[9,10,["G5213"]]]},{"k":28872,"v":[[0,0,["(G1161)"]],[0,2,["G2192"]],[2,3,["G3588"]],[3,4,["G846"]],[4,5,["G4151"]],[5,7,["G4102"]],[7,9,["G2596"]],[9,12,["G1125"]],[12,14,["G4100"]],[14,15,["G2532"]],[15,16,["G1352"]],[16,19,["G2980"]],[19,20,["G2249"]],[20,21,["G2532"]],[21,22,["G4100"]],[22,23,["G2532"]],[23,24,["G1352"]],[24,25,["G2980"]]]},{"k":28873,"v":[[0,1,["G1492"]],[1,2,["G3754"]],[2,6,["G1453"]],[6,7,["G3588"]],[7,8,["G2962"]],[8,9,["G2424"]],[9,12,["G1453"]],[12,13,["G2248"]],[13,14,["G2532"]],[14,15,["G1223"]],[15,16,["G2424"]],[16,17,["G2532"]],[17,19,["G3936"]],[19,21,["G4862"]],[21,22,["G5213"]]]},{"k":28874,"v":[[0,1,["G1063"]],[1,3,["G3956"]],[3,7,["G1223","G5209"]],[7,8,["G2443"]],[8,9,["G3588"]],[9,10,["G4121"]],[10,11,["G5485"]],[11,13,["G1223"]],[13,14,["G3588"]],[14,15,["G2169"]],[15,17,["G4119"]],[17,18,["G4052"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G1391"]],[21,23,["G2316"]]]},{"k":28875,"v":[[0,3,["G1352"]],[3,5,["G1573"]],[5,6,["G3756"]],[6,7,["G235"]],[7,8,["G1499"]],[8,9,["G2257"]],[9,10,["G1854"]],[10,11,["G444"]],[11,12,["G1311"]],[12,13,["G235"]],[13,14,["G3588"]],[14,15,["G2081"]],[15,18,["G341"]],[18,21,["G2250","G2532","G2250"]]]},{"k":28876,"v":[[0,1,["G1063"]],[1,2,["G2257"]],[2,3,["G1645"]],[3,4,["G2347"]],[4,10,["G3910"]],[10,11,["G2716"]],[11,13,["G2254"]],[13,17,["G2596","G5236","G1519","G5236"]],[17,19,["G166"]],[19,20,["G922"]],[20,22,["G1391"]]]},{"k":28877,"v":[[0,2,["G2257"]],[2,5,["G4648","G3361"]],[5,10,["G991"]],[10,11,["G235"]],[11,18,["G991","G3361"]],[18,19,["G1063"]],[19,24,["G991"]],[24,26,["G4340"]],[26,27,["G1161"]],[27,33,["G991","G3361"]],[33,35,["G166"]]]},{"k":28878,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G1437"]],[5,6,["G2257"]],[6,7,["G1919"]],[7,8,["G3614"]],[8,11,["G4636"]],[11,13,["G2647"]],[13,15,["G2192"]],[15,17,["G3619"]],[17,18,["G1537"]],[18,19,["G2316"]],[19,21,["G3614"]],[21,25,["G886"]],[25,26,["G166"]],[26,27,["G1722"]],[27,28,["G3588"]],[28,29,["G3772"]]]},{"k":28879,"v":[[0,1,["G1063"]],[1,2,["G1722"]],[2,3,["G5129"]],[3,4,["(G2532)"]],[4,5,["G4727"]],[5,7,["G1971"]],[7,11,["G1902"]],[11,13,["G2257"]],[13,14,["G3613"]],[14,15,["G3588"]],[15,17,["G1537"]],[17,18,["G3772"]]]},{"k":28880,"v":[[0,3,["G1489"]],[3,4,["(G2532)"]],[4,6,["G1746"]],[6,9,["G3756"]],[9,11,["G2147"]],[11,12,["G1131"]]]},{"k":28881,"v":[[0,1,["G1063","(G2532)"]],[1,4,["G5607"]],[4,5,["G1722"]],[5,7,["G4636"]],[7,9,["G4727"]],[9,11,["G916"]],[11,12,["G3756"]],[12,14,["G1909","G3739"]],[14,16,["G2309"]],[16,18,["G1562"]],[18,19,["G235"]],[19,21,["G1902"]],[21,22,["G2443"]],[22,23,["G2349"]],[23,27,["G2666"]],[27,28,["G5259"]],[28,29,["G2222"]]]},{"k":28882,"v":[[0,1,["G1161"]],[1,5,["G2716"]],[5,6,["G2248"]],[6,7,["G1519"]],[7,10,["G846","G5124"]],[10,12,["G2316"]],[12,16,["G1325","G2532"]],[16,18,["G2254"]],[18,19,["G3588"]],[19,20,["G728"]],[20,22,["G3588"]],[22,23,["G4151"]]]},{"k":28883,"v":[[0,1,["G3767"]],[1,4,["G3842"]],[4,5,["G2292"]],[5,6,["(G1492)"]],[6,7,["G3754"]],[7,12,["G1736"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G4983"]],[15,18,["G1553"]],[18,19,["G575"]],[19,20,["G3588"]],[20,21,["G2962"]]]},{"k":28884,"v":[[0,1,["G1063"]],[1,3,["G4043"]],[3,4,["G1223"]],[4,5,["G4102"]],[5,6,["G3756"]],[6,7,["G1223"]],[7,8,["G1491"]]]},{"k":28885,"v":[[0,0,["(G1161)"]],[0,3,["G2292"]],[3,6,["G2532"]],[6,7,["G2106"]],[7,8,["G3123"]],[8,11,["G1553"]],[11,12,["G1537"]],[12,13,["G3588"]],[13,14,["G4983"]],[14,15,["G2532"]],[15,18,["G1736"]],[18,19,["G4314"]],[19,20,["G3588"]],[20,21,["G2962"]]]},{"k":28886,"v":[[0,1,["G1352"]],[1,2,["(G2532)"]],[2,3,["G5389"]],[3,5,["G1535"]],[5,6,["G1736"]],[6,7,["G1535"]],[7,8,["G1553"]],[8,11,["G1511"]],[11,12,["G2101"]],[12,14,["G846"]]]},{"k":28887,"v":[[0,1,["G1063"]],[1,2,["G2248"]],[2,3,["G1163"]],[3,4,["G3956"]],[4,5,["G5319"]],[5,6,["G1715"]],[6,7,["G3588"]],[7,9,["G968"]],[9,11,["G5547"]],[11,12,["G2443"]],[12,14,["G1538"]],[14,16,["G2865"]],[16,18,["G3588"]],[18,20,["G1223"]],[20,22,["G4983"]],[22,23,["G4314"]],[23,25,["G3739"]],[25,28,["G4238"]],[28,29,["G1535"]],[29,32,["G18"]],[32,33,["G1535"]],[33,34,["G2556"]]]},{"k":28888,"v":[[0,1,["G1492"]],[1,2,["G3767"]],[2,3,["G3588"]],[3,4,["G5401"]],[4,6,["G3588"]],[6,7,["G2962"]],[7,9,["G3982"]],[9,10,["G444"]],[10,11,["G1161"]],[11,15,["G5319"]],[15,17,["G2316"]],[17,18,["G1161"]],[18,20,["G1679"]],[20,21,["G2532"]],[21,24,["G5319"]],[24,25,["G1722"]],[25,26,["G5216"]],[26,27,["G4893"]]]},{"k":28889,"v":[[0,1,["G1063"]],[1,3,["G4921"]],[3,4,["G3756"]],[4,5,["G1438"]],[5,6,["G3825"]],[6,8,["G5213"]],[8,9,["G235"]],[9,10,["G1325"]],[10,11,["G5213"]],[11,12,["G874"]],[12,14,["G2745"]],[14,17,["G5228","G2257"]],[17,18,["G2443"]],[18,21,["G2192"]],[21,23,["G4314"]],[23,27,["G2744"]],[27,28,["G1722"]],[28,29,["G4383"]],[29,30,["G2532"]],[30,31,["G3756"]],[31,33,["G2588"]]]},{"k":28890,"v":[[0,1,["G1063"]],[1,2,["G1535"]],[2,6,["G1839"]],[6,10,["G2316"]],[10,12,["G1535"]],[12,15,["G4993"]],[15,20,["G5213"]]]},{"k":28891,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G26"]],[3,5,["G5547"]],[5,6,["G4912"]],[6,7,["G2248"]],[7,10,["G5124"]],[10,11,["G2919"]],[11,12,["G3754"]],[12,13,["G1487"]],[13,14,["G1520"]],[14,15,["G599"]],[15,16,["G5228"]],[16,17,["G3956"]],[17,18,["G686"]],[18,21,["G599","G3956"]]]},{"k":28892,"v":[[0,1,["G2532"]],[1,4,["G599"]],[4,5,["G5228"]],[5,6,["G3956"]],[6,7,["G2443"]],[7,10,["G2198"]],[10,13,["G3371"]],[13,14,["G2198"]],[14,16,["G1438"]],[16,17,["G235"]],[17,21,["G599"]],[21,22,["G5228"]],[22,23,["G846"]],[23,24,["G2532"]],[24,26,["G1453"]]]},{"k":28893,"v":[[0,1,["G5620"]],[1,2,["G575","G3568"]],[2,3,["G1492"]],[3,4,["G2249"]],[4,6,["G3762"]],[6,7,["G2596"]],[7,9,["G4561"]],[9,10,["G1161"]],[10,11,["G1499"]],[11,14,["G1097"]],[14,15,["G5547"]],[15,16,["G2596"]],[16,18,["G4561"]],[18,19,["G235"]],[19,20,["G3568"]],[20,22,["G1097"]],[22,26,["G3765"]]]},{"k":28894,"v":[[0,1,["G5620"]],[1,4,["G1536"]],[4,6,["G1722"]],[6,7,["G5547"]],[7,11,["G2537"]],[11,12,["G2937"]],[12,14,["G744"]],[14,17,["G3928"]],[17,18,["G2400"]],[18,20,["G3956"]],[20,22,["G1096"]],[22,23,["G2537"]]]},{"k":28895,"v":[[0,1,["G1161"]],[1,3,["G3956"]],[3,5,["G1537"]],[5,6,["G2316"]],[6,9,["G2644"]],[9,10,["G2248"]],[10,12,["G1438"]],[12,13,["G1223"]],[13,14,["G2424"]],[14,15,["G5547"]],[15,16,["G2532"]],[16,18,["G1325"]],[18,20,["G2254"]],[20,21,["G3588"]],[21,22,["G1248"]],[22,24,["G2643"]]]},{"k":28896,"v":[[0,2,["G5613"]],[2,3,["G3754"]],[3,4,["G2316"]],[4,5,["G2258"]],[5,6,["G1722"]],[6,7,["G5547"]],[7,8,["G2644"]],[8,10,["G2889"]],[10,12,["G1438"]],[12,13,["G3361"]],[13,14,["G3049"]],[14,15,["G846"]],[15,16,["G3900"]],[16,18,["G846"]],[18,19,["G2532"]],[19,21,["G5087"]],[21,22,["G1722"]],[22,23,["G2254"]],[23,24,["G3588"]],[24,25,["G3056"]],[25,27,["G2643"]]]},{"k":28897,"v":[[0,2,["G3767"]],[2,5,["G4243"]],[5,6,["G5228"]],[6,7,["G5547"]],[7,9,["G5613"]],[9,10,["G2316"]],[10,12,["G3870"]],[12,14,["G1223"]],[14,15,["G2257"]],[15,17,["G1189"]],[17,21,["G5228","G5547"]],[21,24,["G2644"]],[24,26,["G2316"]]]},{"k":28898,"v":[[0,1,["G1063"]],[1,4,["G4160"]],[4,8,["G266"]],[8,9,["G5228"]],[9,10,["G2257"]],[10,12,["G1097"]],[12,13,["G3361"]],[13,14,["G266"]],[14,15,["G2443"]],[15,16,["G2249"]],[16,19,["G1096"]],[19,21,["G1343"]],[21,23,["G2316"]],[23,24,["G1722"]],[24,25,["G846"]]]},{"k":28899,"v":[[0,2,["G1161"]],[2,5,["G4903"]],[5,8,["G3870"]],[8,10,["G2532"]],[10,12,["G5209"]],[12,13,["G1209"]],[13,14,["G3361"]],[14,15,["G3588"]],[15,16,["G5485"]],[16,18,["G2316"]],[18,19,["G1519"]],[19,20,["G2756"]]]},{"k":28900,"v":[[0,1,["G1063"]],[1,3,["G3004"]],[3,6,["G1873"]],[6,7,["G4675"]],[7,10,["G2540"]],[10,11,["G1184"]],[11,12,["G2532"]],[12,13,["G1722"]],[13,15,["G2250"]],[15,17,["G4991"]],[17,20,["G997"]],[20,21,["G4671"]],[21,22,["G2400"]],[22,23,["G3568"]],[23,26,["G2144"]],[26,27,["G2540"]],[27,28,["G2400"]],[28,29,["G3568"]],[29,32,["G2250"]],[32,34,["G4991"]]]},{"k":28901,"v":[[0,1,["G1325"]],[1,2,["G3367"]],[2,3,["G4349"]],[3,4,["G1722"]],[4,6,["G3367"]],[6,7,["G2443"]],[7,8,["G3588"]],[8,9,["G1248"]],[9,11,["G3361"]],[11,12,["G3469"]]]},{"k":28902,"v":[[0,1,["G235"]],[1,2,["G1722"]],[2,3,["G3956"]],[3,5,["G4921"]],[5,6,["G1438"]],[6,7,["G5613"]],[7,9,["G1249"]],[9,11,["G2316"]],[11,12,["G1722"]],[12,13,["G4183"]],[13,14,["G5281"]],[14,15,["G1722"]],[15,16,["G2347"]],[16,17,["G1722"]],[17,18,["G318"]],[18,19,["G1722"]],[19,20,["G4730"]]]},{"k":28903,"v":[[0,1,["G1722"]],[1,2,["G4127"]],[2,3,["G1722"]],[3,4,["G5438"]],[4,5,["G1722"]],[5,6,["G181"]],[6,7,["G1722"]],[7,8,["G2873"]],[8,9,["G1722"]],[9,10,["G70"]],[10,11,["G1722"]],[11,12,["G3521"]]]},{"k":28904,"v":[[0,1,["G1722"]],[1,2,["G54"]],[2,3,["G1722"]],[3,4,["G1108"]],[4,5,["G1722"]],[5,6,["G3115"]],[6,7,["G1722"]],[7,8,["G5544"]],[8,9,["G1722"]],[9,11,["G40"]],[11,12,["G4151"]],[12,13,["G1722"]],[13,14,["G26"]],[14,15,["G505"]]]},{"k":28905,"v":[[0,1,["G1722"]],[1,3,["G3056"]],[3,5,["G225"]],[5,6,["G1722"]],[6,8,["G1411"]],[8,10,["G2316"]],[10,11,["G1223"]],[11,12,["G3588"]],[12,13,["G3696"]],[13,15,["G1343"]],[15,17,["G3588"]],[17,19,["G1188"]],[19,20,["G2532"]],[20,23,["G710"]]]},{"k":28906,"v":[[0,1,["G1223"]],[1,2,["G1391"]],[2,3,["G2532"]],[3,4,["G819"]],[4,5,["G1223"]],[5,7,["G1426"]],[7,8,["G2532"]],[8,10,["G2162"]],[10,11,["G5613"]],[11,12,["G4108"]],[12,13,["G2532"]],[13,15,["G227"]]]},{"k":28907,"v":[[0,1,["G5613"]],[1,2,["G50"]],[2,3,["G2532"]],[3,6,["G1921"]],[6,7,["G5613"]],[7,8,["G599"]],[8,9,["G2532"]],[9,10,["G2400"]],[10,12,["G2198"]],[12,13,["G5613"]],[13,14,["G3811"]],[14,15,["G2532"]],[15,16,["G3361"]],[16,17,["G2289"]]]},{"k":28908,"v":[[0,1,["G5613"]],[1,2,["G3076"]],[2,3,["G1161"]],[3,4,["G104"]],[4,5,["G5463"]],[5,6,["G5613"]],[6,7,["G4434"]],[7,8,["G1161"]],[8,11,["G4148","G4183"]],[11,12,["G5613"]],[12,13,["G2192"]],[13,14,["G3367"]],[14,15,["G2532"]],[15,17,["G2722"]],[17,19,["G3956"]]]},{"k":28909,"v":[[0,3,["G2881"]],[3,4,["G2257"]],[4,5,["G4750"]],[5,7,["G455"]],[7,8,["G4314"]],[8,9,["G5209"]],[9,10,["G2257"]],[10,11,["G2588"]],[11,13,["G4115"]]]},{"k":28910,"v":[[0,3,["G3756"]],[3,4,["G4729"]],[4,5,["G1722"]],[5,6,["G2254"]],[6,7,["G1161"]],[7,10,["G4729"]],[10,11,["G1722"]],[11,13,["G5216"]],[13,14,["G4698"]]]},{"k":28911,"v":[[0,1,["G1161"]],[1,4,["G489"]],[4,6,["G3588"]],[6,8,["G846"]],[8,9,["G3004"]],[9,10,["G5613"]],[10,13,["G5043"]],[13,15,["G5210"]],[15,16,["G2532"]],[16,17,["G4115"]]]},{"k":28912,"v":[[0,1,["G1096"]],[1,3,["G3361"]],[3,6,["G2086"]],[6,8,["G571"]],[8,9,["G1063"]],[9,10,["G5101"]],[10,11,["G3352"]],[11,13,["G1343"]],[13,14,["G2532"]],[14,15,["G458"]],[15,16,["G1161"]],[16,17,["G5101"]],[17,18,["G2842"]],[18,20,["G5457"]],[20,21,["G4314"]],[21,22,["G4655"]]]},{"k":28913,"v":[[0,1,["G1161"]],[1,2,["G5101"]],[2,3,["G4857"]],[3,5,["G5547"]],[5,6,["G4314"]],[6,7,["G955"]],[7,8,["G2228"]],[8,10,["G3310"]],[10,14,["G4103"]],[14,15,["G3326"]],[15,17,["G571"]]]},{"k":28914,"v":[[0,1,["G1161"]],[1,2,["G5101"]],[2,3,["G4783"]],[3,6,["G3485"]],[6,8,["G2316"]],[8,9,["G3326"]],[9,10,["G1497"]],[10,11,["G1063"]],[11,12,["G5210"]],[12,13,["G2075"]],[13,15,["G3485"]],[15,18,["G2198"]],[18,19,["G2316"]],[19,20,["G2531"]],[20,21,["G2316"]],[21,23,["G2036"]],[23,26,["G1774"]],[26,27,["G1722"]],[27,28,["G846"]],[28,29,["G2532"]],[29,31,["G1704"]],[31,33,["G2532"]],[33,36,["G2071"]],[36,37,["G846"]],[37,38,["G2316"]],[38,39,["G2532"]],[39,40,["G846"]],[40,42,["G2071"]],[42,43,["G3427"]],[43,44,["G2992"]]]},{"k":28915,"v":[[0,1,["G1352"]],[1,3,["G1831"]],[3,4,["G1537"]],[4,5,["G3319"]],[5,6,["G846"]],[6,7,["G2532"]],[7,10,["G873"]],[10,11,["G3004"]],[11,13,["G2962"]],[13,14,["G2532"]],[14,15,["G680"]],[15,16,["G3361"]],[16,18,["G169"]],[18,21,["G2504"]],[21,23,["G1523"]],[23,24,["G5209"]]]},{"k":28916,"v":[[0,1,["G2532"]],[1,3,["G2071"]],[3,4,["(G1519)"]],[4,5,["G3962"]],[5,7,["G5213"]],[7,8,["G2532"]],[8,9,["G5210"]],[9,11,["G2071","(G1519)"]],[11,12,["G3427"]],[12,13,["G5207"]],[13,14,["G2532"]],[14,15,["G2364"]],[15,16,["G3004"]],[16,18,["G2962"]],[18,19,["G3841"]]]},{"k":28917,"v":[[0,1,["G2192"]],[1,2,["G3767"]],[2,3,["G5025"]],[3,4,["G1860"]],[4,6,["G27"]],[6,9,["G2511"]],[9,10,["G1438"]],[10,11,["G575"]],[11,12,["G3956"]],[12,13,["G3436"]],[13,16,["G4561"]],[16,17,["G2532"]],[17,18,["G4151"]],[18,19,["G2005"]],[19,20,["G42"]],[20,21,["G1722"]],[21,23,["G5401"]],[23,25,["G2316"]]]},{"k":28918,"v":[[0,1,["G5562"]],[1,2,["G2248"]],[2,5,["G91"]],[5,7,["G3762"]],[7,10,["G5351"]],[10,12,["G3762"]],[12,15,["G4122"]],[15,17,["G3762"]]]},{"k":28919,"v":[[0,2,["G3004"]],[2,3,["G3756"]],[3,5,["G4314"]],[5,6,["G2633"]],[6,8,["G1063"]],[8,12,["G4280"]],[12,13,["G3754"]],[13,15,["G2075"]],[15,16,["G1722"]],[16,17,["G2257"]],[17,18,["G2588"]],[18,20,["G4880"]],[20,21,["G2532"]],[21,23,["G4800"]],[23,24,[]]]},{"k":28920,"v":[[0,1,["G4183"]],[1,3,["G3427"]],[3,6,["G3954"]],[6,7,["G4314"]],[7,8,["G5209"]],[8,9,["G4183"]],[9,11,["G3427"]],[11,12,["G2746"]],[12,13,["G5228"]],[13,14,["G5216"]],[14,17,["G4137"]],[17,19,["G3874"]],[19,22,["G5248"]],[22,23,["G5479"]],[23,24,["G1909"]],[24,25,["G3956"]],[25,26,["G2257"]],[26,27,["G2347"]]]},{"k":28921,"v":[[0,1,["G1063"]],[1,2,["G2532"]],[2,3,["G2257"]],[3,5,["G2064"]],[5,6,["G1519"]],[6,7,["G3109"]],[7,8,["G2257"]],[8,9,["G4561"]],[9,10,["G2192"]],[10,11,["G3762"]],[11,12,["G425"]],[12,13,["G235"]],[13,16,["G2346"]],[16,17,["G1722"]],[17,19,["G3956"]],[19,20,["G1855"]],[20,22,["G3163"]],[22,23,["G2081"]],[23,25,["G5401"]]]},{"k":28922,"v":[[0,1,["G235"]],[1,2,["G2316"]],[2,4,["G3870"]],[4,9,["G5011"]],[9,10,["G3870"]],[10,11,["G2248"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G3952"]],[14,16,["G5103"]]]},{"k":28923,"v":[[0,1,["G1161"]],[1,2,["G3756"]],[2,3,["G1722"]],[3,4,["G846"]],[4,5,["G3952"]],[5,6,["G3440"]],[6,7,["G235","(G2532)"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G3874"]],[10,11,["G3739"]],[11,14,["G3870"]],[14,15,["G1909"]],[15,16,["G5213"]],[16,19,["G312"]],[19,20,["G2254"]],[20,21,["G5216"]],[21,23,["G1972"]],[23,24,["G5216"]],[24,25,["G3602"]],[25,26,["G5216"]],[26,28,["G2205"]],[28,29,["G5228"]],[29,30,["G1700"]],[30,32,["G5620"]],[32,33,["G3165"]],[33,34,["G5463"]],[34,36,["G3123"]]]},{"k":28924,"v":[[0,1,["G3754"]],[1,2,["G1499"]],[2,6,["G3076","G5209"]],[6,7,["G1722"]],[7,9,["G1992"]],[9,12,["G3756"]],[12,13,["G3338"]],[13,14,["G1499"]],[14,17,["G3338"]],[17,18,["G1063"]],[18,20,["G991"]],[20,21,["G3754"]],[21,22,["G3588"]],[22,23,["G1565"]],[23,24,["G1992"]],[24,28,["G3076","G5209"]],[28,29,["G1499"]],[29,33,["G4314"]],[33,35,["G5610"]]]},{"k":28925,"v":[[0,1,["G3568"]],[1,3,["G5463"]],[3,4,["G3756"]],[4,5,["G3754"]],[5,9,["G3076"]],[9,10,["G235"]],[10,11,["G3754"]],[11,13,["G3076"]],[13,14,["G1519"]],[14,15,["G3341"]],[15,16,["G1063"]],[16,20,["G3076"]],[20,24,["G2596","G2316"]],[24,25,["G2443"]],[25,29,["G2210"]],[29,30,["G1537"]],[30,31,["G2257"]],[31,32,["G1722"]],[32,33,["G3367"]]]},{"k":28926,"v":[[0,1,["G1063"]],[1,2,["G2596","G2316"]],[2,3,["G3077"]],[3,4,["G2716"]],[4,5,["G3341"]],[5,6,["G1519"]],[6,7,["G4991"]],[7,12,["G278"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G3077"]],[15,17,["G3588"]],[17,18,["G2889"]],[18,19,["G2716"]],[19,20,["G2288"]]]},{"k":28927,"v":[[0,1,["G1063"]],[1,2,["G2400"]],[2,3,["G5124"]],[3,5,["G846"]],[5,7,["G5209"]],[7,8,["G3076"]],[8,12,["G2596","G2316"]],[12,13,["G4214"]],[13,14,["G4710"]],[14,16,["G2716"]],[16,18,["G5213"]],[18,19,["G235"]],[19,23,["G627"]],[23,24,["G235"]],[24,26,["G24"]],[26,27,["G235"]],[27,29,["G5401"]],[29,30,["G235"]],[30,33,["G1972"]],[33,34,["G235"]],[34,36,["G2205"]],[36,37,["G235"]],[37,39,["G1557"]],[39,40,["G1722"]],[40,41,["G3956"]],[41,45,["G4921"]],[45,46,["G1438"]],[46,48,["G1511"]],[48,49,["G53"]],[49,50,["G1722"]],[50,52,["G4229"]]]},{"k":28928,"v":[[0,1,["G686"]],[1,2,["G1499"]],[2,4,["G1125"]],[4,6,["G5213"]],[6,10,["G3756"]],[10,13,["G1752"]],[13,18,["G91"]],[18,19,["G3761"]],[19,22,["G1752"]],[22,25,["G91"]],[25,26,["G235"]],[26,28,["G2257"]],[28,29,["G4710"]],[29,30,["G5228"]],[30,31,["G5216"]],[31,34,["G1799"]],[34,36,["G2316"]],[36,38,["G5319"]],[38,39,["G4314"]],[39,40,["G5209"]]]},{"k":28929,"v":[[0,1,["G1223","G5124"]],[1,4,["G3870"]],[4,5,["G1909"]],[5,6,["G5216"]],[6,7,["G3874"]],[7,9,["G1161"]],[9,10,["G4056"]],[10,12,["G3123"]],[12,13,["G5463"]],[13,15,["G1909"]],[15,16,["G3588"]],[16,17,["G5479"]],[17,19,["G5103"]],[19,20,["G3754"]],[20,21,["G846"]],[21,22,["G4151"]],[22,24,["G373"]],[24,25,["G575"]],[25,26,["G5216"]],[26,27,["G3956"]]]},{"k":28930,"v":[[0,1,["G3754"]],[1,7,["G1536","G2744"]],[7,9,["G846"]],[9,10,["G5228"]],[10,11,["G5216"]],[11,15,["G2617","G3756"]],[15,16,["G235"]],[16,17,["G5613"]],[17,19,["G2980"]],[19,21,["G3956"]],[21,23,["G5213"]],[23,24,["G1722"]],[24,25,["G225"]],[25,26,["G2532"]],[26,27,["G3779"]],[27,28,["G2257"]],[28,29,["G2746"]],[29,30,["G3588"]],[30,33,["G1909"]],[33,34,["G5103"]],[34,36,["G1096"]],[36,38,["G225"]]]},{"k":28931,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,4,["G4698"]],[4,5,["G2076"]],[5,7,["G4056"]],[7,8,["G1519"]],[8,9,["G5209"]],[9,12,["G363"]],[12,13,["G3588"]],[13,14,["G5218"]],[14,16,["G5216"]],[16,17,["G3956"]],[17,18,["G5613"]],[18,19,["G3326"]],[19,20,["G5401"]],[20,21,["G2532"]],[21,22,["G5156"]],[22,24,["G1209"]],[24,25,["G846"]]]},{"k":28932,"v":[[0,2,["G5463"]],[2,3,["G3767"]],[3,4,["G3754"]],[4,7,["G2292"]],[7,8,["G1722"]],[8,9,["G5213"]],[9,10,["G1722"]],[10,11,["G3956"]],[11,12,[]]]},{"k":28933,"v":[[0,1,["G1161"]],[1,2,["G80"]],[2,7,["G1107","G5213"]],[7,9,["G3588"]],[9,10,["G5485"]],[10,12,["G2316"]],[12,13,["G1325"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G1577"]],[16,18,["G3109"]]]},{"k":28934,"v":[[0,2,["G3754"]],[2,3,["G1722"]],[3,5,["G4183"]],[5,6,["G1382"]],[6,8,["G2347"]],[8,9,["G3588"]],[9,10,["G4050"]],[10,12,["G846"]],[12,13,["G5479"]],[13,14,["G2532"]],[14,15,["G846"]],[15,16,["G899"]],[16,17,["G4432"]],[17,18,["G4052"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G4149"]],[21,23,["G846"]],[23,24,["G572"]]]},{"k":28935,"v":[[0,1,["G3754"]],[1,2,["G2596"]],[2,4,["G1411"]],[4,7,["G3140"]],[7,9,["G2532"]],[9,10,["G5228"]],[10,12,["G1411"]],[12,17,["G830"]]]},{"k":28936,"v":[[0,1,["G1189"]],[1,2,["G2257"]],[2,3,["G3326"]],[3,4,["G4183"]],[4,5,["G3874"]],[5,7,["G2248"]],[7,9,["G1209"]],[9,10,["G3588"]],[10,11,["G5485"]],[11,12,["G2532"]],[12,16,["G3588"]],[16,17,["G2842"]],[17,19,["G3588"]],[19,20,["G1248"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G40"]]]},{"k":28937,"v":[[0,1,["G2532"]],[1,5,["G3756"]],[5,6,["G2531"]],[6,8,["G1679"]],[8,9,["G235"]],[9,10,["G4412"]],[10,11,["G1325"]],[11,14,["G1438"]],[14,16,["G3588"]],[16,17,["G2962"]],[17,18,["G2532"]],[18,20,["G2254"]],[20,21,["G1223"]],[21,23,["G2307"]],[23,25,["G2316"]]]},{"k":28938,"v":[[0,3,["G2248"]],[3,4,["G3870"]],[4,5,["G5103"]],[5,6,["G2443"]],[6,7,["G2531"]],[7,10,["G4278"]],[10,11,["G3779"]],[11,14,["G2532"]],[14,15,["G2005"]],[15,16,["G1519"]],[16,17,["G5209"]],[17,18,["G3588"]],[18,19,["G5026"]],[19,20,["G5485"]],[20,21,["G2532"]]]},{"k":28939,"v":[[0,1,["G235"]],[1,2,["G5618"]],[2,4,["G4052"]],[4,5,["G1722"]],[5,6,["G3956"]],[6,9,["G4102"]],[9,10,["G2532"]],[10,11,["G3056"]],[11,12,["G2532"]],[12,13,["G1108"]],[13,14,["G2532"]],[14,16,["G3956"]],[16,17,["G4710"]],[17,18,["G2532"]],[18,19,["(G1537)"]],[19,20,["G5216"]],[20,21,["G26"]],[21,22,["G1722"]],[22,23,["G2254"]],[23,25,["G2443"]],[25,27,["G4052"]],[27,28,["G1722"]],[28,29,["G5026"]],[29,30,["G5485"]],[30,31,["G2532"]]]},{"k":28940,"v":[[0,2,["G3004"]],[2,3,["G3756"]],[3,4,["G2596"]],[4,5,["G2003"]],[5,6,["G235"]],[6,9,["G1223"]],[9,10,["G3588"]],[10,11,["G4710"]],[11,13,["G2087"]],[13,14,["G2532"]],[14,16,["G1381"]],[16,17,["G3588"]],[17,18,["G1103"]],[18,20,["G5212"]],[20,21,["G26"]]]},{"k":28941,"v":[[0,1,["G1063"]],[1,3,["G1097"]],[3,4,["G3588"]],[4,5,["G5485"]],[5,7,["G2257"]],[7,8,["G2962"]],[8,9,["G2424"]],[9,10,["G5547"]],[10,11,["G3754"]],[11,14,["G5607"]],[14,15,["G4145"]],[15,19,["G1223","G5209"]],[19,22,["G4433"]],[22,23,["G2443"]],[23,24,["G5210"]],[24,26,["G1565"]],[26,27,["G4432"]],[27,30,["G4147"]]]},{"k":28942,"v":[[0,1,["G2532"]],[1,2,["G1722","G5129"]],[2,4,["G1325"]],[4,6,["G1106"]],[6,7,["G1063"]],[7,8,["G5124"]],[8,10,["G4851"]],[10,12,["G5213"]],[12,13,["G3748"]],[13,16,["G4278"]],[16,17,["G3756"]],[17,18,["G3440"]],[18,20,["G4160"]],[20,21,["G235"]],[21,22,["G2532"]],[22,25,["G2309"]],[25,28,["G575","G4070"]]]},{"k":28943,"v":[[0,0,["(G1161)"]],[0,1,["G3570"]],[1,2,["G2532"]],[2,3,["G2005"]],[3,4,["G3588"]],[4,5,["G4160"]],[5,8,["G3704"]],[8,9,["G2509"]],[9,13,["G4288"]],[13,15,["G2309"]],[15,16,["G3779"]],[16,21,["G2005"]],[21,22,["G2532"]],[22,24,["G1537"]],[24,28,["G2192"]]]},{"k":28944,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,5,["G4295"]],[5,8,["G4288"]],[8,11,["G2144"]],[11,14,["G2526"]],[14,16,["G5100"]],[16,17,["G2192","G1437"]],[17,19,["G3756"]],[19,22,["G2526"]],[22,24,["G2192"]],[24,25,["G3756"]]]},{"k":28945,"v":[[0,1,["G1063"]],[1,4,["G3756"]],[4,5,["G2443"]],[5,7,["G243"]],[7,9,["G425"]],[9,10,["G1161"]],[10,11,["G5213"]],[11,12,["G2347"]]]},{"k":28946,"v":[[0,1,["G235"]],[1,2,["G1537"]],[2,4,["G2471"]],[4,6,["G3568"]],[6,7,["G1722"]],[7,9,["G2540"]],[9,10,["G5216"]],[10,11,["G4051"]],[11,16,["G1519"]],[16,17,["G1565"]],[17,18,["G5303"]],[18,19,["G2443"]],[19,20,["G1565"]],[20,21,["G4051"]],[21,22,["G2532"]],[22,24,["G1096"]],[24,27,["G1519"]],[27,28,["G5216"]],[28,29,["G5303"]],[29,30,["G3704"]],[30,33,["G1096"]],[33,34,["G2471"]]]},{"k":28947,"v":[[0,1,["G2531"]],[1,4,["G1125"]],[4,5,["G3588"]],[5,9,["G4183"]],[9,12,["G4121","G3756"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,18,["G3641"]],[18,21,["G1641","G3756"]]]},{"k":28948,"v":[[0,1,["G1161"]],[1,2,["G5485"]],[2,5,["G2316"]],[5,7,["G1325"]],[7,8,["G3588"]],[8,9,["G846"]],[9,11,["G4710"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G2588"]],[14,16,["G5103"]],[16,17,["G5228"]],[17,18,["G5216"]]]},{"k":28949,"v":[[0,1,["G3754"]],[1,2,["G3303"]],[2,4,["G1209"]],[4,5,["G3588"]],[5,6,["G3874"]],[6,7,["G1161"]],[7,8,["G5225"]],[8,10,["G4707"]],[10,14,["G830"]],[14,16,["G1831"]],[16,17,["G4314"]],[17,18,["G5209"]]]},{"k":28950,"v":[[0,1,["G1161"]],[1,4,["G4842"]],[4,5,["G3326"]],[5,6,["G846"]],[6,7,["G3588"]],[7,8,["G80"]],[8,9,["G3739"]],[9,10,["G1868"]],[10,12,["G1722"]],[12,13,["G3588"]],[13,14,["G2098"]],[14,15,["G1223"]],[15,16,["G3956"]],[16,17,["G3588"]],[17,18,["G1577"]]]},{"k":28951,"v":[[0,1,["G1161"]],[1,2,["G3756"]],[2,4,["G3440"]],[4,5,["G235"]],[5,8,["G2532"]],[8,9,["G5500"]],[9,10,["G5259"]],[10,11,["G3588"]],[11,12,["G1577"]],[12,15,["G4898"]],[15,16,["G2257"]],[16,17,["G4862"]],[17,18,["G5026"]],[18,19,["G5485"]],[19,22,["G1247"]],[22,23,["G5259"]],[23,24,["G2257"]],[24,25,["G4314"]],[25,26,["G3588"]],[26,27,["G1391"]],[27,29,["G3588"]],[29,30,["G846"]],[30,31,["G2962"]],[31,32,["G2532"]],[32,35,["G5216"]],[35,37,["G4288"]]]},{"k":28952,"v":[[0,1,["G4724"]],[1,2,["G5124"]],[2,4,["G3361"]],[4,5,["G5100"]],[5,7,["G3469"]],[7,8,["G2248"]],[8,9,["G1722"]],[9,10,["G5026"]],[10,11,["G100"]],[11,14,["G1247"]],[14,15,["G5259"]],[15,16,["G2257"]]]},{"k":28953,"v":[[0,2,["G4306"]],[2,4,["G2570"]],[4,5,["G3756"]],[5,6,["G3440"]],[6,9,["G1799"]],[9,12,["G2962"]],[12,13,["G235"]],[13,14,["G2532"]],[14,17,["G1799"]],[17,19,["G444"]]]},{"k":28954,"v":[[0,1,["G1161"]],[1,5,["G4842"]],[5,6,["G846"]],[6,7,["G2257"]],[7,8,["G80"]],[8,9,["G3739"]],[9,12,["G4178"]],[12,13,["G1381","(G5607)"]],[13,14,["G4705"]],[14,15,["G1722"]],[15,17,["G4183"]],[17,18,["G1161"]],[18,19,["G3570"]],[19,20,["G4183"]],[20,22,["G4706"]],[22,25,["G4183"]],[25,26,["G4006"]],[26,27,["G3588"]],[27,30,["G1519"]],[30,31,["G5209"]]]},{"k":28955,"v":[[0,1,["G1535"]],[1,5,["G5228"]],[5,6,["G5103"]],[6,9,["G1699"]],[9,10,["G2844"]],[10,11,["G2532"]],[11,12,["G4904"]],[12,13,["G1519"]],[13,14,["G5209"]],[14,15,["G1535"]],[15,16,["G2257"]],[16,17,["G80"]],[17,24,["G652"]],[24,27,["G1577"]],[27,30,["G1391"]],[30,32,["G5547"]]]},{"k":28956,"v":[[0,1,["G3767"]],[1,2,["G1731"]],[2,4,["G1519"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G1519","G4383"]],[7,8,["G3588"]],[8,9,["G1577"]],[9,10,["G3588"]],[10,11,["G1732"]],[11,13,["G5216"]],[13,14,["G26"]],[14,15,["G2532"]],[15,17,["G2257"]],[17,18,["G2746"]],[18,21,["G5228","G5216"]]]},{"k":28957,"v":[[0,1,["G1063"]],[1,3,["G4012","(G3303)"]],[3,4,["G3588"]],[4,5,["G1248"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G40"]],[8,10,["G2076"]],[10,11,["G4053"]],[11,13,["G3427"]],[13,15,["G1125"]],[15,17,["G5213"]]]},{"k":28958,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,4,["G3588"]],[4,8,["G4288","G5216"]],[8,10,["G3739"]],[10,12,["G2744"]],[12,13,["G5228"]],[13,14,["G5216"]],[14,18,["G3110"]],[18,19,["G3754"]],[19,20,["G882"]],[20,22,["G3903"]],[22,25,["G575","G4070"]],[25,26,["G2532","(G1537)"]],[26,27,["G5216"]],[27,28,["G2205"]],[28,30,["G2042"]],[30,32,["G4119"]]]},{"k":28959,"v":[[0,1,["G1161"]],[1,4,["G3992"]],[4,5,["G3588"]],[5,6,["G80"]],[6,7,["G3363"]],[7,8,["G2257"]],[8,9,["G2745"]],[9,10,["G5228"]],[10,11,["G5216"]],[11,15,["G2758"]],[15,16,["G1722"]],[16,17,["G5129"]],[17,18,["G3313"]],[18,19,["G2443"]],[19,20,["G2531"]],[20,22,["G3004"]],[22,25,["G5600"]],[25,26,["G3903"]]]},{"k":28960,"v":[[0,2,["G3381"]],[2,3,["G1437"]],[3,6,["G3110"]],[6,7,["G2064"]],[7,8,["G4862"]],[8,9,["G1698"]],[9,10,["G2532"]],[10,11,["G2147"]],[11,12,["G5209"]],[12,13,["G532"]],[13,14,["G2249"]],[14,15,["G2443"]],[15,17,["G3004"]],[17,18,["G3361"]],[18,21,["G5210"]],[21,22,["G2617"]],[22,23,["G1722"]],[23,25,["G5026"]],[25,26,["G5287"]],[26,27,["G2746"]]]},{"k":28961,"v":[[0,1,["G3767"]],[1,3,["G2233"]],[3,5,["G316"]],[5,7,["G3870"]],[7,8,["G3588"]],[8,9,["G80"]],[9,10,["G2443"]],[10,14,["G4281"]],[14,15,["G1519"]],[15,16,["G5209"]],[16,17,["G2532"]],[17,20,["G4294"]],[20,21,["G5216"]],[21,22,["G2129"]],[22,27,["G4293"]],[27,30,["G5026"]],[30,32,["G1511"]],[32,33,["G2092","(G3779)"]],[33,34,["G5613"]],[34,38,["G2129"]],[38,39,["G2532"]],[39,40,["G3361"]],[40,41,["G5618"]],[41,43,["G4124"]]]},{"k":28962,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,7,["G4687"]],[7,8,["G5340"]],[8,10,["G2325"]],[10,11,["G2532"]],[11,12,["G5340"]],[12,13,["G2532"]],[13,16,["G4687"]],[16,17,["G1909","G2129"]],[17,19,["G2325"]],[19,20,["G2532"]],[20,21,["G1909","G2129"]]]},{"k":28963,"v":[[0,2,["G1538"]],[2,4,["G2531"]],[4,6,["G4255"]],[6,9,["G2588"]],[9,14,["G3361"]],[14,15,["G1537","G3077"]],[15,16,["G2228"]],[16,17,["G1537"]],[17,18,["G318"]],[18,19,["G1063"]],[19,20,["G2316"]],[20,21,["G25"]],[21,23,["G2431"]],[23,24,["G1395"]]]},{"k":28964,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,4,["G1415"]],[4,9,["G4052","G3956","G5485"]],[9,10,["G1519"]],[10,11,["G5209"]],[11,12,["G2443"]],[12,14,["G3842"]],[14,15,["G2192"]],[15,16,["G3956"]],[16,17,["G841"]],[17,18,["G1722"]],[18,19,["G3956"]],[19,22,["G4052"]],[22,23,["G1519"]],[23,24,["G3956"]],[24,25,["G18"]],[25,26,["G2041"]]]},{"k":28965,"v":[[0,1,["G2531"]],[1,4,["G1125"]],[4,8,["G4650"]],[8,11,["G1325"]],[11,13,["G3588"]],[13,14,["G3993"]],[14,15,["G846"]],[15,16,["G1343"]],[16,17,["G3306"]],[17,19,["G1519","G165"]]]},{"k":28966,"v":[[0,1,["G1161"]],[1,4,["G2023"]],[4,5,["G4690"]],[5,7,["G3588"]],[7,8,["G4687"]],[8,9,["G2532"]],[9,10,["G5524"]],[10,11,["G740"]],[11,12,["G1519"]],[12,14,["G1035"]],[14,15,["G2532"]],[15,16,["G4129"]],[16,17,["G5216"]],[17,19,["G4703"]],[19,20,["G2532"]],[20,21,["G837"]],[21,22,["G3588"]],[22,23,["G1081"]],[23,25,["G5216"]],[25,26,["G1343"]]]},{"k":28967,"v":[[0,2,["G4148"]],[2,3,["G1722"]],[3,5,["G3956"]],[5,6,["G1519"]],[6,7,["G3956"]],[7,8,["G572"]],[8,9,["G3748"]],[9,10,["G2716"]],[10,11,["G1223"]],[11,12,["G2257"]],[12,13,["G2169"]],[13,15,["G2316"]]]},{"k":28968,"v":[[0,1,["G3754"]],[1,2,["G3588"]],[2,3,["G1248"]],[3,5,["G5026"]],[5,6,["G3009"]],[6,7,["G3756"]],[7,8,["G3440"]],[8,9,["G2076","G4322"]],[9,10,["G3588"]],[10,11,["G5303"]],[11,13,["G3588"]],[13,14,["G40"]],[14,15,["G235"]],[15,17,["G4052"]],[17,18,["G2532"]],[18,19,["G1223"]],[19,20,["G4183"]],[20,21,["G2169"]],[21,23,["G2316"]]]},{"k":28969,"v":[[0,2,["G1223"]],[2,3,["G3588"]],[3,4,["G1382"]],[4,6,["G5026"]],[6,7,["G1248"]],[7,9,["G1392"]],[9,10,["G2316"]],[10,12,["G5216"]],[12,13,["G3671"]],[13,14,["G5292"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G2098"]],[17,19,["G5547"]],[19,20,["G2532"]],[20,23,["G572"]],[23,24,["G2842"]],[24,25,["G1519"]],[25,26,["G846"]],[26,27,["G2532"]],[27,28,["G1519"]],[28,29,["G3956"]],[29,30,[]]]},{"k":28970,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,4,["G1162"]],[4,5,["G5228"]],[5,6,["G5216"]],[6,9,["G1971"]],[9,10,["G5209"]],[10,11,["G1223"]],[11,12,["G3588"]],[12,13,["G5235"]],[13,14,["G5485"]],[14,16,["G2316"]],[16,17,["G1909"]],[17,18,["G5213"]]]},{"k":28971,"v":[[0,0,["(G1161)"]],[0,1,["G5485"]],[1,4,["G2316"]],[4,5,["G1909"]],[5,6,["G846"]],[6,7,["G411"]],[7,8,["G1431"]]]},{"k":28972,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G3972"]],[3,4,["G846"]],[4,5,["G3870"]],[5,6,["G5209"]],[6,7,["G1223"]],[7,8,["G3588"]],[8,9,["G4236"]],[9,10,["G2532"]],[10,11,["G1932"]],[11,13,["G5547"]],[13,14,["G3739"]],[14,15,["G2596"]],[15,16,["G4383"]],[16,17,["(G3303)"]],[17,18,["G5011"]],[18,19,["G1722"]],[19,20,["G5213"]],[20,21,["G1161"]],[21,23,["G548"]],[23,25,["G2292"]],[25,26,["G1519"]],[26,27,["G5209"]]]},{"k":28973,"v":[[0,1,["G1161"]],[1,3,["G1189"]],[3,8,["G3361"]],[8,10,["G2292"]],[10,14,["G3918"]],[14,17,["G4006"]],[17,18,["G3739"]],[18,20,["G3049"]],[20,23,["G5111"]],[23,24,["G1909"]],[24,25,["G5100"]],[25,27,["G3049"]],[27,29,["G2248"]],[29,30,["G5613"]],[30,33,["G4043"]],[33,34,["G2596"]],[34,37,["G4561"]]]},{"k":28974,"v":[[0,1,["G1063"]],[1,4,["G4043"]],[4,5,["G1722"]],[5,7,["G4561"]],[7,10,["G3756"]],[10,11,["G4754"]],[11,12,["G2596"]],[12,14,["G4561"]]]},{"k":28975,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3696"]],[3,5,["G2257"]],[5,6,["G4752"]],[6,8,["G3756"]],[8,9,["G4559"]],[9,10,["G235"]],[10,11,["G1415"]],[11,13,["G2316"]],[13,14,["G4314"]],[14,17,["G2506"]],[17,20,["G3794"]]]},{"k":28976,"v":[[0,2,["G2507"]],[2,3,["G3053"]],[3,4,["G2532"]],[4,5,["G3956"]],[5,7,["G5313"]],[7,10,["G1869"]],[10,11,["G2596"]],[11,12,["G3588"]],[12,13,["G1108"]],[13,15,["G2316"]],[15,16,["G2532"]],[16,19,["G163"]],[19,20,["G3956"]],[20,21,["G3540"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G5218"]],[24,26,["G5547"]]]},{"k":28977,"v":[[0,1,["G2532"]],[1,2,["G2192"]],[2,3,["G1722"]],[3,5,["G2092"]],[5,7,["G1556"]],[7,8,["G3956"]],[8,9,["G3876"]],[9,10,["G3752"]],[10,11,["G5216"]],[11,12,["G5218"]],[12,14,["G4137"]]]},{"k":28978,"v":[[0,4,["G991"]],[4,5,["G3588"]],[5,6,["G2596"]],[6,9,["G4383"]],[9,12,["G1536"]],[12,13,["G3982"]],[13,15,["G1438"]],[15,18,["G1511"]],[18,19,["G5547"]],[19,22,["G575"]],[22,23,["G1438"]],[23,24,["G3049"]],[24,25,["G5124"]],[25,26,["G3825"]],[26,27,["G3754"]],[27,28,["G2531"]],[28,29,["G846"]],[29,31,["G5547"]],[31,32,["G2532"]],[32,33,["G3779"]],[33,35,["G2249"]],[35,36,["G5547"]]]},{"k":28979,"v":[[0,1,["G1063"]],[1,2,["G1437","G5037"]],[2,5,["G2744","(G2532)"]],[5,6,["G5100"]],[6,7,["G4055"]],[7,8,["G4012"]],[8,9,["G2257"]],[9,10,["G1849"]],[10,11,["G3739"]],[11,12,["G3588"]],[12,13,["G2962"]],[13,15,["G1325"]],[15,16,["G2254"]],[16,17,["G1519"]],[17,18,["G3619"]],[18,19,["G2532"]],[19,20,["G3756"]],[20,21,["G1519"]],[21,22,["G5216"]],[22,23,["G2506"]],[23,26,["G3756"]],[26,28,["G153"]]]},{"k":28980,"v":[[0,1,["G2443"]],[1,4,["G3361"]],[4,5,["G1380"]],[5,6,["G5613","G302"]],[6,10,["G1629"]],[10,11,["G5209"]],[11,12,["G1223"]],[12,13,["G1992"]]]},{"k":28981,"v":[[0,1,["G3754"]],[1,3,["G1992","(G3303)"]],[3,4,["G5346"]],[4,7,["G926"]],[7,8,["G2532"]],[8,9,["G2478"]],[9,10,["G1161"]],[10,12,["G4983"]],[12,13,["G3952"]],[13,15,["G772"]],[15,16,["G2532"]],[16,18,["G3056"]],[18,19,["G1848"]]]},{"k":28982,"v":[[0,4,["G5108"]],[4,5,["G3049"]],[5,6,["G5124"]],[6,7,["G3754"]],[7,8,["G3634"]],[8,11,["G2070"]],[11,13,["G3056"]],[13,14,["G1223"]],[14,15,["G1992"]],[15,19,["G548"]],[19,20,["G5108"]],[20,24,["G2532"]],[24,26,["G2041"]],[26,30,["G3918"]]]},{"k":28983,"v":[[0,1,["G1063"]],[1,3,["G5111"]],[3,4,["G3756"]],[4,9,["G1469","G1438"]],[9,10,["G2228"]],[10,11,["G4793"]],[11,12,["G1438"]],[12,14,["G5100"]],[14,16,["G4921"]],[16,17,["G1438"]],[17,18,["G235"]],[18,19,["G846"]],[19,20,["G3354"]],[20,21,["G1438"]],[21,22,["G1722"]],[22,23,["G1438"]],[23,24,["G2532"]],[24,25,["G4793"]],[25,26,["G1438"]],[26,28,["G1438"]],[28,31,["G4920","G3756"]]]},{"k":28984,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,4,["G3780"]],[4,5,["G2744"]],[5,6,["G1519"]],[6,10,["G280"]],[10,11,["G235"]],[11,12,["G2596"]],[12,14,["G3588"]],[14,15,["G3358"]],[15,17,["G3588"]],[17,18,["G2583"]],[18,19,["G3739"]],[19,20,["G2316"]],[20,22,["G3307"]],[22,24,["G2254"]],[24,26,["G3358"]],[26,28,["G2185"]],[28,29,["G2532"]],[29,30,["G891"]],[30,31,["G5216"]]]},{"k":28985,"v":[[0,1,["G1063"]],[1,6,["G5239","G3756","G1438"]],[6,10,["G5613"]],[10,12,["G2185"]],[12,13,["G3361"]],[13,14,["G1519"]],[14,15,["G5209"]],[15,16,["G1063"]],[16,19,["G5348"]],[19,22,["G891"]],[22,24,["G5216"]],[24,25,["G2532"]],[25,26,["G1722"]],[26,28,["G3588"]],[28,29,["G2098"]],[29,31,["G5547"]]]},{"k":28986,"v":[[0,1,["G3756"]],[1,2,["G2744"]],[2,3,["G1519"]],[3,7,["G280"]],[7,10,["G1722"]],[10,12,["G245"]],[12,13,["G2873"]],[13,14,["G1161"]],[14,15,["G2192"]],[15,16,["G1680"]],[16,18,["G5216"]],[18,19,["G4102"]],[19,21,["G837"]],[21,26,["G3170"]],[26,27,["G1722"]],[27,28,["G5213"]],[28,29,["G2596"]],[29,31,["G2257"]],[31,32,["G2583"]],[32,33,["G1519","G4050"]]]},{"k":28987,"v":[[0,4,["G2097"]],[4,5,["G1519"]],[5,8,["G5238"]],[8,9,["G5216"]],[9,11,["G3756"]],[11,13,["G2744"]],[13,14,["G1722"]],[14,16,["G245"]],[16,19,["G2583"]],[19,24,["G1519","G2092"]]]},{"k":28988,"v":[[0,1,["G1161"]],[1,4,["G2744"]],[4,7,["G2744"]],[7,8,["G1722"]],[8,10,["G2962"]]]},{"k":28989,"v":[[0,1,["G1063"]],[1,2,["G3756"]],[2,3,["G1565"]],[3,5,["G4921"]],[5,6,["G1438"]],[6,7,["G2076"]],[7,8,["G1384"]],[8,9,["G235"]],[9,10,["G3739"]],[10,11,["G3588"]],[11,12,["G2962"]],[12,13,["G4921"]]]},{"k":28990,"v":[[0,3,["G3785"]],[3,7,["G430"]],[7,8,["G3450"]],[8,10,["G3397"]],[10,13,["G877"]],[13,14,["G235"]],[14,15,["G2532"]],[15,17,["G430"]],[17,18,["G3450"]]]},{"k":28991,"v":[[0,1,["G1063"]],[1,4,["G2206"]],[4,6,["G5209"]],[6,8,["G2316"]],[8,9,["G2205"]],[9,10,["G1063"]],[10,13,["G718"]],[13,14,["G5209"]],[14,16,["G1520"]],[16,17,["G435"]],[17,21,["G3936"]],[21,25,["G53"]],[25,26,["G3933"]],[26,28,["G5547"]]]},{"k":28992,"v":[[0,1,["G1161"]],[1,3,["G5399"]],[3,7,["G3381"]],[7,8,["G5613"]],[8,9,["G3588"]],[9,10,["G3789"]],[10,11,["G1818"]],[11,12,["G2096"]],[12,13,["G1722"]],[13,14,["G848"]],[14,15,["G3834"]],[15,16,["G3779"]],[16,17,["G5216"]],[17,18,["G3540"]],[18,21,["G5351"]],[21,22,["G575"]],[22,23,["G3588"]],[23,24,["G572"]],[24,25,["G3588"]],[25,27,["G1519"]],[27,28,["G5547"]]]},{"k":28993,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,5,["G2064"]],[5,6,["G2784"]],[6,7,["G243"]],[7,8,["G2424"]],[8,9,["G3739"]],[9,12,["G3756"]],[12,13,["G2784"]],[13,14,["G2228"]],[14,17,["G2983"]],[17,18,["G2087"]],[18,19,["G4151"]],[19,20,["G3739"]],[20,23,["G3756"]],[23,24,["G2983"]],[24,25,["G2228"]],[25,26,["G2087"]],[26,27,["G2098"]],[27,28,["G3739"]],[28,31,["G3756"]],[31,32,["G1209"]],[32,35,["G2573"]],[35,37,["G430"]],[37,38,[]]]},{"k":28994,"v":[[0,1,["G1063"]],[1,3,["G3049"]],[3,9,["G5302","G3367"]],[9,10,["G3588"]],[10,12,["G5228","G3029"]],[12,13,["G652"]]]},{"k":28995,"v":[[0,1,["G1161"]],[1,2,["G1487","G2532"]],[2,5,["G2399"]],[5,7,["G3056"]],[7,8,["G235"]],[8,9,["G3756"]],[9,11,["G1108"]],[11,12,["G235"]],[12,16,["G1722","G3956"]],[16,18,["G5319"]],[18,19,["G1519"]],[19,20,["G5209"]],[20,21,["G1722"]],[21,23,["G3956"]]]},{"k":28996,"v":[[0,0,["(G2228)"]],[0,3,["G4160"]],[3,5,["G266"]],[5,7,["G5013"]],[7,8,["G1683"]],[8,9,["G2443"]],[9,10,["G5210"]],[10,13,["G5312"]],[13,14,["G3754"]],[14,17,["G2097"]],[17,19,["G5213"]],[19,20,["G3588"]],[20,21,["G2098"]],[21,23,["G2316"]],[23,24,["G1432"]]]},{"k":28997,"v":[[0,2,["G4813"]],[2,3,["G243"]],[3,4,["G1577"]],[4,5,["G2983"]],[5,6,["G3800"]],[6,9,["G4314"]],[9,11,["G5216"]],[11,12,["G1248"]]]},{"k":28998,"v":[[0,1,["G2532"]],[1,5,["G3918"]],[5,6,["G4314"]],[6,7,["G5209"]],[7,8,["G2532"]],[8,9,["G5302"]],[9,10,["(G3756)"]],[10,12,["G2655"]],[12,15,["G3762"]],[15,16,["G1063"]],[16,20,["G5303"]],[20,22,["G3450"]],[22,23,["G3588"]],[23,24,["G80"]],[24,26,["G2064"]],[26,27,["G575"]],[27,28,["G3109"]],[28,29,["G4322"]],[29,30,["G2532"]],[30,31,["G1722"]],[31,32,["G3956"]],[32,36,["G5083"]],[36,37,["G1683"]],[37,40,["G4"]],[40,42,["G5213"]],[42,43,["G2532"]],[43,47,["G5083"]],[47,48,[]]]},{"k":28999,"v":[[0,3,["G225"]],[3,5,["G5547"]],[5,6,["G2076"]],[6,7,["G1722"]],[7,8,["G1698"]],[8,10,["(G3754","G3756)"]],[10,12,["G4972","(G1519)"]],[12,13,["G1691"]],[13,15,["G3778"]],[15,16,["G2746"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G2824"]],[19,21,["G882"]]]},{"k":29000,"v":[[0,1,["G1302"]],[1,2,["G3754"]],[2,4,["G25"]],[4,5,["G5209"]],[5,6,["G3756"]],[6,7,["G2316"]],[7,8,["G1492"]]]},{"k":29001,"v":[[0,1,["G1161"]],[1,2,["G3739"]],[2,4,["G4160"]],[4,6,["(G2532)"]],[6,8,["G4160"]],[8,9,["G2443"]],[9,13,["G1581"]],[13,14,["G874"]],[14,18,["G2309"]],[18,19,["G874"]],[19,20,["G2443"]],[20,21,["G1722","G3739"]],[21,23,["G2744"]],[23,27,["G2147"]],[27,28,["G2532"]],[28,29,["G2531"]],[29,30,["G2249"]]]},{"k":29002,"v":[[0,1,["G1063"]],[1,2,["G5108"]],[2,5,["G5570"]],[5,6,["G1386"]],[6,7,["G2040"]],[7,9,["G3345"]],[9,10,["G1519"]],[10,12,["G652"]],[12,14,["G5547"]]]},{"k":29003,"v":[[0,1,["G2532"]],[1,2,["G3756"]],[2,3,["G2298"]],[3,4,["G1063"]],[4,5,["G4567"]],[5,6,["G846"]],[6,8,["G3345"]],[8,9,["G1519"]],[9,11,["G32"]],[11,13,["G5457"]]]},{"k":29004,"v":[[0,1,["G3767"]],[1,4,["G3756"]],[4,6,["G3173"]],[6,7,["G1499"]],[7,8,["G846"]],[8,9,["G1249"]],[9,12,["G3345"]],[12,13,["G5613"]],[13,15,["G1249"]],[15,17,["G1343"]],[17,18,["G3739"]],[18,19,["G5056"]],[19,21,["G2071"]],[21,22,["G2596"]],[22,24,["G846"]],[24,25,["G2041"]]]},{"k":29005,"v":[[0,2,["G3004"]],[2,3,["G3825"]],[3,5,["G3361"]],[5,6,["G5100"]],[6,7,["G1380"]],[7,8,["G3165"]],[8,9,["(G1511)"]],[9,10,["G878"]],[10,12,["G1490","G1490"]],[12,13,["(G2579)"]],[13,14,["G5613"]],[14,16,["G878"]],[16,17,["G1209"]],[17,18,["G3165"]],[18,19,["G2443"]],[19,20,["G2504"]],[20,22,["G2744"]],[22,25,["G3397","G5100"]]]},{"k":29006,"v":[[0,1,["G3739"]],[1,4,["G2980"]],[4,6,["G2980"]],[6,8,["G3756"]],[8,9,["G2596"]],[9,11,["G2962"]],[11,12,["G235"]],[12,15,["G5613"]],[15,16,["G1722","G877"]],[16,17,["G1722"]],[17,18,["G5026"]],[18,19,["G5287"]],[19,21,["G2746"]]]},{"k":29007,"v":[[0,2,["G1893"]],[2,3,["G4183"]],[3,4,["G2744"]],[4,5,["G2596"]],[5,6,["G3588"]],[6,7,["G4561"]],[7,11,["G2504","G2744"]]]},{"k":29008,"v":[[0,1,["G1063"]],[1,3,["G430"]],[3,4,["G878"]],[4,5,["G2234"]],[5,9,["G5607"]],[9,10,["G5429"]]]},{"k":29009,"v":[[0,1,["G1063"]],[1,3,["G430"]],[3,6,["G1536"]],[6,10,["G2615","G5209"]],[10,13,["G1536"]],[13,14,["G2719"]],[14,18,["G1536"]],[18,19,["G2983"]],[19,24,["G1536"]],[24,26,["G1869"]],[26,29,["G1536"]],[29,30,["G1194"]],[30,31,["G5209"]],[31,32,["G1519"]],[32,34,["G4383"]]]},{"k":29010,"v":[[0,2,["G3004"]],[2,4,["G2596"]],[4,5,["G819"]],[5,6,["G5613"]],[6,7,["G3754"]],[7,8,["G2249"]],[8,11,["G770"]],[11,12,["G1161"]],[12,13,["G1722","G3739","G302"]],[13,14,["G5100"]],[14,17,["G5111"]],[17,18,["G3004"]],[18,19,["G1722","G877"]],[19,23,["G2504","G5111"]]]},{"k":29011,"v":[[0,1,["G1526"]],[1,3,["G1445"]],[3,6,["G2504"]],[6,7,["G1526"]],[7,9,["G2475"]],[9,12,["G2504"]],[12,13,["G1526"]],[13,16,["G4690"]],[16,18,["G11"]],[18,21,["G2504"]]]},{"k":29012,"v":[[0,1,["G1526"]],[1,3,["G1249"]],[3,6,["G5547"]],[6,7,["G2980"]],[7,10,["G3912"]],[10,11,["G1473"]],[11,13,["G5228"]],[13,14,["G1722"]],[14,15,["G2873"]],[15,17,["G4056"]],[17,18,["G1722"]],[18,19,["G4127"]],[19,21,["G5234"]],[21,22,["G1722"]],[22,23,["G5438"]],[23,25,["G4056"]],[25,26,["G1722"]],[26,27,["G2288"]],[27,28,["G4178"]]]},{"k":29013,"v":[[0,1,["G5259"]],[1,3,["G2453"]],[3,5,["G3999"]],[5,6,["G2983"]],[6,8,["G5062"]],[8,10,["G3844"]],[10,11,["G3391"]]]},{"k":29014,"v":[[0,1,["G5151"]],[1,6,["G4463"]],[6,7,["G530"]],[7,10,["G3034"]],[10,11,["G5151"]],[11,14,["G3489"]],[14,19,["G3574"]],[19,22,["G4160"]],[22,23,["G1722"]],[23,24,["G3588"]],[24,25,["G1037"]]]},{"k":29015,"v":[[0,2,["G3597"]],[2,3,["G4178"]],[3,5,["G2794"]],[5,7,["G4215"]],[7,9,["G2794"]],[9,11,["G3027"]],[11,13,["G2794"]],[13,14,["G1537"]],[14,17,["G1085"]],[17,19,["G2794"]],[19,20,["G1537"]],[20,22,["G1484"]],[22,24,["G2794"]],[24,25,["G1722"]],[25,27,["G4172"]],[27,29,["G2794"]],[29,30,["G1722"]],[30,32,["G2047"]],[32,34,["G2794"]],[34,35,["G1722"]],[35,37,["G2281"]],[37,39,["G2794"]],[39,40,["G1722"]],[40,42,["G5569"]]]},{"k":29016,"v":[[0,1,["G1722"]],[1,2,["G2873"]],[2,3,["G2532"]],[3,4,["G3449"]],[4,5,["G1722"]],[5,6,["G70"]],[6,7,["G4178"]],[7,8,["G1722"]],[8,9,["G3042"]],[9,10,["G2532"]],[10,11,["G1373"]],[11,12,["G1722"]],[12,13,["G3521"]],[13,14,["G4178"]],[14,15,["G1722"]],[15,16,["G5592"]],[16,17,["G2532"]],[17,18,["G1132"]]]},{"k":29017,"v":[[0,1,["G5565"]],[1,6,["G3924"]],[6,10,["G1999"]],[10,11,["G3450"]],[11,12,["G2596","G2250"]],[12,13,["G3588"]],[13,14,["G3308"]],[14,16,["G3956"]],[16,17,["G3588"]],[17,18,["G1577"]]]},{"k":29018,"v":[[0,1,["G5101"]],[1,3,["G770"]],[3,4,["G2532"]],[4,8,["G770","G3756"]],[8,9,["G5101"]],[9,11,["G4624"]],[11,12,["G2532"]],[12,13,["G1473"]],[13,14,["G4448"]],[14,15,["G3756"]]]},{"k":29019,"v":[[0,1,["G1487"]],[1,4,["G1163"]],[4,5,["G2744"]],[5,8,["G2744"]],[8,11,["G3588"]],[11,14,["G3450"]],[14,15,["G769"]]]},{"k":29020,"v":[[0,1,["G3588"]],[1,2,["G2316"]],[2,3,["G2532"]],[3,4,["G3962"]],[4,6,["G2257"]],[6,7,["G2962"]],[7,8,["G2424"]],[8,9,["G5547"]],[9,11,["G5607"]],[11,12,["G2128"]],[12,14,["G1519","G165"]],[14,15,["G1492"]],[15,16,["G3754"]],[16,18,["G5574"]],[18,19,["G3756"]]]},{"k":29021,"v":[[0,1,["G1722"]],[1,2,["G1154"]],[2,3,["G3588"]],[3,4,["G1481"]],[4,6,["G702"]],[6,7,["G3588"]],[7,8,["G935"]],[8,17,["G5432","G3588","G4172","G1153"]],[17,18,["G2309"]],[18,20,["G4084"]],[20,21,["G3165"]]]},{"k":29022,"v":[[0,1,["G2532"]],[1,2,["G1223"]],[2,4,["G2376"]],[4,5,["G1722"]],[5,7,["G4553"]],[7,11,["G5465"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G5038"]],[14,15,["G2532"]],[15,16,["G1628"]],[16,17,["G846"]],[17,18,["G5495"]]]},{"k":29023,"v":[[0,4,["G4851","G3756"]],[4,6,["G3427"]],[6,7,["G1211"]],[7,9,["G2744"]],[9,11,["(G1063)"]],[11,12,["G2064"]],[12,13,["G1519"]],[13,14,["G3701"]],[14,15,["G2532"]],[15,16,["G602"]],[16,19,["G2962"]]]},{"k":29024,"v":[[0,2,["G1492"]],[2,4,["G444"]],[4,5,["G1722"]],[5,6,["G5547"]],[6,7,["G4253"]],[7,8,["G1180"]],[8,9,["G2094"]],[9,11,["G1535"]],[11,12,["G1722"]],[12,14,["G4983"]],[14,17,["G1492","G3756"]],[17,19,["G1535"]],[19,20,["G1622"]],[20,22,["G3588"]],[22,23,["G4983"]],[23,26,["G1492","G3756"]],[26,27,["G2316"]],[27,28,["G1492"]],[28,31,["G5108"]],[31,33,["G726"]],[33,34,["G2193"]],[34,36,["G5154"]],[36,37,["G3772"]]]},{"k":29025,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G5108"]],[4,6,["G444"]],[6,7,["G1535"]],[7,8,["G1722"]],[8,10,["G4983"]],[10,11,["G1535"]],[11,12,["G1622"]],[12,14,["G3588"]],[14,15,["G4983"]],[15,18,["G1492","G3756"]],[18,19,["G2316"]],[19,20,["G1492"]]]},{"k":29026,"v":[[0,2,["G3754"]],[2,6,["G726"]],[6,7,["G1519"]],[7,8,["G3857"]],[8,9,["G2532"]],[9,10,["G191"]],[10,11,["G731"]],[11,12,["G4487"]],[12,13,["G3739"]],[13,17,["G1832","G3756"]],[17,20,["G444"]],[20,22,["G2980"]]]},{"k":29027,"v":[[0,1,["G5228"]],[1,4,["G5108"]],[4,7,["G2744"]],[7,8,["G1161"]],[8,9,["G5228"]],[9,10,["G1683"]],[10,13,["G3756"]],[13,14,["G2744"]],[14,15,["G1508"]],[15,16,["G1722"]],[16,17,["G3450"]],[17,18,["G769"]]]},{"k":29028,"v":[[0,1,["G1063"]],[1,2,["G1437"]],[2,5,["G2309"]],[5,7,["G2744"]],[7,10,["G3756"]],[10,11,["G2071"]],[11,13,["G878"]],[13,14,["G1063"]],[14,17,["G2046"]],[17,19,["G225"]],[19,20,["G1161"]],[20,23,["G5339"]],[23,24,["G3361"]],[24,26,["G5100"]],[26,28,["G3049"]],[28,29,["G1519"]],[29,30,["G1691"]],[30,31,["G5228"]],[31,32,["G3739"]],[32,35,["G991"]],[35,36,["G3165"]],[36,39,["G2228"]],[39,42,["G191","(G5100)"]],[42,43,["G1537"]],[43,44,["G1700"]]]},{"k":29029,"v":[[0,1,["G2532"]],[1,2,["G3363"]],[2,8,["G5229"]],[8,10,["G3588"]],[10,11,["G5236"]],[11,13,["G3588"]],[13,14,["G602"]],[14,17,["G1325"]],[17,19,["G3427"]],[19,21,["G4647"]],[21,23,["G3588"]],[23,24,["G4561"]],[24,26,["G32"]],[26,28,["G4566"]],[28,29,["G2443"]],[29,30,["G2852"]],[30,31,["G3165"]],[31,32,["G3363"]],[32,38,["G5229"]]]},{"k":29030,"v":[[0,1,["G5228"]],[1,3,["G5127"]],[3,5,["G3870"]],[5,6,["G3588"]],[6,7,["G2962"]],[7,8,["G5151"]],[8,9,["G2443"]],[9,12,["G868"]],[12,13,["G575"]],[13,14,["G1700"]]]},{"k":29031,"v":[[0,1,["G2532"]],[1,3,["G2046"]],[3,5,["G3427"]],[5,6,["G3450"]],[6,7,["G5485"]],[7,9,["G714"]],[9,11,["G4671"]],[11,12,["G1063"]],[12,13,["G3450"]],[13,14,["G1411"]],[14,17,["G5048"]],[17,18,["G1722"]],[18,19,["G769"]],[19,21,["G2236"]],[21,22,["G3767"]],[22,25,["G3123"]],[25,26,["G2744"]],[26,27,["G1722"]],[27,28,["G3450"]],[28,29,["G769"]],[29,30,["G2443"]],[30,31,["G3588"]],[31,32,["G1411"]],[32,34,["G5547"]],[34,36,["G1981"]],[36,37,["G1909"]],[37,38,["G1691"]]]},{"k":29032,"v":[[0,1,["G1352"]],[1,4,["G2106"]],[4,5,["G1722"]],[5,6,["G769"]],[6,7,["G1722"]],[7,8,["G5196"]],[8,9,["G1722"]],[9,10,["G318"]],[10,11,["G1722"]],[11,12,["G1375"]],[12,13,["G1722"]],[13,14,["G4730"]],[14,17,["G5228","G5547"]],[17,18,["G1063"]],[18,19,["G3752"]],[19,22,["G770"]],[22,23,["G5119"]],[23,24,["G1510"]],[24,26,["G1415"]]]},{"k":29033,"v":[[0,3,["G1096"]],[3,5,["G878"]],[5,7,["G2744"]],[7,8,["G5210"]],[8,10,["G315"]],[10,11,["G3165"]],[11,12,["G1063"]],[12,13,["G1473"]],[13,14,["G3784"]],[14,18,["G4921"]],[18,19,["G5259"]],[19,20,["G5216"]],[20,21,["G1063"]],[21,23,["G3762"]],[23,26,["G5302"]],[26,27,["G3588"]],[27,29,["G5228","G3029"]],[29,30,["G652"]],[30,31,["G1499"]],[31,33,["G1510"]],[33,34,["G3762"]]]},{"k":29034,"v":[[0,1,["G3303"]],[1,2,["G3588"]],[2,3,["G4592"]],[3,6,["G652"]],[6,8,["G2716"]],[8,9,["G1722"]],[9,10,["G5213"]],[10,11,["G1722"]],[11,12,["G3956"]],[12,13,["G5281"]],[13,14,["G1722"]],[14,15,["G4592"]],[15,16,["G2532"]],[16,17,["G5059"]],[17,18,["G2532"]],[18,20,["G1411"]]]},{"k":29035,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,3,["G2076"]],[3,5,["G3739"]],[5,8,["G2274"]],[8,9,["G5228"]],[9,10,["G3062"]],[10,11,["G1577"]],[11,12,["G1508"]],[12,15,["G3754"]],[15,16,["G1473"]],[16,17,["G846"]],[17,20,["G2655","G3756"]],[20,22,["G5216"]],[22,23,["G5483"]],[23,24,["G3427"]],[24,25,["G5026"]],[25,26,["G93"]]]},{"k":29036,"v":[[0,1,["G2400"]],[1,4,["G5154"]],[4,6,["G2192"]],[6,7,["G2093"]],[7,9,["G2064"]],[9,10,["G4314"]],[10,11,["G5209"]],[11,12,["G2532"]],[12,15,["G3756"]],[15,17,["G2655"]],[17,19,["G5216"]],[19,20,["G1063"]],[20,22,["G2212"]],[22,23,["G3756"]],[23,24,["G5216"]],[24,25,["G235"]],[25,26,["G5209"]],[26,27,["G1063"]],[27,28,["G3588"]],[28,29,["G5043"]],[29,30,["G3784"]],[30,31,["G3756"]],[31,34,["G2343"]],[34,36,["G3588"]],[36,37,["G1118"]],[37,38,["G235"]],[38,39,["G3588"]],[39,40,["G1118"]],[40,42,["G3588"]],[42,43,["G5043"]]]},{"k":29037,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,5,["G2236"]],[5,6,["G1159"]],[6,7,["G2532"]],[7,9,["G1550"]],[9,10,["G5228"]],[10,11,["G5216"]],[11,12,["G1499"]],[12,15,["G4056"]],[15,17,["G25"]],[17,18,["G5209"]],[18,20,["G2276"]],[20,23,["G25"]]]},{"k":29038,"v":[[0,1,["G1161"]],[1,2,["G2077"]],[2,5,["G1473"]],[5,7,["G3756"]],[7,8,["G2599"]],[8,9,["G5209"]],[9,10,["G235"]],[10,11,["G5225"]],[11,12,["G3835"]],[12,14,["G2983"]],[14,15,["G5209"]],[15,17,["G1388"]]]},{"k":29039,"v":[[0,2,["(G1223","G846)"]],[2,5,["G4122"]],[5,7,["G5209"]],[7,8,["(G3361)"]],[8,9,["G5100"]],[9,12,["G3739"]],[12,14,["G649"]],[14,15,["G4314"]],[15,16,["G5209"]]]},{"k":29040,"v":[[0,2,["G3870"]],[2,3,["G5103"]],[3,4,["G2532"]],[4,8,["G4882"]],[8,10,["G80"]],[10,11,["(G3387)"]],[11,12,["G5103"]],[12,15,["G4122"]],[15,17,["G5209"]],[17,18,["G4043"]],[18,20,["G3756"]],[20,22,["G3588"]],[22,23,["G846"]],[23,24,["G4151"]],[24,27,["G3756"]],[27,29,["G3588"]],[29,30,["G846"]],[30,31,["G2487"]]]},{"k":29041,"v":[[0,1,["G3825"]],[1,2,["G1380"]],[2,4,["G3754"]],[4,7,["G626"]],[7,9,["G5213"]],[9,11,["G2980"]],[11,12,["G2714"]],[12,13,["G2316"]],[13,14,["G1722"]],[14,15,["G5547"]],[15,16,["G1161"]],[16,20,["G3956"]],[20,22,["G27"]],[22,23,["G5228"]],[23,24,["G5216"]],[24,25,["G3619"]]]},{"k":29042,"v":[[0,1,["G1063"]],[1,3,["G5399"]],[3,4,["G3381"]],[4,7,["G2064"]],[7,10,["G3756"]],[10,11,["G2147"]],[11,12,["G5209"]],[12,13,["G3634"]],[13,16,["G2309"]],[16,19,["G2504"]],[19,22,["G2147"]],[22,24,["G5213"]],[24,26,["G3634"]],[26,28,["G2309"]],[28,29,["G3756"]],[29,30,["G3381"]],[30,33,["G2054"]],[33,34,["G2205"]],[34,35,["G2372"]],[35,36,["G2052"]],[36,37,["G2636"]],[37,38,["G5587"]],[38,39,["G5450"]],[39,40,["G181"]]]},{"k":29043,"v":[[0,2,["G3361"]],[2,5,["G2064"]],[5,6,["G3825"]],[6,7,["G3450"]],[7,8,["G2316"]],[8,10,["G5013"]],[10,11,["G3165"]],[11,12,["G4314"]],[12,13,["G5209"]],[13,14,["G2532"]],[14,18,["G3996"]],[18,19,["G4183"]],[19,23,["G4258"]],[23,24,["G2532"]],[24,26,["G3361"]],[26,27,["G3340"]],[27,28,["G1909"]],[28,29,["G3588"]],[29,30,["G167"]],[30,31,["G2532"]],[31,32,["G4202"]],[32,33,["G2532"]],[33,34,["G766"]],[34,35,["G3739"]],[35,38,["G4238"]]]},{"k":29044,"v":[[0,1,["G5124"]],[1,5,["G5154"]],[5,8,["G2064"]],[8,9,["G4314"]],[9,10,["G5209"]],[10,11,["G1909"]],[11,13,["G4750"]],[13,15,["G1417"]],[15,16,["G2532"]],[16,17,["G5140"]],[17,18,["G3144"]],[18,20,["G3956"]],[20,21,["G4487"]],[21,23,["G2476"]]]},{"k":29045,"v":[[0,4,["G4280"]],[4,5,["G2532"]],[5,6,["G4302"]],[6,9,["G5613"]],[9,12,["G3918"]],[12,13,["G3588"]],[13,15,["G1208"]],[15,16,["G2532"]],[16,18,["G548"]],[18,19,["G3568"]],[19,21,["G1125"]],[21,27,["G4258"]],[27,28,["G2532"]],[28,30,["G3956"]],[30,31,["G3062"]],[31,32,["G3754"]],[32,33,["G1437"]],[33,35,["G2064"]],[35,36,["G3825"]],[36,39,["G3756"]],[39,40,["G5339"]]]},{"k":29046,"v":[[0,1,["G1893"]],[1,3,["G2212"]],[3,5,["G1382"]],[5,7,["G5547"]],[7,8,["G2980"]],[8,9,["G1722"]],[9,10,["G1698"]],[10,11,["G3739"]],[11,12,["G1519"]],[12,13,["G5209"]],[13,16,["G770","G3756"]],[16,17,["G235"]],[17,19,["G1414"]],[19,20,["G1722"]],[20,21,["G5213"]]]},{"k":29047,"v":[[0,1,["G1063"]],[1,2,["G2532","G1487"]],[2,5,["G4717"]],[5,6,["G1537"]],[6,7,["G769"]],[7,8,["G235"]],[8,10,["G2198"]],[10,11,["G1537"]],[11,13,["G1411"]],[13,15,["G2316"]],[15,16,["G1063"]],[16,17,["G2249"]],[17,18,["G2532"]],[18,20,["G770"]],[20,21,["G1722"]],[21,22,["G846"]],[22,23,["G235"]],[23,26,["G2198"]],[26,27,["G4862"]],[27,28,["G846"]],[28,29,["G1537"]],[29,31,["G1411"]],[31,33,["G2316"]],[33,34,["G1519"]],[34,35,["G5209"]]]},{"k":29048,"v":[[0,1,["G3985"]],[1,2,["G1438"]],[2,3,["G1487"]],[3,5,["G2075"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G4102"]],[8,9,["G1381"]],[9,12,["G1438","(G2228)"]],[12,13,["G1921"]],[13,15,["G3756"]],[15,18,["G1438","(G2228)"]],[18,20,["G3754"]],[20,21,["G2424"]],[21,22,["G5547"]],[22,23,["G2076"]],[23,24,["G1722"]],[24,25,["G5213"]],[25,26,["G1509"]],[26,28,["G2075"]],[28,29,["G96"]]]},{"k":29049,"v":[[0,1,["G1161"]],[1,3,["G1679"]],[3,4,["G3754"]],[4,7,["G1097"]],[7,8,["G3754"]],[8,9,["G2249"]],[9,10,["G2070"]],[10,11,["G3756"]],[11,12,["G96"]]]},{"k":29050,"v":[[0,1,["G1161"]],[1,3,["G2172"]],[3,4,["G4314"]],[4,5,["G2316"]],[5,7,["G5209","(G3361)"]],[7,8,["G4160"]],[8,9,["G3367"]],[9,10,["G2556"]],[10,11,["G3756"]],[11,12,["G2443"]],[12,13,["G2249"]],[13,15,["G5316"]],[15,16,["G1384"]],[16,17,["G235"]],[17,18,["G2443"]],[18,19,["G5210"]],[19,21,["G4160"]],[21,25,["G2570"]],[25,26,["G1161"]],[26,27,["G2249"]],[27,28,["G5600"]],[28,29,["G5613"]],[29,30,["G96"]]]},{"k":29051,"v":[[0,1,["G1063"]],[1,4,["G1410"]],[4,5,["G5100","G3756"]],[5,6,["G2596"]],[6,7,["G3588"]],[7,8,["G225"]],[8,9,["G235"]],[9,10,["G5228"]],[10,11,["G3588"]],[11,12,["G225"]]]},{"k":29052,"v":[[0,1,["G1063"]],[1,4,["G5463"]],[4,5,["G3752"]],[5,6,["G2249"]],[6,8,["G770"]],[8,9,["G1161"]],[9,10,["G5210"]],[10,11,["G5600"]],[11,12,["G1415"]],[12,13,["G1161"]],[13,14,["G5124"]],[14,15,["G2532"]],[15,17,["G2172"]],[17,19,["G5216"]],[19,20,["G2676"]]]},{"k":29053,"v":[[0,1,["G1223","G5124"]],[1,3,["G1125"]],[3,5,["G5023"]],[5,7,["G548"]],[7,8,["G3363"]],[8,10,["G3918"]],[10,13,["G5530"]],[13,14,["G664"]],[14,15,["G2596"]],[15,17,["G3588"]],[17,18,["G1849"]],[18,19,["G3739"]],[19,20,["G3588"]],[20,21,["G2962"]],[21,23,["G1325"]],[23,24,["G3427"]],[24,25,["G1519"]],[25,26,["G3619"]],[26,27,["G2532"]],[27,28,["G3756"]],[28,29,["G1519"]],[29,30,["G2506"]]]},{"k":29054,"v":[[0,1,["G3063"]],[1,2,["G80"]],[2,3,["G5463"]],[3,5,["G2675"]],[5,9,["G3870"]],[9,13,["G5426","G846"]],[13,16,["G1514"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G2316"]],[19,21,["G26"]],[21,22,["G2532"]],[22,23,["G1515"]],[23,25,["G2071"]],[25,26,["G3326"]],[26,27,["G5216"]]]},{"k":29055,"v":[[0,1,["G782"]],[1,3,["G240"]],[3,4,["G1722"]],[4,6,["G40"]],[6,7,["G5370"]]]},{"k":29056,"v":[[0,1,["G3956"]],[1,2,["G3588"]],[2,3,["G40"]],[3,4,["G782"]],[4,5,["G5209"]]]},{"k":29057,"v":[[0,1,["G3588"]],[1,2,["G5485"]],[2,4,["G3588"]],[4,5,["G2962"]],[5,6,["G2424"]],[6,7,["G5547"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G26"]],[10,12,["G2316"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G2842"]],[15,17,["G3588"]],[17,18,["G40"]],[18,19,["G4151"]],[19,21,["G3326"]],[21,22,["G5216"]],[22,23,["G3956"]],[23,24,["G281"]]]},{"k":29058,"v":[[0,1,["G3972"]],[1,3,["G652"]],[3,4,["G3756"]],[4,5,["G575"]],[5,6,["G444"]],[6,7,["G3761"]],[7,8,["G1223"]],[8,9,["G444"]],[9,10,["G235"]],[10,11,["G1223"]],[11,12,["G2424"]],[12,13,["G5547"]],[13,14,["G2532"]],[14,15,["G2316"]],[15,17,["G3962"]],[17,19,["G1453"]],[19,20,["G846"]],[20,21,["G1537"]],[21,23,["G3498"]]]},{"k":29059,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G80"]],[4,7,["G4862"]],[7,8,["G1698"]],[8,10,["G3588"]],[10,11,["G1577"]],[11,13,["G1053"]]]},{"k":29060,"v":[[0,1,["G5485"]],[1,4,["G5213"]],[4,5,["G2532"]],[5,6,["G1515"]],[6,7,["G575"]],[7,8,["G2316"]],[8,10,["G3962"]],[10,11,["G2532"]],[11,13,["G2257"]],[13,14,["G2962"]],[14,15,["G2424"]],[15,16,["G5547"]]]},{"k":29061,"v":[[0,2,["G1325"]],[2,3,["G1438"]],[3,4,["G5228"]],[4,5,["G2257"]],[5,6,["G266"]],[6,7,["G3704"]],[7,10,["G1807"]],[10,11,["G2248"]],[11,12,["G1537"]],[12,14,["G1764"]],[14,15,["G4190"]],[15,16,["G165"]],[16,17,["G2596"]],[17,19,["G3588"]],[19,20,["G2307"]],[20,22,["G2316"]],[22,23,["G2532"]],[23,24,["G2257"]],[24,25,["G3962"]]]},{"k":29062,"v":[[0,2,["G3739"]],[2,4,["G1391"]],[4,8,["G1519","G165","G165"]],[8,9,["G281"]]]},{"k":29063,"v":[[0,2,["G2296"]],[2,3,["G3754"]],[3,6,["G3779"]],[6,7,["G5030"]],[7,8,["G3346"]],[8,9,["G575"]],[9,12,["G2564"]],[12,13,["G5209"]],[13,14,["G1722"]],[14,16,["G5485"]],[16,18,["G5547"]],[18,19,["G1519"]],[19,20,["G2087"]],[20,21,["G2098"]]]},{"k":29064,"v":[[0,1,["G3739"]],[1,2,["G2076"]],[2,3,["G3756"]],[3,4,["G243"]],[4,5,["G1508"]],[5,7,["G1526"]],[7,8,["G5100"]],[8,10,["G5015"]],[10,11,["G5209"]],[11,12,["G2532"]],[12,13,["G2309"]],[13,14,["G3344"]],[14,15,["G3588"]],[15,16,["G2098"]],[16,18,["G5547"]]]},{"k":29065,"v":[[0,1,["G235"]],[1,2,["G2532","G1437"]],[2,3,["G2249"]],[3,4,["G2228"]],[4,6,["G32"]],[6,7,["G1537"]],[7,8,["G3772"]],[8,12,["G2097"]],[12,14,["G5213"]],[14,15,["G3844"]],[15,16,["G3739"]],[16,20,["G2097"]],[20,22,["G5213"]],[22,25,["G2077"]],[25,26,["G331"]]]},{"k":29066,"v":[[0,1,["G5613"]],[1,4,["G4280"]],[4,5,["G2532"]],[5,6,["G3004"]],[6,8,["G737"]],[8,9,["G3825"]],[9,11,["G1536"]],[11,16,["G2097"]],[16,18,["G5209"]],[18,19,["G3844"]],[19,20,["G3739"]],[20,23,["G3880"]],[23,26,["G2077"]],[26,27,["G331"]]]},{"k":29067,"v":[[0,1,["G1063"]],[1,4,["G737"]],[4,5,["G3982"]],[5,6,["G444"]],[6,7,["G2228"]],[7,8,["G2316"]],[8,9,["G2228"]],[9,12,["G2212"]],[12,14,["G700"]],[14,15,["G444"]],[15,16,["G1063"]],[16,17,["G1487"]],[17,19,["G2089"]],[19,20,["G700"]],[20,21,["G444"]],[21,24,["G3756"]],[24,25,["G2252","G302"]],[25,27,["G1401"]],[27,29,["G5547"]]]},{"k":29068,"v":[[0,1,["G1161"]],[1,3,["G1107"]],[3,4,["G5213"]],[4,5,["G80"]],[5,7,["G3588"]],[7,8,["G2098"]],[8,11,["G2097"]],[11,12,["G5259"]],[12,13,["G1700"]],[13,14,["G2076"]],[14,15,["G3756"]],[15,16,["G2596"]],[16,17,["G444"]]]},{"k":29069,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,3,["G3761"]],[3,4,["G3880"]],[4,5,["G846"]],[5,6,["G3844"]],[6,7,["G444"]],[7,8,["G3777"]],[8,11,["G1321"]],[11,13,["G235"]],[13,14,["G1223"]],[14,16,["G602"]],[16,18,["G2424"]],[18,19,["G5547"]]]},{"k":29070,"v":[[0,1,["G1063"]],[1,4,["G191"]],[4,6,["G1699"]],[6,7,["G391"]],[7,10,["G4218"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,14,["G2454"]],[14,16,["G3754"]],[16,18,["G2596","G5236"]],[18,20,["G1377"]],[20,21,["G3588"]],[21,22,["G1577"]],[22,24,["G2316"]],[24,25,["G2532"]],[25,26,["G4199"]],[26,27,["G846"]]]},{"k":29071,"v":[[0,1,["G2532"]],[1,2,["G4298"]],[2,3,["G1722"]],[3,4,["G3588"]],[4,6,["G2454"]],[6,7,["G5228"]],[7,8,["G4183"]],[8,10,["G4915"]],[10,11,["G1722"]],[11,13,["G3450"]],[13,14,["G1085"]],[14,15,["G5225"]],[15,17,["G4056"]],[17,18,["G2207"]],[18,21,["G3862"]],[21,23,["G3450"]],[23,24,["G3967"]]]},{"k":29072,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,4,["G2106"]],[4,5,["G2316"]],[5,7,["G873"]],[7,8,["G3165"]],[8,9,["G1537"]],[9,10,["G3450"]],[10,11,["G3384"]],[11,12,["G2836"]],[12,13,["G2532"]],[13,14,["G2564"]],[14,16,["G1223"]],[16,17,["G848"]],[17,18,["G5485"]]]},{"k":29073,"v":[[0,2,["G601"]],[2,3,["G848"]],[3,4,["G5207"]],[4,5,["G1722"]],[5,6,["G1698"]],[6,7,["G2443"]],[7,10,["G2097"]],[10,11,["G846"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G1484"]],[14,15,["G2112"]],[15,17,["G4323"]],[17,18,["G3756"]],[18,20,["G4561"]],[20,21,["G2532"]],[21,22,["G129"]]]},{"k":29074,"v":[[0,1,["G3761"]],[1,4,["G424"]],[4,5,["G1519"]],[5,6,["G2414"]],[6,7,["G4314"]],[7,11,["G652"]],[11,12,["G4253"]],[12,13,["G1700"]],[13,14,["G235"]],[14,16,["G565"]],[16,17,["G1519"]],[17,18,["G688"]],[18,19,["G2532"]],[19,20,["G5290"]],[20,21,["G3825"]],[21,22,["G1519"]],[22,23,["G1154"]]]},{"k":29075,"v":[[0,1,["G1899"]],[1,2,["G3326"]],[2,3,["G5140"]],[3,4,["G2094"]],[4,7,["G424"]],[7,8,["G1519"]],[8,9,["G2414"]],[9,11,["G2477"]],[11,12,["G4074"]],[12,13,["G2532"]],[13,14,["G1961"]],[14,15,["G4314"]],[15,16,["G846"]],[16,17,["G1178"]],[17,18,["G2250"]]]},{"k":29076,"v":[[0,1,["G1161"]],[1,2,["G2087"]],[2,4,["G3588"]],[4,5,["G652"]],[5,6,["G1492"]],[6,8,["G3756"]],[8,9,["G1508"]],[9,10,["G2385"]],[10,11,["G3588"]],[11,12,["G2962"]],[12,13,["G80"]]]},{"k":29077,"v":[[0,1,["G1161"]],[1,4,["G3739"]],[4,6,["G1125"]],[6,8,["G5213"]],[8,9,["G2400"]],[9,10,["G1799"]],[10,12,["G2316","(G3754)"]],[12,13,["G5574"]],[13,14,["G3756"]]]},{"k":29078,"v":[[0,1,["G1899"]],[1,3,["G2064"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G2824"]],[6,8,["G4947"]],[8,9,["G2532"]],[9,10,["G2791"]]]},{"k":29079,"v":[[0,1,["G1161"]],[1,2,["G2252"]],[2,3,["G50"]],[3,5,["G4383"]],[5,7,["G3588"]],[7,8,["G1577"]],[8,10,["G2449"]],[10,11,["G3588"]],[11,13,["G1722"]],[13,14,["G5547"]]]},{"k":29080,"v":[[0,1,["G1161"]],[1,3,["G2258"]],[3,4,["G191"]],[4,5,["G3440"]],[5,6,["G3754"]],[6,9,["G1377"]],[9,10,["G2248"]],[10,13,["G4218"]],[13,14,["G3568"]],[14,15,["G2097"]],[15,16,["G3588"]],[16,17,["G4102"]],[17,18,["G3739"]],[18,19,["G4218"]],[19,21,["G4199"]]]},{"k":29081,"v":[[0,1,["G2532"]],[1,3,["G1392"]],[3,4,["G2316"]],[4,5,["G1722"]],[5,6,["G1698"]]]},{"k":29082,"v":[[0,1,["G1899"]],[1,2,["G1180"]],[2,3,["G2094"]],[3,4,["G1223"]],[4,7,["G305"]],[7,8,["G3825"]],[8,9,["G1519"]],[9,10,["G2414"]],[10,11,["G3326"]],[11,12,["G921"]],[12,16,["G4838","G5103"]],[16,18,["G2532"]]]},{"k":29083,"v":[[0,1,["G1161"]],[1,4,["G305"]],[4,5,["G2596"]],[5,6,["G602"]],[6,7,["G2532"]],[7,8,["G394"]],[8,10,["G846"]],[10,12,["G2098"]],[12,13,["G3739"]],[13,15,["G2784"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G1484"]],[18,19,["G1161"]],[19,20,["G2596","G2398"]],[20,26,["G1380"]],[26,30,["G3381"]],[30,33,["G5143"]],[33,34,["G2228"]],[34,36,["G5143"]],[36,37,["G1519"]],[37,38,["G2756"]]]},{"k":29084,"v":[[0,1,["G235"]],[1,2,["G3761"]],[2,3,["G5103"]],[3,4,["G3588"]],[4,6,["G4862"]],[6,7,["G1698"]],[7,8,["G5607"]],[8,10,["G1672"]],[10,12,["G315"]],[12,15,["G4059"]]]},{"k":29085,"v":[[0,1,["G1161"]],[1,3,["G1223"]],[3,6,["G5569"]],[6,9,["G3920"]],[9,10,["G3748"]],[10,13,["G3922"]],[13,16,["G2684"]],[16,17,["G2257"]],[17,18,["G1657"]],[18,19,["G3739"]],[19,21,["G2192"]],[21,22,["G1722"]],[22,23,["G5547"]],[23,24,["G2424"]],[24,25,["G2443"]],[25,31,["G2615","G2248"]]]},{"k":29086,"v":[[0,2,["G3739"]],[2,5,["G1502"]],[5,7,["G5292"]],[7,9,["G3761"]],[9,10,["G4314"]],[10,12,["G5610"]],[12,13,["G2443"]],[13,14,["G3588"]],[14,15,["G225"]],[15,17,["G3588"]],[17,18,["G2098"]],[18,20,["G1265"]],[20,21,["G4314"]],[21,22,["G5209"]]]},{"k":29087,"v":[[0,1,["G1161"]],[1,2,["G575"]],[2,3,["G3588"]],[3,5,["G1380"]],[5,7,["G1511"]],[7,8,["G5100"]],[8,9,["G3697","G4218"]],[9,11,["G2258"]],[11,15,["G1308","G3762"]],[15,17,["G3427"]],[17,18,["G2316"]],[18,19,["G2983"]],[19,20,["G3756"]],[20,21,["G444"]],[21,22,["G4383"]],[22,23,["G1063"]],[23,26,["G1380"]],[26,32,["G4323"]],[32,33,["G3762"]],[33,35,["G1698"]]]},{"k":29088,"v":[[0,1,["G235"]],[1,2,["G5121"]],[2,5,["G1492"]],[5,6,["G3754"]],[6,7,["G3588"]],[7,8,["G2098"]],[8,10,["G3588"]],[10,11,["G203"]],[11,13,["G4100"]],[13,16,["G2531"]],[16,20,["G3588"]],[20,21,["G4061"]],[21,24,["G4074"]]]},{"k":29089,"v":[[0,1,["G1063"]],[1,5,["G1754"]],[5,7,["G4074"]],[7,8,["G1519"]],[8,10,["G651"]],[10,12,["G3588"]],[12,13,["G4061"]],[13,17,["G1754"]],[17,18,["(G2532)"]],[18,19,["G1698"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G1484"]]]},{"k":29090,"v":[[0,1,["G2532"]],[1,3,["G2385","(G2532)"]],[3,4,["G2786"]],[4,5,["G2532"]],[5,6,["G2491"]],[6,8,["G1380"]],[8,10,["G1511"]],[10,11,["G4769"]],[11,12,["G1097"]],[12,13,["G3588"]],[13,14,["G5485"]],[14,17,["G1325"]],[17,19,["G3427"]],[19,21,["G1325"]],[21,23,["G1698"]],[23,24,["G2532"]],[24,25,["G921"]],[25,28,["G1188"]],[28,30,["G2842"]],[30,31,["G2443"]],[31,32,["G2249"]],[32,35,["G1519"]],[35,36,["G3588"]],[36,37,["G1484"]],[37,38,["G1161"]],[38,39,["G846"]],[39,40,["G1519"]],[40,41,["G3588"]],[41,42,["G4061"]]]},{"k":29091,"v":[[0,1,["G3440"]],[1,4,["G2443"]],[4,7,["G3421"]],[7,8,["G3588"]],[8,9,["G4434"]],[9,11,["G846","G5124"]],[11,12,["G3739"]],[12,14,["G2532"]],[14,16,["G4704"]],[16,18,["G4160"]]]},{"k":29092,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,3,["G4074"]],[3,5,["G2064"]],[5,6,["G1519"]],[6,7,["G490"]],[7,9,["G436"]],[9,10,["G846"]],[10,11,["G2596"]],[11,13,["G4383"]],[13,14,["G3754"]],[14,16,["G2258"]],[16,19,["G2607"]]]},{"k":29093,"v":[[0,1,["G1063"]],[1,4,["G5100"]],[4,5,["G2064"]],[5,6,["G575"]],[6,7,["G2385"]],[7,10,["G4906"]],[10,11,["G3326"]],[11,12,["G3588"]],[12,13,["G1484"]],[13,14,["G1161"]],[14,15,["G3753"]],[15,18,["G2064"]],[18,20,["G5288"]],[20,21,["G2532"]],[21,22,["G873"]],[22,23,["G1438"]],[23,24,["G5399"]],[24,25,["G3588"]],[25,28,["G1537"]],[28,30,["G4061"]]]},{"k":29094,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3062"]],[3,4,["G2453"]],[4,7,["G4942","G2532"]],[7,8,["G846"]],[8,10,["G5620"]],[10,11,["G921"]],[11,12,["G2532"]],[12,16,["G4879"]],[16,17,["G846"]],[17,18,["G5272"]]]},{"k":29095,"v":[[0,1,["G235"]],[1,2,["G3753"]],[2,4,["G1492"]],[4,5,["G3754"]],[5,9,["G3716","G3756"]],[9,10,["G4314"]],[10,12,["G3588"]],[12,13,["G225"]],[13,15,["G3588"]],[15,16,["G2098"]],[16,18,["G2036"]],[18,20,["G4074"]],[20,21,["G1715"]],[21,23,["G3956"]],[23,24,["G1487"]],[24,25,["G4771"]],[25,26,["G5225"]],[26,28,["G2453"]],[28,29,["G2198"]],[29,34,["G1483"]],[34,35,["G2532"]],[35,36,["G3756"]],[36,40,["G2452"]],[40,41,["G5101"]],[41,42,["G315"]],[42,44,["G3588"]],[44,45,["G1484"]],[45,51,["G2450"]]]},{"k":29096,"v":[[0,1,["G2249"]],[1,4,["G2453"]],[4,6,["G5449"]],[6,7,["G2532"]],[7,8,["G3756"]],[8,9,["G268"]],[9,10,["G1537"]],[10,12,["G1484"]]]},{"k":29097,"v":[[0,1,["G1492"]],[1,2,["G3754"]],[2,4,["G444"]],[4,6,["G3756"]],[6,7,["G1344"]],[7,8,["G1537"]],[8,10,["G2041"]],[10,13,["G3551"]],[13,14,["G3362"]],[14,15,["G1223"]],[15,17,["G4102"]],[17,19,["G2424"]],[19,20,["G5547"]],[20,21,["G2532"]],[21,22,["G2249"]],[22,24,["G4100"]],[24,25,["G1519"]],[25,26,["G2424"]],[26,27,["G5547"]],[27,28,["G2443"]],[28,32,["G1344"]],[32,33,["G1537"]],[33,35,["G4102"]],[35,37,["G5547"]],[37,38,["G2532"]],[38,39,["G3756"]],[39,40,["G1537"]],[40,42,["G2041"]],[42,45,["G3551"]],[45,46,["G1360"]],[46,47,["G1537"]],[47,49,["G2041"]],[49,52,["G3551"]],[52,54,["G3756"]],[54,55,["G4561"]],[55,57,["G1344"]]]},{"k":29098,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,5,["G2212"]],[5,8,["G1344"]],[8,9,["G1722"]],[9,10,["G5547"]],[10,11,["G846"]],[11,13,["G2532"]],[13,15,["G2147"]],[15,16,["G268"]],[16,18,["G687"]],[18,19,["G5547"]],[19,21,["G1249"]],[21,23,["G266"]],[23,25,["G1096","G3361"]]]},{"k":29099,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,4,["G3618"]],[4,5,["G3825"]],[5,7,["G5023"]],[7,8,["G3739"]],[8,10,["G2647"]],[10,12,["G4921"]],[12,13,["G1683"]],[13,15,["G3848"]]]},{"k":29100,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,3,["G1223"]],[3,5,["G3551"]],[5,7,["G599"]],[7,10,["G3551"]],[10,11,["G2443"]],[11,14,["G2198"]],[14,16,["G2316"]]]},{"k":29101,"v":[[0,4,["G4957"]],[4,5,["G5547"]],[5,6,["G1161"]],[6,8,["G2198"]],[8,10,["G3765"]],[10,11,["G1473"]],[11,12,["G1161"]],[12,13,["G5547"]],[13,14,["G2198"]],[14,15,["G1722"]],[15,16,["G1698"]],[16,17,["G1161"]],[17,20,["G3739"]],[20,22,["G3568"]],[22,23,["G2198"]],[23,24,["G1722"]],[24,26,["G4561"]],[26,28,["G2198"]],[28,29,["G1722"]],[29,31,["G4102"]],[31,32,["(G3588)"]],[32,33,["G3588"]],[33,34,["G5207"]],[34,36,["G2316"]],[36,38,["G25"]],[38,39,["G3165"]],[39,40,["G2532"]],[40,41,["G3860"]],[41,42,["G1438"]],[42,43,["G5228"]],[43,44,["G1700"]]]},{"k":29102,"v":[[0,3,["G3756"]],[3,4,["G114"]],[4,5,["G3588"]],[5,6,["G5485"]],[6,8,["G2316"]],[8,9,["G1063"]],[9,10,["G1487"]],[10,11,["G1343"]],[11,13,["G1223"]],[13,15,["G3551"]],[15,16,["G686"]],[16,17,["G5547"]],[17,19,["G599"]],[19,21,["G1432"]]]},{"k":29103,"v":[[0,1,["G5599"]],[1,2,["G453"]],[2,3,["G1052"]],[3,4,["G5101"]],[4,6,["G940"]],[6,7,["G5209"]],[7,11,["G3361"]],[11,12,["G3982"]],[12,13,["G3588"]],[13,14,["G225"]],[14,15,["G2596"]],[15,16,["G3739"]],[16,17,["G3788"]],[17,18,["G2424"]],[18,19,["G5547"]],[19,24,["G4270"]],[24,25,["G4717"]],[25,26,["G1722"]],[26,27,["G5213"]]]},{"k":29104,"v":[[0,1,["G5124"]],[1,2,["G3440"]],[2,3,["G2309"]],[3,5,["G3129"]],[5,6,["G575"]],[6,7,["G5216"]],[7,8,["G2983"]],[8,10,["G3588"]],[10,11,["G4151"]],[11,12,["G1537"]],[12,14,["G2041"]],[14,17,["G3551"]],[17,18,["G2228"]],[18,19,["G1537"]],[19,21,["G189"]],[21,23,["G4102"]]]},{"k":29105,"v":[[0,1,["G2075"]],[1,3,["G3779"]],[3,4,["G453"]],[4,6,["G1728"]],[6,9,["G4151"]],[9,12,["G3568"]],[12,14,["G2005"]],[14,17,["G4561"]]]},{"k":29106,"v":[[0,3,["G3958"]],[3,6,["G5118"]],[6,8,["G1500"]],[8,9,["G1489"]],[9,12,["G2532"]],[12,14,["G1500"]]]},{"k":29107,"v":[[0,4,["G2023","G3767"]],[4,6,["G5213"]],[6,7,["G3588"]],[7,8,["G4151"]],[8,9,["G2532"]],[9,10,["G1754"]],[10,11,["G1411"]],[11,12,["G1722"]],[12,13,["G5213"]],[13,17,["G1537"]],[17,19,["G2041"]],[19,22,["G3551"]],[22,23,["G2228"]],[23,24,["G1537"]],[24,26,["G189"]],[26,28,["G4102"]]]},{"k":29108,"v":[[0,2,["G2531"]],[2,3,["G11"]],[3,4,["G4100"]],[4,5,["G2316"]],[5,6,["G2532"]],[6,9,["G3049"]],[9,11,["G846"]],[11,12,["G1519"]],[12,13,["G1343"]]]},{"k":29109,"v":[[0,1,["G1097"]],[1,3,["G686"]],[3,4,["G3754"]],[4,5,["G3588"]],[5,8,["G1537"]],[8,9,["G4102"]],[9,11,["G3778"]],[11,12,["G1526"]],[12,14,["G5207"]],[14,16,["G11"]]]},{"k":29110,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1124"]],[3,4,["G4275"]],[4,5,["G3754"]],[5,6,["G2316"]],[6,8,["G1344"]],[8,9,["G3588"]],[9,10,["G1484"]],[10,11,["G1537"]],[11,12,["G4102"]],[12,16,["G4283"]],[16,18,["G11"]],[18,20,["G1722"]],[20,21,["G4671"]],[21,23,["G3956"]],[23,24,["G1484"]],[24,26,["G1757"]]]},{"k":29111,"v":[[0,2,["G5620"]],[2,3,["G3588"]],[3,6,["G1537"]],[6,7,["G4102"]],[7,9,["G2127"]],[9,10,["G4862"]],[10,11,["G4103"]],[11,12,["G11"]]]},{"k":29112,"v":[[0,1,["G1063"]],[1,4,["G3745"]],[4,5,["G1526"]],[5,6,["G1537"]],[6,8,["G2041"]],[8,11,["G3551"]],[11,12,["G1526"]],[12,13,["G5259"]],[13,15,["G2671"]],[15,16,["G1063"]],[16,19,["G1125"]],[19,20,["G1944"]],[20,23,["G3956"]],[23,24,["G3739"]],[24,25,["G1696"]],[25,26,["G3756"]],[26,27,["G1722"]],[27,29,["G3956"]],[29,32,["G1125"]],[32,33,["G1722"]],[33,34,["G3588"]],[34,35,["G975"]],[35,37,["G3588"]],[37,38,["G3551"]],[38,40,["G4160"]],[40,41,["G846"]]]},{"k":29113,"v":[[0,1,["G1161"]],[1,2,["G3754"]],[2,4,["G3762"]],[4,6,["G1344"]],[6,7,["G1722"]],[7,9,["G3551"]],[9,12,["G3844"]],[12,14,["G2316"]],[14,17,["G1212"]],[17,18,["G3754"]],[18,19,["G3588"]],[19,20,["G1342"]],[20,22,["G2198"]],[22,23,["G1537"]],[23,24,["G4102"]]]},{"k":29114,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3551"]],[3,4,["G2076"]],[4,5,["G3756"]],[5,6,["G1537"]],[6,7,["G4102"]],[7,8,["G235"]],[8,9,["G3588"]],[9,10,["G444"]],[10,12,["G4160"]],[12,13,["G846"]],[13,15,["G2198"]],[15,16,["G1722"]],[16,17,["G846"]]]},{"k":29115,"v":[[0,1,["G5547"]],[1,3,["G1805"]],[3,4,["G2248"]],[4,5,["G1537"]],[5,6,["G3588"]],[6,7,["G2671"]],[7,9,["G3588"]],[9,10,["G3551"]],[10,12,["G1096"]],[12,14,["G2671"]],[14,15,["G5228"]],[15,16,["G2257"]],[16,17,["G1063"]],[17,20,["G1125"]],[20,21,["G1944"]],[21,24,["G3956"]],[24,26,["G2910"]],[26,27,["G1909"]],[27,29,["G3586"]]]},{"k":29116,"v":[[0,1,["G2443"]],[1,2,["G3588"]],[2,3,["G2129"]],[3,5,["G11"]],[5,7,["G1096"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G1484"]],[10,11,["G1722"]],[11,12,["G2424"]],[12,13,["G5547"]],[13,14,["G2443"]],[14,17,["G2983"]],[17,18,["G3588"]],[18,19,["G1860"]],[19,21,["G3588"]],[21,22,["G4151"]],[22,23,["G1223"]],[23,24,["G4102"]]]},{"k":29117,"v":[[0,1,["G80"]],[1,3,["G3004"]],[3,6,["G2596"]],[6,8,["G444"]],[8,9,["G3676"]],[9,14,["G444"]],[14,15,["G1242"]],[15,20,["G2964"]],[20,22,["G3762"]],[22,23,["G114"]],[23,24,["G2228"]],[24,26,["G1928"]]]},{"k":29118,"v":[[0,1,["G1161"]],[1,3,["G11"]],[3,4,["G2532"]],[4,5,["G846"]],[5,6,["G4690"]],[6,8,["G3588"]],[8,9,["G1860"]],[9,10,["G4483"]],[10,12,["G3004"]],[12,13,["G3756"]],[13,14,["G2532"]],[14,16,["G4690"]],[16,17,["G5613"]],[17,18,["G1909"]],[18,19,["G4183"]],[19,20,["G235"]],[20,21,["G5613"]],[21,22,["G1909"]],[22,23,["G1520"]],[23,24,["G2532"]],[24,26,["G4675"]],[26,27,["G4690"]],[27,28,["G3739"]],[28,29,["G2076"]],[29,30,["G5547"]]]},{"k":29119,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,4,["G3004"]],[4,7,["G1242"]],[7,11,["G4300"]],[11,12,["G5259"]],[12,13,["G2316"]],[13,14,["G1519"]],[14,15,["G5547"]],[15,16,["G3588"]],[16,17,["G3551"]],[17,19,["G1096"]],[19,21,["G5071"]],[21,22,["G2532"]],[22,23,["G5144"]],[23,24,["G2094"]],[24,25,["G3326"]],[25,27,["G208","G3756"]],[27,36,["G2673","G3588","G1860"]]]},{"k":29120,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G2817"]],[4,6,["G1537"]],[6,8,["G3551"]],[8,12,["G3765"]],[12,13,["G1537"]],[13,14,["G1860"]],[14,15,["G1161"]],[15,16,["G2316"]],[16,17,["G5483"]],[17,20,["G11"]],[20,21,["G1223"]],[21,22,["G1860"]]]},{"k":29121,"v":[[0,1,["G5101"]],[1,2,["G3767"]],[2,4,["G3588"]],[4,5,["G3551"]],[5,8,["G4369"]],[8,9,["G5484"]],[9,11,["G3847"]],[11,12,["G891","G3757"]],[12,13,["G3588"]],[13,14,["G4690"]],[14,16,["G2064"]],[16,18,["G3739"]],[18,22,["G1861"]],[22,26,["G1299"]],[26,27,["G1223"]],[27,28,["G32"]],[28,29,["G1722"]],[29,31,["G5495"]],[31,34,["G3316"]]]},{"k":29122,"v":[[0,1,["G1161"]],[1,3,["G3316"]],[3,4,["G2076"]],[4,5,["G3756"]],[5,9,["G1520"]],[9,10,["G1161"]],[10,11,["G2316"]],[11,12,["G2076"]],[12,13,["G1520"]]]},{"k":29123,"v":[[0,2,["G3588"]],[2,3,["G3551"]],[3,4,["G3767"]],[4,5,["G2596"]],[5,6,["G3588"]],[6,7,["G1860"]],[7,9,["G2316"]],[9,11,["G1096","G3361"]],[11,12,["G1063"]],[12,13,["G1487"]],[13,18,["G3551"]],[18,19,["G1325"]],[19,21,["G1410"]],[21,24,["G2227"]],[24,25,["G3689","G302"]],[25,26,["G1343"]],[26,29,["G2258"]],[29,30,["G1537"]],[30,32,["G3551"]]]},{"k":29124,"v":[[0,1,["G235"]],[1,2,["G3588"]],[2,3,["G1124"]],[3,5,["G4788"]],[5,6,["G3956"]],[6,7,["G5259"]],[7,8,["G266"]],[8,9,["G2443"]],[9,10,["G3588"]],[10,11,["G1860"]],[11,12,["G1537"]],[12,13,["G4102"]],[13,15,["G2424"]],[15,16,["G5547"]],[16,19,["G1325"]],[19,23,["G4100"]]]},{"k":29125,"v":[[0,1,["G1161"]],[1,3,["G4102"]],[3,4,["G2064"]],[4,7,["G5432"]],[7,8,["G5259"]],[8,10,["G3551"]],[10,12,["G4788"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G4102"]],[15,18,["G3195"]],[18,20,["G601"]]]},{"k":29126,"v":[[0,1,["G5620"]],[1,2,["G3588"]],[2,3,["G3551"]],[3,4,["G1096"]],[4,5,["G2257"]],[5,6,["G3807"]],[6,10,["G1519"]],[10,11,["G5547"]],[11,12,["G2443"]],[12,16,["G1344"]],[16,17,["G1537"]],[17,18,["G4102"]]]},{"k":29127,"v":[[0,1,["G1161"]],[1,4,["G4102"]],[4,6,["G2064"]],[6,8,["G2070"]],[8,10,["G3765"]],[10,11,["G5259"]],[11,13,["G3807"]]]},{"k":29128,"v":[[0,1,["G1063"]],[1,3,["G2075"]],[3,4,["G3956"]],[4,6,["G5207"]],[6,8,["G2316"]],[8,9,["G1223"]],[9,10,["G4102"]],[10,11,["G1722"]],[11,12,["G5547"]],[12,13,["G2424"]]]},{"k":29129,"v":[[0,1,["G1063"]],[1,3,["G3745"]],[3,9,["G907"]],[9,10,["G1519"]],[10,11,["G5547"]],[11,14,["G1746"]],[14,15,["G5547"]]]},{"k":29130,"v":[[0,2,["G1762"]],[2,3,["G3756"]],[3,4,["G2453"]],[4,5,["G3761"]],[5,6,["G1672"]],[6,8,["G1762"]],[8,9,["G3756"]],[9,10,["G1401"]],[10,11,["G3761"]],[11,12,["G1658"]],[12,14,["G1762"]],[14,15,["G3756"]],[15,16,["G730"]],[16,17,["G2532"]],[17,18,["G2338"]],[18,19,["G1063"]],[19,20,["G5210"]],[20,21,["G2075"]],[21,22,["G3956"]],[22,23,["G1520"]],[23,24,["G1722"]],[24,25,["G5547"]],[25,26,["G2424"]]]},{"k":29131,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5210"]],[3,5,["G5547"]],[5,6,["G686"]],[6,7,["G2075"]],[7,9,["G11"]],[9,10,["G4690"]],[10,11,["G2532"]],[11,12,["G2818"]],[12,13,["G2596"]],[13,16,["G1860"]]]},{"k":29132,"v":[[0,1,["G1161"]],[1,3,["G3004"]],[3,5,["G3588"]],[5,6,["G2818"]],[6,9,["G3745"]],[9,10,["(G5550)"]],[10,11,["G2076"]],[11,13,["G3516"]],[13,14,["G1308"]],[14,15,["G3762"]],[15,18,["G1401"]],[18,21,["G5607"]],[21,22,["G2962"]],[22,24,["G3956"]]]},{"k":29133,"v":[[0,1,["G235"]],[1,2,["G2076"]],[2,3,["G5259"]],[3,4,["G2012"]],[4,5,["G2532"]],[5,6,["G3623"]],[6,7,["G891"]],[7,8,["G3588"]],[8,10,["G4287"]],[10,12,["G3588"]],[12,13,["G3962"]]]},{"k":29134,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,3,["G2249"]],[3,4,["G3753"]],[4,6,["G2258"]],[6,7,["G3516"]],[7,8,["G2258"]],[8,10,["G1402"]],[10,11,["G5259"]],[11,12,["G3588"]],[12,13,["G4747"]],[13,15,["G3588"]],[15,16,["G2889"]]]},{"k":29135,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,3,["G3588"]],[3,4,["G4138"]],[4,6,["G3588"]],[6,7,["G5550"]],[7,9,["G2064"]],[9,10,["G2316"]],[10,12,["G1821"]],[12,13,["G848"]],[13,14,["G5207"]],[14,15,["G1096"]],[15,16,["G1537"]],[16,18,["G1135"]],[18,19,["G1096"]],[19,20,["G5259"]],[20,22,["G3551"]]]},{"k":29136,"v":[[0,1,["G2443"]],[1,2,["G1805"]],[2,3,["G3588"]],[3,6,["G5259"]],[6,8,["G3551"]],[8,9,["G2443"]],[9,12,["G618"]],[12,13,["G3588"]],[13,16,["G5206"]]]},{"k":29137,"v":[[0,1,["G1161"]],[1,2,["G3754"]],[2,4,["G2075"]],[4,5,["G5207"]],[5,6,["G2316"]],[6,9,["G1821"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,13,["G848"]],[13,14,["G5207"]],[14,15,["G1519"]],[15,16,["G5216"]],[16,17,["G2588"]],[17,18,["G2896"]],[18,19,["G5"]],[19,20,["G3962"]]]},{"k":29138,"v":[[0,1,["G5620"]],[1,3,["G1488"]],[3,5,["G3765"]],[5,7,["G1401"]],[7,8,["G235"]],[8,10,["G5207"]],[10,11,["G1161"]],[11,12,["G1487"]],[12,14,["G5207"]],[14,15,["G2532"]],[15,17,["G2818"]],[17,19,["G2316"]],[19,20,["G1223"]],[20,21,["G5547"]]]},{"k":29139,"v":[[0,1,["G235"]],[1,2,["G5119"]],[2,3,["(G3303)"]],[3,5,["G1492"]],[5,6,["G3756"]],[6,7,["G2316"]],[7,10,["G1398"]],[10,15,["G5449"]],[15,16,["G5607"]],[16,17,["G3361"]],[17,18,["G2316"]]]},{"k":29140,"v":[[0,1,["G1161"]],[1,2,["G3568"]],[2,7,["G1097"]],[7,8,["G2316"]],[8,9,["G1161"]],[9,10,["G3123"]],[10,12,["G1097"]],[12,13,["G5259"]],[13,14,["G2316"]],[14,15,["G4459"]],[15,16,["G1994"]],[16,18,["G3825"]],[18,19,["G1909"]],[19,20,["G3588"]],[20,21,["G772"]],[21,22,["G2532"]],[22,23,["G4434"]],[23,24,["G4747"]],[24,25,["G3739"]],[25,26,["(G3825)"]],[26,27,["G2309"]],[27,28,["G509"]],[28,32,["G1398"]]]},{"k":29141,"v":[[0,2,["G3906"]],[2,3,["G2250"]],[3,4,["G2532"]],[4,5,["G3376"]],[5,6,["G2532"]],[6,7,["G2540"]],[7,8,["G2532"]],[8,9,["G1763"]]]},{"k":29142,"v":[[0,3,["G5399"]],[3,5,["G5209"]],[5,6,["G3381"]],[6,12,["G2872","G1519","G5209"]],[12,14,["G1500"]]]},{"k":29143,"v":[[0,1,["G80"]],[1,3,["G1189"]],[3,4,["G5216"]],[4,5,["G1096"]],[5,6,["G5613"]],[6,7,["G1473"]],[7,9,["G3754"]],[9,10,["G2504"]],[10,12,["G5613"]],[12,13,["G5210"]],[13,21,["G3762","G91","G3165"]]]},{"k":29144,"v":[[0,1,["(G1161)"]],[1,2,["G1492"]],[2,3,["G3754"]],[3,4,["G1223"]],[4,5,["G769"]],[5,7,["G3588"]],[7,8,["G4561"]],[8,12,["G2097"]],[12,14,["G5213"]],[14,17,["G4386"]]]},{"k":29145,"v":[[0,1,["G2532"]],[1,2,["G3450"]],[2,3,["G3986"]],[3,4,["G3588"]],[4,6,["G1722"]],[6,7,["G3450"]],[7,8,["G4561"]],[8,10,["G1848"]],[10,11,["G3756"]],[11,12,["G3761"]],[12,13,["G1609"]],[13,14,["G235"]],[14,15,["G1209"]],[15,16,["G3165"]],[16,17,["G5613"]],[17,19,["G32"]],[19,21,["G2316"]],[21,23,["G5613"]],[23,24,["G5547"]],[24,25,["G2424"]]]},{"k":29146,"v":[[0,1,["G5101"]],[1,2,["G2258"]],[2,3,["G3767"]],[3,4,["G3588"]],[4,5,["G3108"]],[5,6,["G5216"]],[6,9,["G1063"]],[9,13,["G3140","G5213"]],[13,14,["G3754"]],[14,15,["G1487"]],[15,19,["G1415"]],[19,24,["G1846","G302"]],[24,26,["G5216"]],[26,27,["G3788"]],[27,30,["G1325"]],[30,33,["G3427"]]]},{"k":29147,"v":[[0,3,["G5620"]],[3,4,["G1096"]],[4,5,["G5216"]],[5,6,["G2190"]],[6,12,["G226","G5213"]]]},{"k":29148,"v":[[0,3,["G2206"]],[3,4,["G5209"]],[4,6,["G3756"]],[6,7,["G2573"]],[7,8,["G235"]],[8,10,["G2309"]],[10,11,["G1576"]],[11,12,["G5209"]],[12,13,["G2443"]],[13,16,["G2206"]],[16,17,["G846"]]]},{"k":29149,"v":[[0,1,["G1161"]],[1,4,["G2570"]],[4,8,["G2206"]],[8,9,["G3842"]],[9,10,["G1722"]],[10,12,["G2570"]],[12,14,["G2532"]],[14,15,["G3361"]],[15,16,["G3440"]],[16,18,["G3165"]],[18,20,["G3918"]],[20,21,["G4314"]],[21,22,["G5209"]]]},{"k":29150,"v":[[0,1,["G3450"]],[1,3,["G5040"]],[3,5,["G3739"]],[5,9,["G5605"]],[9,10,["G3825"]],[10,11,["G891","G3757"]],[11,12,["(G5547)"]],[12,14,["G3445"]],[14,15,["G1722"]],[15,16,["G5213"]]]},{"k":29151,"v":[[0,1,["(G1161)"]],[1,2,["G2309"]],[2,5,["G3918"]],[5,6,["G4314"]],[6,7,["G5209"]],[7,8,["G737"]],[8,9,["G2532"]],[9,11,["G236"]],[11,12,["G3450"]],[12,13,["G5456"]],[13,14,["G3754"]],[14,18,["G639"]],[18,19,["G1722"]],[19,20,["G5213"]]]},{"k":29152,"v":[[0,1,["G3004"]],[1,2,["G3427"]],[2,5,["G2309"]],[5,7,["G1511"]],[7,8,["G5259"]],[8,10,["G3551"]],[10,13,["G3756"]],[13,14,["G191"]],[14,15,["G3588"]],[15,16,["G3551"]]]},{"k":29153,"v":[[0,1,["G1063"]],[1,4,["G1125"]],[4,5,["G3754"]],[5,6,["G11"]],[6,7,["G2192"]],[7,8,["G1417"]],[8,9,["G5207"]],[9,11,["G1520"]],[11,12,["G1537"]],[12,14,["G3814"]],[14,15,["(G2532)"]],[15,16,["G1520"]],[16,17,["G1537"]],[17,19,["G1658"]]]},{"k":29154,"v":[[0,1,["G235"]],[1,2,["G3588","G3303"]],[2,5,["G1537"]],[5,6,["G3588"]],[6,7,["G3814"]],[7,9,["G1080"]],[9,10,["G2596"]],[10,12,["G4561"]],[12,13,["G1161"]],[13,14,["G3588"]],[14,15,["G1537"]],[15,16,["G3588"]],[16,17,["G1658"]],[17,19,["G1223"]],[19,20,["G1860"]]]},{"k":29155,"v":[[0,2,["G3748"]],[2,3,["G2076"]],[3,5,["G238"]],[5,6,["G1063"]],[6,7,["G3778"]],[7,8,["G1526"]],[8,9,["G3588"]],[9,10,["G1417"]],[10,11,["G1242"]],[11,13,["G3391","G3303"]],[13,14,["G575"]],[14,16,["G3735"]],[16,17,["G4614"]],[17,19,["G1080"]],[19,20,["G1519"]],[20,21,["G1397"]],[21,22,["G3748"]],[22,23,["G2076"]],[23,24,["G28"]]]},{"k":29156,"v":[[0,1,["G1063"]],[1,3,["G28"]],[3,4,["G2076"]],[4,5,["G3735"]],[5,6,["G4614"]],[6,7,["G1722"]],[7,8,["G688"]],[8,9,["G1161"]],[9,11,["G4960"]],[11,12,["G2419"]],[12,14,["G3568"]],[14,16,["G1161"]],[16,19,["G1398"]],[19,20,["G3326"]],[20,21,["G848"]],[21,22,["G5043"]]]},{"k":29157,"v":[[0,1,["G1161"]],[1,2,["G2419"]],[2,5,["G507"]],[5,6,["G2076"]],[6,7,["G1658"]],[7,8,["G3748"]],[8,9,["G2076"]],[9,11,["G3384"]],[11,13,["G2257"]],[13,14,["G3956"]]]},{"k":29158,"v":[[0,1,["G1063"]],[1,4,["G1125"]],[4,5,["G2165"]],[5,7,["G4723"]],[7,9,["G5088"]],[9,10,["G3756"]],[10,12,["G4486"]],[12,13,["G2532"]],[13,14,["G994"]],[14,17,["G5605"]],[17,18,["G3756"]],[18,19,["G3754"]],[19,20,["G3588"]],[20,21,["G2048"]],[21,22,["G2192"]],[22,23,["G4183"]],[23,24,["G3123"]],[24,25,["G5043"]],[25,26,["G2228"]],[26,29,["G2192"]],[29,31,["G435"]]]},{"k":29159,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,3,["G80"]],[3,4,["G2596"]],[4,5,["G2464"]],[5,7,["G2070"]],[7,9,["G5043"]],[9,11,["G1860"]]]},{"k":29160,"v":[[0,1,["G235"]],[1,2,["G5618"]],[2,3,["G5119"]],[3,7,["G1080"]],[7,8,["G2596"]],[8,10,["G4561"]],[10,11,["G1377"]],[11,12,["G3588"]],[12,16,["G2596"]],[16,18,["G4151"]],[18,19,["G2532"]],[19,20,["G3779"]],[20,23,["G3568"]]]},{"k":29161,"v":[[0,1,["G235"]],[1,2,["G5101"]],[2,3,["G3004"]],[3,4,["G3588"]],[4,5,["G1124"]],[5,7,["G1544"]],[7,8,["G3588"]],[8,9,["G3814"]],[9,10,["G2532"]],[10,11,["G846"]],[11,12,["G5207"]],[12,13,["G1063"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,17,["G3588"]],[17,18,["G3814"]],[18,20,["G3364"]],[20,22,["G2816"]],[22,23,["G3326"]],[23,24,["G3588"]],[24,25,["G5207"]],[25,27,["G3588"]],[27,28,["G1658"]]]},{"k":29162,"v":[[0,2,["G686"]],[2,3,["G80"]],[3,5,["G2070"]],[5,6,["G3756"]],[6,7,["G5043"]],[7,10,["G3814"]],[10,11,["G235"]],[11,13,["G3588"]],[13,14,["G1658"]]]},{"k":29163,"v":[[0,2,["G4739"]],[2,3,["G3767"]],[3,5,["G3588"]],[5,6,["G1657"]],[6,7,["G3739"]],[7,8,["G5547"]],[8,12,["G1659","G2248"]],[12,13,["G2532"]],[13,15,["G3361"]],[15,18,["G1758","G3825"]],[18,20,["G2218"]],[20,22,["G1397"]]]},{"k":29164,"v":[[0,1,["G2396"]],[1,2,["G1473"]],[2,3,["G3972"]],[3,4,["G3004"]],[4,6,["G5213"]],[6,7,["G3754"]],[7,8,["G1437"]],[8,11,["G4059"]],[11,12,["G5547"]],[12,14,["G5623"]],[14,15,["G5209"]],[15,16,["G3762"]]]},{"k":29165,"v":[[0,1,["G1161"]],[1,3,["G3143"]],[3,4,["G3825"]],[4,6,["G3956"]],[6,7,["G444"]],[7,10,["G4059"]],[10,11,["G3754"]],[11,13,["G2076"]],[13,15,["G3781"]],[15,17,["G4160"]],[17,18,["G3588"]],[18,19,["G3650"]],[19,20,["G3551"]]]},{"k":29166,"v":[[0,1,["G5547"]],[1,6,["G2673"]],[6,9,["G3748"]],[9,13,["G1344"]],[13,14,["G1722"]],[14,16,["G3551"]],[16,19,["G1601"]],[19,21,["G5485"]]]},{"k":29167,"v":[[0,1,["G1063"]],[1,2,["G2249"]],[2,5,["G4151"]],[5,7,["G553"]],[7,9,["G1680"]],[9,11,["G1343"]],[11,12,["G1537"]],[12,13,["G4102"]]]},{"k":29168,"v":[[0,1,["G1063"]],[1,2,["G1722"]],[2,3,["G2424"]],[3,4,["G5547"]],[4,5,["G3777"]],[5,6,["G4061"]],[6,7,["G2480"]],[7,9,["G5100"]],[9,10,["G3777"]],[10,11,["G203"]],[11,12,["G235"]],[12,13,["G4102"]],[13,15,["G1754"]],[15,16,["G1223"]],[16,17,["G26"]]]},{"k":29169,"v":[[0,3,["G5143"]],[3,4,["G2573"]],[4,5,["G5101"]],[5,7,["G348"]],[7,8,["G5209"]],[8,12,["G3361"]],[12,13,["G3982"]],[13,14,["G3588"]],[14,15,["G225"]]]},{"k":29170,"v":[[0,2,["G3988"]],[2,4,["G3756"]],[4,5,["G1537"]],[5,8,["G2564"]],[8,9,["G5209"]]]},{"k":29171,"v":[[0,2,["G3398"]],[2,3,["G2219"]],[3,4,["G2220"]],[4,5,["G3588"]],[5,6,["G3650"]],[6,7,["G5445"]]]},{"k":29172,"v":[[0,1,["G1473"]],[1,3,["G3982"]],[3,4,["G1519"]],[4,5,["G5209"]],[5,6,["G1722"]],[6,8,["G2962"]],[8,9,["G3754"]],[9,15,["G5426","G3762","G243"]],[15,16,["G1161"]],[16,19,["G5015"]],[19,20,["G5209"]],[20,22,["G941"]],[22,24,["G2917"]],[24,25,["G3748","G302"]],[25,27,["G5600"]]]},{"k":29173,"v":[[0,1,["G1161"]],[1,2,["G1473"]],[2,3,["G80"]],[3,4,["G1487"]],[4,6,["G2089"]],[6,7,["G2784"]],[7,8,["G4061"]],[8,9,["G5101"]],[9,12,["G2089"]],[12,14,["G1377"]],[14,15,["G686"]],[15,17,["G3588"]],[17,18,["G4625"]],[18,20,["G3588"]],[20,21,["G4716"]],[21,22,["G2673"]]]},{"k":29174,"v":[[0,2,["G3785"]],[2,5,["G2532"]],[5,7,["G609"]],[7,9,["G387"]],[9,10,["G5209"]]]},{"k":29175,"v":[[0,1,["G1063"]],[1,2,["G80"]],[2,3,["G5210"]],[3,6,["G2564"]],[6,7,["G1909"]],[7,8,["G1657"]],[8,9,["G3440"]],[9,11,["G3361"]],[11,12,["G1657"]],[12,13,["G1519"]],[13,15,["G874"]],[15,17,["G3588"]],[17,18,["G4561"]],[18,19,["G235"]],[19,20,["G1223"]],[20,21,["G26"]],[21,22,["G1398"]],[22,24,["G240"]]]},{"k":29176,"v":[[0,1,["G1063"]],[1,2,["G3956"]],[2,4,["G3551"]],[4,6,["G4137"]],[6,7,["G1722"]],[7,8,["G1520"]],[8,9,["G3056"]],[9,11,["G1722"]],[11,12,["G3588"]],[12,15,["G25"]],[15,16,["G4675"]],[16,17,["G4139"]],[17,18,["G5613"]],[18,19,["G1438"]]]},{"k":29177,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G1143"]],[4,5,["G2532"]],[5,6,["G2719"]],[6,8,["G240"]],[8,10,["G991"]],[10,14,["G3361"]],[14,15,["G355"]],[15,18,["G240"]]]},{"k":29178,"v":[[0,3,["G3004"]],[3,4,["G1161"]],[4,5,["G4043"]],[5,8,["G4151"]],[8,9,["G2532"]],[9,12,["G3364"]],[12,13,["G5055"]],[13,15,["G1939"]],[15,18,["G4561"]]]},{"k":29179,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G4561"]],[3,4,["G1937"]],[4,5,["G2596"]],[5,6,["G3588"]],[6,7,["G4151"]],[7,8,["G1161"]],[8,9,["G3588"]],[9,10,["G4151"]],[10,11,["G2596"]],[11,12,["G3588"]],[12,13,["G4561"]],[13,14,["G1161"]],[14,15,["G5023"]],[15,17,["G480"]],[17,22,["G240"]],[22,24,["G2443"]],[24,26,["G3361"]],[26,27,["G4160"]],[27,29,["G5023"]],[29,30,["G3739","G302"]],[30,32,["G2309"]]]},{"k":29180,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,5,["G71"]],[5,8,["G4151"]],[8,10,["G2075"]],[10,11,["G3756"]],[11,12,["G5259"]],[12,14,["G3551"]]]},{"k":29181,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2041"]],[3,5,["G3588"]],[5,6,["G4561"]],[6,7,["G2076"]],[7,8,["G5318"]],[8,9,["G3748"]],[9,10,["G2076"]],[10,12,["G3430"]],[12,13,["G4202"]],[13,14,["G167"]],[14,15,["G766"]]]},{"k":29182,"v":[[0,1,["G1495"]],[1,2,["G5331"]],[2,3,["G2189"]],[3,4,["G2054"]],[4,5,["G2205"]],[5,6,["G2372"]],[6,7,["G2052"]],[7,8,["G1370"]],[8,9,["G139"]]]},{"k":29183,"v":[[0,1,["G5355"]],[1,2,["G5408"]],[2,3,["G3178"]],[3,4,["G2970"]],[4,5,["G2532"]],[5,6,["G5125"]],[6,7,["G3664"]],[7,10,["G3739"]],[10,14,["G4302","G5213"]],[14,15,["G2531"]],[15,18,["G2532"]],[18,23,["G4277"]],[23,24,["G3754"]],[24,27,["G4238"]],[27,29,["G5108"]],[29,31,["G3756"]],[31,32,["G2816"]],[32,34,["G932"]],[34,36,["G2316"]]]},{"k":29184,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2590"]],[3,5,["G3588"]],[5,6,["G4151"]],[6,7,["G2076"]],[7,8,["G26"]],[8,9,["G5479"]],[9,10,["G1515"]],[10,11,["G3115"]],[11,12,["G5544"]],[12,13,["G19"]],[13,14,["G4102"]]]},{"k":29185,"v":[[0,1,["G4236"]],[1,2,["G1466"]],[2,3,["G2596"]],[3,4,["G5108"]],[4,6,["G2076"]],[6,7,["G3756"]],[7,8,["G3551"]]]},{"k":29186,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,5,["G5547"]],[5,7,["G4717"]],[7,8,["G3588"]],[8,9,["G4561"]],[9,10,["G4862"]],[10,11,["G3588"]],[11,12,["G3804"]],[12,13,["G2532"]],[13,14,["G1939"]]]},{"k":29187,"v":[[0,1,["G1487"]],[1,3,["G2198"]],[3,6,["G4151"]],[6,9,["G2532"]],[9,10,["G4748"]],[10,13,["G4151"]]]},{"k":29188,"v":[[0,3,["G3361"]],[3,4,["G1096"]],[4,8,["G2755"]],[8,9,["G4292"]],[9,11,["G240"]],[11,12,["G5354"]],[12,14,["G240"]]]},{"k":29189,"v":[[0,1,["G80"]],[1,2,["G1437"]],[2,4,["G444"]],[4,5,["(G2532)"]],[5,6,["G4301"]],[6,7,["G1722"]],[7,8,["G5100"]],[8,9,["G3900"]],[9,10,["G5210"]],[10,13,["G4152"]],[13,14,["G2675"]],[14,17,["G5108"]],[17,18,["G1722"]],[18,20,["G4151"]],[20,22,["G4236"]],[22,23,["G4648"]],[23,24,["G4572"]],[24,25,["G3361"]],[25,26,["G4771"]],[26,27,["G2532"]],[27,29,["G3985"]]]},{"k":29190,"v":[[0,1,["G941"]],[1,4,["G240"]],[4,5,["G922"]],[5,6,["G2532"]],[6,7,["G3779"]],[7,8,["G378"]],[8,9,["G3588"]],[9,10,["G3551"]],[10,12,["G5547"]]]},{"k":29191,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,4,["G5100"]],[4,6,["G1380"]],[6,8,["G1511"]],[8,9,["G5100"]],[9,12,["G5607"]],[12,13,["G3367"]],[13,15,["G5422"]],[15,16,["G1438"]]]},{"k":29192,"v":[[0,1,["G1161"]],[1,4,["G1538"]],[4,5,["G1381"]],[5,7,["G1438"]],[7,8,["G2041"]],[8,9,["G2532"]],[9,10,["G5119"]],[10,13,["G2192"]],[13,14,["G2745"]],[14,15,["G1519"]],[15,16,["G1438"]],[16,17,["G3441"]],[17,18,["G2532"]],[18,19,["G3756"]],[19,20,["G1519"]],[20,21,["G2087"]]]},{"k":29193,"v":[[0,1,["G1063"]],[1,3,["G1538"]],[3,5,["G941"]],[5,7,["G2398"]],[7,8,["G5413"]]]},{"k":29194,"v":[[0,0,["(G1161)"]],[0,5,["G2727"]],[5,7,["G3588"]],[7,8,["G3056"]],[8,9,["G2841"]],[9,13,["G2727"]],[13,14,["G1722"]],[14,15,["G3956"]],[15,17,["G18"]]]},{"k":29195,"v":[[0,2,["G3361"]],[2,3,["G4105"]],[3,4,["G2316"]],[4,6,["G3756"]],[6,7,["G3456"]],[7,8,["G1063"]],[8,9,["G3739","G1437"]],[9,11,["G444"]],[11,12,["G4687"]],[12,13,["G5124"]],[13,16,["G2532"]],[16,17,["G2325"]]]},{"k":29196,"v":[[0,1,["G3754"]],[1,4,["G4687"]],[4,5,["G1519"]],[5,6,["G1438"]],[6,7,["G4561"]],[7,9,["G1537"]],[9,10,["G3588"]],[10,11,["G4561"]],[11,12,["G2325"]],[12,13,["G5356"]],[13,14,["G1161"]],[14,17,["G4687"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G4151"]],[20,22,["G1537"]],[22,23,["G3588"]],[23,24,["G4151"]],[24,25,["G2325"]],[25,26,["G2222"]],[26,27,["G166"]]]},{"k":29197,"v":[[0,1,["G1161"]],[1,4,["G3361"]],[4,6,["G1573"]],[6,8,["G2570"]],[8,9,["G4160"]],[9,10,["G1063"]],[10,12,["G2398"]],[12,13,["G2540"]],[13,16,["G2325"]],[16,19,["G1590"]],[19,20,["G3361"]]]},{"k":29198,"v":[[0,1,["G5613"]],[1,3,["G2192"]],[3,4,["G686","G3767"]],[4,5,["G2540"]],[5,8,["G2038"]],[8,9,["G18"]],[9,10,["G4314"]],[10,11,["G3956"]],[11,12,["(G1161)"]],[12,13,["G3122"]],[13,14,["G4314"]],[14,20,["G3609"]],[20,22,["G4102"]]]},{"k":29199,"v":[[0,2,["G1492"]],[2,4,["G4080"]],[4,6,["G1121"]],[6,9,["G1125"]],[9,11,["G5213"]],[11,14,["G1699"]],[14,15,["G5495"]]]},{"k":29200,"v":[[0,3,["G3745"]],[3,4,["G2309"]],[4,9,["G2146"]],[9,10,["G1722"]],[10,12,["G4561"]],[12,13,["G3778"]],[13,14,["G315"]],[14,15,["G5209"]],[15,18,["G4059"]],[18,19,["G3440"]],[19,20,["G3363"]],[20,24,["G1377"]],[24,26,["G3588"]],[26,27,["G4716"]],[27,29,["G5547"]]]},{"k":29201,"v":[[0,1,["G1063"]],[1,2,["G3761"]],[2,3,["G846"]],[3,7,["G4059"]],[7,8,["G5442"]],[8,10,["G3551"]],[10,11,["G235"]],[11,12,["G2309"]],[12,15,["G5209"]],[15,16,["G4059"]],[16,17,["G2443"]],[17,20,["G2744"]],[20,21,["G1722"]],[21,22,["G5212"]],[22,23,["G4561"]]]},{"k":29202,"v":[[0,1,["G1161"]],[1,3,["G1096","G3361"]],[3,5,["G1698"]],[5,7,["G2744"]],[7,8,["G1508"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G4716"]],[11,13,["G2257"]],[13,14,["G2962"]],[14,15,["G2424"]],[15,16,["G5547"]],[16,17,["G1223"]],[17,18,["G3739"]],[18,20,["G2889"]],[20,22,["G4717"]],[22,24,["G1698"]],[24,26,["G2504"]],[26,28,["G3588"]],[28,29,["G2889"]]]},{"k":29203,"v":[[0,1,["G1063"]],[1,2,["G1722"]],[2,3,["G5547"]],[3,4,["G2424"]],[4,5,["G3777"]],[5,6,["G4061"]],[6,7,["G2480"]],[7,9,["G5100"]],[9,10,["G3777"]],[10,11,["G203"]],[11,12,["G235"]],[12,14,["G2537"]],[14,15,["G2937"]]]},{"k":29204,"v":[[0,1,["G2532"]],[1,4,["G3745"]],[4,5,["G4748"]],[5,8,["G5129"]],[8,9,["G2583"]],[9,10,["G1515"]],[10,12,["G1909"]],[12,13,["G846"]],[13,14,["G2532"]],[14,15,["G1656"]],[15,16,["G2532"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G2474"]],[19,21,["G2316"]]]},{"k":29205,"v":[[0,2,["G3064"]],[2,5,["G3367"]],[5,6,["G3930","G2873"]],[6,7,["G3427"]],[7,8,["G1063"]],[8,9,["G1473"]],[9,10,["G941"]],[10,11,["G1722"]],[11,12,["G3450"]],[12,13,["G4983"]],[13,14,["G3588"]],[14,15,["G4742"]],[15,17,["G3588"]],[17,18,["G2962"]],[18,19,["G2424"]]]},{"k":29206,"v":[[0,1,["G80"]],[1,2,["G3588"]],[2,3,["G5485"]],[3,5,["G2257"]],[5,6,["G2962"]],[6,7,["G2424"]],[7,8,["G5547"]],[8,10,["G3326"]],[10,11,["G5216"]],[11,12,["G4151"]],[12,13,["G281"]]]},{"k":29207,"v":[[0,1,["G3972"]],[1,3,["G652"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,7,["G1223"]],[7,9,["G2307"]],[9,11,["G2316"]],[11,13,["G3588"]],[13,14,["G40"]],[14,16,["G5607"]],[16,17,["G1722"]],[17,18,["G2181"]],[18,19,["G2532"]],[19,22,["G4103"]],[22,23,["G1722"]],[23,24,["G5547"]],[24,25,["G2424"]]]},{"k":29208,"v":[[0,1,["G5485"]],[1,4,["G5213"]],[4,5,["G2532"]],[5,6,["G1515"]],[6,7,["G575"]],[7,8,["G2316"]],[8,9,["G2257"]],[9,10,["G3962"]],[10,11,["G2532"]],[11,14,["G2962"]],[14,15,["G2424"]],[15,16,["G5547"]]]},{"k":29209,"v":[[0,1,["G2128"]],[1,3,["G3588"]],[3,4,["G2316"]],[4,5,["G2532"]],[5,6,["G3962"]],[6,8,["G2257"]],[8,9,["G2962"]],[9,10,["G2424"]],[10,11,["G5547"]],[11,14,["G2127"]],[14,15,["G2248"]],[15,16,["G1722"]],[16,17,["G3956"]],[17,18,["G4152"]],[18,19,["G2129"]],[19,20,["G1722"]],[20,21,["G2032"]],[21,23,["G1722"]],[23,24,["G5547"]]]},{"k":29210,"v":[[0,2,["G2531"]],[2,5,["G1586"]],[5,6,["G2248"]],[6,7,["G1722"]],[7,8,["G846"]],[8,9,["G4253"]],[9,11,["G2602"]],[11,14,["G2889"]],[14,16,["G2248"]],[16,18,["G1511"]],[18,19,["G40"]],[19,20,["G2532"]],[20,22,["G299"]],[22,23,["G2714"]],[23,24,["G846"]],[24,25,["G1722"]],[25,26,["G26"]]]},{"k":29211,"v":[[0,2,["G4309"]],[2,3,["G2248"]],[3,4,["G1519"]],[4,8,["G5206"]],[8,9,["G1223"]],[9,10,["G2424"]],[10,11,["G5547"]],[11,12,["G1519"]],[12,13,["G848"]],[13,14,["G2596"]],[14,16,["G3588"]],[16,18,["G2107"]],[18,20,["G848"]],[20,21,["G2307"]]]},{"k":29212,"v":[[0,1,["G1519"]],[1,3,["G1868"]],[3,6,["G1391"]],[6,8,["G848"]],[8,9,["G5485"]],[9,10,["G1722","G3739"]],[10,15,["G5487","G2248"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G25"]]]},{"k":29213,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,4,["G2192"]],[4,5,["G629"]],[5,6,["G1223"]],[6,7,["G846"]],[7,8,["G129"]],[8,9,["G3588"]],[9,10,["G859"]],[10,12,["G3900"]],[12,13,["G2596"]],[13,15,["G3588"]],[15,16,["G4149"]],[16,18,["G846"]],[18,19,["G5485"]]]},{"k":29214,"v":[[0,1,["G3739"]],[1,4,["G4052"]],[4,5,["G1519"]],[5,6,["G2248"]],[6,7,["G1722"]],[7,8,["G3956"]],[8,9,["G4678"]],[9,10,["G2532"]],[10,11,["G5428"]]]},{"k":29215,"v":[[0,3,["G1107"]],[3,5,["G2254"]],[5,6,["G3588"]],[6,7,["G3466"]],[7,9,["G848"]],[9,10,["G2307"]],[10,11,["G2596"]],[11,13,["G848"]],[13,15,["G2107"]],[15,16,["G3739"]],[16,19,["G4388"]],[19,20,["G1722"]],[20,21,["G848"]]]},{"k":29216,"v":[[0,2,["G1519"]],[2,4,["G3622"]],[4,6,["G3588"]],[6,7,["G4138"]],[7,9,["G2540"]],[9,15,["G346"]],[15,17,["G3956"]],[17,18,["G1722"]],[18,19,["G5547"]],[19,20,["G5037"]],[20,21,["G3588"]],[21,23,["G1722"]],[23,24,["G3772"]],[24,25,["G2532"]],[25,26,["G3588"]],[26,28,["G1909"]],[28,29,["G1093"]],[29,31,["G1722"]],[31,32,["G846"]]]},{"k":29217,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G2532"]],[3,8,["G2820"]],[8,10,["G4309"]],[10,11,["G2596"]],[11,14,["G4286"]],[14,18,["G1754"]],[18,20,["G3956"]],[20,21,["G2596"]],[21,22,["G3588"]],[22,23,["G1012"]],[23,26,["G848"]],[26,27,["G2307"]]]},{"k":29218,"v":[[0,2,["G2248"]],[2,4,["G1511"]],[4,5,["G1519"]],[5,7,["G1868"]],[7,9,["G846"]],[9,10,["G1391"]],[10,13,["G4276"]],[13,14,["G1722"]],[14,15,["G5547"]]]},{"k":29219,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G5210"]],[3,4,["G2532"]],[4,9,["G191"]],[9,10,["G3588"]],[10,11,["G3056"]],[11,13,["G225"]],[13,14,["G3588"]],[14,15,["G2098"]],[15,17,["G5216"]],[17,18,["G4991"]],[18,19,["G1722"]],[19,20,["G3739"]],[20,21,["G2532"]],[21,25,["G4100"]],[25,28,["G4972"]],[28,31,["G40"]],[31,32,["G4151"]],[32,34,["G1860"]]]},{"k":29220,"v":[[0,1,["G3739"]],[1,2,["G2076"]],[2,4,["G728"]],[4,6,["G2257"]],[6,7,["G2817"]],[7,8,["G1519"]],[8,10,["G629"]],[10,12,["G3588"]],[12,14,["G4047"]],[14,15,["G1519"]],[15,17,["G1868"]],[17,19,["G846"]],[19,20,["G1391"]]]},{"k":29221,"v":[[0,1,["G1223","G5124"]],[1,3,["G2504"]],[3,6,["G191"]],[6,7,["G2596"]],[7,8,["G5209"]],[8,9,["G4102"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G2962"]],[12,13,["G2424"]],[13,14,["G2532"]],[14,15,["G26"]],[15,16,["G1519"]],[16,17,["G3956"]],[17,18,["G3588"]],[18,19,["G40"]]]},{"k":29222,"v":[[0,1,["G3973"]],[1,2,["G3756"]],[2,5,["G2168"]],[5,6,["G5228"]],[6,7,["G5216"]],[7,8,["G4160"]],[8,9,["G3417"]],[9,11,["G5216"]],[11,12,["G1909"]],[12,13,["G3450"]],[13,14,["G4335"]]]},{"k":29223,"v":[[0,1,["G2443"]],[1,2,["G3588"]],[2,3,["G2316"]],[3,5,["G2257"]],[5,6,["G2962"]],[6,7,["G2424"]],[7,8,["G5547"]],[8,9,["G3588"]],[9,10,["G3962"]],[10,12,["G1391"]],[12,14,["G1325"]],[14,16,["G5213"]],[16,18,["G4151"]],[18,20,["G4678"]],[20,21,["G2532"]],[21,22,["G602"]],[22,23,["G1722"]],[23,25,["G1922"]],[25,27,["G848"]]]},{"k":29224,"v":[[0,1,["G3588"]],[1,2,["G3788"]],[2,4,["G5216"]],[4,5,["G1271"]],[5,7,["G5461"]],[7,9,["G5209"]],[9,11,["G1492"]],[11,12,["G5101"]],[12,13,["G2076"]],[13,14,["G3588"]],[14,15,["G1680"]],[15,17,["G846"]],[17,18,["G2821"]],[18,19,["G2532"]],[19,20,["G5101"]],[20,21,["G3588"]],[21,22,["G4149"]],[22,24,["G3588"]],[24,25,["G1391"]],[25,27,["G846"]],[27,28,["G2817"]],[28,29,["G1722"]],[29,30,["G3588"]],[30,31,["G40"]]]},{"k":29225,"v":[[0,1,["G2532"]],[1,2,["G5101"]],[2,4,["G3588"]],[4,5,["G5235"]],[5,6,["G3174"]],[6,8,["G846"]],[8,9,["G1411"]],[9,10,["G1519"]],[10,11,["G2248"]],[11,13,["G4100"]],[13,14,["G2596"]],[14,16,["G3588"]],[16,17,["G1753"]],[17,19,["G846"]],[19,21,["G2904","G2479"]]]},{"k":29226,"v":[[0,1,["G3739"]],[1,3,["G1754"]],[3,4,["G1722"]],[4,5,["G5547"]],[5,8,["G1453"]],[8,9,["G846"]],[9,10,["G1537"]],[10,12,["G3498"]],[12,13,["G2532"]],[13,14,["G2523"]],[14,16,["G1722"]],[16,18,["G848"]],[18,20,["G1188"]],[20,21,["G1722"]],[21,22,["G3588"]],[22,23,["G2032"]],[23,24,[]]]},{"k":29227,"v":[[0,2,["G5231"]],[2,3,["G3956"]],[3,4,["G746"]],[4,5,["G2532"]],[5,6,["G1849"]],[6,7,["G2532"]],[7,8,["G1411"]],[8,9,["G2532"]],[9,10,["G2963"]],[10,11,["G2532"]],[11,12,["G3956"]],[12,13,["G3686"]],[13,16,["G3687"]],[16,17,["G3756"]],[17,18,["G3440"]],[18,19,["G1722"]],[19,20,["G5129"]],[20,21,["G165"]],[21,22,["G235"]],[22,23,["G2532"]],[23,24,["G1722"]],[24,29,["G3195"]]]},{"k":29228,"v":[[0,1,["G2532"]],[1,3,["G5293"]],[3,4,["G3956"]],[4,6,["G5259"]],[6,7,["G846"]],[7,8,["G4228"]],[8,9,["G2532"]],[9,10,["G1325"]],[10,11,["G846"]],[11,15,["G2776"]],[15,16,["G5228"]],[16,17,["G3956"]],[17,20,["G3588"]],[20,21,["G1577"]]]},{"k":29229,"v":[[0,1,["G3748"]],[1,2,["G2076"]],[2,3,["G846"]],[3,4,["G4983"]],[4,5,["G3588"]],[5,6,["G4138"]],[6,10,["G4137"]],[10,11,["G3956"]],[11,12,["G1722"]],[12,13,["G3956"]]]},{"k":29230,"v":[[0,1,["G2532"]],[1,2,["G5209"]],[2,7,["G5607"]],[7,8,["G3498"]],[8,10,["G3900"]],[10,11,["G2532"]],[11,12,["G266"]]]},{"k":29231,"v":[[0,1,["G1722","G3739"]],[1,4,["G4218"]],[4,6,["G4043"]],[6,7,["G2596"]],[7,9,["G3588"]],[9,10,["G165"]],[10,12,["G5127"]],[12,13,["G2889"]],[13,14,["G2596"]],[14,16,["G3588"]],[16,17,["G758"]],[17,19,["G3588"]],[19,20,["G1849"]],[20,22,["G3588"]],[22,23,["G109"]],[23,24,["G3588"]],[24,25,["G4151"]],[25,28,["G1754","G3568"]],[28,29,["G1722"]],[29,30,["G3588"]],[30,31,["G5207"]],[31,33,["G543"]]]},{"k":29232,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G2532"]],[3,4,["G2249"]],[4,5,["G3956"]],[5,8,["G390"]],[8,11,["G4218"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G1939"]],[14,16,["G2257"]],[16,17,["G4561"]],[17,18,["G4160"]],[18,19,["G3588"]],[19,20,["G2307"]],[20,22,["G3588"]],[22,23,["G4561"]],[23,24,["G2532"]],[24,26,["G3588"]],[26,27,["G1271"]],[27,28,["G2532"]],[28,29,["G2258"]],[29,31,["G5449"]],[31,33,["G5043"]],[33,35,["G3709"]],[35,36,["G2532"]],[36,37,["G5613"]],[37,38,["G3062"]]]},{"k":29233,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,4,["G5607"]],[4,5,["G4145"]],[5,6,["G1722"]],[6,7,["G1656"]],[7,8,["G1223"]],[8,9,["G848"]],[9,10,["G4183"]],[10,11,["G26"]],[11,12,["G3739"]],[12,14,["G25"]],[14,15,["G2248"]]]},{"k":29234,"v":[[0,1,["G2532"]],[1,3,["G2248"]],[3,4,["G5607"]],[4,5,["G3498"]],[5,7,["G3900"]],[7,11,["G4806"]],[11,14,["G5547"]],[14,15,["G5485"]],[15,17,["G2075"]],[17,18,["G4982"]]]},{"k":29235,"v":[[0,1,["G2532"]],[1,6,["G4891"]],[6,7,["G2532"]],[7,11,["G4776"]],[11,12,["G1722"]],[12,13,["G2032"]],[13,15,["G1722"]],[15,16,["G5547"]],[16,17,["G2424"]]]},{"k":29236,"v":[[0,1,["G2443"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G165"]],[4,6,["G1904"]],[6,9,["G1731"]],[9,10,["G3588"]],[10,11,["G5235"]],[11,12,["G4149"]],[12,14,["G848"]],[14,15,["G5485"]],[15,16,["G1722"]],[16,18,["G5544"]],[18,19,["G1909"]],[19,20,["G2248"]],[20,21,["G1722"]],[21,22,["G5547"]],[22,23,["G2424"]]]},{"k":29237,"v":[[0,1,["G1063"]],[1,3,["G5485"]],[3,4,["G2075"]],[4,6,["G4982"]],[6,7,["G1223"]],[7,8,["G4102"]],[8,9,["G2532"]],[9,10,["G5124"]],[10,11,["G3756"]],[11,12,["G1537"]],[12,13,["G5216"]],[13,16,["G3588"]],[16,17,["G1435"]],[17,19,["G2316"]]]},{"k":29238,"v":[[0,1,["G3756"]],[1,2,["G1537"]],[2,3,["G2041"]],[3,4,["G3363"]],[4,6,["G5100"]],[6,8,["G2744"]]]},{"k":29239,"v":[[0,1,["G1063"]],[1,3,["G2070"]],[3,4,["G846"]],[4,5,["G4161"]],[5,6,["G2936"]],[6,7,["G1722"]],[7,8,["G5547"]],[8,9,["G2424"]],[9,10,["G1909"]],[10,11,["G18"]],[11,12,["G2041"]],[12,13,["G3739"]],[13,14,["G2316"]],[14,17,["G4282"]],[17,18,["G2443"]],[18,21,["G4043"]],[21,22,["G1722"]],[22,23,["G846"]]]},{"k":29240,"v":[[0,1,["G1352"]],[1,2,["G3421"]],[2,3,["G3754"]],[3,4,["G5210"]],[4,8,["G4218"]],[8,9,["G1484"]],[9,10,["G1722"]],[10,12,["G4561"]],[12,13,["G3588"]],[13,15,["G3004"]],[15,16,["G203"]],[16,17,["G5259"]],[17,21,["G3004"]],[21,23,["G4061"]],[23,24,["G1722"]],[24,26,["G4561"]],[26,29,["G5499"]]]},{"k":29241,"v":[[0,1,["G3754"]],[1,2,["G1722"]],[2,3,["G1565"]],[3,4,["G2540"]],[4,6,["G2258"]],[6,7,["G5565"]],[7,8,["G5547"]],[8,10,["G526"]],[10,12,["G3588"]],[12,13,["G4174"]],[13,15,["G2474"]],[15,16,["G2532"]],[16,17,["G3581"]],[17,19,["G3588"]],[19,20,["G1242"]],[20,22,["G1860"]],[22,23,["G2192"]],[23,24,["G3361"]],[24,25,["G1680"]],[25,26,["G2532"]],[26,28,["G112"]],[28,29,["G1722"]],[29,30,["G3588"]],[30,31,["G2889"]]]},{"k":29242,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,3,["G1722"]],[3,4,["G5547"]],[4,5,["G2424"]],[5,6,["G5210"]],[6,9,["G5607","G4218"]],[9,11,["G3112"]],[11,13,["G1096"]],[13,14,["G1451"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G129"]],[17,19,["G5547"]]]},{"k":29243,"v":[[0,1,["G1063"]],[1,2,["G846"]],[2,3,["G2076"]],[3,4,["G2257"]],[4,5,["G1515"]],[5,8,["G4160"]],[8,9,["G297"]],[9,10,["G1520"]],[10,11,["G2532"]],[11,14,["G3089"]],[14,15,["G3588"]],[15,17,["G3320"]],[17,19,["G5418"]],[19,21,[]]]},{"k":29244,"v":[[0,2,["G2673"]],[2,3,["G1722"]],[3,4,["G848"]],[4,5,["G4561"]],[5,6,["G3588"]],[6,7,["G2189"]],[7,9,["G3588"]],[9,10,["G3551"]],[10,12,["G1785"]],[12,14,["G1722"]],[14,15,["G1378"]],[15,17,["G2443"]],[17,18,["G2936"]],[18,19,["G1722"]],[19,20,["G1438"]],[20,22,["G1417","(G1519)"]],[22,23,["G1520"]],[23,24,["G2537"]],[24,25,["G444"]],[25,27,["G4160"]],[27,28,["G1515"]]]},{"k":29245,"v":[[0,1,["G2532"]],[1,5,["G604"]],[5,6,["G297"]],[6,8,["G2316"]],[8,9,["G1722"]],[9,10,["G1520"]],[10,11,["G4983"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G4716"]],[14,16,["G615"]],[16,17,["G3588"]],[17,18,["G2189"]],[18,19,["G1722","G846"]]]},{"k":29246,"v":[[0,1,["G2532"]],[1,2,["G2064"]],[2,4,["G2097"]],[4,5,["G1515"]],[5,7,["G5213"]],[7,11,["G3112"]],[11,12,["G2532"]],[12,17,["G1451"]]]},{"k":29247,"v":[[0,1,["G3754"]],[1,2,["G1223"]],[2,3,["G846"]],[3,5,["G297"]],[5,6,["G2192"]],[6,7,["G4318"]],[7,8,["G1722"]],[8,9,["G1520"]],[9,10,["G4151"]],[10,11,["G4314"]],[11,12,["G3588"]],[12,13,["G3962"]]]},{"k":29248,"v":[[0,1,["G686"]],[1,2,["G3767"]],[2,4,["G2075"]],[4,6,["G3765"]],[6,7,["G3581"]],[7,8,["G2532"]],[8,9,["G3941"]],[9,10,["G235"]],[10,11,["G4847"]],[11,13,["G3588"]],[13,14,["G40"]],[14,15,["G2532"]],[15,18,["G3609"]],[18,20,["G2316"]]]},{"k":29249,"v":[[0,3,["G2026"]],[3,4,["G1909"]],[4,5,["G3588"]],[5,6,["G2310"]],[6,8,["G3588"]],[8,9,["G652"]],[9,10,["G2532"]],[10,11,["G4396"]],[11,12,["G2424"]],[12,13,["G5547"]],[13,14,["G846"]],[14,15,["G5607"]],[15,18,["G204"]],[18,19,[]]]},{"k":29250,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G3956"]],[3,4,["G3588"]],[4,5,["G3619"]],[5,8,["G4883"]],[8,9,["G837"]],[9,10,["G1519"]],[10,12,["G40"]],[12,13,["G3485"]],[13,14,["G1722"]],[14,16,["G2962"]]]},{"k":29251,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G5210"]],[3,4,["G2532"]],[4,7,["G4925"]],[7,8,["G1519"]],[8,10,["G2732"]],[10,12,["G2316"]],[12,13,["G1722"]],[13,15,["G4151"]]]},{"k":29252,"v":[[0,3,["G5484","G5127"]],[3,4,["G1473"]],[4,5,["G3972"]],[5,6,["G3588"]],[6,7,["G1198"]],[7,9,["G2424"]],[9,10,["G5547"]],[10,11,["G5228"]],[11,12,["G5216"]],[12,13,["G1484"]]]},{"k":29253,"v":[[0,1,["G1489"]],[1,4,["G191"]],[4,6,["G3588"]],[6,7,["G3622"]],[7,9,["G3588"]],[9,10,["G5485"]],[10,12,["G2316"]],[12,15,["G1325"]],[15,16,["G3427"]],[16,17,["G1519"]],[17,18,["G5209"]]]},{"k":29254,"v":[[0,2,["G3754"]],[2,3,["G2596"]],[3,4,["G602"]],[4,7,["G1107"]],[7,9,["G3427"]],[9,10,["G3588"]],[10,11,["G3466"]],[11,12,["G2531"]],[12,15,["G4270"]],[15,16,["G1722"]],[16,18,["G3641"]]]},{"k":29255,"v":[[0,1,["G4314","G3739"]],[1,4,["G314"]],[4,6,["G1410"]],[6,7,["G3539"]],[7,8,["G3450"]],[8,9,["G4907"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G3466"]],[12,14,["G5547"]]]},{"k":29256,"v":[[0,1,["G3739"]],[1,2,["G1722"]],[2,3,["G2087"]],[3,4,["G1074"]],[4,6,["G3756"]],[6,8,["G1107"]],[8,10,["G3588"]],[10,11,["G5207"]],[11,13,["G444"]],[13,14,["G5613"]],[14,17,["G3568"]],[17,18,["G601"]],[18,20,["G846"]],[20,21,["G40"]],[21,22,["G652"]],[22,23,["G2532"]],[23,24,["G4396"]],[24,25,["G1722"]],[25,27,["G4151"]]]},{"k":29257,"v":[[0,2,["G3588"]],[2,3,["G1484"]],[3,5,["G1511"]],[5,6,["G4789"]],[6,7,["G2532"]],[7,11,["G4954"]],[11,12,["G2532"]],[12,13,["G4830"]],[13,15,["G846"]],[15,16,["G1860"]],[16,17,["G1722"]],[17,18,["G5547"]],[18,19,["G1223"]],[19,20,["G3588"]],[20,21,["G2098"]]]},{"k":29258,"v":[[0,1,["G3739"]],[1,4,["G1096"]],[4,6,["G1249"]],[6,7,["G2596"]],[7,9,["G3588"]],[9,10,["G1431"]],[10,12,["G3588"]],[12,13,["G5485"]],[13,15,["G2316"]],[15,16,["G1325"]],[16,18,["G3427"]],[18,19,["G2596"]],[19,20,["G3588"]],[20,22,["G1753"]],[22,24,["G846"]],[24,25,["G1411"]]]},{"k":29259,"v":[[0,2,["G1698"]],[2,8,["G1647"]],[8,10,["G3956"]],[10,11,["G40"]],[11,13,["G3778"]],[13,14,["G5485"]],[14,15,["G1325"]],[15,19,["G2097"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G1484"]],[22,23,["G3588"]],[23,24,["G421"]],[24,25,["G4149"]],[25,27,["G5547"]]]},{"k":29260,"v":[[0,1,["G2532"]],[1,6,["G5461","G3956"]],[6,7,["G5101"]],[7,9,["G3588"]],[9,10,["G2842"]],[10,12,["G3588"]],[12,13,["G3466"]],[13,15,["G575"]],[15,16,["G3588"]],[16,20,["G165"]],[20,23,["G613"]],[23,24,["G1722"]],[24,25,["G2316"]],[25,27,["G2936"]],[27,29,["G3956"]],[29,30,["G1223"]],[30,31,["G2424"]],[31,32,["G5547"]]]},{"k":29261,"v":[[0,4,["G2443"]],[4,5,["G3568"]],[5,7,["G3588"]],[7,8,["G746"]],[8,9,["G2532"]],[9,10,["G1849"]],[10,11,["G1722"]],[11,12,["G2032"]],[12,16,["G1107"]],[16,17,["G1223"]],[17,18,["G3588"]],[18,19,["G1577"]],[19,20,["G3588"]],[20,21,["G4182"]],[21,22,["G4678"]],[22,24,["G2316"]]]},{"k":29262,"v":[[0,1,["G2596"]],[1,3,["G3588"]],[3,4,["G165"]],[4,5,["G4286"]],[5,6,["G3739"]],[6,8,["G4160"]],[8,9,["G1722"]],[9,10,["G5547"]],[10,11,["G2424"]],[11,12,["G2257"]],[12,13,["G2962"]]]},{"k":29263,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,4,["G2192"]],[4,5,["G3954"]],[5,6,["G2532"]],[6,7,["G4318"]],[7,8,["G1722"]],[8,9,["G4006"]],[9,10,["G1223"]],[10,11,["G3588"]],[11,12,["G4102"]],[12,14,["G846"]]]},{"k":29264,"v":[[0,1,["G1352"]],[1,3,["G154"]],[3,6,["G1573"]],[6,7,["G3361"]],[7,8,["G1722"]],[8,9,["G3450"]],[9,10,["G2347"]],[10,11,["G5228"]],[11,12,["G5216"]],[12,13,["G3748"]],[13,14,["G2076"]],[14,15,["G5216"]],[15,16,["G1391"]]]},{"k":29265,"v":[[0,3,["G5484","G5127"]],[3,5,["G2578"]],[5,6,["G3450"]],[6,7,["G1119"]],[7,8,["G4314"]],[8,9,["G3588"]],[9,10,["G3962"]],[10,12,["G2257"]],[12,13,["G2962"]],[13,14,["G2424"]],[14,15,["G5547"]]]},{"k":29266,"v":[[0,1,["G1537"]],[1,2,["G3739"]],[2,4,["G3956"]],[4,5,["G3965"]],[5,6,["G1722"]],[6,7,["G3772"]],[7,8,["G2532"]],[8,9,["G1093"]],[9,11,["G3687"]]]},{"k":29267,"v":[[0,1,["G2443"]],[1,4,["G1325"]],[4,5,["G5213"]],[5,6,["G2596"]],[6,8,["G3588"]],[8,9,["G4149"]],[9,11,["G848"]],[11,12,["G1391"]],[12,15,["G2901"]],[15,17,["G1411"]],[17,18,["G1223"]],[18,19,["G848"]],[19,20,["G4151"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G2080"]],[23,24,["G444"]]]},{"k":29268,"v":[[0,2,["G5547"]],[2,4,["G2730"]],[4,5,["G1722"]],[5,6,["G5216"]],[6,7,["G2588"]],[7,8,["G1223"]],[8,9,["G4102"]],[9,10,["G2443"]],[10,13,["G4492"]],[13,14,["G2532"]],[14,15,["G2311"]],[15,16,["G1722"]],[16,17,["G26"]]]},{"k":29269,"v":[[0,3,["G1840"]],[3,5,["G2638"]],[5,6,["G4862"]],[6,7,["G3956"]],[7,8,["G40"]],[8,9,["G5101"]],[9,11,["G3588"]],[11,12,["G4114"]],[12,13,["G2532"]],[13,14,["G3372"]],[14,15,["G2532"]],[15,16,["G899"]],[16,17,["G2532"]],[17,18,["G5311"]]]},{"k":29270,"v":[[0,1,["G5037"]],[1,3,["G1097"]],[3,4,["G3588"]],[4,5,["G26"]],[5,7,["G5547"]],[7,9,["G5235"]],[9,10,["G1108"]],[10,11,["G2443"]],[11,15,["G4137"]],[15,16,["G1519"]],[16,17,["G3956"]],[17,18,["G3588"]],[18,19,["G4138"]],[19,21,["G2316"]]]},{"k":29271,"v":[[0,1,["G1161"]],[1,6,["G1410"]],[6,8,["G4160"]],[8,10,["G5228","G1537","G4053"]],[10,11,["G5228"]],[11,12,["G3956"]],[12,13,["G3739"]],[13,15,["G154"]],[15,16,["G2228"]],[16,17,["G3539"]],[17,18,["G2596"]],[18,20,["G3588"]],[20,21,["G1411"]],[21,23,["G1754"]],[23,24,["G1722"]],[24,25,["G2254"]]]},{"k":29272,"v":[[0,2,["G846"]],[2,4,["G1391"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G1577"]],[7,8,["G1722"]],[8,9,["G5547"]],[9,10,["G2424"]],[10,11,["G1519"]],[11,12,["G3956"]],[12,13,["G1074"]],[13,16,["G165","G165"]],[16,17,["G281"]]]},{"k":29273,"v":[[0,1,["G1473"]],[1,2,["G3767"]],[2,3,["G3588"]],[3,4,["G1198"]],[4,5,["G1722"]],[5,7,["G2962"]],[7,8,["G3870"]],[8,9,["G5209"]],[9,12,["G4043"]],[12,13,["G516"]],[13,15,["G3588"]],[15,16,["G2821"]],[16,17,["G3739"]],[17,20,["G2564"]]]},{"k":29274,"v":[[0,1,["G3326"]],[1,2,["G3956"]],[2,3,["G5012"]],[3,4,["G2532"]],[4,5,["G4236"]],[5,6,["G3326"]],[6,7,["G3115"]],[7,8,["G430"]],[8,10,["G240"]],[10,11,["G1722"]],[11,12,["G26"]]]},{"k":29275,"v":[[0,1,["G4704"]],[1,3,["G5083"]],[3,4,["G3588"]],[4,5,["G1775"]],[5,7,["G3588"]],[7,8,["G4151"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G4886"]],[11,13,["G1515"]]]},{"k":29276,"v":[[0,3,["G1520"]],[3,4,["G4983"]],[4,5,["G2532"]],[5,6,["G1520"]],[6,7,["G4151"]],[7,9,["G2531"]],[9,12,["G2564"]],[12,13,["G1722"]],[13,14,["G3391"]],[14,15,["G1680"]],[15,17,["G5216"]],[17,18,["G2821"]]]},{"k":29277,"v":[[0,1,["G1520"]],[1,2,["G2962"]],[2,3,["G3391"]],[3,4,["G4102"]],[4,5,["G1520"]],[5,6,["G908"]]]},{"k":29278,"v":[[0,1,["G1520"]],[1,2,["G2316"]],[2,3,["G2532"]],[3,4,["G3962"]],[4,6,["G3956"]],[6,7,["G3588"]],[7,9,["G1909"]],[9,10,["G3956"]],[10,11,["G2532"]],[11,12,["G1223"]],[12,13,["G3956"]],[13,14,["G2532"]],[14,15,["G1722"]],[15,16,["G5213"]],[16,17,["G3956"]]]},{"k":29279,"v":[[0,1,["G1161"]],[1,3,["G1538"]],[3,4,["G1520"]],[4,6,["G2257"]],[6,8,["G1325"]],[8,9,["G5485"]],[9,10,["G2596"]],[10,12,["G3588"]],[12,13,["G3358"]],[13,15,["G3588"]],[15,16,["G1431"]],[16,18,["G5547"]]]},{"k":29280,"v":[[0,1,["G1352"]],[1,3,["G3004"]],[3,7,["G305"]],[7,8,["G1519"]],[8,9,["G5311"]],[9,13,["G162","G161"]],[13,14,["G2532"]],[14,15,["G1325"]],[15,16,["G1390"]],[16,18,["G444"]]]},{"k":29281,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G305"]],[4,5,["G5101"]],[5,6,["G2076"]],[6,8,["G1508"]],[8,9,["G3754"]],[9,11,["G2532"]],[11,12,["G2597"]],[12,13,["G4412"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G2737"]],[16,17,["G3313"]],[17,19,["G3588"]],[19,20,["G1093"]]]},{"k":29282,"v":[[0,3,["G2597"]],[3,4,["G2076"]],[4,6,["G846"]],[6,7,["G2532"]],[7,10,["G305"]],[10,12,["G5231"]],[12,13,["G3956"]],[13,14,["G3772"]],[14,15,["G2443"]],[15,18,["G4137"]],[18,20,["G3956"]]]},{"k":29283,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G1325"]],[3,4,["G3588","G3303"]],[4,5,["G652"]],[5,6,["G1161"]],[6,7,["G3588"]],[7,8,["G4396"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G2099"]],[11,12,["G1161"]],[12,13,["G3588"]],[13,14,["G4166"]],[14,15,["G2532"]],[15,16,["G1320"]]]},{"k":29284,"v":[[0,1,["G4314"]],[1,2,["G3588"]],[2,3,["G2677"]],[3,5,["G3588"]],[5,6,["G40"]],[6,7,["G1519"]],[7,9,["G2041"]],[9,12,["G1248"]],[12,13,["G1519"]],[13,15,["G3619"]],[15,17,["G3588"]],[17,18,["G4983"]],[18,20,["G5547"]]]},{"k":29285,"v":[[0,1,["G3360"]],[1,3,["G3956"]],[3,4,["G2658"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G1775"]],[7,9,["G3588"]],[9,10,["G4102"]],[10,11,["G2532"]],[11,13,["G3588"]],[13,14,["G1922"]],[14,16,["G3588"]],[16,17,["G5207"]],[17,19,["G2316"]],[19,20,["G1519"]],[20,22,["G5046"]],[22,23,["G435"]],[23,24,["G1519"]],[24,26,["G3358"]],[26,29,["G2244"]],[29,31,["G3588"]],[31,32,["G4138"]],[32,34,["G5547"]]]},{"k":29286,"v":[[0,1,["G2443"]],[1,4,["G5600"]],[4,6,["G3371"]],[6,7,["G3516"]],[7,11,["G2831"]],[11,12,["G2532"]],[12,14,["G4064"]],[14,16,["G3956"]],[16,17,["G417"]],[17,19,["G1319"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G2940"]],[22,24,["G444"]],[24,25,["(G1722)"]],[25,27,["G3834"]],[27,28,["G4314"]],[28,34,["G3180","G4106"]]]},{"k":29287,"v":[[0,1,["G1161"]],[1,4,["G226"]],[4,5,["G1722"]],[5,6,["G26"]],[6,9,["G837"]],[9,10,["G1519"]],[10,11,["G846"]],[11,14,["G3956"]],[14,15,["G3739"]],[15,16,["G2076"]],[16,17,["G3588"]],[17,18,["G2776"]],[18,20,["G5547"]]]},{"k":29288,"v":[[0,1,["G1537"]],[1,2,["G3739"]],[2,3,["G3588"]],[3,4,["G3956"]],[4,5,["G4983"]],[5,8,["G4883"]],[8,9,["G2532"]],[9,10,["G4822"]],[10,11,["G1223"]],[11,14,["G3956"]],[14,15,["G860"]],[15,16,["G2024"]],[16,17,["G2596"]],[17,21,["G1753"]],[21,22,["G1722"]],[22,24,["G3358"]],[24,26,["G1538","G1520"]],[26,27,["G3313"]],[27,28,["G4160"]],[28,29,["G838"]],[29,31,["G3588"]],[31,32,["G4983"]],[32,33,["G1519"]],[33,35,["G3619"]],[35,37,["G1438"]],[37,38,["G1722"]],[38,39,["G26"]]]},{"k":29289,"v":[[0,1,["G5124"]],[1,3,["G3004"]],[3,4,["G3767"]],[4,5,["G2532"]],[5,6,["G3143"]],[6,7,["G1722"]],[7,9,["G2962"]],[9,11,["G5209"]],[11,14,["G3371","G4043"]],[14,15,["G2531","(G2532)"]],[15,16,["G3062"]],[16,17,["G1484"]],[17,18,["G4043"]],[18,19,["G1722"]],[19,21,["G3153"]],[21,23,["G848"]],[23,24,["G3563"]]]},{"k":29290,"v":[[0,2,["G3588"]],[2,3,["G1271"]],[3,4,["G4654"]],[4,5,["G5607"]],[5,6,["G526"]],[6,8,["G3588"]],[8,9,["G2222"]],[9,11,["G2316"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G52"]],[14,16,["G5607"]],[16,17,["G1722"]],[17,18,["G846"]],[18,19,["G1223"]],[19,21,["G3588"]],[21,22,["G4457"]],[22,24,["G846"]],[24,25,["G2588"]]]},{"k":29291,"v":[[0,1,["G3748"]],[1,4,["G524"]],[4,8,["G3860","G1438"]],[8,10,["G766"]],[10,11,["G1519"]],[11,12,["G2039"]],[12,13,["G3956"]],[13,14,["G167"]],[14,15,["G1722"]],[15,16,["G4124"]]]},{"k":29292,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,4,["G3756"]],[4,5,["G3779"]],[5,6,["G3129"]],[6,7,["G5547"]]]},{"k":29293,"v":[[0,3,["G1489"]],[3,7,["G191"]],[7,8,["G846"]],[8,9,["G2532"]],[9,12,["G1321"]],[12,13,["G1722"]],[13,14,["G846"]],[14,15,["G2531"]],[15,17,["G225"]],[17,18,["G2076"]],[18,19,["G1722"]],[19,20,["G2424"]]]},{"k":29294,"v":[[0,2,["G5209"]],[2,4,["G659"]],[4,5,["G2596"]],[5,6,["G3588"]],[6,7,["G4387"]],[7,8,["G391"]],[8,9,["G3588"]],[9,10,["G3820"]],[10,11,["G444"]],[11,14,["G5351"]],[14,15,["G2596"]],[15,17,["G3588"]],[17,18,["G539"]],[18,19,["G1939"]]]},{"k":29295,"v":[[0,1,["G1161"]],[1,3,["G365"]],[3,5,["G3588"]],[5,6,["G4151"]],[6,8,["G5216"]],[8,9,["G3563"]]]},{"k":29296,"v":[[0,1,["G2532"]],[1,5,["G1746"]],[5,6,["G3588"]],[6,7,["G2537"]],[7,8,["G444"]],[8,10,["G2596"]],[10,11,["G2316"]],[11,13,["G2936"]],[13,14,["G1722"]],[14,15,["G1343"]],[15,16,["G2532"]],[16,17,["G225"]],[17,18,["G3742"]]]},{"k":29297,"v":[[0,1,["G1352"]],[1,3,["G659"]],[3,4,["G5579"]],[4,5,["G2980"]],[5,7,["G1538"]],[7,8,["G225"]],[8,9,["G3326"]],[9,10,["G848"]],[10,11,["G4139"]],[11,12,["G3754"]],[12,14,["G2070"]],[14,15,["G3196"]],[15,18,["G240"]]]},{"k":29298,"v":[[0,3,["G3710"]],[3,4,["G2532"]],[4,5,["G264"]],[5,7,["G3361"]],[7,8,["G3361"]],[8,9,["G3588"]],[9,10,["G2246"]],[10,12,["G1931"]],[12,13,["G1909"]],[13,14,["G5216"]],[14,15,["G3950"]]]},{"k":29299,"v":[[0,1,["G3383"]],[1,2,["G1325"]],[2,3,["G5117"]],[3,5,["G3588"]],[5,6,["G1228"]]]},{"k":29300,"v":[[0,4,["G2813"]],[4,5,["G2813"]],[5,7,["G3371"]],[7,8,["G1161"]],[8,9,["G3123"]],[9,12,["G2872"]],[12,13,["G2038"]],[13,16,["G5495"]],[16,21,["G18"]],[21,22,["G2443"]],[22,25,["G2192"]],[25,27,["G3330"]],[27,31,["G2192","G5532"]]]},{"k":29301,"v":[[0,2,["G3361","(G3956)"]],[2,3,["G4550"]],[3,4,["G3056"]],[4,5,["G1607"]],[5,7,["G1537"]],[7,8,["G5216"]],[8,9,["G4750"]],[9,10,["G235"]],[10,11,["G1536"]],[11,14,["G18"]],[14,15,["G4314"]],[15,16,["G3588"]],[16,17,["G5532"]],[17,19,["G3619"]],[19,20,["G2443"]],[20,23,["G1325"]],[23,24,["G5485"]],[24,26,["G3588"]],[26,27,["G191"]]]},{"k":29302,"v":[[0,1,["G2532"]],[1,2,["G3076"]],[2,3,["G3361"]],[3,4,["G3588"]],[4,5,["G40"]],[5,6,["G4151"]],[6,8,["G2316"]],[8,9,["G1722","G3739"]],[9,12,["G4972"]],[12,13,["G1519"]],[13,15,["G2250"]],[15,17,["G629"]]]},{"k":29303,"v":[[0,2,["G3956"]],[2,3,["G4088"]],[3,4,["G2532"]],[4,5,["G2372"]],[5,6,["G2532"]],[6,7,["G3709"]],[7,8,["G2532"]],[8,9,["G2906"]],[9,10,["G2532"]],[10,12,["G988"]],[12,15,["G142"]],[15,16,["G575"]],[16,17,["G5216"]],[17,18,["G4862"]],[18,19,["G3956"]],[19,20,["G2549"]]]},{"k":29304,"v":[[0,1,["G1161"]],[1,2,["G1096"]],[2,4,["G5543"]],[4,7,["G240","G1519"]],[7,8,["G2155"]],[8,9,["G5483"]],[9,11,["G1438"]],[11,12,["G2532"]],[12,13,["G2531"]],[13,14,["G2316"]],[14,17,["G1722","G5547"]],[17,19,["G5483"]],[19,20,["G5213"]]]},{"k":29305,"v":[[0,1,["G1096"]],[1,3,["G3767"]],[3,4,["G3402"]],[4,6,["G2316"]],[6,7,["G5613"]],[7,8,["G27"]],[8,9,["G5043"]]]},{"k":29306,"v":[[0,1,["G2532"]],[1,2,["G4043"]],[2,3,["G1722"]],[3,4,["G26"]],[4,5,["G2531"]],[5,6,["G5547"]],[6,7,["G2532"]],[7,9,["G25"]],[9,10,["G2248"]],[10,11,["G2532"]],[11,13,["G3860"]],[13,14,["G1438"]],[14,15,["G5228"]],[15,16,["G2257"]],[16,18,["G4376"]],[18,19,["G2532"]],[19,21,["G2378"]],[21,23,["G2316"]],[23,24,["G1519"]],[24,26,["G2175"]],[26,27,["G3744"]]]},{"k":29307,"v":[[0,1,["G1161"]],[1,2,["G4202"]],[2,3,["G2532"]],[3,4,["G3956"]],[4,5,["G167"]],[5,6,["G2228"]],[6,7,["G4124"]],[7,13,["G3366","G3687"]],[13,14,["G1722"]],[14,15,["G5213"]],[15,16,["G2531"]],[16,17,["G4241"]],[17,18,["G40"]]]},{"k":29308,"v":[[0,1,["G2532"]],[1,2,["G151"]],[2,3,["G2532"]],[3,5,["G3473"]],[5,6,["G2228"]],[6,7,["G2160"]],[7,11,["G433","G3756"]],[11,12,["G235"]],[12,13,["G3123"]],[13,16,["G2169"]]]},{"k":29309,"v":[[0,1,["G1063"]],[1,2,["G5124"]],[2,4,["G2075","G1097"]],[4,5,["G3754"]],[5,6,["G3756"]],[6,7,["G4205"]],[7,8,["G2228"]],[8,10,["G169"]],[10,11,["G2228"]],[11,13,["G4123"]],[13,14,["G3739"]],[14,15,["G2076"]],[15,17,["G1496"]],[17,18,["G2192"]],[18,19,["G3956"]],[19,20,["G2817"]],[20,21,["G1722"]],[21,22,["G3588"]],[22,23,["G932"]],[23,25,["G5547"]],[25,26,["G2532"]],[26,28,["G2316"]]]},{"k":29310,"v":[[0,3,["G3367"]],[3,4,["G538"]],[4,5,["G5209"]],[5,7,["G2756"]],[7,8,["G3056"]],[8,9,["G1063"]],[9,10,["G1223"]],[10,13,["G5023"]],[13,14,["G2064"]],[14,15,["G3588"]],[15,16,["G3709"]],[16,18,["G2316"]],[18,19,["G1909"]],[19,20,["G3588"]],[20,21,["G5207"]],[21,23,["G543"]]]},{"k":29311,"v":[[0,1,["G1096"]],[1,2,["G3361"]],[2,4,["G3767"]],[4,5,["G4830"]],[5,7,["G846"]]]},{"k":29312,"v":[[0,1,["G1063"]],[1,3,["G2258"]],[3,4,["G4218"]],[4,5,["G4655"]],[5,6,["G1161"]],[6,7,["G3568"]],[7,10,["G5457"]],[10,11,["G1722"]],[11,13,["G2962"]],[13,14,["G4043"]],[14,15,["G5613"]],[15,16,["G5043"]],[16,18,["G5457"]]]},{"k":29313,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G2590"]],[3,5,["G3588"]],[5,6,["G4151"]],[6,8,["G1722"]],[8,9,["G3956"]],[9,10,["G19"]],[10,11,["G2532"]],[11,12,["G1343"]],[12,13,["G2532"]],[13,14,["G225"]]]},{"k":29314,"v":[[0,1,["G1381"]],[1,2,["G5101"]],[2,3,["G2076"]],[3,4,["G2101"]],[4,6,["G3588"]],[6,7,["G2962"]]]},{"k":29315,"v":[[0,1,["G2532"]],[1,4,["G4790","G3361"]],[4,6,["G3588"]],[6,7,["G175"]],[7,8,["G2041"]],[8,10,["G4655"]],[10,11,["G1161"]],[11,12,["G3123","(G2532)"]],[12,13,["G1651"]],[13,14,[]]]},{"k":29316,"v":[[0,1,["G1063"]],[1,3,["G2076"]],[3,5,["G149"]],[5,6,["G2532"]],[6,8,["G3004"]],[8,14,["G1096"]],[14,15,["G5259"]],[15,16,["G846"]],[16,18,["G2931"]]]},{"k":29317,"v":[[0,1,["G1161"]],[1,3,["G3956"]],[3,6,["G1651"]],[6,9,["G5319"]],[9,10,["G5259"]],[10,11,["G3588"]],[11,12,["G5457"]],[12,13,["G1063"]],[13,14,["G3956"]],[14,17,["G5319"]],[17,18,["G2076"]],[18,19,["G5457"]]]},{"k":29318,"v":[[0,1,["G1352"]],[1,3,["G3004"]],[3,4,["G1453"]],[4,7,["G2518"]],[7,8,["G2532"]],[8,9,["G450"]],[9,10,["G1537"]],[10,11,["G3588"]],[11,12,["G3498"]],[12,13,["G2532"]],[13,14,["G5547"]],[14,18,["G2017","G4671"]]]},{"k":29319,"v":[[0,1,["G991"]],[1,2,["G3767"]],[2,3,["G4459"]],[3,5,["G4043"]],[5,6,["G199"]],[6,7,["G3361"]],[7,8,["G5613"]],[8,9,["G781"]],[9,10,["G235"]],[10,11,["G5613"]],[11,12,["G4680"]]]},{"k":29320,"v":[[0,1,["G1805"]],[1,2,["G3588"]],[2,3,["G2540"]],[3,4,["G3754"]],[4,5,["G3588"]],[5,6,["G2250"]],[6,7,["G1526"]],[7,8,["G4190"]]]},{"k":29321,"v":[[0,1,["G1223","G5124"]],[1,2,["G1096"]],[2,4,["G3361"]],[4,5,["G878"]],[5,6,["G235"]],[6,7,["G4920"]],[7,8,["G5101"]],[8,9,["G3588"]],[9,10,["G2307"]],[10,12,["G3588"]],[12,13,["G2962"]],[13,14,[]]]},{"k":29322,"v":[[0,1,["G2532"]],[1,4,["G3182","G3361"]],[4,6,["G3631"]],[6,7,["G1722","G3739"]],[7,8,["G2076"]],[8,9,["G810"]],[9,10,["G235"]],[10,12,["G4137"]],[12,13,["G1722"]],[13,15,["G4151"]]]},{"k":29323,"v":[[0,1,["G2980"]],[1,3,["G1438"]],[3,5,["G5568"]],[5,6,["G2532"]],[6,7,["G5215"]],[7,8,["G2532"]],[8,9,["G4152"]],[9,10,["G5603"]],[10,11,["G103"]],[11,12,["G2532"]],[12,14,["G5567"]],[14,15,["G1722"]],[15,16,["G5216"]],[16,17,["G2588"]],[17,19,["G3588"]],[19,20,["G2962"]]]},{"k":29324,"v":[[0,2,["G2168"]],[2,3,["G3842"]],[3,4,["G5228"]],[4,6,["G3956"]],[6,8,["G2316"]],[8,9,["G2532"]],[9,11,["G3962"]],[11,12,["G1722"]],[12,14,["G3686"]],[14,16,["G2257"]],[16,17,["G2962"]],[17,18,["G2424"]],[18,19,["G5547"]]]},{"k":29325,"v":[[0,2,["G5293"]],[2,5,["G240"]],[5,6,["G1722"]],[6,8,["G5401"]],[8,10,["G2316"]]]},{"k":29326,"v":[[0,1,["G1135"]],[1,3,["G5293"]],[3,6,["G2398"]],[6,7,["G435"]],[7,8,["G5613"]],[8,10,["G3588"]],[10,11,["G2962"]]]},{"k":29327,"v":[[0,1,["G3754"]],[1,2,["G3588"]],[2,3,["G435"]],[3,4,["G2076"]],[4,6,["G2776"]],[6,8,["G3588"]],[8,9,["G1135"]],[9,10,["G2532"]],[10,11,["G5613"]],[11,12,["G5547"]],[12,15,["G2776"]],[15,17,["G3588"]],[17,18,["G1577"]],[18,19,["G2532"]],[19,20,["G846"]],[20,21,["G2076"]],[21,23,["G4990"]],[23,25,["G3588"]],[25,26,["G4983"]]]},{"k":29328,"v":[[0,1,["G235"]],[1,2,["G5618"]],[2,3,["G3588"]],[3,4,["G1577"]],[4,7,["G5293"]],[7,8,["G5547"]],[8,9,["G3779"]],[9,11,["G3588"]],[11,12,["G1135"]],[12,16,["G2398"]],[16,17,["G435"]],[17,18,["G1722"]],[18,20,["G3956"]]]},{"k":29329,"v":[[0,1,["G435"]],[1,2,["G25"]],[2,3,["G1438"]],[3,4,["G1135"]],[4,6,["G2531"]],[6,7,["G5547"]],[7,8,["G2532"]],[8,9,["G25"]],[9,10,["G3588"]],[10,11,["G1577"]],[11,12,["G2532"]],[12,13,["G3860"]],[13,14,["G1438"]],[14,15,["G5228"]],[15,16,["G846"]]]},{"k":29330,"v":[[0,1,["G2443"]],[1,4,["G37"]],[4,6,["G2511"]],[6,7,["G846"]],[7,9,["G3588"]],[9,10,["G3067"]],[10,12,["G5204"]],[12,13,["G1722"]],[13,15,["G4487"]]]},{"k":29331,"v":[[0,1,["G2443"]],[1,4,["G3936"]],[4,5,["G846"]],[5,7,["G1438"]],[7,9,["G1741"]],[9,10,["G1577"]],[10,11,["G3361"]],[11,12,["G2192"]],[12,13,["G4695"]],[13,14,["G2228"]],[14,15,["G4512"]],[15,16,["G2228"]],[16,17,["G5100"]],[17,19,["G5108"]],[19,20,["G235"]],[20,21,["G2443"]],[21,24,["G5600"]],[24,25,["G40"]],[25,26,["G2532"]],[26,28,["G299"]]]},{"k":29332,"v":[[0,1,["G3779"]],[1,2,["G3784"]],[2,3,["G435"]],[3,5,["G25"]],[5,6,["G1438"]],[6,7,["G1135"]],[7,8,["G5613"]],[8,10,["G1438"]],[10,11,["G4983"]],[11,14,["G25"]],[14,15,["G1438"]],[15,16,["G1135"]],[16,17,["G25"]],[17,18,["G1438"]]]},{"k":29333,"v":[[0,1,["G1063"]],[1,3,["G3762"]],[3,5,["G4218"]],[5,6,["G3404"]],[6,8,["G1438"]],[8,9,["G4561"]],[9,10,["G235"]],[10,11,["G1625"]],[11,12,["G2532"]],[12,13,["G2282"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G2531"]],[16,17,["G3588"]],[17,18,["G2962"]],[18,19,["G3588"]],[19,20,["G1577"]]]},{"k":29334,"v":[[0,1,["G3754"]],[1,3,["G2070"]],[3,4,["G3196"]],[4,6,["G846"]],[6,7,["G4983"]],[7,8,["G1537"]],[8,9,["G846"]],[9,10,["G4561"]],[10,11,["G2532"]],[11,12,["G1537"]],[12,13,["G846"]],[13,14,["G3747"]]]},{"k":29335,"v":[[0,3,["G473","G5127"]],[3,6,["G444"]],[6,7,["G2641"]],[7,8,["G848"]],[8,9,["G3962"]],[9,10,["G2532"]],[10,11,["G3384"]],[11,12,["G2532"]],[12,15,["G4347"]],[15,16,["G4314"]],[16,17,["G848"]],[17,18,["G1135"]],[18,19,["G2532"]],[19,21,["G1417"]],[21,23,["G2071"]],[23,24,["G3391"]],[24,25,["G4561"]]]},{"k":29336,"v":[[0,1,["G5124"]],[1,2,["G2076"]],[2,4,["G3173"]],[4,5,["G3466"]],[5,6,["G1161"]],[6,7,["G1473"]],[7,8,["G3004"]],[8,9,["G1519"]],[9,10,["G5547"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G1577"]]]},{"k":29337,"v":[[0,1,["G4133"]],[1,4,["G1538"]],[4,6,["G5210","(G2532)"]],[6,8,["G2596","G1520"]],[8,9,["G3779"]],[9,10,["G25"]],[10,11,["G1438"]],[11,12,["G1135"]],[12,14,["G5613"]],[14,15,["G1438"]],[15,16,["G1161"]],[16,17,["G3588"]],[17,18,["G1135"]],[18,20,["G2443"]],[20,22,["G5399"]],[22,24,["G435"]]]},{"k":29338,"v":[[0,1,["G5043"]],[1,2,["G5219"]],[2,3,["G5216"]],[3,4,["G1118"]],[4,5,["G1722"]],[5,7,["G2962"]],[7,8,["G1063"]],[8,9,["G5124"]],[9,10,["G2076"]],[10,11,["G1342"]]]},{"k":29339,"v":[[0,1,["G5091"]],[1,2,["G4675"]],[2,3,["G3962"]],[3,4,["G2532"]],[4,5,["G3384"]],[5,6,["G3748"]],[6,7,["G2076"]],[7,9,["G4413"]],[9,10,["G1785"]],[10,11,["G1722"]],[11,12,["G1860"]]]},{"k":29340,"v":[[0,1,["G2443"]],[1,4,["G1096"]],[4,5,["G2095"]],[5,7,["G4671"]],[7,8,["G2532"]],[8,10,["(G2071)"]],[10,12,["G3118"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G1093"]]]},{"k":29341,"v":[[0,1,["G2532"]],[1,3,["G3962"]],[3,9,["G3949","G3361","G5216","G5043"]],[9,10,["G235"]],[10,13,["G1625","G846"]],[13,14,["G1722"]],[14,16,["G3809"]],[16,17,["G2532"]],[17,18,["G3559"]],[18,21,["G2962"]]]},{"k":29342,"v":[[0,1,["G1401"]],[1,3,["G5219"]],[3,9,["G2962"]],[9,10,["G2596"]],[10,13,["G4561"]],[13,14,["G3326"]],[14,15,["G5401"]],[15,16,["G2532"]],[16,17,["G5156"]],[17,18,["G1722"]],[18,19,["G572"]],[19,21,["G5216"]],[21,22,["G2588"]],[22,23,["G5613"]],[23,25,["G5547"]]]},{"k":29343,"v":[[0,1,["G3361"]],[1,2,["G2596"]],[2,3,["G3787"]],[3,4,["G5613"]],[4,5,["G441"]],[5,6,["G235"]],[6,7,["G5613"]],[7,9,["G1401"]],[9,11,["G5547"]],[11,12,["G4160"]],[12,13,["G3588"]],[13,14,["G2307"]],[14,16,["G2316"]],[16,17,["G1537"]],[17,19,["G5590"]]]},{"k":29344,"v":[[0,1,["G3326"]],[1,3,["G2133"]],[3,5,["G1398"]],[5,6,["G5613"]],[6,8,["G3588"]],[8,9,["G2962"]],[9,10,["G2532"]],[10,11,["G3756"]],[11,13,["G444"]]]},{"k":29345,"v":[[0,1,["G1492"]],[1,2,["G3754"]],[2,3,["G3739","G5100","G1437"]],[3,5,["G18"]],[5,7,["G1538"]],[7,8,["G4160"]],[8,10,["G5124"]],[10,13,["G2865"]],[13,14,["G3844"]],[14,15,["G3588"]],[15,16,["G2962"]],[16,17,["G1535"]],[17,20,["G1401"]],[20,21,["G1535"]],[21,22,["G1658"]]]},{"k":29346,"v":[[0,1,["G2532"]],[1,3,["G2962"]],[3,4,["G4160"]],[4,5,["G3588"]],[5,7,["G846"]],[7,8,["G4314"]],[8,9,["G846"]],[9,10,["G447"]],[10,11,["G547"]],[11,12,["G1492"]],[12,13,["G3754"]],[13,14,["G5216"]],[14,15,["G2962"]],[15,16,["G2532"]],[16,17,["G2076"]],[17,18,["G1722"]],[18,19,["G3772"]],[19,20,["G2532","G3756"]],[20,21,["G2076"]],[21,25,["G4382"]],[25,26,["G3844"]],[26,27,["G846"]]]},{"k":29347,"v":[[0,1,["G3063"]],[1,2,["G3450"]],[2,3,["G80"]],[3,5,["G1743"]],[5,6,["G1722"]],[6,8,["G2962"]],[8,9,["G2532"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G2904"]],[12,14,["G846"]],[14,15,["G2479"]]]},{"k":29348,"v":[[0,2,["G1746"]],[2,3,["G3588"]],[3,5,["G3833"]],[5,7,["G2316"]],[7,9,["G5209"]],[9,12,["G1410"]],[12,14,["G2476"]],[14,15,["G4314"]],[15,16,["G3588"]],[16,17,["G3180"]],[17,19,["G3588"]],[19,20,["G1228"]]]},{"k":29349,"v":[[0,1,["G3754"]],[1,2,["G2254"]],[2,3,["G2076","G3823"]],[3,4,["G3756"]],[4,5,["G4314"]],[5,6,["G4561"]],[6,7,["G2532"]],[7,8,["G129"]],[8,9,["G235"]],[9,10,["G4314"]],[10,11,["G746"]],[11,12,["G4314"]],[12,13,["G1849"]],[13,14,["G4314"]],[14,15,["G3588"]],[15,16,["G2888"]],[16,18,["G3588"]],[18,19,["G4655"]],[19,21,["G5127"]],[21,22,["G165"]],[22,23,["G4314"]],[23,24,["G4152"]],[24,25,["G4189"]],[25,26,["G1722"]],[26,27,["G2032"]],[27,28,[]]]},{"k":29350,"v":[[0,1,["G1223","G5124"]],[1,3,["G353"]],[3,5,["G3588"]],[5,7,["G3833"]],[7,9,["G2316"]],[9,10,["G2443"]],[10,14,["G1410"]],[14,16,["G436"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G4190"]],[19,20,["G2250"]],[20,21,["G2532"]],[21,23,["G2716"]],[23,24,["G537"]],[24,26,["G2476"]]]},{"k":29351,"v":[[0,1,["G2476"]],[1,2,["G3767"]],[2,4,["G5216"]],[4,5,["G3751"]],[5,7,["G4024"]],[7,8,["G1722"]],[8,9,["G225"]],[9,10,["G2532"]],[10,12,["G1746"]],[12,13,["G3588"]],[13,14,["G2382"]],[14,16,["G1343"]]]},{"k":29352,"v":[[0,1,["G2532"]],[1,3,["G4228"]],[3,4,["G5265"]],[4,5,["G1722"]],[5,7,["G2091"]],[7,9,["G3588"]],[9,10,["G2098"]],[10,12,["G1515"]]]},{"k":29353,"v":[[0,1,["G1909"]],[1,2,["G3956"]],[2,3,["G353"]],[3,4,["G3588"]],[4,5,["G2375"]],[5,7,["G4102"]],[7,8,["G1722","G3739"]],[8,12,["G1410"]],[12,14,["G4570"]],[14,15,["G3956"]],[15,16,["G3588"]],[16,17,["G4448"]],[17,18,["G956"]],[18,20,["G3588"]],[20,21,["G4190"]]]},{"k":29354,"v":[[0,1,["G2532"]],[1,2,["G1209"]],[2,3,["G3588"]],[3,4,["G4030"]],[4,6,["G4992"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G3162"]],[9,11,["G3588"]],[11,12,["G4151"]],[12,14,["G3603"]],[14,16,["G4487"]],[16,18,["G2316"]]]},{"k":29355,"v":[[0,1,["G4336"]],[1,2,["G1223","G3956","G2540"]],[2,3,["G1722"]],[3,4,["G3956"]],[4,5,["G4335"]],[5,6,["G2532"]],[6,7,["G1162"]],[7,8,["G1722"]],[8,10,["G4151"]],[10,11,["G2532"]],[11,12,["G69"]],[12,13,["G1519","G846","G5124"]],[13,14,["G1722"]],[14,15,["G3956"]],[15,16,["G4343"]],[16,17,["G2532"]],[17,18,["G1162"]],[18,19,["G4012"]],[19,20,["G3956"]],[20,21,["G40"]]]},{"k":29356,"v":[[0,1,["G2532"]],[1,2,["G5228"]],[2,3,["G1700"]],[3,4,["G2443"]],[4,5,["G3056"]],[5,8,["G1325"]],[8,10,["G3427"]],[10,12,["(G1722)"]],[12,14,["G457"]],[14,15,["G3450"]],[15,16,["G4750"]],[16,17,["G1722","G3954"]],[17,20,["G1107"]],[20,21,["G3588"]],[21,22,["G3466"]],[22,24,["G3588"]],[24,25,["G2098"]]]},{"k":29357,"v":[[0,1,["G5228"]],[1,2,["G3739"]],[2,6,["G4243"]],[6,7,["G1722"]],[7,8,["G254"]],[8,9,["G2443"]],[9,10,["G1722","G846"]],[10,14,["G3955"]],[14,15,["G5613"]],[15,16,["G3165"]],[16,17,["G1163"]],[17,19,["G2980"]]]},{"k":29358,"v":[[0,1,["G1161"]],[1,2,["G2443"]],[2,3,["G5210"]],[3,4,["G2532"]],[4,6,["G1492"]],[6,8,["G2596","G1691"]],[8,10,["G5101"]],[10,12,["G4238"]],[12,13,["G5190"]],[13,15,["G27"]],[15,16,["G80"]],[16,17,["G2532"]],[17,18,["G4103"]],[18,19,["G1249"]],[19,20,["G1722"]],[20,22,["G2962"]],[22,25,["G1107"]],[25,27,["G5213"]],[27,29,["G3956"]]]},{"k":29359,"v":[[0,1,["G3739"]],[1,4,["G3992"]],[4,5,["G4314"]],[5,6,["G5209"]],[6,7,["G1519"]],[7,10,["G846","G5124"]],[10,11,["G2443"]],[11,14,["G1097"]],[14,16,["G4012","G2257"]],[16,17,["G2532"]],[17,21,["G3870"]],[21,22,["G5216"]],[22,23,["G2588"]]]},{"k":29360,"v":[[0,1,["G1515"]],[1,4,["G3588"]],[4,5,["G80"]],[5,6,["G2532"]],[6,7,["G26"]],[7,8,["G3326"]],[8,9,["G4102"]],[9,10,["G575"]],[10,11,["G2316"]],[11,13,["G3962"]],[13,14,["G2532"]],[14,16,["G2962"]],[16,17,["G2424"]],[17,18,["G5547"]]]},{"k":29361,"v":[[0,1,["G5485"]],[1,3,["G3326"]],[3,4,["G3956"]],[4,7,["G25"]],[7,8,["G2257"]],[8,9,["G2962"]],[9,10,["G2424"]],[10,11,["G5547"]],[11,12,["G1722"]],[12,13,["G861"]],[13,14,["G281"]]]},{"k":29362,"v":[[0,1,["G3972"]],[1,2,["G2532"]],[2,3,["G5095"]],[3,5,["G1401"]],[5,7,["G2424"]],[7,8,["G5547"]],[8,10,["G3956"]],[10,11,["G3588"]],[11,12,["G40"]],[12,13,["G1722"]],[13,14,["G5547"]],[14,15,["G2424"]],[15,17,["G5607"]],[17,18,["G1722"]],[18,19,["G5375"]],[19,20,["G4862"]],[20,22,["G1985"]],[22,23,["G2532"]],[23,24,["G1249"]]]},{"k":29363,"v":[[0,1,["G5485"]],[1,4,["G5213"]],[4,5,["G2532"]],[5,6,["G1515"]],[6,7,["G575"]],[7,8,["G2316"]],[8,9,["G2257"]],[9,10,["G3962"]],[10,11,["G2532"]],[11,14,["G2962"]],[14,15,["G2424"]],[15,16,["G5547"]]]},{"k":29364,"v":[[0,2,["G2168"]],[2,3,["G3450"]],[3,4,["G2316"]],[4,5,["G1909"]],[5,6,["G3956"]],[6,7,["G3417"]],[7,9,["G5216"]]]},{"k":29365,"v":[[0,1,["G3842"]],[1,2,["G1722"]],[2,3,["G3956"]],[3,4,["G1162"]],[4,6,["G3450"]],[6,7,["G5228"]],[7,8,["G5216"]],[8,9,["G3956"]],[9,10,["G4160"]],[10,11,["G1162"]],[11,12,["G3326"]],[12,13,["G5479"]]]},{"k":29366,"v":[[0,1,["G1909"]],[1,2,["G5216"]],[2,3,["G2842"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G2098"]],[6,7,["G575"]],[7,9,["G4413"]],[9,10,["G2250"]],[10,11,["G891"]],[11,12,["G3568"]]]},{"k":29367,"v":[[0,2,["G3982"]],[2,6,["G5124","G848"]],[6,7,["G3754"]],[7,11,["G1728"]],[11,13,["G18"]],[13,14,["G2041"]],[14,15,["G1722"]],[15,16,["G5213"]],[16,18,["G2005"]],[18,20,["G891"]],[20,22,["G2250"]],[22,24,["G2424"]],[24,25,["G5547"]]]},{"k":29368,"v":[[0,2,["G2531"]],[2,4,["G2076"]],[4,5,["G1342"]],[5,7,["G1698"]],[7,9,["G5426"]],[9,10,["G5124"]],[10,11,["G5228"]],[11,12,["G5216"]],[12,13,["G3956"]],[13,15,["G3165"]],[15,16,["G2192"]],[16,17,["G5209"]],[17,18,["G1722"]],[18,20,["G2588"]],[20,23,["G5037"]],[23,24,["G1722"]],[24,25,["G3450"]],[25,26,["G1199"]],[26,27,["G2532"]],[27,29,["G3588"]],[29,30,["G627"]],[30,31,["G2532"]],[31,32,["G951"]],[32,34,["G3588"]],[34,35,["G2098"]],[35,36,["G5209"]],[36,37,["G3956"]],[37,38,["G5607"]],[38,39,["G4791"]],[39,41,["G3450"]],[41,42,["G5485"]]]},{"k":29369,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,3,["G2076"]],[3,4,["G3450"]],[4,5,["G3144"]],[5,6,["G5613"]],[6,10,["G1971"]],[10,11,["G5209"]],[11,12,["G3956"]],[12,13,["G1722"]],[13,15,["G4698"]],[15,17,["G2424"]],[17,18,["G5547"]]]},{"k":29370,"v":[[0,1,["G2532"]],[1,2,["G5124"]],[2,4,["G4336"]],[4,5,["G2443"]],[5,6,["G5216"]],[6,7,["G26"]],[7,9,["G4052"]],[9,10,["G2089"]],[10,11,["G3123"]],[11,12,["G2532"]],[12,13,["G3123"]],[13,14,["G1722"]],[14,15,["G1922"]],[15,16,["G2532"]],[16,18,["G3956"]],[18,19,["G144"]]]},{"k":29371,"v":[[0,2,["G5209"]],[2,4,["G1381"]],[4,8,["G1308"]],[8,9,["G2443"]],[9,12,["G5600"]],[12,13,["G1506"]],[13,14,["G2532"]],[14,16,["G677"]],[16,17,["G1519"]],[17,19,["G2250"]],[19,21,["G5547"]]]},{"k":29372,"v":[[0,2,["G4137"]],[2,5,["G2590"]],[5,7,["G1343"]],[7,8,["G3588"]],[8,10,["G1223"]],[10,11,["G2424"]],[11,12,["G5547"]],[12,13,["G1519"]],[13,15,["G1391"]],[15,16,["G2532"]],[16,17,["G1868"]],[17,19,["G2316"]]]},{"k":29373,"v":[[0,1,["G1161"]],[1,3,["G1014"]],[3,4,["G5209"]],[4,6,["G1097"]],[6,7,["G80"]],[7,8,["G3754"]],[8,10,["G3588"]],[10,13,["G2596"]],[13,14,["G1691"]],[14,17,["G2064"]],[17,18,["G3123"]],[18,19,["G1519"]],[19,21,["G4297"]],[21,23,["G3588"]],[23,24,["G2098"]]]},{"k":29374,"v":[[0,2,["G5620"]],[2,3,["G3450"]],[3,4,["G1199"]],[4,5,["G1722"]],[5,6,["G5547"]],[6,7,["G1096"]],[7,8,["G5318"]],[8,9,["G1722"]],[9,10,["G3650"]],[10,11,["G3588"]],[11,12,["G4232"]],[12,13,["G2532"]],[13,15,["G3956"]],[15,16,["G3062"]],[16,17,[]]]},{"k":29375,"v":[[0,1,["G2532"]],[1,2,["G4119"]],[2,4,["G3588"]],[4,5,["G80"]],[5,6,["G1722"]],[6,8,["G2962"]],[8,10,["G3982"]],[10,12,["G3450"]],[12,13,["G1199"]],[13,17,["G5111","G4056"]],[17,19,["G2980"]],[19,20,["G3588"]],[20,21,["G3056"]],[21,23,["G870"]]]},{"k":29376,"v":[[0,1,["G5100"]],[1,2,["G3303"]],[2,3,["G2784"]],[3,4,["G5547"]],[4,5,["G2532"]],[5,6,["G1223"]],[6,7,["G5355"]],[7,8,["G2532"]],[8,9,["G2054"]],[9,10,["G1161"]],[10,11,["G5100"]],[11,12,["G2532"]],[12,13,["G1223"]],[13,15,["G2107"]]]},{"k":29377,"v":[[0,2,["G3588","G3303"]],[2,3,["G2605"]],[3,4,["G5547"]],[4,5,["G1537"]],[5,6,["G2052"]],[6,7,["G3756"]],[7,8,["G55"]],[8,9,["G3633"]],[9,11,["G2018"]],[11,12,["G2347"]],[12,14,["G3450"]],[14,15,["G1199"]]]},{"k":29378,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G1537"]],[4,5,["G26"]],[5,6,["G1492"]],[6,7,["G3754"]],[7,10,["G2749"]],[10,11,["G1519"]],[11,13,["G627"]],[13,15,["G3588"]],[15,16,["G2098"]]]},{"k":29379,"v":[[0,1,["G5101"]],[1,2,["G1063"]],[2,3,["G4133"]],[3,4,["G3956"]],[4,5,["G5158"]],[5,6,["G1535"]],[6,8,["G4392"]],[8,9,["G1535"]],[9,11,["G225"]],[11,12,["G5547"]],[12,14,["G2605"]],[14,15,["G2532"]],[15,17,["G1722","G5129"]],[17,19,["G5463"]],[19,20,["G235"]],[20,21,["G2532"]],[21,23,["G5463"]]]},{"k":29380,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G5124"]],[5,7,["G576"]],[7,8,["G1519"]],[8,9,["G3427"]],[9,10,["G4991"]],[10,11,["G1223"]],[11,12,["G5216"]],[12,13,["G1162"]],[13,14,["G2532"]],[14,16,["G2024"]],[16,18,["G3588"]],[18,19,["G4151"]],[19,21,["G2424"]],[21,22,["G5547"]]]},{"k":29381,"v":[[0,1,["G2596"]],[1,3,["G3450"]],[3,5,["G603"]],[5,6,["G2532"]],[6,8,["G1680"]],[8,9,["G3754"]],[9,10,["G1722"]],[10,11,["G3762"]],[11,15,["G153"]],[15,16,["G235"]],[16,18,["G1722"]],[18,19,["G3956"]],[19,20,["G3954"]],[20,21,["G5613"]],[21,22,["G3842"]],[22,24,["G3568"]],[24,25,["G2532"]],[25,26,["G5547"]],[26,29,["G3170"]],[29,30,["G1722"]],[30,31,["G3450"]],[31,32,["G4983"]],[32,33,["G1535"]],[33,36,["G1223"]],[36,37,["G2222"]],[37,38,["G1535"]],[38,39,["G1223"]],[39,40,["G2288"]]]},{"k":29382,"v":[[0,1,["G1063"]],[1,3,["G1698"]],[3,5,["G2198"]],[5,7,["G5547"]],[7,8,["G2532"]],[8,10,["G599"]],[10,12,["G2771"]]]},{"k":29383,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G2198"]],[4,5,["G1722"]],[5,7,["G4561"]],[7,8,["G5124"]],[8,11,["G2590"]],[11,13,["G3427"]],[13,14,["G2041"]],[14,15,["G2532"]],[15,16,["G5101"]],[16,19,["G138"]],[19,21,["G1107"]],[21,22,["G3756"]]]},{"k":29384,"v":[[0,1,["G1063"]],[1,6,["G4912"]],[6,7,["G1537"]],[7,8,["G1417"]],[8,9,["G2192"]],[9,11,["G1939"]],[11,13,["G360"]],[13,14,["G2532"]],[14,16,["G1511"]],[16,17,["G4862"]],[17,18,["G5547"]],[18,21,["G4183","G3123"]],[21,22,["G2909"]]]},{"k":29385,"v":[[0,1,["G1161"]],[1,3,["G1961"]],[3,4,["G1722"]],[4,5,["G3588"]],[5,6,["G4561"]],[6,9,["G316"]],[9,10,["G1223"]],[10,11,["G5209"]]]},{"k":29386,"v":[[0,1,["G2532"]],[1,4,["G3982","G5124"]],[4,6,["G1492"]],[6,7,["G3754"]],[7,10,["G3306"]],[10,11,["G2532"]],[11,13,["G4839"]],[13,14,["G5213"]],[14,15,["G3956"]],[15,16,["G1519"]],[16,17,["G5216"]],[17,18,["G4297"]],[18,19,["G2532"]],[19,20,["G5479"]],[20,22,["G4102"]]]},{"k":29387,"v":[[0,1,["G2443"]],[1,2,["G5216"]],[2,3,["G2745"]],[3,7,["G4052"]],[7,8,["G1722"]],[8,9,["G2424"]],[9,10,["G5547"]],[10,11,["G1722"]],[11,12,["G1698"]],[12,13,["G1223"]],[13,14,["G1699"]],[14,15,["G3952"]],[15,16,["G4314"]],[16,17,["G5209"]],[17,18,["G3825"]]]},{"k":29388,"v":[[0,1,["G3440"]],[1,5,["G4176"]],[5,8,["G516"]],[8,9,["G3588"]],[9,10,["G2098"]],[10,12,["G5547"]],[12,13,["G2443"]],[13,14,["G1535"]],[14,16,["G2064"]],[16,17,["G2532"]],[17,18,["G1492"]],[18,19,["G5209"]],[19,21,["G1535"]],[21,23,["G548"]],[23,26,["G191"]],[26,29,["G5216","G4012"]],[29,30,["G3754"]],[30,33,["G4739"]],[33,34,["G1722"]],[34,35,["G1520"]],[35,36,["G4151"]],[36,38,["G3391"]],[38,39,["G5590"]],[39,41,["G4866"]],[41,43,["G3588"]],[43,44,["G4102"]],[44,46,["G3588"]],[46,47,["G2098"]]]},{"k":29389,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G3367"]],[3,4,["G4426","G3361"]],[4,5,["G5259"]],[5,7,["G480"]],[7,8,["G3748"]],[8,9,["G2076"]],[9,11,["G846"]],[11,12,["(G3303)"]],[12,14,["G1732"]],[14,16,["G684"]],[16,17,["G1161"]],[17,19,["G5213"]],[19,21,["G4991"]],[21,22,["G2532"]],[22,23,["G5124"]],[23,24,["G575"]],[24,25,["G2316"]]]},{"k":29390,"v":[[0,1,["G3754"]],[1,3,["G5213"]],[3,6,["G5483"]],[6,9,["G5228"]],[9,11,["G5547"]],[11,12,["G3756"]],[12,13,["G3440"]],[13,15,["G4100"]],[15,16,["G1519"]],[16,17,["G846"]],[17,18,["G235"]],[18,19,["G2532"]],[19,21,["G3958"]],[21,24,["G5228","G846"]]]},{"k":29391,"v":[[0,1,["G2192"]],[1,2,["G3588"]],[2,3,["G846"]],[3,4,["G73"]],[4,5,["G3634"]],[5,7,["G1492"]],[7,8,["G1722"]],[8,9,["G1698"]],[9,10,["G2532"]],[10,11,["G3568"]],[11,12,["G191"]],[12,15,["G1722"]],[15,16,["G1698"]]]},{"k":29392,"v":[[0,5,["G1536","G3767"]],[5,6,["G3874"]],[6,7,["G1722"]],[7,8,["G5547"]],[8,10,["G1536"]],[10,11,["G3890"]],[11,13,["G26"]],[13,15,["G1536"]],[15,16,["G2842"]],[16,19,["G4151"]],[19,21,["G1536"]],[21,22,["G4698"]],[22,23,["G2532"]],[23,24,["G3628"]]]},{"k":29393,"v":[[0,1,["G4137"]],[1,3,["G3450"]],[3,4,["G5479"]],[4,5,["G2443"]],[5,8,["G5426","G846"]],[8,9,["G2192"]],[9,10,["G3588"]],[10,11,["G846"]],[11,12,["G26"]],[12,16,["G4861"]],[16,18,["G1520"]],[18,19,["G5426"]]]},{"k":29394,"v":[[0,2,["G3367"]],[2,5,["G2596"]],[5,6,["G2052"]],[6,7,["G2228"]],[7,8,["G2754"]],[8,9,["G235"]],[9,13,["G5012"]],[13,17,["G240","G2233"]],[17,18,["G5242"]],[18,20,["G1438"]]]},{"k":29395,"v":[[0,1,["G4648"]],[1,2,["G3361"]],[2,4,["G1538"]],[4,8,["G1438"]],[8,9,["G235"]],[9,11,["G1538"]],[11,12,["G2532"]],[12,17,["G2087"]]]},{"k":29396,"v":[[0,0,["(G1063)"]],[0,4,["G5426","G5124"]],[4,5,["G1722"]],[5,6,["G5213"]],[6,7,["G3739"]],[7,9,["G2532"]],[9,10,["G1722"]],[10,11,["G5547"]],[11,12,["G2424"]]]},{"k":29397,"v":[[0,1,["G3739"]],[1,2,["G5225"]],[2,3,["G1722"]],[3,5,["G3444"]],[5,7,["G2316"]],[7,8,["G2233"]],[8,10,["G3756"]],[10,11,["G725"]],[11,13,["G1511"]],[13,14,["G2470"]],[14,16,["G2316"]]]},{"k":29398,"v":[[0,1,["G235"]],[1,6,["G2758","G1438"]],[6,8,["G2983"]],[8,12,["G3444"]],[12,15,["G1401"]],[15,18,["G1096"]],[18,19,["G1722"]],[19,21,["G3667"]],[21,23,["G444"]]]},{"k":29399,"v":[[0,1,["G2532"]],[1,3,["G2147"]],[3,5,["G4976"]],[5,6,["G5613"]],[6,8,["G444"]],[8,10,["G5013"]],[10,11,["G1438"]],[11,13,["G1096"]],[13,14,["G5255"]],[14,15,["G3360"]],[15,16,["G2288"]],[16,17,["G1161"]],[17,19,["G2288"]],[19,22,["G4716"]]]},{"k":29400,"v":[[0,1,["G1352"]],[1,2,["G2316"]],[2,3,["G2532"]],[3,6,["G5251"]],[6,7,["G846"]],[7,8,["G2532"]],[8,9,["G5483"]],[9,10,["G846"]],[10,12,["G3686"]],[12,13,["G3588"]],[13,15,["G5228"]],[15,16,["G3956"]],[16,17,["G3686"]]]},{"k":29401,"v":[[0,1,["G2443"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G3686"]],[4,6,["G2424"]],[6,7,["G3956"]],[7,8,["G1119"]],[8,10,["G2578"]],[10,14,["G2032"]],[14,15,["G2532"]],[15,18,["G1919"]],[18,19,["G2532"]],[19,23,["G2709"]]]},{"k":29402,"v":[[0,1,["G2532"]],[1,3,["G3956"]],[3,4,["G1100"]],[4,6,["G1843"]],[6,7,["G3754"]],[7,8,["G2424"]],[8,9,["G5547"]],[9,11,["G2962"]],[11,12,["G1519"]],[12,14,["G1391"]],[14,16,["G2316"]],[16,18,["G3962"]]]},{"k":29403,"v":[[0,1,["G5620"]],[1,2,["G3450"]],[2,3,["G27"]],[3,4,["G2531"]],[4,7,["G3842"]],[7,8,["G5219"]],[8,9,["G3361"]],[9,10,["G5613"]],[10,11,["G1722"]],[11,12,["G3450"]],[12,13,["G3952"]],[13,14,["G3440"]],[14,15,["G235"]],[15,16,["G3568"]],[16,17,["G4183"]],[17,18,["G3123"]],[18,19,["G1722"]],[19,20,["G3450"]],[20,21,["G666"]],[21,23,["G2716"]],[23,25,["G1438"]],[25,26,["G4991"]],[26,27,["G3326"]],[27,28,["G5401"]],[28,29,["G2532"]],[29,30,["G5156"]]]},{"k":29404,"v":[[0,1,["G1063"]],[1,3,["G2076"]],[3,4,["G2316"]],[4,6,["G1754"]],[6,7,["G1722"]],[7,8,["G5213"]],[8,9,["G2532"]],[9,11,["G2309"]],[11,12,["G2532"]],[12,14,["G1754"]],[14,16,["G5228"]],[16,18,["G2107"]]]},{"k":29405,"v":[[0,1,["G4160"]],[1,3,["G3956"]],[3,4,["G5565"]],[4,5,["G1112"]],[5,6,["G2532"]],[6,7,["G1261"]]]},{"k":29406,"v":[[0,1,["G2443"]],[1,4,["G1096"]],[4,5,["G273"]],[5,6,["G2532"]],[6,7,["G185"]],[7,9,["G5043"]],[9,11,["G2316"]],[11,13,["G298"]],[13,14,["G1722"]],[14,16,["G3319"]],[16,19,["G4646"]],[19,20,["G2532"]],[20,21,["G1294"]],[21,22,["G1074"]],[22,23,["G1722"]],[23,24,["G3739"]],[24,26,["G5316"]],[26,27,["G5613"]],[27,28,["G5458"]],[28,29,["G1722"]],[29,31,["G2889"]]]},{"k":29407,"v":[[0,2,["G1907"]],[2,4,["G3056"]],[4,6,["G2222"]],[6,7,["G3754"]],[7,8,["G1698"]],[8,10,["G1519","G2745"]],[10,11,["G1519"]],[11,13,["G2250"]],[13,15,["G5547"]],[15,16,["G3754"]],[16,19,["G3756"]],[19,20,["G5143"]],[20,21,["G1519"]],[21,22,["G2756"]],[22,23,["G3761"]],[23,24,["G2872"]],[24,25,["G1519"]],[25,26,["G2756"]]]},{"k":29408,"v":[[0,1,["G235"]],[1,3,["G1499"]],[3,6,["G4689"]],[6,7,["G1909"]],[7,8,["G3588"]],[8,9,["G2378"]],[9,10,["G2532"]],[10,11,["G3009"]],[11,13,["G5216"]],[13,14,["G4102"]],[14,16,["G5463"]],[16,17,["G2532"]],[17,19,["G4796"]],[19,20,["G5213"]],[20,21,["G3956"]]]},{"k":29409,"v":[[0,0,["(G1161)"]],[0,2,["G3588"]],[2,4,["G846"]],[4,5,["G2532"]],[5,7,["G5210"]],[7,8,["G5463"]],[8,9,["G2532"]],[9,11,["G4796"]],[11,12,["G3427"]]]},{"k":29410,"v":[[0,1,["G1161"]],[1,3,["G1679"]],[3,4,["G1722"]],[4,6,["G2962"]],[6,7,["G2424"]],[7,9,["G3992"]],[9,10,["G5095"]],[10,11,["G5030"]],[11,13,["G5213"]],[13,14,["G2443"]],[14,16,["G2504"]],[16,21,["G2174"]],[21,24,["G1097"]],[24,26,["G4012","G5216"]]]},{"k":29411,"v":[[0,1,["G1063"]],[1,3,["G2192"]],[3,5,["G3762"]],[5,6,["G2473"]],[6,7,["G3748"]],[7,9,["G1104"]],[9,10,["G3309"]],[10,13,["G4012","G5216"]]]},{"k":29412,"v":[[0,1,["G1063"]],[1,2,["G3956"]],[2,3,["G2212"]],[3,5,["G1438"]],[5,6,["G3756"]],[6,8,["G3588"]],[8,11,["G2424"]],[11,12,["G5547"]]]},{"k":29413,"v":[[0,1,["G1161"]],[1,3,["G1097"]],[3,4,["G3588"]],[4,5,["G1382"]],[5,7,["G846"]],[7,8,["G3754"]],[8,9,["G5613"]],[9,11,["G5043"]],[11,14,["G3962"]],[14,17,["G1398"]],[17,18,["G4862"]],[18,19,["G1698"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G2098"]]]},{"k":29414,"v":[[0,1,["G5126"]],[1,2,["(G3767)"]],[2,4,["G1679"]],[4,6,["G3992"]],[6,7,["G1824"]],[7,10,["G5613"]],[10,13,["G542","G302"]],[13,18,["G4012"]],[18,19,["G1691"]]]},{"k":29415,"v":[[0,1,["G1161"]],[1,3,["G3982"]],[3,4,["G1722"]],[4,6,["G2962"]],[6,7,["G3754"]],[7,9,["G2532"]],[9,10,["G846"]],[10,12,["G2064"]],[12,13,["G5030"]]]},{"k":29416,"v":[[0,1,["G1161"]],[1,3,["G2233"]],[3,5,["G316"]],[5,7,["G3992"]],[7,8,["G4314"]],[8,9,["G5209"]],[9,10,["G1891"]],[10,11,["G3450"]],[11,12,["G80"]],[12,13,["G2532"]],[13,16,["G4904"]],[16,17,["G2532"]],[17,18,["G4961"]],[18,19,["G1161"]],[19,20,["G5216"]],[20,21,["G652"]],[21,22,["G2532"]],[22,25,["G3011"]],[25,27,["G3450"]],[27,28,["G5532"]]]},{"k":29417,"v":[[0,1,["G1894"]],[1,4,["G2258","G1971"]],[4,5,["G5209"]],[5,6,["G3956"]],[6,7,["G2532"]],[7,11,["G85"]],[11,12,["G1360"]],[12,16,["G191"]],[16,17,["G3754"]],[17,21,["G770"]]]},{"k":29418,"v":[[0,1,["G1063"]],[1,2,["G2532"]],[2,5,["G770"]],[5,7,["G3897"]],[7,8,["G2288"]],[8,9,["G235"]],[9,10,["G2316"]],[10,12,["G1653"]],[12,14,["G846"]],[14,15,["G1161"]],[15,16,["G3756"]],[16,18,["G846"]],[18,19,["G3440"]],[19,20,["G235"]],[20,22,["G1691"]],[22,23,["G2532"]],[23,24,["G3363"]],[24,27,["G2192"]],[27,28,["G3077"]],[28,29,["G1909"]],[29,30,["G3077"]]]},{"k":29419,"v":[[0,2,["G3992"]],[2,3,["G846"]],[3,4,["G3767"]],[4,7,["G4708"]],[7,8,["G2443"]],[8,11,["G1492"]],[11,12,["G846"]],[12,13,["G3825"]],[13,16,["G5463"]],[16,19,["G2504"]],[19,21,["G5600"]],[21,24,["G253"]]]},{"k":29420,"v":[[0,1,["G4327"]],[1,2,["G846"]],[2,3,["G3767"]],[3,4,["G1722"]],[4,6,["G2962"]],[6,7,["G3326"]],[7,8,["G3956"]],[8,9,["G5479"]],[9,10,["G2532"]],[10,11,["G2192"]],[11,12,["G5108"]],[12,14,["G1784"]]]},{"k":29421,"v":[[0,1,["G3754"]],[1,2,["G1223"]],[2,3,["G3588"]],[3,4,["G2041"]],[4,6,["G5547"]],[6,9,["G1448"]],[9,10,["G3360"]],[10,11,["G2288"]],[11,13,["G3851"]],[13,15,["G5590"]],[15,16,["G2443"]],[16,17,["G378"]],[17,18,["G5216"]],[18,19,["G5303"]],[19,21,["G3009"]],[21,22,["G4314"]],[22,23,["G3165"]]]},{"k":29422,"v":[[0,1,["G3063"]],[1,2,["G3450"]],[2,3,["G80"]],[3,4,["G5463"]],[4,5,["G1722"]],[5,7,["G2962"]],[7,9,["G1125"]],[9,10,["G3588"]],[10,12,["G846"]],[12,14,["G5213"]],[14,16,["G1698"]],[16,17,["G3303"]],[17,19,["G3756"]],[19,20,["G3636"]],[20,21,["G1161"]],[21,23,["G5213"]],[23,26,["G804"]]]},{"k":29423,"v":[[0,1,["G991"]],[1,3,["G2965"]],[3,4,["G991"]],[4,6,["G2556"]],[6,7,["G2040"]],[7,8,["G991"]],[8,10,["G3588"]],[10,11,["G2699"]]]},{"k":29424,"v":[[0,1,["G1063"]],[1,2,["G2249"]],[2,3,["G2070"]],[3,4,["G3588"]],[4,5,["G4061"]],[5,7,["G3000"]],[7,8,["G2316"]],[8,11,["G4151"]],[11,12,["G2532"]],[12,13,["G2744"]],[13,14,["G1722"]],[14,15,["G5547"]],[15,16,["G2424"]],[16,17,["G2532"]],[17,20,["G3982","G3756"]],[20,21,["G1722"]],[21,23,["G4561"]]]},{"k":29425,"v":[[0,1,["G2539"]],[1,2,["G1473"]],[2,4,["G2532"]],[4,5,["G2192"]],[5,6,["G4006"]],[6,7,["G1722"]],[7,9,["G4561"]],[9,11,["G1536"]],[11,13,["G243"]],[13,14,["G1380"]],[14,21,["G3982"]],[21,22,["G1722"]],[22,24,["G4561"]],[24,25,["G1473"]],[25,26,["G3123"]]]},{"k":29426,"v":[[0,1,["G4061"]],[1,4,["G3637"]],[4,5,["G1537"]],[5,7,["G1085"]],[7,9,["G2474"]],[9,12,["G5443"]],[12,14,["G958"]],[14,16,["G1445"]],[16,17,["G1537"]],[17,19,["G1445"]],[19,21,["G2596"]],[21,23,["G3551"]],[23,25,["G5330"]]]},{"k":29427,"v":[[0,1,["G2596"]],[1,2,["G2205"]],[2,3,["G1377"]],[3,4,["G3588"]],[4,5,["G1577"]],[5,6,["G2596"]],[6,8,["G1343"]],[8,9,["G3588"]],[9,11,["G1722"]],[11,13,["G3551"]],[13,14,["G273"]]]},{"k":29428,"v":[[0,1,["G235"]],[1,3,["G3748"]],[3,4,["G2258"]],[4,5,["G2771"]],[5,7,["G3427"]],[7,8,["G5023"]],[8,10,["G2233"]],[10,11,["G2209"]],[11,12,["G1223"]],[12,13,["G5547"]]]},{"k":29429,"v":[[0,1,["G235"]],[1,2,["G3304"]],[2,3,["G2532"]],[3,5,["G2233"]],[5,7,["G3956"]],[7,8,["(G1511)"]],[8,9,["G2209"]],[9,10,["G1223"]],[10,11,["G3588"]],[11,12,["G5242"]],[12,14,["G3588"]],[14,15,["G1108"]],[15,17,["G5547"]],[17,18,["G2424"]],[18,19,["G3450"]],[19,20,["G2962"]],[20,21,["G1223"]],[21,22,["G3739"]],[22,27,["G2210"]],[27,30,["G3956"]],[30,31,["G2532"]],[31,33,["G2233"]],[33,34,["(G1511)"]],[34,36,["G4657"]],[36,37,["G2443"]],[37,40,["G2770"]],[40,41,["G5547"]]]},{"k":29430,"v":[[0,1,["G2532"]],[1,3,["G2147"]],[3,4,["G1722"]],[4,5,["G846"]],[5,6,["G3361"]],[6,7,["G2192"]],[7,9,["G1699"]],[9,10,["G1343"]],[10,11,["G3588"]],[11,13,["G1537"]],[13,15,["G3551"]],[15,16,["G235"]],[16,17,["G3588"]],[17,20,["G1223"]],[20,22,["G4102"]],[22,24,["G5547"]],[24,25,["G3588"]],[25,26,["G1343"]],[26,29,["G1537"]],[29,30,["G2316"]],[30,31,["G1909"]],[31,32,["G4102"]]]},{"k":29431,"v":[[0,4,["G1097"]],[4,5,["G846"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G1411"]],[8,10,["G846"]],[10,11,["G386"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G2842"]],[14,16,["G846"]],[16,17,["G3804"]],[17,20,["G4833"]],[20,22,["G846"]],[22,23,["G2288"]]]},{"k":29432,"v":[[0,1,["G1487"]],[1,4,["G4459"]],[4,7,["G2658"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G1815"]],[10,12,["G3588"]],[12,13,["G3498"]]]},{"k":29433,"v":[[0,1,["G3756"]],[1,3,["G3754"]],[3,6,["G2235"]],[6,7,["G2983"]],[7,8,["G2228"]],[8,11,["G5048","G2235"]],[11,12,["G1161"]],[12,15,["G1377"]],[15,17,["G1499"]],[17,20,["G2638"]],[20,22,["G1909"]],[22,23,["G3739"]],[23,24,["G2532"]],[24,27,["G2638"]],[27,28,["G5259"]],[28,29,["G5547"]],[29,30,["G2424"]]]},{"k":29434,"v":[[0,1,["G80"]],[1,2,["G1473"]],[2,3,["G3049"]],[3,4,["G3756"]],[4,5,["G1683"]],[5,8,["G2638"]],[8,9,["G1161"]],[9,12,["G1520"]],[12,15,["G1950"]],[15,20,["G3694","G3303"]],[20,21,["G1161"]],[21,23,["G1901"]],[23,29,["G1715"]]]},{"k":29435,"v":[[0,2,["G1377"]],[2,3,["G2596"]],[3,5,["G4649"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G1017"]],[8,10,["G3588"]],[10,11,["G507"]],[11,12,["G2821"]],[12,14,["G2316"]],[14,15,["G1722"]],[15,16,["G5547"]],[16,17,["G2424"]]]},{"k":29436,"v":[[0,3,["G3767"]],[3,6,["G3745"]],[6,8,["G5046"]],[8,11,["G5426","G5124"]],[11,12,["G2532"]],[12,16,["G1536"]],[16,20,["G5426","G2088"]],[20,21,["G2316"]],[21,23,["G601"]],[23,24,["G2532"]],[24,25,["G5124"]],[25,27,["G5213"]]]},{"k":29437,"v":[[0,1,["G4133"]],[1,2,["G1519","G3739"]],[2,6,["G5348"]],[6,9,["G4748"]],[9,11,["G3588"]],[11,12,["G846"]],[12,13,["G2583"]],[13,16,["G5426"]],[16,17,["G3588"]],[17,19,["G846"]]]},{"k":29438,"v":[[0,1,["G80"]],[1,2,["G1096"]],[2,4,["G4831"]],[4,6,["G3450"]],[6,7,["G2532"]],[7,8,["G4648"]],[8,11,["G4043"]],[11,12,["(G3779)"]],[12,13,["G2531"]],[13,15,["G2192"]],[15,16,["G2248"]],[16,19,["G5179"]]]},{"k":29439,"v":[[0,1,["G1063"]],[1,2,["G4183"]],[2,3,["G4043"]],[3,5,["G3739"]],[5,8,["G3004"]],[8,9,["G5213"]],[9,10,["G4178"]],[10,11,["G1161"]],[11,12,["G3568"]],[12,13,["G3004"]],[13,15,["G2532"]],[15,16,["G2799"]],[16,20,["G3588"]],[20,21,["G2190"]],[21,23,["G3588"]],[23,24,["G4716"]],[24,26,["G5547"]]]},{"k":29440,"v":[[0,1,["G3739"]],[1,2,["G5056"]],[2,4,["G684"]],[4,5,["G3739"]],[5,6,["G2316"]],[6,9,["G2836"]],[9,10,["G2532"]],[10,12,["G1391"]],[12,14,["G1722"]],[14,15,["G846"]],[15,16,["G152"]],[16,18,["G5426"]],[18,20,["G1919"]]]},{"k":29441,"v":[[0,1,["G1063"]],[1,2,["G2257"]],[2,3,["G4175"]],[3,4,["G5225"]],[4,5,["G1722"]],[5,6,["G3772"]],[6,7,["G1537"]],[7,8,["G3739"]],[8,9,["G2532"]],[9,12,["G553"]],[12,14,["G4990"]],[14,16,["G2962"]],[16,17,["G2424"]],[17,18,["G5547"]]]},{"k":29442,"v":[[0,1,["G3739"]],[1,3,["G3345"]],[3,4,["G2257"]],[4,5,["G5014"]],[5,6,["G4983"]],[6,8,["G846"]],[8,11,["G1096"]],[11,13,["G4832"]],[13,14,["G846"]],[14,15,["G1391"]],[15,16,["G4983"]],[16,17,["G2596"]],[17,19,["G3588"]],[19,20,["G1753"]],[20,21,["G3588"]],[21,22,["G846"]],[22,24,["G1410"]],[24,25,["G2532"]],[25,27,["G5293"]],[27,29,["G3956"]],[29,31,["G1438"]]]},{"k":29443,"v":[[0,1,["G5620"]],[1,2,["G3450"]],[2,3,["G80"]],[3,5,["G27"]],[5,6,["G2532"]],[6,8,["G1973"]],[8,9,["G3450"]],[9,10,["G5479"]],[10,11,["G2532"]],[11,12,["G4735"]],[12,13,["G3779"]],[13,15,["G4739"]],[15,16,["G1722"]],[16,18,["G2962"]],[18,21,["G27"]]]},{"k":29444,"v":[[0,2,["G3870"]],[2,3,["G2136"]],[3,4,["G2532"]],[4,5,["G3870"]],[5,6,["G4941"]],[6,13,["G5426","G3588","G846"]],[13,14,["G1722"]],[14,16,["G2962"]]]},{"k":29445,"v":[[0,1,["G2532"]],[1,3,["G2065"]],[3,4,["G4571"]],[4,5,["G2532"]],[5,6,["G1103"]],[6,7,["G4805"]],[7,8,["G4815"]],[8,10,["G846"]],[10,11,["G3748"]],[11,13,["G4866"]],[13,14,["G3427"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G2098"]],[17,18,["G3326"]],[18,19,["G2815"]],[19,20,["G2532"]],[20,21,["G2532"]],[21,23,["G3062"]],[23,24,["G3450"]],[24,25,["G4904"]],[25,26,["G3739"]],[26,27,["G3686"]],[27,29,["G1722"]],[29,31,["G976"]],[31,33,["G2222"]]]},{"k":29446,"v":[[0,1,["G5463"]],[1,2,["G1722"]],[2,4,["G2962"]],[4,5,["G3842"]],[5,7,["G3825"]],[7,9,["G2046"]],[9,10,["G5463"]]]},{"k":29447,"v":[[0,2,["G5216"]],[2,3,["G1933"]],[3,5,["G1097"]],[5,7,["G3956"]],[7,8,["G444"]],[8,9,["G3588"]],[9,10,["G2962"]],[10,13,["G1451"]]]},{"k":29448,"v":[[0,2,["G3309"]],[2,4,["G3367"]],[4,5,["G235"]],[5,6,["G1722"]],[6,8,["G3956"]],[8,10,["G4335"]],[10,11,["G2532"]],[11,12,["G1162"]],[12,13,["G3326"]],[13,14,["G2169"]],[14,16,["G5216"]],[16,17,["G155"]],[17,20,["G1107"]],[20,21,["G4314"]],[21,22,["G2316"]]]},{"k":29449,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1515"]],[3,5,["G2316"]],[5,7,["G5242"]],[7,8,["G3956"]],[8,9,["G3563"]],[9,11,["G5432"]],[11,12,["G5216"]],[12,13,["G2588"]],[13,14,["G2532"]],[14,15,["G3540"]],[15,16,["G1722"]],[16,17,["G5547"]],[17,18,["G2424"]]]},{"k":29450,"v":[[0,1,["G3063"]],[1,2,["G80"]],[2,4,["G3745"]],[4,5,["G2076"]],[5,6,["G227"]],[6,8,["G3745"]],[8,10,["G4586"]],[10,12,["G3745"]],[12,14,["G1342"]],[14,16,["G3745"]],[16,18,["G53"]],[18,20,["G3745"]],[20,22,["G4375"]],[22,24,["G3745"]],[24,28,["G2163"]],[28,32,["G1536"]],[32,33,["G703"]],[33,34,["G2532"]],[34,38,["G1536"]],[38,39,["G1868"]],[39,41,["G3049"]],[41,43,["G5023"]]]},{"k":29451,"v":[[0,2,["G5023"]],[2,3,["G3739"]],[3,6,["G2532"]],[6,7,["G3129"]],[7,8,["G2532"]],[8,9,["G3880"]],[9,10,["G2532"]],[10,11,["G191"]],[11,12,["G2532"]],[12,13,["G1492"]],[13,14,["G1722"]],[14,15,["G1698"]],[15,16,["G4238"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G2316"]],[19,21,["G1515"]],[21,23,["G2071"]],[23,24,["G3326"]],[24,25,["G5216"]]]},{"k":29452,"v":[[0,1,["G1161"]],[1,3,["G5463"]],[3,4,["G1722"]],[4,6,["G2962"]],[6,7,["G3171"]],[7,8,["G3754"]],[8,9,["G2235"]],[9,12,["G4218"]],[12,14,["G5426"]],[14,15,["G5228"]],[15,16,["G1700"]],[16,19,["G330"]],[19,20,["G1909","G3739"]],[20,23,["G2532"]],[23,24,["G5426"]],[24,25,["G1161"]],[25,28,["G170"]]]},{"k":29453,"v":[[0,1,["G3756"]],[1,2,["G3754"]],[2,4,["G3004"]],[4,7,["G2596"]],[7,8,["G5304"]],[8,9,["G1063"]],[9,10,["G1473"]],[10,12,["G3129"]],[12,13,["G1722"]],[13,15,["G3739"]],[15,17,["G1510"]],[17,20,["G1511"]],[20,21,["G842"]]]},{"k":29454,"v":[[0,0,["(G1161)"]],[0,2,["G1492"]],[2,7,["G5013"]],[7,8,["G2532"]],[8,10,["G1492"]],[10,13,["G4052","(G1722)"]],[13,15,["G3956"]],[15,16,["G2532"]],[16,17,["G1722"]],[17,19,["G3956"]],[19,22,["G3453"]],[22,23,["G2532"]],[23,26,["G5526"]],[26,27,["G2532"]],[27,30,["G3983"]],[30,31,["G2532"]],[31,33,["G4052"]],[33,34,["G2532"]],[34,37,["G5302"]]]},{"k":29455,"v":[[0,3,["G2480"]],[3,5,["G3956"]],[5,6,["G1722"]],[6,7,["G5547"]],[7,9,["G1743"]],[9,10,["G3165"]]]},{"k":29456,"v":[[0,1,["G4133"]],[1,4,["G2573"]],[4,5,["G4160"]],[5,10,["G4790"]],[10,11,["G3450"]],[11,12,["G2347"]]]},{"k":29457,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G5374"]],[3,4,["G1492"]],[4,5,["G2532"]],[5,6,["G3754"]],[6,7,["G1722"]],[7,9,["G746"]],[9,11,["G3588"]],[11,12,["G2098"]],[12,13,["G3753"]],[13,15,["G1831"]],[15,16,["G575"]],[16,17,["G3109"]],[17,18,["G3762"]],[18,19,["G1577"]],[19,20,["G2841"]],[20,22,["G3427"]],[22,24,["G1519","G3056"]],[24,25,["G1394"]],[25,26,["G2532"]],[26,27,["G3028"]],[27,28,["G1508"]],[28,29,["G5210"]],[29,30,["G3441"]]]},{"k":29458,"v":[[0,1,["G3754"]],[1,2,["G2532"]],[2,3,["G1722"]],[3,4,["G2332"]],[4,6,["G3992","(G2532)"]],[6,9,["G530","G2532","G1364"]],[9,10,["G1519"]],[10,11,["G3427"]],[11,12,["G5532"]]]},{"k":29459,"v":[[0,1,["G3756"]],[1,2,["G3754"]],[2,4,["G1934"]],[4,6,["G1390"]],[6,7,["G235"]],[7,9,["G1934"]],[9,10,["G2590"]],[10,13,["G4121"]],[13,14,["G1519"]],[14,15,["G5216"]],[15,16,["G3056"]]]},{"k":29460,"v":[[0,1,["G1161"]],[1,3,["G568"]],[3,4,["G3956"]],[4,5,["G2532"]],[5,6,["G4052"]],[6,9,["G4137"]],[9,11,["G1209"]],[11,12,["G3844"]],[12,13,["G1891"]],[13,15,["G3588"]],[15,19,["G3844"]],[19,20,["G5216"]],[20,22,["G3744"]],[22,26,["G2175"]],[26,28,["G2378"]],[28,29,["G1184"]],[29,30,["G2101"]],[30,32,["G2316"]]]},{"k":29461,"v":[[0,1,["G1161"]],[1,2,["G3450"]],[2,3,["G2316"]],[3,5,["G4137"]],[5,6,["G3956"]],[6,7,["G5216"]],[7,8,["G5532"]],[8,9,["G2596"]],[9,11,["G848"]],[11,12,["G4149"]],[12,13,["G1722"]],[13,14,["G1391"]],[14,15,["G1722"]],[15,16,["G5547"]],[16,17,["G2424"]]]},{"k":29462,"v":[[0,1,["G1161"]],[1,3,["G2316"]],[3,4,["G2532"]],[4,5,["G2257"]],[5,6,["G3962"]],[6,8,["G1391"]],[8,12,["G1519","G165","G165"]],[12,13,["G281"]]]},{"k":29463,"v":[[0,1,["G782"]],[1,2,["G3956"]],[2,3,["G40"]],[3,4,["G1722"]],[4,5,["G5547"]],[5,6,["G2424"]],[6,7,["G3588"]],[7,8,["G80"]],[8,11,["G4862"]],[11,12,["G1698"]],[12,13,["G782"]],[13,14,["G5209"]]]},{"k":29464,"v":[[0,1,["G3956"]],[1,2,["G3588"]],[2,3,["G40"]],[3,4,["G782"]],[4,5,["G5209","(G1161)"]],[5,6,["G3122"]],[6,7,["G3588"]],[7,10,["G1537"]],[10,11,["G2541"]],[11,12,["G3614"]]]},{"k":29465,"v":[[0,1,["G3588"]],[1,2,["G5485"]],[2,4,["G2257"]],[4,5,["G2962"]],[5,6,["G2424"]],[6,7,["G5547"]],[7,9,["G3326"]],[9,10,["G5216"]],[10,11,["G3956"]],[11,12,["G281"]]]},{"k":29466,"v":[[0,1,["G3972"]],[1,3,["G652"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,7,["G1223"]],[7,9,["G2307"]],[9,11,["G2316"]],[11,12,["G2532"]],[12,13,["G5095"]],[13,15,["G80"]]]},{"k":29467,"v":[[0,2,["G3588"]],[2,3,["G40"]],[3,4,["G2532"]],[4,5,["G4103"]],[5,6,["G80"]],[6,7,["G1722"]],[7,8,["G5547"]],[8,11,["G1722"]],[11,12,["G2857"]],[12,13,["G5485"]],[13,16,["G5213"]],[16,17,["G2532"]],[17,18,["G1515"]],[18,19,["G575"]],[19,20,["G2316"]],[20,21,["G2257"]],[21,22,["G3962"]],[22,23,["G2532"]],[23,25,["G2962"]],[25,26,["G2424"]],[26,27,["G5547"]]]},{"k":29468,"v":[[0,3,["G2168"]],[3,5,["G2316"]],[5,6,["G2532"]],[6,8,["G3962"]],[8,10,["G2257"]],[10,11,["G2962"]],[11,12,["G2424"]],[12,13,["G5547"]],[13,14,["G4336"]],[14,15,["G3842"]],[15,16,["G4012"]],[16,17,["G5216"]]]},{"k":29469,"v":[[0,3,["G191"]],[3,5,["G5216"]],[5,6,["G4102"]],[6,7,["G1722"]],[7,8,["G5547"]],[8,9,["G2424"]],[9,10,["G2532"]],[10,12,["G3588"]],[12,13,["G26"]],[13,15,["(G3588)"]],[15,17,["G1519"]],[17,18,["G3956"]],[18,19,["G3588"]],[19,20,["G40"]]]},{"k":29470,"v":[[0,1,["G1223"]],[1,2,["G3588"]],[2,3,["G1680"]],[3,7,["G606"]],[7,9,["G5213"]],[9,10,["G1722"]],[10,11,["G3772"]],[11,12,["G3739"]],[12,15,["G4257"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G3056"]],[18,20,["G3588"]],[20,21,["G225"]],[21,23,["G3588"]],[23,24,["G2098"]]]},{"k":29471,"v":[[0,3,["G3918"]],[3,4,["G1519"]],[4,5,["G5209"]],[5,6,["G2531"]],[6,7,["(G2532)"]],[7,9,["G1722"]],[9,10,["G3956"]],[10,11,["G3588"]],[11,12,["G2889"]],[12,13,["G2532","(G2076)"]],[13,16,["G2592"]],[16,17,["G2531"]],[17,20,["G2532"]],[20,21,["G1722"]],[21,22,["G5213"]],[22,23,["G575"]],[23,24,["(G3739)"]],[24,25,["G2250"]],[25,27,["G191"]],[27,30,["G2532"]],[30,31,["G1921"]],[31,32,["G3588"]],[32,33,["G5485"]],[33,35,["G2316"]],[35,36,["G1722"]],[36,37,["G225"]]]},{"k":29472,"v":[[0,1,["G2531"]],[1,3,["G2532"]],[3,4,["G3129"]],[4,5,["G575"]],[5,6,["G1889"]],[6,7,["G2257"]],[7,8,["G27"]],[8,9,["G4889"]],[9,10,["G3739"]],[10,11,["G2076"]],[11,12,["G5228"]],[12,13,["G5216"]],[13,15,["G4103"]],[15,16,["G1249"]],[16,18,["G5547"]]]},{"k":29473,"v":[[0,1,["G3588"]],[1,2,["G2532"]],[2,3,["G1213"]],[3,5,["G2254"]],[5,6,["G5216"]],[6,7,["G26"]],[7,8,["G1722"]],[8,10,["G4151"]]]},{"k":29474,"v":[[0,1,["G1223"]],[1,3,["G5124"]],[3,4,["G2249"]],[4,5,["G2532"]],[5,6,["G575"]],[6,7,["(G3739)"]],[7,8,["G2250"]],[8,10,["G191"]],[10,13,["G3756"]],[13,14,["G3973"]],[14,16,["G4336"]],[16,17,["G5228"]],[17,18,["G5216"]],[18,19,["G2532"]],[19,21,["G154"]],[21,22,["G2443"]],[22,26,["G4137"]],[26,28,["G3588"]],[28,29,["G1922"]],[29,31,["G846"]],[31,32,["G2307"]],[32,33,["G1722"]],[33,34,["G3956"]],[34,35,["G4678"]],[35,36,["G2532"]],[36,37,["G4152"]],[37,38,["G4907"]]]},{"k":29475,"v":[[0,2,["G5209"]],[2,4,["G4043"]],[4,5,["G516"]],[5,7,["G3588"]],[7,8,["G2962"]],[8,9,["G1519"]],[9,10,["G3956"]],[10,11,["G699"]],[11,13,["G2592"]],[13,14,["G1722"]],[14,15,["G3956"]],[15,16,["G18"]],[16,17,["G2041"]],[17,18,["G2532"]],[18,19,["G837"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G1922"]],[22,24,["G2316"]]]},{"k":29476,"v":[[0,1,["G1412"]],[1,2,["G1722"]],[2,3,["G3956"]],[3,4,["G1411"]],[4,5,["G2596"]],[5,7,["G846"]],[7,8,["G1391"]],[8,9,["G2904"]],[9,10,["G1519"]],[10,11,["G3956"]],[11,12,["G5281"]],[12,13,["G2532"]],[13,14,["G3115"]],[14,15,["G3326"]],[15,16,["G5479"]]]},{"k":29477,"v":[[0,2,["G2168"]],[2,4,["G3588"]],[4,5,["G3962"]],[5,10,["G2427","G2248"]],[10,13,["G1519","G3310"]],[13,15,["G3588"]],[15,16,["G2819"]],[16,18,["G3588"]],[18,19,["G40"]],[19,20,["G1722"]],[20,21,["G5457"]]]},{"k":29478,"v":[[0,1,["G3739"]],[1,3,["G4506"]],[3,4,["G2248"]],[4,5,["G1537"]],[5,6,["G3588"]],[6,7,["G1849"]],[7,9,["G4655"]],[9,10,["G2532"]],[10,12,["G3179"]],[12,14,["G1519"]],[14,15,["G3588"]],[15,16,["G932"]],[16,18,["G848"]],[18,19,["G26"]],[19,20,["G5207"]]]},{"k":29479,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,4,["G2192"]],[4,5,["G629"]],[5,6,["G1223"]],[6,7,["G846"]],[7,8,["G129"]],[8,10,["G3588"]],[10,11,["G859"]],[11,13,["G266"]]]},{"k":29480,"v":[[0,1,["G3739"]],[1,2,["G2076"]],[2,4,["G1504"]],[4,6,["G3588"]],[6,7,["G517"]],[7,8,["G2316"]],[8,10,["G4416"]],[10,12,["G3956"]],[12,13,["G2937"]]]},{"k":29481,"v":[[0,1,["G3754"]],[1,2,["G1722"]],[2,3,["G846"]],[3,6,["G3956"]],[6,7,["G2936"]],[7,8,["G3588"]],[8,10,["G1722"]],[10,11,["G3772"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,15,["G1909"]],[15,16,["G1093"]],[16,17,["G3707"]],[17,18,["G2532"]],[18,19,["G517"]],[19,20,["G1535"]],[20,23,["G2362"]],[23,24,["G1535"]],[24,25,["G2963"]],[25,26,["G1535"]],[26,27,["G746"]],[27,28,["G1535"]],[28,29,["G1849"]],[29,31,["G3956"]],[31,33,["G2936"]],[33,34,["G1223"]],[34,35,["G846"]],[35,36,["G2532"]],[36,37,["G1519"]],[37,38,["G846"]]]},{"k":29482,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G2076"]],[3,4,["G4253"]],[4,6,["G3956"]],[6,7,["G2532"]],[7,8,["G1722"]],[8,9,["G846"]],[9,11,["G3956"]],[11,12,["G4921"]]]},{"k":29483,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G2776"]],[5,7,["G3588"]],[7,8,["G4983"]],[8,9,["G3588"]],[9,10,["G1577"]],[10,11,["G3739"]],[11,12,["G2076"]],[12,14,["G746"]],[14,16,["G4416"]],[16,17,["G1537"]],[17,18,["G3588"]],[18,19,["G3498"]],[19,20,["G2443"]],[20,21,["G1722"]],[21,22,["G3956"]],[22,24,["G846"]],[24,26,["G1096"]],[26,28,["G4409"]]]},{"k":29484,"v":[[0,1,["G3754"]],[1,3,["G2106"]],[3,7,["G1722"]],[7,8,["G846"]],[8,10,["G3956"]],[10,11,["G4138"]],[11,12,["G2730"]]]},{"k":29485,"v":[[0,1,["G2532"]],[1,4,["G1517"]],[4,5,["G1223"]],[5,6,["G3588"]],[6,7,["G129"]],[7,9,["G846"]],[9,10,["G4716"]],[10,11,["G1223"]],[11,12,["G846"]],[12,14,["G604"]],[14,16,["G3956"]],[16,17,["G1519"]],[17,18,["G848"]],[18,19,["G1223"]],[19,20,["G846"]],[20,23,["G1535"]],[23,26,["G3588"]],[26,27,["G1909"]],[27,28,["G1093"]],[28,29,["G1535"]],[29,30,["G3588"]],[30,31,["G1722"]],[31,32,["G3772"]]]},{"k":29486,"v":[[0,1,["G2532"]],[1,2,["G5209"]],[2,4,["G5607"]],[4,5,["G4218"]],[5,6,["G526"]],[6,7,["G2532"]],[7,8,["G2190"]],[8,11,["G1271"]],[11,12,["G1722"]],[12,13,["G4190"]],[13,14,["G2041"]],[14,15,["G1161"]],[15,16,["G3570"]],[16,19,["G604"]]]},{"k":29487,"v":[[0,1,["G1722"]],[1,2,["G3588"]],[2,3,["G4983"]],[3,5,["G848"]],[5,6,["G4561"]],[6,7,["G1223"]],[7,8,["G2288"]],[8,10,["G3936"]],[10,11,["G5209"]],[11,12,["G40"]],[12,13,["G2532"]],[13,14,["G299"]],[14,15,["G2532"]],[15,16,["G410"]],[16,19,["G2714","G848"]]]},{"k":29488,"v":[[0,1,["G1489"]],[1,3,["G1961"]],[3,5,["G3588"]],[5,6,["G4102"]],[6,7,["G2311"]],[7,8,["G2532"]],[8,9,["G1476"]],[9,10,["G2532"]],[10,12,["G3361"]],[12,14,["G3334"]],[14,15,["G575"]],[15,16,["G3588"]],[16,17,["G1680"]],[17,19,["G3588"]],[19,20,["G2098"]],[20,21,["G3739"]],[21,24,["G191"]],[24,28,["G2784"]],[28,29,["G1722"]],[29,30,["G3956"]],[30,31,["G2937"]],[31,32,["G3588"]],[32,34,["G5259"]],[34,35,["G3772"]],[35,36,["G3739"]],[36,37,["G1473"]],[37,38,["G3972"]],[38,40,["G1096"]],[40,42,["G1249"]]]},{"k":29489,"v":[[0,1,["G3739"]],[1,2,["G3568"]],[2,3,["G5463"]],[3,4,["G1722"]],[4,5,["G3450"]],[5,6,["G3804"]],[6,7,["G5228"]],[7,8,["G5216"]],[8,9,["G2532"]],[9,11,["G466"]],[11,15,["G5303"]],[15,17,["G3588"]],[17,18,["G2347"]],[18,20,["G5547"]],[20,21,["G1722"]],[21,22,["G3450"]],[22,23,["G4561"]],[23,27,["G5228","G846","G4983"]],[27,29,["G3603"]],[29,30,["G3588"]],[30,31,["G1577"]]]},{"k":29490,"v":[[0,1,["G3739"]],[1,2,["G1473"]],[2,4,["G1096"]],[4,6,["G1249"]],[6,7,["G2596"]],[7,9,["G3588"]],[9,10,["G3622"]],[10,12,["G2316"]],[12,15,["G1325"]],[15,17,["G3427"]],[17,18,["G1519"]],[18,19,["G5209"]],[19,21,["G4137"]],[21,22,["G3588"]],[22,23,["G3056"]],[23,25,["G2316"]]]},{"k":29491,"v":[[0,2,["G3588"]],[2,3,["G3466"]],[3,7,["G613"]],[7,8,["G575"]],[8,9,["G165"]],[9,10,["G2532"]],[10,11,["G575"]],[11,12,["G1074"]],[12,13,["G1161"]],[13,14,["G3570"]],[14,17,["G5319"]],[17,19,["G846"]],[19,20,["G40"]]]},{"k":29492,"v":[[0,2,["G3739"]],[2,3,["G2316"]],[3,4,["G2309"]],[4,6,["G1107"]],[6,7,["G5101"]],[7,9,["G3588"]],[9,10,["G4149"]],[10,12,["G3588"]],[12,13,["G1391"]],[13,15,["G5127"]],[15,16,["G3466"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G1484"]],[19,20,["G3739"]],[20,21,["G2076"]],[21,22,["G5547"]],[22,23,["G1722"]],[23,24,["G5213"]],[24,25,["G3588"]],[25,26,["G1680"]],[26,28,["G1391"]]]},{"k":29493,"v":[[0,1,["G3739"]],[1,2,["G2249"]],[2,3,["G2605"]],[3,4,["G3560"]],[4,5,["G3956"]],[5,6,["G444"]],[6,7,["G2532"]],[7,8,["G1321"]],[8,9,["G3956"]],[9,10,["G444"]],[10,11,["G1722"]],[11,12,["G3956"]],[12,13,["G4678"]],[13,14,["G2443"]],[14,17,["G3936"]],[17,18,["G3956"]],[18,19,["G444"]],[19,20,["G5046"]],[20,21,["G1722"]],[21,22,["G5547"]],[22,23,["G2424"]]]},{"k":29494,"v":[[0,1,["G1519","G3739"]],[1,3,["G2532"]],[3,4,["G2872"]],[4,5,["G75"]],[5,6,["G2596"]],[6,8,["G846"]],[8,9,["G1753"]],[9,11,["G1754"]],[11,12,["G1722"]],[12,13,["G1698"]],[13,14,["G1722","G1411"]]]},{"k":29495,"v":[[0,1,["G1063"]],[1,3,["G2309"]],[3,5,["G5209"]],[5,6,["G1492"]],[6,8,["G2245"]],[8,9,["G73"]],[9,11,["G2192"]],[11,12,["G4012"]],[12,13,["G5216"]],[13,14,["G2532"]],[14,16,["G3588"]],[16,17,["G1722"]],[17,18,["G2993"]],[18,19,["G2532"]],[19,23,["G3745"]],[23,25,["G3756"]],[25,26,["G3708"]],[26,27,["G3450"]],[27,28,["G4383"]],[28,29,["G1722"]],[29,31,["G4561"]]]},{"k":29496,"v":[[0,1,["G2443"]],[1,2,["G846"]],[2,3,["G2588"]],[3,6,["G3870"]],[6,9,["G4822"]],[9,10,["G1722"]],[10,11,["G26"]],[11,12,["G2532"]],[12,13,["G1519"]],[13,14,["G3956"]],[14,15,["G4149"]],[15,17,["G3588"]],[17,19,["G4136"]],[19,21,["G4907"]],[21,22,["G1519"]],[22,24,["G1922"]],[24,26,["G3588"]],[26,27,["G3466"]],[27,29,["G2316"]],[29,30,["G2532"]],[30,33,["G3962"]],[33,34,["G2532"]],[34,36,["G5547"]]]},{"k":29497,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G1526"]],[3,4,["G614"]],[4,5,["G3956"]],[5,6,["G3588"]],[6,7,["G2344"]],[7,9,["G4678"]],[9,10,["G2532"]],[10,11,["G1108"]]]},{"k":29498,"v":[[0,1,["G1161"]],[1,2,["G5124"]],[2,4,["G3004"]],[4,5,["G3363"]],[5,7,["G5100"]],[7,9,["G3884"]],[9,10,["G5209"]],[10,11,["G1722"]],[11,13,["G4086"]]]},{"k":29499,"v":[[0,1,["G1063"]],[1,2,["G1487","G2532"]],[2,5,["G548"]],[5,7,["G3588"]],[7,8,["G4561"]],[8,9,["G235"]],[9,10,["G1510"]],[10,12,["G4862"]],[12,13,["G5213"]],[13,15,["G3588"]],[15,16,["G4151"]],[16,17,["G5463"]],[17,18,["G2532"]],[18,19,["G991"]],[19,20,["G5216"]],[20,21,["G5010"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G4733"]],[24,26,["G5216"]],[26,27,["G4102"]],[27,28,["G1519"]],[28,29,["G5547"]]]},{"k":29500,"v":[[0,1,["G5613"]],[1,4,["G3767"]],[4,5,["G3880"]],[5,6,["G5547"]],[6,7,["G2424"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,11,["G4043"]],[11,13,["G1722"]],[13,14,["G846"]]]},{"k":29501,"v":[[0,1,["G4492"]],[1,2,["G2532"]],[2,4,["G2026"]],[4,5,["G1722"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G950"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G4102"]],[11,12,["G2531"]],[12,16,["G1321"]],[16,17,["G4052"]],[17,18,["G1722","G846"]],[18,19,["G1722"]],[19,20,["G2169"]]]},{"k":29502,"v":[[0,1,["G991"]],[1,2,["G3361"]],[2,4,["G5100"]],[4,5,["G4812"]],[5,6,["G5209"]],[6,7,["G1223"]],[7,8,["G5385"]],[8,9,["G2532"]],[9,10,["G2756"]],[10,11,["G539"]],[11,12,["G2596"]],[12,13,["G3588"]],[13,14,["G3862"]],[14,16,["G444"]],[16,17,["G2596"]],[17,18,["G3588"]],[18,19,["G4747"]],[19,21,["G3588"]],[21,22,["G2889"]],[22,23,["G2532"]],[23,24,["G3756"]],[24,25,["G2596"]],[25,26,["G5547"]]]},{"k":29503,"v":[[0,1,["G3754"]],[1,2,["G1722"]],[2,3,["G846"]],[3,4,["G2730"]],[4,5,["G3956"]],[5,6,["G3588"]],[6,7,["G4138"]],[7,9,["G3588"]],[9,10,["G2320"]],[10,11,["G4985"]]]},{"k":29504,"v":[[0,1,["G2532"]],[1,3,["G2075"]],[3,4,["G4137"]],[4,5,["G1722"]],[5,6,["G846"]],[6,7,["G3739"]],[7,8,["G2076"]],[8,9,["G3588"]],[9,10,["G2776"]],[10,12,["G3956"]],[12,13,["G746"]],[13,14,["G2532"]],[14,15,["G1849"]]]},{"k":29505,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G2532"]],[3,6,["G4059"]],[6,9,["G4061"]],[9,12,["G886"]],[12,13,["G1722"]],[13,15,["G555"]],[15,16,["G3588"]],[16,17,["G4983"]],[17,19,["G3588"]],[19,20,["G266"]],[20,22,["G3588"]],[22,23,["G4561"]],[23,24,["G1722"]],[24,25,["G3588"]],[25,26,["G4061"]],[26,28,["G5547"]]]},{"k":29506,"v":[[0,2,["G4916"]],[2,3,["G846"]],[3,4,["G1722"]],[4,5,["G908"]],[5,6,["G1722","G3739"]],[6,7,["G2532"]],[7,11,["G4891"]],[11,13,["G1223"]],[13,14,["G3588"]],[14,15,["G4102"]],[15,17,["G3588"]],[17,18,["G1753"]],[18,20,["G2316"]],[20,23,["G1453"]],[23,24,["G846"]],[24,25,["G1537"]],[25,26,["G3588"]],[26,27,["G3498"]]]},{"k":29507,"v":[[0,1,["G2532"]],[1,2,["G5209"]],[2,3,["G5607"]],[3,4,["G3498"]],[4,5,["G1722"]],[5,7,["G3900"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G203"]],[10,12,["G5216"]],[12,13,["G4561"]],[13,17,["G4806"]],[17,18,["G4862"]],[18,19,["G846"]],[19,21,["G5483"]],[21,22,["G5213"]],[22,23,["G3956"]],[23,24,["G3900"]]]},{"k":29508,"v":[[0,2,["G1813"]],[2,3,["G3588"]],[3,4,["G5498"]],[4,6,["G1378"]],[6,9,["G2596"]],[9,10,["G2257"]],[10,11,["G3739"]],[11,12,["G2258"]],[12,13,["G5227"]],[13,15,["G2254"]],[15,16,["G2532"]],[16,17,["G142"]],[17,18,["G846"]],[18,20,["G1537"]],[20,21,["G3588"]],[21,22,["G3319"]],[22,23,["G4338"]],[23,24,["G846"]],[24,27,["G4716"]]]},{"k":29509,"v":[[0,3,["G554"]],[3,4,["G746"]],[4,5,["G2532"]],[5,6,["G1849"]],[6,10,["G1165"]],[10,13,["G1722","G3954"]],[13,15,["G2358"]],[15,16,["G846"]],[16,17,["G1722"]],[17,18,["G848"]]]},{"k":29510,"v":[[0,2,["G3361"]],[2,3,["G5100"]],[3,4,["G3767"]],[4,5,["G2919"]],[5,6,["G5209"]],[6,7,["G1722"]],[7,8,["G1035"]],[8,9,["G2228"]],[9,10,["G1722"]],[10,11,["G4213"]],[11,12,["G2228"]],[12,13,["G1722"]],[13,14,["G3313"]],[14,17,["G1859"]],[17,18,["G2228"]],[18,22,["G3561"]],[22,23,["G2228"]],[23,26,["G4521"]],[26,27,[]]]},{"k":29511,"v":[[0,1,["G3739"]],[1,2,["G2076"]],[2,4,["G4639"]],[4,8,["G3195"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G4983"]],[11,14,["G5547"]]]},{"k":29512,"v":[[0,3,["G3367"]],[3,8,["G2603","G5209"]],[8,12,["G2309","G1722","G5012"]],[12,13,["G2532"]],[13,14,["G2356"]],[14,16,["G32"]],[16,18,["G1687"]],[18,21,["G3739"]],[21,24,["G3361"]],[24,25,["G3708"]],[25,26,["G1500"]],[26,28,["G5448"]],[28,29,["G5259"]],[29,30,["G848"]],[30,31,["G4561"]],[31,32,["G3563"]]]},{"k":29513,"v":[[0,1,["G2532"]],[1,2,["G3756"]],[2,3,["G2902"]],[3,4,["G3588"]],[4,5,["G2776"]],[5,6,["G1537"]],[6,7,["G3739"]],[7,8,["G3956"]],[8,9,["G3588"]],[9,10,["G4983"]],[10,11,["G1223"]],[11,12,["G860"]],[12,13,["G2532"]],[13,14,["G4886"]],[14,17,["G2023"]],[17,18,["G2532"]],[18,20,["G4822"]],[20,21,["G837"]],[21,23,["G3588"]],[23,24,["G838"]],[24,26,["G2316"]]]},{"k":29514,"v":[[0,1,["G3767"]],[1,2,["G1487"]],[2,5,["G599"]],[5,6,["G4862"]],[6,7,["G5547"]],[7,8,["G575"]],[8,9,["G3588"]],[9,10,["G4747"]],[10,12,["G3588"]],[12,13,["G2889"]],[13,14,["G5101"]],[14,16,["G5613"]],[16,17,["G2198"]],[17,18,["G1722"]],[18,20,["G2889"]],[20,25,["G1379"]]]},{"k":29515,"v":[[0,1,["G680"]],[1,2,["G3361"]],[2,3,["G1089"]],[3,4,["G3366"]],[4,5,["G2345"]],[5,6,["G3366"]]]},{"k":29516,"v":[[0,1,["G3739"]],[1,2,["G3956"]],[2,3,["G2076"]],[3,5,["G1519","G5356"]],[5,7,["G3588"]],[7,8,["G671"]],[8,9,["G2596"]],[9,10,["G3588"]],[10,11,["G1778"]],[11,12,["G2532"]],[12,13,["G1319"]],[13,15,["G444"]]]},{"k":29517,"v":[[0,2,["G3748"]],[2,3,["G2076","G2192"]],[3,4,["G3303"]],[4,6,["G3056"]],[6,8,["G4678"]],[8,9,["G1722"]],[9,11,["G1479"]],[11,12,["G2532"]],[12,13,["G5012"]],[13,14,["G2532"]],[14,15,["G857"]],[15,18,["G4983"]],[18,19,["G3756"]],[19,20,["G1722"]],[20,21,["G5100"]],[21,22,["G5092"]],[22,23,["G4314"]],[23,25,["G4140"]],[25,27,["G3588"]],[27,28,["G4561"]]]},{"k":29518,"v":[[0,1,["G1487"]],[1,3,["G3767"]],[3,6,["G4891"]],[6,7,["G5547"]],[7,8,["G2212"]],[8,13,["G507"]],[13,14,["G3757"]],[14,15,["G5547"]],[15,16,["G2076","G2521"]],[16,17,["G1722"]],[17,20,["G1188"]],[20,22,["G2316"]]]},{"k":29519,"v":[[0,4,["G5426"]],[4,6,["G507"]],[6,7,["G3361"]],[7,9,["G3588"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G1093"]]]},{"k":29520,"v":[[0,1,["G1063"]],[1,4,["G599"]],[4,5,["G2532"]],[5,6,["G5216"]],[6,7,["G2222"]],[7,9,["G2928"]],[9,10,["G4862"]],[10,11,["G5547"]],[11,12,["G1722"]],[12,13,["G2316"]]]},{"k":29521,"v":[[0,1,["G3752"]],[1,2,["G5547"]],[2,5,["G2257"]],[5,6,["G2222"]],[6,8,["G5319"]],[8,9,["G5119"]],[9,11,["G5210"]],[11,12,["G2532"]],[12,13,["G5319"]],[13,14,["G4862"]],[14,15,["G846"]],[15,16,["G1722"]],[16,17,["G1391"]]]},{"k":29522,"v":[[0,1,["G3499"]],[1,2,["G3767"]],[2,3,["G5216"]],[3,4,["G3196"]],[4,5,["G3588"]],[5,7,["G1909"]],[7,8,["G3588"]],[8,9,["G1093"]],[9,10,["G4202"]],[10,11,["G167"]],[11,13,["G3806"]],[13,14,["G2556"]],[14,15,["G1939"]],[15,16,["G2532"]],[16,17,["G4124"]],[17,18,["G3748"]],[18,19,["G2076"]],[19,20,["G1495"]]]},{"k":29523,"v":[[0,4,["G1223","G3739"]],[4,5,["G3588"]],[5,6,["G3709"]],[6,8,["G2316"]],[8,9,["G2064"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G5207"]],[12,14,["G543"]]]},{"k":29524,"v":[[0,1,["G1722"]],[1,3,["G3739"]],[3,4,["G5210"]],[4,5,["G2532"]],[5,6,["G4043"]],[6,8,["G4218"]],[8,9,["G3753"]],[9,11,["G2198"]],[11,12,["G1722"]],[12,13,["G846"]]]},{"k":29525,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,3,["G5210"]],[3,4,["G2532"]],[4,6,["G659"]],[6,8,["G3956"]],[8,9,["G3709"]],[9,10,["G2372"]],[10,11,["G2549"]],[11,12,["G988"]],[12,14,["G148"]],[14,16,["G1537"]],[16,17,["G5216"]],[17,18,["G4750"]]]},{"k":29526,"v":[[0,1,["G5574"]],[1,2,["G3361"]],[2,5,["G240","G1519"]],[5,11,["G554"]],[11,12,["G3588"]],[12,13,["G3820"]],[13,14,["G444"]],[14,15,["G4862"]],[15,16,["G846"]],[16,17,["G4234"]]]},{"k":29527,"v":[[0,1,["G2532"]],[1,4,["G1746"]],[4,5,["G3588"]],[5,6,["G3501"]],[6,10,["G341"]],[10,11,["G1519"]],[11,12,["G1922"]],[12,13,["G2596"]],[13,15,["G1504"]],[15,19,["G2936"]],[19,20,["G846"]]]},{"k":29528,"v":[[0,1,["G3699"]],[1,3,["G1762"]],[3,4,["G3756"]],[4,5,["G1672"]],[5,6,["G2532"]],[6,7,["G2453"]],[7,8,["G4061"]],[8,9,["G2532"]],[9,10,["G203"]],[10,11,["G915"]],[11,12,["G4658"]],[12,13,["G1401"]],[13,15,["G1658"]],[15,16,["G235"]],[16,17,["G5547"]],[17,19,["G3956"]],[19,20,["G2532"]],[20,21,["G1722"]],[21,22,["G3956"]]]},{"k":29529,"v":[[0,2,["G1746"]],[2,3,["G3767"]],[3,4,["G5613"]],[4,6,["G1588"]],[6,8,["G2316"]],[8,9,["G40"]],[9,10,["G2532"]],[10,11,["G25"]],[11,12,["G4698"]],[12,14,["G3628"]],[14,15,["G5544"]],[15,18,["G5012"]],[18,19,["G4236"]],[19,20,["G3115"]]]},{"k":29530,"v":[[0,1,["G430"]],[1,3,["G240"]],[3,4,["G2532"]],[4,5,["G5483"]],[5,7,["G1438"]],[7,8,["G1437"]],[8,10,["G5100"]],[10,11,["G2192"]],[11,13,["G3437"]],[13,14,["G4314"]],[14,15,["G5100"]],[15,16,["G2532"]],[16,17,["G2531"]],[17,18,["G5547"]],[18,19,["G5483"]],[19,20,["G5213"]],[20,21,["G3779"]],[21,22,["G2532"]],[22,24,["G5210"]]]},{"k":29531,"v":[[0,1,["G1161"]],[1,2,["G1909"]],[2,3,["G3956"]],[3,5,["G5125"]],[5,8,["G26"]],[8,9,["G3748"]],[9,10,["G2076"]],[10,12,["G4886"]],[12,14,["G5047"]]]},{"k":29532,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G1515"]],[4,6,["G2316"]],[6,7,["G1018"]],[7,8,["G1722"]],[8,9,["G5216"]],[9,10,["G2588"]],[10,11,["G1519"]],[11,13,["G3739"]],[13,14,["G2532"]],[14,17,["G2564"]],[17,18,["G1722"]],[18,19,["G1520"]],[19,20,["G4983"]],[20,21,["G2532"]],[21,22,["G1096"]],[22,24,["G2170"]]]},{"k":29533,"v":[[0,2,["G3588"]],[2,3,["G3056"]],[3,5,["G5547"]],[5,6,["G1774"]],[6,7,["G1722"]],[7,8,["G5213"]],[8,9,["G4146"]],[9,10,["G1722"]],[10,11,["G3956"]],[11,12,["G4678"]],[12,13,["G1321"]],[13,14,["G2532"]],[14,15,["G3560"]],[15,17,["G1438"]],[17,19,["G5568"]],[19,20,["G2532"]],[20,21,["G5215"]],[21,22,["G2532"]],[22,23,["G4152"]],[23,24,["G5603"]],[24,25,["G103"]],[25,26,["G1722"]],[26,27,["G5485"]],[27,28,["G1722"]],[28,29,["G5216"]],[29,30,["G2588"]],[30,32,["G3588"]],[32,33,["G2962"]]]},{"k":29534,"v":[[0,1,["G2532"]],[1,2,["G3748","G302"]],[2,4,["G4160"]],[4,5,["G1722"]],[5,6,["G3056"]],[6,7,["G2228"]],[7,8,["G2041"]],[8,10,["G3956"]],[10,11,["G1722"]],[11,13,["G3686"]],[13,16,["G2962"]],[16,17,["G2424"]],[17,19,["G2168"]],[19,21,["G2316"]],[21,22,["G2532"]],[22,24,["G3962"]],[24,25,["G1223"]],[25,26,["G846"]]]},{"k":29535,"v":[[0,1,["G1135"]],[1,3,["G5293"]],[3,6,["G2398"]],[6,7,["G435"]],[7,8,["G5613"]],[8,11,["G433"]],[11,12,["G1722"]],[12,14,["G2962"]]]},{"k":29536,"v":[[0,1,["G435"]],[1,2,["G25"]],[2,4,["G1135"]],[4,5,["G2532"]],[5,8,["G4087","G3361"]],[8,9,["G4314"]],[9,10,["G846"]]]},{"k":29537,"v":[[0,1,["G5043"]],[1,2,["G5219"]],[2,4,["G1118"]],[4,5,["G2596"]],[5,7,["G3956"]],[7,8,["G1063"]],[8,9,["G5124"]],[9,10,["G2076"]],[10,12,["G2101"]],[12,14,["G3588"]],[14,15,["G2962"]]]},{"k":29538,"v":[[0,1,["G3962"]],[1,2,["G2042"]],[2,3,["G3361"]],[3,4,["G5216"]],[4,5,["G5043"]],[5,8,["G3363"]],[8,11,["G120"]]]},{"k":29539,"v":[[0,1,["G1401"]],[1,2,["G5219"]],[2,3,["G2596"]],[3,5,["G3956"]],[5,7,["G2962"]],[7,8,["G2596"]],[8,11,["G4561"]],[11,12,["G3361"]],[12,13,["G1722"]],[13,14,["G3787"]],[14,15,["G5613"]],[15,16,["G441"]],[16,17,["G235"]],[17,18,["G1722"]],[18,19,["G572"]],[19,21,["G2588"]],[21,22,["G5399"]],[22,23,["G2316"]]]},{"k":29540,"v":[[0,1,["G2532"]],[1,2,["G3748","G1437"]],[2,4,["G4160"]],[4,5,["G2038"]],[5,7,["G1537","G5590"]],[7,8,["G5613"]],[8,10,["G3588"]],[10,11,["G2962"]],[11,12,["G2532"]],[12,13,["G3756"]],[13,15,["G444"]]]},{"k":29541,"v":[[0,1,["G1492"]],[1,2,["G3754"]],[2,3,["G575"]],[3,5,["G2962"]],[5,8,["G618"]],[8,9,["G3588"]],[9,10,["G469"]],[10,13,["G2817"]],[13,14,["G1063"]],[14,16,["G1398"]],[16,17,["G3588"]],[17,18,["G2962"]],[18,19,["G5547"]]]},{"k":29542,"v":[[0,1,["G1161"]],[1,5,["G91"]],[5,7,["G2865"]],[7,14,["G91","G3739"]],[14,15,["G2532"]],[15,17,["G2076"]],[17,18,["G3756"]],[18,21,["G4382"]]]},{"k":29543,"v":[[0,1,["G2962"]],[1,2,["G3930"]],[2,5,["G1401"]],[5,9,["G1342"]],[9,10,["G2532"]],[10,11,["G2471"]],[11,12,["G1492"]],[12,13,["G3754"]],[13,14,["G5210"]],[14,15,["G2532"]],[15,16,["G2192"]],[16,18,["G2962"]],[18,19,["G1722"]],[19,20,["G3772"]]]},{"k":29544,"v":[[0,1,["G4342"]],[1,3,["G4335"]],[3,5,["G1127"]],[5,6,["G1722"]],[6,8,["G846"]],[8,9,["G1722"]],[9,10,["G2169"]]]},{"k":29545,"v":[[0,1,["G260"]],[1,2,["G4336"]],[2,3,["G2532"]],[3,4,["G4012"]],[4,5,["G2257"]],[5,6,["G2443"]],[6,7,["G2316"]],[7,9,["G455"]],[9,11,["G2254"]],[11,13,["G2374"]],[13,15,["G3056"]],[15,17,["G2980"]],[17,18,["G3588"]],[18,19,["G3466"]],[19,21,["G5547"]],[21,22,["G1223"]],[22,23,["G3739"]],[23,28,["G1210","G2532"]]]},{"k":29546,"v":[[0,1,["G2443"]],[1,6,["G5319","G846"]],[6,7,["G5613"]],[7,8,["G3165"]],[8,9,["G1163"]],[9,11,["G2980"]]]},{"k":29547,"v":[[0,1,["G4043"]],[1,2,["G1722"]],[2,3,["G4678"]],[3,4,["G4314"]],[4,8,["G1854"]],[8,9,["G1805"]],[9,10,["G3588"]],[10,11,["G2540"]]]},{"k":29548,"v":[[0,2,["G5216"]],[2,3,["G3056"]],[3,5,["G3842"]],[5,6,["G1722"]],[6,7,["G5485"]],[7,8,["G741"]],[8,10,["G217"]],[10,14,["G1492"]],[14,15,["G4459"]],[15,16,["G5209"]],[16,17,["G1163"]],[17,19,["G611"]],[19,21,["G1520","G1538"]]]},{"k":29549,"v":[[0,1,["G3956"]],[1,3,["G2596","G1691"]],[3,5,["G5190"]],[5,6,["G1107"]],[6,8,["G5213"]],[8,12,["G27"]],[12,13,["G80"]],[13,14,["G2532"]],[14,16,["G4103"]],[16,17,["G1249"]],[17,18,["G2532"]],[18,19,["G4889"]],[19,20,["G1722"]],[20,22,["G2962"]]]},{"k":29550,"v":[[0,1,["G3739"]],[1,4,["G3992"]],[4,5,["G4314"]],[5,6,["G5209"]],[6,7,["G1519"]],[7,10,["G846","G5124"]],[10,11,["G2443"]],[11,14,["G1097"]],[14,16,["G4012","G5216"]],[16,17,["G2532"]],[17,18,["G3870"]],[18,19,["G5216"]],[19,20,["G2588"]]]},{"k":29551,"v":[[0,1,["G4862"]],[1,2,["G3682"]],[2,4,["G4103"]],[4,5,["G2532"]],[5,6,["G27"]],[6,7,["G80"]],[7,8,["G3739"]],[8,9,["G2076"]],[9,11,["G1537"]],[11,12,["G5216"]],[12,16,["G1107"]],[16,18,["G5213"]],[18,20,["G3956"]],[20,24,["G5602"]]]},{"k":29552,"v":[[0,1,["G708"]],[1,2,["G3450"]],[2,3,["G4869"]],[3,4,["G782"]],[4,5,["G5209"]],[5,6,["G2532"]],[6,7,["G3138"]],[7,9,["G431"]],[9,11,["G921"]],[11,12,["G4012"]],[12,13,["G3739"]],[13,15,["G2983"]],[15,16,["G1785"]],[16,17,["G1437"]],[17,19,["G2064"]],[19,20,["G4314"]],[20,21,["G5209"]],[21,22,["G1209"]],[22,23,["G846"]]]},{"k":29553,"v":[[0,1,["G2532"]],[1,2,["G2424"]],[2,5,["G3004"]],[5,6,["G2459"]],[6,8,["G5607"]],[8,9,["G1537"]],[9,11,["G4061"]],[11,12,["G3778"]],[12,13,["G3441"]],[13,16,["G4904"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,19,["G932"]],[19,21,["G2316"]],[21,22,["G3748"]],[22,24,["G1096"]],[24,26,["G3931"]],[26,28,["G3427"]]]},{"k":29554,"v":[[0,1,["G1889"]],[1,2,["G3588"]],[2,5,["G1537"]],[5,6,["G5216"]],[6,8,["G1401"]],[8,10,["G5547"]],[10,11,["G782"]],[11,12,["G5209"]],[12,13,["G3842"]],[13,15,["G75"]],[15,16,["G5228"]],[16,17,["G5216"]],[17,18,["G1722"]],[18,19,["G4335"]],[19,20,["G2443"]],[20,23,["G2476"]],[23,24,["G5046"]],[24,25,["G2532"]],[25,26,["G4137"]],[26,27,["G1722"]],[27,28,["G3956"]],[28,30,["G2307"]],[30,32,["G2316"]]]},{"k":29555,"v":[[0,1,["G1063"]],[1,5,["G3140","G846"]],[5,6,["G3754"]],[6,8,["G2192"]],[8,10,["G4183"]],[10,11,["G2205"]],[11,12,["G5228"]],[12,13,["G5216"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,18,["G1722"]],[18,19,["G2993"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G1722"]],[22,23,["G2404"]]]},{"k":29556,"v":[[0,1,["G3065"]],[1,2,["G3588"]],[2,3,["G27"]],[3,4,["G2395"]],[4,5,["G2532"]],[5,6,["G1214"]],[6,7,["G782"]],[7,8,["G5209"]]]},{"k":29557,"v":[[0,1,["G782"]],[1,2,["G3588"]],[2,3,["G80"]],[3,6,["G1722"]],[6,7,["G2993"]],[7,8,["G2532"]],[8,9,["G3564"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G1577"]],[12,15,["G2596"]],[15,16,["G846"]],[16,17,["G3624"]]]},{"k":29558,"v":[[0,1,["G2532"]],[1,2,["G3752"]],[2,4,["G1992"]],[4,6,["G314"]],[6,7,["G3844"]],[7,8,["G5213"]],[8,9,["G4160"]],[9,10,["G2443"]],[10,13,["G314"]],[13,14,["G2532"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G1577"]],[17,20,["G2994"]],[20,21,["G2532"]],[21,23,["G5210"]],[23,24,["G2532"]],[24,25,["G314"]],[25,26,["G3588"]],[26,28,["G1537"]],[28,29,["G2993"]]]},{"k":29559,"v":[[0,1,["G2532"]],[1,2,["G2036"]],[2,4,["G751"]],[4,6,["G991"]],[6,8,["G3588"]],[8,9,["G1248"]],[9,10,["G3739"]],[10,13,["G3880"]],[13,14,["G1722"]],[14,16,["G2962"]],[16,17,["G2443"]],[17,19,["G4137"]],[19,20,["G846"]]]},{"k":29560,"v":[[0,1,["G3588"]],[1,2,["G783"]],[2,5,["G5495"]],[5,7,["G1699"]],[7,8,["G3972"]],[8,9,["G3421"]],[9,10,["G3450"]],[10,11,["G1199"]],[11,12,["G5485"]],[12,14,["G3326"]],[14,15,["G5216"]],[15,16,["G281"]]]},{"k":29561,"v":[[0,1,["G3972"]],[1,2,["G2532"]],[2,3,["G4610"]],[3,4,["G2532"]],[4,5,["G5095"]],[5,7,["G3588"]],[7,8,["G1577"]],[8,11,["G2331"]],[11,14,["G1722"]],[14,15,["G2316"]],[15,17,["G3962"]],[17,18,["G2532"]],[18,21,["G2962"]],[21,22,["G2424"]],[22,23,["G5547"]],[23,24,["G5485"]],[24,27,["G5213"]],[27,28,["G2532"]],[28,29,["G1515"]],[29,30,["G575"]],[30,31,["G2316"]],[31,32,["G2257"]],[32,33,["G3962"]],[33,34,["G2532"]],[34,36,["G2962"]],[36,37,["G2424"]],[37,38,["G5547"]]]},{"k":29562,"v":[[0,3,["G2168"]],[3,5,["G2316"]],[5,6,["G3842"]],[6,7,["G4012"]],[7,8,["G5216"]],[8,9,["G3956"]],[9,10,["G4160"]],[10,11,["G3417"]],[11,13,["G5216"]],[13,14,["G1909"]],[14,15,["G2257"]],[15,16,["G4335"]]]},{"k":29563,"v":[[0,1,["G3421"]],[1,3,["G89"]],[3,4,["G5216"]],[4,5,["G2041"]],[5,7,["G4102"]],[7,8,["G2532"]],[8,9,["G2873"]],[9,11,["G26"]],[11,12,["G2532"]],[12,13,["G5281"]],[13,15,["G1680"]],[15,17,["G2257"]],[17,18,["G2962"]],[18,19,["G2424"]],[19,20,["G5547"]],[20,23,["G1715"]],[23,25,["G2316"]],[25,26,["G2532"]],[26,27,["G2257"]],[27,28,["G3962"]]]},{"k":29564,"v":[[0,1,["G1492"]],[1,2,["G80"]],[2,3,["G25"]],[3,4,["G5216"]],[4,5,["G1589"]],[5,6,["G5259"]],[6,7,["G2316"]]]},{"k":29565,"v":[[0,1,["G3754"]],[1,2,["G2257"]],[2,3,["G2098"]],[3,4,["G1096"]],[4,5,["G3756"]],[5,6,["G1519"]],[6,7,["G5209"]],[7,8,["G1722"]],[8,9,["G3056"]],[9,10,["G3440"]],[10,11,["G235"]],[11,12,["G2532"]],[12,13,["G1722"]],[13,14,["G1411"]],[14,15,["G2532"]],[15,16,["G1722"]],[16,18,["G40"]],[18,19,["G4151"]],[19,20,["G2532"]],[20,21,["G1722"]],[21,22,["G4183"]],[22,23,["G4136"]],[23,24,["G2531"]],[24,26,["G1492"]],[26,30,["G3634"]],[30,32,["G1096"]],[32,33,["G1722"]],[33,34,["G5213"]],[34,37,["G1223","G5209"]]]},{"k":29566,"v":[[0,1,["G2532"]],[1,2,["G5210"]],[2,3,["G1096"]],[3,4,["G3402"]],[4,6,["G2257"]],[6,7,["G2532"]],[7,9,["G3588"]],[9,10,["G2962"]],[10,12,["G1209"]],[12,13,["G3588"]],[13,14,["G3056"]],[14,15,["G1722"]],[15,16,["G4183"]],[16,17,["G2347"]],[17,18,["G3326"]],[18,19,["G5479"]],[19,22,["G40"]],[22,23,["G4151"]]]},{"k":29567,"v":[[0,2,["G5620"]],[2,3,["G5209"]],[3,4,["G1096"]],[4,5,["G5179"]],[5,7,["G3956"]],[7,9,["G4100"]],[9,10,["G1722"]],[10,11,["G3109"]],[11,12,["G2532"]],[12,13,["G882"]]]},{"k":29568,"v":[[0,1,["G1063"]],[1,2,["G575"]],[2,3,["G5216"]],[3,5,["G1837"]],[5,6,["G3588"]],[6,7,["G3056"]],[7,9,["G3588"]],[9,10,["G2962"]],[10,11,["G3756"]],[11,12,["G3440"]],[12,13,["G1722"]],[13,14,["G3109"]],[14,15,["G2532"]],[15,16,["G882"]],[16,17,["G235"]],[17,18,["G2532"]],[18,19,["G1722"]],[19,20,["G3956"]],[20,21,["G5117"]],[21,22,["G5216"]],[22,23,["G4102"]],[23,24,["G4314"]],[24,25,["G2316"]],[25,28,["G1831"]],[28,30,["G5620"]],[30,31,["G2248"]],[31,32,["G2192","G5532"]],[32,33,["G3361"]],[33,35,["G2980"]],[35,37,["G5100"]]]},{"k":29569,"v":[[0,1,["G1063"]],[1,2,["G846"]],[2,4,["G518"]],[4,5,["G4012"]],[5,6,["G2257"]],[6,8,["G3697"]],[8,11,["G1529"]],[11,13,["G2192"]],[13,14,["G4314"]],[14,15,["G5209"]],[15,16,["G2532"]],[16,17,["G4459"]],[17,19,["G1994"]],[19,20,["G4314"]],[20,21,["G2316"]],[21,22,["G575"]],[22,23,["G1497"]],[23,25,["G1398"]],[25,27,["G2198"]],[27,28,["G2532"]],[28,29,["G228"]],[29,30,["G2316"]]]},{"k":29570,"v":[[0,1,["G2532"]],[1,4,["G362"]],[4,5,["G846"]],[5,6,["G5207"]],[6,7,["G1537"]],[7,8,["G3772"]],[8,9,["G3739"]],[9,11,["G1453"]],[11,12,["G1537"]],[12,14,["G3498"]],[14,16,["G2424"]],[16,18,["G4506"]],[18,19,["G2248"]],[19,20,["G575"]],[20,21,["G3588"]],[21,22,["G3709"]],[22,24,["G2064"]]]},{"k":29571,"v":[[0,1,["G1063"]],[1,2,["G846"]],[2,3,["G80"]],[3,4,["G1492"]],[4,5,["G2257"]],[5,7,["G1529"]],[7,8,["G4314"]],[8,9,["G5209"]],[9,10,["G3754"]],[10,12,["G1096"]],[12,13,["G3756"]],[13,15,["G2756"]]]},{"k":29572,"v":[[0,1,["G235"]],[1,2,["G2532"]],[2,8,["G4310"]],[8,9,["G2532"]],[9,12,["G5195"]],[12,13,["G2531"]],[13,15,["G1492"]],[15,16,["G1722"]],[16,17,["G5375"]],[17,20,["G3955"]],[20,21,["G1722"]],[21,22,["G2257"]],[22,23,["G2316"]],[23,25,["G2980"]],[25,26,["G4314"]],[26,27,["G5209"]],[27,28,["G3588"]],[28,29,["G2098"]],[29,31,["G2316"]],[31,32,["G1722"]],[32,33,["G4183"]],[33,34,["G73"]]]},{"k":29573,"v":[[0,1,["G1063"]],[1,2,["G2257"]],[2,3,["G3874"]],[3,5,["G3756"]],[5,6,["G1537"]],[6,7,["G4106"]],[7,8,["G3761"]],[8,9,["G1537"]],[9,10,["G167"]],[10,11,["G3777"]],[11,12,["G1722"]],[12,13,["G1388"]]]},{"k":29574,"v":[[0,1,["G235"]],[1,2,["G2531"]],[2,5,["G1381"]],[5,6,["G5259"]],[6,7,["G2316"]],[7,12,["G4100"]],[12,14,["G3588"]],[14,15,["G2098"]],[15,17,["G3779"]],[17,19,["G2980"]],[19,20,["G3756"]],[20,21,["G5613"]],[21,22,["G700"]],[22,23,["G444"]],[23,24,["G235"]],[24,25,["G2316"]],[25,27,["G1381"]],[27,28,["G2257"]],[28,29,["G2588"]]]},{"k":29575,"v":[[0,1,["G1063"]],[1,2,["G3777"]],[2,5,["G4218"]],[5,9,["G1096","G1722","G3056","G2850"]],[9,10,["G2531"]],[10,12,["G1492"]],[12,13,["G3777"]],[13,15,["G4392"]],[15,17,["G4124"]],[17,18,["G2316"]],[18,20,["G3144"]]]},{"k":29576,"v":[[0,1,["G3777"]],[1,2,["G1537"]],[2,3,["G444"]],[3,4,["G2212"]],[4,6,["G1391"]],[6,7,["G3777"]],[7,8,["G575"]],[8,9,["G5216"]],[9,10,["G3777"]],[10,12,["G575"]],[12,13,["G243"]],[13,16,["G1410"]],[16,18,["G1511"]],[18,19,["G1722","G922"]],[19,20,["G5613"]],[20,22,["G652"]],[22,24,["G5547"]]]},{"k":29577,"v":[[0,1,["G235"]],[1,3,["G1096"]],[3,4,["G2261"]],[4,5,["G1722","G3319"]],[5,6,["G5216"]],[6,8,["G5613","G302"]],[8,10,["G5162"]],[10,11,["G2282"]],[11,12,["G1438"]],[12,13,["G5043"]]]},{"k":29578,"v":[[0,1,["G3779"]],[1,4,["G2442"]],[4,6,["G5216"]],[6,9,["G2106"]],[9,12,["G3330"]],[12,14,["G5213"]],[14,15,["G3756"]],[15,16,["G3588"]],[16,17,["G2098"]],[17,19,["G2316"]],[19,20,["G3440"]],[20,21,["G235"]],[21,22,["G2532"]],[22,24,["G1438"]],[24,25,["G5590"]],[25,26,["G1360"]],[26,28,["G1096"]],[28,29,["G27"]],[29,31,["G2254"]]]},{"k":29579,"v":[[0,1,["G1063"]],[1,3,["G3421"]],[3,4,["G80"]],[4,5,["G2257"]],[5,6,["G2873"]],[6,7,["G2532"]],[7,8,["G3449"]],[8,9,["G1063"]],[9,10,["G2038"]],[10,11,["G3571"]],[11,12,["G2532"]],[12,13,["G2250"]],[13,17,["G3361"]],[17,19,["G1912"]],[19,21,["G5100"]],[21,23,["G5216"]],[23,25,["G2784"]],[25,26,["G1519"]],[26,27,["G5209"]],[27,28,["G3588"]],[28,29,["G2098"]],[29,31,["G2316"]]]},{"k":29580,"v":[[0,1,["G5210"]],[1,3,["G3144"]],[3,4,["G2532"]],[4,5,["G2316"]],[5,7,["G5613"]],[7,8,["G3743"]],[8,9,["G2532"]],[9,10,["G1346"]],[10,11,["G2532"]],[11,12,["G274"]],[12,15,["G1096"]],[15,17,["G5213"]],[17,19,["G4100"]]]},{"k":29581,"v":[[0,1,["G2509"]],[1,3,["G1492"]],[3,4,["G5613"]],[4,6,["G3870","(G5209)"]],[6,7,["G2532"]],[7,8,["G3888"]],[8,9,["G2532"]],[9,10,["G3140"]],[10,11,["G1538"]],[11,12,["G1520"]],[12,14,["G5216"]],[14,15,["G5613"]],[15,17,["G3962"]],[17,19,["G1438"]],[19,20,["G5043"]]]},{"k":29582,"v":[[0,2,["G5209"]],[2,4,["G4043"]],[4,5,["G516"]],[5,7,["G2316"]],[7,10,["G2564"]],[10,11,["G5209"]],[11,12,["G1519"]],[12,13,["G1438"]],[13,14,["G932"]],[14,15,["G2532"]],[15,16,["G1391"]]]},{"k":29583,"v":[[0,3,["G1223","G5124"]],[3,4,["G2532"]],[4,5,["G2168"]],[5,6,["G2249"]],[6,7,["G2316"]],[7,9,["G89"]],[9,10,["G3754"]],[10,13,["G3880"]],[13,15,["G3056"]],[15,17,["G2316"]],[17,20,["G189"]],[20,21,["G3844"]],[21,22,["G2257"]],[22,24,["G1209"]],[24,26,["G3756"]],[26,29,["G3056"]],[29,31,["G444"]],[31,32,["G235"]],[32,33,["G2531"]],[33,35,["G2076"]],[35,37,["G230"]],[37,39,["G3056"]],[39,41,["G2316"]],[41,42,["G3739"]],[42,44,["G1754"]],[44,45,["G2532"]],[45,46,["G1722"]],[46,47,["G5213"]],[47,49,["G4100"]]]},{"k":29584,"v":[[0,1,["G1063"]],[1,2,["G5210"]],[2,3,["G80"]],[3,4,["G1096"]],[4,5,["G3402"]],[5,7,["G3588"]],[7,8,["G1577"]],[8,10,["G2316"]],[10,12,["G1722"]],[12,13,["G2449"]],[13,14,["G5607"]],[14,15,["G1722"]],[15,16,["G5547"]],[16,17,["G2424"]],[17,18,["G3754"]],[18,19,["G5210"]],[19,20,["G2532"]],[20,22,["G3958"]],[22,24,["G5024"]],[24,25,["G5259"]],[25,27,["G2398"]],[27,28,["G4853"]],[28,30,["G2531"]],[30,31,["G846"]],[31,32,["(G2532)"]],[32,33,["G5259"]],[33,34,["G3588"]],[34,35,["G2453"]]]},{"k":29585,"v":[[0,3,["G615","G2532"]],[3,4,["G3588"]],[4,5,["G2962"]],[5,6,["G2424"]],[6,7,["G2532"]],[7,9,["G2398"]],[9,10,["G4396"]],[10,11,["G2532"]],[11,13,["G1559"]],[13,14,["G2248"]],[14,15,["G2532"]],[15,17,["G700"]],[17,18,["G3361"]],[18,19,["G2316"]],[19,20,["G2532"]],[20,22,["G1727"]],[22,24,["G3956"]],[24,25,["G444"]]]},{"k":29586,"v":[[0,1,["G2967"]],[1,2,["G2248"]],[2,4,["G2980"]],[4,6,["G3588"]],[6,7,["G1484"]],[7,8,["G2443"]],[8,12,["G4982"]],[12,15,["G378"]],[15,16,["G848"]],[16,17,["G266"]],[17,18,["G3842"]],[18,19,["G1161"]],[19,20,["G3588"]],[20,21,["G3709"]],[21,23,["G5348"]],[23,24,["G1909"]],[24,25,["G846"]],[25,26,["G1519"]],[26,28,["G5056"]]]},{"k":29587,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,3,["G80"]],[3,5,["G642"]],[5,6,["G575"]],[6,7,["G5216"]],[7,8,["G4314"]],[8,11,["G5610","G2540"]],[11,13,["G4383"]],[13,14,["G3756"]],[14,16,["G2588"]],[16,17,["G4704"]],[17,20,["G4056"]],[20,22,["G1492"]],[22,23,["G5216"]],[23,24,["G4383"]],[24,25,["G1722"]],[25,26,["G4183"]],[26,27,["G1939"]]]},{"k":29588,"v":[[0,1,["G1352"]],[1,3,["G2309"]],[3,5,["G2064"]],[5,6,["G4314"]],[6,7,["G5209"]],[7,8,["G3303"]],[8,9,["G1473"]],[9,10,["G3972","(G2532)"]],[10,13,["G530","G2532","G1364"]],[13,14,["G2532"]],[14,15,["G4567"]],[15,16,["G1465"]],[16,17,["G2248"]]]},{"k":29589,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,4,["G2257"]],[4,5,["G1680"]],[5,6,["G2228"]],[6,7,["G5479"]],[7,8,["G2228"]],[8,9,["G4735"]],[9,11,["G2746"]],[11,12,["(G2228)"]],[12,13,["G3780"]],[13,14,["G2532"]],[14,15,["G5210"]],[15,18,["G1715"]],[18,20,["G2257"]],[20,21,["G2962"]],[21,22,["G2424"]],[22,23,["G5547"]],[23,24,["G1722"]],[24,25,["G846"]],[25,26,["G3952"]]]},{"k":29590,"v":[[0,1,["G1063"]],[1,2,["G5210"]],[2,3,["G2075"]],[3,4,["G2257"]],[4,5,["G1391"]],[5,6,["G2532"]],[6,7,["G5479"]]]},{"k":29591,"v":[[0,1,["G1352"]],[1,6,["G3371"]],[6,7,["G4722"]],[7,11,["G2106"]],[11,14,["G2641"]],[14,15,["G1722"]],[15,16,["G116"]],[16,17,["G3441"]]]},{"k":29592,"v":[[0,1,["G2532"]],[1,2,["G3992"]],[2,3,["G5095"]],[3,4,["G2257"]],[4,5,["G80"]],[5,6,["G2532"]],[6,7,["G1249"]],[7,9,["G2316"]],[9,10,["G2532"]],[10,11,["G2257"]],[11,12,["G4904"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G2098"]],[15,17,["G5547"]],[17,19,["G4741"]],[19,20,["G5209"]],[20,21,["G2532"]],[21,23,["G3870"]],[23,24,["G5209"]],[24,25,["G4012"]],[25,26,["G5216"]],[26,27,["G4102"]]]},{"k":29593,"v":[[0,3,["G3367"]],[3,6,["G4525"]],[6,7,["G1722"]],[7,8,["G5025"]],[8,9,["G2347"]],[9,10,["G1063"]],[10,11,["G846"]],[11,12,["G1492"]],[12,13,["G3754"]],[13,16,["G2749"]],[16,17,["G1519","G5124"]]]},{"k":29594,"v":[[0,1,["G1063"]],[1,2,["G2532"]],[2,3,["G3753"]],[3,5,["G2258"]],[5,6,["G4314"]],[6,7,["G5209"]],[7,11,["G4302","G5213"]],[11,12,["G3754"]],[12,14,["G3195"]],[14,16,["G2346"]],[16,17,["G2532"]],[17,18,["G2531"]],[18,22,["G1096"]],[22,23,["G2532"]],[23,25,["G1492"]]]},{"k":29595,"v":[[0,3,["G1223","G5124"]],[3,5,["G2504"]],[5,8,["G3371"]],[8,9,["G4722"]],[9,11,["G3992"]],[11,13,["G1097"]],[13,14,["G5216"]],[14,15,["G4102"]],[15,19,["G3381"]],[19,20,["G3588"]],[20,21,["G3985"]],[21,23,["G3985"]],[23,24,["G5209"]],[24,25,["G2532"]],[25,26,["G2257"]],[26,27,["G2873"]],[27,28,["G1096"]],[28,29,["G1519"]],[29,30,["G2756"]]]},{"k":29596,"v":[[0,1,["G1161"]],[1,2,["G737"]],[2,4,["G5095"]],[4,5,["G2064"]],[5,6,["G575"]],[6,7,["G5216"]],[7,8,["G4314"]],[8,9,["G2248"]],[9,10,["G2532"]],[10,14,["G2097","G2254"]],[14,16,["G5216"]],[16,17,["G4102"]],[17,18,["G2532"]],[18,19,["G26"]],[19,20,["G2532"]],[20,21,["G3754"]],[21,23,["G2192"]],[23,24,["G18"]],[24,25,["G3417"]],[25,27,["G2257"]],[27,28,["G3842"]],[28,30,["G1971"]],[30,32,["G1492"]],[32,33,["G2248"]],[33,34,["G2509"]],[34,35,["G2249"]],[35,36,["G2532"]],[36,39,["G5209"]]]},{"k":29597,"v":[[0,1,["G1223","G5124"]],[1,2,["G80"]],[2,5,["G3870"]],[5,6,["G1909"]],[6,7,["G5213"]],[7,8,["G1909"]],[8,9,["G3956"]],[9,10,["G2257"]],[10,11,["G2347"]],[11,12,["G2532"]],[12,13,["G318"]],[13,14,["G1223"]],[14,15,["G5216"]],[15,16,["G4102"]]]},{"k":29598,"v":[[0,1,["G3754"]],[1,2,["G3568"]],[2,4,["G2198"]],[4,5,["G1437"]],[5,6,["G5210"]],[6,8,["G4739"]],[8,9,["G1722"]],[9,11,["G2962"]]]},{"k":29599,"v":[[0,1,["G1063"]],[1,2,["G5101"]],[2,3,["G2169"]],[3,4,["G1410"]],[4,9,["G467","G2316"]],[9,10,["G4012"]],[10,11,["G5216"]],[11,12,["G1909"]],[12,13,["G3956"]],[13,14,["G3588"]],[14,15,["G5479"]],[15,16,["G3739"]],[16,18,["G5463"]],[18,21,["G1223","G5209"]],[21,22,["G1715"]],[22,23,["G2257"]],[23,24,["G2316"]]]},{"k":29600,"v":[[0,1,["G3571"]],[1,2,["G2532"]],[2,3,["G2250"]],[3,4,["G1189"]],[4,5,["G5228","G1537","G4053"]],[5,9,["G1492"]],[9,10,["G5216"]],[10,11,["G4383"]],[11,12,["G2532"]],[12,14,["G2675"]],[14,18,["G5303"]],[18,20,["G5216"]],[20,21,["G4102"]]]},{"k":29601,"v":[[0,1,["G1161"]],[1,2,["G2316"]],[2,3,["G846"]],[3,4,["G2532"]],[4,5,["G2257"]],[5,6,["G3962"]],[6,7,["G2532"]],[7,8,["G2257"]],[8,9,["G2962"]],[9,10,["G2424"]],[10,11,["G5547"]],[11,12,["G2720"]],[12,13,["G2257"]],[13,14,["G3598"]],[14,15,["G4314"]],[15,16,["G5209"]]]},{"k":29602,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,7,["G4121","G5209"]],[7,8,["G2532"]],[8,9,["G4052"]],[9,11,["G26"]],[11,14,["G240","G1519"]],[14,15,["G2532"]],[15,16,["G1519"]],[16,17,["G3956"]],[17,19,["G2532"]],[19,20,["G2509"]],[20,21,["G2249"]],[21,23,["G1519"]],[23,24,["G5209"]]]},{"k":29603,"v":[[0,6,["G4741"]],[6,7,["G5216"]],[7,8,["G2588"]],[8,9,["G273"]],[9,10,["G1722"]],[10,11,["G42"]],[11,12,["G1715"]],[12,13,["G2316"]],[13,14,["G2532"]],[14,15,["G2257"]],[15,16,["G3962"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G3952"]],[19,21,["G2257"]],[21,22,["G2962"]],[22,23,["G2424"]],[23,24,["G5547"]],[24,25,["G3326"]],[25,26,["G3956"]],[26,27,["G846"]],[27,28,["G40"]]]},{"k":29604,"v":[[0,1,["G3063"]],[1,2,["G3767"]],[2,4,["G2065"]],[4,5,["G5209"]],[5,6,["G80"]],[6,7,["G2532"]],[7,8,["G3870"]],[8,10,["G1722"]],[10,12,["G2962"]],[12,13,["G2424"]],[13,15,["G2531"]],[15,18,["G3880"]],[18,19,["G3844"]],[19,20,["G2257"]],[20,21,["G4459"]],[21,22,["G5209"]],[22,23,["G1163"]],[23,25,["G4043"]],[25,26,["G2532"]],[26,28,["G700"]],[28,29,["G2316"]],[29,32,["(G2443)"]],[32,33,["G4052"]],[33,36,["G3123"]]]},{"k":29605,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,4,["G5101"]],[4,5,["G3852"]],[5,7,["G1325"]],[7,8,["G5213"]],[8,9,["G1223"]],[9,10,["G3588"]],[10,11,["G2962"]],[11,12,["G2424"]]]},{"k":29606,"v":[[0,1,["G1063"]],[1,2,["G5124"]],[2,3,["G2076"]],[3,5,["G2307"]],[5,7,["G2316"]],[7,9,["G5216"]],[9,10,["G38"]],[10,12,["G5209"]],[12,14,["G567"]],[14,15,["G575"]],[15,16,["G4202"]]]},{"k":29607,"v":[[0,3,["G1538"]],[3,5,["G5216"]],[5,7,["G1492"]],[7,10,["G2932"]],[10,11,["G1438"]],[11,12,["G4632"]],[12,13,["G1722"]],[13,14,["G38"]],[14,15,["G2532"]],[15,16,["G5092"]]]},{"k":29608,"v":[[0,1,["G3361"]],[1,2,["G1722"]],[2,4,["G3806"]],[4,6,["G1939"]],[6,7,["G2532"]],[7,8,["G2509"]],[8,9,["G3588"]],[9,10,["G1484"]],[10,12,["G1492"]],[12,13,["G3361"]],[13,14,["G2316"]]]},{"k":29609,"v":[[0,2,["G3361"]],[2,5,["G5233"]],[5,6,["G2532"]],[6,7,["G4122"]],[7,8,["G848"]],[8,9,["G80"]],[9,10,["G1722"]],[10,12,["G4229"]],[12,14,["G1360"]],[14,15,["G3588"]],[15,16,["G2962"]],[16,19,["G1558"]],[19,20,["G4012"]],[20,21,["G3956"]],[21,22,["G5130"]],[22,23,["G2531"]],[23,25,["G2532"]],[25,27,["G4277"]],[27,28,["G5213"]],[28,29,["G2532"]],[29,30,["G1263"]]]},{"k":29610,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,4,["G3756"]],[4,5,["G2564"]],[5,6,["G2248"]],[6,7,["G1909"]],[7,8,["G167"]],[8,9,["G235"]],[9,10,["G1722"]],[10,11,["G38"]]]},{"k":29611,"v":[[0,4,["G114","G5105"]],[4,5,["G114"]],[5,6,["G3756"]],[6,7,["G444"]],[7,8,["G235"]],[8,9,["G2316"]],[9,13,["G1325","G2532"]],[13,14,["G1519"]],[14,15,["G2248"]],[15,16,["G848"]],[16,17,["G40"]],[17,18,["G4151"]]]},{"k":29612,"v":[[0,1,["G1161"]],[1,3,["G4012"]],[3,5,["G5360"]],[5,7,["G2192","G5532"]],[7,8,["G3756"]],[8,11,["G1125"]],[11,13,["G5213"]],[13,14,["G1063"]],[14,15,["G5210"]],[15,16,["G846"]],[16,17,["G2075"]],[17,20,["G2312"]],[20,21,["G1519"]],[21,22,["G25"]],[22,24,["G240"]]]},{"k":29613,"v":[[0,1,["G1063"]],[1,2,["G2532"]],[2,4,["G4160"]],[4,5,["G846"]],[5,6,["G1519"]],[6,7,["G3956"]],[7,8,["G3588"]],[8,9,["G80"]],[9,10,["G3588"]],[10,12,["G1722"]],[12,13,["G3650"]],[13,14,["G3109"]],[14,15,["G1161"]],[15,17,["G3870"]],[17,18,["G5209"]],[18,19,["G80"]],[19,22,["G4052"]],[22,25,["G3123"]]]},{"k":29614,"v":[[0,1,["G2532"]],[1,4,["G5389"]],[4,7,["G2270"]],[7,8,["G2532"]],[8,13,["G4238","G2398"]],[13,14,["G2532"]],[14,16,["G2038"]],[16,18,["G5216"]],[18,19,["G2398"]],[19,20,["G5495"]],[20,21,["G2531"]],[21,23,["G3853"]],[23,24,["G5213"]]]},{"k":29615,"v":[[0,1,["G2443"]],[1,4,["G4043"]],[4,5,["G2156"]],[5,6,["G4314"]],[6,10,["G1854"]],[10,11,["G2532"]],[11,15,["G2192"]],[15,16,["G5532"]],[16,18,["G3367"]]]},{"k":29616,"v":[[0,1,["G1161"]],[1,3,["G2309"]],[3,4,["G3756"]],[4,6,["G5209"]],[6,9,["G50"]],[9,10,["G80"]],[10,11,["G4012"]],[11,15,["G2837"]],[15,16,["G2443"]],[16,18,["G3076"]],[18,19,["G3361"]],[19,20,["G2532"]],[20,21,["G2531"]],[21,22,["G3062"]],[22,24,["G2192"]],[24,25,["G3361"]],[25,26,["G1680"]]]},{"k":29617,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,4,["G4100"]],[4,5,["G3754"]],[5,6,["G2424"]],[6,7,["G599"]],[7,8,["G2532"]],[8,10,["G450"]],[10,12,["G3779"]],[12,16,["G2837","G2532"]],[16,17,["G1223"]],[17,18,["G2424"]],[18,20,["G2316"]],[20,21,["G71"]],[21,22,["G4862"]],[22,23,["G846"]]]},{"k":29618,"v":[[0,1,["G1063"]],[1,2,["G5124"]],[2,4,["G3004"]],[4,6,["G5213"]],[6,7,["G1722"]],[7,9,["G3056"]],[9,12,["G2962"]],[12,13,["G3754"]],[13,14,["G2249"]],[14,17,["G2198"]],[17,19,["G4035"]],[19,20,["G1519"]],[20,21,["G3588"]],[21,22,["G3952"]],[22,24,["G3588"]],[24,25,["G2962"]],[25,27,["G3364"]],[27,28,["G5348"]],[28,32,["G2837"]]]},{"k":29619,"v":[[0,1,["G3754"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G846"]],[4,6,["G2597"]],[6,7,["G575"]],[7,8,["G3772"]],[8,9,["G1722"]],[9,11,["G2752"]],[11,12,["G1722"]],[12,14,["G5456"]],[14,17,["G743"]],[17,18,["G2532"]],[18,19,["G1722"]],[19,21,["G4536"]],[21,23,["G2316"]],[23,24,["G2532"]],[24,25,["G3588"]],[25,26,["G3498"]],[26,27,["G1722"]],[27,28,["G5547"]],[28,30,["G450"]],[30,31,["G4412"]]]},{"k":29620,"v":[[0,1,["G1899"]],[1,2,["G2249"]],[2,5,["G2198"]],[5,7,["G4035"]],[7,11,["G726"]],[11,12,["G260"]],[12,13,["G4862"]],[13,14,["G846"]],[14,15,["G1722"]],[15,17,["G3507"]],[17,19,["G1519","G529"]],[19,20,["G3588"]],[20,21,["G2962"]],[21,22,["G1519"]],[22,24,["G109"]],[24,25,["G2532"]],[25,26,["G3779"]],[26,29,["G3842"]],[29,30,["G2071"]],[30,31,["G4862"]],[31,33,["G2962"]]]},{"k":29621,"v":[[0,1,["G5620"]],[1,2,["G3870"]],[2,4,["G240"]],[4,5,["G1722"]],[5,6,["G5125"]],[6,7,["G3056"]]]},{"k":29622,"v":[[0,1,["G1161"]],[1,2,["G4012"]],[2,3,["G3588"]],[3,4,["G5550"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G2540"]],[7,8,["G80"]],[8,10,["G2192"]],[10,11,["G3756"]],[11,12,["G5532"]],[12,15,["G1125"]],[15,17,["G5213"]]]},{"k":29623,"v":[[0,1,["G1063"]],[1,2,["G846"]],[2,3,["G1492"]],[3,4,["G199"]],[4,5,["G3754"]],[5,6,["G3588"]],[6,7,["G2250"]],[7,10,["G2962"]],[10,11,["G3779"]],[11,12,["G2064"]],[12,13,["G5613"]],[13,15,["G2812"]],[15,16,["G1722"]],[16,18,["G3571"]]]},{"k":29624,"v":[[0,1,["G1063"]],[1,2,["G3752"]],[2,5,["G3004"]],[5,6,["G1515"]],[6,7,["G2532"]],[7,8,["G803"]],[8,9,["G5119"]],[9,10,["G160"]],[10,11,["G3639"]],[11,13,["G2186"]],[13,14,["G846"]],[14,15,["G5618"]],[15,16,["G5604"]],[16,21,["G2192","G1722","G1064"]],[21,22,["G2532"]],[22,25,["G3364"]],[25,26,["G1628"]]]},{"k":29625,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G80"]],[3,4,["G2075"]],[4,5,["G3756"]],[5,6,["G1722"]],[6,7,["G4655"]],[7,8,["G2443"]],[8,10,["G2250"]],[10,12,["G2638"]],[12,13,["G5209"]],[13,14,["G5613"]],[14,16,["G2812"]]]},{"k":29626,"v":[[0,1,["G5210"]],[1,2,["G2075"]],[2,3,["G3956"]],[3,5,["G5207"]],[5,7,["G5457"]],[7,8,["G2532"]],[8,10,["G5207"]],[10,13,["G2250"]],[13,15,["G2070"]],[15,16,["G3756"]],[16,19,["G3571"]],[19,20,["G3761"]],[20,22,["G4655"]]]},{"k":29627,"v":[[0,1,["G686","G3767"]],[1,4,["G3361"]],[4,5,["G2518"]],[5,6,["G5613"]],[6,7,["(G2532)"]],[7,8,["G3062"]],[8,9,["G235"]],[9,12,["G1127"]],[12,13,["G2532"]],[13,15,["G3525"]]]},{"k":29628,"v":[[0,1,["G1063"]],[1,4,["G2518"]],[4,5,["G2518"]],[5,8,["G3571"]],[8,9,["G2532"]],[9,13,["G3182"]],[13,15,["G3184"]],[15,18,["G3571"]]]},{"k":29629,"v":[[0,1,["G1161"]],[1,3,["G2249"]],[3,5,["G5607"]],[5,8,["G2250"]],[8,10,["G3525"]],[10,12,["G1746"]],[12,14,["G2382"]],[14,16,["G4102"]],[16,17,["G2532"]],[17,18,["G26"]],[18,19,["G2532"]],[19,22,["G4030"]],[22,24,["G1680"]],[24,26,["G4991"]]]},{"k":29630,"v":[[0,1,["G3754"]],[1,2,["G2316"]],[2,4,["G3756"]],[4,5,["G5087"]],[5,6,["G2248"]],[6,7,["G1519"]],[7,8,["G3709"]],[8,9,["G235"]],[9,11,["G1519","G4047"]],[11,12,["G4991"]],[12,13,["G1223"]],[13,14,["G2257"]],[14,15,["G2962"]],[15,16,["G2424"]],[16,17,["G5547"]]]},{"k":29631,"v":[[0,2,["G599"]],[2,3,["G5228"]],[3,4,["G2257"]],[4,5,["G2443"]],[5,6,["G1535"]],[6,8,["G1127"]],[8,9,["G1535"]],[9,10,["G2518"]],[10,13,["G2198"]],[13,14,["G260"]],[14,15,["G4862"]],[15,16,["G846"]]]},{"k":29632,"v":[[0,1,["G1352"]],[1,2,["G3870"]],[2,4,["G240"]],[4,5,["G2532"]],[5,6,["G3618"]],[6,8,["G1520","G1520"]],[8,10,["G2531"]],[10,11,["G2532"]],[11,13,["G4160"]]]},{"k":29633,"v":[[0,1,["G1161"]],[1,3,["G2065"]],[3,4,["G5209"]],[4,5,["G80"]],[5,7,["G1492"]],[7,10,["G2872"]],[10,11,["G1722"]],[11,12,["G5213"]],[12,13,["G2532"]],[13,15,["G4291"]],[15,16,["G5216"]],[16,17,["G1722"]],[17,19,["G2962"]],[19,20,["G2532"]],[20,21,["G3560"]],[21,22,["G5209"]]]},{"k":29634,"v":[[0,1,["G2532"]],[1,3,["G2233"]],[3,4,["G846"]],[4,6,["G5228","G1537","G4053"]],[6,7,["G1722"]],[7,8,["G26"]],[8,12,["G1223","G846","G2041"]],[12,16,["G1514"]],[16,17,["G1722"]],[17,18,["G1438"]]]},{"k":29635,"v":[[0,1,["G1161"]],[1,3,["G3870"]],[3,4,["G5209"]],[4,5,["G80"]],[5,6,["G3560"]],[6,10,["G813"]],[10,11,["G3888"]],[11,12,["G3588"]],[12,13,["G3642"]],[13,14,["G472"]],[14,15,["G3588"]],[15,16,["G772"]],[16,18,["G3114"]],[18,19,["G4314"]],[19,20,["G3956"]],[20,21,[]]]},{"k":29636,"v":[[0,1,["G3708"]],[1,3,["G5100","G3361"]],[3,4,["G591"]],[4,5,["G2556"]],[5,6,["G473"]],[6,7,["G2556"]],[7,9,["G5100"]],[9,11,["G235"]],[11,12,["G3842"]],[12,13,["G1377"]],[13,17,["G18"]],[17,18,["G2532"]],[18,19,["G1519"]],[19,20,["G240"]],[20,21,["G2532"]],[21,22,["G1519"]],[22,23,["G3956"]],[23,24,[]]]},{"k":29637,"v":[[0,1,["G5463"]],[1,2,["G3842"]]]},{"k":29638,"v":[[0,1,["G4336"]],[1,3,["G89"]]]},{"k":29639,"v":[[0,1,["G1722"]],[1,3,["G3956"]],[3,5,["G2168"]],[5,6,["G1063"]],[6,7,["G5124"]],[7,10,["G2307"]],[10,12,["G2316"]],[12,13,["G1722"]],[13,14,["G5547"]],[14,15,["G2424"]],[15,16,["G1519"]],[16,17,["G5209"]]]},{"k":29640,"v":[[0,1,["G4570"]],[1,2,["G3361"]],[2,3,["G3588"]],[3,4,["G4151"]]]},{"k":29641,"v":[[0,1,["G1848"]],[1,2,["G3361"]],[2,3,["G4394"]]]},{"k":29642,"v":[[0,1,["G1381"]],[1,3,["G3956"]],[3,5,["G2722"]],[5,9,["G2570"]]]},{"k":29643,"v":[[0,1,["G567"]],[1,2,["G575"]],[2,3,["G3956"]],[3,4,["G1491"]],[4,6,["G4190"]]]},{"k":29644,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G846"]],[3,4,["G2316"]],[4,6,["G1515"]],[6,7,["G37"]],[7,8,["G5209"]],[8,9,["G3651"]],[9,10,["G2532"]],[10,14,["G5216"]],[14,15,["G3648"]],[15,16,["G4151"]],[16,17,["G2532"]],[17,18,["G5590"]],[18,19,["G2532"]],[19,20,["G4983"]],[20,22,["G5083"]],[22,23,["G274"]],[23,24,["G1722"]],[24,25,["G3588"]],[25,26,["G3952"]],[26,28,["G2257"]],[28,29,["G2962"]],[29,30,["G2424"]],[30,31,["G5547"]]]},{"k":29645,"v":[[0,1,["G4103"]],[1,5,["G2564"]],[5,6,["G5209"]],[6,7,["G3739"]],[7,8,["G2532"]],[8,10,["G4160"]],[10,11,[]]]},{"k":29646,"v":[[0,1,["G80"]],[1,2,["G4336"]],[2,3,["G4012"]],[3,4,["G2257"]]]},{"k":29647,"v":[[0,1,["G782"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G80"]],[4,5,["G1722"]],[5,7,["G40"]],[7,8,["G5370"]]]},{"k":29648,"v":[[0,2,["G3726"]],[2,3,["G5209"]],[3,5,["G3588"]],[5,6,["G2962"]],[6,9,["G1992"]],[9,11,["G314"]],[11,13,["G3956"]],[13,14,["G3588"]],[14,15,["G40"]],[15,16,["G80"]]]},{"k":29649,"v":[[0,1,["G3588"]],[1,2,["G5485"]],[2,4,["G2257"]],[4,5,["G2962"]],[5,6,["G2424"]],[6,7,["G5547"]],[7,9,["G3326"]],[9,10,["G5216"]],[10,11,["G281"]]]},{"k":29650,"v":[[0,1,["G3972"]],[1,2,["G2532"]],[2,3,["G4610"]],[3,4,["G2532"]],[4,5,["G5095"]],[5,7,["G3588"]],[7,8,["G1577"]],[8,11,["G2331"]],[11,12,["G1722"]],[12,13,["G2316"]],[13,14,["G2257"]],[14,15,["G3962"]],[15,16,["G2532"]],[16,18,["G2962"]],[18,19,["G2424"]],[19,20,["G5547"]]]},{"k":29651,"v":[[0,1,["G5485"]],[1,3,["G5213"]],[3,4,["G2532"]],[4,5,["G1515"]],[5,6,["G575"]],[6,7,["G2316"]],[7,8,["G2257"]],[8,9,["G3962"]],[9,10,["G2532"]],[10,12,["G2962"]],[12,13,["G2424"]],[13,14,["G5547"]]]},{"k":29652,"v":[[0,3,["G3784"]],[3,5,["G2168"]],[5,6,["G2316"]],[6,7,["G3842"]],[7,8,["G4012"]],[8,9,["G5216"]],[9,10,["G80"]],[10,11,["G2531"]],[11,13,["G2076"]],[13,14,["G514"]],[14,16,["G3754"]],[16,17,["G5216"]],[17,18,["G4102"]],[18,20,["G5232"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G26"]],[23,25,["G1538"]],[25,26,["G1520"]],[26,28,["G5216"]],[28,29,["G3956"]],[29,30,["G1519"]],[30,32,["G240"]],[32,33,["G4121"]]]},{"k":29653,"v":[[0,2,["G5620"]],[2,3,["G2248"]],[3,4,["G846"]],[4,5,["G2744"]],[5,6,["G1722"]],[6,7,["G5213"]],[7,8,["G1722"]],[8,9,["G3588"]],[9,10,["G1577"]],[10,12,["G2316"]],[12,13,["G5228"]],[13,14,["G5216"]],[14,15,["G5281"]],[15,16,["G2532"]],[16,17,["G4102"]],[17,18,["G1722"]],[18,19,["G3956"]],[19,20,["G5216"]],[20,21,["G1375"]],[21,22,["G2532"]],[22,23,["G2347"]],[23,24,["G3739"]],[24,26,["G430"]]]},{"k":29654,"v":[[0,5,["G1730"]],[5,7,["G3588"]],[7,8,["G1342"]],[8,9,["G2920"]],[9,11,["G2316"]],[11,13,["G5209"]],[13,17,["G2661"]],[17,19,["G3588"]],[19,20,["G932"]],[20,22,["G2316"]],[22,23,["G5228"]],[23,24,["G3739"]],[24,26,["G2532"]],[26,27,["G3958"]]]},{"k":29655,"v":[[0,1,["G1512"]],[1,6,["G1342"]],[6,7,["G3844"]],[7,8,["G2316"]],[8,10,["G467"]],[10,11,["G2347"]],[11,15,["G2346"]],[15,16,["G5209"]]]},{"k":29656,"v":[[0,1,["G2532"]],[1,3,["G5213"]],[3,6,["G2346"]],[6,7,["G425"]],[7,8,["G3326"]],[8,9,["G2257"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G2962"]],[12,13,["G2424"]],[13,16,["G602"]],[16,17,["G575"]],[17,18,["G3772"]],[18,19,["G3326"]],[19,20,["G848"]],[20,21,["G1411"]],[21,22,["G32"]]]},{"k":29657,"v":[[0,1,["G1722"]],[1,2,["G5395"]],[2,3,["G4442"]],[3,4,["G1325"]],[4,5,["G1557"]],[5,9,["G1492"]],[9,10,["G3361"]],[10,11,["G2316"]],[11,12,["G2532"]],[12,14,["G5219"]],[14,15,["G3361"]],[15,16,["G3588"]],[16,17,["G2098"]],[17,19,["G2257"]],[19,20,["G2962"]],[20,21,["G2424"]],[21,22,["G5547"]]]},{"k":29658,"v":[[0,1,["G3748"]],[1,4,["G5099","G1349"]],[4,6,["G166"]],[6,7,["G3639"]],[7,8,["G575"]],[8,10,["G4383"]],[10,12,["G3588"]],[12,13,["G2962"]],[13,14,["G2532"]],[14,15,["G575"]],[15,16,["G3588"]],[16,17,["G1391"]],[17,19,["G846"]],[19,20,["G2479"]]]},{"k":29659,"v":[[0,1,["G3752"]],[1,4,["G2064"]],[4,7,["G1740"]],[7,8,["G1722"]],[8,9,["G848"]],[9,10,["G40"]],[10,11,["G2532"]],[11,14,["G2296"]],[14,15,["G1722"]],[15,16,["G3956"]],[16,19,["G4100"]],[19,20,["G3754"]],[20,21,["G2257"]],[21,22,["G3142"]],[22,23,["G1909"]],[23,24,["G5209"]],[24,26,["G4100"]],[26,27,["G1722"]],[27,28,["G1565"]],[28,29,["G2250"]]]},{"k":29660,"v":[[0,1,["G1519","G3739"]],[1,2,["G2532"]],[2,4,["G4336"]],[4,5,["G3842"]],[5,6,["G4012"]],[6,7,["G5216"]],[7,8,["G2443"]],[8,9,["G2257"]],[9,10,["G2316"]],[10,14,["G515","G5209"]],[14,17,["G2821"]],[17,18,["G2532"]],[18,19,["G4137"]],[19,20,["G3956"]],[20,23,["G2107"]],[23,26,["G19"]],[26,27,["G2532"]],[27,29,["G2041"]],[29,31,["G4102"]],[31,32,["G1722"]],[32,33,["G1411"]]]},{"k":29661,"v":[[0,1,["G3704"]],[1,2,["G3588"]],[2,3,["G3686"]],[3,5,["G2257"]],[5,6,["G2962"]],[6,7,["G2424"]],[7,8,["G5547"]],[8,11,["G1740"]],[11,12,["G1722"]],[12,13,["G5213"]],[13,14,["G2532"]],[14,15,["G5210"]],[15,16,["G1722"]],[16,17,["G846"]],[17,18,["G2596"]],[18,20,["G3588"]],[20,21,["G5485"]],[21,23,["G2257"]],[23,24,["G2316"]],[24,25,["G2532"]],[25,27,["G2962"]],[27,28,["G2424"]],[28,29,["G5547"]]]},{"k":29662,"v":[[0,1,["G1161"]],[1,3,["G2065"]],[3,4,["G5209"]],[4,5,["G80"]],[5,6,["G5228"]],[6,7,["G3588"]],[7,8,["G3952"]],[8,10,["G2257"]],[10,11,["G2962"]],[11,12,["G2424"]],[12,13,["G5547"]],[13,14,["G2532"]],[14,16,["G2257"]],[16,18,["G1997"]],[18,19,["G1909"]],[19,20,["G846"]]]},{"k":29663,"v":[[0,2,["G5209"]],[2,4,["G3361"]],[4,5,["G5030"]],[5,6,["G4531"]],[6,7,["G575"]],[7,8,["G3563"]],[8,9,["G3383"]],[9,11,["G2360"]],[11,12,["G3383"]],[12,13,["G1223"]],[13,14,["G4151"]],[14,15,["G3383"]],[15,16,["G1223"]],[16,17,["G3056"]],[17,18,["G3383"]],[18,19,["G1223"]],[19,20,["G1992"]],[20,21,["G5613"]],[21,22,["G1223"]],[22,23,["G2257"]],[23,25,["G3754"]],[25,26,["G3588"]],[26,27,["G2250"]],[27,29,["G5547"]],[29,32,["G1764"]]]},{"k":29664,"v":[[0,2,["G3361"]],[2,3,["G5100"]],[3,4,["G1818"]],[4,5,["G5209"]],[5,6,["G2596"]],[6,7,["G3367"]],[7,8,["G5158"]],[8,9,["G3754"]],[9,15,["G3362"]],[15,17,["G2064"]],[17,20,["G646"]],[20,21,["G4412"]],[21,22,["G2532"]],[22,24,["G444"]],[24,26,["G266"]],[26,28,["G601"]],[28,29,["G3588"]],[29,30,["G5207"]],[30,32,["G684"]]]},{"k":29665,"v":[[0,2,["G480"]],[2,3,["G2532"]],[3,5,["G5229"]],[5,6,["G1909"]],[6,7,["G3956"]],[7,10,["G3004"]],[10,11,["G2316"]],[11,12,["G2228"]],[12,15,["G4574"]],[15,17,["G5620"]],[17,18,["G846"]],[18,19,["G5613"]],[19,20,["G2316"]],[20,21,["G2523"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G3485"]],[24,26,["G2316"]],[26,27,["G584"]],[27,28,["G1438"]],[28,29,["G3754"]],[29,31,["G2076"]],[31,32,["G2316"]]]},{"k":29666,"v":[[0,1,["G3421"]],[1,3,["G3756"]],[3,4,["G3754"]],[4,7,["G5607"]],[7,8,["G2089"]],[8,9,["G4314"]],[9,10,["G5209"]],[10,12,["G3004"]],[12,13,["G5213"]],[13,15,["G5023"]]]},{"k":29667,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,4,["G1492"]],[4,6,["G2722"]],[6,8,["G846"]],[8,11,["G601"]],[11,12,["G1722"]],[12,13,["G1438"]],[13,14,["G2540"]]]},{"k":29668,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3466"]],[3,5,["G458"]],[5,7,["G2235"]],[7,8,["G1754"]],[8,9,["G3440"]],[9,13,["G2722","G737"]],[13,16,["G2193"]],[16,19,["G1096"]],[19,21,["G1537"]],[21,23,["G3319"]]]},{"k":29669,"v":[[0,1,["G2532"]],[1,2,["G5119"]],[2,5,["G459"]],[5,7,["G601"]],[7,8,["G3739"]],[8,9,["G3588"]],[9,10,["G2962"]],[10,12,["G355"]],[12,14,["G3588"]],[14,15,["G4151"]],[15,17,["G848"]],[17,18,["G4750"]],[18,19,["G2532"]],[19,21,["G2673"]],[21,23,["G3588"]],[23,24,["G2015"]],[24,26,["G848"]],[26,27,["G3952"]]]},{"k":29670,"v":[[0,3,["G3739"]],[3,4,["G3952"]],[4,5,["G2076"]],[5,6,["G2596"]],[6,8,["G1753"]],[8,10,["G4567"]],[10,11,["G1722"]],[11,12,["G3956"]],[12,13,["G1411"]],[13,14,["G2532"]],[14,15,["G4592"]],[15,16,["G2532"]],[16,17,["G5579"]],[17,18,["G5059"]]]},{"k":29671,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G3956"]],[3,4,["G539"]],[4,6,["G93"]],[6,7,["G1722"]],[7,10,["G622"]],[10,11,["G473","G3739"]],[11,13,["G1209"]],[13,14,["G3756"]],[14,15,["G3588"]],[15,16,["G26"]],[16,18,["G3588"]],[18,19,["G225"]],[19,21,["G846"]],[21,24,["G4982"]]]},{"k":29672,"v":[[0,1,["G2532"]],[1,4,["G1223","G5124"]],[4,5,["G2316"]],[5,7,["G3992"]],[7,8,["G846"]],[8,10,["G1753","G4106"]],[10,12,["G846"]],[12,14,["G4100"]],[14,16,["G5579"]]]},{"k":29673,"v":[[0,1,["G2443"]],[1,3,["G3956"]],[3,6,["G2919"]],[6,8,["G4100"]],[8,9,["G3361"]],[9,10,["G3588"]],[10,11,["G225"]],[11,12,["G235"]],[12,14,["G2106"]],[14,15,["G1722"]],[15,16,["G93"]]]},{"k":29674,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,4,["G3784"]],[4,7,["G2168"]],[7,8,["G3842"]],[8,10,["G2316"]],[10,11,["G4012"]],[11,12,["G5216"]],[12,13,["G80"]],[13,14,["G25"]],[14,15,["G5259"]],[15,17,["G2962"]],[17,18,["G3754"]],[18,19,["G2316"]],[19,21,["G575"]],[21,23,["G746"]],[23,24,["G138"]],[24,25,["G5209"]],[25,26,["G1519"]],[26,27,["G4991"]],[27,28,["G1722"]],[28,29,["G38"]],[29,32,["G4151"]],[32,33,["G2532"]],[33,34,["G4102"]],[34,37,["G225"]]]},{"k":29675,"v":[[0,1,["G1519","G3739"]],[1,3,["G2564"]],[3,4,["G5209"]],[4,5,["G1223"]],[5,6,["G2257"]],[6,7,["G2098"]],[7,8,["G1519"]],[8,10,["G4047"]],[10,13,["G1391"]],[13,15,["G2257"]],[15,16,["G2962"]],[16,17,["G2424"]],[17,18,["G5547"]]]},{"k":29676,"v":[[0,1,["G686","G3767"]],[1,2,["G80"]],[2,4,["G4739"]],[4,5,["G2532"]],[5,6,["G2902"]],[6,7,["G3588"]],[7,8,["G3862"]],[8,9,["G3739"]],[9,13,["G1321"]],[13,14,["G1535"]],[14,15,["G1223"]],[15,16,["G3056"]],[16,17,["G1535","(G1223)"]],[17,18,["G2257"]],[18,19,["G1992"]]]},{"k":29677,"v":[[0,1,["G1161"]],[1,2,["G2257"]],[2,3,["G2962"]],[3,4,["G2424"]],[4,5,["G5547"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G2316"]],[8,9,["G2532"]],[9,10,["G2257"]],[10,11,["G3962"]],[11,14,["G25"]],[14,15,["G2248"]],[15,16,["G2532"]],[16,18,["G1325"]],[18,20,["G166"]],[20,21,["G3874"]],[21,22,["G2532"]],[22,23,["G18"]],[23,24,["G1680"]],[24,25,["G1722"]],[25,26,["G5485"]]]},{"k":29678,"v":[[0,1,["G3870"]],[1,2,["G5216"]],[2,3,["G2588"]],[3,4,["G2532"]],[4,5,["G4741"]],[5,6,["G5209"]],[6,7,["G1722"]],[7,8,["G3956"]],[8,9,["G18"]],[9,10,["G3056"]],[10,11,["G2532"]],[11,12,["G2041"]]]},{"k":29679,"v":[[0,1,["G3063"]],[1,2,["G80"]],[2,3,["G4336"]],[3,4,["G4012"]],[4,5,["G2257"]],[5,6,["G2443"]],[6,7,["G3588"]],[7,8,["G3056"]],[8,10,["G3588"]],[10,11,["G2962"]],[11,15,["G5143"]],[15,16,["G2532"]],[16,18,["G1392"]],[18,19,["G2532"]],[19,20,["G2531"]],[20,23,["G4314"]],[23,24,["G5209"]]]},{"k":29680,"v":[[0,1,["G2532"]],[1,2,["G2443"]],[2,6,["G4506"]],[6,7,["G575"]],[7,8,["G824"]],[8,9,["G2532"]],[9,10,["G4190"]],[10,11,["G444"]],[11,12,["G1063"]],[12,13,["G3956"]],[13,16,["G3756"]],[16,17,["G4102"]]]},{"k":29681,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2076"]],[4,5,["G4103"]],[5,6,["G3739"]],[6,8,["G4741"]],[8,9,["G5209"]],[9,10,["G2532"]],[10,11,["G5442"]],[11,13,["G575"]],[13,14,["G4190"]]]},{"k":29682,"v":[[0,1,["G1161"]],[1,4,["G3982"]],[4,5,["G1722"]],[5,7,["G2962"]],[7,8,["G1909"]],[8,9,["G5209"]],[9,10,["G3754"]],[10,12,["G2532"]],[12,13,["G4160"]],[13,14,["G2532"]],[14,16,["G4160"]],[16,19,["G3739"]],[19,21,["G3853"]],[21,22,["G5213"]]]},{"k":29683,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,4,["G2720"]],[4,5,["G5216"]],[5,6,["G2588"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G26"]],[9,11,["G2316"]],[11,12,["G2532"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,16,["G5281"]],[16,18,["G5547"]]]},{"k":29684,"v":[[0,1,["G1161"]],[1,3,["G3853"]],[3,4,["G5213"]],[4,5,["G80"]],[5,6,["G1722"]],[6,8,["G3686"]],[8,10,["G2257"]],[10,11,["G2962"]],[11,12,["G2424"]],[12,13,["G5547"]],[13,15,["G5209"]],[15,17,["G4724"]],[17,18,["G575"]],[18,19,["G3956"]],[19,20,["G80"]],[20,22,["G4043"]],[22,23,["G814"]],[23,24,["G2532"]],[24,25,["G3361"]],[25,26,["G2596"]],[26,27,["G3588"]],[27,28,["G3862"]],[28,29,["G3739"]],[29,31,["G3880"]],[31,32,["G3844"]],[32,33,["G2257"]]]},{"k":29685,"v":[[0,1,["G1063"]],[1,2,["G846"]],[2,3,["G1492"]],[3,4,["G4459"]],[4,6,["G1163"]],[6,8,["G3401"]],[8,9,["G2248"]],[9,10,["G3754"]],[10,15,["G812","G3756"]],[15,16,["G1722"]],[16,17,["G5213"]]]},{"k":29686,"v":[[0,1,["G3761"]],[1,4,["G5315"]],[4,5,["(G3844)"]],[5,6,["G5100"]],[6,7,["G740"]],[7,9,["G1432"]],[9,10,["G235"]],[10,11,["G2038"]],[11,12,["G1722"]],[12,13,["G2873"]],[13,14,["G2532"]],[14,15,["G3449"]],[15,16,["G3571"]],[16,17,["G2532"]],[17,18,["G2250"]],[18,22,["G3361"]],[22,24,["G1912"]],[24,26,["G5100"]],[26,28,["G5216"]]]},{"k":29687,"v":[[0,1,["G3756"]],[1,2,["G3754"]],[2,4,["G2192"]],[4,5,["G3756"]],[5,6,["G1849"]],[6,7,["G235"]],[7,8,["G2443"]],[8,9,["G1325"]],[9,10,["G1438"]],[10,12,["G5179"]],[12,14,["G5213"]],[14,16,["G3401"]],[16,17,["G2248"]]]},{"k":29688,"v":[[0,1,["G1063"]],[1,2,["G2532"]],[2,3,["G3753"]],[3,5,["G2258"]],[5,6,["G4314"]],[6,7,["G5209"]],[7,8,["G5124"]],[8,10,["G3853"]],[10,11,["G5213"]],[11,12,["G3754"]],[12,14,["G1536"]],[14,15,["G2309"]],[15,16,["G3756"]],[16,17,["G2038"]],[17,18,["G3366"]],[18,21,["G2068"]]]},{"k":29689,"v":[[0,1,["G1063"]],[1,3,["G191"]],[3,7,["G5100"]],[7,9,["G4043"]],[9,10,["G1722"]],[10,11,["G5213"]],[11,12,["G814"]],[12,13,["G2038"]],[13,16,["G3367"]],[16,17,["G235"]],[17,19,["G4020"]]]},{"k":29690,"v":[[0,1,["G1161"]],[1,5,["G5108"]],[5,7,["G3853"]],[7,8,["G2532"]],[8,9,["G3870"]],[9,10,["G1223"]],[10,11,["G2257"]],[11,12,["G2962"]],[12,13,["G2424"]],[13,14,["G5547"]],[14,15,["G2443"]],[15,16,["G3326"]],[16,17,["G2271"]],[17,19,["G2038"]],[19,21,["G2068"]],[21,23,["G1438"]],[23,24,["G740"]]]},{"k":29691,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G80"]],[3,6,["G1573","G3361"]],[6,9,["G2569"]]]},{"k":29692,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G5100"]],[4,5,["G5219"]],[5,6,["G3756"]],[6,7,["G2257"]],[7,8,["G3056"]],[8,9,["G1223"]],[9,11,["G1992"]],[11,12,["G4593"]],[12,14,["G5126"]],[14,15,["G2532"]],[15,18,["G4874","G3361"]],[18,20,["G846"]],[20,21,["G2443"]],[21,25,["G1788"]]]},{"k":29693,"v":[[0,1,["G2532"]],[1,2,["G2233"]],[2,4,["G3361"]],[4,5,["G5613"]],[5,7,["G2190"]],[7,8,["G235"]],[8,9,["G3560"]],[9,11,["G5613"]],[11,13,["G80"]]]},{"k":29694,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,5,["G1515"]],[5,6,["G846"]],[6,7,["G1325"]],[7,8,["G5213"]],[8,9,["G1515"]],[9,10,["G1223","G3956"]],[10,11,["G1722"]],[11,12,["G3956"]],[12,13,["G5158"]],[13,14,["G3588"]],[14,15,["G2962"]],[15,17,["G3326"]],[17,18,["G5216"]],[18,19,["G3956"]]]},{"k":29695,"v":[[0,1,["G3588"]],[1,2,["G783"]],[2,4,["G3972"]],[4,7,["G1699"]],[7,8,["G5495"]],[8,9,["G3739"]],[9,10,["G2076"]],[10,12,["G4592"]],[12,13,["G1722"]],[13,14,["G3956"]],[14,15,["G1992"]],[15,16,["G3779"]],[16,18,["G1125"]]]},{"k":29696,"v":[[0,1,["G3588"]],[1,2,["G5485"]],[2,4,["G2257"]],[4,5,["G2962"]],[5,6,["G2424"]],[6,7,["G5547"]],[7,9,["G3326"]],[9,10,["G5216"]],[10,11,["G3956"]],[11,12,["G281"]]]},{"k":29697,"v":[[0,1,["G3972"]],[1,3,["G652"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,7,["G2596"]],[7,9,["G2003"]],[9,11,["G2316"]],[11,12,["G2257"]],[12,13,["G4990"]],[13,14,["G2532"]],[14,15,["G2962"]],[15,16,["G2424"]],[16,17,["G5547"]],[17,20,["G2257"]],[20,21,["G1680"]]]},{"k":29698,"v":[[0,2,["G5095"]],[2,4,["G1103"]],[4,5,["G5043"]],[5,6,["G1722"]],[6,8,["G4102"]],[8,9,["G5485"]],[9,10,["G1656"]],[10,12,["G1515"]],[12,13,["G575"]],[13,14,["G2316"]],[14,15,["G2257"]],[15,16,["G3962"]],[16,17,["G2532"]],[17,18,["G2424"]],[18,19,["G5547"]],[19,20,["G2257"]],[20,21,["G2962"]]]},{"k":29699,"v":[[0,1,["G2531"]],[1,3,["G3870"]],[3,4,["G4571"]],[4,7,["G4357"]],[7,8,["G1722"]],[8,9,["G2181"]],[9,12,["G4198"]],[12,13,["G1519"]],[13,14,["G3109"]],[14,15,["G2443"]],[15,18,["G3853"]],[18,19,["G5100"]],[19,25,["G2085","G3361"]]]},{"k":29700,"v":[[0,1,["G3366"]],[1,3,["G4337"]],[3,5,["G3454"]],[5,6,["G2532"]],[6,7,["G562"]],[7,8,["G1076"]],[8,9,["G3748"]],[9,10,["G3930"]],[10,11,["G2214"]],[11,12,["G3123"]],[12,13,["G2228"]],[13,14,["G2316"]],[14,15,["G3622"]],[15,16,["G3588"]],[16,18,["G1722"]],[18,19,["G4102"]],[19,21,[]]]},{"k":29701,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5056"]],[3,5,["G3588"]],[5,6,["G3852"]],[6,7,["G2076"]],[7,8,["G26"]],[8,10,["G1537"]],[10,12,["G2513"]],[12,13,["G2588"]],[13,14,["G2532"]],[14,17,["G18"]],[17,18,["G4893"]],[18,19,["G2532"]],[19,21,["G4102"]],[21,22,["G505"]]]},{"k":29702,"v":[[0,2,["G3739"]],[2,3,["G5100"]],[3,5,["G795"]],[5,8,["G1624"]],[8,9,["G1519"]],[9,11,["G3150"]]]},{"k":29703,"v":[[0,1,["G2309"]],[1,3,["G1511"]],[3,7,["G3547"]],[7,8,["(G3539)"]],[8,9,["G3383"]],[9,10,["G3739"]],[10,12,["G3004"]],[12,13,["G3383"]],[13,14,["G4012","G5101"]],[14,16,["G1226"]]]},{"k":29704,"v":[[0,1,["G1161"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G3588"]],[5,6,["G3551"]],[6,8,["G2570"]],[8,9,["G1437"]],[9,11,["G5100"]],[11,12,["G5530"]],[12,13,["G846"]],[13,14,["G3545"]]]},{"k":29705,"v":[[0,1,["G1492"]],[1,2,["G5124"]],[2,3,["G3754"]],[3,5,["G3551"]],[5,7,["G3756"]],[7,8,["G2749"]],[8,12,["G1342"]],[12,13,["G1161"]],[13,16,["G459"]],[16,17,["G2532"]],[17,18,["G506"]],[18,21,["G765"]],[21,22,["G2532"]],[22,24,["G268"]],[24,26,["G462"]],[26,27,["G2532"]],[27,28,["G952"]],[28,32,["G3964"]],[32,33,["G2532"]],[33,36,["G3389"]],[36,38,["G409"]]]},{"k":29706,"v":[[0,2,["G4205"]],[2,9,["G733"]],[9,11,["G405"]],[11,13,["G5583"]],[13,16,["G1965"]],[16,17,["G2532"]],[17,21,["G1536"]],[21,23,["G2087"]],[23,26,["G480"]],[26,28,["G5198"]],[28,29,["G1319"]]]},{"k":29707,"v":[[0,1,["G2596"]],[1,3,["G3588"]],[3,4,["G1391"]],[4,5,["G2098"]],[5,7,["G3588"]],[7,8,["G3107"]],[8,9,["G2316"]],[9,10,["G3739"]],[10,12,["G4100"]],[12,15,["G1473"]]]},{"k":29708,"v":[[0,1,["G2532"]],[1,3,["G2192","G5485"]],[3,4,["G5547"]],[4,5,["G2424"]],[5,6,["G2257"]],[6,7,["G2962"]],[7,10,["G1743"]],[10,11,["G3165"]],[11,13,["G3754"]],[13,15,["G2233"]],[15,16,["G3165"]],[16,17,["G4103"]],[17,18,["G5087"]],[18,20,["G1519"]],[20,22,["G1248"]]]},{"k":29709,"v":[[0,2,["G5607"]],[2,3,["G4386"]],[3,5,["G989"]],[5,6,["G2532"]],[6,8,["G1376"]],[8,9,["G2532"]],[9,10,["G5197"]],[10,11,["G235"]],[11,14,["G1653"]],[14,15,["G3754"]],[15,17,["G4160"]],[17,19,["G50"]],[19,20,["G1722"]],[20,21,["G570"]]]},{"k":29710,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5485"]],[3,5,["G2257"]],[5,6,["G2962"]],[6,9,["G5250"]],[9,10,["G3326"]],[10,11,["G4102"]],[11,12,["G2532"]],[12,13,["G26"]],[13,14,["G3588"]],[14,16,["G1722"]],[16,17,["G5547"]],[17,18,["G2424"]]]},{"k":29711,"v":[[0,4,["G4103"]],[4,5,["G3056"]],[5,6,["G2532"]],[6,7,["G514"]],[7,9,["G3956"]],[9,10,["G594"]],[10,11,["G3754"]],[11,12,["G5547"]],[12,13,["G2424"]],[13,14,["G2064"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G2889"]],[17,19,["G4982"]],[19,20,["G268"]],[20,22,["G3739"]],[22,23,["G1473"]],[23,24,["G1510"]],[24,25,["G4413"]]]},{"k":29712,"v":[[0,1,["G235"]],[1,4,["G1223","G5124"]],[4,7,["G1653"]],[7,8,["G2443"]],[8,9,["G1722"]],[9,10,["G1698"]],[10,11,["G4413"]],[11,12,["G2424"]],[12,13,["G5547"]],[13,16,["G1731"]],[16,17,["G3956"]],[17,18,["G3115"]],[18,19,["G4314"]],[19,21,["G5296"]],[21,26,["G3195"]],[26,27,["G4100"]],[27,28,["G1909"]],[28,29,["G846"]],[29,30,["G1519"]],[30,31,["G2222"]],[31,32,["G166"]]]},{"k":29713,"v":[[0,1,["G1161"]],[1,3,["G3588"]],[3,4,["G935"]],[4,5,["G165"]],[5,6,["G862"]],[6,7,["G517"]],[7,9,["G3441"]],[9,10,["G4680"]],[10,11,["G2316"]],[11,13,["G5092"]],[13,14,["G2532"]],[14,15,["G1391"]],[15,19,["G1519","G165","G165"]],[19,20,["G281"]]]},{"k":29714,"v":[[0,1,["G5026"]],[1,2,["G3852"]],[2,4,["G3908"]],[4,6,["G4671"]],[6,7,["G5043"]],[7,8,["G5095"]],[8,9,["G2596"]],[9,11,["G3588"]],[11,12,["G4394"]],[12,15,["G4254"]],[15,16,["G1909"]],[16,17,["G4571"]],[17,18,["G2443"]],[18,20,["G1722"]],[20,21,["G846"]],[21,23,["G4754"]],[23,25,["G2570"]],[25,26,["G4752"]]]},{"k":29715,"v":[[0,1,["G2192"]],[1,2,["G4102"]],[2,3,["G2532"]],[3,5,["G18"]],[5,6,["G4893"]],[6,7,["G3739"]],[7,8,["G5100"]],[8,11,["G683"]],[11,12,["G4012"]],[12,13,["G4102"]],[13,16,["G3489"]]]},{"k":29716,"v":[[0,2,["G3739"]],[2,3,["G2076"]],[3,4,["G5211"]],[4,5,["G2532"]],[5,6,["G223"]],[6,7,["G3739"]],[7,10,["G3860"]],[10,12,["G4567"]],[12,13,["G2443"]],[13,16,["G3811"]],[16,17,["G3361"]],[17,19,["G987"]]]},{"k":29717,"v":[[0,2,["G3870"]],[2,3,["G3767"]],[3,5,["G4412"]],[5,7,["G3956"]],[7,8,["G1162"]],[8,9,["G4335"]],[9,10,["G1783"]],[10,14,["G2169"]],[14,16,["G4160"]],[16,17,["G5228"]],[17,18,["G3956"]],[18,19,["G444"]]]},{"k":29718,"v":[[0,1,["G5228"]],[1,2,["G935"]],[2,3,["G2532"]],[3,5,["G3956"]],[5,7,["G5607"]],[7,8,["G1722"]],[8,9,["G5247"]],[9,10,["G2443"]],[10,13,["G1236"]],[13,15,["G2263"]],[15,16,["G2532"]],[16,17,["G2272"]],[17,18,["G979"]],[18,19,["G1722"]],[19,20,["G3956"]],[20,21,["G2150"]],[21,22,["G2532"]],[22,23,["G4587"]]]},{"k":29719,"v":[[0,1,["G1063"]],[1,2,["G5124"]],[2,4,["G2570"]],[4,5,["G2532"]],[5,6,["G587"]],[6,9,["G1799"]],[9,11,["G2316"]],[11,12,["G2257"]],[12,13,["G4990"]]]},{"k":29720,"v":[[0,1,["G3739"]],[1,2,["G2309"]],[2,4,["G3956"]],[4,5,["G444"]],[5,8,["G4982"]],[8,9,["G2532"]],[9,11,["G2064"]],[11,12,["G1519"]],[12,14,["G1922"]],[14,17,["G225"]]]},{"k":29721,"v":[[0,1,["G1063"]],[1,4,["G1520"]],[4,5,["G2316"]],[5,6,["G2532"]],[6,7,["G1520"]],[7,8,["G3316"]],[8,10,["G2316"]],[10,11,["G2532"]],[11,12,["G444"]],[12,14,["G444"]],[14,15,["G5547"]],[15,16,["G2424"]]]},{"k":29722,"v":[[0,2,["G1325"]],[2,3,["G1438"]],[3,5,["G487"]],[5,6,["G5228"]],[6,7,["G3956"]],[7,10,["G3142"]],[10,12,["G2398"]],[12,13,["G2540"]]]},{"k":29723,"v":[[0,1,["G1519","G3739"]],[1,2,["G1473"]],[2,4,["G5087"]],[4,6,["G2783"]],[6,7,["G2532"]],[7,9,["G652"]],[9,11,["G3004"]],[11,13,["G225"]],[13,14,["G1722"]],[14,15,["G5547"]],[15,17,["G5574"]],[17,18,["G3756"]],[18,20,["G1320"]],[20,23,["G1484"]],[23,24,["G1722"]],[24,25,["G4102"]],[25,26,["G2532"]],[26,27,["G225"]]]},{"k":29724,"v":[[0,2,["G1014"]],[2,3,["G3767"]],[3,5,["G435"]],[5,6,["G4336"]],[6,7,["G3956"]],[7,8,["G5117"]],[8,10,["G1869"]],[10,11,["G3741"]],[11,12,["G5495"]],[12,13,["G5565"]],[13,14,["G3709"]],[14,15,["G2532"]],[15,16,["G1261"]]]},{"k":29725,"v":[[0,3,["G5615"]],[3,4,["G2532"]],[4,6,["G1135"]],[6,7,["G2885"]],[7,8,["G1438"]],[8,9,["G1722"]],[9,10,["G2887"]],[10,11,["G2689"]],[11,12,["G3326"]],[12,13,["G127"]],[13,14,["G2532"]],[14,15,["G4997"]],[15,16,["G3361"]],[16,17,["G1722"]],[17,19,["G4117"]],[19,20,["G2228"]],[20,21,["G5557"]],[21,22,["G2228"]],[22,23,["G3135"]],[23,24,["G2228"]],[24,25,["G4185"]],[25,26,["G2441"]]]},{"k":29726,"v":[[0,1,["G235"]],[1,2,["G3739"]],[2,3,["G4241"]],[3,4,["G1135"]],[4,5,["G1861"]],[5,6,["G2317"]],[6,7,["G1223"]],[7,8,["G18"]],[8,9,["G2041"]]]},{"k":29727,"v":[[0,3,["G1135"]],[3,4,["G3129"]],[4,5,["G1722"]],[5,6,["G2271"]],[6,7,["G1722"]],[7,8,["G3956"]],[8,9,["G5292"]]]},{"k":29728,"v":[[0,1,["G1161"]],[1,3,["G2010"]],[3,4,["G3756"]],[4,6,["G1135"]],[6,8,["G1321"]],[8,9,["G3761"]],[9,13,["G831"]],[13,15,["G435"]],[15,16,["G235"]],[16,18,["G1511"]],[18,19,["G1722"]],[19,20,["G2271"]]]},{"k":29729,"v":[[0,1,["G1063"]],[1,2,["G76"]],[2,4,["G4413"]],[4,5,["G4111"]],[5,6,["G1534"]],[6,7,["G2096"]]]},{"k":29730,"v":[[0,1,["G2532"]],[1,2,["G76"]],[2,4,["G3756"]],[4,5,["G538"]],[5,6,["G1161"]],[6,7,["G3588"]],[7,8,["G1135"]],[8,10,["G538"]],[10,11,["G1096"]],[11,12,["G1722"]],[12,14,["G3847"]]]},{"k":29731,"v":[[0,1,["G1161"]],[1,5,["G4982"]],[5,6,["G1223"]],[6,7,["G5042"]],[7,8,["G1437"]],[8,10,["G3306"]],[10,11,["G1722"]],[11,12,["G4102"]],[12,13,["G2532"]],[13,14,["G26"]],[14,15,["G2532"]],[15,16,["G38"]],[16,17,["G3326"]],[17,18,["G4997"]]]},{"k":29732,"v":[[0,4,["G4103"]],[4,5,["G3056"]],[5,8,["G1536"]],[8,9,["G3713"]],[9,14,["G1984"]],[14,16,["G1937"]],[16,18,["G2570"]],[18,19,["G2041"]]]},{"k":29733,"v":[[0,2,["G1985"]],[2,3,["G3767"]],[3,4,["G1163"]],[4,5,["G1511"]],[5,6,["G423"]],[6,8,["G435"]],[8,10,["G3391"]],[10,11,["G1135"]],[11,12,["G3524"]],[12,13,["G4998"]],[13,16,["G2887"]],[16,19,["G5382"]],[19,22,["G1317"]]]},{"k":29734,"v":[[0,1,["G3361"]],[1,4,["G3943"]],[4,5,["G3361"]],[5,6,["G4131"]],[6,7,["G3361"]],[7,11,["G146"]],[11,12,["G235"]],[12,13,["G1933"]],[13,16,["G269"]],[16,18,["G866"]]]},{"k":29735,"v":[[0,3,["G4291"]],[3,4,["G2573"]],[4,6,["G2398"]],[6,7,["G3624"]],[7,8,["G2192"]],[8,10,["G5043"]],[10,11,["G1722"]],[11,12,["G5292"]],[12,13,["G3326"]],[13,14,["G3956"]],[14,15,["G4587"]]]},{"k":29736,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G5100"]],[4,5,["G1492"]],[5,6,["G3756"]],[6,9,["G4291"]],[9,11,["G2398"]],[11,12,["G3624"]],[12,13,["G4459"]],[13,18,["G1959"]],[18,20,["G1577"]],[20,22,["G2316"]]]},{"k":29737,"v":[[0,1,["G3361"]],[1,3,["G3504"]],[3,4,["G3363"]],[4,9,["G5187"]],[9,11,["G1706"]],[11,12,["G1519"]],[12,14,["G2917"]],[14,16,["G3588"]],[16,17,["G1228"]]]},{"k":29738,"v":[[0,1,["G1161"]],[1,2,["G846"]],[2,3,["G1163","(G2532)"]],[3,4,["G2192"]],[4,6,["G2570"]],[6,7,["G3141"]],[7,8,["G575"]],[8,12,["G1855"]],[12,13,["G3363"]],[13,15,["G1706"]],[15,16,["G1519"]],[16,17,["G3680"]],[17,18,["G2532"]],[18,20,["G3803"]],[20,22,["G3588"]],[22,23,["G1228"]]]},{"k":29739,"v":[[0,1,["G5615"]],[1,4,["G1249"]],[4,6,["G4586"]],[6,7,["G3361"]],[7,8,["G1351"]],[8,9,["G3361"]],[9,10,["G4337"]],[10,12,["G4183"]],[12,13,["G3631"]],[13,14,["G3361"]],[14,18,["G146"]]]},{"k":29740,"v":[[0,1,["G2192"]],[1,2,["G3588"]],[2,3,["G3466"]],[3,5,["G3588"]],[5,6,["G4102"]],[6,7,["G1722"]],[7,9,["G2513"]],[9,10,["G4893"]]]},{"k":29741,"v":[[0,1,["G2532"]],[1,3,["G3778"]],[3,4,["G1161"]],[4,5,["G4412"]],[5,7,["G1381"]],[7,8,["G1534"]],[8,16,["G1247"]],[16,17,["G5607"]],[17,19,["G410"]]]},{"k":29742,"v":[[0,2,["G5615"]],[2,5,["G1135"]],[5,7,["G4586"]],[7,8,["G3361"]],[8,9,["G1228"]],[9,10,["G3524"]],[10,11,["G4103"]],[11,12,["G1722"]],[12,14,["G3956"]]]},{"k":29743,"v":[[0,3,["G1249"]],[3,4,["G2077"]],[4,6,["G435"]],[6,8,["G3391"]],[8,9,["G1135"]],[9,10,["G4291"]],[10,12,["G5043"]],[12,13,["G2532"]],[13,15,["G2398"]],[15,16,["G3624"]],[16,17,["G2573"]]]},{"k":29744,"v":[[0,1,["G1063"]],[1,10,["G1247"]],[10,11,["G2573"]],[11,12,["G4046"]],[12,14,["G1438"]],[14,16,["G2570"]],[16,17,["G898"]],[17,18,["G2532"]],[18,19,["G4183"]],[19,20,["G3954"]],[20,21,["G1722"]],[21,23,["G4102"]],[23,24,["G3588"]],[24,26,["G1722"]],[26,27,["G5547"]],[27,28,["G2424"]]]},{"k":29745,"v":[[0,2,["G5023"]],[2,3,["G1125"]],[3,6,["G4671"]],[6,7,["G1679"]],[7,9,["G2064"]],[9,10,["G4314"]],[10,11,["G4571"]],[11,12,["G5032"]]]},{"k":29746,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,5,["G1019"]],[5,6,["G2443"]],[6,9,["G1492"]],[9,10,["G4459"]],[10,12,["G1163"]],[12,15,["G390"]],[15,16,["G1722"]],[16,18,["G3624"]],[18,20,["G2316"]],[20,21,["G3748"]],[21,22,["G2076"]],[22,24,["G1577"]],[24,27,["G2198"]],[27,28,["G2316"]],[28,30,["G4769"]],[30,31,["G2532"]],[31,32,["G1477"]],[32,34,["G3588"]],[34,35,["G225"]]]},{"k":29747,"v":[[0,1,["G2532"]],[1,3,["G3672"]],[3,4,["G3173"]],[4,5,["G2076"]],[5,6,["G3588"]],[6,7,["G3466"]],[7,9,["G2150"]],[9,10,["G2316"]],[10,12,["G5319"]],[12,13,["G1722"]],[13,15,["G4561"]],[15,16,["G1344"]],[16,17,["G1722"]],[17,19,["G4151"]],[19,20,["G3700"]],[20,22,["G32"]],[22,23,["G2784"]],[23,24,["G1722"]],[24,26,["G1484"]],[26,28,["G4100"]],[28,29,["G1722"]],[29,31,["G2889"]],[31,33,["G353"]],[33,34,["G1722"]],[34,35,["G1391"]]]},{"k":29748,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4151"]],[3,4,["G3004"]],[4,5,["G4490"]],[5,6,["G3754"]],[6,7,["G1722"]],[7,9,["G5306"]],[9,10,["G2540"]],[10,11,["G5100"]],[11,13,["G868"]],[13,15,["G3588"]],[15,16,["G4102"]],[16,18,["G4337"]],[18,20,["G4108"]],[20,21,["G4151"]],[21,22,["G2532"]],[22,23,["G1319"]],[23,25,["G1140"]]]},{"k":29749,"v":[[0,2,["G5573"]],[2,3,["G1722"]],[3,4,["G5272"]],[4,6,["G2398"]],[6,7,["G4893"]],[7,12,["G2743"]]]},{"k":29750,"v":[[0,1,["G2967"]],[1,3,["G1060"]],[3,7,["G567"]],[7,9,["G1033"]],[9,10,["G3739"]],[10,11,["G2316"]],[11,13,["G2936"]],[13,16,["G1519","G3336"]],[16,17,["G3326"]],[17,18,["G2169"]],[18,22,["G4103"]],[22,23,["G2532"]],[23,24,["G1921"]],[24,25,["G3588"]],[25,26,["G225"]]]},{"k":29751,"v":[[0,1,["G3754"]],[1,2,["G3956"]],[2,3,["G2938"]],[3,5,["G2316"]],[5,7,["G2570"]],[7,8,["G2532"]],[8,9,["G3762"]],[9,12,["G579"]],[12,16,["G2983"]],[16,17,["G3326"]],[17,18,["G2169"]]]},{"k":29752,"v":[[0,1,["G1063"]],[1,4,["G37"]],[4,5,["G1223"]],[5,7,["G3056"]],[7,9,["G2316"]],[9,10,["G2532"]],[10,11,["G1783"]]]},{"k":29753,"v":[[0,7,["G5294","G3588","G80"]],[7,10,["G5023"]],[10,13,["G2071"]],[13,15,["G2570"]],[15,16,["G1249"]],[16,18,["G2424"]],[18,19,["G5547"]],[19,21,["G1789"]],[21,23,["G3588"]],[23,24,["G3056"]],[24,26,["G4102"]],[26,27,["G2532"]],[27,29,["G2570"]],[29,30,["G1319"]],[30,31,["G3739"]],[31,34,["G3877"]]]},{"k":29754,"v":[[0,1,["G1161"]],[1,2,["G3868"]],[2,3,["G952"]],[3,4,["G2532"]],[4,6,["G1126"]],[6,7,["G3454"]],[7,8,["G1161"]],[8,9,["G1128"]],[9,10,["G4572"]],[10,12,["G4314"]],[12,13,["G2150"]]]},{"k":29755,"v":[[0,1,["G1063"]],[1,2,["G4984"]],[2,3,["G1129"]],[3,4,["G2076","G5624"]],[4,5,["(G3641)"]],[5,6,["G1161"]],[6,7,["G2150"]],[7,8,["G2076"]],[8,9,["G5624"]],[9,10,["G4314"]],[10,12,["G3956"]],[12,13,["G2192"]],[13,14,["G1860"]],[14,17,["G2222"]],[17,20,["G3568"]],[20,21,["G2532"]],[21,27,["G3195"]]]},{"k":29756,"v":[[0,4,["G4103"]],[4,5,["G3056"]],[5,6,["G2532"]],[6,7,["G514"]],[7,9,["G3956"]],[9,10,["G594"]]]},{"k":29757,"v":[[0,1,["G1063"]],[1,2,["G1519","G5124"]],[2,4,["G2532"]],[4,5,["G2872"]],[5,6,["G2532"]],[6,8,["G3679"]],[8,9,["G3754"]],[9,11,["G1679"]],[11,12,["G1909"]],[12,14,["G2198"]],[14,15,["G2316"]],[15,16,["G3739"]],[16,17,["G2076"]],[17,19,["G4990"]],[19,21,["G3956"]],[21,22,["G444"]],[22,23,["G3122"]],[23,27,["G4103"]]]},{"k":29758,"v":[[0,2,["G5023"]],[2,3,["G3853"]],[3,4,["G2532"]],[4,5,["G1321"]]]},{"k":29759,"v":[[0,3,["G3367"]],[3,4,["G2706"]],[4,5,["G4675"]],[5,6,["G3503"]],[6,7,["G235"]],[7,8,["G1096"]],[8,11,["G5179"]],[11,13,["G3588"]],[13,14,["G4103"]],[14,15,["G1722"]],[15,16,["G3056"]],[16,17,["G1722"]],[17,18,["G391"]],[18,19,["G1722"]],[19,20,["G26"]],[20,21,["G1722"]],[21,22,["G4151"]],[22,23,["G1722"]],[23,24,["G4102"]],[24,25,["G1722"]],[25,26,["G47"]]]},{"k":29760,"v":[[0,1,["G2193"]],[1,3,["G2064"]],[3,5,["G4337"]],[5,7,["G320"]],[7,9,["G3874"]],[9,11,["G1319"]]]},{"k":29761,"v":[[0,1,["G272"]],[1,2,["G3361"]],[2,3,["G3588"]],[3,4,["G5486"]],[4,7,["G1722"]],[7,8,["G4671"]],[8,9,["G3739"]],[9,11,["G1325"]],[11,12,["G4671"]],[12,13,["G1223"]],[13,14,["G4394"]],[14,15,["G3326"]],[15,18,["G1936"]],[18,20,["G3588"]],[20,21,["G5495"]],[21,23,["G3588"]],[23,24,["G4244"]]]},{"k":29762,"v":[[0,2,["G3191"]],[2,4,["G5023"]],[4,7,["G2468"]],[7,8,["G1722"]],[8,9,["G5125"]],[9,10,["G2443"]],[10,11,["G4675"]],[11,12,["G4297"]],[12,14,["G5600","G5318"]],[14,15,["G1722"]],[15,16,["G3956"]]]},{"k":29763,"v":[[0,2,["G1907"]],[2,4,["G4572"]],[4,5,["G2532"]],[5,7,["G3588"]],[7,8,["G1319"]],[8,9,["G1961"]],[9,11,["G846"]],[11,12,["G1063"]],[12,14,["G4160"]],[14,15,["G5124"]],[15,18,["G2532"]],[18,19,["G4982"]],[19,20,["G4572"]],[20,21,["G2532"]],[21,24,["G191"]],[24,25,["G4675"]]]},{"k":29764,"v":[[0,1,["G1969"]],[1,2,["G3361"]],[2,4,["G4245"]],[4,5,["G235"]],[5,6,["G3870"]],[6,8,["G5613"]],[8,10,["G3962"]],[10,14,["G3501"]],[14,15,["G5613"]],[15,16,["G80"]]]},{"k":29765,"v":[[0,3,["G4245"]],[3,4,["G5613"]],[4,5,["G3384"]],[5,7,["G3501"]],[7,8,["G5613"]],[8,9,["G79"]],[9,10,["G1722"]],[10,11,["G3956"]],[11,12,["G47"]]]},{"k":29766,"v":[[0,1,["G5091"]],[1,2,["G5503"]],[2,5,["G5503"]],[5,6,["G3689"]]]},{"k":29767,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5100"]],[3,4,["G5503"]],[4,5,["G2192"]],[5,6,["G5043"]],[6,7,["G2228"]],[7,8,["G1549"]],[8,11,["G3129"]],[11,12,["G4412"]],[12,15,["G2151"]],[15,16,["(G2398)"]],[16,17,["G3624"]],[17,18,["G2532"]],[18,20,["G591","G287"]],[20,22,["G4269"]],[22,23,["G1063"]],[23,24,["G5124"]],[24,25,["G2076"]],[25,26,["G2570"]],[26,27,["G2532"]],[27,28,["G587"]],[28,29,["G1799"]],[29,30,["G2316"]]]},{"k":29768,"v":[[0,1,["G1161"]],[1,6,["G5503"]],[6,7,["G3689"]],[7,8,["G2532"]],[8,9,["G3443"]],[9,10,["G1679"]],[10,11,["G1909"]],[11,12,["G2316"]],[12,13,["G2532"]],[13,14,["G4357"]],[14,16,["G1162"]],[16,17,["G2532"]],[17,18,["G4335"]],[18,19,["G3571"]],[19,20,["G2532"]],[20,21,["G2250"]]]},{"k":29769,"v":[[0,1,["G1161"]],[1,6,["G4684"]],[6,8,["G2348"]],[8,11,["G2198"]]]},{"k":29770,"v":[[0,1,["G2532"]],[1,3,["G5023"]],[3,6,["G3853"]],[6,7,["G2443"]],[7,10,["G5600"]],[10,11,["G423"]]]},{"k":29771,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,3,["G5100"]],[3,6,["G4306","G3756"]],[6,8,["G2398"]],[8,9,["G2532"]],[9,10,["G3122"]],[10,16,["G3609"]],[16,19,["G720"]],[19,20,["G3588"]],[20,21,["G4102"]],[21,22,["G2532"]],[22,23,["G2076"]],[23,24,["G5501"]],[24,27,["G571"]]]},{"k":29772,"v":[[0,2,["G3361"]],[2,4,["G5503"]],[4,9,["G2639"]],[9,10,["G1640"]],[10,11,["G1835"]],[11,12,["G2094"]],[12,15,["G1096"]],[15,17,["G1135"]],[17,19,["G1520"]],[19,20,["G435"]]]},{"k":29773,"v":[[0,3,["G3140"]],[3,4,["G1722"]],[4,5,["G2570"]],[5,6,["G2041"]],[6,7,["G1487"]],[7,12,["G5044"]],[12,13,["G1487"]],[13,17,["G3580"]],[17,18,["G1487"]],[18,21,["G3538"]],[21,23,["G40"]],[23,24,["G4228"]],[24,25,["G1487"]],[25,28,["G1884"]],[28,30,["G2346"]],[30,31,["G1487"]],[31,35,["G1872"]],[35,36,["G3956"]],[36,37,["G18"]],[37,38,["G2041"]]]},{"k":29774,"v":[[0,1,["G1161"]],[1,3,["G3501"]],[3,4,["G5503"]],[4,5,["G3868"]],[5,6,["G1063"]],[6,7,["G3752"]],[7,14,["G2691"]],[14,15,["G5547"]],[15,17,["G2309"]],[17,18,["G1060"]]]},{"k":29775,"v":[[0,1,["G2192"]],[1,2,["G2917"]],[2,3,["G3754"]],[3,7,["G114"]],[7,9,["G4413"]],[9,10,["G4102"]]]},{"k":29776,"v":[[0,1,["G1161"]],[1,2,["G260"]],[2,4,["G3129"]],[4,7,["G692"]],[7,13,["G4022","G3614"]],[13,14,["G1161"]],[14,15,["G3756"]],[15,16,["G3440"]],[16,17,["G692"]],[17,18,["G235"]],[18,19,["G5397"]],[19,20,["G2532"]],[20,21,["G2532"]],[21,22,["G4021"]],[22,23,["G2980"]],[23,27,["G1163"]],[27,28,["G3361"]]]},{"k":29777,"v":[[0,2,["G1014"]],[2,3,["G3767"]],[3,7,["G3501"]],[7,8,["G1060"]],[8,10,["G5041"]],[10,13,["G3616"]],[13,14,["G1325"]],[14,15,["G3367"]],[15,16,["G874"]],[16,18,["G3588"]],[18,19,["G480"]],[19,22,["G5484","G3059"]]]},{"k":29778,"v":[[0,1,["G1063"]],[1,2,["G5100"]],[2,4,["G2235"]],[4,6,["G1624"]],[6,7,["G3694"]],[7,8,["G4567"]]]},{"k":29779,"v":[[0,2,["G1536"]],[2,3,["G4103"]],[3,4,["G2228"]],[4,7,["G4103"]],[7,8,["G2192"]],[8,9,["G5503"]],[9,12,["G1884"]],[12,13,["G846"]],[13,14,["G2532"]],[14,16,["G3361"]],[16,17,["G3588"]],[17,18,["G1577"]],[18,20,["G916"]],[20,21,["G2443"]],[21,24,["G1884"]],[24,28,["G5503"]],[28,29,["G3689"]]]},{"k":29780,"v":[[0,2,["G3588"]],[2,3,["G4245"]],[3,5,["G4291"]],[5,6,["G2573"]],[6,9,["G515"]],[9,11,["G1362"]],[11,12,["G5092"]],[12,13,["G3122"]],[13,16,["G2872"]],[16,17,["G1722"]],[17,19,["G3056"]],[19,20,["G2532"]],[20,21,["G1319"]]]},{"k":29781,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G1124"]],[3,4,["G3004"]],[4,7,["G3756"]],[7,8,["G5392"]],[8,10,["G1016"]],[10,13,["G248"]],[13,16,["G2532"]],[16,17,["G3588"]],[17,18,["G2040"]],[18,20,["G514"]],[20,22,["G848"]],[22,23,["G3408"]]]},{"k":29782,"v":[[0,1,["G2596"]],[1,3,["G4245"]],[3,4,["G3858"]],[4,5,["G3361"]],[5,7,["G2724"]],[7,8,["G1622","G1508"]],[8,9,["G1909"]],[9,10,["G1417"]],[10,11,["G2228"]],[11,12,["G5140"]],[12,13,["G3144"]]]},{"k":29783,"v":[[0,3,["G264"]],[3,4,["G1651"]],[4,5,["G1799"]],[5,6,["G3956"]],[6,7,["G2443"]],[7,8,["G3062"]],[8,9,["G2532"]],[9,11,["G2192","G5401"]]]},{"k":29784,"v":[[0,2,["G1263"]],[2,4,["G1799"]],[4,5,["G2316"]],[5,6,["G2532"]],[6,8,["G2962"]],[8,9,["G2424"]],[9,10,["G5547"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G1588"]],[13,14,["G32"]],[14,15,["G2443"]],[15,17,["G5442"]],[17,19,["G5023"]],[19,20,["G5565"]],[20,24,["G4299"]],[24,25,["G4160"]],[25,26,["G3367"]],[26,27,["G2596"]],[27,28,["G4346"]]]},{"k":29785,"v":[[0,1,["G2007"]],[1,2,["G5495"]],[2,3,["G5030"]],[3,6,["G3367"]],[6,7,["G3366"]],[7,9,["G2841"]],[9,12,["G245"]],[12,13,["G266"]],[13,14,["G5083"]],[14,15,["G4572"]],[15,16,["G53"]]]},{"k":29786,"v":[[0,4,["G5202","G3371"]],[4,5,["G235"]],[5,6,["G5530"]],[6,8,["G3641"]],[8,9,["G3631"]],[9,13,["G1223","G4675","G4751"]],[13,14,["G2532"]],[14,15,["G4675"]],[15,16,["G4437"]],[16,17,["G769"]]]},{"k":29787,"v":[[0,1,["G5100"]],[1,2,["G444"]],[2,3,["G266"]],[3,4,["G1526"]],[4,6,["G4271"]],[6,8,["G4254"]],[8,9,["G1519"]],[9,10,["G2920"]],[10,11,["G1161"]],[11,12,["G5100"]],[12,14,["(G2532)"]],[14,16,["G1872"]]]},{"k":29788,"v":[[0,1,["G5615"]],[1,2,["G2532"]],[2,3,["G3588"]],[3,4,["G2570"]],[4,5,["G2041"]],[5,8,["G2076"]],[8,10,["G4271"]],[10,11,["G2532"]],[11,14,["G2192"]],[14,15,["G247"]],[15,16,["G1410","G3756"]],[16,18,["G2928"]]]},{"k":29789,"v":[[0,3,["G3745"]],[3,4,["G1401"]],[4,6,["G1526"]],[6,7,["G5259"]],[7,9,["G2218"]],[9,10,["G2233"]],[10,12,["G2398"]],[12,13,["G1203"]],[13,14,["G514"]],[14,16,["G3956"]],[16,17,["G5092"]],[17,18,["G2443"]],[18,19,["G3588"]],[19,20,["G3686"]],[20,22,["G2316"]],[22,23,["G2532"]],[23,25,["G1319"]],[25,27,["G3361"]],[27,28,["G987"]]]},{"k":29790,"v":[[0,1,["G1161"]],[1,4,["G2192"]],[4,5,["G4103"]],[5,6,["G1203"]],[6,9,["G3361"]],[9,10,["G2706"]],[10,12,["G3754"]],[12,14,["G1526"]],[14,15,["G80"]],[15,16,["G235"]],[16,17,["G3123"]],[17,20,["G1398"]],[20,21,["G3754"]],[21,23,["G1526"]],[23,24,["G4103"]],[24,25,["G2532"]],[25,26,["G27"]],[26,27,["G482"]],[27,29,["G3588"]],[29,30,["G2108"]],[30,32,["G5023"]],[32,33,["G1321"]],[33,34,["G2532"]],[34,35,["G3870"]]]},{"k":29791,"v":[[0,3,["G1536"]],[3,5,["G2085"]],[5,6,["G2532"]],[6,7,["G4334"]],[7,8,["G3361"]],[8,10,["G5198"]],[10,11,["G3056"]],[11,14,["G3588"]],[14,16,["G2257"]],[16,17,["G2962"]],[17,18,["G2424"]],[18,19,["G5547"]],[19,20,["G2532"]],[20,22,["G3588"]],[22,23,["G1319"]],[23,26,["G2596"]],[26,28,["G2150"]]]},{"k":29792,"v":[[0,3,["G5187"]],[3,4,["G1987"]],[4,5,["G3367"]],[5,6,["G235"]],[6,7,["G3552"]],[7,8,["G4012"]],[8,9,["G2214"]],[9,10,["G2532"]],[10,13,["G3055"]],[13,14,["G1537","G3739"]],[14,15,["G1096"]],[15,16,["G5355"]],[16,17,["G2054"]],[17,18,["G988"]],[18,19,["G4190"]],[19,20,["G5283"]]]},{"k":29793,"v":[[0,2,["G3859"]],[2,4,["G444"]],[4,6,["G1311"]],[6,7,["G3563"]],[7,8,["G2532"]],[8,9,["G650"]],[9,11,["G3588"]],[11,12,["G225"]],[12,13,["G3543"]],[13,15,["G4200"]],[15,16,["G1511"]],[16,17,["G2150"]],[17,18,["G575"]],[18,19,["G5108"]],[19,21,["G868"]]]},{"k":29794,"v":[[0,1,["G1161"]],[1,2,["G2150"]],[2,3,["G3326"]],[3,4,["G841"]],[4,5,["G2076"]],[5,6,["G3173"]],[6,7,["G4200"]]]},{"k":29795,"v":[[0,1,["G1063"]],[1,3,["G1533"]],[3,4,["G3762"]],[4,5,["G1519"]],[5,7,["G2889"]],[7,11,["G1212","(G3754)"]],[11,12,["(G3761)"]],[12,13,["G1410"]],[13,16,["G1627","G5100"]]]},{"k":29796,"v":[[0,1,["G1161"]],[1,2,["G2192"]],[2,3,["G1305"]],[3,4,["G2532"]],[4,5,["G4629"]],[5,10,["G714","G5125"]]]},{"k":29797,"v":[[0,1,["G1161"]],[1,4,["G1014"]],[4,6,["G4147"]],[6,7,["G1706"]],[7,8,["G1519"]],[8,9,["G3986"]],[9,10,["G2532"]],[10,12,["G3803"]],[12,13,["G2532"]],[13,15,["G4183"]],[15,16,["G453"]],[16,17,["G2532"]],[17,18,["G983"]],[18,19,["G1939"]],[19,20,["G3748"]],[20,21,["G1036"]],[21,22,["G444"]],[22,23,["G1519"]],[23,24,["G3639"]],[24,25,["G2532"]],[25,26,["G684"]]]},{"k":29798,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,5,["G5365"]],[5,6,["G2076"]],[6,8,["G4491"]],[8,10,["G3956"]],[10,11,["G2556"]],[11,12,["G3739"]],[12,14,["G5100"]],[14,16,["G3713"]],[16,19,["G635"]],[19,20,["G575"]],[20,21,["G3588"]],[21,22,["G4102"]],[22,23,["G2532"]],[23,26,["G4044","G1438"]],[26,28,["G4183"]],[28,29,["G3601"]]]},{"k":29799,"v":[[0,1,["G1161"]],[1,2,["G4771"]],[2,3,["G5599"]],[3,4,["G444"]],[4,6,["G2316"]],[6,7,["G5343"]],[7,9,["G5023"]],[9,10,["G1161"]],[10,12,["G1377"]],[12,13,["G1343"]],[13,14,["G2150"]],[14,15,["G4102"]],[15,16,["G26"]],[16,17,["G5281"]],[17,18,["G4236"]]]},{"k":29800,"v":[[0,1,["G75"]],[1,2,["G3588"]],[2,3,["G2570"]],[3,4,["G73"]],[4,6,["G4102"]],[6,9,["G1949"]],[9,10,["G166"]],[10,11,["G2222"]],[11,12,["G1519","G3739"]],[12,15,["G2532"]],[15,16,["G2564"]],[16,17,["G2532"]],[17,19,["G3670"]],[19,21,["G2570"]],[21,22,["G3671"]],[22,23,["G1799"]],[23,24,["G4183"]],[24,25,["G3144"]]]},{"k":29801,"v":[[0,4,["G3853","G4671"]],[4,7,["G1799"]],[7,9,["G2316"]],[9,11,["G2227"]],[11,13,["G3956"]],[13,14,["G2532"]],[14,16,["G5547"]],[16,17,["G2424"]],[17,19,["G1909"]],[19,20,["G4194"]],[20,21,["G4091"]],[21,22,["G3140"]],[22,24,["G2570"]],[24,25,["G3671"]]]},{"k":29802,"v":[[0,2,["G4571"]],[2,3,["G5083"]],[3,5,["G1785"]],[5,7,["G784"]],[7,8,["G423"]],[8,9,["G3360"]],[9,10,["G3588"]],[10,11,["G2015"]],[11,13,["G2257"]],[13,14,["G2962"]],[14,15,["G2424"]],[15,16,["G5547"]]]},{"k":29803,"v":[[0,1,["G3739"]],[1,3,["G2398"]],[3,4,["G2540"]],[4,7,["G1166"]],[7,10,["G3588"]],[10,11,["G3107"]],[11,12,["G2532"]],[12,13,["G3441"]],[13,14,["G1413"]],[14,15,["G3588"]],[15,16,["G935"]],[16,18,["G936"]],[18,19,["G2532"]],[19,20,["G2962"]],[20,22,["G2961"]]]},{"k":29804,"v":[[0,1,["G3588"]],[1,2,["G3441"]],[2,3,["G2192"]],[3,4,["G110"]],[4,5,["G3611"]],[5,8,["G5457"]],[8,14,["G676"]],[14,15,["G3739"]],[15,16,["G3762"]],[16,17,["G444"]],[17,19,["G1492"]],[19,20,["G3761"]],[20,21,["G1410"]],[21,22,["G1492"]],[22,24,["G3739"]],[24,26,["G5092"]],[26,27,["G2532"]],[27,28,["G2904"]],[28,29,["G166"]],[29,30,["G281"]]]},{"k":29805,"v":[[0,1,["G3853"]],[1,5,["G4145"]],[5,6,["G1722"]],[6,8,["G3568","G165"]],[8,13,["G5309","G3361"]],[13,14,["G3366"]],[14,15,["G1679"]],[15,16,["G1909"]],[16,17,["G83"]],[17,18,["G4149"]],[18,19,["G235"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G2198"]],[22,23,["G2316"]],[23,25,["G3930"]],[25,26,["G2254"]],[26,27,["G4146"]],[27,29,["G3956"]],[29,30,["G1519"]],[30,31,["G619"]]]},{"k":29806,"v":[[0,4,["G14"]],[4,8,["G4147"]],[8,9,["G1722"]],[9,10,["G2570"]],[10,11,["G2041","(G1511)"]],[11,14,["G2130"]],[14,17,["G2843"]]]},{"k":29807,"v":[[0,4,["G597"]],[4,6,["G1438"]],[6,8,["G2570"]],[8,9,["G2310"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,14,["G3195"]],[14,15,["G2443"]],[15,20,["G1949"]],[20,21,["G166"]],[21,22,["G2222"]]]},{"k":29808,"v":[[0,1,["G5599"]],[1,2,["G5095"]],[2,3,["G5442"]],[3,10,["G3872"]],[10,11,["G1624"]],[11,12,["G952"]],[12,15,["G2757"]],[15,16,["G2532"]],[16,17,["G477"]],[17,19,["G1108"]],[19,22,["G5581"]]]},{"k":29809,"v":[[0,1,["G3739"]],[1,2,["G5100"]],[2,3,["G1861"]],[3,5,["G795"]],[5,6,["G4012"]],[6,7,["G3588"]],[7,8,["G4102"]],[8,9,["G5485"]],[9,11,["G3326"]],[11,12,["G4675"]],[12,13,["G281"]]]},{"k":29810,"v":[[0,1,["G3972"]],[1,3,["G652"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,7,["G1223"]],[7,9,["G2307"]],[9,11,["G2316"]],[11,12,["G2596"]],[12,15,["G1860"]],[15,17,["G2222"]],[17,18,["G3588"]],[18,20,["G1722"]],[20,21,["G5547"]],[21,22,["G2424"]]]},{"k":29811,"v":[[0,2,["G5095"]],[2,5,["G27"]],[5,6,["G5043"]],[6,7,["G5485"]],[7,8,["G1656"]],[8,10,["G1515"]],[10,11,["G575"]],[11,12,["G2316"]],[12,14,["G3962"]],[14,15,["G2532"]],[15,16,["G5547"]],[16,17,["G2424"]],[17,18,["G2257"]],[18,19,["G2962"]]]},{"k":29812,"v":[[0,2,["G2192","G5485"]],[2,3,["G2316"]],[3,4,["G3739"]],[4,6,["G3000"]],[6,7,["G575"]],[7,9,["G4269"]],[9,10,["G1722"]],[10,11,["G2513"]],[11,12,["G4893"]],[12,13,["G5613"]],[13,15,["G88"]],[15,17,["G2192"]],[17,18,["G3417"]],[18,19,["G4012"]],[19,20,["G4675"]],[20,21,["G1722"]],[21,22,["G3450"]],[22,23,["G1162"]],[23,24,["G3571"]],[24,25,["G2532"]],[25,26,["G2250"]]]},{"k":29813,"v":[[0,2,["G1971"]],[2,4,["G1492"]],[4,5,["G4571"]],[5,7,["G3415"]],[7,9,["G4675"]],[9,10,["G1144"]],[10,11,["G2443"]],[11,15,["G4137"]],[15,17,["G5479"]]]},{"k":29814,"v":[[0,3,["G2983"]],[3,5,["G5280"]],[5,6,["G3588"]],[6,7,["G505"]],[7,8,["G4102"]],[8,9,["G3588"]],[9,11,["G1722"]],[11,12,["G4671"]],[12,13,["G3748"]],[13,14,["G1774"]],[14,15,["G4412"]],[15,16,["G1722"]],[16,17,["G4675"]],[17,18,["G3125"]],[18,19,["G3090"]],[19,20,["G2532"]],[20,21,["G4675"]],[21,22,["G3384"]],[22,23,["G2131"]],[23,24,["G1161"]],[24,27,["G3982"]],[27,28,["G3754"]],[28,29,["G1722"]],[29,30,["G4671"]],[30,31,["G2532"]]]},{"k":29815,"v":[[0,1,["G1223","G3739","G156"]],[1,6,["G363","G4671"]],[6,10,["G329"]],[10,11,["G3588"]],[11,12,["G5486"]],[12,14,["G2316"]],[14,15,["G3739"]],[15,16,["G2076"]],[16,17,["G1722"]],[17,18,["G4671"]],[18,19,["G1223"]],[19,20,["G3588"]],[20,22,["G1936"]],[22,24,["G3450"]],[24,25,["G5495"]]]},{"k":29816,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,4,["G3756"]],[4,5,["G1325"]],[5,6,["G2254"]],[6,8,["G4151"]],[8,10,["G1167"]],[10,11,["G235"]],[11,13,["G1411"]],[13,14,["G2532"]],[14,16,["G26"]],[16,17,["G2532"]],[17,21,["G4995"]]]},{"k":29817,"v":[[0,2,["G3361"]],[2,4,["G3767"]],[4,5,["G1870"]],[5,7,["G3588"]],[7,8,["G3142"]],[8,10,["G2257"]],[10,11,["G2962"]],[11,12,["G3366"]],[12,14,["G1691"]],[14,15,["G846"]],[15,16,["G1198"]],[16,17,["G235"]],[17,23,["G4777"]],[23,25,["G3588"]],[25,26,["G2098"]],[26,27,["G2596"]],[27,30,["G1411"]],[30,32,["G2316"]]]},{"k":29818,"v":[[0,3,["G4982"]],[3,4,["G2248"]],[4,5,["G2532"]],[5,6,["G2564"]],[6,10,["G40"]],[10,11,["G2821"]],[11,12,["G3756"]],[12,13,["G2596"]],[13,15,["G2257"]],[15,16,["G2041"]],[16,17,["G235"]],[17,18,["G2596"]],[18,21,["G2398"]],[21,22,["G4286"]],[22,23,["G2532"]],[23,24,["G5485"]],[24,27,["G1325"]],[27,28,["G2254"]],[28,29,["G1722"]],[29,30,["G5547"]],[30,31,["G2424"]],[31,32,["G4253"]],[32,35,["G5550","G166"]]]},{"k":29819,"v":[[0,1,["G1161"]],[1,3,["G3568"]],[3,5,["G5319"]],[5,6,["G1223"]],[6,7,["G3588"]],[7,8,["G2015"]],[8,10,["G2257"]],[10,11,["G4990"]],[11,12,["G2424"]],[12,13,["G5547"]],[13,16,["G2673","(G3303)"]],[16,17,["G2288"]],[17,18,["G1161"]],[18,25,["G5461","G2222","G2532","G861"]],[25,26,["G1223"]],[26,27,["G3588"]],[27,28,["G2098"]]]},{"k":29820,"v":[[0,1,["G1519","G3739"]],[1,2,["G1473"]],[2,4,["G5087"]],[4,6,["G2783"]],[6,7,["G2532"]],[7,9,["G652"]],[9,10,["G2532"]],[10,12,["G1320"]],[12,15,["G1484"]]]},{"k":29821,"v":[[0,1,["G1223"]],[1,3,["G3739"]],[3,4,["G156"]],[4,6,["G2532"]],[6,7,["G3958"]],[7,9,["G5023"]],[9,10,["G235"]],[10,13,["G3756"]],[13,14,["G1870"]],[14,15,["G1063"]],[15,17,["G1492"]],[17,18,["G3739"]],[18,21,["G4100"]],[21,22,["G2532"]],[22,24,["G3982"]],[24,25,["G3754"]],[25,27,["G2076"]],[27,28,["G1415"]],[28,30,["G5442"]],[30,37,["G3866","G3450"]],[37,38,["G1519"]],[38,39,["G1565"]],[39,40,["G2250"]]]},{"k":29822,"v":[[0,2,["G2192"]],[2,4,["G5296"]],[4,6,["G5198"]],[6,7,["G3056"]],[7,8,["G3739"]],[8,11,["G191"]],[11,12,["G3844"]],[12,13,["G1700"]],[13,14,["G1722"]],[14,15,["G4102"]],[15,16,["G2532"]],[16,17,["G26"]],[17,18,["G3588"]],[18,20,["G1722"]],[20,21,["G5547"]],[21,22,["G2424"]]]},{"k":29823,"v":[[0,3,["G2570"]],[3,8,["G3872"]],[8,9,["G5442"]],[9,10,["G1223"]],[10,12,["G40"]],[12,13,["G4151"]],[13,15,["G1774"]],[15,16,["G1722"]],[16,17,["G2254"]]]},{"k":29824,"v":[[0,1,["G5124"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G3956"]],[5,7,["G3588"]],[7,9,["G1722"]],[9,10,["G773"]],[10,14,["G654"]],[14,15,["G3165"]],[15,17,["G3739"]],[17,18,["G2076"]],[18,19,["G5436"]],[19,20,["G2532"]],[20,21,["G2061"]]]},{"k":29825,"v":[[0,1,["G3588"]],[1,2,["G2962"]],[2,3,["G1325"]],[3,4,["G1656"]],[4,6,["G3588"]],[6,7,["G3624"]],[7,9,["G3683"]],[9,10,["G3754"]],[10,12,["G4178"]],[12,13,["G404"]],[13,14,["G3165"]],[14,15,["G2532"]],[15,17,["G3756"]],[17,18,["G1870"]],[18,20,["G3450"]],[20,21,["G254"]]]},{"k":29826,"v":[[0,1,["G235"]],[1,4,["G1096"]],[4,5,["G1722"]],[5,6,["G4516"]],[6,10,["G2212","G3165"]],[10,12,["G4706"]],[12,13,["G2532"]],[13,14,["G2147"]],[14,15,[]]]},{"k":29827,"v":[[0,1,["G3588"]],[1,2,["G2962"]],[2,3,["G1325"]],[3,5,["G846"]],[5,9,["G2147"]],[9,10,["G1656"]],[10,11,["G3844"]],[11,13,["G2962"]],[13,14,["G1722"]],[14,15,["G1565"]],[15,16,["G2250"]],[16,17,["G2532"]],[17,21,["G3745"]],[21,24,["G1247"]],[24,26,["G1722"]],[26,27,["G2181"]],[27,28,["G4771"]],[28,29,["G1097"]],[29,31,["G957"]]]},{"k":29828,"v":[[0,1,["G4771"]],[1,2,["G3767"]],[2,3,["G3450"]],[3,4,["G5043"]],[4,6,["G1743"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G5485"]],[9,10,["G3588"]],[10,12,["G1722"]],[12,13,["G5547"]],[13,14,["G2424"]]]},{"k":29829,"v":[[0,1,["G2532"]],[1,4,["G3739"]],[4,7,["G191"]],[7,8,["G3844"]],[8,9,["G1700"]],[9,10,["G1223"]],[10,11,["G4183"]],[11,12,["G3144"]],[12,14,["G5023"]],[14,15,["G3908"]],[15,18,["G4103"]],[18,19,["G444"]],[19,20,["G3748"]],[20,22,["G2071"]],[22,23,["G2425"]],[23,25,["G1321"]],[25,26,["G2087"]],[26,27,["G2532"]]]},{"k":29830,"v":[[0,1,["G4771"]],[1,2,["G3767"]],[2,4,["G2553"]],[4,5,["G5613"]],[5,7,["G2570"]],[7,8,["G4757"]],[8,10,["G2424"]],[10,11,["G5547"]]]},{"k":29831,"v":[[0,2,["G3762"]],[2,4,["G4754"]],[4,7,["G1707"]],[7,8,["G3588"]],[8,9,["G4230"]],[9,12,["G979"]],[12,13,["G2443"]],[13,16,["G700"]],[16,25,["G4758"]]]},{"k":29832,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,4,["G5100"]],[4,5,["G2532"]],[5,8,["G118"]],[8,12,["G3756"]],[12,13,["G4737"]],[13,14,["G3362"]],[14,16,["G118"]],[16,17,["G3545"]]]},{"k":29833,"v":[[0,2,["G1092"]],[2,4,["G2872"]],[4,5,["G1163"]],[5,8,["G3335","G4413"]],[8,10,["G3588"]],[10,11,["G2590"]]]},{"k":29834,"v":[[0,1,["G3539"]],[1,2,["G3739"]],[2,4,["G3004"]],[4,5,["G1063"]],[5,6,["G3588"]],[6,7,["G2962"]],[7,8,["G1325"]],[8,9,["G4671"]],[9,10,["G4907"]],[10,11,["G1722"]],[11,13,["G3956"]]]},{"k":29835,"v":[[0,1,["G3421"]],[1,3,["G2424"]],[3,4,["G5547"]],[4,5,["G1537"]],[5,7,["G4690"]],[7,9,["G1138"]],[9,11,["G1453"]],[11,12,["G1537"]],[12,14,["G3498"]],[14,15,["G2596"]],[15,17,["G3450"]],[17,18,["G2098"]]]},{"k":29836,"v":[[0,1,["G1722","G3739"]],[1,4,["G2553"]],[4,5,["G5613"]],[5,8,["G2557"]],[8,10,["G3360"]],[10,11,["G1199"]],[11,12,["G235"]],[12,13,["G3588"]],[13,14,["G3056"]],[14,16,["G2316"]],[16,18,["G3756"]],[18,19,["G1210"]]]},{"k":29837,"v":[[0,1,["G1223","G5124"]],[1,3,["G5278"]],[3,5,["G3956"]],[5,9,["G1223","G3588","G1588"]],[9,10,["G2443"]],[10,11,["G846"]],[11,13,["G2532"]],[13,14,["G5177"]],[14,16,["G4991"]],[16,17,["G3588"]],[17,19,["G1722"]],[19,20,["G5547"]],[20,21,["G2424"]],[21,22,["G3326"]],[22,23,["G166"]],[23,24,["G1391"]]]},{"k":29838,"v":[[0,4,["G4103"]],[4,5,["G3056"]],[5,6,["G1063"]],[6,7,["G1487"]],[7,11,["G4880"]],[11,15,["G2532"]],[15,17,["G4800"]],[17,18,[]]]},{"k":29839,"v":[[0,1,["G1487"]],[1,3,["G5278"]],[3,6,["G2532"]],[6,8,["G4821"]],[8,10,["G1487"]],[10,12,["G720"]],[12,15,["G2548"]],[15,17,["G720"]],[17,18,["G2248"]]]},{"k":29840,"v":[[0,1,["G1487"]],[1,4,["G569"]],[4,6,["G1565"]],[6,7,["G3306"]],[7,8,["G4103"]],[8,10,["G1410","G3756"]],[10,11,["G720"]],[11,12,["G1438"]]]},{"k":29841,"v":[[0,3,["G5023"]],[3,7,["G5279"]],[7,8,["G1263"]],[8,10,["G1799"]],[10,11,["G3588"]],[11,12,["G2962"]],[12,18,["G3054","G3361"]],[18,21,["G1519","G3762","G5539"]],[21,23,["G1909"]],[23,25,["G2692"]],[25,27,["G3588"]],[27,28,["G191"]]]},{"k":29842,"v":[[0,1,["G4704"]],[1,3,["G3936"]],[3,4,["G4572"]],[4,5,["G1384"]],[5,7,["G2316"]],[7,9,["G2040"]],[9,15,["G422"]],[15,17,["G3718"]],[17,18,["G3588"]],[18,19,["G3056"]],[19,21,["G225"]]]},{"k":29843,"v":[[0,1,["G1161"]],[1,2,["G4026"]],[2,3,["G952"]],[3,6,["G2757"]],[6,7,["G1063"]],[7,10,["G4298"]],[10,11,["G1909"]],[11,12,["G4119"]],[12,13,["G763"]]]},{"k":29844,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3056"]],[3,5,["G2192","G3542"]],[5,6,["G5613"]],[6,9,["G1044"]],[9,11,["G3739"]],[11,12,["G2076"]],[12,13,["G5211"]],[13,14,["G2532"]],[14,15,["G5372"]]]},{"k":29845,"v":[[0,1,["G3748"]],[1,2,["G4012"]],[2,3,["G3588"]],[3,4,["G225"]],[4,6,["G795"]],[6,7,["G3004"]],[7,9,["G3588"]],[9,10,["G386"]],[10,12,["G1096"]],[12,13,["G2235"]],[13,14,["G2532"]],[14,15,["G396"]],[15,16,["G3588"]],[16,17,["G4102"]],[17,19,["G5100"]]]},{"k":29846,"v":[[0,1,["G3305"]],[1,3,["G2310"]],[3,5,["G2316"]],[5,6,["G2476"]],[6,7,["G4731"]],[7,8,["G2192"]],[8,9,["G5026"]],[9,10,["G4973"]],[10,12,["G2962"]],[12,13,["G1097"]],[13,16,["G5607"]],[16,17,["G848"]],[17,18,["G2532"]],[18,21,["G3956"]],[21,23,["G3687"]],[23,24,["G3588"]],[24,25,["G3686"]],[25,27,["G5547"]],[27,28,["G868"]],[28,29,["G575"]],[29,30,["G93"]]]},{"k":29847,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,4,["G3173"]],[4,5,["G3614"]],[5,7,["G2076"]],[7,8,["G3756"]],[8,9,["G3440"]],[9,10,["G4632"]],[10,12,["G5552"]],[12,13,["G2532"]],[13,15,["G693"]],[15,16,["G235"]],[16,17,["G2532"]],[17,19,["G3585"]],[19,20,["G2532"]],[20,22,["G3749"]],[22,23,["G2532"]],[23,24,["G3739","G3303"]],[24,25,["G1519"]],[25,26,["G5092"]],[26,27,["G1161"]],[27,28,["G3739"]],[28,29,["G1519"]],[29,30,["G819"]]]},{"k":29848,"v":[[0,1,["G1437"]],[1,3,["G5100"]],[3,4,["G3767"]],[4,5,["G1571"]],[5,6,["G1438"]],[6,7,["G575"]],[7,8,["G5130"]],[8,11,["G2071"]],[11,13,["G4632"]],[13,14,["G1519"]],[14,15,["G5092"]],[15,16,["G37"]],[16,17,["G2532"]],[17,22,["G2173","G3588","G1203"]],[22,24,["G2090"]],[24,25,["G1519"]],[25,26,["G3956"]],[26,27,["G18"]],[27,28,["G2041"]]]},{"k":29849,"v":[[0,1,["G5343"]],[1,2,["G1161"]],[2,3,["G3512"]],[3,4,["G1939"]],[4,5,["G1161"]],[5,6,["G1377"]],[6,7,["G1343"]],[7,8,["G4102"]],[8,9,["G26"]],[9,10,["G1515"]],[10,11,["G3326"]],[11,15,["G1941"]],[15,16,["G3588"]],[16,17,["G2962"]],[17,19,["G1537"]],[19,21,["G2513"]],[21,22,["G2588"]]]},{"k":29850,"v":[[0,1,["G1161"]],[1,2,["G3474"]],[2,3,["G2532"]],[3,4,["G521"]],[4,5,["G2214"]],[5,6,["G3868"]],[6,7,["G1492"]],[7,8,["G3754"]],[8,11,["G1080"]],[11,12,["G3163"]]]},{"k":29851,"v":[[0,1,["G1161"]],[1,3,["G1401"]],[3,6,["G2962"]],[6,7,["G1163"]],[7,8,["G3756"]],[8,9,["G3164"]],[9,10,["G235"]],[10,11,["G1511"]],[11,12,["G2261"]],[12,13,["G4314"]],[13,14,["G3956"]],[14,18,["G1317"]],[18,19,["G420"]]]},{"k":29852,"v":[[0,1,["G1722"]],[1,2,["G4236"]],[2,3,["G3811"]],[3,7,["G475"]],[7,10,["G3379","G2316"]],[10,12,["G1325"]],[12,13,["G846"]],[13,14,["G3341"]],[14,15,["G1519"]],[15,17,["G1922"]],[17,20,["G225"]]]},{"k":29853,"v":[[0,1,["G2532"]],[1,6,["G366"]],[6,8,["G1537"]],[8,9,["G3588"]],[9,10,["G3803"]],[10,12,["G3588"]],[12,13,["G1228"]],[13,17,["G2221"]],[17,18,["G5259"]],[18,19,["G846"]],[19,20,["G1519"]],[20,21,["G1565"]],[21,22,["G2307"]]]},{"k":29854,"v":[[0,1,["G5124"]],[1,2,["G1097"]],[2,3,["G1161"]],[3,4,["G3754"]],[4,5,["G1722"]],[5,7,["G2078"]],[7,8,["G2250"]],[8,9,["G5467"]],[9,10,["G2540"]],[10,12,["G1764"]]]},{"k":29855,"v":[[0,1,["G1063"]],[1,2,["G444"]],[2,4,["G2071"]],[4,9,["G5367"]],[9,10,["G5366"]],[10,11,["G213"]],[11,12,["G5244"]],[12,13,["G989"]],[13,14,["G545"]],[14,16,["G1118"]],[16,17,["G884"]],[17,18,["G462"]]]},{"k":29856,"v":[[0,3,["G794"]],[3,4,["G786"]],[4,6,["G1228"]],[6,7,["G193"]],[7,8,["G434"]],[8,14,["G865"]]]},{"k":29857,"v":[[0,1,["G4273"]],[1,2,["G4312"]],[2,3,["G5187"]],[3,6,["G5369"]],[6,7,["G3123"]],[7,8,["G2228"]],[8,11,["G5377"]]]},{"k":29858,"v":[[0,1,["G2192"]],[1,3,["G3446"]],[3,5,["G2150"]],[5,6,["G1161"]],[6,7,["G720"]],[7,8,["G3588"]],[8,9,["G1411"]],[9,10,["G846"]],[10,14,["G665","G5128"]]]},{"k":29859,"v":[[0,1,["G1063"]],[1,2,["G1537"]],[2,4,["G5130"]],[4,5,["G1526"]],[5,8,["G1744"]],[8,9,["G1519"]],[9,10,["G3614"]],[10,11,["G2532"]],[11,13,["G162"]],[13,15,["G1133"]],[15,16,["G4987"]],[16,18,["G266"]],[18,20,["G71"]],[20,22,["G4164"]],[22,23,["G1939"]]]},{"k":29860,"v":[[0,1,["G3842"]],[1,2,["G3129"]],[2,3,["G2532"]],[3,4,["G3368"]],[4,5,["G1410"]],[5,7,["G2064"]],[7,8,["G1519"]],[8,10,["G1922"]],[10,13,["G225"]]]},{"k":29861,"v":[[0,1,["G1161"]],[1,2,["G3739","G5158"]],[2,3,["G2389"]],[3,4,["G2532"]],[4,5,["G2387"]],[5,6,["G436"]],[6,7,["G3475"]],[7,8,["G3779"]],[8,10,["G3778"]],[10,11,["G2532"]],[11,12,["G436"]],[12,13,["G3588"]],[13,14,["G225"]],[14,15,["G444"]],[15,17,["G2704"]],[17,18,["G3563"]],[18,19,["G96"]],[19,20,["G4012"]],[20,21,["G3588"]],[21,22,["G4102"]]]},{"k":29862,"v":[[0,1,["G235"]],[1,4,["G4298"]],[4,5,["G3756"]],[5,6,["G1909","G4119"]],[6,7,["G1063"]],[7,8,["G846"]],[8,9,["G454"]],[9,11,["G2071"]],[11,12,["G1552"]],[12,14,["G3956"]],[14,16,["G5613"]],[16,17,["G1565"]],[17,18,["G2532"]],[18,19,["G1096"]]]},{"k":29863,"v":[[0,1,["G1161"]],[1,2,["G4771"]],[2,5,["G3877"]],[5,6,["G3450"]],[6,7,["G1319"]],[7,10,["G72"]],[10,11,["G4286"]],[11,12,["G4102"]],[12,13,["G3115"]],[13,14,["G26"]],[14,15,["G5281"]]]},{"k":29864,"v":[[0,1,["G1375"]],[1,2,["G3804"]],[2,3,["G3634"]],[3,4,["G1096"]],[4,6,["G3427"]],[6,7,["G1722"]],[7,8,["G490"]],[8,9,["G1722"]],[9,10,["G2430"]],[10,11,["G1722"]],[11,12,["G3082"]],[12,13,["G3634"]],[13,14,["G1375"]],[14,16,["G5297"]],[16,17,["G2532"]],[17,19,["G1537"]],[19,21,["G3956"]],[21,22,["G3588"]],[22,23,["G2962"]],[23,24,["G4506"]],[24,25,["G3165"]]]},{"k":29865,"v":[[0,1,["G1161"]],[1,2,["G2532"]],[2,3,["G3956"]],[3,5,["G2309"]],[5,6,["G2198"]],[6,7,["G2153"]],[7,8,["G1722"]],[8,9,["G5547"]],[9,10,["G2424"]],[10,13,["G1377"]]]},{"k":29866,"v":[[0,1,["G1161"]],[1,2,["G4190"]],[2,3,["G444"]],[3,4,["G2532"]],[4,5,["G1114"]],[5,10,["G4298","G1909","G5501"]],[10,11,["G4105"]],[11,12,["G2532"]],[12,14,["G4105"]]]},{"k":29867,"v":[[0,1,["G1161"]],[1,2,["G3306"]],[2,3,["G4771"]],[3,4,["G1722"]],[4,7,["G3739"]],[7,10,["G3129"]],[10,11,["G2532"]],[11,15,["G4104"]],[15,16,["G1492"]],[16,17,["G3844"]],[17,18,["G5101"]],[18,21,["G3129"]],[21,22,[]]]},{"k":29868,"v":[[0,1,["G2532"]],[1,2,["G3754"]],[2,3,["G575"]],[3,5,["G1025"]],[5,8,["G1492"]],[8,9,["G3588"]],[9,10,["G2413"]],[10,11,["G1121"]],[11,14,["G1410"]],[14,18,["G4679","G4571"]],[18,19,["G1519"]],[19,20,["G4991"]],[20,21,["G1223"]],[21,22,["G4102"]],[22,23,["G3588"]],[23,25,["G1722"]],[25,26,["G5547"]],[26,27,["G2424"]]]},{"k":29869,"v":[[0,1,["G3956"]],[1,2,["G1124"]],[2,8,["G2315"]],[8,9,["G2532"]],[9,11,["G5624"]],[11,12,["G4314"]],[12,13,["G1319"]],[13,14,["G4314"]],[14,15,["G1650"]],[15,16,["G4314"]],[16,17,["G1882"]],[17,18,["G4314"]],[18,19,["G3809"]],[19,20,["G1722"]],[20,21,["G1343"]]]},{"k":29870,"v":[[0,1,["G2443"]],[1,2,["G3588"]],[2,3,["G444"]],[3,5,["G2316"]],[5,7,["G5600"]],[7,8,["G739"]],[8,10,["G1822"]],[10,11,["G4314"]],[11,12,["G3956"]],[12,13,["G18"]],[13,14,["G2041"]]]},{"k":29871,"v":[[0,1,["G1473"]],[1,2,["G1263"]],[2,4,["G3767"]],[4,5,["G1799"]],[5,6,["G2316"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,10,["G2424"]],[10,11,["G5547"]],[11,13,["G3195"]],[13,14,["G2919"]],[14,16,["G2198"]],[16,17,["G2532"]],[17,19,["G3498"]],[19,20,["G2596"]],[20,21,["G848"]],[21,22,["G2015"]],[22,23,["G2532"]],[23,24,["G848"]],[24,25,["G932"]]]},{"k":29872,"v":[[0,1,["G2784"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,5,["G2186"]],[5,7,["G2122"]],[7,10,["G171"]],[10,11,["G1651"]],[11,12,["G2008"]],[12,13,["G3870"]],[13,14,["G1722"]],[14,15,["G3956"]],[15,16,["G3115"]],[16,17,["G2532"]],[17,18,["G1322"]]]},{"k":29873,"v":[[0,1,["G1063"]],[1,3,["G2540"]],[3,5,["G2071"]],[5,6,["G3753"]],[6,9,["G3756"]],[9,10,["G430"]],[10,11,["G5198"]],[11,12,["G1319"]],[12,13,["G235"]],[13,14,["G2596"]],[14,16,["G2398"]],[16,17,["G1939"]],[17,20,["G2002"]],[20,22,["G1438"]],[22,23,["G1320"]],[23,25,["G2833"]],[25,26,["G189"]]]},{"k":29874,"v":[[0,1,["G2532"]],[1,5,["G654"]],[5,7,["G189"]],[7,8,["G575","(G3303)"]],[8,9,["G3588"]],[9,10,["G225"]],[10,11,["G1161"]],[11,14,["G1624"]],[14,15,["G1909"]],[15,16,["G3454"]]]},{"k":29875,"v":[[0,1,["G1161"]],[1,2,["G3525"]],[2,3,["G4771"]],[3,4,["G1722"]],[4,6,["G3956"]],[6,8,["G2553"]],[8,9,["G4160"]],[9,11,["G2041"]],[11,14,["G2099"]],[14,17,["G4135"]],[17,19,["G4675"]],[19,20,["G1248"]]]},{"k":29876,"v":[[0,1,["G1063"]],[1,2,["G1473"]],[2,8,["G4689","G2235"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G2540"]],[11,13,["G1699"]],[13,14,["G359"]],[14,17,["G2186"]]]},{"k":29877,"v":[[0,3,["G75"]],[3,5,["G2570"]],[5,6,["G73"]],[6,9,["G5055"]],[9,11,["G1408"]],[11,14,["G5083"]],[14,15,["G3588"]],[15,16,["G4102"]]]},{"k":29878,"v":[[0,1,["G3063"]],[1,5,["G606"]],[5,7,["G3427"]],[7,9,["G4735"]],[9,11,["G1343"]],[11,12,["G3739"]],[12,13,["G3588"]],[13,14,["G2962"]],[14,15,["G3588"]],[15,16,["G1342"]],[16,17,["G2923"]],[17,19,["G591"]],[19,20,["G3427"]],[20,21,["G1722"]],[21,22,["G1565"]],[22,23,["G2250"]],[23,24,["G1161"]],[24,25,["G3756"]],[25,27,["G1698"]],[27,28,["G3440"]],[28,29,["G235"]],[29,31,["G3956"]],[31,35,["G25","G2532"]],[35,36,["G846"]],[36,37,["G2015"]]]},{"k":29879,"v":[[0,3,["G4704"]],[3,5,["G2064"]],[5,6,["G5030"]],[6,7,["G4314"]],[7,8,["G3165"]]]},{"k":29880,"v":[[0,1,["G1063"]],[1,2,["G1214"]],[2,4,["G1459"]],[4,5,["G3165"]],[5,7,["G25"]],[7,9,["G3568"]],[9,10,["G165"]],[10,11,["G2532"]],[11,13,["G4198"]],[13,14,["G1519"]],[14,15,["G2332"]],[15,16,["G2913"]],[16,17,["G1519"]],[17,18,["G1053"]],[18,19,["G5103"]],[19,20,["G1519"]],[20,21,["G1149"]]]},{"k":29881,"v":[[0,1,["G3441"]],[1,2,["G3065"]],[2,3,["G2076"]],[3,4,["G3326"]],[4,5,["G1700"]],[5,6,["G353"]],[6,7,["G3138"]],[7,9,["G71"]],[9,11,["G3326"]],[11,12,["G4572"]],[12,13,["G1063"]],[13,15,["G2076"]],[15,16,["G2173"]],[16,18,["G3427"]],[18,19,["G1519"]],[19,21,["G1248"]]]},{"k":29882,"v":[[0,1,["G1161"]],[1,2,["G5190"]],[2,5,["G649"]],[5,6,["G1519"]],[6,7,["G2181"]]]},{"k":29883,"v":[[0,1,["G3588"]],[1,2,["G5341"]],[2,3,["G3739"]],[3,5,["G620"]],[5,6,["G1722"]],[6,7,["G5174"]],[7,8,["G3844"]],[8,9,["G2591"]],[9,12,["G2064"]],[12,13,["G5342"]],[13,16,["G2532"]],[16,17,["G3588"]],[17,18,["G975"]],[18,20,["G3122"]],[20,21,["G3588"]],[21,22,["G3200"]]]},{"k":29884,"v":[[0,1,["G223"]],[1,2,["G3588"]],[2,3,["G5471"]],[3,4,["G1731"]],[4,5,["G3427"]],[5,6,["G4183"]],[6,7,["G2556"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,10,["G591"]],[10,11,["G846"]],[11,12,["G2596"]],[12,14,["G846"]],[14,15,["G2041"]]]},{"k":29885,"v":[[0,2,["G3739"]],[2,5,["G5442","G4771"]],[5,6,["G2532"]],[6,7,["G1063"]],[7,10,["G3029"]],[10,11,["G436"]],[11,12,["G2251"]],[12,13,["G3056"]]]},{"k":29886,"v":[[0,1,["G1722"]],[1,2,["G3450"]],[2,3,["G4413"]],[3,4,["G627"]],[4,6,["G3762"]],[6,8,["G4836"]],[8,9,["G3427"]],[9,10,["G235"]],[10,11,["G3956"]],[11,13,["G1459"]],[13,14,["G3165"]],[14,21,["G3361"]],[21,26,["G3049","G846"]]]},{"k":29887,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,5,["G3936"]],[5,6,["G3427"]],[6,7,["G2532"]],[7,8,["G1743"]],[8,9,["G3165"]],[9,10,["G2443"]],[10,11,["G1223"]],[11,12,["G1700"]],[12,13,["G3588"]],[13,14,["G2782"]],[14,18,["G4135"]],[18,19,["G2532"]],[19,21,["G3956"]],[21,22,["G3588"]],[22,23,["G1484"]],[23,25,["G191"]],[25,26,["G2532"]],[26,29,["G4506"]],[29,31,["G1537"]],[31,33,["G4750"]],[33,36,["G3023"]]]},{"k":29888,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2962"]],[3,5,["G4506"]],[5,6,["G3165"]],[6,7,["G575"]],[7,8,["G3956"]],[8,9,["G4190"]],[9,10,["G2041"]],[10,11,["G2532"]],[11,13,["G4982"]],[13,15,["G1519"]],[15,16,["G848"]],[16,17,["G2032"]],[17,18,["G932"]],[18,20,["G3739"]],[20,22,["G1391"]],[22,26,["G1519","G165","G165"]],[26,27,["G281"]]]},{"k":29889,"v":[[0,1,["G782"]],[1,2,["G4251"]],[2,3,["G2532"]],[3,4,["G207"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G3624"]],[7,9,["G3683"]]]},{"k":29890,"v":[[0,1,["G2037"]],[1,2,["G3306"]],[2,3,["G1722"]],[3,4,["G2882"]],[4,5,["G1161"]],[5,6,["G5161"]],[6,9,["G620"]],[9,10,["G1722"]],[10,11,["G3399"]],[11,12,["G770"]]]},{"k":29891,"v":[[0,3,["G4704"]],[3,5,["G2064"]],[5,6,["G4253"]],[6,7,["G5494"]],[7,8,["G2103"]],[8,9,["G782"]],[9,10,["G4571"]],[10,11,["G2532"]],[11,12,["G4227"]],[12,13,["G2532"]],[13,14,["G3044"]],[14,15,["G2532"]],[15,16,["G2803"]],[16,17,["G2532"]],[17,18,["G3956"]],[18,19,["G3588"]],[19,20,["G80"]]]},{"k":29892,"v":[[0,1,["G3588"]],[1,2,["G2962"]],[2,3,["G2424"]],[3,4,["G5547"]],[4,6,["G3326"]],[6,7,["G4675"]],[7,8,["G4151"]],[8,9,["G5485"]],[9,11,["G3326"]],[11,12,["G5216"]],[12,13,["G281"]]]},{"k":29893,"v":[[0,1,["G3972"]],[1,3,["G1401"]],[3,5,["G2316"]],[5,6,["G1161"]],[6,8,["G652"]],[8,10,["G2424"]],[10,11,["G5547"]],[11,12,["G2596"]],[12,15,["G4102"]],[15,17,["G2316"]],[17,18,["G1588"]],[18,19,["G2532"]],[19,21,["G1922"]],[21,24,["G225"]],[24,25,["G3588"]],[25,27,["G2596"]],[27,28,["G2150"]]]},{"k":29894,"v":[[0,1,["G1909"]],[1,2,["G1680"]],[2,4,["G166"]],[4,5,["G2222"]],[5,6,["G3739"]],[6,7,["G2316"]],[7,10,["G893"]],[10,11,["G1861"]],[11,12,["G4253"]],[12,15,["G166","G5550"]]]},{"k":29895,"v":[[0,1,["G1161"]],[1,4,["G2398"]],[4,5,["G2540"]],[5,6,["G5319"]],[6,7,["G848"]],[7,8,["G3056"]],[8,9,["G1722"]],[9,10,["G2782"]],[10,11,["G3739"]],[11,13,["G4100"]],[13,15,["G1473"]],[15,16,["G2596"]],[16,19,["G2003"]],[19,21,["G2316"]],[21,22,["G2257"]],[22,23,["G4990"]]]},{"k":29896,"v":[[0,2,["G5103"]],[2,4,["G1103"]],[4,5,["G5043"]],[5,6,["G2596"]],[6,8,["G2839"]],[8,9,["G4102"]],[9,10,["G5485"]],[10,11,["G1656"]],[11,13,["G1515"]],[13,14,["G575"]],[14,15,["G2316"]],[15,17,["G3962"]],[17,18,["G2532"]],[18,20,["G2962"]],[20,21,["G2424"]],[21,22,["G5547"]],[22,23,["G2257"]],[23,24,["G4990"]]]},{"k":29897,"v":[[0,3,["G5484","G5127"]],[3,4,["G2641"]],[4,6,["G4571"]],[6,7,["G1722"]],[7,8,["G2914"]],[8,9,["G2443"]],[9,14,["G1930"]],[14,19,["G3007"]],[19,20,["G2532"]],[20,21,["G2525"]],[21,22,["G4245"]],[22,25,["G2596","G4172"]],[25,26,["G5613"]],[26,27,["G1473"]],[27,29,["G1299"]],[29,30,["G4671"]]]},{"k":29898,"v":[[0,2,["G1536"]],[2,3,["G2076"]],[3,4,["G410"]],[4,6,["G435"]],[6,8,["G3391"]],[8,9,["G1135"]],[9,10,["G2192"]],[10,11,["G4103"]],[11,12,["G5043"]],[12,13,["G3361"]],[13,14,["G1722","G2724"]],[14,16,["G810"]],[16,17,["G2228"]],[17,18,["G506"]]]},{"k":29899,"v":[[0,1,["G1063"]],[1,3,["G1985"]],[3,4,["G1163"]],[4,5,["G1511"]],[5,6,["G410"]],[6,7,["G5613"]],[7,9,["G3623"]],[9,11,["G2316"]],[11,12,["G3361"]],[12,13,["G829"]],[13,14,["G3361"]],[14,16,["G3711"]],[16,17,["G3361"]],[17,20,["G3943"]],[20,21,["G3361"]],[21,22,["G4131"]],[22,23,["G3361"]],[23,27,["G146"]]]},{"k":29900,"v":[[0,1,["G235"]],[1,5,["G5382"]],[5,10,["G5358"]],[10,11,["G4998"]],[11,12,["G1342"]],[12,13,["G3741"]],[13,14,["G1468"]]]},{"k":29901,"v":[[0,2,["G472"]],[2,3,["G3588"]],[3,4,["G4103"]],[4,5,["G3056"]],[5,10,["G2596","G1322"]],[10,11,["G2443"]],[11,14,["G5600"]],[14,15,["G1415"]],[15,16,["G1722"]],[16,17,["G5198"]],[17,18,["G1319"]],[18,19,["G2532"]],[19,21,["G3870"]],[21,22,["G2532"]],[22,24,["G1651"]],[24,25,["G3588"]],[25,26,["G483"]]]},{"k":29902,"v":[[0,1,["G1063"]],[1,3,["G1526"]],[3,4,["G4183"]],[4,5,["(G2532)","G506"]],[5,8,["G3151"]],[8,9,["G2532"]],[9,10,["G5423"]],[10,11,["G3122"]],[11,12,["G3588"]],[12,13,["G1537"]],[13,15,["G4061"]]]},{"k":29903,"v":[[0,1,["G3739"]],[1,5,["G1993","G1163"]],[5,6,["G3748"]],[6,7,["G396"]],[7,8,["G3650"]],[8,9,["G3624"]],[9,10,["G1321"]],[10,12,["G3739"]],[12,14,["G1163"]],[14,15,["G3361"]],[15,19,["G5484","G150","G2771"]]]},{"k":29904,"v":[[0,1,["G5100"]],[1,2,["G1537"]],[2,3,["G846"]],[3,6,["G4396"]],[6,8,["G846"]],[8,9,["G2398"]],[9,10,["G2036"]],[10,12,["G2912"]],[12,14,["G104"]],[14,15,["G5583"]],[15,16,["G2556"]],[16,17,["G2342"]],[17,18,["G692"]],[18,19,["G1064"]]]},{"k":29905,"v":[[0,1,["G3778"]],[1,2,["G3141"]],[2,3,["G2076"]],[3,4,["G227"]],[4,5,["G1223","G3739","G156"]],[5,6,["G1651"]],[6,7,["G846"]],[7,8,["G664"]],[8,9,["G2443"]],[9,13,["G5198"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G4102"]]]},{"k":29906,"v":[[0,1,["G3361"]],[1,3,["G4337"]],[3,5,["G2451"]],[5,6,["G3454"]],[6,7,["G2532"]],[7,8,["G1785"]],[8,10,["G444"]],[10,13,["G654"]],[13,14,["G3588"]],[14,15,["G225"]]]},{"k":29907,"v":[[0,2,["G3588"]],[2,3,["G2513"]],[3,5,["G3956"]],[5,6,["(G3303)"]],[6,7,["G2513"]],[7,8,["G1161"]],[8,10,["G3588"]],[10,13,["G3392"]],[13,14,["G2532"]],[14,15,["G571"]],[15,17,["G3762"]],[17,18,["G2513"]],[18,19,["G235"]],[19,20,["G2532"]],[20,21,["G846"]],[21,22,["G3563"]],[22,23,["G2532"]],[23,24,["G4893"]],[24,26,["G3392"]]]},{"k":29908,"v":[[0,2,["G3670"]],[2,5,["G1492"]],[5,6,["G2316"]],[6,7,["G1161"]],[7,9,["G2041"]],[9,11,["G720"]],[11,13,["G5607"]],[13,14,["G947"]],[14,15,["G2532"]],[15,16,["G545"]],[16,17,["G2532"]],[17,18,["G4314"]],[18,19,["G3956"]],[19,20,["G18"]],[20,21,["G2041"]],[21,22,["G96"]]]},{"k":29909,"v":[[0,1,["G1161"]],[1,2,["G2980"]],[2,3,["G4771"]],[3,6,["G3739"]],[6,7,["G4241"]],[7,8,["G5198"]],[8,9,["G1319"]]]},{"k":29910,"v":[[0,4,["G4246"]],[4,5,["G1511"]],[5,6,["G3524"]],[6,7,["G4586"]],[7,8,["G4998"]],[8,9,["G5198"]],[9,11,["G4102"]],[11,13,["G26"]],[13,15,["G5281"]]]},{"k":29911,"v":[[0,3,["G4247"]],[3,4,["G5615"]],[4,8,["G1722"]],[8,9,["G2688"]],[9,12,["G2412"]],[12,13,["G3361"]],[13,15,["G1228"]],[15,16,["G3361"]],[16,17,["G1402"]],[17,19,["G4183"]],[19,20,["G3631"]],[20,24,["G2567"]]]},{"k":29912,"v":[[0,1,["G2443"]],[1,10,["G4994","G3588","G3501"]],[10,11,["(G1511)"]],[11,14,["G5362"]],[14,18,["G5388"]]]},{"k":29913,"v":[[0,3,["G4998"]],[3,4,["G53"]],[4,7,["G3626"]],[7,8,["G18"]],[8,9,["G5293"]],[9,12,["G2398"]],[12,13,["G435"]],[13,14,["G2443"]],[14,15,["G3588"]],[15,16,["G3056"]],[16,18,["G2316"]],[18,20,["G3361"]],[20,21,["G987"]]]},{"k":29914,"v":[[0,2,["G3501"]],[2,3,["G5615"]],[3,4,["G3870"]],[4,8,["G4993"]]]},{"k":29915,"v":[[0,1,["G4012"]],[1,3,["G3956"]],[3,4,["G3930"]],[4,5,["G4572"]],[5,7,["G5179"]],[7,9,["G2570"]],[9,10,["G2041"]],[10,11,["G1722"]],[11,12,["G1319"]],[12,14,["G90"]],[14,15,["G4587"]],[15,16,["G861"]]]},{"k":29916,"v":[[0,1,["G5199"]],[1,2,["G3056"]],[2,6,["G176"]],[6,7,["G2443"]],[7,8,["G3588"]],[8,11,["G1537"]],[11,14,["G1727"]],[14,17,["G1788"]],[17,18,["G2192"]],[18,19,["G3367"]],[19,21,["G5337"]],[21,23,["G3004"]],[23,24,["G4012"]],[24,25,["G5216"]]]},{"k":29917,"v":[[0,2,["G1401"]],[2,5,["G5293"]],[5,8,["G2398"]],[8,9,["G1203"]],[9,10,["(G1511)"]],[10,14,["G2101"]],[14,15,["G1722"]],[15,16,["G3956"]],[16,18,["G3361"]],[18,20,["G483"]]]},{"k":29918,"v":[[0,1,["G3361"]],[1,2,["G3557"]],[2,3,["G235"]],[3,4,["G1731"]],[4,5,["G3956"]],[5,6,["G18"]],[6,7,["G4102"]],[7,8,["G2443"]],[8,11,["G2885"]],[11,12,["G3588"]],[12,13,["G1319"]],[13,15,["G2316"]],[15,16,["G2257"]],[16,17,["G4990"]],[17,18,["G1722"]],[18,20,["G3956"]]]},{"k":29919,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G5485"]],[3,5,["G2316"]],[5,8,["G4992"]],[8,10,["G2014"]],[10,12,["G3956"]],[12,13,["G444"]]]},{"k":29920,"v":[[0,1,["G3811"]],[1,2,["G2248"]],[2,3,["G2443"]],[3,4,["G720"]],[4,5,["G763"]],[5,6,["G2532"]],[6,7,["G2886"]],[7,8,["G1939"]],[8,11,["G2198"]],[11,13,["G4996","(G1346)"]],[13,14,["G2532"]],[14,15,["G2153"]],[15,16,["G1722"]],[16,18,["G3568"]],[18,19,["G165"]]]},{"k":29921,"v":[[0,2,["G4327"]],[2,4,["G3107"]],[4,5,["G1680"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G1391"]],[8,9,["G2015"]],[9,11,["G3588"]],[11,12,["G3173"]],[12,13,["G2316"]],[13,14,["G2532"]],[14,15,["G2257"]],[15,16,["G4990"]],[16,17,["G2424"]],[17,18,["G5547"]]]},{"k":29922,"v":[[0,1,["G3739"]],[1,2,["G1325"]],[2,3,["G1438"]],[3,4,["G5228"]],[4,5,["G2257"]],[5,6,["G2443"]],[6,9,["G3084"]],[9,10,["G2248"]],[10,11,["G575"]],[11,12,["G3956"]],[12,13,["G458"]],[13,14,["G2532"]],[14,15,["G2511"]],[15,17,["G1438"]],[17,19,["G4041"]],[19,20,["G2992"]],[20,21,["G2207"]],[21,23,["G2570"]],[23,24,["G2041"]]]},{"k":29923,"v":[[0,2,["G5023"]],[2,3,["G2980"]],[3,4,["G2532"]],[4,5,["G3870"]],[5,6,["G2532"]],[6,7,["G1651"]],[7,8,["G3326"]],[8,9,["G3956"]],[9,10,["G2003"]],[10,13,["G3367"]],[13,14,["G4065"]],[14,15,["G4675"]]]},{"k":29924,"v":[[0,4,["G5279","G846"]],[4,7,["G5293"]],[7,9,["G746"]],[9,10,["G2532"]],[10,11,["G1849"]],[11,14,["G3980"]],[14,16,["G1511"]],[16,17,["G2092"]],[17,18,["G4314"]],[18,19,["G3956"]],[19,20,["G18"]],[20,21,["G2041"]]]},{"k":29925,"v":[[0,3,["G987"]],[3,6,["G3367"]],[6,8,["G1511"]],[8,10,["G269"]],[10,12,["G1933"]],[12,13,["G1731"]],[13,14,["G3956"]],[14,15,["G4236"]],[15,16,["G4314"]],[16,17,["G3956"]],[17,18,["G444"]]]},{"k":29926,"v":[[0,1,["G1063"]],[1,2,["G2249"]],[2,4,["G2532"]],[4,5,["G2258"]],[5,6,["G4218"]],[6,7,["G453"]],[7,8,["G545"]],[8,9,["G4105"]],[9,10,["G1398"]],[10,11,["G4164"]],[11,12,["G1939"]],[12,13,["G2532"]],[13,14,["G2237"]],[14,15,["G1236"]],[15,16,["G1722"]],[16,17,["G2549"]],[17,18,["G2532"]],[18,19,["G5355"]],[19,20,["G4767"]],[20,22,["G3404"]],[22,24,["G240"]]]},{"k":29927,"v":[[0,1,["G1161"]],[1,2,["G3753"]],[2,4,["G3588"]],[4,5,["G5544"]],[5,6,["G2532"]],[6,13,["G5363","G2316","G2257","G4990"]],[13,14,["G2014"]]]},{"k":29928,"v":[[0,1,["G3756"]],[1,2,["G1537"]],[2,3,["G2041"]],[3,4,["G1722"]],[4,5,["G1343"]],[5,6,["G3739"]],[6,7,["G2249"]],[7,9,["G4160"]],[9,10,["G235"]],[10,11,["G2596"]],[11,13,["G848"]],[13,14,["G1656"]],[14,16,["G4982"]],[16,17,["G2248"]],[17,18,["G1223"]],[18,20,["G3067"]],[20,22,["G3824"]],[22,23,["G2532"]],[23,24,["G342"]],[24,27,["G40"]],[27,28,["G4151"]]]},{"k":29929,"v":[[0,1,["G3739"]],[1,3,["G1632"]],[3,4,["G1909"]],[4,5,["G2248"]],[5,6,["G4146"]],[6,7,["G1223"]],[7,8,["G2424"]],[8,9,["G5547"]],[9,10,["G2257"]],[10,11,["G4990"]]]},{"k":29930,"v":[[0,1,["G2443"]],[1,3,["G1344"]],[3,5,["G1565"]],[5,6,["G5485"]],[6,10,["G1096"]],[10,11,["G2818"]],[11,12,["G2596"]],[12,15,["G1680"]],[15,17,["G166"]],[17,18,["G2222"]]]},{"k":29931,"v":[[0,4,["G4103"]],[4,5,["G3056"]],[5,6,["G2532"]],[6,8,["(G5130)"]],[8,10,["G1014"]],[10,12,["G4571"]],[12,14,["G1226"]],[14,15,["G2443"]],[15,19,["G4100"]],[19,21,["G2316"]],[21,24,["G5431"]],[24,26,["G4291"]],[26,27,["G2570"]],[27,28,["G2041"]],[28,30,["G5023"]],[30,31,["G2076"]],[31,32,["G2570"]],[32,33,["G2532"]],[33,34,["G5624"]],[34,36,["G444"]]]},{"k":29932,"v":[[0,1,["G1161"]],[1,2,["G4026"]],[2,3,["G3474"]],[3,4,["G2214"]],[4,5,["G2532"]],[5,6,["G1076"]],[6,7,["G2532"]],[7,8,["G2054"]],[8,9,["G2532"]],[9,10,["G3163"]],[10,13,["G3544"]],[13,14,["G1063"]],[14,16,["G1526"]],[16,17,["G512"]],[17,18,["G2532"]],[18,19,["G3152"]]]},{"k":29933,"v":[[0,2,["G444"]],[2,6,["G141"]],[6,7,["G3326"]],[7,9,["G3391"]],[9,10,["G2532"]],[10,11,["G1208"]],[11,12,["G3559"]],[12,13,["G3868"]]]},{"k":29934,"v":[[0,1,["G1492"]],[1,2,["G3754"]],[2,6,["G5108"]],[6,8,["G1612"]],[8,9,["G2532"]],[9,10,["G264"]],[10,11,["G5607"]],[11,14,["G843"]]]},{"k":29935,"v":[[0,1,["G3752"]],[1,4,["G3992"]],[4,5,["G734"]],[5,6,["G4314"]],[6,7,["G4571"]],[7,8,["G2228"]],[8,9,["G5190"]],[9,11,["G4704"]],[11,13,["G2064"]],[13,14,["G4314"]],[14,15,["G3165"]],[15,16,["G1519"]],[16,17,["G3533"]],[17,18,["G1063"]],[18,21,["G2919"]],[21,22,["G1563"]],[22,24,["G3914"]]]},{"k":29936,"v":[[0,9,["G4311","G2211","G3588","G3544","G2532","G625"]],[9,10,["G4709"]],[10,11,["G2443"]],[11,12,["G3367"]],[12,14,["G3007"]],[14,16,["G846"]]]},{"k":29937,"v":[[0,1,["G1161"]],[1,3,["G2251"]],[3,4,["G2532"]],[4,5,["G3129"]],[5,7,["G4291"]],[7,8,["G2570"]],[8,9,["G2041"]],[9,10,["G1519"]],[10,11,["G316"]],[11,12,["G5532"]],[12,13,["G2443"]],[13,15,["G5600"]],[15,16,["G3361"]],[16,17,["G175"]]]},{"k":29938,"v":[[0,1,["G3956"]],[1,2,["G3588"]],[2,4,["G3326"]],[4,5,["G1700"]],[5,6,["G782"]],[6,7,["G4571"]],[7,8,["G782"]],[8,11,["G5368"]],[11,12,["G2248"]],[12,13,["G1722"]],[13,15,["G4102"]],[15,16,["G5485"]],[16,18,["G3326"]],[18,19,["G5216"]],[19,20,["G3956"]],[20,21,["G281"]]]},{"k":29939,"v":[[0,1,["G3972"]],[1,3,["G1198"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,7,["G2532"]],[7,8,["G5095"]],[8,10,["G80"]],[10,12,["G5371"]],[12,15,["G27"]],[15,16,["G2532"]],[16,17,["G4904"]]]},{"k":29940,"v":[[0,1,["G2532"]],[1,4,["G27"]],[4,5,["G682"]],[5,6,["G2532"]],[6,7,["G751"]],[7,8,["G2257"]],[8,9,["G4961"]],[9,10,["G2532"]],[10,12,["G3588"]],[12,13,["G1577"]],[13,14,["G2596"]],[14,15,["G4675"]],[15,16,["G3624"]]]},{"k":29941,"v":[[0,1,["G5485"]],[1,3,["G5213"]],[3,4,["G2532"]],[4,5,["G1515"]],[5,6,["G575"]],[6,7,["G2316"]],[7,8,["G2257"]],[8,9,["G3962"]],[9,10,["G2532"]],[10,12,["G2962"]],[12,13,["G2424"]],[13,14,["G5547"]]]},{"k":29942,"v":[[0,2,["G2168"]],[2,3,["G3450"]],[3,4,["G2316"]],[4,5,["G4160"]],[5,6,["G3417"]],[6,8,["G4675"]],[8,9,["G3842"]],[9,10,["G1909"]],[10,11,["G3450"]],[11,12,["G4335"]]]},{"k":29943,"v":[[0,1,["G191"]],[1,3,["G4675"]],[3,4,["G26"]],[4,5,["G2532"]],[5,6,["G4102"]],[6,7,["G3739"]],[7,9,["G2192"]],[9,10,["G4314"]],[10,11,["G3588"]],[11,12,["G2962"]],[12,13,["G2424"]],[13,14,["G2532"]],[14,15,["G1519"]],[15,16,["G3956"]],[16,17,["G40"]]]},{"k":29944,"v":[[0,1,["G3704"]],[1,2,["G3588"]],[2,3,["G2842"]],[3,5,["G4675"]],[5,6,["G4102"]],[6,8,["G1096"]],[8,9,["G1756"]],[9,10,["G1722"]],[10,12,["G1922"]],[12,14,["G3956"]],[14,16,["G18"]],[16,17,["G3588"]],[17,19,["G1722"]],[19,20,["G5213"]],[20,21,["G1519"]],[21,22,["G5547"]],[22,23,["G2424"]]]},{"k":29945,"v":[[0,1,["G1063"]],[1,3,["G2192"]],[3,4,["G4183"]],[4,5,["G5485"]],[5,6,["G2532"]],[6,7,["G3874"]],[7,8,["G1909"]],[8,9,["G4675"]],[9,10,["G26"]],[10,11,["G3754"]],[11,12,["G3588"]],[12,13,["G4698"]],[13,15,["G3588"]],[15,16,["G40"]],[16,18,["G373"]],[18,19,["G1223"]],[19,20,["G4675"]],[20,21,["G80"]]]},{"k":29946,"v":[[0,1,["G1352"]],[1,5,["G2192"]],[5,6,["G4183"]],[6,7,["G3954"]],[7,8,["G1722"]],[8,9,["G5547"]],[9,11,["G2004"]],[11,12,["G4671"]],[12,16,["G433"]]]},{"k":29947,"v":[[0,4,["G1223","G26"]],[4,6,["G3123"]],[6,7,["G3870"]],[7,9,["G5607"]],[9,12,["G5108"]],[12,13,["G5613"]],[13,14,["G3972"]],[14,16,["G4246"]],[16,17,["G1161"]],[17,18,["G3570"]],[18,19,["G2532"]],[19,21,["G1198"]],[21,23,["G2424"]],[23,24,["G5547"]]]},{"k":29948,"v":[[0,2,["G3870"]],[2,3,["G4571"]],[3,4,["G4012"]],[4,5,["G1699"]],[5,6,["G5043"]],[6,7,["G3682"]],[7,8,["G3739"]],[8,11,["G1080"]],[11,12,["G1722"]],[12,13,["G3450"]],[13,14,["G1199"]]]},{"k":29949,"v":[[0,1,["G3588"]],[1,4,["G4218"]],[4,7,["G4671"]],[7,8,["G890"]],[8,9,["G1161"]],[9,10,["G3570"]],[10,11,["G2173"]],[11,13,["G4671"]],[13,14,["G2532"]],[14,16,["G1698"]]]},{"k":29950,"v":[[0,1,["G3739"]],[1,5,["G375"]],[5,6,["G4771"]],[6,7,["G1161"]],[7,8,["G4355"]],[8,9,["G846"]],[9,11,["G5123"]],[11,13,["G1699"]],[13,14,["G4698"]]]},{"k":29951,"v":[[0,1,["G3739"]],[1,2,["G1473"]],[2,3,["G1014"]],[3,5,["G2722"]],[5,6,["G4314"]],[6,7,["G1683"]],[7,8,["G2443"]],[8,11,["G5228","G4675"]],[11,16,["G1247"]],[16,17,["G3427"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,20,["G1199"]],[20,22,["G3588"]],[22,23,["G2098"]]]},{"k":29952,"v":[[0,1,["G1161"]],[1,2,["G5565"]],[2,3,["G4674"]],[3,4,["G1106"]],[4,5,["G2309"]],[5,7,["G4160"]],[7,8,["G3762"]],[8,9,["G2443"]],[9,10,["G4675"]],[10,11,["G18"]],[11,13,["G3361"]],[13,14,["G5600"]],[14,17,["G5613"]],[17,18,["G2596"]],[18,19,["G318"]],[19,20,["G235"]],[20,21,["G2596","G1595"]]]},{"k":29953,"v":[[0,1,["G1063"]],[1,2,["G5029"]],[2,4,["G1223","G5124"]],[4,5,["G5563"]],[5,6,["G4314"]],[6,8,["G5610"]],[8,9,["G2443"]],[9,12,["G568"]],[12,13,["G846"]],[13,15,["G166"]]]},{"k":29954,"v":[[0,2,["G3765"]],[2,3,["G5613"]],[3,5,["G1401"]],[5,6,["G235"]],[6,7,["G5228"]],[7,9,["G1401"]],[9,11,["G80"]],[11,12,["G27"]],[12,13,["G3122"]],[13,15,["G1698"]],[15,16,["G1161"]],[16,18,["G4214"]],[18,19,["G3123"]],[19,21,["G4671"]],[21,22,["G2532"]],[22,23,["G1722"]],[23,25,["G4561"]],[25,26,["G2532"]],[26,27,["G1722"]],[27,29,["G2962"]]]},{"k":29955,"v":[[0,1,["G1487"]],[1,3,["G2192"]],[3,4,["G1691"]],[4,5,["G3767"]],[5,7,["G2844"]],[7,8,["G4355"]],[8,9,["G846"]],[9,10,["G5613"]],[10,11,["G1691"]]]},{"k":29956,"v":[[0,0,["(G1161)"]],[0,1,["G1487"]],[1,4,["G91"]],[4,5,["G4571"]],[5,6,["G2228"]],[6,7,["G3784"]],[7,9,["G5100"]],[9,14,["G1677","G5124","G1698"]]]},{"k":29957,"v":[[0,1,["G1473"]],[1,2,["G3972"]],[2,4,["G1125"]],[4,8,["G1699"]],[8,9,["G5495"]],[9,10,["G1473"]],[10,12,["G661"]],[12,14,["G2443"]],[14,17,["G3361"]],[17,18,["G3004"]],[18,20,["G4671"]],[20,21,["G3754"]],[21,23,["G4359"]],[23,25,["G3427"]],[25,26,["G2532"]],[26,29,["G4572"]],[29,30,[]]]},{"k":29958,"v":[[0,1,["G3483"]],[1,2,["G80"]],[2,4,["G1473"]],[4,6,["G3685"]],[6,8,["G4675"]],[8,9,["G1722"]],[9,11,["G2962"]],[11,12,["G373"]],[12,13,["G3450"]],[13,14,["G4698"]],[14,15,["G1722"]],[15,17,["G2962"]]]},{"k":29959,"v":[[0,2,["G3982"]],[2,4,["G4675"]],[4,5,["G5218"]],[5,7,["G1125"]],[7,9,["G4671"]],[9,10,["G1492"]],[10,11,["G3754"]],[11,14,["G2532"]],[14,15,["G4160"]],[15,17,["G5228","G3739"]],[17,19,["G3004"]]]},{"k":29960,"v":[[0,1,["G1161"]],[1,2,["G260"]],[2,3,["G2090"]],[3,4,["G3427"]],[4,5,["G2532"]],[5,7,["G3578"]],[7,8,["G1063"]],[8,10,["G1679"]],[10,11,["G3754"]],[11,12,["G1223"]],[12,13,["G5216"]],[13,14,["G4335"]],[14,18,["G5483"]],[18,20,["G5213"]]]},{"k":29961,"v":[[0,2,["G782"]],[2,3,["G4571"]],[3,4,["G1889"]],[4,5,["G3450"]],[5,6,["G4869"]],[6,7,["G1722"]],[7,8,["G5547"]],[8,9,["G2424"]]]},{"k":29962,"v":[[0,1,["G3138"]],[1,2,["G708"]],[2,3,["G1214"]],[3,4,["G3065"]],[4,5,["G3450"]],[5,6,["G4904"]]]},{"k":29963,"v":[[0,1,["G3588"]],[1,2,["G5485"]],[2,4,["G2257"]],[4,5,["G2962"]],[5,6,["G2424"]],[6,7,["G5547"]],[7,9,["G3326"]],[9,10,["G5216"]],[10,11,["G4151"]],[11,12,["G281"]]]},{"k":29964,"v":[[0,1,["G2316"]],[1,5,["G4181"]],[5,6,["G2532"]],[6,9,["G4187"]],[9,10,["G2980"]],[10,13,["G3819"]],[13,15,["G3588"]],[15,16,["G3962"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G4396"]]]},{"k":29965,"v":[[0,2,["G1909"]],[2,3,["G5130"]],[3,4,["G2078"]],[4,5,["G2250"]],[5,6,["G2980"]],[6,8,["G2254"]],[8,9,["G1722"]],[9,11,["G5207"]],[11,12,["G3739"]],[12,15,["G5087"]],[15,16,["G2818"]],[16,19,["G3956"]],[19,20,["G1223"]],[20,21,["G3739"]],[21,22,["G2532"]],[22,24,["G4160"]],[24,25,["G3588"]],[25,26,["G165"]]]},{"k":29966,"v":[[0,1,["G3739"]],[1,2,["G5607"]],[2,4,["G541"]],[4,7,["G1391"]],[7,8,["G2532"]],[8,11,["G5481"]],[11,13,["G848"]],[13,14,["G5287"]],[14,15,["G5037"]],[15,16,["G5342"]],[16,18,["G3956"]],[18,20,["G3588"]],[20,21,["G4487"]],[21,23,["G846"]],[23,24,["G1411"]],[24,28,["G1223"]],[28,29,["G1438"]],[29,30,["G4160","G2512"]],[30,31,["G2257"]],[31,32,["G266"]],[32,34,["G2523"]],[34,35,["G1722"]],[35,38,["G1188"]],[38,40,["G3588"]],[40,41,["G3172"]],[41,42,["G1722"]],[42,43,["G5308"]]]},{"k":29967,"v":[[0,2,["G1096"]],[2,4,["G5118"]],[4,5,["G2909"]],[5,7,["G3588"]],[7,8,["G32"]],[8,9,["G3745"]],[9,14,["G2816"]],[14,17,["G1313"]],[17,18,["G3686"]],[18,19,["G3844"]],[19,20,["G846"]]]},{"k":29968,"v":[[0,1,["G1063"]],[1,3,["G5101"]],[3,5,["G3588"]],[5,6,["G32"]],[6,7,["G2036"]],[7,11,["G4218"]],[11,12,["G4771"]],[12,13,["G1488"]],[13,14,["G3450"]],[14,15,["G5207"]],[15,17,["G4594"]],[17,19,["G1473"]],[19,20,["G1080"]],[20,21,["G4571"]],[21,22,["G2532"]],[22,23,["G3825"]],[23,24,["G1473"]],[24,26,["G2071"]],[26,28,["G846"]],[28,29,["(G1519)"]],[29,30,["G3962"]],[30,31,["G2532"]],[31,32,["G846"]],[32,34,["G2071"]],[34,36,["G3427"]],[36,37,["(G1519)"]],[37,38,["G5207"]]]},{"k":29969,"v":[[0,1,["G1161"]],[1,2,["G3825"]],[2,3,["G3752"]],[3,6,["G1521"]],[6,7,["G3588"]],[7,8,["G4416"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G3625"]],[11,13,["G3004"]],[13,14,["G2532"]],[14,16,["G3956"]],[16,18,["G32"]],[18,20,["G2316"]],[20,21,["G4352"]],[21,22,["G846"]]]},{"k":29970,"v":[[0,1,["G2532"]],[1,4,["G4314","(G3588)","G32"]],[4,6,["G3004"]],[6,8,["G4160"]],[8,9,["G848"]],[9,10,["G32"]],[10,11,["G4151"]],[11,12,["G2532"]],[12,13,["G848"]],[13,14,["G3011"]],[14,16,["G5395"]],[16,18,["G4442"]]]},{"k":29971,"v":[[0,1,["G1161"]],[1,2,["G4314"]],[2,3,["G3588"]],[3,4,["G5207"]],[4,7,["G4675"]],[7,8,["G2362"]],[8,10,["G2316"]],[10,15,["G1519","G165","G165"]],[15,17,["G4464"]],[17,19,["G2118"]],[19,21,["G3588"]],[21,22,["G4464"]],[22,24,["G4675"]],[24,25,["G932"]]]},{"k":29972,"v":[[0,3,["G25"]],[3,4,["G1343"]],[4,5,["G2532"]],[5,6,["G3404"]],[6,7,["G458"]],[7,8,["G1223","G5124"]],[8,9,["G2316"]],[9,11,["G4675"]],[11,12,["G2316"]],[12,14,["G5548"]],[14,15,["G4571"]],[15,18,["G1637"]],[18,20,["G20"]],[20,21,["G3844"]],[21,22,["G4675"]],[22,23,["G3353"]]]},{"k":29973,"v":[[0,1,["G2532"]],[1,2,["G4771"]],[2,3,["G2962"]],[3,4,["G2596"]],[4,6,["G746"]],[6,10,["G2311"]],[10,12,["G3588"]],[12,13,["G1093"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G3772"]],[16,17,["G1526"]],[17,19,["G2041"]],[19,21,["G4675"]],[21,22,["G5495"]]]},{"k":29974,"v":[[0,1,["G846"]],[1,3,["G622"]],[3,4,["G1161"]],[4,5,["G4771"]],[5,6,["G1265"]],[6,7,["G2532"]],[7,9,["G3956"]],[9,12,["G3822"]],[12,13,["G5613"]],[13,16,["G2440"]]]},{"k":29975,"v":[[0,1,["G2532"]],[1,2,["G5616"]],[2,4,["G4018"]],[4,9,["G1667","G846"]],[9,10,["G2532"]],[10,14,["G236"]],[14,15,["G1161"]],[15,16,["G4771"]],[16,17,["G1488"]],[17,18,["G3588"]],[18,19,["G846"]],[19,20,["G2532"]],[20,21,["G4675"]],[21,22,["G2094"]],[22,24,["G3756"]],[24,25,["G1587"]]]},{"k":29976,"v":[[0,1,["G1161"]],[1,2,["G4314"]],[2,3,["G5101"]],[3,5,["G3588"]],[5,6,["G32"]],[6,7,["G2046"]],[7,11,["G4218"]],[11,12,["G2521"]],[12,13,["G1537"]],[13,14,["G3450"]],[14,16,["G1188"]],[16,17,["G2193","G302"]],[17,19,["G5087"]],[19,20,["G4675"]],[20,21,["G2190"]],[21,23,["G5286","G4675","G4228"]]]},{"k":29977,"v":[[0,1,["G1526"]],[1,3,["G3780"]],[3,4,["G3956"]],[4,5,["G3010"]],[5,6,["G4151"]],[6,8,["G649"]],[8,10,["G1519","G1248"]],[10,11,["G1223"]],[11,15,["G3195"]],[15,16,["G2816"]],[16,18,["G4991"]]]},{"k":29978,"v":[[0,1,["G1223","G5124"]],[1,2,["G2248"]],[2,3,["G1163"]],[3,9,["G4337","G4056"]],[9,16,["G191"]],[16,20,["G3379"]],[20,25,["G3901"]]]},{"k":29979,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G3056"]],[4,5,["G2980"]],[5,6,["G1223"]],[6,7,["G32"]],[7,8,["G1096"]],[8,9,["G949"]],[9,10,["G2532"]],[10,11,["G3956"]],[11,12,["G3847"]],[12,13,["G2532"]],[13,14,["G3876"]],[14,15,["G2983"]],[15,17,["G1738"]],[17,20,["G3405"]]]},{"k":29980,"v":[[0,1,["G4459"]],[1,3,["G2249"]],[3,4,["G1628"]],[4,7,["G272"]],[7,9,["G5082"]],[9,10,["G4991"]],[10,11,["G3748"]],[11,15,["G2983","G746"]],[15,18,["G2980"]],[18,19,["G1223"]],[19,20,["G3588"]],[20,21,["G2962"]],[21,22,["G2532"]],[22,24,["G950"]],[24,25,["G1519"]],[25,26,["G2248"]],[26,27,["G5259"]],[27,30,["G191"]],[30,31,[]]]},{"k":29981,"v":[[0,1,["G2316"]],[1,5,["G4901"]],[5,6,["G5037"]],[6,8,["G4592"]],[8,9,["G2532"]],[9,10,["G5059"]],[10,11,["G2532"]],[11,13,["G4164"]],[13,14,["G1411"]],[14,15,["G2532"]],[15,16,["G3311"]],[16,19,["G40"]],[19,20,["G4151"]],[20,21,["G2596"]],[21,24,["G848"]],[24,25,["G2308"]]]},{"k":29982,"v":[[0,1,["G1063"]],[1,4,["G32"]],[4,7,["G3756"]],[7,10,["G5293"]],[10,11,["G3588"]],[11,12,["G3625"]],[12,14,["G3195"]],[14,15,["G4012","G3739"]],[15,17,["G2980"]]]},{"k":29983,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,6,["G4225"]],[6,7,["G1263"]],[7,8,["G3004"]],[8,9,["G5101"]],[9,10,["G2076"]],[10,11,["G444"]],[11,12,["G3754"]],[12,15,["G3403"]],[15,17,["G846"]],[17,18,["G2228"]],[18,20,["G5207"]],[20,22,["G444"]],[22,23,["G3754"]],[23,25,["G1980"]],[25,26,["G846"]]]},{"k":29984,"v":[[0,2,["G1642"]],[2,3,["G846"]],[3,6,["G5100","G1024"]],[6,7,["G3844"]],[7,9,["G32"]],[9,11,["G4737"]],[11,12,["G846"]],[12,14,["G1391"]],[14,15,["G2532"]],[15,16,["G5092"]],[16,17,["G2532"]],[17,19,["G2525"]],[19,20,["G846"]],[20,21,["G1909"]],[21,22,["G3588"]],[22,23,["G2041"]],[23,25,["G4675"]],[25,26,["G5495"]]]},{"k":29985,"v":[[0,7,["G5293","G3956"]],[7,8,["G5270"]],[8,9,["G846"]],[9,10,["G4228"]],[10,11,["G1063"]],[11,19,["G5293","G3956"]],[19,20,["G846"]],[20,22,["G863"]],[22,23,["G3762"]],[23,28,["G506"]],[28,29,["G846"]],[29,30,["G1161"]],[30,31,["G3568"]],[31,33,["G3708"]],[33,35,["G3768"]],[35,37,["G3956"]],[37,39,["G5293"]],[39,40,["G846"]]]},{"k":29986,"v":[[0,1,["G1161"]],[1,3,["G991"]],[3,4,["G2424"]],[4,10,["G1642","G1024","G5100"]],[10,11,["G3844"]],[11,13,["G32"]],[13,14,["G1223"]],[14,15,["G3588"]],[15,16,["G3804"]],[16,18,["G2288"]],[18,19,["G4737"]],[19,21,["G1391"]],[21,22,["G2532"]],[22,23,["G5092"]],[23,24,["G3704"]],[24,28,["G5485"]],[28,30,["G2316"]],[30,32,["G1089"]],[32,33,["G2288"]],[33,34,["G5228"]],[34,36,["G3956"]]]},{"k":29987,"v":[[0,1,["G1063"]],[1,3,["G4241"]],[3,4,["G846"]],[4,5,["G1223"]],[5,6,["G3739"]],[6,9,["G3956"]],[9,10,["G2532"]],[10,11,["G1223"]],[11,12,["G3739"]],[12,15,["G3956"]],[15,17,["G71"]],[17,18,["G4183"]],[18,19,["G5207"]],[19,20,["G1519"]],[20,21,["G1391"]],[21,29,["G5048","G3588","G747","G846","G4991"]],[29,30,["G1223"]],[30,31,["G3804"]]]},{"k":29988,"v":[[0,1,["G1063"]],[1,2,["G5037"]],[2,5,["G37"]],[5,6,["G2532"]],[6,10,["G37"]],[10,12,["G3956"]],[12,13,["G1537"]],[13,14,["G1520"]],[14,15,["G1223"]],[15,16,["G3739"]],[16,17,["G156"]],[17,20,["G3756"]],[20,21,["G1870"]],[21,23,["G2564"]],[23,24,["G846"]],[24,25,["G80"]]]},{"k":29989,"v":[[0,1,["G3004"]],[1,4,["G518"]],[4,5,["G4675"]],[5,6,["G3686"]],[6,8,["G3450"]],[8,9,["G80"]],[9,10,["G1722"]],[10,12,["G3319"]],[12,15,["G1577"]],[15,19,["G5214"]],[19,21,["G4571"]]]},{"k":29990,"v":[[0,1,["G2532"]],[1,2,["G3825"]],[2,3,["G1473"]],[3,7,["G2071","G3982"]],[7,8,["G1909"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G3825"]],[11,12,["G2400"]],[12,13,["G1473"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G3813"]],[16,17,["G3739"]],[17,18,["G2316"]],[18,20,["G1325"]],[20,21,["G3427"]]]},{"k":29991,"v":[[0,1,["G1893"]],[1,2,["G3767"]],[2,4,["G3588"]],[4,5,["G3813"]],[5,7,["G2841"]],[7,9,["G4561"]],[9,10,["G2532"]],[10,11,["G129"]],[11,12,["G846"]],[12,13,["G2532"]],[13,15,["G3898"]],[15,17,["G3348"]],[17,19,["G3588"]],[19,20,["G846"]],[20,21,["G2443"]],[21,22,["G1223"]],[22,23,["G2288"]],[23,26,["G2673"]],[26,29,["G2192"]],[29,30,["G3588"]],[30,31,["G2904"]],[31,33,["G2288"]],[33,35,["G5123"]],[35,36,["G3588"]],[36,37,["G1228"]]]},{"k":29992,"v":[[0,1,["G2532"]],[1,2,["G525"]],[2,3,["G5128"]],[3,4,["G3745"]],[4,6,["G5401"]],[6,8,["G2288"]],[8,9,["G2258"]],[9,10,["G3956"]],[10,11,["(G1223)"]],[11,12,["G2198"]],[12,14,["G1777"]],[14,15,["G1397"]]]},{"k":29993,"v":[[0,1,["G1063"]],[1,2,["G1222"]],[2,6,["G1949","G3756"]],[6,11,["G32"]],[11,12,["G235"]],[12,15,["G1949"]],[15,18,["G4690"]],[18,20,["G11"]]]},{"k":29994,"v":[[0,1,["G3606"]],[1,2,["G2596"]],[2,4,["G3956"]],[4,6,["G3784"]],[6,12,["G3666"]],[12,14,["G80"]],[14,15,["G2443"]],[15,18,["G1096"]],[18,20,["G1655"]],[20,21,["G2532"]],[21,22,["G4103"]],[22,24,["G749"]],[24,26,["G4314"]],[26,29,["G2316"]],[29,33,["G2433"]],[33,34,["G3588"]],[34,35,["G266"]],[35,37,["G3588"]],[37,38,["G2992"]]]},{"k":29995,"v":[[0,1,["G1063"]],[1,2,["G1722"]],[2,3,["G3739"]],[3,4,["G846"]],[4,7,["G3958"]],[7,9,["G3985"]],[9,12,["G1410"]],[12,14,["G997"]],[14,18,["G3985"]]]},{"k":29996,"v":[[0,1,["G3606"]],[1,2,["G40"]],[2,3,["G80"]],[3,4,["G3353"]],[4,7,["G2032"]],[7,8,["G2821"]],[8,9,["G2657"]],[9,10,["G3588"]],[10,11,["G652"]],[11,12,["G2532"]],[12,14,["G749"]],[14,16,["G2257"]],[16,17,["G3671"]],[17,18,["G5547"]],[18,19,["G2424"]]]},{"k":29997,"v":[[0,2,["G5607"]],[2,3,["G4103"]],[3,7,["G4160"]],[7,8,["G846"]],[8,9,["G5613"]],[9,10,["G2532"]],[10,11,["G3475"]],[11,14,["G1722"]],[14,15,["G3650"]],[15,16,["G846"]],[16,17,["G3624"]]]},{"k":29998,"v":[[0,1,["G1063"]],[1,2,["G3778"]],[2,6,["G515"]],[6,8,["G4119"]],[8,9,["G1391"]],[9,10,["G3844"]],[10,11,["G3475"]],[11,12,["G2596","G3745"]],[12,17,["G2680"]],[17,19,["(G846)"]],[19,20,["G2192"]],[20,21,["G4119"]],[21,22,["G5092"]],[22,24,["G3588"]],[24,25,["G3624"]]]},{"k":29999,"v":[[0,1,["G1063"]],[1,2,["G3956"]],[2,3,["G3624"]],[3,5,["G2680"]],[5,6,["G5259"]],[6,7,["G5100"]],[7,9,["G1161"]],[9,12,["G2680"]],[12,14,["G3956"]],[14,16,["G2316"]]]},{"k":30000,"v":[[0,1,["G2532"]],[1,2,["G3475"]],[2,3,["G3303"]],[3,5,["G4103"]],[5,6,["G1722"]],[6,7,["G3650"]],[7,8,["G846"]],[8,9,["G3624"]],[9,10,["G5613"]],[10,12,["G2324"]],[12,13,["G1519"]],[13,15,["G3142"]],[15,24,["G2980"]]]},{"k":30001,"v":[[0,1,["G1161"]],[1,2,["G5547"]],[2,3,["G5613"]],[3,5,["G5207"]],[5,6,["G1909"]],[6,8,["G848"]],[8,9,["G3624"]],[9,10,["G3739"]],[10,11,["G3624"]],[11,12,["G2070"]],[12,13,["G2249"]],[13,14,["G1437","G4007"]],[14,17,["G2722"]],[17,18,["G3588"]],[18,19,["G3954"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G2745"]],[22,24,["G3588"]],[24,25,["G1680"]],[25,26,["G949"]],[26,27,["G3360"]],[27,29,["G5056"]]]},{"k":30002,"v":[[0,1,["G1352"]],[1,2,["G2531"]],[2,3,["G3588"]],[3,4,["G40"]],[4,5,["G4151"]],[5,6,["G3004"]],[6,8,["G4594"]],[8,9,["G1437"]],[9,12,["G191"]],[12,13,["G846"]],[13,14,["G5456"]]]},{"k":30003,"v":[[0,1,["G4645"]],[1,2,["G3361"]],[2,3,["G5216"]],[3,4,["G2588"]],[4,5,["G5613"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G3894"]],[8,9,["G2596"]],[9,10,["G3588"]],[10,11,["G2250"]],[11,13,["G3986"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G2048"]]]},{"k":30004,"v":[[0,1,["G3757"]],[1,2,["G5216"]],[2,3,["G3962"]],[3,4,["G3985"]],[4,5,["G3165"]],[5,6,["G1381"]],[6,7,["G3165"]],[7,8,["G2532"]],[8,9,["G1492"]],[9,10,["G3450"]],[10,11,["G2041"]],[11,12,["G5062"]],[12,13,["G2094"]]]},{"k":30005,"v":[[0,1,["G1352"]],[1,4,["G4360"]],[4,6,["G1565"]],[6,7,["G1074"]],[7,8,["G2532"]],[8,9,["G2036"]],[9,12,["G104"]],[12,13,["G4105"]],[13,16,["G2588"]],[16,17,["G1161"]],[17,18,["G846"]],[18,20,["G3756"]],[20,21,["G1097"]],[21,22,["G3450"]],[22,23,["G3598"]]]},{"k":30006,"v":[[0,1,["G5613"]],[1,3,["G3660"]],[3,4,["G1722"]],[4,5,["G3450"]],[5,6,["G3709"]],[6,7,["(G1487)"]],[7,10,["G1525"]],[10,11,["G1519"]],[11,12,["G3450"]],[12,13,["G2663"]]]},{"k":30007,"v":[[0,2,["G991"]],[2,3,["G80"]],[3,4,["G3379"]],[4,6,["G2071"]],[6,7,["G1722"]],[7,8,["G5100"]],[8,10,["G5216"]],[10,12,["G4190"]],[12,13,["G2588"]],[13,15,["G570"]],[15,17,["G868"]],[17,18,["G575"]],[18,20,["G2198"]],[20,21,["G2316"]]]},{"k":30008,"v":[[0,1,["G235"]],[1,2,["G3870"]],[2,4,["G1438"]],[4,5,["G2596","G1538","G2250"]],[5,6,["G891","G3757"]],[6,7,["G3588"]],[7,9,["G2564"]],[9,11,["G4594"]],[11,12,["G3363"]],[12,13,["G5100"]],[13,14,["G1537"]],[14,15,["G5216"]],[15,17,["G4645"]],[17,20,["G539"]],[20,22,["G266"]]]},{"k":30009,"v":[[0,1,["G1063"]],[1,4,["G1096"]],[4,5,["G3353"]],[5,7,["G5547"]],[7,8,["G1437","G4007"]],[8,10,["G2722"]],[10,11,["G3588"]],[11,12,["G746"]],[12,15,["G5287"]],[15,16,["G949"]],[16,17,["G3360"]],[17,19,["G5056"]]]},{"k":30010,"v":[[0,4,["G3004"]],[4,6,["G4594"]],[6,7,["G1437"]],[7,10,["G191"]],[10,11,["G846"]],[11,12,["G5456"]],[12,13,["G4645"]],[13,14,["G3361"]],[14,15,["G5216"]],[15,16,["G2588"]],[16,17,["G5613"]],[17,18,["G1722"]],[18,19,["G3588"]],[19,20,["G3894"]]]},{"k":30011,"v":[[0,1,["G1063"]],[1,2,["G5100"]],[2,6,["G191"]],[6,8,["G3893"]],[8,9,["G235"]],[9,10,["G3756"]],[10,11,["G3956"]],[11,13,["G1831"]],[13,15,["G1537"]],[15,16,["G125"]],[16,17,["G1223"]],[17,18,["G3475"]]]},{"k":30012,"v":[[0,1,["G1161"]],[1,3,["G5101"]],[3,6,["G4360"]],[6,7,["G5062"]],[7,8,["G2094"]],[8,11,["G3780"]],[11,16,["G264"]],[16,17,["G3739"]],[17,18,["G2966"]],[18,19,["G4098"]],[19,20,["G1722"]],[20,21,["G3588"]],[21,22,["G2048"]]]},{"k":30013,"v":[[0,1,["G1161"]],[1,3,["G5101"]],[3,4,["G3660"]],[4,9,["G3361"]],[9,10,["G1525"]],[10,11,["G1519"]],[11,12,["G848"]],[12,13,["G2663"]],[13,14,["G1508"]],[14,19,["G544"]]]},{"k":30014,"v":[[0,1,["G2532"]],[1,3,["G991"]],[3,4,["G3754"]],[4,6,["G1410"]],[6,7,["G3756"]],[7,9,["G1525"]],[9,10,["G1223"]],[10,12,["G570"]]]},{"k":30015,"v":[[0,3,["G3767"]],[3,4,["G5399"]],[4,5,["G3379"]],[5,7,["G1860"]],[7,9,["G2641"]],[9,12,["G1525"]],[12,13,["G1519"]],[13,14,["G846"]],[14,15,["G2663"]],[15,16,["G5100"]],[16,17,["G1537"]],[17,18,["G5216"]],[18,20,["G1380"]],[20,23,["G5302"]],[23,25,[]]]},{"k":30016,"v":[[0,1,["G1063"]],[1,3,["(G2532)"]],[3,7,["G2070","G2097"]],[7,10,["G2509"]],[10,12,["G2548"]],[12,13,["G235"]],[13,14,["G3588"]],[14,15,["G3056"]],[15,16,["G189"]],[16,18,["G3756"]],[18,19,["G5623"]],[19,20,["G1565"]],[20,21,["G3361"]],[21,24,["G4786"]],[24,25,["G4102"]],[25,29,["G191"]],[29,30,[]]]},{"k":30017,"v":[[0,1,["G1063"]],[1,5,["G4100"]],[5,7,["G1525"]],[7,8,["G1519"]],[8,9,["G2663"]],[9,10,["G2531"]],[10,12,["G2046"]],[12,13,["G5613"]],[13,16,["G3660"]],[16,17,["G1722"]],[17,18,["G3450"]],[18,19,["G3709"]],[19,20,["G1487"]],[20,23,["G1525"]],[23,24,["G1519"]],[24,25,["G3450"]],[25,26,["G2663"]],[26,27,["G2543"]],[27,28,["G3588"]],[28,29,["G2041"]],[29,31,["G1096"]],[31,32,["G575"]],[32,34,["G2602"]],[34,37,["G2889"]]]},{"k":30018,"v":[[0,1,["G1063"]],[1,3,["G2046"]],[3,7,["G4225"]],[7,8,["G4012"]],[8,9,["G3588"]],[9,10,["G1442"]],[10,14,["G3779"]],[14,15,["G2532"]],[15,16,["G2316"]],[16,18,["G2664"]],[18,19,["G3588"]],[19,20,["G1442"]],[20,21,["G2250"]],[21,22,["G575"]],[22,23,["G3956"]],[23,24,["G848"]],[24,25,["G2041"]]]},{"k":30019,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G5129"]],[3,5,["G3825"]],[5,6,["G1487"]],[6,9,["G1525"]],[9,10,["G1519"]],[10,11,["G3450"]],[11,12,["G2663"]]]},{"k":30020,"v":[[0,1,["G1893"]],[1,2,["G3767"]],[2,4,["G620"]],[4,6,["G5100"]],[6,8,["G1525"]],[8,9,["G1519","G846"]],[9,10,["G2532"]],[10,17,["G2097","G4386"]],[17,20,["G1525","G3756"]],[20,21,["G1223"]],[21,23,["G543"]]]},{"k":30021,"v":[[0,1,["G3825"]],[1,3,["G3724"]],[3,5,["G5100"]],[5,6,["G2250"]],[6,7,["G3004"]],[7,8,["G1722"]],[8,9,["G1138"]],[9,11,["G4594"]],[11,12,["G3326"]],[12,14,["G5118"]],[14,16,["G5550"]],[16,17,["G2531"]],[17,20,["G2046"]],[20,22,["G4594"]],[22,23,["G1437"]],[23,26,["G191"]],[26,27,["G846"]],[27,28,["G5456"]],[28,29,["G4645"]],[29,30,["G3361"]],[30,31,["G5216"]],[31,32,["G2588"]]]},{"k":30022,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G2424"]],[3,7,["G2664","G846"]],[7,11,["G3756","(G302)"]],[11,12,["G3326","G5023"]],[12,14,["G2980"]],[14,15,["G4012"]],[15,16,["G243"]],[16,17,["G2250"]]]},{"k":30023,"v":[[0,2,["G620"]],[2,3,["G686"]],[3,5,["G4520"]],[5,7,["G3588"]],[7,8,["G2992"]],[8,10,["G2316"]]]},{"k":30024,"v":[[0,1,["G1063"]],[1,5,["G1525"]],[5,6,["G1519"]],[6,7,["G846"]],[7,8,["G2663"]],[8,9,["G846"]],[9,10,["G2532"]],[10,12,["G2664"]],[12,13,["G575"]],[13,15,["G848"]],[15,16,["G2041"]],[16,17,["G5618"]],[17,18,["G2316"]],[18,20,["G575"]],[20,21,["G2398"]]]},{"k":30025,"v":[[0,3,["G4704"]],[3,4,["G3767"]],[4,6,["G1525"]],[6,7,["G1519"]],[7,8,["G1565"]],[8,9,["G2663"]],[9,10,["G3363"]],[10,12,["G5100"]],[12,13,["G4098"]],[13,14,["G1722"]],[14,15,["G3588"]],[15,16,["G846"]],[16,17,["G5262"]],[17,19,["G543"]]]},{"k":30026,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3056"]],[3,5,["G2316"]],[5,7,["G2198"]],[7,8,["G2532"]],[8,9,["G1756"]],[9,10,["G2532"]],[10,11,["G5114"]],[11,12,["G5228"]],[12,13,["G3956"]],[13,14,["G1366"]],[14,15,["G3162"]],[15,16,["G1338"]],[16,17,["G2532"]],[17,18,["G891"]],[18,21,["G3311"]],[21,22,["(G5037)"]],[22,23,["G5590"]],[23,24,["G2532"]],[24,25,["G4151"]],[25,26,["G5037"]],[26,29,["G719"]],[29,30,["G2532"]],[30,31,["G3452"]],[31,32,["G2532"]],[32,35,["G2924"]],[35,38,["G1761"]],[38,39,["G2532"]],[39,40,["G1771"]],[40,43,["G2588"]]]},{"k":30027,"v":[[0,1,["G2532","G3756"]],[1,2,["G2076"]],[2,5,["G2937"]],[5,9,["G852"]],[9,12,["G1799","G846"]],[12,13,["G1161"]],[13,15,["G3956"]],[15,17,["G1131"]],[17,18,["G2532"]],[18,19,["G5136"]],[19,21,["G3588"]],[21,22,["G3788"]],[22,24,["G846"]],[24,25,["G4314"]],[25,26,["G3739"]],[26,30,["G2254","G3056"]]]},{"k":30028,"v":[[0,2,["G3767"]],[2,5,["G2192"]],[5,7,["G3173"]],[7,9,["G749"]],[9,13,["G1330"]],[13,14,["G3588"]],[14,15,["G3772"]],[15,16,["G2424"]],[16,17,["G3588"]],[17,18,["G5207"]],[18,20,["G2316"]],[20,24,["G2902"]],[24,26,["G3671"]]]},{"k":30029,"v":[[0,1,["G1063"]],[1,3,["G2192"]],[3,4,["G3756"]],[4,7,["G749"]],[7,9,["G1410","G3361"]],[9,15,["G4834"]],[15,16,["G2257"]],[16,17,["G769"]],[17,18,["G1161"]],[18,20,["G2596"]],[20,22,["G3956"]],[22,23,["G3985"]],[23,25,["G2596","G3665"]],[25,29,["G5565"]],[29,30,["G266"]]]},{"k":30030,"v":[[0,3,["G3767"]],[3,4,["G4334"]],[4,5,["G3326","G3954"]],[5,7,["G3588"]],[7,8,["G2362"]],[8,10,["G5485"]],[10,11,["G2443"]],[11,14,["G2983"]],[14,15,["G1656"]],[15,16,["G2532"]],[16,17,["G2147"]],[17,18,["G5485"]],[18,24,["G1519","G2121","G996"]]]},{"k":30031,"v":[[0,1,["G1063"]],[1,2,["G3956"]],[2,4,["G749"]],[4,5,["G2983"]],[5,7,["G1537"]],[7,8,["G444"]],[8,10,["G2525"]],[10,11,["G5228"]],[11,12,["G444"]],[12,14,["G3588"]],[14,16,["G4314"]],[16,17,["G2316"]],[17,18,["G2443"]],[18,21,["G4374"]],[21,22,["G5037"]],[22,23,["G1435"]],[23,24,["G2532"]],[24,25,["G2378"]],[25,26,["G5228"]],[26,27,["G266"]]]},{"k":30032,"v":[[0,2,["G1410"]],[2,4,["G3356"]],[4,6,["G3588"]],[6,7,["G50"]],[7,8,["G2532"]],[8,16,["G4105"]],[16,18,["G1893"]],[18,19,["G846"]],[19,21,["G2532"]],[21,24,["G4029"]],[24,25,["G769"]]]},{"k":30033,"v":[[0,1,["G2532"]],[1,4,["G1223","G5026"]],[4,6,["G3784"]],[6,7,["G2531"]],[7,8,["G4012"]],[8,9,["G3588"]],[9,10,["G2992"]],[10,11,["G3779"]],[11,12,["G2532"]],[12,13,["G4012"]],[13,14,["G1438"]],[14,16,["G4374"]],[16,17,["G5228"]],[17,18,["G266"]]]},{"k":30034,"v":[[0,1,["G2532"]],[1,3,["G5100","G3756"]],[3,4,["G2983"]],[4,6,["G5092"]],[6,8,["G1438"]],[8,9,["G235"]],[9,13,["G2564"]],[13,14,["G5259"]],[14,15,["G2316"]],[15,16,["G2509"]],[16,17,["(G2532)"]],[17,18,["G2"]]]},{"k":30035,"v":[[0,1,["G3779"]],[1,2,["G2532"]],[2,3,["G5547"]],[3,4,["G1392"]],[4,5,["G3756"]],[5,6,["G1438"]],[6,9,["G1096"]],[9,12,["G749"]],[12,13,["G235"]],[13,16,["G2980"]],[16,17,["G4314"]],[17,18,["G846"]],[18,19,["G4771"]],[19,20,["G1488"]],[20,21,["G3450"]],[21,22,["G5207"]],[22,24,["G4594"]],[24,26,["G1473"]],[26,27,["G1080"]],[27,28,["G4571"]]]},{"k":30036,"v":[[0,1,["G2531"]],[1,3,["G3004"]],[3,4,["G2532"]],[4,5,["G1722"]],[5,6,["G2087"]],[6,8,["G4771"]],[8,11,["G2409"]],[11,13,["G1519","G165"]],[13,14,["G2596"]],[14,15,["G3588"]],[15,16,["G5010"]],[16,18,["G3198"]]]},{"k":30037,"v":[[0,1,["G3739"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G2250"]],[4,6,["G848"]],[6,7,["G4561"]],[7,12,["G4374","(G5037)"]],[12,13,["G1162"]],[13,14,["G2532"]],[14,15,["G2428"]],[15,16,["G3326"]],[16,17,["G2478"]],[17,18,["G2906"]],[18,19,["G2532"]],[19,20,["G1144"]],[20,21,["G4314"]],[21,25,["G1410"]],[25,27,["G4982"]],[27,28,["G846"]],[28,29,["G1537"]],[29,30,["G2288"]],[30,31,["G2532"]],[31,33,["G1522"]],[33,37,["G575","G2124"]]]},{"k":30038,"v":[[0,1,["G2539"]],[1,3,["G5607"]],[3,5,["G5207"]],[5,7,["G3129"]],[7,9,["G5218"]],[9,10,["G575"]],[10,13,["G3739"]],[13,15,["G3958"]]]},{"k":30039,"v":[[0,1,["G2532"]],[1,4,["G5048"]],[4,6,["G1096"]],[6,8,["G159"]],[8,10,["G166"]],[10,11,["G4991"]],[11,13,["G3956"]],[13,16,["G5219"]],[16,17,["G846"]]]},{"k":30040,"v":[[0,1,["G4316"]],[1,2,["G5259"]],[2,3,["G2316"]],[3,6,["G749"]],[6,7,["G2596"]],[7,8,["G3588"]],[8,9,["G5010"]],[9,11,["G3198"]]]},{"k":30041,"v":[[0,1,["G4012"]],[1,2,["G3739"]],[2,3,["G2254"]],[3,8,["G4183","G3056"]],[8,9,["G2532"]],[9,10,["G1421"]],[10,13,["G3004"]],[13,14,["G1893"]],[14,16,["G1096"]],[16,17,["G3576"]],[17,19,["G189"]]]},{"k":30042,"v":[[0,1,["G1063"]],[1,2,["G2532"]],[2,3,["G1223"]],[3,4,["G3588"]],[4,5,["G5550"]],[5,7,["G3784"]],[7,9,["G1511"]],[9,10,["G1320"]],[10,12,["G2192"]],[12,13,["G5532"]],[13,16,["G1321"]],[16,17,["G5209"]],[17,18,["G3825"]],[18,19,["G5101"]],[19,21,["G3588"]],[21,22,["G746"]],[22,23,["G4747"]],[23,25,["G3588"]],[25,26,["G3051"]],[26,28,["G2316"]],[28,29,["G2532"]],[29,31,["G1096"]],[31,34,["G2192"]],[34,35,["G5532"]],[35,37,["G1051"]],[37,38,["G2532"]],[38,39,["G3756"]],[39,42,["G4731","G5160"]]]},{"k":30043,"v":[[0,1,["G1063"]],[1,3,["G3956"]],[3,5,["G3348"]],[5,6,["G1051"]],[6,8,["G552"]],[8,11,["G3056"]],[11,13,["G1343"]],[13,14,["G1063"]],[14,16,["G2076"]],[16,18,["G3516"]]]},{"k":30044,"v":[[0,1,["G1161"]],[1,3,["G4731","G5160"]],[3,4,["G2076"]],[4,11,["G5046"]],[11,17,["G1223"]],[17,18,["G1838"]],[18,19,["G2192"]],[19,21,["G145"]],[21,22,["G1128"]],[22,23,["G4314"]],[23,24,["G1253"]],[24,25,["G5037"]],[25,26,["G2570"]],[26,27,["G2532"]],[27,28,["G2556"]]]},{"k":30045,"v":[[0,1,["G1352"]],[1,2,["G863"]],[2,3,["G3588"]],[3,4,["G746"]],[4,6,["G3588"]],[6,7,["G3056"]],[7,9,["G5547"]],[9,13,["G5342"]],[13,14,["G1909"]],[14,15,["G5047"]],[15,16,["G3361"]],[16,17,["G2598"]],[17,18,["G3825"]],[18,20,["G2310"]],[20,22,["G3341"]],[22,23,["G575"]],[23,24,["G3498"]],[24,25,["G2041"]],[25,26,["G2532"]],[26,28,["G4102"]],[28,29,["G1909"]],[29,30,["G2316"]]]},{"k":30046,"v":[[0,3,["G1322"]],[3,5,["G909"]],[5,6,["G5037"]],[6,9,["G1936"]],[9,11,["G5495"]],[11,12,["G5037"]],[12,14,["G386"]],[14,17,["G3498"]],[17,18,["G2532"]],[18,20,["G166"]],[20,21,["G2917"]]]},{"k":30047,"v":[[0,1,["G2532"]],[1,2,["G5124"]],[2,5,["G4160"]],[5,6,["G1437","G4007"]],[6,7,["G2316"]],[7,8,["G2010"]]]},{"k":30048,"v":[[0,1,["G1063"]],[1,4,["G102"]],[4,10,["G5461","G530"]],[10,11,["G5037"]],[11,13,["G1089"]],[13,15,["G3588"]],[15,16,["G2032"]],[16,17,["G1431"]],[17,18,["G2532"]],[18,20,["G1096"]],[20,21,["G3353"]],[21,24,["G40"]],[24,25,["G4151"]]]},{"k":30049,"v":[[0,1,["G2532"]],[1,3,["G1089"]],[3,5,["G2570"]],[5,6,["G4487"]],[6,8,["G2316"]],[8,9,["G5037"]],[9,11,["G1411"]],[11,14,["G165"]],[14,16,["G3195"]]]},{"k":30050,"v":[[0,2,["(G2532)"]],[2,5,["G3895"]],[5,7,["G340"]],[7,9,["G3825"]],[9,10,["G1519"]],[10,11,["G3341"]],[11,21,["G388","G1438","G3588","G5207","G2316"]],[21,22,["G2532"]],[22,28,["G3856"]]]},{"k":30051,"v":[[0,1,["G1063"]],[1,3,["G1093"]],[3,6,["G4095"]],[6,7,["G3588"]],[7,8,["G5205"]],[8,10,["G2064"]],[10,11,["G4178"]],[11,12,["G1909"]],[12,13,["G846"]],[13,14,["G2532"]],[14,16,["G5088"]],[16,17,["G1008"]],[17,18,["G2111"]],[18,20,["G1565"]],[20,21,["G1223"]],[21,22,["G3739"]],[22,24,["(G2532)"]],[24,25,["G1090"]],[25,26,["G3335"]],[26,27,["G2129"]],[27,28,["G575"]],[28,29,["G2316"]]]},{"k":30052,"v":[[0,1,["G1161"]],[1,4,["G1627"]],[4,5,["G173"]],[5,6,["G2532"]],[6,7,["G5146"]],[7,9,["G96"]],[9,10,["G2532"]],[10,13,["G1451"]],[13,14,["G2671"]],[14,15,["G3739"]],[15,16,["G5056"]],[16,20,["G1519","G2740"]]]},{"k":30053,"v":[[0,1,["G1161"]],[1,2,["G27"]],[2,5,["G3982"]],[5,7,["G2909"]],[7,8,["G4012"]],[8,9,["G5216"]],[9,10,["G2532"]],[10,13,["G2192"]],[13,14,["G4991"]],[14,15,["G1499"]],[15,17,["G3779"]],[17,18,["G2980"]]]},{"k":30054,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,4,["G3756"]],[4,5,["G94"]],[5,7,["G1950"]],[7,8,["G5216"]],[8,9,["G2041"]],[9,10,["G2532"]],[10,11,["G2873"]],[11,13,["G26"]],[13,14,["G3739"]],[14,17,["G1731"]],[17,18,["G1519"]],[18,19,["G846"]],[19,20,["G3686"]],[20,25,["G1247"]],[25,27,["G3588"]],[27,28,["G40"]],[28,29,["G2532"]],[29,31,["G1247"]]]},{"k":30055,"v":[[0,1,["G1161"]],[1,3,["G1937"]],[3,6,["G1538"]],[6,8,["G5216"]],[8,10,["G1731"]],[10,11,["G3588"]],[11,12,["G846"]],[12,13,["G4710"]],[13,14,["G4314"]],[14,15,["G3588"]],[15,17,["G4136"]],[17,19,["G1680"]],[19,20,["G891"]],[20,22,["G5056"]]]},{"k":30056,"v":[[0,1,["G2443"]],[1,3,["G1096"]],[3,4,["G3361"]],[4,5,["G3576"]],[5,6,["G1161"]],[6,7,["G3402"]],[7,11,["G1223"]],[11,12,["G4102"]],[12,13,["G2532"]],[13,14,["G3115"]],[14,15,["G2816"]],[15,16,["G3588"]],[16,17,["G1860"]]]},{"k":30057,"v":[[0,1,["G1063"]],[1,3,["G2316"]],[3,5,["G1861"]],[5,7,["G11"]],[7,8,["G1893"]],[8,10,["G2192"]],[10,11,["G3660"]],[11,12,["G2596"]],[12,13,["G3762"]],[13,14,["G3187"]],[14,16,["G3660"]],[16,17,["G2596"]],[17,18,["G1438"]]]},{"k":30058,"v":[[0,1,["G3004"]],[1,2,["G2229","G3375"]],[2,3,["G2127"]],[3,6,["G2127"]],[6,7,["G4571"]],[7,8,["G2532"]],[8,9,["G4129"]],[9,12,["G4129"]],[12,13,["G4571"]]]},{"k":30059,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,7,["G3114"]],[7,9,["G2013"]],[9,10,["G3588"]],[10,11,["G1860"]]]},{"k":30060,"v":[[0,1,["G1063"]],[1,2,["G444"]],[2,3,["G3303"]],[3,4,["G3660"]],[4,5,["G2596"]],[5,6,["G3588"]],[6,7,["G3187"]],[7,8,["G2532"]],[8,10,["G3727"]],[10,11,["G1519"]],[11,12,["G951"]],[12,15,["G846"]],[15,17,["G4009"]],[17,19,["G3956"]],[19,20,["G485"]]]},{"k":30061,"v":[[0,1,["G1722","G3739"]],[1,2,["G2316"]],[2,3,["G1014"]],[3,5,["G4054"]],[5,7,["G1925"]],[7,9,["G3588"]],[9,10,["G2818"]],[10,12,["G1860"]],[12,13,["G3588"]],[13,14,["G276"]],[14,16,["G848"]],[16,17,["G1012"]],[17,18,["G3315"]],[18,22,["G3727"]]]},{"k":30062,"v":[[0,1,["G2443"]],[1,2,["G1223"]],[2,3,["G1417"]],[3,4,["G276"]],[4,5,["G4229"]],[5,6,["G1722"]],[6,7,["G3739"]],[7,10,["G102"]],[10,12,["G2316"]],[12,14,["G5574"]],[14,17,["G2192"]],[17,19,["G2478"]],[19,20,["G3874"]],[20,25,["G2703"]],[25,29,["G2902"]],[29,31,["G1680"]],[31,33,["G4295"]],[33,34,[]]]},{"k":30063,"v":[[0,1,["G3739"]],[1,4,["G2192"]],[4,5,["G5613"]],[5,7,["G45"]],[7,9,["G3588"]],[9,10,["G5590"]],[10,11,["G5037"]],[11,12,["G804"]],[12,13,["G2532"]],[13,14,["G949"]],[14,15,["G2532"]],[15,17,["G1525"]],[17,18,["G1519"]],[18,20,["G2082"]],[20,21,["G3588"]],[21,22,["G2665"]]]},{"k":30064,"v":[[0,1,["G3699"]],[1,3,["G4274"]],[3,5,["G5228"]],[5,6,["G2257"]],[6,7,["G1525"]],[7,9,["G2424"]],[9,10,["G1096"]],[10,13,["G749"]],[13,15,["G1519","G165"]],[15,16,["G2596"]],[16,17,["G3588"]],[17,18,["G5010"]],[18,20,["G3198"]]]},{"k":30065,"v":[[0,1,["G1063"]],[1,2,["G3778"]],[2,3,["G3198"]],[3,4,["G935"]],[4,6,["G4532"]],[6,7,["G2409"]],[7,9,["G3588"]],[9,11,["G5310"]],[11,12,["G2316"]],[12,14,["G4876"]],[14,15,["G11"]],[15,16,["G5290"]],[16,17,["G575"]],[17,18,["G3588"]],[18,19,["G2871"]],[19,21,["G3588"]],[21,22,["G935"]],[22,23,["G2532"]],[23,24,["G2127"]],[24,25,["G846"]]]},{"k":30066,"v":[[0,2,["G3739"]],[2,3,["G2532"]],[3,4,["G11"]],[4,5,["G3307"]],[5,8,["G1181"]],[8,9,["G575"]],[9,10,["G3956"]],[10,11,["G4412","G3303"]],[11,14,["G2059"]],[14,15,["G935"]],[15,17,["G1343"]],[17,18,["G1161"]],[18,20,["G1899"]],[20,21,["G2532"]],[21,22,["G935"]],[22,24,["G4532"]],[24,26,["G3603"]],[26,27,["G935"]],[27,29,["G1515"]]]},{"k":30067,"v":[[0,2,["G540"]],[2,4,["G282"]],[4,6,["G35"]],[6,7,["G2192"]],[7,8,["G3383"]],[8,9,["G746"]],[9,11,["G2250"]],[11,12,["G3383"]],[12,13,["G5056"]],[13,15,["G2222"]],[15,16,["G1161"]],[16,19,["G871"]],[19,20,["G3588"]],[20,21,["G5207"]],[21,23,["G2316"]],[23,24,["G3306"]],[24,26,["G2409"]],[26,27,["G1519","G1336"]]]},{"k":30068,"v":[[0,1,["G1161"]],[1,2,["G2334"]],[2,4,["G4080"]],[4,6,["G3778"]],[6,9,["G3739"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G3966"]],[12,13,["G11"]],[13,14,["G1325"]],[14,16,["G1181"]],[16,17,["G1537"]],[17,18,["G3588"]],[18,19,["G205"]]]},{"k":30069,"v":[[0,1,["G2532"]],[1,2,["G3303"]],[2,3,["G3588"]],[3,6,["G1537"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G3017"]],[10,12,["G2983"]],[12,13,["G3588"]],[13,17,["G2405"]],[17,18,["G2192"]],[18,20,["G1785"]],[20,23,["G586"]],[23,25,["G3588"]],[25,26,["G2992"]],[26,27,["G2596"]],[27,29,["G3588"]],[29,30,["G3551"]],[30,32,["G5123"]],[32,34,["G848"]],[34,35,["G80"]],[35,36,["G2539"]],[36,38,["G1831"]],[38,40,["G1537"]],[40,41,["G3588"]],[41,42,["G3751"]],[42,44,["G11"]]]},{"k":30070,"v":[[0,1,["G1161"]],[1,7,["G1075","G3361"]],[7,8,["G1537"]],[8,9,["G846"]],[9,11,["G1183"]],[11,13,["G11"]],[13,14,["G2532"]],[14,15,["G2127"]],[15,18,["G2192"]],[18,19,["G3588"]],[19,20,["G1860"]]]},{"k":30071,"v":[[0,1,["G1161"]],[1,2,["G5565"]],[2,3,["G3956"]],[3,4,["G485"]],[4,5,["G3588"]],[5,6,["G1640"]],[6,8,["G2127"]],[8,9,["G5259"]],[9,10,["G3588"]],[10,11,["G2909"]]]},{"k":30072,"v":[[0,1,["G2532"]],[1,2,["G5602","G3303"]],[2,3,["G444"]],[3,5,["G599"]],[5,6,["G2983"]],[6,7,["G1181"]],[7,8,["G1161"]],[8,9,["G1563"]],[9,17,["G3140"]],[17,18,["G3754"]],[18,20,["G2198"]]]},{"k":30073,"v":[[0,1,["G2532"]],[1,6,["G5613","G2031","G2036"]],[6,7,["G3017"]],[7,8,["G2532"]],[8,10,["G2983"]],[10,11,["G1181"]],[11,13,["G1183"]],[13,14,["G1223"]],[14,15,["G11"]]]},{"k":30074,"v":[[0,1,["G1063"]],[1,3,["G2258"]],[3,4,["G2089"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G3751"]],[7,10,["G3962"]],[10,11,["G3753"]],[11,12,["G3198"]],[12,13,["G4876"]],[13,14,["G846"]]]},{"k":30075,"v":[[0,1,["G1487","(G3303)"]],[1,2,["G3767"]],[2,3,["G5050"]],[3,4,["G2258"]],[4,5,["G1223"]],[5,6,["G3588"]],[6,7,["G3020"]],[7,8,["G2420"]],[8,9,["G1063"]],[9,10,["G1909"]],[10,11,["G846"]],[11,12,["G3588"]],[12,13,["G2992"]],[13,16,["G3549"]],[16,17,["G5101"]],[17,18,["G2089"]],[18,19,["G5532"]],[19,23,["G2087"]],[23,24,["G2409"]],[24,26,["G450"]],[26,27,["G2596"]],[27,28,["G3588"]],[28,29,["G5010"]],[29,31,["G3198"]],[31,32,["G2532"]],[32,33,["G3756"]],[33,35,["G3004"]],[35,36,["G2596"]],[36,37,["G3588"]],[37,38,["G5010"]],[38,40,["G2"]]]},{"k":30076,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G2420"]],[3,5,["G3346"]],[5,8,["G1096"]],[8,9,["G1537"]],[9,10,["G318"]],[10,12,["G3331"]],[12,13,["G2532"]],[13,16,["G3551"]]]},{"k":30077,"v":[[0,1,["G1063"]],[1,3,["G1909"]],[3,4,["G3739"]],[4,6,["G5023"]],[6,8,["G3004"]],[8,9,["G3348"]],[9,11,["G2087"]],[11,12,["G5443"]],[12,13,["G575"]],[13,14,["G3739"]],[14,16,["G3762"]],[16,18,["G4337"]],[18,20,["G3588"]],[20,21,["G2379"]]]},{"k":30078,"v":[[0,1,["G1063"]],[1,4,["G4271"]],[4,5,["G3754"]],[5,6,["G2257"]],[6,7,["G2962"]],[7,8,["G393"]],[8,10,["G1537"]],[10,11,["G2455"]],[11,12,["G1519"]],[12,13,["G3739"]],[13,14,["G5443"]],[14,15,["G3475"]],[15,16,["G2980"]],[16,17,["G3762"]],[17,18,["G4012"]],[18,19,["G2420"]]]},{"k":30079,"v":[[0,1,["G2532"]],[1,3,["G2076"]],[3,4,["G2089"]],[4,6,["G4054"]],[6,7,["G2612"]],[7,9,["G1487"]],[9,10,["G2596"]],[10,11,["G3588"]],[11,12,["G3665"]],[12,14,["G3198"]],[14,16,["G450"]],[16,17,["G2087"]],[17,18,["G2409"]]]},{"k":30080,"v":[[0,1,["G3739"]],[1,3,["G1096"]],[3,4,["G3756"]],[4,5,["G2596"]],[5,7,["G3551"]],[7,10,["G4559"]],[10,11,["G1785"]],[11,12,["G235"]],[12,13,["G2596"]],[13,15,["G1411"]],[15,18,["G179"]],[18,19,["G2222"]]]},{"k":30081,"v":[[0,1,["G1063"]],[1,3,["G3140"]],[3,4,["G4771"]],[4,7,["G2409"]],[7,9,["G1519","G165"]],[9,10,["G2596"]],[10,11,["G3588"]],[11,12,["G5010"]],[12,14,["G3198"]]]},{"k":30082,"v":[[0,1,["G1063"]],[1,3,["G1096"]],[3,4,["G3303"]],[4,6,["G115"]],[6,9,["G1785"]],[9,11,["G4254"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G772"]],[14,15,["G2532"]],[15,16,["G512"]],[16,17,["G846"]]]},{"k":30083,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3551"]],[3,6,["G5048","G3762"]],[6,7,["G1161"]],[7,10,["G1898"]],[10,13,["G2909"]],[13,14,["G1680"]],[14,16,["G1223"]],[16,18,["G3739"]],[18,21,["G1448"]],[21,23,["G2316"]]]},{"k":30084,"v":[[0,1,["G2532"]],[1,3,["G2596","G3745"]],[3,4,["G3756"]],[4,5,["G5565"]],[5,7,["G3728"]],[7,11,[]]]},{"k":30085,"v":[[0,1,["G1063"]],[1,3,["G2409","(G3303)"]],[3,4,["G1526"]],[4,5,["G1096"]],[5,6,["G5565"]],[6,8,["G3728"]],[8,9,["G1161"]],[9,10,["G3588"]],[10,11,["G3326"]],[11,13,["G3728"]],[13,14,["G1223"]],[14,17,["G3004"]],[17,18,["G4314"]],[18,19,["G846"]],[19,21,["G2962"]],[21,22,["G3660"]],[22,23,["G2532"]],[23,25,["G3756"]],[25,26,["G3338"]],[26,27,["G4771"]],[27,30,["G2409"]],[30,32,["G1519","G165"]],[32,33,["G2596"]],[33,34,["G3588"]],[34,35,["G5010"]],[35,37,["G3198"]]]},{"k":30086,"v":[[0,1,["G2596"]],[1,3,["G5118"]],[3,5,["G2424"]],[5,6,["G1096"]],[6,8,["G1450"]],[8,11,["G2909"]],[11,12,["G1242"]]]},{"k":30087,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3303"]],[3,4,["G1526"]],[4,5,["G4119"]],[5,6,["G2409"]],[6,11,["G2967"]],[11,13,["G3887"]],[13,17,["G2288"]]]},{"k":30088,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,5,["G846"]],[5,6,["G3306"]],[6,7,["G1519","G165"]],[7,8,["G2192"]],[8,10,["G531"]],[10,11,["G2420"]]]},{"k":30089,"v":[[0,1,["G3606"]],[1,4,["G1410"]],[4,5,["G2532"]],[5,7,["G4982"]],[7,9,["G1519"]],[9,10,["G3588"]],[10,11,["G3838"]],[11,13,["G4334"]],[13,15,["G2316"]],[15,16,["G1223"]],[16,17,["G846"]],[17,20,["G3842"]],[20,21,["G2198"]],[21,24,["G1793"]],[24,25,["G5228"]],[25,26,["G846"]]]},{"k":30090,"v":[[0,1,["G1063"]],[1,2,["G5108"]],[2,5,["G749"]],[5,6,["G4241"]],[6,7,["G2254"]],[7,10,["G3741"]],[10,11,["G172"]],[11,12,["G283"]],[12,13,["G5563"]],[13,14,["G575"]],[14,15,["G268"]],[15,16,["G2532"]],[16,17,["G1096"]],[17,18,["G5308"]],[18,20,["G3588"]],[20,21,["G3772"]]]},{"k":30091,"v":[[0,1,["G3739"]],[1,2,["G2192","G318"]],[2,3,["G3756"]],[3,4,["G2596","G2250"]],[4,5,["G5618"]],[5,8,["G749"]],[8,11,["G399"]],[11,12,["G2378"]],[12,13,["G4386"]],[13,14,["G5228"]],[14,16,["G2398"]],[16,17,["G266"]],[17,19,["G1899"]],[19,20,["(G3588)"]],[20,21,["G3588"]],[21,22,["G2992"]],[22,23,["G1063"]],[23,24,["G5124"]],[24,26,["G4160"]],[26,27,["G2178"]],[27,31,["G399"]],[31,32,["G1438"]]]},{"k":30092,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3551"]],[3,4,["G2525"]],[4,5,["G444"]],[5,7,["G749"]],[7,9,["G2192"]],[9,10,["G769"]],[10,11,["G1161"]],[11,12,["G3588"]],[12,13,["G3056"]],[13,15,["G3588"]],[15,16,["G3728"]],[16,17,["G3588"]],[17,19,["G3326"]],[19,20,["G3588"]],[20,21,["G3551"]],[21,24,["G5207"]],[24,27,["G5048"]],[27,29,["G1519","G165"]]]},{"k":30093,"v":[[0,1,["G1161"]],[1,2,["G1909"]],[2,8,["G3004"]],[8,12,["G2774"]],[12,14,["G2192"]],[14,15,["G5108"]],[15,18,["G749"]],[18,19,["G3739"]],[19,21,["G2523"]],[21,22,["G1722"]],[22,25,["G1188"]],[25,27,["G3588"]],[27,28,["G2362"]],[28,30,["G3588"]],[30,31,["G3172"]],[31,32,["G1722"]],[32,33,["G3588"]],[33,34,["G3772"]]]},{"k":30094,"v":[[0,2,["G3011"]],[2,4,["G3588"]],[4,5,["G39"]],[5,6,["G2532"]],[6,8,["G3588"]],[8,9,["G228"]],[9,10,["G4633"]],[10,11,["G3739"]],[11,12,["G3588"]],[12,13,["G2962"]],[13,14,["G4078"]],[14,15,["G2532"]],[15,16,["G3756"]],[16,17,["G444"]]]},{"k":30095,"v":[[0,1,["G1063"]],[1,2,["G3956"]],[2,4,["G749"]],[4,6,["G2525"]],[6,8,["G4374","(G5037)"]],[8,9,["G1435"]],[9,10,["G2532"]],[10,11,["G2378"]],[11,12,["G3606"]],[12,16,["G316"]],[16,19,["G5126"]],[19,20,["G2192"]],[20,21,["G5100","G3739"]],[21,22,["G2532"]],[22,24,["G4374"]]]},{"k":30096,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["(G3303)"]],[3,4,["G2258"]],[4,5,["G1909"]],[5,6,["G1093"]],[6,9,["G3761"]],[9,10,["G2258","G302"]],[10,12,["G2409"]],[12,16,["G5607"]],[16,17,["G2409"]],[17,19,["G4374"]],[19,20,["G1435"]],[20,21,["G2596"]],[21,23,["G3588"]],[23,24,["G3551"]]]},{"k":30097,"v":[[0,1,["G3748"]],[1,2,["G3000"]],[2,5,["G5262"]],[5,6,["G2532"]],[6,7,["G4639"]],[7,10,["G2032"]],[10,11,["G2531"]],[11,12,["G3475"]],[12,16,["G5537"]],[16,20,["G3195"]],[20,22,["G2005"]],[22,23,["G3588"]],[23,24,["G4633"]],[24,25,["G1063"]],[25,26,["G3708"]],[26,27,["G5346"]],[27,31,["G4160"]],[31,33,["G3956"]],[33,34,["G2596"]],[34,36,["G3588"]],[36,37,["G5179"]],[37,38,["G1166"]],[38,40,["G4671"]],[40,41,["G1722"]],[41,42,["G3588"]],[42,43,["G3735"]]]},{"k":30098,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,5,["G5177"]],[5,8,["G1313"]],[8,9,["G3009"]],[9,12,["G3745"]],[12,13,["G2532"]],[13,15,["G2076"]],[15,17,["G3316"]],[17,20,["G2909"]],[20,21,["G1242"]],[21,22,["G3748"]],[22,24,["G3549"]],[24,25,["G1909"]],[25,26,["G2909"]],[26,27,["G1860"]]]},{"k":30099,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G1565"]],[3,4,["G4413"]],[4,7,["G2258"]],[7,8,["G273"]],[8,11,["G3756","(G302)"]],[11,12,["G5117"]],[12,15,["G2212"]],[15,18,["G1208"]]]},{"k":30100,"v":[[0,1,["G1063"]],[1,3,["G3201"]],[3,5,["G846"]],[5,7,["G3004"]],[7,8,["G2400"]],[8,10,["G2250"]],[10,11,["G2064"]],[11,12,["G3004"]],[12,14,["G2962"]],[14,15,["G2532"]],[15,18,["G4931"]],[18,20,["G2537"]],[20,21,["G1242"]],[21,22,["G1909"]],[22,23,["G3588"]],[23,24,["G3624"]],[24,26,["G2474"]],[26,27,["G2532"]],[27,28,["G1909"]],[28,29,["G3588"]],[29,30,["G3624"]],[30,32,["G2455"]]]},{"k":30101,"v":[[0,1,["G3756"]],[1,2,["G2596"]],[2,4,["G3588"]],[4,5,["G1242"]],[5,6,["G3739"]],[6,8,["G4160"]],[8,10,["G846"]],[10,11,["G3962"]],[11,12,["G1722"]],[12,14,["G2250"]],[14,16,["G3450"]],[16,17,["G1949"]],[17,18,["G846"]],[18,20,["G3588"]],[20,21,["G5495"]],[21,23,["G1806"]],[23,24,["G846"]],[24,26,["G1537"]],[26,28,["G1093"]],[28,30,["G125"]],[30,31,["G3754"]],[31,32,["G846"]],[32,33,["G1696"]],[33,34,["G3756"]],[34,35,["G1722"]],[35,36,["G3450"]],[36,37,["G1242"]],[37,39,["G2504"]],[39,42,["G272","G846"]],[42,43,["G3004"]],[43,45,["G2962"]]]},{"k":30102,"v":[[0,1,["G3754"]],[1,2,["G3778"]],[2,4,["G3588"]],[4,5,["G1242"]],[5,6,["G3739"]],[6,9,["G1303"]],[9,11,["G3588"]],[11,12,["G3624"]],[12,14,["G2474"]],[14,15,["G3326"]],[15,16,["G1565"]],[16,17,["G2250"]],[17,18,["G3004"]],[18,20,["G2962"]],[20,23,["G1325"]],[23,24,["G3450"]],[24,25,["G3551"]],[25,26,["G1519"]],[26,27,["G846"]],[27,28,["G1271"]],[28,29,["G2532"]],[29,30,["G1924"]],[30,31,["G846"]],[31,32,["G1909"]],[32,33,["G846"]],[33,34,["G2588"]],[34,35,["G2532"]],[35,38,["G2071"]],[38,40,["G846"]],[40,41,["(G1519)"]],[41,42,["G2316"]],[42,43,["G2532"]],[43,44,["G846"]],[44,46,["G2071"]],[46,48,["G3427"]],[48,49,["(G1519)"]],[49,50,["G2992"]]]},{"k":30103,"v":[[0,1,["G2532"]],[1,4,["G3364"]],[4,5,["G1321"]],[5,7,["G1538"]],[7,8,["G848"]],[8,9,["G4139"]],[9,10,["G2532"]],[10,12,["G1538"]],[12,13,["G848"]],[13,14,["G80"]],[14,15,["G3004"]],[15,16,["G1097"]],[16,17,["G3588"]],[17,18,["G2962"]],[18,19,["G3754"]],[19,20,["G3956"]],[20,22,["G1492"]],[22,23,["G3165"]],[23,24,["G575"]],[24,26,["G3398","(G846)"]],[26,27,["G2193"]],[27,29,["G3173","(G846)"]]]},{"k":30104,"v":[[0,1,["G3754"]],[1,4,["G2071"]],[4,5,["G2436"]],[5,7,["G846"]],[7,8,["G93"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G266"]],[11,12,["G2532"]],[12,13,["G846"]],[13,14,["G458"]],[14,17,["G3415"]],[17,19,["G3364","G2089"]]]},{"k":30105,"v":[[0,4,["G3004"]],[4,6,["G2537"]],[6,13,["G3822","G3588","G4413"]],[13,14,["G1161"]],[14,17,["G3822"]],[17,18,["G2532"]],[18,20,["G1095"]],[20,25,["G1451","G854"]]]},{"k":30106,"v":[[0,1,["G3767"]],[1,2,["G3303"]],[2,3,["G3588"]],[3,4,["G4413"]],[4,6,["G2192"]],[6,7,["G2532"]],[7,8,["G1345"]],[8,11,["G2999"]],[11,12,["G5037"]],[12,14,["G2886"]],[14,15,["G39"]]]},{"k":30107,"v":[[0,1,["G1063"]],[1,5,["G4633"]],[5,6,["G2680"]],[6,7,["G3588"]],[7,8,["G4413"]],[8,9,["G1722","G3739"]],[9,11,["(G5037","G3739)"]],[11,12,["G3087"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G5132"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G4286","G740"]],[18,19,["G3748"]],[19,21,["G3004"]],[21,23,["G39"]]]},{"k":30108,"v":[[0,1,["G1161"]],[1,2,["G3326"]],[2,3,["G3588"]],[3,4,["G1208"]],[4,5,["G2665"]],[5,7,["G4633"]],[7,10,["G3004"]],[10,14,["G39","G39"]]]},{"k":30109,"v":[[0,2,["G2192"]],[2,4,["G5552"]],[4,5,["G2369"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G2787"]],[8,10,["G3588"]],[10,11,["G1242"]],[11,12,["G4028"]],[12,14,["G3840"]],[14,16,["G5552"]],[16,17,["G1722","G3739"]],[17,20,["G5553"]],[20,21,["G4713"]],[21,23,["G2192"]],[23,24,["G3131"]],[24,25,["G2532"]],[25,26,["G2"]],[26,27,["G4464"]],[27,29,["G985"]],[29,30,["G2532"]],[30,31,["G3588"]],[31,32,["G4109"]],[32,34,["G3588"]],[34,35,["G1242"]]]},{"k":30110,"v":[[0,1,["G1161"]],[1,2,["G5231"]],[2,3,["G846"]],[3,5,["G5502"]],[5,7,["G1391"]],[7,8,["G2683"]],[8,9,["G3588"]],[9,10,["G2435"]],[10,11,["G4012"]],[11,12,["G3739"]],[12,14,["G2076","G3756"]],[14,15,["G3568"]],[15,16,["G3004"]],[16,17,["G2596","G3313"]]]},{"k":30111,"v":[[0,1,["G1161"]],[1,4,["G5130"]],[4,6,["G3779"]],[6,7,["G2680"]],[7,8,["G3588"]],[8,9,["G2409"]],[9,10,["G1524"]],[10,11,["G1275"]],[11,12,["G1519","(G3303)"]],[12,13,["G3588"]],[13,14,["G4413"]],[14,15,["G4633"]],[15,16,["G2005"]],[16,17,["G3588"]],[17,18,["G2999"]],[18,20,[]]]},{"k":30112,"v":[[0,1,["G1161"]],[1,2,["G1519"]],[2,3,["G3588"]],[3,4,["G1208"]],[4,6,["G3588"]],[6,8,["G749"]],[8,9,["G3441"]],[9,10,["G530"]],[10,12,["G1763"]],[12,13,["G3756"]],[13,14,["G5565"]],[14,15,["G129"]],[15,16,["G3739"]],[16,18,["G4374"]],[18,19,["G5228"]],[19,20,["G1438"]],[20,21,["G2532"]],[21,23,["G3588"]],[23,24,["G51"]],[24,26,["G3588"]],[26,27,["G2992"]]]},{"k":30113,"v":[[0,1,["G3588"]],[1,2,["G40"]],[2,3,["G4151"]],[3,4,["G5124"]],[4,5,["G1213"]],[5,7,["G3588"]],[7,8,["G3598"]],[8,10,["G3588"]],[10,13,["G39"]],[13,16,["G3380"]],[16,18,["G5319"]],[18,21,["G3588"]],[21,22,["G4413"]],[22,23,["G4633"]],[23,24,["G2192"]],[24,25,["G2089"]],[25,26,["G4714"]]]},{"k":30114,"v":[[0,1,["G3748"]],[1,4,["G3850"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G2540"]],[7,9,["G1764"]],[9,10,["G2596"]],[10,11,["G3739"]],[11,13,["G4374"]],[13,14,["G5037"]],[14,15,["G1435"]],[15,16,["G2532"]],[16,17,["G2378"]],[17,19,["G1410"]],[19,20,["G3361"]],[20,27,["G5048","G3588","G3000"]],[27,29,["G2596"]],[29,32,["G4893"]]]},{"k":30115,"v":[[0,3,["G3440"]],[3,4,["G1909"]],[4,5,["G1033"]],[5,6,["G2532"]],[6,7,["G4188"]],[7,8,["G2532"]],[8,9,["G1313"]],[9,10,["G909"]],[10,11,["G2532"]],[11,12,["G4561"]],[12,13,["G1345"]],[13,14,["G1945"]],[14,17,["G3360"]],[17,19,["G2540"]],[19,21,["G1357"]]]},{"k":30116,"v":[[0,1,["G1161"]],[1,2,["G5547"]],[2,4,["G3854"]],[4,7,["G749"]],[7,10,["G18"]],[10,12,["G3195"]],[12,13,["G1223"]],[13,15,["G3187"]],[15,16,["G2532"]],[16,18,["G5046"]],[18,19,["G4633"]],[19,20,["G3756"]],[20,23,["G5499"]],[23,27,["G5123"]],[27,28,["G3756"]],[28,30,["G5026"]],[30,31,["G2937"]]]},{"k":30117,"v":[[0,1,["G3761"]],[1,2,["G1223"]],[2,4,["G129"]],[4,6,["G5131"]],[6,7,["G2532"]],[7,8,["G3448"]],[8,9,["G1161"]],[9,10,["G1223"]],[10,12,["G2398"]],[12,13,["G129"]],[13,16,["G1525"]],[16,17,["G2178"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,21,["G39"]],[21,23,["G2147"]],[23,24,["G166"]],[24,25,["G3085"]],[25,27,[]]]},{"k":30118,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G129"]],[4,6,["G5022"]],[6,7,["G2532"]],[7,9,["G5131"]],[9,10,["G2532"]],[10,12,["G4700"]],[12,15,["G1151"]],[15,16,["G4472"]],[16,17,["G3588"]],[17,18,["G2840"]],[18,19,["G37"]],[19,20,["G4314"]],[20,21,["G3588"]],[21,22,["G2514"]],[22,24,["G3588"]],[24,25,["G4561"]]]},{"k":30119,"v":[[0,2,["G4214"]],[2,3,["G3123"]],[3,5,["G3588"]],[5,6,["G129"]],[6,8,["G5547"]],[8,9,["G3739"]],[9,10,["G1223"]],[10,12,["G166"]],[12,13,["G4151"]],[13,14,["G4374"]],[14,15,["G1438"]],[15,17,["G299"]],[17,19,["G2316"]],[19,20,["G2511"]],[20,21,["G5216"]],[21,22,["G4893"]],[22,23,["G575"]],[23,24,["G3498"]],[24,25,["G2041"]],[25,27,["G3000"]],[27,29,["G2198"]],[29,30,["G2316"]]]},{"k":30120,"v":[[0,1,["G2532"]],[1,4,["G1223","G5124"]],[4,6,["G2076"]],[6,8,["G3316"]],[8,11,["G2537"]],[11,12,["G1242"]],[12,13,["G3704"]],[13,17,["G2288","G1096"]],[17,18,["G1519"]],[18,20,["G629"]],[20,22,["G3588"]],[22,23,["G3847"]],[23,26,["G1909"]],[26,27,["G3588"]],[27,28,["G4413"]],[28,29,["G1242"]],[29,33,["G2564"]],[33,35,["G2983"]],[35,36,["G3588"]],[36,37,["G1860"]],[37,39,["G166"]],[39,40,["G2817"]]]},{"k":30121,"v":[[0,1,["G1063"]],[1,2,["G3699"]],[2,4,["G1242"]],[4,10,["G318"]],[10,11,["G5342"]],[11,13,["G2288"]],[13,15,["G3588"]],[15,16,["G1303"]]]},{"k":30122,"v":[[0,1,["G1063"]],[1,3,["G1242"]],[3,6,["G949"]],[6,10,["G1909","G3498"]],[10,11,["G1893"]],[11,18,["G2480","G3379"]],[18,19,["G3753"]],[19,20,["G3588"]],[20,21,["G1303"]],[21,22,["G2198"]]]},{"k":30123,"v":[[0,1,["G3606"]],[1,2,["G3761"]],[2,3,["G3588"]],[3,4,["G4413"]],[4,7,["G1457"]],[7,8,["G5565"]],[8,9,["G129"]]]},{"k":30124,"v":[[0,1,["G1063"]],[1,2,["(G5259)"]],[2,3,["G3475"]],[3,5,["G2980"]],[5,6,["G3956"]],[6,7,["G1785"]],[7,9,["G3956"]],[9,10,["G3588"]],[10,11,["G2992"]],[11,12,["G2596"]],[12,15,["G3551"]],[15,17,["G2983"]],[17,18,["G3588"]],[18,19,["G129"]],[19,21,["G3448"]],[21,22,["G2532"]],[22,24,["G5131"]],[24,25,["G3326"]],[25,26,["G5204"]],[26,27,["G2532"]],[27,28,["G2847"]],[28,29,["G2053"]],[29,30,["G2532"]],[30,31,["G5301"]],[31,33,["G4472"]],[33,34,["G5037"]],[34,35,["G3588"]],[35,36,["G975"]],[36,37,["G2532"]],[37,38,["G3956"]],[38,39,["G3588"]],[39,40,["G2992"]]]},{"k":30125,"v":[[0,1,["G3004"]],[1,2,["G5124"]],[2,4,["G3588"]],[4,5,["G129"]],[5,7,["G3588"]],[7,8,["G1242"]],[8,9,["G3739"]],[9,10,["G2316"]],[10,12,["G1781"]],[12,13,["G4314"]],[13,14,["G5209"]]]},{"k":30126,"v":[[0,1,["G3668"]],[1,3,["G4472"]],[3,5,["G129"]],[5,6,["G1161"]],[6,7,["G3588"]],[7,8,["G4633"]],[8,9,["G2532"]],[9,10,["G3956"]],[10,11,["G3588"]],[11,12,["G4632"]],[12,14,["G3588"]],[14,15,["G3009"]]]},{"k":30127,"v":[[0,1,["G2532"]],[1,2,["G4975"]],[2,4,["G3956"]],[4,6,["G2596"]],[6,7,["G3588"]],[7,8,["G3551"]],[8,9,["G2511"]],[9,10,["G1722"]],[10,11,["G129"]],[11,12,["G2532"]],[12,13,["G5565"]],[13,16,["G130"]],[16,17,["G1096"]],[17,18,["G3756"]],[18,19,["G859"]]]},{"k":30128,"v":[[0,3,["G3767"]],[3,4,["G318"]],[4,6,["G3588","(G3303)"]],[6,7,["G5262"]],[7,9,["G3588"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G3772"]],[12,15,["G2511"]],[15,17,["G5125"]],[17,18,["G1161"]],[18,19,["G3588"]],[19,21,["G2032"]],[21,22,["G846"]],[22,24,["G2909"]],[24,25,["G2378"]],[25,26,["G3844"]],[26,27,["G5025"]]]},{"k":30129,"v":[[0,1,["G1063"]],[1,2,["G5547"]],[2,4,["G3756"]],[4,5,["G1525"]],[5,6,["G1519"]],[6,9,["G39"]],[9,12,["G5499"]],[12,16,["G499"]],[16,18,["G3588"]],[18,19,["G228"]],[19,20,["G235"]],[20,21,["G1519"]],[21,22,["G3772"]],[22,23,["G846"]],[23,24,["G3568"]],[24,26,["G1718"]],[26,28,["G3588"]],[28,29,["G4383"]],[29,31,["G2316"]],[31,32,["G5228"]],[32,33,["G2257"]]]},{"k":30130,"v":[[0,1,["G3761"]],[1,3,["G2443"]],[3,6,["G4374"]],[6,7,["G1438"]],[7,8,["G4178"]],[8,9,["G5618"]],[9,10,["G3588"]],[10,12,["G749"]],[12,13,["G1525"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,17,["G39"]],[17,19,["G2596","G1763"]],[19,20,["G1722"]],[20,21,["G129"]],[21,23,["G245"]]]},{"k":30131,"v":[[0,2,["G1893"]],[2,3,["G1163"]],[3,4,["G846"]],[4,5,["G4178"]],[5,7,["G3958"]],[7,8,["G575"]],[8,10,["G2602"]],[10,13,["G2889"]],[13,14,["G1161"]],[14,15,["G3568"]],[15,16,["G530"]],[16,17,["G1909"]],[17,19,["G4930"]],[19,21,["G3588"]],[21,22,["G165"]],[22,25,["G5319"]],[25,28,["G1519","G115"]],[28,29,["G266"]],[29,30,["G1223"]],[30,31,["G3588"]],[31,32,["G2378"]],[32,34,["G848"]]]},{"k":30132,"v":[[0,1,["G2532"]],[1,2,["G2596","G3745"]],[2,5,["G606"]],[5,7,["G444"]],[7,8,["G530"]],[8,10,["G599"]],[10,11,["G1161"]],[11,12,["G3326"]],[12,13,["G5124"]],[13,15,["G2920"]]]},{"k":30133,"v":[[0,1,["G3779"]],[1,2,["G5547"]],[2,4,["G530"]],[4,5,["G4374"]],[5,7,["G399"]],[7,9,["G266"]],[9,11,["G4183"]],[11,17,["G553"]],[17,18,["G846"]],[18,21,["G3700"]],[21,22,["(G1537)"]],[22,24,["G1208"]],[24,25,["G5565"]],[25,26,["G266"]],[26,27,["G1519"]],[27,28,["G4991"]]]},{"k":30134,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3551"]],[3,4,["G2192"]],[4,6,["G4639"]],[6,9,["G18"]],[9,11,["G3195"]],[11,13,["G3756"]],[13,14,["G3588"]],[14,15,["G846"]],[15,16,["G1504"]],[16,18,["G3588"]],[18,19,["G4229"]],[19,20,["G1410"]],[20,21,["G3763"]],[21,23,["G846"]],[23,24,["G2378"]],[24,25,["G3739"]],[25,27,["G4374"]],[27,30,["G2596","G1763"]],[30,31,["G1519","G1336"]],[31,36,["G5048","G3588","G4334"]]]},{"k":30135,"v":[[0,2,["G1893"]],[2,5,["G3756"]],[5,7,["G3973","G302"]],[7,10,["G4374"]],[10,13,["G3588"]],[13,14,["G3000"]],[14,15,["G530"]],[15,16,["G2508"]],[16,19,["G2192"]],[19,21,["G2089","G3367"]],[21,22,["G4893"]],[22,24,["G266"]]]},{"k":30136,"v":[[0,1,["G235"]],[1,2,["G1722"]],[2,3,["G846"]],[3,9,["G364"]],[9,12,["G266"]],[12,14,["G2596","G1763"]]]},{"k":30137,"v":[[0,1,["G1063"]],[1,5,["G102"]],[5,8,["G129"]],[8,10,["G5022"]],[10,11,["G2532"]],[11,13,["G5131"]],[13,16,["G851"]],[16,17,["G266"]]]},{"k":30138,"v":[[0,1,["G1352"]],[1,4,["G1525"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G2889"]],[7,9,["G3004"]],[9,10,["G2378"]],[10,11,["G2532"]],[11,12,["G4376"]],[12,14,["G2309"]],[14,15,["G3756"]],[15,16,["G1161"]],[16,18,["G4983"]],[18,21,["G2675"]],[21,22,["G3427"]]]},{"k":30139,"v":[[0,3,["G3646"]],[3,4,["G2532"]],[4,6,["G4012"]],[6,7,["G266"]],[7,12,["G2106","G3756"]]]},{"k":30140,"v":[[0,1,["G5119"]],[1,2,["G2036"]],[2,4,["G2400"]],[4,6,["G2240"]],[6,7,["G1722"]],[7,9,["G2777"]],[9,12,["G975"]],[12,15,["G1125"]],[15,16,["G4012"]],[16,18,["G1700"]],[18,19,["G4160"]],[19,20,["G4675"]],[20,21,["G2307"]],[21,23,["G2316"]]]},{"k":30141,"v":[[0,1,["G511"]],[1,4,["G3004"]],[4,5,["G2378"]],[5,6,["G2532"]],[6,7,["G4374"]],[7,8,["G2532"]],[8,10,["G3646"]],[10,11,["G2532"]],[11,13,["G4012"]],[13,14,["G266"]],[14,16,["G2309"]],[16,17,["G3756"]],[17,18,["G3761"]],[18,20,["G2106"]],[20,22,["G3748"]],[22,24,["G4376"]],[24,25,["G2596"]],[25,26,["G3588"]],[26,27,["G3551"]]]},{"k":30142,"v":[[0,1,["G5119"]],[1,2,["G2046"]],[2,4,["G2400"]],[4,6,["G2240"]],[6,8,["G4160"]],[8,9,["G4675"]],[9,10,["G2307"]],[10,12,["G2316"]],[12,15,["G337"]],[15,16,["G3588"]],[16,17,["G4413"]],[17,18,["G2443"]],[18,21,["G2476"]],[21,22,["G3588"]],[22,23,["G1208"]]]},{"k":30143,"v":[[0,1,["G1722"]],[1,3,["G3739"]],[3,4,["G2307"]],[4,6,["G2070"]],[6,7,["G37"]],[7,8,["G1223"]],[8,9,["G3588"]],[9,10,["G4376"]],[10,12,["G3588"]],[12,13,["G4983"]],[13,15,["G2424"]],[15,16,["G5547"]],[16,17,["G2178"]],[17,19,[]]]},{"k":30144,"v":[[0,1,["G2532"]],[1,2,["G3956","(G3303)"]],[2,3,["G2409"]],[3,4,["G2476"]],[4,5,["G2596","G2250"]],[5,6,["G3008"]],[6,7,["G2532"]],[7,8,["G4374"]],[8,9,["G4178"]],[9,10,["G3588"]],[10,11,["G846"]],[11,12,["G2378"]],[12,13,["G3748"]],[13,14,["G1410"]],[14,15,["G3763"]],[15,17,["G4014"]],[17,18,["G266"]]]},{"k":30145,"v":[[0,1,["G1161"]],[1,3,["G846"]],[3,7,["G4374"]],[7,8,["G3391"]],[8,9,["G2378"]],[9,10,["G5228"]],[10,11,["G266"]],[11,13,["G1519","G1336"]],[13,15,["G2523"]],[15,16,["G1722"]],[16,19,["G1188"]],[19,21,["G2316"]]]},{"k":30146,"v":[[0,2,["G3063"]],[2,3,["G1551"]],[3,4,["G2193"]],[4,5,["G846"]],[5,6,["G2190"]],[6,8,["G5087"]],[8,10,["G5286","G846","G4228"]]]},{"k":30147,"v":[[0,1,["G1063"]],[1,3,["G3391"]],[3,4,["G4376"]],[4,7,["G5048"]],[7,9,["G1519","G1336"]],[9,13,["G37"]]]},{"k":30148,"v":[[0,1,["(G1161)"]],[1,2,["G3588"]],[2,3,["G40"]],[3,4,["G4151"]],[4,5,["G2532"]],[5,8,["G3140"]],[8,10,["G2254"]],[10,11,["G1063"]],[11,12,["G3326"]],[12,17,["G4280"]]]},{"k":30149,"v":[[0,1,["G3778"]],[1,3,["G3588"]],[3,4,["G1242"]],[4,5,["G3739"]],[5,8,["G1303"]],[8,9,["G4314"]],[9,10,["G846"]],[10,11,["G3326"]],[11,12,["G1565"]],[12,13,["G2250"]],[13,14,["G3004"]],[14,16,["G2962"]],[16,19,["G1325"]],[19,20,["G3450"]],[20,21,["G3551"]],[21,22,["G1909"]],[22,23,["G846"]],[23,24,["G2588"]],[24,25,["G2532"]],[25,26,["G1909"]],[26,27,["G846"]],[27,28,["G1271"]],[28,31,["G1924"]],[31,32,["G846"]]]},{"k":30150,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G266"]],[3,4,["G2532"]],[4,5,["(G458)"]],[5,8,["G3415"]],[8,10,["G3364","G2089"]]]},{"k":30151,"v":[[0,1,["G1161"]],[1,2,["G3699"]],[2,3,["G859"]],[3,5,["G5130"]],[5,10,["G3765"]],[10,11,["G4376"]],[11,12,["G4012"]],[12,13,["G266"]]]},{"k":30152,"v":[[0,1,["G2192"]],[1,2,["G3767"]],[2,3,["G80"]],[3,4,["G3954"]],[4,7,["G1519","G1529"]],[7,8,["G3588"]],[8,9,["G39"]],[9,10,["G1722"]],[10,11,["G3588"]],[11,12,["G129"]],[12,14,["G2424"]]]},{"k":30153,"v":[[0,3,["G4372"]],[3,4,["G2532"]],[4,5,["G2198"]],[5,6,["G3598"]],[6,7,["G3739"]],[7,10,["G1457"]],[10,12,["G2254"]],[12,13,["G1223"]],[13,14,["G3588"]],[14,15,["G2665"]],[15,19,["G5123"]],[19,20,["G848"]],[20,21,["G4561"]]]},{"k":30154,"v":[[0,1,["G2532"]],[1,4,["G3173"]],[4,5,["G2409"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G3624"]],[8,10,["G2316"]]]},{"k":30155,"v":[[0,4,["G4334"]],[4,5,["G3326"]],[5,7,["G228"]],[7,8,["G2588"]],[8,9,["G1722"]],[9,11,["G4136"]],[11,13,["G4102"]],[13,16,["G2588"]],[16,17,["G4472"]],[17,18,["G575"]],[18,20,["G4190"]],[20,21,["G4893"]],[21,22,["G2532"]],[22,24,["G4983"]],[24,25,["G3068"]],[25,27,["G2513"]],[27,28,["G5204"]]]},{"k":30156,"v":[[0,4,["G2722"]],[4,5,["G3588"]],[5,6,["G3671"]],[6,9,["G1680"]],[9,11,["G186"]],[11,12,["G1063"]],[12,15,["G4103"]],[15,17,["G1861"]]]},{"k":30157,"v":[[0,1,["G2532"]],[1,4,["G2657"]],[4,6,["G240"]],[6,9,["G1519","G3948"]],[9,10,["G26"]],[10,11,["G2532"]],[11,13,["G2570"]],[13,14,["G2041"]]]},{"k":30158,"v":[[0,1,["G3361"]],[1,2,["G1459"]],[2,3,["G3588"]],[3,7,["G1997","G1438"]],[7,8,["G2531"]],[8,10,["G1485"]],[10,12,["G5100"]],[12,14,["G235"]],[14,15,["G3870"]],[15,18,["G2532"]],[18,20,["G5118"]],[20,22,["G3123"]],[22,23,["G3745"]],[23,25,["G991"]],[25,26,["G3588"]],[26,27,["G2250"]],[27,28,["G1448"]]]},{"k":30159,"v":[[0,1,["G1063"]],[1,3,["G2257"]],[3,4,["G264"]],[4,5,["G1596"]],[5,10,["G2983"]],[10,11,["G3588"]],[11,12,["G1922"]],[12,14,["G3588"]],[14,15,["G225"]],[15,17,["G620"]],[17,19,["G3765"]],[19,20,["G2378"]],[20,21,["G4012"]],[21,22,["G266"]]]},{"k":30160,"v":[[0,1,["G1161"]],[1,3,["G5100"]],[3,4,["G5398"]],[4,6,["G1561"]],[6,8,["G2920"]],[8,9,["G2532"]],[9,10,["G4442"]],[10,11,["G2205"]],[11,13,["G3195"]],[13,14,["G2068"]],[14,15,["G3588"]],[15,16,["G5227"]]]},{"k":30161,"v":[[0,1,["G5100"]],[1,3,["G114"]],[3,4,["G3475"]],[4,5,["G3551"]],[5,6,["G599"]],[6,7,["G5565"]],[7,8,["G3628"]],[8,9,["G1909"]],[9,10,["G1417"]],[10,11,["G2228"]],[11,12,["G5140"]],[12,13,["G3144"]]]},{"k":30162,"v":[[0,3,["G4214"]],[3,4,["G5501"]],[4,5,["G5098"]],[5,6,["G1380"]],[6,12,["G515"]],[12,17,["G2662"]],[17,18,["G3588"]],[18,19,["G5207"]],[19,21,["G2316"]],[21,22,["G2532"]],[22,24,["G2233"]],[24,25,["G3588"]],[25,26,["G129"]],[26,28,["G3588"]],[28,29,["G1242"]],[29,30,["G1722","G3739"]],[30,33,["G37"]],[33,36,["G2839"]],[36,37,["G2532"]],[37,40,["G1796"]],[40,42,["G3588"]],[42,43,["G4151"]],[43,45,["G5485"]]]},{"k":30163,"v":[[0,1,["G1063"]],[1,3,["G1492"]],[3,7,["G2036"]],[7,8,["G1557"]],[8,11,["G1698"]],[11,12,["G1473"]],[12,14,["G467"]],[14,15,["G3004"]],[15,17,["G2962"]],[17,18,["G2532"]],[18,19,["G3825"]],[19,21,["G2962"]],[21,23,["G2919"]],[23,24,["G848"]],[24,25,["G2992"]]]},{"k":30164,"v":[[0,5,["G5398"]],[5,7,["G1706"]],[7,8,["G1519"]],[8,10,["G5495"]],[10,13,["G2198"]],[13,14,["G2316"]]]},{"k":30165,"v":[[0,1,["G1161"]],[1,4,["G363"]],[4,5,["G3588"]],[5,6,["G4386"]],[6,7,["G2250"]],[7,8,["G1722"]],[8,9,["G3739"]],[9,13,["G5461"]],[13,15,["G5278"]],[15,17,["G4183"]],[17,18,["G119"]],[18,20,["G3804"]]]},{"k":30166,"v":[[0,1,["G5124","G3303"]],[1,7,["G2301"]],[7,8,["G5037"]],[8,10,["G3680"]],[10,11,["G2532"]],[11,12,["G2347"]],[12,13,["G1161"]],[13,14,["G5124"]],[14,17,["G1096"]],[17,18,["G2844"]],[18,24,["G390","G3779"]]]},{"k":30167,"v":[[0,1,["G1063"]],[1,4,["G4834","(G2532)"]],[4,8,["G3450"]],[8,9,["G1199"]],[9,10,["G2532"]],[10,11,["G4327"]],[11,12,["G3326","G5479"]],[12,13,["G3588"]],[13,14,["G724"]],[14,16,["G5216"]],[16,17,["G5224"]],[17,18,["G1097"]],[18,19,["G1722"]],[19,20,["G1438"]],[20,23,["G2192"]],[23,24,["G1722"]],[24,25,["G3772"]],[25,27,["G2909"]],[27,28,["G2532"]],[28,30,["G3306"]],[30,31,["G5223"]]]},{"k":30168,"v":[[0,3,["G577","G3361"]],[3,4,["G3767"]],[4,5,["G5216"]],[5,6,["G3954"]],[6,7,["G3748"]],[7,8,["G2192"]],[8,9,["G3173"]],[9,12,["G3405"]]]},{"k":30169,"v":[[0,1,["G1063"]],[1,3,["G2192"]],[3,4,["G5532"]],[4,6,["G5281"]],[6,7,["G2443"]],[7,11,["G4160"]],[11,12,["G3588"]],[12,13,["G2307"]],[13,15,["G2316"]],[15,18,["G2865"]],[18,19,["G3588"]],[19,20,["G1860"]]]},{"k":30170,"v":[[0,1,["G1063"]],[1,2,["G2089"]],[2,5,["G3397","G3745","G3745"]],[5,10,["G2064"]],[10,12,["G2240"]],[12,13,["G2532"]],[13,15,["G3756"]],[15,16,["G5549"]]]},{"k":30171,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1342"]],[3,5,["G2198"]],[5,6,["G1537"]],[6,7,["G4102"]],[7,8,["G2532"]],[8,9,["G1437"]],[9,13,["G5288"]],[13,14,["G3450"]],[14,15,["G5590"]],[15,19,["G2106","G3756"]],[19,20,["G1722"]],[20,21,["G846"]]]},{"k":30172,"v":[[0,1,["G1161"]],[1,2,["G2249"]],[2,3,["G2070"]],[3,4,["G3756"]],[4,9,["G5289"]],[9,10,["G1519"]],[10,11,["G684"]],[11,12,["G235"]],[12,16,["G4102"]],[16,19,["G1519","G4047"]],[19,22,["G5590"]]]},{"k":30173,"v":[[0,1,["G1161"]],[1,2,["G4102"]],[2,3,["G2076"]],[3,5,["G5287"]],[5,9,["G1679"]],[9,11,["G1650"]],[11,13,["G4229"]],[13,14,["G3756"]],[14,15,["G991"]]]},{"k":30174,"v":[[0,1,["G1063"]],[1,2,["G1722"]],[2,3,["G5026"]],[3,4,["G3588"]],[4,5,["G4245"]],[5,9,["G3140"]]]},{"k":30175,"v":[[0,2,["G4102"]],[2,4,["G3539"]],[4,6,["G3588"]],[6,7,["G165"]],[7,9,["G2675"]],[9,12,["G4487"]],[12,14,["G2316"]],[14,20,["G991"]],[20,22,["G3361"]],[22,23,["G1096"]],[23,24,["G1537"]],[24,28,["G5316"]]]},{"k":30176,"v":[[0,2,["G4102"]],[2,3,["G6"]],[3,4,["G4374"]],[4,6,["G2316"]],[6,9,["G4119"]],[9,10,["G2378"]],[10,11,["G3844"]],[11,12,["G2535"]],[12,13,["G1223"]],[13,14,["G3739"]],[14,17,["G3140"]],[17,20,["G1511"]],[20,21,["G1342"]],[21,22,["G2316"]],[22,23,["G3140"]],[23,24,["G1909"]],[24,25,["G846"]],[25,26,["G1435"]],[26,27,["G2532"]],[27,28,["G1223"]],[28,29,["G846"]],[29,32,["G599"]],[32,33,["G2089"]],[33,34,["G2980"]]]},{"k":30177,"v":[[0,2,["G4102"]],[2,3,["G1802"]],[3,5,["G3346"]],[5,9,["G3361"]],[9,10,["G1492"]],[10,11,["G2288"]],[11,12,["G2532"]],[12,14,["G3756"]],[14,15,["G2147"]],[15,16,["G1360"]],[16,17,["G2316"]],[17,19,["G3346"]],[19,20,["G846"]],[20,21,["G1063"]],[21,22,["G4253"]],[22,23,["G846"]],[23,24,["G3331"]],[24,28,["G3140"]],[28,31,["G2100"]],[31,32,["G2316"]]]},{"k":30178,"v":[[0,1,["G1161"]],[1,2,["G5565"]],[2,3,["G4102"]],[3,6,["G102"]],[6,8,["G2100"]],[8,10,["G1063"]],[10,13,["G4334"]],[13,15,["G2316"]],[15,16,["G1163"]],[16,17,["G4100"]],[17,18,["G3754"]],[18,20,["G2076"]],[20,21,["G2532"]],[21,24,["G1096"]],[24,26,["G3406"]],[26,31,["G1567"]],[31,32,["G846"]]]},{"k":30179,"v":[[0,2,["G4102"]],[2,3,["G3575"]],[3,7,["G5537"]],[7,8,["G4012"]],[8,13,["G3369","G991"]],[13,16,["G2125"]],[16,17,["G2680"]],[17,19,["G2787"]],[19,22,["G1519","G4991"]],[22,24,["G848"]],[24,25,["G3624"]],[25,26,["G1223"]],[26,28,["G3739"]],[28,30,["G2632"]],[30,31,["G3588"]],[31,32,["G2889"]],[32,33,["G2532"]],[33,34,["G1096"]],[34,35,["G2818"]],[35,37,["G3588"]],[37,38,["G1343"]],[38,41,["G2596"]],[41,42,["G4102"]]]},{"k":30180,"v":[[0,2,["G4102"]],[2,3,["G11"]],[3,7,["G2564"]],[7,10,["G1831"]],[10,11,["G1519"]],[11,13,["G5117"]],[13,14,["G3739"]],[14,17,["G3195"]],[17,18,["G2983"]],[18,19,["G1519"]],[19,21,["G2817"]],[21,22,["G5219"]],[22,23,["G2532"]],[23,26,["G1831"]],[26,27,["G3361"]],[27,28,["G1987"]],[28,29,["G4226"]],[29,31,["G2064"]]]},{"k":30181,"v":[[0,2,["G4102"]],[2,4,["G3939"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G1093"]],[7,9,["G1860"]],[9,11,["G5613"]],[11,14,["G245"]],[14,15,["G2730"]],[15,16,["G1722"]],[16,17,["G4633"]],[17,18,["G3326"]],[18,19,["G2464"]],[19,20,["G2532"]],[20,21,["G2384"]],[21,22,["G3588"]],[22,25,["G4789"]],[25,27,["G3588"]],[27,28,["G846"]],[28,29,["G1860"]]]},{"k":30182,"v":[[0,1,["G1063"]],[1,4,["G1551"]],[4,6,["G4172"]],[6,8,["G2192"]],[8,9,["G2310"]],[9,10,["G3739"]],[10,11,["G5079"]],[11,12,["G2532"]],[12,13,["G1217"]],[13,15,["G2316"]]]},{"k":30183,"v":[[0,2,["G4102"]],[2,3,["G2532"]],[3,4,["G4564"]],[4,5,["G846"]],[5,6,["G2983"]],[6,7,["G1411"]],[7,8,["G1519"]],[8,9,["G2602"]],[9,10,["G4690"]],[10,11,["G2532"]],[11,16,["G5088"]],[16,21,["G3844","G2244","G2540"]],[21,22,["G1893"]],[22,24,["G2233"]],[24,26,["G4103"]],[26,29,["G1861"]]]},{"k":30184,"v":[[0,1,["G1352"]],[1,2,["G1080"]],[2,4,["G2532"]],[4,5,["G575"]],[5,6,["G1520"]],[6,7,["G2532"]],[7,8,["G5023"]],[8,12,["G3499"]],[12,15,["G2531"]],[15,16,["G3588"]],[16,17,["G798"]],[17,19,["G3588"]],[19,20,["G3772"]],[20,22,["G4128"]],[22,23,["G2532"]],[23,24,["G5616"]],[24,26,["G285"]],[26,27,["G3588"]],[27,29,["G3844"]],[29,30,["G3588"]],[30,32,["G5491","G2281"]],[32,33,["G382"]]]},{"k":30185,"v":[[0,1,["G3778"]],[1,2,["G3956"]],[2,3,["G599"]],[3,4,["G2596"]],[4,5,["G4102"]],[5,6,["G3361"]],[6,8,["G2983"]],[8,9,["G3588"]],[9,10,["G1860"]],[10,11,["G235"]],[11,13,["G1492"]],[13,14,["G846"]],[14,16,["G4207"]],[16,17,["G2532"]],[17,19,["G3982"]],[19,22,["G2532"]],[22,23,["G782"]],[23,25,["G2532"]],[25,26,["G3670"]],[26,27,["G3754"]],[27,29,["G1526"]],[29,30,["G3581"]],[30,31,["G2532"]],[31,32,["G3927"]],[32,33,["G1909"]],[33,34,["G3588"]],[34,35,["G1093"]]]},{"k":30186,"v":[[0,1,["G1063"]],[1,4,["G3004"]],[4,6,["G5108"]],[6,8,["G1718"]],[8,9,["G3754"]],[9,11,["G1934"]],[11,13,["G3968"]]]},{"k":30187,"v":[[0,1,["G2532"]],[1,2,["G3303"]],[2,3,["G1487"]],[3,7,["G3421"]],[7,9,["G1565"]],[9,11,["G575"]],[11,12,["G3739"]],[12,15,["G1831"]],[15,19,["G2192","G302"]],[19,20,["G2540"]],[20,23,["G344"]]]},{"k":30188,"v":[[0,1,["G1161"]],[1,2,["G3570"]],[2,4,["G3713"]],[4,6,["G2909"]],[6,9,["G5123"]],[9,11,["G2032"]],[11,12,["G1352"]],[12,13,["G2316"]],[13,15,["G3756"]],[15,16,["G1870"]],[16,19,["G1941"]],[19,20,["G846"]],[20,21,["G2316"]],[21,22,["G1063"]],[22,25,["G2090"]],[25,27,["G846"]],[27,29,["G4172"]]]},{"k":30189,"v":[[0,2,["G4102"]],[2,3,["G11"]],[3,7,["G3985"]],[7,9,["G4374"]],[9,10,["G2464"]],[10,11,["G2532"]],[11,15,["G324"]],[15,16,["G3588"]],[16,17,["G1860"]],[17,19,["G4374"]],[19,22,["G3439"]],[22,23,[]]]},{"k":30190,"v":[[0,1,["G4314"]],[1,2,["G3739"]],[2,5,["G2980"]],[5,6,["G3754"]],[6,7,["G1722"]],[7,8,["G2464"]],[8,10,["G4671"]],[10,11,["G4690"]],[11,13,["G2564"]]]},{"k":30191,"v":[[0,1,["G3049"]],[1,2,["G3754"]],[2,3,["G2316"]],[3,5,["G1415"]],[5,9,["G1453"]],[9,10,["G2532"]],[10,11,["G1537"]],[11,13,["G3498"]],[13,15,["G3606"]],[15,16,["G2532"]],[16,18,["G2865"]],[18,19,["G846"]],[19,20,["G1722"]],[20,22,["G3850"]]]},{"k":30192,"v":[[0,2,["G4102"]],[2,3,["G2464"]],[3,4,["G2127"]],[4,5,["G2384"]],[5,6,["G2532"]],[6,7,["G2269"]],[7,8,["G4012"]],[8,11,["G3195"]]]},{"k":30193,"v":[[0,2,["G4102"]],[2,3,["G2384"]],[3,8,["G599"]],[8,9,["G2127"]],[9,10,["G1538"]],[10,11,["G3588"]],[11,12,["G5207"]],[12,14,["G2501"]],[14,15,["G2532"]],[15,16,["G4352"]],[16,18,["G1909"]],[18,19,["G3588"]],[19,20,["G206"]],[20,22,["G848"]],[22,23,["G4464"]]]},{"k":30194,"v":[[0,2,["G4102"]],[2,3,["G2501"]],[3,6,["G5053"]],[6,8,["G3421"]],[8,9,["G4012"]],[9,10,["G3588"]],[10,11,["G1841"]],[11,13,["G3588"]],[13,14,["G5207"]],[14,16,["G2474"]],[16,17,["G2532"]],[17,19,["G1781"]],[19,20,["G4012"]],[20,21,["G848"]],[21,22,["G3747"]]]},{"k":30195,"v":[[0,2,["G4102"]],[2,3,["G3475"]],[3,7,["G1080"]],[7,9,["G2928"]],[9,11,["G5150"]],[11,12,["G5259"]],[12,13,["G848"]],[13,14,["G3962"]],[14,15,["G1360"]],[15,17,["G1492"]],[17,21,["G791"]],[21,22,["G3813"]],[22,23,["G2532"]],[23,27,["G5399","G3756"]],[27,29,["G3588"]],[29,30,["G935"]],[30,31,["G1297"]]]},{"k":30196,"v":[[0,2,["G4102"]],[2,3,["G3475"]],[3,9,["G1096","G3173"]],[9,10,["G720"]],[10,13,["G3004"]],[13,15,["G5207"]],[15,17,["G5328"]],[17,18,["G2364"]]]},{"k":30197,"v":[[0,1,["G138"]],[1,2,["G3123"]],[2,6,["G4778"]],[6,7,["G3588"]],[7,8,["G2992"]],[8,10,["G2316"]],[10,11,["G2228"]],[11,15,["G2192","G619"]],[15,17,["G266"]],[17,20,["G4340"]]]},{"k":30198,"v":[[0,1,["G2233"]],[1,2,["G3588"]],[2,3,["G3680"]],[3,5,["G5547"]],[5,6,["G3187"]],[6,7,["G4149"]],[7,9,["G3588"]],[9,10,["G2344"]],[10,11,["G1722"]],[11,12,["G125"]],[12,13,["G1063"]],[13,16,["G578"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,22,["G3405"]]]},{"k":30199,"v":[[0,2,["G4102"]],[2,4,["G2641"]],[4,5,["G125"]],[5,6,["G3361"]],[6,7,["G5399"]],[7,8,["G3588"]],[8,9,["G2372"]],[9,11,["G3588"]],[11,12,["G935"]],[12,13,["G1063"]],[13,15,["G2594"]],[15,16,["G5613"]],[16,17,["G3708"]],[17,21,["G517"]]]},{"k":30200,"v":[[0,2,["G4102"]],[2,4,["G4160"]],[4,5,["G3588"]],[5,6,["G3957"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G4378"]],[9,11,["G129"]],[11,12,["G3363"]],[12,15,["G3645"]],[15,16,["G3588"]],[16,17,["G4416"]],[17,19,["G2345"]],[19,20,["G846"]]]},{"k":30201,"v":[[0,2,["G4102"]],[2,5,["G1224"]],[5,6,["G3588"]],[6,7,["G2063"]],[7,8,["G2281"]],[8,9,["G5613"]],[9,10,["G1223"]],[10,11,["G3584"]],[11,13,["G3739"]],[13,14,["G3588"]],[14,15,["G124"]],[15,18,["G2983","G3984"]],[18,20,["G2666"]]]},{"k":30202,"v":[[0,2,["G4102"]],[2,3,["G3588"]],[3,4,["G5038"]],[4,6,["G2410"]],[6,8,["G4098"]],[8,13,["G2944","(G1909)"]],[13,14,["G2033"]],[14,15,["G2250"]]]},{"k":30203,"v":[[0,2,["G4102"]],[2,3,["G3588"]],[3,4,["G4204"]],[4,5,["G4460"]],[5,6,["G4881"]],[6,7,["G3756"]],[7,12,["G544"]],[12,16,["G1209"]],[16,17,["G3588"]],[17,18,["G2685"]],[18,19,["G3326"]],[19,20,["G1515"]]]},{"k":30204,"v":[[0,1,["G2532"]],[1,2,["G5101"]],[2,5,["G2089"]],[5,6,["G3004"]],[6,7,["G1063"]],[7,8,["G3588"]],[8,9,["G5550"]],[9,11,["G1952"]],[11,12,["G3165"]],[12,14,["G1334"]],[14,15,["G4012"]],[15,16,["G1066"]],[16,17,["G5037"]],[17,19,["G913"]],[19,20,["G2532"]],[20,22,["G4546"]],[22,23,["G2532"]],[23,25,["G2422"]],[25,27,["G1138"]],[27,28,["G5037"]],[28,29,["G2532"]],[29,30,["G4545"]],[30,31,["G2532"]],[31,33,["G3588"]],[33,34,["G4396"]]]},{"k":30205,"v":[[0,1,["G3739"]],[1,2,["G1223"]],[2,3,["G4102"]],[3,4,["G2610"]],[4,5,["G932"]],[5,6,["G2038"]],[6,7,["G1343"]],[7,8,["G2013"]],[8,9,["G1860"]],[9,10,["G5420"]],[10,12,["G4750"]],[12,14,["G3023"]]]},{"k":30206,"v":[[0,1,["G4570"]],[1,3,["G1411"]],[3,5,["G4442"]],[5,6,["G5343"]],[6,8,["G4750"]],[8,11,["G3162"]],[11,13,["G575"]],[13,14,["G769"]],[14,17,["G1743"]],[17,18,["G1096"]],[18,19,["G2478"]],[19,20,["G1722"]],[20,21,["G4171"]],[21,24,["G2827"]],[24,26,["G3925"]],[26,29,["G245"]]]},{"k":30207,"v":[[0,1,["G1135"]],[1,2,["G2983"]],[2,3,["G848"]],[3,4,["G3498"]],[4,8,["G1537","G386"]],[8,9,["G1161"]],[9,10,["G243"]],[10,12,["G5178"]],[12,13,["G3756"]],[13,14,["G4327"]],[14,15,["G629"]],[15,16,["G2443"]],[16,19,["G5177"]],[19,21,["G2909"]],[21,22,["G386"]]]},{"k":30208,"v":[[0,1,["G1161"]],[1,2,["G2087"]],[2,3,["G2983"]],[3,4,["G3984"]],[4,7,["G1701"]],[7,8,["G2532"]],[8,9,["G3148"]],[9,10,["G1161"]],[10,11,["G2089"]],[11,13,["G1199"]],[13,14,["G2532"]],[14,15,["G5438"]]]},{"k":30209,"v":[[0,3,["G3034"]],[3,7,["G4249"]],[7,9,["G3985"]],[9,11,["G599"]],[11,12,["G1722"]],[12,13,["(G5408)"]],[13,14,["G3162"]],[14,17,["G4022"]],[17,18,["G1722"]],[18,19,["G3374"]],[19,20,["G2532"]],[20,21,["(G122)","G1192"]],[21,23,["G5302"]],[23,24,["G2346"]],[24,25,["G2558"]]]},{"k":30210,"v":[[0,2,["G3739"]],[2,3,["G3588"]],[3,4,["G2889"]],[4,5,["G2258"]],[5,6,["G3756"]],[6,8,["G514"]],[8,9,["G4105"]],[9,10,["G1722"]],[10,11,["G2047"]],[11,12,["G2532"]],[12,14,["G3735"]],[14,15,["G2532"]],[15,17,["G4693"]],[17,18,["G2532"]],[18,19,["G3692"]],[19,21,["G3588"]],[21,22,["G1093"]]]},{"k":30211,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G3956"]],[3,8,["G3140"]],[8,9,["G1223"]],[9,10,["G4102"]],[10,11,["G2865"]],[11,12,["G3756"]],[12,13,["G3588"]],[13,14,["G1860"]]]},{"k":30212,"v":[[0,1,["G2316"]],[1,3,["G4265"]],[3,4,["G5100"]],[4,6,["G2909"]],[6,7,["G4012"]],[7,8,["G2257"]],[8,9,["G2443"]],[9,11,["G5565"]],[11,12,["G2257"]],[12,14,["G3361"]],[14,17,["G5048"]]]},{"k":30213,"v":[[0,1,["G5105"]],[1,3,["G2249"]],[3,4,["G2532"]],[4,7,["(G4029)"]],[7,8,["(G2254)"]],[8,10,["G5118"]],[10,12,["G3509"]],[12,14,["G3144"]],[14,18,["G659"]],[18,19,["G3956"]],[19,20,["G3591"]],[20,21,["G2532"]],[21,23,["G266"]],[23,28,["G2139"]],[28,30,["G2532"]],[30,33,["G5143"]],[33,34,["G1223"]],[34,35,["G5281"]],[35,36,["G3588"]],[36,37,["G73"]],[37,41,["G4295"]],[41,42,["G2254"]]]},{"k":30214,"v":[[0,1,["G872"]],[1,2,["G1519"]],[2,3,["G2424"]],[3,4,["G3588"]],[4,5,["G747"]],[5,6,["G2532"]],[6,7,["G5051"]],[7,10,["G4102"]],[10,11,["G3739"]],[11,12,["G473"]],[12,13,["G3588"]],[13,14,["G5479"]],[14,18,["G4295"]],[18,19,["G848"]],[19,20,["G5278"]],[20,22,["G4716"]],[22,23,["G2706"]],[23,25,["G152"]],[25,26,["G5037"]],[26,29,["G2523"]],[29,30,["G1722"]],[30,33,["G1188"]],[33,35,["G3588"]],[35,36,["G2362"]],[36,38,["G2316"]]]},{"k":30215,"v":[[0,1,["G1063"]],[1,2,["G357"]],[2,5,["G5278"]],[5,6,["G5108"]],[6,7,["G485"]],[7,8,["G5259"]],[8,9,["G268"]],[9,10,["G1519"]],[10,11,["G848"]],[11,12,["G3363"]],[12,15,["G2577"]],[15,17,["G1590"]],[17,19,["G5216"]],[19,20,["G5590"]]]},{"k":30216,"v":[[0,4,["G3768"]],[4,5,["G478"]],[5,6,["G3360"]],[6,7,["G129"]],[7,8,["G464"]],[8,9,["G4314"]],[9,10,["G266"]]]},{"k":30217,"v":[[0,1,["G2532"]],[1,4,["G1585"]],[4,5,["G3588"]],[5,6,["G3874"]],[6,7,["G3748"]],[7,8,["G1256"]],[8,10,["G5213"]],[10,11,["G5613"]],[11,13,["G5207"]],[13,14,["G3450"]],[14,15,["G5207"]],[15,16,["G3643"]],[16,17,["G3361"]],[17,20,["G3809"]],[20,23,["G2962"]],[23,24,["G3366"]],[24,25,["G1590"]],[25,29,["G1651"]],[29,30,["G5259"]],[30,31,["G846"]]]},{"k":30218,"v":[[0,1,["G1063"]],[1,2,["G3739"]],[2,4,["G2962"]],[4,5,["G25"]],[5,7,["G3811"]],[7,8,["G1161"]],[8,9,["G3146"]],[9,10,["G3956"]],[10,11,["G5207"]],[11,12,["G3739"]],[12,14,["G3858"]]]},{"k":30219,"v":[[0,1,["G1487"]],[1,3,["G5278"]],[3,4,["G3809"]],[4,5,["G2316"]],[5,6,["G4374"]],[6,8,["G5213"]],[8,9,["G5613"]],[9,11,["G5207"]],[11,12,["G1063"]],[12,13,["G5101"]],[13,14,["G5207"]],[14,15,["G2076"]],[15,17,["G3739"]],[17,19,["G3962"]],[19,20,["G3811"]],[20,21,["G3756"]]]},{"k":30220,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G2075"]],[4,5,["G5565"]],[5,6,["G3809"]],[6,7,["G3739"]],[7,8,["G3956"]],[8,9,["G1096"]],[9,10,["G3353"]],[10,11,["G686"]],[11,12,["G2075"]],[12,14,["G3541"]],[14,15,["G2532"]],[15,16,["G3756"]],[16,17,["G5207"]]]},{"k":30221,"v":[[0,1,["G1534"]],[1,4,["G2192"]],[4,5,["G3962"]],[5,7,["G2257"]],[7,8,["G4561"]],[8,10,["(G3810)"]],[10,12,["G2532"]],[12,16,["G1788"]],[16,19,["G3756"]],[19,20,["G4183"]],[20,21,["G3123"]],[21,24,["G5293"]],[24,26,["G3588"]],[26,27,["G3962"]],[27,29,["G4151"]],[29,30,["G2532"]],[30,31,["G2198"]]]},{"k":30222,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G3303"]],[3,4,["G4314"]],[4,6,["G3641"]],[6,7,["G2250"]],[7,8,["G3811"]],[8,10,["G2596"]],[10,12,["G848"]],[12,13,["G1380"]],[13,14,["G1161"]],[14,15,["G3588"]],[15,16,["G1909"]],[16,18,["G4851"]],[18,23,["G3335"]],[23,25,["G846"]],[25,26,["G41"]]]},{"k":30223,"v":[[0,1,["G1161"]],[1,2,["G3956","G3756"]],[2,3,["G3809"]],[3,4,["G4314"]],[4,5,["G3588"]],[5,6,["G3918"]],[6,7,["G1380"]],[7,9,["G1511"]],[9,10,["G5479"]],[10,11,["G235"]],[11,12,["G3077"]],[12,13,["G1161"]],[13,14,["G5305"]],[14,16,["G591"]],[16,18,["G1516"]],[18,19,["G2590"]],[19,21,["G1343"]],[21,26,["G1128"]],[26,27,["G1223","G846"]]]},{"k":30224,"v":[[0,1,["G1352"]],[1,3,["G461"]],[3,5,["G5495"]],[5,6,["G3588"]],[6,8,["G3935"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G3886"]],[11,12,["G1119"]]]},{"k":30225,"v":[[0,1,["G2532"]],[1,2,["G4160"]],[2,3,["G3717"]],[3,4,["G5163"]],[4,6,["G5216"]],[6,7,["G4228"]],[7,8,["G3363"]],[8,12,["G5560"]],[12,18,["G1624"]],[18,19,["G1161"]],[19,22,["G3123"]],[22,24,["G2390"]]]},{"k":30226,"v":[[0,1,["G1377"]],[1,2,["G1515"]],[2,3,["G3326"]],[3,4,["G3956"]],[4,6,["G2532"]],[6,7,["G38"]],[7,8,["G5565"]],[8,9,["G3739"]],[9,11,["G3762"]],[11,13,["G3700"]],[13,14,["G3588"]],[14,15,["G2962"]]]},{"k":30227,"v":[[0,2,["G1983"]],[2,3,["G3361"]],[3,5,["G5100"]],[5,6,["G5302"]],[6,7,["G575"]],[7,8,["G3588"]],[8,9,["G5485"]],[9,11,["G2316"]],[11,12,["G3361"]],[12,13,["G5100"]],[13,14,["G4491"]],[14,16,["G4088"]],[16,17,["G5453"]],[17,18,["G507"]],[18,19,["G1776"]],[19,21,["G2532"]],[21,22,["G1223","G5026"]],[22,23,["G4183"]],[23,25,["G3392"]]]},{"k":30228,"v":[[0,1,["G3361"]],[1,4,["G5100"]],[4,5,["G4205"]],[5,6,["G2228"]],[6,8,["G952"]],[8,9,["G5613"]],[9,10,["G2269"]],[10,11,["G3739"]],[11,12,["G473"]],[12,13,["G3391"]],[13,16,["G1035"]],[16,17,["G591"]],[17,18,["G848"]],[18,19,["G4415"]]]},{"k":30229,"v":[[0,1,["G1063"]],[1,3,["G2467"]],[3,5,["G3754"]],[5,6,["G3347"]],[6,9,["G2309"]],[9,11,["G2816"]],[11,12,["G3588"]],[12,13,["G2129"]],[13,16,["G593"]],[16,17,["G1063"]],[17,19,["G2147"]],[19,20,["G3756"]],[20,21,["G5117"]],[21,23,["G3341"]],[23,24,["G2539"]],[24,28,["G1567","G846"]],[28,29,["G3326"]],[29,30,["G1144"]]]},{"k":30230,"v":[[0,1,["G1063"]],[1,4,["G3756"]],[4,5,["G4334"]],[5,8,["G3735"]],[8,12,["G5584"]],[12,13,["G2532"]],[13,15,["G2545"]],[15,17,["G4442"]],[17,18,["G2532"]],[18,20,["G1105"]],[20,21,["G2532"]],[21,22,["G4655"]],[22,23,["G2532"]],[23,24,["G2366"]]]},{"k":30231,"v":[[0,1,["G2532"]],[1,3,["G2279"]],[3,6,["G4536"]],[6,7,["G2532"]],[7,9,["G5456"]],[9,11,["G4487"]],[11,12,["G3739"]],[12,16,["G191"]],[16,17,["G3868"]],[17,20,["G3056"]],[20,22,["G3361"]],[22,28,["G4369","G846"]]]},{"k":30232,"v":[[0,1,["G1063"]],[1,4,["G3756"]],[4,5,["G5342"]],[5,9,["G1291"]],[9,14,["G2579"]],[14,16,["G2342"]],[16,17,["G2345"]],[17,18,["G3588"]],[18,19,["G3735"]],[19,23,["G3036"]],[23,26,["G2700"]],[26,29,["G1002"]]]},{"k":30233,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,3,["G5398"]],[3,4,["G2258"]],[4,5,["G3588"]],[5,6,["G5324"]],[6,8,["G3475"]],[8,9,["G2036"]],[9,12,["(G1510)","G1630"]],[12,13,["G2532"]],[13,14,["G1790"]]]},{"k":30234,"v":[[0,1,["G235"]],[1,5,["G4334"]],[5,6,["G3735"]],[6,7,["G4622"]],[7,8,["G2532"]],[8,11,["G4172"]],[11,14,["G2198"]],[14,15,["G2316"]],[15,17,["G2032"]],[17,18,["G2419"]],[18,19,["G2532"]],[19,23,["G3461"]],[23,25,["G32"]]]},{"k":30235,"v":[[0,4,["G3831"]],[4,5,["G2532"]],[5,6,["G1577"]],[6,9,["G4416"]],[9,12,["G583"]],[12,13,["G1722"]],[13,14,["G3772"]],[14,15,["G2532"]],[15,17,["G2316"]],[17,19,["G2923"]],[19,21,["G3956"]],[21,22,["G2532"]],[22,25,["G4151"]],[25,28,["G1342"]],[28,30,["G5048"]]]},{"k":30236,"v":[[0,1,["G2532"]],[1,3,["G2424"]],[3,5,["G3316"]],[5,8,["G3501"]],[8,9,["G1242"]],[9,10,["G2532"]],[10,13,["G129"]],[13,15,["G4473"]],[15,17,["G2980"]],[17,19,["G2909"]],[19,20,["G3844"]],[20,23,["G6"]]]},{"k":30237,"v":[[0,1,["G991"]],[1,4,["G3868"]],[4,5,["G3361"]],[5,8,["G2980"]],[8,9,["G1063"]],[9,10,["G1487"]],[10,11,["G1565"]],[11,12,["G5343"]],[12,13,["G3756"]],[13,15,["G3868"]],[15,18,["G5537"]],[18,19,["G1909"]],[19,20,["G1093"]],[20,21,["G4183"]],[21,22,["G3123"]],[22,25,["G2249"]],[25,31,["G654"]],[31,32,["G3588"]],[32,35,["G575"]],[35,36,["G3772"]]]},{"k":30238,"v":[[0,1,["G3739"]],[1,2,["G5456"]],[2,3,["G5119"]],[3,4,["G4531"]],[4,5,["G3588"]],[5,6,["G1093"]],[6,7,["G1161"]],[7,8,["G3568"]],[8,11,["G1861"]],[11,12,["G3004"]],[12,13,["G2089"]],[13,15,["G530"]],[15,16,["G1473"]],[16,17,["G4579"]],[17,18,["G3756"]],[18,19,["G3588"]],[19,20,["G1093"]],[20,21,["G3440"]],[21,22,["G235"]],[22,23,["G2532"]],[23,24,["G3772"]]]},{"k":30239,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,4,["G2089"]],[4,6,["G530"]],[6,7,["G1213"]],[7,8,["G3588"]],[8,9,["G3331"]],[9,15,["G4531"]],[15,16,["G5613"]],[16,21,["G4160"]],[21,22,["G2443"]],[22,28,["G4531","G3361"]],[28,30,["G3306"]]]},{"k":30240,"v":[[0,1,["G1352"]],[1,3,["G3880"]],[3,5,["G932"]],[5,9,["G761"]],[9,12,["G2192"]],[12,13,["G5485"]],[13,14,["G1223","G3739"]],[14,17,["G3000"]],[17,18,["G2316"]],[18,19,["G2102"]],[19,20,["G3326"]],[20,21,["G127"]],[21,22,["G2532"]],[22,24,["G2124"]]]},{"k":30241,"v":[[0,1,["G1063","(G2532)"]],[1,2,["G2257"]],[2,3,["G2316"]],[3,6,["G2654"]],[6,7,["G4442"]]]},{"k":30242,"v":[[0,3,["G5360"]],[3,4,["G3306"]]]},{"k":30243,"v":[[0,3,["G1950","G3361"]],[3,6,["G5381"]],[6,7,["G1063"]],[7,8,["G1223","G5026"]],[8,9,["G5100"]],[9,11,["G3579"]],[11,12,["G32"]],[12,13,["G2990"]]]},{"k":30244,"v":[[0,1,["G3403"]],[1,6,["G1198"]],[6,7,["G5613"]],[7,9,["G4887"]],[9,15,["G2558"]],[15,16,["G5613"]],[16,17,["G5607"]],[17,18,["G848"]],[18,19,["G2532"]],[19,20,["G1722"]],[20,22,["G4983"]]]},{"k":30245,"v":[[0,1,["G1062"]],[1,3,["G5093"]],[3,4,["G1722"]],[4,5,["G3956"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G2845"]],[8,9,["G283"]],[9,10,["G1161"]],[10,11,["G4205"]],[11,12,["G2532"]],[12,13,["G3432"]],[13,14,["G2316"]],[14,16,["G2919"]]]},{"k":30246,"v":[[0,3,["G5158"]],[3,6,["G866"]],[6,9,["G714"]],[9,15,["G3918"]],[15,16,["G1063"]],[16,17,["G846"]],[17,19,["G2046"]],[19,22,["G3364"]],[22,23,["G447"]],[23,24,["G4571"]],[24,25,["G3761"]],[25,26,["G1459"]],[26,27,["G4571"]]]},{"k":30247,"v":[[0,2,["G5620"]],[2,3,["G2248"]],[3,5,["G2292"]],[5,6,["G3004"]],[6,8,["G2962"]],[8,10,["G1698"]],[10,11,["G998"]],[11,12,["G2532"]],[12,15,["G3756"]],[15,16,["G5399"]],[16,17,["G5101"]],[17,18,["G444"]],[18,20,["G4160"]],[20,22,["G3427"]]]},{"k":30248,"v":[[0,1,["G3421"]],[1,7,["G2233"]],[7,8,["G5216"]],[8,9,["G3748"]],[9,11,["G2980"]],[11,13,["G5213"]],[13,14,["G3588"]],[14,15,["G3056"]],[15,17,["G2316"]],[17,18,["G3739"]],[18,19,["G4102"]],[19,20,["G3401"]],[20,21,["G333"]],[21,22,["G3588"]],[22,23,["G1545"]],[23,26,["G391"]]]},{"k":30249,"v":[[0,1,["G2424"]],[1,2,["G5547"]],[2,3,["G3588"]],[3,4,["G846"]],[4,5,["G5504"]],[5,6,["G2532"]],[6,8,["G4594"]],[8,9,["G2532"]],[9,11,["G1519","G165"]]]},{"k":30250,"v":[[0,2,["G3361"]],[2,4,["G4064"]],[4,6,["G4164"]],[6,7,["G2532"]],[7,8,["G3581"]],[8,9,["G1322"]],[9,10,["G1063"]],[10,15,["G2570"]],[15,17,["G3588"]],[17,18,["G2588"]],[18,20,["G950"]],[20,22,["G5485"]],[22,23,["G3756"]],[23,25,["G1033"]],[25,26,["G3739"]],[26,28,["G3756"]],[28,29,["G5623"]],[29,35,["G4043"]]]},{"k":30251,"v":[[0,2,["G2192"]],[2,4,["G2379"]],[4,5,["G1537","G3739"]],[5,7,["G2192"]],[7,8,["G3756"]],[8,9,["G1849"]],[9,11,["G5315"]],[11,13,["G3000"]],[13,14,["G3588"]],[14,15,["G4633"]]]},{"k":30252,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G4983"]],[3,5,["G5130"]],[5,6,["G2226"]],[6,7,["G3739"]],[7,8,["G129"]],[8,10,["G1533"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G39"]],[13,14,["G1223"]],[14,15,["G3588"]],[15,17,["G749"]],[17,18,["G4012"]],[18,19,["G266"]],[19,21,["G2618"]],[21,22,["G1854"]],[22,23,["G3588"]],[23,24,["G3925"]]]},{"k":30253,"v":[[0,1,["G1352"]],[1,2,["G2424"]],[2,3,["G2532"]],[3,4,["G2443"]],[4,7,["G37"]],[7,8,["G3588"]],[8,9,["G2992"]],[9,10,["G1223"]],[10,12,["G2398"]],[12,13,["G129"]],[13,14,["G3958"]],[14,15,["G1854"]],[15,16,["G3588"]],[16,17,["G4439"]]]},{"k":30254,"v":[[0,4,["G1831"]],[4,5,["G5106"]],[5,6,["G4314"]],[6,7,["G846"]],[7,8,["G1854"]],[8,9,["G3588"]],[9,10,["G3925"]],[10,11,["G5342"]],[11,12,["G846"]],[12,13,["G3680"]]]},{"k":30255,"v":[[0,1,["G1063"]],[1,2,["G5602"]],[2,3,["G2192"]],[3,5,["G3756"]],[5,6,["G3306"]],[6,7,["G4172"]],[7,8,["G235"]],[8,10,["G1934"]],[10,13,["G3195"]]]},{"k":30256,"v":[[0,1,["G1223"]],[1,2,["G846"]],[2,3,["G3767"]],[3,6,["G399"]],[6,8,["G2378"]],[8,10,["G133"]],[10,12,["G2316"]],[12,13,["G1275"]],[13,15,["G5123"]],[15,17,["G2590"]],[17,20,["G5491"]],[20,22,["G3670"]],[22,24,["G846"]],[24,25,["G3686"]]]},{"k":30257,"v":[[0,1,["G1161"]],[1,4,["G2140"]],[4,5,["G2532"]],[5,7,["G2842"]],[7,8,["G1950"]],[8,9,["G3361"]],[9,10,["G1063"]],[10,12,["G5108"]],[12,13,["G2378"]],[13,14,["G2316"]],[14,17,["G2100"]]]},{"k":30258,"v":[[0,1,["G3982"]],[1,7,["G2233"]],[7,8,["G5216"]],[8,9,["G2532"]],[9,10,["G5226"]],[10,12,["G1063"]],[12,13,["G846"]],[13,14,["G69"]],[14,15,["G5228"]],[15,16,["G5216"]],[16,17,["G5590"]],[17,18,["G5613"]],[18,22,["G591"]],[22,23,["G3056"]],[23,24,["G2443"]],[24,27,["G4160"]],[27,28,["G5124"]],[28,29,["G3326"]],[29,30,["G5479"]],[30,31,["G2532"]],[31,32,["G3361"]],[32,34,["G4727"]],[34,35,["G1063"]],[35,36,["G5124"]],[36,38,["G255"]],[38,40,["G5213"]]]},{"k":30259,"v":[[0,1,["G4336"]],[1,2,["G4012"]],[2,3,["G2257"]],[3,4,["G1063"]],[4,6,["G3982"]],[6,7,["(G3754)"]],[7,8,["G2192"]],[8,10,["G2570"]],[10,11,["G4893"]],[11,12,["G1722"]],[12,14,["G3956"]],[14,15,["G2309"]],[15,18,["G390","G2573"]]]},{"k":30260,"v":[[0,1,["G1161"]],[1,3,["G3870"]],[3,6,["G4056"]],[6,8,["G4160"]],[8,9,["G5124"]],[9,10,["G2443"]],[10,14,["G600"]],[14,16,["G5213"]],[16,18,["G5032"]]]},{"k":30261,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2316"]],[3,5,["G1515"]],[5,8,["G321"]],[8,9,["G1537"]],[9,11,["G3498"]],[11,12,["G2257"]],[12,13,["G2962"]],[13,14,["G2424"]],[14,16,["G3173"]],[16,17,["G4166"]],[17,19,["G3588"]],[19,20,["G4263"]],[20,21,["G1722"]],[21,23,["G129"]],[23,26,["G166"]],[26,27,["G1242"]]]},{"k":30262,"v":[[0,3,["G2675","G5209"]],[3,4,["G1722"]],[4,5,["G3956"]],[5,6,["G18"]],[6,7,["G2041"]],[7,9,["G4160"]],[9,10,["G848"]],[10,11,["G2307"]],[11,12,["G4160"]],[12,13,["G1722"]],[13,14,["G5213"]],[14,18,["G2101"]],[18,21,["G1799","G848"]],[21,22,["G1223"]],[22,23,["G2424"]],[23,24,["G5547"]],[24,26,["G3739"]],[26,28,["G1391"]],[28,32,["G1519","G165","G165"]],[32,33,["G281"]]]},{"k":30263,"v":[[0,1,["G1161"]],[1,3,["G3870"]],[3,4,["G5209"]],[4,5,["G80"]],[5,6,["G430"]],[6,7,["G3588"]],[7,8,["G3056"]],[8,10,["G3874"]],[10,11,["G1063"]],[11,13,["(G2532)"]],[13,16,["G1989"]],[16,18,["G5213"]],[18,19,["G1223"]],[19,21,["G1024"]]]},{"k":30264,"v":[[0,1,["G1097"]],[1,5,["G80"]],[5,6,["G5095"]],[6,10,["G630"]],[10,11,["G3326"]],[11,12,["G3739"]],[12,13,["G1437"]],[13,15,["G2064"]],[15,16,["G5032"]],[16,19,["G3700"]],[19,20,["G5209"]]]},{"k":30265,"v":[[0,1,["G782"]],[1,2,["G3956"]],[2,8,["G2233"]],[8,9,["G5216"]],[9,10,["G2532"]],[10,11,["G3956"]],[11,12,["G3588"]],[12,13,["G40"]],[13,14,["G3588"]],[14,15,["G575"]],[15,16,["G2482"]],[16,17,["G782"]],[17,18,["G5209"]]]},{"k":30266,"v":[[0,1,["G5485"]],[1,3,["G3326"]],[3,4,["G5216"]],[4,5,["G3956"]],[5,6,["G281"]]]},{"k":30267,"v":[[0,1,["G2385"]],[1,3,["G1401"]],[3,5,["G2316"]],[5,6,["G2532"]],[6,9,["G2962"]],[9,10,["G2424"]],[10,11,["G5547"]],[11,13,["G3588"]],[13,14,["G1427"]],[14,15,["G5443"]],[15,16,["G3588"]],[16,19,["G1722","G1290"]],[19,20,["G5463"]]]},{"k":30268,"v":[[0,1,["G3450"]],[1,2,["G80"]],[2,3,["G2233"]],[3,5,["G3956"]],[5,6,["G5479"]],[6,7,["G3752"]],[7,10,["G4045"]],[10,11,["G4164"]],[11,12,["G3986"]]]},{"k":30269,"v":[[0,1,["G1097"]],[1,3,["G3754"]],[3,4,["G3588"]],[4,5,["G1383"]],[5,7,["G5216"]],[7,8,["G4102"]],[8,9,["G2716"]],[9,10,["G5281"]]]},{"k":30270,"v":[[0,1,["G1161"]],[1,3,["G5281"]],[3,4,["G2192"]],[4,6,["G5046"]],[6,7,["G2041"]],[7,8,["G2443"]],[8,11,["G5600"]],[11,12,["G5046"]],[12,13,["G2532"]],[13,14,["G3648"]],[14,15,["G3007"]],[15,16,["G3367"]]]},{"k":30271,"v":[[0,0,["(G1161)"]],[0,1,["G1487"]],[1,2,["G5100"]],[2,4,["G5216"]],[4,5,["G3007"]],[5,6,["G4678"]],[6,9,["G154"]],[9,10,["G3844"]],[10,11,["G2316"]],[11,13,["G1325"]],[13,15,["G3956"]],[15,17,["G574"]],[17,18,["G2532"]],[18,19,["G3679"]],[19,20,["G3361"]],[20,21,["G2532"]],[21,25,["G1325"]],[25,26,["G846"]]]},{"k":30272,"v":[[0,1,["G1161"]],[1,4,["G154"]],[4,5,["G1722"]],[5,6,["G4102"]],[6,7,["G3367"]],[7,8,["G1252"]],[8,9,["G1063"]],[9,12,["G1252"]],[12,14,["G1503"]],[14,16,["G2830"]],[16,19,["G2281"]],[19,23,["G416"]],[23,24,["G2532"]],[24,25,["G4494"]]]},{"k":30273,"v":[[0,1,["G1063"]],[1,3,["G3361"]],[3,4,["G1565"]],[4,5,["G444"]],[5,6,["G3633"]],[6,7,["G3754"]],[7,10,["G2983"]],[10,12,["G5100"]],[12,13,["G3844"]],[13,14,["G3588"]],[14,15,["G2962"]]]},{"k":30274,"v":[[0,3,["G1374"]],[3,4,["G435"]],[4,6,["G182"]],[6,7,["G1722"]],[7,8,["G3956"]],[8,9,["G848"]],[9,10,["G3598"]]]},{"k":30275,"v":[[0,0,["(G1161)"]],[0,2,["G3588"]],[2,3,["G80"]],[3,6,["G5011"]],[6,7,["G2744"]],[7,8,["G1722"]],[8,10,["G848"]],[10,12,["G5311"]]]},{"k":30276,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4145"]],[3,4,["G1722"]],[4,6,["G848"]],[6,9,["G5014"]],[9,10,["G3754"]],[10,11,["G5613"]],[11,13,["G438"]],[13,16,["G5528"]],[16,20,["G3928"]]]},{"k":30277,"v":[[0,1,["G1063"]],[1,2,["G3588"]],[2,3,["G2246"]],[3,7,["G393"]],[7,8,["G4862"]],[8,11,["G2742"]],[11,12,["G2532"]],[12,14,["G3583"]],[14,15,["G3588"]],[15,16,["G5528"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G438"]],[19,20,["G846"]],[20,21,["G1601"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G2143"]],[24,26,["G3588"]],[26,27,["G4383"]],[27,29,["G846"]],[29,30,["G622"]],[30,31,["G3779"]],[31,32,["G2532"]],[32,34,["G3588"]],[34,36,["G4145"]],[36,38,["G3133"]],[38,39,["G1722"]],[39,40,["G848"]],[40,41,["G4197"]]]},{"k":30278,"v":[[0,1,["G3107"]],[1,4,["G435"]],[4,5,["G3739"]],[5,6,["G5278"]],[6,7,["G3986"]],[7,8,["G3754"]],[8,11,["G1096"]],[11,12,["G1384"]],[12,15,["G2983"]],[15,16,["G3588"]],[16,17,["G4735"]],[17,19,["G2222"]],[19,20,["G3739"]],[20,21,["G3588"]],[21,22,["G2962"]],[22,24,["G1861"]],[24,28,["G25"]],[28,29,["G846"]]]},{"k":30279,"v":[[0,3,["G3367"]],[3,4,["G3004"]],[4,8,["G3985"]],[8,11,["G3985"]],[11,12,["G575"]],[12,13,["G2316"]],[13,14,["G1063"]],[14,15,["G2316"]],[15,18,["G2076","G551"]],[18,20,["G2556"]],[20,21,["G1161"]],[21,22,["G3985"]],[22,23,["G848"]],[23,25,["G3762"]]]},{"k":30280,"v":[[0,1,["G1161"]],[1,3,["G1538"]],[3,5,["G3985"]],[5,10,["G1828"]],[10,11,["G5259"]],[11,13,["G2398"]],[13,14,["G1939"]],[14,15,["G2532"]],[15,16,["G1185"]]]},{"k":30281,"v":[[0,1,["G1534"]],[1,3,["G1939"]],[3,5,["G4815"]],[5,8,["G5088"]],[8,9,["G266"]],[9,10,["G1161"]],[10,11,["G266"]],[11,15,["G658"]],[15,17,["G616"]],[17,18,["G2288"]]]},{"k":30282,"v":[[0,2,["G3361"]],[2,3,["G4105"]],[3,4,["G3450"]],[4,5,["G27"]],[5,6,["G80"]]]},{"k":30283,"v":[[0,1,["G3956"]],[1,2,["G18"]],[2,3,["G1394"]],[3,4,["G2532"]],[4,5,["G3956"]],[5,6,["G5046"]],[6,7,["G1434"]],[7,8,["G2076"]],[8,10,["G509"]],[10,13,["G2597"]],[13,14,["G575"]],[14,15,["G3588"]],[15,16,["G3962"]],[16,18,["G5457"]],[18,19,["G3844"]],[19,20,["G3739"]],[20,21,["G1762"]],[21,22,["G3756"]],[22,23,["G3883"]],[23,24,["G2228"]],[24,25,["G644"]],[25,27,["G5157"]]]},{"k":30284,"v":[[0,4,["G1014"]],[4,5,["G616"]],[5,7,["G2248"]],[7,10,["G3056"]],[10,12,["G225"]],[12,14,["G2248"]],[14,16,["G1511"]],[16,18,["G5100"]],[18,20,["G536"]],[20,22,["G848"]],[22,23,["G2938"]]]},{"k":30285,"v":[[0,1,["G5620"]],[1,2,["G3450"]],[2,3,["G27"]],[3,4,["G80"]],[4,6,["G3956"]],[6,7,["G444"]],[7,8,["G2077"]],[8,9,["G5036"]],[9,11,["G191"]],[11,12,["G1021"]],[12,14,["G2980"]],[14,15,["G1021"]],[15,16,["G1519"]],[16,17,["G3709"]]]},{"k":30286,"v":[[0,1,["G1063"]],[1,3,["G3709"]],[3,5,["G435"]],[5,6,["G2716"]],[6,7,["G3756"]],[7,9,["G1343"]],[9,11,["G2316"]]]},{"k":30287,"v":[[0,1,["G1352"]],[1,3,["G659"]],[3,4,["G3956"]],[4,5,["G4507"]],[5,6,["G2532"]],[6,7,["G4050"]],[7,9,["G2549"]],[9,11,["G1209"]],[11,12,["G1722"]],[12,13,["G4240"]],[13,14,["G3588"]],[14,15,["G1721"]],[15,16,["G3056"]],[16,19,["G1410"]],[19,21,["G4982"]],[21,22,["G5216"]],[22,23,["G5590"]]]},{"k":30288,"v":[[0,1,["G1161"]],[1,2,["G1096"]],[2,4,["G4163"]],[4,7,["G3056"]],[7,8,["G2532"]],[8,9,["G3361"]],[9,10,["G202"]],[10,11,["G3440"]],[11,12,["G3884"]],[12,15,["G1438"]]]},{"k":30289,"v":[[0,1,["G3754"]],[1,3,["G1536"]],[3,4,["G2076"]],[4,6,["G202"]],[6,9,["G3056"]],[9,10,["G2532"]],[10,11,["G3756"]],[11,13,["G4163"]],[13,14,["G3778"]],[14,17,["G1503"]],[17,19,["G435"]],[19,20,["G2657"]],[20,21,["G846"]],[21,22,["G1078"]],[22,23,["G4383"]],[23,24,["G1722"]],[24,26,["G2072"]]]},{"k":30290,"v":[[0,1,["G1063"]],[1,3,["G2657"]],[3,4,["G1438"]],[4,5,["G2532"]],[5,8,["G565"]],[8,9,["G2532"]],[9,10,["G2112"]],[10,11,["G1950"]],[11,15,["G3697"]],[15,17,["G2258"]]]},{"k":30291,"v":[[0,1,["G1161"]],[1,3,["G3879"]],[3,4,["G1519"]],[4,6,["G5046"]],[6,7,["G3551"]],[7,8,["(G3588)"]],[8,9,["G1657"]],[9,10,["G2532"]],[10,11,["G3887"]],[11,13,["G3778"]],[13,14,["G1096"]],[14,15,["G3756"]],[15,17,["G1953"]],[17,18,["G202"]],[18,19,["G235"]],[19,21,["G4163"]],[21,24,["G2041"]],[24,26,["G3778"]],[26,28,["G2071"]],[28,29,["G3107"]],[29,30,["G1722"]],[30,31,["G848"]],[31,32,["G4162"]]]},{"k":30292,"v":[[0,3,["G1536"]],[3,4,["G1722"]],[4,5,["G5213"]],[5,6,["G1380"]],[6,8,["G1511"]],[8,9,["G2357"]],[9,11,["G5468"]],[11,12,["G3361"]],[12,13,["G848"]],[13,14,["G1100"]],[14,15,["G235"]],[15,16,["G538"]],[16,18,["G848"]],[18,19,["G2588"]],[19,21,["G5127"]],[21,22,["G2356"]],[22,24,["G3152"]]]},{"k":30293,"v":[[0,1,["G2513"]],[1,2,["G2356"]],[2,3,["G2532"]],[3,4,["G283"]],[4,5,["G3844"]],[5,6,["G2316"]],[6,7,["G2532"]],[7,9,["G3962"]],[9,10,["G2076"]],[10,11,["G3778"]],[11,13,["G1980"]],[13,15,["G3737"]],[15,16,["G2532"]],[16,17,["G5503"]],[17,18,["G1722"]],[18,19,["G846"]],[19,20,["G2347"]],[20,23,["G5083"]],[23,24,["G1438"]],[24,25,["G784"]],[25,26,["G575"]],[26,27,["G3588"]],[27,28,["G2889"]]]},{"k":30294,"v":[[0,1,["G3450"]],[1,2,["G80"]],[2,3,["G2192"]],[3,4,["G3361"]],[4,5,["G3588"]],[5,6,["G4102"]],[6,8,["G2257"]],[8,9,["G2962"]],[9,10,["G2424"]],[10,11,["G5547"]],[11,15,["G1391"]],[15,16,["G1722"]],[16,19,["G4382"]]]},{"k":30295,"v":[[0,1,["G1063"]],[1,2,["G1437"]],[2,4,["G1525"]],[4,5,["G1519"]],[5,6,["G5216"]],[6,7,["G4864"]],[7,9,["G435"]],[9,13,["G5554"]],[13,14,["G1722"]],[14,15,["G2986"]],[15,16,["G2066"]],[16,17,["G1161"]],[17,20,["G1525"]],[20,21,["G2532"]],[21,24,["G4434"]],[24,25,["G1722"]],[25,26,["G4508"]],[26,27,["G2066"]]]},{"k":30296,"v":[[0,1,["G2532"]],[1,4,["G1914"]],[4,5,["G1909"]],[5,8,["G5409"]],[8,9,["G3588"]],[9,10,["G2986"]],[10,11,["G2066"]],[11,12,["G2532"]],[12,13,["G2036"]],[13,15,["G846"]],[15,16,["G2521"]],[16,17,["G4771"]],[17,18,["G5602"]],[18,22,["G2573"]],[22,23,["G2532"]],[23,24,["G2036"]],[24,26,["G3588"]],[26,27,["G4434"]],[27,28,["G2476"]],[28,29,["G4771"]],[29,30,["G1563"]],[30,31,["G2228"]],[31,32,["G2521"]],[32,33,["G5602"]],[33,34,["G5259"]],[34,35,["G3450"]],[35,36,["G5286"]]]},{"k":30297,"v":[[0,5,["G1252","G3756","G2532"]],[5,6,["G1722"]],[6,7,["G1438"]],[7,8,["G2532"]],[8,10,["G1096"]],[10,11,["G2923"]],[11,13,["G4190"]],[13,14,["G1261"]]]},{"k":30298,"v":[[0,1,["G191"]],[1,2,["G3450"]],[2,3,["G27"]],[3,4,["G80"]],[4,6,["G3756"]],[6,7,["G2316"]],[7,8,["G1586"]],[8,9,["G3588"]],[9,10,["G4434"]],[10,12,["G5127"]],[12,13,["G2889"]],[13,14,["G4145"]],[14,15,["G1722"]],[15,16,["G4102"]],[16,17,["G2532"]],[17,18,["G2818"]],[18,20,["G3588"]],[20,21,["G932"]],[21,22,["G3739"]],[22,25,["G1861"]],[25,29,["G25"]],[29,30,["G846"]]]},{"k":30299,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,4,["G818"]],[4,5,["G3588"]],[5,6,["G4434"]],[6,8,["G3756"]],[8,10,["G4145"]],[10,11,["G2616"]],[11,12,["G5216"]],[12,13,["G2532"]],[13,14,["G1670"]],[14,15,["G5209"]],[15,16,["G1519"]],[16,19,["G2922"]]]},{"k":30300,"v":[[0,2,["G3756"]],[2,3,["G846"]],[3,4,["G987"]],[4,6,["G2570"]],[6,7,["G3686"]],[7,10,["G3588","(G1909)"]],[10,11,["G5209"]],[11,13,["G1941"]]]},{"k":30301,"v":[[0,1,["G1487"]],[1,2,["(G3305)"]],[2,3,["G5055"]],[3,5,["G937"]],[5,6,["G3551"]],[6,7,["G2596"]],[7,9,["G3588"]],[9,10,["G1124"]],[10,13,["G25"]],[13,14,["G4675"]],[14,15,["G4139"]],[15,16,["G5613"]],[16,17,["G4572"]],[17,19,["G4160"]],[19,20,["G2573"]]]},{"k":30302,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,7,["G4380"]],[7,9,["G2038"]],[9,10,["G266"]],[10,13,["G1651"]],[13,14,["G5259"]],[14,15,["G3588"]],[15,16,["G3551"]],[16,17,["G5613"]],[17,18,["G3848"]]]},{"k":30303,"v":[[0,1,["G1063"]],[1,2,["G3748"]],[2,4,["G5083"]],[4,5,["G3588"]],[5,6,["G3650"]],[6,7,["G3551"]],[7,8,["G1161"]],[8,10,["G4417"]],[10,11,["G1722"]],[11,12,["G1520"]],[12,15,["G1096"]],[15,16,["G1777"]],[16,18,["G3956"]]]},{"k":30304,"v":[[0,1,["G1063"]],[1,4,["G2036"]],[4,6,["G3361"]],[6,8,["G3431"]],[8,9,["G2036"]],[9,10,["G2532"]],[10,12,["G3361"]],[12,13,["G5407"]],[13,14,["G1161"]],[14,15,["G1487"]],[15,19,["G3431","G3756"]],[19,20,["G1161"]],[20,23,["G5407"]],[23,26,["G1096"]],[26,28,["G3848"]],[28,31,["G3551"]]]},{"k":30305,"v":[[0,1,["G3779"]],[1,2,["G2980"]],[2,4,["G2532"]],[4,5,["G3779"]],[5,6,["G4160"]],[6,7,["G5613"]],[7,11,["G3195"]],[11,12,["G2919"]],[12,13,["G1223"]],[13,15,["G3551"]],[15,17,["G1657"]]]},{"k":30306,"v":[[0,1,["G1063"]],[1,5,["G2920"]],[5,7,["G448"]],[7,10,["G4160"]],[10,11,["G3361"]],[11,12,["G1656"]],[12,13,["G2532"]],[13,14,["G1656"]],[14,16,["G2620"]],[16,17,["G2920"]]]},{"k":30307,"v":[[0,1,["G5101"]],[1,4,["G3786"]],[4,5,["G3450"]],[5,6,["G80"]],[6,7,["G1437"]],[7,9,["G5100"]],[9,10,["G3004"]],[10,12,["G2192"]],[12,13,["G4102"]],[13,14,["G1161"]],[14,15,["G2192"]],[15,16,["G3361"]],[16,17,["G2041","(G3361)"]],[17,18,["G1410"]],[18,19,["G4102"]],[19,20,["G4982"]],[20,21,["G846"]]]},{"k":30308,"v":[[0,0,["(G1161)"]],[0,1,["G1437"]],[1,3,["G80"]],[3,4,["G2228"]],[4,5,["G79"]],[5,6,["G5225"]],[6,7,["G1131"]],[7,8,["G2532"]],[8,9,["G5600","G3007"]],[9,11,["G2184"]],[11,12,["G5160"]]]},{"k":30309,"v":[[0,1,["G1161"]],[1,2,["G5100"]],[2,3,["G1537"]],[3,4,["G5216"]],[4,5,["G2036"]],[5,7,["G846"]],[7,8,["G5217"]],[8,9,["G1722"]],[9,10,["G1515"]],[10,13,["G2328"]],[13,14,["G2532"]],[14,15,["G5526"]],[15,16,["G1161"]],[16,18,["G1325"]],[18,19,["G846"]],[19,20,["G3361"]],[20,25,["G2006"]],[25,27,["G3588"]],[27,28,["G4983"]],[28,29,["G5101"]],[29,32,["G3786"]]]},{"k":30310,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,3,["G4102"]],[3,4,["G1437"]],[4,6,["G2192"]],[6,7,["G3361"]],[7,8,["G2041"]],[8,9,["G2076"]],[9,10,["G3498"]],[10,12,["G2596","G1438"]]]},{"k":30311,"v":[[0,1,["G235"]],[1,3,["G5100"]],[3,5,["G2046"]],[5,6,["G4771"]],[6,7,["G2192"]],[7,8,["G4102"]],[8,10,["G2504"]],[10,11,["G2192"]],[11,12,["G2041"]],[12,13,["G1166"]],[13,14,["G3427"]],[14,15,["G4675"]],[15,16,["G4102"]],[16,17,["G5565"]],[17,18,["G4675"]],[18,19,["G2041"]],[19,21,["G2504"]],[21,23,["G1166"]],[23,24,["G4671"]],[24,25,["G3450"]],[25,26,["G4102"]],[26,27,["G1537"]],[27,28,["G3450"]],[28,29,["G2041"]]]},{"k":30312,"v":[[0,1,["G4771"]],[1,2,["G4100"]],[2,3,["G3754"]],[3,5,["G2076"]],[5,6,["G1520"]],[6,7,["G2316"]],[7,9,["G4160"]],[9,10,["G2573"]],[10,11,["G3588"]],[11,12,["G1140"]],[12,13,["G2532"]],[13,14,["G4100"]],[14,15,["G2532"]],[15,16,["G5425"]]]},{"k":30313,"v":[[0,1,["G1161"]],[1,2,["G2309"]],[2,4,["G1097"]],[4,5,["G5599"]],[5,6,["G2756"]],[6,7,["G444"]],[7,8,["G3754"]],[8,9,["G4102"]],[9,10,["G5565"]],[10,11,["G2041"]],[11,12,["G2076"]],[12,13,["G3498"]]]},{"k":30314,"v":[[0,2,["G3756"]],[2,3,["G11"]],[3,4,["G2257"]],[4,5,["G3962"]],[5,6,["G1344"]],[6,7,["G1537"]],[7,8,["G2041"]],[8,12,["G399"]],[12,13,["G2464"]],[13,14,["G848"]],[14,15,["G5207"]],[15,16,["G1909"]],[16,17,["G3588"]],[17,18,["G2379"]]]},{"k":30315,"v":[[0,1,["G991"]],[1,3,["G3754"]],[3,4,["G4102"]],[4,6,["G4903"]],[6,7,["G846"]],[7,8,["G2041"]],[8,9,["G2532"]],[9,10,["G1537"]],[10,11,["G2041"]],[11,13,["G4102"]],[13,15,["G5048"]]]},{"k":30316,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1124"]],[3,5,["G4137"]],[5,7,["G3004","(G1161)"]],[7,8,["G11"]],[8,9,["G4100"]],[9,10,["G2316"]],[10,11,["G2532"]],[11,14,["G3049"]],[14,16,["G846"]],[16,17,["G1519"]],[17,18,["G1343"]],[18,19,["G2532"]],[19,22,["G2564"]],[22,24,["G5384"]],[24,26,["G2316"]]]},{"k":30317,"v":[[0,2,["G3708"]],[2,3,["G5106"]],[3,4,["G3754"]],[4,6,["G1537"]],[6,7,["G2041"]],[7,9,["G444"]],[9,11,["G1344"]],[11,12,["G2532"]],[12,13,["G3756"]],[13,14,["G1537"]],[14,15,["G4102"]],[15,16,["G3440"]]]},{"k":30318,"v":[[0,1,["G3668"]],[1,2,["G2532"]],[2,4,["G3756"]],[4,5,["G4460"]],[5,6,["G3588"]],[6,7,["G4204"]],[7,8,["G1344"]],[8,9,["G1537"]],[9,10,["G2041"]],[10,14,["G5264"]],[14,15,["G3588"]],[15,16,["G32"]],[16,17,["G2532"]],[17,21,["G1544"]],[21,22,["G2087"]],[22,23,["G3598"]]]},{"k":30319,"v":[[0,1,["G1063"]],[1,2,["G5618"]],[2,3,["G3588"]],[3,4,["G4983"]],[4,5,["G5565"]],[5,7,["G4151"]],[7,8,["G2076"]],[8,9,["G3498"]],[9,10,["G3779"]],[10,11,["G4102"]],[11,12,["G5565"]],[12,13,["G2041"]],[13,14,["G2076"]],[14,15,["G3498"]],[15,16,["G2532"]]]},{"k":30320,"v":[[0,1,["G3450"]],[1,2,["G80"]],[2,3,["G1096"]],[3,4,["G3361"]],[4,5,["G4183"]],[5,6,["G1320"]],[6,7,["G1492"]],[7,8,["G3754"]],[8,11,["G2983"]],[11,13,["G3187"]],[13,14,["G2917"]]]},{"k":30321,"v":[[0,1,["G1063"]],[1,4,["G4183"]],[4,6,["G4417"]],[6,7,["G537"]],[7,10,["G1536"]],[10,11,["G4417"]],[11,12,["G3756"]],[12,13,["G1722"]],[13,14,["G3056"]],[14,16,["G3778"]],[16,19,["G5046"]],[19,20,["G435"]],[20,22,["G1415"]],[22,23,["G2532"]],[23,25,["G5468"]],[25,26,["G3588"]],[26,27,["G3650"]],[27,28,["G4983"]]]},{"k":30322,"v":[[0,1,["G2400"]],[1,3,["G906"]],[3,4,["G5469"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G2462"]],[7,8,["G4750"]],[8,10,["G846"]],[10,12,["G3982"]],[12,13,["G2254"]],[13,14,["G2532"]],[14,17,["G3329"]],[17,18,["G846"]],[18,19,["G3650"]],[19,20,["G4983"]]]},{"k":30323,"v":[[0,1,["G2400"]],[1,2,["G2532"]],[2,3,["G3588"]],[3,4,["G4143"]],[4,8,["(G5607)"]],[8,10,["G5082"]],[10,11,["G2532"]],[11,13,["G1643"]],[13,14,["G5259"]],[14,15,["G4642"]],[15,16,["G417"]],[16,21,["G3329"]],[21,22,["G5259"]],[22,25,["G1646"]],[25,26,["G4079"]],[26,27,["G3699","G302"]],[27,28,["G3588"]],[28,29,["G3730","G2116"]],[29,30,["G1014"]]]},{"k":30324,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,3,["G3588"]],[3,4,["G1100"]],[4,5,["G2076"]],[5,7,["G3398"]],[7,8,["G3196"]],[8,9,["G2532"]],[9,12,["G3166"]],[12,13,["G2400"]],[13,15,["G2245"]],[15,17,["G5208"]],[17,19,["G3641"]],[19,20,["G4442"]],[20,21,["G381"]]]},{"k":30325,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1100"]],[3,6,["G4442"]],[6,8,["G2889"]],[8,10,["G93"]],[10,11,["G3779"]],[11,12,["G2525"]],[12,13,["G3588"]],[13,14,["G1100"]],[14,15,["G1722"]],[15,16,["G2257"]],[16,17,["G3196"]],[17,20,["G4695"]],[20,21,["G3588"]],[21,22,["G3650"]],[22,23,["G4983"]],[23,24,["G2532"]],[24,27,["G5394"]],[27,28,["G3588"]],[28,29,["G5164"]],[29,31,["G1078"]],[31,32,["G2532"]],[32,37,["G5394"]],[37,38,["G5259"]],[38,39,["G1067"]]]},{"k":30326,"v":[[0,1,["G1063"]],[1,2,["G3956"]],[2,3,["G5449"]],[3,5,["G2342"]],[5,6,["G2532"]],[6,8,["G4071"]],[8,9,["G5037"]],[9,11,["G2062"]],[11,12,["G2532"]],[12,17,["G1724"]],[17,19,["G1150"]],[19,20,["G2532"]],[20,23,["G1150"]],[23,25,["G442","G5449"]]]},{"k":30327,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G1100"]],[3,4,["G1410"]],[4,5,["G3762"]],[5,6,["G444"]],[6,7,["G1150"]],[7,11,["G183"]],[11,12,["G2556"]],[12,13,["G3324"]],[13,15,["G2287"]],[15,16,["G2447"]]]},{"k":30328,"v":[[0,1,["G1722","G846"]],[1,2,["G2127"]],[2,4,["G2316"]],[4,5,["G2532"]],[5,7,["G3962"]],[7,8,["G2532"]],[8,9,["G1722","G846"]],[9,10,["G2672"]],[10,12,["G444"]],[12,15,["G1096"]],[15,16,["G2596"]],[16,18,["G3669"]],[18,20,["G2316"]]]},{"k":30329,"v":[[0,1,["G1537"]],[1,3,["G3588"]],[3,4,["G846"]],[4,5,["G4750"]],[5,6,["G1831"]],[6,7,["G2129"]],[7,8,["G2532"]],[8,9,["G2671"]],[9,10,["G3450"]],[10,11,["G80"]],[11,13,["G5023"]],[13,14,["G5534"]],[14,15,["G3756"]],[15,16,["G3779"]],[16,18,["G1096"]]]},{"k":30330,"v":[[0,1,["(G3385)"]],[1,3,["G4077"]],[3,5,["G1032"]],[5,6,["G1537"]],[6,7,["G3588"]],[7,8,["G846"]],[8,9,["G3692"]],[9,10,["G1099"]],[10,12,["G2532"]],[12,13,["G4089"]]]},{"k":30331,"v":[[0,0,["(G3361)"]],[0,1,["G1410"]],[1,4,["G4808"]],[4,5,["G3450"]],[5,6,["G80"]],[6,7,["G4160"]],[7,9,["G1636"]],[9,10,["G2228"]],[10,12,["G288"]],[12,13,["G4810"]],[13,14,["G3779"]],[14,16,["G3762"]],[16,17,["G4077"]],[17,19,["G4160"]],[19,20,["G252"]],[20,21,["G5204"]],[21,22,["G2532"]],[22,23,["G1099"]]]},{"k":30332,"v":[[0,1,["G5101"]],[1,5,["G4680"]],[5,6,["G2532"]],[6,9,["G1990"]],[9,10,["G1722"]],[10,11,["G5213"]],[11,14,["G1166"]],[14,16,["G1537"]],[16,18,["G2570"]],[18,19,["G391"]],[19,20,["G848"]],[20,21,["G2041"]],[21,22,["G1722"]],[22,23,["G4240"]],[23,25,["G4678"]]]},{"k":30333,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,4,["G2192"]],[4,5,["G4089"]],[5,6,["G2205"]],[6,7,["G2532"]],[7,8,["G2052"]],[8,9,["G1722"]],[9,10,["G5216"]],[10,11,["G2588"]],[11,12,["G2620"]],[12,13,["G3361"]],[13,14,["G2532"]],[14,15,["G5574"]],[15,17,["G2596"]],[17,18,["G3588"]],[18,19,["G225"]]]},{"k":30334,"v":[[0,1,["G3778"]],[1,2,["G4678"]],[2,3,["G2718"]],[3,4,["G3756"]],[4,6,["G509"]],[6,7,["G235"]],[7,9,["G1919"]],[9,10,["G5591"]],[10,11,["G1141"]]]},{"k":30335,"v":[[0,1,["G1063"]],[1,2,["G3699"]],[2,3,["G2205"]],[3,4,["G2532"]],[4,5,["G2052"]],[5,7,["G1563"]],[7,9,["G181"]],[9,10,["G2532"]],[10,11,["G3956"]],[11,12,["G5337"]],[12,13,["G4229"]]]},{"k":30336,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4678"]],[3,7,["G509"]],[7,8,["G2076"]],[8,9,["G4412","G3303"]],[9,10,["G53"]],[10,11,["G1899"]],[11,12,["G1516"]],[12,13,["G1933"]],[13,18,["G2138"]],[18,19,["G3324"]],[19,21,["G1656"]],[21,22,["G2532"]],[22,23,["G18"]],[23,24,["G2590"]],[24,26,["G87"]],[26,27,["G2532"]],[27,29,["G505"]]]},{"k":30337,"v":[[0,1,["G1161"]],[1,3,["G2590"]],[3,5,["G1343"]],[5,7,["G4687"]],[7,8,["G1722"]],[8,9,["G1515"]],[9,11,["G3588"]],[11,13,["G4160"]],[13,14,["G1515"]]]},{"k":30338,"v":[[0,2,["G4159"]],[2,4,["G4171"]],[4,5,["G2532"]],[5,6,["G3163"]],[6,7,["G1722"]],[7,8,["G5213"]],[8,11,["G3756"]],[11,12,["G1782"]],[12,14,["G1537"]],[14,15,["G5216"]],[15,16,["G2237"]],[16,18,["G4754"]],[18,19,["G1722"]],[19,20,["G5216"]],[20,21,["G3196"]]]},{"k":30339,"v":[[0,2,["G1937"]],[2,3,["G2532"]],[3,4,["G2192"]],[4,5,["G3756"]],[5,7,["G5407"]],[7,8,["G2532"]],[8,11,["G2206"]],[11,12,["G2532"]],[12,13,["G1410","G3756"]],[13,14,["G2013"]],[14,16,["G3164"]],[16,17,["G2532"]],[17,18,["G4170"]],[18,19,["G1161"]],[19,21,["G2192"]],[21,22,["G3756"]],[22,24,["G5209"]],[24,25,["G154"]],[25,26,["G3361"]]]},{"k":30340,"v":[[0,2,["G154"]],[2,3,["G2532"]],[3,4,["G2983"]],[4,5,["G3756"]],[5,6,["G1360"]],[6,8,["G154"]],[8,9,["G2560"]],[9,10,["G2443"]],[10,13,["G1159"]],[13,15,["G1722"]],[15,16,["G5216"]],[16,17,["G2237"]]]},{"k":30341,"v":[[0,2,["G3432"]],[2,3,["G2532"]],[3,4,["G3428"]],[4,5,["G1492"]],[5,7,["G3756"]],[7,8,["G3754"]],[8,9,["G3588"]],[9,10,["G5373"]],[10,12,["G3588"]],[12,13,["G2889"]],[13,14,["G2076"]],[14,15,["G2189"]],[15,17,["G2316"]],[17,18,["G3739","G302"]],[18,19,["G3767"]],[19,20,["G1014"]],[20,21,["G1511"]],[21,23,["G5384"]],[23,25,["G3588"]],[25,26,["G2889"]],[26,27,["G2525"]],[27,29,["G2190"]],[29,31,["G2316"]]]},{"k":30342,"v":[[0,2,["(G2228)"]],[2,3,["G1380"]],[3,4,["G3754"]],[4,5,["G3588"]],[5,6,["G1124"]],[6,7,["G3004"]],[7,9,["G2761"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G3739"]],[12,13,["G2730"]],[13,14,["G1722"]],[14,15,["G2254"]],[15,16,["G1971"]],[16,17,["G4314"]],[17,18,["G5355"]]]},{"k":30343,"v":[[0,1,["G1161"]],[1,3,["G1325"]],[3,4,["G3187"]],[4,5,["G5485"]],[5,6,["G1352"]],[6,8,["G3004"]],[8,9,["G2316"]],[9,10,["G498"]],[10,12,["G5244"]],[12,13,["G1161"]],[13,14,["G1325"]],[14,15,["G5485"]],[15,18,["G5011"]]]},{"k":30344,"v":[[0,1,["G5293"]],[1,3,["G3767"]],[3,5,["G2316"]],[5,6,["G436"]],[6,7,["G3588"]],[7,8,["G1228"]],[8,9,["G2532"]],[9,12,["G5343"]],[12,13,["G575"]],[13,14,["G5216"]]]},{"k":30345,"v":[[0,2,["G1448"]],[2,4,["G2316"]],[4,5,["G2532"]],[5,9,["G1448"]],[9,11,["G5213"]],[11,12,["G2511"]],[12,14,["G5495"]],[14,16,["G268"]],[16,17,["G2532"]],[17,18,["G48"]],[18,20,["G2588"]],[20,23,["G1374"]]]},{"k":30346,"v":[[0,2,["G5003"]],[2,3,["G2532"]],[3,4,["G3996"]],[4,5,["G2532"]],[5,6,["G2799"]],[6,8,["G5216"]],[8,9,["G1071"]],[9,11,["G3344"]],[11,12,["G1519"]],[12,13,["G3997"]],[13,14,["G2532"]],[14,16,["G5479"]],[16,17,["G1519"]],[17,18,["G2726"]]]},{"k":30347,"v":[[0,2,["G5013"]],[2,5,["G1799"]],[5,7,["G3588"]],[7,8,["G2962"]],[8,9,["G2532"]],[9,14,["G5312","G5209"]]]},{"k":30348,"v":[[0,3,["G2635","G3361"]],[3,6,["G240"]],[6,7,["G80"]],[7,11,["G2635"]],[11,14,["G80"]],[14,15,["G2532"]],[15,16,["G2919"]],[16,17,["G848"]],[17,18,["G80"]],[18,20,["G2635"]],[20,23,["G3551"]],[23,24,["G2532"]],[24,25,["G2919"]],[25,27,["G3551"]],[27,28,["G1161"]],[28,29,["G1487"]],[29,31,["G2919"]],[31,33,["G3551"]],[33,35,["G1488"]],[35,36,["G3756"]],[36,38,["G4163"]],[38,41,["G3551"]],[41,42,["G235"]],[42,44,["G2923"]]]},{"k":30349,"v":[[0,2,["G2076"]],[2,3,["G1520"]],[3,4,["G3550"]],[4,7,["G1410"]],[7,9,["G4982"]],[9,10,["G2532"]],[10,12,["G622"]],[12,13,["G5101"]],[13,14,["G1488"]],[14,15,["G4771"]],[15,16,["G3739"]],[16,17,["G2919"]],[17,18,["G2087"]]]},{"k":30350,"v":[[0,2,["G33"]],[2,3,["G3568"]],[3,6,["G3004"]],[6,8,["G4594"]],[8,9,["G2532"]],[9,11,["G839"]],[11,14,["G4198"]],[14,15,["G1519"]],[15,16,["G3592"]],[16,18,["G4172"]],[18,19,["G2532"]],[19,20,["G4160"]],[20,21,["G1563"]],[21,22,["G1520"]],[22,23,["G1763"]],[23,24,["G2532"]],[24,27,["G1710"]],[27,28,["G2532"]],[28,30,["G2770"]]]},{"k":30351,"v":[[0,1,["G3748"]],[1,3,["G1987"]],[3,4,["G3756"]],[4,5,["G3588"]],[5,9,["G3588"]],[9,10,["G839"]],[10,11,["G1063"]],[11,12,["G4169"]],[12,14,["G5216"]],[14,15,["G2222"]],[15,17,["G2076"]],[17,18,["G1063"]],[18,20,["G822"]],[20,22,["G5316"]],[22,23,["G4314"]],[23,26,["G3641"]],[26,27,["G1161"]],[27,28,["G1899"]],[28,30,["G853"]]]},{"k":30352,"v":[[0,1,["G473"]],[1,3,["G5209"]],[3,6,["G3004"]],[6,7,["G1437"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,10,["G2309"]],[10,12,["(G2532)"]],[12,13,["G2198"]],[13,14,["G2532"]],[14,15,["G4160"]],[15,16,["G5124"]],[16,17,["G2228"]],[17,18,["G1565"]]]},{"k":30353,"v":[[0,1,["G1161"]],[1,2,["G3568"]],[2,4,["G2744"]],[4,5,["G1722"]],[5,6,["G5216"]],[6,7,["G212"]],[7,8,["G3956"]],[8,9,["G5108"]],[9,10,["G2746"]],[10,11,["G2076"]],[11,12,["G4190"]]]},{"k":30354,"v":[[0,1,["G3767"]],[1,5,["G1492"]],[5,7,["G4160"]],[7,8,["G2570"]],[8,9,["G2532"]],[9,10,["G4160"]],[10,12,["G3361"]],[12,14,["G846"]],[14,16,["G2076"]],[16,17,["G266"]]]},{"k":30355,"v":[[0,2,["G33"]],[2,3,["G3568"]],[3,6,["G4145"]],[6,7,["G2799"]],[7,9,["G3649"]],[9,10,["G1909"]],[10,11,["G5216"]],[11,12,["G5004"]],[12,16,["G1904"]],[16,17,[]]]},{"k":30356,"v":[[0,1,["G5216"]],[1,2,["G4149"]],[2,4,["G4595"]],[4,5,["G2532"]],[5,6,["G5216"]],[6,7,["G2440"]],[7,8,["G1096"]],[8,9,["G4598"]]]},{"k":30357,"v":[[0,1,["G5216"]],[1,2,["G5557"]],[2,3,["G2532"]],[3,4,["G696"]],[4,6,["G2728"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G2447"]],[9,11,["G846"]],[11,13,["G2071"]],[13,14,["(G1519)"]],[14,15,["G3142"]],[15,17,["G5213"]],[17,18,["G2532"]],[18,20,["G5315"]],[20,21,["G5216"]],[21,22,["G4561"]],[22,25,["G5613"]],[25,26,["G4442"]],[26,31,["G2343"]],[31,32,["G1722"]],[32,34,["G2078"]],[34,35,["G2250"]]]},{"k":30358,"v":[[0,1,["G2400"]],[1,2,["G3588"]],[2,3,["G3408"]],[3,5,["G3588"]],[5,6,["G2040"]],[6,10,["G270"]],[10,11,["G5216"]],[11,12,["G5561"]],[12,15,["G575"]],[15,16,["G5216"]],[16,20,["G650"]],[20,21,["G2896"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G995"]],[24,29,["G2325"]],[29,31,["G1525"]],[31,32,["G1519"]],[32,33,["G3588"]],[33,34,["G3775"]],[34,37,["G2962"]],[37,39,["G4519"]]]},{"k":30359,"v":[[0,5,["G5171"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G1093"]],[8,9,["G2532"]],[9,11,["G4684"]],[11,14,["G5142"]],[14,15,["G5216"]],[15,16,["G2588"]],[16,18,["G1722"]],[18,20,["G2250"]],[20,22,["G4967"]]]},{"k":30360,"v":[[0,3,["G2613"]],[3,5,["G5407"]],[5,6,["G3588"]],[6,7,["G1342"]],[7,11,["G3756"]],[11,12,["G498"]],[12,13,["G5213"]]]},{"k":30361,"v":[[0,2,["G3114"]],[2,3,["G3767"]],[3,4,["G80"]],[4,5,["G2193"]],[5,6,["G3588"]],[6,7,["G3952"]],[7,9,["G3588"]],[9,10,["G2962"]],[10,11,["G2400"]],[11,12,["G3588"]],[12,13,["G1092"]],[13,15,["G1551"]],[15,16,["G3588"]],[16,17,["G5093"]],[17,18,["G2590"]],[18,20,["G3588"]],[20,21,["G1093"]],[21,22,["G2532"]],[22,25,["G3114"]],[25,26,["G1909"]],[26,27,["G846"]],[27,28,["G2193","G302"]],[28,30,["G2983"]],[30,32,["G4406"]],[32,33,["G2532"]],[33,34,["G3797"]],[34,35,["G5205"]]]},{"k":30362,"v":[[0,4,["G3114","G5210","G2532"]],[4,5,["G4741"]],[5,6,["G5216"]],[6,7,["G2588"]],[7,8,["G3754"]],[8,9,["G3588"]],[9,10,["G3952"]],[10,12,["G3588"]],[12,13,["G2962"]],[13,15,["G1448"]]]},{"k":30363,"v":[[0,1,["G4727"]],[1,2,["G3361"]],[2,5,["G240","G2596"]],[5,6,["G80"]],[6,7,["G3363"]],[7,10,["G2632"]],[10,11,["G2400"]],[11,12,["G3588"]],[12,13,["G2923"]],[13,14,["G2476"]],[14,15,["G4253"]],[15,16,["G3588"]],[16,17,["G2374"]]]},{"k":30364,"v":[[0,1,["G2983"]],[1,2,["G3450"]],[2,3,["G80"]],[3,4,["G3588"]],[4,5,["G4396"]],[5,6,["G3739"]],[6,8,["G2980"]],[8,10,["G3588"]],[10,11,["G3686"]],[11,14,["G2962"]],[14,17,["G5262"]],[17,20,["G2552"]],[20,21,["G2532"]],[21,23,["G3115"]]]},{"k":30365,"v":[[0,1,["G2400"]],[1,5,["G3106"]],[5,7,["G5278"]],[7,10,["G191"]],[10,12,["G3588"]],[12,13,["G5281"]],[13,15,["G2492"]],[15,16,["G2532"]],[16,18,["G1492"]],[18,19,["G3588"]],[19,20,["G5056"]],[20,23,["G2962"]],[23,24,["G3754"]],[24,25,["G3588"]],[25,26,["G2962"]],[26,27,["G2076"]],[27,29,["G4184"]],[29,30,["G2532"]],[30,33,["G3629"]]]},{"k":30366,"v":[[0,1,["G1161"]],[1,2,["G4253"]],[2,4,["G3956"]],[4,5,["G3450"]],[5,6,["G80"]],[6,7,["G3660"]],[7,8,["G3361"]],[8,9,["G3383"]],[9,11,["G3772"]],[11,12,["G3383"]],[12,14,["G3588"]],[14,15,["G1093"]],[15,16,["G3383"]],[16,18,["G243"]],[18,19,["G5100"]],[19,20,["G3727"]],[20,21,["G1161"]],[21,23,["G5216"]],[23,24,["G3483"]],[24,25,["G2277"]],[25,26,["G3483"]],[26,27,["G2532"]],[27,28,["(G3588)"]],[28,29,["G3756"]],[29,30,["G3756"]],[30,31,["G3363"]],[31,33,["G4098"]],[33,34,["G1519"]],[34,35,["G5272"]]]},{"k":30367,"v":[[0,5,["G2553","G5100","G1722","G5213"]],[5,8,["G4336"]],[8,11,["G2114","G5100"]],[11,15,["G5567"]]]},{"k":30368,"v":[[0,3,["G770","G5100"]],[3,4,["G1722"]],[4,5,["G5213"]],[5,9,["G4341"]],[9,10,["G3588"]],[10,11,["G4245"]],[11,13,["G3588"]],[13,14,["G1577"]],[14,15,["G2532"]],[15,18,["G4336"]],[18,19,["G1909"]],[19,20,["G846"]],[20,21,["G218"]],[21,22,["G846"]],[22,24,["G1637"]],[24,25,["G1722"]],[25,26,["G3588"]],[26,27,["G3686"]],[27,29,["G3588"]],[29,30,["G2962"]]]},{"k":30369,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2171"]],[3,5,["G4102"]],[5,7,["G4982"]],[7,8,["G3588"]],[8,9,["G2577"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G2962"]],[12,16,["G1453","G846"]],[16,18,["G2579"]],[18,20,["G5600"]],[20,21,["G4160"]],[21,22,["G266"]],[22,26,["G863"]],[26,27,["G846"]]]},{"k":30370,"v":[[0,1,["G1843"]],[1,3,["G3900"]],[3,6,["G240"]],[6,7,["G2532"]],[7,8,["G2172"]],[8,11,["G240","G5228"]],[11,12,["G3704"]],[12,16,["G2390"]],[16,19,["G1754"]],[19,20,["G1162"]],[20,24,["G1342"]],[24,25,["G2480"]],[25,26,["G4183"]]]},{"k":30371,"v":[[0,1,["G2243"]],[1,2,["G2258"]],[2,4,["G444"]],[4,8,["G3663"]],[8,10,["G2254"]],[10,12,["G2532"]],[12,15,["G4336","G4335"]],[15,19,["G3361"]],[19,20,["G1026"]],[20,21,["G2532"]],[21,23,["G1026"]],[23,24,["G3756"]],[24,25,["G1909"]],[25,26,["G3588"]],[26,27,["G1093"]],[27,32,["G5140"]],[32,33,["G1763"]],[33,34,["G2532"]],[34,35,["G1803"]],[35,36,["G3376"]]]},{"k":30372,"v":[[0,1,["G2532"]],[1,3,["G4336"]],[3,4,["G3825"]],[4,5,["G2532"]],[5,6,["G3588"]],[6,7,["G3772"]],[7,8,["G1325"]],[8,9,["G5205"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G1093"]],[12,14,["G985"]],[14,15,["G848"]],[15,16,["G2590"]]]},{"k":30373,"v":[[0,1,["G80"]],[1,2,["G1437"]],[2,3,["G5100"]],[3,4,["G1722"]],[4,5,["G5213"]],[5,7,["G4105"]],[7,8,["G575"]],[8,9,["G3588"]],[9,10,["G225"]],[10,11,["G2532"]],[11,12,["G5100"]],[12,13,["G1994"]],[13,14,["G846"]]]},{"k":30374,"v":[[0,3,["G1097"]],[3,4,["G3754"]],[4,7,["G1994"]],[7,9,["G268"]],[9,10,["G1537"]],[10,12,["G4106"]],[12,14,["G846"]],[14,15,["G3598"]],[15,17,["G4982"]],[17,19,["G5590"]],[19,20,["G1537"]],[20,21,["G2288"]],[21,22,["G2532"]],[22,24,["G2572"]],[24,26,["G4128"]],[26,28,["G266"]]]},{"k":30375,"v":[[0,1,["G4074"]],[1,3,["G652"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,9,["G3927"]],[9,11,["G1290"]],[11,12,["G4195"]],[12,13,["G1053"]],[13,14,["G2587"]],[14,15,["G773"]],[15,16,["G2532"]],[16,17,["G978"]]]},{"k":30376,"v":[[0,1,["G1588"]],[1,2,["G2596"]],[2,5,["G4268"]],[5,7,["G2316"]],[7,9,["G3962"]],[9,10,["G1722"]],[10,11,["G38"]],[11,14,["G4151"]],[14,15,["G1519"]],[15,16,["G5218"]],[16,17,["G2532"]],[17,18,["G4473"]],[18,21,["G129"]],[21,23,["G2424"]],[23,24,["G5547"]],[24,25,["G5485"]],[25,27,["G5213"]],[27,28,["G2532"]],[28,29,["G1515"]],[29,31,["G4129"]]]},{"k":30377,"v":[[0,1,["G2128"]],[1,3,["G3588"]],[3,4,["G2316"]],[4,5,["G2532"]],[5,6,["G3962"]],[6,8,["G2257"]],[8,9,["G2962"]],[9,10,["G2424"]],[10,11,["G5547"]],[11,13,["G2596"]],[13,15,["G848"]],[15,16,["G4183"]],[16,17,["G1656"]],[17,21,["G313","G2248"]],[21,22,["G1519"]],[22,24,["G2198"]],[24,25,["G1680"]],[25,26,["G1223"]],[26,28,["G386"]],[28,30,["G2424"]],[30,31,["G5547"]],[31,32,["G1537"]],[32,34,["G3498"]]]},{"k":30378,"v":[[0,1,["G1519"]],[1,3,["G2817"]],[3,4,["G862"]],[4,5,["G2532"]],[5,6,["G283"]],[6,7,["G2532"]],[7,11,["G263"]],[11,12,["G5083"]],[12,13,["G1722"]],[13,14,["G3772"]],[14,15,["G1519"]],[15,16,["G2248"]]]},{"k":30379,"v":[[0,3,["G5432"]],[3,4,["G1722"]],[4,6,["G1411"]],[6,8,["G2316"]],[8,9,["G1223"]],[9,10,["G4102"]],[10,11,["G1519"]],[11,12,["G4991"]],[12,13,["G2092"]],[13,16,["G601"]],[16,17,["G1722"]],[17,19,["G2078"]],[19,20,["G2540"]]]},{"k":30380,"v":[[0,1,["G1722","G3739"]],[1,4,["G21"]],[4,6,["G737"]],[6,9,["G3641"]],[9,10,["G1487"]],[10,12,["G1163","G2076"]],[12,16,["G3076"]],[16,17,["G1722"]],[17,18,["G4164"]],[18,19,["G3986"]]]},{"k":30381,"v":[[0,1,["G2443"]],[1,2,["G3588"]],[2,3,["G1383"]],[3,5,["G5216"]],[5,6,["G4102"]],[6,8,["G4183"]],[8,10,["G5093"]],[10,13,["G5553"]],[13,15,["G622"]],[15,16,["G1161"]],[16,19,["G1381"]],[19,20,["G1223"]],[20,21,["G4442"]],[21,24,["G2147"]],[24,25,["G1519"]],[25,26,["G1868"]],[26,27,["G2532"]],[27,28,["G5092"]],[28,29,["G2532"]],[29,30,["G1391"]],[30,31,["G1722"]],[31,33,["G602"]],[33,35,["G2424"]],[35,36,["G5547"]]]},{"k":30382,"v":[[0,1,["G3739"]],[1,3,["G3756"]],[3,4,["G1492"]],[4,6,["G25"]],[6,7,["G1519"]],[7,8,["G3739"]],[8,10,["G737"]],[10,12,["G3708"]],[12,14,["G3361"]],[14,15,["G1161"]],[15,16,["G4100"]],[16,18,["G21"]],[18,20,["G5479"]],[20,21,["G412"]],[21,22,["G2532"]],[22,25,["G1392"]]]},{"k":30383,"v":[[0,1,["G2865"]],[1,2,["G3588"]],[2,3,["G5056"]],[3,5,["G5216"]],[5,6,["G4102"]],[6,9,["G4991"]],[9,12,["G5590"]]]},{"k":30384,"v":[[0,1,["G4012"]],[1,2,["G3739"]],[2,3,["G4991"]],[3,5,["G4396"]],[5,7,["G1567"]],[7,8,["G2532"]],[8,10,["G1830"]],[10,12,["G4395"]],[12,13,["G4012"]],[13,14,["G3588"]],[14,15,["G5485"]],[15,19,["G1519"]],[19,20,["G5209"]]]},{"k":30385,"v":[[0,1,["G2045"]],[1,2,["G5101"]],[2,3,["G2228"]],[3,5,["G4169"]],[5,7,["G2540"]],[7,8,["G3588"]],[8,9,["G4151"]],[9,11,["G5547"]],[11,14,["G1722"]],[14,15,["G846"]],[15,17,["G1213"]],[17,21,["G4303"]],[21,22,["G3588"]],[22,23,["G3804"]],[23,24,["G1519"]],[24,25,["G5547"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G1391"]],[28,31,["G3326","G5023"]]]},{"k":30386,"v":[[0,2,["G3739"]],[2,5,["G601"]],[5,6,["G3754"]],[6,7,["G3756"]],[7,9,["G1438"]],[9,10,["G1161"]],[10,12,["G2254"]],[12,15,["G1247"]],[15,17,["G846"]],[17,18,["G3739"]],[18,20,["G3568"]],[20,21,["G312"]],[21,23,["G5213"]],[23,24,["G1223"]],[24,30,["G2097"]],[30,32,["G5209"]],[32,33,["G1722"]],[33,35,["G40"]],[35,36,["G4151"]],[36,38,["G649"]],[38,39,["G575"]],[39,40,["G3772"]],[40,42,["G3739"]],[42,44,["G32"]],[44,45,["G1937"]],[45,47,["G3879"]],[47,48,["G1519"]]]},{"k":30387,"v":[[0,1,["G1352"]],[1,3,["G328"]],[3,4,["G3588"]],[4,5,["G3751"]],[5,7,["G5216"]],[7,8,["G1271"]],[8,10,["G3525"]],[10,12,["G1679"]],[12,15,["G5049"]],[15,16,["G1909"]],[16,17,["G3588"]],[17,18,["G5485"]],[18,23,["G5342"]],[23,25,["G5213"]],[25,26,["G1722"]],[26,28,["G602"]],[28,30,["G2424"]],[30,31,["G5547"]]]},{"k":30388,"v":[[0,1,["G5613"]],[1,2,["G5218"]],[2,3,["G5043"]],[3,4,["G3361"]],[4,6,["G4964"]],[6,9,["G3588"]],[9,10,["G4386"]],[10,11,["G1939"]],[11,12,["G1722"]],[12,13,["G5216"]],[13,14,["G52"]]]},{"k":30389,"v":[[0,1,["G235"]],[1,2,["G2596"]],[2,6,["G2564"]],[6,7,["G5209"]],[7,9,["G40"]],[9,10,["G2532"]],[10,11,["G1096"]],[11,12,["G846"]],[12,13,["G40"]],[13,14,["G1722"]],[14,16,["G3956"]],[16,18,["G391"]]]},{"k":30390,"v":[[0,1,["G1360"]],[1,4,["G1125"]],[4,5,["G1096"]],[5,7,["G40"]],[7,8,["G3754"]],[8,9,["G1473"]],[9,10,["G1510"]],[10,11,["G40"]]]},{"k":30391,"v":[[0,1,["G2532"]],[1,2,["G1487"]],[2,5,["G1941"]],[5,7,["G3962"]],[7,13,["G2919","G678"]],[13,14,["G2596"]],[14,17,["G1538"]],[17,18,["G2041"]],[18,19,["G390"]],[19,20,["G3588"]],[20,21,["G5550"]],[21,23,["G5216"]],[23,24,["G3940"]],[24,26,["G1722"]],[26,27,["G5401"]]]},{"k":30392,"v":[[0,4,["G1492"]],[4,5,["G3754"]],[5,8,["G3756"]],[8,9,["G3084"]],[9,12,["G5349"]],[12,14,["G694"]],[14,15,["G2228"]],[15,16,["G5553"]],[16,17,["G1537"]],[17,18,["G5216"]],[18,19,["G3152"]],[19,20,["G391"]],[20,26,["G3970"]]]},{"k":30393,"v":[[0,1,["G235"]],[1,4,["G5093"]],[4,5,["G129"]],[5,7,["G5547"]],[7,8,["G5613"]],[8,11,["G286"]],[11,13,["G299"]],[13,14,["G2532"]],[14,16,["G784"]]]},{"k":30394,"v":[[0,2,["G3303"]],[2,4,["G4267"]],[4,5,["G4253"]],[5,7,["G2602"]],[7,10,["G2889"]],[10,11,["G1161"]],[11,13,["G5319"]],[13,14,["G1909"]],[14,16,["G2078"]],[16,17,["G5550"]],[17,18,["G1223"]],[18,19,["G5209"]]]},{"k":30395,"v":[[0,2,["G1223"]],[2,3,["G846"]],[3,5,["G4100"]],[5,6,["G1519"]],[6,7,["G2316"]],[7,11,["G1453","G846"]],[11,12,["G1537"]],[12,14,["G3498"]],[14,15,["G2532"]],[15,16,["G1325"]],[16,17,["G846"]],[17,18,["G1391"]],[18,19,["G5620"]],[19,20,["G5216"]],[20,21,["G4102"]],[21,22,["G2532"]],[22,23,["G1680"]],[23,25,["G1511"]],[25,26,["G1519"]],[26,27,["G2316"]]]},{"k":30396,"v":[[0,4,["G48"]],[4,5,["G5216"]],[5,6,["G5590"]],[6,7,["G1722"]],[7,8,["G5218"]],[8,9,["G3588"]],[9,10,["G225"]],[10,11,["G1223"]],[11,13,["G4151"]],[13,14,["G1519"]],[14,15,["G505"]],[15,19,["G5360"]],[19,23,["G25"]],[23,25,["G240"]],[25,26,["G1537"]],[26,28,["G2513"]],[28,29,["G2588"]],[29,30,["G1619"]]]},{"k":30397,"v":[[0,3,["G313"]],[3,4,["G3756"]],[4,5,["G1537"]],[5,6,["G5349"]],[6,7,["G4701"]],[7,8,["G235"]],[8,10,["G862"]],[10,11,["G1223"]],[11,13,["G3056"]],[13,15,["G2316"]],[15,17,["G2198"]],[17,18,["G2532"]],[18,19,["G3306"]],[19,21,["G1519","G165"]]]},{"k":30398,"v":[[0,1,["G1360"]],[1,2,["G3956"]],[2,3,["G4561"]],[3,5,["G5613"]],[5,6,["G5528"]],[6,7,["G2532"]],[7,8,["G3956"]],[8,10,["G1391"]],[10,12,["G444"]],[12,13,["G5613"]],[13,15,["G438"]],[15,17,["G5528"]],[17,18,["G3588"]],[18,19,["G5528"]],[19,20,["G3583"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G438"]],[23,24,["G846"]],[24,26,["G1601"]]]},{"k":30399,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G4487"]],[3,6,["G2962"]],[6,7,["G3306"]],[7,9,["G1519","G165"]],[9,10,["G1161"]],[10,11,["G5124"]],[11,12,["G2076"]],[12,13,["G3588"]],[13,14,["G4487"]],[14,20,["G2097"]],[20,21,["G1519"]],[21,22,["G5209"]]]},{"k":30400,"v":[[0,1,["G3767"]],[1,3,["G659"]],[3,4,["G3956"]],[4,5,["G2549"]],[5,6,["G2532"]],[6,7,["G3956"]],[7,8,["G1388"]],[8,9,["G2532"]],[9,10,["G5272"]],[10,11,["G2532"]],[11,12,["G5355"]],[12,13,["G2532"]],[13,14,["G3956"]],[14,16,["G2636"]]]},{"k":30401,"v":[[0,1,["G5613"]],[1,2,["G738"]],[2,3,["G1025"]],[3,4,["G1971"]],[4,5,["G3588"]],[5,6,["G97"]],[6,7,["G1051"]],[7,10,["G3050"]],[10,11,["G2443"]],[11,14,["G837"]],[14,15,["G1722","G846"]]]},{"k":30402,"v":[[0,3,["G1512"]],[3,6,["G1089"]],[6,7,["G3754"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,11,["G5543"]]]},{"k":30403,"v":[[0,1,["G4314"]],[1,2,["G3739"]],[2,3,["G4334"]],[3,7,["G2198"]],[7,8,["G3037"]],[8,9,["G593"]],[9,10,["G3303"]],[10,11,["G5259"]],[11,12,["G444"]],[12,13,["G1161"]],[13,14,["G1588"]],[14,15,["G3844"]],[15,16,["G2316"]],[16,18,["G1784"]]]},{"k":30404,"v":[[0,1,["G846"]],[1,2,["G2532"]],[2,3,["G5613"]],[3,4,["G2198"]],[4,5,["G3037"]],[5,8,["G3618"]],[8,10,["G4152"]],[10,11,["G3624"]],[11,13,["G40"]],[13,14,["G2406"]],[14,17,["G399"]],[17,18,["G4152"]],[18,19,["G2378"]],[19,20,["G2144"]],[20,22,["G2316"]],[22,23,["G1223"]],[23,24,["G2424"]],[24,25,["G5547"]]]},{"k":30405,"v":[[0,1,["G1352"]],[1,2,["G2532"]],[2,5,["G4023"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G1124"]],[8,9,["G2400"]],[9,11,["G5087"]],[11,12,["G1722"]],[12,13,["G4622"]],[13,17,["G204","G3037"]],[17,18,["G1588"]],[18,19,["G1784"]],[19,20,["G2532"]],[20,23,["G4100"]],[23,24,["G1909"]],[24,25,["G846"]],[25,27,["G3364"]],[27,29,["G2617"]]]},{"k":30406,"v":[[0,2,["G5213"]],[2,3,["G3767"]],[3,5,["G4100"]],[5,8,["G5092"]],[8,9,["G1161"]],[9,14,["G544"]],[14,16,["G3037"]],[16,17,["G3739"]],[17,18,["G3588"]],[18,19,["G3618"]],[19,20,["G593"]],[20,22,["G3778"]],[22,24,["G1096"]],[24,25,["(G1519)"]],[25,26,["G2776"]],[26,29,["G1137"]]]},{"k":30407,"v":[[0,1,["G2532"]],[1,3,["G3037"]],[3,5,["G4348"]],[5,6,["G2532"]],[6,8,["G4073"]],[8,10,["G4625"]],[10,14,["G3739"]],[14,15,["G4350"]],[15,17,["G3588"]],[17,18,["G3056"]],[18,20,["G544"]],[20,21,["G1519","G3739"]],[21,22,["G2532"]],[22,25,["G5087"]]]},{"k":30408,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,5,["G1588"]],[5,6,["G1085"]],[6,8,["G934"]],[8,9,["G2406"]],[9,11,["G40"]],[11,12,["G1484"]],[12,14,["G1519","G4047"]],[14,15,["G2992"]],[15,16,["G3704"]],[16,20,["G1804"]],[20,21,["G3588"]],[21,22,["G703"]],[22,24,["G3588"]],[24,27,["G2564"]],[27,28,["G5209"]],[28,30,["G1537"]],[30,31,["G4655"]],[31,32,["G1519"]],[32,33,["G846"]],[33,34,["G2298"]],[34,35,["G5457"]]]},{"k":30409,"v":[[0,1,["G3588"]],[1,4,["G4218"]],[4,6,["G3756"]],[6,8,["G2992"]],[8,9,["G1161"]],[9,11,["G3568"]],[11,13,["G2992"]],[13,15,["G2316"]],[15,20,["G1653","G3756"]],[20,21,["G1161"]],[21,22,["G3568"]],[22,25,["G1653"]]]},{"k":30410,"v":[[0,2,["G27"]],[2,4,["G3870"]],[4,6,["G5613"]],[6,7,["G3941"]],[7,8,["G2532"]],[8,9,["G3927"]],[9,10,["G567"]],[10,12,["G4559"]],[12,13,["G1939"]],[13,14,["G3748"]],[14,15,["G4754"]],[15,16,["G2596"]],[16,17,["G3588"]],[17,18,["G5590"]]]},{"k":30411,"v":[[0,1,["G2192"]],[1,2,["G5216"]],[2,3,["G391"]],[3,4,["G2570"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G1484"]],[7,8,["G2443"]],[8,9,["G1722","G3739"]],[9,12,["G2635"]],[12,13,["G5216"]],[13,14,["G5613"]],[14,15,["G2555"]],[15,18,["G1537"]],[18,20,["G2570"]],[20,21,["G2041"]],[21,25,["G2029"]],[25,26,["G1392"]],[26,27,["G2316"]],[27,28,["G1722"]],[28,30,["G2250"]],[30,32,["G1984"]]]},{"k":30412,"v":[[0,2,["G5293"]],[2,3,["(G3767)"]],[3,4,["G3956"]],[4,5,["G2937"]],[5,7,["G442"]],[7,11,["G1223","G3588","G2962"]],[11,12,["G1535"]],[12,17,["G935"]],[17,18,["G5613"]],[18,19,["G5242"]]]},{"k":30413,"v":[[0,1,["G1535"]],[1,3,["G2232"]],[3,4,["G5613"]],[4,9,["G3992"]],[9,10,["G1223"]],[10,11,["G846"]],[11,12,["G1519"]],[12,14,["G1557"]],[14,15,["(G3303)"]],[15,16,["G2555"]],[16,17,["G1161"]],[17,20,["G1868"]],[20,25,["G17"]]]},{"k":30414,"v":[[0,1,["G3754"]],[1,2,["G3779"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G2307"]],[5,7,["G2316"]],[7,11,["G15"]],[11,16,["G5392"]],[16,17,["G3588"]],[17,18,["G56"]],[18,20,["G878"]],[20,21,["G444"]]]},{"k":30415,"v":[[0,1,["G5613"]],[1,2,["G1658"]],[2,3,["G2532"]],[3,4,["G3361"]],[4,5,["G2192"]],[5,7,["G1657"]],[7,8,["G5613"]],[8,10,["G1942"]],[10,12,["G2549"]],[12,13,["G235"]],[13,14,["G5613"]],[14,16,["G1401"]],[16,18,["G2316"]]]},{"k":30416,"v":[[0,1,["G5091"]],[1,2,["G3956"]],[2,4,["G25"]],[4,5,["G3588"]],[5,6,["G81"]],[6,7,["G5399"]],[7,8,["G2316"]],[8,9,["G5091"]],[9,10,["G3588"]],[10,11,["G935"]]]},{"k":30417,"v":[[0,1,["G3610"]],[1,4,["G5293"]],[4,6,["G1203"]],[6,7,["G1722"]],[7,8,["G3956"]],[8,9,["G5401"]],[9,10,["G3756"]],[10,11,["G3440"]],[11,13,["G3588"]],[13,14,["G18"]],[14,15,["G2532"]],[15,16,["G1933"]],[16,17,["G235"]],[17,18,["G2532"]],[18,20,["G3588"]],[20,21,["G4646"]]]},{"k":30418,"v":[[0,1,["G1063"]],[1,2,["G5124"]],[2,4,["G5485"]],[4,5,["G1487"]],[5,7,["G5100"]],[7,8,["G1223"]],[8,9,["G4893"]],[9,11,["G2316"]],[11,12,["G5297"]],[12,13,["G3077"]],[13,14,["G3958"]],[14,15,["G95"]]]},{"k":30419,"v":[[0,1,["G1063"]],[1,2,["G4169"]],[2,3,["G2811"]],[3,6,["G1487"]],[6,10,["G2852","(G2532)"]],[10,13,["G264"]],[13,18,["G5278"]],[18,19,["G235"]],[19,20,["G1487"]],[20,24,["G15"]],[24,25,["G2532"]],[25,26,["G3958"]],[26,32,["G5278"]],[32,33,["G5124"]],[33,35,["G5485"]],[35,36,["G3844"]],[36,37,["G2316"]]]},{"k":30420,"v":[[0,1,["G1063"]],[1,3,["G1519","G5124"]],[3,6,["G2564"]],[6,7,["G3754"]],[7,8,["G5547"]],[8,9,["G2532"]],[9,10,["G3958"]],[10,11,["G5228"]],[11,12,["G2257"]],[12,13,["G5277"]],[13,14,["G2254"]],[14,16,["G5261"]],[16,17,["G2443"]],[17,20,["G1872"]],[20,21,["G846"]],[21,22,["G2487"]]]},{"k":30421,"v":[[0,1,["G3739"]],[1,2,["G4160"]],[2,3,["G3756"]],[3,4,["G266"]],[4,5,["G3761"]],[5,7,["G1388"]],[7,8,["G2147"]],[8,9,["G1722"]],[9,10,["G846"]],[10,11,["G4750"]]]},{"k":30422,"v":[[0,1,["G3739"]],[1,5,["G3058"]],[5,8,["G486","G3756"]],[8,11,["G3958"]],[11,13,["G546"]],[13,14,["G3756"]],[14,15,["G1161"]],[15,16,["G3860"]],[16,21,["G2919"]],[21,22,["G1346"]]]},{"k":30423,"v":[[0,1,["G3739"]],[1,4,["G848"]],[4,5,["G399"]],[5,6,["G2257"]],[6,7,["G266"]],[7,8,["G1722"]],[8,10,["G848"]],[10,11,["G4983"]],[11,12,["G1909"]],[12,13,["G3588"]],[13,14,["G3586"]],[14,15,["G2443"]],[15,18,["G581"]],[18,20,["G266"]],[20,22,["G2198"]],[22,24,["G1343"]],[24,26,["G3739"]],[26,27,["G3468"]],[27,30,["G2390"]]]},{"k":30424,"v":[[0,1,["G1063"]],[1,3,["G2258"]],[3,4,["G5613"]],[4,5,["G4263"]],[5,7,["G4105"]],[7,8,["G235"]],[8,10,["G3568"]],[10,11,["G1994"]],[11,12,["G1909"]],[12,13,["G3588"]],[13,14,["G4166"]],[14,15,["G2532"]],[15,16,["G1985"]],[16,18,["G5216"]],[18,19,["G5590"]]]},{"k":30425,"v":[[0,1,["G3668"]],[1,3,["G1135"]],[3,6,["G5293"]],[6,9,["G2398"]],[9,10,["G435"]],[10,11,["G2443"]],[11,13,["G1536"]],[13,15,["G544"]],[15,16,["G3588"]],[16,17,["G3056"]],[17,19,["G2532"]],[19,21,["G427"]],[21,23,["G3056"]],[23,25,["G2770"]],[25,26,["G1223"]],[26,27,["G3588"]],[27,28,["G391"]],[28,30,["G3588"]],[30,31,["G1135"]]]},{"k":30426,"v":[[0,3,["G2029"]],[3,4,["G5216"]],[4,5,["G53"]],[5,6,["G391"]],[6,8,["G1722"]],[8,9,["G5401"]]]},{"k":30427,"v":[[0,1,["G3739"]],[1,2,["G2889"]],[2,5,["G3756"]],[5,6,["G2077"]],[6,7,["G3588"]],[7,8,["G1855"]],[8,11,["G1708"]],[11,13,["G2359"]],[13,14,["G2532"]],[14,16,["G4025"]],[16,18,["G5553"]],[18,19,["G2228"]],[19,22,["G1745"]],[22,24,["G2440"]]]},{"k":30428,"v":[[0,1,["G235"]],[1,5,["G3588"]],[5,6,["G2927"]],[6,7,["G444"]],[7,9,["G3588"]],[9,10,["G2588"]],[10,11,["G1722"]],[11,16,["G862"]],[16,22,["G4239"]],[22,23,["G2532"]],[23,24,["G2272"]],[24,25,["G4151"]],[25,26,["G3739"]],[26,27,["G2076"]],[27,30,["G1799"]],[30,32,["G2316"]],[32,35,["G4185"]]]},{"k":30429,"v":[[0,1,["G1063"]],[1,4,["G3779"]],[4,8,["G4218"]],[8,9,["G3588"]],[9,10,["G40"]],[10,11,["G1135"]],[11,12,["G2532"]],[12,14,["G1679"]],[14,15,["G1909"]],[15,16,["G2316"]],[16,17,["G2885"]],[17,18,["G1438"]],[18,21,["G5293"]],[21,24,["G2398"]],[24,25,["G435"]]]},{"k":30430,"v":[[0,2,["G5613"]],[2,3,["G4564"]],[3,4,["G5219"]],[4,5,["G11"]],[5,6,["G2564"]],[6,7,["G846"]],[7,8,["G2962"]],[8,9,["G3739"]],[9,10,["G5043"]],[10,12,["G1096"]],[12,18,["G15"]],[18,19,["G2532"]],[19,22,["G5399","G3361"]],[22,24,["G3367"]],[24,25,["G4423"]]]},{"k":30431,"v":[[0,1,["G3668"]],[1,3,["G435"]],[3,5,["G4924"]],[5,7,["G2596"]],[7,9,["G1108"]],[9,10,["G632"]],[10,11,["G5092"]],[11,13,["G3588"]],[13,14,["G1134"]],[14,15,["G5613"]],[15,18,["G772"]],[18,19,["G4632"]],[19,20,["G2532"]],[20,21,["G5613"]],[21,24,["G4789"]],[24,27,["G5485"]],[27,29,["G2222"]],[29,31,["G5216"]],[31,32,["G4335"]],[32,34,["G3361"]],[34,35,["G1581"]]]},{"k":30432,"v":[[0,1,["G5056"]],[1,4,["G3956"]],[4,7,["G3675"]],[7,12,["G4835"]],[12,15,["G5361"]],[15,17,["G2155"]],[17,19,["G5391"]]]},{"k":30433,"v":[[0,1,["G3361"]],[1,2,["G591"]],[2,3,["G2556"]],[3,4,["G473"]],[4,5,["G2556"]],[5,6,["G2228"]],[6,7,["G3059"]],[7,8,["G473"]],[8,9,["G3059"]],[9,10,["G1161"]],[10,11,["G5121"]],[11,12,["G2127"]],[12,13,["G1492"]],[13,14,["G3754"]],[14,17,["G1519","G5124"]],[17,18,["G2564"]],[18,19,["G2443"]],[19,22,["G2816"]],[22,24,["G2129"]]]},{"k":30434,"v":[[0,1,["G1063"]],[1,4,["G2309"]],[4,5,["G25"]],[5,6,["G2222"]],[6,7,["G2532"]],[7,8,["G1492"]],[8,9,["G18"]],[9,10,["G2250"]],[10,13,["G3973"]],[13,14,["G848"]],[14,15,["G1100"]],[15,16,["G575"]],[16,17,["G2556"]],[17,18,["G2532"]],[18,19,["G848"]],[19,20,["G5491"]],[20,23,["G2980"]],[23,24,["G3361"]],[24,25,["G1388"]]]},{"k":30435,"v":[[0,3,["G1578"]],[3,4,["G2556"]],[4,5,["G2532"]],[5,6,["G4160"]],[6,7,["G18"]],[7,10,["G2212"]],[10,11,["G1515"]],[11,12,["G2532"]],[12,13,["G1377"]],[13,14,["G846"]]]},{"k":30436,"v":[[0,1,["G3754"]],[1,2,["G3588"]],[2,3,["G3788"]],[3,6,["G2962"]],[6,8,["G1909"]],[8,10,["G1342"]],[10,11,["G2532"]],[11,12,["G846"]],[12,13,["G3775"]],[13,16,["G1519"]],[16,17,["G846"]],[17,18,["G1162"]],[18,19,["G1161"]],[19,21,["G4383"]],[21,24,["G2962"]],[24,26,["G1909"]],[26,29,["G4160"]],[29,30,["G2556"]]]},{"k":30437,"v":[[0,1,["G2532"]],[1,2,["G5101"]],[2,7,["G2559"]],[7,8,["G5209"]],[8,9,["G1437"]],[9,11,["G1096"]],[11,12,["G3402"]],[12,17,["G18"]]]},{"k":30438,"v":[[0,1,["G235"]],[1,2,["G2532"]],[2,3,["G1487"]],[3,5,["G3958"]],[5,8,["G1223","G1343"]],[8,9,["G3107"]],[9,12,["G1161"]],[12,15,["G5399","G3361"]],[15,17,["G846"]],[17,18,["G5401"]],[18,19,["G3366"]],[19,21,["G5015"]]]},{"k":30439,"v":[[0,1,["G1161"]],[1,2,["G37"]],[2,4,["G2962"]],[4,5,["G2316"]],[5,6,["G1722"]],[6,7,["G5216"]],[7,8,["G2588"]],[8,9,["G1161"]],[9,11,["G2092"]],[11,12,["G104"]],[12,16,["G4314","G627"]],[16,19,["G3956"]],[19,21,["G154"]],[21,22,["G5209"]],[22,24,["G3056"]],[24,25,["G4012"]],[25,26,["G3588"]],[26,27,["G1680"]],[27,30,["G1722"]],[30,31,["G5213"]],[31,32,["G3326"]],[32,33,["G4240"]],[33,34,["G2532"]],[34,35,["G5401"]]]},{"k":30440,"v":[[0,1,["G2192"]],[1,3,["G18"]],[3,4,["G4893"]],[4,5,["G2443"]],[5,6,["G1722","G3739"]],[6,10,["G2635"]],[10,11,["G5216"]],[11,12,["G5613"]],[12,14,["G2555"]],[14,18,["G2617"]],[18,21,["G1908"]],[21,22,["G5216"]],[22,23,["G18"]],[23,24,["G391"]],[24,25,["G1722"]],[25,26,["G5547"]]]},{"k":30441,"v":[[0,1,["G1063"]],[1,4,["G2909"]],[4,5,["G1487"]],[5,6,["G3588"]],[6,7,["G2307"]],[7,9,["G2316"]],[9,10,["G2309"]],[10,14,["G3958"]],[14,17,["G15"]],[17,18,["G2228"]],[18,21,["G2554"]]]},{"k":30442,"v":[[0,1,["G3754"]],[1,2,["G5547"]],[2,3,["G2532"]],[3,5,["G530"]],[5,6,["G3958"]],[6,7,["G4012"]],[7,8,["G266"]],[8,10,["G1342"]],[10,11,["G5228"]],[11,13,["G94"]],[13,14,["G2443"]],[14,17,["G4317"]],[17,18,["G2248"]],[18,20,["G2316"]],[20,24,["G2289"]],[24,26,["(G3303)"]],[26,27,["G4561"]],[27,28,["G1161"]],[28,29,["G2227"]],[29,31,["G3588"]],[31,32,["G4151"]]]},{"k":30443,"v":[[0,1,["G1722"]],[1,2,["G3739"]],[2,3,["G2532"]],[3,5,["G4198"]],[5,7,["G2784"]],[7,9,["G3588"]],[9,10,["G4151"]],[10,11,["G1722"]],[11,12,["G5438"]]]},{"k":30444,"v":[[0,2,["G4218"]],[2,4,["G544"]],[4,5,["G3753"]],[5,6,["G530"]],[6,7,["G3588"]],[7,8,["G3115"]],[8,10,["G2316"]],[10,11,["G1551"]],[11,12,["G1722"]],[12,14,["G2250"]],[14,16,["G3575"]],[16,19,["G2787"]],[19,22,["G2680"]],[22,23,["G1519","G3739"]],[23,24,["G3641"]],[24,26,["G5123"]],[26,27,["G3638"]],[27,28,["G5590"]],[28,30,["G1295"]],[30,31,["G1223"]],[31,32,["G5204"]]]},{"k":30445,"v":[[0,3,["G499"]],[3,4,["G3739"]],[4,6,["G908"]],[6,8,["G2532"]],[8,9,["G3568"]],[9,10,["G4982"]],[10,11,["G2248"]],[11,12,["G3756"]],[12,15,["G595"]],[15,18,["G4509"]],[18,21,["G4561"]],[21,22,["G235"]],[22,24,["G1906"]],[24,27,["G18"]],[27,28,["G4893"]],[28,29,["G1519"]],[29,30,["G2316"]],[30,31,["G1223"]],[31,33,["G386"]],[33,35,["G2424"]],[35,36,["G5547"]]]},{"k":30446,"v":[[0,1,["G3739"]],[1,3,["G4198"]],[3,4,["G1519"]],[4,5,["G3772"]],[5,7,["G2076"]],[7,8,["G1722"]],[8,11,["G1188"]],[11,13,["G2316"]],[13,14,["G32"]],[14,15,["G2532"]],[15,16,["G1849"]],[16,17,["G2532"]],[17,18,["G1411"]],[18,22,["G5293"]],[22,23,["G846"]]]},{"k":30447,"v":[[0,2,["G3767"]],[2,4,["G5547"]],[4,6,["G3958"]],[6,7,["G5228"]],[7,8,["G2257"]],[8,11,["G4561"]],[11,12,["G3695"]],[12,13,["G5210"]],[13,14,["G2532"]],[14,16,["G3588"]],[16,17,["G846"]],[17,18,["G1771"]],[18,19,["G3754"]],[19,23,["G3958"]],[23,24,["G1722"]],[24,26,["G4561"]],[26,28,["G3973"]],[28,30,["G266"]]]},{"k":30448,"v":[[0,4,["G3371"]],[4,6,["G980"]],[6,7,["G3588"]],[7,8,["G1954"]],[8,11,["G5550"]],[11,12,["G1722"]],[12,14,["G4561"]],[14,17,["G1939"]],[17,19,["G444"]],[19,20,["G235"]],[20,23,["G2307"]],[23,25,["G2316"]]]},{"k":30449,"v":[[0,1,["G1063"]],[1,3,["G5550"]],[3,4,["G3928"]],[4,7,["G979"]],[7,9,["G713"]],[9,10,["G2254"]],[10,13,["G2716"]],[13,14,["G3588"]],[14,15,["G2307"]],[15,17,["G3588"]],[17,18,["G1484"]],[18,21,["G4198"]],[21,22,["G1722"]],[22,23,["G766"]],[23,24,["G1939"]],[24,27,["G3632"]],[27,28,["G2970"]],[28,29,["G4224"]],[29,30,["G2532"]],[30,31,["G111"]],[31,32,["G1495"]]]},{"k":30450,"v":[[0,1,["G1722","G3739"]],[1,5,["G3579"]],[5,7,["G5216"]],[7,10,["G4936","G3361"]],[10,12,["G1519"]],[12,13,["G3588"]],[13,14,["G846"]],[14,15,["G401"]],[15,17,["G810"]],[17,20,["G987"]],[20,21,[]]]},{"k":30451,"v":[[0,1,["G3739"]],[1,3,["G591"]],[3,4,["G3056"]],[4,8,["G2192"]],[8,9,["G2093"]],[9,11,["G2919"]],[11,13,["G2198"]],[13,14,["G2532"]],[14,16,["G3498"]]]},{"k":30452,"v":[[0,1,["G1063"]],[1,2,["G1519"]],[2,4,["G5124"]],[4,8,["G2097"]],[8,9,["G2532"]],[9,14,["G3498"]],[14,15,["G2443"]],[15,19,["G2919","(G3303)"]],[19,20,["G2596"]],[20,22,["G444"]],[22,25,["G4561"]],[25,26,["G1161"]],[26,27,["G2198"]],[27,28,["G2596"]],[28,30,["G2316"]],[30,33,["G4151"]]]},{"k":30453,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G5056"]],[3,6,["G3956"]],[6,9,["G1448"]],[9,13,["G4993","G3767"]],[13,14,["G2532"]],[14,15,["G3525"]],[15,16,["G1519"]],[16,17,["G4335"]]]},{"k":30454,"v":[[0,1,["G1161"]],[1,2,["G4253"]],[2,4,["G3956"]],[4,5,["G2192"]],[5,6,["G1618"]],[6,7,["G26"]],[7,8,["G1519"]],[8,9,["G1438"]],[9,10,["G3754"]],[10,11,["G26"]],[11,13,["G2572"]],[13,15,["G4128"]],[15,17,["G266"]]]},{"k":30455,"v":[[0,2,["G5382"]],[2,5,["G240","G1519"]],[5,6,["G427"]],[6,7,["G1112"]]]},{"k":30456,"v":[[0,1,["G2531"]],[1,3,["G1538"]],[3,5,["G2983"]],[5,7,["G5486"]],[7,10,["G1247"]],[10,12,["G846"]],[12,15,["G1519","G1438"]],[15,16,["G5613"]],[16,17,["G2570"]],[17,18,["G3623"]],[18,21,["G4164"]],[21,22,["G5485"]],[22,24,["G2316"]]]},{"k":30457,"v":[[0,3,["G1536"]],[3,4,["G2980"]],[4,8,["G5613"]],[8,10,["G3051"]],[10,12,["G2316"]],[12,15,["G1536"]],[15,16,["G1247"]],[16,21,["G5613"]],[21,22,["G1537"]],[22,24,["G2479"]],[24,25,["G3739"]],[25,26,["G2316"]],[26,27,["G5524"]],[27,28,["G2443"]],[28,29,["G2316"]],[29,30,["G1722"]],[30,32,["G3956"]],[32,35,["G1392"]],[35,36,["G1223"]],[36,37,["G2424"]],[37,38,["G5547"]],[38,40,["G3739"]],[40,41,["G2076"]],[41,42,["G1391"]],[42,43,["G2532"]],[43,44,["G2904"]],[44,48,["G1519","G165","G165"]],[48,49,["G281"]]]},{"k":30458,"v":[[0,1,["G27"]],[1,5,["G3579","G3361"]],[5,7,["G3588"]],[7,9,["G4451"]],[9,10,["(G1722","G5213)"]],[10,11,["G1096"]],[11,13,["G4314","G3986"]],[13,14,["G5213"]],[14,15,["G5613"]],[15,19,["G3581"]],[19,20,["G4819"]],[20,22,["G5213"]]]},{"k":30459,"v":[[0,1,["G235"]],[1,2,["G5463"]],[2,4,["G2526"]],[4,7,["G2841"]],[7,9,["G5547"]],[9,10,["G3804"]],[10,11,["G2443"]],[11,12,["G1722"]],[12,13,["G846"]],[13,14,["G1391"]],[14,17,["G602"]],[17,21,["G5463"]],[21,22,["G2532"]],[22,25,["G21"]]]},{"k":30460,"v":[[0,1,["G1487"]],[1,4,["G3679"]],[4,5,["G1722"]],[5,7,["G3686"]],[7,9,["G5547"]],[9,10,["G3107"]],[10,13,["G3754"]],[13,14,["G3588"]],[14,15,["G4151"]],[15,17,["G1391"]],[17,18,["G2532"]],[18,20,["G2316"]],[20,21,["G373"]],[21,22,["G1909"]],[22,23,["G5209"]],[23,26,["G2596","G846"]],[26,27,["(G3303)"]],[27,31,["G987"]],[31,32,["G1161"]],[32,35,["G2596","G5209"]],[35,38,["G1392"]]]},{"k":30461,"v":[[0,1,["G1063"]],[1,3,["G5100","G3361"]],[3,5,["G5216"]],[5,6,["G3958"]],[6,7,["G5613"]],[7,9,["G5406"]],[9,10,["G2228"]],[10,13,["G2812"]],[13,14,["G2228"]],[14,17,["G2555"]],[17,18,["G2228"]],[18,19,["G5613"]],[19,25,["G244"]]]},{"k":30462,"v":[[0,1,["G1161"]],[1,2,["G1487"]],[2,6,["G5613"]],[6,8,["G5546"]],[8,11,["G3361"]],[11,13,["G153"]],[13,14,["G1161"]],[14,17,["G1392"]],[17,18,["G2316"]],[18,19,["G1722"]],[19,20,["G5129"]],[20,21,["G3313"]]]},{"k":30463,"v":[[0,1,["G3754"]],[1,2,["G3588"]],[2,3,["G2540"]],[3,7,["G2917"]],[7,9,["G756"]],[9,10,["G575"]],[10,11,["G3588"]],[11,12,["G3624"]],[12,14,["G2316"]],[14,15,["G1161"]],[15,16,["G1487"]],[16,18,["G4412"]],[18,20,["G575"]],[20,21,["G2257"]],[21,22,["G5101"]],[22,24,["G3588"]],[24,25,["G5056"]],[25,31,["G544"]],[31,32,["G3588"]],[32,33,["G2098"]],[33,35,["G2316"]]]},{"k":30464,"v":[[0,1,["G2532"]],[1,2,["G1487"]],[2,3,["G3588"]],[3,4,["G1342"]],[4,5,["G3433"]],[5,7,["G4982"]],[7,8,["G4226"]],[8,10,["G3588"]],[10,11,["G765"]],[11,12,["G2532"]],[12,14,["G268"]],[14,15,["G5316"]]]},{"k":30465,"v":[[0,1,["G5620"]],[1,2,["(G2532)"]],[2,5,["G3958"]],[5,6,["G2596"]],[6,8,["G3588"]],[8,9,["G2307"]],[9,11,["G2316"]],[11,15,["G3908"]],[15,16,["G1438"]],[16,17,["G5590"]],[17,20,["G1722"]],[20,22,["G16"]],[22,23,["G5613"]],[23,26,["G4103"]],[26,27,["G2939"]]]},{"k":30466,"v":[[0,2,["G4245"]],[2,3,["G3588"]],[3,5,["G1722"]],[5,6,["G5213"]],[6,8,["G3870"]],[8,13,["G4850"]],[13,14,["G2532"]],[14,16,["G3144"]],[16,18,["G3588"]],[18,19,["G3804"]],[19,21,["G5547"]],[21,22,["G2532"]],[22,25,["G2844"]],[25,28,["G1391"]],[28,30,["G3195"]],[30,32,["G601"]]]},{"k":30467,"v":[[0,1,["G4165"]],[1,2,["G3588"]],[2,3,["G4168"]],[3,5,["G2316"]],[5,8,["G1722"]],[8,9,["G5213"]],[9,12,["G1983"]],[12,14,["G3361"]],[14,16,["G317"]],[16,17,["G235"]],[17,18,["G1596"]],[18,19,["G3366"]],[19,22,["G147"]],[22,23,["G235"]],[23,27,["G4290"]]]},{"k":30468,"v":[[0,1,["G3366"]],[1,2,["G5613"]],[2,5,["G2634"]],[5,7,["G2819"]],[7,8,["G235"]],[8,9,["G1096"]],[9,10,["G5179"]],[10,12,["G3588"]],[12,13,["G4168"]]]},{"k":30469,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,5,["G750"]],[5,7,["G5319"]],[7,10,["G2865"]],[10,12,["G4735"]],[12,14,["G1391"]],[14,18,["G262"]]]},{"k":30470,"v":[[0,1,["G3668"]],[1,3,["G3501"]],[3,5,["G5293"]],[5,8,["G4245"]],[8,9,["G1161"]],[9,10,["G3956"]],[10,14,["G5293"]],[14,17,["G240"]],[17,18,["G2532"]],[18,21,["G1463"]],[21,22,["G5012"]],[22,23,["G3754"]],[23,24,["G2316"]],[24,25,["G498"]],[25,27,["G5244"]],[27,28,["G1161"]],[28,29,["G1325"]],[29,30,["G5485"]],[30,33,["G5011"]]]},{"k":30471,"v":[[0,2,["G5013"]],[2,3,["G3767"]],[3,4,["G5259"]],[4,5,["G3588"]],[5,6,["G2900"]],[6,7,["G5495"]],[7,9,["G2316"]],[9,10,["G2443"]],[10,13,["G5312"]],[13,14,["G5209"]],[14,15,["G1722"]],[15,17,["G2540"]]]},{"k":30472,"v":[[0,1,["G1977"]],[1,2,["G3956"]],[2,3,["G5216"]],[3,4,["G3308"]],[4,5,["G1909"]],[5,6,["G846"]],[6,7,["G3754"]],[7,8,["G846"]],[8,9,["G3199"]],[9,10,["G4012"]],[10,11,["G5216"]]]},{"k":30473,"v":[[0,2,["G3525"]],[2,4,["G1127"]],[4,5,["G3754"]],[5,6,["G5216"]],[6,7,["G476"]],[7,9,["G1228"]],[9,10,["G5613"]],[10,12,["G5612"]],[12,13,["G3023"]],[13,15,["G4043"]],[15,16,["G2212"]],[16,17,["G5101"]],[17,20,["G2666"]]]},{"k":30474,"v":[[0,1,["G3739"]],[1,2,["G436"]],[2,3,["G4731"]],[3,5,["G3588"]],[5,6,["G4102"]],[6,7,["G1492"]],[7,9,["G3588"]],[9,10,["G846"]],[10,11,["G3804"]],[11,13,["G2005"]],[13,15,["G5216"]],[15,16,["G81"]],[16,19,["G1722"]],[19,21,["G2889"]]]},{"k":30475,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2316"]],[3,5,["G3956"]],[5,6,["G5485"]],[6,9,["G2564"]],[9,10,["G2248"]],[10,11,["G1519"]],[11,12,["G848"]],[12,13,["G166"]],[13,14,["G1391"]],[14,15,["G1722"]],[15,16,["G5547"]],[16,17,["G2424"]],[17,22,["G3958"]],[22,24,["G3641"]],[24,27,["G2675","G5209"]],[27,28,["G4741"]],[28,29,["G4599"]],[29,30,["G2311"]],[30,31,[]]]},{"k":30476,"v":[[0,2,["G846"]],[2,4,["G1391"]],[4,5,["G2532"]],[5,6,["G2904"]],[6,10,["G1519","G165","G165"]],[10,11,["G281"]]]},{"k":30477,"v":[[0,1,["G1223"]],[1,2,["G4610"]],[2,4,["G4103"]],[4,5,["G80"]],[5,7,["G5213"]],[7,8,["G5613"]],[8,10,["G3049"]],[10,13,["G1125"]],[13,14,["G1223","G3641"]],[14,15,["G3870"]],[15,16,["G2532"]],[16,17,["G1957"]],[17,19,["G5026"]],[19,20,["G1511"]],[20,22,["G227"]],[22,23,["G5485"]],[23,25,["G2316"]],[25,26,["G1519","G3739"]],[26,28,["G2476"]]]},{"k":30478,"v":[[0,1,["G3588"]],[1,5,["G1722"]],[5,6,["G897"]],[6,9,["G4899"]],[9,11,["G782"]],[11,12,["G5209"]],[12,13,["G2532"]],[13,16,["G3138"]],[16,17,["G3450"]],[17,18,["G5207"]]]},{"k":30479,"v":[[0,1,["G782"]],[1,4,["G240"]],[4,5,["G1722"]],[5,7,["G5370"]],[7,9,["G26"]],[9,10,["G1515"]],[10,13,["G5213"]],[13,14,["G3956"]],[14,15,["G3588"]],[15,17,["G1722"]],[17,18,["G5547"]],[18,19,["G2424"]],[19,20,["G281"]]]},{"k":30480,"v":[[0,1,["G4826"]],[1,2,["G4074"]],[2,4,["G1401"]],[4,5,["G2532"]],[5,7,["G652"]],[7,9,["G2424"]],[9,10,["G5547"]],[10,15,["G2975"]],[15,17,["G2472"]],[17,18,["G4102"]],[18,20,["G2254"]],[20,21,["G1722"]],[21,23,["G1343"]],[23,25,["G2316"]],[25,26,["G2532"]],[26,27,["G2257"]],[27,28,["G4990"]],[28,29,["G2424"]],[29,30,["G5547"]]]},{"k":30481,"v":[[0,1,["G5485"]],[1,2,["G2532"]],[2,3,["G1515"]],[3,5,["G4129"]],[5,7,["G5213"]],[7,8,["G1722"]],[8,10,["G1922"]],[10,12,["G2316"]],[12,13,["G2532"]],[13,15,["G2424"]],[15,16,["G2257"]],[16,17,["G2962"]]]},{"k":30482,"v":[[0,2,["G5613"]],[2,3,["G846"]],[3,4,["G2304"]],[4,5,["G1411"]],[5,7,["G1433"]],[7,9,["G2254"]],[9,11,["G3956"]],[11,12,["G3588"]],[12,14,["G4314"]],[14,15,["G2222"]],[15,16,["G2532"]],[16,17,["G2150"]],[17,18,["G1223"]],[18,19,["G3588"]],[19,20,["G1922"]],[20,25,["G2564"]],[25,26,["G2248"]],[26,27,["G1223"]],[27,28,["G1391"]],[28,29,["G2532"]],[29,30,["G703"]]]},{"k":30483,"v":[[0,1,["G1223","G3739"]],[1,3,["G1433"]],[3,5,["G2254"]],[5,7,["G3176"]],[7,8,["G2532"]],[8,9,["G5093"]],[9,10,["G1862"]],[10,11,["G2443"]],[11,12,["G1223"]],[12,13,["G5130"]],[13,16,["G1096"]],[16,17,["G2844"]],[17,20,["G2304"]],[20,21,["G5449"]],[21,23,["G668"]],[23,24,["G3588"]],[24,25,["G5356"]],[25,28,["G1722"]],[28,30,["G2889"]],[30,31,["G1722"]],[31,32,["G1939"]]]},{"k":30484,"v":[[0,1,["G1161"]],[1,3,["G846","G5124","(G2532)"]],[3,4,["G3923"]],[4,5,["G3956"]],[5,6,["G4710"]],[6,7,["G2023"]],[7,8,["G1722"]],[8,9,["G5216"]],[9,10,["G4102"]],[10,11,["G703"]],[11,12,["G1161"]],[12,13,["G1722"]],[13,14,["G703"]],[14,15,["G1108"]]]},{"k":30485,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,3,["G1108"]],[3,4,["G1466"]],[4,5,["G1161"]],[5,6,["G1722"]],[6,7,["G1466"]],[7,8,["G5281"]],[8,9,["G1161"]],[9,10,["G1722"]],[10,11,["G5281"]],[11,12,["G2150"]]]},{"k":30486,"v":[[0,1,["G1161"]],[1,2,["G1722"]],[2,3,["G2150"]],[3,5,["G5360"]],[5,6,["G1161"]],[6,7,["G1722"]],[7,9,["G5360"]],[9,10,["G26"]]]},{"k":30487,"v":[[0,1,["G1063"]],[1,4,["G5023"]],[4,5,["G5225"]],[5,7,["G5213"]],[7,8,["G2532"]],[8,9,["G4121"]],[9,11,["G2525"]],[11,16,["G3756"]],[16,18,["G692"]],[18,19,["G3761"]],[19,20,["G175"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G1922"]],[23,25,["G2257"]],[25,26,["G2962"]],[26,27,["G2424"]],[27,28,["G5547"]]]},{"k":30488,"v":[[0,1,["G1063"]],[1,2,["G3739"]],[2,4,["G3918","G3361"]],[4,6,["G5023"]],[6,7,["G2076"]],[7,8,["G5185"]],[8,13,["G3467"]],[13,16,["G2983","G3024"]],[16,20,["G2512"]],[20,22,["G848"]],[22,23,["G3819"]],[23,24,["G266"]]]},{"k":30489,"v":[[0,1,["G1352"]],[1,3,["G3123"]],[3,4,["G80"]],[4,6,["G4704"]],[6,8,["G4160"]],[8,9,["G5216"]],[9,10,["G2821"]],[10,11,["G2532"]],[11,12,["G1589"]],[12,13,["G949"]],[13,14,["G1063"]],[14,17,["G4160"]],[17,19,["G5023"]],[19,22,["G3364","G4218"]],[22,23,["G4417"]]]},{"k":30490,"v":[[0,1,["G1063"]],[1,2,["G3779"]],[2,4,["G1529"]],[4,8,["G2023"]],[8,9,["G5213"]],[9,10,["G4146"]],[10,11,["G1519"]],[11,12,["G3588"]],[12,13,["G166"]],[13,14,["G932"]],[14,16,["G2257"]],[16,17,["G2962"]],[17,18,["G2532"]],[18,19,["G4990"]],[19,20,["G2424"]],[20,21,["G5547"]]]},{"k":30491,"v":[[0,1,["G1352"]],[1,4,["G3756"]],[4,6,["G272"]],[6,12,["G5279","G5209","G104"]],[12,13,["G4012"]],[13,15,["G5130"]],[15,16,["G2539"]],[16,18,["G1492"]],[18,20,["G2532"]],[20,22,["G4741"]],[22,23,["G1722"]],[23,24,["G3588"]],[24,25,["G3918"]],[25,26,["G225"]]]},{"k":30492,"v":[[0,1,["G1161"]],[1,3,["G2233"]],[3,5,["G1342"]],[5,8,["G1909","G3745"]],[8,10,["G1510"]],[10,11,["G1722"]],[11,12,["G5129"]],[12,13,["G4638"]],[13,17,["G1326","G5209"]],[17,22,["G1722","G5280"]]]},{"k":30493,"v":[[0,1,["G1492"]],[1,2,["G3754"]],[2,3,["G5031"]],[3,5,["G2076"]],[5,7,["G595"]],[7,9,["G3450"]],[9,10,["G4638"]],[10,11,["G2532"]],[11,12,["G2531"]],[12,13,["G2257"]],[13,14,["G2962"]],[14,15,["G2424"]],[15,16,["G5547"]],[16,18,["G1213"]],[18,19,["G3427"]]]},{"k":30494,"v":[[0,1,["G1161"]],[1,4,["G4704"]],[4,5,["(G2532)"]],[5,6,["G5209"]],[6,10,["G3326"]],[10,11,["G1699"]],[11,12,["G1841"]],[12,14,["G2192"]],[14,16,["G5130"]],[16,17,["G1539"]],[17,19,["G4160","G3420"]]]},{"k":30495,"v":[[0,1,["G1063"]],[1,4,["G3756"]],[4,5,["G1811"]],[5,7,["G4679"]],[7,8,["G3454"]],[8,12,["G1107"]],[12,14,["G5213"]],[14,15,["G3588"]],[15,16,["G1411"]],[16,17,["G2532"]],[17,18,["G3952"]],[18,20,["G2257"]],[20,21,["G2962"]],[21,22,["G2424"]],[22,23,["G5547"]],[23,24,["G235"]],[24,25,["G1096"]],[25,26,["G2030"]],[26,28,["G1565"]],[28,29,["G3168"]]]},{"k":30496,"v":[[0,1,["G1063"]],[1,3,["G2983"]],[3,4,["G3844"]],[4,5,["G2316"]],[5,7,["G3962"]],[7,8,["G5092"]],[8,9,["G2532"]],[9,10,["G1391"]],[10,13,["G5342"]],[13,14,["G5107"]],[14,16,["G5456"]],[16,18,["G846"]],[18,19,["G5259"]],[19,20,["G3588"]],[20,21,["G3169"]],[21,22,["G1391"]],[22,23,["G3778"]],[23,24,["G2076"]],[24,25,["G3450"]],[25,26,["G27"]],[26,27,["G5207"]],[27,28,["G1519"]],[28,29,["G3739"]],[29,30,["G1473"]],[30,33,["G2106"]]]},{"k":30497,"v":[[0,1,["G2532"]],[1,2,["G5026"]],[2,3,["G5456"]],[3,5,["G5342"]],[5,6,["G1537"]],[6,7,["G3772"]],[7,8,["G2249"]],[8,9,["G191"]],[9,12,["G5607"]],[12,13,["G4862"]],[13,14,["G846"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G40"]],[17,18,["G3735"]]]},{"k":30498,"v":[[0,2,["G2192"]],[2,3,["G2532"]],[3,6,["G949"]],[6,7,["G3056"]],[7,9,["G4397"]],[9,10,["G3739"]],[10,12,["G4160"]],[12,13,["G2573"]],[13,17,["G4337"]],[17,18,["G5613"]],[18,21,["G3088"]],[21,23,["G5316"]],[23,24,["G1722"]],[24,26,["G850"]],[26,27,["G5117"]],[27,28,["G2193","G3757"]],[28,30,["G2250"]],[30,31,["G1306"]],[31,32,["G2532"]],[32,35,["G5459"]],[35,36,["G393"]],[36,37,["G1722"]],[37,38,["G5216"]],[38,39,["G2588"]]]},{"k":30499,"v":[[0,1,["G1097"]],[1,2,["G5124"]],[2,3,["G4412"]],[3,4,["G3754"]],[4,5,["G3956","G3756"]],[5,6,["G4394"]],[6,9,["G1124"]],[9,10,["G1096"]],[10,13,["G2398"]],[13,14,["G1955"]]]},{"k":30500,"v":[[0,1,["G1063"]],[1,3,["G4394"]],[3,4,["G5342"]],[4,5,["G3756"]],[5,8,["G4218"]],[8,11,["G2307"]],[11,13,["G444"]],[13,14,["G235"]],[14,15,["G40"]],[15,16,["G444"]],[16,18,["G2316"]],[18,19,["G2980"]],[19,23,["G5342"]],[23,24,["G5259"]],[24,26,["G40"]],[26,27,["G4151"]]]},{"k":30501,"v":[[0,1,["G1161"]],[1,3,["G1096"]],[3,5,["G5578"]],[5,6,["G2532"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G2992"]],[9,10,["G2532"]],[10,11,["G5613"]],[11,14,["G2071"]],[14,16,["G5572"]],[16,17,["G1722"]],[17,18,["G5213"]],[18,19,["G3748"]],[19,23,["G3919"]],[23,24,["G684"]],[24,25,["G139"]],[25,26,["G2532"]],[26,27,["G720"]],[27,28,["G3588"]],[28,29,["G1203"]],[29,31,["G59"]],[31,32,["G846"]],[32,35,["G1863"]],[35,36,["G1438"]],[36,37,["G5031"]],[37,38,["G684"]]]},{"k":30502,"v":[[0,1,["G2532"]],[1,2,["G4183"]],[2,4,["G1811"]],[4,5,["G846"]],[5,7,["G684"]],[7,10,["G1223"]],[10,11,["G3739"]],[11,12,["G3588"]],[12,13,["G3598"]],[13,15,["G225"]],[15,20,["G987"]]]},{"k":30503,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G4124"]],[3,7,["G4112"]],[7,8,["G3056"]],[8,10,["G1710"]],[10,12,["G5209"]],[12,13,["G3739"]],[13,14,["G2917"]],[14,19,["G1597"]],[19,20,["G691"]],[20,21,["G3756"]],[21,22,["G2532"]],[22,23,["G846"]],[23,24,["G684"]],[24,25,["G3573"]],[25,26,["G3756"]]]},{"k":30504,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,3,["G2316"]],[3,4,["G5339"]],[4,5,["G3756"]],[5,7,["G32"]],[7,9,["G264"]],[9,10,["G235"]],[10,15,["G5020"]],[15,17,["G3860"]],[17,20,["G4577"]],[20,22,["G2217"]],[22,25,["G5083"]],[25,26,["G1519"]],[26,27,["G2920"]]]},{"k":30505,"v":[[0,1,["G2532"]],[1,2,["G5339"]],[2,3,["G3756"]],[3,5,["G744"]],[5,6,["G2889"]],[6,7,["G235"]],[7,8,["G5442"]],[8,9,["G3575"]],[9,11,["G3590"]],[11,14,["G2783"]],[14,16,["G1343"]],[16,18,["G1863"]],[18,20,["G2627"]],[20,23,["G2889"]],[23,26,["G765"]]]},{"k":30506,"v":[[0,1,["G2532"]],[1,10,["G5077","G4172","G4670","G2532","G1116"]],[10,11,["G2632"]],[11,15,["G2692"]],[15,16,["G5087"]],[16,19,["G5262"]],[19,24,["G3195"]],[24,26,["G764"]]]},{"k":30507,"v":[[0,1,["G2532"]],[1,2,["G4506"]],[2,3,["G1342"]],[3,4,["G3091"]],[4,5,["G2669"]],[5,6,["G5259"]],[6,7,["G3588"]],[7,9,["G1722","G766","G391"]],[9,11,["G3588"]],[11,12,["G113"]]]},{"k":30508,"v":[[0,1,["G1063"]],[1,4,["G1342"]],[4,5,["G1460"]],[5,6,["G1722"]],[6,7,["G846"]],[7,9,["G990"]],[9,10,["G2532"]],[10,11,["G189"]],[11,12,["G928"]],[12,14,["G1342"]],[14,15,["G5590"]],[15,17,["G2250"]],[17,18,["G1537"]],[18,19,["G2250"]],[19,22,["G459"]],[22,23,["G2041"]]]},{"k":30509,"v":[[0,2,["G2962"]],[2,3,["G1492"]],[3,6,["G4506"]],[6,8,["G2152"]],[8,10,["G1537"]],[10,11,["G3986"]],[11,12,["G1161"]],[12,14,["G5083"]],[14,16,["G94"]],[16,17,["G1519"]],[17,19,["G2250"]],[19,21,["G2920"]],[21,24,["G2849"]]]},{"k":30510,"v":[[0,1,["G1161"]],[1,2,["G3122"]],[2,5,["G4198"]],[5,6,["G3694"]],[6,8,["G4561"]],[8,9,["G1722"]],[9,11,["G1939"]],[11,13,["G3394"]],[13,14,["G2532"]],[14,15,["G2706"]],[15,16,["G2963"]],[16,17,["G5113"]],[17,20,["G829"]],[20,23,["G3756"]],[23,24,["G5141"]],[24,27,["G987"]],[27,29,["G1391"]]]},{"k":30511,"v":[[0,1,["G3699"]],[1,2,["G32"]],[2,4,["G5607"]],[4,5,["G3187"]],[5,7,["G2479"]],[7,8,["G2532"]],[8,9,["G1411"]],[9,10,["G5342"]],[10,11,["G3756"]],[11,12,["G989"]],[12,13,["G2920"]],[13,14,["G2596"]],[14,15,["G846"]],[15,16,["G3844"]],[16,18,["G2962"]]]},{"k":30512,"v":[[0,1,["G1161"]],[1,2,["G3778"]],[2,3,["G5613"]],[3,4,["G5446"]],[4,5,["G249"]],[5,6,["G2226"]],[6,7,["G1080"]],[7,10,["G1519","G259"]],[10,11,["G2532"]],[11,12,["G5356"]],[12,14,["G987"]],[14,15,["G1722"]],[15,18,["G3739"]],[18,21,["G50"]],[21,25,["G2704"]],[25,26,["G1722"]],[26,28,["G848"]],[28,29,["G5356"]]]},{"k":30513,"v":[[0,3,["G2865"]],[3,5,["G3408"]],[5,7,["G93"]],[7,11,["G2233"]],[11,13,["G2237"]],[13,15,["G5172"]],[15,16,["G1722"]],[16,19,["G2250"]],[19,20,["G4695"]],[20,23,["G2532"]],[23,24,["G3470"]],[24,26,["G1792"]],[26,27,["G1722"]],[27,29,["G848"]],[29,30,["G539"]],[30,33,["G4910"]],[33,35,["G5213"]]]},{"k":30514,"v":[[0,1,["G2192"]],[1,2,["G3788"]],[2,3,["G3324"]],[3,5,["G3428"]],[5,6,["G2532"]],[6,9,["G180"]],[9,11,["G266"]],[11,12,["G1185"]],[12,13,["G793"]],[13,14,["G5590"]],[14,16,["G2588"]],[16,18,["G2192"]],[18,19,["G1128"]],[19,22,["G4124"]],[22,23,["G2671"]],[23,24,["G5043"]]]},{"k":30515,"v":[[0,3,["G2641"]],[3,4,["G3588"]],[4,5,["G2117"]],[5,6,["G3598"]],[6,10,["G4105"]],[10,11,["G1811"]],[11,12,["G3588"]],[12,13,["G3598"]],[13,15,["G903"]],[15,19,["G1007"]],[19,20,["G3739"]],[20,21,["G25"]],[21,23,["G3408"]],[23,25,["G93"]]]},{"k":30516,"v":[[0,1,["G1161"]],[1,3,["G2192","G1649"]],[3,5,["G2398"]],[5,6,["G3892"]],[6,8,["G880"]],[8,9,["G5268"]],[9,10,["G5350"]],[10,11,["G1722"]],[11,12,["G444"]],[12,13,["G5456"]],[13,14,["G2967"]],[14,15,["G3588"]],[15,16,["G3913"]],[16,18,["G3588"]],[18,19,["G4396"]]]},{"k":30517,"v":[[0,1,["G3778"]],[1,2,["G1526"]],[2,3,["G4077"]],[3,5,["G504"]],[5,6,["G3507"]],[6,9,["G1643"]],[9,10,["G5259"]],[10,12,["G2978"]],[12,14,["G3739"]],[14,15,["G3588"]],[15,16,["G2217"]],[16,18,["G4655"]],[18,20,["G5083"]],[20,22,["G1519","G165"]]]},{"k":30518,"v":[[0,1,["G1063"]],[1,4,["G5350"]],[4,6,["G5246"]],[6,9,["G3153"]],[9,11,["G1185"]],[11,12,["G1722"]],[12,14,["G1939"]],[14,17,["G4561"]],[17,20,["G766"]],[20,25,["G668","G3689"]],[25,29,["G390"]],[29,30,["G1722"]],[30,31,["G4106"]]]},{"k":30519,"v":[[0,3,["G1861"]],[3,4,["G846"]],[4,5,["G1657"]],[5,6,["G846"]],[6,8,["G5225"]],[8,10,["G1401"]],[10,12,["G5356"]],[12,13,["G1063"]],[13,15,["G3739"]],[15,17,["G5100"]],[17,19,["G2274"]],[19,22,["G5129"]],[22,24,["(G2532)"]],[24,27,["G1402"]]]},{"k":30520,"v":[[0,1,["G1063"]],[1,2,["G1487"]],[2,6,["G668"]],[6,7,["G3588"]],[7,8,["G3393"]],[8,10,["G3588"]],[10,11,["G2889"]],[11,12,["G1722"]],[12,14,["G1922"]],[14,16,["G3588"]],[16,17,["G2962"]],[17,18,["G2532"]],[18,19,["G4990"]],[19,20,["G2424"]],[20,21,["G5547"]],[21,23,["(G1161)"]],[23,24,["G3825"]],[24,25,["G1707"]],[25,26,["G5125"]],[26,27,["G2532"]],[27,28,["G2274"]],[28,29,["G3588"]],[29,31,["G2078"]],[31,32,["G1096"]],[32,33,["G5501"]],[33,35,["G846"]],[35,37,["G3588"]],[37,38,["G4413"]]]},{"k":30521,"v":[[0,1,["G1063"]],[1,4,["G2258"]],[4,5,["G2909"]],[5,7,["G846"]],[7,8,["G3361"]],[8,11,["G1921"]],[11,12,["G3588"]],[12,13,["G3598"]],[13,15,["G1343"]],[15,16,["G2228"]],[16,20,["G1921"]],[20,23,["G1994"]],[23,24,["G1537"]],[24,25,["G3588"]],[25,26,["G40"]],[26,27,["G1785"]],[27,28,["G3860"]],[28,30,["G846"]]]},{"k":30522,"v":[[0,1,["G1161"]],[1,4,["G4819"]],[4,6,["G846"]],[6,7,["(G3588)"]],[7,9,["G3588"]],[9,10,["G227"]],[10,11,["G3942"]],[11,13,["G2965"]],[13,20,["G1994","G1909","G2398","G1829"]],[20,21,["G2532"]],[21,23,["G5300"]],[23,26,["G3068"]],[26,27,["G1519"]],[27,29,["G2946"]],[29,32,["G1004"]]]},{"k":30523,"v":[[0,1,["G5026"]],[1,2,["G1208"]],[2,3,["G1992"]],[3,4,["G27"]],[4,6,["G2235"]],[6,7,["G1125"]],[7,9,["G5213"]],[9,10,["G1722"]],[10,12,["G3739"]],[12,15,["G1326"]],[15,16,["G5216"]],[16,17,["G1506"]],[17,18,["G1271"]],[18,21,["G1722"]],[21,22,["G5280"]]]},{"k":30524,"v":[[0,5,["G3415"]],[5,7,["G3588"]],[7,8,["G4487"]],[8,12,["G4280"]],[12,13,["G5259"]],[13,14,["G3588"]],[14,15,["G40"]],[15,16,["G4396"]],[16,17,["G2532"]],[17,19,["G3588"]],[19,20,["G1785"]],[20,22,["G2257"]],[22,23,["G3588"]],[23,24,["G652"]],[24,26,["G3588"]],[26,27,["G2962"]],[27,28,["G2532"]],[28,29,["G4990"]]]},{"k":30525,"v":[[0,1,["G1097"]],[1,2,["G5124"]],[2,3,["G4412"]],[3,4,["G3754"]],[4,7,["G2064"]],[7,8,["G1909"]],[8,10,["G2078"]],[10,11,["G2250"]],[11,12,["G1703"]],[12,13,["G4198"]],[13,14,["G2596"]],[14,15,["G848"]],[15,16,["G2398"]],[16,17,["G1939"]]]},{"k":30526,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,3,["G4226"]],[3,4,["G2076"]],[4,5,["G3588"]],[5,6,["G1860"]],[6,8,["G846"]],[8,9,["G3952"]],[9,10,["G1063"]],[10,11,["G575","G3739"]],[11,12,["G3588"]],[12,13,["G3962"]],[13,15,["G2837"]],[15,17,["G3956"]],[17,18,["G1265"]],[18,19,["G3779"]],[19,22,["G575"]],[22,24,["G746"]],[24,27,["G2937"]]]},{"k":30527,"v":[[0,1,["G1063"]],[1,2,["G5124"]],[2,3,["G846"]],[3,4,["G2309"]],[4,7,["G2990"]],[7,8,["G3754"]],[8,10,["G3588"]],[10,11,["G3056"]],[11,13,["G2316"]],[13,15,["G3772"]],[15,16,["G2258"]],[16,18,["G1597"]],[18,19,["G2532"]],[19,21,["G1093"]],[21,22,["G4921"]],[22,24,["G1537"]],[24,26,["G5204"]],[26,27,["G2532"]],[27,28,["G1223"]],[28,30,["G5204"]]]},{"k":30528,"v":[[0,1,["G1223","G3739"]],[1,2,["G3588"]],[2,3,["G2889"]],[3,5,["G5119"]],[5,8,["G2626"]],[8,10,["G5204"]],[10,11,["G622"]]]},{"k":30529,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3772"]],[3,4,["G2532"]],[4,5,["G3588"]],[5,6,["G1093"]],[6,9,["G3568"]],[9,11,["G3588"]],[11,12,["G846"]],[12,13,["G3056"]],[13,14,["G1526"]],[14,17,["G2343"]],[17,18,["G5083"]],[18,20,["G4442"]],[20,21,["G1519"]],[21,23,["G2250"]],[23,25,["G2920"]],[25,26,["G2532"]],[26,27,["G684"]],[27,29,["G765"]],[29,30,["G444"]]]},{"k":30530,"v":[[0,1,["G1161"]],[1,2,["G27"]],[2,5,["G2990","G3361"]],[5,7,["G5124"]],[7,9,["G1520"]],[9,10,["G3754"]],[10,11,["G3391"]],[11,12,["G2250"]],[12,14,["G3844"]],[14,16,["G2962"]],[16,17,["G5613"]],[17,19,["G5507"]],[19,20,["G2094"]],[20,21,["G2532"]],[21,23,["G5507"]],[23,24,["G2094"]],[24,25,["G5613"]],[25,26,["G3391"]],[26,27,["G2250"]]]},{"k":30531,"v":[[0,1,["G3588"]],[1,2,["G2962"]],[2,5,["G1019","G3756"]],[5,8,["G1860"]],[8,9,["G5613"]],[9,11,["G5100"]],[11,12,["G2233"]],[12,13,["G1022"]],[13,14,["G235"]],[14,16,["G3114"]],[16,17,["G1519"]],[17,18,["G2248"]],[18,19,["G3361"]],[19,20,["G1014"]],[20,22,["G5100"]],[22,24,["G622"]],[24,25,["G235"]],[25,27,["G3956"]],[27,29,["G5562"]],[29,30,["G1519"]],[30,31,["G3341"]]]},{"k":30532,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G2250"]],[3,6,["G2962"]],[6,8,["G2240"]],[8,9,["G5613"]],[9,11,["G2812"]],[11,12,["G1722"]],[12,14,["G3571"]],[14,15,["G1722"]],[15,17,["G3739"]],[17,18,["G3588"]],[18,19,["G3772"]],[19,22,["G3928"]],[22,26,["G4500"]],[26,27,["G1161"]],[27,29,["G4747"]],[29,31,["G3089"]],[31,34,["G2741"]],[34,36,["G1093"]],[36,37,["G2532"]],[37,38,["G2532"]],[38,39,["G3588"]],[39,40,["G2041"]],[40,43,["G1722","G846"]],[43,47,["G2618"]]]},{"k":30533,"v":[[0,2,["G3767"]],[2,4,["G3956"]],[4,6,["G5130"]],[6,9,["G3089"]],[9,11,["G4217"]],[11,14,["G1163"]],[14,15,["G5209"]],[15,17,["G5225"]],[17,18,["G1722"]],[18,20,["G40"]],[20,21,["G391"]],[21,22,["G2532"]],[22,23,["G2150"]]]},{"k":30534,"v":[[0,2,["G4328"]],[2,3,["G2532"]],[3,4,["G4692"]],[4,6,["G3588"]],[6,7,["G3952"]],[7,9,["G3588"]],[9,10,["G2250"]],[10,12,["G2316"]],[12,13,["G1223","G3739"]],[13,15,["G3772"]],[15,18,["G4448"]],[18,21,["G3089"]],[21,22,["G2532"]],[22,24,["G4747"]],[24,26,["G5080"]],[26,29,["G2741"]]]},{"k":30535,"v":[[0,1,["G1161"]],[1,3,["G2596"]],[3,5,["G846"]],[5,6,["G1862"]],[6,8,["G4328"]],[8,9,["G2537"]],[9,10,["G3772"]],[10,11,["G2532"]],[11,13,["G2537"]],[13,14,["G1093"]],[14,15,["G1722","G3739"]],[15,16,["G2730"]],[16,17,["G1343"]]]},{"k":30536,"v":[[0,1,["G1352"]],[1,2,["G27"]],[2,7,["G4328"]],[7,9,["G5023"]],[9,11,["G4704"]],[11,16,["G2147"]],[16,18,["G846"]],[18,19,["G1722"]],[19,20,["G1515"]],[20,22,["G784"]],[22,23,["G2532"]],[23,24,["G298"]]]},{"k":30537,"v":[[0,1,["G2532"]],[1,2,["G2233"]],[2,4,["G3588"]],[4,5,["G3115"]],[5,7,["G2257"]],[7,8,["G2962"]],[8,10,["G4991"]],[10,12,["G2532"]],[12,13,["G2257"]],[13,14,["G27"]],[14,15,["G80"]],[15,16,["G3972"]],[16,17,["G2532"]],[17,18,["G2596"]],[18,20,["G3588"]],[20,21,["G4678"]],[21,22,["G1325"]],[22,24,["G846"]],[24,26,["G1125"]],[26,28,["G5213"]]]},{"k":30538,"v":[[0,1,["G5613"]],[1,2,["G2532"]],[2,3,["G1722"]],[3,4,["G3956"]],[4,6,["G1992"]],[6,7,["G2980"]],[7,8,["G1722"]],[8,9,["G846"]],[9,10,["G4012"]],[10,12,["G5130"]],[12,13,["G1722"]],[13,14,["G3739"]],[14,15,["G2076"]],[15,17,["G5100"]],[17,21,["G1425"]],[21,22,["G3739"]],[22,26,["G261"]],[26,27,["G2532"]],[27,28,["G793"]],[28,29,["G4761"]],[29,30,["G5613"]],[30,33,["G2532"]],[33,34,["G3588"]],[34,35,["G3062"]],[35,36,["G1124"]],[36,37,["G4314"]],[37,38,["G848"]],[38,39,["G2398"]],[39,40,["G684"]]]},{"k":30539,"v":[[0,1,["G5210"]],[1,2,["G3767"]],[2,3,["G27"]],[3,9,["G4267"]],[9,10,["G5442"]],[10,11,["G3363"]],[11,17,["G4879"]],[17,18,["G3588"]],[18,19,["G4106"]],[19,21,["G3588"]],[21,22,["G113"]],[22,24,["G1601"]],[24,26,["G2398"]],[26,27,["G4740"]]]},{"k":30540,"v":[[0,1,["G1161"]],[1,2,["G837"]],[2,3,["G1722"]],[3,4,["G5485"]],[4,5,["G2532"]],[5,8,["G1108"]],[8,10,["G2257"]],[10,11,["G2962"]],[11,12,["G2532"]],[12,13,["G4990"]],[13,14,["G2424"]],[14,15,["G5547"]],[15,17,["G846"]],[17,19,["G1391"]],[19,20,["G2532"]],[20,21,["G3568"]],[21,22,["G2532"]],[22,24,["G1519","G2250","G165"]],[24,25,["G281"]]]},{"k":30541,"v":[[0,2,["G3739"]],[2,3,["G2258"]],[3,4,["G575"]],[4,6,["G746"]],[6,7,["G3739"]],[7,10,["G191"]],[10,11,["G3739"]],[11,14,["G3708"]],[14,16,["G2257"]],[16,17,["G3788"]],[17,18,["G3739"]],[18,22,["G2300"]],[22,23,["G2532"]],[23,24,["G2257"]],[24,25,["G5495"]],[25,27,["G5584"]],[27,28,["G4012"]],[28,29,["G3588"]],[29,30,["G3056"]],[30,32,["G2222"]]]},{"k":30542,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2222"]],[3,5,["G5319"]],[5,6,["G2532"]],[6,9,["G3708"]],[9,11,["G2532"]],[11,13,["G3140"]],[13,14,["G2532"]],[14,15,["G518"]],[15,17,["G5213"]],[17,19,["G166"]],[19,20,["G2222"]],[20,21,["G3748"]],[21,22,["G2258"]],[22,23,["G4314"]],[23,24,["G3588"]],[24,25,["G3962"]],[25,26,["G2532"]],[26,28,["G5319"]],[28,30,["G2254"]]]},{"k":30543,"v":[[0,2,["G3739"]],[2,5,["G3708"]],[5,6,["G2532"]],[6,7,["G191"]],[7,8,["G518"]],[8,11,["G5213"]],[11,12,["G2443"]],[12,13,["G5210"]],[13,14,["G2532"]],[14,16,["G2192"]],[16,17,["G2842"]],[17,18,["G3326"]],[18,19,["G2257"]],[19,20,["G2532"]],[20,21,["G1161"]],[21,22,["G2251"]],[22,23,["G2842"]],[23,25,["G3326"]],[25,26,["G3588"]],[26,27,["G3962"]],[27,28,["G2532"]],[28,29,["G3326"]],[29,30,["G848"]],[30,31,["G5207"]],[31,32,["G2424"]],[32,33,["G5547"]]]},{"k":30544,"v":[[0,1,["G2532"]],[1,3,["G5023"]],[3,4,["G1125"]],[4,7,["G5213"]],[7,8,["G2443"]],[8,9,["G5216"]],[9,10,["G5479"]],[10,12,["G5600"]],[12,13,["G4137"]]]},{"k":30545,"v":[[0,1,["G3778"]],[1,2,["G2532"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G1860"]],[5,6,["G3739"]],[6,9,["G191"]],[9,10,["G575"]],[10,11,["G846"]],[11,12,["G2532"]],[12,13,["G312"]],[13,15,["G5213"]],[15,16,["G3754"]],[16,17,["G2316"]],[17,18,["G2076"]],[18,19,["G5457"]],[19,20,["G2532"]],[20,21,["G1722"]],[21,22,["G846"]],[22,23,["G2076"]],[23,24,["G3756"]],[24,25,["G4653"]],[25,27,["G3762"]]]},{"k":30546,"v":[[0,1,["G1437"]],[1,3,["G2036"]],[3,4,["G3754"]],[4,6,["G2192"]],[6,7,["G2842"]],[7,8,["G3326"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G4043"]],[11,12,["G1722"]],[12,13,["G4655"]],[13,15,["G5574"]],[15,16,["G2532"]],[16,17,["G4160"]],[17,18,["G3756"]],[18,19,["G3588"]],[19,20,["G225"]]]},{"k":30547,"v":[[0,1,["G1161"]],[1,2,["G1437"]],[2,4,["G4043"]],[4,5,["G1722"]],[5,6,["G3588"]],[6,7,["G5457"]],[7,8,["G5613"]],[8,9,["G846"]],[9,10,["G2076"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G5457"]],[13,15,["G2192"]],[15,16,["G2842"]],[16,19,["G240","G3326"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G129"]],[22,24,["G2424"]],[24,25,["G5547"]],[25,26,["G846"]],[26,27,["G5207"]],[27,28,["G2511"]],[28,29,["G2248"]],[29,30,["G575"]],[30,31,["G3956"]],[31,32,["G266"]]]},{"k":30548,"v":[[0,1,["G1437"]],[1,3,["G2036"]],[3,4,["G3754"]],[4,6,["G2192"]],[6,7,["G3756"]],[7,8,["G266"]],[8,10,["G4105"]],[10,11,["G1438"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G225"]],[14,15,["G2076"]],[15,16,["G3756"]],[16,17,["G1722"]],[17,18,["G2254"]]]},{"k":30549,"v":[[0,1,["G1437"]],[1,3,["G3670"]],[3,4,["G2257"]],[4,5,["G266"]],[5,7,["G2076"]],[7,8,["G4103"]],[8,9,["G2532"]],[9,10,["G1342"]],[10,11,["G2443"]],[11,12,["G863"]],[12,13,["G2254"]],[13,15,["G266"]],[15,16,["G2532"]],[16,18,["G2511"]],[18,19,["G2248"]],[19,20,["G575"]],[20,21,["G3956"]],[21,22,["G93"]]]},{"k":30550,"v":[[0,1,["G1437"]],[1,3,["G2036"]],[3,4,["G3754"]],[4,7,["G3756"]],[7,8,["G264"]],[8,10,["G4160"]],[10,11,["G846"]],[11,13,["G5583"]],[13,14,["G2532"]],[14,15,["G848"]],[15,16,["G3056"]],[16,17,["G2076"]],[17,18,["G3756"]],[18,19,["G1722"]],[19,20,["G2254"]]]},{"k":30551,"v":[[0,1,["G3450"]],[1,3,["G5040"]],[3,5,["G5023"]],[5,6,["G1125"]],[6,9,["G5213"]],[9,10,["G2443"]],[10,12,["G264"]],[12,13,["G3361"]],[13,14,["G2532"]],[14,15,["G1437"]],[15,17,["G5100"]],[17,18,["G264"]],[18,20,["G2192"]],[20,22,["G3875"]],[22,23,["G4314"]],[23,24,["G3588"]],[24,25,["G3962"]],[25,26,["G2424"]],[26,27,["G5547"]],[27,29,["G1342"]]]},{"k":30552,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G2076"]],[3,5,["G2434"]],[5,6,["G4012"]],[6,7,["G2257"]],[7,8,["G266"]],[8,9,["G1161"]],[9,10,["G3756"]],[10,11,["G4012"]],[11,12,["G2251"]],[12,13,["G3440"]],[13,14,["G235"]],[14,15,["G2532"]],[15,16,["G4012"]],[16,20,["G3588"]],[20,21,["G3650"]],[21,22,["G2889"]]]},{"k":30553,"v":[[0,1,["G2532"]],[1,2,["G1722","G5129"]],[2,5,["G1097"]],[5,6,["G3754"]],[6,8,["G1097"]],[8,9,["G846"]],[9,10,["G1437"]],[10,12,["G5083"]],[12,13,["G848"]],[13,14,["G1785"]]]},{"k":30554,"v":[[0,3,["G3004"]],[3,5,["G1097"]],[5,6,["G846"]],[6,7,["G2532"]],[7,8,["G5083"]],[8,9,["G3361"]],[9,10,["G848"]],[10,11,["G1785"]],[11,12,["G2076"]],[12,14,["G5583"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G225"]],[17,18,["G2076"]],[18,19,["G3756"]],[19,20,["G1722"]],[20,21,["G5129"]]]},{"k":30555,"v":[[0,1,["G1161"]],[1,2,["G3739","G302"]],[2,3,["G5083"]],[3,4,["G848"]],[4,5,["G3056"]],[5,6,["G1722"]],[6,7,["G5129"]],[7,8,["G230"]],[8,10,["G3588"]],[10,11,["G26"]],[11,13,["G2316"]],[13,14,["G5048"]],[14,15,["G1722","G5129"]],[15,16,["G1097"]],[16,18,["G3754"]],[18,20,["G2070"]],[20,21,["G1722"]],[21,22,["G846"]]]},{"k":30556,"v":[[0,3,["G3004"]],[3,5,["G3306"]],[5,6,["G1722"]],[6,7,["G846"]],[7,8,["G3784"]],[8,9,["G848"]],[9,10,["G2532"]],[10,11,["G3779"]],[11,13,["G4043"]],[13,15,["G2531"]],[15,16,["G1565"]],[16,17,["G4043"]]]},{"k":30557,"v":[[0,1,["G80"]],[1,3,["G1125"]],[3,4,["G3756"]],[4,5,["G2537"]],[5,6,["G1785"]],[6,8,["G5213"]],[8,9,["G235"]],[9,11,["G3820"]],[11,12,["G1785"]],[12,13,["G3739"]],[13,15,["G2192"]],[15,16,["G575"]],[16,18,["G746"]],[18,19,["G3588"]],[19,20,["G3820"]],[20,21,["G1785"]],[21,22,["G2076"]],[22,23,["G3588"]],[23,24,["G3056"]],[24,25,["G3739"]],[25,28,["G191"]],[28,29,["G575"]],[29,31,["G746"]]]},{"k":30558,"v":[[0,1,["G3825"]],[1,3,["G2537"]],[3,4,["G1785"]],[4,6,["G1125"]],[6,8,["G5213"]],[8,10,["G3739"]],[10,11,["G2076"]],[11,12,["G227"]],[12,13,["G1722"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G1722"]],[16,17,["G5213"]],[17,18,["G3754"]],[18,19,["G3588"]],[19,20,["G4653"]],[20,22,["G3855"]],[22,23,["G2532"]],[23,24,["G3588"]],[24,25,["G228"]],[25,26,["G5457"]],[26,27,["G2235"]],[27,28,["G5316"]]]},{"k":30559,"v":[[0,3,["G3004"]],[3,5,["G1511"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G5457"]],[8,9,["G2532"]],[9,10,["G3404"]],[10,11,["G848"]],[11,12,["G80"]],[12,13,["G2076"]],[13,14,["G1722"]],[14,15,["G4653"]],[15,17,["G2193"]],[17,18,["G737"]]]},{"k":30560,"v":[[0,3,["G25"]],[3,4,["G848"]],[4,5,["G80"]],[5,6,["G3306"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G5457"]],[9,10,["G2532"]],[10,12,["G2076"]],[12,13,["G3756"]],[13,16,["G4625"]],[16,17,["G1722"]],[17,18,["G846"]]]},{"k":30561,"v":[[0,1,["G1161"]],[1,4,["G3404"]],[4,5,["G848"]],[5,6,["G80"]],[6,7,["G2076"]],[7,8,["G1722"]],[8,9,["G4653"]],[9,10,["G2532"]],[10,11,["G4043"]],[11,12,["G1722"]],[12,13,["G4653"]],[13,14,["G2532"]],[14,15,["G1492"]],[15,16,["G3756"]],[16,17,["G4226"]],[17,19,["G5217"]],[19,20,["G3754"]],[20,22,["G4653"]],[22,24,["G5186"]],[24,25,["G848"]],[25,26,["G3788"]]]},{"k":30562,"v":[[0,2,["G1125"]],[2,4,["G5213"]],[4,6,["G5040"]],[6,7,["G3754"]],[7,9,["G266"]],[9,11,["G863"]],[11,12,["G5213"]],[12,16,["G1223","G848","G3686"]]]},{"k":30563,"v":[[0,2,["G1125"]],[2,4,["G5213"]],[4,5,["G3962"]],[5,6,["G3754"]],[6,9,["G1097"]],[9,10,["G3588"]],[10,13,["G575"]],[13,15,["G746"]],[15,17,["G1125"]],[17,19,["G5213"]],[19,21,["G3495"]],[21,22,["G3754"]],[22,25,["G3528"]],[25,26,["G3588"]],[26,28,["G4190"]],[28,30,["G1125"]],[30,32,["G5213"]],[32,34,["G3813"]],[34,35,["G3754"]],[35,38,["G1097"]],[38,39,["G3588"]],[39,40,["G3962"]]]},{"k":30564,"v":[[0,3,["G1125"]],[3,5,["G5213"]],[5,6,["G3962"]],[6,7,["G3754"]],[7,10,["G1097"]],[10,11,["G3588"]],[11,14,["G575"]],[14,16,["G746"]],[16,19,["G1125"]],[19,21,["G5213"]],[21,23,["G3495"]],[23,24,["G3754"]],[24,26,["G2075"]],[26,27,["G2478"]],[27,28,["G2532"]],[28,29,["G3588"]],[29,30,["G3056"]],[30,32,["G2316"]],[32,33,["G3306"]],[33,34,["G1722"]],[34,35,["G5213"]],[35,36,["G2532"]],[36,39,["G3528"]],[39,40,["G3588"]],[40,42,["G4190"]]]},{"k":30565,"v":[[0,1,["G25"]],[1,2,["G3361"]],[2,3,["G3588"]],[3,4,["G2889"]],[4,5,["G3366"]],[5,7,["G3588"]],[7,10,["G1722"]],[10,11,["G3588"]],[11,12,["G2889"]],[12,13,["G1437"]],[13,15,["G5100"]],[15,16,["G25"]],[16,17,["G3588"]],[17,18,["G2889"]],[18,19,["G3588"]],[19,20,["G26"]],[20,22,["G3588"]],[22,23,["G3962"]],[23,24,["G2076"]],[24,25,["G3756"]],[25,26,["G1722"]],[26,27,["G846"]]]},{"k":30566,"v":[[0,1,["G3754"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,5,["G1722"]],[5,6,["G3588"]],[6,7,["G2889"]],[7,8,["G3588"]],[8,9,["G1939"]],[9,11,["G3588"]],[11,12,["G4561"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G1939"]],[15,17,["G3588"]],[17,18,["G3788"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G212"]],[21,23,["G979"]],[23,24,["G2076"]],[24,25,["G3756"]],[25,26,["G1537"]],[26,27,["G3588"]],[27,28,["G3962"]],[28,29,["G235"]],[29,30,["G2076"]],[30,31,["G1537"]],[31,32,["G3588"]],[32,33,["G2889"]]]},{"k":30567,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2889"]],[3,5,["G3855"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G1939"]],[8,9,["G848"]],[9,10,["G1161"]],[10,13,["G4160"]],[13,14,["G3588"]],[14,15,["G2307"]],[15,17,["G2316"]],[17,18,["G3306"]],[18,20,["G1519","G165"]]]},{"k":30568,"v":[[0,2,["G3813"]],[2,4,["G2076"]],[4,6,["G2078"]],[6,7,["G5610"]],[7,8,["G2532"]],[8,9,["G2531"]],[9,12,["G191"]],[12,13,["G3754"]],[13,14,["G500"]],[14,16,["G2064"]],[16,17,["G2532"]],[17,18,["G3568"]],[18,19,["G1096"]],[19,21,["G4183"]],[21,22,["G500"]],[22,23,["G3606"]],[23,25,["G1097"]],[25,26,["G3754"]],[26,28,["G2076"]],[28,30,["G2078"]],[30,31,["G5610"]]]},{"k":30569,"v":[[0,3,["G1831"]],[3,4,["G1537"]],[4,5,["G2257"]],[5,6,["G235"]],[6,8,["G2258"]],[8,9,["G3756"]],[9,10,["G1537"]],[10,11,["G2257"]],[11,12,["G1063"]],[12,13,["G1487"]],[13,16,["G2258"]],[16,17,["G1537"]],[17,18,["G2257"]],[18,24,["G3306","G302"]],[24,25,["G3326"]],[25,26,["G2257"]],[26,27,["G235"]],[27,31,["G2443"]],[31,36,["G5319"]],[36,37,["G3754"]],[37,39,["G1526"]],[39,40,["G3756"]],[40,41,["G3956"]],[41,42,["G1537"]],[42,43,["G2257"]]]},{"k":30570,"v":[[0,1,["G2532"]],[1,2,["G5210"]],[2,3,["G2192"]],[3,5,["G5545"]],[5,6,["G575"]],[6,7,["G3588"]],[7,9,["G40"]],[9,10,["G2532"]],[10,12,["G1492"]],[12,14,["G3956"]]]},{"k":30571,"v":[[0,3,["G3756"]],[3,4,["G1125"]],[4,6,["G5213"]],[6,7,["G3754"]],[7,9,["G1492"]],[9,10,["G3756"]],[10,11,["G3588"]],[11,12,["G225"]],[12,13,["G235"]],[13,14,["G3754"]],[14,16,["G1492"]],[16,17,["G846"]],[17,18,["G2532"]],[18,19,["G3754"]],[19,20,["G3956","G3756"]],[20,21,["G5579"]],[21,22,["G2076"]],[22,23,["G1537"]],[23,24,["G3588"]],[24,25,["G225"]]]},{"k":30572,"v":[[0,1,["G5101"]],[1,2,["G2076"]],[2,4,["G5583"]],[4,5,["G1508"]],[5,8,["G720"]],[8,9,["G3754"]],[9,10,["G2424"]],[10,11,["G2076","(G3756)"]],[11,12,["G3588"]],[12,13,["G5547"]],[13,14,["G3778"]],[14,15,["G2076"]],[15,16,["G500"]],[16,18,["G720"]],[18,19,["G3588"]],[19,20,["G3962"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,23,["G5207"]]]},{"k":30573,"v":[[0,1,["G3956"]],[1,2,["G720"]],[2,3,["G3588"]],[3,4,["G5207"]],[4,7,["G2192"]],[7,8,["G3761"]],[8,9,["G3588"]],[9,10,["G3962"]],[10,14,["G3670"]],[14,15,["G3588"]],[15,16,["G5207"]],[16,17,["G2192"]],[17,18,["G3588"]],[18,19,["G3962"]],[19,20,["G2532"]]]},{"k":30574,"v":[[0,3,["G3767"]],[3,4,["G3306"]],[4,5,["G1722"]],[5,6,["G5213"]],[6,8,["G5210"]],[8,10,["G191"]],[10,11,["G575"]],[11,13,["G746"]],[13,14,["G1437"]],[14,16,["G3739"]],[16,19,["G191"]],[19,20,["G575"]],[20,22,["G746"]],[22,24,["G3306"]],[24,25,["G1722"]],[25,26,["G5213"]],[26,27,["G5210"]],[27,28,["G2532"]],[28,30,["G3306"]],[30,31,["G1722"]],[31,32,["G3588"]],[32,33,["G5207"]],[33,34,["G2532"]],[34,35,["G1722"]],[35,36,["G3588"]],[36,37,["G3962"]]]},{"k":30575,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G1860"]],[5,6,["G3739"]],[6,7,["G846"]],[7,9,["G1861"]],[9,10,["G2254"]],[10,12,["G166"]],[12,13,["G2222"]]]},{"k":30576,"v":[[0,1,["G5023"]],[1,5,["G1125"]],[5,7,["G5213"]],[7,8,["G4012"]],[8,11,["G4105"]],[11,12,["G5209"]]]},{"k":30577,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5545"]],[3,4,["G3739"]],[4,5,["G5210"]],[5,7,["G2983"]],[7,8,["G575"]],[8,9,["G846"]],[9,10,["G3306"]],[10,11,["G1722"]],[11,12,["G5213"]],[12,13,["G2532"]],[13,15,["G2192","G5532"]],[15,16,["G3756"]],[16,17,["G2443"]],[17,19,["G5100"]],[19,20,["G1321"]],[20,21,["G5209"]],[21,22,["G235"]],[22,23,["G5613"]],[23,24,["G3588"]],[24,25,["G846"]],[25,26,["G5545"]],[26,27,["G1321"]],[27,28,["G5209"]],[28,29,["G4012"]],[29,31,["G3956"]],[31,32,["G2532"]],[32,33,["G2076"]],[33,34,["G227"]],[34,35,["G2532"]],[35,36,["G2076"]],[36,37,["G3756"]],[37,38,["G5579"]],[38,39,["G2532"]],[39,41,["G2531"]],[41,44,["G1321"]],[44,45,["G5209"]],[45,48,["G3306"]],[48,49,["G1722"]],[49,50,["G846"]]]},{"k":30578,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,4,["G5040"]],[4,5,["G3306"]],[5,6,["G1722"]],[6,7,["G846"]],[7,8,["G2443"]],[8,9,["G3752"]],[9,12,["G5319"]],[12,15,["G2192"]],[15,16,["G3954"]],[16,17,["G2532"]],[17,18,["G3361"]],[18,20,["G153"]],[20,21,["G575"]],[21,22,["G846"]],[22,23,["G1722"]],[23,24,["G848"]],[24,25,["G3952"]]]},{"k":30579,"v":[[0,1,["G1437"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,6,["G2076"]],[6,7,["G1342"]],[7,9,["G1097"]],[9,10,["G3754"]],[10,12,["G3956"]],[12,14,["G4160"]],[14,15,["G1343"]],[15,17,["G1080"]],[17,18,["G1537"]],[18,19,["G846"]]]},{"k":30580,"v":[[0,1,["G1492"]],[1,3,["G4217"]],[3,5,["G26"]],[5,6,["G3588"]],[6,7,["G3962"]],[7,9,["G1325"]],[9,11,["G2254"]],[11,12,["G2443"]],[12,16,["G2564"]],[16,18,["G5043"]],[18,20,["G2316"]],[20,21,["G1223","G5124"]],[21,22,["G3588"]],[22,23,["G2889"]],[23,24,["G1097"]],[24,25,["G2248"]],[25,26,["G3756"]],[26,27,["G3754"]],[27,29,["G1097"]],[29,30,["G846"]],[30,31,["G3756"]]]},{"k":30581,"v":[[0,1,["G27"]],[1,2,["G3568"]],[2,3,["G2070"]],[3,6,["G5043"]],[6,8,["G2316"]],[8,9,["G2532"]],[9,13,["G3768"]],[13,14,["G5319"]],[14,15,["G5101"]],[15,18,["G2071"]],[18,19,["G1161"]],[19,21,["G1492"]],[21,22,["G3754"]],[22,23,["G1437"]],[23,26,["G5319"]],[26,29,["G2071"]],[29,30,["G3664"]],[30,31,["G846"]],[31,32,["G3754"]],[32,35,["G3700"]],[35,36,["G846"]],[36,37,["G2531"]],[37,39,["G2076"]]]},{"k":30582,"v":[[0,1,["G2532"]],[1,3,["G3956"]],[3,5,["G2192"]],[5,6,["G5026"]],[6,7,["G1680"]],[7,8,["G1909"]],[8,9,["G846"]],[9,10,["G48"]],[10,11,["G1438"]],[11,13,["G2531"]],[13,14,["G1565"]],[14,15,["G2076"]],[15,16,["G53"]]]},{"k":30583,"v":[[0,1,["G3956"]],[1,2,["G4160"]],[2,3,["G266"]],[3,7,["G4160","G2532","G458"]],[7,8,["G2532"]],[8,9,["G266"]],[9,10,["G2076"]],[10,11,["G3588"]],[11,15,["G458"]]]},{"k":30584,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G1565"]],[5,7,["G5319"]],[7,8,["G2443"]],[8,10,["G142"]],[10,11,["G2257"]],[11,12,["G266"]],[12,13,["G2532"]],[13,14,["G1722"]],[14,15,["G846"]],[15,16,["G2076"]],[16,17,["G3756"]],[17,18,["G266"]]]},{"k":30585,"v":[[0,1,["G3956"]],[1,2,["G3306"]],[2,3,["G1722"]],[3,4,["G846"]],[4,5,["G264"]],[5,6,["G3756"]],[6,7,["G3956"]],[7,8,["G264"]],[8,10,["G3756"]],[10,11,["G3708"]],[11,12,["G846"]],[12,13,["G3761"]],[13,14,["G1097"]],[14,15,["G846"]]]},{"k":30586,"v":[[0,2,["G5040"]],[2,5,["G3367"]],[5,6,["G4105"]],[6,7,["G5209"]],[7,10,["G4160"]],[10,11,["G1343"]],[11,12,["G2076"]],[12,13,["G1342"]],[13,15,["G2531"]],[15,16,["G1565"]],[16,17,["G2076"]],[17,18,["G1342"]]]},{"k":30587,"v":[[0,3,["G4160"]],[3,4,["G266"]],[4,5,["G2076"]],[5,6,["G1537"]],[6,7,["G3588"]],[7,8,["G1228"]],[8,9,["G3754"]],[9,10,["G3588"]],[10,11,["G1228"]],[11,12,["G264"]],[12,13,["G575"]],[13,15,["G746"]],[15,16,["G1519"]],[16,18,["G5124"]],[18,19,["G3588"]],[19,20,["G5207"]],[20,22,["G2316"]],[22,24,["G5319"]],[24,25,["G2443"]],[25,28,["G3089"]],[28,29,["G3588"]],[29,30,["G2041"]],[30,32,["G3588"]],[32,33,["G1228"]]]},{"k":30588,"v":[[0,1,["G3956"]],[1,3,["G1080"]],[3,4,["G1537"]],[4,5,["G2316"]],[5,7,["G3756"]],[7,8,["G4160"]],[8,9,["G266"]],[9,10,["G3754"]],[10,11,["G848"]],[11,12,["G4690"]],[12,13,["G3306"]],[13,14,["G1722"]],[14,15,["G846"]],[15,16,["G2532"]],[16,18,["G1410","G3756"]],[18,19,["G264"]],[19,20,["G3754"]],[20,23,["G1080"]],[23,24,["G1537"]],[24,25,["G2316"]]]},{"k":30589,"v":[[0,1,["G1722"]],[1,2,["G5129"]],[2,3,["G3588"]],[3,4,["G5043"]],[4,6,["G2316"]],[6,7,["G2076"]],[7,8,["G5318"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G5043"]],[11,13,["G3588"]],[13,14,["G1228"]],[14,15,["G3956"]],[15,16,["G4160"]],[16,17,["G3361"]],[17,18,["G1343"]],[18,19,["G2076"]],[19,20,["G3756"]],[20,21,["G1537"]],[21,22,["G2316"]],[22,23,["G2532"]],[23,26,["G25"]],[26,27,["G3361"]],[27,28,["G848"]],[28,29,["G80"]]]},{"k":30590,"v":[[0,1,["G3754"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G31"]],[5,6,["G3739"]],[6,8,["G191"]],[8,9,["G575"]],[9,11,["G746"]],[11,12,["G2443"]],[12,15,["G25"]],[15,17,["G240"]]]},{"k":30591,"v":[[0,1,["G3756"]],[1,2,["G2531"]],[2,3,["G2535"]],[3,5,["G2258"]],[5,6,["G1537"]],[6,9,["G4190"]],[9,10,["G2532"]],[10,11,["G4969"]],[11,12,["G848"]],[12,13,["G80"]],[13,14,["G2532"]],[14,15,["G5484","G5101"]],[15,16,["G4969"]],[16,18,["G846"]],[18,19,["G3754"]],[19,21,["G848"]],[21,22,["G2041"]],[22,23,["G2258"]],[23,24,["G4190"]],[24,25,["G1161"]],[25,26,["G848"]],[26,27,["G80"]],[27,28,["G1342"]]]},{"k":30592,"v":[[0,1,["G2296"]],[1,2,["G3361"]],[2,3,["G3450"]],[3,4,["G80"]],[4,5,["G1487"]],[5,6,["G3588"]],[6,7,["G2889"]],[7,8,["G3404"]],[8,9,["G5209"]]]},{"k":30593,"v":[[0,1,["G2249"]],[1,2,["G1492"]],[2,3,["G3754"]],[3,6,["G3327"]],[6,7,["G1537"]],[7,8,["G2288"]],[8,9,["G1519"]],[9,10,["G2222"]],[10,11,["G3754"]],[11,13,["G25"]],[13,14,["G3588"]],[14,15,["G80"]],[15,18,["G25"]],[18,19,["G3361"]],[19,21,["G80"]],[21,22,["G3306"]],[22,23,["G1722"]],[23,24,["G2288"]]]},{"k":30594,"v":[[0,1,["G3956"]],[1,2,["G3404"]],[2,3,["G848"]],[3,4,["G80"]],[4,5,["G2076"]],[5,7,["G443"]],[7,8,["G2532"]],[8,10,["G1492"]],[10,11,["G3754"]],[11,12,["G3956","G3756"]],[12,13,["G443"]],[13,14,["G2192"]],[14,15,["G166"]],[15,16,["G2222"]],[16,17,["G3306"]],[17,18,["G1722"]],[18,19,["G846"]]]},{"k":30595,"v":[[0,1,["G1722","G5129"]],[1,2,["G1097"]],[2,4,["G3588"]],[4,5,["G26"]],[5,7,["(G2316)"]],[7,8,["G3754"]],[8,9,["G1565"]],[9,11,["G5087"]],[11,12,["G848"]],[12,13,["G5590"]],[13,14,["G5228"]],[14,15,["G2257"]],[15,16,["G2532"]],[16,17,["G2249"]],[17,18,["G3784"]],[18,21,["G5087"]],[21,23,["G5590"]],[23,24,["G5228"]],[24,25,["G3588"]],[25,26,["G80"]]]},{"k":30596,"v":[[0,1,["G1161"]],[1,2,["G3739","G302"]],[2,3,["G2192"]],[3,5,["G2889"]],[5,6,["G979"]],[6,7,["G2532"]],[7,8,["G2334"]],[8,9,["G848"]],[9,10,["G80"]],[10,11,["G2192"]],[11,12,["G5532"]],[12,13,["G2532"]],[13,15,["G2808"]],[15,16,["G848"]],[16,17,["G4698"]],[17,20,["G575"]],[20,21,["G846"]],[21,22,["G4459"]],[22,23,["G3306"]],[23,24,["G3588"]],[24,25,["G26"]],[25,27,["G2316"]],[27,28,["G1722"]],[28,29,["G846"]]]},{"k":30597,"v":[[0,1,["G3450"]],[1,3,["G5040"]],[3,6,["G3361"]],[6,7,["G25"]],[7,9,["G3056"]],[9,10,["G3366"]],[10,12,["G1100"]],[12,13,["G235"]],[13,15,["G2041"]],[15,16,["G2532"]],[16,18,["G225"]]]},{"k":30598,"v":[[0,1,["G2532"]],[1,2,["G1722","G5129"]],[2,4,["G1097"]],[4,5,["G3754"]],[5,7,["G2070"]],[7,8,["G1537"]],[8,9,["G3588"]],[9,10,["G225"]],[10,11,["G2532"]],[11,13,["G3982"]],[13,14,["G2257"]],[14,15,["G2588"]],[15,16,["G1715"]],[16,17,["G846"]]]},{"k":30599,"v":[[0,1,["G3754"]],[1,2,["G1437"]],[2,3,["G2257"]],[3,4,["G2588"]],[4,5,["G2607"]],[5,6,["(G3754)"]],[6,7,["G2316"]],[7,8,["G2076"]],[8,9,["G3187"]],[9,11,["G2257"]],[11,12,["G2588"]],[12,13,["G2532"]],[13,14,["G1097"]],[14,16,["G3956"]]]},{"k":30600,"v":[[0,1,["G27"]],[1,2,["G1437"]],[2,3,["G2257"]],[3,4,["G2588"]],[4,5,["G2607"]],[5,6,["G2257"]],[6,7,["G3361"]],[7,9,["G2192"]],[9,11,["G3954"]],[11,12,["G4314"]],[12,13,["G2316"]]]},{"k":30601,"v":[[0,1,["G2532"]],[1,2,["G3739","G1437"]],[2,4,["G154"]],[4,6,["G2983"]],[6,7,["G3844"]],[7,8,["G846"]],[8,9,["G3754"]],[9,11,["G5083"]],[11,12,["G848"]],[12,13,["G1785"]],[13,14,["G2532"]],[14,15,["G4160"]],[15,20,["G701"]],[20,23,["G1799","G846"]]]},{"k":30602,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,4,["G848"]],[4,5,["G1785"]],[5,6,["G2443"]],[6,9,["G4100"]],[9,11,["G3588"]],[11,12,["G3686"]],[12,14,["G848"]],[14,15,["G5207"]],[15,16,["G2424"]],[16,17,["G5547"]],[17,18,["G2532"]],[18,19,["G25"]],[19,21,["G240"]],[21,22,["G2531"]],[22,24,["G1325"]],[24,25,["G2254"]],[25,26,["G1785"]]]},{"k":30603,"v":[[0,1,["G2532"]],[1,4,["G5083"]],[4,5,["G848"]],[5,6,["G1785"]],[6,7,["G3306"]],[7,8,["G1722"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G846"]],[11,12,["G1722"]],[12,13,["G846"]],[13,14,["G2532"]],[14,15,["G1722","G5129"]],[15,17,["G1097"]],[17,18,["G3754"]],[18,20,["G3306"]],[20,21,["G1722"]],[21,22,["G2254"]],[22,23,["G1537"]],[23,24,["G3588"]],[24,25,["G4151"]],[25,26,["G3739"]],[26,29,["G1325"]],[29,30,["G2254"]]]},{"k":30604,"v":[[0,1,["G27"]],[1,2,["G4100"]],[2,3,["G3361"]],[3,4,["G3956"]],[4,5,["G4151"]],[5,6,["G235"]],[6,7,["G1381"]],[7,8,["G3588"]],[8,9,["G4151"]],[9,10,["G1487"]],[10,12,["G2076"]],[12,13,["G1537"]],[13,14,["G2316"]],[14,15,["G3754"]],[15,16,["G4183"]],[16,18,["G5578"]],[18,21,["G1831"]],[21,22,["G1519"]],[22,23,["G3588"]],[23,24,["G2889"]]]},{"k":30605,"v":[[0,1,["G1722","G5129"]],[1,2,["G1097"]],[2,4,["G3588"]],[4,5,["G4151"]],[5,7,["G2316"]],[7,8,["G3956"]],[8,9,["G4151"]],[9,10,["G3739"]],[10,11,["G3670"]],[11,13,["G2424"]],[13,14,["G5547"]],[14,16,["G2064"]],[16,17,["G1722"]],[17,19,["G4561"]],[19,20,["G2076"]],[20,21,["G1537"]],[21,22,["G2316"]]]},{"k":30606,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G4151"]],[3,4,["G3739"]],[4,5,["G3670"]],[5,6,["G3361"]],[6,8,["G2424"]],[8,9,["G5547"]],[9,11,["G2064"]],[11,12,["G1722"]],[12,14,["G4561"]],[14,15,["G2076"]],[15,16,["G3756"]],[16,17,["G1537"]],[17,18,["G2316"]],[18,19,["G2532"]],[19,20,["G5124"]],[20,21,["G2076"]],[21,22,["G3588"]],[22,25,["G500"]],[25,26,["G3739"]],[26,29,["G191"]],[29,30,["G3754"]],[30,33,["G2064"]],[33,34,["G2532"]],[34,36,["G3568"]],[36,37,["G2235"]],[37,38,["G2076"]],[38,40,["G1722"]],[40,41,["G3588"]],[41,42,["G2889"]]]},{"k":30607,"v":[[0,1,["G5210"]],[1,2,["G2075"]],[2,3,["G1537"]],[3,4,["G2316"]],[4,6,["G5040"]],[6,7,["G2532"]],[7,9,["G3528"]],[9,10,["G846"]],[10,11,["G3754"]],[11,12,["G3187"]],[12,13,["G2076"]],[13,14,["G3588"]],[14,17,["G1722"]],[17,18,["G5213"]],[18,19,["G2228"]],[19,20,["G3588"]],[20,23,["G1722"]],[23,24,["G3588"]],[24,25,["G2889"]]]},{"k":30608,"v":[[0,1,["G846"]],[1,2,["G1526"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G2889"]],[5,6,["G1223","G5124"]],[6,7,["G2980"]],[7,9,["G1537"]],[9,10,["G3588"]],[10,11,["G2889"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G2889"]],[14,15,["G191"]],[15,16,["G846"]]]},{"k":30609,"v":[[0,1,["G2249"]],[1,2,["G2070"]],[2,3,["G1537"]],[3,4,["G2316"]],[4,7,["G1097"]],[7,8,["G2316"]],[8,9,["G191"]],[9,10,["G2257"]],[10,12,["G3739"]],[12,13,["G2076"]],[13,14,["G3756"]],[14,15,["G1537"]],[15,16,["G2316"]],[16,17,["G191"]],[17,18,["G3756"]],[18,19,["G2257"]],[19,20,["G1537","G5127"]],[20,21,["G1097"]],[21,23,["G3588"]],[23,24,["G4151"]],[24,26,["G225"]],[26,27,["G2532"]],[27,28,["G3588"]],[28,29,["G4151"]],[29,31,["G4106"]]]},{"k":30610,"v":[[0,1,["G27"]],[1,4,["G25"]],[4,6,["G240"]],[6,7,["G3754"]],[7,8,["G26"]],[8,9,["G2076"]],[9,10,["G1537"]],[10,11,["G2316"]],[11,12,["G2532"]],[12,14,["G3956"]],[14,16,["G25"]],[16,18,["G1080"]],[18,19,["G1537"]],[19,20,["G2316"]],[20,21,["G2532"]],[21,22,["G1097"]],[22,23,["G2316"]]]},{"k":30611,"v":[[0,3,["G25"]],[3,4,["G3361"]],[4,5,["G1097"]],[5,6,["G3756"]],[6,7,["G2316"]],[7,8,["G3754"]],[8,9,["G2316"]],[9,10,["G2076"]],[10,11,["G26"]]]},{"k":30612,"v":[[0,1,["G1722"]],[1,2,["G5129"]],[2,4,["G5319"]],[4,5,["G3588"]],[5,6,["G26"]],[6,8,["G2316"]],[8,9,["G1722"]],[9,10,["G2254"]],[10,11,["G3754"]],[11,13,["G2316"]],[13,14,["G649"]],[14,15,["G848"]],[15,17,["G3439"]],[17,18,["G5207"]],[18,19,["G1519"]],[19,20,["G3588"]],[20,21,["G2889"]],[21,22,["G2443"]],[22,25,["G2198"]],[25,26,["G1223"]],[26,27,["G846"]]]},{"k":30613,"v":[[0,1,["G1722","G5129"]],[1,2,["G2076"]],[2,3,["G26"]],[3,4,["G3756"]],[4,5,["G3754"]],[5,6,["G2249"]],[6,7,["G25"]],[7,8,["G2316"]],[8,9,["G235"]],[9,10,["G3754"]],[10,11,["G846"]],[11,12,["G25"]],[12,13,["G2248"]],[13,14,["G2532"]],[14,15,["G649"]],[15,16,["G848"]],[16,17,["G5207"]],[17,21,["G2434"]],[21,22,["G4012"]],[22,23,["G2257"]],[23,24,["G266"]]]},{"k":30614,"v":[[0,1,["G27"]],[1,2,["G1487"]],[2,3,["G2316"]],[3,4,["G3779"]],[4,5,["G25"]],[5,6,["G2248"]],[6,7,["G2249"]],[7,8,["G3784"]],[8,9,["G2532"]],[9,11,["G25"]],[11,13,["G240"]]]},{"k":30615,"v":[[0,2,["G3762"]],[2,4,["G2300"]],[4,5,["G2316"]],[5,8,["G4455"]],[8,9,["G1437"]],[9,11,["G25"]],[11,13,["G240"]],[13,14,["G2316"]],[14,15,["G3306"]],[15,16,["G1722"]],[16,17,["G2254"]],[17,18,["G2532"]],[18,19,["G848"]],[19,20,["G26"]],[20,21,["G2076"]],[21,22,["G5048"]],[22,23,["G1722"]],[23,24,["G2254"]]]},{"k":30616,"v":[[0,1,["G1722","G5129"]],[1,2,["G1097"]],[2,4,["G3754"]],[4,6,["G3306"]],[6,7,["G1722"]],[7,8,["G846"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G1722"]],[11,12,["G2254"]],[12,13,["G3754"]],[13,16,["G1325"]],[16,17,["G2254"]],[17,18,["G1537"]],[18,19,["G848"]],[19,20,["G4151"]]]},{"k":30617,"v":[[0,1,["G2532"]],[1,2,["G2249"]],[2,4,["G2300"]],[4,5,["G2532"]],[5,7,["G3140"]],[7,8,["G3754"]],[8,9,["G3588"]],[9,10,["G3962"]],[10,11,["G649"]],[11,12,["G3588"]],[12,13,["G5207"]],[13,17,["G4990"]],[17,19,["G3588"]],[19,20,["G2889"]]]},{"k":30618,"v":[[0,1,["G3739","G302"]],[1,3,["G3670"]],[3,4,["G3754"]],[4,5,["G2424"]],[5,6,["G2076"]],[6,7,["G3588"]],[7,8,["G5207"]],[8,10,["G2316"]],[10,11,["G2316"]],[11,12,["G3306"]],[12,13,["G1722"]],[13,14,["G846"]],[14,15,["G2532"]],[15,16,["G846"]],[16,17,["G1722"]],[17,18,["G2316"]]]},{"k":30619,"v":[[0,1,["G2532"]],[1,2,["G2249"]],[2,4,["G1097"]],[4,5,["G2532"]],[5,6,["G4100"]],[6,7,["G3588"]],[7,8,["G26"]],[8,9,["G3739"]],[9,10,["G2316"]],[10,11,["G2192"]],[11,12,["G1722"]],[12,13,["G2254"]],[13,14,["G2316"]],[14,15,["G2076"]],[15,16,["G26"]],[16,17,["G2532"]],[17,20,["G3306"]],[20,21,["G1722"]],[21,22,["G26"]],[22,23,["G3306"]],[23,24,["G1722"]],[24,25,["G2316"]],[25,26,["G2532"]],[26,27,["G2316"]],[27,28,["G1722"]],[28,29,["G846"]]]},{"k":30620,"v":[[0,1,["G1722","G5129"]],[1,2,["(G3326)"]],[2,3,["G2257"]],[3,4,["G26"]],[4,6,["G5048"]],[6,7,["G2443"]],[7,10,["G2192"]],[10,11,["G3954"]],[11,12,["G1722"]],[12,13,["G3588"]],[13,14,["G2250"]],[14,16,["G2920"]],[16,17,["G3754"]],[17,18,["G2531"]],[18,19,["G1565"]],[19,20,["G2076"]],[20,21,["G2532"]],[21,22,["G2070"]],[22,23,["G2249"]],[23,24,["G1722"]],[24,25,["G5129"]],[25,26,["G2889"]]]},{"k":30621,"v":[[0,2,["G2076"]],[2,3,["G3756"]],[3,4,["G5401"]],[4,5,["G1722"]],[5,6,["G26"]],[6,7,["G235"]],[7,8,["G5046"]],[8,9,["G26"]],[9,10,["G906"]],[10,11,["G1854"]],[11,12,["G5401"]],[12,13,["G3754"]],[13,14,["G5401"]],[14,15,["G2192"]],[15,16,["G2851","(G1161)"]],[16,19,["G5399"]],[19,21,["G3756"]],[21,23,["G5048"]],[23,24,["G1722"]],[24,25,["G26"]]]},{"k":30622,"v":[[0,1,["G2249"]],[1,2,["G25"]],[2,3,["G846"]],[3,4,["G3754"]],[4,5,["G846"]],[5,6,["G4413"]],[6,7,["G25"]],[7,8,["G2248"]]]},{"k":30623,"v":[[0,1,["G1437"]],[1,3,["G5100"]],[3,4,["G2036"]],[4,6,["G25"]],[6,7,["G2316"]],[7,8,["G2532"]],[8,9,["G3404"]],[9,10,["G848"]],[10,11,["G80"]],[11,13,["G2076"]],[13,15,["G5583"]],[15,16,["G1063"]],[16,19,["G25"]],[19,20,["G3361"]],[20,21,["G848"]],[21,22,["G80"]],[22,23,["G3739"]],[23,26,["G3708"]],[26,27,["G4459"]],[27,28,["G1410"]],[28,30,["G25"]],[30,31,["G2316"]],[31,32,["G3739"]],[32,35,["G3756"]],[35,36,["G3708"]]]},{"k":30624,"v":[[0,1,["G2532"]],[1,2,["G5026"]],[2,3,["G1785"]],[3,4,["G2192"]],[4,6,["G575"]],[6,7,["G846"]],[7,8,["G2443"]],[8,11,["G25"]],[11,12,["G2316"]],[12,13,["G25"]],[13,14,["G848"]],[14,15,["G80"]],[15,16,["G2532"]]]},{"k":30625,"v":[[0,1,["G3956"]],[1,2,["G4100"]],[2,3,["G3754"]],[3,4,["G2424"]],[4,5,["G2076"]],[5,6,["G3588"]],[6,7,["G5547"]],[7,9,["G1080"]],[9,10,["G1537"]],[10,11,["G2316"]],[11,12,["G2532"]],[12,14,["G3956"]],[14,16,["G25"]],[16,19,["G1080"]],[19,20,["G25"]],[20,25,["G1080","G2532"]],[25,26,["G1537"]],[26,27,["G846"]]]},{"k":30626,"v":[[0,1,["G1722"]],[1,2,["G5129"]],[2,4,["G1097"]],[4,5,["G3754"]],[5,7,["G25"]],[7,8,["G3588"]],[8,9,["G5043"]],[9,11,["G2316"]],[11,12,["G3752"]],[12,14,["G25"]],[14,15,["G2316"]],[15,16,["G2532"]],[16,17,["G5083"]],[17,18,["G848"]],[18,19,["G1785"]]]},{"k":30627,"v":[[0,1,["G1063"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G26"]],[5,7,["G2316"]],[7,8,["G2443"]],[8,10,["G5083"]],[10,11,["G848"]],[11,12,["G1785"]],[12,13,["G2532"]],[13,14,["G848"]],[14,15,["G1785"]],[15,16,["G1526"]],[16,17,["G3756"]],[17,18,["G926"]]]},{"k":30628,"v":[[0,1,["G3754"]],[1,2,["G3956"]],[2,4,["G1080"]],[4,5,["G1537"]],[5,6,["G2316"]],[6,7,["G3528"]],[7,8,["G3588"]],[8,9,["G2889"]],[9,10,["G2532"]],[10,11,["G3778"]],[11,12,["G2076"]],[12,13,["G3588"]],[13,14,["G3529"]],[14,16,["G3528"]],[16,17,["G3588"]],[17,18,["G2889"]],[18,20,["G2257"]],[20,21,["G4102"]]]},{"k":30629,"v":[[0,1,["G5101"]],[1,2,["G2076"]],[2,5,["G3528"]],[5,6,["G3588"]],[6,7,["G2889"]],[7,8,["G1508"]],[8,11,["G4100"]],[11,12,["G3754"]],[12,13,["G2424"]],[13,14,["G2076"]],[14,15,["G3588"]],[15,16,["G5207"]],[16,18,["G2316"]]]},{"k":30630,"v":[[0,1,["G3778"]],[1,2,["G2076"]],[2,5,["G2064"]],[5,6,["G1223"]],[6,7,["G5204"]],[7,8,["G2532"]],[8,9,["G129"]],[9,11,["G2424"]],[11,12,["G5547"]],[12,13,["G3756"]],[13,14,["G1722"]],[14,15,["G5204"]],[15,16,["G3440"]],[16,17,["G235"]],[17,18,["G1722"]],[18,19,["G5204"]],[19,20,["G2532"]],[20,21,["G129"]],[21,22,["G2532"]],[22,24,["G2076"]],[24,25,["G3588"]],[25,26,["G4151"]],[26,29,["G3140"]],[29,30,["G3754"]],[30,31,["G3588"]],[31,32,["G4151"]],[32,33,["G2076"]],[33,34,["G225"]]]},{"k":30631,"v":[[0,1,["G3754"]],[1,3,["G1526"]],[3,4,["G5140"]],[4,7,["G3140"]],[7,8,["G1722"]],[8,9,["G3772"]],[9,10,["G3588"]],[10,11,["G3962"]],[11,12,["G3588"]],[12,13,["G3056"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G40"]],[16,17,["G4151"]],[17,18,["G2532"]],[18,19,["G3778"]],[19,20,["G5140"]],[20,21,["G1526"]],[21,22,["G1520"]]]},{"k":30632,"v":[[0,1,["G2532"]],[1,3,["G1526"]],[3,4,["G5140"]],[4,7,["G3140"]],[7,8,["G1722"]],[8,9,["G1093"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G5204"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G129"]],[17,18,["G2532"]],[18,20,["G5140"]],[20,21,["G1526"]],[21,22,["G1519"]],[22,23,["G1520"]]]},{"k":30633,"v":[[0,1,["G1487"]],[1,3,["G2983"]],[3,4,["G3588"]],[4,5,["G3141"]],[5,7,["G444"]],[7,8,["G3588"]],[8,9,["G3141"]],[9,11,["G2316"]],[11,12,["G2076"]],[12,13,["G3187"]],[13,14,["G3754"]],[14,15,["G3778"]],[15,16,["G2076"]],[16,17,["G3588"]],[17,18,["G3141"]],[18,20,["G2316"]],[20,21,["G3739"]],[21,24,["G3140"]],[24,25,["G4012"]],[25,26,["G848"]],[26,27,["G5207"]]]},{"k":30634,"v":[[0,3,["G4100"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,6,["G5207"]],[6,8,["G2316"]],[8,9,["G2192"]],[9,10,["G3588"]],[10,11,["G3141"]],[11,12,["G1722"]],[12,13,["G1438"]],[13,16,["G4100"]],[16,17,["G3361"]],[17,18,["G2316"]],[18,20,["G4160"]],[20,21,["G846"]],[21,23,["G5583"]],[23,24,["G3754"]],[24,26,["G4100"]],[26,27,["G3756"]],[27,28,["G3588"]],[28,29,["G3141"]],[29,30,["G3739"]],[30,31,["G2316"]],[31,32,["G3140"]],[32,33,["G4012"]],[33,34,["G848"]],[34,35,["G5207"]]]},{"k":30635,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G3141"]],[5,6,["G3754"]],[6,7,["G2316"]],[7,9,["G1325"]],[9,11,["G2254"]],[11,12,["G166"]],[12,13,["G2222"]],[13,14,["G2532"]],[14,15,["G3778"]],[15,16,["G2222"]],[16,17,["G2076"]],[17,18,["G1722"]],[18,19,["G848"]],[19,20,["G5207"]]]},{"k":30636,"v":[[0,3,["G2192"]],[3,4,["G3588"]],[4,5,["G5207"]],[5,6,["G2192"]],[6,7,["G2222"]],[7,11,["G2192"]],[11,12,["G3361"]],[12,13,["G3588"]],[13,14,["G5207"]],[14,16,["G2316"]],[16,17,["G2192"]],[17,18,["G3756"]],[18,19,["G2222"]]]},{"k":30637,"v":[[0,2,["G5023"]],[2,5,["G1125"]],[5,7,["G5213"]],[7,9,["G4100"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G3686"]],[12,14,["G3588"]],[14,15,["G5207"]],[15,17,["G2316"]],[17,18,["G2443"]],[18,21,["G1492"]],[21,22,["G3754"]],[22,24,["G2192"]],[24,25,["G166"]],[25,26,["G2222"]],[26,27,["G2532"]],[27,28,["G2443"]],[28,31,["G4100"]],[31,32,["G1519"]],[32,33,["G3588"]],[33,34,["G3686"]],[34,36,["G3588"]],[36,37,["G5207"]],[37,39,["G2316"]]]},{"k":30638,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,4,["G3588"]],[4,5,["G3954"]],[5,6,["G3739"]],[6,8,["G2192"]],[8,9,["G4314"]],[9,10,["G846"]],[10,11,["G3754"]],[11,12,["G1437"]],[12,14,["G154"]],[14,16,["G5100"]],[16,17,["G2596"]],[17,19,["G848"]],[19,20,["G2307"]],[20,22,["G191"]],[22,23,["G2257"]]]},{"k":30639,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G1492"]],[4,5,["G3754"]],[5,7,["G191"]],[7,8,["G2257"]],[8,9,["G3739","G302"]],[9,11,["G154"]],[11,13,["G1492"]],[13,14,["G3754"]],[14,16,["G2192"]],[16,17,["G3588"]],[17,18,["G155"]],[18,19,["G3739"]],[19,21,["G154"]],[21,22,["G3844"]],[22,23,["G846"]]]},{"k":30640,"v":[[0,1,["G1437"]],[1,3,["G5100"]],[3,4,["G1492"]],[4,5,["G848"]],[5,6,["G80"]],[6,7,["G264"]],[7,9,["G266"]],[9,12,["G3361"]],[12,13,["G4314"]],[13,14,["G2288"]],[14,17,["G154"]],[17,18,["G2532"]],[18,21,["G1325"]],[21,22,["G846"]],[22,23,["G2222"]],[23,27,["G264"]],[27,28,["G3361"]],[28,29,["G4314"]],[29,30,["G2288"]],[30,32,["G2076"]],[32,34,["G266"]],[34,35,["G4314"]],[35,36,["G2288"]],[36,39,["G3756"]],[39,40,["G3004"]],[40,41,["G2443"]],[41,44,["G2065"]],[44,45,["G4012"]],[45,46,["G1565"]]]},{"k":30641,"v":[[0,1,["G3956"]],[1,2,["G93"]],[2,3,["G2076"]],[3,4,["G266"]],[4,5,["G2532"]],[5,7,["G2076"]],[7,9,["G266"]],[9,10,["G3756"]],[10,11,["G4314"]],[11,12,["G2288"]]]},{"k":30642,"v":[[0,2,["G1492"]],[2,3,["G3754"]],[3,4,["G3956"]],[4,6,["G1080"]],[6,7,["G1537"]],[7,8,["G2316"]],[8,9,["G264"]],[9,10,["G3756"]],[10,11,["G235"]],[11,15,["G1080"]],[15,16,["G1537"]],[16,17,["G2316"]],[17,18,["G5083"]],[18,19,["G1438"]],[19,20,["G2532"]],[20,23,["G4190"]],[23,24,["G680"]],[24,25,["G846"]],[25,26,["G3756"]]]},{"k":30643,"v":[[0,3,["G1492"]],[3,4,["G3754"]],[4,6,["G2070"]],[6,7,["G1537"]],[7,8,["G2316"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G3650"]],[11,12,["G2889"]],[12,13,["G2749"]],[13,14,["G1722"]],[14,15,["G4190"]]]},{"k":30644,"v":[[0,1,["G1161"]],[1,3,["G1492"]],[3,4,["G3754"]],[4,5,["G3588"]],[5,6,["G5207"]],[6,8,["G2316"]],[8,10,["G2240"]],[10,11,["G2532"]],[11,13,["G1325"]],[13,14,["G2254"]],[14,16,["G1271"]],[16,17,["G2443"]],[17,20,["G1097"]],[20,24,["G228"]],[24,25,["G2532"]],[25,27,["G2070"]],[27,28,["G1722"]],[28,32,["G228"]],[32,34,["G1722"]],[34,35,["G848"]],[35,36,["G5207"]],[36,37,["G2424"]],[37,38,["G5547"]],[38,39,["G3778"]],[39,40,["G2076"]],[40,41,["G3588"]],[41,42,["G228"]],[42,43,["G2316"]],[43,44,["G2532"]],[44,45,["G166"]],[45,46,["G2222"]]]},{"k":30645,"v":[[0,2,["G5040"]],[2,3,["G5442"]],[3,4,["G1438"]],[4,5,["G575"]],[5,6,["G1497"]],[6,7,["G281"]]]},{"k":30646,"v":[[0,1,["G3588"]],[1,2,["G4245"]],[2,5,["G1588"]],[5,6,["G2959"]],[6,7,["G2532"]],[7,8,["G848"]],[8,9,["G5043"]],[9,10,["G3739"]],[10,11,["G1473"]],[11,12,["G25"]],[12,13,["G1722"]],[13,15,["G225"]],[15,16,["G2532"]],[16,17,["G3756"]],[17,18,["G1473"]],[18,19,["G3441"]],[19,20,["G235"]],[20,21,["G2532"]],[21,22,["G3956"]],[22,26,["G1097"]],[26,27,["G3588"]],[27,28,["G225"]]]},{"k":30647,"v":[[0,4,["G1223","G3588","G225"]],[4,6,["G3306"]],[6,7,["G1722"]],[7,8,["G2254"]],[8,9,["G2532"]],[9,11,["G2071"]],[11,12,["G3326"]],[12,13,["G2257"]],[13,15,["G1519","G165"]]]},{"k":30648,"v":[[0,1,["G5485"]],[1,2,["G2071"]],[2,3,["G3326"]],[3,4,["G5216"]],[4,5,["G1656"]],[5,7,["G1515"]],[7,8,["G3844"]],[8,9,["G2316"]],[9,11,["G3962"]],[11,12,["G2532"]],[12,13,["G3844"]],[13,15,["G2962"]],[15,16,["G2424"]],[16,17,["G5547"]],[17,18,["G3588"]],[18,19,["G5207"]],[19,21,["G3588"]],[21,22,["G3962"]],[22,23,["G1722"]],[23,24,["G225"]],[24,25,["G2532"]],[25,26,["G26"]]]},{"k":30649,"v":[[0,2,["G5463"]],[2,3,["G3029"]],[3,4,["G3754"]],[4,6,["G2147"]],[6,7,["G1537"]],[7,8,["G4675"]],[8,9,["G5043"]],[9,10,["G4043"]],[10,11,["G1722"]],[11,12,["G225"]],[12,13,["G2531"]],[13,16,["G2983"]],[16,18,["G1785"]],[18,19,["G3844"]],[19,20,["G3588"]],[20,21,["G3962"]]]},{"k":30650,"v":[[0,1,["G2532"]],[1,2,["G3568"]],[2,4,["G2065"]],[4,5,["G4571"]],[5,6,["G2959"]],[6,7,["G3756"]],[7,9,["G5613"]],[9,11,["G1125"]],[11,13,["G2537"]],[13,14,["G1785"]],[14,16,["G4671"]],[16,17,["G235"]],[17,19,["G3739"]],[19,21,["G2192"]],[21,22,["G575"]],[22,24,["G746"]],[24,25,["G2443"]],[25,27,["G25"]],[27,29,["G240"]]]},{"k":30651,"v":[[0,1,["G2532"]],[1,2,["G3778"]],[2,3,["G2076"]],[3,4,["G26"]],[4,5,["G2443"]],[5,7,["G4043"]],[7,8,["G2596"]],[8,9,["G848"]],[9,10,["G1785"]],[10,11,["G3778"]],[11,12,["G2076"]],[12,13,["G3588"]],[13,14,["G1785"]],[14,15,["(G2443)"]],[15,16,["G2531"]],[16,19,["G191"]],[19,20,["G575"]],[20,22,["G746"]],[22,25,["G4043"]],[25,26,["G1722"]],[26,27,["G846"]]]},{"k":30652,"v":[[0,1,["G3754"]],[1,2,["G4183"]],[2,3,["G4108"]],[3,5,["G1525"]],[5,6,["G1519"]],[6,7,["G3588"]],[7,8,["G2889"]],[8,10,["G3670"]],[10,11,["G3361"]],[11,13,["G2424"]],[13,14,["G5547"]],[14,16,["G2064"]],[16,17,["G1722"]],[17,19,["G4561"]],[19,20,["G3778"]],[20,21,["G2076"]],[21,23,["G4108"]],[23,24,["G2532"]],[24,26,["G500"]]]},{"k":30653,"v":[[0,2,["G991"]],[2,3,["G1438"]],[3,4,["G2443"]],[4,6,["G622"]],[6,7,["G3361"]],[7,10,["G3739"]],[10,13,["G2038"]],[13,14,["G235"]],[14,17,["G618"]],[17,19,["G4134"]],[19,20,["G3408"]]]},{"k":30654,"v":[[0,1,["G3956"]],[1,2,["G3845"]],[2,3,["G2532"]],[3,4,["G3306"]],[4,5,["G3361"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G1322"]],[8,10,["G5547"]],[10,11,["G2192"]],[11,12,["G3756"]],[12,13,["G2316"]],[13,16,["G3306"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G1322"]],[19,21,["G5547"]],[21,22,["G3778"]],[22,23,["G2192"]],[23,24,["G2532"]],[24,25,["G3588"]],[25,26,["G3962"]],[26,27,["G2532"]],[27,28,["G3588"]],[28,29,["G5207"]]]},{"k":30655,"v":[[0,4,["G1536","G2064"]],[4,5,["G4314"]],[5,6,["G5209"]],[6,7,["G2532"]],[7,8,["G5342"]],[8,9,["G3756"]],[9,10,["G5026"]],[10,11,["G1322"]],[11,12,["G2983"]],[12,13,["G846"]],[13,14,["G3361"]],[14,15,["G1519"]],[15,17,["G3614"]],[17,18,["G2532","G3361"]],[18,19,["G3004"]],[19,20,["G846"]],[20,22,["G5463"]]]},{"k":30656,"v":[[0,1,["G1063"]],[1,4,["G3004"]],[4,5,["G846"]],[5,7,["G5463"]],[7,9,["G2841"]],[9,11,["G848"]],[11,12,["G4190"]],[12,13,["G2041"]]]},{"k":30657,"v":[[0,1,["G2192"]],[1,3,["G4183"]],[3,5,["G1125"]],[5,7,["G5213"]],[7,9,["G1014"]],[9,10,["G3756"]],[10,12,["G1223"]],[12,13,["G5489"]],[13,14,["G2532"]],[14,15,["G3188"]],[15,16,["G235"]],[16,18,["G1679"]],[18,20,["G2064"]],[20,21,["G4314"]],[21,22,["G5209"]],[22,23,["G2532"]],[23,24,["G2980"]],[24,27,["G4750","G4314","G4750"]],[27,28,["G2443"]],[28,29,["G2257"]],[29,30,["G5479"]],[30,32,["G5600"]],[32,33,["G4137"]]]},{"k":30658,"v":[[0,1,["G3588"]],[1,2,["G5043"]],[2,4,["G4675"]],[4,5,["G1588"]],[5,6,["G79"]],[6,7,["G782"]],[7,8,["G4571"]],[8,9,["G281"]]]},{"k":30659,"v":[[0,1,["G3588"]],[1,2,["G4245"]],[2,4,["G3588"]],[4,5,["G27"]],[5,6,["G1050"]],[6,7,["G3739"]],[7,8,["G1473"]],[8,9,["G25"]],[9,10,["G1722"]],[10,12,["G225"]]]},{"k":30660,"v":[[0,1,["G27"]],[1,3,["G2172"]],[3,4,["G4012"]],[4,6,["G3956"]],[6,8,["G4571"]],[8,10,["G2137"]],[10,11,["G2532"]],[11,14,["G5198"]],[14,16,["G2531"]],[16,17,["G4675"]],[17,18,["G5590"]],[18,19,["G2137"]]]},{"k":30661,"v":[[0,1,["G1063"]],[1,3,["G5463"]],[3,4,["G3029"]],[4,7,["G80"]],[7,8,["G2064"]],[8,9,["G2532"]],[9,10,["G3140"]],[10,12,["G3588"]],[12,13,["G225"]],[13,17,["G4675"]],[17,19,["G2531"]],[19,20,["G4771"]],[20,21,["G4043"]],[21,22,["G1722"]],[22,24,["G225"]]]},{"k":30662,"v":[[0,2,["G2192"]],[2,3,["G3756"]],[3,4,["G3186"]],[4,5,["G5479"]],[5,6,["(G5130)"]],[6,7,["G2443"]],[7,8,["G191"]],[8,10,["G1699"]],[10,11,["G5043"]],[11,12,["G4043"]],[12,13,["G1722"]],[13,14,["G225"]]]},{"k":30663,"v":[[0,1,["G27"]],[1,3,["G4160"]],[3,4,["G4103"]],[4,5,["G3739","G1437"]],[5,7,["G2038"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G80"]],[10,11,["G2532"]],[11,12,["G1519"]],[12,13,["G3581"]]]},{"k":30664,"v":[[0,1,["G3739"]],[1,4,["G3140"]],[4,6,["G4675"]],[6,7,["G26"]],[7,8,["G1799"]],[8,10,["G1577"]],[10,11,["G3739"]],[11,18,["G4311"]],[18,22,["G516","G2316"]],[22,25,["G4160"]],[25,26,["G2573"]]]},{"k":30665,"v":[[0,1,["G1063"]],[1,6,["G5228","G846","G3686"]],[6,9,["G1831"]],[9,10,["G2983"]],[10,11,["G3367"]],[11,12,["G575"]],[12,13,["G3588"]],[13,14,["G1484"]]]},{"k":30666,"v":[[0,1,["G2249"]],[1,2,["G3767"]],[2,3,["G3784"]],[3,5,["G618"]],[5,6,["G5108"]],[6,7,["G2443"]],[7,10,["G1096"]],[10,11,["G4904"]],[11,13,["G3588"]],[13,14,["G225"]]]},{"k":30667,"v":[[0,2,["G1125"]],[2,4,["G3588"]],[4,5,["G1577"]],[5,6,["G235"]],[6,7,["G1361"]],[7,13,["G5383"]],[13,15,["G848"]],[15,16,["G1926"]],[16,17,["G2248"]],[17,18,["G3756"]]]},{"k":30668,"v":[[0,1,["G1223","G5124"]],[1,2,["G1437"]],[2,4,["G2064"]],[4,7,["G5279"]],[7,8,["G846"]],[8,9,["G2041"]],[9,10,["G3739"]],[10,12,["G4160"]],[12,14,["G5396"]],[14,15,["G2248"]],[15,17,["G4190"]],[17,18,["G3056"]],[18,19,["G2532"]],[19,20,["G3361"]],[20,21,["G714"]],[21,22,["G1909","G5125"]],[22,23,["G3777"]],[23,25,["G848"]],[25,27,["G1926"]],[27,28,["G3588"]],[28,29,["G80"]],[29,30,["G2532"]],[30,31,["G2967"]],[31,34,["G1014"]],[34,35,["G2532"]],[35,36,["G1544"]],[36,39,["G1537"]],[39,40,["G3588"]],[40,41,["G1577"]]]},{"k":30669,"v":[[0,1,["G27"]],[1,2,["G3401"]],[2,3,["G3361"]],[3,7,["G2556"]],[7,8,["G235"]],[8,12,["G18"]],[12,16,["G15"]],[16,17,["G2076"]],[17,18,["G1537"]],[18,19,["G2316"]],[19,20,["G1161"]],[20,24,["G2554"]],[24,26,["G3756"]],[26,27,["G3708"]],[27,28,["G2316"]]]},{"k":30670,"v":[[0,1,["G1216"]],[1,4,["G3140"]],[4,5,["G5259"]],[5,6,["G3956"]],[6,8,["G2532"]],[8,9,["G5259"]],[9,10,["G3588"]],[10,11,["G225"]],[11,12,["G846"]],[12,13,["G1161"]],[13,14,["G2532"]],[14,15,["G2249"]],[15,18,["G3140"]],[18,19,["G2532"]],[19,21,["G1492"]],[21,22,["G3754"]],[22,23,["G2257"]],[23,24,["G3141"]],[24,25,["G2076"]],[25,26,["G227"]]]},{"k":30671,"v":[[0,2,["G2192"]],[2,4,["G4183"]],[4,6,["G1125"]],[6,7,["G235"]],[7,9,["G2309"]],[9,10,["G3756"]],[10,11,["G1223"]],[11,12,["G3188"]],[12,13,["G2532"]],[13,14,["G2563"]],[14,15,["G1125"]],[15,17,["G4671"]]]},{"k":30672,"v":[[0,1,["G1161"]],[1,3,["G1679"]],[3,6,["G2112"]],[6,7,["G1492"]],[7,8,["G4571"]],[8,9,["G2532"]],[9,12,["G2980"]],[12,15,["G4750","G4314","G4750"]],[15,16,["G1515"]],[16,19,["G4671"]],[19,21,["G5384"]],[21,22,["G782"]],[22,23,["G4571"]],[23,24,["G782"]],[24,25,["G3588"]],[25,26,["G5384"]],[26,27,["G2596"]],[27,28,["G3686"]]]},{"k":30673,"v":[[0,1,["G2455"]],[1,3,["G1401"]],[3,5,["G2424"]],[5,6,["G5547"]],[6,7,["G1161"]],[7,8,["G80"]],[8,10,["G2385"]],[10,15,["G37"]],[15,16,["G1722"]],[16,17,["G2316"]],[17,19,["G3962"]],[19,20,["G2532"]],[20,21,["G5083"]],[21,23,["G2424"]],[23,24,["G5547"]],[24,26,["G2822"]]]},{"k":30674,"v":[[0,1,["G1656"]],[1,3,["G5213"]],[3,4,["G2532"]],[4,5,["G1515"]],[5,6,["G2532"]],[6,7,["G26"]],[7,9,["G4129"]]]},{"k":30675,"v":[[0,1,["G27"]],[1,4,["G4160"]],[4,5,["G3956"]],[5,6,["G4710"]],[6,8,["G1125"]],[8,10,["G5213"]],[10,11,["G4012"]],[11,12,["G3588"]],[12,13,["G2839"]],[13,14,["G4991"]],[14,17,["G2192","G318"]],[17,21,["G1125"]],[21,23,["G5213"]],[23,25,["G3870"]],[25,32,["G1864"]],[32,33,["G3588"]],[33,34,["G4102"]],[34,37,["G530"]],[37,38,["G3860"]],[38,40,["G3588"]],[40,41,["G40"]]]},{"k":30676,"v":[[0,1,["G1063"]],[1,4,["G5100"]],[4,5,["G444"]],[5,8,["G3921"]],[8,14,["G4270","G3819"]],[14,15,["G1519"]],[15,16,["G5124"]],[16,17,["G2917"]],[17,19,["G765"]],[19,20,["G3346"]],[20,21,["G3588"]],[21,22,["G5485"]],[22,24,["G2257"]],[24,25,["G2316"]],[25,26,["G1519"]],[26,27,["G766"]],[27,28,["G2532"]],[28,29,["G720"]],[29,30,["G3588"]],[30,31,["G3441"]],[31,32,["G1203"]],[32,33,["G2316"]],[33,34,["G2532"]],[34,35,["G2257"]],[35,36,["G2962"]],[36,37,["G2424"]],[37,38,["G5547"]]]},{"k":30677,"v":[[0,1,["(G1161)"]],[1,2,["G1014"]],[2,7,["G5279","G5209"]],[7,9,["G5209"]],[9,10,["G530"]],[10,11,["G1492"]],[11,12,["G5124"]],[12,14,["G3754"]],[14,15,["G3588"]],[15,16,["G2962"]],[16,18,["G4982"]],[18,20,["G2992"]],[20,22,["G1537"]],[22,24,["G1093"]],[24,26,["G125"]],[26,27,["G1208"]],[27,28,["G622"]],[28,31,["G4100"]],[31,32,["G3361"]]]},{"k":30678,"v":[[0,1,["G5037"]],[1,3,["G32"]],[3,5,["G5083"]],[5,6,["G3361"]],[6,7,["G1438"]],[7,9,["G746"]],[9,10,["G235"]],[10,11,["G620"]],[11,13,["G2398"]],[13,14,["G3613"]],[14,17,["G5083"]],[17,19,["G126"]],[19,20,["G1199"]],[20,21,["G5259"]],[21,22,["G2217"]],[22,23,["G1519"]],[23,25,["G2920"]],[25,28,["G3173"]],[28,29,["G2250"]]]},{"k":30679,"v":[[0,2,["G5613"]],[2,3,["G4670"]],[3,4,["G2532"]],[4,5,["G1116"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G4172"]],[8,9,["G4012"]],[9,10,["G846"]],[10,13,["G3664","G5158"]],[13,18,["G1608"]],[18,19,["G2532"]],[19,20,["G565"]],[20,21,["G3694"]],[21,22,["G2087"]],[22,23,["G4561"]],[23,26,["G4295"]],[26,29,["G1164"]],[29,30,["G5254"]],[30,32,["G1349"]],[32,34,["G166"]],[34,35,["G4442"]]]},{"k":30680,"v":[[0,1,["G3668"]],[1,2,["G2532"]],[2,3,["G3778"]],[3,5,["G1797"]],[5,6,["G3392"]],[6,8,["G4561","(G3303)"]],[8,9,["G114"]],[9,10,["G2963"]],[10,11,["G1161"]],[11,14,["G987"]],[14,15,["G1391"]]]},{"k":30681,"v":[[0,1,["G1161"]],[1,2,["G3413"]],[2,3,["G3588"]],[3,4,["G743"]],[4,5,["G3753"]],[5,6,["G1252"]],[6,8,["G3588"]],[8,9,["G1228"]],[9,11,["G1256"]],[11,12,["G4012"]],[12,13,["G3588"]],[13,14,["G4983"]],[14,16,["G3475"]],[16,17,["G5111"]],[17,18,["G3756"]],[18,20,["G2018"]],[20,23,["G988"]],[23,24,["G2920"]],[24,25,["G235"]],[25,26,["G2036"]],[26,28,["G2962"]],[28,29,["G2008"]],[29,30,["G4671"]]]},{"k":30682,"v":[[0,1,["G1161"]],[1,2,["G3778"]],[2,5,["G987"]],[5,7,["G3745"]],[7,9,["(G3303)"]],[9,10,["G1492"]],[10,11,["G3756"]],[11,12,["G1161"]],[12,13,["G3745"]],[13,15,["G1987"]],[15,16,["G5447"]],[16,17,["G5613"]],[17,18,["G249"]],[18,19,["G2226"]],[19,20,["G1722"]],[20,22,["G5125"]],[22,25,["G5351"]]]},{"k":30683,"v":[[0,1,["G3759"]],[1,3,["G846"]],[3,4,["G3754"]],[4,7,["G4198"]],[7,9,["G3588"]],[9,10,["G3598"]],[10,12,["G2535"]],[12,13,["G2532"]],[13,16,["G1632"]],[16,17,["G3588"]],[17,18,["G4106"]],[18,20,["G903"]],[20,22,["G3408"]],[22,23,["G2532"]],[23,24,["G622"]],[24,26,["G3588"]],[26,27,["G485"]],[27,29,["G2879"]]]},{"k":30684,"v":[[0,1,["G3778"]],[1,2,["G1526"]],[2,3,["G4694"]],[3,4,["G1722"]],[4,5,["G5216"]],[5,8,["G26"]],[8,12,["G4910"]],[12,13,["G5213"]],[13,14,["G4165"]],[14,15,["G1438"]],[15,17,["G870"]],[17,18,["G3507"]],[18,22,["G504"]],[22,24,["G4064"]],[24,25,["G5259"]],[25,26,["G417"]],[26,27,["G1186"]],[27,30,["G5352"]],[30,32,["G175"]],[32,33,["G1364"]],[33,34,["G599"]],[34,39,["G1610"]]]},{"k":30685,"v":[[0,1,["G66"]],[1,2,["G2949"]],[2,5,["G2281"]],[5,7,["G1890"]],[7,9,["G1438"]],[9,10,["G152"]],[10,11,["G4107"]],[11,12,["G792"]],[12,14,["G3739"]],[14,16,["G5083"]],[16,17,["G3588"]],[17,18,["G2217"]],[18,20,["G4655"]],[20,22,["G1519","G165"]]]},{"k":30686,"v":[[0,1,["G1161"]],[1,2,["G1802"]],[2,3,["G2532"]],[3,5,["G1442"]],[5,6,["G575"]],[6,7,["G76"]],[7,8,["G4395"]],[8,10,["G5125"]],[10,11,["G3004"]],[11,12,["G2400"]],[12,14,["G2962"]],[14,15,["G2064"]],[15,16,["G1722"]],[16,18,["G3461"]],[18,20,["G848"]],[20,21,["G40"]]]},{"k":30687,"v":[[0,2,["G4160"]],[2,3,["G2920"]],[3,4,["G2596"]],[4,5,["G3956"]],[5,6,["G2532"]],[6,8,["G1827"]],[8,9,["G3956"]],[9,12,["G765"]],[12,14,["G846"]],[14,15,["G4012"]],[15,16,["G3956"]],[16,17,["G848"]],[17,18,["G763"]],[18,19,["G2041"]],[19,20,["G3739"]],[20,24,["G764"]],[24,25,["G2532"]],[25,26,["G4012"]],[26,27,["G3956"]],[27,29,["G4642"]],[29,31,["G3739"]],[31,32,["G765"]],[32,33,["G268"]],[33,35,["G2980"]],[35,36,["G2596"]],[36,37,["G846"]]]},{"k":30688,"v":[[0,1,["G3778"]],[1,2,["G1526"]],[2,3,["G1113"]],[3,4,["G3202"]],[4,5,["G4198"]],[5,6,["G2596"]],[6,8,["G848"]],[8,9,["G1939"]],[9,10,["G2532"]],[10,11,["G848"]],[11,12,["G4750"]],[12,13,["G2980"]],[13,15,["G5246"]],[15,21,["G2296","G4383"]],[21,23,["G5484"]],[23,24,["G5622"]]]},{"k":30689,"v":[[0,1,["G1161"]],[1,2,["G27"]],[2,3,["G3415"]],[3,4,["G5210"]],[4,5,["G3588"]],[5,6,["G4487"]],[6,10,["G4280"]],[10,11,["G5259"]],[11,12,["G3588"]],[12,13,["G652"]],[13,15,["G2257"]],[15,16,["G2962"]],[16,17,["G2424"]],[17,18,["G5547"]]]},{"k":30690,"v":[[0,2,["G3754"]],[2,4,["G3004"]],[4,5,["G5213"]],[5,7,["(G3754)"]],[7,8,["G2071"]],[8,9,["G1703"]],[9,10,["G1722"]],[10,12,["G2078"]],[12,13,["G5550"]],[13,16,["G4198"]],[16,17,["G2596"]],[17,19,["G1438"]],[19,20,["G763"]],[20,21,["G1939"]]]},{"k":30691,"v":[[0,1,["G3778"]],[1,2,["G1526"]],[2,5,["G592"]],[5,6,["G1438"]],[6,7,["G5591"]],[7,8,["G2192"]],[8,9,["G3361"]],[9,11,["G4151"]]]},{"k":30692,"v":[[0,1,["G1161"]],[1,2,["G5210"]],[2,3,["G27"]],[3,5,["G2026"]],[5,6,["G1438"]],[6,8,["G5216"]],[8,10,["G40"]],[10,11,["G4102"]],[11,12,["G4336"]],[12,13,["G1722"]],[13,15,["G40"]],[15,16,["G4151"]]]},{"k":30693,"v":[[0,1,["G5083"]],[1,2,["G1438"]],[2,3,["G1722"]],[3,5,["G26"]],[5,7,["G2316"]],[7,9,["G4327"]],[9,10,["G3588"]],[10,11,["G1656"]],[11,13,["G2257"]],[13,14,["G2962"]],[14,15,["G2424"]],[15,16,["G5547"]],[16,17,["G1519"]],[17,18,["G166"]],[18,19,["G2222"]]]},{"k":30694,"v":[[0,1,["G2532"]],[1,3,["G3739","G3303"]],[3,5,["G1653"]],[5,8,["G1252"]]]},{"k":30695,"v":[[0,1,["G1161"]],[1,2,["G3739"]],[2,3,["G4982"]],[3,4,["G1722"]],[4,5,["G5401"]],[5,6,["G726"]],[6,9,["G1537"]],[9,10,["G3588"]],[10,11,["G4442"]],[11,12,["G3404"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G5509"]],[15,16,["G4696"]],[16,17,["G575"]],[17,18,["G3588"]],[18,19,["G4561"]]]},{"k":30696,"v":[[0,1,["G1161"]],[1,6,["G1410"]],[6,8,["G5442"]],[8,9,["G5209"]],[9,11,["G679"]],[11,12,["G2532"]],[12,14,["G2476"]],[14,16,["G299"]],[16,19,["G2714"]],[19,21,["G848"]],[21,22,["G1391"]],[22,23,["G1722"]],[23,25,["G20"]]]},{"k":30697,"v":[[0,3,["G3441"]],[3,4,["G4680"]],[4,5,["G2316"]],[5,6,["G2257"]],[6,7,["G4990"]],[7,9,["G1391"]],[9,10,["G2532"]],[10,11,["G3172"]],[11,12,["G2904"]],[12,13,["G2532"]],[13,14,["G1849"]],[14,15,["G2532"]],[15,16,["G3568"]],[16,17,["G2532"]],[17,18,["G1519","G3956","G165"]],[18,19,["G281"]]]},{"k":30698,"v":[[0,2,["G602"]],[2,4,["G2424"]],[4,5,["G5547"]],[5,6,["G3739"]],[6,7,["G2316"]],[7,8,["G1325"]],[8,10,["G846"]],[10,12,["G1166"]],[12,14,["G848"]],[14,15,["G1401"]],[15,17,["G3739"]],[17,18,["G1163"]],[18,19,["G1722","G5034"]],[19,22,["G1096"]],[22,23,["G2532"]],[23,25,["G649"]],[25,27,["G4591"]],[27,29,["G1223"]],[29,30,["G848"]],[30,31,["G32"]],[31,33,["G848"]],[33,34,["G1401"]],[34,35,["G2491"]]]},{"k":30699,"v":[[0,1,["G3739"]],[1,3,["G3140"]],[3,5,["G3588"]],[5,6,["G3056"]],[6,8,["G2316"]],[8,9,["G2532"]],[9,11,["G3588"]],[11,12,["G3141"]],[12,14,["G2424"]],[14,15,["G5547"]],[15,16,["G5037"]],[16,20,["G3745"]],[20,22,["G1492"]]]},{"k":30700,"v":[[0,1,["G3107"]],[1,5,["G314"]],[5,6,["G2532"]],[6,9,["G191"]],[9,10,["G3588"]],[10,11,["G3056"]],[11,14,["G4394"]],[14,15,["G2532"]],[15,16,["G5083"]],[16,21,["G1125"]],[21,22,["G1722","G846"]],[22,23,["G1063"]],[23,24,["G3588"]],[24,25,["G2540"]],[25,28,["G1451"]]]},{"k":30701,"v":[[0,1,["G2491"]],[1,3,["G3588"]],[3,4,["G2033"]],[4,5,["G1577"]],[5,6,["G3588"]],[6,8,["G1722"]],[8,9,["G773"]],[9,10,["G5485"]],[10,13,["G5213"]],[13,14,["G2532"]],[14,15,["G1515"]],[15,16,["G575"]],[16,27,["G3801"]],[27,28,["G2532"]],[28,29,["G575"]],[29,30,["G3588"]],[30,31,["G2033"]],[31,32,["G4151"]],[32,33,["G3739"]],[33,34,["G2076"]],[34,35,["G1799"]],[35,36,["G848"]],[36,37,["G2362"]]]},{"k":30702,"v":[[0,1,["G2532"]],[1,2,["G575"]],[2,3,["G2424"]],[3,4,["G5547"]],[4,7,["G3588"]],[7,8,["G4103"]],[8,9,["G3144"]],[9,11,["G3588"]],[11,13,["G4416"]],[13,14,["G1537"]],[14,15,["G3588"]],[15,16,["G3498"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G758"]],[19,21,["G3588"]],[21,22,["G935"]],[22,24,["G3588"]],[24,25,["G1093"]],[25,29,["G25"]],[29,30,["G2248"]],[30,31,["G2532"]],[31,32,["G3068"]],[32,33,["G2248"]],[33,34,["G575"]],[34,35,["G2257"]],[35,36,["G266"]],[36,37,["G1722"]],[37,39,["G848"]],[39,40,["G129"]]]},{"k":30703,"v":[[0,1,["G2532"]],[1,3,["G4160"]],[3,4,["G2248"]],[4,5,["G935"]],[5,6,["G2532"]],[6,7,["G2409"]],[7,9,["G2316"]],[9,10,["G2532"]],[10,11,["G848"]],[11,12,["G3962"]],[12,14,["G846"]],[14,16,["G1391"]],[16,17,["G2532"]],[17,18,["G2904"]],[18,22,["G1519","G165","G165"]],[22,23,["G281"]]]},{"k":30704,"v":[[0,1,["G2400"]],[1,3,["G2064"]],[3,4,["G3326"]],[4,5,["G3507"]],[5,6,["G2532"]],[6,7,["G3956"]],[7,8,["G3788"]],[8,10,["G3700"]],[10,11,["G846"]],[11,12,["G2532"]],[12,15,["G3748"]],[15,16,["G1574"]],[16,17,["G846"]],[17,18,["G2532"]],[18,19,["G3956"]],[19,20,["G5443"]],[20,22,["G3588"]],[22,23,["G1093"]],[23,25,["G2875"]],[25,27,["G1909"]],[27,28,["G846"]],[28,30,["G3483"]],[30,31,["G281"]]]},{"k":30705,"v":[[0,1,["G1473"]],[1,2,["G1510","(G3588)"]],[2,3,["G1"]],[3,4,["G2532","(G3588)"]],[4,5,["G5598"]],[5,7,["G746"]],[7,8,["G2532"]],[8,10,["G5056"]],[10,11,["G3004"]],[11,12,["G3588"]],[12,13,["G2962"]],[13,23,["G3801"]],[23,24,["G3588"]],[24,25,["G3841"]]]},{"k":30706,"v":[[0,1,["G1473"]],[1,2,["G2491"]],[2,4,["G2532"]],[4,6,["G5216"]],[6,7,["G80"]],[7,8,["G2532"]],[8,9,["G4791"]],[9,10,["G1722"]],[10,11,["G2347"]],[11,12,["G2532"]],[12,13,["G1722"]],[13,14,["G3588"]],[14,15,["G932"]],[15,16,["G2532"]],[16,17,["G5281"]],[17,19,["G2424"]],[19,20,["G5547"]],[20,21,["G1096"]],[21,22,["G1722"]],[22,23,["G3588"]],[23,24,["G3520"]],[24,27,["G2564"]],[27,28,["G3963"]],[28,29,["G1223"]],[29,30,["G3588"]],[30,31,["G3056"]],[31,33,["G2316"]],[33,34,["G2532"]],[34,35,["G1223"]],[35,36,["G3588"]],[36,37,["G3141"]],[37,39,["G2424"]],[39,40,["G5547"]]]},{"k":30707,"v":[[0,2,["G1096"]],[2,3,["G1722"]],[3,5,["G4151"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G2960"]],[8,9,["G2250"]],[9,10,["G2532"]],[10,11,["G191"]],[11,12,["G3694"]],[12,13,["G3450"]],[13,15,["G3173"]],[15,16,["G5456"]],[16,17,["G5613"]],[17,20,["G4536"]]]},{"k":30708,"v":[[0,1,["G3004"]],[1,2,["G1473"]],[2,3,["G1510","(G3588)"]],[3,4,["G1"]],[4,5,["G2532","(G3588)"]],[5,6,["G5598"]],[6,7,["G3588"]],[7,8,["G4413"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G2078"]],[11,12,["G2532"]],[12,13,["G3739"]],[13,15,["G991"]],[15,16,["G1125"]],[16,17,["G1519"]],[17,19,["G975"]],[19,20,["G2532"]],[20,21,["G3992"]],[21,24,["G3588"]],[24,25,["G2033"]],[25,26,["G1577"]],[26,27,["G3588"]],[27,29,["G1722"]],[29,30,["G773"]],[30,31,["G1519"]],[31,32,["G2181"]],[32,33,["G2532"]],[33,34,["G1519"]],[34,35,["G4667"]],[35,36,["G2532"]],[36,37,["G1519"]],[37,38,["G4010"]],[38,39,["G2532"]],[39,40,["G1519"]],[40,41,["G2363"]],[41,42,["G2532"]],[42,43,["G1519"]],[43,44,["G4554"]],[44,45,["G2532"]],[45,46,["G1519"]],[46,47,["G5359"]],[47,48,["G2532"]],[48,49,["G1519"]],[49,50,["G2993"]]]},{"k":30709,"v":[[0,1,["G2532"]],[1,3,["G1994"]],[3,5,["G991"]],[5,6,["G3588"]],[6,7,["G5456"]],[7,8,["G3748"]],[8,9,["G2980"]],[9,10,["G3326"]],[10,11,["G1700"]],[11,12,["G2532"]],[12,14,["G1994"]],[14,16,["G1492"]],[16,17,["G2033"]],[17,18,["G5552"]],[18,19,["G3087"]]]},{"k":30710,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,4,["G3319"]],[4,6,["G3588"]],[6,7,["G2033"]],[7,8,["G3087"]],[8,11,["G3664"]],[11,13,["G5207"]],[13,15,["G444"]],[15,17,["G1746"]],[17,23,["G4158"]],[23,24,["G2532"]],[24,26,["G4024","(G4314)"]],[26,27,["G3588"]],[27,28,["G3149"]],[28,31,["G5552"]],[31,32,["G2223"]]]},{"k":30711,"v":[[0,0,["(G1161)"]],[0,1,["G848"]],[1,2,["G2776"]],[2,3,["G2532"]],[3,5,["G2359"]],[5,7,["G3022"]],[7,8,["G5616"]],[8,9,["G2053"]],[9,11,["G3022"]],[11,12,["G5613"]],[12,13,["G5510"]],[13,14,["G2532"]],[14,15,["G848"]],[15,16,["G3788"]],[16,18,["G5613"]],[18,20,["G5395"]],[20,22,["G4442"]]]},{"k":30712,"v":[[0,1,["G2532"]],[1,2,["G848"]],[2,3,["G4228"]],[3,5,["G3664"]],[5,7,["G5474"]],[7,8,["G5613"]],[8,11,["G4448"]],[11,12,["G1722"]],[12,14,["G2575"]],[14,15,["G2532"]],[15,16,["G848"]],[16,17,["G5456"]],[17,18,["G5613"]],[18,20,["G5456"]],[20,22,["G4183"]],[22,23,["G5204"]]]},{"k":30713,"v":[[0,1,["G2532"]],[1,3,["G2192"]],[3,4,["G1722"]],[4,5,["G848"]],[5,6,["G1188"]],[6,7,["G5495"]],[7,8,["G2033"]],[8,9,["G792"]],[9,10,["G2532"]],[10,12,["G1537"]],[12,13,["G848"]],[13,14,["G4750"]],[14,15,["G1607"]],[15,17,["G3691"]],[17,18,["G1366"]],[18,19,["G4501"]],[19,20,["G2532"]],[20,21,["G848"]],[21,22,["G3799"]],[22,24,["G5613"]],[24,25,["G3588"]],[25,26,["G2246"]],[26,27,["G5316"]],[27,28,["G1722"]],[28,29,["G848"]],[29,30,["G1411"]]]},{"k":30714,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,4,["G1492"]],[4,5,["G846"]],[5,7,["G4098"]],[7,8,["G4314"]],[8,9,["G848"]],[9,10,["G4228"]],[10,11,["G5613"]],[11,12,["G3498"]],[12,13,["G2532"]],[13,15,["G2007"]],[15,16,["G848"]],[16,17,["G1188"]],[17,18,["G5495"]],[18,19,["G1909"]],[19,20,["G1691"]],[20,21,["G3004"]],[21,23,["G3427"]],[23,24,["G5399"]],[24,25,["G3361"]],[25,26,["G1473"]],[26,27,["G1510"]],[27,28,["G3588"]],[28,29,["G4413"]],[29,30,["G2532"]],[30,31,["G3588"]],[31,32,["G2078"]]]},{"k":30715,"v":[[0,0,["(G2532)"]],[0,5,["G2198"]],[5,6,["G2532"]],[6,7,["G1096"]],[7,8,["G3498"]],[8,9,["G2532"]],[9,10,["G2400"]],[10,12,["G1510"]],[12,13,["G2198"]],[13,15,["G1519","G165","G165"]],[15,16,["G281"]],[16,17,["G2532"]],[17,18,["G2192"]],[18,19,["G3588"]],[19,20,["G2807"]],[20,22,["G86"]],[22,23,["G2532"]],[23,25,["G2288"]]]},{"k":30716,"v":[[0,1,["G1125"]],[1,4,["G3739"]],[4,7,["G1492"]],[7,8,["G2532"]],[8,11,["G3739"]],[11,12,["G1526"]],[12,13,["G2532"]],[13,16,["G3739"]],[16,17,["G3195"]],[17,18,["G1096"]],[18,19,["G3326","G5023"]]]},{"k":30717,"v":[[0,1,["G3588"]],[1,2,["G3466"]],[2,4,["G3588"]],[4,5,["G2033"]],[5,6,["G792"]],[6,7,["G3739"]],[7,9,["G1492"]],[9,10,["G1909"]],[10,11,["G3450"]],[11,13,["G1188"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G2033"]],[16,17,["G5552"]],[17,18,["G3087"]],[18,19,["G3588"]],[19,20,["G2033"]],[20,21,["G792"]],[21,22,["G1526"]],[22,24,["G32"]],[24,26,["G3588"]],[26,27,["G2033"]],[27,28,["G1577"]],[28,29,["G2532"]],[29,30,["G3588"]],[30,31,["G2033"]],[31,32,["G3087"]],[32,33,["G3739"]],[33,35,["G1492"]],[35,36,["G1526"]],[36,38,["G2033"]],[38,39,["G1577"]]]},{"k":30718,"v":[[0,2,["G3588"]],[2,3,["G32"]],[3,5,["G3588"]],[5,6,["G1577"]],[6,8,["G2179"]],[8,9,["G1125"]],[9,11,["G3592"]],[11,12,["G3004"]],[12,15,["G2902"]],[15,16,["G3588"]],[16,17,["G2033"]],[17,18,["G792"]],[18,19,["G1722"]],[19,20,["G848"]],[20,22,["G1188"]],[22,24,["G4043"]],[24,25,["G1722"]],[25,27,["G3319"]],[27,29,["G3588"]],[29,30,["G2033"]],[30,31,["G5552"]],[31,32,["G3087"]]]},{"k":30719,"v":[[0,2,["G1492"]],[2,3,["G4675"]],[3,4,["G2041"]],[4,5,["G2532"]],[5,6,["G4675"]],[6,7,["G2873"]],[7,8,["G2532"]],[8,9,["G4675"]],[9,10,["G5281"]],[10,11,["G2532"]],[11,12,["G3754"]],[12,14,["G1410"]],[14,15,["G3756"]],[15,16,["G941"]],[16,20,["G2556"]],[20,21,["G2532"]],[21,24,["G3985"]],[24,27,["G5335"]],[27,29,["G1511"]],[29,30,["G652"]],[30,31,["G2532"]],[31,32,["G1526"]],[32,33,["G3756"]],[33,34,["G2532"]],[34,36,["G2147"]],[36,37,["G846"]],[37,38,["G5571"]]]},{"k":30720,"v":[[0,1,["G2532"]],[1,3,["G941"]],[3,4,["G2532"]],[4,5,["G2192"]],[5,6,["G5281"]],[6,7,["G2532"]],[7,11,["G1223","G3450","G3686"]],[11,13,["G2872"]],[13,14,["G2532"]],[14,16,["G3756"]],[16,17,["G2577"]]]},{"k":30721,"v":[[0,1,["G235"]],[1,3,["G2192"]],[3,5,["G2596"]],[5,6,["G4675"]],[6,7,["G3754"]],[7,10,["G863"]],[10,11,["G4675"]],[11,12,["G4413"]],[12,13,["G26"]]]},{"k":30722,"v":[[0,1,["G3421"]],[1,2,["G3767"]],[2,4,["G4159"]],[4,7,["G1601"]],[7,8,["G2532"]],[8,9,["G3340"]],[9,10,["G2532"]],[10,11,["G4160"]],[11,12,["G3588"]],[12,13,["G4413"]],[13,14,["G2041"]],[14,16,["G1490"]],[16,19,["G2064"]],[19,21,["G4671"]],[21,22,["G5034"]],[22,23,["G2532"]],[23,25,["G2795"]],[25,26,["G4675"]],[26,27,["G3087"]],[27,29,["G1537"]],[29,30,["G848"]],[30,31,["G5117"]],[31,32,["G3362"]],[32,34,["G3340"]]]},{"k":30723,"v":[[0,1,["G235"]],[1,2,["G5124"]],[2,4,["G2192"]],[4,5,["G3754"]],[5,7,["G3404"]],[7,8,["G3588"]],[8,9,["G2041"]],[9,11,["G3588"]],[11,12,["G3531"]],[12,13,["G3739"]],[13,15,["G2504"]],[15,16,["G3404"]]]},{"k":30724,"v":[[0,3,["G2192"]],[3,5,["G3775"]],[5,8,["G191"]],[8,9,["G5101"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G3004"]],[12,14,["G3588"]],[14,15,["G1577"]],[15,17,["G846"]],[17,19,["G3528"]],[19,22,["G1325"]],[22,24,["G5315"]],[24,25,["G1537"]],[25,26,["G3588"]],[26,27,["G3586"]],[27,29,["G2222"]],[29,30,["G3739"]],[30,31,["G2076"]],[31,32,["G1722"]],[32,34,["G3319"]],[34,36,["G3588"]],[36,37,["G3857"]],[37,39,["G2316"]]]},{"k":30725,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G32"]],[4,6,["G3588"]],[6,7,["G1577"]],[7,9,["G4668"]],[9,10,["G1125"]],[10,12,["G3592"]],[12,13,["G3004"]],[13,14,["G3588"]],[14,15,["G4413"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G2078"]],[18,19,["G3739"]],[19,20,["G1096"]],[20,21,["G3498"]],[21,22,["G2532"]],[22,24,["G2198"]]]},{"k":30726,"v":[[0,2,["G1492"]],[2,3,["G4675"]],[3,4,["G2041"]],[4,5,["G2532"]],[5,6,["G2347"]],[6,7,["G2532"]],[7,8,["G4432"]],[8,9,["G1161"]],[9,11,["G1488"]],[11,12,["G4145"]],[12,13,["G2532"]],[13,16,["G3588"]],[16,17,["G988"]],[17,21,["G3004"]],[21,22,["G1438"]],[22,23,["G1511"]],[23,24,["G2453"]],[24,25,["G2532"]],[25,26,["G1526"]],[26,27,["G3756"]],[27,28,["G235"]],[28,31,["G4864"]],[31,33,["G4567"]]]},{"k":30727,"v":[[0,1,["G5399"]],[1,2,["G3367"]],[2,6,["G3739"]],[6,8,["G3195"]],[8,9,["G3958"]],[9,10,["G2400"]],[10,11,["G3588"]],[11,12,["G1228"]],[12,13,["G3195"]],[13,14,["G906"]],[14,16,["G1537"]],[16,17,["G5216"]],[17,18,["G1519"]],[18,19,["G5438"]],[19,20,["G2443"]],[20,24,["G3985"]],[24,25,["G2532"]],[25,28,["G2192"]],[28,29,["G2347"]],[29,30,["G1176"]],[30,31,["G2250"]],[31,32,["G1096"]],[32,34,["G4103"]],[34,35,["G891"]],[35,36,["G2288"]],[36,37,["G2532"]],[37,40,["G1325"]],[40,41,["G4671"]],[41,43,["G4735"]],[43,45,["G2222"]]]},{"k":30728,"v":[[0,3,["G2192"]],[3,5,["G3775"]],[5,8,["G191"]],[8,9,["G5101"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G3004"]],[12,14,["G3588"]],[14,15,["G1577"]],[15,18,["G3528"]],[18,20,["G3364"]],[20,22,["G91"]],[22,23,["G1537"]],[23,24,["G3588"]],[24,25,["G1208"]],[25,26,["G2288"]]]},{"k":30729,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G32"]],[4,6,["G3588"]],[6,7,["G1577"]],[7,8,["G1722"]],[8,9,["G4010"]],[9,10,["G1125"]],[10,12,["G3592"]],[12,13,["G3004"]],[13,16,["G2192"]],[16,17,["G3588"]],[17,18,["G3691"]],[18,19,["G4501"]],[19,22,["G1366"]]]},{"k":30730,"v":[[0,2,["G1492"]],[2,3,["G4675"]],[3,4,["G2041"]],[4,5,["G2532"]],[5,6,["G4226"]],[6,8,["G2730"]],[8,10,["G3699"]],[10,11,["G4567"]],[11,12,["G2362"]],[12,14,["G2532"]],[14,17,["G2902"]],[17,18,["G3450"]],[18,19,["G3686"]],[19,20,["G2532"]],[20,22,["G3756"]],[22,23,["G720"]],[23,24,["G3450"]],[24,25,["G4102"]],[25,26,["G2532"]],[26,27,["G1722"]],[27,29,["G2250"]],[29,30,["G1722","G3739"]],[30,31,["G493"]],[31,33,["G3450"]],[33,34,["G4103"]],[34,35,["G3144"]],[35,36,["G3739"]],[36,38,["G615"]],[38,39,["G3844"]],[39,40,["G5213"]],[40,41,["G3699"]],[41,42,["G4567"]],[42,43,["G2730"]]]},{"k":30731,"v":[[0,1,["G235"]],[1,3,["G2192"]],[3,6,["G3641"]],[6,7,["G2596"]],[7,8,["G4675"]],[8,9,["G3754"]],[9,11,["G2192"]],[11,12,["G1563"]],[12,15,["G2902"]],[15,16,["G3588"]],[16,17,["G1322"]],[17,19,["G903"]],[19,20,["G3739"]],[20,21,["G1321"]],[21,22,["G904"]],[22,24,["G906"]],[24,26,["G4625"]],[26,27,["G1799"]],[27,28,["G3588"]],[28,29,["G5207"]],[29,31,["G2474"]],[31,33,["G5315"]],[33,37,["G1494"]],[37,38,["G2532"]],[38,41,["G4203"]]]},{"k":30732,"v":[[0,1,["G3779"]],[1,2,["G2192"]],[2,3,["G4771"]],[3,4,["G2532"]],[4,7,["G2902"]],[7,8,["G3588"]],[8,9,["G1322"]],[9,11,["G3588"]],[11,12,["G3531"]],[12,14,["G3739"]],[14,16,["G3404"]]]},{"k":30733,"v":[[0,1,["G3340"]],[1,3,["G1490"]],[3,6,["G2064"]],[6,8,["G4671"]],[8,9,["G5035"]],[9,10,["G2532"]],[10,12,["G4170"]],[12,13,["G3326"]],[13,14,["G846"]],[14,15,["G1722"]],[15,16,["G3588"]],[16,17,["G4501"]],[17,19,["G3450"]],[19,20,["G4750"]]]},{"k":30734,"v":[[0,3,["G2192"]],[3,5,["G3775"]],[5,8,["G191"]],[8,9,["G5101"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G3004"]],[12,14,["G3588"]],[14,15,["G1577"]],[15,17,["G846"]],[17,19,["G3528"]],[19,22,["G1325"]],[22,24,["G5315"]],[24,25,["G575"]],[25,26,["G3588"]],[26,27,["G2928","(G3588)"]],[27,28,["G3131"]],[28,29,["G2532"]],[29,31,["G1325"]],[31,32,["G846"]],[32,34,["G3022"]],[34,35,["G5586"]],[35,36,["G2532"]],[36,37,["G1909"]],[37,38,["G3588"]],[38,39,["G5586"]],[39,41,["G2537"]],[41,42,["G3686"]],[42,43,["G1125"]],[43,44,["G3739"]],[44,46,["G3762"]],[46,47,["G1097"]],[47,48,["G1508"]],[48,51,["G2983"]],[51,52,[]]]},{"k":30735,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G32"]],[4,6,["G3588"]],[6,7,["G1577"]],[7,8,["G1722"]],[8,9,["G2363"]],[9,10,["G1125"]],[10,12,["G3592"]],[12,13,["G3004"]],[13,14,["G3588"]],[14,15,["G5207"]],[15,17,["G2316"]],[17,19,["G2192"]],[19,20,["G848"]],[20,21,["G3788"]],[21,23,["G5613"]],[23,25,["G5395"]],[25,27,["G4442"]],[27,28,["G2532"]],[28,29,["G848"]],[29,30,["G4228"]],[30,32,["G3664"]],[32,34,["G5474"]]]},{"k":30736,"v":[[0,2,["G1492"]],[2,3,["G4675"]],[3,4,["G2041"]],[4,5,["G2532"]],[5,6,["G26"]],[6,7,["G2532"]],[7,8,["G1248"]],[8,9,["G2532"]],[9,10,["G4102"]],[10,11,["G2532"]],[11,12,["G4675"]],[12,13,["G5281"]],[13,14,["G2532"]],[14,15,["G4675"]],[15,16,["G2041"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G2078"]],[19,22,["G4119"]],[22,24,["G3588"]],[24,25,["G4413"]]]},{"k":30737,"v":[[0,1,["G235"]],[1,3,["G2192"]],[3,6,["G3641"]],[6,7,["G2596"]],[7,8,["G4675"]],[8,9,["G3754"]],[9,11,["G1439"]],[11,13,["G1135"]],[13,14,["G2403"]],[14,16,["G3004"]],[16,17,["G1438"]],[17,19,["G4398"]],[19,21,["G1321"]],[21,22,["G2532"]],[22,24,["G4105"]],[24,25,["G1699"]],[25,26,["G1401"]],[26,29,["G4203"]],[29,30,["G2532"]],[30,32,["G5315"]],[32,36,["G1494"]]]},{"k":30738,"v":[[0,1,["G2532"]],[1,3,["G1325"]],[3,4,["G846"]],[4,5,["G5550"]],[5,6,["G2443"]],[6,7,["G3340"]],[7,8,["G1537"]],[8,9,["G848"]],[9,10,["G4202"]],[10,11,["G2532"]],[11,13,["G3340"]],[13,14,["G3756"]]]},{"k":30739,"v":[[0,1,["G2400"]],[1,2,["G1473"]],[2,4,["G906"]],[4,5,["G846"]],[5,6,["G1519"]],[6,8,["G2825"]],[8,9,["G2532"]],[9,13,["G3431"]],[13,14,["G3326"]],[14,15,["G846"]],[15,16,["G1519"]],[16,17,["G3173"]],[17,18,["G2347"]],[18,19,["G3362"]],[19,21,["G3340"]],[21,22,["G1537"]],[22,23,["G848"]],[23,24,["G2041"]]]},{"k":30740,"v":[[0,1,["G2532"]],[1,4,["G615"]],[4,5,["G848"]],[5,6,["G5043"]],[6,7,["G1722"]],[7,8,["G2288"]],[8,9,["G2532"]],[9,10,["G3956"]],[10,11,["G3588"]],[11,12,["G1577"]],[12,14,["G1097"]],[14,15,["G3754"]],[15,16,["G1473"]],[16,17,["G1510"]],[17,20,["G2045"]],[20,22,["G3510"]],[22,23,["G2532"]],[23,24,["G2588"]],[24,25,["G2532"]],[25,28,["G1325"]],[28,31,["G1538"]],[31,33,["G5213"]],[33,34,["G2596"]],[34,36,["G5216"]],[36,37,["G2041"]]]},{"k":30741,"v":[[0,1,["G1161"]],[1,3,["G5213"]],[3,5,["G3004"]],[5,6,["G2532"]],[6,9,["G3062"]],[9,10,["G1722"]],[10,11,["G2363"]],[11,14,["G3745"]],[14,15,["G2192"]],[15,16,["G3756"]],[16,17,["G5026"]],[17,18,["G1322"]],[18,19,["G2532"]],[19,20,["G3748"]],[20,22,["G3756"]],[22,23,["G1097"]],[23,24,["G3588"]],[24,25,["G899"]],[25,27,["G4567"]],[27,28,["G5613"]],[28,30,["G3004"]],[30,33,["G906"]],[33,34,["G1909"]],[34,35,["G5209"]],[35,36,["G3756"]],[36,37,["G243"]],[37,38,["G922"]]]},{"k":30742,"v":[[0,1,["G4133"]],[1,3,["G3739"]],[3,5,["G2192"]],[5,8,["G2902"]],[8,9,["G891","G3757"]],[9,11,["G2240","G302"]]]},{"k":30743,"v":[[0,1,["G2532"]],[1,4,["G3528"]],[4,5,["G2532"]],[5,6,["G5083"]],[6,7,["G3450"]],[7,8,["G2041"]],[8,9,["G891"]],[9,11,["G5056"]],[11,13,["G846"]],[13,16,["G1325"]],[16,17,["G1849"]],[17,18,["G1909"]],[18,19,["G3588"]],[19,20,["G1484"]]]},{"k":30744,"v":[[0,1,["G2532"]],[1,4,["G4165"]],[4,5,["G846"]],[5,6,["G1722"]],[6,8,["G4464"]],[8,10,["G4603"]],[10,11,["G5613"]],[11,12,["G3588"]],[12,13,["G4632"]],[13,16,["G2764"]],[16,22,["G4937"]],[22,24,["G5613"]],[24,25,["G2504"]],[25,26,["G2983"]],[26,27,["G3844"]],[27,28,["G3450"]],[28,29,["G3962"]]]},{"k":30745,"v":[[0,1,["G2532"]],[1,4,["G1325"]],[4,5,["G846"]],[5,6,["G3588"]],[6,7,["G4407"]],[7,8,["G792"]]]},{"k":30746,"v":[[0,3,["G2192"]],[3,5,["G3775"]],[5,8,["G191"]],[8,9,["G5101"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G3004"]],[12,14,["G3588"]],[14,15,["G1577"]]]},{"k":30747,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G32"]],[4,6,["G3588"]],[6,7,["G1577"]],[7,8,["G1722"]],[8,9,["G4554"]],[9,10,["G1125"]],[10,12,["G3592"]],[12,13,["G3004"]],[13,16,["G2192"]],[16,17,["G3588"]],[17,18,["G2033"]],[18,19,["G4151"]],[19,21,["G2316"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G2033"]],[24,25,["G792"]],[25,27,["G1492"]],[27,28,["G4675"]],[28,29,["G2041"]],[29,30,["G3754"]],[30,32,["G2192"]],[32,34,["G3686"]],[34,35,["G3754"]],[35,37,["G2198"]],[37,38,["G2532"]],[38,39,["G1488"]],[39,40,["G3498"]]]},{"k":30748,"v":[[0,1,["G1096"]],[1,2,["G1127"]],[2,3,["G2532"]],[3,4,["G4741"]],[4,8,["G3062"]],[8,9,["G3739"]],[9,11,["G3195"]],[11,13,["G599"]],[13,14,["G1063"]],[14,17,["G3756"]],[17,18,["G2147"]],[18,19,["G4675"]],[19,20,["G2041"]],[20,21,["G4137"]],[21,22,["G1799"]],[22,23,["G2316"]]]},{"k":30749,"v":[[0,1,["G3421"]],[1,2,["G3767"]],[2,3,["G4459"]],[3,6,["G2983"]],[6,7,["G2532"]],[7,8,["G191"]],[8,9,["G2532"]],[9,11,["G5083"]],[11,12,["G2532"]],[12,13,["G3340"]],[13,14,["G1437"]],[14,15,["G3767"]],[15,18,["G3361"]],[18,19,["G1127"]],[19,22,["G2240"]],[22,23,["G1909"]],[23,24,["G4571"]],[24,25,["G5613"]],[25,27,["G2812"]],[27,28,["G2532"]],[28,31,["G3364"]],[31,32,["G1097"]],[32,33,["G4169"]],[33,34,["G5610"]],[34,37,["G2240"]],[37,38,["G1909"]],[38,39,["G4571"]]]},{"k":30750,"v":[[0,2,["G2192"]],[2,4,["G3641"]],[4,5,["G3686"]],[5,6,["G2532"]],[6,7,["G1722"]],[7,8,["G4554"]],[8,9,["G3739"]],[9,11,["G3756"]],[11,12,["G3435"]],[12,13,["G848"]],[13,14,["G2440"]],[14,15,["G2532"]],[15,18,["G4043"]],[18,19,["G3326"]],[19,20,["G1700"]],[20,21,["G1722"]],[21,22,["G3022"]],[22,23,["G3754"]],[23,25,["G1526"]],[25,26,["G514"]]]},{"k":30751,"v":[[0,3,["G3528"]],[3,5,["G3778"]],[5,8,["G4016"]],[8,9,["G1722"]],[9,10,["G3022"]],[10,11,["G2440"]],[11,12,["G2532"]],[12,15,["G3364"]],[15,17,["G1813"]],[17,18,["G848"]],[18,19,["G3686"]],[19,20,["G1537"]],[20,22,["G3588"]],[22,23,["G976"]],[23,25,["G2222"]],[25,26,["G2532"]],[26,29,["G1843"]],[29,30,["G848"]],[30,31,["G3686"]],[31,32,["G1799"]],[32,33,["G3450"]],[33,34,["G3962"]],[34,35,["G2532"]],[35,36,["G1799"]],[36,37,["G848"]],[37,38,["G32"]]]},{"k":30752,"v":[[0,3,["G2192"]],[3,5,["G3775"]],[5,8,["G191"]],[8,9,["G5101"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G3004"]],[12,14,["G3588"]],[14,15,["G1577"]]]},{"k":30753,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G32"]],[4,6,["G3588"]],[6,7,["G1577"]],[7,8,["G1722"]],[8,9,["G5359"]],[9,10,["G1125"]],[10,12,["G3592"]],[12,13,["G3004"]],[13,17,["G40"]],[17,21,["G228"]],[21,24,["G2192"]],[24,25,["G3588"]],[25,26,["G2807"]],[26,28,["G1138"]],[28,31,["G455"]],[31,32,["G2532"]],[32,34,["G3762"]],[34,35,["G2808"]],[35,36,["G2532"]],[36,37,["G2808"]],[37,38,["G2532"]],[38,40,["G3762"]],[40,41,["G455"]]]},{"k":30754,"v":[[0,2,["G1492"]],[2,3,["G4675"]],[3,4,["G2041"]],[4,5,["G2400"]],[5,8,["G1325"]],[8,9,["G1799"]],[9,10,["G4675"]],[10,12,["G455"]],[12,13,["G2374"]],[13,14,["G2532"]],[14,16,["G3762"]],[16,17,["G1410"]],[17,18,["G2808"]],[18,19,["G846"]],[19,20,["G3754"]],[20,22,["G2192"]],[22,24,["G3398"]],[24,25,["G1411"]],[25,26,["G2532"]],[26,28,["G5083"]],[28,29,["G3450"]],[29,30,["G3056"]],[30,31,["G2532"]],[31,33,["G3756"]],[33,34,["G720"]],[34,35,["G3450"]],[35,36,["G3686"]]]},{"k":30755,"v":[[0,1,["G2400"]],[1,4,["G1325"]],[4,5,["G3588"]],[5,6,["G1537"]],[6,7,["G3588"]],[7,8,["G4864"]],[8,10,["G4567"]],[10,12,["G3004"]],[12,13,["G1438"]],[13,14,["G1511"]],[14,15,["G2453"]],[15,16,["G2532"]],[16,17,["G1526"]],[17,18,["G3756"]],[18,19,["G235"]],[19,21,["G5574"]],[21,22,["G2400"]],[22,25,["G4160"]],[25,26,["G846"]],[26,27,["G2443"]],[27,28,["G2240"]],[28,29,["G2532"]],[29,30,["G4352"]],[30,31,["G1799"]],[31,32,["G4675"]],[32,33,["G4228"]],[33,34,["G2532"]],[34,36,["G1097"]],[36,37,["G3754"]],[37,38,["G1473"]],[38,40,["G25"]],[40,41,["G4571"]]]},{"k":30756,"v":[[0,1,["G3754"]],[1,4,["G5083"]],[4,5,["G3588"]],[5,6,["G3056"]],[6,8,["G3450"]],[8,9,["G5281"]],[9,11,["G2504"]],[11,13,["G5083"]],[13,14,["G4571"]],[14,15,["G1537"]],[15,16,["G3588"]],[16,17,["G5610"]],[17,19,["G3986"]],[19,21,["G3195"]],[21,22,["G2064"]],[22,23,["G1909"]],[23,24,["G3650"]],[24,25,["G3588"]],[25,26,["G3625"]],[26,28,["G3985"]],[28,29,["G3588"]],[29,31,["G2730"]],[31,32,["G1909"]],[32,33,["G3588"]],[33,34,["G1093"]]]},{"k":30757,"v":[[0,1,["G2400"]],[1,3,["G2064"]],[3,4,["G5035"]],[4,7,["G2902"]],[7,8,["G3739"]],[8,10,["G2192"]],[10,11,["G2443"]],[11,13,["G3367"]],[13,14,["G2983"]],[14,15,["G4675"]],[15,16,["G4735"]]]},{"k":30758,"v":[[0,1,["G846"]],[1,3,["G3528"]],[3,6,["G4160"]],[6,8,["G4769"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G3485"]],[11,13,["G3450"]],[13,14,["G2316"]],[14,15,["G2532"]],[15,18,["G1831"]],[18,19,["G3364"]],[19,20,["G2089"]],[20,21,["G1854"]],[21,22,["G2532"]],[22,25,["G1125"]],[25,26,["G1909"]],[26,27,["G846"]],[27,28,["G3588"]],[28,29,["G3686"]],[29,31,["G3450"]],[31,32,["G2316"]],[32,33,["G2532"]],[33,34,["G3588"]],[34,35,["G3686"]],[35,37,["G3588"]],[37,38,["G4172"]],[38,40,["G3450"]],[40,41,["G2316"]],[41,44,["G2537"]],[44,45,["G2419"]],[45,46,["G3739"]],[46,48,["G2597"]],[48,50,["G1537"]],[50,51,["G3772"]],[51,52,["G575"]],[52,53,["G3450"]],[53,54,["G2316"]],[54,55,["G2532"]],[55,61,["G3450"]],[61,62,["G2537"]],[62,63,["G3686"]]]},{"k":30759,"v":[[0,3,["G2192"]],[3,5,["G3775"]],[5,8,["G191"]],[8,9,["G5101"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G3004"]],[12,14,["G3588"]],[14,15,["G1577"]]]},{"k":30760,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G32"]],[4,6,["G3588"]],[6,7,["G1577"]],[7,10,["G2994"]],[10,11,["G1125"]],[11,13,["G3592"]],[13,14,["G3004"]],[14,15,["G3588"]],[15,16,["G281"]],[16,17,["G3588"]],[17,18,["G4103"]],[18,19,["G2532"]],[19,20,["G228"]],[20,21,["G3144"]],[21,22,["G3588"]],[22,23,["G746"]],[23,25,["G3588"]],[25,26,["G2937"]],[26,28,["G2316"]]]},{"k":30761,"v":[[0,2,["G1492"]],[2,3,["G4675"]],[3,4,["G2041"]],[4,5,["G3754"]],[5,7,["G1488"]],[7,8,["G3777"]],[8,9,["G5593"]],[9,10,["G3777"]],[10,11,["G2200"]],[11,13,["G3785"]],[13,15,["G1498"]],[15,16,["G5593"]],[16,17,["G2228"]],[17,18,["G2200"]]]},{"k":30762,"v":[[0,2,["G3779"]],[2,3,["G3754"]],[3,5,["G1488"]],[5,6,["G5513"]],[6,7,["G2532"]],[7,8,["G3777"]],[8,9,["G5593"]],[9,10,["G3777"]],[10,11,["G2200"]],[11,13,["G3195"]],[13,14,["G1692"]],[14,15,["G4571"]],[15,17,["G1537"]],[17,18,["G3450"]],[18,19,["G4750"]]]},{"k":30763,"v":[[0,1,["G3754"]],[1,3,["G3004"]],[3,5,["G1510"]],[5,6,["G4145"]],[6,7,["G2532"]],[7,10,["G4147"]],[10,11,["G2532"]],[11,12,["G2192"]],[12,13,["G5532"]],[13,15,["G3762"]],[15,16,["G2532"]],[16,17,["G1492"]],[17,18,["G3756"]],[18,19,["G3754"]],[19,20,["G4771"]],[20,21,["G1488"]],[21,22,["G5005"]],[22,23,["G2532"]],[23,24,["G1652"]],[24,25,["G2532"]],[25,26,["G4434"]],[26,27,["G2532"]],[27,28,["G5185"]],[28,29,["G2532"]],[29,30,["G1131"]]]},{"k":30764,"v":[[0,2,["G4823"]],[2,3,["G4671"]],[3,5,["G59"]],[5,6,["G3844"]],[6,7,["G1700"]],[7,8,["G5553"]],[8,9,["G4448"]],[9,10,["G1537"]],[10,12,["G4442"]],[12,13,["G2443"]],[13,17,["G4147"]],[17,18,["G2532"]],[18,19,["G3022"]],[19,20,["G2440"]],[20,21,["G2443"]],[21,25,["G4016"]],[25,26,["G2532"]],[26,28,["G3588"]],[28,29,["G152"]],[29,31,["G4675"]],[31,32,["G1132"]],[32,34,["G3361"]],[34,35,["G5319"]],[35,36,["G2532"]],[36,37,["G1472"]],[37,38,["G4675"]],[38,39,["G3788"]],[39,41,["G2854"]],[41,42,["G2443"]],[42,45,["G991"]]]},{"k":30765,"v":[[0,3,["G3745","(G1437)"]],[3,4,["G1473"]],[4,5,["G5368"]],[5,7,["G1651"]],[7,8,["G2532"]],[8,9,["G3811"]],[9,11,["G2206"]],[11,12,["G3767"]],[12,13,["G2532"]],[13,14,["G3340"]]]},{"k":30766,"v":[[0,1,["G2400"]],[1,3,["G2476"]],[3,4,["G1909"]],[4,5,["G3588"]],[5,6,["G2374"]],[6,7,["G2532"]],[7,8,["G2925"]],[8,9,["G1437"]],[9,11,["G5100"]],[11,12,["G191"]],[12,13,["G3450"]],[13,14,["G5456"]],[14,15,["G2532"]],[15,16,["G455"]],[16,17,["G3588"]],[17,18,["G2374"]],[18,22,["G1525"]],[22,23,["G4314"]],[23,24,["G846"]],[24,25,["G2532"]],[25,27,["G1172"]],[27,28,["G3326"]],[28,29,["G846"]],[29,30,["G2532"]],[30,31,["G846"]],[31,32,["G3326"]],[32,33,["G1700"]]]},{"k":30767,"v":[[0,2,["G846"]],[2,4,["G3528"]],[4,7,["G1325"]],[7,9,["G2523"]],[9,10,["G3326"]],[10,11,["G1700"]],[11,12,["G1722"]],[12,13,["G3450"]],[13,14,["G2362"]],[14,16,["G5613"]],[16,18,["G2504"]],[18,19,["G3528"]],[19,20,["G2532"]],[20,23,["G2523"]],[23,24,["G3326"]],[24,25,["G3450"]],[25,26,["G3962"]],[26,27,["G1722"]],[27,28,["G848"]],[28,29,["G2362"]]]},{"k":30768,"v":[[0,3,["G2192"]],[3,5,["G3775"]],[5,8,["G191"]],[8,9,["G5101"]],[9,10,["G3588"]],[10,11,["G4151"]],[11,12,["G3004"]],[12,14,["G3588"]],[14,15,["G1577"]]]},{"k":30769,"v":[[0,1,["G3326"]],[1,2,["G5023"]],[2,4,["G1492"]],[4,5,["G2532"]],[5,6,["G2400"]],[6,8,["G2374"]],[8,10,["G455"]],[10,11,["G1722"]],[11,12,["G3772"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G4413"]],[15,16,["G5456"]],[16,17,["G3739"]],[17,19,["G191"]],[19,23,["G5613"]],[23,26,["G4536"]],[26,27,["G2980"]],[27,28,["G3326"]],[28,29,["G1700"]],[29,31,["G3004"]],[31,33,["G305"]],[33,34,["G5602"]],[34,35,["G2532"]],[35,38,["G1166"]],[38,39,["G4671"]],[39,41,["G3739"]],[41,42,["G1163"]],[42,43,["G1096"]],[43,44,["G3326","G5023"]]]},{"k":30770,"v":[[0,1,["G2532"]],[1,2,["G2112"]],[2,4,["G1096"]],[4,5,["G1722"]],[5,7,["G4151"]],[7,8,["G2532"]],[8,9,["G2400"]],[9,11,["G2362"]],[11,13,["G2749"]],[13,14,["G1722"]],[14,15,["G3772"]],[15,16,["G2532"]],[16,18,["G2521"]],[18,19,["G1909"]],[19,20,["G3588"]],[20,21,["G2362"]]]},{"k":30771,"v":[[0,1,["G2532"]],[1,4,["G2521"]],[4,5,["G2258"]],[5,8,["G3706"]],[8,9,["G3664"]],[9,11,["G2393"]],[11,12,["G2532"]],[12,14,["G4555"]],[14,15,["G3037"]],[15,16,["G2532"]],[16,20,["G2463"]],[20,22,["G2943"]],[22,23,["G3588"]],[23,24,["G2362"]],[24,26,["G3706"]],[26,28,["G3664"]],[28,30,["G4664"]]]},{"k":30772,"v":[[0,1,["G2532"]],[1,3,["G2943"]],[3,4,["G3588"]],[4,5,["G2362"]],[5,9,["G5064","G2532","G1501"]],[9,10,["G2362"]],[10,11,["G2532"]],[11,12,["G1909"]],[12,13,["G3588"]],[13,14,["G2362"]],[14,16,["G1492"]],[16,19,["G5064","G2532","G1501"]],[19,20,["G4245"]],[20,21,["G2521"]],[21,22,["G4016"]],[22,23,["G1722"]],[23,24,["G3022"]],[24,25,["G2440"]],[25,26,["G2532"]],[26,28,["G2192"]],[28,29,["G1909"]],[29,30,["G848"]],[30,31,["G2776"]],[31,32,["G4735"]],[32,34,["G5552"]]]},{"k":30773,"v":[[0,1,["G2532"]],[1,2,["G1537"]],[2,4,["G3588"]],[4,5,["G2362"]],[5,6,["G1607"]],[6,7,["G796"]],[7,8,["G2532"]],[8,9,["G1027"]],[9,10,["G2532"]],[10,11,["G5456"]],[11,12,["G2532"]],[12,15,["G2033"]],[15,16,["G2985"]],[16,18,["G4442"]],[18,19,["G2545"]],[19,20,["G1799"]],[20,21,["G3588"]],[21,22,["G2362"]],[22,23,["G3739"]],[23,24,["G1526"]],[24,25,["G3588"]],[25,26,["G2033"]],[26,27,["G4151"]],[27,29,["G2316"]]]},{"k":30774,"v":[[0,1,["G2532"]],[1,2,["G1799"]],[2,3,["G3588"]],[3,4,["G2362"]],[4,8,["G2281"]],[8,10,["G5193"]],[10,12,["G3664"]],[12,13,["G2930"]],[13,14,["G2532"]],[14,15,["G1722"]],[15,17,["G3319"]],[17,19,["G3588"]],[19,20,["G2362"]],[20,21,["G2532"]],[21,23,["G2945"]],[23,24,["G3588"]],[24,25,["G2362"]],[25,27,["G5064"]],[27,28,["G2226"]],[28,29,["G1073"]],[29,31,["G3788"]],[31,32,["G1715"]],[32,33,["G2532"]],[33,34,["G3693"]]]},{"k":30775,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4413"]],[3,4,["G2226"]],[4,6,["G3664"]],[6,8,["G3023"]],[8,9,["G2532"]],[9,10,["G3588"]],[10,11,["G1208"]],[11,12,["G2226"]],[12,13,["G3664"]],[13,15,["G3448"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G5154"]],[18,19,["G2226"]],[19,20,["G2192"]],[20,22,["G4383"]],[22,23,["G5613"]],[23,25,["G444"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G5067"]],[28,29,["G2226"]],[29,31,["G3664"]],[31,33,["G4072"]],[33,34,["G105"]]]},{"k":30776,"v":[[0,1,["G2532"]],[1,3,["G5064"]],[3,4,["G2226"]],[4,5,["G2192"]],[5,8,["G303","G1520","G2596","G1438"]],[8,9,["G1803"]],[9,10,["G4420"]],[10,11,["G2943"]],[11,13,["G2532"]],[13,16,["G1073"]],[16,18,["G3788"]],[18,19,["G2081"]],[19,20,["G2532"]],[20,22,["G2192","G372"]],[22,23,["G3756"]],[23,24,["G2250"]],[24,25,["G2532"]],[25,26,["G3571"]],[26,27,["G3004"]],[27,28,["G40"]],[28,29,["G40"]],[29,30,["G40"]],[30,31,["G2962"]],[31,32,["G2316"]],[32,33,["G3841"]],[33,41,["G3801"]]]},{"k":30777,"v":[[0,1,["G2532"]],[1,2,["G3752"]],[2,4,["G2226"]],[4,5,["G1325"]],[5,6,["G1391"]],[6,7,["G2532"]],[7,8,["G5092"]],[8,9,["G2532"]],[9,10,["G2169"]],[10,14,["G2521"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,17,["G2362"]],[17,19,["G2198"]],[19,23,["G1519","G165","G165"]]]},{"k":30778,"v":[[0,1,["G3588"]],[1,4,["G5064","G2532","G1501"]],[4,5,["G4245"]],[5,7,["G4098"]],[7,8,["G1799"]],[8,11,["G2521"]],[11,12,["G1909"]],[12,13,["G3588"]],[13,14,["G2362"]],[14,15,["G2532"]],[15,16,["G4352"]],[16,19,["G2198"]],[19,23,["G1519","G165","G165"]],[23,24,["G2532"]],[24,25,["G906"]],[25,26,["G848"]],[26,27,["G4735"]],[27,28,["G1799"]],[28,29,["G3588"]],[29,30,["G2362"]],[30,31,["G3004"]]]},{"k":30779,"v":[[0,2,["G1488"]],[2,3,["G514"]],[3,5,["G2962"]],[5,7,["G2983"]],[7,8,["G1391"]],[8,9,["G2532"]],[9,10,["G5092"]],[10,11,["G2532"]],[11,12,["G1411"]],[12,13,["G3754"]],[13,14,["G4771"]],[14,16,["G2936"]],[16,18,["G3956"]],[18,19,["G2532"]],[19,20,["G1223"]],[20,21,["G4675"]],[21,22,["G2307"]],[22,24,["G1526"]],[24,25,["G2532"]],[25,27,["G2936"]]]},{"k":30780,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G1909"]],[4,5,["G3588"]],[5,7,["G1188"]],[7,11,["G2521"]],[11,12,["G1909"]],[12,13,["G3588"]],[13,14,["G2362"]],[14,16,["G975"]],[16,17,["G1125"]],[17,18,["G2081"]],[18,19,["G2532"]],[19,22,["G3693"]],[22,23,["G2696"]],[23,25,["G2033"]],[25,26,["G4973"]]]},{"k":30781,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,5,["G2478"]],[5,6,["G32"]],[6,7,["G2784"]],[7,10,["G3173"]],[10,11,["G5456"]],[11,12,["G5101"]],[12,13,["G2076"]],[13,14,["G514"]],[14,16,["G455"]],[16,17,["G3588"]],[17,18,["G975"]],[18,19,["G2532"]],[19,21,["G3089"]],[21,22,["G3588"]],[22,23,["G4973"]],[23,24,["G848"]]]},{"k":30782,"v":[[0,1,["G2532"]],[1,3,["G3762"]],[3,4,["G1722"]],[4,5,["G3772"]],[5,6,["G3761"]],[6,7,["G1909"]],[7,8,["G1093"]],[8,9,["G3761"]],[9,10,["G5270"]],[10,11,["G3588"]],[11,12,["G1093"]],[12,14,["G1410"]],[14,16,["G455"]],[16,17,["G3588"]],[17,18,["G975"]],[18,19,["G3761"]],[19,21,["G991"]],[21,22,["G846"]]]},{"k":30783,"v":[[0,1,["G2532"]],[1,2,["G1473"]],[2,3,["G2799"]],[3,4,["G4183"]],[4,5,["G3754"]],[5,7,["G3762"]],[7,9,["G2147"]],[9,10,["G514"]],[10,12,["G455"]],[12,13,["G2532"]],[13,15,["G314"]],[15,16,["G3588"]],[16,17,["G975"]],[17,18,["G3777"]],[18,20,["G991"]],[20,21,["G846"]]]},{"k":30784,"v":[[0,1,["G2532"]],[1,2,["G1520"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G4245"]],[5,6,["G3004"]],[6,8,["G3427"]],[8,9,["G2799"]],[9,10,["G3361"]],[10,11,["G2400"]],[11,12,["G3588"]],[12,13,["G3023","(G5607)"]],[13,14,["G1537"]],[14,15,["G3588"]],[15,16,["G5443"]],[16,18,["G2455"]],[18,19,["G3588"]],[19,20,["G4491"]],[20,22,["G1138"]],[22,24,["G3528"]],[24,26,["G455"]],[26,27,["G3588"]],[27,28,["G975"]],[28,29,["G2532"]],[29,31,["G3089"]],[31,32,["G3588"]],[32,33,["G2033"]],[33,34,["G4973"]],[34,35,["G848"]]]},{"k":30785,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G2532"]],[4,5,["G2400"]],[5,6,["G1722"]],[6,8,["G3319"]],[8,10,["G3588"]],[10,11,["G2362"]],[11,12,["G2532"]],[12,14,["G3588"]],[14,15,["G5064"]],[15,16,["G2226"]],[16,17,["G2532"]],[17,18,["G1722"]],[18,20,["G3319"]],[20,22,["G3588"]],[22,23,["G4245"]],[23,24,["G2476"]],[24,26,["G721"]],[26,27,["G5613"]],[27,31,["G4969"]],[31,32,["G2192"]],[32,33,["G2033"]],[33,34,["G2768"]],[34,35,["G2532"]],[35,36,["G2033"]],[36,37,["G3788"]],[37,38,["G3739"]],[38,39,["G1526"]],[39,40,["G3588"]],[40,41,["G2033"]],[41,42,["G4151"]],[42,44,["G2316"]],[44,46,["G649"]],[46,47,["G1519"]],[47,48,["G3956"]],[48,49,["G3588"]],[49,50,["G1093"]]]},{"k":30786,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G2532"]],[4,5,["G2983"]],[5,6,["G3588"]],[6,7,["G975"]],[7,9,["G1537"]],[9,10,["G3588"]],[10,12,["G1188"]],[12,16,["G2521"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G2362"]]]},{"k":30787,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G2983"]],[5,6,["G3588"]],[6,7,["G975"]],[7,8,["G3588"]],[8,9,["G5064"]],[9,10,["G2226"]],[10,11,["G2532"]],[11,14,["G1501","G5064"]],[14,15,["G4245"]],[15,17,["G4098"]],[17,18,["G1799"]],[18,19,["G3588"]],[19,20,["G721"]],[20,21,["G2192"]],[21,25,["G1538"]],[25,26,["G2788"]],[26,27,["G2532"]],[27,28,["G5552"]],[28,29,["G5357"]],[29,30,["G1073"]],[30,32,["G2368"]],[32,33,["G3739"]],[33,34,["G1526"]],[34,35,["G3588"]],[35,36,["G4335"]],[36,38,["G40"]]]},{"k":30788,"v":[[0,1,["G2532"]],[1,3,["G103"]],[3,5,["G2537"]],[5,6,["G5603"]],[6,7,["G3004"]],[7,9,["G1488"]],[9,10,["G514"]],[10,12,["G2983"]],[12,13,["G3588"]],[13,14,["G975"]],[14,15,["G2532"]],[15,17,["G455"]],[17,18,["G3588"]],[18,19,["G4973"]],[19,20,["G848"]],[20,21,["G3754"]],[21,24,["G4969"]],[24,25,["G2532"]],[25,27,["G59"]],[27,28,["G2248"]],[28,30,["G2316"]],[30,31,["G1722"]],[31,32,["G4675"]],[32,33,["G129"]],[33,35,["G1537"]],[35,36,["G3956"]],[36,37,["G5443"]],[37,38,["G2532"]],[38,39,["G1100"]],[39,40,["G2532"]],[40,41,["G2992"]],[41,42,["G2532"]],[42,43,["G1484"]]]},{"k":30789,"v":[[0,1,["G2532"]],[1,3,["G4160"]],[3,4,["G2248"]],[4,6,["G2257"]],[6,7,["G2316"]],[7,8,["G935"]],[8,9,["G2532"]],[9,10,["G2409"]],[10,11,["G2532"]],[11,14,["G936"]],[14,15,["G1909"]],[15,16,["G3588"]],[16,17,["G1093"]]]},{"k":30790,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G2532"]],[4,6,["G191"]],[6,8,["G5456"]],[8,10,["G4183"]],[10,11,["G32"]],[11,13,["G2943"]],[13,14,["G3588"]],[14,15,["G2362"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G2226"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G4245"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G706"]],[24,26,["G846"]],[26,27,["G2258"]],[27,32,["G3461","G3461"]],[32,33,["G2532"]],[33,36,["G5505","G5505"]]]},{"k":30791,"v":[[0,1,["G3004"]],[1,4,["G3173"]],[4,5,["G5456"]],[5,6,["G514"]],[6,7,["G2076"]],[7,8,["G3588"]],[8,9,["G721"]],[9,12,["G4969"]],[12,14,["G2983"]],[14,15,["G1411"]],[15,16,["G2532"]],[16,17,["G4149"]],[17,18,["G2532"]],[18,19,["G4678"]],[19,20,["G2532"]],[20,21,["G2479"]],[21,22,["G2532"]],[22,23,["G5092"]],[23,24,["G2532"]],[24,25,["G1391"]],[25,26,["G2532"]],[26,27,["G2129"]]]},{"k":30792,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G2938"]],[3,4,["G3739"]],[4,5,["G2076"]],[5,6,["G1722"]],[6,7,["G3772"]],[7,8,["G2532"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G1093"]],[11,12,["G2532"]],[12,13,["G5270"]],[13,14,["G3588"]],[14,15,["G1093"]],[15,16,["G2532"]],[16,18,["G3739"]],[18,19,["G2076"]],[19,20,["G1909"]],[20,21,["G3588"]],[21,22,["G2281"]],[22,23,["G2532"]],[23,24,["G3956"]],[24,25,["G3588"]],[25,27,["G1722"]],[27,28,["G846"]],[28,29,["G191"]],[29,31,["G3004"]],[31,32,["G2129"]],[32,33,["G2532"]],[33,34,["G5092"]],[34,35,["G2532"]],[35,36,["G1391"]],[36,37,["G2532"]],[37,38,["G2904"]],[38,43,["G2521"]],[43,44,["G1909"]],[44,45,["G3588"]],[45,46,["G2362"]],[46,47,["G2532"]],[47,49,["G3588"]],[49,50,["G721"]],[50,54,["G1519","G165","G165"]]]},{"k":30793,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5064"]],[3,4,["G2226"]],[4,5,["G3004"]],[5,6,["G281"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,11,["G1501","G5064"]],[11,12,["G4245"]],[12,14,["G4098"]],[14,15,["G2532"]],[15,16,["G4352"]],[16,19,["G2198"]],[19,23,["G1519","G165","G165"]]]},{"k":30794,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3753"]],[4,5,["G3588"]],[5,6,["G721"]],[6,7,["G455"]],[7,8,["G3391"]],[8,9,["G1537"]],[9,10,["G3588"]],[10,11,["G4973"]],[11,12,["G2532"]],[12,14,["G191"]],[14,17,["G5613"]],[17,19,["G5456"]],[19,21,["G1027"]],[21,22,["G1520"]],[22,23,["G1537"]],[23,24,["G3588"]],[24,25,["G5064"]],[25,26,["G2226"]],[26,27,["G3004"]],[27,28,["G2064"]],[28,29,["G2532"]],[29,30,["G991"]]]},{"k":30795,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G2532"]],[4,5,["G2400"]],[5,7,["G3022"]],[7,8,["G2462"]],[8,9,["G2532"]],[9,12,["G2521"]],[12,13,["G1909"]],[13,14,["G846"]],[14,15,["G2192"]],[15,17,["G5115"]],[17,18,["G2532"]],[18,20,["G4735"]],[20,22,["G1325"]],[22,24,["G846"]],[24,25,["G2532"]],[25,28,["G1831"]],[28,29,["G3528"]],[29,30,["G2532"]],[30,31,["G2443"]],[31,32,["G3528"]]]},{"k":30796,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G455"]],[5,6,["G3588"]],[6,7,["G1208"]],[7,8,["G4973"]],[8,10,["G191"]],[10,11,["G3588"]],[11,12,["G1208"]],[12,13,["G2226"]],[13,14,["G3004"]],[14,15,["G2064"]],[15,16,["G2532"]],[16,17,["G991"]]]},{"k":30797,"v":[[0,1,["G2532"]],[1,4,["G1831"]],[4,5,["G243"]],[5,6,["G2462"]],[6,9,["G4450"]],[9,10,["G2532"]],[10,13,["G1325"]],[13,15,["G846"]],[15,17,["G2521"]],[17,18,["G1909","G846"]],[18,20,["G2983"]],[20,21,["G1515"]],[21,22,["G575"]],[22,23,["G3588"]],[23,24,["G1093"]],[24,25,["G2532"]],[25,26,["G2443"]],[26,29,["G4969"]],[29,31,["G240"]],[31,32,["G2532"]],[32,35,["G1325"]],[35,37,["G846"]],[37,39,["G3173"]],[39,40,["G3162"]]]},{"k":30798,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G455"]],[5,6,["G3588"]],[6,7,["G5154"]],[7,8,["G4973"]],[8,10,["G191"]],[10,11,["G3588"]],[11,12,["G5154"]],[12,13,["G2226"]],[13,14,["G3004"]],[14,15,["G2064"]],[15,16,["G2532"]],[16,17,["G991"]],[17,18,["G2532"]],[18,20,["G1492"]],[20,21,["G2532"]],[21,22,["G2400"]],[22,24,["G3189"]],[24,25,["G2462"]],[25,26,["G2532"]],[26,29,["G2521"]],[29,30,["G1909"]],[30,31,["G846"]],[31,32,["G2192"]],[32,36,["G2218"]],[36,37,["G1722"]],[37,38,["G848"]],[38,39,["G5495"]]]},{"k":30799,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,5,["G5456"]],[5,6,["G1722"]],[6,8,["G3319"]],[8,10,["G3588"]],[10,11,["G5064"]],[11,12,["G2226"]],[12,13,["G3004"]],[13,15,["G5518"]],[15,17,["G4621"]],[17,20,["G1220"]],[20,21,["G2532"]],[21,22,["G5140"]],[22,23,["G5518"]],[23,25,["G2915"]],[25,28,["G1220"]],[28,29,["G2532"]],[29,32,["G91"]],[32,33,["G3361"]],[33,34,["G3588"]],[34,35,["G1637"]],[35,36,["G2532"]],[36,37,["G3588"]],[37,38,["G3631"]]]},{"k":30800,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G455"]],[5,6,["G3588"]],[6,7,["G5067"]],[7,8,["G4973"]],[8,10,["G191"]],[10,12,["G5456"]],[12,14,["G3588"]],[14,15,["G5067"]],[15,16,["G2226"]],[16,17,["G3004"]],[17,18,["G2064"]],[18,19,["G2532"]],[19,20,["G991"]]]},{"k":30801,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G2532"]],[4,5,["G2400"]],[5,7,["G5515"]],[7,8,["G2462"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G3686"]],[11,13,["G2521"]],[13,14,["G1883"]],[14,15,["G846"]],[15,17,["G2288"]],[17,18,["G2532"]],[18,19,["G86"]],[19,20,["G190"]],[20,21,["G3326"]],[21,22,["G846"]],[22,23,["G2532"]],[23,24,["G1849"]],[24,26,["G1325"]],[26,28,["G846"]],[28,29,["G1909"]],[29,30,["G3588"]],[30,32,["G5067"]],[32,34,["G3588"]],[34,35,["G1093"]],[35,37,["G615"]],[37,38,["G1722"]],[38,39,["G4501"]],[39,40,["G2532"]],[40,41,["G1722"]],[41,42,["G3042"]],[42,43,["G2532"]],[43,44,["G1722"]],[44,45,["G2288"]],[45,46,["G2532"]],[46,47,["G5259"]],[47,48,["G3588"]],[48,49,["G2342"]],[49,51,["G3588"]],[51,52,["G1093"]]]},{"k":30802,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G455"]],[5,6,["G3588"]],[6,7,["G3991"]],[7,8,["G4973"]],[8,10,["G1492"]],[10,11,["G5270"]],[11,12,["G3588"]],[12,13,["G2379"]],[13,14,["G3588"]],[14,15,["G5590"]],[15,20,["G4969"]],[20,21,["G1223"]],[21,22,["G3588"]],[22,23,["G3056"]],[23,25,["G2316"]],[25,26,["G2532"]],[26,27,["G1223"]],[27,28,["G3588"]],[28,29,["G3141"]],[29,30,["G3739"]],[30,32,["G2192"]]]},{"k":30803,"v":[[0,1,["G2532"]],[1,3,["G2896"]],[3,6,["G3173"]],[6,7,["G5456"]],[7,8,["G3004"]],[8,10,["G2193","G4219"]],[10,12,["G1203"]],[12,13,["G40"]],[13,14,["G2532"]],[14,15,["G228"]],[15,18,["G3756"]],[18,19,["G2919"]],[19,20,["G2532"]],[20,21,["G1556"]],[21,22,["G2257"]],[22,23,["G129"]],[23,24,["G575"]],[24,27,["G2730"]],[27,28,["G1909"]],[28,29,["G3588"]],[29,30,["G1093"]]]},{"k":30804,"v":[[0,1,["G2532"]],[1,2,["G3022"]],[2,3,["G4749"]],[3,5,["G1325"]],[5,10,["G1538"]],[10,11,["G2532"]],[11,14,["G4483"]],[14,16,["G846"]],[16,17,["G2443"]],[17,20,["G373"]],[20,21,["G2089"]],[21,24,["G3398"]],[24,25,["G5550"]],[25,26,["G2193","G3757"]],[26,27,["G848"]],[27,28,["G4889"]],[28,29,["G2532"]],[29,30,["G2532"]],[30,31,["G848"]],[31,32,["G80"]],[32,34,["G3195"]],[34,36,["G615"]],[36,37,["G5613"]],[37,39,["(G2532)","G848"]],[39,42,["G4137"]]]},{"k":30805,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3753"]],[4,7,["G455"]],[7,8,["G3588"]],[8,9,["G1623"]],[9,10,["G4973"]],[10,11,["G2532"]],[11,12,["G2400"]],[12,14,["G1096"]],[14,16,["G3173"]],[16,17,["G4578"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G2246"]],[20,21,["G1096"]],[21,22,["G3189"]],[22,23,["G5613"]],[23,24,["G4526"]],[24,26,["G5155"]],[26,27,["G2532"]],[27,28,["G3588"]],[28,29,["G4582"]],[29,30,["G1096"]],[30,31,["G5613"]],[31,32,["G129"]]]},{"k":30806,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G792"]],[3,5,["G3772"]],[5,6,["G4098"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G1093"]],[9,11,["G5613"]],[11,14,["G4808"]],[14,15,["G906"]],[15,16,["G848"]],[16,18,["G3653"]],[18,22,["G4579"]],[22,23,["G5259"]],[23,25,["G3173"]],[25,26,["G417"]]]},{"k":30807,"v":[[0,1,["G2532"]],[1,3,["G3772"]],[3,4,["G673"]],[4,5,["G5613"]],[5,7,["G975"]],[7,12,["G1507"]],[12,13,["G2532"]],[13,14,["G3956"]],[14,15,["G3735"]],[15,16,["G2532"]],[16,17,["G3520"]],[17,19,["G2795"]],[19,21,["G1537"]],[21,22,["G848"]],[22,23,["G5117"]]]},{"k":30808,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G935"]],[3,5,["G3588"]],[5,6,["G1093"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,10,["G3175"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,14,["G4145"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,18,["G5506"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,22,["G1415"]],[22,23,["G2532"]],[23,24,["G3956"]],[24,25,["G1401"]],[25,26,["G2532"]],[26,27,["G3956"]],[27,29,["G1658"]],[29,30,["G2928"]],[30,31,["G1438"]],[31,32,["G1519"]],[32,33,["G3588"]],[33,34,["G4693"]],[34,35,["G2532"]],[35,36,["G1519"]],[36,37,["G3588"]],[37,38,["G4073"]],[38,40,["G3588"]],[40,41,["G3735"]]]},{"k":30809,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,4,["G3588"]],[4,5,["G3735"]],[5,6,["G2532"]],[6,7,["G4073"]],[7,8,["G4098"]],[8,9,["G1909"]],[9,10,["G2248"]],[10,11,["G2532"]],[11,12,["G2928"]],[12,13,["G2248"]],[13,14,["G575"]],[14,16,["G4383"]],[16,20,["G2521"]],[20,21,["G1909"]],[21,22,["G3588"]],[22,23,["G2362"]],[23,24,["G2532"]],[24,25,["G575"]],[25,26,["G3588"]],[26,27,["G3709"]],[27,29,["G3588"]],[29,30,["G721"]]]},{"k":30810,"v":[[0,1,["G3754"]],[1,2,["G3588"]],[2,3,["G3173"]],[3,4,["G2250"]],[4,6,["G848"]],[6,7,["G3709"]],[7,9,["G2064"]],[9,10,["G2532"]],[10,11,["G5101"]],[11,14,["G1410"]],[14,16,["G2476"]]]},{"k":30811,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,4,["G5023"]],[4,6,["G1492"]],[6,7,["G5064"]],[7,8,["G32"]],[8,9,["G2476"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G5064"]],[12,13,["G1137"]],[13,15,["G3588"]],[15,16,["G1093"]],[16,17,["G2902"]],[17,18,["G3588"]],[18,19,["G5064"]],[19,20,["G417"]],[20,22,["G3588"]],[22,23,["G1093"]],[23,24,["G2443"]],[24,26,["G417"]],[26,28,["G3361"]],[28,29,["G4154"]],[29,30,["G1909"]],[30,31,["G3588"]],[31,32,["G1093"]],[32,33,["G3383"]],[33,34,["G1909"]],[34,35,["G3588"]],[35,36,["G2281"]],[36,37,["G3383"]],[37,38,["G1909"]],[38,39,["G3956"]],[39,40,["G1186"]]]},{"k":30812,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G243"]],[4,5,["G32"]],[5,6,["G305"]],[6,7,["G575"]],[7,9,["G395","G2246"]],[9,10,["G2192"]],[10,12,["G4973"]],[12,15,["G2198"]],[15,16,["G2316"]],[16,17,["G2532"]],[17,19,["G2896"]],[19,22,["G3173"]],[22,23,["G5456"]],[23,25,["G3588"]],[25,26,["G5064"]],[26,27,["G32"]],[27,29,["G3739"]],[29,32,["G1325"]],[32,33,["(G846)"]],[33,34,["G91"]],[34,35,["G3588"]],[35,36,["G1093"]],[36,37,["G2532"]],[37,38,["G3588"]],[38,39,["G2281"]]]},{"k":30813,"v":[[0,1,["G3004"]],[1,2,["G91"]],[2,3,["G3361"]],[3,4,["G3588"]],[4,5,["G1093"]],[5,6,["G3383"]],[6,7,["G3588"]],[7,8,["G2281"]],[8,9,["G3383"]],[9,10,["G3588"]],[10,11,["G1186"]],[11,12,["G891","G3757"]],[12,15,["G4972"]],[15,16,["G3588"]],[16,17,["G1401"]],[17,19,["G2257"]],[19,20,["G2316"]],[20,21,["G1909"]],[21,22,["G848"]],[22,23,["G3359"]]]},{"k":30814,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,4,["G3588"]],[4,5,["G706"]],[5,10,["G4972"]],[10,14,["G4972"]],[14,21,["G1540","G5062","G5064","G5505"]],[21,22,["G1537"]],[22,23,["G3956"]],[23,25,["G5443"]],[25,28,["G5207"]],[28,30,["G2474"]]]},{"k":30815,"v":[[0,1,["G1537"]],[1,3,["G5443"]],[3,5,["G2455"]],[5,7,["G4972"]],[7,8,["G1427"]],[8,9,["G5505"]],[9,10,["G1537"]],[10,12,["G5443"]],[12,14,["G4502"]],[14,16,["G4972"]],[16,17,["G1427"]],[17,18,["G5505"]],[18,19,["G1537"]],[19,21,["G5443"]],[21,23,["G1045"]],[23,25,["G4972"]],[25,26,["G1427"]],[26,27,["G5505"]]]},{"k":30816,"v":[[0,1,["G1537"]],[1,3,["G5443"]],[3,5,["G768"]],[5,7,["G4972"]],[7,8,["G1427"]],[8,9,["G5505"]],[9,10,["G1537"]],[10,12,["G5443"]],[12,14,["G3508"]],[14,16,["G4972"]],[16,17,["G1427"]],[17,18,["G5505"]],[18,19,["G1537"]],[19,21,["G5443"]],[21,23,["G3128"]],[23,25,["G4972"]],[25,26,["G1427"]],[26,27,["G5505"]]]},{"k":30817,"v":[[0,1,["G1537"]],[1,3,["G5443"]],[3,5,["G4826"]],[5,7,["G4972"]],[7,8,["G1427"]],[8,9,["G5505"]],[9,10,["G1537"]],[10,12,["G5443"]],[12,14,["G3017"]],[14,16,["G4972"]],[16,17,["G1427"]],[17,18,["G5505"]],[18,19,["G1537"]],[19,21,["G5443"]],[21,23,["G2466"]],[23,25,["G4972"]],[25,26,["G1427"]],[26,27,["G5505"]]]},{"k":30818,"v":[[0,1,["G1537"]],[1,3,["G5443"]],[3,5,["G2194"]],[5,7,["G4972"]],[7,8,["G1427"]],[8,9,["G5505"]],[9,10,["G1537"]],[10,12,["G5443"]],[12,14,["G2501"]],[14,16,["G4972"]],[16,17,["G1427"]],[17,18,["G5505"]],[18,19,["G1537"]],[19,21,["G5443"]],[21,23,["G958"]],[23,25,["G4972"]],[25,26,["G1427"]],[26,27,["G5505"]]]},{"k":30819,"v":[[0,1,["G3326"]],[1,2,["G5023"]],[2,4,["G1492"]],[4,5,["G2532"]],[5,6,["G2400"]],[6,8,["G4183"]],[8,9,["G3793"]],[9,10,["G3739"]],[10,12,["G3762"]],[12,13,["G1410"]],[13,14,["G705","(G846)"]],[14,15,["G1537"]],[15,16,["G3956"]],[16,17,["G1484"]],[17,18,["G2532"]],[18,19,["G5443"]],[19,20,["G2532"]],[20,21,["G2992"]],[21,22,["G2532"]],[22,23,["G1100"]],[23,24,["G2476"]],[24,25,["G1799"]],[25,26,["G3588"]],[26,27,["G2362"]],[27,28,["G2532"]],[28,29,["G1799"]],[29,30,["G3588"]],[30,31,["G721"]],[31,32,["G4016"]],[32,34,["G3022"]],[34,35,["G4749"]],[35,36,["G2532"]],[36,37,["G5404"]],[37,38,["G1722"]],[38,39,["G848"]],[39,40,["G5495"]]]},{"k":30820,"v":[[0,1,["G2532"]],[1,2,["G2896"]],[2,5,["G3173"]],[5,6,["G5456"]],[6,7,["G3004"]],[7,8,["G4991"]],[8,10,["G2257"]],[10,11,["G2316"]],[11,13,["G2521"]],[13,14,["G1909"]],[14,15,["G3588"]],[15,16,["G2362"]],[16,17,["G2532"]],[17,19,["G3588"]],[19,20,["G721"]]]},{"k":30821,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G3588"]],[3,4,["G32"]],[4,5,["G2476"]],[5,7,["G2945"]],[7,8,["G3588"]],[8,9,["G2362"]],[9,10,["G2532"]],[10,12,["G3588"]],[12,13,["G4245"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G5064"]],[16,17,["G2226"]],[17,18,["G2532"]],[18,19,["G4098"]],[19,20,["G1799"]],[20,21,["G3588"]],[21,22,["G2362"]],[22,23,["G1909"]],[23,24,["G848"]],[24,25,["G4383"]],[25,26,["G2532"]],[26,27,["G4352"]],[27,28,["G2316"]]]},{"k":30822,"v":[[0,1,["G3004"]],[1,2,["G281"]],[2,3,["G2129"]],[3,4,["G2532"]],[4,5,["G1391"]],[5,6,["G2532"]],[6,7,["G4678"]],[7,8,["G2532"]],[8,9,["G2169"]],[9,10,["G2532"]],[10,11,["G5092"]],[11,12,["G2532"]],[12,13,["G1411"]],[13,14,["G2532"]],[14,15,["G2479"]],[15,18,["G2257"]],[18,19,["G2316"]],[19,23,["G1519","G165","G165"]],[23,24,["G281"]]]},{"k":30823,"v":[[0,1,["G2532"]],[1,2,["G1520"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G4245"]],[5,6,["G611"]],[6,7,["G3004"]],[7,9,["G3427"]],[9,10,["G5101"]],[10,11,["G1526"]],[11,12,["G3778"]],[12,15,["G4016"]],[15,17,["G3022"]],[17,18,["G4749"]],[18,19,["G2532"]],[19,20,["G4159"]],[20,21,["G2064"]],[21,22,[]]]},{"k":30824,"v":[[0,1,["G2532"]],[1,3,["G2046"]],[3,5,["G846"]],[5,6,["G2962"]],[6,7,["G4771"]],[7,8,["G1492"]],[8,9,["G2532"]],[9,11,["G2036"]],[11,13,["G3427"]],[13,14,["G3778"]],[14,15,["G1526"]],[15,18,["G2064"]],[18,20,["G1537"]],[20,21,["G3173"]],[21,22,["G2347"]],[22,23,["G2532"]],[23,25,["G4150"]],[25,26,["G848"]],[26,27,["G4749"]],[27,28,["G2532"]],[28,31,["G3021","G848"]],[31,32,["G1722"]],[32,33,["G3588"]],[33,34,["G129"]],[34,36,["G3588"]],[36,37,["G721"]]]},{"k":30825,"v":[[0,1,["G1223","G5124"]],[1,2,["G1526"]],[2,4,["G1799"]],[4,5,["G3588"]],[5,6,["G2362"]],[6,8,["G2316"]],[8,9,["G2532"]],[9,10,["G3000"]],[10,11,["G846"]],[11,12,["G2250"]],[12,13,["G2532"]],[13,14,["G3571"]],[14,15,["G1722"]],[15,16,["G848"]],[16,17,["G3485"]],[17,18,["G2532"]],[18,21,["G2521"]],[21,22,["G1909"]],[22,23,["G3588"]],[23,24,["G2362"]],[24,26,["G4637"]],[26,27,["G1909"]],[27,28,["G846"]]]},{"k":30826,"v":[[0,3,["G3983"]],[3,4,["G3756"]],[4,5,["G2089"]],[5,6,["G3761"]],[6,7,["G1372"]],[7,9,["G2089"]],[9,10,["G3761","G3361"]],[10,12,["G3588"]],[12,13,["G2246"]],[13,14,["G4098"]],[14,15,["G1909"]],[15,16,["G846"]],[16,17,["G3761"]],[17,18,["G3956"]],[18,19,["G2738"]]]},{"k":30827,"v":[[0,1,["G3754"]],[1,2,["G3588"]],[2,3,["G721"]],[3,4,["G3588"]],[4,6,["G303"]],[6,8,["G3319"]],[8,10,["G3588"]],[10,11,["G2362"]],[11,13,["G4165"]],[13,14,["G846"]],[14,15,["G2532"]],[15,17,["G3594"]],[17,18,["G846"]],[18,19,["G1909"]],[19,20,["G2198"]],[20,21,["G4077"]],[21,23,["G5204"]],[23,24,["G2532"]],[24,25,["G2316"]],[25,28,["G1813"]],[28,29,["G3956"]],[29,30,["G1144"]],[30,31,["G575"]],[31,32,["G848"]],[32,33,["G3788"]]]},{"k":30828,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,5,["G455"]],[5,6,["G3588"]],[6,7,["G1442"]],[7,8,["G4973"]],[8,10,["G1096"]],[10,11,["G4602"]],[11,12,["G1722"]],[12,13,["G3772"]],[13,14,["G5613"]],[14,20,["G2256"]]]},{"k":30829,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3588"]],[4,5,["G2033"]],[5,6,["G32"]],[6,7,["G3739"]],[7,8,["G2476"]],[8,9,["G1799"]],[9,10,["G2316"]],[10,11,["G2532"]],[11,13,["G846"]],[13,15,["G1325"]],[15,16,["G2033"]],[16,17,["G4536"]]]},{"k":30830,"v":[[0,1,["G2532"]],[1,2,["G243"]],[2,3,["G32"]],[3,4,["G2064"]],[4,5,["G2532"]],[5,6,["G2476"]],[6,7,["G1909"]],[7,8,["G3588"]],[8,9,["G2379"]],[9,10,["G2192"]],[10,12,["G5552"]],[12,13,["G3031"]],[13,14,["G2532"]],[14,17,["G1325"]],[17,19,["G846"]],[19,20,["G4183"]],[20,21,["G2368"]],[21,22,["G2443"]],[22,25,["G1325"]],[25,28,["G3588"]],[28,29,["G4335"]],[29,31,["G3956"]],[31,32,["G40"]],[32,33,["G1909"]],[33,34,["G3588"]],[34,35,["G5552"]],[35,36,["G2379"]],[36,37,["G3588"]],[37,39,["G1799"]],[39,40,["G3588"]],[40,41,["G2362"]]]},{"k":30831,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2586"]],[3,5,["G3588"]],[5,6,["G2368"]],[6,10,["G3588"]],[10,11,["G4335"]],[11,13,["G3588"]],[13,14,["G40"]],[14,16,["G305"]],[16,17,["G1799"]],[17,18,["G2316"]],[18,20,["G1537"]],[20,21,["G3588"]],[21,22,["G32"]],[22,23,["G5495"]]]},{"k":30832,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G32"]],[3,4,["G2983"]],[4,5,["G3588"]],[5,6,["G3031"]],[6,7,["G2532"]],[7,8,["G1072"]],[8,9,["G846"]],[9,10,["G1537"]],[10,11,["G4442"]],[11,13,["G3588"]],[13,14,["G2379"]],[14,15,["G2532"]],[15,16,["G906"]],[16,18,["G1519"]],[18,19,["G3588"]],[19,20,["G1093"]],[20,21,["G2532"]],[21,23,["G1096"]],[23,24,["G5456"]],[24,25,["G2532"]],[25,26,["G1027"]],[26,27,["G2532"]],[27,28,["G796"]],[28,29,["G2532"]],[29,31,["G4578"]]]},{"k":30833,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2033"]],[3,4,["G32"]],[4,6,["G2192"]],[6,7,["G3588"]],[7,8,["G2033"]],[8,9,["G4536"]],[9,10,["G2090"]],[10,11,["G1438"]],[11,12,["G2443"]],[12,13,["G4537"]]]},{"k":30834,"v":[[0,0,["(G2532)"]],[0,1,["G3588"]],[1,2,["G4413"]],[2,3,["G32"]],[3,4,["G4537"]],[4,5,["G2532"]],[5,7,["G1096"]],[7,8,["G5464"]],[8,9,["G2532"]],[9,10,["G4442"]],[10,11,["G3396"]],[11,13,["G129"]],[13,14,["G2532"]],[14,17,["G906"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G1093"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,24,["G5154"]],[24,26,["G1186"]],[26,29,["G2618"]],[29,30,["G2532"]],[30,31,["G3956"]],[31,32,["G5515"]],[32,33,["G5528"]],[33,36,["G2618"]]]},{"k":30835,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1208"]],[3,4,["G32"]],[4,5,["G4537"]],[5,6,["G2532"]],[6,9,["G5613"]],[9,11,["G3173"]],[11,12,["G3735"]],[12,13,["G2545"]],[13,15,["G4442"]],[15,17,["G906"]],[17,18,["G1519"]],[18,19,["G3588"]],[19,20,["G2281"]],[20,21,["G2532"]],[21,22,["G3588"]],[22,24,["G5154"]],[24,26,["G3588"]],[26,27,["G2281"]],[27,28,["G1096"]],[28,29,["G129"]]]},{"k":30836,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,4,["G5154"]],[4,6,["G3588"]],[6,7,["G2938"]],[7,8,["G3588"]],[8,10,["G1722"]],[10,11,["G3588"]],[11,12,["G2281"]],[12,13,["G2532"]],[13,14,["G2192"]],[14,15,["G5590"]],[15,16,["G599"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,20,["G5154"]],[20,22,["G3588"]],[22,23,["G4143"]],[23,25,["G1311"]]]},{"k":30837,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5154"]],[3,4,["G32"]],[4,5,["G4537"]],[5,6,["G2532"]],[6,8,["G4098"]],[8,10,["G3173"]],[10,11,["G792"]],[11,12,["G1537"]],[12,13,["G3772"]],[13,14,["G2545"]],[14,17,["G5613"]],[17,19,["G2985"]],[19,20,["G2532"]],[20,22,["G4098"]],[22,23,["G1909"]],[23,24,["G3588"]],[24,26,["G5154"]],[26,28,["G3588"]],[28,29,["G4215"]],[29,30,["G2532"]],[30,31,["G1909"]],[31,32,["G3588"]],[32,33,["G4077"]],[33,35,["G5204"]]]},{"k":30838,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3686"]],[3,5,["G3588"]],[5,6,["G792"]],[6,8,["G3004"]],[8,9,["G894"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,13,["G5154"]],[13,15,["G3588"]],[15,16,["G5204"]],[16,17,["G1096"]],[17,18,["(G1519)","G894"]],[18,19,["G2532"]],[19,20,["G4183"]],[20,21,["G444"]],[21,22,["G599"]],[22,23,["G1537"]],[23,24,["G3588"]],[24,25,["G5204"]],[25,26,["G3754"]],[26,30,["G4087"]]]},{"k":30839,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5067"]],[3,4,["G32"]],[4,5,["G4537"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,9,["G5154"]],[9,11,["G3588"]],[11,12,["G2246"]],[12,14,["G4141"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,18,["G5154"]],[18,20,["G3588"]],[20,21,["G4582"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,25,["G5154"]],[25,27,["G3588"]],[27,28,["G792"]],[28,30,["G2443"]],[30,31,["G3588"]],[31,33,["G5154"]],[33,35,["G846"]],[35,37,["G4654"]],[37,38,["G2532"]],[38,39,["G3588"]],[39,40,["G2250"]],[40,41,["G5316"]],[41,42,["G3361"]],[42,46,["G5154"]],[46,48,["G848"]],[48,49,["G2532"]],[49,50,["G3588"]],[50,51,["G3571"]],[51,52,["G3668"]]]},{"k":30840,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G2532"]],[4,5,["G191"]],[5,6,["G1520"]],[6,7,["G32"]],[7,8,["G4072"]],[8,9,["G1722"]],[9,13,["G3321"]],[13,14,["G3004"]],[14,17,["G3173"]],[17,18,["G5456"]],[18,19,["G3759"]],[19,20,["G3759"]],[20,21,["G3759"]],[21,23,["G3588"]],[23,24,["G2730"]],[24,25,["G1909"]],[25,26,["G3588"]],[26,27,["G1093"]],[27,30,["G1537"]],[30,31,["G3588"]],[31,32,["G3062"]],[32,33,["G5456"]],[33,35,["G3588"]],[35,36,["G4536"]],[36,38,["G3588"]],[38,39,["G5140"]],[39,40,["G32"]],[40,43,["G3195"]],[43,45,["G4537"]]]},{"k":30841,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3991"]],[3,4,["G32"]],[4,5,["G4537"]],[5,6,["G2532"]],[6,8,["G1492"]],[8,10,["G792"]],[10,11,["G4098"]],[11,12,["G1537"]],[12,13,["G3772"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G1093"]],[16,17,["G2532"]],[17,19,["G846"]],[19,21,["G1325"]],[21,22,["G3588"]],[22,23,["G2807"]],[23,25,["G3588"]],[25,26,["G12"]],[26,27,["G5421"]]]},{"k":30842,"v":[[0,1,["G2532"]],[1,3,["G455"]],[3,4,["G3588"]],[4,5,["G12"]],[5,6,["G5421"]],[6,7,["G2532"]],[7,9,["G305"]],[9,11,["G2586"]],[11,13,["G1537"]],[13,14,["G3588"]],[14,15,["G5421"]],[15,16,["G5613"]],[16,18,["G2586"]],[18,21,["G3173"]],[21,22,["G2575"]],[22,23,["G2532"]],[23,24,["G3588"]],[24,25,["G2246"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G109"]],[28,30,["G4654"]],[30,33,["G1537"]],[33,34,["G3588"]],[34,35,["G2586"]],[35,37,["G3588"]],[37,38,["G5421"]]]},{"k":30843,"v":[[0,1,["G2532"]],[1,3,["G1831"]],[3,5,["G1537"]],[5,6,["G3588"]],[6,7,["G2586"]],[7,8,["G200"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G1093"]],[11,12,["G2532"]],[12,14,["G846"]],[14,16,["G1325"]],[16,17,["G1849"]],[17,18,["G5613"]],[18,19,["G3588"]],[19,20,["G4651"]],[20,22,["G3588"]],[22,23,["G1093"]],[23,24,["G2192"]],[24,25,["G1849"]]]},{"k":30844,"v":[[0,1,["G2532"]],[1,4,["G4483"]],[4,5,["G846"]],[5,6,["G2443"]],[6,9,["G3361"]],[9,10,["G91"]],[10,11,["G3588"]],[11,12,["G5528"]],[12,14,["G3588"]],[14,15,["G1093"]],[15,16,["G3761"]],[16,17,["G3956"]],[17,19,["G5515"]],[19,20,["G3761"]],[20,21,["G3956"]],[21,22,["G1186"]],[22,23,["G1508"]],[23,24,["G3441"]],[24,26,["G444"]],[26,27,["G3748"]],[27,28,["G2192"]],[28,29,["G3756"]],[29,30,["G3588"]],[30,31,["G4973"]],[31,33,["G2316"]],[33,34,["G1909"]],[34,35,["G848"]],[35,36,["G3359"]]]},{"k":30845,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,6,["G1325"]],[6,7,["G2443"]],[7,10,["G3361"]],[10,11,["G615"]],[11,12,["G846"]],[12,13,["G235"]],[13,14,["G2443"]],[14,18,["G928"]],[18,19,["G4002"]],[19,20,["G3376"]],[20,21,["G2532"]],[21,22,["G848"]],[22,23,["G929"]],[23,27,["G929"]],[27,30,["G4651"]],[30,31,["G3752"]],[31,33,["G3817"]],[33,35,["G444"]]]},{"k":30846,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G1565"]],[3,4,["G2250"]],[4,6,["G444"]],[6,7,["G2212"]],[7,8,["G2288"]],[8,9,["G2532"]],[9,11,["G3756"]],[11,12,["G2147"]],[12,13,["G846"]],[13,14,["G2532"]],[14,16,["G1937"]],[16,18,["G599"]],[18,19,["G2532"]],[19,20,["G2288"]],[20,22,["G5343"]],[22,23,["G575"]],[23,24,["G846"]]]},{"k":30847,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3667"]],[3,5,["G3588"]],[5,6,["G200"]],[6,9,["G3664"]],[9,10,["G2462"]],[10,11,["G2090"]],[11,12,["G1519"]],[12,13,["G4171"]],[13,14,["G2532"]],[14,15,["G1909"]],[15,16,["G848"]],[16,17,["G2776"]],[17,21,["G5613"]],[21,22,["G4735"]],[22,23,["G3664"]],[23,24,["G5557"]],[24,25,["G2532"]],[25,26,["G848"]],[26,27,["G4383"]],[27,29,["G5613"]],[29,31,["G4383"]],[31,33,["G444"]]]},{"k":30848,"v":[[0,1,["G2532"]],[1,3,["G2192"]],[3,4,["G2359"]],[4,5,["G5613"]],[5,7,["G2359"]],[7,9,["G1135"]],[9,10,["G2532"]],[10,11,["G848"]],[11,12,["G3599"]],[12,13,["G2258"]],[13,14,["G5613"]],[14,18,["G3023"]]]},{"k":30849,"v":[[0,1,["G2532"]],[1,3,["G2192"]],[3,4,["G2382"]],[4,7,["G5613"]],[7,8,["G2382"]],[8,10,["G4603"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G5456"]],[13,15,["G848"]],[15,16,["G4420"]],[16,18,["G5613"]],[18,20,["G5456"]],[20,22,["G716"]],[22,24,["G4183"]],[24,25,["G2462"]],[25,26,["G5143"]],[26,27,["G1519"]],[27,28,["G4171"]]]},{"k":30850,"v":[[0,1,["G2532"]],[1,3,["G2192"]],[3,4,["G3769"]],[4,6,["G3664"]],[6,7,["G4651"]],[7,8,["G2532"]],[8,10,["G2258"]],[10,11,["G2759"]],[11,12,["G1722"]],[12,13,["G848"]],[13,14,["G3769"]],[14,15,["G2532"]],[15,16,["G848"]],[16,17,["G1849"]],[17,20,["G91"]],[20,21,["G444"]],[21,22,["G4002"]],[22,23,["G3376"]]]},{"k":30851,"v":[[0,1,["G2532"]],[1,3,["G2192"]],[3,5,["G935"]],[5,6,["G1909"]],[6,7,["G846"]],[7,10,["G3588"]],[10,11,["G32"]],[11,13,["G3588"]],[13,15,["G12"]],[15,16,["G846"]],[16,17,["G3686"]],[17,21,["G1447"]],[21,23,["G3"]],[23,24,["G2532"]],[24,25,["G1722"]],[25,26,["G3588"]],[26,28,["G1673"]],[28,29,["G2192"]],[29,31,["G3686"]],[31,32,["G623"]]]},{"k":30852,"v":[[0,1,["G3391"]],[1,2,["G3759"]],[2,4,["G565"]],[4,6,["G2400"]],[6,8,["G2064"]],[8,9,["G1417"]],[9,10,["G3759"]],[10,11,["G2089"]],[11,12,["G3326","G5023"]]]},{"k":30853,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1623"]],[3,4,["G32"]],[4,5,["G4537"]],[5,6,["G2532"]],[6,8,["G191"]],[8,9,["G3391"]],[9,10,["G5456"]],[10,11,["G1537"]],[11,12,["G3588"]],[12,13,["G5064"]],[13,14,["G2768"]],[14,16,["G3588"]],[16,17,["G5552"]],[17,18,["G2379"]],[18,19,["G3588"]],[19,21,["G1799"]],[21,22,["G2316"]]]},{"k":30854,"v":[[0,1,["G3004"]],[1,3,["G3588"]],[3,4,["G1623"]],[4,5,["G32"]],[5,6,["G3739"]],[6,7,["G2192"]],[7,8,["G3588"]],[8,9,["G4536"]],[9,10,["G3089"]],[10,11,["G3588"]],[11,12,["G5064"]],[12,13,["G32"]],[13,16,["G1210"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G3173"]],[19,20,["G4215"]],[20,21,["G2166"]]]},{"k":30855,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5064"]],[3,4,["G32"]],[4,6,["G3089"]],[6,9,["G2090"]],[9,10,["G1519"]],[10,12,["G5610"]],[12,13,["G2532"]],[13,15,["G2250"]],[15,16,["G2532"]],[16,18,["G3376"]],[18,19,["G2532"]],[19,21,["G1763"]],[21,23,["G2443"]],[23,24,["G615"]],[24,25,["G3588"]],[25,27,["G5154"]],[27,29,["G444"]]]},{"k":30856,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G706"]],[3,6,["G4753"]],[6,8,["G3588"]],[8,9,["G2461"]],[9,14,["G1417","G3461","G3461"]],[14,15,["G2532"]],[15,17,["G191"]],[17,18,["G3588"]],[18,19,["G706"]],[19,21,["G846"]]]},{"k":30857,"v":[[0,1,["G2532"]],[1,2,["G3779"]],[2,4,["G1492"]],[4,5,["G3588"]],[5,6,["G2462"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G3706"]],[9,10,["G2532"]],[10,13,["G2521"]],[13,14,["G1909"]],[14,15,["G846"]],[15,16,["G2192"]],[16,17,["G2382"]],[17,19,["G4447"]],[19,20,["G2532"]],[20,22,["G5191"]],[22,23,["G2532"]],[23,24,["G2306"]],[24,25,["G2532"]],[25,26,["G3588"]],[26,27,["G2776"]],[27,29,["G3588"]],[29,30,["G2462"]],[30,32,["G5613"]],[32,34,["G2776"]],[34,36,["G3023"]],[36,37,["G2532"]],[37,39,["G1537"]],[39,40,["G848"]],[40,41,["G4750"]],[41,42,["G1607"]],[42,43,["G4442"]],[43,44,["G2532"]],[44,45,["G2586"]],[45,46,["G2532"]],[46,47,["G2303"]]]},{"k":30858,"v":[[0,1,["G5259"]],[1,2,["G5130"]],[2,3,["G5140"]],[3,5,["G3588"]],[5,7,["G5154"]],[7,9,["G444"]],[9,10,["G615"]],[10,11,["G1537"]],[11,12,["G3588"]],[12,13,["G4442"]],[13,14,["G2532"]],[14,15,["G1537"]],[15,16,["G3588"]],[16,17,["G2586"]],[17,18,["G2532"]],[18,19,["G1537"]],[19,20,["G3588"]],[20,21,["G2303"]],[21,23,["G1607"]],[23,25,["G1537"]],[25,26,["G848"]],[26,27,["G4750"]]]},{"k":30859,"v":[[0,1,["G1063"]],[1,2,["G848"]],[2,3,["G1849"]],[3,4,["G1526"]],[4,5,["G1722"]],[5,6,["G848"]],[6,7,["G4750"]],[7,8,["G2532"]],[8,9,["G1722"]],[9,10,["G848"]],[10,11,["G3769"]],[11,12,["G1063"]],[12,13,["G848"]],[13,14,["G3769"]],[14,17,["G3664"]],[17,18,["G3789"]],[18,20,["G2192"]],[20,21,["G2776"]],[21,22,["G2532"]],[22,23,["G1722"]],[23,24,["G846"]],[24,27,["G91"]]]},{"k":30860,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3062"]],[3,5,["G3588"]],[5,6,["G444"]],[6,7,["G3739"]],[7,9,["G3756"]],[9,10,["G615"]],[10,11,["G1722"]],[11,12,["G5025"]],[12,13,["G4127"]],[13,16,["G3777","G3340"]],[16,17,["G1537"]],[17,18,["G3588"]],[18,19,["G2041"]],[19,21,["G848"]],[21,22,["G5495"]],[22,23,["G2443"]],[23,26,["G3361"]],[26,27,["G4352"]],[27,28,["G1140"]],[28,29,["G2532"]],[29,30,["G1497"]],[30,32,["G5552"]],[32,33,["G2532"]],[33,34,["G693"]],[34,35,["G2532"]],[35,36,["G5470"]],[36,37,["G2532"]],[37,38,["G3035"]],[38,39,["G2532"]],[39,41,["G3585"]],[41,42,["G3739"]],[42,43,["G3777"]],[43,44,["G1410"]],[44,45,["G991"]],[45,46,["G3777"]],[46,47,["G191"]],[47,48,["G3777"]],[48,49,["G4043"]]]},{"k":30861,"v":[[0,1,["G2532","G3756"]],[1,2,["G3340"]],[2,4,["G1537"]],[4,5,["G848"]],[5,6,["G5408"]],[6,7,["G3777"]],[7,8,["G1537"]],[8,9,["G848"]],[9,10,["G5331"]],[10,11,["G3777"]],[11,12,["G1537"]],[12,13,["G848"]],[13,14,["G4202"]],[14,15,["G3777"]],[15,16,["G1537"]],[16,17,["G848"]],[17,18,["G2809"]]]},{"k":30862,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G243"]],[4,5,["G2478"]],[5,6,["G32"]],[6,8,["G2597"]],[8,9,["G1537"]],[9,10,["G3772"]],[10,12,["G4016"]],[12,14,["G3507"]],[14,15,["G2532"]],[15,17,["G2463"]],[17,19,["G1909"]],[19,21,["G2776"]],[21,22,["G2532"]],[22,23,["G848"]],[23,24,["G4383"]],[24,28,["G5613"]],[28,29,["G3588"]],[29,30,["G2246"]],[30,31,["G2532"]],[31,32,["G848"]],[32,33,["G4228"]],[33,34,["G5613"]],[34,35,["G4769"]],[35,37,["G4442"]]]},{"k":30863,"v":[[0,1,["G2532"]],[1,3,["G2192"]],[3,4,["G1722"]],[4,5,["G848"]],[5,6,["G5495"]],[6,9,["G974"]],[9,10,["G455"]],[10,11,["G2532"]],[11,13,["G5087"]],[13,14,["G848"]],[14,15,["G1188"]],[15,16,["G4228"]],[16,17,["G1909"]],[17,18,["G3588"]],[18,19,["G2281"]],[19,20,["G1161"]],[20,22,["G2176"]],[22,24,["G1909"]],[24,25,["G3588"]],[25,26,["G1093"]]]},{"k":30864,"v":[[0,1,["G2532"]],[1,2,["G2896"]],[2,5,["G3173"]],[5,6,["G5456"]],[6,7,["G5618"]],[7,10,["G3023"]],[10,11,["G3455"]],[11,12,["G2532"]],[12,13,["G3753"]],[13,16,["G2896"]],[16,17,["G2033"]],[17,18,["G1027"]],[18,19,["G2980"]],[19,20,["G1438"]],[20,21,["G5456"]]]},{"k":30865,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,3,["G3588"]],[3,4,["G2033"]],[4,5,["G1027"]],[5,7,["G2980"]],[7,8,["G1438"]],[8,9,["G5456"]],[9,12,["G3195"]],[12,14,["G1125"]],[14,15,["G2532"]],[15,17,["G191"]],[17,19,["G5456"]],[19,20,["G1537"]],[20,21,["G3772"]],[21,22,["G3004"]],[22,24,["G3427"]],[24,26,["G4972"]],[26,29,["G3739"]],[29,30,["G3588"]],[30,31,["G2033"]],[31,32,["G1027"]],[32,33,["G2980"]],[33,34,["G2532"]],[34,35,["G1125"]],[35,36,["G5023"]],[36,37,["G3361"]]]},{"k":30866,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G32"]],[3,4,["G3739"]],[4,6,["G1492"]],[6,7,["G2476"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,10,["G2281"]],[10,11,["G2532"]],[11,12,["G1909"]],[12,13,["G3588"]],[13,14,["G1093"]],[14,16,["G142"]],[16,17,["G848"]],[17,18,["G5495"]],[18,19,["G1519"]],[19,20,["G3772"]]]},{"k":30867,"v":[[0,1,["G2532"]],[1,2,["G3660"]],[2,3,["G1722"]],[3,6,["G2198"]],[6,10,["G1519","G165","G165"]],[10,11,["G3739"]],[11,12,["G2936"]],[12,13,["G3772"]],[13,14,["G2532"]],[14,16,["G3588"]],[16,18,["G1722","G846"]],[18,20,["G2532"]],[20,21,["G3588"]],[21,22,["G1093"]],[22,23,["G2532"]],[23,25,["G3588"]],[25,27,["G1722","G846"]],[27,29,["G2532"]],[29,30,["G3588"]],[30,31,["G2281"]],[31,32,["G2532"]],[32,34,["G3588"]],[34,37,["G1722","G846"]],[37,38,["G3754"]],[38,41,["G2071"]],[41,42,["G5550"]],[42,43,["G3756"]],[43,44,["G2089"]]]},{"k":30868,"v":[[0,1,["G235"]],[1,2,["G1722"]],[2,3,["G3588"]],[3,4,["G2250"]],[4,6,["G3588"]],[6,7,["G5456"]],[7,9,["G3588"]],[9,10,["G1442"]],[10,11,["G32"]],[11,12,["G3752"]],[12,15,["G3195"]],[15,17,["G4537"]],[17,18,["G3588"]],[18,19,["G3466"]],[19,21,["G2316"]],[21,24,["G5055"]],[24,25,["G5613"]],[25,28,["G2097"]],[28,30,["G1438"]],[30,31,["G1401"]],[31,32,["G3588"]],[32,33,["G4396"]]]},{"k":30869,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5456"]],[3,4,["G3739"]],[4,6,["G191"]],[6,7,["G1537"]],[7,8,["G3772"]],[8,9,["G2980"]],[9,10,["G3326"]],[10,11,["G1700"]],[11,12,["G3825"]],[12,13,["G2532"]],[13,14,["G3004"]],[14,15,["G5217"]],[15,17,["G2983"]],[17,18,["G3588"]],[18,20,["G974"]],[20,23,["G455"]],[23,24,["G1722"]],[24,25,["G3588"]],[25,26,["G5495"]],[26,29,["G32"]],[29,31,["G2476"]],[31,32,["G1909"]],[32,33,["G3588"]],[33,34,["G2281"]],[34,35,["G2532"]],[35,36,["G1909"]],[36,37,["G3588"]],[37,38,["G1093"]]]},{"k":30870,"v":[[0,1,["G2532"]],[1,3,["G565"]],[3,4,["G4314"]],[4,5,["G3588"]],[5,6,["G32"]],[6,8,["G3004"]],[8,10,["G846"]],[10,11,["G1325"]],[11,12,["G3427"]],[12,13,["G3588"]],[13,15,["G974"]],[15,16,["G2532"]],[16,18,["G3004"]],[18,20,["G3427"]],[20,21,["G2983"]],[21,23,["G2532"]],[23,26,["G2719","G846"]],[26,27,["G2532"]],[27,33,["G4087","G4675","G2836"]],[33,34,["G235"]],[34,37,["G2071"]],[37,38,["G1722"]],[38,39,["G4675"]],[39,40,["G4750"]],[40,41,["G1099"]],[41,42,["G5613"]],[42,43,["G3192"]]]},{"k":30871,"v":[[0,1,["G2532"]],[1,3,["G2983"]],[3,4,["G3588"]],[4,6,["G974"]],[6,8,["G1537"]],[8,9,["G3588"]],[9,10,["G32"]],[10,11,["G5495"]],[11,12,["G2532"]],[12,15,["G2719","G846"]],[15,16,["G2532"]],[16,18,["G2258"]],[18,19,["G1722"]],[19,20,["G3450"]],[20,21,["G4750"]],[21,22,["G1099"]],[22,23,["G5613"]],[23,24,["G3192"]],[24,25,["G2532"]],[25,28,["G3753"]],[28,31,["G5315"]],[31,32,["G846"]],[32,33,["G3450"]],[33,34,["G2836"]],[34,36,["G4087"]]]},{"k":30872,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G3427"]],[5,6,["G4571"]],[6,7,["G1163"]],[7,8,["G4395"]],[8,9,["G3825"]],[9,10,["G1909"]],[10,11,["G4183"]],[11,12,["G2992"]],[12,13,["G2532"]],[13,14,["G1484"]],[14,15,["G2532"]],[15,16,["G1100"]],[16,17,["G2532"]],[17,18,["G935"]]]},{"k":30873,"v":[[0,1,["G2532"]],[1,4,["G1325"]],[4,5,["G3427"]],[5,7,["G2563"]],[7,9,["G3664"]],[9,11,["G4464"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G32"]],[14,15,["G2476"]],[15,16,["G3004"]],[16,17,["G1453"]],[17,18,["G2532"]],[18,19,["G3354"]],[19,20,["G3588"]],[20,21,["G3485"]],[21,23,["G2316"]],[23,24,["G2532"]],[24,25,["G3588"]],[25,26,["G2379"]],[26,27,["G2532"]],[27,30,["G4352"]],[30,31,["G1722","G846"]]]},{"k":30874,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G833"]],[3,6,["G1855"]],[6,7,["G3588"]],[7,8,["G3485"]],[8,9,["G1544"]],[9,10,["G1854"]],[10,11,["G2532"]],[11,12,["G3354"]],[12,13,["G846"]],[13,14,["G3361"]],[14,15,["G3754"]],[15,18,["G1325"]],[18,20,["G3588"]],[20,21,["G1484"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G40"]],[24,25,["G4172"]],[25,30,["G3961"]],[30,33,["G5062","G1417"]],[33,34,["G3376"]]]},{"k":30875,"v":[[0,1,["G2532"]],[1,4,["G1325"]],[4,7,["G3450"]],[7,8,["G1417"]],[8,9,["G3144"]],[9,10,["G2532"]],[10,13,["G4395"]],[13,19,["G5507","G1250","G1835"]],[19,20,["G2250"]],[20,21,["G4016"]],[21,23,["G4526"]]]},{"k":30876,"v":[[0,1,["G3778"]],[1,2,["G1526"]],[2,3,["G3588"]],[3,4,["G1417"]],[4,6,["G1636"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G1417"]],[9,10,["G3087"]],[10,11,["G2476"]],[11,12,["G1799"]],[12,13,["G3588"]],[13,14,["G2316"]],[14,16,["G3588"]],[16,17,["G1093"]]]},{"k":30877,"v":[[0,1,["G2532"]],[1,4,["G1536"]],[4,5,["G2309"]],[5,6,["G91"]],[6,7,["G846"]],[7,8,["G4442"]],[8,9,["G1607"]],[9,11,["G1537"]],[11,12,["G848"]],[12,13,["G4750"]],[13,14,["G2532"]],[14,15,["G2719"]],[15,16,["G848"]],[16,17,["G2190"]],[17,18,["G2532"]],[18,21,["G1536"]],[21,22,["G2309"]],[22,23,["G91"]],[23,24,["G846"]],[24,25,["G846"]],[25,26,["G1163"]],[26,29,["G3779"]],[29,31,["G615"]]]},{"k":30878,"v":[[0,1,["G3778"]],[1,2,["G2192"]],[2,3,["G1849"]],[3,5,["G2808"]],[5,6,["G3772"]],[6,7,["G2443"]],[7,10,["G1026","G3361","G5205"]],[10,11,["G1722"]],[11,13,["G2250"]],[13,15,["G848"]],[15,16,["G4394"]],[16,17,["G2532"]],[17,18,["G2192"]],[18,19,["G1849"]],[19,20,["G1909"]],[20,21,["G5204"]],[21,23,["G4762"]],[23,24,["G846"]],[24,25,["G1519"]],[25,26,["G129"]],[26,27,["G2532"]],[27,29,["G3960"]],[29,30,["G3588"]],[30,31,["G1093"]],[31,33,["G3956"]],[33,34,["G4127"]],[34,37,["G3740"]],[37,39,["G2309","G1437"]]]},{"k":30879,"v":[[0,1,["G2532"]],[1,2,["G3752"]],[2,6,["G5055"]],[6,7,["G848"]],[7,8,["G3141"]],[8,9,["G3588"]],[9,10,["G2342"]],[10,12,["G305"]],[12,14,["G1537"]],[14,15,["G3588"]],[15,17,["G12"]],[17,19,["G4160"]],[19,20,["G4171"]],[20,21,["G3326"]],[21,22,["G846"]],[22,23,["G2532"]],[23,25,["G3528"]],[25,26,["G846"]],[26,27,["G2532"]],[27,28,["G615"]],[28,29,["G846"]]]},{"k":30880,"v":[[0,1,["G2532"]],[1,2,["G848"]],[2,4,["G4430"]],[4,7,["G1909"]],[7,8,["G3588"]],[8,9,["G4113"]],[9,11,["G3588"]],[11,12,["G3173"]],[12,13,["G4172"]],[13,14,["G3748"]],[14,15,["G4153"]],[15,17,["G2564"]],[17,18,["G4670"]],[18,19,["G2532"]],[19,20,["G125"]],[20,21,["G3699"]],[21,22,["G2532"]],[22,23,["G2257"]],[23,24,["G2962"]],[24,26,["G4717"]]]},{"k":30881,"v":[[0,1,["G2532"]],[1,3,["G1537"]],[3,4,["G3588"]],[4,5,["G2992"]],[5,6,["G2532"]],[6,7,["G5443"]],[7,8,["G2532"]],[8,9,["G1100"]],[9,10,["G2532"]],[10,11,["G1484"]],[11,13,["G991"]],[13,14,["G848"]],[14,16,["G4430"]],[16,17,["G5140"]],[17,18,["G2250"]],[18,19,["G2532"]],[19,21,["G2255"]],[21,22,["G2532"]],[22,24,["G3756"]],[24,25,["G863"]],[25,26,["G848"]],[26,28,["G4430"]],[28,31,["G5087"]],[31,32,["G1519"]],[32,33,["G3418"]]]},{"k":30882,"v":[[0,1,["G2532"]],[1,4,["G2730"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G1093"]],[7,9,["G5463"]],[9,10,["G1909"]],[10,11,["G846"]],[11,12,["G2532"]],[12,14,["G2165"]],[14,15,["G2532"]],[15,17,["G3992"]],[17,18,["G1435"]],[18,21,["G240"]],[21,22,["G3754"]],[22,23,["G3778"]],[23,24,["G1417"]],[24,25,["G4396"]],[25,26,["G928"]],[26,29,["G2730"]],[29,30,["G1909"]],[30,31,["G3588"]],[31,32,["G1093"]]]},{"k":30883,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,3,["G5140"]],[3,4,["G2250"]],[4,5,["G2532"]],[5,7,["G2255"]],[7,9,["G4151"]],[9,11,["G2222"]],[11,12,["G1537"]],[12,13,["G2316"]],[13,14,["G1525"]],[14,15,["G1909"]],[15,16,["G846"]],[16,17,["G2532"]],[17,19,["G2476"]],[19,20,["G1909"]],[20,21,["G848"]],[21,22,["G4228"]],[22,23,["G2532"]],[23,24,["G3173"]],[24,25,["G5401"]],[25,26,["G4098"]],[26,27,["G1909"]],[27,30,["G2334"]],[30,31,["G846"]]]},{"k":30884,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,5,["G3173"]],[5,6,["G5456"]],[6,7,["G1537"]],[7,8,["G3772"]],[8,9,["G3004"]],[9,11,["G846"]],[11,13,["G305"]],[13,14,["G5602"]],[14,15,["G2532"]],[15,18,["G305"]],[18,19,["G1519"]],[19,20,["G3772"]],[20,21,["G1722"]],[21,23,["G3507"]],[23,24,["G2532"]],[24,25,["G848"]],[25,26,["G2190"]],[26,27,["G2334"]],[27,28,["G846"]]]},{"k":30885,"v":[[0,1,["G2532"]],[1,3,["G1565"]],[3,4,["G5610"]],[4,5,["G1096"]],[5,8,["G3173"]],[8,9,["G4578"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,13,["G1182"]],[13,15,["G3588"]],[15,16,["G4172"]],[16,17,["G4098"]],[17,18,["G2532"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G4578"]],[21,23,["G615"]],[23,24,["(G3686)"]],[24,25,["G444"]],[25,26,["G2033"]],[26,27,["G5505"]],[27,28,["G2532"]],[28,29,["G3588"]],[29,30,["G3062"]],[30,31,["G1096"]],[31,32,["G1719"]],[32,33,["G2532"]],[33,34,["G1325"]],[34,35,["G1391"]],[35,37,["G3588"]],[37,38,["G2316"]],[38,40,["G3772"]]]},{"k":30886,"v":[[0,1,["G3588"]],[1,2,["G1208"]],[2,3,["(G3759)"]],[3,5,["G565"]],[5,7,["G2400"]],[7,8,["G3588"]],[8,9,["G5154"]],[9,10,["(G3759)"]],[10,11,["G2064"]],[11,12,["G5035"]]]},{"k":30887,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1442"]],[3,4,["G32"]],[4,5,["G4537"]],[5,6,["G2532"]],[6,8,["G1096"]],[8,9,["G3173"]],[9,10,["G5456"]],[10,11,["G1722"]],[11,12,["G3772"]],[12,13,["G3004"]],[13,14,["G3588"]],[14,15,["G932"]],[15,18,["G2889"]],[18,20,["G1096"]],[20,24,["G2257"]],[24,25,["G2962"]],[25,26,["G2532"]],[26,28,["G848"]],[28,29,["G5547"]],[29,30,["G2532"]],[30,33,["G936"]],[33,37,["G1519","G165","G165"]]]},{"k":30888,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,5,["G5064","G2532","G1501"]],[5,6,["G4245"]],[6,8,["G2521"]],[8,9,["G1799"]],[9,10,["G2316"]],[10,11,["G1909"]],[11,12,["G848"]],[12,13,["G2362"]],[13,14,["G4098"]],[14,15,["G1909"]],[15,16,["G848"]],[16,17,["G4383"]],[17,18,["G2532"]],[18,19,["G4352"]],[19,20,["G2316"]]]},{"k":30889,"v":[[0,1,["G3004"]],[1,5,["G2168","G4671"]],[5,7,["G2962"]],[7,8,["G2316"]],[8,9,["G3841"]],[9,17,["G3801"]],[17,18,["G3754"]],[18,21,["G2983"]],[21,24,["G4675"]],[24,25,["G3173"]],[25,26,["G1411"]],[26,27,["G2532"]],[27,29,["G936"]]]},{"k":30890,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1484"]],[3,5,["G3710"]],[5,6,["G2532"]],[6,7,["G4675"]],[7,8,["G3709"]],[8,10,["G2064"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G2540"]],[13,15,["G3588"]],[15,16,["G3498"]],[16,21,["G2919"]],[21,22,["G2532"]],[22,26,["G1325"]],[26,27,["G3408"]],[27,29,["G4675"]],[29,30,["G1401"]],[30,31,["G3588"]],[31,32,["G4396"]],[32,33,["G2532"]],[33,35,["G3588"]],[35,36,["G40"]],[36,37,["G2532"]],[37,40,["G5399"]],[40,41,["G4675"]],[41,42,["G3686"]],[42,43,["G3398"]],[43,44,["G2532"]],[44,45,["G3173"]],[45,46,["G2532"]],[46,48,["G1311"]],[48,51,["G1311"]],[51,52,["G3588"]],[52,53,["G1093"]]]},{"k":30891,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3485"]],[3,5,["G2316"]],[5,7,["G455"]],[7,8,["G1722"]],[8,9,["G3772"]],[9,10,["G2532"]],[10,13,["G3700"]],[13,14,["G1722"]],[14,15,["G848"]],[15,16,["G3485"]],[16,17,["G3588"]],[17,18,["G2787"]],[18,20,["G848"]],[20,21,["G1242"]],[21,22,["G2532"]],[22,24,["G1096"]],[24,25,["G796"]],[25,26,["G2532"]],[26,27,["G5456"]],[27,28,["G2532"]],[28,29,["G1027"]],[29,30,["G2532"]],[30,32,["G4578"]],[32,33,["G2532"]],[33,34,["G3173"]],[34,35,["G5464"]]]},{"k":30892,"v":[[0,1,["G2532"]],[1,3,["G3700"]],[3,5,["G3173"]],[5,6,["G4592"]],[6,7,["G1722"]],[7,8,["G3772"]],[8,10,["G1135"]],[10,12,["G4016"]],[12,13,["G3588"]],[13,14,["G2246"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G4582"]],[17,18,["G5270"]],[18,19,["G848"]],[19,20,["G4228"]],[20,21,["G2532"]],[21,22,["G1909"]],[22,23,["G848"]],[23,24,["G2776"]],[24,26,["G4735"]],[26,28,["G1427"]],[28,29,["G792"]]]},{"k":30893,"v":[[0,1,["G2532"]],[1,5,["G2192","G1722","G1064"]],[5,6,["G2896"]],[6,9,["G5605"]],[9,10,["G2532"]],[10,11,["G928"]],[11,14,["G5088"]]]},{"k":30894,"v":[[0,1,["G2532"]],[1,3,["G3700"]],[3,4,["G243"]],[4,5,["G4592"]],[5,6,["G1722"]],[6,7,["G3772"]],[7,8,["G2532"]],[8,9,["G2400"]],[9,11,["G3173"]],[11,12,["G4450"]],[12,13,["G1404"]],[13,14,["G2192"]],[14,15,["G2033"]],[15,16,["G2776"]],[16,17,["G2532"]],[17,18,["G1176"]],[18,19,["G2768"]],[19,20,["G2532"]],[20,21,["G2033"]],[21,22,["G1238"]],[22,23,["G1909"]],[23,24,["G848"]],[24,25,["G2776"]]]},{"k":30895,"v":[[0,1,["G2532"]],[1,2,["G848"]],[2,3,["G3769"]],[3,4,["G4951"]],[4,5,["G3588"]],[5,7,["G5154"]],[7,9,["G3588"]],[9,10,["G792"]],[10,12,["G3772"]],[12,13,["G2532"]],[13,15,["G906"]],[15,16,["G846"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,19,["G1093"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G1404"]],[22,23,["G2476"]],[23,24,["G1799"]],[24,25,["G3588"]],[25,26,["G1135"]],[26,29,["G3195"]],[29,32,["G5088"]],[32,34,["G2443"]],[34,35,["G2719"]],[35,36,["G848"]],[36,37,["G5043"]],[37,40,["G3752"]],[40,43,["G5088"]]]},{"k":30896,"v":[[0,1,["G2532"]],[1,4,["G5088"]],[4,6,["G730"]],[6,7,["G5207"]],[7,8,["G3739"]],[8,9,["G3195"]],[9,11,["G4165"]],[11,12,["G3956"]],[12,13,["G1484"]],[13,14,["G1722"]],[14,16,["G4464"]],[16,18,["G4603"]],[18,19,["G2532"]],[19,20,["G848"]],[20,21,["G5043"]],[21,24,["G726"]],[24,25,["G4314"]],[25,26,["G2316"]],[26,27,["G2532"]],[27,29,["G848"]],[29,30,["G2362"]]]},{"k":30897,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1135"]],[3,4,["G5343"]],[4,5,["G1519"]],[5,6,["G3588"]],[6,7,["G2048"]],[7,8,["G3699"]],[8,10,["G2192"]],[10,12,["G5117"]],[12,13,["G2090"]],[13,14,["G575"]],[14,15,["G2316"]],[15,16,["G2443"]],[16,19,["G5142"]],[19,20,["G846"]],[20,21,["G1563"]],[21,27,["G5507","G1250","G1835"]],[27,28,["G2250"]]]},{"k":30898,"v":[[0,1,["G2532"]],[1,3,["G1096"]],[3,4,["G4171"]],[4,5,["G1722"]],[5,6,["G3772"]],[6,7,["G3413"]],[7,8,["G2532"]],[8,9,["G848"]],[9,10,["G32"]],[10,11,["G4170"]],[11,12,["G2596"]],[12,13,["G3588"]],[13,14,["G1404"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G1404"]],[17,18,["G4170"]],[18,19,["G2532"]],[19,20,["G848"]],[20,21,["G32"]]]},{"k":30899,"v":[[0,1,["G2532"]],[1,2,["G2480"]],[2,3,["G3756"]],[3,4,["G3777"]],[4,6,["G848"]],[6,7,["G5117"]],[7,8,["G2147"]],[8,10,["G2089"]],[10,11,["G1722"]],[11,12,["G3772"]]]},{"k":30900,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3173"]],[3,4,["G1404"]],[4,7,["G906"]],[7,9,["G744"]],[9,10,["G3789"]],[10,11,["G2564"]],[11,13,["G1228"]],[13,14,["G2532"]],[14,15,["G4567"]],[15,17,["G4105"]],[17,18,["G3588"]],[18,19,["G3650"]],[19,20,["G3625"]],[20,24,["G906"]],[24,25,["G1519"]],[25,26,["G3588"]],[26,27,["G1093"]],[27,28,["G2532"]],[28,29,["G848"]],[29,30,["G32"]],[30,33,["G906"]],[33,34,["G3326"]],[34,35,["G846"]]]},{"k":30901,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,5,["G3173"]],[5,6,["G5456"]],[6,7,["G3004"]],[7,8,["G1722"]],[8,9,["G3772"]],[9,10,["G737"]],[10,12,["G1096"]],[12,13,["G4991"]],[13,14,["G2532"]],[14,15,["G1411"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G932"]],[18,20,["G2257"]],[20,21,["G2316"]],[21,22,["G2532"]],[22,23,["G3588"]],[23,24,["G1849"]],[24,26,["G848"]],[26,27,["G5547"]],[27,28,["G3754"]],[28,29,["G3588"]],[29,30,["G2725"]],[30,32,["G2257"]],[32,33,["G80"]],[33,36,["G2598"]],[36,38,["G2723"]],[38,39,["G846"]],[39,40,["G1799"]],[40,41,["G2257"]],[41,42,["G2316"]],[42,43,["G2250"]],[43,44,["G2532"]],[44,45,["G3571"]]]},{"k":30902,"v":[[0,1,["G2532"]],[1,2,["G846"]],[2,3,["G3528"]],[3,4,["G846"]],[4,5,["G1223"]],[5,6,["G3588"]],[6,7,["G129"]],[7,9,["G3588"]],[9,10,["G721"]],[10,11,["G2532"]],[11,12,["G1223"]],[12,13,["G3588"]],[13,14,["G3056"]],[14,16,["G848"]],[16,17,["G3141"]],[17,18,["G2532"]],[18,20,["G25"]],[20,21,["G3756"]],[21,22,["G848"]],[22,23,["G5590"]],[23,24,["G891"]],[24,26,["G2288"]]]},{"k":30903,"v":[[0,1,["G1223","G5124"]],[1,2,["G2165"]],[2,4,["G3772"]],[4,5,["G2532"]],[5,8,["G4637"]],[8,9,["G1722"]],[9,10,["G846"]],[10,11,["G3759"]],[11,13,["G3588"]],[13,14,["G2730"]],[14,16,["G3588"]],[16,17,["G1093"]],[17,18,["G2532"]],[18,20,["G3588"]],[20,21,["G2281"]],[21,22,["G3754"]],[22,23,["G3588"]],[23,24,["G1228"]],[24,27,["G2597"]],[27,28,["G4314"]],[28,29,["G5209"]],[29,30,["G2192"]],[30,31,["G3173"]],[31,32,["G2372"]],[32,35,["G1492"]],[35,36,["G3754"]],[36,38,["G2192"]],[38,41,["G3641"]],[41,42,["G2540"]]]},{"k":30904,"v":[[0,1,["G2532"]],[1,2,["G3753"]],[2,3,["G3588"]],[3,4,["G1404"]],[4,5,["G1492"]],[5,6,["G3754"]],[6,9,["G906"]],[9,10,["G1519"]],[10,11,["G3588"]],[11,12,["G1093"]],[12,14,["G1377"]],[14,15,["G3588"]],[15,16,["G1135"]],[16,17,["G3748"]],[17,19,["G5088"]],[19,20,["G3588"]],[20,21,["G730"]],[21,22,[]]]},{"k":30905,"v":[[0,1,["G2532"]],[1,3,["G3588"]],[3,4,["G1135"]],[4,6,["G1325"]],[6,7,["G1417"]],[7,8,["G4420"]],[8,11,["G3173"]],[11,12,["G105"]],[12,13,["G2443"]],[13,16,["G4072"]],[16,17,["G1519"]],[17,18,["G3588"]],[18,19,["G2048"]],[19,20,["G1519"]],[20,21,["G848"]],[21,22,["G5117"]],[22,23,["G3699"]],[23,26,["G5142"]],[26,27,["(G1563)"]],[27,29,["G2540"]],[29,30,["G2532"]],[30,31,["G2540"]],[31,32,["G2532"]],[32,33,["G2255"]],[33,35,["G2540"]],[35,36,["G575"]],[36,38,["G4383"]],[38,40,["G3588"]],[40,41,["G3789"]]]},{"k":30906,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3789"]],[3,4,["G906"]],[4,6,["G1537"]],[6,7,["G848"]],[7,8,["G4750"]],[8,9,["G5204"]],[9,10,["G5613"]],[10,12,["G4215"]],[12,13,["G3694"]],[13,14,["G3588"]],[14,15,["G1135"]],[15,16,["G2443"]],[16,19,["G4160"]],[19,20,["G5026"]],[20,27,["G4216"]]]},{"k":30907,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1093"]],[3,4,["G997"]],[4,5,["G3588"]],[5,6,["G1135"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G1093"]],[9,10,["G455"]],[10,11,["G848"]],[11,12,["G4750"]],[12,13,["G2532"]],[13,15,["G2666"]],[15,16,["G3588"]],[16,17,["G4215"]],[17,18,["G3739"]],[18,19,["G3588"]],[19,20,["G1404"]],[20,21,["G906"]],[21,23,["G1537"]],[23,24,["G848"]],[24,25,["G4750"]]]},{"k":30908,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1404"]],[3,5,["G3710"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G1135"]],[8,9,["G2532"]],[9,10,["G565"]],[10,12,["G4160"]],[12,13,["G4171"]],[13,14,["G3326"]],[14,15,["G3588"]],[15,16,["G3062"]],[16,18,["G848"]],[18,19,["G4690"]],[19,21,["G5083"]],[21,22,["G3588"]],[22,23,["G1785"]],[23,25,["G2316"]],[25,26,["G2532"]],[26,27,["G2192"]],[27,28,["G3588"]],[28,29,["G3141"]],[29,31,["G2424"]],[31,32,["G5547"]]]},{"k":30909,"v":[[0,1,["G2532"]],[1,3,["G2476"]],[3,4,["G1909"]],[4,5,["G3588"]],[5,6,["G285"]],[6,8,["G3588"]],[8,9,["G2281"]],[9,10,["G2532"]],[10,11,["G1492"]],[11,13,["G2342"]],[13,15,["G305"]],[15,17,["G1537"]],[17,18,["G3588"]],[18,19,["G2281"]],[19,20,["G2192"]],[20,21,["G2033"]],[21,22,["G2776"]],[22,23,["G2532"]],[23,24,["G1176"]],[24,25,["G2768"]],[25,26,["G2532"]],[26,27,["G1909"]],[27,28,["G848"]],[28,29,["G2768"]],[29,30,["G1176"]],[30,31,["G1238"]],[31,32,["G2532"]],[32,33,["G1909"]],[33,34,["G848"]],[34,35,["G2776"]],[35,37,["G3686"]],[37,39,["G988"]]]},{"k":30910,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2342"]],[3,4,["G3739"]],[4,6,["G1492"]],[6,7,["G2258"]],[7,9,["G3664"]],[9,11,["G3917"]],[11,12,["G2532"]],[12,13,["G848"]],[13,14,["G4228"]],[14,16,["G5613"]],[16,21,["G715"]],[21,22,["G2532"]],[22,23,["G848"]],[23,24,["G4750"]],[24,25,["G5613"]],[25,27,["G4750"]],[27,30,["G3023"]],[30,31,["G2532"]],[31,32,["G3588"]],[32,33,["G1404"]],[33,34,["G1325"]],[34,35,["G846"]],[35,36,["G848"]],[36,37,["G1411"]],[37,38,["G2532"]],[38,39,["G848"]],[39,40,["G2362"]],[40,41,["G2532"]],[41,42,["G3173"]],[42,43,["G1849"]]]},{"k":30911,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3391"]],[4,6,["G848"]],[6,7,["G2776"]],[7,10,["G5613"]],[10,11,["G4969"]],[11,12,["G1519"]],[12,13,["G2288"]],[13,14,["G2532"]],[14,15,["G848"]],[15,16,["G2288"]],[16,17,["G4127"]],[17,19,["G2323"]],[19,20,["G2532"]],[20,21,["G3650"]],[21,22,["G3588"]],[22,23,["G1093"]],[23,24,["G2296"]],[24,25,["G3694"]],[25,26,["G3588"]],[26,27,["G2342"]]]},{"k":30912,"v":[[0,1,["G2532"]],[1,3,["G4352"]],[3,4,["G3588"]],[4,5,["G1404"]],[5,6,["G3739"]],[6,7,["G1325"]],[7,8,["G1849"]],[8,10,["G3588"]],[10,11,["G2342"]],[11,12,["G2532"]],[12,14,["G4352"]],[14,15,["G3588"]],[15,16,["G2342"]],[16,17,["G3004"]],[17,18,["G5101"]],[18,21,["G3664"]],[21,22,["G3588"]],[22,23,["G2342"]],[23,24,["G5101"]],[24,26,["G1410"]],[26,29,["G4170"]],[29,30,["G3326"]],[30,31,["G846"]]]},{"k":30913,"v":[[0,1,["G2532"]],[1,4,["G1325"]],[4,6,["G846"]],[6,8,["G4750"]],[8,9,["G2980"]],[9,11,["G3173"]],[11,12,["G2532"]],[12,13,["G988"]],[13,14,["G2532"]],[14,15,["G1849"]],[15,17,["G1325"]],[17,19,["G846"]],[19,21,["G4160"]],[21,24,["G5062","G1417"]],[24,25,["G3376"]]]},{"k":30914,"v":[[0,1,["G2532"]],[1,3,["G455"]],[3,4,["G848"]],[4,5,["G4750"]],[5,6,["G1519"]],[6,7,["G988"]],[7,8,["G4314"]],[8,9,["G2316"]],[9,11,["G987"]],[11,12,["G848"]],[12,13,["G3686"]],[13,14,["G2532"]],[14,15,["G848"]],[15,16,["G4633"]],[16,17,["G2532"]],[17,20,["G4637"]],[20,21,["G1722"]],[21,22,["G3772"]]]},{"k":30915,"v":[[0,1,["G2532"]],[1,4,["G1325"]],[4,6,["G846"]],[6,8,["G4160"]],[8,9,["G4171"]],[9,10,["G3326"]],[10,11,["G3588"]],[11,12,["G40"]],[12,13,["G2532"]],[13,15,["G3528"]],[15,16,["G846"]],[16,17,["G2532"]],[17,18,["G1849"]],[18,20,["G1325"]],[20,21,["G846"]],[21,22,["G1909"]],[22,23,["G3956"]],[23,24,["G5443"]],[24,25,["G2532"]],[25,26,["G1100"]],[26,27,["G2532"]],[27,28,["G1484"]]]},{"k":30916,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,4,["G2730"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G1093"]],[7,9,["G4352"]],[9,10,["G846"]],[10,11,["G3739"]],[11,12,["G3686"]],[12,14,["G3756"]],[14,15,["G1125"]],[15,16,["G1722"]],[16,17,["G3588"]],[17,18,["G976"]],[18,20,["G2222"]],[20,22,["G3588"]],[22,23,["G721"]],[23,24,["G4969"]],[24,25,["G575"]],[25,27,["G2602"]],[27,30,["G2889"]]]},{"k":30917,"v":[[0,3,["G1536"]],[3,4,["G2192"]],[4,6,["G3775"]],[6,9,["G191"]]]},{"k":30918,"v":[[0,2,["G1536"]],[2,4,["G4863"]],[4,5,["G161"]],[5,7,["G5217"]],[7,8,["G1519"]],[8,9,["G161"]],[9,11,["G1536"]],[11,12,["G615"]],[12,13,["G1722"]],[13,15,["G3162"]],[15,16,["G1163"]],[16,17,["(G846)"]],[17,18,["G615"]],[18,19,["G1722"]],[19,21,["G3162"]],[21,22,["G5602"]],[22,23,["G2076"]],[23,24,["G3588"]],[24,25,["G5281"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G4102"]],[28,30,["G3588"]],[30,31,["G40"]]]},{"k":30919,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G243"]],[4,5,["G2342"]],[5,7,["G305"]],[7,9,["G1537"]],[9,10,["G3588"]],[10,11,["G1093"]],[11,12,["G2532"]],[12,14,["G2192"]],[14,15,["G1417"]],[15,16,["G2768"]],[16,17,["G3664"]],[17,19,["G721"]],[19,20,["G2532"]],[20,22,["G2980"]],[22,23,["G5613"]],[23,25,["G1404"]]]},{"k":30920,"v":[[0,1,["G2532"]],[1,3,["G4160"]],[3,4,["G3956"]],[4,5,["G3588"]],[5,6,["G1849"]],[6,8,["G3588"]],[8,9,["G4413"]],[9,10,["G2342"]],[10,11,["G1799"]],[11,12,["G846"]],[12,13,["G2532"]],[13,14,["G4160"]],[14,15,["G3588"]],[15,16,["G1093"]],[16,17,["G2532"]],[17,20,["G2730"]],[20,21,["G1722","G846"]],[21,22,["G2443"]],[22,23,["G4352"]],[23,24,["G3588"]],[24,25,["G4413"]],[25,26,["G2342"]],[26,27,["G3739"]],[27,29,["G848","G2288","G4127"]],[29,31,["G2323"]]]},{"k":30921,"v":[[0,1,["G2532"]],[1,3,["G4160"]],[3,4,["G3173"]],[4,5,["G4592"]],[5,7,["G2443"]],[7,8,["(G2532)"]],[8,9,["G4160"]],[9,10,["G4442"]],[10,12,["G2597"]],[12,13,["G1537"]],[13,14,["G3772"]],[14,15,["G1519"]],[15,16,["G3588"]],[16,17,["G1093"]],[17,20,["G1799"]],[20,22,["G444"]]]},{"k":30922,"v":[[0,1,["G2532"]],[1,2,["G4105"]],[2,5,["G2730"]],[5,6,["G1909"]],[6,7,["G3588"]],[7,8,["G1093"]],[8,9,["G1223"]],[9,14,["G4592"]],[14,15,["G3739"]],[15,18,["G1325","G846"]],[18,20,["G4160"]],[20,23,["G1799"]],[23,25,["G3588"]],[25,26,["G2342"]],[26,27,["G3004"]],[27,31,["G2730"]],[31,32,["G1909"]],[32,33,["G3588"]],[33,34,["G1093"]],[34,38,["G4160"]],[38,40,["G1504"]],[40,42,["G3588"]],[42,43,["G2342"]],[43,44,["G3739"]],[44,45,["G2192"]],[45,46,["G3588"]],[46,47,["G4127"]],[47,50,["G3162"]],[50,51,["G2532"]],[51,53,["G2198"]]]},{"k":30923,"v":[[0,1,["G2532"]],[1,4,["G1325","G846"]],[4,6,["G1325"]],[6,7,["G4151"]],[7,9,["G3588"]],[9,10,["G1504"]],[10,12,["G3588"]],[12,13,["G2342"]],[13,14,["G2443"]],[14,15,["G3588"]],[15,16,["G1504"]],[16,18,["G3588"]],[18,19,["G2342"]],[19,21,["G2532"]],[21,22,["G2980"]],[22,23,["G2532"]],[23,24,["G4160"]],[24,28,["G3745","G302"]],[28,30,["G3361"]],[30,31,["G4352"]],[31,32,["G3588"]],[32,33,["G1504"]],[33,35,["G3588"]],[35,36,["G2342"]],[36,37,["(G2443)"]],[37,39,["G615"]]]},{"k":30924,"v":[[0,1,["G2532"]],[1,3,["G4160"]],[3,4,["G3956"]],[4,6,["G3398"]],[6,7,["G2532"]],[7,8,["G3173","(G2532)"]],[8,9,["G4145"]],[9,10,["G2532"]],[10,11,["G4434","(G2532)"]],[11,12,["G1658"]],[12,13,["G2532"]],[13,14,["G1401"]],[14,15,["G2443"]],[15,16,["G1325","G846"]],[16,18,["G5480"]],[18,19,["G1909"]],[19,20,["G848"]],[20,21,["G1188"]],[21,22,["G5495"]],[22,23,["G2228"]],[23,24,["G1909"]],[24,25,["G848"]],[25,26,["G3359"]]]},{"k":30925,"v":[[0,1,["G2532"]],[1,2,["G2443"]],[2,3,["G3361"]],[3,4,["G5100"]],[4,5,["G1410"]],[5,6,["G59"]],[6,7,["G2228"]],[7,8,["G4453"]],[8,9,["G1508"]],[9,12,["G2192"]],[12,13,["G3588"]],[13,14,["G5480"]],[14,15,["G2228"]],[15,16,["G3588"]],[16,17,["G3686"]],[17,19,["G3588"]],[19,20,["G2342"]],[20,21,["G2228"]],[21,22,["G3588"]],[22,23,["G706"]],[23,25,["G848"]],[25,26,["G3686"]]]},{"k":30926,"v":[[0,1,["G5602"]],[1,2,["G2076"]],[2,3,["G4678"]],[3,7,["G2192"]],[7,8,["G3563"]],[8,9,["G5585"]],[9,10,["G3588"]],[10,11,["G706"]],[11,13,["G3588"]],[13,14,["G2342"]],[14,15,["G1063"]],[15,17,["G2076"]],[17,19,["G706"]],[19,22,["G444"]],[22,23,["G2532"]],[23,24,["G848"]],[24,25,["G706"]],[25,31,["G5516"]]]},{"k":30927,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G2532"]],[4,5,["G2400"]],[5,7,["G721"]],[7,8,["G2476"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G3735"]],[11,12,["G4622"]],[12,13,["G2532"]],[13,14,["G3326"]],[14,15,["G846"]],[15,21,["G1540","G5062","G5064","G5505"]],[21,22,["G2192"]],[22,23,["G848"]],[23,24,["G3962"]],[24,25,["G3686"]],[25,26,["G1125"]],[26,27,["G1909"]],[27,28,["G848"]],[28,29,["G3359"]]]},{"k":30928,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,5,["G5456"]],[5,6,["G1537"]],[6,7,["G3772"]],[7,8,["G5613"]],[8,10,["G5456"]],[10,12,["G4183"]],[12,13,["G5204"]],[13,14,["G2532"]],[14,15,["G5613"]],[15,17,["G5456"]],[17,20,["G3173"]],[20,21,["G1027"]],[21,22,["G2532"]],[22,24,["G191"]],[24,26,["G5456"]],[26,28,["G2790"]],[28,29,["G2789"]],[29,30,["G1722"]],[30,31,["G848"]],[31,32,["G2788"]]]},{"k":30929,"v":[[0,1,["G2532"]],[1,3,["G103"]],[3,6,["G5613"]],[6,8,["G2537"]],[8,9,["G5603"]],[9,10,["G1799"]],[10,11,["G3588"]],[11,12,["G2362"]],[12,13,["G2532"]],[13,14,["G1799"]],[14,15,["G3588"]],[15,16,["G5064"]],[16,17,["G2226"]],[17,18,["G2532"]],[18,19,["G3588"]],[19,20,["G4245"]],[20,21,["G2532"]],[21,23,["G3762"]],[23,24,["G1410"]],[24,25,["G3129"]],[25,27,["G5603"]],[27,28,["G1508"]],[28,29,["G3588"]],[29,35,["G1540","G5062","G5064","G5505"]],[35,38,["G59"]],[38,39,["G575"]],[39,40,["G3588"]],[40,41,["G1093"]]]},{"k":30930,"v":[[0,1,["G3778"]],[1,2,["G1526"]],[2,4,["G3739"]],[4,6,["G3756"]],[6,7,["G3435"]],[7,8,["G3326"]],[8,9,["G1135"]],[9,10,["G1063"]],[10,12,["G1526"]],[12,13,["G3933"]],[13,14,["G3778"]],[14,15,["G1526"]],[15,18,["G190"]],[18,19,["G3588"]],[19,20,["G721"]],[20,21,["G3699","G302"]],[21,23,["G5217"]],[23,24,["G3778"]],[24,26,["G59"]],[26,27,["G575"]],[27,29,["G444"]],[29,32,["G536"]],[32,34,["G2316"]],[34,35,["G2532"]],[35,37,["G3588"]],[37,38,["G721"]]]},{"k":30931,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G848"]],[3,4,["G4750"]],[4,6,["G2147"]],[6,7,["G3756"]],[7,8,["G1388"]],[8,9,["G1063"]],[9,11,["G1526"]],[11,13,["G299"]],[13,14,["G1799"]],[14,15,["G3588"]],[15,16,["G2362"]],[16,18,["G2316"]]]},{"k":30932,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G243"]],[4,5,["G32"]],[5,6,["G4072"]],[6,7,["G1722"]],[7,11,["G3321"]],[11,12,["G2192"]],[12,14,["G166"]],[14,15,["G2098"]],[15,17,["G2097"]],[17,21,["G2730"]],[21,22,["G1909"]],[22,23,["G3588"]],[23,24,["G1093"]],[24,25,["G2532"]],[25,27,["G3956"]],[27,28,["G1484"]],[28,29,["G2532"]],[29,30,["G5443"]],[30,31,["G2532"]],[31,32,["G1100"]],[32,33,["G2532"]],[33,34,["G2992"]]]},{"k":30933,"v":[[0,1,["G3004"]],[1,2,["G1722"]],[2,4,["G3173"]],[4,5,["G5456"]],[5,6,["G5399"]],[6,7,["G2316"]],[7,8,["G2532"]],[8,9,["G1325"]],[9,10,["G1391"]],[10,12,["G846"]],[12,13,["G3754"]],[13,14,["G3588"]],[14,15,["G5610"]],[15,17,["G848"]],[17,18,["G2920"]],[18,20,["G2064"]],[20,21,["G2532"]],[21,22,["G4352"]],[22,25,["G4160"]],[25,26,["G3772"]],[26,27,["G2532"]],[27,28,["G1093"]],[28,29,["G2532"]],[29,30,["G3588"]],[30,31,["G2281"]],[31,32,["G2532"]],[32,34,["G4077"]],[34,36,["G5204"]]]},{"k":30934,"v":[[0,1,["G2532"]],[1,3,["G190"]],[3,4,["G243"]],[4,5,["G32"]],[5,6,["G3004"]],[6,7,["G897"]],[7,9,["G4098"]],[9,11,["G4098"]],[11,13,["G3173"]],[13,14,["G4172"]],[14,15,["G3754"]],[15,20,["G4222","G1484"]],[20,21,["G1537"]],[21,22,["G3588"]],[22,23,["G3631"]],[23,25,["G3588"]],[25,26,["G2372"]],[26,28,["G848"]],[28,29,["G4202"]]]},{"k":30935,"v":[[0,1,["G2532"]],[1,3,["G5154"]],[3,4,["G32"]],[4,5,["G190"]],[5,6,["G846"]],[6,7,["G3004"]],[7,8,["G1722"]],[8,10,["G3173"]],[10,11,["G5456"]],[11,14,["G1536"]],[14,15,["G4352"]],[15,16,["G3588"]],[16,17,["G2342"]],[17,18,["G2532"]],[18,19,["G848"]],[19,20,["G1504"]],[20,21,["G2532"]],[21,22,["G2983"]],[22,24,["G5480"]],[24,25,["G1909"]],[25,26,["G848"]],[26,27,["G3359"]],[27,28,["G2228"]],[28,29,["G1909"]],[29,30,["G848"]],[30,31,["G5495"]]]},{"k":30936,"v":[[0,2,["G846"]],[2,3,["(G2532)"]],[3,4,["G4095"]],[4,5,["G1537"]],[5,6,["G3588"]],[6,7,["G3631"]],[7,9,["G3588"]],[9,10,["G2372"]],[10,12,["G2316"]],[12,16,["G2767"]],[16,18,["G194"]],[18,19,["G1722"]],[19,20,["G3588"]],[20,21,["G4221"]],[21,23,["G848"]],[23,24,["G3709"]],[24,25,["G2532"]],[25,29,["G928"]],[29,30,["G1722"]],[30,31,["G4442"]],[31,32,["G2532"]],[32,33,["G2303"]],[33,36,["G1799"]],[36,38,["G3588"]],[38,39,["G40"]],[39,40,["G32"]],[40,41,["G2532"]],[41,44,["G1799"]],[44,46,["G3588"]],[46,47,["G721"]]]},{"k":30937,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2586"]],[3,5,["G848"]],[5,6,["G929"]],[6,8,["G305"]],[8,12,["G1519","G165","G165"]],[12,13,["G2532"]],[13,15,["G2192"]],[15,16,["G3756"]],[16,17,["G372"]],[17,18,["G2250"]],[18,19,["G2532"]],[19,20,["G3571"]],[20,22,["G4352"]],[22,23,["G3588"]],[23,24,["G2342"]],[24,25,["G2532"]],[25,26,["G848"]],[26,27,["G1504"]],[27,28,["G2532"]],[28,29,["G1536"]],[29,30,["G2983"]],[30,31,["G3588"]],[31,32,["G5480"]],[32,34,["G848"]],[34,35,["G3686"]]]},{"k":30938,"v":[[0,1,["G5602"]],[1,2,["G2076"]],[2,4,["G5281"]],[4,6,["G3588"]],[6,7,["G40"]],[7,8,["G5602"]],[8,12,["G5083"]],[12,13,["G3588"]],[13,14,["G1785"]],[14,16,["G2316"]],[16,17,["G2532"]],[17,18,["G3588"]],[18,19,["G4102"]],[19,21,["G2424"]]]},{"k":30939,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,5,["G5456"]],[5,6,["G1537"]],[6,7,["G3772"]],[7,8,["G3004"]],[8,10,["G3427"]],[10,11,["G1125"]],[11,12,["G3107"]],[12,14,["G3588"]],[14,15,["G3498"]],[15,17,["G599"]],[17,18,["G1722"]],[18,20,["G2962"]],[20,22,["G534"]],[22,23,["G3483"]],[23,24,["G3004"]],[24,25,["G3588"]],[25,26,["G4151"]],[26,27,["G2443"]],[27,30,["G373"]],[30,31,["G1537"]],[31,32,["G848"]],[32,33,["G2873"]],[33,34,["G1161"]],[34,35,["G848"]],[35,36,["G2041"]],[36,38,["G190","(G3326)"]],[38,39,["G846"]]]},{"k":30940,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G2532"]],[4,5,["G2400"]],[5,7,["G3022"]],[7,8,["G3507"]],[8,9,["G2532"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G3507"]],[12,14,["G2521"]],[14,16,["G3664"]],[16,18,["G5207"]],[18,20,["G444"]],[20,21,["G2192"]],[21,22,["G1909"]],[22,23,["G848"]],[23,24,["G2776"]],[24,26,["G5552"]],[26,27,["G4735"]],[27,28,["G2532"]],[28,29,["G1722"]],[29,30,["G848"]],[30,31,["G5495"]],[31,33,["G3691"]],[33,34,["G1407"]]]},{"k":30941,"v":[[0,1,["G2532"]],[1,2,["G243"]],[2,3,["G32"]],[3,4,["G1831"]],[4,6,["G1537"]],[6,7,["G3588"]],[7,8,["G3485"]],[8,9,["G2896"]],[9,10,["G1722"]],[10,12,["G3173"]],[12,13,["G5456"]],[13,17,["G2521"]],[17,18,["G1909"]],[18,19,["G3588"]],[19,20,["G3507"]],[20,22,["G3992"]],[22,23,["G4675"]],[23,24,["G1407"]],[24,25,["G2532"]],[25,26,["G2325"]],[26,27,["G3754"]],[27,28,["G3588"]],[28,29,["G5610"]],[29,31,["G2064"]],[31,33,["G4671"]],[33,35,["G2325"]],[35,36,["G3754"]],[36,37,["G3588"]],[37,38,["G2326"]],[38,40,["G3588"]],[40,41,["G1093"]],[41,43,["G3583"]]]},{"k":30942,"v":[[0,1,["G2532"]],[1,4,["G2521"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G3507"]],[7,9,["G906"]],[9,10,["G848"]],[10,11,["G1407"]],[11,12,["G1909"]],[12,13,["G3588"]],[13,14,["G1093"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G1093"]],[17,19,["G2325"]]]},{"k":30943,"v":[[0,1,["G2532"]],[1,2,["G243"]],[2,3,["G32"]],[3,4,["G1831"]],[4,6,["G1537"]],[6,7,["G3588"]],[7,8,["G3485"]],[8,9,["G3588"]],[9,11,["G1722"]],[11,12,["G3772"]],[12,13,["G846"]],[13,14,["G2532"]],[14,15,["G2192"]],[15,17,["G3691"]],[17,18,["G1407"]]]},{"k":30944,"v":[[0,1,["G2532"]],[1,2,["G243"]],[2,3,["G32"]],[3,4,["G1831"]],[4,6,["G1537"]],[6,7,["G3588"]],[7,8,["G2379"]],[8,10,["G2192"]],[10,11,["G1849"]],[11,12,["G1909"]],[12,13,["G4442"]],[13,14,["G2532"]],[14,15,["G5455"]],[15,18,["G3173"]],[18,19,["G2906"]],[19,23,["G2192"]],[23,24,["G3588"]],[24,25,["G3691"]],[25,26,["G1407"]],[26,27,["G3004"]],[27,29,["G3992"]],[29,30,["G4675"]],[30,31,["G3691"]],[31,32,["G1407"]],[32,33,["G2532"]],[33,34,["G5166"]],[34,35,["G3588"]],[35,36,["G1009"]],[36,38,["G3588"]],[38,39,["G288"]],[39,41,["G3588"]],[41,42,["G1093"]],[42,43,["G3754"]],[43,44,["G848"]],[44,45,["G4718"]],[45,48,["G187"]]]},{"k":30945,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G32"]],[3,5,["G906"]],[5,6,["G848"]],[6,7,["G1407"]],[7,8,["G1519"]],[8,9,["G3588"]],[9,10,["G1093"]],[10,11,["G2532"]],[11,12,["G5166"]],[12,13,["G3588"]],[13,14,["G288"]],[14,16,["G3588"]],[16,17,["G1093"]],[17,18,["G2532"]],[18,19,["G906"]],[19,21,["G1519"]],[21,22,["G3588"]],[22,23,["G3173"]],[23,24,["G3025"]],[24,26,["G3588"]],[26,27,["G2372"]],[27,29,["G2316"]]]},{"k":30946,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3025"]],[3,5,["G3961"]],[5,6,["G1854"]],[6,7,["G3588"]],[7,8,["G4172"]],[8,9,["G2532"]],[9,10,["G129"]],[10,11,["G1831"]],[11,13,["G1537"]],[13,14,["G3588"]],[14,15,["G3025"]],[15,17,["G891"]],[17,18,["G3588"]],[18,19,["G2462"]],[19,20,["G5469"]],[20,24,["G575"]],[24,29,["G5507","G1812"]],[29,30,["G4712"]]]},{"k":30947,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G243"]],[4,5,["G4592"]],[5,6,["G1722"]],[6,7,["G3772"]],[7,8,["G3173"]],[8,9,["G2532"]],[9,10,["G2298"]],[10,11,["G2033"]],[11,12,["G32"]],[12,13,["G2192"]],[13,14,["G3588"]],[14,15,["G2033"]],[15,16,["G2078"]],[16,17,["G4127"]],[17,18,["G3754"]],[18,19,["G1722"]],[19,20,["G846"]],[20,23,["G5055"]],[23,24,["G3588"]],[24,25,["G2372"]],[25,27,["G2316"]]]},{"k":30948,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,6,["G5613"]],[6,8,["G2281"]],[8,10,["G5193"]],[10,11,["G3396"]],[11,13,["G4442"]],[13,14,["G2532"]],[14,20,["G3528"]],[20,21,["G1537"]],[21,22,["G3588"]],[22,23,["G2342"]],[23,24,["G2532"]],[24,25,["G1537"]],[25,26,["G848"]],[26,27,["G1504"]],[27,28,["G2532"]],[28,29,["G1537"]],[29,30,["G848"]],[30,31,["G5480"]],[31,33,["G1537"]],[33,34,["G3588"]],[34,35,["G706"]],[35,37,["G848"]],[37,38,["G3686"]],[38,39,["G2476"]],[39,40,["G1909"]],[40,41,["G3588"]],[41,42,["G2281"]],[42,44,["G5193"]],[44,45,["G2192"]],[45,47,["G2788"]],[47,49,["G2316"]]]},{"k":30949,"v":[[0,1,["G2532"]],[1,3,["G103"]],[3,4,["G3588"]],[4,5,["G5603"]],[5,7,["G3475"]],[7,8,["G3588"]],[8,9,["G1401"]],[9,11,["G2316"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G5603"]],[14,16,["G3588"]],[16,17,["G721"]],[17,18,["G3004"]],[18,19,["G3173"]],[19,20,["G2532"]],[20,21,["G2298"]],[21,23,["G4675"]],[23,24,["G2041"]],[24,25,["G2962"]],[25,26,["G2316"]],[26,27,["G3841"]],[27,28,["G1342"]],[28,29,["G2532"]],[29,30,["G228"]],[30,32,["G4675"]],[32,33,["G3598"]],[33,35,["G935"]],[35,37,["G40"]]]},{"k":30950,"v":[[0,1,["G5101"]],[1,3,["G3364"]],[3,4,["G5399"]],[4,5,["G4571"]],[5,7,["G2962"]],[7,8,["G2532"]],[8,9,["G1392"]],[9,10,["G4675"]],[10,11,["G3686"]],[11,12,["G3754"]],[12,14,["G3441"]],[14,16,["G3741"]],[16,17,["G3754"]],[17,18,["G3956"]],[18,19,["G1484"]],[19,21,["G2240"]],[21,22,["G2532"]],[22,23,["G4352"]],[23,24,["G1799"]],[24,25,["G4675"]],[25,26,["G3754"]],[26,27,["G4675"]],[27,28,["G1345"]],[28,31,["G5319"]]]},{"k":30951,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,3,["G5023"]],[3,5,["G1492"]],[5,6,["G2532"]],[6,7,["G2400"]],[7,8,["G3588"]],[8,9,["G3485"]],[9,11,["G3588"]],[11,12,["G4633"]],[12,14,["G3588"]],[14,15,["G3142"]],[15,16,["G1722"]],[16,17,["G3772"]],[17,19,["G455"]]]},{"k":30952,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2033"]],[3,4,["G32"]],[4,5,["G1831"]],[5,7,["G1537"]],[7,8,["G3588"]],[8,9,["G3485"]],[9,10,["G2192"]],[10,11,["G3588"]],[11,12,["G2033"]],[12,13,["G4127"]],[13,14,["G1746"]],[14,16,["G2513"]],[16,17,["G2532"]],[17,18,["G2986"]],[18,19,["G3043"]],[19,20,["G2532"]],[20,22,["(G4012)"]],[22,23,["G4738"]],[23,24,["G4024"]],[24,26,["G5552"]],[26,27,["G2223"]]]},{"k":30953,"v":[[0,1,["G2532"]],[1,2,["G1520"]],[2,3,["G1537"]],[3,4,["G3588"]],[4,5,["G5064"]],[5,6,["G2226"]],[6,7,["G1325"]],[7,9,["G3588"]],[9,10,["G2033"]],[10,11,["G32"]],[11,12,["G2033"]],[12,13,["G5552"]],[13,14,["G5357"]],[14,15,["G1073"]],[15,17,["G3588"]],[17,18,["G2372"]],[18,20,["G2316"]],[20,22,["G2198"]],[22,26,["G1519","G165","G165"]]]},{"k":30954,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3485"]],[3,5,["G1072"]],[5,7,["G2586"]],[7,8,["G1537"]],[8,9,["G3588"]],[9,10,["G1391"]],[10,12,["G2316"]],[12,13,["G2532"]],[13,14,["G1537"]],[14,15,["G848"]],[15,16,["G1411"]],[16,17,["G2532"]],[17,19,["G3762"]],[19,21,["G1410"]],[21,23,["G1525"]],[23,24,["G1519"]],[24,25,["G3588"]],[25,26,["G3485"]],[26,27,["G891"]],[27,28,["G3588"]],[28,29,["G2033"]],[29,30,["G4127"]],[30,32,["G3588"]],[32,33,["G2033"]],[33,34,["G32"]],[34,36,["G5055"]]]},{"k":30955,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,5,["G3173"]],[5,6,["G5456"]],[6,8,["G1537"]],[8,9,["G3588"]],[9,10,["G3485"]],[10,11,["G3004"]],[11,13,["G3588"]],[13,14,["G2033"]],[14,15,["G32"]],[15,18,["G5217"]],[18,19,["G2532"]],[19,21,["G1632"]],[21,22,["G3588"]],[22,23,["G5357"]],[23,25,["G3588"]],[25,26,["G2372"]],[26,28,["G2316"]],[28,29,["G1519"]],[29,30,["G3588"]],[30,31,["G1093"]]]},{"k":30956,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4413"]],[3,4,["G565"]],[4,5,["G2532"]],[5,7,["G1632"]],[7,8,["G848"]],[8,9,["G5357"]],[9,10,["G1909"]],[10,11,["G3588"]],[11,12,["G1093"]],[12,13,["G2532"]],[13,15,["G1096"]],[15,17,["G2556"]],[17,18,["G2532"]],[18,19,["G4190"]],[19,20,["G1668"]],[20,21,["G1519"]],[21,22,["G3588"]],[22,23,["G444"]],[23,25,["G2192"]],[25,26,["G3588"]],[26,27,["G5480"]],[27,29,["G3588"]],[29,30,["G2342"]],[30,31,["G2532"]],[31,35,["G4352"]],[35,36,["G848"]],[36,37,["G1504"]]]},{"k":30957,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1208"]],[3,4,["G32"]],[4,6,["G1632"]],[6,7,["G848"]],[7,8,["G5357"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G2281"]],[11,12,["G2532"]],[12,14,["G1096"]],[14,15,["G5613"]],[15,17,["G129"]],[17,20,["G3498"]],[20,22,["G2532"]],[22,23,["G3956"]],[23,24,["G2198"]],[24,25,["G5590"]],[25,26,["G599"]],[26,27,["G1722"]],[27,28,["G3588"]],[28,29,["G2281"]]]},{"k":30958,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5154"]],[3,4,["G32"]],[4,6,["G1632"]],[6,7,["G848"]],[7,8,["G5357"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G4215"]],[11,12,["G2532","(G1519)"]],[12,13,["G4077"]],[13,15,["G5204"]],[15,16,["G2532"]],[16,18,["G1096"]],[18,19,["G129"]]]},{"k":30959,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,4,["G3588"]],[4,5,["G32"]],[5,7,["G3588"]],[7,8,["G5204"]],[8,9,["G3004"]],[9,11,["G1488"]],[11,12,["G1342"]],[12,14,["G2962"]],[14,16,["G5607"]],[16,17,["G2532"]],[17,18,["G2258"]],[18,19,["G2532"]],[19,21,["G2071"]],[21,22,["G3754"]],[22,25,["G2919"]],[25,26,["G5023"]]]},{"k":30960,"v":[[0,1,["G3754"]],[1,4,["G1632"]],[4,6,["G129"]],[6,8,["G40"]],[8,9,["G2532"]],[9,10,["G4396"]],[10,11,["G2532"]],[11,14,["G1325"]],[14,15,["G846"]],[15,16,["G129"]],[16,18,["G4095"]],[18,19,["G1063"]],[19,21,["G1526"]],[21,22,["G514"]]]},{"k":30961,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,4,["G243"]],[4,6,["G1537"]],[6,7,["G3588"]],[7,8,["G2379"]],[8,9,["G3004"]],[9,11,["G3483"]],[11,12,["G2962"]],[12,13,["G2316"]],[13,14,["G3841"]],[14,15,["G228"]],[15,16,["G2532"]],[16,17,["G1342"]],[17,19,["G4675"]],[19,20,["G2920"]]]},{"k":30962,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5067"]],[3,4,["G32"]],[4,6,["G1632"]],[6,7,["G848"]],[7,8,["G5357"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G2246"]],[11,12,["G2532"]],[12,15,["G1325"]],[15,17,["G846"]],[17,19,["G2739"]],[19,20,["G444"]],[20,21,["G1722"]],[21,22,["G4442"]]]},{"k":30963,"v":[[0,1,["G2532"]],[1,2,["G444"]],[2,4,["G2739"]],[4,6,["G3173"]],[6,7,["G2738"]],[7,8,["G2532"]],[8,9,["G987"]],[9,10,["G3588"]],[10,11,["G3686"]],[11,13,["G2316"]],[13,15,["G2192"]],[15,16,["G1849"]],[16,17,["G1909"]],[17,18,["G5025"]],[18,19,["G4127"]],[19,20,["G2532"]],[20,22,["G3340"]],[22,23,["G3756"]],[23,25,["G1325"]],[25,26,["G846"]],[26,27,["G1391"]]]},{"k":30964,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3991"]],[3,4,["G32"]],[4,6,["G1632"]],[6,7,["G848"]],[7,8,["G5357"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G2362"]],[11,13,["G3588"]],[13,14,["G2342"]],[14,15,["G2532"]],[15,16,["G848"]],[16,17,["G932"]],[17,18,["G1096"]],[18,21,["G4656"]],[21,22,["G2532"]],[22,24,["G3145"]],[24,25,["G848"]],[25,26,["G1100"]],[26,27,["G1537"]],[27,28,["G4192"]]]},{"k":30965,"v":[[0,1,["G2532"]],[1,2,["G987"]],[2,3,["G3588"]],[3,4,["G2316"]],[4,6,["G3772"]],[6,8,["G1537"]],[8,9,["G848"]],[9,10,["G4192"]],[10,11,["G2532","(G1537)"]],[11,12,["G848"]],[12,13,["G1668"]],[13,14,["G2532"]],[14,15,["G3340"]],[15,16,["G3756"]],[16,17,["G1537"]],[17,18,["G848"]],[18,19,["G2041"]]]},{"k":30966,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1623"]],[3,4,["G32"]],[4,6,["G1632"]],[6,7,["G848"]],[7,8,["G5357"]],[8,9,["G1909"]],[9,10,["G3588"]],[10,11,["G3173"]],[11,12,["G4215"]],[12,13,["G2166"]],[13,14,["G2532"]],[14,15,["G3588"]],[15,16,["G5204"]],[16,17,["G848"]],[17,20,["G3583"]],[20,21,["G2443"]],[21,22,["G3588"]],[22,23,["G3598"]],[23,25,["G3588"]],[25,26,["G935"]],[26,27,["G575"]],[27,29,["G395","G2246"]],[29,32,["G2090"]]]},{"k":30967,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G5140"]],[4,5,["G169"]],[5,6,["G4151"]],[6,7,["G3664"]],[7,8,["G944"]],[8,11,["G1537"]],[11,12,["G3588"]],[12,13,["G4750"]],[13,15,["G3588"]],[15,16,["G1404"]],[16,17,["G2532"]],[17,19,["G1537"]],[19,20,["G3588"]],[20,21,["G4750"]],[21,23,["G3588"]],[23,24,["G2342"]],[24,25,["G2532"]],[25,27,["G1537"]],[27,28,["G3588"]],[28,29,["G4750"]],[29,31,["G3588"]],[31,33,["G5578"]]]},{"k":30968,"v":[[0,1,["G1063"]],[1,3,["G1526"]],[3,5,["G4151"]],[5,7,["G1142"]],[7,8,["G4160"]],[8,9,["G4592"]],[9,10,["(G3739)"]],[10,12,["G1607"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G935"]],[15,17,["G3588"]],[17,18,["G1093"]],[18,19,["G2532"]],[19,21,["G3588"]],[21,22,["G3650"]],[22,23,["G3625"]],[23,25,["G4863"]],[25,26,["G846"]],[26,27,["G1519"]],[27,28,["G3588"]],[28,29,["G4171"]],[29,31,["G1565"]],[31,32,["G3173"]],[32,33,["G2250"]],[33,35,["G2316"]],[35,36,["G3841"]]]},{"k":30969,"v":[[0,1,["G2400"]],[1,3,["G2064"]],[3,4,["G5613"]],[4,6,["G2812"]],[6,7,["G3107"]],[7,11,["G1127"]],[11,12,["G2532"]],[12,13,["G5083"]],[13,14,["G848"]],[14,15,["G2440"]],[15,16,["G3363"]],[16,18,["G4043"]],[18,19,["G1131"]],[19,20,["G2532"]],[20,22,["G991"]],[22,23,["G848"]],[23,24,["G808"]]]},{"k":30970,"v":[[0,1,["G2532"]],[1,5,["G4863","G846"]],[5,6,["G1519"]],[6,8,["G5117"]],[8,9,["G2564"]],[9,13,["G1447"]],[13,14,["G717"]]]},{"k":30971,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1442"]],[3,4,["G32"]],[4,6,["G1632"]],[6,7,["G848"]],[7,8,["G5357"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G109"]],[11,12,["G2532"]],[12,14,["G1831"]],[14,16,["G3173"]],[16,17,["G5456"]],[17,19,["G575"]],[19,20,["G3588"]],[20,21,["G3485"]],[21,23,["G3772"]],[23,24,["G575"]],[24,25,["G3588"]],[25,26,["G2362"]],[26,27,["G3004"]],[27,30,["G1096"]]]},{"k":30972,"v":[[0,1,["G2532"]],[1,3,["G1096"]],[3,4,["G5456"]],[4,5,["G2532"]],[5,6,["G1027"]],[6,7,["G2532"]],[7,8,["G796"]],[8,9,["G2532"]],[9,11,["G1096"]],[11,13,["G3173"]],[13,14,["G4578"]],[14,16,["G3634"]],[16,17,["G1096"]],[17,18,["G3756"]],[18,19,["G575","G3739"]],[19,20,["G444"]],[20,21,["G1096"]],[21,22,["G1909"]],[22,23,["G3588"]],[23,24,["G1093"]],[24,26,["G5082"]],[26,28,["G4578"]],[28,30,["G3779"]],[30,31,["G3173"]]]},{"k":30973,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3173"]],[3,4,["G4172"]],[4,6,["G1096"]],[6,7,["G1519"]],[7,8,["G5140"]],[8,9,["G3313"]],[9,10,["G2532"]],[10,11,["G3588"]],[11,12,["G4172"]],[12,14,["G3588"]],[14,15,["G1484"]],[15,16,["G4098"]],[16,17,["G2532"]],[17,18,["G3173"]],[18,19,["G897"]],[19,22,["G3415"]],[22,23,["G1799"]],[23,24,["G2316"]],[24,26,["G1325"]],[26,28,["G846"]],[28,29,["G3588"]],[29,30,["G4221"]],[30,32,["G3588"]],[32,33,["G3631"]],[33,36,["G2372"]],[36,38,["G848"]],[38,39,["G3709"]]]},{"k":30974,"v":[[0,1,["G2532"]],[1,2,["G3956"]],[2,3,["G3520"]],[3,5,["G5343"]],[5,6,["G2532"]],[6,8,["G3735"]],[8,10,["G3756"]],[10,11,["G2147"]]]},{"k":30975,"v":[[0,1,["G2532"]],[1,3,["G2597"]],[3,4,["G1909"]],[4,5,["G444"]],[5,7,["G3173"]],[7,8,["G5464"]],[8,10,["G1537"]],[10,11,["G3772"]],[11,14,["G5613"]],[14,19,["G5006"]],[19,20,["G2532"]],[20,21,["G444"]],[21,22,["G987"]],[22,23,["G2316"]],[23,25,["G1537"]],[25,26,["G3588"]],[26,27,["G4127"]],[27,29,["G3588"]],[29,30,["G5464"]],[30,31,["G3754"]],[31,32,["G3588"]],[32,33,["G4127"]],[33,34,["G848"]],[34,35,["G2076"]],[35,36,["G4970"]],[36,37,["G3173"]]]},{"k":30976,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G1520"]],[4,5,["G1537"]],[5,6,["G3588"]],[6,7,["G2033"]],[7,8,["G32"]],[8,10,["G2192"]],[10,11,["G3588"]],[11,12,["G2033"]],[12,13,["G5357"]],[13,14,["G2532"]],[14,15,["G2980"]],[15,16,["G3326"]],[16,17,["G1700"]],[17,18,["G3004"]],[18,20,["G3427"]],[20,22,["G1204"]],[22,25,["G1166"]],[25,27,["G4671"]],[27,28,["G3588"]],[28,29,["G2917"]],[29,31,["G3588"]],[31,32,["G3173"]],[32,33,["G4204"]],[33,35,["G2521"]],[35,36,["G1909"]],[36,37,["G4183"]],[37,38,["G5204"]]]},{"k":30977,"v":[[0,1,["G3326"]],[1,2,["G3739"]],[2,3,["G3588"]],[3,4,["G935"]],[4,6,["G3588"]],[6,7,["G1093"]],[7,10,["G4203"]],[10,11,["G2532"]],[11,12,["G3588"]],[12,13,["G2730"]],[13,15,["G3588"]],[15,16,["G1093"]],[16,20,["G3184"]],[20,21,["G1537"]],[21,22,["G3588"]],[22,23,["G3631"]],[23,25,["G848"]],[25,26,["G4202"]]]},{"k":30978,"v":[[0,1,["G2532"]],[1,5,["G667","G3165"]],[5,6,["G1722"]],[6,8,["G4151"]],[8,9,["G1519"]],[9,11,["G2048"]],[11,12,["G2532"]],[12,14,["G1492"]],[14,16,["G1135"]],[16,17,["G2521"]],[17,18,["G1909"]],[18,21,["G2847"]],[21,22,["G2342"]],[22,23,["G1073"]],[23,25,["G3686"]],[25,27,["G988"]],[27,28,["G2192"]],[28,29,["G2033"]],[29,30,["G2776"]],[30,31,["G2532"]],[31,32,["G1176"]],[32,33,["G2768"]]]},{"k":30979,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1135"]],[3,4,["G2258"]],[4,5,["G4016"]],[5,7,["G4209"]],[7,8,["G2532"]],[8,10,["G2847"]],[10,11,["G2532"]],[11,12,["G5558"]],[12,14,["G5557"]],[14,15,["G2532"]],[15,16,["G5093"]],[16,17,["G3037"]],[17,18,["G2532"]],[18,19,["G3135"]],[19,20,["G2192"]],[20,22,["G5552"]],[22,23,["G4221"]],[23,24,["G1722"]],[24,25,["G848"]],[25,26,["G5495"]],[26,27,["G1073"]],[27,29,["G946"]],[29,30,["G2532"]],[30,31,["G168"]],[31,33,["G848"]],[33,34,["G4202"]]]},{"k":30980,"v":[[0,1,["G2532"]],[1,2,["G1909"]],[2,3,["G848"]],[3,4,["G3359"]],[4,7,["G3686"]],[7,8,["G1125"]],[8,9,["G3466"]],[9,10,["G897"]],[10,11,["G3588"]],[11,12,["G3173"]],[12,13,["G3588"]],[13,14,["G3384"]],[14,16,["G4204"]],[16,17,["G2532"]],[17,18,["G946"]],[18,20,["G3588"]],[20,21,["G1093"]]]},{"k":30981,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3588"]],[4,5,["G1135"]],[5,6,["G3184"]],[6,7,["G1537"]],[7,8,["G3588"]],[8,9,["G129"]],[9,11,["G3588"]],[11,12,["G40"]],[12,13,["G2532"]],[13,14,["G1537"]],[14,15,["G3588"]],[15,16,["G129"]],[16,18,["G3588"]],[18,19,["G3144"]],[19,21,["G2424"]],[21,22,["G2532"]],[22,25,["G1492"]],[25,26,["G846"]],[26,28,["G2296"]],[28,30,["G3173"]],[30,31,["G2295"]]]},{"k":30982,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G32"]],[3,4,["G2036"]],[4,6,["G3427"]],[6,7,["G1302"]],[7,10,["G2296"]],[10,11,["G1473"]],[11,13,["G2046"]],[13,14,["G4671"]],[14,15,["G3588"]],[15,16,["G3466"]],[16,18,["G3588"]],[18,19,["G1135"]],[19,20,["G2532"]],[20,22,["G3588"]],[22,23,["G2342"]],[23,25,["G941"]],[25,26,["G846"]],[26,28,["G2192"]],[28,29,["G3588"]],[29,30,["G2033"]],[30,31,["G2776"]],[31,32,["G2532"]],[32,33,["G1176"]],[33,34,["G2768"]]]},{"k":30983,"v":[[0,1,["G3588"]],[1,2,["G2342"]],[2,3,["G3739"]],[3,5,["G1492"]],[5,6,["G2258"]],[6,7,["G2532"]],[7,8,["G2076"]],[8,9,["G3756"]],[9,10,["G2532"]],[10,11,["G3195"]],[11,12,["G305"]],[12,14,["G1537"]],[14,15,["G3588"]],[15,17,["G12"]],[17,18,["G2532"]],[18,19,["G5217"]],[19,20,["G1519"]],[20,21,["G684"]],[21,22,["G2532"]],[22,25,["G2730"]],[25,26,["G1909"]],[26,27,["G3588"]],[27,28,["G1093"]],[28,30,["G2296"]],[30,31,["G3739"]],[31,32,["G3686"]],[32,34,["G3756"]],[34,35,["G1125"]],[35,36,["G1909"]],[36,37,["G3588"]],[37,38,["G975"]],[38,40,["G2222"]],[40,41,["G575"]],[41,43,["G2602"]],[43,46,["G2889"]],[46,49,["G991"]],[49,50,["G3588"]],[50,51,["G2342"]],[51,52,["G3748"]],[52,53,["G2258"]],[53,54,["G2532"]],[54,55,["G2076"]],[55,56,["G3756"]],[56,58,["G2539"]],[58,59,["G2076"]]]},{"k":30984,"v":[[0,2,["G5602"]],[2,4,["G3588"]],[4,5,["G3563"]],[5,7,["G2192"]],[7,8,["G4678"]],[8,9,["G3588"]],[9,10,["G2033"]],[10,11,["G2776"]],[11,12,["G1526"]],[12,13,["G2033"]],[13,14,["G3735","(G3699)"]],[14,15,["G1909"]],[15,16,["G846"]],[16,17,["G3588"]],[17,18,["G1135"]],[18,19,["G2521"]]]},{"k":30985,"v":[[0,1,["G2532"]],[1,3,["G1526"]],[3,4,["G2033"]],[4,5,["G935"]],[5,6,["G4002"]],[6,8,["G4098"]],[8,9,["G2532"]],[9,10,["G1520"]],[10,11,["G2076"]],[11,13,["G3588"]],[13,14,["G243"]],[14,17,["G3768"]],[17,18,["G2064"]],[18,19,["G2532"]],[19,20,["G3752"]],[20,22,["G2064"]],[22,23,["G846"]],[23,24,["G1163"]],[24,25,["G3306"]],[25,28,["G3641"]]]},{"k":30986,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2342"]],[3,4,["G3739"]],[4,5,["G2258"]],[5,6,["G2532"]],[6,7,["G2076"]],[7,8,["G3756"]],[8,9,["G2532"]],[9,10,["G846"]],[10,11,["G2076"]],[11,13,["G3590"]],[13,14,["G2532"]],[14,15,["G2076"]],[15,16,["G1537"]],[16,17,["G3588"]],[17,18,["G2033"]],[18,19,["G2532"]],[19,20,["G5217"]],[20,21,["G1519"]],[21,22,["G684"]]]},{"k":30987,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1176"]],[3,4,["G2768"]],[4,5,["G3739"]],[5,7,["G1492"]],[7,8,["G1526"]],[8,9,["G1176"]],[9,10,["G935"]],[10,11,["G3748"]],[11,13,["G2983"]],[13,17,["G3768","G932"]],[17,18,["G235"]],[18,19,["G2983"]],[19,20,["G1849"]],[20,21,["G5613"]],[21,22,["G935"]],[22,23,["G3391"]],[23,24,["G5610"]],[24,25,["G3326"]],[25,26,["G3588"]],[26,27,["G2342"]]]},{"k":30988,"v":[[0,1,["G3778"]],[1,2,["G2192"]],[2,3,["G3391"]],[3,4,["G1106"]],[4,5,["G2532"]],[5,7,["G1239"]],[7,8,["G1438"]],[8,9,["G1411"]],[9,10,["G2532"]],[10,11,["G1849"]],[11,13,["G3588"]],[13,14,["G2342"]]]},{"k":30989,"v":[[0,1,["G3778"]],[1,4,["G4170"]],[4,5,["G3326"]],[5,6,["G3588"]],[6,7,["G721"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G721"]],[10,12,["G3528"]],[12,13,["G846"]],[13,14,["G3754"]],[14,16,["G2076"]],[16,17,["G2962"]],[17,19,["G2962"]],[19,20,["G2532"]],[20,21,["G935"]],[21,23,["G935"]],[23,24,["G2532"]],[24,25,["G3588"]],[25,28,["G3326"]],[28,29,["G846"]],[29,31,["G2822"]],[31,32,["G2532"]],[32,33,["G1588"]],[33,34,["G2532"]],[34,35,["G4103"]]]},{"k":30990,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G3427"]],[5,6,["G3588"]],[6,7,["G5204"]],[7,8,["G3739"]],[8,10,["G1492"]],[10,11,["G3757"]],[11,12,["G3588"]],[12,13,["G4204"]],[13,14,["G2521"]],[14,15,["G1526"]],[15,16,["G2992"]],[16,17,["G2532"]],[17,18,["G3793"]],[18,19,["G2532"]],[19,20,["G1484"]],[20,21,["G2532"]],[21,22,["G1100"]]]},{"k":30991,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1176"]],[3,4,["G2768"]],[4,5,["G3739"]],[5,7,["G1492"]],[7,8,["G1909"]],[8,9,["G3588"]],[9,10,["G2342"]],[10,11,["G3778"]],[11,13,["G3404"]],[13,14,["G3588"]],[14,15,["G4204"]],[15,16,["G2532"]],[16,18,["G4160"]],[18,19,["G846"]],[19,20,["G2049"]],[20,21,["G2532"]],[21,22,["G1131"]],[22,23,["G2532"]],[23,25,["G5315"]],[25,26,["G848"]],[26,27,["G4561"]],[27,28,["G2532"]],[28,29,["G2618"]],[29,30,["G846"]],[30,31,["G1722"]],[31,32,["G4442"]]]},{"k":30992,"v":[[0,1,["G1063"]],[1,2,["G2316"]],[2,4,["G1325"]],[4,5,["G1519"]],[5,6,["G848"]],[6,7,["G2588"]],[7,9,["G4160"]],[9,10,["G848"]],[10,11,["G1106"]],[11,12,["G2532"]],[12,14,["G4160","G3391","G1106"]],[14,15,["G2532"]],[15,16,["G1325"]],[16,17,["G848"]],[17,18,["G932"]],[18,20,["G3588"]],[20,21,["G2342"]],[21,22,["G891"]],[22,23,["G3588"]],[23,24,["G4487"]],[24,26,["G2316"]],[26,29,["G5055"]]]},{"k":30993,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1135"]],[3,4,["G3739"]],[4,6,["G1492"]],[6,7,["G2076"]],[7,9,["G3173"]],[9,10,["G4172"]],[10,12,["G2192","G932"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G935"]],[15,17,["G3588"]],[17,18,["G1093"]]]},{"k":30994,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,4,["G5023"]],[4,6,["G1492"]],[6,7,["G243"]],[7,8,["G32"]],[8,10,["G2597"]],[10,11,["G1537"]],[11,12,["G3772"]],[12,13,["G2192"]],[13,14,["G3173"]],[14,15,["G1849"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G1093"]],[18,20,["G5461"]],[20,21,["G1537"]],[21,22,["G848"]],[22,23,["G1391"]]]},{"k":30995,"v":[[0,1,["G2532"]],[1,3,["G2896"]],[3,4,["G1722","G2479"]],[4,7,["G3173"]],[7,8,["G5456"]],[8,9,["G3004"]],[9,10,["G897"]],[10,11,["G3588"]],[11,12,["G3173"]],[12,14,["G4098"]],[14,16,["G4098"]],[16,17,["G2532"]],[17,19,["G1096"]],[19,21,["G2732"]],[21,23,["G1142"]],[23,24,["G2532"]],[24,26,["G5438"]],[26,28,["G3956"]],[28,29,["G169"]],[29,30,["G4151"]],[30,31,["G2532"]],[31,33,["G5438"]],[33,35,["G3956"]],[35,36,["G169"]],[36,37,["G2532"]],[37,38,["G3404"]],[38,39,["G3732"]]]},{"k":30996,"v":[[0,1,["G3754"]],[1,2,["G3956"]],[2,3,["G1484"]],[3,5,["G4095"]],[5,6,["G1537"]],[6,7,["G3588"]],[7,8,["G3631"]],[8,10,["G3588"]],[10,11,["G2372"]],[11,13,["G848"]],[13,14,["G4202"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G935"]],[17,19,["G3588"]],[19,20,["G1093"]],[20,23,["G4203"]],[23,24,["G3326"]],[24,25,["G846"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G1713"]],[28,30,["G3588"]],[30,31,["G1093"]],[31,34,["G4147"]],[34,35,["G1537"]],[35,36,["G3588"]],[36,37,["G1411"]],[37,39,["G846"]],[39,40,["G4764"]]]},{"k":30997,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,4,["G243"]],[4,5,["G5456"]],[5,6,["G1537"]],[6,7,["G3772"]],[7,8,["G3004"]],[8,9,["G1831"]],[9,11,["G1537"]],[11,12,["G846"]],[12,13,["G3450"]],[13,14,["G2992"]],[14,15,["G2443"]],[15,19,["G4790","G3361"]],[19,21,["G848"]],[21,22,["G266"]],[22,23,["G2532"]],[23,24,["G2443"]],[24,26,["G2983"]],[26,27,["G3361"]],[27,28,["G1537"]],[28,29,["G848"]],[29,30,["G4127"]]]},{"k":30998,"v":[[0,1,["G3754"]],[1,2,["G848"]],[2,3,["G266"]],[3,5,["G190"]],[5,6,["G891"]],[6,7,["G3772"]],[7,8,["G2532"]],[8,9,["G2316"]],[9,11,["G3421"]],[11,12,["G848"]],[12,13,["G92"]]]},{"k":30999,"v":[[0,1,["G591"]],[1,2,["G846"]],[2,3,["G2532"]],[3,4,["G5613"]],[4,5,["G846"]],[5,6,["G591"]],[6,7,["G5213"]],[7,8,["G2532"]],[8,9,["G1363"]],[9,11,["G846"]],[11,12,["G1362"]],[12,13,["G2596"]],[13,15,["G848"]],[15,16,["G2041"]],[16,17,["G1722"]],[17,18,["G3588"]],[18,19,["G4221"]],[19,20,["G3739"]],[20,23,["G2767"]],[23,24,["G2767"]],[24,26,["G846"]],[26,27,["G1362"]]]},{"k":31000,"v":[[0,2,["G3745"]],[2,5,["G1392"]],[5,6,["G1438"]],[6,7,["G2532"]],[7,9,["G4763"]],[9,11,["G5118"]],[11,12,["G929"]],[12,13,["G2532"]],[13,14,["G3997"]],[14,15,["G1325"]],[15,16,["G846"]],[16,17,["G3754"]],[17,19,["G3004"]],[19,20,["G1722"]],[20,21,["G848"]],[21,22,["G2588"]],[22,24,["G2521"]],[24,26,["G938"]],[26,27,["G2532"]],[27,28,["G1510"]],[28,29,["G3756"]],[29,30,["G5503"]],[30,31,["G2532"]],[31,33,["G1492"]],[33,34,["G3364"]],[34,35,["G3997"]]]},{"k":31001,"v":[[0,1,["G1223","G5124"]],[1,3,["G848"]],[3,4,["G4127"]],[4,5,["G2240"]],[5,6,["G1722"]],[6,7,["G3391"]],[7,8,["G2250"]],[8,9,["G2288"]],[9,10,["G2532"]],[10,11,["G3997"]],[11,12,["G2532"]],[12,13,["G3042"]],[13,14,["G2532"]],[14,19,["G2618"]],[19,20,["G1722"]],[20,21,["G4442"]],[21,22,["G3754"]],[22,23,["G2478"]],[23,26,["G2962"]],[26,27,["G2316"]],[27,29,["G2919"]],[29,30,["G846"]]]},{"k":31002,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G935"]],[3,5,["G3588"]],[5,6,["G1093"]],[6,10,["G4203"]],[10,11,["G2532"]],[11,13,["G4763"]],[13,14,["G3326"]],[14,15,["G846"]],[15,17,["G2799"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G2875"]],[20,21,["G1909"]],[21,22,["G846"]],[22,23,["G3752"]],[23,26,["G991"]],[26,27,["G3588"]],[27,28,["G2586"]],[28,30,["G848"]],[30,31,["G4451"]]]},{"k":31003,"v":[[0,1,["G2476"]],[1,3,["G575","G3113"]],[3,4,["G1223"]],[4,5,["G3588"]],[5,6,["G5401"]],[6,8,["G848"]],[8,9,["G929"]],[9,10,["G3004"]],[10,11,["G3759"]],[11,12,["G3759"]],[12,14,["G3173"]],[14,15,["G4172"]],[15,16,["G897"]],[16,18,["G2478"]],[18,19,["G4172"]],[19,20,["G3754"]],[20,21,["G1722"]],[21,22,["G3391"]],[22,23,["G5610"]],[23,25,["G4675"]],[25,26,["G2920"]],[26,27,["G2064"]]]},{"k":31004,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1713"]],[3,5,["G3588"]],[5,6,["G1093"]],[6,8,["G2799"]],[8,9,["G2532"]],[9,10,["G3996"]],[10,11,["G1909"]],[11,12,["G846"]],[12,13,["G3754"]],[13,15,["G3762"]],[15,16,["G59"]],[16,17,["G848"]],[17,18,["G1117"]],[18,20,["G3765"]]]},{"k":31005,"v":[[0,2,["G1117"]],[2,4,["G5557"]],[4,5,["G2532"]],[5,6,["G696"]],[6,7,["G2532"]],[7,8,["G5093"]],[8,9,["G3037"]],[9,10,["G2532"]],[10,12,["G3135"]],[12,13,["G2532"]],[13,15,["G1040"]],[15,16,["G2532"]],[16,17,["G4209"]],[17,18,["G2532"]],[18,19,["G4596"]],[19,20,["G2532"]],[20,21,["G2847"]],[21,22,["G2532"]],[22,23,["G3956"]],[23,24,["G2367"]],[24,25,["G3586"]],[25,26,["G2532"]],[26,28,["G3956"]],[28,29,["G4632"]],[29,31,["G1661"]],[31,32,["G2532"]],[32,34,["G3956"]],[34,35,["G4632"]],[35,36,["G1537"]],[36,38,["G5093"]],[38,39,["G3586"]],[39,40,["G2532"]],[40,42,["G5475"]],[42,43,["G2532"]],[43,44,["G4604"]],[44,45,["G2532"]],[45,46,["G3139"]]]},{"k":31006,"v":[[0,1,["G2532"]],[1,2,["G2792"]],[2,3,["G2532"]],[3,4,["G2368"]],[4,5,["G2532"]],[5,6,["G3464"]],[6,7,["G2532"]],[7,8,["G3030"]],[8,9,["G2532"]],[9,10,["G3631"]],[10,11,["G2532"]],[11,12,["G1637"]],[12,13,["G2532"]],[13,15,["G4585"]],[15,16,["G2532"]],[16,17,["G4621"]],[17,18,["G2532"]],[18,19,["G2934"]],[19,20,["G2532"]],[20,21,["G4263"]],[21,22,["G2532"]],[22,23,["G2462"]],[23,24,["G2532"]],[24,25,["G4480"]],[25,26,["G2532"]],[26,27,["G4983"]],[27,28,["G2532"]],[28,29,["G5590"]],[29,31,["G444"]]]},{"k":31007,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3703"]],[3,5,["G4675"]],[5,6,["G5590"]],[6,8,["G1939"]],[8,10,["G565"]],[10,11,["G575"]],[11,12,["G4675"]],[12,13,["G2532"]],[13,15,["G3956"]],[15,18,["G3045"]],[18,19,["G2532"]],[19,20,["G2986"]],[20,22,["G565"]],[22,23,["G575"]],[23,24,["G4675"]],[24,25,["G2532"]],[25,28,["G2147"]],[28,29,["G846"]],[29,33,["G3765","G3364"]]]},{"k":31008,"v":[[0,1,["G3588"]],[1,2,["G1713"]],[2,5,["G5130"]],[5,9,["G4147"]],[9,10,["G575"]],[10,11,["G846"]],[11,13,["G2476"]],[13,15,["G575","G3113"]],[15,16,["G1223"]],[16,17,["G3588"]],[17,18,["G5401"]],[18,20,["G848"]],[20,21,["G929"]],[21,22,["G2799"]],[22,23,["G2532"]],[23,24,["G3996"]]]},{"k":31009,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,3,["G3759"]],[3,4,["G3759"]],[4,6,["G3173"]],[6,7,["G4172"]],[7,10,["G4016"]],[10,13,["G1039"]],[13,14,["G2532"]],[14,15,["G4210"]],[15,16,["G2532"]],[16,17,["G2847"]],[17,18,["G2532"]],[18,19,["G5558"]],[19,20,["G1722"]],[20,21,["G5557"]],[21,22,["G2532"]],[22,23,["G5093"]],[23,24,["G3037"]],[24,25,["G2532"]],[25,26,["G3135"]]]},{"k":31010,"v":[[0,1,["G3754"]],[1,3,["G3391"]],[3,4,["G5610"]],[4,6,["G5118"]],[6,7,["G4149"]],[7,11,["G2049"]],[11,12,["G2532"]],[12,13,["G3956"]],[13,14,["G2942"]],[14,15,["G2532"]],[15,16,["G3956"]],[16,17,["G3588"]],[17,18,["G3658"]],[18,19,["G1909"]],[19,20,["G4143"]],[20,21,["G2532"]],[21,22,["G3492"]],[22,23,["G2532"]],[23,26,["G3745"]],[26,27,["G2038"]],[27,29,["G2281"]],[29,30,["G2476"]],[30,32,["G575","G3113"]]]},{"k":31011,"v":[[0,1,["G2532"]],[1,2,["G2896"]],[2,5,["G3708"]],[5,6,["G3588"]],[6,7,["G2586"]],[7,9,["G848"]],[9,10,["G4451"]],[10,11,["G3004"]],[11,12,["G5101"]],[12,16,["G3664"]],[16,18,["G3173"]],[18,19,["G4172"]]]},{"k":31012,"v":[[0,1,["G2532"]],[1,3,["G906"]],[3,4,["G5522"]],[4,5,["G1909"]],[5,6,["G848"]],[6,7,["G2776"]],[7,8,["G2532"]],[8,9,["G2896"]],[9,10,["G2799"]],[10,11,["G2532"]],[11,12,["G3996"]],[12,13,["G3004"]],[13,14,["G3759"]],[14,15,["G3759"]],[15,17,["G3173"]],[17,18,["G4172"]],[18,19,["G1722","G3739"]],[19,22,["G4147"]],[22,23,["G3956"]],[23,25,["G2192"]],[25,26,["G4143"]],[26,27,["G1722"]],[27,28,["G3588"]],[28,29,["G2281"]],[29,32,["G1537"]],[32,33,["G848"]],[33,34,["G5094"]],[34,35,["G3754"]],[35,37,["G3391"]],[37,38,["G5610"]],[38,42,["G2049"]]]},{"k":31013,"v":[[0,1,["G2165"]],[1,2,["G1909"]],[2,3,["G846"]],[3,5,["G3772"]],[5,6,["G2532"]],[6,8,["G40"]],[8,9,["G652"]],[9,10,["G2532"]],[10,11,["G4396"]],[11,12,["G3754"]],[12,13,["G2316"]],[13,15,["G2919","G2917"]],[15,16,["G5216"]],[16,17,["G1537"]],[17,18,["G846"]]]},{"k":31014,"v":[[0,1,["G2532"]],[1,2,["G1520"]],[2,3,["G2478"]],[3,4,["G32"]],[4,6,["G142"]],[6,8,["G3037"]],[8,9,["G5613"]],[9,11,["G3173"]],[11,12,["G3458"]],[12,13,["G2532"]],[13,14,["G906"]],[14,16,["G1519"]],[16,17,["G3588"]],[17,18,["G2281"]],[18,19,["G3004"]],[19,20,["G3779"]],[20,22,["G3731"]],[22,25,["G3173"]],[25,26,["G4172"]],[26,27,["G897"]],[27,30,["G906"]],[30,31,["G2532"]],[31,34,["G2147"]],[34,38,["G2089","G3364"]]]},{"k":31015,"v":[[0,1,["G2532"]],[1,3,["G5456"]],[3,5,["G2790"]],[5,6,["G2532"]],[6,7,["G3451"]],[7,8,["G2532"]],[8,10,["G834"]],[10,11,["G2532"]],[11,12,["G4538"]],[12,15,["G191"]],[15,19,["G2089","G3364"]],[19,20,["G1722"]],[20,21,["G4671"]],[21,23,["G3956"]],[23,24,["G5079"]],[24,26,["G3956"]],[26,27,["G5078"]],[27,32,["G2147"]],[32,34,["G2089","G3364"]],[34,35,["G1722"]],[35,36,["G4671"]],[36,37,["G2532"]],[37,39,["G5456"]],[39,42,["G3458"]],[42,45,["G191"]],[45,49,["G2089","G3364"]],[49,50,["G1722"]],[50,51,["G4671"]]]},{"k":31016,"v":[[0,1,["G2532"]],[1,3,["G5457"]],[3,6,["G3088"]],[6,8,["G5316"]],[8,12,["G2089","G3364"]],[12,13,["G1722"]],[13,14,["G4671"]],[14,15,["G2532"]],[15,17,["G5456"]],[17,20,["G3566"]],[20,21,["G2532"]],[21,24,["G3565"]],[24,27,["G191"]],[27,31,["G2089","G3364"]],[31,32,["G1722"]],[32,33,["G4671"]],[33,34,["G3754"]],[34,35,["G4675"]],[35,36,["G1713"]],[36,37,["G2258"]],[37,38,["G3588"]],[38,40,["G3175"]],[40,42,["G3588"]],[42,43,["G1093"]],[43,44,["G3754"]],[44,45,["G1722"]],[45,46,["G4675"]],[46,47,["G5331"]],[47,49,["G3956"]],[49,50,["G1484"]],[50,51,["G4105"]]]},{"k":31017,"v":[[0,1,["G2532"]],[1,2,["G1722"]],[2,3,["G846"]],[3,5,["G2147"]],[5,7,["G129"]],[7,9,["G4396"]],[9,10,["G2532"]],[10,12,["G40"]],[12,13,["G2532"]],[13,15,["G3956"]],[15,18,["G4969"]],[18,19,["G1909"]],[19,20,["G3588"]],[20,21,["G1093"]]]},{"k":31018,"v":[[0,1,["G2532"]],[1,2,["G3326"]],[2,4,["G5023"]],[4,6,["G191"]],[6,8,["G3173"]],[8,9,["G5456"]],[9,11,["G4183"]],[11,12,["G3793"]],[12,13,["G1722"]],[13,14,["G3772"]],[14,15,["G3004"]],[15,16,["G239"]],[16,17,["G4991"]],[17,18,["G2532"]],[18,19,["G1391"]],[19,20,["G2532"]],[20,21,["G5092"]],[21,22,["G2532"]],[22,23,["G1411"]],[23,26,["G2962"]],[26,27,["G2257"]],[27,28,["G2316"]]]},{"k":31019,"v":[[0,1,["G3754"]],[1,2,["G228"]],[2,3,["G2532"]],[3,4,["G1342"]],[4,6,["G848"]],[6,7,["G2920"]],[7,8,["G3754"]],[8,11,["G2919"]],[11,12,["G3588"]],[12,13,["G3173"]],[13,14,["G4204"]],[14,15,["G3748"]],[15,17,["G5351"]],[17,18,["G3588"]],[18,19,["G1093"]],[19,20,["G1722"]],[20,21,["G848"]],[21,22,["G4202"]],[22,23,["G2532"]],[23,25,["G1556"]],[25,26,["G3588"]],[26,27,["G129"]],[27,29,["G848"]],[29,30,["G1401"]],[30,31,["G1537"]],[31,32,["G848"]],[32,33,["G5495"]]]},{"k":31020,"v":[[0,1,["G2532"]],[1,2,["G1208"]],[2,4,["G2046"]],[4,5,["G239"]],[5,6,["G2532"]],[6,7,["G848"]],[7,8,["G2586"]],[8,10,["G305"]],[10,14,["G1519","G165","G165"]]]},{"k":31021,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,5,["G5064","G2532","G1501"]],[5,6,["G4245"]],[6,7,["G2532"]],[7,8,["G3588"]],[8,9,["G5064"]],[9,10,["G2226"]],[10,12,["G4098"]],[12,13,["G2532"]],[13,14,["G4352"]],[14,15,["G2316"]],[15,17,["G2521"]],[17,18,["G1909"]],[18,19,["G3588"]],[19,20,["G2362"]],[20,21,["G3004"]],[21,22,["G281"]],[22,23,["G239"]]]},{"k":31022,"v":[[0,1,["G2532"]],[1,3,["G5456"]],[3,4,["G1831"]],[4,6,["G1537"]],[6,7,["G3588"]],[7,8,["G2362"]],[8,9,["G3004"]],[9,10,["G134"]],[10,11,["G2257"]],[11,12,["G2316"]],[12,13,["G3956"]],[13,15,["G848"]],[15,16,["G1401"]],[16,17,["G2532"]],[17,20,["G5399"]],[20,21,["G846"]],[21,22,["G2532"]],[22,23,["G3398"]],[23,24,["G2532"]],[24,25,["G3173"]]]},{"k":31023,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,6,["G5613"]],[6,8,["G5456"]],[8,11,["G4183"]],[11,12,["G3793"]],[12,13,["G2532"]],[13,14,["G5613"]],[14,16,["G5456"]],[16,18,["G4183"]],[18,19,["G5204"]],[19,20,["G2532"]],[20,21,["G5613"]],[21,23,["G5456"]],[23,25,["G2478"]],[25,26,["G1027"]],[26,27,["G3004"]],[27,28,["G239"]],[28,29,["G3754"]],[29,31,["G2962"]],[31,32,["G2316"]],[32,33,["G3841"]],[33,34,["G936"]]]},{"k":31024,"v":[[0,4,["G5463"]],[4,5,["G2532"]],[5,6,["G21"]],[6,7,["G2532"]],[7,8,["G1325"]],[8,9,["G1391"]],[9,11,["G846"]],[11,12,["G3754"]],[12,13,["G3588"]],[13,14,["G1062"]],[14,16,["G3588"]],[16,17,["G721"]],[17,19,["G2064"]],[19,20,["G2532"]],[20,21,["G848"]],[21,22,["G1135"]],[22,26,["G2090","G1438"]]]},{"k":31025,"v":[[0,1,["G2532"]],[1,3,["G846"]],[3,5,["G1325"]],[5,6,["G2443"]],[6,10,["G4016"]],[10,13,["G1039"]],[13,14,["G2513"]],[14,15,["G2532"]],[15,16,["G2986"]],[16,17,["G1063"]],[17,18,["G3588"]],[18,20,["G1039"]],[20,21,["G2076"]],[21,22,["G3588"]],[22,23,["G1345"]],[23,25,["G40"]]]},{"k":31026,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G3427"]],[5,6,["G1125"]],[6,7,["G3107"]],[7,12,["G2564"]],[12,13,["G1519"]],[13,14,["G3588"]],[14,15,["G1062"]],[15,16,["G1173"]],[16,18,["G3588"]],[18,19,["G721"]],[19,20,["G2532"]],[20,22,["G3004"]],[22,24,["G3427"]],[24,25,["G3778"]],[25,26,["G1526"]],[26,27,["G3588"]],[27,28,["G228"]],[28,29,["G3056"]],[29,31,["G2316"]]]},{"k":31027,"v":[[0,1,["G2532"]],[1,3,["G4098"]],[3,4,["G1715"]],[4,5,["G848"]],[5,6,["G4228"]],[6,8,["G4352"]],[8,9,["G846"]],[9,10,["G2532"]],[10,12,["G3004"]],[12,14,["G3427"]],[14,15,["G3708"]],[15,19,["G3361"]],[19,21,["G1510"]],[21,22,["G4675"]],[22,23,["G4889"]],[23,24,["G2532"]],[24,26,["G4675"]],[26,27,["G80"]],[27,29,["G2192"]],[29,30,["G3588"]],[30,31,["G3141"]],[31,33,["G2424"]],[33,34,["G4352"]],[34,35,["G2316"]],[35,36,["G1063"]],[36,37,["G3588"]],[37,38,["G3141"]],[38,40,["G2424"]],[40,42,["G3588"]],[42,43,["G4151"]],[43,45,["G4394"]]]},{"k":31028,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3772"]],[4,5,["G455"]],[5,6,["G2532"]],[6,7,["G2400"]],[7,9,["G3022"]],[9,10,["G2462"]],[10,11,["G2532"]],[11,14,["G2521"]],[14,15,["G1909"]],[15,16,["G846"]],[16,18,["G2564"]],[18,19,["G4103"]],[19,20,["G2532"]],[20,21,["G228"]],[21,22,["G2532"]],[22,23,["G1722"]],[23,24,["G1343"]],[24,27,["G2919"]],[27,28,["G2532"]],[28,30,["G4170"]]]},{"k":31029,"v":[[0,0,["(G1161)"]],[0,1,["G848"]],[1,2,["G3788"]],[2,4,["G5613"]],[4,6,["G5395"]],[6,8,["G4442"]],[8,9,["G2532"]],[9,10,["G1909"]],[10,11,["G848"]],[11,12,["G2776"]],[12,14,["G4183"]],[14,15,["G1238"]],[15,18,["G2192"]],[18,20,["G3686"]],[20,21,["G1125"]],[21,22,["G3739"]],[22,24,["G3762"]],[24,25,["G1492"]],[25,26,["G1508"]],[26,28,["G848"]]]},{"k":31030,"v":[[0,1,["G2532"]],[1,5,["G4016"]],[5,7,["G2440"]],[7,8,["G911"]],[8,10,["G129"]],[10,11,["G2532"]],[11,12,["G848"]],[12,13,["G3686"]],[13,15,["G2564"]],[15,16,["G3588"]],[16,17,["G3056"]],[17,19,["G2316"]]]},{"k":31031,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4753"]],[3,6,["G1722"]],[6,7,["G3772"]],[7,8,["G190"]],[8,9,["G846"]],[9,10,["G1909"]],[10,11,["G3022"]],[11,12,["G2462"]],[12,14,["G1746"]],[14,16,["G1039"]],[16,17,["G3022"]],[17,18,["G2532"]],[18,19,["G2513"]]]},{"k":31032,"v":[[0,1,["G2532"]],[1,3,["G1537"]],[3,4,["G848"]],[4,5,["G4750"]],[5,6,["G1607"]],[6,8,["G3691"]],[8,9,["G4501"]],[9,10,["G2443"]],[10,11,["G1722"]],[11,12,["G846"]],[12,15,["G3960"]],[15,16,["G3588"]],[16,17,["G1484"]],[17,18,["G2532"]],[18,19,["G846"]],[19,21,["G4165"]],[21,22,["G846"]],[22,23,["G1722"]],[23,25,["G4464"]],[25,27,["G4603"]],[27,28,["G2532"]],[28,29,["G846"]],[29,30,["G3961"]],[30,31,["G3588"]],[31,32,["G3025","G3631"]],[32,34,["G3588"]],[34,35,["G2372"]],[35,36,["G2532"]],[36,37,["G3709"]],[37,39,["G3841"]],[39,40,["G2316"]]]},{"k":31033,"v":[[0,1,["G2532"]],[1,3,["G2192"]],[3,4,["G1909"]],[4,6,["G2440"]],[6,7,["G2532"]],[7,8,["G1909"]],[8,9,["G848"]],[9,10,["G3382"]],[10,12,["G3686"]],[12,13,["G1125"]],[13,14,["G935"]],[14,16,["G935"]],[16,17,["G2532"]],[17,18,["G2962"]],[18,20,["G2962"]]]},{"k":31034,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G1520"]],[4,5,["G32"]],[5,6,["G2476"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G2246"]],[9,10,["G2532"]],[10,12,["G2896"]],[12,15,["G3173"]],[15,16,["G5456"]],[16,17,["G3004"]],[17,19,["G3956"]],[19,20,["G3588"]],[20,21,["G3732"]],[21,23,["G4072"]],[23,24,["G1722"]],[24,28,["G3321"]],[28,29,["G1205"]],[29,30,["G2532"]],[30,33,["G4863"]],[33,34,["G1519"]],[34,35,["G3588"]],[35,36,["G1173"]],[36,38,["G3588"]],[38,39,["G3173"]],[39,40,["G2316"]]]},{"k":31035,"v":[[0,1,["G2443"]],[1,4,["G5315"]],[4,6,["G4561"]],[6,8,["G935"]],[8,9,["G2532"]],[9,11,["G4561"]],[11,13,["G5506"]],[13,14,["G2532"]],[14,16,["G4561"]],[16,19,["G2478"]],[19,20,["G2532"]],[20,22,["G4561"]],[22,24,["G2462"]],[24,25,["G2532"]],[25,29,["G2521"]],[29,30,["G1909"]],[30,31,["G846"]],[31,32,["G2532"]],[32,34,["G4561"]],[34,36,["G3956"]],[36,39,["G1658"]],[39,40,["G2532"]],[40,41,["G1401"]],[41,42,["G2532"]],[42,43,["G3398"]],[43,44,["G2532"]],[44,45,["G3173"]]]},{"k":31036,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3588"]],[4,5,["G2342"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G935"]],[8,10,["G3588"]],[10,11,["G1093"]],[11,12,["G2532"]],[12,13,["G848"]],[13,14,["G4753"]],[14,16,["G4863"]],[16,18,["G4160"]],[18,19,["G4171"]],[19,20,["G3326"]],[20,23,["G2521"]],[23,24,["G1909"]],[24,25,["G3588"]],[25,26,["G2462"]],[26,27,["G2532"]],[27,28,["G3326"]],[28,29,["G848"]],[29,30,["G4753"]]]},{"k":31037,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2342"]],[3,5,["G4084"]],[5,6,["G2532"]],[6,7,["G3326"]],[7,8,["G5127"]],[8,9,["G3588"]],[9,11,["G5578"]],[11,13,["G4160"]],[13,14,["G4592"]],[14,15,["G1799"]],[15,16,["G846"]],[16,17,["G1722"]],[17,18,["G3739"]],[18,20,["G4105"]],[20,24,["G2983"]],[24,25,["G3588"]],[25,26,["G5480"]],[26,28,["G3588"]],[28,29,["G2342"]],[29,30,["G2532"]],[30,33,["G4352"]],[33,34,["G848"]],[34,35,["G1504"]],[35,37,["G1417"]],[37,39,["G906"]],[39,40,["G2198"]],[40,41,["G1519"]],[41,43,["G3041"]],[43,45,["G4442"]],[45,46,["G2545"]],[46,47,["G1722"]],[47,48,["G2303"]]]},{"k":31038,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G3062"]],[3,5,["G615"]],[5,6,["G1722"]],[6,7,["G3588"]],[7,8,["G4501"]],[8,12,["G2521"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G2462"]],[15,18,["G1607"]],[18,20,["G1537"]],[20,21,["G848"]],[21,22,["G4750"]],[22,23,["G2532"]],[23,24,["G3956"]],[24,25,["G3588"]],[25,26,["G3732"]],[26,28,["G5526"]],[28,29,["G1537"]],[29,30,["G848"]],[30,31,["G4561"]]]},{"k":31039,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,5,["G32"]],[5,7,["G2597"]],[7,8,["G1537"]],[8,9,["G3772"]],[9,10,["G2192"]],[10,11,["G3588"]],[11,12,["G2807"]],[12,14,["G3588"]],[14,16,["G12"]],[16,17,["G2532"]],[17,19,["G3173"]],[19,20,["G254"]],[20,21,["G1909"]],[21,22,["G848"]],[22,23,["G5495"]]]},{"k":31040,"v":[[0,1,["G2532"]],[1,5,["G2902"]],[5,6,["G3588"]],[6,7,["G1404"]],[7,9,["G744"]],[9,10,["G3789"]],[10,11,["G3739"]],[11,12,["G2076"]],[12,14,["G1228"]],[14,15,["G2532"]],[15,16,["G4567"]],[16,17,["G2532"]],[17,18,["G1210"]],[18,19,["G846"]],[19,21,["G5507"]],[21,22,["G2094"]]]},{"k":31041,"v":[[0,1,["G2532"]],[1,2,["G906"]],[2,3,["G846"]],[3,4,["G1519"]],[4,5,["G3588"]],[5,7,["G12"]],[7,8,["G2532"]],[8,11,["G2808","G846"]],[11,12,["G2532"]],[12,15,["G4972"]],[15,16,["G1883"]],[16,17,["G846"]],[17,18,["G2443"]],[18,21,["G4105"]],[21,22,["G3588"]],[22,23,["G1484"]],[23,24,["G3361"]],[24,25,["G2089"]],[25,26,["G891"]],[26,27,["G3588"]],[27,28,["G5507"]],[28,29,["G2094"]],[29,32,["G5055"]],[32,33,["G2532"]],[33,34,["G3326"]],[34,35,["G5023"]],[35,36,["G846"]],[36,37,["G1163"]],[37,39,["G3089"]],[39,41,["G3398"]],[41,42,["G5550"]]]},{"k":31042,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G2362"]],[4,5,["G2532"]],[5,7,["G2523"]],[7,8,["G1909"]],[8,9,["G846"]],[9,10,["G2532"]],[10,11,["G2917"]],[11,13,["G1325"]],[13,15,["G846"]],[15,16,["G2532"]],[16,19,["G3588"]],[19,20,["G5590"]],[20,25,["G3990"]],[25,26,["G1223"]],[26,27,["G3588"]],[27,28,["G3141"]],[28,30,["G2424"]],[30,31,["G2532"]],[31,32,["G1223"]],[32,33,["G3588"]],[33,34,["G3056"]],[34,36,["G2316"]],[36,37,["G2532"]],[37,38,["G3748"]],[38,40,["G3756"]],[40,41,["G4352"]],[41,42,["G3588"]],[42,43,["G2342"]],[43,44,["G3777"]],[44,45,["G846"]],[45,46,["G1504"]],[46,47,["G2532","G3756"]],[47,49,["G2983"]],[49,51,["G5480"]],[51,52,["G1909"]],[52,53,["G848"]],[53,54,["G3359"]],[54,55,["G2532"]],[55,56,["G1909"]],[56,57,["G848"]],[57,58,["G5495"]],[58,59,["G2532"]],[59,61,["G2198"]],[61,62,["G2532"]],[62,63,["G936"]],[63,64,["G3326"]],[64,65,["G5547"]],[65,67,["G5507"]],[67,68,["G2094"]]]},{"k":31043,"v":[[0,1,["G1161"]],[1,2,["G3588"]],[2,3,["G3062"]],[3,5,["G3588"]],[5,6,["G3498"]],[6,9,["G326","G3756"]],[9,10,["G2193"]],[10,11,["G3588"]],[11,12,["G5507"]],[12,13,["G2094"]],[13,15,["G5055"]],[15,16,["G3778"]],[16,18,["G3588"]],[18,19,["G4413"]],[19,20,["G386"]]]},{"k":31044,"v":[[0,1,["G3107"]],[1,2,["G2532"]],[2,3,["G40"]],[3,7,["G2192"]],[7,8,["G3313"]],[8,9,["G1722"]],[9,10,["G3588"]],[10,11,["G4413"]],[11,12,["G386"]],[12,13,["G1909"]],[13,14,["G5130"]],[14,15,["G3588"]],[15,16,["G1208"]],[16,17,["G2288"]],[17,18,["G2192"]],[18,19,["G3756"]],[19,20,["G1849"]],[20,21,["G235"]],[21,24,["G2071"]],[24,25,["G2409"]],[25,27,["G2316"]],[27,28,["G2532"]],[28,30,["G5547"]],[30,31,["G2532"]],[31,33,["G936"]],[33,34,["G3326"]],[34,35,["G846"]],[35,37,["G5507"]],[37,38,["G2094"]]]},{"k":31045,"v":[[0,1,["G2532"]],[1,2,["G3752"]],[2,3,["G3588"]],[3,4,["G5507"]],[4,5,["G2094"]],[5,7,["G5055"]],[7,8,["G4567"]],[8,11,["G3089"]],[11,13,["G1537"]],[13,14,["G846"]],[14,15,["G5438"]]]},{"k":31046,"v":[[0,1,["G2532"]],[1,4,["G1831"]],[4,6,["G4105"]],[6,7,["G3588"]],[7,8,["G1484"]],[8,9,["G3588"]],[9,11,["G1722"]],[11,12,["G3588"]],[12,13,["G5064"]],[13,14,["G1137"]],[14,16,["G3588"]],[16,17,["G1093"]],[17,18,["G1136"]],[18,19,["G2532"]],[19,20,["G3098"]],[20,24,["G4863","G846"]],[24,25,["G1519"]],[25,26,["G4171"]],[26,27,["G3588"]],[27,28,["G706"]],[28,30,["G3739"]],[30,32,["G5613"]],[32,33,["G3588"]],[33,34,["G285"]],[34,36,["G3588"]],[36,37,["G2281"]]]},{"k":31047,"v":[[0,1,["G2532"]],[1,4,["G305"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G4114"]],[7,9,["G3588"]],[9,10,["G1093"]],[10,11,["G2532"]],[11,18,["G2944","G3588","G3925","G3588","G40"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G25"]],[21,22,["G4172"]],[22,23,["G2532"]],[23,24,["G4442"]],[24,26,["G2597"]],[26,27,["G575"]],[27,28,["G2316"]],[28,30,["G1537"]],[30,31,["G3772"]],[31,32,["G2532"]],[32,33,["G2719"]],[33,34,["G846"]]]},{"k":31048,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1228"]],[3,5,["G4105"]],[5,6,["G846"]],[6,8,["G906"]],[8,9,["G1519"]],[9,10,["G3588"]],[10,11,["G3041"]],[11,13,["G4442"]],[13,14,["G2532"]],[14,15,["G2303"]],[15,16,["G3699"]],[16,17,["G3588"]],[17,18,["G2342"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,22,["G5578"]],[22,24,["G2532"]],[24,27,["G928"]],[27,28,["G2250"]],[28,29,["G2532"]],[29,30,["G3571"]],[30,34,["G1519","G165","G165"]]]},{"k":31049,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,5,["G3173"]],[5,6,["G3022"]],[6,7,["G2362"]],[7,8,["G2532"]],[8,11,["G2521"]],[11,12,["G1909"]],[12,13,["G846"]],[13,14,["G575"]],[14,15,["G3739"]],[15,16,["G4383"]],[16,17,["G3588"]],[17,18,["G1093"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G3772"]],[21,23,["G5343"]],[23,24,["G2532"]],[24,27,["G2147"]],[27,28,["G3756"]],[28,29,["G5117"]],[29,31,["G846"]]]},{"k":31050,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3588"]],[4,5,["G3498"]],[5,6,["G3398"]],[6,7,["G2532"]],[7,8,["G3173"]],[8,9,["G2476"]],[9,10,["G1799"]],[10,11,["G2316"]],[11,12,["G2532"]],[12,14,["G975"]],[14,16,["G455"]],[16,17,["G2532"]],[17,18,["G243"]],[18,19,["G975"]],[19,21,["G455"]],[21,23,["G3603"]],[23,27,["G2222"]],[27,28,["G2532"]],[28,29,["G3588"]],[29,30,["G3498"]],[30,32,["G2919"]],[32,34,["G1537"]],[34,39,["G1125"]],[39,40,["G1722"]],[40,41,["G3588"]],[41,42,["G975"]],[42,43,["G2596"]],[43,45,["G848"]],[45,46,["G2041"]]]},{"k":31051,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2281"]],[3,5,["G1325"]],[5,6,["G3588"]],[6,7,["G3498"]],[7,10,["G1722"]],[10,11,["G846"]],[11,12,["G2532"]],[12,13,["G2288"]],[13,14,["G2532"]],[14,15,["G86"]],[15,17,["G1325"]],[17,18,["G3588"]],[18,19,["G3498"]],[19,22,["G1722"]],[22,23,["G846"]],[23,24,["G2532"]],[24,27,["G2919"]],[27,29,["G1538"]],[29,30,["G2596"]],[30,32,["G848"]],[32,33,["G2041"]]]},{"k":31052,"v":[[0,1,["G2532"]],[1,2,["G2288"]],[2,3,["G2532"]],[3,4,["G86"]],[4,6,["G906"]],[6,7,["G1519"]],[7,8,["G3588"]],[8,9,["G3041"]],[9,11,["G4442"]],[11,12,["G3778"]],[12,13,["G2076"]],[13,14,["G3588"]],[14,15,["G1208"]],[15,16,["G2288"]]]},{"k":31053,"v":[[0,1,["G2532"]],[1,2,["G1536"]],[2,4,["G3756"]],[4,5,["G2147"]],[5,6,["G1125"]],[6,7,["G1722"]],[7,8,["G3588"]],[8,9,["G976"]],[9,11,["G2222"]],[11,13,["G906"]],[13,14,["G1519"]],[14,15,["G3588"]],[15,16,["G3041"]],[16,18,["G4442"]]]},{"k":31054,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,5,["G2537"]],[5,6,["G3772"]],[6,7,["G2532"]],[7,9,["G2537"]],[9,10,["G1093"]],[10,11,["G1063"]],[11,12,["G3588"]],[12,13,["G4413"]],[13,14,["G3772"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G4413"]],[17,18,["G1093"]],[18,21,["G3928"]],[21,22,["G2532"]],[22,24,["G2076"]],[24,25,["G3756"]],[25,26,["G2089"]],[26,27,["G2281"]]]},{"k":31055,"v":[[0,1,["G2532"]],[1,2,["G1473"]],[2,3,["G2491"]],[3,4,["G1492"]],[4,5,["G3588"]],[5,6,["G40"]],[6,7,["G4172"]],[7,8,["G2537"]],[8,9,["G2419"]],[9,11,["G2597"]],[11,12,["G575"]],[12,13,["G2316"]],[13,15,["G1537"]],[15,16,["G3772"]],[16,17,["G2090"]],[17,18,["G5613"]],[18,20,["G3565"]],[20,21,["G2885"]],[21,23,["G848"]],[23,24,["G435"]]]},{"k":31056,"v":[[0,1,["G2532"]],[1,3,["G191"]],[3,5,["G3173"]],[5,6,["G5456"]],[6,8,["G1537"]],[8,9,["G3772"]],[9,10,["G3004"]],[10,11,["G2400"]],[11,12,["G3588"]],[12,13,["G4633"]],[13,15,["G2316"]],[15,17,["G3326"]],[17,18,["G444"]],[18,19,["G2532"]],[19,22,["G4637"]],[22,23,["G3326"]],[23,24,["G846"]],[24,25,["G2532"]],[25,26,["G846"]],[26,28,["G2071"]],[28,29,["G848"]],[29,30,["G2992"]],[30,31,["G2532"]],[31,32,["G2316"]],[32,33,["G848"]],[33,35,["G2071"]],[35,36,["G3326"]],[36,37,["G846"]],[37,40,["G848"]],[40,41,["G2316"]]]},{"k":31057,"v":[[0,1,["G2532"]],[1,2,["G2316"]],[2,5,["G1813"]],[5,6,["G3956"]],[6,7,["G1144"]],[7,8,["G575"]],[8,9,["G848"]],[9,10,["G3788"]],[10,11,["G2532"]],[11,14,["G2071"]],[14,15,["G3756"]],[15,16,["G2089"]],[16,17,["G2288"]],[17,18,["G3777"]],[18,19,["G3997"]],[19,20,["G3777"]],[20,21,["G2906"]],[21,22,["G3777"]],[22,25,["G2071","(G3756)"]],[25,27,["G2089"]],[27,28,["G4192"]],[28,29,["G3754"]],[29,30,["G3588"]],[30,32,["G4413"]],[32,35,["G565"]]]},{"k":31058,"v":[[0,1,["G2532"]],[1,4,["G2521"]],[4,5,["G1909"]],[5,6,["G3588"]],[6,7,["G2362"]],[7,8,["G2036"]],[8,9,["G2400"]],[9,11,["G4160"]],[11,13,["G3956"]],[13,14,["G2537"]],[14,15,["G2532"]],[15,17,["G3004"]],[17,19,["G3427"]],[19,20,["G1125"]],[20,21,["G3754"]],[21,22,["G3778"]],[22,23,["G3056"]],[23,24,["G1526"]],[24,25,["G228"]],[25,26,["G2532"]],[26,27,["G4103"]]]},{"k":31059,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G3427"]],[5,8,["G1096"]],[8,9,["G1473"]],[9,10,["G1510","(G3588)"]],[10,11,["G1"]],[11,12,["G2532","(G3588)"]],[12,13,["G5598"]],[13,14,["G3588"]],[14,15,["G746"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G5056"]],[18,19,["G1473"]],[19,21,["G1325"]],[21,26,["G1372"]],[26,27,["G1537"]],[27,28,["G3588"]],[28,29,["G4077"]],[29,31,["G3588"]],[31,32,["G5204"]],[32,34,["G2222"]],[34,35,["G1432"]]]},{"k":31060,"v":[[0,3,["G3528"]],[3,5,["G2816"]],[5,7,["G3956"]],[7,8,["G2532"]],[8,11,["G2071"]],[11,12,["G848"]],[12,13,["G2316"]],[13,14,["G2532"]],[14,15,["G846"]],[15,17,["G2071"]],[17,18,["G3427"]],[18,19,["G5207"]]]},{"k":31061,"v":[[0,1,["G1161"]],[1,3,["G1169"]],[3,4,["G2532"]],[4,5,["G571"]],[5,6,["G2532"]],[6,8,["G948"]],[8,9,["G2532"]],[9,10,["G5406"]],[10,11,["G2532"]],[11,12,["G4205"]],[12,13,["G2532"]],[13,14,["G5332"]],[14,15,["G2532"]],[15,16,["G1496"]],[16,17,["G2532"]],[17,18,["G3956"]],[18,19,["G5571"]],[19,22,["G848"]],[22,23,["G3313"]],[23,24,["G1722"]],[24,25,["G3588"]],[25,26,["G3041"]],[26,28,["G2545"]],[28,30,["G4442"]],[30,31,["G2532"]],[31,32,["G2303"]],[32,34,["G3603"]],[34,36,["G1208"]],[36,37,["G2288"]]]},{"k":31062,"v":[[0,1,["G2532"]],[1,3,["G2064"]],[3,4,["G4314"]],[4,5,["G3165"]],[5,6,["G1520"]],[6,8,["G3588"]],[8,9,["G2033"]],[9,10,["G32"]],[10,12,["G2192"]],[12,13,["G3588"]],[13,14,["G2033"]],[14,15,["G5357"]],[15,16,["G1073"]],[16,18,["G3588"]],[18,19,["G2033"]],[19,20,["G2078"]],[20,21,["G4127"]],[21,22,["G2532"]],[22,23,["G2980"]],[23,24,["G3326"]],[24,25,["G1700"]],[25,26,["G3004"]],[26,28,["G1204"]],[28,31,["G1166"]],[31,32,["G4671"]],[32,33,["G3588"]],[33,34,["G3565"]],[34,35,["G3588"]],[35,36,["G721"]],[36,37,["G1135"]]]},{"k":31063,"v":[[0,1,["G2532"]],[1,5,["G667","G3165"]],[5,6,["G1722"]],[6,8,["G4151"]],[8,9,["G1909"]],[9,11,["G3173"]],[11,12,["G2532"]],[12,13,["G5308"]],[13,14,["G3735"]],[14,15,["G2532"]],[15,16,["G1166"]],[16,17,["G3427"]],[17,19,["G3173"]],[19,20,["G4172"]],[20,21,["G3588"]],[21,22,["G40"]],[22,23,["G2419"]],[23,24,["G2597"]],[24,26,["G1537"]],[26,27,["G3772"]],[27,28,["G575"]],[28,29,["G2316"]]]},{"k":31064,"v":[[0,1,["G2192"]],[1,2,["G3588"]],[2,3,["G1391"]],[3,5,["G2316"]],[5,6,["G2532"]],[6,7,["G848"]],[7,8,["G5458"]],[8,11,["G3664"]],[11,13,["G3037"]],[13,15,["G5093"]],[15,17,["G5613"]],[17,19,["G2393"]],[19,20,["G3037"]],[20,23,["G2929"]]]},{"k":31065,"v":[[0,1,["G5037"]],[1,2,["G2192"]],[2,4,["G5038"]],[4,5,["G3173"]],[5,6,["G2532"]],[6,7,["G5308"]],[7,9,["G2192"]],[9,10,["G1427"]],[10,11,["G4440"]],[11,12,["G2532"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G4440"]],[15,16,["G1427"]],[16,17,["G32"]],[17,18,["G2532"]],[18,19,["G3686"]],[19,21,["G1924"]],[21,22,["G3739"]],[22,23,["G2076"]],[23,27,["G3588"]],[27,28,["G1427"]],[28,29,["G5443"]],[29,31,["G3588"]],[31,32,["G5207"]],[32,34,["G2474"]]]},{"k":31066,"v":[[0,1,["G575"]],[1,3,["G395"]],[3,4,["G5140"]],[4,5,["G4440"]],[5,6,["G575"]],[6,8,["G1005"]],[8,9,["G5140"]],[9,10,["G4440"]],[10,11,["G575"]],[11,13,["G3558"]],[13,14,["G5140"]],[14,15,["G4440"]],[15,17,["G575"]],[17,19,["G1424"]],[19,20,["G5140"]],[20,21,["G4440"]]]},{"k":31067,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G5038"]],[3,5,["G3588"]],[5,6,["G4172"]],[6,7,["G2192"]],[7,8,["G1427"]],[8,9,["G2310"]],[9,10,["G2532"]],[10,11,["G1722"]],[11,12,["G846"]],[12,14,["G3686"]],[14,16,["G3588"]],[16,17,["G1427"]],[17,18,["G652"]],[18,20,["G3588"]],[20,21,["G721"]]]},{"k":31068,"v":[[0,1,["G2532"]],[1,4,["G2980"]],[4,5,["G3326"]],[5,6,["G1700"]],[6,7,["G2192"]],[7,9,["G5552"]],[9,10,["G2563"]],[10,11,["G2443"]],[11,12,["G3354"]],[12,13,["G3588"]],[13,14,["G4172"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G4440"]],[17,18,["G846"]],[18,19,["G2532"]],[19,20,["G3588"]],[20,21,["G5038"]],[21,22,["G846"]]]},{"k":31069,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4172"]],[3,4,["G2749"]],[4,5,["G5068"]],[5,6,["G2532"]],[6,7,["G3588"]],[7,8,["G3372","(G848)"]],[8,9,["G2076"]],[9,11,["G5118"]],[11,12,["G3745"]],[12,13,["G3588"]],[13,14,["G4114"]],[14,15,["G2532"]],[15,17,["G3354"]],[17,18,["G3588"]],[18,19,["G4172"]],[19,21,["G3588"]],[21,22,["G2563"]],[22,23,["G1427"]],[23,24,["G5505","(G1909)"]],[24,25,["G4712"]],[25,26,["G3588"]],[26,27,["G3372"]],[27,28,["G2532"]],[28,29,["G3588"]],[29,30,["G4114"]],[30,31,["G2532"]],[31,32,["G3588"]],[32,33,["G5311"]],[33,35,["G846"]],[35,36,["G2076"]],[36,37,["G2470"]]]},{"k":31070,"v":[[0,1,["G2532"]],[1,3,["G3354"]],[3,4,["G3588"]],[4,5,["G5038"]],[5,6,["G846"]],[6,12,["G1540","G5062","G5064"]],[12,13,["G4083"]],[13,17,["G3358"]],[17,20,["G444"]],[20,22,["G3603"]],[22,25,["G32"]]]},{"k":31071,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1739"]],[3,5,["G3588"]],[5,6,["G5038"]],[6,8,["G846"]],[8,9,["G2258"]],[9,11,["G2393"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G4172"]],[14,16,["G2513"]],[16,17,["G5553"]],[17,19,["G3664"]],[19,20,["G2513"]],[20,21,["G5194"]]]},{"k":31072,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G2310"]],[3,5,["G3588"]],[5,6,["G5038"]],[6,8,["G3588"]],[8,9,["G4172"]],[9,11,["G2885"]],[11,14,["G3956"]],[14,16,["G5093"]],[16,17,["G3037"]],[17,18,["G3588"]],[18,19,["G4413"]],[19,20,["G2310"]],[20,22,["G2393"]],[22,23,["G3588"]],[23,24,["G1208"]],[24,25,["G4552"]],[25,26,["G3588"]],[26,27,["G5154"]],[27,29,["G5472"]],[29,30,["G3588"]],[30,31,["G5067"]],[31,33,["G4665"]]]},{"k":31073,"v":[[0,1,["G3588"]],[1,2,["G3991"]],[2,3,["G4557"]],[3,4,["G3588"]],[4,5,["G1623"]],[5,6,["G4556"]],[6,7,["G3588"]],[7,8,["G1442"]],[8,9,["G5555"]],[9,10,["G3588"]],[10,11,["G3590"]],[11,12,["G969"]],[12,13,["G3588"]],[13,14,["G1766"]],[14,16,["G5116"]],[16,17,["G3588"]],[17,18,["G1182"]],[18,20,["G5556"]],[20,21,["G3588"]],[21,22,["G1734"]],[22,24,["G5192"]],[24,25,["G3588"]],[25,26,["G1428"]],[26,28,["G271"]]]},{"k":31074,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1427"]],[3,4,["G4440"]],[4,6,["G1427"]],[6,7,["G3135"]],[7,9,["G303","G1538","G1520"]],[9,10,["G4440"]],[10,11,["G2258"]],[11,12,["G1537"]],[12,13,["G1520"]],[13,14,["G3135"]],[14,15,["G2532"]],[15,16,["G3588"]],[16,17,["G4113"]],[17,19,["G3588"]],[19,20,["G4172"]],[20,22,["G2513"]],[22,23,["G5553"]],[23,26,["G5613"]],[26,27,["G1307"]],[27,28,["G5194"]]]},{"k":31075,"v":[[0,1,["G2532"]],[1,3,["G1492"]],[3,4,["G3756"]],[4,5,["G3485"]],[5,6,["G1722","G846"]],[6,7,["G1063"]],[7,8,["G3588"]],[8,9,["G2962"]],[9,10,["G2316"]],[10,11,["G3841"]],[11,12,["G2532"]],[12,13,["G3588"]],[13,14,["G721"]],[14,15,["G2076"]],[15,17,["G3485"]],[17,19,["G846"]]]},{"k":31076,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4172"]],[3,4,["G2192"]],[4,5,["G3756"]],[5,6,["G5532"]],[6,8,["G3588"]],[8,9,["G2246"]],[9,10,["G3761"]],[10,12,["G3588"]],[12,13,["G4582"]],[13,14,["G2443"]],[14,15,["G5316"]],[15,16,["G1722"]],[16,17,["G846"]],[17,18,["G1063"]],[18,19,["G3588"]],[19,20,["G1391"]],[20,22,["G2316"]],[22,24,["G5461"]],[24,25,["G846"]],[25,26,["G2532"]],[26,27,["G3588"]],[27,28,["G721"]],[28,30,["G3588"]],[30,31,["G3088"]],[31,32,["G846"]]]},{"k":31077,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G1484"]],[3,8,["G4982"]],[8,10,["G4043"]],[10,11,["G1722"]],[11,12,["G3588"]],[12,13,["G5457"]],[13,15,["G846"]],[15,16,["G2532"]],[16,17,["G3588"]],[17,18,["G935"]],[18,20,["G3588"]],[20,21,["G1093"]],[21,23,["G5342"]],[23,24,["G848"]],[24,25,["G1391"]],[25,26,["G2532"]],[26,27,["G5092"]],[27,28,["G1519"]],[28,29,["G846"]]]},{"k":31078,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4440"]],[3,5,["G846"]],[5,11,["G3364","G2808"]],[11,13,["G2250"]],[13,14,["G1063"]],[14,17,["G2071"]],[17,18,["G3756"]],[18,19,["G3571"]],[19,20,["G1563"]]]},{"k":31079,"v":[[0,1,["G2532"]],[1,4,["G5342"]],[4,5,["G3588"]],[5,6,["G1391"]],[6,7,["G2532"]],[7,8,["G5092"]],[8,10,["G3588"]],[10,11,["G1484"]],[11,12,["G1519"]],[12,13,["G846"]]]},{"k":31080,"v":[[0,1,["G2532"]],[1,6,["G3364"]],[6,7,["G1525"]],[7,8,["G1519"]],[8,9,["G846"]],[9,11,["G3956"]],[11,13,["G2840"]],[13,14,["G2532"]],[14,16,["G4160"]],[16,17,["G946"]],[17,18,["G2532"]],[18,21,["G5579"]],[21,26,["G1125"]],[26,27,["G1722"]],[27,28,["G3588"]],[28,29,["G721"]],[29,30,["G975"]],[30,32,["G2222"]]]},{"k":31081,"v":[[0,1,["G2532"]],[1,3,["G1166"]],[3,4,["G3427"]],[4,6,["G2513"]],[6,7,["G4215"]],[7,9,["G5204"]],[9,11,["G2222"]],[11,12,["G2986"]],[12,13,["G5613"]],[13,14,["G2930"]],[14,15,["G1607"]],[15,17,["G1537"]],[17,18,["G3588"]],[18,19,["G2362"]],[19,21,["G2316"]],[21,22,["G2532"]],[22,24,["G3588"]],[24,25,["G721"]]]},{"k":31082,"v":[[0,1,["G1722"]],[1,3,["G3319"]],[3,5,["G3588"]],[5,6,["G4113"]],[6,8,["G846"]],[8,9,["G2532"]],[9,12,["G1782","G2532","G1782"]],[12,14,["G3588"]],[14,15,["G4215"]],[15,19,["G3586"]],[19,21,["G2222"]],[21,23,["G4160"]],[23,24,["G1427"]],[24,27,["G2590"]],[27,29,["G591"]],[29,30,["G848"]],[30,31,["G2590"]],[31,32,["G2596","G1538","G1520"]],[32,33,["G3376"]],[33,34,["G2532"]],[34,35,["G3588"]],[35,36,["G5444"]],[36,38,["G3588"]],[38,39,["G3586"]],[39,41,["G1519"]],[41,43,["G2322"]],[43,45,["G3588"]],[45,46,["G1484"]]]},{"k":31083,"v":[[0,1,["G2532"]],[1,4,["G2071"]],[4,6,["G3756","G3956","G2089"]],[6,7,["G2652"]],[7,8,["G2532"]],[8,9,["G3588"]],[9,10,["G2362"]],[10,12,["G2316"]],[12,13,["G2532"]],[13,15,["G3588"]],[15,16,["G721"]],[16,18,["G2071"]],[18,19,["G1722"]],[19,20,["G846"]],[20,21,["G2532"]],[21,22,["G848"]],[22,23,["G1401"]],[23,25,["G3000"]],[25,26,["G846"]]]},{"k":31084,"v":[[0,1,["G2532"]],[1,4,["G3700"]],[4,5,["G846"]],[5,6,["G4383"]],[6,7,["G2532"]],[7,8,["G846"]],[8,9,["G3686"]],[9,12,["G1909"]],[12,13,["G848"]],[13,14,["G3359"]]]},{"k":31085,"v":[[0,1,["G2532"]],[1,4,["G2071"]],[4,5,["G3756"]],[5,6,["G3571"]],[6,7,["G1563"]],[7,8,["G2532"]],[8,10,["G2192","G5532"]],[10,11,["G3756"]],[11,12,["G3088"]],[12,13,["G2532"]],[13,14,["G5457"]],[14,17,["G2246"]],[17,20,["G2962"]],[20,21,["G2316"]],[21,24,["G5461","G846"]],[24,25,["G2532"]],[25,28,["G936"]],[28,32,["G1519","G165","G165"]]]},{"k":31086,"v":[[0,1,["G2532"]],[1,3,["G2036"]],[3,5,["G3427"]],[5,6,["G3778"]],[6,7,["G3056"]],[7,9,["G4103"]],[9,10,["G2532"]],[10,11,["G228"]],[11,12,["G2532"]],[12,14,["G2962"]],[14,15,["G2316"]],[15,17,["G3588"]],[17,18,["G40"]],[18,19,["G4396"]],[19,20,["G649"]],[20,21,["G848"]],[21,22,["G32"]],[22,24,["G1166"]],[24,26,["G848"]],[26,27,["G1401"]],[27,30,["G3739"]],[30,31,["G1163"]],[31,32,["G1722","G5034"]],[32,34,["G1096"]]]},{"k":31087,"v":[[0,1,["G2400"]],[1,3,["G2064"]],[3,4,["G5035"]],[4,5,["G3107"]],[5,9,["G5083"]],[9,10,["G3588"]],[10,11,["G3056"]],[11,13,["G3588"]],[13,14,["G4394"]],[14,16,["G5127"]],[16,17,["G975"]]]},{"k":31088,"v":[[0,1,["G2532"]],[1,2,["G1473"]],[2,3,["G2491"]],[3,4,["G991"]],[4,6,["G5023"]],[6,7,["G2532"]],[7,8,["G191"]],[8,10,["G2532"]],[10,11,["G3753"]],[11,14,["G191"]],[14,15,["G2532"]],[15,16,["G991"]],[16,19,["G4098"]],[19,21,["G4352"]],[21,22,["G1715"]],[22,23,["G3588"]],[23,24,["G4228"]],[24,26,["G3588"]],[26,27,["G32"]],[27,29,["G1166"]],[29,30,["G3427"]],[30,32,["G5023"]]]},{"k":31089,"v":[[0,1,["G2532"]],[1,2,["G3004"]],[2,5,["G3427"]],[5,6,["G3708"]],[6,10,["G3361"]],[10,11,["G1063"]],[11,13,["G1510"]],[13,14,["G4675"]],[14,15,["G4889"]],[15,16,["G2532"]],[16,18,["G4675"]],[18,19,["G80"]],[19,20,["G3588"]],[20,21,["G4396"]],[21,22,["G2532"]],[22,26,["G5083"]],[26,27,["G3588"]],[27,28,["G3056"]],[28,30,["G5127"]],[30,31,["G975"]],[31,32,["G4352"]],[32,33,["G2316"]]]},{"k":31090,"v":[[0,1,["G2532"]],[1,3,["G3004"]],[3,5,["G3427"]],[5,6,["G4972"]],[6,7,["G3361"]],[7,8,["G3588"]],[8,9,["G3056"]],[9,11,["G3588"]],[11,12,["G4394"]],[12,14,["G5127"]],[14,15,["G975"]],[15,16,["G3754"]],[16,17,["G3588"]],[17,18,["G2540"]],[18,19,["G2076"]],[19,21,["G1451"]]]},{"k":31091,"v":[[0,4,["G91"]],[4,8,["G91"]],[8,9,["G2089"]],[9,10,["G2532"]],[10,14,["G4510"]],[14,18,["G4510"]],[18,19,["G2089"]],[19,20,["G2532"]],[20,24,["G1342"]],[24,28,["G1344"]],[28,29,["G2089"]],[29,30,["G2532"]],[30,34,["G40"]],[34,38,["G37"]],[38,39,["G2089"]]]},{"k":31092,"v":[[0,1,["G2532"]],[1,2,["G2400"]],[2,4,["G2064"]],[4,5,["G5035"]],[5,6,["G2532"]],[6,7,["G3450"]],[7,8,["G3408"]],[8,10,["G3326"]],[10,11,["G1700"]],[11,13,["G591"]],[13,15,["G1538"]],[15,17,["G5613"]],[17,18,["G848"]],[18,19,["G2041"]],[19,21,["G2071"]]]},{"k":31093,"v":[[0,1,["G1473"]],[1,2,["G1510"]],[2,3,["G1"]],[3,4,["G2532"]],[4,5,["G5598"]],[5,7,["G746"]],[7,8,["G2532"]],[8,10,["G5056"]],[10,11,["G3588"]],[11,12,["G4413"]],[12,13,["G2532"]],[13,14,["G3588"]],[14,15,["G2078"]]]},{"k":31094,"v":[[0,1,["G3107"]],[1,5,["G4160"]],[5,6,["G848"]],[6,7,["G1785"]],[7,8,["G2443"]],[8,9,["G846"]],[9,11,["G2071"]],[11,12,["G1849"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G3586"]],[15,17,["G2222"]],[17,18,["G2532"]],[18,21,["G1525"]],[21,23,["G3588"]],[23,24,["G4440"]],[24,25,["G1519"]],[25,26,["G3588"]],[26,27,["G4172"]]]},{"k":31095,"v":[[0,1,["G1161"]],[1,2,["G1854"]],[2,4,["G2965"]],[4,5,["G2532"]],[5,6,["G5333"]],[6,7,["G2532"]],[7,8,["G4205"]],[8,9,["G2532"]],[9,10,["G5406"]],[10,11,["G2532"]],[11,12,["G1496"]],[12,13,["G2532"]],[13,14,["G3956"]],[14,15,["G5368"]],[15,16,["G2532"]],[16,17,["G4160"]],[17,19,["G5579"]]]},{"k":31096,"v":[[0,1,["G1473"]],[1,2,["G2424"]],[2,4,["G3992"]],[4,5,["G3450"]],[5,6,["G32"]],[6,8,["G3140"]],[8,10,["G5213"]],[10,12,["G5023"]],[12,13,["G1909"]],[13,14,["G3588"]],[14,15,["G1577"]],[15,16,["G1473"]],[16,17,["G1510"]],[17,18,["G3588"]],[18,19,["G4491"]],[19,20,["G2532"]],[20,21,["G3588"]],[21,22,["G1085"]],[22,24,["G1138"]],[24,26,["G3588"]],[26,27,["G2986"]],[27,28,["G2532"]],[28,29,["G3720"]],[29,30,["G792"]]]},{"k":31097,"v":[[0,1,["G2532"]],[1,2,["G3588"]],[2,3,["G4151"]],[3,4,["G2532"]],[4,5,["G3588"]],[5,6,["G3565"]],[6,7,["G3004"]],[7,8,["G2064"]],[8,9,["G2532"]],[9,13,["G191"]],[13,14,["G2036"]],[14,15,["G2064"]],[15,16,["G2532"]],[16,21,["G1372"]],[21,22,["G2064"]],[22,23,["G2532"]],[23,24,["G3588"]],[24,25,["G2309"]],[25,28,["G2983"]],[28,29,["G3588"]],[29,30,["G5204"]],[30,32,["G2222"]],[32,33,["G1432"]]]},{"k":31098,"v":[[0,1,["G1063"]],[1,3,["G4828"]],[3,6,["G3956"]],[6,8,["G191"]],[8,9,["G3588"]],[9,10,["G3056"]],[10,12,["G3588"]],[12,13,["G4394"]],[13,15,["G5127"]],[15,16,["G975"]],[16,17,["G1437"]],[17,19,["G5100"]],[19,21,["G2007"]],[21,22,["G4314"]],[22,24,["G5023"]],[24,25,["G2316"]],[25,27,["G2007"]],[27,28,["G1909"]],[28,29,["G846"]],[29,30,["G3588"]],[30,31,["G4127"]],[31,34,["G1125"]],[34,35,["G1722"]],[35,36,["G5129"]],[36,37,["G975"]]]},{"k":31099,"v":[[0,1,["G2532"]],[1,2,["G1437"]],[2,4,["G5100"]],[4,7,["G851"]],[7,8,["G575"]],[8,9,["G3588"]],[9,10,["G3056"]],[10,13,["G976"]],[13,15,["G5026"]],[15,16,["G4394"]],[16,17,["G2316"]],[17,20,["G851"]],[20,21,["G846"]],[21,22,["G3313"]],[22,24,["G575"]],[24,26,["G976"]],[26,28,["G2222"]],[28,29,["G2532"]],[29,31,["G1537"]],[31,32,["G3588"]],[32,33,["G40"]],[33,34,["G4172"]],[34,35,["G2532"]],[35,41,["G1125"]],[41,42,["G1722"]],[42,43,["G5129"]],[43,44,["G975"]]]},{"k":31100,"v":[[0,3,["G3140"]],[3,5,["G5023"]],[5,6,["G3004"]],[6,7,["G3483"]],[7,9,["G2064"]],[9,10,["G5035"]],[10,11,["G281"]],[11,13,["G3483"]],[13,14,["G2064"]],[14,15,["G2962"]],[15,16,["G2424"]]]},{"k":31101,"v":[[0,1,["G3588"]],[1,2,["G5485"]],[2,4,["G2257"]],[4,5,["G2962"]],[5,6,["G2424"]],[6,7,["G5547"]],[7,9,["G3326"]],[9,10,["G5216"]],[10,11,["G3956"]],[11,12,["G281"]]]}],"words":[{"k":"H1","v":[["*",[1214,1060,[[0,208,170,0,170,[[1,1,1,0,1],[3,2,2,1,3],[8,5,3,3,6],[9,1,1,6,7],[10,3,2,7,9],[11,1,1,9,10],[14,1,1,10,11],[16,2,2,11,13],[18,11,8,13,21],[19,2,2,21,23],[21,3,2,23,25],[23,4,4,25,29],[25,6,4,29,33],[26,24,16,33,49],[27,5,5,49,54],[28,3,2,54,56],[30,18,15,56,71],[31,2,1,71,72],[32,1,1,72,73],[33,5,5,73,78],[34,3,3,78,81],[35,3,3,81,84],[36,11,9,84,93],[37,2,1,93,94],[40,1,1,94,95],[41,7,6,95,101],[42,7,7,101,108],[43,15,11,108,119],[44,11,9,119,128],[45,7,6,128,134],[46,10,9,134,143],[47,10,8,143,151],[48,7,7,151,158],[49,14,12,158,170]]],[1,24,22,170,192,[[51,2,2,170,172],[52,4,4,172,176],[53,1,1,176,177],[55,2,2,177,179],[59,3,1,179,180],[61,1,1,180,181],[62,2,2,181,183],[64,1,1,183,184],[67,1,1,184,185],[69,2,2,185,187],[70,2,2,187,189],[71,1,1,189,190],[83,1,1,190,191],[89,1,1,191,192]]],[2,25,19,192,211,[[105,1,1,192,193],[107,9,6,193,199],[108,1,1,199,200],[109,6,4,200,204],[110,3,3,204,207],[111,2,1,207,208],[114,1,1,208,209],[115,2,2,209,211]]],[3,85,75,211,286,[[117,19,19,211,230],[118,3,3,230,233],[119,6,6,233,239],[120,8,8,239,247],[122,1,1,247,248],[123,1,1,248,249],[127,1,1,249,250],[128,1,1,250,251],[129,1,1,251,252],[130,2,2,252,254],[133,4,3,254,257],[134,2,2,257,259],[136,2,1,259,260],[141,2,2,260,262],[142,2,2,262,264],[143,7,5,264,269],[146,7,4,269,273],[147,1,1,273,274],[148,3,3,274,277],[149,1,1,277,278],[150,2,1,278,279],[152,9,7,279,286]]],[4,71,65,286,351,[[153,4,4,286,290],[156,3,3,290,293],[157,3,3,293,296],[158,4,4,296,300],[159,3,3,300,303],[160,4,4,303,307],[161,1,1,307,308],[162,3,3,308,311],[163,2,2,311,313],[164,1,1,313,314],[165,2,2,314,316],[170,1,1,316,317],[171,2,1,317,318],[173,3,3,318,321],[174,8,6,321,327],[176,2,1,327,328],[178,4,4,328,332],[179,5,4,332,336],[180,3,3,336,339],[181,2,2,339,341],[182,4,3,341,344],[183,3,3,344,347],[184,3,3,347,350],[185,1,1,350,351]]],[5,35,29,351,380,[[187,1,1,351,352],[188,4,3,352,355],[190,1,1,355,356],[191,1,1,356,357],[192,2,2,357,359],[200,1,1,359,360],[201,2,2,360,362],[203,2,2,362,364],[204,1,1,364,365],[205,2,2,365,367],[207,5,4,367,371],[208,3,2,371,373],[210,10,7,373,380]]],[6,54,50,380,430,[[211,1,1,380,381],[212,7,7,381,388],[213,1,1,388,389],[216,5,4,389,393],[218,1,1,393,394],[219,6,6,394,400],[221,5,5,400,405],[224,11,10,405,415],[225,3,3,415,418],[226,2,1,418,419],[227,1,1,419,420],[228,2,2,420,422],[229,8,7,422,429],[231,1,1,429,430]]],[7,3,2,430,432,[[233,1,1,430,431],[235,2,1,431,432]]],[8,54,48,432,480,[[237,5,5,432,437],[244,3,3,437,440],[245,2,2,440,442],[247,5,4,442,446],[249,6,5,446,451],[252,3,3,451,454],[253,2,2,454,456],[254,4,3,456,459],[255,14,12,459,471],[257,6,6,471,477],[258,2,1,477,478],[259,2,2,478,480]]],[9,28,24,480,504,[[268,1,1,480,481],[269,3,3,481,484],[272,1,1,484,485],[273,2,2,485,487],[275,2,1,487,488],[276,3,2,488,490],[279,1,1,490,491],[280,1,1,491,492],[281,1,1,492,493],[282,5,4,493,497],[283,4,3,497,500],[285,2,2,500,502],[287,1,1,502,503],[290,1,1,503,504]]],[10,95,80,504,584,[[291,2,2,504,506],[292,8,7,506,513],[293,4,4,513,517],[295,3,3,517,520],[296,1,1,520,521],[297,2,2,521,523],[298,15,15,523,538],[299,3,3,538,541],[301,9,8,541,549],[302,10,6,549,555],[303,3,3,555,558],[304,5,4,558,562],[305,12,8,562,570],[306,2,2,570,572],[308,1,1,572,573],[309,2,2,573,575],[310,3,1,575,576],[311,2,2,576,578],[312,8,6,578,584]]],[11,70,59,584,643,[[314,2,1,584,585],[315,3,2,585,587],[316,2,2,587,589],[317,1,1,589,590],[318,1,1,590,591],[320,2,1,591,592],[321,2,2,592,594],[322,2,2,594,596],[324,2,2,596,598],[325,5,4,598,602],[326,10,8,602,610],[327,9,6,610,616],[328,3,2,616,618],[329,4,4,618,622],[330,1,1,622,623],[331,1,1,623,624],[332,3,3,624,627],[333,8,7,627,634],[334,3,3,634,637],[335,4,4,637,641],[336,2,2,641,643]]],[12,106,87,643,730,[[339,16,12,643,655],[341,16,11,655,666],[342,6,5,666,671],[343,1,1,671,672],[344,9,9,672,681],[345,5,5,681,686],[346,8,6,686,692],[349,3,3,692,695],[352,1,1,695,696],[354,2,2,696,698],[356,3,2,698,700],[358,1,1,700,701],[359,1,1,701,702],[360,4,3,702,705],[361,9,6,705,711],[362,2,2,711,713],[363,7,7,713,720],[364,1,1,720,721],[365,5,3,721,724],[366,6,6,724,730]]],[13,124,110,730,840,[[367,3,3,730,733],[368,6,5,733,738],[369,1,1,738,739],[370,1,1,739,740],[371,2,2,740,742],[372,9,9,742,751],[373,3,3,751,754],[374,1,1,754,755],[375,2,1,755,756],[376,10,6,756,762],[377,1,1,762,763],[378,1,1,763,764],[379,2,2,764,766],[380,2,2,766,768],[381,2,2,768,770],[382,3,2,770,772],[383,4,4,772,776],[385,2,2,776,778],[386,3,3,778,781],[387,9,7,781,788],[388,1,1,788,789],[389,1,1,789,790],[390,3,3,790,793],[391,5,4,793,797],[392,6,5,797,802],[393,2,2,802,804],[394,5,5,804,809],[395,4,4,809,813],[396,5,4,813,817],[397,1,1,817,818],[398,4,4,818,822],[399,7,6,822,828],[400,6,6,828,834],[401,5,4,834,838],[402,2,2,838,840]]],[14,14,13,840,853,[[403,1,1,840,841],[404,2,2,841,843],[405,1,1,843,844],[406,2,2,844,846],[409,1,1,846,847],[410,3,3,847,850],[411,1,1,850,851],[412,3,2,851,853]]],[15,20,20,853,873,[[413,1,1,853,854],[414,2,2,854,856],[419,3,3,856,859],[420,1,1,859,860],[421,7,7,860,867],[422,1,1,867,868],[423,1,1,868,869],[424,3,3,869,872],[425,1,1,872,873]]],[16,3,2,873,875,[[427,2,1,873,874],[429,1,1,874,875]]],[17,9,9,875,884,[[443,1,1,875,876],[450,2,2,876,878],[452,1,1,878,879],[464,1,1,879,880],[465,1,1,880,881],[466,1,1,881,882],[473,1,1,882,883],[477,1,1,883,884]]],[18,19,19,884,903,[[499,1,1,884,885],[504,1,1,885,886],[516,1,1,886,887],[521,1,1,887,888],[522,2,2,888,890],[526,1,1,890,891],[545,1,1,891,892],[555,5,5,892,897],[566,1,1,897,898],[572,1,1,898,899],[580,1,1,899,900],[583,2,2,900,902],[586,1,1,902,903]]],[19,26,26,903,929,[[628,1,1,903,904],[630,1,1,904,905],[631,2,2,905,907],[633,1,1,907,908],[637,1,1,908,909],[640,1,1,909,910],[642,2,2,910,912],[644,3,3,912,915],[646,3,3,915,918],[647,1,1,918,919],[649,1,1,919,920],[650,3,3,920,923],[654,1,1,923,924],[655,2,2,924,926],[656,1,1,926,927],[657,2,2,927,929]]],[22,21,20,929,949,[[681,1,1,929,930],[685,1,1,930,931],[686,1,1,931,932],[687,1,1,932,933],[692,1,1,933,934],[700,3,3,934,937],[715,1,1,937,938],[716,2,2,938,940],[717,1,1,940,941],[721,1,1,941,942],[723,1,1,942,943],[729,1,1,943,944],[736,1,1,944,945],[741,2,1,945,946],[742,2,2,946,948],[743,1,1,948,949]]],[23,63,62,949,1011,[[746,2,2,949,951],[747,5,5,951,956],[750,1,1,956,957],[751,6,6,957,963],[753,2,2,963,965],[755,5,4,965,969],[756,1,1,969,970],[757,1,1,970,971],[758,1,1,971,972],[760,7,7,972,979],[761,1,1,979,980],[763,1,1,980,981],[764,1,1,981,982],[766,2,2,982,984],[767,2,2,984,986],[768,1,1,986,987],[769,1,1,987,988],[774,1,1,988,989],[775,3,3,989,992],[776,2,2,992,994],[778,3,3,994,997],[779,7,7,997,1004],[788,5,5,1004,1009],[791,1,1,1009,1010],[794,1,1,1010,1011]]],[24,2,2,1011,1013,[[801,2,2,1011,1013]]],[25,27,25,1013,1038,[[803,1,1,1013,1014],[806,2,1,1014,1015],[817,2,2,1015,1017],[819,8,7,1017,1024],[821,7,7,1024,1031],[823,3,3,1031,1034],[837,1,1,1034,1035],[838,1,1,1035,1036],[845,1,1,1036,1037],[848,1,1,1037,1038]]],[26,8,6,1038,1044,[[858,3,3,1038,1041],[860,5,3,1041,1044]]],[27,1,1,1044,1045,[[870,1,1,1044,1045]]],[28,1,1,1045,1046,[[876,1,1,1045,1046]]],[29,2,2,1046,1048,[[880,2,2,1046,1048]]],[32,2,2,1048,1050,[[899,2,2,1048,1050]]],[37,7,6,1050,1056,[[911,4,4,1050,1054],[918,1,1,1054,1055],[923,2,1,1055,1056]]],[38,7,4,1056,1060,[[925,2,1,1056,1057],[926,2,1,1057,1058],[927,1,1,1058,1059],[928,2,1,1059,1060]]]],[54,99,100,223,227,228,255,294,295,299,375,401,402,488,489,490,491,492,493,494,495,507,508,554,568,598,614,629,631,695,707,710,716,733,736,737,739,741,745,746,749,753,757,758,759,761,765,766,768,775,780,781,786,794,804,807,874,876,878,879,880,882,887,889,891,892,902,903,908,915,926,937,979,984,986,991,993,999,1029,1033,1038,1049,1064,1083,1084,1085,1087,1093,1094,1095,1105,1115,1118,1130,1246,1265,1281,1284,1287,1288,1289,1292,1297,1298,1301,1313,1317,1318,1341,1343,1344,1346,1348,1349,1351,1354,1355,1356,1358,1361,1366,1367,1371,1376,1377,1381,1383,1385,1387,1389,1391,1415,1417,1420,1421,1423,1425,1426,1427,1429,1431,1432,1450,1452,1460,1466,1467,1468,1469,1470,1472,1475,1477,1481,1498,1499,1501,1502,1507,1508,1511,1512,1513,1514,1516,1520,1521,1522,1523,1528,1570,1572,1585,1592,1594,1595,1606,1669,1680,1783,1819,1872,1878,1922,2003,2056,2063,2092,2094,2130,2503,2722,3233,3258,3259,3260,3262,3263,3265,3284,3327,3329,3335,3337,3347,3354,3356,3382,3510,3563,3564,3606,3608,3620,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3648,3649,3651,3660,3690,3692,3696,3707,3712,3716,3722,3727,3745,3765,3772,3777,3781,3783,3785,3789,3830,3852,4036,4073,4077,4126,4131,4246,4247,4250,4258,4259,4326,4485,4486,4491,4544,4557,4558,4561,4564,4565,4651,4652,4653,4664,4690,4726,4732,4746,4814,4830,4880,4882,4883,4885,4886,4887,4891,4900,4903,4913,4927,5005,5035,5041,5056,5062,5069,5089,5096,5104,5109,5119,5123,5124,5138,5140,5153,5155,5162,5197,5201,5208,5217,5229,5241,5278,5289,5392,5414,5460,5465,5466,5485,5486,5489,5491,5499,5500,5541,5569,5571,5573,5581,5588,5601,5605,5607,5622,5647,5675,5692,5704,5713,5717,5728,5735,5744,5748,5764,5765,5775,5819,5857,5881,5882,5887,5931,5940,5972,5974,6188,6215,6220,6276,6279,6296,6368,6372,6382,6392,6424,6425,6440,6454,6478,6479,6482,6490,6491,6493,6508,6523,6546,6555,6557,6562,6564,6565,6567,6572,6667,6669,6679,6681,6751,6755,6759,6771,6772,6782,6810,6831,6836,6865,6866,6868,6911,6912,6913,6914,6915,6918,6919,6924,6925,6928,6930,6931,6935,6980,6990,7012,7022,7026,7027,7028,7029,7030,7032,7033,7124,7160,7207,7265,7267,7268,7270,7271,7394,7396,7411,7420,7430,7466,7467,7468,7475,7509,7535,7536,7537,7559,7633,7643,7652,7678,7694,7708,7709,7710,7731,7732,7733,7736,7738,7739,7740,7742,7743,7762,7763,7764,7788,7790,7798,7802,7803,7809,7827,7850,7860,8081,8088,8089,8110,8178,8192,8194,8234,8242,8243,8322,8365,8423,8429,8445,8447,8448,8457,8459,8472,8539,8548,8594,8709,8723,8738,8780,8782,8794,8796,8801,8802,8814,8819,8822,8823,8830,8879,8881,8883,8908,8948,8985,8986,9000,9002,9003,9005,9006,9009,9010,9011,9019,9025,9033,9038,9042,9043,9055,9056,9060,9112,9114,9120,9125,9129,9135,9141,9151,9155,9157,9160,9161,9162,9165,9195,9196,9206,9233,9238,9240,9249,9252,9257,9260,9261,9264,9268,9273,9275,9289,9311,9359,9391,9407,9442,9454,9455,9520,9523,9526,9530,9532,9533,9563,9578,9589,9621,9622,9660,9695,9751,9781,9784,9796,9828,9868,9871,9880,9884,9885,9896,9899,9901,9902,9912,9916,9917,9918,9925,9928,9932,9934,9947,9959,9963,9965,9983,9996,9997,9998,10024,10027,10073,10103,10115,10119,10122,10127,10134,10137,10139,10140,10141,10147,10158,10165,10195,10197,10199,10202,10208,10211,10323,10327,10329,10330,10348,10350,10351,10355,10356,10357,10358,10361,10388,10389,10390,10396,10397,10399,10402,10403,10404,10406,10423,10429,10441,10443,10452,10453,10473,10537,10539,10542,10544,10546,10549,10557,10566,10575,10581,10585,10588,10603,10604,10624,10628,10634,10648,10649,10650,10737,10748,10750,10803,10874,10876,10909,10910,10951,10974,10992,10994,11007,11017,11019,11021,11034,11045,11046,11049,11052,11083,11087,11090,11098,11103,11108,11109,11110,11147,11149,11152,11170,11174,11179,11182,11184,11187,11196,11202,11203,11214,11218,11224,11225,11228,11230,11262,11269,11270,11286,11289,11290,11292,11297,11298,11307,11313,11320,11341,11342,11346,11360,11395,11399,11401,11404,11405,11406,11409,11430,11453,11465,11471,11476,11479,11502,11508,11512,11522,11525,11526,11527,11537,11580,11584,11593,11619,11620,11625,11627,11628,11634,11636,11637,11643,11648,11658,11695,11699,11701,11707,11708,11709,11732,11733,11734,11736,11744,11755,11757,11764,11765,11770,11773,11789,11791,11793,11796,11797,11800,11834,11835,11846,11849,11871,11888,11889,11890,11908,11911,11916,11920,11928,11930,11931,11935,11936,11954,11961,11965,11966,11970,11971,11978,11990,11994,12008,12021,12086,12095,12109,12112,12113,12200,12202,12229,12230,12244,12263,12268,12302,12310,12312,12481,12490,12491,12506,12513,12520,12527,12534,12543,12545,12547,12583,12601,12636,12646,12647,12689,12731,12776,13037,13213,13221,13274,13548,13558,13606,13821,13937,14208,14295,14524,14572,14607,14613,14667,14905,15116,15118,15121,15125,15170,15352,15463,15562,15657,15658,15769,16408,16467,16491,16493,16560,16657,16748,16812,16827,16879,16894,16898,16938,16939,16951,16974,17043,17066,17068,17069,17179,17203,17220,17227,17262,17268,17713,17799,17811,17835,17949,18073,18075,18076,18364,18395,18409,18418,18532,18571,18675,18800,18882,18893,18896,18904,18970,18992,19006,19020,19021,19026,19027,19110,19126,19133,19137,19141,19144,19145,19189,19191,19230,19231,19233,19236,19255,19280,19313,19339,19343,19347,19348,19349,19351,19355,19379,19411,19437,19465,19469,19511,19523,19534,19539,19670,19700,19720,19723,19749,19753,19806,19814,19815,19829,19831,19833,19837,19838,19839,19841,20013,20019,20020,20027,20031,20076,20173,20445,20449,20495,20556,20765,20807,20851,20853,20863,20866,20867,20868,20869,20899,20913,20919,20922,20925,20931,20937,20983,20986,20987,21387,21422,21624,21693,21994,21996,22004,22060,22073,22074,22218,22293,22383,22386,22670,22684,22880,22882,22883,22884,22990,23062,23095,23113,23127,23144]]],["+",[37,37,[[0,8,8,0,8,[[11,1,1,0,1],[18,3,3,1,4],[19,1,1,4,5],[23,2,2,5,7],[30,1,1,7,8]]],[2,2,2,8,10,[[105,1,1,8,9],[111,1,1,9,10]]],[3,1,1,10,11,[[148,1,1,10,11]]],[4,1,1,11,12,[[182,1,1,11,12]]],[5,2,2,12,14,[[210,2,2,12,14]]],[6,1,1,14,15,[[212,1,1,14,15]]],[8,2,2,15,17,[[237,1,1,15,16],[259,1,1,16,17]]],[9,1,1,17,18,[[272,1,1,17,18]]],[10,5,5,18,23,[[298,2,2,18,20],[301,2,2,20,22],[309,1,1,22,23]]],[11,1,1,23,24,[[335,1,1,23,24]]],[13,6,6,24,30,[[372,2,2,24,26],[374,1,1,26,27],[401,2,2,27,29],[402,1,1,29,30]]],[17,2,2,30,32,[[450,2,2,30,32]]],[19,1,1,32,33,[[630,1,1,32,33]]],[23,3,3,33,36,[[751,1,1,33,34],[755,1,1,34,35],[760,1,1,35,36]]],[24,1,1,36,37,[[801,1,1,36,37]]]],[299,489,491,493,508,598,631,889,3233,3382,4732,5713,6479,6482,6564,7268,7860,8178,9009,9010,9120,9125,9391,10195,11297,11298,11360,11971,11978,11994,13213,13221,16467,19145,19236,19348,20445]]],["Father",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17835]]],["chief",[2,2,[[3,2,2,0,2,[[141,2,2,0,2]]]],[4485,4486]]],["father",[578,500,[[0,162,136,0,136,[[1,1,1,0,1],[3,2,2,1,3],[8,4,3,3,6],[9,1,1,6,7],[10,3,2,7,9],[16,2,2,9,11],[18,8,7,11,18],[19,1,1,18,19],[21,3,2,19,21],[25,5,4,21,25],[26,24,16,25,41],[27,4,4,41,45],[28,1,1,45,46],[30,10,9,46,55],[31,2,1,55,56],[32,1,1,56,57],[33,5,5,57,62],[34,2,2,62,64],[35,3,3,64,67],[36,9,8,67,75],[41,7,6,75,81],[42,7,7,81,88],[43,15,11,88,99],[44,11,9,99,108],[45,4,4,108,112],[46,6,6,112,118],[47,6,5,118,123],[48,4,4,123,127],[49,11,9,127,136]]],[1,8,8,136,144,[[51,1,1,136,137],[52,1,1,137,138],[67,1,1,138,139],[69,1,1,139,140],[70,2,2,140,142],[71,1,1,142,143],[89,1,1,143,144]]],[2,9,8,144,152,[[107,3,3,144,147],[108,1,1,147,148],[109,2,1,148,149],[110,3,3,149,152]]],[3,20,17,152,169,[[119,4,4,152,156],[122,1,1,156,157],[128,1,1,157,158],[134,1,1,158,159],[143,5,4,159,163],[146,5,3,163,166],[152,3,3,166,169]]],[4,14,14,169,183,[[157,1,1,169,170],[173,3,3,170,173],[174,4,4,173,177],[178,1,1,177,178],[179,2,2,178,180],[184,2,2,180,182],[185,1,1,182,183]]],[5,12,11,183,194,[[188,2,2,183,185],[192,1,1,185,186],[201,2,2,186,188],[203,2,2,188,190],[205,1,1,190,191],[207,1,1,191,192],[210,3,2,192,194]]],[6,33,31,194,225,[[211,1,1,194,195],[216,1,1,195,196],[218,1,1,196,197],[219,4,4,197,201],[221,3,3,201,204],[224,9,8,204,212],[225,3,3,212,215],[226,2,1,215,216],[227,1,1,216,217],[228,2,2,217,219],[229,6,6,219,225]]],[7,3,2,225,227,[[233,1,1,225,226],[235,2,1,226,227]]],[8,36,31,227,258,[[237,3,3,227,230],[244,2,2,230,232],[245,2,2,232,234],[249,6,5,234,239],[254,4,3,239,242],[255,14,12,242,254],[257,2,2,254,256],[258,2,1,256,257],[259,1,1,257,258]]],[9,16,14,258,272,[[268,1,1,258,259],[269,1,1,259,260],[273,1,1,260,261],[275,1,1,261,262],[276,3,2,262,264],[279,1,1,264,265],[282,2,2,265,267],[283,4,3,267,270],[285,1,1,270,271],[287,1,1,271,272]]],[10,58,50,272,322,[[291,1,1,272,273],[292,7,6,273,279],[293,4,4,279,283],[295,3,3,283,286],[296,1,1,286,287],[297,2,2,287,289],[298,5,5,289,294],[299,2,2,294,296],[301,5,5,296,301],[302,9,6,301,307],[303,2,2,307,309],[305,8,6,309,315],[309,1,1,315,316],[310,3,1,316,317],[312,5,5,317,322]]],[11,30,25,322,347,[[314,2,1,322,323],[315,3,2,323,325],[316,2,2,325,327],[317,1,1,327,328],[318,1,1,328,329],[321,1,1,329,330],[325,3,2,330,332],[326,4,3,332,335],[327,3,3,335,338],[328,1,1,338,339],[330,1,1,339,340],[332,1,1,340,341],[333,4,3,341,344],[334,1,1,344,345],[335,1,1,345,346],[336,1,1,346,347]]],[12,55,43,347,390,[[339,16,12,347,359],[341,15,10,359,369],[344,3,3,369,372],[345,1,1,372,373],[346,2,2,373,375],[354,1,1,375,376],[356,3,2,376,378],[359,1,1,378,379],[361,2,2,379,381],[362,2,2,381,383],[363,2,2,383,385],[365,5,3,385,388],[366,2,2,388,390]]],[13,51,44,390,434,[[367,2,2,390,392],[368,5,4,392,396],[369,1,1,396,397],[370,1,1,397,398],[371,1,1,398,399],[372,4,4,399,403],[373,2,2,403,405],[375,1,1,405,406],[376,9,6,406,412],[381,1,1,412,413],[382,2,1,413,414],[383,3,3,414,417],[386,1,1,417,418],[387,4,3,418,421],[388,1,1,421,422],[390,1,1,422,423],[391,1,1,423,424],[392,2,2,424,426],[393,1,1,426,427],[394,1,1,427,428],[395,1,1,428,429],[399,4,3,429,432],[400,2,2,432,434]]],[16,2,1,434,435,[[427,2,1,434,435]]],[17,5,5,435,440,[[452,1,1,435,436],[464,1,1,436,437],[466,1,1,437,438],[473,1,1,438,439],[477,1,1,439,440]]],[18,4,4,440,444,[[504,1,1,440,441],[545,1,1,441,442],[566,1,1,442,443],[580,1,1,443,444]]],[19,17,17,444,461,[[628,1,1,444,445],[631,1,1,445,446],[637,1,1,446,447],[642,1,1,447,448],[644,2,2,448,450],[646,2,2,450,452],[647,1,1,452,453],[650,3,3,453,456],[655,2,2,456,458],[656,1,1,458,459],[657,2,2,459,461]]],[22,12,11,461,472,[[681,1,1,461,462],[686,1,1,462,463],[700,1,1,463,464],[716,2,2,464,466],[721,1,1,466,467],[723,1,1,467,468],[729,1,1,468,469],[736,1,1,469,470],[741,2,1,470,471],[742,1,1,471,472]]],[23,14,14,472,486,[[746,1,1,472,473],[747,2,2,473,475],[756,1,1,475,476],[760,1,1,476,477],[764,1,1,477,478],[766,2,2,478,480],[775,1,1,480,481],[779,5,5,481,486]]],[25,10,9,486,495,[[817,2,2,486,488],[819,6,5,488,493],[823,1,1,493,494],[845,1,1,494,495]]],[29,1,1,495,496,[[880,1,1,495,496]]],[32,1,1,496,497,[[899,1,1,496,497]]],[37,2,1,497,498,[[923,2,1,497,498]]],[38,3,2,498,500,[[925,2,1,498,499],[926,1,1,499,500]]]],[54,99,100,223,227,228,255,294,295,401,402,488,489,490,491,492,494,495,507,554,568,695,707,710,716,733,736,737,739,741,745,746,749,753,757,758,759,761,765,766,768,775,780,781,786,807,878,879,880,882,891,902,908,915,926,937,979,984,986,991,993,999,1029,1038,1049,1064,1083,1084,1085,1087,1093,1094,1105,1115,1118,1265,1281,1284,1287,1288,1289,1292,1297,1298,1301,1313,1317,1318,1341,1343,1344,1346,1348,1349,1351,1354,1355,1356,1358,1361,1366,1367,1371,1376,1377,1381,1383,1385,1387,1389,1391,1415,1421,1425,1426,1427,1431,1432,1452,1460,1468,1469,1470,1475,1498,1499,1501,1508,1511,1512,1513,1516,1520,1521,1522,1523,1572,1585,2003,2063,2092,2094,2130,2722,3258,3260,3262,3284,3327,3347,3354,3356,3696,3716,3722,3727,3830,4073,4259,4557,4558,4561,4565,4652,4653,4664,4885,4887,4891,5069,5460,5465,5466,5485,5486,5489,5499,5571,5601,5607,5764,5765,5819,5882,5887,5972,6215,6220,6276,6279,6368,6392,6478,6508,6523,6679,6751,6755,6771,6782,6810,6865,6866,6868,6911,6912,6913,6914,6915,6918,6919,6925,6930,6931,6935,6980,6990,7012,7022,7027,7028,7029,7030,7032,7033,7160,7207,7265,7267,7270,7394,7396,7420,7430,7509,7535,7536,7537,7559,7708,7709,7710,7731,7732,7733,7736,7738,7739,7740,7742,7743,7762,7763,7764,7790,7802,7827,7850,8081,8089,8194,8234,8242,8243,8322,8429,8447,8457,8459,8472,8548,8594,8723,8782,8794,8796,8801,8802,8814,8819,8822,8823,8830,8879,8881,8883,8908,8948,8985,9000,9002,9003,9005,9011,9055,9056,9112,9114,9135,9141,9151,9155,9157,9160,9161,9162,9165,9195,9196,9252,9260,9264,9268,9273,9275,9407,9442,9523,9526,9530,9532,9533,9563,9578,9589,9621,9622,9660,9695,9781,9885,9896,9899,9901,9917,9928,9959,9963,9965,10027,10103,10122,10139,10140,10147,10199,10211,10323,10327,10329,10330,10348,10350,10351,10355,10356,10357,10358,10361,10388,10389,10390,10396,10397,10399,10402,10403,10404,10406,10549,10557,10566,10604,10634,10650,10876,10909,10910,10974,11017,11034,11049,11052,11083,11087,11147,11149,11152,11174,11187,11202,11203,11214,11218,11225,11228,11230,11262,11269,11286,11289,11290,11292,11341,11342,11395,11399,11401,11404,11405,11406,11409,11508,11512,11525,11526,11527,11619,11627,11628,11636,11648,11699,11707,11733,11736,11757,11765,11793,11911,11930,11931,11935,11936,12731,13274,13548,13606,13821,13937,14295,14905,15352,15562,16408,16491,16657,16827,16894,16898,16938,16951,16974,17066,17068,17069,17203,17220,17227,17262,17268,17713,17811,18073,18395,18409,18532,18571,18675,18800,18882,18893,18992,19006,19021,19255,19343,19437,19465,19469,19700,19829,19831,19833,19839,19841,20765,20807,20853,20866,20867,20868,20869,20983,21624,22386,22670,23062,23095,23113]]],["father's",[116,107,[[0,28,25,0,25,[[8,1,1,0,1],[23,2,2,1,3],[25,1,1,3,4],[27,1,1,4,5],[28,2,2,5,7],[30,6,5,7,12],[34,1,1,12,13],[36,2,2,13,15],[37,2,1,15,16],[40,1,1,16,17],[45,2,1,17,18],[46,1,1,18,19],[47,1,1,19,20],[48,2,2,20,22],[49,3,3,22,25]]],[1,2,2,25,27,[[51,1,1,25,26],[64,1,1,26,27]]],[2,11,8,27,35,[[107,6,4,27,31],[109,4,3,31,34],[111,1,1,34,35]]],[3,6,6,35,41,[[118,1,1,35,36],[134,1,1,36,37],[143,2,2,37,39],[146,2,2,39,41]]],[4,6,3,41,44,[[174,4,2,41,43],[179,2,1,43,44]]],[5,3,3,44,47,[[188,2,2,44,46],[192,1,1,46,47]]],[6,11,11,47,58,[[216,3,3,47,50],[219,2,2,50,52],[221,2,2,52,54],[224,2,2,54,56],[229,2,2,56,58]]],[8,11,11,58,69,[[237,1,1,58,59],[244,1,1,59,60],[252,3,3,60,63],[253,2,2,63,65],[257,4,4,65,69]]],[9,10,10,69,79,[[269,2,2,69,71],[275,1,1,71,72],[280,1,1,72,73],[281,1,1,73,74],[282,3,3,74,77],[285,1,1,77,78],[290,1,1,78,79]]],[10,2,2,79,81,[[302,1,1,79,80],[308,1,1,80,81]]],[11,1,1,81,82,[[322,1,1,81,82]]],[12,6,6,82,88,[[342,1,1,82,83],[344,2,2,83,85],[349,1,1,85,86],[358,1,1,86,87],[360,1,1,87,88]]],[13,3,3,88,91,[[368,1,1,88,89],[376,1,1,89,90],[387,1,1,90,91]]],[14,1,1,91,92,[[404,1,1,91,92]]],[15,2,2,92,94,[[413,1,1,92,93],[419,1,1,93,94]]],[16,1,1,94,95,[[429,1,1,94,95]]],[18,1,1,95,96,[[522,1,1,95,96]]],[19,5,5,96,101,[[631,1,1,96,97],[633,1,1,97,98],[640,1,1,98,99],[642,1,1,99,100],[654,1,1,100,101]]],[22,3,3,101,104,[[685,1,1,101,102],[700,2,2,102,104]]],[23,1,1,104,105,[[779,1,1,104,105]]],[25,2,2,105,107,[[819,1,1,105,106],[823,1,1,106,107]]]],[228,614,629,707,794,804,807,874,878,887,892,903,1033,1085,1095,1130,1246,1417,1432,1468,1477,1481,1507,1514,1528,1570,1922,3259,3262,3263,3265,3329,3335,3337,3382,3660,4258,4561,4564,4651,4664,5491,5500,5605,5881,5887,5974,6669,6679,6681,6759,6772,6831,6836,6924,6928,7026,7027,7271,7411,7633,7643,7652,7678,7694,7788,7798,7803,7809,8088,8110,8234,8365,8423,8445,8447,8448,8539,8709,9161,9359,9796,10429,10537,10575,10748,10951,10994,11224,11405,11637,12086,12302,12481,12776,14607,16493,16560,16748,16812,17179,17799,18075,18076,19837,20863,20987]]],["fathers",[468,438,[[0,10,10,0,10,[[14,1,1,0,1],[30,1,1,1,2],[45,1,1,2,3],[46,3,3,3,6],[47,3,3,6,9],[48,1,1,9,10]]],[1,12,11,10,21,[[52,3,3,10,13],[53,1,1,13,14],[55,1,1,14,15],[59,2,1,15,16],[61,1,1,16,17],[62,2,2,17,19],[69,1,1,19,20],[83,1,1,20,21]]],[2,3,3,21,24,[[114,1,1,21,22],[115,2,2,22,24]]],[3,54,50,24,74,[[117,19,19,24,43],[118,2,2,43,45],[119,2,2,45,47],[120,8,8,47,55],[123,1,1,55,56],[127,1,1,56,57],[129,1,1,57,58],[130,2,2,58,60],[133,3,2,60,62],[136,2,1,62,63],[142,1,1,63,64],[147,1,1,64,65],[148,2,2,65,67],[149,1,1,67,68],[150,2,1,68,69],[152,6,5,69,74]]],[4,49,47,74,121,[[153,4,4,74,78],[156,3,3,78,81],[157,2,2,81,83],[158,4,4,83,87],[159,3,3,87,90],[160,4,4,90,94],[161,1,1,94,95],[162,3,3,95,98],[163,2,2,98,100],[164,1,1,100,101],[165,2,2,101,103],[171,2,1,103,104],[176,2,1,104,105],[178,3,3,105,108],[179,1,1,108,109],[180,3,3,109,112],[181,2,2,112,114],[182,3,3,114,117],[183,3,3,117,120],[184,1,1,120,121]]],[5,17,16,121,137,[[187,1,1,121,122],[190,1,1,122,123],[191,1,1,123,124],[200,1,1,124,125],[204,1,1,125,126],[205,1,1,126,127],[207,4,3,127,130],[208,2,2,130,132],[210,5,5,132,137]]],[6,9,9,137,146,[[212,6,6,137,143],[213,1,1,143,144],[216,1,1,144,145],[231,1,1,145,146]]],[8,5,4,146,150,[[247,5,4,146,150]]],[9,1,1,150,151,[[273,1,1,150,151]]],[10,30,27,151,178,[[291,1,1,151,152],[292,1,1,152,153],[298,8,8,153,161],[299,1,1,161,162],[301,2,2,162,164],[303,1,1,164,165],[304,5,4,165,169],[305,4,3,169,172],[306,2,2,172,174],[311,2,2,174,176],[312,3,2,176,178]]],[11,38,33,178,211,[[320,2,1,178,179],[321,1,1,179,180],[322,1,1,180,181],[324,2,2,181,183],[325,2,2,183,185],[326,6,5,185,190],[327,6,4,190,194],[328,2,1,194,195],[329,4,4,195,199],[331,1,1,199,200],[332,2,2,200,202],[333,4,4,202,206],[334,2,2,206,208],[335,2,2,208,210],[336,1,1,210,211]]],[12,44,39,211,250,[[341,1,1,211,212],[342,5,4,212,216],[343,1,1,216,217],[344,4,4,217,221],[345,4,4,221,225],[346,6,5,225,230],[349,2,2,230,232],[352,1,1,232,233],[354,1,1,233,234],[360,3,2,234,236],[361,6,4,236,240],[363,5,5,240,245],[364,1,1,245,246],[366,4,4,246,250]]],[13,64,60,250,310,[[367,1,1,250,251],[371,1,1,251,252],[372,3,3,252,255],[373,1,1,255,256],[375,1,1,256,257],[377,1,1,257,258],[378,1,1,258,259],[379,2,2,259,261],[380,2,2,261,263],[381,1,1,263,264],[382,1,1,264,265],[383,1,1,265,266],[385,2,2,266,268],[386,2,2,268,270],[387,4,3,270,273],[389,1,1,273,274],[390,2,2,274,276],[391,4,3,276,279],[392,4,3,279,282],[393,1,1,282,283],[394,4,4,283,287],[395,3,3,287,290],[396,5,4,290,294],[397,1,1,294,295],[398,4,4,295,299],[399,3,3,299,302],[400,4,4,302,306],[401,3,3,306,309],[402,1,1,309,310]]],[14,13,12,310,322,[[403,1,1,310,311],[404,1,1,311,312],[405,1,1,312,313],[406,2,2,313,315],[409,1,1,315,316],[410,3,3,316,319],[411,1,1,319,320],[412,3,2,320,322]]],[15,16,16,322,338,[[419,2,2,322,324],[420,1,1,324,325],[421,7,7,325,332],[422,1,1,332,333],[423,1,1,333,334],[424,3,3,334,337],[425,1,1,337,338]]],[17,2,2,338,340,[[443,1,1,338,339],[465,1,1,339,340]]],[18,14,14,340,354,[[499,1,1,340,341],[516,1,1,341,342],[521,1,1,342,343],[522,1,1,343,344],[526,1,1,344,345],[555,5,5,345,350],[572,1,1,350,351],[583,2,2,351,353],[586,1,1,353,354]]],[19,3,3,354,357,[[644,1,1,354,355],[646,1,1,355,356],[649,1,1,356,357]]],[22,5,5,357,362,[[692,1,1,357,358],[715,1,1,358,359],[717,1,1,359,360],[742,1,1,360,361],[743,1,1,361,362]]],[23,45,45,362,407,[[746,1,1,362,363],[747,3,3,363,366],[750,1,1,366,367],[751,5,5,367,372],[753,2,2,372,374],[755,4,4,374,378],[757,1,1,378,379],[758,1,1,379,380],[760,5,5,380,385],[761,1,1,385,386],[763,1,1,386,387],[767,2,2,387,389],[768,1,1,389,390],[769,1,1,390,391],[774,1,1,391,392],[775,2,2,392,394],[776,2,2,394,396],[778,3,3,396,399],[779,1,1,399,400],[788,5,5,400,405],[791,1,1,405,406],[794,1,1,406,407]]],[24,1,1,407,408,[[801,1,1,407,408]]],[25,13,12,408,420,[[803,1,1,408,409],[806,2,1,409,410],[819,1,1,410,411],[821,6,6,411,417],[837,1,1,417,418],[838,1,1,418,419],[848,1,1,419,420]]],[26,7,6,420,426,[[858,3,3,420,423],[860,4,3,423,426]]],[27,1,1,426,427,[[870,1,1,426,427]]],[28,1,1,427,428,[[876,1,1,427,428]]],[29,1,1,428,429,[[880,1,1,428,429]]],[32,1,1,429,430,[[899,1,1,429,430]]],[37,5,5,430,435,[[911,4,4,430,434],[918,1,1,434,435]]],[38,4,3,435,438,[[926,1,1,435,436],[927,1,1,436,437],[928,2,1,437,438]]]],[375,876,1420,1423,1429,1450,1466,1467,1472,1502,1592,1594,1595,1606,1680,1783,1819,1872,1878,2056,2503,3510,3563,3564,3606,3608,3620,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3648,3649,3651,3690,3692,3707,3712,3745,3765,3772,3777,3781,3783,3785,3789,3852,4036,4077,4126,4131,4246,4247,4326,4544,4690,4726,4746,4814,4830,4880,4882,4883,4886,4887,4900,4903,4913,4927,5005,5035,5041,5056,5062,5089,5096,5104,5109,5119,5123,5124,5138,5140,5153,5155,5162,5197,5201,5208,5217,5229,5241,5278,5289,5414,5541,5569,5573,5581,5588,5622,5647,5675,5692,5704,5713,5717,5728,5735,5744,5748,5775,5857,5931,5940,6188,6296,6372,6382,6424,6425,6440,6454,6478,6482,6490,6491,6493,6546,6555,6557,6562,6565,6567,6572,6667,7124,7466,7467,7468,7475,8192,8738,8780,8986,9006,9019,9025,9033,9038,9042,9043,9060,9129,9151,9206,9233,9238,9240,9249,9257,9261,9273,9289,9311,9454,9455,9520,9530,9751,9784,9828,9868,9871,9880,9884,9902,9912,9916,9918,9925,9932,9934,9947,9963,9983,9996,9997,9998,10024,10073,10115,10119,10127,10134,10137,10141,10158,10165,10197,10202,10208,10423,10441,10443,10452,10453,10473,10539,10542,10544,10546,10581,10585,10588,10603,10624,10628,10634,10648,10649,10737,10750,10803,10874,10992,11007,11019,11021,11045,11046,11090,11098,11103,11108,11109,11110,11170,11179,11182,11184,11196,11270,11307,11313,11320,11346,11395,11430,11453,11465,11471,11476,11479,11502,11522,11537,11580,11584,11593,11620,11625,11634,11643,11658,11695,11701,11708,11709,11732,11734,11744,11755,11764,11770,11773,11789,11791,11796,11797,11800,11834,11835,11846,11849,11871,11888,11889,11890,11908,11916,11920,11928,11954,11961,11965,11966,11970,11971,11990,12008,12021,12095,12109,12112,12113,12200,12202,12229,12230,12244,12263,12268,12490,12491,12506,12513,12520,12527,12534,12543,12545,12547,12583,12601,12636,12646,12647,12689,13037,13558,14208,14524,14572,14613,14667,15116,15118,15121,15125,15170,15463,15657,15658,15769,16879,16939,17043,17949,18364,18418,18896,18904,18970,19020,19026,19027,19110,19126,19133,19137,19141,19144,19189,19191,19230,19231,19233,19236,19280,19313,19339,19347,19349,19351,19355,19379,19411,19511,19523,19534,19539,19670,19720,19723,19749,19753,19806,19814,19815,19838,20013,20019,20020,20027,20031,20076,20173,20449,20495,20556,20851,20899,20913,20922,20925,20931,20937,21387,21422,21693,21994,21996,22004,22060,22073,22074,22218,22293,22383,22684,22880,22882,22883,22884,22990,23113,23127,23144]]],["fathers'",[9,9,[[1,2,2,0,2,[[55,1,1,0,1],[59,1,1,1,2]]],[3,2,2,2,4,[[133,1,1,2,3],[142,1,1,3,4]]],[15,2,2,4,6,[[414,2,2,4,6]]],[25,2,2,6,8,[[821,1,1,6,7],[823,1,1,7,8]]],[26,1,1,8,9,[[860,1,1,8,9]]]],[1669,1783,4250,4491,12310,12312,20919,20986,22060]]],["patrimony",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5392]]],["prince",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6440]]],["principal",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11021]]]]},{"k":"H2","v":[["*",[9,7,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,7,5,2,7,[[851,1,1,2,3],[854,6,4,3,7]]]],[12125,12146,21781,21876,21885,21887,21892]]],["father",[6,4,[[26,6,4,0,4,[[854,6,4,0,4]]]],[21876,21885,21887,21892]]],["fathers",[3,3,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,1,1,2,3,[[851,1,1,2,3]]]],[12125,12146,21781]]]]},{"k":"H3","v":[["*",[2,2,[[17,1,1,0,1,[[443,1,1,0,1]]],[21,1,1,1,2,[[676,1,1,1,2]]]],[13041,17625]]],["fruits",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17625]]],["greenness",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13041]]]]},{"k":"H4","v":[["fruit",[3,3,[[26,3,3,0,3,[[853,3,3,0,3]]]],[21849,21851,21858]]]]},{"k":"H5","v":[["Abagtha",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12712]]]]},{"k":"H6","v":[["*",[184,174,[[1,1,1,0,1,[[59,1,1,0,1]]],[2,2,2,1,3,[[112,1,1,1,2],[115,1,1,2,3]]],[3,8,6,3,9,[[132,1,1,3,4],[133,2,1,4,5],[137,2,2,5,7],[140,1,1,7,8],[149,2,1,8,9]]],[4,24,19,9,28,[[156,2,1,9,10],[159,3,3,10,13],[160,4,2,13,15],[161,1,1,15,16],[163,2,2,16,18],[164,3,2,18,20],[174,1,1,20,21],[178,1,1,21,22],[180,4,4,22,26],[182,2,1,26,27],[184,1,1,27,28]]],[5,3,3,28,31,[[193,1,1,28,29],[209,2,2,29,31]]],[6,1,1,31,32,[[215,1,1,31,32]]],[8,2,2,32,34,[[244,2,2,32,34]]],[9,1,1,34,35,[[267,1,1,34,35]]],[11,7,7,35,42,[[321,1,1,35,36],[322,1,1,36,37],[323,1,1,37,38],[325,1,1,38,39],[331,1,1,39,40],[333,1,1,40,41],[336,1,1,41,42]]],[16,13,11,42,53,[[428,2,2,42,44],[429,4,3,44,47],[432,1,1,47,48],[433,2,2,48,50],[434,4,3,50,53]]],[17,15,15,53,68,[[438,1,1,53,54],[439,4,4,54,58],[441,1,1,58,59],[443,1,1,59,60],[446,1,1,60,61],[447,1,1,61,62],[449,1,1,62,63],[453,1,1,63,64],[455,1,1,64,65],[464,1,1,65,66],[465,1,1,66,67],[466,1,1,67,68]]],[18,26,26,68,94,[[478,1,1,68,69],[479,1,1,69,70],[482,1,1,70,71],[486,4,4,71,75],[487,1,1,75,76],[498,1,1,76,77],[508,1,1,77,78],[514,1,1,78,79],[518,1,1,79,80],[526,1,1,80,81],[545,1,1,81,82],[550,1,1,82,83],[557,1,1,83,84],[560,1,1,84,85],[569,1,1,85,86],[579,1,1,86,87],[589,1,1,87,88],[596,3,3,88,91],[619,1,1,91,92],[620,1,1,92,93],[623,1,1,93,94]]],[19,10,9,94,103,[[628,1,1,94,95],[637,1,1,95,96],[638,3,2,96,98],[646,1,1,98,99],[648,1,1,99,100],[655,1,1,100,101],[656,1,1,101,102],[658,1,1,102,103]]],[20,6,6,103,109,[[661,1,1,103,104],[663,1,1,104,105],[665,2,2,105,107],[667,2,2,107,109]]],[22,7,7,109,116,[[704,1,1,109,110],[705,1,1,110,111],[707,1,1,111,112],[715,1,1,112,113],[719,1,1,113,114],[735,1,1,114,115],[738,1,1,115,116]]],[23,26,26,116,142,[[745,1,1,116,117],[748,1,1,117,118],[750,1,1,118,119],[751,1,1,119,120],[753,1,1,120,121],[754,1,1,121,122],[756,1,1,122,123],[759,1,1,123,124],[762,2,2,124,126],[767,1,1,126,127],[769,2,2,127,129],[771,2,2,129,131],[775,1,1,131,132],[784,1,1,132,133],[790,1,1,133,134],[792,3,3,134,137],[793,2,2,137,139],[794,1,1,139,140],[795,2,2,140,142]]],[24,2,2,142,144,[[798,1,1,142,143],[799,1,1,143,144]]],[25,14,14,144,158,[[807,1,1,144,145],[808,1,1,145,146],[813,1,1,146,147],[820,1,1,147,148],[823,1,1,148,149],[826,2,2,149,151],[827,1,1,151,152],[829,1,1,152,153],[831,1,1,153,154],[833,1,1,154,155],[835,2,2,155,157],[838,1,1,157,158]]],[28,1,1,158,159,[[876,1,1,158,159]]],[29,3,3,159,162,[[879,1,1,159,160],[880,1,1,160,161],[881,1,1,161,162]]],[30,2,2,162,164,[[888,2,2,162,164]]],[31,4,4,164,168,[[889,2,2,164,166],[891,1,1,166,167],[892,1,1,167,168]]],[32,3,3,168,171,[[896,1,1,168,169],[897,1,1,169,170],[899,1,1,170,171]]],[35,2,2,171,173,[[907,2,2,171,173]]],[37,1,1,173,174,[[919,1,1,173,174]]]],[1784,3432,3562,4227,4256,4369,4370,4465,4812,5030,5121,5131,5135,5156,5157,5160,5212,5225,5242,5243,5473,5571,5631,5633,5662,5674,5726,5786,5983,6473,6476,6654,7394,7411,8049,9764,9812,9830,9878,10079,10122,10204,12756,12760,12769,12776,12778,12811,12822,12828,12840,12846,12858,12907,12937,12939,12941,12950,12996,13042,13128,13151,13200,13293,13333,13545,13559,13607,13945,13957,13979,14024,14026,14027,14039,14057,14201,14343,14470,14547,14658,14902,15047,15214,15258,15420,15547,15813,15990,15993,16074,16290,16305,16345,16432,16684,16695,16698,16934,17012,17224,17227,17290,17365,17411,17436,17444,17481,17493,18144,18164,18207,18371,18462,18766,18833,18956,19036,19110,19147,19187,19216,19266,19322,19391,19402,19485,19544,19569,19606,19611,19719,19956,20053,20088,20116,20126,20134,20165,20172,20230,20267,20341,20372,20566,20603,20702,20886,21003,21090,21099,21117,21173,21217,21261,21317,21329,21408,22302,22372,22393,22410,22518,22522,22537,22545,22567,22578,22629,22643,22666,22810,22818,23004]]],["+",[24,20,[[3,1,1,0,1,[[149,1,1,0,1]]],[4,10,6,1,7,[[156,2,1,1,2],[159,1,1,2,3],[160,2,1,3,4],[164,3,2,4,6],[182,2,1,6,7]]],[11,2,2,7,9,[[322,1,1,7,8],[323,1,1,8,9]]],[16,3,3,9,12,[[428,1,1,9,10],[433,2,2,10,12]]],[17,1,1,12,13,[[446,1,1,12,13]]],[18,1,1,13,14,[[619,1,1,13,14]]],[20,1,1,14,15,[[665,1,1,14,15]]],[23,3,3,15,18,[[756,1,1,15,16],[759,1,1,16,17],[769,1,1,17,18]]],[25,1,1,18,19,[[826,1,1,18,19]]],[35,1,1,19,20,[[907,1,1,19,20]]]],[4812,5030,5135,5156,5242,5243,5726,9812,9830,12760,12822,12828,13128,16290,17436,19266,19322,19569,21099,22818]]],["broken",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14343]]],["destroy",[30,29,[[2,1,1,0,1,[[112,1,1,0,1]]],[3,2,2,1,3,[[140,1,1,1,2],[149,1,1,2,3]]],[4,3,3,3,6,[[159,1,1,3,4],[161,1,1,4,5],[180,1,1,5,6]]],[5,1,1,6,7,[[193,1,1,6,7]]],[11,1,1,7,8,[[336,1,1,7,8]]],[16,3,2,8,10,[[429,1,1,8,9],[434,2,1,9,10]]],[18,4,4,10,14,[[482,1,1,10,11],[498,1,1,11,12],[596,1,1,12,13],[620,1,1,13,14]]],[19,1,1,14,15,[[628,1,1,14,15]]],[23,6,6,15,21,[[745,1,1,15,16],[762,1,1,16,17],[767,1,1,17,18],[775,1,1,18,19],[790,1,1,19,20],[793,1,1,20,21]]],[25,5,5,21,26,[[807,1,1,21,22],[823,1,1,22,23],[829,1,1,23,24],[831,1,1,24,25],[833,1,1,25,26]]],[30,1,1,26,27,[[888,1,1,26,27]]],[32,1,1,27,28,[[897,1,1,27,28]]],[35,1,1,28,29,[[907,1,1,28,29]]]],[3432,4465,4812,5121,5160,5674,5983,10204,12769,12858,13979,14201,15993,16305,16432,18956,19391,19485,19719,20053,20165,20566,21003,21173,21217,21261,22518,22643,22810]]],["destroyed",[16,16,[[1,1,1,0,1,[[59,1,1,0,1]]],[4,3,3,1,4,[[159,1,1,1,2],[163,1,1,2,3],[180,1,1,3,4]]],[11,3,3,4,7,[[325,1,1,4,5],[331,1,1,5,6],[333,1,1,6,7]]],[16,4,4,7,11,[[428,1,1,7,8],[429,1,1,8,9],[434,2,2,9,11]]],[18,1,1,11,12,[[486,1,1,11,12]]],[22,1,1,12,13,[[715,1,1,12,13]]],[23,1,1,13,14,[[795,1,1,13,14]]],[24,1,1,14,15,[[798,1,1,14,15]]],[25,1,1,15,16,[[827,1,1,15,16]]]],[1784,5131,5212,5662,9878,10079,10122,12756,12776,12840,12846,14026,18371,20267,20341,21117]]],["destroyest",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13200]]],["destroyeth",[3,3,[[4,1,1,0,1,[[160,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[20,1,1,2,3,[[667,1,1,2,3]]]],[5157,13151,17493]]],["destruction",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22522]]],["faileth",[1,1,[[25,1,1,0,1,[[813,1,1,0,1]]]],[20702]]],["lose",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17365]]],["lost",[9,9,[[4,1,1,0,1,[[174,1,1,0,1]]],[8,2,2,1,3,[[244,2,2,1,3]]],[18,1,1,3,4,[[596,1,1,3,4]]],[23,1,1,4,5,[[794,1,1,4,5]]],[25,4,4,5,9,[[820,1,1,5,6],[835,2,2,6,8],[838,1,1,8,9]]]],[5473,7394,7411,16074,20172,20886,21317,21329,21408]]],["perish",[70,68,[[2,1,1,0,1,[[115,1,1,0,1]]],[3,2,1,1,2,[[133,2,1,1,2]]],[4,5,5,2,7,[[160,1,1,2,3],[163,1,1,3,4],[178,1,1,4,5],[180,2,2,5,7]]],[5,2,2,7,9,[[209,2,2,7,9]]],[6,1,1,9,10,[[215,1,1,9,10]]],[11,1,1,10,11,[[321,1,1,10,11]]],[16,3,2,11,13,[[429,2,1,11,12],[432,1,1,12,13]]],[17,9,9,13,22,[[438,1,1,13,14],[439,2,2,14,16],[441,1,1,16,17],[443,1,1,17,18],[453,1,1,18,19],[455,1,1,19,20],[464,1,1,20,21],[466,1,1,21,22]]],[18,15,15,22,37,[[478,1,1,22,23],[479,1,1,23,24],[486,2,2,24,26],[514,1,1,26,27],[518,1,1,27,28],[526,1,1,28,29],[545,1,1,29,30],[550,1,1,30,31],[557,1,1,31,32],[560,1,1,32,33],[569,1,1,33,34],[579,1,1,34,35],[589,1,1,35,36],[623,1,1,36,37]]],[19,7,7,37,44,[[637,1,1,37,38],[638,2,2,38,40],[646,1,1,40,41],[648,1,1,41,42],[655,1,1,42,43],[658,1,1,43,44]]],[20,1,1,44,45,[[663,1,1,44,45]]],[22,5,5,45,50,[[704,1,1,45,46],[705,1,1,46,47],[707,1,1,47,48],[719,1,1,48,49],[738,1,1,49,50]]],[23,9,9,50,59,[[748,1,1,50,51],[750,1,1,51,52],[754,1,1,52,53],[762,1,1,53,54],[771,2,2,54,56],[784,1,1,56,57],[792,1,1,57,58],[795,1,1,58,59]]],[25,2,2,59,61,[[808,1,1,59,60],[826,1,1,60,61]]],[29,3,3,61,64,[[879,1,1,61,62],[880,1,1,62,63],[881,1,1,63,64]]],[31,3,3,64,67,[[889,2,2,64,66],[891,1,1,66,67]]],[37,1,1,67,68,[[919,1,1,67,68]]]],[3562,4256,5157,5225,5571,5631,5633,6473,6476,6654,9764,12778,12811,12907,12939,12950,12996,13042,13293,13333,13545,13607,13945,13957,14024,14039,14470,14547,14658,14902,15047,15214,15258,15420,15547,15813,16345,16684,16695,16698,16934,17012,17224,17290,17411,18144,18164,18207,18462,18833,19036,19110,19216,19402,19606,19611,19956,20088,20230,20603,21090,22372,22393,22410,22537,22545,22567,23004]]],["perished",[17,17,[[3,2,2,0,2,[[132,1,1,0,1],[137,1,1,1,2]]],[9,1,1,2,3,[[267,1,1,2,3]]],[17,2,2,3,5,[[439,1,1,3,4],[465,1,1,4,5]]],[18,3,3,5,8,[[486,1,1,5,6],[487,1,1,6,7],[596,1,1,7,8]]],[20,1,1,8,9,[[667,1,1,8,9]]],[23,3,3,9,12,[[751,1,1,9,10],[792,1,1,10,11],[793,1,1,11,12]]],[24,1,1,12,13,[[799,1,1,12,13]]],[28,1,1,13,14,[[876,1,1,13,14]]],[31,1,1,14,15,[[892,1,1,14,15]]],[32,2,2,15,17,[[896,1,1,15,16],[899,1,1,16,17]]]],[4227,4370,8049,12937,13559,14027,14057,15990,17481,19147,20116,20134,20372,22302,22578,22629,22666]]],["perisheth",[6,6,[[17,1,1,0,1,[[439,1,1,0,1]]],[19,1,1,1,2,[[638,1,1,1,2]]],[20,1,1,2,3,[[665,1,1,2,3]]],[22,1,1,3,4,[[735,1,1,3,4]]],[23,2,2,4,6,[[753,1,1,4,5],[792,1,1,5,6]]]],[12941,16695,17444,18766,19187,20126]]],["spendeth",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17227]]],["take",[1,1,[[23,1,1,0,1,[[769,1,1,0,1]]]],[19544]]],["undone",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4369]]],["void",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5786]]]]},{"k":"H7","v":[["*",[7,6,[[23,1,1,0,1,[[754,1,1,0,1]]],[26,6,5,1,6,[[851,4,3,1,4],[856,2,2,4,6]]]],[19212,21770,21776,21782,21944,21959]]],["Destroy",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21782]]],["destroy",[3,3,[[26,3,3,0,3,[[851,2,2,0,2],[856,1,1,2,3]]]],[21770,21782,21959]]],["destroyed",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21944]]],["perish",[2,2,[[23,1,1,0,1,[[754,1,1,0,1]]],[26,1,1,1,2,[[851,1,1,1,2]]]],[19212,21776]]]]},{"k":"H8","v":[["perish",[2,2,[[3,2,2,0,2,[[140,2,2,0,2]]]],[4466,4470]]]]},{"k":"H9","v":[["*",[4,4,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,2,2,1,3,[[95,2,2,1,3]]],[4,1,1,3,4,[[174,1,1,3,4]]]],[2122,2852,2853,5473]]],["lost",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2852]]],["thing",[3,3,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,1,1,1,2,[[95,1,1,1,2]]],[4,1,1,2,3,[[174,1,1,2,3]]]],[2122,2853,5473]]]]},{"k":"H10","v":[["destruction",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17189]]]]},{"k":"H11","v":[["*",[5,5,[[17,3,3,0,3,[[461,1,1,0,1],[463,1,1,1,2],[466,1,1,2,3]]],[18,1,1,3,4,[[565,1,1,3,4]]],[19,1,1,4,5,[[642,1,1,4,5]]]],[13473,13526,13600,15319,16818]]],["Destruction",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13526]]],["destruction",[4,4,[[17,2,2,0,2,[[461,1,1,0,1],[466,1,1,1,2]]],[18,1,1,2,3,[[565,1,1,2,3]]],[19,1,1,3,4,[[642,1,1,3,4]]]],[13473,13600,15319,16818]]]]},{"k":"H12","v":[["destruction",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12839]]]]},{"k":"H13","v":[["destruction",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12823]]]]},{"k":"H14","v":[["*",[54,52,[[0,2,2,0,2,[[23,2,2,0,2]]],[1,1,1,2,3,[[59,1,1,2,3]]],[2,1,1,3,4,[[115,1,1,3,4]]],[4,7,7,4,11,[[153,1,1,4,5],[154,1,1,5,6],[162,1,1,6,7],[165,1,1,7,8],[175,1,1,8,9],[177,1,1,9,10],[181,1,1,10,11]]],[5,1,1,11,12,[[210,1,1,11,12]]],[6,4,4,12,16,[[221,1,1,12,13],[229,2,2,13,15],[230,1,1,15,16]]],[8,4,4,16,20,[[250,1,1,16,17],[257,1,1,17,18],[261,1,1,18,19],[266,1,1,19,20]]],[9,10,9,20,29,[[268,1,1,20,21],[272,1,1,21,22],[278,1,1,22,23],[279,3,3,23,26],[280,2,1,26,27],[289,2,2,27,29]]],[10,2,2,29,31,[[310,1,1,29,30],[312,1,1,30,31]]],[11,3,3,31,34,[[320,1,1,31,32],[325,1,1,32,33],[336,1,1,33,34]]],[12,4,4,34,38,[[347,1,1,34,35],[348,2,2,35,37],[356,1,1,37,38]]],[13,1,1,38,39,[[387,1,1,38,39]]],[17,1,1,39,40,[[474,1,1,39,40]]],[18,1,1,40,41,[[558,1,1,40,41]]],[19,4,4,41,45,[[628,3,3,41,44],[633,1,1,44,45]]],[22,5,5,45,50,[[679,1,1,45,46],[706,1,1,46,47],[708,2,2,47,49],[720,1,1,49,50]]],[25,3,2,50,52,[[804,2,1,50,51],[821,1,1,51,52]]]],[596,599,1804,3545,4918,4968,5196,5280,5505,5554,5699,6486,6846,7034,7049,7067,7569,7804,7928,8013,8070,8167,8303,8331,8333,8342,8385,8669,8670,9416,9529,9746,9894,10206,10663,10691,10692,10926,11631,13843,15228,16410,16425,16430,16575,17673,18176,18226,18232,18504,20509,20903]]],["consent",[3,3,[[4,1,1,0,1,[[165,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[19,1,1,2,3,[[628,1,1,2,3]]]],[5280,9416,16410]]],["content",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16575]]],["will",[6,5,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,2,2,1,3,[[177,1,1,1,2],[181,1,1,2,3]]],[22,1,1,3,4,[[708,1,1,3,4]]],[25,2,1,4,5,[[804,2,1,4,5]]]],[3545,5554,5699,18226,20509]]],["willing",[4,4,[[0,2,2,0,2,[[23,2,2,0,2]]],[17,1,1,2,3,[[474,1,1,2,3]]],[22,1,1,3,4,[[679,1,1,3,4]]]],[596,599,13843,17673]]],["would",[40,39,[[1,1,1,0,1,[[59,1,1,0,1]]],[4,4,4,1,5,[[153,1,1,1,2],[154,1,1,2,3],[162,1,1,3,4],[175,1,1,4,5]]],[5,1,1,5,6,[[210,1,1,5,6]]],[6,4,4,6,10,[[221,1,1,6,7],[229,2,2,7,9],[230,1,1,9,10]]],[8,4,4,10,14,[[250,1,1,10,11],[257,1,1,11,12],[261,1,1,12,13],[266,1,1,13,14]]],[9,10,9,14,23,[[268,1,1,14,15],[272,1,1,15,16],[278,1,1,16,17],[279,3,3,17,20],[280,2,1,20,21],[289,2,2,21,23]]],[10,1,1,23,24,[[312,1,1,23,24]]],[11,3,3,24,27,[[320,1,1,24,25],[325,1,1,25,26],[336,1,1,26,27]]],[12,4,4,27,31,[[347,1,1,27,28],[348,2,2,28,30],[356,1,1,30,31]]],[13,1,1,31,32,[[387,1,1,31,32]]],[18,1,1,32,33,[[558,1,1,32,33]]],[19,2,2,33,35,[[628,2,2,33,35]]],[22,3,3,35,38,[[706,1,1,35,36],[708,1,1,36,37],[720,1,1,37,38]]],[25,1,1,38,39,[[821,1,1,38,39]]]],[1804,4918,4968,5196,5505,6486,6846,7034,7049,7067,7569,7804,7928,8013,8070,8167,8303,8331,8333,8342,8385,8669,8670,9529,9746,9894,10206,10663,10691,10692,10926,11631,15228,16425,16430,18176,18232,18504,20903]]]]},{"k":"H15","v":[["desire",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13719]]]]},{"k":"H16","v":[["swift",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13077]]]]},{"k":"H17","v":[["sorrow",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17073]]]]},{"k":"H18","v":[["*",[4,4,[[9,1,1,0,1,[[271,1,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]],[19,1,1,2,3,[[641,1,1,2,3]]],[22,1,1,3,4,[[679,1,1,3,4]]]],[8143,13843,16776,17657]]],["+",[1,1,[[9,1,1,0,1,[[271,1,1,0,1]]]],[8143]]],["crib",[3,3,[[17,1,1,0,1,[[474,1,1,0,1]]],[19,1,1,1,2,[[641,1,1,1,2]]],[22,1,1,2,3,[[679,1,1,2,3]]]],[13843,16776,17657]]]]},{"k":"H19","v":[["point",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20959]]]]},{"k":"H20","v":[["melons",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4029]]]]},{"k":"H21","v":[["Abi",[1,1,[[11,1,1,0,1,[[330,1,1,0,1]]]],[10026]]]]},{"k":"H22","v":[["Abiel",[3,3,[[8,2,2,0,2,[[244,1,1,0,1],[249,1,1,1,2]]],[12,1,1,2,3,[[348,1,1,2,3]]]],[7392,7559,10705]]]]},{"k":"H23","v":[["Abiasaph",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1679]]]]},{"k":"H24","v":[["*",[8,6,[[1,5,4,0,4,[[58,1,1,0,1],[62,1,1,1,2],[72,1,1,2,3],[83,2,1,3,4]]],[2,1,1,4,5,[[91,1,1,4,5]]],[4,2,1,5,6,[[168,2,1,5,6]]]],[1773,1871,2159,2514,2776,5343]]],["Abib",[6,4,[[1,4,3,0,3,[[62,1,1,0,1],[72,1,1,1,2],[83,2,1,2,3]]],[4,2,1,3,4,[[168,2,1,3,4]]]],[1871,2159,2514,5343]]],["corn",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2776]]],["ear",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1773]]]]},{"k":"H25","v":[]},{"k":"H26","v":[["Abigail",[17,17,[[8,11,11,0,11,[[260,9,9,0,9],[262,1,1,9,10],[265,1,1,10,11]]],[9,3,3,11,14,[[268,1,1,11,12],[269,1,1,12,13],[283,1,1,13,14]]],[12,3,3,14,17,[[339,2,2,14,16],[340,1,1,16,17]]]],[7864,7875,7879,7884,7893,7897,7900,7901,7903,7933,7983,8051,8084,8474,10322,10323,10362]]]]},{"k":"H27","v":[["Abidan",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3615,3680,3910,3915,4012]]]]},{"k":"H28","v":[["Abida",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[662,10285]]]]},{"k":"H29","v":[["*",[25,25,[[8,1,1,0,1,[[243,1,1,0,1]]],[10,1,1,1,2,[[304,1,1,1,2]]],[12,5,5,2,7,[[339,1,1,2,3],[340,1,1,3,4],[343,1,1,4,5],[344,1,1,5,6],[361,1,1,6,7]]],[13,15,15,7,22,[[377,2,2,7,9],[378,1,1,9,10],[379,10,10,10,20],[380,1,1,20,21],[395,1,1,21,22]]],[15,3,3,22,25,[[422,1,1,22,23],[424,2,2,23,25]]]],[7371,9219,10330,10371,10482,10543,11025,11434,11436,11453,11454,11455,11456,11457,11468,11470,11472,11473,11474,11475,11476,11792,12556,12628,12641]]],["Abia",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10371]]],["Abiah",[4,4,[[8,1,1,0,1,[[243,1,1,0,1]]],[12,3,3,1,4,[[339,1,1,1,2],[343,1,1,2,3],[344,1,1,3,4]]]],[7371,10330,10482,10543]]],["Abijah",[20,20,[[10,1,1,0,1,[[304,1,1,0,1]]],[12,1,1,1,2,[[361,1,1,1,2]]],[13,15,15,2,17,[[377,2,2,2,4],[378,1,1,4,5],[379,10,10,5,15],[380,1,1,15,16],[395,1,1,16,17]]],[15,3,3,17,20,[[422,1,1,17,18],[424,2,2,18,20]]]],[9219,11025,11434,11436,11453,11454,11455,11456,11457,11468,11470,11472,11473,11474,11475,11476,11792,12556,12628,12641]]]]},{"k":"H30","v":[["*",[12,12,[[1,4,4,0,4,[[55,1,1,0,1],[73,2,2,1,3],[77,1,1,3,4]]],[2,1,1,4,5,[[99,1,1,4,5]]],[3,4,4,5,9,[[119,2,2,5,7],[142,2,2,7,9]]],[12,3,3,9,12,[[343,1,1,9,10],[361,2,2,10,12]]]],[1678,2178,2186,2294,2978,3694,3696,4549,4550,10457,11016,11017]]],["+",[2,2,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1678,4549]]],["Abihu",[10,10,[[1,3,3,0,3,[[73,2,2,0,2],[77,1,1,2,3]]],[2,1,1,3,4,[[99,1,1,3,4]]],[3,3,3,4,7,[[119,2,2,4,6],[142,1,1,6,7]]],[12,3,3,7,10,[[343,1,1,7,8],[361,2,2,8,10]]]],[2178,2186,2294,2978,3694,3696,4550,10457,11016,11017]]]]},{"k":"H31","v":[["Abihud",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10578]]]]},{"k":"H32","v":[["Abihail",[6,6,[[3,1,1,0,1,[[119,1,1,0,1]]],[12,2,2,1,3,[[339,1,1,1,2],[342,1,1,2,3]]],[13,1,1,3,4,[[377,1,1,3,4]]],[16,2,2,4,6,[[427,1,1,4,5],[434,1,1,5,6]]]],[3727,10335,10442,11432,12739,12863]]]]},{"k":"H33","v":[["*",[3,3,[[6,3,3,0,3,[[216,2,2,0,2],[218,1,1,2,3]]]],[6665,6678,6751]]],["Abiezrite",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6665]]],["Abiezrites",[2,2,[[6,2,2,0,2,[[216,1,1,0,1],[218,1,1,1,2]]]],[6678,6751]]]]},{"k":"H34","v":[["*",[61,58,[[1,2,2,0,2,[[72,2,2,0,2]]],[4,7,5,2,7,[[167,6,4,2,6],[176,1,1,6,7]]],[8,1,1,7,8,[[237,1,1,7,8]]],[16,1,1,8,9,[[434,1,1,8,9]]],[17,6,6,9,15,[[440,1,1,9,10],[459,2,2,10,12],[464,1,1,12,13],[465,1,1,13,14],[466,1,1,14,15]]],[18,23,22,15,37,[[486,1,1,15,16],[489,1,1,16,17],[512,1,1,17,18],[514,1,1,18,19],[517,1,1,19,20],[526,1,1,20,21],[546,1,1,21,22],[547,1,1,22,23],[549,4,3,23,26],[551,1,1,26,27],[559,1,1,27,28],[563,1,1,28,29],[584,1,1,29,30],[586,3,3,30,33],[589,1,1,33,34],[590,1,1,34,35],[609,1,1,35,36],[617,1,1,36,37]]],[19,4,4,37,41,[[641,1,1,37,38],[657,1,1,38,39],[658,2,2,39,41]]],[22,5,5,41,46,[[692,1,1,41,42],[703,1,1,42,43],[707,1,1,43,44],[710,1,1,44,45],[719,1,1,45,46]]],[23,4,4,46,50,[[746,1,1,46,47],[749,1,1,47,48],[764,1,1,48,49],[766,1,1,49,50]]],[25,3,3,50,53,[[817,1,1,50,51],[819,1,1,51,52],[823,1,1,52,53]]],[29,5,5,53,58,[[880,1,1,53,54],[882,1,1,54,55],[883,1,1,55,56],[886,2,2,56,58]]]],[2150,2155,5323,5326,5328,5330,5539,7248,12856,12966,13440,13450,13548,13582,13607,14039,14071,14420,14464,14542,14650,14968,14976,15004,15012,15013,15069,15237,15285,15740,15771,15777,15786,15812,15820,16166,16275,16803,17265,17293,17304,17958,18122,18212,18266,18468,18999,19086,19435,19470,20811,20861,21005,22385,22411,22435,22485,22487]]],["+",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15740]]],["beggar",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7248]]],["man",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5326]]],["needy",[35,34,[[4,2,2,0,2,[[167,1,1,0,1],[176,1,1,1,2]]],[17,2,2,2,4,[[459,2,2,2,4]]],[18,16,15,4,19,[[486,1,1,4,5],[489,1,1,5,6],[512,1,1,6,7],[514,1,1,7,8],[517,1,1,8,9],[547,1,1,9,10],[549,4,3,10,13],[551,1,1,13,14],[559,1,1,14,15],[563,1,1,15,16],[586,2,2,16,18],[590,1,1,18,19]]],[19,3,3,19,22,[[657,1,1,19,20],[658,2,2,20,22]]],[22,4,4,22,26,[[692,1,1,22,23],[703,1,1,23,24],[710,1,1,24,25],[719,1,1,25,26]]],[23,2,2,26,28,[[749,1,1,26,27],[766,1,1,27,28]]],[25,3,3,28,31,[[817,1,1,28,29],[819,1,1,29,30],[823,1,1,30,31]]],[29,3,3,31,34,[[882,1,1,31,32],[886,2,2,32,34]]]],[5330,5539,13440,13450,14039,14071,14420,14464,14542,14976,15004,15012,15013,15069,15237,15285,15771,15777,15820,17265,17293,17304,17958,18122,18266,18468,19086,19470,20811,20861,21005,22411,22485,22487]]],["poor",[23,23,[[1,2,2,0,2,[[72,2,2,0,2]]],[4,4,4,2,6,[[167,4,4,2,6]]],[16,1,1,6,7,[[434,1,1,6,7]]],[17,4,4,7,11,[[440,1,1,7,8],[464,1,1,8,9],[465,1,1,9,10],[466,1,1,10,11]]],[18,6,6,11,17,[[526,1,1,11,12],[546,1,1,12,13],[586,1,1,13,14],[589,1,1,14,15],[609,1,1,15,16],[617,1,1,16,17]]],[19,1,1,17,18,[[641,1,1,17,18]]],[22,1,1,18,19,[[707,1,1,18,19]]],[23,2,2,19,21,[[746,1,1,19,20],[764,1,1,20,21]]],[29,2,2,21,23,[[880,1,1,21,22],[883,1,1,22,23]]]],[2150,2155,5323,5326,5328,5330,12856,12966,13548,13582,13607,14650,14968,15786,15812,16166,16275,16803,18212,18999,19435,22385,22435]]]]},{"k":"H35","v":[["desire",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17528]]]]},{"k":"H36","v":[["Abitub",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10586]]]]},{"k":"H37","v":[["Abital",[2,2,[[9,1,1,0,1,[[269,1,1,0,1]]],[12,1,1,1,2,[[340,1,1,1,2]]]],[8085,10364]]]]},{"k":"H38","v":[["Abijam",[5,4,[[10,5,4,0,4,[[304,1,1,0,1],[305,4,3,1,4]]]],[9249,9250,9256,9257]]]]},{"k":"H39","v":[["Abimael",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[262,10274]]]]},{"k":"H40","v":[["*",[66,61,[[0,24,23,0,23,[[19,10,10,0,10],[20,7,6,10,16],[25,7,7,16,23]]],[6,40,36,23,59,[[218,1,1,23,24],[219,38,34,24,58],[220,1,1,58,59]]],[9,1,1,59,60,[[277,1,1,59,60]]],[12,1,1,60,61,[[355,1,1,60,61]]]],[497,498,499,503,504,505,509,510,512,513,535,538,539,540,542,545,693,700,701,702,703,708,718,6750,6755,6757,6758,6760,6770,6772,6773,6774,6775,6776,6777,6778,6779,6781,6782,6783,6785,6788,6789,6792,6793,6794,6795,6796,6798,6799,6801,6802,6803,6804,6806,6807,6809,6810,6812,8280,10906]]],["+",[2,2,[[6,2,2,0,2,[[219,2,2,0,2]]]],[6770,6774]]],["Abimelech",[62,59,[[0,23,23,0,23,[[19,10,10,0,10],[20,6,6,10,16],[25,7,7,16,23]]],[6,37,34,23,57,[[218,1,1,23,24],[219,35,32,24,56],[220,1,1,56,57]]],[9,1,1,57,58,[[277,1,1,57,58]]],[12,1,1,58,59,[[355,1,1,58,59]]]],[497,498,499,503,504,505,509,510,512,513,535,538,539,540,542,545,693,700,701,702,703,708,718,6750,6755,6757,6758,6760,6772,6773,6774,6775,6776,6777,6778,6779,6781,6782,6783,6785,6788,6789,6792,6793,6794,6795,6796,6798,6799,6801,6802,6803,6804,6806,6809,6810,6812,8280,10906]]],["Abimelech's",[2,2,[[0,1,1,0,1,[[20,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]]],[538,6807]]]]},{"k":"H41","v":[["Abinadab",[12,11,[[8,4,4,0,4,[[242,1,1,0,1],[251,1,1,1,2],[252,1,1,2,3],[266,1,1,3,4]]],[9,3,2,4,6,[[272,3,2,4,6]]],[12,5,5,6,11,[[339,1,1,6,7],[345,1,1,7,8],[346,1,1,8,9],[347,1,1,9,10],[350,1,1,10,11]]]],[7353,7603,7631,8011,8160,8161,10319,10608,10654,10661,10767]]]]},{"k":"H42","v":[["Abinoam",[4,4,[[6,4,4,0,4,[[214,2,2,0,2],[215,2,2,2,4]]]],[6605,6611,6624,6635]]]]},{"k":"H43","v":[["Ebiasaph",[3,3,[[12,3,3,0,3,[[343,2,2,0,2],[346,1,1,2,3]]]],[10477,10491,10634]]]]},{"k":"H44","v":[["Abiezer",[7,7,[[5,1,1,0,1,[[203,1,1,0,1]]],[6,2,2,1,3,[[216,1,1,1,2],[218,1,1,2,3]]],[9,1,1,3,4,[[289,1,1,3,4]]],[12,3,3,4,7,[[344,1,1,4,5],[348,1,1,5,6],[364,1,1,6,7]]]],[6277,6688,6721,8680,10553,10701,11121]]]]},{"k":"H45","v":[["Abialbon",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8684]]]]},{"k":"H46","v":[["*",[6,6,[[0,1,1,0,1,[[48,1,1,0,1]]],[18,2,2,1,3,[[609,2,2,1,3]]],[22,3,3,3,6,[[679,1,1,3,4],[727,1,1,4,5],[738,1,1,5,6]]]],[1497,16153,16156,17678,18662,18837]]],["One",[3,3,[[22,3,3,0,3,[[679,1,1,0,1],[727,1,1,1,2],[738,1,1,2,3]]]],[17678,18662,18837]]],["mighty",[3,3,[[0,1,1,0,1,[[48,1,1,0,1]]],[18,2,2,1,3,[[609,2,2,1,3]]]],[1497,16153,16156]]]]},{"k":"H47","v":[["*",[17,17,[[6,1,1,0,1,[[215,1,1,0,1]]],[8,1,1,1,2,[[256,1,1,1,2]]],[17,2,2,2,4,[[459,1,1,2,3],[469,1,1,3,4]]],[18,5,5,4,9,[[499,1,1,4,5],[527,1,1,5,6],[545,1,1,6,7],[553,1,1,7,8],[555,1,1,8,9]]],[22,3,3,9,12,[[688,1,1,9,10],[712,1,1,10,11],[724,1,1,11,12]]],[23,4,4,12,16,[[752,1,1,12,13],[790,1,1,13,14],[791,1,1,14,15],[794,1,1,15,16]]],[24,1,1,16,17,[[797,1,1,16,17]]]],[6645,7779,13458,13703,14216,14681,14930,15086,15138,17863,18310,18598,19169,20060,20076,20177,20325]]],["+",[2,2,[[18,1,1,0,1,[[553,1,1,0,1]]],[22,1,1,1,2,[[724,1,1,1,2]]]],[15086,18598]]],["angels'",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15138]]],["bulls",[4,4,[[18,2,2,0,2,[[527,1,1,0,1],[545,1,1,1,2]]],[22,1,1,2,3,[[712,1,1,2,3]]],[23,1,1,3,4,[[794,1,1,3,4]]]],[14681,14930,18310,20177]]],["chiefest",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7779]]],["mighty",[3,3,[[17,2,2,0,2,[[459,1,1,0,1],[469,1,1,1,2]]],[24,1,1,2,3,[[797,1,1,2,3]]]],[13458,13703,20325]]],["ones",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[23,1,1,1,2,[[752,1,1,1,2]]]],[6645,19169]]],["strong",[2,2,[[18,1,1,0,1,[[499,1,1,0,1]]],[23,1,1,1,2,[[791,1,1,1,2]]]],[14216,20076]]],["valiant",[2,2,[[22,1,1,0,1,[[688,1,1,0,1]]],[23,1,1,1,2,[[790,1,1,1,2]]]],[17863,20060]]]]},{"k":"H48","v":[["Abiram",[11,9,[[3,8,6,0,6,[[132,6,5,0,5],[142,2,1,5,6]]],[4,1,1,6,7,[[163,1,1,6,7]]],[10,1,1,7,8,[[306,1,1,7,8]]],[18,1,1,8,9,[[583,1,1,8,9]]]],[4195,4206,4218,4219,4221,4498,5214,9317,15668]]]]},{"k":"H49","v":[["Abishag",[5,5,[[10,5,5,0,5,[[291,2,2,0,2],[292,3,3,2,5]]]],[8720,8732,8787,8791,8792]]]]},{"k":"H50","v":[["Abishua",[5,5,[[12,4,4,0,4,[[343,3,3,0,3],[345,1,1,3,4]]],[14,1,1,4,5,[[409,1,1,4,5]]]],[10458,10459,10504,10579,12178]]]]},{"k":"H51","v":[["Abishur",[2,2,[[12,2,2,0,2,[[339,2,2,0,2]]]],[10334,10335]]]]},{"k":"H52","v":[["Abishai",[25,24,[[8,5,4,0,4,[[261,5,4,0,4]]],[9,15,15,4,19,[[268,2,2,4,6],[269,1,1,6,7],[276,2,2,7,9],[282,2,2,9,11],[284,3,3,11,14],[285,1,1,14,15],[286,2,2,15,17],[287,1,1,17,18],[289,1,1,18,19]]],[12,5,5,19,24,[[339,1,1,19,20],[348,1,1,20,21],[355,1,1,21,22],[356,2,2,22,24]]]],[7911,7912,7913,7914,8067,8073,8111,8250,8254,8435,8437,8480,8483,8490,8532,8560,8564,8597,8671,10322,10693,10902,10918,10922]]]]},{"k":"H53","v":[["*",[110,91,[[9,102,83,0,83,[[269,1,1,0,1],[279,21,17,1,18],[280,13,12,18,30],[281,18,14,30,44],[282,11,9,44,53],[283,15,13,53,66],[284,16,11,66,77],[285,6,5,77,82],[286,1,1,82,83]]],[10,5,5,83,88,[[291,1,1,83,84],[292,2,2,84,86],[305,2,2,86,88]]],[12,1,1,88,89,[[340,1,1,88,89]]],[13,2,2,89,91,[[377,2,2,89,91]]]],[8084,8318,8321,8337,8339,8340,8341,8342,8343,8344,8345,8346,8347,8349,8351,8354,8355,8356,8357,8377,8379,8380,8381,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8395,8396,8399,8400,8401,8402,8403,8420,8423,8426,8434,8441,8442,8443,8444,8446,8447,8448,8449,8450,8453,8454,8455,8456,8458,8463,8464,8467,8469,8473,8474,8475,8483,8487,8488,8490,8492,8493,8495,8496,8507,8510,8511,8512,8515,8517,8520,8521,8560,8723,8777,8798,9251,9259,10363,11434,11435]]],["Abishalom",[2,2,[[10,2,2,0,2,[[305,2,2,0,2]]]],[9251,9259]]],["Absalom",[103,86,[[9,97,80,0,80,[[269,1,1,0,1],[279,19,16,1,17],[280,12,11,17,28],[281,18,14,28,42],[282,11,9,42,51],[283,14,12,51,63],[284,15,11,63,74],[285,6,5,74,79],[286,1,1,79,80]]],[10,3,3,80,83,[[291,1,1,80,81],[292,2,2,81,83]]],[12,1,1,83,84,[[340,1,1,83,84]]],[13,2,2,84,86,[[377,2,2,84,86]]]],[8084,8318,8337,8339,8340,8341,8342,8343,8344,8345,8346,8347,8349,8351,8354,8355,8356,8357,8377,8379,8380,8381,8383,8384,8385,8387,8388,8389,8390,8391,8392,8393,8395,8396,8399,8400,8401,8402,8403,8420,8423,8426,8434,8441,8442,8443,8444,8446,8447,8448,8449,8450,8453,8454,8455,8456,8458,8463,8464,8467,8473,8474,8475,8483,8487,8488,8490,8492,8493,8495,8496,8507,8510,8511,8512,8515,8517,8520,8521,8560,8723,8777,8798,10363,11434,11435]]],["Absalom's",[5,5,[[9,5,5,0,5,[[279,2,2,0,2],[280,1,1,2,3],[283,1,1,3,4],[284,1,1,4,5]]]],[8321,8337,8386,8469,8496]]]]},{"k":"H54","v":[["*",[30,28,[[8,7,6,0,6,[[257,3,3,0,3],[258,2,2,3,5],[265,2,1,5,6]]],[9,10,9,6,15,[[274,1,1,6,7],[281,6,5,7,12],[283,1,1,12,13],[285,1,1,13,14],[286,1,1,14,15]]],[10,9,9,15,24,[[291,4,4,15,19],[292,4,4,19,23],[294,1,1,23,24]]],[12,4,4,24,28,[[352,1,1,24,25],[355,1,1,25,26],[361,1,1,26,27],[364,1,1,27,28]]]],[7807,7808,7809,7816,7819,7985,8226,8413,8416,8418,8424,8425,8464,8522,8579,8724,8736,8742,8759,8792,8796,8797,8805,8848,10802,10906,11021,11143]]],["Abiathar",[29,27,[[8,7,6,0,6,[[257,3,3,0,3],[258,2,2,3,5],[265,2,1,5,6]]],[9,9,8,6,14,[[274,1,1,6,7],[281,5,4,7,11],[283,1,1,11,12],[285,1,1,12,13],[286,1,1,13,14]]],[10,9,9,14,23,[[291,4,4,14,18],[292,4,4,18,22],[294,1,1,22,23]]],[12,4,4,23,27,[[352,1,1,23,24],[355,1,1,24,25],[361,1,1,25,26],[364,1,1,26,27]]]],[7807,7808,7809,7816,7819,7985,8226,8413,8416,8418,8424,8464,8522,8579,8724,8736,8742,8759,8792,8796,8797,8805,8848,10802,10906,11021,11143]]],["Abiathar's",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8425]]]]},{"k":"H55","v":[["up",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17847]]]]},{"k":"H56","v":[["*",[39,38,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,1,1,1,2,[[82,1,1,1,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[8,3,3,3,6,[[241,1,1,3,4],[250,1,1,4,5],[251,1,1,5,6]]],[9,4,3,6,9,[[279,1,1,6,7],[280,2,1,7,8],[285,1,1,8,9]]],[12,1,1,9,10,[[344,1,1,9,10]]],[13,1,1,10,11,[[401,1,1,10,11]]],[14,1,1,11,12,[[412,1,1,11,12]]],[15,2,2,12,14,[[413,1,1,12,13],[420,1,1,13,14]]],[17,1,1,14,15,[[449,1,1,14,15]]],[22,6,6,15,21,[[681,1,1,15,16],[697,1,1,16,17],[702,2,2,17,19],[711,1,1,19,20],[744,1,1,20,21]]],[23,5,5,21,26,[[748,1,1,21,22],[756,2,2,22,24],[758,1,1,24,25],[767,1,1,25,26]]],[24,1,1,26,27,[[798,1,1,26,27]]],[25,3,3,27,30,[[808,2,2,27,29],[832,1,1,29,30]]],[26,1,1,30,31,[[859,1,1,30,31]]],[27,2,2,31,33,[[865,1,1,31,32],[871,1,1,32,33]]],[28,2,2,33,35,[[876,2,2,33,35]]],[29,3,3,35,38,[[879,1,1,35,36],[886,1,1,36,37],[887,1,1,37,38]]]],[1117,2477,4147,7350,7595,7596,8354,8358,8512,10557,11990,12258,12300,12502,13203,17733,18012,18099,18102,18288,18932,19055,19253,19260,19295,19494,20340,20589,20604,21245,22017,22136,22230,22300,22301,22366,22489,22500]]],["lament",[2,2,[[22,1,1,0,1,[[697,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]]],[18012,20340]]],["lamented",[1,1,[[8,1,1,0,1,[[241,1,1,0,1]]]],[7350]]],["mourn",[15,15,[[8,1,1,0,1,[[251,1,1,0,1]]],[15,1,1,1,2,[[420,1,1,1,2]]],[17,1,1,2,3,[[449,1,1,2,3]]],[22,2,2,3,5,[[681,1,1,3,4],[744,1,1,4,5]]],[23,2,2,5,7,[[748,1,1,5,6],[756,1,1,6,7]]],[25,2,2,7,9,[[808,2,2,7,9]]],[27,2,2,9,11,[[865,1,1,9,10],[871,1,1,10,11]]],[28,1,1,11,12,[[876,1,1,11,12]]],[29,3,3,12,15,[[879,1,1,12,13],[886,1,1,13,14],[887,1,1,14,15]]]],[7596,12502,13203,17733,18932,19055,19253,20589,20604,22136,22230,22300,22366,22489,22500]]],["mourned",[10,10,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,1,1,1,2,[[82,1,1,1,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[8,1,1,3,4,[[250,1,1,3,4]]],[9,2,2,4,6,[[279,1,1,4,5],[280,1,1,5,6]]],[12,1,1,6,7,[[344,1,1,6,7]]],[13,1,1,7,8,[[401,1,1,7,8]]],[14,1,1,8,9,[[412,1,1,8,9]]],[15,1,1,9,10,[[413,1,1,9,10]]]],[1117,2477,4147,7595,8354,8358,10557,11990,12258,12300]]],["mourner",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8358]]],["mourneth",[8,8,[[9,1,1,0,1,[[285,1,1,0,1]]],[22,3,3,1,4,[[702,2,2,1,3],[711,1,1,3,4]]],[23,3,3,4,7,[[756,1,1,4,5],[758,1,1,5,6],[767,1,1,6,7]]],[28,1,1,7,8,[[876,1,1,7,8]]]],[8512,18099,18102,18288,19260,19295,19494,22301]]],["mourning",[2,2,[[25,1,1,0,1,[[832,1,1,0,1]]],[26,1,1,1,2,[[859,1,1,1,2]]]],[21245,22017]]]]},{"k":"H57","v":[["*",[8,8,[[0,1,1,0,1,[[36,1,1,0,1]]],[16,1,1,1,2,[[431,1,1,1,2]]],[17,1,1,2,3,[[464,1,1,2,3]]],[18,1,1,3,4,[[512,1,1,3,4]]],[22,3,3,4,7,[[735,1,1,4,5],[739,2,2,5,7]]],[24,1,1,7,8,[[797,1,1,7,8]]]],[1118,12805,13557,14424,18783,18845,18846,20314]]],["mourn",[3,3,[[22,2,2,0,2,[[739,2,2,0,2]]],[24,1,1,2,3,[[797,1,1,2,3]]]],[18845,18846,20314]]],["mourners",[2,2,[[17,1,1,0,1,[[464,1,1,0,1]]],[22,1,1,1,2,[[735,1,1,1,2]]]],[13557,18783]]],["mourneth",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14424]]],["mourning",[2,2,[[0,1,1,0,1,[[36,1,1,0,1]]],[16,1,1,1,2,[[431,1,1,1,2]]]],[1118,12805]]]]},{"k":"H58","v":[["plain",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6862]]]]},{"k":"H59","v":[["Abel",[3,3,[[8,1,1,0,1,[[241,1,1,0,1]]],[9,2,2,1,3,[[286,2,2,1,3]]]],[7349,8568,8572]]]]},{"k":"H60","v":[["*",[24,22,[[0,4,3,0,3,[[26,1,1,0,1],[49,3,2,1,3]]],[4,1,1,3,4,[[186,1,1,3,4]]],[9,3,3,4,7,[[277,1,1,4,5],[280,1,1,5,6],[285,1,1,6,7]]],[16,2,2,7,9,[[429,1,1,7,8],[434,1,1,8,9]]],[17,1,1,9,10,[[465,1,1,9,10]]],[20,2,2,10,12,[[665,2,2,10,12]]],[22,2,2,12,14,[[738,1,1,12,13],[739,1,1,13,14]]],[23,3,3,14,17,[[750,1,1,14,15],[760,1,1,15,16],[775,1,1,16,17]]],[24,1,1,17,18,[[801,1,1,17,18]]],[25,1,1,18,19,[[825,1,1,18,19]]],[29,3,2,19,21,[[883,1,1,19,20],[886,2,1,20,21]]],[32,1,1,21,22,[[893,1,1,21,22]]]],[768,1516,1517,5847,8286,8358,8513,12765,12856,13588,17431,17433,18841,18846,19115,19343,19704,20457,21073,22439,22491,22587]]],["+",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12856]]],["mourning",[23,21,[[0,4,3,0,3,[[26,1,1,0,1],[49,3,2,1,3]]],[4,1,1,3,4,[[186,1,1,3,4]]],[9,3,3,4,7,[[277,1,1,4,5],[280,1,1,5,6],[285,1,1,6,7]]],[16,1,1,7,8,[[429,1,1,7,8]]],[17,1,1,8,9,[[465,1,1,8,9]]],[20,2,2,9,11,[[665,2,2,9,11]]],[22,2,2,11,13,[[738,1,1,11,12],[739,1,1,12,13]]],[23,3,3,13,16,[[750,1,1,13,14],[760,1,1,14,15],[775,1,1,15,16]]],[24,1,1,16,17,[[801,1,1,16,17]]],[25,1,1,17,18,[[825,1,1,17,18]]],[29,3,2,18,20,[[883,1,1,18,19],[886,2,1,19,20]]],[32,1,1,20,21,[[893,1,1,20,21]]]],[768,1516,1517,5847,8286,8358,8513,12765,13588,17431,17433,18841,18846,19115,19343,19704,20457,21073,22439,22491,22587]]]]},{"k":"H61","v":[["*",[11,11,[[0,2,2,0,2,[[16,1,1,0,1],[41,1,1,1,2]]],[9,1,1,2,3,[[280,1,1,2,3]]],[10,1,1,3,4,[[291,1,1,3,4]]],[11,1,1,4,5,[[316,1,1,4,5]]],[13,3,3,5,8,[[367,1,1,5,6],[385,1,1,6,7],[399,1,1,7,8]]],[14,1,1,8,9,[[412,1,1,8,9]]],[26,2,2,9,11,[[859,2,2,9,11]]]],[416,1273,8361,8760,9617,11198,11579,11925,12265,22022,22036]]],["But",[3,3,[[13,1,1,0,1,[[367,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]],[26,1,1,2,3,[[859,1,1,2,3]]]],[11198,12265,22036]]],["Nevertheless",[2,2,[[13,2,2,0,2,[[385,1,1,0,1],[399,1,1,1,2]]]],[11579,11925]]],["Verily",[2,2,[[10,1,1,0,1,[[291,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]]],[8760,9617]]],["but",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22022]]],["indeed",[2,2,[[0,1,1,0,1,[[16,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]]],[416,8361]]],["verily",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1273]]]]},{"k":"H62","v":[["*",[3,3,[[9,1,1,0,1,[[286,1,1,0,1]]],[10,1,1,1,2,[[305,1,1,1,2]]],[11,1,1,2,3,[[327,1,1,2,3]]]],[8569,9269,9954]]],["Abelbethmaachah",[2,2,[[10,1,1,0,1,[[305,1,1,0,1]]],[11,1,1,1,2,[[327,1,1,1,2]]]],[9269,9954]]],["Bethmaachah",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8569]]]]},{"k":"H63","v":[["Abelshittim",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4809]]]]},{"k":"H64","v":[]},{"k":"H65","v":[["*",[3,3,[[6,1,1,0,1,[[217,1,1,0,1]]],[10,2,2,1,3,[[294,1,1,1,2],[309,1,1,2,3]]]],[6716,8856,9403]]],["+",[1,1,[[10,1,1,0,1,[[309,1,1,0,1]]]],[9403]]],["Abelmeholah",[2,2,[[6,1,1,0,1,[[217,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]]],[6716,8856]]]]},{"k":"H66","v":[["Abelmaim",[1,1,[[13,1,1,0,1,[[382,1,1,0,1]]]],[11513]]]]},{"k":"H67","v":[["Abelmizraim",[1,1,[[0,1,1,0,1,[[49,1,1,0,1]]]],[1517]]]]},{"k":"H68","v":[["*",[272,238,[[0,15,13,0,13,[[1,1,1,0,1],[10,1,1,1,2],[27,3,3,2,5],[28,5,4,5,9],[30,3,2,9,11],[34,1,1,11,12],[48,1,1,12,13]]],[1,33,25,13,38,[[56,1,1,13,14],[64,2,2,14,16],[66,1,1,16,17],[69,1,1,17,18],[70,1,1,18,19],[73,1,1,19,20],[74,2,1,20,21],[77,10,6,21,27],[80,2,2,27,29],[83,3,2,29,31],[84,5,3,31,34],[88,4,4,34,38]]],[2,10,9,38,47,[[103,5,4,38,42],[108,1,1,42,43],[109,2,2,43,45],[113,1,1,45,46],[115,1,1,46,47]]],[3,5,5,47,52,[[130,1,1,47,48],[131,2,2,48,50],[151,2,2,50,52]]],[4,25,24,52,76,[[156,2,2,52,54],[157,1,1,54,55],[160,1,1,55,56],[161,3,3,56,59],[162,2,2,59,61],[165,1,1,61,62],[169,1,1,62,63],[173,1,1,63,64],[174,2,2,64,66],[177,3,2,66,68],[179,5,5,68,73],[180,2,2,73,75],[181,1,1,75,76]]],[5,22,20,76,96,[[190,8,8,76,84],[193,3,2,84,86],[194,3,3,86,89],[196,4,3,89,92],[201,1,1,92,93],[204,1,1,93,94],[210,2,2,94,96]]],[6,3,3,96,99,[[219,2,2,96,98],[230,1,1,98,99]]],[8,10,9,99,108,[[241,2,2,99,101],[242,1,1,101,102],[249,1,1,102,103],[252,4,3,103,106],[255,1,1,106,107],[260,1,1,107,108]]],[9,6,6,108,114,[[278,1,1,108,109],[280,1,1,109,110],[282,2,2,110,112],[284,1,1,112,113],[286,1,1,113,114]]],[10,24,19,114,133,[[291,1,1,114,115],[295,4,2,115,117],[296,2,2,117,119],[297,6,3,119,122],[298,1,1,122,123],[300,4,4,123,127],[302,1,1,127,128],[305,1,1,128,129],[308,3,3,129,132],[311,1,1,132,133]]],[11,8,6,133,139,[[315,3,2,133,135],[324,2,1,135,136],[328,1,1,136,137],[331,1,1,137,138],[334,1,1,138,139]]],[12,10,7,139,146,[[349,1,1,139,140],[357,1,1,140,141],[359,3,3,141,144],[366,5,2,144,146]]],[13,14,14,146,160,[[367,1,1,146,147],[368,1,1,147,148],[369,1,1,148,149],[375,4,4,149,153],[376,1,1,153,154],[382,1,1,154,155],[390,1,1,155,156],[392,2,2,156,158],[398,1,1,158,159],[400,1,1,159,160]]],[15,3,3,160,163,[[416,2,2,160,162],[421,1,1,162,163]]],[17,11,11,163,174,[[440,1,1,163,164],[441,1,1,164,165],[443,1,1,165,166],[449,1,1,166,167],[463,3,3,167,170],[473,2,2,170,172],[476,2,2,172,174]]],[18,3,3,174,177,[[568,1,1,174,175],[579,1,1,175,176],[595,1,1,176,177]]],[19,11,9,177,186,[[638,1,1,177,178],[643,1,1,178,179],[644,1,1,179,180],[647,4,2,180,182],[651,1,1,182,183],[653,2,2,183,185],[654,1,1,185,186]]],[20,3,2,186,188,[[661,2,1,186,187],[668,1,1,187,188]]],[22,14,11,188,199,[[686,1,1,188,189],[692,1,1,189,190],[705,2,1,190,191],[706,2,1,191,192],[708,1,1,192,193],[712,1,1,193,194],[715,1,1,194,195],[732,3,2,195,197],[738,1,1,197,198],[740,1,1,198,199]]],[23,7,6,199,205,[[746,1,1,199,200],[747,1,1,200,201],[787,2,2,201,203],[795,3,2,203,205]]],[24,2,2,205,207,[[799,1,1,205,206],[800,1,1,206,207]]],[25,17,17,207,224,[[802,1,1,207,208],[811,2,2,208,210],[812,1,1,210,211],[814,2,2,211,213],[817,1,1,213,214],[821,1,1,214,215],[824,1,1,215,216],[827,1,1,216,217],[828,1,1,217,218],[829,3,3,218,221],[837,1,1,221,222],[839,1,1,222,223],[841,1,1,223,224]]],[26,1,1,224,225,[[860,1,1,224,225]]],[32,2,2,225,227,[[893,1,1,225,226],[898,1,1,226,227]]],[34,2,2,227,229,[[904,2,2,227,229]]],[36,2,1,229,230,[[910,2,1,229,230]]],[37,9,8,230,238,[[913,2,1,230,231],[914,2,2,231,233],[915,2,2,233,235],[919,2,2,235,237],[922,1,1,237,238]]]],[42,269,784,791,795,797,798,803,805,918,919,1025,1497,1704,1925,1936,1995,2076,2095,2189,2202,2302,2303,2304,2305,2310,2314,2425,2438,2497,2500,2540,2558,2564,2670,2671,2674,2678,3151,3153,3154,3156,3317,3320,3345,3469,3525,4118,4188,4189,4862,4868,5017,5032,5075,5146,5166,5167,5168,5187,5189,5282,5369,5468,5491,5494,5560,5562,5587,5589,5590,5591,5593,5647,5675,5696,5913,5915,5916,5917,5918,5919,5930,5931,6001,6002,6031,6033,6034,6075,6082,6091,6208,6310,6502,6503,6759,6772,7070,7345,7346,7364,7541,7658,7667,7668,7749,7898,8316,8382,8432,8439,8495,8562,8726,8895,8896,8903,8914,8943,8944,8945,8994,9081,9089,9090,9106,9169,9271,9372,9373,9379,9464,9595,9601,9862,9980,10079,10151,10722,10928,10966,10978,10979,11166,11172,11209,11225,11235,11365,11373,11374,11391,11413,11515,11698,11746,11747,11902,11944,12361,12362,12522,12974,12990,13046,13200,13506,13507,13510,13799,13823,13912,13916,15407,15535,15891,16689,16851,16881,16964,16977,17110,17149,17168,17172,17364,17502,17821,17947,18160,18180,18247,18314,18371,18734,18735,18838,18864,18992,19011,20006,20007,20238,20275,20407,20421,20490,20634,20642,20674,20719,20721,20802,20927,21054,21112,21143,21170,21171,21173,21385,21447,21519,22074,22585,22659,22759,22767,22870,22921,22929,22932,22940,22944,23014,23015,23048]]],["+",[22,19,[[0,1,1,0,1,[[27,1,1,0,1]]],[4,3,2,1,3,[[177,2,1,1,2],[179,1,1,2,3]]],[5,2,2,3,5,[[194,1,1,3,4],[196,1,1,4,5]]],[17,1,1,5,6,[[476,1,1,5,6]]],[19,4,2,6,8,[[647,4,2,6,8]]],[20,1,1,8,9,[[661,1,1,8,9]]],[22,4,4,9,13,[[705,1,1,9,10],[708,1,1,10,11],[732,1,1,11,12],[740,1,1,12,13]]],[25,3,3,13,16,[[814,2,2,13,15],[839,1,1,15,16]]],[37,3,3,16,19,[[914,2,2,16,18],[919,1,1,18,19]]]],[784,5560,5593,6034,6075,13916,16964,16977,17364,18160,18247,18735,18864,20719,20721,21447,22929,22932,23014]]],["stone",[105,96,[[0,12,11,0,11,[[1,1,1,0,1],[10,1,1,1,2],[27,2,2,2,4],[28,5,4,4,8],[30,1,1,8,9],[34,1,1,9,10],[48,1,1,10,11]]],[1,14,12,11,23,[[56,1,1,11,12],[64,2,2,12,14],[66,1,1,14,15],[69,1,1,15,16],[70,1,1,16,17],[73,1,1,17,18],[77,3,2,18,20],[80,1,1,20,21],[83,3,2,21,23]]],[2,1,1,23,24,[[115,1,1,23,24]]],[3,2,2,24,26,[[151,2,2,24,26]]],[4,11,11,26,37,[[156,2,2,26,28],[157,1,1,28,29],[161,3,3,29,32],[162,2,2,32,34],[180,2,2,34,36],[181,1,1,36,37]]],[5,5,5,37,42,[[190,1,1,37,38],[201,1,1,38,39],[204,1,1,39,40],[210,2,2,40,42]]],[6,2,2,42,44,[[219,2,2,42,44]]],[8,9,8,44,52,[[241,2,2,44,46],[242,1,1,46,47],[249,1,1,47,48],[252,3,2,48,50],[255,1,1,50,51],[260,1,1,51,52]]],[9,1,1,52,53,[[286,1,1,52,53]]],[10,4,4,53,57,[[291,1,1,53,54],[296,2,2,54,56],[298,1,1,56,57]]],[11,5,4,57,61,[[315,1,1,57,58],[324,2,1,58,59],[331,1,1,59,60],[334,1,1,60,61]]],[12,2,2,61,63,[[359,2,2,61,63]]],[13,2,2,63,65,[[368,1,1,63,64],[400,1,1,64,65]]],[15,2,2,65,67,[[416,1,1,65,66],[421,1,1,66,67]]],[17,4,4,67,71,[[463,1,1,67,68],[473,2,2,68,70],[476,1,1,70,71]]],[18,2,2,71,73,[[568,1,1,71,72],[595,1,1,72,73]]],[19,5,5,73,78,[[644,1,1,73,74],[651,1,1,74,75],[653,2,2,75,77],[654,1,1,77,78]]],[22,4,3,78,81,[[686,1,1,78,79],[706,2,1,79,80],[715,1,1,80,81]]],[23,4,3,81,84,[[746,1,1,81,82],[795,3,2,82,84]]],[24,1,1,84,85,[[799,1,1,84,85]]],[25,6,6,85,91,[[802,1,1,85,86],[811,2,2,86,88],[821,1,1,88,89],[829,1,1,89,90],[841,1,1,90,91]]],[34,2,2,91,93,[[904,2,2,91,93]]],[36,2,1,93,94,[[910,2,1,93,94]]],[37,3,2,94,96,[[913,2,1,94,95],[922,1,1,95,96]]]],[42,269,791,795,797,798,803,805,918,1025,1497,1704,1925,1936,1995,2076,2095,2189,2303,2304,2438,2497,2500,3525,4862,4868,5017,5032,5075,5166,5167,5168,5187,5189,5647,5675,5696,5915,6208,6310,6502,6503,6759,6772,7345,7346,7364,7541,7667,7668,7749,7898,8562,8726,8903,8914,8994,9601,9862,10079,10151,10978,10979,11225,11944,12362,12522,13506,13799,13823,13912,15407,15891,16881,17110,17149,17168,17172,17821,18180,18371,18992,20238,20275,20407,20490,20634,20642,20927,21170,21519,22759,22767,22870,22921,23048]]],["stones",[136,120,[[0,2,1,0,1,[[30,2,1,0,1]]],[1,19,14,1,15,[[74,2,1,1,2],[77,7,5,2,7],[80,1,1,7,8],[84,5,3,8,11],[88,4,4,11,15]]],[2,8,7,15,22,[[103,5,4,15,19],[109,2,2,19,21],[113,1,1,21,22]]],[3,3,3,22,25,[[130,1,1,22,23],[131,2,2,23,25]]],[4,10,10,25,35,[[160,1,1,25,26],[165,1,1,26,27],[169,1,1,27,28],[173,1,1,28,29],[174,2,2,29,31],[179,4,4,31,35]]],[5,15,14,35,49,[[190,7,7,35,42],[193,3,2,42,44],[194,2,2,44,46],[196,3,3,46,49]]],[6,1,1,49,50,[[230,1,1,49,50]]],[8,1,1,50,51,[[252,1,1,50,51]]],[9,4,4,51,55,[[278,1,1,51,52],[282,2,2,52,54],[284,1,1,54,55]]],[10,20,15,55,70,[[295,4,2,55,57],[297,6,3,57,60],[300,4,4,60,64],[302,1,1,64,65],[305,1,1,65,66],[308,3,3,66,69],[311,1,1,69,70]]],[11,3,3,70,73,[[315,2,2,70,72],[328,1,1,72,73]]],[12,8,5,73,78,[[349,1,1,73,74],[357,1,1,74,75],[359,1,1,75,76],[366,5,2,76,78]]],[13,12,12,78,90,[[367,1,1,78,79],[369,1,1,79,80],[375,4,4,80,84],[376,1,1,84,85],[382,1,1,85,86],[390,1,1,86,87],[392,2,2,87,89],[398,1,1,89,90]]],[15,1,1,90,91,[[416,1,1,90,91]]],[17,6,6,91,97,[[440,1,1,91,92],[441,1,1,92,93],[443,1,1,93,94],[449,1,1,94,95],[463,2,2,95,97]]],[18,1,1,97,98,[[579,1,1,97,98]]],[20,2,2,98,100,[[661,1,1,98,99],[668,1,1,99,100]]],[22,6,6,100,106,[[692,1,1,100,101],[705,1,1,101,102],[712,1,1,102,103],[732,2,2,103,105],[738,1,1,105,106]]],[23,3,3,106,109,[[747,1,1,106,107],[787,2,2,107,109]]],[24,1,1,109,110,[[800,1,1,109,110]]],[25,6,6,110,116,[[817,1,1,110,111],[824,1,1,111,112],[827,1,1,112,113],[828,1,1,113,114],[829,2,2,114,116]]],[26,1,1,116,117,[[860,1,1,116,117]]],[32,1,1,117,118,[[893,1,1,117,118]]],[37,2,2,118,120,[[915,1,1,118,119],[919,1,1,119,120]]]],[919,2202,2302,2304,2305,2310,2314,2425,2540,2558,2564,2670,2671,2674,2678,3151,3153,3154,3156,3320,3345,3469,4118,4188,4189,5146,5282,5369,5468,5491,5494,5587,5589,5590,5591,5913,5916,5917,5918,5919,5930,5931,6001,6002,6031,6033,6075,6082,6091,7070,7658,8316,8432,8439,8495,8895,8896,8943,8944,8945,9081,9089,9090,9106,9169,9271,9372,9373,9379,9464,9595,9601,9980,10722,10928,10966,11166,11172,11209,11235,11365,11373,11374,11391,11413,11515,11698,11746,11747,11902,12361,12974,12990,13046,13200,13507,13510,15535,17364,17502,17947,18160,18314,18734,18735,18838,19011,20006,20007,20421,20802,21054,21112,21143,21171,21173,22074,22585,22940,23015]]],["stony",[2,2,[[25,2,2,0,2,[[812,1,1,0,1],[837,1,1,1,2]]]],[20674,21385]]],["weight",[4,4,[[4,1,1,0,1,[[177,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]],[19,1,1,2,3,[[638,1,1,2,3]]],[37,1,1,3,4,[[915,1,1,3,4]]]],[5562,8382,16689,22944]]],["weights",[3,3,[[2,1,1,0,1,[[108,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]],[32,1,1,2,3,[[898,1,1,2,3]]]],[3317,16851,22659]]]]},{"k":"H69","v":[["*",[8,8,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]],[26,6,6,2,8,[[851,3,3,2,5],[854,2,2,5,7],[855,1,1,7,8]]]],[12142,12155,21792,21793,21803,21878,21897,21922]]],["stone",[6,6,[[26,6,6,0,6,[[851,3,3,0,3],[854,2,2,3,5],[855,1,1,5,6]]]],[21792,21793,21803,21878,21897,21922]]],["stones",[2,2,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]]],[12142,12155]]]]},{"k":"H70","v":[["*",[2,2,[[1,1,1,0,1,[[50,1,1,0,1]]],[23,1,1,1,2,[[762,1,1,1,2]]]],[1548,19387]]],["stools",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1548]]],["wheels",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19387]]]]},{"k":"H71","v":[["Abana",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9659]]]]},{"k":"H72","v":[["*",[3,3,[[8,3,3,0,3,[[239,1,1,0,1],[240,1,1,1,2],[242,1,1,2,3]]]],[7298,7320,7364]]],["+",[1,1,[[8,1,1,0,1,[[240,1,1,0,1]]]],[7320]]],["Ebenezer",[2,2,[[8,2,2,0,2,[[239,1,1,0,1],[242,1,1,1,2]]]],[7298,7364]]]]},{"k":"H73","v":[["*",[9,9,[[1,5,5,0,5,[[77,3,3,0,3],[78,1,1,3,4],[88,1,1,4,5]]],[2,3,3,5,8,[[97,2,2,5,7],[105,1,1,7,8]]],[22,1,1,8,9,[[700,1,1,8,9]]]],[2297,2332,2333,2345,2693,2924,2930,3205,18073]]],["girdle",[6,6,[[1,3,3,0,3,[[77,2,2,0,2],[88,1,1,2,3]]],[2,2,2,3,5,[[97,1,1,3,4],[105,1,1,4,5]]],[22,1,1,5,6,[[700,1,1,5,6]]]],[2297,2332,2693,2924,3205,18073]]],["girdles",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[78,1,1,1,2]]],[2,1,1,2,3,[[97,1,1,2,3]]]],[2333,2345,2930]]]]},{"k":"H74","v":[["*",[63,53,[[8,13,9,0,9,[[249,2,2,0,2],[252,4,2,2,4],[255,1,1,4,5],[261,6,4,5,9]]],[9,46,40,9,49,[[268,16,15,9,24],[269,28,23,24,47],[270,2,2,47,49]]],[10,2,2,49,51,[[292,2,2,49,51]]],[12,2,2,51,53,[[363,1,1,51,52],[364,1,1,52,53]]]],[7558,7559,7673,7675,7755,7910,7912,7919,7920,8057,8061,8063,8066,8068,8069,8070,8071,8072,8073,8074,8075,8078,8079,8080,8087,8088,8089,8090,8092,8093,8097,8098,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8111,8112,8113,8114,8118,8121,8132,8775,8802,11105,11130]]],["Abner",[62,52,[[8,13,9,0,9,[[249,2,2,0,2],[252,4,2,2,4],[255,1,1,4,5],[261,6,4,5,9]]],[9,45,39,9,48,[[268,15,14,9,23],[269,28,23,23,46],[270,2,2,46,48]]],[10,2,2,48,50,[[292,2,2,48,50]]],[12,2,2,50,52,[[363,1,1,50,51],[364,1,1,51,52]]]],[7558,7559,7673,7675,7755,7910,7912,7919,7920,8057,8061,8063,8066,8068,8069,8070,8071,8072,8073,8074,8075,8078,8079,8087,8088,8089,8090,8092,8093,8097,8098,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8111,8112,8113,8114,8118,8121,8132,8775,8802,11105,11130]]],["Abner's",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8080]]]]},{"k":"H75","v":[["*",[2,2,[[10,1,1,0,1,[[294,1,1,0,1]]],[19,1,1,1,2,[[642,1,1,1,2]]]],[8867,16824]]],["fatted",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8867]]],["stalled",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16824]]]]},{"k":"H76","v":[["blains",[2,2,[[1,2,2,0,2,[[58,2,2,0,2]]]],[1751,1752]]]]},{"k":"H77","v":[["Abez",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6341]]]]},{"k":"H78","v":[["Ibzan",[2,2,[[6,2,2,0,2,[[222,2,2,0,2]]]],[6877,6879]]]]},{"k":"H79","v":[["wrestled",[2,2,[[0,2,2,0,2,[[31,2,2,0,2]]]],[952,953]]]]},{"k":"H80","v":[["*",[6,6,[[1,1,1,0,1,[[58,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[22,2,2,2,4,[[683,1,1,2,3],[707,1,1,3,4]]],[25,1,1,4,5,[[827,1,1,4,5]]],[33,1,1,5,6,[[900,1,1,5,6]]]],[1751,5635,17763,18198,21110,22687]]],["dust",[5,5,[[1,1,1,0,1,[[58,1,1,0,1]]],[22,2,2,1,3,[[683,1,1,1,2],[707,1,1,2,3]]],[25,1,1,3,4,[[827,1,1,3,4]]],[33,1,1,4,5,[[900,1,1,4,5]]]],[1751,17763,18198,21110,22687]]],["powder",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5635]]]]},{"k":"H81","v":[["powders",[1,1,[[21,1,1,0,1,[[673,1,1,0,1]]]],[17577]]]]},{"k":"H82","v":[["fly",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13860]]]]},{"k":"H83","v":[["*",[3,3,[[18,1,1,0,1,[[532,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]],[25,1,1,2,3,[[818,1,1,2,3]]]],[14738,18451,20828]]],["+",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20828]]],["wings",[2,2,[[18,1,1,0,1,[[532,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[14738,18451]]]]},{"k":"H84","v":[["*",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]],[18,2,2,2,4,[[545,1,1,2,3],[568,1,1,3,4]]]],[5769,13847,14913,15399]]],["feathers",[2,2,[[18,2,2,0,2,[[545,1,1,0,1],[568,1,1,1,2]]]],[14913,15399]]],["wings",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]]],[5769,13847]]]]},{"k":"H85","v":[["*",[175,159,[[0,133,117,0,117,[[16,10,9,0,9],[17,13,12,9,21],[18,2,2,21,23],[19,8,8,23,31],[20,18,18,31,49],[21,20,16,49,65],[22,12,11,65,76],[23,14,12,76,88],[24,13,9,88,97],[25,8,6,97,103],[27,4,3,103,106],[30,2,2,106,108],[31,1,1,108,109],[34,2,2,109,111],[47,2,2,111,113],[48,2,2,113,115],[49,2,2,115,117]]],[1,9,9,117,126,[[51,1,1,117,118],[52,3,3,118,121],[53,1,1,121,122],[55,2,2,122,124],[81,1,1,124,125],[82,1,1,125,126]]],[2,1,1,126,127,[[115,1,1,126,127]]],[3,1,1,127,128,[[148,1,1,127,128]]],[4,7,7,128,135,[[153,1,1,128,129],[158,1,1,129,130],[161,2,2,130,132],[181,1,1,132,133],[182,1,1,133,134],[186,1,1,134,135]]],[5,2,2,135,137,[[210,2,2,135,137]]],[10,1,1,137,138,[[308,1,1,137,138]]],[11,1,1,138,139,[[325,1,1,138,139]]],[12,6,6,139,145,[[338,4,4,139,143],[353,1,1,143,144],[366,1,1,144,145]]],[13,2,2,145,147,[[386,1,1,145,146],[396,1,1,146,147]]],[15,1,1,147,148,[[421,1,1,147,148]]],[18,4,4,148,152,[[524,1,1,148,149],[582,3,3,149,152]]],[22,4,4,152,156,[[707,1,1,152,153],[719,1,1,153,154],[729,1,1,154,155],[741,1,1,155,156]]],[23,1,1,156,157,[[777,1,1,156,157]]],[25,1,1,157,158,[[834,1,1,157,158]]],[32,1,1,158,159,[[899,1,1,158,159]]]],[402,406,412,414,415,419,420,421,423,430,431,435,437,440,441,442,443,446,447,451,457,484,486,496,497,504,505,506,509,512,513,515,516,517,518,520,521,522,523,524,525,527,535,537,538,540,541,542,547,548,550,551,552,553,554,555,556,557,558,560,561,562,566,567,570,573,574,576,578,581,583,585,587,589,590,591,592,593,597,600,603,606,618,625,633,639,643,650,659,663,664,665,666,668,669,670,677,693,695,697,707,710,716,777,782,786,915,926,937,1023,1038,1466,1467,1503,1504,1519,1530,1578,1585,1594,1595,1606,1658,1663,2451,2474,3566,4729,4900,5096,5162,5184,5692,5728,5843,6478,6479,9377,9894,10279,10280,10284,10286,10836,11182,11594,11833,12518,14634,15612,15615,15648,18215,18459,18675,18882,19801,21304,22684]]],["+",[2,2,[[0,2,2,0,2,[[17,2,2,0,2]]]],[441,443]]],["Abraham",[159,147,[[0,118,106,0,106,[[16,9,9,0,9],[17,11,10,9,19],[18,2,2,19,21],[19,7,7,21,28],[20,17,17,28,45],[21,19,15,45,60],[22,12,11,60,71],[23,10,8,71,79],[24,10,8,79,87],[25,7,6,87,93],[27,3,2,93,95],[30,2,2,95,97],[31,1,1,97,98],[34,2,2,98,100],[47,2,2,100,102],[48,2,2,102,104],[49,2,2,104,106]]],[1,9,9,106,115,[[51,1,1,106,107],[52,3,3,107,110],[53,1,1,110,111],[55,2,2,111,113],[81,1,1,113,114],[82,1,1,114,115]]],[2,1,1,115,116,[[115,1,1,115,116]]],[3,1,1,116,117,[[148,1,1,116,117]]],[4,7,7,117,124,[[153,1,1,117,118],[158,1,1,118,119],[161,2,2,119,121],[181,1,1,121,122],[182,1,1,122,123],[186,1,1,123,124]]],[5,2,2,124,126,[[210,2,2,124,126]]],[10,1,1,126,127,[[308,1,1,126,127]]],[11,1,1,127,128,[[325,1,1,127,128]]],[12,5,5,128,133,[[338,3,3,128,131],[353,1,1,131,132],[366,1,1,132,133]]],[13,2,2,133,135,[[386,1,1,133,134],[396,1,1,134,135]]],[15,1,1,135,136,[[421,1,1,135,136]]],[18,4,4,136,140,[[524,1,1,136,137],[582,3,3,137,140]]],[22,4,4,140,144,[[707,1,1,140,141],[719,1,1,141,142],[729,1,1,142,143],[741,1,1,143,144]]],[23,1,1,144,145,[[777,1,1,144,145]]],[25,1,1,145,146,[[834,1,1,145,146]]],[32,1,1,146,147,[[899,1,1,146,147]]]],[402,406,412,414,415,419,420,421,423,430,431,435,437,440,442,446,447,451,457,484,486,496,497,504,505,506,509,512,515,516,517,518,520,521,522,523,525,527,535,537,538,540,541,542,547,548,550,551,552,553,554,555,556,557,558,560,561,562,566,567,573,574,576,578,581,583,585,587,589,590,591,592,593,597,600,603,618,633,639,659,663,664,666,668,669,670,677,693,695,697,707,710,716,777,786,915,926,937,1023,1038,1466,1467,1503,1504,1519,1530,1578,1585,1594,1595,1606,1658,1663,2451,2474,3566,4729,4900,5096,5162,5184,5692,5728,5843,6478,6479,9377,9894,10279,10280,10286,10836,11182,11594,11833,12518,14634,15612,15615,15648,18215,18459,18675,18882,19801,21304,22684]]],["Abraham's",[14,14,[[0,13,13,0,13,[[16,1,1,0,1],[19,1,1,1,2],[20,1,1,2,3],[21,1,1,3,4],[23,4,4,4,8],[24,3,3,8,11],[25,1,1,11,12],[27,1,1,12,13]]],[12,1,1,13,14,[[338,1,1,13,14]]]],[420,513,524,570,606,625,643,650,665,670,677,716,782,10284]]]]},{"k":"H86","v":[["knee",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1238]]]]},{"k":"H87","v":[["*",[61,50,[[0,59,48,0,48,[[10,6,4,0,4],[11,12,11,4,15],[12,9,9,15,24],[13,8,7,24,31],[14,8,7,31,38],[15,12,7,38,45],[16,4,3,45,48]]],[12,1,1,48,49,[[338,1,1,48,49]]],[15,1,1,49,50,[[421,1,1,49,50]]]],[292,293,295,297,299,302,303,304,305,307,308,312,314,315,316,319,320,322,323,325,326,330,332,336,348,349,350,355,357,358,359,361,362,363,371,372,373,378,382,383,384,386,387,396,397,398,400,402,10279,12518]]],["+",[4,4,[[0,4,4,0,4,[[10,2,2,0,2],[11,1,1,2,3],[13,1,1,3,4]]]],[292,293,314,359]]],["Abram",[50,42,[[0,48,40,0,40,[[10,2,2,0,2],[11,10,9,2,11],[12,8,8,11,19],[13,6,5,19,24],[14,8,7,24,31],[15,10,6,31,37],[16,4,3,37,40]]],[12,1,1,40,41,[[338,1,1,40,41]]],[15,1,1,41,42,[[421,1,1,41,42]]]],[295,297,299,302,303,304,305,307,308,312,316,319,320,322,323,326,330,332,336,349,350,355,357,358,361,362,363,371,372,373,378,383,384,386,387,396,397,398,400,402,10279,12518]]],["Abram's",[7,7,[[0,7,7,0,7,[[10,2,2,0,2],[11,1,1,2,3],[12,1,1,3,4],[13,1,1,4,5],[15,2,2,5,7]]]],[295,297,315,325,348,382,384]]]]},{"k":"H88","v":[["*",[4,4,[[3,4,4,0,4,[[137,2,2,0,2],[149,2,2,2,4]]]],[4350,4351,4803,4804]]],["+",[2,2,[[3,2,2,0,2,[[137,1,1,0,1],[149,1,1,1,2]]]],[4351,4804]]],["Oboth",[2,2,[[3,2,2,0,2,[[137,1,1,0,1],[149,1,1,1,2]]]],[4350,4803]]]]},{"k":"H89","v":[["Agee",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8664]]]]},{"k":"H90","v":[["*",[8,6,[[3,1,1,0,1,[[140,1,1,0,1]]],[8,7,5,1,6,[[250,7,5,1,6]]]],[4453,7568,7569,7580,7592,7593]]],["+",[2,2,[[3,1,1,0,1,[[140,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]]],[4453,7593]]],["Agag",[6,4,[[8,6,4,0,4,[[250,6,4,0,4]]]],[7568,7569,7580,7592]]]]},{"k":"H91","v":[["Agagite",[5,5,[[16,5,5,0,5,[[428,2,2,0,2],[433,2,2,2,4],[434,1,1,4,5]]]],[12748,12757,12820,12822,12858]]]]},{"k":"H92","v":[["*",[4,4,[[1,1,1,0,1,[[61,1,1,0,1]]],[9,1,1,1,2,[[268,1,1,1,2]]],[22,1,1,2,3,[[736,1,1,2,3]]],[29,1,1,3,4,[[887,1,1,3,4]]]],[1838,8074,18792,22501]]],["bunch",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1838]]],["burdens",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18792]]],["troop",[2,2,[[9,1,1,0,1,[[268,1,1,0,1]]],[29,1,1,1,2,[[887,1,1,1,2]]]],[8074,22501]]]]},{"k":"H93","v":[["nuts",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17625]]]]},{"k":"H94","v":[["Agur",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17252]]]]},{"k":"H95","v":[["piece",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7276]]]]},{"k":"H96","v":[["drops",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13821]]]]},{"k":"H97","v":[["Eglaim",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17968]]]]},{"k":"H98","v":[["*",[9,9,[[1,2,2,0,2,[[56,1,1,0,1],[57,1,1,1,2]]],[18,2,2,2,4,[[584,1,1,2,3],[591,1,1,3,4]]],[22,4,4,4,8,[[692,1,1,4,5],[713,1,1,5,6],[719,1,1,6,7],[720,1,1,7,8]]],[23,1,1,8,9,[[795,1,1,8,9]]]],[1704,1715,15734,15830,17951,18327,18469,18495,20244]]],["ponds",[2,2,[[1,2,2,0,2,[[56,1,1,0,1],[57,1,1,1,2]]]],[1704,1715]]],["pool",[2,2,[[22,2,2,0,2,[[713,1,1,0,1],[719,1,1,1,2]]]],[18327,18469]]],["pools",[2,2,[[22,2,2,0,2,[[692,1,1,0,1],[720,1,1,1,2]]]],[17951,18495]]],["reeds",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20244]]],["standing",[2,2,[[18,2,2,0,2,[[584,1,1,0,1],[591,1,1,1,2]]]],[15734,15830]]]]},{"k":"H99","v":[["ponds",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18014]]]]},{"k":"H100","v":[["*",[5,5,[[17,2,2,0,2,[[476,2,2,0,2]]],[22,3,3,2,5,[[687,1,1,2,3],[697,1,1,3,4],[736,1,1,4,5]]]],[13890,13908,17843,18019,18791]]],["bulrush",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18791]]],["caldron",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13908]]],["hook",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13890]]],["rush",[2,2,[[22,2,2,0,2,[[687,1,1,0,1],[697,1,1,1,2]]]],[17843,18019]]]]},{"k":"H101","v":[["*",[3,3,[[1,1,1,0,1,[[73,1,1,0,1]]],[21,1,1,1,2,[[677,1,1,1,2]]],[22,1,1,2,3,[[700,1,1,2,3]]]],[2183,17629,18076]]],["basons",[1,1,[[1,1,1,0,1,[[73,1,1,0,1]]]],[2183]]],["cups",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18076]]],["goblet",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17629]]]]},{"k":"H102","v":[["bands",[7,6,[[25,7,6,0,6,[[813,1,1,0,1],[818,1,1,1,2],[839,4,3,2,5],[840,1,1,5,6]]]],[20694,20846,21431,21434,21447,21452]]]]},{"k":"H103","v":[["*",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[19,2,2,1,3,[[633,1,1,1,2],[637,1,1,2,3]]]],[5650,16548,16661]]],["gather",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5650]]],["gathereth",[2,2,[[19,2,2,0,2,[[633,1,1,0,1],[637,1,1,1,2]]]],[16548,16661]]]]},{"k":"H104","v":[["letter",[3,3,[[14,3,3,0,3,[[406,2,2,0,2],[407,1,1,2,3]]]],[12118,12121,12140]]]]},{"k":"H105","v":[["chargers",[2,1,[[14,2,1,0,1,[[403,2,1,0,1]]]],[12025]]]]},{"k":"H106","v":[["fist",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[22,1,1,1,2,[[736,1,1,1,2]]]],[2095,18790]]]]},{"k":"H107","v":[["*",[10,10,[[13,2,2,0,2,[[396,2,2,0,2]]],[15,6,6,2,8,[[414,3,3,2,5],[418,3,3,5,8]]],[16,2,2,8,10,[[434,2,2,8,10]]]],[11828,11833,12314,12315,12316,12406,12418,12420,12860,12863]]],["letter",[4,4,[[15,2,2,0,2,[[414,1,1,0,1],[418,1,1,1,2]]],[16,2,2,2,4,[[434,2,2,2,4]]]],[12315,12406,12860,12863]]],["letters",[6,6,[[13,2,2,0,2,[[396,2,2,0,2]]],[15,4,4,2,6,[[414,2,2,2,4],[418,2,2,4,6]]]],[11828,11833,12314,12316,12418,12420]]]]},{"k":"H108","v":[["*",[2,2,[[0,1,1,0,1,[[1,1,1,0,1]]],[17,1,1,1,2,[[471,1,1,1,2]]]],[36,13763]]],["mist",[1,1,[[0,1,1,0,1,[[1,1,1,0,1]]]],[36]]],["vapour",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13763]]]]},{"k":"H109","v":[["+",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7273]]]]},{"k":"H110","v":[["Adbeel",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[671,10281]]]]},{"k":"H111","v":[["Hadad",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9125]]]]},{"k":"H112","v":[["Iddo",[2,1,[[14,2,1,0,1,[[410,2,1,0,1]]]],[12218]]]]},{"k":"H113","v":[["*",[335,287,[[0,71,59,0,59,[[17,1,1,0,1],[18,1,1,1,2],[22,3,3,2,5],[23,24,18,5,23],[30,1,1,23,24],[31,3,3,24,27],[32,5,4,27,31],[38,8,7,31,38],[39,2,2,38,40],[41,3,3,40,43],[42,1,1,43,44],[43,13,11,44,55],[44,2,2,55,57],[46,4,2,57,59]]],[1,10,8,59,67,[[70,7,5,59,64],[72,1,1,64,65],[81,1,1,65,66],[83,1,1,66,67]]],[3,6,5,67,72,[[127,1,1,67,68],[128,1,1,68,69],[148,2,2,69,71],[152,2,1,71,72]]],[4,4,2,72,74,[[162,2,1,72,73],[175,2,1,73,74]]],[5,3,3,74,77,[[189,2,2,74,76],[191,1,1,76,77]]],[6,7,7,77,84,[[213,1,1,77,78],[214,1,1,78,79],[216,1,1,79,80],[229,4,4,80,84]]],[7,1,1,84,85,[[233,1,1,84,85]]],[8,38,30,85,115,[[236,3,2,85,87],[251,1,1,87,88],[255,1,1,88,89],[257,1,1,89,90],[259,3,3,90,93],[260,18,12,93,105],[261,6,5,105,110],[264,3,3,110,113],[265,2,2,113,115]]],[9,52,43,115,158,[[267,1,1,115,116],[268,2,2,116,118],[269,1,1,118,119],[270,1,1,119,120],[275,4,3,120,123],[276,1,1,123,124],[277,4,3,124,127],[278,2,1,127,128],[279,2,2,128,130],[280,10,8,130,138],[281,3,2,138,140],[282,3,3,140,143],[284,3,3,143,146],[285,10,8,146,154],[286,1,1,154,155],[290,4,3,155,158]]],[10,34,30,158,188,[[291,19,15,158,173],[292,1,1,173,174],[293,2,2,174,176],[301,1,1,176,177],[302,1,1,177,178],[306,1,1,178,179],[308,6,6,179,185],[310,2,2,185,187],[312,1,1,187,188]]],[11,37,35,188,223,[[314,4,4,188,192],[316,2,2,192,194],[317,7,7,194,201],[318,7,7,201,208],[320,3,3,208,211],[321,3,3,211,214],[322,5,4,214,218],[330,4,3,218,221],[331,2,2,221,223]]],[12,5,3,223,226,[[349,1,1,223,224],[358,4,2,224,226]]],[13,4,4,226,230,[[368,2,2,226,228],[379,1,1,228,229],[384,1,1,229,230]]],[15,3,3,230,233,[[415,1,1,230,231],[420,1,1,231,232],[422,1,1,232,233]]],[17,1,1,233,234,[[438,1,1,233,234]]],[18,13,12,234,246,[[485,2,2,234,236],[489,1,1,236,237],[522,1,1,237,238],[574,1,1,238,239],[582,1,1,239,240],[587,1,1,240,241],[591,1,1,241,242],[600,1,1,242,243],[612,1,1,243,244],[613,2,1,244,245],[624,1,1,245,246]]],[19,3,3,246,249,[[652,1,1,246,247],[654,1,1,247,248],[657,1,1,248,249]]],[22,17,15,249,264,[[679,1,1,249,250],[681,1,1,250,251],[688,2,2,251,253],[697,2,1,253,254],[699,1,1,254,255],[700,1,1,255,256],[702,1,1,256,257],[704,1,1,257,258],[714,4,3,258,261],[715,2,2,261,263],[729,1,1,263,264]]],[23,6,5,264,269,[[766,1,1,264,265],[771,2,1,265,266],[778,1,1,266,267],[781,1,1,267,268],[782,1,1,268,269]]],[26,6,5,269,274,[[850,1,1,269,270],[859,4,3,270,273],[861,1,1,273,274]]],[27,1,1,274,275,[[873,1,1,274,275]]],[29,1,1,275,276,[[882,1,1,275,276]]],[32,1,1,276,277,[[896,1,1,276,277]]],[35,1,1,277,278,[[906,1,1,277,278]]],[37,7,7,278,285,[[911,1,1,278,279],[914,4,4,279,283],[916,2,2,283,285]]],[38,3,2,285,287,[[925,2,1,285,286],[927,1,1,286,287]]]],[436,459,577,582,586,600,601,603,605,609,618,626,627,628,630,633,635,639,640,642,645,647,656,908,932,933,946,968,973,974,975,1151,1152,1156,1157,1165,1168,1169,1173,1179,1262,1282,1285,1310,1329,1331,1332,1333,1340,1342,1343,1344,1346,1348,1357,1366,1367,1438,1445,2081,2082,2083,2085,2109,2161,2460,2519,4052,4070,4743,4745,4881,5203,5515,5904,5906,5948,6593,6617,6667,7035,7036,7050,7051,7162,7227,7238,7611,7768,7799,7845,7847,7849,7871,7875,7878,7885,7886,7887,7888,7889,7890,7891,7892,7902,7920,7921,7922,7923,7924,7971,7975,7977,7991,7993,8032,8054,8056,8102,8128,8236,8237,8238,8243,8268,8270,8272,8294,8349,8350,8365,8368,8371,8373,8374,8375,8376,8378,8404,8410,8429,8430,8435,8506,8509,8510,8530,8531,8537,8538,8539,8541,8546,8548,8560,8695,8713,8714,8719,8728,8730,8734,8735,8737,8738,8741,8744,8748,8750,8753,8754,8760,8764,8808,8833,8842,9131,9178,9307,9348,9349,9351,9352,9354,9355,9412,9417,9497,9554,9556,9567,9570,9619,9631,9648,9650,9651,9665,9667,9669,9672,9679,9686,9689,9696,9697,9700,9706,9732,9739,9741,9763,9767,9787,9795,9796,9799,9802,10047,10048,10051,10065,10067,10739,10937,10957,11225,11226,11459,11558,12332,12503,12578,12923,14013,14021,14070,14608,15483,15627,15787,15829,16100,16180,16199,16356,17126,17187,17261,17678,17708,17866,17883,18008,18043,18070,18097,18143,18338,18339,18342,18356,18358,18695,19472,19600,19806,19894,19904,21747,22031,22032,22034,22089,22266,22411,22633,22796,22887,22926,22927,22935,22936,22951,22952,23095,23121]]],["+",[5,5,[[0,1,1,0,1,[[43,1,1,0,1]]],[1,1,1,1,2,[[70,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[11,1,1,3,4,[[322,1,1,3,4]]],[17,1,1,4,5,[[438,1,1,4,5]]]],[1332,2082,9354,9796,12923]]],["Lord",[30,30,[[1,2,2,0,2,[[72,1,1,0,1],[83,1,1,1,2]]],[4,1,1,2,3,[[162,1,1,2,3]]],[5,2,2,3,5,[[189,2,2,3,5]]],[6,1,1,5,6,[[216,1,1,5,6]]],[15,3,3,6,9,[[415,1,1,6,7],[420,1,1,7,8],[422,1,1,8,9]]],[18,9,9,9,18,[[485,2,2,9,11],[522,1,1,11,12],[574,1,1,12,13],[587,1,1,13,14],[591,1,1,14,15],[612,1,1,15,16],[613,1,1,16,17],[624,1,1,17,18]]],[22,6,6,18,24,[[679,1,1,18,19],[681,1,1,19,20],[688,2,2,20,22],[697,1,1,22,23],[729,1,1,23,24]]],[26,1,1,24,25,[[861,1,1,24,25]]],[27,1,1,25,26,[[873,1,1,25,26]]],[32,1,1,26,27,[[896,1,1,26,27]]],[37,2,2,27,29,[[914,1,1,27,28],[916,1,1,28,29]]],[38,1,1,29,30,[[927,1,1,29,30]]]],[2161,2519,5203,5904,5906,6667,12332,12503,12578,14013,14021,14608,15483,15787,15829,16180,16199,16356,17678,17708,17866,17883,18008,18695,22089,22266,22633,22936,22952,23121]]],["lord",[185,160,[[0,34,31,0,31,[[17,1,1,0,1],[22,3,3,1,4],[23,1,1,4,5],[30,1,1,5,6],[31,3,3,6,9],[32,5,4,9,13],[38,1,1,13,14],[39,1,1,14,15],[41,3,3,15,18],[43,9,9,18,27],[44,2,2,27,29],[46,4,2,29,31]]],[1,1,1,31,32,[[81,1,1,31,32]]],[3,6,5,32,37,[[127,1,1,32,33],[128,1,1,33,34],[148,2,2,34,36],[152,2,1,36,37]]],[5,1,1,37,38,[[191,1,1,37,38]]],[6,4,4,38,42,[[213,1,1,38,39],[214,1,1,39,40],[229,2,2,40,42]]],[7,1,1,42,43,[[233,1,1,42,43]]],[8,28,20,43,63,[[236,3,2,43,45],[251,1,1,45,46],[257,1,1,46,47],[259,2,2,47,49],[260,15,9,49,58],[261,5,4,58,62],[264,1,1,62,63]]],[9,44,37,63,100,[[267,1,1,63,64],[268,1,1,64,65],[269,1,1,65,66],[270,1,1,66,67],[275,1,1,67,68],[276,1,1,68,69],[277,4,3,69,72],[279,2,2,72,74],[280,10,8,74,82],[281,3,2,82,84],[282,2,2,84,86],[284,3,3,86,89],[285,10,8,89,97],[290,4,3,97,100]]],[10,31,27,100,127,[[291,19,15,100,115],[292,1,1,115,116],[293,2,2,116,118],[301,1,1,118,119],[302,1,1,119,120],[308,5,5,120,125],[310,2,2,125,127]]],[11,11,11,127,138,[[314,1,1,127,128],[316,2,2,128,130],[317,2,2,130,132],[318,2,2,132,134],[320,2,2,134,136],[321,1,1,136,137],[330,1,1,137,138]]],[12,3,2,138,140,[[358,3,2,138,140]]],[13,3,3,140,143,[[368,2,2,140,142],[379,1,1,142,143]]],[18,2,2,143,145,[[489,1,1,143,144],[582,1,1,144,145]]],[22,2,2,145,147,[[697,1,1,145,146],[699,1,1,146,147]]],[23,4,4,147,151,[[766,1,1,147,148],[778,1,1,148,149],[781,1,1,149,150],[782,1,1,150,151]]],[26,5,4,151,155,[[850,1,1,151,152],[859,4,3,152,155]]],[37,5,5,155,160,[[911,1,1,155,156],[914,3,3,156,159],[916,1,1,159,160]]]],[436,577,582,586,609,908,932,933,946,968,973,974,975,1165,1173,1262,1282,1285,1329,1331,1340,1342,1343,1344,1346,1348,1357,1366,1367,1438,1445,2460,4052,4070,4743,4745,4881,5948,6593,6617,7050,7051,7162,7227,7238,7611,7799,7847,7849,7885,7886,7887,7888,7889,7890,7891,7892,7902,7920,7922,7923,7924,7975,8032,8054,8102,8128,8238,8243,8268,8270,8272,8349,8350,8365,8368,8371,8373,8374,8375,8376,8378,8404,8410,8430,8435,8506,8509,8510,8530,8531,8537,8538,8539,8541,8546,8548,8695,8713,8714,8719,8728,8730,8734,8735,8737,8738,8741,8744,8748,8750,8753,8754,8760,8764,8808,8833,8842,9131,9178,9348,9349,9351,9352,9355,9412,9417,9570,9619,9631,9650,9651,9686,9700,9732,9739,9767,10047,10937,10957,11225,11226,11459,14070,15627,18008,18043,19472,19806,19894,19904,21747,22031,22032,22034,22887,22926,22927,22935,22951]]],["lord's",[7,7,[[0,4,4,0,4,[[39,1,1,0,1],[43,3,3,1,4]]],[9,1,1,4,5,[[286,1,1,4,5]]],[12,1,1,5,6,[[358,1,1,5,6]]],[22,1,1,6,7,[[700,1,1,6,7]]]],[1179,1333,1340,1342,8560,10937,18070]]],["lords",[4,4,[[0,1,1,0,1,[[18,1,1,0,1]]],[4,1,1,1,2,[[162,1,1,1,2]]],[18,1,1,2,3,[[613,1,1,2,3]]],[22,1,1,3,4,[[704,1,1,3,4]]]],[459,5203,16199,18143]]],["master",[75,67,[[0,23,20,0,20,[[23,18,15,0,15],[38,5,5,15,20]]],[1,5,4,20,24,[[70,5,4,20,24]]],[4,2,1,24,25,[[175,2,1,24,25]]],[6,2,2,25,27,[[229,2,2,25,27]]],[8,9,9,27,36,[[255,1,1,27,28],[259,1,1,28,29],[260,3,3,29,32],[261,1,1,32,33],[264,1,1,33,34],[265,2,2,34,36]]],[9,1,1,36,37,[[268,1,1,36,37]]],[10,1,1,37,38,[[312,1,1,37,38]]],[11,20,19,38,57,[[314,3,3,38,41],[317,5,5,41,46],[318,4,4,46,50],[320,1,1,50,51],[321,2,2,51,53],[322,1,1,53,54],[330,2,1,54,55],[331,2,2,55,57]]],[12,1,1,57,58,[[349,1,1,57,58]]],[13,1,1,58,59,[[384,1,1,58,59]]],[19,2,2,59,61,[[654,1,1,59,60],[657,1,1,60,61]]],[22,6,5,61,66,[[702,1,1,61,62],[714,3,2,62,64],[715,2,2,64,66]]],[38,2,1,66,67,[[925,2,1,66,67]]]],[600,601,603,605,618,626,627,628,630,633,639,640,645,647,656,1151,1152,1157,1168,1169,2081,2083,2085,2109,5515,7035,7036,7768,7845,7871,7875,7878,7921,7971,7991,7993,8056,9497,9554,9556,9567,9648,9665,9667,9669,9672,9679,9689,9696,9697,9741,9763,9787,9802,10051,10065,10067,10739,11558,17187,17261,18097,18338,18342,18356,18358,23095]]],["master's",[21,19,[[0,7,7,0,7,[[23,5,5,0,5],[38,2,2,5,7]]],[1,1,1,7,8,[[70,1,1,7,8]]],[8,1,1,8,9,[[264,1,1,8,9]]],[9,6,4,9,13,[[275,3,2,9,11],[278,2,1,11,12],[282,1,1,12,13]]],[11,5,5,13,18,[[318,1,1,13,14],[322,3,3,14,17],[330,1,1,17,18]]],[22,1,1,18,19,[[714,1,1,18,19]]]],[618,627,635,639,642,1156,1157,2081,7977,8236,8237,8294,8429,9706,9795,9796,9799,10048,18339]]],["masters",[5,4,[[18,1,1,0,1,[[600,1,1,0,1]]],[19,1,1,1,2,[[652,1,1,1,2]]],[23,2,1,2,3,[[771,2,1,2,3]]],[29,1,1,3,4,[[882,1,1,3,4]]]],[16100,17126,19600,22411]]],["masters'",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22796]]],["owner",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9307]]],["sir",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1310]]]]},{"k":"H114","v":[["Addon",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12481]]]]},{"k":"H115","v":[["Adoraim",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11423]]]]},{"k":"H116","v":[["*",[57,53,[[14,11,10,0,10,[[406,3,3,0,3],[407,6,5,3,8],[408,2,2,8,10]]],[26,46,43,10,53,[[851,9,8,10,18],[852,9,7,18,25],[853,2,2,25,27],[854,8,8,27,35],[855,15,15,35,50],[856,3,3,50,53]]]],[12119,12133,12134,12136,12138,12139,12143,12150,12152,12164,21772,21773,21775,21777,21783,21793,21804,21806,21810,21820,21826,21828,21831,21833,21837,21844,21856,21877,21880,21882,21883,21887,21891,21898,21903,21908,21909,21910,21911,21916,21917,21918,21919,21920,21921,21923,21924,21926,21928,21930,21934,21944,21952]]],["Now",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12133]]],["Then",[52,49,[[14,8,8,0,8,[[406,2,2,0,2],[407,4,4,2,6],[408,2,2,6,8]]],[26,44,41,8,49,[[851,9,8,8,16],[852,9,7,16,23],[853,2,2,23,25],[854,8,8,25,33],[855,15,15,33,48],[856,1,1,48,49]]]],[12119,12134,12136,12138,12143,12150,12152,12164,21772,21773,21775,21777,21783,21793,21804,21806,21810,21820,21826,21828,21831,21833,21837,21844,21856,21877,21880,21882,21883,21887,21891,21898,21903,21908,21909,21910,21911,21916,21917,21918,21919,21920,21921,21923,21924,21926,21928,21930,21952]]],["then",[3,3,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,2,2,1,3,[[856,2,2,1,3]]]],[12139,21934,21944]]],["time",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12150]]]]},{"k":"H117","v":[["*",[27,25,[[1,1,1,0,1,[[64,1,1,0,1]]],[6,2,2,1,3,[[215,2,2,1,3]]],[8,1,1,3,4,[[239,1,1,3,4]]],[13,1,1,4,5,[[389,1,1,4,5]]],[15,2,2,5,7,[[415,1,1,5,6],[422,1,1,6,7]]],[18,7,6,7,13,[[485,2,2,7,9],[493,1,1,9,10],[553,1,1,10,11],[570,2,1,11,12],[613,1,1,12,13]]],[22,3,2,13,15,[[688,1,1,13,14],[711,2,1,14,15]]],[23,5,5,15,20,[[758,1,1,15,16],[769,3,3,16,19],[774,1,1,19,20]]],[25,2,2,20,22,[[818,1,1,20,21],[833,1,1,21,22]]],[33,2,2,22,24,[[901,1,1,22,23],[902,1,1,23,24]]],[37,1,1,24,25,[[921,1,1,24,25]]]],[1930,6636,6648,7305,11676,12332,12578,14013,14021,14095,15085,15430,16214,17884,18300,19296,19568,19569,19570,19688,20848,21266,22704,22730,23030]]],["+",[1,1,[[23,1,1,0,1,[[769,1,1,0,1]]]],[19569]]],["excellent",[4,4,[[18,4,4,0,4,[[485,2,2,0,2],[493,1,1,2,3],[553,1,1,3,4]]]],[14013,14021,14095,15085]]],["famous",[2,2,[[18,1,1,0,1,[[613,1,1,0,1]]],[25,1,1,1,2,[[833,1,1,1,2]]]],[16214,21266]]],["gallant",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18300]]],["glorious",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18300]]],["goodly",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20848]]],["lordly",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6648]]],["mightier",[1,1,[[18,1,1,0,1,[[570,1,1,0,1]]]],[15430]]],["mighty",[4,4,[[1,1,1,0,1,[[64,1,1,0,1]]],[8,1,1,1,2,[[239,1,1,1,2]]],[18,1,1,2,3,[[570,1,1,2,3]]],[37,1,1,3,4,[[921,1,1,3,4]]]],[1930,7305,15430,23030]]],["nobles",[7,7,[[6,1,1,0,1,[[215,1,1,0,1]]],[13,1,1,1,2,[[389,1,1,1,2]]],[15,2,2,2,4,[[415,1,1,2,3],[422,1,1,3,4]]],[23,2,2,4,6,[[758,1,1,4,5],[774,1,1,5,6]]],[33,1,1,6,7,[[902,1,1,6,7]]]],[6636,11676,12332,12578,19296,19688,22730]]],["one",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17884]]],["principal",[2,2,[[23,2,2,0,2,[[769,2,2,0,2]]]],[19568,19570]]],["worthies",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22704]]]]},{"k":"H118","v":[["Adalia",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12842]]]]},{"k":"H119","v":[["*",[10,10,[[1,6,6,0,6,[[74,1,1,0,1],[75,1,1,1,2],[84,2,2,2,4],[85,1,1,4,5],[88,1,1,5,6]]],[19,1,1,6,7,[[650,1,1,6,7]]],[22,1,1,7,8,[[679,1,1,7,8]]],[24,1,1,8,9,[[800,1,1,8,9]]],[33,1,1,9,10,[[901,1,1,9,10]]]],[2200,2249,2538,2554,2585,2698,17075,17672,20427,22702]]],["red",[9,9,[[1,6,6,0,6,[[74,1,1,0,1],[75,1,1,1,2],[84,2,2,2,4],[85,1,1,4,5],[88,1,1,5,6]]],[19,1,1,6,7,[[650,1,1,6,7]]],[22,1,1,7,8,[[679,1,1,7,8]]],[33,1,1,8,9,[[901,1,1,8,9]]]],[2200,2249,2538,2554,2585,2698,17075,17672,22702]]],["ruddy",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20427]]]]},{"k":"H120","v":[["*",[541,517,[[0,35,28,0,28,[[0,2,2,0,2],[1,10,8,2,10],[2,3,3,10,13],[4,1,1,13,14],[5,8,7,14,21],[6,2,2,21,23],[7,2,1,23,24],[8,5,2,24,26],[10,1,1,26,27],[15,1,1,27,28]]],[1,14,14,28,42,[[53,1,1,28,29],[57,2,2,29,31],[58,5,5,31,36],[61,1,1,36,37],[62,3,3,37,40],[79,1,1,40,41],[82,1,1,41,42]]],[2,15,15,42,57,[[90,1,1,42,43],[94,2,2,43,45],[95,1,1,45,46],[96,1,1,46,47],[102,2,2,47,49],[105,1,1,49,50],[107,1,1,50,51],[111,1,1,51,52],[113,3,3,52,55],[116,2,2,55,57]]],[3,24,22,57,79,[[119,1,1,57,58],[121,1,1,58,59],[124,1,1,59,60],[125,2,2,60,62],[128,1,1,62,63],[132,3,2,63,65],[134,2,1,65,66],[135,4,4,66,70],[139,1,1,70,71],[147,8,8,71,79]]],[4,7,6,79,85,[[156,2,2,79,81],[157,1,1,81,82],[160,2,1,82,83],[172,1,1,83,84],[184,1,1,84,85]]],[5,2,2,85,87,[[197,1,1,85,86],[200,1,1,86,87]]],[6,5,5,87,92,[[226,3,3,87,90],[228,2,2,90,92]]],[8,7,6,92,98,[[250,1,1,92,93],[251,2,1,93,94],[252,1,1,94,95],[259,1,1,95,96],[260,1,1,96,97],[261,1,1,97,98]]],[9,4,4,98,102,[[273,2,2,98,100],[289,1,1,100,101],[290,1,1,101,102]]],[10,5,5,102,107,[[294,1,1,102,103],[298,3,3,103,106],[303,1,1,106,107]]],[11,4,4,107,111,[[319,1,1,107,108],[331,1,1,108,109],[335,2,2,109,111]]],[12,4,4,111,115,[[342,1,1,111,112],[354,1,1,112,113],[358,1,1,113,114],[366,1,1,114,115]]],[13,6,6,115,121,[[372,4,4,115,119],[385,1,1,119,120],[398,1,1,120,121]]],[15,3,3,121,124,[[414,2,2,121,123],[421,1,1,123,124]]],[17,26,26,124,150,[[440,1,1,124,125],[442,1,1,125,126],[446,1,1,126,127],[449,2,2,127,129],[450,1,1,129,130],[451,1,1,130,131],[455,2,2,131,133],[456,2,2,133,135],[460,1,1,135,136],[462,1,1,136,137],[463,1,1,137,138],[467,1,1,138,139],[468,2,2,139,141],[469,4,4,141,145],[470,1,1,145,146],[471,2,2,146,148],[472,1,1,148,149],[473,1,1,149,150]]],[18,62,62,150,212,[[485,1,1,150,151],[488,1,1,151,152],[489,2,2,152,154],[491,1,1,154,155],[494,1,1,155,156],[498,1,1,156,157],[499,1,1,157,158],[508,1,1,158,159],[509,1,1,159,160],[510,1,1,160,161],[513,2,2,161,163],[516,2,2,163,165],[522,1,1,165,166],[526,3,3,166,169],[530,1,1,169,170],[533,1,1,170,171],[534,1,1,171,172],[535,2,2,172,174],[537,1,1,174,175],[539,1,1,175,176],[541,1,1,176,177],[543,1,1,177,178],[545,1,1,178,179],[550,1,1,179,180],[553,1,1,180,181],[555,1,1,181,182],[557,1,1,182,183],[559,1,1,183,184],[561,2,2,184,186],[566,1,1,186,187],[567,1,1,187,188],[571,2,2,188,190],[581,2,2,190,192],[582,1,1,192,193],[584,4,4,193,197],[585,1,1,197,198],[592,2,2,198,200],[593,1,1,200,201],[595,2,2,201,203],[596,1,1,203,204],[601,1,1,204,205],[612,2,2,205,207],[617,1,1,207,208],[621,2,2,208,210],[622,1,1,210,211],[623,1,1,211,212]]],[19,45,43,212,255,[[630,4,3,212,215],[633,1,1,215,216],[635,3,3,216,219],[638,1,1,219,220],[639,4,4,220,224],[642,2,2,224,226],[643,2,2,226,228],[644,1,1,228,229],[645,1,1,229,230],[646,3,3,230,233],[647,4,4,233,237],[648,2,2,237,239],[650,1,1,239,240],[651,3,3,240,243],[654,3,2,243,245],[655,6,6,245,251],[656,2,2,251,253],[657,2,2,253,255]]],[20,49,43,255,298,[[659,2,2,255,257],[660,9,8,257,265],[661,8,7,265,272],[663,1,1,272,273],[664,6,5,273,278],[665,5,5,278,283],[666,9,7,283,290],[667,5,4,290,294],[668,1,1,294,295],[669,1,1,295,296],[670,2,2,296,298]]],[22,27,27,298,325,[[680,5,5,298,303],[683,1,1,303,304],[684,2,2,304,306],[691,1,1,306,307],[695,1,1,307,308],[700,1,1,308,309],[707,2,2,309,311],[709,2,2,311,313],[715,1,1,313,314],[716,1,1,314,315],[721,1,1,315,316],[722,3,3,316,319],[723,1,1,319,320],[725,1,1,320,321],[729,1,1,321,322],[730,1,1,322,323],[734,1,1,323,324],[736,1,1,324,325]]],[23,30,29,325,354,[[746,1,1,325,326],[748,1,1,326,327],[751,1,1,327,328],[753,1,1,328,329],[754,2,2,329,331],[760,1,1,331,332],[761,1,1,332,333],[765,1,1,333,334],[771,1,1,334,335],[775,2,2,335,337],[776,3,3,337,340],[777,4,3,340,343],[780,1,1,343,344],[791,1,1,344,345],[793,3,3,345,348],[794,2,2,348,350],[795,4,4,350,354]]],[24,2,2,354,356,[[799,2,2,354,356]]],[25,132,130,356,486,[[802,4,4,356,360],[803,4,4,360,364],[804,6,6,364,370],[805,4,4,370,374],[806,1,1,374,375],[807,1,1,375,376],[808,1,1,376,377],[809,6,6,377,383],[811,3,3,383,386],[812,3,3,386,389],[813,6,6,389,395],[814,2,2,395,397],[815,6,5,397,402],[816,1,1,402,403],[817,1,1,403,404],[818,1,1,404,405],[820,2,2,405,407],[821,7,7,407,414],[822,7,7,414,421],[823,3,3,421,424],[824,3,3,424,427],[825,3,3,427,430],[826,2,2,430,432],[827,1,1,432,433],[828,2,2,433,435],[829,5,4,435,439],[830,4,4,439,443],[831,2,2,443,445],[832,2,2,445,447],[833,3,3,447,450],[834,6,6,450,456],[835,2,2,456,458],[836,1,1,458,459],[837,9,9,459,468],[838,4,4,468,472],[839,3,3,472,475],[840,3,3,475,478],[841,1,1,478,479],[842,1,1,479,480],[844,3,3,480,483],[845,2,2,483,485],[848,1,1,485,486]]],[26,4,4,486,490,[[857,2,2,486,488],[859,2,2,488,490]]],[27,4,4,490,494,[[867,1,1,490,491],[870,1,1,491,492],[872,1,1,492,493],[874,1,1,493,494]]],[28,1,1,494,495,[[876,1,1,494,495]]],[29,1,1,495,496,[[882,1,1,495,496]]],[31,3,3,496,499,[[891,2,2,496,498],[892,1,1,498,499]]],[32,5,5,499,504,[[894,1,1,499,500],[897,2,2,500,502],[898,1,1,502,503],[899,1,1,503,504]]],[34,3,3,504,507,[[903,1,1,504,505],[904,2,2,505,507]]],[35,3,2,507,509,[[906,3,2,507,509]]],[36,1,1,509,510,[[909,1,1,509,510]]],[37,7,6,510,516,[[912,1,1,510,511],[918,2,1,511,512],[919,1,1,512,513],[921,1,1,513,514],[922,1,1,514,515],[923,1,1,515,516]]],[38,1,1,516,517,[[927,1,1,516,517]]]],[25,26,35,37,38,45,46,48,52,55,67,77,79,106,138,139,140,141,142,143,144,180,182,204,210,211,271,393,1612,1727,1728,1751,1752,1761,1764,1767,1828,1869,1880,1882,2414,2493,2747,2833,2834,2852,2900,3054,3061,3218,3256,3374,3463,3466,3467,3598,3599,3705,3798,3956,3971,3972,4062,4223,4226,4272,4300,4302,4303,4305,4435,4675,4690,4692,4694,4699,4704,4710,4711,5032,5036,5077,5140,5446,5766,6121,6202,6956,6960,6966,7000,7021,7589,7602,7650,7848,7890,7924,8194,8199,8656,8706,8875,9023,9024,9031,9186,9717,10079,10179,10185,10449,10880,10947,11165,11300,11311,11312,11318,11582,11894,12317,12319,12540,12958,13028,13120,13182,13191,13210,13259,13330,13355,13359,13388,13467,13494,13532,13649,13667,13673,13694,13698,13712,13713,13728,13761,13764,13776,13819,14016,14063,14067,14074,14082,14107,14201,14210,14350,14357,14379,14444,14445,14517,14523,14599,14650,14660,14668,14721,14766,14772,14780,14790,14818,14836,14859,14878,14918,15025,15091,15173,15215,15240,15264,15271,15373,15381,15441,15442,15585,15594,15620,15707,15714,15720,15730,15754,15834,15846,15859,15875,15877,16032,16104,16183,16190,16264,16308,16309,16332,16344,16459,16468,16485,16552,16606,16633,16636,16695,16722,16733,16742,16746,16818,16827,16841,16849,16891,16917,16928,16936,16947,16960,16978,16979,16981,17000,17004,17072,17088,17091,17109,17188,17189,17198,17208,17210,17213,17219,17224,17247,17249,17253,17265,17318,17328,17336,17341,17345,17351,17354,17355,17357,17359,17369,17370,17372,17377,17378,17380,17381,17416,17418,17424,17427,17428,17429,17431,17443,17449,17457,17458,17459,17464,17466,17467,17469,17473,17475,17476,17478,17487,17490,17507,17521,17528,17536,17694,17696,17702,17705,17707,17754,17780,17781,17918,17990,18058,18212,18214,18253,18258,18371,18401,18509,18544,18546,18548,18573,18602,18685,18710,18755,18791,18971,19052,19139,19197,19215,19224,19356,19362,19446,19601,19718,19721,19750,19751,19774,19780,19785,19787,19871,20075,20142,20145,20160,20169,20206,20226,20229,20255,20274,20390,20393,20469,20472,20474,20490,20493,20495,20498,20500,20503,20505,20506,20512,20519,20527,20530,20541,20544,20545,20547,20565,20579,20609,20610,20612,20616,20619,20621,20641,20647,20654,20657,20659,20670,20682,20683,20689,20698,20702,20707,20710,20725,20734,20744,20748,20750,20752,20756,20764,20827,20884,20887,20898,20899,20906,20908,20916,20922,20941,20946,20950,20953,20956,20958,20963,20972,20978,20994,21000,21009,21043,21049,21058,21072,21081,21085,21096,21102,21123,21134,21159,21166,21169,21178,21185,21191,21194,21201,21206,21225,21232,21244,21250,21261,21266,21282,21287,21290,21292,21304,21310,21315,21344,21346,21360,21369,21370,21371,21372,21373,21376,21396,21397,21400,21406,21408,21413,21427,21439,21445,21449,21463,21465,21481,21545,21579,21582,21590,21604,21624,21685,21977,21978,22031,22033,22174,22220,22244,22268,22303,22423,22565,22566,22579,22607,22638,22640,22656,22666,22745,22756,22765,22790,22804,22851,22903,22986,23000,23034,23046,23064,23128]]],["+",[30,30,[[0,3,3,0,3,[[5,1,1,0,1],[6,1,1,1,2],[7,1,1,2,3]]],[1,2,2,3,5,[[58,1,1,3,4],[61,1,1,4,5]]],[2,2,2,5,7,[[113,1,1,5,6],[116,1,1,6,7]]],[3,4,4,7,11,[[119,1,1,7,8],[147,3,3,8,11]]],[12,1,1,11,12,[[342,1,1,11,12]]],[17,2,2,12,14,[[451,1,1,12,13],[469,1,1,13,14]]],[18,4,4,14,18,[[539,1,1,14,15],[566,1,1,15,16],[612,1,1,16,17],[617,1,1,17,18]]],[19,1,1,18,19,[[657,1,1,18,19]]],[20,1,1,19,20,[[661,1,1,19,20]]],[22,3,3,20,23,[[684,1,1,20,21],[707,1,1,21,22],[722,1,1,22,23]]],[23,2,2,23,25,[[794,1,1,23,24],[795,1,1,24,25]]],[25,3,3,25,28,[[804,1,1,25,26],[824,1,1,26,27],[844,1,1,27,28]]],[27,1,1,28,29,[[870,1,1,28,29]]],[32,1,1,29,30,[[894,1,1,29,30]]]],[144,182,204,1767,1828,3463,3598,3705,4699,4704,4710,10449,13259,13713,14836,15373,16183,16264,17265,17372,17781,18214,18544,20169,20274,20512,21049,21579,22220,22607]]],["Adam",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5766]]],["Man",[4,4,[[17,1,1,0,1,[[449,1,1,0,1]]],[18,3,3,1,4,[[526,1,1,1,2],[581,1,1,2,3],[621,1,1,3,4]]]],[13182,14668,15594,16309]]],["another",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17467]]],["low",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14650]]],["man",[371,356,[[0,26,22,0,22,[[0,2,2,0,2],[1,10,8,2,10],[2,3,3,10,13],[4,1,1,13,14],[5,4,4,14,18],[6,1,1,18,19],[8,4,2,19,21],[15,1,1,21,22]]],[1,10,10,22,32,[[57,2,2,22,24],[58,4,4,24,28],[62,3,3,28,31],[82,1,1,31,32]]],[2,12,12,32,44,[[90,1,1,32,33],[94,2,2,33,35],[95,1,1,35,36],[96,1,1,36,37],[102,2,2,37,39],[105,1,1,39,40],[107,1,1,40,41],[111,1,1,41,42],[113,2,2,42,44]]],[3,11,11,44,55,[[124,1,1,44,45],[125,2,2,45,47],[134,1,1,47,48],[135,4,4,48,52],[139,1,1,52,53],[147,2,2,53,55]]],[4,4,3,55,58,[[156,1,1,55,56],[157,1,1,56,57],[160,2,1,57,58]]],[5,2,2,58,60,[[197,1,1,58,59],[200,1,1,59,60]]],[6,5,5,60,65,[[226,3,3,60,63],[228,2,2,63,65]]],[8,4,3,65,68,[[250,1,1,65,66],[251,2,1,66,67],[260,1,1,67,68]]],[9,2,2,68,70,[[273,1,1,68,69],[290,1,1,69,70]]],[10,2,2,70,72,[[298,2,2,70,72]]],[11,1,1,72,73,[[319,1,1,72,73]]],[12,3,3,73,76,[[354,1,1,73,74],[358,1,1,74,75],[366,1,1,75,76]]],[13,4,4,76,80,[[372,2,2,76,78],[385,1,1,78,79],[398,1,1,79,80]]],[15,3,3,80,83,[[414,2,2,80,82],[421,1,1,82,83]]],[17,22,22,83,105,[[440,1,1,83,84],[446,1,1,84,85],[449,1,1,85,86],[450,1,1,86,87],[455,2,2,87,89],[456,2,2,89,91],[460,1,1,91,92],[462,1,1,92,93],[463,1,1,93,94],[467,1,1,94,95],[468,2,2,95,97],[469,3,3,97,100],[470,1,1,100,101],[471,2,2,101,103],[472,1,1,103,104],[473,1,1,104,105]]],[18,23,23,105,128,[[485,1,1,105,106],[509,1,1,106,107],[513,1,1,107,108],[516,2,2,108,110],[526,1,1,110,111],[533,1,1,111,112],[535,1,1,112,113],[537,1,1,113,114],[553,1,1,114,115],[557,1,1,115,116],[561,2,2,116,118],[571,2,2,118,120],[581,1,1,120,121],[582,1,1,121,122],[585,1,1,122,123],[595,2,2,123,125],[596,1,1,125,126],[621,1,1,126,127],[623,1,1,127,128]]],[19,33,31,128,159,[[630,4,3,128,131],[635,2,2,131,133],[638,1,1,133,134],[639,3,3,134,137],[642,1,1,137,138],[643,1,1,138,139],[644,1,1,139,140],[646,3,3,140,143],[647,3,3,143,146],[648,2,2,146,148],[651,2,2,148,150],[654,3,2,150,152],[655,5,5,152,157],[656,1,1,157,158],[657,1,1,158,159]]],[20,36,33,159,192,[[659,2,2,159,161],[660,7,6,161,167],[661,4,4,167,171],[663,1,1,171,172],[664,5,4,172,176],[665,4,4,176,180],[666,6,5,180,185],[667,3,3,185,188],[668,1,1,188,189],[669,1,1,189,190],[670,2,2,190,192]]],[22,18,18,192,210,[[680,5,5,192,197],[683,1,1,197,198],[684,1,1,198,199],[691,1,1,199,200],[695,1,1,200,201],[709,1,1,201,202],[716,1,1,202,203],[722,2,2,203,205],[723,1,1,205,206],[725,1,1,206,207],[729,1,1,207,208],[734,1,1,208,209],[736,1,1,209,210]]],[23,21,20,210,230,[[746,1,1,210,211],[748,1,1,211,212],[751,1,1,212,213],[754,2,2,213,215],[760,1,1,215,216],[761,1,1,216,217],[765,1,1,217,218],[771,1,1,218,219],[775,2,2,219,221],[776,1,1,221,222],[777,3,2,222,224],[780,1,1,224,225],[793,2,2,225,227],[794,1,1,227,228],[795,2,2,228,230]]],[24,2,2,230,232,[[799,2,2,230,232]]],[25,113,111,232,343,[[802,4,4,232,236],[803,4,4,236,240],[804,5,5,240,245],[805,3,3,245,248],[806,1,1,248,249],[807,1,1,249,250],[808,1,1,250,251],[809,6,6,251,257],[811,2,2,257,259],[812,3,3,259,262],[813,6,6,262,268],[814,2,2,268,270],[815,6,5,270,275],[816,1,1,275,276],[817,1,1,276,277],[818,1,1,277,278],[821,7,7,278,285],[822,7,7,285,292],[823,3,3,292,295],[824,2,2,295,297],[825,3,3,297,300],[826,2,2,300,302],[827,1,1,302,303],[828,1,1,303,304],[829,5,4,304,308],[830,4,4,308,312],[831,2,2,312,314],[832,1,1,314,315],[833,3,3,315,318],[834,6,6,318,324],[835,1,1,324,325],[836,1,1,325,326],[837,3,3,326,329],[838,4,4,329,333],[839,2,2,333,335],[840,2,2,335,337],[841,1,1,337,338],[842,1,1,338,339],[844,2,2,339,341],[845,1,1,341,342],[848,1,1,342,343]]],[26,2,2,343,345,[[857,1,1,343,344],[859,1,1,344,345]]],[27,1,1,345,346,[[872,1,1,345,346]]],[29,1,1,346,347,[[882,1,1,346,347]]],[31,2,2,347,349,[[891,2,2,347,349]]],[32,1,1,349,350,[[898,1,1,349,350]]],[35,2,1,350,351,[[906,2,1,350,351]]],[37,4,4,351,355,[[918,1,1,351,352],[919,1,1,352,353],[922,1,1,353,354],[923,1,1,354,355]]],[38,1,1,355,356,[[927,1,1,355,356]]]],[25,26,35,37,38,45,46,48,52,55,67,77,79,106,140,142,143,144,180,210,211,393,1727,1728,1751,1752,1761,1764,1869,1880,1882,2493,2747,2833,2834,2852,2900,3054,3061,3218,3256,3374,3466,3467,3956,3971,3972,4272,4300,4302,4303,4305,4435,4690,4711,5036,5077,5140,6121,6202,6956,6960,6966,7000,7021,7589,7602,7890,8199,8706,9023,9031,9717,10880,10947,11165,11311,11318,11582,11894,12317,12319,12540,12958,13120,13191,13210,13330,13355,13359,13388,13467,13494,13532,13649,13667,13673,13694,13698,13712,13728,13761,13764,13776,13819,14016,14357,14444,14517,14523,14660,14766,14790,14818,15091,15215,15264,15271,15441,15442,15585,15620,15754,15875,15877,16032,16308,16344,16459,16468,16485,16606,16636,16695,16722,16742,16746,16827,16841,16891,16928,16936,16947,16978,16979,16981,17000,17004,17091,17109,17188,17189,17198,17208,17210,17213,17219,17249,17253,17318,17328,17345,17351,17354,17355,17357,17359,17370,17378,17380,17381,17416,17424,17427,17428,17429,17443,17449,17457,17458,17464,17466,17467,17473,17475,17476,17487,17490,17507,17521,17528,17536,17694,17696,17702,17705,17707,17754,17780,17918,17990,18258,18401,18546,18548,18573,18602,18685,18755,18791,18971,19052,19139,19215,19224,19356,19362,19446,19601,19718,19721,19774,19785,19787,19871,20145,20160,20206,20229,20255,20390,20393,20469,20472,20474,20490,20493,20495,20498,20500,20503,20505,20506,20519,20527,20530,20541,20545,20547,20565,20579,20609,20610,20612,20616,20619,20621,20647,20654,20657,20659,20670,20682,20683,20689,20698,20702,20707,20710,20725,20734,20744,20748,20750,20752,20756,20764,20827,20898,20899,20906,20908,20916,20922,20941,20946,20950,20953,20956,20958,20963,20972,20978,20994,21000,21009,21043,21058,21072,21081,21085,21096,21102,21123,21159,21166,21169,21178,21185,21191,21194,21201,21206,21225,21232,21250,21261,21266,21282,21287,21290,21292,21304,21310,21315,21346,21360,21370,21376,21400,21406,21408,21413,21427,21439,21449,21465,21481,21545,21582,21590,21604,21685,21978,22033,22244,22423,22565,22566,22656,22790,22986,23000,23046,23064,23128]]],["man's",[15,15,[[0,2,2,0,2,[[7,1,1,0,1],[8,1,1,1,2]]],[1,2,2,2,4,[[53,1,1,2,3],[79,1,1,3,4]]],[4,1,1,4,5,[[172,1,1,4,5]]],[8,1,1,5,6,[[252,1,1,5,6]]],[19,4,4,6,10,[[639,1,1,6,7],[643,1,1,7,8],[645,1,1,8,9],[656,1,1,9,10]]],[20,1,1,10,11,[[666,1,1,10,11]]],[25,3,3,11,14,[[805,1,1,11,12],[811,1,1,12,13],[840,1,1,13,14]]],[26,1,1,14,15,[[857,1,1,14,15]]]],[204,211,1612,2414,5446,7650,16733,16849,16917,17247,17459,20544,20641,21463,21977]]],["men",[103,102,[[0,4,4,0,4,[[5,3,3,0,3],[10,1,1,3,4]]],[2,1,1,4,5,[[116,1,1,4,5]]],[3,7,6,5,11,[[121,1,1,5,6],[128,1,1,6,7],[132,3,2,7,9],[134,1,1,9,10],[147,1,1,10,11]]],[8,1,1,11,12,[[261,1,1,11,12]]],[9,2,2,12,14,[[273,1,1,12,13],[289,1,1,13,14]]],[10,2,2,14,16,[[294,1,1,14,15],[298,1,1,15,16]]],[11,1,1,16,17,[[335,1,1,16,17]]],[13,2,2,17,19,[[372,2,2,17,19]]],[17,1,1,19,20,[[442,1,1,19,20]]],[18,29,29,20,49,[[488,1,1,20,21],[489,2,2,21,23],[491,1,1,23,24],[494,1,1,24,25],[498,1,1,25,26],[499,1,1,26,27],[508,1,1,27,28],[510,1,1,28,29],[513,1,1,29,30],[522,1,1,30,31],[530,1,1,31,32],[534,1,1,32,33],[535,1,1,33,34],[541,1,1,34,35],[543,1,1,35,36],[545,1,1,36,37],[550,1,1,37,38],[555,1,1,38,39],[559,1,1,39,40],[567,1,1,40,41],[584,4,4,41,45],[592,1,1,45,46],[593,1,1,46,47],[601,1,1,47,48],[622,1,1,48,49]]],[19,6,6,49,55,[[635,1,1,49,50],[642,1,1,50,51],[647,1,1,51,52],[650,1,1,52,53],[651,1,1,53,54],[655,1,1,54,55]]],[20,10,10,55,65,[[660,2,2,55,57],[661,3,3,57,60],[664,1,1,60,61],[665,1,1,61,62],[666,1,1,62,63],[667,2,2,63,65]]],[22,5,5,65,70,[[700,1,1,65,66],[707,1,1,66,67],[709,1,1,67,68],[721,1,1,68,69],[730,1,1,69,70]]],[23,7,7,70,77,[[753,1,1,70,71],[776,2,2,71,73],[777,1,1,73,74],[791,1,1,74,75],[793,1,1,75,76],[795,1,1,76,77]]],[25,12,12,77,89,[[820,2,2,77,79],[828,1,1,79,80],[832,1,1,80,81],[835,1,1,81,82],[837,6,6,82,88],[839,1,1,88,89]]],[26,1,1,89,90,[[859,1,1,89,90]]],[27,2,2,90,92,[[867,1,1,90,91],[874,1,1,91,92]]],[28,1,1,92,93,[[876,1,1,92,93]]],[32,3,3,93,96,[[897,2,2,93,95],[899,1,1,95,96]]],[34,1,1,96,97,[[903,1,1,96,97]]],[35,1,1,97,98,[[906,1,1,97,98]]],[36,1,1,98,99,[[909,1,1,98,99]]],[37,3,3,99,102,[[912,1,1,99,100],[918,1,1,100,101],[921,1,1,101,102]]]],[138,139,141,271,3599,3798,4062,4223,4226,4272,4675,7924,8194,8656,8875,9024,10179,11300,11312,13028,14063,14067,14074,14082,14107,14201,14210,14350,14379,14445,14599,14721,14772,14780,14859,14878,14918,15025,15173,15240,15381,15707,15714,15720,15730,15846,15859,16104,16332,16633,16818,16960,17072,17088,17224,17336,17341,17369,17377,17378,17418,17431,17469,17478,17487,18058,18212,18253,18509,18710,19197,19750,19751,19780,20075,20142,20226,20884,20887,21134,21244,21344,21369,21371,21372,21373,21396,21397,21445,22031,22174,22268,22303,22638,22640,22666,22745,22804,22851,22903,22986,23034]]],["men's",[10,10,[[4,1,1,0,1,[[156,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]],[10,1,1,2,3,[[303,1,1,2,3]]],[11,2,2,3,5,[[331,1,1,3,4],[335,1,1,4,5]]],[18,2,2,5,7,[[592,1,1,5,6],[612,1,1,6,7]]],[22,1,1,7,8,[[715,1,1,7,8]]],[34,2,2,8,10,[[904,2,2,8,10]]]],[5032,7848,9186,10079,10185,15834,16190,18371,22756,22765]]],["person",[2,2,[[19,1,1,0,1,[[633,1,1,0,1]]],[25,1,1,1,2,[[845,1,1,1,2]]]],[16552,21624]]],["persons",[3,3,[[3,2,2,0,2,[[147,2,2,0,2]]],[31,1,1,2,3,[[892,1,1,2,3]]]],[4692,4694,22579]]]]},{"k":"H121","v":[["*",[21,19,[[0,18,16,0,16,[[1,6,4,0,4],[2,5,5,4,9],[3,2,2,9,11],[4,5,5,11,16]]],[5,1,1,16,17,[[189,1,1,16,17]]],[12,1,1,17,18,[[338,1,1,17,18]]],[17,1,1,18,19,[[466,1,1,18,19]]]],[49,50,51,53,63,64,72,75,76,80,104,106,107,108,109,110,5909,10253,13621]]],["+",[1,1,[[5,1,1,0,1,[[189,1,1,0,1]]]],[5909]]],["Adam",[20,18,[[0,18,16,0,16,[[1,6,4,0,4],[2,5,5,4,9],[3,2,2,9,11],[4,5,5,11,16]]],[12,1,1,16,17,[[338,1,1,16,17]]],[17,1,1,17,18,[[466,1,1,17,18]]]],[49,50,51,53,63,64,72,75,76,80,104,106,107,108,109,110,10253,13621]]]]},{"k":"H122","v":[["*",[8,7,[[0,1,1,0,1,[[24,1,1,0,1]]],[3,1,1,1,2,[[135,1,1,1,2]]],[11,1,1,2,3,[[315,1,1,2,3]]],[21,1,1,3,4,[[675,1,1,3,4]]],[22,1,1,4,5,[[741,1,1,4,5]]],[37,3,2,5,7,[[911,2,1,5,6],[916,1,1,6,7]]]],[688,4291,9598,17608,18868,22886,22949]]],["red",[7,6,[[0,1,1,0,1,[[24,1,1,0,1]]],[3,1,1,1,2,[[135,1,1,1,2]]],[11,1,1,2,3,[[315,1,1,2,3]]],[22,1,1,3,4,[[741,1,1,3,4]]],[37,3,2,4,6,[[911,2,1,4,5],[916,1,1,5,6]]]],[688,4291,9598,18868,22886,22949]]],["ruddy",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17608]]]]},{"k":"H123","v":[["*",[99,92,[[0,13,12,0,12,[[24,1,1,0,1],[31,1,1,1,2],[35,11,10,2,12]]],[1,1,1,12,13,[[64,1,1,12,13]]],[3,9,9,13,22,[[136,5,5,13,18],[137,1,1,18,19],[140,1,1,19,20],[149,1,1,20,21],[150,1,1,21,22]]],[5,2,2,22,24,[[201,2,2,22,24]]],[6,4,3,24,27,[[215,1,1,24,25],[221,3,2,25,27]]],[8,1,1,27,28,[[249,1,1,27,28]]],[9,3,1,28,29,[[274,3,1,28,29]]],[10,6,5,29,34,[[299,1,1,29,30],[301,4,3,30,33],[312,1,1,33,34]]],[11,10,10,34,44,[[315,5,5,34,39],[320,3,3,39,42],[326,2,2,42,44]]],[12,7,6,44,50,[[338,3,3,44,47],[355,4,3,47,50]]],[13,6,6,50,56,[[374,1,1,50,51],[387,3,3,51,54],[391,2,2,54,56]]],[18,6,6,56,62,[[537,2,2,56,58],[560,1,1,58,59],[585,2,2,59,61],[614,1,1,61,62]]],[22,4,4,62,66,[[689,1,1,62,63],[712,2,2,63,65],[741,1,1,65,66]]],[23,8,8,66,74,[[753,1,1,66,67],[769,1,1,67,68],[771,1,1,68,69],[784,1,1,69,70],[793,4,4,70,74]]],[24,2,2,74,76,[[800,2,2,74,76]]],[25,7,6,76,82,[[826,4,3,76,79],[833,1,1,79,80],[836,1,1,80,81],[837,1,1,81,82]]],[26,1,1,82,83,[[860,1,1,82,83]]],[28,1,1,83,84,[[878,1,1,83,84]]],[29,5,5,84,89,[[879,3,3,84,87],[880,1,1,87,88],[887,1,1,88,89]]],[30,2,2,89,91,[[888,2,2,89,91]]],[38,1,1,91,92,[[925,1,1,91,92]]]],[688,931,1041,1048,1049,1056,1057,1059,1061,1071,1072,1083,1935,4325,4329,4331,4332,4334,4344,4464,4797,4819,6203,6223,6627,6846,6847,7555,8223,9077,9122,9123,9124,9527,9584,9585,9588,9596,9602,9747,9748,9749,9903,9906,10295,10303,10306,10901,10902,10903,11363,11632,11633,11634,11723,11724,14815,14816,15247,15751,15752,16229,17898,18308,18309,18867,19201,19555,19599,19952,20134,20144,20147,20149,20441,20442,21095,21096,21097,21277,21359,21364,22077,22362,22370,22373,22375,22380,22507,22511,22518,23093]]],["+",[4,4,[[12,1,1,0,1,[[355,1,1,0,1]]],[18,1,1,1,2,[[614,1,1,1,2]]],[22,1,1,2,3,[[741,1,1,2,3]]],[30,1,1,3,4,[[888,1,1,3,4]]]],[10901,16229,18867,22518]]],["Edom",[82,77,[[0,11,11,0,11,[[24,1,1,0,1],[31,1,1,1,2],[35,9,9,2,11]]],[1,1,1,11,12,[[64,1,1,11,12]]],[3,9,9,12,21,[[136,5,5,12,17],[137,1,1,17,18],[140,1,1,18,19],[149,1,1,19,20],[150,1,1,20,21]]],[5,2,2,21,23,[[201,2,2,21,23]]],[6,4,3,23,26,[[215,1,1,23,24],[221,3,2,24,26]]],[8,1,1,26,27,[[249,1,1,26,27]]],[9,3,1,27,28,[[274,3,1,27,28]]],[10,6,5,28,33,[[299,1,1,28,29],[301,4,3,29,32],[312,1,1,32,33]]],[11,9,9,33,42,[[315,5,5,33,38],[320,2,2,38,40],[326,2,2,40,42]]],[12,4,4,42,46,[[338,3,3,42,45],[355,1,1,45,46]]],[13,2,2,46,48,[[374,1,1,46,47],[391,1,1,47,48]]],[18,5,5,48,53,[[537,2,2,48,50],[560,1,1,50,51],[585,2,2,51,53]]],[22,1,1,53,54,[[689,1,1,53,54]]],[23,8,8,54,62,[[753,1,1,54,55],[769,1,1,55,56],[771,1,1,56,57],[784,1,1,57,58],[793,4,4,58,62]]],[24,2,2,62,64,[[800,2,2,62,64]]],[25,5,4,64,68,[[826,4,3,64,67],[833,1,1,67,68]]],[26,1,1,68,69,[[860,1,1,68,69]]],[28,1,1,69,70,[[878,1,1,69,70]]],[29,5,5,70,75,[[879,3,3,70,73],[880,1,1,73,74],[887,1,1,74,75]]],[30,1,1,75,76,[[888,1,1,75,76]]],[38,1,1,76,77,[[925,1,1,76,77]]]],[688,931,1041,1048,1056,1057,1059,1061,1071,1072,1083,1935,4325,4329,4331,4332,4334,4344,4464,4797,4819,6203,6223,6627,6846,6847,7555,8223,9077,9122,9123,9124,9527,9584,9585,9588,9596,9602,9747,9749,9903,9906,10295,10303,10306,10903,11363,11724,14815,14816,15247,15751,15752,17898,19201,19555,19599,19952,20134,20144,20147,20149,20441,20442,21095,21096,21097,21277,22077,22362,22370,22373,22375,22380,22507,22511,23093]]],["Edomites",[9,9,[[0,2,2,0,2,[[35,2,2,0,2]]],[11,1,1,2,3,[[320,1,1,2,3]]],[12,2,2,3,5,[[355,2,2,3,5]]],[13,4,4,5,9,[[387,3,3,5,8],[391,1,1,8,9]]]],[1049,1083,9748,10902,10903,11632,11633,11634,11723]]],["Idumea",[4,4,[[22,2,2,0,2,[[712,2,2,0,2]]],[25,2,2,2,4,[[836,1,1,2,3],[837,1,1,3,4]]]],[18308,18309,21359,21364]]]]},{"k":"H124","v":[["sardius",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[25,1,1,2,3,[[829,1,1,2,3]]]],[2310,2674,21170]]]]},{"k":"H125","v":[["reddish",[6,6,[[2,6,6,0,6,[[102,5,5,0,5],[103,1,1,5,6]]]],[3071,3076,3094,3095,3101,3148]]]]},{"k":"H126","v":[["Admah",[5,5,[[0,3,3,0,3,[[9,1,1,0,1],[13,2,2,1,3]]],[4,1,1,3,4,[[181,1,1,3,4]]],[27,1,1,4,5,[[872,1,1,4,5]]]],[253,338,344,5702,22248]]]]},{"k":"H127","v":[["*",[225,211,[[0,43,37,0,37,[[0,1,1,0,1],[1,5,5,1,6],[2,3,3,6,9],[3,6,6,9,15],[4,1,1,15,16],[5,3,3,16,19],[6,3,3,19,22],[7,3,3,22,25],[8,2,2,25,27],[11,1,1,27,28],[18,1,1,28,29],[27,2,2,29,31],[46,12,6,31,37]]],[1,9,9,37,46,[[52,1,1,37,38],[57,1,1,38,39],[59,1,1,39,40],[69,2,2,40,42],[72,1,1,42,43],[81,1,1,43,44],[82,1,1,44,45],[83,1,1,45,46]]],[2,2,2,46,48,[[109,2,2,46,48]]],[3,5,5,48,53,[[127,1,1,48,49],[128,1,1,49,50],[132,2,2,50,52],[148,1,1,52,53]]],[4,37,35,53,88,[[156,3,3,53,56],[157,1,1,56,57],[158,1,1,57,58],[159,3,2,58,60],[163,3,3,60,63],[164,2,2,63,65],[166,1,1,65,66],[173,2,2,66,68],[177,1,1,68,69],[178,3,3,69,72],[180,9,8,72,80],[181,1,1,80,81],[182,3,3,81,84],[183,2,2,84,86],[184,2,2,86,88]]],[5,2,2,88,90,[[209,2,2,88,90]]],[8,3,3,90,93,[[239,1,1,90,91],[255,2,2,91,93]]],[9,5,5,93,98,[[267,1,1,93,94],[275,1,1,94,95],[280,1,1,95,96],[281,1,1,96,97],[283,1,1,97,98]]],[10,8,8,98,106,[[297,1,1,98,99],[298,2,2,99,101],[299,1,1,101,102],[303,1,1,102,103],[304,1,1,103,104],[307,1,1,104,105],[308,1,1,105,106]]],[11,4,4,106,110,[[317,1,1,106,107],[329,1,1,107,108],[333,1,1,108,109],[337,1,1,109,110]]],[12,1,1,110,111,[[364,1,1,110,111]]],[13,6,6,111,117,[[370,1,1,111,112],[372,2,2,112,114],[373,1,1,114,115],[392,1,1,115,116],[399,1,1,116,117]]],[15,4,4,117,121,[[421,2,2,117,119],[422,2,2,119,121]]],[17,2,2,121,123,[[440,1,1,121,122],[466,1,1,122,123]]],[18,6,6,123,129,[[526,1,1,123,124],[560,1,1,124,125],[581,1,1,125,126],[582,1,1,126,127],[614,1,1,127,128],[623,1,1,128,129]]],[19,2,2,129,131,[[639,1,1,129,130],[655,1,1,130,131]]],[22,16,14,131,145,[[679,1,1,131,132],[684,1,1,132,133],[685,1,1,133,134],[692,2,2,134,136],[693,1,1,136,137],[697,1,1,137,138],[701,1,1,138,139],[702,2,1,139,140],[706,1,1,140,141],[708,3,2,141,143],[710,1,1,143,144],[723,1,1,144,145]]],[23,18,18,145,163,[[751,1,1,145,146],[752,1,1,146,147],[756,1,1,147,148],[758,1,1,148,149],[760,2,2,149,151],[767,1,1,151,152],[768,1,1,152,153],[769,3,3,153,156],[771,2,2,156,158],[772,1,1,158,159],[779,2,2,159,161],[786,1,1,161,162],[796,1,1,162,163]]],[25,28,27,163,190,[[808,1,1,163,164],[812,1,1,164,165],[813,2,2,165,167],[814,1,1,167,168],[819,1,1,168,169],[821,2,2,169,171],[822,2,2,171,173],[826,2,2,173,175],[829,1,1,175,176],[834,1,1,176,177],[835,2,2,177,179],[837,3,3,179,182],[838,3,3,182,185],[839,4,3,185,188],[840,2,2,188,190]]],[26,3,3,190,193,[[860,2,2,190,192],[861,1,1,192,193]]],[27,1,1,193,194,[[863,1,1,193,194]]],[28,2,2,194,196,[[876,1,1,194,195],[877,1,1,195,196]]],[29,10,7,196,203,[[881,2,2,196,198],[883,1,1,198,199],[885,4,2,199,201],[887,3,2,201,203]]],[31,1,1,203,204,[[892,1,1,203,204]]],[35,2,2,204,206,[[906,2,2,204,206]]],[36,1,1,206,207,[[909,1,1,206,207]]],[37,3,3,207,210,[[912,1,1,207,208],[919,1,1,208,209],[923,1,1,209,210]]],[38,1,1,210,211,[[927,1,1,210,211]]]],[24,35,36,37,39,49,72,74,78,81,82,89,90,91,93,134,138,144,157,163,167,182,191,196,204,207,225,301,482,787,788,1438,1439,1440,1442,1443,1446,1584,1731,1783,2063,2075,2163,2450,2489,2522,3342,3343,4036,4062,4224,4225,4729,5014,5022,5044,5069,5101,5117,5124,5217,5225,5229,5241,5259,5292,5448,5470,5562,5568,5576,5581,5615,5622,5629,5632,5644,5653,5662,5674,5707,5717,5726,5728,5741,5748,5801,5805,6473,6475,7309,7745,7761,8024,8237,8363,8421,8461,8980,9019,9025,9058,9218,9233,9331,9342,9664,10006,10127,10243,11135,11263,11307,11313,11344,11742,11916,12512,12536,12584,12586,12957,13626,14659,15251,15601,15641,16226,16345,16730,17215,17661,17780,17798,17929,17930,17969,18021,18094,18116,18188,18240,18241,18272,18570,19139,19155,19263,19297,19340,19351,19492,19534,19539,19560,19567,19606,19607,19634,19830,19838,19987,20303,20579,20672,20699,20702,20717,20851,20933,20937,20946,20947,21086,21089,21182,21304,21326,21340,21365,21376,21383,21409,21411,21418,21443,21444,21445,21474,21476,22045,22075,22083,22123,22301,22332,22397,22400,22425,22475,22481,22503,22510,22570,22789,22790,22851,22911,23015,23064,23131]]],["+",[3,3,[[0,1,1,0,1,[[8,1,1,0,1]]],[17,1,1,1,2,[[440,1,1,1,2]]],[37,1,1,2,3,[[923,1,1,2,3]]]],[225,12957,23064]]],["country",[1,1,[[31,1,1,0,1,[[892,1,1,0,1]]]],[22570]]],["earth",[53,51,[[0,11,11,0,11,[[0,1,1,0,1],[3,2,2,1,3],[5,3,3,3,6],[6,2,2,6,8],[8,1,1,8,9],[11,1,1,9,10],[27,1,1,10,11]]],[1,4,4,11,15,[[59,1,1,11,12],[69,1,1,12,13],[81,1,1,13,14],[82,1,1,14,15]]],[3,2,2,15,17,[[128,1,1,15,16],[132,1,1,16,17]]],[4,8,8,17,25,[[156,2,2,17,19],[158,1,1,19,20],[159,1,1,20,21],[164,2,2,21,23],[166,1,1,23,24],[178,1,1,24,25]]],[8,2,2,25,27,[[239,1,1,25,26],[255,1,1,26,27]]],[9,3,3,27,30,[[267,1,1,27,28],[280,1,1,28,29],[281,1,1,29,30]]],[10,3,3,30,33,[[303,1,1,30,31],[307,1,1,31,32],[308,1,1,32,33]]],[11,1,1,33,34,[[317,1,1,33,34]]],[15,1,1,34,35,[[421,1,1,34,35]]],[18,3,3,35,38,[[560,1,1,35,36],[581,1,1,36,37],[623,1,1,37,38]]],[22,5,4,38,42,[[701,1,1,38,39],[702,2,1,39,40],[708,1,1,40,41],[723,1,1,41,42]]],[23,4,4,42,46,[[752,1,1,42,43],[760,1,1,43,44],[769,1,1,44,45],[772,1,1,45,46]]],[25,2,1,46,47,[[839,2,1,46,47]]],[26,1,1,47,48,[[861,1,1,47,48]]],[29,3,3,48,51,[[881,2,2,48,50],[887,1,1,50,51]]]],[24,90,93,138,144,157,163,167,207,301,787,1783,2075,2450,2489,4062,4224,5014,5044,5101,5117,5241,5259,5292,5568,7309,7745,8024,8363,8421,9218,9331,9342,9664,12512,15251,15601,16345,18094,18116,18240,18570,19155,19340,19560,19634,21445,22083,22397,22400,22503]]],["ground",[42,42,[[0,18,18,0,18,[[1,5,5,0,5],[2,3,3,5,8],[3,4,4,8,12],[4,1,1,12,13],[6,1,1,13,14],[7,3,3,14,17],[18,1,1,17,18]]],[1,2,2,18,20,[[52,1,1,18,19],[57,1,1,19,20]]],[2,1,1,20,21,[[109,1,1,20,21]]],[3,1,1,21,22,[[132,1,1,21,22]]],[4,3,3,22,25,[[156,1,1,22,23],[180,2,2,23,25]]],[8,1,1,25,26,[[255,1,1,25,26]]],[9,1,1,26,27,[[283,1,1,26,27]]],[10,1,1,27,28,[[297,1,1,27,28]]],[12,1,1,28,29,[[364,1,1,28,29]]],[13,1,1,29,30,[[370,1,1,29,30]]],[15,2,2,30,32,[[422,2,2,30,32]]],[18,1,1,32,33,[[582,1,1,32,33]]],[22,3,3,33,36,[[706,1,1,33,34],[708,2,2,34,36]]],[23,3,3,36,39,[[751,1,1,36,37],[758,1,1,37,38],[769,1,1,38,39]]],[27,1,1,39,40,[[863,1,1,39,40]]],[36,1,1,40,41,[[909,1,1,40,41]]],[38,1,1,41,42,[[927,1,1,41,42]]]],[35,36,37,39,49,72,74,78,81,82,89,91,134,182,191,196,204,482,1584,1731,3343,4225,5022,5615,5622,7761,8461,8980,11135,11263,12584,12586,15641,18188,18240,18241,19139,19297,19567,22123,22851,23131]]],["husbandry",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11742]]],["land",[122,113,[[0,11,6,0,6,[[27,1,1,0,1],[46,10,5,1,6]]],[1,3,3,6,9,[[69,1,1,6,7],[72,1,1,7,8],[83,1,1,8,9]]],[2,1,1,9,10,[[109,1,1,9,10]]],[3,2,2,10,12,[[127,1,1,10,11],[148,1,1,11,12]]],[4,26,25,12,37,[[157,1,1,12,13],[159,2,1,13,14],[163,3,3,14,17],[173,2,2,17,19],[177,1,1,19,20],[178,2,2,20,22],[180,7,7,22,29],[181,1,1,29,30],[182,3,3,30,33],[183,2,2,33,35],[184,2,2,35,37]]],[5,2,2,37,39,[[209,2,2,37,39]]],[9,1,1,39,40,[[275,1,1,39,40]]],[10,4,4,40,44,[[298,2,2,40,42],[299,1,1,42,43],[304,1,1,43,44]]],[11,3,3,44,47,[[329,1,1,44,45],[333,1,1,45,46],[337,1,1,46,47]]],[13,4,4,47,51,[[372,2,2,47,49],[373,1,1,49,50],[399,1,1,50,51]]],[15,1,1,51,52,[[421,1,1,51,52]]],[17,1,1,52,53,[[466,1,1,52,53]]],[18,1,1,53,54,[[614,1,1,53,54]]],[19,2,2,54,56,[[639,1,1,54,55],[655,1,1,55,56]]],[22,8,8,56,64,[[679,1,1,56,57],[684,1,1,57,58],[685,1,1,58,59],[692,2,2,59,61],[693,1,1,61,62],[697,1,1,62,63],[710,1,1,63,64]]],[23,11,11,64,75,[[756,1,1,64,65],[760,1,1,65,66],[767,1,1,66,67],[768,1,1,67,68],[769,1,1,68,69],[771,2,2,69,71],[779,2,2,71,73],[786,1,1,73,74],[796,1,1,74,75]]],[25,26,26,75,101,[[808,1,1,75,76],[812,1,1,76,77],[813,2,2,77,79],[814,1,1,79,80],[819,1,1,80,81],[821,2,2,81,83],[822,2,2,83,85],[826,2,2,85,87],[829,1,1,87,88],[834,1,1,88,89],[835,2,2,89,91],[837,3,3,91,94],[838,3,3,94,97],[839,2,2,97,99],[840,2,2,99,101]]],[26,2,2,101,103,[[860,2,2,101,103]]],[28,2,2,103,105,[[876,1,1,103,104],[877,1,1,104,105]]],[29,7,4,105,109,[[883,1,1,105,106],[885,4,2,106,108],[887,2,1,108,109]]],[35,2,2,109,111,[[906,2,2,109,111]]],[37,2,2,111,113,[[912,1,1,111,112],[919,1,1,112,113]]]],[788,1439,1440,1442,1443,1446,2063,2163,2522,3342,4036,4729,5069,5124,5217,5225,5229,5448,5470,5562,5576,5581,5622,5629,5632,5644,5653,5662,5674,5707,5717,5726,5728,5741,5748,5801,5805,6473,6475,8237,9019,9025,9058,9233,10006,10127,10243,11307,11313,11344,11916,12536,13626,16226,16730,17215,17661,17780,17798,17929,17930,17969,18021,18272,19263,19351,19492,19534,19539,19606,19607,19830,19838,19987,20303,20579,20672,20699,20702,20717,20851,20933,20937,20946,20947,21086,21089,21182,21304,21326,21340,21365,21376,21383,21409,21411,21418,21443,21444,21474,21476,22045,22075,22301,22332,22425,22475,22481,22510,22789,22790,22911,23015]]],["lands",[3,3,[[0,2,2,0,2,[[46,2,2,0,2]]],[18,1,1,2,3,[[526,1,1,2,3]]]],[1438,1442,14659]]]]},{"k":"H128","v":[["Adamah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6357]]]]},{"k":"H129","v":[["*",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[10,1,1,1,2,[[301,1,1,1,2]]]],[6354,9125]]],["Adami",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6354]]],["Edomites",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9125]]]]},{"k":"H130","v":[["*",[9,9,[[4,1,1,0,1,[[175,1,1,0,1]]],[8,4,4,1,5,[[256,1,1,1,2],[257,3,3,2,5]]],[10,2,2,5,7,[[301,2,2,5,7]]],[13,2,2,7,9,[[391,1,1,7,8],[394,1,1,8,9]]]],[5507,7779,7796,7805,7809,9109,9122,11718,11781]]],["Edomite",[6,6,[[4,1,1,0,1,[[175,1,1,0,1]]],[8,4,4,1,5,[[256,1,1,1,2],[257,3,3,2,5]]],[10,1,1,5,6,[[301,1,1,5,6]]]],[5507,7779,7796,7805,7809,9122]]],["Edomites",[3,3,[[10,1,1,0,1,[[301,1,1,0,1]]],[13,2,2,1,3,[[391,1,1,1,2],[394,1,1,2,3]]]],[9109,11718,11781]]]]},{"k":"H131","v":[["Adummim",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[204,1,1,1,2]]]],[6209,6310]]]]},{"k":"H132","v":[["*",[3,3,[[0,1,1,0,1,[[24,1,1,0,1]]],[8,2,2,1,3,[[251,1,1,1,2],[252,1,1,2,3]]]],[683,7607,7660]]],["red",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[683]]],["ruddy",[2,2,[[8,2,2,0,2,[[251,1,1,0,1],[252,1,1,1,2]]]],[7607,7660]]]]},{"k":"H133","v":[["Admatha",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12716]]]]},{"k":"H134","v":[["*",[56,39,[[1,50,33,0,33,[[75,12,5,0,5],[76,8,8,5,13],[84,2,2,13,15],[85,11,5,15,20],[87,14,10,20,30],[88,2,2,30,32],[89,1,1,32,33]]],[3,4,4,33,37,[[119,2,2,33,35],[120,2,2,35,37]]],[17,1,1,37,38,[[473,1,1,37,38]]],[21,1,1,38,39,[[675,1,1,38,39]]]],[2254,2256,2260,2267,2272,2282,2283,2284,2286,2287,2288,2289,2290,2542,2548,2590,2592,2596,2602,2604,2643,2644,2645,2647,2648,2650,2652,2660,2663,2664,2697,2704,2725,3728,3729,3774,3775,13799,17613]]],["foundations",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13799]]],["socket",[1,1,[[1,1,1,0,1,[[87,1,1,0,1]]]],[2660]]],["sockets",[54,38,[[1,49,33,0,33,[[75,12,5,0,5],[76,8,8,5,13],[84,2,2,13,15],[85,11,5,15,20],[87,13,10,20,30],[88,2,2,30,32],[89,1,1,32,33]]],[3,4,4,33,37,[[119,2,2,33,35],[120,2,2,35,37]]],[21,1,1,37,38,[[675,1,1,37,38]]]],[2254,2256,2260,2267,2272,2282,2283,2284,2286,2287,2288,2289,2290,2542,2548,2590,2592,2596,2602,2604,2643,2644,2645,2647,2648,2650,2652,2660,2663,2664,2697,2704,2725,3728,3729,3774,3775,17613]]]]},{"k":"H135","v":[["Addan",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12086]]]]},{"k":"H136","v":[["*",[438,423,[[0,9,9,0,9,[[14,2,2,0,2],[17,5,5,2,7],[18,1,1,7,8],[19,1,1,8,9]]],[1,6,5,9,14,[[53,2,2,9,11],[54,1,1,11,12],[64,1,1,12,13],[83,2,1,13,14]]],[3,1,1,14,15,[[130,1,1,14,15]]],[4,2,2,15,17,[[155,1,1,15,16],[161,1,1,16,17]]],[5,2,2,17,19,[[193,2,2,17,19]]],[6,4,4,19,23,[[216,2,2,19,21],[223,1,1,21,22],[226,1,1,22,23]]],[9,7,6,23,29,[[273,7,6,23,29]]],[10,5,5,29,34,[[292,1,1,29,30],[293,2,2,30,32],[298,1,1,32,33],[312,1,1,33,34]]],[11,2,2,34,36,[[319,1,1,34,35],[331,1,1,35,36]]],[14,1,1,36,37,[[412,1,1,36,37]]],[15,2,2,37,39,[[413,1,1,37,38],[416,1,1,38,39]]],[17,1,1,39,40,[[463,1,1,39,40]]],[18,54,54,40,94,[[479,1,1,40,41],[493,1,1,41,42],[499,1,1,42,43],[507,1,1,43,44],[512,3,3,44,47],[514,1,1,47,48],[515,3,3,48,51],[516,1,1,51,52],[517,1,1,52,53],[521,1,1,53,54],[528,1,1,54,55],[531,1,1,55,56],[532,1,1,56,57],[534,1,1,57,58],[536,1,1,58,59],[539,1,1,59,60],[543,1,1,60,61],[545,6,6,61,67],[546,1,1,67,68],[548,2,2,68,70],[550,2,2,70,72],[554,2,2,72,74],[555,1,1,74,75],[556,1,1,75,76],[563,7,7,76,83],[566,2,2,83,85],[567,2,2,85,87],[586,1,1,87,88],[587,1,1,88,89],[607,3,3,89,92],[617,1,1,92,93],[618,1,1,93,94]]],[22,47,47,94,141,[[681,3,3,94,97],[682,1,1,97,98],[684,3,3,98,101],[685,3,3,101,104],[686,1,1,104,105],[687,2,2,105,107],[688,3,3,107,110],[689,1,1,110,111],[699,2,2,111,113],[700,4,4,113,117],[703,1,1,117,118],[706,3,3,118,121],[707,1,1,121,122],[708,2,2,122,124],[715,1,1,124,125],[716,2,2,125,127],[718,1,1,127,128],[726,1,1,128,129],[727,2,2,129,131],[728,4,4,131,135],[730,1,1,135,136],[734,1,1,136,137],[739,2,2,137,139],[743,2,2,139,141]]],[23,14,13,141,154,[[745,1,1,141,142],[746,2,2,142,144],[748,1,1,144,145],[751,1,1,145,146],[758,1,1,146,147],[776,2,2,147,149],[788,1,1,149,150],[790,2,1,150,151],[793,1,1,151,152],[794,2,2,152,154]]],[24,14,13,154,167,[[797,3,2,154,156],[798,7,7,156,163],[799,4,4,163,167]]],[25,222,215,167,382,[[803,1,1,167,168],[804,2,2,168,170],[805,1,1,170,171],[806,4,4,171,175],[807,3,2,175,177],[808,2,2,177,179],[809,1,1,179,180],[810,1,1,180,181],[812,6,6,181,187],[813,6,5,187,192],[814,8,7,192,199],[815,9,9,199,208],[816,2,2,208,210],[817,11,11,210,221],[818,5,5,221,226],[819,7,7,226,233],[821,13,12,233,245],[822,6,6,245,251],[823,5,5,251,256],[824,7,7,256,263],[825,6,6,263,269],[826,9,8,269,277],[827,7,7,277,284],[828,1,1,284,285],[829,7,7,285,292],[830,6,6,292,298],[831,5,5,298,303],[832,3,3,303,306],[833,7,7,306,313],[834,5,5,313,318],[835,9,9,318,327],[836,4,4,327,331],[837,15,14,331,345],[838,6,6,345,351],[839,6,6,351,357],[840,9,9,357,366],[844,3,3,366,369],[845,5,5,369,374],[846,4,3,374,377],[847,2,2,377,379],[848,2,2,379,381],[849,1,1,381,382]]],[26,11,9,382,391,[[850,1,1,382,383],[858,10,8,383,391]]],[29,25,24,391,415,[[879,1,1,391,392],[881,4,4,392,396],[882,2,2,396,398],[883,2,2,398,400],[884,1,1,400,401],[885,8,7,401,408],[886,4,4,408,412],[887,3,3,412,415]]],[30,1,1,415,416,[[888,1,1,415,416]]],[32,2,1,416,417,[[893,2,1,416,417]]],[34,1,1,417,418,[[905,1,1,417,418]]],[35,1,1,418,419,[[906,1,1,418,419]]],[37,2,2,419,421,[[919,2,2,419,421]]],[38,2,2,421,423,[[925,2,2,421,423]]]],[362,368,427,451,454,455,456,475,499,1611,1614,1654,1937,2505,4125,4999,5183,5983,5984,6669,6676,6892,6977,8198,8199,8200,8202,8208,8209,8796,8826,8831,9038,9486,9713,10084,12255,12307,12373,13532,13949,14094,14234,14327,14427,14432,14433,14463,14499,14505,14512,14519,14542,14594,14706,14729,14741,14777,14801,14839,14891,14911,14917,14919,14920,14922,14932,14941,14981,14992,15040,15048,15095,15100,15178,15197,15287,15288,15289,15292,15293,15296,15299,15375,15376,15379,15395,15776,15791,16142,16143,16146,16270,16284,17722,17724,17725,17737,17770,17777,17780,17789,17796,17802,17814,17837,17846,17862,17873,17874,17895,18041,18051,18057,18064,18066,18067,18126,18166,18180,18186,18206,18232,18237,18376,18404,18406,18430,18630,18650,18658,18666,18667,18669,18671,18700,18761,18844,18854,18910,18912,18952,18984,18987,19037,19139,19306,19748,19756,20036,20055,20132,20191,20197,20324,20325,20333,20334,20337,20339,20350,20351,20352,20385,20390,20391,20412,20496,20513,20529,20543,20551,20553,20554,20557,20566,20574,20579,20582,20605,20630,20662,20663,20668,20671,20672,20676,20690,20699,20703,20705,20708,20711,20716,20717,20721,20724,20726,20728,20735,20737,20742,20745,20747,20749,20751,20752,20754,20760,20762,20765,20770,20776,20781,20785,20792,20798,20805,20810,20821,20825,20828,20834,20841,20844,20847,20852,20858,20872,20874,20878,20879,20881,20898,20900,20922,20925,20926,20928,20931,20934,20935,20939,20942,20944,20951,20953,20957,20968,20970,20972,20979,20988,20995,21004,21007,21029,21035,21039,21041,21042,21053,21056,21059,21062,21065,21070,21077,21080,21086,21089,21091,21095,21096,21097,21098,21099,21103,21105,21107,21114,21115,21119,21121,21124,21159,21163,21167,21169,21179,21181,21182,21186,21191,21196,21199,21202,21203,21206,21210,21214,21217,21226,21240,21245,21248,21251,21256,21259,21262,21264,21279,21280,21291,21297,21300,21305,21307,21315,21321,21323,21324,21328,21330,21333,21343,21344,21347,21350,21355,21358,21361,21362,21363,21364,21365,21366,21372,21373,21374,21381,21382,21391,21392,21396,21400,21402,21406,21409,21416,21418,21428,21435,21439,21442,21443,21446,21449,21453,21456,21458,21461,21465,21468,21473,21477,21590,21591,21599,21605,21608,21611,21614,21626,21639,21645,21648,21656,21671,21692,21702,21731,21739,21991,21992,21995,21997,22003,22004,22005,22007,22372,22402,22403,22406,22408,22412,22415,22426,22439,22458,22465,22466,22468,22469,22470,22471,22472,22482,22484,22490,22492,22496,22500,22503,22511,22581,22787,22794,23003,23013,23101,23103]]],["+",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22005]]],["God",[2,2,[[9,1,1,0,1,[[273,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[8202,22787]]],["LORD",[6,6,[[10,1,1,0,1,[[293,1,1,0,1]]],[18,2,2,1,3,[[507,1,1,1,2],[567,1,1,2,3]]],[22,1,1,3,4,[[716,1,1,3,4]]],[25,1,1,4,5,[[822,1,1,4,5]]],[38,1,1,5,6,[[925,1,1,5,6]]]],[8831,14327,15395,18404,20953,23101]]],["Lord",[428,413,[[0,9,9,0,9,[[14,2,2,0,2],[17,5,5,2,7],[18,1,1,7,8],[19,1,1,8,9]]],[1,6,5,9,14,[[53,2,2,9,11],[54,1,1,11,12],[64,1,1,12,13],[83,2,1,13,14]]],[3,1,1,14,15,[[130,1,1,14,15]]],[4,2,2,15,17,[[155,1,1,15,16],[161,1,1,16,17]]],[5,2,2,17,19,[[193,2,2,17,19]]],[6,4,4,19,23,[[216,2,2,19,21],[223,1,1,21,22],[226,1,1,22,23]]],[9,6,5,23,28,[[273,6,5,23,28]]],[10,4,4,28,32,[[292,1,1,28,29],[293,1,1,29,30],[298,1,1,30,31],[312,1,1,31,32]]],[11,2,2,32,34,[[319,1,1,32,33],[331,1,1,33,34]]],[15,2,2,34,36,[[413,1,1,34,35],[416,1,1,35,36]]],[17,1,1,36,37,[[463,1,1,36,37]]],[18,52,52,37,89,[[479,1,1,37,38],[493,1,1,38,39],[499,1,1,39,40],[512,3,3,40,43],[514,1,1,43,44],[515,3,3,44,47],[516,1,1,47,48],[517,1,1,48,49],[521,1,1,49,50],[528,1,1,50,51],[531,1,1,51,52],[532,1,1,52,53],[534,1,1,53,54],[536,1,1,54,55],[539,1,1,55,56],[543,1,1,56,57],[545,6,6,57,63],[546,1,1,63,64],[548,2,2,64,66],[550,2,2,66,68],[554,2,2,68,70],[555,1,1,70,71],[556,1,1,71,72],[563,7,7,72,79],[566,2,2,79,81],[567,1,1,81,82],[586,1,1,82,83],[587,1,1,83,84],[607,3,3,84,87],[617,1,1,87,88],[618,1,1,88,89]]],[22,46,46,89,135,[[681,3,3,89,92],[682,1,1,92,93],[684,3,3,93,96],[685,3,3,96,99],[686,1,1,99,100],[687,2,2,100,102],[688,3,3,102,105],[689,1,1,105,106],[699,2,2,106,108],[700,4,4,108,112],[703,1,1,112,113],[706,3,3,113,116],[707,1,1,116,117],[708,2,2,117,119],[715,1,1,119,120],[716,1,1,120,121],[718,1,1,121,122],[726,1,1,122,123],[727,2,2,123,125],[728,4,4,125,129],[730,1,1,129,130],[734,1,1,130,131],[739,2,2,131,133],[743,2,2,133,135]]],[23,14,13,135,148,[[745,1,1,135,136],[746,2,2,136,138],[748,1,1,138,139],[751,1,1,139,140],[758,1,1,140,141],[776,2,2,141,143],[788,1,1,143,144],[790,2,1,144,145],[793,1,1,145,146],[794,2,2,146,148]]],[24,14,13,148,161,[[797,3,2,148,150],[798,7,7,150,157],[799,4,4,157,161]]],[25,221,214,161,375,[[803,1,1,161,162],[804,2,2,162,164],[805,1,1,164,165],[806,4,4,165,169],[807,3,2,169,171],[808,2,2,171,173],[809,1,1,173,174],[810,1,1,174,175],[812,6,6,175,181],[813,6,5,181,186],[814,8,7,186,193],[815,9,9,193,202],[816,2,2,202,204],[817,11,11,204,215],[818,5,5,215,220],[819,7,7,220,227],[821,13,12,227,239],[822,5,5,239,244],[823,5,5,244,249],[824,7,7,249,256],[825,6,6,256,262],[826,9,8,262,270],[827,7,7,270,277],[828,1,1,277,278],[829,7,7,278,285],[830,6,6,285,291],[831,5,5,291,296],[832,3,3,296,299],[833,7,7,299,306],[834,5,5,306,311],[835,9,9,311,320],[836,4,4,320,324],[837,15,14,324,338],[838,6,6,338,344],[839,6,6,344,350],[840,9,9,350,359],[844,3,3,359,362],[845,5,5,362,367],[846,4,3,367,370],[847,2,2,370,372],[848,2,2,372,374],[849,1,1,374,375]]],[26,10,8,375,383,[[850,1,1,375,376],[858,9,7,376,383]]],[29,25,24,383,407,[[879,1,1,383,384],[881,4,4,384,388],[882,2,2,388,390],[883,2,2,390,392],[884,1,1,392,393],[885,8,7,393,400],[886,4,4,400,404],[887,3,3,404,407]]],[30,1,1,407,408,[[888,1,1,407,408]]],[32,2,1,408,409,[[893,2,1,408,409]]],[35,1,1,409,410,[[906,1,1,409,410]]],[37,2,2,410,412,[[919,2,2,410,412]]],[38,1,1,412,413,[[925,1,1,412,413]]]],[362,368,427,451,454,455,456,475,499,1611,1614,1654,1937,2505,4125,4999,5183,5983,5984,6669,6676,6892,6977,8198,8199,8200,8208,8209,8796,8826,9038,9486,9713,10084,12307,12373,13532,13949,14094,14234,14427,14432,14433,14463,14499,14505,14512,14519,14542,14594,14706,14729,14741,14777,14801,14839,14891,14911,14917,14919,14920,14922,14932,14941,14981,14992,15040,15048,15095,15100,15178,15197,15287,15288,15289,15292,15293,15296,15299,15375,15376,15379,15776,15791,16142,16143,16146,16270,16284,17722,17724,17725,17737,17770,17777,17780,17789,17796,17802,17814,17837,17846,17862,17873,17874,17895,18041,18051,18057,18064,18066,18067,18126,18166,18180,18186,18206,18232,18237,18376,18406,18430,18630,18650,18658,18666,18667,18669,18671,18700,18761,18844,18854,18910,18912,18952,18984,18987,19037,19139,19306,19748,19756,20036,20055,20132,20191,20197,20324,20325,20333,20334,20337,20339,20350,20351,20352,20385,20390,20391,20412,20496,20513,20529,20543,20551,20553,20554,20557,20566,20574,20579,20582,20605,20630,20662,20663,20668,20671,20672,20676,20690,20699,20703,20705,20708,20711,20716,20717,20721,20724,20726,20728,20735,20737,20742,20745,20747,20749,20751,20752,20754,20760,20762,20765,20770,20776,20781,20785,20792,20798,20805,20810,20821,20825,20828,20834,20841,20844,20847,20852,20858,20872,20874,20878,20879,20881,20898,20900,20922,20925,20926,20928,20931,20934,20935,20939,20942,20944,20951,20957,20968,20970,20972,20979,20988,20995,21004,21007,21029,21035,21039,21041,21042,21053,21056,21059,21062,21065,21070,21077,21080,21086,21089,21091,21095,21096,21097,21098,21099,21103,21105,21107,21114,21115,21119,21121,21124,21159,21163,21167,21169,21179,21181,21182,21186,21191,21196,21199,21202,21203,21206,21210,21214,21217,21226,21240,21245,21248,21251,21256,21259,21262,21264,21279,21280,21291,21297,21300,21305,21307,21315,21321,21323,21324,21328,21330,21333,21343,21344,21347,21350,21355,21358,21361,21362,21363,21364,21365,21366,21372,21373,21374,21381,21382,21391,21392,21396,21400,21402,21406,21409,21416,21418,21428,21435,21439,21442,21443,21446,21449,21453,21456,21458,21461,21465,21468,21473,21477,21590,21591,21599,21605,21608,21611,21614,21626,21639,21645,21648,21656,21671,21692,21702,21731,21739,21991,21992,21995,21997,22003,22004,22007,22372,22402,22403,22406,22408,22412,22415,22426,22439,22458,22465,22466,22468,22469,22470,22471,22472,22482,22484,22490,22492,22496,22500,22503,22511,22581,22794,23003,23013,23103]]],["lord",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12255]]]]},{"k":"H137","v":[["Adonibezek",[3,3,[[6,3,3,0,3,[[211,3,3,0,3]]]],[6514,6515,6516]]]]},{"k":"H138","v":[["Adonijah",[26,26,[[9,1,1,0,1,[[269,1,1,0,1]]],[10,22,22,1,23,[[291,15,15,1,16],[292,7,7,16,23]]],[12,1,1,23,24,[[340,1,1,23,24]]],[13,1,1,24,25,[[383,1,1,24,25]]],[15,1,1,25,26,[[422,1,1,25,26]]]],[8085,8722,8724,8725,8726,8728,8730,8735,8741,8742,8758,8759,8760,8766,8767,8768,8783,8789,8791,8792,8793,8794,8798,10363,11531,12565]]]]},{"k":"H139","v":[["Adonizedek",[2,2,[[5,2,2,0,2,[[196,2,2,0,2]]]],[6065,6067]]]]},{"k":"H140","v":[["Adonikam",[3,3,[[14,2,2,0,2,[[404,1,1,0,1],[410,1,1,1,2]]],[15,1,1,2,3,[[419,1,1,2,3]]]],[12040,12214,12438]]]]},{"k":"H141","v":[["Adoniram",[2,2,[[10,2,2,0,2,[[294,1,1,0,1],[295,1,1,1,2]]]],[8850,8892]]]]},{"k":"H142","v":[["*",[3,3,[[1,2,2,0,2,[[64,2,2,0,2]]],[22,1,1,2,3,[[720,1,1,2,3]]]],[1926,1931,18501]]],["glorious",[2,2,[[1,2,2,0,2,[[64,2,2,0,2]]]],[1926,1931]]],["honourable",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18501]]]]},{"k":"H143","v":[["Adar",[8,8,[[16,8,8,0,8,[[428,2,2,0,2],[433,1,1,2,3],[434,5,5,3,8]]]],[12754,12760,12829,12835,12849,12851,12853,12855]]]]},{"k":"H144","v":[["Adar",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12166]]]]},{"k":"H145","v":[["*",[2,2,[[32,1,1,0,1,[[894,1,1,0,1]]],[37,1,1,1,2,[[921,1,1,1,2]]]],[22603,23041]]],["goodly",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23041]]],["robe",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22603]]]]},{"k":"H146","v":[["*",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[12,1,1,1,2,[[345,1,1,1,2]]]],[6205,10578]]],["Adar",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6205]]],["Addar",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10578]]]]},{"k":"H147","v":[["threshingfloors",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21793]]]]},{"k":"H148","v":[["judges",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21809,21810]]]]},{"k":"H149","v":[["diligently",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12196]]]]},{"k":"H150","v":[["drams",[2,2,[[12,1,1,0,1,[[366,1,1,0,1]]],[14,1,1,1,2,[[410,1,1,1,2]]]],[11171,12228]]]]},{"k":"H151","v":[["Adoram",[2,2,[[9,1,1,0,1,[[286,1,1,0,1]]],[10,1,1,1,2,[[302,1,1,1,2]]]],[8578,9169]]]]},{"k":"H152","v":[["Adrammelech",[3,3,[[11,2,2,0,2,[[329,1,1,0,1],[331,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]]],[10014,10098,18390]]]]},{"k":"H153","v":[["force",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12133]]]]},{"k":"H154","v":[["Edrei",[8,8,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,3,3,1,4,[[153,1,1,1,2],[155,2,2,2,4]]],[5,4,4,4,8,[[198,1,1,4,5],[199,2,2,5,7],[205,1,1,7,8]]]],[4373,4896,4976,4985,6134,6166,6185,6358]]]]},{"k":"H155","v":[["*",[12,12,[[0,1,1,0,1,[[24,1,1,0,1]]],[5,2,2,1,3,[[193,2,2,1,3]]],[10,2,2,3,5,[[309,2,2,3,5]]],[11,3,3,5,8,[[314,3,3,5,8]]],[25,1,1,8,9,[[818,1,1,8,9]]],[31,1,1,9,10,[[891,1,1,9,10]]],[37,2,2,10,12,[[921,1,1,10,11],[923,1,1,11,12]]]],[683,5997,6000,9400,9406,9559,9564,9565,20833,22564,23031,23063]]],["garment",[4,4,[[0,1,1,0,1,[[24,1,1,0,1]]],[5,2,2,1,3,[[193,2,2,1,3]]],[37,1,1,3,4,[[923,1,1,3,4]]]],[683,5997,6000,23063]]],["glory",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23031]]],["goodly",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20833]]],["mantle",[5,5,[[10,2,2,0,2,[[309,2,2,0,2]]],[11,3,3,2,5,[[314,3,3,2,5]]]],[9400,9406,9559,9564,9565]]],["robe",[1,1,[[31,1,1,0,1,[[891,1,1,0,1]]]],[22564]]]]},{"k":"H156","v":[]},{"k":"H157","v":[["*",[212,199,[[0,14,13,0,13,[[21,1,1,0,1],[23,1,1,1,2],[24,2,1,2,3],[26,3,3,3,6],[28,3,3,6,9],[33,1,1,9,10],[36,2,2,10,12],[43,1,1,12,13]]],[1,2,2,13,15,[[69,1,1,13,14],[70,1,1,14,15]]],[2,2,2,15,17,[[108,2,2,15,17]]],[4,22,21,17,38,[[156,1,1,17,18],[157,1,1,18,19],[158,1,1,19,20],[159,2,2,20,22],[162,4,4,22,26],[163,3,3,26,29],[165,1,1,29,30],[167,1,1,30,31],[171,1,1,31,32],[173,3,2,32,34],[175,1,1,34,35],[182,3,3,35,38]]],[5,2,2,38,40,[[208,1,1,38,39],[209,1,1,39,40]]],[6,4,4,40,44,[[215,1,1,40,41],[224,1,1,41,42],[226,2,2,42,44]]],[7,1,1,44,45,[[235,1,1,44,45]]],[8,9,9,45,54,[[236,1,1,45,46],[251,1,1,46,47],[253,6,6,47,53],[255,1,1,53,54]]],[9,7,6,54,60,[[267,1,1,54,55],[278,1,1,55,56],[279,3,3,56,59],[285,2,1,59,60]]],[10,5,5,60,65,[[293,1,1,60,61],[295,1,1,61,62],[300,1,1,62,63],[301,2,2,63,65]]],[13,4,4,65,69,[[377,1,1,65,66],[385,1,1,66,67],[386,1,1,67,68],[392,1,1,68,69]]],[15,2,2,69,71,[[413,1,1,69,70],[425,1,1,70,71]]],[16,4,4,71,75,[[427,1,1,71,72],[430,2,2,72,74],[431,1,1,74,75]]],[17,1,1,75,76,[[454,1,1,75,76]]],[18,39,39,76,115,[[481,1,1,76,77],[482,1,1,77,78],[488,2,2,78,80],[503,1,1,80,81],[508,1,1,81,82],[510,1,1,82,83],[511,1,1,83,84],[514,1,1,84,85],[515,1,1,85,86],[517,1,1,86,87],[522,1,1,87,88],[524,1,1,88,89],[529,2,2,89,91],[546,1,1,91,92],[547,1,1,92,93],[555,1,1,93,94],[564,1,1,94,95],[565,1,1,95,96],[574,1,1,96,97],[576,1,1,97,98],[586,1,1,98,99],[593,1,1,99,100],[596,12,12,100,112],[599,1,1,112,113],[622,1,1,113,114],[623,1,1,114,115]]],[19,27,23,115,138,[[628,1,1,115,116],[630,1,1,116,117],[631,1,1,117,118],[635,4,3,118,121],[636,1,1,121,122],[639,2,1,122,123],[640,1,1,123,124],[641,1,1,124,125],[642,2,2,125,127],[643,1,1,127,128],[644,3,2,128,130],[645,2,2,130,132],[646,1,1,132,133],[647,1,1,133,134],[648,2,1,134,135],[649,1,1,135,136],[654,1,1,136,137],[656,1,1,137,138]]],[20,4,3,138,141,[[661,1,1,138,139],[663,2,1,139,140],[667,1,1,140,141]]],[21,7,7,141,148,[[671,3,3,141,144],[673,4,4,144,148]]],[22,9,9,148,157,[[679,1,1,148,149],[719,1,1,149,150],[721,1,1,150,151],[726,1,1,151,152],[734,2,2,152,154],[735,1,1,154,155],[739,1,1,155,156],[744,1,1,156,157]]],[23,10,10,157,167,[[746,1,1,157,158],[749,1,1,158,159],[752,1,1,159,160],[758,1,1,160,161],[764,2,2,161,163],[766,2,2,163,165],[774,1,1,165,166],[775,1,1,166,167]]],[24,2,2,167,169,[[797,2,2,167,169]]],[25,7,6,169,175,[[817,4,3,169,172],[824,3,3,172,175]]],[26,1,1,175,176,[[858,1,1,175,176]]],[27,16,14,176,190,[[863,5,5,176,181],[864,3,1,181,182],[865,1,1,182,183],[870,3,3,183,186],[871,1,1,186,187],[872,1,1,187,188],[873,1,1,188,189],[875,1,1,189,190]]],[29,2,2,190,192,[[882,1,1,190,191],[883,1,1,191,192]]],[32,2,2,192,194,[[895,1,1,192,193],[898,1,1,193,194]]],[37,3,3,194,197,[[918,2,2,194,196],[923,1,1,196,197]]],[38,4,2,197,199,[[925,3,1,197,198],[926,1,1,198,199]]]],[549,658,686,731,736,741,813,825,827,983,1086,1087,1344,2057,2082,3299,3315,5041,5063,5091,5120,5124,5198,5201,5204,5205,5209,5221,5230,5275,5335,5415,5462,5463,5505,5714,5724,5728,6431,6471,6654,6925,6953,6964,7205,7217,7616,7677,7679,7692,7696,7698,7704,7747,8045,8310,8318,8321,8332,8517,8819,8879,9088,9109,9110,11435,11578,11594,11742,12301,12697,12741,12789,12793,12806,13316,13967,13984,14064,14066,14281,14354,14371,14400,14478,14501,14541,14604,14629,14713,14714,14971,14975,15181,15303,15326,15488,15503,15772,15849,15945,15946,15995,16011,16017,16025,16030,16038,16057,16061,16063,16065,16095,16340,16349,16422,16467,16496,16619,16623,16638,16646,16720,16771,16792,16816,16819,16853,16890,16892,16922,16925,16933,16967,17001,17026,17175,17227,17367,17407,17484,17540,17541,17544,17572,17573,17574,17575,17677,18459,18509,18628,18759,18763,18773,18851,18932,18990,19089,19155,19303,19426,19428,19474,19476,19681,19694,20312,20329,20795,20798,20799,21012,21016,21029,21992,22110,22112,22115,22117,22118,22129,22151,22209,22218,22223,22236,22241,22259,22286,22415,22438,22610,22656,22993,22995,23065,23091,23114]]],["+",[37,36,[[0,5,4,0,4,[[24,2,1,0,1],[28,1,1,1,2],[33,1,1,2,3],[36,1,1,3,4]]],[1,1,1,4,5,[[70,1,1,4,5]]],[4,10,10,5,15,[[156,1,1,5,6],[158,1,1,6,7],[163,3,3,7,10],[165,1,1,10,11],[171,1,1,11,12],[182,3,3,12,15]]],[5,2,2,15,17,[[208,1,1,15,16],[209,1,1,16,17]]],[8,3,3,17,20,[[236,1,1,17,18],[253,2,2,18,20]]],[9,2,2,20,22,[[279,1,1,20,21],[285,1,1,21,22]]],[10,2,2,22,24,[[293,1,1,22,23],[300,1,1,23,24]]],[13,2,2,24,26,[[377,1,1,24,25],[392,1,1,25,26]]],[16,2,2,26,28,[[427,1,1,26,27],[431,1,1,27,28]]],[18,1,1,28,29,[[508,1,1,28,29]]],[21,5,5,29,34,[[671,1,1,29,30],[673,4,4,30,34]]],[22,1,1,34,35,[[734,1,1,34,35]]],[38,1,1,35,36,[[925,1,1,35,36]]]],[686,813,983,1086,2082,5041,5091,5209,5221,5230,5275,5415,5714,5724,5728,6431,6471,7217,7692,7696,8321,8517,8819,9088,11435,11742,12741,12806,14354,17544,17572,17573,17574,17575,18759,23091]]],["Love",[2,2,[[4,1,1,0,1,[[162,1,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]]],[5205,16967]]],["Lover",[1,1,[[18,1,1,0,1,[[565,1,1,0,1]]]],[15326]]],["beloved",[5,4,[[4,3,2,0,2,[[173,3,2,0,2]]],[15,1,1,2,3,[[425,1,1,2,3]]],[27,1,1,3,4,[[864,1,1,3,4]]]],[5462,5463,12697,22129]]],["friend",[4,4,[[13,1,1,0,1,[[386,1,1,0,1]]],[19,2,2,1,3,[[645,1,1,1,2],[654,1,1,2,3]]],[22,1,1,3,4,[[719,1,1,3,4]]]],[11594,16925,17175,18459]]],["friends",[7,7,[[9,1,1,0,1,[[285,1,1,0,1]]],[16,2,2,1,3,[[430,2,2,1,3]]],[19,1,1,3,4,[[641,1,1,3,4]]],[23,2,2,4,6,[[764,2,2,4,6]]],[37,1,1,6,7,[[923,1,1,6,7]]]],[8517,12789,12793,16792,19426,19428,23065]]],["liketh",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22415]]],["love",[60,58,[[0,2,2,0,2,[[26,1,1,0,1],[28,1,1,1,2]]],[1,1,1,2,3,[[69,1,1,2,3]]],[2,2,2,3,5,[[108,2,2,3,5]]],[4,5,5,5,10,[[157,1,1,5,6],[159,2,2,6,8],[162,2,2,8,10]]],[6,2,2,10,12,[[215,1,1,10,11],[226,1,1,11,12]]],[8,1,1,12,13,[[253,1,1,12,13]]],[10,1,1,13,14,[[301,1,1,13,14]]],[13,1,1,14,15,[[385,1,1,14,15]]],[15,1,1,15,16,[[413,1,1,15,16]]],[18,18,18,16,34,[[481,1,1,16,17],[482,1,1,17,18],[517,1,1,18,19],[546,1,1,19,20],[547,1,1,20,21],[574,1,1,21,22],[593,1,1,22,23],[596,9,9,23,32],[599,1,1,32,33],[622,1,1,33,34]]],[19,9,8,34,42,[[628,1,1,34,35],[631,1,1,35,36],[635,4,3,36,39],[636,1,1,39,40],[643,1,1,40,41],[645,1,1,41,42]]],[20,1,1,42,43,[[661,1,1,42,43]]],[21,2,2,43,45,[[671,2,2,43,45]]],[22,2,2,45,47,[[739,1,1,45,46],[744,1,1,46,47]]],[23,1,1,47,48,[[749,1,1,47,48]]],[26,1,1,48,49,[[858,1,1,48,49]]],[27,5,4,49,53,[[864,2,1,49,50],[865,1,1,50,51],[870,1,1,51,52],[875,1,1,52,53]]],[29,1,1,53,54,[[883,1,1,53,54]]],[32,2,2,54,56,[[895,1,1,54,55],[898,1,1,55,56]]],[37,2,2,56,58,[[918,2,2,56,58]]]],[731,827,2057,3299,3315,5063,5120,5124,5198,5201,6654,6964,7698,9110,11578,12301,13967,13984,14541,14971,14975,15488,15849,15995,16011,16017,16025,16030,16057,16061,16063,16065,16095,16340,16422,16496,16619,16623,16638,16646,16853,16922,17367,17540,17541,18851,18932,19089,21992,22129,22151,22223,22286,22438,22610,22656,22993,22995]]],["loved",[35,34,[[0,4,4,0,4,[[23,1,1,0,1],[26,1,1,1,2],[28,1,1,2,3],[36,1,1,3,4]]],[4,1,1,4,5,[[175,1,1,4,5]]],[6,1,1,5,6,[[226,1,1,5,6]]],[8,5,5,6,11,[[251,1,1,6,7],[253,3,3,7,10],[255,1,1,10,11]]],[9,3,3,11,14,[[278,1,1,11,12],[279,2,2,12,14]]],[10,1,1,14,15,[[301,1,1,14,15]]],[17,1,1,15,16,[[454,1,1,15,16]]],[18,6,6,16,22,[[503,1,1,16,17],[524,1,1,17,18],[555,1,1,18,19],[586,1,1,19,20],[596,2,2,20,22]]],[22,2,2,22,24,[[721,1,1,22,23],[726,1,1,23,24]]],[23,4,4,24,28,[[746,1,1,24,25],[752,1,1,25,26],[758,1,1,26,27],[775,1,1,27,28]]],[25,1,1,28,29,[[817,1,1,28,29]]],[27,3,3,29,32,[[870,2,2,29,31],[872,1,1,31,32]]],[38,3,2,32,34,[[925,2,1,32,33],[926,1,1,33,34]]]],[658,741,825,1087,5505,6953,7616,7677,7679,7704,7747,8310,8318,8332,9109,13316,14281,14629,15181,15772,15945,15946,18509,18628,18990,19155,19303,19694,20799,22209,22218,22241,23091,23114]]],["lovedst",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18773]]],["lovely",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8045]]],["lover",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8879]]],["lovers",[17,17,[[18,1,1,0,1,[[515,1,1,0,1]]],[23,3,3,1,4,[[766,2,2,1,3],[774,1,1,3,4]]],[24,2,2,4,6,[[797,2,2,4,6]]],[25,6,6,6,12,[[817,3,3,6,9],[824,3,3,9,12]]],[27,5,5,12,17,[[863,5,5,12,17]]]],[14501,19474,19476,19681,20312,20329,20795,20798,20799,21012,21016,21029,22110,22112,22115,22117,22118]]],["lovest",[6,6,[[0,1,1,0,1,[[21,1,1,0,1]]],[6,1,1,1,2,[[224,1,1,1,2]]],[18,3,3,2,5,[[522,1,1,2,3],[529,2,2,3,5]]],[20,1,1,5,6,[[667,1,1,5,6]]]],[549,6925,14604,14713,14714,17484]]],["loveth",[33,29,[[0,2,2,0,2,[[26,1,1,0,1],[43,1,1,1,2]]],[4,2,2,2,4,[[162,1,1,2,3],[167,1,1,3,4]]],[7,1,1,4,5,[[235,1,1,4,5]]],[18,9,9,5,14,[[488,2,2,5,7],[510,1,1,7,8],[511,1,1,8,9],[514,1,1,9,10],[564,1,1,10,11],[576,1,1,11,12],[596,1,1,12,13],[623,1,1,13,14]]],[19,14,11,14,25,[[630,1,1,14,15],[639,2,1,15,16],[640,1,1,16,17],[642,2,2,17,19],[644,3,2,19,21],[646,1,1,21,22],[648,2,1,22,23],[649,1,1,23,24],[656,1,1,24,25]]],[20,2,1,25,26,[[663,2,1,25,26]]],[22,1,1,26,27,[[679,1,1,26,27]]],[27,2,2,27,29,[[871,1,1,27,28],[873,1,1,28,29]]]],[736,1344,5204,5335,7205,14064,14066,14371,14400,14478,15303,15503,16038,16349,16467,16720,16771,16816,16819,16890,16892,16933,17001,17026,17227,17407,17677,22236,22259]]],["loving",[1,1,[[22,1,1,0,1,[[734,1,1,0,1]]]],[18763]]]]},{"k":"H158","v":[["*",[2,2,[[19,1,1,0,1,[[632,1,1,0,1]]],[27,1,1,1,2,[[869,1,1,1,2]]]],[16536,22203]]],["lovers",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22203]]],["loving",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16536]]]]},{"k":"H159","v":[["loves",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16593]]]]},{"k":"H160","v":[["*",[36,33,[[0,1,1,0,1,[[28,1,1,0,1]]],[4,1,1,1,2,[[159,1,1,1,2]]],[8,2,1,2,3,[[255,2,1,2,3]]],[9,3,2,3,5,[[267,2,1,3,4],[279,1,1,4,5]]],[13,2,2,5,7,[[368,1,1,5,6],[375,1,1,6,7]]],[18,2,2,7,9,[[586,2,2,7,9]]],[19,5,5,9,14,[[632,1,1,9,10],[637,1,1,10,11],[642,1,1,11,12],[644,1,1,12,13],[654,1,1,13,14]]],[20,2,2,14,16,[[667,2,2,14,16]]],[21,11,10,16,26,[[672,3,3,16,19],[673,2,2,19,21],[675,1,1,21,22],[677,1,1,22,23],[678,4,3,23,26]]],[22,1,1,26,27,[[741,1,1,26,27]]],[23,3,3,27,30,[[746,2,2,27,29],[775,1,1,29,30]]],[27,2,2,30,32,[[864,1,1,30,31],[872,1,1,31,32]]],[35,1,1,32,33,[[908,1,1,32,33]]]],[815,5119,7747,8048,8332,11222,11372,15759,15760,16536,16668,16824,16882,17174,17476,17481,17558,17559,17561,17576,17581,17606,17633,17644,17646,17647,18875,18967,18998,19694,22129,22244,22837]]],["+",[6,6,[[4,1,1,0,1,[[159,1,1,0,1]]],[9,2,2,1,3,[[267,1,1,1,2],[279,1,1,2,3]]],[13,2,2,3,5,[[368,1,1,3,4],[375,1,1,4,5]]],[19,1,1,5,6,[[654,1,1,5,6]]]],[5119,8048,8332,11222,11372,17174]]],["love",[28,27,[[0,1,1,0,1,[[28,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]],[18,2,2,2,4,[[586,2,2,2,4]]],[19,4,4,4,8,[[632,1,1,4,5],[637,1,1,5,6],[642,1,1,6,7],[644,1,1,7,8]]],[20,2,2,8,10,[[667,2,2,8,10]]],[21,11,10,10,20,[[672,3,3,10,13],[673,2,2,13,15],[675,1,1,15,16],[677,1,1,16,17],[678,4,3,17,20]]],[22,1,1,20,21,[[741,1,1,20,21]]],[23,3,3,21,24,[[746,2,2,21,23],[775,1,1,23,24]]],[27,2,2,24,26,[[864,1,1,24,25],[872,1,1,25,26]]],[35,1,1,26,27,[[908,1,1,26,27]]]],[815,8048,15759,15760,16536,16668,16824,16882,17476,17481,17558,17559,17561,17576,17581,17606,17633,17644,17646,17647,18875,18967,18998,19694,22129,22244,22837]]],["loved",[2,1,[[8,2,1,0,1,[[255,2,1,0,1]]]],[7747]]]]},{"k":"H161","v":[["Ohad",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]]],[1396,1670]]]]},{"k":"H162","v":[["*",[15,15,[[5,1,1,0,1,[[193,1,1,0,1]]],[6,2,2,1,3,[[216,1,1,1,2],[221,1,1,2,3]]],[11,3,3,3,6,[[315,1,1,3,4],[318,2,2,4,6]]],[23,4,4,6,10,[[745,1,1,6,7],[748,1,1,7,8],[758,1,1,8,9],[776,1,1,9,10]]],[25,4,4,10,14,[[805,1,1,10,11],[810,1,1,11,12],[812,1,1,12,13],[821,1,1,13,14]]],[28,1,1,14,15,[[876,1,1,14,15]]]],[5983,6676,6864,9586,9679,9689,18952,19037,19306,19748,20543,20630,20668,20944,22306]]],["Ah",[8,8,[[23,4,4,0,4,[[745,1,1,0,1],[748,1,1,1,2],[758,1,1,2,3],[776,1,1,3,4]]],[25,4,4,4,8,[[805,1,1,4,5],[810,1,1,5,6],[812,1,1,6,7],[821,1,1,7,8]]]],[18952,19037,19306,19748,20543,20630,20668,20944]]],["Alas",[7,7,[[5,1,1,0,1,[[193,1,1,0,1]]],[6,2,2,1,3,[[216,1,1,1,2],[221,1,1,2,3]]],[11,3,3,3,6,[[315,1,1,3,4],[318,2,2,4,6]]],[28,1,1,6,7,[[876,1,1,6,7]]]],[5983,6676,6864,9586,9679,9689,22306]]]]},{"k":"H163","v":[["Ahava",[3,3,[[14,3,3,0,3,[[410,3,3,0,3]]]],[12216,12222,12232]]]]},{"k":"H164","v":[["Ehud",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10545]]]]},{"k":"H165","v":[["be",[3,2,[[27,3,2,0,2,[[874,3,2,0,2]]]],[22276,22280]]]]},{"k":"H166","v":[["shineth",[1,1,[[17,1,1,0,1,[[460,1,1,0,1]]]],[13466]]]]},{"k":"H167","v":[["*",[4,4,[[0,2,2,0,2,[[12,2,2,0,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[22,1,1,3,4,[[691,1,1,3,4]]]],[330,336,7706,17926]]],["+",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7706]]],["tent",[3,3,[[0,2,2,0,2,[[12,2,2,0,2]]],[22,1,1,2,3,[[691,1,1,2,3]]]],[330,336,17926]]]]},{"k":"H168","v":[["*",[345,314,[[0,23,19,0,19,[[3,1,1,0,1],[8,2,2,1,3],[11,1,1,3,4],[12,2,2,4,6],[17,5,5,6,11],[23,1,1,11,12],[24,1,1,12,13],[25,1,1,13,14],[30,7,3,14,17],[32,1,1,17,18],[34,1,1,18,19]]],[1,62,54,19,73,[[65,1,1,19,20],[67,1,1,20,21],[75,7,7,21,28],[76,1,1,28,29],[77,1,1,29,30],[78,7,7,30,37],[79,5,5,37,42],[80,2,1,42,43],[82,11,5,43,48],[84,2,2,48,50],[85,4,4,50,54],[87,2,2,54,56],[88,4,4,56,60],[89,14,13,60,73]]],[2,44,42,73,115,[[90,3,3,73,76],[92,3,3,76,79],[93,8,6,79,85],[95,3,3,85,88],[97,5,5,88,93],[98,2,2,93,95],[99,2,2,95,97],[101,1,1,97,98],[103,3,3,98,101],[104,2,2,101,103],[105,6,6,103,109],[106,4,4,109,113],[108,1,1,113,114],[113,1,1,114,115]]],[3,76,70,115,185,[[117,1,1,115,116],[118,2,2,116,118],[119,6,4,118,122],[120,16,15,122,137],[122,3,3,137,140],[123,2,2,140,142],[124,6,6,142,148],[125,2,2,148,150],[126,1,1,150,151],[127,4,4,151,155],[128,3,3,155,158],[130,1,1,158,159],[132,7,7,159,166],[133,3,3,166,169],[134,9,8,169,177],[135,5,3,177,180],[136,1,1,180,181],[140,1,1,181,182],[141,1,1,182,183],[143,1,1,183,184],[147,1,1,184,185]]],[4,9,7,185,192,[[153,1,1,185,186],[157,1,1,186,187],[163,1,1,187,188],[168,1,1,188,189],[183,4,2,189,191],[185,1,1,191,192]]],[5,12,11,192,203,[[189,1,1,192,193],[193,5,4,193,197],[204,1,1,197,198],[205,1,1,198,199],[208,4,4,199,203]]],[6,13,12,203,215,[[214,5,5,203,208],[215,1,1,208,209],[216,1,1,209,210],[217,3,2,210,212],[218,1,1,212,213],[229,1,1,213,214],[230,1,1,214,215]]],[8,4,4,215,219,[[237,1,1,215,216],[239,1,1,216,217],[248,1,1,217,218],[252,1,1,218,219]]],[9,7,7,219,226,[[272,1,1,219,220],[273,1,1,220,221],[282,1,1,221,222],[284,1,1,222,223],[285,1,1,223,224],[286,2,2,224,226]]],[10,9,7,226,233,[[291,1,1,226,227],[292,3,3,227,230],[298,3,2,230,232],[302,2,1,232,233]]],[11,7,6,233,239,[[319,4,3,233,236],[320,1,1,236,237],[325,1,1,237,238],[326,1,1,238,239]]],[12,11,10,239,249,[[341,1,1,239,240],[342,1,1,240,241],[343,1,1,241,242],[346,3,3,242,245],[352,1,1,245,246],[353,1,1,246,247],[354,2,1,247,248],[360,1,1,248,249]]],[13,12,10,249,259,[[367,4,4,249,253],[371,2,1,253,254],[373,1,1,254,255],[376,2,1,255,256],[380,1,1,256,257],[390,1,1,257,258],[391,1,1,258,259]]],[17,14,14,259,273,[[440,1,1,259,260],[443,1,1,260,261],[446,1,1,261,262],[447,1,1,262,263],[450,1,1,263,264],[453,3,3,264,267],[454,1,1,267,268],[455,1,1,268,269],[456,1,1,269,270],[457,1,1,270,271],[464,1,1,271,272],[466,1,1,272,273]]],[18,18,18,273,291,[[492,1,1,273,274],[496,1,1,274,275],[504,2,2,275,277],[529,1,1,277,278],[538,1,1,278,279],[546,1,1,279,280],[555,4,4,280,284],[560,1,1,284,285],[561,1,1,285,286],[568,1,1,286,287],[583,1,1,287,288],[595,1,1,288,289],[597,1,1,289,290],[609,1,1,290,291]]],[19,1,1,291,292,[[641,1,1,291,292]]],[21,1,1,292,293,[[671,1,1,292,293]]],[22,5,5,293,298,[[694,1,1,293,294],[711,1,1,294,295],[716,1,1,295,296],[718,1,1,296,297],[732,1,1,297,298]]],[23,9,8,298,306,[[748,1,1,298,299],[750,1,1,299,300],[754,2,1,300,301],[774,1,1,301,302],[779,2,2,302,304],[781,1,1,304,305],[793,1,1,305,306]]],[24,1,1,306,307,[[798,1,1,306,307]]],[25,1,1,307,308,[[842,1,1,307,308]]],[26,1,1,308,309,[[860,1,1,308,309]]],[27,2,2,309,311,[[870,1,1,309,310],[873,1,1,310,311]]],[34,1,1,311,312,[[905,1,1,311,312]]],[37,1,1,312,313,[[922,1,1,312,313]]],[38,1,1,313,314,[[926,1,1,313,314]]]],[99,226,232,306,321,323,425,426,430,433,434,658,685,717,898,906,907,979,1032,1963,2006,2242,2244,2246,2247,2248,2249,2271,2293,2336,2340,2346,2347,2366,2368,2378,2380,2398,2400,2402,2408,2418,2427,2480,2481,2482,2483,2484,2542,2552,2580,2584,2585,2603,2641,2663,2696,2697,2702,2704,2709,2713,2714,2719,2726,2729,2731,2733,2736,2737,2739,2741,2742,2746,2748,2750,2780,2786,2791,2799,2800,2802,2809,2811,2813,2865,2875,2879,2920,2921,2948,2950,2952,2958,2976,2984,2986,3050,3119,3122,3134,3182,3197,3208,3217,3218,3221,3224,3234,3239,3240,3241,3244,3302,3449,3605,3660,3675,3699,3700,3717,3730,3746,3747,3758,3766,3768,3771,3773,3774,3776,3778,3780,3782,3784,3786,3790,3833,3836,3841,3855,3939,3948,3954,3958,3961,3963,3965,3980,3982,3991,4034,4040,4048,4050,4063,4064,4069,4118,4212,4213,4220,4221,4236,4237,4244,4248,4251,4252,4259,4260,4261,4263,4278,4279,4280,4288,4293,4303,4307,4317,4451,4477,4556,4718,4919,5083,5214,5349,5742,5743,5828,5907,5997,5998,5999,6000,6294,6372,6430,6432,6433,6434,6610,6616,6617,6619,6620,6647,6659,6702,6707,6730,7033,7062,7262,7307,7487,7672,8174,8186,8448,8495,8519,8555,8576,8756,8798,8799,8800,8989,9051,9167,9714,9715,9717,9748,9876,9908,10426,10438,10486,10634,10636,10638,10792,10821,10868,11015,11197,11198,11200,11207,11273,11334,11411,11490,11683,11726,12975,13051,13122,13134,13237,13282,13290,13291,13309,13352,13383,13412,13536,13619,14088,14172,14290,14291,14715,14823,14960,15164,15168,15173,15180,15247,15269,15405,15676,15884,16079,16154,16783,17542,17974,18299,18402,18442,18725,19047,19092,19221,19685,19830,19833,19884,20156,20336,21527,22081,22214,22261,22775,23052,23115]]],["+",[11,11,[[0,2,2,0,2,[[17,1,1,0,1],[30,1,1,1,2]]],[1,2,2,2,4,[[75,1,1,2,3],[85,1,1,3,4]]],[2,1,1,4,5,[[90,1,1,4,5]]],[5,1,1,5,6,[[189,1,1,5,6]]],[12,1,1,6,7,[[354,1,1,6,7]]],[17,2,2,7,9,[[453,1,1,7,8],[457,1,1,8,9]]],[18,1,1,9,10,[[529,1,1,9,10]]],[38,1,1,10,11,[[926,1,1,10,11]]]],[426,906,2246,2584,2746,5907,10868,13290,13412,14715,23115]]],["Tabernacle",[1,1,[[1,1,1,0,1,[[82,1,1,0,1]]]],[2480]]],["covering",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2242]]],["dwelling",[1,1,[[18,1,1,0,1,[[568,1,1,0,1]]]],[15405]]],["home",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7033]]],["place",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13051]]],["places",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13383]]],["tabernacle",[184,171,[[1,31,27,0,27,[[75,1,1,0,1],[76,1,1,1,2],[77,1,1,2,3],[78,7,7,3,10],[79,5,5,10,15],[80,2,1,15,16],[82,8,5,16,21],[84,1,1,21,22],[85,1,1,22,23],[87,2,2,23,25],[88,1,1,25,26],[89,1,1,26,27]]],[2,42,40,27,67,[[90,2,2,27,29],[92,3,3,29,32],[93,8,6,32,38],[95,3,3,38,41],[97,5,5,41,46],[98,2,2,46,48],[99,2,2,48,50],[101,1,1,50,51],[103,2,2,51,53],[104,2,2,53,55],[105,6,6,55,61],[106,4,4,61,65],[108,1,1,65,66],[113,1,1,66,67]]],[3,66,63,67,130,[[117,1,1,67,68],[118,2,2,68,70],[119,5,4,70,74],[120,16,15,74,89],[122,3,3,89,92],[123,2,2,92,94],[124,6,6,94,100],[125,1,1,100,101],[126,1,1,101,102],[127,3,3,102,105],[128,3,3,105,108],[130,1,1,108,109],[132,5,5,109,114],[133,3,3,114,117],[134,9,8,117,125],[135,1,1,125,126],[136,1,1,126,127],[141,1,1,127,128],[143,1,1,128,129],[147,1,1,129,130]]],[4,4,2,130,132,[[183,4,2,130,132]]],[5,2,2,132,134,[[204,1,1,132,133],[205,1,1,133,134]]],[8,1,1,134,135,[[237,1,1,134,135]]],[9,1,1,135,136,[[272,1,1,135,136]]],[10,6,5,136,141,[[291,1,1,136,137],[292,3,3,137,140],[298,2,1,140,141]]],[12,5,5,141,146,[[343,1,1,141,142],[346,3,3,142,145],[360,1,1,145,146]]],[13,6,5,146,151,[[367,3,3,146,149],[371,2,1,149,150],[390,1,1,150,151]]],[17,7,7,151,158,[[440,1,1,151,152],[453,2,2,152,154],[454,1,1,154,155],[455,1,1,155,156],[464,1,1,156,157],[466,1,1,157,158]]],[18,7,7,158,165,[[492,1,1,158,159],[496,1,1,159,160],[504,2,2,160,162],[538,1,1,162,163],[555,1,1,163,164],[609,1,1,164,165]]],[19,1,1,165,166,[[641,1,1,165,166]]],[22,2,2,166,168,[[694,1,1,166,167],[711,1,1,167,168]]],[23,1,1,168,169,[[754,1,1,168,169]]],[24,1,1,169,170,[[798,1,1,169,170]]],[25,1,1,170,171,[[842,1,1,170,171]]]],[2244,2293,2336,2340,2346,2347,2366,2368,2378,2380,2398,2400,2402,2408,2418,2427,2480,2481,2482,2483,2484,2552,2603,2641,2663,2702,2719,2748,2750,2780,2786,2791,2799,2800,2802,2809,2811,2813,2865,2875,2879,2920,2921,2948,2950,2952,2958,2976,2984,2986,3050,3122,3134,3182,3197,3208,3217,3218,3221,3224,3234,3239,3240,3241,3244,3302,3449,3605,3660,3675,3699,3700,3717,3730,3746,3747,3758,3766,3768,3771,3773,3774,3776,3778,3780,3782,3784,3786,3790,3833,3836,3841,3855,3939,3948,3954,3958,3961,3963,3965,3982,3991,4040,4048,4050,4063,4064,4069,4118,4212,4213,4236,4237,4244,4248,4251,4252,4259,4260,4261,4263,4278,4279,4280,4288,4293,4317,4477,4556,4718,5742,5743,6294,6372,7262,8174,8756,8798,8799,8800,8989,10486,10634,10636,10638,11015,11197,11200,11207,11273,11683,12975,13282,13291,13309,13352,13536,13619,14088,14172,14290,14291,14823,15180,16154,16783,17974,18299,19221,20336,21527]]],["tabernacles",[9,9,[[17,3,3,0,3,[[446,1,1,0,1],[447,1,1,1,2],[450,1,1,2,3]]],[18,3,3,3,6,[[555,1,1,3,4],[560,1,1,4,5],[595,1,1,5,6]]],[26,1,1,6,7,[[860,1,1,6,7]]],[27,2,2,7,9,[[870,1,1,7,8],[873,1,1,8,9]]]],[13122,13134,13237,15164,15247,15884,22081,22214,22261]]],["tent",[86,78,[[0,16,14,0,14,[[8,1,1,0,1],[11,1,1,1,2],[12,1,1,2,3],[17,4,4,3,7],[23,1,1,7,8],[25,1,1,8,9],[30,5,3,9,12],[32,1,1,12,13],[34,1,1,13,14]]],[1,26,25,14,39,[[67,1,1,14,15],[75,4,4,15,19],[82,2,2,19,21],[84,1,1,21,22],[85,2,2,22,24],[88,3,3,24,27],[89,13,12,27,39]]],[2,1,1,39,40,[[103,1,1,39,40]]],[3,7,5,40,45,[[119,1,1,40,41],[125,1,1,41,42],[127,1,1,42,43],[135,4,2,43,45]]],[5,5,4,45,49,[[193,5,4,45,49]]],[6,10,9,49,58,[[214,5,5,49,54],[215,1,1,54,55],[217,3,2,55,57],[230,1,1,57,58]]],[8,3,3,58,61,[[239,1,1,58,59],[248,1,1,59,60],[252,1,1,60,61]]],[9,5,5,61,66,[[273,1,1,61,62],[282,1,1,62,63],[284,1,1,63,64],[285,1,1,64,65],[286,1,1,65,66]]],[11,2,1,66,67,[[319,2,1,66,67]]],[12,3,3,67,70,[[352,1,1,67,68],[353,1,1,68,69],[354,1,1,69,70]]],[13,2,2,70,72,[[367,1,1,70,71],[391,1,1,71,72]]],[18,1,1,72,73,[[555,1,1,72,73]]],[22,3,3,73,76,[[716,1,1,73,74],[718,1,1,74,75],[732,1,1,75,76]]],[23,2,2,76,78,[[754,1,1,76,77],[781,1,1,77,78]]]],[226,306,321,425,430,433,434,658,717,898,906,907,979,1032,2006,2247,2248,2249,2271,2481,2483,2542,2580,2585,2696,2697,2704,2709,2713,2714,2726,2729,2731,2733,2736,2737,2739,2741,2742,3119,3717,3980,4034,4303,4307,5997,5998,5999,6000,6610,6616,6617,6619,6620,6647,6702,6707,7062,7307,7487,7672,8186,8448,8495,8519,8576,9715,10792,10821,10868,11198,11726,15173,18402,18442,18725,19221,19884]]],["tents",[49,47,[[0,5,5,0,5,[[3,1,1,0,1],[8,1,1,1,2],[12,1,1,2,3],[24,1,1,3,4],[30,1,1,4,5]]],[1,1,1,5,6,[[65,1,1,5,6]]],[3,3,3,6,9,[[132,2,2,6,8],[140,1,1,8,9]]],[4,5,5,9,14,[[153,1,1,9,10],[157,1,1,10,11],[163,1,1,11,12],[168,1,1,12,13],[185,1,1,13,14]]],[5,4,4,14,18,[[208,4,4,14,18]]],[6,2,2,18,20,[[216,1,1,18,19],[218,1,1,19,20]]],[9,1,1,20,21,[[286,1,1,20,21]]],[10,3,2,21,23,[[298,1,1,21,22],[302,2,1,22,23]]],[11,5,5,23,28,[[319,2,2,23,25],[320,1,1,25,26],[325,1,1,26,27],[326,1,1,27,28]]],[12,2,2,28,30,[[341,1,1,28,29],[342,1,1,29,30]]],[13,4,3,30,33,[[373,1,1,30,31],[376,2,1,31,32],[380,1,1,32,33]]],[18,5,5,33,38,[[546,1,1,33,34],[555,1,1,34,35],[561,1,1,35,36],[583,1,1,36,37],[597,1,1,37,38]]],[21,1,1,38,39,[[671,1,1,38,39]]],[23,6,6,39,45,[[748,1,1,39,40],[750,1,1,40,41],[774,1,1,41,42],[779,2,2,42,44],[793,1,1,44,45]]],[34,1,1,45,46,[[905,1,1,45,46]]],[37,1,1,46,47,[[922,1,1,46,47]]]],[99,232,323,685,906,1963,4220,4221,4451,4919,5083,5214,5349,5828,6430,6432,6433,6434,6659,6730,8555,9051,9167,9714,9717,9748,9876,9908,10426,10438,11334,11411,11490,14960,15168,15269,15676,16079,17542,19047,19092,19685,19830,19833,20156,22775,23052]]]]},{"k":"H169","v":[["Ohel",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10381]]]]},{"k":"H170","v":[["Aholah",[5,4,[[25,5,4,0,4,[[824,5,4,0,4]]]],[21011,21012,21043,21051]]]]},{"k":"H171","v":[["Aholiab",[5,5,[[1,5,5,0,5,[[80,1,1,0,1],[84,1,1,1,2],[85,2,2,2,4],[87,1,1,4,5]]]],[2426,2565,2567,2568,2656]]]]},{"k":"H172","v":[["Aholibah",[6,5,[[25,6,5,0,5,[[824,6,5,0,5]]]],[21011,21018,21029,21043,21051]]]]},{"k":"H173","v":[["Aholibamah",[8,7,[[0,7,6,0,6,[[35,7,6,0,6]]],[12,1,1,6,7,[[338,1,1,6,7]]]],[1042,1045,1054,1058,1065,1081,10304]]]]},{"k":"H174","v":[["aloes",[4,4,[[3,1,1,0,1,[[140,1,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]],[19,1,1,2,3,[[634,1,1,2,3]]],[21,1,1,3,4,[[674,1,1,3,4]]]],[4452,14605,16592,17596]]]]},{"k":"H175","v":[["*",[347,328,[[1,116,109,0,109,[[53,5,5,0,5],[54,3,3,5,8],[55,6,6,8,14],[56,11,10,14,24],[57,7,7,24,31],[58,2,2,31,33],[59,3,3,33,36],[60,1,1,36,37],[61,5,5,37,42],[64,1,1,42,43],[65,6,6,43,49],[66,2,2,49,51],[67,1,1,51,52],[68,1,1,52,53],[73,3,3,53,56],[76,1,1,56,57],[77,16,12,57,69],[78,17,16,69,85],[79,5,5,85,90],[80,1,1,90,91],[81,9,8,91,99],[83,2,2,99,101],[84,1,1,101,102],[87,1,1,102,103],[88,3,3,103,106],[89,3,3,106,109]]],[2,80,77,109,186,[[90,4,4,109,113],[91,3,3,113,116],[92,4,4,116,120],[95,6,6,120,126],[96,5,5,126,131],[97,15,13,131,144],[98,10,10,144,154],[99,9,8,154,162],[100,1,1,162,163],[102,2,2,163,165],[103,1,1,165,166],[104,1,1,166,167],[105,9,9,167,176],[106,1,1,176,177],[110,4,4,177,181],[111,3,3,181,184],[113,2,2,184,186]]],[3,101,97,186,283,[[117,3,3,186,189],[118,1,1,189,190],[119,12,12,190,202],[120,14,14,202,216],[122,1,1,216,217],[123,1,1,217,218],[124,9,8,218,226],[125,1,1,226,227],[126,1,1,227,228],[128,5,5,228,233],[129,1,1,233,234],[130,3,3,234,237],[131,1,1,237,238],[132,14,14,238,252],[133,4,4,252,256],[134,4,4,256,260],[135,1,1,260,261],[136,14,11,261,272],[141,2,2,272,274],[142,5,5,274,279],[143,1,1,279,280],[149,3,3,280,283]]],[4,4,3,283,286,[[161,2,1,283,284],[162,1,1,284,285],[184,1,1,285,286]]],[5,6,6,286,292,[[207,4,4,286,290],[210,2,2,290,292]]],[6,1,1,292,293,[[230,1,1,292,293]]],[8,2,2,293,295,[[247,2,2,293,295]]],[12,17,14,295,309,[[343,6,5,295,300],[349,1,1,300,301],[352,1,1,301,302],[360,4,3,302,305],[361,4,3,305,308],[364,1,1,308,309]]],[13,7,6,309,315,[[379,2,2,309,311],[392,1,1,311,312],[395,1,1,312,313],[397,1,1,313,314],[401,2,1,314,315]]],[14,1,1,315,316,[[409,1,1,315,316]]],[15,2,2,316,318,[[422,1,1,316,317],[424,1,1,317,318]]],[18,9,9,318,327,[[554,1,1,318,319],[576,1,1,319,320],[582,1,1,320,321],[583,1,1,321,322],[592,2,2,322,324],[595,1,1,324,325],[610,1,1,325,326],[612,1,1,326,327]]],[32,1,1,327,328,[[898,1,1,327,328]]]],[1615,1628,1629,1630,1631,1633,1636,1652,1668,1675,1678,1680,1681,1682,1686,1687,1691,1692,1693,1694,1695,1697,1704,1705,1715,1716,1718,1722,1726,1727,1735,1750,1769,1780,1785,1793,1816,1817,1844,1847,1859,1866,1940,1949,1953,1956,1957,1980,1981,1993,1995,2011,2050,2178,2186,2191,2293,2294,2295,2296,2297,2305,2322,2323,2328,2331,2333,2334,2336,2340,2341,2345,2346,2351,2355,2356,2357,2360,2362,2363,2364,2365,2368,2371,2380,2389,2390,2392,2401,2412,2430,2439,2440,2441,2443,2459,2460,2463,2473,2526,2527,2550,2654,2665,2691,2705,2719,2720,2738,2750,2752,2753,2756,2764,2765,2772,2780,2783,2786,2791,2858,2863,2865,2867,2869,2874,2889,2910,2912,2913,2914,2919,2923,2929,2930,2931,2935,2939,2940,2941,2944,2947,2948,2953,2954,2955,2960,2961,2962,2965,2971,2974,2975,2976,2978,2980,2981,2983,2985,2989,2993,2996,2998,3053,3054,3144,3169,3202,3203,3204,3207,3209,3210,3212,3222,3224,3237,3346,3362,3366,3369,3371,3373,3387,3449,3455,3607,3621,3648,3659,3693,3694,3695,3696,3698,3701,3702,3724,3730,3731,3740,3743,3744,3748,3758,3759,3760,3762,3770,3771,3776,3777,3780,3784,3788,3789,3846,3858,3941,3942,3950,3952,3958,3959,3960,3961,3971,3996,4060,4063,4064,4069,4070,4101,4110,4113,4134,4186,4197,4205,4210,4211,4212,4214,4231,4234,4235,4236,4237,4240,4241,4244,4247,4250,4252,4254,4258,4265,4277,4285,4290,4313,4317,4319,4321,4323,4334,4335,4336,4337,4339,4340,4478,4482,4490,4498,4548,4549,4553,4567,4761,4798,4799,5177,5192,5808,6385,6391,6394,6400,6481,6509,7082,7466,7468,10457,10503,10504,10508,10511,10747,10795,10996,11011,11015,11016,11034,11046,11126,11462,11463,11750,11812,11873,11980,12178,12587,12671,15113,15505,15632,15667,15840,15842,15872,16171,16194,22652]]],["+",[4,4,[[1,2,2,0,2,[[53,1,1,0,1],[78,1,1,1,2]]],[3,2,2,2,4,[[136,2,2,2,4]]]],[1629,2341,4337,4339]]],["Aaron",[311,297,[[1,105,101,0,101,[[53,4,4,0,4],[54,3,3,4,7],[55,5,5,7,12],[56,10,9,12,21],[57,7,7,21,28],[58,2,2,28,30],[59,3,3,30,33],[60,1,1,33,34],[61,5,5,34,39],[64,1,1,39,40],[65,6,6,40,46],[66,2,2,46,48],[67,1,1,48,49],[68,1,1,49,50],[73,3,3,50,53],[76,1,1,53,54],[77,11,10,54,64],[78,14,13,64,77],[79,5,5,77,82],[80,1,1,82,83],[81,9,8,83,91],[83,2,2,91,93],[84,1,1,93,94],[87,1,1,94,95],[88,3,3,95,98],[89,3,3,98,101]]],[2,62,59,101,160,[[90,1,1,101,102],[92,1,1,102,103],[95,6,6,103,109],[96,4,4,109,113],[97,10,8,113,121],[98,8,8,121,129],[99,9,8,129,137],[100,1,1,137,138],[102,2,2,138,140],[103,1,1,140,141],[104,1,1,141,142],[105,9,9,142,151],[106,1,1,151,152],[110,4,4,152,156],[111,3,3,156,159],[113,1,1,159,160]]],[3,97,95,160,255,[[117,3,3,160,163],[118,1,1,163,164],[119,12,12,164,176],[120,14,14,176,190],[122,1,1,190,191],[123,1,1,191,192],[124,9,8,192,200],[125,1,1,200,201],[126,1,1,201,202],[128,5,5,202,207],[129,1,1,207,208],[130,3,3,208,211],[131,1,1,211,212],[132,14,14,212,226],[133,2,2,226,228],[134,4,4,228,232],[135,1,1,232,233],[136,12,11,233,244],[141,2,2,244,246],[142,5,5,246,251],[143,1,1,251,252],[149,3,3,252,255]]],[4,4,3,255,258,[[161,2,1,255,256],[162,1,1,256,257],[184,1,1,257,258]]],[5,6,6,258,264,[[207,4,4,258,262],[210,2,2,262,264]]],[6,1,1,264,265,[[230,1,1,264,265]]],[8,2,2,265,267,[[247,2,2,265,267]]],[12,15,12,267,279,[[343,6,5,267,272],[352,1,1,272,273],[360,4,3,273,276],[361,4,3,276,279]]],[13,7,6,279,285,[[379,2,2,279,281],[392,1,1,281,282],[395,1,1,282,283],[397,1,1,283,284],[401,2,1,284,285]]],[14,1,1,285,286,[[409,1,1,285,286]]],[15,2,2,286,288,[[422,1,1,286,287],[424,1,1,287,288]]],[18,8,8,288,296,[[554,1,1,288,289],[576,1,1,289,290],[582,1,1,290,291],[583,1,1,291,292],[592,2,2,292,294],[595,1,1,294,295],[612,1,1,295,296]]],[32,1,1,296,297,[[898,1,1,296,297]]]],[1615,1628,1630,1631,1633,1636,1652,1668,1675,1678,1681,1682,1686,1687,1691,1692,1693,1694,1695,1704,1705,1715,1716,1718,1722,1726,1727,1735,1750,1769,1780,1785,1793,1816,1817,1844,1847,1859,1866,1940,1949,1953,1956,1957,1980,1981,1993,1995,2011,2050,2178,2186,2191,2293,2294,2295,2297,2305,2322,2323,2328,2331,2334,2336,2340,2345,2346,2351,2355,2356,2357,2360,2363,2365,2368,2371,2380,2389,2390,2392,2401,2412,2430,2439,2440,2441,2443,2459,2460,2463,2473,2526,2527,2550,2654,2665,2691,2705,2719,2720,2738,2752,2791,2858,2863,2865,2867,2869,2874,2889,2912,2913,2914,2919,2923,2931,2935,2939,2947,2948,2953,2954,2955,2960,2961,2962,2974,2975,2976,2978,2980,2981,2983,2985,2989,2993,2996,2998,3053,3054,3144,3169,3202,3203,3204,3207,3209,3210,3212,3222,3224,3237,3346,3362,3366,3369,3371,3373,3387,3449,3607,3621,3648,3659,3693,3694,3695,3696,3698,3701,3702,3724,3730,3731,3740,3743,3744,3748,3758,3759,3760,3762,3770,3771,3776,3777,3780,3784,3788,3789,3846,3858,3941,3942,3950,3952,3958,3959,3960,3961,3971,3996,4060,4063,4064,4069,4070,4101,4110,4113,4134,4186,4197,4205,4210,4211,4212,4214,4231,4234,4235,4236,4237,4240,4241,4244,4250,4252,4258,4265,4277,4285,4290,4313,4317,4319,4321,4323,4334,4335,4336,4337,4339,4340,4478,4482,4490,4498,4548,4549,4553,4567,4761,4798,4799,5177,5192,5808,6385,6391,6394,6400,6481,6509,7082,7466,7468,10457,10503,10504,10508,10511,10795,10996,11011,11015,11016,11034,11046,11462,11463,11750,11812,11873,11980,12178,12587,12671,15113,15505,15632,15667,15840,15842,15872,16194,22652]]],["Aaron's",[30,30,[[1,9,9,0,9,[[55,1,1,0,1],[56,1,1,1,2],[77,5,5,2,7],[78,2,2,7,9]]],[2,18,18,9,27,[[90,3,3,9,12],[91,3,3,12,15],[92,3,3,15,18],[96,1,1,18,19],[97,5,5,19,24],[98,2,2,24,26],[113,1,1,26,27]]],[3,2,2,27,29,[[133,2,2,27,29]]],[18,1,1,29,30,[[610,1,1,29,30]]]],[1680,1697,2294,2296,2323,2331,2333,2362,2364,2750,2753,2756,2764,2765,2772,2780,2783,2786,2910,2929,2930,2940,2941,2944,2965,2971,3455,4247,4254,16171]]],["Aaronites",[2,2,[[12,2,2,0,2,[[349,1,1,0,1],[364,1,1,1,2]]]],[10747,11126]]]]},{"k":"H176","v":[["*",[320,218,[[0,6,6,0,6,[[23,3,3,0,3],[30,1,1,3,4],[43,2,2,4,6]]],[1,35,25,6,31,[[53,4,1,6,7],[54,1,1,7,8],[68,1,1,8,9],[70,15,13,9,22],[71,11,6,22,28],[72,1,1,28,29],[77,1,1,29,30],[79,1,1,30,31]]],[2,136,72,31,103,[[90,2,2,31,33],[92,1,1,33,34],[93,2,2,34,36],[94,12,7,36,43],[95,8,4,43,47],[96,3,2,47,49],[100,3,1,49,50],[101,4,3,50,53],[102,48,20,53,73],[103,3,3,73,76],[104,5,5,76,81],[106,5,3,81,84],[107,3,2,84,86],[108,1,1,86,87],[109,3,2,87,89],[110,11,3,89,92],[111,14,6,92,98],[114,6,3,98,101],[115,1,1,101,102],[116,1,1,102,103]]],[3,44,30,103,133,[[121,3,3,103,106],[122,2,2,106,108],[125,6,3,108,111],[127,1,1,111,112],[130,1,1,112,113],[131,12,6,113,119],[134,2,1,119,120],[135,6,2,120,122],[138,1,1,122,123],[140,1,1,123,124],[146,4,4,124,128],[151,5,5,128,133]]],[4,34,24,133,157,[[156,3,3,133,136],[165,9,5,136,141],[166,1,1,141,142],[167,2,2,142,144],[169,7,5,144,149],[171,1,1,149,150],[174,5,3,150,153],[176,2,2,153,155],[179,1,1,155,156],[181,3,1,156,157]]],[5,1,1,157,158,[[193,1,1,157,158]]],[6,4,4,158,162,[[221,1,1,158,159],[228,1,1,159,160],[229,1,1,160,161],[231,1,1,161,162]]],[8,13,10,162,172,[[237,3,1,162,163],[248,1,1,163,164],[249,1,1,164,165],[255,2,2,165,167],[256,2,2,167,169],[257,1,1,169,170],[261,2,1,170,171],[264,1,1,171,172]]],[9,4,4,172,176,[[268,1,1,172,173],[269,1,1,173,174],[283,1,1,174,175],[284,1,1,175,176]]],[10,3,3,176,179,[[298,1,1,176,177],[310,1,1,177,178],[311,1,1,178,179]]],[11,4,4,179,183,[[314,1,1,179,180],[316,1,1,180,181],[318,1,1,181,182],[325,1,1,182,183]]],[13,1,1,183,184,[[372,1,1,183,184]]],[17,12,12,184,196,[[438,2,2,184,186],[447,1,1,186,187],[448,1,1,187,188],[451,1,1,188,189],[457,1,1,189,190],[470,1,1,190,191],[473,5,5,191,196]]],[19,2,2,196,198,[[657,1,1,196,197],[658,1,1,197,198]]],[20,2,2,198,200,[[660,1,1,198,199],[669,1,1,199,200]]],[21,5,5,200,205,[[672,3,3,200,203],[673,1,1,203,204],[678,1,1,204,205]]],[22,4,4,205,209,[[685,1,1,205,206],[705,1,1,206,207],[719,1,1,207,208],[728,1,1,208,209]]],[23,3,2,209,211,[[767,2,1,209,210],[784,1,1,210,211]]],[25,4,4,211,215,[[815,2,2,211,213],[822,1,1,213,214],[847,1,1,214,215]]],[29,1,1,215,216,[[881,1,1,215,216]]],[38,2,2,216,218,[[925,1,1,216,217],[926,1,1,217,218]]]],[640,641,646,916,1332,1343,1612,1635,2039,2081,2083,2095,2097,2098,2103,2104,2105,2106,2108,2109,2110,2113,2114,2118,2119,2120,2123,2127,2148,2336,2402,2755,2759,2784,2818,2823,2831,2832,2833,2834,2836,2837,2841,2851,2852,2853,2854,2895,2900,3029,3050,3051,3052,3054,3068,3071,3076,3081,3082,3090,3094,3095,3099,3100,3101,3103,3104,3105,3107,3108,3109,3110,3111,3133,3141,3148,3171,3182,3191,3193,3197,3238,3243,3248,3260,3261,3301,3335,3345,3363,3364,3365,3373,3374,3390,3391,3396,3397,3483,3516,3518,3565,3580,3798,3806,3822,3825,3833,3975,3986,3987,4032,4110,4156,4158,4159,4161,4164,4167,4274,4305,4307,4393,4459,4650,4654,4658,4662,4863,4865,4866,4867,4868,5020,5036,5038,5273,5275,5277,5278,5279,5311,5331,5340,5366,5367,5369,5370,5376,5421,5471,5474,5476,5528,5539,5607,5697,5979,6863,7012,7037,7124,7254,7504,7514,7732,7740,7775,7780,7802,7915,7970,8070,8116,8458,8491,9031,9447,9457,9567,9616,9701,9890,11318,12919,12920,13136,13175,13241,13400,13727,13798,13799,13821,13824,13829,17282,17288,17352,17519,17561,17563,17571,17576,17654,17793,18156,18473,18663,19517,19946,20748,20750,20954,21667,22407,23097,23120]]],["+",[13,9,[[1,3,3,0,3,[[70,3,3,0,3]]],[2,7,3,3,6,[[95,3,1,3,4],[102,3,1,4,5],[108,1,1,5,6]]],[3,1,1,6,7,[[146,1,1,6,7]]],[4,2,2,7,9,[[169,1,1,7,8],[174,1,1,8,9]]]],[2097,2103,2105,2853,3104,3301,4662,5369,5471]]],["Either",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3518]]],["Or",[27,27,[[1,1,1,0,1,[[70,1,1,0,1]]],[2,12,12,1,13,[[93,2,2,1,3],[94,3,3,3,6],[95,2,2,6,8],[102,2,2,8,10],[110,2,2,10,12],[111,1,1,12,13]]],[3,6,6,13,19,[[121,1,1,13,14],[125,1,1,14,15],[131,1,1,15,16],[151,3,3,16,19]]],[4,1,1,19,20,[[156,1,1,19,20]]],[17,4,4,20,24,[[438,2,2,20,22],[447,1,1,22,23],[457,1,1,23,24]]],[22,1,1,24,25,[[705,1,1,24,25]]],[25,2,2,25,27,[[815,2,2,25,27]]]],[2113,2818,2823,2832,2833,2834,2852,2854,3068,3076,3364,3365,3374,3822,3987,4159,4863,4866,4868,5038,12919,12920,13136,13400,18156,20748,20750]]],["Otherwise",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8491]]],["Whether",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[2,1,1,1,2,[[102,1,1,1,2]]]],[2108,3100]]],["also",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17282]]],["and",[2,2,[[21,2,2,0,2,[[672,1,1,0,1],[673,1,1,1,2]]]],[17561,17576]]],["either",[6,6,[[2,6,6,0,6,[[102,6,6,0,6]]]],[3101,3103,3105,3109,3110,3111]]],["if",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3565]]],["least",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[646]]],["nor",[2,2,[[6,1,1,0,1,[[221,1,1,0,1]]],[19,1,1,1,2,[[658,1,1,1,2]]]],[6863,17288]]],["or",[258,181,[[0,5,5,0,5,[[23,2,2,0,2],[30,1,1,2,3],[43,2,2,3,5]]],[1,30,21,5,26,[[53,4,1,5,6],[54,1,1,6,7],[68,1,1,7,8],[70,10,9,8,17],[71,11,6,17,23],[72,1,1,23,24],[77,1,1,24,25],[79,1,1,25,26]]],[2,105,63,26,89,[[90,2,2,26,28],[92,1,1,28,29],[94,7,6,29,35],[95,3,1,35,36],[96,3,2,36,38],[100,3,1,38,39],[101,4,3,39,42],[102,35,19,42,61],[103,3,3,61,64],[104,5,5,64,69],[106,5,3,69,72],[107,3,2,72,74],[109,3,2,74,76],[110,9,3,76,79],[111,13,6,79,85],[114,5,3,85,88],[116,1,1,88,89]]],[3,36,23,89,112,[[121,2,2,89,91],[122,2,2,91,93],[125,4,2,93,95],[127,1,1,95,96],[130,1,1,96,97],[131,11,5,97,102],[134,2,1,102,103],[135,6,2,103,105],[138,1,1,105,106],[140,1,1,106,107],[146,3,3,107,110],[151,2,2,110,112]]],[4,31,22,112,134,[[156,2,2,112,114],[165,9,5,114,119],[166,1,1,119,120],[167,2,2,120,122],[169,6,5,122,127],[171,1,1,127,128],[174,4,2,128,130],[176,2,2,130,132],[179,1,1,132,133],[181,3,1,133,134]]],[5,1,1,134,135,[[193,1,1,134,135]]],[6,3,3,135,138,[[228,1,1,135,136],[229,1,1,136,137],[231,1,1,137,138]]],[8,13,10,138,148,[[237,3,1,138,139],[248,1,1,139,140],[249,1,1,140,141],[255,2,2,141,143],[256,2,2,143,145],[257,1,1,145,146],[261,2,1,146,147],[264,1,1,147,148]]],[9,3,3,148,151,[[268,1,1,148,149],[269,1,1,149,150],[283,1,1,150,151]]],[10,3,3,151,154,[[298,1,1,151,152],[310,1,1,152,153],[311,1,1,153,154]]],[11,4,4,154,158,[[314,1,1,154,155],[316,1,1,155,156],[318,1,1,156,157],[325,1,1,157,158]]],[13,1,1,158,159,[[372,1,1,158,159]]],[17,8,8,159,167,[[448,1,1,159,160],[451,1,1,160,161],[470,1,1,161,162],[473,5,5,162,167]]],[20,2,2,167,169,[[660,1,1,167,168],[669,1,1,168,169]]],[21,3,3,169,172,[[672,2,2,169,171],[678,1,1,171,172]]],[22,3,3,172,175,[[685,1,1,172,173],[719,1,1,173,174],[728,1,1,174,175]]],[23,3,2,175,177,[[767,2,1,175,176],[784,1,1,176,177]]],[25,1,1,177,178,[[847,1,1,177,178]]],[29,1,1,178,179,[[881,1,1,178,179]]],[38,2,2,179,181,[[925,1,1,179,180],[926,1,1,180,181]]]],[640,641,916,1332,1343,1612,1635,2039,2081,2083,2095,2098,2104,2106,2108,2109,2110,2114,2118,2119,2120,2123,2127,2148,2336,2402,2755,2759,2784,2831,2832,2834,2836,2837,2841,2851,2895,2900,3029,3050,3051,3052,3054,3071,3076,3081,3082,3090,3094,3095,3099,3100,3101,3103,3104,3105,3107,3108,3109,3110,3111,3133,3141,3148,3171,3182,3191,3193,3197,3238,3243,3248,3260,3261,3335,3345,3363,3364,3365,3373,3374,3390,3391,3396,3397,3483,3516,3518,3580,3798,3806,3825,3833,3975,3987,4032,4110,4156,4158,4161,4164,4167,4274,4305,4307,4393,4459,4650,4654,4658,4865,4867,5020,5036,5273,5275,5277,5278,5279,5311,5331,5340,5366,5367,5369,5370,5376,5421,5474,5476,5528,5539,5607,5697,5979,7012,7037,7124,7254,7504,7514,7732,7740,7775,7780,7802,7915,7970,8070,8116,8458,9031,9447,9457,9567,9616,9701,9890,11318,13175,13241,13727,13798,13799,13821,13824,13829,17352,17519,17563,17571,17654,17793,18473,18663,19517,19946,21667,22407,23097,23120]]],["then",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20954]]],["whether",[4,4,[[2,3,3,0,3,[[94,2,2,0,2],[102,1,1,2,3]]],[3,1,1,3,4,[[125,1,1,3,4]]]],[2831,2832,3100,3986]]]]},{"k":"H177","v":[["Uel",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12286]]]]},{"k":"H178","v":[["*",[17,16,[[2,3,3,0,3,[[108,1,1,0,1],[109,2,2,1,3]]],[4,1,1,3,4,[[170,1,1,3,4]]],[8,5,4,4,8,[[263,5,4,4,8]]],[11,2,2,8,10,[[333,1,1,8,9],[335,1,1,9,10]]],[12,1,1,10,11,[[347,1,1,10,11]]],[13,1,1,11,12,[[399,1,1,11,12]]],[17,1,1,12,13,[[467,1,1,12,13]]],[22,3,3,13,16,[[686,1,1,13,14],[697,1,1,14,15],[707,1,1,15,16]]]],[3312,3324,3345,5395,7945,7949,7950,7951,10125,10189,10672,11914,13647,17826,18007,18197]]],["bottles",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13647]]],["spirit",[7,6,[[2,1,1,0,1,[[109,1,1,0,1]]],[8,3,2,1,3,[[263,3,2,1,3]]],[12,1,1,3,4,[[347,1,1,3,4]]],[13,1,1,4,5,[[399,1,1,4,5]]],[22,1,1,5,6,[[707,1,1,5,6]]]],[3345,7949,7950,10672,11914,18197]]],["spirits",[9,9,[[2,2,2,0,2,[[108,1,1,0,1],[109,1,1,1,2]]],[4,1,1,2,3,[[170,1,1,2,3]]],[8,2,2,3,5,[[263,2,2,3,5]]],[11,2,2,5,7,[[333,1,1,5,6],[335,1,1,6,7]]],[22,2,2,7,9,[[686,1,1,7,8],[697,1,1,8,9]]]],[3312,3324,5395,7945,7951,10125,10189,17826,18007]]]]},{"k":"H179","v":[["Obil",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11139]]]]},{"k":"H180","v":[["river",[3,3,[[26,3,3,0,3,[[857,3,3,0,3]]]],[21963,21964,21967]]]]},{"k":"H181","v":[["*",[3,3,[[22,1,1,0,1,[[685,1,1,0,1]]],[29,1,1,1,2,[[882,1,1,1,2]]],[37,1,1,2,3,[[913,1,1,2,3]]]],[17786,22421,22914]]],["brand",[1,1,[[37,1,1,0,1,[[913,1,1,0,1]]]],[22914]]],["firebrand",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22421]]],["firebrands",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17786]]]]},{"k":"H182","v":[["*",[10,10,[[0,3,3,0,3,[[20,2,2,0,2],[25,1,1,2,3]]],[1,1,1,3,4,[[67,1,1,3,4]]],[3,2,2,4,6,[[128,1,1,4,5],[129,1,1,5,6]]],[5,1,1,6,7,[[200,1,1,6,7]]],[6,1,1,7,8,[[216,1,1,7,8]]],[9,1,1,8,9,[[279,1,1,8,9]]],[23,1,1,9,10,[[747,1,1,9,10]]]],[524,538,724,2007,4060,4099,6193,6661,8333,19010]]],["+",[7,7,[[0,3,3,0,3,[[20,2,2,0,2],[25,1,1,2,3]]],[3,2,2,3,5,[[128,1,1,3,4],[129,1,1,4,5]]],[5,1,1,5,6,[[200,1,1,5,6]]],[6,1,1,6,7,[[216,1,1,6,7]]]],[524,538,724,4060,4099,6193,6661]]],["cause",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8333]]],["causes",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19010]]],["sake",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2007]]]]},{"k":"H183","v":[["*",[26,26,[[3,2,2,0,2,[[127,2,2,0,2]]],[4,3,3,2,5,[[157,1,1,2,3],[164,1,1,3,4],[166,1,1,4,5]]],[8,1,1,5,6,[[237,1,1,5,6]]],[9,2,2,6,8,[[269,1,1,6,7],[289,1,1,7,8]]],[10,1,1,8,9,[[301,1,1,8,9]]],[12,1,1,9,10,[[348,1,1,9,10]]],[17,1,1,10,11,[[458,1,1,10,11]]],[18,4,4,11,15,[[522,1,1,11,12],[583,1,1,12,13],[609,2,2,13,15]]],[19,6,6,15,21,[[640,1,1,15,16],[648,2,2,16,18],[650,2,2,18,20],[651,1,1,20,21]]],[20,1,1,21,22,[[664,1,1,21,22]]],[22,1,1,22,23,[[704,1,1,22,23]]],[23,1,1,23,24,[[761,1,1,23,24]]],[29,1,1,24,25,[[883,1,1,24,25]]],[32,1,1,25,26,[[899,1,1,25,26]]]],[4028,4058,5074,5260,5316,7256,8102,8668,9145,10690,13432,14608,15665,16164,16165,16751,16994,17010,17047,17050,17080,17419,18139,19373,22441,22665]]],["+",[3,3,[[3,1,1,0,1,[[127,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]],[29,1,1,2,3,[[883,1,1,2,3]]]],[4028,15665,22441]]],["after",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5316]]],["covet",[1,1,[[4,1,1,0,1,[[157,1,1,0,1]]]],[5074]]],["coveteth",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17010]]],["desire",[3,3,[[18,1,1,0,1,[[522,1,1,0,1]]],[19,2,2,1,3,[[650,1,1,1,2],[651,1,1,2,3]]]],[14608,17050,17080]]],["desired",[5,5,[[18,2,2,0,2,[[609,2,2,0,2]]],[22,1,1,2,3,[[704,1,1,2,3]]],[23,1,1,3,4,[[761,1,1,3,4]]],[32,1,1,4,5,[[899,1,1,4,5]]]],[16164,16165,18139,19373,22665]]],["desireth",[7,7,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]],[10,1,1,2,3,[[301,1,1,2,3]]],[17,1,1,3,4,[[458,1,1,3,4]]],[19,2,2,4,6,[[640,1,1,4,5],[648,1,1,5,6]]],[20,1,1,6,7,[[664,1,1,6,7]]]],[7256,8102,9145,13432,16751,16994,17419]]],["desirous",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17047]]],["longed",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8668,10690]]],["longeth",[1,1,[[4,1,1,0,1,[[164,1,1,0,1]]]],[5260]]],["lusted",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4058]]]]},{"k":"H184","v":[["out",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4826]]]]},{"k":"H185","v":[["*",[7,7,[[4,4,4,0,4,[[164,3,3,0,3],[170,1,1,3,4]]],[8,1,1,4,5,[[258,1,1,4,5]]],[23,1,1,5,6,[[746,1,1,5,6]]],[27,1,1,6,7,[[871,1,1,6,7]]]],[5255,5260,5261,5390,7830,18989,22235]]],["+",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18989]]],["after",[3,3,[[4,3,3,0,3,[[164,3,3,0,3]]]],[5255,5260,5261]]],["desire",[3,3,[[4,1,1,0,1,[[170,1,1,0,1]]],[8,1,1,1,2,[[258,1,1,1,2]]],[27,1,1,2,3,[[871,1,1,2,3]]]],[5390,7830,22235]]]]},{"k":"H186","v":[["Uzai",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12352]]]]},{"k":"H187","v":[["Uzal",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[261,10273]]]]},{"k":"H188","v":[["*",[24,23,[[3,2,2,0,2,[[137,1,1,0,1],[140,1,1,1,2]]],[8,2,2,2,4,[[239,2,2,2,4]]],[19,1,1,4,5,[[650,1,1,4,5]]],[22,4,4,5,9,[[681,2,2,5,7],[684,1,1,7,8],[702,1,1,8,9]]],[23,8,8,9,17,[[748,2,2,9,11],[750,1,1,11,12],[754,1,1,12,13],[757,1,1,13,14],[759,1,1,14,15],[789,1,1,15,16],[792,1,1,16,17]]],[24,1,1,17,18,[[801,1,1,17,18]]],[25,4,3,18,21,[[817,2,1,18,19],[825,2,2,19,21]]],[27,2,2,21,23,[[868,1,1,21,22],[870,1,1,22,23]]]],[4369,4469,7304,7305,17073,17716,17718,17774,18111,19040,19058,19093,19220,19293,19325,20043,20126,20458,20785,21062,21065,22191,22220]]],["Alas",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4469]]],["Woe",[17,17,[[3,1,1,0,1,[[137,1,1,0,1]]],[8,2,2,1,3,[[239,2,2,1,3]]],[22,3,3,3,6,[[681,2,2,3,5],[684,1,1,5,6]]],[23,8,8,6,14,[[748,2,2,6,8],[750,1,1,8,9],[754,1,1,9,10],[757,1,1,10,11],[759,1,1,11,12],[789,1,1,12,13],[792,1,1,13,14]]],[25,2,2,14,16,[[825,2,2,14,16]]],[27,1,1,16,17,[[868,1,1,16,17]]]],[4369,7304,7305,17716,17718,17774,19040,19058,19093,19220,19293,19325,20043,20126,21062,21065,22191]]],["woe",[6,5,[[19,1,1,0,1,[[650,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]],[24,1,1,2,3,[[801,1,1,2,3]]],[25,2,1,3,4,[[817,2,1,3,4]]],[27,1,1,4,5,[[870,1,1,4,5]]]],[17073,18111,20458,20785,22220]]]]},{"k":"H189","v":[["Evi",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]]],[4672,6175]]]]},{"k":"H190","v":[["Woe",[1,1,[[18,1,1,0,1,[[597,1,1,0,1]]]],[16079]]]]},{"k":"H191","v":[["*",[26,26,[[17,2,2,0,2,[[440,2,2,0,2]]],[18,1,1,2,3,[[584,1,1,2,3]]],[19,19,19,3,22,[[628,1,1,3,4],[634,1,1,4,5],[637,4,4,5,9],[638,1,1,9,10],[639,2,2,10,12],[641,2,2,12,14],[642,1,1,14,15],[643,1,1,15,16],[644,1,1,16,17],[647,1,1,17,18],[651,1,1,18,19],[654,2,2,19,21],[656,1,1,21,22]]],[22,2,2,22,24,[[697,1,1,22,23],[713,1,1,23,24]]],[23,1,1,24,25,[[748,1,1,24,25]]],[27,1,1,25,26,[[870,1,1,25,26]]]],[12953,12954,15716,16407,16597,16664,16666,16670,16677,16717,16734,16735,16775,16781,16812,16862,16901,16957,17086,17172,17191,17233,18015,18328,19049,22215]]],["Fools",[2,2,[[18,1,1,0,1,[[584,1,1,0,1]]],[19,1,1,1,2,[[641,1,1,1,2]]]],[15716,16781]]],["fool",[11,11,[[19,10,10,0,10,[[634,1,1,0,1],[637,2,2,1,3],[638,1,1,3,4],[639,1,1,4,5],[642,1,1,5,6],[644,1,1,6,7],[647,1,1,7,8],[651,1,1,8,9],[654,1,1,9,10]]],[27,1,1,10,11,[[870,1,1,10,11]]]],[16597,16664,16666,16717,16734,16812,16901,16957,17086,17191,22215]]],["fool's",[2,2,[[19,2,2,0,2,[[639,1,1,0,1],[654,1,1,1,2]]]],[16735,17172]]],["foolish",[6,6,[[17,2,2,0,2,[[440,2,2,0,2]]],[19,3,3,2,5,[[637,1,1,2,3],[641,1,1,3,4],[656,1,1,4,5]]],[23,1,1,5,6,[[748,1,1,5,6]]]],[12953,12954,16670,16775,17233,19049]]],["fools",[5,5,[[19,3,3,0,3,[[628,1,1,0,1],[637,1,1,1,2],[643,1,1,2,3]]],[22,2,2,3,5,[[697,1,1,3,4],[713,1,1,4,5]]]],[16407,16677,16862,18015,18328]]]]},{"k":"H192","v":[["Evilmerodach",[2,2,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,1,1,1,2,[[796,1,1,1,2]]]],[10249,20307]]]]},{"k":"H193","v":[["strength",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15024]]]]},{"k":"H194","v":[["*",[45,44,[[0,12,12,0,12,[[15,1,1,0,1],[17,6,6,1,7],[23,2,2,7,9],[26,1,1,9,10],[31,1,1,10,11],[42,1,1,11,12]]],[1,1,1,12,13,[[81,1,1,12,13]]],[3,5,5,13,18,[[138,3,3,13,16],[139,2,2,16,18]]],[5,2,2,18,20,[[195,1,1,18,19],[200,1,1,19,20]]],[8,3,3,20,23,[[241,1,1,20,21],[244,1,1,21,22],[249,1,1,22,23]]],[9,2,2,23,25,[[280,1,1,23,24],[282,1,1,24,25]]],[10,3,3,25,28,[[308,2,2,25,27],[310,1,1,27,28]]],[11,1,1,28,29,[[331,1,1,28,29]]],[17,1,1,29,30,[[436,1,1,29,30]]],[22,3,2,30,32,[[715,1,1,30,31],[725,2,1,31,32]]],[23,6,6,32,38,[[764,1,1,32,33],[765,1,1,33,34],[770,1,1,34,35],[780,2,2,35,37],[795,1,1,37,38]]],[24,1,1,38,39,[[799,1,1,38,39]]],[25,1,1,39,40,[[813,1,1,39,40]]],[27,1,1,40,41,[[869,1,1,40,41]]],[29,1,1,41,42,[[883,1,1,41,42]]],[31,1,1,42,43,[[889,1,1,42,43]]],[35,1,1,43,44,[[907,1,1,43,44]]]],[383,448,452,453,454,455,456,596,630,739,948,1302,2468,4381,4386,4408,4419,4443,6044,6199,7336,7397,7514,8371,8438,9346,9368,9439,10065,12874,18356,18611,19432,19442,19575,19845,19849,20220,20383,20683,22201,22438,22537,22808]]],["Peradventure",[10,10,[[0,8,8,0,8,[[17,6,6,0,6],[23,2,2,6,8]]],[5,1,1,8,9,[[195,1,1,8,9]]],[23,1,1,9,10,[[764,1,1,9,10]]]],[448,452,453,454,455,456,596,630,6044,19432]]],["be",[18,17,[[0,1,1,0,1,[[15,1,1,0,1]]],[9,2,2,1,3,[[280,1,1,1,2],[282,1,1,2,3]]],[11,1,1,3,4,[[331,1,1,3,4]]],[17,1,1,4,5,[[436,1,1,4,5]]],[22,3,2,5,7,[[715,1,1,5,6],[725,2,1,6,7]]],[23,4,4,7,11,[[765,1,1,7,8],[770,1,1,8,9],[780,1,1,9,10],[795,1,1,10,11]]],[24,1,1,11,12,[[799,1,1,11,12]]],[25,1,1,12,13,[[813,1,1,12,13]]],[27,1,1,13,14,[[869,1,1,13,14]]],[29,1,1,14,15,[[883,1,1,14,15]]],[31,1,1,15,16,[[889,1,1,15,16]]],[35,1,1,16,17,[[907,1,1,16,17]]]],[383,8371,8438,10065,12874,18356,18611,19442,19575,19849,20220,20383,20683,22201,22438,22537,22808]]],["if",[1,1,[[5,1,1,0,1,[[200,1,1,0,1]]]],[6199]]],["peradventure",[13,13,[[0,3,3,0,3,[[26,1,1,0,1],[31,1,1,1,2],[42,1,1,2,3]]],[1,1,1,3,4,[[81,1,1,3,4]]],[3,4,4,4,8,[[138,2,2,4,6],[139,2,2,6,8]]],[8,2,2,8,10,[[241,1,1,8,9],[244,1,1,9,10]]],[10,3,3,10,13,[[308,2,2,10,12],[310,1,1,12,13]]]],[739,948,1302,2468,4381,4386,4419,4443,7336,7397,9346,9368,9439]]],["that",[2,2,[[8,1,1,0,1,[[249,1,1,0,1]]],[23,1,1,1,2,[[780,1,1,1,2]]]],[7514,19845]]],["unless",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4408]]]]},{"k":"H195","v":[["Ulai",[2,2,[[26,2,2,0,2,[[857,2,2,0,2]]]],[21963,21977]]]]},{"k":"H196","v":[["foolish",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23043]]]]},{"k":"H197","v":[["*",[34,29,[[10,10,7,0,7,[[296,1,1,0,1],[297,9,6,1,7]]],[12,1,1,7,8,[[365,1,1,7,8]]],[13,5,5,8,13,[[369,1,1,8,9],[374,1,1,9,10],[381,1,1,10,11],[395,2,2,11,13]]],[25,17,15,13,28,[[809,1,1,13,14],[841,10,8,14,22],[842,3,3,22,25],[845,1,1,25,26],[847,2,2,26,28]]],[28,1,1,28,29,[[877,1,1,28,29]]]],[8899,8940,8941,8942,8946,8953,8955,11154,11233,11358,11498,11798,11808,20620,21484,21485,21486,21492,21516,21517,21525,21526,21541,21551,21552,21602,21657,21663,22328]]],["porch",[33,28,[[10,10,7,0,7,[[296,1,1,0,1],[297,9,6,1,7]]],[12,1,1,7,8,[[365,1,1,7,8]]],[13,5,5,8,13,[[369,1,1,8,9],[374,1,1,9,10],[381,1,1,10,11],[395,2,2,11,13]]],[25,16,14,13,27,[[809,1,1,13,14],[841,10,8,14,22],[842,2,2,22,24],[845,1,1,24,25],[847,2,2,25,27]]],[28,1,1,27,28,[[877,1,1,27,28]]]],[8899,8940,8941,8942,8946,8953,8955,11154,11233,11358,11498,11798,11808,20620,21484,21485,21486,21492,21516,21517,21525,21526,21551,21552,21602,21657,21663,22328]]],["porches",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21541]]]]},{"k":"H198","v":[["Ulam",[4,4,[[12,4,4,0,4,[[344,2,2,0,2],[345,2,2,2,4]]]],[10551,10552,10614,10615]]]]},{"k":"H199","v":[["*",[18,18,[[0,2,2,0,2,[[27,1,1,0,1],[47,1,1,1,2]]],[1,1,1,2,3,[[58,1,1,2,3]]],[3,1,1,3,4,[[130,1,1,3,4]]],[6,1,1,4,5,[[228,1,1,4,5]]],[8,2,2,5,7,[[255,1,1,5,6],[260,1,1,6,7]]],[10,1,1,7,8,[[310,1,1,7,8]]],[17,9,9,8,17,[[436,1,1,8,9],[437,1,1,9,10],[446,1,1,10,11],[447,1,1,11,12],[448,2,2,12,14],[449,1,1,14,15],[452,1,1,15,16],[468,1,1,16,17]]],[32,1,1,17,18,[[895,1,1,17,18]]]],[792,1470,1758,4129,7022,7733,7895,9431,12880,12896,13113,13135,13156,13157,13199,13270,13651,22616]]],["But",[6,6,[[17,6,6,0,6,[[436,1,1,0,1],[437,1,1,1,2],[446,1,1,2,3],[447,1,1,3,4],[448,1,1,4,5],[452,1,1,5,6]]]],[12880,12896,13113,13135,13157,13270]]],["Surely",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13156]]],["Wherefore",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13651]]],["but",[2,2,[[0,1,1,0,1,[[27,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]]],[792,9431]]],["deed",[2,2,[[1,1,1,0,1,[[58,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]]],[1758,7895]]],["howbeit",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7022]]],["surely",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13199]]],["truly",[4,4,[[0,1,1,0,1,[[47,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[32,1,1,3,4,[[895,1,1,3,4]]]],[1470,4129,7733,22616]]]]},{"k":"H200","v":[["*",[25,24,[[18,2,2,0,2,[[515,1,1,0,1],[546,1,1,1,2]]],[19,23,22,2,24,[[632,1,1,2,3],[639,1,1,3,4],[640,1,1,4,5],[641,7,6,5,11],[642,3,3,11,14],[643,1,1,14,15],[644,1,1,15,16],[645,1,1,16,17],[646,1,1,17,18],[649,1,1,18,19],[651,1,1,19,20],[653,3,3,20,23],[654,1,1,23,24]]]],[14495,14940,16540,16742,16763,16773,16780,16789,16790,16796,16801,16809,16821,16828,16862,16885,16914,16928,17030,17088,17145,17146,17152,17191]]],["Folly",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16828]]],["Foolishness",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17030]]],["folly",[12,12,[[19,12,12,0,12,[[632,1,1,0,1],[640,1,1,1,2],[641,4,4,2,6],[643,1,1,6,7],[644,1,1,7,8],[645,1,1,8,9],[653,3,3,9,12]]]],[16540,16763,16780,16790,16796,16801,16862,16885,16914,17145,17146,17152]]],["foolish",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16773]]],["foolishly",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16789]]],["foolishness",[9,9,[[18,2,2,0,2,[[515,1,1,0,1],[546,1,1,1,2]]],[19,7,7,2,9,[[639,1,1,2,3],[641,1,1,3,4],[642,2,2,4,6],[646,1,1,6,7],[651,1,1,7,8],[654,1,1,8,9]]]],[14495,14940,16742,16796,16809,16821,16928,17088,17191]]]]},{"k":"H201","v":[["Omar",[3,3,[[0,2,2,0,2,[[35,2,2,0,2]]],[12,1,1,2,3,[[338,1,1,2,3]]]],[1051,1055,10288]]]]},{"k":"H202","v":[["*",[12,12,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[173,1,1,1,2]]],[17,4,4,2,6,[[453,2,2,2,4],[455,1,1,4,5],[475,1,1,5,6]]],[18,2,2,6,8,[[555,1,1,6,7],[582,1,1,7,8]]],[22,2,2,8,10,[[718,2,2,8,10]]],[27,2,2,10,12,[[873,2,2,10,12]]]],[1476,5464,13283,13288,13336,13880,15164,15642,18446,18449,22255,22260]]],["force",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13880]]],["goods",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13336]]],["might",[2,2,[[22,2,2,0,2,[[718,2,2,0,2]]]],[18446,18449]]],["strength",[7,7,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[173,1,1,1,2]]],[17,2,2,2,4,[[453,2,2,2,4]]],[18,2,2,4,6,[[555,1,1,4,5],[582,1,1,5,6]]],[27,1,1,6,7,[[873,1,1,6,7]]]],[1476,5464,13283,13288,15164,15642,22255]]],["substance",[1,1,[[27,1,1,0,1,[[873,1,1,0,1]]]],[22260]]]]},{"k":"H203","v":[["On",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4195]]]]},{"k":"H204","v":[["On",[3,3,[[0,3,3,0,3,[[40,2,2,0,2],[45,1,1,2,3]]]],[1240,1245,1406]]]]},{"k":"H205","v":[["*",[79,79,[[3,1,1,0,1,[[139,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]],[8,1,1,2,3,[[250,1,1,2,3]]],[17,13,13,3,16,[[439,1,1,3,4],[440,1,1,4,5],[446,2,2,5,7],[450,1,1,7,8],[456,1,1,8,9],[457,1,1,9,10],[466,1,1,10,11],[469,3,3,11,14],[471,2,2,14,16]]],[18,29,29,16,45,[[482,1,1,16,17],[483,1,1,17,18],[484,1,1,18,19],[487,1,1,19,20],[491,1,1,20,21],[505,1,1,21,22],[513,3,3,22,25],[518,1,1,25,26],[530,1,1,26,27],[532,2,2,27,29],[533,1,1,29,30],[536,2,2,30,32],[541,1,1,32,33],[543,1,1,33,34],[567,1,1,34,35],[569,2,2,35,37],[571,3,3,37,40],[578,1,1,40,41],[596,1,1,41,42],[602,1,1,42,43],[618,2,2,43,45]]],[19,10,10,45,55,[[633,2,2,45,47],[637,1,1,47,48],[638,1,1,48,49],[639,1,1,49,50],[644,1,1,50,51],[646,1,1,51,52],[648,1,1,52,53],[649,1,1,53,54],[657,1,1,54,55]]],[22,12,12,55,67,[[679,1,1,55,56],[688,1,1,56,57],[707,1,1,57,58],[709,1,1,58,59],[710,1,1,59,60],[719,1,1,60,61],[733,1,1,61,62],[736,1,1,62,63],[737,3,3,63,66],[744,1,1,66,67]]],[23,2,2,67,69,[[748,2,2,67,69]]],[25,2,2,69,71,[[812,1,1,69,70],[831,1,1,70,71]]],[27,3,3,71,74,[[867,1,1,71,72],[870,1,1,72,73],[873,1,1,73,74]]],[29,1,1,74,75,[[883,1,1,74,75]]],[32,1,1,75,76,[[894,1,1,75,76]]],[34,2,2,76,78,[[903,1,1,76,77],[905,1,1,77,78]]],[37,1,1,78,79,[[920,1,1,78,79]]]],[4437,5580,7583,12938,12957,13119,13122,13238,13374,13404,13591,13691,13705,13719,13746,13757,13978,13993,14009,14048,14084,14302,14441,14442,14450,14548,14723,14735,14742,14762,14792,14795,14852,14891,15388,15418,15420,15435,15447,15454,15521,16031,16115,16280,16285,16552,16558,16685,16695,16740,16877,16953,16999,17023,17271,17667,17851,18213,18252,18265,18480,18747,18795,18804,18806,18807,18925,19041,19042,20657,21221,22175,22212,22263,22428,22596,22734,22775,23018]]],["+",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13746]]],["Aven",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21221]]],["affliction",[3,3,[[17,1,1,0,1,[[440,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]],[34,1,1,2,3,[[905,1,1,2,3]]]],[12957,19042,22775]]],["evil",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16740]]],["false",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16877]]],["idol",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18925]]],["iniquity",[46,46,[[3,1,1,0,1,[[139,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]],[17,7,7,2,9,[[439,1,1,2,3],[446,1,1,3,4],[456,1,1,4,5],[466,1,1,5,6],[469,2,2,6,8],[471,1,1,8,9]]],[18,23,23,9,32,[[482,1,1,9,10],[483,1,1,10,11],[484,1,1,11,12],[491,1,1,12,13],[505,1,1,13,14],[513,2,2,14,16],[518,1,1,16,17],[530,1,1,17,18],[532,1,1,18,19],[533,1,1,19,20],[536,1,1,20,21],[541,1,1,21,22],[543,1,1,22,23],[569,2,2,23,25],[571,3,3,25,28],[596,1,1,28,29],[602,1,1,29,30],[618,2,2,30,32]]],[19,3,3,32,35,[[637,1,1,32,33],[646,1,1,33,34],[648,1,1,34,35]]],[22,7,7,35,42,[[679,1,1,35,36],[707,1,1,36,37],[709,1,1,37,38],[710,1,1,38,39],[737,3,3,39,42]]],[27,2,2,42,44,[[867,1,1,42,43],[873,1,1,43,44]]],[32,1,1,44,45,[[894,1,1,44,45]]],[34,1,1,45,46,[[903,1,1,45,46]]]],[4437,7583,12938,13122,13374,13591,13691,13705,13757,13978,13993,14009,14084,14302,14441,14450,14548,14723,14735,14762,14792,14852,14891,15418,15420,15435,15447,15454,16031,16115,16280,16285,16685,16953,16999,17667,18213,18252,18265,18804,18806,18807,22175,22263,22596,22734]]],["mischief",[3,3,[[18,2,2,0,2,[[513,1,1,0,1],[532,1,1,1,2]]],[25,1,1,2,3,[[812,1,1,2,3]]]],[14442,14742,20657]]],["mourners",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22212]]],["mourning",[1,1,[[4,1,1,0,1,[[178,1,1,0,1]]]],[5580]]],["nought",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22428]]],["sorrow",[1,1,[[18,1,1,0,1,[[567,1,1,0,1]]]],[15388]]],["unjust",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16695]]],["unrighteous",[2,2,[[22,2,2,0,2,[[688,1,1,0,1],[733,1,1,1,2]]]],[17851,18747]]],["vain",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19041]]],["vanity",[6,6,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,1,1,1,2,[[487,1,1,1,2]]],[19,1,1,2,3,[[649,1,1,2,3]]],[22,2,2,3,5,[[719,1,1,3,4],[736,1,1,4,5]]],[37,1,1,5,6,[[920,1,1,5,6]]]],[13238,14048,17023,18480,18795,23018]]],["wicked",[6,6,[[17,2,2,0,2,[[457,1,1,0,1],[469,1,1,1,2]]],[18,2,2,2,4,[[536,1,1,2,3],[578,1,1,3,4]]],[19,2,2,4,6,[[633,2,2,4,6]]]],[13404,13719,14795,15521,16552,16558]]],["wickedness",[2,2,[[17,1,1,0,1,[[446,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[13119,17271]]]]},{"k":"H206","v":[["Aven",[2,2,[[27,1,1,0,1,[[871,1,1,0,1]]],[29,1,1,1,2,[[879,1,1,1,2]]]],[22233,22369]]]]},{"k":"H207","v":[["Ono",[5,5,[[12,1,1,0,1,[[345,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,3,3,2,5,[[418,1,1,2,3],[419,1,1,3,4],[423,1,1,4,5]]]],[10587,12060,12403,12457,12623]]]]},{"k":"H208","v":[["Onam",[4,4,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,3,3,1,4,[[338,1,1,1,2],[339,2,2,2,4]]]],[1063,10292,10332,10334]]]]},{"k":"H209","v":[["Onan",[8,6,[[0,5,4,0,4,[[37,3,3,0,3],[45,2,1,3,4]]],[3,2,1,4,5,[[142,2,1,4,5]]],[12,1,1,5,6,[[339,1,1,5,6]]]],[1123,1127,1128,1398,4508,10309]]]]},{"k":"H210","v":[["*",[2,2,[[23,1,1,0,1,[[754,1,1,0,1]]],[26,1,1,1,2,[[859,1,1,1,2]]]],[19210,22020]]],["+",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19210]]],["Uphaz",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22020]]]]},{"k":"H211","v":[["*",[13,12,[[0,1,1,0,1,[[9,1,1,0,1]]],[10,4,3,1,4,[[299,1,1,1,2],[300,2,1,2,3],[312,1,1,3,4]]],[12,2,2,4,6,[[338,1,1,4,5],[366,1,1,5,6]]],[13,2,2,6,8,[[374,1,1,6,7],[375,1,1,7,8]]],[17,2,2,8,10,[[457,1,1,8,9],[463,1,1,9,10]]],[18,1,1,10,11,[[522,1,1,10,11]]],[22,1,1,11,12,[[691,1,1,11,12]]]],[263,9079,9090,9528,10275,11168,11364,11374,13413,13520,14606,17918]]],["+",[3,2,[[10,2,1,0,1,[[300,2,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9090,11374]]],["Ophir",[10,10,[[0,1,1,0,1,[[9,1,1,0,1]]],[10,2,2,1,3,[[299,1,1,1,2],[312,1,1,2,3]]],[12,2,2,3,5,[[338,1,1,3,4],[366,1,1,4,5]]],[13,1,1,5,6,[[374,1,1,5,6]]],[17,2,2,6,8,[[457,1,1,6,7],[463,1,1,7,8]]],[18,1,1,8,9,[[522,1,1,8,9]]],[22,1,1,9,10,[[691,1,1,9,10]]]],[263,9079,9528,10275,11168,11364,13413,13520,14606,17918]]]]},{"k":"H212","v":[["*",[35,21,[[1,1,1,0,1,[[63,1,1,0,1]]],[10,6,3,1,4,[[297,6,3,1,4]]],[19,1,1,4,5,[[647,1,1,4,5]]],[22,1,1,5,6,[[706,1,1,5,6]]],[25,25,14,6,20,[[802,10,5,6,11],[804,1,1,11,12],[811,13,7,12,19],[812,1,1,19,20]]],[33,1,1,20,21,[[902,1,1,20,21]]]],[1914,8964,8966,8967,16980,18191,20479,20480,20483,20484,20485,20515,20639,20642,20643,20645,20646,20649,20652,20677,22714]]],["wheel",[11,8,[[10,2,2,0,2,[[297,2,2,0,2]]],[19,1,1,2,3,[[647,1,1,2,3]]],[22,1,1,3,4,[[706,1,1,3,4]]],[25,7,4,4,8,[[802,3,2,4,6],[811,4,2,6,8]]]],[8966,8967,16980,18191,20479,20480,20642,20643]]],["wheels",[24,17,[[1,1,1,0,1,[[63,1,1,0,1]]],[10,4,3,1,4,[[297,4,3,1,4]]],[25,18,12,4,16,[[802,7,4,4,8],[804,1,1,8,9],[811,9,6,9,15],[812,1,1,15,16]]],[33,1,1,16,17,[[902,1,1,16,17]]]],[1914,8964,8966,8967,20480,20483,20484,20485,20515,20639,20642,20645,20646,20649,20652,20677,22714]]]]},{"k":"H213","v":[["*",[10,10,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,1,1,1,2,[[54,1,1,1,2]]],[5,2,2,2,4,[[196,1,1,2,3],[203,1,1,3,4]]],[19,4,4,4,8,[[646,1,1,4,5],[648,1,1,5,6],[655,1,1,6,7],[656,1,1,7,8]]],[22,1,1,8,9,[[700,1,1,8,9]]],[23,1,1,9,10,[[761,1,1,9,10]]]],[472,1645,6077,6290,16927,16989,17216,17244,18056,19373]]],["haste",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17216]]],["hasted",[2,2,[[1,1,1,0,1,[[54,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]]],[1645,6077]]],["hastened",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[23,1,1,1,2,[[761,1,1,1,2]]]],[472,19373]]],["hasteth",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16927]]],["hasty",[2,2,[[19,2,2,0,2,[[648,1,1,0,1],[656,1,1,1,2]]]],[16989,17244]]],["labour",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18056]]],["narrow",[1,1,[[5,1,1,0,1,[[203,1,1,0,1]]]],[6290]]]]},{"k":"H214","v":[["*",[79,70,[[4,2,2,0,2,[[180,1,1,0,1],[184,1,1,1,2]]],[5,2,2,2,4,[[192,2,2,2,4]]],[10,5,3,4,7,[[297,1,1,4,5],[304,2,1,5,6],[305,2,1,6,7]]],[11,8,7,7,14,[[324,1,1,7,8],[326,1,1,8,9],[328,1,1,9,10],[330,1,1,10,11],[332,2,2,11,13],[336,2,1,13,14]]],[12,13,10,14,24,[[346,1,1,14,15],[363,5,4,15,19],[364,4,3,19,22],[365,2,1,22,23],[366,1,1,23,24]]],[13,10,8,24,32,[[371,1,1,24,25],[374,1,1,25,26],[377,1,1,26,27],[378,2,1,27,28],[382,1,1,28,29],[391,1,1,29,30],[398,1,1,30,31],[402,2,1,31,32]]],[14,1,1,32,33,[[404,1,1,32,33]]],[15,6,6,33,39,[[419,2,2,33,35],[422,1,1,35,36],[424,1,1,36,37],[425,2,2,37,39]]],[17,2,1,39,40,[[473,2,1,39,40]]],[18,2,2,40,42,[[510,1,1,40,41],[612,1,1,41,42]]],[19,5,5,42,47,[[635,1,1,42,43],[637,1,1,43,44],[642,1,1,44,45],[648,2,2,45,47]]],[22,6,6,47,53,[[680,1,1,47,48],[708,1,1,48,49],[711,1,1,49,50],[717,2,2,50,52],[723,1,1,52,53]]],[23,11,11,53,64,[[754,1,1,53,54],[759,1,1,54,55],[761,1,1,55,56],[764,1,1,56,57],[782,1,1,57,58],[792,1,1,58,59],[793,1,1,59,60],[794,2,2,60,62],[795,2,2,62,64]]],[25,1,1,64,65,[[829,1,1,64,65]]],[26,1,1,65,66,[[850,1,1,65,66]]],[27,1,1,66,67,[[874,1,1,66,67]]],[28,1,1,67,68,[[876,1,1,67,68]]],[32,1,1,68,69,[[898,1,1,68,69]]],[38,1,1,69,70,[[927,1,1,69,70]]]],[5623,5792,5968,5973,8985,9244,9267,9868,9910,9971,10039,10111,10113,10215,10641,11097,11099,11101,11103,11134,11136,11137,11155,11172,11269,11361,11425,11446,11511,11728,11902,12011,12096,12490,12491,12587,12668,12683,12684,13815,14373,16182,16623,16658,16823,16990,17004,17692,18223,18285,18414,18416,18564,19214,19328,19360,19427,19906,20087,20131,20191,20203,20225,20228,21161,21739,22281,22308,22658,23130]]],["+",[7,7,[[4,1,1,0,1,[[180,1,1,0,1]]],[13,1,1,1,2,[[382,1,1,1,2]]],[18,1,1,2,3,[[612,1,1,2,3]]],[19,1,1,3,4,[[642,1,1,3,4]]],[23,2,2,4,6,[[754,1,1,4,5],[795,1,1,5,6]]],[38,1,1,6,7,[[927,1,1,6,7]]]],[5623,11511,16182,16823,19214,20228,23130]]],["Treasures",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16658]]],["armoury",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20191]]],["cellars",[2,2,[[12,2,2,0,2,[[364,2,2,0,2]]]],[11136,11137]]],["garners",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22308]]],["store",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11425]]],["storehouses",[2,2,[[12,1,1,0,1,[[364,1,1,0,1]]],[18,1,1,1,2,[[510,1,1,1,2]]]],[11134,14373]]],["treasure",[9,9,[[12,1,1,0,1,[[366,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,3,3,2,5,[[419,2,2,2,4],[422,1,1,4,5]]],[19,1,1,5,6,[[648,1,1,5,6]]],[22,1,1,6,7,[[711,1,1,6,7]]],[26,1,1,7,8,[[850,1,1,7,8]]],[27,1,1,8,9,[[874,1,1,8,9]]]],[11172,12096,12490,12491,12587,17004,18285,21739,22281]]],["treasures",[46,39,[[4,1,1,0,1,[[184,1,1,0,1]]],[10,5,3,1,4,[[297,1,1,1,2],[304,2,1,2,3],[305,2,1,3,4]]],[11,8,7,4,11,[[324,1,1,4,5],[326,1,1,5,6],[328,1,1,6,7],[330,1,1,7,8],[332,2,2,8,10],[336,2,1,10,11]]],[12,6,5,11,16,[[363,5,4,11,15],[364,1,1,15,16]]],[13,7,5,16,21,[[371,1,1,16,17],[374,1,1,17,18],[378,2,1,18,19],[391,1,1,19,20],[402,2,1,20,21]]],[15,1,1,21,22,[[424,1,1,21,22]]],[17,2,1,22,23,[[473,2,1,22,23]]],[19,2,2,23,25,[[635,1,1,23,24],[648,1,1,24,25]]],[22,5,5,25,30,[[680,1,1,25,26],[708,1,1,26,27],[717,2,2,27,29],[723,1,1,29,30]]],[23,7,7,30,37,[[759,1,1,30,31],[761,1,1,31,32],[764,1,1,32,33],[792,1,1,33,34],[793,1,1,34,35],[794,1,1,35,36],[795,1,1,36,37]]],[25,1,1,37,38,[[829,1,1,37,38]]],[32,1,1,38,39,[[898,1,1,38,39]]]],[5792,8985,9244,9267,9868,9910,9971,10039,10111,10113,10215,11097,11099,11101,11103,11134,11269,11361,11446,11728,12011,12668,13815,16623,16990,17692,18223,18414,18416,18564,19328,19360,19427,20087,20131,20203,20225,21161,22658]]],["treasuries",[6,5,[[12,3,2,0,2,[[346,1,1,0,1],[365,2,1,1,2]]],[13,1,1,2,3,[[398,1,1,2,3]]],[15,2,2,3,5,[[425,2,2,3,5]]]],[10641,11155,11902,12683,12684]]],["treasury",[3,3,[[5,2,2,0,2,[[192,2,2,0,2]]],[23,1,1,2,3,[[782,1,1,2,3]]]],[5968,5973,19906]]]]},{"k":"H215","v":[["*",[42,42,[[0,3,3,0,3,[[0,2,2,0,2],[43,1,1,2,3]]],[1,3,3,3,6,[[62,1,1,3,4],[63,1,1,4,5],[74,1,1,5,6]]],[3,2,2,6,8,[[122,1,1,6,7],[124,1,1,7,8]]],[8,2,2,8,10,[[249,2,2,8,10]]],[9,1,1,10,11,[[268,1,1,10,11]]],[14,1,1,11,12,[[411,1,1,11,12]]],[15,2,2,12,14,[[421,2,2,12,14]]],[17,2,2,14,16,[[468,1,1,14,15],[476,1,1,15,16]]],[18,16,16,16,32,[[490,1,1,16,17],[495,1,1,17,18],[496,1,1,18,19],[508,1,1,19,20],[544,1,1,20,21],[553,1,1,21,22],[554,1,1,22,23],[557,3,3,23,26],[574,1,1,26,27],[582,1,1,27,28],[595,1,1,28,29],[596,2,2,29,31],[616,1,1,31,32]]],[19,2,2,32,34,[[631,1,1,32,33],[656,1,1,33,34]]],[20,1,1,34,35,[[666,1,1,34,35]]],[22,3,3,35,38,[[705,1,1,35,36],[738,2,2,36,38]]],[25,2,2,38,40,[[833,1,1,38,39],[844,1,1,39,40]]],[26,1,1,40,41,[[858,1,1,40,41]]],[38,1,1,41,42,[[925,1,1,41,42]]]],[14,16,1327,1888,1909,2232,3848,3941,7535,7537,8081,12245,12523,12530,13680,13920,14077,14146,14176,14347,14894,15085,15111,15201,15205,15217,15482,15645,15896,16028,16033,16251,16508,17237,17459,18162,18822,18840,21255,21574,22005,23099]]],["+",[2,2,[[1,1,1,0,1,[[63,1,1,0,1]]],[22,1,1,1,2,[[705,1,1,1,2]]]],[1909,18162]]],["day",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8081]]],["enlightened",[4,4,[[8,2,2,0,2,[[249,2,2,0,2]]],[17,1,1,2,3,[[468,1,1,2,3]]],[18,1,1,3,4,[[574,1,1,3,4]]]],[7535,7537,13680,15482]]],["enlightening",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14176]]],["give",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21255]]],["glorious",[1,1,[[18,1,1,0,1,[[553,1,1,0,1]]]],[15085]]],["kindle",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23099]]],["light",[13,13,[[0,3,3,0,3,[[0,2,2,0,2],[43,1,1,2,3]]],[1,2,2,3,5,[[62,1,1,3,4],[74,1,1,4,5]]],[3,1,1,5,6,[[124,1,1,5,6]]],[15,2,2,6,8,[[421,2,2,6,8]]],[18,4,4,8,12,[[495,1,1,8,9],[582,1,1,9,10],[595,1,1,10,11],[596,1,1,11,12]]],[22,1,1,12,13,[[738,1,1,12,13]]]],[14,16,1327,1888,2232,3941,12523,12530,14146,15645,15896,16028,18840]]],["lighten",[2,2,[[14,1,1,0,1,[[411,1,1,0,1]]],[18,1,1,1,2,[[490,1,1,1,2]]]],[12245,14077]]],["lightened",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15111]]],["lighteneth",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17237]]],["shine",[11,11,[[3,1,1,0,1,[[122,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[18,6,6,2,8,[[508,1,1,2,3],[544,1,1,3,4],[557,3,3,4,7],[596,1,1,7,8]]],[20,1,1,8,9,[[666,1,1,8,9]]],[22,1,1,9,10,[[738,1,1,9,10]]],[26,1,1,10,11,[[858,1,1,10,11]]]],[3848,13920,14347,14894,15201,15205,15217,16033,17459,18822,22005]]],["shined",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21574]]],["shineth",[2,2,[[18,1,1,0,1,[[616,1,1,0,1]]],[19,1,1,1,2,[[631,1,1,1,2]]]],[16251,16508]]]]},{"k":"H216","v":[["*",[122,111,[[0,6,4,0,4,[[0,6,4,0,4]]],[1,1,1,4,5,[[59,1,1,4,5]]],[6,2,2,5,7,[[226,1,1,5,6],[229,1,1,6,7]]],[8,4,4,7,11,[[249,1,1,7,8],[260,2,2,8,10],[264,1,1,10,11]]],[9,2,2,11,13,[[283,1,1,11,12],[289,1,1,12,13]]],[11,1,1,13,14,[[319,1,1,13,14]]],[15,1,1,14,15,[[420,1,1,14,15]]],[17,32,32,15,47,[[438,3,3,15,18],[447,2,2,18,20],[452,1,1,20,21],[453,3,3,21,24],[457,1,1,24,25],[459,3,3,25,28],[460,1,1,28,29],[461,1,1,29,30],[463,1,1,30,31],[464,2,2,31,33],[465,1,1,33,34],[466,1,1,34,35],[468,2,2,35,37],[471,2,2,37,39],[472,4,4,39,43],[473,3,3,43,46],[476,1,1,46,47]]],[18,19,18,47,65,[[481,1,1,47,48],[504,1,1,48,49],[513,2,1,49,50],[514,1,1,50,51],[515,1,1,51,52],[520,1,1,52,53],[521,1,1,53,54],[526,1,1,54,55],[533,1,1,55,56],[555,1,1,56,57],[566,1,1,57,58],[574,1,1,58,59],[581,1,1,59,60],[589,1,1,60,61],[596,1,1,61,62],[613,1,1,62,63],[616,1,1,63,64],[625,1,1,64,65]]],[19,4,4,65,69,[[631,1,1,65,66],[633,1,1,66,67],[640,1,1,67,68],[643,1,1,68,69]]],[20,3,3,69,72,[[660,1,1,69,70],[669,1,1,70,71],[670,1,1,71,72]]],[22,27,20,72,92,[[680,1,1,72,73],[683,3,2,73,75],[687,2,1,75,76],[688,1,1,76,77],[691,2,1,77,78],[696,1,1,78,79],[708,4,1,79,80],[720,2,2,80,82],[723,1,1,82,83],[727,1,1,83,84],[729,1,1,84,85],[736,2,2,85,87],[737,1,1,87,88],[738,5,4,88,92]]],[23,5,4,92,96,[[748,1,1,92,93],[757,1,1,93,94],[769,1,1,94,95],[775,2,1,95,96]]],[24,1,1,96,97,[[799,1,1,96,97]]],[25,2,2,97,99,[[833,2,2,97,99]]],[27,1,1,99,100,[[867,1,1,99,100]]],[29,3,3,100,103,[[883,2,2,100,102],[886,1,1,102,103]]],[32,3,3,103,106,[[894,1,1,103,104],[899,2,2,104,106]]],[34,2,2,106,108,[[905,2,2,106,108]]],[35,1,1,108,109,[[908,1,1,108,109]]],[37,2,2,109,111,[[924,2,2,109,111]]]],[2,3,4,17,1800,6951,7050,7544,7895,7897,7977,8471,8657,9716,12496,12913,12920,12924,13150,13153,13272,13281,13282,13294,13417,13449,13450,13452,13464,13477,13515,13535,13556,13583,13614,13678,13680,13766,13768,13772,13780,13784,13790,13808,13812,13817,13906,13971,14286,14447,14456,14500,14569,14574,14667,14768,15127,15341,15489,15573,15807,16003,16203,16250,16374,16508,16563,16756,16855,17346,17520,17525,17690,17759,17769,17831,17867,17916,18001,18243,18486,18496,18568,18642,18677,18794,18796,18809,18822,18824,18840,18841,19050,19282,19544,19726,20356,21255,21256,22172,22441,22443,22490,22596,22672,22673,22772,22779,22825,23074,23075]]],["+",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13294]]],["Light",[1,1,[[18,1,1,0,1,[[574,1,1,0,1]]]],[15489]]],["bright",[2,2,[[17,1,1,0,1,[[472,1,1,0,1]]],[25,1,1,1,2,[[833,1,1,1,2]]]],[13780,21256]]],["clear",[1,1,[[29,1,1,0,1,[[886,1,1,0,1]]]],[22490]]],["day",[2,2,[[6,1,1,0,1,[[226,1,1,0,1]]],[17,1,1,1,2,[[461,1,1,1,2]]]],[6951,13477]]],["herbs",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18001]]],["light",[110,99,[[0,6,4,0,4,[[0,6,4,0,4]]],[1,1,1,4,5,[[59,1,1,4,5]]],[6,1,1,5,6,[[229,1,1,5,6]]],[8,4,4,6,10,[[249,1,1,6,7],[260,2,2,7,9],[264,1,1,9,10]]],[9,2,2,10,12,[[283,1,1,10,11],[289,1,1,11,12]]],[11,1,1,12,13,[[319,1,1,12,13]]],[17,27,27,13,40,[[438,3,3,13,16],[447,2,2,16,18],[452,1,1,18,19],[453,2,2,19,21],[457,1,1,21,22],[459,3,3,22,25],[460,1,1,25,26],[463,1,1,26,27],[464,2,2,27,29],[465,1,1,29,30],[468,2,2,30,32],[471,2,2,32,34],[472,2,2,34,36],[473,3,3,36,39],[476,1,1,39,40]]],[18,17,16,40,56,[[481,1,1,40,41],[504,1,1,41,42],[513,2,1,42,43],[514,1,1,43,44],[515,1,1,44,45],[520,1,1,45,46],[521,1,1,46,47],[526,1,1,47,48],[533,1,1,48,49],[555,1,1,49,50],[566,1,1,50,51],[581,1,1,51,52],[589,1,1,52,53],[596,1,1,53,54],[616,1,1,54,55],[625,1,1,55,56]]],[19,4,4,56,60,[[631,1,1,56,57],[633,1,1,57,58],[640,1,1,58,59],[643,1,1,59,60]]],[20,3,3,60,63,[[660,1,1,60,61],[669,1,1,61,62],[670,1,1,62,63]]],[22,26,19,63,82,[[680,1,1,63,64],[683,3,2,64,66],[687,2,1,66,67],[688,1,1,67,68],[691,2,1,68,69],[708,4,1,69,70],[720,2,2,70,72],[723,1,1,72,73],[727,1,1,73,74],[729,1,1,74,75],[736,2,2,75,77],[737,1,1,77,78],[738,5,4,78,82]]],[23,5,4,82,86,[[748,1,1,82,83],[757,1,1,83,84],[769,1,1,84,85],[775,2,1,85,86]]],[24,1,1,86,87,[[799,1,1,86,87]]],[25,1,1,87,88,[[833,1,1,87,88]]],[27,1,1,88,89,[[867,1,1,88,89]]],[29,2,2,89,91,[[883,2,2,89,91]]],[32,3,3,91,94,[[894,1,1,91,92],[899,2,2,92,94]]],[34,2,2,94,96,[[905,2,2,94,96]]],[35,1,1,96,97,[[908,1,1,96,97]]],[37,2,2,97,99,[[924,2,2,97,99]]]],[2,3,4,17,1800,7050,7544,7895,7897,7977,8471,8657,9716,12913,12920,12924,13150,13153,13272,13281,13282,13417,13449,13450,13452,13464,13515,13535,13556,13583,13678,13680,13766,13768,13784,13790,13808,13812,13817,13906,13971,14286,14447,14456,14500,14569,14574,14667,14768,15127,15341,15573,15807,16003,16250,16374,16508,16563,16756,16855,17346,17520,17525,17690,17759,17769,17831,17867,17916,18243,18486,18496,18568,18642,18677,18794,18796,18809,18822,18824,18840,18841,19050,19282,19544,19726,20356,21255,22172,22441,22443,22596,22672,22673,22772,22779,22825,23074,23075]]],["lightning",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13772]]],["lights",[1,1,[[18,1,1,0,1,[[613,1,1,0,1]]]],[16203]]],["morning",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12496]]],["sun",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13614]]]]},{"k":"H217","v":[["*",[6,6,[[22,5,5,0,5,[[702,1,1,0,1],[709,1,1,1,2],[722,1,1,2,3],[725,1,1,3,4],[728,1,1,4,5]]],[25,1,1,5,6,[[806,1,1,5,6]]]],[18110,18259,18549,18613,18673,20548]]],["fire",[4,4,[[22,3,3,0,3,[[709,1,1,0,1],[722,1,1,1,2],[725,1,1,2,3]]],[25,1,1,3,4,[[806,1,1,3,4]]]],[18259,18549,18613,20548]]],["fires",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18110]]],["light",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18673]]]]},{"k":"H218","v":[["*",[5,5,[[0,3,3,0,3,[[10,2,2,0,2],[14,1,1,2,3]]],[12,1,1,3,4,[[348,1,1,3,4]]],[15,1,1,4,5,[[421,1,1,4,5]]]],[294,297,367,10708,12518]]],["+",[3,3,[[0,2,2,0,2,[[10,1,1,0,1],[14,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]]],[297,367,12518]]],["Ur",[2,2,[[0,1,1,0,1,[[10,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[294,10708]]]]},{"k":"H219","v":[["*",[4,4,[[11,1,1,0,1,[[316,1,1,0,1]]],[16,1,1,1,2,[[433,1,1,1,2]]],[18,1,1,2,3,[[616,1,1,2,3]]],[22,1,1,3,4,[[704,1,1,3,4]]]],[9642,12833,16251,18149]]],["herbs",[2,2,[[11,1,1,0,1,[[316,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]]],[9642,18149]]],["light",[2,2,[[16,1,1,0,1,[[433,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]]],[12833,16251]]]]},{"k":"H220","v":[["cotes",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11903]]]]},{"k":"H221","v":[["Uri",[8,7,[[1,3,3,0,3,[[80,1,1,0,1],[84,1,1,1,2],[87,1,1,2,3]]],[10,1,1,3,4,[[294,1,1,3,4]]],[12,2,1,4,5,[[339,2,1,4,5]]],[13,1,1,5,6,[[367,1,1,5,6]]],[14,1,1,6,7,[[412,1,1,6,7]]]],[2422,2561,2655,8863,10326,11199,12276]]]]},{"k":"H222","v":[["Uriel",[4,4,[[12,3,3,0,3,[[343,1,1,0,1],[352,2,2,1,3]]],[13,1,1,3,4,[[379,1,1,3,4]]]],[10478,10796,10802,11455]]]]},{"k":"H223","v":[["*",[39,33,[[9,24,19,0,19,[[277,20,15,0,15],[278,3,3,15,18],[289,1,1,18,19]]],[10,1,1,19,20,[[305,1,1,19,20]]],[11,5,4,20,24,[[328,5,4,20,24]]],[12,1,1,24,25,[[348,1,1,24,25]]],[14,1,1,25,26,[[410,1,1,25,26]]],[15,3,3,26,29,[[415,2,2,26,28],[420,1,1,28,29]]],[22,1,1,29,30,[[686,1,1,29,30]]],[23,3,3,30,33,[[770,3,3,30,33]]]],[8262,8265,8266,8267,8268,8269,8270,8271,8273,8274,8275,8276,8280,8283,8285,8295,8296,8301,8692,9254,9973,9974,9978,9979,10714,12234,12331,12348,12497,17809,19592,19593,19595]]],["Uriah",[27,22,[[9,23,18,0,18,[[277,20,15,0,15],[278,2,2,15,17],[289,1,1,17,18]]],[10,1,1,18,19,[[305,1,1,18,19]]],[12,1,1,19,20,[[348,1,1,19,20]]],[14,1,1,20,21,[[410,1,1,20,21]]],[22,1,1,21,22,[[686,1,1,21,22]]]],[8262,8265,8266,8267,8268,8269,8270,8271,8273,8274,8275,8276,8280,8283,8285,8295,8296,8692,9254,10714,12234,17809]]],["Uriah's",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8301]]],["Urijah",[11,10,[[11,5,4,0,4,[[328,5,4,0,4]]],[15,3,3,4,7,[[415,2,2,4,6],[420,1,1,6,7]]],[23,3,3,7,10,[[770,3,3,7,10]]]],[9973,9974,9978,9979,12331,12348,12497,19592,19593,19595]]]]},{"k":"H224","v":[["Urim",[7,7,[[1,1,1,0,1,[[77,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]],[3,1,1,2,3,[[143,1,1,2,3]]],[4,1,1,3,4,[[185,1,1,3,4]]],[8,1,1,4,5,[[263,1,1,4,5]]],[14,1,1,5,6,[[404,1,1,5,6]]],[15,1,1,6,7,[[419,1,1,6,7]]]],[2323,2925,4575,5818,7948,12090,12485]]]]},{"k":"H225","v":[["*",[4,4,[[0,3,3,0,3,[[33,3,3,0,3]]],[11,1,1,3,4,[[324,1,1,3,4]]]],[995,1002,1003,9858]]],["consent",[3,3,[[0,3,3,0,3,[[33,3,3,0,3]]]],[995,1002,1003]]],["consented",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9858]]]]},{"k":"H226","v":[["*",[79,77,[[0,6,6,0,6,[[0,1,1,0,1],[3,1,1,1,2],[8,3,3,2,5],[16,1,1,5,6]]],[1,16,15,6,21,[[52,1,1,6,7],[53,6,5,7,12],[56,1,1,12,13],[57,1,1,13,14],[59,2,2,14,16],[61,1,1,16,17],[62,2,2,17,19],[80,2,2,19,21]]],[3,5,5,21,26,[[118,1,1,21,22],[130,2,2,22,24],[132,1,1,24,25],[133,1,1,25,26]]],[4,12,12,26,38,[[156,1,1,26,27],[158,2,2,27,29],[159,1,1,29,30],[163,2,2,30,32],[165,2,2,32,34],[178,1,1,34,35],[180,1,1,35,36],[181,1,1,36,37],[186,1,1,37,38]]],[5,3,3,38,41,[[188,1,1,38,39],[190,1,1,39,40],[210,1,1,40,41]]],[6,1,1,41,42,[[216,1,1,41,42]]],[8,4,4,42,46,[[237,1,1,42,43],[245,2,2,43,45],[249,1,1,45,46]]],[11,3,3,46,49,[[331,1,1,46,47],[332,2,2,47,49]]],[15,1,1,49,50,[[421,1,1,49,50]]],[17,1,1,50,51,[[456,1,1,50,51]]],[18,8,7,51,58,[[542,1,1,51,52],[551,3,2,52,54],[555,1,1,54,55],[563,1,1,55,56],[582,1,1,56,57],[612,1,1,57,58]]],[22,11,11,58,69,[[685,2,2,58,60],[686,1,1,60,61],[697,1,1,61,62],[698,1,1,62,63],[715,1,1,63,64],[716,2,2,64,66],[722,1,1,66,67],[733,1,1,67,68],[744,1,1,68,69]]],[23,4,4,69,73,[[754,1,1,69,70],[776,2,2,70,72],[788,1,1,72,73]]],[25,4,4,73,77,[[805,1,1,73,74],[815,1,1,74,75],[821,2,2,75,77]]]],[13,94,217,218,222,408,1591,1609,1610,1618,1629,1631,1688,1733,1778,1779,1829,1876,1883,2433,2437,3660,4119,4130,4232,4254,5038,5094,5108,5130,5211,5226,5273,5274,5574,5657,5682,5850,5881,5916,6493,6671,7274,7425,7427,7518,10090,10106,10107,12521,13384,14868,15052,15057,15156,15301,15633,16184,17793,17796,17825,18024,18032,18382,18397,18412,18558,18753,18941,19203,19751,19752,20039,20532,20739,20907,20915]]],["+",[3,3,[[18,2,2,0,2,[[542,1,1,0,1],[582,1,1,1,2]]],[23,1,1,2,3,[[754,1,1,2,3]]]],[14868,15633,19203]]],["ensign",[1,1,[[3,1,1,0,1,[[118,1,1,0,1]]]],[3660]]],["ensigns",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15052]]],["mark",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[94]]],["miracles",[2,2,[[3,1,1,0,1,[[130,1,1,0,1]]],[4,1,1,1,2,[[163,1,1,1,2]]]],[4130,5211]]],["sign",[33,32,[[1,6,5,0,5,[[53,2,1,0,1],[57,1,1,1,2],[62,1,1,2,3],[80,2,2,3,5]]],[3,1,1,5,6,[[132,1,1,5,6]]],[4,5,5,6,11,[[158,1,1,6,7],[163,1,1,7,8],[165,2,2,8,10],[180,1,1,10,11]]],[5,1,1,11,12,[[190,1,1,11,12]]],[6,1,1,12,13,[[216,1,1,12,13]]],[8,2,2,13,15,[[237,1,1,13,14],[249,1,1,14,15]]],[11,3,3,15,18,[[331,1,1,15,16],[332,2,2,16,18]]],[22,9,9,18,27,[[685,2,2,18,20],[697,1,1,20,21],[698,1,1,21,22],[715,1,1,22,23],[716,2,2,23,25],[733,1,1,25,26],[744,1,1,26,27]]],[23,1,1,27,28,[[788,1,1,27,28]]],[25,4,4,28,32,[[805,1,1,28,29],[815,1,1,29,30],[821,2,2,30,32]]]],[1609,1733,1876,2433,2437,4232,5094,5226,5273,5274,5657,5916,6671,7274,7518,10090,10106,10107,17793,17796,18024,18032,18382,18397,18412,18753,18941,20039,20532,20739,20907,20915]]],["signs",[25,25,[[0,1,1,0,1,[[0,1,1,0,1]]],[1,7,7,1,8,[[53,4,4,1,5],[56,1,1,5,6],[59,2,2,6,8]]],[3,1,1,8,9,[[130,1,1,8,9]]],[4,6,6,9,15,[[156,1,1,9,10],[158,1,1,10,11],[159,1,1,11,12],[178,1,1,12,13],[181,1,1,13,14],[186,1,1,14,15]]],[5,1,1,15,16,[[210,1,1,15,16]]],[8,2,2,16,18,[[245,2,2,16,18]]],[15,1,1,18,19,[[421,1,1,18,19]]],[18,3,3,19,22,[[551,2,2,19,21],[555,1,1,21,22]]],[22,1,1,22,23,[[686,1,1,22,23]]],[23,2,2,23,25,[[776,2,2,23,25]]]],[13,1610,1618,1629,1631,1688,1778,1779,4119,5038,5108,5130,5574,5682,5850,6493,7425,7427,12521,15052,15057,15156,17825,19751,19752]]],["token",[10,10,[[0,4,4,0,4,[[8,3,3,0,3],[16,1,1,3,4]]],[1,3,3,4,7,[[52,1,1,4,5],[61,1,1,5,6],[62,1,1,6,7]]],[3,1,1,7,8,[[133,1,1,7,8]]],[5,1,1,8,9,[[188,1,1,8,9]]],[18,1,1,9,10,[[563,1,1,9,10]]]],[217,218,222,408,1591,1829,1883,4254,5881,15301]]],["tokens",[3,3,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,1,1,1,2,[[612,1,1,1,2]]],[22,1,1,2,3,[[722,1,1,2,3]]]],[13384,16184,18558]]]]},{"k":"H227","v":[["*",[141,133,[[0,6,6,0,6,[[3,1,1,0,1],[11,1,1,1,2],[12,1,1,2,3],[23,1,1,3,4],[38,1,1,4,5],[48,1,1,5,6]]],[1,8,8,6,14,[[53,2,2,6,8],[54,1,1,8,9],[58,1,1,9,10],[61,2,2,10,12],[64,2,2,12,14]]],[2,4,2,14,16,[[115,4,2,14,16]]],[3,1,1,16,17,[[137,1,1,16,17]]],[4,2,2,17,19,[[156,1,1,17,18],[181,1,1,18,19]]],[5,10,9,19,28,[[187,2,1,19,20],[194,1,1,20,21],[196,2,2,21,23],[200,2,2,23,25],[206,1,1,25,26],[208,2,2,26,28]]],[6,7,7,28,35,[[215,5,5,28,33],[218,1,1,33,34],[223,1,1,34,35]]],[7,1,1,35,36,[[233,1,1,35,36]]],[8,2,2,36,38,[[241,1,1,36,37],[255,1,1,37,38]]],[9,9,7,38,45,[[268,1,1,38,39],[271,2,1,39,40],[281,1,1,40,41],[285,1,1,41,42],[287,2,2,42,44],[289,2,1,44,45]]],[10,8,8,45,53,[[293,1,1,45,46],[298,2,2,46,48],[299,2,2,48,50],[301,1,1,50,51],[306,1,1,51,52],[312,1,1,52,53]]],[11,7,7,53,60,[[317,1,1,53,54],[320,1,1,54,55],[324,1,1,55,56],[325,1,1,56,57],[326,1,1,57,58],[327,1,1,58,59],[328,1,1,59,60]]],[12,8,7,60,67,[[348,2,1,60,61],[351,1,1,61,62],[352,1,1,62,63],[353,2,2,63,65],[357,1,1,65,66],[359,1,1,66,67]]],[13,5,5,67,72,[[371,1,1,67,68],[372,1,1,68,69],[374,2,2,69,71],[390,1,1,71,72]]],[17,8,8,72,80,[[438,1,1,72,73],[444,1,1,73,74],[446,1,1,74,75],[448,1,1,75,76],[457,1,1,76,77],[463,1,1,77,78],[468,1,1,78,79],[473,1,1,79,80]]],[18,15,13,80,93,[[479,1,1,80,81],[496,1,1,81,82],[517,1,1,82,83],[528,2,1,83,84],[533,1,1,84,85],[546,1,1,85,86],[553,1,1,86,87],[566,1,1,87,88],[570,1,1,88,89],[573,1,1,89,90],[596,2,2,90,92],[603,2,1,92,93]]],[19,6,6,93,99,[[628,1,1,93,94],[629,2,2,94,96],[630,1,1,96,97],[635,1,1,97,98],[647,1,1,98,99]]],[20,1,1,99,100,[[660,1,1,99,100]]],[21,1,1,100,101,[[678,1,1,100,101]]],[22,16,16,101,117,[[692,1,1,101,102],[694,1,1,102,103],[711,1,1,103,104],[713,2,2,104,106],[719,1,1,106,107],[722,1,1,107,108],[723,1,1,108,109],[726,4,4,109,113],[736,3,3,113,116],[738,1,1,116,117]]],[23,9,9,117,126,[[755,2,2,117,119],[766,3,3,119,122],[775,1,1,122,123],[776,1,1,123,124],[783,1,1,124,125],[788,1,1,125,126]]],[25,1,1,126,127,[[833,1,1,126,127]]],[27,1,1,127,128,[[863,1,1,127,128]]],[32,1,1,128,129,[[895,1,1,128,129]]],[34,1,1,129,130,[[903,1,1,129,130]]],[35,2,2,130,132,[[908,2,2,130,132]]],[38,1,1,132,133,[[927,1,1,132,133]]]],[105,304,325,632,1154,1477,1611,1627,1655,1766,1860,1864,1921,1935,3558,3565,4357,5045,5699,5859,6032,6076,6097,6197,6198,6378,6427,6457,6631,6634,6636,6642,6645,6722,6905,7156,7334,7742,8076,8156,8423,8517,8597,8598,8667,8832,8986,8997,9062,9075,9115,9304,9529,9650,9749,9867,9890,9904,9941,9968,10689,10789,10793,10827,10853,10930,10977,11270,11283,11358,11363,11694,12917,13082,13123,13173,13415,13531,13666,13814,13950,14181,14532,14710,14764,14939,15088,15345,15428,15477,15904,15990,16117,16428,16438,16442,16478,16624,16968,17348,17650,17936,17982,18302,18325,18326,18452,18541,18582,18617,18619,18621,18622,18794,18795,18800,18826,19241,19244,19469,19470,19476,19704,19733,19932,20028,21262,22112,22612,22742,22829,22831,23136]]],["+",[19,19,[[0,1,1,0,1,[[38,1,1,0,1]]],[1,3,3,1,4,[[53,1,1,1,2],[54,1,1,2,3],[58,1,1,3,4]]],[5,1,1,4,5,[[200,1,1,4,5]]],[7,1,1,5,6,[[233,1,1,5,6]]],[9,1,1,6,7,[[281,1,1,6,7]]],[18,2,2,7,9,[[553,1,1,7,8],[570,1,1,8,9]]],[19,1,1,9,10,[[635,1,1,9,10]]],[22,8,8,10,18,[[692,1,1,10,11],[694,1,1,11,12],[722,1,1,12,13],[723,1,1,13,14],[726,4,4,14,18]]],[23,1,1,18,19,[[788,1,1,18,19]]]],[1154,1611,1655,1766,6197,7156,8423,15088,15428,16624,17936,17982,18541,18582,18617,18619,18621,18622,20028]]],["Then",[59,59,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,2,2,1,3,[[64,2,2,1,3]]],[2,1,1,3,4,[[115,1,1,3,4]]],[3,1,1,4,5,[[137,1,1,4,5]]],[4,1,1,5,6,[[156,1,1,5,6]]],[5,4,4,6,10,[[194,1,1,6,7],[196,2,2,7,9],[208,1,1,9,10]]],[6,4,4,10,14,[[215,2,2,10,12],[218,1,1,12,13],[223,1,1,13,14]]],[9,1,1,14,15,[[287,1,1,14,15]]],[10,6,6,15,21,[[293,1,1,15,16],[298,2,2,16,18],[301,1,1,18,19],[306,1,1,19,20],[312,1,1,20,21]]],[11,5,5,21,26,[[320,1,1,21,22],[324,1,1,22,23],[326,1,1,23,24],[327,1,1,24,25],[328,1,1,25,26]]],[12,4,4,26,30,[[352,1,1,26,27],[353,2,2,27,29],[359,1,1,29,30]]],[13,5,5,30,35,[[371,1,1,30,31],[372,1,1,31,32],[374,2,2,32,34],[390,1,1,34,35]]],[17,2,2,35,37,[[463,1,1,35,36],[468,1,1,36,37]]],[18,6,6,37,43,[[479,1,1,37,38],[517,1,1,38,39],[528,1,1,39,40],[566,1,1,40,41],[596,1,1,41,42],[603,1,1,42,43]]],[19,4,4,43,47,[[628,1,1,43,44],[629,2,2,44,46],[630,1,1,46,47]]],[22,6,6,47,53,[[713,2,2,47,49],[736,3,3,49,52],[738,1,1,52,53]]],[23,2,2,53,55,[[775,1,1,53,54],[783,1,1,54,55]]],[25,1,1,55,56,[[833,1,1,55,56]]],[32,1,1,56,57,[[895,1,1,56,57]]],[34,1,1,57,58,[[903,1,1,57,58]]],[38,1,1,58,59,[[927,1,1,58,59]]]],[632,1921,1935,3558,4357,5045,6032,6076,6097,6427,6636,6645,6722,6905,8597,8832,8986,8997,9115,9304,9529,9749,9867,9904,9941,9968,10793,10827,10853,10977,11270,11283,11358,11363,11694,13531,13666,13950,14532,14710,15345,15904,16117,16428,16438,16442,16478,18325,18326,18794,18795,18800,18826,19704,19932,21262,22612,22742,23136]]],["Yet",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13082]]],["for",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9650]]],["now",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6457]]],["then",[59,54,[[0,4,4,0,4,[[3,1,1,0,1],[11,1,1,1,2],[12,1,1,2,3],[48,1,1,3,4]]],[1,3,3,4,7,[[53,1,1,4,5],[61,2,2,5,7]]],[2,3,2,7,9,[[115,3,2,7,9]]],[4,1,1,9,10,[[181,1,1,9,10]]],[5,4,3,10,13,[[187,2,1,10,11],[200,1,1,11,12],[206,1,1,12,13]]],[6,3,3,13,16,[[215,3,3,13,16]]],[8,2,2,16,18,[[241,1,1,16,17],[255,1,1,17,18]]],[9,7,5,18,23,[[268,1,1,18,19],[271,2,1,19,20],[285,1,1,20,21],[287,1,1,21,22],[289,2,1,22,23]]],[10,2,2,23,25,[[299,2,2,23,25]]],[11,1,1,25,26,[[325,1,1,25,26]]],[12,3,2,26,28,[[348,2,1,26,27],[351,1,1,27,28]]],[17,5,5,28,33,[[438,1,1,28,29],[446,1,1,29,30],[448,1,1,30,31],[457,1,1,31,32],[473,1,1,32,33]]],[18,7,7,33,40,[[496,1,1,33,34],[528,1,1,34,35],[533,1,1,35,36],[546,1,1,36,37],[573,1,1,37,38],[596,1,1,38,39],[603,1,1,39,40]]],[19,1,1,40,41,[[647,1,1,40,41]]],[20,1,1,41,42,[[660,1,1,41,42]]],[21,1,1,42,43,[[678,1,1,42,43]]],[22,2,2,43,45,[[711,1,1,43,44],[719,1,1,44,45]]],[23,6,6,45,51,[[755,2,2,45,47],[766,3,3,47,50],[776,1,1,50,51]]],[27,1,1,51,52,[[863,1,1,51,52]]],[35,2,2,52,54,[[908,2,2,52,54]]]],[105,304,325,1477,1627,1860,1864,3558,3565,5699,5859,6198,6378,6631,6634,6642,7334,7742,8076,8156,8517,8598,8667,9062,9075,9890,10689,10789,12917,13123,13173,13415,13814,14181,14710,14764,14939,15477,15990,16117,16968,17348,17650,18302,18452,19241,19244,19469,19470,19476,19733,22112,22829,22831]]],["time",[1,1,[[12,1,1,0,1,[[357,1,1,0,1]]]],[10930]]]]},{"k":"H228","v":[["*",[3,2,[[26,3,2,0,2,[[852,3,2,0,2]]]],[21826,21829]]],["heat",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21826]]],["heated",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21826]]],["hot",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21829]]]]},{"k":"H229","v":[["Ezbai",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10710]]]]},{"k":"H230","v":[["gone",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21763,21766]]]]},{"k":"H231","v":[["hyssop",[10,10,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,5,5,1,6,[[103,5,5,1,6]]],[3,2,2,6,8,[[135,2,2,6,8]]],[10,1,1,8,9,[[294,1,1,8,9]]],[18,1,1,9,10,[[528,1,1,9,10]]]],[1838,3115,3117,3160,3162,3163,4295,4307,8877,14698]]]]},{"k":"H232","v":[["*",[14,12,[[11,1,1,0,1,[[313,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[22,3,2,2,4,[[683,1,1,2,3],[689,2,1,3,4]]],[23,8,7,4,11,[[757,8,7,4,11]]],[25,1,1,11,12,[[824,1,1,11,12]]]],[9541,13146,17766,17889,19267,19268,19270,19272,19273,19276,19277,21022]]],["girdle",[13,11,[[11,1,1,0,1,[[313,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[22,3,2,2,4,[[683,1,1,2,3],[689,2,1,3,4]]],[23,8,7,4,11,[[757,8,7,4,11]]]],[9541,13146,17766,17889,19267,19268,19270,19272,19273,19276,19277]]],["girdles",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21022]]]]},{"k":"H233","v":[["Then",[3,3,[[18,3,3,0,3,[[601,3,3,0,3]]]],[16105,16106,16107]]]]},{"k":"H234","v":[["memorial",[7,7,[[2,6,6,0,6,[[91,3,3,0,3],[94,1,1,3,4],[95,1,1,4,5],[113,1,1,5,6]]],[3,1,1,6,7,[[121,1,1,6,7]]]],[2764,2771,2778,2842,2864,3453,3818]]]]},{"k":"H235","v":[["*",[6,6,[[4,1,1,0,1,[[184,1,1,0,1]]],[8,1,1,1,2,[[244,1,1,1,2]]],[17,1,1,2,3,[[449,1,1,2,3]]],[19,1,1,3,4,[[647,1,1,3,4]]],[23,1,1,4,5,[[746,1,1,4,5]]],[25,1,1,5,6,[[828,1,1,5,6]]]],[5794,7398,13192,16968,19001,21140]]],["fail",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13192]]],["fro",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21140]]],["gaddest",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[19001]]],["gone",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5794]]],["spent",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7398]]],["way",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16968]]]]},{"k":"H236","v":[["*",[7,7,[[14,3,3,0,3,[[406,1,1,0,1],[407,2,2,1,3]]],[26,4,4,3,7,[[851,2,2,3,5],[855,2,2,5,7]]]],[12133,12142,12149,21775,21782,21923,21924]]],["go",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12149]]],["up",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12133]]],["went",[5,5,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,4,4,1,5,[[851,2,2,1,3],[855,2,2,3,5]]]],[12142,21775,21782,21923,21924]]]]},{"k":"H237","v":[["Ezel",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7749]]]]},{"k":"H238","v":[["*",[42,42,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[3,1,1,2,3,[[139,1,1,2,3]]],[4,2,2,3,5,[[153,1,1,3,4],[184,1,1,4,5]]],[6,1,1,5,6,[[215,1,1,5,6]]],[13,1,1,6,7,[[390,1,1,6,7]]],[15,1,1,7,8,[[421,1,1,7,8]]],[17,6,6,8,14,[[444,1,1,8,9],[467,1,1,9,10],[468,1,1,10,11],[469,2,2,11,13],[472,1,1,13,14]]],[18,15,15,14,29,[[482,1,1,14,15],[494,1,1,15,16],[516,1,1,16,17],[526,1,1,17,18],[531,1,1,18,19],[532,1,1,19,20],[554,1,1,20,21],[555,1,1,21,22],[557,1,1,22,23],[561,1,1,23,24],[563,1,1,24,25],[612,1,1,25,26],[617,1,1,26,27],[618,1,1,27,28],[620,1,1,28,29]]],[19,1,1,29,30,[[644,1,1,29,30]]],[20,1,1,30,31,[[670,1,1,30,31]]],[22,8,8,31,39,[[679,2,2,31,33],[686,1,1,33,34],[706,1,1,34,35],[710,1,1,35,36],[720,1,1,36,37],[729,1,1,37,38],[742,1,1,38,39]]],[23,1,1,39,40,[[757,1,1,39,40]]],[27,1,1,40,41,[[866,1,1,40,41]]],[28,1,1,41,42,[[876,1,1,41,42]]]],[102,1946,4434,4937,5759,6626,11696,12541,13067,13639,13651,13685,13699,13783,13974,14104,14524,14649,14727,14733,15094,15114,15199,15267,15290,16192,16269,16277,16294,16877,17532,17656,17664,17816,18187,18268,18503,18677,18889,19281,22153,22293]]],["Hearken",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13783]]],["ear",[33,33,[[1,1,1,0,1,[[64,1,1,0,1]]],[4,2,2,1,3,[[153,1,1,1,2],[184,1,1,2,3]]],[6,1,1,3,4,[[215,1,1,3,4]]],[13,1,1,4,5,[[390,1,1,4,5]]],[15,1,1,5,6,[[421,1,1,5,6]]],[17,2,2,6,8,[[467,1,1,6,7],[469,1,1,7,8]]],[18,13,13,8,21,[[482,1,1,8,9],[494,1,1,9,10],[516,1,1,10,11],[526,1,1,11,12],[531,1,1,12,13],[532,1,1,13,14],[554,1,1,14,15],[555,1,1,15,16],[557,1,1,16,17],[561,1,1,17,18],[563,1,1,18,19],[618,1,1,19,20],[620,1,1,20,21]]],[19,1,1,21,22,[[644,1,1,21,22]]],[22,8,8,22,30,[[679,2,2,22,24],[686,1,1,24,25],[706,1,1,25,26],[710,1,1,26,27],[720,1,1,27,28],[729,1,1,28,29],[742,1,1,29,30]]],[23,1,1,30,31,[[757,1,1,30,31]]],[27,1,1,31,32,[[866,1,1,31,32]]],[28,1,1,32,33,[[876,1,1,32,33]]]],[1946,4937,5759,6626,11696,12541,13639,13685,13974,14104,14524,14649,14727,14733,15094,15114,15199,15267,15290,16277,16294,16877,17656,17664,17816,18187,18268,18503,18677,18889,19281,22153,22293]]],["hear",[2,2,[[18,2,2,0,2,[[612,1,1,0,1],[617,1,1,1,2]]]],[16192,16269]]],["hearken",[4,4,[[0,1,1,0,1,[[3,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[17,2,2,2,4,[[468,1,1,2,3],[469,1,1,3,4]]]],[102,4434,13651,13699]]],["hearkened",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13067]]],["heed",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17532]]]]},{"k":"H239","v":[]},{"k":"H240","v":[["weapon",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5513]]]]},{"k":"H241","v":[["*",[187,179,[[0,7,7,0,7,[[19,1,1,0,1],[22,3,3,1,4],[34,1,1,4,5],[43,1,1,5,6],[49,1,1,6,7]]],[1,9,8,7,15,[[59,1,1,7,8],[60,1,1,8,9],[66,1,1,9,10],[70,1,1,10,11],[73,1,1,11,12],[78,2,1,12,13],[81,2,2,13,15]]],[2,6,6,15,21,[[97,2,2,15,17],[103,4,4,17,21]]],[3,3,3,21,24,[[127,2,2,21,23],[130,1,1,23,24]]],[4,7,7,24,31,[[157,1,1,24,25],[167,1,1,25,26],[181,1,1,26,27],[183,3,3,27,30],[184,1,1,30,31]]],[5,1,1,31,32,[[206,1,1,31,32]]],[6,4,4,32,36,[[217,1,1,32,33],[219,2,2,33,35],[227,1,1,35,36]]],[7,1,1,36,37,[[235,1,1,36,37]]],[8,13,12,37,49,[[238,1,1,37,38],[243,1,1,38,39],[244,1,1,39,40],[246,1,1,40,41],[250,1,1,41,42],[253,1,1,42,43],[255,3,3,43,46],[257,3,2,46,48],[260,1,1,48,49]]],[9,7,6,49,55,[[269,2,1,49,50],[273,2,2,50,52],[284,1,1,52,53],[288,2,2,53,55]]],[11,5,5,55,60,[[330,1,1,55,56],[331,2,2,56,58],[333,1,1,58,59],[335,1,1,59,60]]],[12,3,3,60,63,[[354,2,2,60,62],[365,1,1,62,63]]],[13,3,3,63,66,[[372,1,1,63,64],[373,1,1,64,65],[400,1,1,65,66]]],[15,4,4,66,70,[[413,2,2,66,68],[420,1,1,68,69],[425,1,1,69,70]]],[17,13,13,70,83,[[439,1,1,70,71],[447,1,1,71,72],[448,2,2,72,74],[450,1,1,74,75],[463,1,1,75,76],[464,1,1,76,77],[468,2,2,77,79],[469,1,1,79,80],[471,2,2,80,82],[477,1,1,82,83]]],[18,22,22,83,105,[[487,1,1,83,84],[494,1,1,84,85],[495,2,2,85,87],[508,1,1,87,88],[511,1,1,88,89],[517,1,1,89,90],[521,1,1,90,91],[522,1,1,91,92],[526,1,1,92,93],[535,1,1,93,94],[548,1,1,94,95],[555,1,1,95,96],[563,1,1,96,97],[565,1,1,97,98],[569,1,1,98,99],[571,1,1,99,100],[579,1,1,100,101],[592,1,1,101,102],[593,1,1,102,103],[607,1,1,103,104],[612,1,1,104,105]]],[19,14,14,105,119,[[629,1,1,105,106],[631,1,1,106,107],[632,2,2,107,109],[642,1,1,109,110],[645,1,1,110,111],[647,1,1,111,112],[648,1,1,112,113],[649,1,1,113,114],[650,2,2,114,116],[652,1,1,116,117],[653,1,1,117,118],[655,1,1,118,119]]],[20,1,1,119,120,[[659,1,1,119,120]]],[22,20,19,120,139,[[683,1,1,120,121],[684,2,1,121,122],[689,1,1,122,123],[700,1,1,123,124],[708,1,1,124,125],[710,1,1,125,126],[711,1,1,126,127],[713,1,1,127,128],[714,1,1,128,129],[715,2,2,129,131],[720,1,1,131,132],[721,1,1,132,133],[726,1,1,133,134],[727,1,1,134,135],[728,2,2,135,137],[733,1,1,137,138],[737,1,1,138,139]]],[23,28,24,139,163,[[746,1,1,139,140],[749,1,1,140,141],[750,1,1,141,142],[751,2,2,142,144],[753,1,1,144,145],[755,1,1,145,146],[761,1,1,146,147],[763,1,1,147,148],[769,1,1,148,149],[770,2,2,149,151],[772,2,1,151,152],[773,1,1,152,153],[778,1,1,153,154],[779,1,1,154,155],[780,10,7,155,162],[788,1,1,162,163]]],[24,1,1,163,164,[[799,1,1,163,164]]],[25,11,11,164,175,[[804,1,1,164,165],[809,1,1,165,166],[810,2,2,166,168],[811,1,1,168,169],[813,1,1,169,170],[817,1,1,170,171],[824,1,1,171,172],[825,1,1,172,173],[841,1,1,173,174],[845,1,1,174,175]]],[26,1,1,175,176,[[858,1,1,175,176]]],[29,1,1,176,177,[[881,1,1,176,177]]],[32,1,1,177,178,[[899,1,1,177,178]]],[37,1,1,178,179,[[917,1,1,178,179]]]],[503,581,584,587,1015,1342,1510,1779,1808,1997,2083,2184,2356,2440,2441,2940,2941,3125,3128,3136,3139,4025,4042,4136,5054,5336,5683,5739,5756,5758,5802,6376,6697,6756,6757,6982,7194,7287,7390,7406,7449,7574,7699,7732,7742,7743,7795,7804,7885,8100,8202,8207,8490,8609,8647,10050,10077,10089,10131,10167,10883,10888,11151,11322,11339,11963,12302,12307,12496,12672,12942,13139,13154,13170,13224,13526,13543,13658,13666,13686,13746,13751,13927,14058,14109,14124,14162,14333,14403,14531,14572,14607,14652,14783,14978,15114,15285,15310,15422,15440,15523,15836,15850,16142,16192,16435,16510,16518,16530,16838,16916,16966,16997,17032,17053,17056,17125,17158,17205,17323,17748,17779,17887,18066,18238,18262,18294,18325,18341,18369,18381,18500,18513,18622,18656,18666,18667,18743,18801,18967,19079,19099,19143,19145,19195,19234,19380,19410,19538,19583,19587,19625,19664,19815,19838,19848,19852,19855,19856,19857,19862,19863,20015,20410,20512,20622,20623,20627,20646,20682,20774,21032,21082,21481,21604,22006,22407,22680,22973]]],["+",[14,13,[[1,1,1,0,1,[[70,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[7,1,1,2,3,[[235,1,1,2,3]]],[8,4,3,3,6,[[255,2,2,3,5],[257,2,1,5,6]]],[9,2,2,6,8,[[273,1,1,6,7],[288,1,1,7,8]]],[11,1,1,8,9,[[335,1,1,8,9]]],[12,1,1,9,10,[[354,1,1,9,10]]],[13,1,1,10,11,[[400,1,1,10,11]]],[18,1,1,11,12,[[495,1,1,11,12]]],[25,1,1,12,13,[[845,1,1,12,13]]]],[2083,4025,7194,7742,7743,7795,8207,8647,10167,10888,11963,14162,21604]]],["audience",[7,7,[[0,3,3,0,3,[[22,3,3,0,3]]],[1,1,1,3,4,[[73,1,1,3,4]]],[8,1,1,4,5,[[260,1,1,4,5]]],[12,1,1,5,6,[[365,1,1,5,6]]],[15,1,1,6,7,[[425,1,1,6,7]]]],[581,584,587,2184,7885,11151,12672]]],["ear",[62,61,[[1,2,1,0,1,[[78,2,1,0,1]]],[2,6,6,1,7,[[97,2,2,1,3],[103,4,4,3,7]]],[4,1,1,7,8,[[167,1,1,7,8]]],[8,1,1,8,9,[[244,1,1,8,9]]],[11,1,1,9,10,[[331,1,1,9,10]]],[15,2,2,10,12,[[413,2,2,10,12]]],[17,7,7,12,19,[[439,1,1,12,13],[447,1,1,13,14],[448,1,1,14,15],[464,1,1,15,16],[469,1,1,16,17],[471,1,1,17,18],[477,1,1,18,19]]],[18,12,12,19,31,[[487,1,1,19,20],[494,1,1,20,21],[508,1,1,21,22],[522,1,1,22,23],[526,1,1,23,24],[535,1,1,24,25],[548,1,1,25,26],[563,1,1,26,27],[565,1,1,27,28],[571,1,1,28,29],[579,1,1,29,30],[593,1,1,30,31]]],[19,10,10,31,41,[[629,1,1,31,32],[631,1,1,32,33],[632,2,2,33,35],[642,1,1,35,36],[645,1,1,36,37],[647,1,1,37,38],[649,1,1,38,39],[652,1,1,39,40],[655,1,1,40,41]]],[20,1,1,41,42,[[659,1,1,41,42]]],[22,6,6,42,48,[[715,1,1,42,43],[726,1,1,43,44],[728,2,2,44,46],[733,1,1,46,47],[737,1,1,47,48]]],[23,10,10,48,58,[[750,1,1,48,49],[751,2,2,49,51],[753,1,1,51,52],[755,1,1,52,53],[761,1,1,53,54],[769,1,1,54,55],[778,1,1,55,56],[779,1,1,56,57],[788,1,1,57,58]]],[24,1,1,58,59,[[799,1,1,58,59]]],[26,1,1,59,60,[[858,1,1,59,60]]],[29,1,1,60,61,[[881,1,1,60,61]]]],[2356,2940,2941,3125,3128,3136,3139,5336,7406,10077,12302,12307,12942,13139,13154,13543,13686,13746,13927,14058,14109,14333,14607,14652,14783,14978,15285,15310,15440,15523,15850,16435,16510,16518,16530,16838,16916,16966,17032,17125,17205,17323,18369,18622,18666,18667,18743,18801,19099,19143,19145,19195,19234,19380,19538,19815,19838,20015,20410,22006,22407]]],["ears",[97,91,[[0,4,4,0,4,[[19,1,1,0,1],[34,1,1,1,2],[43,1,1,2,3],[49,1,1,3,4]]],[1,5,5,4,9,[[59,1,1,4,5],[60,1,1,5,6],[66,1,1,6,7],[81,2,2,7,9]]],[3,2,2,9,11,[[127,1,1,9,10],[130,1,1,10,11]]],[4,5,5,11,16,[[157,1,1,11,12],[181,1,1,12,13],[183,2,2,13,15],[184,1,1,15,16]]],[5,1,1,16,17,[[206,1,1,16,17]]],[6,4,4,17,21,[[217,1,1,17,18],[219,2,2,18,20],[227,1,1,20,21]]],[8,5,5,21,26,[[238,1,1,21,22],[243,1,1,22,23],[246,1,1,23,24],[250,1,1,24,25],[253,1,1,25,26]]],[9,4,3,26,29,[[269,2,1,26,27],[273,1,1,27,28],[288,1,1,28,29]]],[11,3,3,29,32,[[330,1,1,29,30],[331,1,1,30,31],[333,1,1,31,32]]],[12,1,1,32,33,[[354,1,1,32,33]]],[13,2,2,33,35,[[372,1,1,33,34],[373,1,1,34,35]]],[15,1,1,35,36,[[420,1,1,35,36]]],[17,5,5,36,41,[[448,1,1,36,37],[450,1,1,37,38],[463,1,1,38,39],[468,1,1,39,40],[471,1,1,40,41]]],[18,9,9,41,50,[[495,1,1,41,42],[511,1,1,42,43],[517,1,1,43,44],[521,1,1,44,45],[555,1,1,45,46],[569,1,1,46,47],[592,1,1,47,48],[607,1,1,48,49],[612,1,1,49,50]]],[19,4,4,50,54,[[648,1,1,50,51],[650,2,2,51,53],[653,1,1,53,54]]],[22,14,13,54,67,[[683,1,1,54,55],[684,2,1,55,56],[689,1,1,56,57],[700,1,1,57,58],[708,1,1,58,59],[710,1,1,59,60],[711,1,1,60,61],[713,1,1,61,62],[714,1,1,62,63],[715,1,1,63,64],[720,1,1,64,65],[721,1,1,65,66],[727,1,1,66,67]]],[23,18,14,67,81,[[746,1,1,67,68],[749,1,1,68,69],[763,1,1,69,70],[770,2,2,70,72],[772,2,1,72,73],[773,1,1,73,74],[780,10,7,74,81]]],[25,8,8,81,89,[[804,1,1,81,82],[809,1,1,82,83],[810,1,1,83,84],[813,1,1,84,85],[817,1,1,85,86],[824,1,1,86,87],[825,1,1,87,88],[841,1,1,88,89]]],[32,1,1,89,90,[[899,1,1,89,90]]],[37,1,1,90,91,[[917,1,1,90,91]]]],[503,1015,1342,1510,1779,1808,1997,2440,2441,4042,4136,5054,5683,5756,5758,5802,6376,6697,6756,6757,6982,7287,7390,7449,7574,7699,8100,8202,8609,10050,10089,10131,10883,11322,11339,12496,13170,13224,13526,13666,13751,14124,14403,14531,14572,15114,15422,15836,16142,16192,16997,17053,17056,17158,17748,17779,17887,18066,18238,18262,18294,18325,18341,18381,18500,18513,18656,18967,19079,19410,19583,19587,19625,19664,19848,19852,19855,19856,19857,19862,19863,20512,20622,20623,20682,20774,21032,21082,21481,22680,22973]]],["hearing",[5,5,[[4,1,1,0,1,[[183,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[17,1,1,2,3,[[468,1,1,2,3]]],[25,2,2,3,5,[[810,1,1,3,4],[811,1,1,4,5]]]],[5739,8490,13658,20627,20646]]],["me",[2,2,[[8,2,2,0,2,[[255,1,1,0,1],[257,1,1,1,2]]]],[7732,7804]]]]},{"k":"H242","v":[["Uzzensherah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10559]]]]},{"k":"H243","v":[["Aznothtabor",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6355]]]]},{"k":"H244","v":[["*",[2,1,[[3,2,1,0,1,[[142,2,1,0,1]]]],[4505]]],["Ozni",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4505]]],["Oznites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4505]]]]},{"k":"H245","v":[["Azaniah",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12558]]]]},{"k":"H246","v":[["chains",[2,2,[[23,2,2,0,2,[[784,2,2,0,2]]]],[19942,19945]]]]},{"k":"H247","v":[["*",[16,15,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[11,1,1,2,3,[[313,1,1,2,3]]],[17,3,3,3,6,[[465,1,1,3,4],[473,1,1,4,5],[475,1,1,5,6]]],[18,5,5,6,11,[[495,2,2,6,8],[507,1,1,8,9],[542,1,1,9,10],[570,1,1,10,11]]],[22,4,3,11,14,[[686,2,1,11,12],[723,1,1,12,13],[728,1,1,13,14]]],[23,1,1,14,15,[[745,1,1,14,15]]]],[7244,8642,9541,13575,13796,13871,14150,14157,14330,14866,15427,17816,18566,18673,18963]]],["about",[2,2,[[17,1,1,0,1,[[465,1,1,0,1]]],[22,1,1,1,2,[[728,1,1,1,2]]]],[13575,18673]]],["girded",[6,6,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,3,3,2,5,[[495,1,1,2,3],[507,1,1,3,4],[542,1,1,4,5]]],[22,1,1,5,6,[[723,1,1,5,6]]]],[7244,8642,14157,14330,14866,18566]]],["girdeth",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14150]]],["girt",[1,1,[[11,1,1,0,1,[[313,1,1,0,1]]]],[9541]]],["himself",[1,1,[[18,1,1,0,1,[[570,1,1,0,1]]]],[15427]]],["up",[3,3,[[17,2,2,0,2,[[473,1,1,0,1],[475,1,1,1,2]]],[23,1,1,2,3,[[745,1,1,2,3]]]],[13796,13871,18963]]],["yourselves",[2,1,[[22,2,1,0,1,[[686,2,1,0,1]]]],[17816]]]]},{"k":"H248","v":[["arm",[2,2,[[17,1,1,0,1,[[466,1,1,0,1]]],[23,1,1,1,2,[[776,1,1,1,2]]]],[13610,19752]]]]},{"k":"H249","v":[["*",[17,17,[[1,3,3,0,3,[[61,3,3,0,3]]],[2,7,7,3,10,[[105,1,1,3,4],[106,1,1,4,5],[107,1,1,5,6],[108,1,1,6,7],[112,1,1,7,8],[113,2,2,8,10]]],[3,4,4,10,14,[[125,1,1,10,11],[131,3,3,11,14]]],[5,1,1,14,15,[[194,1,1,14,15]]],[18,1,1,15,16,[[514,1,1,15,16]]],[25,1,1,16,17,[[848,1,1,16,17]]]],[1835,1864,1865,3230,3250,3277,3315,3444,3462,3468,3979,4166,4182,4183,6035,14485,21701]]],["+",[2,2,[[2,1,1,0,1,[[108,1,1,0,1]]],[3,1,1,1,2,[[131,1,1,1,2]]]],[3315,4183]]],["born",[4,4,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[3,2,2,2,4,[[125,1,1,2,3],[131,1,1,3,4]]]],[1835,3444,3979,4182]]],["country",[5,5,[[2,3,3,0,3,[[105,1,1,0,1],[106,1,1,1,2],[113,1,1,2,3]]],[3,1,1,3,4,[[131,1,1,3,4]]],[25,1,1,4,5,[[848,1,1,4,5]]]],[3230,3250,3468,4166,21701]]],["homeborn",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1865]]],["in",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1864]]],["land",[1,1,[[2,1,1,0,1,[[113,1,1,0,1]]]],[3462]]],["nation",[1,1,[[2,1,1,0,1,[[107,1,1,0,1]]]],[3277]]],["them",[1,1,[[5,1,1,0,1,[[194,1,1,0,1]]]],[6035]]],["tree",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14485]]]]},{"k":"H250","v":[["Ezrahite",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8875]]]]},{"k":"H251","v":[["*",[629,572,[[0,178,155,0,155,[[3,8,6,0,6],[8,3,3,6,9],[9,2,2,9,11],[11,1,1,11,12],[12,2,2,12,14],[13,5,4,14,18],[15,1,1,18,19],[18,1,1,19,20],[19,3,3,20,23],[21,3,3,23,26],[23,6,6,26,32],[24,2,2,32,34],[25,1,1,34,35],[26,13,13,35,48],[27,2,2,48,50],[28,6,4,50,54],[30,7,6,54,60],[31,5,5,60,65],[32,2,2,65,67],[33,2,2,67,69],[34,2,2,69,71],[35,1,1,71,72],[36,21,17,72,89],[37,8,6,89,95],[41,20,16,95,111],[42,11,9,111,120],[43,7,6,120,126],[44,12,9,126,135],[45,2,1,135,136],[46,7,7,136,143],[47,3,3,143,146],[48,3,3,146,149],[49,6,6,149,155]]],[1,17,16,155,171,[[50,1,1,155,156],[51,2,1,156,157],[53,2,2,157,159],[56,2,2,159,161],[59,1,1,161,162],[65,1,1,162,163],[74,1,1,163,164],[77,4,4,164,168],[81,2,2,168,170],[86,1,1,170,171]]],[2,23,19,171,190,[[96,1,1,171,172],[99,2,2,172,174],[105,1,1,174,175],[107,3,2,175,177],[108,1,1,177,178],[109,2,1,178,179],[110,2,2,179,181],[114,10,8,181,189],[115,1,1,189,190]]],[3,19,18,190,208,[[122,1,1,190,191],[124,1,1,191,192],[130,1,1,192,193],[132,1,1,193,194],[134,2,2,194,196],[136,3,3,196,199],[141,1,1,199,200],[143,7,6,200,206],[148,1,1,206,207],[152,1,1,207,208]]],[4,48,43,208,251,[[153,3,2,208,210],[154,2,2,210,212],[155,2,2,212,214],[162,1,1,214,215],[165,1,1,215,216],[167,7,6,216,222],[169,3,2,222,224],[170,4,4,224,228],[171,2,2,228,230],[172,1,1,230,231],[174,6,4,231,235],[175,3,3,235,238],[176,2,2,238,240],[177,6,6,240,246],[180,1,1,246,247],[184,1,1,247,248],[185,3,3,248,251]]],[5,13,12,251,263,[[187,2,2,251,253],[188,2,2,253,255],[192,1,1,255,256],[200,1,1,256,257],[201,1,1,257,258],[203,2,1,258,259],[208,4,4,259,263]]],[6,29,26,263,289,[[211,3,3,263,266],[213,1,1,266,267],[218,1,1,267,268],[219,12,10,268,278],[221,1,1,278,279],[224,1,1,279,280],[226,1,1,280,281],[228,3,2,281,283],[229,1,1,283,284],[230,3,3,284,287],[231,2,2,287,289]]],[7,2,2,289,291,[[235,2,2,289,291]]],[8,12,10,291,301,[[249,1,1,291,292],[251,1,1,292,293],[252,5,4,293,297],[255,2,1,297,298],[257,1,1,298,299],[261,1,1,299,300],[265,1,1,300,301]]],[9,34,29,301,330,[[267,1,1,301,302],[268,3,3,302,305],[269,4,3,305,308],[270,2,2,308,310],[276,1,1,310,311],[279,12,9,311,320],[280,2,1,320,321],[281,1,1,321,322],[284,1,1,322,323],[285,2,2,323,325],[286,2,2,325,327],[287,1,1,327,328],[289,2,2,328,330]]],[10,11,11,330,341,[[291,2,2,330,332],[292,4,4,332,336],[299,1,1,336,337],[302,1,1,337,338],[303,1,1,338,339],[310,2,2,339,341]]],[11,5,4,341,345,[[319,1,1,341,342],[321,1,1,342,343],[322,2,1,343,344],[335,1,1,344,345]]],[12,98,95,345,440,[[338,1,1,345,346],[339,2,2,346,348],[341,3,3,348,351],[342,3,3,351,354],[343,3,3,354,357],[344,4,4,357,361],[345,2,2,361,363],[346,9,8,363,371],[348,4,4,371,375],[349,4,4,375,379],[350,1,1,379,380],[352,11,10,380,390],[353,4,4,390,394],[356,2,2,394,396],[357,2,2,396,398],[360,2,2,398,400],[361,3,2,400,402],[362,24,24,402,426],[363,11,11,426,437],[364,2,2,437,439],[365,1,1,439,440]]],[13,26,24,440,464,[[371,1,1,440,441],[377,2,2,441,443],[385,2,1,443,444],[387,3,3,444,447],[388,1,1,447,448],[394,3,3,448,451],[395,2,2,451,453],[396,2,2,453,455],[397,3,3,455,458],[401,4,4,458,462],[402,3,2,462,464]]],[14,11,9,464,473,[[405,5,3,464,467],[408,1,1,467,468],[410,4,4,468,472],[412,1,1,472,473]]],[15,28,27,473,500,[[413,1,1,473,474],[415,2,2,474,476],[416,4,4,476,480],[417,7,6,480,486],[419,1,1,486,487],[422,2,2,487,489],[423,5,5,489,494],[424,5,5,494,499],[425,1,1,499,500]]],[16,1,1,500,501,[[435,1,1,500,501]]],[17,9,9,501,510,[[436,2,2,501,503],[441,1,1,503,504],[454,1,1,504,505],[457,1,1,505,506],[465,1,1,506,507],[476,1,1,507,508],[477,2,2,508,510]]],[18,7,7,510,517,[[499,1,1,510,511],[512,1,1,511,512],[526,1,1,512,513],[527,1,1,513,514],[546,1,1,514,515],[599,1,1,515,516],[610,1,1,516,517]]],[19,9,8,517,525,[[633,1,1,517,518],[644,2,2,518,520],[645,3,3,520,523],[646,1,1,523,524],[654,2,1,524,525]]],[20,1,1,525,526,[[662,1,1,525,526]]],[21,1,1,526,527,[[678,1,1,526,527]]],[22,6,6,527,533,[[681,1,1,527,528],[687,1,1,528,529],[697,1,1,529,530],[719,1,1,530,531],[744,2,2,531,533]]],[23,16,15,533,548,[[751,1,1,533,534],[753,2,1,534,535],[756,1,1,535,536],[757,1,1,536,537],[766,1,1,537,538],[767,1,1,538,539],[769,1,1,539,540],[773,1,1,540,541],[775,1,1,541,542],[778,3,3,542,545],[779,1,1,545,546],[785,1,1,546,547],[793,1,1,547,548]]],[25,10,9,548,557,[[805,1,1,548,549],[812,2,1,549,550],[819,2,2,550,552],[825,1,1,552,553],[834,1,1,553,554],[839,1,1,554,555],[845,1,1,555,556],[848,1,1,556,557]]],[27,3,3,557,560,[[863,1,1,557,558],[873,1,1,558,559],[874,1,1,559,560]]],[28,1,1,560,561,[[877,1,1,560,561]]],[29,2,2,561,563,[[879,2,2,561,563]]],[30,2,2,563,565,[[888,2,2,563,565]]],[32,2,2,565,567,[[897,1,1,565,566],[899,1,1,566,567]]],[36,1,1,567,568,[[910,1,1,567,568]]],[37,2,2,568,570,[[917,2,2,568,570]]],[38,2,2,570,572,[[925,1,1,570,571],[926,1,1,571,572]]]],[81,87,88,89,90,100,210,227,230,255,259,303,326,329,348,349,350,352,393,464,500,508,511,567,568,570,606,618,620,639,644,646,676,684,723,733,738,750,756,757,762,764,767,768,769,770,771,772,775,778,799,805,807,810,896,898,905,910,919,927,931,934,939,941,945,963,969,991,1005,1012,1018,1046,1085,1087,1088,1091,1092,1093,1094,1095,1096,1097,1099,1100,1102,1106,1109,1110,1113,1120,1127,1128,1130,1148,1149,1255,1256,1258,1259,1260,1265,1267,1268,1271,1272,1273,1280,1284,1285,1286,1290,1293,1294,1295,1296,1297,1303,1304,1319,1320,1338,1343,1344,1347,1350,1357,1359,1361,1362,1370,1372,1373,1374,1375,1382,1417,1421,1422,1423,1425,1426,1431,1432,1457,1470,1473,1478,1481,1499,1514,1520,1521,1523,1524,1530,1538,1565,1615,1619,1686,1687,1800,1962,2215,2294,2295,2297,2334,2465,2467,2613,2889,2981,2983,3203,3265,3267,3298,3339,3347,3355,3483,3494,3504,3505,3508,3515,3516,3517,3561,3830,3965,4112,4204,4259,4263,4314,4319,4325,4477,4558,4561,4563,4564,4565,4567,4724,4881,4908,4920,4942,4946,4993,4995,5195,5278,5321,5322,5326,5328,5330,5331,5379,5384,5386,5391,5399,5402,5424,5425,5435,5471,5472,5473,5474,5507,5519,5520,5532,5539,5550,5552,5553,5554,5556,5558,5665,5808,5819,5826,5834,5865,5866,5882,5887,5972,6195,6219,6279,6429,6430,6433,6434,6512,6522,6526,6577,6738,6755,6757,6759,6772,6775,6778,6780,6785,6795,6810,6832,6912,6980,7001,7007,7047,7067,7077,7082,7108,7124,7193,7200,7511,7608,7635,7636,7640,7646,7759,7788,7911,8001,8048,8071,8075,8076,8089,8108,8111,8126,8129,8250,8320,8321,8324,8325,8327,8329,8337,8343,8349,8363,8409,8480,8523,8552,8563,8564,8601,8671,8677,8726,8727,8777,8785,8791,8792,9064,9175,9214,9440,9441,9713,9758,9806,10174,10271,10338,10348,10394,10396,10412,10430,10435,10441,10493,10498,10502,10540,10551,10557,10570,10607,10614,10621,10624,10628,10632,10634,10640,10647,10653,10693,10699,10711,10718,10722,10749,10752,10759,10762,10796,10797,10798,10799,10800,10801,10803,10807,10808,10809,10827,10857,10858,10859,10918,10922,10931,10933,11005,11015,11040,11046,11053,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11084,11085,11086,11088,11089,11099,11102,11103,11105,11107,11109,11116,11127,11145,11280,11418,11436,11586,11626,11628,11637,11652,11772,11775,11779,11806,11825,11834,11836,11866,11867,11869,11971,11972,11975,11981,11997,12003,12099,12105,12106,12171,12218,12219,12220,12225,12270,12298,12328,12345,12361,12373,12378,12382,12383,12387,12389,12390,12392,12396,12422,12559,12578,12600,12601,12602,12605,12607,12631,12632,12633,12648,12660,12684,12869,12882,12887,12993,13310,13395,13586,13905,13933,13937,14226,14424,14655,14688,14943,16097,16170,16559,16875,16890,16910,16920,16925,16932,17179,17389,17641,17713,17848,18006,18457,18927,18942,19134,19179,19255,19280,19472,19519,19560,19651,19725,19810,19815,19818,19826,19965,20137,20546,20670,20859,20867,21079,21310,21446,21624,21693,22106,22255,22281,22319,22373,22375,22520,22522,22636,22666,22877,22971,22972,23091,23113]]],["+",[32,32,[[0,5,5,0,5,[[3,2,2,0,2],[13,1,1,2,3],[42,2,2,3,5]]],[1,1,1,5,6,[[51,1,1,5,6]]],[2,3,3,6,9,[[110,1,1,6,7],[114,2,2,7,9]]],[3,1,1,9,10,[[141,1,1,9,10]]],[4,5,5,10,15,[[167,1,1,10,11],[169,1,1,11,12],[170,1,1,12,13],[176,2,2,13,15]]],[9,1,1,15,16,[[269,1,1,15,16]]],[12,4,4,16,20,[[341,1,1,16,17],[349,1,1,17,18],[363,1,1,18,19],[364,1,1,19,20]]],[13,3,3,20,23,[[385,1,1,20,21],[394,2,2,21,23]]],[14,1,1,23,24,[[410,1,1,23,24]]],[15,3,3,24,27,[[413,1,1,24,25],[416,1,1,25,26],[423,1,1,26,27]]],[17,1,1,27,28,[[454,1,1,27,28]]],[19,2,2,28,30,[[645,1,1,28,29],[654,1,1,29,30]]],[23,1,1,30,31,[[751,1,1,30,31]]],[27,1,1,31,32,[[873,1,1,31,32]]]],[81,90,352,1297,1319,1565,3355,3494,3517,4477,5326,5384,5399,5532,5539,8111,10394,10722,11089,11127,11586,11772,11775,12225,12298,12378,12605,13310,16925,17179,19134,22255]]],["another",[22,22,[[0,4,4,0,4,[[25,1,1,0,1],[36,1,1,1,2],[41,2,2,2,4]]],[1,4,4,4,8,[[59,1,1,4,5],[65,1,1,5,6],[74,1,1,6,7],[86,1,1,7,8]]],[2,4,4,8,12,[[96,1,1,8,9],[114,2,2,9,11],[115,1,1,11,12]]],[3,1,1,12,13,[[130,1,1,12,13]]],[4,1,1,13,14,[[177,1,1,13,14]]],[11,1,1,14,15,[[319,1,1,14,15]]],[17,1,1,15,16,[[476,1,1,15,16]]],[23,2,2,16,18,[[757,1,1,16,17],[769,1,1,17,18]]],[25,3,3,18,21,[[805,1,1,18,19],[825,1,1,19,20],[848,1,1,20,21]]],[28,1,1,21,22,[[877,1,1,21,22]]]],[723,1102,1273,1280,1800,1962,2215,2613,2889,3483,3515,3561,4112,5558,9713,13905,19280,19560,20546,21079,21693,22319]]],["brethren",[312,294,[[0,80,74,0,74,[[8,2,2,0,2],[12,1,1,2,3],[15,1,1,3,4],[18,1,1,4,5],[23,1,1,5,6],[24,1,1,6,7],[26,2,2,7,9],[28,1,1,9,10],[30,7,6,10,16],[33,2,2,16,18],[36,18,16,18,34],[37,2,2,34,36],[41,10,10,36,46],[43,2,2,46,48],[44,9,7,48,55],[45,2,1,55,56],[46,7,7,56,63],[47,2,2,63,65],[48,3,3,65,68],[49,6,6,68,74]]],[1,3,3,74,77,[[50,1,1,74,75],[51,1,1,75,76],[53,1,1,76,77]]],[2,3,3,77,80,[[99,2,2,77,79],[114,1,1,79,80]]],[3,12,11,80,91,[[124,1,1,80,81],[132,1,1,81,82],[134,2,2,82,84],[136,1,1,84,85],[143,6,5,85,90],[148,1,1,90,91]]],[4,16,16,91,107,[[153,2,2,91,93],[154,2,2,93,95],[155,2,2,95,97],[162,1,1,97,98],[167,1,1,98,99],[169,1,1,99,100],[170,3,3,100,103],[177,1,1,103,104],[185,3,3,104,107]]],[5,12,11,107,118,[[187,2,2,107,109],[188,2,2,109,111],[192,1,1,111,112],[200,1,1,112,113],[203,2,1,113,114],[208,4,4,114,118]]],[6,18,17,118,135,[[218,1,1,118,119],[219,8,8,119,127],[221,1,1,127,128],[224,1,1,128,129],[226,1,1,129,130],[228,3,2,130,132],[229,1,1,132,133],[230,1,1,133,134],[231,1,1,134,135]]],[7,1,1,135,136,[[235,1,1,135,136]]],[8,8,7,136,143,[[251,1,1,136,137],[252,4,3,137,140],[255,1,1,140,141],[257,1,1,141,142],[265,1,1,142,143]]],[9,5,5,143,148,[[268,1,1,143,144],[269,1,1,144,145],[281,1,1,145,146],[285,2,2,146,148]]],[10,2,2,148,150,[[291,1,1,148,149],[302,1,1,149,150]]],[11,4,3,150,153,[[321,1,1,150,151],[322,2,1,151,152],[335,1,1,152,153]]],[12,74,71,153,224,[[341,1,1,153,154],[342,3,3,154,157],[343,2,2,157,159],[344,2,2,159,161],[345,1,1,161,162],[346,9,8,162,170],[349,2,2,170,172],[350,1,1,172,173],[352,11,10,173,183],[353,4,4,183,187],[360,2,2,187,189],[361,2,1,189,190],[362,24,24,190,214],[363,9,9,214,223],[365,1,1,223,224]]],[13,18,18,224,242,[[371,1,1,224,225],[377,2,2,225,227],[385,1,1,227,228],[387,3,3,228,231],[388,1,1,231,232],[394,1,1,232,233],[395,2,2,233,235],[396,2,2,235,237],[397,1,1,237,238],[401,4,4,238,242]]],[14,10,8,242,250,[[405,5,3,242,245],[408,1,1,245,246],[410,3,3,246,249],[412,1,1,249,250]]],[15,23,22,250,272,[[415,2,2,250,252],[416,3,3,252,255],[417,6,5,255,260],[422,2,2,260,262],[423,4,4,262,266],[424,5,5,266,271],[425,1,1,271,272]]],[16,1,1,272,273,[[435,1,1,272,273]]],[17,3,3,273,276,[[441,1,1,273,274],[477,2,2,274,276]]],[18,4,4,276,280,[[499,1,1,276,277],[546,1,1,277,278],[599,1,1,278,279],[610,1,1,279,280]]],[19,3,3,280,283,[[633,1,1,280,281],[644,1,1,281,282],[646,1,1,282,283]]],[22,2,2,283,285,[[744,2,2,283,285]]],[23,5,5,285,290,[[756,1,1,285,286],[773,1,1,286,287],[779,1,1,287,288],[785,1,1,288,289],[793,1,1,289,290]]],[25,2,1,290,291,[[812,2,1,290,291]]],[27,2,2,291,293,[[863,1,1,291,292],[874,1,1,292,293]]],[32,1,1,293,294,[[897,1,1,293,294]]]],[227,230,326,393,464,618,676,756,764,799,896,898,905,910,919,927,991,1005,1085,1087,1088,1091,1092,1093,1094,1095,1096,1097,1099,1100,1106,1109,1110,1113,1120,1130,1255,1256,1258,1259,1260,1265,1271,1280,1284,1285,1338,1357,1359,1361,1362,1373,1374,1375,1382,1417,1421,1422,1423,1425,1426,1431,1432,1457,1473,1478,1481,1499,1514,1520,1521,1523,1524,1530,1538,1565,1619,2981,2983,3515,3965,4204,4259,4263,4314,4558,4561,4563,4564,4565,4724,4908,4920,4942,4946,4993,4995,5195,5326,5379,5386,5391,5402,5552,5819,5826,5834,5865,5866,5882,5887,5972,6195,6279,6429,6430,6433,6434,6738,6755,6757,6759,6778,6780,6785,6795,6810,6832,6912,6980,7001,7007,7047,7067,7124,7200,7608,7635,7636,7640,7759,7788,8001,8075,8089,8409,8523,8552,8726,9175,9758,9806,10174,10412,10430,10435,10441,10498,10502,10540,10557,10607,10621,10624,10628,10632,10634,10640,10647,10653,10752,10759,10762,10796,10797,10798,10799,10800,10801,10803,10807,10808,10809,10827,10857,10858,10859,11005,11015,11046,11053,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11084,11085,11086,11088,11102,11103,11105,11107,11109,11145,11280,11418,11436,11586,11626,11628,11637,11652,11779,11806,11825,11834,11836,11869,11971,11972,11975,11981,12099,12105,12106,12171,12218,12219,12220,12270,12328,12345,12361,12373,12382,12383,12387,12390,12392,12396,12559,12578,12600,12601,12602,12607,12631,12632,12633,12648,12660,12684,12869,12993,13933,13937,14226,14943,16097,16170,16559,16875,16932,18927,18942,19255,19651,19826,19965,20137,20670,22106,22281,22636]]],["brethren's",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5435]]],["brother",[234,221,[[0,77,71,0,71,[[3,3,2,0,2],[8,1,1,2,3],[9,1,1,3,4],[13,3,2,4,6],[19,3,3,6,9],[21,3,3,9,12],[23,4,4,12,16],[24,1,1,16,17],[26,9,9,17,26],[27,2,2,26,28],[28,5,3,28,31],[31,5,5,31,36],[32,2,2,36,38],[34,2,2,38,40],[35,1,1,40,41],[36,2,2,41,43],[37,4,4,43,47],[41,8,7,47,54],[42,9,9,54,63],[43,5,4,63,67],[44,3,3,67,70],[47,1,1,70,71]]],[1,9,9,71,80,[[53,1,1,71,72],[56,2,2,72,74],[77,4,4,74,78],[81,2,2,78,80]]],[2,9,9,80,89,[[105,1,1,80,81],[107,1,1,81,82],[108,1,1,82,83],[110,1,1,83,84],[114,5,5,84,89]]],[3,5,5,89,94,[[122,1,1,89,90],[136,2,2,90,92],[143,1,1,92,93],[152,1,1,93,94]]],[4,21,20,94,114,[[153,1,1,94,95],[165,1,1,95,96],[167,5,5,96,101],[169,1,1,101,102],[171,2,2,102,104],[174,3,2,104,106],[175,3,3,106,109],[177,3,3,109,112],[180,1,1,112,113],[184,1,1,113,114]]],[5,1,1,114,115,[[201,1,1,114,115]]],[6,11,11,115,126,[[211,3,3,115,118],[213,1,1,118,119],[219,4,4,119,123],[230,2,2,123,125],[231,1,1,125,126]]],[7,1,1,126,127,[[235,1,1,126,127]]],[8,4,4,127,131,[[249,1,1,127,128],[252,1,1,128,129],[255,1,1,129,130],[261,1,1,130,131]]],[9,28,24,131,155,[[267,1,1,131,132],[268,2,2,132,134],[269,2,2,134,136],[270,2,2,136,138],[276,1,1,138,139],[279,12,9,139,148],[280,2,1,148,149],[284,1,1,149,150],[286,2,2,150,152],[287,1,1,152,153],[289,2,2,153,155]]],[10,8,8,155,163,[[291,1,1,155,156],[292,3,3,156,159],[299,1,1,159,160],[303,1,1,160,161],[310,2,2,161,163]]],[12,18,18,163,181,[[339,2,2,163,165],[341,1,1,165,166],[343,1,1,166,167],[344,2,2,167,169],[345,1,1,169,170],[348,4,4,170,174],[356,2,2,174,176],[357,2,2,176,178],[361,1,1,178,179],[363,1,1,179,180],[364,1,1,180,181]]],[13,5,4,181,185,[[397,2,2,181,183],[402,3,2,183,185]]],[15,2,2,185,187,[[417,1,1,185,186],[419,1,1,186,187]]],[17,2,2,187,189,[[457,1,1,187,188],[465,1,1,188,189]]],[18,3,3,189,192,[[512,1,1,189,190],[526,1,1,190,191],[527,1,1,191,192]]],[19,3,3,192,195,[[644,1,1,192,193],[645,2,2,193,195]]],[20,1,1,195,196,[[662,1,1,195,196]]],[21,1,1,196,197,[[678,1,1,196,197]]],[22,4,4,197,201,[[681,1,1,197,198],[687,1,1,198,199],[697,1,1,199,200],[719,1,1,200,201]]],[23,8,7,201,208,[[753,2,1,201,202],[766,1,1,202,203],[767,1,1,203,204],[775,1,1,204,205],[778,3,3,205,208]]],[25,4,4,208,212,[[819,1,1,208,209],[834,1,1,209,210],[839,1,1,210,211],[845,1,1,211,212]]],[29,1,1,212,213,[[879,1,1,212,213]]],[30,2,2,213,215,[[888,2,2,213,215]]],[32,1,1,215,216,[[899,1,1,215,216]]],[36,1,1,216,217,[[910,1,1,216,217]]],[37,2,2,217,219,[[917,2,2,217,219]]],[38,2,2,219,221,[[925,1,1,219,220],[926,1,1,220,221]]]],[87,88,210,255,349,350,500,508,511,567,568,570,606,620,644,646,684,733,738,750,757,762,767,768,769,770,775,778,805,807,810,931,934,939,941,945,963,969,1012,1018,1046,1109,1110,1127,1128,1148,1149,1256,1267,1268,1272,1273,1286,1290,1293,1294,1295,1296,1297,1303,1304,1319,1320,1343,1344,1347,1350,1362,1370,1372,1470,1615,1686,1687,2294,2295,2297,2334,2465,2467,3203,3265,3298,3347,3494,3504,3505,3508,3516,3830,4319,4325,4567,4881,4908,5278,5321,5322,5328,5330,5331,5379,5424,5425,5471,5472,5507,5519,5520,5550,5553,5554,5665,5808,6219,6512,6522,6526,6577,6757,6772,6775,6778,7077,7082,7108,7193,7511,7646,7759,7911,8048,8071,8076,8108,8111,8126,8129,8250,8320,8321,8324,8325,8327,8329,8337,8343,8349,8363,8480,8563,8564,8601,8671,8677,8727,8777,8791,8792,9064,9214,9440,9441,10338,10348,10396,10493,10551,10570,10614,10693,10699,10711,10718,10918,10922,10931,10933,11040,11099,11116,11866,11867,11997,12003,12389,12422,13395,13586,14424,14655,14688,16890,16910,16920,17389,17641,17713,17848,18006,18457,19179,19472,19519,19725,19810,19815,19818,20867,21310,21446,21624,22375,22520,22522,22666,22877,22971,22972,23091,23113]]],["brother's",[24,22,[[0,11,11,0,11,[[3,3,3,0,3],[9,1,1,3,4],[11,1,1,4,5],[13,1,1,5,6],[23,1,1,6,7],[26,2,2,7,9],[37,2,2,9,11]]],[2,4,2,11,13,[[107,2,1,11,12],[109,2,1,12,13]]],[4,4,4,13,17,[[174,3,3,13,16],[177,1,1,16,17]]],[10,1,1,17,18,[[292,1,1,17,18]]],[12,1,1,18,19,[[338,1,1,18,19]]],[17,2,2,19,21,[[436,2,2,19,21]]],[19,1,1,21,22,[[654,1,1,21,22]]]],[88,89,100,259,303,348,639,771,772,1127,1128,3267,3339,5471,5473,5474,5556,8785,10271,12882,12887,17179]]],["brotherly",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22373]]],["kindred",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10749]]],["like",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20859]]],["other",[1,1,[[0,1,1,0,1,[[12,1,1,0,1]]]],[329]]]]},{"k":"H252","v":[["brethren",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12191]]]]},{"k":"H253","v":[["*",[2,2,[[25,2,2,0,2,[[807,1,1,0,1],[822,1,1,1,2]]]],[20574,20959]]],["Alas",[1,1,[[25,1,1,0,1,[[807,1,1,0,1]]]],[20574]]],["ah",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20959]]]]},{"k":"H254","v":[["hearth",[3,2,[[23,3,2,0,2,[[780,3,2,0,2]]]],[19864,19865]]]]},{"k":"H255","v":[["creatures",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17927]]]]},{"k":"H256","v":[["*",[93,81,[[10,49,44,0,44,[[306,6,4,0,4],[307,1,1,4,5],[308,17,15,5,20],[309,1,1,20,21],[310,3,3,21,24],[311,15,14,24,38],[312,6,6,38,44]]],[11,27,22,44,66,[[313,1,1,44,45],[315,2,2,45,47],[320,9,6,47,53],[321,6,5,53,58],[322,7,6,58,64],[333,2,2,64,66]]],[13,14,12,66,78,[[384,5,4,66,70],[387,3,2,70,72],[388,6,6,72,78]]],[23,2,2,78,80,[[773,2,2,78,80]]],[32,1,1,80,81,[[898,1,1,80,81]]]],[9311,9312,9313,9316,9318,9342,9343,9344,9346,9347,9350,9353,9357,9358,9361,9382,9383,9385,9386,9387,9388,9410,9421,9422,9452,9453,9454,9455,9459,9466,9467,9469,9471,9472,9475,9476,9478,9480,9500,9519,9520,9521,9529,9531,9534,9577,9581,9743,9745,9752,9754,9755,9756,9763,9764,9765,9781,9785,9794,9803,9804,9810,9811,9823,10122,10132,11543,11544,11545,11561,11630,11637,11647,11648,11649,11650,11651,11652,19656,19657,22664]]],["Ahab",[91,80,[[10,48,43,0,43,[[306,6,4,0,4],[307,1,1,4,5],[308,17,15,5,20],[309,1,1,20,21],[310,3,3,21,24],[311,14,13,24,37],[312,6,6,37,43]]],[11,26,22,43,65,[[313,1,1,43,44],[315,2,2,44,46],[320,9,6,46,52],[321,6,5,52,57],[322,6,6,57,63],[333,2,2,63,65]]],[13,14,12,65,77,[[384,5,4,65,69],[387,3,2,69,71],[388,6,6,71,77]]],[23,2,2,77,79,[[773,2,2,77,79]]],[32,1,1,79,80,[[898,1,1,79,80]]]],[9311,9312,9313,9316,9318,9342,9343,9344,9346,9347,9350,9353,9357,9358,9361,9382,9383,9385,9386,9387,9388,9410,9421,9422,9452,9453,9454,9455,9466,9467,9469,9471,9472,9475,9476,9478,9480,9500,9519,9520,9521,9529,9531,9534,9577,9581,9743,9745,9752,9754,9755,9756,9763,9764,9765,9781,9785,9794,9803,9804,9810,9811,9823,10122,10132,11543,11544,11545,11561,11630,11637,11647,11648,11649,11650,11651,11652,19656,19657,22664]]],["Ahab's",[2,2,[[10,1,1,0,1,[[311,1,1,0,1]]],[11,1,1,1,2,[[322,1,1,1,2]]]],[9459,9794]]]]},{"k":"H257","v":[["Ahban",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10335]]]]},{"k":"H258","v":[["other",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20960]]]]},{"k":"H259","v":[["*",[968,739,[[0,47,43,0,43,[[0,2,2,0,2],[1,3,3,2,5],[2,1,1,5,6],[3,1,1,6,7],[7,3,2,7,9],[9,1,1,9,10],[10,4,2,10,12],[18,1,1,12,13],[20,1,1,13,14],[21,1,1,14,15],[25,1,1,15,16],[26,3,3,16,19],[28,1,1,19,20],[31,2,2,20,22],[32,1,1,22,23],[33,2,2,23,25],[36,2,2,25,27],[39,1,1,27,28],[40,5,5,28,33],[41,8,7,33,40],[43,1,1,40,41],[47,1,1,41,42],[48,1,1,42,43]]],[1,99,69,43,112,[[50,1,1,43,44],[57,1,1,44,45],[58,2,2,45,47],[59,1,1,47,48],[60,1,1,48,49],[61,3,3,49,52],[63,1,1,52,53],[65,2,2,53,55],[66,2,1,55,56],[67,2,2,56,58],[72,1,1,58,59],[73,1,1,59,60],[74,7,5,60,65],[75,21,14,65,79],[76,1,1,79,80],[77,2,2,80,82],[78,8,6,82,88],[79,2,1,88,89],[82,1,1,89,90],[85,29,14,90,104],[86,7,5,104,109],[88,1,1,109,110],[89,2,2,110,112]]],[2,49,37,112,149,[[93,5,4,112,116],[94,6,5,116,121],[95,2,2,121,123],[96,2,2,123,125],[97,3,1,125,126],[101,2,1,126,127],[102,1,1,127,128],[103,12,8,128,136],[104,4,2,136,138],[105,4,3,138,141],[111,1,1,141,142],[112,3,3,142,145],[113,2,2,145,147],[114,1,1,147,148],[115,1,1,148,149]]],[3,178,122,149,271,[[117,4,4,149,153],[118,2,2,153,155],[122,7,3,155,158],[123,89,51,158,209],[124,2,1,209,210],[125,1,1,210,211],[126,1,1,211,212],[127,2,2,212,214],[129,2,2,214,216],[130,1,1,216,217],[131,11,8,217,225],[132,3,2,225,227],[133,3,2,227,229],[144,15,13,229,242],[145,24,19,242,261],[147,5,5,261,266],[149,1,1,266,267],[150,2,1,267,268],[151,1,1,268,269],[152,2,2,269,271]]],[4,26,24,271,295,[[153,3,3,271,274],[156,1,1,274,275],[158,1,1,275,276],[164,1,1,276,277],[165,1,1,277,278],[167,2,1,278,279],[168,1,1,279,280],[169,2,2,280,282],[170,1,1,282,283],[171,3,3,283,286],[173,2,1,286,287],[175,1,1,287,288],[176,1,1,288,289],[177,2,2,289,291],[180,3,3,291,294],[184,1,1,294,295]]],[5,60,37,295,332,[[189,4,3,295,298],[190,5,3,298,301],[192,3,3,301,304],[193,2,1,304,305],[195,1,1,305,306],[196,2,2,306,308],[198,32,16,308,324],[201,1,1,324,325],[203,3,2,325,327],[206,1,1,327,328],[208,3,2,328,330],[209,3,2,330,332]]],[6,27,25,332,357,[[214,1,1,332,333],[216,1,1,333,334],[218,1,1,334,335],[219,5,5,335,340],[223,1,1,340,341],[225,1,1,341,342],[226,5,4,342,346],[227,2,2,346,348],[228,1,1,348,349],[229,1,1,349,350],[230,5,4,350,354],[231,3,3,354,357]]],[7,2,2,357,359,[[232,1,1,357,358],[233,1,1,358,359]]],[8,43,33,359,392,[[236,4,4,359,363],[237,2,2,363,365],[241,8,4,365,369],[242,2,2,369,371],[244,2,2,371,373],[245,3,1,373,374],[246,1,1,374,375],[248,3,2,375,377],[249,6,3,377,380],[251,2,2,380,382],[252,1,1,382,383],[257,1,1,383,384],[259,1,1,384,385],[260,1,1,385,386],[261,4,4,386,390],[262,2,2,390,392]]],[9,35,27,392,419,[[267,1,1,392,393],[268,5,4,393,397],[269,1,1,397,398],[270,1,1,398,399],[272,4,2,399,401],[273,2,2,401,403],[275,1,1,403,404],[278,4,2,404,406],[279,2,2,406,408],[280,3,2,408,410],[281,1,1,410,411],[283,5,3,411,414],[284,2,2,414,416],[285,1,1,416,417],[289,1,1,417,418],[290,1,1,418,419]]],[10,63,51,419,470,[[292,2,2,419,421],[293,4,2,421,423],[294,3,3,423,426],[296,7,6,426,432],[297,17,12,432,444],[298,1,1,444,445],[300,4,4,445,449],[301,3,3,449,452],[302,3,2,452,454],[303,1,1,454,455],[304,1,1,455,456],[305,1,1,456,457],[306,1,1,457,458],[308,5,3,458,461],[309,3,3,461,464],[310,3,3,464,467],[312,4,3,467,470]]],[11,33,29,470,499,[[314,2,1,470,471],[315,1,1,471,472],[316,6,4,472,476],[318,5,5,476,481],[319,2,2,481,483],[320,2,2,483,485],[321,2,2,485,487],[324,1,1,487,488],[326,1,1,488,489],[327,1,1,489,490],[329,2,2,490,492],[330,1,1,492,493],[334,1,1,493,494],[335,1,1,494,495],[336,2,1,495,496],[337,3,3,496,499]]],[12,13,13,499,512,[[338,1,1,499,500],[348,1,1,500,501],[349,2,2,501,503],[354,2,2,503,505],[358,1,1,505,506],[360,1,1,506,507],[361,2,2,507,509],[362,1,1,509,510],[364,1,1,510,511],[366,1,1,511,512]]],[13,29,25,512,537,[[369,4,3,512,515],[370,2,2,515,517],[371,2,1,517,518],[375,4,4,518,522],[378,1,1,522,523],[382,1,1,523,524],[384,4,3,524,527],[388,1,1,527,528],[390,1,1,528,529],[394,1,1,529,530],[395,1,1,530,531],[396,1,1,531,532],[398,1,1,532,533],[400,1,1,533,534],[402,4,3,534,537]]],[14,12,11,537,548,[[403,1,1,537,538],[404,2,2,538,540],[405,3,3,540,543],[408,1,1,543,544],[409,2,1,544,545],[412,3,3,545,548]]],[15,11,9,548,557,[[413,1,1,548,549],[416,2,1,549,550],[417,2,1,550,551],[419,3,3,551,554],[420,2,2,554,556],[423,1,1,556,557]]],[16,5,5,557,562,[[428,2,2,557,559],[429,1,1,559,560],[432,1,1,560,561],[433,1,1,561,562]]],[17,14,12,562,574,[[437,1,1,562,563],[444,2,2,563,565],[449,1,1,565,566],[458,1,1,566,567],[466,1,1,567,568],[468,2,2,568,570],[475,1,1,570,571],[476,2,1,571,572],[477,3,2,572,574]]],[18,9,9,574,583,[[491,1,1,574,575],[504,1,1,575,576],[511,1,1,576,577],[530,1,1,577,578],[539,1,1,578,579],[559,1,1,579,580],[566,1,1,580,581],[583,1,1,581,582],[616,1,1,582,583]]],[19,2,2,583,585,[[628,1,1,583,584],[655,1,1,584,585]]],[20,19,16,585,601,[[660,1,1,585,586],[661,3,2,586,588],[662,6,5,588,593],[664,1,1,593,594],[665,3,2,594,596],[667,3,3,596,599],[669,1,1,599,600],[670,1,1,600,601]]],[21,4,2,601,603,[[674,2,1,601,602],[676,2,1,602,603]]],[22,20,17,603,620,[[682,1,1,603,604],[683,1,1,604,605],[684,2,2,605,607],[687,1,1,607,608],[688,1,1,608,609],[697,1,1,609,610],[701,1,1,610,611],[705,2,1,611,612],[708,2,1,612,613],[712,1,1,613,614],[714,1,1,614,615],[725,1,1,615,616],[729,1,1,616,617],[743,1,1,617,618],[744,3,2,618,620]]],[23,13,11,620,631,[[747,1,1,620,621],[754,1,1,621,622],[768,2,1,622,623],[776,2,1,623,624],[779,1,1,624,625],[795,1,1,625,626],[796,5,5,626,631]]],[25,107,74,631,705,[[802,4,3,631,634],[805,1,1,634,635],[808,1,1,635,636],[809,2,2,636,638],[810,1,1,638,639],[811,9,4,639,643],[812,1,1,643,644],[817,1,1,644,645],[818,1,1,645,646],[819,1,1,646,647],[820,2,2,647,649],[822,1,1,649,650],[824,2,2,650,652],[827,1,1,652,653],[830,1,1,653,654],[831,1,1,654,655],[832,2,1,655,656],[833,1,1,656,657],[834,3,3,657,660],[835,1,1,660,661],[838,11,5,661,666],[841,22,11,666,677],[842,3,2,677,679],[843,1,1,679,680],[844,2,2,680,682],[846,4,4,682,686],[847,2,2,686,688],[849,25,17,688,705]]],[26,19,14,705,719,[[850,1,1,705,706],[857,6,3,706,709],[858,3,3,709,712],[859,4,3,712,715],[860,3,3,715,718],[861,2,1,718,719]]],[27,1,1,719,720,[[862,1,1,719,720]]],[29,5,3,720,723,[[882,4,2,720,722],[884,1,1,722,723]]],[30,1,1,723,724,[[888,1,1,723,724]]],[31,1,1,724,725,[[891,1,1,724,725]]],[35,1,1,725,726,[[908,1,1,725,726]]],[36,3,3,726,729,[[909,1,1,726,727],[910,2,2,727,729]]],[37,13,8,729,737,[[913,2,1,729,730],[914,2,1,730,731],[915,1,1,731,732],[918,2,1,732,733],[921,3,2,733,735],[924,3,2,735,737]]],[38,4,2,737,739,[[926,4,2,737,739]]]],[4,8,41,51,54,77,98,188,196,259,267,272,466,528,549,702,765,771,772,815,936,950,973,996,1002,1092,1103,1177,1200,1206,1217,1220,1221,1263,1265,1268,1271,1279,1284,1285,1352,1473,1489,1547,1741,1748,1749,1796,1807,1834,1862,1865,1917,1969,1980,1995,2002,2003,2173,2180,2207,2214,2227,2228,2231,2237,2239,2240,2241,2243,2245,2246,2251,2252,2254,2256,2259,2260,2261,2281,2303,2310,2337,2339,2351,2359,2375,2376,2392,2478,2575,2576,2577,2578,2579,2581,2584,2587,2588,2590,2592,2595,2596,2597,2607,2612,2622,2623,2626,2674,2709,2724,2797,2808,2817,2822,2834,2835,2837,2843,2847,2852,2856,2886,2893,2943,3052,3054,3116,3121,3123,3132,3133,3141,3142,3161,3183,3198,3206,3209,3235,3397,3420,3421,3426,3451,3468,3517,3550,3605,3622,3645,3648,3674,3686,3834,3837,3842,3853,3861,3863,3864,3865,3866,3869,3870,3871,3872,3875,3876,3877,3878,3881,3882,3883,3884,3887,3888,3889,3890,3893,3894,3895,3896,3899,3900,3901,3902,3905,3906,3907,3908,3911,3912,3913,3914,3917,3918,3919,3920,3923,3924,3925,3926,3929,3930,3931,3932,3935,3951,3979,3992,4043,4050,4077,4098,4123,4158,4164,4165,4168,4169,4177,4180,4182,4209,4216,4247,4250,4581,4584,4588,4589,4590,4592,4596,4598,4599,4604,4605,4606,4607,4609,4610,4612,4613,4616,4617,4618,4619,4622,4623,4624,4627,4630,4633,4636,4639,4642,4644,4646,4692,4694,4698,4703,4711,4798,4834,4875,4882,4887,4894,4895,4915,5046,5090,5254,5284,5326,5347,5366,5370,5390,5411,5417,5421,5462,5516,5530,5552,5558,5618,5636,5666,5788,5905,5906,5909,5912,5914,5915,5952,5960,5963,5997,6039,6066,6106,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6253,6289,6292,6376,6440,6446,6470,6474,6615,6670,6737,6756,6759,6772,6791,6807,6886,6933,6956,6960,6977,6978,6985,6991,7012,7037,7055,7062,7065,7085,7105,7108,7110,7131,7162,7213,7214,7217,7236,7274,7276,7335,7338,7343,7348,7361,7364,7394,7406,7421,7452,7502,7503,7512,7513,7548,7613,7615,7654,7807,7853,7875,7913,7920,7925,7927,7931,7935,8037,8050,8067,8070,8074,8094,8122,8176,8177,8187,8203,8238,8287,8289,8330,8347,8362,8383,8391,8458,8461,8471,8488,8489,8525,8661,8704,8786,8790,8833,8841,8851,8863,8866,8920,8921,8922,8923,8930,8934,8949,8950,8951,8952,8961,8964,8966,8968,8971,8972,8976,8978,9041,9093,9095,9096,9101,9121,9140,9144,9180,9181,9195,9239,9259,9306,9347,9364,9366,9389,9391,9392,9421,9437,9443,9488,9489,9493,9567,9587,9604,9625,9638,9642,9676,9677,9679,9684,9686,9715,9720,9733,9753,9757,9785,9859,9919,9945,10010,10011,10048,10146,10201,10220,10238,10239,10241,10271,10684,10734,10758,10869,10884,10944,10994,11021,11032,11074,11110,11165,11240,11241,11246,11259,11261,11281,11377,11379,11380,11385,11450,11522,11549,11550,11554,11646,11685,11770,11808,11839,11887,11934,11998,12004,12015,12017,12053,12091,12098,12103,12106,12171,12182,12265,12268,12269,12298,12376,12400,12450,12457,12486,12494,12495,12589,12755,12760,12773,12816,12829,12901,13054,13073,13185,13432,13603,13664,13673,13869,13904,13933,13936,14083,14289,14408,14722,14838,15240,15361,15662,16255,16414,17214,17347,17378,17379,17389,17390,17391,17392,17393,17423,17456,17457,17477,17478,17493,17519,17534,17591,17623,17734,17749,17771,17775,17843,17867,18022,18092,18163,18234,18319,18339,18608,18675,18922,18930,18939,19016,19209,19526,19770,19825,20272,20277,20296,20297,20298,20301,20470,20479,20480,20538,20582,20611,20612,20624,20642,20643,20647,20654,20674,20767,20832,20859,20884,20886,20963,21009,21020,21101,21200,21224,21231,21249,21282,21304,21310,21336,21413,21414,21416,21419,21421,21482,21483,21484,21485,21487,21489,21503,21519,21520,21521,21526,21537,21550,21556,21585,21586,21637,21641,21645,21648,21672,21677,21703,21704,21705,21706,21707,21708,21709,21710,21725,21726,21727,21728,21729,21733,21734,21735,21736,21758,21964,21970,21974,21989,21990,22015,22020,22028,22036,22037,22056,22063,22086,22105,22417,22418,22459,22521,22562,22829,22841,22856,22861,22921,22925,22943,22997,23035,23036,23075,23077,23113,23118]]],["+",[55,49,[[0,2,2,0,2,[[31,1,1,0,1],[36,1,1,1,2]]],[1,3,3,2,5,[[74,1,1,2,3],[86,1,1,3,4],[89,1,1,4,5]]],[2,4,4,5,9,[[93,3,3,5,8],[94,1,1,8,9]]],[3,5,4,9,13,[[123,1,1,9,10],[133,1,1,10,11],[147,1,1,11,12],[150,2,1,12,13]]],[4,3,3,13,16,[[153,1,1,13,14],[167,1,1,14,15],[170,1,1,15,16]]],[5,12,8,16,24,[[189,2,1,16,17],[190,4,2,17,19],[192,3,3,19,22],[201,1,1,22,23],[208,2,1,23,24]]],[6,1,1,24,25,[[226,1,1,24,25]]],[8,2,2,25,27,[[260,1,1,25,26],[261,1,1,26,27]]],[9,1,1,27,28,[[281,1,1,27,28]]],[10,3,3,28,31,[[296,1,1,28,29],[297,1,1,29,30],[303,1,1,30,31]]],[11,5,4,31,35,[[316,2,1,31,32],[321,1,1,32,33],[335,1,1,33,34],[336,1,1,34,35]]],[13,2,2,35,37,[[402,2,2,35,37]]],[14,1,1,37,38,[[405,1,1,37,38]]],[15,1,1,38,39,[[417,1,1,38,39]]],[17,1,1,39,40,[[477,1,1,39,40]]],[18,1,1,40,41,[[616,1,1,40,41]]],[20,2,2,41,43,[[660,1,1,41,42],[670,1,1,42,43]]],[22,1,1,43,44,[[744,1,1,43,44]]],[25,4,4,44,48,[[819,1,1,44,45],[822,1,1,45,46],[831,1,1,46,47],[832,1,1,47,48]]],[26,1,1,48,49,[[859,1,1,48,49]]]],[950,1092,2227,2622,2709,2797,2808,2817,2843,3861,4250,4711,4834,4894,5326,5390,5905,5912,5914,5952,5960,5963,6253,6440,6977,7875,7913,8391,8934,8949,9195,9638,9785,10201,10220,11998,12004,12103,12400,13933,16255,17347,17534,18930,20859,20963,21224,21231,22036]]],["Each",[1,1,[[3,1,1,0,1,[[123,1,1,0,1]]]],[3935]]],["Once",[2,2,[[17,1,1,0,1,[[475,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]]],[13869,15361]]],["One",[49,49,[[1,3,3,0,3,[[61,1,1,0,1],[85,1,1,1,2],[86,1,1,2,3]]],[3,39,39,3,42,[[123,36,36,3,39],[131,2,2,39,41],[145,1,1,41,42]]],[4,1,1,42,43,[[171,1,1,42,43]]],[5,1,1,43,44,[[209,1,1,43,44]]],[13,1,1,44,45,[[370,1,1,44,45]]],[17,1,1,45,46,[[476,1,1,45,46]]],[18,1,1,46,47,[[504,1,1,46,47]]],[22,1,1,47,48,[[708,1,1,47,48]]],[23,1,1,48,49,[[768,1,1,48,49]]]],[1865,2588,2612,3864,3865,3866,3870,3871,3872,3876,3877,3878,3882,3883,3884,3888,3889,3890,3894,3895,3896,3900,3901,3902,3906,3907,3908,3912,3913,3914,3918,3919,3920,3924,3925,3926,3930,3931,3932,4168,4169,4619,5421,6470,11261,13904,14289,18234,19526]]],["a",[51,48,[[1,3,3,0,3,[[65,1,1,0,1],[82,1,1,1,2],[85,1,1,2,3]]],[2,1,1,3,4,[[97,1,1,3,4]]],[3,2,2,4,6,[[123,1,1,4,5],[129,1,1,5,6]]],[5,3,2,6,8,[[190,1,1,6,7],[193,2,1,7,8]]],[6,1,1,8,9,[[225,1,1,8,9]]],[8,7,7,9,16,[[236,1,1,9,10],[241,1,1,10,11],[242,2,2,11,13],[244,1,1,13,14],[251,1,1,14,15],[259,1,1,15,16]]],[9,5,3,16,19,[[268,1,1,16,17],[272,3,1,17,18],[284,1,1,18,19]]],[10,4,4,19,23,[[297,1,1,19,20],[309,2,2,20,22],[310,1,1,22,23]]],[11,2,2,23,25,[[318,1,1,23,24],[324,1,1,24,25]]],[13,1,1,25,26,[[390,1,1,25,26]]],[23,1,1,26,27,[[795,1,1,26,27]]],[25,17,17,27,44,[[809,2,2,27,29],[834,1,1,29,30],[841,1,1,30,31],[844,1,1,31,32],[849,12,12,32,44]]],[26,2,2,44,46,[[857,2,2,44,46]]],[31,1,1,46,47,[[891,1,1,46,47]]],[37,1,1,47,48,[[915,1,1,47,48]]]],[1980,2478,2587,2943,3893,4077,5915,5997,6933,7217,7338,7361,7364,7406,7615,7853,8067,8176,8489,8966,9391,9392,9421,9676,9859,11685,20272,20611,20612,21282,21519,21585,21703,21704,21705,21706,21707,21708,21709,21725,21726,21727,21728,21729,21964,21970,22562,22943]]],["alike",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17519]]],["alone",[4,4,[[5,1,1,0,1,[[208,1,1,0,1]]],[12,1,1,1,2,[[366,1,1,1,2]]],[20,1,1,2,3,[[662,1,1,2,3]]],[22,1,1,3,4,[[729,1,1,3,4]]]],[6446,11165,17391,18675]]],["altogether",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19209]]],["an",[9,9,[[5,2,2,0,2,[[189,2,2,0,2]]],[9,1,1,2,3,[[268,1,1,2,3]]],[10,1,1,3,4,[[312,1,1,3,4]]],[11,1,1,4,5,[[337,1,1,4,5]]],[17,1,1,5,6,[[477,1,1,5,6]]],[23,1,1,6,7,[[796,1,1,6,7]]],[25,2,2,7,9,[[841,2,2,7,9]]]],[5906,5909,8074,9489,10241,13933,20301,21519,21520]]],["another",[35,31,[[1,12,11,0,11,[[75,3,3,0,3],[85,7,6,3,9],[86,2,2,9,11]]],[4,1,1,11,12,[[173,1,1,11,12]]],[6,3,3,12,15,[[219,1,1,12,13],[226,2,2,13,15]]],[8,4,2,15,17,[[245,2,1,15,16],[248,2,1,16,17]]],[10,1,1,17,18,[[308,1,1,17,18]]],[17,1,1,18,19,[[476,1,1,18,19]]],[25,10,9,19,28,[[811,2,1,19,20],[818,1,1,20,21],[820,1,1,21,22],[834,1,1,22,23],[838,2,2,23,25],[841,2,2,25,27],[842,1,1,27,28]]],[26,1,1,28,29,[[857,1,1,28,29]]],[29,1,1,29,30,[[882,1,1,29,30]]],[37,1,1,30,31,[[918,1,1,30,31]]]],[2254,2256,2260,2576,2578,2579,2588,2590,2592,2612,2623,5462,6791,6956,6960,7421,7503,9347,13904,20642,20832,20886,21310,21413,21414,21503,21526,21537,21974,22417,22997]]],["any",[14,13,[[2,4,3,0,3,[[93,2,1,0,1],[94,1,1,1,2],[95,1,1,2,3]]],[3,2,2,3,5,[[131,1,1,3,4],[152,1,1,4,5]]],[4,4,4,5,9,[[167,1,1,5,6],[168,1,1,6,7],[169,1,1,7,8],[180,1,1,8,9]]],[9,2,2,9,11,[[268,1,1,9,10],[273,1,1,10,11]]],[12,1,1,11,12,[[354,1,1,11,12]]],[25,1,1,12,13,[[817,1,1,12,13]]]],[2822,2847,2852,4180,4882,5326,5347,5366,5666,8050,8187,10869,20767]]],["certain",[9,9,[[6,2,2,0,2,[[219,1,1,0,1],[223,1,1,1,2]]],[8,1,1,2,3,[[236,1,1,2,3]]],[9,1,1,3,4,[[284,1,1,3,4]]],[10,1,1,4,5,[[310,1,1,4,5]]],[11,2,2,5,7,[[316,1,1,5,6],[320,1,1,6,7]]],[16,1,1,7,8,[[428,1,1,7,8]]],[26,1,1,8,9,[[859,1,1,8,9]]]],[6807,6886,7213,8488,9443,9604,9733,12755,22020]]],["each",[6,6,[[3,4,4,0,4,[[123,2,2,0,2],[145,2,2,2,4]]],[11,1,1,4,5,[[327,1,1,4,5]]],[13,1,1,5,6,[[370,1,1,5,6]]]],[3861,3935,4622,4623,9945,11259]]],["every",[6,6,[[1,1,1,0,1,[[85,1,1,0,1]]],[3,2,2,1,3,[[144,1,1,1,2],[145,1,1,2,3]]],[10,2,2,3,5,[[297,2,2,3,5]]],[12,1,1,5,6,[[364,1,1,5,6]]]],[2596,4598,4622,8964,8972,11110]]],["few",[3,3,[[0,2,2,0,2,[[26,1,1,0,1],[28,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[771,815,22056]]],["first",[35,33,[[0,5,4,0,4,[[0,1,1,0,1],[1,1,1,1,2],[7,3,2,2,4]]],[1,3,3,4,7,[[77,1,1,4,5],[88,1,1,5,6],[89,1,1,6,7]]],[2,1,1,7,8,[[112,1,1,7,8]]],[3,4,4,8,12,[[117,2,2,8,10],[145,1,1,10,11],[149,1,1,11,12]]],[4,1,1,12,13,[[153,1,1,12,13]]],[10,1,1,13,14,[[306,1,1,13,14]]],[13,2,2,14,16,[[395,1,1,14,15],[402,1,1,15,16]]],[14,5,4,16,20,[[403,1,1,16,17],[409,2,1,17,18],[412,2,2,18,20]]],[15,1,1,20,21,[[420,1,1,20,21]]],[17,1,1,21,22,[[477,1,1,21,22]]],[25,6,6,22,28,[[811,1,1,22,23],[827,1,1,23,24],[830,1,1,24,25],[832,1,1,25,26],[833,1,1,26,27],[846,1,1,27,28]]],[26,4,4,28,32,[[850,1,1,28,29],[858,2,2,29,31],[860,1,1,31,32]]],[36,1,1,32,33,[[909,1,1,32,33]]]],[4,41,188,196,2310,2674,2724,3426,3605,3622,4609,4798,4895,9306,11808,12015,12017,12182,12268,12269,12495,13936,20647,21101,21200,21231,21249,21648,21758,21989,21990,22037,22841]]],["man",[2,2,[[6,1,1,0,1,[[214,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]]],[6615,8851]]],["once",[10,9,[[1,2,1,0,1,[[79,2,1,0,1]]],[2,1,1,1,2,[[105,1,1,1,2]]],[10,1,1,2,3,[[300,1,1,2,3]]],[11,1,1,3,4,[[318,1,1,3,4]]],[13,1,1,4,5,[[375,1,1,4,5]]],[17,1,1,5,6,[[468,1,1,5,6]]],[18,1,1,6,7,[[539,1,1,6,7]]],[19,1,1,7,8,[[655,1,1,7,8]]],[36,1,1,8,9,[[910,1,1,8,9]]]],[2392,3235,9101,9684,11385,13664,14838,17214,22861]]],["one",[627,508,[[0,37,34,0,34,[[0,1,1,0,1],[1,2,2,1,3],[2,1,1,3,4],[3,1,1,4,5],[9,1,1,5,6],[10,4,2,6,8],[18,1,1,8,9],[20,1,1,9,10],[21,1,1,10,11],[25,1,1,11,12],[26,2,2,12,14],[31,1,1,14,15],[32,1,1,15,16],[33,2,2,16,18],[39,1,1,18,19],[40,5,5,19,24],[41,8,7,24,31],[43,1,1,31,32],[47,1,1,32,33],[48,1,1,33,34]]],[1,68,55,34,89,[[50,1,1,34,35],[57,1,1,35,36],[58,2,2,36,38],[59,1,1,38,39],[60,1,1,39,40],[61,2,2,40,42],[63,1,1,42,43],[65,1,1,43,44],[66,1,1,44,45],[67,1,1,45,46],[72,1,1,46,47],[73,1,1,47,48],[74,4,4,48,52],[75,18,14,52,66],[76,1,1,66,67],[77,1,1,67,68],[78,8,6,68,74],[85,19,12,74,86],[86,3,3,86,89]]],[2,30,27,89,116,[[94,3,3,89,92],[96,2,2,92,94],[97,2,1,94,95],[101,1,1,95,96],[102,1,1,96,97],[103,10,8,97,105],[104,2,2,105,107],[105,2,2,107,109],[111,1,1,109,110],[112,2,2,110,112],[113,2,2,112,114],[114,1,1,114,115],[115,1,1,115,116]]],[3,117,82,116,198,[[117,2,2,116,118],[118,2,2,118,120],[122,6,3,120,123],[123,48,25,123,148],[124,1,1,148,149],[125,1,1,149,150],[126,1,1,150,151],[127,2,2,151,153],[129,1,1,153,154],[130,1,1,154,155],[131,8,6,155,161],[132,3,2,161,163],[133,2,2,163,165],[144,14,12,165,177],[145,19,15,177,192],[147,4,4,192,196],[151,1,1,196,197],[152,1,1,197,198]]],[4,16,16,198,214,[[153,1,1,198,199],[156,1,1,199,200],[158,1,1,200,201],[164,1,1,201,202],[165,1,1,202,203],[169,1,1,203,204],[171,2,2,204,206],[173,1,1,206,207],[175,1,1,207,208],[176,1,1,208,209],[177,2,2,209,211],[180,2,2,211,213],[184,1,1,213,214]]],[5,41,23,214,237,[[195,1,1,214,215],[196,2,2,215,217],[198,32,16,217,233],[203,3,2,233,235],[206,1,1,235,236],[209,2,1,236,237]]],[6,17,17,237,254,[[216,1,1,237,238],[218,1,1,238,239],[219,3,3,239,242],[226,1,1,242,243],[227,2,2,243,245],[228,1,1,245,246],[229,1,1,246,247],[230,4,4,247,251],[231,3,3,251,254]]],[7,2,2,254,256,[[232,1,1,254,255],[233,1,1,255,256]]],[8,24,20,256,276,[[236,2,2,256,258],[237,2,2,258,260],[241,6,2,260,262],[244,1,1,262,263],[245,1,1,263,264],[246,1,1,264,265],[248,1,1,265,266],[249,3,3,266,269],[251,1,1,269,270],[252,1,1,270,271],[257,1,1,271,272],[261,3,3,272,275],[262,1,1,275,276]]],[9,20,19,276,295,[[267,1,1,276,277],[268,2,2,277,279],[269,1,1,279,280],[270,1,1,280,281],[272,1,1,281,282],[273,1,1,282,283],[275,1,1,283,284],[278,3,2,284,286],[279,2,2,286,288],[280,2,2,288,290],[283,2,2,290,292],[285,1,1,292,293],[289,1,1,293,294],[290,1,1,294,295]]],[10,44,37,295,332,[[292,2,2,295,297],[293,3,2,297,299],[294,1,1,299,300],[296,6,5,300,305],[297,13,9,305,314],[298,1,1,314,315],[300,3,3,315,318],[301,3,3,318,321],[302,2,2,321,323],[304,1,1,323,324],[305,1,1,324,325],[308,3,3,325,328],[309,1,1,328,329],[310,1,1,329,330],[312,3,2,330,332]]],[11,19,18,332,350,[[315,1,1,332,333],[316,3,2,333,335],[318,3,3,335,338],[319,2,2,338,340],[320,1,1,340,341],[321,1,1,341,342],[326,1,1,342,343],[329,2,2,343,345],[330,1,1,345,346],[334,1,1,346,347],[336,1,1,347,348],[337,2,2,348,350]]],[12,10,10,350,360,[[338,1,1,350,351],[348,1,1,351,352],[349,2,2,352,354],[354,1,1,354,355],[358,1,1,355,356],[360,1,1,356,357],[361,2,2,357,359],[362,1,1,359,360]]],[13,19,17,360,377,[[369,2,2,360,362],[371,2,1,362,363],[375,3,3,363,366],[378,1,1,366,367],[382,1,1,367,368],[384,4,3,368,371],[388,1,1,371,372],[394,1,1,372,373],[396,1,1,373,374],[398,1,1,374,375],[400,1,1,375,376],[402,1,1,376,377]]],[14,3,3,377,380,[[404,1,1,377,378],[405,1,1,378,379],[412,1,1,379,380]]],[15,7,7,380,387,[[413,1,1,380,381],[416,1,1,381,382],[417,1,1,382,383],[419,2,2,383,385],[420,1,1,385,386],[423,1,1,386,387]]],[16,4,4,387,391,[[428,1,1,387,388],[429,1,1,388,389],[432,1,1,389,390],[433,1,1,390,391]]],[17,7,7,391,398,[[437,1,1,391,392],[444,2,2,392,394],[449,1,1,394,395],[458,1,1,395,396],[466,1,1,396,397],[468,1,1,397,398]]],[18,5,5,398,403,[[491,1,1,398,399],[511,1,1,399,400],[530,1,1,400,401],[559,1,1,401,402],[583,1,1,402,403]]],[19,1,1,403,404,[[628,1,1,403,404]]],[20,14,13,404,417,[[661,2,2,404,406],[662,5,5,406,411],[664,1,1,411,412],[665,3,2,412,414],[667,3,3,414,417]]],[21,4,2,417,419,[[674,2,1,417,418],[676,2,1,418,419]]],[22,16,15,419,434,[[682,1,1,419,420],[683,1,1,420,421],[684,2,2,421,423],[687,1,1,423,424],[688,1,1,424,425],[697,1,1,425,426],[701,1,1,426,427],[705,2,1,427,428],[708,1,1,428,429],[712,1,1,429,430],[714,1,1,430,431],[725,1,1,431,432],[744,2,2,432,434]]],[23,8,7,434,441,[[747,1,1,434,435],[776,2,1,435,436],[779,1,1,436,437],[796,4,4,437,441]]],[25,65,44,441,485,[[802,4,3,441,444],[805,1,1,444,445],[810,1,1,445,446],[811,6,4,446,450],[812,1,1,450,451],[820,1,1,451,452],[824,2,2,452,454],[834,1,1,454,455],[835,1,1,455,456],[838,9,5,456,461],[841,16,10,461,471],[842,2,2,471,473],[843,1,1,473,474],[844,1,1,474,475],[846,3,3,475,478],[847,2,2,478,480],[849,13,5,480,485]]],[26,8,7,485,492,[[857,3,3,485,488],[858,1,1,488,489],[859,2,1,489,490],[860,1,1,490,491],[861,1,1,491,492]]],[27,1,1,492,493,[[862,1,1,492,493]]],[29,4,3,493,496,[[882,3,2,493,495],[884,1,1,495,496]]],[30,1,1,496,497,[[888,1,1,496,497]]],[35,1,1,497,498,[[908,1,1,497,498]]],[36,1,1,498,499,[[910,1,1,498,499]]],[37,9,7,499,506,[[913,2,1,499,500],[914,1,1,500,501],[918,1,1,501,502],[921,2,2,502,504],[924,3,2,504,506]]],[38,4,2,506,508,[[926,4,2,506,508]]]],[8,51,54,77,98,259,267,272,466,528,549,702,765,772,936,973,996,1002,1177,1200,1206,1217,1220,1221,1263,1265,1268,1271,1279,1284,1285,1352,1473,1489,1547,1741,1748,1749,1796,1807,1834,1862,1917,1969,1995,2002,2173,2180,2207,2214,2228,2231,2237,2239,2240,2241,2243,2245,2246,2251,2252,2254,2256,2259,2260,2261,2281,2303,2337,2339,2351,2359,2375,2376,2575,2576,2577,2578,2579,2581,2584,2588,2590,2592,2595,2597,2607,2623,2626,2834,2835,2837,2886,2893,2943,3052,3054,3116,3121,3123,3132,3133,3141,3142,3161,3183,3198,3206,3209,3397,3420,3421,3451,3468,3517,3550,3645,3648,3674,3686,3834,3837,3842,3853,3863,3865,3869,3871,3875,3877,3881,3883,3887,3889,3893,3895,3899,3901,3905,3907,3911,3913,3917,3919,3923,3925,3929,3931,3951,3979,3992,4043,4050,4098,4123,4158,4164,4165,4169,4177,4182,4209,4216,4247,4250,4581,4584,4588,4589,4590,4592,4596,4599,4604,4605,4606,4607,4610,4612,4613,4616,4617,4618,4624,4627,4630,4633,4636,4639,4642,4644,4646,4692,4694,4698,4703,4875,4887,4915,5046,5090,5254,5284,5370,5411,5417,5462,5516,5530,5552,5558,5618,5636,5788,6039,6066,6106,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6289,6292,6376,6474,6670,6737,6756,6759,6772,6978,6985,6991,7012,7037,7055,7062,7065,7085,7105,7108,7110,7131,7162,7214,7236,7274,7276,7335,7348,7394,7421,7452,7502,7512,7513,7548,7613,7654,7807,7920,7925,7927,7931,8037,8070,8074,8094,8122,8177,8203,8238,8287,8289,8330,8347,8362,8383,8461,8471,8525,8661,8704,8786,8790,8833,8841,8866,8920,8921,8922,8923,8930,8950,8951,8952,8961,8968,8971,8972,8976,8978,9041,9093,9095,9096,9121,9140,9144,9180,9181,9239,9259,9347,9364,9366,9389,9437,9488,9493,9587,9625,9642,9677,9679,9686,9715,9720,9753,9757,9919,10010,10011,10048,10146,10220,10238,10239,10271,10684,10734,10758,10884,10944,10994,11021,11032,11074,11240,11246,11281,11377,11379,11380,11450,11522,11549,11550,11554,11646,11770,11839,11887,11934,12004,12053,12098,12265,12298,12376,12400,12450,12457,12494,12589,12760,12773,12816,12829,12901,13054,13073,13185,13432,13603,13673,14083,14408,14722,15240,15662,16414,17378,17379,17389,17390,17391,17392,17393,17423,17456,17457,17477,17478,17493,17591,17623,17734,17749,17771,17775,17843,17867,18022,18092,18163,18234,18319,18339,18608,18930,18939,19016,19770,19825,20277,20296,20297,20298,20470,20479,20480,20538,20624,20642,20643,20647,20654,20674,20884,21009,21020,21304,21336,21413,21414,21416,21419,21421,21482,21483,21484,21485,21487,21489,21503,21519,21521,21526,21537,21550,21556,21586,21637,21641,21645,21672,21677,21710,21733,21734,21735,21736,21964,21970,21974,22015,22028,22063,22086,22105,22417,22418,22459,22521,22829,22856,22921,22925,22997,23035,23036,23075,23077,23113,23118]]],["only",[2,2,[[10,1,1,0,1,[[294,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]]],[8863,20582]]],["other",[31,31,[[1,4,4,0,4,[[66,1,1,0,1],[67,1,1,1,2],[74,2,2,2,4]]],[2,7,7,4,11,[[94,1,1,4,5],[101,1,1,5,6],[103,2,2,6,8],[104,2,2,8,10],[105,1,1,10,11]]],[3,2,2,11,13,[[122,1,1,11,12],[124,1,1,12,13]]],[6,2,2,13,15,[[226,1,1,13,14],[230,1,1,14,15]]],[8,3,3,15,18,[[249,3,3,15,18]]],[9,2,2,18,20,[[278,1,1,18,19],[280,1,1,19,20]]],[10,3,3,20,23,[[293,1,1,20,21],[302,1,1,21,22],[308,1,1,22,23]]],[13,2,2,23,25,[[369,2,2,23,25]]],[15,1,1,25,26,[[416,1,1,25,26]]],[23,1,1,26,27,[[768,1,1,26,27]]],[25,1,1,27,28,[[841,1,1,27,28]]],[26,1,1,28,29,[[861,1,1,28,29]]],[37,2,2,29,31,[[914,1,1,29,30],[921,1,1,30,31]]]],[1995,2003,2214,2228,2837,3052,3133,3142,3183,3198,3209,3834,3951,6978,7085,7512,7513,7548,8287,8362,8841,9180,9364,11241,11246,12376,19526,21483,22086,22925,23035]]],["some",[7,5,[[0,1,1,0,1,[[36,1,1,0,1]]],[8,1,1,1,2,[[262,1,1,1,2]]],[9,3,2,2,4,[[283,3,2,2,4]]],[11,2,1,4,5,[[314,2,1,4,5]]]],[1103,7935,8458,8461,9567]]],["the",[1,1,[[8,1,1,0,1,[[241,1,1,0,1]]]],[7343]]],["thing",[2,2,[[2,1,1,0,1,[[95,1,1,0,1]]],[20,1,1,1,2,[[661,1,1,1,2]]]],[2856,17378]]],["together",[5,5,[[14,3,3,0,3,[[404,1,1,0,1],[405,1,1,1,2],[408,1,1,2,3]]],[15,1,1,3,4,[[419,1,1,3,4]]],[22,1,1,4,5,[[743,1,1,4,5]]]],[12091,12106,12171,12486,18922]]]]},{"k":"H260","v":[["*",[3,3,[[0,2,2,0,2,[[40,2,2,0,2]]],[17,1,1,2,3,[[443,1,1,2,3]]]],[1197,1213,13040]]],["flag",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13040]]],["meadow",[2,2,[[0,2,2,0,2,[[40,2,2,0,2]]]],[1197,1213]]]]},{"k":"H261","v":[["Ehud",[9,8,[[6,8,7,0,7,[[213,7,6,0,6],[214,1,1,6,7]]],[12,1,1,7,8,[[345,1,1,7,8]]]],[6583,6584,6588,6589,6591,6594,6600,10581]]]]},{"k":"H262","v":[["declaration",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13170]]]]},{"k":"H263","v":[["shewing",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21886]]]]},{"k":"H264","v":[["brotherhood",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23042]]]]},{"k":"H265","v":[["Ahoah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10579]]]]},{"k":"H266","v":[["*",[5,5,[[9,2,2,0,2,[[289,2,2,0,2]]],[12,3,3,2,5,[[348,2,2,2,4],[364,1,1,4,5]]]],[8662,8681,10685,10702,11113]]],["+",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8662]]],["Ahohite",[4,4,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,3,3,1,4,[[348,2,2,1,3],[364,1,1,3,4]]]],[8681,10685,10702,11113]]]]},{"k":"H267","v":[["Ahumai",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10387]]]]},{"k":"H268","v":[["*",[41,41,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[75,1,1,1,2],[82,1,1,2,3]]],[9,2,2,3,5,[[267,1,1,3,4],[276,1,1,4,5]]],[10,1,1,5,6,[[297,1,1,5,6]]],[12,1,1,6,7,[[356,1,1,6,7]]],[13,2,2,7,9,[[370,1,1,7,8],[379,1,1,8,9]]],[17,1,1,9,10,[[458,1,1,9,10]]],[18,12,12,10,22,[[486,1,1,10,11],[512,1,1,11,12],[517,1,1,12,13],[521,2,2,13,15],[533,1,1,15,16],[547,1,1,16,17],[555,1,1,17,18],[591,2,2,18,20],[606,1,1,20,21],[616,1,1,21,22]]],[19,1,1,22,23,[[656,1,1,22,23]]],[22,9,9,23,32,[[679,1,1,23,24],[687,1,1,24,25],[706,1,1,25,26],[719,1,1,26,27],[720,2,2,27,29],[722,1,1,29,30],[728,1,1,30,31],[737,1,1,31,32]]],[23,4,4,32,36,[[751,1,1,32,33],[759,1,1,33,34],[782,1,1,34,35],[790,1,1,35,36]]],[24,3,3,36,39,[[797,2,2,36,38],[798,1,1,38,39]]],[25,2,2,39,41,[[803,1,1,39,40],[809,1,1,40,41]]]],[1490,2247,2496,8044,8249,8959,10917,11250,11467,13427,14024,14414,14539,14581,14589,14764,14973,15179,15825,15827,16137,16244,17235,17658,17841,18177,18474,18497,18503,18558,18667,18814,19143,19321,19917,20050,20318,20323,20335,20502,20620]]],["+",[2,2,[[9,1,1,0,1,[[276,1,1,0,1]]],[22,1,1,1,2,[[687,1,1,1,2]]]],[8249,17841]]],["afterwards",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17235]]],["back",[15,15,[[9,1,1,0,1,[[267,1,1,0,1]]],[18,8,8,1,9,[[486,1,1,1,2],[512,1,1,2,3],[521,2,2,3,5],[533,1,1,5,6],[591,2,2,6,8],[606,1,1,8,9]]],[22,2,2,9,11,[[720,1,1,9,10],[728,1,1,10,11]]],[23,2,2,11,13,[[782,1,1,11,12],[790,1,1,12,13]]],[24,2,2,13,15,[[797,1,1,13,14],[798,1,1,14,15]]]],[8044,14024,14414,14581,14589,14764,15825,15827,16137,18497,18667,19917,20050,20323,20335]]],["backs",[1,1,[[25,1,1,0,1,[[809,1,1,0,1]]]],[20620]]],["backside",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2247]]],["backward",[11,11,[[0,1,1,0,1,[[48,1,1,0,1]]],[17,1,1,1,2,[[458,1,1,1,2]]],[18,2,2,2,4,[[517,1,1,2,3],[547,1,1,3,4]]],[22,4,4,4,8,[[679,1,1,4,5],[706,1,1,5,6],[722,1,1,6,7],[737,1,1,7,8]]],[23,2,2,8,10,[[751,1,1,8,9],[759,1,1,9,10]]],[24,1,1,10,11,[[797,1,1,10,11]]]],[1490,13427,14539,14973,17658,18177,18558,18814,19143,19321,20318]]],["behind",[3,3,[[12,1,1,0,1,[[356,1,1,0,1]]],[13,1,1,1,2,[[379,1,1,1,2]]],[18,1,1,2,3,[[616,1,1,2,3]]]],[10917,11467,16244]]],["come",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18503]]],["hereafter",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18474]]],["parts",[4,4,[[1,1,1,0,1,[[82,1,1,0,1]]],[10,1,1,1,2,[[297,1,1,1,2]]],[13,1,1,2,3,[[370,1,1,2,3]]],[18,1,1,3,4,[[555,1,1,3,4]]]],[2496,8959,11250,15179]]],["without",[1,1,[[25,1,1,0,1,[[803,1,1,0,1]]]],[20502]]]]},{"k":"H269","v":[["*",[114,104,[[0,24,23,0,23,[[3,1,1,0,1],[11,2,2,1,3],[19,3,3,3,6],[23,4,3,6,9],[24,1,1,9,10],[25,2,2,10,12],[27,1,1,12,13],[28,1,1,13,14],[29,2,2,14,16],[33,4,4,16,20],[35,2,2,20,22],[45,1,1,22,23]]],[1,9,8,23,31,[[51,2,2,23,25],[55,1,1,25,26],[64,1,1,26,27],[75,5,4,27,31]]],[2,10,8,31,39,[[107,5,5,31,36],[109,4,2,36,38],[110,1,1,38,39]]],[3,3,3,39,42,[[122,1,1,39,40],[141,1,1,40,41],[142,1,1,41,42]]],[4,1,1,42,43,[[179,1,1,42,43]]],[5,1,1,43,44,[[188,1,1,43,44]]],[6,1,1,44,45,[[225,1,1,44,45]]],[9,10,10,45,55,[[279,9,9,45,54],[283,1,1,54,55]]],[10,3,2,55,57,[[301,3,2,55,57]]],[11,1,1,57,58,[[323,1,1,57,58]]],[12,10,10,58,68,[[338,1,1,58,59],[339,1,1,59,60],[340,2,2,60,62],[341,2,2,62,64],[344,4,4,64,68]]],[13,1,1,68,69,[[388,1,1,68,69]]],[17,3,3,69,72,[[436,1,1,69,70],[452,1,1,70,71],[477,1,1,71,72]]],[19,1,1,72,73,[[634,1,1,72,73]]],[21,7,6,73,79,[[674,3,3,73,76],[675,2,2,76,78],[678,2,1,78,79]]],[23,4,4,79,83,[[747,3,3,79,82],[766,1,1,82,83]]],[25,24,20,83,103,[[802,2,2,83,85],[804,1,1,85,86],[817,12,9,86,95],[823,1,1,95,96],[824,7,6,96,102],[845,1,1,102,103]]],[27,1,1,103,104,[[863,1,1,103,104]]]],[101,311,317,497,500,507,621,650,651,678,699,701,782,808,831,838,993,994,1007,1011,1043,1062,1403,1558,1561,1678,1940,2238,2240,2241,2252,3260,3262,3263,3264,3269,3335,3337,3348,3830,4489,4548,5607,5882,6931,8318,8319,8321,8322,8323,8328,8337,8339,8349,8474,9127,9128,9831,10291,10322,10370,10380,10388,10404,10550,10553,10565,10567,11655,12873,13274,13933,16579,17591,17592,17594,17599,17600,17648,19009,19010,19012,19472,20473,20487,20515,20807,20808,20810,20811,20813,20814,20817,20818,20823,20987,21011,21018,21025,21038,21039,21040,21624,22106]]],["+",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2241]]],["another",[6,5,[[1,4,3,0,3,[[75,4,3,0,3]]],[25,2,2,3,5,[[802,1,1,3,4],[804,1,1,4,5]]]],[2238,2240,2252,20473,20515]]],["other",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20487]]],["sister",[90,85,[[0,22,22,0,22,[[3,1,1,0,1],[11,2,2,1,3],[19,3,3,3,6],[23,3,3,6,9],[24,1,1,9,10],[25,2,2,10,12],[27,1,1,12,13],[29,2,2,13,15],[33,4,4,15,19],[35,2,2,19,21],[45,1,1,21,22]]],[1,4,4,22,26,[[51,2,2,22,24],[55,1,1,24,25],[64,1,1,25,26]]],[2,9,8,26,34,[[107,5,5,26,31],[109,3,2,31,33],[110,1,1,33,34]]],[3,3,3,34,37,[[122,1,1,34,35],[141,1,1,35,36],[142,1,1,36,37]]],[4,1,1,37,38,[[179,1,1,37,38]]],[6,1,1,38,39,[[225,1,1,38,39]]],[9,10,10,39,49,[[279,9,9,39,48],[283,1,1,48,49]]],[10,3,2,49,51,[[301,3,2,49,51]]],[11,1,1,51,52,[[323,1,1,51,52]]],[12,8,8,52,60,[[338,1,1,52,53],[340,2,2,53,55],[341,2,2,55,57],[344,3,3,57,60]]],[13,1,1,60,61,[[388,1,1,60,61]]],[17,1,1,61,62,[[452,1,1,61,62]]],[19,1,1,62,63,[[634,1,1,62,63]]],[21,7,6,63,69,[[674,3,3,63,66],[675,2,2,66,68],[678,2,1,68,69]]],[23,4,4,69,73,[[747,3,3,69,72],[766,1,1,72,73]]],[25,14,12,73,85,[[817,6,5,73,78],[823,1,1,78,79],[824,6,5,79,84],[845,1,1,84,85]]]],[101,311,317,497,500,507,621,650,651,678,699,701,782,831,838,993,994,1007,1011,1043,1062,1403,1558,1561,1678,1940,3260,3262,3263,3264,3269,3335,3337,3348,3830,4489,4548,5607,6931,8318,8319,8321,8322,8323,8328,8337,8339,8349,8474,9127,9128,9831,10291,10370,10380,10388,10404,10553,10565,10567,11655,13274,16579,17591,17592,17594,17599,17600,17648,19009,19010,19012,19472,20807,20808,20810,20811,20818,20987,21011,21018,21025,21038,21040,21624]]],["sister's",[5,5,[[0,2,2,0,2,[[23,1,1,0,1],[28,1,1,1,2]]],[2,1,1,2,3,[[109,1,1,2,3]]],[12,1,1,3,4,[[344,1,1,3,4]]],[25,1,1,4,5,[[824,1,1,4,5]]]],[621,808,3335,10550,21039]]],["sisters",[11,10,[[5,1,1,0,1,[[188,1,1,0,1]]],[12,1,1,1,2,[[339,1,1,1,2]]],[17,2,2,2,4,[[436,1,1,2,3],[477,1,1,3,4]]],[25,6,5,4,9,[[817,6,5,4,9]]],[27,1,1,9,10,[[863,1,1,9,10]]]],[5882,10322,12873,13933,20807,20813,20814,20817,20823,22106]]]]},{"k":"H270","v":[["*",[65,61,[[0,4,4,0,4,[[21,1,1,0,1],[24,1,1,1,2],[33,1,1,2,3],[46,1,1,3,4]]],[1,3,3,4,7,[[53,1,1,4,5],[64,2,2,5,7]]],[3,3,3,7,10,[[147,2,2,7,9],[148,1,1,9,10]]],[4,1,1,10,11,[[184,1,1,10,11]]],[5,2,2,11,13,[[208,2,2,11,13]]],[6,5,5,13,18,[[211,1,1,13,14],[222,1,1,14,15],[226,2,2,15,17],[230,1,1,17,18]]],[7,2,1,18,19,[[234,2,1,18,19]]],[9,5,5,19,24,[[267,1,1,19,20],[268,1,1,20,21],[270,1,1,21,22],[272,1,1,22,23],[286,1,1,23,24]]],[10,3,3,24,27,[[291,1,1,24,25],[296,2,2,25,27]]],[12,3,2,27,29,[[350,1,1,27,28],[361,2,1,28,29]]],[13,2,2,29,31,[[375,1,1,29,30],[391,1,1,30,31]]],[15,1,1,31,32,[[419,1,1,31,32]]],[16,1,1,32,33,[[426,1,1,32,33]]],[17,8,8,33,41,[[451,1,1,33,34],[452,1,1,34,35],[453,1,1,35,36],[456,1,1,36,37],[458,1,1,37,38],[461,1,1,38,39],[465,1,1,39,40],[473,1,1,40,41]]],[18,6,6,41,47,[[525,1,1,41,42],[550,1,1,42,43],[554,1,1,43,44],[596,1,1,44,45],[614,1,1,45,46],[616,1,1,46,47]]],[20,4,3,47,50,[[660,1,1,47,48],[665,1,1,48,49],[667,2,1,49,50]]],[21,4,4,50,54,[[672,1,1,50,51],[673,2,2,51,53],[677,1,1,53,54]]],[22,4,4,54,58,[[683,1,1,54,55],[691,1,1,55,56],[699,1,1,56,57],[711,1,1,57,58]]],[23,2,2,58,60,[[757,1,1,58,59],[793,1,1,59,60]]],[25,2,1,60,61,[[842,2,1,60,61]]]],[560,684,990,1447,1605,1934,1935,4694,4711,4748,5799,6435,6445,6515,6875,6952,6970,7060,7187,8031,8070,8130,8163,8563,8768,8902,8906,10769,11021,11382,11709,12423,12708,13250,13269,13285,13361,13430,13476,13573,13806,14640,15043,15097,15951,16231,16249,17336,17447,17487,17569,17575,17579,17635,17768,17914,18038,18293,19287,20151,21532]]],["+",[4,4,[[10,1,1,0,1,[[296,1,1,0,1]]],[12,1,1,1,2,[[350,1,1,1,2]]],[18,1,1,2,3,[[614,1,1,2,3]]],[20,1,1,3,4,[[667,1,1,3,4]]]],[8906,10769,16231,17487]]],["Take",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17569]]],["back",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13476]]],["bar",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12423]]],["caught",[3,3,[[0,1,1,0,1,[[21,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]],[20,1,1,2,3,[[667,1,1,2,3]]]],[560,6515,17487]]],["come",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8031]]],["fastened",[3,3,[[10,1,1,0,1,[[296,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]],[16,1,1,2,3,[[426,1,1,2,3]]]],[8902,11382,12708]]],["handle",[1,1,[[13,1,1,0,1,[[391,1,1,0,1]]]],[11709]]],["held",[3,3,[[7,1,1,0,1,[[234,1,1,0,1]]],[17,1,1,1,2,[[458,1,1,1,2]]],[21,1,1,2,3,[[673,1,1,2,3]]]],[7187,13430,17575]]],["hold",[21,20,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[7,1,1,3,4,[[234,1,1,3,4]]],[9,3,3,4,7,[[268,1,1,4,5],[270,1,1,5,6],[272,1,1,6,7]]],[10,1,1,7,8,[[291,1,1,7,8]]],[17,3,3,8,11,[[452,1,1,8,9],[456,1,1,9,10],[473,1,1,10,11]]],[18,1,1,11,12,[[616,1,1,11,12]]],[20,2,2,12,14,[[660,1,1,12,13],[665,1,1,13,14]]],[21,2,2,14,16,[[673,1,1,14,15],[677,1,1,15,16]]],[22,3,3,16,19,[[683,1,1,16,17],[691,1,1,17,18],[699,1,1,18,19]]],[25,2,1,19,20,[[842,2,1,19,20]]]],[684,1934,5799,7187,8070,8130,8163,8768,13269,13361,13806,16249,17336,17447,17579,17635,17768,17914,18038,21532]]],["holden",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15043]]],["holdest",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15097]]],["portion",[2,2,[[3,2,2,0,2,[[147,2,2,0,2]]]],[4694,4711]]],["possessed",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6435]]],["possession",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6445]]],["possessions",[3,3,[[0,2,2,0,2,[[33,1,1,0,1],[46,1,1,1,2]]],[3,1,1,2,3,[[148,1,1,2,3]]]],[990,1447,4748]]],["surprised",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18293]]],["take",[3,3,[[1,1,1,0,1,[[53,1,1,0,1]]],[17,1,1,1,2,[[453,1,1,1,2]]],[23,1,1,2,3,[[757,1,1,2,3]]]],[1605,13285,19287]]],["taken",[4,3,[[12,2,1,0,1,[[361,2,1,0,1]]],[17,1,1,1,2,[[451,1,1,1,2]]],[23,1,1,2,3,[[793,1,1,2,3]]]],[11021,13250,20151]]],["took",[5,5,[[6,4,4,0,4,[[222,1,1,0,1],[226,2,2,1,3],[230,1,1,3,4]]],[9,1,1,4,5,[[286,1,1,4,5]]]],[6875,6952,6970,7060,8563]]],["upon",[4,4,[[1,1,1,0,1,[[64,1,1,0,1]]],[17,1,1,1,2,[[465,1,1,1,2]]],[18,2,2,2,4,[[525,1,1,2,3],[596,1,1,3,4]]]],[1935,13573,14640,15951]]]]},{"k":"H271","v":[["Ahaz",[41,39,[[11,19,17,0,17,[[327,1,1,0,1],[328,14,12,1,13],[329,1,1,13,14],[330,1,1,14,15],[332,1,1,15,16],[335,1,1,16,17]]],[12,4,4,17,21,[[340,1,1,17,18],[345,2,2,18,20],[346,1,1,20,21]]],[13,9,9,21,30,[[393,1,1,21,22],[394,7,7,22,29],[395,1,1,29,30]]],[22,7,7,30,37,[[679,1,1,30,31],[685,4,4,31,35],[692,1,1,35,36],[716,1,1,36,37]]],[27,1,1,37,38,[[862,1,1,37,38]]],[32,1,1,38,39,[[893,1,1,38,39]]]],[9963,9964,9965,9968,9970,9971,9973,9974,9978,9979,9980,9982,9983,9984,10025,10109,10177,10374,10610,10611,10657,11764,11765,11780,11783,11785,11786,11788,11791,11810,17655,17783,17785,17792,17794,17956,18398,22095,22580]]]]},{"k":"H272","v":[["*",[66,58,[[0,9,9,0,9,[[16,1,1,0,1],[22,3,3,1,4],[35,1,1,4,5],[46,1,1,5,6],[47,1,1,6,7],[48,1,1,7,8],[49,1,1,8,9]]],[2,20,18,9,27,[[103,2,1,9,10],[114,13,12,10,22],[116,5,5,22,27]]],[3,9,9,27,36,[[143,2,2,27,29],[148,4,4,29,33],[151,3,3,33,36]]],[4,1,1,36,37,[[184,1,1,36,37]]],[5,6,5,37,42,[[207,2,2,37,39],[208,4,3,39,42]]],[12,2,2,42,44,[[344,1,1,42,43],[346,1,1,43,44]]],[13,2,2,44,46,[[377,1,1,44,45],[397,1,1,45,46]]],[15,1,1,46,47,[[423,1,1,46,47]]],[18,1,1,47,48,[[479,1,1,47,48]]],[25,15,10,48,58,[[845,2,1,48,49],[846,5,4,49,53],[847,4,2,53,55],[849,4,3,55,58]]]],[405,575,580,591,1083,1431,1455,1503,1519,3145,3479,3482,3493,3494,3496,3497,3501,3502,3503,3510,3514,3515,3586,3591,3592,3594,3598,4558,4561,4723,4740,4747,4750,4847,4853,4873,5807,6393,6422,6430,6435,6445,10563,10617,11428,11855,12591,13953,21627,21635,21636,21637,21638,21671,21673,21722,21723,21724]]],["+",[7,4,[[2,1,1,0,1,[[114,1,1,0,1]]],[3,1,1,1,2,[[151,1,1,1,2]]],[25,5,2,2,4,[[847,3,1,2,3],[849,2,1,3,4]]]],[3494,4853,21673,21724]]],["possession",[57,52,[[0,9,9,0,9,[[16,1,1,0,1],[22,3,3,1,4],[35,1,1,4,5],[46,1,1,5,6],[47,1,1,6,7],[48,1,1,7,8],[49,1,1,8,9]]],[2,19,17,9,26,[[103,2,1,9,10],[114,12,11,10,21],[116,5,5,21,26]]],[3,8,8,26,34,[[143,2,2,26,28],[148,4,4,28,32],[151,2,2,32,34]]],[4,1,1,34,35,[[184,1,1,34,35]]],[5,6,5,35,40,[[207,2,2,35,37],[208,4,3,37,40]]],[13,2,2,40,42,[[377,1,1,40,41],[397,1,1,41,42]]],[15,1,1,42,43,[[423,1,1,42,43]]],[18,1,1,43,44,[[479,1,1,43,44]]],[25,10,8,44,52,[[845,2,1,44,45],[846,5,4,45,49],[847,1,1,49,50],[849,2,2,50,52]]]],[405,575,580,591,1083,1431,1455,1503,1519,3145,3479,3482,3493,3496,3497,3501,3502,3503,3510,3514,3515,3586,3591,3592,3594,3598,4558,4561,4723,4740,4747,4750,4847,4873,5807,6393,6422,6430,6435,6445,11428,11855,12591,13953,21627,21635,21636,21637,21638,21671,21722,21723]]],["possessions",[2,2,[[12,2,2,0,2,[[344,1,1,0,1],[346,1,1,1,2]]]],[10563,10617]]]]},{"k":"H273","v":[["Ahasai",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12601]]]]},{"k":"H274","v":[["Ahaziah",[37,30,[[10,3,3,0,3,[[312,3,3,0,3]]],[11,20,17,3,20,[[313,2,2,3,5],[320,4,4,5,9],[321,6,5,9,14],[322,2,1,14,15],[323,3,2,15,17],[324,1,1,17,18],[325,1,1,18,19],[326,1,1,19,20]]],[12,1,1,20,21,[[340,1,1,20,21]]],[13,13,9,21,30,[[386,2,2,21,23],[388,11,7,23,30]]]],[9520,9529,9531,9535,9551,9751,9752,9753,9756,9772,9777,9779,9783,9785,9806,9830,9831,9868,9872,9909,10372,11622,11624,11645,11646,11651,11652,11653,11654,11655]]]]},{"k":"H275","v":[["Ahuzam",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10391]]]]},{"k":"H276","v":[["Ahuzzath",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[718]]]]},{"k":"H277","v":[["Ahi",[2,2,[[12,2,2,0,2,[[342,1,1,0,1],[344,1,1,1,2]]]],[10443,10569]]]]},{"k":"H278","v":[["Ehi",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1407]]]]},{"k":"H279","v":[["Ahiam",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8686,10708]]]]},{"k":"H280","v":[["sentences",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21886]]]]},{"k":"H281","v":[["*",[24,23,[[8,2,2,0,2,[[249,2,2,0,2]]],[10,14,13,2,15,[[294,1,1,2,3],[301,2,2,3,5],[302,1,1,5,6],[304,6,5,6,11],[305,3,3,11,14],[311,1,1,14,15]]],[11,1,1,15,16,[[321,1,1,15,16]]],[12,4,4,16,20,[[339,1,1,16,17],[345,1,1,17,18],[348,1,1,18,19],[363,1,1,19,20]]],[13,2,2,20,22,[[375,1,1,20,21],[376,1,1,21,22]]],[15,1,1,22,23,[[422,1,1,22,23]]]],[7511,7526,8847,9137,9138,9166,9220,9222,9223,9224,9236,9276,9278,9282,9473,9765,10331,10582,10709,11097,11393,11410,12575]]],["Ahiah",[4,4,[[8,2,2,0,2,[[249,2,2,0,2]]],[10,1,1,2,3,[[294,1,1,2,3]]],[12,1,1,3,4,[[345,1,1,3,4]]]],[7511,7526,8847,10582]]],["Ahijah",[20,19,[[10,13,12,0,12,[[301,2,2,0,2],[302,1,1,2,3],[304,6,5,3,8],[305,3,3,8,11],[311,1,1,11,12]]],[11,1,1,12,13,[[321,1,1,12,13]]],[12,3,3,13,16,[[339,1,1,13,14],[348,1,1,14,15],[363,1,1,15,16]]],[13,2,2,16,18,[[375,1,1,16,17],[376,1,1,17,18]]],[15,1,1,18,19,[[422,1,1,18,19]]]],[9137,9138,9166,9220,9222,9223,9224,9236,9276,9278,9282,9473,9765,10331,10709,11097,11393,11410,12575]]]]},{"k":"H282","v":[["Ahihud",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4843]]]]},{"k":"H283","v":[["Ahio",[6,6,[[9,2,2,0,2,[[272,2,2,0,2]]],[12,4,4,2,6,[[345,2,2,2,4],[346,1,1,4,5],[350,1,1,5,6]]]],[8160,8161,10589,10606,10652,10767]]]]},{"k":"H284","v":[["Ahihud",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10582]]]]},{"k":"H285","v":[["Ahitub",[15,15,[[8,5,5,0,5,[[249,1,1,0,1],[257,4,4,1,5]]],[9,1,1,5,6,[[274,1,1,5,6]]],[12,7,7,6,13,[[343,5,5,6,11],[346,1,1,11,12],[355,1,1,12,13]]],[14,1,1,13,14,[[409,1,1,13,14]]],[15,1,1,14,15,[[423,1,1,14,15]]]],[7511,7796,7798,7799,7807,8226,10461,10462,10465,10466,10506,10626,10906,12175,12599]]]]},{"k":"H286","v":[["Ahilud",[5,5,[[9,2,2,0,2,[[274,1,1,0,1],[286,1,1,1,2]]],[10,2,2,2,4,[[294,2,2,2,4]]],[12,1,1,4,5,[[355,1,1,4,5]]]],[8225,8578,8847,8856,10905]]]]},{"k":"H287","v":[["Ahimoth",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10479]]]]},{"k":"H288","v":[["*",[16,15,[[8,12,11,0,11,[[256,4,3,0,3],[257,5,5,3,8],[258,1,1,8,9],[261,1,1,9,10],[265,1,1,10,11]]],[9,1,1,11,12,[[274,1,1,11,12]]],[12,3,3,12,15,[[361,3,3,12,15]]]],[7773,7774,7780,7796,7798,7801,7803,7807,7816,7911,7985,8226,11018,11021,11046]]],["Ahimelech",[15,14,[[8,11,10,0,10,[[256,4,3,0,3],[257,5,5,3,8],[258,1,1,8,9],[261,1,1,9,10]]],[9,1,1,10,11,[[274,1,1,10,11]]],[12,3,3,11,14,[[361,3,3,11,14]]]],[7773,7774,7780,7796,7798,7801,7803,7807,7816,7911,8226,11018,11021,11046]]],["Ahimelech's",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7985]]]]},{"k":"H289","v":[["Ahiman",[4,4,[[3,1,1,0,1,[[129,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]],[6,1,1,2,3,[[211,1,1,2,3]]],[12,1,1,3,4,[[346,1,1,3,4]]]],[4097,6216,6519,10632]]]]},{"k":"H290","v":[["Ahimaaz",[15,15,[[8,1,1,0,1,[[249,1,1,0,1]]],[9,10,10,1,11,[[281,2,2,1,3],[283,2,2,3,5],[284,6,6,5,11]]],[10,1,1,11,12,[[294,1,1,11,12]]],[12,3,3,12,15,[[343,3,3,12,15]]]],[7558,8416,8425,8466,8469,8497,8500,8501,8505,8506,8507,8859,10462,10463,10507]]]]},{"k":"H291","v":[["Ahian",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10554]]]]},{"k":"H292","v":[["Ahinadab",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8858]]]]},{"k":"H293","v":[["Ahinoam",[7,7,[[8,4,4,0,4,[[249,1,1,0,1],[260,1,1,1,2],[262,1,1,2,3],[265,1,1,3,4]]],[9,2,2,4,6,[[268,1,1,4,5],[269,1,1,5,6]]],[12,1,1,6,7,[[340,1,1,6,7]]]],[7558,7904,7933,7983,8051,8083,10362]]]]},{"k":"H294","v":[["Ahisamach",[3,3,[[1,3,3,0,3,[[80,1,1,0,1],[84,1,1,1,2],[87,1,1,2,3]]]],[2426,2565,2656]]]]},{"k":"H295","v":[["Ahiezer",[6,6,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]],[12,1,1,5,6,[[349,1,1,5,6]]]],[3616,3683,3916,3921,4013,10723]]]]},{"k":"H296","v":[["Ahikam",[20,20,[[11,3,3,0,3,[[334,2,2,0,2],[337,1,1,2,3]]],[13,1,1,3,4,[[400,1,1,3,4]]],[23,16,16,4,20,[[770,1,1,4,5],[783,1,1,5,6],[784,7,7,6,13],[785,6,6,13,19],[787,1,1,19,20]]]],[10157,10159,10244,11953,19596,19937,19946,19947,19948,19950,19952,19955,19957,19958,19959,19963,19967,19973,19975,20003]]]]},{"k":"H297","v":[["Ahiram",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4527]]]]},{"k":"H298","v":[["Ahiramites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4527]]]]},{"k":"H299","v":[["Ahira",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3619,3687,3928,3933,4015]]]]},{"k":"H300","v":[["Ahishahar",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10545]]]]},{"k":"H301","v":[["Ahishar",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8850]]]]},{"k":"H302","v":[["Ahithophel",[20,17,[[9,18,15,0,15,[[281,4,3,0,3],[282,5,4,3,7],[283,8,7,7,14],[289,1,1,14,15]]],[12,2,2,15,17,[[364,2,2,15,17]]]],[8401,8420,8423,8441,8446,8447,8449,8450,8455,8456,8463,8464,8470,8472,8687,11142,11143]]]]},{"k":"H303","v":[["Ahlab",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6540]]]]},{"k":"H304","v":[["Ahlai",[2,2,[[12,2,2,0,2,[[339,1,1,0,1],[348,1,1,1,2]]]],[10337,10714]]]]},{"k":"H305","v":[["*",[2,2,[[11,1,1,0,1,[[317,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[9650,15903]]],["God",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9650]]],["that",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15903]]]]},{"k":"H306","v":[["amethyst",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2312,2676]]]]},{"k":"H307","v":[["Achmetha",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12153]]]]},{"k":"H308","v":[["Ahasbai",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8687]]]]},{"k":"H309","v":[["*",[16,16,[[0,3,3,0,3,[[23,1,1,0,1],[31,1,1,1,2],[33,1,1,2,3]]],[1,1,1,3,4,[[71,1,1,3,4]]],[4,2,2,4,6,[[159,1,1,4,5],[175,1,1,5,6]]],[6,1,1,6,7,[[215,1,1,6,7]]],[18,3,3,7,10,[[517,1,1,7,8],[547,1,1,8,9],[604,1,1,9,10]]],[19,1,1,10,11,[[650,1,1,10,11]]],[20,1,1,11,12,[[663,1,1,11,12]]],[22,2,2,12,14,[[683,1,1,12,13],[724,1,1,13,14]]],[26,1,1,14,15,[[858,1,1,14,15]]],[34,1,1,15,16,[[904,1,1,15,16]]]],[647,932,999,2142,5121,5521,6651,14542,14976,16123,17074,17401,17750,18599,22007,22751]]],["Hinder",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[647]]],["continue",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17750]]],["defer",[2,2,[[20,1,1,0,1,[[663,1,1,0,1]]],[26,1,1,1,2,[[858,1,1,1,2]]]],[17401,22007]]],["deferred",[1,1,[[0,1,1,0,1,[[33,1,1,0,1]]]],[999]]],["delay",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2142]]],["late",[1,1,[[18,1,1,0,1,[[604,1,1,0,1]]]],[16123]]],["long",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17074]]],["slack",[2,2,[[4,2,2,0,2,[[159,1,1,0,1],[175,1,1,1,2]]]],[5121,5521]]],["tarry",[3,3,[[6,1,1,0,1,[[215,1,1,0,1]]],[22,1,1,1,2,[[724,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[6651,18599,22751]]],["tarrying",[2,2,[[18,2,2,0,2,[[517,1,1,0,1],[547,1,1,1,2]]]],[14542,14976]]],["there",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[932]]]]},{"k":"H310","v":[["*",[714,664,[[0,85,83,0,83,[[4,9,9,0,9],[5,1,1,9,10],[8,2,2,10,12],[9,3,3,12,15],[10,9,9,15,24],[12,1,1,24,25],[13,1,1,25,26],[14,2,2,26,28],[15,1,1,28,29],[16,6,5,29,34],[17,4,4,34,38],[18,3,3,38,41],[21,3,3,41,44],[22,1,1,44,45],[23,7,7,45,52],[24,2,2,52,54],[25,1,1,54,55],[29,1,1,55,56],[30,2,2,56,58],[31,4,3,58,61],[32,1,1,61,62],[34,2,2,62,64],[36,1,1,64,65],[37,1,1,65,66],[38,1,1,66,67],[39,1,1,67,68],[40,8,8,68,76],[43,1,1,76,77],[44,1,1,77,78],[45,1,1,78,79],[47,3,3,79,82],[49,1,1,82,83]]],[1,28,25,83,108,[[52,2,2,83,85],[54,1,1,85,86],[56,1,1,86,87],[59,1,1,87,88],[60,3,3,88,91],[63,9,8,91,99],[64,1,1,99,100],[67,1,1,100,101],[72,2,1,101,102],[77,1,1,102,103],[78,1,1,103,104],[82,1,1,104,105],[83,4,3,105,108]]],[2,25,22,108,130,[[102,4,4,108,112],[103,7,5,112,117],[104,1,1,117,118],[105,3,3,118,121],[106,1,1,121,122],[109,3,2,122,124],[111,1,1,124,125],[114,3,3,125,128],[115,1,1,128,129],[116,1,1,129,130]]],[3,28,27,130,157,[[119,1,1,130,131],[120,1,1,131,132],[121,1,1,132,133],[122,2,2,133,135],[123,1,1,135,136],[124,2,2,136,138],[125,1,1,138,139],[128,2,2,139,141],[130,2,2,141,143],[131,2,1,143,144],[132,1,1,144,145],[135,1,1,145,146],[141,2,2,146,148],[142,1,1,148,149],[146,1,1,149,150],[147,2,2,150,152],[148,4,4,152,156],[151,1,1,156,157]]],[4,31,30,157,187,[[153,3,3,157,160],[156,3,3,160,163],[158,1,1,163,164],[159,1,1,164,165],[160,1,1,165,166],[162,1,1,166,167],[163,3,3,167,170],[164,4,3,170,173],[165,2,2,173,175],[171,1,1,175,176],[173,1,1,176,177],[175,1,1,177,178],[176,3,3,178,181],[177,1,1,181,182],[180,1,1,182,183],[181,1,1,183,184],[183,3,3,184,187]]],[5,40,36,187,223,[[187,1,1,187,188],[188,5,3,188,191],[189,1,1,191,192],[192,3,3,192,195],[193,1,1,195,196],[194,10,8,196,204],[195,1,1,204,205],[196,3,3,205,208],[200,3,3,208,211],[206,1,1,211,212],[208,5,5,212,217],[209,1,1,217,218],[210,5,5,218,223]]],[6,42,40,223,263,[[211,3,3,223,226],[212,5,5,226,231],[213,4,3,231,234],[214,3,2,234,236],[215,1,1,236,237],[216,2,2,237,239],[217,2,2,239,241],[218,4,4,241,245],[219,3,3,245,248],[220,2,2,248,250],[221,1,1,250,251],[222,3,3,251,254],[223,1,1,254,255],[225,1,1,255,256],[226,1,1,256,257],[228,1,1,257,258],[229,3,3,258,261],[230,2,2,261,263]]],[7,9,9,263,272,[[232,2,2,263,265],[233,5,5,265,270],[234,1,1,270,271],[235,1,1,271,272]]],[8,53,45,272,317,[[236,2,1,272,273],[240,1,1,273,274],[241,2,2,274,276],[242,1,1,276,277],[243,1,1,277,278],[244,1,1,278,279],[245,1,1,279,280],[246,3,2,280,282],[247,3,3,282,285],[248,2,2,285,287],[249,7,6,287,293],[250,2,2,293,295],[252,4,4,295,299],[255,2,2,299,301],[256,1,1,301,302],[257,1,1,302,303],[258,2,2,303,305],[259,10,5,305,310],[260,3,3,310,313],[261,2,2,313,315],[265,2,2,315,317]]],[9,59,54,317,371,[[267,3,3,317,320],[268,15,13,320,333],[269,4,4,333,337],[271,2,2,337,339],[273,2,2,339,341],[274,1,1,341,342],[276,1,1,342,343],[277,2,2,343,345],[279,4,4,345,349],[281,2,2,349,351],[283,3,3,351,354],[284,2,2,354,356],[285,1,1,356,357],[286,10,7,357,364],[287,3,3,364,367],[289,3,3,367,370],[290,1,1,370,371]]],[10,56,46,371,417,[[291,11,11,371,382],[292,2,1,382,383],[293,1,1,383,384],[299,2,2,384,386],[300,1,1,386,387],[301,6,5,387,392],[302,1,1,392,393],[303,5,4,393,397],[304,3,3,397,400],[305,1,1,400,401],[306,6,3,401,404],[307,1,1,404,405],[308,3,2,405,407],[309,7,4,407,411],[310,2,2,411,413],[311,3,3,413,416],[312,1,1,416,417]]],[11,31,29,417,446,[[313,1,1,417,418],[314,1,1,418,419],[316,1,1,419,420],[317,3,2,420,422],[318,3,3,422,425],[319,2,2,425,427],[321,4,4,427,431],[322,1,1,431,432],[323,2,2,432,434],[325,1,1,434,435],[326,3,3,435,438],[329,3,2,438,440],[330,2,2,440,442],[331,1,1,442,443],[335,2,2,443,445],[337,1,1,445,446]]],[12,15,14,446,460,[[339,2,2,446,448],[342,1,1,448,449],[347,2,1,449,450],[348,1,1,450,451],[351,1,1,451,452],[354,2,2,452,454],[355,1,1,454,455],[356,1,1,455,456],[357,1,1,456,457],[364,2,2,457,459],[365,1,1,459,460]]],[13,30,28,460,488,[[367,1,1,460,461],[368,1,1,461,462],[374,1,1,462,463],[377,2,2,463,465],[379,3,2,465,467],[384,1,1,467,468],[386,2,2,468,470],[387,1,1,470,471],[388,1,1,471,472],[389,1,1,472,473],[390,2,2,473,475],[391,4,3,475,478],[392,2,2,478,480],[398,3,3,480,483],[399,1,1,483,484],[400,2,2,484,486],[401,2,2,486,488]]],[14,4,4,488,492,[[405,1,1,488,489],[409,1,1,489,490],[411,2,2,490,492]]],[15,25,22,492,514,[[415,16,13,492,505],[416,3,3,505,508],[417,1,1,508,509],[421,1,1,509,510],[423,1,1,510,511],[424,2,2,511,513],[425,1,1,513,514]]],[16,2,2,514,516,[[427,1,1,514,515],[428,1,1,515,516]]],[17,15,15,516,531,[[438,1,1,516,517],[453,1,1,517,518],[454,1,1,518,519],[456,3,3,519,522],[464,1,1,522,523],[466,1,1,523,524],[469,1,1,524,525],[472,1,1,525,526],[474,2,2,526,528],[476,1,1,528,529],[477,2,2,529,531]]],[18,9,9,531,540,[[522,1,1,531,532],[526,2,2,532,534],[527,1,1,534,535],[540,1,1,535,536],[545,1,1,536,537],[550,1,1,537,538],[555,1,1,538,539],[571,1,1,539,540]]],[19,6,6,540,546,[[634,1,1,540,541],[647,3,3,541,544],[651,1,1,544,545],[655,1,1,545,546]]],[20,8,8,546,554,[[660,2,2,546,548],[661,1,1,548,549],[664,1,1,549,550],[665,1,1,550,551],[667,1,1,551,552],[668,1,1,552,553],[670,1,1,553,554]]],[21,2,2,554,556,[[671,1,1,554,555],[672,1,1,555,556]]],[22,10,10,556,566,[[679,1,1,556,557],[708,1,1,557,558],[715,1,1,558,559],[716,1,1,559,560],[721,1,1,560,561],[723,1,1,561,562],[735,1,1,562,563],[737,1,1,563,564],[743,1,1,564,565],[744,1,1,565,566]]],[23,54,52,566,618,[[746,5,5,566,571],[747,3,3,571,574],[751,2,2,574,576],[752,1,1,576,577],[753,4,3,577,580],[755,1,1,580,581],[756,2,2,581,583],[757,2,2,583,585],[760,3,3,585,588],[761,1,1,588,589],[762,1,1,589,590],[765,1,1,590,591],[768,1,1,591,592],[769,2,2,592,594],[772,1,1,594,595],[773,2,2,595,597],[775,3,2,597,599],[776,4,4,599,603],[778,2,2,603,605],[779,1,1,605,606],[780,1,1,606,607],[783,1,1,607,608],[784,1,1,608,609],[785,1,1,609,610],[786,1,1,610,611],[790,1,1,611,612],[792,1,1,612,613],[793,2,2,613,615],[794,1,1,615,616],[795,1,1,616,617],[796,1,1,617,618]]],[25,25,25,618,643,[[804,1,1,618,619],[806,2,2,619,621],[807,1,1,621,622],[810,1,1,622,623],[811,1,1,623,624],[813,1,1,624,625],[814,1,1,625,626],[815,2,2,626,628],[817,2,2,628,630],[821,4,4,630,634],[824,2,2,634,636],[830,1,1,636,637],[834,1,1,637,638],[841,1,1,638,639],[842,1,1,639,640],[845,2,2,640,642],[847,1,1,642,643]]],[26,2,2,643,645,[[857,1,1,643,644],[858,1,1,644,645]]],[27,7,7,645,652,[[862,1,1,645,646],[863,2,2,646,648],[864,1,1,648,649],[866,2,2,649,651],[872,1,1,651,652]]],[28,5,4,652,656,[[877,5,4,652,656]]],[29,3,3,656,659,[[880,1,1,656,657],[885,2,2,657,659]]],[35,1,1,659,660,[[906,1,1,659,660]]],[37,4,4,660,664,[[911,1,1,660,661],[912,1,1,661,662],[916,1,1,662,663],[917,1,1,663,664]]]],[109,112,115,118,121,124,127,131,135,141,214,233,235,252,266,276,277,279,281,283,285,287,289,291,332,353,361,374,394,404,405,406,407,416,429,434,436,443,463,474,483,548,560,567,590,596,599,627,630,646,652,658,669,684,710,851,896,909,946,947,948,967,1016,1023,1100,1149,1156,1173,1198,1201,1214,1218,1222,1225,1226,1234,1328,1373,1416,1452,1455,1457,1520,1580,1599,1633,1710,1791,1807,1811,1814,1893,1897,1898,1899,1906,1908,1912,1917,1940,2001,2146,2336,2365,2481,2511,2512,2528,3059,3087,3107,3108,3119,3130,3147,3154,3159,3196,3202,3227,3229,3242,3323,3324,3376,3484,3515,3517,3557,3588,3715,3758,3818,3842,3843,3938,3954,3961,3982,4073,4075,4132,4151,4192,4219,4296,4479,4484,4490,4663,4666,4688,4729,4730,4733,4740,4873,4896,4900,4928,5007,5041,5044,5100,5115,5156,5201,5212,5236,5238,5265,5268,5270,5274,5276,5412,5460,5514,5529,5545,5546,5565,5625,5701,5744,5755,5757,5852,5874,5876,5885,5896,5957,5958,5962,5984,6004,6006,6008,6016,6018,6019,6022,6036,6053,6078,6083,6090,6195,6196,6201,6377,6442,6444,6449,6453,6455,6461,6481,6482,6496,6505,6507,6510,6515,6518,6552,6555,6557,6562,6564,6590,6596,6599,6613,6615,6637,6688,6689,6705,6717,6724,6731,6746,6752,6757,6758,6803,6812,6814,6865,6877,6880,6882,6895,6936,6953,7005,7027,7029,7047,7094,7099,7142,7143,7151,7152,7156,7158,7160,7182,7194,7221,7328,7338,7343,7354,7372,7404,7423,7450,7452,7474,7480,7481,7489,7492,7520,7521,7530,7544,7545,7554,7571,7591,7631,7632,7653,7671,7767,7768,7781,7807,7835,7838,7840,7844,7847,7853,7860,7874,7880,7903,7908,7923,7986,7999,8023,8029,8032,8050,8059,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8079,8097,8107,8109,8112,8145,8155,8188,8192,8210,8241,8267,8274,8318,8334,8335,8351,8390,8402,8450,8458,8470,8494,8500,8541,8556,8560,8561,8564,8565,8567,8568,8581,8594,8598,8662,8663,8664,8702,8723,8724,8730,8731,8734,8737,8741,8744,8747,8752,8757,8798,8828,9057,9072,9098,9110,9112,9113,9114,9118,9171,9198,9207,9215,9217,9226,9227,9228,9253,9286,9304,9305,9334,9359,9362,9398,9399,9407,9408,9423,9427,9452,9472,9477,9513,9534,9575,9633,9667,9668,9693,9698,9706,9721,9722,9774,9775,9781,9783,9822,9835,9844,9873,9913,9915,9918,9998,10004,10029,10030,10082,10168,10190,10227,10327,10330,10453,10661,10685,10788,10870,10874,10891,10908,10930,11116,11143,11151,11206,11228,11354,11430,11434,11466,11472,11574,11588,11622,11642,11648,11670,11681,11694,11718,11729,11731,11734,11749,11876,11884,11898,11922,11964,11966,11980,11986,12102,12174,12247,12250,12343,12344,12345,12347,12348,12349,12350,12351,12352,12354,12356,12357,12358,12372,12375,12382,12397,12537,12596,12656,12662,12690,12725,12748,12905,13278,13323,13358,13376,13388,13554,13595,13710,13773,13842,13844,13920,13929,13938,14611,14661,14665,14685,14847,14925,15044,15184,15446,16597,16961,16971,16979,17106,17219,17345,17351,17381,17429,17443,17478,17507,17525,17541,17563,17680,18238,18374,18407,18515,18575,18773,18813,18899,18939,18967,18970,18973,18988,18990,19009,19019,19021,19125,19128,19155,19189,19191,19197,19236,19255,19264,19276,19293,19347,19348,19352,19373,19396,19447,19525,19540,19560,19630,19637,19653,19710,19724,19747,19749,19770,19771,19809,19812,19838,19869,19928,19942,19973,19991,20071,20082,20133,20164,20187,20258,20284,20514,20548,20558,20572,20627,20644,20694,20711,20738,20742,20785,20796,20911,20919,20925,20934,21037,21042,21199,21311,21478,21541,21609,21625,21667,21962,22014,22096,22110,22118,22133,22160,22163,22250,22313,22314,22325,22339,22383,22465,22479,22793,22886,22907,22953,22976]]],["+",[140,137,[[0,10,10,0,10,[[14,1,1,0,1],[18,1,1,1,2],[23,4,4,2,6],[24,1,1,6,7],[31,2,2,7,9],[40,1,1,9,10]]],[1,6,5,10,15,[[60,1,1,10,11],[63,3,2,11,13],[72,1,1,13,14],[83,1,1,14,15]]],[2,4,4,15,19,[[103,2,2,15,17],[105,2,2,17,19]]],[3,5,5,19,24,[[122,1,1,19,20],[130,2,2,20,22],[132,1,1,22,23],[148,1,1,23,24]]],[4,6,6,24,30,[[156,1,1,24,25],[159,1,1,25,26],[171,1,1,26,27],[175,1,1,27,28],[176,1,1,28,29],[181,1,1,29,30]]],[5,14,14,30,44,[[188,1,1,30,31],[192,1,1,31,32],[193,1,1,32,33],[194,4,4,33,37],[195,1,1,37,38],[196,1,1,38,39],[208,4,4,39,43],[210,1,1,43,44]]],[6,9,9,44,53,[[212,3,3,44,47],[219,3,3,47,50],[221,1,1,50,51],[226,1,1,51,52],[229,1,1,52,53]]],[7,3,3,53,56,[[232,1,1,53,54],[233,1,1,54,55],[234,1,1,55,56]]],[8,12,12,56,68,[[241,1,1,56,57],[244,1,1,57,58],[245,1,1,58,59],[247,1,1,59,60],[249,1,1,60,61],[250,1,1,61,62],[252,2,2,62,64],[259,3,3,64,67],[265,1,1,67,68]]],[9,16,16,68,84,[[268,8,8,68,76],[269,1,1,76,77],[273,1,1,77,78],[277,2,2,78,80],[281,1,1,80,81],[285,1,1,81,82],[286,1,1,82,83],[287,1,1,83,84]]],[10,11,10,84,94,[[299,1,1,84,85],[300,1,1,85,86],[304,1,1,86,87],[306,1,1,87,88],[308,3,2,88,90],[309,2,2,90,92],[311,1,1,92,93],[312,1,1,93,94]]],[11,10,10,94,104,[[316,1,1,94,95],[318,1,1,95,96],[321,2,2,96,98],[322,1,1,98,99],[323,1,1,99,100],[325,1,1,100,101],[329,2,2,101,103],[330,1,1,103,104]]],[13,7,6,104,110,[[379,2,1,104,105],[384,1,1,105,106],[389,1,1,106,107],[391,1,1,107,108],[398,1,1,108,109],[400,1,1,109,110]]],[15,1,1,110,111,[[416,1,1,110,111]]],[17,1,1,111,112,[[469,1,1,111,112]]],[18,1,1,112,113,[[555,1,1,112,113]]],[20,1,1,113,114,[[668,1,1,113,114]]],[22,3,3,114,117,[[679,1,1,114,115],[708,1,1,115,116],[737,1,1,116,117]]],[23,10,10,117,127,[[747,1,1,117,118],[753,1,1,118,119],[760,1,1,119,120],[765,1,1,120,121],[773,1,1,121,122],[776,1,1,122,123],[778,1,1,123,124],[790,1,1,124,125],[792,1,1,125,126],[793,1,1,126,127]]],[25,5,5,127,132,[[811,1,1,127,128],[814,1,1,128,129],[815,2,2,129,131],[842,1,1,131,132]]],[27,1,1,132,133,[[862,1,1,132,133]]],[28,1,1,133,134,[[877,1,1,133,134]]],[29,1,1,134,135,[[885,1,1,134,135]]],[35,1,1,135,136,[[906,1,1,135,136]]],[37,1,1,136,137,[[916,1,1,136,137]]]],[374,483,596,599,630,652,684,947,948,1226,1807,1906,1908,2146,2528,3147,3159,3227,3229,3842,4132,4151,4219,4733,5007,5115,5412,5514,5529,5701,5876,5957,5984,6004,6006,6016,6036,6053,6090,6442,6444,6449,6455,6507,6552,6557,6564,6757,6758,6803,6865,6953,7047,7143,7151,7182,7338,7404,7423,7480,7554,7571,7631,7632,7840,7844,7847,7999,8059,8068,8070,8071,8072,8075,8076,8079,8109,8188,8267,8274,8390,8541,8556,8594,9057,9098,9226,9304,9359,9362,9407,9408,9477,9513,9633,9693,9774,9775,9822,9844,9873,9998,10004,10030,11466,11574,11670,11731,11898,11966,12372,13710,15184,17507,17680,18238,18813,19021,19197,19352,19447,19653,19771,19812,20071,20082,20133,20644,20711,20738,20742,21541,22096,22339,22479,22793,22953]]],["After",[31,28,[[0,2,2,0,2,[[14,1,1,0,1],[17,1,1,1,2]]],[4,1,1,2,3,[[153,1,1,2,3]]],[8,1,1,3,4,[[259,1,1,3,4]]],[10,1,1,4,5,[[303,1,1,4,5]]],[13,3,3,5,8,[[398,2,2,5,7],[401,1,1,7,8]]],[15,15,12,8,20,[[415,15,12,8,20]]],[16,2,2,20,22,[[427,1,1,20,21],[428,1,1,21,22]]],[17,4,4,22,26,[[438,1,1,22,23],[464,1,1,23,24],[472,1,1,24,25],[477,1,1,25,26]]],[23,1,1,26,27,[[775,1,1,26,27]]],[37,1,1,27,28,[[912,1,1,27,28]]]],[361,436,4896,7853,9217,11876,11884,11986,12343,12344,12345,12347,12348,12350,12351,12352,12354,12356,12357,12358,12725,12748,12905,13554,13773,13938,19724,22907]]],["Afterward",[1,1,[[27,1,1,0,1,[[864,1,1,0,1]]]],[22133]]],["Behind",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18773]]],["Forasmuch",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1234]]],["after",[406,383,[[0,59,58,0,58,[[4,9,9,0,9],[5,1,1,9,10],[8,2,2,10,12],[9,2,2,12,14],[10,9,9,14,23],[13,1,1,23,24],[15,1,1,24,25],[16,6,5,25,30],[17,1,1,30,31],[18,1,1,31,32],[21,2,2,32,34],[22,1,1,34,35],[23,1,1,35,36],[24,1,1,36,37],[25,1,1,37,38],[30,2,2,38,40],[32,1,1,40,41],[34,2,2,41,43],[36,1,1,43,44],[38,1,1,44,45],[39,1,1,45,46],[40,6,6,46,52],[43,1,1,52,53],[44,1,1,53,54],[47,3,3,54,57],[49,1,1,57,58]]],[1,19,18,58,76,[[52,1,1,58,59],[56,1,1,59,60],[59,1,1,60,61],[60,1,1,61,62],[63,6,6,62,68],[64,1,1,68,69],[67,1,1,69,70],[72,1,1,70,71],[77,1,1,71,72],[78,1,1,72,73],[82,1,1,73,74],[83,3,2,74,76]]],[2,12,11,76,87,[[102,2,2,76,78],[103,2,1,78,79],[105,1,1,79,80],[106,1,1,80,81],[109,2,2,81,83],[114,2,2,83,85],[115,1,1,85,86],[116,1,1,86,87]]],[3,10,9,87,96,[[120,1,1,87,88],[124,2,2,88,90],[125,1,1,90,91],[131,2,1,91,92],[141,2,2,92,94],[142,1,1,94,95],[151,1,1,95,96]]],[4,17,17,96,113,[[153,1,1,96,97],[156,2,2,97,99],[158,1,1,99,100],[160,1,1,100,101],[162,1,1,101,102],[163,2,2,102,104],[164,2,2,104,106],[165,2,2,106,108],[173,1,1,108,109],[180,1,1,109,110],[183,3,3,110,113]]],[5,20,17,113,130,[[187,1,1,113,114],[188,3,2,114,116],[189,1,1,116,117],[192,2,2,117,119],[194,5,3,119,122],[196,2,2,122,124],[206,1,1,124,125],[208,1,1,125,126],[209,1,1,126,127],[210,3,3,127,130]]],[6,27,25,130,155,[[211,2,2,130,132],[212,2,2,132,134],[213,4,3,134,137],[214,3,2,137,139],[215,1,1,139,140],[216,2,2,140,142],[217,1,1,142,143],[218,4,4,143,147],[220,2,2,147,149],[222,3,3,149,152],[223,1,1,152,153],[229,1,1,153,154],[230,1,1,154,155]]],[7,5,5,155,160,[[232,1,1,155,156],[233,3,3,156,159],[235,1,1,159,160]]],[8,36,31,160,191,[[236,2,1,160,161],[240,1,1,161,162],[241,1,1,162,163],[242,1,1,163,164],[243,1,1,164,165],[246,3,2,165,167],[247,1,1,167,168],[248,1,1,168,169],[249,6,5,169,174],[250,1,1,174,175],[252,2,2,175,177],[255,2,2,177,179],[257,1,1,179,180],[258,2,2,180,182],[259,5,3,182,185],[260,3,3,185,188],[261,2,2,188,190],[265,1,1,190,191]]],[9,33,31,191,222,[[267,1,1,191,192],[268,5,5,192,197],[269,1,1,197,198],[271,1,1,198,199],[273,1,1,199,200],[274,1,1,200,201],[276,1,1,201,202],[279,3,3,202,205],[281,1,1,205,206],[283,2,2,206,208],[284,2,2,208,210],[286,8,6,210,216],[287,2,2,216,218],[289,3,3,218,221],[290,1,1,221,222]]],[10,33,29,222,251,[[291,10,10,222,232],[292,2,1,232,233],[293,1,1,233,234],[299,1,1,234,235],[301,6,5,235,240],[303,4,3,240,243],[305,1,1,243,244],[307,1,1,244,245],[309,5,4,245,249],[310,1,1,249,250],[311,1,1,250,251]]],[11,16,15,251,266,[[313,1,1,251,252],[317,3,2,252,254],[318,1,1,254,255],[319,2,2,255,257],[321,2,2,257,259],[326,2,2,259,261],[329,1,1,261,262],[330,1,1,262,263],[335,2,2,263,265],[337,1,1,265,266]]],[12,12,11,266,277,[[342,1,1,266,267],[347,2,1,267,268],[348,1,1,268,269],[351,1,1,269,270],[354,1,1,270,271],[355,1,1,271,272],[356,1,1,272,273],[357,1,1,273,274],[364,2,2,274,276],[365,1,1,276,277]]],[13,17,17,277,294,[[367,1,1,277,278],[368,1,1,278,279],[374,1,1,279,280],[377,2,2,280,282],[379,1,1,282,283],[386,2,2,283,285],[387,1,1,285,286],[388,1,1,286,287],[390,2,2,287,289],[391,2,2,289,291],[392,1,1,291,292],[399,1,1,292,293],[400,1,1,293,294]]],[14,3,3,294,297,[[409,1,1,294,295],[411,2,2,295,297]]],[15,5,5,297,302,[[415,1,1,297,298],[423,1,1,298,299],[424,2,2,299,301],[425,1,1,301,302]]],[17,8,8,302,310,[[454,1,1,302,303],[456,2,2,303,305],[466,1,1,305,306],[474,2,2,306,308],[476,1,1,308,309],[477,1,1,309,310]]],[18,3,3,310,313,[[526,1,1,310,311],[540,1,1,311,312],[545,1,1,312,313]]],[19,3,3,313,316,[[634,1,1,313,314],[647,2,2,314,316]]],[20,7,7,316,323,[[660,2,2,316,318],[661,1,1,318,319],[664,1,1,319,320],[665,1,1,320,321],[667,1,1,321,322],[670,1,1,322,323]]],[21,1,1,323,324,[[671,1,1,323,324]]],[22,3,3,324,327,[[721,1,1,324,325],[723,1,1,325,326],[743,1,1,326,327]]],[23,31,30,327,357,[[746,5,5,327,332],[747,2,2,332,334],[751,2,2,334,336],[752,1,1,336,337],[753,3,2,337,339],[755,1,1,339,340],[756,1,1,340,341],[757,1,1,341,342],[760,2,2,342,344],[762,1,1,344,345],[769,2,2,345,347],[776,2,2,347,349],[779,1,1,349,350],[783,1,1,350,351],[785,1,1,351,352],[786,1,1,352,353],[793,1,1,353,354],[794,1,1,354,355],[795,1,1,355,356],[796,1,1,356,357]]],[25,16,16,357,373,[[806,2,2,357,359],[807,1,1,359,360],[810,1,1,360,361],[813,1,1,361,362],[817,1,1,362,363],[821,3,3,363,366],[824,1,1,366,367],[830,1,1,367,368],[834,1,1,368,369],[841,1,1,369,370],[845,2,2,370,372],[847,1,1,372,373]]],[26,1,1,373,374,[[858,1,1,373,374]]],[27,5,5,374,379,[[863,2,2,374,376],[866,2,2,376,378],[872,1,1,378,379]]],[28,1,1,379,380,[[877,1,1,379,380]]],[29,2,2,380,382,[[880,1,1,380,381],[885,1,1,381,382]]],[37,1,1,382,383,[[917,1,1,382,383]]]],[109,112,115,118,121,124,127,131,135,141,214,233,235,266,276,277,279,281,283,285,287,289,291,353,394,404,405,406,407,416,443,463,548,567,590,658,669,710,896,909,967,1016,1023,1100,1156,1173,1198,1201,1214,1218,1222,1225,1328,1373,1452,1455,1457,1520,1599,1710,1791,1814,1893,1897,1898,1899,1912,1917,1940,2001,2146,2336,2365,2481,2511,2512,3087,3108,3154,3202,3242,3323,3324,3484,3515,3557,3588,3758,3954,3961,3982,4192,4479,4484,4490,4873,4900,5041,5044,5100,5156,5201,5212,5236,5265,5268,5274,5276,5460,5625,5744,5755,5757,5852,5874,5876,5896,5958,5962,6008,6018,6019,6078,6083,6377,6453,6461,6482,6496,6505,6510,6515,6555,6562,6590,6596,6599,6613,6615,6637,6688,6689,6717,6724,6731,6746,6752,6812,6814,6877,6880,6882,6895,7027,7099,7142,7152,7156,7158,7194,7221,7328,7343,7354,7372,7450,7452,7481,7489,7520,7521,7530,7544,7545,7591,7653,7671,7767,7768,7807,7835,7838,7847,7853,7860,7874,7880,7903,7908,7923,7986,8023,8050,8068,8073,8074,8077,8107,8145,8192,8210,8241,8318,8334,8335,8402,8450,8470,8494,8500,8560,8561,8564,8565,8567,8568,8581,8598,8662,8663,8664,8702,8723,8730,8731,8734,8737,8741,8744,8747,8752,8757,8798,8828,9072,9110,9112,9113,9114,9118,9198,9207,9215,9253,9334,9398,9399,9407,9408,9423,9452,9534,9667,9668,9698,9721,9722,9781,9783,9913,9915,9998,10029,10168,10190,10227,10453,10661,10685,10788,10874,10891,10908,10930,11116,11143,11151,11206,11228,11354,11430,11434,11472,11588,11622,11642,11648,11681,11694,11729,11731,11749,11922,11964,12174,12247,12250,12349,12596,12656,12662,12690,13323,13376,13388,13595,13842,13844,13920,13929,14665,14847,14925,16597,16961,16979,17345,17351,17381,17429,17443,17478,17525,17541,18515,18575,18899,18967,18970,18973,18988,18990,19009,19019,19125,19128,19155,19189,19191,19236,19255,19276,19347,19348,19396,19540,19560,19749,19770,19838,19928,19973,19991,20164,20187,20258,20284,20548,20558,20572,20627,20694,20785,20911,20919,20925,21037,21199,21311,21478,21609,21625,21667,22014,22110,22118,22160,22163,22250,22313,22383,22465,22976]]],["afterward",[21,21,[[0,2,2,0,2,[[9,1,1,0,1],[37,1,1,1,2]]],[1,1,1,2,3,[[54,1,1,2,3]]],[2,2,2,3,5,[[103,1,1,3,4],[111,1,1,4,5]]],[3,6,6,5,11,[[121,1,1,5,6],[128,1,1,6,7],[135,1,1,7,8],[147,2,2,8,10],[148,1,1,10,11]]],[4,1,1,11,12,[[176,1,1,11,12]]],[5,2,2,12,14,[[188,1,1,12,13],[210,1,1,13,14]]],[6,3,3,14,17,[[211,1,1,14,15],[217,1,1,15,16],[229,1,1,16,17]]],[12,1,1,17,18,[[339,1,1,17,18]]],[13,1,1,18,19,[[401,1,1,18,19]]],[14,1,1,19,20,[[405,1,1,19,20]]],[18,1,1,20,21,[[550,1,1,20,21]]]],[252,1149,1633,3130,3376,3818,4075,4296,4666,4688,4740,5546,5885,6481,6518,6705,7029,10327,11980,12102,15044]]],["afterwards",[5,5,[[0,1,1,0,1,[[29,1,1,0,1]]],[17,1,1,1,2,[[453,1,1,1,2]]],[19,3,3,2,5,[[647,1,1,2,3],[651,1,1,3,4],[655,1,1,4,5]]]],[851,13278,16971,17106,17219]]],["again",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5545]]],["at",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10082,18374]]],["back",[1,1,[[11,1,1,0,1,[[314,1,1,0,1]]]],[9575]]],["backside",[1,1,[[1,1,1,0,1,[[52,1,1,0,1]]]],[1580]]],["behind",[33,32,[[0,5,5,0,5,[[17,1,1,0,1],[18,1,1,1,2],[21,1,1,2,3],[31,2,2,3,5]]],[1,1,1,5,6,[[60,1,1,5,6]]],[3,1,1,6,7,[[119,1,1,6,7]]],[4,1,1,7,8,[[177,1,1,7,8]]],[5,1,1,8,9,[[194,1,1,8,9]]],[6,2,2,9,11,[[228,1,1,9,10],[230,1,1,10,11]]],[8,2,2,11,13,[[256,1,1,11,12],[259,1,1,12,13]]],[9,5,5,13,18,[[267,1,1,13,14],[268,1,1,14,15],[269,1,1,15,16],[271,1,1,16,17],[279,1,1,17,18]]],[10,1,1,18,19,[[304,1,1,18,19]]],[11,2,2,19,21,[[318,1,1,19,20],[323,1,1,20,21]]],[15,2,2,21,23,[[416,1,1,21,22],[421,1,1,22,23]]],[18,1,1,23,24,[[527,1,1,23,24]]],[21,1,1,24,25,[[672,1,1,24,25]]],[22,2,2,25,27,[[716,1,1,25,26],[744,1,1,26,27]]],[25,2,2,27,29,[[804,1,1,27,28],[824,1,1,28,29]]],[28,3,2,29,31,[[877,3,2,29,31]]],[37,1,1,31,32,[[911,1,1,31,32]]]],[434,474,560,946,948,1811,3715,5565,6022,7005,7094,7781,7847,8029,8069,8097,8155,8351,9227,9706,9835,12375,12537,14685,17563,18407,18939,20514,21042,22314,22325,22886]]],["beside",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12397]]],["by",[1,1,[[4,1,1,0,1,[[163,1,1,0,1]]]],[5238]]],["follow",[4,4,[[9,1,1,0,1,[[283,1,1,0,1]]],[18,2,2,1,3,[[522,1,1,1,2],[571,1,1,2,3]]],[23,1,1,3,4,[[761,1,1,3,4]]]],[8458,14611,15446,19373]]],["followed",[15,14,[[3,2,2,0,2,[[148,2,2,0,2]]],[4,1,1,2,3,[[153,1,1,2,3]]],[5,3,3,3,6,[[200,3,3,3,6]]],[8,1,1,6,7,[[248,1,1,6,7]]],[9,2,2,7,9,[[269,1,1,7,8],[286,1,1,8,9]]],[10,5,4,9,13,[[302,1,1,9,10],[306,3,2,10,12],[310,1,1,12,13]]],[15,1,1,13,14,[[416,1,1,13,14]]]],[4729,4730,4928,6195,6196,6201,7492,8112,8556,9171,9304,9305,9427,12382]]],["followeth",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20796]]],["following",[4,4,[[4,1,1,0,1,[[164,1,1,0,1]]],[8,1,1,1,2,[[247,1,1,1,2]]],[10,1,1,2,3,[[291,1,1,2,3]]],[12,1,1,3,4,[[354,1,1,3,4]]]],[5270,7474,8724,10870]]],["hereafter",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20934]]],["of",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8072]]],["posterity",[4,3,[[10,3,2,0,2,[[306,2,1,0,1],[311,1,1,1,2]]],[18,1,1,2,3,[[526,1,1,2,3]]]],[9286,9472,14661]]],["remnant",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9228]]],["since",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]]],[1416,7160]]],["that",[31,30,[[0,3,3,0,3,[[12,1,1,0,1],[17,1,1,1,2],[23,1,1,2,3]]],[2,6,6,3,9,[[102,2,2,3,5],[103,2,2,5,7],[104,1,1,7,8],[114,1,1,8,9]]],[3,4,4,9,13,[[122,1,1,9,10],[123,1,1,10,11],[128,1,1,11,12],[146,1,1,12,13]]],[4,1,1,13,14,[[164,1,1,13,14]]],[6,1,1,14,15,[[225,1,1,14,15]]],[9,1,1,15,16,[[267,1,1,15,16]]],[11,1,1,16,17,[[326,1,1,16,17]]],[12,1,1,17,18,[[339,1,1,17,18]]],[13,2,2,18,20,[[391,1,1,18,19],[392,1,1,19,20]]],[17,1,1,20,21,[[456,1,1,20,21]]],[23,9,8,21,29,[[756,1,1,21,22],[768,1,1,22,23],[772,1,1,23,24],[773,1,1,24,25],[775,2,1,25,26],[778,1,1,26,27],[780,1,1,27,28],[784,1,1,28,29]]],[26,1,1,29,30,[[857,1,1,29,30]]]],[332,429,646,3059,3107,3119,3154,3196,3517,3843,3938,4073,4663,5270,6936,8032,9918,10330,11718,11734,13358,19264,19525,19630,19637,19710,19809,19869,19942,21962]]],["when",[3,3,[[0,1,1,0,1,[[23,1,1,0,1]]],[23,2,2,1,3,[[757,1,1,1,2],[776,1,1,2,3]]]],[627,19293,19747]]],["with",[1,1,[[2,1,1,0,1,[[109,1,1,0,1]]]],[3323]]]]},{"k":"H311","v":[["*",[3,3,[[26,3,3,0,3,[[851,2,2,0,2],[856,1,1,2,3]]]],[21787,21803,21957]]],["+",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21787,21803]]],["after",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21957]]]]},{"k":"H312","v":[["*",[166,161,[[0,15,15,0,15,[[3,1,1,0,1],[7,2,2,1,3],[16,1,1,3,4],[25,2,2,4,6],[28,3,3,6,9],[29,1,1,9,10],[36,1,1,10,11],[40,2,2,11,13],[42,2,2,13,15]]],[1,5,5,15,20,[[69,1,1,15,16],[70,1,1,16,17],[71,1,1,17,18],[72,1,1,18,19],[83,1,1,19,20]]],[2,4,3,20,23,[[95,1,1,20,21],[103,2,1,21,22],[116,1,1,22,23]]],[3,4,4,23,27,[[130,1,1,23,24],[139,2,2,24,26],[152,1,1,26,27]]],[4,25,25,27,52,[[157,1,1,27,28],[158,1,1,28,29],[159,1,1,29,30],[160,1,1,30,31],[163,2,2,31,33],[165,3,3,33,36],[169,1,1,36,37],[170,1,1,37,38],[172,3,3,38,41],[176,1,1,41,42],[180,5,5,42,47],[181,2,2,47,49],[182,1,1,49,50],[183,2,2,50,52]]],[5,3,3,52,55,[[209,1,1,52,53],[210,2,2,53,55]]],[6,6,6,55,61,[[212,4,4,55,59],[220,1,1,59,60],[221,1,1,60,61]]],[7,2,2,61,63,[[233,2,2,61,63]]],[8,8,8,63,71,[[243,1,1,63,64],[245,2,2,64,66],[252,1,1,66,67],[254,1,1,67,68],[256,1,1,68,69],[261,1,1,69,70],[263,1,1,70,71]]],[9,3,3,71,74,[[279,1,1,71,72],[284,2,2,72,74]]],[10,9,9,74,83,[[293,1,1,74,75],[297,1,1,75,76],[299,2,2,76,78],[301,2,2,78,80],[303,1,1,80,81],[304,1,1,81,82],[310,1,1,82,83]]],[11,9,9,83,92,[[313,1,1,83,84],[317,1,1,84,85],[318,1,1,85,86],[319,1,1,86,87],[329,4,4,87,91],[334,1,1,91,92]]],[12,3,3,92,95,[[339,1,1,92,93],[353,1,1,93,94],[360,1,1,94,95]]],[13,10,8,95,103,[[369,4,2,95,97],[373,2,2,97,99],[394,1,1,99,100],[396,1,1,100,101],[398,1,1,101,102],[400,1,1,102,103]]],[14,2,2,103,105,[[403,1,1,103,104],[404,1,1,104,105]]],[15,3,3,105,108,[[417,1,1,105,106],[419,2,2,106,108]]],[16,1,1,108,109,[[429,1,1,108,109]]],[17,5,4,109,113,[[443,1,1,109,110],[466,3,2,110,112],[469,1,1,112,113]]],[18,5,5,113,118,[[493,1,1,113,114],[526,1,1,114,115],[582,1,1,115,116],[586,2,2,116,118]]],[19,2,2,118,120,[[632,1,1,118,119],[652,1,1,119,120]]],[20,1,1,120,121,[[665,1,1,120,121]]],[22,6,5,121,126,[[706,1,1,121,122],[720,1,1,122,123],[726,1,1,123,124],[743,3,2,124,126]]],[23,25,25,126,151,[[745,1,1,126,127],[747,1,1,127,128],[750,1,1,128,129],[751,3,3,129,132],[752,1,1,132,133],[755,1,1,133,134],[757,1,1,134,135],[760,2,2,135,137],[762,1,1,137,138],[763,2,2,138,140],[766,2,2,140,142],[769,1,1,142,143],[776,1,1,143,144],[779,1,1,144,145],[780,2,2,145,147],[788,4,4,147,151]]],[25,5,5,151,156,[[813,1,1,151,152],[841,1,1,152,153],[842,1,1,153,154],[843,1,1,154,155],[845,1,1,155,156]]],[26,2,2,156,158,[[860,1,1,156,157],[861,1,1,157,158]]],[27,1,1,158,159,[[864,1,1,158,159]]],[28,1,1,159,160,[[876,1,1,159,160]]],[37,1,1,160,161,[[912,1,1,160,161]]]],[104,193,195,418,713,714,814,822,825,854,1092,1198,1214,1304,1312,2054,2087,2118,2157,2510,2860,3153,3590,4132,4429,4443,4888,5060,5100,5115,5156,5224,5236,5274,5278,5285,5367,5404,5432,5433,5434,5527,5625,5641,5643,5647,5675,5705,5707,5725,5746,5748,6476,6478,6492,6555,6557,6562,6564,6824,6831,7157,7171,7377,7424,7427,7648,7727,7781,7924,7950,8333,8498,8504,8838,8942,9057,9060,9112,9118,9194,9227,9445,9544,9664,9703,9715,9990,10018,10020,10021,10162,10332,10840,11000,11240,11241,11343,11346,11789,11850,11880,11958,12026,12058,12387,12453,12454,12776,13048,13596,13598,13707,14096,14658,15619,15763,15768,16526,17122,17451,18175,18488,18625,18912,18919,18962,19003,19101,19125,19128,19137,19163,19236,19276,19347,19349,19388,19411,19420,19463,19480,19540,19760,19838,19870,19874,20013,20015,20018,20025,20683,21517,21550,21566,21618,22040,22086,22129,22294,22902]]],["+",[3,3,[[8,1,1,0,1,[[252,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[16,1,1,2,3,[[429,1,1,2,3]]]],[7648,8333,12776]]],["another",[53,52,[[0,6,6,0,6,[[3,1,1,0,1],[25,2,2,1,3],[28,1,1,3,4],[29,1,1,4,5],[36,1,1,5,6]]],[1,1,1,6,7,[[70,1,1,6,7]]],[2,1,1,7,8,[[116,1,1,7,8]]],[3,4,4,8,12,[[130,1,1,8,9],[139,2,2,9,11],[152,1,1,11,12]]],[4,7,7,12,19,[[172,3,3,12,15],[176,1,1,15,16],[180,2,2,16,18],[181,1,1,18,19]]],[6,1,1,19,20,[[212,1,1,19,20]]],[7,1,1,20,21,[[233,1,1,20,21]]],[8,2,2,21,23,[[245,2,2,21,23]]],[9,2,2,23,25,[[284,2,2,23,25]]],[10,3,3,25,28,[[297,1,1,25,26],[303,1,1,26,27],[310,1,1,27,28]]],[11,2,2,28,30,[[313,1,1,28,29],[319,1,1,29,30]]],[12,2,2,30,32,[[339,1,1,30,31],[353,1,1,31,32]]],[13,1,1,32,33,[[398,1,1,32,33]]],[17,2,2,33,35,[[466,2,2,33,35]]],[18,3,3,35,38,[[493,1,1,35,36],[582,1,1,36,37],[586,1,1,37,38]]],[19,1,1,38,39,[[652,1,1,38,39]]],[22,6,5,39,44,[[706,1,1,39,40],[720,1,1,40,41],[726,1,1,41,42],[743,3,2,42,44]]],[23,5,5,44,49,[[747,1,1,44,45],[762,1,1,45,46],[766,1,1,46,47],[780,2,2,47,49]]],[25,1,1,49,50,[[813,1,1,49,50]]],[28,1,1,50,51,[[876,1,1,50,51]]],[37,1,1,51,52,[[912,1,1,51,52]]]],[104,713,714,814,854,1092,2087,3590,4132,4429,4443,4888,5432,5433,5434,5527,5641,5643,5707,6555,7157,7424,7427,8498,8504,8942,9194,9445,9544,9715,10332,10840,11880,13596,13598,14096,15619,15763,17122,18175,18488,18625,18912,18919,19003,19388,19480,19870,19874,20683,22294,22902]]],["following",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15768]]],["man's",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2118]]],["next",[2,2,[[0,1,1,0,1,[[16,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]]],[418,9703]]],["other",[96,93,[[0,8,8,0,8,[[7,2,2,0,2],[28,2,2,2,4],[40,2,2,4,6],[42,2,2,6,8]]],[1,3,3,8,11,[[69,1,1,8,9],[72,1,1,9,10],[83,1,1,10,11]]],[2,3,2,11,13,[[95,1,1,11,12],[103,2,1,12,13]]],[4,18,18,13,31,[[157,1,1,13,14],[158,1,1,14,15],[159,1,1,15,16],[160,1,1,16,17],[163,2,2,17,19],[165,3,3,19,22],[169,1,1,22,23],[170,1,1,23,24],[180,3,3,24,27],[181,1,1,27,28],[182,1,1,28,29],[183,2,2,29,31]]],[5,3,3,31,34,[[209,1,1,31,32],[210,2,2,32,34]]],[6,4,4,34,38,[[212,3,3,34,37],[220,1,1,37,38]]],[7,1,1,38,39,[[233,1,1,38,39]]],[8,5,5,39,44,[[243,1,1,39,40],[254,1,1,40,41],[256,1,1,41,42],[261,1,1,42,43],[263,1,1,43,44]]],[10,6,6,44,50,[[293,1,1,44,45],[299,2,2,45,47],[301,2,2,47,49],[304,1,1,49,50]]],[11,6,6,50,56,[[317,1,1,50,51],[329,4,4,51,55],[334,1,1,55,56]]],[12,1,1,56,57,[[360,1,1,56,57]]],[13,9,7,57,64,[[369,4,2,57,59],[373,2,2,59,61],[394,1,1,61,62],[396,1,1,62,63],[400,1,1,63,64]]],[14,2,2,64,66,[[403,1,1,64,65],[404,1,1,65,66]]],[15,3,3,66,69,[[417,1,1,66,67],[419,2,2,67,69]]],[23,18,18,69,87,[[745,1,1,69,70],[751,3,3,70,73],[755,1,1,73,74],[757,1,1,74,75],[760,2,2,75,77],[763,2,2,77,79],[766,1,1,79,80],[769,1,1,80,81],[776,1,1,81,82],[779,1,1,82,83],[788,4,4,83,87]]],[25,4,4,87,91,[[841,1,1,87,88],[842,1,1,88,89],[843,1,1,89,90],[845,1,1,90,91]]],[26,1,1,91,92,[[861,1,1,91,92]]],[27,1,1,92,93,[[864,1,1,92,93]]]],[193,195,822,825,1198,1214,1304,1312,2054,2157,2510,2860,3153,5060,5100,5115,5156,5224,5236,5274,5278,5285,5367,5404,5625,5647,5675,5705,5725,5746,5748,6476,6478,6492,6557,6562,6564,6824,7171,7377,7727,7781,7924,7950,8838,9057,9060,9112,9118,9227,9664,9990,10018,10020,10021,10162,11000,11240,11241,11343,11346,11789,11850,11958,12026,12058,12387,12453,12454,18962,19125,19128,19137,19236,19276,19347,19349,19411,19420,19463,19540,19760,19838,20013,20015,20018,20025,21517,21550,21566,21618,22086,22129]]],["others",[9,9,[[17,3,3,0,3,[[443,1,1,0,1],[466,1,1,1,2],[469,1,1,2,3]]],[18,1,1,3,4,[[526,1,1,3,4]]],[19,1,1,4,5,[[632,1,1,4,5]]],[20,1,1,5,6,[[665,1,1,5,6]]],[23,2,2,6,8,[[750,1,1,6,7],[752,1,1,7,8]]],[26,1,1,8,9,[[860,1,1,8,9]]]],[13048,13598,13707,14658,16526,17451,19101,19163,22040]]],["strange",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6831]]]]},{"k":"H313","v":[["Aher",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10547]]]]},{"k":"H314","v":[["*",[50,48,[[0,2,1,0,1,[[32,2,1,0,1]]],[1,1,1,1,2,[[53,1,1,1,2]]],[3,1,1,2,3,[[118,1,1,2,3]]],[4,7,6,3,9,[[163,1,1,3,4],[165,1,1,4,5],[169,1,1,5,6],[176,2,1,6,7],[181,1,1,7,8],[186,1,1,8,9]]],[7,1,1,9,10,[[234,1,1,9,10]]],[8,1,1,10,11,[[264,1,1,10,11]]],[9,4,4,11,15,[[268,1,1,11,12],[285,2,2,12,14],[289,1,1,14,15]]],[10,1,1,15,16,[[307,1,1,15,16]]],[12,2,2,16,18,[[360,1,1,16,17],[366,1,1,17,18]]],[13,8,8,18,26,[[375,1,1,18,19],[378,1,1,19,20],[382,1,1,20,21],[386,1,1,21,22],[391,1,1,22,23],[392,1,1,23,24],[394,1,1,24,25],[401,1,1,25,26]]],[14,1,1,26,27,[[410,1,1,26,27]]],[15,1,1,27,28,[[420,1,1,27,28]]],[17,2,2,28,30,[[453,1,1,28,29],[454,1,1,29,30]]],[18,4,4,30,34,[[525,1,1,30,31],[555,2,2,31,33],[579,1,1,33,34]]],[19,1,1,34,35,[[658,1,1,34,35]]],[20,2,2,35,37,[[659,1,1,35,36],[662,1,1,36,37]]],[22,5,5,37,42,[[687,1,1,37,38],[708,1,1,38,39],[719,1,1,39,40],[722,1,1,40,41],[726,1,1,41,42]]],[23,1,1,42,43,[[794,1,1,42,43]]],[26,2,2,43,45,[[857,1,1,43,44],[860,1,1,44,45]]],[28,1,1,45,46,[[877,1,1,45,46]]],[36,1,1,46,47,[[910,1,1,46,47]]],[37,1,1,47,48,[[924,1,1,47,48]]]],[962,1609,3689,5232,5281,5371,5528,5701,5841,7182,7969,8075,8522,8523,8654,9330,11010,11193,11393,11452,11520,11621,11730,11754,11790,11993,12214,12511,13296,13322,14647,15117,15119,15539,17309,17326,17397,17830,18225,18455,18539,18626,20183,21964,22065,22331,22864,23076]]],["+",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12214]]],["after",[5,5,[[0,1,1,0,1,[[32,1,1,0,1]]],[10,1,1,1,2,[[307,1,1,1,2]]],[17,1,1,2,3,[[453,1,1,2,3]]],[20,2,2,3,5,[[659,1,1,3,4],[662,1,1,4,5]]]],[962,9330,13296,17326,17397]]],["afterward",[2,2,[[4,1,1,0,1,[[169,1,1,0,1]]],[22,1,1,1,2,[[687,1,1,1,2]]]],[5371,17830]]],["afterwards",[1,1,[[4,1,1,0,1,[[165,1,1,0,1]]]],[5281]]],["come",[6,6,[[4,1,1,0,1,[[181,1,1,0,1]]],[18,3,3,1,4,[[555,2,2,1,3],[579,1,1,3,4]]],[19,1,1,4,5,[[658,1,1,4,5]]],[22,1,1,5,6,[[708,1,1,5,6]]]],[5701,15117,15119,15539,17309,18225]]],["end",[2,2,[[7,1,1,0,1,[[234,1,1,0,1]]],[9,1,1,1,2,[[268,1,1,1,2]]]],[7182,8075]]],["following",[1,1,[[18,1,1,0,1,[[525,1,1,0,1]]]],[14647]]],["hinder",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23076]]],["hindermost",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[962]]],["hindmost",[1,1,[[3,1,1,0,1,[[118,1,1,0,1]]]],[3689]]],["last",[19,19,[[9,3,3,0,3,[[285,2,2,0,2],[289,1,1,2,3]]],[12,2,2,3,5,[[360,1,1,3,4],[366,1,1,4,5]]],[13,8,8,5,13,[[375,1,1,5,6],[378,1,1,6,7],[382,1,1,7,8],[386,1,1,8,9],[391,1,1,9,10],[392,1,1,10,11],[394,1,1,11,12],[401,1,1,12,13]]],[15,1,1,13,14,[[420,1,1,13,14]]],[22,3,3,14,17,[[719,1,1,14,15],[722,1,1,15,16],[726,1,1,16,17]]],[23,1,1,17,18,[[794,1,1,17,18]]],[26,1,1,18,19,[[857,1,1,18,19]]]],[8522,8523,8654,11010,11193,11393,11452,11520,11621,11730,11754,11790,11993,12511,18455,18539,18626,20183,21964]]],["latter",[6,5,[[1,1,1,0,1,[[53,1,1,0,1]]],[4,2,1,1,2,[[176,2,1,1,2]]],[17,1,1,2,3,[[454,1,1,2,3]]],[26,1,1,3,4,[[860,1,1,3,4]]],[36,1,1,4,5,[[910,1,1,4,5]]]],[1609,5528,13322,22065,22864]]],["rereward",[1,1,[[8,1,1,0,1,[[264,1,1,0,1]]]],[7969]]],["utmost",[2,2,[[4,1,1,0,1,[[186,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[5841,22331]]],["uttermost",[1,1,[[4,1,1,0,1,[[163,1,1,0,1]]]],[5232]]]]},{"k":"H315","v":[["Aharah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10576]]]]},{"k":"H316","v":[["Aharhel",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10393]]]]},{"k":"H317","v":[["*",[6,5,[[26,6,5,0,5,[[851,2,1,0,1],[856,4,4,1,5]]]],[21797,21938,21939,21941,21953]]],["another",[5,4,[[26,5,4,0,4,[[851,2,1,0,1],[856,3,3,1,4]]]],[21797,21938,21939,21941]]],["other",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21953]]]]},{"k":"H318","v":[["last",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21845]]]]},{"k":"H319","v":[["*",[61,60,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,3,3,1,4,[[139,1,1,1,2],[140,2,2,2,4]]],[4,6,6,4,10,[[156,1,1,4,5],[160,1,1,5,6],[163,1,1,6,7],[183,1,1,7,8],[184,2,2,8,10]]],[17,2,2,10,12,[[443,1,1,10,11],[477,1,1,11,12]]],[18,5,5,12,17,[[514,2,2,12,14],[550,1,1,14,15],[586,1,1,15,16],[616,1,1,16,17]]],[19,13,13,17,30,[[632,2,2,17,19],[641,2,2,19,21],[643,1,1,21,22],[646,1,1,22,23],[647,1,1,23,24],[650,2,2,24,26],[651,2,2,26,28],[652,1,1,28,29],[656,1,1,29,30]]],[20,2,2,30,32,[[665,1,1,30,31],[668,1,1,31,32]]],[22,4,4,32,36,[[680,1,1,32,33],[719,1,1,33,34],[724,1,1,34,35],[725,1,1,35,36]]],[23,10,10,36,46,[[749,1,1,36,37],[756,1,1,37,38],[761,1,1,38,39],[767,1,1,39,40],[773,1,1,40,41],[774,1,1,41,42],[775,1,1,42,43],[792,1,1,43,44],[793,1,1,44,45],[794,1,1,45,46]]],[24,1,1,46,47,[[797,1,1,46,47]]],[25,4,3,47,50,[[824,2,1,47,48],[839,2,2,48,50]]],[26,5,5,50,55,[[857,2,2,50,52],[859,1,1,52,53],[860,1,1,53,54],[861,1,1,54,55]]],[27,1,1,55,56,[[864,1,1,55,56]]],[29,3,3,56,59,[[882,1,1,56,57],[886,1,1,57,58],[887,1,1,58,59]]],[32,1,1,59,60,[[896,1,1,59,60]]]],[1474,4426,4460,4466,5034,5153,5220,5757,5778,5787,13036,13934,14487,14488,15037,15768,16248,16521,16528,16784,16785,16865,16945,16975,17062,17076,17093,17099,17121,17245,17437,17506,17687,18473,18596,18606,19089,19253,19368,19504,19646,19691,19708,20127,20166,20178,20319,21032,21433,21441,21980,21984,22029,22040,22089,22133,22412,22491,22496,22621]]],["end",[32,32,[[3,2,2,0,2,[[139,1,1,0,1],[140,1,1,1,2]]],[4,4,4,2,6,[[160,1,1,2,3],[163,1,1,3,4],[184,2,2,4,6]]],[17,2,2,6,8,[[443,1,1,6,7],[477,1,1,7,8]]],[18,3,3,8,11,[[514,2,2,8,10],[550,1,1,10,11]]],[19,7,7,11,18,[[632,1,1,11,12],[641,2,2,12,14],[643,1,1,14,15],[647,1,1,15,16],[650,1,1,16,17],[652,1,1,17,18]]],[20,2,2,18,20,[[665,1,1,18,19],[668,1,1,19,20]]],[22,3,3,20,23,[[719,1,1,20,21],[724,1,1,21,22],[725,1,1,22,23]]],[23,5,5,23,28,[[749,1,1,23,24],[756,1,1,24,25],[761,1,1,25,26],[773,1,1,26,27],[775,1,1,27,28]]],[24,1,1,28,29,[[797,1,1,28,29]]],[26,2,2,29,31,[[857,1,1,29,30],[861,1,1,30,31]]],[29,1,1,31,32,[[886,1,1,31,32]]]],[4426,4466,5153,5220,5778,5787,13036,13934,14487,14488,15037,16521,16784,16785,16865,16975,17062,17121,17437,17506,18473,18596,18606,19089,19253,19368,19646,19708,20319,21980,22089,22491]]],["hindermost",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20178]]],["last",[6,6,[[0,1,1,0,1,[[48,1,1,0,1]]],[19,2,2,1,3,[[632,1,1,1,2],[650,1,1,2,3]]],[22,1,1,3,4,[[680,1,1,3,4]]],[29,1,1,4,5,[[887,1,1,4,5]]],[32,1,1,5,6,[[896,1,1,5,6]]]],[1474,16528,17076,17687,22496,22621]]],["latter",[12,12,[[3,1,1,0,1,[[140,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[183,1,1,2,3]]],[19,1,1,3,4,[[646,1,1,3,4]]],[23,4,4,4,8,[[767,1,1,4,5],[774,1,1,5,6],[792,1,1,6,7],[793,1,1,7,8]]],[25,2,2,8,10,[[839,2,2,8,10]]],[26,1,1,10,11,[[859,1,1,10,11]]],[27,1,1,11,12,[[864,1,1,11,12]]]],[4460,5034,5757,16945,19504,19691,20127,20166,21433,21441,22029,22133]]],["length",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17245]]],["parts",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16248]]],["posterity",[3,3,[[18,1,1,0,1,[[586,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]],[29,1,1,2,3,[[882,1,1,2,3]]]],[15768,22040,22412]]],["remnant",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21032]]],["residue",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21032]]],["reward",[2,2,[[19,2,2,0,2,[[651,2,2,0,2]]]],[17093,17099]]],["time",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21984]]]]},{"k":"H320","v":[["latter",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21786]]]]},{"k":"H321","v":[["*",[5,5,[[26,5,5,0,5,[[851,2,2,0,2],[852,1,1,2,3],[854,1,1,3,4],[856,1,1,4,5]]]],[21769,21802,21836,21891,21957]]],["another",[2,2,[[26,2,2,0,2,[[854,1,1,0,1],[856,1,1,1,2]]]],[21891,21957]]],["other",[3,3,[[26,3,3,0,3,[[851,2,2,0,2],[852,1,1,2,3]]]],[21769,21802,21836]]]]},{"k":"H322","v":[["*",[7,6,[[0,2,1,0,1,[[8,2,1,0,1]]],[8,1,1,1,2,[[239,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[11,2,2,3,5,[[332,2,2,3,5]]],[22,1,1,5,6,[[716,1,1,5,6]]]],[228,7315,9378,10108,10109,18398]]],["again",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9378]]],["backward",[6,5,[[0,2,1,0,1,[[8,2,1,0,1]]],[8,1,1,1,2,[[239,1,1,1,2]]],[11,2,2,2,4,[[332,2,2,2,4]]],[22,1,1,4,5,[[716,1,1,4,5]]]],[228,7315,10108,10109,18398]]]]},{"k":"H323","v":[["lieutenants",[4,4,[[14,1,1,0,1,[[410,1,1,0,1]]],[16,3,3,1,4,[[428,1,1,1,2],[433,1,1,2,3],[434,1,1,3,4]]]],[12237,12759,12826,12837]]]]},{"k":"H324","v":[["princes",[9,9,[[26,9,9,0,9,[[852,3,3,0,3],[855,6,6,3,9]]]],[21809,21810,21834,21906,21907,21908,21909,21911,21912]]]]},{"k":"H325","v":[["*",[31,30,[[14,1,1,0,1,[[406,1,1,0,1]]],[16,29,28,1,29,[[426,9,8,1,9],[427,4,4,9,13],[428,5,5,13,18],[431,1,1,18,19],[432,1,1,19,20],[433,4,4,20,24],[434,3,3,24,27],[435,2,2,27,29]]],[26,1,1,29,30,[[858,1,1,29,30]]]],[12116,12703,12704,12711,12712,12717,12718,12719,12721,12725,12736,12740,12745,12748,12753,12754,12755,12759,12795,12812,12818,12824,12827,12829,12836,12854,12864,12867,12869,21989]]],["Ahasuerus",[30,29,[[14,1,1,0,1,[[406,1,1,0,1]]],[16,28,27,1,28,[[426,9,8,1,9],[427,4,4,9,13],[428,5,5,13,18],[431,1,1,18,19],[432,1,1,19,20],[433,3,3,20,23],[434,3,3,23,26],[435,2,2,26,28]]],[26,1,1,28,29,[[858,1,1,28,29]]]],[12116,12703,12704,12711,12712,12717,12718,12719,12721,12725,12736,12740,12745,12748,12753,12754,12755,12759,12795,12812,12818,12824,12829,12836,12854,12864,12867,12869,21989]]],["Ahasuerus'",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12827]]]]},{"k":"H326","v":[["Haahashtari",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10391]]]]},{"k":"H327","v":[["camels",[2,2,[[16,2,2,0,2,[[433,2,2,0,2]]]],[12827,12831]]]]},{"k":"H328","v":[["*",[6,6,[[0,1,1,0,1,[[32,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[10,1,1,2,3,[[311,1,1,2,3]]],[17,1,1,3,4,[[450,1,1,3,4]]],[22,2,2,4,6,[[686,1,1,4,5],[697,1,1,5,6]]]],[974,8483,9478,13214,17813,18007]]],["charmers",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18007]]],["gently",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8483]]],["secret",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13214]]],["softly",[3,3,[[0,1,1,0,1,[[32,1,1,0,1]]],[10,1,1,1,2,[[311,1,1,1,2]]],[22,1,1,2,3,[[686,1,1,2,3]]]],[974,9478,17813]]]]},{"k":"H329","v":[["*",[6,5,[[0,2,2,0,2,[[49,2,2,0,2]]],[6,3,2,2,4,[[219,3,2,2,4]]],[18,1,1,4,5,[[535,1,1,4,5]]]],[1516,1517,6768,6769,14788]]],["Atad",[2,2,[[0,2,2,0,2,[[49,2,2,0,2]]]],[1516,1517]]],["bramble",[3,2,[[6,3,2,0,2,[[219,3,2,0,2]]]],[6768,6769]]],["thorns",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14788]]]]},{"k":"H330","v":[["linen",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16591]]]]},{"k":"H331","v":[["*",[8,8,[[10,1,1,0,1,[[296,1,1,0,1]]],[18,1,1,1,2,[[535,1,1,1,2]]],[19,2,2,2,4,[[644,1,1,2,3],[648,1,1,3,4]]],[22,1,1,4,5,[[711,1,1,4,5]]],[25,3,3,5,8,[[841,1,1,5,6],[842,2,2,6,8]]]],[8900,14783,16901,16997,18294,21493,21542,21552]]],["narrow",[4,4,[[10,1,1,0,1,[[296,1,1,0,1]]],[25,3,3,1,4,[[841,1,1,1,2],[842,2,2,2,4]]]],[8900,21493,21542,21552]]],["shutteth",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16901]]],["stoppeth",[3,3,[[18,1,1,0,1,[[535,1,1,0,1]]],[19,1,1,1,2,[[648,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]]],[14783,16997,18294]]]]},{"k":"H332","v":[["shut",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14950]]]]},{"k":"H333","v":[["Ater",[5,5,[[14,2,2,0,2,[[404,2,2,0,2]]],[15,3,3,2,5,[[419,2,2,2,4],[422,1,1,4,5]]]],[12043,12069,12441,12465,12566]]]]},{"k":"H334","v":[["+",[2,2,[[6,2,2,0,2,[[213,1,1,0,1],[230,1,1,1,2]]]],[6583,7070]]]]},{"k":"H335","v":[["*",[34,32,[[0,3,3,0,3,[[2,1,1,0,1],[3,1,1,1,2],[15,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[6,1,1,4,5,[[223,1,1,4,5]]],[8,4,4,5,9,[[244,1,1,5,6],[260,1,1,6,7],[261,1,1,7,8],[265,1,1,8,9]]],[9,3,3,9,12,[[267,2,2,9,11],[281,1,1,11,12]]],[10,2,2,12,14,[[303,1,1,12,13],[312,1,1,13,14]]],[11,1,1,14,15,[[315,1,1,14,15]]],[13,1,1,15,16,[[384,1,1,15,16]]],[16,1,1,16,17,[[432,1,1,16,17]]],[17,7,6,17,23,[[437,1,1,17,18],[455,1,1,18,19],[463,2,2,19,21],[473,3,2,21,23]]],[20,2,2,23,25,[[660,1,1,23,24],[669,1,1,24,25]]],[22,4,3,25,28,[[697,1,1,25,26],[728,1,1,26,27],[744,2,1,27,28]]],[23,2,2,28,30,[[749,1,1,28,29],[750,1,1,29,30]]],[31,1,1,30,31,[[889,1,1,30,31]]],[33,1,1,31,32,[[902,1,1,31,32]]]],[64,88,389,5795,6890,7409,7872,7921,7991,8025,8035,8391,9196,9504,9584,11565,12812,12893,13333,13516,13524,13812,13817,17336,17519,18016,18663,18923,19065,19105,22539,22729]]],["+",[19,18,[[0,1,1,0,1,[[15,1,1,0,1]]],[6,1,1,1,2,[[223,1,1,1,2]]],[8,3,3,2,5,[[244,1,1,2,3],[260,1,1,3,4],[265,1,1,4,5]]],[9,2,2,5,7,[[267,2,2,5,7]]],[10,1,1,7,8,[[303,1,1,7,8]]],[11,1,1,8,9,[[315,1,1,8,9]]],[13,1,1,9,10,[[384,1,1,9,10]]],[17,6,5,10,15,[[437,1,1,10,11],[463,2,2,11,13],[473,3,2,13,15]]],[20,1,1,15,16,[[669,1,1,15,16]]],[23,1,1,16,17,[[750,1,1,16,17]]],[31,1,1,17,18,[[889,1,1,17,18]]]],[389,6890,7409,7872,7991,8025,8035,9196,9584,11565,12893,13516,13524,13812,13817,17519,19105,22539]]],["How",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19065]]],["Where",[6,6,[[0,2,2,0,2,[[2,1,1,0,1],[3,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[17,1,1,3,4,[[455,1,1,3,4]]],[22,2,2,4,6,[[697,1,1,4,5],[728,1,1,5,6]]]],[64,88,5795,13333,18016,18663]]],["Which",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9504]]],["what",[2,2,[[9,1,1,0,1,[[281,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[8391,17336]]],["where",[5,4,[[8,1,1,0,1,[[261,1,1,0,1]]],[16,1,1,1,2,[[432,1,1,1,2]]],[22,2,1,2,3,[[744,2,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[7921,12812,18923,22729]]]]},{"k":"H336","v":[["island",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13419]]]]},{"k":"H337","v":[["*",[2,2,[[20,2,2,0,2,[[662,1,1,0,1],[668,1,1,1,2]]]],[17391,17509]]],["Woe",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17509]]],["woe",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17391]]]]},{"k":"H338","v":[["*",[3,3,[[22,2,2,0,2,[[691,1,1,0,1],[712,1,1,1,2]]],[23,1,1,2,3,[[794,1,1,2,3]]]],[17928,18317,20205]]],["island",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18317]]],["islands",[2,2,[[22,1,1,0,1,[[691,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]]],[17928,20205]]]]},{"k":"H339","v":[["*",[36,35,[[0,1,1,0,1,[[9,1,1,0,1]]],[16,1,1,1,2,[[435,1,1,1,2]]],[18,2,2,2,4,[[549,1,1,2,3],[574,1,1,3,4]]],[22,17,17,4,21,[[689,1,1,4,5],[698,1,1,5,6],[701,2,2,6,8],[702,1,1,8,9],[718,1,1,9,10],[719,2,2,10,12],[720,4,4,12,16],[727,1,1,16,17],[729,1,1,17,18],[737,1,1,18,19],[738,1,1,19,20],[744,1,1,20,21]]],[23,4,4,21,25,[[746,1,1,21,22],[769,1,1,22,23],[775,1,1,23,24],[791,1,1,24,25]]],[25,9,8,25,33,[[827,3,2,25,27],[828,5,5,27,32],[840,1,1,32,33]]],[26,1,1,33,34,[[860,1,1,33,34]]],[35,1,1,34,35,[[907,1,1,34,35]]]],[239,12867,15010,15479,17895,18035,18079,18083,18110,18435,18452,18456,18484,18490,18492,18495,18637,18678,18818,18830,18941,18975,19556,19701,20077,21115,21118,21124,21127,21128,21136,21156,21454,22054,22816]]],["+",[3,3,[[22,1,1,0,1,[[689,1,1,0,1]]],[25,2,2,1,3,[[828,2,2,1,3]]]],[17895,21127,21128]]],["country",[1,1,[[23,1,1,0,1,[[791,1,1,0,1]]]],[20077]]],["islands",[4,4,[[22,4,4,0,4,[[719,1,1,0,1],[720,2,2,1,3],[737,1,1,3,4]]]],[18452,18492,18495,18818]]],["isle",[3,3,[[22,3,3,0,3,[[698,1,1,0,1],[701,2,2,1,3]]]],[18035,18079,18083]]],["isles",[25,24,[[0,1,1,0,1,[[9,1,1,0,1]]],[16,1,1,1,2,[[435,1,1,1,2]]],[18,2,2,2,4,[[549,1,1,2,3],[574,1,1,3,4]]],[22,9,9,4,13,[[702,1,1,4,5],[718,1,1,5,6],[719,1,1,6,7],[720,2,2,7,9],[727,1,1,9,10],[729,1,1,10,11],[738,1,1,11,12],[744,1,1,12,13]]],[23,3,3,13,16,[[746,1,1,13,14],[769,1,1,14,15],[775,1,1,15,16]]],[25,7,6,16,22,[[827,3,2,16,18],[828,3,3,18,21],[840,1,1,21,22]]],[26,1,1,22,23,[[860,1,1,22,23]]],[35,1,1,23,24,[[907,1,1,23,24]]]],[239,12867,15010,15479,18110,18435,18456,18484,18490,18637,18678,18830,18941,18975,19556,19701,21115,21118,21124,21136,21156,21454,22054,22816]]]]},{"k":"H340","v":[["+",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2166]]]]},{"k":"H341","v":[["*",[281,274,[[0,2,2,0,2,[[21,1,1,0,1],[48,1,1,1,2]]],[1,5,5,2,7,[[64,2,2,2,4],[72,3,3,4,7]]],[2,13,13,7,20,[[115,13,13,7,20]]],[3,8,8,20,28,[[126,2,2,20,22],[130,1,1,22,23],[139,1,1,23,24],[140,2,2,24,26],[148,1,1,26,27],[151,1,1,27,28]]],[4,25,25,28,53,[[153,1,1,28,29],[158,1,1,29,30],[164,1,1,30,31],[172,4,4,31,35],[173,1,1,35,36],[175,2,2,36,38],[177,1,1,38,39],[180,8,8,39,47],[182,1,1,47,48],[184,3,3,48,51],[185,2,2,51,53]]],[5,11,9,53,62,[[193,4,3,53,56],[196,3,3,56,59],[207,2,1,59,60],[208,1,1,60,61],[209,1,1,61,62]]],[6,9,8,62,70,[[212,3,2,62,64],[213,1,1,64,65],[215,1,1,65,66],[218,1,1,66,67],[221,1,1,67,68],[226,2,2,68,70]]],[8,20,20,70,90,[[237,1,1,70,71],[239,1,1,71,72],[247,2,2,72,74],[249,3,3,74,77],[253,2,2,77,79],[254,1,1,79,80],[255,2,2,80,82],[259,2,2,82,84],[260,3,3,84,87],[261,1,1,87,88],[264,1,1,88,89],[265,1,1,89,90]]],[9,16,16,90,106,[[269,1,1,90,91],[270,1,1,91,92],[271,1,1,92,93],[273,3,3,93,96],[278,1,1,96,97],[284,2,2,97,99],[285,1,1,99,100],[288,6,6,100,106]]],[10,8,7,106,113,[[293,1,1,106,107],[298,6,5,107,112],[311,1,1,112,113]]],[11,3,2,113,115,[[329,1,1,113,114],[333,2,1,114,115]]],[12,5,5,115,120,[[351,1,1,115,116],[354,2,2,116,118],[358,1,1,118,119],[359,1,1,119,120]]],[13,8,8,120,128,[[372,4,4,120,124],[386,2,2,124,126],[391,1,1,126,127],[392,1,1,127,128]]],[14,2,2,128,130,[[410,2,2,128,130]]],[15,5,5,130,135,[[416,1,1,130,131],[417,1,1,131,132],[418,2,2,132,134],[421,1,1,134,135]]],[16,6,6,135,141,[[432,1,1,135,136],[433,1,1,136,137],[434,4,4,137,141]]],[17,3,3,141,144,[[448,1,1,141,142],[462,1,1,142,143],[468,1,1,143,144]]],[18,73,72,144,216,[[480,1,1,144,145],[483,1,1,145,146],[484,1,1,146,147],[485,1,1,147,148],[486,2,2,148,150],[490,2,2,150,152],[494,1,1,152,153],[495,5,5,153,158],[498,1,1,158,159],[502,2,2,159,161],[504,2,2,161,163],[507,1,1,163,164],[508,2,2,164,166],[512,1,1,166,167],[514,1,1,167,168],[515,1,1,168,169],[518,3,3,169,172],[519,1,1,172,173],[520,1,1,173,174],[521,1,1,174,175],[522,1,1,175,176],[531,1,1,176,177],[532,2,2,177,179],[533,1,1,179,180],[536,1,1,180,181],[538,1,1,181,182],[541,1,1,182,183],[543,1,1,183,184],[545,3,3,184,187],[546,2,2,187,189],[548,1,1,189,190],[549,1,1,190,191],[551,3,3,191,194],[555,1,1,194,195],[557,1,1,195,196],[558,1,1,196,197],[560,1,1,197,198],[566,4,4,198,202],[569,2,1,202,203],[579,1,1,203,204],[583,2,2,204,206],[587,2,2,206,208],[596,1,1,208,209],[604,1,1,209,210],[609,1,1,210,211],[615,1,1,211,212],[616,1,1,212,213],[620,3,3,213,216]]],[19,2,2,216,218,[[643,1,1,216,217],[651,1,1,217,218]]],[22,8,8,218,226,[[679,1,1,218,219],[687,1,1,219,220],[720,1,1,220,221],[737,1,1,221,222],[740,1,1,222,223],[741,1,1,223,224],[744,2,2,224,226]]],[23,19,18,226,244,[[750,1,1,226,227],[756,1,1,227,228],[759,3,3,228,231],[761,1,1,231,232],[762,1,1,232,233],[763,2,2,233,235],[764,2,2,235,237],[765,1,1,237,238],[774,1,1,238,239],[775,1,1,239,240],[778,2,2,240,242],[788,2,1,242,243],[793,1,1,243,244]]],[24,15,15,244,259,[[797,5,5,244,249],[798,7,7,249,256],[799,2,2,256,258],[800,1,1,258,259]]],[25,2,2,259,261,[[837,1,1,259,260],[840,1,1,260,261]]],[27,1,1,261,262,[[869,1,1,261,262]]],[29,1,1,262,263,[[887,1,1,262,263]]],[32,6,6,263,269,[[894,1,1,263,264],[896,1,1,264,265],[897,1,1,265,266],[899,3,3,266,269]]],[33,4,4,269,273,[[900,2,2,269,271],[902,2,2,271,273]]],[35,1,1,273,274,[[908,1,1,273,274]]]],[564,1481,1926,1929,2148,2166,2171,3531,3532,3540,3541,3549,3556,3558,3560,3561,3562,3563,3565,3568,3997,4023,4150,4427,4456,4464,4739,4868,4934,5105,5250,5428,5430,5431,5441,5457,5509,5514,5566,5618,5636,5642,5659,5664,5666,5668,5679,5715,5785,5789,5800,5837,5839,5984,5988,5989,6077,6083,6089,6425,6434,6461,6559,6563,6596,6654,6753,6865,6972,6973,7241,7300,7470,7471,7532,7538,7555,7701,7705,7723,7745,7746,7843,7858,7883,7887,7890,7913,7975,8004,8099,8128,8152,8181,8189,8191,8300,8497,8510,8520,8603,8606,8620,8640,8643,8651,8827,9018,9022,9029,9031,9033,9471,10022,10133,10785,10871,10873,10946,10973,11306,11310,11316,11318,11614,11616,11712,11745,12223,12232,12374,12391,12402,12417,12539,12813,12830,12835,12839,12850,12856,13177,13488,13660,13964,13995,14000,14014,14024,14027,14076,14078,14112,14121,14135,14155,14158,14166,14199,14253,14270,14287,14291,14320,14339,14346,14429,14470,14509,14544,14547,14553,14564,14568,14587,14602,14732,14735,14744,14764,14791,14822,14851,14876,14901,14921,14923,14939,14953,14986,15009,15051,15058,15066,15166,15204,15231,15243,15336,15348,15368,15377,15420,15529,15661,15693,15787,15788,15996,16126,16169,16238,16261,16296,16302,16305,16847,17096,17678,17840,18493,18818,18862,18876,18928,18936,19114,19256,19324,19326,19329,19361,19401,19414,19416,19426,19427,19447,19681,19707,19821,19822,20040,20164,20312,20315,20319,20326,20331,20335,20336,20337,20339,20348,20349,20354,20400,20406,20432,21361,21475,22197,22499,22603,22630,22642,22670,22672,22674,22686,22692,22723,22725,22835]]],["+",[21,21,[[3,1,1,0,1,[[126,1,1,0,1]]],[6,2,2,1,3,[[213,1,1,1,2],[221,1,1,2,3]]],[8,1,1,3,4,[[249,1,1,3,4]]],[9,3,3,4,7,[[288,3,3,4,7]]],[13,1,1,7,8,[[386,1,1,7,8]]],[14,1,1,8,9,[[410,1,1,8,9]]],[16,3,3,9,12,[[433,1,1,9,10],[434,2,2,10,12]]],[18,6,6,12,18,[[495,2,2,12,14],[536,1,1,14,15],[545,1,1,15,16],[596,1,1,16,17],[620,1,1,17,18]]],[22,2,2,18,20,[[679,1,1,18,19],[687,1,1,19,20]]],[33,1,1,20,21,[[902,1,1,20,21]]]],[3997,6596,6865,7532,8606,8620,8651,11614,12223,12830,12850,12856,14135,14166,14791,14923,15996,16302,17678,17840,22723]]],["enemies",[181,176,[[0,2,2,0,2,[[21,1,1,0,1],[48,1,1,1,2]]],[1,2,2,2,4,[[72,2,2,2,4]]],[2,10,10,4,14,[[115,10,10,4,14]]],[3,6,6,14,20,[[126,1,1,14,15],[130,1,1,15,16],[139,1,1,16,17],[140,2,2,17,19],[148,1,1,19,20]]],[4,21,21,20,41,[[153,1,1,20,21],[158,1,1,21,22],[164,1,1,22,23],[172,4,4,23,27],[173,1,1,27,28],[175,2,2,28,30],[177,1,1,30,31],[180,7,7,31,38],[182,1,1,38,39],[184,1,1,39,40],[185,1,1,40,41]]],[5,11,9,41,50,[[193,4,3,41,44],[196,3,3,44,47],[207,2,1,47,48],[208,1,1,48,49],[209,1,1,49,50]]],[6,5,4,50,54,[[212,3,2,50,52],[215,1,1,52,53],[218,1,1,53,54]]],[8,14,14,54,68,[[237,1,1,54,55],[239,1,1,55,56],[247,2,2,56,58],[249,2,2,58,60],[253,1,1,60,61],[255,2,2,61,63],[260,3,3,63,66],[264,1,1,66,67],[265,1,1,67,68]]],[9,12,12,68,80,[[269,1,1,68,69],[271,1,1,69,70],[273,3,3,70,73],[278,1,1,73,74],[284,2,2,74,76],[285,1,1,76,77],[288,3,3,77,80]]],[10,2,2,80,82,[[293,1,1,80,81],[298,1,1,81,82]]],[11,3,2,82,84,[[329,1,1,82,83],[333,2,1,83,84]]],[12,5,5,84,89,[[351,1,1,84,85],[354,2,2,85,87],[358,1,1,87,88],[359,1,1,88,89]]],[13,4,4,89,93,[[372,3,3,89,92],[386,1,1,92,93]]],[15,5,5,93,98,[[416,1,1,93,94],[417,1,1,94,95],[418,2,2,95,97],[421,1,1,97,98]]],[16,2,2,98,100,[[434,2,2,98,100]]],[18,45,44,100,144,[[480,1,1,100,101],[483,1,1,101,102],[486,1,1,102,103],[494,1,1,103,104],[495,3,3,104,107],[498,1,1,107,108],[502,2,2,108,110],[504,1,1,110,111],[508,1,1,111,112],[512,1,1,112,113],[514,1,1,113,114],[515,1,1,114,115],[518,2,2,115,117],[522,1,1,117,118],[531,1,1,118,119],[533,1,1,119,120],[543,1,1,120,121],[545,2,2,121,123],[546,2,2,123,125],[548,1,1,125,126],[549,1,1,126,127],[555,1,1,127,128],[557,1,1,128,129],[558,1,1,129,130],[560,1,1,130,131],[566,3,3,131,134],[569,2,1,134,135],[579,1,1,135,136],[583,1,1,136,137],[587,2,2,137,139],[604,1,1,139,140],[609,1,1,140,141],[615,1,1,141,142],[616,1,1,142,143],[620,1,1,143,144]]],[19,1,1,144,145,[[643,1,1,144,145]]],[22,5,5,145,150,[[720,1,1,145,146],[737,1,1,146,147],[740,1,1,147,148],[744,2,2,148,150]]],[23,13,13,150,163,[[756,1,1,150,151],[759,2,2,151,153],[761,1,1,153,154],[763,2,2,154,156],[764,2,2,156,158],[765,1,1,158,159],[778,2,2,159,161],[788,1,1,161,162],[793,1,1,162,163]]],[24,6,6,163,169,[[797,3,3,163,166],[798,1,1,166,167],[799,2,2,167,169]]],[29,1,1,169,170,[[887,1,1,169,170]]],[32,3,3,170,173,[[896,1,1,170,171],[897,1,1,171,172],[899,1,1,172,173]]],[33,3,3,173,176,[[900,2,2,173,175],[902,1,1,175,176]]]],[564,1481,2166,2171,3531,3532,3540,3541,3556,3560,3561,3562,3565,3568,4023,4150,4427,4456,4464,4739,4934,5105,5250,5428,5430,5431,5441,5457,5509,5514,5566,5618,5636,5642,5659,5664,5666,5679,5715,5789,5839,5984,5988,5989,6077,6083,6089,6425,6434,6461,6559,6563,6654,6753,7241,7300,7470,7471,7538,7555,7701,7745,7746,7883,7887,7890,7975,8004,8099,8152,8181,8189,8191,8300,8497,8510,8520,8603,8640,8643,8827,9033,10022,10133,10785,10871,10873,10946,10973,11310,11316,11318,11616,12374,12391,12402,12417,12539,12835,12839,13964,13995,14024,14112,14121,14155,14158,14199,14253,14270,14291,14346,14429,14470,14509,14544,14547,14602,14732,14764,14876,14901,14921,14939,14953,14986,15009,15166,15204,15231,15243,15336,15368,15377,15420,15529,15693,15787,15788,16126,16169,16238,16261,16305,16847,18493,18818,18862,18928,18936,19256,19324,19329,19361,19414,19416,19426,19427,19447,19821,19822,20040,20164,20312,20315,20331,20348,20400,20406,22499,22630,22642,22670,22686,22692,22725]]],["enemies'",[3,3,[[2,2,2,0,2,[[115,2,2,0,2]]],[25,1,1,2,3,[[840,1,1,2,3]]]],[3558,3563,21475]]],["enemy",[73,72,[[1,2,2,0,2,[[64,2,2,0,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[3,1,1,3,4,[[151,1,1,3,4]]],[4,4,4,4,8,[[180,1,1,4,5],[184,2,2,5,7],[185,1,1,7,8]]],[6,2,2,8,10,[[226,2,2,8,10]]],[8,5,5,10,15,[[253,1,1,10,11],[254,1,1,11,12],[259,2,2,12,14],[261,1,1,14,15]]],[9,1,1,15,16,[[270,1,1,15,16]]],[10,6,5,16,21,[[298,5,4,16,20],[311,1,1,20,21]]],[13,3,3,21,24,[[372,1,1,21,22],[391,1,1,22,23],[392,1,1,23,24]]],[14,1,1,24,25,[[410,1,1,24,25]]],[16,1,1,25,26,[[432,1,1,25,26]]],[17,3,3,26,29,[[448,1,1,26,27],[462,1,1,27,28],[468,1,1,28,29]]],[18,20,20,29,49,[[484,1,1,29,30],[485,1,1,30,31],[486,1,1,31,32],[490,2,2,32,34],[508,1,1,34,35],[518,1,1,35,36],[519,1,1,36,37],[520,1,1,37,38],[521,1,1,38,39],[532,2,2,39,41],[538,1,1,41,42],[541,1,1,42,43],[551,3,3,43,46],[566,1,1,46,47],[583,1,1,47,48],[620,1,1,48,49]]],[19,1,1,49,50,[[651,1,1,49,50]]],[22,1,1,50,51,[[741,1,1,50,51]]],[23,6,6,51,57,[[750,1,1,51,52],[759,1,1,52,53],[762,1,1,53,54],[774,1,1,54,55],[775,1,1,55,56],[788,1,1,56,57]]],[24,9,9,57,66,[[797,2,2,57,59],[798,6,6,59,65],[800,1,1,65,66]]],[25,1,1,66,67,[[837,1,1,66,67]]],[27,1,1,67,68,[[869,1,1,67,68]]],[32,3,3,68,71,[[894,1,1,68,69],[899,2,2,69,71]]],[35,1,1,71,72,[[908,1,1,71,72]]]],[1926,1929,3549,4868,5668,5785,5800,5837,6972,6973,7705,7723,7843,7858,7913,8128,9018,9022,9029,9031,9471,11306,11712,11745,12232,12813,13177,13488,13660,14000,14014,14027,14076,14078,14339,14553,14564,14568,14587,14735,14744,14822,14851,15051,15058,15066,15348,15661,16296,17096,18876,19114,19326,19401,19681,19707,20040,20319,20326,20335,20336,20337,20339,20349,20354,20432,21361,22197,22603,22672,22674,22835]]],["enemy's",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2148]]],["foes",[2,2,[[18,2,2,0,2,[[504,1,1,0,1],[507,1,1,1,2]]]],[14287,14320]]]]},{"k":"H342","v":[["*",[5,5,[[0,1,1,0,1,[[2,1,1,0,1]]],[3,2,2,1,3,[[151,2,2,1,3]]],[25,2,2,3,5,[[826,1,1,3,4],[836,1,1,4,5]]]],[70,4866,4867,21098,21349]]],["enmity",[3,3,[[0,1,1,0,1,[[2,1,1,0,1]]],[3,2,2,1,3,[[151,2,2,1,3]]]],[70,4866,4867]]],["hatred",[2,2,[[25,2,2,0,2,[[826,1,1,0,1],[836,1,1,1,2]]]],[21098,21349]]]]},{"k":"H343","v":[["*",[24,22,[[4,1,1,0,1,[[184,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,6,6,2,8,[[453,1,1,2,3],[456,2,2,3,5],[465,1,1,5,6],[466,2,2,6,8]]],[18,1,1,8,9,[[495,1,1,8,9]]],[19,6,6,9,15,[[628,2,2,9,11],[633,1,1,11,12],[644,1,1,12,13],[651,1,1,13,14],[654,1,1,14,15]]],[23,5,5,15,20,[[762,1,1,15,16],[790,1,1,16,17],[792,1,1,17,18],[793,2,2,18,20]]],[25,1,1,20,21,[[836,1,1,20,21]]],[30,3,1,21,22,[[888,3,1,21,22]]]],[5793,8621,13288,13372,13385,13569,13591,13611,14136,16426,16427,16555,16878,17101,17179,19401,20066,20096,20135,20159,21349,22523]]],["calamities",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16878]]],["calamity",[16,14,[[4,1,1,0,1,[[184,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]],[19,4,4,3,7,[[628,1,1,3,4],[633,1,1,4,5],[651,1,1,5,6],[654,1,1,6,7]]],[23,5,5,7,12,[[762,1,1,7,8],[790,1,1,8,9],[792,1,1,9,10],[793,2,2,10,12]]],[25,1,1,12,13,[[836,1,1,12,13]]],[30,3,1,13,14,[[888,3,1,13,14]]]],[5793,8621,14136,16426,16555,17101,17179,19401,20066,20096,20135,20159,21349,22523]]],["destruction",[7,7,[[17,6,6,0,6,[[453,1,1,0,1],[456,2,2,1,3],[465,1,1,3,4],[466,2,2,4,6]]],[19,1,1,6,7,[[628,1,1,6,7]]]],[13288,13372,13385,13569,13591,13611,16427]]]]},{"k":"H344","v":[["*",[3,3,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[17,1,1,2,3,[[463,1,1,2,3]]]],[3011,5303,13511]]],["kite",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3011,5303]]],["vulture's",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13511]]]]},{"k":"H345","v":[["*",[6,6,[[0,1,1,0,1,[[35,1,1,0,1]]],[9,4,4,1,5,[[269,1,1,1,2],[287,3,3,2,5]]],[12,1,1,5,6,[[338,1,1,5,6]]]],[1064,8088,8588,8590,8591,10292]]],["Aiah",[5,5,[[9,4,4,0,4,[[269,1,1,0,1],[287,3,3,1,4]]],[12,1,1,4,5,[[338,1,1,4,5]]]],[8088,8588,8590,8591,10292]]],["Ajah",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1064]]]]},{"k":"H346","v":[["*",[49,42,[[0,4,4,0,4,[[17,1,1,0,1],[18,1,1,1,2],[21,1,1,2,3],[37,1,1,3,4]]],[1,1,1,4,5,[[51,1,1,4,5]]],[6,2,2,5,7,[[216,1,1,5,6],[219,1,1,6,7]]],[9,2,2,7,9,[[282,1,1,7,8],[283,1,1,8,9]]],[11,4,3,9,12,[[314,1,1,9,10],[330,2,1,10,11],[331,1,1,11,12]]],[17,6,5,12,17,[[449,1,1,12,13],[450,1,1,13,14],[452,1,1,14,15],[456,2,1,15,16],[470,1,1,16,17]]],[18,5,5,17,22,[[519,2,2,17,19],[556,1,1,19,20],[566,1,1,20,21],[592,1,1,21,22]]],[22,10,6,22,28,[[711,3,1,22,23],[714,2,1,23,24],[715,1,1,24,25],[729,1,1,25,26],[741,3,2,26,28]]],[23,6,6,28,34,[[746,3,3,28,31],[757,1,1,31,32],[761,1,1,32,33],[781,1,1,33,34]]],[24,1,1,34,35,[[798,1,1,34,35]]],[25,1,1,35,36,[[814,1,1,35,36]]],[28,1,1,36,37,[[877,1,1,36,37]]],[32,1,1,37,38,[[899,1,1,37,38]]],[33,1,1,38,39,[[901,1,1,38,39]]],[37,1,1,39,40,[[911,1,1,39,40]]],[38,3,2,40,42,[[925,2,1,40,41],[926,1,1,41,42]]]],[433,462,554,1140,1574,6667,6792,8429,8469,9565,10058,10074,13191,13226,13275,13383,13730,14558,14565,15195,15375,15832,18297,18349,18365,18686,18877,18881,18971,18973,18993,19286,19372,19893,20344,20720,22328,22674,22710,22883,23095,23120]]],["Where",[29,29,[[0,3,3,0,3,[[17,1,1,0,1],[18,1,1,1,2],[37,1,1,2,3]]],[6,1,1,3,4,[[219,1,1,3,4]]],[9,1,1,4,5,[[283,1,1,4,5]]],[11,3,3,5,8,[[314,1,1,5,6],[330,1,1,6,7],[331,1,1,7,8]]],[17,3,3,8,11,[[450,1,1,8,9],[456,1,1,9,10],[470,1,1,10,11]]],[18,4,4,11,15,[[519,2,2,11,13],[556,1,1,13,14],[592,1,1,14,15]]],[22,4,4,15,19,[[711,1,1,15,16],[714,1,1,16,17],[715,1,1,17,18],[741,1,1,18,19]]],[23,4,4,19,23,[[746,2,2,19,21],[761,1,1,21,22],[781,1,1,22,23]]],[24,1,1,23,24,[[798,1,1,23,24]]],[25,1,1,24,25,[[814,1,1,24,25]]],[28,1,1,25,26,[[877,1,1,25,26]]],[32,1,1,26,27,[[899,1,1,26,27]]],[33,1,1,27,28,[[901,1,1,27,28]]],[38,1,1,28,29,[[926,1,1,28,29]]]],[433,462,1140,6792,8469,9565,10058,10074,13226,13383,13730,14558,14565,15195,15832,18297,18349,18365,18877,18971,18973,19372,19893,20344,20720,22328,22674,22710,23120]]],["where",[20,18,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]],[6,1,1,2,3,[[216,1,1,2,3]]],[9,1,1,3,4,[[282,1,1,3,4]]],[11,1,1,4,5,[[330,1,1,4,5]]],[17,3,3,5,8,[[449,1,1,5,6],[452,1,1,6,7],[456,1,1,7,8]]],[18,1,1,8,9,[[566,1,1,8,9]]],[22,6,5,9,14,[[711,2,1,9,10],[714,1,1,10,11],[729,1,1,11,12],[741,2,2,12,14]]],[23,2,2,14,16,[[746,1,1,14,15],[757,1,1,15,16]]],[37,1,1,16,17,[[911,1,1,16,17]]],[38,2,1,17,18,[[925,2,1,17,18]]]],[554,1574,6667,8429,10058,13191,13275,13383,15375,18297,18349,18686,18877,18881,18993,19286,22883,23095]]]]},{"k":"H347","v":[["*",[58,52,[[17,56,50,0,50,[[436,9,7,0,7],[437,4,4,7,11],[438,2,2,11,13],[441,1,1,13,14],[444,1,1,14,15],[447,1,1,15,16],[451,1,1,16,17],[454,1,1,17,18],[456,1,1,18,19],[458,1,1,19,20],[461,1,1,20,21],[462,1,1,21,22],[464,1,1,22,23],[466,1,1,23,24],[467,5,5,24,29],[468,2,2,29,31],[469,4,4,31,35],[470,1,1,35,36],[472,1,1,36,37],[473,1,1,37,38],[475,3,3,38,41],[477,13,9,41,50]]],[25,2,2,50,52,[[815,2,2,50,52]]]],[12870,12874,12877,12878,12883,12889,12891,12894,12898,12901,12902,12905,12906,12979,13052,13129,13239,13298,13356,13420,13468,13482,13533,13628,13629,13630,13631,13632,13640,13651,13681,13688,13690,13718,13719,13736,13783,13794,13865,13867,13870,13923,13929,13930,13931,13932,13934,13937,13938,13939,20745,20751]]],["+",[2,2,[[17,2,2,0,2,[[438,1,1,0,1],[477,1,1,1,2]]]],[12905,13932]]],["Job",[55,50,[[17,53,48,0,48,[[436,9,7,0,7],[437,3,3,7,10],[438,1,1,10,11],[441,1,1,11,12],[444,1,1,12,13],[447,1,1,13,14],[451,1,1,14,15],[454,1,1,15,16],[456,1,1,16,17],[458,1,1,17,18],[461,1,1,18,19],[462,1,1,19,20],[464,1,1,20,21],[466,1,1,21,22],[467,5,5,22,27],[468,2,2,27,29],[469,4,4,29,33],[470,1,1,33,34],[472,1,1,34,35],[473,1,1,35,36],[475,3,3,36,39],[477,12,9,39,48]]],[25,2,2,48,50,[[815,2,2,48,50]]]],[12870,12874,12877,12878,12883,12889,12891,12894,12898,12901,12906,12979,13052,13129,13239,13298,13356,13420,13468,13482,13533,13628,13629,13630,13631,13632,13640,13651,13681,13688,13690,13718,13719,13736,13783,13794,13865,13867,13870,13923,13929,13930,13931,13932,13934,13937,13938,13939,20745,20751]]],["Job's",[1,1,[[17,1,1,0,1,[[437,1,1,0,1]]]],[12902]]]]},{"k":"H348","v":[["*",[22,19,[[10,15,13,0,13,[[306,1,1,0,1],[308,3,3,1,4],[309,2,2,4,6],[311,9,7,6,13]]],[11,7,6,13,19,[[321,7,6,13,19]]]],[9314,9345,9354,9360,9388,9389,9456,9458,9462,9465,9466,9474,9476,9763,9766,9778,9786,9792,9793]]],["+",[1,1,[[10,1,1,0,1,[[309,1,1,0,1]]]],[9388]]],["Jezebel",[20,17,[[10,13,11,0,11,[[306,1,1,0,1],[308,2,2,1,3],[309,1,1,3,4],[311,9,7,4,11]]],[11,7,6,11,17,[[321,7,6,11,17]]]],[9314,9345,9354,9389,9456,9458,9462,9465,9466,9474,9476,9763,9766,9778,9786,9792,9793]]],["Jezebel's",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9360]]]]},{"k":"H349","v":[["*",[82,74,[[0,4,4,0,4,[[25,1,1,0,1],[38,1,1,1,2],[43,2,2,2,4]]],[1,2,2,4,6,[[55,2,2,4,6]]],[4,5,5,6,11,[[153,1,1,6,7],[159,1,1,7,8],[164,1,1,8,9],[170,1,1,9,10],[184,1,1,10,11]]],[5,1,1,11,12,[[195,1,1,11,12]]],[6,2,2,12,14,[[226,1,1,12,13],[230,1,1,13,14]]],[7,1,1,14,15,[[234,1,1,14,15]]],[8,1,1,15,16,[[251,1,1,15,16]]],[9,8,8,16,24,[[267,5,5,16,21],[268,1,1,21,22],[272,1,1,22,23],[278,1,1,23,24]]],[10,1,1,24,25,[[302,1,1,24,25]]],[11,4,4,25,29,[[318,1,1,25,26],[322,1,1,26,27],[329,1,1,27,28],[330,1,1,28,29]]],[13,1,1,29,30,[[376,1,1,29,30]]],[16,2,1,30,31,[[433,2,1,30,31]]],[17,1,1,31,32,[[456,1,1,31,32]]],[18,4,4,32,36,[[488,1,1,32,33],[550,2,2,33,35],[614,1,1,35,36]]],[19,1,1,36,37,[[632,1,1,36,37]]],[20,2,2,37,39,[[660,1,1,37,38],[662,1,1,38,39]]],[21,4,2,39,41,[[671,2,1,39,40],[675,2,1,40,41]]],[22,7,7,41,48,[[679,1,1,41,42],[692,2,2,42,44],[697,1,1,44,45],[698,1,1,45,46],[714,1,1,46,47],[726,1,1,47,48]]],[23,19,15,48,63,[[746,2,2,48,50],[747,1,1,50,51],[752,1,1,51,52],[753,2,2,52,54],[756,2,1,54,55],[780,1,1,55,56],[791,1,1,56,57],[792,4,3,57,60],[793,1,1,60,61],[794,2,1,61,62],[795,2,1,62,63]]],[24,4,4,63,67,[[797,1,1,63,64],[798,1,1,64,65],[800,2,2,65,67]]],[25,2,2,67,69,[[827,1,1,67,68],[834,1,1,68,69]]],[27,2,1,69,70,[[872,2,1,69,70]]],[30,2,2,70,72,[[888,2,2,70,72]]],[32,1,1,72,73,[[894,1,1,72,73]]],[35,1,1,73,74,[[907,1,1,73,74]]]],[701,1158,1332,1358,1667,1685,4904,5128,5270,5405,5788,6044,6964,7057,7190,7597,8027,8036,8041,8047,8049,8071,8166,8304,9157,9689,9797,10011,10048,11401,12823,13389,14060,15031,15039,16226,16529,17349,17392,17544,17601,17675,17932,17940,18015,18035,18339,18625,18986,18988,19021,19161,19182,19194,19254,19859,20080,20094,20097,20119,20152,20189,20253,20311,20333,20421,20422,21117,21290,22248,22515,22516,22599,22820]]],["How",[40,40,[[4,4,4,0,4,[[153,1,1,0,1],[164,1,1,1,2],[170,1,1,2,3],[184,1,1,3,4]]],[6,1,1,4,5,[[226,1,1,4,5]]],[8,1,1,5,6,[[251,1,1,5,6]]],[9,5,5,6,11,[[267,4,4,6,10],[272,1,1,10,11]]],[10,1,1,11,12,[[302,1,1,11,12]]],[11,1,1,12,13,[[330,1,1,12,13]]],[17,1,1,13,14,[[456,1,1,13,14]]],[18,3,3,14,17,[[550,2,2,14,16],[614,1,1,16,17]]],[19,1,1,17,18,[[632,1,1,17,18]]],[22,4,4,18,22,[[679,1,1,18,19],[692,2,2,19,21],[714,1,1,21,22]]],[23,12,12,22,34,[[746,1,1,22,23],[747,1,1,23,24],[752,1,1,24,25],[753,1,1,25,26],[780,1,1,26,27],[791,1,1,27,28],[792,3,3,28,31],[793,1,1,31,32],[794,1,1,32,33],[795,1,1,33,34]]],[24,3,3,34,37,[[797,1,1,34,35],[798,1,1,35,36],[800,1,1,36,37]]],[25,1,1,37,38,[[827,1,1,37,38]]],[27,1,1,38,39,[[872,1,1,38,39]]],[30,1,1,39,40,[[888,1,1,39,40]]]],[4904,5270,5405,5788,6964,7597,8027,8036,8047,8049,8166,9157,10048,13389,15031,15039,16226,16529,17675,17932,17940,18339,18988,19021,19161,19194,19859,20080,20094,20097,20119,20152,20189,20253,20311,20333,20421,21117,22248,22516]]],["What",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11401]]],["how",[39,36,[[0,4,4,0,4,[[25,1,1,0,1],[38,1,1,1,2],[43,2,2,2,4]]],[1,2,2,4,6,[[55,2,2,4,6]]],[4,1,1,6,7,[[159,1,1,6,7]]],[5,1,1,7,8,[[195,1,1,7,8]]],[6,1,1,8,9,[[230,1,1,8,9]]],[7,1,1,9,10,[[234,1,1,9,10]]],[9,3,3,10,13,[[267,1,1,10,11],[268,1,1,11,12],[278,1,1,12,13]]],[11,3,3,13,16,[[318,1,1,13,14],[322,1,1,14,15],[329,1,1,15,16]]],[16,2,1,16,17,[[433,2,1,16,17]]],[18,1,1,17,18,[[488,1,1,17,18]]],[20,2,2,18,20,[[660,1,1,18,19],[662,1,1,19,20]]],[21,2,1,20,21,[[675,2,1,20,21]]],[22,3,3,21,24,[[697,1,1,21,22],[698,1,1,22,23],[726,1,1,23,24]]],[23,7,6,24,30,[[746,1,1,24,25],[753,1,1,25,26],[756,2,1,26,27],[792,1,1,27,28],[794,1,1,28,29],[795,1,1,29,30]]],[24,1,1,30,31,[[800,1,1,30,31]]],[25,1,1,31,32,[[834,1,1,31,32]]],[27,1,1,32,33,[[872,1,1,32,33]]],[30,1,1,33,34,[[888,1,1,33,34]]],[32,1,1,34,35,[[894,1,1,34,35]]],[35,1,1,35,36,[[907,1,1,35,36]]]],[701,1158,1332,1358,1667,1685,5128,6044,7057,7190,8041,8071,8304,9689,9797,10011,12823,14060,17349,17392,17601,18015,18035,18625,18986,19182,19254,20119,20189,20253,20422,21290,22248,22515,22599,22820]]],["where",[2,1,[[21,2,1,0,1,[[671,2,1,0,1]]]],[17544]]]]},{"k":"H350","v":[["*",[2,2,[[8,2,2,0,2,[[239,1,1,0,1],[249,1,1,1,2]]]],[7318,7511]]],["Ichabod",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7318]]],["Ichabod's",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7511]]]]},{"k":"H351","v":[["where",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9687]]]]},{"k":"H352","v":[["*",[185,171,[[0,5,4,0,4,[[14,1,1,0,1],[21,2,1,1,2],[30,1,1,2,3],[31,1,1,3,4]]],[1,23,20,4,24,[[64,1,1,4,5],[74,1,1,5,6],[75,1,1,6,7],[78,16,13,7,20],[84,2,2,20,22],[85,1,1,22,23],[88,1,1,23,24]]],[2,22,19,24,43,[[94,3,3,24,27],[95,1,1,27,28],[97,9,6,28,34],[98,4,4,34,38],[105,2,2,38,40],[108,2,2,40,42],[112,1,1,42,43]]],[3,66,65,43,108,[[121,1,1,43,44],[122,3,3,44,47],[123,26,26,47,73],[131,2,2,73,75],[139,6,6,75,81],[144,7,7,81,88],[145,21,20,88,108]]],[4,1,1,108,109,[[184,1,1,108,109]]],[8,1,1,109,110,[[250,1,1,109,110]]],[10,1,1,110,111,[[296,1,1,110,111]]],[11,2,2,111,113,[[315,1,1,111,112],[336,1,1,112,113]]],[12,2,2,113,115,[[352,1,1,113,114],[366,1,1,114,115]]],[13,5,5,115,120,[[379,1,1,115,116],[383,1,1,116,117],[395,3,3,117,120]]],[14,2,2,120,122,[[410,1,1,120,121],[412,1,1,121,122]]],[17,1,1,122,123,[[477,1,1,122,123]]],[18,3,3,123,126,[[543,1,1,123,124],[591,2,2,124,126]]],[22,5,5,126,131,[[679,2,2,126,128],[712,1,1,128,129],[738,1,1,129,130],[739,1,1,130,131]]],[23,1,1,131,132,[[795,1,1,131,132]]],[25,36,33,132,165,[[818,1,1,132,133],[828,1,1,133,134],[832,2,2,134,136],[835,1,1,136,137],[840,1,1,137,138],[841,19,16,138,154],[842,2,2,154,156],[844,2,2,156,158],[846,2,2,158,160],[847,5,5,160,165]]],[26,8,5,165,170,[[857,8,5,165,170]]],[32,1,1,170,171,[[898,1,1,170,171]]]],[369,560,911,942,1935,2200,2249,2337,2339,2351,2352,2353,2354,2355,2356,2358,2362,2363,2367,2368,2538,2554,2585,2698,2845,2846,2848,2855,2919,2935,2937,2938,2939,2946,2955,2957,2971,2972,3204,3206,3302,3303,3420,3800,3837,3840,3842,3865,3867,3871,3873,3877,3879,3883,3885,3889,3891,3895,3897,3901,3903,3907,3909,3913,3915,3919,3921,3925,3927,3931,3933,3937,3938,4159,4164,4417,4418,4420,4430,4445,4446,4588,4589,4591,4596,4597,4604,4605,4610,4611,4616,4617,4621,4622,4625,4626,4628,4629,4631,4632,4634,4635,4637,4638,4640,4641,4644,4645,5772,7582,8927,9580,10217,10817,11185,11462,11534,11812,11813,11823,12236,12271,13930,14888,15826,15828,17665,17683,18309,18828,18846,20252,20838,21142,21241,21244,21330,21466,21486,21487,21491,21493,21498,21501,21503,21506,21508,21510,21511,21513,21514,21515,21525,21526,21527,21529,21595,21597,21653,21654,21659,21660,21661,21662,21666,21964,21965,21967,21968,21981,22655]]],["+",[4,4,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,1,1,2,3,[[97,1,1,2,3]]],[22,1,1,3,4,[[679,1,1,3,4]]]],[2362,2363,2946,17683]]],["lintel",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8927]]],["men",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1935]]],["mighty",[2,2,[[11,1,1,0,1,[[336,1,1,0,1]]],[25,1,1,1,2,[[818,1,1,1,2]]]],[10217,20838]]],["one",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21241]]],["post",[4,4,[[25,4,4,0,4,[[841,3,3,0,3],[842,1,1,3,4]]]],[21491,21493,21525,21529]]],["posts",[17,16,[[25,17,16,0,16,[[841,16,15,0,15],[842,1,1,15,16]]]],[21486,21487,21491,21493,21498,21501,21503,21506,21508,21510,21511,21513,21514,21515,21526,21527]]],["ram",[87,77,[[0,3,2,0,2,[[14,1,1,0,1],[21,2,1,1,2]]],[1,12,9,2,11,[[78,12,9,2,11]]],[2,19,16,11,27,[[94,3,3,11,14],[95,1,1,14,15],[97,7,4,15,19],[98,4,4,19,23],[105,2,2,23,25],[108,2,2,25,27]]],[3,36,36,27,63,[[121,1,1,27,28],[122,3,3,28,31],[123,12,12,31,43],[131,2,2,43,45],[139,4,4,45,49],[144,7,7,49,56],[145,7,7,56,63]]],[14,1,1,63,64,[[412,1,1,63,64]]],[25,8,8,64,72,[[844,2,2,64,66],[846,1,1,66,67],[847,5,5,67,72]]],[26,8,5,72,77,[[857,8,5,72,77]]]],[369,560,2351,2352,2353,2354,2355,2356,2358,2367,2368,2845,2846,2848,2855,2935,2937,2938,2939,2955,2957,2971,2972,3204,3206,3302,3303,3800,3837,3840,3842,3865,3871,3877,3883,3889,3895,3901,3907,3913,3919,3925,3931,4159,4164,4418,4420,4430,4446,4588,4589,4591,4596,4597,4604,4605,4610,4611,4616,4617,4622,4644,4645,12271,21595,21597,21654,21659,21660,21661,21662,21666,21964,21965,21967,21968,21981]]],["rams",[61,61,[[0,2,2,0,2,[[30,1,1,0,1],[31,1,1,1,2]]],[1,3,3,2,5,[[78,2,2,2,4],[84,1,1,4,5]]],[2,2,2,5,7,[[97,1,1,5,6],[112,1,1,6,7]]],[3,30,30,7,37,[[123,14,14,7,21],[139,2,2,21,23],[145,14,14,23,37]]],[4,1,1,37,38,[[184,1,1,37,38]]],[8,1,1,38,39,[[250,1,1,38,39]]],[11,1,1,39,40,[[315,1,1,39,40]]],[12,2,2,40,42,[[352,1,1,40,41],[366,1,1,41,42]]],[13,5,5,42,47,[[379,1,1,42,43],[383,1,1,43,44],[395,3,3,44,47]]],[14,1,1,47,48,[[410,1,1,47,48]]],[17,1,1,48,49,[[477,1,1,48,49]]],[18,3,3,49,52,[[543,1,1,49,50],[591,2,2,50,52]]],[22,3,3,52,55,[[679,1,1,52,53],[712,1,1,53,54],[738,1,1,54,55]]],[23,1,1,55,56,[[795,1,1,55,56]]],[25,4,4,56,60,[[828,1,1,56,57],[835,1,1,57,58],[840,1,1,58,59],[846,1,1,59,60]]],[32,1,1,60,61,[[898,1,1,60,61]]]],[911,942,2337,2339,2554,2919,3420,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3937,3938,4417,4445,4621,4622,4625,4626,4628,4629,4631,4632,4634,4635,4637,4638,4640,4641,5772,7582,9580,10817,11185,11462,11534,11812,11813,11823,12236,13930,14888,15826,15828,17665,18309,18828,20252,21142,21330,21466,21653,22655]]],["rams'",[5,5,[[1,5,5,0,5,[[74,1,1,0,1],[75,1,1,1,2],[84,1,1,2,3],[85,1,1,3,4],[88,1,1,4,5]]]],[2200,2249,2538,2585,2698]]],["trees",[2,2,[[22,1,1,0,1,[[739,1,1,0,1]]],[25,1,1,1,2,[[832,1,1,1,2]]]],[18846,21244]]]]},{"k":"H353","v":[["strength",[1,1,[[18,1,1,0,1,[[565,1,1,0,1]]]],[15312]]]]},{"k":"H354","v":[["*",[11,11,[[4,4,4,0,4,[[164,2,2,0,2],[166,1,1,2,3],[167,1,1,3,4]]],[10,1,1,4,5,[[294,1,1,4,5]]],[18,1,1,5,6,[[519,1,1,5,6]]],[21,3,3,6,9,[[672,2,2,6,8],[678,1,1,8,9]]],[22,1,1,9,10,[[713,1,1,9,10]]],[24,1,1,10,11,[[797,1,1,10,11]]]],[5255,5262,5295,5341,8867,14556,17563,17571,17654,18326,20316]]],["+",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8867]]],["hart",[9,9,[[4,4,4,0,4,[[164,2,2,0,2],[166,1,1,2,3],[167,1,1,3,4]]],[18,1,1,4,5,[[519,1,1,4,5]]],[21,3,3,5,8,[[672,2,2,5,7],[678,1,1,7,8]]],[22,1,1,8,9,[[713,1,1,8,9]]]],[5255,5262,5295,5341,14556,17563,17571,17654,18326]]],["harts",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20316]]]]},{"k":"H355","v":[["*",[8,8,[[0,1,1,0,1,[[48,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,1,1,2,3,[[474,1,1,2,3]]],[18,2,2,3,5,[[495,1,1,3,4],[506,1,1,4,5]]],[21,2,2,5,7,[[672,1,1,5,6],[673,1,1,6,7]]],[34,1,1,7,8,[[905,1,1,7,8]]]],[1494,8636,13835,14151,14317,17561,17576,22787]]],["hind",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1494]]],["hinds",[4,4,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,1,1,1,2,[[506,1,1,1,2]]],[21,2,2,2,4,[[672,1,1,2,3],[673,1,1,3,4]]]],[13835,14317,17561,17576]]],["hinds'",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]],[34,1,1,2,3,[[905,1,1,2,3]]]],[8636,14151,22787]]]]},{"k":"H356","v":[["Elon",[7,7,[[0,3,3,0,3,[[25,1,1,0,1],[35,1,1,1,2],[45,1,1,2,3]]],[3,1,1,3,4,[[142,1,1,3,4]]],[5,1,1,4,5,[[205,1,1,4,5]]],[6,2,2,5,7,[[222,2,2,5,7]]]],[726,1042,1400,4515,6364,6880,6881]]]]},{"k":"H357","v":[["*",[10,10,[[5,3,3,0,3,[[196,1,1,0,1],[205,1,1,1,2],[207,1,1,2,3]]],[6,2,2,3,5,[[211,1,1,3,4],[222,1,1,4,5]]],[8,1,1,5,6,[[249,1,1,5,6]]],[12,2,2,6,8,[[343,1,1,6,7],[345,1,1,7,8]]],[13,2,2,8,10,[[377,1,1,8,9],[394,1,1,9,10]]]],[6076,6363,6405,6544,6881,7539,10523,10588,11424,11782]]],["Aijalon",[7,7,[[5,1,1,0,1,[[207,1,1,0,1]]],[6,2,2,1,3,[[211,1,1,1,2],[222,1,1,2,3]]],[8,1,1,3,4,[[249,1,1,3,4]]],[12,2,2,4,6,[[343,1,1,4,5],[345,1,1,5,6]]],[13,1,1,6,7,[[377,1,1,6,7]]]],[6405,6544,6881,7539,10523,10588,11424]]],["Ajalon",[3,3,[[5,2,2,0,2,[[196,1,1,0,1],[205,1,1,1,2]]],[13,1,1,2,3,[[394,1,1,2,3]]]],[6076,6363,11782]]]]},{"k":"H358","v":[["Elonbethhanan",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8853]]]]},{"k":"H359","v":[["*",[8,6,[[4,1,1,0,1,[[154,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[11,4,2,2,4,[[326,1,1,2,3],[328,3,1,3,4]]],[13,2,2,4,6,[[374,1,1,4,5],[392,1,1,5,6]]]],[4946,9077,9918,9969,11363,11734]]],["+",[2,2,[[4,1,1,0,1,[[154,1,1,0,1]]],[11,1,1,1,2,[[328,1,1,1,2]]]],[4946,9969]]],["Elath",[3,2,[[11,3,2,0,2,[[326,1,1,0,1],[328,2,1,1,2]]]],[9918,9969]]],["Eloth",[3,3,[[10,1,1,0,1,[[299,1,1,0,1]]],[13,2,2,1,3,[[374,1,1,1,2],[392,1,1,2,3]]]],[9077,11363,11734]]]]},{"k":"H360","v":[["strength",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14223]]]]},{"k":"H361","v":[["arches",[15,12,[[25,15,12,0,12,[[841,15,12,0,12]]]],[21493,21498,21499,21501,21502,21503,21506,21507,21508,21510,21511,21513]]]]},{"k":"H362","v":[["*",[6,4,[[1,3,2,0,2,[[64,1,1,0,1],[65,2,1,1,2]]],[3,3,2,2,4,[[149,3,2,2,4]]]],[1947,1948,4769,4770]]],["+",[2,2,[[1,1,1,0,1,[[65,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]]],[1948,4770]]],["Elim",[4,3,[[1,2,2,0,2,[[64,1,1,0,1],[65,1,1,1,2]]],[3,2,1,2,3,[[149,2,1,2,3]]]],[1947,1948,4769]]]]},{"k":"H363","v":[["*",[6,6,[[26,6,6,0,6,[[853,6,6,0,6]]]],[21847,21848,21851,21857,21860,21863]]],["+",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21860]]],["tree",[5,5,[[26,5,5,0,5,[[853,5,5,0,5]]]],[21847,21848,21851,21857,21863]]]]},{"k":"H364","v":[["Elparan",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[342]]]]},{"k":"H365","v":[["hind",[2,2,[[19,1,1,0,1,[[632,1,1,0,1]]],[23,1,1,1,2,[[758,1,1,1,2]]]],[16536,19298]]]]},{"k":"H366","v":[["terrible",[3,3,[[21,2,2,0,2,[[676,2,2,0,2]]],[34,1,1,2,3,[[903,1,1,2,3]]]],[17618,17624,22738]]]]},{"k":"H367","v":[["*",[17,17,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,2,2,1,3,[[64,1,1,1,2],[72,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[5,1,1,4,5,[[188,1,1,4,5]]],[14,1,1,5,6,[[405,1,1,5,6]]],[17,6,6,6,12,[[444,1,1,6,7],[448,1,1,7,8],[455,1,1,8,9],[468,1,1,9,10],[474,1,1,10,11],[476,1,1,11,12]]],[18,2,2,12,14,[[532,1,1,12,13],[565,1,1,13,14]]],[19,1,1,14,15,[[647,1,1,14,15]]],[22,1,1,15,16,[[711,1,1,15,16]]],[23,1,1,16,17,[[794,1,1,16,17]]]],[372,1936,2171,5783,5878,12100,13085,13174,13351,13657,13854,13902,14736,15323,16956,18297,20204]]],["Fear",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1936]]],["dread",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13174]]],["fear",[4,4,[[1,1,1,0,1,[[72,1,1,0,1]]],[14,1,1,1,2,[[405,1,1,1,2]]],[17,1,1,2,3,[[444,1,1,2,3]]],[19,1,1,3,4,[[647,1,1,3,4]]]],[2171,12100,13085,16956]]],["horror",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[372]]],["idols",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20204]]],["terrible",[2,2,[[17,2,2,0,2,[[474,1,1,0,1],[476,1,1,1,2]]]],[13854,13902]]],["terror",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]],[17,1,1,2,3,[[468,1,1,2,3]]],[22,1,1,3,4,[[711,1,1,3,4]]]],[5783,5878,13657,18297]]],["terrors",[3,3,[[17,1,1,0,1,[[455,1,1,0,1]]],[18,2,2,1,3,[[532,1,1,1,2],[565,1,1,2,3]]]],[13351,14736,15323]]]]},{"k":"H368","v":[["Emims",[3,3,[[0,1,1,0,1,[[13,1,1,0,1]]],[4,2,2,1,3,[[154,2,2,1,3]]]],[341,4948,4949]]]]},{"k":"H369","v":[["*",[787,686,[[0,37,36,0,36,[[1,1,1,0,1],[4,1,1,1,2],[6,1,1,2,3],[10,1,1,3,4],[18,1,1,4,5],[19,2,2,5,7],[27,1,1,7,8],[29,2,2,8,10],[30,3,3,10,13],[36,3,3,13,16],[38,3,3,16,19],[39,1,1,19,20],[40,5,5,20,25],[41,4,3,25,28],[42,1,1,28,29],[43,4,4,29,33],[44,1,1,33,34],[46,2,2,34,36]]],[1,22,20,36,56,[[51,1,1,36,37],[52,1,1,37,38],[54,3,3,38,41],[57,2,2,41,43],[58,1,1,43,44],[61,2,1,44,45],[63,1,1,45,46],[66,2,2,46,48],[70,1,1,48,49],[71,4,4,49,53],[81,3,2,53,55],[82,1,1,55,56]]],[2,21,17,56,73,[[100,5,4,56,60],[102,9,6,60,66],[103,1,1,66,67],[111,1,1,67,68],[114,1,1,68,69],[115,4,4,69,73]]],[3,19,18,73,91,[[121,2,2,73,75],[127,1,1,75,76],[129,1,1,76,77],[130,1,1,77,78],[135,2,2,78,80],[136,2,2,80,82],[137,2,1,82,83],[138,1,1,83,84],[143,6,6,84,90],[151,1,1,90,91]]],[4,30,29,91,120,[[153,2,2,91,93],[156,4,4,93,97],[160,1,1,97,98],[164,1,1,98,99],[166,3,3,99,102],[171,1,1,102,103],[173,2,2,103,105],[174,2,2,105,107],[177,1,1,107,108],[180,5,5,108,113],[181,1,1,113,114],[183,1,1,114,115],[184,5,4,115,119],[185,1,1,119,120]]],[5,5,4,120,124,[[192,2,1,120,121],[204,1,1,121,122],[208,2,2,122,124]]],[6,27,25,124,149,[[213,1,1,124,125],[214,1,1,125,126],[216,1,1,126,127],[217,2,2,127,129],[219,2,2,129,131],[221,1,1,131,132],[222,1,1,132,133],[223,1,1,133,134],[224,2,2,134,136],[226,1,1,136,137],[227,1,1,137,138],[228,6,4,138,142],[229,5,5,142,147],[231,2,2,147,149]]],[7,1,1,149,150,[[235,1,1,149,150]]],[8,33,27,150,177,[[236,1,1,150,151],[237,3,1,151,152],[238,1,1,152,153],[244,3,3,153,156],[245,2,2,156,158],[246,2,2,158,160],[249,4,4,160,164],[252,1,1,164,165],[253,1,1,165,166],[254,1,1,166,167],[255,2,2,167,169],[256,4,3,169,172],[257,2,1,172,173],[259,1,1,173,174],[261,3,1,174,175],[262,1,1,175,176],[265,1,1,176,177]]],[9,15,13,177,190,[[269,1,1,177,178],[273,2,1,178,179],[278,1,1,179,180],[280,1,1,180,181],[281,1,1,181,182],[283,1,1,182,183],[284,2,2,183,185],[285,2,2,185,187],[286,1,1,187,188],[287,2,1,188,189],[288,1,1,189,190]]],[10,25,21,190,211,[[293,1,1,190,191],[295,3,2,191,193],[296,1,1,193,194],[298,4,4,194,198],[300,1,1,198,199],[305,1,1,199,200],[308,7,4,200,204],[310,1,1,204,205],[311,2,2,205,207],[312,4,4,207,211]]],[11,20,18,211,229,[[313,3,3,211,214],[314,1,1,214,215],[315,1,1,215,216],[316,5,4,216,220],[317,1,1,220,221],[319,2,2,221,223],[321,1,1,223,224],[324,1,1,224,225],[326,1,1,225,226],[329,3,2,226,228],[331,1,1,228,229]]],[12,9,8,229,237,[[341,1,1,229,230],[354,2,1,230,231],[359,4,4,231,235],[360,1,1,235,236],[366,1,1,236,237]]],[13,25,24,237,261,[[371,2,2,237,239],[372,2,2,239,241],[375,1,1,241,242],[378,1,1,242,243],[380,4,3,243,246],[381,1,1,246,247],[384,3,3,247,250],[385,1,1,250,251],[386,4,4,251,255],[387,1,1,255,256],[388,1,1,256,257],[391,1,1,257,258],[401,2,2,258,260],[402,1,1,260,261]]],[14,4,4,261,265,[[405,1,1,261,262],[411,2,2,262,264],[412,1,1,264,265]]],[15,11,9,265,274,[[414,5,4,265,269],[416,2,1,269,270],[417,1,1,270,271],[419,1,1,271,272],[420,1,1,272,273],[425,1,1,273,274]]],[16,10,9,274,283,[[426,1,1,274,275],[427,2,2,275,277],[428,3,2,277,279],[429,1,1,279,280],[430,1,1,280,281],[432,1,1,281,282],[433,1,1,282,283]]],[17,37,34,283,317,[[436,1,1,283,284],[437,2,2,284,286],[438,2,2,286,288],[440,3,2,288,290],[441,1,1,290,291],[442,2,2,291,293],[443,1,1,293,294],[444,2,1,294,295],[445,1,1,295,296],[446,2,2,296,298],[447,1,1,298,299],[453,1,1,299,300],[454,1,1,300,301],[455,1,1,301,302],[456,1,1,302,303],[457,1,1,303,304],[458,1,1,304,305],[459,2,2,305,307],[461,1,1,307,308],[462,1,1,308,309],[463,1,1,309,310],[466,1,1,310,311],[467,2,2,311,313],[468,1,1,313,314],[469,2,1,314,315],[470,1,1,315,316],[476,1,1,316,317]]],[18,67,56,317,373,[[480,1,1,317,318],[482,1,1,318,319],[483,1,1,319,320],[484,1,1,320,321],[487,1,1,321,322],[491,4,2,322,324],[495,1,1,324,325],[496,3,2,325,327],[499,1,1,327,328],[509,2,2,328,330],[510,1,1,330,331],[511,1,1,331,332],[513,1,1,332,333],[514,3,2,333,335],[515,5,4,335,339],[516,2,2,339,341],[517,2,2,341,343],[527,1,1,343,344],[530,4,2,344,346],[532,1,1,346,347],[536,1,1,347,348],[546,2,2,348,350],[548,1,1,350,351],[549,1,1,351,352],[550,3,3,352,355],[551,1,1,355,356],[556,1,1,356,357],[563,2,1,357,358],[565,1,1,358,359],[580,1,1,359,360],[581,2,2,360,362],[582,2,2,362,364],[584,1,1,364,365],[596,1,1,365,366],[612,1,1,366,367],[616,1,1,367,368],[619,2,1,368,369],[621,3,1,369,370],[622,1,1,370,371],[623,1,1,371,372],[624,1,1,372,373]]],[19,38,34,373,407,[[628,1,1,373,374],[632,2,2,374,376],[633,2,2,376,378],[634,1,1,378,379],[635,3,2,379,381],[637,1,1,381,382],[638,1,1,382,383],[639,1,1,383,384],[640,2,2,384,386],[641,2,2,386,388],[642,1,1,388,389],[644,1,1,389,390],[647,1,1,390,391],[648,3,1,391,392],[649,1,1,392,393],[650,1,1,393,394],[652,4,3,394,397],[653,1,1,397,398],[655,4,4,398,402],[656,4,4,402,406],[657,1,1,406,407]]],[20,44,37,407,444,[[659,3,3,407,410],[660,3,3,410,413],[661,5,4,413,417],[662,7,4,417,421],[663,4,4,421,425],[664,1,1,425,426],[665,1,1,426,427],[666,8,6,427,433],[667,7,6,433,439],[668,1,1,439,440],[669,2,2,440,442],[670,2,2,442,444]]],[21,5,5,444,449,[[674,2,2,444,446],[676,2,2,446,448],[678,1,1,448,449]]],[22,92,72,449,521,[[679,4,4,449,453],[680,2,1,453,454],[681,2,1,454,455],[683,4,3,455,458],[684,2,1,458,459],[686,1,1,459,460],[687,1,1,460,461],[691,1,1,461,462],[692,1,1,462,463],[695,2,2,463,465],[697,1,1,465,466],[700,2,1,466,467],[701,1,1,467,468],[705,1,1,468,469],[711,1,1,469,470],[712,2,2,470,472],[715,1,1,472,473],[718,6,5,473,478],[719,9,6,478,484],[720,2,1,484,485],[721,3,3,485,488],[722,3,3,488,491],[723,9,7,491,498],[724,1,1,498,499],[725,4,4,499,503],[726,1,1,503,504],[728,5,2,504,506],[729,2,1,506,507],[733,1,1,507,508],[735,3,2,508,510],[737,8,6,510,516],[738,1,1,516,517],[741,3,2,517,519],[742,1,1,519,520],[744,1,1,520,521]]],[23,89,77,521,598,[[746,1,1,521,522],[748,5,5,522,527],[749,2,2,527,529],[750,1,1,529,530],[751,4,4,530,534],[752,10,7,534,541],[753,1,1,541,542],[754,5,4,542,546],[755,1,1,546,547],[756,2,2,547,549],[757,1,1,549,550],[758,6,4,550,554],[759,1,1,554,555],[760,1,1,555,556],[763,1,1,556,557],[765,1,1,557,558],[766,2,2,558,560],[770,2,2,560,562],[774,6,5,562,567],[775,1,1,567,568],[776,2,2,568,570],[777,6,2,570,572],[778,1,1,572,573],[781,1,1,573,574],[782,4,4,574,578],[783,1,1,578,579],[788,3,3,579,582],[790,4,4,582,586],[792,3,3,586,589],[793,6,5,589,594],[794,2,2,594,596],[795,2,2,596,598]]],[24,11,11,598,609,[[797,5,5,598,603],[798,1,1,603,604],[799,1,1,604,605],[800,1,1,605,606],[801,3,3,606,609]]],[25,23,21,609,630,[[804,1,1,609,610],[808,2,2,610,612],[809,1,1,612,613],[810,1,1,613,614],[814,4,3,614,617],[821,1,1,617,618],[827,1,1,618,619],[828,1,1,619,620],[829,1,1,620,621],[834,2,2,621,623],[835,3,3,623,626],[838,1,1,626,627],[839,2,1,627,628],[840,1,1,628,629],[843,1,1,629,630]]],[26,9,9,630,639,[[850,1,1,630,631],[857,3,3,631,634],[858,1,1,634,635],[859,1,1,635,636],[860,3,3,636,639]]],[27,15,9,639,648,[[864,5,1,639,640],[865,3,1,640,641],[866,1,1,641,642],[868,2,2,642,644],[869,2,2,644,646],[871,1,1,646,647],[874,1,1,647,648]]],[28,3,3,648,651,[[876,2,2,648,650],[877,1,1,650,651]]],[29,5,5,651,656,[[880,1,1,651,652],[881,2,2,652,654],[883,2,2,654,656]]],[30,1,1,656,657,[[888,1,1,656,657]]],[32,6,6,657,663,[[895,1,1,657,658],[896,2,2,658,660],[897,1,1,660,661],[899,2,2,661,663]]],[33,7,7,663,670,[[901,3,3,663,666],[902,4,4,666,670]]],[34,3,2,670,672,[[904,1,1,670,671],[905,2,1,671,672]]],[35,3,3,672,675,[[907,1,1,672,673],[908,2,2,673,675]]],[36,5,3,675,678,[[909,3,1,675,676],[910,2,2,676,678]]],[37,4,3,678,681,[[918,2,1,678,679],[919,1,1,679,680],[920,1,1,680,681]]],[38,6,5,681,686,[[925,3,2,681,683],[926,3,3,683,686]]]],[35,129,167,296,488,502,506,790,831,863,875,878,923,1107,1112,1113,1158,1160,1172,1180,1203,1210,1219,1234,1244,1265,1284,1288,1295,1350,1354,1355,1358,1364,1424,1433,1566,1581,1642,1643,1648,1720,1731,1756,1846,1900,1984,1990,2088,2115,2116,2123,2127,2456,2470,2488,3001,3007,3009,3023,3056,3073,3078,3083,3084,3086,3132,3382,3500,3530,3541,3560,3561,3800,3805,4030,4095,4150,4291,4304,4316,4330,4345,4401,4558,4562,4563,4564,4565,4571,4872,4924,4934,5016,5026,5039,5043,5152,5252,5300,5317,5319,5412,5465,5467,5496,5497,5552,5637,5640,5642,5643,5679,5694,5745,5762,5770,5786,5797,5836,5950,6300,6451,6453,6593,6619,6659,6706,6708,6769,6774,6863,6872,6893,6912,6915,6964,6986,6994,7000,7003,7021,7025,7039,7042,7043,7052,7111,7127,7194,7214,7242,7277,7393,7395,7398,7432,7442,7448,7452,7514,7525,7534,7547,7668,7701,7717,7732,7751,7773,7776,7781,7795,7850,7917,7931,7982,8103,8202,8289,8362,8392,8455,8496,8500,8517,8518,8555,8584,8644,8834,8882,8884,8914,8994,9008,9031,9045,9100,9271,9351,9367,9370,9384,9448,9456,9466,9481,9487,9497,9527,9536,9539,9549,9561,9587,9605,9609,9617,9634,9662,9712,9717,9766,9857,9922,10009,10017,10064,10412,10883,10967,10968,10978,10980,11009,11179,11278,11279,11296,11318,11384,11440,11481,11486,11488,11495,11548,11549,11558,11583,11593,11599,11611,11612,11642,11653,11711,11969,11981,12009,12110,12251,12252,12265,12309,12319,12321,12327,12382,12387,12424,12503,12695,12710,12731,12744,12752,12755,12764,12792,12811,12825,12877,12894,12904,12913,12925,12955,12960,12991,13016,13029,13051,13061,13093,13111,13127,13131,13295,13304,13347,13388,13394,13427,13443,13460,13473,13500,13518,13607,13633,13640,13683,13705,13735,13921,13959,13982,13990,13997,14045,14081,14083,14159,14171,14174,14215,14357,14364,14382,14397,14439,14460,14486,14493,14497,14500,14504,14517,14525,14530,14537,14690,14720,14722,14751,14803,14937,14955,14987,15012,15022,15024,15025,15057,15188,15292,15312,15565,15596,15606,15640,15643,15711,16063,16192,16243,16290,16319,16323,16344,16356,16424,16534,16540,16547,16555,16594,16610,16626,16681,16702,16726,16751,16754,16776,16778,16829,16889,16958,17014,17042,17049,17116,17127,17141,17161,17197,17199,17220,17223,17225,17233,17242,17243,17278,17322,17324,17326,17344,17349,17357,17371,17373,17378,17381,17382,17389,17391,17397,17398,17401,17409,17411,17419,17449,17465,17466,17469,17471,17473,17474,17476,17477,17480,17481,17485,17491,17504,17518,17519,17524,17535,17584,17589,17620,17622,17648,17660,17669,17684,17685,17692,17714,17748,17766,17768,17780,17827,17836,17920,17959,17985,17997,18011,18074,18087,18155,18298,18313,18315,18355,18436,18437,18443,18448,18449,18462,18463,18468,18475,18477,18479,18502,18516,18517,18518,18539,18541,18545,18566,18567,18570,18575,18579,18582,18583,18595,18600,18609,18613,18614,18636,18664,18672,18691,18741,18766,18786,18804,18808,18810,18811,18815,18816,18836,18869,18871,18892,18926,18997,19031,19034,19050,19052,19056,19071,19079,19103,19135,19136,19151,19152,19159,19164,19166,19168,19170,19172,19175,19197,19206,19207,19208,19221,19240,19260,19261,19285,19299,19305,19309,19312,19316,19355,19418,19452,19471,19482,19581,19588,19672,19674,19677,19680,19684,19706,19764,19774,19785,19787,19823,19888,19899,19900,19901,19904,19933,20012,20026,20032,20056,20064,20068,20072,20082,20089,20118,20128,20132,20134,20137,20139,20186,20198,20241,20249,20312,20317,20319,20327,20331,20341,20403,20424,20445,20449,20450,20509,20591,20602,20616,20631,20718,20723,20724,20934,21121,21157,21176,21308,21312,21319,21321,21341,21405,21436,21474,21558,21741,21965,21966,21988,22014,22036,22051,22052,22081,22132,22134,22166,22185,22189,22201,22202,22228,22270,22297,22309,22338,22390,22399,22400,22425,22429,22517,22615,22624,22629,22641,22665,22666,22707,22708,22710,22715,22721,22730,22731,22767,22785,22810,22826,22833,22846,22858,22872,22986,23010,23018,23097,23099,23105,23112,23116]]],["+",[72,63,[[0,1,1,0,1,[[38,1,1,0,1]]],[2,1,1,1,2,[[103,1,1,1,2]]],[6,2,2,2,4,[[224,1,1,2,3],[231,1,1,3,4]]],[8,2,2,4,6,[[246,1,1,4,5],[254,1,1,5,6]]],[9,2,2,6,8,[[278,1,1,6,7],[285,1,1,7,8]]],[10,1,1,8,9,[[308,1,1,8,9]]],[11,3,3,9,12,[[324,1,1,9,10],[329,2,2,10,12]]],[12,1,1,12,13,[[359,1,1,12,13]]],[13,1,1,13,14,[[387,1,1,13,14]]],[17,6,4,14,18,[[440,2,1,14,15],[444,2,1,15,16],[456,1,1,16,17],[457,1,1,17,18]]],[18,6,6,18,24,[[517,1,1,18,19],[581,1,1,19,20],[612,1,1,20,21],[622,1,1,21,22],[623,1,1,22,23],[624,1,1,23,24]]],[19,2,2,24,26,[[640,1,1,24,25],[652,1,1,25,26]]],[20,2,2,26,28,[[659,1,1,26,27],[663,1,1,27,28]]],[22,6,5,28,33,[[683,1,1,28,29],[684,2,1,29,30],[719,1,1,30,31],[728,1,1,31,32],[741,1,1,32,33]]],[23,23,19,33,52,[[748,1,1,33,34],[751,1,1,34,35],[754,2,2,35,37],[756,1,1,37,38],[763,1,1,38,39],[770,1,1,39,40],[774,1,1,40,41],[776,1,1,41,42],[777,6,2,42,44],[778,1,1,44,45],[783,1,1,45,46],[788,1,1,46,47],[790,2,2,47,49],[792,1,1,49,50],[795,2,2,50,52]]],[24,2,2,52,54,[[799,1,1,52,53],[801,1,1,53,54]]],[25,2,2,54,56,[[834,1,1,54,55],[835,1,1,55,56]]],[26,2,2,56,58,[[850,1,1,56,57],[859,1,1,57,58]]],[33,1,1,58,59,[[902,1,1,58,59]]],[35,2,2,59,61,[[907,1,1,59,60],[908,1,1,60,61]]],[36,3,1,61,62,[[909,3,1,61,62]]],[38,1,1,62,63,[[926,1,1,62,63]]]],[1160,3132,6915,7111,7452,7717,8289,8518,9384,9857,10009,10017,10968,11642,12960,13061,13388,13394,14537,15596,16192,16323,16344,16356,16754,17116,17324,17411,17748,17780,18475,18664,18869,19034,19151,19207,19208,19261,19418,19581,19674,19774,19785,19787,19823,19933,20032,20064,20068,20089,20241,20249,20403,20445,21308,21321,21741,22036,22721,22810,22826,22846,23116]]],["No",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6619]]],["None",[3,3,[[22,3,3,0,3,[[683,1,1,0,1],[725,1,1,1,2],[737,1,1,2,3]]]],[17766,18609,18804]]],["Without",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16829]]],["cannot",[2,2,[[14,1,1,0,1,[[411,1,1,0,1]]],[18,1,1,1,2,[[517,1,1,1,2]]]],[12252,14530]]],["else",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]]],[831,6708]]],["except",[1,1,[[0,1,1,0,1,[[43,1,1,0,1]]]],[1350]]],["faileth",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18545]]],["gone",[4,4,[[10,1,1,0,1,[[310,1,1,0,1]]],[17,1,1,1,2,[[459,1,1,1,2]]],[18,2,2,2,4,[[515,1,1,2,3],[580,1,1,3,4]]]],[9448,13460,14500,15565]]],["man",[12,11,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,3,3,1,4,[[180,3,3,1,4]]],[8,2,2,4,6,[[246,1,1,4,5],[249,1,1,5,6]]],[18,2,1,6,7,[[619,2,1,6,7]]],[19,1,1,7,8,[[628,1,1,7,8]]],[22,1,1,8,9,[[738,1,1,8,9]]],[24,1,1,9,10,[[800,1,1,9,10]]],[33,1,1,10,11,[[902,1,1,10,11]]]],[2123,5637,5640,5679,7448,7547,16290,16424,18836,20424,22730]]],["more",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7982]]],["neither",[42,41,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,1,1,1,2,[[81,1,1,1,2]]],[3,2,2,2,4,[[136,1,1,2,3],[137,1,1,3,4]]],[4,2,2,4,6,[[184,2,2,4,6]]],[6,1,1,6,7,[[221,1,1,6,7]]],[8,3,3,7,10,[[237,1,1,7,8],[259,1,1,8,9],[261,1,1,9,10]]],[9,3,3,10,13,[[273,1,1,10,11],[285,1,1,11,12],[287,1,1,12,13]]],[10,2,2,13,15,[[295,1,1,13,14],[308,1,1,14,15]]],[11,2,2,15,17,[[316,1,1,15,16],[329,1,1,16,17]]],[12,1,1,17,18,[[354,1,1,17,18]]],[15,3,3,18,21,[[414,1,1,18,19],[416,1,1,19,20],[417,1,1,20,21]]],[16,2,2,21,23,[[427,1,1,21,22],[428,1,1,22,23]]],[17,1,1,23,24,[[440,1,1,23,24]]],[18,2,2,24,26,[[515,1,1,24,25],[563,1,1,25,26]]],[20,5,5,26,31,[[662,1,1,26,27],[666,2,2,27,29],[667,2,2,29,31]]],[22,4,3,31,34,[[680,2,1,31,32],[681,1,1,32,33],[729,1,1,33,34]]],[23,1,1,34,35,[[754,1,1,34,35]]],[25,2,2,35,37,[[814,1,1,35,36],[839,1,1,36,37]]],[26,2,2,37,39,[[857,1,1,37,38],[860,1,1,38,39]]],[34,1,1,39,40,[[905,1,1,39,40]]],[37,1,1,40,41,[[918,1,1,40,41]]]],[1364,2456,4316,4345,5786,5797,6863,7242,7850,7917,8202,8517,8584,8882,9370,9634,10017,10883,12319,12382,12387,12731,12755,12955,14493,15292,17389,17466,17474,17480,17481,17692,17714,18691,19206,20723,21436,21965,22051,22785,22986]]],["never",[4,4,[[6,1,1,0,1,[[224,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]],[25,2,2,2,4,[[828,1,1,2,3],[829,1,1,3,4]]]],[6912,11549,21157,21176]]],["nigh",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15022]]],["no",[246,233,[[0,6,6,0,6,[[10,1,1,0,1],[30,1,1,1,2],[36,1,1,2,3],[39,1,1,3,4],[46,2,2,4,6]]],[1,5,5,6,11,[[51,1,1,6,7],[54,1,1,7,8],[63,1,1,8,9],[66,1,1,9,10],[71,1,1,10,11]]],[2,7,6,11,17,[[100,1,1,11,12],[102,4,3,12,15],[111,1,1,15,16],[114,1,1,16,17]]],[3,12,12,17,29,[[121,2,2,17,19],[135,2,2,19,21],[137,1,1,21,22],[138,1,1,22,23],[143,6,6,23,29]]],[4,10,10,29,39,[[156,1,1,29,30],[160,1,1,30,31],[164,1,1,31,32],[166,2,2,32,34],[174,1,1,34,35],[177,1,1,35,36],[180,1,1,36,37],[184,2,2,37,39]]],[5,3,3,39,42,[[204,1,1,39,40],[208,2,2,40,42]]],[6,12,10,42,52,[[227,1,1,42,43],[228,6,4,43,47],[229,4,4,47,51],[231,1,1,51,52]]],[8,10,10,52,62,[[236,1,1,52,53],[238,1,1,53,54],[249,2,2,54,56],[252,1,1,56,57],[255,1,1,57,58],[256,3,3,58,61],[261,1,1,61,62]]],[9,5,5,62,67,[[281,1,1,62,63],[284,2,2,63,65],[286,1,1,65,66],[287,1,1,66,67]]],[10,7,7,67,74,[[293,1,1,67,68],[296,1,1,68,69],[298,2,2,69,71],[308,1,1,71,72],[311,1,1,72,73],[312,1,1,73,74]]],[11,5,5,74,79,[[313,1,1,74,75],[316,1,1,75,76],[317,1,1,76,77],[319,2,2,77,79]]],[12,2,2,79,81,[[359,1,1,79,80],[360,1,1,80,81]]],[13,10,10,81,91,[[372,2,2,81,83],[380,2,2,83,85],[381,1,1,85,86],[384,1,1,86,87],[385,1,1,87,88],[386,1,1,88,89],[388,1,1,89,90],[402,1,1,90,91]]],[14,1,1,91,92,[[411,1,1,91,92]]],[15,2,2,92,94,[[414,2,2,92,94]]],[16,1,1,94,95,[[433,1,1,94,95]]],[17,6,6,95,101,[[446,1,1,95,96],[454,1,1,96,97],[459,1,1,97,98],[461,1,1,98,99],[467,1,1,99,100],[469,1,1,100,101]]],[18,26,25,101,126,[[480,1,1,101,102],[482,1,1,102,103],[483,1,1,103,104],[491,2,2,104,106],[496,1,1,106,107],[509,2,2,107,109],[510,1,1,109,110],[511,1,1,110,111],[513,1,1,111,112],[515,3,3,112,115],[516,1,1,115,116],[530,2,2,116,118],[532,1,1,118,119],[546,1,1,119,120],[549,1,1,120,121],[550,1,1,121,122],[551,1,1,122,123],[565,1,1,123,124],[581,1,1,124,125],[621,2,1,125,126]]],[19,16,15,126,141,[[633,1,1,126,127],[635,2,1,127,128],[637,1,1,128,129],[638,1,1,129,130],[641,1,1,130,131],[644,1,1,131,132],[648,1,1,132,133],[652,1,1,133,134],[653,1,1,134,135],[655,3,3,135,138],[656,2,2,138,140],[657,1,1,140,141]]],[20,18,16,141,157,[[659,1,1,141,142],[660,2,2,142,144],[661,2,2,144,146],[662,4,3,146,149],[663,1,1,149,150],[666,3,2,150,152],[667,2,2,152,154],[668,1,1,154,155],[670,2,2,155,157]]],[21,2,2,157,159,[[674,1,1,157,158],[678,1,1,158,159]]],[22,31,28,159,187,[[679,2,2,159,161],[686,1,1,161,162],[687,1,1,162,163],[691,1,1,163,164],[697,1,1,164,165],[701,1,1,165,166],[718,2,2,166,168],[719,2,1,168,169],[721,2,2,169,171],[722,2,2,171,173],[723,3,3,173,176],[725,1,1,176,177],[726,1,1,177,178],[728,3,2,178,180],[733,1,1,180,181],[735,2,2,181,183],[737,5,4,183,187]]],[23,25,22,187,209,[[748,2,2,187,189],[750,1,1,189,190],[752,6,5,190,195],[756,1,1,195,196],[758,3,2,196,198],[760,1,1,198,199],[766,1,1,199,200],[774,2,2,200,202],[782,2,2,202,204],[788,1,1,204,205],[792,2,2,205,207],[793,3,2,207,209]]],[24,2,2,209,211,[[797,1,1,209,210],[798,1,1,210,211]]],[25,5,5,211,216,[[814,3,3,211,214],[827,1,1,214,215],[838,1,1,215,216]]],[27,5,5,216,221,[[865,1,1,216,217],[869,2,2,217,219],[871,1,1,219,220],[874,1,1,220,221]]],[28,1,1,221,222,[[876,1,1,221,222]]],[29,2,2,222,224,[[881,2,2,222,224]]],[32,3,3,224,227,[[895,1,1,224,225],[896,1,1,225,226],[899,1,1,226,227]]],[33,1,1,227,228,[[902,1,1,227,228]]],[34,2,2,228,230,[[904,1,1,228,229],[905,1,1,229,230]]],[37,2,2,230,232,[[919,1,1,230,231],[920,1,1,231,232]]],[38,1,1,232,233,[[925,1,1,232,233]]]],[296,923,1107,1180,1424,1433,1566,1648,1900,1984,2115,3009,3073,3078,3083,3382,3500,3800,3805,4291,4304,4345,4401,4558,4562,4563,4564,4565,4571,5016,5152,5252,5317,5319,5496,5552,5643,5770,5797,6300,6451,6453,6986,6994,7000,7003,7021,7025,7039,7042,7043,7127,7214,7277,7514,7534,7668,7751,7773,7776,7781,7917,8392,8496,8500,8555,8584,8834,8914,9008,9031,9367,9456,9527,9549,9617,9662,9712,9717,10980,11009,11296,11318,11481,11486,11495,11558,11583,11599,11653,12009,12251,12321,12327,12825,13111,13304,13443,13473,13633,13705,13959,13982,13990,14081,14083,14171,14357,14364,14382,14397,14439,14493,14497,14504,14525,14720,14722,14751,14937,15012,15024,15057,15312,15606,16319,16547,16626,16681,16702,16776,16889,17014,17141,17161,17197,17199,17220,17233,17242,17278,17326,17344,17349,17371,17378,17382,17389,17397,17401,17466,17473,17476,17485,17504,17524,17535,17589,17648,17660,17684,17827,17836,17920,18011,18087,18448,18449,18479,18516,18517,18539,18541,18566,18570,18582,18600,18636,18664,18672,18741,18766,18786,18808,18810,18815,18816,19050,19052,19103,19159,19164,19166,19168,19175,19260,19299,19312,19355,19482,19680,19684,19901,19904,20012,20082,20118,20128,20134,20319,20341,20718,20723,20724,21121,21405,22134,22201,22202,22228,22270,22309,22399,22400,22615,22629,22665,22731,22767,22785,23010,23018,23099]]],["none",[135,127,[[0,6,6,0,6,[[27,1,1,0,1],[38,1,1,1,2],[40,4,4,2,6]]],[1,2,2,6,8,[[57,1,1,6,7],[58,1,1,7,8]]],[2,4,4,8,12,[[115,4,4,8,12]]],[4,5,5,12,17,[[156,2,2,12,14],[174,1,1,14,15],[180,1,1,15,16],[185,1,1,16,17]]],[5,2,1,17,18,[[192,2,1,17,18]]],[6,1,1,18,19,[[229,1,1,18,19]]],[7,1,1,19,20,[[235,1,1,19,20]]],[8,6,4,20,24,[[237,2,1,20,21],[245,1,1,21,22],[256,1,1,22,23],[257,2,1,23,24]]],[9,3,3,24,27,[[273,1,1,24,25],[280,1,1,25,26],[288,1,1,26,27]]],[10,3,3,27,30,[[298,1,1,27,28],[300,1,1,28,29],[305,1,1,29,30]]],[11,1,1,30,31,[[321,1,1,30,31]]],[12,2,2,31,33,[[354,1,1,31,32],[366,1,1,32,33]]],[13,3,3,33,36,[[375,1,1,33,34],[386,2,2,34,36]]],[15,1,1,36,37,[[416,1,1,36,37]]],[16,2,2,37,39,[[426,1,1,37,38],[429,1,1,38,39]]],[17,8,8,39,47,[[436,1,1,39,40],[437,2,2,40,42],[438,1,1,42,43],[445,1,1,43,44],[446,1,1,44,45],[455,1,1,45,46],[467,1,1,46,47]]],[18,13,13,47,60,[[484,1,1,47,48],[491,2,2,48,50],[495,1,1,50,51],[499,1,1,51,52],[527,1,1,52,53],[530,2,2,53,55],[546,1,1,55,56],[548,1,1,56,57],[556,1,1,57,58],[563,1,1,58,59],[584,1,1,59,60]]],[21,1,1,60,61,[[674,1,1,60,61]]],[22,31,26,61,87,[[679,1,1,61,62],[683,1,1,62,63],[692,1,1,63,64],[695,1,1,64,65],[700,2,1,65,66],[712,2,2,66,68],[719,4,2,68,70],[720,2,1,70,71],[721,1,1,71,72],[723,6,6,72,78],[724,1,1,78,79],[725,1,1,79,80],[728,1,1,80,81],[729,1,1,81,82],[735,1,1,82,83],[737,1,1,83,84],[741,2,1,84,85],[742,1,1,85,86],[744,1,1,86,87]]],[23,13,13,87,100,[[748,1,1,87,88],[751,1,1,88,89],[753,1,1,89,90],[754,1,1,90,91],[757,1,1,91,92],[758,1,1,92,93],[765,1,1,93,94],[774,2,2,94,96],[790,1,1,96,97],[793,1,1,97,98],[794,2,2,98,100]]],[24,5,5,100,105,[[797,4,4,100,104],[801,1,1,104,105]]],[25,5,5,105,110,[[808,2,2,105,107],[835,2,2,107,109],[840,1,1,109,110]]],[26,3,3,110,113,[[857,1,1,110,111],[860,2,2,111,113]]],[27,2,2,113,115,[[866,1,1,113,114],[868,1,1,114,115]]],[28,1,1,115,116,[[877,1,1,115,116]]],[29,2,2,116,118,[[883,2,2,116,118]]],[30,1,1,118,119,[[888,1,1,118,119]]],[32,3,3,119,122,[[896,1,1,119,120],[897,1,1,120,121],[899,1,1,121,122]]],[33,4,4,122,126,[[901,3,3,122,125],[902,1,1,125,126]]],[35,1,1,126,127,[[908,1,1,126,127]]]],[790,1158,1203,1210,1219,1234,1720,1756,3530,3541,3560,3561,5039,5043,5497,5642,5836,5950,7052,7194,7242,7442,7781,7795,8202,8362,8644,9045,9100,9271,9766,10883,11179,11384,11593,11611,12382,12710,12764,12877,12894,12904,12913,13093,13127,13347,13640,13997,14081,14083,14159,14215,14690,14720,14722,14955,14987,15188,15292,15711,17584,17685,17768,17959,17985,18074,18313,18315,18468,18477,18502,18518,18566,18567,18575,18579,18582,18583,18595,18614,18664,18691,18766,18811,18871,18892,18926,19031,19152,19197,19221,19285,19309,19452,19677,19680,20072,20132,20186,20198,20312,20317,20327,20331,20450,20591,20602,21319,21341,21474,21988,22052,22081,22166,22185,22338,22425,22429,22517,22624,22641,22666,22707,22708,22710,22715,22833]]],["nor",[24,21,[[2,2,2,0,2,[[100,1,1,0,1],[102,1,1,1,2]]],[8,1,1,2,3,[[261,1,1,2,3]]],[10,4,3,3,6,[[295,1,1,3,4],[308,3,2,4,6]]],[11,2,2,6,8,[[316,1,1,6,7],[326,1,1,7,8]]],[17,2,2,8,10,[[453,1,1,8,9],[469,1,1,9,10]]],[18,2,2,10,12,[[496,1,1,10,11],[621,1,1,11,12]]],[19,2,1,12,13,[[648,2,1,12,13]]],[20,1,1,13,14,[[661,1,1,13,14]]],[22,4,4,14,18,[[681,1,1,14,15],[683,1,1,15,16],[718,1,1,16,17],[737,1,1,17,18]]],[23,1,1,18,19,[[752,1,1,18,19]]],[27,2,1,19,20,[[865,2,1,19,20]]],[37,1,1,20,21,[[918,1,1,20,21]]]],[3023,3086,7917,8882,9367,9370,9634,9922,13295,13705,14171,16319,17014,17373,17714,17766,18436,18804,19166,22134,22986]]],["not",[179,173,[[0,20,19,0,19,[[1,1,1,0,1],[4,1,1,1,2],[6,1,1,2,3],[18,1,1,3,4],[19,2,2,4,6],[29,1,1,6,7],[30,2,2,7,9],[36,2,2,9,11],[38,1,1,11,12],[41,4,3,12,15],[42,1,1,15,16],[43,3,3,16,19]]],[1,11,10,19,29,[[52,1,1,19,20],[54,2,2,20,22],[57,1,1,22,23],[61,2,1,23,24],[66,1,1,24,25],[71,1,1,25,26],[81,2,2,26,28],[82,1,1,28,29]]],[2,7,7,29,36,[[100,3,3,29,32],[102,4,4,32,36]]],[3,3,3,36,39,[[129,1,1,36,37],[130,1,1,37,38],[151,1,1,38,39]]],[4,9,9,39,48,[[153,2,2,39,41],[156,1,1,41,42],[166,1,1,42,43],[171,1,1,43,44],[173,2,2,44,46],[181,1,1,46,47],[183,1,1,47,48]]],[6,6,6,48,54,[[213,1,1,48,49],[219,2,2,49,51],[222,1,1,51,52],[223,1,1,52,53],[226,1,1,53,54]]],[8,6,6,54,60,[[244,3,3,54,57],[249,1,1,57,58],[253,1,1,58,59],[255,1,1,59,60]]],[9,2,2,60,62,[[269,1,1,60,61],[283,1,1,61,62]]],[10,5,5,62,67,[[295,1,1,62,63],[308,1,1,63,64],[311,1,1,64,65],[312,2,2,65,67]]],[11,7,7,67,74,[[313,2,2,67,69],[314,1,1,69,70],[315,1,1,70,71],[316,2,2,71,73],[331,1,1,73,74]]],[12,1,1,74,75,[[341,1,1,74,75]]],[13,6,6,75,81,[[371,1,1,75,76],[380,1,1,76,77],[384,1,1,77,78],[391,1,1,78,79],[401,2,2,79,81]]],[14,2,2,81,83,[[405,1,1,81,82],[412,1,1,82,83]]],[15,3,3,83,86,[[414,1,1,83,84],[419,1,1,84,85],[425,1,1,85,86]]],[16,4,4,86,90,[[427,1,1,86,87],[428,2,2,87,89],[432,1,1,89,90]]],[17,11,11,90,101,[[438,1,1,90,91],[441,1,1,91,92],[442,2,2,92,94],[447,1,1,94,95],[458,1,1,95,96],[462,1,1,96,97],[463,1,1,97,98],[468,1,1,98,99],[470,1,1,99,100],[476,1,1,100,101]]],[18,8,7,101,108,[[487,1,1,101,102],[514,3,2,102,104],[536,1,1,104,105],[550,1,1,105,106],[582,1,1,106,107],[616,1,1,107,108]]],[19,7,7,108,115,[[632,1,1,108,109],[634,1,1,109,110],[639,1,1,110,111],[641,1,1,111,112],[650,1,1,112,113],[655,1,1,113,114],[656,1,1,114,115]]],[20,14,14,115,129,[[659,1,1,115,116],[662,2,2,116,118],[663,2,2,118,120],[665,1,1,120,121],[666,3,3,121,124],[667,3,3,124,127],[669,2,2,127,129]]],[21,1,1,129,130,[[676,1,1,129,130]]],[22,7,7,130,137,[[679,1,1,130,131],[695,1,1,131,132],[705,1,1,132,133],[711,1,1,133,134],[715,1,1,134,135],[718,1,1,135,136],[725,1,1,136,137]]],[23,24,22,137,159,[[748,1,1,137,138],[749,1,1,138,139],[751,2,2,139,141],[752,3,2,141,143],[754,1,1,143,144],[755,1,1,144,145],[758,2,1,145,146],[759,1,1,146,147],[766,1,1,147,148],[770,1,1,148,149],[774,1,1,149,150],[775,1,1,150,151],[776,1,1,151,152],[781,1,1,152,153],[782,2,2,153,155],[788,1,1,155,156],[790,1,1,156,157],[793,2,2,157,159]]],[24,1,1,159,160,[[801,1,1,159,160]]],[25,6,6,160,166,[[804,1,1,160,161],[809,1,1,161,162],[810,1,1,162,163],[821,1,1,163,164],[834,1,1,164,165],[843,1,1,165,166]]],[26,2,2,166,168,[[857,1,1,166,167],[858,1,1,167,168]]],[29,1,1,168,169,[[880,1,1,168,169]]],[36,1,1,169,170,[[910,1,1,169,170]]],[38,4,3,170,173,[[925,2,1,170,171],[926,2,2,171,173]]]],[35,129,167,488,502,506,863,875,878,1112,1113,1172,1265,1284,1288,1295,1354,1355,1358,1581,1642,1643,1731,1846,1990,2127,2456,2470,2488,3001,3007,3023,3056,3073,3083,3084,4095,4150,4872,4924,4934,5026,5300,5412,5465,5467,5694,5745,6593,6769,6774,6872,6893,6964,7393,7395,7398,7525,7701,7732,8103,8455,8884,9351,9466,9487,9497,9536,9539,9561,9587,9605,9609,10064,10412,11279,11488,11548,11711,11969,11981,12110,12265,12309,12424,12695,12744,12752,12755,12811,12925,12991,13016,13029,13131,13427,13500,13518,13683,13735,13921,14045,14460,14486,14803,15025,15643,16243,16534,16594,16726,16778,17049,17223,17243,17322,17389,17391,17398,17409,17449,17465,17469,17471,17477,17480,17491,17518,17519,17620,17669,17997,18155,18298,18355,18436,18613,19056,19071,19135,19136,19170,19172,19221,19240,19305,19316,19471,19588,19672,19706,19764,19888,19899,19900,20026,20056,20137,20139,20449,20509,20616,20631,20934,21312,21558,21966,22014,22390,22872,23097,23105,23112]]],["nothing",[25,25,[[1,1,1,0,1,[[71,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[8,1,1,2,3,[[262,1,1,2,3]]],[10,1,1,3,4,[[298,1,1,3,4]]],[13,2,2,4,6,[[371,1,1,4,5],[380,1,1,5,6]]],[15,2,2,6,8,[[414,1,1,6,7],[420,1,1,7,8]]],[16,1,1,8,9,[[430,1,1,8,9]]],[18,3,3,9,12,[[496,1,1,9,10],[516,1,1,10,11],[596,1,1,11,12]]],[19,4,4,12,16,[[635,1,1,12,13],[640,1,1,13,14],[647,1,1,14,15],[649,1,1,15,16]]],[20,4,4,16,20,[[660,1,1,16,17],[661,2,2,17,19],[664,1,1,19,20]]],[22,4,4,20,24,[[718,2,2,20,22],[719,2,2,22,24]]],[36,1,1,24,25,[[910,1,1,24,25]]]],[2116,4030,7931,8994,11278,11486,12309,12503,12792,14174,14517,16063,16610,16751,16958,17042,17357,17373,17381,17419,18437,18443,18462,18463,22858]]],["nought",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13051]]],["than",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11612]]],["where",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7432]]],["without",[28,24,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,1,1,1,2,[[70,1,1,1,2]]],[3,1,1,2,3,[[136,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[6,2,2,4,6,[[216,1,1,4,5],[217,1,1,5,6]]],[10,1,1,6,7,[[312,1,1,6,7]]],[12,2,2,7,9,[[359,2,2,7,9]]],[13,1,1,9,10,[[378,1,1,9,10]]],[17,1,1,10,11,[[466,1,1,10,11]]],[18,1,1,11,12,[[582,1,1,11,12]]],[19,5,5,12,17,[[632,1,1,12,13],[633,1,1,13,14],[652,2,2,14,16],[656,1,1,16,17]]],[21,1,1,17,18,[[676,1,1,17,18]]],[23,2,2,18,20,[[746,1,1,18,19],[749,1,1,19,20]]],[25,1,1,20,21,[[839,1,1,20,21]]],[27,6,2,21,23,[[864,5,1,21,22],[868,1,1,22,23]]],[28,1,1,23,24,[[876,1,1,23,24]]]],[1244,2088,4330,5762,6659,6706,9481,10967,10978,11440,13607,15640,16540,16555,17127,17141,17225,17622,18997,19079,21436,22132,22189,22297]]]]},{"k":"H370","v":[["+",[17,17,[[0,2,2,0,2,[[28,1,1,0,1],[41,1,1,1,2]]],[3,1,1,2,3,[[127,1,1,2,3]]],[5,2,2,3,5,[[188,1,1,3,4],[195,1,1,4,5]]],[6,2,2,5,7,[[227,1,1,5,6],[229,1,1,6,7]]],[11,3,3,7,10,[[317,1,1,7,8],[318,1,1,8,9],[332,1,1,9,10]]],[17,3,3,10,13,[[436,1,1,10,11],[463,2,2,11,13]]],[18,1,1,13,14,[[598,1,1,13,14]]],[22,1,1,14,15,[[717,1,1,14,15]]],[31,1,1,15,16,[[889,1,1,15,16]]],[33,1,1,16,17,[[902,1,1,16,17]]]],[799,1259,4037,5873,6045,6989,7041,9672,9701,10112,12876,13516,13524,16082,18415,22539,22719]]]]},{"k":"H371","v":[["not",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7780]]]]},{"k":"H372","v":[["Jeezer",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4519]]]]},{"k":"H373","v":[["Jeezerites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4519]]]]},{"k":"H374","v":[["*",[40,29,[[1,1,1,0,1,[[65,1,1,0,1]]],[2,3,3,1,4,[[94,1,1,1,2],[95,1,1,2,3],[108,1,1,3,4]]],[3,2,2,4,6,[[121,1,1,4,5],[144,1,1,5,6]]],[4,3,2,6,8,[[177,3,2,6,8]]],[6,1,1,8,9,[[216,1,1,8,9]]],[7,1,1,9,10,[[233,1,1,9,10]]],[8,2,2,10,12,[[236,1,1,10,11],[252,1,1,11,12]]],[19,2,1,12,13,[[647,2,1,12,13]]],[22,1,1,13,14,[[683,1,1,13,14]]],[25,17,8,14,22,[[846,8,4,14,18],[847,9,4,18,22]]],[29,1,1,22,23,[[886,1,1,22,23]]],[32,1,1,23,24,[[898,1,1,23,24]]],[37,5,5,24,29,[[915,5,5,24,29]]]],[1983,2841,2869,3317,3807,4582,5561,5562,6673,7166,7236,7635,16964,17749,21640,21641,21643,21654,21660,21662,21666,21669,22486,22658,22942,22943,22944,22945,22946]]],["+",[5,3,[[4,2,1,0,1,[[177,2,1,0,1]]],[19,2,1,1,2,[[647,2,1,1,2]]],[29,1,1,2,3,[[886,1,1,2,3]]]],[5561,16964,22486]]],["ephah",[33,24,[[1,1,1,0,1,[[65,1,1,0,1]]],[2,3,3,1,4,[[94,1,1,1,2],[95,1,1,2,3],[108,1,1,3,4]]],[3,2,2,4,6,[[121,1,1,4,5],[144,1,1,5,6]]],[6,1,1,6,7,[[216,1,1,6,7]]],[7,1,1,7,8,[[233,1,1,7,8]]],[8,2,2,8,10,[[236,1,1,8,9],[252,1,1,9,10]]],[22,1,1,10,11,[[683,1,1,10,11]]],[25,17,8,11,19,[[846,8,4,11,15],[847,9,4,15,19]]],[37,5,5,19,24,[[915,5,5,19,24]]]],[1983,2841,2869,3317,3807,4582,6673,7166,7236,7635,17749,21640,21641,21643,21654,21660,21662,21666,21669,22942,22943,22944,22945,22946]]],["measure",[2,2,[[4,1,1,0,1,[[177,1,1,0,1]]],[32,1,1,1,2,[[898,1,1,1,2]]]],[5562,22658]]]]},{"k":"H375","v":[["*",[11,10,[[0,1,1,0,1,[[36,1,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]],[7,2,1,2,3,[[233,2,1,2,3]]],[8,1,1,3,4,[[254,1,1,3,4]]],[9,1,1,4,5,[[275,1,1,4,5]]],[17,2,2,5,7,[[439,1,1,5,6],[473,1,1,6,7]]],[22,1,1,7,8,[[727,1,1,7,8]]],[23,2,2,8,10,[[747,1,1,8,9],[780,1,1,9,10]]]],[1099,6737,7168,7728,8231,12937,13797,18657,19004,19861]]],["Where",[4,4,[[7,1,1,0,1,[[233,1,1,0,1]]],[8,1,1,1,2,[[254,1,1,1,2]]],[9,1,1,2,3,[[275,1,1,2,3]]],[17,1,1,3,4,[[473,1,1,3,4]]]],[7168,7728,8231,13797]]],["manner",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6737]]],["where",[6,6,[[0,1,1,0,1,[[36,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[17,1,1,2,3,[[439,1,1,2,3]]],[22,1,1,3,4,[[727,1,1,3,4]]],[23,2,2,4,6,[[747,1,1,4,5],[780,1,1,5,6]]]],[1099,7168,12937,18657,19004,19861]]]]},{"k":"H376","v":[["*",[2162,1842,[[0,155,135,0,135,[[1,2,2,0,2],[2,2,2,2,4],[3,2,2,4,6],[5,2,2,6,8],[6,2,1,8,9],[8,2,2,9,11],[9,1,1,11,12],[10,2,2,12,14],[11,1,1,14,15],[12,3,3,15,18],[13,1,1,18,19],[14,1,1,19,20],[15,1,1,20,21],[16,2,2,21,23],[17,3,3,23,26],[18,9,8,26,34],[19,2,2,34,36],[22,1,1,36,37],[23,15,13,37,50],[24,2,1,50,51],[25,5,4,51,55],[26,2,1,55,56],[28,4,4,56,60],[29,4,4,60,64],[30,2,2,64,66],[31,3,3,66,69],[32,1,1,69,70],[33,6,6,70,76],[36,5,4,76,80],[37,5,5,80,85],[38,6,4,85,89],[39,2,1,89,90],[40,5,5,90,95],[41,8,8,95,103],[42,20,15,103,118],[43,10,8,118,126],[44,3,2,126,128],[45,3,2,128,130],[46,3,3,130,133],[48,2,2,133,135]]],[1,95,81,135,216,[[50,1,1,135,136],[51,8,7,136,143],[53,2,2,143,145],[54,1,1,145,146],[56,1,1,146,147],[59,3,2,147,149],[60,3,3,149,152],[61,4,4,152,156],[64,1,1,156,157],[65,9,7,157,164],[66,1,1,164,165],[67,5,4,165,169],[68,1,1,169,170],[70,14,12,170,182],[71,8,7,182,189],[74,2,2,189,191],[77,1,1,191,192],[79,3,3,192,195],[81,8,5,195,200],[82,4,4,200,204],[83,3,2,204,206],[84,5,4,206,210],[85,5,4,210,214],[86,1,1,214,215],[88,1,1,215,216]]],[2,94,76,216,292,[[96,2,2,216,218],[99,1,1,218,219],[102,4,4,219,223],[103,1,1,223,224],[104,7,6,224,230],[105,1,1,230,231],[106,11,6,231,237],[107,3,2,237,239],[108,4,3,239,242],[109,19,16,242,258],[110,8,7,258,265],[111,10,7,265,272],[113,6,4,272,276],[114,9,8,276,284],[115,1,1,284,285],[116,7,7,285,292]]],[3,128,105,292,397,[[117,9,5,292,297],[118,3,3,297,300],[120,4,2,300,302],[121,17,11,302,313],[122,1,1,313,314],[123,1,1,314,315],[125,6,4,315,319],[127,5,5,319,324],[128,1,1,324,325],[129,6,5,325,330],[130,6,6,330,336],[131,2,2,336,338],[132,13,10,338,348],[133,3,3,348,351],[135,3,3,351,354],[137,1,1,354,355],[138,3,3,355,358],[139,1,1,358,359],[141,5,4,359,363],[142,4,4,363,367],[143,3,3,367,370],[146,12,10,370,380],[147,10,8,380,388],[148,3,3,388,391],[150,2,2,391,393],[151,1,1,393,394],[152,3,3,394,397]]],[4,90,77,397,474,[[153,10,9,397,406],[154,2,2,406,408],[155,2,2,408,410],[156,1,1,410,411],[159,1,1,411,412],[160,1,1,412,413],[163,1,1,413,414],[164,1,1,414,415],[165,1,1,415,416],[168,1,1,416,417],[169,6,4,417,421],[170,1,1,421,422],[171,4,4,422,426],[172,7,4,426,430],[173,4,4,430,434],[174,16,12,434,446],[175,1,1,446,447],[176,9,8,447,455],[177,7,5,455,460],[179,2,2,460,462],[180,3,3,462,465],[181,3,3,465,468],[183,1,1,468,469],[184,2,2,469,471],[185,2,2,471,473],[186,1,1,473,474]]],[5,71,58,474,532,[[187,2,2,474,476],[188,13,11,476,487],[189,3,1,487,488],[190,7,3,488,491],[191,3,3,491,494],[192,6,6,494,500],[193,7,4,500,504],[194,8,7,504,511],[195,3,3,511,514],[196,8,7,514,521],[200,1,1,521,522],[203,1,1,522,523],[204,3,3,523,526],[207,1,1,526,527],[208,2,2,527,529],[209,2,2,529,531],[210,1,1,531,532]]],[6,194,152,532,684,[[211,4,4,532,536],[212,2,2,536,538],[213,7,5,538,543],[214,6,5,543,548],[216,6,5,548,553],[217,13,11,553,564],[218,18,15,564,579],[219,15,12,579,591],[220,3,2,591,593],[221,2,2,593,595],[222,5,4,595,599],[223,9,6,599,605],[224,3,3,605,608],[225,4,4,608,612],[226,4,3,612,615],[227,5,5,615,620],[228,11,9,620,629],[229,23,17,629,646],[230,43,29,646,675],[231,11,9,675,684]]],[7,21,19,684,703,[[232,9,8,684,692],[233,5,4,692,696],[234,5,5,696,701],[235,2,2,701,703]]],[8,209,168,703,871,[[236,7,7,703,710],[237,13,10,710,720],[239,11,10,720,730],[240,3,3,730,733],[241,5,4,733,737],[242,2,2,737,739],[243,2,1,739,740],[244,12,10,740,750],[245,7,7,750,757],[246,10,9,757,766],[247,1,1,766,767],[248,5,5,767,772],[249,15,11,772,783],[250,2,2,783,785],[251,4,3,785,788],[252,21,15,788,803],[253,4,3,803,806],[255,3,2,806,808],[256,4,4,808,812],[257,7,4,812,816],[258,11,8,816,824],[259,8,7,824,831],[260,14,9,831,840],[261,3,3,840,843],[262,6,5,843,848],[263,3,3,848,851],[264,4,3,851,854],[265,16,12,854,866],[266,6,5,866,871]]],[9,137,110,871,981,[[267,3,3,871,874],[268,13,10,874,884],[269,5,4,884,888],[270,3,2,888,890],[271,2,2,890,892],[272,3,1,892,893],[273,1,1,893,894],[274,2,2,894,896],[275,1,1,896,897],[276,3,2,897,899],[277,4,4,899,903],[278,7,4,903,907],[279,4,3,907,910],[280,4,4,910,914],[281,10,10,914,924],[282,8,7,924,931],[283,9,8,931,939],[284,10,9,939,948],[285,18,11,948,959],[286,11,9,959,968],[287,5,5,968,973],[288,1,1,973,974],[289,6,5,974,979],[290,4,2,979,981]]],[10,85,75,981,1056,[[291,4,4,981,985],[292,5,5,985,990],[293,1,1,990,991],[294,3,3,991,994],[295,2,2,994,996],[297,3,3,996,999],[298,5,5,999,1004],[299,3,3,1004,1007],[300,3,3,1007,1010],[301,4,4,1010,1014],[302,2,2,1014,1016],[303,16,14,1016,1030],[307,2,2,1030,1032],[308,6,5,1032,1037],[310,15,10,1037,1047],[311,4,3,1047,1050],[312,7,6,1050,1056]]],[11,126,102,1056,1158,[[313,8,8,1056,1064],[314,4,4,1064,1068],[315,3,3,1068,1071],[316,21,14,1071,1085],[317,9,8,1085,1093],[318,7,7,1093,1100],[319,10,9,1100,1109],[320,5,5,1109,1114],[321,3,3,1114,1117],[322,12,8,1117,1125],[323,4,3,1125,1128],[324,4,4,1128,1132],[325,4,2,1132,1134],[326,2,2,1134,1136],[327,2,2,1136,1138],[329,3,1,1138,1139],[330,6,4,1139,1143],[332,1,1,1143,1144],[334,1,1,1144,1145],[335,8,7,1145,1152],[336,1,1,1152,1153],[337,8,5,1153,1158]]],[12,41,35,1158,1193,[[341,3,3,1158,1161],[342,3,2,1161,1163],[344,2,2,1163,1165],[345,1,1,1165,1166],[346,1,1,1166,1167],[347,3,3,1167,1170],[348,4,3,1170,1173],[349,3,3,1173,1176],[353,5,3,1176,1179],[355,3,3,1179,1182],[356,3,2,1182,1184],[357,1,1,1184,1185],[358,3,2,1185,1187],[359,1,1,1187,1188],[360,1,1,1188,1189],[362,1,1,1189,1190],[363,1,1,1190,1191],[364,1,1,1191,1192],[365,1,1,1192,1193]]],[13,56,51,1193,1244,[[368,6,5,1193,1198],[371,1,1,1198,1199],[372,5,5,1199,1204],[373,1,1,1204,1205],[374,2,2,1205,1207],[375,3,3,1207,1210],[376,1,1,1210,1211],[377,2,2,1211,1213],[379,6,4,1213,1217],[381,1,1,1217,1218],[383,1,1,1218,1219],[384,5,5,1219,1224],[386,2,2,1224,1226],[389,4,3,1226,1229],[390,1,1,1229,1230],[391,5,4,1230,1234],[394,2,2,1234,1236],[396,2,2,1236,1238],[397,3,3,1238,1241],[400,3,3,1241,1244]]],[14,14,14,1244,1258,[[403,1,1,1244,1245],[404,6,6,1245,1251],[405,2,2,1251,1253],[410,1,1,1253,1254],[412,4,4,1254,1258]]],[15,44,42,1258,1300,[[413,2,2,1258,1260],[414,1,1,1260,1261],[415,4,4,1261,1265],[416,6,5,1265,1270],[417,3,3,1270,1273],[418,1,1,1273,1274],[419,13,12,1274,1286],[420,4,4,1286,1290],[423,4,4,1290,1294],[424,3,3,1294,1297],[425,3,3,1297,1300]]],[16,19,16,1300,1316,[[426,3,2,1300,1302],[427,1,1,1302,1303],[429,1,1,1303,1304],[431,6,4,1304,1308],[432,1,1,1308,1309],[434,7,7,1309,1316]]],[17,42,40,1316,1356,[[436,5,4,1316,1320],[437,4,4,1320,1324],[439,1,1,1324,1325],[444,1,1,1325,1326],[446,2,2,1326,1328],[447,2,2,1328,1330],[449,1,1,1330,1331],[450,1,1,1331,1332],[457,1,1,1332,1333],[466,1,1,1333,1334],[467,4,4,1334,1338],[468,3,3,1338,1341],[469,7,7,1341,1348],[470,1,1,1348,1349],[471,1,1,1349,1350],[472,3,3,1350,1353],[473,1,1,1353,1354],[476,1,1,1354,1355],[477,2,1,1355,1356]]],[18,43,41,1356,1397,[[478,1,1,1356,1357],[481,1,1,1357,1358],[482,1,1,1358,1359],[489,1,1,1359,1360],[495,1,1,1360,1361],[499,1,1,1361,1362],[502,1,1,1362,1363],[503,1,1,1363,1364],[508,1,1,1364,1365],[511,1,1,1365,1366],[514,2,2,1366,1368],[515,1,1,1368,1369],[516,2,2,1369,1371],[518,1,1,1371,1372],[520,1,1,1372,1373],[526,2,2,1373,1375],[532,1,1,1375,1376],[536,1,1,1376,1377],[539,3,3,1377,1380],[541,1,1,1380,1381],[553,1,1,1381,1382],[555,1,1,1382,1383],[557,1,1,1383,1384],[564,2,1,1384,1385],[569,1,1,1385,1386],[582,1,1,1386,1387],[586,1,1,1387,1388],[589,2,2,1388,1390],[596,1,1,1390,1391],[616,1,1,1391,1392],[617,4,3,1392,1395],[618,1,1,1395,1396],[624,1,1,1396,1397]]],[19,91,88,1397,1485,[[629,1,1,1397,1398],[630,1,1,1398,1399],[632,1,1,1399,1400],[633,5,5,1400,1405],[634,1,1,1405,1406],[635,1,1,1406,1407],[637,1,1,1407,1408],[638,2,2,1408,1410],[639,4,4,1410,1414],[640,2,2,1414,1416],[641,4,4,1416,1420],[642,3,3,1420,1423],[643,7,7,1423,1430],[644,2,2,1430,1432],[645,5,5,1432,1437],[646,3,3,1437,1440],[647,6,4,1440,1444],[648,5,5,1444,1449],[649,3,3,1449,1452],[651,5,5,1452,1457],[652,4,4,1457,1461],[653,3,3,1461,1464],[654,3,3,1464,1467],[655,5,5,1467,1472],[656,13,12,1472,1484],[657,1,1,1484,1485]]],[20,10,8,1485,1493,[[659,1,1,1485,1486],[662,1,1,1486,1487],[664,3,2,1487,1489],[665,1,1,1489,1490],[667,3,2,1490,1492],[670,1,1,1492,1493]]],[21,3,3,1493,1496,[[673,1,1,1493,1494],[678,2,2,1494,1496]]],[22,63,54,1496,1550,[[680,3,3,1496,1499],[681,5,3,1499,1502],[682,1,1,1502,1503],[683,4,4,1503,1507],[684,1,1,1507,1508],[685,2,2,1508,1510],[687,2,2,1510,1512],[691,3,2,1512,1514],[692,2,2,1514,1516],[697,2,1,1516,1517],[699,1,1,1517,1518],[706,1,1,1518,1519],[707,1,1,1519,1520],[709,2,2,1520,1522],[710,1,1,1522,1523],[714,6,4,1523,1527],[718,2,2,1527,1529],[719,5,4,1529,1533],[720,1,1,1533,1534],[722,1,1,1534,1535],[723,1,1,1535,1536],[724,1,1,1536,1537],[725,1,1,1537,1538],[728,1,1,1538,1539],[730,1,1,1539,1540],[731,3,2,1540,1542],[733,1,1,1542,1543],[734,1,1,1543,1544],[735,2,1,1544,1545],[737,1,1,1545,1546],[741,1,1,1546,1547],[744,3,3,1547,1550]]],[23,161,140,1550,1690,[[745,1,1,1550,1551],[746,1,1,1551,1552],[747,2,1,1552,1553],[748,3,3,1553,1556],[749,3,3,1556,1559],[750,3,3,1559,1562],[751,1,1,1562,1563],[752,1,1,1563,1564],[753,4,4,1564,1568],[754,1,1,1568,1569],[755,6,6,1569,1575],[756,3,2,1575,1577],[757,2,2,1577,1579],[758,1,1,1579,1580],[759,2,1,1580,1581],[760,1,1,1581,1582],[761,2,2,1582,1584],[762,4,3,1584,1587],[763,2,2,1587,1589],[764,2,2,1589,1591],[766,5,4,1591,1595],[767,9,8,1595,1603],[769,2,2,1603,1605],[770,7,6,1605,1611],[773,3,3,1611,1614],[775,3,2,1614,1616],[776,2,2,1616,1618],[777,2,2,1618,1620],[778,12,7,1620,1627],[779,4,4,1627,1631],[780,5,5,1631,1636],[781,2,1,1636,1637],[782,10,8,1637,1645],[783,2,2,1645,1647],[784,5,4,1647,1651],[785,12,11,1651,1662],[786,1,1,1662,1663],[787,2,2,1663,1665],[788,5,5,1665,1670],[790,1,1,1670,1671],[792,3,3,1671,1674],[793,4,4,1674,1678],[794,5,4,1678,1682],[795,6,6,1682,1688],[796,4,2,1688,1690]]],[24,1,1,1690,1691,[[799,1,1,1690,1691]]],[25,89,77,1691,1768,[[802,6,4,1691,1695],[804,1,1,1695,1696],[805,1,1,1696,1697],[808,2,2,1697,1699],[809,4,3,1699,1702],[810,9,6,1702,1708],[811,4,4,1708,1712],[812,3,3,1712,1715],[813,1,1,1715,1716],[815,10,8,1716,1724],[817,3,2,1724,1726],[819,6,5,1726,1731],[821,4,4,1731,1735],[822,1,1,1735,1736],[823,6,4,1736,1740],[824,4,4,1740,1744],[825,3,3,1744,1747],[828,2,2,1747,1749],[833,1,1,1749,1750],[834,4,4,1750,1754],[839,1,1,1754,1755],[840,2,2,1755,1757],[841,3,3,1757,1760],[844,1,1,1760,1761],[845,2,2,1761,1763],[846,1,1,1763,1764],[847,2,2,1764,1766],[848,2,2,1766,1768]]],[26,8,8,1768,1776,[[858,2,2,1768,1770],[859,4,4,1770,1774],[861,2,2,1774,1776]]],[27,10,9,1776,1785,[[863,4,4,1776,1780],[864,1,1,1780,1781],[865,2,1,1781,1782],[867,1,1,1782,1783],[870,1,1,1783,1784],[872,1,1,1784,1785]]],[28,4,3,1785,1788,[[877,3,2,1785,1787],[878,1,1,1787,1788]]],[29,3,3,1788,1791,[[880,1,1,1788,1789],[883,1,1,1789,1790],[884,1,1,1790,1791]]],[30,3,2,1791,1793,[[888,3,2,1791,1793]]],[31,9,8,1793,1801,[[889,7,6,1793,1799],[891,2,2,1799,1801]]],[32,8,7,1801,1808,[[894,2,2,1801,1803],[896,2,2,1803,1805],[897,1,1,1805,1806],[899,3,2,1806,1808]]],[33,1,1,1808,1809,[[901,1,1,1808,1809]]],[35,4,4,1809,1813,[[906,1,1,1809,1810],[907,1,1,1810,1811],[908,2,2,1811,1813]]],[36,3,3,1813,1816,[[909,1,1,1813,1814],[910,2,2,1814,1816]]],[37,23,22,1816,1838,[[911,3,3,1816,1819],[912,1,1,1819,1820],[913,2,2,1820,1822],[914,1,1,1822,1823],[916,1,1,1823,1824],[917,3,3,1824,1827],[918,6,5,1827,1832],[920,1,1,1832,1833],[921,1,1,1833,1834],[923,3,3,1834,1837],[924,1,1,1837,1838]]],[38,4,4,1838,1842,[[926,2,2,1838,1840],[927,2,2,1840,1842]]]],[53,54,61,71,80,102,141,146,161,210,225,239,269,273,318,329,331,334,360,370,384,420,424,426,440,446,462,465,466,467,468,469,473,488,502,503,577,604,607,612,613,617,620,621,623,645,649,650,652,656,685,699,703,705,723,738,814,817,827,829,845,848,850,873,922,923,934,952,956,961,987,994,1000,1001,1002,1005,1098,1100,1102,1111,1120,1121,1140,1141,1144,1150,1151,1160,1163,1177,1206,1207,1228,1233,1239,1263,1265,1273,1277,1280,1282,1285,1287,1293,1295,1296,1297,1301,1303,1304,1305,1306,1307,1308,1309,1311,1314,1323,1325,1327,1328,1335,1337,1339,1341,1350,1359,1380,1418,1420,1422,1426,1440,1479,1501,1533,1555,1565,1566,1567,1573,1574,1575,1611,1620,1641,1697,1784,1800,1808,1809,1813,1819,1820,1838,1860,1923,1962,1963,1965,1966,1967,1968,1976,1992,2006,2015,2020,2024,2039,2084,2089,2091,2093,2095,2097,2099,2103,2105,2106,2110,2112,2114,2118,2120,2123,2127,2129,2144,2197,2215,2314,2394,2415,2420,2439,2461,2465,2466,2467,2477,2481,2483,2484,2499,2520,2552,2553,2554,2560,2567,2568,2570,2572,2613,2678,2887,2889,2978,3081,3090,3092,3096,3122,3170,3173,3184,3186,3192,3201,3222,3238,3239,3243,3244,3245,3248,3257,3278,3284,3292,3301,3320,3321,3322,3323,3327,3328,3329,3330,3331,3332,3333,3335,3336,3338,3339,3345,3348,3352,3354,3362,3363,3364,3366,3372,3373,3374,3381,3383,3387,3390,3456,3461,3463,3465,3479,3482,3483,3486,3495,3496,3498,3515,3561,3572,3584,3586,3590,3596,3598,3601,3608,3609,3621,3648,3656,3660,3675,3692,3762,3792,3798,3800,3802,3804,3805,3807,3811,3812,3819,3821,3823,3825,3855,3971,3972,3975,3978,4034,4040,4048,4049,4050,4062,4077,4078,4091,4106,4107,4112,4123,4130,4144,4145,4146,4185,4188,4196,4201,4208,4211,4212,4216,4220,4224,4229,4234,4246,4249,4253,4298,4307,4309,4349,4384,4395,4410,4435,4476,4477,4479,4485,4499,4543,4553,4554,4562,4570,4572,4650,4654,4655,4656,4658,4659,4660,4661,4662,4664,4667,4681,4685,4692,4706,4713,4714,4717,4729,4732,4736,4833,4835,4853,4886,4887,4888,4905,4907,4908,4909,4914,4915,4923,4927,4933,4952,4954,4986,4995,5007,5135,5142,5233,5248,5285,5359,5366,5369,5376,5379,5403,5417,5421,5422,5423,5432,5433,5434,5435,5462,5465,5468,5469,5483,5486,5488,5491,5492,5493,5494,5495,5496,5498,5499,5500,5510,5526,5527,5528,5530,5532,5536,5537,5541,5548,5552,5554,5556,5558,5599,5600,5641,5665,5667,5689,5697,5699,5740,5783,5784,5811,5818,5845,5856,5869,5870,5871,5872,5873,5874,5876,5878,5880,5883,5886,5892,5905,5912,5914,5915,5938,5940,5947,5952,5954,5969,5970,5971,5975,5978,5979,5980,5981,6005,6014,6016,6019,6022,6023,6027,6043,6044,6051,6066,6070,6072,6078,6082,6085,6088,6193,6276,6297,6301,6302,6425,6440,6446,6469,6470,6504,6513,6533,6534,6535,6551,6566,6583,6585,6596,6597,6599,6605,6609,6613,6619,6621,6670,6681,6682,6683,6684,6700,6701,6702,6707,6708,6710,6713,6715,6716,6717,6718,6720,6723,6724,6727,6728,6729,6733,6734,6735,6736,6737,6740,6741,6743,6744,6756,6758,6759,6763,6767,6772,6782,6790,6803,6805,6809,6811,6812,6829,6832,6868,6870,6871,6873,6874,6886,6890,6892,6893,6894,6895,6924,6927,6928,6939,6940,6944,6945,6954,6968,6976,6981,6985,6986,6988,6991,6995,7000,7004,7007,7009,7010,7012,7015,7018,7025,7027,7030,7031,7033,7034,7039,7040,7041,7042,7044,7046,7047,7048,7049,7050,7052,7055,7056,7058,7062,7064,7065,7066,7067,7069,7070,7071,7074,7075,7076,7079,7085,7087,7088,7089,7090,7092,7093,7095,7096,7098,7099,7100,7101,7102,7103,7110,7111,7112,7114,7123,7124,7126,7127,7128,7129,7130,7132,7136,7138,7139,7140,7150,7160,7168,7169,7175,7180,7186,7188,7190,7192,7197,7213,7215,7220,7223,7233,7234,7235,7249,7253,7255,7256,7257,7259,7265,7266,7267,7273,7299,7306,7307,7309,7310,7311,7313,7315,7316,7318,7326,7328,7331,7341,7346,7350,7351,7353,7363,7391,7392,7393,7397,7398,7399,7400,7401,7407,7408,7413,7420,7421,7424,7429,7430,7440,7443,7446,7450,7452,7453,7454,7455,7457,7458,7460,7464,7487,7491,7499,7500,7505,7510,7516,7520,7522,7528,7530,7532,7536,7542,7544,7560,7563,7564,7611,7612,7613,7620,7622,7626,7628,7630,7637,7641,7642,7643,7644,7645,7646,7651,7659,7670,7681,7699,7703,7745,7771,7773,7774,7779,7786,7789,7793,7805,7806,7813,7815,7818,7822,7823,7834,7835,7836,7841,7842,7843,7845,7846,7858,7861,7863,7864,7871,7872,7874,7876,7880,7881,7886,7907,7920,7928,7932,7933,7938,7939,7941,7943,7950,7956,7969,7971,7978,7979,7980,7981,7984,7987,7988,7989,7991,7995,7999,8000,8009,8010,8012,8015,8016,8021,8024,8033,8035,8052,8053,8054,8065,8066,8076,8078,8079,8080,8081,8096,8097,8101,8120,8122,8131,8138,8153,8176,8194,8213,8214,8230,8245,8246,8275,8276,8282,8285,8287,8290,8291,8293,8320,8326,8346,8361,8363,8372,8381,8390,8391,8393,8394,8395,8400,8402,8407,8411,8419,8431,8433,8434,8439,8441,8444,8449,8450,8452,8457,8461,8463,8467,8473,8474,8488,8489,8490,8495,8498,8502,8504,8505,8506,8518,8519,8525,8527,8528,8533,8539,8543,8552,8553,8554,8555,8556,8558,8561,8565,8566,8567,8575,8576,8584,8585,8586,8597,8600,8651,8660,8662,8670,8673,8674,8701,8707,8722,8726,8759,8766,8772,8774,8779,8796,8802,8829,8869,8871,8872,8884,8891,8948,8964,8970,8987,9010,9016,9023,9024,9056,9073,9078,9087,9094,9104,9125,9126,9132,9136,9173,9175,9185,9188,9189,9190,9191,9192,9195,9196,9198,9205,9209,9210,9213,9215,9335,9341,9345,9354,9363,9381,9385,9425,9428,9432,9436,9438,9441,9443,9445,9447,9450,9461,9462,9464,9486,9488,9490,9497,9514,9516,9539,9540,9541,9542,9543,9544,9545,9546,9558,9567,9568,9570,9599,9601,9602,9604,9610,9612,9617,9619,9624,9625,9628,9629,9630,9632,9643,9645,9646,9648,9654,9655,9661,9662,9667,9671,9673,9676,9680,9683,9684,9689,9693,9706,9709,9710,9712,9713,9716,9717,9724,9725,9726,9729,9731,9734,9735,9738,9767,9769,9777,9798,9799,9800,9807,9812,9814,9817,9818,9837,9838,9840,9854,9855,9859,9865,9890,9892,9902,9908,9945,9950,10013,10045,10051,10055,10057,10112,10160,10167,10173,10175,10181,10182,10183,10200,10218,10226,10241,10245,10246,10247,10397,10407,10427,10446,10452,10556,10575,10615,10624,10660,10666,10671,10692,10695,10696,10728,10750,10758,10823,10841,10863,10894,10895,10900,10912,10925,10932,10939,10948,10973,10997,11047,11085,11141,11146,11213,11218,11224,11225,11228,11271,11287,11298,11304,11311,11312,11342,11355,11360,11371,11378,11388,11411,11416,11418,11456,11460,11468,11470,11503,11536,11547,11549,11551,11558,11575,11610,11614,11663,11664,11666,11701,11708,11711,11713,11726,11776,11779,11838,11843,11855,11856,11873,11945,11956,11963,12020,12028,12029,12049,12050,12054,12055,12098,12099,12219,12253,12261,12268,12269,12298,12307,12319,12329,12334,12349,12355,12374,12377,12378,12381,12382,12389,12395,12399,12412,12422,12423,12426,12427,12446,12447,12448,12449,12450,12451,12452,12453,12494,12495,12496,12509,12590,12591,12594,12608,12648,12660,12668,12681,12696,12701,12710,12724,12729,12773,12799,12800,12802,12804,12813,12836,12838,12840,12846,12849,12853,12856,12870,12872,12873,12877,12894,12895,12902,12903,12943,13083,13110,13120,13138,13142,13193,13219,13397,13623,13629,13633,13641,13649,13665,13666,13677,13691,13693,13694,13704,13706,13717,13719,13728,13760,13776,13789,13793,13819,13905,13933,13940,13967,13979,14068,14166,14210,14263,14282,14351,14400,14457,14487,14504,14518,14523,14551,14567,14650,14664,14755,14792,14830,14836,14839,14856,15086,15138,15215,15306,15417,15623,15771,15804,15808,15922,16258,16264,16267,16274,16280,16361,16445,16486,16538,16551,16552,16566,16567,16568,16594,16606,16679,16700,16705,16721,16727,16733,16744,16749,16755,16779,16784,16786,16789,16825,16828,16830,16842,16847,16854,16865,16867,16868,16869,16885,16900,16905,16913,16915,16921,16925,16931,16946,16947,16957,16959,16960,16971,16986,16992,17001,17012,17013,17022,17039,17044,17080,17084,17108,17109,17113,17114,17127,17131,17141,17153,17160,17162,17177,17186,17190,17201,17207,17216,17218,17220,17225,17227,17228,17230,17232,17233,17234,17237,17244,17246,17250,17251,17253,17323,17385,17419,17420,17434,17489,17490,17526,17579,17647,17651,17694,17696,17702,17709,17712,17713,17734,17742,17746,17754,17761,17774,17795,17803,17848,17849,17914,17920,17944,17946,18006,18044,18178,18206,18257,18258,18261,18336,18342,18346,18348,18433,18446,18457,18462,18463,18479,18493,18546,18575,18597,18614,18664,18710,18714,18717,18747,18764,18766,18816,18869,18925,18935,18946,18961,18971,19003,19030,19031,19056,19059,19066,19084,19092,19100,19112,19124,19159,19179,19180,19185,19187,19224,19228,19229,19234,19235,19247,19249,19260,19264,19277,19280,19302,19325,19348,19367,19382,19395,19396,19405,19416,19417,19437,19438,19461,19462,19482,19484,19493,19498,19508,19511,19514,19518,19519,19520,19539,19560,19575,19583,19588,19589,19592,19594,19641,19661,19667,19721,19725,19750,19763,19792,19793,19810,19811,19815,19816,19817,19818,19819,19827,19836,19838,19842,19845,19849,19858,19861,19873,19884,19899,19902,19904,19905,19906,19911,19917,19919,19927,19940,19948,19949,19950,19956,19958,19959,19960,19961,19962,19964,19965,19966,19969,19972,19973,19992,19999,20006,20017,20025,20029,20036,20037,20061,20094,20111,20116,20132,20145,20153,20160,20182,20196,20206,20208,20218,20221,20234,20244,20255,20257,20283,20301,20387,20473,20475,20476,20487,20528,20546,20590,20593,20615,20616,20620,20623,20624,20625,20626,20628,20633,20635,20636,20639,20655,20656,20657,20670,20696,20732,20734,20735,20738,20739,20745,20747,20749,20794,20807,20854,20856,20857,20865,20879,20896,20902,20903,20934,20975,20982,20985,20987,21006,21021,21047,21049,21052,21073,21078,21079,21131,21148,21258,21282,21300,21306,21310,21446,21462,21468,21480,21481,21482,21578,21601,21624,21650,21671,21673,21682,21693,21995,22009,22020,22022,22026,22034,22087,22088,22107,22112,22115,22121,22131,22137,22176,22215,22249,22318,22319,22352,22386,22442,22459,22517,22519,22536,22538,22541,22544,22545,22547,22563,22566,22597,22606,22624,22625,22640,22666,22670,22702,22799,22816,22824,22826,22849,22867,22877,22886,22888,22899,22900,22920,22922,22923,22959,22964,22971,22972,22980,22986,22992,22993,22999,23017,23034,23062,23063,23064,23081,23113,23115,23136,23137]]],["+",[200,168,[[0,11,10,0,10,[[1,1,1,0,1],[8,1,1,1,2],[22,1,1,2,3],[36,1,1,3,4],[38,4,3,4,7],[42,1,1,7,8],[43,1,1,8,9],[48,1,1,9,10]]],[1,15,11,10,21,[[51,3,2,10,12],[53,1,1,12,13],[59,1,1,13,14],[60,1,1,14,15],[61,1,1,15,16],[71,1,1,16,17],[79,2,2,17,19],[81,3,1,19,20],[85,2,1,20,21]]],[2,33,22,21,43,[[104,3,2,21,23],[106,8,4,23,27],[107,2,1,27,28],[108,1,1,28,29],[109,5,3,29,32],[110,2,2,32,34],[111,8,6,34,40],[113,3,2,40,42],[114,1,1,42,43]]],[3,12,8,43,51,[[120,4,2,43,45],[121,3,2,45,47],[125,2,1,47,48],[127,1,1,48,49],[132,1,1,49,50],[141,1,1,50,51]]],[4,5,5,51,56,[[153,1,1,51,52],[169,1,1,52,53],[170,1,1,53,54],[177,1,1,54,55],[184,1,1,55,56]]],[5,9,6,56,62,[[187,1,1,56,57],[189,2,1,57,58],[190,4,2,58,60],[192,1,1,60,61],[194,1,1,61,62]]],[6,7,7,62,69,[[218,1,1,62,63],[222,1,1,63,64],[230,3,3,64,67],[231,2,2,67,69]]],[7,1,1,69,70,[[232,1,1,69,70]]],[8,19,17,70,87,[[247,1,1,70,71],[248,1,1,71,72],[250,1,1,72,73],[252,3,3,73,76],[255,1,1,76,77],[257,1,1,77,78],[258,1,1,78,79],[260,2,1,79,80],[261,1,1,80,81],[264,1,1,81,82],[265,5,4,82,86],[266,1,1,86,87]]],[9,9,9,87,96,[[267,1,1,87,88],[268,1,1,88,89],[272,1,1,89,90],[274,1,1,90,91],[278,1,1,91,92],[280,1,1,92,93],[284,1,1,93,94],[288,1,1,94,95],[289,1,1,95,96]]],[10,4,4,96,100,[[299,1,1,96,97],[300,1,1,97,98],[308,2,2,98,100]]],[11,5,5,100,105,[[313,1,1,100,101],[322,3,3,101,104],[323,1,1,104,105]]],[12,8,7,105,112,[[348,1,1,105,106],[349,1,1,106,107],[353,2,1,107,108],[355,2,2,108,110],[356,1,1,110,111],[362,1,1,111,112]]],[13,5,5,112,117,[[368,2,2,112,114],[375,1,1,114,115],[381,1,1,115,116],[389,1,1,116,117]]],[15,3,3,117,120,[[417,1,1,117,118],[418,1,1,118,119],[420,1,1,119,120]]],[16,3,2,120,122,[[426,2,1,120,121],[432,1,1,121,122]]],[17,2,2,122,124,[[447,1,1,122,123],[466,1,1,123,124]]],[18,9,9,124,133,[[495,1,1,124,125],[518,1,1,125,126],[520,1,1,126,127],[536,1,1,127,128],[539,1,1,128,129],[596,1,1,129,130],[617,3,3,130,133]]],[19,10,10,133,143,[[629,1,1,133,134],[630,1,1,134,135],[633,1,1,135,136],[646,2,2,136,138],[649,1,1,138,139],[651,1,1,139,140],[655,1,1,140,141],[656,1,1,141,142],[657,1,1,142,143]]],[20,2,2,143,145,[[664,1,1,143,144],[665,1,1,144,145]]],[22,4,4,145,149,[[718,1,1,145,146],[719,1,1,146,147],[730,1,1,147,148],[741,1,1,148,149]]],[23,12,9,149,158,[[753,1,1,149,150],[767,1,1,150,151],[775,2,1,151,152],[778,6,4,152,156],[782,1,1,156,157],[795,1,1,157,158]]],[25,7,5,158,163,[[804,1,1,158,159],[815,4,2,159,161],[834,1,1,161,162],[846,1,1,162,163]]],[27,1,1,163,164,[[863,1,1,163,164]]],[32,1,1,164,165,[[899,1,1,164,165]]],[37,3,3,165,168,[[917,1,1,165,166],[918,1,1,166,167],[923,1,1,167,168]]]],[53,225,577,1111,1150,1160,1163,1309,1335,1501,1565,1573,1611,1800,1813,1838,2120,2415,2420,2465,2570,3170,3173,3238,3243,3245,3248,3257,3301,3320,3322,3327,3352,3362,3372,3373,3374,3381,3387,3390,3456,3461,3483,3762,3792,3802,3804,3975,4049,4234,4485,4933,5379,5403,5552,5784,5869,5905,5912,5914,5970,6027,6733,6871,7056,7058,7098,7110,7111,7132,7464,7505,7563,7622,7630,7641,7771,7806,7823,7874,7928,7971,7988,7989,7991,8000,8012,8035,8080,8176,8213,8290,8381,8498,8651,8674,9078,9094,9345,9354,9541,9798,9812,9818,9838,10696,10750,10823,10894,10900,10925,11047,11213,11228,11378,11503,11664,12399,12412,12495,12710,12813,13138,13623,14166,14551,14567,14792,14836,15922,16264,16267,16274,16445,16486,16566,16931,16947,17022,17109,17220,17234,17253,17419,17434,18433,18457,18710,18869,19185,19498,19725,19810,19811,19815,19817,19917,20257,20528,20735,20738,21306,21650,22115,22666,22972,22993,23064]]],["He",[3,3,[[19,3,3,0,3,[[652,1,1,0,1],[655,1,1,1,2],[656,1,1,2,3]]]],[17141,17218,17225]]],["Ishi",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22121]]],["Man",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15138]]],["Men",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13793]]],["This",[1,1,[[18,1,1,0,1,[[564,1,1,0,1]]]],[15306]]],["Whoso",[2,2,[[19,2,2,0,2,[[652,1,1,0,1],[656,1,1,1,2]]]],[17127,17227]]],["age",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7273]]],["another",[6,5,[[8,1,1,0,1,[[237,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]],[25,3,2,2,4,[[802,1,1,2,3],[823,2,1,3,4]]],[27,1,1,4,5,[[865,1,1,4,5]]]],[7265,17712,20475,20987,22137]]],["any",[22,21,[[1,1,1,0,1,[[59,1,1,0,1]]],[2,1,1,1,2,[[110,1,1,1,2]]],[5,1,1,2,3,[[196,1,1,2,3]]],[6,4,3,3,6,[[212,1,1,3,4],[230,2,1,4,5],[231,1,1,5,6]]],[8,1,1,6,7,[[265,1,1,6,7]]],[9,1,1,7,8,[[275,1,1,7,8]]],[10,2,2,8,10,[[293,1,1,8,9],[295,1,1,9,10]]],[11,4,4,10,14,[[316,1,1,10,11],[322,2,2,11,13],[330,1,1,13,14]]],[22,1,1,14,15,[[714,1,1,14,15]]],[23,1,1,15,16,[[767,1,1,15,16]]],[25,4,4,16,20,[[808,1,1,16,17],[819,2,2,17,19],[847,1,1,19,20]]],[37,1,1,20,21,[[923,1,1,20,21]]]],[1800,3354,6085,6566,7062,7103,7980,8230,8829,8884,9632,9807,9817,10057,18348,19508,20590,20856,20865,21671,23062]]],["certain",[14,14,[[0,2,2,0,2,[[37,2,2,0,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[6,2,2,3,5,[[229,2,2,3,5]]],[10,1,1,5,6,[[301,1,1,5,6]]],[13,1,1,6,7,[[394,1,1,6,7]]],[14,1,1,7,8,[[412,1,1,7,8]]],[15,1,1,8,9,[[425,1,1,8,9]]],[16,1,1,9,10,[[427,1,1,9,10]]],[23,2,2,10,12,[[770,1,1,10,11],[785,1,1,11,12]]],[25,2,2,12,14,[[815,1,1,12,13],[821,1,1,13,14]]]],[1120,1121,4196,7025,7046,9125,11776,12268,12696,12729,19589,19962,20732,20896]]],["consent",[1,1,[[8,1,1,0,1,[[246,1,1,0,1]]]],[7452]]],["divers",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11838]]],["each",[6,6,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,1,1,1,2,[[67,1,1,1,2]]],[3,2,2,2,4,[[117,1,1,2,3],[132,1,1,3,4]]],[10,1,1,4,5,[[312,1,1,4,5]]],[11,1,1,5,6,[[321,1,1,5,6]]]],[370,2006,3648,4211,9490,9777]]],["either",[2,2,[[2,1,1,0,1,[[99,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[2978,11551]]],["every",[2,2,[[3,1,1,0,1,[[117,1,1,0,1]]],[10,1,1,1,2,[[297,1,1,1,2]]]],[3608,8964]]],["fellows",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7018]]],["goodman",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16594]]],["he",[2,2,[[2,1,1,0,1,[[113,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]]],[3463,17228]]],["high",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14650]]],["him",[2,2,[[2,1,1,0,1,[[104,1,1,0,1]]],[37,1,1,1,2,[[918,1,1,1,2]]]],[3201,22999]]],["husband",[64,59,[[0,8,8,0,8,[[2,2,2,0,2],[15,1,1,2,3],[28,2,2,3,5],[29,3,3,5,8]]],[2,2,2,8,10,[[108,1,1,8,9],[110,1,1,9,10]]],[3,15,12,10,22,[[121,6,5,10,15],[146,9,7,15,22]]],[4,5,4,22,26,[[174,1,1,22,23],[176,2,1,23,24],[177,1,1,24,25],[180,1,1,25,26]]],[6,6,6,26,32,[[223,3,3,26,29],[224,1,1,29,30],[229,1,1,30,31],[230,1,1,31,32]]],[7,5,4,32,36,[[232,4,3,32,35],[233,1,1,35,36]]],[8,7,7,36,43,[[236,3,3,36,39],[237,1,1,39,40],[239,2,2,40,42],[260,1,1,42,43]]],[9,5,5,43,48,[[269,2,2,43,45],[277,1,1,45,46],[280,2,2,46,48]]],[11,5,5,48,53,[[316,5,5,48,53]]],[23,1,1,53,54,[[750,1,1,53,54]]],[25,3,3,54,57,[[817,2,2,54,56],[845,1,1,56,57]]],[27,2,2,57,59,[[863,2,2,57,59]]]],[61,71,384,827,829,845,848,850,3301,3348,3805,3811,3812,3819,3821,4654,4655,4656,4659,4660,4661,4662,5493,5528,5558,5667,6890,6893,6894,6924,7027,7058,7130,7136,7139,7160,7220,7234,7235,7259,7316,7318,7880,8096,8097,8285,8361,8363,9604,9612,9617,9625,9629,19100,20794,20807,21624,22107,22112]]],["husband's",[2,2,[[3,1,1,0,1,[[146,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]]],[4658,7150]]],["husbands",[4,4,[[7,2,2,0,2,[[232,2,2,0,2]]],[23,1,1,2,3,[[773,1,1,2,3]]],[25,1,1,3,4,[[817,1,1,3,4]]]],[7138,7140,19641,20807]]],["male",[2,1,[[0,2,1,0,1,[[6,2,1,0,1]]]],[161]]],["man",[909,840,[[0,65,58,0,58,[[1,1,1,0,1],[3,2,2,1,3],[5,1,1,3,4],[12,1,1,4,5],[18,3,3,5,8],[19,1,1,8,9],[23,11,10,9,19],[24,2,1,19,20],[25,2,2,20,22],[26,2,1,22,23],[28,1,1,23,24],[29,1,1,24,25],[30,1,1,25,26],[31,1,1,26,27],[33,1,1,27,28],[36,3,2,28,30],[37,1,1,30,31],[38,1,1,31,32],[39,2,1,32,33],[40,5,5,33,38],[41,3,3,38,41],[42,10,9,41,50],[43,4,4,50,54],[44,3,2,54,56],[46,1,1,56,57],[48,1,1,57,58]]],[1,54,50,58,108,[[50,1,1,58,59],[51,4,4,59,63],[56,1,1,63,64],[60,2,2,64,66],[61,2,2,66,68],[64,1,1,68,69],[65,7,5,69,74],[68,1,1,74,75],[70,10,9,75,84],[71,6,6,84,90],[74,1,1,90,91],[79,1,1,91,92],[81,4,4,92,96],[82,4,4,96,100],[83,3,2,100,102],[84,3,3,102,105],[85,3,3,105,108]]],[2,46,43,108,151,[[102,4,4,108,112],[103,1,1,112,113],[104,2,2,113,115],[105,1,1,115,116],[106,3,2,116,118],[108,1,1,118,119],[109,13,13,119,132],[110,4,3,132,135],[111,2,2,135,137],[113,2,2,137,139],[114,6,5,139,144],[116,7,7,144,151]]],[3,48,44,151,195,[[117,3,2,151,153],[118,2,2,153,155],[121,8,8,155,163],[122,1,1,163,164],[123,1,1,164,165],[125,2,1,165,166],[127,1,1,166,167],[128,1,1,167,168],[129,1,1,168,169],[130,1,1,169,170],[131,2,2,170,172],[132,5,4,172,176],[133,1,1,176,177],[135,2,2,177,179],[137,1,1,179,180],[139,1,1,180,181],[141,2,1,181,182],[142,2,2,182,184],[143,3,3,184,187],[146,2,2,187,189],[147,4,4,189,193],[148,1,1,193,194],[152,1,1,194,195]]],[4,59,51,195,246,[[153,3,3,195,198],[155,2,2,198,200],[159,1,1,200,201],[160,1,1,201,202],[163,1,1,202,203],[164,1,1,203,204],[168,1,1,204,205],[169,5,3,205,208],[171,3,3,208,211],[172,7,4,211,215],[173,3,3,215,218],[174,14,11,218,229],[175,1,1,229,230],[176,6,6,230,236],[177,2,2,236,238],[179,1,1,238,239],[180,2,2,239,241],[181,2,2,241,243],[184,1,1,243,244],[185,1,1,244,245],[186,1,1,245,246]]],[5,17,17,246,263,[[187,1,1,246,247],[188,1,1,247,248],[190,1,1,248,249],[191,1,1,249,250],[192,3,3,250,253],[194,1,1,253,254],[196,2,2,254,256],[200,1,1,256,257],[203,1,1,257,258],[207,1,1,258,259],[208,1,1,259,260],[209,2,2,260,262],[210,1,1,262,263]]],[6,65,60,263,323,[[211,3,3,263,266],[212,1,1,266,267],[213,4,4,267,271],[214,3,2,271,273],[216,1,1,273,274],[217,5,5,274,279],[218,3,3,279,282],[219,4,4,282,286],[220,2,2,286,288],[221,1,1,288,289],[223,6,5,289,294],[226,1,1,294,295],[227,5,5,295,300],[228,1,1,300,301],[229,16,14,301,315],[230,3,3,315,318],[231,6,5,318,323]]],[7,9,9,323,332,[[232,2,2,323,325],[233,2,2,325,327],[234,4,4,327,331],[235,1,1,331,332]]],[8,74,66,332,398,[[236,4,4,332,336],[237,8,7,336,343],[239,6,6,343,349],[243,1,1,349,350],[244,10,8,350,358],[245,3,3,358,361],[246,1,1,361,362],[248,2,2,362,364],[249,7,5,364,369],[251,3,3,369,372],[252,10,9,372,381],[253,1,1,381,382],[256,4,4,382,386],[259,1,1,386,387],[260,6,4,387,391],[261,1,1,391,392],[262,3,3,392,395],[263,1,1,395,396],[265,2,2,396,398]]],[9,45,40,398,438,[[267,1,1,398,399],[268,1,1,399,400],[278,5,3,400,403],[279,3,3,403,406],[280,1,1,406,407],[281,4,4,407,411],[282,5,4,411,415],[283,2,2,415,417],[284,7,6,417,423],[285,4,4,423,427],[286,6,5,427,432],[287,3,3,432,435],[289,3,3,435,438]]],[10,51,44,438,482,[[291,2,2,438,440],[292,3,3,440,443],[294,3,3,443,446],[297,1,1,446,447],[298,4,4,447,451],[299,1,1,451,452],[300,1,1,452,453],[301,1,1,453,454],[302,2,2,454,456],[303,15,13,456,469],[307,2,2,469,471],[310,11,7,471,478],[312,5,4,478,482]]],[11,67,61,482,543,[[313,7,7,482,489],[315,1,1,489,490],[316,13,10,490,500],[317,8,7,500,507],[318,7,7,507,514],[319,6,6,514,520],[320,5,5,520,525],[321,2,2,525,527],[322,1,1,527,528],[323,2,2,528,530],[324,1,1,530,531],[325,4,2,531,533],[326,2,2,533,535],[327,1,1,535,536],[330,2,2,536,538],[334,1,1,538,539],[335,4,4,539,543]]],[12,9,9,543,552,[[348,2,2,543,545],[353,2,2,545,547],[357,1,1,547,548],[359,1,1,548,549],[360,1,1,549,550],[364,1,1,550,551],[365,1,1,551,552]]],[13,28,27,552,579,[[368,3,3,552,555],[372,4,4,555,559],[373,1,1,559,560],[374,1,1,560,561],[375,1,1,561,562],[376,1,1,562,563],[377,2,2,563,565],[384,3,3,565,568],[386,1,1,568,569],[389,2,2,569,571],[391,5,4,571,575],[396,1,1,575,576],[397,2,2,576,578],[400,1,1,578,579]]],[14,3,3,579,582,[[405,2,2,579,581],[410,1,1,581,582]]],[15,6,6,582,588,[[413,1,1,582,583],[417,1,1,583,584],[419,1,1,584,585],[420,1,1,585,586],[424,2,2,586,588]]],[16,9,8,588,596,[[426,1,1,588,589],[429,1,1,589,590],[431,5,4,590,594],[434,2,2,594,596]]],[17,21,20,596,616,[[436,4,3,596,599],[437,2,2,599,601],[444,1,1,601,602],[446,2,2,602,604],[447,1,1,604,605],[449,1,1,605,606],[450,1,1,606,607],[457,1,1,607,608],[467,1,1,608,609],[469,3,3,609,612],[470,1,1,612,613],[472,1,1,613,614],[473,1,1,614,615],[477,1,1,615,616]]],[18,22,22,616,638,[[478,1,1,616,617],[482,1,1,617,618],[499,1,1,618,619],[502,1,1,619,620],[508,1,1,620,621],[511,1,1,621,622],[514,2,2,622,624],[515,1,1,624,625],[516,2,2,625,627],[539,2,2,627,629],[557,1,1,629,630],[564,1,1,630,631],[569,1,1,631,632],[582,1,1,632,633],[586,1,1,633,634],[589,2,2,634,636],[617,1,1,636,637],[624,1,1,637,638]]],[19,61,59,638,697,[[632,1,1,638,639],[633,3,3,639,642],[637,1,1,642,643],[638,2,2,643,645],[639,4,4,645,649],[640,1,1,649,650],[641,4,4,650,654],[642,3,3,654,657],[643,6,6,657,663],[644,2,2,663,665],[645,3,3,665,668],[647,5,4,668,672],[648,5,5,672,677],[649,2,2,677,679],[651,3,3,679,682],[652,1,1,682,683],[653,3,3,683,686],[654,3,3,686,689],[655,2,2,689,691],[656,7,6,691,697]]],[20,6,5,697,702,[[659,1,1,697,698],[662,1,1,698,699],[664,2,2,699,701],[667,2,1,701,702]]],[21,2,2,702,704,[[673,1,1,702,703],[678,1,1,703,704]]],[22,25,25,704,729,[[680,1,1,704,705],[681,2,2,705,707],[682,1,1,707,708],[683,1,1,708,709],[684,1,1,709,710],[685,1,1,710,711],[687,2,2,711,713],[691,1,1,713,714],[692,1,1,714,715],[709,2,2,715,717],[710,1,1,717,718],[714,1,1,718,719],[719,1,1,719,720],[720,1,1,720,721],[722,1,1,721,722],[724,1,1,722,723],[728,1,1,723,724],[731,1,1,724,725],[733,1,1,725,726],[735,1,1,726,727],[737,1,1,727,728],[744,1,1,728,729]]],[23,58,54,729,783,[[746,1,1,729,730],[747,1,1,730,731],[748,1,1,731,732],[749,1,1,732,733],[751,1,1,733,734],[752,1,1,734,735],[753,1,1,735,736],[754,1,1,736,737],[755,1,1,737,738],[756,3,2,738,740],[757,1,1,740,741],[758,1,1,741,742],[759,2,1,742,743],[761,1,1,743,744],[764,2,2,744,746],[766,4,3,746,749],[767,3,3,749,752],[770,4,4,752,756],[773,2,2,756,758],[777,2,2,758,760],[778,3,3,760,763],[779,3,3,763,766],[780,2,2,766,768],[781,1,1,768,769],[782,3,2,769,771],[784,1,1,771,772],[785,1,1,772,773],[788,2,2,773,775],[793,3,3,775,778],[794,2,2,778,780],[795,3,3,780,783]]],[25,26,24,783,807,[[809,2,2,783,785],[810,6,5,785,790],[811,3,3,790,793],[815,1,1,793,794],[819,3,2,794,796],[821,2,2,796,798],[823,1,1,798,799],[833,1,1,799,800],[834,1,1,800,801],[841,2,2,801,803],[844,1,1,803,804],[845,1,1,804,805],[847,1,1,805,806],[848,1,1,806,807]]],[26,6,6,807,813,[[858,1,1,807,808],[859,3,3,808,811],[861,2,2,811,813]]],[27,5,5,813,818,[[864,1,1,813,814],[865,1,1,814,815],[867,1,1,815,816],[870,1,1,816,817],[872,1,1,817,818]]],[29,2,2,818,820,[[880,1,1,818,819],[883,1,1,819,820]]],[31,1,1,820,821,[[889,1,1,820,821]]],[32,4,4,821,825,[[894,2,2,821,823],[896,1,1,823,824],[897,1,1,824,825]]],[35,1,1,825,826,[[908,1,1,825,826]]],[36,1,1,826,827,[[909,1,1,826,827]]],[37,10,10,827,837,[[911,3,3,827,830],[912,1,1,830,831],[913,1,1,831,832],[914,1,1,832,833],[916,1,1,833,834],[917,1,1,834,835],[918,2,2,835,837]]],[38,3,3,837,840,[[926,2,2,837,839],[927,1,1,839,840]]]],[54,80,102,146,334,465,466,488,502,607,612,613,617,620,621,623,649,652,656,685,703,705,738,814,873,923,952,1005,1098,1100,1144,1151,1177,1206,1207,1228,1233,1239,1265,1282,1285,1293,1295,1296,1297,1301,1303,1304,1307,1314,1335,1337,1339,1341,1359,1380,1440,1479,1533,1555,1566,1574,1575,1697,1808,1809,1819,1820,1923,1963,1965,1966,1968,1976,2039,2084,2089,2091,2093,2097,2103,2105,2106,2110,2114,2118,2120,2123,2127,2129,2197,2394,2439,2461,2465,2467,2477,2481,2483,2484,2499,2520,2553,2554,2560,2567,2568,2572,3081,3090,3092,3096,3122,3186,3192,3222,3239,3244,3284,3321,3323,3328,3329,3330,3331,3332,3333,3335,3336,3338,3339,3345,3363,3364,3366,3373,3383,3456,3465,3479,3482,3495,3496,3498,3572,3584,3586,3590,3596,3598,3601,3608,3656,3660,3675,3798,3800,3802,3805,3807,3811,3812,3823,3825,3855,3978,4034,4062,4077,4123,4185,4188,4201,4211,4212,4216,4253,4298,4309,4349,4435,4479,4553,4554,4562,4570,4572,4650,4664,4681,4713,4714,4717,4736,4887,4908,4909,4923,4986,4995,5135,5142,5233,5248,5359,5366,5369,5376,5417,5421,5422,5432,5433,5434,5435,5462,5465,5469,5483,5486,5488,5492,5493,5494,5495,5496,5498,5499,5500,5510,5526,5530,5532,5536,5537,5541,5554,5556,5600,5641,5665,5697,5699,5783,5811,5845,5856,5880,5915,5947,5954,5969,5975,6019,6072,6078,6193,6276,6425,6446,6469,6470,6504,6533,6534,6535,6551,6583,6585,6596,6597,6619,6621,6670,6701,6702,6707,6708,6715,6740,6743,6744,6763,6767,6803,6809,6812,6829,6868,6886,6890,6892,6894,6895,6968,6981,6985,6986,6988,6991,7012,7030,7031,7033,7034,7039,7040,7041,7042,7044,7046,7047,7048,7049,7052,7055,7062,7065,7114,7123,7124,7126,7127,7128,7129,7150,7169,7175,7180,7188,7190,7197,7213,7215,7223,7233,7249,7253,7255,7256,7265,7267,7273,7307,7309,7310,7311,7313,7315,7391,7392,7397,7398,7399,7400,7401,7407,7408,7424,7440,7443,7458,7487,7499,7532,7536,7542,7544,7560,7611,7612,7613,7626,7628,7630,7642,7643,7644,7645,7651,7659,7699,7773,7774,7779,7786,7858,7863,7864,7871,7886,7920,7933,7939,7941,7956,7984,7995,8024,8052,8290,8291,8293,8320,8326,8346,8372,8391,8393,8394,8419,8431,8433,8434,8449,8452,8457,8488,8489,8490,8502,8504,8505,8519,8525,8533,8543,8555,8556,8566,8575,8576,8584,8585,8600,8660,8673,8674,8759,8766,8772,8774,8779,8869,8871,8872,8948,9010,9016,9023,9024,9056,9104,9136,9173,9175,9185,9188,9189,9190,9191,9192,9195,9196,9198,9205,9210,9213,9215,9335,9341,9428,9432,9436,9443,9445,9447,9450,9488,9497,9514,9516,9539,9540,9542,9543,9544,9545,9546,9601,9610,9612,9619,9624,9625,9628,9630,9632,9643,9645,9648,9654,9655,9661,9662,9667,9673,9676,9680,9683,9684,9689,9693,9706,9709,9712,9717,9724,9725,9726,9729,9731,9734,9735,9738,9767,9769,9814,9837,9840,9855,9890,9892,9902,9908,9945,10045,10055,10160,10175,10181,10182,10183,10695,10696,10841,10863,10932,10973,10997,11141,11146,11218,11224,11225,11287,11298,11304,11312,11342,11360,11388,11411,11416,11418,11549,11558,11575,11614,11663,11666,11708,11711,11713,11726,11843,11855,11856,11956,12098,12099,12219,12307,12395,12422,12494,12648,12660,12724,12773,12799,12800,12802,12804,12836,12838,12870,12872,12877,12894,12895,13083,13110,13120,13142,13193,13219,13397,13641,13694,13704,13706,13728,13789,13819,13933,13940,13979,14210,14263,14351,14400,14457,14487,14504,14518,14523,14830,14839,15215,15306,15417,15623,15771,15804,15808,16274,16361,16538,16551,16552,16567,16679,16700,16705,16721,16727,16733,16744,16749,16779,16784,16786,16789,16825,16828,16830,16842,16854,16865,16867,16868,16869,16885,16900,16913,16915,16925,16957,16959,16960,16971,16986,16992,17001,17012,17013,17039,17044,17084,17108,17113,17131,17153,17160,17162,17177,17186,17190,17207,17216,17230,17233,17237,17244,17246,17251,17323,17385,17419,17420,17490,17579,17647,17694,17709,17713,17734,17754,17774,17803,17848,17849,17920,17944,18257,18258,18261,18336,18479,18493,18546,18597,18664,18714,18747,18766,18816,18925,18971,19003,19056,19059,19124,19159,19187,19224,19229,19260,19264,19277,19302,19325,19367,19437,19438,19462,19482,19484,19493,19511,19518,19575,19583,19588,19592,19661,19667,19792,19793,19810,19816,19818,19827,19838,19842,19845,19861,19884,19899,19919,19956,19961,20017,20036,20132,20145,20160,20206,20208,20218,20234,20255,20615,20616,20623,20624,20625,20628,20633,20635,20636,20639,20739,20854,20857,20902,20903,21006,21258,21282,21480,21481,21578,21601,21673,21682,22009,22020,22026,22034,22087,22088,22131,22137,22176,22215,22249,22386,22442,22536,22597,22606,22624,22640,22826,22849,22886,22888,22899,22900,22922,22923,22959,22971,22980,22992,23113,23115,23137]]],["man's",[37,37,[[0,7,7,0,7,[[8,1,1,0,1],[41,3,3,1,4],[42,1,1,4,5],[43,2,2,5,7]]],[1,2,2,7,9,[[61,1,1,7,8],[70,1,1,8,9]]],[2,3,3,9,12,[[96,1,1,9,10],[104,1,1,10,11],[109,1,1,11,12]]],[3,2,2,12,14,[[133,2,2,12,14]]],[4,1,1,14,15,[[176,1,1,14,15]]],[6,2,2,15,17,[[217,1,1,15,16],[229,1,1,16,17]]],[7,1,1,17,18,[[233,1,1,17,18]]],[8,1,1,18,19,[[249,1,1,18,19]]],[9,2,2,19,21,[[283,2,2,19,21]]],[10,1,1,21,22,[[308,1,1,21,22]]],[11,2,2,22,24,[[324,1,1,22,23],[335,1,1,23,24]]],[17,1,1,24,25,[[467,1,1,24,25]]],[19,6,6,25,31,[[640,1,1,25,26],[643,1,1,26,27],[645,2,2,27,29],[646,1,1,29,30],[656,1,1,30,31]]],[23,2,2,31,33,[[747,1,1,31,32],[767,1,1,32,33]]],[25,2,2,33,35,[[839,1,1,33,34],[841,1,1,34,35]]],[31,1,1,35,36,[[889,1,1,35,36]]],[32,1,1,36,37,[[899,1,1,36,37]]]],[210,1263,1277,1287,1311,1325,1350,1860,2112,2887,3184,3328,4246,4249,5527,6716,7050,7168,7528,8467,8474,9385,9854,10173,13649,16755,16847,16905,16921,16946,17250,19003,19520,21446,21482,22545,22670]]],["men",[671,607,[[0,44,42,0,42,[[5,1,1,0,1],[11,1,1,1,2],[12,1,1,2,3],[13,1,1,3,4],[16,2,2,4,6],[17,3,3,6,9],[18,6,6,9,15],[19,1,1,15,16],[23,3,3,16,19],[25,2,1,19,20],[28,1,1,20,21],[31,2,2,21,23],[32,1,1,23,24],[33,4,4,24,28],[37,2,2,28,30],[38,1,1,30,31],[42,7,6,31,37],[43,2,2,37,39],[45,1,1,39,40],[46,2,2,40,42]]],[1,13,12,42,54,[[51,1,1,42,43],[53,1,1,43,44],[54,1,1,44,45],[59,1,1,45,46],[66,1,1,46,47],[67,3,2,47,49],[70,2,2,49,51],[71,1,1,51,52],[81,1,1,52,53],[84,1,1,53,54]]],[2,1,1,54,55,[[107,1,1,54,55]]],[3,35,35,55,90,[[117,3,3,55,58],[125,2,2,58,60],[127,3,3,60,63],[129,5,5,63,68],[130,4,4,68,72],[132,5,5,72,77],[138,3,3,77,80],[142,1,1,80,81],[147,5,5,81,86],[148,2,2,86,88],[150,2,2,88,90]]],[4,17,17,90,107,[[153,5,5,90,95],[154,2,2,95,97],[156,1,1,97,98],[165,1,1,98,99],[171,1,1,99,100],[173,1,1,100,101],[174,1,1,101,102],[177,2,2,102,104],[179,1,1,104,105],[181,1,1,105,106],[183,1,1,106,107]]],[5,43,37,107,144,[[188,12,10,107,117],[189,1,1,117,118],[190,2,2,118,120],[191,2,2,120,122],[192,2,2,122,124],[193,7,4,124,128],[194,6,6,128,134],[195,3,3,134,137],[196,5,4,137,141],[204,3,3,141,144]]],[6,99,82,144,226,[[211,1,1,144,145],[213,3,2,145,147],[214,3,3,147,150],[216,4,3,150,153],[217,7,7,153,160],[218,14,12,160,172],[219,7,6,172,178],[221,1,1,178,179],[222,4,3,179,182],[224,2,2,182,184],[225,4,4,184,188],[226,2,1,188,189],[228,9,7,189,196],[229,3,3,196,199],[230,33,25,199,224],[231,2,2,224,226]]],[7,1,1,226,227,[[235,1,1,226,227]]],[8,91,82,227,309,[[237,2,2,227,229],[239,3,2,229,231],[240,3,3,231,234],[241,5,4,234,238],[242,2,2,238,240],[243,1,1,240,241],[245,2,2,241,243],[246,8,7,243,250],[248,2,2,250,252],[249,6,6,252,258],[250,1,1,258,259],[252,8,8,259,267],[253,3,2,267,269],[257,2,2,269,271],[258,10,8,271,279],[259,6,5,279,284],[260,5,4,284,288],[261,1,1,288,289],[262,3,3,289,292],[263,2,2,292,294],[264,3,3,294,297],[265,8,8,297,305],[266,5,4,305,309]]],[9,66,55,309,364,[[267,1,1,309,310],[268,9,8,310,318],[269,3,2,318,320],[270,2,2,320,322],[271,2,2,322,324],[273,1,1,324,325],[274,1,1,325,326],[276,3,2,326,328],[277,3,3,328,331],[278,1,1,331,332],[279,1,1,332,333],[281,6,6,333,339],[282,3,3,339,342],[283,5,5,342,347],[284,1,1,347,348],[285,13,7,348,355],[286,3,3,355,358],[287,2,2,358,360],[289,2,2,360,362],[290,4,2,362,364]]],[10,20,19,364,383,[[291,2,2,364,366],[292,1,1,366,367],[295,1,1,367,368],[298,1,1,368,369],[299,1,1,369,370],[300,1,1,370,371],[301,2,2,371,373],[303,1,1,373,374],[308,2,2,374,376],[310,3,3,376,379],[311,4,3,379,382],[312,1,1,382,383]]],[11,32,26,383,409,[[314,4,4,383,387],[315,1,1,387,388],[316,2,2,388,390],[317,1,1,390,391],[319,1,1,391,392],[322,4,3,392,395],[323,1,1,395,396],[324,1,1,396,397],[327,1,1,397,398],[329,3,1,398,399],[330,1,1,399,400],[332,1,1,400,401],[335,2,2,401,403],[336,1,1,403,404],[337,8,5,404,409]]],[12,23,20,409,429,[[341,3,3,409,412],[342,3,2,412,414],[344,2,2,414,416],[345,1,1,416,417],[346,1,1,417,418],[347,3,3,418,421],[348,1,1,421,422],[349,2,2,422,424],[355,1,1,424,425],[356,2,1,425,426],[358,3,2,426,428],[363,1,1,428,429]]],[13,18,16,429,445,[[368,1,1,429,430],[371,1,1,430,431],[374,1,1,431,432],[375,1,1,432,433],[379,6,4,433,437],[383,1,1,437,438],[384,1,1,438,439],[389,1,1,439,440],[390,1,1,440,441],[394,1,1,441,442],[397,1,1,442,443],[400,2,2,443,445]]],[14,9,9,445,454,[[403,1,1,445,446],[404,5,5,446,451],[412,3,3,451,454]]],[15,18,18,454,472,[[413,1,1,454,455],[414,1,1,455,456],[415,3,3,456,459],[416,1,1,459,460],[419,9,9,460,469],[420,1,1,469,470],[423,2,2,470,472]]],[16,3,3,472,475,[[434,3,3,472,475]]],[17,12,12,475,487,[[439,1,1,475,476],[467,2,2,476,478],[468,3,3,478,481],[469,4,4,481,485],[471,1,1,485,486],[472,1,1,486,487]]],[18,6,6,487,493,[[481,1,1,487,488],[503,1,1,488,489],[532,1,1,489,490],[553,1,1,490,491],[616,1,1,491,492],[618,1,1,492,493]]],[19,5,5,493,498,[[635,1,1,493,494],[651,1,1,494,495],[652,1,1,495,496],[655,1,1,496,497],[656,1,1,497,498]]],[20,2,2,498,500,[[667,1,1,498,499],[670,1,1,499,500]]],[22,14,14,500,514,[[680,2,2,500,502],[683,3,3,502,505],[685,1,1,505,506],[699,1,1,506,507],[706,1,1,507,508],[707,1,1,508,509],[714,1,1,509,510],[723,1,1,510,511],[731,1,1,511,512],[735,1,1,512,513],[744,1,1,513,514]]],[23,56,52,514,566,[[748,2,2,514,516],[749,1,1,516,517],[750,1,1,517,518],[755,4,4,518,522],[761,1,1,522,523],[762,2,2,523,525],[763,1,1,525,526],[770,2,1,526,527],[776,1,1,527,528],[778,1,1,528,529],[779,1,1,529,530],[780,1,1,530,531],[781,1,1,531,532],[782,5,5,532,537],[783,2,2,537,539],[784,4,3,539,542],[785,10,10,542,552],[786,1,1,552,553],[787,2,2,553,555],[788,3,3,555,558],[792,3,3,558,561],[793,1,1,561,562],[794,1,1,562,563],[795,1,1,563,564],[796,4,2,564,566]]],[24,1,1,566,567,[[799,1,1,566,567]]],[25,25,25,567,592,[[809,2,2,567,569],[810,3,3,569,572],[812,3,3,572,575],[813,1,1,575,576],[815,4,4,576,580],[822,1,1,580,581],[823,1,1,581,582],[824,4,4,582,586],[825,2,2,586,588],[828,2,2,588,590],[840,2,2,590,592]]],[26,2,2,592,594,[[858,1,1,592,593],[859,1,1,593,594]]],[28,2,2,594,596,[[877,1,1,594,595],[878,1,1,595,596]]],[29,1,1,596,597,[[884,1,1,596,597]]],[30,2,1,597,598,[[888,2,1,597,598]]],[31,4,3,598,601,[[889,4,3,598,601]]],[32,1,1,601,602,[[899,1,1,601,602]]],[33,1,1,602,603,[[901,1,1,602,603]]],[35,1,1,603,604,[[906,1,1,603,604]]],[37,3,3,604,607,[[913,1,1,604,605],[917,1,1,605,606],[918,1,1,606,607]]]],[141,318,331,360,420,424,426,440,446,462,465,467,468,469,473,503,604,645,650,699,817,934,956,961,987,1000,1001,1002,1140,1141,1163,1305,1306,1307,1308,1314,1323,1327,1328,1418,1422,1426,1567,1620,1641,1784,1992,2020,2024,2095,2099,2144,2466,2553,3278,3609,3621,3648,3971,3972,4040,4048,4050,4077,4078,4091,4106,4107,4130,4144,4145,4146,4196,4208,4220,4224,4229,4384,4395,4410,4499,4685,4692,4706,4713,4717,4729,4732,4833,4835,4905,4907,4914,4915,4927,4952,4954,5007,5285,5423,5468,5491,5548,5558,5599,5689,5740,5870,5871,5872,5873,5874,5876,5878,5883,5886,5892,5905,5912,5914,5938,5940,5952,5971,5978,5979,5980,5981,6005,6014,6016,6022,6023,6027,6043,6044,6051,6066,6070,6082,6088,6297,6301,6302,6513,6597,6599,6605,6609,6613,6681,6682,6684,6700,6701,6702,6710,6713,6717,6718,6720,6723,6724,6727,6728,6729,6733,6734,6735,6736,6737,6741,6782,6790,6803,6805,6809,6811,6832,6870,6873,6874,6927,6928,6939,6940,6944,6945,6976,6995,7000,7004,7007,7009,7010,7015,7040,7046,7049,7064,7065,7066,7067,7069,7070,7071,7074,7075,7076,7079,7085,7087,7088,7089,7090,7092,7093,7095,7096,7098,7099,7100,7101,7102,7103,7112,7192,7257,7266,7299,7306,7326,7328,7331,7341,7346,7350,7351,7353,7363,7391,7420,7421,7446,7450,7453,7454,7455,7457,7460,7491,7500,7510,7516,7520,7522,7530,7532,7564,7620,7630,7637,7642,7643,7644,7646,7670,7681,7703,7789,7793,7813,7815,7818,7822,7823,7834,7835,7836,7841,7842,7843,7845,7861,7872,7874,7876,7881,7907,7932,7933,7938,7943,7950,7969,7971,7978,7979,7981,7987,7988,7995,7999,8000,8009,8010,8015,8016,8021,8033,8052,8053,8054,8066,8078,8079,8080,8081,8101,8120,8122,8131,8138,8153,8194,8214,8245,8246,8275,8276,8282,8287,8326,8390,8395,8400,8402,8407,8411,8439,8441,8444,8450,8457,8461,8463,8473,8506,8525,8527,8528,8539,8552,8553,8554,8556,8558,8561,8586,8597,8662,8670,8701,8707,8722,8726,8802,8891,8987,9073,9087,9126,9132,9209,9354,9363,9425,9438,9441,9461,9462,9464,9486,9558,9567,9568,9570,9602,9643,9646,9671,9710,9799,9807,9817,9838,9865,9950,10013,10051,10112,10167,10182,10218,10226,10241,10245,10246,10247,10397,10407,10427,10446,10452,10556,10575,10615,10624,10660,10666,10671,10692,10728,10758,10895,10912,10939,10948,11085,11213,11271,11355,11371,11456,11460,11468,11470,11536,11547,11664,11701,11779,11873,11945,11963,12020,12029,12049,12050,12054,12055,12253,12261,12269,12298,12319,12329,12334,12349,12382,12427,12446,12447,12448,12449,12450,12451,12452,12453,12496,12590,12594,12840,12846,12849,12943,13629,13633,13665,13666,13677,13691,13693,13717,13719,13760,13776,13967,14282,14755,15086,16258,16280,16606,17080,17114,17201,17232,17489,17526,17696,17702,17742,17746,17761,17795,18044,18178,18206,18342,18575,18714,18766,18946,19030,19031,19084,19112,19228,19235,19247,19249,19382,19395,19405,19417,19594,19763,19819,19836,19873,19884,19899,19904,19905,19906,19911,19927,19940,19948,19949,19950,19958,19959,19960,19962,19964,19965,19966,19969,19972,19973,19992,19999,20006,20025,20029,20037,20094,20111,20116,20153,20196,20244,20283,20301,20387,20615,20620,20624,20626,20628,20656,20657,20670,20696,20734,20745,20747,20749,20975,20985,21021,21047,21049,21052,21073,21078,21131,21148,21462,21468,21995,22022,22318,22352,22459,22517,22541,22544,22547,22670,22702,22799,22920,22964,22999]]],["men's",[2,2,[[0,2,2,0,2,[[23,1,1,0,1],[43,1,1,1,2]]]],[623,1325]]],["one",[174,162,[[0,11,11,0,11,[[9,1,1,0,1],[10,2,2,1,3],[12,1,1,3,4],[25,1,1,4,5],[30,1,1,5,6],[33,1,1,6,7],[36,1,1,7,8],[41,2,2,8,10],[42,1,1,10,11]]],[1,8,8,11,19,[[65,1,1,11,12],[67,1,1,12,13],[70,1,1,13,14],[74,1,1,14,15],[77,1,1,15,16],[84,1,1,16,17],[86,1,1,17,18],[88,1,1,18,19]]],[2,5,5,19,24,[[96,1,1,19,20],[108,1,1,20,21],[114,2,2,21,23],[115,1,1,23,24]]],[3,9,9,24,33,[[117,1,1,24,25],[118,1,1,25,26],[130,1,1,26,27],[141,2,2,27,29],[142,1,1,29,30],[151,1,1,30,31],[152,2,2,31,33]]],[4,3,3,33,36,[[153,1,1,33,34],[177,1,1,34,35],[185,1,1,35,36]]],[5,1,1,36,37,[[208,1,1,36,37]]],[6,3,3,37,40,[[216,1,1,37,38],[220,1,1,38,39],[226,1,1,39,40]]],[7,1,1,40,41,[[234,1,1,40,41]]],[8,8,6,41,47,[[245,2,2,41,43],[249,1,1,43,44],[255,2,2,44,46],[257,3,1,46,47]]],[9,7,6,47,53,[[268,2,2,47,49],[272,2,1,49,50],[284,1,1,50,51],[285,1,1,51,52],[286,1,1,52,53]]],[10,3,3,53,56,[[297,1,1,53,54],[308,1,1,54,55],[310,1,1,55,56]]],[11,8,7,56,63,[[315,1,1,56,57],[319,3,3,57,60],[324,1,1,60,61],[330,2,1,61,62],[335,1,1,62,63]]],[12,1,1,63,64,[[353,1,1,63,64]]],[13,2,2,64,66,[[372,1,1,64,65],[386,1,1,65,66]]],[14,1,1,66,67,[[404,1,1,66,67]]],[15,15,14,67,81,[[415,1,1,67,68],[416,5,5,68,73],[417,1,1,73,74],[419,3,2,74,76],[420,1,1,76,77],[423,2,2,77,79],[425,2,2,79,81]]],[16,3,3,81,84,[[431,1,1,81,82],[434,2,2,82,84]]],[17,5,5,84,89,[[436,1,1,84,85],[437,2,2,85,87],[476,1,1,87,88],[477,1,1,88,89]]],[18,3,3,89,92,[[489,1,1,89,90],[526,1,1,90,91],[541,1,1,91,92]]],[19,2,2,92,94,[[633,1,1,92,93],[647,1,1,93,94]]],[21,1,1,94,95,[[678,1,1,94,95]]],[22,15,11,95,106,[[681,2,1,95,96],[691,2,2,96,98],[692,1,1,98,99],[697,2,1,99,100],[714,3,1,100,101],[718,1,1,101,102],[725,1,1,102,103],[731,1,1,103,104],[734,1,1,104,105],[744,1,1,105,106]]],[23,28,26,106,132,[[745,1,1,106,107],[749,1,1,107,108],[750,1,1,108,109],[753,2,2,109,111],[755,1,1,111,112],[757,1,1,112,113],[760,1,1,113,114],[762,2,2,114,116],[763,1,1,116,117],[766,1,1,117,118],[767,3,2,118,120],[769,2,2,120,122],[775,1,1,122,123],[776,1,1,123,124],[778,2,2,124,126],[780,2,2,126,128],[782,1,1,128,129],[790,1,1,129,130],[794,2,1,130,131],[795,1,1,131,132]]],[25,16,15,132,147,[[802,5,4,132,136],[805,1,1,136,137],[808,1,1,137,138],[811,1,1,138,139],[819,1,1,139,140],[821,1,1,140,141],[823,2,2,141,143],[825,1,1,143,144],[834,2,2,144,146],[848,1,1,146,147]]],[28,2,2,147,149,[[877,2,2,147,149]]],[30,1,1,149,150,[[888,1,1,149,150]]],[31,2,2,150,152,[[889,1,1,150,151],[891,1,1,151,152]]],[32,1,1,152,153,[[896,1,1,152,153]]],[35,1,1,153,154,[[907,1,1,153,154]]],[36,2,2,154,156,[[910,2,2,154,156]]],[37,5,5,156,161,[[918,1,1,156,157],[920,1,1,157,158],[921,1,1,158,159],[923,1,1,159,160],[924,1,1,160,161]]],[38,1,1,161,162,[[927,1,1,161,162]]]],[239,269,273,329,723,922,994,1102,1273,1280,1323,1962,2015,2095,2215,2314,2552,2613,2678,2889,3292,3486,3515,3561,3608,3692,4112,4476,4477,4543,4853,4886,4888,4927,5558,5818,6440,6683,6829,6954,7186,7429,7430,7536,7745,7771,7789,8065,8076,8176,8495,8518,8565,8970,9381,9428,9599,9710,9713,9716,9859,10055,10200,10823,11311,11610,12028,12355,12374,12377,12378,12381,12382,12389,12423,12426,12509,12591,12608,12681,12701,12802,12853,12856,12873,12902,12903,13905,13933,14068,14664,14856,16568,16960,17651,17712,17914,17920,17946,18006,18346,18446,18614,18717,18764,18935,18961,19066,19092,19179,19180,19234,19280,19348,19395,19396,19416,19461,19514,19519,19539,19560,19721,19750,19811,19818,19849,19858,19902,20061,20182,20221,20473,20475,20476,20487,20546,20593,20655,20879,20934,20982,20987,21079,21300,21310,21693,22318,22319,22519,22538,22566,22625,22816,22867,22877,22986,23017,23034,23063,23081,23136]]],["people",[2,2,[[9,1,1,0,1,[[286,1,1,0,1]]],[31,1,1,1,2,[[891,1,1,1,2]]]],[8567,22563]]],["person",[4,4,[[3,1,1,0,1,[[135,1,1,0,1]]],[8,2,2,1,3,[[244,1,1,1,2],[251,1,1,2,3]]],[9,1,1,3,4,[[270,1,1,3,4]]]],[4307,7393,7613,8131]]],["persons",[10,10,[[6,5,5,0,5,[[219,4,4,0,4],[230,1,1,4,5]]],[8,2,2,5,7,[[244,1,1,5,6],[257,1,1,6,7]]],[11,2,2,7,9,[[322,2,2,7,9]]],[35,1,1,9,10,[[908,1,1,9,10]]]],[6756,6758,6759,6772,7093,7413,7805,9799,9800,22824]]],["servants",[1,1,[[8,1,1,0,1,[[259,1,1,0,1]]]],[7846]]],["some",[3,3,[[1,1,1,0,1,[[65,1,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]],[15,1,1,2,3,[[424,1,1,2,3]]]],[1967,4667,12668]]],["them",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18463]]],["they",[2,2,[[22,2,2,0,2,[[719,2,2,0,2]]]],[18462,18463]]],["trade",[2,2,[[0,2,2,0,2,[[45,2,2,0,2]]]],[1418,1420]]],["worthy",[1,1,[[10,1,1,0,1,[[292,1,1,0,1]]]],[8796]]]]},{"k":"H377","v":[["men",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18594]]]]},{"k":"H378","v":[["Ishbosheth",[11,10,[[9,11,10,0,10,[[268,4,4,0,4],[269,3,3,4,7],[270,4,3,7,10]]]],[8057,8059,8061,8064,8089,8095,8096,8125,8128,8132]]]]},{"k":"H379","v":[["Ishod",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10553]]]]},{"k":"H380","v":[["*",[5,5,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,1,1,1,2,[[494,1,1,1,2]]],[19,3,3,2,5,[[634,2,2,2,4],[647,1,1,4,5]]]],[5768,14111,16577,16584,16974]]],["+",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14111]]],["apple",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]]],[5768,16577]]],["black",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16584]]],["obscure",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16974]]]]},{"k":"H381","v":[]},{"k":"H382","v":[["Ishtob",[2,2,[[9,2,2,0,2,[[276,2,2,0,2]]]],[8246,8248]]]]},{"k":"H383","v":[["*",[17,16,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,15,14,2,16,[[851,6,5,2,7],[852,7,7,7,14],[853,1,1,14,15],[854,1,1,15,16]]]],[12126,12151,21768,21769,21784,21786,21788,21819,21821,21822,21824,21825,21832,21836,21872,21885]]],["Art",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21784]]],["are",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21819]]],["be",[3,3,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,2,2,1,3,[[852,2,2,1,3]]]],[12151,21822,21824]]],["can",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21872]]],["do",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21821]]],["have",[3,3,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,2,2,1,3,[[851,1,1,1,2],[852,1,1,2,3]]]],[12126,21788,21832]]],["is",[6,5,[[26,6,5,0,5,[[851,4,3,0,3],[852,1,1,3,4],[854,1,1,4,5]]]],[21768,21769,21786,21836,21885]]],["will",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21825]]]]},{"k":"H384","v":[["Ithiel",[3,2,[[15,1,1,0,1,[[423,1,1,0,1]]],[19,2,1,1,2,[[657,2,1,1,2]]]],[12595,17252]]]]},{"k":"H385","v":[["Ithamar",[21,20,[[1,3,3,0,3,[[55,1,1,0,1],[77,1,1,1,2],[87,1,1,2,3]]],[2,3,3,3,6,[[99,3,3,3,6]]],[3,6,6,6,12,[[119,2,2,6,8],[120,2,2,8,10],[123,1,1,10,11],[142,1,1,11,12]]],[12,8,7,12,19,[[343,1,1,12,13],[361,7,6,13,19]]],[14,1,1,19,20,[[410,1,1,19,20]]]],[1678,2294,2654,2983,2989,2993,3694,3696,3771,3776,3858,4549,10457,11016,11017,11018,11019,11020,11021,12203]]]]},{"k":"H386","v":[["*",[13,13,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[3,1,1,2,3,[[140,1,1,2,3]]],[4,1,1,3,4,[[173,1,1,3,4]]],[17,2,2,4,6,[[447,1,1,4,5],[468,1,1,5,6]]],[18,1,1,6,7,[[551,1,1,6,7]]],[19,1,1,7,8,[[640,1,1,7,8]]],[23,3,3,8,11,[[749,1,1,8,9],[793,1,1,9,10],[794,1,1,10,11]]],[29,1,1,11,12,[[883,1,1,11,12]]],[32,1,1,12,13,[[898,1,1,12,13]]]],[1497,1916,4467,5451,13147,13669,15063,16762,19073,20146,20210,22447,22650]]],["Strong",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4467]]],["hard",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16762]]],["mighty",[4,4,[[17,1,1,0,1,[[447,1,1,0,1]]],[18,1,1,1,2,[[551,1,1,1,2]]],[23,1,1,2,3,[[749,1,1,2,3]]],[29,1,1,3,4,[[883,1,1,3,4]]]],[13147,15063,19073,22447]]],["rough",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5451]]],["strength",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]]],[1497,1916]]],["strong",[4,4,[[17,1,1,0,1,[[468,1,1,0,1]]],[23,2,2,1,3,[[793,1,1,1,2],[794,1,1,2,3]]],[32,1,1,3,4,[[898,1,1,3,4]]]],[13669,20146,20210,22650]]]]},{"k":"H387","v":[["*",[7,7,[[10,1,1,0,1,[[294,1,1,0,1]]],[12,6,6,1,7,[[339,2,2,1,3],[343,2,2,3,5],[352,2,2,5,7]]]],[8875,10312,10314,10496,10498,10808,10810]]],["+",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8875]]],["Ethan",[6,6,[[12,6,6,0,6,[[339,2,2,0,2],[343,2,2,2,4],[352,2,2,4,6]]]],[10312,10314,10496,10498,10808,10810]]]]},{"k":"H388","v":[["Ethanim",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[8987]]]]},{"k":"H389","v":[["*",[160,156,[[0,14,14,0,14,[[6,1,1,0,1],[8,2,2,1,3],[17,1,1,3,4],[19,1,1,4,5],[22,1,1,5,6],[25,1,1,6,7],[26,2,2,7,9],[28,1,1,9,10],[33,3,3,10,13],[43,1,1,13,14]]],[1,5,5,14,19,[[59,1,1,14,15],[61,2,2,15,17],[70,1,1,17,18],[80,1,1,18,19]]],[2,8,8,19,27,[[100,3,3,19,22],[110,1,1,22,23],[112,2,2,23,25],[116,2,2,25,27]]],[3,11,11,27,38,[[117,1,1,27,28],[128,1,1,28,29],[130,1,1,29,30],[134,3,3,30,33],[138,1,1,33,34],[142,1,1,34,35],[147,2,2,35,37],[152,1,1,37,38]]],[4,5,5,38,43,[[164,1,1,38,39],[166,1,1,39,40],[168,1,1,40,41],[170,1,1,41,42],[180,1,1,42,43]]],[5,2,2,43,45,[[189,1,1,43,44],[208,1,1,44,45]]],[6,6,6,45,51,[[213,1,1,45,46],[216,1,1,46,47],[217,1,1,47,48],[220,1,1,48,49],[226,1,1,49,50],[230,1,1,50,51]]],[8,11,11,51,62,[[236,1,1,51,52],[243,1,1,52,53],[247,2,2,53,55],[251,1,1,55,56],[253,2,2,56,58],[255,1,1,58,59],[256,1,1,59,60],[260,1,1,60,61],[264,1,1,61,62]]],[9,3,3,62,65,[[268,1,1,62,63],[269,1,1,63,64],[289,1,1,64,65]]],[10,6,6,65,71,[[299,1,1,65,66],[301,2,2,66,68],[307,1,1,68,69],[312,2,2,69,71]]],[11,9,9,71,80,[[317,1,1,71,72],[324,1,1,72,73],[325,1,1,73,74],[330,1,1,74,75],[334,1,1,75,76],[335,3,3,76,79],[336,1,1,79,80]]],[12,1,1,80,81,[[359,1,1,80,81]]],[13,2,2,81,83,[[386,1,1,81,82],[396,1,1,82,83]]],[14,1,1,83,84,[[412,1,1,83,84]]],[17,11,11,84,95,[[437,1,1,84,85],[448,2,2,85,87],[449,1,1,87,88],[451,1,1,88,89],[453,1,1,89,90],[454,1,1,90,91],[458,1,1,91,92],[465,1,1,92,93],[468,1,1,93,94],[470,1,1,94,95]]],[18,24,22,95,117,[[500,1,1,95,96],[514,1,1,96,97],[516,4,3,97,100],[526,1,1,100,101],[535,2,1,101,102],[539,6,6,102,108],[545,2,2,108,110],[550,3,3,110,113],[552,1,1,113,114],[562,1,1,114,115],[616,1,1,115,116],[617,1,1,116,117]]],[19,6,5,117,122,[[638,1,1,117,118],[641,1,1,118,119],[644,1,1,119,120],[648,2,1,120,121],[649,1,1,121,122]]],[22,10,10,122,132,[[692,1,1,122,123],[694,1,1,123,124],[697,1,1,124,125],[712,2,2,125,127],[714,1,1,127,128],[721,1,1,128,129],[723,2,2,129,131],[741,1,1,131,132]]],[23,15,14,132,146,[[746,1,1,132,133],[747,1,1,133,134],[749,2,2,134,136],[754,2,2,136,138],[756,1,1,138,139],[760,1,1,139,140],[770,2,2,140,142],[772,1,1,142,143],[774,1,1,143,144],[776,2,1,144,145],[778,1,1,145,146]]],[24,2,2,146,148,[[798,1,1,146,147],[799,1,1,147,148]]],[25,1,1,148,149,[[847,1,1,148,149]]],[27,3,3,149,152,[[865,1,1,149,150],[873,2,2,150,152]]],[31,1,1,152,153,[[890,1,1,152,153]]],[35,2,2,153,155,[[906,1,1,153,154],[908,1,1,154,155]]],[37,1,1,155,156,[[911,1,1,155,156]]]],[182,209,210,456,507,584,701,740,757,809,995,1002,1003,1352,1794,1831,1832,2098,2433,3001,3018,3033,3368,3429,3441,3596,3598,3653,4061,4117,4260,4272,4274,4395,4544,4686,4687,4885,5262,5297,5357,5404,5640,5897,6445,6592,6693,6713,6826,6977,7093,7235,7378,7480,7484,7601,7684,7693,7769,7776,7882,7976,8059,8094,8663,9075,9120,9147,9330,9512,9523,9654,9863,9877,10044,10152,10174,10191,10200,10205,10976,11620,11838,12267,12897,13168,13173,13203,13245,13297,13310,13425,13581,13658,13733,14241,14458,14517,14518,14523,14663,14790,14828,14829,14831,14832,14833,14836,14906,14921,15021,15033,15038,15079,15280,16250,16276,16711,16795,16884,16989,17031,17943,17976,18015,18317,18318,18335,18529,18575,18585,18874,19000,19015,19062,19063,19220,19225,19250,19355,19587,19596,19625,19678,19761,19805,20348,20357,21672,22137,22260,22263,22552,22805,22827,22884]]],["+",[10,10,[[0,1,1,0,1,[[8,1,1,0,1]]],[1,1,1,1,2,[[80,1,1,1,2]]],[2,2,2,2,4,[[100,2,2,2,4]]],[3,4,4,4,8,[[134,1,1,4,5],[138,1,1,5,6],[142,1,1,6,7],[147,1,1,7,8]]],[4,1,1,8,9,[[166,1,1,8,9]]],[11,1,1,9,10,[[317,1,1,9,10]]]],[210,2433,3001,3018,4272,4395,4544,4686,5297,9654]]],["Also",[2,2,[[2,2,2,0,2,[[112,2,2,0,2]]]],[3429,3441]]],["But",[13,13,[[0,3,3,0,3,[[8,1,1,0,1],[22,1,1,1,2],[33,1,1,2,3]]],[3,1,1,3,4,[[134,1,1,3,4]]],[4,1,1,4,5,[[170,1,1,4,5]]],[9,1,1,5,6,[[268,1,1,5,6]]],[10,1,1,6,7,[[299,1,1,6,7]]],[17,2,2,7,9,[[449,1,1,7,8],[451,1,1,8,9]]],[18,2,2,9,11,[[526,1,1,9,10],[545,1,1,10,11]]],[23,1,1,11,12,[[770,1,1,11,12]]],[37,1,1,12,13,[[911,1,1,12,13]]]],[209,584,995,4274,5404,8059,9075,13203,13245,14663,14921,19587,22884]]],["Even",[1,1,[[4,1,1,0,1,[[164,1,1,0,1]]]],[5262]]],["Howbeit",[4,4,[[11,2,2,0,2,[[324,1,1,0,1],[334,1,1,1,2]]],[13,1,1,2,3,[[386,1,1,2,3]]],[17,1,1,3,4,[[465,1,1,3,4]]]],[9863,10152,11620,13581]]],["Nevertheless",[6,6,[[2,1,1,0,1,[[100,1,1,0,1]]],[11,2,2,1,3,[[325,1,1,1,2],[335,1,1,2,3]]],[13,1,1,3,4,[[396,1,1,3,4]]],[23,2,2,4,6,[[770,1,1,4,5],[772,1,1,5,6]]]],[3033,9877,10174,11838,19596,19625]]],["Notwithstanding",[5,5,[[1,1,1,0,1,[[70,1,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]],[5,1,1,2,3,[[208,1,1,2,3]]],[10,1,1,3,4,[[301,1,1,3,4]]],[11,1,1,4,5,[[335,1,1,4,5]]]],[2098,3598,6445,9120,10191]]],["Only",[10,10,[[0,1,1,0,1,[[33,1,1,0,1]]],[2,2,2,1,3,[[110,1,1,1,2],[116,1,1,2,3]]],[3,2,2,3,5,[[117,1,1,3,4],[130,1,1,4,5]]],[8,1,1,5,6,[[247,1,1,5,6]]],[12,1,1,6,7,[[359,1,1,6,7]]],[14,1,1,7,8,[[412,1,1,7,8]]],[17,1,1,8,9,[[448,1,1,8,9]]],[23,1,1,9,10,[[747,1,1,9,10]]]],[1002,3368,3596,3653,4117,7484,10976,12267,13173,19015]]],["Surely",[26,26,[[0,2,2,0,2,[[28,1,1,0,1],[43,1,1,1,2]]],[6,2,2,2,4,[[213,1,1,2,3],[230,1,1,3,4]]],[8,2,2,4,6,[[251,1,1,4,5],[260,1,1,5,6]]],[10,1,1,6,7,[[312,1,1,6,7]]],[11,1,1,7,8,[[336,1,1,7,8]]],[17,3,3,8,11,[[453,1,1,8,9],[468,1,1,9,10],[470,1,1,10,11]]],[18,7,7,11,18,[[500,1,1,11,12],[516,1,1,12,13],[539,1,1,13,14],[550,1,1,14,15],[562,1,1,15,16],[616,1,1,16,17],[617,1,1,17,18]]],[22,4,4,18,22,[[697,1,1,18,19],[723,2,2,19,21],[741,1,1,21,22]]],[23,2,2,22,24,[[749,1,1,22,23],[760,1,1,23,24]]],[24,1,1,24,25,[[799,1,1,24,25]]],[35,1,1,25,26,[[908,1,1,25,26]]]],[809,1352,6592,7093,7601,7882,9512,10205,13297,13658,13733,14241,14518,14836,15038,15280,16250,16276,18015,18575,18585,18874,19062,19355,20357,22827]]],["Truly",[3,3,[[18,2,2,0,2,[[539,1,1,0,1],[550,1,1,1,2]]],[23,1,1,2,3,[[754,1,1,2,3]]]],[14828,15021,19220]]],["Verily",[2,2,[[18,2,2,0,2,[[535,1,1,0,1],[550,1,1,1,2]]]],[14790,15033]]],["Yet",[5,5,[[5,1,1,0,1,[[189,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]],[23,1,1,2,3,[[778,1,1,2,3]]],[27,2,2,3,5,[[865,1,1,3,4],[873,1,1,4,5]]]],[5897,17943,19805,22137,22260]]],["also",[2,2,[[22,2,2,0,2,[[712,2,2,0,2]]]],[18317,18318]]],["but",[18,18,[[0,1,1,0,1,[[19,1,1,0,1]]],[6,2,2,1,3,[[216,1,1,1,2],[217,1,1,2,3]]],[8,1,1,3,4,[[253,1,1,3,4]]],[9,1,1,4,5,[[269,1,1,4,5]]],[10,2,2,5,7,[[301,1,1,5,6],[307,1,1,6,7]]],[11,2,2,7,9,[[330,1,1,7,8],[335,1,1,8,9]]],[17,3,3,9,12,[[437,1,1,9,10],[448,1,1,10,11],[458,1,1,11,12]]],[18,2,2,12,14,[[545,1,1,12,13],[552,1,1,13,14]]],[22,2,2,14,16,[[714,1,1,14,15],[721,1,1,15,16]]],[23,1,1,16,17,[[749,1,1,16,17]]],[25,1,1,17,18,[[847,1,1,17,18]]]],[507,6693,6713,7684,8094,9147,9330,10044,10200,12897,13168,13425,14906,15079,18335,18529,19063,21672]]],["certainly",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20348]]],["even",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]]],[1831,22805]]],["howbeit",[1,1,[[8,1,1,0,1,[[243,1,1,0,1]]]],[7378]]],["indeed",[1,1,[[3,1,1,0,1,[[128,1,1,0,1]]]],[4061]]],["least",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7776]]],["nevertheless",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]]],[4687,9523]]],["notwithstanding",[1,1,[[8,1,1,0,1,[[264,1,1,0,1]]]],[7976]]],["only",[24,22,[[0,3,3,0,3,[[6,1,1,0,1],[26,1,1,1,2],[33,1,1,2,3]]],[1,1,1,3,4,[[59,1,1,3,4]]],[3,2,2,4,6,[[134,1,1,4,5],[152,1,1,5,6]]],[4,1,1,6,7,[[180,1,1,6,7]]],[6,2,2,7,9,[[220,1,1,7,8],[226,1,1,8,9]]],[8,3,3,9,12,[[236,1,1,9,10],[253,1,1,10,11],[255,1,1,11,12]]],[9,1,1,12,13,[[289,1,1,12,13]]],[18,4,4,13,17,[[539,4,4,13,17]]],[19,5,4,17,21,[[638,1,1,17,18],[641,1,1,18,19],[644,1,1,19,20],[648,2,1,20,21]]],[23,2,1,21,22,[[776,2,1,21,22]]]],[182,740,1003,1794,4260,4885,5640,6826,6977,7235,7693,7769,8663,14829,14831,14832,14833,16711,16795,16884,16989,19761]]],["save",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1832]]],["surely",[7,7,[[4,1,1,0,1,[[168,1,1,0,1]]],[18,2,2,1,3,[[516,2,2,1,3]]],[19,1,1,3,4,[[649,1,1,3,4]]],[22,1,1,4,5,[[694,1,1,4,5]]],[23,1,1,5,6,[[746,1,1,5,6]]],[27,1,1,6,7,[[873,1,1,6,7]]]],[5357,14518,14523,17031,17976,19000,22263]]],["surety",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[701]]],["verily",[3,3,[[17,1,1,0,1,[[454,1,1,0,1]]],[18,2,2,1,3,[[516,1,1,1,2],[535,1,1,2,3]]]],[13310,14517,14790]]],["wise",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14458]]],["with",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19225]]],["yet",[6,6,[[0,2,2,0,2,[[17,1,1,0,1],[26,1,1,1,2]]],[8,1,1,2,3,[[247,1,1,2,3]]],[23,2,2,3,5,[[756,1,1,3,4],[774,1,1,4,5]]],[31,1,1,5,6,[[890,1,1,5,6]]]],[456,757,7480,19250,19678,22552]]]]},{"k":"H390","v":[["Accad",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[244]]]]},{"k":"H391","v":[["*",[2,2,[[23,1,1,0,1,[[759,1,1,0,1]]],[32,1,1,1,2,[[893,1,1,1,2]]]],[19333,22593]]],["liar",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19333]]],["lie",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22593]]]]},{"k":"H392","v":[["Achzib",[4,4,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]],[6,1,1,2,3,[[211,1,1,2,3]]],[32,1,1,3,4,[[893,1,1,3,4]]]],[6246,6350,6540,22593]]]]},{"k":"H393","v":[["*",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,2,2,1,3,[[465,1,1,1,2],[476,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]]],[5791,13578,13898,20423]]],["cruel",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[465,1,1,1,2]]],[24,1,1,2,3,[[800,1,1,2,3]]]],[5791,13578,20423]]],["fierce",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13898]]]]},{"k":"H394","v":[["cruel",[8,8,[[19,4,4,0,4,[[632,1,1,0,1],[638,1,1,1,2],[639,1,1,2,3],[644,1,1,3,4]]],[22,1,1,4,5,[[691,1,1,4,5]]],[23,3,3,5,8,[[750,1,1,5,6],[774,1,1,6,7],[794,1,1,7,8]]]],[16526,16705,16729,16884,17915,19112,19681,20208]]]]},{"k":"H395","v":[["cruel",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17173]]]]},{"k":"H396","v":[["meat",[1,1,[[10,1,1,0,1,[[309,1,1,0,1]]]],[9395]]]]},{"k":"H397","v":[["Achish",[21,20,[[8,19,18,0,18,[[256,4,4,0,4],[262,7,7,4,11],[263,3,2,11,13],[264,5,5,13,18]]],[10,2,2,18,20,[[292,2,2,18,20]]]],[7782,7783,7784,7786,7932,7933,7935,7936,7939,7940,7942,7943,7944,7969,7970,7973,7975,7976,8809,8810]]]]},{"k":"H398","v":[["*",[809,700,[[0,65,54,0,54,[[1,4,2,0,2],[2,17,13,2,15],[5,1,1,15,16],[8,1,1,16,17],[13,1,1,17,18],[17,1,1,18,19],[18,1,1,19,20],[23,3,2,20,22],[24,1,1,22,23],[25,1,1,23,24],[26,8,7,24,31],[27,1,1,31,32],[30,7,5,32,37],[31,1,1,37,38],[36,3,3,38,41],[38,1,1,41,42],[39,2,2,42,44],[40,2,2,44,46],[42,5,4,46,50],[44,1,1,50,51],[46,2,2,51,53],[48,1,1,53,54]]],[1,52,44,54,98,[[51,1,1,54,55],[52,1,1,55,56],[59,4,3,56,59],[61,18,14,59,73],[62,3,3,73,76],[64,1,1,76,77],[65,7,6,77,83],[67,1,1,83,84],[70,1,1,84,85],[71,2,2,85,87],[72,3,2,87,89],[73,2,2,89,91],[78,4,3,91,94],[81,1,1,94,95],[83,3,3,95,98]]],[2,104,81,98,179,[[92,1,1,98,99],[95,10,7,99,106],[96,19,12,106,118],[97,2,1,118,119],[98,1,1,119,120],[99,8,7,120,127],[100,16,14,127,141],[103,1,1,141,142],[106,8,5,142,147],[108,7,6,147,153],[110,1,1,153,154],[111,14,11,154,165],[112,2,2,165,167],[113,1,1,167,168],[114,6,5,168,173],[115,7,6,173,179]]],[3,27,24,179,203,[[122,2,2,179,181],[125,1,1,181,182],[127,9,7,182,189],[128,1,1,189,190],[129,1,1,190,191],[131,1,1,191,192],[132,1,1,192,193],[134,5,4,193,197],[137,1,1,197,198],[139,1,1,198,199],[140,1,1,199,200],[141,1,1,200,201],[142,1,1,201,202],[144,1,1,202,203]]],[4,80,71,203,274,[[154,2,2,203,205],[156,2,2,205,207],[157,1,1,207,208],[158,1,1,208,209],[159,1,1,209,210],[160,5,5,210,215],[161,3,3,215,218],[163,1,1,218,219],[164,18,12,219,231],[166,17,15,231,246],[167,3,3,246,249],[168,4,3,249,252],[170,2,2,252,254],[172,2,2,254,256],[175,1,1,256,257],[178,2,2,257,259],[179,1,1,259,260],[180,7,7,260,267],[181,1,1,267,268],[183,2,2,268,270],[184,4,4,270,274]]],[5,4,3,274,277,[[191,3,2,274,276],[210,1,1,276,277]]],[6,17,14,277,291,[[216,1,1,277,278],[219,4,3,278,281],[223,5,4,281,285],[224,3,2,285,287],[229,4,4,287,291]]],[7,4,3,291,294,[[233,2,1,291,292],[234,2,2,292,294]]],[8,30,24,294,318,[[236,4,4,294,298],[237,1,1,298,299],[244,6,3,299,302],[249,8,6,302,308],[255,3,3,308,311],[263,4,4,311,315],[265,4,3,315,318]]],[9,24,21,318,339,[[268,1,1,318,319],[275,5,4,319,323],[277,3,3,323,326],[278,3,3,326,329],[279,3,3,329,332],[282,1,1,332,333],[283,1,1,333,334],[284,2,1,334,335],[285,4,3,335,338],[288,1,1,338,339]]],[10,37,33,339,372,[[291,2,2,339,341],[292,1,1,341,342],[294,1,1,342,343],[303,11,10,343,353],[304,2,1,353,354],[306,2,1,354,355],[307,2,2,355,357],[308,4,4,357,361],[309,5,5,361,366],[311,6,5,366,371],[312,1,1,371,372]]],[11,33,24,372,396,[[313,5,3,372,375],[316,10,6,375,381],[318,6,4,381,385],[319,3,3,385,388],[321,3,3,388,391],[330,2,2,391,393],[331,2,1,393,394],[335,1,1,394,395],[337,1,1,395,396]]],[12,2,2,396,398,[[349,1,1,396,397],[366,1,1,397,398]]],[13,7,7,398,405,[[373,2,2,398,400],[384,1,1,400,401],[394,1,1,401,402],[396,2,2,402,404],[397,1,1,404,405]]],[14,4,4,405,409,[[404,1,1,405,406],[408,1,1,406,407],[411,1,1,407,408],[412,1,1,408,409]]],[15,9,9,409,418,[[414,2,2,409,411],[417,2,2,411,413],[419,1,1,413,414],[420,2,2,414,416],[421,2,2,416,418]]],[16,1,1,418,419,[[429,1,1,418,419]]],[17,21,19,419,438,[[436,4,4,419,423],[440,1,1,423,424],[441,1,1,424,425],[448,1,1,425,426],[450,1,1,426,427],[453,2,1,427,428],[455,1,1,428,429],[456,1,1,429,430],[457,1,1,430,431],[466,5,4,431,435],[469,1,1,435,436],[475,1,1,436,437],[477,1,1,437,438]]],[18,30,27,438,465,[[491,2,1,438,439],[495,1,1,439,440],[498,1,1,440,441],[499,2,2,441,443],[504,1,1,443,444],[518,1,1,444,445],[527,2,2,445,447],[530,2,1,447,448],[536,1,1,448,449],[546,1,1,449,450],[555,5,5,450,455],[556,1,1,455,456],[557,1,1,456,457],[558,1,1,457,458],[579,2,2,458,460],[582,2,1,460,461],[583,2,2,461,463],[604,1,1,463,464],[605,1,1,464,465]]],[19,15,15,465,480,[[628,1,1,465,466],[640,2,2,466,468],[645,1,1,468,469],[650,2,2,469,471],[651,1,1,471,472],[652,3,3,472,475],[654,1,1,475,476],[657,3,3,476,479],[658,1,1,479,480]]],[20,15,14,480,494,[[660,2,2,480,482],[661,1,1,482,483],[662,1,1,483,484],[663,5,5,484,489],[664,2,1,489,490],[666,1,1,490,491],[667,1,1,491,492],[668,2,2,492,494]]],[21,3,2,494,496,[[674,1,1,494,495],[675,2,1,495,496]]],[22,54,49,496,545,[[679,3,3,496,499],[681,1,1,499,500],[682,1,1,500,501],[683,2,2,501,503],[685,3,2,503,505],[687,4,3,505,508],[688,1,1,508,509],[689,1,1,509,510],[699,1,1,510,511],[700,2,1,511,512],[701,1,1,512,513],[702,1,1,513,514],[704,1,1,514,515],[707,2,2,515,517],[708,3,3,517,520],[709,1,1,520,521],[711,2,2,521,523],[714,2,2,523,525],[715,2,1,525,526],[722,2,2,526,528],[727,1,1,528,529],[728,1,1,529,530],[729,2,1,530,531],[733,3,3,531,534],[734,1,1,534,535],[736,1,1,535,536],[737,1,1,536,537],[739,1,1,537,538],[740,1,1,538,539],[743,5,5,539,544],[744,1,1,544,545]]],[23,44,38,545,583,[[746,3,3,545,548],[747,1,1,548,549],[749,5,2,549,551],[751,1,1,551,552],[752,1,1,552,553],[753,1,1,553,554],[754,2,1,554,555],[756,1,1,555,556],[759,2,2,556,558],[760,1,1,558,559],[761,1,1,559,560],[763,2,1,560,561],[765,1,1,561,562],[766,1,1,562,563],[767,1,1,563,564],[768,3,3,564,567],[773,3,3,567,570],[774,2,1,570,571],[775,2,2,571,573],[785,1,1,573,574],[790,2,2,574,576],[792,1,1,576,577],[793,1,1,577,578],[794,3,3,578,581],[795,1,1,581,582],[796,1,1,582,583]]],[24,4,4,583,587,[[798,2,2,583,585],[800,2,2,585,587]]],[25,55,51,587,638,[[803,1,1,587,588],[804,5,3,588,591],[805,7,6,591,597],[806,2,1,597,598],[808,1,1,598,599],[813,2,2,599,601],[816,3,3,601,604],[817,3,3,604,607],[819,4,4,607,611],[820,4,4,611,615],[821,1,1,615,616],[823,2,2,616,618],[824,1,1,618,619],[825,2,2,619,621],[826,1,1,621,622],[829,1,1,622,623],[834,2,2,623,625],[835,2,2,625,627],[837,2,2,627,629],[840,3,3,629,632],[843,1,1,632,633],[844,1,1,633,634],[845,3,3,634,637],[846,1,1,637,638]]],[26,5,5,638,643,[[850,3,3,638,641],[859,1,1,641,642],[860,1,1,642,643]]],[27,14,14,643,657,[[863,1,1,643,644],[865,2,2,644,646],[866,1,1,646,647],[868,2,2,647,649],[869,2,2,649,651],[870,2,2,651,653],[871,1,1,653,654],[872,2,2,654,656],[874,1,1,656,657]]],[28,10,7,657,664,[[876,5,3,657,660],[877,5,4,660,664]]],[29,15,14,664,678,[[879,5,5,664,669],[880,2,2,669,671],[882,1,1,671,672],[883,1,1,672,673],[884,1,1,673,674],[885,4,3,674,677],[887,1,1,677,678]]],[30,1,1,678,679,[[888,1,1,678,679]]],[32,3,3,679,682,[[895,1,1,679,680],[898,1,1,680,681],[899,1,1,681,682]]],[33,6,5,682,687,[[900,1,1,682,683],[901,1,1,683,684],[902,4,3,684,687]]],[34,2,2,687,689,[[903,1,1,687,688],[905,1,1,688,689]]],[35,2,2,689,691,[[906,1,1,689,690],[908,1,1,690,691]]],[36,1,1,691,692,[[909,1,1,691,692]]],[37,8,7,692,699,[[917,2,1,692,693],[919,2,2,693,695],[921,3,3,695,698],[922,1,1,698,699]]],[38,1,1,699,700,[[927,1,1,699,700]]]],[46,47,56,57,58,60,61,66,67,68,69,72,73,74,77,158,209,360,432,460,624,645,692,722,731,734,737,746,752,758,760,793,888,911,913,919,927,960,1103,1108,1116,1155,1189,1191,1199,1215,1292,1306,1315,1322,1376,1442,1444,1500,1574,1581,1782,1789,1792,1823,1824,1825,1827,1831,1832,1834,1835,1836,1859,1860,1861,1862,1864,1870,1873,1874,1927,1950,1955,1959,1972,1979,1982,2011,2105,2119,2144,2155,2159,2188,2194,2368,2369,2370,2444,2511,2514,2524,2795,2859,2865,2867,2872,2875,2878,2879,2885,2894,2895,2897,2898,2899,2900,2902,2903,2904,2905,2906,2948,2977,2979,2989,2990,2991,2994,2995,2996,2999,3000,3001,3005,3006,3008,3010,3018,3019,3031,3037,3038,3039,3044,3158,3245,3247,3248,3249,3250,3287,3288,3289,3304,3306,3307,3367,3373,3375,3376,3377,3379,3380,3381,3382,3383,3385,3399,3408,3416,3455,3476,3481,3488,3489,3491,3529,3534,3540,3550,3553,3562,3826,3827,3976,4025,4028,4029,4037,4042,4043,4045,4071,4107,4172,4229,4267,4268,4270,4288,4368,4440,4454,4473,4499,4594,4944,4966,5028,5032,5078,5097,5127,5140,5146,5147,5149,5153,5160,5166,5175,5223,5247,5255,5256,5257,5258,5260,5261,5262,5263,5264,5265,5267,5293,5294,5296,5297,5298,5299,5300,5301,5302,5309,5310,5311,5313,5316,5319,5339,5341,5342,5345,5349,5350,5385,5392,5441,5446,5524,5578,5580,5592,5642,5644,5650,5662,5664,5666,5668,5685,5745,5748,5771,5780,5796,5800,5945,5946,6489,6675,6769,6774,6781,6888,6891,6898,6900,6918,6923,7028,7030,7032,7045,7163,7175,7179,7219,7220,7221,7230,7276,7404,7410,7415,7532,7536,7538,7540,7541,7542,7735,7754,7764,7962,7964,7965,7967,7989,7990,7994,8075,8234,8237,8238,8240,8270,8272,8284,8289,8306,8307,8322,8326,8328,8428,8478,8486,8539,8546,8553,8611,8742,8758,8777,8864,9192,9193,9199,9200,9201,9202,9203,9206,9207,9212,9229,9287,9329,9332,9360,9379,9382,9383,9392,9393,9394,9395,9408,9455,9456,9458,9474,9475,9507,9543,9545,9547,9611,9643,9644,9645,9646,9647,9696,9697,9702,9703,9709,9715,9726,9766,9790,9792,10051,10055,10090,10174,10251,10759,11186,11325,11337,11568,11779,11845,11849,11864,12090,12172,12249,12258,12310,12320,12384,12396,12485,12503,12505,12536,12547,12778,12873,12882,12885,12887,12956,12984,13181,13237,13289,13352,13380,13409,13596,13600,13605,13627,13686,13879,13933,14084,14126,14200,14230,14233,14287,14551,14671,14681,14723,14805,14944,15137,15138,15142,15158,15176,15192,15203,15233,15525,15530,15641,15671,15679,16123,16128,16431,16749,16772,16922,17051,17052,17092,17129,17134,17140,17187,17265,17268,17271,17311,17357,17358,17372,17386,17408,17409,17414,17415,17416,17419,17473,17482,17509,17510,17598,17599,17661,17673,17674,17717,17734,17756,17763,17797,17804,17841,17847,17849,17867,17891,18040,18065,18095,18101,18141,18199,18201,18241,18244,18247,18258,18290,18293,18342,18346,18382,18549,18552,18662,18671,18681,18741,18742,18750,18762,18800,18805,18849,18863,18901,18910,18918,18919,18922,18939,18968,18972,18995,19026,19072,19075,19140,19169,19190,19226,19261,19318,19331,19344,19384,19416,19454,19469,19499,19526,19527,19532,19640,19652,19663,19683,19720,19721,19958,20055,20059,20125,20154,20173,20183,20198,20246,20309,20335,20352,20425,20431,20500,20503,20504,20505,20538,20539,20541,20542,20543,20545,20556,20592,20698,20699,20758,20759,20761,20775,20781,20782,20851,20855,20860,20864,20884,20887,20893,20895,20942,20985,21001,21032,21073,21078,21087,21175,21305,21307,21316,21341,21372,21373,21465,21466,21467,21565,21580,21602,21628,21630,21651,21749,21750,21752,22018,22062,22117,22141,22143,22159,22185,22187,22207,22208,22211,22212,22238,22244,22246,22274,22295,22310,22311,22314,22316,22336,22337,22368,22371,22374,22376,22378,22381,22384,22419,22429,22454,22466,22468,22476,22509,22528,22611,22662,22665,22694,22712,22724,22725,22727,22739,22782,22805,22828,22846,22968,23003,23014,23029,23037,23044,23051,23131]]],["+",[85,72,[[0,11,9,0,9,[[1,2,1,0,1],[2,1,1,1,2],[30,2,1,2,3],[39,1,1,3,4],[40,2,2,4,6],[42,1,1,6,7],[44,1,1,7,8],[46,1,1,8,9]]],[1,9,7,9,16,[[59,4,3,9,12],[61,1,1,12,13],[62,1,1,13,14],[65,2,1,14,15],[78,1,1,15,16]]],[2,15,11,16,27,[[96,4,2,16,18],[99,3,2,18,20],[100,1,1,20,21],[106,1,1,21,22],[108,3,2,22,24],[111,1,1,24,25],[114,1,1,25,26],[115,1,1,26,27]]],[4,3,3,27,30,[[159,1,1,27,28],[167,1,1,28,29],[172,1,1,29,30]]],[6,5,4,30,34,[[216,1,1,30,31],[219,3,2,31,33],[224,1,1,33,34]]],[8,2,1,34,35,[[249,2,1,34,35]]],[9,2,1,35,36,[[285,2,1,35,36]]],[10,3,3,36,39,[[303,1,1,36,37],[308,1,1,37,38],[311,1,1,38,39]]],[11,3,3,39,42,[[313,1,1,39,40],[321,1,1,40,41],[330,1,1,41,42]]],[13,1,1,42,43,[[396,1,1,42,43]]],[14,1,1,43,44,[[411,1,1,43,44]]],[15,1,1,44,45,[[421,1,1,44,45]]],[18,3,3,45,48,[[504,1,1,45,46],[556,1,1,46,47],[579,1,1,47,48]]],[20,3,3,48,51,[[660,1,1,48,49],[661,1,1,49,50],[662,1,1,50,51]]],[22,3,3,51,54,[[687,1,1,51,52],[714,1,1,52,53],[727,1,1,53,54]]],[23,5,5,54,59,[[747,1,1,54,55],[754,1,1,55,56],[763,1,1,56,57],[773,2,2,57,59]]],[25,5,5,59,64,[[803,1,1,59,60],[804,2,2,60,62],[816,1,1,62,63],[835,1,1,63,64]]],[26,2,2,64,66,[[850,2,2,64,66]]],[27,1,1,66,67,[[868,1,1,66,67]]],[28,2,1,67,68,[[877,2,1,67,68]]],[29,4,3,68,71,[[885,3,2,68,70],[887,1,1,70,71]]],[37,1,1,71,72,[[922,1,1,71,72]]]],[46,73,888,1191,1199,1215,1292,1376,1442,1782,1789,1792,1824,1874,1982,2368,2897,2903,2994,2995,3019,3245,3288,3306,3385,3481,3562,5127,5342,5441,6675,6769,6774,6923,7538,8553,9212,9379,9474,9547,9792,10051,11845,12249,12547,14287,15192,15525,17357,17372,17386,17841,18342,18662,19026,19226,19416,19640,19663,20500,20503,20504,20758,21316,21750,21752,22185,22337,22466,22468,22509,23051]]],["Eat",[5,5,[[1,2,2,0,2,[[61,1,1,0,1],[65,1,1,1,2]]],[10,2,2,2,4,[[303,2,2,2,4]]],[19,1,1,4,5,[[650,1,1,4,5]]]],[1825,1972,9193,9206,17051]]],["ate",[2,2,[[18,1,1,0,1,[[583,1,1,0,1]]],[26,1,1,1,2,[[859,1,1,1,2]]]],[15679,22018]]],["consume",[7,7,[[4,2,2,0,2,[[157,1,1,0,1],[184,1,1,1,2]]],[11,2,2,2,4,[[313,2,2,2,4]]],[17,2,2,4,6,[[450,1,1,4,5],[455,1,1,5,6]]],[23,1,1,6,7,[[793,1,1,6,7]]]],[5078,5780,9543,9545,13237,13352,20154]]],["consumed",[19,19,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,3,3,1,4,[[52,1,1,1,2],[64,1,1,2,3],[71,1,1,3,4]]],[2,2,2,4,6,[[95,1,1,4,5],[98,1,1,5,6]]],[3,4,4,6,10,[[127,1,1,6,7],[128,1,1,7,8],[132,1,1,8,9],[137,1,1,9,10]]],[11,2,2,10,12,[[313,2,2,10,12]]],[13,1,1,12,13,[[373,1,1,12,13]]],[15,2,2,13,15,[[414,2,2,13,15]]],[17,1,1,15,16,[[436,1,1,15,16]]],[18,1,1,16,17,[[555,1,1,16,17]]],[25,2,2,17,19,[[820,1,1,17,18],[844,1,1,18,19]]]],[913,1581,1927,2119,2859,2977,4025,4071,4229,4368,9543,9545,11325,12310,12320,12885,15176,20893,21580]]],["consumeth",[2,2,[[17,2,2,0,2,[[457,1,1,0,1],[466,1,1,1,2]]]],[13409,13600]]],["consuming",[2,2,[[4,2,2,0,2,[[156,1,1,0,1],[161,1,1,1,2]]]],[5028,5160]]],["devour",[52,51,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[9,1,1,2,3,[[268,1,1,2,3]]],[13,1,1,3,4,[[373,1,1,3,4]]],[17,2,1,4,5,[[453,2,1,4,5]]],[18,2,2,5,7,[[498,1,1,5,6],[527,1,1,6,7]]],[19,1,1,7,8,[[657,1,1,7,8]]],[22,7,7,8,15,[[679,1,1,8,9],[687,1,1,9,10],[688,1,1,10,11],[704,1,1,11,12],[709,1,1,12,13],[711,1,1,13,14],[734,1,1,14,15]]],[23,11,11,15,26,[[746,1,1,15,16],[749,1,1,16,17],[756,1,1,17,18],[759,1,1,18,19],[761,1,1,19,20],[765,1,1,20,21],[774,1,1,21,22],[790,2,2,22,24],[792,1,1,24,25],[794,1,1,25,26]]],[25,6,6,26,32,[[808,1,1,26,27],[816,1,1,27,28],[821,1,1,28,29],[829,1,1,29,30],[835,1,1,30,31],[837,1,1,31,32]]],[27,4,4,32,36,[[866,1,1,32,33],[869,1,1,33,34],[872,1,1,34,35],[874,1,1,35,36]]],[29,8,8,36,44,[[879,5,5,36,41],[880,2,2,41,43],[883,1,1,43,44]]],[30,1,1,44,45,[[888,1,1,44,45]]],[33,3,3,45,48,[[901,1,1,45,46],[902,2,2,46,48]]],[34,1,1,48,49,[[905,1,1,48,49]]],[37,2,2,49,51,[[919,1,1,49,50],[921,1,1,50,51]]]],[1500,5800,8075,11337,13289,14200,14671,17265,17661,17847,17867,18141,18258,18290,18762,18968,19072,19261,19318,19384,19454,19683,20055,20059,20125,20198,20592,20761,20942,21175,21341,21373,22159,22208,22246,22274,22368,22371,22374,22376,22378,22381,22384,22429,22528,22712,22725,22727,22782,23014,23029]]],["devoured",[37,36,[[0,2,2,0,2,[[36,2,2,0,2]]],[2,1,1,2,3,[[99,1,1,2,3]]],[3,1,1,3,4,[[142,1,1,3,4]]],[4,1,1,4,5,[[183,1,1,4,5]]],[9,3,2,5,7,[[284,2,1,5,6],[288,1,1,6,7]]],[18,3,3,7,10,[[495,1,1,7,8],[555,1,1,8,9],[582,1,1,9,10]]],[22,2,2,10,12,[[679,1,1,10,11],[702,1,1,11,12]]],[23,7,7,12,19,[[746,1,1,12,13],[752,1,1,13,14],[754,1,1,14,15],[774,1,1,15,16],[794,2,2,16,18],[795,1,1,18,19]]],[24,1,1,19,20,[[800,1,1,19,20]]],[25,8,8,20,28,[[816,1,1,20,21],[817,1,1,21,22],[820,3,3,22,25],[823,1,1,25,26],[824,1,1,26,27],[834,1,1,27,28]]],[27,1,1,28,29,[[868,1,1,28,29]]],[28,2,2,29,31,[[876,2,2,29,31]]],[29,1,1,31,32,[[882,1,1,31,32]]],[33,1,1,32,33,[[900,1,1,32,33]]],[35,2,2,33,35,[[906,1,1,33,34],[908,1,1,34,35]]],[37,1,1,35,36,[[919,1,1,35,36]]]],[1103,1116,2979,4499,5745,8486,8611,14126,15158,15641,17674,18101,18995,19169,19226,19683,20173,20183,20246,20431,20759,20782,20884,20887,20895,21001,21032,21307,22187,22310,22311,22419,22694,22805,22828,23003]]],["devourer",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23131]]],["devoureth",[5,5,[[9,1,1,0,1,[[277,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]],[28,2,2,3,5,[[877,2,2,3,5]]]],[8284,17763,20335,22314,22316]]],["devouring",[5,5,[[1,1,1,0,1,[[73,1,1,0,1]]],[22,4,4,1,5,[[707,1,1,1,2],[708,2,2,2,4],[711,1,1,4,5]]]],[2194,18199,18244,18247,18293]]],["dine",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1306]]],["eat",[434,382,[[0,41,35,0,35,[[1,1,1,0,1],[2,14,12,1,13],[8,1,1,13,14],[17,1,1,14,15],[18,1,1,15,16],[23,3,2,16,18],[24,1,1,18,19],[25,1,1,19,20],[26,7,6,20,26],[27,1,1,26,27],[30,3,2,27,29],[31,1,1,29,30],[36,1,1,30,31],[38,1,1,31,32],[39,1,1,32,33],[42,3,2,33,35]]],[1,30,26,35,61,[[51,1,1,35,36],[61,13,11,36,47],[62,1,1,47,48],[65,3,3,48,51],[67,1,1,51,52],[71,1,1,52,53],[72,3,2,53,55],[73,1,1,55,56],[78,2,1,56,57],[81,1,1,57,58],[83,3,3,58,61]]],[2,55,46,61,107,[[92,1,1,61,62],[95,5,4,62,66],[96,5,5,66,71],[97,2,1,71,72],[99,3,3,72,75],[100,9,8,75,83],[106,3,2,83,85],[108,1,1,85,86],[110,1,1,86,87],[111,12,9,87,96],[112,2,2,96,98],[113,1,1,98,99],[114,4,3,99,102],[115,6,5,102,107]]],[3,19,16,107,123,[[122,2,2,107,109],[125,1,1,109,110],[127,8,6,110,116],[131,1,1,116,117],[134,5,4,117,121],[139,1,1,121,122],[141,1,1,122,123]]],[4,60,52,123,175,[[154,2,2,123,125],[156,1,1,125,126],[160,1,1,126,127],[161,2,2,127,129],[163,1,1,129,130],[164,17,12,130,142],[166,16,14,142,156],[167,2,2,156,158],[168,4,3,158,161],[170,2,2,161,163],[172,1,1,163,164],[175,1,1,164,165],[178,1,1,165,166],[179,1,1,166,167],[180,6,6,167,173],[184,2,2,173,175]]],[5,3,3,175,178,[[191,2,2,175,177],[210,1,1,177,178]]],[6,11,10,178,188,[[219,1,1,178,179],[223,5,4,179,183],[224,1,1,183,184],[229,4,4,184,188]]],[7,2,1,188,189,[[233,2,1,188,189]]],[8,18,15,189,204,[[236,2,2,189,191],[237,1,1,191,192],[244,6,3,192,195],[249,3,3,195,198],[255,2,2,198,200],[263,3,3,200,203],[265,1,1,203,204]]],[9,17,16,204,220,[[275,5,4,204,208],[277,2,2,208,210],[278,3,3,210,213],[279,3,3,213,216],[282,1,1,216,217],[283,1,1,217,218],[285,2,2,218,220]]],[10,26,23,220,243,[[291,1,1,220,221],[292,1,1,221,222],[303,6,6,222,228],[304,2,1,228,229],[306,2,1,229,230],[307,2,2,230,232],[308,3,3,232,235],[309,5,5,235,240],[311,4,3,240,243]]],[11,24,18,243,261,[[316,9,6,243,249],[318,5,3,249,252],[319,3,3,252,255],[321,2,2,255,257],[330,1,1,257,258],[331,2,1,258,259],[335,1,1,259,260],[337,1,1,260,261]]],[12,1,1,261,262,[[366,1,1,261,262]]],[13,3,3,262,265,[[394,1,1,262,263],[396,1,1,263,264],[397,1,1,264,265]]],[14,3,3,265,268,[[404,1,1,265,266],[408,1,1,266,267],[412,1,1,267,268]]],[15,5,5,268,273,[[417,1,1,268,269],[419,1,1,269,270],[420,2,2,270,272],[421,1,1,272,273]]],[16,1,1,273,274,[[429,1,1,273,274]]],[17,3,3,274,277,[[436,1,1,274,275],[466,1,1,275,276],[477,1,1,276,277]]],[18,11,11,277,288,[[491,1,1,277,278],[499,2,2,278,280],[518,1,1,280,281],[527,1,1,281,282],[530,1,1,282,283],[555,3,3,283,286],[604,1,1,286,287],[605,1,1,287,288]]],[19,9,9,288,297,[[628,1,1,288,289],[640,1,1,289,290],[645,1,1,290,291],[651,1,1,291,292],[652,3,3,292,295],[654,1,1,295,296],[657,1,1,296,297]]],[20,10,10,297,307,[[660,1,1,297,298],[663,4,4,298,302],[664,1,1,302,303],[666,1,1,303,304],[667,1,1,304,305],[668,2,2,305,307]]],[21,2,2,307,309,[[674,1,1,307,308],[675,1,1,308,309]]],[22,27,24,309,333,[[679,1,1,309,310],[681,1,1,310,311],[682,1,1,311,312],[683,1,1,312,313],[685,3,2,313,315],[687,2,1,315,316],[689,1,1,316,317],[699,1,1,317,318],[700,1,1,318,319],[701,1,1,319,320],[708,1,1,320,321],[714,1,1,321,322],[715,2,1,322,323],[729,1,1,323,324],[733,2,2,324,326],[739,1,1,326,327],[740,1,1,327,328],[743,5,5,328,333]]],[23,9,9,333,342,[[746,1,1,333,334],[749,1,1,334,335],[751,1,1,335,336],[759,1,1,336,337],[760,1,1,337,338],[763,1,1,338,339],[766,1,1,339,340],[785,1,1,340,341],[796,1,1,341,342]]],[24,1,1,342,343,[[798,1,1,342,343]]],[25,26,23,343,366,[[804,3,2,343,345],[805,6,5,345,350],[806,2,1,350,351],[813,2,2,351,353],[817,1,1,353,354],[823,1,1,354,355],[825,2,2,355,357],[826,1,1,357,358],[834,1,1,358,359],[840,3,3,359,362],[843,1,1,362,363],[845,3,3,363,366]]],[26,1,1,366,367,[[850,1,1,366,367]]],[27,5,5,367,372,[[863,1,1,367,368],[865,1,1,368,369],[869,1,1,369,370],[870,2,2,370,372]]],[29,2,2,372,374,[[884,1,1,372,373],[885,1,1,373,374]]],[32,3,3,374,377,[[895,1,1,374,375],[898,1,1,375,376],[899,1,1,376,377]]],[34,1,1,377,378,[[903,1,1,377,378]]],[36,1,1,378,379,[[909,1,1,378,379]]],[37,4,3,379,382,[[917,2,1,379,380],[921,2,2,380,382]]]],[47,56,57,58,60,61,66,67,68,69,72,74,77,209,432,460,624,645,692,722,731,734,737,746,752,758,793,919,927,960,1108,1155,1189,1315,1322,1574,1823,1824,1827,1831,1832,1834,1836,1859,1860,1861,1864,1873,1950,1955,1959,2011,2144,2155,2159,2188,2369,2444,2511,2514,2524,2795,2865,2867,2875,2878,2885,2898,2900,2902,2905,2948,2989,2990,2991,2999,3000,3001,3005,3006,3008,3018,3039,3247,3249,3307,3367,3373,3375,3376,3377,3379,3380,3381,3382,3383,3408,3416,3455,3488,3489,3491,3529,3534,3540,3550,3553,3826,3827,3976,4028,4029,4037,4042,4043,4045,4172,4267,4268,4270,4288,4440,4473,4944,4966,5032,5146,5166,5175,5223,5247,5255,5256,5257,5258,5260,5261,5262,5263,5264,5265,5267,5293,5294,5296,5297,5298,5299,5300,5301,5302,5310,5311,5313,5316,5319,5339,5341,5345,5349,5350,5385,5392,5446,5524,5578,5592,5642,5650,5662,5664,5666,5668,5771,5796,5945,5946,6489,6781,6888,6891,6898,6900,6918,7028,7030,7032,7045,7163,7219,7230,7276,7404,7410,7415,7540,7541,7542,7754,7764,7964,7965,7967,7989,8234,8237,8238,8240,8270,8272,8289,8306,8307,8322,8326,8328,8428,8478,8539,8546,8742,8777,9192,9199,9200,9201,9202,9203,9229,9287,9329,9332,9360,9382,9383,9392,9393,9394,9395,9408,9455,9458,9475,9611,9643,9644,9645,9646,9647,9696,9702,9703,9709,9715,9726,9766,9790,10055,10090,10174,10251,11186,11779,11849,11864,12090,12172,12258,12384,12485,12503,12505,12536,12778,12873,13596,13933,14084,14230,14233,14551,14681,14723,15137,15138,15142,16123,16128,16431,16749,16922,17092,17129,17134,17140,17187,17268,17358,17408,17409,17415,17416,17419,17473,17482,17509,17510,17598,17599,17673,17717,17734,17756,17797,17804,17849,17891,18040,18065,18095,18241,18346,18382,18681,18741,18742,18849,18863,18901,18910,18918,18919,18922,18972,19075,19140,19331,19344,19416,19469,19958,20309,20352,20503,20505,20538,20539,20541,20542,20545,20556,20698,20699,20775,20985,21073,21078,21087,21305,21465,21466,21467,21565,21602,21628,21630,21749,22117,22143,22207,22211,22212,22454,22476,22611,22662,22665,22739,22846,22968,23037,23044]]],["eaten",[72,66,[[0,6,6,0,6,[[2,2,2,0,2],[5,1,1,2,3],[13,1,1,3,4],[26,1,1,4,5],[30,1,1,5,6]]],[1,4,4,6,10,[[61,1,1,6,7],[62,1,1,7,8],[70,1,1,8,9],[78,1,1,9,10]]],[2,18,16,10,26,[[95,4,4,10,14],[96,5,4,14,18],[99,1,1,18,19],[100,5,4,19,23],[106,1,1,23,24],[108,2,2,24,26]]],[3,1,1,26,27,[[144,1,1,26,27]]],[4,8,8,27,35,[[158,1,1,27,28],[160,2,2,28,30],[164,1,1,30,31],[166,1,1,31,32],[178,1,1,32,33],[181,1,1,33,34],[183,1,1,34,35]]],[5,1,1,35,36,[[191,1,1,35,36]]],[7,1,1,36,37,[[234,1,1,36,37]]],[8,4,3,37,40,[[236,1,1,37,38],[263,1,1,38,39],[265,2,1,39,40]]],[10,2,2,40,42,[[303,2,2,40,42]]],[11,1,1,42,43,[[318,1,1,42,43]]],[15,1,1,43,44,[[417,1,1,43,44]]],[17,5,4,44,48,[[441,1,1,44,45],[448,1,1,45,46],[466,3,2,46,48]]],[18,1,1,48,49,[[579,1,1,48,49]]],[19,1,1,49,50,[[650,1,1,49,50]]],[21,1,1,50,51,[[675,1,1,50,51]]],[22,1,1,51,52,[[722,1,1,51,52]]],[23,5,5,52,57,[[768,3,3,52,55],[773,1,1,55,56],[775,1,1,56,57]]],[25,6,6,57,63,[[805,1,1,57,58],[819,4,4,58,62],[846,1,1,62,63]]],[27,1,1,63,64,[[871,1,1,63,64]]],[28,4,2,64,66,[[876,3,1,64,65],[877,1,1,65,66]]]],[66,72,158,360,760,911,1862,1870,2105,2370,2865,2872,2875,2879,2885,2894,2895,2898,2996,3010,3031,3038,3044,3248,3287,3304,4594,5097,5147,5149,5262,5309,5580,5685,5748,5946,7179,7221,7962,7990,9206,9207,9697,12396,12984,13181,13605,13627,15530,17052,17599,18552,19526,19527,19532,19652,19720,20543,20851,20855,20860,20864,21651,22238,22295,22336]]],["eater",[2,2,[[22,1,1,0,1,[[733,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[18750,22724]]],["eatest",[3,3,[[0,1,1,0,1,[[1,1,1,0,1]]],[8,1,1,1,2,[[236,1,1,1,2]]],[10,1,1,2,3,[[311,1,1,2,3]]]],[47,7220,9456]]],["eateth",[27,26,[[1,2,2,0,2,[[61,2,2,0,2]]],[2,11,10,2,12,[[96,5,4,2,6],[100,1,1,6,7],[103,1,1,7,8],[106,3,3,8,11],[108,1,1,11,12]]],[8,2,2,12,14,[[249,2,2,12,14]]],[17,2,2,14,16,[[456,1,1,14,15],[475,1,1,15,16]]],[18,1,1,16,17,[[583,1,1,16,17]]],[19,3,3,17,20,[[640,1,1,17,18],[657,1,1,18,19],[658,1,1,19,20]]],[20,2,2,20,22,[[663,1,1,20,21],[664,1,1,21,22]]],[22,3,3,22,25,[[707,1,1,22,23],[722,1,1,23,24],[737,1,1,24,25]]],[23,1,1,25,26,[[775,1,1,25,26]]]],[1831,1835,2897,2899,2904,2906,3037,3158,3245,3249,3250,3289,7532,7536,13380,13879,15671,16772,17271,17311,17414,17419,18201,18549,18805,19721]]],["eating",[12,12,[[6,1,1,0,1,[[224,1,1,0,1]]],[7,1,1,1,2,[[234,1,1,1,2]]],[8,2,2,2,4,[[249,1,1,2,3],[265,1,1,3,4]]],[10,2,2,4,6,[[291,1,1,4,5],[294,1,1,5,6]]],[11,1,1,6,7,[[316,1,1,6,7]]],[12,1,1,7,8,[[349,1,1,7,8]]],[17,2,2,8,10,[[436,2,2,8,10]]],[22,2,2,10,12,[[700,1,1,10,11],[744,1,1,11,12]]]],[6918,7175,7542,7994,8758,8864,9643,10759,12882,12887,18065,18939]]],["fed",[5,5,[[1,1,1,0,1,[[65,1,1,0,1]]],[4,2,2,1,3,[[160,2,2,1,3]]],[18,1,1,3,4,[[558,1,1,3,4]]],[25,1,1,4,5,[[817,1,1,4,5]]]],[1979,5140,5153,15233,20781]]],["feed",[7,7,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]],[22,1,1,2,3,[[736,1,1,2,3]]],[23,2,2,3,5,[[753,1,1,3,4],[767,1,1,4,5]]],[24,1,1,5,6,[[800,1,1,5,6]]],[26,1,1,6,7,[[860,1,1,6,7]]]],[9507,11568,18800,19190,19499,20425,22062]]],["feedest",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15203]]],["food",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1444]]],["meat",[5,5,[[2,1,1,0,1,[[114,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[17,1,1,2,3,[[469,1,1,2,3]]],[18,1,1,3,4,[[536,1,1,3,4]]],[27,1,1,4,5,[[872,1,1,4,5]]]],[3476,7735,13686,14805,22244]]],["up",[17,15,[[2,1,1,0,1,[[111,1,1,0,1]]],[3,2,2,1,3,[[129,1,1,1,2],[140,1,1,2,3]]],[4,1,1,3,4,[[180,1,1,3,4]]],[17,1,1,4,5,[[440,1,1,4,5]]],[18,4,4,5,9,[[491,1,1,5,6],[530,1,1,6,7],[546,1,1,7,8],[582,1,1,8,9]]],[22,2,2,9,11,[[728,1,1,9,10],[729,1,1,10,11]]],[23,3,1,11,12,[[749,3,1,11,12]]],[25,1,1,12,13,[[837,1,1,12,13]]],[27,1,1,13,14,[[865,1,1,13,14]]],[33,1,1,14,15,[[902,1,1,14,15]]]],[3399,4107,4454,5644,12956,14084,14723,14944,15641,18671,18681,19075,21372,22141,22727]]]]},{"k":"H399","v":[["*",[7,7,[[26,7,7,0,7,[[852,1,1,0,1],[853,1,1,1,2],[855,1,1,2,3],[856,4,4,3,7]]]],[21815,21870,21929,21938,21940,21952,21956]]],["+",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[855,1,1,1,2]]]],[21815,21929]]],["devour",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21938,21956]]],["devoured",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21940,21952]]],["eat",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21870]]]]},{"k":"H400","v":[["*",[44,41,[[0,16,13,0,13,[[13,1,1,0,1],[40,6,3,1,4],[41,2,2,4,6],[42,4,4,6,10],[43,2,2,10,12],[46,1,1,12,13]]],[1,4,4,13,17,[[61,1,1,13,14],[65,3,3,14,17]]],[2,2,2,17,19,[[100,1,1,17,18],[114,1,1,18,19]]],[4,3,3,19,22,[[154,2,2,19,21],[175,1,1,21,22]]],[7,1,1,22,23,[[233,1,1,22,23]]],[17,6,6,23,29,[[444,1,1,23,24],[447,1,1,24,25],[455,1,1,25,26],[471,1,1,26,27],[473,1,1,27,28],[474,1,1,28,29]]],[18,6,6,29,35,[[555,2,2,29,31],[581,2,2,31,33],[584,1,1,33,34],[622,1,1,34,35]]],[19,1,1,35,36,[[640,1,1,35,36]]],[24,2,2,36,38,[[797,2,2,36,38]]],[28,1,1,38,39,[[876,1,1,38,39]]],[34,1,1,39,40,[[905,1,1,39,40]]],[38,1,1,40,41,[[925,1,1,40,41]]]],[347,1230,1231,1243,1259,1262,1292,1294,1310,1312,1325,1349,1444,1820,1963,1965,1968,3031,3506,4944,4966,5519,7163,13077,13139,13347,13767,13834,13863,15131,15143,15592,15598,15717,16335,16770,20321,20329,22307,22785,23101]]],["+",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7163]]],["eating",[4,4,[[1,4,4,0,4,[[61,1,1,0,1],[65,3,3,1,4]]]],[1820,1963,1965,1968]]],["food",[16,13,[[0,15,12,0,12,[[40,6,3,0,3],[41,2,2,3,5],[42,4,4,5,9],[43,2,2,9,11],[46,1,1,11,12]]],[19,1,1,12,13,[[640,1,1,12,13]]]],[1230,1231,1243,1259,1262,1292,1294,1310,1312,1325,1349,1444,16770]]],["meat",[18,18,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,2,2,1,3,[[154,2,2,1,3]]],[17,4,4,3,7,[[447,1,1,3,4],[455,1,1,4,5],[471,1,1,5,6],[473,1,1,6,7]]],[18,6,6,7,13,[[555,2,2,7,9],[581,2,2,9,11],[584,1,1,11,12],[622,1,1,12,13]]],[24,2,2,13,15,[[797,2,2,13,15]]],[28,1,1,15,16,[[876,1,1,15,16]]],[34,1,1,16,17,[[905,1,1,16,17]]],[38,1,1,17,18,[[925,1,1,17,18]]]],[3031,4944,4966,13139,13347,13767,13834,15131,15143,15592,15598,15717,16335,20321,20329,22307,22785,23101]]],["prey",[2,2,[[17,2,2,0,2,[[444,1,1,0,1],[474,1,1,1,2]]]],[13077,13863]]],["victuals",[3,3,[[0,1,1,0,1,[[13,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[4,1,1,2,3,[[175,1,1,2,3]]]],[347,3506,5519]]]]},{"k":"H401","v":[["Ucal",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17252]]]]},{"k":"H402","v":[["*",[18,18,[[0,4,4,0,4,[[0,2,2,0,2],[5,1,1,2,3],[8,1,1,3,4]]],[1,1,1,4,5,[[65,1,1,4,5]]],[2,2,2,5,7,[[100,1,1,5,6],[114,1,1,6,7]]],[23,1,1,7,8,[[756,1,1,7,8]]],[25,10,10,8,18,[[816,2,2,8,10],[822,1,1,10,11],[824,1,1,11,12],[830,1,1,12,13],[835,3,3,13,16],[836,1,1,16,17],[840,1,1,17,18]]]],[28,29,158,208,1962,3036,3475,19258,20758,20760,20976,21044,21188,21318,21321,21323,21356,21452]]],["consume",[1,1,[[25,1,1,0,1,[[836,1,1,0,1]]]],[21356]]],["devour",[2,2,[[23,1,1,0,1,[[756,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[19258,21044]]],["devoured",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21452]]],["eat",[2,2,[[1,1,1,0,1,[[65,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]]],[1962,3036]]],["food",[1,1,[[0,1,1,0,1,[[5,1,1,0,1]]]],[158]]],["fuel",[3,3,[[25,3,3,0,3,[[816,2,2,0,2],[822,1,1,2,3]]]],[20758,20760,20976]]],["meat",[8,8,[[0,3,3,0,3,[[0,2,2,0,2],[8,1,1,2,3]]],[2,1,1,3,4,[[114,1,1,3,4]]],[25,4,4,4,8,[[830,1,1,4,5],[835,3,3,5,8]]]],[28,29,208,3475,21188,21318,21321,21323]]]]},{"k":"H403","v":[["*",[18,17,[[0,1,1,0,1,[[27,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]],[8,1,1,2,3,[[250,1,1,2,3]]],[10,1,1,3,4,[[301,1,1,3,4]]],[17,1,1,4,5,[[467,1,1,4,5]]],[18,3,3,5,8,[[508,1,1,5,6],[543,1,1,6,7],[559,1,1,7,8]]],[22,4,4,8,12,[[718,1,1,8,9],[723,1,1,9,10],[727,1,1,10,11],[731,1,1,11,12]]],[23,5,4,12,16,[[747,3,2,12,14],[748,1,1,14,15],[752,1,1,15,16]]],[35,1,1,16,17,[[908,1,1,16,17]]]],[789,1568,7592,9110,13636,14353,14892,15240,18427,18576,18640,18715,19022,19025,19037,19161,22827]]],["But",[2,2,[[17,1,1,0,1,[[467,1,1,0,1]]],[18,1,1,1,2,[[559,1,1,1,2]]]],[13636,15240]]],["Surely",[5,5,[[0,1,1,0,1,[[27,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]],[8,1,1,2,3,[[250,1,1,2,3]]],[22,1,1,3,4,[[731,1,1,3,4]]],[23,1,1,4,5,[[747,1,1,4,5]]]],[789,1568,7592,18715,19022]]],["Truly",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19025]]],["Verily",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18576]]],["but",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22827]]],["certainly",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19161]]],["nevertheless",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14353]]],["surely",[4,4,[[10,1,1,0,1,[[301,1,1,0,1]]],[22,2,2,1,3,[[718,1,1,1,2],[727,1,1,2,3]]],[23,1,1,3,4,[[748,1,1,3,4]]]],[9110,18427,18640,19037]]],["truly",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19025]]],["verily",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14892]]]]},{"k":"H404","v":[["craveth",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16866]]]]},{"k":"H405","v":[["hand",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13657]]]]},{"k":"H406","v":[["*",[7,7,[[13,1,1,0,1,[[392,1,1,0,1]]],[22,1,1,1,2,[[739,1,1,1,2]]],[23,3,3,2,5,[[758,1,1,2,3],[775,1,1,3,4],[795,1,1,4,5]]],[28,1,1,5,6,[[876,1,1,5,6]]],[29,1,1,6,7,[[883,1,1,6,7]]]],[11742,18848,19297,19715,20235,22302,22439]]],["husbandman",[2,2,[[23,1,1,0,1,[[795,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[20235,22439]]],["husbandmen",[3,3,[[13,1,1,0,1,[[392,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]],[28,1,1,2,3,[[876,1,1,2,3]]]],[11742,19715,22302]]],["plowmen",[2,2,[[22,1,1,0,1,[[739,1,1,0,1]]],[23,1,1,1,2,[[758,1,1,1,2]]]],[18848,19297]]]]},{"k":"H407","v":[["Achshaph",[3,3,[[5,3,3,0,3,[[197,1,1,0,1],[198,1,1,1,2],[205,1,1,2,3]]]],[6108,6150,6346]]]]},{"k":"H408","v":[["*",[726,573,[[0,39,34,0,34,[[12,1,1,0,1],[14,1,1,1,2],[17,3,3,2,5],[18,5,4,5,9],[20,3,3,9,12],[21,2,1,12,13],[23,1,1,13,14],[25,2,2,14,16],[30,1,1,16,17],[32,1,1,17,18],[34,1,1,18,19],[36,3,2,19,21],[41,1,1,21,22],[42,1,1,22,23],[43,1,1,23,24],[44,5,4,24,28],[45,1,1,28,29],[46,1,1,29,30],[48,3,2,30,32],[49,2,2,32,34]]],[1,20,19,34,53,[[52,1,1,34,35],[54,1,1,35,36],[57,1,1,36,37],[59,1,1,37,38],[61,1,1,38,39],[63,1,1,39,40],[65,2,2,40,42],[68,2,2,42,44],[69,2,2,44,46],[72,3,3,46,49],[81,1,1,49,50],[82,1,1,50,51],[83,2,1,51,52],[85,1,1,52,53]]],[2,11,10,53,63,[[99,2,2,53,55],[100,1,1,55,56],[105,1,1,56,57],[107,1,1,57,58],[108,4,3,58,61],[114,2,2,61,63]]],[3,14,12,63,75,[[120,1,1,63,64],[126,1,1,64,65],[127,1,1,65,66],[128,2,2,66,68],[130,4,2,68,70],[132,2,2,70,72],[137,1,1,72,73],[138,1,1,73,74],[148,1,1,74,75]]],[4,21,14,75,89,[[153,2,1,75,76],[154,5,3,76,79],[155,2,2,79,81],[161,4,4,81,85],[172,4,1,85,86],[173,1,1,86,87],[183,2,1,87,88],[185,1,1,88,89]]],[5,20,14,89,103,[[187,3,2,89,91],[189,1,1,91,92],[193,3,2,92,94],[194,3,2,94,96],[196,6,4,96,100],[197,1,1,100,101],[208,3,2,101,103]]],[6,16,11,103,114,[[214,1,1,103,104],[216,3,3,104,107],[223,6,3,107,110],[228,2,2,110,112],[229,4,2,112,114]]],[7,8,8,114,122,[[232,3,3,114,117],[233,1,1,117,118],[234,4,4,118,122]]],[8,26,25,122,147,[[236,1,1,122,123],[237,2,2,123,125],[238,1,1,125,126],[239,1,1,126,127],[241,1,1,127,128],[242,1,1,128,129],[244,1,1,129,130],[247,3,2,130,132],[251,1,1,132,133],[252,1,1,133,134],[253,1,1,134,135],[254,1,1,135,136],[255,2,2,136,138],[256,1,1,138,139],[257,2,2,139,141],[258,1,1,141,142],[260,1,1,142,143],[261,2,2,143,145],[262,1,1,145,146],[263,1,1,146,147]]],[9,23,17,147,164,[[267,4,2,147,149],[269,1,1,149,150],[275,1,1,150,151],[277,1,1,151,152],[279,10,7,152,159],[280,2,2,159,161],[283,1,1,161,162],[285,2,1,162,163],[290,1,1,163,164]]],[10,13,11,164,175,[[292,3,3,164,167],[293,1,1,167,168],[298,2,1,168,169],[303,2,1,169,170],[307,1,1,170,171],[308,1,1,171,172],[310,2,2,172,174],[312,1,1,174,175]]],[11,23,22,175,197,[[313,1,1,175,176],[314,1,1,176,177],[315,1,1,177,178],[316,4,3,178,181],[318,2,2,181,183],[321,1,1,183,184],[322,2,2,184,186],[323,1,1,186,187],[324,1,1,187,188],[330,5,5,188,193],[331,2,2,193,195],[335,1,1,195,196],[337,1,1,196,197]]],[12,7,4,197,201,[[353,2,1,197,198],[358,1,1,198,199],[359,2,1,199,200],[365,2,1,200,201]]],[13,20,15,201,216,[[372,1,1,201,202],[379,1,1,202,203],[380,1,1,203,204],[381,1,1,204,205],[384,1,1,205,206],[386,4,2,206,208],[389,1,1,208,209],[391,1,1,209,210],[395,1,1,210,211],[396,2,2,211,213],[398,5,2,213,215],[401,1,1,215,216]]],[14,2,1,216,217,[[411,2,1,216,217]]],[15,9,7,217,224,[[416,3,2,217,219],[420,4,3,219,222],[421,1,1,222,223],[425,1,1,223,224]]],[16,4,3,224,227,[[429,3,2,224,226],[431,1,1,226,227]]],[17,25,22,227,249,[[436,1,1,227,228],[438,6,4,228,232],[440,2,2,232,234],[441,1,1,234,235],[444,1,1,235,236],[445,1,1,236,237],[446,1,1,237,238],[448,2,2,238,240],[450,1,1,240,241],[451,2,1,241,242],[455,1,1,242,243],[459,1,1,243,244],[467,1,1,244,245],[471,3,3,245,248],[476,1,1,248,249]]],[18,115,90,249,339,[[481,1,1,249,250],[483,2,1,250,251],[486,1,1,251,252],[487,1,1,252,253],[496,1,1,253,254],[499,2,2,254,256],[502,4,3,256,259],[503,1,1,259,260],[504,5,2,260,262],[505,2,2,262,264],[508,2,2,264,266],[509,1,1,266,267],[511,1,1,267,268],[512,6,4,268,272],[513,2,1,272,273],[514,4,3,273,276],[515,3,2,276,278],[516,2,2,278,280],[517,1,1,280,281],[518,1,1,281,282],[521,1,1,282,283],[526,1,1,283,284],[527,1,1,284,285],[528,2,1,285,286],[532,1,1,286,287],[536,2,2,287,289],[539,3,1,289,290],[543,1,1,290,291],[546,10,7,291,298],[547,1,1,298,299],[548,5,4,299,303],[551,4,3,303,306],[552,3,2,306,308],[556,2,2,308,310],[560,3,1,310,311],[562,1,1,311,312],[572,1,1,312,313],[579,2,2,313,315],[580,1,1,315,316],[582,2,1,316,317],[586,4,3,317,320],[596,9,9,320,329],[598,2,1,329,330],[609,1,1,330,331],[615,1,1,331,332],[617,2,1,332,333],[618,3,3,333,336],[620,2,2,336,338],[623,1,1,338,339]]],[19,90,74,339,413,[[628,3,3,339,342],[630,14,12,342,354],[631,10,8,354,362],[632,2,2,362,364],[633,4,3,364,367],[634,2,1,367,368],[635,2,2,368,370],[636,1,1,370,371],[639,1,1,371,372],[644,1,1,372,373],[646,1,1,373,374],[647,2,2,374,376],[649,5,4,376,380],[650,13,11,380,391],[651,11,7,391,398],[652,4,3,398,401],[653,2,2,401,403],[654,4,3,403,406],[655,1,1,406,407],[657,4,4,407,411],[658,3,2,411,413]]],[20,21,15,413,428,[[663,6,4,413,417],[665,8,6,417,423],[666,2,1,423,424],[667,1,1,424,425],[668,3,2,425,427],[669,1,1,427,428]]],[21,2,2,428,430,[[671,1,1,428,429],[677,1,1,429,430]]],[22,44,36,430,466,[[680,1,1,430,431],[684,1,1,431,432],[685,2,1,432,433],[688,1,1,433,434],[692,1,1,434,435],[694,1,1,435,436],[700,1,1,436,437],[706,1,1,437,438],[713,1,1,438,439],[714,4,4,439,443],[715,2,2,443,445],[718,1,1,445,446],[719,4,3,446,449],[721,5,4,449,453],[722,3,2,453,455],[729,2,1,455,456],[730,1,1,456,457],[732,3,2,457,459],[734,2,1,459,460],[736,1,1,460,461],[740,2,2,461,463],[742,2,1,463,464],[743,2,2,464,466]]],[23,88,67,466,533,[[745,3,3,466,469],[748,2,2,469,471],[749,1,1,471,472],[750,2,1,472,473],[751,5,3,473,476],[753,4,2,476,478],[754,4,3,478,481],[755,2,1,481,482],[756,1,1,482,483],[757,1,1,483,484],[758,6,4,484,488],[759,1,1,488,489],[760,3,1,489,490],[761,4,3,490,493],[762,3,2,493,495],[764,1,1,495,496],[766,5,2,496,498],[767,1,1,498,499],[769,1,1,499,500],[770,1,1,500,501],[771,4,4,501,505],[773,3,2,505,507],[774,2,1,507,508],[779,1,1,508,509],[780,1,1,509,510],[781,2,2,510,512],[782,3,3,512,515],[783,1,1,515,516],[784,2,2,516,518],[785,1,1,518,519],[786,3,2,519,521],[788,1,1,521,522],[789,1,1,522,523],[790,5,3,523,526],[794,4,4,526,530],[795,3,3,530,533]]],[24,5,4,533,537,[[798,2,1,533,534],[799,2,2,534,536],[800,1,1,536,537]]],[25,14,7,537,544,[[803,5,2,537,539],[808,2,1,539,540],[810,3,2,540,542],[821,4,2,542,544]]],[26,3,3,544,547,[[858,1,1,544,545],[859,2,2,545,547]]],[27,7,3,547,550,[[865,6,2,547,549],[870,1,1,549,550]]],[28,4,4,550,554,[[877,4,4,550,554]]],[29,2,2,554,556,[[883,2,2,554,556]]],[30,8,3,556,559,[[888,8,3,556,559]]],[31,5,2,559,561,[[889,2,1,559,560],[891,3,1,560,561]]],[32,6,4,561,565,[[893,2,1,561,562],[894,1,1,562,563],[899,3,2,563,565]]],[35,2,1,565,566,[[908,2,1,565,566]]],[36,1,1,566,567,[[910,1,1,566,567]]],[37,7,5,567,572,[[911,1,1,567,568],[917,2,1,568,569],[918,4,3,569,572]]],[38,1,1,572,573,[[926,1,1,572,573]]]],[326,361,427,454,456,464,465,474,475,525,529,530,559,647,694,716,908,970,1028,1105,1110,1274,1313,1342,1363,1367,1378,1382,1389,1449,1477,1479,1525,1527,1584,1641,1739,1805,1825,1902,1966,1976,2041,2050,2070,2071,2145,2151,2165,2460,2488,2499,2572,2983,2986,3040,3203,3275,3285,3310,3312,3483,3505,3761,4019,4039,4070,4071,4117,4150,4209,4220,4374,4391,4723,4913,4943,4947,4957,4977,5001,5161,5164,5183,5184,5430,5455,5734,5816,5858,5860,5897,5979,5995,6003,6006,6070,6072,6083,6089,6113,6445,6448,6617,6672,6677,6693,6888,6891,6898,7002,7018,7044,7047,7140,7143,7147,7157,7175,7183,7186,7189,7228,7243,7264,7293,7317,7334,7360,7411,7479,7480,7602,7650,7693,7710,7733,7768,7774,7802,7810,7827,7886,7914,7925,7940,7955,8042,8043,8110,8234,8284,8329,8333,8337,8342,8345,8349,8350,8358,8374,8465,8530,8706,8779,8786,8790,8842,9042,9206,9330,9381,9416,9419,9488,9548,9569,9589,9606,9619,9627,9690,9701,9771,9812,9818,9844,9857,10050,10053,10054,10055,10056,10067,10071,10183,10246,10842,10947,10977,11163,11324,11465,11486,11497,11549,11602,11604,11662,11711,11802,11834,11835,11882,11890,11987,12249,12364,12373,12502,12503,12504,12543,12685,12775,12778,12803,12881,12908,12910,12911,12913,12968,12973,13007,13085,13088,13122,13173,13174,13234,13256,13343,13461,13649,13754,13756,13757,13896,13969,13986,14040,14053,14181,14215,14223,14253,14258,14271,14282,14294,14297,14300,14302,14332,14348,14364,14393,14429,14432,14434,14435,14449,14451,14457,14458,14491,14511,14520,14524,14542,14544,14594,14664,14671,14702,14733,14795,14801,14837,14880,14941,14949,14950,14952,14960,14962,14963,14976,14977,14985,14988,14994,15067,15069,15071,15075,15076,15191,15193,15242,15279,15462,15523,15545,15551,15621,15756,15767,15769,15906,15908,15917,15929,15934,15941,16014,16020,16031,16084,16161,16239,16271,16280,16281,16284,16295,16300,16344,16408,16410,16415,16456,16458,16460,16462,16466,16476,16480,16482,16483,16484,16485,16486,16492,16495,16496,16503,16504,16505,16511,16517,16524,16525,16544,16560,16565,16600,16612,16635,16646,16747,16885,16943,16967,16976,17037,17039,17041,17043,17047,17048,17050,17053,17054,17057,17061,17064,17066,17067,17075,17080,17094,17096,17098,17100,17107,17108,17119,17121,17122,17145,17166,17170,17171,17179,17213,17257,17258,17259,17261,17287,17288,17399,17401,17403,17405,17438,17439,17445,17446,17447,17450,17461,17483,17497,17513,17519,17543,17629,17694,17778,17786,17874,17957,17972,18056,18186,18324,18341,18344,18345,18346,18358,18362,18429,18461,18464,18465,18506,18510,18511,18523,18535,18541,18680,18707,18725,18727,18756,18787,18860,18861,18894,18902,18905,18953,18954,18963,19030,19033,19068,19114,19123,19125,19135,19179,19198,19203,19206,19225,19240,19255,19281,19302,19304,19310,19314,19330,19341,19374,19375,19378,19402,19407,19436,19457,19464,19500,19540,19574,19605,19610,19612,19613,19641,19643,19677,19838,19861,19883,19894,19909,19919,19920,19935,19950,19957,19965,19986,19994,20014,20045,20051,20072,20073,20168,20180,20192,20195,20215,20218,20262,20350,20410,20411,20435,20498,20500,20589,20627,20628,20902,20913,22007,22027,22034,22137,22148,22209,22324,22328,22332,22333,22428,22437,22522,22523,22524,22545,22565,22589,22601,22669,22672,22836,22860,22882,22972,22989,22991,22993,23118]]],["+",[92,87,[[0,5,5,0,5,[[17,1,1,0,1],[18,2,2,1,3],[25,1,1,3,4],[44,1,1,4,5]]],[1,4,3,5,8,[[52,1,1,5,6],[82,1,1,6,7],[83,2,1,7,8]]],[2,1,1,8,9,[[107,1,1,8,9]]],[3,4,4,9,13,[[120,1,1,9,10],[130,1,1,10,11],[132,1,1,11,12],[148,1,1,12,13]]],[4,2,2,13,15,[[154,1,1,13,14],[161,1,1,14,15]]],[5,3,3,15,18,[[187,1,1,15,16],[189,1,1,16,17],[193,1,1,17,18]]],[6,3,2,18,20,[[228,1,1,18,19],[229,2,1,19,20]]],[7,1,1,20,21,[[234,1,1,20,21]]],[8,3,3,21,24,[[236,1,1,21,22],[244,1,1,22,23],[247,1,1,23,24]]],[9,1,1,24,25,[[277,1,1,24,25]]],[10,2,2,25,27,[[292,2,2,25,27]]],[11,6,6,27,33,[[313,1,1,27,28],[316,2,2,28,30],[322,2,2,30,32],[331,1,1,32,33]]],[13,4,4,33,37,[[372,1,1,33,34],[386,1,1,34,35],[396,1,1,35,36],[398,1,1,36,37]]],[15,2,2,37,39,[[421,1,1,37,38],[425,1,1,38,39]]],[16,1,1,39,40,[[431,1,1,39,40]]],[17,2,2,40,42,[[436,1,1,40,41],[471,1,1,41,42]]],[18,17,15,42,57,[[504,1,1,42,43],[508,1,1,43,44],[514,3,3,44,47],[516,1,1,47,48],[532,1,1,48,49],[539,1,1,49,50],[548,2,2,50,52],[552,3,2,52,54],[560,2,1,54,55],[609,1,1,55,56],[618,1,1,56,57]]],[19,9,9,57,66,[[630,1,1,57,58],[632,1,1,58,59],[634,1,1,59,60],[650,1,1,60,61],[651,2,2,61,63],[652,2,2,63,65],[654,1,1,65,66]]],[20,2,2,66,68,[[663,1,1,66,67],[665,1,1,67,68]]],[22,7,7,68,75,[[706,1,1,68,69],[715,1,1,69,70],[718,1,1,70,71],[721,1,1,71,72],[740,1,1,72,73],[742,1,1,73,74],[743,1,1,74,75]]],[23,5,5,75,80,[[750,1,1,75,76],[782,1,1,76,77],[783,1,1,77,78],[788,1,1,78,79],[795,1,1,79,80]]],[25,4,3,80,83,[[803,2,1,80,81],[810,1,1,81,82],[821,1,1,82,83]]],[28,1,1,83,84,[[877,1,1,83,84]]],[32,2,2,84,86,[[893,1,1,84,85],[899,1,1,85,86]]],[37,1,1,86,87,[[918,1,1,86,87]]]],[427,464,465,694,1382,1584,2488,2499,3275,3761,4150,4220,4723,4947,5164,5860,5897,5979,7002,7047,7175,7228,7411,7480,8284,8779,8790,9548,9606,9619,9812,9818,10067,11324,11602,11835,11882,12543,12685,12803,12881,13757,14294,14332,14451,14457,14458,14524,14733,14837,14977,14985,15075,15076,15242,16161,16284,16486,16525,16600,17050,17094,17098,17119,17121,17170,17403,17447,18186,18358,18429,18511,18860,18894,18902,19114,19909,19935,20014,20262,20498,20628,20902,22333,22589,22669,22993]]],["Nay",[7,7,[[0,1,1,0,1,[[32,1,1,0,1]]],[6,1,1,1,2,[[229,1,1,1,2]]],[8,1,1,2,3,[[237,1,1,2,3]]],[9,2,2,3,5,[[279,2,2,3,5]]],[11,2,2,5,7,[[315,1,1,5,6],[316,1,1,6,7]]]],[970,7047,7264,8329,8342,9589,9619]]],["Neither",[4,4,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,2,2,1,3,[[714,1,1,1,2],[734,1,1,2,3]]],[30,1,1,3,4,[[888,1,1,3,4]]]],[10054,18345,18756,22524]]],["Whither",[1,1,[[8,1,1,0,1,[[262,1,1,0,1]]]],[7940]]],["cannot",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13754]]],["nay",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7140]]],["neither",[64,62,[[0,2,2,0,2,[[18,1,1,0,1],[21,1,1,1,2]]],[1,1,1,2,3,[[85,1,1,2,3]]],[2,1,1,3,4,[[108,1,1,3,4]]],[3,1,1,4,5,[[130,1,1,4,5]]],[4,3,3,5,8,[[153,1,1,5,6],[154,1,1,6,7],[172,1,1,7,8]]],[5,2,2,8,10,[[187,1,1,8,9],[194,1,1,9,10]]],[6,2,2,10,12,[[223,2,2,10,12]]],[9,2,2,12,14,[[267,1,1,12,13],[285,1,1,13,14]]],[13,1,1,14,15,[[398,1,1,14,15]]],[14,1,1,15,16,[[411,1,1,15,16]]],[15,2,2,16,18,[[420,2,2,16,18]]],[16,1,1,18,19,[[429,1,1,18,19]]],[17,3,3,19,22,[[438,2,2,19,21],[440,1,1,21,22]]],[18,5,5,22,27,[[483,1,1,22,23],[504,1,1,23,24],[514,1,1,24,25],[546,1,1,25,26],[586,1,1,26,27]]],[19,9,9,27,36,[[630,1,1,27,28],[631,1,1,28,29],[633,1,1,29,30],[649,1,1,30,31],[650,1,1,31,32],[651,2,2,32,34],[654,1,1,34,35],[657,1,1,35,36]]],[20,3,3,36,39,[[663,1,1,36,37],[665,2,2,37,39]]],[22,7,7,39,46,[[685,1,1,39,40],[721,1,1,40,41],[722,1,1,41,42],[729,1,1,42,43],[732,1,1,43,44],[734,1,1,44,45],[742,1,1,45,46]]],[23,10,9,46,55,[[751,2,1,46,47],[753,1,1,47,48],[755,1,1,48,49],[760,1,1,49,50],[762,1,1,50,51],[766,2,2,51,53],[773,1,1,53,54],[774,1,1,54,55]]],[25,3,3,55,58,[[803,1,1,55,56],[810,1,1,56,57],[821,1,1,57,58]]],[27,1,1,58,59,[[865,1,1,58,59]]],[30,3,2,59,61,[[888,3,2,59,61]]],[31,1,1,61,62,[[891,1,1,61,62]]]],[474,559,2572,3312,4117,4913,4947,5430,5860,6003,6891,6898,8043,8530,11890,12249,12503,12504,12778,12908,12913,12973,13986,14294,14451,14950,15767,16466,16495,16565,17037,17050,17080,17098,17179,17259,17403,17445,17446,17786,18523,18541,18680,18727,18756,18894,19135,19198,19240,19341,19407,19457,19464,19643,19677,20498,20627,20913,22148,22522,22524,22565]]],["no",[42,39,[[0,3,2,0,2,[[12,1,1,0,1],[36,2,1,1,2]]],[1,3,3,2,5,[[59,1,1,2,3],[65,2,2,3,5]]],[2,1,1,5,6,[[114,1,1,5,6]]],[4,1,1,6,7,[[155,1,1,6,7]]],[6,1,1,7,8,[[223,1,1,7,8]]],[8,3,3,8,11,[[237,1,1,8,9],[252,1,1,9,10],[256,1,1,10,11]]],[9,2,2,11,13,[[267,1,1,11,12],[279,1,1,12,13]]],[10,3,2,13,15,[[293,1,1,13,14],[303,2,1,14,15]]],[11,2,2,15,17,[[324,1,1,15,16],[335,1,1,16,17]]],[12,1,1,17,18,[[353,1,1,17,18]]],[17,3,3,18,21,[[438,1,1,18,19],[451,1,1,19,20],[476,1,1,20,21]]],[18,3,3,21,24,[[517,1,1,21,22],[547,1,1,22,23],[582,1,1,23,24]]],[19,3,3,24,27,[[639,1,1,24,25],[649,1,1,25,26],[655,1,1,26,27]]],[20,2,2,27,29,[[665,1,1,27,28],[667,1,1,28,29]]],[22,2,2,29,31,[[730,1,1,29,30],[740,1,1,30,31]]],[23,6,5,31,36,[[761,1,1,31,32],[766,2,1,32,33],[780,1,1,33,34],[782,1,1,34,35],[794,1,1,35,36]]],[24,1,1,36,37,[[798,1,1,36,37]]],[27,1,1,37,38,[[865,1,1,37,38]]],[37,1,1,38,39,[[918,1,1,38,39]]]],[326,1105,1805,1966,1976,3505,5001,6891,7243,7650,7774,8043,8333,8842,9206,9857,10183,10842,12911,13256,13896,14542,14976,15621,16747,17039,17213,17450,17483,18707,18861,19378,19457,19861,19919,20180,20350,22137,22993]]],["none",[7,7,[[11,1,1,0,1,[[321,1,1,0,1]]],[13,1,1,1,2,[[389,1,1,1,2]]],[18,2,2,2,4,[[546,1,1,2,3],[586,1,1,3,4]]],[23,1,1,4,5,[[794,1,1,4,5]]],[37,1,1,5,6,[[917,1,1,5,6]]],[38,1,1,6,7,[[926,1,1,6,7]]]],[9771,11662,14960,15767,20195,22972,23118]]],["nor",[25,25,[[0,1,1,0,1,[[44,1,1,0,1]]],[4,2,2,1,3,[[154,1,1,1,2],[183,1,1,2,3]]],[5,2,2,3,5,[[196,1,1,3,4],[208,1,1,4,5]]],[6,1,1,5,6,[[223,1,1,5,6]]],[10,1,1,6,7,[[298,1,1,6,7]]],[12,2,2,7,9,[[359,1,1,7,8],[365,1,1,8,9]]],[13,4,4,9,13,[[386,2,2,9,11],[398,2,2,11,13]]],[15,1,1,13,14,[[420,1,1,13,14]]],[16,1,1,14,15,[[429,1,1,14,15]]],[23,3,3,15,18,[[750,1,1,15,16],[760,1,1,16,17],[790,1,1,17,18]]],[25,3,3,18,21,[[803,1,1,18,19],[808,1,1,19,20],[821,1,1,20,21]]],[27,2,2,21,23,[[865,2,2,21,23]]],[30,1,1,23,24,[[888,1,1,23,24]]],[31,1,1,24,25,[[891,1,1,24,25]]]],[1363,4957,5734,6089,6445,6898,9042,10977,11163,11602,11604,11882,11890,12502,12778,19114,19341,20051,20498,20589,20913,22137,22148,22523,22565]]],["not",[478,436,[[0,27,26,0,26,[[14,1,1,0,1],[17,2,2,1,3],[18,2,2,3,5],[20,3,3,5,8],[21,1,1,8,9],[23,1,1,9,10],[25,1,1,10,11],[30,1,1,11,12],[34,1,1,12,13],[36,1,1,13,14],[41,1,1,14,15],[42,1,1,15,16],[43,1,1,16,17],[44,3,3,17,20],[45,1,1,20,21],[46,1,1,21,22],[48,3,2,22,24],[49,2,2,24,26]]],[1,12,12,26,38,[[54,1,1,26,27],[57,1,1,27,28],[61,1,1,28,29],[63,1,1,29,30],[68,2,2,30,32],[69,2,2,32,34],[72,3,3,34,37],[81,1,1,37,38]]],[2,8,8,38,46,[[99,2,2,38,40],[100,1,1,40,41],[105,1,1,41,42],[108,3,3,42,45],[114,1,1,45,46]]],[3,8,7,46,53,[[126,1,1,46,47],[127,1,1,47,48],[128,2,2,48,50],[130,2,1,50,51],[132,1,1,51,52],[137,1,1,52,53]]],[4,13,11,53,64,[[153,1,1,53,54],[154,2,2,54,56],[155,1,1,56,57],[161,3,3,57,60],[172,3,1,60,61],[173,1,1,61,62],[183,1,1,62,63],[185,1,1,63,64]]],[5,13,12,64,76,[[187,1,1,64,65],[193,2,2,65,67],[194,2,2,67,69],[196,5,4,69,73],[197,1,1,73,74],[208,2,2,74,76]]],[6,8,7,76,83,[[214,1,1,76,77],[216,3,3,77,80],[223,2,1,80,81],[228,1,1,81,82],[229,1,1,82,83]]],[7,6,6,83,89,[[232,2,2,83,85],[233,1,1,85,86],[234,3,3,86,89]]],[8,18,18,89,107,[[238,1,1,89,90],[239,1,1,90,91],[241,1,1,91,92],[242,1,1,92,93],[247,2,2,93,95],[251,1,1,95,96],[253,1,1,96,97],[254,1,1,97,98],[255,2,2,98,100],[257,2,2,100,102],[258,1,1,102,103],[260,1,1,103,104],[261,2,2,104,106],[263,1,1,106,107]]],[9,16,14,107,121,[[267,2,1,107,108],[269,1,1,108,109],[275,1,1,109,110],[279,7,6,110,116],[280,2,2,116,118],[283,1,1,118,119],[285,1,1,119,120],[290,1,1,120,121]]],[10,7,7,121,128,[[292,1,1,121,122],[298,1,1,122,123],[307,1,1,123,124],[308,1,1,124,125],[310,2,2,125,127],[312,1,1,127,128]]],[11,11,11,128,139,[[314,1,1,128,129],[316,1,1,129,130],[318,2,2,130,132],[323,1,1,132,133],[330,4,4,133,137],[331,1,1,137,138],[337,1,1,138,139]]],[12,4,4,139,143,[[353,1,1,139,140],[358,1,1,140,141],[359,1,1,141,142],[365,1,1,142,143]]],[13,10,10,143,153,[[379,1,1,143,144],[380,1,1,144,145],[381,1,1,145,146],[384,1,1,146,147],[386,1,1,147,148],[391,1,1,148,149],[395,1,1,149,150],[396,1,1,150,151],[398,1,1,151,152],[401,1,1,152,153]]],[14,1,1,153,154,[[411,1,1,153,154]]],[15,4,3,154,157,[[416,3,2,154,156],[420,1,1,156,157]]],[16,1,1,157,158,[[429,1,1,157,158]]],[17,15,14,158,172,[[438,3,2,158,160],[440,1,1,160,161],[441,1,1,161,162],[444,1,1,162,163],[445,1,1,163,164],[446,1,1,164,165],[448,2,2,165,167],[450,1,1,167,168],[451,1,1,168,169],[455,1,1,169,170],[467,1,1,170,171],[471,1,1,171,172]]],[18,88,75,172,247,[[481,1,1,172,173],[483,1,1,173,174],[486,1,1,174,175],[487,1,1,175,176],[496,1,1,176,177],[499,2,2,177,179],[502,4,3,179,182],[503,1,1,182,183],[504,3,2,183,185],[505,2,2,185,187],[508,1,1,187,188],[509,1,1,188,189],[511,1,1,189,190],[512,6,4,190,194],[513,2,1,194,195],[515,3,2,195,197],[516,1,1,197,198],[518,1,1,198,199],[521,1,1,199,200],[526,1,1,200,201],[527,1,1,201,202],[528,2,1,202,203],[536,2,2,203,205],[539,2,1,205,206],[543,1,1,206,207],[546,8,6,207,213],[548,3,3,213,216],[551,4,3,216,219],[556,2,2,219,221],[560,1,1,221,222],[562,1,1,222,223],[572,1,1,223,224],[579,2,2,224,226],[580,1,1,226,227],[582,1,1,227,228],[586,2,2,228,230],[596,9,9,230,239],[598,2,1,239,240],[615,1,1,240,241],[617,2,1,241,242],[618,2,2,242,244],[620,2,2,244,246],[623,1,1,246,247]]],[19,68,64,247,311,[[628,3,3,247,250],[630,12,12,250,262],[631,9,8,262,270],[632,1,1,270,271],[633,3,3,271,274],[634,1,1,274,275],[635,2,2,275,277],[636,1,1,277,278],[646,1,1,278,279],[647,2,2,279,281],[649,3,3,281,284],[650,11,10,284,294],[651,7,6,294,300],[652,2,2,300,302],[653,2,2,302,304],[654,2,2,304,306],[657,3,3,306,309],[658,3,2,309,311]]],[20,14,11,311,322,[[663,4,3,311,314],[665,4,4,314,318],[666,2,1,318,319],[668,3,2,319,321],[669,1,1,321,322]]],[21,2,2,322,324,[[671,1,1,322,323],[677,1,1,323,324]]],[22,26,25,324,349,[[680,1,1,324,325],[684,1,1,325,326],[685,1,1,326,327],[688,1,1,327,328],[692,1,1,328,329],[694,1,1,329,330],[700,1,1,330,331],[713,1,1,331,332],[714,3,3,332,335],[715,1,1,335,336],[719,4,3,336,339],[721,3,3,339,342],[722,2,2,342,344],[729,1,1,344,345],[732,2,2,345,347],[736,1,1,347,348],[743,1,1,348,349]]],[23,62,55,349,404,[[745,3,3,349,352],[748,2,2,352,354],[749,1,1,354,355],[751,3,3,355,358],[753,3,2,358,360],[754,4,3,360,363],[755,1,1,363,364],[756,1,1,364,365],[757,1,1,365,366],[758,6,4,366,370],[759,1,1,370,371],[760,1,1,371,372],[761,3,2,372,374],[762,2,2,374,376],[764,1,1,376,377],[766,1,1,377,378],[767,1,1,378,379],[769,1,1,379,380],[770,1,1,380,381],[771,4,4,381,385],[773,2,2,385,387],[774,1,1,387,388],[779,1,1,388,389],[781,2,2,389,391],[782,1,1,391,392],[784,2,2,392,394],[785,1,1,394,395],[786,3,2,395,397],[789,1,1,397,398],[790,4,3,398,401],[794,1,1,401,402],[795,2,2,402,404]]],[24,4,4,404,408,[[798,1,1,404,405],[799,2,2,405,407],[800,1,1,407,408]]],[25,4,4,408,412,[[803,1,1,408,409],[808,1,1,409,410],[810,1,1,410,411],[821,1,1,411,412]]],[26,3,3,412,415,[[858,1,1,412,413],[859,2,2,413,415]]],[27,3,2,415,417,[[865,2,1,415,416],[870,1,1,416,417]]],[28,3,3,417,420,[[877,3,3,417,420]]],[29,2,2,420,422,[[883,2,2,420,422]]],[30,3,2,422,424,[[888,3,2,422,424]]],[31,3,2,424,426,[[889,2,1,424,425],[891,1,1,425,426]]],[32,4,4,426,430,[[893,1,1,426,427],[894,1,1,427,428],[899,2,2,428,430]]],[35,2,1,430,431,[[908,2,1,430,431]]],[36,1,1,431,432,[[910,1,1,431,432]]],[37,4,4,432,436,[[911,1,1,432,433],[917,1,1,433,434],[918,2,2,434,436]]]],[361,454,456,474,475,525,529,530,559,647,716,908,1028,1110,1274,1313,1342,1363,1367,1378,1389,1449,1477,1479,1525,1527,1641,1739,1825,1902,2041,2050,2070,2071,2145,2151,2165,2460,2983,2986,3040,3203,3285,3310,3312,3483,4019,4039,4070,4071,4117,4209,4374,4913,4943,4957,4977,5161,5183,5184,5430,5455,5734,5816,5858,5979,5995,6003,6006,6070,6072,6083,6089,6113,6445,6448,6617,6672,6677,6693,6888,7018,7044,7143,7147,7157,7183,7186,7189,7293,7317,7334,7360,7479,7480,7602,7693,7710,7733,7768,7802,7810,7827,7886,7914,7925,7955,8042,8110,8234,8329,8337,8342,8345,8349,8350,8358,8374,8465,8530,8706,8786,9042,9330,9381,9416,9419,9488,9569,9627,9690,9701,9844,10050,10053,10055,10056,10071,10246,10842,10947,10977,11163,11465,11486,11497,11549,11604,11711,11802,11834,11890,11987,12249,12364,12373,12502,12775,12908,12910,12968,13007,13085,13088,13122,13173,13174,13234,13256,13343,13649,13756,13969,13986,14040,14053,14181,14215,14223,14253,14258,14271,14282,14294,14297,14300,14302,14348,14364,14393,14429,14432,14434,14435,14449,14491,14511,14520,14544,14594,14664,14671,14702,14795,14801,14837,14880,14941,14949,14950,14952,14962,14963,14985,14988,14994,15067,15069,15071,15191,15193,15242,15279,15462,15523,15545,15551,15621,15756,15769,15906,15908,15917,15929,15934,15941,16014,16020,16031,16084,16239,16271,16280,16281,16295,16300,16344,16408,16410,16415,16456,16458,16460,16462,16466,16476,16480,16482,16483,16484,16485,16486,16492,16495,16496,16503,16504,16505,16511,16517,16524,16544,16560,16565,16600,16612,16635,16646,16943,16967,16976,17037,17041,17043,17047,17048,17053,17054,17057,17061,17064,17066,17067,17075,17080,17094,17096,17100,17107,17108,17119,17122,17145,17166,17171,17179,17257,17258,17261,17287,17288,17399,17401,17405,17438,17439,17445,17446,17461,17497,17513,17519,17543,17629,17694,17778,17786,17874,17957,17972,18056,18324,18341,18344,18346,18362,18461,18464,18465,18506,18510,18523,18535,18541,18680,18725,18727,18787,18905,18953,18954,18963,19030,19033,19068,19123,19125,19135,19179,19198,19203,19206,19225,19240,19255,19281,19302,19304,19310,19314,19330,19341,19374,19375,19402,19407,19436,19464,19500,19540,19574,19605,19610,19612,19613,19641,19643,19677,19838,19883,19894,19920,19950,19957,19965,19986,19994,20045,20051,20072,20073,20168,20215,20218,20350,20410,20411,20435,20500,20589,20627,20913,22007,22027,22034,22148,22209,22324,22328,22332,22428,22437,22522,22523,22545,22565,22589,22601,22669,22672,22836,22860,22882,22972,22989,22991]]],["nothing",[3,3,[[3,1,1,0,1,[[138,1,1,0,1]]],[17,1,1,1,2,[[459,1,1,1,2]]],[23,1,1,2,3,[[794,1,1,2,3]]]],[4391,13461,20192]]],["rather",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16885]]]]},{"k":"H409","v":[["*",[4,3,[[26,4,3,0,3,[[851,1,1,0,1],[853,1,1,1,2],[854,2,1,2,3]]]],[21782,21856,21884]]],["nor",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21884]]],["not",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[853,1,1,1,2],[854,1,1,2,3]]]],[21782,21856,21884]]]]},{"k":"H410","v":[["*",[242,232,[[0,17,17,0,17,[[13,4,4,0,4],[15,1,1,4,5],[16,1,1,5,6],[20,1,1,6,7],[27,1,1,7,8],[30,2,2,8,10],[34,3,3,10,13],[42,1,1,13,14],[45,1,1,14,15],[47,1,1,15,16],[48,1,1,16,17]]],[1,7,6,17,23,[[55,1,1,17,18],[64,2,2,18,20],[69,1,1,20,21],[83,3,2,21,23]]],[3,10,10,23,33,[[128,1,1,23,24],[132,1,1,24,25],[139,4,4,25,29],[140,4,4,29,33]]],[4,14,14,33,47,[[155,1,1,33,34],[156,2,2,34,36],[157,1,1,36,37],[158,1,1,37,38],[159,2,2,38,40],[162,1,1,40,41],[180,1,1,41,42],[184,4,4,42,46],[185,1,1,46,47]]],[5,4,3,47,50,[[189,1,1,47,48],[208,2,1,48,49],[210,1,1,49,50]]],[6,1,1,50,51,[[219,1,1,50,51]]],[8,1,1,51,52,[[237,1,1,51,52]]],[9,5,5,52,57,[[288,4,4,52,56],[289,1,1,56,57]]],[15,4,4,57,61,[[413,1,1,57,58],[417,1,1,58,59],[421,2,2,59,61]]],[17,56,56,61,117,[[440,1,1,61,62],[443,4,4,62,66],[444,1,1,66,67],[447,1,1,67,68],[448,3,3,68,71],[450,4,4,71,75],[451,1,1,75,76],[453,1,1,76,77],[454,1,1,77,78],[455,2,2,78,80],[456,2,2,80,82],[457,3,3,82,85],[458,1,1,85,86],[460,1,1,86,87],[462,4,4,87,91],[466,3,3,91,94],[467,1,1,94,95],[468,4,4,95,99],[469,6,6,99,105],[470,2,2,105,107],[471,3,3,107,110],[472,3,3,110,113],[473,1,1,113,114],[475,2,2,114,116],[476,1,1,116,117]]],[18,77,73,117,190,[[482,1,1,117,118],[484,1,1,118,119],[487,2,2,119,121],[493,1,1,121,122],[494,1,1,122,123],[495,4,4,123,127],[496,1,1,127,128],[499,3,2,128,130],[506,2,2,130,132],[508,1,1,132,133],[513,1,1,133,134],[519,3,3,134,137],[520,1,1,137,138],[521,1,1,138,139],[527,1,1,139,140],[529,2,2,140,142],[532,1,1,142,143],[534,1,1,143,144],[540,1,1,144,145],[545,5,4,145,149],[550,2,2,149,151],[551,1,1,151,152],[554,3,3,152,155],[555,7,7,155,162],[557,1,1,162,163],[558,2,1,163,164],[559,1,1,164,165],[560,1,1,165,166],[561,1,1,166,167],[562,1,1,167,168],[563,1,1,168,169],[566,3,3,169,172],[567,1,1,172,173],[571,2,1,173,174],[572,1,1,174,175],[576,1,1,175,176],[579,1,1,176,177],[581,1,1,177,178],[583,2,2,178,180],[584,1,1,180,181],[595,2,2,181,183],[613,1,1,183,184],[616,2,2,184,186],[617,1,1,186,187],[623,1,1,187,188],[626,1,1,188,189],[627,1,1,189,190]]],[19,1,1,190,191,[[630,1,1,190,191]]],[22,23,22,191,213,[[683,1,1,191,192],[686,1,1,192,193],[687,1,1,193,194],[688,1,1,194,195],[690,1,1,195,196],[692,1,1,196,197],[709,1,1,197,198],[718,1,1,198,199],[720,1,1,199,200],[721,2,2,200,202],[722,4,3,202,205],[723,5,5,205,210],[724,2,2,210,212],[735,1,1,212,213]]],[23,2,2,213,215,[[776,1,1,213,214],[795,1,1,214,215]]],[24,1,1,215,216,[[799,1,1,215,216]]],[25,5,4,216,220,[[811,1,1,216,217],[829,3,2,217,219],[833,1,1,219,220]]],[26,4,2,220,222,[[858,1,1,220,221],[860,3,1,221,222]]],[27,3,3,222,225,[[862,1,1,222,223],[872,2,2,223,225]]],[31,1,1,225,226,[[892,1,1,225,226]]],[32,2,2,226,228,[[894,1,1,226,227],[899,1,1,227,228]]],[33,1,1,228,229,[[900,1,1,228,229]]],[38,3,3,229,232,[[925,1,1,229,230],[926,2,2,230,232]]]],[354,355,356,358,394,398,546,776,886,902,1012,1014,1022,1304,1389,1454,1498,1658,1922,1931,2056,2502,2510,4072,4216,4424,4435,4438,4439,4450,4454,4462,4469,4999,5028,5035,5062,5101,5120,5132,5203,5643,5762,5770,5776,5779,5836,5903,6448,6495,6800,7243,8633,8634,8635,8650,8658,12301,12387,12542,12543,12959,13032,13034,13042,13049,13053,13134,13156,13160,13161,13207,13214,13216,13228,13249,13297,13319,13341,13355,13369,13377,13391,13402,13406,13435,13465,13483,13490,13492,13494,13602,13611,13616,13641,13654,13656,13664,13679,13688,13693,13695,13706,13714,13720,13722,13733,13741,13758,13762,13774,13779,13783,13834,13873,13883,13913,13977,14006,14052,14053,14093,14109,14120,14148,14150,14165,14169,14205,14214,14309,14311,14336,14444,14557,14563,14564,14570,14591,14669,14711,14715,14751,14770,14840,14919,14920,14924,14935,15031,15037,15056,15102,15106,15107,15120,15121,15131,15132,15147,15148,15154,15208,15226,15234,15242,15261,15279,15299,15332,15333,15352,15380,15432,15457,15507,15545,15592,15665,15672,15710,15896,15897,16222,16256,16262,16269,16346,16391,16395,16482,17755,17817,17835,17871,17902,17941,18253,18438,18485,18515,18517,18543,18548,18550,18575,18576,18581,18582,18583,18592,18595,18770,19749,20268,20395,20638,21159,21166,21269,21992,22072,22104,22249,22252,22570,22596,22682,22686,23098,23113,23114]]],["+",[8,8,[[0,1,1,0,1,[[48,1,1,0,1]]],[15,1,1,1,2,[[417,1,1,1,2]]],[17,3,3,2,5,[[443,1,1,2,3],[455,1,1,3,4],[470,1,1,4,5]]],[18,3,3,5,8,[[506,1,1,5,6],[581,1,1,6,7],[623,1,1,7,8]]]],[1498,12387,13034,13355,13722,14309,15592,16346]]],["God",[205,200,[[0,15,15,0,15,[[13,4,4,0,4],[15,1,1,4,5],[16,1,1,5,6],[20,1,1,6,7],[27,1,1,7,8],[30,1,1,8,9],[34,3,3,9,12],[42,1,1,12,13],[45,1,1,13,14],[47,1,1,14,15]]],[1,5,5,15,20,[[55,1,1,15,16],[64,1,1,16,17],[69,1,1,17,18],[83,2,2,18,20]]],[3,10,10,20,30,[[128,1,1,20,21],[132,1,1,21,22],[139,4,4,22,26],[140,4,4,26,30]]],[4,12,12,30,42,[[155,1,1,30,31],[156,2,2,31,33],[157,1,1,33,34],[158,1,1,34,35],[159,2,2,35,37],[162,1,1,37,38],[184,3,3,38,41],[185,1,1,41,42]]],[5,4,3,42,45,[[189,1,1,42,43],[208,2,1,43,44],[210,1,1,44,45]]],[8,1,1,45,46,[[237,1,1,45,46]]],[9,5,5,46,51,[[288,4,4,46,50],[289,1,1,50,51]]],[15,3,3,51,54,[[413,1,1,51,52],[421,2,2,52,54]]],[17,51,51,54,105,[[440,1,1,54,55],[443,3,3,55,58],[444,1,1,58,59],[447,1,1,59,60],[448,3,3,60,63],[450,4,4,63,67],[451,1,1,67,68],[453,1,1,68,69],[454,1,1,69,70],[455,1,1,70,71],[456,2,2,71,73],[457,3,3,73,76],[458,1,1,76,77],[460,1,1,77,78],[462,4,4,78,82],[466,3,3,82,85],[467,1,1,85,86],[468,3,3,86,89],[469,6,6,89,95],[470,1,1,95,96],[471,3,3,96,99],[472,3,3,99,102],[473,1,1,102,103],[475,2,2,103,105]]],[18,66,63,105,168,[[482,1,1,105,106],[484,1,1,106,107],[487,2,2,107,109],[493,1,1,109,110],[494,1,1,110,111],[495,4,4,111,115],[496,1,1,115,116],[499,3,2,116,118],[506,1,1,118,119],[508,1,1,119,120],[519,3,3,120,123],[520,1,1,123,124],[529,2,2,124,126],[532,1,1,126,127],[534,1,1,127,128],[540,1,1,128,129],[545,5,4,129,133],[550,2,2,133,135],[551,1,1,135,136],[554,3,3,136,139],[555,7,7,139,146],[560,1,1,146,147],[561,1,1,147,148],[562,1,1,148,149],[563,1,1,149,150],[566,2,2,150,152],[567,1,1,152,153],[571,2,1,153,154],[572,1,1,154,155],[576,1,1,155,156],[579,1,1,156,157],[583,2,2,157,159],[584,1,1,159,160],[595,2,2,160,162],[613,1,1,162,163],[616,2,2,163,165],[617,1,1,165,166],[626,1,1,166,167],[627,1,1,167,168]]],[22,16,16,168,184,[[683,1,1,168,169],[686,1,1,169,170],[687,1,1,170,171],[688,1,1,171,172],[690,1,1,172,173],[692,1,1,173,174],[709,1,1,174,175],[718,1,1,175,176],[720,1,1,176,177],[721,2,2,177,179],[723,4,4,179,183],[724,1,1,183,184]]],[23,2,2,184,186,[[776,1,1,184,185],[795,1,1,185,186]]],[24,1,1,186,187,[[799,1,1,186,187]]],[25,4,3,187,190,[[811,1,1,187,188],[829,3,2,188,190]]],[26,2,2,190,192,[[858,1,1,190,191],[860,1,1,191,192]]],[27,3,3,192,195,[[862,1,1,192,193],[872,2,2,193,195]]],[31,1,1,195,196,[[892,1,1,195,196]]],[32,1,1,196,197,[[899,1,1,196,197]]],[33,1,1,197,198,[[900,1,1,197,198]]],[38,2,2,198,200,[[925,1,1,198,199],[926,1,1,199,200]]]],[354,355,356,358,394,398,546,776,886,1012,1014,1022,1304,1389,1454,1658,1922,2056,2502,2510,4072,4216,4424,4435,4438,4439,4450,4454,4462,4469,4999,5028,5035,5062,5101,5120,5132,5203,5762,5776,5779,5836,5903,6448,6495,7243,8633,8634,8635,8650,8658,12301,12542,12543,12959,13032,13042,13049,13053,13134,13156,13160,13161,13207,13214,13216,13228,13249,13297,13319,13341,13369,13377,13391,13402,13406,13435,13465,13483,13490,13492,13494,13602,13611,13616,13641,13654,13664,13679,13688,13693,13695,13706,13714,13720,13733,13741,13758,13762,13774,13779,13783,13834,13873,13883,13977,14006,14052,14053,14093,14109,14120,14148,14150,14165,14169,14205,14214,14311,14336,14557,14563,14564,14570,14711,14715,14751,14770,14840,14919,14920,14924,14935,15031,15037,15056,15102,15106,15107,15120,15121,15131,15132,15147,15148,15154,15242,15261,15279,15299,15333,15352,15380,15432,15457,15507,15545,15665,15672,15710,15896,15897,16222,16256,16262,16269,16391,16395,17755,17817,17835,17871,17902,17941,18253,18438,18485,18515,18517,18575,18576,18582,18583,18595,19749,20268,20395,20638,21159,21166,21992,22072,22104,22249,22252,22570,22682,22686,23098,23113]]],["God's",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13656]]],["god",[14,12,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[6,1,1,2,3,[[219,1,1,2,3]]],[18,3,2,3,5,[[521,1,1,3,4],[558,2,1,4,5]]],[22,6,5,5,10,[[722,4,3,5,8],[723,1,1,8,9],[724,1,1,9,10]]],[26,1,1,10,11,[[860,1,1,10,11]]],[38,1,1,11,12,[[926,1,1,11,12]]]],[2510,5770,6800,14591,15226,18543,18548,18550,18581,18592,22072,23114]]],["gods",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[1931,22072]]],["goodly",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15208]]],["great",[1,1,[[18,1,1,0,1,[[513,1,1,0,1]]]],[14444]]],["idols",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18770]]],["might",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5643]]],["mighty",[4,4,[[17,1,1,0,1,[[476,1,1,0,1]]],[18,3,3,1,4,[[527,1,1,1,2],[559,1,1,2,3],[566,1,1,3,4]]]],[13913,14669,15234,15332]]],["power",[3,3,[[0,1,1,0,1,[[30,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]],[32,1,1,2,3,[[894,1,1,2,3]]]],[902,16482,22596]]],["strong",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21269]]]]},{"k":"H411","v":[["*",[9,9,[[0,4,4,0,4,[[18,2,2,0,2],[25,2,2,2,4]]],[2,1,1,4,5,[[107,1,1,4,5]]],[4,3,3,5,8,[[156,1,1,5,6],[159,1,1,6,7],[171,1,1,7,8]]],[12,1,1,8,9,[[357,1,1,8,9]]]],[465,482,695,696,3278,5046,5133,5417,10934]]],["These",[1,1,[[12,1,1,0,1,[[357,1,1,0,1]]]],[10934]]],["these",[6,6,[[0,3,3,0,3,[[18,1,1,0,1],[25,2,2,1,3]]],[2,1,1,3,4,[[107,1,1,3,4]]],[4,2,2,4,6,[[156,1,1,4,5],[171,1,1,5,6]]]],[465,695,696,3278,5046,5417]]],["those",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[4,1,1,1,2,[[159,1,1,1,2]]]],[482,5133]]]]},{"k":"H412","v":[]},{"k":"H413","v":[["*",[5441,4180,[[0,471,376,0,376,[[0,1,1,0,1],[1,2,2,1,3],[2,9,7,3,10],[3,11,8,10,18],[5,7,7,18,25],[6,7,5,25,30],[7,8,5,30,35],[8,3,2,35,37],[10,1,1,37,38],[11,7,5,38,43],[12,3,3,43,46],[13,6,5,46,51],[14,5,5,51,56],[15,8,7,56,63],[16,5,4,63,67],[17,13,12,67,79],[18,16,13,79,92],[19,8,7,92,99],[20,8,6,99,105],[21,13,10,105,115],[22,4,4,115,119],[23,33,24,119,143],[24,6,5,143,148],[25,9,7,148,155],[26,19,16,155,171],[27,6,6,171,177],[28,8,6,177,183],[29,14,12,183,195],[30,15,13,195,208],[31,9,8,208,216],[32,2,2,216,218],[33,13,9,218,227],[34,9,7,227,234],[35,1,1,234,235],[36,18,14,235,249],[37,10,7,249,256],[38,11,9,256,265],[39,7,6,265,271],[40,16,14,271,285],[41,27,19,285,304],[42,15,14,304,318],[43,16,15,318,333],[44,16,11,333,344],[45,7,4,344,348],[46,12,9,348,357],[47,13,10,357,367],[48,8,4,367,371],[49,6,5,371,376]]],[1,391,297,376,673,[[50,4,3,376,379],[51,5,5,379,384],[52,26,14,384,398],[53,19,16,398,414],[54,7,7,414,421],[55,22,13,421,434],[56,18,14,434,448],[57,18,12,448,460],[58,17,11,460,471],[59,12,9,471,480],[60,4,3,480,483],[61,9,9,483,492],[62,5,5,492,497],[63,13,11,497,508],[64,4,3,508,511],[65,20,15,511,526],[66,4,4,526,530],[67,11,9,530,539],[68,24,14,539,553],[69,6,5,553,558],[70,3,1,558,559],[71,5,5,559,564],[72,5,5,564,569],[73,13,9,569,578],[74,9,6,578,584],[75,8,7,584,591],[76,1,1,591,592],[77,13,12,592,604],[78,4,4,604,608],[79,7,6,608,614],[80,4,4,614,618],[81,17,14,618,632],[82,15,9,632,641],[83,10,8,641,649],[84,3,3,649,652],[85,12,9,652,661],[86,2,1,661,662],[87,1,1,662,663],[88,4,4,663,667],[89,7,6,667,673]]],[2,240,180,673,853,[[90,7,5,673,678],[91,4,3,678,681],[93,15,14,681,695],[94,5,5,695,700],[95,11,9,700,709],[96,4,4,709,713],[97,9,8,713,721],[98,16,13,721,734],[99,14,10,734,744],[100,5,3,744,747],[101,5,4,747,751],[102,8,6,751,757],[103,23,17,757,774],[104,8,4,774,778],[105,14,10,778,788],[106,10,6,788,794],[107,8,7,794,801],[108,7,6,801,807],[109,5,4,807,811],[110,12,7,811,818],[111,12,7,818,825],[112,14,10,825,835],[113,8,7,835,842],[114,10,6,842,848],[115,2,2,848,850],[116,4,3,850,853]]],[3,355,275,853,1128,[[117,2,2,853,855],[118,2,1,855,856],[119,5,5,856,861],[120,9,7,861,868],[121,15,13,868,881],[122,11,8,881,889],[123,7,5,889,894],[124,8,6,894,900],[125,6,6,900,906],[126,8,5,906,911],[127,12,10,911,921],[128,10,7,921,928],[129,10,7,928,935],[130,19,17,935,952],[131,17,11,952,963],[132,31,22,963,985],[133,9,8,985,993],[134,10,9,993,1002],[135,11,8,1002,1010],[136,17,14,1010,1024],[137,6,5,1024,1029],[138,32,21,1029,1050],[139,19,14,1050,1064],[140,7,4,1064,1068],[141,8,7,1068,1075],[142,3,2,1075,1077],[143,8,7,1077,1084],[144,2,2,1084,1086],[145,1,1,1086,1087],[146,2,2,1087,1089],[147,15,12,1089,1101],[148,14,12,1101,1113],[149,6,4,1113,1117],[150,4,3,1117,1120],[151,7,6,1120,1126],[152,2,2,1126,1128]]],[4,205,170,1128,1298,[[153,16,14,1128,1142],[154,8,8,1142,1150],[155,5,3,1150,1153],[156,11,9,1153,1162],[157,11,6,1162,1168],[158,1,1,1168,1169],[159,4,3,1169,1172],[160,1,1,1172,1173],[161,11,9,1173,1182],[162,6,4,1182,1186],[163,4,4,1186,1190],[164,4,3,1190,1193],[165,6,6,1193,1199],[166,1,1,1199,1200],[167,2,2,1200,1202],[168,1,1,1202,1203],[169,7,5,1203,1208],[170,9,8,1208,1216],[171,2,2,1216,1218],[172,9,7,1218,1225],[173,9,8,1225,1233],[174,8,7,1233,1240],[175,7,5,1240,1245],[176,4,3,1245,1248],[177,4,4,1248,1252],[178,7,5,1252,1257],[179,4,4,1257,1261],[180,5,5,1261,1266],[181,4,3,1266,1269],[182,5,5,1269,1274],[183,15,11,1274,1285],[184,8,7,1285,1292],[185,2,2,1292,1294],[186,4,4,1294,1298]]],[5,216,158,1298,1456,[[187,6,5,1298,1303],[188,8,7,1303,1310],[189,5,5,1310,1315],[190,11,10,1315,1325],[191,7,6,1325,1331],[192,6,5,1331,1336],[193,7,5,1336,1341],[194,11,8,1341,1349],[195,18,13,1349,1362],[196,25,16,1362,1378],[197,8,6,1378,1384],[199,2,2,1384,1386],[200,4,2,1386,1388],[201,15,10,1388,1398],[202,2,2,1398,1400],[203,6,5,1400,1405],[204,17,13,1405,1418],[205,3,3,1418,1421],[206,8,4,1421,1425],[207,6,4,1425,1429],[208,29,15,1429,1444],[209,2,2,1444,1446],[210,10,10,1446,1456]]],[6,227,180,1456,1636,[[211,2,2,1456,1458],[212,5,4,1458,1462],[213,6,5,1462,1467],[214,16,13,1467,1480],[216,23,19,1480,1499],[217,16,11,1499,1510],[218,9,9,1510,1519],[219,17,13,1519,1532],[220,5,5,1532,1537],[221,22,17,1537,1554],[222,4,3,1554,1557],[223,19,12,1557,1569],[224,4,3,1569,1572],[225,4,4,1572,1576],[226,18,15,1576,1591],[227,1,1,1591,1592],[228,11,11,1592,1603],[229,17,11,1603,1614],[230,17,15,1614,1629],[231,11,7,1629,1636]]],[7,21,18,1636,1654,[[232,6,5,1636,1641],[233,7,7,1641,1648],[234,5,3,1648,1651],[235,3,3,1651,1654]]],[8,354,273,1654,1927,[[236,5,5,1654,1659],[237,7,4,1659,1663],[238,13,11,1663,1674],[239,8,6,1674,1680],[240,4,4,1680,1684],[241,7,6,1684,1690],[242,9,6,1690,1696],[243,8,6,1696,1702],[244,8,8,1702,1710],[245,14,11,1710,1721],[246,7,6,1721,1727],[247,10,9,1727,1736],[248,7,5,1736,1741],[249,28,18,1741,1759],[250,16,14,1759,1773],[251,20,14,1773,1787],[252,28,20,1787,1807],[253,6,6,1807,1813],[254,16,12,1813,1825],[255,18,15,1825,1840],[256,10,8,1840,1848],[257,10,8,1848,1856],[258,16,14,1856,1870],[259,7,6,1870,1876],[260,11,8,1876,1884],[261,17,11,1884,1895],[262,7,6,1895,1901],[263,15,10,1901,1911],[264,9,6,1911,1917],[265,11,8,1917,1925],[266,2,2,1925,1927]]],[9,307,232,1927,2159,[[267,12,12,1927,1939],[268,12,7,1939,1946],[269,22,16,1946,1962],[270,4,3,1962,1965],[271,9,8,1965,1973],[272,5,5,1973,1978],[273,9,9,1978,1987],[274,2,2,1987,1989],[275,9,7,1989,1996],[276,4,3,1996,1999],[277,28,18,1999,2017],[278,17,13,2017,2030],[279,15,15,2030,2045],[280,30,17,2045,2062],[281,11,10,2062,2072],[282,13,10,2072,2082],[283,18,13,2082,2095],[284,14,10,2095,2105],[285,21,13,2105,2118],[286,15,10,2118,2128],[287,6,5,2128,2133],[288,2,2,2133,2135],[289,8,5,2135,2140],[290,21,19,2140,2159]]],[10,288,214,2159,2373,[[291,5,4,2159,2163],[292,15,13,2163,2176],[293,6,6,2176,2182],[294,2,2,2182,2184],[295,6,5,2184,2189],[296,7,5,2189,2194],[297,4,4,2194,2198],[298,40,23,2198,2221],[299,5,4,2221,2225],[300,5,4,2225,2229],[301,8,7,2229,2236],[302,24,14,2236,2250],[303,25,19,2250,2269],[304,9,6,2269,2275],[305,2,2,2275,2277],[306,6,5,2277,2282],[307,14,11,2282,2293],[308,22,17,2293,2310],[309,8,6,2310,2316],[310,24,21,2316,2337],[311,23,17,2337,2354],[312,28,19,2354,2373]]],[11,293,203,2373,2576,[[313,24,13,2373,2386],[314,15,10,2386,2396],[315,9,6,2396,2402],[316,37,23,2402,2425],[317,21,14,2425,2439],[318,23,17,2439,2456],[319,14,11,2456,2467],[320,12,9,2467,2476],[321,25,15,2476,2491],[322,18,12,2491,2503],[323,8,7,2503,2510],[324,2,2,2510,2512],[325,4,4,2512,2516],[326,3,2,2516,2518],[327,1,1,2518,2519],[328,4,3,2519,2522],[329,2,2,2522,2524],[330,19,12,2524,2536],[331,16,12,2536,2548],[332,14,10,2548,2558],[333,2,1,2558,2559],[334,11,8,2559,2567],[335,7,7,2567,2574],[337,2,2,2574,2576]]],[12,65,56,2576,2632,[[339,1,1,2576,2577],[344,1,1,2577,2578],[345,1,1,2578,2579],[346,1,1,2579,2580],[347,1,1,2580,2581],[348,7,6,2581,2587],[349,7,7,2587,2594],[350,7,5,2594,2599],[351,1,1,2599,2600],[352,3,2,2600,2602],[353,3,2,2602,2604],[354,7,7,2604,2611],[355,1,1,2611,2612],[356,6,4,2612,2616],[358,15,13,2616,2629],[365,1,1,2629,2630],[366,2,2,2630,2632]]],[13,163,119,2632,2751,[[368,2,2,2632,2634],[370,1,1,2634,2635],[371,6,3,2635,2638],[372,21,13,2638,2651],[373,2,2,2651,2653],[374,3,3,2653,2656],[375,3,3,2656,2659],[376,14,8,2659,2667],[377,4,3,2667,2670],[378,4,3,2670,2673],[380,2,2,2673,2675],[382,7,5,2675,2680],[384,22,14,2680,2694],[385,5,4,2694,2698],[386,6,6,2698,2704],[387,2,2,2704,2706],[388,3,2,2706,2708],[389,6,5,2708,2713],[390,6,5,2713,2718],[391,7,6,2718,2724],[392,2,2,2724,2726],[393,1,1,2726,2727],[395,1,1,2727,2728],[396,4,3,2728,2731],[397,1,1,2731,2732],[398,5,4,2732,2736],[399,7,4,2736,2740],[400,11,7,2740,2747],[401,3,2,2747,2749],[402,2,2,2749,2751]]],[14,20,18,2751,2769,[[405,3,3,2751,2754],[406,2,1,2754,2755],[408,1,1,2755,2756],[409,2,2,2756,2758],[410,4,3,2758,2761],[411,5,5,2761,2766],[412,3,3,2766,2769]]],[15,61,48,2769,2817,[[413,5,3,2769,2772],[414,14,10,2772,2782],[416,12,7,2782,2789],[417,2,2,2789,2791],[418,9,8,2791,2799],[419,1,1,2799,2800],[420,4,3,2800,2803],[421,7,7,2803,2810],[422,4,4,2810,2814],[423,1,1,2814,2815],[425,2,2,2815,2817]]],[16,59,38,2817,2855,[[426,4,2,2817,2819],[427,15,7,2819,2826],[428,7,4,2826,2830],[429,11,8,2830,2838],[430,6,6,2838,2844],[431,5,4,2844,2848],[432,3,2,2848,2850],[433,3,1,2850,2851],[434,5,4,2851,2855]]],[17,77,65,2855,2920,[[436,5,4,2855,2859],[437,8,6,2859,2865],[438,1,1,2865,2866],[439,3,3,2866,2869],[440,5,4,2869,2873],[442,1,1,2873,2874],[443,2,1,2874,2875],[444,2,2,2875,2877],[445,3,3,2877,2880],[446,1,1,2880,2881],[448,3,2,2881,2883],[450,6,5,2883,2888],[451,2,2,2888,2890],[453,1,1,2890,2891],[456,2,2,2891,2893],[457,2,2,2893,2895],[464,2,2,2895,2897],[465,2,2,2897,2899],[466,1,1,2899,2900],[467,2,2,2900,2902],[468,2,2,2902,2904],[469,5,4,2904,2908],[471,1,1,2908,2909],[473,3,3,2909,2912],[474,1,1,2912,2913],[475,1,1,2913,2914],[476,3,2,2914,2916],[477,7,4,2916,2920]]],[18,142,123,2920,3043,[[479,3,2,2920,2922],[480,1,1,2922,2923],[481,2,2,2923,2925],[482,2,2,2925,2927],[484,1,1,2927,2928],[495,1,1,2928,2929],[499,4,4,2929,2933],[502,3,3,2933,2936],[504,2,1,2936,2937],[505,4,3,2937,2940],[507,4,3,2940,2943],[508,3,3,2943,2946],[509,3,2,2946,2948],[510,3,3,2948,2951],[511,3,2,2951,2953],[513,1,1,2953,2954],[514,1,1,2954,2955],[516,1,1,2955,2956],[517,4,3,2956,2959],[518,1,1,2959,2960],[519,4,4,2960,2964],[520,4,2,2964,2966],[527,2,1,2966,2967],[528,1,1,2967,2968],[532,1,1,2968,2969],[533,1,1,2969,2970],[536,2,2,2970,2972],[538,1,1,2972,2973],[539,1,1,2973,2974],[543,1,1,2974,2975],[546,4,4,2975,2979],[548,1,1,2979,2980],[550,1,1,2980,2981],[554,3,1,2981,2982],[555,1,1,2982,2983],[556,2,2,2983,2985],[557,1,1,2985,2986],[561,3,2,2986,2988],[562,2,1,2988,2989],[563,4,4,2989,2993],[565,2,2,2993,2995],[567,1,1,2995,2996],[568,2,2,2996,2998],[572,1,1,2998,2999],[576,2,2,2999,3001],[578,1,1,3001,3002],[579,4,4,3002,3006],[581,4,4,3006,3010],[582,2,1,3010,3011],[584,6,6,3011,3017],[586,1,1,3017,3018],[596,7,6,3018,3024],[597,1,1,3024,3025],[598,1,1,3025,3026],[600,4,2,3026,3028],[606,1,1,3028,3029],[607,1,1,3029,3030],[608,1,1,3030,3031],[614,1,1,3031,3032],[615,1,1,3032,3033],[618,1,1,3033,3034],[619,4,3,3034,3037],[620,4,4,3037,3041],[621,1,1,3041,3042],[622,1,1,3042,3043]]],[19,23,19,3043,3062,[[629,2,1,3043,3044],[630,2,1,3044,3045],[632,1,1,3045,3046],[633,2,2,3046,3048],[634,5,4,3048,3052],[635,2,1,3052,3053],[642,1,1,3053,3054],[643,1,1,3054,3055],[644,1,1,3055,3056],[646,2,2,3056,3058],[653,2,2,3058,3060],[657,1,1,3060,3061],[658,1,1,3061,3062]]],[20,23,17,3062,3079,[[659,5,3,3062,3065],[661,2,1,3065,3066],[663,1,1,3066,3067],[664,1,1,3067,3068],[665,3,1,3068,3069],[666,2,1,3069,3070],[667,5,5,3070,3075],[668,1,1,3075,3076],[670,3,3,3076,3079]]],[21,7,5,3079,3084,[[672,1,1,3079,3080],[673,2,1,3080,3081],[674,2,1,3081,3082],[676,1,1,3082,3083],[678,1,1,3083,3084]]],[22,179,140,3084,3224,[[679,1,1,3084,3085],[680,4,3,3085,3088],[681,1,1,3088,3089],[684,2,2,3089,3091],[685,6,4,3091,3095],[686,11,6,3095,3101],[687,1,1,3101,3102],[688,1,1,3102,3103],[689,1,1,3103,3104],[691,3,2,3104,3106],[692,6,5,3106,3111],[694,3,3,3111,3114],[695,2,2,3114,3116],[696,4,3,3116,3119],[697,7,4,3119,3123],[699,3,3,3123,3126],[700,5,5,3126,3131],[701,1,1,3131,3132],[702,1,1,3132,3133],[706,2,2,3133,3135],[707,2,2,3135,3137],[708,1,1,3137,3138],[709,1,1,3138,3139],[710,1,1,3139,3140],[714,18,11,3140,3151],[715,18,14,3151,3165],[716,8,6,3165,3171],[717,7,4,3171,3175],[718,3,3,3175,3178],[719,1,1,3178,3179],[722,3,3,3179,3182],[723,4,3,3182,3185],[724,3,3,3185,3188],[726,3,3,3188,3191],[727,4,3,3191,3194],[728,1,1,3194,3195],[729,11,6,3195,3201],[732,1,1,3201,3202],[733,6,5,3202,3207],[734,2,2,3207,3209],[738,4,4,3209,3213],[740,1,1,3213,3214],[741,1,1,3214,3215],[743,4,4,3215,3219],[744,6,5,3219,3224]]],[23,513,378,3224,3602,[[745,9,9,3224,3233],[746,7,7,3233,3240],[747,8,7,3240,3247],[748,3,3,3247,3250],[749,3,3,3250,3253],[750,3,3,3253,3256],[751,11,9,3256,3265],[752,2,2,3265,3267],[753,3,3,3267,3270],[755,12,10,3270,3280],[756,2,2,3280,3282],[757,10,8,3282,3290],[758,7,6,3290,3296],[759,7,4,3296,3300],[760,5,5,3300,3305],[761,5,5,3305,3310],[762,5,5,3310,3315],[763,5,4,3315,3319],[764,2,2,3319,3321],[765,7,5,3321,3326],[766,4,4,3326,3330],[767,5,5,3330,3335],[768,3,3,3335,3338],[769,15,11,3338,3349],[770,26,16,3349,3365],[771,25,12,3365,3377],[772,10,10,3377,3387],[773,27,16,3387,3403],[774,8,5,3403,3408],[775,4,4,3408,3412],[776,16,13,3412,3425],[777,8,7,3425,3432],[778,14,9,3432,3441],[779,17,11,3441,3452],[780,21,15,3452,3467],[781,13,8,3467,3475],[782,33,22,3475,3497],[783,6,6,3497,3503],[784,16,12,3503,3515],[785,10,8,3515,3523],[786,15,10,3523,3533],[787,5,4,3533,3537],[788,9,6,3537,3543],[789,2,2,3543,3545],[790,7,5,3545,3550],[791,7,5,3550,3555],[792,14,9,3555,3564],[793,11,8,3564,3572],[794,28,16,3572,3588],[795,15,11,3588,3599],[796,3,3,3599,3602]]],[24,11,9,3602,3611,[[797,1,1,3602,3603],[798,3,3,3603,3606],[799,3,2,3606,3608],[800,3,2,3608,3610],[801,1,1,3610,3611]]],[25,493,382,3611,3993,[[802,4,4,3611,3615],[803,14,9,3615,3624],[804,29,15,3624,3639],[805,5,5,3639,3644],[806,2,1,3644,3645],[807,7,6,3645,3651],[808,10,9,3651,3660],[809,15,12,3660,3672],[810,5,4,3672,3676],[811,7,5,3676,3681],[812,8,8,3681,3689],[813,14,12,3689,3701],[814,12,11,3701,3712],[815,12,9,3712,3721],[816,1,1,3721,3722],[817,8,8,3722,3730],[818,9,8,3730,3738],[819,7,5,3738,3743],[820,6,4,3743,3747],[821,24,20,3747,3767],[822,19,14,3767,3781],[823,7,7,3781,3788],[824,16,12,3788,3800],[825,12,10,3800,3810],[826,6,4,3810,3814],[827,4,4,3814,3818],[828,6,5,3818,3823],[829,4,4,3823,3827],[830,5,4,3827,3831],[831,4,4,3831,3835],[832,17,11,3835,3846],[833,6,6,3846,3852],[834,14,11,3852,3863],[835,8,7,3863,3870],[836,2,2,3870,3872],[837,8,7,3872,3879],[838,16,11,3879,3890],[839,5,5,3890,3895],[840,3,3,3895,3898],[841,34,26,3898,3924],[842,15,10,3924,3934],[843,13,8,3934,3942],[844,15,12,3942,3954],[845,23,16,3954,3970],[846,8,5,3970,3975],[847,7,4,3975,3979],[848,10,8,3979,3987],[849,7,6,3987,3993]]],[26,30,23,3993,4016,[[850,1,1,3993,3994],[857,9,6,3994,4000],[858,7,5,4000,4005],[859,7,5,4005,4010],[860,5,5,4010,4015],[861,1,1,4015,4016]]],[27,29,25,4016,4041,[[862,3,3,4016,4019],[863,1,1,4019,4020],[864,5,3,4020,4023],[865,1,1,4023,4024],[866,4,3,4024,4027],[867,1,1,4027,4028],[868,4,4,4028,4032],[869,1,1,4032,4033],[870,2,2,4033,4035],[872,3,3,4035,4038],[873,2,2,4038,4040],[875,2,1,4040,4041]]],[28,12,10,4041,4051,[[876,4,4,4041,4045],[877,4,2,4045,4047],[878,4,4,4047,4051]]],[29,14,10,4051,4061,[[880,1,1,4051,4052],[881,1,1,4052,4053],[882,1,1,4053,4054],[883,2,1,4054,4055],[885,7,5,4055,4060],[886,2,1,4060,4061]]],[31,34,27,4061,4088,[[889,18,14,4061,4075],[890,6,5,4075,4080],[891,7,5,4080,4085],[892,3,3,4085,4088]]],[32,7,6,4088,4094,[[893,1,1,4088,4089],[895,1,1,4089,4090],[896,3,2,4090,4092],[899,2,2,4092,4094]]],[33,3,3,4094,4097,[[900,1,1,4094,4095],[901,1,1,4095,4096],[902,1,1,4096,4097]]],[34,4,3,4097,4100,[[903,2,2,4097,4099],[904,2,1,4099,4100]]],[35,3,3,4100,4103,[[906,1,1,4100,4101],[908,2,2,4101,4103]]],[36,15,11,4103,4114,[[909,4,3,4103,4106],[910,11,8,4106,4114]]],[37,76,57,4114,4171,[[911,12,8,4114,4122],[912,6,4,4122,4126],[913,5,3,4126,4129],[914,10,9,4129,4138],[915,9,7,4138,4145],[916,10,7,4145,4152],[917,7,5,4152,4157],[918,3,3,4157,4160],[920,1,1,4160,4161],[921,5,3,4161,4164],[922,1,1,4164,4165],[923,2,2,4165,4167],[924,5,4,4167,4171]]],[38,10,9,4171,4180,[[925,1,1,4171,4172],[926,4,4,4172,4176],[927,5,4,4176,4180]]]],[8,49,52,56,57,59,64,69,71,74,83,84,85,86,87,88,89,92,141,143,153,155,156,157,158,160,166,168,172,174,192,194,195,198,204,213,222,269,299,302,305,309,313,322,326,332,339,343,353,357,358,361,364,367,369,375,383,385,386,387,390,392,394,398,406,412,415,425,430,431,433,434,437,438,445,451,453,455,457,459,460,462,463,465,467,469,471,475,478,484,488,491,497,498,499,501,505,508,512,525,527,530,535,542,545,548,549,550,552,554,556,558,559,562,566,574,584,587,590,593,595,596,597,601,602,605,611,615,616,620,621,629,630,631,632,633,634,635,636,641,647,649,656,664,666,667,675,688,693,694,701,708,716,718,719,728,732,733,736,738,745,746,747,748,749,753,765,766,769,770,773,774,778,780,782,788,794,808,816,818,820,825,829,831,833,834,844,846,847,852,855,857,859,869,870,876,877,878,884,886,889,891,897,902,908,912,916,925,931,934,936,937,944,947,955,958,973,974,984,986,991,992,994,997,1000,1004,1010,1012,1013,1015,1018,1020,1038,1040,1046,1085,1089,1093,1096,1101,1102,1105,1106,1109,1112,1113,1115,1118,1119,1121,1127,1128,1135,1137,1141,1144,1156,1157,1159,1163,1165,1166,1168,1169,1170,1175,1178,1180,1183,1186,1188,1209,1210,1212,1216,1219,1220,1223,1227,1233,1234,1236,1239,1250,1252,1259,1261,1262,1264,1266,1269,1270,1272,1273,1274,1276,1277,1280,1281,1283,1285,1286,1288,1289,1292,1293,1295,1298,1299,1301,1303,1309,1311,1313,1319,1320,1323,1324,1328,1330,1331,1332,1341,1342,1344,1345,1346,1347,1348,1351,1354,1356,1358,1359,1361,1362,1367,1368,1370,1375,1376,1382,1383,1385,1414,1415,1416,1417,1423,1424,1425,1428,1429,1435,1437,1438,1443,1453,1454,1455,1456,1460,1461,1462,1464,1469,1472,1474,1475,1502,1506,1510,1522,1523,1525,1530,1541,1549,1551,1561,1565,1572,1574,1577,1580,1581,1583,1585,1587,1588,1589,1590,1592,1593,1594,1595,1596,1597,1602,1603,1605,1606,1608,1611,1612,1616,1617,1619,1620,1622,1623,1624,1628,1631,1633,1636,1642,1647,1653,1654,1655,1656,1657,1658,1663,1664,1665,1666,1667,1668,1682,1683,1684,1685,1686,1687,1689,1692,1693,1694,1695,1698,1699,1700,1701,1704,1707,1708,1711,1715,1718,1722,1725,1726,1729,1730,1735,1737,1739,1740,1743,1750,1754,1755,1756,1762,1764,1769,1770,1771,1775,1778,1780,1784,1785,1787,1789,1795,1798,1801,1807,1814,1815,1817,1819,1820,1837,1838,1839,1841,1842,1859,1868,1870,1872,1878,1881,1890,1891,1894,1899,1900,1901,1902,1904,1912,1913,1915,1933,1942,1945,1948,1950,1951,1953,1956,1957,1958,1959,1962,1967,1970,1975,1980,1981,1982,1987,1988,1992,1997,2004,2005,2014,2015,2016,2018,2021,2025,2026,2029,2030,2032,2034,2035,2036,2040,2041,2046,2047,2048,2049,2050,2051,2070,2071,2072,2073,2075,2083,2120,2121,2123,2136,2140,2157,2161,2164,2167,2171,2178,2179,2188,2189,2190,2191,2192,2193,2195,2196,2197,2211,2215,2216,2217,2238,2240,2241,2244,2252,2259,2263,2292,2294,2296,2300,2317,2318,2319,2321,2322,2323,2328,2330,2336,2340,2348,2366,2378,2393,2399,2402,2404,2413,2416,2421,2432,2433,2438,2439,2440,2441,2445,2447,2451,2455,2457,2459,2464,2468,2469,2471,2472,2474,2476,2478,2480,2481,2484,2485,2488,2490,2497,2498,2499,2500,2523,2526,2527,2530,2532,2535,2561,2568,2569,2571,2576,2578,2579,2588,2595,2599,2613,2647,2682,2683,2685,2697,2708,2719,2727,2728,2739,2742,2746,2747,2748,2760,2761,2764,2770,2774,2796,2797,2799,2800,2802,2807,2811,2813,2816,2818,2820,2823,2825,2829,2838,2839,2842,2844,2848,2850,2855,2857,2860,2863,2868,2873,2874,2879,2901,2902,2907,2908,2918,2920,2921,2922,2925,2926,2932,2948,2955,2956,2957,2958,2959,2960,2961,2962,2965,2966,2971,2975,2976,2980,2981,2982,2983,2985,2986,2988,2989,2995,2996,2998,2999,3030,3045,3046,3048,3050,3053,3054,3059,3061,3068,3071,3112,3113,3114,3116,3119,3134,3144,3145,3149,3151,3152,3153,3156,3157,3161,3162,3164,3169,3170,3182,3197,3202,3203,3204,3216,3219,3223,3224,3227,3228,3229,3236,3237,3239,3240,3243,3244,3252,3253,3257,3265,3269,3270,3271,3282,3283,3285,3302,3304,3312,3319,3320,3324,3334,3346,3347,3348,3361,3362,3368,3369,3370,3371,3372,3382,3386,3387,3395,3403,3404,3411,3412,3425,3426,3428,3435,3436,3446,3447,3448,3457,3459,3460,3461,3469,3470,3471,3479,3482,3494,3510,3533,3549,3571,3572,3604,3605,3652,3659,3697,3703,3706,3732,3736,3744,3753,3755,3758,3760,3762,3764,3793,3795,3796,3797,3798,3800,3803,3804,3807,3809,3811,3815,3817,3824,3825,3833,3836,3845,3846,3848,3849,3854,3855,3856,3861,3939,3940,3941,3942,3944,3958,3962,3966,3969,3972,3973,3974,3975,3989,3991,3992,4017,4018,4026,4030,4035,4036,4040,4042,4047,4048,4049,4054,4063,4065,4067,4069,4070,4072,4073,4076,4092,4101,4102,4105,4106,4107,4110,4111,4112,4115,4116,4118,4119,4121,4122,4124,4132,4134,4136,4138,4147,4148,4152,4154,4155,4170,4171,4175,4176,4186,4188,4189,4190,4191,4197,4199,4202,4203,4208,4209,4210,4212,4213,4214,4217,4218,4219,4220,4230,4231,4236,4237,4238,4240,4241,4244,4245,4246,4250,4252,4253,4254,4256,4257,4258,4260,4261,4265,4277,4279,4282,4283,4287,4290,4291,4292,4293,4295,4296,4303,4306,4315,4316,4317,4318,4319,4321,4323,4325,4327,4329,4330,4334,4335,4338,4347,4348,4349,4361,4374,4379,4380,4382,4383,4384,4385,4387,4388,4389,4391,4392,4393,4395,4400,4405,4407,4409,4410,4411,4412,4413,4417,4420,4421,4422,4427,4429,4430,4431,4432,4433,4441,4442,4443,4445,4447,4456,4457,4458,4472,4475,4476,4477,4479,4481,4487,4490,4541,4560,4562,4565,4566,4567,4569,4572,4578,4579,4648,4649,4662,4665,4666,4667,4676,4677,4679,4685,4688,4689,4712,4713,4718,4720,4725,4727,4732,4734,4735,4736,4737,4738,4743,4747,4749,4798,4810,4811,4814,4817,4818,4832,4846,4854,4855,4870,4873,4877,4886,4892,4893,4895,4898,4899,4901,4909,4912,4914,4917,4921,4933,4934,4935,4937,4939,4940,4947,4955,4964,4967,4969,4975,4977,4998,5001,5005,5011,5014,5016,5019,5025,5043,5046,5049,5054,5075,5076,5080,5081,5084,5096,5112,5121,5137,5144,5167,5168,5169,5170,5176,5178,5183,5184,5185,5187,5190,5196,5197,5221,5235,5236,5237,5245,5249,5266,5273,5274,5275,5279,5280,5288,5315,5328,5335,5348,5369,5372,5373,5376,5378,5390,5393,5395,5398,5399,5401,5402,5403,5411,5417,5429,5430,5432,5435,5436,5437,5446,5449,5450,5451,5453,5460,5465,5466,5467,5472,5483,5484,5485,5486,5491,5494,5505,5510,5511,5515,5524,5535,5536,5540,5548,5554,5555,5556,5567,5568,5569,5573,5575,5587,5588,5594,5599,5618,5624,5636,5643,5647,5681,5686,5707,5709,5713,5718,5721,5722,5729,5730,5735,5737,5742,5744,5746,5748,5749,5751,5756,5798,5803,5804,5806,5807,5808,5810,5817,5838,5840,5843,5848,5849,5852,5853,5854,5867,5868,5872,5873,5878,5886,5887,5892,5893,5897,5898,5899,5900,5902,5911,5914,5915,5918,5920,5922,5923,5925,5928,5931,5936,5937,5943,5947,5948,5949,5951,5955,5956,5957,5965,5978,5979,5986,5995,5999,6003,6007,6011,6020,6022,6025,6031,6035,6038,6043,6044,6045,6046,6048,6049,6053,6054,6056,6058,6059,6064,6067,6068,6070,6072,6073,6079,6082,6083,6084,6085,6086,6087,6088,6089,6091,6107,6108,6109,6112,6113,6126,6130,6155,6176,6193,6197,6203,6205,6209,6210,6211,6212,6213,6215,6217,6223,6267,6268,6279,6282,6283,6290,6292,6296,6297,6299,6301,6302,6305,6306,6307,6308,6309,6310,6311,6312,6332,6333,6348,6373,6374,6376,6378,6382,6383,6384,6426,6428,6430,6432,6433,6434,6435,6436,6437,6439,6441,6444,6445,6454,6457,6458,6462,6475,6478,6483,6484,6487,6495,6497,6498,6499,6500,6503,6510,6520,6546,6549,6555,6562,6577,6581,6583,6588,6596,6602,6604,6605,6606,6607,6612,6613,6616,6617,6618,6619,6620,6621,6660,6661,6662,6666,6667,6668,6669,6670,6671,6672,6673,6674,6676,6681,6683,6684,6690,6693,6694,6696,6698,6699,6700,6701,6703,6704,6705,6709,6711,6719,6720,6721,6727,6733,6734,6737,6741,6742,6743,6755,6761,6768,6769,6785,6787,6790,6792,6800,6802,6804,6808,6811,6821,6823,6825,6826,6829,6832,6836,6837,6838,6839,6841,6842,6843,6846,6848,6857,6861,6863,6864,6865,6866,6868,6871,6872,6875,6887,6890,6892,6893,6894,6895,6897,6899,6900,6901,6905,6906,6912,6918,6919,6930,6933,6940,6947,6950,6952,6954,6955,6956,6958,6959,6960,6961,6962,6963,6964,6967,6975,6977,6989,6995,6997,7001,7003,7007,7008,7011,7016,7017,7018,7019,7026,7029,7030,7035,7036,7042,7046,7047,7049,7052,7053,7055,7065,7070,7074,7077,7078,7083,7084,7086,7090,7091,7096,7099,7101,7102,7107,7108,7110,7114,7115,7124,7125,7134,7142,7143,7145,7147,7151,7157,7158,7159,7160,7170,7171,7177,7188,7189,7201,7203,7204,7226,7231,7237,7238,7239,7256,7267,7274,7276,7280,7281,7282,7283,7284,7285,7287,7288,7291,7293,7297,7300,7302,7303,7304,7313,7318,7323,7325,7327,7329,7339,7342,7345,7346,7351,7352,7353,7355,7357,7359,7360,7361,7373,7374,7375,7376,7379,7391,7394,7401,7407,7408,7412,7414,7417,7418,7420,7421,7426,7429,7432,7434,7435,7436,7440,7442,7443,7446,7447,7448,7455,7457,7459,7461,7465,7466,7468,7470,7477,7478,7479,7480,7494,7497,7498,7502,7508,7509,7514,7516,7517,7519,7520,7527,7534,7535,7540,7541,7542,7544,7548,7549,7551,7553,7560,7561,7566,7570,7571,7573,7576,7579,7580,7584,7586,7588,7592,7594,7595,7596,7598,7602,7603,7605,7606,7608,7610,7612,7614,7615,7616,7617,7618,7621,7626,7638,7644,7646,7648,7650,7651,7652,7655,7657,7658,7659,7661,7662,7663,7667,7669,7673,7676,7677,7686,7693,7694,7697,7698,7707,7709,7710,7713,7715,7717,7719,7721,7722,7723,7724,7729,7734,7735,7740,7741,7742,7743,7749,7755,7757,7759,7761,7762,7764,7768,7770,7773,7774,7776,7782,7783,7785,7786,7787,7788,7789,7790,7792,7796,7798,7800,7801,7812,7813,7816,7818,7819,7820,7826,7827,7829,7832,7833,7834,7836,7837,7842,7843,7846,7855,7856,7861,7862,7866,7870,7878,7886,7887,7897,7901,7906,7907,7909,7910,7911,7912,7913,7914,7919,7920,7930,7931,7932,7935,7938,7939,7940,7943,7944,7949,7950,7951,7954,7955,7957,7963,7965,7970,7971,7973,7975,7976,7978,7979,7981,7985,7989,7990,7993,7999,8004,8012,8020,8024,8025,8026,8027,8029,8030,8031,8032,8035,8036,8038,8046,8050,8054,8058,8063,8071,8072,8075,8088,8089,8093,8095,8097,8099,8101,8102,8104,8105,8108,8110,8112,8113,8114,8119,8125,8126,8128,8133,8135,8138,8140,8143,8149,8151,8155,8160,8163,8166,8167,8178,8182,8183,8184,8185,8197,8199,8200,8207,8208,8216,8219,8229,8230,8231,8233,8235,8236,8238,8242,8243,8249,8263,8265,8266,8268,8269,8270,8271,8272,8273,8274,8275,8278,8279,8280,8282,8283,8284,8286,8287,8290,8291,8293,8299,8301,8304,8305,8306,8307,8309,8310,8313,8322,8323,8324,8327,8328,8330,8337,8341,8342,8345,8347,8350,8352,8354,8356,8358,8359,8360,8364,8365,8366,8368,8371,8374,8377,8378,8380,8385,8386,8387,8388,8389,8391,8392,8395,8396,8402,8404,8408,8411,8416,8425,8428,8429,8435,8437,8442,8443,8444,8446,8447,8448,8450,8452,8455,8456,8461,8462,8463,8464,8467,8469,8470,8472,8474,8480,8481,8482,8490,8495,8500,8502,8504,8506,8510,8516,8522,8525,8530,8534,8538,8539,8541,8544,8545,8546,8552,8553,8557,8558,8560,8564,8569,8570,8571,8575,8576,8577,8581,8582,8583,8585,8590,8609,8644,8663,8666,8669,8674,8676,8694,8695,8696,8697,8698,8699,8701,8702,8703,8704,8705,8706,8708,8709,8710,8713,8714,8715,8716,8728,8730,8732,8750,8777,8783,8784,8786,8788,8789,8798,8799,8800,8809,8810,8812,8814,8817,8821,8827,8832,8837,8842,8871,8872,8879,8880,8883,8886,8887,8904,8907,8908,8914,8923,8938,8939,8948,8968,8986,8987,8991,8992,9003,9013,9014,9015,9018,9019,9020,9023,9026,9027,9028,9029,9031,9032,9033,9037,9039,9043,9044,9053,9054,9075,9079,9081,9085,9086,9098,9110,9117,9118,9126,9129,9130,9148,9154,9156,9158,9160,9161,9163,9165,9166,9167,9171,9173,9174,9178,9179,9185,9188,9190,9191,9192,9194,9195,9196,9197,9198,9199,9201,9202,9204,9205,9206,9211,9213,9215,9221,9223,9224,9228,9231,9246,9267,9269,9284,9290,9295,9296,9301,9318,9319,9325,9327,9328,9330,9335,9336,9337,9338,9341,9342,9343,9344,9346,9356,9358,9360,9361,9362,9363,9371,9372,9381,9383,9384,9385,9387,9389,9390,9396,9400,9402,9406,9410,9413,9414,9415,9416,9417,9418,9420,9421,9430,9431,9436,9438,9439,9440,9441,9442,9443,9447,9448,9450,9453,9454,9455,9456,9457,9458,9459,9462,9465,9466,9467,9468,9470,9471,9472,9473,9479,9482,9483,9484,9485,9486,9488,9489,9493,9494,9495,9496,9497,9498,9502,9506,9510,9515,9516,9529,9535,9536,9538,9539,9540,9541,9542,9543,9544,9545,9546,9548,9549,9553,9554,9556,9560,9567,9569,9570,9571,9572,9576,9583,9588,9589,9590,9600,9602,9604,9605,9608,9609,9611,9612,9613,9614,9615,9616,9620,9621,9622,9623,9625,9626,9627,9628,9630,9636,9639,9642,9644,9650,9652,9653,9654,9655,9657,9658,9660,9662,9669,9670,9671,9672,9673,9675,9679,9682,9683,9684,9685,9689,9692,9693,9695,9696,9697,9700,9702,9703,9706,9707,9710,9711,9712,9713,9714,9715,9716,9717,9719,9724,9725,9728,9730,9731,9732,9735,9736,9737,9741,9748,9759,9761,9762,9767,9768,9769,9770,9774,9775,9776,9779,9781,9783,9788,9789,9794,9795,9798,9799,9800,9802,9807,9808,9810,9811,9812,9823,9833,9836,9837,9838,9842,9843,9844,9854,9857,9875,9885,9886,9894,9904,9905,9937,9970,9972,9973,9987,9996,10038,10041,10042,10043,10046,10049,10050,10051,10054,10055,10056,10061,10063,10064,10066,10067,10070,10071,10081,10088,10089,10093,10094,10095,10099,10100,10102,10103,10106,10109,10110,10112,10114,10117,10126,10149,10153,10154,10159,10160,10161,10163,10165,10166,10171,10174,10176,10177,10182,10190,10228,10245,10327,10558,10581,10640,10663,10674,10676,10688,10691,10696,10698,10721,10728,10737,10739,10740,10743,10760,10762,10763,10766,10772,10773,10775,10794,10803,10840,10843,10864,10865,10866,10867,10868,10878,10881,10900,10909,10910,10917,10924,10936,10939,10942,10943,10944,10945,10947,10951,10952,10956,10957,10960,10961,11144,11182,11187,11214,11222,11248,11270,11271,11275,11290,11301,11302,11303,11307,11308,11311,11314,11315,11316,11318,11319,11320,11326,11336,11357,11363,11364,11365,11369,11376,11398,11400,11402,11404,11405,11407,11409,11410,11416,11417,11418,11442,11444,11448,11484,11486,11511,11513,11516,11518,11519,11544,11545,11546,11547,11549,11550,11554,11556,11557,11559,11562,11567,11570,11571,11577,11578,11580,11582,11596,11608,11611,11614,11615,11624,11633,11636,11651,11653,11658,11663,11668,11670,11671,11688,11689,11694,11696,11700,11711,11714,11719,11720,11721,11722,11748,11752,11757,11809,11833,11836,11847,11864,11876,11881,11894,11899,11915,11918,11921,11926,11942,11948,11949,11955,11956,11959,11961,11987,11988,12006,12013,12098,12104,12105,12112,12172,12180,12182,12216,12218,12229,12238,12241,12242,12243,12248,12253,12258,12262,12302,12305,12307,12311,12312,12314,12315,12316,12318,12319,12320,12321,12324,12363,12368,12370,12373,12374,12378,12379,12383,12399,12403,12404,12405,12406,12409,12411,12412,12418,12425,12494,12496,12506,12515,12527,12534,12537,12538,12540,12545,12577,12586,12587,12588,12613,12677,12692,12716,12724,12727,12732,12736,12737,12738,12739,12740,12751,12756,12759,12760,12764,12768,12770,12772,12773,12775,12777,12778,12783,12784,12787,12789,12791,12793,12798,12800,12805,12807,12814,12815,12826,12854,12857,12860,12864,12876,12877,12881,12883,12893,12894,12896,12897,12901,12904,12926,12932,12935,12942,12952,12956,12959,12977,13025,13034,13055,13063,13088,13095,13107,13121,13156,13168,13211,13216,13225,13228,13229,13249,13258,13294,13360,13374,13415,13416,13551,13556,13577,13579,13611,13642,13649,13663,13676,13697,13701,13706,13714,13757,13813,13815,13834,13845,13887,13891,13897,13929,13930,13931,13933,13950,13952,13961,13968,13970,13975,13980,14001,14124,14209,14212,14228,14231,14252,14266,14267,14299,14300,14301,14304,14321,14327,14328,14333,14337,14353,14361,14364,14380,14381,14384,14393,14403,14440,14484,14524,14526,14529,14530,14543,14556,14558,14562,14565,14569,14570,14672,14704,14748,14758,14799,14807,14821,14828,14890,14951,14953,14961,14968,14978,15037,15094,15167,15191,15197,15209,15261,15266,15279,15286,15287,15288,15300,15317,15321,15394,15402,15405,15465,15505,15506,15515,15522,15523,15538,15540,15579,15593,15598,15600,15619,15705,15706,15712,15718,15727,15729,15769,15904,15918,15934,15946,15957,16030,16075,16082,16099,16100,16140,16147,16151,16231,16233,16284,16287,16291,16292,16294,16299,16301,16302,16318,16335,16451,16460,16525,16546,16569,16597,16598,16600,16602,16606,16819,16843,16881,16943,16949,17156,17168,17261,17292,17320,17321,17322,17379,17398,17423,17431,17472,17476,17478,17479,17488,17489,17508,17528,17529,17530,17558,17575,17588,17625,17642,17677,17687,17688,17689,17715,17772,17775,17785,17786,17788,17792,17808,17810,17812,17818,17826,17829,17848,17871,17894,17914,17920,17930,17938,17943,17944,17947,17970,17981,17982,17990,17991,17999,18001,18004,18007,18015,18021,18024,18041,18046,18051,18057,18060,18063,18067,18070,18088,18113,18175,18176,18204,18215,18246,18254,18265,18332,18333,18334,18337,18340,18341,18342,18345,18346,18347,18352,18354,18355,18357,18358,18359,18361,18362,18367,18373,18375,18380,18381,18385,18386,18391,18392,18394,18395,18408,18409,18413,18415,18417,18420,18422,18438,18445,18452,18550,18552,18555,18575,18581,18583,18589,18593,18598,18626,18627,18630,18637,18641,18658,18670,18674,18675,18677,18678,18679,18680,18737,18742,18743,18745,18747,18751,18756,18760,18829,18832,18834,18835,18865,18881,18898,18899,18902,18904,18924,18927,18934,18939,18941,18950,18953,18955,18957,18958,18959,18960,18963,18965,18966,18968,18972,18984,18992,18994,18996,19003,19008,19009,19010,19012,19013,19019,19028,19030,19032,19063,19066,19077,19092,19108,19110,19120,19123,19131,19132,19139,19144,19145,19146,19147,19157,19167,19178,19187,19192,19227,19228,19229,19232,19235,19237,19238,19240,19246,19249,19250,19255,19267,19269,19272,19274,19277,19278,19279,19280,19294,19304,19305,19307,19310,19311,19316,19317,19334,19335,19337,19346,19347,19348,19355,19372,19376,19377,19381,19384,19385,19389,19395,19402,19403,19409,19418,19421,19422,19425,19434,19441,19443,19444,19448,19453,19462,19465,19472,19475,19505,19517,19519,19521,19522,19527,19528,19531,19536,19537,19538,19541,19549,19551,19560,19561,19562,19564,19566,19574,19575,19576,19577,19580,19581,19583,19584,19585,19587,19588,19589,19590,19591,19594,19595,19597,19598,19599,19600,19605,19608,19609,19610,19612,19613,19615,19618,19619,19621,19622,19623,19624,19626,19630,19631,19633,19634,19636,19638,19642,19643,19645,19647,19649,19651,19654,19656,19659,19660,19661,19663,19665,19666,19668,19669,19670,19671,19688,19697,19700,19703,19712,19732,19737,19738,19739,19743,19747,19749,19756,19757,19764,19767,19768,19773,19776,19778,19779,19789,19794,19798,19801,19802,19803,19807,19808,19809,19813,19815,19818,19823,19824,19825,19827,19828,19834,19835,19836,19837,19838,19839,19840,19843,19844,19846,19849,19856,19857,19858,19860,19861,19862,19865,19867,19869,19873,19874,19876,19877,19880,19881,19887,19888,19890,19892,19896,19897,19899,19901,19902,19903,19904,19906,19907,19909,19910,19911,19912,19913,19914,19915,19917,19918,19919,19920,19921,19922,19924,19928,19935,19937,19938,19939,19942,19943,19945,19946,19947,19949,19951,19953,19954,19955,19956,19957,19958,19963,19964,19965,19967,19969,19971,19972,19977,19979,19980,19982,19983,19984,19985,19987,19995,19996,19998,19999,20005,20007,20011,20014,20017,20026,20030,20034,20041,20044,20046,20055,20058,20061,20070,20074,20076,20078,20079,20080,20081,20088,20091,20099,20101,20111,20116,20120,20124,20129,20131,20146,20147,20155,20158,20161,20163,20167,20171,20172,20180,20182,20184,20185,20187,20195,20197,20201,20202,20203,20204,20210,20211,20213,20215,20221,20224,20237,20247,20256,20272,20273,20274,20275,20285,20291,20302,20322,20344,20350,20351,20375,20395,20424,20437,20463,20467,20473,20474,20487,20493,20494,20495,20496,20498,20499,20500,20501,20502,20503,20505,20506,20507,20508,20509,20512,20513,20517,20518,20524,20525,20526,20528,20529,20532,20536,20537,20544,20545,20550,20564,20565,20572,20573,20574,20576,20578,20583,20584,20589,20590,20591,20593,20595,20603,20607,20609,20610,20611,20612,20613,20616,20617,20618,20619,20620,20621,20625,20626,20629,20631,20634,20635,20640,20644,20655,20656,20657,20660,20666,20669,20676,20679,20680,20681,20683,20688,20689,20690,20692,20697,20699,20701,20703,20706,20708,20709,20710,20716,20717,20719,20720,20722,20724,20725,20727,20728,20732,20733,20735,20737,20738,20743,20750,20752,20753,20755,20763,20767,20787,20788,20790,20791,20795,20799,20826,20827,20828,20829,20831,20833,20836,20837,20850,20855,20860,20861,20864,20882,20885,20890,20892,20897,20898,20900,20901,20902,20903,20904,20905,20910,20913,20922,20923,20924,20925,20930,20933,20934,20937,20940,20941,20945,20946,20947,20948,20951,20952,20956,20958,20961,20962,20965,20972,20973,20974,20977,20985,20989,20993,20995,20996,20999,21008,21012,21019,21021,21023,21024,21034,21043,21046,21047,21049,21051,21057,21058,21059,21060,21071,21074,21075,21076,21079,21082,21084,21085,21086,21089,21101,21102,21107,21120,21122,21124,21150,21152,21153,21158,21168,21177,21178,21184,21193,21200,21201,21205,21224,21226,21229,21231,21232,21234,21237,21238,21240,21242,21243,21244,21247,21248,21249,21250,21254,21265,21266,21272,21281,21282,21290,21291,21292,21301,21302,21303,21305,21307,21311,21314,21315,21323,21326,21327,21333,21334,21345,21347,21360,21368,21374,21375,21379,21383,21388,21400,21401,21404,21406,21408,21409,21412,21414,21415,21416,21418,21426,21427,21428,21433,21437,21449,21463,21476,21479,21481,21483,21491,21493,21494,21495,21500,21503,21504,21505,21508,21509,21511,21512,21514,21516,21517,21518,21519,21520,21521,21522,21523,21525,21526,21527,21530,21532,21538,21541,21543,21545,21548,21551,21552,21553,21554,21555,21559,21562,21565,21566,21571,21573,21575,21576,21577,21578,21579,21585,21588,21589,21590,21591,21592,21601,21603,21604,21605,21606,21608,21610,21612,21614,21615,21616,21618,21620,21624,21626,21629,21632,21637,21641,21646,21649,21674,21675,21676,21679,21680,21681,21685,21686,21687,21688,21695,21698,21703,21714,21722,21723,21730,21734,21748,21962,21967,21968,21970,21975,21978,21990,21991,21994,22005,22009,22018,22026,22027,22031,22035,22042,22043,22045,22052,22059,22088,22095,22096,22098,22112,22129,22131,22133,22141,22156,22165,22167,22168,22185,22188,22192,22193,22195,22209,22221,22244,22245,22247,22256,22258,22284,22292,22305,22310,22311,22324,22331,22345,22346,22351,22355,22386,22402,22418,22439,22472,22474,22476,22478,22479,22483,22532,22533,22535,22536,22537,22538,22539,22540,22541,22542,22543,22544,22545,22546,22549,22550,22552,22555,22558,22559,22560,22561,22564,22566,22569,22570,22577,22580,22612,22622,22623,22674,22681,22693,22712,22717,22733,22744,22753,22788,22822,22829,22841,22846,22849,22857,22865,22867,22870,22871,22872,22875,22876,22879,22881,22882,22885,22887,22892,22897,22899,22901,22903,22907,22910,22914,22916,22922,22924,22926,22927,22928,22930,22931,22933,22934,22935,22938,22939,22940,22941,22944,22946,22947,22951,22952,22953,22955,22956,22959,22962,22963,22965,22966,22967,22970,22979,22994,22997,23026,23040,23041,23043,23055,23062,23065,23070,23073,23076,23085,23090,23104,23106,23107,23116,23121,23125,23127,23130]]],["+",[293,284,[[0,14,13,0,13,[[15,1,1,0,1],[19,2,2,1,3],[20,1,1,3,4],[23,1,1,4,5],[26,1,1,5,6],[27,2,2,6,8],[38,2,2,8,10],[40,2,1,10,11],[41,1,1,11,12],[44,1,1,12,13]]],[1,24,24,13,37,[[50,1,1,13,14],[54,1,1,14,15],[57,4,4,15,19],[58,2,2,19,21],[59,1,1,21,22],[61,1,1,22,23],[63,1,1,23,24],[65,1,1,24,25],[72,1,1,25,26],[73,1,1,26,27],[74,2,2,27,29],[75,2,2,29,31],[76,1,1,31,32],[77,1,1,32,33],[83,2,2,33,35],[85,1,1,35,36],[88,1,1,36,37]]],[2,24,23,37,60,[[93,4,4,37,41],[95,2,2,41,43],[98,1,1,43,44],[99,4,3,44,47],[100,1,1,47,48],[103,6,6,48,54],[105,3,3,54,57],[113,2,2,57,59],[114,1,1,59,60]]],[3,26,26,60,86,[[120,1,1,60,61],[121,2,2,61,63],[124,2,2,63,65],[127,2,2,65,67],[131,3,3,67,70],[132,2,2,70,72],[133,1,1,72,73],[134,2,2,73,75],[135,3,3,75,78],[136,1,1,78,79],[137,1,1,79,80],[139,3,3,80,83],[145,1,1,83,84],[147,1,1,84,85],[149,1,1,85,86]]],[4,14,13,86,99,[[155,2,2,86,88],[157,1,1,88,89],[161,1,1,89,90],[163,2,2,90,92],[165,1,1,92,93],[170,1,1,93,94],[172,1,1,94,95],[174,1,1,95,96],[175,3,2,96,98],[182,1,1,98,99]]],[5,7,7,99,106,[[187,1,1,99,100],[190,1,1,100,101],[192,1,1,101,102],[203,1,1,102,103],[206,1,1,103,104],[208,1,1,104,105],[209,1,1,105,106]]],[6,7,7,106,113,[[216,1,1,106,107],[217,1,1,107,108],[221,1,1,108,109],[223,1,1,109,110],[226,2,2,110,112],[230,1,1,112,113]]],[7,1,1,113,114,[[232,1,1,113,114]]],[8,23,23,114,137,[[238,3,3,114,117],[244,1,1,117,118],[245,1,1,118,119],[246,1,1,119,120],[249,1,1,120,121],[251,1,1,121,122],[252,1,1,122,123],[254,1,1,123,124],[255,1,1,124,125],[256,1,1,125,126],[258,3,3,126,129],[259,1,1,129,130],[260,1,1,130,131],[261,2,2,131,133],[262,1,1,133,134],[264,1,1,134,135],[265,1,1,135,136],[266,1,1,136,137]]],[9,10,10,137,147,[[269,1,1,137,138],[271,1,1,138,139],[273,1,1,139,140],[277,3,3,140,143],[278,1,1,143,144],[280,1,1,144,145],[283,1,1,145,146],[287,1,1,146,147]]],[10,14,13,147,160,[[293,1,1,147,148],[295,1,1,148,149],[296,1,1,149,150],[298,2,2,150,152],[300,1,1,152,153],[301,1,1,153,154],[303,2,1,154,155],[308,1,1,155,156],[312,4,4,156,160]]],[11,17,16,160,176,[[313,3,3,160,163],[316,3,2,163,165],[317,1,1,165,166],[318,1,1,166,167],[320,1,1,167,168],[321,2,2,168,170],[322,2,2,170,172],[323,1,1,172,173],[331,1,1,173,174],[332,1,1,174,175],[335,1,1,175,176]]],[12,5,5,176,181,[[349,1,1,176,177],[354,1,1,177,178],[358,2,2,178,180],[366,1,1,180,181]]],[13,9,9,181,190,[[371,1,1,181,182],[372,1,1,182,183],[374,1,1,183,184],[376,1,1,184,185],[384,1,1,185,186],[385,1,1,186,187],[387,1,1,187,188],[389,1,1,188,189],[397,1,1,189,190]]],[15,4,4,190,194,[[413,1,1,190,191],[414,1,1,191,192],[418,1,1,192,193],[420,1,1,193,194]]],[16,4,4,194,198,[[429,2,2,194,196],[430,1,1,196,197],[431,1,1,197,198]]],[17,10,10,198,208,[[437,2,2,198,200],[438,1,1,200,201],[443,1,1,201,202],[445,1,1,202,203],[448,1,1,203,204],[456,2,2,204,206],[471,1,1,206,207],[477,1,1,207,208]]],[18,13,13,208,221,[[479,1,1,208,209],[505,1,1,209,210],[510,1,1,210,211],[513,1,1,211,212],[517,1,1,212,213],[518,1,1,213,214],[546,1,1,214,215],[568,2,2,215,217],[579,2,2,217,219],[620,1,1,219,220],[621,1,1,220,221]]],[19,3,3,221,224,[[632,1,1,221,222],[644,1,1,222,223],[646,1,1,223,224]]],[20,2,2,224,226,[[661,1,1,224,225],[666,1,1,225,226]]],[22,4,4,226,230,[[684,1,1,226,227],[687,1,1,227,228],[716,1,1,228,229],[732,1,1,229,230]]],[23,16,15,230,245,[[747,1,1,230,231],[749,1,1,231,232],[758,1,1,232,233],[759,1,1,233,234],[763,1,1,234,235],[769,1,1,235,236],[772,1,1,236,237],[778,1,1,237,238],[780,2,2,238,240],[782,1,1,240,241],[784,1,1,241,242],[786,1,1,242,243],[790,1,1,243,244],[794,2,1,244,245]]],[25,30,28,245,273,[[803,1,1,245,246],[804,2,2,246,248],[807,1,1,248,249],[811,2,2,249,251],[813,1,1,251,252],[822,2,2,252,254],[824,1,1,254,255],[825,1,1,255,256],[832,4,4,256,260],[835,1,1,260,261],[842,3,3,261,264],[843,5,4,264,268],[845,1,1,268,269],[846,3,2,269,271],[848,1,1,271,272],[849,1,1,272,273]]],[26,2,2,273,275,[[858,2,2,273,275]]],[27,1,1,275,276,[[864,1,1,275,276]]],[31,2,2,276,278,[[891,1,1,276,277],[892,1,1,277,278]]],[36,1,1,278,279,[[910,1,1,278,279]]],[37,5,4,279,283,[[911,1,1,279,280],[913,2,1,280,281],[914,1,1,281,282],[916,1,1,282,283]]],[38,1,1,283,284,[[926,1,1,283,284]]]],[392,499,501,530,605,746,774,780,1165,1170,1216,1273,1385,1549,1633,1718,1737,1739,1740,1743,1770,1795,1838,1901,1981,2161,2179,2211,2216,2241,2244,2292,2318,2499,2526,2568,2682,2807,2816,2818,2823,2860,2863,2958,2981,2982,2995,3030,3114,3151,3152,3156,3162,3164,3203,3216,3228,3460,3469,3494,3758,3795,3796,3941,3942,4030,4048,4176,4189,4191,4209,4237,4250,4260,4279,4291,4292,4293,4321,4349,4420,4432,4442,4648,4677,4814,4998,5001,5054,5168,5235,5236,5273,5395,5446,5472,5510,5511,5721,5867,5914,5955,6290,6376,6437,6475,6673,6719,6857,6892,6959,6962,7083,7143,7280,7285,7291,7417,7443,7447,7542,7603,7648,7723,7743,7776,7818,7832,7836,7861,7886,7909,7920,7938,7973,7979,8020,8108,8155,8185,8265,8275,8280,8304,8388,8472,8585,8837,8887,8923,8991,9032,9086,9118,9190,9344,9489,9495,9496,9498,9540,9541,9546,9609,9639,9660,9685,9748,9774,9775,9798,9800,9844,10095,10103,10182,10760,10867,10944,10952,11187,11275,11319,11357,11409,11559,11578,11633,11670,11864,12302,12320,12411,12506,12775,12777,12789,12800,12894,12896,12926,13034,13095,13168,13360,13374,13757,13931,13952,14304,14381,14440,14529,14543,14968,15402,15405,15538,15540,16302,16318,16525,16881,16949,17379,17472,17772,17848,18409,18737,19010,19077,19305,19317,19409,19549,19631,19803,19844,19867,19906,19946,19983,20070,20184,20500,20505,20513,20573,20635,20655,20703,20958,20961,21021,21076,21232,21238,21240,21244,21334,21530,21538,21541,21554,21555,21562,21565,21603,21637,21646,21688,21723,22005,22009,22133,22560,22569,22867,22897,22922,22935,22953,23116]]],["Against",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20215]]],["For",[3,3,[[8,1,1,0,1,[[236,1,1,0,1]]],[10,1,1,1,2,[[306,1,1,1,2]]],[25,1,1,2,3,[[822,1,1,2,3]]]],[7239,9296,20951]]],["In",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9682]]],["To",[5,5,[[11,1,1,0,1,[[321,1,1,0,1]]],[22,3,3,1,4,[[706,1,1,1,2],[718,2,2,2,4]]],[25,1,1,4,5,[[832,1,1,4,5]]]],[9761,18176,18438,18445,21248]]],["Unto",[9,9,[[0,2,2,0,2,[[2,1,1,0,1],[12,1,1,1,2]]],[1,1,1,2,3,[[82,1,1,2,3]]],[11,1,1,3,4,[[321,1,1,3,4]]],[18,4,4,4,8,[[502,1,1,4,5],[505,1,1,5,6],[536,1,1,6,7],[600,1,1,7,8]]],[19,1,1,8,9,[[635,1,1,8,9]]]],[71,322,2476,9761,14252,14300,14807,16099,16606]]],["about",[1,1,[[11,1,1,0,1,[[323,1,1,0,1]]]],[9836]]],["according",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[203,1,1,1,2]]]],[6215,6279]]],["after",[7,6,[[2,3,2,0,2,[[108,1,1,0,1],[109,2,1,1,2]]],[18,1,1,2,3,[[519,1,1,2,3]]],[23,1,1,3,4,[[749,1,1,3,4]]],[25,2,2,4,6,[[812,1,1,4,5],[846,1,1,5,6]]]],[3312,3324,14556,19066,20676,21641]]],["against",[147,132,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,2,2,1,3,[[63,1,1,1,2],[75,1,1,2,3]]],[3,3,3,3,6,[[129,1,1,3,4],[138,1,1,4,5],[140,1,1,5,6]]],[4,2,2,6,8,[[180,2,2,6,8]]],[5,1,1,8,9,[[196,1,1,8,9]]],[6,10,9,9,18,[[211,2,2,9,11],[219,1,1,11,12],[221,1,1,12,13],[222,1,1,13,14],[230,5,4,14,18]]],[8,9,9,18,27,[[238,1,1,18,19],[242,1,1,19,20],[252,1,1,20,21],[257,1,1,21,22],[258,1,1,22,23],[259,1,1,23,24],[260,1,1,24,25],[262,1,1,25,26],[266,1,1,26,27]]],[9,5,5,27,32,[[276,1,1,27,28],[277,1,1,28,29],[284,1,1,29,30],[286,1,1,30,31],[290,1,1,31,32]]],[10,6,5,32,37,[[297,2,2,32,34],[306,3,2,34,36],[312,1,1,36,37]]],[11,6,6,37,43,[[315,1,1,37,38],[321,1,1,38,39],[328,1,1,39,40],[331,3,3,40,43]]],[12,2,2,43,45,[[356,2,2,43,45]]],[13,6,6,45,51,[[377,1,1,45,46],[380,1,1,46,47],[382,1,1,47,48],[388,1,1,48,49],[398,1,1,49,50],[401,1,1,50,51]]],[15,1,1,51,52,[[417,1,1,51,52]]],[16,1,1,52,53,[[432,1,1,52,53]]],[17,6,5,53,58,[[444,1,1,53,54],[450,3,2,54,56],[467,1,1,56,57],[468,1,1,57,58]]],[18,1,1,58,59,[[614,1,1,58,59]]],[20,1,1,59,60,[[667,1,1,59,60]]],[22,9,9,60,69,[[680,1,1,60,61],[681,1,1,61,62],[701,1,1,62,63],[710,1,1,63,64],[714,1,1,64,65],[715,4,4,65,69]]],[23,41,32,69,101,[[745,1,1,69,70],[757,1,1,70,71],[759,1,1,71,72],[765,1,1,72,73],[769,2,1,73,74],[770,4,3,74,77],[771,1,1,77,78],[772,2,2,78,80],[778,2,1,80,81],[780,2,2,81,83],[783,1,1,83,84],[788,1,1,84,85],[791,3,2,85,87],[793,4,3,87,90],[794,9,5,90,95],[795,6,6,95,101]]],[25,26,23,101,124,[[805,1,1,101,102],[807,1,1,102,103],[814,4,4,103,107],[821,1,1,107,108],[822,3,3,108,111],[825,1,1,111,112],[826,5,3,112,115],[829,1,1,115,116],[830,3,2,116,118],[831,1,1,118,119],[835,1,1,119,120],[836,1,1,120,121],[839,2,2,121,123],[840,1,1,123,124]]],[26,2,2,124,126,[[857,1,1,124,125],[860,1,1,125,126]]],[27,1,1,126,127,[[868,1,1,126,127]]],[32,1,1,127,128,[[896,1,1,127,128]]],[33,3,3,128,131,[[900,1,1,128,129],[901,1,1,129,130],[902,1,1,130,131]]],[37,1,1,131,132,[[924,1,1,131,132]]]],[87,1894,2252,4106,4400,4456,5618,5636,6070,6510,6520,6787,6841,6872,7065,7077,7078,7084,7288,7359,7651,7800,7813,7846,7878,7940,8012,8249,8284,8490,8569,8696,8938,8939,9290,9295,9495,9583,9770,9972,10081,10088,10089,10917,10924,11418,11484,11513,11651,11894,11987,12383,12814,13055,13216,13228,13642,13663,16231,17489,17689,17715,18088,18265,18340,18373,18375,18380,18381,18965,19280,19335,19453,19564,19581,19583,19584,19609,19626,19634,19808,19849,19873,19924,20017,20074,20080,20146,20147,20161,20167,20187,20195,20197,20211,20213,20215,20224,20237,20272,20274,20532,20565,20710,20716,20725,20728,20941,20946,20947,20948,21058,21085,21086,21089,21178,21193,21201,21226,21323,21347,21427,21428,21449,21968,22052,22193,22623,22693,22712,22717,23070]]],["among",[6,6,[[5,1,1,0,1,[[199,1,1,0,1]]],[8,1,1,1,2,[[245,1,1,1,2]]],[23,1,1,2,3,[[748,1,1,2,3]]],[25,3,3,3,6,[[803,1,1,3,4],[814,1,1,4,5],[840,1,1,5,6]]]],[6176,7440,19030,20498,20727,21476]]],["at",[54,52,[[0,4,4,0,4,[[5,1,1,0,1],[13,1,1,1,2],[19,1,1,2,3],[42,1,1,3,4]]],[1,3,3,4,7,[[68,1,1,4,5],[77,1,1,5,6],[85,1,1,6,7]]],[2,9,9,7,16,[[90,1,1,7,8],[93,5,5,8,13],[94,1,1,13,14],[97,1,1,14,15],[98,1,1,15,16]]],[3,2,2,16,18,[[126,1,1,16,17],[147,1,1,17,18]]],[4,1,1,18,19,[[168,1,1,18,19]]],[5,9,8,19,27,[[191,1,1,19,20],[194,1,1,20,21],[197,1,1,21,22],[201,1,1,22,23],[204,3,2,23,25],[207,1,1,25,26],[208,1,1,26,27]]],[6,3,3,27,30,[[222,1,1,27,28],[230,2,2,28,30]]],[8,1,1,30,31,[[257,1,1,30,31]]],[9,1,1,31,32,[[269,1,1,31,32]]],[10,1,1,32,33,[[303,1,1,32,33]]],[11,1,1,33,34,[[322,1,1,33,34]]],[17,1,1,34,35,[[476,1,1,34,35]]],[18,1,1,35,36,[[516,1,1,35,36]]],[20,1,1,36,37,[[670,1,1,36,37]]],[22,3,3,37,40,[[685,1,1,37,38],[691,1,1,38,39],[744,1,1,39,40]]],[23,1,1,40,41,[[794,1,1,40,41]]],[25,12,11,41,52,[[817,1,1,41,42],[822,1,1,42,43],[823,1,1,43,44],[841,3,2,44,46],[845,3,3,46,49],[848,1,1,49,50],[849,2,2,50,52]]]],[143,353,508,1323,2041,2300,2595,2748,2802,2813,2820,2825,2829,2839,2932,2962,3991,4676,5348,5937,6031,6112,6209,6307,6312,6384,6437,6875,7070,7074,7801,8113,9204,9807,13897,14524,17529,17785,17914,18927,20180,20787,20965,20989,21517,21521,21610,21616,21624,21686,21730,21734]]],["because",[2,1,[[8,2,1,0,1,[[239,2,1,0,1]]]],[7318]]],["before",[8,8,[[0,2,2,0,2,[[11,1,1,0,1],[29,1,1,1,2]]],[3,2,2,2,4,[[129,1,1,2,3],[130,1,1,3,4]]],[11,1,1,4,5,[[317,1,1,4,5]]],[18,1,1,5,6,[[561,1,1,5,6]]],[22,1,1,6,7,[[719,1,1,6,7]]],[23,1,1,7,8,[[750,1,1,7,8]]]],[313,869,4105,4118,9672,15266,18452,19110]]],["beside",[2,2,[[1,1,1,0,1,[[78,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]]],[2348,7090]]],["both",[1,1,[[23,1,1,0,1,[[780,1,1,0,1]]]],[19858]]],["by",[27,26,[[0,2,2,0,2,[[23,1,1,0,1],[37,1,1,1,2]]],[2,1,1,2,3,[[90,1,1,2,3]]],[9,1,1,3,4,[[284,1,1,3,4]]],[10,1,1,4,5,[[309,1,1,4,5]]],[11,2,2,5,7,[[323,1,1,5,6],[335,1,1,6,7]]],[17,1,1,7,8,[[464,1,1,7,8]]],[22,1,1,8,9,[[743,1,1,8,9]]],[23,6,5,9,14,[[775,1,1,9,10],[777,2,1,10,11],[785,1,1,11,12],[790,1,1,12,13],[792,1,1,13,14]]],[25,11,11,14,25,[[804,1,1,14,15],[818,1,1,15,16],[832,1,1,16,17],[841,2,2,17,19],[842,1,1,19,20],[844,2,2,20,22],[847,1,1,22,23],[848,1,1,23,24],[849,1,1,24,25]]],[36,1,1,25,26,[[910,1,1,25,26]]]],[602,1135,2761,8482,9406,9843,10176,13551,18902,19700,19779,19969,20055,20099,20517,20833,21237,21495,21526,21543,21575,21585,21676,21695,21714,22865]]],["concerning",[17,15,[[8,1,1,0,1,[[238,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[13,1,1,3,4,[[372,1,1,3,4]]],[22,3,3,4,7,[[694,1,1,4,5],[707,1,1,5,6],[715,1,1,6,7]]],[23,7,6,7,13,[[766,1,1,7,8],[771,1,1,8,9],[773,1,1,9,10],[774,2,1,10,11],[776,1,1,11,12],[788,1,1,12,13]]],[25,3,2,13,15,[[814,1,1,13,14],[822,2,1,14,15]]]],[7288,9026,10093,11314,17982,18215,18385,19472,19615,19666,19671,19767,20011,20724,20972]]],["for",[54,49,[[1,1,1,0,1,[[57,1,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[5,1,1,3,4,[[196,1,1,3,4]]],[6,1,1,4,5,[[231,1,1,4,5]]],[8,3,3,5,8,[[250,1,1,5,6],[251,1,1,6,7],[255,1,1,7,8]]],[9,7,5,8,13,[[276,1,1,8,9],[280,2,2,9,11],[284,2,1,11,12],[287,2,1,12,13]]],[10,3,3,13,16,[[304,1,1,13,14],[309,1,1,14,15],[311,1,1,15,16]]],[11,5,4,16,20,[[316,1,1,16,17],[318,1,1,17,18],[319,1,1,18,19],[320,2,1,19,20]]],[13,3,3,20,23,[[384,1,1,20,21],[398,1,1,21,22],[400,1,1,22,23]]],[15,1,1,23,24,[[423,1,1,23,24]]],[18,2,2,24,26,[[484,1,1,24,25],[561,1,1,25,26]]],[19,1,1,26,27,[[646,1,1,26,27]]],[22,2,2,27,29,[[685,1,1,27,28],[716,1,1,28,29]]],[23,3,3,29,32,[[753,1,1,29,30],[792,2,2,30,32]]],[24,2,1,32,33,[[800,2,1,32,33]]],[25,12,11,33,44,[[807,2,2,33,35],[808,1,1,35,36],[820,2,2,36,38],[828,4,3,38,41],[837,2,2,41,43],[846,1,1,43,44]]],[27,2,2,44,46,[[864,1,1,44,45],[870,1,1,45,46]]],[28,1,1,46,47,[[878,1,1,46,47]]],[36,1,1,47,48,[[909,1,1,47,48]]],[38,1,1,48,49,[[926,1,1,48,49]]]],[1735,3604,5643,6088,7108,7595,7596,7764,8242,8385,8389,8481,8581,9223,9390,9473,9616,9685,9714,9730,11550,11876,11959,12613,14001,15261,16943,17788,18408,19192,20111,20116,20437,20572,20574,20583,20882,20892,21124,21152,21153,21368,21388,21632,22131,22209,22346,22849,23104]]],["from",[1,1,[[1,1,1,0,1,[[85,1,1,0,1]]]],[2588]]],["hath",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1438]]],["him",[3,3,[[0,1,1,0,1,[[43,1,1,0,1]]],[5,1,1,1,2,[[191,1,1,1,2]]],[9,1,1,2,3,[[267,1,1,2,3]]]],[1342,5947,8030]]],["in",[83,80,[[0,8,7,0,7,[[5,1,1,0,1],[7,1,1,1,2],[13,1,1,2,3],[22,1,1,3,4],[23,1,1,4,5],[24,2,1,5,6],[48,1,1,6,7]]],[1,3,3,7,10,[[74,1,1,7,8],[77,2,2,8,10]]],[2,4,4,10,14,[[97,1,1,10,11],[103,3,3,11,14]]],[3,3,3,14,17,[[120,1,1,14,15],[132,1,1,15,16],[135,1,1,16,17]]],[4,2,2,17,19,[[156,1,1,17,18],[175,1,1,18,19]]],[5,2,2,19,21,[[195,1,1,19,20],[208,1,1,20,21]]],[6,1,1,21,22,[[224,1,1,21,22]]],[8,5,4,22,26,[[252,2,1,22,23],[254,2,2,23,25],[262,1,1,25,26]]],[9,3,3,26,29,[[277,1,1,26,27],[286,1,1,27,28],[289,1,1,28,29]]],[10,3,3,29,32,[[296,2,2,29,31],[298,1,1,31,32]]],[11,3,3,32,35,[[321,1,1,32,33],[330,2,2,33,35]]],[13,3,3,35,38,[[372,2,2,35,37],[398,1,1,37,38]]],[15,3,3,38,41,[[414,1,1,38,39],[416,1,1,39,40],[418,1,1,40,41]]],[18,6,6,41,47,[[481,1,1,41,42],[508,1,1,42,43],[533,1,1,43,44],[581,1,1,44,45],[607,1,1,45,46],[608,1,1,46,47]]],[19,2,2,47,49,[[630,1,1,47,48],[658,1,1,48,49]]],[20,1,1,49,50,[[667,1,1,49,50]]],[22,6,6,50,56,[[685,1,1,50,51],[697,1,1,51,52],[714,2,2,52,54],[722,1,1,54,55],[744,1,1,55,56]]],[23,11,10,56,66,[[746,1,1,56,57],[751,1,1,57,58],[773,2,1,58,59],[774,1,1,59,60],[776,1,1,60,61],[779,1,1,61,62],[781,1,1,62,63],[782,1,1,63,64],[793,1,1,64,65],[795,1,1,65,66]]],[25,13,13,66,79,[[811,1,1,66,67],[812,1,1,67,68],[815,2,2,68,70],[817,2,2,70,72],[818,1,1,72,73],[837,1,1,73,74],[840,1,1,74,75],[844,2,2,75,77],[845,2,2,77,79]]],[26,1,1,79,80,[[859,1,1,79,80]]]],[153,204,339,590,636,667,1502,2216,2319,2323,2925,3116,3153,3161,3755,4212,4306,5043,5524,6064,6437,6918,7667,7719,7722,7931,8274,8564,8666,8904,8923,9015,9783,10046,10054,11311,11314,11881,12319,12370,12411,13970,14337,14758,15593,16147,16151,16460,17292,17476,17785,18021,18337,18345,18552,18939,18984,19123,19661,19669,19739,19838,19892,19902,20129,20272,20634,20666,20735,20738,20767,20791,20833,21374,21463,21588,21589,21612,21629,22018]]],["into",[306,290,[[0,24,23,0,23,[[5,2,2,0,2],[6,5,5,2,7],[7,2,1,7,8],[18,2,2,8,10],[20,1,1,10,11],[21,1,1,11,12],[23,1,1,12,13],[27,1,1,13,14],[35,1,1,14,15],[36,2,2,15,17],[38,1,1,17,18],[39,2,2,18,20],[41,2,2,20,22],[48,1,1,22,23]]],[1,23,22,23,45,[[53,2,1,23,24],[56,1,1,24,25],[58,1,1,25,26],[62,2,2,26,28],[64,2,2,28,30],[65,1,1,30,31],[67,2,2,31,33],[72,1,1,33,34],[73,3,3,34,37],[74,1,1,37,38],[78,1,1,38,39],[79,1,1,39,40],[82,1,1,40,41],[89,4,4,41,45]]],[2,20,19,45,64,[[95,1,1,45,46],[98,1,1,46,47],[99,1,1,47,48],[101,1,1,48,49],[103,7,7,49,56],[105,6,5,56,61],[108,1,1,61,62],[112,1,1,62,63],[114,1,1,63,64]]],[3,31,31,64,95,[[121,1,1,64,65],[123,1,1,65,66],[127,1,1,66,67],[130,5,5,67,72],[131,2,2,72,74],[132,2,2,74,76],[133,1,1,76,77],[135,3,3,77,80],[136,4,4,80,84],[138,1,1,84,85],[141,1,1,85,86],[143,1,1,86,87],[147,2,2,87,89],[148,2,2,89,91],[149,2,2,91,93],[150,1,1,93,94],[151,1,1,94,95]]],[4,20,20,95,115,[[153,1,1,95,96],[154,1,1,96,97],[158,1,1,97,98],[159,2,2,98,100],[160,1,1,100,101],[161,2,2,101,103],[165,1,1,103,104],[169,1,1,104,105],[170,1,1,105,106],[171,1,1,106,107],[176,1,1,107,108],[178,1,1,108,109],[181,1,1,109,110],[182,1,1,110,111],[183,3,3,111,114],[184,1,1,114,115]]],[5,6,6,115,121,[[190,1,1,115,116],[196,3,3,116,119],[208,1,1,119,120],[210,1,1,120,121]]],[6,8,8,121,129,[[214,1,1,121,122],[217,1,1,122,123],[219,1,1,123,124],[229,5,5,124,129]]],[7,1,1,129,130,[[235,1,1,129,130]]],[8,11,11,130,141,[[237,1,1,130,131],[239,4,4,131,135],[241,1,1,135,136],[242,1,1,136,137],[249,1,1,137,138],[256,1,1,138,139],[262,1,1,139,140],[264,1,1,140,141]]],[9,4,4,141,145,[[271,1,1,141,142],[277,1,1,142,143],[283,1,1,143,144],[284,1,1,144,145]]],[10,11,10,145,155,[[293,1,1,145,146],[296,1,1,146,147],[298,1,1,147,148],[303,1,1,148,149],[304,1,1,149,150],[306,1,1,150,151],[307,1,1,151,152],[310,2,1,152,153],[311,1,1,153,154],[312,1,1,154,155]]],[11,13,11,155,166,[[316,4,3,155,158],[318,1,1,158,159],[319,3,2,159,161],[322,1,1,161,162],[331,2,2,162,164],[334,1,1,164,165],[335,1,1,165,166]]],[12,4,4,166,170,[[348,1,1,166,167],[350,1,1,167,168],[356,1,1,168,169],[358,1,1,169,170]]],[13,6,6,170,176,[[371,1,1,170,171],[373,1,1,171,172],[378,1,1,172,173],[389,1,1,173,174],[392,1,1,174,175],[393,1,1,175,176]]],[14,1,1,176,177,[[412,1,1,176,177]]],[15,6,6,177,183,[[414,2,2,177,179],[418,1,1,179,180],[419,1,1,180,181],[420,1,1,181,182],[421,1,1,182,183]]],[16,10,9,183,192,[[426,2,1,183,184],[427,2,2,184,186],[428,2,2,186,188],[429,2,2,188,190],[432,2,2,190,192]]],[17,3,3,192,195,[[453,1,1,192,193],[473,1,1,193,194],[475,1,1,194,195]]],[18,3,3,195,198,[[550,1,1,195,196],[556,1,1,196,197],[572,1,1,197,198]]],[20,1,1,198,199,[[659,1,1,198,199]]],[21,4,3,199,202,[[673,2,1,199,200],[676,1,1,200,201],[678,1,1,201,202]]],[22,6,6,202,208,[[691,1,1,202,203],[700,1,1,203,204],[702,1,1,204,205],[715,2,2,205,207],[743,1,1,207,208]]],[23,26,24,208,232,[[746,1,1,208,209],[748,1,1,209,210],[752,1,1,210,211],[758,1,1,211,212],[765,1,1,212,213],[770,2,2,213,215],[772,2,2,215,217],[773,1,1,217,218],[776,1,1,218,219],[779,3,3,219,222],[780,1,1,222,223],[781,2,1,223,224],[782,4,4,224,228],[785,2,1,228,229],[791,1,1,229,230],[792,1,1,230,231],[795,1,1,231,232]]],[24,1,1,232,233,[[798,1,1,232,233]]],[25,45,41,233,274,[[804,2,2,233,235],[806,2,1,235,236],[809,1,1,236,237],[811,1,1,237,238],[814,1,1,238,239],[815,1,1,239,240],[818,1,1,240,241],[821,8,7,241,248],[822,1,1,248,249],[823,2,2,249,251],[824,1,1,251,252],[825,1,1,252,253],[833,1,1,253,254],[837,1,1,254,255],[838,2,2,255,257],[839,1,1,257,258],[841,3,3,258,261],[843,3,2,261,263],[844,2,2,263,265],[845,6,5,265,270],[847,3,3,270,273],[848,1,1,273,274]]],[26,1,1,274,275,[[860,1,1,274,275]]],[27,1,1,275,276,[[872,1,1,275,276]]],[28,2,2,276,278,[[877,1,1,276,277],[878,1,1,277,278]]],[29,1,1,278,279,[[885,1,1,278,279]]],[31,6,5,279,284,[[889,5,4,279,283],[890,1,1,283,284]]],[36,1,1,284,285,[[909,1,1,284,285]]],[37,5,4,285,289,[[915,3,2,285,287],[916,1,1,287,288],[920,1,1,288,289]]],[38,1,1,289,290,[[927,1,1,289,290]]]],[155,156,160,166,168,172,174,192,459,460,545,549,611,788,1046,1105,1119,1169,1175,1183,1269,1277,1506,1608,1708,1762,1872,1878,1942,1945,1950,2004,2026,2164,2190,2192,2195,2211,2366,2402,2484,2727,2728,2739,2742,2879,2976,2986,3048,3119,3145,3151,3152,3156,3157,3164,3203,3204,3224,3227,3229,3304,3412,3471,3809,3939,4054,4116,4124,4132,4138,4148,4155,4171,4208,4241,4252,4295,4296,4303,4315,4323,4335,4338,4388,4479,4566,4688,4718,4725,4727,4798,4811,4818,4873,4914,4967,5096,5112,5137,5144,5178,5185,5288,5372,5393,5417,5535,5575,5707,5713,5748,5749,5751,5807,5915,6083,6084,6091,6439,6484,6621,6709,6800,7035,7036,7046,7047,7053,7201,7276,7300,7302,7303,7304,7345,7353,7534,7787,7931,7978,8140,8270,8462,8495,8817,8904,8991,9202,9246,9301,9336,9438,9455,9515,9614,9642,9644,9679,9715,9719,9808,10093,10094,10165,10177,10688,10773,10909,10961,11275,11326,11448,11663,11748,11757,12258,12314,12315,12412,12425,12494,12534,12724,12738,12740,12756,12760,12764,12773,12814,12815,13294,13815,13887,15037,15197,15465,17322,17575,17625,17642,17920,18070,18113,18385,18386,18904,18972,19032,19167,19311,19444,19594,19595,19621,19624,19649,19749,19825,19827,19834,19865,19890,19901,19904,19906,19909,19964,20079,20124,20275,20344,20524,20525,20550,20620,20640,20717,20750,20829,20901,20905,20910,20923,20930,20933,20937,20974,20995,20996,21046,21060,21272,21383,21409,21418,21433,21479,21494,21509,21553,21566,21576,21577,21608,21615,21618,21620,21626,21674,21675,21676,21687,22045,22245,22331,22345,22476,22535,22536,22543,22546,22555,22846,22940,22944,22953,23026,23130]]],["me",[2,2,[[8,1,1,0,1,[[244,1,1,0,1]]],[25,1,1,1,2,[[839,1,1,1,2]]]],[7407,21426]]],["near",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8386]]],["of",[31,28,[[0,3,3,0,3,[[19,1,1,0,1],[21,1,1,1,2],[25,1,1,2,3]]],[1,2,2,3,5,[[75,1,1,3,4],[87,1,1,4,5]]],[2,2,1,5,6,[[102,2,1,5,6]]],[9,3,3,6,9,[[269,1,1,6,7],[273,1,1,7,8],[290,1,1,8,9]]],[10,1,1,9,10,[[296,1,1,9,10]]],[11,1,1,10,11,[[331,1,1,10,11]]],[17,4,4,11,15,[[440,1,1,11,12],[450,1,1,12,13],[477,2,2,13,15]]],[23,9,7,15,22,[[770,3,3,15,18],[773,4,2,18,20],[784,1,1,20,21],[786,1,1,21,22]]],[25,5,5,22,27,[[813,1,1,22,23],[820,1,1,23,24],[822,1,1,24,25],[845,1,1,25,26],[847,1,1,26,27]]],[32,1,1,27,28,[[899,1,1,27,28]]]],[497,549,694,2240,2647,3059,8099,8199,8708,8914,10070,12956,13225,13929,13930,19575,19585,19591,19651,19656,19957,19985,20699,20885,20956,21606,21674,22681]]],["on",[45,40,[[1,3,3,0,3,[[68,1,1,0,1],[77,1,1,1,2],[88,1,1,2,3]]],[2,1,1,3,4,[[91,1,1,3,4]]],[5,3,3,4,7,[[191,1,1,4,5],[203,2,2,5,7]]],[6,1,1,7,8,[[225,1,1,7,8]]],[8,7,5,8,13,[[237,1,1,8,9],[241,1,1,9,10],[251,2,1,10,11],[252,2,1,11,12],[258,1,1,12,13]]],[9,4,4,13,17,[[269,1,1,13,14],[274,1,1,14,15],[280,2,2,15,17]]],[10,2,2,17,19,[[300,1,1,17,18],[308,1,1,18,19]]],[11,4,3,19,22,[[321,4,3,19,22]]],[17,1,1,22,23,[[464,1,1,22,23]]],[18,4,3,23,26,[[499,1,1,23,24],[504,2,1,24,25],[514,1,1,25,26]]],[22,1,1,26,27,[[729,1,1,26,27]]],[23,2,2,27,29,[[780,1,1,27,28],[792,1,1,28,29]]],[25,9,8,29,37,[[802,1,1,29,30],[808,1,1,30,31],[824,1,1,31,32],[841,1,1,32,33],[842,3,2,33,35],[843,1,1,35,36],[844,1,1,36,37]]],[27,2,2,37,39,[[865,1,1,37,38],[873,1,1,38,39]]],[34,1,1,39,40,[[903,1,1,39,40]]]],[2046,2317,2683,2774,5948,6282,6283,6947,7274,7346,7602,7621,7834,8110,8216,8359,8378,9098,9387,9762,9769,9789,13556,14212,14299,14484,18678,19865,20091,20474,20593,21012,21517,21551,21552,21559,21592,22141,22258,22744]]],["over",[23,19,[[5,3,2,0,2,[[194,2,1,0,1],[195,1,1,1,2]]],[9,7,5,2,7,[[267,1,1,2,3],[268,3,1,3,4],[269,1,1,4,5],[286,1,1,5,6],[289,1,1,6,7]]],[10,1,1,7,8,[[298,1,1,7,8]]],[11,5,4,8,12,[[317,1,1,8,9],[321,4,3,9,12]]],[23,4,4,12,16,[[777,1,1,12,13],[792,1,1,13,14],[793,1,1,14,15],[794,1,1,15,16]]],[25,1,1,16,17,[[842,1,1,16,17]]],[27,1,1,17,18,[[873,1,1,17,18]]],[37,1,1,18,19,[[911,1,1,18,19]]]],[6035,6038,8046,8058,8114,8577,8676,8992,9658,9759,9762,9768,19801,20120,20146,20210,21532,22256,22899]]],["thee",[5,5,[[18,5,5,0,5,[[509,1,1,0,1],[517,1,1,1,2],[563,1,1,2,3],[565,1,1,3,4],[620,1,1,4,5]]]],[14364,14530,15286,15317,16299]]],["their",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6053]]],["therein",[1,1,[[25,1,1,0,1,[[803,1,1,0,1]]]],[20502]]],["thereon",[2,2,[[3,1,1,0,1,[[132,1,1,0,1]]],[25,1,1,1,2,[[841,1,1,1,2]]]],[4212,21516]]],["through",[2,2,[[3,1,1,0,1,[[141,1,1,0,1]]],[25,1,1,1,2,[[842,1,1,1,2]]]],[4479,21545]]],["to",[1174,1013,[[0,73,70,0,70,[[2,1,1,0,1],[3,2,2,1,3],[5,1,1,3,4],[7,1,1,4,5],[8,1,1,5,6],[10,1,1,6,7],[13,2,2,7,9],[14,1,1,9,10],[15,1,1,10,11],[16,1,1,11,12],[18,3,3,12,15],[19,1,1,15,16],[20,1,1,16,17],[21,3,3,17,20],[23,6,6,20,26],[24,2,2,26,28],[25,2,2,28,30],[26,5,5,30,35],[27,1,1,35,36],[28,3,3,36,39],[29,2,2,39,41],[30,4,4,41,45],[31,5,4,45,49],[33,1,1,49,50],[34,1,1,50,51],[36,5,4,51,55],[37,2,2,55,57],[38,1,1,57,58],[40,2,2,58,60],[41,5,4,60,64],[42,2,2,64,66],[43,2,2,66,68],[44,2,2,68,70]]],[1,28,26,70,96,[[51,2,2,70,72],[52,1,1,72,73],[53,2,2,73,75],[54,2,2,75,77],[55,1,1,77,78],[61,1,1,78,79],[63,1,1,79,80],[65,2,2,80,82],[68,3,3,82,85],[70,1,1,85,86],[73,1,1,86,87],[74,1,1,87,88],[75,3,2,88,90],[79,1,1,90,91],[82,1,1,91,92],[85,3,3,92,95],[86,2,1,95,96]]],[2,19,19,96,115,[[91,1,1,96,97],[93,2,2,97,99],[94,1,1,99,100],[95,1,1,100,101],[97,1,1,101,102],[100,1,1,102,103],[102,1,1,103,104],[103,1,1,104,105],[104,2,2,105,107],[107,3,3,107,110],[109,1,1,110,111],[110,1,1,111,112],[111,2,2,112,114],[113,1,1,114,115]]],[3,26,22,115,137,[[120,1,1,115,116],[122,2,1,116,117],[126,3,2,117,119],[128,1,1,119,120],[129,3,1,120,121],[130,2,2,121,123],[132,1,1,123,124],[137,1,1,124,125],[138,1,1,125,126],[139,2,2,126,128],[140,2,2,128,130],[143,1,1,130,131],[146,1,1,131,132],[148,2,2,132,134],[151,2,2,134,136],[152,1,1,136,137]]],[4,12,9,137,146,[[159,2,1,137,138],[161,2,1,138,139],[164,2,1,139,140],[174,2,2,140,142],[182,1,1,142,143],[184,2,2,143,145],[186,1,1,145,146]]],[5,48,37,146,183,[[188,2,2,146,148],[190,1,1,148,149],[193,1,1,149,150],[194,2,2,150,152],[195,3,2,152,154],[196,4,2,154,156],[197,4,2,156,158],[201,5,5,158,163],[202,1,1,163,164],[204,11,9,164,173],[205,3,3,173,176],[206,1,1,176,177],[208,10,6,177,183]]],[6,33,30,183,213,[[212,1,1,183,184],[214,4,4,184,188],[216,2,2,188,190],[217,3,3,190,193],[219,2,2,193,195],[220,2,2,195,197],[221,2,2,197,199],[223,3,2,199,201],[224,1,1,201,202],[225,3,3,202,205],[226,2,2,205,207],[228,1,1,207,208],[229,2,2,208,210],[231,5,3,210,213]]],[7,2,2,213,215,[[234,2,2,213,215]]],[8,125,108,215,323,[[236,2,2,215,217],[238,4,4,217,221],[240,1,1,221,222],[241,3,2,222,224],[242,1,1,224,225],[243,2,2,225,227],[244,4,4,227,231],[245,6,5,231,236],[246,2,2,236,238],[248,3,3,238,241],[249,7,7,241,248],[250,4,4,248,252],[251,4,4,252,256],[252,13,10,256,266],[253,2,2,266,268],[254,6,5,268,273],[255,4,4,273,277],[256,4,4,277,281],[257,4,3,281,284],[258,6,6,284,290],[259,2,2,290,292],[260,7,7,292,299],[261,14,9,299,308],[262,1,1,308,309],[263,7,5,309,314],[264,2,2,314,316],[265,10,7,316,323]]],[9,103,88,323,411,[[267,1,1,323,324],[268,5,4,324,328],[269,10,8,328,336],[270,2,2,336,338],[271,5,5,338,343],[272,2,2,343,345],[273,1,1,345,346],[275,1,1,346,347],[277,7,6,347,353],[278,7,6,353,359],[279,6,6,359,365],[280,11,8,365,373],[281,5,5,373,378],[282,4,3,378,381],[283,8,7,381,388],[284,2,2,388,390],[285,9,5,390,395],[286,5,5,395,400],[288,1,1,400,401],[289,4,4,401,405],[290,7,6,405,411]]],[10,77,71,411,482,[[291,1,1,411,412],[292,5,5,412,417],[293,1,1,417,418],[295,3,2,418,420],[296,1,1,420,421],[297,2,2,421,423],[298,6,5,423,428],[299,2,2,428,430],[300,2,2,430,432],[301,3,2,432,434],[302,7,6,434,440],[303,7,7,440,447],[304,3,3,447,450],[305,1,1,450,451],[306,1,1,451,452],[307,4,3,452,455],[308,5,5,455,460],[309,1,1,460,461],[310,6,6,461,467],[311,10,10,467,477],[312,6,5,477,482]]],[11,118,99,482,581,[[313,3,3,482,485],[314,5,5,485,490],[315,5,4,490,494],[316,17,12,494,506],[317,9,7,506,513],[318,7,6,513,519],[319,6,6,519,525],[320,3,3,525,528],[321,9,7,528,535],[322,10,8,535,543],[323,3,3,543,546],[324,1,1,546,547],[326,3,2,547,549],[328,2,2,549,551],[329,2,2,551,553],[330,12,10,553,563],[331,6,5,563,568],[332,3,3,568,571],[333,2,1,571,572],[334,6,5,572,577],[335,2,2,577,579],[337,2,2,579,581]]],[12,36,32,581,613,[[339,1,1,581,582],[344,1,1,582,583],[345,1,1,583,584],[346,1,1,584,585],[347,1,1,585,586],[348,6,6,586,592],[349,4,4,592,596],[350,5,4,596,600],[351,1,1,600,601],[352,1,1,601,602],[353,3,2,602,604],[354,4,4,604,608],[355,1,1,608,609],[356,1,1,609,610],[358,5,3,610,613]]],[13,79,65,613,678,[[368,2,2,613,615],[370,1,1,615,616],[371,1,1,616,617],[372,5,4,617,621],[373,1,1,621,622],[374,2,2,622,624],[375,2,2,624,626],[376,6,5,626,631],[377,2,2,631,633],[378,3,2,633,635],[382,2,2,635,637],[384,13,8,637,645],[385,3,3,645,648],[386,2,2,648,650],[387,1,1,650,651],[388,2,2,651,653],[389,3,3,653,656],[390,3,3,656,659],[391,5,4,659,663],[395,1,1,663,664],[396,2,2,664,666],[398,1,1,666,667],[399,5,3,667,670],[400,9,6,670,676],[401,1,1,676,677],[402,1,1,677,678]]],[14,10,8,678,686,[[405,2,2,678,680],[406,2,1,680,681],[409,1,1,681,682],[410,2,1,682,683],[411,3,3,683,686]]],[15,18,14,686,700,[[413,2,1,686,687],[414,6,5,687,692],[416,5,3,692,695],[418,1,1,695,696],[421,2,2,696,698],[422,2,2,698,700]]],[16,16,12,700,712,[[426,1,1,700,701],[427,5,4,701,705],[428,2,1,705,706],[429,1,1,706,707],[430,2,2,707,709],[431,2,1,709,710],[433,2,1,710,711],[434,1,1,711,712]]],[17,16,16,712,728,[[437,1,1,712,713],[439,1,1,713,714],[440,2,2,714,716],[443,1,1,716,717],[445,1,1,717,718],[448,1,1,718,719],[450,1,1,719,720],[451,1,1,720,721],[465,1,1,721,722],[466,1,1,722,723],[469,1,1,723,724],[473,1,1,724,725],[474,1,1,725,726],[477,2,2,726,728]]],[18,17,15,728,743,[[507,2,2,728,730],[508,1,1,730,731],[517,1,1,731,732],[520,1,1,732,733],[527,2,1,733,734],[546,1,1,734,735],[555,1,1,735,736],[561,1,1,736,737],[562,1,1,737,738],[581,1,1,738,739],[582,2,1,739,740],[584,1,1,740,741],[596,1,1,741,742],[620,1,1,742,743]]],[19,9,8,743,751,[[633,2,2,743,745],[634,5,4,745,749],[635,1,1,749,750],[653,1,1,750,751]]],[20,11,9,751,760,[[659,1,1,751,752],[663,1,1,752,753],[664,1,1,753,754],[665,3,1,754,755],[666,1,1,755,756],[667,2,2,756,758],[668,1,1,758,759],[670,1,1,759,760]]],[21,3,2,760,762,[[672,1,1,760,761],[674,2,1,761,762]]],[22,59,48,762,810,[[680,2,1,762,763],[686,3,3,763,766],[689,1,1,766,767],[691,1,1,767,768],[692,4,3,768,771],[694,1,1,771,772],[695,2,2,772,774],[696,3,2,774,776],[697,4,1,776,777],[699,1,1,777,778],[700,2,2,778,780],[706,1,1,780,781],[707,1,1,781,782],[708,1,1,782,783],[714,9,7,783,790],[715,5,5,790,795],[716,2,2,795,797],[717,3,3,797,800],[727,3,2,800,802],[728,1,1,802,803],[729,2,1,803,804],[733,1,1,804,805],[734,2,2,805,807],[738,1,1,807,808],[744,3,2,808,810]]],[23,116,98,810,908,[[746,1,1,810,811],[747,1,1,811,812],[751,2,2,812,814],[753,2,2,814,816],[755,1,1,816,817],[757,1,1,817,818],[758,1,1,818,819],[762,5,5,819,824],[763,1,1,824,825],[765,1,1,825,826],[766,1,1,826,827],[767,3,3,827,830],[769,2,2,830,832],[770,7,6,832,838],[771,15,6,838,844],[772,1,1,844,845],[773,10,7,845,852],[774,2,2,852,854],[775,2,2,854,856],[776,2,2,856,858],[777,1,1,858,859],[778,6,4,859,863],[779,1,1,863,864],[780,3,3,864,867],[781,5,4,867,871],[782,7,7,871,878],[783,1,1,878,879],[784,6,6,879,885],[785,3,3,885,888],[786,3,2,888,890],[787,1,1,890,891],[788,2,2,891,893],[790,4,3,893,896],[791,2,2,896,898],[792,1,1,898,899],[793,2,2,899,901],[794,4,4,901,905],[795,1,1,905,906],[796,2,2,906,908]]],[24,3,3,908,911,[[797,1,1,908,909],[799,1,1,909,910],[800,1,1,910,911]]],[25,64,56,911,967,[[802,1,1,911,912],[803,2,1,912,913],[804,7,5,913,918],[805,1,1,918,919],[808,1,1,919,920],[809,4,4,920,924],[810,2,1,924,925],[812,1,1,925,926],[813,3,3,926,929],[814,1,1,929,930],[815,3,3,930,933],[819,4,3,933,936],[820,1,1,936,937],[821,1,1,937,938],[824,1,1,938,939],[832,2,2,939,941],[833,1,1,941,942],[834,2,2,942,944],[835,1,1,944,945],[838,3,3,945,948],[841,9,8,948,956],[842,1,1,956,957],[843,2,2,957,959],[844,2,2,959,961],[845,5,4,961,965],[848,1,1,965,966],[849,2,1,966,967]]],[26,5,4,967,971,[[850,1,1,967,968],[858,3,2,968,970],[860,1,1,970,971]]],[27,11,10,971,981,[[862,1,1,971,972],[863,1,1,972,973],[864,1,1,973,974],[866,3,2,974,976],[868,1,1,976,977],[869,1,1,977,978],[870,1,1,978,979],[872,1,1,979,980],[875,1,1,980,981]]],[28,4,4,981,985,[[876,2,2,981,983],[878,2,2,983,985]]],[29,4,3,985,988,[[883,2,1,985,986],[885,2,2,986,988]]],[31,5,5,988,993,[[889,4,4,988,992],[892,1,1,992,993]]],[32,3,2,993,995,[[893,1,1,993,994],[896,2,1,994,995]]],[35,2,2,995,997,[[908,2,2,995,997]]],[36,8,5,997,1002,[[909,1,1,997,998],[910,7,4,998,1002]]],[37,8,8,1002,1010,[[912,2,2,1002,1004],[914,1,1,1004,1005],[915,1,1,1005,1006],[917,2,2,1006,1008],[918,1,1,1008,1009],[921,1,1,1009,1010]]],[38,3,3,1010,1013,[[925,1,1,1010,1011],[927,2,2,1011,1013]]]],[71,83,84,158,194,213,269,343,358,375,390,398,462,467,484,498,530,552,556,566,595,601,629,632,634,635,666,688,718,719,732,736,738,770,773,794,808,818,820,844,852,891,897,908,925,931,934,936,958,1010,1013,1093,1102,1105,1115,1141,1144,1159,1250,1252,1273,1276,1280,1289,1309,1311,1354,1358,1362,1367,1561,1572,1580,1619,1628,1642,1655,1682,1841,1912,1962,1982,2046,2048,2049,2083,2189,2215,2238,2263,2402,2484,2578,2595,2599,2613,2764,2800,2811,2842,2874,2948,2998,3071,3149,3169,3197,3257,3265,3269,3320,3369,3371,3387,3469,3762,3833,3991,4018,4067,4101,4112,4122,4203,4347,4391,4430,4433,4457,4458,4565,4662,4720,4737,4870,4877,4886,5121,5184,5249,5484,5491,5709,5798,5803,5849,5872,5892,5923,5979,6011,6025,6043,6048,6070,6085,6108,6109,6203,6205,6210,6211,6217,6268,6297,6299,6301,6302,6305,6306,6308,6309,6312,6332,6333,6348,6374,6435,6439,6441,6454,6457,6458,6546,6604,6606,6616,6617,6676,6683,6700,6704,6719,6790,6804,6823,6829,6832,6837,6895,6905,6918,6930,6933,6940,6952,6955,7008,7026,7046,7107,7110,7115,7188,7189,7231,7237,7282,7284,7287,7297,7329,7351,7352,7360,7373,7391,7394,7408,7412,7418,7421,7426,7429,7432,7442,7448,7459,7494,7498,7508,7509,7514,7517,7520,7534,7535,7551,7573,7576,7592,7594,7596,7612,7616,7617,7626,7638,7644,7650,7651,7658,7661,7662,7663,7676,7693,7697,7707,7713,7721,7724,7729,7740,7749,7757,7768,7773,7774,7782,7786,7788,7796,7798,7816,7819,7820,7826,7829,7833,7842,7856,7862,7866,7870,7878,7887,7897,7901,7907,7910,7911,7912,7913,7914,7919,7920,7930,7939,7944,7949,7950,7954,7957,7971,7976,7981,7985,7989,7990,7993,7999,8004,8024,8063,8071,8072,8075,8088,8089,8093,8095,8101,8104,8105,8112,8125,8128,8133,8135,8143,8149,8151,8163,8166,8183,8236,8265,8268,8271,8272,8273,8286,8290,8291,8293,8306,8309,8313,8324,8341,8342,8347,8350,8354,8359,8360,8366,8380,8385,8387,8388,8389,8391,8395,8402,8408,8411,8437,8443,8446,8455,8462,8464,8467,8469,8472,8474,8500,8502,8516,8522,8530,8552,8553,8557,8558,8560,8575,8576,8609,8666,8669,8674,8676,8694,8698,8699,8705,8710,8713,8750,8777,8783,8800,8810,8814,8821,8880,8886,8907,8948,8968,8991,9013,9015,9018,9028,9053,9079,9081,9085,9129,9130,9156,9158,9160,9163,9165,9178,9188,9194,9201,9206,9211,9213,9215,9221,9224,9231,9267,9284,9327,9328,9341,9342,9360,9381,9383,9384,9396,9410,9417,9430,9439,9440,9441,9454,9455,9456,9459,9465,9466,9467,9468,9471,9479,9482,9484,9495,9506,9516,9536,9542,9543,9554,9556,9569,9571,9576,9583,9588,9589,9600,9608,9611,9613,9615,9616,9621,9622,9623,9626,9627,9628,9630,9653,9655,9658,9660,9662,9669,9671,9684,9692,9693,9696,9697,9706,9710,9713,9716,9717,9724,9725,9732,9736,9741,9761,9767,9768,9775,9779,9781,9788,9794,9795,9798,9799,9800,9802,9808,9810,9833,9838,9842,9854,9904,9905,9970,9973,9987,9996,10038,10041,10042,10043,10049,10050,10051,10055,10056,10061,10063,10066,10067,10071,10081,10099,10100,10102,10126,10149,10153,10154,10160,10163,10174,10190,10228,10245,10327,10558,10581,10640,10663,10674,10676,10688,10691,10696,10698,10721,10739,10740,10743,10763,10766,10772,10773,10775,10794,10840,10843,10864,10866,10868,10881,10900,10909,10936,10945,10956,11214,11222,11248,11275,11290,11301,11315,11320,11336,11363,11364,11365,11369,11398,11402,11404,11407,11410,11416,11417,11442,11444,11511,11516,11544,11547,11554,11556,11557,11559,11567,11570,11577,11578,11582,11614,11624,11636,11651,11653,11658,11668,11671,11688,11689,11700,11711,11714,11721,11722,11809,11833,11847,11881,11915,11918,11926,11942,11948,11949,11955,11956,11961,11987,12013,12098,12104,12112,12182,12216,12238,12243,12248,12307,12311,12316,12318,12320,12321,12373,12374,12378,12404,12527,12537,12586,12587,12724,12727,12732,12736,12738,12759,12768,12784,12787,12805,12826,12864,12896,12942,12952,12977,13034,13107,13156,13211,13249,13579,13611,13701,13813,13845,13929,13930,14327,14328,14333,14530,14569,14672,14961,15167,15266,15279,15600,15619,15706,15934,16294,16546,16569,16597,16598,16600,16602,16606,17156,17320,17398,17423,17431,17472,17478,17479,17508,17528,17558,17588,17688,17810,17818,17826,17894,17920,17930,17943,17947,17981,17990,17991,17999,18004,18007,18046,18057,18060,18175,18204,18246,18334,18337,18341,18342,18346,18347,18352,18357,18359,18361,18362,18373,18394,18395,18413,18417,18420,18641,18658,18670,18674,18747,18756,18760,18829,18924,18934,18966,19003,19120,19146,19178,19187,19227,19277,19294,19385,19389,19395,19402,19403,19421,19443,19462,19505,19519,19521,19536,19566,19576,19583,19584,19588,19589,19590,19598,19599,19605,19608,19612,19618,19622,19636,19638,19643,19645,19654,19659,19660,19668,19670,19703,19712,19732,19739,19798,19803,19813,19818,19823,19836,19862,19869,19874,19877,19881,19887,19888,19897,19903,19906,19913,19914,19917,19918,19928,19942,19946,19949,19953,19954,19956,19963,19967,19972,19980,19987,19998,20011,20034,20046,20058,20061,20074,20076,20091,20155,20161,20171,20172,20182,20185,20273,20291,20302,20322,20375,20424,20473,20495,20507,20508,20513,20517,20528,20537,20590,20607,20611,20618,20621,20625,20679,20683,20697,20706,20722,20735,20738,20743,20855,20861,20864,20890,20930,21024,21232,21244,21254,21282,21302,21326,21404,21406,21414,21493,21500,21504,21505,21512,21523,21525,21526,21527,21566,21571,21573,21591,21605,21614,21615,21618,21698,21703,21748,21990,21994,22042,22096,22112,22129,22165,22167,22188,22195,22221,22247,22284,22292,22310,22351,22355,22439,22474,22478,22533,22537,22538,22544,22577,22580,22622,22822,22829,22841,22857,22871,22872,22876,22903,22910,22926,22946,22965,22967,22997,23041,23090,23121,23125]]],["touching",[2,2,[[23,1,1,0,1,[[766,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]]],[19465,20590]]],["toward",[66,56,[[0,2,2,0,2,[[29,1,1,0,1],[30,1,1,1,2]]],[1,2,2,2,4,[[65,1,1,2,3],[74,1,1,3,4]]],[2,1,1,4,5,[[98,1,1,4,5]]],[3,3,3,5,8,[[132,1,1,5,6],[140,1,1,6,7],[148,1,1,7,8]]],[5,7,5,8,13,[[194,2,1,8,9],[201,3,2,9,11],[204,2,2,11,13]]],[8,1,1,13,14,[[255,1,1,13,14]]],[9,1,1,14,15,[[290,1,1,14,15]]],[10,8,6,15,21,[[298,7,5,15,20],[304,1,1,20,21]]],[11,1,1,21,22,[[315,1,1,21,22]]],[13,4,4,22,26,[[372,3,3,22,25],[382,1,1,25,26]]],[17,1,1,26,27,[[446,1,1,26,27]]],[18,4,4,27,31,[[482,1,1,27,28],[502,1,1,28,29],[505,1,1,29,30],[615,1,1,30,31]]],[20,1,1,31,32,[[659,1,1,31,32]]],[22,2,2,32,34,[[716,1,1,32,33],[741,1,1,33,34]]],[23,1,1,34,35,[[759,1,1,34,35]]],[24,1,1,35,36,[[798,1,1,35,36]]],[25,16,14,36,50,[[802,1,1,36,37],[805,1,1,37,38],[807,1,1,38,39],[809,2,2,39,41],[818,1,1,41,42],[821,1,1,42,43],[822,2,1,43,44],[825,1,1,44,45],[834,1,1,45,46],[841,1,1,46,47],[842,2,1,47,48],[843,1,1,48,49],[848,1,1,49,50]]],[26,3,1,50,51,[[857,3,1,50,51]]],[28,2,1,51,52,[[877,2,1,51,52]]],[31,1,1,52,53,[[890,1,1,52,53]]],[37,4,3,53,56,[[916,2,2,53,55],[924,2,1,55,56]]]],[870,878,1957,2215,2975,4236,4447,4732,6020,6209,6223,6310,6311,7742,8697,9014,9015,9020,9023,9027,9231,9590,11302,11303,11308,11518,13121,13980,14266,14301,16233,17321,18392,18881,19316,20351,20487,20536,20565,20618,20620,20831,20941,20946,21079,21305,21508,21545,21553,21687,21970,22331,22552,22953,22955,23076]]],["under",[2,2,[[9,2,2,0,2,[[268,1,1,0,1],[270,1,1,1,2]]]],[8072,8126]]],["unto",[2832,2429,[[0,324,283,0,283,[[0,1,1,0,1],[1,2,2,1,3],[2,7,6,3,9],[3,7,7,9,16],[5,2,2,16,18],[6,2,2,18,20],[7,4,3,20,23],[8,2,2,23,25],[11,6,4,25,29],[12,2,2,29,31],[13,2,2,31,33],[14,4,4,33,37],[15,6,5,37,42],[16,4,4,42,46],[17,12,11,46,57],[18,11,10,57,67],[19,3,3,67,70],[20,5,4,70,74],[21,7,7,74,81],[22,3,3,81,84],[23,23,19,84,103],[24,2,2,103,105],[25,6,6,105,111],[26,13,11,111,122],[27,2,2,122,124],[28,5,4,124,128],[29,10,9,128,137],[30,10,9,137,146],[31,4,4,146,150],[32,2,2,150,152],[33,11,8,152,160],[34,8,7,160,167],[36,11,10,167,177],[37,7,5,177,182],[38,6,5,182,187],[39,5,4,187,191],[40,12,12,191,203],[41,17,15,203,218],[42,10,10,218,228],[43,13,12,228,240],[44,13,11,240,251],[45,7,4,251,255],[46,11,9,255,264],[47,13,10,264,274],[48,5,4,274,278],[49,6,5,278,283]]],[1,292,224,283,507,[[50,3,2,283,285],[51,3,3,285,288],[52,24,12,288,300],[53,15,14,300,314],[54,4,4,314,318],[55,21,12,318,330],[56,17,13,330,343],[57,13,7,343,350],[58,13,8,350,358],[59,11,8,358,366],[60,4,3,366,369],[61,7,7,369,376],[62,3,3,376,379],[63,10,8,379,387],[64,2,2,387,389],[65,15,14,389,403],[66,4,4,403,407],[67,9,8,407,415],[68,19,12,415,427],[69,6,5,427,432],[70,2,1,432,433],[71,5,5,433,438],[72,3,3,438,441],[73,7,4,441,445],[74,3,3,445,448],[75,1,1,448,449],[77,7,6,449,455],[78,2,2,455,457],[79,5,5,457,462],[80,4,4,462,466],[81,17,14,466,480],[82,12,8,480,488],[83,7,6,488,494],[84,3,3,494,497],[85,6,5,497,502],[88,2,2,502,504],[89,3,3,504,507]]],[2,152,118,507,625,[[90,5,3,507,510],[91,2,1,510,511],[93,4,4,511,515],[94,3,3,515,518],[95,7,7,518,525],[96,4,4,525,529],[97,5,5,529,534],[98,12,11,534,545],[99,9,7,545,552],[100,3,2,552,554],[101,4,3,554,557],[102,5,4,557,561],[103,6,4,561,565],[104,6,4,565,569],[105,5,4,569,573],[106,10,6,573,579],[107,4,3,579,582],[108,5,4,582,586],[109,2,2,586,588],[110,11,7,588,595],[111,10,7,595,602],[112,13,10,602,612],[113,5,5,612,617],[114,8,5,617,622],[115,1,1,622,623],[116,3,2,623,625]]],[3,250,206,625,831,[[117,2,2,625,627],[118,2,1,627,628],[119,5,5,628,633],[120,5,3,633,636],[121,10,9,636,645],[122,7,5,645,650],[123,6,5,650,655],[124,6,5,655,660],[125,6,6,660,666],[126,4,4,666,670],[127,9,7,670,677],[128,8,5,677,682],[129,5,5,682,687],[130,11,10,687,697],[131,12,9,697,706],[132,23,16,706,722],[133,7,7,722,729],[134,8,7,729,736],[135,4,3,736,739],[136,12,11,739,750],[137,4,4,750,754],[138,29,21,754,775],[139,14,12,775,787],[140,3,2,787,789],[141,5,5,789,794],[142,3,2,794,796],[143,6,6,796,802],[144,2,2,802,804],[146,1,1,804,805],[147,11,9,805,814],[148,9,8,814,822],[149,3,2,822,824],[150,3,3,824,827],[151,4,3,827,830],[152,1,1,830,831]]],[4,150,127,831,958,[[153,15,14,831,845],[154,7,7,845,852],[155,3,2,852,854],[156,9,8,854,862],[157,10,6,862,868],[161,6,6,868,874],[162,6,4,874,878],[163,2,2,878,880],[164,2,2,880,882],[165,4,4,882,886],[166,1,1,886,887],[167,2,2,887,889],[169,6,4,889,893],[170,7,6,893,899],[171,1,1,899,900],[172,8,6,900,906],[173,9,8,906,914],[174,5,5,914,919],[175,3,2,919,921],[176,2,2,921,923],[177,4,4,923,927],[178,6,4,927,931],[179,4,4,931,935],[180,2,2,935,937],[181,3,2,937,939],[182,2,2,939,941],[183,12,9,941,950],[184,5,4,950,954],[185,1,1,954,955],[186,3,3,955,958]]],[5,120,102,958,1060,[[187,5,4,958,962],[188,6,6,962,968],[189,5,5,968,973],[190,8,7,973,980],[191,4,4,980,984],[192,5,5,984,989],[193,6,5,989,994],[194,3,3,994,997],[195,12,10,997,1007],[196,15,11,1007,1018],[197,2,2,1018,1020],[199,1,1,1020,1021],[200,4,2,1021,1023],[201,5,4,1023,1027],[202,1,1,1027,1028],[203,2,2,1028,1030],[204,1,1,1030,1031],[206,6,4,1031,1035],[207,5,3,1035,1038],[208,14,12,1038,1050],[209,1,1,1050,1051],[210,9,9,1051,1060]]],[6,153,136,1060,1196,[[212,4,4,1060,1064],[213,6,5,1064,1069],[214,11,10,1069,1079],[216,16,15,1079,1094],[217,11,7,1094,1101],[218,9,9,1101,1110],[219,10,9,1110,1119],[220,3,3,1119,1122],[221,18,16,1122,1138],[222,2,2,1138,1140],[223,15,11,1140,1151],[224,2,2,1151,1153],[226,14,13,1153,1166],[227,1,1,1166,1167],[228,10,10,1167,1177],[229,10,9,1177,1186],[230,6,6,1186,1192],[231,5,4,1192,1196]]],[7,17,15,1196,1211,[[232,5,4,1196,1200],[233,7,7,1200,1207],[234,3,2,1207,1209],[235,2,2,1209,1211]]],[8,142,121,1211,1332,[[236,2,2,1211,1213],[237,4,2,1213,1215],[238,4,3,1215,1218],[239,2,2,1218,1220],[240,1,1,1220,1221],[242,6,4,1221,1225],[243,6,5,1225,1230],[244,2,2,1230,1232],[245,6,6,1232,1238],[246,4,4,1238,1242],[247,10,9,1242,1251],[248,2,1,1251,1252],[249,17,13,1252,1265],[250,10,10,1265,1275],[251,10,9,1275,1284],[252,8,8,1284,1292],[253,2,2,1292,1294],[254,5,3,1294,1297],[255,10,9,1297,1306],[256,3,3,1306,1309],[257,4,4,1309,1313],[258,4,4,1313,1317],[259,3,2,1317,1319],[260,2,1,1319,1320],[261,1,1,1320,1321],[262,2,2,1321,1323],[263,7,5,1323,1328],[264,5,4,1328,1332]]],[9,147,130,1332,1462,[[267,9,9,1332,1341],[268,3,2,1341,1343],[269,7,6,1343,1349],[270,1,1,1349,1350],[271,2,2,1350,1352],[272,2,2,1352,1354],[273,6,6,1354,1360],[274,1,1,1360,1361],[275,7,6,1361,1367],[276,2,1,1367,1368],[277,14,9,1368,1377],[278,9,7,1377,1384],[279,9,9,1384,1393],[280,13,12,1393,1405],[281,6,6,1405,1411],[282,9,7,1411,1418],[283,6,6,1418,1424],[284,7,7,1424,1431],[285,12,11,1431,1442],[286,6,5,1442,1447],[287,2,2,1447,1449],[288,1,1,1449,1450],[289,2,2,1450,1452],[290,11,10,1452,1462]]],[10,152,130,1462,1592,[[291,4,3,1462,1465],[292,10,9,1465,1474],[293,3,3,1474,1477],[294,2,2,1477,1479],[295,2,2,1479,1481],[296,1,1,1481,1482],[298,21,16,1482,1498],[299,3,3,1498,1501],[301,4,4,1501,1505],[302,17,12,1505,1517],[303,13,13,1517,1530],[304,2,1,1530,1531],[305,1,1,1531,1532],[307,9,8,1532,1540],[308,15,12,1540,1552],[309,4,4,1552,1556],[310,16,15,1556,1571],[311,10,7,1571,1578],[312,15,14,1578,1592]]],[11,103,92,1592,1684,[[313,18,11,1592,1603],[314,9,8,1603,1611],[315,2,2,1611,1613],[316,12,11,1613,1624],[317,8,8,1624,1632],[318,11,11,1632,1643],[319,4,4,1643,1647],[320,4,4,1647,1651],[321,2,2,1651,1653],[322,4,4,1653,1657],[323,1,1,1657,1658],[324,1,1,1658,1659],[325,4,4,1659,1663],[327,1,1,1663,1664],[328,1,1,1664,1665],[330,5,5,1665,1670],[331,2,2,1670,1672],[332,10,8,1672,1680],[334,2,2,1680,1682],[335,2,2,1682,1684]]],[12,16,16,1684,1700,[[349,2,2,1684,1686],[350,1,1,1686,1687],[352,2,2,1687,1689],[354,2,2,1689,1691],[356,1,1,1691,1692],[358,6,6,1692,1698],[365,1,1,1698,1699],[366,1,1,1699,1700]]],[13,46,44,1700,1744,[[371,3,3,1700,1703],[372,7,7,1703,1710],[375,1,1,1710,1711],[376,7,5,1711,1716],[377,1,1,1716,1717],[380,1,1,1717,1718],[382,2,2,1718,1720],[384,7,7,1720,1727],[385,1,1,1727,1728],[386,3,3,1728,1731],[389,1,1,1731,1732],[390,3,3,1732,1735],[391,1,1,1735,1736],[396,2,2,1736,1738],[398,1,1,1738,1739],[399,2,2,1739,1741],[400,1,1,1741,1742],[401,1,1,1742,1743],[402,1,1,1743,1744]]],[14,9,9,1744,1753,[[405,1,1,1744,1745],[408,1,1,1745,1746],[409,1,1,1746,1747],[410,2,2,1747,1749],[411,2,2,1749,1751],[412,2,2,1751,1753]]],[15,27,25,1753,1778,[[413,2,1,1753,1754],[414,4,3,1754,1757],[416,5,5,1757,1762],[417,1,1,1762,1763],[418,5,5,1763,1768],[420,2,2,1768,1770],[421,4,4,1770,1774],[422,2,2,1774,1776],[425,2,2,1776,1778]]],[16,28,24,1778,1802,[[426,1,1,1778,1779],[427,8,6,1779,1785],[428,3,2,1785,1787],[429,6,5,1787,1792],[430,3,3,1792,1795],[431,2,2,1795,1797],[433,1,1,1797,1798],[434,4,4,1798,1802]]],[17,26,24,1802,1826,[[436,4,4,1802,1806],[437,5,5,1806,1811],[440,2,1,1811,1812],[444,1,1,1812,1813],[445,1,1,1813,1814],[451,1,1,1814,1815],[457,2,2,1815,1817],[465,1,1,1817,1818],[467,1,1,1818,1819],[468,1,1,1819,1820],[469,2,2,1820,1822],[473,1,1,1822,1823],[476,2,1,1823,1824],[477,2,2,1824,1826]]],[18,66,60,1826,1886,[[479,2,2,1826,1828],[480,1,1,1828,1829],[481,1,1,1829,1830],[482,1,1,1830,1831],[495,1,1,1831,1832],[499,3,3,1832,1835],[502,1,1,1835,1836],[505,1,1,1836,1837],[507,2,2,1837,1839],[508,1,1,1839,1840],[509,2,1,1840,1841],[511,2,2,1841,1843],[517,1,1,1843,1844],[519,3,3,1844,1847],[520,3,2,1847,1849],[528,1,1,1849,1850],[538,1,1,1850,1851],[543,1,1,1851,1852],[546,2,2,1852,1854],[548,1,1,1854,1855],[554,3,1,1855,1856],[557,1,1,1856,1857],[562,1,1,1857,1858],[563,3,3,1858,1861],[565,1,1,1861,1862],[567,1,1,1862,1863],[576,1,1,1863,1864],[578,1,1,1864,1865],[579,2,2,1865,1867],[581,1,1,1867,1868],[584,5,5,1868,1873],[596,5,5,1873,1878],[597,1,1,1878,1879],[598,1,1,1879,1880],[600,2,1,1880,1881],[618,1,1,1881,1882],[619,4,3,1882,1885],[620,1,1,1885,1886]]],[19,6,5,1886,1891,[[629,2,1,1886,1887],[630,1,1,1887,1888],[642,1,1,1888,1889],[643,1,1,1889,1890],[657,1,1,1890,1891]]],[20,5,5,1891,1896,[[659,2,2,1891,1893],[661,1,1,1893,1894],[667,1,1,1894,1895],[670,1,1,1895,1896]]],[22,76,64,1896,1960,[[679,1,1,1896,1897],[680,1,1,1897,1898],[684,1,1,1898,1899],[685,3,3,1899,1902],[686,8,5,1902,1907],[688,1,1,1907,1908],[692,1,1,1908,1909],[694,1,1,1909,1910],[696,1,1,1910,1911],[697,2,2,1911,1913],[699,2,2,1913,1915],[700,2,2,1915,1917],[709,1,1,1917,1918],[714,6,5,1918,1923],[715,6,5,1923,1928],[716,3,2,1928,1930],[717,4,1,1930,1931],[718,1,1,1931,1932],[722,2,2,1932,1934],[723,4,3,1934,1937],[724,3,3,1937,1940],[726,3,3,1940,1943],[727,1,1,1943,1944],[729,6,4,1944,1948],[733,5,5,1948,1953],[738,3,3,1953,1956],[740,1,1,1956,1957],[743,2,2,1957,1959],[744,1,1,1959,1960]]],[23,223,195,1960,2155,[[745,8,8,1960,1968],[746,2,2,1968,1970],[747,6,6,1970,1976],[748,1,1,1976,1977],[749,1,1,1977,1978],[750,1,1,1978,1979],[751,7,6,1979,1985],[752,1,1,1985,1986],[755,9,8,1986,1994],[756,1,1,1994,1995],[757,8,7,1995,2002],[758,4,3,2002,2005],[759,4,3,2005,2008],[760,5,5,2008,2013],[761,5,5,2013,2018],[763,2,2,2018,2020],[764,2,2,2020,2022],[765,4,3,2022,2025],[766,1,1,2025,2026],[767,2,2,2026,2028],[768,3,3,2028,2031],[769,9,8,2031,2039],[770,8,8,2039,2047],[771,8,6,2047,2053],[772,4,4,2053,2057],[773,8,7,2057,2064],[774,3,2,2064,2066],[775,1,1,2066,2067],[776,10,9,2067,2076],[777,4,4,2076,2080],[778,5,5,2080,2085],[779,10,8,2085,2093],[780,10,8,2093,2101],[781,5,5,2101,2106],[782,20,13,2106,2119],[783,3,3,2119,2122],[784,6,6,2122,2128],[785,4,4,2128,2132],[786,10,6,2132,2138],[787,4,4,2138,2142],[788,5,4,2142,2146],[789,2,2,2146,2148],[792,1,1,2148,2149],[793,2,2,2149,2151],[794,1,1,2151,2152],[795,2,2,2152,2154],[796,1,1,2154,2155]]],[24,3,3,2155,2158,[[798,1,1,2155,2156],[799,1,1,2156,2157],[801,1,1,2157,2158]]],[25,185,170,2158,2328,[[802,1,1,2158,2159],[803,9,7,2159,2166],[804,17,11,2166,2177],[805,2,2,2177,2179],[807,1,1,2179,2180],[808,2,2,2180,2182],[809,8,8,2182,2190],[810,3,3,2190,2193],[811,2,2,2193,2195],[812,5,5,2195,2200],[813,8,8,2200,2208],[814,3,3,2208,2211],[815,5,5,2211,2216],[816,1,1,2216,2217],[817,3,3,2217,2220],[818,4,4,2220,2224],[819,1,1,2224,2225],[820,1,1,2225,2226],[821,13,12,2226,2238],[822,4,4,2238,2242],[823,3,3,2242,2245],[824,9,6,2245,2251],[825,8,7,2251,2258],[826,1,1,2258,2259],[827,2,2,2259,2261],[828,1,1,2261,2262],[829,3,3,2262,2265],[830,2,2,2265,2267],[831,2,2,2267,2269],[832,6,6,2269,2275],[833,4,4,2275,2279],[834,10,10,2279,2289],[835,3,3,2289,2292],[836,1,1,2292,2293],[837,4,4,2293,2297],[838,11,9,2297,2306],[841,4,4,2306,2310],[842,2,2,2310,2312],[843,1,1,2312,2313],[844,4,4,2313,2317],[845,4,4,2317,2321],[846,1,1,2321,2322],[847,2,2,2322,2324],[848,4,4,2324,2328]]],[26,14,11,2328,2339,[[857,5,4,2328,2332],[858,2,2,2332,2334],[859,6,4,2334,2338],[861,1,1,2338,2339]]],[27,10,10,2339,2349,[[862,2,2,2339,2341],[864,2,2,2341,2343],[866,1,1,2343,2344],[867,1,1,2344,2345],[868,2,2,2345,2347],[872,1,1,2347,2348],[875,1,1,2348,2349]]],[28,3,3,2349,2352,[[876,2,2,2349,2351],[877,1,1,2351,2352]]],[29,8,7,2352,2359,[[880,1,1,2352,2353],[881,1,1,2353,2354],[882,1,1,2354,2355],[885,4,3,2355,2358],[886,1,1,2358,2359]]],[31,18,17,2359,2376,[[889,8,8,2359,2367],[890,3,3,2367,2370],[891,6,5,2370,2375],[892,1,1,2375,2376]]],[32,2,2,2376,2378,[[895,1,1,2376,2377],[899,1,1,2377,2378]]],[34,3,2,2378,2380,[[903,1,1,2378,2379],[904,2,1,2379,2380]]],[35,1,1,2380,2381,[[906,1,1,2380,2381]]],[36,2,2,2381,2383,[[909,1,1,2381,2382],[910,1,1,2382,2383]]],[37,50,44,2383,2427,[[911,10,7,2383,2390],[912,4,4,2390,2394],[913,3,2,2394,2396],[914,8,7,2396,2403],[915,4,4,2403,2407],[916,6,6,2407,2413],[917,5,5,2413,2418],[918,2,2,2418,2420],[921,4,3,2420,2423],[923,2,2,2423,2425],[924,2,2,2425,2427]]],[38,3,2,2427,2429,[[926,1,1,2427,2428],[927,2,1,2428,2429]]]],[8,49,52,56,57,59,64,69,74,83,84,85,86,88,89,92,141,157,168,174,192,195,198,213,222,299,302,305,309,326,332,357,358,361,364,367,369,383,385,386,387,394,398,406,412,415,425,430,431,433,434,437,438,445,451,453,455,460,462,463,465,469,471,475,478,488,491,501,505,512,525,527,535,542,548,550,552,554,558,562,566,574,584,587,593,595,596,597,601,611,615,616,620,621,629,630,631,633,636,641,647,649,656,664,675,693,694,701,708,716,719,728,733,745,746,747,748,749,753,765,766,769,778,782,816,818,825,829,831,833,834,844,846,847,855,857,859,876,877,884,886,889,902,912,916,925,937,944,947,955,973,974,984,986,991,992,994,997,1000,1004,1012,1013,1015,1018,1020,1038,1040,1085,1089,1096,1101,1105,1106,1109,1112,1113,1118,1121,1127,1128,1135,1137,1157,1159,1163,1166,1168,1178,1180,1186,1188,1209,1210,1212,1219,1220,1223,1227,1233,1234,1236,1239,1250,1259,1261,1262,1264,1266,1270,1272,1274,1280,1281,1283,1285,1286,1288,1289,1292,1293,1295,1298,1299,1301,1303,1313,1319,1324,1328,1330,1331,1332,1341,1344,1345,1346,1347,1348,1351,1356,1359,1361,1362,1367,1368,1370,1375,1376,1382,1383,1385,1414,1415,1416,1417,1423,1424,1425,1428,1429,1435,1437,1438,1443,1453,1454,1455,1456,1460,1461,1462,1464,1469,1472,1474,1475,1502,1506,1510,1522,1523,1525,1530,1541,1551,1565,1574,1577,1581,1583,1587,1588,1589,1590,1592,1593,1594,1595,1596,1597,1602,1603,1605,1606,1611,1612,1616,1617,1619,1620,1622,1623,1624,1631,1636,1647,1653,1654,1656,1657,1658,1663,1664,1665,1666,1667,1668,1683,1684,1685,1686,1687,1689,1692,1693,1694,1695,1698,1699,1700,1701,1704,1707,1711,1715,1722,1725,1726,1729,1730,1743,1750,1754,1755,1764,1769,1771,1775,1778,1780,1784,1785,1787,1789,1798,1801,1807,1814,1815,1817,1819,1820,1837,1839,1842,1859,1868,1870,1881,1890,1891,1899,1900,1902,1904,1913,1915,1933,1945,1948,1950,1951,1953,1956,1957,1958,1959,1962,1967,1970,1975,1980,1982,1987,1988,1992,1997,2004,2005,2014,2015,2016,2018,2021,2025,2029,2030,2032,2034,2035,2036,2040,2041,2047,2049,2050,2051,2070,2071,2072,2073,2075,2083,2120,2121,2123,2136,2140,2157,2167,2171,2178,2189,2191,2193,2196,2197,2217,2259,2294,2296,2321,2322,2328,2336,2340,2378,2393,2399,2404,2413,2416,2421,2432,2433,2438,2439,2440,2441,2445,2447,2451,2455,2457,2459,2464,2468,2469,2471,2472,2474,2478,2480,2481,2484,2485,2488,2490,2497,2498,2500,2523,2527,2530,2532,2535,2561,2568,2569,2571,2576,2579,2685,2697,2708,2719,2739,2746,2747,2760,2770,2796,2797,2799,2807,2838,2844,2848,2850,2855,2857,2860,2868,2873,2874,2901,2902,2907,2908,2918,2920,2921,2922,2948,2955,2956,2957,2959,2960,2961,2962,2965,2966,2971,2976,2980,2981,2983,2985,2988,2989,2996,2998,2999,3045,3046,3050,3053,3054,3061,3068,3112,3113,3134,3144,3169,3170,3182,3197,3202,3203,3219,3223,3236,3237,3239,3240,3243,3244,3252,3253,3270,3282,3283,3285,3302,3319,3334,3346,3347,3348,3361,3362,3368,3369,3370,3371,3372,3382,3386,3387,3395,3403,3404,3411,3412,3425,3426,3428,3435,3436,3446,3447,3448,3457,3459,3461,3470,3471,3479,3482,3510,3533,3571,3572,3605,3652,3659,3697,3703,3706,3732,3736,3744,3760,3764,3793,3796,3797,3798,3800,3803,3804,3807,3811,3824,3825,3836,3845,3846,3854,3855,3856,3861,3939,3940,3941,3944,3958,3962,3966,3969,3972,3973,3974,3975,3989,3992,4017,4018,4026,4035,4036,4040,4042,4047,4049,4063,4065,4070,4072,4073,4076,4092,4101,4102,4107,4110,4111,4115,4119,4121,4134,4136,4147,4148,4152,4154,4155,4170,4171,4175,4186,4188,4190,4191,4197,4199,4202,4209,4210,4213,4214,4217,4218,4219,4220,4230,4231,4238,4240,4244,4245,4246,4250,4253,4254,4256,4257,4258,4261,4265,4277,4282,4283,4287,4290,4291,4292,4316,4317,4318,4319,4323,4325,4327,4329,4330,4334,4335,4347,4348,4361,4374,4379,4380,4382,4383,4384,4385,4387,4388,4389,4391,4392,4393,4395,4400,4405,4407,4409,4410,4411,4412,4413,4417,4420,4421,4422,4427,4429,4431,4432,4441,4442,4443,4445,4456,4458,4475,4476,4477,4481,4487,4490,4541,4560,4562,4566,4567,4569,4572,4578,4579,4649,4665,4666,4667,4676,4679,4685,4689,4712,4713,4720,4734,4735,4736,4738,4743,4747,4749,4810,4811,4817,4818,4832,4846,4854,4855,4892,4893,4895,4898,4899,4901,4909,4912,4914,4917,4921,4933,4934,4935,4937,4939,4940,4947,4955,4964,4969,4975,4977,5001,5005,5011,5014,5016,5019,5025,5046,5049,5054,5075,5076,5080,5081,5084,5167,5169,5170,5176,5183,5184,5187,5190,5196,5197,5221,5237,5245,5266,5274,5275,5279,5280,5315,5328,5335,5369,5373,5376,5378,5390,5398,5399,5401,5402,5403,5411,5429,5430,5432,5435,5436,5437,5449,5450,5451,5453,5460,5465,5466,5467,5472,5483,5485,5486,5494,5505,5515,5536,5540,5548,5554,5555,5556,5567,5568,5569,5573,5587,5588,5594,5599,5624,5647,5681,5686,5718,5722,5729,5730,5735,5737,5742,5744,5746,5748,5756,5804,5806,5808,5810,5817,5840,5843,5848,5852,5853,5854,5868,5872,5873,5878,5886,5887,5893,5897,5898,5899,5900,5902,5911,5918,5920,5922,5925,5928,5931,5936,5943,5948,5949,5951,5955,5956,5957,5965,5978,5979,5986,5995,5999,6003,6007,6020,6043,6044,6045,6046,6048,6049,6054,6056,6058,6059,6067,6068,6070,6072,6073,6079,6086,6087,6088,6089,6107,6113,6130,6155,6193,6197,6210,6211,6212,6213,6267,6282,6292,6296,6373,6374,6376,6378,6382,6383,6426,6428,6430,6432,6433,6434,6435,6436,6439,6441,6445,6457,6458,6462,6478,6483,6487,6495,6497,6498,6499,6500,6503,6546,6549,6555,6562,6577,6581,6583,6588,6596,6602,6605,6606,6607,6612,6613,6617,6618,6619,6620,6660,6661,6662,6666,6667,6669,6670,6671,6672,6673,6674,6681,6684,6690,6693,6696,6698,6699,6701,6703,6705,6711,6720,6721,6727,6733,6734,6737,6741,6742,6743,6755,6761,6768,6769,6785,6790,6792,6802,6808,6821,6825,6826,6836,6837,6838,6839,6841,6842,6843,6846,6848,6857,6861,6863,6864,6865,6866,6868,6871,6872,6887,6890,6892,6893,6894,6895,6897,6899,6900,6901,6906,6912,6919,6950,6954,6956,6958,6959,6960,6961,6962,6963,6964,6967,6975,6977,6989,6995,6997,7001,7003,7007,7011,7016,7017,7018,7019,7026,7029,7030,7035,7036,7042,7047,7049,7052,7055,7086,7090,7096,7099,7101,7107,7114,7124,7125,7134,7142,7145,7147,7151,7157,7158,7159,7160,7170,7171,7177,7189,7203,7204,7226,7238,7256,7267,7281,7283,7293,7300,7313,7327,7355,7357,7360,7361,7374,7375,7376,7379,7391,7401,7414,7420,7426,7432,7434,7435,7436,7446,7448,7455,7457,7461,7465,7466,7468,7470,7477,7478,7479,7480,7502,7509,7514,7516,7517,7519,7520,7527,7541,7544,7548,7549,7553,7560,7561,7566,7570,7571,7576,7580,7584,7586,7588,7592,7596,7598,7602,7605,7606,7610,7612,7614,7615,7626,7646,7652,7655,7657,7659,7661,7673,7677,7694,7710,7717,7723,7734,7735,7741,7742,7757,7759,7761,7762,7770,7774,7783,7786,7789,7790,7792,7800,7812,7813,7827,7837,7843,7855,7901,7906,7932,7935,7943,7950,7951,7955,7963,7970,7971,7973,7975,8025,8026,8027,8029,8031,8032,8035,8036,8038,8050,8054,8088,8093,8097,8102,8105,8119,8128,8138,8151,8167,8178,8182,8184,8197,8200,8207,8208,8219,8229,8230,8231,8233,8236,8238,8243,8263,8266,8269,8270,8275,8278,8279,8282,8284,8287,8299,8301,8304,8305,8307,8310,8322,8323,8327,8328,8330,8337,8345,8352,8356,8358,8359,8364,8365,8366,8368,8371,8374,8377,8386,8387,8388,8391,8392,8396,8404,8416,8425,8428,8429,8435,8442,8444,8447,8448,8450,8452,8455,8456,8464,8470,8480,8482,8490,8502,8504,8506,8510,8522,8525,8530,8534,8538,8539,8541,8544,8545,8546,8552,8557,8570,8571,8575,8576,8582,8583,8644,8663,8666,8695,8701,8702,8703,8704,8706,8709,8714,8715,8716,8728,8730,8732,8784,8786,8788,8789,8798,8799,8800,8809,8812,8827,8832,8842,8871,8872,8879,8883,8908,8986,8987,8991,9003,9013,9014,9018,9019,9029,9031,9032,9033,9037,9039,9043,9044,9053,9054,9075,9110,9117,9126,9148,9154,9156,9158,9160,9161,9166,9167,9171,9173,9174,9178,9179,9185,9190,9191,9192,9195,9196,9197,9198,9199,9202,9204,9205,9206,9223,9269,9318,9319,9325,9330,9335,9336,9337,9338,9342,9343,9346,9356,9358,9360,9361,9362,9363,9371,9372,9385,9389,9396,9400,9402,9413,9414,9415,9416,9418,9420,9421,9431,9436,9439,9442,9443,9447,9448,9450,9453,9456,9457,9458,9459,9462,9470,9483,9484,9485,9486,9488,9493,9494,9495,9496,9498,9502,9506,9510,9529,9535,9536,9538,9539,9540,9542,9544,9545,9546,9548,9549,9553,9554,9556,9560,9567,9569,9570,9572,9589,9602,9604,9605,9609,9612,9616,9620,9622,9625,9628,9636,9639,9650,9652,9653,9654,9657,9660,9672,9673,9675,9683,9685,9689,9692,9693,9695,9700,9702,9703,9707,9711,9712,9717,9719,9728,9730,9735,9737,9767,9776,9794,9811,9812,9823,9844,9857,9875,9885,9886,9894,9937,9972,10043,10046,10050,10051,10056,10064,10070,10099,10100,10106,10109,10110,10112,10114,10117,10159,10160,10166,10171,10728,10737,10762,10794,10803,10865,10878,10910,10939,10942,10943,10947,10951,10957,11144,11182,11270,11271,11275,11301,11302,11303,11307,11316,11318,11319,11376,11400,11402,11404,11405,11410,11417,11486,11513,11516,11545,11546,11547,11549,11556,11562,11571,11580,11596,11611,11615,11670,11688,11694,11696,11719,11833,11836,11899,11921,11926,11959,11988,12006,12105,12172,12180,12218,12229,12241,12242,12253,12262,12305,12312,12315,12324,12368,12373,12374,12378,12379,12399,12403,12405,12406,12409,12418,12496,12506,12515,12538,12540,12545,12577,12588,12677,12692,12716,12727,12732,12737,12738,12739,12740,12751,12759,12768,12770,12772,12773,12778,12783,12791,12793,12798,12807,12826,12854,12857,12860,12864,12876,12877,12881,12883,12893,12894,12897,12901,12904,12959,13063,13088,13258,13415,13416,13577,13649,13676,13697,13714,13834,13891,13929,13933,13950,13952,13961,13968,13975,14124,14209,14228,14231,14267,14301,14321,14327,14353,14361,14393,14403,14526,14558,14562,14565,14569,14570,14704,14821,14890,14951,14953,14978,15094,15209,15279,15287,15288,15300,15321,15394,15506,15515,15522,15523,15579,15705,15712,15718,15727,15729,15904,15918,15934,15946,15957,16075,16082,16100,16284,16287,16291,16292,16301,16451,16460,16819,16843,17261,17321,17322,17379,17488,17530,17677,17687,17775,17785,17786,17792,17808,17810,17812,17826,17829,17871,17938,17970,18001,18015,18024,18041,18051,18063,18067,18254,18332,18333,18334,18340,18341,18354,18355,18358,18367,18373,18391,18392,18415,18422,18550,18555,18575,18581,18583,18589,18593,18598,18626,18627,18630,18637,18674,18675,18677,18680,18742,18743,18745,18747,18751,18832,18834,18835,18865,18898,18899,18941,18950,18953,18955,18957,18958,18959,18960,18963,18992,18996,19003,19008,19009,19012,19013,19019,19028,19063,19092,19131,19132,19144,19145,19146,19147,19157,19228,19229,19232,19235,19237,19238,19240,19246,19255,19267,19269,19272,19274,19277,19278,19279,19304,19307,19310,19316,19317,19334,19337,19346,19347,19348,19355,19372,19376,19377,19381,19384,19409,19418,19425,19434,19441,19443,19448,19475,19517,19522,19527,19528,19531,19537,19538,19541,19549,19551,19561,19562,19564,19574,19576,19577,19580,19583,19584,19588,19595,19597,19599,19600,19605,19610,19613,19619,19623,19630,19633,19636,19642,19647,19654,19660,19663,19665,19669,19688,19697,19737,19738,19739,19743,19747,19756,19757,19764,19768,19776,19778,19789,19794,19802,19807,19809,19815,19818,19824,19825,19828,19835,19837,19838,19839,19840,19843,19844,19846,19856,19857,19858,19860,19861,19876,19877,19880,19881,19892,19896,19899,19907,19909,19910,19911,19912,19914,19915,19919,19920,19921,19922,19935,19937,19938,19943,19947,19951,19955,19956,19957,19958,19963,19965,19971,19977,19979,19982,19984,19995,19996,19998,19999,20005,20007,20014,20026,20030,20034,20041,20044,20081,20131,20158,20210,20221,20256,20285,20350,20395,20463,20467,20493,20494,20495,20496,20499,20500,20501,20503,20505,20506,20508,20509,20512,20513,20518,20524,20526,20529,20544,20545,20564,20578,20584,20609,20610,20612,20613,20616,20617,20619,20621,20626,20629,20631,20635,20640,20656,20657,20660,20669,20680,20681,20688,20689,20690,20699,20701,20703,20708,20709,20719,20720,20732,20733,20735,20737,20753,20755,20763,20795,20799,20826,20827,20828,20836,20850,20885,20897,20898,20900,20902,20903,20904,20913,20922,20924,20925,20934,20940,20945,20951,20952,20962,20977,20993,20999,21008,21023,21034,21043,21047,21051,21057,21059,21071,21074,21075,21076,21082,21084,21101,21102,21122,21158,21168,21177,21184,21200,21205,21224,21231,21232,21234,21238,21247,21248,21249,21250,21265,21266,21281,21282,21290,21291,21292,21301,21303,21305,21307,21311,21314,21315,21333,21345,21360,21368,21375,21379,21400,21401,21406,21408,21409,21412,21415,21416,21418,21481,21483,21491,21522,21530,21548,21565,21578,21579,21590,21591,21601,21604,21612,21626,21637,21675,21679,21680,21681,21685,21687,21962,21967,21975,21978,21991,21994,22026,22027,22031,22035,22088,22095,22098,22129,22131,22156,22168,22185,22192,22244,22284,22305,22311,22324,22386,22402,22418,22472,22476,22479,22483,22532,22536,22539,22540,22541,22542,22543,22545,22549,22550,22555,22559,22560,22561,22564,22566,22570,22612,22674,22733,22753,22788,22841,22875,22879,22881,22882,22885,22887,22892,22897,22901,22903,22907,22910,22914,22916,22924,22927,22928,22930,22931,22933,22934,22938,22939,22941,22947,22951,22952,22955,22956,22959,22962,22963,22965,22966,22967,22970,22979,22994,23040,23041,23043,23062,23065,23073,23085,23107,23127]]],["upon",[168,155,[[0,4,4,0,4,[[21,1,1,0,1],[38,1,1,1,2],[41,1,1,2,3],[42,1,1,3,4]]],[1,4,4,4,8,[[52,1,1,4,5],[58,1,1,5,6],[73,1,1,6,7],[77,1,1,7,8]]],[2,1,1,8,9,[[97,1,1,8,9]]],[3,4,4,9,13,[[121,1,1,9,10],[122,2,2,10,12],[128,1,1,12,13]]],[4,3,3,13,16,[[156,1,1,13,14],[176,1,1,14,15],[185,1,1,15,16]]],[5,2,2,16,18,[[194,1,1,16,17],[196,1,1,17,18]]],[6,7,7,18,25,[[216,4,4,18,22],[219,1,1,22,23],[230,2,2,23,25]]],[8,17,17,25,42,[[237,1,1,25,26],[240,2,2,26,28],[241,2,2,28,30],[248,2,2,30,32],[249,1,1,32,33],[250,1,1,33,34],[251,2,2,34,36],[252,1,1,36,37],[253,1,1,37,38],[254,1,1,38,39],[255,1,1,39,40],[256,1,1,40,41],[263,1,1,41,42]]],[9,6,6,42,48,[[272,1,1,42,43],[275,1,1,43,44],[277,1,1,44,45],[283,2,2,45,47],[287,1,1,47,48]]],[10,5,5,48,53,[[303,1,1,48,49],[304,1,1,49,50],[309,1,1,50,51],[311,1,1,51,52],[312,1,1,52,53]]],[11,4,4,53,57,[[314,1,1,53,54],[317,1,1,54,55],[320,1,1,55,56],[334,1,1,56,57]]],[12,2,2,57,59,[[356,1,1,57,58],[358,1,1,58,59]]],[13,3,2,59,61,[[372,2,1,59,60],[392,1,1,60,61]]],[15,1,1,61,62,[[416,1,1,61,62]]],[17,5,5,62,67,[[436,1,1,62,63],[439,1,1,63,64],[442,1,1,64,65],[450,1,1,65,66],[469,1,1,66,67]]],[18,13,13,67,80,[[510,2,2,67,69],[511,1,1,69,70],[532,1,1,70,71],[536,1,1,71,72],[539,1,1,72,73],[556,1,1,73,74],[576,1,1,74,75],[581,1,1,75,76],[596,1,1,76,77],[600,1,1,77,78],[606,1,1,78,79],[622,1,1,79,80]]],[19,1,1,80,81,[[653,1,1,80,81]]],[22,3,3,81,84,[[692,1,1,81,82],[729,2,2,82,84]]],[23,37,26,84,110,[[746,1,1,84,85],[750,1,1,85,86],[751,1,1,86,87],[755,2,2,87,89],[763,1,1,89,90],[770,2,1,90,91],[773,1,1,91,92],[776,1,1,92,93],[779,2,1,93,94],[780,1,1,94,95],[783,1,1,95,96],[784,1,1,96,97],[790,1,1,97,98],[791,1,1,98,99],[792,6,3,99,102],[793,1,1,102,103],[794,10,4,103,107],[795,3,3,107,110]]],[25,40,39,110,149,[[807,1,1,110,111],[808,4,4,111,115],[811,1,1,115,116],[813,1,1,116,117],[814,1,1,117,118],[815,1,1,118,119],[819,2,2,119,121],[820,1,1,121,122],[822,2,2,122,124],[823,1,1,124,125],[824,2,2,125,127],[827,1,1,127,128],[828,1,1,128,129],[831,1,1,129,130],[832,2,2,130,132],[834,1,1,132,133],[835,2,2,133,135],[839,1,1,135,136],[841,8,8,136,144],[842,1,1,144,145],[844,2,2,145,147],[845,1,1,147,148],[846,2,1,148,149]]],[29,1,1,149,150,[[886,1,1,149,150]]],[31,2,2,150,152,[[889,1,1,150,151],[890,1,1,151,152]]],[36,1,1,152,153,[[910,1,1,152,153]]],[37,2,2,153,155,[[915,1,1,153,154],[922,1,1,154,155]]]],[559,1156,1273,1320,1585,1756,2188,2330,2926,3817,3848,3849,4069,5011,5540,5838,6022,6082,6668,6674,6693,6694,6811,7091,7102,7274,7323,7325,7339,7342,7497,7498,7540,7579,7608,7618,7669,7686,7715,7755,7785,7965,8160,8235,8283,8461,8463,8590,9213,9228,9406,9472,9497,9560,9670,9728,10161,10924,10960,11302,11752,12363,12881,12935,13025,13229,13697,14380,14384,14403,14748,14799,14828,15191,15505,15598,16030,16100,16140,16335,17168,17944,18678,18679,18968,19108,19139,19237,19249,19422,19587,19651,19773,19840,19873,19939,19943,20061,20078,20088,20101,20124,20163,20201,20202,20203,20204,20224,20247,20272,20576,20589,20591,20595,20603,20644,20692,20717,20752,20855,20860,20890,20956,20973,20985,21019,21049,21107,21150,21229,21242,21243,21302,21326,21327,21437,21479,21493,21494,21503,21508,21511,21514,21520,21551,21575,21592,21603,21649,22483,22537,22558,22870,22944,23055]]],["whereupon",[2,2,[[25,2,2,0,2,[[841,2,2,0,2]]]],[21518,21519]]],["whither",[1,1,[[23,1,1,0,1,[[784,1,1,0,1]]]],[19945]]],["with",[44,43,[[0,6,6,0,6,[[3,1,1,0,1],[17,1,1,1,2],[33,1,1,2,3],[41,1,1,3,4],[42,1,1,4,5],[48,1,1,5,6]]],[1,1,1,6,7,[[83,1,1,6,7]]],[2,1,1,7,8,[[107,1,1,7,8]]],[3,2,2,8,10,[[121,1,1,8,9],[141,1,1,9,10]]],[5,2,2,10,12,[[197,1,1,10,11],[208,1,1,11,12]]],[6,2,1,12,13,[[219,2,1,12,13]]],[8,4,4,13,17,[[249,1,1,13,14],[253,1,1,14,15],[254,1,1,15,16],[258,1,1,16,17]]],[9,1,1,17,18,[[286,1,1,17,18]]],[10,1,1,18,19,[[300,1,1,18,19]]],[11,3,3,19,22,[[318,1,1,19,20],[320,1,1,20,21],[334,1,1,21,22]]],[13,3,3,22,25,[[382,1,1,22,23],[386,1,1,23,24],[391,1,1,24,25]]],[17,3,3,25,28,[[439,1,1,25,26],[448,1,1,26,27],[469,1,1,27,28]]],[18,1,1,28,29,[[586,1,1,28,29]]],[23,3,3,29,32,[[746,1,1,29,30],[756,1,1,30,31],[769,1,1,31,32]]],[24,1,1,32,33,[[799,1,1,32,33]]],[25,7,7,33,40,[[817,2,2,33,35],[818,1,1,35,36],[824,1,1,36,37],[827,1,1,37,38],[832,1,1,38,39],[849,1,1,39,40]]],[26,2,2,40,42,[[860,2,2,40,42]]],[38,1,1,42,43,[[926,1,1,42,43]]]],[87,457,1000,1276,1309,1502,2527,3271,3815,4472,6126,6444,6755,7542,7698,7709,7833,8570,9081,9682,9731,10159,11519,11608,11720,12932,13156,13706,15769,18994,19250,19560,20395,20788,20790,20837,21049,21120,21244,21722,22043,22059,23106]]],["within",[3,3,[[2,1,1,0,1,[[115,1,1,0,1]]],[3,1,1,1,2,[[120,1,1,1,2]]],[11,1,1,2,3,[[323,1,1,2,3]]]],[3549,3753,9837]]]]},{"k":"H414","v":[["Elah",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8862]]]]},{"k":"H415","v":[["EleloheIsrael",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[980]]]]},{"k":"H416","v":[["Elbethel",[1,1,[[0,1,1,0,1,[[34,1,1,0,1]]]],[1018]]]]},{"k":"H417","v":[["+",[3,3,[[25,3,3,0,3,[[814,2,2,0,2],[839,1,1,2,3]]]],[20719,20721,21447]]]]},{"k":"H418","v":[["*",[3,3,[[13,3,3,0,3,[[368,1,1,0,1],[375,2,2,1,3]]]],[11219,11374,11375]]],["algum",[2,2,[[13,2,2,0,2,[[375,2,2,0,2]]]],[11374,11375]]],["trees",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11219]]]]},{"k":"H419","v":[["Eldad",[2,2,[[3,2,2,0,2,[[127,2,2,0,2]]]],[4050,4051]]]]},{"k":"H420","v":[["Eldaah",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[662,10285]]]]},{"k":"H421","v":[["Lament",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22299]]]]},{"k":"H422","v":[["*",[7,6,[[6,1,1,0,1,[[227,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[10,2,1,2,3,[[298,2,1,2,3]]],[13,1,1,3,4,[[372,1,1,3,4]]],[27,2,2,4,6,[[865,1,1,4,5],[871,1,1,5,6]]]],[6982,7532,9016,11304,22135,22229]]],["+",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7532]]],["cursedst",[1,1,[[6,1,1,0,1,[[227,1,1,0,1]]]],[6982]]],["oath",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9016]]],["swear",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]]],[9016,11304]]],["swearing",[2,2,[[27,2,2,0,2,[[865,1,1,0,1],[871,1,1,1,2]]]],[22135,22229]]]]},{"k":"H423","v":[["*",[35,32,[[0,3,2,0,2,[[23,2,1,0,1],[25,1,1,1,2]]],[2,1,1,2,3,[[94,1,1,2,3]]],[3,4,3,3,6,[[121,4,3,3,6]]],[4,6,6,6,12,[[181,5,5,6,11],[182,1,1,11,12]]],[10,1,1,12,13,[[298,1,1,12,13]]],[13,3,2,13,15,[[372,2,1,13,14],[400,1,1,14,15]]],[15,1,1,15,16,[[422,1,1,15,16]]],[17,1,1,16,17,[[466,1,1,16,17]]],[18,2,2,17,19,[[487,1,1,17,18],[536,1,1,18,19]]],[19,1,1,19,20,[[656,1,1,19,20]]],[22,1,1,20,21,[[702,1,1,20,21]]],[23,4,4,21,25,[[767,1,1,21,22],[773,1,1,22,23],[786,1,1,23,24],[788,1,1,24,25]]],[25,5,5,25,30,[[817,1,1,25,26],[818,4,4,26,30]]],[26,1,1,30,31,[[858,1,1,30,31]]],[37,1,1,31,32,[[915,1,1,31,32]]]],[632,720,2831,3813,3815,3819,5691,5693,5698,5699,5700,5715,9016,11304,11957,12578,13618,14048,14802,17248,18101,19494,19653,19993,20022,20821,20838,20841,20843,20844,21999,22939]]],["+",[3,2,[[0,2,1,0,1,[[23,2,1,0,1]]],[18,1,1,1,2,[[536,1,1,1,2]]]],[632,14802]]],["curse",[9,9,[[3,2,2,0,2,[[121,2,2,0,2]]],[4,1,1,2,3,[[181,1,1,2,3]]],[15,1,1,3,4,[[422,1,1,3,4]]],[17,1,1,4,5,[[466,1,1,4,5]]],[22,1,1,5,6,[[702,1,1,5,6]]],[23,1,1,6,7,[[773,1,1,6,7]]],[26,1,1,7,8,[[858,1,1,7,8]]],[37,1,1,8,9,[[915,1,1,8,9]]]],[3813,3819,5698,12578,13618,18101,19653,21999,22939]]],["curses",[5,5,[[3,1,1,0,1,[[121,1,1,0,1]]],[4,3,3,1,4,[[181,2,2,1,3],[182,1,1,3,4]]],[13,1,1,4,5,[[400,1,1,4,5]]]],[3815,5699,5700,5715,11957]]],["cursing",[3,3,[[3,1,1,0,1,[[121,1,1,0,1]]],[18,1,1,1,2,[[487,1,1,1,2]]],[19,1,1,2,3,[[656,1,1,2,3]]]],[3813,14048,17248]]],["execration",[2,2,[[23,2,2,0,2,[[786,1,1,0,1],[788,1,1,1,2]]]],[19993,20022]]],["oath",[11,10,[[0,1,1,0,1,[[25,1,1,0,1]]],[4,2,2,1,3,[[181,2,2,1,3]]],[10,1,1,3,4,[[298,1,1,3,4]]],[13,2,1,4,5,[[372,2,1,4,5]]],[25,5,5,5,10,[[817,1,1,5,6],[818,4,4,6,10]]]],[720,5691,5693,9016,11304,20821,20838,20841,20843,20844]]],["swearing",[2,2,[[2,1,1,0,1,[[94,1,1,0,1]]],[23,1,1,1,2,[[767,1,1,1,2]]]],[2831,19494]]]]},{"k":"H424","v":[["*",[13,12,[[0,1,1,0,1,[[34,1,1,0,1]]],[6,2,2,1,3,[[216,2,2,1,3]]],[9,4,3,3,6,[[284,4,3,3,6]]],[10,1,1,6,7,[[303,1,1,6,7]]],[12,1,1,7,8,[[347,1,1,7,8]]],[22,2,2,8,10,[[679,1,1,8,9],[684,1,1,9,10]]],[25,1,1,10,11,[[807,1,1,10,11]]],[27,1,1,11,12,[[865,1,1,11,12]]]],[1015,6665,6673,8487,8488,8492,9198,10671,17684,17782,20576,22146]]],["elms",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22146]]],["oak",[11,10,[[0,1,1,0,1,[[34,1,1,0,1]]],[6,2,2,1,3,[[216,2,2,1,3]]],[9,4,3,3,6,[[284,4,3,3,6]]],[10,1,1,6,7,[[303,1,1,6,7]]],[12,1,1,7,8,[[347,1,1,7,8]]],[22,1,1,8,9,[[679,1,1,8,9]]],[25,1,1,9,10,[[807,1,1,9,10]]]],[1015,6665,6673,8487,8488,8492,9198,10671,17684,20576]]],["tree",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17782]]]]},{"k":"H425","v":[["Elah",[16,15,[[0,1,1,0,1,[[35,1,1,0,1]]],[8,3,3,1,4,[[252,2,2,1,3],[256,1,1,3,4]]],[10,4,4,4,8,[[306,4,4,4,8]]],[11,4,4,8,12,[[327,1,1,8,9],[329,1,1,9,10],[330,2,2,10,12]]],[12,4,3,12,15,[[338,1,1,12,13],[341,2,1,13,14],[346,1,1,14,15]]]],[1081,7620,7637,7781,9289,9291,9296,9297,9955,9984,10025,10033,10304,10400,10623]]]]},{"k":"H426","v":[["*",[95,78,[[14,43,36,0,36,[[406,1,1,0,1],[407,12,11,1,12],[408,14,11,12,23],[409,16,13,23,36]]],[23,1,1,36,37,[[754,1,1,36,37]]],[26,51,41,37,78,[[851,12,10,37,47],[852,12,9,47,56],[853,5,4,56,60],[854,10,8,60,68],[855,12,10,68,78]]]],[12134,12135,12136,12139,12142,12145,12146,12147,12148,12149,12150,12151,12154,12156,12158,12159,12160,12161,12163,12165,12167,12168,12169,12185,12187,12188,12189,12190,12191,12192,12193,12194,12196,12197,12198,12199,19212,21769,21776,21777,21778,21781,21786,21795,21802,21803,21805,21819,21821,21822,21824,21825,21832,21833,21835,21836,21839,21845,21846,21855,21877,21878,21885,21888,21892,21895,21897,21900,21910,21912,21915,21916,21917,21921,21925,21927,21928,21931]]],["+",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12146]]],["God",[78,66,[[14,42,35,0,35,[[406,1,1,0,1],[407,11,10,1,11],[408,14,11,11,22],[409,16,13,22,35]]],[26,36,31,35,66,[[851,10,9,35,44],[852,8,6,44,50],[853,1,1,50,51],[854,5,5,51,56],[855,12,10,56,66]]]],[12134,12135,12136,12139,12142,12145,12147,12148,12149,12150,12151,12154,12156,12158,12159,12160,12161,12163,12165,12167,12168,12169,12185,12187,12188,12189,12190,12191,12192,12193,12194,12196,12197,12198,12199,21776,21777,21778,21781,21786,21795,21802,21803,21805,21822,21824,21832,21833,21835,21836,21839,21877,21892,21895,21897,21900,21910,21912,21915,21916,21917,21921,21925,21927,21928,21931]]],["god",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[853,1,1,1,2]]]],[21835,21845]]],["gods",[14,13,[[23,1,1,0,1,[[754,1,1,0,1]]],[26,13,12,1,13,[[851,2,2,1,3],[852,3,3,3,6],[853,3,3,6,9],[854,5,4,9,13]]]],[19212,21769,21805,21819,21821,21825,21845,21846,21855,21878,21885,21888,21897]]]]},{"k":"H427","v":[["oak",[1,1,[[5,1,1,0,1,[[210,1,1,0,1]]]],[6502]]]]},{"k":"H428","v":[["*",[746,697,[[0,90,78,0,78,[[1,1,1,0,1],[5,1,1,1,2],[8,2,1,2,3],[9,7,6,3,9],[10,2,2,9,11],[13,1,1,11,12],[14,3,3,12,15],[19,1,1,15,16],[20,1,1,16,17],[21,3,3,17,20],[23,1,1,20,21],[24,8,7,21,28],[26,1,1,28,29],[28,1,1,29,30],[30,1,1,30,31],[31,1,1,31,32],[32,1,1,32,33],[33,1,1,33,34],[34,1,1,34,35],[35,31,25,35,60],[36,1,1,60,61],[37,2,1,61,62],[38,3,3,62,65],[39,1,1,65,66],[40,1,1,66,67],[42,1,1,67,68],[43,2,2,68,70],[45,7,5,70,75],[47,2,2,75,77],[48,1,1,77,78]]],[1,26,24,78,102,[[50,1,1,78,79],[53,1,1,79,80],[55,7,6,80,86],[59,1,1,86,87],[60,2,2,87,89],[68,2,2,89,91],[69,1,1,91,92],[70,2,2,92,94],[73,1,1,94,95],[74,1,1,95,96],[77,1,1,96,97],[81,2,2,97,99],[83,2,1,99,100],[84,1,1,100,101],[87,1,1,101,102]]],[2,26,25,102,127,[[91,1,1,102,103],[94,3,3,103,106],[99,1,1,106,107],[100,4,4,107,111],[107,4,3,111,114],[109,1,1,114,115],[110,1,1,115,116],[111,2,2,116,118],[112,3,3,118,121],[114,1,1,121,122],[115,4,4,122,126],[116,1,1,126,127]]],[3,73,71,127,198,[[117,4,4,127,131],[118,1,1,131,132],[119,9,9,132,141],[120,4,4,141,145],[121,3,3,145,148],[126,1,1,148,149],[129,2,2,149,151],[130,1,1,151,152],[131,2,2,152,154],[132,6,6,154,160],[137,1,1,160,161],[138,2,2,161,163],[142,23,21,163,184],[143,1,1,184,185],[144,2,2,185,187],[145,1,1,187,188],[146,1,1,188,189],[149,2,2,189,191],[150,3,3,191,194],[151,3,3,194,197],[152,1,1,197,198]]],[4,49,48,198,246,[[153,2,2,198,200],[155,2,2,200,202],[156,3,3,202,205],[157,2,2,205,207],[158,2,2,207,209],[159,2,2,209,211],[161,2,2,211,213],[162,1,1,213,214],[163,2,2,214,216],[164,3,3,216,219],[168,1,1,219,220],[169,1,1,220,221],[170,3,2,221,223],[171,2,2,223,225],[172,2,2,225,227],[174,2,2,227,229],[177,2,2,229,231],[178,1,1,231,232],[179,3,3,232,235],[180,3,3,235,238],[181,1,1,238,239],[182,2,2,239,241],[183,4,4,241,245],[184,1,1,245,246]]],[5,51,44,246,290,[[190,4,4,246,250],[194,3,1,250,251],[195,2,1,251,252],[196,6,5,252,257],[197,5,5,257,262],[198,2,2,262,264],[199,1,1,264,265],[200,1,1,265,266],[203,4,4,266,270],[205,5,5,270,275],[206,2,2,275,277],[207,6,5,277,282],[209,7,5,282,287],[210,3,3,287,290]]],[6,11,11,290,301,[[212,2,2,290,292],[213,1,1,292,293],[219,1,1,293,294],[223,1,1,294,295],[228,2,2,295,297],[230,4,4,297,301]]],[7,2,2,301,303,[[234,1,1,301,302],[235,1,1,302,303]]],[8,27,25,303,328,[[237,2,1,303,304],[239,2,1,304,305],[241,1,1,305,306],[242,1,1,306,307],[245,2,2,307,309],[246,1,1,309,310],[249,1,1,310,311],[251,1,1,311,312],[252,4,4,312,316],[253,3,3,316,319],[254,1,1,319,320],[256,1,1,320,321],[258,1,1,321,322],[259,1,1,322,323],[260,3,3,323,326],[264,1,1,326,327],[266,1,1,327,328]]],[9,15,14,328,342,[[268,2,1,328,329],[269,2,2,329,331],[271,1,1,331,332],[273,1,1,332,333],[279,1,1,333,334],[280,1,1,334,335],[282,1,1,335,336],[287,1,1,336,337],[289,4,4,337,341],[290,1,1,341,342]]],[10,20,19,342,361,[[294,3,3,342,345],[297,2,2,345,347],[298,1,1,347,348],[299,2,2,348,350],[300,1,1,350,351],[307,2,2,351,353],[308,1,1,353,354],[310,3,2,354,356],[311,2,2,356,358],[312,3,3,358,361]]],[11,17,17,361,378,[[313,2,2,361,363],[314,1,1,363,364],[315,2,2,364,366],[316,1,1,366,367],[318,1,1,367,368],[319,1,1,368,369],[322,1,1,369,370],[329,1,1,370,371],[330,1,1,371,372],[332,1,1,372,373],[333,1,1,373,374],[335,2,2,374,376],[337,2,2,376,378]]],[12,84,77,378,455,[[338,6,6,378,384],[339,6,6,384,390],[340,2,2,390,392],[341,10,10,392,402],[342,2,2,402,404],[343,7,7,404,411],[344,6,6,411,417],[345,8,5,417,422],[346,7,5,422,427],[347,1,1,427,428],[348,5,4,428,432],[349,5,5,432,437],[351,1,1,437,438],[354,1,1,438,439],[358,1,1,439,440],[360,4,4,440,444],[361,4,3,444,447],[362,2,2,447,449],[363,3,3,449,452],[364,2,2,452,454],[366,1,1,454,455]]],[13,20,20,455,475,[[369,2,2,455,457],[370,1,1,457,458],[374,1,1,458,459],[375,1,1,459,460],[380,3,3,460,463],[381,1,1,463,464],[383,2,2,464,466],[384,3,3,466,469],[387,1,1,469,470],[390,1,1,470,471],[395,1,1,471,472],[398,2,2,472,474],[401,1,1,474,475]]],[14,11,11,475,486,[[403,1,1,475,476],[404,4,4,476,480],[409,1,1,480,481],[410,2,2,481,483],[411,2,2,483,485],[412,1,1,485,486]]],[15,17,17,486,503,[[413,1,1,486,487],[417,1,1,487,488],[418,4,4,488,492],[419,4,4,492,496],[422,1,1,496,497],[423,2,2,497,499],[424,3,3,499,502],[425,1,1,502,503]]],[16,10,9,503,512,[[426,1,1,503,504],[427,1,1,504,505],[428,1,1,505,506],[434,7,6,506,512]]],[17,10,10,512,522,[[443,1,1,512,513],[445,1,1,513,514],[447,2,2,514,516],[451,1,1,516,517],[453,1,1,517,518],[461,1,1,518,519],[467,1,1,519,520],[468,1,1,520,521],[477,1,1,521,522]]],[18,8,7,522,529,[[492,1,1,522,523],[497,2,1,523,524],[519,1,1,524,525],[527,1,1,525,526],[550,1,1,526,527],[584,1,1,527,528],[603,1,1,528,529]]],[19,2,2,529,531,[[651,1,1,529,530],[652,1,1,530,531]]],[20,3,3,531,534,[[665,2,2,531,533],[669,1,1,533,534]]],[22,27,22,534,556,[[685,1,1,534,535],[706,1,1,535,536],[714,2,2,536,538],[717,1,1,538,539],[718,1,1,539,540],[719,1,1,540,541],[720,1,1,541,542],[722,1,1,542,543],[723,1,1,543,544],[725,2,2,544,546],[726,1,1,546,547],[727,7,3,547,550],[735,1,1,550,551],[738,1,1,551,552],[742,1,1,552,553],[743,1,1,553,554],[744,3,2,554,556]]],[23,60,60,556,616,[[746,1,1,556,557],[747,2,2,557,559],[748,2,2,559,561],[749,4,4,561,565],[751,4,4,565,569],[753,2,2,569,571],[754,1,1,571,572],[755,1,1,572,573],[757,1,1,573,574],[758,1,1,574,575],[760,1,1,575,576],[761,1,1,576,577],[762,1,1,577,578],[764,1,1,578,579],[766,2,2,579,581],[768,1,1,581,582],[769,3,3,582,585],[770,3,3,585,588],[771,2,2,588,590],[772,1,1,590,591],[773,1,1,591,592],[774,2,2,592,594],[775,2,2,594,596],[776,1,1,596,597],[778,1,1,597,598],[780,4,4,598,602],[782,5,5,602,607],[787,2,2,607,609],[789,1,1,609,610],[793,1,1,610,611],[795,3,3,611,614],[796,2,2,614,616]]],[24,2,2,616,618,[[797,1,1,616,617],[801,1,1,617,618]]],[25,46,46,618,664,[[805,1,1,618,619],[809,1,1,619,620],[810,1,1,620,621],[812,1,1,621,622],[815,4,4,622,626],[817,3,3,626,629],[818,3,3,629,632],[819,3,3,632,635],[824,1,1,635,636],[825,1,1,636,637],[834,1,1,637,638],[837,1,1,638,639],[838,6,6,639,645],[841,7,7,645,652],[843,1,1,652,653],[844,2,2,653,655],[846,1,1,655,656],[847,1,1,656,657],[848,2,2,657,659],[849,5,5,659,664]]],[26,9,8,664,672,[[850,1,1,664,665],[859,2,2,665,667],[860,2,2,667,669],[861,4,3,669,672]]],[27,1,1,672,673,[[875,1,1,672,673]]],[29,1,1,673,674,[[884,1,1,673,674]]],[32,2,2,674,676,[[894,2,2,674,676]]],[34,1,1,676,677,[[904,1,1,676,677]]],[36,1,1,677,678,[[910,1,1,677,678]]],[37,24,19,678,697,[[911,8,4,678,682],[913,1,1,682,683],[914,6,6,683,689],[916,2,2,689,691],[918,6,5,691,696],[923,1,1,696,697]]]],[34,146,224,235,239,254,263,265,266,276,293,339,361,370,377,503,542,548,567,570,619,662,665,670,671,674,675,677,773,808,916,945,965,1001,1037,1041,1045,1049,1050,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1063,1064,1065,1066,1067,1068,1069,1070,1071,1080,1083,1085,1144,1156,1166,1168,1173,1230,1297,1330,1331,1394,1401,1404,1408,1411,1452,1459,1501,1533,1610,1669,1670,1671,1674,1679,1680,1778,1814,1816,2032,2033,2052,2078,2088,2185,2234,2297,2442,2446,2523,2532,2654,2770,2834,2835,2843,2996,3010,3019,3021,3028,3275,3277,3280,3341,3359,3391,3394,3404,3406,3439,3523,3538,3542,3547,3570,3604,3609,3620,3621,3648,3690,3693,3694,3695,3709,3710,3712,3713,3719,3725,3758,3780,3784,3788,3811,3814,3815,4016,4079,4091,4147,4166,4175,4220,4222,4223,4224,4225,4232,4365,4384,4390,4496,4503,4507,4511,4514,4516,4519,4523,4524,4525,4526,4530,4531,4536,4539,4540,4542,4546,4547,4552,4553,4555,4600,4601,4647,4664,4761,4762,4833,4835,4845,4860,4869,4874,4892,4893,4927,4980,4996,5010,5034,5049,5056,5075,5092,5110,5123,5128,5161,5162,5207,5226,5231,5241,5268,5270,5354,5383,5396,5398,5411,5415,5442,5443,5475,5487,5550,5563,5582,5589,5597,5598,5613,5626,5656,5680,5709,5715,5729,5731,5745,5756,5803,5916,5917,5930,5931,6024,6050,6080,6086,6087,6088,6106,6112,6117,6119,6121,6125,6131,6137,6186,6188,6277,6278,6284,6287,6329,6337,6352,6369,6372,6376,6381,6384,6389,6390,6397,6423,6463,6464,6467,6472,6473,6493,6502,6505,6549,6568,6569,6757,6907,7007,7011,7079,7089,7098,7100,7189,7208,7263,7305,7348,7368,7425,7427,7451,7514,7605,7629,7636,7641,7657,7699,7700,7702,7713,7784,7812,7855,7870,7873,7898,7970,8013,8062,8086,8120,8146,8197,8338,8375,8428,8602,8654,8661,8670,8675,8709,8846,8852,8871,8943,8979,9044,9064,9074,9087,9318,9334,9377,9427,9437,9452,9478,9491,9497,9503,9540,9546,9572,9586,9589,9607,9694,9715,9802,10024,10051,10112,10130,10181,10182,10238,10239,10275,10281,10283,10285,10295,10306,10307,10324,10329,10339,10356,10359,10362,10366,10387,10388,10389,10391,10397,10403,10416,10418,10423,10426,10442,10452,10471,10473,10485,10487,10504,10508,10519,10543,10546,10552,10564,10568,10575,10581,10585,10603,10613,10615,10624,10640,10648,10649,10659,10663,10683,10684,10692,10697,10721,10734,10735,10743,10758,10778,10878,10951,10987,10992,10993,11007,11020,11034,11045,11051,11052,11085,11089,11096,11131,11140,11181,11232,11242,11264,11356,11371,11481,11482,11483,11498,11537,11542,11552,11558,11564,11626,11703,11823,11876,11889,11973,12025,12028,12086,12089,12092,12174,12202,12214,12238,12251,12296,12300,12388,12407,12408,12409,12415,12426,12481,12484,12487,12557,12591,12595,12625,12631,12650,12697,12707,12725,12748,12854,12860,12861,12862,12865,12866,13031,13099,13131,13137,13240,13297,13481,13629,13679,13929,14092,14189,14559,14689,15032,15742,16117,17102,17114,17439,17457,17522,17786,18171,18342,18350,18415,18446,18479,18496,18554,18568,18606,18608,18628,18648,18651,18657,18771,18829,18897,18902,18924,18930,18999,19009,19014,19039,19045,19067,19077,19083,19087,19121,19129,19132,19146,19184,19199,19217,19232,19288,19315,19346,19377,19397,19423,19456,19459,19529,19543,19545,19564,19579,19582,19587,19602,19608,19632,19636,19671,19682,19712,19727,19745,19807,19858,19859,19860,19866,19899,19904,19911,19919,19922,19998,20007,20041,20163,20231,20272,20273,20296,20298,20326,20459,20535,20619,20627,20657,20734,20745,20747,20749,20767,20792,20805,20837,20840,20843,20859,20860,20862,21037,21075,21304,21379,21400,21401,21402,21406,21408,21415,21501,21502,21505,21506,21509,21510,21512,21561,21585,21590,21655,21679,21687,21688,21703,21712,21718,21731,21732,21754,22030,22036,22040,22077,22083,22088,22089,22291,22452,22601,22602,22754,22868,22887,22888,22897,22899,22919,22926,22927,22932,22933,22935,22936,22951,22952,22985,22988,22991,22992,22993,23065]]],["+",[21,21,[[0,3,3,0,3,[[8,1,1,0,1],[9,2,2,1,3]]],[2,5,5,3,8,[[91,1,1,3,4],[94,3,3,4,7],[107,1,1,7,8]]],[3,2,2,8,10,[[121,1,1,8,9],[138,1,1,9,10]]],[5,1,1,10,11,[[210,1,1,10,11]]],[9,1,1,11,12,[[287,1,1,11,12]]],[12,2,2,12,14,[[339,1,1,12,13],[360,1,1,13,14]]],[17,1,1,14,15,[[447,1,1,14,15]]],[20,1,1,15,16,[[665,1,1,15,16]]],[22,1,1,16,17,[[719,1,1,16,17]]],[23,1,1,17,18,[[748,1,1,17,18]]],[25,3,3,18,21,[[809,1,1,18,19],[817,1,1,19,20],[819,1,1,20,21]]]],[224,239,266,2770,2834,2835,2843,3277,3815,4390,6502,8602,10359,10987,13131,17439,18479,19039,20619,20767,20859]]],["Some",[1,1,[[18,1,1,0,1,[[497,1,1,0,1]]]],[14189]]],["These",[137,134,[[0,19,19,0,19,[[1,1,1,0,1],[5,1,1,1,2],[8,1,1,2,3],[9,3,3,3,6],[10,1,1,6,7],[24,1,1,7,8],[33,1,1,8,9],[35,5,5,9,14],[36,1,1,14,15],[45,4,4,15,19]]],[1,5,5,19,24,[[55,1,1,19,20],[68,1,1,20,21],[81,2,2,21,23],[84,1,1,23,24]]],[2,5,5,24,29,[[100,1,1,24,25],[112,2,2,25,27],[115,1,1,27,28],[116,1,1,28,29]]],[3,37,35,29,64,[[117,2,2,29,31],[118,1,1,31,32],[119,3,3,32,35],[120,4,4,35,39],[129,1,1,39,40],[142,19,17,40,57],[145,1,1,57,58],[146,1,1,58,59],[149,1,1,59,60],[150,2,2,60,62],[151,1,1,62,63],[152,1,1,63,64]]],[4,7,7,64,71,[[153,1,1,64,65],[156,1,1,65,66],[157,1,1,66,67],[159,1,1,67,68],[164,1,1,68,69],[179,1,1,69,70],[181,1,1,70,71]]],[5,4,4,71,75,[[199,1,1,71,72],[205,1,1,72,73],[206,1,1,73,74],[207,1,1,74,75]]],[7,1,1,75,76,[[234,1,1,75,76]]],[9,4,4,76,80,[[269,1,1,76,77],[289,3,3,77,80]]],[10,2,2,80,82,[[299,1,1,80,81],[312,1,1,81,82]]],[12,30,29,82,111,[[338,3,3,82,85],[339,3,3,85,88],[341,6,6,88,94],[342,1,1,94,95],[344,2,2,95,97],[345,3,2,97,99],[346,1,1,99,100],[348,2,2,100,102],[349,2,2,102,104],[360,3,3,104,107],[361,2,2,107,109],[363,1,1,109,110],[364,1,1,110,111]]],[13,2,2,111,113,[[383,1,1,111,112],[384,1,1,112,113]]],[14,2,2,113,115,[[404,1,1,113,114],[410,1,1,114,115]]],[15,4,4,115,119,[[419,2,2,115,117],[424,2,2,117,119]]],[18,1,1,119,120,[[527,1,1,119,120]]],[19,2,2,120,122,[[651,1,1,120,121],[652,1,1,121,122]]],[22,2,2,122,124,[[720,1,1,122,123],[743,1,1,123,124]]],[25,4,4,124,128,[[837,1,1,124,125],[844,1,1,125,126],[847,1,1,126,127],[848,1,1,127,128]]],[37,6,6,128,134,[[911,3,3,128,131],[914,1,1,131,132],[916,1,1,132,133],[918,1,1,133,134]]]],[34,146,224,254,265,266,276,674,1001,1050,1055,1059,1060,1069,1085,1401,1404,1408,1411,1669,2032,2442,2446,2532,3028,3406,3439,3570,3604,3620,3648,3690,3693,3695,3712,3758,3780,3784,3788,4091,4496,4503,4507,4511,4514,4516,4519,4523,4524,4526,4530,4531,4536,4539,4540,4547,4552,4647,4664,4761,4833,4845,4860,4892,4893,5049,5075,5128,5241,5597,5680,6186,6372,6381,6423,7189,8086,8661,8670,8675,9074,9497,10281,10283,10306,10307,10339,10356,10387,10389,10391,10397,10416,10423,10442,10552,10568,10585,10603,10649,10683,10697,10734,10735,10992,10993,11007,11034,11045,11096,11131,11542,11558,12089,12202,12426,12484,12631,12650,14689,17102,17114,18496,18902,21379,21590,21679,21687,22888,22897,22899,22936,22952,22992]]],["This",[1,1,[[1,1,1,0,1,[[87,1,1,0,1]]]],[2654]]],["Thus",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[4016]]],["another",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11020]]],["like",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21655]]],["manner",[1,1,[[3,1,1,0,1,[[144,1,1,0,1]]]],[4601]]],["one",[2,2,[[9,1,1,0,1,[[268,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]]],[8062,9437]]],["other",[3,3,[[5,1,1,0,1,[[194,1,1,0,1]]],[9,1,1,1,2,[[268,1,1,1,2]]],[10,1,1,2,3,[[310,1,1,2,3]]]],[6024,8062,9437]]],["others",[1,1,[[25,1,1,0,1,[[810,1,1,0,1]]]],[20627]]],["same",[3,3,[[0,1,1,0,1,[[43,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[12,1,1,2,3,[[341,1,1,2,3]]]],[1330,7641,10418]]],["so",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5475]]],["some",[5,3,[[5,2,1,0,1,[[194,2,1,0,1]]],[18,1,1,1,2,[[497,1,1,1,2]]],[26,2,1,2,3,[[861,2,1,2,3]]]],[6024,14189,22083]]],["sort",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11020]]],["such",[7,7,[[8,1,1,0,1,[[237,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]],[17,1,1,2,3,[[453,1,1,2,3]]],[23,2,2,3,5,[[762,1,1,3,4],[782,1,1,4,5]]],[25,1,1,5,6,[[818,1,1,5,6]]],[26,1,1,6,7,[[859,1,1,6,7]]]],[7263,12409,13297,19397,19899,20840,22030]]],["them",[7,7,[[12,1,1,0,1,[[346,1,1,0,1]]],[18,1,1,1,2,[[603,1,1,1,2]]],[23,2,2,2,4,[[754,1,1,2,3],[795,1,1,3,4]]],[25,2,2,4,6,[[805,1,1,4,5],[849,1,1,5,6]]],[32,1,1,6,7,[[894,1,1,6,7]]]],[10640,16117,19217,20231,20535,21712,22601]]],["these",[485,463,[[0,63,57,0,57,[[9,2,2,0,2],[10,1,1,2,3],[13,1,1,3,4],[14,2,2,4,6],[19,1,1,6,7],[20,1,1,7,8],[21,3,3,8,11],[23,1,1,11,12],[24,7,7,12,19],[26,1,1,19,20],[28,1,1,20,21],[30,1,1,21,22],[31,1,1,22,23],[34,1,1,23,24],[35,26,21,24,45],[37,2,1,45,46],[38,2,2,46,48],[39,1,1,48,49],[42,1,1,49,50],[43,1,1,50,51],[45,3,3,51,54],[47,2,2,54,56],[48,1,1,56,57]]],[1,20,19,57,76,[[50,1,1,57,58],[53,1,1,58,59],[55,6,6,59,65],[59,1,1,65,66],[60,2,2,66,68],[68,1,1,68,69],[69,1,1,69,70],[70,2,2,70,72],[73,1,1,72,73],[74,1,1,73,74],[77,1,1,74,75],[83,2,1,75,76]]],[2,11,11,76,87,[[100,3,3,76,79],[107,2,2,79,81],[110,1,1,81,82],[111,2,2,82,84],[112,1,1,84,85],[114,1,1,85,86],[115,1,1,86,87]]],[3,29,29,87,116,[[117,2,2,87,89],[119,6,6,89,95],[129,1,1,95,96],[130,1,1,96,97],[131,1,1,97,98],[132,6,6,98,104],[137,1,1,104,105],[138,1,1,105,106],[142,4,4,106,110],[143,1,1,110,111],[144,1,1,111,112],[149,1,1,112,113],[150,1,1,113,114],[151,2,2,114,116]]],[4,37,37,116,153,[[153,1,1,116,117],[155,2,2,117,119],[156,2,2,119,121],[158,2,2,121,123],[159,1,1,123,124],[161,2,2,124,126],[162,1,1,126,127],[163,2,2,127,129],[164,2,2,129,131],[168,1,1,131,132],[169,1,1,132,133],[170,2,2,133,135],[171,1,1,135,136],[172,2,2,136,138],[174,1,1,138,139],[177,1,1,139,140],[178,1,1,140,141],[179,2,2,141,143],[180,3,3,143,146],[182,2,2,146,148],[183,4,4,148,152],[184,1,1,152,153]]],[5,32,29,153,182,[[190,3,3,153,156],[195,2,1,156,157],[196,3,3,157,160],[197,2,2,160,162],[198,2,2,162,164],[200,1,1,164,165],[203,3,3,165,168],[205,4,4,168,172],[207,4,4,172,176],[209,7,5,176,181],[210,1,1,181,182]]],[6,10,10,182,192,[[212,1,1,182,183],[213,1,1,183,184],[219,1,1,184,185],[223,1,1,185,186],[228,2,2,186,188],[230,4,4,188,192]]],[7,1,1,192,193,[[235,1,1,192,193]]],[8,15,14,193,207,[[239,2,1,193,194],[241,1,1,194,195],[245,1,1,195,196],[249,1,1,196,197],[251,1,1,197,198],[252,2,2,198,200],[253,1,1,200,201],[256,1,1,201,202],[258,1,1,202,203],[259,1,1,203,204],[260,1,1,204,205],[264,1,1,205,206],[266,1,1,206,207]]],[9,8,8,207,215,[[269,1,1,207,208],[271,1,1,208,209],[273,1,1,209,210],[279,1,1,210,211],[280,1,1,211,212],[282,1,1,212,213],[289,1,1,213,214],[290,1,1,214,215]]],[10,14,14,215,229,[[294,2,2,215,217],[297,2,2,217,219],[298,1,1,219,220],[299,1,1,220,221],[300,1,1,221,222],[307,2,2,222,224],[308,1,1,224,225],[310,1,1,225,226],[311,1,1,226,227],[312,2,2,227,229]]],[11,16,16,229,245,[[313,2,2,229,231],[314,1,1,231,232],[315,2,2,232,234],[318,1,1,234,235],[319,1,1,235,236],[322,1,1,236,237],[329,1,1,237,238],[330,1,1,238,239],[332,1,1,239,240],[333,1,1,240,241],[335,2,2,241,243],[337,2,2,243,245]]],[12,45,42,245,287,[[338,3,3,245,248],[339,2,2,248,250],[340,2,2,250,252],[341,3,3,252,255],[342,1,1,255,256],[343,7,7,256,263],[344,4,4,263,267],[345,5,3,267,270],[346,5,4,270,274],[347,1,1,274,275],[348,1,1,275,276],[349,3,3,276,279],[351,1,1,279,280],[354,1,1,280,281],[358,1,1,281,282],[362,2,2,282,284],[363,2,2,284,286],[364,1,1,286,287]]],[13,16,16,287,303,[[369,2,2,287,289],[370,1,1,289,290],[374,1,1,290,291],[375,1,1,291,292],[380,2,2,292,294],[381,1,1,294,295],[383,1,1,295,296],[384,2,2,296,298],[387,1,1,298,299],[390,1,1,299,300],[395,1,1,300,301],[398,1,1,301,302],[401,1,1,302,303]]],[14,6,6,303,309,[[404,2,2,303,305],[409,1,1,305,306],[410,1,1,306,307],[411,1,1,307,308],[412,1,1,308,309]]],[15,10,10,309,319,[[413,1,1,309,310],[417,1,1,310,311],[418,3,3,311,314],[419,1,1,314,315],[422,1,1,315,316],[423,2,2,316,318],[424,1,1,318,319]]],[16,10,9,319,328,[[426,1,1,319,320],[427,1,1,320,321],[428,1,1,321,322],[434,7,6,322,328]]],[17,7,7,328,335,[[443,1,1,328,329],[445,1,1,329,330],[447,1,1,330,331],[461,1,1,331,332],[467,1,1,332,333],[468,1,1,333,334],[477,1,1,334,335]]],[18,4,4,335,339,[[492,1,1,335,336],[519,1,1,336,337],[550,1,1,337,338],[584,1,1,338,339]]],[20,1,1,339,340,[[669,1,1,339,340]]],[22,19,15,340,355,[[685,1,1,340,341],[714,2,2,341,343],[717,1,1,343,344],[718,1,1,344,345],[722,1,1,345,346],[723,1,1,346,347],[725,2,2,347,349],[726,1,1,349,350],[727,6,2,350,352],[735,1,1,352,353],[738,1,1,353,354],[742,1,1,354,355]]],[23,52,52,355,407,[[746,1,1,355,356],[747,2,2,356,358],[748,1,1,358,359],[749,4,4,359,363],[751,4,4,363,367],[753,2,2,367,369],[755,1,1,369,370],[758,1,1,370,371],[760,1,1,371,372],[761,1,1,372,373],[764,1,1,373,374],[766,2,2,374,376],[768,1,1,376,377],[769,3,3,377,380],[770,3,3,380,383],[771,2,2,383,385],[772,1,1,385,386],[773,1,1,386,387],[774,2,2,387,389],[775,1,1,389,390],[776,1,1,390,391],[778,1,1,391,392],[780,4,4,392,396],[782,4,4,396,400],[787,2,2,400,402],[789,1,1,402,403],[795,2,2,403,405],[796,2,2,405,407]]],[24,2,2,407,409,[[797,1,1,407,408],[801,1,1,408,409]]],[25,31,31,409,440,[[812,1,1,409,410],[815,4,4,410,414],[817,2,2,414,416],[818,2,2,416,418],[819,1,1,418,419],[824,1,1,419,420],[825,1,1,420,421],[838,6,6,421,427],[841,6,6,427,433],[843,1,1,433,434],[844,1,1,434,435],[848,1,1,435,436],[849,4,4,436,440]]],[26,4,4,440,444,[[850,1,1,440,441],[860,1,1,441,442],[861,2,2,442,444]]],[27,1,1,444,445,[[875,1,1,444,445]]],[29,1,1,445,446,[[884,1,1,445,446]]],[32,1,1,446,447,[[894,1,1,446,447]]],[34,1,1,447,448,[[904,1,1,447,448]]],[36,1,1,448,449,[[910,1,1,448,449]]],[37,17,14,449,463,[[911,5,3,449,452],[913,1,1,452,453],[914,4,4,453,457],[916,1,1,457,458],[918,5,4,458,462],[923,1,1,462,463]]]],[235,263,293,339,361,370,503,542,548,567,570,619,662,665,670,671,674,675,677,773,808,916,945,1037,1041,1045,1049,1052,1053,1054,1056,1057,1058,1059,1061,1063,1064,1065,1066,1067,1068,1070,1071,1080,1083,1144,1156,1166,1173,1297,1331,1394,1404,1411,1452,1459,1501,1533,1610,1669,1670,1671,1674,1679,1680,1778,1814,1816,2033,2052,2078,2088,2185,2234,2297,2523,3010,3019,3021,3275,3280,3359,3391,3394,3404,3523,3538,3609,3621,3694,3709,3710,3713,3719,3725,4079,4147,4175,4220,4222,4223,4224,4225,4232,4365,4384,4525,4542,4546,4553,4555,4600,4762,4835,4869,4874,4927,4980,4996,5010,5034,5092,5110,5123,5161,5162,5207,5226,5231,5268,5270,5354,5383,5396,5398,5415,5442,5443,5487,5550,5582,5589,5598,5613,5626,5656,5709,5715,5729,5731,5745,5756,5803,5916,5917,5931,6050,6080,6088,6106,6112,6121,6131,6137,6188,6277,6278,6284,6329,6337,6352,6369,6384,6389,6390,6423,6463,6464,6467,6472,6473,6505,6549,6569,6757,6907,7007,7011,7079,7089,7098,7100,7208,7305,7348,7425,7514,7605,7636,7657,7702,7784,7812,7855,7898,7970,8013,8120,8146,8197,8338,8375,8428,8654,8709,8846,8852,8943,8979,9044,9064,9087,9318,9334,9377,9427,9452,9491,9503,9540,9546,9572,9586,9589,9694,9715,9802,10024,10051,10112,10130,10181,10182,10238,10239,10275,10285,10295,10324,10329,10362,10366,10388,10403,10426,10452,10471,10473,10485,10487,10504,10508,10519,10543,10546,10564,10575,10581,10613,10615,10624,10648,10649,10659,10663,10692,10721,10743,10758,10778,10878,10951,11051,11052,11085,11089,11140,11232,11242,11264,11356,11371,11482,11483,11498,11537,11552,11564,11626,11703,11823,11876,11973,12028,12086,12174,12214,12251,12296,12300,12388,12407,12408,12415,12481,12557,12591,12595,12625,12707,12725,12748,12854,12860,12861,12862,12865,12866,13031,13099,13137,13481,13629,13679,13929,14092,14559,15032,15742,17522,17786,18342,18350,18415,18446,18554,18568,18606,18608,18628,18648,18657,18771,18829,18897,18999,19009,19014,19045,19067,19077,19083,19087,19121,19129,19132,19146,19184,19199,19232,19315,19346,19377,19423,19456,19459,19529,19543,19545,19564,19579,19582,19587,19602,19608,19632,19636,19671,19682,19712,19745,19807,19858,19859,19860,19866,19904,19911,19919,19922,19998,20007,20041,20272,20273,20296,20298,20326,20459,20657,20734,20745,20747,20749,20792,20805,20837,20843,20862,21037,21075,21400,21401,21402,21406,21408,21415,21501,21505,21506,21509,21510,21512,21561,21585,21688,21703,21718,21731,21732,21754,22077,22088,22089,22291,22452,22602,22754,22868,22887,22897,22899,22919,22926,22927,22933,22935,22951,22985,22988,22991,22993,23065]]],["they",[2,2,[[22,2,2,0,2,[[706,1,1,0,1],[727,1,1,1,2]]]],[18171,18651]]],["things",[15,15,[[2,4,4,0,4,[[99,1,1,0,1],[107,1,1,1,2],[109,1,1,2,3],[115,1,1,3,4]]],[3,1,1,4,5,[[131,1,1,4,5]]],[4,2,2,5,7,[[170,1,1,5,6],[177,1,1,6,7]]],[12,2,2,7,9,[[348,1,1,7,8],[366,1,1,8,9]]],[14,1,1,9,10,[[411,1,1,9,10]]],[15,1,1,10,11,[[425,1,1,10,11]]],[17,1,1,11,12,[[451,1,1,11,12]]],[22,1,1,12,13,[[744,1,1,12,13]]],[23,1,1,13,14,[[757,1,1,13,14]]],[26,1,1,14,15,[[859,1,1,14,15]]]],[2996,3275,3341,3547,4166,5396,5563,10692,11181,12238,12697,13240,18930,19288,22036]]],["this",[8,8,[[0,1,1,0,1,[[38,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,2,2,2,4,[[121,2,2,2,4]]],[8,2,2,4,6,[[237,1,1,4,5],[253,1,1,5,6]]],[12,1,1,6,7,[[348,1,1,6,7]]],[14,1,1,7,8,[[403,1,1,7,8]]]],[1168,3542,3811,3814,7263,7700,10684,12025]]],["those",[39,38,[[0,3,3,0,3,[[14,1,1,0,1],[32,1,1,1,2],[40,1,1,2,3]]],[4,1,1,3,4,[[171,1,1,3,4]]],[5,11,11,4,15,[[190,1,1,4,5],[196,3,3,5,8],[197,3,3,8,11],[203,1,1,11,12],[206,1,1,12,13],[207,1,1,13,14],[210,1,1,14,15]]],[6,1,1,15,16,[[212,1,1,15,16]]],[8,8,8,16,24,[[242,1,1,16,17],[245,1,1,17,18],[246,1,1,18,19],[252,1,1,19,20],[253,1,1,20,21],[254,1,1,21,22],[260,2,2,22,24]]],[10,2,2,24,26,[[294,1,1,24,25],[311,1,1,25,26]]],[11,1,1,26,27,[[316,1,1,26,27]]],[13,2,2,27,29,[[380,1,1,27,28],[398,1,1,28,29]]],[20,1,1,29,30,[[665,1,1,29,30]]],[22,2,1,30,31,[[744,2,1,30,31]]],[23,2,2,31,33,[[775,1,1,31,32],[793,1,1,32,33]]],[25,3,3,33,36,[[819,1,1,33,34],[834,1,1,34,35],[841,1,1,35,36]]],[26,1,1,36,37,[[860,1,1,36,37]]],[37,1,1,37,38,[[914,1,1,37,38]]]],[377,965,1230,5411,5930,6086,6087,6088,6117,6119,6125,6287,6376,6397,6493,6568,7368,7427,7451,7629,7699,7713,7870,7873,8871,9478,9607,11481,11889,17457,18924,19727,20163,20860,21304,21502,22040,22932]]],["who",[1,1,[[4,1,1,0,1,[[157,1,1,0,1]]]],[5056]]],["whom",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12092,12487]]]]},{"k":"H429","v":[["these",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[23,1,1,1,2,[[754,1,1,1,2]]]],[12149,19212]]]]},{"k":"H430","v":[["*",[2600,2246,[[0,218,189,0,189,[[0,32,26,0,26],[1,14,13,26,39],[2,13,10,39,49],[3,1,1,49,50],[4,5,3,50,53],[5,7,7,53,60],[6,2,2,60,62],[7,3,2,62,64],[8,8,8,64,72],[16,9,9,72,81],[18,2,1,81,82],[19,6,5,82,87],[20,11,9,87,96],[21,5,5,96,101],[22,1,1,101,102],[23,7,6,102,108],[24,1,1,108,109],[25,1,1,109,110],[26,2,2,110,112],[27,8,7,112,119],[29,9,8,119,127],[30,17,12,127,139],[31,6,5,139,144],[32,3,3,144,147],[34,10,10,147,157],[38,1,1,157,158],[39,1,1,158,159],[40,9,8,159,167],[41,2,2,167,169],[42,3,2,169,171],[43,1,1,171,172],[44,4,4,172,176],[45,3,3,176,179],[47,6,5,179,184],[49,5,5,184,189]]],[1,139,111,189,300,[[50,3,3,189,192],[51,5,3,192,195],[52,21,10,195,205],[53,7,4,205,209],[54,4,3,209,212],[55,3,2,212,214],[56,2,2,214,216],[57,6,6,216,222],[58,4,4,222,226],[59,7,7,226,233],[61,1,1,233,234],[62,4,3,234,237],[63,1,1,237,238],[64,2,2,238,240],[65,1,1,240,241],[66,1,1,241,242],[67,13,10,242,252],[68,3,3,252,255],[69,12,11,255,266],[70,2,2,266,268],[71,5,4,268,272],[72,6,6,272,278],[73,3,3,278,281],[78,3,2,281,283],[80,2,2,283,285],[81,9,8,285,293],[83,8,6,293,299],[84,1,1,299,300]]],[2,53,47,300,347,[[91,1,1,300,301],[93,1,1,301,302],[100,2,2,302,304],[107,4,4,304,308],[108,12,11,308,319],[109,2,2,319,321],[110,10,7,321,328],[111,2,2,328,330],[112,5,5,330,335],[113,2,2,335,337],[114,7,5,337,342],[115,5,5,342,347]]],[3,27,23,347,370,[[122,1,1,347,348],[126,3,2,348,350],[131,4,2,350,352],[132,2,2,352,354],[137,1,1,354,355],[138,7,7,355,362],[139,3,3,362,365],[140,1,1,365,366],[141,3,2,366,368],[143,1,1,368,369],[149,1,1,369,370]]],[4,374,312,370,682,[[153,14,13,370,383],[154,7,6,383,389],[155,5,5,389,394],[156,25,22,394,416],[157,19,15,416,431],[158,16,14,431,445],[159,19,14,445,459],[160,11,10,459,469],[161,8,8,469,477],[162,11,7,477,484],[163,13,11,484,495],[164,26,19,495,514],[165,14,11,514,525],[166,10,8,525,533],[167,11,11,533,544],[168,19,15,544,559],[169,10,8,559,567],[170,10,9,567,576],[171,8,7,576,583],[172,8,7,583,590],[173,5,4,590,594],[174,1,1,594,595],[175,10,6,595,601],[176,5,5,601,606],[177,5,4,606,610],[178,15,13,610,623],[179,9,7,623,630],[180,16,15,630,645],[181,12,9,645,654],[182,16,12,654,666],[183,10,10,666,676],[184,4,4,676,680],[185,2,2,680,682]]],[5,76,65,682,747,[[187,5,5,682,687],[188,2,1,687,688],[189,2,2,688,690],[190,4,3,690,693],[193,3,3,693,696],[194,2,2,696,698],[195,5,5,698,703],[196,3,3,703,706],[199,2,2,706,708],[200,4,4,708,712],[204,2,2,712,714],[208,11,10,714,724],[209,15,10,724,734],[210,16,13,734,747]]],[6,73,61,747,808,[[211,1,1,747,748],[212,6,4,748,752],[213,3,3,752,755],[214,2,2,755,757],[215,3,3,757,760],[216,9,8,760,768],[217,1,1,768,769],[218,3,3,769,772],[219,7,7,772,779],[220,9,5,779,784],[221,4,3,784,787],[223,8,6,787,793],[225,1,1,793,794],[226,6,4,794,798],[227,1,1,798,799],[228,4,4,799,803],[230,3,3,803,806],[231,2,2,806,808]]],[7,4,3,808,811,[[232,3,2,808,810],[233,1,1,810,811]]],[8,100,90,811,901,[[236,1,1,811,812],[237,4,4,812,816],[238,3,2,816,818],[239,11,10,818,828],[240,12,6,828,834],[241,4,3,834,837],[242,2,2,837,839],[243,1,1,839,840],[244,6,6,840,846],[245,8,8,846,854],[246,1,1,854,855],[247,4,4,855,859],[248,1,1,859,860],[249,8,7,860,867],[250,3,3,867,870],[251,3,3,870,873],[252,5,5,873,878],[253,1,1,878,879],[254,2,2,879,881],[255,1,1,881,882],[257,3,3,882,885],[258,5,5,885,890],[260,4,4,890,894],[261,2,2,894,896],[263,2,2,896,898],[264,1,1,898,899],[265,2,2,899,901]]],[9,54,48,901,949,[[268,1,1,901,902],[269,2,2,902,904],[271,1,1,904,905],[272,8,6,905,911],[273,9,8,911,919],[275,1,1,919,920],[276,1,1,920,921],[278,2,2,921,923],[280,7,6,923,929],[281,5,4,929,933],[282,1,1,933,934],[284,1,1,934,935],[285,2,2,935,937],[287,1,1,937,938],[288,6,6,938,944],[289,3,2,944,946],[290,3,3,946,949]]],[10,107,90,949,1039,[[291,5,5,949,954],[292,2,2,954,956],[293,4,4,956,960],[294,1,1,960,961],[295,3,3,961,964],[298,14,13,964,977],[299,3,2,977,979],[300,2,2,979,981],[301,12,9,981,990],[302,3,2,990,992],[303,17,13,992,1005],[304,3,3,1005,1008],[305,3,3,1008,1011],[306,3,3,1011,1014],[307,7,7,1014,1021],[308,12,8,1021,1029],[309,4,4,1029,1033],[310,6,3,1033,1036],[311,2,2,1036,1038],[312,1,1,1038,1039]]],[11,98,83,1039,1122,[[313,13,9,1039,1048],[314,1,1,1048,1049],[316,11,9,1049,1058],[317,8,7,1058,1065],[318,5,5,1065,1070],[319,4,4,1070,1074],[320,5,5,1074,1079],[321,1,1,1079,1080],[322,1,1,1080,1081],[325,1,1,1081,1082],[326,1,1,1082,1083],[328,1,1,1083,1084],[329,16,14,1084,1098],[330,7,6,1098,1104],[331,14,9,1104,1113],[332,1,1,1113,1114],[333,2,2,1114,1116],[334,3,3,1116,1119],[335,3,3,1119,1122]]],[12,119,101,1122,1223,[[341,2,1,1122,1123],[342,6,4,1123,1127],[343,2,2,1127,1129],[346,4,4,1129,1133],[347,1,1,1133,1134],[348,2,2,1134,1136],[349,3,3,1136,1139],[350,10,9,1139,1148],[351,7,6,1148,1154],[352,9,8,1154,1162],[353,10,9,1162,1171],[354,12,10,1171,1181],[356,1,1,1181,1182],[358,6,5,1182,1187],[359,10,8,1187,1195],[360,3,3,1195,1198],[361,2,2,1198,1200],[362,3,2,1200,1202],[363,3,3,1202,1205],[365,10,8,1205,1213],[366,13,10,1213,1223]]],[13,203,167,1223,1390,[[367,7,7,1223,1230],[368,5,3,1230,1233],[369,1,1,1233,1234],[370,2,2,1234,1236],[371,2,2,1236,1238],[372,13,11,1238,1249],[373,4,3,1249,1252],[374,1,1,1252,1253],[375,4,2,1253,1255],[376,1,1,1255,1256],[377,3,2,1256,1258],[379,10,9,1258,1267],[380,6,4,1267,1271],[381,8,8,1271,1279],[382,1,1,1279,1280],[383,1,1,1280,1281],[384,3,3,1281,1284],[385,3,3,1284,1287],[386,10,9,1287,1296],[387,2,2,1296,1298],[388,2,2,1298,1300],[389,2,2,1300,1302],[390,10,9,1302,1311],[391,12,8,1311,1319],[392,6,4,1319,1323],[393,1,1,1323,1324],[394,10,7,1324,1331],[395,5,5,1331,1336],[396,11,10,1336,1346],[397,6,5,1346,1351],[398,15,11,1351,1362],[399,10,7,1362,1369],[400,11,9,1369,1378],[401,5,4,1378,1382],[402,10,8,1382,1390]]],[14,55,45,1390,1435,[[403,7,5,1390,1395],[404,1,1,1395,1396],[405,4,3,1396,1399],[406,4,3,1399,1402],[408,3,2,1402,1404],[409,5,4,1404,1408],[410,12,12,1408,1420],[411,11,8,1420,1428],[412,8,7,1428,1435]]],[15,70,64,1435,1499,[[413,2,2,1435,1437],[414,5,5,1437,1442],[416,4,4,1442,1446],[417,4,4,1446,1450],[418,4,4,1450,1454],[419,2,2,1454,1456],[420,5,5,1456,1461],[421,7,6,1461,1467],[422,12,9,1467,1476],[423,3,3,1476,1479],[424,6,6,1479,1485],[425,16,14,1485,1499]]],[17,17,17,1499,1516,[[436,7,7,1499,1506],[437,4,4,1506,1510],[440,1,1,1510,1511],[455,1,1,1511,1512],[463,1,1,1512,1513],[467,1,1,1513,1514],[469,1,1,1514,1515],[473,1,1,1515,1516]]],[18,364,324,1516,1840,[[480,2,2,1516,1518],[481,1,1,1518,1519],[482,2,2,1519,1521],[484,5,5,1521,1526],[485,1,1,1526,1527],[486,1,1,1527,1528],[487,2,2,1528,1530],[490,1,1,1530,1531],[491,3,3,1531,1534],[495,6,6,1534,1540],[497,3,3,1540,1543],[499,1,1,1543,1544],[501,1,1,1544,1545],[502,3,3,1545,1548],[504,1,1,1548,1549],[507,2,2,1549,1551],[508,1,1,1551,1552],[510,1,1,1552,1553],[512,2,2,1553,1555],[513,2,2,1555,1557],[514,1,1,1557,1558],[515,2,2,1558,1560],[517,4,4,1560,1564],[518,1,1,1564,1565],[519,10,8,1565,1573],[520,7,4,1573,1577],[521,5,5,1577,1582],[522,4,3,1582,1585],[523,7,6,1585,1591],[524,8,6,1591,1597],[525,8,6,1597,1603],[526,2,2,1603,1605],[527,9,8,1605,1613],[528,6,4,1613,1617],[529,3,2,1617,1619],[530,7,5,1619,1624],[531,4,4,1624,1628],[532,5,5,1628,1633],[533,9,8,1633,1641],[534,6,6,1641,1647],[535,2,2,1647,1649],[536,9,6,1649,1655],[537,5,4,1655,1659],[538,3,3,1659,1662],[539,7,5,1662,1667],[540,2,2,1667,1669],[541,3,3,1669,1672],[542,3,3,1672,1675],[543,8,8,1675,1683],[544,6,5,1683,1688],[545,26,22,1688,1710],[546,9,9,1710,1719],[547,3,3,1719,1722],[548,9,7,1722,1729],[549,3,2,1729,1731],[550,3,3,1731,1734],[551,4,4,1734,1738],[552,3,3,1738,1741],[553,4,4,1741,1745],[554,6,4,1745,1749],[555,8,8,1749,1757],[556,3,3,1757,1760],[557,5,5,1760,1765],[558,4,3,1765,1768],[559,4,3,1768,1771],[560,3,3,1771,1774],[561,7,6,1774,1780],[562,1,1,1780,1781],[563,5,5,1781,1786],[564,1,1,1786,1787],[565,1,1,1787,1788],[566,1,1,1788,1789],[567,1,1,1789,1790],[568,1,1,1790,1791],[569,1,1,1791,1792],[571,3,3,1792,1795],[572,2,2,1795,1797],[573,2,2,1797,1799],[574,2,2,1799,1801],[575,1,1,1801,1802],[576,4,3,1802,1805],[577,1,1,1805,1806],[581,2,2,1806,1808],[582,1,1,1808,1809],[583,2,2,1809,1811],[585,6,5,1811,1816],[586,2,2,1816,1818],[590,1,1,1818,1819],[592,2,2,1819,1821],[593,1,1,1821,1822],[595,1,1,1822,1823],[596,1,1,1823,1824],[599,1,1,1824,1825],[600,1,1,1825,1826],[612,2,2,1826,1828],[613,2,1,1828,1829],[615,1,1,1829,1830],[620,1,1,1830,1831],[621,2,2,1831,1833],[622,1,1,1833,1834],[623,3,3,1834,1837],[624,3,3,1837,1840]]],[19,5,5,1840,1845,[[629,2,2,1840,1842],[630,1,1,1842,1843],[652,1,1,1843,1844],[657,1,1,1844,1845]]],[20,40,36,1845,1881,[[659,1,1,1845,1846],[660,2,2,1846,1848],[661,8,7,1848,1855],[663,10,8,1855,1863],[664,2,1,1863,1864],[665,5,5,1864,1869],[666,5,5,1869,1874],[667,2,2,1874,1876],[669,2,2,1876,1878],[670,3,3,1878,1881]]],[22,94,86,1881,1967,[[679,1,1,1881,1882],[680,1,1,1882,1883],[685,2,2,1883,1885],[686,2,2,1885,1887],[691,1,1,1887,1888],[695,2,2,1888,1890],[699,3,3,1890,1893],[702,1,1,1893,1894],[703,2,2,1894,1896],[704,1,1,1896,1897],[706,1,1,1897,1898],[707,1,1,1898,1899],[708,1,1,1899,1900],[713,3,2,1900,1902],[714,5,4,1902,1906],[715,13,9,1906,1915],[716,1,1,1915,1916],[718,6,6,1916,1922],[719,4,4,1922,1926],[720,1,1,1926,1927],[721,1,1,1927,1928],[722,1,1,1928,1929],[723,6,6,1929,1935],[724,1,1,1935,1936],[726,3,3,1936,1939],[727,2,2,1939,1941],[728,1,1,1941,1942],[729,3,3,1942,1945],[730,3,3,1945,1948],[731,1,1,1948,1949],[732,2,2,1949,1951],[733,2,2,1951,1953],[735,1,1,1953,1954],[736,2,1,1954,1955],[737,2,2,1955,1957],[738,2,2,1957,1959],[739,3,3,1959,1962],[740,2,2,1962,1964],[742,1,1,1964,1965],[743,2,1,1965,1966],[744,1,1,1966,1967]]],[23,145,128,1967,2095,[[745,1,1,1967,1968],[746,6,4,1968,1972],[747,6,5,1972,1977],[749,7,6,1977,1983],[751,7,7,1983,1990],[752,1,1,1990,1991],[753,1,1,1991,1992],[754,2,1,1992,1993],[755,5,5,1993,1998],[757,3,3,1998,2001],[758,1,1,2001,2002],[759,1,1,2002,2003],[760,6,5,2003,2008],[763,4,4,2008,2012],[765,1,1,2012,2013],[766,2,1,2013,2014],[767,5,3,2014,2017],[768,2,2,2017,2019],[769,3,3,2019,2022],[770,2,2,2022,2024],[771,2,2,2024,2026],[772,2,2,2026,2028],[773,4,4,2028,2032],[774,3,3,2032,2035],[775,5,5,2035,2040],[776,6,6,2040,2046],[777,1,1,2046,2047],[778,2,2,2047,2049],[779,7,6,2049,2055],[781,2,2,2055,2057],[782,2,1,2057,2058],[783,1,1,2058,2059],[784,1,1,2059,2060],[786,14,11,2060,2071],[787,6,5,2071,2076],[788,9,8,2076,2084],[789,1,1,2084,2085],[790,2,1,2085,2086],[792,2,2,2086,2088],[794,4,4,2088,2092],[795,3,3,2092,2095]]],[25,36,34,2095,2129,[[802,1,1,2095,2096],[809,2,2,2096,2098],[810,1,1,2098,2099],[811,2,2,2099,2101],[812,3,3,2101,2104],[815,1,1,2104,2105],[821,4,4,2105,2109],[829,8,7,2109,2116],[832,3,2,2116,2118],[835,3,3,2118,2121],[837,1,1,2121,2122],[838,2,2,2122,2124],[840,2,2,2124,2126],[841,1,1,2126,2127],[844,1,1,2127,2128],[845,1,1,2128,2129]]],[26,22,19,2129,2148,[[850,5,3,2129,2132],[858,13,12,2132,2144],[859,1,1,2144,2145],[860,3,3,2145,2148]]],[27,26,23,2148,2171,[[862,1,1,2148,2149],[863,1,1,2149,2150],[864,2,2,2150,2152],[865,3,3,2152,2155],[866,1,1,2155,2156],[867,1,1,2156,2157],[868,1,1,2157,2158],[869,2,2,2158,2160],[870,4,3,2160,2163],[873,5,4,2163,2167],[874,3,2,2167,2169],[875,2,2,2169,2171]]],[28,11,10,2171,2181,[[876,4,3,2171,2174],[877,6,6,2174,2180],[878,1,1,2180,2181]]],[29,14,14,2181,2195,[[880,1,1,2181,2182],[881,1,1,2182,2183],[882,3,3,2183,2186],[883,5,5,2186,2191],[884,2,2,2191,2193],[886,1,1,2193,2194],[887,1,1,2194,2195]]],[31,16,14,2195,2209,[[889,4,3,2195,2198],[890,2,2,2198,2200],[891,6,5,2200,2205],[892,4,4,2205,2209]]],[32,11,9,2209,2218,[[895,1,1,2209,2210],[896,3,2,2210,2212],[897,1,1,2212,2213],[898,2,2,2213,2215],[899,4,3,2215,2218]]],[33,1,1,2218,2219,[[900,1,1,2218,2219]]],[34,2,2,2219,2221,[[903,1,1,2219,2220],[905,1,1,2220,2221]]],[35,5,5,2221,2226,[[907,3,3,2221,2224],[908,2,2,2224,2226]]],[36,3,2,2226,2228,[[909,3,2,2226,2228]]],[37,11,11,2228,2239,[[916,1,1,2228,2229],[918,2,2,2229,2231],[919,2,2,2231,2233],[920,1,1,2233,2234],[921,1,1,2234,2235],[922,2,2,2235,2237],[923,1,1,2237,2238],[924,1,1,2238,2239]]],[38,7,7,2239,2246,[[926,3,3,2239,2242],[927,4,4,2242,2246]]]],[0,1,2,3,4,5,6,7,8,9,10,11,13,15,16,17,19,20,21,23,24,25,26,27,28,30,32,33,34,35,37,38,39,45,46,48,49,51,52,56,58,60,63,64,68,69,76,77,78,104,106,127,129,139,141,146,148,149,150,159,168,175,184,198,206,211,213,217,221,222,231,232,400,404,405,406,412,415,416,419,420,486,498,501,506,508,512,515,517,519,525,530,532,533,535,536,548,550,555,556,559,577,594,598,603,618,633,639,669,716,747,755,777,785,786,790,793,794,795,832,836,838,847,848,850,852,853,878,880,882,884,889,897,902,903,905,915,923,926,929,930,937,956,958,965,970,971,1012,1013,1015,1016,1018,1020,1021,1022,1024,1026,1158,1180,1211,1220,1223,1227,1233,1234,1246,1247,1270,1280,1313,1319,1340,1363,1365,1366,1367,1387,1388,1389,1460,1462,1466,1471,1472,1523,1525,1526,1530,1531,1549,1552,1553,1577,1578,1579,1580,1583,1585,1590,1591,1592,1593,1594,1595,1597,1606,1617,1621,1628,1633,1635,1640,1657,1662,1686,1701,1720,1729,1735,1736,1737,1738,1743,1755,1770,1772,1780,1784,1785,1793,1794,1802,1803,1828,1884,1885,1886,1908,1922,1946,1959,1992,2000,2003,2004,2010,2011,2014,2015,2018,2020,2022,2029,2043,2045,2052,2053,2054,2056,2058,2061,2063,2070,2071,2072,2074,2083,2090,2121,2122,2133,2141,2157,2163,2168,2169,2176,2177,2187,2188,2190,2381,2382,2423,2438,2439,2442,2446,2449,2454,2461,2465,2469,2511,2512,2513,2519,2520,2522,2562,2775,2817,3041,3042,3253,3255,3272,3281,3283,3284,3285,3291,3293,3295,3306,3312,3313,3315,3317,3325,3342,3351,3352,3353,3357,3362,3366,3367,3394,3402,3416,3424,3430,3442,3445,3461,3468,3486,3505,3507,3512,3524,3525,3536,3537,3568,3569,3830,3997,3998,4193,4194,4203,4216,4345,4384,4385,4387,4393,4395,4397,4413,4420,4437,4443,4448,4473,4484,4570,4764,4898,4902,4903,4909,4911,4912,4913,4917,4918,4922,4923,4924,4933,4945,4967,4968,4971,4974,4975,4978,4993,4995,4996,4997,5005,5006,5007,5008,5009,5011,5014,5023,5025,5027,5028,5029,5032,5033,5034,5035,5036,5037,5038,5039,5043,5044,5055,5059,5060,5062,5064,5065,5067,5068,5069,5077,5078,5079,5080,5085,5086,5087,5088,5089,5090,5091,5096,5099,5100,5101,5102,5103,5106,5110,5111,5112,5113,5115,5117,5120,5123,5127,5129,5130,5131,5132,5133,5134,5136,5139,5142,5143,5144,5147,5148,5151,5155,5156,5157,5160,5161,5162,5163,5164,5167,5173,5180,5195,5198,5200,5203,5206,5207,5208,5209,5210,5220,5221,5224,5230,5233,5235,5236,5237,5239,5241,5242,5243,5244,5245,5247,5249,5250,5251,5252,5255,5258,5260,5261,5267,5268,5269,5270,5271,5274,5275,5276,5277,5278,5279,5282,5284,5285,5288,5290,5291,5292,5311,5313,5314,5315,5316,5319,5323,5324,5325,5326,5329,5333,5334,5337,5338,5339,5340,5343,5344,5347,5348,5349,5350,5352,5353,5357,5358,5359,5360,5362,5363,5364,5365,5366,5367,5372,5376,5378,5379,5383,5389,5391,5393,5396,5397,5398,5399,5400,5404,5407,5408,5409,5414,5415,5416,5420,5428,5431,5440,5441,5443,5444,5445,5448,5452,5457,5470,5475,5505,5514,5518,5520,5521,5523,5529,5534,5538,5543,5544,5562,5563,5565,5566,5567,5568,5569,5570,5571,5573,5576,5577,5579,5580,5582,5583,5585,5587,5588,5590,5591,5592,5594,5595,5612,5613,5619,5620,5624,5625,5626,5647,5656,5658,5663,5664,5669,5673,5675,5685,5689,5691,5692,5694,5697,5704,5705,5708,5709,5710,5711,5712,5713,5714,5715,5717,5718,5724,5725,5728,5731,5734,5739,5740,5741,5744,5745,5746,5748,5754,5761,5775,5795,5797,5811,5837,5860,5862,5864,5866,5868,5880,5896,5902,5915,5933,5934,5989,5995,5996,6009,6032,6046,6055,6056,6060,6061,6083,6104,6106,6168,6187,6193,6195,6196,6201,6296,6299,6429,6430,6431,6442,6445,6448,6450,6455,6459,6460,6463,6465,6467,6468,6470,6471,6473,6474,6475,6476,6477,6478,6490,6491,6492,6493,6494,6495,6496,6499,6500,6502,6503,6516,6548,6557,6562,6564,6574,6575,6588,6605,6622,6626,6628,6631,6662,6664,6674,6680,6685,6690,6693,6694,6708,6722,6752,6753,6761,6763,6767,6777,6781,6810,6811,6817,6821,6824,6825,6827,6850,6852,6853,6889,6890,6891,6892,6893,6906,6948,6966,6972,6973,6977,6985,6998,7003,7017,7024,7056,7072,7081,7104,7105,7142,7143,7161,7229,7242,7265,7267,7270,7279,7293,7301,7304,7305,7308,7310,7314,7315,7316,7318,7319,7320,7321,7326,7327,7329,7330,7334,7336,7351,7355,7360,7377,7397,7398,7399,7400,7401,7418,7421,7423,7425,7427,7428,7436,7437,7444,7451,7469,7472,7474,7479,7498,7523,7526,7544,7545,7549,7552,7553,7575,7581,7590,7610,7611,7618,7644,7654,7661,7663,7664,7686,7726,7729,7742,7790,7800,7802,7817,7820,7821,7824,7826,7883,7890,7893,7895,7913,7924,7955,7957,7976,7984,7993,8076,8090,8116,8142,8159,8160,8161,8163,8164,8169,8182,8202,8203,8204,8205,8206,8207,8208,8230,8252,8293,8302,8367,8369,8370,8372,8373,8376,8413,8414,8418,8421,8449,8506,8524,8538,8594,8605,8609,8624,8632,8634,8649,8654,8656,8695,8715,8716,8734,8747,8753,8764,8765,8773,8793,8821,8823,8827,8844,8873,8881,8882,8883,9000,9002,9005,9008,9010,9011,9012,9013,9042,9044,9045,9046,9050,9057,9060,9088,9103,9110,9112,9113,9116,9117,9118,9131,9139,9141,9173,9179,9185,9188,9189,9190,9191,9192,9195,9196,9198,9205,9210,9213,9215,9225,9227,9231,9252,9253,9279,9296,9309,9316,9318,9329,9331,9335,9337,9338,9341,9351,9362,9365,9366,9368,9377,9378,9380,9389,9395,9397,9401,9418,9431,9436,9461,9464,9533,9535,9536,9539,9542,9543,9544,9545,9546,9549,9565,9610,9612,9619,9624,9625,9628,9630,9643,9645,9654,9655,9658,9661,9662,9664,9667,9680,9683,9684,9689,9705,9709,9724,9725,9726,9729,9731,9734,9735,9738,9762,9824,9890,9921,9965,9990,9992,9997,9999,10002,10009,10010,10012,10014,10016,10018,10020,10021,10022,10029,10036,10046,10057,10058,10059,10065,10071,10073,10076,10077,10079,10080,10081,10098,10103,10131,10141,10160,10162,10163,10181,10182,10186,10395,10448,10450,10453,10454,10502,10503,10626,10628,10641,10642,10669,10675,10692,10737,10738,10742,10762,10763,10765,10766,10767,10768,10770,10772,10774,10784,10785,10786,10788,10789,10790,10792,10793,10803,10804,10805,10806,10815,10817,10821,10824,10826,10834,10845,10846,10855,10856,10862,10865,10866,10879,10880,10883,10884,10885,10887,10888,10889,10920,10941,10942,10949,10951,10964,10965,10966,10970,10971,10975,10976,10982,10983,10997,11008,11011,11020,11034,11051,11052,11082,11097,11109,11145,11146,11147,11151,11152,11155,11163,11164,11165,11166,11167,11171,11174,11177,11180,11181,11182,11184,11195,11197,11198,11201,11202,11203,11205,11215,11216,11223,11232,11257,11265,11269,11282,11286,11289,11292,11296,11298,11299,11300,11301,11322,11323,11324,11329,11343,11346,11360,11372,11387,11410,11416,11430,11458,11461,11462,11463,11464,11465,11468,11469,11471,11477,11479,11482,11486,11491,11493,11494,11496,11499,11502,11503,11508,11516,11527,11547,11555,11573,11579,11580,11583,11593,11594,11599,11602,11606,11607,11616,11617,11620,11634,11636,11651,11656,11659,11665,11682,11684,11686,11690,11693,11695,11697,11701,11704,11711,11712,11713,11718,11719,11720,11724,11728,11737,11739,11748,11750,11761,11769,11770,11773,11774,11787,11788,11789,11796,11797,11798,11801,11827,11828,11832,11833,11834,11835,11836,11839,11843,11846,11849,11860,11867,11868,11874,11875,11883,11886,11888,11889,11890,11891,11892,11894,11896,11904,11906,11915,11920,11921,11923,11924,11925,11926,11936,11941,11942,11956,11958,11959,11960,11965,11966,11969,11974,11987,11988,11998,12005,12006,12008,12009,12011,12012,12016,12018,12019,12020,12021,12023,12095,12099,12105,12106,12111,12112,12113,12172,12173,12179,12182,12200,12201,12218,12219,12222,12223,12224,12226,12229,12231,12232,12234,12236,12237,12241,12242,12243,12245,12246,12247,12250,12252,12253,12254,12255,12258,12261,12263,12266,12300,12301,12311,12315,12319,12325,12327,12363,12368,12374,12379,12391,12395,12397,12401,12411,12413,12415,12417,12422,12425,12499,12501,12502,12509,12511,12514,12515,12516,12518,12529,12543,12577,12578,12581,12582,12583,12585,12586,12587,12588,12599,12604,12610,12648,12660,12664,12667,12669,12670,12672,12673,12675,12678,12680,12682,12685,12689,12693,12696,12697,12698,12700,12702,12870,12874,12875,12877,12878,12885,12891,12892,12894,12900,12901,12959,13355,13527,13630,13692,13800,13959,13964,13966,13975,13983,13996,13998,14004,14005,14006,14017,14038,14045,14054,14077,14081,14082,14085,14124,14139,14146,14147,14149,14164,14183,14187,14189,14206,14246,14253,14256,14273,14294,14321,14331,14345,14378,14433,14434,14439,14445,14481,14505,14511,14528,14530,14533,14542,14555,14556,14557,14558,14559,14560,14561,14565,14566,14567,14568,14570,14571,14572,14575,14579,14591,14592,14599,14603,14604,14615,14618,14619,14621,14624,14625,14626,14630,14631,14632,14633,14634,14635,14637,14642,14643,14644,14648,14655,14663,14669,14670,14671,14674,14675,14682,14684,14691,14692,14701,14705,14708,14717,14718,14720,14721,14723,14724,14725,14726,14727,14728,14729,14733,14746,14748,14751,14755,14756,14759,14762,14764,14765,14766,14767,14768,14769,14770,14771,14773,14775,14779,14785,14790,14791,14795,14799,14800,14803,14807,14808,14813,14817,14819,14820,14824,14826,14828,14832,14834,14835,14838,14840,14850,14851,14857,14859,14861,14865,14869,14874,14876,14878,14881,14883,14889,14892,14893,14894,14896,14898,14899,14900,14901,14902,14903,14904,14905,14906,14907,14908,14909,14910,14915,14916,14917,14918,14921,14924,14926,14928,14931,14932,14934,14935,14936,14938,14940,14941,14948,14964,14965,14967,14970,14972,14975,14976,14980,14987,14988,14993,14994,14995,14998,15001,15018,15021,15046,15048,15049,15058,15060,15070,15072,15078,15080,15082,15087,15090,15092,15094,15096,15106,15109,15120,15123,15132,15135,15144,15148,15169,15172,15186,15194,15195,15201,15202,15205,15212,15217,15218,15221,15227,15234,15239,15241,15242,15253,15254,15262,15266,15267,15268,15269,15270,15275,15286,15292,15294,15296,15298,15304,15309,15334,15395,15397,15424,15438,15453,15454,15457,15461,15469,15470,15485,15487,15493,15504,15507,15508,15511,15572,15604,15613,15698,15699,15743,15747,15749,15753,15755,15756,15781,15818,15832,15833,15853,15897,16013,16098,16100,16177,16180,16198,16232,16303,16314,16320,16321,16343,16346,16351,16352,16358,16363,16438,16450,16459,17115,17260,17328,17357,17359,17369,17370,17372,17373,17374,17376,17377,17398,17399,17401,17403,17404,17415,17416,17417,17419,17442,17443,17447,17455,17458,17460,17470,17471,17473,17475,17476,17482,17518,17522,17530,17536,17537,17664,17688,17793,17795,17826,17828,17925,17989,17993,18044,18045,18052,18110,18119,18127,18143,18190,18216,18235,18322,18324,18337,18348,18349,18350,18356,18362,18364,18368,18369,18371,18372,18373,18390,18395,18421,18423,18428,18429,18447,18448,18461,18464,18468,18474,18497,18508,18539,18564,18566,18575,18576,18579,18582,18595,18615,18616,18631,18640,18641,18672,18688,18693,18695,18703,18706,18708,18715,18728,18729,18745,18747,18786,18788,18802,18813,18830,18840,18845,18849,18853,18857,18859,18889,18913,18931,18962,18976,18982,18984,18993,19015,19023,19024,19025,19027,19062,19063,19065,19072,19077,19082,19122,19125,19128,19137,19140,19142,19147,19167,19190,19211,19229,19230,19236,19238,19239,19276,19278,19282,19315,19331,19345,19346,19347,19349,19356,19410,19411,19420,19422,19444,19463,19486,19507,19520,19529,19531,19540,19549,19561,19585,19588,19600,19617,19620,19632,19639,19643,19656,19660,19669,19676,19689,19692,19697,19709,19714,19724,19745,19746,19758,19760,19767,19769,19779,19803,19814,19827,19836,19838,19840,19841,19842,19877,19881,19912,19939,19943,19977,19978,19979,19980,19981,19984,19988,19990,19993,19995,19996,19998,19999,20007,20009,20010,20012,20013,20015,20017,20018,20021,20025,20035,20042,20070,20081,20115,20170,20184,20194,20206,20217,20222,20245,20465,20607,20608,20625,20652,20653,20675,20677,20679,20742,20900,20902,20914,20915,21159,21163,21166,21170,21171,21173,21183,21238,21239,21337,21343,21344,21387,21420,21424,21470,21476,21479,21574,21601,21739,21746,21754,21991,21992,21997,21998,21999,22001,22002,22003,22005,22006,22007,22008,22027,22044,22068,22073,22101,22128,22129,22133,22134,22139,22145,22156,22173,22188,22196,22200,22209,22216,22225,22255,22257,22258,22261,22270,22282,22283,22285,22304,22305,22307,22324,22325,22328,22334,22337,22338,22360,22387,22408,22421,22422,22423,22437,22438,22439,22449,22450,22458,22464,22495,22510,22536,22537,22540,22549,22554,22561,22563,22566,22567,22568,22574,22575,22576,22577,22615,22622,22625,22637,22654,22656,22671,22674,22681,22698,22743,22786,22812,22814,22816,22822,22837,22852,22854,22962,22984,22999,23006,23015,23022,23032,23050,23053,23068,23073,23118,23119,23120,23128,23134,23135,23138]]],["+",[27,27,[[1,1,1,0,1,[[67,1,1,0,1]]],[2,5,5,1,6,[[108,2,2,1,3],[114,3,3,3,6]]],[4,3,3,6,9,[[158,1,1,6,7],[163,1,1,7,8],[165,1,1,8,9]]],[5,1,1,9,10,[[199,1,1,9,10]]],[6,1,1,10,11,[[212,1,1,10,11]]],[9,1,1,11,12,[[288,1,1,11,12]]],[12,2,2,12,14,[[342,1,1,12,13],[348,1,1,13,14]]],[13,4,4,14,18,[[381,1,1,14,15],[388,1,1,15,16],[391,1,1,16,17],[401,1,1,17,18]]],[14,1,1,18,19,[[410,1,1,18,19]]],[17,2,2,19,21,[[455,1,1,19,20],[467,1,1,20,21]]],[18,3,3,21,24,[[485,1,1,21,22],[495,1,1,22,23],[501,1,1,23,24]]],[22,1,1,24,25,[[718,1,1,24,25]]],[23,2,2,25,27,[[749,1,1,25,26],[795,1,1,26,27]]]],[2018,3295,3313,3486,3505,3512,5100,5210,5279,6168,6557,8624,10450,10692,11508,11651,11724,11987,12224,13355,13630,14017,14139,14246,18447,19077,20217]]],["GOD",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5669]]],["God",[2309,2033,[[0,208,180,0,180,[[0,32,26,0,26],[1,14,13,26,39],[2,12,10,39,49],[3,1,1,49,50],[4,5,3,50,53],[5,7,7,53,60],[6,2,2,60,62],[7,3,2,62,64],[8,8,8,64,72],[16,9,9,72,81],[18,2,1,81,82],[19,6,5,82,87],[20,11,9,87,96],[21,5,5,96,101],[23,7,6,101,107],[24,1,1,107,108],[25,1,1,108,109],[26,2,2,109,111],[27,7,6,111,117],[29,7,6,117,123],[30,15,10,123,133],[31,5,4,133,137],[32,3,3,137,140],[34,8,8,140,148],[38,1,1,148,149],[39,1,1,149,150],[40,9,8,150,158],[41,2,2,158,160],[42,3,2,160,162],[43,1,1,162,163],[44,4,4,163,167],[45,3,3,167,170],[47,6,5,170,175],[49,5,5,175,180]]],[1,111,88,180,268,[[50,3,3,180,183],[51,5,3,183,186],[52,21,10,186,196],[53,7,4,196,200],[54,4,3,200,203],[55,3,2,203,205],[56,1,1,205,206],[57,6,6,206,212],[58,3,3,212,215],[59,7,7,215,222],[62,4,3,222,225],[63,1,1,225,226],[64,2,2,226,228],[65,1,1,228,229],[66,1,1,229,230],[67,11,9,230,239],[68,3,3,239,242],[69,9,9,242,251],[70,1,1,251,252],[72,2,2,252,254],[73,3,3,254,257],[78,3,2,257,259],[80,2,2,259,261],[81,4,3,261,264],[83,3,3,264,267],[84,1,1,267,268]]],[2,47,43,268,311,[[91,1,1,268,269],[93,1,1,269,270],[100,2,2,270,272],[107,4,4,272,276],[108,9,9,276,285],[109,2,2,285,287],[110,10,7,287,294],[111,2,2,294,296],[112,5,5,296,301],[113,2,2,301,303],[114,4,3,303,306],[115,5,5,306,311]]],[3,23,20,311,331,[[122,1,1,311,312],[126,3,2,312,314],[131,4,2,314,316],[132,2,2,316,318],[137,1,1,318,319],[138,6,6,319,325],[139,3,3,325,328],[140,1,1,328,329],[141,1,1,329,330],[143,1,1,330,331]]],[4,334,284,331,615,[[153,13,12,331,343],[154,7,6,343,349],[155,5,5,349,354],[156,24,21,354,375],[157,18,14,375,389],[158,14,13,389,402],[159,16,13,402,415],[160,10,10,415,425],[161,8,8,425,433],[162,10,7,433,440],[163,10,9,440,449],[164,20,16,449,465],[165,10,7,465,472],[166,10,8,472,480],[167,11,11,480,491],[168,19,15,491,506],[169,9,7,506,513],[170,9,8,513,521],[171,8,7,521,528],[172,7,7,528,535],[173,5,4,535,539],[174,1,1,539,540],[175,10,6,540,546],[176,5,5,546,551],[177,5,4,551,555],[178,15,13,555,568],[179,9,7,568,575],[180,12,11,575,586],[181,9,8,586,594],[182,15,11,594,605],[183,7,7,605,612],[184,1,1,612,613],[185,2,2,613,615]]],[5,64,58,615,673,[[187,5,5,615,620],[188,2,1,620,621],[189,2,2,621,623],[190,4,3,623,626],[193,3,3,626,629],[194,2,2,629,631],[195,5,5,631,636],[196,3,3,636,639],[199,1,1,639,640],[200,4,4,640,644],[204,2,2,644,646],[208,9,9,646,655],[209,13,9,655,664],[210,9,9,664,673]]],[6,47,45,673,718,[[211,1,1,673,674],[212,1,1,674,675],[213,2,2,675,677],[214,2,2,677,679],[215,2,2,679,681],[216,7,7,681,688],[217,1,1,688,689],[218,2,2,689,691],[219,6,6,691,697],[220,1,1,697,698],[221,3,3,698,701],[223,8,6,701,707],[225,1,1,707,708],[226,2,2,708,710],[228,3,3,710,713],[230,3,3,713,716],[231,2,2,716,718]]],[7,3,2,718,720,[[232,2,1,718,719],[233,1,1,719,720]]],[8,89,82,720,802,[[236,1,1,720,721],[237,3,3,721,724],[238,3,2,724,726],[239,9,9,726,735],[240,11,6,735,741],[241,3,3,741,744],[242,1,1,744,745],[244,6,6,745,751],[245,8,8,751,759],[246,1,1,759,760],[247,4,4,760,764],[248,1,1,764,765],[249,7,6,765,771],[250,3,3,771,774],[251,3,3,774,777],[252,4,4,777,781],[253,1,1,781,782],[254,2,2,782,784],[255,1,1,784,785],[257,3,3,785,788],[258,5,5,788,793],[260,4,4,793,797],[261,1,1,797,798],[263,1,1,798,799],[264,1,1,799,800],[265,2,2,800,802]]],[9,52,47,802,849,[[268,1,1,802,803],[269,2,2,803,805],[271,1,1,805,806],[272,8,6,806,812],[273,8,8,812,820],[275,1,1,820,821],[276,1,1,821,822],[278,2,2,822,824],[280,7,6,824,830],[281,5,4,830,834],[282,1,1,834,835],[284,1,1,835,836],[285,2,2,836,838],[287,1,1,838,839],[288,5,5,839,844],[289,3,2,844,846],[290,3,3,846,849]]],[10,88,77,849,926,[[291,5,5,849,854],[292,2,2,854,856],[293,4,4,856,860],[294,1,1,860,861],[295,3,3,861,864],[298,14,13,864,877],[299,1,1,877,878],[300,2,2,878,880],[301,4,4,880,884],[302,2,1,884,885],[303,17,13,885,898],[304,2,2,898,900],[305,3,3,900,903],[306,3,3,903,906],[307,7,7,906,913],[308,9,6,913,919],[309,3,3,919,922],[310,3,1,922,923],[311,2,2,923,925],[312,1,1,925,926]]],[11,77,68,926,994,[[313,9,8,926,934],[314,1,1,934,935],[316,11,9,935,944],[317,7,6,944,950],[318,5,5,950,955],[319,4,4,955,959],[320,5,5,959,964],[321,1,1,964,965],[322,1,1,965,966],[325,1,1,966,967],[326,1,1,967,968],[328,1,1,968,969],[329,9,8,969,977],[330,3,3,977,980],[331,10,6,980,986],[332,1,1,986,987],[333,2,2,987,989],[334,2,2,989,991],[335,3,3,991,994]]],[12,112,95,994,1089,[[341,2,1,994,995],[342,4,3,995,998],[343,2,2,998,1000],[346,4,4,1000,1004],[348,1,1,1004,1005],[349,3,3,1005,1008],[350,10,9,1008,1017],[351,6,5,1017,1022],[352,9,8,1022,1030],[353,8,7,1030,1037],[354,12,10,1037,1047],[356,1,1,1047,1048],[358,6,5,1048,1053],[359,10,8,1053,1061],[360,3,3,1061,1064],[361,2,2,1064,1066],[362,3,2,1066,1068],[363,3,3,1068,1071],[365,10,8,1071,1079],[366,13,10,1079,1089]]],[13,179,153,1089,1242,[[367,7,7,1089,1096],[368,4,3,1096,1099],[369,1,1,1099,1100],[370,2,2,1100,1102],[371,2,2,1102,1104],[372,13,11,1104,1115],[373,2,2,1115,1117],[374,1,1,1117,1118],[375,4,2,1118,1120],[376,1,1,1120,1121],[377,3,2,1121,1123],[379,8,7,1123,1130],[380,6,4,1130,1134],[381,7,7,1134,1141],[382,1,1,1141,1142],[383,1,1,1142,1143],[384,3,3,1143,1146],[385,3,3,1146,1149],[386,9,8,1149,1157],[387,2,2,1157,1159],[388,1,1,1159,1160],[389,2,2,1160,1162],[390,10,9,1162,1171],[391,7,5,1171,1176],[392,6,4,1176,1180],[393,1,1,1180,1181],[394,7,6,1181,1187],[395,5,5,1187,1192],[396,11,10,1192,1202],[397,6,5,1202,1207],[398,10,9,1207,1216],[399,9,6,1216,1222],[400,10,8,1222,1230],[401,4,4,1230,1234],[402,10,8,1234,1242]]],[14,53,43,1242,1285,[[403,6,4,1242,1246],[404,1,1,1246,1247],[405,4,3,1247,1250],[406,4,3,1250,1253],[408,3,2,1253,1255],[409,5,4,1255,1259],[410,11,11,1259,1270],[411,11,8,1270,1278],[412,8,7,1278,1285]]],[15,69,64,1285,1349,[[413,2,2,1285,1287],[414,5,5,1287,1292],[416,4,4,1292,1296],[417,4,4,1296,1300],[418,4,4,1300,1304],[419,2,2,1304,1306],[420,5,5,1306,1311],[421,7,6,1311,1317],[422,11,9,1317,1326],[423,3,3,1326,1329],[424,6,6,1329,1335],[425,16,14,1335,1349]]],[17,15,15,1349,1364,[[436,7,7,1349,1356],[437,4,4,1356,1360],[440,1,1,1360,1361],[463,1,1,1361,1362],[469,1,1,1362,1363],[473,1,1,1363,1364]]],[18,350,312,1364,1676,[[480,2,2,1364,1366],[481,1,1,1366,1367],[482,2,2,1367,1369],[484,5,5,1369,1374],[486,1,1,1374,1375],[487,2,2,1375,1377],[490,1,1,1377,1378],[491,3,3,1378,1381],[495,5,5,1381,1386],[497,3,3,1386,1389],[499,1,1,1389,1390],[502,3,3,1390,1393],[504,1,1,1393,1394],[507,2,2,1394,1396],[508,1,1,1396,1397],[510,1,1,1397,1398],[512,2,2,1398,1400],[513,2,2,1400,1402],[514,1,1,1402,1403],[515,2,2,1403,1405],[517,4,4,1405,1409],[518,1,1,1409,1410],[519,10,8,1410,1418],[520,7,4,1418,1422],[521,5,5,1422,1427],[522,4,3,1427,1430],[523,7,6,1430,1436],[524,8,6,1436,1442],[525,8,6,1442,1448],[526,2,2,1448,1450],[527,9,8,1450,1458],[528,6,4,1458,1462],[529,3,2,1462,1464],[530,7,5,1464,1469],[531,4,4,1469,1473],[532,5,5,1473,1478],[533,9,8,1478,1486],[534,6,6,1486,1492],[535,2,2,1492,1494],[536,9,6,1494,1500],[537,5,4,1500,1504],[538,3,3,1504,1507],[539,7,5,1507,1512],[540,2,2,1512,1514],[541,3,3,1514,1517],[542,3,3,1517,1520],[543,8,8,1520,1528],[544,6,5,1528,1533],[545,26,22,1533,1555],[546,9,9,1555,1564],[547,3,3,1564,1567],[548,9,7,1567,1574],[549,3,2,1574,1576],[550,3,3,1576,1579],[551,4,4,1579,1583],[552,3,3,1583,1586],[553,4,4,1586,1590],[554,6,4,1590,1594],[555,8,8,1594,1602],[556,3,3,1602,1605],[557,5,5,1605,1610],[558,4,3,1610,1613],[559,2,2,1613,1615],[560,3,3,1615,1618],[561,7,6,1618,1624],[562,1,1,1624,1625],[563,4,4,1625,1629],[564,1,1,1629,1630],[565,1,1,1630,1631],[566,1,1,1631,1632],[567,1,1,1632,1633],[568,1,1,1633,1634],[569,1,1,1634,1635],[571,3,3,1635,1638],[572,1,1,1638,1639],[575,1,1,1639,1640],[576,4,3,1640,1643],[577,1,1,1643,1644],[581,2,2,1644,1646],[582,1,1,1646,1647],[583,2,2,1647,1649],[585,6,5,1649,1654],[586,2,2,1654,1656],[590,1,1,1656,1657],[592,2,2,1657,1659],[593,1,1,1659,1660],[595,1,1,1660,1661],[596,1,1,1661,1662],[599,1,1,1662,1663],[600,1,1,1663,1664],[612,1,1,1664,1665],[613,1,1,1665,1666],[620,1,1,1666,1667],[621,2,2,1667,1669],[622,1,1,1669,1670],[623,3,3,1670,1673],[624,3,3,1673,1676]]],[19,5,5,1676,1681,[[629,2,2,1676,1678],[630,1,1,1678,1679],[652,1,1,1679,1680],[657,1,1,1680,1681]]],[20,40,36,1681,1717,[[659,1,1,1681,1682],[660,2,2,1682,1684],[661,8,7,1684,1691],[663,10,8,1691,1699],[664,2,1,1699,1700],[665,5,5,1700,1705],[666,5,5,1705,1710],[667,2,2,1710,1712],[669,2,2,1712,1714],[670,3,3,1714,1717]]],[22,82,76,1717,1793,[[679,1,1,1717,1718],[680,1,1,1718,1719],[685,2,2,1719,1721],[686,2,2,1721,1723],[691,1,1,1723,1724],[695,2,2,1724,1726],[699,2,2,1726,1728],[702,1,1,1728,1729],[703,2,2,1729,1731],[704,1,1,1731,1732],[706,1,1,1732,1733],[707,1,1,1733,1734],[708,1,1,1734,1735],[713,3,2,1735,1737],[714,1,1,1737,1738],[715,9,6,1738,1744],[716,1,1,1744,1745],[718,5,5,1745,1750],[719,3,3,1750,1753],[721,1,1,1753,1754],[722,1,1,1754,1755],[723,6,6,1755,1761],[724,1,1,1761,1762],[726,3,3,1762,1765],[727,2,2,1765,1767],[728,1,1,1767,1768],[729,3,3,1768,1771],[730,3,3,1771,1774],[731,1,1,1774,1775],[732,2,2,1775,1777],[733,2,2,1777,1779],[735,1,1,1779,1780],[736,2,1,1780,1781],[737,2,2,1781,1783],[738,2,2,1783,1785],[739,3,3,1785,1788],[740,2,2,1788,1790],[742,1,1,1790,1791],[743,2,1,1791,1792],[744,1,1,1792,1793]]],[23,111,100,1793,1893,[[746,2,2,1793,1795],[747,6,5,1795,1800],[749,4,4,1800,1804],[751,4,4,1804,1808],[752,1,1,1808,1809],[753,1,1,1809,1810],[754,2,1,1810,1811],[755,2,2,1811,1813],[757,2,2,1813,1815],[758,1,1,1815,1816],[759,1,1,1816,1817],[760,2,2,1817,1819],[763,2,2,1819,1821],[765,1,1,1821,1822],[766,1,1,1822,1823],[767,5,3,1823,1826],[768,2,2,1826,1828],[769,2,2,1828,1830],[770,2,2,1830,1832],[771,2,2,1832,1834],[772,2,2,1834,1836],[773,4,4,1836,1840],[774,3,3,1840,1843],[775,5,5,1843,1848],[776,5,5,1848,1853],[777,1,1,1853,1854],[778,2,2,1854,1856],[779,6,5,1856,1861],[781,2,2,1861,1863],[782,2,1,1863,1864],[783,1,1,1864,1865],[784,1,1,1865,1866],[786,14,11,1866,1877],[787,4,3,1877,1880],[788,5,4,1880,1884],[789,1,1,1884,1885],[790,1,1,1885,1886],[792,1,1,1886,1887],[794,4,4,1887,1891],[795,2,2,1891,1893]]],[25,36,34,1893,1927,[[802,1,1,1893,1894],[809,2,2,1894,1896],[810,1,1,1896,1897],[811,2,2,1897,1899],[812,3,3,1899,1902],[815,1,1,1902,1903],[821,4,4,1903,1907],[829,8,7,1907,1914],[832,3,2,1914,1916],[835,3,3,1916,1919],[837,1,1,1919,1920],[838,2,2,1920,1922],[840,2,2,1922,1924],[841,1,1,1924,1925],[844,1,1,1925,1926],[845,1,1,1926,1927]]],[26,19,18,1927,1945,[[850,3,3,1927,1930],[858,13,12,1930,1942],[859,1,1,1942,1943],[860,2,2,1943,1945]]],[27,23,21,1945,1966,[[862,1,1,1945,1946],[863,1,1,1946,1947],[864,1,1,1947,1948],[865,3,3,1948,1951],[866,1,1,1951,1952],[867,1,1,1952,1953],[868,1,1,1953,1954],[869,2,2,1954,1956],[870,4,3,1956,1959],[873,5,4,1959,1963],[874,2,2,1963,1965],[875,1,1,1965,1966]]],[28,11,10,1966,1976,[[876,4,3,1966,1969],[877,6,6,1969,1975],[878,1,1,1975,1976]]],[29,11,11,1976,1987,[[881,1,1,1976,1977],[882,3,3,1977,1980],[883,4,4,1980,1984],[884,2,2,1984,1986],[887,1,1,1986,1987]]],[31,14,12,1987,1999,[[889,3,2,1987,1989],[890,2,2,1989,1991],[891,5,4,1991,1995],[892,4,4,1995,1999]]],[32,10,9,1999,2008,[[895,1,1,1999,2000],[896,2,2,2000,2002],[897,1,1,2002,2003],[898,2,2,2003,2005],[899,4,3,2005,2008]]],[34,2,2,2008,2010,[[903,1,1,2008,2009],[905,1,1,2009,2010]]],[35,4,4,2010,2014,[[907,2,2,2010,2012],[908,2,2,2012,2014]]],[36,3,2,2014,2016,[[909,3,2,2014,2016]]],[37,11,11,2016,2027,[[916,1,1,2016,2017],[918,2,2,2017,2019],[919,2,2,2019,2021],[920,1,1,2021,2022],[921,1,1,2022,2023],[922,2,2,2023,2025],[923,1,1,2025,2026],[924,1,1,2026,2027]]],[38,6,6,2027,2033,[[926,2,2,2027,2029],[927,4,4,2029,2033]]]],[0,1,2,3,4,5,6,7,8,9,10,11,13,15,16,17,19,20,21,23,24,25,26,27,28,30,32,33,34,35,37,38,39,45,46,48,49,51,52,56,58,60,63,64,68,69,76,77,78,104,106,127,129,139,141,146,148,149,150,159,168,175,184,198,206,211,213,217,221,222,231,232,400,404,405,406,412,415,416,419,420,486,498,501,506,508,512,515,517,519,525,530,532,533,535,536,548,550,555,556,559,594,598,603,618,633,639,669,716,747,755,777,785,786,790,793,794,836,847,848,850,852,853,878,880,882,884,889,897,902,915,923,926,929,937,956,958,965,970,971,1012,1016,1018,1020,1021,1022,1024,1026,1158,1180,1211,1220,1223,1227,1233,1234,1246,1247,1270,1280,1313,1319,1340,1363,1365,1366,1367,1387,1388,1389,1460,1462,1466,1471,1472,1523,1525,1526,1530,1531,1549,1552,1553,1577,1578,1579,1580,1583,1585,1590,1591,1592,1593,1594,1595,1597,1606,1617,1621,1628,1633,1635,1640,1657,1662,1701,1720,1729,1735,1736,1737,1738,1743,1755,1772,1780,1784,1785,1793,1794,1802,1803,1884,1885,1886,1908,1922,1946,1959,1992,2000,2003,2004,2011,2014,2015,2018,2020,2022,2029,2043,2045,2052,2053,2056,2058,2061,2063,2070,2071,2072,2090,2163,2169,2187,2188,2190,2381,2382,2423,2438,2449,2454,2465,2519,2520,2522,2562,2775,2817,3041,3042,3253,3255,3272,3281,3283,3284,3285,3291,3293,3306,3312,3315,3317,3325,3342,3351,3352,3353,3357,3362,3366,3367,3394,3402,3416,3424,3430,3442,3445,3461,3468,3486,3507,3524,3525,3536,3537,3568,3569,3830,3997,3998,4193,4194,4203,4216,4345,4384,4385,4387,4393,4395,4413,4420,4437,4443,4448,4484,4570,4898,4902,4903,4911,4912,4913,4917,4918,4922,4923,4924,4933,4945,4967,4968,4971,4974,4975,4978,4993,4995,4996,4997,5005,5006,5007,5008,5009,5011,5014,5023,5025,5027,5028,5029,5033,5034,5035,5036,5037,5038,5039,5043,5044,5055,5059,5062,5064,5065,5067,5068,5069,5077,5078,5079,5080,5085,5086,5087,5088,5089,5090,5091,5096,5099,5101,5102,5103,5106,5110,5111,5112,5113,5117,5120,5123,5127,5129,5130,5131,5132,5133,5134,5136,5139,5142,5143,5144,5147,5148,5151,5155,5156,5157,5160,5161,5162,5163,5164,5167,5173,5180,5195,5198,5200,5203,5206,5207,5208,5209,5220,5221,5230,5233,5235,5236,5237,5239,5241,5244,5245,5247,5249,5250,5251,5252,5255,5258,5260,5261,5267,5268,5269,5271,5275,5276,5277,5282,5284,5288,5290,5291,5292,5311,5313,5314,5315,5316,5319,5323,5324,5325,5326,5329,5333,5334,5337,5338,5339,5340,5343,5344,5347,5348,5349,5350,5352,5353,5357,5358,5359,5360,5362,5363,5364,5365,5366,5372,5376,5378,5379,5383,5389,5391,5393,5396,5397,5398,5399,5400,5407,5408,5409,5414,5415,5416,5420,5428,5431,5440,5441,5443,5444,5445,5448,5452,5457,5470,5475,5505,5514,5518,5520,5521,5523,5529,5534,5538,5543,5544,5562,5563,5565,5566,5567,5568,5569,5570,5571,5573,5576,5577,5579,5580,5582,5583,5585,5587,5588,5590,5591,5592,5594,5595,5612,5613,5619,5620,5624,5626,5656,5658,5663,5664,5673,5685,5689,5691,5692,5694,5697,5704,5708,5709,5710,5711,5712,5713,5714,5715,5717,5718,5724,5728,5731,5734,5739,5740,5741,5745,5754,5761,5811,5837,5860,5862,5864,5866,5868,5880,5896,5902,5915,5933,5934,5989,5995,5996,6009,6032,6046,6055,6056,6060,6061,6083,6104,6106,6187,6193,6195,6196,6201,6296,6299,6429,6430,6431,6442,6445,6450,6455,6459,6460,6463,6465,6468,6470,6471,6473,6474,6475,6476,6477,6478,6493,6494,6495,6499,6500,6502,6503,6516,6557,6575,6588,6605,6622,6626,6628,6662,6664,6674,6680,6690,6693,6694,6708,6722,6753,6761,6763,6767,6777,6810,6811,6821,6850,6852,6853,6889,6890,6891,6892,6893,6906,6948,6966,6977,6998,7003,7024,7056,7072,7081,7104,7105,7143,7161,7229,7242,7267,7270,7279,7293,7301,7304,7308,7310,7314,7315,7316,7318,7319,7320,7321,7326,7327,7329,7330,7334,7336,7351,7360,7397,7398,7399,7400,7401,7418,7421,7423,7425,7427,7428,7436,7437,7444,7451,7469,7472,7474,7479,7498,7526,7544,7545,7549,7552,7553,7575,7581,7590,7610,7611,7618,7644,7654,7663,7664,7686,7726,7729,7742,7790,7800,7802,7817,7820,7821,7824,7826,7883,7890,7893,7895,7913,7957,7976,7984,7993,8076,8090,8116,8142,8159,8160,8161,8163,8164,8169,8182,8202,8203,8204,8205,8206,8207,8208,8230,8252,8293,8302,8367,8369,8370,8372,8373,8376,8413,8414,8418,8421,8449,8506,8524,8538,8594,8605,8609,8632,8634,8649,8654,8656,8695,8715,8716,8734,8747,8753,8764,8765,8773,8793,8821,8823,8827,8844,8873,8881,8882,8883,9000,9002,9005,9008,9010,9011,9012,9013,9042,9044,9045,9046,9050,9060,9088,9103,9112,9117,9131,9139,9173,9185,9188,9189,9190,9191,9192,9195,9196,9198,9205,9210,9213,9215,9225,9231,9252,9253,9279,9296,9309,9316,9318,9329,9331,9335,9337,9338,9341,9351,9362,9365,9377,9378,9380,9395,9397,9401,9436,9461,9464,9533,9536,9539,9542,9543,9544,9545,9546,9549,9565,9610,9612,9619,9624,9625,9628,9630,9643,9645,9654,9655,9658,9661,9662,9667,9680,9683,9684,9689,9705,9709,9724,9725,9726,9729,9731,9734,9735,9738,9762,9824,9890,9921,9965,9990,9992,9997,9999,10002,10009,10010,10022,10029,10036,10046,10065,10071,10076,10077,10080,10081,10103,10131,10141,10160,10163,10181,10182,10186,10395,10448,10453,10454,10502,10503,10626,10628,10641,10642,10675,10737,10738,10742,10762,10763,10765,10766,10767,10768,10770,10772,10774,10784,10785,10788,10789,10790,10792,10793,10803,10804,10805,10806,10815,10817,10821,10824,10826,10834,10855,10856,10862,10865,10866,10879,10880,10883,10884,10885,10887,10888,10889,10920,10941,10942,10949,10951,10964,10965,10966,10970,10971,10975,10976,10982,10983,10997,11008,11011,11020,11034,11051,11052,11082,11097,11109,11145,11146,11147,11151,11152,11155,11163,11164,11165,11166,11167,11171,11174,11177,11180,11181,11182,11184,11195,11197,11198,11201,11202,11203,11205,11215,11216,11223,11232,11257,11265,11269,11282,11286,11289,11292,11296,11298,11299,11300,11301,11322,11323,11324,11329,11346,11360,11372,11387,11410,11416,11430,11458,11463,11464,11465,11468,11469,11471,11477,11479,11482,11486,11491,11493,11494,11496,11499,11502,11503,11516,11527,11547,11555,11573,11579,11580,11583,11593,11594,11599,11606,11607,11616,11617,11620,11634,11636,11656,11659,11665,11682,11684,11686,11690,11693,11695,11697,11701,11704,11711,11712,11713,11720,11728,11737,11739,11748,11750,11761,11769,11770,11773,11774,11788,11789,11796,11797,11798,11801,11827,11828,11832,11833,11834,11835,11836,11839,11843,11846,11849,11860,11867,11868,11874,11875,11883,11886,11889,11890,11891,11892,11894,11904,11906,11915,11920,11921,11924,11925,11926,11936,11941,11942,11956,11959,11960,11965,11966,11969,11974,11987,11988,11998,12005,12006,12008,12009,12011,12012,12016,12018,12019,12020,12021,12095,12099,12105,12106,12111,12112,12113,12172,12173,12179,12182,12200,12201,12218,12219,12222,12223,12226,12229,12231,12232,12234,12236,12237,12241,12242,12243,12245,12246,12247,12250,12252,12253,12254,12255,12258,12261,12263,12266,12300,12301,12311,12315,12319,12325,12327,12363,12368,12374,12379,12391,12395,12397,12401,12411,12413,12415,12417,12422,12425,12499,12501,12502,12509,12511,12514,12515,12516,12518,12529,12543,12577,12578,12581,12582,12583,12585,12586,12587,12588,12599,12604,12610,12648,12660,12664,12667,12669,12670,12672,12673,12675,12678,12680,12682,12685,12689,12693,12696,12697,12698,12700,12702,12870,12874,12875,12877,12878,12885,12891,12892,12894,12900,12901,12959,13527,13692,13800,13959,13964,13966,13975,13983,13996,13998,14004,14005,14006,14038,14045,14054,14077,14081,14082,14085,14124,14146,14147,14149,14164,14183,14187,14189,14206,14253,14256,14273,14294,14321,14331,14345,14378,14433,14434,14439,14445,14481,14505,14511,14528,14530,14533,14542,14555,14556,14557,14558,14559,14560,14561,14565,14566,14567,14568,14570,14571,14572,14575,14579,14591,14592,14599,14603,14604,14615,14618,14619,14621,14624,14625,14626,14630,14631,14632,14633,14634,14635,14637,14642,14643,14644,14648,14655,14663,14669,14670,14671,14674,14675,14682,14684,14691,14692,14701,14705,14708,14717,14718,14720,14721,14723,14724,14725,14726,14727,14728,14729,14733,14746,14748,14751,14755,14756,14759,14762,14764,14765,14766,14767,14768,14769,14770,14771,14773,14775,14779,14785,14790,14791,14795,14799,14800,14803,14807,14808,14813,14817,14819,14820,14824,14826,14828,14832,14834,14835,14838,14840,14850,14851,14857,14859,14861,14865,14869,14874,14876,14878,14881,14883,14889,14892,14893,14894,14896,14898,14899,14900,14901,14902,14903,14904,14905,14906,14907,14908,14909,14910,14915,14916,14917,14918,14921,14924,14926,14928,14931,14932,14934,14935,14936,14938,14940,14941,14948,14964,14965,14967,14970,14972,14975,14976,14980,14987,14988,14993,14994,14995,14998,15001,15018,15021,15046,15048,15049,15058,15060,15070,15072,15078,15080,15082,15087,15090,15092,15094,15096,15106,15109,15120,15123,15132,15135,15144,15148,15169,15172,15186,15194,15195,15201,15202,15205,15212,15217,15218,15221,15227,15234,15241,15242,15253,15254,15262,15266,15267,15268,15269,15270,15275,15286,15294,15296,15298,15304,15309,15334,15395,15397,15424,15438,15453,15454,15461,15493,15504,15507,15508,15511,15572,15604,15613,15698,15699,15743,15747,15749,15753,15755,15756,15781,15818,15832,15833,15853,15897,16013,16098,16100,16177,16198,16303,16314,16320,16321,16343,16346,16351,16352,16358,16363,16438,16450,16459,17115,17260,17328,17357,17359,17369,17370,17372,17373,17374,17376,17377,17398,17399,17401,17403,17404,17415,17416,17417,17419,17442,17443,17447,17455,17458,17460,17470,17471,17473,17475,17476,17482,17518,17522,17530,17536,17537,17664,17688,17793,17795,17826,17828,17925,17989,17993,18045,18052,18110,18119,18127,18143,18190,18216,18235,18322,18324,18337,18356,18362,18368,18369,18372,18373,18395,18421,18423,18428,18429,18448,18461,18464,18468,18508,18539,18564,18566,18575,18576,18579,18582,18595,18615,18616,18631,18640,18641,18672,18688,18693,18695,18703,18706,18708,18715,18728,18729,18745,18747,18786,18788,18802,18813,18830,18840,18845,18849,18853,18857,18859,18889,18913,18931,18982,18984,19015,19023,19024,19025,19027,19062,19063,19072,19082,19122,19140,19142,19147,19167,19190,19211,19229,19230,19278,19282,19315,19331,19345,19346,19410,19422,19444,19463,19486,19507,19520,19529,19531,19549,19561,19585,19588,19600,19617,19620,19632,19639,19643,19656,19660,19669,19676,19689,19692,19697,19709,19714,19724,19745,19746,19758,19767,19769,19779,19803,19814,19827,19836,19840,19841,19842,19877,19881,19912,19939,19943,19977,19978,19979,19980,19981,19984,19988,19990,19993,19995,19996,19998,19999,20007,20012,20017,20021,20035,20042,20070,20081,20170,20184,20194,20206,20222,20245,20465,20607,20608,20625,20652,20653,20675,20677,20679,20742,20900,20902,20914,20915,21159,21163,21166,21170,21171,21173,21183,21238,21239,21337,21343,21344,21387,21420,21424,21470,21476,21479,21574,21601,21739,21746,21754,21991,21992,21997,21998,21999,22001,22002,22003,22005,22006,22007,22008,22027,22068,22073,22101,22128,22133,22134,22139,22145,22156,22173,22188,22196,22200,22209,22216,22225,22255,22257,22258,22261,22270,22282,22283,22304,22305,22307,22324,22325,22328,22334,22337,22338,22360,22408,22421,22422,22423,22437,22438,22439,22450,22458,22464,22510,22537,22540,22549,22554,22563,22566,22567,22568,22574,22575,22576,22577,22615,22622,22625,22637,22654,22656,22671,22674,22681,22743,22786,22812,22814,22822,22837,22852,22854,22962,22984,22999,23006,23015,23022,23032,23050,23053,23068,23073,23119,23120,23128,23134,23135,23138]]],["God's",[7,7,[[0,3,3,0,3,[[27,1,1,0,1],[29,1,1,1,2],[31,1,1,2,3]]],[3,1,1,3,4,[[138,1,1,3,4]]],[4,1,1,4,5,[[153,1,1,4,5]]],[13,1,1,5,6,[[386,1,1,5,6]]],[15,1,1,6,7,[[422,1,1,6,7]]]],[795,832,930,4397,4909,11602,12578]]],["Gods",[2,1,[[8,2,1,0,1,[[239,2,1,0,1]]]],[7305]]],["exceeding",[1,1,[[31,1,1,0,1,[[891,1,1,0,1]]]],[22561]]],["god",[30,26,[[1,2,2,0,2,[[56,1,1,0,1],[71,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[6,8,6,3,9,[[216,1,1,3,4],[218,1,1,4,5],[219,1,1,5,6],[221,1,1,6,7],[226,4,2,7,9]]],[8,1,1,9,10,[[240,1,1,9,10]]],[10,3,2,10,12,[[301,2,1,10,11],[308,1,1,11,12]]],[11,5,5,12,17,[[313,4,4,12,16],[331,1,1,16,17]]],[13,1,1,17,18,[[398,1,1,17,18]]],[22,1,1,18,19,[[715,1,1,18,19]]],[26,2,1,19,20,[[850,2,1,19,20]]],[27,1,1,20,21,[[874,1,1,20,21]]],[29,3,3,21,24,[[880,1,1,21,22],[883,1,1,22,23],[886,1,1,23,24]]],[31,1,1,24,25,[[889,1,1,24,25]]],[32,1,1,25,26,[[896,1,1,25,26]]]],[1686,2133,5797,6685,6752,6781,6853,6972,6973,7326,9141,9368,9535,9536,9539,9549,10098,11896,18390,21739,22270,22387,22449,22495,22536,22625]]],["goddess",[2,2,[[10,2,2,0,2,[[301,2,2,0,2]]]],[9113,9141]]],["godly",[1,1,[[38,1,1,0,1,[[926,1,1,0,1]]]],[23118]]],["gods",[211,188,[[0,5,5,0,5,[[2,1,1,0,1],[30,2,2,1,3],[34,2,2,3,5]]],[1,20,17,5,22,[[61,1,1,5,6],[67,1,1,6,7],[69,3,2,7,9],[71,1,1,9,10],[72,4,4,10,14],[81,5,5,14,19],[83,5,3,19,22]]],[2,1,1,22,23,[[108,1,1,22,23]]],[3,3,2,23,25,[[141,2,1,23,24],[149,1,1,24,25]]],[4,34,31,25,56,[[156,1,1,25,26],[157,1,1,26,27],[158,1,1,27,28],[159,3,3,28,31],[160,1,1,31,32],[162,1,1,32,33],[163,2,2,33,35],[164,6,4,35,39],[165,3,3,39,42],[169,1,1,42,43],[170,1,1,43,44],[172,1,1,44,45],[180,3,3,45,48],[181,3,2,48,50],[182,1,1,50,51],[183,3,3,51,54],[184,2,2,54,56]]],[5,11,9,56,65,[[208,2,1,56,57],[209,2,2,57,59],[210,7,6,59,65]]],[6,17,13,65,78,[[212,4,4,65,69],[213,1,1,69,70],[215,1,1,70,71],[216,1,1,71,72],[220,8,4,72,76],[227,1,1,76,77],[228,1,1,77,78]]],[7,1,1,78,79,[[232,1,1,78,79]]],[8,6,6,79,85,[[241,1,1,79,80],[242,1,1,80,81],[243,1,1,81,82],[252,1,1,82,83],[261,1,1,83,84],[263,1,1,84,85]]],[9,1,1,85,86,[[273,1,1,85,86]]],[10,14,13,86,99,[[299,2,2,86,88],[301,4,4,88,92],[302,1,1,92,93],[304,1,1,93,94],[308,2,2,94,96],[309,1,1,96,97],[310,3,2,97,99]]],[11,16,14,99,113,[[317,1,1,99,100],[329,7,7,100,107],[330,4,3,107,110],[331,3,2,110,112],[334,1,1,112,113]]],[12,5,5,113,118,[[342,1,1,113,114],[347,1,1,114,115],[351,1,1,115,116],[353,2,2,116,118]]],[13,18,16,118,134,[[368,1,1,118,119],[373,2,2,119,121],[379,2,2,121,123],[391,4,3,123,126],[394,3,2,126,128],[398,4,4,128,132],[399,1,1,132,133],[400,1,1,133,134]]],[14,1,1,134,135,[[403,1,1,134,135]]],[18,11,11,135,146,[[559,2,2,135,137],[563,1,1,137,138],[572,1,1,138,139],[573,2,2,139,141],[574,2,2,141,143],[612,1,1,143,144],[613,1,1,144,145],[615,1,1,145,146]]],[22,10,8,146,154,[[699,1,1,146,147],[714,4,3,147,150],[715,3,2,150,152],[719,1,1,152,153],[720,1,1,153,154]]],[23,32,29,154,183,[[745,1,1,154,155],[746,4,2,155,157],[749,2,2,157,159],[751,3,3,159,162],[755,3,3,162,165],[757,1,1,165,166],[760,4,3,166,169],[763,2,2,169,171],[766,1,1,171,172],[769,1,1,172,173],[776,1,1,173,174],[779,1,1,174,175],[787,2,2,175,177],[788,4,4,177,181],[790,1,1,181,182],[792,1,1,182,183]]],[26,1,1,183,184,[[860,1,1,183,184]]],[27,2,2,184,186,[[864,1,1,184,185],[875,1,1,185,186]]],[33,1,1,186,187,[[900,1,1,186,187]]],[35,1,1,187,188,[[907,1,1,187,188]]]],[60,903,905,1013,1015,1828,2010,2054,2074,2141,2157,2168,2176,2177,2439,2442,2446,2461,2469,2511,2512,2513,3285,4473,4764,5032,5060,5100,5115,5127,5136,5156,5203,5224,5236,5242,5243,5270,5271,5274,5278,5285,5367,5404,5445,5625,5647,5675,5697,5705,5725,5744,5746,5748,5775,5795,6448,6467,6476,6478,6490,6491,6492,6496,6499,6548,6557,6562,6564,6574,6631,6664,6817,6824,6825,6827,6985,7017,7142,7336,7355,7377,7661,7924,7955,8203,9057,9060,9110,9112,9116,9118,9179,9227,9365,9366,9389,9418,9431,9664,9990,10012,10014,10016,10018,10020,10021,10057,10058,10059,10073,10079,10162,10453,10669,10786,10845,10846,11216,11343,11346,11461,11462,11718,11719,11724,11787,11789,11888,11889,11892,11894,11923,11958,12023,15234,15239,15292,15457,15469,15470,15485,15487,16180,16198,16232,18044,18348,18349,18350,18364,18371,18474,18497,18962,18976,18993,19065,19077,19125,19128,19137,19236,19238,19239,19276,19347,19349,19356,19411,19420,19463,19540,19760,19838,20009,20010,20013,20015,20018,20025,20070,20115,22044,22129,22285,22698,22816]]],["great",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]]],[838,7523]]],["judge",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7265]]],["judges",[4,3,[[1,4,3,0,3,[[70,1,1,0,1],[71,3,2,1,3]]]],[2083,2121,2122]]],["mighty",[2,2,[[0,1,1,0,1,[[22,1,1,0,1]]],[1,1,1,1,2,[[58,1,1,1,2]]]],[577,1770]]]]},{"k":"H431","v":[["behold",[5,4,[[26,5,4,0,4,[[851,1,1,0,1],[853,2,2,1,3],[856,2,1,3,4]]]],[21789,21847,21850,21941]]]]},{"k":"H432","v":[["*",[2,2,[[16,1,1,0,1,[[432,1,1,0,1]]],[20,1,1,1,2,[[664,1,1,1,2]]]],[12811,17423]]],["Yea",[1,1,[[20,1,1,0,1,[[664,1,1,0,1]]]],[17423]]],["if",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12811]]]]},{"k":"H433","v":[["*",[57,56,[[4,2,2,0,2,[[184,2,2,0,2]]],[13,1,1,2,3,[[398,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[17,41,41,4,45,[[438,2,2,4,6],[439,2,2,6,8],[440,1,1,8,9],[441,3,3,9,12],[444,1,1,12,13],[445,1,1,13,14],[446,3,3,14,17],[447,2,2,17,19],[450,1,1,19,20],[451,2,2,20,22],[454,3,3,22,25],[456,2,2,25,27],[457,2,2,27,29],[459,1,1,29,30],[462,3,3,30,33],[464,2,2,33,35],[466,2,2,35,37],[468,2,2,37,39],[470,1,1,39,40],[471,1,1,40,41],[472,2,2,41,43],[474,1,1,43,44],[475,1,1,44,45]]],[18,4,4,45,49,[[495,1,1,45,46],[527,1,1,46,47],[591,1,1,47,48],[616,1,1,48,49]]],[19,1,1,49,50,[[657,1,1,49,50]]],[22,1,1,50,51,[[722,1,1,50,51]]],[26,4,3,51,54,[[860,4,3,51,54]]],[34,2,2,54,56,[[903,1,1,54,55],[905,1,1,55,56]]]],[5773,5775,11890,12528,12908,12927,12939,12947,12968,12982,12986,12987,13064,13088,13113,13114,13115,13132,13134,13211,13258,13259,13303,13318,13323,13364,13374,13401,13415,13448,13484,13489,13491,13534,13536,13590,13594,13662,13676,13730,13738,13784,13791,13851,13866,14149,14690,15829,16258,17256,18541,22073,22074,22075,22742,22771]]],["+",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12947]]],["God",[50,50,[[4,2,2,0,2,[[184,2,2,0,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[17,39,39,3,42,[[438,2,2,3,5],[439,1,1,5,6],[440,1,1,6,7],[441,3,3,7,10],[444,1,1,10,11],[445,1,1,11,12],[446,3,3,12,15],[447,2,2,15,17],[450,1,1,17,18],[451,2,2,18,20],[454,3,3,20,23],[456,2,2,23,25],[457,2,2,25,27],[459,1,1,27,28],[462,3,3,28,31],[464,2,2,31,33],[466,2,2,33,35],[468,2,2,35,37],[470,1,1,37,38],[472,2,2,38,40],[474,1,1,40,41],[475,1,1,41,42]]],[18,4,4,42,46,[[495,1,1,42,43],[527,1,1,43,44],[591,1,1,44,45],[616,1,1,45,46]]],[19,1,1,46,47,[[657,1,1,46,47]]],[22,1,1,47,48,[[722,1,1,47,48]]],[26,1,1,48,49,[[860,1,1,48,49]]],[34,1,1,49,50,[[905,1,1,49,50]]]],[5773,5775,12528,12908,12927,12939,12968,12982,12986,12987,13064,13088,13113,13114,13115,13132,13134,13211,13258,13259,13303,13318,13323,13364,13374,13401,13415,13448,13484,13489,13491,13534,13536,13590,13594,13662,13676,13730,13784,13791,13851,13866,14149,14690,15829,16258,17256,18541,22074,22771]]],["God's",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13738]]],["god",[5,5,[[13,1,1,0,1,[[398,1,1,0,1]]],[26,3,3,1,4,[[860,3,3,1,4]]],[34,1,1,4,5,[[903,1,1,4,5]]]],[11890,22073,22074,22075,22742]]]]},{"k":"H434","v":[["nought",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19307]]]]},{"k":"H435","v":[["Elul",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12416]]]]},{"k":"H436","v":[["*",[10,10,[[0,4,4,0,4,[[11,1,1,0,1],[12,1,1,1,2],[13,1,1,2,3],[17,1,1,3,4]]],[4,1,1,4,5,[[163,1,1,4,5]]],[5,1,1,5,6,[[205,1,1,5,6]]],[6,3,3,6,9,[[214,1,1,6,7],[219,2,2,7,9]]],[8,1,1,9,10,[[245,1,1,9,10]]]],[304,336,349,425,5238,6354,6610,6760,6791,7421]]],["+",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6354]]],["plain",[7,7,[[0,3,3,0,3,[[11,1,1,0,1],[12,1,1,1,2],[13,1,1,2,3]]],[6,3,3,3,6,[[214,1,1,3,4],[219,2,2,4,6]]],[8,1,1,6,7,[[245,1,1,6,7]]]],[304,336,349,6610,6760,6791,7421]]],["plains",[2,2,[[0,1,1,0,1,[[17,1,1,0,1]]],[4,1,1,1,2,[[163,1,1,1,2]]]],[425,5238]]]]},{"k":"H437","v":[["*",[8,8,[[0,1,1,0,1,[[34,1,1,0,1]]],[22,3,3,1,4,[[680,1,1,1,2],[684,1,1,2,3],[722,1,1,3,4]]],[25,1,1,4,5,[[828,1,1,4,5]]],[27,1,1,5,6,[[865,1,1,5,6]]],[29,1,1,6,7,[[880,1,1,6,7]]],[37,1,1,7,8,[[921,1,1,7,8]]]],[1019,17698,17782,18547,21127,22146,22388,23030]]],["oak",[3,3,[[0,1,1,0,1,[[34,1,1,0,1]]],[22,2,2,1,3,[[684,1,1,1,2],[722,1,1,2,3]]]],[1019,17782,18547]]],["oaks",[5,5,[[22,1,1,0,1,[[680,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]],[27,1,1,2,3,[[865,1,1,2,3]]],[29,1,1,3,4,[[880,1,1,3,4]]],[37,1,1,4,5,[[921,1,1,4,5]]]],[17698,21127,22146,22388,23030]]]]},{"k":"H438","v":[["Allon",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10422]]]]},{"k":"H439","v":[["Allonbachuth",[1,1,[[0,1,1,0,1,[[34,1,1,0,1]]]],[1019]]]]},{"k":"H440","v":[["Elonites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4515]]]]},{"k":"H441","v":[["*",[69,29,[[0,43,12,0,12,[[35,43,12,0,12]]],[1,1,1,12,13,[[64,1,1,12,13]]],[12,13,4,13,17,[[338,13,4,13,17]]],[18,2,2,17,19,[[532,1,1,17,18],[621,1,1,18,19]]],[19,3,3,19,22,[[629,1,1,19,20],[643,1,1,20,21],[644,1,1,21,22]]],[23,3,3,22,25,[[747,1,1,22,23],[755,1,1,23,24],[757,1,1,24,25]]],[32,1,1,25,26,[[899,1,1,25,26]]],[37,3,3,26,29,[[919,1,1,26,27],[922,2,2,27,29]]]],[1055,1056,1057,1058,1059,1061,1069,1070,1080,1081,1082,1083,1935,10303,10304,10305,10306,14745,16319,16450,16868,16882,19006,19245,19287,22669,23006,23050,23051]]],["Duke",[8,8,[[0,5,5,0,5,[[35,5,5,0,5]]],[12,3,3,5,8,[[338,3,3,5,8]]]],[1056,1070,1081,1082,1083,10304,10305,10306]]],["captains",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19287]]],["duke",[35,14,[[0,27,10,0,10,[[35,27,10,0,10]]],[12,8,4,10,14,[[338,8,4,10,14]]]],[1055,1056,1057,1058,1069,1070,1080,1081,1082,1083,10303,10304,10305,10306]]],["dukes",[14,13,[[0,11,10,0,10,[[35,11,10,0,10]]],[1,1,1,10,11,[[64,1,1,10,11]]],[12,2,2,11,13,[[338,2,2,11,13]]]],[1055,1056,1057,1058,1059,1061,1069,1070,1080,1083,1935,10303,10306]]],["friends",[2,2,[[19,2,2,0,2,[[643,1,1,0,1],[644,1,1,1,2]]]],[16868,16882]]],["governor",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23006]]],["governors",[2,2,[[37,2,2,0,2,[[922,2,2,0,2]]]],[23050,23051]]],["guide",[4,4,[[18,1,1,0,1,[[532,1,1,0,1]]],[19,1,1,1,2,[[629,1,1,1,2]]],[23,1,1,2,3,[[747,1,1,2,3]]],[32,1,1,3,4,[[899,1,1,3,4]]]],[14745,16450,19006,22669]]],["ox",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19245]]],["oxen",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16319]]]]},{"k":"H442","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4773,4774]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4774]]],["Alush",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4773]]]]},{"k":"H443","v":[["Elzabad",[2,2,[[12,2,2,0,2,[[349,1,1,0,1],[363,1,1,1,2]]]],[10732,11084]]]]},{"k":"H444","v":[["filthy",[3,3,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,2,2,1,3,[[491,1,1,1,2],[530,1,1,2,3]]]],[13219,14083,14722]]]]},{"k":"H445","v":[["Elhanan",[4,4,[[9,2,2,0,2,[[287,1,1,0,1],[289,1,1,1,2]]],[12,2,2,2,4,[[348,1,1,2,3],[357,1,1,3,4]]]],[8599,8677,10699,10931]]]]},{"k":"H446","v":[["*",[21,20,[[3,9,9,0,9,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5],[132,2,2,5,7],[142,2,2,7,9]]],[4,1,1,9,10,[[163,1,1,9,10]]],[8,4,3,10,13,[[251,1,1,10,11],[252,3,2,11,13]]],[12,6,6,13,19,[[339,1,1,13,14],[343,1,1,14,15],[349,1,1,15,16],[352,2,2,16,18],[353,1,1,18,19]]],[13,1,1,19,20,[[377,1,1,19,20]]]],[3613,3665,3874,3879,4004,4195,4206,4497,4498,5214,7601,7631,7646,10319,10481,10729,10809,10811,10825,11432]]],["Eliab",[20,20,[[3,9,9,0,9,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5],[132,2,2,5,7],[142,2,2,7,9]]],[4,1,1,9,10,[[163,1,1,9,10]]],[8,3,3,10,13,[[251,1,1,10,11],[252,2,2,11,13]]],[12,6,6,13,19,[[339,1,1,13,14],[343,1,1,14,15],[349,1,1,15,16],[352,2,2,16,18],[353,1,1,18,19]]],[13,1,1,19,20,[[377,1,1,19,20]]]],[3613,3665,3874,3879,4004,4195,4206,4497,4498,5214,7601,7631,7646,10319,10481,10729,10809,10811,10825,11432]]],["Eliab's",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7646]]]]},{"k":"H447","v":[["Eliel",[10,10,[[12,9,9,0,9,[[342,1,1,0,1],[343,1,1,1,2],[345,2,2,2,4],[348,2,2,4,6],[349,1,1,6,7],[352,2,2,7,9]]],[13,1,1,9,10,[[397,1,1,9,10]]]],[10452,10488,10595,10597,10719,10720,10731,10800,10802,11867]]]]},{"k":"H448","v":[["Eliathah",[2,2,[[12,2,2,0,2,[[362,2,2,0,2]]]],[11050,11073]]]]},{"k":"H449","v":[["Elidad",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4837]]]]},{"k":"H450","v":[["*",[4,4,[[9,1,1,0,1,[[271,1,1,0,1]]],[10,1,1,1,2,[[301,1,1,1,2]]],[12,1,1,2,3,[[340,1,1,2,3]]],[13,1,1,3,4,[[383,1,1,3,4]]]],[8148,9131,10369,11540]]],["Eliada",[3,3,[[9,1,1,0,1,[[271,1,1,0,1]]],[12,1,1,1,2,[[340,1,1,1,2]]],[13,1,1,2,3,[[383,1,1,2,3]]]],[8148,10369,11540]]],["Eliadah",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9131]]]]},{"k":"H451","v":[["rump",[5,5,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,4,4,1,5,[[92,1,1,1,2],[96,1,1,2,3],[97,1,1,3,4],[98,1,1,4,5]]]],[2358,2787,2882,2942,2972]]]]},{"k":"H452","v":[["*",[71,65,[[10,42,38,0,38,[[307,9,8,0,8],[308,22,20,8,28],[309,8,7,28,35],[311,3,3,35,38]]],[11,24,22,38,60,[[313,8,8,38,46],[314,12,10,46,56],[315,1,1,56,57],[321,1,1,57,58],[322,2,2,58,60]]],[12,1,1,60,61,[[345,1,1,60,61]]],[13,1,1,61,62,[[387,1,1,61,62]]],[14,2,2,62,64,[[412,2,2,62,64]]],[38,1,1,64,65,[[928,1,1,64,65]]]],[9318,9330,9332,9333,9335,9339,9340,9341,9342,9343,9348,9349,9352,9355,9356,9357,9358,9362,9363,9366,9368,9371,9372,9377,9381,9382,9383,9387,9388,9389,9396,9400,9406,9407,9408,9468,9471,9479,9536,9537,9541,9543,9545,9546,9548,9550,9552,9553,9555,9557,9559,9560,9562,9564,9565,9566,9587,9792,9803,9810,10602,11636,12273,12278,23143]]],["+",[1,1,[[13,1,1,0,1,[[387,1,1,0,1]]]],[11636]]],["Eliah",[2,2,[[12,1,1,0,1,[[345,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]]],[10602,12278]]],["Elijah",[68,62,[[10,42,38,0,38,[[307,9,8,0,8],[308,22,20,8,28],[309,8,7,28,35],[311,3,3,35,38]]],[11,24,22,38,60,[[313,8,8,38,46],[314,12,10,46,56],[315,1,1,56,57],[321,1,1,57,58],[322,2,2,58,60]]],[14,1,1,60,61,[[412,1,1,60,61]]],[38,1,1,61,62,[[928,1,1,61,62]]]],[9318,9330,9332,9333,9335,9339,9340,9341,9342,9343,9348,9349,9352,9355,9356,9357,9358,9362,9363,9366,9368,9371,9372,9377,9381,9382,9383,9387,9388,9389,9396,9400,9406,9407,9408,9468,9471,9479,9536,9537,9541,9543,9545,9546,9548,9550,9552,9553,9555,9557,9559,9560,9562,9564,9565,9566,9587,9792,9803,9810,12273,23143]]]]},{"k":"H453","v":[["Elihu",[11,11,[[8,1,1,0,1,[[236,1,1,0,1]]],[12,3,3,1,4,[[349,1,1,1,2],[363,1,1,2,3],[364,1,1,3,4]]],[17,7,7,4,11,[[467,4,4,4,8],[469,1,1,8,9],[470,1,1,9,10],[471,1,1,10,11]]]],[7213,10740,11084,11127,13630,13632,13633,13634,13684,13721,13737]]]]},{"k":"H454","v":[["*",[9,9,[[12,5,5,0,5,[[340,2,2,0,2],[341,1,1,2,3],[344,1,1,3,4],[363,1,1,4,5]]],[14,3,3,5,8,[[410,1,1,5,6],[412,2,2,6,8]]],[15,1,1,8,9,[[424,1,1,8,9]]]],[10384,10385,10421,10543,11080,12205,12274,12279,12665]]],["Elihoenai",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12205]]],["Elioenai",[8,8,[[12,5,5,0,5,[[340,2,2,0,2],[341,1,1,2,3],[344,1,1,3,4],[363,1,1,4,5]]],[14,2,2,5,7,[[412,2,2,5,7]]],[15,1,1,7,8,[[424,1,1,7,8]]]],[10384,10385,10421,10543,11080,12274,12279,12665]]]]},{"k":"H455","v":[["Eliahba",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8685,10706]]]]},{"k":"H456","v":[["Elihoreph",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8847]]]]},{"k":"H457","v":[["*",[19,17,[[2,2,2,0,2,[[108,1,1,0,1],[115,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[17,1,1,3,4,[[448,1,1,3,4]]],[18,2,2,4,6,[[573,1,1,4,5],[574,1,1,5,6]]],[22,10,8,6,14,[[680,4,3,6,9],[688,2,2,9,11],[697,2,2,11,13],[709,2,1,13,14]]],[25,1,1,14,15,[[831,1,1,14,15]]],[34,1,1,15,16,[[904,1,1,15,16]]],[37,1,1,16,17,[[921,1,1,16,17]]]],[3285,3525,10846,13157,15470,15485,17693,17703,17705,17860,17861,18005,18007,18257,21217,22766,23045]]],["idol",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23045]]],["idols",[16,14,[[2,2,2,0,2,[[108,1,1,0,1],[115,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[18,2,2,3,5,[[573,1,1,3,4],[574,1,1,4,5]]],[22,10,8,5,13,[[680,4,3,5,8],[688,2,2,8,10],[697,2,2,10,12],[709,2,1,12,13]]],[34,1,1,13,14,[[904,1,1,13,14]]]],[3285,3525,10846,15470,15485,17693,17703,17705,17860,17861,18005,18007,18257,22766]]],["images",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21217]]],["value",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13157]]]]},{"k":"H458","v":[["*",[6,6,[[7,6,6,0,6,[[232,2,2,0,2],[233,2,2,2,4],[235,2,2,4,6]]]],[7129,7130,7150,7152,7193,7199]]],["Elimelech",[4,4,[[7,4,4,0,4,[[232,2,2,0,2],[233,2,2,2,4]]]],[7129,7130,7150,7152]]],["Elimelech's",[2,2,[[7,2,2,0,2,[[235,2,2,0,2]]]],[7193,7199]]]]},{"k":"H459","v":[["*",[5,5,[[26,5,5,0,5,[[851,2,2,0,2],[855,2,2,2,4],[856,1,1,4,5]]]],[21798,21802,21907,21911,21950]]],["These",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21950]]],["the",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21907]]],["these",[3,3,[[26,3,3,0,3,[[851,2,2,0,2],[855,1,1,2,3]]]],[21798,21802,21911]]]]},{"k":"H460","v":[["Eliasaph",[6,6,[[3,6,6,0,6,[[117,1,1,0,1],[118,1,1,1,2],[119,1,1,2,3],[123,2,2,3,5],[126,1,1,5,6]]]],[3618,3672,3716,3892,3897,4008]]]]},{"k":"H461","v":[["Eliezer",[14,13,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,1,1,1,2,[[67,1,1,1,2]]],[12,7,6,2,8,[[344,1,1,2,3],[352,1,1,3,4],[360,3,2,4,6],[363,1,1,6,7],[364,1,1,7,8]]],[13,1,1,8,9,[[386,1,1,8,9]]],[14,4,4,9,13,[[410,1,1,9,10],[412,3,3,10,13]]]],[362,2003,10543,10815,10998,11000,11102,11125,11624,12217,12270,12275,12283]]]]},{"k":"H462","v":[["Elienai",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10595]]]]},{"k":"H463","v":[["Eliam",[2,2,[[9,2,2,0,2,[[277,1,1,0,1],[289,1,1,1,2]]]],[8262,8687]]]]},{"k":"H464","v":[["*",[15,14,[[0,7,6,0,6,[[35,7,6,0,6]]],[12,2,2,6,8,[[338,2,2,6,8]]],[17,6,6,8,14,[[437,1,1,8,9],[439,1,1,9,10],[450,1,1,10,11],[457,1,1,11,12],[477,2,2,12,14]]]],[1044,1050,1051,1052,1055,1056,10287,10288,12902,12931,13204,13390,13929,13931]]],["+",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1052]]],["Eliphaz",[14,14,[[0,6,6,0,6,[[35,6,6,0,6]]],[12,2,2,6,8,[[338,2,2,6,8]]],[17,6,6,8,14,[[437,1,1,8,9],[439,1,1,9,10],[450,1,1,10,11],[457,1,1,11,12],[477,2,2,12,14]]]],[1044,1050,1051,1052,1055,1056,10287,10288,12902,12931,13204,13390,13929,13931]]]]},{"k":"H465","v":[["Eliphal",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10708]]]]},{"k":"H466","v":[["Elipheleh",[2,2,[[12,2,2,0,2,[[352,2,2,0,2]]]],[10809,10812]]]]},{"k":"H467","v":[["*",[9,9,[[9,2,2,0,2,[[271,1,1,0,1],[289,1,1,1,2]]],[12,5,5,2,7,[[340,2,2,2,4],[345,1,1,4,5],[351,2,2,5,7]]],[14,2,2,7,9,[[410,1,1,7,8],[412,1,1,8,9]]]],[8148,8687,10367,10369,10614,10779,10781,12214,12285]]],["Eliphalet",[2,2,[[9,1,1,0,1,[[271,1,1,0,1]]],[12,1,1,1,2,[[351,1,1,1,2]]]],[8148,10781]]],["Eliphelet",[6,6,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,3,3,1,4,[[340,2,2,1,3],[345,1,1,3,4]]],[14,2,2,4,6,[[410,1,1,4,5],[412,1,1,5,6]]]],[8687,10367,10369,10614,12214,12285]]],["Elpalet",[1,1,[[12,1,1,0,1,[[351,1,1,0,1]]]],[10779]]]]},{"k":"H468","v":[["Elizur",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3609,3668,3880,3885,4006]]]]},{"k":"H469","v":[["*",[6,6,[[1,1,1,0,1,[[55,1,1,0,1]]],[2,1,1,1,2,[[99,1,1,1,2]]],[3,2,2,2,4,[[119,1,1,2,3],[150,1,1,3,4]]],[12,1,1,4,5,[[352,1,1,4,5]]],[13,1,1,5,6,[[395,1,1,5,6]]]],[1677,2981,3722,4841,10799,11804]]],["Elizaphan",[4,4,[[3,2,2,0,2,[[119,1,1,0,1],[150,1,1,1,2]]],[12,1,1,2,3,[[352,1,1,2,3]]],[13,1,1,3,4,[[395,1,1,3,4]]]],[3722,4841,10799,11804]]],["Elzaphan",[2,2,[[1,1,1,0,1,[[55,1,1,0,1]]],[2,1,1,1,2,[[99,1,1,1,2]]]],[1677,2981]]]]},{"k":"H470","v":[["Elika",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8678]]]]},{"k":"H471","v":[["Eliakim",[12,12,[[11,5,5,0,5,[[330,3,3,0,3],[331,1,1,3,4],[335,1,1,4,5]]],[13,1,1,5,6,[[402,1,1,5,6]]],[15,1,1,6,7,[[424,1,1,6,7]]],[22,5,5,7,12,[[700,1,1,7,8],[714,3,3,8,11],[715,1,1,11,12]]]],[10042,10050,10061,10063,10199,11997,12665,18072,18333,18341,18352,18354]]]]},{"k":"H472","v":[["Elisheba",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1678]]]]},{"k":"H473","v":[["Elishah",[3,3,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[25,1,1,2,3,[[828,1,1,2,3]]]],[238,10259,21128]]]]},{"k":"H474","v":[["Elishua",[2,2,[[9,1,1,0,1,[[271,1,1,0,1]]],[12,1,1,1,2,[[351,1,1,1,2]]]],[8147,10779]]]]},{"k":"H475","v":[["Eliashib",[17,15,[[12,2,2,0,2,[[340,1,1,0,1],[361,1,1,1,2]]],[14,4,4,2,6,[[412,4,4,2,6]]],[15,11,9,6,15,[[415,4,3,6,9],[424,4,3,9,12],[425,3,3,12,15]]]],[10385,11027,12258,12276,12279,12288,12328,12347,12348,12634,12646,12647,12675,12678,12699]]]]},{"k":"H476","v":[["Elishama",[17,17,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]],[9,1,1,5,6,[[271,1,1,5,6]]],[11,1,1,6,7,[[337,1,1,6,7]]],[12,5,5,7,12,[[339,1,1,7,8],[340,2,2,8,10],[344,1,1,10,11],[351,1,1,11,12]]],[13,1,1,12,13,[[383,1,1,12,13]]],[23,4,4,13,17,[[780,3,3,13,16],[785,1,1,16,17]]]],[3614,3676,3898,3903,4010,8148,10247,10347,10367,10369,10561,10781,11531,19854,19862,19863,19958]]]]},{"k":"H477","v":[["Elisha",[58,52,[[10,3,3,0,3,[[309,3,3,0,3]]],[11,55,49,3,52,[[314,13,11,3,14],[315,3,3,14,17],[316,6,6,17,23],[317,5,5,23,28],[318,11,9,28,37],[319,1,1,37,38],[320,8,7,38,45],[321,1,1,45,46],[325,7,6,46,52]]]],[9403,9404,9406,9552,9553,9554,9555,9556,9560,9563,9565,9566,9570,9573,9587,9589,9590,9604,9605,9611,9620,9635,9641,9655,9656,9657,9667,9672,9675,9686,9691,9692,9693,9694,9695,9705,9706,9708,9728,9731,9732,9734,9737,9740,9741,9757,9885,9886,9887,9888,9891,9892]]]]},{"k":"H478","v":[["Elishaphat",[1,1,[[13,1,1,0,1,[[389,1,1,0,1]]]],[11657]]]]},{"k":"H479","v":[["*",[14,13,[[14,4,3,0,3,[[406,1,1,0,1],[407,1,1,1,2],[408,2,1,2,3]]],[26,10,10,3,13,[[852,6,6,3,9],[855,4,4,9,13]]]],[12131,12143,12159,21819,21820,21828,21829,21830,21834,21910,21916,21920,21929]]],["these",[11,10,[[14,3,2,0,2,[[406,1,1,0,1],[408,2,1,1,2]]],[26,8,8,2,10,[[852,5,5,2,7],[855,3,3,7,10]]]],[12131,12159,21819,21820,21828,21830,21834,21910,21916,21920]]],["those",[3,3,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,2,2,1,3,[[852,1,1,1,2],[855,1,1,2,3]]]],[12143,21829,21929]]]]},{"k":"H480","v":[["*",[2,2,[[17,1,1,0,1,[[445,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]]],[13101,22665]]],["Woe",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22665]]],["woe",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13101]]]]},{"k":"H481","v":[["*",[9,9,[[0,1,1,0,1,[[36,1,1,0,1]]],[18,3,3,1,4,[[508,1,1,1,2],[516,2,2,2,4]]],[22,1,1,4,5,[[731,1,1,4,5]]],[25,3,3,5,8,[[804,1,1,5,6],[825,1,1,6,7],[834,1,1,7,8]]],[26,1,1,8,9,[[859,1,1,8,9]]]],[1090,14349,14514,14521,18718,20528,21083,21302,22030]]],["+",[2,2,[[25,2,2,0,2,[[825,1,1,0,1],[834,1,1,1,2]]]],[21083,21302]]],["binding",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1090]]],["dumb",[5,5,[[18,2,2,0,2,[[516,2,2,0,2]]],[22,1,1,2,3,[[731,1,1,2,3]]],[25,1,1,3,4,[[804,1,1,3,4]]],[26,1,1,4,5,[[859,1,1,4,5]]]],[14514,14521,18718,20528,22030]]],["silence",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14349]]]]},{"k":"H482","v":[["congregation",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14780]]]]},{"k":"H483","v":[["*",[6,6,[[1,1,1,0,1,[[53,1,1,0,1]]],[18,1,1,1,2,[[515,1,1,1,2]]],[19,1,1,2,3,[[658,1,1,2,3]]],[22,2,2,3,5,[[713,1,1,3,4],[734,1,1,4,5]]],[34,1,1,5,6,[[904,1,1,5,6]]]],[1612,14503,17292,18326,18763,22766]]],["dumb",[5,5,[[1,1,1,0,1,[[53,1,1,0,1]]],[19,1,1,1,2,[[658,1,1,1,2]]],[22,2,2,2,4,[[713,1,1,2,3],[734,1,1,3,4]]],[34,1,1,4,5,[[904,1,1,4,5]]]],[1612,17292,18326,18763,22766]]],["man",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14503]]]]},{"k":"H484","v":[["almug",[3,2,[[10,3,2,0,2,[[300,3,2,0,2]]]],[9090,9091]]]]},{"k":"H485","v":[["*",[5,2,[[0,4,1,0,1,[[36,4,1,0,1]]],[18,1,1,1,2,[[603,1,1,1,2]]]],[1090,16121]]],["sheaf",[2,1,[[0,2,1,0,1,[[36,2,1,0,1]]]],[1090]]],["sheaves",[3,2,[[0,2,1,0,1,[[36,2,1,0,1]]],[18,1,1,1,2,[[603,1,1,1,2]]]],[1090,16121]]]]},{"k":"H486","v":[["Almodad",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[260,10272]]]]},{"k":"H487","v":[["Alammelech",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6347]]]]},{"k":"H488","v":[["forsaken",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20217]]]]},{"k":"H489","v":[["widowhood",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18608]]]]},{"k":"H490","v":[["*",[54,53,[[0,1,1,0,1,[[37,1,1,0,1]]],[1,2,2,1,3,[[71,2,2,1,3]]],[2,2,2,3,5,[[110,1,1,3,4],[111,1,1,4,5]]],[3,1,1,5,6,[[146,1,1,5,6]]],[4,11,11,6,17,[[162,1,1,6,7],[166,1,1,7,8],[168,2,2,8,10],[176,4,4,10,14],[178,2,2,14,16],[179,1,1,16,17]]],[9,1,1,17,18,[[280,1,1,17,18]]],[10,5,5,18,23,[[297,1,1,18,19],[301,1,1,19,20],[307,3,3,20,23]]],[17,6,6,23,29,[[457,1,1,23,24],[459,2,2,24,26],[462,1,1,26,27],[464,1,1,27,28],[466,1,1,28,29]]],[18,5,5,29,34,[[545,1,1,29,30],[555,1,1,30,31],[571,1,1,31,32],[586,1,1,32,33],[623,1,1,33,34]]],[19,1,1,34,35,[[642,1,1,34,35]]],[22,6,6,35,41,[[679,2,2,35,37],[687,1,1,37,38],[688,1,1,38,39],[691,1,1,39,40],[725,1,1,40,41]]],[23,5,5,41,46,[[751,1,1,41,42],[759,1,1,42,43],[762,1,1,43,44],[766,1,1,44,45],[793,1,1,45,46]]],[24,2,2,46,48,[[797,1,1,46,47],[801,1,1,47,48]]],[25,4,3,48,51,[[823,2,2,48,50],[845,2,1,50,51]]],[37,1,1,51,52,[[917,1,1,51,52]]],[38,1,1,52,53,[[927,1,1,52,53]]]],[1130,2135,2137,3359,3382,4657,5204,5319,5353,5356,5542,5544,5545,5546,5578,5579,5604,8361,8948,9134,9326,9327,9337,13398,13439,13457,13496,13545,13604,14905,15177,15437,15764,16350,16832,17671,17677,17846,17852,17928,18607,19125,19323,19405,19457,20138,20311,20445,20983,21001,21621,22972,23125]]],["+",[2,2,[[17,2,2,0,2,[[457,1,1,0,1],[459,1,1,1,2]]]],[13398,13439]]],["houses",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17928]]],["widow",[37,36,[[0,1,1,0,1,[[37,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[2,2,2,2,4,[[110,1,1,2,3],[111,1,1,3,4]]],[3,1,1,4,5,[[146,1,1,4,5]]],[4,10,10,5,15,[[162,1,1,5,6],[166,1,1,6,7],[168,2,2,7,9],[176,3,3,9,12],[178,2,2,12,14],[179,1,1,14,15]]],[9,1,1,15,16,[[280,1,1,15,16]]],[10,4,4,16,20,[[301,1,1,16,17],[307,3,3,17,20]]],[17,2,2,20,22,[[459,1,1,20,21],[466,1,1,21,22]]],[18,3,3,22,25,[[571,1,1,22,23],[586,1,1,23,24],[623,1,1,24,25]]],[19,1,1,25,26,[[642,1,1,25,26]]],[22,3,3,26,29,[[679,2,2,26,28],[725,1,1,28,29]]],[23,2,2,29,31,[[751,1,1,29,30],[766,1,1,30,31]]],[24,1,1,31,32,[[797,1,1,31,32]]],[25,3,2,32,34,[[823,1,1,32,33],[845,2,1,33,34]]],[37,1,1,34,35,[[917,1,1,34,35]]],[38,1,1,35,36,[[927,1,1,35,36]]]],[1130,2135,3359,3382,4657,5204,5319,5353,5356,5544,5545,5546,5578,5579,5604,8361,9134,9326,9327,9337,13457,13604,15437,15764,16350,16832,17671,17677,18607,19125,19457,20311,20983,21621,22972,23125]]],["widow's",[3,3,[[4,1,1,0,1,[[176,1,1,0,1]]],[10,1,1,1,2,[[297,1,1,1,2]]],[17,1,1,2,3,[[464,1,1,2,3]]]],[5542,8948,13545]]],["widows",[11,11,[[1,1,1,0,1,[[71,1,1,0,1]]],[17,1,1,1,2,[[462,1,1,1,2]]],[18,2,2,2,4,[[545,1,1,2,3],[555,1,1,3,4]]],[22,2,2,4,6,[[687,1,1,4,5],[688,1,1,5,6]]],[23,3,3,6,9,[[759,1,1,6,7],[762,1,1,7,8],[793,1,1,8,9]]],[24,1,1,9,10,[[801,1,1,9,10]]],[25,1,1,10,11,[[823,1,1,10,11]]]],[2137,13496,14905,15177,17846,17852,19323,19405,20138,20445,21001]]]]},{"k":"H491","v":[["*",[4,4,[[0,2,2,0,2,[[37,2,2,0,2]]],[9,1,1,2,3,[[286,1,1,2,3]]],[22,1,1,3,4,[[732,1,1,3,4]]]],[1133,1138,8557,18727]]],["widow's",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1133]]],["widowhood",[3,3,[[0,1,1,0,1,[[37,1,1,0,1]]],[9,1,1,1,2,[[286,1,1,1,2]]],[22,1,1,2,3,[[732,1,1,2,3]]]],[1138,8557,18727]]]]},{"k":"H492","v":[["*",[3,3,[[7,1,1,0,1,[[235,1,1,0,1]]],[8,1,1,1,2,[[256,1,1,1,2]]],[11,1,1,2,3,[[318,1,1,2,3]]]],[7191,7774,9682]]],["+",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9682]]],["one",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7191]]],["such",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7774]]]]},{"k":"H493","v":[["Elnaam",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10719]]]]},{"k":"H494","v":[["Elnathan",[7,5,[[11,1,1,0,1,[[336,1,1,0,1]]],[14,3,1,1,2,[[410,3,1,1,2]]],[23,3,3,2,5,[[770,1,1,2,3],[780,2,2,3,5]]]],[10210,12217,19594,19854,19867]]]]},{"k":"H495","v":[["Ellasar",[2,2,[[0,2,2,0,2,[[13,2,2,0,2]]]],[337,345]]]]},{"k":"H496","v":[["Elead",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10556]]]]},{"k":"H497","v":[["Eladah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10555]]]]},{"k":"H498","v":[["Eluzai",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10725]]]]},{"k":"H499","v":[["Eleazar",[72,70,[[1,3,3,0,3,[[55,2,2,0,2],[77,1,1,2,3]]],[2,3,3,3,6,[[99,3,3,3,6]]],[3,35,34,6,40,[[119,3,3,6,9],[120,1,1,9,10],[132,2,2,10,12],[135,2,2,12,14],[136,4,3,14,17],[141,2,2,17,19],[142,4,4,19,23],[143,4,4,23,27],[147,10,10,27,37],[148,2,2,37,39],[150,1,1,39,40]]],[4,1,1,40,41,[[162,1,1,40,41]]],[5,8,8,41,49,[[200,1,1,41,42],[203,1,1,42,43],[205,1,1,43,44],[207,1,1,44,45],[208,3,3,45,48],[210,1,1,48,49]]],[6,1,1,49,50,[[230,1,1,49,50]]],[8,1,1,50,51,[[242,1,1,50,51]]],[9,1,1,51,52,[[289,1,1,51,52]]],[12,15,14,52,66,[[343,3,3,52,55],[346,1,1,55,56],[348,1,1,56,57],[360,2,2,57,59],[361,8,7,59,66]]],[14,3,3,66,69,[[409,1,1,66,67],[410,1,1,67,68],[412,1,1,68,69]]],[15,1,1,69,70,[[424,1,1,69,70]]]],[1678,1680,2294,2983,2989,2993,3694,3696,3724,3759,4231,4233,4292,4293,4336,4337,4339,4478,4482,4490,4492,4549,4552,4556,4573,4575,4576,4670,4676,4677,4685,4690,4693,4695,4705,4715,4718,4720,4746,4833,5192,6188,6279,6372,6382,6439,6457,6458,6509,7082,7353,8662,10457,10458,10504,10635,10685,11004,11005,11016,11017,11018,11019,11020,11021,11043,12178,12234,12277,12666]]]]},{"k":"H500","v":[["Elealeh",[5,5,[[3,2,2,0,2,[[148,2,2,0,2]]],[22,2,2,2,4,[[693,1,1,2,3],[694,1,1,3,4]]],[23,1,1,4,5,[[792,1,1,4,5]]]],[4721,4755,17964,17978,20114]]]]},{"k":"H501","v":[["*",[6,6,[[12,4,4,0,4,[[339,2,2,0,2],[345,1,1,2,3],[346,1,1,3,4]]],[14,1,1,4,5,[[412,1,1,4,5]]],[23,1,1,5,6,[[773,1,1,5,6]]]],[10345,10346,10612,10658,12274,19638]]],["Elasah",[2,2,[[14,1,1,0,1,[[412,1,1,0,1]]],[23,1,1,1,2,[[773,1,1,1,2]]]],[12274,19638]]],["Eleasah",[4,4,[[12,4,4,0,4,[[339,2,2,0,2],[345,1,1,2,3],[346,1,1,3,4]]]],[10345,10346,10612,10658]]]]},{"k":"H502","v":[["*",[4,4,[[17,3,3,0,3,[[450,1,1,0,1],[468,1,1,1,2],[470,1,1,2,3]]],[19,1,1,3,4,[[649,1,1,3,4]]]],[13208,13683,13731,17040]]],["learn",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17040]]],["teach",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13683]]],["teacheth",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13731]]],["uttereth",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13208]]]]},{"k":"H503","v":[["thousands",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16318]]]]},{"k":"H504","v":[["*",[8,8,[[4,4,4,0,4,[[159,1,1,0,1],[180,3,3,1,4]]],[6,1,1,4,5,[[216,1,1,4,5]]],[18,1,1,5,6,[[485,1,1,5,6]]],[19,1,1,6,7,[[641,1,1,6,7]]],[22,1,1,7,8,[[708,1,1,7,8]]]],[5124,5615,5629,5662,6669,14019,16776,18241]]],["family",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6669]]],["kine",[4,4,[[4,4,4,0,4,[[159,1,1,0,1],[180,3,3,1,4]]]],[5124,5615,5629,5662]]],["oxen",[3,3,[[18,1,1,0,1,[[485,1,1,0,1]]],[19,1,1,1,2,[[641,1,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]]],[14019,16776,18241]]]]},{"k":"H505","v":[["*",[503,389,[[0,2,2,0,2,[[19,1,1,0,1],[23,1,1,1,2]]],[1,11,10,2,12,[[61,1,1,2,3],[67,2,2,3,5],[69,1,1,5,6],[81,1,1,6,7],[83,1,1,7,8],[87,5,4,8,12]]],[3,103,82,12,94,[[117,15,14,12,26],[118,23,17,26,43],[119,6,6,43,49],[120,4,4,49,53],[123,1,1,53,54],[126,2,2,54,56],[127,1,1,56,57],[132,1,1,57,58],[141,1,1,58,59],[142,15,14,59,73],[147,29,19,73,92],[151,5,2,92,94]]],[4,6,6,94,100,[[153,2,2,94,96],[157,1,1,96,97],[159,1,1,97,98],[184,1,1,98,99],[185,1,1,99,100]]],[5,12,11,100,111,[[189,1,1,100,101],[190,1,1,101,102],[193,3,2,102,104],[194,3,3,104,107],[208,3,3,107,110],[209,1,1,110,111]]],[6,34,30,111,141,[[211,1,1,111,112],[213,1,1,112,113],[214,3,3,113,116],[215,1,1,116,117],[217,2,1,117,118],[218,3,2,118,120],[219,1,1,120,121],[222,1,1,121,122],[225,3,3,122,125],[226,2,2,125,127],[227,2,2,127,129],[230,13,11,129,140],[231,1,1,140,141]]],[8,28,22,141,163,[[239,2,2,141,143],[241,1,1,143,144],[243,1,1,144,145],[245,1,1,145,146],[246,2,1,146,147],[248,5,2,147,149],[250,2,1,149,150],[252,2,2,150,152],[253,3,3,152,155],[256,1,1,155,156],[257,1,1,156,157],[258,1,1,157,158],[259,1,1,158,159],[260,2,1,159,160],[261,1,1,160,161],[264,2,2,161,163]]],[9,19,15,163,178,[[272,1,1,163,164],[274,4,3,164,167],[276,4,2,167,169],[283,1,1,169,170],[284,5,5,170,175],[285,1,1,175,176],[290,3,2,176,178]]],[10,21,16,178,194,[[293,1,1,178,179],[294,4,2,179,181],[295,6,5,181,186],[297,1,1,186,187],[298,2,1,187,188],[300,2,1,188,189],[302,1,1,189,190],[309,1,1,190,191],[310,3,3,191,194]]],[11,11,9,194,203,[[315,2,1,194,195],[317,1,1,195,196],[325,1,1,196,197],[326,1,1,197,198],[327,1,1,198,199],[330,1,1,199,200],[331,1,1,200,201],[336,3,2,201,203]]],[12,81,60,203,263,[[342,5,2,203,205],[344,7,7,205,212],[346,1,1,212,213],[349,15,14,213,227],[350,1,1,227,228],[352,1,1,228,229],[353,1,1,229,230],[355,5,3,230,233],[356,4,3,233,236],[358,5,2,236,238],[359,3,1,238,239],[360,5,3,239,242],[363,3,3,242,245],[364,14,13,245,258],[365,1,1,258,259],[366,10,4,259,263]]],[13,62,38,263,301,[[367,4,3,263,266],[368,12,4,266,270],[370,1,1,270,271],[373,2,1,271,272],[375,2,1,272,273],[377,1,1,273,274],[378,2,1,274,275],[379,3,2,275,277],[380,4,2,277,279],[381,1,1,279,280],[383,8,6,280,286],[391,6,5,286,291],[392,3,2,291,293],[393,2,1,293,294],[394,2,2,294,296],[395,1,1,296,297],[396,4,1,297,298],[401,4,3,298,301]]],[14,19,18,301,319,[[403,3,3,301,304],[404,15,14,304,318],[410,1,1,318,319]]],[15,17,17,319,336,[[415,1,1,319,320],[419,16,16,320,336]]],[16,2,2,336,338,[[428,1,1,336,337],[434,1,1,337,338]]],[17,8,4,338,342,[[436,2,1,338,339],[444,1,1,339,340],[468,1,1,340,341],[477,4,1,341,342]]],[18,7,7,342,349,[[527,1,1,342,343],[545,1,1,343,344],[561,1,1,344,345],[567,1,1,345,346],[568,1,1,346,347],[582,1,1,347,348],[596,1,1,348,349]]],[20,2,2,349,351,[[664,1,1,349,350],[665,1,1,350,351]]],[21,3,3,351,354,[[674,1,1,351,352],[678,2,2,352,354]]],[22,6,5,354,359,[[685,2,1,354,355],[708,1,1,355,356],[714,1,1,356,357],[715,1,1,357,358],[738,1,1,358,359]]],[23,3,3,359,362,[[776,1,1,359,360],[796,2,2,360,362]]],[25,40,21,362,383,[[846,8,4,362,366],[848,4,3,366,369],[849,28,14,369,383]]],[26,3,3,383,386,[[857,1,1,383,384],[861,2,2,384,386]]],[29,1,1,386,387,[[883,1,1,386,387]]],[32,2,2,387,389,[[897,1,1,387,388],[898,1,1,388,389]]]],[511,651,1853,2020,2024,2057,2466,2503,2658,2659,2661,2662,3620,3625,3627,3629,3631,3633,3635,3637,3639,3641,3643,3645,3647,3650,3662,3664,3666,3667,3669,3671,3673,3674,3677,3679,3681,3682,3684,3686,3688,3689,3690,3714,3720,3726,3731,3735,3742,3779,3783,3787,3791,3935,3992,4024,4045,4243,4480,4496,4503,4507,4511,4514,4516,4523,4526,4530,4532,4536,4539,4540,4551,4668,4669,4670,4678,4696,4697,4698,4699,4700,4702,4703,4704,4707,4708,4709,4710,4712,4716,4718,4849,4850,4903,4907,5063,5120,5788,5827,5897,5923,5979,5980,6005,6014,6027,6440,6447,6456,6470,6513,6597,6605,6609,6613,6631,6697,6729,6745,6803,6875,6940,6944,6945,6954,6976,6982,6983,7056,7064,7069,7071,7075,7079,7088,7089,7098,7099,7100,7112,7299,7307,7350,7381,7437,7453,7487,7490,7564,7623,7636,7683,7684,7689,7783,7794,7833,7841,7863,7907,7969,7972,8158,8213,8214,8222,8246,8258,8450,8479,8481,8482,8485,8490,8528,8701,8707,8820,8870,8876,8889,8891,8892,8893,8894,8960,9048,9105,9172,9405,9423,9437,9438,9580,9652,9878,9903,9944,10047,10096,10216,10218,10446,10449,10537,10539,10540,10542,10544,10546,10575,10628,10734,10740,10744,10745,10746,10747,10749,10750,10751,10753,10754,10755,10756,10757,10761,10816,10835,10894,10895,10902,10913,10914,10925,10939,10948,10978,10986,10987,10988,11103,11107,11109,11110,11111,11113,11114,11116,11117,11118,11119,11120,11121,11122,11123,11124,11144,11168,11170,11171,11185,11196,11200,11208,11213,11221,11228,11229,11251,11329,11389,11415,11440,11456,11470,11483,11484,11501,11534,11537,11538,11539,11540,11541,11709,11710,11715,11716,11717,11744,11745,11760,11770,11772,11824,11851,11973,11974,11975,12025,12026,12027,12030,12033,12034,12039,12041,12058,12062,12064,12065,12066,12091,12092,12094,12096,12228,12340,12428,12431,12432,12437,12439,12454,12458,12460,12461,12462,12486,12487,12489,12490,12491,12492,12756,12850,12872,13054,13673,13934,14678,14917,15269,15382,15402,15614,15970,17423,17457,17586,17651,17652,17805,18234,18338,18388,18843,19749,20304,20306,21631,21633,21635,21636,21682,21683,21684,21710,21711,21712,21715,21717,21718,21720,21722,21723,21732,21734,21735,21736,21737,21975,22092,22093,22426,22635,22655]]],["+",[13,12,[[3,3,2,0,2,[[147,3,2,0,2]]],[6,3,3,2,5,[[226,1,1,2,3],[227,2,2,3,5]]],[8,1,1,5,6,[[250,1,1,5,6]]],[12,1,1,6,7,[[366,1,1,6,7]]],[13,2,2,7,9,[[368,1,1,7,8],[378,1,1,8,9]]],[18,2,2,9,11,[[561,1,1,9,10],[596,1,1,10,11]]],[20,1,1,11,12,[[665,1,1,11,12]]]],[4668,4669,6954,6982,6983,7564,11171,11213,11440,15269,15970,17457]]],["thousand",[445,343,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,7,6,1,7,[[61,1,1,1,2],[81,1,1,2,3],[87,5,4,3,7]]],[3,92,75,7,82,[[117,14,13,7,20],[118,23,17,20,37],[119,6,6,37,43],[120,4,4,43,47],[123,1,1,47,48],[127,1,1,48,49],[132,1,1,49,50],[141,1,1,50,51],[142,15,14,51,65],[147,21,15,65,80],[151,5,2,80,82]]],[4,3,3,82,85,[[153,1,1,82,83],[159,1,1,83,84],[184,1,1,84,85]]],[5,8,8,85,93,[[189,1,1,85,86],[190,1,1,86,87],[193,2,2,87,89],[194,3,3,89,92],[209,1,1,92,93]]],[6,31,27,93,120,[[211,1,1,93,94],[213,1,1,94,95],[214,3,3,95,98],[215,1,1,98,99],[217,2,1,99,100],[218,3,2,100,102],[219,1,1,102,103],[222,1,1,103,104],[225,3,3,104,107],[226,1,1,107,108],[230,13,11,108,119],[231,1,1,119,120]]],[8,18,13,120,133,[[239,2,2,120,122],[241,1,1,122,123],[246,2,1,123,124],[248,5,2,124,126],[250,1,1,126,127],[252,2,2,127,129],[253,1,1,129,130],[259,1,1,130,131],[260,2,1,131,132],[261,1,1,132,133]]],[9,17,13,133,146,[[272,1,1,133,134],[274,4,3,134,137],[276,4,2,137,139],[283,1,1,139,140],[284,3,3,140,143],[285,1,1,143,144],[290,3,2,144,146]]],[10,21,16,146,162,[[293,1,1,146,147],[294,4,2,147,149],[295,6,5,149,154],[297,1,1,154,155],[298,2,1,155,156],[300,2,1,156,157],[302,1,1,157,158],[309,1,1,158,159],[310,3,3,159,162]]],[11,11,9,162,171,[[315,2,1,162,163],[317,1,1,163,164],[325,1,1,164,165],[326,1,1,165,166],[327,1,1,166,167],[330,1,1,167,168],[331,1,1,168,169],[336,3,2,169,171]]],[12,73,54,171,225,[[342,5,2,171,173],[344,7,7,173,180],[346,1,1,180,181],[349,14,13,181,194],[353,1,1,194,195],[355,5,3,195,198],[356,4,3,198,201],[358,5,2,201,203],[359,3,1,203,204],[360,5,3,204,207],[363,2,2,207,209],[364,13,13,209,222],[366,8,3,222,225]]],[13,57,37,225,262,[[367,3,2,225,227],[368,11,4,227,231],[370,1,1,231,232],[373,2,1,232,233],[375,2,1,233,234],[377,1,1,234,235],[378,1,1,235,236],[379,3,2,236,238],[380,4,2,238,240],[381,1,1,240,241],[383,7,6,241,247],[391,5,5,247,252],[392,3,2,252,254],[393,2,1,254,255],[394,2,2,255,257],[395,1,1,257,258],[396,4,1,258,259],[401,4,3,259,262]]],[14,19,18,262,280,[[403,3,3,262,265],[404,15,14,265,279],[410,1,1,279,280]]],[15,17,17,280,297,[[415,1,1,280,281],[419,16,16,281,297]]],[16,2,2,297,299,[[428,1,1,297,298],[434,1,1,298,299]]],[17,8,4,299,303,[[436,2,1,299,300],[444,1,1,300,301],[468,1,1,301,302],[477,4,1,302,303]]],[18,4,4,303,307,[[527,1,1,303,304],[567,1,1,304,305],[568,1,1,305,306],[582,1,1,306,307]]],[20,1,1,307,308,[[664,1,1,307,308]]],[21,3,3,308,311,[[674,1,1,308,309],[678,2,2,309,311]]],[22,6,5,311,316,[[685,2,1,311,312],[708,1,1,312,313],[714,1,1,313,314],[715,1,1,314,315],[738,1,1,315,316]]],[23,2,2,316,318,[[796,2,2,316,318]]],[25,40,21,318,339,[[846,8,4,318,322],[848,4,3,322,325],[849,28,14,325,339]]],[26,3,3,339,342,[[857,1,1,339,340],[861,2,2,340,342]]],[29,1,1,342,343,[[883,1,1,342,343]]]],[511,1853,2466,2658,2659,2661,2662,3625,3627,3629,3631,3633,3635,3637,3639,3641,3643,3645,3647,3650,3662,3664,3666,3667,3669,3671,3673,3674,3677,3679,3681,3682,3684,3686,3688,3689,3690,3714,3720,3726,3731,3735,3742,3779,3783,3787,3791,3935,4045,4243,4480,4496,4503,4507,4511,4514,4516,4523,4526,4530,4532,4536,4539,4540,4551,4669,4670,4696,4697,4698,4699,4700,4702,4703,4704,4707,4708,4709,4710,4716,4849,4850,4903,5120,5788,5897,5923,5979,5980,6005,6014,6027,6470,6513,6597,6605,6609,6613,6631,6697,6729,6745,6803,6875,6940,6944,6945,6976,7056,7064,7069,7071,7075,7079,7088,7089,7098,7099,7100,7112,7299,7307,7350,7453,7487,7490,7564,7623,7636,7689,7841,7863,7907,8158,8213,8214,8222,8246,8258,8450,8481,8485,8490,8528,8701,8707,8820,8870,8876,8889,8891,8892,8893,8894,8960,9048,9105,9172,9405,9423,9437,9438,9580,9652,9878,9903,9944,10047,10096,10216,10218,10446,10449,10537,10539,10540,10542,10544,10546,10575,10628,10734,10744,10745,10746,10747,10749,10750,10751,10753,10754,10755,10756,10757,10835,10894,10895,10902,10913,10914,10925,10939,10948,10978,10986,10987,10988,11107,11109,11110,11111,11113,11114,11116,11117,11118,11119,11120,11121,11122,11123,11124,11168,11171,11185,11200,11208,11213,11221,11228,11229,11251,11329,11389,11415,11440,11456,11470,11483,11484,11501,11534,11537,11538,11539,11540,11541,11709,11710,11715,11716,11717,11744,11745,11760,11770,11772,11824,11851,11973,11974,11975,12025,12026,12027,12030,12033,12034,12039,12041,12058,12062,12064,12065,12066,12091,12092,12094,12096,12228,12340,12428,12431,12432,12437,12439,12454,12458,12460,12461,12462,12486,12487,12489,12490,12491,12492,12756,12850,12872,13054,13673,13934,14678,15382,15402,15614,17423,17586,17651,17652,17805,18234,18338,18388,18843,20304,20306,21631,21633,21635,21636,21682,21683,21684,21710,21711,21712,21715,21717,21718,21720,21722,21723,21732,21734,21735,21736,21737,21975,22092,22093,22426]]],["thousands",[44,43,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,4,4,1,5,[[67,2,2,1,3],[69,1,1,3,4],[83,1,1,4,5]]],[3,8,7,5,12,[[117,1,1,5,6],[126,2,2,6,8],[147,5,4,8,12]]],[4,3,3,12,15,[[153,1,1,12,13],[157,1,1,13,14],[185,1,1,14,15]]],[5,3,3,15,18,[[208,3,3,15,18]]],[8,9,9,18,27,[[243,1,1,18,19],[245,1,1,19,20],[253,2,2,20,22],[256,1,1,22,23],[257,1,1,23,24],[258,1,1,24,25],[264,2,2,25,27]]],[9,2,2,27,29,[[284,2,2,27,29]]],[12,7,7,29,36,[[349,1,1,29,30],[350,1,1,30,31],[352,1,1,31,32],[363,1,1,32,33],[364,1,1,33,34],[365,1,1,34,35],[366,1,1,35,36]]],[13,3,3,36,39,[[367,1,1,36,37],[383,1,1,37,38],[391,1,1,38,39]]],[18,1,1,39,40,[[545,1,1,39,40]]],[23,1,1,40,41,[[776,1,1,40,41]]],[32,2,2,41,43,[[897,1,1,41,42],[898,1,1,42,43]]]],[651,2020,2024,2057,2503,3620,3992,4024,4678,4712,4716,4718,4907,5063,5827,6440,6447,6456,7381,7437,7683,7684,7783,7794,7833,7969,7972,8479,8482,10740,10761,10816,11103,11110,11144,11170,11196,11537,11709,14917,19749,22635,22655]]],["two",[1,1,[[5,1,1,0,1,[[193,1,1,0,1]]]],[5979]]]]},{"k":"H506","v":[["*",[4,2,[[26,4,2,0,2,[[854,2,1,0,1],[856,2,1,1,2]]]],[21875,21943]]],["thousand",[3,2,[[26,3,2,0,2,[[854,2,1,0,1],[856,1,1,1,2]]]],[21875,21943]]],["thousands",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21943]]]]},{"k":"H507","v":[["Eleph",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6321]]]]},{"k":"H508","v":[["Elpaal",[3,3,[[12,3,3,0,3,[[345,3,3,0,3]]]],[10586,10587,10593]]]]},{"k":"H509","v":[["urged",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6965]]]]},{"k":"H510","v":[["up",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17282]]]]},{"k":"H511","v":[["Elkanah",[21,20,[[1,1,1,0,1,[[55,1,1,0,1]]],[8,8,8,1,9,[[236,6,6,1,7],[237,2,2,7,9]]],[12,11,10,9,19,[[343,8,7,9,16],[346,1,1,16,17],[349,1,1,17,18],[352,1,1,18,19]]],[13,1,1,19,20,[[394,1,1,19,20]]]],[1679,7213,7216,7220,7231,7233,7235,7251,7260,10477,10479,10480,10481,10488,10489,10490,10631,10726,10814,11771]]]]},{"k":"H512","v":[["Elkoshite",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22685]]]]},{"k":"H513","v":[["Eltolad",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]]],[6232,6325]]]]},{"k":"H514","v":[["Eltekeh",[2,2,[[5,2,2,0,2,[[205,1,1,0,1],[207,1,1,1,2]]]],[6365,6404]]]]},{"k":"H515","v":[["Eltekon",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6261]]]]},{"k":"H516","v":[]},{"k":"H517","v":[["*",[220,202,[[0,26,21,0,21,[[1,1,1,0,1],[2,1,1,1,2],[19,1,1,2,3],[20,1,1,3,4],[23,5,4,4,8],[26,5,4,8,12],[27,4,3,12,15],[28,3,1,15,16],[29,1,1,16,17],[31,1,1,17,18],[36,1,1,18,19],[42,1,1,19,20],[43,1,1,20,21]]],[1,7,7,21,28,[[51,1,1,21,22],[69,1,1,22,23],[70,2,2,23,25],[71,1,1,25,26],[72,1,1,26,27],[83,1,1,27,28]]],[2,15,12,28,40,[[107,5,3,28,31],[108,1,1,31,32],[109,5,4,32,36],[110,2,2,36,38],[111,1,1,38,39],[113,1,1,39,40]]],[3,2,2,40,42,[[122,1,1,40,41],[128,1,1,41,42]]],[4,13,12,42,54,[[157,1,1,42,43],[165,1,1,43,44],[166,1,1,44,45],[173,3,3,45,48],[174,4,3,48,51],[179,2,2,51,53],[185,1,1,53,54]]],[5,3,3,54,57,[[188,2,2,54,56],[192,1,1,56,57]]],[6,20,16,57,73,[[215,2,2,57,59],[218,1,1,59,60],[219,3,2,60,62],[224,7,7,62,69],[226,1,1,69,70],[227,6,3,70,73]]],[7,2,2,73,75,[[232,1,1,73,74],[233,1,1,74,75]]],[8,4,4,75,79,[[237,1,1,75,76],[250,1,1,76,77],[255,1,1,77,78],[257,1,1,78,79]]],[9,3,3,79,82,[[283,1,1,79,80],[285,1,1,80,81],[286,1,1,81,82]]],[10,16,16,82,98,[[291,1,1,82,83],[292,4,4,83,87],[293,1,1,87,88],[301,1,1,88,89],[304,2,2,89,91],[305,3,3,91,94],[307,1,1,94,95],[309,1,1,95,96],[312,2,2,96,98]]],[11,22,22,98,120,[[315,2,2,98,100],[316,3,3,100,103],[320,1,1,103,104],[321,1,1,104,105],[323,1,1,105,106],[324,1,1,106,107],[326,1,1,107,108],[327,2,2,108,110],[330,1,1,110,111],[333,2,2,111,113],[334,1,1,113,114],[335,2,2,114,116],[336,4,4,116,120]]],[12,2,2,120,122,[[339,1,1,120,121],[341,1,1,121,122]]],[13,12,12,122,134,[[378,1,1,122,123],[379,1,1,123,124],[381,1,1,124,125],[386,1,1,125,126],[388,3,3,126,129],[390,1,1,129,130],[391,1,1,130,131],[392,1,1,131,132],[393,1,1,132,133],[395,1,1,133,134]]],[16,2,1,134,135,[[427,2,1,134,135]]],[17,3,3,135,138,[[436,1,1,135,136],[452,1,1,136,137],[466,1,1,137,138]]],[18,12,12,138,150,[[499,2,2,138,140],[504,1,1,140,141],[512,1,1,141,142],[527,1,1,142,143],[528,1,1,143,144],[546,1,1,144,145],[548,1,1,145,146],[586,1,1,146,147],[590,1,1,147,148],[608,1,1,148,149],[616,1,1,149,150]]],[19,14,14,150,164,[[628,1,1,150,151],[631,1,1,151,152],[633,1,1,152,153],[637,1,1,153,154],[642,1,1,154,155],[646,1,1,155,156],[647,1,1,156,157],[650,2,2,157,159],[655,1,1,159,160],[656,1,1,160,161],[657,2,2,161,163],[658,1,1,163,164]]],[20,1,1,164,165,[[663,1,1,164,165]]],[21,7,7,165,172,[[671,1,1,165,166],[673,2,2,166,168],[676,1,1,168,169],[678,3,3,169,172]]],[22,5,4,172,176,[[686,1,1,172,173],[727,1,1,173,174],[728,2,1,174,175],[744,1,1,175,176]]],[23,9,9,176,185,[[759,2,2,176,178],[760,2,2,178,180],[764,2,2,180,182],[766,1,1,182,183],[794,1,1,183,184],[796,1,1,184,185]]],[24,3,2,185,187,[[798,2,1,185,186],[801,1,1,186,187]]],[25,10,9,187,196,[[817,4,3,187,190],[820,2,2,190,192],[822,1,1,192,193],[823,1,1,193,194],[824,1,1,194,195],[845,1,1,195,196]]],[27,4,4,196,200,[[863,2,2,196,198],[865,1,1,198,199],[871,1,1,199,200]]],[32,1,1,200,201,[[899,1,1,200,201]]],[37,2,1,201,202,[[923,2,1,201,202]]]],[54,75,507,534,619,644,646,658,738,740,741,756,775,778,780,805,844,939,1093,1319,1344,1562,2063,2092,2094,2143,2163,2522,3258,3260,3264,3284,3327,3332,3335,3337,3347,3356,3396,3457,3830,4071,5069,5278,5311,5460,5465,5466,5476,5477,5485,5601,5607,5819,5882,5887,5972,6630,6651,6738,6755,6757,6911,6912,6913,6914,6915,6918,6925,6966,6982,6983,6984,7135,7160,7259,7593,7760,7790,8474,8548,8573,8728,8783,8789,8790,8792,8843,9134,9239,9249,9251,9259,9262,9340,9407,9522,9532,9578,9589,9622,9623,9633,9753,9778,9830,9851,9898,9927,9958,10026,10120,10138,10146,10196,10201,10210,10214,10217,10220,10332,10394,11450,11455,11506,11618,11646,11647,11654,11678,11705,11735,11756,11792,12731,12890,13274,13606,14213,14214,14295,14424,14688,14696,14943,14982,15769,15822,16150,16252,16408,16493,16560,16657,16827,16951,16974,17066,17069,17220,17239,17262,17268,17285,17412,17543,17575,17582,17623,17641,17642,17645,17811,18637,18663,18935,19323,19325,19339,19343,19436,19439,19480,20178,20277,20344,20445,20765,20806,20807,20883,20891,20965,20983,21009,21624,22107,22110,22138,22239,22670,23062]]],["+",[3,3,[[6,1,1,0,1,[[224,1,1,0,1]]],[17,1,1,1,2,[[436,1,1,1,2]]],[22,1,1,2,3,[[686,1,1,2,3]]]],[6915,12890,17811]]],["dam",[5,4,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,1,1,1,2,[[111,1,1,1,2]]],[4,3,2,2,4,[[174,3,2,2,4]]]],[2143,3396,5476,5477]]],["mother",[141,133,[[0,17,16,0,16,[[1,1,1,0,1],[2,1,1,1,2],[19,1,1,2,3],[20,1,1,3,4],[23,3,3,4,7],[26,4,3,7,10],[27,2,2,10,12],[29,1,1,12,13],[31,1,1,13,14],[36,1,1,14,15],[43,1,1,15,16]]],[1,4,4,16,20,[[51,1,1,16,17],[69,1,1,17,18],[70,2,2,18,20]]],[2,9,7,20,27,[[107,3,2,20,22],[108,1,1,22,23],[109,3,2,23,25],[110,2,2,25,27]]],[3,1,1,27,28,[[122,1,1,27,28]]],[4,9,9,28,37,[[157,1,1,28,29],[165,1,1,29,30],[173,3,3,30,33],[174,1,1,33,34],[179,2,2,34,36],[185,1,1,36,37]]],[5,3,3,37,40,[[188,2,2,37,39],[192,1,1,39,40]]],[6,15,12,40,52,[[215,2,2,40,42],[218,1,1,42,43],[224,6,6,43,49],[227,6,3,49,52]]],[7,1,1,52,53,[[233,1,1,52,53]]],[8,3,3,53,56,[[237,1,1,53,54],[250,1,1,54,55],[257,1,1,55,56]]],[9,3,3,56,59,[[283,1,1,56,57],[285,1,1,57,58],[286,1,1,58,59]]],[10,10,10,59,69,[[291,1,1,59,60],[292,4,4,60,64],[293,1,1,64,65],[305,1,1,65,66],[307,1,1,66,67],[309,1,1,67,68],[312,1,1,68,69]]],[11,9,9,69,78,[[315,2,2,69,71],[316,3,3,71,74],[321,1,1,74,75],[323,1,1,75,76],[336,2,2,76,78]]],[12,2,2,78,80,[[339,1,1,78,79],[341,1,1,79,80]]],[13,3,3,80,83,[[381,1,1,80,81],[388,2,2,81,83]]],[16,2,1,83,84,[[427,2,1,83,84]]],[17,1,1,84,85,[[452,1,1,84,85]]],[18,6,6,85,91,[[504,1,1,85,86],[512,1,1,86,87],[528,1,1,87,88],[586,1,1,88,89],[590,1,1,89,90],[608,1,1,90,91]]],[19,14,14,91,105,[[628,1,1,91,92],[631,1,1,92,93],[633,1,1,93,94],[637,1,1,94,95],[642,1,1,95,96],[646,1,1,96,97],[647,1,1,97,98],[650,2,2,98,100],[655,1,1,100,101],[656,1,1,101,102],[657,2,2,102,104],[658,1,1,104,105]]],[21,4,4,105,109,[[673,1,1,105,106],[676,1,1,106,107],[678,2,2,107,109]]],[22,3,3,109,112,[[727,1,1,109,110],[728,1,1,110,111],[744,1,1,111,112]]],[23,7,7,112,119,[[759,2,2,112,114],[760,1,1,114,115],[764,2,2,115,117],[766,1,1,117,118],[794,1,1,118,119]]],[25,8,8,119,127,[[817,3,3,119,122],[820,2,2,122,124],[823,1,1,124,125],[824,1,1,125,126],[845,1,1,126,127]]],[27,4,4,127,131,[[863,2,2,127,129],[865,1,1,129,130],[871,1,1,130,131]]],[32,1,1,131,132,[[899,1,1,131,132]]],[37,2,1,132,133,[[923,2,1,132,133]]]],[54,75,507,534,644,646,658,738,740,741,778,780,844,939,1093,1344,1562,2063,2092,2094,3258,3260,3284,3327,3332,3347,3356,3830,5069,5278,5460,5465,5466,5485,5601,5607,5819,5882,5887,5972,6630,6651,6738,6911,6912,6913,6914,6918,6925,6982,6983,6984,7160,7259,7593,7790,8474,8548,8573,8728,8783,8789,8790,8792,8843,9262,9340,9407,9532,9578,9589,9622,9623,9633,9778,9830,10214,10217,10332,10394,11506,11647,11654,12731,13274,14295,14424,14696,15769,15822,16150,16408,16493,16560,16657,16827,16951,16974,17066,17069,17220,17239,17262,17268,17285,17582,17623,17641,17645,18637,18663,18935,19323,19325,19343,19436,19439,19480,20178,20765,20806,20807,20883,20891,20983,21009,21624,22107,22110,22138,22239,22670,23062]]],["mother's",[66,61,[[0,9,6,0,6,[[23,2,2,0,2],[26,1,1,2,3],[27,2,1,3,4],[28,3,1,4,5],[42,1,1,5,6]]],[1,2,2,6,8,[[72,1,1,6,7],[83,1,1,7,8]]],[2,5,4,8,12,[[107,2,1,8,9],[109,2,2,9,11],[113,1,1,11,12]]],[3,1,1,12,13,[[128,1,1,12,13]]],[4,1,1,13,14,[[166,1,1,13,14]]],[6,4,3,14,17,[[219,3,2,14,16],[226,1,1,16,17]]],[7,1,1,17,18,[[232,1,1,17,18]]],[8,1,1,18,19,[[255,1,1,18,19]]],[10,6,6,19,25,[[301,1,1,19,20],[304,2,2,20,22],[305,2,2,22,24],[312,1,1,24,25]]],[11,13,13,25,38,[[320,1,1,25,26],[324,1,1,26,27],[326,1,1,27,28],[327,2,2,28,30],[330,1,1,30,31],[333,2,2,31,33],[334,1,1,33,34],[335,2,2,34,36],[336,2,2,36,38]]],[13,9,9,38,47,[[378,1,1,38,39],[379,1,1,39,40],[386,1,1,40,41],[388,1,1,41,42],[390,1,1,42,43],[391,1,1,43,44],[392,1,1,44,45],[393,1,1,45,46],[395,1,1,46,47]]],[17,1,1,47,48,[[466,1,1,47,48]]],[18,6,6,48,54,[[499,2,2,48,50],[527,1,1,50,51],[546,1,1,51,52],[548,1,1,52,53],[616,1,1,53,54]]],[20,1,1,54,55,[[663,1,1,54,55]]],[21,3,3,55,58,[[671,1,1,55,56],[673,1,1,56,57],[678,1,1,57,58]]],[22,1,1,58,59,[[728,1,1,58,59]]],[23,1,1,59,60,[[796,1,1,59,60]]],[25,1,1,60,61,[[817,1,1,60,61]]]],[619,658,756,775,805,1319,2163,2522,3264,3335,3337,3457,4071,5311,6755,6757,6966,7135,7760,9134,9239,9249,9251,9259,9522,9753,9851,9898,9927,9958,10026,10120,10138,10146,10196,10201,10210,10220,11450,11455,11618,11646,11678,11705,11735,11756,11792,13606,14213,14214,14688,14943,14982,16252,17412,17543,17575,17642,18663,20277,20807]]],["mothers",[3,3,[[23,1,1,0,1,[[760,1,1,0,1]]],[24,2,2,1,3,[[798,1,1,1,2],[801,1,1,2,3]]]],[19339,20344,20445]]],["mothers'",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20344]]],["parting",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20965]]]]},{"k":"H518","v":[["*",[999,871,[[0,72,64,0,64,[[3,2,1,0,1],[12,3,2,1,3],[13,2,1,3,4],[14,2,2,4,6],[17,5,5,6,11],[19,1,1,11,12],[22,2,2,12,14],[23,9,8,14,22],[24,1,1,22,23],[25,1,1,23,24],[26,2,2,24,26],[27,3,3,26,29],[29,3,3,29,32],[30,6,3,32,35],[31,3,3,35,38],[32,1,1,38,39],[33,2,2,39,41],[34,1,1,41,42],[36,2,2,42,44],[37,1,1,44,45],[38,2,2,45,47],[39,1,1,47,48],[41,4,4,48,52],[42,4,4,52,56],[43,3,3,56,59],[46,5,4,59,63],[49,1,1,63,64]]],[1,59,52,64,116,[[50,2,1,64,65],[53,2,2,65,67],[57,2,2,67,69],[58,1,1,69,70],[59,1,1,70,71],[61,2,2,71,73],[62,1,1,73,74],[64,1,1,74,75],[65,1,1,75,76],[66,1,1,76,77],[67,1,1,77,78],[68,3,2,78,80],[69,1,1,80,81],[70,15,14,81,95],[71,16,13,95,108],[72,1,1,108,109],[78,1,1,109,110],[81,2,1,110,111],[82,2,2,111,113],[83,2,2,113,115],[89,1,1,115,116]]],[2,90,82,116,198,[[90,3,3,116,119],[91,3,3,119,122],[92,7,4,122,126],[93,4,4,126,130],[94,4,4,130,134],[95,1,1,134,135],[96,3,3,135,138],[101,2,2,138,140],[102,14,14,140,154],[103,3,3,154,157],[104,3,3,157,160],[106,1,1,160,161],[108,1,1,161,162],[109,1,1,162,163],[110,2,2,163,165],[111,1,1,165,166],[114,5,5,166,171],[115,8,7,171,178],[116,24,20,178,198]]],[3,63,57,198,255,[[121,5,4,198,202],[126,2,2,202,204],[127,4,3,204,207],[128,1,1,207,208],[129,5,3,208,211],[130,5,4,211,215],[131,2,2,215,217],[132,2,2,217,219],[135,1,1,219,220],[136,1,1,220,221],[137,2,2,221,223],[138,3,3,223,226],[140,2,2,226,228],[142,2,2,228,230],[143,3,3,230,233],[146,7,7,233,240],[148,8,7,240,247],[149,1,1,247,248],[151,6,6,248,254],[152,1,1,254,255]]],[4,34,33,255,288,[[153,1,1,255,256],[157,1,1,256,257],[159,1,1,257,258],[160,2,2,258,260],[162,1,1,260,261],[163,3,3,261,264],[164,3,3,264,267],[167,1,1,267,268],[168,1,1,268,269],[170,2,1,269,270],[171,1,1,270,271],[172,2,2,271,273],[173,1,1,273,274],[174,3,3,274,277],[176,2,2,277,279],[177,2,2,279,281],[180,3,3,281,284],[182,2,2,284,286],[184,2,2,286,288]]],[5,20,16,288,304,[[188,3,3,288,291],[191,1,1,291,292],[193,1,1,292,293],[200,2,2,293,295],[203,2,2,295,297],[208,6,4,297,301],[209,2,2,301,303],[210,3,1,303,304]]],[6,34,29,304,333,[[212,1,1,304,305],[214,3,2,305,307],[216,5,5,307,312],[217,2,2,312,314],[219,7,5,314,319],[221,4,4,319,323],[223,2,1,323,324],[224,2,2,324,326],[225,2,1,326,327],[226,4,4,327,331],[230,1,1,331,332],[231,1,1,332,333]]],[7,9,6,333,339,[[233,1,1,333,334],[234,6,4,334,338],[235,2,1,338,339]]],[8,56,48,339,387,[[236,1,1,339,340],[237,4,3,340,343],[238,3,3,343,346],[241,3,2,346,348],[242,1,1,348,349],[243,1,1,349,350],[246,1,1,350,351],[247,3,3,351,354],[249,4,4,354,358],[250,1,1,358,359],[252,3,2,359,361],[254,2,2,361,363],[255,9,8,363,371],[256,5,4,371,375],[258,1,1,375,376],[259,3,2,376,378],[260,2,2,378,380],[261,3,2,380,382],[262,1,1,382,383],[263,1,1,383,384],[265,4,3,384,387]]],[9,36,29,387,416,[[269,2,2,387,389],[271,1,1,389,390],[276,2,1,390,391],[277,1,1,391,392],[278,2,2,392,394],[279,1,1,394,395],[280,3,3,395,398],[281,8,6,398,404],[283,2,2,404,406],[284,3,2,406,408],[285,6,5,408,413],[286,2,1,413,414],[287,1,1,414,415],[290,2,1,415,416]]],[10,38,33,416,449,[[291,3,2,416,418],[292,2,2,418,420],[293,1,1,420,421],[296,1,1,421,422],[298,2,2,422,424],[299,2,2,424,426],[301,1,1,426,427],[302,2,2,427,429],[303,1,1,429,430],[307,4,2,430,432],[308,4,3,432,435],[310,7,6,435,441],[311,2,2,441,443],[312,6,6,443,449]]],[11,38,34,449,483,[[313,3,3,449,452],[314,5,4,452,456],[315,1,1,456,457],[316,3,3,457,460],[317,3,3,460,463],[318,1,1,463,464],[319,5,2,464,466],[321,3,3,466,469],[322,2,2,469,471],[325,1,1,471,472],[326,1,1,472,473],[329,3,3,473,476],[330,1,1,476,477],[331,1,1,477,478],[332,2,2,478,480],[333,1,1,480,481],[335,2,2,481,483]]],[12,16,11,483,494,[[339,1,1,483,484],[341,1,1,484,485],[349,2,1,485,486],[350,1,1,486,487],[352,1,1,487,488],[356,2,1,488,489],[358,3,1,489,490],[359,1,1,490,491],[360,1,1,491,492],[365,3,2,492,494]]],[13,20,19,494,513,[[368,1,1,494,495],[372,2,2,495,497],[373,3,3,497,500],[376,1,1,500,501],[381,2,1,501,502],[384,5,5,502,507],[386,1,1,507,508],[387,1,1,508,509],[389,1,1,509,510],[391,1,1,510,511],[396,1,1,511,512],[399,1,1,512,513]]],[14,1,1,513,514,[[404,1,1,513,514]]],[15,11,9,514,523,[[413,1,1,514,515],[414,5,4,515,519],[416,1,1,519,520],[419,1,1,520,521],[425,3,2,521,523]]],[16,16,12,523,535,[[426,1,1,523,524],[427,2,2,524,526],[428,1,1,526,527],[429,2,1,527,528],[430,4,3,528,531],[431,1,1,531,532],[432,2,1,532,533],[433,2,1,533,534],[434,1,1,534,535]]],[17,93,89,535,624,[[436,1,1,535,536],[437,1,1,536,537],[441,3,3,537,540],[442,2,2,540,542],[443,5,5,542,547],[444,10,9,547,556],[445,3,3,556,559],[446,4,4,559,563],[448,2,2,563,565],[449,4,4,565,569],[451,1,1,569,570],[452,2,2,570,572],[454,1,1,572,573],[455,2,2,573,575],[456,2,2,575,577],[457,3,3,577,580],[459,1,1,580,581],[462,5,4,581,585],[465,1,1,585,586],[466,17,17,586,603],[468,4,4,603,607],[469,3,3,607,610],[470,2,2,610,612],[471,4,4,612,616],[472,4,2,616,618],[473,2,2,618,620],[474,3,3,620,623],[477,1,1,623,624]]],[18,41,36,624,660,[[478,2,2,624,626],[484,4,3,626,629],[504,2,1,629,630],[518,1,1,630,631],[521,1,1,631,632],[527,2,2,632,634],[536,1,1,634,635],[540,1,1,635,636],[543,1,1,636,637],[545,1,1,637,638],[550,1,1,638,639],[555,1,1,639,640],[558,1,1,640,641],[566,3,3,641,644],[567,1,1,644,645],[571,1,1,645,646],[572,2,2,646,648],[604,2,1,648,649],[607,1,1,649,650],[608,1,1,650,651],[609,4,3,651,654],[614,3,2,654,656],[615,1,1,656,657],[616,3,3,657,660]]],[19,30,26,660,686,[[628,2,2,660,662],[629,3,3,662,665],[630,3,3,665,668],[631,3,2,668,670],[633,2,2,670,672],[636,1,1,672,673],[645,1,1,673,674],[646,1,1,674,675],[647,2,1,675,676],[649,1,1,676,677],[650,3,3,677,680],[651,2,2,680,682],[652,2,1,682,683],[654,2,2,683,685],[657,2,1,685,686]]],[20,21,17,686,703,[[661,1,1,686,687],[662,3,3,687,690],[663,4,3,690,693],[664,1,1,693,694],[666,2,2,694,696],[668,3,3,696,699],[669,5,3,699,702],[670,2,1,702,703]]],[21,10,7,703,710,[[671,1,1,703,704],[672,2,1,704,705],[673,2,1,705,706],[675,1,1,706,707],[677,1,1,707,708],[678,3,2,708,710]]],[22,32,30,710,740,[[679,4,3,710,713],[682,1,1,713,714],[683,1,1,714,715],[685,1,1,715,716],[686,1,1,716,717],[688,1,1,717,718],[692,1,1,718,719],[699,1,1,719,720],[700,1,1,720,721],[702,1,1,721,722],[706,1,1,722,723],[707,1,1,723,724],[708,1,1,724,725],[711,1,1,725,726],[714,1,1,726,727],[715,1,1,727,728],[720,1,1,728,729],[727,1,1,729,730],[728,1,1,730,731],[731,1,1,731,732],[733,2,2,732,734],[736,2,2,734,736],[737,1,1,736,737],[740,2,1,737,738],[743,2,2,738,740]]],[23,77,64,740,804,[[746,2,2,740,742],[747,1,1,742,743],[748,2,1,743,744],[749,4,3,744,747],[751,4,3,747,750],[753,1,1,750,751],[756,2,2,751,753],[757,1,1,753,754],[758,4,3,754,757],[759,5,3,757,760],[760,1,1,760,761],[761,2,2,761,763],[763,1,1,763,764],[764,1,1,764,765],[766,5,5,765,770],[767,4,4,770,774],[770,2,2,774,776],[771,2,1,776,777],[774,1,1,777,778],[775,3,3,778,781],[777,2,2,781,783],[781,1,1,783,784],[782,7,6,784,790],[783,1,1,790,791],[784,2,1,791,792],[786,6,5,792,797],[788,2,2,797,799],[792,1,1,799,800],[793,4,2,800,802],[794,2,1,802,803],[795,1,1,803,804]]],[24,3,3,804,807,[[797,1,1,804,805],[799,1,1,805,806],[801,1,1,806,807]]],[25,37,31,807,838,[[803,4,2,807,809],[804,3,2,809,811],[806,1,1,811,812],[813,1,1,812,813],[815,4,2,813,815],[816,1,1,815,816],[817,1,1,816,817],[818,2,2,817,819],[819,1,1,819,820],[821,4,4,820,824],[822,1,1,824,825],[823,1,1,825,826],[834,3,2,826,828],[835,1,1,828,829],[836,1,1,829,830],[837,3,3,830,833],[839,1,1,833,834],[844,1,1,834,835],[845,3,3,835,838]]],[26,1,1,838,839,[[859,1,1,838,839]]],[27,2,2,839,841,[[865,1,1,839,840],[870,1,1,840,841]]],[28,2,2,841,843,[[876,1,1,841,842],[878,1,1,842,843]]],[29,14,12,843,855,[[881,3,3,843,846],[883,1,1,846,847],[884,2,2,847,849],[885,1,1,849,850],[886,2,2,850,852],[887,5,3,852,855]]],[30,5,2,855,857,[[888,5,2,855,857]]],[32,2,2,857,859,[[897,1,1,857,858],[898,1,1,858,859]]],[33,2,2,859,861,[[900,1,1,859,860],[902,1,1,860,861]]],[34,1,1,861,862,[[904,1,1,861,862]]],[36,1,1,862,863,[[910,1,1,862,863]]],[37,7,5,863,868,[[913,2,1,863,864],[914,1,1,864,865],[916,1,1,865,866],[921,2,1,866,867],[924,1,1,867,868]]],[38,5,3,868,871,[[925,2,1,868,869],[926,2,1,869,870],[927,1,1,870,871]]]],[86,327,334,359,364,365,427,445,450,452,454,502,579,584,599,610,612,624,629,632,633,640,680,721,748,773,788,790,793,831,857,861,881,923,925,936,954,956,970,995,997,1021,1091,1115,1128,1155,1158,1186,1267,1268,1271,1289,1294,1295,1299,1301,1347,1350,1356,1426,1436,1438,1449,1510,1548,1609,1610,1712,1731,1744,1781,1820,1825,1880,1946,1951,1990,2022,2031,2039,2076,2080,2081,2082,2085,2086,2087,2088,2096,2098,2100,2104,2106,2107,2109,2115,2116,2117,2120,2121,2124,2125,2126,2128,2130,2136,2138,2139,2166,2370,2470,2486,2488,2505,2516,2744,2748,2755,2759,2767,2769,2776,2779,2784,2785,2790,2798,2808,2822,2827,2831,2837,2841,2847,2877,2891,2895,2897,3049,3052,3056,3059,3064,3073,3074,3075,3078,3079,3080,3087,3089,3105,3108,3109,3132,3154,3159,3191,3192,3196,3251,3288,3322,3347,3359,3375,3497,3499,3520,3521,3523,3527,3538,3539,3542,3545,3547,3551,3574,3575,3576,3577,3578,3579,3580,3581,3583,3585,3586,3587,3588,3589,3590,3592,3596,3597,3601,3603,3800,3811,3819,3820,3992,4018,4039,4046,4047,4065,4093,4094,4095,4116,4131,4138,4143,4177,4180,4223,4224,4301,4330,4342,4349,4393,4395,4409,4459,4468,4522,4554,4563,4564,4565,4653,4654,4656,4658,4660,4662,4663,4723,4729,4735,4738,4741,4747,4748,4815,4861,4862,4865,4867,4871,4878,4883,4927,5078,5116,5139,5156,5198,5221,5230,5236,5245,5254,5258,5324,5348,5387,5414,5438,5439,5461,5472,5490,5495,5526,5537,5549,5554,5612,5626,5669,5712,5725,5788,5799,5883,5888,5889,5947,5988,6191,6196,6278,6290,6445,6448,6449,6450,6468,6472,6491,6567,6607,6619,6657,6671,6685,6690,6691,6704,6708,6756,6769,6770,6773,6774,6838,6839,6854,6859,6900,6921,6922,6936,6956,6960,6962,6966,7082,7123,7170,7182,7184,7185,7190,7194,7223,7255,7256,7265,7285,7290,7293,7334,7340,7355,7388,7448,7474,7475,7485,7517,7518,7547,7553,7577,7627,7673,7712,7717,7736,7737,7738,7739,7744,7751,7752,7759,7776,7777,7778,7781,7833,7845,7860,7883,7895,7915,7924,7935,7952,7993,7995,8000,8094,8116,8138,8251,8279,8289,8294,8350,8367,8375,8388,8397,8410,8414,8415,8422,8423,8455,8462,8481,8503,8518,8524,8539,8546,8553,8574,8582,8705,8768,8769,8774,8778,8830,8908,9004,9010,9055,9057,9146,9158,9178,9192,9318,9329,9351,9359,9362,9414,9418,9426,9431,9433,9447,9453,9457,9486,9488,9495,9498,9508,9511,9535,9543,9545,9553,9555,9557,9561,9590,9605,9627,9633,9662,9664,9667,9705,9711,9717,9771,9782,9791,9799,9816,9878,9902,10019,10022,10023,10047,10079,10107,10117,10127,10174,10188,10340,10395,10737,10762,10793,10919,10946,10977,11005,11150,11152,11217,11304,11306,11337,11341,11343,11402,11492,11547,11556,11559,11569,11572,11596,11641,11662,11712,11836,11916,12086,12305,12309,12312,12314,12319,12362,12481,12692,12696,12721,12738,12739,12756,12776,12783,12787,12791,12806,12810,12822,12847,12880,12896,12983,12984,13006,13012,13020,13032,13033,13034,13035,13047,13054,13066,13067,13070,13071,13074,13075,13078,13081,13090,13100,13101,13110,13118,13121,13122,13162,13163,13186,13188,13189,13195,13244,13273,13276,13302,13332,13338,13359,13361,13392,13409,13412,13461,13485,13486,13495,13497,13581,13593,13595,13597,13601,13604,13607,13608,13609,13612,13613,13614,13617,13619,13621,13624,13626,13627,13655,13673,13682,13683,13697,13699,13715,13726,13727,13744,13747,13748,13765,13782,13789,13797,13811,13843,13844,13847,13930,13941,13943,13998,13999,14007,14288,14548,14591,14680,14686,14805,14845,14891,14913,15035,15147,15225,15356,15357,15361,15388,15449,15461,15465,16122,16143,16150,16154,16155,16163,16227,16228,16238,16247,16258,16263,16410,16411,16434,16436,16437,16479,16485,16489,16502,16506,16541,16568,16650,16903,16944,16965,17042,17046,17059,17062,17090,17093,17134,17191,17193,17283,17371,17391,17392,17393,17405,17408,17409,17420,17473,17475,17497,17503,17504,17516,17519,17521,17537,17545,17561,17576,17606,17639,17647,17649,17672,17673,17674,17737,17748,17791,17827,17872,17952,18047,18066,18108,18189,18209,18234,18300,18338,18371,18499,18660,18664,18721,18750,18751,18795,18799,18802,18862,18903,18915,18987,18993,19012,19028,19059,19060,19067,19124,19142,19151,19199,19265,19266,19283,19300,19311,19315,19316,19326,19334,19351,19381,19384,19413,19425,19458,19459,19460,19471,19478,19492,19506,19508,19522,19576,19587,19614,19673,19721,19727,19728,19795,19800,19884,19899,19901,19911,19912,19913,19916,19935,19945,19980,19981,19985,19988,19990,20024,20036,20107,20136,20147,20211,20226,20322,20386,20464,20497,20499,20508,20513,20557,20703,20747,20751,20757,20810,20841,20844,20852,20898,20926,20928,20934,20957,20990,21291,21307,21321,21350,21364,21366,21381,21444,21583,21609,21621,21624,22036,22148,22220,22293,22347,22398,22399,22402,22445,22452,22459,22466,22488,22492,22497,22498,22499,22514,22515,22641,22656,22696,22724,22751,22868,22919,22928,22962,23040,23086,23095,23105,23130]]],["+",[180,172,[[0,17,16,0,16,[[14,1,1,0,1],[23,3,3,1,4],[27,2,2,4,6],[31,2,2,6,8],[34,1,1,8,9],[38,2,2,9,11],[39,1,1,11,12],[41,2,2,12,14],[43,1,1,14,15],[46,2,1,15,16]]],[1,2,2,16,18,[[61,1,1,16,17],[71,1,1,17,18]]],[2,3,3,18,21,[[110,2,2,18,20],[111,1,1,20,21]]],[3,8,8,21,29,[[127,1,1,21,22],[130,2,2,22,24],[140,1,1,24,25],[142,2,2,25,27],[148,1,1,27,28],[151,1,1,28,29]]],[4,7,7,29,36,[[159,1,1,29,30],[162,1,1,30,31],[164,3,3,31,34],[168,1,1,34,35],[184,1,1,35,36]]],[5,7,6,36,42,[[193,1,1,36,37],[200,2,2,37,39],[203,1,1,39,40],[209,1,1,40,41],[210,2,1,41,42]]],[6,2,2,42,44,[[217,1,1,42,43],[225,1,1,43,44]]],[7,3,3,44,47,[[233,1,1,44,45],[234,2,2,45,47]]],[8,9,9,47,56,[[237,1,1,47,48],[243,1,1,48,49],[249,1,1,49,50],[256,3,3,50,53],[261,1,1,53,54],[265,2,2,54,56]]],[9,9,9,56,65,[[269,2,2,56,58],[271,1,1,58,59],[278,1,1,59,60],[279,1,1,60,61],[280,1,1,61,62],[281,1,1,62,63],[285,1,1,63,64],[287,1,1,64,65]]],[10,8,8,65,73,[[298,1,1,65,66],[307,2,2,66,68],[308,1,1,68,69],[310,1,1,69,70],[312,3,3,70,73]]],[11,17,17,73,90,[[316,2,2,73,75],[317,3,3,75,78],[319,1,1,78,79],[321,2,2,79,81],[322,1,1,81,82],[325,1,1,82,83],[326,1,1,83,84],[329,3,3,84,87],[331,1,1,87,88],[335,2,2,88,90]]],[12,3,3,90,93,[[339,1,1,90,91],[352,1,1,91,92],[360,1,1,92,93]]],[13,6,6,93,99,[[368,1,1,93,94],[384,2,2,94,96],[387,1,1,96,97],[389,1,1,97,98],[399,1,1,98,99]]],[15,2,2,99,101,[[414,2,2,99,101]]],[16,3,3,101,104,[[427,2,2,101,103],[430,1,1,103,104]]],[17,2,2,104,106,[[471,1,1,104,105],[477,1,1,105,106]]],[18,5,4,106,110,[[478,2,2,106,108],[604,2,1,108,109],[608,1,1,109,110]]],[19,3,2,110,112,[[631,2,1,110,111],[645,1,1,111,112]]],[20,2,2,112,114,[[663,1,1,112,113],[666,1,1,113,114]]],[21,2,2,114,116,[[672,1,1,114,115],[673,1,1,115,116]]],[22,11,11,116,127,[[683,1,1,116,117],[692,1,1,117,118],[708,1,1,118,119],[711,1,1,119,120],[715,1,1,120,121],[720,1,1,121,122],[733,2,2,122,124],[737,1,1,124,125],[743,2,2,125,127]]],[23,23,20,127,147,[[747,1,1,127,128],[751,2,2,128,130],[753,1,1,130,131],[759,2,1,131,132],[760,1,1,132,133],[763,1,1,133,134],[764,1,1,134,135],[766,3,3,135,138],[767,1,1,138,139],[775,1,1,139,140],[782,2,2,140,142],[783,1,1,142,143],[788,1,1,143,144],[793,2,1,144,145],[794,2,1,145,146],[795,1,1,146,147]]],[24,1,1,147,148,[[801,1,1,147,148]]],[25,17,16,148,164,[[804,1,1,148,149],[806,1,1,149,150],[813,1,1,150,151],[818,2,2,151,153],[821,1,1,153,154],[834,3,2,154,156],[835,1,1,156,157],[837,3,3,157,160],[839,1,1,160,161],[845,3,3,161,164]]],[26,1,1,164,165,[[859,1,1,164,165]]],[27,1,1,165,166,[[870,1,1,165,166]]],[29,4,4,166,170,[[881,2,2,166,168],[883,1,1,168,169],[886,1,1,169,170]]],[32,1,1,170,171,[[898,1,1,170,171]]],[37,1,1,171,172,[[914,1,1,171,172]]]],[364,610,624,629,788,790,954,956,1021,1155,1158,1186,1267,1268,1347,1438,1825,2121,3347,3359,3375,4046,4138,4143,4468,4522,4554,4735,4878,5116,5198,5245,5254,5258,5348,5788,5988,6191,6196,6278,6468,6491,6708,6936,7170,7184,7190,7255,7388,7547,7776,7777,7778,7915,7995,8000,8094,8116,8138,8289,8350,8375,8410,8539,8582,9004,9318,9329,9359,9433,9488,9498,9511,9605,9627,9662,9664,9667,9717,9782,9791,9816,9878,9902,10019,10022,10023,10079,10174,10188,10340,10793,11005,11217,11559,11572,11641,11662,11916,12309,12319,12738,12739,12791,13765,13930,13941,13943,16122,16150,16506,16903,17408,17473,17561,17576,17748,17952,18234,18300,18371,18499,18750,18751,18802,18903,18915,19012,19142,19151,19199,19326,19351,19413,19425,19460,19471,19478,19492,19721,19899,19901,19935,20024,20147,20211,20226,20464,20508,20557,20703,20841,20844,20928,21291,21307,21321,21364,21366,21381,21444,21609,21621,21624,22036,22220,22398,22402,22445,22492,22656,22928]]],["Can",[2,2,[[19,1,1,0,1,[[633,1,1,0,1]]],[23,1,1,1,2,[[767,1,1,1,2]]]],[16568,19508]]],["Doubtless",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4138]]],["Either",[1,1,[[12,1,1,0,1,[[358,1,1,0,1]]]],[10946]]],["For",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20107]]],["I",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[4018]]],["If",[208,208,[[0,16,16,0,16,[[3,1,1,0,1],[17,2,2,1,3],[22,1,1,3,4],[24,1,1,4,5],[27,1,1,5,6],[30,2,2,6,8],[31,1,1,8,9],[33,1,1,9,10],[41,1,1,10,11],[42,2,2,11,13],[43,1,1,13,14],[46,1,1,14,15],[49,1,1,15,16]]],[1,20,20,16,36,[[64,1,1,16,17],[67,1,1,17,18],[70,7,7,18,25],[71,9,9,25,34],[82,1,1,34,35],[83,1,1,35,36]]],[2,8,8,36,44,[[90,1,1,36,37],[92,1,1,37,38],[93,1,1,38,39],[96,1,1,39,40],[102,1,1,40,41],[114,1,1,41,42],[115,1,1,42,43],[116,1,1,43,44]]],[3,10,10,44,54,[[121,1,1,44,45],[128,1,1,45,46],[130,1,1,46,47],[132,1,1,47,48],[137,1,1,48,49],[138,2,2,49,51],[140,1,1,51,52],[148,2,2,52,54]]],[4,3,3,54,57,[[180,1,1,54,55],[182,1,1,55,56],[184,1,1,56,57]]],[5,1,1,57,58,[[203,1,1,57,58]]],[6,10,10,58,68,[[214,1,1,58,59],[216,2,2,59,61],[219,2,2,61,63],[221,2,2,63,65],[226,3,3,65,68]]],[7,1,1,68,69,[[235,1,1,68,69]]],[8,12,12,69,81,[[237,1,1,69,70],[241,1,1,70,71],[242,1,1,71,72],[247,1,1,72,73],[249,1,1,73,74],[252,1,1,74,75],[254,1,1,75,76],[255,3,3,76,79],[261,1,1,79,80],[262,1,1,80,81]]],[9,4,4,81,85,[[276,1,1,81,82],[281,2,2,82,84],[284,1,1,84,85]]],[10,6,6,85,91,[[291,1,1,85,86],[292,1,1,86,87],[302,2,2,87,89],[303,1,1,89,90],[312,1,1,90,91]]],[11,5,5,91,96,[[313,2,2,91,93],[319,1,1,93,94],[321,1,1,94,95],[322,1,1,95,96]]],[12,3,3,96,99,[[349,1,1,96,97],[350,1,1,97,98],[356,1,1,98,99]]],[13,4,4,99,103,[[372,1,1,99,100],[376,1,1,100,101],[384,1,1,101,102],[386,1,1,102,103]]],[15,2,2,103,105,[[414,2,2,103,105]]],[16,8,8,105,113,[[426,1,1,105,106],[428,1,1,106,107],[430,2,2,107,109],[431,1,1,109,110],[432,1,1,110,111],[433,1,1,111,112],[434,1,1,112,113]]],[17,46,46,113,159,[[443,4,4,113,117],[444,7,7,117,124],[445,2,2,124,126],[446,3,3,126,129],[449,1,1,129,130],[452,1,1,130,131],[454,1,1,131,132],[457,1,1,132,133],[462,1,1,133,134],[466,16,16,134,150],[468,4,4,150,154],[469,2,2,154,156],[470,2,2,156,158],[471,1,1,158,159]]],[18,13,13,159,172,[[484,2,2,159,161],[521,1,1,161,162],[527,1,1,162,163],[543,1,1,163,164],[550,1,1,164,165],[566,2,2,165,167],[607,1,1,167,168],[609,1,1,168,169],[614,2,2,169,171],[616,1,1,171,172]]],[19,7,7,172,179,[[628,1,1,172,173],[629,1,1,173,174],[636,1,1,174,175],[649,1,1,175,176],[651,1,1,176,177],[652,1,1,177,178],[657,1,1,178,179]]],[20,5,5,179,184,[[663,1,1,179,180],[664,1,1,180,181],[668,2,2,181,183],[669,1,1,183,184]]],[21,2,2,184,186,[[671,1,1,184,185],[678,1,1,185,186]]],[22,4,4,186,190,[[679,1,1,186,187],[685,1,1,187,188],[736,2,2,188,190]]],[23,13,13,190,203,[[748,1,1,190,191],[758,1,1,191,192],[759,1,1,192,193],[770,1,1,193,194],[775,2,2,194,196],[777,2,2,196,198],[782,1,1,198,199],[784,1,1,199,200],[786,2,2,200,202],[793,1,1,202,203]]],[30,1,1,203,204,[[888,1,1,203,204]]],[36,1,1,204,205,[[910,1,1,204,205]]],[37,2,2,205,207,[[913,1,1,205,206],[921,1,1,206,207]]],[38,1,1,207,208,[[926,1,1,207,208]]]],[86,450,452,579,680,793,881,923,936,995,1271,1294,1301,1356,1449,1510,1946,2022,2080,2081,2085,2087,2096,2107,2109,2115,2116,2117,2121,2126,2130,2136,2138,2139,2488,2505,2748,2785,2798,2891,3056,3520,3527,3587,3811,4065,4116,4223,4342,4393,4395,4459,4738,4747,5669,5712,5799,6290,6607,6671,6690,6769,6773,6838,6859,6956,6960,6962,7194,7265,7334,7355,7474,7517,7627,7717,7736,7737,7751,7924,7935,8251,8397,8422,8503,8769,8774,9158,9178,9192,9508,9543,9545,9711,9771,9799,10737,10762,10919,11304,11402,11569,11596,12312,12314,12721,12756,12783,12787,12806,12810,12822,12847,13033,13034,13035,13047,13054,13067,13070,13071,13074,13078,13081,13100,13101,13118,13121,13122,13195,13273,13302,13412,13495,13593,13595,13597,13601,13604,13607,13608,13609,13612,13613,13614,13617,13619,13621,13626,13627,13655,13673,13682,13683,13697,13699,13726,13727,13747,13999,14007,14591,14680,14891,15035,15356,15357,16143,16163,16227,16228,16247,16411,16437,16650,17042,17090,17134,17283,17405,17420,17497,17503,17516,17545,17649,17673,17791,18795,18799,19028,19311,19334,19576,19727,19728,19795,19800,19912,19945,19985,19990,20136,22515,22868,22919,23040,23105]]],["Seeing",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13186]]],["Surely",[11,11,[[3,2,2,0,2,[[130,1,1,0,1],[148,1,1,1,2]]],[4,1,1,2,3,[[153,1,1,2,3]]],[17,1,1,3,4,[[466,1,1,3,4]]],[18,2,2,4,6,[[609,1,1,4,5],[616,1,1,5,6]]],[19,1,1,6,7,[[630,1,1,6,7]]],[20,1,1,7,8,[[668,1,1,7,8]]],[22,2,2,8,10,[[700,1,1,8,9],[707,1,1,9,10]]],[29,1,1,10,11,[[886,1,1,10,11]]]],[4131,4729,4927,13624,16154,16258,16489,17504,18066,18209,22488]]],["That",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[721]]],["Though",[16,16,[[6,2,2,0,2,[[223,1,1,0,1],[225,1,1,1,2]]],[17,5,5,2,7,[[449,1,1,2,3],[451,1,1,3,4],[455,2,2,4,6],[462,1,1,6,7]]],[18,3,3,7,10,[[504,1,1,7,8],[545,1,1,8,9],[615,1,1,9,10]]],[19,1,1,10,11,[[654,1,1,10,11]]],[23,1,1,11,12,[[759,1,1,11,12]]],[27,1,1,12,13,[[865,1,1,12,13]]],[29,1,1,13,14,[[887,1,1,13,14]]],[30,1,1,14,15,[[888,1,1,14,15]]],[33,1,1,15,16,[[900,1,1,15,16]]]],[6900,6936,13189,13244,13332,13338,13497,14288,14913,16238,17191,19316,22148,22497,22514,22696]]],["When",[9,9,[[8,1,1,0,1,[[250,1,1,0,1]]],[17,1,1,1,2,[[442,1,1,1,2]]],[18,4,4,2,6,[[527,1,1,2,3],[540,1,1,3,4],[555,1,1,4,5],[571,1,1,5,6]]],[19,1,1,6,7,[[630,1,1,6,7]]],[22,2,2,7,9,[[682,1,1,7,8],[706,1,1,8,9]]]],[7577,13012,14686,14845,15147,15449,16479,17737,18189]]],["Whereas",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13409]]],["Whether",[2,2,[[10,1,1,0,1,[[310,1,1,0,1]]],[23,1,1,1,2,[[786,1,1,1,2]]]],[9426,19981]]],["about",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9414]]],["and",[3,3,[[17,2,2,0,2,[[436,1,1,0,1],[437,1,1,1,2]]],[23,1,1,2,3,[[749,1,1,2,3]]]],[12880,12896,19067]]],["but",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17371]]],["can",[2,1,[[9,2,1,0,1,[[285,2,1,0,1]]]],[8546]]],["cannot",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7673]]],["doth",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17193]]],["else",[1,1,[[12,1,1,0,1,[[358,1,1,0,1]]]],[10946]]],["even",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22293]]],["if",[381,352,[[0,28,26,0,26,[[3,1,1,0,1],[12,3,2,1,3],[14,1,1,3,4],[17,3,3,4,7],[19,1,1,7,8],[22,1,1,8,9],[23,5,4,9,13],[26,1,1,13,14],[29,2,2,14,16],[30,2,2,16,18],[32,1,1,18,19],[33,1,1,19,20],[41,1,1,20,21],[42,2,2,21,23],[43,1,1,23,24],[46,2,2,24,26]]],[1,32,29,26,55,[[50,2,1,26,27],[53,2,2,27,29],[57,2,2,29,31],[58,1,1,31,32],[59,1,1,32,33],[61,1,1,33,34],[62,1,1,34,35],[68,1,1,35,36],[69,1,1,36,37],[70,8,8,37,45],[71,5,4,45,49],[72,1,1,49,50],[78,1,1,50,51],[81,2,1,51,52],[82,1,1,52,53],[83,1,1,53,54],[89,1,1,54,55]]],[2,75,70,55,125,[[90,2,2,55,57],[91,3,3,57,60],[92,4,3,60,63],[93,3,3,63,66],[94,4,4,66,70],[95,1,1,70,71],[96,2,2,71,73],[101,2,2,73,75],[102,13,13,75,88],[103,3,3,88,91],[104,3,3,91,94],[106,1,1,94,95],[108,1,1,95,96],[109,1,1,96,97],[114,4,4,97,101],[115,7,6,101,107],[116,21,18,107,125]]],[3,34,33,125,158,[[121,4,4,125,129],[126,1,1,129,130],[127,2,1,130,131],[131,2,2,131,133],[132,1,1,133,134],[135,1,1,134,135],[136,1,1,135,136],[137,1,1,136,137],[138,1,1,137,138],[143,3,3,138,141],[146,7,7,141,148],[148,4,4,148,152],[149,1,1,152,153],[151,5,5,153,158]]],[4,19,19,158,177,[[157,1,1,158,159],[160,1,1,159,160],[163,3,3,160,163],[167,1,1,163,164],[171,1,1,164,165],[172,2,2,165,167],[173,1,1,167,168],[174,3,3,168,171],[176,1,1,171,172],[177,2,2,172,174],[180,2,2,174,176],[182,1,1,176,177]]],[5,11,9,177,186,[[188,3,3,177,180],[208,6,4,180,184],[209,1,1,184,185],[210,1,1,185,186]]],[6,14,13,186,199,[[214,1,1,186,187],[216,2,2,187,189],[217,1,1,189,190],[219,4,3,190,193],[221,1,1,193,194],[223,1,1,194,195],[224,2,2,195,197],[226,1,1,197,198],[231,1,1,198,199]]],[7,3,2,199,201,[[234,2,1,199,200],[235,1,1,200,201]]],[8,22,21,201,222,[[236,1,1,201,202],[237,2,2,202,204],[238,2,2,204,206],[241,2,1,206,207],[246,1,1,207,208],[247,2,2,208,210],[249,1,1,210,211],[252,1,1,211,212],[255,5,5,212,217],[256,2,2,217,219],[258,1,1,219,220],[260,1,1,220,221],[261,1,1,221,222]]],[9,12,11,222,233,[[276,1,1,222,223],[277,1,1,223,224],[278,1,1,224,225],[280,1,1,225,226],[281,3,3,226,229],[283,2,2,229,231],[284,2,1,231,232],[285,1,1,232,233]]],[10,12,11,233,244,[[291,1,1,233,234],[293,1,1,234,235],[296,1,1,235,236],[299,2,2,236,238],[301,1,1,238,239],[308,2,1,239,240],[310,2,2,240,242],[311,2,2,242,244]]],[11,9,6,244,250,[[314,2,1,244,245],[318,1,1,245,246],[319,3,1,246,247],[330,1,1,247,248],[332,1,1,248,249],[333,1,1,249,250]]],[12,6,5,250,255,[[349,1,1,250,251],[356,1,1,251,252],[359,1,1,252,253],[365,3,2,253,255]]],[13,8,7,255,262,[[372,1,1,255,256],[373,3,3,256,259],[381,2,1,259,260],[391,1,1,260,261],[396,1,1,261,262]]],[15,3,3,262,265,[[414,1,1,262,263],[416,1,1,263,264],[425,1,1,264,265]]],[16,4,4,265,269,[[429,1,1,265,266],[430,1,1,266,267],[432,1,1,267,268],[433,1,1,268,269]]],[17,13,13,269,282,[[441,1,1,269,270],[444,2,2,270,272],[448,1,1,272,273],[449,1,1,273,274],[456,1,1,274,275],[459,1,1,275,276],[469,1,1,276,277],[471,2,2,277,279],[472,1,1,279,280],[473,2,2,280,282]]],[18,9,8,282,290,[[484,2,1,282,283],[518,1,1,283,284],[536,1,1,284,285],[558,1,1,285,286],[567,1,1,286,287],[572,1,1,287,288],[614,1,1,288,289],[616,1,1,289,290]]],[19,10,10,290,300,[[628,1,1,290,291],[629,2,2,291,293],[630,1,1,293,294],[633,1,1,294,295],[646,1,1,295,296],[650,2,2,296,298],[652,1,1,298,299],[657,1,1,299,300]]],[20,5,5,300,305,[[662,3,3,300,303],[669,2,2,303,305]]],[21,4,4,305,309,[[675,1,1,305,306],[677,1,1,306,307],[678,2,2,307,309]]],[22,4,4,309,313,[[679,1,1,309,310],[686,1,1,310,311],[699,1,1,311,312],[714,1,1,312,313]]],[23,25,22,313,335,[[746,1,1,313,314],[748,1,1,314,315],[749,2,1,315,316],[751,2,1,316,317],[756,2,2,317,319],[757,1,1,319,320],[758,1,1,320,321],[759,1,1,321,322],[761,2,2,322,324],[766,2,2,324,326],[767,1,1,326,327],[770,1,1,327,328],[771,2,1,328,329],[782,2,2,329,331],[784,1,1,331,332],[786,2,2,332,334],[793,1,1,334,335]]],[24,1,1,335,336,[[797,1,1,335,336]]],[25,3,3,336,339,[[821,1,1,336,337],[822,1,1,337,338],[844,1,1,338,339]]],[28,1,1,339,340,[[878,1,1,339,340]]],[29,2,2,340,342,[[881,1,1,340,341],[884,1,1,341,342]]],[30,2,1,342,343,[[888,2,1,342,343]]],[32,1,1,343,344,[[897,1,1,343,344]]],[33,1,1,344,345,[[902,1,1,344,345]]],[37,4,4,345,349,[[913,1,1,345,346],[916,1,1,346,347],[921,1,1,347,348],[924,1,1,348,349]]],[38,4,3,349,352,[[925,2,1,349,350],[926,1,1,350,351],[927,1,1,351,352]]]],[86,327,334,365,427,445,454,502,584,599,632,633,640,773,857,861,881,923,970,997,1289,1295,1299,1350,1426,1436,1548,1609,1610,1712,1731,1744,1781,1820,1880,2031,2076,2080,2082,2086,2088,2098,2100,2104,2106,2116,2120,2125,2128,2166,2370,2470,2486,2516,2744,2755,2759,2767,2769,2776,2779,2784,2790,2808,2822,2827,2831,2837,2841,2847,2877,2895,2897,3049,3052,3059,3064,3073,3074,3075,3078,3079,3080,3087,3089,3105,3108,3109,3132,3154,3159,3191,3192,3196,3251,3288,3322,3497,3499,3521,3523,3538,3539,3542,3545,3547,3551,3574,3575,3576,3577,3578,3579,3580,3581,3583,3585,3586,3588,3589,3590,3592,3597,3601,3603,3800,3811,3819,3820,3992,4039,4177,4180,4224,4301,4330,4349,4409,4563,4564,4565,4653,4654,4656,4658,4660,4662,4663,4723,4738,4741,4748,4815,4861,4862,4865,4867,4871,5078,5156,5221,5230,5236,5324,5414,5438,5439,5461,5472,5490,5495,5537,5549,5554,5612,5626,5725,5883,5888,5889,6445,6448,6449,6450,6472,6491,6607,6685,6691,6704,6769,6770,6774,6839,6900,6921,6922,6966,7123,7185,7194,7223,7256,7265,7285,7293,7340,7448,7475,7485,7518,7627,7737,7738,7739,7752,7759,7776,7781,7833,7883,7924,8251,8279,8294,8388,8414,8415,8423,8455,8462,8481,8524,8769,8830,8908,9055,9057,9146,9362,9418,9447,9453,9457,9561,9705,9711,10047,10117,10127,10737,10919,10977,11150,11152,11306,11337,11341,11343,11492,11712,11836,12312,12362,12692,12776,12787,12810,12822,13006,13070,13075,13163,13188,13359,13461,13715,13744,13748,13789,13797,13811,13998,14548,14805,15225,15388,15461,16228,16263,16410,16434,16436,16485,16541,16944,17046,17059,17134,17283,17391,17392,17393,17516,17521,17606,17639,17647,17649,17674,17827,18047,18338,18993,19028,19059,19124,19265,19266,19283,19311,19334,19381,19384,19458,19459,19506,19587,19614,19913,19916,19945,19980,19988,20136,20322,20934,20957,21583,22347,22399,22459,22515,22641,22724,22919,22962,23040,23086,23095,23105,23130]]],["neither",[4,4,[[8,1,1,0,1,[[265,1,1,0,1]]],[23,1,1,1,2,[[782,1,1,1,2]]],[25,2,2,2,4,[[815,2,2,2,4]]]],[7993,19911,20747,20751]]],["no",[4,4,[[8,1,1,0,1,[[263,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]],[22,1,1,2,3,[[740,1,1,2,3]]],[23,1,1,3,4,[[788,1,1,3,4]]]],[7952,9351,18862,20036]]],["nor",[9,9,[[8,1,1,0,1,[[265,1,1,0,1]]],[11,1,1,1,2,[[315,1,1,1,2]]],[15,1,1,2,3,[[425,1,1,2,3]]],[17,1,1,3,4,[[462,1,1,3,4]]],[18,1,1,4,5,[[609,1,1,4,5]]],[21,2,2,5,7,[[672,1,1,5,6],[673,1,1,6,7]]],[25,2,2,7,9,[[815,2,2,7,9]]]],[7993,9590,12696,13485,16154,17561,17576,20747,20751]]],["not",[26,25,[[0,2,1,0,1,[[13,2,1,0,1]]],[8,4,4,1,5,[[238,1,1,1,2],[249,1,1,2,3],[254,1,1,3,4],[260,1,1,4,5]]],[9,2,2,5,7,[[280,1,1,5,6],[285,1,1,6,7]]],[10,4,4,7,11,[[291,1,1,7,8],[292,1,1,8,9],[307,2,2,9,11]]],[11,4,4,11,15,[[314,3,3,11,14],[316,1,1,14,15]]],[15,1,1,15,16,[[425,1,1,15,16]]],[17,1,1,16,17,[[462,1,1,16,17]]],[18,2,2,17,19,[[566,1,1,17,18],[609,1,1,18,19]]],[22,1,1,19,20,[[740,1,1,19,20]]],[23,1,1,20,21,[[782,1,1,20,21]]],[25,4,4,21,25,[[817,1,1,21,22],[819,1,1,22,23],[821,2,2,23,25]]]],[359,7290,7553,7712,7895,8367,8518,8768,8778,9318,9329,9553,9555,9557,9633,12696,13485,15361,16155,18862,19911,20810,20852,20898,20926]]],["or",[55,51,[[0,5,5,0,5,[[23,1,1,0,1],[26,1,1,1,2],[29,1,1,2,3],[36,2,2,3,5]]],[1,3,3,5,8,[[65,1,1,5,6],[66,1,1,6,7],[68,1,1,7,8]]],[2,2,2,8,10,[[92,1,1,8,9],[116,1,1,9,10]]],[3,6,4,10,14,[[127,1,1,10,11],[129,5,3,11,14]]],[4,2,2,14,16,[[160,1,1,14,15],[170,1,1,15,16]]],[5,1,1,16,17,[[191,1,1,16,17]]],[6,4,4,17,21,[[212,1,1,17,18],[219,1,1,18,19],[221,1,1,19,20],[230,1,1,20,21]]],[7,1,1,21,22,[[234,1,1,21,22]]],[9,5,4,22,26,[[281,1,1,22,23],[285,1,1,23,24],[286,1,1,24,25],[290,2,1,25,26]]],[10,2,2,26,28,[[312,2,2,26,28]]],[11,1,1,28,29,[[332,1,1,28,29]]],[12,1,1,29,30,[[358,1,1,29,30]]],[13,2,2,30,32,[[384,2,2,30,32]]],[17,12,11,32,43,[[441,2,2,32,34],[442,1,1,34,35],[443,1,1,35,36],[445,1,1,36,37],[448,1,1,37,38],[457,1,1,38,39],[472,2,1,39,40],[474,3,3,40,43]]],[20,2,2,43,45,[[663,1,1,43,44],[669,1,1,44,45]]],[22,2,2,45,47,[[727,1,1,45,46],[728,1,1,46,47]]],[23,1,1,47,48,[[758,1,1,47,48]]],[25,2,2,48,50,[[816,1,1,48,49],[823,1,1,49,50]]],[29,1,1,50,51,[[884,1,1,50,51]]]],[612,748,831,1091,1115,1951,1990,2039,2779,3596,4047,4093,4094,4095,5139,5387,5947,6567,6756,6854,7082,7182,8410,8553,8574,8705,9486,9495,10107,10946,11547,11556,12983,12984,13020,13032,13090,13162,13392,13782,13843,13844,13847,17409,17516,18660,18664,19315,20757,20990,22452]]],["should",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13110]]],["since",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19522]]],["sith",[1,1,[[25,1,1,0,1,[[836,1,1,0,1]]]],[21350]]],["surely",[2,2,[[10,1,1,0,1,[[310,1,1,0,1]]],[19,1,1,1,2,[[650,1,1,1,2]]]],[9431,17062]]],["that",[12,10,[[0,2,1,0,1,[[30,2,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[4,1,1,2,3,[[176,1,1,2,3]]],[8,3,2,3,5,[[259,3,2,3,5]]],[9,1,1,5,6,[[286,1,1,5,6]]],[10,1,1,6,7,[[298,1,1,6,7]]],[12,1,1,7,8,[[341,1,1,7,8]]],[17,1,1,8,9,[[462,1,1,8,9]]],[18,1,1,9,10,[[572,1,1,9,10]]]],[925,2124,5526,7845,7860,8574,9010,10395,13486,15465]]],["though",[19,17,[[15,1,1,0,1,[[413,1,1,0,1]]],[17,2,2,1,3,[[444,1,1,1,2],[465,1,1,2,3]]],[18,1,1,3,4,[[504,1,1,3,4]]],[20,1,1,4,5,[[666,1,1,4,5]]],[22,3,2,5,7,[[679,2,1,5,6],[688,1,1,6,7]]],[23,4,4,7,11,[[746,1,1,7,8],[749,1,1,8,9],[758,1,1,9,10],[781,1,1,10,11]]],[24,1,1,11,12,[[799,1,1,11,12]]],[29,4,3,12,15,[[887,4,3,12,15]]],[30,1,1,15,16,[[888,1,1,15,16]]],[34,1,1,16,17,[[904,1,1,16,17]]]],[12305,13066,13581,14288,17475,17672,17872,18987,19060,19300,19884,20386,22497,22498,22499,22514,22751]]],["when",[11,11,[[0,1,1,0,1,[[37,1,1,0,1]]],[3,1,1,1,2,[[152,1,1,1,2]]],[6,2,2,2,4,[[214,1,1,2,3],[216,1,1,3,4]]],[17,2,2,4,6,[[452,1,1,4,5],[456,1,1,5,6]]],[19,2,2,6,8,[[631,1,1,6,7],[651,1,1,7,8]]],[22,2,2,8,10,[[702,1,1,8,9],[731,1,1,9,10]]],[29,1,1,10,11,[[885,1,1,10,11]]]],[1128,4883,6619,6657,13276,13361,16502,17093,18108,18721,22466]]],["whether",[26,21,[[1,1,1,0,1,[[68,1,1,0,1]]],[2,2,2,1,3,[[92,1,1,1,2],[116,1,1,2,3]]],[4,1,1,3,4,[[170,1,1,3,4]]],[7,1,1,4,5,[[234,1,1,4,5]]],[9,1,1,5,6,[[281,1,1,5,6]]],[10,1,1,6,7,[[310,1,1,6,7]]],[11,1,1,7,8,[[313,1,1,7,8]]],[14,1,1,8,9,[[404,1,1,8,9]]],[15,1,1,9,10,[[419,1,1,9,10]]],[16,1,1,10,11,[[429,1,1,10,11]]],[17,1,1,11,12,[[472,1,1,11,12]]],[19,2,1,12,13,[[647,2,1,12,13]]],[20,4,3,13,16,[[663,1,1,13,14],[669,1,1,14,15],[670,2,1,15,16]]],[23,2,2,16,18,[[774,1,1,16,17],[786,1,1,17,18]]],[25,6,3,18,21,[[803,4,2,18,20],[804,2,1,20,21]]]],[2039,2779,3596,5387,7182,8410,9426,9535,12086,12481,12776,13782,16965,17409,17519,17537,19673,19981,20497,20499,20513]]],["while",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7744]]]]},{"k":"H519","v":[["*",[56,49,[[0,7,6,0,6,[[19,1,1,0,1],[20,4,3,1,4],[29,1,1,4,5],[30,1,1,5,6]]],[1,9,9,6,15,[[51,1,1,6,7],[69,2,2,7,9],[70,5,5,9,14],[72,1,1,14,15]]],[2,3,2,15,17,[[114,3,2,15,17]]],[4,8,7,17,24,[[157,3,2,17,19],[164,2,2,19,21],[167,1,1,21,22],[168,2,2,22,24]]],[6,2,2,24,26,[[219,1,1,24,25],[229,1,1,25,26]]],[7,2,1,26,27,[[234,2,1,26,27]]],[8,10,7,27,34,[[236,4,2,27,29],[260,6,5,29,34]]],[9,5,5,34,39,[[272,2,2,34,36],[280,2,2,36,38],[286,1,1,38,39]]],[10,3,3,39,42,[[291,2,2,39,41],[293,1,1,41,42]]],[14,1,1,42,43,[[404,1,1,42,43]]],[15,1,1,43,44,[[419,1,1,43,44]]],[17,2,2,44,46,[[454,1,1,44,45],[466,1,1,45,46]]],[18,2,2,46,48,[[563,1,1,46,47],[593,1,1,47,48]]],[33,1,1,48,49,[[901,1,1,48,49]]]],[512,523,525,526,833,906,1559,2061,2068,2084,2097,2103,2104,2109,2156,3475,3513,5067,5074,5252,5258,5336,5353,5356,6772,7043,7181,7223,7228,7885,7886,7889,7892,7902,8177,8179,8371,8372,8571,8730,8734,8836,12092,12487,13312,13601,15300,15864,22706]]],["bondmaids",[2,1,[[2,2,1,0,1,[[114,2,1,0,1]]]],[3513]]],["bondwoman",[4,3,[[0,4,3,0,3,[[20,4,3,0,3]]]],[523,525,526]]],["handmaid",[22,18,[[1,1,1,0,1,[[72,1,1,0,1]]],[6,1,1,1,2,[[229,1,1,1,2]]],[7,2,1,2,3,[[234,2,1,2,3]]],[8,10,7,3,10,[[236,4,2,3,5],[260,6,5,5,10]]],[9,3,3,10,13,[[280,2,2,10,12],[286,1,1,12,13]]],[10,3,3,13,16,[[291,2,2,13,15],[293,1,1,15,16]]],[18,2,2,16,18,[[563,1,1,16,17],[593,1,1,17,18]]]],[2156,7043,7181,7223,7228,7885,7886,7889,7892,7902,8371,8372,8571,8730,8734,8836,15300,15864]]],["handmaids",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8177]]],["maid",[5,5,[[0,1,1,0,1,[[29,1,1,0,1]]],[1,3,3,1,4,[[51,1,1,1,2],[70,2,2,2,4]]],[2,1,1,4,5,[[114,1,1,4,5]]]],[833,1559,2097,2103,3475]]],["maids",[3,3,[[14,1,1,0,1,[[404,1,1,0,1]]],[17,1,1,1,2,[[454,1,1,1,2]]],[33,1,1,2,3,[[901,1,1,2,3]]]],[12092,13312,22706]]],["maidservant",[13,12,[[1,4,4,0,4,[[69,2,2,0,2],[70,2,2,2,4]]],[4,7,6,4,10,[[157,3,2,4,6],[164,1,1,6,7],[167,1,1,7,8],[168,2,2,8,10]]],[6,1,1,10,11,[[219,1,1,10,11]]],[17,1,1,11,12,[[466,1,1,11,12]]]],[2061,2068,2084,2109,5067,5074,5258,5336,5353,5356,6772,13601]]],["maidservant's",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2104]]],["maidservants",[4,4,[[0,1,1,0,1,[[19,1,1,0,1]]],[4,1,1,1,2,[[164,1,1,1,2]]],[9,1,1,2,3,[[272,1,1,2,3]]],[15,1,1,3,4,[[419,1,1,3,4]]]],[512,5252,8179,12487]]],["maidservants'",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[906]]]]},{"k":"H520","v":[["*",[245,131,[[0,5,3,0,3,[[5,4,2,0,2],[6,1,1,2,3]]],[1,57,30,3,33,[[74,8,3,3,6],[75,8,4,6,10],[76,10,7,10,17],[79,3,1,17,18],[85,6,3,18,21],[86,11,4,21,25],[87,11,8,25,33]]],[3,6,3,33,36,[[127,1,1,33,34],[151,5,2,34,36]]],[4,3,1,36,37,[[155,3,1,36,37]]],[5,1,1,37,38,[[189,1,1,37,38]]],[8,1,1,38,39,[[252,1,1,38,39]]],[10,45,24,39,63,[[296,19,11,39,50],[297,26,13,50,63]]],[11,3,2,63,65,[[326,1,1,63,64],[337,2,1,64,65]]],[12,1,1,65,66,[[348,1,1,65,66]]],[13,25,12,66,78,[[369,14,7,66,73],[370,7,3,73,76],[372,3,1,76,77],[391,1,1,77,78]]],[15,1,1,78,79,[[415,1,1,78,79]]],[16,2,2,79,81,[[430,1,1,79,80],[432,1,1,80,81]]],[22,1,1,81,82,[[684,1,1,81,82]]],[23,4,3,82,85,[[795,1,1,82,83],[796,3,2,83,85]]],[25,88,45,85,130,[[841,40,21,85,106],[842,27,14,106,120],[843,7,4,120,124],[844,12,4,124,128],[846,1,1,128,129],[848,1,1,129,130]]],[37,2,1,130,131,[[915,2,1,130,131]]]],[152,153,179,2205,2212,2218,2237,2243,2248,2251,2273,2281,2284,2285,2286,2288,2290,2384,2575,2581,2587,2605,2610,2614,2629,2634,2642,2644,2645,2646,2647,2648,2651,4055,4849,4850,4986,5897,7622,8898,8899,8902,8906,8912,8913,8916,8919,8920,8921,8922,8936,8940,8944,8949,8950,8953,8957,8958,8961,8965,8966,8969,8972,9909,10239,10696,11232,11233,11237,11240,11241,11242,11244,11247,11248,11249,11295,11727,12340,12793,12816,17773,20225,20297,20298,21482,21484,21486,21488,21489,21490,21491,21492,21496,21498,21500,21502,21504,21506,21507,21510,21513,21519,21524,21525,21526,21527,21528,21529,21530,21531,21534,21535,21536,21537,21538,21539,21540,21541,21548,21554,21556,21559,21560,21585,21586,21587,21589,21632,21682,22938]]],["+",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8965]]],["cubit",[42,25,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,18,11,1,12,[[74,5,3,1,4],[75,3,2,4,6],[79,2,1,6,7],[85,1,1,7,8],[86,7,4,8,12]]],[4,1,1,12,13,[[155,1,1,12,13]]],[10,6,4,13,17,[[297,6,4,13,17]]],[13,1,1,17,18,[[370,1,1,17,18]]],[25,15,7,18,25,[[841,6,3,18,21],[843,1,1,21,22],[844,8,3,22,25]]]],[153,2205,2212,2218,2248,2251,2384,2587,2605,2610,2614,2629,4986,8958,8965,8966,8969,11249,21482,21489,21519,21556,21585,21586,21589]]],["cubits",[200,120,[[0,4,2,0,2,[[5,3,1,0,1],[6,1,1,1,2]]],[1,39,29,2,31,[[74,3,3,2,5],[75,5,3,5,8],[76,10,7,8,15],[79,1,1,15,16],[85,5,3,16,19],[86,4,4,19,23],[87,11,8,23,31]]],[3,6,3,31,34,[[127,1,1,31,32],[151,5,2,32,34]]],[4,2,1,34,35,[[155,2,1,34,35]]],[5,1,1,35,36,[[189,1,1,35,36]]],[8,1,1,36,37,[[252,1,1,36,37]]],[10,38,20,37,57,[[296,19,11,37,48],[297,19,9,48,57]]],[11,3,2,57,59,[[326,1,1,57,58],[337,2,1,58,59]]],[12,1,1,59,60,[[348,1,1,59,60]]],[13,24,11,60,71,[[369,14,7,60,67],[370,6,2,67,69],[372,3,1,69,70],[391,1,1,70,71]]],[15,1,1,71,72,[[415,1,1,71,72]]],[16,2,2,72,74,[[430,1,1,72,73],[432,1,1,73,74]]],[23,3,2,74,76,[[796,3,2,74,76]]],[25,73,43,76,119,[[841,34,20,76,96],[842,27,14,96,110],[843,6,4,110,114],[844,4,3,114,117],[846,1,1,117,118],[848,1,1,118,119]]],[37,2,1,119,120,[[915,2,1,119,120]]]],[152,179,2205,2212,2218,2237,2243,2251,2273,2281,2284,2285,2286,2288,2290,2384,2575,2581,2587,2605,2610,2614,2629,2634,2642,2644,2645,2646,2647,2648,2651,4055,4849,4850,4986,5897,7622,8898,8899,8902,8906,8912,8913,8916,8919,8920,8921,8922,8936,8940,8944,8949,8950,8953,8957,8961,8972,9909,10239,10696,11232,11233,11237,11240,11241,11242,11244,11247,11248,11295,11727,12340,12793,12816,20297,20298,21482,21484,21486,21488,21489,21490,21491,21492,21496,21498,21500,21502,21504,21506,21507,21510,21513,21524,21525,21526,21527,21528,21529,21530,21531,21534,21535,21536,21537,21538,21539,21540,21541,21548,21554,21556,21559,21560,21585,21586,21587,21632,21682,22938]]],["measure",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20225]]],["posts",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17773]]]]},{"k":"H521","v":[["cubits",[4,2,[[14,2,1,0,1,[[408,2,1,0,1]]],[26,2,1,1,2,[[852,2,1,1,2]]]],[12154,21808]]]]},{"k":"H522","v":[["Ammah",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8073]]]]},{"k":"H523","v":[["*",[3,3,[[0,1,1,0,1,[[24,1,1,0,1]]],[3,1,1,1,2,[[141,1,1,1,2]]],[18,1,1,2,3,[[594,1,1,2,3]]]],[674,4486,15868]]],["nations",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[674]]],["people",[2,2,[[3,1,1,0,1,[[141,1,1,0,1]]],[18,1,1,1,2,[[594,1,1,1,2]]]],[4486,15868]]]]},{"k":"H524","v":[["*",[8,8,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,7,7,1,8,[[852,3,3,1,4],[853,1,1,4,5],[854,1,1,5,6],[855,1,1,6,7],[856,1,1,7,8]]]],[12120,21811,21814,21836,21838,21893,21930,21947]]],["nation",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21836]]],["nations",[7,7,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,6,6,1,7,[[852,2,2,1,3],[853,1,1,3,4],[854,1,1,4,5],[855,1,1,5,6],[856,1,1,6,7]]]],[12120,21811,21814,21838,21893,21930,21947]]]]},{"k":"H525","v":[["up",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16632]]]]},{"k":"H526","v":[["Amon",[17,17,[[10,1,1,0,1,[[312,1,1,0,1]]],[11,5,5,1,6,[[333,5,5,1,6]]],[12,1,1,6,7,[[340,1,1,6,7]]],[13,6,6,7,13,[[384,1,1,7,8],[399,5,5,8,13]]],[15,1,1,13,14,[[419,1,1,13,14]]],[23,2,2,14,16,[[745,1,1,14,15],[769,1,1,15,16]]],[35,1,1,16,17,[[906,1,1,16,17]]]],[9506,10137,10138,10142,10143,10144,10375,11567,11928,11929,11930,11931,11933,12479,18948,19537,22788]]]]},{"k":"H527","v":[["multitude",[1,1,[[23,1,1,0,1,[[796,1,1,0,1]]]],[20291]]]]},{"k":"H528","v":[["*",[2,2,[[23,1,1,0,1,[[790,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[20070,22720]]],["multitude",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20070]]],["populous",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22720]]]]},{"k":"H529","v":[["*",[5,5,[[4,1,1,0,1,[[184,1,1,0,1]]],[19,3,3,1,4,[[640,1,1,1,2],[641,1,1,2,3],[647,1,1,3,4]]],[22,1,1,4,5,[[704,1,1,4,5]]]],[5778,16764,16777,16960,18132]]],["faith",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5778]]],["faithful",[3,3,[[19,3,3,0,3,[[640,1,1,0,1],[641,1,1,1,2],[647,1,1,2,3]]]],[16764,16777,16960]]],["truth",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18132]]]]},{"k":"H530","v":[["*",[49,49,[[1,1,1,0,1,[[66,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[8,1,1,2,3,[[261,1,1,2,3]]],[11,2,2,3,5,[[324,1,1,3,4],[334,1,1,4,5]]],[12,3,3,5,8,[[346,3,3,5,8]]],[13,5,5,8,13,[[385,1,1,8,9],[397,3,3,9,12],[400,1,1,12,13]]],[18,22,22,13,35,[[510,1,1,13,14],[513,1,1,14,15],[514,1,1,15,16],[517,1,1,16,17],[565,1,1,17,18],[566,7,7,18,25],[569,1,1,25,26],[573,1,1,26,27],[575,1,1,27,28],[577,1,1,28,29],[596,5,5,29,34],[620,1,1,34,35]]],[19,3,3,35,38,[[639,2,2,35,37],[655,1,1,37,38]]],[22,4,4,38,42,[[689,1,1,38,39],[703,1,1,39,40],[711,1,1,40,41],[737,1,1,41,42]]],[23,4,4,42,46,[[749,2,2,42,44],[751,1,1,44,45],[753,1,1,45,46]]],[24,1,1,46,47,[[799,1,1,46,47]]],[27,1,1,47,48,[[863,1,1,47,48]]],[34,1,1,48,49,[[904,1,1,48,49]]]],[1995,5762,7928,9865,10152,10637,10641,10646,11585,11866,11869,11872,11945,14370,14443,14453,14535,15319,15327,15328,15331,15334,15350,15359,15375,15413,15478,15493,15513,15928,15973,15984,15988,16036,16294,16736,16741,17216,17889,18119,18285,18804,19059,19061,19147,19178,20377,22125,22752]]],["+",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15359]]],["faith",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22752]]],["faithful",[3,3,[[18,2,2,0,2,[[596,2,2,0,2]]],[19,1,1,2,3,[[655,1,1,2,3]]]],[15984,16036,17216]]],["faithfully",[5,5,[[11,2,2,0,2,[[324,1,1,0,1],[334,1,1,1,2]]],[13,3,3,2,5,[[385,1,1,2,3],[397,1,1,3,4],[400,1,1,4,5]]]],[9865,10152,11585,11866,11945]]],["faithfulness",[17,17,[[8,1,1,0,1,[[261,1,1,0,1]]],[18,12,12,1,13,[[513,1,1,1,2],[517,1,1,2,3],[565,1,1,3,4],[566,5,5,4,9],[569,1,1,9,10],[596,2,2,10,12],[620,1,1,12,13]]],[22,2,2,13,15,[[689,1,1,13,14],[703,1,1,14,15]]],[24,1,1,15,16,[[799,1,1,15,16]]],[27,1,1,16,17,[[863,1,1,16,17]]]],[7928,14443,14535,15319,15327,15328,15331,15334,15350,15413,15973,15988,16294,17889,18119,20377,22125]]],["office",[5,5,[[12,3,3,0,3,[[346,3,3,0,3]]],[13,2,2,3,5,[[397,2,2,3,5]]]],[10637,10641,10646,11869,11872]]],["stability",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18285]]],["steady",[1,1,[[1,1,1,0,1,[[66,1,1,0,1]]]],[1995]]],["truly",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16741]]],["truth",[13,13,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,6,6,1,7,[[510,1,1,1,2],[566,1,1,2,3],[573,1,1,3,4],[575,1,1,4,5],[577,1,1,5,6],[596,1,1,6,7]]],[19,1,1,7,8,[[639,1,1,7,8]]],[22,1,1,8,9,[[737,1,1,8,9]]],[23,4,4,9,13,[[749,2,2,9,11],[751,1,1,11,12],[753,1,1,12,13]]]],[5762,14370,15375,15478,15493,15513,15928,16736,18804,19059,19061,19147,19178]]],["verily",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14453]]]]},{"k":"H531","v":[["Amoz",[13,13,[[11,3,3,0,3,[[331,2,2,0,2],[332,1,1,2,3]]],[13,3,3,3,6,[[392,1,1,3,4],[398,2,2,4,6]]],[22,7,7,6,13,[[679,1,1,6,7],[680,1,1,7,8],[691,1,1,8,9],[698,1,1,9,10],[715,2,2,10,12],[716,1,1,12,13]]]],[10063,10081,10099,11754,11895,11907,17655,17686,17907,18031,18354,18373,18391]]]]},{"k":"H532","v":[["Ami",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12084]]]]},{"k":"H533","v":[["*",[6,6,[[9,1,1,0,1,[[281,1,1,0,1]]],[17,2,2,1,3,[[444,2,2,1,3]]],[22,2,2,3,5,[[706,1,1,3,4],[718,1,1,4,5]]],[29,1,1,5,6,[[880,1,1,5,6]]]],[8401,13055,13070,18166,18446,22395]]],["+",[1,1,[[29,1,1,0,1,[[880,1,1,0,1]]]],[22395]]],["mighty",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13055]]],["one",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18166]]],["strong",[3,3,[[9,1,1,0,1,[[281,1,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]]],[8401,13070,18446]]]]},{"k":"H534","v":[["*",[2,2,[[22,2,2,0,2,[[695,2,2,0,2]]]],[17989,17992]]],["bough",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17989]]],["branch",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17992]]]]},{"k":"H535","v":[["*",[16,14,[[8,1,1,0,1,[[237,1,1,0,1]]],[22,6,5,1,6,[[694,1,1,1,2],[697,1,1,2,3],[702,3,2,3,5],[711,1,1,5,6]]],[23,2,2,6,8,[[758,1,1,6,7],[759,1,1,7,8]]],[24,1,1,8,9,[[798,1,1,8,9]]],[25,1,1,9,10,[[817,1,1,9,10]]],[27,1,1,10,11,[[865,1,1,10,11]]],[28,2,2,11,13,[[876,2,2,11,13]]],[33,2,1,13,14,[[900,2,1,13,14]]]],[7245,17977,18012,18099,18102,18288,19295,19324,20340,20792,22136,22301,22303,22688]]],["feeble",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7245]]],["languish",[5,5,[[22,3,3,0,3,[[694,1,1,0,1],[697,1,1,1,2],[702,1,1,2,3]]],[23,1,1,3,4,[[758,1,1,3,4]]],[27,1,1,4,5,[[865,1,1,4,5]]]],[17977,18012,18099,19295,22136]]],["languished",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20340]]],["languisheth",[8,7,[[22,3,3,0,3,[[702,2,2,0,2],[711,1,1,2,3]]],[23,1,1,3,4,[[759,1,1,3,4]]],[28,2,2,4,6,[[876,2,2,4,6]]],[33,2,1,6,7,[[900,2,1,6,7]]]],[18099,18102,18288,19324,22301,22303,22688]]],["weak",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20792]]]]},{"k":"H536","v":[["weak",[1,1,[[18,1,1,0,1,[[483,1,1,0,1]]]],[13987]]]]},{"k":"H537","v":[["feeble",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12361]]]]},{"k":"H538","v":[["Amam",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6228]]]]},{"k":"H539","v":[["*",[108,102,[[0,3,3,0,3,[[14,1,1,0,1],[41,1,1,1,2],[44,1,1,2,3]]],[1,8,7,3,10,[[53,6,5,3,8],[63,1,1,8,9],[68,1,1,9,10]]],[3,4,4,10,14,[[127,1,1,10,11],[128,1,1,11,12],[130,1,1,12,13],[136,1,1,13,14]]],[4,6,5,14,19,[[153,1,1,14,15],[159,1,1,15,16],[161,1,1,16,17],[180,3,2,17,19]]],[6,1,1,19,20,[[221,1,1,19,20]]],[7,1,1,20,21,[[235,1,1,20,21]]],[8,6,5,21,26,[[237,2,1,21,22],[238,1,1,22,23],[257,1,1,23,24],[260,1,1,24,25],[262,1,1,25,26]]],[9,3,3,26,29,[[270,1,1,26,27],[273,1,1,27,28],[286,1,1,28,29]]],[10,3,3,29,32,[[298,1,1,29,30],[300,1,1,30,31],[301,1,1,31,32]]],[11,3,3,32,35,[[322,2,2,32,34],[329,1,1,34,35]]],[12,2,2,35,37,[[354,2,2,35,37]]],[13,7,5,37,42,[[367,1,1,37,38],[372,1,1,38,39],[375,1,1,39,40],[386,3,1,40,41],[398,1,1,41,42]]],[15,2,2,42,44,[[421,1,1,42,43],[425,1,1,43,44]]],[16,1,1,44,45,[[427,1,1,44,45]]],[17,10,10,45,55,[[439,1,1,45,46],[444,1,1,46,47],[447,1,1,47,48],[450,3,3,48,51],[459,1,1,51,52],[464,1,1,52,53],[474,2,2,53,55]]],[18,17,17,55,72,[[489,1,1,55,56],[496,1,1,56,57],[504,1,1,57,58],[508,1,1,58,59],[555,4,4,59,63],[566,2,2,63,65],[570,1,1,65,66],[578,1,1,66,67],[583,2,2,67,69],[588,1,1,69,70],[593,1,1,70,71],[596,1,1,71,72]]],[19,5,5,72,77,[[638,1,1,72,73],[641,1,1,73,74],[652,1,1,74,75],[653,1,1,75,76],[654,1,1,76,77]]],[22,15,14,77,91,[[679,2,2,77,79],[685,2,1,79,80],[686,1,1,80,81],[700,2,2,81,83],[706,1,1,83,84],[711,1,1,84,85],[721,1,1,85,86],[727,2,2,86,88],[731,1,1,88,89],[733,1,1,89,90],[738,1,1,90,91]]],[23,4,4,91,95,[[756,1,1,91,92],[759,1,1,92,93],[784,1,1,93,94],[786,1,1,94,95]]],[24,2,2,95,97,[[800,2,2,95,97]]],[27,2,2,97,99,[[866,1,1,97,98],[872,1,1,98,99]]],[31,1,1,99,100,[[891,1,1,99,100]]],[32,1,1,100,101,[[899,1,1,100,101]]],[34,1,1,101,102,[[903,1,1,101,102]]]],[366,1272,1384,1602,1606,1609,1610,1632,1920,2035,4036,4066,4119,4323,4924,5120,5180,5670,5677,6849,7206,7275,7296,7801,7889,7942,8124,8196,8573,9011,9086,9146,9794,9798,9997,10886,10887,11203,11299,11370,11607,11890,12519,12684,12731,12948,13067,13148,13218,13225,13234,13458,13556,13846,13858,14067,14175,14298,14354,15121,15135,15145,15150,15354,15363,15431,15519,15663,15675,15800,15858,15964,16701,16787,17126,17166,17175,17675,17680,17791,17809,18075,18077,18180,18295,18515,18643,18659,18712,18743,18825,19255,19333,19955,19980,20425,20432,22161,22252,22563,22669,22736]]],["+",[5,5,[[4,1,1,0,1,[[180,1,1,0,1]]],[16,1,1,1,2,[[427,1,1,1,2]]],[17,2,2,2,4,[[439,1,1,2,3],[450,1,1,3,4]]],[23,1,1,4,5,[[759,1,1,4,5]]]],[5677,12731,12948,13218,19333]]],["Believe",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11607]]],["Faithful",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17175]]],["Trust",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22669]]],["be",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22161]]],["believe",[18,17,[[1,6,5,0,5,[[53,5,4,0,4],[68,1,1,4,5]]],[3,1,1,5,6,[[130,1,1,5,6]]],[4,1,1,6,7,[[153,1,1,6,7]]],[11,1,1,7,8,[[329,1,1,7,8]]],[13,2,2,8,10,[[386,1,1,8,9],[398,1,1,9,10]]],[17,2,2,10,12,[[444,1,1,10,11],[474,1,1,11,12]]],[19,1,1,12,13,[[653,1,1,12,13]]],[22,2,2,13,15,[[685,1,1,13,14],[721,1,1,14,15]]],[23,1,1,15,16,[[756,1,1,15,16]]],[34,1,1,16,17,[[903,1,1,16,17]]]],[1602,1606,1609,1610,2035,4119,4924,9997,11607,11890,13067,13846,17166,17791,18515,19255,22736]]],["believed",[21,21,[[0,2,2,0,2,[[14,1,1,0,1],[44,1,1,1,2]]],[1,2,2,2,4,[[53,1,1,2,3],[63,1,1,3,4]]],[3,1,1,4,5,[[136,1,1,4,5]]],[4,1,1,5,6,[[161,1,1,5,6]]],[8,1,1,6,7,[[262,1,1,6,7]]],[10,1,1,7,8,[[300,1,1,7,8]]],[13,1,1,8,9,[[375,1,1,8,9]]],[17,1,1,9,10,[[464,1,1,9,10]]],[18,7,7,10,17,[[504,1,1,10,11],[555,2,2,11,13],[583,2,2,13,15],[593,1,1,15,16],[596,1,1,16,17]]],[22,1,1,17,18,[[731,1,1,17,18]]],[23,1,1,18,19,[[784,1,1,18,19]]],[24,1,1,19,20,[[800,1,1,19,20]]],[31,1,1,20,21,[[891,1,1,20,21]]]],[366,1384,1632,1920,4323,5180,7942,9086,11370,13556,14298,15135,15145,15663,15675,15858,15964,18712,19955,20432,22563]]],["believeth",[4,4,[[17,2,2,0,2,[[450,1,1,0,1],[474,1,1,1,2]]],[19,1,1,2,3,[[641,1,1,2,3]]],[22,1,1,3,4,[[706,1,1,3,4]]]],[13225,13858,16787,18180]]],["continuance",[2,1,[[4,2,1,0,1,[[180,2,1,0,1]]]],[5670]]],["established",[7,7,[[8,1,1,0,1,[[238,1,1,0,1]]],[9,1,1,1,2,[[273,1,1,1,2]]],[12,2,2,2,4,[[354,2,2,2,4]]],[13,2,2,4,6,[[367,1,1,4,5],[386,1,1,5,6]]],[22,1,1,6,7,[[685,1,1,6,7]]]],[7296,8196,10886,10887,11203,11607,17791]]],["faithful",[19,19,[[3,1,1,0,1,[[128,1,1,0,1]]],[4,1,1,1,2,[[159,1,1,1,2]]],[8,2,2,2,4,[[237,1,1,2,3],[257,1,1,3,4]]],[9,1,1,4,5,[[286,1,1,4,5]]],[15,2,2,5,7,[[421,1,1,5,6],[425,1,1,6,7]]],[18,4,4,7,11,[[489,1,1,7,8],[508,1,1,8,9],[566,1,1,9,10],[578,1,1,10,11]]],[19,2,2,11,13,[[638,1,1,11,12],[652,1,1,12,13]]],[22,4,4,13,17,[[679,2,2,13,15],[686,1,1,15,16],[727,1,1,16,17]]],[23,1,1,17,18,[[786,1,1,17,18]]],[27,1,1,18,19,[[872,1,1,18,19]]]],[4066,5120,7275,7801,8573,12519,12684,14067,14354,15363,15519,16701,17126,17675,17680,17809,18643,19980,22252]]],["fast",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15354]]],["father",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4036]]],["fathers",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18659]]],["nurse",[2,2,[[7,1,1,0,1,[[235,1,1,0,1]]],[9,1,1,1,2,[[270,1,1,1,2]]]],[7206,8124]]],["nursed",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18825]]],["stedfast",[2,2,[[18,2,2,0,2,[[555,2,2,0,2]]]],[15121,15150]]],["sure",[11,11,[[8,2,2,0,2,[[237,1,1,0,1],[260,1,1,1,2]]],[10,1,1,2,3,[[301,1,1,2,3]]],[17,1,1,3,4,[[459,1,1,3,4]]],[18,3,3,4,7,[[496,1,1,4,5],[570,1,1,5,6],[588,1,1,6,7]]],[22,4,4,7,11,[[700,2,2,7,9],[711,1,1,9,10],[733,1,1,10,11]]]],[7275,7889,9146,13458,14175,15431,15800,18075,18077,18295,18743]]],["trust",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13234]]],["trusted",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6849]]],["trusty",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13148]]],["up",[3,3,[[11,2,2,0,2,[[322,2,2,0,2]]],[24,1,1,2,3,[[800,1,1,2,3]]]],[9794,9798,20425]]],["verified",[3,3,[[0,1,1,0,1,[[41,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[13,1,1,2,3,[[372,1,1,2,3]]]],[1272,9011,11299]]]]},{"k":"H540","v":[["*",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[855,2,2,1,3]]]],[21803,21909,21928]]],["believed",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21928]]],["faithful",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21909]]],["sure",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21803]]]]},{"k":"H541","v":[["hand",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18238]]]]},{"k":"H542","v":[["workman",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17628]]]]},{"k":"H543","v":[["*",[30,24,[[3,2,1,0,1,[[121,2,1,0,1]]],[4,12,12,1,13,[[179,12,12,1,13]]],[10,1,1,13,14,[[291,1,1,13,14]]],[12,1,1,14,15,[[353,1,1,14,15]]],[15,3,2,15,17,[[417,1,1,15,16],[420,2,1,16,17]]],[18,7,4,17,21,[[518,2,1,17,18],[549,2,1,18,19],[566,2,1,19,20],[583,1,1,20,21]]],[22,2,1,21,22,[[743,2,1,21,22]]],[23,2,2,22,24,[[755,1,1,22,23],[772,1,1,23,24]]]],[3814,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,8753,10856,12395,12499,14555,15019,15378,15699,18913,19231,19624]]],["Amen",[26,22,[[3,1,1,0,1,[[121,1,1,0,1]]],[4,12,12,1,13,[[179,12,12,1,13]]],[10,1,1,13,14,[[291,1,1,13,14]]],[12,1,1,14,15,[[353,1,1,14,15]]],[15,3,2,15,17,[[417,1,1,15,16],[420,2,1,16,17]]],[18,7,4,17,21,[[518,2,1,17,18],[549,2,1,18,19],[566,2,1,19,20],[583,1,1,20,21]]],[23,1,1,21,22,[[772,1,1,21,22]]]],[3814,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,8753,10856,12395,12499,14555,15019,15378,15699,19624]]],["amen",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3814]]],["it",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19231]]],["truth",[2,1,[[22,2,1,0,1,[[743,2,1,0,1]]]],[18913]]]]},{"k":"H544","v":[["truth",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18119]]]]},{"k":"H545","v":[["up",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12744]]]]},{"k":"H546","v":[["*",[3,3,[[0,1,1,0,1,[[19,1,1,0,1]]],[5,1,1,1,2,[[193,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]]],[507,5996,10078]]],["Indeed",[1,1,[[5,1,1,0,1,[[193,1,1,0,1]]]],[5996]]],["indeed",[1,1,[[0,1,1,0,1,[[19,1,1,0,1]]]],[507]]],["truth",[1,1,[[11,1,1,0,1,[[331,1,1,0,1]]]],[10078]]]]},{"k":"H547","v":[["pillars",[1,1,[[11,1,1,0,1,[[330,1,1,0,1]]]],[10040]]]]},{"k":"H548","v":[["*",[2,2,[[15,2,2,0,2,[[421,1,1,0,1],[423,1,1,1,2]]]],[12549,12611]]],["portion",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12611]]],["sure",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12549]]]]},{"k":"H549","v":[["Amana",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17590]]]]},{"k":"H550","v":[["*",[28,22,[[9,26,20,0,20,[[269,1,1,0,1],[279,25,19,1,20]]],[12,2,2,20,22,[[340,1,1,20,21],[341,1,1,21,22]]]],[8083,8318,8319,8320,8321,8323,8324,8325,8326,8327,8332,8337,8339,8343,8344,8345,8346,8349,8350,8356,10362,10405]]],["Amnon",[25,20,[[9,23,18,0,18,[[269,1,1,0,1],[279,22,17,1,18]]],[12,2,2,18,20,[[340,1,1,18,19],[341,1,1,19,20]]]],[8083,8318,8319,8320,8321,8323,8326,8327,8332,8337,8339,8343,8344,8345,8346,8349,8350,8356,10362,10405]]],["Amnon's",[3,3,[[9,3,3,0,3,[[279,3,3,0,3]]]],[8324,8325,8345]]]]},{"k":"H551","v":[["*",[8,8,[[7,1,1,0,1,[[234,1,1,0,1]]],[17,6,6,1,7,[[444,1,1,1,2],[447,1,1,2,3],[454,2,2,3,5],[469,1,1,5,6],[471,1,1,6,7]]],[22,1,1,7,8,[[715,1,1,7,8]]]],[7184,13053,13130,13301,13302,13695,13740,18370]]],["doubt",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13130]]],["indeed",[2,2,[[17,2,2,0,2,[[454,2,2,0,2]]]],[13301,13302]]],["surely",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13695]]],["true",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7184]]],["truly",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13740]]],["truth",[2,2,[[17,1,1,0,1,[[444,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[13053,18370]]]]},{"k":"H552","v":[["*",[5,5,[[0,1,1,0,1,[[17,1,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]],[10,1,1,2,3,[[298,1,1,2,3]]],[13,1,1,3,4,[[372,1,1,3,4]]],[18,1,1,4,5,[[535,1,1,4,5]]]],[437,4412,9012,11300,14780]]],["+",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[437]]],["deed",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11300]]],["indeed",[3,3,[[3,1,1,0,1,[[138,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[18,1,1,2,3,[[535,1,1,2,3]]]],[4412,9012,14780]]]]},{"k":"H553","v":[["*",[41,41,[[0,1,1,0,1,[[24,1,1,0,1]]],[4,6,6,1,7,[[154,1,1,1,2],[155,1,1,2,3],[167,1,1,3,4],[183,3,3,4,7]]],[5,5,5,7,12,[[187,4,4,7,11],[196,1,1,11,12]]],[7,1,1,12,13,[[232,1,1,12,13]]],[9,1,1,13,14,[[288,1,1,13,14]]],[10,1,1,14,15,[[302,1,1,14,15]]],[12,2,2,15,17,[[359,1,1,15,16],[365,1,1,16,17]]],[13,7,7,17,24,[[376,1,1,17,18],[377,1,1,18,19],[379,2,2,19,21],[390,1,1,21,22],[398,1,1,22,23],[402,1,1,23,24]]],[17,2,2,24,26,[[439,1,1,24,25],[451,1,1,25,26]]],[18,7,7,26,33,[[495,1,1,26,27],[504,1,1,27,28],[508,1,1,28,29],[557,2,2,29,31],[566,1,1,31,32],[619,1,1,32,33]]],[19,3,3,33,36,[[635,1,1,33,34],[651,1,1,34,35],[658,1,1,35,36]]],[22,3,3,36,39,[[713,1,1,36,37],[719,1,1,37,38],[722,1,1,38,39]]],[29,1,1,39,40,[[880,1,1,39,40]]],[33,1,1,40,41,[[901,1,1,40,41]]]],[681,4968,5003,5326,5734,5735,5751,5857,5858,5860,5869,6089,7145,8620,9169,10977,11163,11413,11431,11460,11471,11690,11882,12006,12934,13243,14135,14299,14355,15213,15215,15347,16292,16630,17084,17301,18323,18461,18547,22393,22700]]],["+",[3,3,[[4,2,2,0,2,[[154,1,1,0,1],[167,1,1,1,2]]],[13,1,1,2,3,[[402,1,1,2,3]]]],[4968,5326,12006]]],["confirm",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18323]]],["courage",[9,9,[[4,3,3,0,3,[[183,3,3,0,3]]],[5,4,4,3,7,[[187,3,3,3,6],[196,1,1,6,7]]],[12,2,2,7,9,[[359,1,1,7,8],[365,1,1,8,9]]]],[5734,5735,5751,5857,5860,5869,6089,10977,11163]]],["courageous",[2,2,[[5,1,1,0,1,[[187,1,1,0,1]]],[13,1,1,1,2,[[398,1,1,1,2]]]],[5858,11882]]],["established",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16630]]],["fortify",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22700]]],["increaseth",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17084]]],["minded",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7145]]],["prevailed",[1,1,[[13,1,1,0,1,[[379,1,1,0,1]]]],[11471]]],["speed",[2,2,[[10,1,1,0,1,[[302,1,1,0,1]]],[13,1,1,1,2,[[376,1,1,1,2]]]],[9169,11413]]],["strengthen",[7,7,[[4,1,1,0,1,[[155,1,1,0,1]]],[17,1,1,1,2,[[451,1,1,1,2]]],[18,3,3,2,5,[[504,1,1,2,3],[508,1,1,3,4],[566,1,1,4,5]]],[22,1,1,5,6,[[719,1,1,5,6]]],[29,1,1,6,7,[[880,1,1,6,7]]]],[5003,13243,14299,14355,15347,18461,22393]]],["strengthened",[2,2,[[13,1,1,0,1,[[390,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]]],[11690,12934]]],["strengtheneth",[2,2,[[19,1,1,0,1,[[658,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[17301,18547]]],["strong",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[13,1,1,1,2,[[377,1,1,1,2]]],[18,3,3,2,5,[[495,1,1,2,3],[557,2,2,3,5]]]],[8620,11431,14135,15213,15215]]],["stronger",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[18,1,1,1,2,[[619,1,1,1,2]]]],[681,16292]]],["themselves",[1,1,[[13,1,1,0,1,[[379,1,1,0,1]]]],[11460]]]]},{"k":"H554","v":[["bay",[2,2,[[37,2,2,0,2,[[916,2,2,0,2]]]],[22950,22954]]]]},{"k":"H555","v":[["+",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13269]]]]},{"k":"H556","v":[["strength",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23050]]]]},{"k":"H557","v":[["Amzi",[2,2,[[12,1,1,0,1,[[343,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[10500,12600]]]]},{"k":"H558","v":[["Amaziah",[40,39,[[11,15,14,0,14,[[324,1,1,0,1],[325,1,1,1,2],[326,11,10,2,12],[327,2,2,12,14]]],[12,3,3,14,17,[[340,1,1,14,15],[341,1,1,15,16],[343,1,1,16,17]]],[13,19,19,17,36,[[390,1,1,17,18],[391,16,16,18,34],[392,2,2,34,36]]],[29,3,3,36,39,[[885,3,3,36,39]]]],[9871,9883,9897,9904,9905,9907,9909,9911,9913,9914,9917,9919,9926,9928,10373,10419,10499,11704,11705,11709,11713,11714,11715,11717,11718,11719,11721,11722,11724,11725,11727,11729,11730,11731,11733,11736,22474,22476,22478]]]]},{"k":"H559","v":[["*",[5305,4335,[[0,606,496,0,496,[[0,11,11,0,11],[1,3,3,11,14],[2,16,13,14,27],[3,9,8,27,35],[4,1,1,35,36],[5,3,3,36,39],[6,1,1,39,40],[7,2,2,40,42],[8,7,6,42,48],[9,1,1,48,49],[10,3,3,49,52],[11,7,7,52,59],[12,2,2,59,61],[13,4,4,61,65],[14,11,10,65,75],[15,9,8,75,83],[16,7,7,83,90],[17,25,18,90,108],[18,14,12,108,120],[19,14,11,120,131],[20,14,12,131,143],[21,18,12,143,155],[22,6,6,155,161],[23,39,34,161,195],[24,6,6,195,201],[25,18,12,201,213],[26,34,26,213,239],[27,6,6,239,245],[28,19,16,245,261],[29,22,20,261,281],[30,23,19,281,300],[31,24,15,300,315],[32,10,7,315,322],[33,10,8,322,330],[34,5,5,330,335],[36,20,18,335,353],[37,22,14,353,367],[38,7,6,367,373],[39,7,6,373,379],[40,13,11,379,390],[41,25,19,390,409],[42,23,16,409,425],[43,20,18,425,443],[44,11,8,443,451],[45,9,6,451,457],[46,16,14,457,471],[47,14,12,471,483],[48,2,2,483,485],[49,13,11,485,496]]],[1,299,246,496,742,[[50,6,6,496,502],[51,13,11,502,513],[52,21,13,513,526],[53,22,18,526,544],[54,20,16,544,560],[55,8,8,560,568],[56,11,7,568,575],[57,20,13,575,588],[58,10,7,588,595],[59,14,13,595,608],[60,5,4,608,612],[61,9,8,612,620],[62,7,6,620,626],[63,9,9,626,635],[64,5,4,635,639],[65,16,14,639,653],[66,10,9,653,662],[67,7,7,662,669],[68,12,10,669,679],[69,5,4,679,683],[70,2,1,683,684],[71,1,1,684,685],[72,1,1,685,686],[73,6,6,686,692],[74,1,1,692,693],[79,5,5,693,698],[80,4,3,698,701],[81,23,21,701,722],[82,13,10,722,732],[83,4,4,732,736],[84,5,3,736,739],[85,3,2,739,741],[89,1,1,741,742]]],[2,80,75,742,817,[[90,2,2,742,744],[93,2,2,744,746],[94,1,1,746,747],[95,6,6,747,753],[96,4,4,753,757],[97,4,3,757,760],[98,4,4,760,764],[99,6,5,764,769],[100,2,2,769,771],[101,2,2,771,773],[102,1,1,773,774],[103,3,3,774,777],[104,2,2,777,779],[105,1,1,779,780],[106,6,5,780,785],[107,2,2,785,787],[108,2,2,787,789],[109,3,3,789,792],[110,5,3,792,795],[111,5,5,795,800],[112,9,9,800,809],[113,3,3,809,812],[114,3,3,812,815],[116,2,2,815,817]]],[3,246,225,817,1042,[[117,2,2,817,819],[118,1,1,819,820],[119,5,5,820,825],[120,3,3,825,828],[121,7,7,828,835],[122,5,4,835,839],[123,3,2,839,841],[124,4,4,841,845],[125,5,5,845,850],[126,7,6,850,856],[127,14,12,856,868],[128,6,6,868,874],[129,6,6,874,880],[130,18,15,880,895],[131,8,7,895,902],[132,18,18,902,920],[133,4,3,920,923],[134,6,6,923,929],[135,2,2,929,931],[136,11,9,931,940],[137,8,8,940,948],[138,22,20,948,968],[139,20,19,968,987],[140,9,8,987,995],[141,5,5,995,1000],[142,5,4,1000,1004],[143,7,6,1004,1010],[144,3,3,1010,1013],[145,1,1,1013,1014],[146,1,1,1014,1015],[147,7,6,1015,1021],[148,11,9,1021,1030],[149,2,2,1030,1032],[150,4,4,1032,1036],[151,3,3,1036,1039],[152,3,3,1039,1042]]],[4,142,134,1042,1176,[[153,18,16,1042,1058],[154,7,6,1058,1064],[155,5,5,1064,1069],[156,2,2,1069,1071],[157,6,6,1071,1077],[158,2,2,1077,1079],[159,1,1,1079,1080],[160,1,1,1080,1081],[161,9,7,1081,1088],[162,2,2,1088,1090],[164,2,2,1090,1092],[165,4,4,1092,1096],[167,3,3,1096,1099],[169,3,3,1099,1102],[170,3,3,1102,1105],[171,1,1,1105,1106],[172,3,3,1106,1109],[173,2,2,1109,1111],[174,3,3,1111,1114],[177,3,3,1114,1117],[178,5,5,1117,1122],[179,16,16,1122,1138],[180,3,2,1138,1140],[181,5,5,1140,1145],[182,2,2,1145,1147],[183,9,8,1147,1155],[184,8,8,1155,1163],[185,12,12,1163,1175],[186,2,1,1175,1176]]],[5,137,113,1176,1289,[[187,8,6,1176,1182],[188,11,10,1182,1192],[189,8,7,1192,1199],[190,13,9,1199,1208],[191,6,5,1208,1213],[192,9,8,1213,1221],[193,11,9,1221,1230],[194,4,4,1230,1234],[195,13,9,1234,1243],[196,9,9,1243,1252],[197,2,2,1252,1254],[199,1,1,1254,1255],[200,2,2,1255,1257],[201,3,3,1257,1260],[203,6,5,1260,1265],[204,2,2,1265,1267],[206,2,2,1267,1269],[207,1,1,1269,1270],[208,16,11,1270,1281],[209,1,1,1281,1282],[210,9,7,1282,1289]]],[6,269,221,1289,1510,[[211,8,8,1289,1297],[212,4,3,1297,1300],[213,5,4,1300,1304],[214,10,8,1304,1312],[215,2,2,1312,1314],[216,22,19,1314,1333],[217,15,12,1333,1345],[218,18,15,1345,1360],[219,22,19,1360,1379],[220,4,4,1379,1383],[221,17,16,1383,1399],[222,9,5,1399,1404],[223,17,14,1404,1418],[224,11,8,1418,1426],[225,18,11,1426,1437],[226,24,20,1437,1457],[227,8,5,1457,1462],[228,14,13,1462,1475],[229,15,14,1475,1489],[230,13,9,1489,1498],[231,13,12,1498,1510]]],[7,54,44,1510,1554,[[232,8,8,1510,1518],[233,20,15,1518,1533],[234,13,10,1533,1543],[235,13,11,1543,1554]]],[8,422,337,1554,1891,[[236,9,9,1554,1563],[237,11,8,1563,1571],[238,14,10,1571,1581],[239,10,8,1581,1589],[240,5,4,1589,1593],[241,6,5,1593,1598],[242,6,5,1598,1603],[243,9,7,1603,1610],[244,21,18,1610,1628],[245,18,12,1628,1640],[246,12,10,1640,1650],[247,10,8,1650,1658],[248,8,7,1658,1665],[249,32,24,1665,1689],[250,21,19,1689,1708],[251,22,18,1708,1726],[252,25,20,1726,1746],[253,13,10,1746,1756],[254,12,9,1756,1765],[255,27,23,1765,1788],[256,11,8,1788,1796],[257,12,11,1796,1807],[258,16,14,1807,1821],[259,12,9,1821,1830],[260,13,13,1830,1843],[261,17,13,1843,1856],[262,7,5,1856,1861],[263,22,14,1861,1875],[264,8,6,1875,1881],[265,12,9,1881,1890],[266,1,1,1890,1891]]],[9,334,258,1891,2149,[[267,17,12,1891,1903],[268,15,9,1903,1912],[269,19,16,1912,1928],[270,3,3,1928,1931],[271,12,7,1931,1938],[272,5,5,1938,1943],[273,11,9,1943,1952],[275,13,9,1952,1961],[276,4,4,1961,1965],[277,14,12,1965,1977],[278,15,10,1977,1987],[279,25,20,1987,2007],[280,28,20,2007,2027],[281,22,19,2027,2046],[282,19,12,2046,2058],[283,14,12,2058,2070],[284,30,23,2070,2093],[285,22,19,2093,2112],[286,15,10,2112,2122],[287,10,8,2122,2130],[288,1,1,2130,2131],[289,3,3,2131,2134],[290,17,15,2134,2149]]],[10,326,244,2149,2393,[[291,32,27,2149,2176],[292,32,22,2176,2198],[293,15,10,2198,2208],[295,6,5,2208,2213],[296,1,1,2213,2214],[298,10,8,2214,2222],[299,5,5,2222,2227],[300,1,1,2227,2228],[301,8,6,2228,2234],[302,18,14,2234,2248],[303,20,15,2248,2263],[304,5,4,2263,2267],[305,1,1,2267,2268],[306,2,2,2268,2270],[307,14,14,2270,2284],[308,35,27,2284,2311],[309,12,11,2311,2322],[310,44,26,2322,2348],[311,20,15,2348,2363],[312,45,30,2363,2393]]],[11,345,244,2393,2637,[[313,10,7,2393,2400],[314,25,16,2400,2416],[315,15,10,2416,2426],[316,43,28,2426,2454],[317,23,19,2454,2473],[318,31,27,2473,2500],[319,16,12,2500,2512],[320,20,12,2512,2524],[321,41,23,2524,2547],[322,21,17,2547,2564],[323,4,3,2564,2567],[324,2,2,2567,2569],[325,9,6,2569,2575],[326,4,3,2575,2578],[327,1,1,2578,2579],[328,2,2,2579,2581],[329,6,5,2581,2586],[330,16,13,2586,2599],[331,15,8,2599,2607],[332,19,13,2607,2620],[333,4,4,2620,2624],[334,11,8,2624,2632],[335,6,4,2632,2636],[337,1,1,2636,2637]]],[12,72,65,2637,2702,[[341,2,2,2637,2639],[347,1,1,2639,2640],[348,6,6,2640,2646],[349,2,2,2646,2648],[350,3,3,2648,2651],[351,5,4,2651,2655],[352,3,3,2655,2658],[353,4,4,2658,2662],[354,10,8,2662,2670],[356,4,4,2670,2674],[358,18,14,2674,2688],[359,5,5,2688,2693],[360,1,1,2693,2694],[364,1,1,2694,2695],[365,4,4,2695,2699],[366,3,3,2699,2702]]],[13,184,145,2702,2847,[[367,4,4,2702,2706],[368,5,5,2706,2711],[372,9,7,2711,2718],[373,4,4,2718,2722],[374,1,1,2722,2723],[375,1,1,2723,2724],[376,13,9,2724,2733],[377,4,3,2733,2736],[378,4,3,2736,2739],[379,2,2,2739,2741],[380,3,3,2741,2744],[381,1,1,2744,2745],[382,2,2,2745,2747],[384,43,27,2747,2774],[385,3,3,2774,2777],[386,8,7,2777,2784],[387,3,2,2784,2786],[388,1,1,2786,2787],[389,5,4,2787,2791],[390,6,5,2791,2796],[391,11,8,2796,2804],[392,2,2,2804,2806],[394,5,4,2806,2810],[395,7,7,2810,2817],[396,2,2,2817,2819],[397,4,3,2819,2822],[398,11,9,2822,2831],[399,3,3,2831,2834],[400,10,7,2834,2841],[401,5,4,2841,2845],[402,2,2,2845,2847]]],[14,15,14,2847,2861,[[403,2,2,2847,2849],[404,1,1,2849,2850],[406,2,2,2850,2852],[410,3,2,2852,2854],[411,4,4,2854,2858],[412,3,3,2858,2861]]],[15,61,55,2861,2916,[[413,3,3,2861,2864],[414,11,10,2864,2874],[416,9,8,2874,2882],[417,10,8,2882,2890],[418,10,9,2890,2899],[419,2,2,2899,2901],[420,5,5,2901,2906],[421,4,4,2906,2910],[425,7,6,2910,2916]]],[16,52,44,2916,2960,[[426,6,5,2916,2921],[427,4,4,2921,2925],[428,4,4,2925,2929],[429,4,4,2929,2933],[430,8,7,2933,2940],[431,12,8,2940,2948],[432,8,6,2948,2954],[433,2,2,2954,2956],[434,4,4,2956,2960]]],[17,97,94,2960,3054,[[436,11,10,2960,2970],[437,7,6,2970,2976],[438,2,2,2976,2978],[439,1,1,2978,2979],[441,2,2,2979,2981],[442,2,2,2981,2983],[443,2,2,2983,2985],[444,5,5,2985,2990],[445,1,1,2990,2991],[446,2,2,2991,2993],[447,1,1,2993,2994],[450,1,1,2994,2995],[451,1,1,2995,2996],[453,1,1,2996,2997],[454,2,2,2997,2999],[455,2,2,2999,3001],[456,3,3,3001,3004],[457,4,4,3004,3008],[458,2,2,3008,3010],[459,1,1,3010,3011],[460,1,1,3011,3012],[461,1,1,3012,3013],[462,1,1,3013,3014],[463,4,3,3014,3017],[464,2,2,3017,3019],[466,2,2,3019,3021],[467,4,4,3021,3025],[468,3,3,3025,3028],[469,6,6,3028,3034],[470,5,5,3034,3039],[471,3,3,3039,3042],[472,3,3,3042,3045],[473,3,3,3045,3048],[474,1,1,3048,3049],[475,3,3,3049,3052],[477,2,2,3052,3054]]],[18,98,97,3054,3151,[[479,1,1,3054,3055],[480,1,1,3055,3056],[481,2,2,3056,3058],[487,3,3,3058,3061],[488,1,1,3061,3062],[489,2,2,3062,3064],[490,1,1,3064,3065],[491,1,1,3065,3066],[493,1,1,3066,3067],[504,1,1,3067,3068],[506,1,1,3068,3069],[507,1,1,3069,3070],[508,2,2,3070,3072],[509,1,1,3072,3073],[510,1,1,3073,3074],[512,6,5,3074,3079],[515,1,1,3079,3080],[516,1,1,3080,3081],[517,4,4,3081,3085],[518,2,2,3085,3087],[519,3,3,3087,3090],[522,1,1,3090,3091],[527,2,2,3091,3093],[530,1,1,3093,3094],[532,1,1,3094,3095],[535,1,1,3095,3096],[541,1,1,3096,3097],[543,1,1,3097,3098],[545,1,1,3098,3099],[547,2,2,3099,3101],[548,2,2,3101,3103],[550,2,2,3103,3105],[551,1,1,3105,3106],[552,1,1,3106,3107],[554,1,1,3107,3108],[555,1,1,3108,3109],[556,1,1,3109,3110],[559,1,1,3110,3111],[560,2,2,3111,3113],[564,1,1,3113,3114],[566,2,2,3114,3116],[567,1,1,3116,3117],[568,1,1,3117,3118],[571,3,3,3118,3121],[572,1,1,3121,3122],[573,1,1,3122,3123],[579,1,1,3123,3124],[582,3,3,3124,3127],[583,3,3,3127,3130],[584,2,2,3130,3132],[592,1,1,3132,3133],[593,1,1,3133,3134],[595,3,3,3134,3137],[596,2,2,3137,3139],[599,1,1,3139,3140],[601,1,1,3140,3141],[603,1,1,3141,3142],[606,2,2,3142,3144],[614,1,1,3144,3145],[616,2,2,3145,3147],[617,1,1,3147,3148],[619,1,1,3148,3149],[622,2,2,3149,3151]]],[19,25,25,3151,3176,[[628,2,2,3151,3153],[630,1,1,3153,3154],[631,1,1,3154,3155],[632,1,1,3155,3156],[634,2,2,3156,3158],[636,2,2,3158,3160],[647,3,3,3160,3163],[649,1,1,3163,3164],[650,1,1,3164,3165],[651,3,3,3165,3168],[652,1,1,3168,3169],[653,2,2,3169,3171],[655,1,1,3171,3172],[657,4,4,3172,3176]]],[20,20,20,3176,3196,[[659,3,3,3176,3179],[660,3,3,3179,3182],[661,2,2,3182,3184],[663,1,1,3184,3185],[664,1,1,3185,3186],[665,3,3,3186,3189],[666,3,3,3189,3192],[667,1,1,3192,3193],[668,1,1,3193,3194],[670,2,2,3194,3196]]],[21,2,2,3196,3198,[[672,1,1,3196,3197],[677,1,1,3197,3198]]],[22,247,212,3198,3410,[[679,2,2,3198,3200],[680,1,1,3200,3201],[681,3,3,3201,3204],[682,2,2,3204,3206],[683,2,2,3206,3208],[684,9,6,3208,3214],[685,8,8,3214,3222],[686,9,7,3222,3229],[687,1,1,3229,3230],[688,3,3,3230,3233],[690,2,2,3233,3235],[692,4,4,3235,3239],[694,1,1,3239,3240],[696,1,1,3240,3241],[697,3,3,3241,3244],[698,3,3,3244,3247],[699,4,4,3247,3251],[700,3,3,3251,3254],[701,3,2,3254,3256],[702,1,1,3256,3257],[703,1,1,3257,3258],[706,3,3,3258,3261],[707,9,6,3261,3267],[708,6,6,3267,3273],[709,1,1,3273,3274],[710,1,1,3274,3275],[711,2,2,3275,3277],[713,1,1,3277,3278],[714,15,12,3278,3290],[715,15,8,3290,3298],[716,11,9,3298,3307],[717,9,5,3307,3312],[718,6,5,3312,3317],[719,7,6,3317,3323],[720,3,3,3323,3326],[721,5,5,3326,3331],[722,12,11,3331,3342],[723,9,9,3342,3351],[724,1,1,3351,3352],[725,4,3,3352,3355],[726,5,5,3355,3360],[727,12,12,3360,3372],[728,1,1,3372,3373],[729,3,3,3373,3376],[730,3,3,3376,3379],[732,4,4,3379,3383],[734,5,3,3383,3386],[735,5,5,3386,3391],[736,1,1,3391,3392],[737,2,1,3392,3393],[739,1,1,3393,3394],[740,3,2,3394,3396],[741,1,1,3396,3397],[743,7,6,3397,3403],[744,8,7,3403,3410]]],[23,478,379,3410,3789,[[745,11,8,3410,3418],[746,14,11,3418,3429],[747,8,7,3429,3436],[748,7,5,3436,3441],[749,8,7,3441,3448],[750,9,8,3448,3456],[751,10,10,3456,3466],[752,6,5,3466,3471],[753,5,5,3471,3476],[754,3,3,3476,3479],[755,13,10,3479,3489],[756,2,2,3489,3491],[757,13,10,3491,3501],[758,8,6,3501,3507],[759,6,4,3507,3511],[760,8,8,3511,3519],[761,5,5,3519,3524],[762,9,7,3524,3531],[763,7,5,3531,3536],[764,4,4,3536,3540],[765,8,6,3540,3546],[766,11,11,3546,3557],[767,19,11,3557,3568],[768,5,4,3568,3572],[769,10,8,3572,3580],[770,16,10,3580,3590],[771,15,9,3590,3599],[772,16,10,3599,3609],[773,19,15,3609,3624],[774,7,6,3624,3630],[775,12,10,3630,3640],[776,18,14,3640,3654],[777,15,13,3654,3667],[778,10,6,3667,3673],[779,13,10,3673,3683],[780,14,11,3683,3694],[781,13,9,3694,3703],[782,19,18,3703,3721],[783,5,3,3721,3724],[784,6,5,3724,3729],[785,2,2,3729,3731],[786,11,9,3731,3740],[787,6,3,3740,3743],[788,15,11,3743,3754],[789,5,4,3754,3758],[790,4,4,3758,3762],[791,1,1,3762,3763],[792,6,6,3763,3769],[793,8,8,3769,3777],[794,4,4,3777,3781],[795,9,8,3781,3789]]],[24,10,10,3789,3799,[[798,3,3,3789,3792],[799,5,5,3792,3797],[800,2,2,3797,3799]]],[25,363,280,3799,4079,[[803,4,3,3799,3802],[804,12,10,3802,3812],[805,4,4,3812,3816],[806,3,3,3816,3819],[807,5,3,3819,3822],[808,3,3,3822,3825],[809,9,8,3825,3833],[810,8,7,3833,3840],[811,3,2,3840,3842],[812,14,9,3842,3851],[813,17,13,3851,3864],[814,15,13,3864,3877],[815,8,6,3877,3883],[816,2,2,3883,3885],[817,8,6,3885,3891],[818,10,7,3891,3898],[819,5,5,3898,3903],[820,1,1,3903,3904],[821,23,16,3904,3920],[822,15,9,3920,3929],[823,9,7,3929,3936],[824,8,8,3936,3944],[825,11,8,3944,3952],[826,11,8,3952,3960],[827,7,7,3960,3967],[828,4,2,3967,3969],[829,14,9,3969,3978],[830,9,7,3978,3985],[831,8,7,3985,3992],[832,4,4,3992,3996],[833,5,5,3996,4001],[834,21,16,4001,4017],[835,7,6,4017,4023],[836,7,5,4023,4028],[837,19,14,4028,4042],[838,17,10,4042,4052],[839,9,7,4052,4059],[840,5,3,4059,4062],[842,1,1,4062,4063],[843,1,1,4063,4064],[844,3,2,4064,4066],[845,5,4,4066,4070],[846,2,2,4070,4072],[847,4,4,4072,4076],[848,3,3,4076,4079]]],[26,23,22,4079,4101,[[850,4,4,4079,4083],[851,2,2,4083,4085],[857,6,6,4085,4091],[858,2,2,4091,4093],[859,6,5,4093,4098],[861,3,3,4098,4101]]],[27,22,20,4101,4121,[[862,6,5,4101,4106],[863,6,5,4106,4111],[864,2,2,4111,4113],[868,1,1,4113,4114],[871,2,2,4114,4116],[873,1,1,4116,4117],[874,2,2,4117,4119],[875,2,2,4119,4121]]],[28,5,4,4121,4125,[[877,4,3,4121,4124],[878,1,1,4124,4125]]],[29,52,45,4125,4170,[[879,9,9,4125,4134],[880,5,5,4134,4139],[881,4,4,4139,4143],[882,1,1,4143,4144],[883,7,6,4144,4150],[884,4,2,4150,4152],[885,14,12,4152,4164],[886,5,3,4164,4167],[887,3,3,4167,4170]]],[30,2,2,4170,4172,[[888,2,2,4170,4172]]],[31,22,20,4172,4192,[[889,9,9,4172,4181],[890,3,3,4181,4184],[891,4,3,4184,4187],[892,6,5,4187,4192]]],[32,10,10,4192,4202,[[894,3,3,4192,4195],[895,3,3,4195,4198],[896,2,2,4198,4200],[898,1,1,4200,4201],[899,1,1,4201,4202]]],[33,2,2,4202,4204,[[900,1,1,4202,4203],[902,1,1,4203,4204]]],[34,3,3,4204,4207,[[904,3,3,4204,4207]]],[35,5,5,4207,4212,[[906,1,1,4207,4208],[907,1,1,4208,4209],[908,3,3,4209,4212]]],[36,26,19,4212,4231,[[909,10,7,4212,4219],[910,16,12,4219,4231]]],[37,109,74,4231,4305,[[911,24,14,4231,4245],[912,5,3,4245,4248],[913,7,5,4248,4253],[914,17,9,4253,4262],[915,10,7,4262,4269],[916,9,6,4269,4275],[917,9,6,4275,4281],[918,15,13,4281,4294],[921,6,6,4294,4300],[922,1,1,4300,4301],[923,6,4,4301,4305]]],[38,40,30,4305,4335,[[925,18,12,4305,4317],[926,8,6,4317,4323],[927,12,10,4323,4333],[928,2,2,4333,4335]]]],[2,5,8,10,13,19,21,23,25,27,28,46,48,53,56,57,58,59,64,65,66,67,68,69,71,72,77,80,85,87,88,89,92,94,102,134,140,144,150,160,198,204,206,213,217,222,230,231,243,269,270,272,299,305,309,310,311,316,317,326,332,355,357,358,359,361,362,363,364,365,367,368,369,373,378,383,386,387,389,390,391,392,394,398,400,406,412,414,415,416,427,429,430,433,434,436,437,439,441,444,447,450,451,452,453,454,455,456,459,462,464,466,469,471,472,474,475,478,488,491,497,498,499,500,501,504,505,506,508,510,511,514,519,520,523,525,529,530,535,537,539,542,543,548,549,550,552,554,555,556,558,559,561,563,567,574,576,579,581,584,585,593,596,597,598,603,605,608,609,610,614,615,616,618,621,622,624,625,628,630,631,633,634,635,636,637,638,641,645,646,647,648,649,651,656,680,681,688,689,690,691,694,699,701,702,703,708,712,714,716,719,720,724,728,729,733,738,740,745,746,747,748,749,751,752,753,754,758,759,760,761,762,763,764,765,766,768,769,773,774,779,786,789,790,793,799,800,801,802,803,809,810,813,814,816,820,821,827,828,829,830,831,832,833,836,838,841,843,844,845,846,848,850,853,854,855,857,858,859,861,864,874,876,878,881,884,885,887,889,897,899,902,904,908,909,916,919,921,922,924,930,932,934,936,937,940,944,945,946,947,948,954,955,956,957,965,968,969,970,972,973,975,984,988,991,992,994,1000,1010,1011,1012,1013,1021,1022,1028,1089,1091,1092,1093,1096,1097,1098,1099,1100,1102,1103,1104,1105,1109,1113,1115,1116,1118,1127,1130,1132,1135,1136,1137,1140,1141,1142,1143,1144,1145,1147,1148,1156,1157,1161,1163,1166,1168,1179,1180,1181,1184,1188,1190,1204,1210,1211,1219,1220,1233,1234,1236,1239,1249,1250,1253,1254,1256,1259,1261,1262,1264,1265,1266,1270,1273,1274,1280,1281,1283,1285,1288,1289,1290,1292,1293,1295,1296,1297,1298,1301,1306,1307,1308,1310,1313,1317,1318,1319,1321,1325,1328,1331,1334,1339,1340,1341,1342,1343,1344,1345,1346,1347,1349,1350,1351,1352,1356,1361,1362,1367,1374,1375,1382,1384,1386,1388,1389,1416,1417,1419,1420,1421,1423,1424,1425,1428,1429,1435,1436,1438,1443,1445,1449,1450,1451,1452,1453,1454,1455,1459,1460,1462,1466,1469,1470,1471,1472,1474,1502,1510,1511,1512,1517,1521,1522,1523,1524,1525,1530,1531,1541,1547,1548,1550,1551,1554,1560,1561,1562,1563,1564,1567,1568,1572,1573,1574,1576,1582,1583,1584,1585,1586,1590,1591,1592,1593,1594,1595,1596,1597,1602,1603,1604,1605,1607,1608,1611,1612,1614,1615,1619,1620,1622,1623,1624,1626,1627,1628,1633,1634,1635,1636,1637,1638,1640,1642,1645,1646,1647,1648,1649,1651,1653,1654,1656,1657,1661,1665,1667,1681,1684,1685,1686,1693,1694,1699,1701,1702,1704,1711,1715,1718,1719,1720,1726,1729,1730,1735,1736,1737,1738,1739,1743,1747,1750,1755,1764,1769,1771,1778,1780,1784,1785,1786,1787,1789,1793,1798,1801,1802,1805,1806,1807,1810,1814,1815,1817,1819,1837,1842,1843,1847,1849,1859,1868,1870,1875,1881,1884,1886,1890,1892,1894,1900,1901,1902,1904,1914,1915,1921,1929,1944,1946,1950,1951,1953,1955,1956,1958,1959,1962,1966,1970,1972,1975,1979,1980,1985,1986,1987,1988,1990,1992,1993,1997,1999,2002,2005,2009,2013,2014,2016,2023,2029,2034,2035,2036,2038,2041,2047,2049,2050,2051,2052,2070,2071,2073,2082,2122,2157,2178,2180,2184,2185,2189,2191,2196,2393,2399,2404,2413,2416,2421,2432,2433,2439,2440,2442,2443,2446,2447,2449,2450,2451,2455,2456,2459,2460,2461,2462,2464,2465,2467,2468,2469,2471,2474,2478,2485,2487,2488,2490,2491,2492,2493,2494,2497,2505,2506,2523,2532,2535,2561,2571,2572,2708,2746,2747,2796,2797,2844,2850,2857,2858,2868,2873,2874,2901,2902,2907,2908,2918,2922,2948,2955,2956,2959,2960,2980,2981,2983,2985,2993,2998,2999,3045,3046,3053,3112,3144,3146,3169,3170,3203,3236,3237,3243,3247,3249,3252,3253,3282,3283,3319,3320,3342,3346,3361,3362,3370,3372,3386,3387,3395,3403,3404,3411,3412,3425,3426,3428,3435,3436,3447,3459,3461,3470,3471,3489,3571,3572,3605,3652,3659,3697,3703,3706,3732,3736,3744,3760,3764,3793,3797,3803,3804,3811,3813,3814,3824,3825,3845,3846,3854,3861,3940,3941,3944,3962,3966,3972,3973,3974,3975,3989,4017,4018,4019,4023,4024,4028,4035,4036,4037,4040,4042,4044,4045,4047,4051,4052,4053,4061,4063,4065,4070,4072,4073,4076,4092,4102,4105,4106,4107,4110,4112,4115,4118,4119,4121,4122,4123,4125,4128,4134,4136,4139,4148,4149,4154,4155,4170,4171,4188,4190,4191,4197,4199,4202,4206,4209,4210,4214,4216,4217,4218,4220,4222,4228,4230,4231,4235,4238,4240,4245,4254,4256,4258,4277,4281,4282,4283,4287,4290,4291,4314,4318,4321,4323,4325,4329,4330,4331,4334,4342,4347,4348,4354,4356,4361,4367,4374,4379,4380,4383,4384,4385,4387,4388,4389,4391,4392,4393,4395,4403,4404,4405,4407,4409,4410,4412,4413,4417,4419,4420,4421,4423,4427,4428,4429,4431,4432,4433,4434,4435,4439,4441,4442,4443,4445,4446,4449,4456,4457,4458,4461,4466,4467,4469,4475,4476,4481,4483,4487,4490,4492,4541,4554,4556,4560,4562,4566,4569,4572,4578,4579,4580,4648,4649,4665,4667,4679,4685,4689,4713,4720,4723,4724,4728,4734,4738,4743,4747,4749,4810,4811,4817,4818,4829,4832,4846,4854,4855,4881,4884,4885,4897,4898,4901,4906,4908,4912,4914,4917,4919,4920,4921,4926,4929,4931,4933,4934,4940,4942,4947,4955,4964,4969,4977,4993,4996,4998,5001,5010,5014,5054,5058,5077,5080,5081,5083,5106,5107,5128,5154,5161,5169,5170,5180,5182,5183,5185,5187,5197,5260,5270,5274,5278,5284,5285,5328,5330,5335,5375,5378,5380,5400,5401,5405,5413,5430,5432,5435,5454,5467,5484,5486,5487,5554,5555,5556,5569,5571,5579,5583,5584,5586,5594,5596,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5678,5679,5681,5698,5701,5703,5704,5720,5721,5730,5735,5738,5742,5744,5745,5751,5753,5765,5778,5784,5785,5795,5798,5804,5806,5812,5817,5818,5819,5822,5823,5828,5830,5832,5833,5834,5837,5843,5852,5861,5862,5863,5864,5867,5870,5871,5872,5873,5878,5883,5885,5886,5890,5893,5896,5898,5899,5900,5901,5902,5903,5911,5913,5915,5916,5917,5925,5927,5931,5932,5936,5943,5947,5948,5949,5951,5955,5956,5957,5959,5965,5971,5975,5978,5979,5983,5984,5986,5989,5995,5996,6001,6003,6006,6008,6020,6043,6044,6045,6046,6048,6056,6058,6059,6061,6067,6070,6072,6076,6081,6082,6086,6088,6089,6113,6116,6155,6193,6196,6218,6220,6221,6279,6289,6290,6291,6292,6296,6301,6373,6374,6383,6428,6434,6437,6441,6442,6450,6452,6453,6454,6457,6459,6462,6478,6492,6495,6497,6498,6500,6503,6510,6511,6512,6516,6521,6523,6524,6533,6546,6548,6565,6587,6588,6592,6596,6605,6607,6608,6613,6617,6618,6619,6621,6624,6646,6662,6664,6666,6667,6668,6669,6670,6671,6672,6674,6676,6677,6679,6683,6684,6685,6686,6690,6693,6696,6697,6698,6699,6701,6703,6707,6708,6709,6711,6712,6718,6720,6721,6724,6725,6726,6728,6734,6737,6738,6739,6740,6741,6742,6743,6744,6755,6757,6761,6762,6763,6764,6765,6766,6767,6768,6769,6782,6783,6785,6790,6791,6792,6802,6808,6821,6822,6826,6829,6831,6835,6836,6837,6838,6839,6841,6842,6844,6846,6848,6859,6864,6865,6866,6867,6870,6871,6873,6874,6875,6887,6890,6891,6892,6894,6895,6896,6897,6899,6900,6901,6902,6906,6907,6911,6912,6921,6922,6923,6924,6925,6927,6930,6931,6932,6935,6936,6939,6940,6941,6942,6945,6947,6951,6954,6955,6956,6958,6959,6960,6961,6962,6963,6964,6966,6967,6969,6972,6973,6974,6975,6977,6979,6982,6983,6989,6990,6993,6995,6996,6997,6998,6999,7001,7002,7007,7011,7012,7016,7017,7018,7029,7030,7032,7033,7035,7036,7037,7041,7042,7044,7046,7047,7052,7054,7057,7058,7062,7066,7072,7077,7082,7086,7093,7103,7105,7107,7108,7110,7112,7118,7119,7120,7121,7122,7124,7135,7137,7138,7139,7142,7143,7146,7147,7151,7153,7154,7155,7156,7157,7159,7160,7162,7163,7164,7168,7169,7170,7171,7173,7177,7181,7182,7183,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7198,7199,7201,7204,7207,7220,7223,7226,7227,7229,7230,7234,7235,7238,7241,7255,7256,7260,7263,7267,7270,7276,7280,7281,7282,7284,7285,7286,7287,7292,7293,7294,7300,7303,7304,7311,7313,7314,7318,7319,7326,7327,7329,7330,7333,7334,7335,7351,7352,7355,7357,7358,7360,7364,7374,7375,7376,7379,7380,7388,7391,7394,7396,7397,7398,7399,7400,7401,7402,7403,7406,7408,7409,7410,7412,7414,7415,7417,7418,7419,7420,7429,7430,7432,7433,7434,7436,7437,7440,7442,7445,7446,7447,7448,7450,7452,7454,7455,7457,7458,7459,7461,7464,7465,7466,7470,7472,7479,7480,7488,7489,7494,7496,7497,7498,7504,7509,7514,7515,7516,7517,7518,7519,7520,7525,7526,7527,7532,7536,7537,7541,7542,7544,7546,7548,7549,7550,7551,7552,7553,7561,7562,7566,7570,7572,7573,7574,7575,7576,7577,7578,7580,7582,7584,7586,7588,7590,7592,7593,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7610,7611,7612,7613,7614,7617,7626,7628,7635,7643,7644,7645,7646,7647,7648,7650,7651,7652,7655,7657,7661,7662,7663,7673,7674,7676,7683,7684,7687,7693,7694,7697,7698,7699,7700,7701,7708,7710,7717,7720,7721,7723,7725,7728,7730,7731,7732,7733,7734,7735,7736,7737,7739,7740,7741,7742,7748,7751,7752,7756,7757,7759,7760,7762,7766,7767,7770,7772,7773,7774,7776,7777,7780,7781,7783,7786,7790,7792,7794,7796,7799,7800,7801,7803,7804,7805,7809,7811,7812,7813,7814,7817,7819,7820,7821,7822,7827,7829,7831,7832,7837,7840,7843,7845,7847,7848,7849,7852,7855,7856,7866,7867,7871,7874,7875,7880,7882,7885,7893,7896,7900,7901,7902,7906,7911,7913,7914,7915,7919,7920,7922,7923,7924,7926,7927,7930,7931,7935,7940,7941,7942,7943,7944,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7963,7965,7970,7971,7972,7973,7975,7976,7984,7985,7986,7991,7993,7998,8000,8001,8004,8013,8025,8026,8027,8028,8029,8030,8031,8035,8036,8037,8038,8040,8050,8053,8054,8063,8069,8070,8071,8075,8076,8088,8089,8093,8094,8095,8097,8098,8099,8102,8104,8105,8109,8112,8114,8116,8119,8128,8129,8130,8133,8134,8138,8140,8151,8152,8155,8166,8169,8177,8178,8179,8182,8183,8184,8185,8187,8188,8198,8206,8207,8228,8229,8230,8231,8233,8234,8235,8236,8238,8242,8243,8245,8251,8262,8264,8267,8269,8270,8271,8274,8278,8279,8280,8282,8284,8287,8291,8293,8297,8299,8304,8305,8307,8308,8313,8321,8322,8323,8324,8326,8327,8328,8329,8332,8333,8334,8337,8341,8342,8343,8345,8347,8349,8350,8352,8358,8360,8361,8363,8364,8365,8366,8367,8368,8369,8371,8373,8374,8375,8377,8378,8380,8386,8387,8388,8391,8392,8393,8396,8397,8398,8399,8402,8403,8404,8408,8410,8411,8414,8415,8416,8420,8422,8423,8428,8429,8430,8433,8435,8436,8437,8442,8443,8444,8446,8447,8450,8454,8455,8456,8457,8458,8463,8464,8465,8469,8470,8478,8480,8481,8482,8483,8488,8489,8490,8492,8496,8497,8498,8499,8500,8501,8503,8504,8505,8506,8507,8508,8509,8510,8511,8513,8516,8519,8520,8522,8524,8530,8532,8533,8534,8536,8537,8540,8541,8544,8545,8549,8552,8554,8555,8558,8560,8563,8565,8570,8571,8572,8574,8575,8581,8582,8583,8584,8585,8586,8596,8597,8604,8656,8668,8670,8693,8694,8695,8702,8703,8704,8705,8706,8708,8709,8710,8713,8714,8715,8716,8719,8722,8723,8728,8730,8733,8734,8740,8741,8742,8745,8746,8747,8748,8749,8750,8751,8753,8756,8758,8759,8760,8764,8765,8768,8769,8770,8771,8774,8778,8783,8784,8785,8786,8787,8788,8790,8791,8792,8793,8796,8799,8800,8801,8806,8808,8809,8812,8814,8821,8822,8827,8833,8838,8839,8840,8841,8842,8843,8880,8883,8884,8885,8886,8907,8997,9000,9003,9008,9010,9014,9032,9040,9054,9056,9059,9060,9064,9085,9110,9119,9126,9129,9130,9139,9154,9156,9157,9158,9160,9161,9163,9165,9167,9173,9174,9175,9177,9179,9186,9187,9188,9190,9192,9193,9197,9198,9199,9200,9202,9205,9210,9211,9215,9220,9223,9224,9225,9267,9284,9299,9318,9319,9325,9327,9328,9329,9330,9331,9335,9336,9337,9338,9340,9341,9342,9346,9348,9349,9350,9351,9352,9355,9356,9358,9359,9362,9363,9365,9366,9367,9368,9371,9372,9374,9375,9377,9380,9381,9382,9384,9385,9389,9391,9392,9394,9396,9397,9398,9400,9401,9402,9407,9410,9412,9413,9415,9416,9417,9418,9419,9420,9421,9422,9425,9426,9430,9431,9436,9439,9440,9441,9442,9443,9444,9445,9447,9448,9450,9453,9454,9455,9457,9458,9460,9461,9464,9465,9466,9468,9470,9471,9474,9479,9483,9484,9485,9486,9487,9488,9489,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9504,9505,9506,9507,9508,9510,9511,9512,9514,9516,9529,9535,9537,9538,9539,9541,9544,9549,9553,9554,9555,9556,9557,9560,9561,9565,9566,9567,9568,9569,9570,9571,9572,9574,9583,9584,9586,9587,9588,9589,9590,9592,9593,9599,9604,9605,9606,9609,9610,9612,9615,9616,9617,9618,9619,9622,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9639,9641,9643,9644,9645,9646,9650,9651,9652,9653,9654,9655,9657,9658,9660,9662,9663,9664,9666,9667,9668,9669,9670,9672,9673,9675,9676,9677,9679,9680,9681,9682,9683,9684,9685,9686,9687,9689,9690,9691,9692,9693,9694,9695,9696,9700,9701,9702,9703,9705,9706,9707,9708,9709,9710,9711,9713,9716,9717,9719,9720,9721,9725,9726,9728,9731,9732,9733,9734,9735,9736,9737,9739,9740,9741,9746,9757,9759,9761,9762,9767,9768,9769,9771,9773,9774,9775,9776,9777,9778,9779,9781,9783,9787,9788,9789,9790,9792,9793,9794,9797,9798,9799,9801,9802,9806,9807,9808,9809,9811,9813,9815,9816,9817,9818,9823,9834,9841,9844,9854,9857,9885,9886,9887,9888,9889,9890,9902,9904,9905,9937,9970,9978,9995,9996,10009,10010,10018,10038,10043,10044,10046,10049,10050,10051,10052,10053,10054,10055,10056,10060,10064,10067,10070,10071,10076,10081,10084,10093,10099,10100,10102,10103,10105,10106,10107,10108,10112,10113,10114,10115,10117,10123,10126,10129,10131,10148,10153,10154,10155,10157,10160,10161,10163,10182,10183,10186,10192,10246,10394,10395,10663,10674,10675,10678,10679,10690,10692,10737,10739,10762,10764,10772,10784,10785,10786,10788,10793,10803,10807,10838,10851,10855,10856,10864,10865,10866,10867,10869,10870,10879,10887,10909,10910,10912,10919,10936,10937,10942,10943,10944,10945,10947,10949,10951,10952,10956,10957,10958,10961,10965,10966,10969,10971,10972,11008,11132,11145,11146,11149,11163,11165,11174,11184,11196,11201,11202,11205,11212,11214,11222,11223,11226,11283,11286,11290,11296,11298,11302,11319,11336,11342,11345,11346,11357,11369,11398,11400,11401,11402,11404,11405,11407,11409,11411,11416,11417,11418,11442,11443,11444,11457,11461,11479,11482,11486,11492,11511,11516,11545,11546,11547,11548,11549,11550,11552,11553,11554,11555,11556,11557,11558,11559,11560,11561,11562,11563,11565,11566,11567,11568,11569,11571,11572,11573,11575,11578,11582,11585,11589,11593,11595,11602,11607,11608,11624,11631,11636,11653,11659,11667,11669,11670,11682,11683,11685,11697,11699,11708,11711,11713,11719,11720,11721,11722,11723,11750,11755,11773,11774,11777,11787,11796,11809,11812,11815,11818,11821,11822,11833,11845,11858,11864,11865,11876,11879,11881,11884,11885,11886,11887,11892,11899,11912,11915,11924,11948,11949,11951,11953,11956,11957,11959,11969,11987,11989,11991,12015,12016,12017,12018,12090,12112,12113,12223,12229,12238,12243,12247,12248,12254,12262,12264,12299,12301,12304,12309,12310,12311,12312,12313,12314,12324,12325,12326,12327,12361,12362,12369,12370,12371,12373,12378,12381,12384,12385,12386,12389,12390,12391,12394,12395,12403,12404,12407,12408,12409,12410,12411,12412,12420,12423,12485,12494,12502,12503,12504,12508,12516,12526,12529,12534,12680,12682,12688,12690,12692,12693,12712,12715,12718,12719,12720,12726,12737,12739,12746,12750,12751,12755,12758,12769,12772,12775,12777,12782,12783,12784,12785,12786,12791,12793,12794,12796,12797,12798,12799,12800,12803,12806,12809,12810,12812,12813,12815,12816,12822,12824,12846,12847,12848,12859,12874,12876,12877,12878,12881,12883,12885,12886,12887,12890,12893,12894,12895,12897,12900,12901,12906,12907,12931,12979,13000,13012,13021,13030,13039,13052,13058,13063,13073,13078,13088,13109,13112,13129,13204,13239,13277,13298,13325,13327,13333,13356,13369,13383,13390,13402,13406,13418,13420,13424,13451,13462,13468,13482,13518,13526,13532,13533,13550,13612,13619,13634,13635,13638,13641,13658,13674,13677,13684,13688,13692,13701,13714,13717,13721,13722,13723,13730,13734,13737,13746,13759,13775,13788,13789,13794,13804,13828,13859,13865,13867,13870,13923,13929,13952,13959,13969,13971,14047,14052,14054,14060,14070,14071,14078,14081,14094,14293,14317,14325,14345,14353,14360,14375,14413,14420,14431,14435,14437,14506,14513,14532,14535,14540,14541,14546,14547,14558,14564,14565,14598,14680,14684,14720,14738,14790,14855,14876,14922,14974,14975,14986,14987,15031,15035,15056,15075,15103,15132,15195,15239,15245,15253,15306,15328,15345,15381,15397,15435,15438,15449,15464,15475,15545,15617,15637,15640,15674,15685,15699,15701,15724,15832,15859,15871,15872,15873,15955,15980,16090,16103,16117,16133,16140,16229,16250,16259,16269,16291,16326,16331,16411,16421,16483,16494,16529,16579,16588,16642,16654,16963,16968,16976,17028,17051,17091,17103,17108,17120,17154,17160,17220,17260,17266,17267,17271,17317,17325,17331,17334,17335,17348,17376,17377,17403,17420,17439,17452,17456,17462,17472,17475,17491,17496,17524,17531,17564,17635,17665,17672,17688,17714,17717,17723,17734,17736,17758,17759,17772,17774,17776,17777,17778,17780,17784,17785,17786,17787,17789,17792,17794,17795,17808,17810,17812,17818,17819,17826,17827,17838,17858,17863,17874,17901,17904,17932,17938,17941,17952,17983,18001,18015,18022,18029,18031,18032,18035,18041,18044,18047,18051,18056,18066,18067,18081,18089,18111,18127,18176,18179,18180,18204,18205,18206,18208,18209,18215,18227,18229,18232,18233,18238,18239,18254,18264,18289,18303,18324,18334,18335,18337,18340,18341,18342,18343,18344,18345,18346,18348,18351,18355,18358,18361,18362,18367,18373,18376,18385,18391,18393,18394,18395,18400,18401,18405,18411,18412,18415,18416,18417,18418,18420,18421,18426,18429,18445,18447,18457,18458,18460,18464,18472,18477,18485,18497,18502,18506,18511,18514,18519,18521,18535,18538,18539,18549,18550,18552,18553,18557,18559,18560,18561,18562,18570,18571,18572,18574,18575,18579,18580,18585,18596,18606,18607,18609,18619,18621,18631,18634,18636,18639,18640,18641,18642,18643,18644,18645,18650,18656,18657,18658,18661,18663,18689,18695,18696,18699,18700,18703,18724,18729,18731,18733,18754,18756,18757,18775,18779,18780,18784,18786,18795,18821,18849,18858,18865,18874,18898,18902,18904,18905,18910,18922,18923,18927,18931,18934,18942,18943,18945,18950,18952,18953,18955,18957,18958,18959,18960,18966,18967,18970,18971,18973,18985,18988,18990,18992,18996,19000,19003,19008,19009,19013,19014,19018,19021,19030,19032,19037,19038,19054,19060,19062,19070,19072,19077,19078,19082,19095,19098,19103,19104,19105,19106,19110,19111,19120,19121,19122,19123,19129,19139,19140,19142,19147,19151,19157,19159,19161,19164,19165,19182,19188,19190,19192,19198,19203,19219,19220,19227,19229,19230,19231,19232,19233,19235,19237,19247,19248,19253,19263,19267,19269,19272,19274,19275,19278,19279,19284,19287,19288,19303,19304,19306,19307,19308,19310,19316,19317,19326,19334,19337,19339,19341,19345,19346,19347,19350,19355,19362,19372,19376,19377,19378,19385,19389,19394,19395,19396,19397,19402,19408,19410,19418,19421,19422,19425,19426,19431,19437,19441,19443,19444,19448,19452,19453,19455,19456,19457,19460,19462,19463,19465,19468,19472,19475,19484,19486,19491,19499,19500,19501,19509,19517,19518,19519,19521,19522,19527,19528,19529,19532,19536,19539,19542,19549,19561,19562,19564,19566,19573,19574,19576,19580,19581,19583,19584,19588,19589,19590,19597,19598,19600,19605,19608,19610,19612,19615,19617,19619,19620,19623,19624,19629,19630,19631,19632,19633,19634,19638,19639,19643,19645,19650,19651,19652,19656,19657,19659,19660,19663,19665,19666,19667,19668,19669,19670,19672,19679,19685,19693,19698,19701,19706,19707,19714,19720,19725,19726,19728,19734,19737,19738,19739,19744,19745,19746,19747,19756,19757,19759,19767,19773,19774,19776,19777,19779,19785,19786,19787,19788,19792,19794,19795,19798,19799,19800,19802,19803,19805,19813,19814,19818,19824,19828,19829,19834,19835,19836,19838,19840,19841,19842,19843,19847,19856,19857,19858,19859,19860,19861,19869,19871,19872,19877,19880,19881,19883,19887,19888,19891,19892,19893,19896,19897,19898,19899,19900,19903,19905,19907,19909,19910,19911,19912,19914,19915,19917,19919,19920,19921,19934,19938,19939,19943,19950,19955,19956,19957,19963,19965,19977,19979,19980,19984,19988,19989,19990,19993,19995,19999,20005,20007,20011,20012,20014,20017,20021,20025,20030,20034,20035,20036,20040,20041,20042,20043,20044,20053,20059,20061,20070,20075,20081,20088,20094,20097,20099,20120,20128,20129,20134,20139,20145,20155,20161,20162,20168,20173,20184,20199,20213,20245,20247,20248,20270,20273,20274,20276,20344,20347,20348,20372,20378,20391,20408,20411,20435,20440,20493,20495,20496,20503,20505,20506,20512,20513,20518,20520,20524,20526,20529,20542,20543,20544,20545,20551,20553,20554,20564,20566,20574,20578,20579,20582,20609,20610,20612,20613,20616,20617,20619,20621,20623,20626,20627,20629,20630,20631,20633,20635,20639,20657,20658,20660,20662,20668,20669,20670,20671,20672,20681,20688,20689,20690,20691,20697,20699,20701,20702,20703,20706,20707,20708,20709,20710,20711,20714,20715,20716,20718,20719,20720,20721,20723,20726,20728,20733,20735,20737,20743,20748,20752,20755,20760,20763,20765,20768,20798,20806,20821,20826,20828,20834,20836,20837,20844,20847,20850,20851,20868,20874,20878,20883,20897,20898,20900,20902,20903,20908,20913,20916,20922,20924,20925,20927,20934,20940,20942,20944,20945,20947,20951,20952,20953,20962,20968,20970,20972,20977,20979,20993,20995,20999,21000,21004,21008,21029,21035,21039,21042,21043,21050,21053,21057,21059,21062,21065,21071,21075,21076,21077,21084,21086,21089,21091,21095,21096,21098,21099,21101,21102,21103,21107,21115,21117,21119,21122,21124,21158,21159,21163,21166,21168,21169,21177,21179,21182,21184,21186,21191,21192,21196,21200,21202,21205,21206,21210,21214,21217,21224,21226,21231,21232,21240,21245,21249,21250,21251,21259,21265,21281,21282,21288,21290,21291,21292,21293,21294,21297,21300,21301,21303,21304,21305,21307,21310,21314,21315,21323,21324,21330,21333,21345,21347,21354,21356,21358,21360,21361,21362,21363,21364,21365,21366,21372,21375,21379,21381,21392,21394,21396,21400,21401,21402,21406,21408,21409,21412,21415,21416,21418,21426,21428,21435,21436,21438,21439,21442,21449,21465,21473,21530,21565,21579,21590,21601,21604,21605,21608,21639,21648,21656,21671,21675,21679,21685,21687,21692,21740,21747,21748,21755,21760,21761,21974,21975,21977,21978,21980,21987,21992,22010,22026,22027,22031,22034,22035,22087,22089,22090,22096,22098,22100,22103,22104,22106,22110,22112,22117,22128,22129,22131,22180,22228,22233,22260,22268,22276,22284,22285,22328,22330,22343,22353,22366,22367,22369,22370,22372,22373,22375,22377,22379,22380,22382,22383,22385,22391,22396,22404,22406,22407,22411,22426,22427,22437,22439,22440,22450,22460,22463,22466,22467,22469,22470,22472,22474,22475,22476,22478,22479,22480,22481,22483,22486,22495,22496,22505,22510,22511,22513,22532,22537,22538,22539,22540,22541,22542,22543,22545,22550,22552,22558,22559,22562,22565,22570,22572,22576,22577,22578,22598,22599,22602,22609,22613,22619,22622,22631,22649,22674,22696,22719,22750,22754,22767,22799,22820,22827,22836,22840,22841,22842,22843,22845,22847,22848,22853,22856,22857,22861,22862,22864,22865,22866,22867,22868,22869,22875,22876,22879,22881,22882,22884,22885,22887,22888,22889,22890,22892,22894,22895,22897,22899,22901,22903,22907,22914,22916,22917,22918,22919,22924,22926,22927,22928,22930,22933,22934,22935,22936,22938,22939,22941,22942,22944,22946,22947,22951,22952,22954,22955,22956,22959,22965,22966,22967,22970,22971,22975,22977,22978,22979,22980,22982,22983,22985,22990,22994,22995,22996,22997,22999,23032,23033,23037,23040,23041,23043,23050,23062,23064,23065,23068,23091,23093,23094,23095,23096,23097,23098,23099,23100,23101,23102,23103,23105,23107,23111,23117,23119,23120,23121,23125,23127,23128,23130,23131,23132,23133,23134,23137,23139,23141]]],["+",[56,51,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,4,3,1,4,[[54,1,1,1,2],[57,1,1,2,3],[70,2,1,3,4]]],[3,3,3,4,7,[[131,1,1,4,5],[145,1,1,5,6],[148,1,1,6,7]]],[4,1,1,7,8,[[178,1,1,7,8]]],[5,1,1,8,9,[[203,1,1,8,9]]],[6,2,1,9,10,[[225,2,1,9,10]]],[8,5,4,10,14,[[246,1,1,10,11],[254,1,1,11,12],[255,2,1,12,13],[258,1,1,13,14]]],[9,4,4,14,18,[[273,1,1,14,15],[278,1,1,15,16],[280,1,1,16,17],[287,1,1,17,18]]],[10,2,2,18,20,[[312,2,2,18,20]]],[11,5,5,20,25,[[313,1,1,20,21],[322,1,1,21,22],[332,2,2,22,24],[335,1,1,24,25]]],[12,2,2,25,27,[[354,1,1,25,26],[358,1,1,26,27]]],[13,2,2,27,29,[[384,1,1,27,28],[397,1,1,28,29]]],[15,1,1,29,30,[[418,1,1,29,30]]],[16,2,2,30,32,[[426,1,1,30,31],[431,1,1,31,32]]],[20,1,1,32,33,[[659,1,1,32,33]]],[22,2,2,33,35,[[684,1,1,33,34],[717,1,1,34,35]]],[23,9,8,35,43,[[749,1,1,35,36],[758,1,1,36,37],[759,1,1,37,38],[767,3,2,38,40],[772,1,1,40,41],[775,1,1,41,42],[778,1,1,42,43]]],[24,1,1,43,44,[[798,1,1,43,44]]],[25,6,5,44,49,[[804,1,1,44,45],[813,1,1,45,46],[825,1,1,46,47],[829,2,1,47,48],[836,1,1,48,49]]],[37,2,2,49,51,[[911,1,1,49,50],[914,1,1,50,51]]]],[605,1633,1737,2082,4191,4648,4749,5583,6290,6931,7447,7723,7751,7832,8185,8304,8388,8585,9495,9498,9541,9798,10103,10113,10182,10867,10952,11559,11864,12420,12719,12800,17325,17777,18416,19077,19310,19317,19501,19522,19631,19714,19803,20347,20513,20703,21076,21166,21354,22897,22935]]],["Bid",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7418]]],["Said",[1,1,[[0,1,1,0,1,[[19,1,1,0,1]]]],[500]]],["Say",[35,35,[[0,2,2,0,2,[[11,1,1,0,1],[44,1,1,1,2]]],[1,5,5,2,7,[[56,1,1,2,3],[57,2,2,3,5],[65,1,1,5,6],[82,1,1,6,7]]],[2,1,1,7,8,[[111,1,1,7,8]]],[3,1,1,8,9,[[130,1,1,8,9]]],[4,1,1,9,10,[[153,1,1,9,10]]],[6,1,1,10,11,[[222,1,1,10,11]]],[11,1,1,11,12,[[316,1,1,11,12]]],[18,2,2,12,14,[[543,1,1,12,13],[573,1,1,13,14]]],[19,4,4,14,18,[[630,1,1,14,15],[634,1,1,15,16],[647,1,1,16,17],[651,1,1,17,18]]],[20,1,1,18,19,[[665,1,1,18,19]]],[22,5,5,19,24,[[681,1,1,19,20],[686,1,1,20,21],[713,1,1,21,22],[714,1,1,22,23],[740,1,1,23,24]]],[23,2,2,24,26,[[745,1,1,24,25],[757,1,1,25,26]]],[25,8,8,26,34,[[813,2,2,26,28],[814,1,1,28,29],[818,2,2,29,31],[822,1,1,31,32],[834,2,2,32,34]]],[27,1,1,34,35,[[863,1,1,34,35]]]],[311,1375,1704,1715,1726,1956,2478,3372,4136,4934,6875,9616,14876,15475,16483,16579,16976,17108,17439,17717,17819,18324,18334,18865,18953,19284,20690,20691,20719,20834,20837,20953,21291,21307,22106]]],["Saying",[6,6,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,2,2,1,3,[[548,1,1,1,2],[582,1,1,2,3]]],[23,2,2,3,5,[[746,1,1,3,4],[786,1,1,4,5]]],[29,1,1,5,6,[[886,1,1,5,6]]]],[10838,14987,15617,18992,19989,22486]]],["Spake",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1274]]],["Speak",[13,13,[[2,1,1,0,1,[[110,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[4,1,1,2,3,[[161,1,1,2,3]]],[10,2,2,3,5,[[292,1,1,3,4],[302,1,1,4,5]]],[11,1,1,5,6,[[330,1,1,5,6]]],[13,1,1,6,7,[[377,1,1,6,7]]],[25,3,3,7,10,[[812,1,1,7,8],[825,1,1,8,9],[840,1,1,9,10]]],[36,2,2,10,12,[[910,2,2,10,12]]],[37,1,1,12,13,[[917,1,1,12,13]]]],[3346,4231,5161,8787,9174,10043,11417,20660,21077,21465,22857,22876,22967]]],["Tell",[3,3,[[10,1,1,0,1,[[310,1,1,0,1]]],[11,1,1,1,2,[[334,1,1,1,2]]],[13,1,1,2,3,[[400,1,1,2,3]]]],[9417,10160,11956]]],["answer",[7,7,[[5,1,1,0,1,[[190,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[10,1,1,2,3,[[299,1,1,2,3]]],[13,1,1,3,4,[[376,1,1,3,4]]],[23,1,1,4,5,[[766,1,1,4,5]]],[25,1,1,5,6,[[822,1,1,5,6]]],[37,1,1,6,7,[[923,1,1,6,7]]]],[5917,7256,9060,11405,19463,20951,23065]]],["answered",[77,76,[[0,1,1,0,1,[[42,1,1,0,1]]],[5,2,2,1,3,[[188,1,1,1,2],[201,1,1,2,3]]],[6,5,5,3,8,[[218,2,2,3,5],[221,1,1,5,6],[225,2,2,6,8]]],[7,2,2,8,10,[[233,1,1,8,9],[234,1,1,9,10]]],[8,14,14,10,24,[[238,4,4,10,14],[240,1,1,14,15],[241,1,1,15,16],[245,1,1,16,17],[247,1,1,17,18],[249,1,1,18,19],[252,2,2,19,21],[257,1,1,21,22],[263,1,1,22,23],[265,1,1,23,24]]],[9,16,15,24,39,[[267,4,4,24,28],[268,1,1,28,29],[275,1,1,29,30],[279,1,1,30,31],[280,1,1,31,32],[284,3,3,32,35],[285,2,2,35,37],[286,2,1,37,38],[287,1,1,38,39]]],[10,6,6,39,45,[[301,1,1,39,40],[308,2,2,40,42],[310,1,1,42,43],[311,2,2,43,45]]],[11,18,18,45,63,[[314,1,1,45,46],[315,1,1,46,47],[316,3,3,47,50],[318,5,5,50,55],[320,3,3,55,58],[321,2,2,58,60],[322,2,2,60,62],[332,1,1,62,63]]],[12,1,1,63,64,[[358,1,1,63,64]]],[13,5,5,64,69,[[368,1,1,64,65],[373,1,1,65,66],[384,1,1,66,67],[391,1,1,67,68],[400,1,1,68,69]]],[16,3,3,69,72,[[426,1,1,69,70],[430,1,1,70,71],[432,1,1,71,72]]],[22,1,1,72,73,[[684,1,1,72,73]]],[23,1,1,73,74,[[780,1,1,73,74]]],[25,1,1,74,75,[[838,1,1,74,75]]],[37,1,1,75,76,[[915,1,1,75,76]]]],[1318,5883,6221,6737,6744,6842,6935,6939,7153,7181,7280,7282,7286,7292,7327,7335,7440,7465,7552,7645,7676,7799,7957,7986,8026,8029,8030,8035,8069,8233,8329,8361,8481,8507,8510,8537,8549,8571,8581,9130,9349,9359,9422,9457,9471,9556,9584,9616,9617,9629,9676,9677,9690,9696,9702,9739,9740,9741,9775,9778,9806,9808,10108,10937,11222,11346,11545,11713,11956,12718,12783,12812,17780,19860,21400,22938]]],["appoint",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8884]]],["appointed",[2,2,[[10,1,1,0,1,[[301,1,1,0,1]]],[16,1,1,1,2,[[427,1,1,1,2]]]],[9126,12739]]],["avouched",[1,1,[[4,1,1,0,1,[[178,1,1,0,1]]]],[5584]]],["bade",[6,6,[[0,1,1,0,1,[[42,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[5,1,1,2,3,[[197,1,1,2,3]]],[8,1,1,3,4,[[259,1,1,3,4]]],[9,1,1,4,5,[[267,1,1,4,5]]],[16,1,1,5,6,[[429,1,1,5,6]]]],[1307,4118,6116,7849,8040,12777]]],["bid",[3,3,[[5,1,1,0,1,[[192,1,1,0,1]]],[9,1,1,1,2,[[268,1,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]]],[5959,8075,9627]]],["bidden",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8437]]],["call",[2,2,[[22,2,2,0,2,[[683,1,1,0,1],[739,1,1,1,2]]]],[17759,18849]]],["called",[4,4,[[0,1,1,0,1,[[31,1,1,0,1]]],[22,2,2,1,3,[[682,1,1,1,2],[697,1,1,2,3]]],[23,1,1,3,4,[[751,1,1,3,4]]]],[956,17736,18022,19151]]],["certified",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12746]]],["challengeth",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2122]]],["charged",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12690]]],["command",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7611]]],["commanded",[23,23,[[12,3,3,0,3,[[358,2,2,0,2],[359,1,1,2,3]]],[13,10,10,3,13,[[380,1,1,3,4],[395,4,4,4,8],[397,2,2,8,10],[398,1,1,10,11],[399,1,1,11,12],[401,1,1,12,13]]],[15,3,3,13,16,[[425,3,3,13,16]]],[16,5,5,16,21,[[426,1,1,16,17],[429,1,1,17,18],[431,1,1,18,19],[434,2,2,19,21]]],[18,1,1,21,22,[[583,1,1,21,22]]],[26,1,1,22,23,[[851,1,1,22,23]]]],[10951,10961,10966,11479,11812,11815,11818,11821,11858,11865,11887,11924,11987,12680,12690,12693,12712,12775,12794,12848,12859,15685,21760]]],["commandeth",[3,3,[[17,2,2,0,2,[[444,1,1,0,1],[471,1,1,1,2]]],[18,1,1,2,3,[[584,1,1,2,3]]]],[13058,13746,15724]]],["commandment",[2,2,[[12,1,1,0,1,[[351,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]]],[10786,11685]]],["commune",[1,1,[[18,1,1,0,1,[[481,1,1,0,1]]]],[13969]]],["consider",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22180]]],["declared",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14535]]],["demanded",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1646]]],["desired",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12737]]],["desireth",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7734]]],["determined",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11212]]],["indeed",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7270]]],["intend",[2,2,[[5,1,1,0,1,[[208,1,1,0,1]]],[13,1,1,1,2,[[394,1,1,1,2]]]],[6459,11777]]],["intendest",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1568]]],["is",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8094]]],["name",[2,2,[[8,2,2,0,2,[[251,1,1,0,1],[263,1,1,1,2]]]],[7598,7950]]],["named",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22602]]],["of",[1,1,[[18,1,1,0,1,[[506,1,1,0,1]]]],[14317]]],["promised",[5,5,[[3,1,1,0,1,[[130,1,1,0,1]]],[11,1,1,1,2,[[320,1,1,1,2]]],[13,1,1,2,3,[[387,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[16,1,1,4,5,[[429,1,1,4,5]]]],[4148,9746,11631,12534,12769]]],["promisedst",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12526]]],["published",[1,1,[[31,1,1,0,1,[[891,1,1,0,1]]]],[22565]]],["purpose",[2,2,[[10,1,1,0,1,[[295,1,1,0,1]]],[13,1,1,1,2,[[394,1,1,1,2]]]],[8883,11774]]],["reported",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12719]]],["requirest",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7183]]],["said",[2771,2492,[[0,467,411,0,411,[[0,10,10,0,10],[1,2,2,10,12],[2,15,13,12,25],[3,8,7,25,32],[5,3,3,32,35],[6,1,1,35,36],[7,1,1,36,37],[8,5,5,37,42],[9,1,1,42,43],[10,3,3,43,46],[11,4,4,46,50],[12,2,2,50,52],[13,3,3,52,55],[14,8,7,55,62],[15,9,8,62,70],[16,6,6,70,76],[17,22,17,76,93],[18,13,11,93,104],[19,11,11,104,115],[20,12,11,115,126],[21,13,9,126,135],[23,32,28,135,163],[24,6,6,163,169],[25,13,10,169,179],[26,31,25,179,204],[27,4,4,204,208],[28,19,16,208,224],[29,22,20,224,244],[30,19,17,244,261],[31,12,9,261,270],[32,10,7,270,277],[33,4,4,277,281],[34,5,5,281,286],[36,17,16,286,302],[37,17,12,302,314],[38,2,2,314,316],[39,6,5,316,321],[40,8,8,321,329],[41,17,16,329,345],[42,14,13,345,358],[43,13,13,358,371],[44,6,5,371,376],[45,5,4,376,380],[46,14,13,380,393],[47,11,10,393,403],[48,2,2,403,405],[49,6,6,405,411]]],[1,188,179,411,590,[[50,4,4,411,415],[51,12,11,415,426],[52,13,11,426,437],[53,18,16,437,453],[54,8,8,453,461],[55,4,4,461,465],[56,2,2,465,467],[57,11,10,467,477],[58,6,6,477,483],[59,13,13,483,496],[60,3,3,496,499],[61,4,4,499,503],[62,2,2,503,505],[63,6,6,505,511],[64,2,2,511,513],[65,12,11,513,524],[66,8,7,524,531],[67,7,7,531,538],[68,7,7,538,545],[69,3,3,545,548],[72,1,1,548,549],[73,6,6,549,555],[79,1,1,555,556],[81,19,19,556,575],[82,10,9,575,584],[83,4,4,584,588],[84,2,2,588,590]]],[2,13,13,590,603,[[97,2,2,590,592],[98,3,3,592,595],[99,3,3,595,598],[105,1,1,598,599],[106,2,2,599,601],[109,1,1,601,602],[110,1,1,602,603]]],[3,115,112,603,715,[[119,1,1,603,604],[123,1,1,604,605],[125,2,2,605,607],[126,6,5,607,612],[127,9,8,612,620],[128,4,4,620,624],[129,4,4,624,628],[130,7,7,628,635],[131,1,1,635,636],[132,9,9,636,645],[133,1,1,645,646],[134,2,2,646,648],[136,4,4,648,652],[137,5,5,652,657],[138,19,18,657,675],[139,19,19,675,694],[140,7,7,694,701],[141,2,2,701,703],[142,1,1,703,704],[143,2,2,704,706],[147,3,3,706,709],[148,5,5,709,714],[152,1,1,714,715]]],[4,46,45,715,760,[[153,9,9,715,724],[154,2,2,724,726],[155,2,2,726,728],[156,1,1,728,729],[157,3,3,729,732],[161,3,3,732,735],[162,2,2,735,737],[169,1,1,737,738],[170,1,1,738,739],[181,1,1,739,740],[183,6,5,740,745],[184,3,3,745,748],[185,11,11,748,759],[186,1,1,759,760]]],[5,64,61,760,821,[[188,6,6,760,766],[189,4,4,766,770],[190,1,1,770,771],[191,6,5,771,776],[192,5,5,776,781],[193,6,6,781,787],[194,2,2,787,789],[195,8,7,789,796],[196,6,6,796,802],[197,1,1,802,803],[199,1,1,803,804],[200,1,1,804,805],[201,2,2,805,807],[203,1,1,807,808],[204,1,1,808,809],[208,4,4,809,813],[209,1,1,813,814],[210,8,7,814,821]]],[6,215,195,821,1016,[[211,7,7,821,828],[212,4,3,828,831],[213,5,4,831,835],[214,8,8,835,843],[215,1,1,843,844],[216,19,18,844,862],[217,9,9,862,871],[218,13,13,871,884],[219,18,17,884,901],[220,3,3,901,904],[221,13,13,904,917],[222,8,5,917,922],[223,15,13,922,935],[224,11,8,935,943],[225,12,10,943,953],[226,20,18,953,971],[227,7,5,971,976],[228,13,13,976,989],[229,13,13,989,1002],[230,9,7,1002,1009],[231,7,7,1009,1016]]],[7,45,40,1016,1056,[[232,7,7,1016,1023],[233,18,14,1023,1037],[234,10,9,1037,1046],[235,10,10,1046,1056]]],[8,316,272,1056,1328,[[236,9,9,1056,1065],[237,7,7,1065,1072],[238,9,8,1072,1080],[239,9,7,1080,1087],[240,3,3,1087,1090],[241,3,3,1090,1093],[242,3,3,1093,1096],[243,7,6,1096,1102],[244,16,14,1102,1116],[245,13,10,1116,1126],[246,9,8,1126,1134],[247,9,8,1134,1142],[248,6,5,1142,1147],[249,25,20,1147,1167],[250,18,16,1167,1183],[251,18,15,1183,1198],[252,19,17,1198,1215],[253,10,8,1215,1223],[254,6,4,1223,1227],[255,18,18,1227,1245],[256,10,8,1245,1253],[257,11,11,1253,1264],[258,11,10,1264,1274],[259,7,6,1274,1280],[260,10,10,1280,1290],[261,13,11,1290,1301],[262,4,3,1301,1304],[263,17,12,1304,1316],[264,7,5,1316,1321],[265,8,6,1321,1327],[266,1,1,1327,1328]]],[9,234,202,1328,1530,[[267,11,10,1328,1338],[268,11,8,1338,1346],[269,10,10,1346,1356],[270,2,2,1356,1358],[271,6,5,1358,1363],[272,3,3,1363,1366],[273,3,3,1366,1369],[275,12,9,1369,1378],[276,4,4,1378,1382],[277,8,8,1382,1390],[278,12,9,1390,1399],[279,17,15,1399,1414],[280,23,19,1414,1433],[281,15,14,1433,1447],[282,17,12,1447,1459],[283,10,9,1459,1468],[284,25,21,1468,1489],[285,14,13,1489,1502],[286,9,8,1502,1510],[287,5,4,1510,1514],[288,1,1,1514,1515],[289,3,3,1515,1518],[290,13,12,1518,1530]]],[10,199,171,1530,1701,[[291,18,17,1530,1547],[292,21,17,1547,1564],[293,12,10,1564,1574],[295,1,1,1574,1575],[298,5,5,1575,1580],[299,2,2,1580,1582],[300,1,1,1582,1583],[301,5,5,1583,1588],[302,5,5,1588,1593],[303,10,9,1593,1602],[304,3,3,1602,1605],[307,11,11,1605,1616],[308,24,20,1616,1636],[309,11,10,1636,1646],[310,30,24,1646,1670],[311,6,6,1670,1676],[312,34,25,1676,1701]]],[11,211,175,1701,1876,[[313,6,5,1701,1706],[314,22,16,1706,1722],[315,11,9,1722,1731],[316,33,25,1731,1756],[317,16,15,1756,1771],[318,21,20,1771,1791],[319,10,8,1791,1799],[320,8,7,1799,1806],[321,25,19,1806,1825],[322,14,14,1825,1839],[323,3,2,1839,1841],[324,2,2,1841,1843],[325,9,6,1843,1849],[329,1,1,1849,1850],[330,5,5,1850,1855],[331,4,4,1855,1859],[332,11,8,1859,1867],[333,2,2,1867,1869],[334,3,3,1869,1872],[335,4,3,1872,1875],[337,1,1,1875,1876]]],[12,43,43,1876,1919,[[347,1,1,1876,1877],[348,5,5,1877,1882],[349,1,1,1882,1883],[350,2,2,1883,1885],[351,3,3,1885,1888],[352,2,2,1888,1890],[353,1,1,1890,1891],[354,3,3,1891,1894],[356,4,4,1894,1898],[358,9,9,1898,1907],[359,3,3,1907,1910],[360,1,1,1910,1911],[364,1,1,1911,1912],[365,4,4,1912,1916],[366,3,3,1916,1919]]],[13,85,75,1919,1994,[[367,3,3,1919,1922],[368,1,1,1922,1923],[372,6,5,1923,1928],[373,1,1,1928,1929],[374,1,1,1929,1930],[375,1,1,1930,1931],[376,2,2,1931,1933],[378,2,2,1933,1935],[379,1,1,1935,1936],[380,2,2,1936,1938],[381,1,1,1938,1939],[382,1,1,1939,1940],[384,30,23,1940,1963],[385,2,2,1963,1965],[386,3,3,1965,1968],[388,1,1,1968,1969],[389,5,4,1969,1973],[390,4,4,1973,1977],[391,4,3,1977,1980],[392,2,2,1980,1982],[394,3,3,1982,1985],[395,3,3,1985,1988],[397,1,1,1988,1989],[399,2,2,1989,1991],[400,1,1,1991,1992],[401,2,2,1992,1994]]],[14,8,8,1994,2002,[[404,1,1,1994,1995],[406,2,2,1995,1997],[410,1,1,1997,1998],[411,1,1,1998,1999],[412,3,3,1999,2002]]],[15,40,39,2002,2041,[[413,2,2,2002,2004],[414,10,10,2004,2014],[416,8,8,2014,2022],[417,9,8,2022,2030],[418,2,2,2030,2032],[419,2,2,2032,2034],[420,2,2,2034,2036],[421,2,2,2036,2038],[425,3,3,2038,2041]]],[16,30,27,2041,2068,[[426,1,1,2041,2042],[427,1,1,2042,2043],[428,3,3,2043,2046],[430,6,6,2046,2052],[431,8,6,2052,2058],[432,7,6,2058,2064],[433,2,2,2064,2066],[434,2,2,2066,2068]]],[17,61,59,2068,2127,[[436,11,10,2068,2078],[437,7,6,2078,2084],[438,2,2,2084,2086],[439,1,1,2086,2087],[441,1,1,2087,2088],[443,1,1,2088,2089],[444,2,2,2089,2091],[446,2,2,2091,2093],[447,1,1,2093,2094],[450,1,1,2094,2095],[451,1,1,2095,2096],[453,1,1,2096,2097],[454,1,1,2097,2098],[455,1,1,2098,2099],[456,1,1,2099,2100],[457,2,2,2100,2102],[458,1,1,2102,2103],[460,1,1,2103,2104],[461,1,1,2104,2105],[462,1,1,2105,2106],[463,1,1,2106,2107],[464,2,2,2107,2109],[466,2,2,2109,2111],[467,3,3,2111,2114],[469,4,4,2114,2118],[470,1,1,2118,2119],[471,1,1,2119,2120],[473,2,2,2120,2122],[475,3,3,2122,2125],[477,2,2,2125,2127]]],[18,40,40,2127,2167,[[479,1,1,2127,2128],[487,3,3,2128,2131],[489,1,1,2131,2132],[491,1,1,2132,2133],[493,1,1,2133,2134],[504,1,1,2134,2135],[507,1,1,2135,2136],[508,2,2,2136,2138],[509,1,1,2138,2139],[512,1,1,2139,2140],[515,1,1,2140,2141],[516,1,1,2141,2142],[517,1,1,2142,2143],[518,1,1,2143,2144],[530,1,1,2144,2145],[532,1,1,2145,2146],[545,1,1,2146,2147],[551,1,1,2147,2148],[552,1,1,2148,2149],[554,1,1,2149,2150],[555,1,1,2150,2151],[559,1,1,2151,2152],[560,2,2,2152,2154],[564,1,1,2154,2155],[566,1,1,2155,2156],[571,1,1,2156,2157],[572,1,1,2157,2158],[579,1,1,2158,2159],[583,1,1,2159,2160],[593,1,1,2160,2161],[596,1,1,2161,2162],[599,1,1,2162,2163],[603,1,1,2163,2164],[614,1,1,2164,2165],[617,1,1,2165,2166],[619,1,1,2166,2167]]],[19,3,3,2167,2170,[[631,1,1,2167,2168],[634,1,1,2168,2169],[652,1,1,2169,2170]]],[20,8,8,2170,2178,[[660,3,3,2170,2173],[661,2,2,2173,2175],[665,1,1,2175,2176],[666,1,1,2176,2177],[667,1,1,2177,2178]]],[21,2,2,2178,2180,[[672,1,1,2178,2179],[677,1,1,2179,2180]]],[22,64,59,2180,2239,[[684,6,6,2180,2186],[685,3,3,2186,2189],[686,2,2,2189,2191],[692,1,1,2191,2192],[696,1,1,2192,2193],[698,1,1,2193,2194],[699,4,4,2194,2198],[700,1,1,2198,2199],[701,1,1,2199,2200],[702,1,1,2200,2201],[703,1,1,2201,2202],[706,2,2,2202,2204],[707,1,1,2204,2205],[708,1,1,2205,2206],[710,1,1,2206,2207],[714,6,6,2207,2213],[715,3,3,2213,2216],[716,6,6,2216,2222],[717,7,4,2222,2226],[718,2,1,2226,2227],[719,2,2,2227,2229],[723,1,1,2229,2230],[725,2,1,2230,2231],[727,4,4,2231,2235],[729,1,1,2235,2236],[741,1,1,2236,2237],[743,1,1,2237,2238],[744,1,1,2238,2239]]],[23,89,85,2239,2324,[[745,7,7,2239,2246],[746,2,2,2246,2248],[747,5,4,2248,2252],[748,3,3,2252,2255],[749,2,2,2255,2257],[750,3,3,2257,2260],[754,1,1,2260,2261],[755,3,3,2261,2264],[756,1,1,2264,2265],[757,1,1,2265,2266],[758,3,3,2266,2269],[759,2,2,2269,2271],[760,1,1,2271,2272],[761,1,1,2272,2273],[762,3,3,2273,2276],[763,1,1,2276,2277],[764,2,2,2277,2279],[765,1,1,2279,2280],[767,1,1,2280,2281],[768,2,1,2281,2282],[769,1,1,2282,2283],[770,1,1,2283,2284],[772,3,3,2284,2287],[773,1,1,2287,2288],[776,3,3,2288,2291],[779,4,4,2291,2295],[780,3,3,2295,2298],[781,5,3,2298,2301],[782,9,9,2301,2310],[784,3,3,2310,2313],[785,2,2,2313,2315],[786,4,4,2315,2319],[788,2,2,2319,2321],[790,1,1,2321,2322],[794,1,1,2322,2323],[795,1,1,2323,2324]]],[24,4,4,2324,2328,[[799,2,2,2324,2326],[800,2,2,2326,2328]]],[25,66,64,2328,2392,[[803,2,2,2328,2330],[804,6,6,2330,2336],[805,4,4,2336,2340],[809,8,8,2340,2348],[810,5,5,2348,2353],[811,1,1,2353,2354],[812,5,4,2354,2358],[813,1,1,2358,2359],[814,1,1,2359,2360],[817,2,1,2360,2361],[821,7,7,2361,2368],[824,2,2,2368,2370],[825,1,1,2370,2371],[827,1,1,2371,2372],[828,1,1,2372,2373],[829,1,1,2373,2374],[830,2,2,2374,2376],[837,2,2,2376,2378],[838,4,4,2378,2382],[842,1,1,2382,2383],[843,1,1,2383,2384],[844,2,2,2384,2386],[845,2,2,2386,2388],[847,2,2,2388,2390],[848,2,2,2390,2392]]],[26,20,19,2392,2411,[[850,3,3,2392,2395],[851,1,1,2395,2396],[857,5,5,2396,2401],[858,2,2,2401,2403],[859,6,5,2403,2408],[861,3,3,2408,2411]]],[27,11,10,2411,2421,[[862,6,5,2411,2416],[863,2,2,2416,2418],[864,2,2,2418,2420],[873,1,1,2420,2421]]],[28,1,1,2421,2422,[[877,1,1,2421,2422]]],[29,13,9,2422,2431,[[879,1,1,2422,2423],[885,8,6,2423,2429],[886,3,1,2429,2430],[887,1,1,2430,2431]]],[31,17,16,2431,2447,[[889,8,8,2431,2439],[890,2,2,2439,2441],[891,1,1,2441,2442],[892,6,5,2442,2447]]],[32,2,2,2447,2449,[[895,1,1,2447,2448],[899,1,1,2448,2449]]],[34,1,1,2449,2450,[[904,1,1,2449,2450]]],[35,3,3,2450,2453,[[907,1,1,2450,2451],[908,2,2,2451,2453]]],[36,4,3,2453,2456,[[910,4,3,2453,2456]]],[37,40,33,2456,2489,[[911,9,8,2456,2464],[912,3,2,2464,2466],[913,3,3,2466,2469],[914,9,6,2469,2475],[915,9,7,2475,2482],[916,3,3,2482,2485],[921,4,4,2485,2489]]],[38,3,3,2489,2492,[[925,1,1,2489,2490],[927,2,2,2490,2492]]]],[2,5,8,10,13,19,23,25,27,28,48,53,56,57,58,59,64,65,66,67,68,69,71,72,77,80,85,88,89,92,94,102,140,144,150,160,204,206,217,222,230,231,243,269,270,272,299,305,309,316,326,332,355,357,358,362,363,365,367,368,369,373,383,386,387,389,390,391,392,394,398,406,412,414,415,416,427,429,430,433,434,437,439,441,444,447,450,451,452,453,454,455,456,459,462,464,466,469,471,474,475,478,488,491,497,498,499,500,501,504,505,506,508,510,511,514,519,520,523,525,529,530,537,539,542,543,548,549,552,554,555,558,559,561,563,593,596,597,603,608,609,610,614,615,616,618,622,624,625,630,631,633,636,637,638,641,645,646,647,648,649,651,656,680,681,688,689,690,691,694,699,701,702,708,714,716,719,720,724,728,729,738,740,745,746,747,748,749,751,752,753,754,758,759,760,761,762,763,764,765,766,768,769,773,774,786,789,790,799,800,801,802,803,809,810,813,814,816,820,821,827,828,829,830,831,832,833,836,838,841,843,844,845,846,848,850,853,854,855,857,858,859,861,864,876,878,881,884,885,887,889,897,899,904,908,909,916,919,921,922,924,930,936,937,944,948,954,955,956,957,965,968,969,970,972,973,975,991,994,1010,1011,1012,1013,1021,1022,1028,1089,1091,1092,1093,1096,1097,1099,1100,1102,1104,1105,1109,1113,1115,1116,1118,1127,1130,1135,1136,1137,1140,1141,1142,1143,1144,1145,1148,1156,1157,1180,1181,1184,1188,1190,1210,1220,1233,1234,1236,1239,1249,1250,1253,1254,1256,1259,1261,1262,1264,1265,1266,1270,1273,1280,1283,1285,1288,1290,1292,1295,1296,1297,1298,1301,1306,1308,1310,1313,1317,1319,1321,1328,1331,1334,1339,1340,1341,1342,1344,1346,1349,1350,1351,1352,1361,1362,1375,1382,1386,1388,1389,1416,1417,1421,1423,1424,1428,1429,1435,1436,1438,1443,1445,1449,1450,1451,1453,1454,1455,1459,1460,1462,1466,1469,1470,1472,1474,1502,1512,1517,1521,1524,1525,1530,1541,1548,1550,1551,1560,1561,1562,1563,1564,1567,1568,1572,1573,1574,1576,1582,1583,1584,1585,1586,1590,1591,1592,1593,1594,1596,1602,1603,1604,1605,1607,1608,1611,1612,1614,1615,1619,1620,1622,1626,1627,1628,1634,1635,1636,1637,1649,1651,1653,1654,1656,1657,1681,1685,1686,1699,1718,1719,1720,1726,1729,1730,1735,1736,1738,1739,1743,1750,1755,1764,1769,1771,1778,1780,1784,1785,1786,1787,1789,1793,1798,1801,1802,1805,1806,1807,1810,1815,1837,1847,1849,1859,1870,1884,1894,1900,1902,1904,1914,1915,1929,1946,1950,1951,1953,1955,1962,1966,1970,1972,1975,1979,1980,1985,1986,1988,1992,1993,1997,1999,2002,2005,2009,2013,2014,2016,2023,2034,2035,2036,2041,2047,2049,2050,2070,2071,2073,2157,2178,2180,2184,2185,2189,2191,2416,2439,2440,2442,2443,2446,2447,2449,2455,2456,2459,2460,2461,2462,2464,2465,2467,2468,2469,2471,2478,2485,2487,2488,2490,2491,2492,2493,2494,2497,2505,2506,2523,2532,2561,2922,2948,2955,2959,2960,2980,2981,2983,3203,3247,3249,3342,3346,3732,3861,3972,3973,4017,4018,4019,4023,4024,4028,4035,4040,4045,4047,4051,4052,4053,4061,4065,4070,4073,4092,4102,4105,4106,4110,4112,4119,4121,4128,4139,4149,4188,4197,4202,4206,4209,4210,4216,4222,4228,4240,4254,4258,4281,4321,4329,4330,4331,4342,4347,4348,4354,4374,4379,4383,4384,4385,4387,4388,4389,4391,4393,4395,4403,4404,4405,4407,4409,4410,4412,4413,4417,4419,4420,4421,4423,4427,4428,4429,4431,4432,4433,4434,4435,4439,4441,4442,4443,4445,4446,4449,4456,4458,4461,4466,4467,4469,4475,4476,4554,4566,4572,4679,4685,4713,4723,4724,4734,4738,4747,4881,4906,4912,4914,4917,4919,4921,4931,4933,4934,4947,4969,4977,5001,5014,5054,5077,5081,5169,5182,5183,5187,5197,5380,5401,5681,5730,5735,5742,5744,5751,5778,5784,5804,5812,5817,5818,5819,5822,5823,5828,5830,5832,5833,5834,5843,5873,5878,5885,5886,5890,5893,5898,5900,5902,5903,5915,5936,5943,5947,5948,5949,5951,5955,5956,5965,5971,5979,5983,5986,5995,5996,6001,6003,6020,6043,6044,6045,6046,6056,6058,6061,6072,6076,6082,6086,6088,6089,6113,6155,6193,6218,6220,6291,6296,6428,6452,6454,6457,6462,6478,6492,6495,6497,6498,6500,6503,6511,6512,6516,6521,6523,6524,6533,6546,6548,6565,6587,6588,6592,6596,6605,6607,6608,6613,6617,6618,6619,6621,6646,6662,6664,6666,6667,6668,6669,6670,6671,6672,6674,6676,6677,6679,6683,6684,6685,6690,6693,6696,6698,6699,6701,6703,6707,6708,6709,6711,6720,6721,6724,6725,6726,6734,6737,6738,6739,6740,6741,6742,6743,6757,6761,6762,6763,6764,6765,6766,6767,6768,6769,6782,6783,6790,6791,6792,6802,6808,6822,6826,6829,6831,6835,6836,6837,6838,6839,6844,6848,6859,6864,6865,6866,6867,6870,6871,6873,6874,6875,6887,6891,6892,6894,6895,6896,6897,6899,6900,6901,6902,6906,6907,6911,6912,6921,6922,6923,6924,6925,6927,6930,6931,6932,6935,6936,6939,6940,6941,6945,6947,6954,6955,6956,6958,6959,6960,6961,6962,6963,6964,6966,6969,6972,6973,6974,6975,6977,6979,6982,6983,6989,6990,6993,6995,6996,6997,6998,6999,7001,7002,7007,7011,7012,7016,7017,7018,7029,7030,7032,7033,7035,7036,7037,7041,7042,7044,7047,7052,7054,7057,7058,7072,7077,7082,7086,7093,7105,7107,7108,7110,7118,7119,7121,7135,7137,7138,7142,7143,7146,7147,7151,7153,7154,7155,7156,7157,7159,7160,7162,7163,7168,7169,7170,7171,7173,7177,7181,7182,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7198,7199,7201,7204,7220,7223,7226,7227,7229,7230,7234,7235,7238,7241,7255,7256,7260,7263,7267,7270,7281,7282,7284,7285,7287,7292,7293,7294,7300,7303,7304,7311,7313,7314,7319,7326,7327,7330,7334,7335,7351,7357,7358,7360,7374,7375,7376,7380,7388,7391,7394,7396,7397,7398,7399,7401,7402,7403,7409,7410,7412,7414,7415,7418,7419,7429,7430,7432,7433,7434,7436,7437,7442,7445,7446,7448,7450,7454,7455,7457,7458,7459,7461,7464,7465,7466,7470,7472,7479,7480,7494,7496,7497,7498,7504,7509,7514,7515,7516,7519,7520,7525,7526,7527,7536,7537,7541,7542,7544,7546,7548,7549,7550,7551,7553,7561,7566,7573,7574,7575,7576,7577,7578,7580,7582,7584,7586,7588,7590,7592,7593,7596,7597,7599,7600,7601,7602,7603,7604,7605,7606,7607,7610,7612,7613,7614,7626,7628,7635,7643,7646,7647,7650,7651,7652,7655,7657,7661,7662,7663,7673,7674,7676,7683,7684,7687,7693,7694,7697,7699,7701,7710,7720,7723,7728,7731,7732,7733,7734,7735,7739,7740,7741,7742,7748,7757,7759,7760,7762,7766,7767,7770,7772,7773,7774,7776,7777,7780,7781,7783,7786,7790,7792,7794,7796,7799,7800,7801,7803,7804,7805,7809,7812,7813,7814,7817,7819,7820,7821,7822,7827,7831,7843,7845,7848,7849,7855,7856,7866,7871,7874,7880,7882,7885,7893,7896,7900,7902,7911,7913,7914,7915,7919,7920,7922,7923,7926,7927,7930,7931,7935,7940,7943,7944,7949,7950,7951,7953,7955,7956,7957,7958,7963,7965,7970,7971,7973,7975,7976,7985,7991,7993,7998,8000,8001,8013,8025,8026,8027,8028,8030,8031,8035,8036,8037,8038,8050,8054,8063,8069,8070,8071,8075,8076,8088,8089,8094,8097,8102,8105,8109,8112,8114,8119,8128,8129,8134,8140,8151,8152,8155,8166,8177,8178,8182,8183,8198,8228,8229,8230,8231,8233,8234,8235,8236,8238,8242,8243,8245,8251,8262,8264,8267,8269,8270,8271,8282,8284,8287,8291,8293,8299,8304,8305,8307,8308,8313,8321,8322,8323,8326,8327,8328,8332,8333,8334,8337,8341,8342,8343,8349,8352,8358,8360,8361,8363,8364,8365,8366,8367,8368,8369,8371,8373,8374,8375,8377,8378,8380,8386,8387,8391,8392,8393,8396,8398,8403,8404,8408,8410,8411,8414,8416,8420,8422,8428,8429,8430,8433,8435,8436,8437,8442,8443,8444,8446,8447,8450,8454,8456,8457,8463,8464,8469,8470,8478,8480,8482,8488,8489,8490,8492,8496,8497,8498,8499,8500,8501,8503,8504,8505,8506,8507,8508,8509,8510,8511,8516,8530,8532,8533,8534,8536,8537,8540,8541,8544,8545,8552,8554,8555,8558,8560,8563,8565,8571,8574,8575,8582,8583,8584,8586,8604,8656,8668,8670,8694,8695,8702,8705,8706,8708,8709,8710,8713,8714,8715,8716,8719,8733,8734,8741,8745,8746,8748,8749,8750,8753,8756,8758,8759,8760,8765,8769,8770,8774,8783,8784,8785,8786,8787,8788,8790,8791,8792,8796,8800,8801,8806,8808,8812,8814,8821,8822,8827,8833,8838,8839,8840,8841,8842,8843,8885,8997,9000,9003,9008,9014,9054,9064,9085,9110,9119,9129,9130,9139,9156,9157,9160,9177,9179,9186,9190,9192,9197,9198,9199,9200,9202,9210,9220,9223,9224,9318,9327,9328,9329,9330,9335,9336,9337,9338,9340,9341,9346,9348,9350,9351,9356,9358,9362,9363,9365,9366,9368,9371,9374,9375,9377,9380,9381,9382,9384,9385,9391,9392,9394,9396,9397,9398,9400,9401,9402,9407,9410,9412,9413,9415,9416,9417,9418,9419,9420,9422,9426,9430,9431,9436,9439,9440,9441,9442,9443,9444,9445,9447,9448,9450,9454,9455,9457,9458,9466,9471,9483,9484,9485,9486,9487,9488,9489,9491,9494,9495,9496,9497,9498,9499,9500,9501,9502,9504,9505,9506,9508,9510,9512,9514,9529,9535,9538,9539,9541,9544,9553,9554,9555,9556,9557,9560,9561,9565,9566,9567,9568,9569,9570,9571,9572,9574,9583,9584,9586,9587,9588,9589,9590,9592,9599,9605,9606,9609,9610,9612,9615,9616,9617,9618,9619,9622,9625,9626,9627,9628,9630,9631,9632,9633,9639,9641,9643,9644,9645,9646,9650,9652,9654,9658,9660,9662,9663,9664,9666,9667,9668,9669,9670,9672,9673,9675,9677,9679,9680,9681,9685,9686,9687,9689,9691,9692,9693,9694,9695,9701,9702,9703,9705,9706,9707,9708,9709,9710,9713,9716,9719,9720,9726,9732,9735,9736,9737,9739,9740,9741,9757,9761,9762,9767,9768,9771,9773,9774,9775,9777,9778,9779,9781,9783,9787,9788,9789,9790,9792,9797,9801,9802,9806,9807,9808,9809,9811,9813,9815,9816,9817,9818,9823,9841,9844,9854,9857,9885,9886,9887,9888,9889,9890,9995,10043,10046,10049,10050,10051,10064,10067,10076,10084,10099,10105,10106,10107,10112,10113,10114,10117,10123,10126,10153,10154,10160,10182,10183,10192,10246,10663,10675,10678,10679,10690,10692,10737,10762,10764,10784,10785,10788,10793,10803,10856,10864,10865,10879,10909,10910,10912,10919,10936,10942,10945,10947,10949,10951,10956,10957,10958,10965,10969,10971,11008,11132,11145,11146,11149,11163,11165,11174,11184,11201,11202,11205,11223,11283,11286,11290,11296,11302,11336,11357,11369,11400,11404,11442,11443,11457,11482,11486,11492,11516,11545,11546,11547,11548,11549,11550,11552,11555,11556,11557,11558,11559,11560,11561,11562,11563,11565,11566,11567,11569,11571,11573,11575,11578,11582,11593,11602,11607,11653,11659,11667,11669,11670,11682,11683,11697,11699,11713,11719,11720,11750,11755,11773,11777,11787,11796,11809,11822,11864,11912,11915,11948,11969,11989,12090,12112,12113,12229,12243,12254,12262,12264,12299,12301,12309,12310,12311,12312,12313,12314,12324,12325,12326,12327,12361,12362,12369,12370,12371,12373,12378,12381,12384,12385,12386,12389,12390,12391,12394,12395,12411,12412,12423,12485,12502,12503,12516,12529,12682,12688,12692,12715,12726,12750,12755,12758,12782,12784,12785,12786,12791,12793,12796,12797,12798,12799,12803,12806,12809,12810,12812,12813,12815,12816,12822,12824,12846,12847,12874,12876,12877,12878,12881,12883,12885,12886,12887,12890,12893,12894,12895,12897,12900,12901,12906,12907,12931,12979,13030,13052,13073,13109,13112,13129,13204,13239,13277,13298,13327,13356,13390,13406,13420,13462,13468,13482,13532,13533,13550,13612,13619,13634,13635,13638,13684,13688,13692,13714,13721,13737,13794,13804,13865,13867,13870,13923,13929,13952,14047,14052,14054,14070,14081,14094,14293,14325,14345,14353,14360,14431,14506,14513,14532,14546,14720,14738,14922,15056,15075,15103,15132,15239,15245,15253,15306,15328,15449,15464,15545,15674,15859,15955,16090,16117,16229,16269,16291,16494,16588,17120,17334,17335,17348,17376,17377,17452,17472,17491,17564,17635,17772,17774,17776,17777,17778,17780,17785,17794,17795,17808,17810,17941,18001,18032,18041,18044,18047,18051,18056,18089,18111,18127,18176,18179,18206,18233,18264,18334,18337,18340,18341,18342,18343,18355,18358,18376,18391,18393,18400,18401,18411,18412,18415,18416,18417,18420,18426,18457,18460,18580,18609,18639,18640,18642,18650,18696,18874,18898,18927,18952,18953,18955,18957,18958,18959,18960,18971,18973,19008,19009,19013,19021,19037,19038,19054,19062,19070,19095,19105,19106,19220,19231,19232,19235,19253,19272,19304,19306,19307,19316,19326,19350,19376,19394,19396,19402,19421,19425,19431,19443,19509,19527,19539,19588,19623,19624,19633,19650,19737,19739,19756,19828,19829,19834,19841,19857,19858,19861,19888,19891,19892,19899,19900,19907,19909,19910,19912,19914,19915,19919,19943,19955,19957,19963,19965,19977,19979,19980,19984,20030,20034,20061,20173,20273,20372,20408,20435,20440,20493,20495,20503,20505,20506,20512,20524,20526,20542,20543,20544,20545,20609,20610,20612,20613,20616,20617,20619,20621,20626,20627,20629,20630,20631,20635,20657,20660,20668,20670,20689,20720,20768,20902,20903,20908,20913,20916,20924,20944,21043,21050,21075,21102,21124,21159,21186,21192,21361,21379,21400,21401,21406,21408,21530,21565,21579,21590,21601,21604,21675,21679,21685,21687,21747,21748,21755,21761,21974,21975,21977,21978,21980,21992,22010,22026,22027,22031,22034,22035,22087,22089,22090,22096,22098,22100,22103,22104,22110,22117,22129,22131,22260,22343,22366,22466,22469,22472,22476,22478,22479,22483,22496,22537,22538,22539,22540,22541,22542,22543,22545,22550,22552,22562,22570,22572,22576,22577,22578,22609,22674,22750,22820,22827,22836,22867,22868,22869,22884,22887,22888,22889,22890,22892,22897,22899,22901,22903,22914,22916,22917,22924,22927,22933,22934,22935,22936,22938,22939,22941,22942,22944,22946,22947,22951,22952,22954,23037,23040,23041,23043,23102,23127,23134]]],["saidst",[19,19,[[0,6,6,0,6,[[11,1,1,0,1],[25,1,1,1,2],[31,2,2,2,4],[43,2,2,4,6]]],[6,1,1,6,7,[[219,1,1,6,7]]],[10,1,1,7,8,[[292,1,1,7,8]]],[17,2,2,8,10,[[470,2,2,8,10]]],[18,1,1,10,11,[[566,1,1,10,11]]],[22,2,2,11,13,[[725,1,1,11,12],[735,1,1,12,13]]],[23,3,3,13,16,[[746,2,2,13,15],[766,1,1,15,16]]],[24,1,1,16,17,[[799,1,1,16,17]]],[25,1,1,17,18,[[826,1,1,17,18]]],[27,1,1,18,19,[[874,1,1,18,19]]]],[317,701,937,940,1345,1347,6792,8812,13722,13723,15345,18606,18775,18985,18990,19475,20411,21086,22276]]],["saith",[580,567,[[0,3,3,0,3,[[31,1,1,0,1],[40,1,1,1,2],[44,1,1,2,3]]],[1,11,11,3,14,[[53,1,1,3,4],[54,2,2,4,6],[56,1,1,6,7],[57,2,2,7,9],[58,2,2,9,11],[59,1,1,11,12],[60,1,1,12,13],[81,1,1,13,14]]],[3,2,2,14,16,[[136,1,1,14,15],[138,1,1,15,16]]],[5,3,3,16,19,[[193,1,1,16,17],[208,1,1,17,18],[210,1,1,18,19]]],[6,2,2,19,21,[[216,1,1,19,20],[221,1,1,20,21]]],[8,5,5,21,26,[[237,1,1,21,22],[245,1,1,22,23],[250,1,1,23,24],[255,1,1,24,25],[259,1,1,25,26]]],[9,4,4,26,30,[[273,2,2,26,28],[278,2,2,28,30]]],[10,20,18,30,48,[[292,1,1,30,31],[293,2,1,31,32],[301,1,1,32,33],[302,1,1,33,34],[303,2,2,34,36],[304,1,1,36,37],[307,1,1,37,38],[310,6,6,38,44],[311,2,1,44,45],[312,3,3,45,48]]],[11,28,28,48,76,[[313,3,3,48,51],[314,1,1,51,52],[315,2,2,52,54],[316,1,1,54,55],[317,1,1,55,56],[319,1,1,56,57],[321,5,5,57,62],[330,3,3,62,65],[331,4,4,65,69],[332,3,3,69,72],[333,1,1,72,73],[334,3,3,73,76]]],[12,4,4,76,80,[[354,2,2,76,78],[358,2,2,78,80]]],[13,13,13,80,93,[[377,1,1,80,81],[378,1,1,81,82],[384,3,3,82,85],[386,1,1,85,86],[387,1,1,86,87],[390,1,1,87,88],[398,1,1,88,89],[400,3,3,89,92],[402,1,1,92,93]]],[14,1,1,93,94,[[403,1,1,93,94]]],[15,1,1,94,95,[[418,1,1,94,95]]],[17,6,5,95,100,[[463,2,1,95,96],[468,1,1,96,97],[470,1,1,97,98],[472,1,1,98,99],[474,1,1,99,100]]],[18,2,2,100,102,[[489,1,1,100,101],[527,1,1,101,102]]],[19,11,11,102,113,[[636,2,2,102,104],[647,1,1,104,105],[649,1,1,105,106],[650,1,1,106,107],[651,1,1,107,108],[653,2,2,108,110],[655,1,1,110,111],[657,2,2,111,113]]],[20,4,4,113,117,[[659,1,1,113,114],[665,1,1,114,115],[668,1,1,115,116],[670,1,1,116,117]]],[22,84,80,117,197,[[679,2,2,117,119],[681,1,1,119,120],[685,1,1,120,121],[688,3,3,121,124],[700,2,2,124,126],[706,1,1,126,127],[707,3,3,127,130],[708,2,2,130,132],[711,1,1,132,133],[714,3,3,133,136],[715,4,4,136,140],[716,2,2,140,142],[717,1,1,142,143],[718,2,2,143,145],[719,2,1,145,146],[720,2,2,146,148],[721,3,3,148,151],[722,8,8,151,159],[723,6,6,159,165],[726,2,2,165,167],[727,5,5,167,172],[728,1,1,172,173],[729,1,1,173,174],[730,3,3,174,177],[732,4,4,177,181],[734,2,2,181,183],[735,3,3,183,186],[737,2,1,186,187],[743,5,4,187,191],[744,7,6,191,197]]],[23,160,159,197,356,[[746,2,2,197,199],[748,1,1,199,200],[749,1,1,200,201],[750,5,5,201,206],[751,3,3,206,209],[752,2,2,209,211],[753,5,5,211,216],[754,2,2,216,218],[755,4,4,218,222],[756,1,1,222,223],[757,4,4,223,227],[758,2,2,227,229],[759,2,2,229,231],[760,3,3,231,234],[761,2,2,234,236],[762,2,2,236,238],[763,4,4,238,242],[764,1,1,242,243],[765,3,3,243,246],[766,7,7,246,253],[767,4,4,253,257],[768,2,2,257,259],[769,5,5,259,264],[770,3,3,264,267],[771,5,5,267,272],[772,4,4,272,276],[773,8,8,276,284],[774,4,4,284,288],[775,7,7,288,295],[776,6,6,295,301],[777,9,9,301,310],[778,5,4,310,314],[779,4,4,314,318],[780,2,2,318,320],[781,2,2,320,322],[782,3,3,322,325],[783,1,1,325,326],[786,3,3,326,329],[787,1,1,329,330],[788,6,6,330,336],[789,2,2,336,338],[790,2,2,338,340],[791,1,1,340,341],[792,2,2,341,343],[793,7,7,343,350],[794,2,2,350,352],[795,4,4,352,356]]],[24,2,2,356,358,[[799,2,2,356,358]]],[25,127,127,358,485,[[803,1,1,358,359],[804,2,2,359,361],[806,3,3,361,364],[807,2,2,364,366],[808,2,2,366,368],[812,4,4,368,372],[813,4,4,372,376],[814,5,5,376,381],[815,3,3,381,384],[816,1,1,384,385],[817,3,3,385,388],[818,4,4,388,392],[819,1,1,392,393],[821,6,6,393,399],[822,5,5,399,404],[823,3,3,404,407],[824,5,5,407,412],[825,4,4,412,416],[826,7,7,416,423],[827,4,4,423,427],[828,1,1,427,428],[829,5,5,428,433],[830,4,4,433,437],[831,5,5,437,442],[832,2,2,442,444],[833,2,2,444,446],[834,2,2,446,448],[835,5,5,448,453],[836,2,2,453,455],[837,10,10,455,465],[838,5,5,465,470],[839,4,4,470,474],[840,3,3,474,477],[844,1,1,477,478],[845,2,2,478,480],[846,2,2,480,482],[847,2,2,482,484],[848,1,1,484,485]]],[29,24,24,485,509,[[879,8,8,485,493],[880,4,4,493,497],[881,2,2,497,499],[883,5,5,499,504],[885,4,4,504,508],[887,1,1,508,509]]],[30,2,2,509,511,[[888,2,2,509,511]]],[32,3,3,511,514,[[894,1,1,511,512],[895,1,1,512,513],[898,1,1,513,514]]],[33,1,1,514,515,[[900,1,1,514,515]]],[34,1,1,515,516,[[904,1,1,515,516]]],[35,1,1,516,517,[[908,1,1,516,517]]],[36,7,7,517,524,[[909,3,3,517,520],[910,4,4,520,524]]],[37,22,20,524,544,[[911,6,5,524,529],[912,1,1,529,530],[913,1,1,530,531],[914,1,1,531,532],[917,1,1,532,533],[918,11,10,533,543],[921,1,1,543,544]]],[38,26,23,544,567,[[925,11,9,544,553],[926,5,4,553,557],[927,8,8,557,565],[928,2,2,565,567]]]],[932,1250,1367,1623,1633,1642,1702,1711,1730,1743,1755,1780,1810,2465,4325,4391,5989,6442,6478,6662,6844,7267,7436,7562,7733,7852,8185,8188,8293,8297,8800,8839,9139,9175,9186,9205,9225,9331,9410,9421,9422,9436,9440,9450,9470,9491,9494,9507,9537,9539,9549,9572,9592,9593,9646,9660,9708,9759,9762,9768,9774,9775,10043,10053,10055,10064,10067,10081,10093,10099,10103,10115,10131,10160,10161,10163,10867,10870,10944,10945,11418,11442,11552,11555,11568,11602,11636,11697,11885,11956,11957,11959,12016,12018,12407,13518,13674,13730,13775,13859,14071,14684,16642,16654,16968,17028,17051,17103,17154,17160,17220,17267,17271,17317,17456,17496,17531,17665,17672,17723,17789,17858,17863,17874,18066,18067,18180,18204,18205,18215,18229,18232,18289,18334,18344,18346,18355,18358,18373,18385,18391,18395,18418,18421,18445,18472,18485,18502,18506,18519,18521,18535,18539,18549,18550,18557,18559,18560,18561,18562,18571,18572,18574,18575,18579,18631,18636,18641,18643,18644,18658,18661,18663,18695,18699,18700,18703,18724,18729,18731,18733,18754,18757,18780,18784,18786,18821,18904,18905,18910,18922,18923,18931,18934,18942,18943,18945,18967,18970,19030,19072,19098,19104,19105,19110,19111,19122,19139,19140,19157,19165,19182,19188,19190,19192,19198,19203,19219,19229,19237,19247,19248,19263,19267,19275,19278,19279,19303,19308,19317,19334,19339,19341,19345,19362,19378,19395,19397,19408,19410,19418,19422,19426,19444,19448,19452,19455,19457,19460,19465,19468,19472,19484,19486,19499,19500,19522,19529,19532,19542,19549,19561,19562,19566,19574,19576,19590,19598,19600,19612,19615,19617,19629,19631,19632,19634,19639,19643,19645,19651,19652,19656,19666,19667,19670,19672,19679,19685,19693,19698,19706,19707,19714,19726,19728,19734,19745,19746,19759,19767,19773,19777,19779,19785,19786,19787,19788,19792,19795,19800,19803,19805,19814,19818,19836,19840,19841,19842,19871,19872,19881,19883,19897,19898,19912,19939,19984,19990,19993,20007,20012,20017,20021,20035,20036,20040,20042,20044,20053,20070,20075,20081,20120,20128,20129,20134,20139,20145,20155,20162,20184,20199,20213,20245,20248,20270,20378,20391,20496,20513,20529,20551,20553,20554,20566,20574,20579,20582,20660,20662,20671,20672,20690,20699,20703,20708,20711,20716,20721,20726,20728,20735,20737,20752,20760,20765,20798,20821,20828,20834,20844,20847,20878,20898,20900,20922,20925,20934,20942,20947,20953,20968,20970,20972,20979,20995,21004,21029,21035,21039,21042,21053,21059,21062,21065,21077,21086,21089,21091,21095,21096,21098,21099,21103,21107,21115,21119,21124,21159,21163,21169,21179,21182,21186,21191,21196,21202,21206,21210,21214,21217,21226,21240,21245,21251,21259,21305,21307,21315,21323,21324,21330,21333,21347,21358,21361,21362,21363,21364,21365,21366,21372,21381,21392,21396,21402,21406,21409,21416,21418,21428,21435,21439,21442,21449,21465,21473,21590,21605,21608,21639,21648,21656,21671,21692,22367,22369,22370,22372,22373,22375,22377,22379,22380,22382,22383,22385,22406,22407,22426,22427,22439,22440,22450,22467,22470,22475,22481,22510,22511,22513,22598,22613,22649,22696,22767,22840,22845,22847,22848,22861,22862,22864,22866,22881,22882,22892,22894,22895,22907,22919,22928,22975,22978,22979,22980,22982,22983,22985,22990,22995,22996,22999,23032,23091,23093,23095,23097,23098,23099,23100,23102,23103,23105,23107,23111,23119,23121,23125,23127,23130,23131,23132,23133,23137,23139,23141]]],["say",[523,503,[[0,22,22,0,22,[[11,1,1,0,1],[13,1,1,1,2],[19,1,1,2,3],[23,3,3,3,6],[25,1,1,6,7],[31,2,2,7,9],[33,2,2,9,11],[36,2,2,11,13],[40,1,1,13,14],[42,1,1,14,15],[43,2,2,15,17],[44,1,1,17,18],[45,3,3,18,21],[49,1,1,21,22]]],[1,25,23,22,45,[[52,7,5,22,27],[53,3,3,27,30],[54,2,2,30,32],[55,1,1,32,33],[56,2,2,33,35],[57,2,2,35,37],[58,1,1,37,38],[61,2,2,38,40],[62,1,1,40,41],[63,1,1,41,42],[68,1,1,42,43],[69,1,1,43,44],[81,1,1,44,45]]],[2,14,14,45,59,[[90,1,1,45,46],[104,1,1,46,47],[106,2,2,47,49],[107,1,1,49,50],[108,1,1,50,51],[109,1,1,51,52],[110,1,1,52,53],[111,1,1,53,54],[112,2,2,54,56],[114,2,2,56,58],[116,1,1,58,59]]],[3,19,19,59,78,[[121,4,4,59,63],[122,1,1,63,64],[124,1,1,64,65],[127,2,2,65,67],[131,2,2,67,69],[134,2,2,69,71],[137,1,1,71,72],[141,1,1,72,73],[144,2,2,73,75],[149,1,1,75,76],[150,1,1,76,77],[151,1,1,77,78]]],[4,48,47,78,125,[[156,1,1,78,79],[157,2,2,79,81],[158,1,1,81,82],[159,1,1,82,83],[160,1,1,83,84],[161,1,1,84,85],[164,1,1,85,86],[167,1,1,86,87],[169,1,1,87,88],[170,1,1,88,89],[172,2,2,89,91],[173,2,2,91,93],[174,2,2,93,95],[177,3,3,95,98],[178,3,3,98,101],[179,13,13,101,114],[180,2,1,114,115],[181,3,3,115,118],[182,2,2,118,120],[183,1,1,120,121],[184,3,3,121,124],[185,1,1,124,125]]],[5,8,7,125,132,[[193,2,2,125,127],[194,1,1,127,128],[195,1,1,128,129],[208,4,3,129,132]]],[6,9,7,132,139,[[214,2,1,132,133],[217,3,2,133,135],[219,1,1,135,136],[226,1,1,136,137],[228,1,1,137,138],[231,1,1,138,139]]],[7,1,1,139,140,[[232,1,1,139,140]]],[8,17,17,140,157,[[237,1,1,140,141],[238,1,1,141,142],[243,1,1,142,143],[245,1,1,143,144],[246,1,1,144,145],[248,1,1,145,146],[249,3,3,146,149],[251,1,1,149,150],[253,2,2,150,152],[254,1,1,152,153],[255,3,3,153,156],[260,1,1,156,157]]],[9,18,18,157,175,[[273,1,1,157,158],[277,3,3,158,161],[279,2,2,161,163],[280,1,1,163,164],[281,3,3,164,167],[282,1,1,167,168],[283,1,1,168,169],[285,2,2,169,171],[286,1,1,171,172],[287,1,1,172,173],[290,2,2,173,175]]],[10,9,9,175,184,[[291,4,4,175,179],[299,1,1,179,180],[306,1,1,180,181],[308,1,1,181,182],[312,2,2,182,184]]],[11,12,12,184,196,[[314,1,1,184,185],[316,2,2,185,187],[319,1,1,187,188],[320,1,1,188,189],[321,3,3,189,192],[330,1,1,192,193],[331,2,2,193,195],[334,1,1,195,196]]],[12,4,4,196,200,[[353,2,2,196,198],[354,1,1,198,199],[358,1,1,199,200]]],[13,6,6,200,206,[[373,1,1,200,201],[376,1,1,201,202],[384,2,2,202,204],[386,1,1,204,205],[400,1,1,205,206]]],[14,1,1,206,207,[[411,1,1,206,207]]],[16,1,1,207,208,[[426,1,1,207,208]]],[17,19,19,208,227,[[441,1,1,208,209],[442,2,2,209,211],[444,2,2,211,213],[445,1,1,213,214],[454,1,1,214,215],[455,1,1,215,216],[456,2,2,216,218],[457,1,1,218,219],[458,1,1,219,220],[463,1,1,220,221],[467,1,1,221,222],[468,1,1,222,223],[469,1,1,223,224],[471,1,1,224,225],[472,1,1,225,226],[473,1,1,226,227]]],[18,33,32,227,259,[[480,1,1,227,228],[481,1,1,228,229],[488,1,1,229,230],[490,1,1,230,231],[512,5,4,231,235],[517,2,2,235,237],[519,3,3,237,240],[535,1,1,240,241],[541,1,1,241,242],[547,2,2,242,244],[550,2,2,244,246],[556,1,1,246,247],[568,1,1,247,248],[571,1,1,248,249],[583,1,1,249,250],[584,1,1,250,251],[592,1,1,251,252],[595,3,3,252,255],[601,1,1,255,256],[606,2,2,256,258],[616,1,1,258,259]]],[19,5,5,259,264,[[628,1,1,259,260],[632,1,1,260,261],[647,1,1,261,262],[657,2,2,262,264]]],[20,4,4,264,268,[[663,1,1,264,265],[664,1,1,265,266],[666,1,1,266,267],[670,1,1,267,268]]],[22,44,43,268,311,[[680,1,1,268,269],[683,1,1,269,270],[685,1,1,270,271],[686,2,2,271,273],[687,1,1,273,274],[690,2,2,274,276],[692,2,2,276,278],[697,1,1,278,279],[698,1,1,279,280],[707,3,2,280,282],[708,2,2,282,284],[711,1,1,284,285],[714,2,2,285,287],[715,2,2,287,289],[716,1,1,289,290],[718,1,1,290,291],[719,1,1,291,292],[720,1,1,292,293],[721,2,2,293,295],[722,3,3,295,298],[723,2,2,298,300],[726,3,3,300,303],[727,3,3,303,306],[729,1,1,306,307],[734,1,1,307,308],[735,1,1,308,309],[736,1,1,309,310],[743,1,1,310,311]]],[23,78,74,311,385,[[746,3,3,311,314],[747,3,3,314,317],[748,2,1,317,318],[749,3,3,318,321],[751,3,3,321,324],[752,2,2,324,326],[755,1,1,326,327],[757,4,4,327,331],[758,2,2,331,333],[759,1,1,333,334],[760,3,3,334,337],[761,2,2,337,339],[763,2,2,339,341],[765,3,3,341,344],[766,2,2,344,346],[767,8,7,346,353],[769,3,3,353,356],[770,1,1,356,357],[771,2,1,357,358],[775,3,3,358,361],[776,3,3,361,364],[777,2,2,364,366],[780,1,1,366,367],[781,1,1,367,368],[782,3,3,368,371],[786,2,2,371,373],[787,2,2,373,375],[789,2,2,375,377],[790,1,1,377,378],[792,3,3,378,381],[794,1,1,381,382],[795,4,3,382,385]]],[24,2,2,385,387,[[798,2,2,385,387]]],[25,76,75,387,462,[[803,1,1,387,388],[804,2,2,388,390],[807,2,2,390,392],[809,1,1,392,393],[810,1,1,393,394],[812,3,3,394,397],[813,3,3,397,400],[814,4,4,400,404],[815,3,3,404,407],[817,1,1,407,408],[818,1,1,408,409],[819,2,2,409,411],[820,1,1,411,412],[821,7,7,412,419],[822,5,4,419,423],[823,2,2,423,425],[825,1,1,425,426],[826,2,2,426,428],[827,1,1,428,429],[828,1,1,429,430],[829,3,3,430,433],[830,1,1,433,434],[831,1,1,434,435],[833,1,1,435,436],[834,8,8,436,444],[835,1,1,444,445],[836,1,1,445,446],[837,6,6,446,452],[838,4,4,452,456],[839,4,4,456,460],[840,1,1,460,461],[845,1,1,461,462]]],[27,8,7,462,469,[[863,3,2,462,464],[871,2,2,464,466],[874,1,1,466,467],[875,2,2,467,469]]],[28,4,3,469,472,[[877,3,2,469,471],[878,1,1,471,472]]],[29,9,7,472,479,[[881,1,1,472,473],[882,1,1,473,474],[883,1,1,474,475],[884,4,2,475,477],[886,1,1,477,478],[887,1,1,478,479]]],[32,4,4,479,483,[[894,1,1,479,480],[895,1,1,480,481],[896,2,2,481,483]]],[33,1,1,483,484,[[902,1,1,483,484]]],[34,1,1,484,485,[[904,1,1,484,485]]],[35,1,1,485,486,[[906,1,1,485,486]]],[36,1,1,486,487,[[909,1,1,486,487]]],[37,8,7,487,494,[[911,1,1,487,488],[921,1,1,488,489],[922,1,1,489,490],[923,5,4,490,494]]],[38,11,9,494,503,[[925,6,5,494,499],[926,3,2,499,501],[927,2,2,501,503]]]],[310,359,508,605,634,635,699,946,948,991,992,1100,1103,1210,1297,1328,1340,1367,1417,1419,1420,1523,1592,1593,1594,1595,1597,1602,1623,1624,1648,1649,1661,1694,1701,1711,1730,1755,1842,1843,1881,1892,2029,2073,2450,2747,3170,3237,3243,3253,3283,3320,3346,3387,3404,3412,3471,3489,3572,3804,3811,3813,3814,3825,3941,4036,4042,4155,4171,4283,4287,4367,4483,4579,4580,4811,4818,4855,5010,5080,5083,5107,5128,5154,5185,5260,5335,5378,5405,5430,5435,5454,5467,5484,5486,5554,5555,5556,5569,5571,5579,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5678,5701,5703,5704,5720,5721,5745,5785,5795,5798,5837,5984,5989,6008,6048,6437,6453,6454,6619,6698,6712,6808,6964,7017,7124,7139,7276,7285,7376,7420,7454,7489,7517,7518,7542,7597,7698,7701,7730,7736,7737,7752,7867,8188,8279,8280,8284,8322,8345,8388,8399,8415,8423,8436,8458,8513,8524,8570,8584,8693,8704,8730,8742,8751,8753,9059,9299,9385,9488,9507,9569,9629,9631,9711,9737,9759,9773,9793,10046,10067,10070,10163,10851,10855,10870,10952,11345,11405,11549,11568,11608,11959,12247,12720,13000,13012,13021,13063,13078,13088,13325,13333,13369,13383,13418,13424,13526,13641,13677,13701,13759,13788,13828,13959,13971,14060,14078,14413,14420,14435,14437,14540,14541,14558,14564,14565,14790,14855,14974,14975,15031,15035,15195,15397,15438,15699,15701,15832,15871,15872,15873,16103,16133,16140,16250,16411,16529,16963,17260,17266,17403,17420,17462,17524,17688,17758,17786,17819,17826,17838,17901,17904,17932,17938,18015,18035,18208,18209,18227,18239,18303,18335,18337,18358,18361,18395,18429,18477,18497,18511,18514,18538,18552,18553,18570,18585,18619,18621,18634,18645,18656,18657,18689,18756,18779,18795,18902,18988,18992,18996,19003,19014,19018,19032,19060,19077,19082,19121,19129,19147,19157,19161,19229,19278,19279,19287,19288,19306,19308,19317,19346,19347,19355,19372,19377,19410,19418,19443,19448,19453,19456,19462,19491,19501,19517,19518,19519,19521,19522,19561,19562,19564,19576,19600,19698,19701,19720,19734,19767,19774,19785,19786,19871,19881,19917,19920,19921,19988,19995,19999,20007,20043,20044,20059,20094,20097,20099,20168,20247,20274,20276,20344,20348,20496,20520,20529,20566,20574,20616,20631,20658,20671,20672,20699,20707,20708,20710,20715,20723,20726,20735,20737,20748,20765,20828,20868,20874,20883,20898,20900,20922,20925,20927,20942,20944,20947,20951,20953,20972,20979,21000,21059,21086,21091,21117,21124,21159,21169,21179,21186,21206,21250,21282,21288,21292,21293,21294,21297,21300,21305,21315,21347,21360,21362,21365,21372,21381,21394,21401,21406,21408,21409,21428,21436,21438,21439,21449,21605,22112,22128,22228,22233,22268,22284,22285,22328,22330,22353,22404,22411,22439,22460,22463,22495,22505,22599,22619,22622,22631,22719,22754,22799,22842,22881,23033,23050,23062,23064,23065,23068,23091,23094,23095,23096,23101,23117,23120,23128,23133]]],["sayest",[18,17,[[1,1,1,0,1,[[82,1,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[10,2,2,3,5,[[308,2,2,3,5]]],[11,1,1,5,6,[[330,1,1,5,6]]],[13,1,1,6,7,[[391,1,1,6,7]]],[15,2,2,7,9,[[417,1,1,7,8],[418,1,1,8,9]]],[17,2,2,9,11,[[457,1,1,9,10],[470,1,1,10,11]]],[18,1,1,11,12,[[567,1,1,11,12]]],[19,1,1,12,13,[[651,1,1,12,13]]],[22,2,2,13,15,[[718,1,1,13,14],[725,1,1,14,15]]],[23,2,1,15,16,[[746,2,1,15,16]]],[29,1,1,16,17,[[885,1,1,16,17]]]],[2485,4392,7177,9352,9355,10044,11723,12394,12409,13402,13734,15381,17091,18447,18607,19000,22480]]],["saying",[907,874,[[0,77,70,0,70,[[0,1,1,0,1],[1,1,1,1,2],[2,1,1,2,3],[4,1,1,3,4],[7,1,1,4,5],[8,1,1,5,6],[14,3,3,6,9],[16,1,1,9,10],[17,3,3,10,13],[18,1,1,13,14],[20,1,1,14,15],[21,1,1,15,16],[22,6,6,16,22],[23,3,3,22,25],[25,2,2,25,27],[26,2,1,27,28],[27,2,2,28,30],[30,2,2,30,32],[31,5,4,32,36],[33,3,3,36,39],[36,1,1,39,40],[37,5,5,40,45],[38,4,4,45,49],[39,1,1,49,50],[40,2,2,50,52],[41,6,5,52,57],[42,3,2,57,59],[43,3,3,59,62],[44,2,2,62,64],[46,1,1,64,65],[47,2,1,65,66],[49,6,4,66,70]]],[1,47,46,70,116,[[50,1,1,70,71],[52,1,1,71,72],[54,5,5,72,77],[55,3,3,77,80],[56,3,3,80,83],[58,1,1,83,84],[60,1,1,84,85],[61,2,2,85,87],[62,4,4,87,91],[63,2,2,91,93],[64,2,2,93,95],[65,2,2,95,97],[66,2,2,97,99],[68,3,3,99,102],[69,1,1,102,103],[74,1,1,103,104],[79,4,4,104,108],[80,3,3,108,111],[82,1,1,111,112],[84,2,1,112,113],[85,2,2,113,115],[89,1,1,115,116]]],[2,51,51,116,167,[[90,1,1,116,117],[93,2,2,117,119],[94,1,1,119,120],[95,6,6,120,126],[96,4,4,126,130],[97,2,2,130,132],[98,1,1,132,133],[99,3,3,133,136],[100,2,2,136,138],[101,2,2,138,140],[102,1,1,140,141],[103,3,3,141,144],[104,1,1,144,145],[106,2,2,145,147],[107,1,1,147,148],[108,1,1,148,149],[109,1,1,149,150],[110,2,2,150,152],[111,3,3,152,155],[112,7,7,155,162],[113,3,3,162,165],[114,1,1,165,166],[116,1,1,166,167]]],[3,84,83,167,250,[[117,2,2,167,169],[118,1,1,169,170],[119,4,4,170,174],[120,3,3,174,177],[121,3,3,177,180],[122,4,3,180,183],[123,1,1,183,184],[124,3,3,184,187],[125,3,3,187,190],[126,1,1,190,191],[127,3,3,191,194],[128,1,1,194,195],[129,2,2,195,197],[130,5,5,197,202],[131,3,3,202,205],[132,8,8,205,213],[133,2,2,213,215],[134,1,1,215,216],[135,2,2,216,218],[136,3,3,218,221],[137,1,1,221,222],[138,1,1,222,223],[139,1,1,223,224],[140,1,1,224,225],[141,2,2,225,227],[142,3,3,227,230],[143,4,4,230,234],[144,1,1,234,235],[146,1,1,235,236],[147,3,3,236,239],[148,3,3,239,242],[149,1,1,242,243],[150,3,3,243,246],[151,2,2,246,248],[152,2,2,248,250]]],[4,38,38,250,288,[[153,7,7,250,257],[154,4,4,257,261],[155,3,3,261,264],[157,1,1,264,265],[158,1,1,265,266],[161,3,3,266,269],[164,1,1,269,270],[165,4,4,270,274],[167,2,2,274,276],[170,1,1,276,277],[171,1,1,277,278],[172,1,1,278,279],[174,1,1,279,280],[179,3,3,280,283],[181,1,1,283,284],[183,2,2,284,286],[184,1,1,286,287],[186,1,1,287,288]]],[5,42,39,288,327,[[187,6,6,288,294],[188,3,3,294,297],[189,3,3,297,300],[190,8,7,300,307],[192,2,2,307,309],[193,1,1,309,310],[194,1,1,310,311],[195,3,2,311,313],[196,3,3,313,316],[200,1,1,316,317],[203,3,3,317,320],[204,1,1,320,321],[206,2,2,321,323],[207,1,1,323,324],[208,4,3,324,327]]],[6,29,28,327,355,[[211,1,1,327,328],[215,1,1,328,329],[216,2,2,329,331],[217,3,3,331,334],[218,2,2,334,336],[219,2,2,336,338],[220,1,1,338,339],[221,2,2,339,341],[223,1,1,341,342],[225,1,1,342,343],[226,3,2,343,345],[229,1,1,345,346],[230,4,4,346,350],[231,5,5,350,355]]],[7,3,3,355,358,[[233,1,1,355,356],[235,2,2,356,358]]],[8,47,46,358,404,[[239,1,1,358,359],[240,1,1,359,360],[241,2,2,360,362],[242,2,2,362,364],[244,2,2,364,366],[245,1,1,366,367],[246,1,1,367,368],[248,1,1,368,369],[249,3,3,369,372],[250,2,2,372,374],[251,1,1,374,375],[252,2,2,375,377],[253,1,1,377,378],[254,4,4,378,382],[255,1,1,382,383],[256,1,1,383,384],[258,4,4,384,388],[259,3,3,388,391],[260,2,2,391,393],[261,4,4,393,397],[262,3,2,397,399],[263,2,2,399,401],[264,1,1,401,402],[265,2,2,402,404]]],[9,42,39,404,443,[[267,1,1,404,405],[268,2,2,405,407],[269,7,6,407,413],[270,1,1,413,414],[271,3,3,414,417],[272,1,1,417,418],[273,4,4,418,422],[277,3,3,422,425],[279,3,3,425,428],[280,1,1,428,429],[281,4,4,429,433],[283,2,2,433,435],[284,2,2,435,437],[285,4,3,437,440],[286,2,1,440,441],[287,1,1,441,442],[290,1,1,442,443]]],[10,69,65,443,508,[[291,9,8,443,451],[292,8,8,451,459],[295,3,3,459,462],[296,1,1,462,463],[298,4,4,463,467],[299,1,1,467,468],[302,10,9,468,477],[303,7,7,477,484],[305,1,1,484,485],[306,1,1,485,486],[307,2,2,486,488],[308,3,3,488,491],[309,1,1,491,492],[310,4,3,492,495],[311,10,9,495,504],[312,4,4,504,508]]],[11,59,57,508,565,[[315,1,1,508,509],[316,2,2,509,511],[317,5,5,511,516],[318,4,4,516,520],[319,4,4,520,524],[320,6,6,524,530],[321,5,5,530,535],[322,4,4,535,539],[323,1,1,539,540],[326,4,3,540,543],[327,1,1,543,544],[328,2,2,544,546],[329,4,4,546,550],[330,5,5,550,555],[331,4,3,555,558],[332,2,2,558,560],[333,1,1,560,561],[334,3,3,561,564],[335,1,1,564,565]]],[12,12,12,565,577,[[341,2,2,565,567],[348,1,1,567,568],[349,1,1,568,569],[350,1,1,569,570],[351,1,1,570,571],[354,3,3,571,574],[358,2,2,574,576],[359,1,1,576,577]]],[13,46,43,577,620,[[368,1,1,577,578],[372,3,3,578,581],[373,1,1,581,582],[376,9,8,582,590],[377,2,2,590,592],[378,1,1,592,593],[382,1,1,593,594],[384,5,4,594,598],[385,1,1,598,599],[386,3,3,599,602],[387,1,1,602,603],[391,5,4,603,607],[396,2,2,607,609],[398,6,6,609,615],[400,3,3,615,618],[401,1,1,618,619],[402,1,1,619,620]]],[14,4,4,620,624,[[403,1,1,620,621],[410,1,1,621,622],[411,2,2,622,624]]],[15,8,8,624,632,[[413,1,1,624,625],[418,5,5,625,630],[420,2,2,630,632]]],[17,1,1,632,633,[[459,1,1,632,633]]],[18,1,1,633,634,[[596,1,1,633,634]]],[20,1,1,634,635,[[659,1,1,634,635]]],[22,29,28,635,663,[[681,1,1,635,636],[682,1,1,636,637],[685,3,3,637,640],[686,2,2,640,642],[692,1,1,642,643],[694,1,1,643,644],[697,1,1,644,645],[698,1,1,645,646],[701,1,1,646,647],[707,2,2,647,649],[708,1,1,649,650],[714,3,3,650,653],[715,5,4,653,657],[716,1,1,657,658],[719,2,2,658,660],[722,1,1,660,661],[724,1,1,661,662],[734,1,1,662,663]]],[23,110,106,663,769,[[745,3,3,663,666],[746,2,2,666,668],[748,1,1,668,669],[749,1,1,669,670],[750,1,1,670,671],[751,3,3,671,674],[752,2,2,674,676],[755,5,5,676,681],[757,2,2,681,683],[760,1,1,683,684],[762,3,3,684,687],[764,1,1,687,688],[765,1,1,688,689],[767,3,3,689,692],[768,1,1,692,693],[769,1,1,693,694],[770,7,7,694,701],[771,6,5,701,706],[772,5,5,706,711],[773,8,7,711,718],[774,2,2,718,720],[775,1,1,720,721],[776,6,6,721,727],[777,4,4,727,731],[778,3,3,731,734],[779,4,4,734,738],[780,7,6,738,744],[781,5,5,744,749],[782,4,4,749,753],[783,3,3,753,756],[784,2,2,756,758],[786,1,1,758,759],[787,2,2,759,761],[788,7,6,761,767],[789,1,1,767,768],[793,1,1,768,769]]],[25,65,65,769,834,[[804,1,1,769,770],[807,1,1,770,771],[808,1,1,771,772],[810,2,2,772,774],[811,1,1,774,775],[812,1,1,775,776],[813,6,6,776,782],[814,3,3,782,785],[815,2,2,785,787],[816,1,1,787,788],[817,2,2,788,790],[818,2,2,790,792],[819,2,2,792,794],[821,3,3,794,797],[822,3,3,797,800],[823,4,4,800,804],[824,1,1,804,805],[825,3,3,805,808],[826,1,1,808,809],[827,1,1,809,810],[828,1,1,810,811],[829,3,3,811,814],[830,2,2,814,816],[831,2,2,816,818],[832,1,1,818,819],[833,2,2,819,821],[834,6,6,821,827],[835,1,1,827,828],[836,2,2,828,830],[837,1,1,830,831],[838,2,2,831,833],[839,1,1,833,834]]],[29,3,3,834,837,[[880,1,1,834,835],[881,1,1,835,836],[885,1,1,836,837]]],[31,3,3,837,840,[[889,1,1,837,838],[891,2,2,838,840]]],[36,10,10,840,850,[[909,4,4,840,844],[910,6,6,844,850]]],[37,26,24,850,874,[[911,6,6,850,856],[912,1,1,856,857],[913,2,2,857,859],[914,4,3,859,862],[916,4,3,862,865],[917,5,5,865,870],[918,4,4,870,874]]]],[21,46,72,134,198,213,361,364,378,400,436,437,439,472,535,567,574,576,579,581,584,585,598,621,628,703,712,733,779,793,874,902,932,934,945,947,984,988,1000,1098,1132,1140,1143,1144,1147,1161,1163,1166,1168,1179,1204,1211,1266,1274,1280,1281,1289,1293,1297,1325,1343,1356,1374,1384,1425,1471,1510,1511,1522,1531,1554,1595,1638,1640,1642,1645,1647,1665,1667,1684,1693,1694,1701,1747,1814,1817,1819,1868,1875,1881,1886,1890,1901,1921,1944,1958,1959,1987,1990,2029,2038,2049,2052,2196,2393,2399,2404,2413,2421,2432,2433,2474,2535,2571,2572,2708,2746,2796,2797,2844,2850,2857,2858,2868,2873,2874,2901,2902,2907,2908,2918,2948,2956,2980,2985,2993,2998,2999,3045,3046,3053,3112,3144,3146,3169,3236,3237,3252,3282,3319,3361,3362,3370,3386,3395,3403,3411,3425,3426,3428,3435,3436,3447,3459,3461,3470,3571,3605,3652,3659,3697,3703,3706,3736,3744,3760,3764,3793,3797,3803,3824,3845,3846,3854,3940,3944,3962,3966,3974,3975,3989,4037,4042,4044,4072,4076,4107,4115,4123,4125,4134,4148,4154,4170,4190,4199,4214,4217,4218,4220,4230,4235,4238,4245,4256,4282,4290,4291,4314,4318,4334,4361,4380,4442,4458,4481,4487,4490,4492,4541,4556,4560,4562,4569,4578,4649,4665,4667,4689,4720,4728,4743,4810,4817,4829,4832,4846,4854,4884,4885,4897,4898,4901,4908,4920,4926,4929,4940,4942,4955,4964,4993,4996,4998,5058,5106,5161,5170,5180,5270,5274,5278,5284,5285,5328,5330,5400,5413,5432,5487,5586,5594,5596,5698,5738,5753,5806,5843,5852,5861,5862,5863,5864,5867,5870,5871,5872,5896,5899,5901,5911,5913,5916,5925,5927,5931,5932,5959,5975,5978,6006,6048,6059,6067,6070,6081,6196,6279,6289,6292,6301,6373,6374,6383,6434,6441,6450,6510,6624,6667,6686,6696,6697,6718,6728,6734,6755,6785,6821,6841,6846,6890,6942,6951,6967,7046,7062,7066,7077,7082,7103,7107,7112,7120,7122,7164,7194,7207,7318,7329,7333,7352,7355,7364,7406,7417,7420,7452,7488,7532,7536,7541,7570,7572,7617,7644,7645,7700,7708,7717,7721,7725,7772,7783,7811,7812,7829,7837,7840,7847,7848,7875,7901,7906,7911,7919,7924,7941,7942,7952,7954,7972,7986,8004,8038,8050,8053,8093,8095,8098,8099,8104,8116,8130,8133,8138,8151,8169,8184,8187,8206,8207,8269,8274,8278,8324,8345,8347,8388,8397,8399,8402,8420,8455,8465,8483,8490,8519,8520,8522,8572,8597,8703,8722,8723,8728,8730,8740,8747,8764,8768,8771,8774,8778,8793,8799,8800,8809,8812,8880,8883,8886,8907,9000,9010,9032,9040,9056,9154,9158,9160,9161,9163,9165,9167,9173,9174,9187,9188,9193,9202,9205,9211,9215,9267,9284,9319,9325,9342,9367,9372,9389,9413,9421,9425,9453,9460,9461,9464,9465,9468,9470,9474,9479,9492,9493,9511,9516,9583,9604,9634,9651,9653,9655,9657,9669,9682,9683,9687,9700,9717,9719,9721,9725,9728,9731,9733,9734,9735,9736,9768,9769,9774,9776,9792,9794,9798,9799,9801,9834,9902,9904,9905,9937,9970,9978,9996,10009,10010,10018,10038,10052,10054,10056,10060,10070,10071,10081,10100,10102,10129,10148,10155,10157,10186,10394,10395,10674,10739,10772,10784,10866,10869,10887,10943,10944,10972,11214,11286,11298,11319,11342,11398,11401,11402,11404,11405,11407,11409,11411,11416,11417,11444,11511,11553,11554,11561,11572,11585,11589,11595,11624,11636,11708,11711,11721,11722,11833,11845,11879,11881,11884,11886,11887,11892,11949,11951,11953,11987,12015,12017,12223,12238,12248,12304,12403,12404,12408,12409,12410,12504,12508,13451,15980,17331,17714,17734,17784,17787,17792,17812,17818,17952,17983,18029,18031,18081,18204,18205,18238,18345,18348,18351,18361,18362,18367,18373,18394,18458,18464,18561,18596,18756,18950,18957,18959,18966,18967,19037,19078,19103,19120,19123,19142,19159,19164,19227,19230,19232,19233,19247,19269,19274,19337,19385,19389,19395,19437,19441,19509,19517,19522,19528,19536,19573,19580,19581,19583,19584,19589,19590,19597,19605,19608,19610,19612,19619,19620,19629,19630,19631,19638,19657,19659,19660,19663,19665,19666,19668,19669,19725,19734,19737,19738,19744,19747,19757,19776,19794,19798,19799,19802,19813,19814,19824,19829,19835,19838,19843,19847,19856,19859,19869,19871,19877,19880,19883,19887,19893,19896,19903,19905,19911,19934,19938,19939,19950,19956,19995,19999,20005,20011,20014,20025,20030,20035,20036,20041,20161,20518,20564,20578,20623,20633,20639,20669,20681,20688,20697,20701,20702,20706,20709,20714,20718,20733,20743,20755,20763,20806,20826,20836,20850,20851,20897,20900,20940,20945,20952,20962,20977,20993,20999,21004,21008,21057,21071,21076,21084,21101,21122,21158,21168,21177,21184,21200,21205,21224,21231,21249,21265,21281,21290,21301,21303,21304,21310,21314,21345,21356,21375,21412,21415,21426,22391,22396,22474,22532,22559,22565,22841,22842,22843,22853,22856,22857,22865,22866,22875,22876,22879,22882,22885,22892,22895,22899,22903,22916,22918,22926,22928,22930,22955,22956,22959,22965,22966,22967,22970,22971,22977,22994,22997,22999]]],["spake",[109,109,[[0,14,14,0,14,[[8,1,1,0,1],[20,1,1,1,2],[21,1,1,2,3],[26,1,1,3,4],[30,2,2,4,6],[33,1,1,6,7],[38,1,1,7,8],[41,1,1,8,9],[42,3,3,9,12],[45,1,1,12,13],[46,1,1,13,14]]],[1,13,13,14,27,[[50,1,1,14,15],[54,1,1,15,16],[56,2,2,16,18],[57,2,2,18,20],[61,1,1,20,21],[64,1,1,21,22],[65,1,1,22,23],[68,1,1,23,24],[80,1,1,24,25],[84,1,1,25,26],[85,1,1,26,27]]],[3,15,15,27,42,[[123,1,1,27,28],[128,1,1,28,29],[130,1,1,29,30],[131,1,1,30,31],[133,1,1,31,32],[134,1,1,32,33],[136,3,3,33,36],[137,1,1,36,37],[142,1,1,37,38],[143,1,1,38,39],[147,1,1,39,40],[148,2,2,40,42]]],[4,4,4,42,46,[[153,1,1,42,43],[154,1,1,43,44],[161,1,1,44,45],[180,1,1,45,46]]],[5,10,10,46,56,[[187,2,2,46,48],[189,1,1,48,49],[190,3,3,49,52],[193,1,1,52,53],[195,1,1,53,54],[203,1,1,54,55],[208,1,1,55,56]]],[6,3,3,56,59,[[218,1,1,56,57],[225,1,1,57,58],[229,1,1,58,59]]],[8,8,8,59,67,[[242,1,1,59,60],[244,2,2,60,62],[245,1,1,62,63],[252,2,2,63,65],[263,1,1,65,66],[265,1,1,66,67]]],[9,6,6,67,73,[[271,2,2,67,69],[280,1,1,69,70],[283,1,1,70,71],[286,1,1,71,72],[290,1,1,72,73]]],[10,5,5,73,78,[[291,1,1,73,74],[293,1,1,74,75],[298,1,1,75,76],[303,1,1,76,77],[310,1,1,77,78]]],[11,2,2,78,80,[[321,1,1,78,79],[329,1,1,79,80]]],[12,1,1,80,81,[[352,1,1,80,81]]],[13,4,4,81,85,[[367,1,1,81,82],[384,1,1,82,83],[398,1,1,83,84],[401,1,1,84,85]]],[15,2,2,85,87,[[416,1,1,85,86],[420,1,1,86,87]]],[16,2,2,87,89,[[428,1,1,87,88],[429,1,1,88,89]]],[18,3,3,89,92,[[510,1,1,89,90],[582,2,2,90,92]]],[22,1,1,92,93,[[686,1,1,92,93]]],[23,8,8,93,101,[[770,4,4,93,97],[772,2,2,97,99],[784,1,1,99,100],[787,1,1,100,101]]],[25,1,1,101,102,[[811,1,1,101,102]]],[26,1,1,102,103,[[850,1,1,102,103]]],[31,1,1,103,104,[[890,1,1,103,104]]],[36,1,1,104,105,[[909,1,1,104,105]]],[37,4,4,105,109,[[911,1,1,105,106],[913,1,1,106,107],[914,2,2,107,109]]]],[213,535,554,733,884,902,984,1163,1289,1293,1317,1319,1388,1425,1547,1642,1693,1704,1711,1715,1817,1921,1956,2051,2432,2535,2571,3854,4063,4115,4190,4256,4277,4314,4323,4334,4356,4490,4560,4689,4720,4743,4901,4940,5170,5679,5852,5863,5899,5911,5925,5931,5978,6048,6292,6434,6728,6942,7046,7355,7400,7408,7434,7644,7648,7954,7984,8133,8138,8360,8455,8572,8709,8728,8842,8997,9215,9436,9768,10009,10807,11196,11561,11899,11991,12361,12494,12751,12772,14375,15637,15640,17818,19583,19584,19589,19590,19619,19629,19956,19999,20635,21740,22558,22853,22899,22916,22926,22928]]],["spakest",[1,1,[[6,1,1,0,1,[[227,1,1,0,1]]]],[6982]]],["speak",[33,32,[[0,1,1,0,1,[[31,1,1,0,1]]],[1,1,1,1,2,[[81,1,1,1,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[5,1,1,3,4,[[208,1,1,3,4]]],[10,1,1,4,5,[[302,1,1,4,5]]],[11,1,1,5,6,[[331,1,1,5,6]]],[13,1,1,6,7,[[398,1,1,6,7]]],[16,2,2,7,9,[[430,1,1,7,8],[431,1,1,8,9]]],[17,1,1,9,10,[[472,1,1,9,10]]],[18,6,6,10,16,[[518,1,1,10,11],[522,1,1,11,12],[548,1,1,12,13],[616,1,1,13,14],[622,2,2,14,16]]],[22,3,3,16,19,[[686,1,1,16,17],[715,1,1,17,18],[734,1,1,18,19]]],[23,7,7,19,26,[[757,1,1,19,20],[762,1,1,20,21],[771,2,2,21,23],[773,1,1,23,24],[778,1,1,24,25],[783,1,1,25,26]]],[25,5,4,26,30,[[832,1,1,26,27],[834,3,2,27,29],[838,1,1,29,30]]],[37,2,2,30,32,[[916,1,1,30,31],[917,1,1,31,32]]]],[932,2450,4123,6450,9161,10071,11892,12793,12797,13789,14547,14598,14986,16259,16326,16331,17827,18362,18756,19278,19395,19605,19610,19659,19803,19939,21232,21290,21304,21415,22959,22965]]],["speaketh",[7,7,[[10,1,1,0,1,[[310,1,1,0,1]]],[23,3,3,1,4,[[772,1,1,1,2],[773,1,1,2,3],[774,1,1,3,4]]],[36,1,1,4,5,[[909,1,1,4,5]]],[37,2,2,5,7,[[916,1,1,5,6],[917,1,1,6,7]]]],[9413,19620,19660,19669,22842,22959,22971]]],["spoken",[15,15,[[1,1,1,0,1,[[81,1,1,0,1]]],[5,1,1,1,2,[[192,1,1,1,2]]],[9,2,2,2,4,[[269,1,1,2,3],[272,1,1,3,4]]],[13,1,1,4,5,[[368,1,1,4,5]]],[14,1,1,5,6,[[410,1,1,5,6]]],[15,1,1,6,7,[[414,1,1,6,7]]],[17,1,1,7,8,[[468,1,1,7,8]]],[22,3,3,8,11,[[701,1,1,8,9],[709,1,1,9,10],[716,1,1,10,11]]],[23,1,1,11,12,[[792,1,1,11,12]]],[25,2,2,12,14,[[814,1,1,12,13],[836,1,1,13,14]]],[29,1,1,14,15,[[883,1,1,14,15]]]],[2451,5957,8099,8179,11226,12223,12325,13658,18081,18254,18405,20088,20715,21356,22437]]],["suppose",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8349]]],["talked",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[87]]],["tell",[15,15,[[0,2,2,0,2,[[21,1,1,0,1],[25,1,1,1,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[4,2,2,3,5,[[169,1,1,3,4],[184,1,1,4,5]]],[10,4,4,5,9,[[304,1,1,5,6],[308,3,3,6,9]]],[17,2,2,9,11,[[443,1,1,9,10],[469,1,1,10,11]]],[18,1,1,11,12,[[527,1,1,11,12]]],[22,1,1,12,13,[[684,1,1,12,13]]],[23,1,1,13,14,[[779,1,1,13,14]]],[25,1,1,14,15,[[818,1,1,14,15]]]],[549,694,4122,5375,5765,9225,9349,9352,9355,13039,13717,14680,17778,19836,20837]]],["termed",[2,1,[[22,2,1,0,1,[[740,2,1,0,1]]]],[18858]]],["themselves",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15435]]],["think",[3,3,[[9,1,1,0,1,[[279,1,1,0,1]]],[13,1,1,1,2,[[379,1,1,1,2]]],[20,1,1,2,3,[[666,1,1,2,3]]]],[8350,11461,17475]]],["thinking",[1,1,[[9,1,1,0,1,[[271,1,1,0,1]]]],[8138]]],["thought",[8,8,[[0,1,1,0,1,[[19,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[7,1,1,2,3,[[235,1,1,2,3]]],[8,1,1,3,4,[[255,1,1,3,4]]],[9,1,1,4,5,[[287,1,1,4,5]]],[11,1,1,5,6,[[317,1,1,5,6]]],[13,1,1,6,7,[[398,1,1,6,7]]],[16,1,1,7,8,[[431,1,1,7,8]]]],[506,4457,7194,7756,8596,9658,11876,12799]]],["told",[10,10,[[0,4,4,0,4,[[21,2,2,0,2],[40,1,1,2,3],[47,1,1,3,4]]],[5,1,1,4,5,[[188,1,1,4,5]]],[6,1,1,5,6,[[223,1,1,5,6]]],[8,1,1,6,7,[[243,1,1,6,7]]],[11,2,2,7,9,[[318,1,1,7,8],[320,1,1,8,9]]],[26,1,1,9,10,[[857,1,1,9,10]]]],[550,556,1219,1452,5871,6890,7379,9684,9741,21987]]],["uttereth",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16421]]]]},{"k":"H560","v":[["*",[71,65,[[14,5,5,0,5,[[407,5,5,0,5]]],[23,1,1,5,6,[[754,1,1,5,6]]],[26,65,59,6,65,[[851,18,16,6,22],[852,13,12,22,34],[853,12,11,34,45],[854,6,6,45,51],[855,11,9,51,60],[856,5,5,60,65]]]],[12137,12138,12143,12145,12149,19212,21762,21763,21765,21766,21767,21768,21770,21773,21778,21782,21783,21784,21785,21794,21804,21805,21811,21816,21820,21821,21823,21826,21827,21831,21832,21833,21835,21836,21844,21845,21846,21851,21855,21856,21860,21863,21867,21868,21872,21876,21881,21884,21887,21891,21903,21910,21911,21917,21918,21920,21921,21925,21928,21929,21934,21935,21938,21949,21956]]],["commanded",[12,12,[[26,12,12,0,12,[[851,2,2,0,2],[852,4,4,2,6],[853,1,1,6,7],[854,2,2,7,9],[855,3,3,9,12]]]],[21770,21804,21811,21820,21826,21827,21863,21876,21903,21921,21928,21929]]],["declare",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21855]]],["said",[41,39,[[14,4,4,0,4,[[407,4,4,0,4]]],[26,37,35,4,39,[[851,11,11,4,15],[852,8,7,15,22],[853,4,3,22,25],[854,4,4,25,29],[855,7,7,29,36],[856,3,3,36,39]]]],[12137,12138,12143,12149,21763,21765,21766,21768,21773,21778,21782,21783,21784,21785,21805,21816,21821,21823,21831,21832,21833,21835,21851,21856,21867,21881,21884,21887,21891,21910,21911,21917,21918,21920,21921,21925,21935,21938,21956]]],["say",[2,2,[[23,1,1,0,1,[[754,1,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[19212,21872]]],["saying",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[12145,21860]]],["spake",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21917]]],["speak",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21767,21836]]],["spoken",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21868]]],["tell",[5,5,[[26,5,5,0,5,[[851,4,4,0,4],[853,1,1,4,5]]]],[21762,21765,21767,21794,21846]]],["told",[4,4,[[26,4,4,0,4,[[853,2,2,0,2],[856,2,2,2,4]]]],[21844,21845,21934,21949]]]]},{"k":"H561","v":[["*",[49,47,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,2,2,1,3,[[140,2,2,1,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[5,1,1,4,5,[[210,1,1,4,5]]],[6,1,1,5,6,[[215,1,1,5,6]]],[17,11,11,6,17,[[441,3,3,6,9],[443,1,1,9,10],[455,1,1,10,11],[457,1,1,11,12],[458,1,1,12,13],[467,2,2,13,15],[468,1,1,15,16],[469,1,1,16,17]]],[18,7,7,17,24,[[482,1,1,17,18],[496,1,1,18,19],[531,1,1,19,20],[555,1,1,20,21],[584,1,1,21,22],[615,1,1,22,23],[618,1,1,23,24]]],[19,22,20,24,44,[[628,2,2,24,26],[629,2,2,26,28],[631,3,3,28,31],[632,1,1,31,32],[633,2,1,32,33],[634,3,3,33,36],[635,1,1,36,37],[642,1,1,37,38],[643,1,1,38,39],[644,1,1,39,40],[646,2,2,40,42],[649,2,1,42,43],[650,1,1,43,44]]],[22,2,2,44,46,[[710,1,1,44,45],[719,1,1,45,46]]],[27,1,1,46,47,[[867,1,1,46,47]]]],[1494,4450,4462,5759,6503,6652,12988,13003,13004,13031,13355,13411,13431,13640,13642,13653,13720,13974,14182,14727,15114,15710,16235,16282,16402,16421,16434,16449,16495,16500,16510,16524,16542,16576,16580,16599,16610,16833,16864,16900,16932,16952,17036,17056,18266,18477,22172]]],["+",[3,3,[[19,3,3,0,3,[[631,1,1,0,1],[632,1,1,1,2],[646,1,1,2,3]]]],[16495,16524,16952]]],["answer",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6652]]],["appointed",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13355]]],["sayings",[2,2,[[19,2,2,0,2,[[631,2,2,0,2]]]],[16500,16510]]],["speeches",[2,2,[[17,2,2,0,2,[[441,1,1,0,1],[467,1,1,1,2]]]],[13004,13642]]],["words",[40,38,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,2,2,1,3,[[140,2,2,1,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[5,1,1,4,5,[[210,1,1,4,5]]],[17,8,8,5,13,[[441,2,2,5,7],[443,1,1,7,8],[457,1,1,8,9],[458,1,1,9,10],[467,1,1,10,11],[468,1,1,11,12],[469,1,1,12,13]]],[18,7,7,13,20,[[482,1,1,13,14],[496,1,1,14,15],[531,1,1,15,16],[555,1,1,16,17],[584,1,1,17,18],[615,1,1,18,19],[618,1,1,19,20]]],[19,17,15,20,35,[[628,2,2,20,22],[629,2,2,22,24],[633,2,1,24,25],[634,3,3,25,28],[635,1,1,28,29],[642,1,1,29,30],[643,1,1,30,31],[644,1,1,31,32],[646,1,1,32,33],[649,2,1,33,34],[650,1,1,34,35]]],[22,2,2,35,37,[[710,1,1,35,36],[719,1,1,36,37]]],[27,1,1,37,38,[[867,1,1,37,38]]]],[1494,4450,4462,5759,6503,12988,13003,13031,13411,13431,13640,13653,13720,13974,14182,14727,15114,15710,16235,16282,16402,16421,16434,16449,16542,16576,16580,16599,16610,16833,16864,16900,16932,17036,17056,18266,18477,22172]]]]},{"k":"H562","v":[["*",[6,6,[[17,1,1,0,1,[[457,1,1,0,1]]],[18,4,4,1,5,[[496,2,2,1,3],[545,1,1,3,4],[554,1,1,4,5]]],[34,1,1,5,6,[[905,1,1,5,6]]]],[13417,14170,14171,14911,15101,22777]]],["promise",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15101]]],["speech",[2,2,[[18,2,2,0,2,[[496,2,2,0,2]]]],[14170,14171]]],["thing",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13417]]],["word",[2,2,[[18,1,1,0,1,[[545,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[14911,22777]]]]},{"k":"H563","v":[["lambs",[3,3,[[14,3,3,0,3,[[408,2,2,0,2],[409,1,1,2,3]]]],[12160,12168,12190]]]]},{"k":"H564","v":[["Immer",[10,10,[[12,2,2,0,2,[[346,1,1,0,1],[361,1,1,1,2]]],[14,3,3,2,5,[[404,2,2,2,4],[412,1,1,4,5]]],[15,4,4,5,9,[[415,1,1,5,6],[419,2,2,6,8],[423,1,1,8,9]]],[23,1,1,9,10,[[764,1,1,9,10]]]],[10627,11029,12064,12086,12272,12356,12460,12481,12601,19423]]]]},{"k":"H565","v":[["*",[37,35,[[0,1,1,0,1,[[3,1,1,0,1]]],[4,2,2,1,3,[[184,1,1,1,2],[185,1,1,2,3]]],[9,1,1,3,4,[[288,1,1,3,4]]],[18,26,25,4,29,[[489,2,1,4,5],[494,1,1,5,6],[495,1,1,6,7],[582,1,1,7,8],[596,19,19,8,27],[615,1,1,27,28],[624,1,1,28,29]]],[19,1,1,29,30,[[657,1,1,29,30]]],[22,5,4,30,34,[[683,1,1,30,31],[706,1,1,31,32],[707,2,1,32,33],[710,1,1,33,34]]],[24,1,1,34,35,[[798,1,1,34,35]]]],[102,5760,5819,8633,14072,14109,14148,15625,15909,15936,15939,15948,15956,15965,15974,15980,16001,16014,16021,16031,16038,16046,16052,16056,16060,16068,16070,16233,16366,17256,17763,18187,18197,18268,20349]]],["commandment",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16366]]],["speech",[7,6,[[0,1,1,0,1,[[3,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[18,1,1,2,3,[[494,1,1,2,3]]],[22,4,3,3,6,[[706,1,1,3,4],[707,2,1,4,5],[710,1,1,5,6]]]],[102,5760,14109,18187,18197,18268]]],["word",[26,26,[[4,1,1,0,1,[[185,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,21,21,2,23,[[495,1,1,2,3],[582,1,1,3,4],[596,18,18,4,22],[615,1,1,22,23]]],[19,1,1,23,24,[[657,1,1,23,24]]],[22,1,1,24,25,[[683,1,1,24,25]]],[24,1,1,25,26,[[798,1,1,25,26]]]],[5819,8633,14148,15625,15909,15936,15939,15948,15956,15965,15974,15980,16014,16021,16031,16038,16046,16052,16056,16060,16068,16070,16233,17256,17763,20349]]],["words",[3,2,[[18,3,2,0,2,[[489,2,1,0,1],[596,1,1,1,2]]]],[14072,16001]]]]},{"k":"H566","v":[["Imri",[2,2,[[12,1,1,0,1,[[346,1,1,0,1]]],[15,1,1,1,2,[[415,1,1,1,2]]]],[10619,12329]]]]},{"k":"H567","v":[["*",[87,86,[[0,6,6,0,6,[[9,1,1,0,1],[13,2,2,1,3],[14,2,2,3,5],[47,1,1,5,6]]],[1,6,6,6,12,[[52,2,2,6,8],[62,1,1,8,9],[72,1,1,9,10],[82,1,1,10,11],[83,1,1,11,12]]],[3,13,12,12,24,[[129,1,1,12,13],[137,9,8,13,21],[138,1,1,21,22],[148,2,2,22,24]]],[4,15,15,24,39,[[153,6,6,24,30],[154,1,1,30,31],[155,3,3,31,34],[156,2,2,34,36],[159,1,1,36,37],[172,1,1,37,38],[183,1,1,38,39]]],[5,20,20,39,59,[[188,1,1,39,40],[189,1,1,40,41],[191,1,1,41,42],[193,1,1,42,43],[195,2,2,43,45],[196,3,3,45,48],[197,1,1,48,49],[198,2,2,49,51],[199,3,3,51,54],[210,5,5,54,59]]],[6,11,11,59,70,[[211,3,3,59,62],[213,1,1,62,63],[216,1,1,63,64],[220,2,2,64,66],[221,4,4,66,70]]],[8,1,1,70,71,[[242,1,1,70,71]]],[9,1,1,71,72,[[287,1,1,71,72]]],[10,3,3,72,75,[[294,1,1,72,73],[299,1,1,73,74],[311,1,1,74,75]]],[11,1,1,75,76,[[333,1,1,75,76]]],[12,1,1,76,77,[[338,1,1,76,77]]],[13,1,1,77,78,[[374,1,1,77,78]]],[14,1,1,78,79,[[411,1,1,78,79]]],[15,1,1,79,80,[[421,1,1,79,80]]],[18,2,2,80,82,[[612,1,1,80,81],[613,1,1,81,82]]],[25,2,2,82,84,[[817,2,2,82,84]]],[29,2,2,84,86,[[880,2,2,84,86]]]],[250,343,349,376,381,1473,1587,1596,1872,2167,2475,2507,4104,4353,4361,4365,4366,4369,4371,4372,4374,4377,4751,4757,4896,4899,4911,4912,4919,4936,4962,4977,4983,4984,5050,5051,5112,5444,5732,5879,5903,5935,5983,6038,6047,6069,6070,6076,6110,6132,6138,6158,6164,6175,6484,6487,6488,6491,6494,6543,6544,6545,6573,6664,6819,6822,6848,6850,6851,6852,7366,8582,8863,9071,9477,10130,10266,11353,12238,12519,16186,16215,20765,20807,22388,22389]]],["+",[1,1,[[4,1,1,0,1,[[155,1,1,0,1]]]],[4983]]],["Amorite",[14,14,[[0,3,3,0,3,[[9,1,1,0,1],[13,1,1,1,2],[47,1,1,2,3]]],[1,2,2,3,5,[[82,1,1,3,4],[83,1,1,4,5]]],[3,1,1,5,6,[[148,1,1,5,6]]],[4,1,1,6,7,[[154,1,1,6,7]]],[5,2,2,7,9,[[195,1,1,7,8],[197,1,1,8,9]]],[12,1,1,9,10,[[338,1,1,9,10]]],[25,2,2,10,12,[[817,2,2,10,12]]],[29,2,2,12,14,[[880,2,2,12,14]]]],[250,349,1473,2475,2507,4757,4962,6038,6110,10266,20765,20807,22388,22389]]],["Amorites",[72,71,[[0,3,3,0,3,[[13,1,1,0,1],[14,2,2,1,3]]],[1,4,4,3,7,[[52,2,2,3,5],[62,1,1,5,6],[72,1,1,6,7]]],[3,12,11,7,18,[[129,1,1,7,8],[137,9,8,8,16],[138,1,1,16,17],[148,1,1,17,18]]],[4,13,13,18,31,[[153,6,6,18,24],[155,2,2,24,26],[156,2,2,26,28],[159,1,1,28,29],[172,1,1,29,30],[183,1,1,30,31]]],[5,18,18,31,49,[[188,1,1,31,32],[189,1,1,32,33],[191,1,1,33,34],[193,1,1,34,35],[195,1,1,35,36],[196,3,3,36,39],[198,2,2,39,41],[199,3,3,41,44],[210,5,5,44,49]]],[6,11,11,49,60,[[211,3,3,49,52],[213,1,1,52,53],[216,1,1,53,54],[220,2,2,54,56],[221,4,4,56,60]]],[8,1,1,60,61,[[242,1,1,60,61]]],[9,1,1,61,62,[[287,1,1,61,62]]],[10,3,3,62,65,[[294,1,1,62,63],[299,1,1,63,64],[311,1,1,64,65]]],[11,1,1,65,66,[[333,1,1,65,66]]],[13,1,1,66,67,[[374,1,1,66,67]]],[14,1,1,67,68,[[411,1,1,67,68]]],[15,1,1,68,69,[[421,1,1,68,69]]],[18,2,2,69,71,[[612,1,1,69,70],[613,1,1,70,71]]]],[343,376,381,1587,1596,1872,2167,4104,4353,4361,4365,4366,4369,4371,4372,4374,4377,4751,4896,4899,4911,4912,4919,4936,4977,4984,5050,5051,5112,5444,5732,5879,5903,5935,5983,6047,6069,6070,6076,6132,6138,6158,6164,6175,6484,6487,6488,6491,6494,6543,6544,6545,6573,6664,6819,6822,6848,6850,6851,6852,7366,8582,8863,9071,9477,10130,11353,12238,12519,16186,16215]]]]},{"k":"H568","v":[["Amariah",[16,14,[[12,7,5,0,5,[[343,5,3,0,3],[360,1,1,3,4],[361,1,1,4,5]]],[13,2,2,5,7,[[385,1,1,5,6],[397,1,1,6,7]]],[14,2,2,7,9,[[409,1,1,7,8],[412,1,1,8,9]]],[15,4,4,9,13,[[422,1,1,9,10],[423,1,1,10,11],[424,2,2,11,13]]],[35,1,1,13,14,[[906,1,1,13,14]]]],[10461,10465,10506,11002,11038,11587,11869,12176,12294,12552,12592,12626,12637,22788]]]]},{"k":"H569","v":[["Amraphel",[2,2,[[0,2,2,0,2,[[13,2,2,0,2]]]],[337,345]]]]},{"k":"H570","v":[["*",[5,5,[[0,3,3,0,3,[[18,1,1,0,1],[30,2,2,1,3]]],[11,1,1,3,4,[[321,1,1,3,4]]],[17,1,1,4,5,[[465,1,1,4,5]]]],[491,902,915,9782,13560]]],["+",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9782]]],["time",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13560]]],["yesternight",[3,3,[[0,3,3,0,3,[[18,1,1,0,1],[30,2,2,1,3]]]],[491,902,915]]]]},{"k":"H571","v":[["*",[127,125,[[0,6,6,0,6,[[23,3,3,0,3],[31,1,1,3,4],[41,1,1,4,5],[46,1,1,5,6]]],[1,2,2,6,8,[[67,1,1,6,7],[83,1,1,7,8]]],[4,3,3,8,11,[[165,1,1,8,9],[169,1,1,9,10],[174,1,1,10,11]]],[5,3,3,11,14,[[188,2,2,11,13],[210,1,1,13,14]]],[6,3,3,14,17,[[219,3,3,14,17]]],[8,1,1,17,18,[[247,1,1,17,18]]],[9,3,3,18,21,[[268,1,1,18,19],[273,1,1,19,20],[281,1,1,20,21]]],[10,5,5,21,26,[[292,1,1,21,22],[293,1,1,22,23],[300,1,1,23,24],[307,1,1,24,25],[312,1,1,25,26]]],[11,2,2,26,28,[[332,2,2,26,28]]],[13,5,5,28,33,[[375,1,1,28,29],[381,1,1,29,30],[384,1,1,30,31],[397,1,1,31,32],[398,1,1,32,33]]],[15,3,3,33,36,[[419,1,1,33,34],[421,2,2,34,36]]],[16,1,1,36,37,[[434,1,1,36,37]]],[18,37,37,37,74,[[492,1,1,37,38],[496,1,1,38,39],[502,2,2,39,41],[503,1,1,41,42],[507,1,1,42,43],[508,1,1,43,44],[517,2,2,44,46],[520,1,1,46,47],[522,1,1,47,48],[528,1,1,48,49],[531,1,1,49,50],[534,2,2,50,52],[538,1,1,52,53],[546,1,1,53,54],[548,1,1,54,55],[562,2,2,55,57],[563,2,2,57,59],[566,1,1,59,60],[568,1,1,60,61],[585,1,1,61,62],[588,2,2,62,64],[592,1,1,64,65],[594,1,1,65,66],[596,4,4,66,70],[609,1,1,70,71],[615,1,1,71,72],[622,1,1,72,73],[623,1,1,73,74]]],[19,12,11,74,85,[[630,1,1,74,75],[635,1,1,75,76],[638,1,1,76,77],[639,1,1,77,78],[641,2,2,78,80],[643,1,1,80,81],[647,1,1,81,82],[649,2,1,82,83],[650,1,1,83,84],[656,1,1,84,85]]],[20,1,1,85,86,[[670,1,1,85,86]]],[22,12,12,86,98,[[688,1,1,86,87],[694,1,1,87,88],[716,3,3,88,91],[717,1,1,91,92],[720,1,1,92,93],[721,1,1,93,94],[726,1,1,94,95],[737,2,2,95,97],[739,1,1,97,98]]],[23,11,11,98,109,[[746,1,1,98,99],[748,1,1,99,100],[753,1,1,100,101],[754,1,1,101,102],[758,1,1,102,103],[767,1,1,103,104],[770,1,1,104,105],[772,1,1,105,106],[776,1,1,106,107],[777,1,1,107,108],[786,1,1,108,109]]],[25,2,2,109,111,[[819,2,2,109,111]]],[26,6,6,111,117,[[857,2,2,111,113],[858,1,1,113,114],[859,2,2,114,116],[860,1,1,116,117]]],[27,1,1,117,118,[[865,1,1,117,118]]],[32,1,1,118,119,[[899,1,1,118,119]]],[37,6,5,119,124,[[917,1,1,119,120],[918,5,4,120,124]]],[38,1,1,124,125,[[926,1,1,124,125]]]],[618,639,640,938,1268,1449,2020,2502,5286,5368,5490,5881,5883,6490,6769,6770,6773,7484,8055,8208,8409,8774,8822,9085,9341,9496,10101,10117,11369,11493,11557,11874,11876,12422,12524,12544,12864,14089,14177,14256,14261,14276,14328,14336,14535,14536,14569,14601,14697,14730,14771,14778,14826,14948,14998,15281,15282,15295,15299,15340,15399,15746,15800,15801,15831,15869,15941,16040,16049,16058,16162,16233,16338,16347,16458,16609,16706,16738,16794,16797,16846,16982,17036,17067,17238,17533,17870,17974,18393,18408,18409,18420,18483,18514,18615,18814,18815,18851,18986,19029,19180,19211,19306,19512,19587,19627,19772,19781,19980,20857,20858,21973,21987,22001,22016,22036,22038,22134,22684,22971,22979,22984,22992,22995,23109]]],["Truth",[1,1,[[18,1,1,0,1,[[562,1,1,0,1]]]],[15282]]],["assured",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19306]]],["assuredly",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19772]]],["establishment",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11876]]],["faithful",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12422]]],["faithfully",[2,2,[[19,1,1,0,1,[[656,1,1,0,1]]],[23,1,1,1,2,[[767,1,1,1,2]]]],[17238,19512]]],["right",[3,3,[[0,1,1,0,1,[[23,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[23,1,1,2,3,[[746,1,1,2,3]]]],[639,12544,18986]]],["sure",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16706]]],["true",[18,18,[[4,2,2,0,2,[[169,1,1,0,1],[174,1,1,1,2]]],[5,1,1,2,3,[[188,1,1,2,3]]],[9,1,1,3,4,[[273,1,1,3,4]]],[10,2,2,4,6,[[300,1,1,4,5],[312,1,1,5,6]]],[13,2,2,6,8,[[375,1,1,6,7],[381,1,1,7,8]]],[15,1,1,8,9,[[421,1,1,8,9]]],[18,2,2,9,11,[[496,1,1,9,10],[596,1,1,10,11]]],[19,1,1,11,12,[[641,1,1,11,12]]],[23,2,2,12,14,[[754,1,1,12,13],[786,1,1,13,14]]],[25,1,1,14,15,[[819,1,1,14,15]]],[26,2,2,15,17,[[857,1,1,15,16],[859,1,1,16,17]]],[37,1,1,17,18,[[917,1,1,17,18]]]],[5368,5490,5881,8208,9085,9496,11369,11493,12524,14177,16058,16797,19211,19980,20857,21987,22016,22971]]],["truly",[7,7,[[0,2,2,0,2,[[23,1,1,0,1],[46,1,1,1,2]]],[5,1,1,2,3,[[188,1,1,2,3]]],[6,2,2,3,5,[[219,2,2,3,5]]],[23,1,1,5,6,[[772,1,1,5,6]]],[25,1,1,6,7,[[819,1,1,6,7]]]],[640,1449,5883,6770,6773,19627,20858]]],["truth",[89,87,[[0,3,3,0,3,[[23,1,1,0,1],[31,1,1,1,2],[41,1,1,2,3]]],[1,2,2,3,5,[[67,1,1,3,4],[83,1,1,4,5]]],[4,1,1,5,6,[[165,1,1,5,6]]],[5,1,1,6,7,[[210,1,1,6,7]]],[6,1,1,7,8,[[219,1,1,7,8]]],[8,1,1,8,9,[[247,1,1,8,9]]],[9,2,2,9,11,[[268,1,1,9,10],[281,1,1,10,11]]],[10,3,3,11,14,[[292,1,1,11,12],[293,1,1,12,13],[307,1,1,13,14]]],[11,2,2,14,16,[[332,2,2,14,16]]],[13,2,2,16,18,[[384,1,1,16,17],[397,1,1,17,18]]],[16,1,1,18,19,[[434,1,1,18,19]]],[18,32,32,19,51,[[492,1,1,19,20],[502,2,2,20,22],[503,1,1,22,23],[507,1,1,23,24],[508,1,1,24,25],[517,2,2,25,27],[520,1,1,27,28],[522,1,1,28,29],[528,1,1,29,30],[531,1,1,30,31],[534,2,2,31,33],[538,1,1,33,34],[546,1,1,34,35],[548,1,1,35,36],[562,1,1,36,37],[563,2,2,37,39],[566,1,1,39,40],[568,1,1,40,41],[585,1,1,41,42],[588,1,1,42,43],[594,1,1,43,44],[596,3,3,44,47],[609,1,1,47,48],[615,1,1,48,49],[622,1,1,49,50],[623,1,1,50,51]]],[19,9,8,51,59,[[630,1,1,51,52],[635,1,1,52,53],[639,1,1,53,54],[641,1,1,54,55],[643,1,1,55,56],[647,1,1,56,57],[649,2,1,57,58],[650,1,1,58,59]]],[20,1,1,59,60,[[670,1,1,59,60]]],[22,12,12,60,72,[[688,1,1,60,61],[694,1,1,61,62],[716,3,3,62,65],[717,1,1,65,66],[720,1,1,66,67],[721,1,1,67,68],[726,1,1,68,69],[737,2,2,69,71],[739,1,1,71,72]]],[23,4,4,72,76,[[748,1,1,72,73],[753,1,1,73,74],[770,1,1,74,75],[777,1,1,75,76]]],[26,4,4,76,80,[[857,1,1,76,77],[858,1,1,77,78],[859,1,1,78,79],[860,1,1,79,80]]],[27,1,1,80,81,[[865,1,1,80,81]]],[32,1,1,81,82,[[899,1,1,81,82]]],[37,5,4,82,86,[[918,5,4,82,86]]],[38,1,1,86,87,[[926,1,1,86,87]]]],[618,938,1268,2020,2502,5286,6490,6769,7484,8055,8409,8774,8822,9341,10101,10117,11557,11874,12864,14089,14256,14261,14276,14328,14336,14535,14536,14569,14601,14697,14730,14771,14778,14826,14948,14998,15281,15295,15299,15340,15399,15746,15801,15869,15941,16040,16049,16162,16233,16338,16347,16458,16609,16738,16794,16846,16982,17036,17067,17533,17870,17974,18393,18408,18409,18420,18483,18514,18615,18814,18815,18851,19029,19180,19587,19781,21973,22001,22036,22038,22134,22684,22979,22984,22992,22995,23109]]],["truth's",[1,1,[[18,1,1,0,1,[[592,1,1,0,1]]]],[15831]]],["verity",[1,1,[[18,1,1,0,1,[[588,1,1,0,1]]]],[15800]]]]},{"k":"H572","v":[["*",[15,12,[[0,15,12,0,12,[[41,2,2,0,2],[42,6,5,2,7],[43,7,5,7,12]]]],[1279,1280,1302,1308,1311,1312,1313,1325,1326,1332,1335,1336]]],["sack",[5,4,[[0,5,4,0,4,[[41,1,1,0,1],[42,1,1,1,2],[43,3,2,2,4]]]],[1280,1311,1335,1336]]],["sack's",[3,3,[[0,3,3,0,3,[[41,1,1,0,1],[43,2,2,1,3]]]],[1279,1325,1326]]],["sacks",[6,6,[[0,6,6,0,6,[[42,5,5,0,5],[43,1,1,5,6]]]],[1302,1308,1311,1312,1313,1325]]],["sacks'",[1,1,[[0,1,1,0,1,[[43,1,1,0,1]]]],[1332]]]]},{"k":"H573","v":[["Amittai",[2,2,[[11,1,1,0,1,[[326,1,1,0,1]]],[31,1,1,1,2,[[889,1,1,1,2]]]],[9921,22532]]]]},{"k":"H574","v":[["terrible",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21940]]]]},{"k":"H575","v":[["*",[40,32,[[0,3,3,0,3,[[15,1,1,0,1],[31,1,1,1,2],[36,1,1,2,3]]],[1,1,1,3,4,[[65,1,1,3,4]]],[3,2,1,4,5,[[130,2,1,4,5]]],[4,1,1,5,6,[[153,1,1,5,6]]],[5,2,2,6,8,[[188,1,1,6,7],[204,1,1,7,8]]],[6,1,1,8,9,[[229,1,1,8,9]]],[8,1,1,9,10,[[245,1,1,9,10]]],[9,2,2,10,12,[[268,1,1,10,11],[279,1,1,11,12]]],[10,4,2,12,14,[[292,4,2,12,14]]],[11,3,2,14,16,[[317,2,1,14,15],[318,1,1,15,16]]],[15,1,1,16,17,[[414,1,1,16,17]]],[17,3,3,17,20,[[443,1,1,17,18],[453,1,1,18,19],[454,1,1,19,20]]],[18,7,4,20,24,[[490,4,2,20,22],[539,1,1,22,23],[616,2,1,23,24]]],[21,2,1,24,25,[[676,2,1,24,25]]],[22,1,1,25,26,[[688,1,1,25,26]]],[23,2,2,26,28,[[759,1,1,26,27],[791,1,1,27,28]]],[25,1,1,28,29,[[822,1,1,28,29]]],[34,1,1,29,30,[[903,1,1,29,30]]],[37,2,2,30,32,[[912,1,1,30,31],[915,1,1,31,32]]]],[389,945,1113,1975,4119,4920,5874,6296,7041,7432,8050,8330,8806,8812,9672,9680,12323,13031,13278,13299,14075,14076,14830,16246,17615,17853,19317,20079,20960,22733,22901,22946]]],["+",[17,13,[[1,1,1,0,1,[[65,1,1,0,1]]],[3,2,1,1,2,[[130,2,1,1,2]]],[5,1,1,2,3,[[204,1,1,2,3]]],[6,1,1,3,4,[[229,1,1,3,4]]],[11,2,1,4,5,[[317,2,1,4,5]]],[17,3,3,5,8,[[443,1,1,5,6],[453,1,1,6,7],[454,1,1,7,8]]],[18,5,3,8,11,[[490,4,2,8,10],[539,1,1,10,11]]],[23,1,1,11,12,[[791,1,1,11,12]]],[34,1,1,12,13,[[903,1,1,12,13]]]],[1975,4119,6296,7041,9672,13031,13278,13299,14075,14076,14830,20079,22733]]],["Where",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9680]]],["Whither",[8,8,[[4,1,1,0,1,[[153,1,1,0,1]]],[8,1,1,1,2,[[245,1,1,1,2]]],[9,1,1,2,3,[[268,1,1,2,3]]],[18,1,1,3,4,[[616,1,1,3,4]]],[21,1,1,4,5,[[676,1,1,4,5]]],[23,1,1,5,6,[[759,1,1,5,6]]],[37,2,2,6,8,[[912,1,1,6,7],[915,1,1,7,8]]]],[4920,7432,8050,16246,17615,19317,22901,22946]]],["any",[2,2,[[10,2,2,0,2,[[292,2,2,0,2]]]],[8806,8812]]],["where",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17853]]],["whither",[10,10,[[0,3,3,0,3,[[15,1,1,0,1],[31,1,1,1,2],[36,1,1,2,3]]],[5,1,1,3,4,[[188,1,1,3,4]]],[9,1,1,4,5,[[279,1,1,4,5]]],[10,2,2,5,7,[[292,2,2,5,7]]],[15,1,1,7,8,[[414,1,1,7,8]]],[18,1,1,8,9,[[616,1,1,8,9]]],[21,1,1,9,10,[[676,1,1,9,10]]]],[389,945,1113,5874,8330,8806,8812,12323,16246,17615]]],["whithersoever",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20960]]]]},{"k":"H576","v":[["*",[16,16,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]],[26,14,14,2,16,[[851,3,3,2,5],[852,1,1,5,6],[853,7,7,6,13],[854,1,1,13,14],[856,2,2,14,16]]]],[12163,12194,21766,21781,21788,21832,21841,21844,21846,21855,21867,21871,21874,21890,21948,21961]]],["I",[14,14,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]],[26,12,12,2,14,[[851,2,2,2,4],[852,1,1,4,5],[853,7,7,5,12],[854,1,1,12,13],[856,1,1,13,14]]]],[12163,12194,21766,21781,21832,21841,21844,21846,21855,21867,21871,21874,21890,21948]]],["me",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[856,1,1,1,2]]]],[21788,21961]]]]},{"k":"H577","v":[["*",[13,12,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,1,1,1,2,[[81,1,1,1,2]]],[11,1,1,2,3,[[332,1,1,2,3]]],[15,2,2,3,5,[[413,2,2,3,5]]],[18,4,3,5,8,[[593,2,2,5,7],[595,2,1,7,8]]],[22,1,1,8,9,[[716,1,1,8,9]]],[26,1,1,9,10,[[858,1,1,9,10]]],[31,2,2,10,12,[[889,1,1,10,11],[892,1,1,11,12]]]],[1523,2469,10101,12301,12307,15852,15864,15894,18393,21992,22545,22570]]],["+",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18393]]],["O",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[21992]]],["Oh",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2469]]],["beseech",[5,4,[[15,2,2,0,2,[[413,2,2,0,2]]],[18,3,2,2,4,[[593,1,1,2,3],[595,2,1,3,4]]]],[12301,12307,15852,15894]]],["thee",[4,4,[[0,1,1,0,1,[[49,1,1,0,1]]],[11,1,1,1,2,[[332,1,1,1,2]]],[31,2,2,2,4,[[889,1,1,2,3],[892,1,1,3,4]]]],[1523,10101,22545,22570]]],["truly",[1,1,[[18,1,1,0,1,[[593,1,1,0,1]]]],[15864]]]]},{"k":"H578","v":[["*",[2,2,[[22,2,2,0,2,[[681,1,1,0,1],[697,1,1,1,2]]]],[17733,18012]]],["lament",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17733]]],["mourn",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18012]]]]},{"k":"H579","v":[["*",[4,4,[[1,1,1,0,1,[[70,1,1,0,1]]],[11,1,1,1,2,[[317,1,1,1,2]]],[18,1,1,2,3,[[568,1,1,2,3]]],[19,1,1,3,4,[[639,1,1,3,4]]]],[2090,9654,15405,16740]]],["+",[1,1,[[18,1,1,0,1,[[568,1,1,0,1]]]],[15405]]],["deliver",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2090]]],["happen",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16740]]],["quarrel",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9654]]]]},{"k":"H580","v":[["we",[1,1,[[23,1,1,0,1,[[786,1,1,0,1]]]],[19981]]]]},{"k":"H581","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[855,1,1,1,2]]]],[21802,21929]]],["them",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21929]]],["these",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21802]]]]},{"k":"H582","v":[["*",[45,43,[[0,2,1,0,1,[[18,2,1,0,1]]],[3,1,1,1,2,[[141,1,1,1,2]]],[13,1,1,2,3,[[380,1,1,2,3]]],[17,18,18,3,21,[[439,1,1,3,4],[440,1,1,4,5],[442,2,2,5,7],[444,1,1,7,8],[445,2,2,8,10],[448,1,1,10,11],[449,1,1,11,12],[450,1,1,12,13],[460,2,2,13,15],[463,2,2,15,17],[467,1,1,17,18],[468,2,2,18,20],[471,1,1,20,21]]],[18,13,12,21,33,[[485,1,1,21,22],[486,2,2,22,24],[487,1,1,24,25],[532,1,1,25,26],[533,1,1,26,27],[543,1,1,27,28],[550,1,1,28,29],[567,1,1,29,30],[580,1,1,30,31],[581,2,1,31,32],[621,1,1,32,33]]],[22,9,9,33,42,[[686,1,1,33,34],[691,2,2,34,36],[702,1,1,36,37],[711,1,1,37,38],[717,1,1,38,39],[729,2,2,39,41],[734,1,1,41,42]]],[23,1,1,42,43,[[764,1,1,42,43]]]],[461,4476,11486,12947,12968,13009,13025,13053,13090,13091,13162,13200,13217,13465,13467,13508,13517,13636,13662,13676,13761,14016,14040,14041,14059,14745,14756,14885,15025,15381,15564,15586,16308,17808,17913,17918,18101,18287,18415,18680,18685,18755,19432]]],["+",[4,4,[[17,2,2,0,2,[[463,1,1,0,1],[468,1,1,1,2]]],[22,1,1,2,3,[[729,1,1,2,3]]],[23,1,1,3,4,[[764,1,1,3,4]]]],[13508,13662,18685,19432]]],["Man",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13517]]],["man",[28,28,[[13,1,1,0,1,[[380,1,1,0,1]]],[17,15,15,1,16,[[439,1,1,1,2],[440,1,1,2,3],[442,2,2,3,5],[444,1,1,5,6],[445,2,2,6,8],[448,1,1,8,9],[449,1,1,9,10],[450,1,1,10,11],[460,2,2,11,13],[467,1,1,13,14],[468,1,1,14,15],[471,1,1,15,16]]],[18,9,9,16,25,[[485,1,1,16,17],[486,1,1,17,18],[487,1,1,18,19],[532,1,1,19,20],[533,1,1,20,21],[567,1,1,21,22],[580,1,1,22,23],[581,1,1,23,24],[621,1,1,24,25]]],[22,3,3,25,28,[[691,1,1,25,26],[711,1,1,26,27],[734,1,1,27,28]]]],[11486,12947,12968,13009,13025,13053,13090,13091,13162,13200,13217,13465,13467,13636,13676,13761,14016,14040,14059,14745,14756,15381,15564,15586,16308,17918,18287,18755]]],["man's",[3,3,[[18,1,1,0,1,[[581,1,1,0,1]]],[22,2,2,1,3,[[686,1,1,1,2],[691,1,1,2,3]]]],[15586,17808,17913]]],["men",[9,8,[[0,2,1,0,1,[[18,2,1,0,1]]],[3,1,1,1,2,[[141,1,1,1,2]]],[18,3,3,2,5,[[486,1,1,2,3],[543,1,1,3,4],[550,1,1,4,5]]],[22,3,3,5,8,[[702,1,1,5,6],[717,1,1,6,7],[729,1,1,7,8]]]],[461,4476,14041,14885,15025,18101,18415,18680]]]]},{"k":"H583","v":[["*",[7,7,[[0,6,6,0,6,[[3,1,1,0,1],[4,5,5,1,6]]],[12,1,1,6,7,[[338,1,1,6,7]]]],[105,111,112,114,115,116,10253]]],["Enos",[6,6,[[0,6,6,0,6,[[3,1,1,0,1],[4,5,5,1,6]]]],[105,111,112,114,115,116]]],["Enosh",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10253]]]]},{"k":"H584","v":[["*",[12,11,[[1,1,1,0,1,[[51,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]],[22,1,1,2,3,[[702,1,1,2,3]]],[24,4,4,3,7,[[797,4,4,3,7]]],[25,4,3,7,10,[[810,1,1,7,8],[822,3,2,8,10]]],[28,1,1,10,11,[[876,1,1,10,11]]]],[1577,17226,18102,20314,20318,20321,20331,20626,20950,20951,22309]]],["Sigh",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20950]]],["groan",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22309]]],["mourn",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17226]]],["sigh",[6,6,[[22,1,1,0,1,[[702,1,1,0,1]]],[24,3,3,1,4,[[797,3,3,1,4]]],[25,2,2,4,6,[[810,1,1,4,5],[822,1,1,5,6]]]],[18102,20314,20321,20331,20626,20950]]],["sighed",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1577]]],["sighest",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20951]]],["sigheth",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20318]]]]},{"k":"H585","v":[["*",[11,11,[[17,2,2,0,2,[[438,1,1,0,1],[458,1,1,1,2]]],[18,4,4,2,6,[[483,1,1,2,3],[508,1,1,3,4],[515,1,1,4,5],[579,1,1,5,6]]],[22,3,3,6,9,[[699,1,1,6,7],[713,1,1,7,8],[729,1,1,8,9]]],[23,1,1,9,10,[[789,1,1,9,10]]],[24,1,1,10,11,[[797,1,1,10,11]]]],[12928,13421,13991,14341,14499,15526,18037,18330,18684,20043,20332]]],["groaning",[4,4,[[17,1,1,0,1,[[458,1,1,0,1]]],[18,3,3,1,4,[[483,1,1,1,2],[515,1,1,2,3],[579,1,1,3,4]]]],[13421,13991,14499,15526]]],["mourning",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18684]]],["sighing",[5,5,[[17,1,1,0,1,[[438,1,1,0,1]]],[18,1,1,1,2,[[508,1,1,1,2]]],[22,2,2,2,4,[[699,1,1,2,3],[713,1,1,3,4]]],[23,1,1,4,5,[[789,1,1,4,5]]]],[12928,14341,18037,18330,20043]]],["sighs",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20332]]]]},{"k":"H586","v":[["*",[4,4,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,2,2,2,4,[[852,2,2,2,4]]]],[12126,12145,21823,21824]]],["We",[2,2,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]]],[12126,12145]]],["we",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21823,21824]]]]},{"k":"H587","v":[["*",[118,113,[[0,16,15,0,15,[[12,1,1,0,1],[18,1,1,1,2],[28,1,1,2,3],[36,1,1,3,4],[41,4,4,4,8],[42,2,2,8,10],[43,2,2,10,12],[45,1,1,12,13],[46,3,2,13,15]]],[1,1,1,15,16,[[59,1,1,15,16]]],[3,5,5,16,21,[[125,1,1,16,17],[126,1,1,17,18],[136,2,2,18,20],[148,1,1,20,21]]],[4,5,5,21,26,[[153,2,2,21,23],[157,2,2,23,25],[164,1,1,25,26]]],[5,8,8,26,34,[[188,3,3,26,29],[195,4,4,29,33],[210,1,1,33,34]]],[6,6,6,34,40,[[219,1,1,34,35],[226,1,1,35,36],[228,1,1,36,37],[229,1,1,37,38],[231,2,2,38,40]]],[8,5,5,40,45,[[243,1,1,40,41],[249,1,1,41,42],[255,1,1,42,43],[258,1,1,43,44],[265,1,1,44,45]]],[9,1,1,45,46,[[271,1,1,45,46]]],[10,3,2,46,48,[[293,2,1,46,47],[312,1,1,47,48]]],[11,9,8,48,56,[[318,1,1,48,49],[319,4,3,49,52],[322,3,3,52,55],[330,1,1,55,56]]],[12,3,3,56,59,[[348,1,1,56,57],[366,2,2,57,59]]],[13,4,4,59,63,[[368,1,1,59,60],[379,2,2,60,62],[386,1,1,62,63]]],[14,7,6,63,69,[[406,2,2,63,65],[411,3,2,65,67],[412,2,2,67,69]]],[15,16,15,69,84,[[414,2,2,69,71],[416,5,5,71,76],[417,4,4,76,80],[421,5,4,80,84]]],[17,1,1,84,85,[[443,1,1,84,85]]],[18,8,8,85,93,[[497,2,2,85,87],[556,1,1,87,88],[572,1,1,88,89],[577,1,1,89,90],[580,1,1,90,91],[592,1,1,91,92],[601,1,1,92,93]]],[22,4,4,93,97,[[698,1,1,93,94],[714,1,1,94,95],[731,1,1,95,96],[742,1,1,96,97]]],[23,9,9,97,106,[[747,1,1,97,98],[752,3,3,98,101],[770,1,1,101,102],[779,1,1,102,103],[788,2,2,103,105],[792,1,1,105,106]]],[24,1,1,106,107,[[801,1,1,106,107]]],[25,3,3,107,110,[[812,1,1,107,108],[834,2,2,108,110]]],[26,1,1,110,111,[[858,1,1,110,111]]],[32,1,1,111,112,[[896,1,1,111,112]]],[38,1,1,112,113,[[927,1,1,112,113]]]],[326,470,799,1090,1263,1273,1283,1284,1298,1308,1333,1340,1420,1423,1439,1803,3972,4017,4315,4327,4735,4920,4933,5056,5078,5248,5886,5887,5888,6045,6048,6056,6059,6494,6782,6954,6998,7042,7109,7120,7389,7516,7772,7813,7992,8133,8834,9483,9675,9710,9716,9719,9797,9798,9806,10050,10674,11177,11179,11227,11463,11464,11599,12112,12113,12244,12246,12254,12256,12324,12327,12360,12369,12378,12380,12382,12384,12385,12387,12390,12544,12547,12548,12549,13038,14189,14190,15198,15461,15511,15563,15848,16109,18035,18341,18715,18893,19027,19161,19167,19173,19591,19831,20027,20029,20094,20449,20658,21290,21304,22006,22625,23135]]],["We",[21,21,[[0,3,3,0,3,[[41,3,3,0,3]]],[3,2,2,3,5,[[125,1,1,3,4],[126,1,1,4,5]]],[5,5,5,5,10,[[188,1,1,5,6],[195,4,4,6,10]]],[6,1,1,10,11,[[229,1,1,10,11]]],[8,1,1,11,12,[[265,1,1,11,12]]],[11,3,3,12,15,[[319,1,1,12,13],[322,2,2,13,15]]],[14,1,1,15,16,[[412,1,1,15,16]]],[15,3,3,16,19,[[417,3,3,16,19]]],[23,2,2,19,21,[[752,1,1,19,20],[792,1,1,20,21]]]],[1273,1283,1284,3972,4017,5886,6045,6048,6056,6059,7042,7992,9716,9798,9806,12254,12384,12385,12390,19161,20094]]],["ourselves",[2,2,[[14,1,1,0,1,[[406,1,1,0,1]]],[18,1,1,1,2,[[577,1,1,1,2]]]],[12113,15511]]],["us",[4,4,[[4,1,1,0,1,[[157,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[13,1,1,2,3,[[379,1,1,2,3]]],[15,1,1,3,4,[[416,1,1,3,4]]]],[5056,7772,11463,12382]]],["we",[91,87,[[0,13,12,0,12,[[12,1,1,0,1],[18,1,1,1,2],[28,1,1,2,3],[36,1,1,3,4],[41,1,1,4,5],[42,2,2,5,7],[43,2,2,7,9],[45,1,1,9,10],[46,3,2,10,12]]],[1,1,1,12,13,[[59,1,1,12,13]]],[3,3,3,13,16,[[136,2,2,13,15],[148,1,1,15,16]]],[4,4,4,16,20,[[153,2,2,16,18],[157,1,1,18,19],[164,1,1,19,20]]],[5,3,3,20,23,[[188,2,2,20,22],[210,1,1,22,23]]],[6,5,5,23,28,[[219,1,1,23,24],[226,1,1,24,25],[228,1,1,25,26],[231,2,2,26,28]]],[8,3,3,28,31,[[243,1,1,28,29],[249,1,1,29,30],[258,1,1,30,31]]],[9,1,1,31,32,[[271,1,1,31,32]]],[10,3,2,32,34,[[293,2,1,32,33],[312,1,1,33,34]]],[11,6,6,34,40,[[318,1,1,34,35],[319,3,3,35,38],[322,1,1,38,39],[330,1,1,39,40]]],[12,3,3,40,43,[[348,1,1,40,41],[366,2,2,41,43]]],[13,3,3,43,46,[[368,1,1,43,44],[379,1,1,44,45],[386,1,1,45,46]]],[14,5,4,46,50,[[406,1,1,46,47],[411,3,2,47,49],[412,1,1,49,50]]],[15,12,11,50,61,[[414,2,2,50,52],[416,4,4,52,56],[417,1,1,56,57],[421,5,4,57,61]]],[17,1,1,61,62,[[443,1,1,61,62]]],[18,7,7,62,69,[[497,2,2,62,64],[556,1,1,64,65],[572,1,1,65,66],[580,1,1,66,67],[592,1,1,67,68],[601,1,1,68,69]]],[22,4,4,69,73,[[698,1,1,69,70],[714,1,1,70,71],[731,1,1,71,72],[742,1,1,72,73]]],[23,7,7,73,80,[[747,1,1,73,74],[752,2,2,74,76],[770,1,1,76,77],[779,1,1,77,78],[788,2,2,78,80]]],[24,1,1,80,81,[[801,1,1,80,81]]],[25,3,3,81,84,[[812,1,1,81,82],[834,2,2,82,84]]],[26,1,1,84,85,[[858,1,1,84,85]]],[32,1,1,85,86,[[896,1,1,85,86]]],[38,1,1,86,87,[[927,1,1,86,87]]]],[326,470,799,1090,1263,1298,1308,1333,1340,1420,1423,1439,1803,4315,4327,4735,4920,4933,5078,5248,5887,5888,6494,6782,6954,6998,7109,7120,7389,7516,7813,8133,8834,9483,9675,9710,9716,9719,9797,10050,10674,11177,11179,11227,11464,11599,12112,12244,12246,12256,12324,12327,12360,12369,12378,12380,12387,12544,12547,12548,12549,13038,14189,14190,15198,15461,15563,15848,16109,18035,18341,18715,18893,19027,19167,19173,19591,19831,20027,20029,20449,20658,21290,21304,22006,22625,23135]]]]},{"k":"H588","v":[["Anaharath",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6340]]]]},{"k":"H589","v":[["*",[874,805,[[0,41,38,0,38,[[5,1,1,0,1],[8,2,2,1,3],[13,1,1,3,4],[14,1,1,4,5],[16,2,2,5,7],[17,3,2,7,9],[21,1,1,9,10],[23,1,1,10,11],[26,5,5,11,16],[27,1,1,16,17],[30,2,2,17,19],[32,1,1,19,20],[33,2,1,20,21],[34,1,1,21,22],[36,3,2,22,24],[39,1,1,24,25],[40,4,4,25,29],[41,2,2,29,31],[42,1,1,31,32],[44,2,2,32,34],[47,2,2,34,36],[48,1,1,36,37],[49,1,1,37,38]]],[1,39,36,38,74,[[51,1,1,38,39],[52,1,1,39,40],[53,1,1,40,41],[55,9,8,41,49],[56,3,3,49,52],[57,1,1,52,53],[58,2,2,53,55],[59,2,2,55,57],[60,1,1,57,58],[61,1,1,58,59],[62,1,1,59,60],[63,3,3,60,63],[64,1,1,63,64],[65,1,1,64,65],[67,1,1,65,66],[71,1,1,66,67],[74,1,1,67,68],[78,2,1,68,69],[80,2,2,69,71],[82,3,2,71,73],[83,1,1,73,74]]],[2,70,67,74,141,[[100,4,2,74,76],[103,1,1,76,77],[106,1,1,77,78],[107,8,8,78,86],[108,16,16,86,102],[109,9,8,102,110],[110,4,4,110,114],[111,9,9,114,123],[112,3,3,123,126],[113,1,1,126,127],[114,4,4,127,131],[115,10,10,131,141]]],[3,21,19,141,160,[[119,4,4,141,145],[121,1,1,145,146],[122,1,1,146,147],[126,1,1,147,148],[129,1,1,148,149],[130,3,3,149,152],[131,4,3,152,155],[134,3,3,155,158],[136,1,1,158,159],[151,2,1,159,160]]],[4,9,6,160,166,[[164,1,1,160,161],[181,1,1,161,162],[184,7,4,162,166]]],[5,4,4,166,170,[[191,1,1,166,167],[194,1,1,167,168],[203,1,1,168,169],[209,1,1,169,170]]],[6,12,12,170,182,[[211,1,1,170,171],[212,1,1,171,172],[216,1,1,172,173],[218,1,1,173,174],[219,1,1,174,175],[222,1,1,175,176],[223,1,1,176,177],[225,1,1,177,178],[226,1,1,178,179],[227,1,1,179,180],[229,1,1,180,181],[230,1,1,181,182]]],[7,2,2,182,184,[[232,1,1,182,183],[235,1,1,183,184]]],[8,20,18,184,202,[[236,1,1,184,185],[238,1,1,185,186],[239,1,1,186,187],[247,2,1,187,188],[249,1,1,188,189],[251,1,1,189,190],[252,3,3,190,193],[254,2,1,193,194],[255,2,2,194,196],[256,1,1,196,197],[258,1,1,197,198],[259,1,1,198,199],[260,2,2,199,201],[261,1,1,201,202]]],[9,30,26,202,228,[[269,1,1,202,203],[273,2,2,203,205],[277,1,1,205,206],[278,4,3,206,209],[279,2,2,209,211],[280,3,3,211,214],[281,5,2,214,216],[282,1,1,216,217],[283,1,1,217,218],[284,4,4,218,222],[285,4,4,222,226],[286,1,1,226,227],[287,1,1,227,228]]],[10,30,28,228,256,[[291,4,4,228,232],[293,1,1,232,233],[295,2,2,233,235],[302,4,2,235,237],[303,2,2,237,239],[307,1,1,239,240],[308,6,6,240,246],[309,2,2,246,248],[310,4,4,248,252],[311,1,1,252,253],[312,3,3,253,256]]],[11,16,16,256,272,[[313,2,2,256,258],[314,2,2,258,260],[315,1,1,260,261],[317,1,1,261,262],[318,1,1,262,263],[321,2,2,263,265],[322,2,2,265,267],[328,1,1,267,268],[331,2,2,268,270],[334,1,1,270,271],[335,1,1,271,272]]],[12,12,11,272,283,[[354,3,3,272,275],[358,3,2,275,277],[359,2,2,277,279],[365,2,2,279,281],[366,2,2,281,283]]],[13,18,16,283,299,[[368,5,5,283,288],[372,1,1,288,289],[373,1,1,289,290],[376,4,2,290,292],[378,1,1,292,293],[384,3,3,293,296],[398,1,1,296,297],[400,2,2,297,299]]],[14,2,2,299,301,[[409,1,1,299,300],[411,1,1,300,301]]],[15,15,14,301,315,[[413,4,4,301,305],[414,3,2,305,307],[416,1,1,307,308],[417,3,3,308,311],[418,2,2,311,313],[424,2,2,313,315]]],[16,6,6,315,321,[[429,2,2,315,317],[430,2,2,317,319],[432,1,1,319,320],[433,1,1,320,321]]],[17,29,27,321,348,[[436,4,4,321,325],[440,2,2,325,327],[441,1,1,327,328],[442,2,2,328,330],[444,2,2,330,332],[448,4,4,332,336],[450,1,1,336,337],[454,2,2,337,339],[464,1,1,339,340],[467,4,3,340,343],[468,3,2,343,345],[469,1,1,345,346],[470,1,1,346,347],[475,1,1,347,348]]],[18,70,69,348,417,[[479,2,2,348,350],[480,1,1,350,351],[482,1,1,351,352],[483,1,1,352,353],[490,1,1,353,354],[494,3,3,354,357],[502,1,1,357,358],[503,2,2,358,360],[504,1,1,360,361],[507,1,1,361,362],[508,3,3,362,365],[512,2,2,365,367],[515,2,2,367,369],[516,2,2,369,371],[517,1,1,371,372],[518,2,2,372,374],[522,1,1,374,375],[528,1,1,375,376],[529,1,1,376,377],[532,2,2,377,379],[533,1,1,379,380],[536,1,1,380,381],[546,2,2,381,383],[547,1,1,383,384],[548,2,2,384,386],[550,4,4,386,390],[552,2,2,390,392],[559,1,1,392,393],[563,2,2,393,395],[565,2,2,395,397],[566,2,2,397,399],[579,1,1,399,400],[586,2,2,400,402],[593,4,3,402,405],[595,1,1,405,406],[596,8,8,406,414],[597,1,1,414,415],[612,1,1,415,416],[620,1,1,416,417]]],[19,7,7,417,424,[[628,1,1,417,418],[635,4,4,418,422],[650,1,1,422,423],[653,1,1,423,424]]],[20,28,25,424,449,[[659,3,2,424,426],[660,11,9,426,435],[661,2,2,435,437],[662,5,5,437,442],[663,1,1,442,443],[665,2,2,443,445],[666,3,3,445,448],[667,1,1,448,449]]],[21,12,12,449,461,[[671,2,2,449,451],[672,3,3,451,454],[675,4,4,454,458],[676,1,1,458,459],[677,1,1,459,460],[678,1,1,460,461]]],[22,81,66,461,527,[[683,1,1,461,462],[684,2,1,462,463],[688,1,1,463,464],[691,1,1,464,465],[697,1,1,465,466],[705,1,1,466,467],[715,2,2,467,469],[716,1,1,469,470],[719,8,5,470,475],[720,3,3,475,478],[721,8,8,478,486],[722,3,2,486,488],[723,11,11,488,499],[724,5,1,499,500],[725,2,2,500,502],[726,8,5,502,507],[727,6,5,507,512],[730,1,1,512,513],[734,1,1,513,514],[735,3,3,514,517],[737,1,1,517,518],[738,2,2,518,520],[739,1,1,520,521],[741,1,1,521,522],[743,3,2,522,524],[744,4,3,524,527]]],[23,55,52,527,579,[[745,6,6,527,533],[747,1,1,533,534],[748,1,1,534,535],[749,1,1,535,536],[753,1,1,536,537],[754,1,1,537,538],[755,2,2,538,540],[757,1,1,540,541],[758,1,1,541,542],[759,1,1,542,543],[761,4,3,543,546],[765,1,1,546,547],[766,1,1,547,548],[767,4,3,548,551],[768,1,1,551,552],[769,1,1,552,553],[770,1,1,553,554],[772,2,2,554,556],[773,2,2,556,558],[774,1,1,558,559],[775,1,1,559,560],[776,2,2,560,562],[778,1,1,562,563],[780,2,2,563,565],[782,4,4,565,569],[784,1,1,569,570],[786,2,2,570,572],[788,1,1,572,573],[789,2,1,573,574],[790,2,2,574,576],[792,1,1,576,577],[793,2,2,577,579]]],[24,4,4,579,583,[[797,2,2,579,581],[799,2,2,581,583]]],[25,168,155,583,738,[[802,1,1,583,584],[803,4,3,584,587],[804,1,1,587,588],[805,1,1,588,589],[806,7,5,589,594],[807,5,5,594,599],[808,3,3,599,602],[809,2,2,602,604],[810,2,2,604,606],[812,4,4,606,610],[813,5,5,610,615],[814,6,6,615,621],[815,8,8,621,629],[816,1,1,629,630],[817,5,4,630,634],[818,6,5,634,639],[819,1,1,639,640],[821,17,16,640,656],[822,4,3,656,659],[823,4,3,659,662],[824,2,2,662,664],[825,4,4,664,668],[826,4,4,668,672],[827,3,3,672,675],[828,1,1,675,676],[829,7,7,676,683],[830,6,5,683,688],[831,5,5,688,693],[833,1,1,693,694],[834,3,3,694,697],[835,10,8,697,705],[836,7,7,705,712],[837,8,7,712,719],[838,9,9,719,728],[839,1,1,728,729],[840,6,6,729,735],[841,1,1,735,736],[845,3,2,736,738]]],[26,23,22,738,760,[[850,1,1,738,739],[857,6,5,739,744],[858,4,4,744,748],[859,9,9,748,757],[860,1,1,757,758],[861,2,2,758,760]]],[27,12,10,760,770,[[864,1,1,760,761],[865,1,1,761,762],[866,5,4,762,766],[868,1,1,766,767],[871,1,1,767,768],[874,1,1,768,769],[875,2,1,769,770]]],[28,4,3,770,773,[[877,2,1,770,771],[878,2,2,771,773]]],[29,1,1,773,774,[[882,1,1,773,774]]],[31,5,5,774,779,[[889,2,2,774,776],[890,2,2,776,778],[892,1,1,778,779]]],[32,2,2,779,781,[[898,1,1,779,780],[899,1,1,780,781]]],[34,1,1,781,782,[[905,1,1,781,782]]],[35,2,2,782,784,[[907,2,2,782,784]]],[36,4,4,784,788,[[909,1,1,784,785],[910,3,3,785,788]]],[37,11,10,788,798,[[911,3,2,788,790],[912,1,1,790,791],[915,1,1,791,792],[917,1,1,792,793],[918,3,3,793,796],[920,1,1,796,797],[923,1,1,797,798]]],[38,8,7,798,805,[[925,4,3,798,801],[926,1,1,801,802],[927,2,2,802,804],[928,1,1,804,805]]]],[154,214,217,359,367,398,401,437,441,552,636,735,751,759,761,765,786,917,925,974,1010,1022,1093,1113,1188,1204,1206,1210,1239,1270,1289,1304,1361,1362,1458,1473,1502,1525,1563,1598,1622,1657,1660,1661,1662,1663,1667,1684,1685,1688,1690,1702,1732,1756,1769,1778,1779,1810,1828,1882,1893,1906,1907,1946,1959,2005,2140,2204,2382,2426,2433,2489,2492,2506,3041,3042,3145,3246,3253,3254,3255,3256,3257,3272,3275,3281,3283,3284,3285,3291,3293,3295,3297,3299,3306,3309,3311,3312,3313,3315,3317,3318,3321,3323,3325,3326,3340,3341,3342,3344,3353,3357,3360,3368,3371,3372,3377,3378,3385,3399,3400,3401,3402,3412,3424,3445,3468,3471,3486,3507,3524,3525,3526,3537,3540,3548,3552,3556,3565,3568,3569,3704,3705,3733,3737,3795,3850,3998,4077,4129,4136,4143,4155,4171,4194,4263,4265,4277,4330,4879,5270,5685,5779,5797,5807,5810,5948,6007,6289,6462,6512,6566,6664,6742,6756,6871,6895,6932,6966,6982,7042,7058,7148,7194,7238,7289,7313,7462,7548,7596,7627,7628,7646,7709,7750,7753,7787,7814,7856,7885,7886,7911,8094,8188,8194,8270,8298,8309,8314,8321,8330,8361,8364,8388,8409,8423,8445,8464,8480,8500,8505,8511,8531,8533,8549,8554,8571,8586,8722,8731,8738,8743,8833,8886,8887,9162,9165,9198,9202,9337,9349,9353,9363,9364,9365,9377,9397,9401,9412,9421,9436,9442,9458,9488,9496,9501,9543,9545,9554,9556,9590,9654,9677,9773,9781,9802,9817,9970,10084,10085,10165,10182,10870,10876,10879,10944,10951,10971,10974,11145,11149,11178,11181,11215,11216,11217,11219,11220,11284,11338,11406,11409,11442,11549,11557,11562,11888,11960,11961,12201,12241,12297,12302,12304,12307,12319,12323,12382,12392,12396,12397,12404,12411,12662,12664,12773,12778,12791,12792,12811,12822,12884,12885,12886,12888,12954,12959,13002,13019,13020,13071,13072,13155,13156,13166,13171,13209,13322,13324,13547,13634,13638,13645,13656,13659,13716,13724,13878,13951,13952,13962,13980,13987,14079,14107,14109,14118,14267,14274,14284,14288,14325,14337,14345,14353,14413,14423,14503,14507,14516,14522,14542,14546,14554,14598,14694,14718,14748,14755,14758,14806,14948,14964,14976,14990,14998,15022,15042,15043,15048,15073,15080,15239,15285,15286,15321,15323,15353,15373,15532,15759,15780,15858,15859,15864,15876,15961,15965,15967,15968,15976,15985,15992,16023,16081,16180,16305,16426,16614,16616,16619,16629,17059,17160,17327,17331,17334,17344,17345,17346,17347,17348,17351,17353,17357,17376,17377,17382,17383,17385,17388,17389,17415,17454,17455,17460,17470,17473,17491,17542,17543,17555,17559,17570,17600,17603,17604,17606,17617,17637,17650,17744,17774,17864,17909,18015,18154,18376,18377,18400,18455,18461,18464,18465,18468,18486,18488,18489,18507,18508,18509,18510,18515,18517,18518,18520,18538,18539,18563,18564,18566,18567,18568,18569,18573,18579,18580,18582,18583,18590,18607,18609,18626,18627,18629,18630,18631,18640,18654,18657,18659,18662,18702,18756,18776,18777,18781,18821,18837,18843,18851,18867,18915,18921,18926,18931,18944,18954,18957,18958,18959,18964,18965,19014,19039,19062,19199,19220,19240,19245,19292,19308,19335,19367,19373,19375,19445,19478,19487,19507,19508,19531,19563,19586,19621,19622,19666,19667,19678,19728,19758,19769,19806,19847,19860,19909,19914,19915,19921,19951,19986,19992,20039,20044,20063,20073,20110,20137,20138,20326,20331,20355,20417,20465,20495,20496,20500,20505,20534,20554,20557,20559,20561,20563,20566,20570,20573,20576,20577,20581,20586,20604,20605,20622,20630,20632,20660,20665,20667,20675,20691,20695,20696,20700,20705,20715,20717,20722,20729,20730,20731,20735,20738,20739,20740,20742,20747,20749,20751,20761,20805,20810,20822,20824,20841,20844,20846,20847,20849,20852,20898,20900,20902,20907,20910,20914,20915,20918,20920,20921,20926,20928,20933,20937,20939,20943,20949,20961,20976,20990,20992,20998,21041,21056,21065,21070,21080,21083,21088,21090,21094,21100,21105,21106,21114,21124,21159,21166,21167,21179,21180,21181,21183,21186,21189,21192,21199,21204,21212,21216,21223,21229,21230,21263,21291,21307,21309,21321,21324,21328,21333,21337,21340,21343,21344,21348,21350,21353,21355,21356,21357,21359,21366,21370,21381,21382,21391,21395,21397,21402,21403,21409,21410,21411,21416,21418,21420,21425,21448,21453,21454,21455,21465,21470,21476,21481,21604,21627,21747,21962,21963,21966,21976,21988,21990,22008,22009,22011,22017,22019,22022,22023,22024,22027,22028,22032,22035,22037,22086,22089,22131,22139,22154,22155,22164,22166,22193,22236,22271,22290,22338,22353,22360,22416,22540,22543,22552,22557,22579,22661,22671,22786,22814,22820,22853,22859,22861,22876,22887,22893,22904,22938,22967,22984,22987,22997,23022,23068,23093,23095,23103,23112,23126,23137,23141]]],["+",[2,2,[[20,1,1,0,1,[[660,1,1,0,1]]],[21,1,1,1,2,[[671,1,1,1,2]]]],[17351,17543]]],["For",[1,1,[[23,1,1,0,1,[[745,1,1,0,1]]]],[18964]]],["I",[837,770,[[0,36,33,0,33,[[5,1,1,0,1],[8,2,2,1,3],[13,1,1,3,4],[14,1,1,4,5],[16,1,1,5,6],[17,2,1,6,7],[21,1,1,7,8],[23,1,1,8,9],[26,3,3,9,12],[27,1,1,12,13],[30,2,2,13,15],[32,1,1,15,16],[33,2,1,16,17],[34,1,1,17,18],[36,3,2,18,20],[39,1,1,20,21],[40,4,4,21,25],[41,2,2,25,27],[42,1,1,27,28],[44,2,2,28,30],[47,1,1,30,31],[48,1,1,31,32],[49,1,1,32,33]]],[1,38,35,33,68,[[51,1,1,33,34],[52,1,1,34,35],[53,1,1,35,36],[55,8,7,36,43],[56,3,3,43,46],[57,1,1,46,47],[58,2,2,47,49],[59,2,2,49,51],[60,1,1,51,52],[61,1,1,52,53],[62,1,1,53,54],[63,3,3,54,57],[64,1,1,57,58],[65,1,1,58,59],[67,1,1,59,60],[71,1,1,60,61],[74,1,1,61,62],[78,2,1,62,63],[80,2,2,63,65],[82,3,2,65,67],[83,1,1,67,68]]],[2,70,67,68,135,[[100,4,2,68,70],[103,1,1,70,71],[106,1,1,71,72],[107,8,8,72,80],[108,16,16,80,96],[109,9,8,96,104],[110,4,4,104,108],[111,9,9,108,117],[112,3,3,117,120],[113,1,1,120,121],[114,4,4,121,125],[115,10,10,125,135]]],[3,21,19,135,154,[[119,4,4,135,139],[121,1,1,139,140],[122,1,1,140,141],[126,1,1,141,142],[129,1,1,142,143],[130,3,3,143,146],[131,4,3,146,149],[134,3,3,149,152],[136,1,1,152,153],[151,2,1,153,154]]],[4,9,6,154,160,[[164,1,1,154,155],[181,1,1,155,156],[184,7,4,156,160]]],[5,4,4,160,164,[[191,1,1,160,161],[194,1,1,161,162],[203,1,1,162,163],[209,1,1,163,164]]],[6,12,12,164,176,[[211,1,1,164,165],[212,1,1,165,166],[216,1,1,166,167],[218,1,1,167,168],[219,1,1,168,169],[222,1,1,169,170],[223,1,1,170,171],[225,1,1,171,172],[226,1,1,172,173],[227,1,1,173,174],[229,1,1,174,175],[230,1,1,175,176]]],[7,2,2,176,178,[[232,1,1,176,177],[235,1,1,177,178]]],[8,19,17,178,195,[[236,1,1,178,179],[238,1,1,179,180],[239,1,1,180,181],[247,2,1,181,182],[249,1,1,182,183],[251,1,1,183,184],[252,3,3,184,187],[254,2,1,187,188],[255,2,2,188,190],[256,1,1,190,191],[258,1,1,191,192],[259,1,1,192,193],[260,1,1,193,194],[261,1,1,194,195]]],[9,27,23,195,218,[[269,1,1,195,196],[273,2,2,196,198],[277,1,1,198,199],[278,4,3,199,202],[279,2,2,202,204],[280,3,3,204,207],[281,5,2,207,209],[282,1,1,209,210],[283,1,1,210,211],[284,2,2,211,213],[285,3,3,213,216],[286,1,1,216,217],[287,1,1,217,218]]],[10,29,27,218,245,[[291,3,3,218,221],[293,1,1,221,222],[295,2,2,222,224],[302,4,2,224,226],[303,2,2,226,228],[307,1,1,228,229],[308,6,6,229,235],[309,2,2,235,237],[310,4,4,237,241],[311,1,1,241,242],[312,3,3,242,245]]],[11,16,16,245,261,[[313,2,2,245,247],[314,2,2,247,249],[315,1,1,249,250],[317,1,1,250,251],[318,1,1,251,252],[321,2,2,252,254],[322,2,2,254,256],[328,1,1,256,257],[331,2,2,257,259],[334,1,1,259,260],[335,1,1,260,261]]],[12,10,9,261,270,[[354,3,3,261,264],[358,3,2,264,266],[359,1,1,266,267],[365,2,2,267,269],[366,1,1,269,270]]],[13,18,16,270,286,[[368,5,5,270,275],[372,1,1,275,276],[373,1,1,276,277],[376,4,2,277,279],[378,1,1,279,280],[384,3,3,280,283],[398,1,1,283,284],[400,2,2,284,286]]],[14,2,2,286,288,[[409,1,1,286,287],[411,1,1,287,288]]],[15,15,14,288,302,[[413,4,4,288,292],[414,3,2,292,294],[416,1,1,294,295],[417,3,3,295,298],[418,2,2,298,300],[424,2,2,300,302]]],[16,6,6,302,308,[[429,2,2,302,304],[430,2,2,304,306],[432,1,1,306,307],[433,1,1,307,308]]],[17,29,27,308,335,[[436,4,4,308,312],[440,2,2,312,314],[441,1,1,314,315],[442,2,2,315,317],[444,2,2,317,319],[448,4,4,319,323],[450,1,1,323,324],[454,2,2,324,326],[464,1,1,326,327],[467,4,3,327,330],[468,3,2,330,332],[469,1,1,332,333],[470,1,1,333,334],[475,1,1,334,335]]],[18,61,60,335,395,[[479,2,2,335,337],[480,1,1,337,338],[483,1,1,338,339],[490,1,1,339,340],[494,2,2,340,342],[502,1,1,342,343],[503,1,1,343,344],[504,1,1,344,345],[507,1,1,345,346],[508,3,3,346,349],[512,1,1,349,350],[515,2,2,350,352],[516,2,2,352,354],[517,1,1,354,355],[518,1,1,355,356],[522,1,1,356,357],[528,1,1,357,358],[529,1,1,358,359],[532,2,2,359,361],[533,1,1,361,362],[536,1,1,362,363],[546,1,1,363,364],[547,1,1,364,365],[548,2,2,365,367],[550,2,2,367,369],[552,2,2,369,371],[559,1,1,371,372],[563,2,2,372,374],[565,2,2,374,376],[566,1,1,376,377],[579,1,1,377,378],[586,2,2,378,380],[593,4,3,380,383],[595,1,1,383,384],[596,8,8,384,392],[597,1,1,392,393],[612,1,1,393,394],[620,1,1,394,395]]],[19,6,6,395,401,[[628,1,1,395,396],[635,4,4,396,400],[653,1,1,400,401]]],[20,26,24,401,425,[[659,3,2,401,403],[660,9,8,403,411],[661,2,2,411,413],[662,5,5,413,418],[663,1,1,418,419],[665,2,2,419,421],[666,3,3,421,424],[667,1,1,424,425]]],[21,11,11,425,436,[[671,1,1,425,426],[672,3,3,426,429],[675,4,4,429,433],[676,1,1,433,434],[677,1,1,434,435],[678,1,1,435,436]]],[22,80,65,436,501,[[683,1,1,436,437],[684,2,1,437,438],[688,1,1,438,439],[691,1,1,439,440],[697,1,1,440,441],[705,1,1,441,442],[715,2,2,442,444],[716,1,1,444,445],[719,8,5,445,450],[720,3,3,450,453],[721,8,8,453,461],[722,3,2,461,463],[723,11,11,463,474],[724,5,1,474,475],[725,2,2,475,477],[726,8,5,477,482],[727,6,5,482,487],[730,1,1,487,488],[734,1,1,488,489],[735,3,3,489,492],[738,2,2,492,494],[739,1,1,494,495],[741,1,1,495,496],[743,3,2,496,498],[744,4,3,498,501]]],[23,49,47,501,548,[[745,5,5,501,506],[747,1,1,506,507],[748,1,1,507,508],[749,1,1,508,509],[753,1,1,509,510],[754,1,1,510,511],[755,2,2,511,513],[757,1,1,513,514],[758,1,1,514,515],[759,1,1,515,516],[761,2,2,516,518],[766,1,1,518,519],[767,4,3,519,522],[768,1,1,522,523],[769,1,1,523,524],[772,2,2,524,526],[773,2,2,526,528],[774,1,1,528,529],[775,1,1,529,530],[776,2,2,530,532],[778,1,1,532,533],[780,2,2,533,535],[782,4,4,535,539],[786,2,2,539,541],[788,1,1,541,542],[789,2,1,542,543],[790,2,2,543,545],[792,1,1,545,546],[793,2,2,546,548]]],[24,4,4,548,552,[[797,2,2,548,550],[799,2,2,550,552]]],[25,167,154,552,706,[[802,1,1,552,553],[803,4,3,553,556],[804,1,1,556,557],[805,1,1,557,558],[806,7,5,558,563],[807,5,5,563,568],[808,3,3,568,571],[809,2,2,571,573],[810,1,1,573,574],[812,4,4,574,578],[813,5,5,578,583],[814,6,6,583,589],[815,8,8,589,597],[816,1,1,597,598],[817,5,4,598,602],[818,6,5,602,607],[819,1,1,607,608],[821,17,16,608,624],[822,4,3,624,627],[823,4,3,627,630],[824,2,2,630,632],[825,4,4,632,636],[826,4,4,636,640],[827,3,3,640,643],[828,1,1,643,644],[829,7,7,644,651],[830,6,5,651,656],[831,5,5,656,661],[833,1,1,661,662],[834,3,3,662,665],[835,10,8,665,673],[836,7,7,673,680],[837,8,7,680,687],[838,9,9,687,696],[839,1,1,696,697],[840,6,6,697,703],[841,1,1,703,704],[845,3,2,704,706]]],[26,21,20,706,726,[[850,1,1,706,707],[857,5,4,707,711],[858,4,4,711,715],[859,8,8,715,723],[860,1,1,723,724],[861,2,2,724,726]]],[27,12,10,726,736,[[864,1,1,726,727],[865,1,1,727,728],[866,5,4,728,732],[868,1,1,732,733],[871,1,1,733,734],[874,1,1,734,735],[875,2,1,735,736]]],[28,4,3,736,739,[[877,2,1,736,737],[878,2,2,737,739]]],[29,1,1,739,740,[[882,1,1,739,740]]],[31,5,5,740,745,[[889,2,2,740,742],[890,2,2,742,744],[892,1,1,744,745]]],[32,2,2,745,747,[[898,1,1,745,746],[899,1,1,746,747]]],[34,1,1,747,748,[[905,1,1,747,748]]],[35,2,2,748,750,[[907,2,2,748,750]]],[36,4,4,750,754,[[909,1,1,750,751],[910,3,3,751,754]]],[37,10,9,754,763,[[911,3,2,754,756],[912,1,1,756,757],[915,1,1,757,758],[918,3,3,758,761],[920,1,1,761,762],[923,1,1,762,763]]],[38,8,7,763,770,[[925,4,3,763,766],[926,1,1,766,767],[927,2,2,767,769],[928,1,1,769,770]]]],[154,214,217,359,367,398,441,552,636,735,751,759,786,917,925,974,1010,1022,1093,1113,1188,1204,1206,1210,1239,1270,1289,1304,1361,1362,1473,1502,1525,1563,1598,1622,1657,1660,1661,1662,1663,1684,1685,1688,1690,1702,1732,1756,1769,1778,1779,1810,1828,1882,1893,1906,1907,1946,1959,2005,2140,2204,2382,2426,2433,2489,2492,2506,3041,3042,3145,3246,3253,3254,3255,3256,3257,3272,3275,3281,3283,3284,3285,3291,3293,3295,3297,3299,3306,3309,3311,3312,3313,3315,3317,3318,3321,3323,3325,3326,3340,3341,3342,3344,3353,3357,3360,3368,3371,3372,3377,3378,3385,3399,3400,3401,3402,3412,3424,3445,3468,3471,3486,3507,3524,3525,3526,3537,3540,3548,3552,3556,3565,3568,3569,3704,3705,3733,3737,3795,3850,3998,4077,4129,4136,4143,4155,4171,4194,4263,4265,4277,4330,4879,5270,5685,5779,5797,5807,5810,5948,6007,6289,6462,6512,6566,6664,6742,6756,6871,6895,6932,6966,6982,7042,7058,7148,7194,7238,7289,7313,7462,7548,7596,7627,7628,7646,7709,7750,7753,7787,7814,7856,7886,7911,8094,8188,8194,8270,8298,8309,8314,8321,8330,8361,8364,8388,8409,8423,8445,8464,8500,8511,8531,8533,8549,8571,8586,8722,8731,8738,8833,8886,8887,9162,9165,9198,9202,9337,9349,9353,9363,9364,9365,9377,9397,9401,9412,9421,9436,9442,9458,9488,9496,9501,9543,9545,9554,9556,9590,9654,9677,9773,9781,9802,9817,9970,10084,10085,10165,10182,10870,10876,10879,10944,10951,10974,11145,11149,11178,11215,11216,11217,11219,11220,11284,11338,11406,11409,11442,11549,11557,11562,11888,11960,11961,12201,12241,12297,12302,12304,12307,12319,12323,12382,12392,12396,12397,12404,12411,12662,12664,12773,12778,12791,12792,12811,12822,12884,12885,12886,12888,12954,12959,13002,13019,13020,13071,13072,13155,13156,13166,13171,13209,13322,13324,13547,13634,13638,13645,13656,13659,13716,13724,13878,13951,13952,13962,13987,14079,14107,14109,14267,14274,14288,14325,14337,14345,14353,14413,14503,14507,14516,14522,14542,14546,14598,14694,14718,14748,14755,14758,14806,14964,14976,14990,14998,15042,15043,15073,15080,15239,15285,15286,15321,15323,15353,15532,15759,15780,15858,15859,15864,15876,15961,15965,15967,15968,15976,15985,15992,16023,16081,16180,16305,16426,16614,16616,16619,16629,17160,17327,17331,17334,17344,17345,17346,17348,17351,17353,17357,17376,17377,17382,17383,17385,17388,17389,17415,17454,17455,17460,17470,17473,17491,17542,17555,17559,17570,17600,17603,17604,17606,17617,17637,17650,17744,17774,17864,17909,18015,18154,18376,18377,18400,18455,18461,18464,18465,18468,18486,18488,18489,18507,18508,18509,18510,18515,18517,18518,18520,18538,18539,18563,18564,18566,18567,18568,18569,18573,18579,18580,18582,18583,18590,18607,18609,18626,18627,18629,18630,18631,18640,18654,18657,18659,18662,18702,18756,18776,18777,18781,18837,18843,18851,18867,18915,18921,18926,18931,18944,18954,18957,18958,18959,18965,19014,19039,19062,19199,19220,19240,19245,19292,19308,19335,19367,19373,19478,19487,19507,19508,19531,19563,19621,19622,19666,19667,19678,19728,19758,19769,19806,19847,19860,19909,19914,19915,19921,19986,19992,20039,20044,20063,20073,20110,20137,20138,20326,20331,20355,20417,20465,20495,20496,20500,20505,20534,20554,20557,20559,20561,20563,20566,20570,20573,20576,20577,20581,20586,20604,20605,20622,20630,20660,20665,20667,20675,20691,20695,20696,20700,20705,20715,20717,20722,20729,20730,20731,20735,20738,20739,20740,20742,20747,20749,20751,20761,20805,20810,20822,20824,20841,20844,20846,20847,20849,20852,20898,20900,20902,20907,20910,20914,20915,20918,20920,20921,20926,20928,20933,20937,20939,20943,20949,20961,20976,20990,20992,20998,21041,21056,21065,21070,21080,21083,21088,21090,21094,21100,21105,21106,21114,21124,21159,21166,21167,21179,21180,21181,21183,21186,21189,21192,21199,21204,21212,21216,21223,21229,21230,21263,21291,21307,21309,21321,21324,21328,21333,21337,21340,21343,21344,21348,21350,21353,21355,21356,21357,21359,21366,21370,21381,21382,21391,21395,21397,21402,21403,21409,21410,21411,21416,21418,21420,21425,21448,21453,21454,21455,21465,21470,21476,21481,21604,21627,21747,21963,21966,21976,21988,21990,22008,22009,22011,22017,22019,22022,22023,22024,22027,22028,22035,22037,22086,22089,22131,22139,22154,22155,22164,22166,22193,22236,22271,22290,22338,22353,22360,22416,22540,22543,22552,22557,22579,22661,22671,22786,22814,22820,22853,22859,22861,22876,22887,22893,22904,22938,22984,22987,22997,23022,23068,23093,23095,23103,23112,23126,23137,23141]]],["Me",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8505]]],["me",[25,24,[[0,4,4,0,4,[[16,1,1,0,1],[26,2,2,1,3],[47,1,1,3,4]]],[8,1,1,4,5,[[260,1,1,4,5]]],[10,1,1,5,6,[[291,1,1,5,6]]],[12,2,2,6,8,[[359,1,1,6,7],[366,1,1,7,8]]],[18,8,8,8,16,[[482,1,1,8,9],[494,1,1,9,10],[503,1,1,10,11],[512,1,1,11,12],[518,1,1,12,13],[546,1,1,13,14],[550,2,2,14,16]]],[22,1,1,16,17,[[737,1,1,16,17]]],[23,4,3,17,20,[[761,2,1,17,18],[770,1,1,18,19],[784,1,1,19,20]]],[25,1,1,20,21,[[810,1,1,20,21]]],[26,2,2,21,23,[[857,1,1,21,22],[859,1,1,22,23]]],[37,1,1,23,24,[[917,1,1,23,24]]]],[401,761,765,1458,7885,8743,10971,11181,13980,14118,14284,14423,14554,14948,15022,15048,18821,19375,19586,19951,20632,21962,22032,22967]]],["mine",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17059]]],["my",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15373]]],["myself",[3,3,[[9,1,1,0,1,[[284,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]],[23,1,1,2,3,[[765,1,1,2,3]]]],[8480,17347,19445]]],["we",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8554]]],["which",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[437]]],["who",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1667]]]]},{"k":"H590","v":[["*",[7,5,[[10,6,4,0,4,[[299,2,2,0,2],[300,4,2,2,4]]],[22,1,1,4,5,[[711,1,1,4,5]]]],[9077,9078,9090,9101,18300]]],["+",[1,1,[[10,1,1,0,1,[[299,1,1,0,1]]]],[9078]]],["galley",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18300]]],["navy",[4,2,[[10,4,2,0,2,[[300,4,2,0,2]]]],[9090,9101]]],["ships",[1,1,[[10,1,1,0,1,[[299,1,1,0,1]]]],[9077]]]]},{"k":"H591","v":[["*",[31,28,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[10,4,3,3,6,[[299,1,1,3,4],[312,3,2,4,6]]],[13,6,4,6,10,[[374,1,1,6,7],[375,2,1,7,8],[386,3,2,8,10]]],[17,1,1,10,11,[[444,1,1,10,11]]],[18,3,3,11,14,[[525,1,1,11,12],[581,1,1,12,13],[584,1,1,13,14]]],[19,2,2,14,16,[[657,1,1,14,15],[658,1,1,15,16]]],[22,5,5,16,21,[[680,1,1,16,17],[701,2,2,17,19],[721,1,1,19,20],[738,1,1,20,21]]],[25,3,3,21,24,[[828,3,3,21,24]]],[26,1,1,24,25,[[860,1,1,24,25]]],[31,3,3,25,28,[[889,3,3,25,28]]]],[1486,5679,6640,9078,9528,9529,11364,11385,11623,11624,13077,14641,15597,15722,17270,17298,17701,18078,18091,18519,18830,21130,21146,21150,22076,22534,22535,22536]]],["+",[2,2,[[10,1,1,0,1,[[299,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[9078,21150]]],["ship",[4,4,[[19,1,1,0,1,[[657,1,1,0,1]]],[31,3,3,1,4,[[889,3,3,1,4]]]],[17270,22534,22535,22536]]],["ships",[25,22,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[10,3,2,3,5,[[312,3,2,3,5]]],[13,6,4,5,9,[[374,1,1,5,6],[375,2,1,6,7],[386,3,2,7,9]]],[17,1,1,9,10,[[444,1,1,9,10]]],[18,3,3,10,13,[[525,1,1,10,11],[581,1,1,11,12],[584,1,1,12,13]]],[19,1,1,13,14,[[658,1,1,13,14]]],[22,5,5,14,19,[[680,1,1,14,15],[701,2,2,15,17],[721,1,1,17,18],[738,1,1,18,19]]],[25,2,2,19,21,[[828,2,2,19,21]]],[26,1,1,21,22,[[860,1,1,21,22]]]],[1486,5679,6640,9528,9529,11364,11385,11623,11624,13077,14641,15597,15722,17298,17701,18078,18091,18519,18830,21130,21146,22076]]]]},{"k":"H592","v":[["*",[2,2,[[22,1,1,0,1,[[707,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]]],[18195,20337]]],["lamentation",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20337]]],["sorrow",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18195]]]]},{"k":"H593","v":[["Aniam",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10554]]]]},{"k":"H594","v":[["plumbline",[4,2,[[29,4,2,0,2,[[885,4,2,0,2]]]],[22471,22472]]]]},{"k":"H595","v":[["*",[355,332,[[0,56,53,0,53,[[2,1,1,0,1],[3,1,1,1,2],[6,1,1,2,3],[14,3,3,3,6],[15,2,2,6,8],[17,1,1,8,9],[18,1,1,9,10],[19,2,1,10,11],[20,2,2,11,13],[22,1,1,13,14],[23,9,9,14,23],[24,3,3,23,26],[25,2,1,26,27],[26,2,2,27,29],[27,3,3,29,32],[28,1,1,32,33],[29,4,4,33,37],[30,4,4,37,41],[31,1,1,41,42],[36,1,1,42,43],[37,2,2,43,45],[42,1,1,45,46],[45,3,2,46,48],[46,1,1,48,49],[47,1,1,49,50],[49,3,3,50,53]]],[1,22,21,53,74,[[52,4,4,53,57],[53,6,5,57,62],[56,1,1,62,63],[57,3,3,63,66],[66,1,1,66,67],[68,1,1,67,68],[69,2,2,68,70],[72,1,1,70,71],[81,1,1,71,72],[83,2,2,72,74]]],[3,7,6,74,80,[[127,4,3,74,77],[138,2,2,77,79],[139,1,1,79,80]]],[4,56,55,80,135,[[156,6,5,80,85],[157,5,5,85,90],[158,2,2,90,92],[159,1,1,92,93],[160,2,2,93,95],[162,2,2,95,97],[163,7,7,97,104],[164,4,4,104,108],[165,1,1,108,109],[167,3,3,109,112],[170,1,1,112,113],[171,2,2,113,115],[176,2,2,115,117],[179,3,3,117,120],[180,4,4,120,124],[181,1,1,124,125],[182,4,4,125,129],[183,4,4,129,133],[184,2,2,133,135]]],[5,9,9,135,144,[[187,1,1,135,136],[193,1,1,136,137],[197,1,1,137,138],[199,1,1,138,139],[200,3,3,139,142],[209,1,1,142,143],[210,1,1,143,144]]],[6,17,15,144,159,[[215,2,1,144,145],[216,4,4,145,149],[217,2,2,149,151],[218,1,1,151,152],[221,4,4,152,156],[227,3,2,156,158],[229,1,1,158,159]]],[7,7,6,159,165,[[233,2,2,159,161],[234,3,3,161,164],[235,2,1,164,165]]],[8,26,26,165,191,[[236,3,3,165,168],[237,2,2,168,170],[238,1,1,170,171],[239,1,1,171,172],[244,2,2,172,174],[245,2,2,174,176],[247,1,1,176,177],[250,1,1,177,178],[251,1,1,178,179],[252,3,3,179,182],[253,2,2,182,184],[255,2,2,184,186],[256,1,1,186,187],[257,1,1,187,188],[258,1,1,188,189],[259,1,1,189,190],[265,1,1,190,191]]],[9,24,22,191,213,[[267,3,3,191,194],[268,2,2,194,196],[269,4,4,196,200],[273,2,2,200,202],[277,1,1,202,203],[278,2,1,203,204],[279,1,1,204,205],[280,1,1,205,206],[281,1,1,206,207],[284,1,1,207,208],[285,1,1,208,209],[286,2,2,209,211],[290,3,2,211,213]]],[10,7,7,213,220,[[292,4,4,213,217],[293,1,1,217,218],[304,1,1,218,219],[309,1,1,219,220]]],[11,2,2,220,222,[[316,1,1,220,221],[334,1,1,221,222]]],[12,1,1,222,223,[[354,1,1,222,223]]],[15,1,1,223,224,[[413,1,1,223,224]]],[17,13,13,224,237,[[444,2,2,224,226],[447,1,1,226,227],[448,2,2,227,229],[449,1,1,229,230],[451,1,1,230,231],[456,2,2,231,233],[464,1,1,233,234],[468,2,2,234,236],[477,1,1,236,237]]],[18,13,13,237,250,[[499,1,1,237,238],[516,1,1,238,239],[523,1,1,239,240],[527,1,1,240,241],[552,1,1,241,242],[558,1,1,242,243],[568,1,1,243,244],[581,1,1,244,245],[586,1,1,245,246],[596,3,3,246,249],[618,1,1,249,250]]],[19,2,2,250,252,[[651,1,1,250,251],[657,1,1,251,252]]],[22,24,18,252,270,[[686,1,1,252,253],[699,2,1,253,254],[721,5,3,254,257],[722,1,1,257,258],[723,2,2,258,260],[724,1,1,260,261],[727,3,2,261,263],[728,1,1,263,264],[729,3,2,264,266],[732,3,2,266,268],[744,2,2,268,270]]],[23,36,33,270,303,[[745,3,3,270,273],[746,1,1,273,274],[747,2,2,274,276],[748,1,1,276,277],[750,1,1,277,278],[751,1,1,278,279],[755,1,1,279,280],[758,1,1,280,281],[762,1,1,281,282],[767,1,1,282,283],[768,1,1,283,284],[769,3,3,284,287],[770,2,2,287,289],[771,2,2,289,291],[772,1,1,291,292],[773,3,2,292,294],[774,1,1,294,295],[775,1,1,295,296],[776,2,1,296,297],[777,2,1,297,298],[778,1,1,298,299],[779,1,1,299,300],[780,1,1,300,301],[794,1,1,301,302],[795,1,1,302,303]]],[25,1,1,303,304,[[837,1,1,303,304]]],[26,1,1,304,305,[[859,1,1,304,305]]],[27,11,11,305,316,[[862,1,1,305,306],[863,3,3,306,309],[866,1,1,309,310],[868,1,1,310,311],[872,2,2,311,313],[873,2,2,313,315],[874,1,1,315,316]]],[29,10,8,316,324,[[880,3,3,316,319],[882,1,1,319,320],[883,1,1,320,321],[884,1,1,321,322],[885,3,1,322,323],[887,1,1,323,324]]],[31,2,2,324,326,[[889,1,1,324,325],[891,1,1,325,326]]],[32,1,1,326,327,[[895,1,1,326,327]]],[37,5,4,327,331,[[921,2,2,327,329],[922,1,1,329,330],[923,2,1,330,331]]],[38,1,1,331,332,[[928,1,1,331,332]]]],[65,88,163,361,362,374,386,389,451,476,501,537,539,575,594,604,615,618,622,625,628,633,634,680,688,690,716,738,746,788,789,793,828,831,832,833,860,878,886,911,912,939,1099,1136,1144,1299,1389,1390,1450,1472,1511,1527,1530,1585,1590,1591,1592,1611,1612,1613,1616,1624,1702,1712,1738,1739,1992,2035,2053,2056,2164,2456,2506,2507,4036,4038,4045,4405,4407,4431,5005,5006,5012,5026,5044,5054,5058,5059,5062,5084,5088,5092,5122,5138,5148,5196,5199,5216,5221,5230,5234,5235,5236,5240,5251,5254,5268,5272,5290,5324,5330,5334,5403,5413,5415,5543,5547,5586,5589,5595,5612,5624,5625,5626,5693,5710,5716,5719,5724,5730,5746,5751,5755,5798,5804,5853,5996,6113,6160,6194,6195,6197,6474,6491,6626,6662,6669,6672,6691,6711,6712,6724,6838,6856,6864,6866,6989,6990,7042,7159,7162,7181,7184,7185,7194,7220,7227,7240,7263,7264,7287,7313,7410,7412,7426,7436,7483,7574,7598,7626,7661,7663,7694,7699,7735,7766,7774,7809,7827,7843,7991,8030,8035,8038,8055,8069,8089,8094,8109,8120,8182,8198,8264,8293,8345,8374,8417,8490,8546,8571,8573,8704,8709,8772,8786,8788,8790,8823,9224,9391,9616,10164,10864,12302,13065,13080,13131,13155,13175,13196,13242,13358,13359,13548,13659,13681,13926,14210,14524,14624,14675,15074,15227,15410,15605,15777,15917,16039,16060,16286,17111,17253,17825,18043,18516,18517,18530,18557,18573,18574,18595,18651,18661,18667,18685,18688,18734,18739,18935,18940,18952,18953,18963,18986,19016,19021,19033,19108,19130,19230,19305,19395,19516,19531,19549,19561,19563,19575,19577,19601,19602,19625,19646,19658,19689,19723,19773,19784,19814,19837,19845,20175,20276,21387,22026,22103,22107,22113,22119,22166,22191,22243,22249,22261,22262,22270,22388,22389,22392,22417,22424,22458,22478,22504,22540,22560,22616,23034,23044,23047,23064,23143]]],["+",[1,1,[[29,1,1,0,1,[[880,1,1,0,1]]]],[22388]]],["I",[350,327,[[0,55,52,0,52,[[2,1,1,0,1],[3,1,1,1,2],[6,1,1,2,3],[14,3,3,3,6],[15,2,2,6,8],[18,1,1,8,9],[19,2,1,9,10],[20,2,2,10,12],[22,1,1,12,13],[23,9,9,13,22],[24,3,3,22,25],[25,2,1,25,26],[26,2,2,26,28],[27,3,3,28,31],[28,1,1,31,32],[29,4,4,32,36],[30,4,4,36,40],[31,1,1,40,41],[36,1,1,41,42],[37,2,2,42,44],[42,1,1,44,45],[45,3,2,45,47],[46,1,1,47,48],[47,1,1,48,49],[49,3,3,49,52]]],[1,22,21,52,73,[[52,4,4,52,56],[53,6,5,56,61],[56,1,1,61,62],[57,3,3,62,65],[66,1,1,65,66],[68,1,1,66,67],[69,2,2,67,69],[72,1,1,69,70],[81,1,1,70,71],[83,2,2,71,73]]],[3,7,6,73,79,[[127,4,3,73,76],[138,2,2,76,78],[139,1,1,78,79]]],[4,56,55,79,134,[[156,6,5,79,84],[157,5,5,84,89],[158,2,2,89,91],[159,1,1,91,92],[160,2,2,92,94],[162,2,2,94,96],[163,7,7,96,103],[164,4,4,103,107],[165,1,1,107,108],[167,3,3,108,111],[170,1,1,111,112],[171,2,2,112,114],[176,2,2,114,116],[179,3,3,116,119],[180,4,4,119,123],[181,1,1,123,124],[182,4,4,124,128],[183,4,4,128,132],[184,2,2,132,134]]],[5,8,8,134,142,[[187,1,1,134,135],[193,1,1,135,136],[197,1,1,136,137],[199,1,1,137,138],[200,3,3,138,141],[209,1,1,141,142]]],[6,17,15,142,157,[[215,2,1,142,143],[216,4,4,143,147],[217,2,2,147,149],[218,1,1,149,150],[221,4,4,150,154],[227,3,2,154,156],[229,1,1,156,157]]],[7,7,6,157,163,[[233,2,2,157,159],[234,3,3,159,162],[235,2,1,162,163]]],[8,25,25,163,188,[[236,3,3,163,166],[237,2,2,166,168],[238,1,1,168,169],[239,1,1,169,170],[244,2,2,170,172],[245,2,2,172,174],[250,1,1,174,175],[251,1,1,175,176],[252,3,3,176,179],[253,2,2,179,181],[255,2,2,181,183],[256,1,1,183,184],[257,1,1,184,185],[258,1,1,185,186],[259,1,1,186,187],[265,1,1,187,188]]],[9,24,22,188,210,[[267,3,3,188,191],[268,2,2,191,193],[269,4,4,193,197],[273,2,2,197,199],[277,1,1,199,200],[278,2,1,200,201],[279,1,1,201,202],[280,1,1,202,203],[281,1,1,203,204],[284,1,1,204,205],[285,1,1,205,206],[286,2,2,206,208],[290,3,2,208,210]]],[10,7,7,210,217,[[292,4,4,210,214],[293,1,1,214,215],[304,1,1,215,216],[309,1,1,216,217]]],[11,2,2,217,219,[[316,1,1,217,218],[334,1,1,218,219]]],[12,1,1,219,220,[[354,1,1,219,220]]],[15,1,1,220,221,[[413,1,1,220,221]]],[17,12,12,221,233,[[444,2,2,221,223],[447,1,1,223,224],[448,2,2,224,226],[449,1,1,226,227],[451,1,1,227,228],[456,1,1,228,229],[464,1,1,229,230],[468,2,2,230,232],[477,1,1,232,233]]],[18,13,13,233,246,[[499,1,1,233,234],[516,1,1,234,235],[523,1,1,235,236],[527,1,1,236,237],[552,1,1,237,238],[558,1,1,238,239],[568,1,1,239,240],[581,1,1,240,241],[586,1,1,241,242],[596,3,3,242,245],[618,1,1,245,246]]],[19,2,2,246,248,[[651,1,1,246,247],[657,1,1,247,248]]],[22,24,18,248,266,[[686,1,1,248,249],[699,2,1,249,250],[721,5,3,250,253],[722,1,1,253,254],[723,2,2,254,256],[724,1,1,256,257],[727,3,2,257,259],[728,1,1,259,260],[729,3,2,260,262],[732,3,2,262,264],[744,2,2,264,266]]],[23,36,33,266,299,[[745,3,3,266,269],[746,1,1,269,270],[747,2,2,270,272],[748,1,1,272,273],[750,1,1,273,274],[751,1,1,274,275],[755,1,1,275,276],[758,1,1,276,277],[762,1,1,277,278],[767,1,1,278,279],[768,1,1,279,280],[769,3,3,280,283],[770,2,2,283,285],[771,2,2,285,287],[772,1,1,287,288],[773,3,2,288,290],[774,1,1,290,291],[775,1,1,291,292],[776,2,1,292,293],[777,2,1,293,294],[778,1,1,294,295],[779,1,1,295,296],[780,1,1,296,297],[794,1,1,297,298],[795,1,1,298,299]]],[25,1,1,299,300,[[837,1,1,299,300]]],[26,1,1,300,301,[[859,1,1,300,301]]],[27,11,11,301,312,[[862,1,1,301,302],[863,3,3,302,305],[866,1,1,305,306],[868,1,1,306,307],[872,2,2,307,309],[873,2,2,309,311],[874,1,1,311,312]]],[29,9,7,312,319,[[880,2,2,312,314],[882,1,1,314,315],[883,1,1,315,316],[884,1,1,316,317],[885,3,1,317,318],[887,1,1,318,319]]],[31,2,2,319,321,[[889,1,1,319,320],[891,1,1,320,321]]],[32,1,1,321,322,[[895,1,1,321,322]]],[37,5,4,322,326,[[921,2,2,322,324],[922,1,1,324,325],[923,2,1,325,326]]],[38,1,1,326,327,[[928,1,1,326,327]]]],[65,88,163,361,362,374,386,389,476,501,537,539,575,594,604,615,618,622,625,628,633,634,680,688,690,716,738,746,788,789,793,828,831,832,833,860,878,886,911,912,939,1099,1136,1144,1299,1389,1390,1450,1472,1511,1527,1530,1585,1590,1591,1592,1611,1612,1613,1616,1624,1702,1712,1738,1739,1992,2035,2053,2056,2164,2456,2506,2507,4036,4038,4045,4405,4407,4431,5005,5006,5012,5026,5044,5054,5058,5059,5062,5084,5088,5092,5122,5138,5148,5196,5199,5216,5221,5230,5234,5235,5236,5240,5251,5254,5268,5272,5290,5324,5330,5334,5403,5413,5415,5543,5547,5586,5589,5595,5612,5624,5625,5626,5693,5710,5716,5719,5724,5730,5746,5751,5755,5798,5804,5853,5996,6113,6160,6194,6195,6197,6474,6626,6662,6669,6672,6691,6711,6712,6724,6838,6856,6864,6866,6989,6990,7042,7159,7162,7181,7184,7185,7194,7220,7227,7240,7263,7264,7287,7313,7410,7412,7426,7436,7574,7598,7626,7661,7663,7694,7699,7735,7766,7774,7809,7827,7843,7991,8030,8035,8038,8055,8069,8089,8094,8109,8120,8182,8198,8264,8293,8345,8374,8417,8490,8546,8571,8573,8704,8709,8772,8786,8788,8790,8823,9224,9391,9616,10164,10864,12302,13065,13080,13131,13155,13175,13196,13242,13358,13548,13659,13681,13926,14210,14524,14624,14675,15074,15227,15410,15605,15777,15917,16039,16060,16286,17111,17253,17825,18043,18516,18517,18530,18557,18573,18574,18595,18651,18661,18667,18685,18688,18734,18739,18935,18940,18952,18953,18963,18986,19016,19021,19033,19108,19130,19230,19305,19395,19516,19531,19549,19561,19563,19575,19577,19601,19602,19625,19646,19658,19689,19723,19773,19784,19814,19837,19845,20175,20276,21387,22026,22103,22107,22113,22119,22166,22191,22243,22249,22261,22262,22270,22389,22392,22417,22424,22458,22478,22504,22540,22560,22616,23034,23044,23047,23064,23143]]],["me",[3,3,[[5,1,1,0,1,[[210,1,1,0,1]]],[8,1,1,1,2,[[247,1,1,1,2]]],[17,1,1,2,3,[[456,1,1,2,3]]]],[6491,7483,13359]]],["which",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[451]]]]},{"k":"H596","v":[["*",[2,2,[[3,1,1,0,1,[[127,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]]],[4025,20393]]],["complain",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20393]]],["complained",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4025]]]]},{"k":"H597","v":[["compel",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12710]]]]},{"k":"H598","v":[["troubleth",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21846]]]]},{"k":"H599","v":[["*",[14,14,[[4,4,4,0,4,[[153,1,1,0,1],[156,1,1,1,2],[161,2,2,2,4]]],[10,2,2,4,6,[[298,1,1,4,5],[301,1,1,5,6]]],[11,1,1,6,7,[[329,1,1,6,7]]],[13,1,1,7,8,[[372,1,1,7,8]]],[14,1,1,8,9,[[411,1,1,8,9]]],[18,4,4,9,13,[[479,1,1,9,10],[537,1,1,10,11],[556,1,1,11,12],[562,1,1,12,13]]],[22,1,1,13,14,[[690,1,1,13,14]]]],[4929,5025,5165,5177,9031,9117,10001,11318,12251,13957,14808,15190,15276,17901]]],["+",[2,2,[[4,1,1,0,1,[[161,1,1,0,1]]],[11,1,1,1,2,[[329,1,1,1,2]]]],[5177,10001]]],["angry",[11,11,[[4,3,3,0,3,[[153,1,1,0,1],[156,1,1,1,2],[161,1,1,2,3]]],[10,2,2,3,5,[[298,1,1,3,4],[301,1,1,4,5]]],[13,1,1,5,6,[[372,1,1,5,6]]],[14,1,1,6,7,[[411,1,1,6,7]]],[18,3,3,7,10,[[479,1,1,7,8],[556,1,1,8,9],[562,1,1,9,10]]],[22,1,1,10,11,[[690,1,1,10,11]]]],[4929,5025,5165,9031,9117,11318,12251,13957,15190,15276,17901]]],["displeased",[1,1,[[18,1,1,0,1,[[537,1,1,0,1]]]],[14808]]]]},{"k":"H600","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21804,21826]]],["face",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21804]]],["visage",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21826]]]]},{"k":"H601","v":[["heron",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3016,5308]]]]},{"k":"H602","v":[["*",[4,4,[[23,1,1,0,1,[[795,1,1,0,1]]],[25,3,3,1,4,[[810,1,1,1,2],[825,1,1,2,3],[827,1,1,3,4]]]],[20264,20626,21073,21115]]],["cry",[3,3,[[25,3,3,0,3,[[810,1,1,0,1],[825,1,1,1,2],[827,1,1,2,3]]]],[20626,21073,21115]]],["groan",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20264]]]]},{"k":"H603","v":[["*",[4,4,[[18,3,3,0,3,[[489,1,1,0,1],[556,1,1,1,2],[579,1,1,2,3]]],[38,1,1,3,4,[[926,1,1,3,4]]]],[14071,15196,15541,23116]]],["+",[1,1,[[18,1,1,0,1,[[489,1,1,0,1]]]],[14071]]],["groaning",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15541]]],["out",[1,1,[[38,1,1,0,1,[[926,1,1,0,1]]]],[23116]]],["sighing",[1,1,[[18,1,1,0,1,[[556,1,1,0,1]]]],[15196]]]]},{"k":"H604","v":[["ferret",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3027]]]]},{"k":"H605","v":[["*",[9,9,[[9,1,1,0,1,[[278,1,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[22,1,1,2,3,[[695,1,1,2,3]]],[23,5,5,3,8,[[759,1,1,3,4],[761,2,2,4,6],[774,2,2,6,8]]],[32,1,1,8,9,[[893,1,1,8,9]]]],[8301,13689,17994,19333,19366,19373,19679,19682,22588]]],["desperate",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17994]]],["incurable",[5,5,[[17,1,1,0,1,[[469,1,1,0,1]]],[23,3,3,1,4,[[759,1,1,1,2],[774,2,2,2,4]]],[32,1,1,4,5,[[893,1,1,4,5]]]],[13689,19333,19679,19682,22588]]],["sick",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8301]]],["wicked",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19366]]],["woeful",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19373]]]]},{"k":"H606","v":[["*",[25,19,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]],[26,23,17,2,19,[[851,3,3,2,5],[852,1,1,5,6],[853,8,5,6,11],[854,4,3,11,14],[855,3,2,14,16],[856,4,3,16,19]]]],[12121,12162,21768,21796,21801,21817,21853,21854,21862,21869,21870,21879,21881,21895,21912,21917,21937,21941,21946]]],["+",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[854,1,1,1,2]]]],[12162,21881]]],["man",[8,7,[[26,8,7,0,7,[[851,1,1,0,1],[852,1,1,1,2],[855,3,2,2,4],[856,3,3,4,7]]]],[21768,21817,21912,21917,21937,21941,21946]]],["man's",[3,3,[[26,3,3,0,3,[[853,1,1,0,1],[854,1,1,1,2],[856,1,1,2,3]]]],[21853,21879,21937]]],["men",[12,8,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,11,7,1,8,[[851,2,2,1,3],[853,7,4,3,7],[854,2,1,7,8]]]],[12121,21796,21801,21854,21862,21869,21870,21895]]]]},{"k":"H607","v":[["*",[15,14,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,14,13,1,14,[[851,4,4,1,5],[852,1,1,5,6],[853,3,2,6,8],[854,4,4,8,12],[855,2,2,12,14]]]],[12198,21787,21789,21795,21796,21817,21855,21859,21887,21892,21896,21897,21921,21925]]],["Thou",[4,4,[[26,4,4,0,4,[[851,3,3,0,3],[852,1,1,3,4]]]],[21789,21795,21796,21817]]],["thee",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21787]]],["thou",[10,9,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,9,8,1,9,[[853,3,2,1,3],[854,4,4,3,7],[855,2,2,7,9]]]],[12198,21855,21859,21887,21892,21896,21897,21921,21925]]]]},{"k":"H608","v":[["ye",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21766]]]]},{"k":"H609","v":[["*",[58,52,[[10,26,24,0,24,[[305,18,16,0,16],[306,5,5,16,21],[312,3,3,21,24]]],[12,2,2,24,26,[[340,1,1,24,25],[346,1,1,25,26]]],[13,29,25,26,51,[[380,7,7,26,33],[381,8,6,33,39],[382,11,9,39,48],[383,1,1,48,49],[386,1,1,49,50],[387,1,1,50,51]]],[23,1,1,51,52,[[785,1,1,51,52]]]],[9257,9258,9260,9262,9263,9265,9266,9267,9269,9271,9272,9273,9274,9277,9281,9282,9291,9293,9298,9306,9312,9521,9523,9526,10371,10631,11476,11477,11483,11485,11486,11487,11488,11492,11498,11500,11506,11507,11509,11510,11511,11513,11515,11516,11519,11520,11521,11522,11525,11619,11636,19966]]],["Asa",[57,51,[[10,25,23,0,23,[[305,17,15,0,15],[306,5,5,15,20],[312,3,3,20,23]]],[12,2,2,23,25,[[340,1,1,23,24],[346,1,1,24,25]]],[13,29,25,25,50,[[380,7,7,25,32],[381,8,6,32,38],[382,11,9,38,47],[383,1,1,47,48],[386,1,1,48,49],[387,1,1,49,50]]],[23,1,1,50,51,[[785,1,1,50,51]]]],[9257,9258,9260,9262,9265,9266,9267,9269,9271,9272,9273,9274,9277,9281,9282,9291,9293,9298,9306,9312,9521,9523,9526,10371,10631,11476,11477,11483,11485,11486,11487,11488,11492,11498,11500,11506,11507,11509,11510,11511,11513,11515,11516,11519,11520,11521,11522,11525,11619,11636,19966]]],["Asa's",[1,1,[[10,1,1,0,1,[[305,1,1,0,1]]]],[9263]]]]},{"k":"H610","v":[["pot",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9605]]]]},{"k":"H611","v":[["mischief",[5,5,[[0,3,3,0,3,[[41,2,2,0,2],[43,1,1,2,3]]],[1,2,2,3,5,[[70,2,2,3,5]]]],[1256,1290,1353,2099,2100]]]]},{"k":"H612","v":[["*",[3,3,[[6,1,1,0,1,[[225,1,1,0,1]]],[20,1,1,1,2,[[665,1,1,1,2]]],[23,1,1,2,3,[[781,1,1,2,3]]]],[6943,17455,19889]]],["+",[1,1,[[23,1,1,0,1,[[781,1,1,0,1]]]],[19889]]],["bands",[2,2,[[6,1,1,0,1,[[225,1,1,0,1]]],[20,1,1,1,2,[[665,1,1,1,2]]]],[6943,17455]]]]},{"k":"H613","v":[["*",[3,3,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,2,2,1,3,[[853,2,2,1,3]]]],[12199,21852,21860]]],["band",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21852,21860]]],["imprisonment",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12199]]]]},{"k":"H614","v":[["ingathering",[2,2,[[1,2,2,0,2,[[72,1,1,0,1],[83,1,1,1,2]]]],[2160,2518]]]]},{"k":"H615","v":[["*",[14,14,[[0,2,2,0,2,[[38,2,2,0,2]]],[6,2,2,2,4,[[226,2,2,2,4]]],[17,1,1,4,5,[[438,1,1,4,5]]],[18,5,5,5,10,[[545,1,1,5,6],[546,1,1,6,7],[556,1,1,7,8],[579,1,1,8,9],[584,1,1,9,10]]],[22,1,1,10,11,[[692,1,1,10,11]]],[24,1,1,11,12,[[799,1,1,11,12]]],[37,2,2,12,14,[[919,2,2,12,14]]]],[1169,1171,6970,6974,12922,14906,14968,15196,15541,15709,17945,20388,23010,23011]]],["+",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6974]]],["bound",[2,2,[[18,2,2,0,2,[[545,1,1,0,1],[584,1,1,1,2]]]],[14906,15709]]],["prison",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6970]]],["prisoner",[2,2,[[18,2,2,0,2,[[556,1,1,0,1],[579,1,1,1,2]]]],[15196,15541]]],["prisoners",[8,8,[[0,2,2,0,2,[[38,2,2,0,2]]],[17,1,1,2,3,[[438,1,1,2,3]]],[18,1,1,3,4,[[546,1,1,3,4]]],[22,1,1,4,5,[[692,1,1,4,5]]],[24,1,1,5,6,[[799,1,1,5,6]]],[37,2,2,6,8,[[919,2,2,6,8]]]],[1169,1171,12922,14968,17945,20388,23010,23011]]]]},{"k":"H616","v":[["prisoners",[3,3,[[22,3,3,0,3,[[688,1,1,0,1],[702,1,1,1,2],[720,1,1,2,3]]]],[17854,18117,18487]]]]},{"k":"H617","v":[["Assir",[5,5,[[1,1,1,0,1,[[55,1,1,0,1]]],[12,4,4,1,5,[[340,1,1,1,2],[343,3,3,2,5]]]],[1679,10378,10476,10477,10491]]]]},{"k":"H618","v":[["*",[2,2,[[4,1,1,0,1,[[180,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]]],[5619,16465]]],["barns",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16465]]],["storehouses",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5619]]]]},{"k":"H619","v":[["Asnah",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12077]]]]},{"k":"H620","v":[["Asnappar",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12120]]]]},{"k":"H621","v":[["Asenath",[3,3,[[0,3,3,0,3,[[40,2,2,0,2],[45,1,1,2,3]]]],[1240,1245,1406]]]]},{"k":"H622","v":[["*",[199,186,[[0,15,14,0,14,[[5,1,1,0,1],[24,2,2,1,3],[28,4,4,3,7],[29,1,1,7,8],[33,1,1,8,9],[34,1,1,9,10],[41,1,1,10,11],[48,4,3,11,14]]],[1,6,6,14,20,[[52,1,1,14,15],[53,1,1,15,16],[58,1,1,16,17],[72,2,2,17,19],[81,1,1,19,20]]],[2,4,4,20,24,[[112,1,1,20,21],[114,2,2,21,23],[115,1,1,23,24]]],[3,18,16,24,40,[[126,1,1,24,25],[127,6,5,25,30],[128,2,2,30,32],[135,2,2,32,34],[136,2,2,34,36],[137,2,2,36,38],[143,2,1,38,39],[147,1,1,39,40]]],[4,7,6,40,46,[[163,1,1,40,41],[168,1,1,41,42],[174,1,1,42,43],[180,1,1,43,44],[184,2,1,44,45],[185,1,1,45,46]]],[5,6,6,46,52,[[188,1,1,46,47],[192,2,2,47,49],[196,1,1,49,50],[206,1,1,50,51],[210,1,1,51,52]]],[6,12,12,52,64,[[212,1,1,52,53],[213,1,1,53,54],[216,1,1,54,55],[219,1,1,55,56],[220,1,1,56,57],[221,1,1,57,58],[226,1,1,58,59],[228,1,1,59,60],[229,2,2,60,62],[230,2,2,62,64]]],[7,1,1,64,65,[[233,1,1,64,65]]],[8,10,9,65,74,[[240,2,2,65,67],[248,2,2,67,69],[249,2,2,69,71],[250,1,1,71,72],[252,3,2,72,74]]],[9,13,12,74,86,[[272,1,1,74,75],[276,2,2,75,77],[277,1,1,77,78],[278,2,2,78,80],[280,1,1,80,81],[283,3,2,81,83],[287,1,1,83,84],[289,2,2,84,86]]],[10,1,1,86,87,[[300,1,1,86,87]]],[11,8,7,87,94,[[317,4,4,87,91],[334,3,2,91,93],[335,1,1,93,94]]],[12,5,5,94,99,[[348,1,1,94,95],[352,1,1,95,96],[356,2,2,96,98],[360,1,1,98,99]]],[13,13,12,99,111,[[367,1,1,99,100],[378,1,1,100,101],[390,1,1,101,102],[394,1,1,102,103],[395,3,3,103,106],[396,2,2,106,108],[400,4,3,108,111]]],[14,2,2,111,113,[[405,1,1,111,112],[411,1,1,112,113]]],[15,4,4,113,117,[[420,2,2,113,115],[421,1,1,115,116],[424,1,1,116,117]]],[17,3,3,117,120,[[462,1,1,117,118],[469,1,1,118,119],[474,1,1,119,120]]],[18,10,9,120,129,[[503,1,1,120,121],[504,1,1,121,122],[512,2,1,122,123],[516,1,1,123,124],[524,1,1,124,125],[527,1,1,125,126],[562,1,1,126,127],[581,2,2,127,129]]],[19,2,2,129,131,[[654,1,1,129,130],[657,1,1,130,131]]],[20,1,1,131,132,[[660,1,1,131,132]]],[22,17,15,132,147,[[682,1,1,132,133],[688,2,1,133,134],[689,1,1,134,135],[691,1,1,135,136],[694,1,1,136,137],[695,1,1,137,138],[702,1,1,138,139],[711,1,1,139,140],[721,1,1,140,141],[727,1,1,141,142],[730,1,1,142,143],[735,2,1,143,144],[736,1,1,144,145],[738,1,1,145,146],[740,1,1,146,147]]],[23,13,13,147,160,[[748,1,1,147,148],[752,2,2,148,150],[753,1,1,150,151],[754,1,1,151,152],[756,1,1,152,153],[760,1,1,153,154],[765,1,1,154,155],[769,1,1,155,156],[784,2,2,156,158],[791,1,1,158,159],[792,1,1,159,160]]],[25,6,6,160,166,[[812,1,1,160,161],[825,1,1,161,162],[830,1,1,162,163],[835,1,1,163,164],[839,1,1,164,165],[840,1,1,165,166]]],[26,1,1,166,167,[[860,1,1,166,167]]],[27,2,2,167,169,[[865,1,1,167,168],[871,1,1,168,169]]],[28,5,4,169,173,[[876,1,1,169,170],[877,3,2,170,172],[878,1,1,172,173]]],[29,1,1,173,174,[[881,1,1,173,174]]],[32,4,3,174,177,[[894,2,1,174,175],[896,2,2,175,177]]],[34,3,3,177,180,[[903,2,2,177,179],[904,1,1,179,180]]],[35,3,3,180,183,[[906,1,1,180,181],[908,2,2,181,183]]],[37,3,3,183,186,[[922,1,1,183,184],[924,2,2,184,186]]]],[158,666,675,798,802,803,817,853,1010,1040,1269,1474,1502,1506,1595,1630,1761,2154,2160,2464,3441,3472,3489,3549,4013,4040,4046,4048,4054,4056,4073,4074,4298,4299,4335,4337,4356,4363,4567,4666,5222,5355,5472,5649,5808,5815,5887,5958,5962,6069,6376,6477,6555,6581,6687,6760,6828,6849,6972,7018,7039,7042,7065,7068,7156,7327,7330,7490,7496,7527,7560,7566,7619,7620,8158,8255,8257,8286,8314,8315,8370,8460,8462,8593,8662,8664,9105,9650,9653,9654,9658,10149,10165,10166,10686,10795,10914,10924,10985,11208,11442,11688,11788,11795,11806,11811,11830,11840,11942,11961,11962,12098,12241,12494,12506,12512,12652,13500,13697,13846,14282,14295,14425,14518,14634,14673,15274,15593,15600,17194,17255,17359,17734,17864,17896,17910,17979,17988,18117,18283,18514,18641,18708,18766,18794,18841,18863,19032,19155,19167,19197,19218,19258,19341,19444,19567,19951,19953,20079,20113,20672,21060,21188,21342,21437,21465,22046,22136,22235,22305,22321,22327,22358,22404,22607,22626,22631,22740,22746,22753,22789,22828,22838,23048,23070,23082]]],["+",[39,38,[[0,3,3,0,3,[[28,1,1,0,1],[29,1,1,1,2],[41,1,1,2,3]]],[1,4,4,3,7,[[52,1,1,3,4],[53,1,1,4,5],[72,2,2,5,7]]],[2,3,3,7,10,[[112,1,1,7,8],[114,2,2,8,10]]],[3,5,5,10,15,[[127,1,1,10,11],[135,2,2,11,13],[137,2,2,13,15]]],[4,1,1,15,16,[[180,1,1,15,16]]],[5,1,1,16,17,[[210,1,1,16,17]]],[6,1,1,17,18,[[221,1,1,17,18]]],[8,3,3,18,21,[[240,2,2,18,20],[252,1,1,20,21]]],[9,5,5,21,26,[[272,1,1,21,22],[276,1,1,22,23],[278,2,2,23,25],[287,1,1,25,26]]],[12,3,3,26,29,[[352,1,1,26,27],[356,1,1,27,28],[360,1,1,28,29]]],[13,4,4,29,33,[[394,1,1,29,30],[395,2,2,30,32],[400,1,1,32,33]]],[18,1,1,33,34,[[527,1,1,33,34]]],[23,1,1,34,35,[[760,1,1,34,35]]],[32,2,1,35,36,[[894,2,1,35,36]]],[35,1,1,36,37,[[906,1,1,36,37]]],[37,1,1,37,38,[[924,1,1,37,38]]]],[817,853,1269,1595,1630,2154,2160,3441,3472,3489,4056,4298,4299,4356,4363,5649,6477,6849,7327,7330,7619,8158,8257,8314,8315,8593,10795,10924,10985,11788,11806,11811,11962,14673,19341,22607,22789,23070]]],["Gather",[4,4,[[3,1,1,0,1,[[127,1,1,0,1]]],[18,1,1,1,2,[[503,1,1,1,2]]],[25,1,1,2,3,[[825,1,1,2,3]]],[28,1,1,3,4,[[877,1,1,3,4]]]],[4040,14282,21060,22327]]],["Withdraw",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7527]]],["assemble",[6,6,[[22,1,1,0,1,[[689,1,1,0,1]]],[23,2,2,1,3,[[756,1,1,1,2],[765,1,1,2,3]]],[25,1,1,3,4,[[812,1,1,3,4]]],[26,1,1,4,5,[[860,1,1,4,5]]],[32,1,1,5,6,[[896,1,1,5,6]]]],[17896,19258,19444,20672,22046,22626]]],["assembled",[4,4,[[13,1,1,0,1,[[396,1,1,0,1]]],[14,1,1,1,2,[[411,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[22,1,1,3,4,[[721,1,1,3,4]]]],[11840,12241,12512,18514]]],["away",[6,5,[[18,2,2,0,2,[[562,1,1,0,1],[581,1,1,1,2]]],[22,3,2,2,4,[[694,1,1,2,3],[735,2,1,3,4]]],[27,1,1,4,5,[[865,1,1,4,5]]]],[15274,15600,17979,18766,22136]]],["bring",[2,2,[[4,1,1,0,1,[[174,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]]],[5472,5887]]],["brought",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1761]]],["consumed",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21342]]],["destroy",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7566]]],["fetched",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8286]]],["gat",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4054]]],["gather",[16,16,[[0,1,1,0,1,[[5,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[11,1,1,2,3,[[334,1,1,2,3]]],[13,1,1,3,4,[[400,1,1,3,4]]],[17,2,2,4,6,[[469,1,1,4,5],[474,1,1,5,6]]],[18,1,1,6,7,[[516,1,1,6,7]]],[20,1,1,7,8,[[660,1,1,7,8]]],[23,2,2,8,10,[[753,1,1,8,9],[784,1,1,9,10]]],[28,2,2,10,12,[[876,1,1,10,11],[877,1,1,11,12]]],[34,2,2,12,14,[[903,2,2,12,14]]],[35,2,2,14,16,[[908,2,2,14,16]]]],[158,7156,10165,11961,13697,13846,14518,17359,19197,19951,22305,22327,22740,22746,22828,22838]]],["gathered",[42,40,[[0,6,6,0,6,[[24,2,2,0,2],[28,1,1,2,3],[34,1,1,3,4],[48,2,2,4,6]]],[3,7,6,6,12,[[127,2,2,6,8],[136,2,2,8,10],[143,2,1,10,11],[147,1,1,11,12]]],[4,4,3,12,15,[[168,1,1,12,13],[184,2,1,13,14],[185,1,1,14,15]]],[6,4,4,15,19,[[212,1,1,15,16],[213,1,1,16,17],[216,1,1,17,18],[230,1,1,18,19]]],[9,1,1,19,20,[[283,1,1,19,20]]],[11,3,3,20,23,[[334,2,2,20,22],[335,1,1,22,23]]],[13,4,4,23,27,[[367,1,1,23,24],[390,1,1,24,25],[400,2,2,25,27]]],[17,1,1,27,28,[[462,1,1,27,28]]],[19,2,2,28,30,[[654,1,1,28,29],[657,1,1,29,30]]],[22,4,4,30,34,[[688,1,1,30,31],[711,1,1,31,32],[727,1,1,32,33],[740,1,1,33,34]]],[23,3,3,34,37,[[752,1,1,34,35],[769,1,1,35,36],[784,1,1,36,37]]],[25,1,1,37,38,[[839,1,1,37,38]]],[27,1,1,38,39,[[871,1,1,38,39]]],[32,1,1,39,40,[[896,1,1,39,40]]]],[666,675,798,1040,1502,1506,4048,4056,4335,4337,4567,4666,5355,5808,5815,6555,6581,6687,7065,8460,10149,10165,10166,11208,11688,11942,11961,13500,17194,17255,17864,18283,18641,18863,19155,19567,19953,21437,22235,22631]]],["gathereth",[3,3,[[22,2,2,0,2,[[688,1,1,0,1],[695,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[17864,17988,22753]]],["generally",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8460]]],["gotten",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8462]]],["in",[3,3,[[3,2,2,0,2,[[128,2,2,0,2]]],[4,1,1,2,3,[[163,1,1,2,3]]]],[4073,4074,5222]]],["itself",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18841]]],["lose",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7018]]],["receiveth",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7042]]],["recover",[4,4,[[11,4,4,0,4,[[317,4,4,0,4]]]],[9650,9653,9654,9658]]],["rereward",[5,5,[[3,1,1,0,1,[[126,1,1,0,1]]],[5,2,2,1,3,[[192,2,2,1,3]]],[22,2,2,3,5,[[730,1,1,3,4],[736,1,1,4,5]]]],[4013,5958,5962,18708,18794]]],["take",[2,2,[[5,1,1,0,1,[[206,1,1,0,1]]],[22,1,1,1,2,[[682,1,1,1,2]]]],[6376,17734]]],["taken",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20113]]],["themselves",[1,1,[[9,1,1,0,1,[[276,1,1,0,1]]]],[8255]]],["thyself",[1,1,[[23,1,1,0,1,[[791,1,1,0,1]]]],[20079]]],["together",[37,36,[[0,4,4,0,4,[[28,2,2,0,2],[33,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[81,1,1,4,5]]],[2,1,1,5,6,[[115,1,1,5,6]]],[3,1,1,6,7,[[127,1,1,6,7]]],[5,1,1,7,8,[[196,1,1,7,8]]],[6,4,4,8,12,[[219,1,1,8,9],[220,1,1,9,10],[226,1,1,10,11],[230,1,1,11,12]]],[8,4,4,12,16,[[248,2,2,12,14],[252,2,2,14,16]]],[9,2,2,16,18,[[289,2,2,16,18]]],[10,1,1,18,19,[[300,1,1,18,19]]],[12,2,2,19,21,[[348,1,1,19,20],[356,1,1,20,21]]],[13,3,3,21,24,[[378,1,1,21,22],[395,1,1,22,23],[396,1,1,23,24]]],[14,1,1,24,25,[[405,1,1,24,25]]],[15,3,3,25,28,[[420,2,2,25,27],[424,1,1,27,28]]],[18,4,3,28,31,[[512,2,1,28,29],[524,1,1,29,30],[581,1,1,30,31]]],[22,2,2,31,33,[[691,1,1,31,32],[702,1,1,32,33]]],[25,1,1,33,34,[[830,1,1,33,34]]],[37,2,2,34,36,[[922,1,1,34,35],[924,1,1,35,36]]]],[802,803,1010,1474,2464,3549,4046,6069,6760,6828,6972,7068,7490,7496,7619,7620,8662,8664,9105,10686,10914,11442,11795,11830,12098,12494,12506,12652,14425,14634,15593,17910,18117,21188,23048,23082]]],["took",[2,2,[[6,1,1,0,1,[[229,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]]],[7039,7560]]],["up",[4,4,[[0,1,1,0,1,[[48,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]],[18,1,1,2,3,[[504,1,1,2,3]]],[23,1,1,3,4,[[754,1,1,3,4]]]],[1506,8370,14295,19218]]],["withdraw",[2,2,[[28,2,2,0,2,[[877,1,1,0,1],[878,1,1,1,2]]]],[22321,22358]]],["yourselves",[4,4,[[23,2,2,0,2,[[748,1,1,0,1],[752,1,1,1,2]]],[25,1,1,2,3,[[840,1,1,2,3]]],[29,1,1,3,4,[[881,1,1,3,4]]]],[19032,19167,21465,22404]]]]},{"k":"H623","v":[["*",[34,29,[[11,2,2,0,2,[[330,2,2,0,2]]],[12,16,12,2,14,[[343,2,1,2,3],[346,1,1,3,4],[352,2,2,4,6],[353,4,3,6,9],[362,6,4,9,13],[363,1,1,13,14]]],[13,6,5,14,19,[[371,1,1,14,15],[386,1,1,15,16],[395,2,2,16,18],[401,2,1,18,19]]],[14,2,2,19,21,[[404,1,1,19,20],[405,1,1,20,21]]],[15,6,6,21,27,[[414,1,1,21,22],[419,1,1,22,23],[423,2,2,23,25],[424,2,2,25,27]]],[22,2,2,27,29,[[714,2,2,27,29]]]],[10042,10061,10493,10630,10808,10810,10825,10827,10857,11047,11048,11052,11055,11078,11280,11601,11804,11821,11981,12068,12107,12315,12464,12605,12610,12659,12670,18333,18352]]],["Asaph",[33,28,[[11,2,2,0,2,[[330,2,2,0,2]]],[12,16,12,2,14,[[343,2,1,2,3],[346,1,1,3,4],[352,2,2,4,6],[353,4,3,6,9],[362,6,4,9,13],[363,1,1,13,14]]],[13,6,5,14,19,[[371,1,1,14,15],[386,1,1,15,16],[395,2,2,16,18],[401,2,1,18,19]]],[14,2,2,19,21,[[404,1,1,19,20],[405,1,1,20,21]]],[15,6,6,21,27,[[414,1,1,21,22],[419,1,1,22,23],[423,2,2,23,25],[424,2,2,25,27]]],[22,1,1,27,28,[[714,1,1,27,28]]]],[10042,10061,10493,10630,10808,10810,10825,10827,10857,11047,11048,11052,11055,11078,11280,11601,11804,11821,11981,12068,12107,12315,12464,12605,12610,12659,12670,18352]]],["Asaph's",[1,1,[[22,1,1,0,1,[[714,1,1,0,1]]]],[18333]]]]},{"k":"H624","v":[["*",[3,3,[[12,2,2,0,2,[[363,2,2,0,2]]],[15,1,1,2,3,[[424,1,1,2,3]]]],[11092,11094,12649]]],["Asuppim",[2,2,[[12,2,2,0,2,[[363,2,2,0,2]]]],[11092,11094]]],["thresholds",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12649]]]]},{"k":"H625","v":[["*",[3,3,[[22,2,2,0,2,[[710,1,1,0,1],[711,1,1,1,2]]],[32,1,1,2,3,[[899,1,1,2,3]]]],[18269,18283,22665]]],["gathered",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22665]]],["gathering",[2,2,[[22,2,2,0,2,[[710,1,1,0,1],[711,1,1,1,2]]]],[18269,18283]]]]},{"k":"H626","v":[["gathered",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18117]]]]},{"k":"H627","v":[["assemblies",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17534]]]]},{"k":"H628","v":[["multitude",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4028]]]]},{"k":"H629","v":[["*",[7,7,[[14,7,7,0,7,[[407,1,1,0,1],[408,3,3,1,4],[409,3,3,4,7]]]],[12142,12159,12163,12164,12190,12194,12199]]],["forthwith",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12159]]],["on",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12142]]],["speed",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12163]]],["speedily",[4,4,[[14,4,4,0,4,[[408,1,1,0,1],[409,3,3,1,4]]]],[12164,12190,12194,12199]]]]},{"k":"H630","v":[["Aspatha",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12841]]]]},{"k":"H631","v":[["*",[70,63,[[0,8,8,0,8,[[38,1,1,0,1],[39,2,2,1,3],[41,3,3,3,6],[45,1,1,6,7],[48,1,1,7,8]]],[1,1,1,8,9,[[63,1,1,8,9]]],[3,11,10,9,19,[[146,11,10,9,19]]],[6,15,12,19,31,[[225,5,3,19,22],[226,10,9,22,31]]],[8,2,2,31,33,[[241,2,2,31,33]]],[9,1,1,33,34,[[269,1,1,33,34]]],[10,2,2,34,36,[[308,1,1,34,35],[310,1,1,35,36]]],[11,7,5,36,41,[[319,2,1,36,37],[321,2,1,37,38],[329,1,1,38,39],[335,1,1,39,40],[337,1,1,40,41]]],[13,3,3,41,44,[[379,1,1,41,42],[399,1,1,42,43],[402,1,1,43,44]]],[15,1,1,44,45,[[416,1,1,44,45]]],[17,3,3,45,48,[[447,1,1,45,46],[471,2,2,46,48]]],[18,4,4,48,52,[[582,1,1,48,49],[595,1,1,49,50],[623,1,1,50,51],[626,1,1,51,52]]],[20,1,1,52,53,[[662,1,1,52,53]]],[21,1,1,53,54,[[677,1,1,53,54]]],[22,4,3,54,57,[[700,2,1,54,55],[727,1,1,55,56],[739,1,1,56,57]]],[23,4,4,57,61,[[783,1,1,57,58],[784,1,1,58,59],[790,1,1,59,60],[796,1,1,60,61]]],[25,1,1,61,62,[[804,1,1,61,62]]],[27,1,1,62,63,[[871,1,1,62,63]]]],[1169,1175,1177,1268,1271,1276,1415,1484,1895,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,6939,6941,6942,6954,6955,6956,6957,6959,6960,6961,6962,6970,7338,7341,8115,9385,9422,9717,9777,9987,10198,10229,11456,11919,11999,12377,13146,13744,13749,15628,15896,16348,16393,17395,17632,18055,18645,18844,19930,19942,20049,20287,20527,22235]]],["+",[19,16,[[1,1,1,0,1,[[63,1,1,0,1]]],[3,10,9,1,10,[[146,10,9,1,10]]],[6,5,3,10,13,[[225,3,2,10,12],[226,2,1,12,13]]],[8,1,1,13,14,[[241,1,1,13,14]]],[13,1,1,14,15,[[379,1,1,14,15]]],[20,1,1,15,16,[[662,1,1,15,16]]]],[1895,4650,4652,4653,4654,4655,4656,4657,4658,4659,6939,6942,6960,7338,11456,17395]]],["Binding",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1484]]],["Harness",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20049]]],["Prepare",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9385]]],["bands",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10198]]],["bind",[9,9,[[3,1,1,0,1,[[146,1,1,0,1]]],[6,3,3,1,4,[[225,1,1,1,2],[226,2,2,2,4]]],[18,3,3,4,7,[[582,1,1,4,5],[595,1,1,5,6],[626,1,1,6,7]]],[25,1,1,7,8,[[804,1,1,7,8]]],[27,1,1,8,9,[[871,1,1,8,9]]]],[4651,6941,6954,6956,15628,15896,16393,20527,22235]]],["bindeth",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13749]]],["bound",[24,23,[[0,5,5,0,5,[[38,1,1,0,1],[39,2,2,1,3],[41,2,2,3,5]]],[6,7,7,5,12,[[225,1,1,5,6],[226,6,6,6,12]]],[9,1,1,12,13,[[269,1,1,12,13]]],[11,2,2,13,15,[[329,1,1,13,14],[337,1,1,14,15]]],[13,2,2,15,17,[[399,1,1,15,16],[402,1,1,16,17]]],[17,1,1,17,18,[[471,1,1,17,18]]],[22,3,2,18,20,[[700,2,1,18,19],[739,1,1,19,20]]],[23,3,3,20,23,[[783,1,1,20,21],[784,1,1,21,22],[796,1,1,22,23]]]],[1169,1175,1177,1271,1276,6942,6955,6957,6959,6961,6962,6970,8115,9987,10229,11919,11999,13744,18055,18844,19930,19942,20287]]],["girded",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12377]]],["girdeth",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13146]]],["held",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17632]]],["order",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9422]]],["prison",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1268]]],["prisoners",[2,2,[[18,1,1,0,1,[[623,1,1,0,1]]],[22,1,1,1,2,[[727,1,1,1,2]]]],[16348,18645]]],["ready",[3,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[11,2,1,1,2,[[321,2,1,1,2]]]],[1415,9777]]],["tied",[3,2,[[8,1,1,0,1,[[241,1,1,0,1]]],[11,2,1,1,2,[[319,2,1,1,2]]]],[7341,9717]]]]},{"k":"H632","v":[["*",[11,10,[[3,11,10,0,10,[[146,11,10,0,10]]]],[4650,4651,4652,4653,4655,4658,4659,4660,4661,4662]]],["binding",[1,1,[[3,1,1,0,1,[[146,1,1,0,1]]]],[4661]]],["bond",[7,6,[[3,7,6,0,6,[[146,7,6,0,6]]]],[4650,4651,4652,4658,4659,4660]]],["bonds",[3,3,[[3,3,3,0,3,[[146,3,3,0,3]]]],[4653,4655,4662]]]]},{"k":"H633","v":[["decree",[7,6,[[26,7,6,0,6,[[855,7,6,0,6]]]],[21912,21913,21914,21917,21918,21920]]]]},{"k":"H634","v":[["Esarhaddon",[3,3,[[11,1,1,0,1,[[331,1,1,0,1]]],[14,1,1,1,2,[[406,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]]],[10098,12112,18390]]]]},{"k":"H635","v":[["*",[55,45,[[16,55,45,0,45,[[427,13,10,0,10],[429,9,9,10,19],[430,11,8,19,27],[431,1,1,27,28],[432,8,7,28,35],[433,8,5,35,40],[434,5,5,40,45]]]],[12731,12732,12734,12735,12739,12740,12741,12742,12744,12746,12766,12767,12770,12771,12772,12774,12775,12777,12779,12780,12781,12782,12783,12784,12785,12786,12791,12807,12808,12809,12810,12812,12813,12814,12815,12818,12819,12820,12821,12824,12846,12847,12863,12865,12866]]],["+",[3,3,[[16,3,3,0,3,[[429,1,1,0,1],[430,1,1,1,2],[432,1,1,2,3]]]],[12771,12781,12814]]],["Esther",[49,40,[[16,49,40,0,40,[[427,12,9,0,9],[429,6,6,9,15],[430,10,8,15,23],[431,1,1,23,24],[432,7,6,24,30],[433,8,5,30,35],[434,5,5,35,40]]]],[12731,12732,12734,12735,12739,12740,12741,12744,12746,12767,12770,12772,12775,12777,12779,12780,12781,12782,12783,12784,12785,12786,12791,12807,12808,12809,12810,12812,12813,12815,12818,12819,12820,12821,12824,12846,12847,12863,12865,12866]]],["Esther's",[3,3,[[16,3,3,0,3,[[427,1,1,0,1],[429,2,2,1,3]]]],[12742,12766,12774]]]]},{"k":"H636","v":[["*",[5,5,[[14,3,3,0,3,[[407,1,1,0,1],[408,2,2,1,3]]],[26,2,2,3,5,[[854,2,2,3,5]]]],[12142,12155,12162,21878,21897]]],["timber",[3,3,[[14,3,3,0,3,[[407,1,1,0,1],[408,2,2,1,3]]]],[12142,12155,12162]]],["wood",[2,2,[[26,2,2,0,2,[[854,2,2,0,2]]]],[21878,21897]]]]},{"k":"H637","v":[["*",[134,123,[[0,5,5,0,5,[[2,1,1,0,1],[17,3,3,1,4],[39,1,1,4,5]]],[2,9,8,5,13,[[115,9,8,5,13]]],[3,1,1,13,14,[[132,1,1,13,14]]],[4,7,7,14,21,[[154,2,2,14,16],[167,1,1,16,17],[183,1,1,17,18],[185,3,3,18,21]]],[6,1,1,21,22,[[215,1,1,21,22]]],[8,4,4,22,26,[[237,1,1,22,23],[249,1,1,23,24],[256,1,1,24,25],[258,1,1,25,26]]],[9,3,3,26,29,[[270,1,1,26,27],[282,1,1,27,28],[286,1,1,28,29]]],[10,1,1,29,30,[[298,1,1,29,30]]],[11,2,2,30,32,[[314,1,1,30,31],[317,1,1,31,32]]],[12,3,3,32,35,[[345,1,1,32,33],[346,1,1,33,34],[353,1,1,34,35]]],[13,3,3,35,38,[[372,1,1,35,36],[378,1,1,36,37],[398,1,1,37,38]]],[15,3,3,38,41,[[414,1,1,38,39],[421,1,1,39,40],[425,1,1,40,41]]],[16,1,1,41,42,[[430,1,1,41,42]]],[17,20,19,42,61,[[439,1,1,42,43],[441,1,1,43,44],[444,1,1,44,45],[449,1,1,45,46],[450,2,2,46,48],[454,1,1,48,49],[460,1,1,49,50],[467,3,2,50,52],[469,2,2,52,54],[470,1,1,54,55],[471,3,3,55,58],[472,2,2,58,60],[475,1,1,60,61]]],[18,23,23,61,84,[[493,3,3,61,64],[495,1,1,64,65],[521,1,1,65,66],[535,1,1,66,67],[542,1,1,67,68],[545,3,3,68,71],[551,1,1,71,72],[554,2,2,72,74],[566,5,5,74,79],[570,1,1,79,80],[573,1,1,80,81],[585,1,1,81,82],[596,1,1,82,83],[612,1,1,83,84]]],[19,9,9,84,93,[[636,1,1,84,85],[638,1,1,85,86],[642,1,1,86,87],[644,1,1,87,88],[646,2,2,88,90],[648,1,1,90,91],[649,1,1,91,92],[650,1,1,92,93]]],[20,1,1,93,94,[[660,1,1,93,94]]],[21,2,1,94,95,[[671,2,1,94,95]]],[22,30,22,95,117,[[704,3,3,95,98],[711,1,1,98,99],[713,1,1,99,100],[718,3,1,100,101],[719,6,3,101,104],[720,1,1,104,105],[721,2,2,105,107],[722,4,3,107,110],[723,1,1,110,111],[724,5,3,111,114],[726,3,3,114,117]]],[25,3,3,117,120,[[815,1,1,117,118],[816,1,1,118,119],[824,1,1,119,120]]],[29,1,1,120,121,[[880,1,1,120,121]]],[34,2,2,121,123,[[904,2,2,121,123]]]],[56,437,447,448,1188,3540,3548,3552,3563,3564,3565,3566,3568,4208,4949,4958,5336,5755,5813,5830,5838,6652,7247,7538,7777,7813,8131,8437,8568,9012,9565,9660,10607,10653,10850,11300,11442,11890,12325,12529,12686,12791,12949,13005,13065,13184,13207,13219,13301,13467,13638,13645,13695,13700,13734,13752,13765,13769,13770,13780,13872,14098,14099,14101,14166,14580,14781,14873,14908,14916,14918,15064,15109,15110,15331,15337,15347,15353,15369,15427,15475,15743,15901,16192,16640,16719,16818,16880,16932,16935,17011,17034,17072,17342,17553,18138,18139,18141,18281,18322,18444,18461,18474,18477,18493,18512,18524,18548,18549,18552,18582,18592,18593,18597,18626,18627,18629,20752,20759,21047,22390,22753,22763]]],["+",[19,18,[[0,2,2,0,2,[[2,1,1,0,1],[17,1,1,1,2]]],[2,2,1,2,3,[[115,2,1,2,3]]],[8,1,1,3,4,[[249,1,1,3,4]]],[9,1,1,4,5,[[282,1,1,4,5]]],[10,1,1,5,6,[[298,1,1,5,6]]],[13,1,1,6,7,[[398,1,1,6,7]]],[17,5,5,7,12,[[444,1,1,7,8],[450,1,1,8,9],[460,1,1,9,10],[470,1,1,10,11],[471,1,1,11,12]]],[18,1,1,12,13,[[612,1,1,12,13]]],[19,5,5,13,18,[[638,1,1,13,14],[642,1,1,14,15],[644,1,1,15,16],[646,1,1,16,17],[648,1,1,17,18]]]],[56,437,3566,7538,8437,9012,11890,13065,13219,13467,13734,13765,16192,16719,16818,16880,16932,17011]]],["Also",[2,2,[[17,1,1,0,1,[[472,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]]],[13780,15353]]],["And",[2,2,[[17,2,2,0,2,[[449,1,1,0,1],[454,1,1,1,2]]]],[13184,13301]]],["But",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14580]]],["Moreover",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4208]]],["Yea",[9,9,[[4,1,1,0,1,[[185,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[17,3,3,2,5,[[441,1,1,2,3],[450,1,1,3,4],[469,1,1,4,5]]],[18,1,1,5,6,[[535,1,1,5,6]]],[22,2,2,6,8,[[704,1,1,6,7],[718,1,1,7,8]]],[34,1,1,8,9,[[904,1,1,8,9]]]],[5813,12529,13005,13207,13695,14781,18138,18444,22753]]],["also",[51,49,[[0,3,3,0,3,[[17,2,2,0,2],[39,1,1,2,3]]],[2,5,5,3,8,[[115,5,5,3,8]]],[4,4,4,8,12,[[154,2,2,8,10],[167,1,1,10,11],[185,1,1,11,12]]],[9,1,1,12,13,[[286,1,1,12,13]]],[11,1,1,13,14,[[314,1,1,13,14]]],[12,3,3,14,17,[[345,1,1,14,15],[346,1,1,15,16],[353,1,1,16,17]]],[13,1,1,17,18,[[378,1,1,17,18]]],[15,2,2,18,20,[[414,1,1,18,19],[425,1,1,19,20]]],[17,6,5,20,25,[[467,3,2,20,22],[471,1,1,22,23],[472,1,1,23,24],[475,1,1,24,25]]],[18,15,15,25,40,[[493,2,2,25,27],[542,1,1,27,28],[545,2,2,28,30],[551,1,1,30,31],[554,2,2,31,33],[566,4,4,33,37],[570,1,1,37,38],[573,1,1,38,39],[596,1,1,39,40]]],[19,2,2,40,42,[[636,1,1,40,41],[650,1,1,41,42]]],[20,1,1,42,43,[[660,1,1,42,43]]],[21,1,1,43,44,[[671,1,1,43,44]]],[22,5,4,44,48,[[711,1,1,44,45],[724,2,1,45,46],[726,2,2,46,48]]],[34,1,1,48,49,[[904,1,1,48,49]]]],[447,448,1188,3540,3548,3563,3564,3565,4949,4958,5336,5838,8568,9565,10607,10653,10850,11442,12325,12686,13638,13645,13769,13770,13872,14099,14101,14873,14908,14918,15064,15109,15110,15331,15337,15347,15369,15427,15475,15901,16640,17072,17342,17553,18281,18597,18626,18627,22763]]],["and",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7247]]],["even",[7,7,[[2,1,1,0,1,[[115,1,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[18,1,1,2,3,[[585,1,1,2,3]]],[19,1,1,3,4,[[649,1,1,3,4]]],[22,2,2,4,6,[[713,1,1,4,5],[721,1,1,5,6]]],[29,1,1,6,7,[[880,1,1,6,7]]]],[3552,13700,15743,17034,18322,18524,22390]]],["furthermore",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21047]]],["less",[4,4,[[13,1,1,0,1,[[372,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]],[19,1,1,2,3,[[646,1,1,2,3]]],[25,1,1,3,4,[[816,1,1,3,4]]]],[11300,12949,16935,20759]]],["more",[3,3,[[4,1,1,0,1,[[183,1,1,0,1]]],[9,1,1,1,2,[[270,1,1,1,2]]],[25,1,1,2,3,[[815,1,1,2,3]]]],[5755,8131,20752]]],["moreover",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12791]]],["much",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7813]]],["rather",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9660]]],["so",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13752]]],["with",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5830]]],["yea",[27,22,[[6,1,1,0,1,[[215,1,1,0,1]]],[8,1,1,1,2,[[256,1,1,1,2]]],[18,3,3,2,5,[[493,1,1,2,3],[495,1,1,3,4],[545,1,1,4,5]]],[21,1,1,5,6,[[671,1,1,5,6]]],[22,21,16,6,22,[[704,2,2,6,8],[718,2,1,8,9],[719,6,3,9,12],[720,1,1,12,13],[721,1,1,13,14],[722,4,3,14,17],[723,1,1,17,18],[724,3,3,18,21],[726,1,1,21,22]]]],[6652,7777,14098,14166,14916,17553,18139,18141,18444,18461,18474,18477,18493,18512,18548,18549,18552,18582,18592,18593,18597,18629]]],["yet",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3568]]]]},{"k":"H638","v":[["also",[4,4,[[14,3,3,0,3,[[407,2,2,0,2],[408,1,1,2,3]]],[26,1,1,3,4,[[855,1,1,3,4]]]],[12144,12148,12156,21927]]]]},{"k":"H639","v":[["*",[276,269,[[0,13,13,0,13,[[1,1,1,0,1],[2,1,1,1,2],[6,1,1,2,3],[18,1,1,3,4],[23,1,1,4,5],[26,1,1,5,6],[29,1,1,6,7],[38,1,1,7,8],[41,1,1,8,9],[43,1,1,9,10],[47,1,1,10,11],[48,2,2,11,13]]],[1,10,10,13,23,[[53,1,1,13,14],[60,1,1,14,15],[64,1,1,15,16],[71,1,1,16,17],[81,5,5,17,22],[83,1,1,22,23]]],[3,15,15,23,38,[[127,4,4,23,27],[128,1,1,27,28],[130,1,1,28,29],[138,3,3,29,32],[140,1,1,32,33],[141,2,2,33,35],[148,3,3,35,38]]],[4,13,13,38,51,[[158,1,1,38,39],[159,1,1,39,40],[161,1,1,40,41],[163,1,1,41,42],[165,1,1,42,43],[181,5,5,43,48],[183,1,1,48,49],[184,1,1,49,50],[185,1,1,50,51]]],[5,3,3,51,54,[[193,2,2,51,53],[209,1,1,53,54]]],[6,7,7,54,61,[[212,2,2,54,56],[213,1,1,56,57],[216,1,1,57,58],[219,1,1,58,59],[220,1,1,59,60],[224,1,1,60,61]]],[8,11,11,61,72,[[236,1,1,61,62],[246,1,1,62,63],[252,1,1,63,64],[255,3,3,64,67],[259,1,1,67,68],[260,2,2,68,70],[263,2,2,70,72]]],[9,9,9,72,81,[[272,1,1,72,73],[278,1,1,73,74],[280,2,2,74,76],[284,1,1,76,77],[288,2,2,77,79],[290,2,2,79,81]]],[10,2,2,81,83,[[291,2,2,81,83]]],[11,5,4,83,87,[[325,1,1,83,84],[331,1,1,84,85],[335,2,1,85,86],[336,1,1,86,87]]],[12,2,2,87,89,[[350,1,1,87,88],[358,1,1,88,89]]],[13,10,9,89,98,[[373,1,1,89,90],[378,1,1,90,91],[386,1,1,91,92],[391,3,2,92,94],[394,2,2,94,96],[395,1,1,96,97],[396,1,1,97,98]]],[14,2,2,98,100,[[410,1,1,98,99],[412,1,1,99,100]]],[15,2,2,100,102,[[420,1,1,100,101],[421,1,1,101,102]]],[17,21,20,102,122,[[439,1,1,102,103],[444,2,2,103,105],[449,1,1,105,106],[451,1,1,106,107],[453,1,1,107,108],[454,1,1,108,109],[455,2,2,109,111],[456,1,1,111,112],[462,1,1,112,113],[467,4,3,113,116],[470,1,1,116,117],[471,1,1,117,118],[475,2,2,118,120],[476,1,1,120,121],[477,1,1,121,122]]],[18,35,35,122,157,[[479,2,2,122,124],[483,1,1,124,125],[484,1,1,125,126],[487,1,1,126,127],[495,2,2,127,129],[498,1,1,129,130],[504,1,1,130,131],[507,1,1,131,132],[514,1,1,132,133],[532,1,1,133,134],[533,1,1,134,135],[546,1,1,135,136],[551,1,1,136,137],[553,1,1,137,138],[554,1,1,138,139],[555,5,5,139,144],[562,2,2,144,146],[563,1,1,146,147],[567,2,2,147,149],[572,1,1,149,150],[580,1,1,150,151],[583,1,1,151,152],[587,1,1,152,153],[592,1,1,153,154],[601,1,1,154,155],[615,1,1,155,156],[622,1,1,156,157]]],[19,16,15,157,172,[[638,1,1,157,158],[641,2,2,158,160],[642,2,2,160,162],[643,1,1,162,163],[646,1,1,163,164],[648,1,1,164,165],[649,1,1,165,166],[651,1,1,166,167],[652,1,1,167,168],[654,1,1,168,169],[656,2,2,169,171],[657,2,1,171,172]]],[21,2,2,172,174,[[677,2,2,172,174]]],[22,26,25,174,199,[[680,1,1,174,175],[681,1,1,175,176],[683,2,1,176,177],[685,1,1,177,178],[687,3,3,178,181],[688,3,3,181,184],[690,1,1,184,185],[691,3,3,185,188],[692,1,1,188,189],[708,2,2,189,191],[715,1,1,191,192],[720,1,1,192,193],[726,1,1,193,194],[727,1,1,194,195],[741,2,2,195,197],[743,1,1,197,198],[744,1,1,198,199]]],[23,24,24,199,223,[[746,1,1,199,200],[748,2,2,200,202],[751,1,1,202,203],[754,1,1,203,204],[756,1,1,204,205],[759,2,2,205,207],[761,1,1,207,208],[762,1,1,208,209],[765,1,1,209,210],[767,1,1,210,211],[769,2,2,211,213],[774,1,1,213,214],[776,2,2,214,216],[777,1,1,216,217],[780,1,1,217,218],[786,1,1,218,219],[788,1,1,219,220],[793,1,1,220,221],[795,1,1,221,222],[796,1,1,222,223]]],[24,11,10,223,233,[[797,1,1,223,224],[798,6,5,224,229],[799,2,2,229,231],[800,2,2,231,233]]],[25,15,15,233,248,[[806,2,2,233,235],[808,2,2,235,237],[809,1,1,237,238],[814,1,1,238,239],[817,1,1,239,240],[821,2,2,240,242],[823,1,1,242,243],[824,1,1,243,244],[826,1,1,244,245],[836,1,1,245,246],[839,1,1,246,247],[844,1,1,247,248]]],[26,2,2,248,250,[[858,1,1,248,249],[860,1,1,249,250]]],[27,4,4,250,254,[[869,1,1,250,251],[872,1,1,251,252],[874,1,1,252,253],[875,1,1,253,254]]],[28,1,1,254,255,[[877,1,1,254,255]]],[29,2,2,255,257,[[879,1,1,255,256],[882,1,1,256,257]]],[31,2,2,257,259,[[891,1,1,257,258],[892,1,1,258,259]]],[32,2,2,259,261,[[897,1,1,259,260],[899,1,1,260,261]]],[33,2,2,261,263,[[900,2,2,261,263]]],[34,2,2,263,265,[[905,2,2,263,265]]],[35,4,3,265,268,[[907,3,2,265,267],[908,1,1,267,268]]],[37,1,1,268,269,[[920,1,1,268,269]]]],[37,74,181,458,638,772,832,1168,1258,1342,1463,1479,1480,1615,1814,1928,2137,2448,2449,2450,2457,2460,2502,4025,4034,4044,4057,4068,4126,4397,4402,4406,4456,4474,4475,4728,4731,4732,5101,5115,5176,5225,5289,5699,5702,5703,5706,5707,5745,5780,5820,5977,6002,6476,6559,6565,6576,6693,6784,6818,6928,7217,7451,7646,7760,7764,7771,7847,7884,7902,7956,7960,8164,8291,8360,8389,8506,8611,8618,8693,8712,8740,8748,9874,10089,10191,10222,10770,10955,11327,11449,11605,11714,11719,11775,11777,11801,11835,12223,12266,12499,12528,12939,13056,13064,13194,13247,13280,13308,13349,13354,13372,13484,13630,13631,13633,13735,13749,13875,13888,13890,13929,13950,13957,13986,14001,14045,14126,14133,14200,14294,14324,14458,14735,14762,14959,15049,15088,15102,15134,15144,15151,15162,15163,15274,15276,15299,15385,15389,15465,15557,15691,15791,15836,16105,16238,16328,16710,16789,16801,16808,16825,16872,16936,16998,17039,17097,17128,17173,17232,17246,17284,17631,17635,17707,17728,17764,17786,17841,17846,17850,17854,17855,17875,17901,17909,17915,17919,17934,18244,18247,18381,18505,18623,18659,18869,18872,18902,18937,19000,19035,19053,19139,19225,19262,19329,19330,19361,19407,19445,19504,19571,19572,19691,19762,19768,19780,19849,19993,20016,20164,20257,20279,20322,20333,20335,20338,20353,20354,20397,20420,20431,20440,20559,20561,20580,20585,20621,20721,20774,20903,20916,20996,21032,21097,21355,21443,21580,22004,22056,22199,22249,22277,22286,22324,22375,22420,22567,22570,22648,22682,22687,22690,22776,22780,22807,22808,22828,23019]]],["+",[8,8,[[1,2,2,0,2,[[81,1,1,0,1],[83,1,1,1,2]]],[3,2,2,2,4,[[127,1,1,2,3],[130,1,1,3,4]]],[18,3,3,4,7,[[514,1,1,4,5],[555,1,1,5,6],[563,1,1,6,7]]],[23,1,1,7,8,[[759,1,1,7,8]]]],[2450,2502,4044,4126,14458,15151,15299,19330]]],["anger",[170,166,[[0,5,5,0,5,[[26,1,1,0,1],[29,1,1,1,2],[43,1,1,2,3],[48,2,2,3,5]]],[1,4,4,5,9,[[53,1,1,5,6],[60,1,1,6,7],[81,2,2,7,9]]],[3,11,11,9,20,[[127,2,2,9,11],[128,1,1,11,12],[138,2,2,12,14],[140,1,1,14,15],[141,2,2,15,17],[148,3,3,17,20]]],[4,11,11,20,31,[[158,1,1,20,21],[159,1,1,21,22],[161,1,1,22,23],[165,1,1,23,24],[181,5,5,24,29],[183,1,1,29,30],[184,1,1,30,31]]],[5,3,3,31,34,[[193,2,2,31,33],[209,1,1,33,34]]],[6,7,7,34,41,[[212,2,2,34,36],[213,1,1,36,37],[216,1,1,37,38],[219,1,1,38,39],[220,1,1,39,40],[224,1,1,40,41]]],[8,4,4,41,45,[[246,1,1,41,42],[252,1,1,42,43],[255,2,2,43,45]]],[9,3,3,45,48,[[272,1,1,45,46],[278,1,1,46,47],[290,1,1,47,48]]],[11,3,3,48,51,[[325,1,1,48,49],[335,1,1,49,50],[336,1,1,50,51]]],[12,1,1,51,52,[[350,1,1,51,52]]],[13,3,2,52,54,[[391,3,2,52,54]]],[15,1,1,54,55,[[421,1,1,54,55]]],[17,5,5,55,60,[[444,2,2,55,57],[453,1,1,57,58],[456,1,1,58,59],[470,1,1,59,60]]],[18,17,17,60,77,[[483,1,1,60,61],[484,1,1,61,62],[504,1,1,62,63],[507,1,1,63,64],[533,1,1,64,65],[546,1,1,65,66],[551,1,1,66,67],[554,1,1,67,68],[555,3,3,68,71],[562,2,2,71,73],[567,2,2,73,75],[580,1,1,75,76],[622,1,1,76,77]]],[19,6,6,77,83,[[642,2,2,77,79],[643,1,1,79,80],[646,1,1,80,81],[648,1,1,81,82],[654,1,1,82,83]]],[22,21,20,83,103,[[683,2,1,83,84],[685,1,1,84,85],[687,3,3,85,88],[688,3,3,88,91],[690,1,1,91,92],[691,3,3,92,95],[692,1,1,95,96],[708,2,2,96,98],[720,1,1,98,99],[726,1,1,99,100],[741,2,2,100,102],[744,1,1,102,103]]],[23,23,23,103,126,[[746,1,1,103,104],[748,2,2,104,106],[751,1,1,106,107],[754,1,1,107,108],[756,1,1,108,109],[759,1,1,109,110],[761,1,1,110,111],[762,1,1,111,112],[765,1,1,112,113],[767,1,1,113,114],[769,2,2,114,116],[774,1,1,116,117],[776,2,2,117,119],[777,1,1,119,120],[780,1,1,120,121],[786,1,1,121,122],[788,1,1,122,123],[793,1,1,123,124],[795,1,1,124,125],[796,1,1,125,126]]],[24,10,9,126,135,[[797,1,1,126,127],[798,6,5,127,132],[799,2,2,132,134],[800,1,1,134,135]]],[25,11,11,135,146,[[806,2,2,135,137],[808,2,2,137,139],[814,1,1,139,140],[821,2,2,140,142],[823,1,1,142,143],[826,1,1,143,144],[836,1,1,144,145],[844,1,1,145,146]]],[26,2,2,146,148,[[858,1,1,146,147],[860,1,1,147,148]]],[27,4,4,148,152,[[869,1,1,148,149],[872,1,1,149,150],[874,1,1,150,151],[875,1,1,151,152]]],[28,1,1,152,153,[[877,1,1,152,153]]],[29,1,1,153,154,[[879,1,1,153,154]]],[31,2,2,154,156,[[891,1,1,154,155],[892,1,1,155,156]]],[32,2,2,156,158,[[897,1,1,156,157],[899,1,1,157,158]]],[33,2,2,158,160,[[900,2,2,158,160]]],[34,2,2,160,162,[[905,2,2,160,162]]],[35,4,3,162,165,[[907,3,2,162,164],[908,1,1,164,165]]],[37,1,1,165,166,[[920,1,1,165,166]]]],[772,832,1342,1479,1480,1615,1814,2457,2460,4025,4034,4068,4397,4402,4456,4474,4475,4728,4731,4732,5101,5115,5176,5289,5699,5702,5703,5706,5707,5745,5780,5977,6002,6476,6559,6565,6576,6693,6784,6818,6928,7451,7646,7760,7764,8164,8291,8693,9874,10191,10222,10770,11714,11719,12528,13056,13064,13280,13372,13735,13986,14001,14294,14324,14762,14959,15049,15102,15134,15162,15163,15274,15276,15385,15389,15557,16328,16808,16825,16872,16936,16998,17173,17764,17786,17841,17846,17850,17854,17855,17875,17901,17909,17915,17919,17934,18244,18247,18505,18623,18869,18872,18937,19000,19035,19053,19139,19225,19262,19329,19361,19407,19445,19504,19571,19572,19691,19762,19768,19780,19849,19993,20016,20164,20257,20279,20322,20333,20335,20338,20353,20354,20397,20420,20431,20559,20561,20580,20585,20721,20903,20916,20996,21097,21355,21580,22004,22056,22199,22249,22277,22286,22324,22375,22567,22570,22648,22682,22687,22690,22776,22780,22807,22808,22828,23019]]],["angry",[4,4,[[18,1,1,0,1,[[553,1,1,0,1]]],[19,3,3,1,4,[[641,1,1,1,2],[649,1,1,2,3],[656,1,1,3,4]]]],[15088,16789,17039,17246]]],["before",[2,2,[[4,1,1,0,1,[[185,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]]],[5820,7884]]],["countenance",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14045]]],["face",[19,19,[[0,4,4,0,4,[[2,1,1,0,1],[18,1,1,1,2],[23,1,1,2,3],[47,1,1,3,4]]],[3,1,1,4,5,[[138,1,1,4,5]]],[8,4,4,5,9,[[255,1,1,5,6],[259,1,1,6,7],[260,1,1,7,8],[263,1,1,8,9]]],[9,4,4,9,13,[[280,2,2,9,11],[284,1,1,11,12],[290,1,1,12,13]]],[10,2,2,13,15,[[291,2,2,13,15]]],[12,1,1,15,16,[[358,1,1,15,16]]],[13,1,1,16,17,[[386,1,1,16,17]]],[22,1,1,17,18,[[727,1,1,17,18]]],[25,1,1,18,19,[[839,1,1,18,19]]]],[74,458,638,1463,4406,7771,7847,7902,7956,8360,8389,8506,8712,8740,8748,10955,11605,18659,21443]]],["faces",[3,3,[[0,1,1,0,1,[[41,1,1,0,1]]],[13,1,1,1,2,[[373,1,1,1,2]]],[15,1,1,2,3,[[420,1,1,2,3]]]],[1258,11327,12499]]],["forbearing",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17128]]],["forehead",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20774]]],["nose",[11,11,[[11,1,1,0,1,[[331,1,1,0,1]]],[17,2,2,1,3,[[475,1,1,1,2],[476,1,1,2,3]]],[19,1,1,3,4,[[657,1,1,3,4]]],[21,2,2,4,6,[[677,2,2,4,6]]],[22,3,3,6,9,[[681,1,1,6,7],[715,1,1,7,8],[743,1,1,8,9]]],[25,2,2,9,11,[[809,1,1,9,10],[824,1,1,10,11]]]],[10089,13888,13890,17284,17631,17635,17728,18381,18902,20621,21032]]],["noses",[1,1,[[18,1,1,0,1,[[592,1,1,0,1]]]],[15836]]],["nostrils",[12,12,[[0,2,2,0,2,[[1,1,1,0,1],[6,1,1,1,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[9,2,2,3,5,[[288,2,2,3,5]]],[17,2,2,5,7,[[439,1,1,5,6],[462,1,1,6,7]]],[18,2,2,7,9,[[495,2,2,7,9]]],[22,1,1,9,10,[[680,1,1,9,10]]],[24,1,1,10,11,[[800,1,1,10,11]]],[29,1,1,11,12,[[882,1,1,11,12]]]],[37,181,1928,8611,8618,12939,13484,14126,14133,17707,20440,22420]]],["snout",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16710]]],["worthy",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7217]]],["wrath",[41,40,[[0,1,1,0,1,[[38,1,1,0,1]]],[1,3,3,1,4,[[71,1,1,1,2],[81,2,2,2,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[4,1,1,5,6,[[163,1,1,5,6]]],[8,1,1,6,7,[[263,1,1,6,7]]],[11,1,1,7,8,[[335,1,1,7,8]]],[13,5,5,8,13,[[378,1,1,8,9],[394,2,2,9,11],[395,1,1,11,12],[396,1,1,12,13]]],[14,2,2,13,15,[[410,1,1,13,14],[412,1,1,14,15]]],[17,12,11,15,26,[[449,1,1,15,16],[451,1,1,16,17],[454,1,1,17,18],[455,2,2,18,20],[467,4,3,20,23],[471,1,1,23,24],[475,1,1,24,25],[477,1,1,25,26]]],[18,10,10,26,36,[[479,2,2,26,28],[498,1,1,28,29],[532,1,1,29,30],[555,1,1,30,31],[572,1,1,31,32],[583,1,1,32,33],[587,1,1,33,34],[601,1,1,34,35],[615,1,1,35,36]]],[19,4,4,36,40,[[641,1,1,36,37],[651,1,1,37,38],[656,1,1,38,39],[657,1,1,39,40]]]],[1168,2137,2448,2449,4057,5225,7960,10191,11449,11775,11777,11801,11835,12223,12266,13194,13247,13308,13349,13354,13630,13631,13633,13749,13875,13929,13950,13957,14200,14735,15144,15465,15691,15791,16105,16238,16801,17097,17232,17284]]]]},{"k":"H640","v":[["*",[2,2,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]]],[2341,2924]]],["bound",[1,1,[[2,1,1,0,1,[[97,1,1,0,1]]]],[2924]]],["gird",[1,1,[[1,1,1,0,1,[[78,1,1,0,1]]]],[2341]]]]},{"k":"H641","v":[["Ephod",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4839]]]]},{"k":"H642","v":[["*",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]]],[2301,2669,18239]]],["ephod",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2301,2669]]],["ornament",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18239]]]]},{"k":"H643","v":[["palace",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22081]]]]},{"k":"H644","v":[["*",[25,24,[[0,9,9,0,9,[[18,1,1,0,1],[39,7,7,1,8],[40,1,1,8,9]]],[1,3,2,9,11,[[61,1,1,9,10],[65,2,1,10,11]]],[2,5,5,11,16,[[95,1,1,11,12],[96,1,1,12,13],[112,1,1,13,14],[113,1,1,14,15],[115,1,1,15,16]]],[8,2,2,16,18,[[243,1,1,16,17],[263,1,1,17,18]]],[22,2,2,18,20,[[722,2,2,18,20]]],[23,1,1,20,21,[[781,1,1,20,21]]],[25,1,1,21,22,[[847,1,1,21,22]]],[27,2,2,22,24,[[868,2,2,22,24]]]],[460,1173,1174,1177,1188,1189,1192,1194,1205,1855,1970,2866,2888,3419,3451,3550,7382,7966,18548,18552,19895,21675,22182,22184]]],["+",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1189]]],["bake",[7,6,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,2,1,1,2,[[65,2,1,1,2]]],[2,2,2,2,4,[[113,1,1,2,3],[115,1,1,3,4]]],[8,1,1,4,5,[[263,1,1,4,5]]],[25,1,1,5,6,[[847,1,1,5,6]]]],[460,1970,3451,3550,7966,21675]]],["baked",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[1855,18552]]],["baken",[3,3,[[2,3,3,0,3,[[95,1,1,0,1],[96,1,1,1,2],[112,1,1,2,3]]]],[2866,2888,3419]]],["baker",[8,8,[[0,6,6,0,6,[[39,5,5,0,5],[40,1,1,5,6]]],[27,2,2,6,8,[[868,2,2,6,8]]]],[1173,1177,1188,1192,1194,1205,22182,22184]]],["bakers",[2,2,[[0,1,1,0,1,[[39,1,1,0,1]]],[8,1,1,1,2,[[243,1,1,1,2]]]],[1174,7382]]],["bakers'",[1,1,[[23,1,1,0,1,[[781,1,1,0,1]]]],[19895]]],["baketh",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18548]]]]},{"k":"H645","v":[["*",[15,15,[[0,3,3,0,3,[[26,2,2,0,2],[42,1,1,2,3]]],[1,1,1,3,4,[[82,1,1,3,4]]],[6,1,1,4,5,[[219,1,1,4,5]]],[11,1,1,5,6,[[322,1,1,5,6]]],[17,5,5,6,11,[[444,1,1,6,7],[452,1,1,7,8],[454,2,2,8,10],[459,1,1,10,11]]],[19,1,1,11,12,[[633,1,1,11,12]]],[22,2,2,12,14,[[697,1,1,12,13],[700,1,1,13,14]]],[27,1,1,14,15,[[874,1,1,14,15]]]],[760,764,1301,2489,6792,9803,13075,13275,13303,13320,13461,16543,18016,18053,22276]]],["here",[1,1,[[1,1,1,0,1,[[82,1,1,0,1]]]],[2489]]],["now",[10,10,[[0,2,2,0,2,[[26,1,1,0,1],[42,1,1,1,2]]],[6,1,1,2,3,[[219,1,1,2,3]]],[11,1,1,3,4,[[322,1,1,3,4]]],[17,4,4,4,8,[[452,1,1,4,5],[454,2,2,5,7],[459,1,1,7,8]]],[19,1,1,8,9,[[633,1,1,8,9]]],[22,1,1,9,10,[[700,1,1,9,10]]]],[764,1301,6792,9803,13275,13303,13320,13461,16543,18053]]],["where",[4,4,[[0,1,1,0,1,[[26,1,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]],[22,1,1,2,3,[[697,1,1,2,3]]],[27,1,1,3,4,[[874,1,1,3,4]]]],[760,13075,18016,22276]]]]},{"k":"H646","v":[["ephod",[49,39,[[1,29,21,0,21,[[74,1,1,0,1],[77,12,9,1,10],[78,3,1,10,11],[84,2,2,11,13],[88,11,8,13,21]]],[2,2,1,21,22,[[97,2,1,21,22]]],[6,6,6,22,28,[[218,1,1,22,23],[227,1,1,23,24],[228,4,4,24,28]]],[8,9,8,28,36,[[237,2,2,28,30],[249,1,1,30,31],[256,1,1,31,32],[257,1,1,32,33],[258,2,2,33,35],[265,2,1,35,36]]],[9,1,1,36,37,[[272,1,1,36,37]]],[12,1,1,37,38,[[352,1,1,37,38]]],[27,1,1,38,39,[[864,1,1,38,39]]]],[2202,2297,2299,2305,2308,2318,2319,2320,2321,2324,2341,2540,2558,2666,2671,2672,2682,2683,2684,2685,2686,2924,6746,6985,7007,7010,7011,7013,7258,7268,7511,7781,7805,7816,7819,7985,8171,10818,22132]]]]},{"k":"H647","v":[["Aphiah",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7392]]]]},{"k":"H648","v":[["up",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1774]]]]},{"k":"H649","v":[["Appaim",[2,2,[[12,2,2,0,2,[[339,2,2,0,2]]]],[10336,10337]]]]},{"k":"H650","v":[["*",[19,19,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,4,4,1,5,[[441,1,1,1,2],[447,1,1,2,3],[475,1,1,3,4],[476,1,1,4,5]]],[18,3,3,5,8,[[495,1,1,5,6],[519,1,1,6,7],[603,1,1,7,8]]],[21,1,1,8,9,[[675,1,1,8,9]]],[22,1,1,9,10,[[686,1,1,9,10]]],[25,7,7,10,17,[[807,1,1,10,11],[832,1,1,11,12],[833,1,1,12,13],[835,1,1,13,14],[836,1,1,14,15],[837,2,2,15,17]]],[28,2,2,17,19,[[876,1,1,17,18],[878,1,1,18,19]]]],[8618,12993,13149,13882,13903,14133,14556,16119,17610,17814,20566,21242,21254,21326,21352,21363,21365,22311,22361]]],["+",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13903]]],["brooks",[1,1,[[18,1,1,0,1,[[519,1,1,0,1]]]],[14556]]],["channels",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]],[22,1,1,2,3,[[686,1,1,2,3]]]],[8618,14133,17814]]],["mighty",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13149]]],["pieces",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13882]]],["rivers",[10,10,[[21,1,1,0,1,[[675,1,1,0,1]]],[25,7,7,1,8,[[807,1,1,1,2],[832,1,1,2,3],[833,1,1,3,4],[835,1,1,4,5],[836,1,1,5,6],[837,2,2,6,8]]],[28,2,2,8,10,[[876,1,1,8,9],[878,1,1,9,10]]]],[17610,20566,21242,21254,21326,21352,21363,21365,22311,22361]]],["stream",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12993]]],["streams",[1,1,[[18,1,1,0,1,[[603,1,1,0,1]]]],[16119]]]]},{"k":"H651","v":[["dark",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22443]]]]},{"k":"H652","v":[["*",[9,8,[[17,6,5,0,5,[[438,1,1,0,1],[445,2,1,1,2],[458,1,1,2,3],[463,1,1,3,4],[465,1,1,4,5]]],[18,2,2,5,7,[[488,1,1,5,6],[568,1,1,6,7]]],[22,1,1,7,8,[[707,1,1,7,8]]]],[12910,13108,13436,13507,13583,14061,15401,18211]]],["+",[2,2,[[18,1,1,0,1,[[488,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]]],[14061,18211]]],["darkness",[7,6,[[17,6,5,0,5,[[438,1,1,0,1],[445,2,1,1,2],[458,1,1,2,3],[463,1,1,3,4],[465,1,1,4,5]]],[18,1,1,5,6,[[568,1,1,5,6]]]],[12910,13108,13436,13507,13583,15401]]]]},{"k":"H653","v":[["*",[10,10,[[1,1,1,0,1,[[59,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[19,2,2,2,4,[[631,1,1,2,3],[634,1,1,3,4]]],[22,3,3,4,7,[[686,1,1,4,5],[736,1,1,5,6],[737,1,1,6,7]]],[23,1,1,7,8,[[767,1,1,7,8]]],[28,1,1,8,9,[[877,1,1,8,9]]],[35,1,1,9,10,[[906,1,1,9,10]]]],[1799,5640,16509,16584,17829,18796,18809,19496,22313,22802]]],["dark",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16584]]],["darkness",[6,6,[[4,1,1,0,1,[[180,1,1,0,1]]],[19,1,1,1,2,[[631,1,1,1,2]]],[22,3,3,2,5,[[686,1,1,2,3],[736,1,1,3,4],[737,1,1,4,5]]],[23,1,1,5,6,[[767,1,1,5,6]]]],[5640,16509,17829,18796,18809,19496]]],["gloominess",[2,2,[[28,1,1,0,1,[[877,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]]],[22313,22802]]],["thick",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1799]]]]},{"k":"H654","v":[["Ephlal",[2,1,[[12,2,1,0,1,[[339,2,1,0,1]]]],[10343]]]]},{"k":"H655","v":[["+",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17124]]]]},{"k":"H656","v":[["*",[5,5,[[0,2,2,0,2,[[46,2,2,0,2]]],[18,1,1,2,3,[[554,1,1,2,3]]],[22,2,2,3,5,[[694,1,1,3,4],[707,1,1,4,5]]]],[1435,1436,15101,17973,18213]]],["end",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17973]]],["fail",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1436]]],["faileth",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1435]]],["gone",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15101]]],["nought",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18213]]]]},{"k":"H657","v":[["*",[44,43,[[3,3,3,0,3,[[129,1,1,0,1],[138,1,1,1,2],[139,1,1,2,3]]],[4,3,3,3,6,[[167,1,1,3,4],[184,1,1,4,5],[185,1,1,5,6]]],[6,1,1,6,7,[[214,1,1,6,7]]],[8,1,1,7,8,[[237,1,1,7,8]]],[9,2,2,8,10,[[275,1,1,8,9],[278,1,1,9,10]]],[11,2,1,10,11,[[326,2,1,10,11]]],[17,1,1,11,12,[[442,1,1,11,12]]],[18,6,6,12,18,[[479,1,1,12,13],[499,1,1,13,14],[536,1,1,14,15],[544,1,1,15,16],[549,1,1,16,17],[575,1,1,17,18]]],[19,3,3,18,21,[[641,1,1,18,19],[653,1,1,19,20],[657,1,1,20,21]]],[22,14,14,21,35,[[683,1,1,21,22],[712,1,1,22,23],[718,1,1,23,24],[719,2,2,24,26],[723,3,3,26,29],[724,1,1,29,30],[725,2,2,30,32],[730,2,2,32,34],[732,1,1,34,35]]],[23,1,1,35,36,[[760,1,1,35,36]]],[25,1,1,36,37,[[848,1,1,36,37]]],[26,1,1,37,38,[[857,1,1,37,38]]],[29,2,2,38,40,[[884,1,1,38,39],[887,1,1,39,40]]],[32,1,1,40,41,[[897,1,1,40,41]]],[35,1,1,41,42,[[907,1,1,41,42]]],[37,1,1,42,43,[[919,1,1,42,43]]]],[4103,4410,4429,5323,5794,5827,6608,7250,8230,8300,9922,13014,13953,14231,14803,14900,15008,15493,16800,17161,17255,17747,18315,18437,18463,18480,18567,18575,18583,18595,18607,18609,18700,18706,18738,19355,21682,21986,22460,22503,22637,22820,23009]]],["+",[6,6,[[3,2,2,0,2,[[129,1,1,0,1],[138,1,1,1,2]]],[22,3,3,2,5,[[718,1,1,2,3],[725,2,2,3,5]]],[23,1,1,5,6,[[760,1,1,5,6]]]],[4103,4410,18437,18607,18609,19355]]],["Howbeit",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8300]]],["No",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22460]]],["Save",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5323]]],["ankles",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21682]]],["any",[2,1,[[11,2,1,0,1,[[326,2,1,0,1]]]],[9922]]],["but",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4429]]],["cause",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18700]]],["ends",[12,12,[[4,1,1,0,1,[[185,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[18,5,5,2,7,[[499,1,1,2,3],[536,1,1,3,4],[544,1,1,4,5],[549,1,1,5,6],[575,1,1,6,7]]],[19,1,1,7,8,[[657,1,1,7,8]]],[22,2,2,8,10,[[723,1,1,8,9],[730,1,1,9,10]]],[32,1,1,10,11,[[897,1,1,10,11]]],[37,1,1,11,12,[[919,1,1,11,12]]]],[5827,7250,14231,14803,14900,15008,15493,17255,18583,18706,22637,23009]]],["no",[3,3,[[19,1,1,0,1,[[653,1,1,0,1]]],[22,2,2,1,3,[[683,1,1,1,2],[723,1,1,2,3]]]],[17161,17747,18575]]],["none",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[22,2,2,1,3,[[723,1,1,1,2],[724,1,1,2,3]]],[35,1,1,3,4,[[907,1,1,3,4]]]],[5794,18567,18595,22820]]],["not",[2,2,[[9,1,1,0,1,[[275,1,1,0,1]]],[22,1,1,1,2,[[732,1,1,1,2]]]],[8230,18738]]],["nothing",[2,2,[[22,2,2,0,2,[[712,1,1,0,1],[719,1,1,1,2]]]],[18315,18480]]],["notwithstanding",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6608]]],["nought",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18463]]],["parts",[1,1,[[18,1,1,0,1,[[479,1,1,0,1]]]],[13953]]],["saving",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22503]]],["want",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16800]]],["without",[2,2,[[17,1,1,0,1,[[442,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]]],[13014,21986]]]]},{"k":"H658","v":[["Ephesdammim",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7619]]]]},{"k":"H659","v":[["+",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18475]]]]},{"k":"H660","v":[["*",[3,3,[[17,1,1,0,1,[[455,1,1,0,1]]],[22,2,2,1,3,[[708,1,1,1,2],[737,1,1,2,3]]]],[13342,18223,18805]]],["viper",[2,2,[[22,2,2,0,2,[[708,1,1,0,1],[737,1,1,1,2]]]],[18223,18805]]],["viper's",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13342]]]]},{"k":"H661","v":[["*",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,3,3,1,4,[[495,1,1,1,2],[517,1,1,2,3],[593,1,1,3,4]]],[31,1,1,4,5,[[890,1,1,4,5]]]],[8607,14122,14537,15851,22553]]],["+",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14537]]],["about",[1,1,[[31,1,1,0,1,[[890,1,1,0,1]]]],[22553]]],["compassed",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,2,2,1,3,[[495,1,1,1,2],[593,1,1,2,3]]]],[8607,14122,15851]]]]},{"k":"H662","v":[["*",[7,7,[[0,2,2,0,2,[[42,1,1,0,1],[44,1,1,1,2]]],[8,1,1,2,3,[[248,1,1,2,3]]],[16,1,1,3,4,[[430,1,1,3,4]]],[22,3,3,4,7,[[720,1,1,4,5],[741,1,1,5,6],[742,1,1,6,7]]]],[1321,1359,7497,12789,18494,18881,18897]]],["himself",[3,3,[[0,2,2,0,2,[[42,1,1,0,1],[44,1,1,1,2]]],[16,1,1,2,3,[[430,1,1,2,3]]]],[1321,1359,12789]]],["myself",[2,2,[[8,1,1,0,1,[[248,1,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]]],[7497,18494]]],["restrained",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18881]]],["thyself",[1,1,[[22,1,1,0,1,[[742,1,1,0,1]]]],[18897]]]]},{"k":"H663","v":[["*",[9,9,[[5,3,3,0,3,[[198,1,1,0,1],[199,1,1,1,2],[205,1,1,2,3]]],[6,1,1,3,4,[[211,1,1,3,4]]],[8,2,2,4,6,[[239,1,1,4,5],[264,1,1,5,6]]],[10,2,2,6,8,[[310,2,2,6,8]]],[11,1,1,8,9,[[325,1,1,8,9]]]],[6148,6158,6351,6540,7298,7968,9434,9438,9888]]],["Aphek",[8,8,[[5,3,3,0,3,[[198,1,1,0,1],[199,1,1,1,2],[205,1,1,2,3]]],[8,2,2,3,5,[[239,1,1,3,4],[264,1,1,4,5]]],[10,2,2,5,7,[[310,2,2,5,7]]],[11,1,1,7,8,[[325,1,1,7,8]]]],[6148,6158,6351,7298,7968,9434,9438,9888]]],["Aphik",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6540]]]]},{"k":"H664","v":[["Aphekah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6255]]]]},{"k":"H665","v":[["ashes",[22,22,[[0,1,1,0,1,[[17,1,1,0,1]]],[3,2,2,1,3,[[135,2,2,1,3]]],[9,1,1,3,4,[[279,1,1,3,4]]],[16,2,2,4,6,[[429,2,2,4,6]]],[17,4,4,6,10,[[437,1,1,6,7],[448,1,1,7,8],[465,1,1,8,9],[477,1,1,9,10]]],[18,2,2,10,12,[[579,1,1,10,11],[624,1,1,11,12]]],[22,3,3,12,15,[[722,1,1,12,13],[736,1,1,13,14],[739,1,1,14,15]]],[23,1,1,15,16,[[750,1,1,15,16]]],[24,1,1,16,17,[[799,1,1,16,17]]],[25,2,2,17,19,[[828,1,1,17,18],[829,1,1,18,19]]],[26,1,1,19,20,[[858,1,1,19,20]]],[31,1,1,20,21,[[891,1,1,20,21]]],[38,1,1,21,22,[[928,1,1,21,22]]]],[451,4298,4299,8336,12763,12765,12899,13165,13576,13928,15530,16367,18553,18791,18846,19115,20370,21151,21175,21991,22564,23141]]]]},{"k":"H666","v":[["ashes",[2,2,[[10,2,2,0,2,[[310,2,2,0,2]]]],[9446,9449]]]]},{"k":"H667","v":[["*",[4,3,[[4,2,1,0,1,[[174,2,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]],[18,1,1,2,3,[[561,1,1,2,3]]]],[5476,13864,15262]]],["ones",[2,2,[[4,1,1,0,1,[[174,1,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]]],[5476,13864]]],["young",[2,2,[[4,1,1,0,1,[[174,1,1,0,1]]],[18,1,1,1,2,[[561,1,1,1,2]]]],[5476,15262]]]]},{"k":"H668","v":[["chariot",[1,1,[[21,1,1,0,1,[[673,1,1,0,1]]]],[17580]]]]},{"k":"H669","v":[["*",[180,164,[[0,11,9,0,9,[[40,1,1,0,1],[45,1,1,1,2],[47,8,6,2,8],[49,1,1,8,9]]],[3,13,12,9,21,[[117,3,3,9,12],[118,3,2,12,14],[123,1,1,14,15],[126,1,1,15,16],[129,1,1,16,17],[142,3,3,17,20],[150,1,1,20,21]]],[4,2,2,21,23,[[185,1,1,21,22],[186,1,1,22,23]]],[5,18,18,23,41,[[200,1,1,23,24],[202,5,5,24,29],[203,5,5,29,34],[205,1,1,34,35],[206,1,1,35,36],[207,3,3,36,39],[210,2,2,39,41]]],[6,27,22,41,63,[[211,1,1,41,42],[212,1,1,42,43],[213,1,1,43,44],[214,1,1,44,45],[215,1,1,45,46],[217,2,1,46,47],[218,2,2,47,49],[220,2,2,49,51],[222,9,5,51,56],[227,2,2,56,58],[228,2,2,58,60],[229,3,3,60,63]]],[8,3,3,63,66,[[236,1,1,63,64],[244,1,1,64,65],[249,1,1,65,66]]],[9,4,4,66,70,[[268,1,1,66,67],[279,1,1,67,68],[284,1,1,68,69],[286,1,1,69,70]]],[10,2,2,70,72,[[294,1,1,70,71],[302,1,1,71,72]]],[11,2,2,72,74,[[317,1,1,72,73],[326,1,1,73,74]]],[12,9,9,74,83,[[343,2,2,74,76],[344,2,2,76,78],[346,1,1,78,79],[349,1,1,79,80],[364,3,3,80,83]]],[13,16,16,83,99,[[379,1,1,83,84],[381,2,2,84,86],[383,1,1,86,87],[385,1,1,87,88],[391,3,3,88,91],[394,2,2,91,93],[396,3,3,93,96],[397,1,1,96,97],[400,2,2,97,99]]],[15,2,2,99,101,[[420,1,1,99,100],[424,1,1,100,101]]],[18,5,5,101,106,[[537,1,1,101,102],[555,2,2,102,104],[557,1,1,104,105],[585,1,1,105,106]]],[22,14,11,106,117,[[685,5,5,106,111],[687,3,2,111,113],[689,3,1,113,114],[695,1,1,114,115],[706,2,2,115,117]]],[23,7,7,117,124,[[748,1,1,117,118],[751,1,1,118,119],[775,4,4,119,123],[794,1,1,123,124]]],[25,4,4,124,128,[[838,2,2,124,126],[849,2,2,126,128]]],[27,37,32,128,160,[[865,1,1,128,129],[866,9,7,129,136],[867,2,2,136,138],[868,4,3,138,141],[869,2,2,141,143],[870,6,5,143,148],[871,3,2,148,150],[872,4,4,150,154],[873,3,3,154,157],[874,2,2,157,159],[875,1,1,159,160]]],[30,1,1,160,161,[[888,1,1,160,161]]],[37,3,3,161,164,[[919,2,2,161,163],[920,1,1,163,164]]]],[1247,1406,1452,1456,1464,1465,1468,1471,1529,3614,3636,3637,3676,3682,3898,4010,4083,4517,4524,4526,4840,5827,5841,6191,6269,6270,6273,6274,6275,6283,6284,6285,6290,6292,6371,6379,6386,6401,6402,6506,6509,6538,6554,6595,6604,6637,6718,6720,6721,6812,6820,6870,6873,6874,6875,6884,6981,6988,6995,7006,7025,7040,7042,7213,7395,7530,8058,8340,8484,8575,8852,9176,9669,9909,10520,10521,10555,10557,10618,10750,11119,11123,11129,11457,11498,11499,11525,11580,11711,11714,11727,11771,11776,11828,11837,11845,11855,11939,11942,12509,12663,14814,15122,15180,15200,15750,17784,17787,17790,17791,17799,17838,17850,17897,17986,18165,18167,19042,19134,19697,19700,19709,19711,20185,21413,21416,21707,21708,22150,22155,22157,22161,22163,22164,22165,22166,22171,22177,22179,22186,22189,22203,22205,22211,22216,22219,22221,22224,22231,22236,22243,22248,22249,22252,22253,22260,22266,22267,22278,22290,22529,23009,23012,23023]]],["+",[8,8,[[6,1,1,0,1,[[222,1,1,0,1]]],[13,3,3,1,4,[[381,1,1,1,2],[391,1,1,2,3],[396,1,1,3,4]]],[22,2,2,4,6,[[687,1,1,4,5],[695,1,1,5,6]]],[27,1,1,6,7,[[872,1,1,6,7]]],[37,1,1,7,8,[[919,1,1,7,8]]]],[6875,11499,11714,11845,17850,17986,22243,23009]]],["Ephraim",[164,152,[[0,8,7,0,7,[[40,1,1,0,1],[45,1,1,1,2],[47,6,5,2,7]]],[3,13,12,7,19,[[117,3,3,7,10],[118,3,2,10,12],[123,1,1,12,13],[126,1,1,13,14],[129,1,1,14,15],[142,3,3,15,18],[150,1,1,18,19]]],[4,2,2,19,21,[[185,1,1,19,20],[186,1,1,20,21]]],[5,16,16,21,37,[[200,1,1,21,22],[202,4,4,22,26],[203,4,4,26,30],[205,1,1,30,31],[206,1,1,31,32],[207,3,3,32,35],[210,2,2,35,37]]],[6,23,20,37,57,[[211,1,1,37,38],[212,1,1,38,39],[213,1,1,39,40],[214,1,1,40,41],[215,1,1,41,42],[217,2,1,42,43],[218,2,2,43,45],[220,2,2,45,47],[222,5,3,47,50],[227,2,2,50,52],[228,2,2,52,54],[229,3,3,54,57]]],[8,3,3,57,60,[[236,1,1,57,58],[244,1,1,58,59],[249,1,1,59,60]]],[9,4,4,60,64,[[268,1,1,60,61],[279,1,1,61,62],[284,1,1,62,63],[286,1,1,63,64]]],[10,2,2,64,66,[[294,1,1,64,65],[302,1,1,65,66]]],[11,2,2,66,68,[[317,1,1,66,67],[326,1,1,67,68]]],[12,9,9,68,77,[[343,2,2,68,70],[344,2,2,70,72],[346,1,1,72,73],[349,1,1,73,74],[364,3,3,74,77]]],[13,13,13,77,90,[[379,1,1,77,78],[381,1,1,78,79],[383,1,1,79,80],[385,1,1,80,81],[391,2,2,81,83],[394,2,2,83,85],[396,2,2,85,87],[397,1,1,87,88],[400,2,2,88,90]]],[15,2,2,90,92,[[420,1,1,90,91],[424,1,1,91,92]]],[18,5,5,92,97,[[537,1,1,92,93],[555,2,2,93,95],[557,1,1,95,96],[585,1,1,96,97]]],[22,12,10,97,107,[[685,5,5,97,102],[687,2,2,102,104],[689,3,1,104,105],[706,2,2,105,107]]],[23,7,7,107,114,[[748,1,1,107,108],[751,1,1,108,109],[775,4,4,109,113],[794,1,1,113,114]]],[25,4,4,114,118,[[838,2,2,114,116],[849,2,2,116,118]]],[27,36,31,118,149,[[865,1,1,118,119],[866,9,7,119,126],[867,2,2,126,128],[868,4,3,128,131],[869,2,2,131,133],[870,6,5,133,138],[871,3,2,138,140],[872,3,3,140,143],[873,3,3,143,146],[874,2,2,146,148],[875,1,1,148,149]]],[30,1,1,149,150,[[888,1,1,149,150]]],[37,2,2,150,152,[[919,1,1,150,151],[920,1,1,151,152]]]],[1247,1406,1452,1456,1464,1468,1471,3614,3636,3637,3676,3682,3898,4010,4083,4517,4524,4526,4840,5827,5841,6191,6269,6270,6273,6274,6283,6284,6290,6292,6371,6379,6386,6401,6402,6506,6509,6538,6554,6595,6604,6637,6718,6720,6721,6812,6820,6870,6873,6884,6981,6988,6995,7006,7025,7040,7042,7213,7395,7530,8058,8340,8484,8575,8852,9176,9669,9909,10520,10521,10555,10557,10618,10750,11119,11123,11129,11457,11498,11525,11580,11711,11727,11771,11776,11828,11837,11855,11939,11942,12509,12663,14814,15122,15180,15200,15750,17784,17787,17790,17791,17799,17838,17850,17897,18165,18167,19042,19134,19697,19700,19709,19711,20185,21413,21416,21707,21708,22150,22155,22157,22161,22163,22164,22165,22166,22171,22177,22179,22186,22189,22203,22205,22211,22216,22219,22221,22224,22231,22236,22248,22249,22252,22253,22260,22266,22267,22278,22290,22529,23012,23023]]],["Ephraim's",[4,4,[[0,3,3,0,3,[[47,2,2,0,2],[49,1,1,2,3]]],[5,1,1,3,4,[[203,1,1,3,4]]]],[1465,1468,1529,6285]]],["Ephraimites",[4,3,[[5,1,1,0,1,[[202,1,1,0,1]]],[6,3,2,1,3,[[222,3,2,1,3]]]],[6275,6873,6874]]]]},{"k":"H670","v":[["Apharsites",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12119]]]]},{"k":"H671","v":[["*",[3,3,[[14,3,3,0,3,[[406,1,1,0,1],[407,1,1,1,2],[408,1,1,2,3]]]],[12119,12140,12157]]],["Apharsachites",[2,2,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]]],[12140,12157]]],["Apharsathchites",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12119]]]]},{"k":"H672","v":[["*",[10,9,[[0,4,3,0,3,[[34,2,2,0,2],[47,2,1,2,3]]],[7,1,1,3,4,[[235,1,1,3,4]]],[12,3,3,4,7,[[339,2,2,4,6],[341,1,1,6,7]]],[18,1,1,7,8,[[609,1,1,7,8]]],[32,1,1,8,9,[[897,1,1,8,9]]]],[1027,1030,1458,7201,10325,10356,10389,16157,22635]]],["Ephratah",[5,5,[[7,1,1,0,1,[[235,1,1,0,1]]],[12,2,2,1,3,[[339,1,1,1,2],[341,1,1,2,3]]],[18,1,1,3,4,[[609,1,1,3,4]]],[32,1,1,4,5,[[897,1,1,4,5]]]],[7201,10356,10389,16157,22635]]],["Ephrath",[5,4,[[0,4,3,0,3,[[34,2,2,0,2],[47,2,1,2,3]]],[12,1,1,3,4,[[339,1,1,3,4]]]],[1027,1030,1458,10325]]]]},{"k":"H673","v":[["*",[5,5,[[6,1,1,0,1,[[222,1,1,0,1]]],[7,1,1,1,2,[[232,1,1,1,2]]],[8,2,2,2,4,[[236,1,1,2,3],[252,1,1,3,4]]],[10,1,1,4,5,[[301,1,1,4,5]]]],[6874,7129,7213,7630,9134]]],["+",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7630]]],["Ephraimite",[1,1,[[6,1,1,0,1,[[222,1,1,0,1]]]],[6874]]],["Ephrathite",[2,2,[[8,1,1,0,1,[[236,1,1,0,1]]],[10,1,1,1,2,[[301,1,1,1,2]]]],[7213,9134]]],["Ephrathites",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7129]]]]},{"k":"H674","v":[["revenue",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12123]]]]},{"k":"H675","v":[["Ezbon",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]]],[1402,10542]]]]},{"k":"H676","v":[["*",[31,28,[[1,3,3,0,3,[[57,1,1,0,1],[78,1,1,1,2],[80,1,1,2,3]]],[2,13,11,3,14,[[93,5,5,3,8],[97,1,1,8,9],[98,1,1,9,10],[103,3,2,10,12],[105,3,2,12,14]]],[3,1,1,14,15,[[135,1,1,14,15]]],[4,1,1,15,16,[[161,1,1,15,16]]],[9,2,1,16,17,[[287,2,1,16,17]]],[12,1,1,17,18,[[357,1,1,17,18]]],[18,2,2,18,20,[[485,1,1,18,19],[621,1,1,19,20]]],[19,2,2,20,22,[[633,1,1,20,21],[634,1,1,21,22]]],[21,1,1,22,23,[[675,1,1,22,23]]],[22,4,4,23,27,[[680,1,1,23,24],[695,1,1,24,25],[736,1,1,25,26],[737,1,1,26,27]]],[23,1,1,27,28,[[796,1,1,27,28]]]],[1729,2348,2438,2801,2812,2820,2825,2829,2932,2962,3127,3138,3215,3220,4293,5167,8600,10932,14015,16306,16553,16578,17603,17693,17991,18795,18803,20297]]],["finger",[19,17,[[1,3,3,0,3,[[57,1,1,0,1],[78,1,1,1,2],[80,1,1,2,3]]],[2,13,11,3,14,[[93,5,5,3,8],[97,1,1,8,9],[98,1,1,9,10],[103,3,2,10,12],[105,3,2,12,14]]],[3,1,1,14,15,[[135,1,1,14,15]]],[4,1,1,15,16,[[161,1,1,15,16]]],[22,1,1,16,17,[[736,1,1,16,17]]]],[1729,2348,2438,2801,2812,2820,2825,2829,2932,2962,3127,3138,3215,3220,4293,5167,18795]]],["fingers",[10,10,[[9,1,1,0,1,[[287,1,1,0,1]]],[18,2,2,1,3,[[485,1,1,1,2],[621,1,1,2,3]]],[19,2,2,3,5,[[633,1,1,3,4],[634,1,1,4,5]]],[21,1,1,5,6,[[675,1,1,5,6]]],[22,3,3,6,9,[[680,1,1,6,7],[695,1,1,7,8],[737,1,1,8,9]]],[23,1,1,9,10,[[796,1,1,9,10]]]],[8600,14015,16306,16553,16578,17603,17693,17991,18803,20297]]],["toes",[2,2,[[9,1,1,0,1,[[287,1,1,0,1]]],[12,1,1,1,2,[[357,1,1,1,2]]]],[8600,10932]]]]},{"k":"H677","v":[["*",[3,3,[[26,3,3,0,3,[[851,2,2,0,2],[854,1,1,2,3]]]],[21799,21800,21879]]],["fingers",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21879]]],["toes",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21799,21800]]]]},{"k":"H678","v":[["*",[2,2,[[1,1,1,0,1,[[73,1,1,0,1]]],[22,1,1,1,2,[[719,1,1,1,2]]]],[2188,18460]]],["+",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18460]]],["nobles",[1,1,[[1,1,1,0,1,[[73,1,1,0,1]]]],[2188]]]]},{"k":"H679","v":[["*",[3,3,[[23,1,1,0,1,[[782,1,1,0,1]]],[25,2,2,1,3,[[814,1,1,1,2],[842,1,1,2,3]]]],[19907,20726,21534]]],["+",[2,2,[[23,1,1,0,1,[[782,1,1,0,1]]],[25,1,1,1,2,[[814,1,1,1,2]]]],[19907,20726]]],["great",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21534]]]]},{"k":"H680","v":[["*",[5,5,[[0,1,1,0,1,[[26,1,1,0,1]]],[3,2,2,1,3,[[127,2,2,1,3]]],[20,1,1,3,4,[[660,1,1,3,4]]],[25,1,1,4,5,[[843,1,1,4,5]]]],[763,4041,4049,17343,21558]]],["kept",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17343]]],["reserved",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[763]]],["straitened",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21558]]],["take",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4041]]],["took",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4049]]]]},{"k":"H681","v":[["*",[61,57,[[0,5,5,0,5,[[38,4,4,0,4],[40,1,1,4,5]]],[2,3,3,5,8,[[90,1,1,5,6],[95,1,1,6,7],[99,1,1,7,8]]],[4,2,2,8,10,[[163,1,1,8,9],[168,1,1,9,10]]],[6,1,1,10,11,[[229,1,1,10,11]]],[8,4,4,11,15,[[240,1,1,11,12],[252,1,1,12,13],[255,2,2,13,15]]],[10,13,12,15,27,[[291,1,1,15,16],[292,1,1,16,17],[293,1,1,17,18],[294,1,1,18,19],[300,1,1,19,20],[303,5,4,20,24],[310,1,1,24,25],[311,2,2,25,27]]],[11,1,1,27,28,[[324,1,1,27,28]]],[13,2,2,28,30,[[375,1,1,28,29],[394,1,1,29,30]]],[15,6,6,30,36,[[414,1,1,30,31],[415,1,1,31,32],[416,3,3,32,35],[420,1,1,35,36]]],[19,3,3,36,39,[[634,2,2,36,38],[635,1,1,38,39]]],[22,1,1,39,40,[[697,1,1,39,40]]],[23,2,2,40,42,[[779,1,1,40,41],[785,1,1,41,42]]],[25,14,11,42,53,[[802,2,2,42,44],[810,1,1,44,45],[811,6,3,45,48],[834,1,1,48,49],[840,1,1,49,50],[841,1,1,50,51],[844,2,2,51,53]]],[26,3,3,53,56,[[857,2,2,53,55],[859,1,1,55,56]]],[29,1,1,56,57,[[880,1,1,56,57]]]],[1159,1164,1165,1167,1198,2761,2859,2989,5238,5363,7038,7321,7648,7749,7771,8726,8799,8836,8856,9098,9208,9209,9212,9215,9444,9452,9453,9859,11382,11779,12313,12350,12362,12371,12377,12497,16583,16587,16632,18023,19827,19974,20479,20483,20624,20639,20642,20649,21310,21463,21484,21578,21580,21968,21978,22028,22387]]],["+",[7,7,[[8,2,2,0,2,[[252,1,1,0,1],[255,1,1,1,2]]],[10,3,3,2,5,[[293,1,1,2,3],[310,1,1,3,4],[311,1,1,4,5]]],[25,2,2,5,7,[[811,1,1,5,6],[841,1,1,6,7]]]],[7648,7771,8836,9444,9453,20649,21484]]],["at",[2,2,[[19,1,1,0,1,[[634,1,1,0,1]]],[22,1,1,1,2,[[697,1,1,1,2]]]],[16587,18023]]],["beside",[10,10,[[2,3,3,0,3,[[90,1,1,0,1],[95,1,1,1,2],[99,1,1,2,3]]],[4,1,1,3,4,[[163,1,1,3,4]]],[10,2,2,4,6,[[300,1,1,4,5],[303,1,1,5,6]]],[11,1,1,6,7,[[324,1,1,6,7]]],[15,1,1,7,8,[[420,1,1,7,8]]],[25,2,2,8,10,[[810,1,1,8,9],[811,1,1,9,10]]]],[2761,2859,2989,5238,9098,9215,9859,12497,20624,20639]]],["by",[33,30,[[0,3,3,0,3,[[38,2,2,0,2],[40,1,1,2,3]]],[6,1,1,3,4,[[229,1,1,3,4]]],[8,2,2,4,6,[[240,1,1,4,5],[255,1,1,5,6]]],[10,7,6,6,12,[[291,1,1,6,7],[292,1,1,7,8],[294,1,1,8,9],[303,4,3,9,12]]],[13,1,1,12,13,[[375,1,1,12,13]]],[15,5,5,13,18,[[414,1,1,13,14],[415,1,1,14,15],[416,3,3,15,18]]],[19,1,1,18,19,[[635,1,1,18,19]]],[23,2,2,19,21,[[779,1,1,19,20],[785,1,1,20,21]]],[25,10,8,21,29,[[802,2,2,21,23],[811,4,2,23,25],[834,1,1,25,26],[840,1,1,26,27],[844,2,2,27,29]]],[29,1,1,29,30,[[880,1,1,29,30]]]],[1159,1165,1198,7038,7321,7749,8726,8799,8856,9208,9209,9212,11382,12313,12350,12362,12371,12377,16632,19827,19974,20479,20483,20642,20649,21310,21463,21578,21580,22387]]],["hard",[1,1,[[10,1,1,0,1,[[311,1,1,0,1]]]],[9452]]],["near",[3,3,[[4,1,1,0,1,[[168,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]],[26,1,1,2,3,[[857,1,1,2,3]]]],[5363,16583,21978]]],["to",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11779]]],["unto",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21968]]],["with",[3,3,[[0,2,2,0,2,[[38,2,2,0,2]]],[26,1,1,2,3,[[859,1,1,2,3]]]],[1164,1167,22028]]]]},{"k":"H682","v":[["*",[7,5,[[12,6,4,0,4,[[345,3,2,0,2],[346,3,2,2,4]]],[37,1,1,4,5,[[924,1,1,4,5]]]],[10612,10613,10658,10659,23073]]],["Azal",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23073]]],["Azel",[6,4,[[12,6,4,0,4,[[345,3,2,0,2],[346,3,2,2,4]]]],[10612,10613,10658,10659]]]]},{"k":"H683","v":[["Azaliah",[2,2,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]]],[10148,11941]]]]},{"k":"H684","v":[["Ozem",[2,2,[[12,2,2,0,2,[[339,2,2,0,2]]]],[10321,10331]]]]},{"k":"H685","v":[["*",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]]],[4714,8032]]],["bracelet",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8032]]],["chains",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4714]]]]},{"k":"H686","v":[["*",[5,5,[[11,1,1,0,1,[[332,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]],[22,2,2,2,4,[[701,1,1,2,3],[717,1,1,3,4]]],[29,1,1,4,5,[[881,1,1,4,5]]]],[10115,12684,18095,18418,22405]]],["store",[2,2,[[11,1,1,0,1,[[332,1,1,0,1]]],[22,1,1,1,2,[[717,1,1,1,2]]]],[10115,18418]]],["treasured",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18095]]],["treasurers",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12684]]],["up",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22405]]]]},{"k":"H687","v":[["Ezer",[5,5,[[0,3,3,0,3,[[35,3,3,0,3]]],[12,2,2,3,5,[[338,2,2,3,5]]]],[1061,1067,1070,10290,10294]]]]},{"k":"H688","v":[["+",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18735]]]]},{"k":"H689","v":[["goat",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5295]]]]},{"k":"H690","v":[["Ara",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10573]]]]},{"k":"H691","v":[["ones",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18286]]]]},{"k":"H692","v":[["*",[3,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,2,1,1,2,[[142,2,1,1,2]]]],[1402,4506]]],["Areli",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1402,4506]]],["Arelites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4506]]]]},{"k":"H693","v":[["*",[42,40,[[4,1,1,0,1,[[171,1,1,0,1]]],[5,7,7,1,8,[[194,7,7,1,8]]],[6,14,13,8,21,[[219,4,4,8,12],[226,3,3,12,15],[230,6,5,15,20],[231,1,1,20,21]]],[8,3,3,21,24,[[250,1,1,21,22],[257,2,2,22,24]]],[13,1,1,24,25,[[386,1,1,24,25]]],[14,1,1,25,26,[[410,1,1,25,26]]],[17,1,1,26,27,[[466,1,1,26,27]]],[18,3,2,27,29,[[487,2,1,27,28],[536,1,1,28,29]]],[19,6,6,29,35,[[628,2,2,29,31],[634,1,1,31,32],[639,1,1,32,33],[650,1,1,33,34],[651,1,1,34,35]]],[23,1,1,35,36,[[795,1,1,35,36]]],[24,2,2,36,38,[[799,1,1,36,37],[800,1,1,37,38]]],[27,1,1,38,39,[[868,1,1,38,39]]],[32,1,1,39,40,[[899,1,1,39,40]]]],[5417,6004,6006,6009,6014,6016,6021,6023,6779,6786,6788,6797,6951,6958,6961,7083,7087,7090,7091,7092,7122,7565,7795,7800,11609,12232,13597,14050,14793,16411,16418,16587,16725,17072,17094,20224,20364,20439,22184,22666]]],["+",[2,2,[[5,1,1,0,1,[[194,1,1,0,1]]],[19,1,1,1,2,[[651,1,1,1,2]]]],[6009,17094]]],["ambush",[5,5,[[5,5,5,0,5,[[194,5,5,0,5]]]],[6004,6014,6016,6021,6023]]],["ambushes",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20224]]],["ambushments",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11609]]],["wait",[33,31,[[4,1,1,0,1,[[171,1,1,0,1]]],[5,1,1,1,2,[[194,1,1,1,2]]],[6,14,13,2,15,[[219,4,4,2,6],[226,3,3,6,9],[230,6,5,9,14],[231,1,1,14,15]]],[8,3,3,15,18,[[250,1,1,15,16],[257,2,2,16,18]]],[14,1,1,18,19,[[410,1,1,18,19]]],[17,1,1,19,20,[[466,1,1,19,20]]],[18,3,2,20,22,[[487,2,1,20,21],[536,1,1,21,22]]],[19,5,5,22,27,[[628,2,2,22,24],[634,1,1,24,25],[639,1,1,25,26],[650,1,1,26,27]]],[24,2,2,27,29,[[799,1,1,27,28],[800,1,1,28,29]]],[27,1,1,29,30,[[868,1,1,29,30]]],[32,1,1,30,31,[[899,1,1,30,31]]]],[5417,6006,6779,6786,6788,6797,6951,6958,6961,7083,7087,7090,7091,7092,7122,7565,7795,7800,12232,13597,14050,14793,16411,16418,16587,16725,17072,20364,20439,22184,22666]]]]},{"k":"H694","v":[["Arab",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6254]]]]},{"k":"H695","v":[["*",[2,2,[[17,2,2,0,2,[[472,1,1,0,1],[473,1,1,1,2]]]],[13777,13833]]],["+",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13833]]],["dens",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13777]]]]},{"k":"H696","v":[["wait",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19183]]]]},{"k":"H697","v":[["*",[24,21,[[1,7,5,0,5,[[59,7,5,0,5]]],[2,1,1,5,6,[[100,1,1,5,6]]],[4,1,1,6,7,[[180,1,1,6,7]]],[6,2,2,7,9,[[216,1,1,7,8],[217,1,1,8,9]]],[10,1,1,9,10,[[298,1,1,9,10]]],[13,1,1,10,11,[[372,1,1,10,11]]],[17,1,1,11,12,[[474,1,1,11,12]]],[18,3,3,12,15,[[555,1,1,12,13],[582,1,1,13,14],[586,1,1,14,15]]],[19,1,1,15,16,[[657,1,1,15,16]]],[23,1,1,16,17,[[790,1,1,16,17]]],[28,3,2,17,19,[[876,2,1,17,18],[877,1,1,18,19]]],[33,2,2,19,21,[[902,2,2,19,21]]]],[1781,1789,1790,1791,1796,3019,5649,6659,6706,9022,11310,13854,15159,15640,15778,17278,20068,22295,22336,22727,22729]]],["+",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20068]]],["grasshopper",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13854]]],["grasshoppers",[2,2,[[6,2,2,0,2,[[216,1,1,0,1],[217,1,1,1,2]]]],[6659,6706]]],["locust",[9,8,[[1,1,1,0,1,[[59,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[10,1,1,3,4,[[298,1,1,3,4]]],[18,2,2,4,6,[[555,1,1,4,5],[586,1,1,5,6]]],[28,3,2,6,8,[[876,2,1,6,7],[877,1,1,7,8]]]],[1796,3019,5649,9022,15159,15778,22295,22336]]],["locusts",[11,10,[[1,6,5,0,5,[[59,6,5,0,5]]],[13,1,1,5,6,[[372,1,1,5,6]]],[18,1,1,6,7,[[582,1,1,6,7]]],[19,1,1,7,8,[[657,1,1,7,8]]],[33,2,2,8,10,[[902,2,2,8,10]]]],[1781,1789,1790,1791,1796,11310,15640,17278,22727,22729]]]]},{"k":"H698","v":[["spoils",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18129]]]]},{"k":"H699","v":[["*",[9,9,[[0,2,2,0,2,[[6,1,1,0,1],[7,1,1,1,2]]],[11,2,2,2,4,[[319,2,2,2,4]]],[20,1,1,4,5,[[670,1,1,4,5]]],[22,2,2,5,7,[[702,1,1,5,6],[738,1,1,6,7]]],[27,1,1,7,8,[[874,1,1,7,8]]],[38,1,1,8,9,[[927,1,1,8,9]]]],[170,185,9709,9726,17526,18113,18829,22269,23130]]],["+",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22269]]],["windows",[8,8,[[0,2,2,0,2,[[6,1,1,0,1],[7,1,1,1,2]]],[11,2,2,2,4,[[319,2,2,2,4]]],[20,1,1,4,5,[[670,1,1,4,5]]],[22,2,2,5,7,[[702,1,1,5,6],[738,1,1,6,7]]],[38,1,1,7,8,[[927,1,1,7,8]]]],[170,185,9709,9726,17526,18113,18829,23130]]]]},{"k":"H700","v":[["Aruboth",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8854]]]]},{"k":"H701","v":[["Arbite",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8688]]]]},{"k":"H702","v":[["*",[318,277,[[0,15,15,0,15,[[1,1,1,0,1],[10,4,4,1,5],[13,2,2,5,7],[14,1,1,7,8],[22,2,2,8,10],[30,1,1,10,11],[31,1,1,11,12],[32,1,1,12,13],[45,1,1,13,14],[46,1,1,14,15]]],[1,38,26,15,41,[[61,4,4,15,19],[71,1,1,19,20],[74,6,3,20,23],[75,4,3,23,26],[76,5,3,26,29],[77,1,1,29,30],[85,4,3,30,33],[86,6,3,33,36],[87,6,4,36,40],[88,1,1,40,41]]],[2,6,6,41,47,[[100,5,5,41,46],[112,1,1,46,47]]],[3,37,34,47,81,[[117,6,5,47,52],[118,8,7,52,59],[123,4,4,59,63],[125,3,3,63,66],[132,1,1,66,67],[141,1,1,67,68],[142,5,4,68,72],[144,1,1,72,73],[145,8,8,73,81]]],[4,2,2,81,83,[[155,1,1,81,82],[174,1,1,82,83]]],[5,12,12,83,95,[[191,1,1,83,84],[201,1,1,84,85],[204,1,1,85,86],[205,1,1,86,87],[207,8,8,87,95]]],[6,7,7,95,102,[[219,1,1,95,96],[221,1,1,96,97],[229,1,1,97,98],[230,3,3,98,101],[231,1,1,101,102]]],[8,6,6,102,108,[[239,1,1,102,103],[257,1,1,103,104],[260,1,1,104,105],[262,1,1,105,106],[265,2,2,106,108]]],[9,2,2,108,110,[[287,2,2,108,110]]],[10,22,18,110,128,[[296,1,1,110,111],[297,11,8,111,119],[298,1,1,119,120],[299,1,1,120,121],[300,1,1,121,122],[305,1,1,122,123],[308,4,3,123,126],[312,2,2,126,128]]],[11,3,3,128,131,[[319,1,1,128,129],[326,1,1,129,130],[330,1,1,130,131]]],[12,36,34,131,165,[[340,1,1,131,132],[342,1,1,132,133],[344,2,2,133,135],[346,2,2,135,137],[349,1,1,137,138],[357,1,1,138,139],[358,2,2,139,141],[360,5,4,141,145],[361,2,2,145,147],[362,3,3,147,150],[363,3,2,150,152],[364,13,13,152,165]]],[13,11,11,165,176,[[367,1,1,165,166],[369,1,1,166,167],[370,1,1,167,168],[374,1,1,168,169],[375,1,1,169,170],[379,2,2,170,172],[384,1,1,172,173],[391,1,1,173,174],[396,1,1,174,175],[401,1,1,175,176]]],[14,10,9,176,185,[[403,2,2,176,178],[404,7,6,178,184],[408,1,1,184,185]]],[15,10,10,185,195,[[418,1,1,185,186],[419,6,6,186,192],[421,1,1,192,193],[423,2,2,193,195]]],[16,5,5,195,200,[[434,5,5,195,200]]],[17,3,3,200,203,[[436,1,1,200,201],[477,2,2,201,203]]],[19,5,5,203,208,[[657,5,5,203,208]]],[22,3,3,208,211,[[689,1,1,208,209],[695,1,1,209,210],[714,1,1,210,211]]],[23,6,5,211,216,[[759,1,1,211,212],[780,1,1,212,213],[793,2,1,213,214],[796,2,2,214,216]]],[25,52,37,216,253,[[802,12,8,216,224],[808,1,1,224,225],[811,8,6,225,231],[815,1,1,231,232],[838,1,1,232,233],[841,4,3,233,236],[842,1,1,236,237],[843,1,1,237,238],[844,9,5,238,243],[846,2,2,243,245],[847,4,3,245,248],[849,8,5,248,253]]],[26,7,5,253,258,[[850,1,1,253,254],[857,4,2,254,256],[859,1,1,256,257],[860,1,1,257,258]]],[29,8,8,258,266,[[879,5,5,258,263],[880,3,3,263,266]]],[36,4,4,266,270,[[909,1,1,266,267],[910,3,3,267,270]]],[37,8,7,270,277,[[911,3,3,270,273],[912,1,1,273,274],[916,2,2,274,276],[917,2,1,276,277]]]],[40,279,281,282,283,341,345,373,586,587,914,934,961,1408,1444,1822,1834,1856,1857,2114,2207,2221,2229,2237,2243,2267,2274,2276,2288,2310,2575,2581,2602,2607,2617,2624,2635,2638,2652,2662,2674,3017,3018,3020,3024,3039,3407,3631,3633,3635,3641,3647,3662,3664,3666,3667,3674,3681,3688,3857,3858,3935,3938,3968,3970,3976,4243,4480,4514,4532,4536,4539,4593,4621,4623,4625,4628,4631,4634,4637,4640,4986,5482,5944,6238,6321,6328,6399,6403,6405,6410,6412,6416,6418,6420,6788,6869,7026,7056,7071,7101,7114,7299,7789,7874,7937,7988,7995,8600,8602,8897,8936,8953,8961,8964,8966,8968,8972,8976,9050,9079,9105,9282,9360,9363,9374,9486,9521,9710,9909,10037,10366,10446,10536,10542,10639,10641,10746,10932,10939,10954,10987,10988,10993,10995,11028,11033,11051,11067,11077,11094,11095,11110,11111,11113,11114,11116,11117,11118,11119,11120,11121,11122,11123,11124,11208,11231,11259,11364,11389,11456,11474,11547,11727,11842,11967,12026,12027,12034,12042,12058,12067,12091,12094,12170,12405,12432,12443,12454,12463,12486,12489,12512,12594,12606,12849,12851,12852,12853,12855,12888,13934,13938,17266,17269,17272,17275,17280,17896,17989,18331,19318,19865,20163,20297,20306,20469,20470,20472,20474,20479,20480,20481,20482,20579,20642,20643,20644,20645,20647,20654,20752,21406,21478,21518,21519,21531,21572,21586,21587,21588,21589,21592,21649,21651,21676,21677,21678,21718,21732,21734,21735,21736,21754,21969,21983,22019,22040,22367,22370,22373,22375,22377,22380,22383,22385,22855,22865,22873,22875,22885,22896,22898,22905,22948,22952,22963]]],["+",[52,50,[[0,3,3,0,3,[[13,1,1,0,1],[30,1,1,1,2],[45,1,1,2,3]]],[1,2,2,3,5,[[61,2,2,3,5]]],[2,1,1,5,6,[[112,1,1,5,6]]],[3,15,15,6,21,[[117,1,1,6,7],[118,1,1,7,8],[125,3,3,8,11],[132,1,1,11,12],[144,1,1,12,13],[145,8,8,13,21]]],[5,3,3,21,24,[[191,1,1,21,22],[201,1,1,22,23],[204,1,1,23,24]]],[10,1,1,24,25,[[298,1,1,24,25]]],[11,1,1,25,26,[[330,1,1,25,26]]],[12,3,3,26,29,[[361,1,1,26,27],[362,2,2,27,29]]],[13,3,3,29,32,[[379,1,1,29,30],[396,1,1,30,31],[401,1,1,31,32]]],[14,2,2,32,34,[[404,1,1,32,33],[408,1,1,33,34]]],[15,1,1,34,35,[[419,1,1,34,35]]],[16,5,5,35,40,[[434,5,5,35,40]]],[17,1,1,40,41,[[477,1,1,40,41]]],[22,2,2,41,43,[[689,1,1,41,42],[714,1,1,42,43]]],[23,1,1,43,44,[[793,1,1,43,44]]],[25,7,5,44,49,[[811,2,1,44,45],[838,1,1,45,46],[841,1,1,46,47],[844,2,1,47,48],[846,1,1,48,49]]],[37,1,1,49,50,[[916,1,1,49,50]]]],[341,914,1408,1822,1834,3407,3631,3662,3968,3970,3976,4243,4593,4621,4623,4625,4628,4631,4634,4637,4640,5944,6238,6321,9050,10037,11028,11051,11067,11474,11842,11967,12091,12170,12486,12849,12851,12852,12853,12855,13934,17896,18331,20163,20654,21406,21478,21589,21651,22948]]],["Four",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21518]]],["four",[260,226,[[0,12,12,0,12,[[1,1,1,0,1],[10,4,4,1,5],[13,1,1,5,6],[14,1,1,6,7],[22,2,2,7,9],[31,1,1,9,10],[32,1,1,10,11],[46,1,1,11,12]]],[1,36,24,12,36,[[61,2,2,12,14],[71,1,1,14,15],[74,6,3,15,18],[75,4,3,18,21],[76,5,3,21,24],[77,1,1,24,25],[85,4,3,25,28],[86,6,3,28,31],[87,6,4,31,35],[88,1,1,35,36]]],[2,5,5,36,41,[[100,5,5,36,41]]],[3,22,19,41,60,[[117,5,4,41,45],[118,7,6,45,51],[123,4,4,51,55],[141,1,1,55,56],[142,5,4,56,60]]],[4,2,2,60,62,[[155,1,1,60,61],[174,1,1,61,62]]],[5,9,9,62,71,[[205,1,1,62,63],[207,8,8,63,71]]],[6,7,7,71,78,[[219,1,1,71,72],[221,1,1,72,73],[229,1,1,73,74],[230,3,3,74,77],[231,1,1,77,78]]],[8,6,6,78,84,[[239,1,1,78,79],[257,1,1,79,80],[260,1,1,80,81],[262,1,1,81,82],[265,2,2,82,84]]],[9,2,2,84,86,[[287,2,2,84,86]]],[10,20,16,86,102,[[296,1,1,86,87],[297,11,8,87,95],[299,1,1,95,96],[300,1,1,96,97],[305,1,1,97,98],[308,4,3,98,101],[312,1,1,101,102]]],[11,2,2,102,104,[[319,1,1,102,103],[326,1,1,103,104]]],[12,33,31,104,135,[[340,1,1,104,105],[342,1,1,105,106],[344,2,2,106,108],[346,2,2,108,110],[349,1,1,110,111],[357,1,1,111,112],[358,2,2,112,114],[360,5,4,114,118],[361,1,1,118,119],[362,1,1,119,120],[363,3,2,120,122],[364,13,13,122,135]]],[13,7,7,135,142,[[367,1,1,135,136],[370,1,1,136,137],[374,1,1,137,138],[375,1,1,138,139],[379,1,1,139,140],[384,1,1,140,141],[391,1,1,141,142]]],[14,8,7,142,149,[[403,2,2,142,144],[404,6,5,144,149]]],[15,8,8,149,157,[[418,1,1,149,150],[419,5,5,150,155],[423,2,2,155,157]]],[17,2,2,157,159,[[436,1,1,157,158],[477,1,1,158,159]]],[19,5,5,159,164,[[657,5,5,159,164]]],[22,1,1,164,165,[[695,1,1,164,165]]],[23,5,5,165,170,[[759,1,1,165,166],[780,1,1,166,167],[793,1,1,167,168],[796,2,2,168,170]]],[25,44,34,170,204,[[802,12,8,170,178],[808,1,1,178,179],[811,6,6,179,185],[815,1,1,185,186],[841,2,2,186,188],[842,1,1,188,189],[843,1,1,189,190],[844,7,5,190,195],[846,1,1,195,196],[847,4,3,196,199],[849,8,5,199,204]]],[26,7,5,204,209,[[850,1,1,204,205],[857,4,2,205,207],[859,1,1,207,208],[860,1,1,208,209]]],[29,8,8,209,217,[[879,5,5,209,214],[880,3,3,214,217]]],[36,4,4,217,221,[[909,1,1,217,218],[910,3,3,218,221]]],[37,5,5,221,226,[[911,3,3,221,224],[912,1,1,224,225],[916,1,1,225,226]]]],[40,279,281,282,283,345,373,586,587,934,961,1444,1856,1857,2114,2207,2221,2229,2237,2243,2267,2274,2276,2288,2310,2575,2581,2602,2607,2617,2624,2635,2638,2652,2662,2674,3017,3018,3020,3024,3039,3633,3635,3641,3647,3664,3666,3667,3674,3681,3688,3857,3858,3935,3938,4480,4514,4532,4536,4539,4986,5482,6328,6399,6403,6405,6410,6412,6416,6418,6420,6788,6869,7026,7056,7071,7101,7114,7299,7789,7874,7937,7988,7995,8600,8602,8897,8936,8953,8961,8964,8966,8968,8972,8976,9079,9105,9282,9360,9363,9374,9486,9710,9909,10366,10446,10536,10542,10639,10641,10746,10932,10939,10954,10987,10988,10993,10995,11033,11077,11094,11095,11110,11111,11113,11114,11116,11117,11118,11119,11120,11121,11122,11123,11124,11208,11259,11364,11389,11456,11547,11727,12026,12027,12034,12042,12058,12067,12094,12405,12432,12443,12454,12463,12489,12594,12606,12888,13938,17266,17269,17272,17275,17280,17989,19318,19865,20163,20297,20306,20469,20470,20472,20474,20479,20480,20481,20482,20579,20642,20643,20644,20645,20647,20654,20752,21518,21519,21531,21572,21586,21587,21588,21589,21592,21649,21676,21677,21678,21718,21732,21734,21735,21736,21754,21969,21983,22019,22040,22367,22370,22373,22375,22377,22380,22383,22385,22855,22865,22873,22875,22885,22896,22898,22905,22952]]],["fourth",[5,4,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[369,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[37,2,1,3,4,[[917,2,1,3,4]]]],[9521,11231,12512,22963]]]]},{"k":"H703","v":[["four",[8,6,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,7,5,1,6,[[852,1,1,1,2],[856,6,4,2,6]]]],[12168,21832,21935,21936,21939,21950]]]]},{"k":"H704","v":[["Arba",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[207,1,1,1,2]]]],[6215,6392]]]]},{"k":"H705","v":[["*",[136,124,[[0,15,12,0,12,[[4,1,1,0,1],[6,5,3,1,4],[7,1,1,4,5],[17,3,2,5,7],[24,1,1,7,8],[25,1,1,8,9],[31,1,1,9,10],[46,1,1,10,11],[49,1,1,11,12]]],[1,9,7,12,19,[[65,1,1,12,13],[73,2,1,13,14],[75,2,2,14,16],[83,2,1,16,17],[85,2,2,17,19]]],[2,1,1,19,20,[[114,1,1,19,20]]],[3,20,19,20,39,[[117,4,4,20,24],[118,4,4,24,28],[129,1,1,28,29],[130,3,2,29,31],[142,4,4,31,35],[148,1,1,35,36],[149,1,1,36,37],[151,2,2,37,39]]],[4,16,11,39,50,[[153,1,1,39,40],[154,1,1,40,41],[160,2,2,41,43],[161,8,4,43,47],[162,2,1,47,48],[177,1,1,48,49],[181,1,1,49,50]]],[5,5,5,50,55,[[190,1,1,50,51],[191,1,1,51,52],[200,2,2,52,54],[207,1,1,54,55]]],[6,7,7,55,62,[[213,1,1,55,56],[215,2,2,56,58],[218,1,1,58,59],[222,2,2,59,61],[223,1,1,61,62]]],[8,2,2,62,64,[[239,1,1,62,63],[252,1,1,63,64]]],[9,4,4,64,68,[[268,1,1,64,65],[271,1,1,65,66],[276,1,1,66,67],[281,1,1,67,68]]],[10,10,9,68,77,[[292,1,1,68,69],[294,1,1,69,70],[296,1,1,70,71],[297,2,2,71,73],[301,1,1,73,74],[304,1,1,74,75],[305,1,1,75,76],[309,2,1,76,77]]],[11,5,5,77,82,[[314,1,1,77,78],[320,1,1,78,79],[322,1,1,79,80],[324,1,1,80,81],[326,1,1,81,82]]],[12,5,5,82,87,[[342,1,1,82,83],[349,1,1,83,84],[356,1,1,84,85],[363,1,1,85,86],[366,1,1,86,87]]],[13,5,5,87,92,[[375,1,1,87,88],[378,1,1,88,89],[382,1,1,89,90],[388,1,1,90,91],[390,1,1,91,92]]],[14,7,7,92,99,[[404,7,7,92,99]]],[15,13,13,99,112,[[417,1,1,99,100],[419,10,10,100,110],[421,1,1,110,111],[423,1,1,111,112]]],[17,1,1,112,113,[[477,1,1,112,113]]],[18,1,1,113,114,[[572,1,1,113,114]]],[23,1,1,114,115,[[796,1,1,114,115]]],[25,6,6,115,121,[[805,1,1,115,116],[830,3,3,116,119],[842,1,1,119,120],[847,1,1,120,121]]],[29,2,2,121,123,[[880,1,1,121,122],[883,1,1,122,123]]],[31,1,1,123,124,[[891,1,1,123,124]]]],[118,163,171,176,189,452,453,678,726,943,1448,1509,1982,2195,2254,2256,2524,2590,2592,3477,3625,3629,3637,3645,3669,3673,3677,3686,4100,4141,4142,4496,4507,4530,4539,4731,4798,4851,4852,4895,4945,5139,5141,5166,5168,5175,5182,5196,5550,5684,5923,5940,6194,6197,6422,6579,6631,6654,6747,6875,6883,6885,7315,7634,8059,8136,8258,8396,8781,8870,8913,8937,8972,9150,9239,9259,9395,9575,9736,9807,9851,9919,10446,10756,10925,11108,11191,11394,11450,11522,11646,11678,12035,12037,12051,12052,12061,12065,12093,12397,12433,12435,12448,12449,12456,12461,12464,12482,12487,12488,12532,12601,13938,15464,20306,20535,21194,21195,21196,21528,21677,22389,22448,22562]]],["+",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[453]]],["Forty",[4,4,[[4,1,1,0,1,[[177,1,1,0,1]]],[5,1,1,1,2,[[200,1,1,1,2]]],[13,1,1,2,3,[[388,1,1,2,3]]],[18,1,1,3,4,[[572,1,1,3,4]]]],[5550,6194,11646,15464]]],["fortieth",[4,4,[[3,1,1,0,1,[[149,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[12,1,1,2,3,[[363,1,1,2,3]]],[13,1,1,3,4,[[382,1,1,3,4]]]],[4798,4895,11108,11522]]],["forty",[127,116,[[0,14,12,0,12,[[4,1,1,0,1],[6,5,3,1,4],[7,1,1,4,5],[17,2,2,5,7],[24,1,1,7,8],[25,1,1,8,9],[31,1,1,9,10],[46,1,1,10,11],[49,1,1,11,12]]],[1,9,7,12,19,[[65,1,1,12,13],[73,2,1,13,14],[75,2,2,14,16],[83,2,1,16,17],[85,2,2,17,19]]],[2,1,1,19,20,[[114,1,1,19,20]]],[3,19,18,20,38,[[117,4,4,20,24],[118,4,4,24,28],[129,1,1,28,29],[130,3,2,29,31],[142,4,4,31,35],[148,1,1,35,36],[151,2,2,36,38]]],[4,14,9,38,47,[[154,1,1,38,39],[160,2,2,39,41],[161,8,4,41,45],[162,2,1,45,46],[181,1,1,46,47]]],[5,4,4,47,51,[[190,1,1,47,48],[191,1,1,48,49],[200,1,1,49,50],[207,1,1,50,51]]],[6,7,7,51,58,[[213,1,1,51,52],[215,2,2,52,54],[218,1,1,54,55],[222,2,2,55,57],[223,1,1,57,58]]],[8,2,2,58,60,[[239,1,1,58,59],[252,1,1,59,60]]],[9,4,4,60,64,[[268,1,1,60,61],[271,1,1,61,62],[276,1,1,62,63],[281,1,1,63,64]]],[10,10,9,64,73,[[292,1,1,64,65],[294,1,1,65,66],[296,1,1,66,67],[297,2,2,67,69],[301,1,1,69,70],[304,1,1,70,71],[305,1,1,71,72],[309,2,1,72,73]]],[11,5,5,73,78,[[314,1,1,73,74],[320,1,1,74,75],[322,1,1,75,76],[324,1,1,76,77],[326,1,1,77,78]]],[12,4,4,78,82,[[342,1,1,78,79],[349,1,1,79,80],[356,1,1,80,81],[366,1,1,81,82]]],[13,3,3,82,85,[[375,1,1,82,83],[378,1,1,83,84],[390,1,1,84,85]]],[14,7,7,85,92,[[404,7,7,85,92]]],[15,13,13,92,105,[[417,1,1,92,93],[419,10,10,93,103],[421,1,1,103,104],[423,1,1,104,105]]],[17,1,1,105,106,[[477,1,1,105,106]]],[23,1,1,106,107,[[796,1,1,106,107]]],[25,6,6,107,113,[[805,1,1,107,108],[830,3,3,108,111],[842,1,1,111,112],[847,1,1,112,113]]],[29,2,2,113,115,[[880,1,1,113,114],[883,1,1,114,115]]],[31,1,1,115,116,[[891,1,1,115,116]]]],[118,163,171,176,189,452,453,678,726,943,1448,1509,1982,2195,2254,2256,2524,2590,2592,3477,3625,3629,3637,3645,3669,3673,3677,3686,4100,4141,4142,4496,4507,4530,4539,4731,4851,4852,4945,5139,5141,5166,5168,5175,5182,5196,5684,5923,5940,6197,6422,6579,6631,6654,6747,6875,6883,6885,7315,7634,8059,8136,8258,8396,8781,8870,8913,8937,8972,9150,9239,9259,9395,9575,9736,9807,9851,9919,10446,10756,10925,11191,11394,11450,11678,12035,12037,12051,12052,12061,12065,12093,12397,12433,12435,12448,12449,12456,12461,12464,12482,12487,12488,12532,12601,13938,20306,20535,21194,21195,21196,21528,21677,22389,22448,22562]]]]},{"k":"H706","v":[["fourfold",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8292]]]]},{"k":"H707","v":[["*",[13,13,[[1,4,4,0,4,[[77,1,1,0,1],[84,1,1,1,2],[88,2,2,2,4]]],[6,1,1,4,5,[[226,1,1,4,5]]],[8,1,1,5,6,[[252,1,1,5,6]]],[9,1,1,6,7,[[287,1,1,6,7]]],[11,1,1,7,8,[[335,1,1,7,8]]],[12,2,2,8,10,[[348,1,1,8,9],[357,1,1,9,10]]],[22,3,3,10,13,[[697,1,1,10,11],[716,1,1,11,12],[737,1,1,12,13]]]],[2325,2566,2686,2691,6962,7625,8599,10172,10696,10931,18013,18402,18805]]],["+",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6962]]],["weave",[2,2,[[22,2,2,0,2,[[697,1,1,0,1],[737,1,1,1,2]]]],[18013,18805]]],["weaver",[2,2,[[1,1,1,0,1,[[84,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]]],[2566,18402]]],["weaver's",[4,4,[[8,1,1,0,1,[[252,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]],[12,2,2,2,4,[[348,1,1,2,3],[357,1,1,3,4]]]],[7625,8599,10696,10931]]],["wove",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10172]]],["woven",[3,3,[[1,3,3,0,3,[[77,1,1,0,1],[88,2,2,1,3]]]],[2325,2686,2691]]]]},{"k":"H708","v":[["*",[2,2,[[6,1,1,0,1,[[226,1,1,0,1]]],[17,1,1,1,2,[[442,1,1,1,2]]]],[6963,13014]]],["beam",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6963]]],["shuttle",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13014]]]]},{"k":"H709","v":[["Argob",[5,5,[[4,3,3,0,3,[[155,3,3,0,3]]],[10,1,1,3,4,[[294,1,1,3,4]]],[11,1,1,4,5,[[327,1,1,4,5]]]],[4979,4988,4989,8857,9950]]]]},{"k":"H710","v":[["purple",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11218]]]]},{"k":"H711","v":[["scarlet",[3,3,[[26,3,3,0,3,[[854,3,3,0,3]]]],[21881,21890,21903]]]]},{"k":"H712","v":[["coffer",[3,3,[[8,3,3,0,3,[[241,3,3,0,3]]]],[7339,7342,7346]]]]},{"k":"H713","v":[["purple",[38,38,[[1,26,26,0,26,[[74,1,1,0,1],[75,3,3,1,4],[76,1,1,4,5],[77,5,5,5,10],[84,4,4,10,14],[85,3,3,14,17],[87,2,2,17,19],[88,7,7,19,26]]],[3,1,1,26,27,[[120,1,1,26,27]]],[6,1,1,27,28,[[218,1,1,27,28]]],[13,2,2,28,30,[[368,1,1,28,29],[369,1,1,29,30]]],[16,2,2,30,32,[[426,1,1,30,31],[433,1,1,31,32]]],[19,1,1,32,33,[[658,1,1,32,33]]],[21,2,2,33,35,[[673,1,1,33,34],[677,1,1,34,35]]],[23,1,1,35,36,[[754,1,1,35,36]]],[25,2,2,36,38,[[828,2,2,36,38]]]],[2199,2236,2266,2271,2288,2298,2299,2301,2308,2326,2537,2554,2556,2566,2574,2601,2603,2651,2656,2665,2666,2667,2669,2672,2688,2693,3756,6745,11225,11243,12708,12832,17306,17581,17632,19210,21128,21137]]]]},{"k":"H714","v":[["Ard",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1407,4529]]]]},{"k":"H715","v":[["Ardon",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10324]]]]},{"k":"H716","v":[["Ardites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4529]]]]},{"k":"H717","v":[["*",[2,2,[[18,1,1,0,1,[[557,1,1,0,1]]],[21,1,1,1,2,[[675,1,1,1,2]]]],[15210,17599]]],["gathered",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17599]]],["pluck",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15210]]]]},{"k":"H718","v":[["*",[5,5,[[26,5,5,0,5,[[856,5,5,0,5]]]],[21935,21938,21939,21940,21946]]],["behold",[4,4,[[26,4,4,0,4,[[856,4,4,0,4]]]],[21935,21938,21940,21946]]],["lo",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21939]]]]},{"k":"H719","v":[["Arvad",[2,2,[[25,2,2,0,2,[[828,2,2,0,2]]]],[21129,21132]]]]},{"k":"H720","v":[["Arod",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4506]]]]},{"k":"H721","v":[["Arvadite",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[252,10268]]]]},{"k":"H722","v":[["*",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1402,4506]]],["Arodi",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1402]]],["Arodites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4506]]]]},{"k":"H723","v":[["stalls",[3,3,[[10,1,1,0,1,[[294,1,1,0,1]]],[13,2,2,1,3,[[375,1,1,1,2],[398,1,1,2,3]]]],[8870,11389,11903]]]]},{"k":"H724","v":[["*",[6,6,[[13,1,1,0,1,[[390,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]],[22,1,1,2,3,[[736,1,1,2,3]]],[23,3,3,3,6,[[752,1,1,3,4],[774,1,1,4,5],[777,1,1,5,6]]]],[11690,12366,18794,19175,19684,19781]]],["+",[2,2,[[13,1,1,0,1,[[390,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]]],[11690,12366]]],["health",[4,4,[[22,1,1,0,1,[[736,1,1,0,1]]],[23,3,3,1,4,[[752,1,1,1,2],[774,1,1,2,3],[777,1,1,3,4]]]],[18794,19175,19684,19781]]]]},{"k":"H725","v":[["Arumah",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6795]]]]},{"k":"H726","v":[["Syrians",[1,1,[[11,1,1,0,1,[[328,1,1,0,1]]]],[9969]]]]},{"k":"H727","v":[["*",[202,174,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,26,19,1,20,[[74,8,6,1,7],[75,2,2,7,9],[79,2,2,9,11],[80,1,1,11,12],[84,1,1,12,13],[86,3,2,13,15],[88,1,1,15,16],[89,8,4,16,20]]],[2,1,1,20,21,[[105,1,1,20,21]]],[3,6,6,21,27,[[119,1,1,21,22],[120,1,1,22,23],[123,1,1,23,24],[126,2,2,24,26],[130,1,1,26,27]]],[4,8,8,27,35,[[162,5,5,27,32],[183,3,3,32,35]]],[5,30,25,35,60,[[189,10,8,35,43],[190,7,7,43,50],[192,10,8,50,58],[193,1,1,58,59],[194,2,1,59,60]]],[6,1,1,60,61,[[230,1,1,60,61]]],[8,40,33,61,94,[[238,1,1,61,62],[239,12,11,62,73],[240,12,8,73,81],[241,10,10,81,91],[242,3,2,91,93],[249,2,1,93,94]]],[9,21,18,94,112,[[272,15,13,94,107],[273,1,1,107,108],[277,1,1,108,109],[281,4,3,109,112]]],[10,12,11,112,123,[[292,1,1,112,113],[293,1,1,113,114],[296,1,1,114,115],[298,9,8,115,123]]],[11,2,2,123,125,[[324,2,2,123,125]]],[12,34,31,125,156,[[343,1,1,125,126],[350,9,9,126,135],[352,15,13,135,148],[353,5,4,148,152],[354,1,1,152,153],[359,1,1,153,154],[365,2,2,154,156]]],[13,18,16,156,172,[[367,1,1,156,157],[371,9,8,157,165],[372,2,2,165,167],[374,1,1,167,168],[390,4,3,168,171],[401,1,1,171,172]]],[18,1,1,172,173,[[609,1,1,172,173]]],[23,1,1,173,174,[[747,1,1,173,174]]]],[1532,2205,2209,2210,2211,2216,2217,2268,2269,2388,2408,2427,2543,2605,2609,2699,2710,2712,2727,2728,3203,3723,3748,3939,4021,4023,4152,5187,5188,5189,5191,5194,5737,5753,5754,5896,5899,5901,5904,5906,5907,5908,5910,5915,5917,5919,5920,5921,5926,5928,5953,5955,5956,5957,5958,5960,5961,5962,5982,6035,7081,7279,7300,7301,7302,7303,7308,7310,7314,7315,7316,7318,7319,7320,7321,7322,7323,7326,7327,7329,7330,7332,7333,7334,7339,7342,7344,7346,7349,7350,7352,7353,7354,7526,8159,8160,8161,8163,8164,8166,8167,8168,8169,8170,8172,8173,8174,8182,8270,8413,8414,8418,8796,8831,8915,8986,8988,8989,8990,8991,8992,8994,9006,9859,9860,10485,10763,10765,10766,10767,10769,10770,10772,10773,10774,10792,10793,10794,10803,10805,10806,10814,10815,10816,10817,10818,10819,10820,10821,10824,10826,10857,10864,10983,11145,11161,11198,11270,11272,11273,11274,11275,11276,11277,11278,11293,11323,11357,11685,11687,11688,11969,16159,19018]]],["+",[2,2,[[1,1,1,0,1,[[74,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]]],[2211,10485]]],["ark",[193,166,[[1,25,18,0,18,[[74,7,5,0,5],[75,2,2,5,7],[79,2,2,7,9],[80,1,1,9,10],[84,1,1,10,11],[86,3,2,11,13],[88,1,1,13,14],[89,8,4,14,18]]],[2,1,1,18,19,[[105,1,1,18,19]]],[3,6,6,19,25,[[119,1,1,19,20],[120,1,1,20,21],[123,1,1,21,22],[126,2,2,22,24],[130,1,1,24,25]]],[4,8,8,25,33,[[162,5,5,25,30],[183,3,3,30,33]]],[5,30,25,33,58,[[189,10,8,33,41],[190,7,7,41,48],[192,10,8,48,56],[193,1,1,56,57],[194,2,1,57,58]]],[6,1,1,58,59,[[230,1,1,58,59]]],[8,40,33,59,92,[[238,1,1,59,60],[239,12,11,60,71],[240,12,8,71,79],[241,10,10,79,89],[242,3,2,89,91],[249,2,1,91,92]]],[9,21,18,92,110,[[272,15,13,92,105],[273,1,1,105,106],[277,1,1,106,107],[281,4,3,107,110]]],[10,12,11,110,121,[[292,1,1,110,111],[293,1,1,111,112],[296,1,1,112,113],[298,9,8,113,121]]],[12,33,30,121,151,[[350,9,9,121,130],[352,15,13,130,143],[353,5,4,143,147],[354,1,1,147,148],[359,1,1,148,149],[365,2,2,149,151]]],[13,14,13,151,164,[[367,1,1,151,152],[371,9,8,152,160],[372,2,2,160,162],[374,1,1,162,163],[401,1,1,163,164]]],[18,1,1,164,165,[[609,1,1,164,165]]],[23,1,1,165,166,[[747,1,1,165,166]]]],[2205,2209,2210,2216,2217,2268,2269,2388,2408,2427,2543,2605,2609,2699,2710,2712,2727,2728,3203,3723,3748,3939,4021,4023,4152,5187,5188,5189,5191,5194,5737,5753,5754,5896,5899,5901,5904,5906,5907,5908,5910,5915,5917,5919,5920,5921,5926,5928,5953,5955,5956,5957,5958,5960,5961,5962,5982,6035,7081,7279,7300,7301,7302,7303,7308,7310,7314,7315,7316,7318,7319,7320,7321,7322,7323,7326,7327,7329,7330,7332,7333,7334,7339,7342,7344,7346,7349,7350,7352,7353,7354,7526,8159,8160,8161,8163,8164,8166,8167,8168,8169,8170,8172,8173,8174,8182,8270,8413,8414,8418,8796,8831,8915,8986,8988,8989,8990,8991,8992,8994,9006,10763,10765,10766,10767,10769,10770,10772,10773,10774,10792,10793,10794,10803,10805,10806,10814,10815,10816,10817,10818,10819,10820,10821,10824,10826,10857,10864,10983,11145,11161,11198,11270,11272,11273,11274,11275,11276,11277,11278,11293,11323,11357,11969,16159,19018]]],["chest",[6,5,[[11,2,2,0,2,[[324,2,2,0,2]]],[13,4,3,2,5,[[390,4,3,2,5]]]],[9859,9860,11685,11687,11688]]],["coffin",[1,1,[[0,1,1,0,1,[[49,1,1,0,1]]]],[1532]]]]},{"k":"H728","v":[["Araunah",[9,7,[[9,9,7,0,7,[[290,9,7,0,7]]]],[8708,8710,8712,8713,8714,8715,8716]]]]},{"k":"H729","v":[["cedar",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21145]]]]},{"k":"H730","v":[["*",[73,69,[[2,5,5,0,5,[[103,5,5,0,5]]],[3,2,2,5,7,[[135,1,1,5,6],[140,1,1,6,7]]],[6,1,1,7,8,[[219,1,1,7,8]]],[9,3,3,8,11,[[271,1,1,8,9],[273,2,2,9,11]]],[10,20,18,11,29,[[294,1,1,11,12],[295,3,3,12,15],[296,8,7,15,22],[297,6,5,22,27],[299,1,1,27,28],[300,1,1,28,29]]],[11,2,2,29,31,[[326,1,1,29,30],[331,1,1,30,31]]],[12,5,4,31,35,[[351,1,1,31,32],[354,2,2,32,34],[359,2,1,34,35]]],[13,5,5,35,40,[[367,1,1,35,36],[368,2,2,36,38],[375,1,1,38,39],[391,1,1,39,40]]],[14,1,1,40,41,[[405,1,1,40,41]]],[17,1,1,41,42,[[475,1,1,41,42]]],[18,6,5,42,47,[[506,2,1,42,43],[557,1,1,43,44],[569,1,1,44,45],[581,1,1,45,46],[625,1,1,46,47]]],[21,3,3,47,50,[[671,1,1,47,48],[675,1,1,48,49],[678,1,1,49,50]]],[22,6,6,50,56,[[680,1,1,50,51],[687,1,1,51,52],[692,1,1,52,53],[715,1,1,53,54],[719,1,1,54,55],[722,1,1,55,56]]],[23,4,4,56,60,[[766,4,4,56,60]]],[25,6,6,60,66,[[818,3,3,60,63],[828,1,1,63,64],[832,2,2,64,66]]],[29,1,1,66,67,[[880,1,1,66,67]]],[37,2,2,67,69,[[921,2,2,67,69]]]],[3115,3117,3160,3162,3163,4295,4452,6769,8143,8182,8187,8877,8884,8886,8888,8905,8906,8911,8912,8914,8916,8932,8936,8937,8941,8945,8946,9062,9106,9905,10084,10775,10864,10869,10968,11209,11214,11219,11391,11722,12104,13881,14313,15208,15423,15587,16380,17554,17613,17649,17698,17839,17936,18376,18470,18547,19461,19468,19469,19477,20828,20847,20848,21126,21233,21238,22388,23029,23030]]],["cedar",[43,40,[[2,5,5,0,5,[[103,5,5,0,5]]],[3,1,1,5,6,[[135,1,1,5,6]]],[9,3,3,6,9,[[271,1,1,6,7],[273,2,2,7,9]]],[10,16,14,9,23,[[295,2,2,9,11],[296,8,7,11,18],[297,5,4,18,22],[299,1,1,22,23]]],[11,1,1,23,24,[[326,1,1,23,24]]],[12,2,1,24,25,[[359,2,1,24,25]]],[13,2,2,25,27,[[368,1,1,25,26],[391,1,1,26,27]]],[14,1,1,27,28,[[405,1,1,27,28]]],[17,1,1,28,29,[[475,1,1,28,29]]],[18,1,1,29,30,[[569,1,1,29,30]]],[21,2,2,30,32,[[671,1,1,30,31],[678,1,1,31,32]]],[22,1,1,32,33,[[719,1,1,32,33]]],[23,2,2,33,35,[[766,2,2,33,35]]],[25,4,4,35,39,[[818,3,3,35,38],[832,1,1,38,39]]],[37,1,1,39,40,[[921,1,1,39,40]]]],[3115,3117,3160,3162,3163,4295,8143,8182,8187,8886,8888,8905,8906,8911,8912,8914,8916,8932,8936,8937,8941,8946,9062,9905,10968,11219,11722,12104,13881,15423,17554,17649,18470,19468,19469,20828,20847,20848,21233,23030]]],["cedars",[24,23,[[6,1,1,0,1,[[219,1,1,0,1]]],[10,2,2,1,3,[[297,1,1,1,2],[300,1,1,2,3]]],[12,3,3,3,6,[[351,1,1,3,4],[354,2,2,4,6]]],[13,1,1,6,7,[[368,1,1,6,7]]],[18,5,4,7,11,[[506,2,1,7,8],[557,1,1,8,9],[581,1,1,9,10],[625,1,1,10,11]]],[21,1,1,11,12,[[675,1,1,11,12]]],[22,5,5,12,17,[[680,1,1,12,13],[687,1,1,13,14],[692,1,1,14,15],[715,1,1,15,16],[722,1,1,16,17]]],[23,2,2,17,19,[[766,2,2,17,19]]],[25,2,2,19,21,[[828,1,1,19,20],[832,1,1,20,21]]],[29,1,1,21,22,[[880,1,1,21,22]]],[37,1,1,22,23,[[921,1,1,22,23]]]],[6769,8945,9106,10775,10864,10869,11214,14313,15208,15587,16380,17613,17698,17839,17936,18376,18547,19461,19477,21126,21238,22388,23029]]],["tree",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8877]]],["trees",[5,5,[[3,1,1,0,1,[[140,1,1,0,1]]],[10,1,1,1,2,[[295,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[13,2,2,3,5,[[367,1,1,3,4],[375,1,1,4,5]]]],[4452,8884,10084,11209,11391]]]]},{"k":"H731","v":[["work",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22819]]]]},{"k":"H732","v":[["*",[5,5,[[6,1,1,0,1,[[229,1,1,0,1]]],[9,1,1,1,2,[[278,1,1,1,2]]],[17,1,1,2,3,[[469,1,1,2,3]]],[23,2,2,3,5,[[753,1,1,3,4],[758,1,1,4,5]]]],[7041,8290,13691,19177,19301]]],["goeth",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13691]]],["man",[2,2,[[9,1,1,0,1,[[278,1,1,0,1]]],[23,1,1,1,2,[[758,1,1,1,2]]]],[8290,19301]]],["men",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19177]]],["wayfaring",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7041]]]]},{"k":"H733","v":[["Arah",[4,4,[[12,1,1,0,1,[[344,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,2,2,2,4,[[418,1,1,2,3],[419,1,1,3,4]]]],[10574,12032,12419,12430]]]]},{"k":"H734","v":[["*",[59,58,[[0,2,2,0,2,[[17,1,1,0,1],[48,1,1,1,2]]],[6,2,1,2,3,[[215,2,1,2,3]]],[17,11,11,3,14,[[441,2,2,3,5],[443,1,1,5,6],[448,1,1,6,7],[451,1,1,7,8],[454,1,1,8,9],[457,1,1,9,10],[465,1,1,10,11],[466,1,1,11,12],[468,1,1,12,13],[469,1,1,13,14]]],[18,15,15,14,29,[[485,1,1,14,15],[493,1,1,15,16],[494,1,1,16,17],[496,1,1,17,18],[502,2,2,18,20],[504,1,1,20,21],[521,1,1,21,22],[596,5,5,22,27],[616,1,1,27,28],[619,1,1,28,29]]],[19,19,19,29,48,[[628,1,1,29,30],[629,5,5,30,35],[630,1,1,35,36],[631,2,2,36,38],[632,1,1,38,39],[635,1,1,39,40],[636,1,1,40,41],[637,1,1,41,42],[639,1,1,42,43],[642,3,3,43,46],[644,1,1,46,47],[649,1,1,47,48]]],[22,8,8,48,56,[[680,1,1,48,49],[681,1,1,49,50],[704,2,2,50,52],[708,1,1,52,53],[711,1,1,53,54],[718,1,1,54,55],[719,1,1,55,56]]],[28,1,1,56,57,[[877,1,1,56,57]]],[32,1,1,57,58,[[896,1,1,57,58]]]],[435,1490,6629,12996,12997,13042,13180,13260,13305,13404,13569,13620,13661,13694,14020,14103,14107,14173,14255,14261,14296,14589,15907,15913,15999,16002,16026,16242,16289,16419,16441,16446,16448,16452,16453,16461,16504,16508,16523,16622,16653,16673,16747,16817,16826,16831,16896,17040,17688,17719,18137,18138,18228,18287,18434,18454,22318,22622]]],["+",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[22,1,1,1,2,[[711,1,1,1,2]]]],[6629,18287]]],["highways",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6629]]],["manner",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[435]]],["path",[9,9,[[0,1,1,0,1,[[48,1,1,0,1]]],[18,3,3,1,4,[[493,1,1,1,2],[504,1,1,2,3],[616,1,1,3,4]]],[19,3,3,4,7,[[631,2,2,4,6],[632,1,1,6,7]]],[22,2,2,7,9,[[708,1,1,7,8],[718,1,1,8,9]]]],[1490,14103,14296,16242,16504,16508,16523,18228,18434]]],["paths",[16,16,[[17,4,4,0,4,[[441,1,1,0,1],[443,1,1,1,2],[448,1,1,2,3],[468,1,1,3,4]]],[18,4,4,4,8,[[485,1,1,4,5],[494,1,1,5,6],[502,2,2,6,8]]],[19,5,5,8,13,[[629,4,4,8,12],[630,1,1,12,13]]],[22,2,2,13,15,[[680,1,1,13,14],[681,1,1,14,15]]],[32,1,1,15,16,[[896,1,1,15,16]]]],[12996,13042,13180,13661,14020,14107,14255,14261,16441,16446,16452,16453,16461,17688,17719,22622]]],["race",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14173]]],["ranks",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22318]]],["traveller",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13620]]],["troops",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12997]]],["way",[18,18,[[17,3,3,0,3,[[451,1,1,0,1],[454,1,1,1,2],[457,1,1,2,3]]],[18,6,6,3,9,[[521,1,1,3,4],[596,4,4,4,8],[619,1,1,8,9]]],[19,6,6,9,15,[[635,1,1,9,10],[637,1,1,10,11],[639,1,1,11,12],[642,3,3,12,15]]],[22,3,3,15,18,[[704,2,2,15,17],[719,1,1,17,18]]]],[13260,13305,13404,14589,15907,15999,16002,16026,16289,16622,16673,16747,16817,16826,16831,18137,18138,18454]]],["ways",[8,8,[[17,2,2,0,2,[[465,1,1,0,1],[469,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[19,5,5,3,8,[[628,1,1,3,4],[629,1,1,4,5],[636,1,1,5,6],[644,1,1,6,7],[649,1,1,7,8]]]],[13569,13694,15913,16419,16448,16653,16896,17040]]]]},{"k":"H735","v":[["ways",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[854,1,1,1,2]]]],[21874,21897]]]]},{"k":"H736","v":[["*",[2,2,[[0,1,1,0,1,[[36,1,1,0,1]]],[22,1,1,1,2,[[699,1,1,1,2]]]],[1108,18048]]],["companies",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18048]]],["company",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1108]]]]},{"k":"H737","v":[["*",[6,4,[[11,2,1,0,1,[[337,2,1,0,1]]],[19,1,1,1,2,[[642,1,1,1,2]]],[23,3,2,2,4,[[784,1,1,2,3],[796,2,1,3,4]]]],[10252,16824,19946,20310]]],["allowance",[2,1,[[11,2,1,0,1,[[337,2,1,0,1]]]],[10252]]],["diet",[2,1,[[23,2,1,0,1,[[796,2,1,0,1]]]],[20310]]],["dinner",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16824]]],["victuals",[1,1,[[23,1,1,0,1,[[784,1,1,0,1]]]],[19946]]]]},{"k":"H738","v":[["*",[80,72,[[0,2,1,0,1,[[48,2,1,0,1]]],[3,2,2,1,3,[[139,1,1,1,2],[140,1,1,2,3]]],[4,1,1,3,4,[[185,1,1,3,4]]],[6,5,4,4,8,[[224,5,4,4,8]]],[8,3,3,8,11,[[252,3,3,8,11]]],[9,3,3,11,14,[[267,1,1,11,12],[283,1,1,12,13],[289,1,1,13,14]]],[10,13,9,14,23,[[297,3,2,14,16],[300,2,2,16,18],[303,6,4,18,22],[310,2,1,22,23]]],[11,2,2,23,25,[[329,2,2,23,25]]],[12,2,2,25,27,[[348,1,1,25,26],[349,1,1,26,27]]],[13,2,2,27,29,[[375,2,2,27,29]]],[17,1,1,29,30,[[439,1,1,29,30]]],[18,6,6,30,36,[[484,1,1,30,31],[487,1,1,31,32],[494,1,1,32,33],[499,3,3,33,36]]],[19,3,3,36,39,[[649,1,1,36,37],[653,1,1,37,38],[655,1,1,38,39]]],[20,1,1,39,40,[[667,1,1,39,40]]],[21,1,1,40,41,[[674,1,1,40,41]]],[22,7,7,41,48,[[689,1,1,41,42],[693,1,1,42,43],[699,1,1,43,44],[709,1,1,44,45],[713,1,1,45,46],[716,1,1,46,47],[743,1,1,47,48]]],[23,8,8,48,56,[[746,1,1,48,49],[748,1,1,49,50],[749,1,1,50,51],[756,1,1,51,52],[793,1,1,52,53],[794,2,2,53,55],[795,1,1,55,56]]],[24,1,1,56,57,[[799,1,1,56,57]]],[25,5,5,57,62,[[802,1,1,57,58],[811,1,1,58,59],[820,2,2,59,61],[823,1,1,61,62]]],[27,1,1,62,63,[[872,1,1,62,63]]],[28,1,1,63,64,[[876,1,1,63,64]]],[29,4,4,64,68,[[881,3,3,64,67],[883,1,1,67,68]]],[32,1,1,68,69,[[897,1,1,68,69]]],[33,4,2,69,71,[[901,4,2,69,71]]],[35,1,1,71,72,[[908,1,1,71,72]]]],[1482,4440,4455,5832,6914,6917,6918,6927,7652,7654,7655,8045,8459,8673,8963,8970,9098,9099,9208,9209,9210,9212,9444,10008,10009,10695,10728,11382,11383,12940,13997,14050,14115,14217,14220,14225,17028,17154,17211,17479,17590,17891,17969,18043,18254,18329,18403,18922,18995,19034,19064,19257,20146,20183,20210,20250,20364,20474,20647,20883,20887,21001,22250,22297,22399,22403,22407,22442,22641,22710,22711,22823]]],["+",[2,2,[[6,1,1,0,1,[[224,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]]],[6927,8045]]],["lion",[55,51,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,2,2,1,3,[[139,1,1,1,2],[140,1,1,2,3]]],[6,4,3,3,6,[[224,4,3,3,6]]],[8,3,3,6,9,[[252,3,3,6,9]]],[9,2,2,9,11,[[283,1,1,9,10],[289,1,1,10,11]]],[10,8,5,11,16,[[303,6,4,11,15],[310,2,1,15,16]]],[12,1,1,16,17,[[348,1,1,16,17]]],[17,1,1,17,18,[[439,1,1,17,18]]],[18,4,4,18,22,[[484,1,1,18,19],[487,1,1,19,20],[494,1,1,20,21],[499,1,1,21,22]]],[19,3,3,22,25,[[649,1,1,22,23],[653,1,1,23,24],[655,1,1,24,25]]],[20,1,1,25,26,[[667,1,1,25,26]]],[22,6,6,26,32,[[689,1,1,26,27],[699,1,1,27,28],[709,1,1,28,29],[713,1,1,29,30],[716,1,1,30,31],[743,1,1,31,32]]],[23,6,6,32,38,[[746,1,1,32,33],[748,1,1,33,34],[749,1,1,34,35],[756,1,1,35,36],[793,1,1,36,37],[794,1,1,37,38]]],[24,1,1,38,39,[[799,1,1,38,39]]],[25,3,3,39,42,[[802,1,1,39,40],[811,1,1,40,41],[823,1,1,41,42]]],[27,1,1,42,43,[[872,1,1,42,43]]],[28,1,1,43,44,[[876,1,1,43,44]]],[29,4,4,44,48,[[881,3,3,44,47],[883,1,1,47,48]]],[32,1,1,48,49,[[897,1,1,48,49]]],[33,2,2,49,51,[[901,2,2,49,51]]]],[1482,4440,4455,6914,6917,6918,7652,7654,7655,8459,8673,9208,9209,9210,9212,9444,10695,12940,13997,14050,14115,14217,17028,17154,17211,17479,17891,18043,18254,18329,18403,18922,18995,19034,19064,19257,20146,20210,20364,20474,20647,21001,22250,22297,22399,22403,22407,22442,22641,22710,22711]]],["lion's",[4,4,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[18,1,1,2,3,[[499,1,1,2,3]]],[33,1,1,3,4,[[901,1,1,3,4]]]],[1482,5832,14225,22710]]],["lions",[16,15,[[10,5,4,0,4,[[297,3,2,0,2],[300,2,2,2,4]]],[11,2,2,4,6,[[329,2,2,4,6]]],[12,1,1,6,7,[[349,1,1,6,7]]],[13,2,2,7,9,[[375,2,2,7,9]]],[22,1,1,9,10,[[693,1,1,9,10]]],[23,1,1,10,11,[[794,1,1,10,11]]],[25,2,2,11,13,[[820,2,2,11,13]]],[33,1,1,13,14,[[901,1,1,13,14]]],[35,1,1,14,15,[[908,1,1,14,15]]]],[8963,8970,9098,9099,10008,10009,10728,11382,11383,17969,20183,20883,20887,22710,22823]]],["lions'",[2,2,[[21,1,1,0,1,[[674,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[17590,20250]]],["pierced",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14220]]]]},{"k":"H739","v":[["men",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8673,10695]]]]},{"k":"H740","v":[["Ariel",[6,4,[[14,1,1,0,1,[[410,1,1,0,1]]],[22,5,3,1,4,[[707,5,3,1,4]]]],[12217,18194,18195,18200]]]]},{"k":"H741","v":[["*",[2,2,[[25,2,2,0,2,[[844,2,2,0,2]]]],[21587,21588]]],["+",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21587]]],["altar",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21588]]]]},{"k":"H742","v":[["Aridai",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12843]]]]},{"k":"H743","v":[["Aridatha",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12842]]]]},{"k":"H744","v":[["*",[10,9,[[26,10,9,0,9,[[855,9,8,0,8],[856,1,1,8,9]]]],[21912,21917,21921,21924,21925,21927,21929,21932,21937]]],["lion",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21937]]],["lions",[8,7,[[26,8,7,0,7,[[855,8,7,0,7]]]],[21912,21917,21921,21924,21925,21929,21932]]],["lions'",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21927]]]]},{"k":"H745","v":[["*",[2,2,[[11,1,1,0,1,[[327,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]]],[9950,17828]]],["Arieh",[1,1,[[11,1,1,0,1,[[327,1,1,0,1]]]],[9950]]],["hungry",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17828]]]]},{"k":"H746","v":[["Arioch",[7,6,[[0,2,2,0,2,[[13,2,2,0,2]]],[26,5,4,2,6,[[851,5,4,2,6]]]],[337,345,21772,21773,21782,21783]]]]},{"k":"H747","v":[["Arisai",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12843]]]]},{"k":"H748","v":[["*",[34,34,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,1,1,1,2,[[69,1,1,1,2]]],[3,2,2,2,4,[[125,2,2,2,4]]],[4,11,11,4,15,[[156,2,2,4,6],[157,2,2,6,8],[158,1,1,8,9],[163,1,1,9,10],[169,1,1,10,11],[174,1,1,11,12],[177,1,1,12,13],[182,1,1,13,14],[184,1,1,14,15]]],[5,1,1,15,16,[[210,1,1,15,16]]],[6,1,1,16,17,[[212,1,1,16,17]]],[10,2,2,17,19,[[293,1,1,17,18],[298,1,1,18,19]]],[13,1,1,19,20,[[371,1,1,19,20]]],[17,1,1,20,21,[[441,1,1,20,21]]],[18,1,1,21,22,[[606,1,1,21,22]]],[19,3,3,22,25,[[646,1,1,22,23],[655,2,2,23,25]]],[20,3,3,25,28,[[665,1,1,25,26],[666,2,2,26,28]]],[22,4,4,28,32,[[726,1,1,28,29],[731,1,1,29,30],[732,1,1,30,31],[735,1,1,31,32]]],[25,2,2,32,34,[[813,1,1,32,33],[832,1,1,33,34]]]],[700,2063,3984,3987,5030,5044,5069,5086,5088,5217,5384,5477,5562,5726,5805,6507,6552,8830,8993,11277,12989,16135,16936,17198,17212,17444,17470,17471,18623,18721,18725,18769,20702,21235]]],["+",[3,3,[[5,1,1,0,1,[[210,1,1,0,1]]],[6,1,1,1,2,[[212,1,1,1,2]]],[10,1,1,2,3,[[293,1,1,2,3]]]],[6507,6552,8830]]],["defer",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18623]]],["deferreth",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16936]]],["lengthen",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18725]]],["lengthened",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5562]]],["long",[5,5,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,1,1,1,2,[[69,1,1,1,2]]],[3,1,1,2,3,[[125,1,1,2,3]]],[18,1,1,3,4,[[606,1,1,3,4]]],[25,1,1,4,5,[[832,1,1,4,5]]]],[700,2063,3984,16135,21235]]],["out",[3,3,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[371,1,1,1,2]]],[22,1,1,2,3,[[735,1,1,2,3]]]],[8993,11277,18769]]],["prolong",[12,12,[[4,8,8,0,8,[[156,2,2,0,2],[157,1,1,2,3],[163,1,1,3,4],[169,1,1,4,5],[174,1,1,5,6],[182,1,1,6,7],[184,1,1,7,8]]],[17,1,1,8,9,[[441,1,1,8,9]]],[19,1,1,9,10,[[655,1,1,9,10]]],[20,1,1,10,11,[[666,1,1,10,11]]],[22,1,1,11,12,[[731,1,1,11,12]]]],[5030,5044,5086,5217,5384,5477,5726,5805,12989,17212,17471,18721]]],["prolonged",[5,5,[[4,2,2,0,2,[[157,1,1,0,1],[158,1,1,1,2]]],[19,1,1,2,3,[[655,1,1,2,3]]],[20,1,1,3,4,[[666,1,1,3,4]]],[25,1,1,4,5,[[813,1,1,4,5]]]],[5069,5088,17198,17470,20702]]],["prolongeth",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17444]]],["tarried",[1,1,[[3,1,1,0,1,[[125,1,1,0,1]]]],[3987]]]]},{"k":"H749","v":[["meet",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12124]]]]},{"k":"H750","v":[["*",[15,15,[[1,1,1,0,1,[[83,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[18,3,3,3,6,[[563,1,1,3,4],[580,1,1,4,5],[622,1,1,5,6]]],[19,3,3,6,9,[[641,1,1,6,7],[642,1,1,7,8],[643,1,1,8,9]]],[20,1,1,9,10,[[665,1,1,9,10]]],[23,1,1,10,11,[[759,1,1,10,11]]],[25,1,1,11,12,[[818,1,1,11,12]]],[28,1,1,12,13,[[877,1,1,12,13]]],[31,1,1,13,14,[[892,1,1,13,14]]],[33,1,1,14,15,[[900,1,1,14,15]]]],[2502,4126,12528,15299,15557,16328,16801,16825,16872,17437,19330,20828,22324,22570,22687]]],["+",[5,5,[[1,1,1,0,1,[[83,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[18,1,1,2,3,[[563,1,1,2,3]]],[23,1,1,3,4,[[759,1,1,3,4]]],[25,1,1,4,5,[[818,1,1,4,5]]]],[2502,4126,15299,19330,20828]]],["patient",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17437]]],["slow",[9,9,[[15,1,1,0,1,[[421,1,1,0,1]]],[18,2,2,1,3,[[580,1,1,1,2],[622,1,1,2,3]]],[19,3,3,3,6,[[641,1,1,3,4],[642,1,1,4,5],[643,1,1,5,6]]],[28,1,1,6,7,[[877,1,1,6,7]]],[31,1,1,7,8,[[892,1,1,7,8]]],[33,1,1,8,9,[[900,1,1,8,9]]]],[12528,15557,16328,16801,16825,16872,22324,22570,22687]]]]},{"k":"H751","v":[["Erech",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[244]]]]},{"k":"H752","v":[["*",[3,3,[[9,1,1,0,1,[[269,1,1,0,1]]],[17,1,1,1,2,[[446,1,1,1,2]]],[23,1,1,2,3,[[773,1,1,2,3]]]],[8082,13117,19663]]],["long",[2,2,[[9,1,1,0,1,[[269,1,1,0,1]]],[23,1,1,1,2,[[773,1,1,1,2]]]],[8082,19663]]],["longer",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13117]]]]},{"k":"H753","v":[["*",[95,90,[[0,2,2,0,2,[[5,1,1,0,1],[12,1,1,1,2]]],[1,24,23,2,25,[[74,3,3,2,5],[75,4,4,5,9],[76,5,4,9,13],[77,1,1,13,14],[79,1,1,14,15],[85,3,3,15,18],[86,4,4,18,22],[87,2,2,22,24],[88,1,1,24,25]]],[4,2,2,25,27,[[155,1,1,25,26],[182,1,1,26,27]]],[6,1,1,27,28,[[213,1,1,27,28]]],[10,6,6,28,34,[[296,3,3,28,31],[297,3,3,31,34]]],[13,7,7,34,41,[[369,5,5,34,39],[370,1,1,39,40],[372,1,1,40,41]]],[17,1,1,41,42,[[447,1,1,41,42]]],[18,4,4,42,46,[[498,1,1,42,43],[500,1,1,43,44],[568,1,1,44,45],[570,1,1,45,46]]],[19,3,3,46,49,[[630,2,2,46,48],[652,1,1,48,49]]],[24,1,1,49,50,[[801,1,1,49,50]]],[25,42,38,50,88,[[832,1,1,50,51],[841,13,13,51,64],[842,8,6,64,70],[843,5,5,70,75],[844,2,2,75,77],[846,6,5,77,82],[847,1,1,82,83],[849,6,5,83,88]]],[37,2,2,88,90,[[912,1,1,88,89],[915,1,1,89,90]]]],[152,335,2205,2212,2218,2237,2243,2248,2251,2273,2281,2283,2290,2309,2384,2575,2581,2587,2605,2610,2614,2629,2634,2651,2673,4986,5728,6584,8898,8899,8916,8936,8940,8961,11232,11233,11237,11240,11244,11247,11295,13140,14195,14241,15411,15431,16457,16471,17128,20462,21237,21484,21488,21495,21497,21498,21502,21506,21507,21510,21513,21519,21524,21526,21528,21530,21538,21539,21541,21548,21554,21559,21560,21563,21572,21588,21589,21631,21633,21635,21636,21637,21677,21710,21711,21712,21715,21720,22901,22938]]],["+",[2,2,[[18,2,2,0,2,[[500,1,1,0,1],[570,1,1,1,2]]]],[14241,15431]]],["Length",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16471]]],["high",[1,1,[[13,1,1,0,1,[[369,1,1,0,1]]]],[11244]]],["length",[69,66,[[0,2,2,0,2,[[5,1,1,0,1],[12,1,1,1,2]]],[1,21,21,2,23,[[74,3,3,2,5],[75,4,4,5,9],[76,2,2,9,11],[77,1,1,11,12],[79,1,1,12,13],[85,3,3,13,16],[86,4,4,16,20],[87,2,2,20,22],[88,1,1,22,23]]],[4,2,2,23,25,[[155,1,1,23,24],[182,1,1,24,25]]],[6,1,1,25,26,[[213,1,1,25,26]]],[10,6,6,26,32,[[296,3,3,26,29],[297,3,3,29,32]]],[13,4,4,32,36,[[369,3,3,32,35],[370,1,1,35,36]]],[17,1,1,36,37,[[447,1,1,36,37]]],[18,1,1,37,38,[[498,1,1,37,38]]],[19,1,1,38,39,[[630,1,1,38,39]]],[25,28,25,39,64,[[832,1,1,39,40],[841,7,7,40,47],[842,6,5,47,52],[843,3,3,52,55],[846,5,4,55,59],[849,6,5,59,64]]],[37,2,2,64,66,[[912,1,1,64,65],[915,1,1,65,66]]]],[152,335,2205,2212,2218,2237,2243,2248,2251,2283,2290,2309,2384,2575,2581,2587,2605,2610,2614,2629,2634,2651,2673,4986,5728,6584,8898,8899,8916,8936,8940,8961,11232,11233,11237,11247,13140,14195,16457,21237,21488,21495,21497,21498,21502,21513,21526,21528,21530,21538,21541,21548,21554,21559,21560,21631,21633,21635,21637,21710,21711,21712,21715,21720,22901,22938]]],["long",[22,21,[[1,3,3,0,3,[[76,3,3,0,3]]],[13,2,2,3,5,[[369,1,1,3,4],[372,1,1,4,5]]],[18,1,1,5,6,[[568,1,1,5,6]]],[19,1,1,6,7,[[652,1,1,6,7]]],[24,1,1,7,8,[[801,1,1,7,8]]],[25,14,13,8,21,[[841,6,6,8,14],[842,2,1,14,15],[843,2,2,15,17],[844,2,2,17,19],[846,1,1,19,20],[847,1,1,20,21]]]],[2273,2281,2283,11240,11295,15411,17128,20462,21484,21506,21507,21510,21519,21524,21539,21563,21572,21588,21589,21636,21677]]]]},{"k":"H754","v":[["*",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[856,1,1,1,2]]]],[21864,21945]]],["+",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21945]]],["lengthening",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]]]},{"k":"H755","v":[["knees",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21880]]]]},{"k":"H756","v":[["Archevites",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12119]]]]},{"k":"H757","v":[["*",[6,6,[[5,1,1,0,1,[[202,1,1,0,1]]],[9,4,4,1,5,[[281,1,1,1,2],[282,1,1,2,3],[283,2,2,3,5]]],[12,1,1,5,6,[[364,1,1,5,6]]]],[6267,8421,8442,8454,8463,11142]]],["Archi",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6267]]],["Archite",[5,5,[[9,4,4,0,4,[[281,1,1,0,1],[282,1,1,1,2],[283,2,2,2,4]]],[12,1,1,4,5,[[364,1,1,4,5]]]],[8421,8442,8454,8463,11142]]]]},{"k":"H758","v":[["*",[132,117,[[0,3,3,0,3,[[9,2,2,0,2],[21,1,1,2,3]]],[3,1,1,3,4,[[139,1,1,3,4]]],[6,1,1,4,5,[[220,1,1,4,5]]],[9,20,16,5,21,[[274,6,4,5,9],[276,13,11,9,20],[281,1,1,20,21]]],[10,19,18,21,39,[[300,1,1,21,22],[301,1,1,22,23],[305,1,1,23,24],[309,1,1,24,25],[310,10,9,25,34],[312,5,5,34,39]]],[11,43,38,39,77,[[317,4,3,39,42],[318,5,5,42,47],[319,9,8,47,55],[320,5,5,55,60],[321,2,2,60,62],[324,2,2,62,64],[325,10,8,64,72],[327,1,1,72,73],[328,4,3,73,76],[336,1,1,76,77]]],[12,18,14,77,91,[[338,1,1,77,78],[339,1,1,78,79],[344,1,1,79,80],[355,4,2,80,82],[356,11,9,82,91]]],[13,14,13,91,104,[[367,1,1,91,92],[382,3,2,92,94],[384,3,3,94,97],[386,1,1,97,98],[388,2,2,98,100],[390,2,2,100,102],[394,2,2,102,104]]],[22,7,7,104,111,[[685,5,5,104,109],[687,1,1,109,110],[695,1,1,110,111]]],[23,1,1,111,112,[[779,1,1,111,112]]],[25,2,2,112,114,[[817,1,1,112,113],[828,1,1,113,114]]],[27,1,1,114,115,[[873,1,1,114,115]]],[29,2,2,115,117,[[879,1,1,115,116],[887,1,1,116,117]]]],[256,257,568,4423,6817,8214,8215,8221,8222,8246,8248,8249,8251,8253,8254,8255,8256,8257,8258,8259,8397,9108,9133,9267,9402,9409,9428,9429,9430,9431,9434,9435,9436,9437,9481,9483,9491,9511,9515,9648,9649,9652,9682,9683,9685,9697,9698,9711,9712,9713,9717,9719,9721,9722,9723,9734,9736,9740,9755,9756,9770,9771,9867,9868,9874,9875,9876,9878,9888,9890,9893,9895,9962,9968,9969,9970,10204,10269,10329,10569,10895,10896,10913,10917,10919,10921,10922,10923,10924,10925,10926,11211,11511,11516,11552,11572,11576,11589,11649,11650,11700,11701,11769,11787,17783,17784,17786,17787,17790,17841,17986,19834,20819,21137,22264,22369,22502]]],["+",[6,6,[[9,2,2,0,2,[[274,1,1,0,1],[276,1,1,1,2]]],[12,3,3,2,5,[[355,1,1,2,3],[356,2,2,3,5]]],[13,1,1,5,6,[[386,1,1,5,6]]]],[8221,8258,10896,10913,10925,11589]]],["Aram",[7,7,[[0,3,3,0,3,[[9,2,2,0,2],[21,1,1,2,3]]],[3,1,1,3,4,[[139,1,1,3,4]]],[12,3,3,4,7,[[338,1,1,4,5],[339,1,1,5,6],[344,1,1,6,7]]]],[256,257,568,4423,10269,10329,10569]]],["Syria",[65,61,[[6,1,1,0,1,[[220,1,1,0,1]]],[9,2,2,1,3,[[274,1,1,1,2],[281,1,1,2,3]]],[10,11,11,3,14,[[300,1,1,3,4],[301,1,1,4,5],[305,1,1,5,6],[309,1,1,6,7],[310,4,4,7,11],[312,3,3,11,14]]],[11,30,27,14,41,[[317,3,2,14,16],[318,4,4,16,20],[319,1,1,20,21],[320,5,5,21,26],[321,2,2,26,28],[324,2,2,28,30],[325,8,7,30,37],[327,1,1,37,38],[328,4,3,38,41]]],[13,11,10,41,51,[[367,1,1,41,42],[382,3,2,42,44],[384,2,2,44,46],[388,2,2,46,48],[390,1,1,48,49],[394,2,2,49,51]]],[22,6,6,51,57,[[685,5,5,51,56],[695,1,1,56,57]]],[25,2,2,57,59,[[817,1,1,57,58],[828,1,1,58,59]]],[27,1,1,59,60,[[873,1,1,59,60]]],[29,1,1,60,61,[[879,1,1,60,61]]]],[6817,8215,8397,9108,9133,9267,9402,9409,9428,9430,9431,9481,9483,9511,9648,9652,9682,9685,9697,9698,9712,9734,9736,9740,9755,9756,9770,9771,9867,9868,9874,9875,9878,9888,9890,9893,9895,9962,9968,9969,9970,11211,11511,11516,11552,11572,11649,11650,11700,11769,11787,17783,17784,17786,17787,17790,17986,20819,21137,22264,22369]]],["Syrians",[54,50,[[9,16,14,0,14,[[274,4,3,0,3],[276,12,11,3,14]]],[10,8,8,14,22,[[310,6,6,14,20],[312,2,2,20,22]]],[11,13,13,22,35,[[317,1,1,22,23],[318,1,1,23,24],[319,8,8,24,32],[325,2,2,32,34],[336,1,1,34,35]]],[12,12,10,35,45,[[355,3,2,35,37],[356,9,8,37,45]]],[13,2,2,45,47,[[384,1,1,45,46],[390,1,1,46,47]]],[22,1,1,47,48,[[687,1,1,47,48]]],[23,1,1,48,49,[[779,1,1,48,49]]],[29,1,1,49,50,[[887,1,1,49,50]]]],[8214,8215,8222,8246,8248,8249,8251,8253,8254,8255,8256,8257,8258,8259,9428,9429,9434,9435,9436,9437,9491,9515,9649,9683,9711,9712,9713,9717,9719,9721,9722,9723,9876,9888,10204,10895,10896,10917,10919,10921,10922,10923,10924,10925,10926,11576,11701,17841,19834,22502]]]]},{"k":"H759","v":[["*",[33,32,[[10,1,1,0,1,[[306,1,1,0,1]]],[11,1,1,1,2,[[327,1,1,1,2]]],[13,1,1,2,3,[[402,1,1,2,3]]],[18,3,3,3,6,[[525,2,2,3,5],[599,1,1,5,6]]],[19,1,1,6,7,[[645,1,1,6,7]]],[22,4,4,7,11,[[701,1,1,7,8],[703,1,1,8,9],[710,1,1,9,10],[712,1,1,10,11]]],[23,5,5,11,16,[[750,1,1,11,12],[753,1,1,12,13],[761,1,1,13,14],[774,1,1,14,15],[793,1,1,15,16]]],[24,2,2,16,18,[[798,2,2,16,18]]],[25,1,1,18,19,[[820,1,1,18,19]]],[27,1,1,19,20,[[869,1,1,19,20]]],[29,12,11,20,31,[[879,5,5,20,25],[880,2,2,25,27],[881,4,3,27,30],[884,1,1,30,31]]],[32,1,1,31,32,[[897,1,1,31,32]]]],[9301,9950,12012,14637,14647,16096,16920,18090,18120,18273,18316,19094,19196,19384,19685,20154,20337,20339,20888,22208,22368,22371,22374,22376,22378,22381,22384,22404,22405,22406,22458,22638]]],["castle",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16920]]],["palace",[4,4,[[10,1,1,0,1,[[306,1,1,0,1]]],[11,1,1,1,2,[[327,1,1,1,2]]],[22,1,1,2,3,[[703,1,1,2,3]]],[23,1,1,3,4,[[774,1,1,3,4]]]],[9301,9950,18120,19685]]],["palaces",[28,27,[[13,1,1,0,1,[[402,1,1,0,1]]],[18,3,3,1,4,[[525,2,2,1,3],[599,1,1,3,4]]],[22,3,3,4,7,[[701,1,1,4,5],[710,1,1,5,6],[712,1,1,6,7]]],[23,4,4,7,11,[[750,1,1,7,8],[753,1,1,8,9],[761,1,1,9,10],[793,1,1,10,11]]],[24,2,2,11,13,[[798,2,2,11,13]]],[25,1,1,13,14,[[820,1,1,13,14]]],[27,1,1,14,15,[[869,1,1,14,15]]],[29,12,11,15,26,[[879,5,5,15,20],[880,2,2,20,22],[881,4,3,22,25],[884,1,1,25,26]]],[32,1,1,26,27,[[897,1,1,26,27]]]],[12012,14637,14647,16096,18090,18273,18316,19094,19196,19384,20154,20337,20339,20888,22208,22368,22371,22374,22376,22378,22381,22384,22404,22405,22406,22458,22638]]]]},{"k":"H760","v":[]},{"k":"H761","v":[["*",[12,11,[[0,5,4,0,4,[[24,2,1,0,1],[27,1,1,1,2],[30,2,2,2,4]]],[4,1,1,4,5,[[178,1,1,4,5]]],[11,4,4,5,9,[[317,1,1,5,6],[320,2,2,6,8],[321,1,1,8,9]]],[12,1,1,9,10,[[344,1,1,9,10]]],[13,1,1,10,11,[[388,1,1,10,11]]]],[678,778,893,897,5571,9667,9755,9756,9771,10549,11649]]],["Aramitess",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10549]]],["Syrian",[7,6,[[0,5,4,0,4,[[24,2,1,0,1],[27,1,1,1,2],[30,2,2,2,4]]],[4,1,1,4,5,[[178,1,1,4,5]]],[11,1,1,5,6,[[317,1,1,5,6]]]],[678,778,893,897,5571,9667]]],["Syrians",[4,4,[[11,3,3,0,3,[[320,2,2,0,2],[321,1,1,2,3]]],[13,1,1,3,4,[[388,1,1,3,4]]]],[9755,9756,9771,11649]]]]},{"k":"H762","v":[["*",[5,4,[[11,1,1,0,1,[[330,1,1,0,1]]],[14,2,1,1,2,[[406,2,1,1,2]]],[22,1,1,2,3,[[714,1,1,2,3]]],[26,1,1,3,4,[[851,1,1,3,4]]]],[10050,12117,18341,21762]]],["Syriack",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21762]]],["language",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]]],[10050,18341]]],["tongue",[2,1,[[14,2,1,0,1,[[406,2,1,0,1]]]],[12117]]]]},{"k":"H763","v":[["Mesopotamia",[5,5,[[0,1,1,0,1,[[23,1,1,0,1]]],[4,1,1,1,2,[[175,1,1,1,2]]],[6,2,2,2,4,[[213,2,2,2,4]]],[12,1,1,4,5,[[356,1,1,4,5]]]],[601,5504,6576,6578,10913]]]]},{"k":"H764","v":[["Armoni",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8588]]]]},{"k":"H765","v":[["Aran",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1068,10294]]]]},{"k":"H766","v":[["ash",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18547]]]]},{"k":"H767","v":[["Oren",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10331]]]]},{"k":"H768","v":[["hare",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3003,5297]]]]},{"k":"H769","v":[["*",[25,23,[[3,7,6,0,6,[[137,6,5,0,5],[138,1,1,5,6]]],[4,6,6,6,12,[[154,2,2,6,8],[155,3,3,8,11],[156,1,1,11,12]]],[5,4,4,12,16,[[198,2,2,12,14],[199,2,2,14,16]]],[6,5,4,16,20,[[221,5,4,16,20]]],[11,1,1,20,21,[[322,1,1,20,21]]],[22,1,1,21,22,[[694,1,1,21,22]]],[23,1,1,22,23,[[792,1,1,22,23]]]],[4353,4354,4364,4366,4368,4411,4962,4974,4983,4987,4991,5052,6131,6132,6163,6170,6842,6847,6851,6855,9826,17971,20100]]],["+",[3,3,[[3,1,1,0,1,[[137,1,1,0,1]]],[6,2,2,1,3,[[221,2,2,1,3]]]],[4364,6842,6851]]],["Arnon",[22,20,[[3,6,5,0,5,[[137,5,4,0,4],[138,1,1,4,5]]],[4,6,6,5,11,[[154,2,2,5,7],[155,3,3,7,10],[156,1,1,10,11]]],[5,4,4,11,15,[[198,2,2,11,13],[199,2,2,13,15]]],[6,3,2,15,17,[[221,3,2,15,17]]],[11,1,1,17,18,[[322,1,1,17,18]]],[22,1,1,18,19,[[694,1,1,18,19]]],[23,1,1,19,20,[[792,1,1,19,20]]]],[4353,4354,4366,4368,4411,4962,4974,4983,4987,4991,5052,6131,6132,6163,6170,6847,6855,9826,17971,20100]]]]},{"k":"H770","v":[["Arnan",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10382]]]]},{"k":"H771","v":[["Ornan",[12,10,[[12,11,9,0,9,[[358,11,9,0,9]]],[13,1,1,9,10,[[369,1,1,9,10]]]],[10949,10952,10954,10955,10956,10957,10958,10959,10962,11230]]]]},{"k":"H772","v":[["*",[21,17,[[14,1,1,0,1,[[407,1,1,0,1]]],[23,1,1,1,2,[[754,1,1,1,2]]],[26,19,15,2,17,[[851,3,2,2,4],[853,10,8,4,12],[855,2,2,12,14],[856,4,3,14,17]]]],[12145,19212,21793,21797,21838,21847,21848,21852,21857,21859,21860,21872,21930,21932,21937,21950,21956]]],["+",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19212]]],["earth",[19,16,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,18,15,1,16,[[851,2,2,1,3],[853,10,8,3,11],[855,2,2,11,13],[856,4,3,13,16]]]],[12145,21793,21797,21838,21847,21848,21852,21857,21859,21860,21872,21930,21932,21937,21950,21956]]],["inferior",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21797]]]]},{"k":"H773","v":[["bottom",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21929]]]]},{"k":"H774","v":[["*",[6,6,[[11,2,2,0,2,[[330,1,1,0,1],[331,1,1,1,2]]],[22,3,3,2,5,[[688,1,1,2,3],[714,1,1,3,4],[715,1,1,4,5]]],[23,1,1,5,6,[[793,1,1,5,6]]]],[10058,10074,17859,18349,18365,20150]]],["Arpad",[4,4,[[11,2,2,0,2,[[330,1,1,0,1],[331,1,1,1,2]]],[22,1,1,2,3,[[688,1,1,2,3]]],[23,1,1,3,4,[[793,1,1,3,4]]]],[10058,10074,17859,20150]]],["Arphad",[2,2,[[22,2,2,0,2,[[714,1,1,0,1],[715,1,1,1,2]]]],[18349,18365]]]]},{"k":"H775","v":[["Arphaxad",[9,9,[[0,6,6,0,6,[[9,2,2,0,2],[10,4,4,2,6]]],[12,3,3,6,9,[[338,3,3,6,9]]]],[256,258,276,277,278,279,10269,10270,10276]]]]},{"k":"H776","v":[["*",[2505,2191,[[0,311,252,0,252,[[0,20,15,0,15],[1,9,7,15,22],[3,3,3,22,25],[5,11,7,25,32],[6,14,12,32,44],[7,12,10,44,54],[8,11,10,54,64],[9,8,8,64,72],[10,8,7,72,79],[11,9,5,79,84],[12,9,8,84,92],[13,2,2,92,94],[14,3,3,94,97],[15,1,1,97,98],[16,2,1,98,99],[17,3,3,99,102],[18,6,4,102,106],[19,2,2,106,108],[20,4,4,108,112],[21,2,2,112,114],[22,6,6,114,120],[23,9,7,120,127],[24,1,1,127,128],[25,8,6,128,134],[26,3,3,134,137],[27,4,4,137,141],[28,1,1,141,142],[29,1,1,142,143],[30,4,3,143,146],[31,2,2,146,148],[32,2,2,148,150],[33,6,5,150,155],[34,5,4,155,159],[35,12,11,159,170],[36,3,2,170,172],[37,1,1,172,173],[39,1,1,173,174],[40,27,20,174,194],[41,14,11,194,205],[42,3,3,205,208],[43,3,3,208,211],[44,11,10,211,221],[45,6,6,221,227],[46,22,10,227,237],[47,8,7,237,244],[48,2,2,244,246],[49,7,6,246,252]]],[1,136,111,252,363,[[50,2,2,252,254],[51,2,2,254,256],[52,5,2,256,258],[53,3,2,258,260],[54,2,2,260,262],[55,8,7,262,269],[56,5,5,269,274],[57,14,9,274,283],[58,15,12,283,295],[59,14,7,295,302],[60,5,5,302,307],[61,13,12,307,319],[62,6,5,319,324],[63,1,1,324,325],[64,1,1,325,326],[65,7,6,326,332],[67,2,2,332,334],[68,2,2,334,336],[69,4,3,336,339],[71,1,1,339,340],[72,7,7,340,347],[78,1,1,347,348],[80,1,1,348,349],[81,7,7,349,356],[82,3,2,356,358],[83,5,5,358,363]]],[2,82,67,363,430,[[93,1,1,363,364],[100,8,8,364,372],[103,2,1,372,373],[105,1,1,373,374],[107,7,4,374,378],[108,7,6,378,384],[109,4,4,384,388],[111,2,2,388,390],[112,4,4,390,394],[114,20,16,394,410],[115,23,18,410,428],[116,3,2,428,430]]],[3,123,104,430,534,[[117,1,1,430,431],[119,1,1,431,432],[124,1,1,432,433],[125,2,2,433,435],[126,2,2,435,437],[127,1,1,437,438],[129,16,13,438,451],[130,20,17,451,468],[131,4,4,468,472],[132,5,5,472,477],[134,2,2,477,479],[136,4,4,479,483],[137,7,7,483,490],[138,5,4,490,494],[142,5,5,494,499],[143,1,1,499,500],[148,18,12,500,512],[149,11,9,512,521],[150,8,6,521,527],[151,8,6,527,533],[152,1,1,533,534]]],[4,197,171,534,705,[[153,11,9,534,543],[154,11,10,543,553],[155,9,9,553,562],[156,19,16,562,578],[157,6,5,578,583],[158,6,6,583,589],[159,1,1,589,590],[160,9,6,590,596],[161,7,6,596,602],[162,4,4,602,606],[163,16,14,606,620],[164,5,5,620,625],[165,4,3,625,628],[167,6,5,628,633],[168,3,2,633,635],[169,1,1,635,636],[170,1,1,636,637],[171,6,6,637,643],[172,1,1,643,644],[174,1,1,644,645],[175,2,2,645,647],[176,3,3,647,650],[177,1,1,650,651],[178,6,5,651,656],[179,3,2,656,658],[180,14,12,658,670],[181,12,10,670,680],[182,3,3,680,683],[183,6,6,683,689],[184,8,6,689,695],[185,4,4,695,699],[186,8,6,699,705]]],[5,107,91,705,796,[[187,8,7,705,712],[188,10,8,712,720],[189,2,2,720,722],[190,1,1,722,723],[191,6,4,723,727],[192,2,2,727,729],[193,5,4,729,733],[194,1,1,733,734],[195,5,4,734,738],[196,3,3,738,741],[197,6,4,741,745],[198,3,2,745,747],[199,7,7,747,754],[200,6,6,754,760],[201,1,1,760,761],[203,6,6,761,767],[204,8,7,767,774],[205,2,2,774,776],[207,2,2,776,778],[208,13,9,778,787],[209,3,3,787,790],[210,7,6,790,796]]],[6,60,53,796,849,[[211,6,6,796,802],[212,4,4,802,806],[213,3,3,806,809],[214,1,1,809,810],[215,2,2,810,812],[216,7,7,812,819],[218,1,1,819,820],[219,1,1,820,821],[220,2,2,821,823],[221,13,9,823,832],[222,2,2,832,834],[223,1,1,834,835],[226,1,1,835,836],[228,10,7,836,843],[229,1,1,843,844],[230,3,3,844,847],[231,2,2,847,849]]],[7,4,4,849,853,[[232,2,2,849,851],[233,2,2,851,853]]],[8,52,45,853,898,[[237,2,2,853,855],[238,1,1,855,856],[239,1,1,856,857],[240,2,2,857,859],[241,2,1,859,860],[244,5,3,860,863],[247,1,1,863,864],[248,4,4,864,868],[249,5,5,868,873],[252,3,2,873,875],[255,1,1,875,876],[256,1,1,876,877],[257,1,1,877,878],[258,2,2,878,880],[259,1,1,880,881],[260,2,2,881,883],[261,3,3,883,886],[262,4,3,886,889],[263,6,6,889,895],[264,1,1,895,896],[265,3,1,896,897],[266,1,1,897,898]]],[9,40,37,898,935,[[267,1,1,898,899],[268,1,1,899,900],[269,1,1,900,901],[270,1,1,901,902],[271,1,1,902,903],[273,3,2,903,905],[274,1,1,905,906],[276,1,1,906,907],[278,3,3,907,910],[279,1,1,910,911],[280,6,6,911,917],[281,2,2,917,919],[283,1,1,919,920],[284,4,4,920,924],[285,1,1,924,925],[286,1,1,925,926],[287,2,1,926,927],[288,2,2,927,929],[289,1,1,929,930],[290,6,5,930,935]]],[10,56,51,935,986,[[291,4,4,935,939],[292,1,1,939,940],[294,6,4,940,944],[296,1,1,944,945],[298,16,13,945,958],[299,8,8,958,966],[300,5,5,966,971],[301,3,3,971,974],[302,1,1,974,975],[304,1,1,975,976],[305,2,2,976,978],[307,1,1,978,979],[308,3,3,979,982],[310,2,2,982,984],[312,2,2,984,986]]],[11,71,59,986,1045,[[314,2,2,986,988],[315,2,2,988,990],[316,2,2,990,992],[317,4,4,992,996],[318,1,1,996,997],[320,4,4,997,1001],[322,2,2,1001,1003],[323,5,5,1003,1008],[325,2,2,1008,1010],[327,4,4,1010,1014],[328,1,1,1014,1015],[329,6,5,1015,1020],[330,9,4,1020,1024],[331,8,6,1024,1030],[332,1,1,1030,1031],[333,2,1,1031,1032],[335,6,4,1032,1036],[336,3,3,1036,1039],[337,7,6,1039,1045]]],[12,39,38,1045,1083,[[338,4,4,1045,1049],[339,1,1,1049,1050],[341,1,1,1050,1051],[342,4,4,1051,1055],[343,1,1,1055,1056],[344,1,1,1056,1057],[347,1,1,1057,1058],[348,1,1,1058,1059],[350,1,1,1059,1060],[351,1,1,1060,1061],[353,6,6,1061,1067],[354,2,2,1067,1069],[356,2,2,1069,1071],[357,1,1,1071,1072],[358,3,3,1072,1075],[359,5,4,1075,1079],[365,1,1,1079,1080],[366,3,3,1080,1083]]],[13,75,69,1083,1152,[[367,1,1,1083,1084],[368,2,2,1084,1086],[372,13,10,1086,1096],[373,5,5,1096,1101],[374,3,3,1101,1104],[375,8,8,1104,1112],[377,1,1,1112,1113],[378,1,1,1113,1114],[379,1,1,1114,1115],[380,3,3,1115,1118],[381,2,2,1118,1120],[382,1,1,1120,1121],[383,2,2,1121,1123],[385,2,2,1123,1125],[386,5,5,1125,1130],[388,1,1,1130,1131],[389,3,3,1131,1134],[392,1,1,1134,1135],[396,3,3,1135,1138],[398,8,6,1138,1144],[399,2,1,1144,1145],[400,3,3,1145,1148],[402,4,4,1148,1152]]],[14,13,11,1152,1163,[[403,1,1,1152,1153],[405,1,1,1153,1154],[406,1,1,1154,1155],[408,1,1,1155,1156],[411,7,5,1156,1161],[412,2,2,1161,1163]]],[15,20,16,1163,1179,[[416,1,1,1163,1164],[417,1,1,1164,1165],[420,1,1,1165,1166],[421,14,10,1166,1176],[422,3,3,1176,1179]]],[16,2,2,1179,1181,[[433,1,1,1179,1180],[435,1,1,1180,1181]]],[17,57,57,1181,1238,[[436,5,5,1181,1186],[437,3,3,1186,1189],[438,1,1,1189,1190],[440,3,3,1190,1193],[442,1,1,1193,1194],[443,1,1,1194,1195],[444,2,2,1195,1197],[445,2,2,1197,1199],[446,1,1,1199,1200],[447,3,3,1200,1203],[449,2,2,1203,1205],[450,2,2,1205,1207],[451,2,2,1207,1209],[453,3,3,1209,1212],[455,2,2,1212,1214],[457,1,1,1214,1215],[459,2,2,1215,1217],[461,1,1,1217,1218],[463,3,3,1218,1221],[465,1,1,1221,1222],[469,1,1,1222,1223],[470,1,1,1223,1224],[472,5,5,1224,1229],[473,6,6,1229,1235],[474,2,2,1235,1237],[477,1,1,1237,1238]]],[18,190,188,1238,1426,[[479,3,3,1238,1241],[484,1,1,1241,1242],[485,2,2,1242,1244],[487,2,2,1244,1246],[489,1,1,1246,1247],[493,1,1,1247,1248],[494,1,1,1248,1249],[495,1,1,1249,1250],[496,1,1,1250,1251],[498,1,1,1251,1252],[499,2,2,1252,1254],[501,1,1,1254,1255],[502,1,1,1255,1256],[504,1,1,1256,1257],[510,3,3,1257,1260],[511,1,1,1260,1261],[512,1,1,1261,1262],[514,6,6,1262,1268],[518,1,1,1268,1269],[519,1,1,1269,1270],[521,2,2,1270,1272],[522,1,1,1272,1273],[523,5,5,1273,1278],[524,3,3,1278,1281],[525,2,2,1281,1283],[527,2,2,1283,1285],[529,1,1,1285,1286],[534,2,2,1286,1288],[535,2,2,1288,1290],[536,1,1,1290,1291],[537,1,1,1291,1292],[538,1,1,1292,1293],[540,2,2,1293,1295],[542,2,2,1295,1297],[543,2,2,1297,1299],[544,4,4,1299,1303],[545,2,2,1303,1305],[546,1,1,1305,1306],[548,1,1,1306,1307],[549,5,4,1307,1311],[550,2,2,1311,1313],[551,5,5,1313,1318],[552,2,2,1318,1320],[553,3,3,1320,1323],[554,1,1,1323,1324],[555,2,2,1324,1326],[556,1,1,1326,1327],[557,1,1,1327,1328],[558,2,2,1328,1330],[559,2,2,1330,1332],[560,1,1,1332,1333],[562,4,4,1333,1337],[565,1,1,1337,1338],[566,4,4,1338,1342],[567,1,1,1342,1343],[571,1,1,1343,1344],[572,1,1,1344,1345],[573,4,4,1345,1349],[574,4,4,1349,1353],[575,3,3,1353,1356],[576,1,1,1356,1357],[577,1,1,1357,1358],[578,2,2,1358,1360],[579,3,3,1360,1363],[580,1,1,1363,1364],[581,7,7,1364,1371],[582,10,10,1371,1381],[583,5,5,1381,1386],[584,3,3,1386,1389],[585,1,1,1389,1390],[586,1,1,1390,1391],[587,1,1,1391,1392],[589,1,1,1392,1393],[590,1,1,1393,1394],[591,1,1,1394,1395],[592,2,2,1395,1397],[593,1,1,1397,1398],[596,5,5,1398,1403],[598,1,1,1403,1404],[601,1,1,1404,1405],[611,1,1,1405,1406],[612,3,3,1406,1409],[613,2,2,1409,1411],[615,1,1,1411,1412],[616,1,1,1412,1413],[617,1,1,1413,1414],[618,1,1,1414,1415],[619,1,1,1415,1416],[620,3,3,1416,1419],[623,1,1,1419,1420],[624,3,3,1420,1423],[625,4,3,1423,1426]]],[19,22,22,1426,1448,[[629,2,2,1426,1428],[630,1,1,1428,1429],[635,5,5,1429,1434],[637,1,1,1434,1435],[638,1,1,1435,1436],[644,1,1,1436,1437],[648,1,1,1437,1438],[652,2,2,1438,1440],[655,1,1,1440,1441],[656,1,1,1441,1442],[657,5,5,1442,1447],[658,1,1,1447,1448]]],[20,13,13,1448,1461,[[659,1,1,1448,1449],[661,1,1,1449,1450],[663,2,2,1450,1452],[665,1,1,1452,1453],[666,2,2,1453,1455],[668,3,3,1455,1458],[669,2,2,1458,1460],[670,1,1,1460,1461]]],[21,2,1,1461,1462,[[672,2,1,1461,1462]]],[22,190,166,1462,1628,[[679,3,3,1462,1465],[680,5,4,1465,1469],[681,1,1,1469,1470],[682,1,1,1470,1471],[683,3,3,1471,1474],[684,2,2,1474,1476],[685,3,3,1476,1479],[686,3,3,1479,1482],[687,4,3,1482,1485],[688,2,2,1485,1487],[689,5,4,1487,1491],[690,1,1,1491,1492],[691,5,4,1492,1496],[692,8,8,1496,1504],[694,2,2,1504,1506],[696,6,5,1506,1511],[697,4,4,1511,1515],[699,3,3,1515,1518],[700,1,1,1518,1519],[701,6,6,1519,1525],[702,16,12,1525,1537],[703,2,2,1537,1539],[704,9,8,1539,1547],[705,2,1,1547,1548],[706,2,2,1548,1550],[707,2,1,1550,1551],[708,1,1,1551,1552],[710,1,1,1552,1553],[711,2,2,1553,1555],[712,4,4,1555,1559],[714,9,4,1559,1563],[715,9,6,1563,1569],[716,1,1,1569,1570],[717,1,1,1570,1571],[718,6,6,1571,1577],[719,3,3,1577,1580],[720,3,3,1580,1583],[721,1,1,1583,1584],[722,2,2,1584,1586],[723,5,5,1586,1591],[724,1,1,1591,1592],[725,1,1,1592,1593],[726,2,2,1593,1595],[727,6,6,1595,1601],[729,5,4,1601,1605],[730,1,1,1605,1606],[731,2,2,1606,1608],[732,2,2,1608,1610],[733,2,2,1610,1612],[735,1,1,1612,1613],[736,1,1,1613,1614],[738,3,3,1614,1617],[739,2,2,1617,1619],[740,5,3,1619,1622],[741,1,1,1622,1623],[743,3,2,1623,1625],[744,3,3,1625,1628]]],[23,271,236,1628,1864,[[745,4,3,1628,1631],[746,9,5,1631,1636],[747,7,6,1636,1642],[748,7,7,1642,1649],[749,3,2,1649,1651],[750,6,5,1651,1656],[751,5,5,1656,1661],[752,3,2,1661,1663],[753,4,4,1663,1667],[754,6,6,1667,1673],[755,4,4,1673,1677],[756,6,5,1677,1682],[757,1,1,1682,1683],[758,5,5,1683,1688],[759,5,5,1688,1693],[760,10,8,1693,1701],[761,4,4,1701,1705],[762,1,1,1705,1706],[763,1,1,1706,1707],[766,8,6,1707,1713],[767,9,7,1713,1720],[768,5,4,1720,1724],[769,14,12,1724,1736],[770,3,3,1736,1739],[771,4,3,1739,1742],[772,1,1,1742,1743],[773,1,1,1743,1744],[774,2,2,1744,1746],[775,7,6,1746,1752],[776,11,10,1752,1762],[777,5,5,1762,1767],[778,5,5,1767,1772],[779,1,1,1772,1773],[780,1,1,1773,1774],[781,5,5,1774,1779],[783,2,2,1779,1781],[784,7,6,1781,1787],[785,2,2,1787,1789],[786,4,4,1789,1793],[787,6,6,1793,1799],[788,20,13,1799,1812],[789,1,1,1812,1813],[790,6,6,1813,1819],[791,2,1,1819,1820],[792,3,3,1820,1823],[793,1,1,1823,1824],[794,16,16,1824,1840],[795,22,19,1840,1859],[796,6,5,1859,1864]]],[24,11,10,1864,1874,[[798,8,7,1864,1871],[799,1,1,1871,1872],[800,2,2,1872,1874]]],[25,198,173,1874,2047,[[802,4,4,1874,1878],[806,2,2,1878,1880],[807,2,2,1880,1882],[808,5,5,1882,1887],[809,3,3,1887,1890],[810,2,1,1890,1891],[811,2,2,1891,1893],[812,4,3,1893,1896],[813,7,6,1896,1902],[814,1,1,1902,1903],[815,6,5,1903,1908],[816,1,1,1908,1909],[817,2,2,1909,1911],[818,3,3,1911,1914],[820,4,4,1914,1918],[821,18,15,1918,1933],[822,3,3,1933,1936],[823,5,5,1936,1941],[824,4,4,1941,1945],[825,1,1,1945,1946],[826,2,2,1946,1948],[827,4,3,1948,1951],[828,3,3,1951,1954],[829,2,2,1954,1956],[830,10,7,1956,1963],[831,11,8,1963,1971],[832,5,4,1971,1975],[833,15,12,1975,1987],[834,9,7,1987,1994],[835,7,6,1994,2000],[836,2,2,2000,2002],[837,8,8,2002,2010],[838,2,2,2010,2012],[839,8,7,2012,2019],[840,8,7,2019,2026],[841,1,1,2026,2027],[842,2,2,2027,2029],[843,1,1,2029,2030],[844,2,2,2030,2032],[846,7,5,2032,2037],[847,2,2,2037,2039],[848,5,5,2039,2044],[849,3,3,2044,2047]]],[26,20,17,2047,2064,[[850,1,1,2047,2048],[857,6,5,2048,2053],[858,3,3,2053,2056],[859,2,2,2056,2058],[860,8,6,2058,2064]]],[27,20,19,2064,2083,[[862,2,2,2064,2066],[863,6,6,2066,2072],[865,3,2,2072,2074],[867,1,1,2074,2075],[868,1,1,2075,2076],[870,1,1,2076,2077],[871,1,1,2077,2078],[872,2,2,2078,2080],[873,1,1,2080,2081],[874,2,2,2081,2083]]],[28,12,12,2083,2095,[[876,3,3,2083,2086],[877,6,6,2086,2092],[878,3,3,2092,2095]]],[29,23,21,2095,2116,[[880,3,2,2095,2097],[881,5,5,2097,2102],[882,1,1,2102,2103],[883,2,2,2103,2105],[885,3,3,2105,2108],[886,4,4,2108,2112],[887,5,4,2112,2116]]],[30,1,1,2116,2117,[[888,1,1,2116,2117]]],[31,2,2,2117,2119,[[889,1,1,2117,2118],[890,1,1,2118,2119]]],[32,15,13,2119,2132,[[893,2,2,2119,2121],[896,1,1,2121,2122],[897,6,4,2122,2126],[898,2,2,2126,2128],[899,4,4,2128,2132]]],[33,3,3,2132,2135,[[900,1,1,2132,2133],[901,1,1,2133,2134],[902,1,1,2134,2135]]],[34,10,10,2135,2145,[[903,1,1,2135,2136],[904,4,4,2136,2140],[905,5,5,2140,2145]]],[35,8,7,2145,2152,[[906,2,1,2145,2146],[907,3,3,2146,2149],[908,3,3,2149,2152]]],[36,5,5,2152,2157,[[909,2,2,2152,2154],[910,3,3,2154,2157]]],[37,42,32,2157,2189,[[911,4,3,2157,2160],[912,1,1,2160,2161],[913,1,1,2161,2162],[914,2,2,2162,2164],[915,4,4,2164,2168],[916,8,4,2168,2172],[917,3,2,2172,2174],[918,3,2,2174,2176],[919,2,2,2176,2178],[920,2,1,2178,2179],[921,3,2,2179,2181],[922,3,3,2181,2184],[923,3,2,2184,2186],[924,3,3,2186,2189]]],[38,2,2,2189,2191,[[927,1,1,2189,2190],[928,1,1,2190,2191]]]],[0,1,9,10,11,14,16,19,21,23,24,25,27,28,29,31,34,35,36,41,42,43,91,93,95,141,142,143,148,149,150,154,162,163,165,169,171,173,176,177,178,180,182,183,184,186,190,192,194,196,197,200,202,205,206,207,212,215,216,218,219,221,222,224,239,242,244,245,254,259,265,266,267,268,270,274,275,294,297,299,303,304,305,308,324,325,327,328,330,333,334,335,355,358,367,373,378,384,405,426,442,449,458,480,485,488,496,510,534,536,545,547,549,565,573,578,583,584,586,590,594,595,596,598,628,643,653,664,693,694,695,696,704,714,755,766,773,777,785,786,787,796,855,876,886,891,931,937,963,978,981,982,990,1001,1010,1017,1023,1027,1033,1045,1046,1047,1056,1057,1060,1061,1070,1071,1074,1083,1084,1093,1128,1187,1214,1224,1225,1226,1228,1229,1231,1236,1238,1239,1240,1241,1242,1243,1247,1248,1249,1250,1251,1252,1257,1258,1259,1261,1264,1265,1281,1282,1284,1285,1286,1291,1301,1316,1332,1335,1338,1364,1365,1366,1368,1375,1376,1377,1378,1383,1384,1392,1398,1406,1414,1417,1420,1421,1424,1426,1431,1433,1434,1435,1440,1447,1448,1454,1455,1456,1458,1463,1467,1472,1488,1503,1511,1513,1514,1517,1519,1530,1539,1542,1569,1576,1587,1596,1604,1621,1637,1644,1656,1659,1663,1666,1668,1681,1683,1687,1688,1689,1704,1706,1715,1716,1717,1724,1726,1727,1732,1734,1735,1747,1751,1756,1757,1758,1764,1765,1766,1767,1768,1771,1775,1782,1789,1790,1791,1792,1798,1799,1809,1811,1812,1815,1816,1817,1828,1829,1833,1835,1841,1845,1849,1857,1858,1864,1867,1872,1878,1882,1884,1885,1892,1932,1948,1950,1953,1961,1979,1982,2002,2026,2027,2031,2053,2055,2062,2134,2153,2154,2170,2173,2174,2175,2177,2382,2437,2439,2442,2445,2446,2449,2451,2461,2474,2476,2504,2506,2508,2511,2520,2822,2999,3018,3026,3038,3039,3041,3042,3043,3145,3223,3254,3276,3278,3279,3290,3304,3310,3314,3315,3317,3320,3322,3340,3342,3393,3402,3412,3424,3441,3445,3471,3473,3474,3475,3476,3478,3479,3487,3488,3492,3493,3500,3507,3511,3514,3524,3525,3528,3529,3530,3537,3543,3544,3556,3557,3558,3560,3562,3563,3565,3566,3567,3568,3569,3594,3600,3605,3705,3956,3966,3979,3997,4018,4055,4077,4091,4092,4093,4094,4095,4096,4100,4101,4102,4103,4104,4107,4110,4111,4114,4115,4116,4117,4122,4124,4129,4131,4132,4138,4139,4142,4144,4145,4146,4155,4171,4172,4194,4207,4208,4226,4227,4228,4270,4277,4323,4328,4334,4335,4344,4362,4364,4366,4371,4374,4375,4380,4381,4386,4388,4493,4499,4508,4542,4544,4566,4719,4722,4723,4725,4726,4727,4735,4740,4747,4748,4750,4751,4761,4797,4798,4800,4811,4812,4813,4814,4815,4818,4828,4829,4833,4834,4845,4855,4859,4873,4877,4878,4879,4881,4897,4899,4900,4913,4914,4917,4919,4927,4928,4943,4947,4950,4957,4958,4962,4965,4967,4969,4975,4977,4983,4987,4988,4993,4995,4999,5000,5003,5005,5009,5018,5021,5022,5025,5026,5029,5030,5036,5040,5042,5043,5047,5050,5051,5059,5061,5068,5084,5086,5087,5089,5096,5098,5104,5109,5112,5138,5144,5145,5146,5147,5151,5161,5162,5163,5164,5180,5185,5193,5197,5200,5205,5211,5214,5216,5217,5218,5219,5220,5222,5225,5229,5233,5237,5238,5239,5241,5250,5256,5264,5269,5277,5279,5282,5323,5326,5330,5334,5342,5345,5362,5378,5393,5407,5408,5409,5414,5416,5420,5428,5476,5507,5520,5529,5539,5547,5566,5567,5568,5569,5575,5581,5587,5588,5612,5619,5621,5623,5634,5635,5636,5637,5660,5663,5667,5675,5680,5681,5687,5695,5701,5702,5703,5704,5706,5707,5713,5724,5727,5732,5735,5744,5749,5751,5756,5759,5768,5771,5780,5807,5810,5823,5826,5827,5838,5840,5841,5843,5844,5845,5850,5853,5855,5857,5862,5864,5865,5866,5870,5871,5872,5878,5880,5883,5887,5893,5904,5906,5934,5940,5945,5946,5948,5971,5976,5978,5982,5985,5997,6003,6043,6046,6048,6061,6104,6105,6106,6110,6123,6129,6130,6131,6137,6155,6156,6158,6159,6161,6175,6179,6188,6191,6192,6194,6196,6202,6221,6280,6281,6283,6287,6290,6291,6294,6296,6297,6299,6301,6302,6303,6370,6372,6383,6424,6430,6435,6436,6437,6439,6441,6445,6458,6459,6465,6474,6476,6479,6484,6489,6491,6493,6494,6511,6524,6535,6536,6541,6542,6546,6547,6551,6557,6579,6593,6598,6620,6627,6654,6658,6659,6663,6664,6691,6693,6694,6747,6791,6815,6819,6832,6834,6841,6842,6844,6846,6847,6848,6850,6881,6884,6904,6973,6995,7000,7002,7003,7007,7010,7023,7054,7055,7075,7079,7114,7123,7128,7134,7159,7160,7248,7250,7295,7302,7322,7323,7336,7395,7396,7407,7466,7488,7492,7502,7504,7523,7533,7537,7540,7553,7664,7667,7771,7783,7792,7833,7837,7847,7884,7902,7912,7913,7925,7931,7938,7939,7945,7951,7955,7956,7962,7965,7978,7994,8018,8024,8071,8093,8131,8138,8189,8203,8211,8242,8302,8303,8306,8348,8360,8367,8370,8376,8378,8389,8393,8412,8475,8486,8487,8489,8506,8520,8564,8594,8610,8645,8657,8698,8700,8705,8712,8717,8740,8748,8757,8769,8772,8854,8863,8865,8878,8897,8994,9006,9008,9012,9021,9022,9026,9028,9031,9032,9033,9038,9045,9059,9060,9062,9064,9069,9070,9072,9077,9085,9092,9094,9102,9103,9126,9129,9130,9179,9242,9261,9269,9324,9346,9347,9383,9415,9435,9516,9526,9566,9570,9596,9603,9640,9641,9649,9651,9662,9666,9697,9728,9729,9730,9733,9803,9826,9832,9843,9847,9848,9849,9889,9891,9930,9944,9945,9954,9978,9988,9990,10009,10010,10019,10049,10056,10057,10059,10068,10072,10076,10078,10080,10098,10112,10143,10189,10195,10198,10200,10209,10216,10217,10225,10234,10241,10243,10244,10246,10262,10271,10295,10297,10328,10425,10437,10439,10451,10453,10509,10556,10668,10677,10762,10791,10834,10838,10843,10850,10851,10853,10871,10884,10909,10910,10927,10946,10950,10955,10966,10969,10972,10982,11151,11175,11179,11194,11203,11223,11228,11287,11296,11300,11309,11310,11314,11315,11318,11319,11320,11327,11337,11338,11345,11346,11352,11354,11363,11369,11375,11376,11378,11386,11387,11390,11392,11437,11445,11462,11476,11481,11482,11495,11498,11518,11525,11533,11579,11581,11594,11597,11605,11611,11616,11656,11669,11676,11677,11753,11836,11837,11852,11879,11888,11892,11894,11896,11906,11933,11940,11941,11966,11994,11996,12014,12016,12018,12100,12114,12172,12238,12239,12244,12248,12249,12254,12263,12363,12396,12499,12517,12519,12521,12526,12533,12534,12535,12541,12546,12547,12577,12579,12580,12834,12867,12870,12876,12877,12879,12889,12893,12894,12904,12918,12961,12973,12976,13009,13038,13057,13075,13107,13108,13117,13136,13143,13152,13189,13200,13222,13232,13251,13256,13280,13286,13293,13330,13353,13397,13440,13454,13474,13509,13517,13528,13565,13696,13731,13772,13775,13781,13782,13786,13797,13806,13811,13817,13819,13826,13848,13858,13937,13947,13953,13955,14000,14013,14021,14057,14059,14072,14095,14114,14125,14172,14201,14231,14233,14242,14264,14298,14371,14374,14380,14404,14430,14453,14459,14461,14472,14479,14484,14544,14561,14574,14596,14613,14616,14620,14622,14623,14624,14627,14632,14634,14636,14644,14669,14672,14715,14773,14779,14781,14790,14803,14809,14821,14840,14848,14865,14869,14874,14877,14895,14897,14899,14900,14908,14932,14969,14996,15006,15008,15016,15019,15029,15045,15055,15056,15060,15065,15068,15074,15079,15089,15090,15093,15111,15125,15182,15187,15207,15222,15227,15238,15241,15259,15272,15280,15282,15283,15320,15337,15353,15365,15370,15380,15433,15458,15466,15474,15476,15478,15479,15482,15483,15487,15493,15494,15499,15500,15509,15519,15521,15536,15540,15546,15560,15576,15580,15584,15585,15595,15603,15606,15613,15617,15622,15629,15633,15636,15638,15641,15642,15650,15668,15673,15675,15678,15689,15702,15733,15734,15747,15770,15792,15805,15819,15829,15845,15846,15857,15917,15962,15985,15988,16017,16083,16110,16175,16181,16182,16187,16202,16217,16235,16254,16274,16283,16291,16296,16299,16303,16347,16357,16359,16366,16378,16382,16384,16454,16455,16474,16618,16625,16628,16631,16633,16686,16719,16897,17003,17116,17138,17198,17228,17255,17265,17267,17272,17275,17307,17319,17380,17399,17406,17449,17472,17474,17500,17509,17510,17515,17516,17530,17566,17656,17661,17673,17692,17693,17704,17706,17733,17735,17747,17765,17769,17772,17781,17800,17804,17806,17815,17816,17829,17830,17831,17848,17864,17873,17888,17893,17896,17900,17905,17911,17915,17919,17920,17935,17937,17940,17944,17948,17949,17953,17954,17970,17973,17998,17999,18000,18003,18004,18022,18023,18024,18028,18036,18044,18049,18070,18078,18085,18086,18087,18090,18094,18096,18098,18099,18100,18101,18106,18108,18111,18112,18113,18114,18115,18126,18130,18131,18135,18139,18140,18145,18148,18149,18151,18164,18166,18186,18197,18223,18261,18288,18296,18304,18309,18310,18312,18340,18347,18348,18350,18359,18363,18368,18370,18372,18390,18401,18415,18432,18441,18442,18443,18444,18448,18456,18460,18469,18484,18485,18490,18511,18556,18557,18569,18573,18579,18580,18583,18597,18600,18627,18634,18642,18644,18648,18649,18655,18659,18679,18686,18689,18696,18706,18713,18719,18728,18732,18749,18750,18778,18800,18823,18839,18842,18850,18854,18858,18861,18865,18872,18913,18914,18923,18930,18944,18947,18960,18964,18967,18971,18972,18980,18996,19003,19004,19011,19018,19020,19021,19032,19034,19043,19047,19050,19054,19055,19077,19088,19097,19101,19108,19109,19111,19126,19141,19144,19152,19153,19169,19172,19178,19187,19194,19199,19211,19213,19214,19218,19219,19223,19230,19231,19233,19245,19253,19254,19260,19261,19264,19279,19295,19297,19301,19308,19311,19318,19319,19322,19325,19329,19339,19340,19342,19349,19350,19351,19354,19355,19361,19363,19370,19383,19400,19414,19464,19466,19480,19481,19482,19483,19487,19489,19491,19492,19494,19499,19508,19529,19530,19532,19533,19543,19545,19546,19547,19554,19560,19563,19564,19565,19566,19567,19572,19578,19589,19592,19601,19602,19603,19626,19653,19670,19677,19699,19707,19713,19714,19723,19728,19739,19746,19748,19751,19752,19753,19768,19772,19774,19775,19784,19786,19788,19790,19800,19802,19814,19818,19820,19821,19834,19871,19875,19876,19881,19886,19893,19928,19933,19945,19947,19948,19950,19952,19953,19959,19975,19985,19988,19989,19991,20001,20002,20004,20008,20009,20010,20011,20018,20019,20022,20023,20024,20025,20031,20032,20034,20036,20037,20038,20044,20053,20055,20057,20058,20061,20072,20075,20101,20104,20113,20148,20167,20169,20174,20175,20182,20184,20187,20188,20189,20191,20194,20200,20204,20207,20211,20212,20214,20216,20217,20219,20221,20227,20228,20237,20239,20240,20241,20253,20255,20258,20259,20260,20261,20264,20266,20282,20285,20292,20301,20303,20333,20334,20341,20342,20343,20347,20353,20388,20432,20441,20467,20479,20483,20485,20551,20552,20571,20577,20579,20584,20598,20600,20604,20607,20616,20621,20631,20649,20652,20670,20671,20672,20686,20692,20693,20695,20699,20700,20722,20744,20746,20747,20748,20750,20762,20765,20791,20829,20830,20838,20885,20888,20893,20894,20900,20901,20903,20904,20905,20910,20918,20923,20927,20929,20931,20933,20935,20936,20937,20963,20974,20976,20980,20991,21000,21005,21006,21022,21026,21034,21055,21063,21090,21092,21111,21116,21120,21138,21150,21154,21174,21175,21188,21192,21193,21195,21197,21202,21203,21209,21211,21215,21216,21217,21227,21229,21230,21242,21244,21246,21248,21252,21254,21256,21257,21263,21266,21271,21272,21273,21274,21275,21280,21282,21283,21304,21305,21306,21308,21309,21319,21326,21338,21340,21341,21342,21354,21358,21364,21377,21378,21379,21383,21387,21393,21394,21419,21422,21427,21433,21434,21436,21437,21441,21445,21460,21461,21462,21463,21464,21466,21475,21479,21542,21546,21558,21574,21586,21631,21634,21638,21646,21652,21658,21664,21692,21693,21694,21697,21700,21714,21716,21731,21739,21966,21968,21971,21973,21979,21994,21995,22003,22024,22030,22052,22055,22064,22076,22077,22078,22096,22105,22108,22120,22123,22126,22127,22128,22134,22136,22170,22194,22211,22226,22245,22251,22261,22270,22271,22293,22297,22305,22312,22314,22321,22329,22331,22341,22345,22359,22362,22386,22389,22396,22400,22404,22406,22409,22423,22430,22431,22466,22474,22476,22485,22489,22490,22492,22500,22501,22502,22504,22513,22539,22554,22581,22582,22633,22637,22638,22639,22644,22650,22652,22666,22677,22679,22681,22689,22712,22725,22737,22756,22762,22765,22768,22771,22774,22775,22777,22780,22805,22808,22810,22816,22828,22839,22840,22850,22851,22859,22861,22876,22888,22889,22899,22905,22921,22932,22936,22939,22942,22945,22947,22952,22953,22954,22955,22967,22976,22983,22988,23000,23009,23026,23034,23044,23046,23048,23057,23061,23067,23077,23078,23085,23132,23144]]],["+",[201,196,[[0,12,11,0,11,[[11,1,1,0,1],[20,1,1,1,2],[23,1,1,2,3],[34,1,1,3,4],[35,1,1,4,5],[39,1,1,5,6],[41,1,1,6,7],[43,1,1,7,8],[44,1,1,8,9],[46,3,2,9,11]]],[1,27,27,11,38,[[55,4,4,11,15],[56,2,2,15,17],[60,1,1,17,18],[61,4,4,18,22],[62,1,1,22,23],[65,3,3,23,26],[68,1,1,26,27],[69,2,2,27,29],[72,1,1,29,30],[78,1,1,30,31],[81,6,6,31,37],[82,1,1,37,38]]],[2,11,11,38,49,[[93,1,1,38,39],[100,1,1,39,40],[108,1,1,40,41],[111,1,1,41,42],[112,1,1,42,43],[114,3,3,43,46],[115,3,3,46,49]]],[3,8,8,49,57,[[117,1,1,49,50],[125,1,1,50,51],[131,1,1,51,52],[132,1,1,52,53],[142,1,1,53,54],[149,2,2,54,56],[150,1,1,56,57]]],[4,18,17,57,74,[[153,1,1,57,58],[154,3,3,58,61],[157,1,1,61,62],[158,1,1,62,63],[160,1,1,63,64],[161,1,1,64,65],[165,2,2,65,67],[168,2,1,67,68],[172,1,1,68,69],[178,1,1,69,70],[180,1,1,70,71],[181,2,2,71,73],[186,1,1,73,74]]],[5,6,6,74,80,[[195,2,2,74,76],[203,1,1,76,77],[205,1,1,77,78],[208,1,1,78,79],[210,1,1,79,80]]],[6,3,3,80,83,[[212,1,1,80,81],[221,1,1,81,82],[229,1,1,82,83]]],[8,6,5,83,88,[[244,1,1,83,84],[247,1,1,84,85],[263,2,2,85,87],[265,2,1,87,88]]],[9,2,2,88,90,[[278,1,1,88,89],[289,1,1,89,90]]],[10,6,6,90,96,[[296,1,1,90,91],[298,3,3,91,94],[299,1,1,94,95],[302,1,1,95,96]]],[11,8,8,96,104,[[317,3,3,96,99],[320,1,1,99,100],[329,2,2,100,102],[332,1,1,102,103],[336,1,1,103,104]]],[12,1,1,104,105,[[338,1,1,104,105]]],[13,5,5,105,110,[[372,2,2,105,107],[373,1,1,107,108],[386,1,1,108,109],[396,1,1,109,110]]],[17,1,1,110,111,[[446,1,1,110,111]]],[18,11,11,111,122,[[487,1,1,111,112],[498,1,1,112,113],[511,1,1,113,114],[519,1,1,114,115],[529,1,1,115,116],[558,1,1,116,117],[562,1,1,117,118],[579,1,1,118,119],[584,1,1,119,120],[586,1,1,120,121],[623,1,1,121,122]]],[19,4,4,122,126,[[629,1,1,122,123],[648,1,1,123,124],[652,1,1,124,125],[657,1,1,125,126]]],[22,13,12,126,138,[[689,1,1,126,127],[691,1,1,127,128],[699,1,1,128,129],[701,1,1,129,130],[702,1,1,130,131],[707,2,1,131,132],[717,1,1,132,133],[724,1,1,133,134],[727,1,1,134,135],[731,2,2,135,137],[733,1,1,137,138]]],[23,32,32,138,170,[[746,1,1,138,139],[747,1,1,139,140],[748,1,1,140,141],[750,2,2,141,143],[751,2,2,143,145],[752,1,1,145,146],[754,2,2,146,148],[755,3,3,148,151],[760,2,2,151,153],[761,1,1,153,154],[767,2,2,154,156],[769,1,1,156,157],[771,1,1,157,158],[774,1,1,158,159],[775,3,3,159,162],[776,1,1,162,163],[778,1,1,163,164],[790,1,1,164,165],[792,1,1,165,166],[794,3,3,166,169],[795,1,1,169,170]]],[25,12,12,170,182,[[817,1,1,170,171],[821,4,4,171,175],[822,1,1,175,176],[824,1,1,176,177],[831,2,2,177,179],[837,1,1,179,180],[840,1,1,180,181],[843,1,1,181,182]]],[26,1,1,182,183,[[858,1,1,182,183]]],[27,4,4,183,187,[[863,1,1,183,184],[872,1,1,184,185],[873,1,1,185,186],[874,1,1,186,187]]],[29,3,3,187,190,[[880,1,1,187,188],[881,1,1,188,189],[887,1,1,189,190]]],[32,2,2,190,192,[[898,1,1,190,191],[899,1,1,191,192]]],[33,1,1,192,193,[[901,1,1,192,193]]],[37,4,3,193,196,[[912,1,1,193,194],[918,2,1,194,195],[920,1,1,195,196]]]],[299,534,598,1027,1074,1187,1259,1332,1377,1421,1435,1656,1666,1668,1681,1687,1689,1816,1833,1857,1858,1867,1885,1948,1953,1979,2027,2053,2062,2170,2382,2439,2442,2445,2446,2449,2461,2474,2822,3042,3317,3402,3445,3507,3511,3524,3537,3556,3569,3605,3966,4194,4207,4493,4761,4798,4834,4919,4943,4947,4957,5059,5098,5151,5164,5277,5282,5345,5428,5568,5675,5701,5704,5840,6043,6046,6280,6370,6458,6493,6557,6834,7054,7407,7466,7945,7965,7994,8306,8657,8897,8994,9006,9026,9060,9179,9649,9651,9666,9730,9990,10019,10112,10209,10297,11287,11314,11346,11597,11852,13117,14057,14201,14404,14561,14715,15227,15282,15536,15702,15770,16347,16455,17003,17138,17265,17900,17911,18036,18078,18096,18197,18415,18597,18648,18713,18719,18749,18971,19020,19043,19109,19111,19141,19144,19172,19218,19223,19230,19233,19245,19350,19351,19383,19491,19492,19547,19601,19677,19699,19707,19723,19752,19814,20072,20113,20174,20175,20194,20266,20765,20901,20904,20905,20933,20963,21034,21216,21217,21379,21475,21558,22003,22120,22251,22261,22270,22389,22396,22502,22652,22679,22712,22905,22983,23026]]],["Earth",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[9]]],["countries",[48,46,[[0,4,4,0,4,[[9,1,1,0,1],[25,2,2,1,3],[40,1,1,3,4]]],[11,1,1,4,5,[[330,1,1,4,5]]],[12,2,2,5,7,[[359,1,1,5,6],[366,1,1,6,7]]],[13,5,5,7,12,[[377,1,1,7,8],[378,1,1,8,9],[381,1,1,9,10],[386,1,1,10,11],[400,1,1,11,12]]],[14,1,1,12,13,[[405,1,1,12,13]]],[18,1,1,13,14,[[587,1,1,13,14]]],[22,2,2,14,16,[[686,1,1,14,15],[715,1,1,15,16]]],[23,5,5,16,21,[[767,2,2,16,18],[772,1,1,18,19],[776,1,1,19,20],[784,1,1,20,21]]],[25,24,22,21,43,[[806,2,2,21,23],[807,1,1,23,24],[812,3,2,24,26],[813,1,1,26,27],[821,4,4,27,31],[823,2,2,31,33],[826,1,1,33,34],[830,2,1,34,35],[831,3,3,35,38],[833,1,1,38,39],[835,1,1,39,40],[836,1,1,40,41],[837,2,2,41,43]]],[26,3,3,43,46,[[858,1,1,43,44],[860,2,2,44,46]]]],[254,695,696,1252,10059,10969,11194,11437,11445,11495,11616,11966,12100,15792,17816,18370,19487,19492,19626,19768,19952,20551,20552,20571,20671,20672,20695,20918,20927,20929,20936,20980,20991,21090,21195,21211,21227,21230,21257,21326,21354,21378,21383,21995,22076,22078]]],["country",[71,68,[[0,12,12,0,12,[[18,1,1,0,1],[19,1,1,1,2],[23,2,2,2,4],[24,1,1,4,5],[29,1,1,5,6],[31,1,1,6,7],[33,1,1,7,8],[35,1,1,8,9],[41,2,2,9,11],[46,1,1,11,12]]],[2,1,1,12,13,[[114,1,1,12,13]]],[3,3,3,13,16,[[136,1,1,13,14],[148,2,2,14,16]]],[4,2,2,16,18,[[156,1,1,16,17],[178,1,1,17,18]]],[5,13,13,18,31,[[188,3,3,18,21],[192,2,2,21,23],[193,1,1,23,24],[195,1,1,24,25],[196,2,2,25,27],[198,1,1,27,28],[199,1,1,28,29],[205,1,1,29,30],[208,1,1,30,31]]],[6,5,5,31,36,[[218,1,1,31,32],[221,1,1,32,33],[222,1,1,33,34],[226,1,1,34,35],[228,1,1,35,36]]],[9,3,3,36,39,[[281,1,1,36,37],[284,1,1,37,38],[287,1,1,38,39]]],[10,8,7,39,46,[[294,2,1,39,40],[300,2,2,40,42],[301,2,2,42,44],[310,1,1,44,45],[312,1,1,45,46]]],[11,2,2,46,48,[[315,1,1,46,47],[330,1,1,47,48]]],[12,1,1,48,49,[[357,1,1,48,49]]],[13,2,2,49,51,[[375,1,1,49,50],[396,1,1,50,51]]],[22,2,2,51,53,[[679,1,1,51,52],[700,1,1,52,53]]],[23,8,8,53,61,[[746,1,1,53,54],[766,2,2,54,56],[776,1,1,56,57],[788,1,1,57,58],[790,1,1,58,59],[792,1,1,59,60],[795,1,1,60,61]]],[25,4,4,61,65,[[821,1,1,61,62],[826,1,1,62,63],[833,1,1,63,64],[835,1,1,64,65]]],[31,1,1,65,66,[[889,1,1,65,66]]],[37,4,2,66,68,[[916,4,2,66,68]]]],[485,496,595,653,664,855,937,982,1046,1282,1285,1447,3500,4328,4722,4751,5047,5569,5871,5872,5893,5971,5976,5978,6048,6104,6105,6137,6175,6372,6435,6747,6850,6881,6973,7007,8412,8486,8594,8863,9092,9094,9129,9130,9435,9516,9596,10059,10927,11378,11837,17661,18070,18972,19464,19480,19739,20011,20055,20101,20221,20937,21092,21263,21326,22539,22953,22955]]],["earth",[694,650,[[0,108,89,0,89,[[0,19,14,0,14],[1,6,4,14,18],[3,2,2,18,20],[5,11,7,20,27],[6,14,12,27,39],[7,12,10,39,49],[8,11,10,49,59],[9,3,3,59,62],[10,5,4,62,66],[12,2,1,66,67],[13,2,2,67,69],[17,2,2,69,71],[18,3,2,71,73],[21,1,1,73,74],[23,2,2,74,76],[25,1,1,76,77],[26,2,2,77,79],[27,2,2,79,81],[36,1,1,81,82],[40,2,2,82,84],[41,1,1,84,85],[42,1,1,85,86],[44,1,1,86,87],[47,2,2,87,89]]],[1,17,15,89,104,[[57,2,2,89,91],[58,5,5,91,96],[59,3,2,96,98],[64,1,1,98,99],[68,1,1,99,100],[69,2,1,100,101],[80,1,1,101,102],[83,2,2,102,104]]],[2,8,8,104,112,[[100,7,7,104,111],[115,1,1,111,112]]],[3,8,8,112,120,[[127,1,1,112,113],[130,1,1,113,114],[132,3,3,114,117],[138,2,2,117,119],[142,1,1,119,120]]],[4,30,28,120,148,[[155,1,1,120,121],[156,6,6,121,127],[157,2,1,127,128],[162,1,1,128,129],[163,2,2,129,131],[164,2,2,131,133],[165,2,1,133,134],[180,7,7,134,141],[182,1,1,141,142],[183,1,1,142,143],[184,3,3,143,146],[185,2,2,146,148]]],[5,9,9,148,157,[[188,1,1,148,149],[189,2,2,149,151],[190,1,1,151,152],[191,1,1,152,153],[193,3,3,153,156],[209,1,1,156,157]]],[6,5,5,157,162,[[213,1,1,157,158],[215,1,1,158,159],[216,2,2,159,161],[228,1,1,161,162]]],[8,15,14,162,176,[[237,2,2,162,164],[239,1,1,164,165],[240,1,1,165,166],[249,1,1,166,167],[252,3,2,167,169],[259,1,1,169,170],[260,1,1,170,171],[261,2,2,171,173],[263,2,2,173,175],[265,1,1,175,176]]],[9,13,13,176,189,[[267,1,1,176,177],[270,1,1,177,178],[273,2,2,178,180],[278,2,2,180,182],[279,1,1,182,183],[280,2,2,183,185],[284,2,2,185,187],[288,2,2,187,189]]],[10,13,13,189,202,[[291,3,3,189,192],[292,1,1,192,193],[294,1,1,193,194],[298,5,5,194,199],[300,2,2,199,201],[308,1,1,201,202]]],[11,5,4,202,206,[[317,1,1,202,203],[322,1,1,203,204],[331,3,2,204,206]]],[12,13,13,206,219,[[338,2,2,206,208],[353,5,5,208,213],[354,2,2,213,215],[358,1,1,215,216],[359,1,1,216,217],[366,2,2,217,219]]],[13,11,11,219,230,[[367,1,1,219,220],[368,1,1,220,221],[372,3,3,221,224],[375,2,2,224,226],[382,1,1,226,227],[386,1,1,227,228],[398,1,1,228,229],[402,1,1,229,230]]],[14,1,1,230,231,[[403,1,1,230,231]]],[15,1,1,231,232,[[421,1,1,231,232]]],[17,44,44,232,276,[[436,2,2,232,234],[437,2,2,234,236],[438,1,1,236,237],[440,3,3,237,240],[442,1,1,240,241],[443,1,1,241,242],[444,2,2,242,244],[447,3,3,244,247],[449,2,2,247,249],[450,2,2,249,251],[451,1,1,251,252],[453,2,2,252,254],[455,2,2,254,256],[457,1,1,256,257],[459,2,2,257,259],[461,1,1,259,260],[463,2,2,260,262],[465,1,1,262,263],[469,1,1,263,264],[470,1,1,264,265],[472,4,4,265,269],[473,6,6,269,275],[474,1,1,275,276]]],[18,132,130,276,406,[[479,3,3,276,279],[484,1,1,279,280],[485,2,2,280,282],[487,1,1,282,283],[489,1,1,283,284],[493,1,1,284,285],[494,1,1,285,286],[495,1,1,286,287],[496,1,1,287,288],[499,1,1,288,289],[501,1,1,289,290],[502,1,1,290,291],[510,3,3,291,294],[514,3,3,294,297],[518,1,1,297,298],[521,1,1,298,299],[522,1,1,299,300],[523,5,5,300,305],[524,3,3,305,308],[525,2,2,308,310],[527,2,2,310,312],[534,2,2,312,314],[535,2,2,314,316],[536,1,1,316,317],[537,1,1,317,318],[538,1,1,318,319],[540,1,1,319,320],[542,2,2,320,322],[543,1,1,322,323],[544,4,4,323,327],[545,2,2,327,329],[546,1,1,329,330],[548,1,1,330,331],[549,5,4,331,335],[550,2,2,335,337],[551,3,3,337,340],[552,2,2,340,342],[553,3,3,342,345],[554,1,1,345,346],[555,1,1,346,347],[556,1,1,347,348],[559,2,2,348,350],[560,1,1,350,351],[566,2,2,351,353],[567,1,1,353,354],[571,1,1,354,355],[572,1,1,355,356],[573,4,4,356,360],[574,4,4,360,364],[575,3,3,364,367],[576,1,1,367,368],[579,2,2,368,370],[580,1,1,370,371],[581,7,7,371,378],[582,1,1,378,379],[583,1,1,379,380],[585,1,1,380,381],[589,1,1,381,382],[590,1,1,382,383],[591,1,1,383,384],[592,2,2,384,386],[596,5,5,386,391],[598,1,1,391,392],[601,1,1,392,393],[611,1,1,393,394],[612,2,2,394,396],[613,1,1,396,397],[615,1,1,397,398],[616,1,1,398,399],[617,1,1,399,400],[618,1,1,400,401],[624,2,2,401,403],[625,4,3,403,406]]],[19,14,14,406,420,[[630,1,1,406,407],[635,5,5,407,412],[637,1,1,412,413],[638,1,1,413,414],[644,1,1,414,415],[652,1,1,415,416],[657,4,4,416,420]]],[20,11,11,420,431,[[659,1,1,420,421],[661,1,1,421,422],[663,2,2,422,424],[665,1,1,424,425],[666,2,2,425,427],[668,1,1,427,428],[669,2,2,428,430],[670,1,1,430,431]]],[21,1,1,431,432,[[672,1,1,431,432]]],[22,94,84,432,516,[[679,1,1,432,433],[680,2,2,433,435],[682,1,1,435,436],[683,2,2,436,438],[684,1,1,438,439],[686,1,1,439,440],[688,1,1,440,441],[689,4,3,441,444],[690,1,1,444,445],[691,1,1,445,446],[692,4,4,446,450],[696,3,2,450,452],[701,2,2,452,454],[702,12,8,454,462],[703,1,1,462,463],[704,6,5,463,468],[706,2,2,468,470],[711,1,1,470,471],[712,1,1,471,472],[715,3,2,472,474],[718,6,6,474,480],[719,2,2,480,482],[720,3,3,482,485],[721,1,1,485,486],[722,2,2,486,488],[723,5,5,488,493],[726,2,2,493,495],[727,4,4,495,499],[729,4,3,499,502],[730,1,1,502,503],[732,2,2,503,505],[733,1,1,505,506],[736,1,1,506,507],[738,1,1,507,508],[739,1,1,508,509],[740,1,1,509,510],[741,1,1,510,511],[743,3,2,511,513],[744,3,3,513,516]]],[23,54,51,516,567,[[748,2,2,516,518],[750,2,2,518,520],[751,1,1,520,521],[753,2,2,521,523],[754,3,3,523,526],[758,1,1,526,527],[759,3,3,527,530],[760,2,2,530,532],[761,1,1,532,533],[763,1,1,533,534],[766,3,1,534,535],[767,2,2,535,537],[768,1,1,537,538],[769,6,5,538,543],[770,1,1,543,544],[773,1,1,544,545],[775,3,3,545,548],[776,1,1,548,549],[777,2,2,549,551],[778,3,3,551,554],[788,1,1,554,555],[790,1,1,555,556],[793,1,1,556,557],[794,3,3,557,560],[795,7,7,560,567]]],[24,5,5,567,572,[[798,3,3,567,570],[799,1,1,570,571],[800,1,1,571,572]]],[25,25,25,572,597,[[802,3,3,572,575],[808,1,1,575,576],[809,2,2,576,578],[810,1,1,578,579],[811,2,2,579,581],[827,1,1,581,582],[828,1,1,582,583],[829,1,1,583,584],[832,4,4,584,588],[833,3,3,588,591],[835,2,2,591,593],[836,1,1,593,594],[840,2,2,594,596],[844,1,1,596,597]]],[26,1,1,597,598,[[857,1,1,597,598]]],[27,5,5,598,603,[[863,4,4,598,602],[867,1,1,602,603]]],[28,3,3,603,606,[[877,2,2,603,605],[878,1,1,605,606]]],[29,9,8,606,614,[[880,1,1,606,607],[881,1,1,607,608],[882,1,1,608,609],[883,2,2,609,611],[886,1,1,611,612],[887,3,2,612,614]]],[31,1,1,614,615,[[890,1,1,614,615]]],[32,7,7,615,622,[[893,2,2,615,617],[896,1,1,617,618],[897,1,1,618,619],[898,1,1,619,620],[899,2,2,620,622]]],[33,1,1,622,623,[[900,1,1,622,623]]],[34,5,5,623,628,[[904,2,2,623,625],[905,3,3,625,628]]],[35,4,4,628,632,[[907,2,2,628,630],[908,2,2,630,632]]],[36,3,3,632,635,[[909,1,1,632,633],[910,2,2,633,635]]],[37,17,14,635,649,[[911,3,2,635,637],[914,2,2,637,639],[915,3,3,639,642],[916,4,2,642,644],[919,1,1,644,645],[922,2,2,645,647],[924,2,2,647,649]]],[38,1,1,649,650,[[928,1,1,649,650]]]],[0,1,10,11,14,16,19,21,23,24,25,27,28,29,31,34,35,36,91,93,141,142,143,148,149,150,154,162,163,165,169,171,173,176,177,178,180,182,183,184,186,190,192,194,196,197,200,202,205,206,207,212,215,216,218,219,221,222,224,242,259,266,267,270,274,275,334,355,358,442,449,480,488,565,594,643,696,755,766,785,787,1093,1242,1251,1258,1316,1365,1463,1467,1727,1732,1756,1757,1758,1771,1775,1782,1792,1932,2031,2055,2437,2504,2506,2999,3018,3026,3038,3039,3041,3043,3543,4055,4129,4226,4227,4228,4380,4386,4499,4999,5021,5022,5030,5036,5040,5043,5061,5200,5214,5229,5256,5264,5279,5612,5621,5634,5636,5637,5660,5675,5727,5756,5759,5771,5780,5826,5827,5880,5904,5906,5934,5948,5982,5985,5997,6474,6593,6627,6658,6691,7003,7248,7250,7302,7322,7523,7664,7667,7847,7902,7913,7925,7955,7962,7994,8024,8131,8189,8203,8302,8303,8348,8367,8376,8487,8506,8610,8645,8748,8757,8769,8772,8878,9008,9012,9028,9038,9045,9102,9103,9383,9662,9803,10076,10080,10262,10271,10834,10843,10850,10851,10853,10871,10884,10950,10972,11175,11179,11203,11223,11296,11300,11315,11386,11387,11518,11611,11894,12016,12018,12517,12876,12877,12893,12894,12918,12961,12973,12976,13009,13038,13057,13075,13136,13143,13152,13189,13200,13222,13232,13256,13280,13293,13330,13353,13397,13440,13454,13474,13509,13528,13565,13696,13731,13772,13775,13781,13786,13797,13806,13811,13817,13819,13826,13848,13947,13953,13955,14000,14013,14021,14059,14072,14095,14114,14125,14172,14233,14242,14264,14371,14374,14380,14459,14461,14472,14544,14596,14613,14616,14620,14622,14623,14624,14627,14632,14634,14636,14644,14669,14672,14773,14779,14781,14790,14803,14809,14821,14848,14865,14869,14877,14895,14897,14899,14900,14908,14932,14969,14996,15006,15008,15016,15019,15029,15045,15060,15065,15068,15074,15079,15089,15090,15093,15111,15182,15187,15238,15241,15259,15337,15353,15380,15433,15458,15466,15474,15476,15478,15479,15482,15483,15487,15493,15494,15499,15500,15540,15546,15560,15576,15580,15584,15585,15595,15603,15606,15613,15668,15747,15805,15819,15829,15845,15846,15917,15962,15985,15988,16017,16083,16110,16175,16181,16182,16202,16235,16254,16274,16283,16359,16366,16378,16382,16384,16474,16618,16625,16628,16631,16633,16686,16719,16897,17116,17255,17267,17272,17275,17319,17380,17399,17406,17449,17472,17474,17500,17515,17516,17530,17566,17656,17704,17706,17735,17747,17765,17772,17829,17864,17888,17893,17896,17905,17919,17935,17937,17944,17954,18000,18003,18085,18086,18099,18100,18101,18111,18112,18113,18114,18115,18126,18139,18145,18148,18149,18151,18166,18186,18288,18304,18368,18372,18432,18441,18442,18443,18444,18448,18456,18460,18484,18485,18490,18511,18556,18557,18569,18573,18579,18580,18583,18627,18634,18642,18644,18649,18659,18679,18686,18689,18706,18728,18732,18750,18800,18823,18854,18861,18872,18913,18914,18923,18930,18944,19050,19055,19108,19111,19152,19178,19199,19211,19213,19214,19297,19318,19319,19325,19340,19355,19370,19414,19483,19489,19508,19533,19563,19564,19565,19566,19567,19578,19653,19699,19713,19728,19748,19784,19800,19802,19818,19821,20018,20053,20148,20189,20207,20212,20219,20227,20228,20237,20253,20260,20261,20333,20343,20347,20388,20432,20479,20483,20485,20598,20607,20616,20631,20649,20652,21120,21154,21175,21242,21244,21246,21248,21252,21266,21272,21319,21340,21358,21462,21466,21574,21966,22123,22126,22127,22128,22170,22321,22341,22359,22386,22400,22423,22430,22431,22490,22501,22504,22554,22581,22582,22633,22637,22650,22666,22681,22689,22762,22768,22771,22774,22777,22808,22816,22828,22840,22850,22861,22876,22888,22889,22932,22936,22939,22942,22945,22952,22954,23009,23046,23048,23077,23085,23144]]],["field",[1,1,[[25,1,1,0,1,[[830,1,1,0,1]]]],[21188]]],["ground",[94,92,[[0,6,6,0,6,[[17,1,1,0,1],[18,1,1,1,2],[32,1,1,2,3],[37,1,1,3,4],[43,2,2,4,6]]],[1,4,3,6,9,[[53,2,1,6,7],[58,1,1,7,8],[65,1,1,8,9]]],[4,3,3,9,12,[[167,1,1,9,10],[174,1,1,10,11],[180,1,1,11,12]]],[6,6,6,12,18,[[214,1,1,12,13],[216,2,2,13,15],[223,1,1,15,16],[230,2,2,16,18]]],[7,1,1,18,19,[[233,1,1,18,19]]],[8,8,8,19,27,[[238,1,1,19,20],[240,1,1,20,21],[249,2,2,21,23],[255,1,1,23,24],[260,1,1,24,25],[261,1,1,25,26],[263,1,1,26,27]]],[9,9,9,27,36,[[268,1,1,27,28],[274,1,1,28,29],[280,4,4,29,33],[284,1,1,33,34],[286,1,1,34,35],[290,1,1,35,36]]],[10,1,1,36,37,[[291,1,1,36,37]]],[11,4,4,37,41,[[314,2,2,37,39],[316,1,1,39,40],[325,1,1,40,41]]],[12,1,1,41,42,[[358,1,1,41,42]]],[13,2,2,42,44,[[373,1,1,42,43],[386,1,1,43,44]]],[15,1,1,44,45,[[420,1,1,44,45]]],[17,5,5,45,50,[[436,1,1,45,46],[437,1,1,46,47],[451,1,1,47,48],[453,1,1,48,49],[474,1,1,49,50]]],[18,6,6,50,56,[[551,1,1,50,51],[566,2,2,51,53],[584,1,1,53,54],[620,1,1,54,55],[624,1,1,55,56]]],[22,7,7,56,63,[[681,1,1,56,57],[692,1,1,57,58],[699,1,1,58,59],[703,1,1,59,60],[704,1,1,60,61],[725,1,1,61,62],[729,1,1,62,63]]],[23,2,2,63,65,[[758,1,1,63,64],[771,1,1,64,65]]],[24,5,4,65,69,[[798,5,4,65,69]]],[25,13,13,69,82,[[813,2,2,69,71],[814,1,1,71,72],[820,2,2,72,74],[825,1,1,74,75],[827,2,2,75,77],[829,1,1,77,78],[839,1,1,78,79],[842,2,2,79,81],[844,1,1,81,82]]],[26,7,7,82,89,[[857,5,5,82,87],[859,2,2,87,89]]],[29,1,1,89,90,[[881,1,1,89,90]]],[30,1,1,90,91,[[888,1,1,90,91]]],[37,1,1,91,92,[[918,1,1,91,92]]]],[426,458,963,1128,1335,1338,1604,1765,1961,5342,5476,5667,6620,6693,6694,6904,7075,7079,7159,7295,7323,7540,7553,7771,7884,7912,7956,8071,8211,8360,8370,8378,8389,8489,8564,8712,8740,9566,9570,9640,9889,10955,11327,11605,12499,12889,12904,13251,13286,13858,15055,15365,15370,15734,16296,16357,17733,17940,18044,18130,18135,18600,18696,19295,19601,20334,20341,20342,20353,20686,20692,20722,20893,20894,21063,21111,21116,21174,21445,21542,21546,21586,21966,21968,21971,21973,21979,22024,22030,22409,22513,22988]]],["land",[1357,1171,[[0,163,138,0,138,[[1,3,3,0,3],[3,1,1,3,4],[9,2,2,4,6],[10,3,3,6,9],[11,8,5,9,14],[12,7,7,14,21],[14,3,3,21,24],[15,1,1,24,25],[16,2,1,25,26],[18,1,1,26,27],[19,1,1,27,28],[20,3,3,28,31],[21,1,1,31,32],[22,6,6,32,38],[23,4,3,38,41],[25,5,5,41,46],[26,1,1,46,47],[27,2,2,47,49],[28,1,1,49,50],[30,4,3,50,53],[31,1,1,53,54],[32,1,1,54,55],[33,5,4,55,59],[34,4,3,59,62],[35,10,10,62,72],[36,2,1,72,73],[40,22,18,73,91],[41,10,9,91,100],[42,2,2,100,102],[44,9,8,102,110],[45,6,6,110,116],[46,18,9,116,125],[47,5,5,125,130],[48,2,2,130,132],[49,7,6,132,138]]],[1,88,71,138,209,[[50,2,2,138,140],[51,2,2,140,142],[52,5,2,142,144],[53,1,1,144,145],[54,2,2,145,147],[55,4,3,147,150],[56,3,3,150,153],[57,12,9,153,162],[58,9,7,162,169],[59,11,6,169,175],[60,4,4,175,179],[61,9,8,179,187],[62,5,4,187,191],[63,1,1,191,192],[65,3,2,192,194],[67,2,2,194,196],[71,1,1,196,197],[72,6,6,197,203],[81,1,1,203,204],[82,2,2,204,206],[83,3,3,206,209]]],[2,60,46,209,255,[[103,2,1,209,210],[105,1,1,210,211],[107,7,4,211,215],[108,6,5,215,220],[109,4,4,220,224],[111,1,1,224,225],[112,3,3,225,228],[114,16,13,228,241],[115,17,12,241,253],[116,3,2,253,255]]],[3,104,88,255,343,[[119,1,1,255,256],[124,1,1,256,257],[125,1,1,257,258],[126,2,2,258,260],[129,16,13,260,273],[130,19,16,273,289],[131,3,3,289,292],[132,1,1,292,293],[134,2,2,293,295],[136,3,3,295,298],[137,7,7,298,305],[138,3,3,305,308],[142,3,3,308,311],[143,1,1,311,312],[148,16,12,312,324],[149,9,7,324,331],[150,7,5,331,336],[151,8,6,336,342],[152,1,1,342,343]]],[4,144,124,343,467,[[153,10,8,343,351],[154,8,7,351,358],[155,8,8,358,366],[156,12,10,366,376],[157,3,3,376,379],[158,5,5,379,384],[159,1,1,384,385],[160,8,5,385,390],[161,6,5,390,395],[162,3,3,395,398],[163,14,12,398,410],[164,3,3,410,413],[167,5,4,413,417],[168,1,1,417,418],[169,1,1,418,419],[170,1,1,419,420],[171,6,6,420,426],[175,2,2,426,428],[176,3,3,428,431],[177,1,1,431,432],[178,4,3,432,435],[179,3,2,435,437],[180,5,4,437,441],[181,10,9,441,450],[182,2,2,450,452],[183,5,5,452,457],[184,5,3,457,460],[185,2,2,460,462],[186,7,5,462,467]]],[5,79,67,467,534,[[187,8,7,467,474],[188,6,5,474,479],[191,5,3,479,482],[193,1,1,482,483],[194,1,1,483,484],[195,2,1,484,485],[196,1,1,485,486],[197,6,4,486,490],[198,2,1,490,491],[199,6,6,491,497],[200,6,6,497,503],[201,1,1,503,504],[203,5,5,504,509],[204,8,7,509,516],[207,2,2,516,518],[208,11,9,518,527],[209,2,2,527,529],[210,6,5,529,534]]],[6,41,36,534,570,[[211,6,6,534,540],[212,3,3,540,543],[213,2,2,543,545],[215,1,1,545,546],[216,3,3,546,549],[219,1,1,549,550],[220,2,2,550,552],[221,11,8,552,560],[222,1,1,560,561],[228,8,6,561,567],[230,1,1,567,568],[231,2,2,568,570]]],[7,3,3,570,573,[[232,2,2,570,572],[233,1,1,572,573]]],[8,23,19,573,592,[[241,2,1,573,574],[244,4,2,574,576],[248,4,4,576,580],[249,2,2,580,582],[256,1,1,582,583],[257,1,1,583,584],[258,2,2,584,586],[262,4,3,586,589],[263,1,1,589,590],[264,1,1,590,591],[266,1,1,591,592]]],[9,13,12,592,604,[[269,1,1,592,593],[271,1,1,593,594],[273,1,1,594,595],[276,1,1,595,596],[281,1,1,596,597],[283,1,1,597,598],[285,1,1,598,599],[287,1,1,599,600],[290,5,4,600,604]]],[10,28,25,604,629,[[294,3,3,604,607],[298,8,5,607,612],[299,7,7,612,619],[300,1,1,619,620],[301,1,1,620,621],[304,1,1,621,622],[305,2,2,622,624],[307,1,1,624,625],[308,2,2,625,627],[310,1,1,627,628],[312,1,1,628,629]]],[11,49,39,629,668,[[315,1,1,629,630],[316,1,1,630,631],[318,1,1,631,632],[320,3,3,632,635],[322,1,1,635,636],[323,5,5,636,641],[325,1,1,641,642],[327,4,4,642,646],[328,1,1,646,647],[329,4,3,647,650],[330,7,3,650,653],[331,3,2,653,655],[333,2,1,655,656],[335,6,4,656,660],[336,2,2,660,662],[337,7,6,662,668]]],[12,20,19,668,687,[[338,1,1,668,669],[339,1,1,669,670],[341,1,1,670,671],[342,4,4,671,675],[343,1,1,675,676],[344,1,1,676,677],[347,1,1,677,678],[348,1,1,678,679],[350,1,1,679,680],[353,1,1,680,681],[356,2,2,681,683],[358,1,1,683,684],[359,3,2,684,686],[365,1,1,686,687]]],[13,43,39,687,726,[[368,1,1,687,688],[372,8,5,688,693],[373,3,3,693,696],[374,3,3,696,699],[375,4,4,699,703],[380,3,3,703,706],[381,1,1,706,707],[383,1,1,707,708],[385,2,2,708,710],[386,1,1,710,711],[388,1,1,711,712],[389,3,3,712,715],[392,1,1,715,716],[396,1,1,716,717],[398,3,3,717,720],[399,2,1,720,721],[400,2,2,721,723],[402,3,3,723,726]]],[14,7,6,726,732,[[406,1,1,726,727],[408,1,1,727,728],[411,3,2,728,730],[412,2,2,730,732]]],[15,16,12,732,744,[[416,1,1,732,733],[417,1,1,733,734],[421,12,8,734,742],[422,2,2,742,744]]],[16,2,2,744,746,[[433,1,1,744,745],[435,1,1,745,746]]],[17,7,7,746,753,[[436,2,2,746,748],[445,2,2,748,750],[463,1,1,750,751],[472,1,1,751,752],[477,1,1,752,753]]],[18,35,35,753,788,[[504,1,1,753,754],[512,1,1,754,755],[514,3,3,755,758],[521,1,1,758,759],[540,1,1,759,760],[551,1,1,760,761],[555,1,1,761,762],[557,1,1,762,763],[558,1,1,763,764],[562,3,3,764,767],[565,1,1,767,768],[578,2,2,768,770],[582,8,8,770,778],[583,3,3,778,781],[584,1,1,781,782],[593,1,1,782,783],[612,1,1,783,784],[613,1,1,784,785],[619,1,1,785,786],[620,2,2,786,788]]],[19,4,4,788,792,[[629,1,1,788,789],[655,1,1,789,790],[656,1,1,790,791],[658,1,1,791,792]]],[20,2,2,792,794,[[668,2,2,792,794]]],[21,1,1,794,795,[[672,1,1,794,795]]],[22,67,57,795,852,[[679,1,1,795,796],[680,3,2,796,798],[683,1,1,798,799],[684,1,1,799,800],[685,3,3,800,803],[686,1,1,803,804],[687,4,3,804,807],[688,1,1,807,808],[691,3,3,808,811],[692,3,3,811,814],[694,2,2,814,816],[696,3,3,816,819],[697,4,4,819,823],[699,1,1,823,824],[701,2,2,824,826],[702,3,3,826,829],[704,2,2,829,831],[705,2,1,831,832],[708,1,1,832,833],[710,1,1,833,834],[711,1,1,834,835],[712,3,3,835,838],[714,8,4,838,842],[715,3,2,842,844],[716,1,1,844,845],[719,1,1,845,846],[727,1,1,846,847],[735,1,1,847,848],[738,2,2,848,850],[739,1,1,850,851],[740,3,1,851,852]]],[23,167,145,852,997,[[745,4,3,852,855],[746,7,5,855,860],[747,6,6,860,866],[748,4,4,866,870],[749,3,2,870,872],[750,2,2,872,874],[751,2,2,874,876],[752,2,1,876,877],[753,2,2,877,879],[754,1,1,879,880],[755,1,1,880,881],[756,6,5,881,886],[757,1,1,886,887],[758,3,3,887,890],[759,2,2,890,892],[760,5,4,892,896],[761,2,2,896,898],[762,1,1,898,899],[766,3,3,899,902],[767,3,2,902,904],[768,4,3,904,907],[769,6,5,907,912],[770,2,2,912,914],[771,1,1,914,915],[774,1,1,915,916],[775,1,1,916,917],[776,7,6,917,923],[777,3,3,923,926],[778,1,1,926,927],[779,1,1,927,928],[780,1,1,928,929],[781,5,5,929,934],[783,2,2,934,936],[784,6,5,936,941],[785,2,2,941,943],[786,4,4,943,947],[787,6,6,947,953],[788,18,13,953,966],[789,1,1,966,967],[790,3,3,967,970],[791,2,1,970,971],[792,1,1,971,972],[794,10,10,972,982],[795,13,10,982,992],[796,6,5,992,997]]],[24,1,1,997,998,[[800,1,1,997,998]]],[25,117,108,998,1106,[[802,1,1,998,999],[807,1,1,999,1000],[808,4,4,1000,1004],[809,1,1,1004,1005],[810,1,1,1005,1006],[812,1,1,1006,1007],[813,4,3,1007,1010],[815,6,5,1010,1015],[816,1,1,1015,1016],[817,1,1,1016,1017],[818,3,3,1017,1020],[820,2,2,1020,1022],[821,7,7,1022,1029],[822,2,2,1029,1031],[823,3,3,1031,1034],[824,3,3,1034,1037],[827,1,1,1037,1038],[828,2,2,1038,1040],[830,7,6,1040,1046],[831,6,5,1046,1051],[832,1,1,1051,1052],[833,10,10,1052,1062],[834,9,7,1062,1069],[835,3,3,1069,1072],[837,5,5,1072,1077],[838,2,2,1077,1079],[839,7,6,1079,1085],[840,5,5,1085,1090],[841,1,1,1090,1091],[846,7,5,1091,1096],[847,2,2,1096,1098],[848,5,5,1098,1103],[849,3,3,1103,1106]]],[26,8,7,1106,1113,[[850,1,1,1106,1107],[858,1,1,1107,1108],[860,6,5,1108,1113]]],[27,11,10,1113,1123,[[862,2,2,1113,1115],[863,1,1,1115,1116],[865,3,2,1116,1118],[868,1,1,1118,1119],[870,1,1,1119,1120],[871,1,1,1120,1121],[872,1,1,1121,1122],[874,1,1,1122,1123]]],[28,9,9,1123,1132,[[876,3,3,1123,1126],[877,4,4,1126,1130],[878,2,2,1130,1132]]],[29,10,10,1132,1142,[[880,1,1,1132,1133],[881,2,2,1133,1135],[885,3,3,1135,1138],[886,3,3,1138,1141],[887,1,1,1141,1142]]],[32,6,4,1142,1146,[[897,5,3,1142,1145],[899,1,1,1145,1146]]],[33,1,1,1146,1147,[[902,1,1,1146,1147]]],[34,5,5,1147,1152,[[903,1,1,1147,1148],[904,2,2,1148,1150],[905,2,2,1150,1152]]],[35,4,3,1152,1155,[[906,2,1,1152,1153],[907,1,1,1153,1154],[908,1,1,1154,1155]]],[36,2,2,1155,1157,[[909,1,1,1155,1156],[910,1,1,1156,1157]]],[37,16,13,1157,1170,[[911,1,1,1157,1158],[913,1,1,1158,1159],[915,1,1,1159,1160],[917,3,2,1160,1162],[919,1,1,1162,1163],[920,1,1,1163,1164],[921,3,2,1164,1166],[922,1,1,1166,1167],[923,3,2,1167,1169],[924,1,1,1169,1170]]],[38,1,1,1170,1171,[[927,1,1,1170,1171]]]],[41,42,43,95,244,245,268,294,297,299,303,304,305,308,324,325,327,328,330,333,335,367,373,378,384,405,485,510,536,545,547,549,573,578,583,584,586,590,596,598,628,693,694,695,704,714,773,777,786,796,876,886,891,931,978,981,990,1001,1010,1017,1023,1033,1045,1046,1047,1056,1057,1060,1061,1070,1071,1083,1084,1214,1224,1225,1226,1228,1229,1231,1236,1238,1239,1240,1241,1243,1247,1248,1249,1250,1251,1257,1258,1261,1264,1265,1281,1282,1284,1286,1291,1301,1364,1366,1368,1375,1376,1378,1383,1384,1392,1398,1406,1414,1417,1420,1421,1424,1426,1431,1433,1434,1440,1447,1448,1454,1455,1456,1458,1472,1488,1503,1511,1513,1514,1517,1519,1530,1539,1542,1569,1576,1587,1596,1621,1637,1644,1659,1663,1683,1688,1704,1706,1715,1716,1717,1724,1726,1727,1732,1734,1735,1747,1751,1764,1765,1766,1767,1768,1789,1790,1791,1792,1798,1799,1809,1811,1812,1815,1817,1828,1829,1835,1841,1845,1849,1864,1872,1878,1882,1884,1892,1950,1982,2002,2026,2134,2153,2154,2173,2174,2175,2177,2451,2474,2476,2508,2511,2520,3145,3223,3254,3276,3278,3279,3290,3304,3310,3314,3315,3320,3322,3340,3342,3393,3412,3424,3441,3471,3473,3474,3475,3476,3478,3479,3487,3488,3492,3493,3507,3514,3525,3528,3529,3530,3544,3557,3558,3562,3565,3566,3567,3568,3594,3600,3705,3956,3979,3997,4018,4077,4091,4092,4093,4094,4095,4096,4100,4101,4102,4103,4104,4107,4110,4111,4114,4115,4116,4117,4122,4124,4131,4132,4138,4139,4142,4144,4145,4146,4155,4171,4172,4208,4270,4277,4323,4334,4335,4344,4362,4364,4366,4371,4374,4375,4380,4381,4388,4508,4542,4544,4566,4719,4722,4723,4725,4726,4727,4735,4740,4747,4748,4750,4751,4797,4800,4811,4812,4813,4814,4815,4818,4828,4829,4833,4845,4855,4859,4873,4877,4878,4879,4881,4897,4899,4900,4913,4914,4917,4927,4928,4950,4958,4962,4965,4967,4969,4975,4977,4983,4987,4988,4993,4995,5000,5003,5005,5009,5018,5025,5026,5029,5030,5042,5050,5051,5068,5084,5086,5087,5089,5096,5104,5109,5112,5138,5144,5145,5146,5147,5161,5162,5163,5180,5185,5193,5197,5205,5211,5216,5217,5218,5219,5220,5222,5225,5233,5237,5238,5239,5241,5250,5269,5323,5326,5330,5334,5362,5378,5393,5407,5408,5409,5414,5416,5420,5507,5520,5529,5539,5547,5566,5567,5575,5581,5587,5588,5619,5623,5635,5663,5680,5681,5687,5695,5701,5702,5703,5706,5707,5713,5724,5732,5735,5744,5749,5751,5768,5807,5810,5823,5838,5841,5843,5844,5845,5850,5853,5855,5857,5862,5864,5865,5866,5870,5878,5883,5887,5893,5940,5945,5946,5985,6003,6061,6106,6110,6123,6129,6130,6131,6155,6156,6158,6159,6161,6179,6188,6191,6192,6194,6196,6202,6221,6281,6283,6287,6290,6291,6294,6296,6297,6299,6301,6302,6303,6383,6424,6430,6435,6436,6437,6439,6441,6445,6458,6459,6465,6476,6479,6484,6489,6491,6494,6511,6524,6535,6536,6541,6542,6546,6547,6551,6579,6598,6654,6659,6663,6664,6791,6815,6819,6832,6841,6842,6844,6846,6847,6848,6850,6884,6995,7000,7002,7003,7010,7023,7055,7114,7123,7128,7134,7160,7336,7395,7396,7488,7492,7502,7504,7533,7537,7783,7792,7833,7837,7931,7938,7939,7951,7978,8018,8093,8138,8203,8242,8393,8475,8520,8594,8698,8700,8705,8717,8854,8863,8865,9021,9022,9031,9032,9033,9059,9062,9064,9069,9070,9072,9077,9085,9126,9242,9261,9269,9324,9346,9347,9415,9526,9603,9641,9697,9728,9729,9733,9826,9832,9843,9847,9848,9849,9891,9930,9944,9945,9954,9978,9988,10009,10010,10049,10056,10057,10068,10098,10143,10189,10195,10198,10200,10216,10217,10225,10234,10241,10243,10244,10246,10295,10328,10425,10437,10439,10451,10453,10509,10556,10668,10677,10762,10838,10909,10910,10946,10966,10982,11151,11228,11309,11310,11318,11319,11320,11337,11338,11345,11352,11354,11363,11369,11375,11376,11390,11476,11481,11482,11498,11525,11579,11581,11594,11656,11669,11676,11677,11753,11836,11879,11896,11906,11933,11940,11941,11994,11996,12014,12114,12172,12248,12249,12254,12263,12363,12396,12519,12521,12526,12533,12534,12535,12546,12547,12579,12580,12834,12867,12870,12879,13107,13108,13517,13782,13937,14298,14430,14453,14479,14484,14574,14840,15056,15125,15207,15222,15272,15280,15283,15320,15519,15521,15617,15622,15629,15633,15636,15638,15641,15642,15673,15675,15689,15733,15857,16187,16217,16291,16299,16303,16454,17198,17228,17307,17509,17510,17566,17673,17692,17693,17769,17781,17800,17804,17806,17815,17830,17831,17848,17873,17911,17915,17920,17948,17949,17953,17970,17973,17998,17999,18004,18022,18023,18024,18028,18049,18087,18090,18098,18106,18108,18131,18140,18164,18223,18261,18296,18309,18310,18312,18340,18347,18348,18350,18359,18390,18401,18469,18655,18778,18839,18842,18850,18858,18947,18960,18964,18967,18971,18972,18980,18996,19003,19004,19011,19018,19020,19021,19032,19034,19047,19054,19077,19088,19097,19101,19126,19153,19169,19187,19194,19219,19231,19253,19254,19260,19261,19264,19279,19301,19308,19311,19322,19329,19339,19342,19349,19354,19361,19363,19400,19466,19481,19482,19494,19499,19529,19530,19532,19543,19545,19546,19554,19572,19589,19592,19603,19670,19714,19746,19751,19753,19772,19774,19775,19786,19788,19790,19820,19834,19871,19875,19876,19881,19886,19893,19928,19933,19945,19947,19948,19950,19953,19959,19975,19985,19988,19989,19991,20001,20002,20004,20008,20009,20010,20011,20018,20019,20022,20023,20024,20025,20031,20032,20034,20036,20037,20038,20044,20057,20058,20061,20075,20104,20167,20169,20182,20184,20187,20188,20191,20200,20204,20211,20214,20216,20217,20239,20240,20241,20255,20258,20259,20264,20282,20285,20292,20301,20303,20441,20467,20577,20579,20584,20600,20604,20621,20631,20670,20693,20699,20700,20744,20746,20747,20748,20750,20762,20791,20829,20830,20838,20885,20888,20900,20901,20903,20910,20923,20931,20935,20974,20976,21000,21005,21006,21022,21026,21055,21120,21138,21150,21192,21193,21195,21197,21202,21203,21209,21215,21216,21217,21229,21242,21252,21254,21256,21263,21271,21272,21273,21274,21275,21280,21282,21283,21304,21305,21306,21308,21309,21338,21341,21342,21364,21377,21387,21393,21394,21419,21422,21427,21433,21434,21436,21437,21441,21460,21461,21462,21463,21464,21479,21631,21634,21638,21646,21652,21658,21664,21692,21693,21694,21697,21700,21714,21716,21731,21739,21994,22052,22055,22064,22077,22078,22096,22105,22108,22134,22136,22194,22211,22226,22245,22271,22293,22297,22305,22312,22314,22329,22331,22345,22362,22389,22404,22406,22466,22474,22476,22485,22489,22492,22500,22638,22639,22644,22677,22725,22737,22756,22765,22775,22780,22805,22810,22839,22851,22859,22899,22921,22947,22967,22976,23000,23026,23034,23044,23057,23061,23067,23078,23132]]],["lands",[32,30,[[0,4,4,0,4,[[9,2,2,0,2],[40,2,2,2,4]]],[2,2,2,4,6,[[115,2,2,4,6]]],[11,2,2,6,8,[[331,2,2,6,8]]],[12,1,1,8,9,[[351,1,1,8,9]]],[13,7,5,9,14,[[375,1,1,9,10],[379,1,1,10,11],[383,1,1,11,12],[398,4,2,12,14]]],[14,4,4,14,18,[[411,4,4,14,18]]],[15,2,2,18,20,[[421,1,1,18,19],[422,1,1,19,20]]],[18,4,4,20,24,[[543,1,1,20,21],[577,1,1,21,22],[582,1,1,22,23],[583,1,1,23,24]]],[22,2,2,24,26,[[714,1,1,24,25],[715,1,1,25,26]]],[23,2,2,26,28,[[760,1,1,26,27],[771,1,1,27,28]]],[25,2,2,28,30,[[821,2,2,28,30]]]],[239,265,1249,1252,3560,3563,10072,10078,10791,11392,11462,11533,11888,11892,12238,12239,12244,12248,12541,12577,14874,15509,15650,15678,18350,18363,19351,19602,20901,20910]]],["nations",[1,1,[[22,1,1,0,1,[[715,1,1,0,1]]]],[18370]]],["way",[1,1,[[0,1,1,0,1,[[47,1,1,0,1]]]],[1458]]],["world",[4,4,[[18,1,1,0,1,[[499,1,1,0,1]]],[22,2,2,1,3,[[701,1,1,1,2],[740,1,1,2,3]]],[23,1,1,3,4,[[769,1,1,3,4]]]],[14231,18094,18865,19560]]]]},{"k":"H777","v":[["Arza",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9292]]]]},{"k":"H778","v":[["earth",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19212]]]]},{"k":"H779","v":[["*",[63,52,[[0,9,8,0,8,[[2,2,2,0,2],[3,1,1,2,3],[4,1,1,3,4],[8,1,1,4,5],[11,1,1,5,6],[26,2,1,6,7],[48,1,1,7,8]]],[1,1,1,8,9,[[71,1,1,8,9]]],[3,13,9,9,18,[[121,6,5,9,14],[138,4,2,14,16],[139,1,1,16,17],[140,2,1,17,18]]],[4,18,16,18,34,[[179,12,12,18,30],[180,6,4,30,34]]],[5,2,2,34,36,[[192,1,1,34,35],[195,1,1,35,36]]],[6,4,2,36,38,[[215,3,1,36,37],[231,1,1,37,38]]],[8,3,3,38,41,[[249,2,2,38,40],[261,1,1,40,41]]],[11,1,1,41,42,[[321,1,1,41,42]]],[17,1,1,42,43,[[438,1,1,42,43]]],[18,1,1,43,44,[[596,1,1,43,44]]],[23,6,5,44,49,[[755,1,1,44,45],[761,1,1,45,46],[764,2,2,46,48],[792,2,1,48,49]]],[38,4,3,49,52,[[925,1,1,49,50],[926,2,1,50,51],[927,1,1,51,52]]]],[69,72,90,134,230,301,756,1480,2141,3810,3811,3814,3816,3819,4381,4387,4423,4455,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5627,5628,5629,5630,5975,6060,6646,7120,7532,7536,7924,9790,12912,15919,19229,19362,19436,19437,20090,23103,23105,23129]]],["+",[4,3,[[3,1,1,0,1,[[138,1,1,0,1]]],[6,2,1,1,2,[[215,2,1,1,2]]],[38,1,1,2,3,[[926,1,1,2,3]]]],[4387,6646,23105]]],["Curse",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6646]]],["Cursed",[27,27,[[0,2,2,0,2,[[8,1,1,0,1],[48,1,1,1,2]]],[4,16,16,2,18,[[179,12,12,2,14],[180,4,4,14,18]]],[5,1,1,18,19,[[192,1,1,18,19]]],[6,1,1,19,20,[[231,1,1,19,20]]],[8,2,2,20,22,[[249,2,2,20,22]]],[23,5,5,22,27,[[755,1,1,22,23],[761,1,1,23,24],[764,2,2,24,26],[792,1,1,26,27]]]],[230,1480,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5627,5628,5629,5630,5975,7120,7532,7536,19229,19362,19436,19437,20090]]],["curse",[11,10,[[0,1,1,0,1,[[11,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[3,8,7,2,9,[[121,6,5,2,7],[138,1,1,7,8],[139,1,1,8,9]]],[17,1,1,9,10,[[438,1,1,9,10]]]],[301,2141,3810,3811,3814,3816,3819,4381,4423,12912]]],["cursed",[17,17,[[0,5,5,0,5,[[2,2,2,0,2],[3,1,1,2,3],[4,1,1,3,4],[26,1,1,4,5]]],[3,2,2,5,7,[[138,1,1,5,6],[140,1,1,6,7]]],[4,2,2,7,9,[[180,2,2,7,9]]],[5,1,1,9,10,[[195,1,1,9,10]]],[8,1,1,10,11,[[261,1,1,10,11]]],[11,1,1,11,12,[[321,1,1,11,12]]],[18,1,1,12,13,[[596,1,1,12,13]]],[23,1,1,13,14,[[792,1,1,13,14]]],[38,3,3,14,17,[[925,1,1,14,15],[926,1,1,15,16],[927,1,1,16,17]]]],[69,72,90,134,756,4381,4455,5627,5630,6060,7924,9790,15919,20090,23103,23105,23129]]],["cursest",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4381]]],["curseth",[2,2,[[0,1,1,0,1,[[26,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]]],[756,4455]]]]},{"k":"H780","v":[["*",[4,4,[[0,1,1,0,1,[[7,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]]],[187,10098,18390,20239]]],["Ararat",[2,2,[[0,1,1,0,1,[[7,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[187,20239]]],["Armenia",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10098,18390]]]]},{"k":"H781","v":[["*",[11,10,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,6,6,1,7,[[172,1,1,1,2],[174,4,4,2,6],[180,1,1,6,7]]],[9,1,1,7,8,[[269,1,1,7,8]]],[27,3,2,8,10,[[863,3,2,8,10]]]],[2129,5434,5493,5495,5497,5498,5641,8095,22124,22125]]],["betroth",[4,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[27,3,2,1,3,[[863,3,2,1,3]]]],[5641,22124,22125]]],["betrothed",[6,6,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,5,5,1,6,[[172,1,1,1,2],[174,4,4,2,6]]]],[2129,5434,5493,5495,5497,5498]]],["espoused",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8095]]]]},{"k":"H782","v":[["request",[1,1,[[18,1,1,0,1,[[498,1,1,0,1]]]],[14193]]]]},{"k":"H783","v":[["*",[15,14,[[14,12,11,0,11,[[406,5,4,0,4],[408,1,1,4,5],[409,5,5,5,10],[410,1,1,10,11]]],[15,3,3,11,14,[[414,1,1,11,12],[417,1,1,12,13],[425,1,1,13,14]]]],[12117,12118,12121,12133,12165,12174,12180,12184,12185,12194,12202,12308,12396,12677]]],["Artaxerxes",[14,13,[[14,11,10,0,10,[[406,4,3,0,3],[408,1,1,3,4],[409,5,5,4,9],[410,1,1,9,10]]],[15,3,3,10,13,[[414,1,1,10,11],[417,1,1,11,12],[425,1,1,12,13]]]],[12117,12118,12121,12165,12174,12180,12184,12185,12194,12202,12308,12396,12677]]],["Artaxerxes'",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12133]]]]},{"k":"H784","v":[["*",[377,347,[[0,4,4,0,4,[[14,1,1,0,1],[18,1,1,1,2],[21,2,2,2,4]]],[1,19,18,4,22,[[52,2,1,4,5],[58,2,2,5,7],[61,3,3,7,10],[62,2,2,10,12],[63,1,1,12,13],[68,1,1,13,14],[71,1,1,14,15],[73,1,1,15,16],[78,2,2,16,18],[81,2,2,18,20],[84,1,1,20,21],[89,1,1,21,22]]],[2,32,30,22,52,[[90,5,4,22,26],[91,1,1,26,27],[92,1,1,27,28],[93,1,1,28,29],[95,5,5,29,34],[96,2,2,34,36],[97,2,2,36,38],[98,2,2,38,40],[99,3,2,40,42],[102,4,4,42,46],[105,3,3,46,49],[108,1,1,49,50],[109,1,1,50,51],[110,1,1,51,52]]],[3,21,19,52,71,[[119,1,1,52,53],[122,1,1,53,54],[125,2,2,54,56],[127,3,3,56,59],[130,1,1,59,60],[132,5,5,60,65],[134,1,1,65,66],[137,1,1,66,67],[142,2,2,67,69],[147,4,2,69,71]]],[4,28,27,71,98,[[153,1,1,71,72],[156,7,6,72,78],[157,7,7,78,85],[159,2,2,85,87],[161,4,4,87,91],[162,1,1,91,92],[164,2,2,92,94],[165,1,1,94,95],[170,2,2,95,97],[184,1,1,97,98]]],[5,8,8,98,106,[[192,1,1,98,99],[193,2,2,99,101],[194,2,2,101,103],[197,3,3,103,106]]],[6,15,14,106,120,[[211,1,1,106,107],[216,1,1,107,108],[219,5,4,108,112],[222,1,1,112,113],[224,1,1,113,114],[225,3,3,114,117],[226,1,1,117,118],[228,1,1,118,119],[230,1,1,119,120]]],[8,3,3,120,123,[[265,3,3,120,123]]],[9,6,5,123,128,[[280,3,2,123,125],[288,2,2,125,127],[289,1,1,127,128]]],[10,10,7,128,135,[[299,1,1,128,129],[306,1,1,129,130],[308,5,4,130,134],[309,3,1,134,135]]],[11,17,14,135,149,[[313,5,3,135,138],[314,2,1,138,139],[318,1,1,139,140],[320,1,1,140,141],[328,1,1,141,142],[329,2,2,142,144],[331,1,1,144,145],[333,1,1,145,146],[335,2,2,146,148],[337,1,1,148,149]]],[12,2,2,149,151,[[351,1,1,149,150],[358,1,1,150,151]]],[13,6,6,151,157,[[373,2,2,151,153],[394,1,1,153,154],[399,1,1,154,155],[401,1,1,155,156],[402,1,1,156,157]]],[15,6,6,157,163,[[413,1,1,157,158],[414,3,3,158,161],[421,2,2,161,163]]],[17,8,8,163,171,[[436,1,1,163,164],[450,1,1,164,165],[453,1,1,165,166],[455,1,1,166,167],[457,1,1,167,168],[463,1,1,168,169],[466,1,1,169,170],[476,1,1,170,171]]],[18,28,27,171,198,[[488,1,1,171,172],[495,3,3,172,175],[498,2,1,175,176],[506,1,1,176,177],[516,1,1,177,178],[523,1,1,178,179],[527,1,1,179,180],[543,1,1,180,181],[545,1,1,181,182],[551,1,1,182,183],[555,3,3,183,186],[556,1,1,186,187],[557,1,1,187,188],[560,1,1,188,189],[566,1,1,189,190],[574,1,1,190,191],[581,1,1,191,192],[582,2,2,192,194],[583,1,1,194,195],[595,1,1,195,196],[617,1,1,196,197],[625,1,1,197,198]]],[19,5,5,198,203,[[633,1,1,198,199],[643,1,1,199,200],[653,2,2,200,202],[657,1,1,202,203]]],[21,1,1,203,204,[[678,1,1,203,204]]],[22,33,30,204,234,[[679,1,1,204,205],[682,1,1,205,206],[683,1,1,206,207],[687,3,3,207,210],[688,2,2,210,212],[704,1,1,212,213],[707,1,1,213,214],[708,4,4,214,218],[711,3,3,218,221],[715,1,1,221,222],[721,1,1,222,223],[722,2,2,223,225],[725,1,1,225,226],[728,2,1,226,227],[732,1,1,227,228],[742,3,2,228,230],[743,1,1,230,231],[744,4,3,231,234]]],[23,39,37,234,271,[[748,1,1,234,235],[749,1,1,235,236],[750,1,1,236,237],[751,2,2,237,239],[755,1,1,239,240],[759,1,1,240,241],[761,2,2,241,243],[763,1,1,243,244],[764,1,1,244,245],[765,3,3,245,248],[766,1,1,248,249],[767,1,1,249,250],[773,1,1,250,251],[776,1,1,251,252],[778,2,2,252,254],[780,3,2,254,256],[781,2,2,256,258],[782,3,3,258,261],[783,1,1,261,262],[787,2,2,262,264],[792,1,1,264,265],[793,2,2,265,267],[794,1,1,267,268],[795,3,2,268,270],[796,1,1,270,271]]],[24,4,4,271,275,[[797,1,1,271,272],[798,2,2,272,274],[800,1,1,274,275]]],[25,47,38,275,313,[[802,7,3,275,278],[806,3,1,278,279],[809,2,1,279,280],[811,3,3,280,283],[816,6,4,283,287],[817,1,1,287,288],[820,2,2,288,290],[821,2,2,290,292],[822,2,2,292,294],[823,3,3,294,297],[824,2,2,297,299],[825,2,2,299,301],[829,3,3,301,304],[831,3,3,304,307],[837,1,1,307,308],[839,2,2,308,310],[840,3,3,310,313]]],[26,1,1,313,314,[[859,1,1,313,314]]],[27,2,2,314,316,[[868,1,1,314,315],[869,1,1,315,316]]],[28,5,5,316,321,[[876,2,2,316,318],[877,3,3,318,321]]],[29,9,9,321,330,[[879,5,5,321,326],[880,2,2,326,328],[883,1,1,328,329],[885,1,1,329,330]]],[30,1,1,330,331,[[888,1,1,330,331]]],[32,2,2,331,333,[[893,2,2,331,333]]],[33,4,4,333,337,[[900,1,1,333,334],[901,1,1,334,335],[902,2,2,335,337]]],[34,1,1,337,338,[[904,1,1,337,338]]],[35,2,2,338,340,[[906,1,1,338,339],[908,1,1,339,340]]],[37,7,6,340,346,[[912,1,1,340,341],[913,1,1,341,342],[919,1,1,342,343],[921,1,1,343,344],[922,2,1,344,345],[923,1,1,345,346]]],[38,1,1,346,347,[[927,1,1,346,347]]]],[377,481,553,554,1581,1765,1766,1824,1825,1826,1888,1889,1913,2044,2119,2194,2350,2370,2458,2462,2534,2745,2752,2753,2757,2762,2776,2783,2807,2858,2859,2861,2862,2879,2896,2898,2934,2949,2964,2977,2978,2979,3076,3104,3107,3109,3213,3214,3228,3287,3332,3354,3696,3841,3980,3981,4025,4026,4027,4122,4201,4212,4229,4231,4240,4266,4368,4499,4550,4674,4687,4925,5015,5016,5019,5028,5037,5040,5057,5058,5075,5076,5077,5078,5079,5116,5136,5160,5167,5172,5178,5190,5243,5271,5288,5394,5400,5780,5973,5991,6001,6010,6021,6113,6116,6118,6517,6675,6769,6774,6803,6806,6870,6924,6934,6935,6943,6958,7020,7102,7979,7981,7992,8386,8387,8611,8615,8660,9067,9301,9364,9365,9366,9379,9399,9543,9545,9547,9562,9691,9739,9966,10000,10014,10079,10125,10175,10176,10231,10786,10960,11325,11327,11767,11914,11979,12012,12299,12310,12320,12324,12523,12530,12885,13237,13281,13352,13409,13509,13600,13907,14065,14126,14130,14131,14200,14315,14515,14623,14671,14885,14902,15055,15127,15134,15176,15190,15214,15255,15372,15481,15575,15638,15645,15669,15881,16273,16379,16567,16867,17161,17162,17267,17646,17661,17738,17763,17834,17847,17848,17866,17867,18141,18199,18231,18244,18247,18250,18290,18291,18293,18371,18507,18549,18552,18613,18673,18739,18887,18896,18902,18937,18938,18946,19031,19072,19118,19137,19150,19242,19329,19361,19384,19412,19431,19450,19452,19454,19461,19513,19657,19760,19803,19823,19865,19874,19882,19884,19912,19913,19918,19931,20009,20010,20125,20129,20154,20198,20244,20270,20289,20323,20335,20336,20431,20468,20477,20491,20550,20606,20635,20639,20640,20758,20759,20760,20761,20803,20893,20895,20926,20942,20975,20976,20996,20997,21007,21032,21054,21066,21068,21171,21173,21175,21212,21218,21220,21364,21444,21447,21454,21457,21458,22021,22184,22208,22310,22311,22314,22316,22341,22368,22371,22374,22376,22378,22381,22384,22429,22468,22528,22583,22586,22690,22702,22725,22727,22761,22805,22828,22904,22914,23003,23029,23051,23068,23122]]],["+",[6,6,[[2,2,2,0,2,[[98,1,1,0,1],[105,1,1,1,2]]],[4,1,1,2,3,[[165,1,1,2,3]]],[11,1,1,3,4,[[313,1,1,3,4]]],[23,1,1,4,5,[[750,1,1,4,5]]],[37,1,1,5,6,[[913,1,1,5,6]]]],[2977,3228,5288,9547,19118,22914]]],["Fire",[1,1,[[18,1,1,0,1,[[625,1,1,0,1]]]],[16379]]],["burning",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[377]]],["fiery",[1,1,[[18,1,1,0,1,[[498,1,1,0,1]]]],[14200]]],["fire",[366,337,[[0,3,3,0,3,[[18,1,1,0,1],[21,2,2,1,3]]],[1,19,18,3,21,[[52,2,1,3,4],[58,2,2,4,6],[61,3,3,6,9],[62,2,2,9,11],[63,1,1,11,12],[68,1,1,12,13],[71,1,1,13,14],[73,1,1,14,15],[78,2,2,15,17],[81,2,2,17,19],[84,1,1,19,20],[89,1,1,20,21]]],[2,29,27,21,48,[[90,5,4,21,25],[91,1,1,25,26],[92,1,1,26,27],[93,1,1,27,28],[95,5,5,28,33],[96,2,2,33,35],[97,2,2,35,37],[98,1,1,37,38],[99,3,2,38,40],[102,3,3,40,43],[105,2,2,43,45],[108,1,1,45,46],[109,1,1,46,47],[110,1,1,47,48]]],[3,21,19,48,67,[[119,1,1,48,49],[122,1,1,49,50],[125,2,2,50,52],[127,3,3,52,55],[130,1,1,55,56],[132,5,5,56,61],[134,1,1,61,62],[137,1,1,62,63],[142,2,2,63,65],[147,4,2,65,67]]],[4,27,26,67,93,[[153,1,1,67,68],[156,7,6,68,74],[157,7,7,74,81],[159,2,2,81,83],[161,4,4,83,87],[162,1,1,87,88],[164,2,2,88,90],[170,2,2,90,92],[184,1,1,92,93]]],[5,8,8,93,101,[[192,1,1,93,94],[193,2,2,94,96],[194,2,2,96,98],[197,3,3,98,101]]],[6,15,14,101,115,[[211,1,1,101,102],[216,1,1,102,103],[219,5,4,103,107],[222,1,1,107,108],[224,1,1,108,109],[225,3,3,109,112],[226,1,1,112,113],[228,1,1,113,114],[230,1,1,114,115]]],[8,3,3,115,118,[[265,3,3,115,118]]],[9,6,5,118,123,[[280,3,2,118,120],[288,2,2,120,122],[289,1,1,122,123]]],[10,10,7,123,130,[[299,1,1,123,124],[306,1,1,124,125],[308,5,4,125,129],[309,3,1,129,130]]],[11,16,13,130,143,[[313,4,2,130,132],[314,2,1,132,133],[318,1,1,133,134],[320,1,1,134,135],[328,1,1,135,136],[329,2,2,136,138],[331,1,1,138,139],[333,1,1,139,140],[335,2,2,140,142],[337,1,1,142,143]]],[12,2,2,143,145,[[351,1,1,143,144],[358,1,1,144,145]]],[13,6,6,145,151,[[373,2,2,145,147],[394,1,1,147,148],[399,1,1,148,149],[401,1,1,149,150],[402,1,1,150,151]]],[15,6,6,151,157,[[413,1,1,151,152],[414,3,3,152,155],[421,2,2,155,157]]],[17,8,8,157,165,[[436,1,1,157,158],[450,1,1,158,159],[453,1,1,159,160],[455,1,1,160,161],[457,1,1,161,162],[463,1,1,162,163],[466,1,1,163,164],[476,1,1,164,165]]],[18,26,26,165,191,[[488,1,1,165,166],[495,3,3,166,169],[498,1,1,169,170],[506,1,1,170,171],[516,1,1,171,172],[523,1,1,172,173],[527,1,1,173,174],[543,1,1,174,175],[545,1,1,175,176],[551,1,1,176,177],[555,3,3,177,180],[556,1,1,180,181],[557,1,1,181,182],[560,1,1,182,183],[566,1,1,183,184],[574,1,1,184,185],[581,1,1,185,186],[582,2,2,186,188],[583,1,1,188,189],[595,1,1,189,190],[617,1,1,190,191]]],[19,5,5,191,196,[[633,1,1,191,192],[643,1,1,192,193],[653,2,2,193,195],[657,1,1,195,196]]],[21,1,1,196,197,[[678,1,1,196,197]]],[22,33,30,197,227,[[679,1,1,197,198],[682,1,1,198,199],[683,1,1,199,200],[687,3,3,200,203],[688,2,2,203,205],[704,1,1,205,206],[707,1,1,206,207],[708,4,4,207,211],[711,3,3,211,214],[715,1,1,214,215],[721,1,1,215,216],[722,2,2,216,218],[725,1,1,218,219],[728,2,1,219,220],[732,1,1,220,221],[742,3,2,221,223],[743,1,1,223,224],[744,4,3,224,227]]],[23,38,36,227,263,[[748,1,1,227,228],[749,1,1,228,229],[751,2,2,229,231],[755,1,1,231,232],[759,1,1,232,233],[761,2,2,233,235],[763,1,1,235,236],[764,1,1,236,237],[765,3,3,237,240],[766,1,1,240,241],[767,1,1,241,242],[773,1,1,242,243],[776,1,1,243,244],[778,2,2,244,246],[780,3,2,246,248],[781,2,2,248,250],[782,3,3,250,253],[783,1,1,253,254],[787,2,2,254,256],[792,1,1,256,257],[793,2,2,257,259],[794,1,1,259,260],[795,3,2,260,262],[796,1,1,262,263]]],[24,4,4,263,267,[[797,1,1,263,264],[798,2,2,264,266],[800,1,1,266,267]]],[25,47,38,267,305,[[802,7,3,267,270],[806,3,1,270,271],[809,2,1,271,272],[811,3,3,272,275],[816,6,4,275,279],[817,1,1,279,280],[820,2,2,280,282],[821,2,2,282,284],[822,2,2,284,286],[823,3,3,286,289],[824,2,2,289,291],[825,2,2,291,293],[829,3,3,293,296],[831,3,3,296,299],[837,1,1,299,300],[839,2,2,300,302],[840,3,3,302,305]]],[26,1,1,305,306,[[859,1,1,305,306]]],[27,2,2,306,308,[[868,1,1,306,307],[869,1,1,307,308]]],[28,5,5,308,313,[[876,2,2,308,310],[877,3,3,310,313]]],[29,9,9,313,322,[[879,5,5,313,318],[880,2,2,318,320],[883,1,1,320,321],[885,1,1,321,322]]],[30,1,1,322,323,[[888,1,1,322,323]]],[32,2,2,323,325,[[893,2,2,323,325]]],[33,3,3,325,328,[[900,1,1,325,326],[902,2,2,326,328]]],[34,1,1,328,329,[[904,1,1,328,329]]],[35,2,2,329,331,[[906,1,1,329,330],[908,1,1,330,331]]],[37,6,5,331,336,[[912,1,1,331,332],[919,1,1,332,333],[921,1,1,333,334],[922,2,1,334,335],[923,1,1,335,336]]],[38,1,1,336,337,[[927,1,1,336,337]]]],[481,553,554,1581,1765,1766,1824,1825,1826,1888,1889,1913,2044,2119,2194,2350,2370,2458,2462,2534,2745,2752,2753,2757,2762,2776,2783,2807,2858,2859,2861,2862,2879,2896,2898,2934,2949,2964,2978,2979,3104,3107,3109,3213,3214,3287,3332,3354,3696,3841,3980,3981,4025,4026,4027,4122,4201,4212,4229,4231,4240,4266,4368,4499,4550,4674,4687,4925,5015,5016,5019,5028,5037,5040,5057,5058,5075,5076,5077,5078,5079,5116,5136,5160,5167,5172,5178,5190,5243,5271,5394,5400,5780,5973,5991,6001,6010,6021,6113,6116,6118,6517,6675,6769,6774,6803,6806,6870,6924,6934,6935,6943,6958,7020,7102,7979,7981,7992,8386,8387,8611,8615,8660,9067,9301,9364,9365,9366,9379,9399,9543,9545,9562,9691,9739,9966,10000,10014,10079,10125,10175,10176,10231,10786,10960,11325,11327,11767,11914,11979,12012,12299,12310,12320,12324,12523,12530,12885,13237,13281,13352,13409,13509,13600,13907,14065,14126,14130,14131,14200,14315,14515,14623,14671,14885,14902,15055,15127,15134,15176,15190,15214,15255,15372,15481,15575,15638,15645,15669,15881,16273,16567,16867,17161,17162,17267,17646,17661,17738,17763,17834,17847,17848,17866,17867,18141,18199,18231,18244,18247,18250,18290,18291,18293,18371,18507,18549,18552,18613,18673,18739,18887,18896,18902,18937,18938,18946,19031,19072,19137,19150,19242,19329,19361,19384,19412,19431,19450,19452,19454,19461,19513,19657,19760,19803,19823,19865,19874,19882,19884,19912,19913,19918,19931,20009,20010,20125,20129,20154,20198,20244,20270,20289,20323,20335,20336,20431,20468,20477,20491,20550,20606,20635,20639,20640,20758,20759,20760,20761,20803,20893,20895,20926,20942,20975,20976,20996,20997,21007,21032,21054,21066,21068,21171,21173,21175,21212,21218,21220,21364,21444,21447,21454,21457,21458,22021,22184,22208,22310,22311,22314,22316,22341,22368,22371,22374,22376,22378,22381,22384,22429,22468,22528,22583,22586,22690,22725,22727,22761,22805,22828,22904,23003,23029,23051,23068,23122]]],["flaming",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22702]]],["hot",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3076]]]]},{"k":"H785","v":[["flame",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21944]]]]},{"k":"H786","v":[["*",[2,2,[[9,1,1,0,1,[[280,1,1,0,1]]],[32,1,1,1,2,[[898,1,1,1,2]]]],[8375,22658]]],["+",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8375]]],["there",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22658]]]]},{"k":"H787","v":[["*",[3,3,[[14,3,3,0,3,[[406,1,1,0,1],[407,1,1,1,2],[408,1,1,2,3]]]],[12122,12150,12154]]],["foundation",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12150]]],["foundations",[2,2,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]]],[12122,12154]]]]},{"k":"H788","v":[["Ashbel",[3,3,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[12,1,1,2,3,[[345,1,1,2,3]]]],[1407,4527,10576]]]]},{"k":"H789","v":[["Ashbelites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4527]]]]},{"k":"H790","v":[["Eshban",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1066,10293]]]]},{"k":"H791","v":[["Ashbea",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10406]]]]},{"k":"H792","v":[["Eshbaal",[2,2,[[12,2,2,0,2,[[345,1,1,0,1],[346,1,1,1,2]]]],[10608,10654]]]]},{"k":"H793","v":[["stream",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4355]]]]},{"k":"H794","v":[["springs",[3,3,[[4,1,1,0,1,[[156,1,1,0,1]]],[5,2,2,1,3,[[196,1,1,1,2],[198,1,1,2,3]]]],[5053,6104,6138]]]]},{"k":"H795","v":[["*",[19,16,[[5,3,3,0,3,[[197,1,1,0,1],[201,2,2,1,3]]],[8,7,6,3,9,[[240,6,5,3,8],[241,1,1,8,9]]],[13,2,1,9,10,[[392,2,1,9,10]]],[22,2,1,10,11,[[698,2,1,10,11]]],[23,1,1,11,12,[[769,1,1,11,12]]],[29,2,2,12,14,[[879,1,1,12,13],[881,1,1,13,14]]],[35,1,1,14,15,[[907,1,1,14,15]]],[37,1,1,15,16,[[919,1,1,15,16]]]],[6129,6248,6249,7320,7322,7324,7325,7326,7348,11738,18030,19554,22372,22404,22809,23005]]],["+",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22372]]],["Ashdod",[18,15,[[5,3,3,0,3,[[197,1,1,0,1],[201,2,2,1,3]]],[8,7,6,3,9,[[240,6,5,3,8],[241,1,1,8,9]]],[13,2,1,9,10,[[392,2,1,9,10]]],[22,2,1,10,11,[[698,2,1,10,11]]],[23,1,1,11,12,[[769,1,1,11,12]]],[29,1,1,12,13,[[881,1,1,12,13]]],[35,1,1,13,14,[[907,1,1,13,14]]],[37,1,1,14,15,[[919,1,1,14,15]]]],[6129,6248,6249,7320,7322,7324,7325,7326,7348,11738,18030,19554,22404,22809,23005]]]]},{"k":"H796","v":[["*",[3,3,[[5,1,1,0,1,[[199,1,1,0,1]]],[15,2,2,1,3,[[416,1,1,1,2],[425,1,1,2,3]]]],[6157,12366,12694]]],["Ashdod",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12694]]],["Ashdodites",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12366]]],["Ashdothites",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6157]]]]},{"k":"H797","v":[["Ashdod",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12695]]]]},{"k":"H798","v":[["*",[3,3,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,2,2,1,3,[[198,1,1,1,2],[199,1,1,2,3]]]],[4992,6133,6174]]],["+",[1,1,[[4,1,1,0,1,[[155,1,1,0,1]]]],[4992]]],["Ashdothpisgah",[2,2,[[5,2,2,0,2,[[198,1,1,0,1],[199,1,1,1,2]]]],[6133,6174]]]]},{"k":"H799","v":[["law",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5812]]]]},{"k":"H800","v":[]},{"k":"H801","v":[["*",[65,64,[[1,4,4,0,4,[[78,3,3,0,3],[79,1,1,3,4]]],[2,42,41,4,45,[[90,3,3,4,7],[91,6,6,7,13],[92,6,6,13,19],[93,1,1,19,20],[94,1,1,20,21],[95,2,2,21,23],[96,4,4,23,27],[97,2,2,27,29],[99,3,3,29,32],[110,2,2,32,34],[111,2,2,34,36],[112,8,7,36,43],[113,2,2,43,45]]],[3,16,16,45,61,[[131,5,5,45,50],[134,1,1,50,51],[144,7,7,51,58],[145,3,3,58,61]]],[4,1,1,61,62,[[170,1,1,61,62]]],[5,1,1,62,63,[[199,1,1,62,63]]],[8,1,1,63,64,[[237,1,1,63,64]]]],[2354,2361,2377,2402,2754,2758,2762,2764,2765,2771,2772,2773,2778,2781,2783,2787,2789,2792,2794,2830,2842,2866,2867,2884,2904,2909,2914,2938,2945,2989,2990,2992,3351,3366,3391,3396,3410,3415,3420,3427,3429,3438,3439,3453,3455,4156,4163,4166,4167,4178,4274,4579,4580,4583,4585,4590,4596,4601,4614,4621,4644,5385,6168,7268]]],["+",[14,14,[[2,12,12,0,12,[[91,3,3,0,3],[95,2,2,3,5],[96,2,2,5,7],[99,2,2,7,9],[110,2,2,9,11],[113,1,1,11,12]]],[4,1,1,12,13,[[170,1,1,12,13]]],[5,1,1,13,14,[[199,1,1,13,14]]]],[2765,2772,2773,2866,2867,2909,2914,2989,2990,3351,3366,3455,5385,6168]]],["fire",[51,50,[[1,4,4,0,4,[[78,3,3,0,3],[79,1,1,3,4]]],[2,30,29,4,33,[[90,3,3,4,7],[91,3,3,7,10],[92,6,6,10,16],[93,1,1,16,17],[94,1,1,17,18],[96,2,2,18,20],[97,2,2,20,22],[99,1,1,22,23],[111,2,2,23,25],[112,8,7,25,32],[113,1,1,32,33]]],[3,16,16,33,49,[[131,5,5,33,38],[134,1,1,38,39],[144,7,7,39,46],[145,3,3,46,49]]],[8,1,1,49,50,[[237,1,1,49,50]]]],[2354,2361,2377,2402,2754,2758,2762,2764,2771,2778,2781,2783,2787,2789,2792,2794,2830,2842,2884,2904,2938,2945,2992,3391,3396,3410,3415,3420,3427,3429,3438,3439,3453,4156,4163,4166,4167,4178,4274,4579,4580,4583,4585,4590,4596,4601,4614,4621,4644,7268]]]]},{"k":"H802","v":[["*",[780,685,[[0,152,132,0,132,[[1,4,4,0,4],[2,13,12,4,16],[3,6,5,16,21],[5,3,2,21,23],[6,6,3,23,26],[7,4,2,26,28],[10,4,2,28,30],[11,11,9,30,39],[12,1,1,39,40],[13,1,1,40,41],[15,3,2,41,43],[16,2,2,43,45],[17,3,3,45,48],[18,3,3,48,51],[19,8,8,51,59],[20,1,1,59,60],[22,1,1,60,61],[23,14,14,61,75],[24,5,4,75,79],[25,7,6,79,85],[26,1,1,85,86],[27,6,4,86,90],[28,2,2,90,92],[29,3,3,92,95],[30,3,3,95,98],[31,1,1,98,99],[32,1,1,99,100],[33,5,5,100,105],[35,11,9,105,114],[36,1,1,114,115],[37,6,6,115,121],[38,4,4,121,125],[40,1,1,125,126],[43,1,1,126,127],[44,1,1,127,128],[45,3,3,128,131],[48,2,1,131,132]]],[1,38,34,132,166,[[50,1,1,132,133],[51,3,3,133,136],[52,1,1,136,137],[53,1,1,137,138],[55,3,3,138,141],[60,1,1,141,142],[64,1,1,142,143],[67,3,3,143,146],[68,1,1,146,147],[69,1,1,147,148],[70,9,6,148,154],[71,2,2,154,156],[75,5,4,156,160],[81,1,1,160,161],[84,4,4,161,165],[85,1,1,165,166]]],[2,35,32,166,198,[[101,1,1,166,167],[102,2,2,167,169],[104,3,3,169,172],[107,11,11,172,183],[108,1,1,183,184],[109,10,8,184,192],[110,4,3,192,195],[113,2,2,195,197],[115,1,1,197,198]]],[3,41,35,198,233,[[121,20,16,198,214],[122,1,1,214,215],[128,2,1,215,216],[130,1,1,216,217],[132,1,1,217,218],[141,2,2,218,220],[142,1,1,220,221],[146,2,2,221,223],[147,4,4,223,227],[148,1,1,227,228],[152,6,5,228,233]]],[4,41,34,233,267,[[154,1,1,233,234],[155,2,2,234,236],[157,1,1,236,237],[165,1,1,237,238],[169,4,3,238,241],[172,2,2,241,243],[173,4,3,243,246],[174,12,9,246,255],[176,5,4,255,259],[177,3,2,259,261],[179,1,1,261,262],[180,2,2,262,264],[181,2,2,264,266],[183,1,1,266,267]]],[5,10,9,267,276,[[187,1,1,267,268],[188,2,2,268,270],[192,3,2,270,272],[194,2,2,272,274],[201,2,2,274,276]]],[6,69,55,276,331,[[211,2,2,276,278],[213,1,1,278,279],[214,5,4,279,283],[215,3,1,283,284],[218,1,1,284,285],[219,4,4,285,289],[221,4,2,289,291],[223,14,13,291,304],[224,10,8,304,312],[225,3,2,312,314],[226,4,3,314,317],[229,3,3,317,320],[230,1,1,320,321],[231,14,10,321,331]]],[7,15,14,331,345,[[232,6,6,331,337],[234,3,3,337,340],[235,6,5,340,345]]],[8,54,47,345,392,[[236,7,7,345,352],[237,3,2,352,354],[239,1,1,354,355],[249,1,1,355,356],[250,3,2,356,358],[253,5,5,358,363],[254,1,1,363,364],[256,2,2,364,366],[257,1,1,366,367],[260,9,8,367,375],[262,4,3,375,378],[263,11,9,378,387],[265,6,5,387,392]]],[9,49,40,392,432,[[267,1,1,392,393],[268,2,1,393,394],[269,4,4,394,398],[271,1,1,398,399],[272,1,1,399,400],[277,9,7,400,407],[278,9,6,407,413],[280,12,10,413,423],[281,1,1,423,424],[283,3,2,424,426],[285,1,1,426,427],[286,5,5,427,432]]],[10,37,33,432,465,[[292,2,2,432,434],[293,7,6,434,440],[294,2,2,440,442],[299,1,1,442,443],[301,8,6,443,449],[304,6,5,449,454],[306,1,1,454,455],[307,4,4,455,459],[310,3,3,459,462],[311,3,3,462,465]]],[11,19,17,465,482,[[316,4,3,465,468],[317,1,1,468,469],[318,3,3,469,472],[320,7,6,472,478],[326,1,1,478,479],[334,1,1,479,480],[335,1,1,480,481],[336,1,1,481,482]]],[12,20,20,482,502,[[338,1,1,482,483],[339,5,5,483,488],[340,1,1,488,489],[341,3,3,489,492],[344,4,4,492,496],[345,3,3,496,499],[346,1,1,499,500],[351,1,1,500,501],[353,1,1,501,502]]],[13,19,18,502,520,[[368,1,1,502,503],[374,1,1,503,504],[377,4,3,504,507],[379,1,1,507,508],[381,1,1,508,509],[386,1,1,509,510],[387,3,3,510,513],[388,1,1,513,514],[390,1,1,514,515],[391,1,1,515,516],[394,1,1,516,517],[395,1,1,517,518],[397,1,1,518,519],[400,1,1,519,520]]],[14,12,11,520,531,[[404,1,1,520,521],[412,11,10,521,531]]],[15,10,10,531,541,[[416,1,1,531,532],[417,1,1,532,533],[419,1,1,533,534],[420,2,2,534,536],[422,1,1,536,537],[424,1,1,537,538],[425,3,3,538,541]]],[16,21,18,541,559,[[426,3,3,541,544],[427,11,9,544,553],[428,1,1,553,554],[429,1,1,554,555],[430,2,2,555,557],[431,2,1,557,558],[433,1,1,558,559]]],[17,8,8,559,567,[[437,1,1,559,560],[449,1,1,560,561],[450,1,1,561,562],[454,1,1,562,563],[460,1,1,563,564],[466,2,2,564,566],[477,1,1,566,567]]],[18,3,3,567,570,[[535,1,1,567,568],[586,1,1,568,569],[605,1,1,569,570]]],[19,25,24,570,594,[[629,1,1,570,571],[632,1,1,571,572],[633,5,4,572,576],[634,2,2,576,578],[636,1,1,578,579],[638,2,2,579,581],[639,1,1,581,582],[641,1,1,582,583],[645,1,1,583,584],[646,2,2,584,586],[648,2,2,586,588],[652,1,1,588,589],[654,1,1,589,590],[657,1,1,590,591],[658,3,3,591,594]]],[20,3,3,594,597,[[665,2,2,594,596],[667,1,1,596,597]]],[21,3,3,597,600,[[671,1,1,597,598],[675,1,1,598,599],[676,1,1,599,600]]],[22,12,11,600,611,[[681,1,1,600,601],[682,1,1,601,602],[691,1,1,602,603],[697,1,1,603,604],[705,1,1,604,605],[710,1,1,605,606],[712,2,2,606,608],[723,1,1,608,609],[727,1,1,609,610],[732,2,1,610,611]]],[23,36,32,611,643,[[747,3,3,611,614],[749,1,1,614,615],[750,2,2,615,617],[751,1,1,617,618],[752,1,1,618,619],[753,2,1,619,620],[757,1,1,620,621],[758,1,1,621,622],[760,1,1,622,623],[762,1,1,623,624],[773,3,2,624,626],[779,1,1,626,627],[782,2,2,627,629],[784,1,1,629,630],[785,1,1,630,631],[787,1,1,631,632],[788,8,6,632,638],[792,1,1,638,639],[793,1,1,639,640],[794,1,1,640,641],[795,2,2,641,643]]],[24,3,3,643,646,[[798,1,1,643,644],[800,1,1,644,645],[801,1,1,645,646]]],[25,22,20,646,666,[[802,2,2,646,648],[804,1,1,648,649],[809,1,1,649,650],[810,1,1,650,651],[817,4,4,651,655],[819,4,3,655,658],[823,1,1,658,659],[824,5,4,659,663],[825,1,1,663,664],[834,1,1,664,665],[845,1,1,665,666]]],[26,2,2,666,668,[[860,2,2,666,668]]],[27,5,4,668,672,[[862,1,1,668,669],[863,1,1,669,670],[864,1,1,670,671],[873,2,1,671,672]]],[29,2,2,672,674,[[882,1,1,672,673],[885,1,1,673,674]]],[32,1,1,674,675,[[894,1,1,674,675]]],[33,1,1,675,676,[[902,1,1,675,676]]],[37,9,7,676,683,[[915,2,2,676,678],[921,1,1,678,679],[922,5,3,679,682],[924,1,1,682,683]]],[38,3,2,683,685,[[926,3,2,683,685]]]],[52,53,54,55,56,57,59,61,63,67,68,70,71,72,75,76,80,96,98,102,104,139,155,161,166,172,199,201,295,297,303,309,310,312,313,315,316,317,318,319,352,382,384,412,416,433,434,435,472,473,483,497,498,502,506,507,509,512,513,534,590,594,595,596,598,599,606,627,628,629,630,631,635,642,658,659,668,678,679,699,700,701,702,703,726,773,774,775,779,782,816,823,834,839,856,890,908,923,950,965,984,988,992,1001,1009,1042,1046,1050,1052,1053,1054,1057,1058,1079,1085,1125,1127,1128,1131,1133,1139,1156,1157,1158,1168,1240,1351,1377,1391,1405,1412,1504,1551,1556,1561,1563,1601,1621,1675,1678,1680,1808,1940,2001,2004,2005,2041,2068,2080,2081,2082,2099,2105,2106,2129,2137,2238,2240,2241,2252,2440,2553,2556,2557,2560,2572,3046,3081,3090,3186,3187,3193,3259,3262,3265,3266,3267,3268,3269,3270,3271,3273,3274,3301,3328,3329,3331,3332,3334,3336,3339,3345,3352,3358,3359,3456,3457,3550,3798,3804,3806,3807,3810,3811,3813,3814,3816,3817,3818,3819,3820,3821,3822,3823,3825,4060,4111,4221,4479,4486,4548,4651,4664,4673,4681,4682,4699,4744,4882,4885,4887,4890,4891,4972,4981,4994,5074,5278,5366,5369,5381,5434,5441,5458,5460,5462,5475,5483,5484,5486,5489,5492,5494,5499,5500,5526,5528,5529,5530,5552,5558,5605,5641,5665,5690,5697,5740,5865,5870,5873,5970,5971,6027,6037,6218,6219,6521,6522,6574,6603,6608,6616,6620,6647,6749,6803,6805,6807,6808,6830,6831,6886,6887,6890,6893,6894,6895,6897,6903,6904,6905,6906,6907,6908,6910,6911,6912,6916,6919,6924,6925,6929,6930,6935,6950,6953,6976,7025,7050,7051,7058,7103,7109,7112,7113,7116,7118,7120,7123,7124,7125,7128,7129,7131,7132,7135,7136,7180,7183,7186,7195,7200,7201,7203,7204,7214,7216,7227,7230,7231,7235,7238,7260,7262,7316,7558,7563,7593,7682,7683,7693,7695,7703,7717,7776,7777,7806,7864,7875,7898,7900,7901,7903,7904,7905,7933,7939,7941,7949,7950,7951,7953,7954,7955,7963,7965,7966,7980,7981,7983,7996,8000,8048,8051,8084,8086,8089,8095,8145,8176,8261,8262,8264,8270,8280,8285,8286,8294,8295,8296,8297,8301,8310,8358,8360,8361,8364,8365,8368,8369,8374,8375,8383,8405,8468,8469,8516,8557,8570,8571,8575,8576,8787,8791,8832,8833,8834,8835,8838,8842,8855,8859,9067,9109,9111,9112,9116,9127,9134,9220,9222,9223,9224,9235,9314,9326,9327,9334,9341,9411,9413,9415,9456,9458,9476,9604,9611,9620,9649,9700,9702,9704,9728,9729,9730,9732,9733,9745,9905,10159,10172,10217,10302,10324,10330,10332,10335,10341,10364,10390,10403,10404,10539,10550,10551,10558,10583,10584,10604,10650,10777,10823,11225,11357,11432,11435,11437,11474,11503,11600,11630,11638,11641,11655,11680,11722,11772,11800,11872,11955,12088,12253,12254,12255,12262,12263,12266,12269,12270,12271,12296,12373,12383,12483,12495,12496,12577,12667,12694,12697,12698,12711,12719,12722,12727,12732,12733,12735,12736,12737,12738,12739,12741,12760,12773,12789,12793,12806,12828,12900,13182,13217,13314,13465,13597,13598,13937,14787,15764,16129,16449,16535,16564,16566,16569,16572,16580,16585,16651,16704,16710,16723,16773,16923,16938,16939,16993,17003,17137,17184,17271,17287,17294,17314,17455,17457,17484,17545,17607,17615,17719,17734,17922,18020,18162,18268,18318,18319,18571,18651,18729,19003,19005,19022,19066,19100,19101,19137,19163,19195,19287,19309,19338,19405,19641,19658,19831,19917,19918,19948,19973,20003,20017,20019,20025,20030,20034,20035,20121,20149,20203,20234,20242,20352,20430,20453,20473,20487,20515,20618,20628,20792,20794,20796,20803,20855,20860,20864,20987,21009,21017,21051,21055,21074,21306,21621,22053,22073,22096,22107,22129,22264,22413,22481,22604,22725,22943,22945,23037,23057,23058,23059,23070,23117,23118]]],["+",[39,37,[[0,2,2,0,2,[[25,1,1,0,1],[40,1,1,1,2]]],[1,3,3,2,5,[[51,1,1,2,3],[70,1,1,3,4],[75,1,1,4,5]]],[3,5,4,5,9,[[152,5,4,5,9]]],[5,2,2,9,11,[[188,1,1,9,10],[192,1,1,10,11]]],[6,7,6,11,17,[[214,1,1,11,12],[215,2,1,12,13],[221,1,1,13,14],[226,1,1,14,15],[229,1,1,15,16],[231,1,1,16,17]]],[8,4,4,17,21,[[250,1,1,17,18],[256,1,1,18,19],[263,1,1,19,20],[265,1,1,20,21]]],[9,1,1,21,22,[[269,1,1,21,22]]],[10,2,2,22,24,[[301,1,1,22,23],[306,1,1,23,24]]],[11,1,1,24,25,[[316,1,1,24,25]]],[12,1,1,25,26,[[345,1,1,25,26]]],[19,8,8,26,34,[[629,1,1,26,27],[632,1,1,27,28],[633,2,2,28,30],[634,1,1,30,31],[648,2,2,31,33],[652,1,1,33,34]]],[22,1,1,34,35,[[712,1,1,34,35]]],[23,1,1,35,36,[[747,1,1,35,36]]],[37,1,1,36,37,[[921,1,1,36,37]]]],[726,1240,1561,2080,2241,4882,4885,4890,4891,5870,5971,6603,6647,6830,6950,7025,7116,7593,7776,7953,7980,8095,9127,9314,9604,10584,16449,16535,16564,16566,16580,16993,17003,17137,18319,19005,23037]]],["Woman",[1,1,[[0,1,1,0,1,[[1,1,1,0,1]]]],[53]]],["each",[2,2,[[7,2,2,0,2,[[232,2,2,0,2]]]],[7135,7136]]],["every",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22413]]],["female",[2,1,[[0,2,1,0,1,[[6,2,1,0,1]]]],[161]]],["one",[9,8,[[1,4,3,0,3,[[75,4,3,0,3]]],[22,1,1,3,4,[[712,1,1,3,4]]],[23,1,1,4,5,[[753,1,1,4,5]]],[25,3,3,5,8,[[802,2,2,5,7],[804,1,1,7,8]]]],[2238,2240,2252,18318,19195,20473,20487,20515]]],["wife",[295,273,[[0,98,89,0,89,[[1,2,2,0,2],[2,3,3,2,5],[3,3,3,5,8],[5,1,1,8,9],[6,2,2,9,11],[7,2,2,11,13],[10,3,2,13,15],[11,8,7,15,22],[12,1,1,22,23],[15,3,2,23,25],[16,2,2,25,27],[17,2,2,27,29],[18,3,3,29,32],[19,6,6,32,38],[20,1,1,38,39],[22,1,1,39,40],[23,10,10,40,50],[24,5,4,50,54],[25,6,5,54,59],[26,1,1,59,60],[27,5,4,60,64],[28,2,2,64,66],[29,2,2,66,68],[33,3,3,68,71],[35,8,6,71,77],[37,5,5,77,82],[38,4,4,82,86],[43,1,1,86,87],[45,1,1,87,88],[48,2,1,88,89]]],[1,13,12,89,101,[[53,1,1,89,90],[55,3,3,90,93],[67,3,3,93,96],[69,1,1,96,97],[70,4,3,97,100],[71,1,1,100,101]]],[2,14,13,101,114,[[107,6,6,101,107],[109,5,4,107,111],[110,3,3,111,114]]],[3,9,8,114,122,[[121,6,5,114,119],[142,1,1,119,120],[146,1,1,120,121],[152,1,1,121,122]]],[4,22,20,122,142,[[157,1,1,122,123],[165,1,1,123,124],[172,1,1,124,125],[173,2,2,125,127],[174,6,6,127,133],[176,5,4,133,137],[177,3,2,137,139],[179,1,1,139,140],[180,2,2,140,142]]],[5,2,2,142,144,[[201,2,2,142,144]]],[6,26,25,144,169,[[211,2,2,144,146],[214,3,3,146,149],[215,1,1,149,150],[221,1,1,150,151],[223,7,7,151,158],[224,5,5,158,163],[225,3,2,163,165],[231,4,4,165,169]]],[7,6,5,169,174,[[232,2,2,169,171],[235,4,3,171,174]]],[8,19,19,174,193,[[236,2,2,174,176],[237,1,1,176,177],[239,1,1,177,178],[249,1,1,178,179],[253,3,3,179,182],[254,1,1,182,183],[260,7,7,183,190],[262,1,1,190,191],[265,2,2,191,193]]],[9,13,11,193,204,[[268,1,1,193,194],[269,2,2,194,196],[277,4,4,196,200],[278,6,4,200,204]]],[10,15,14,204,218,[[292,2,2,204,206],[294,2,2,206,208],[299,1,1,208,209],[301,1,1,209,210],[304,6,5,210,215],[311,3,3,215,218]]],[11,4,4,218,222,[[317,1,1,218,219],[320,1,1,219,220],[326,1,1,220,221],[334,1,1,221,222]]],[12,11,11,222,233,[[339,5,5,222,227],[340,1,1,227,228],[341,2,2,228,230],[344,3,3,230,233]]],[13,6,6,233,239,[[374,1,1,233,234],[377,1,1,234,235],[387,1,1,235,236],[388,1,1,236,237],[391,1,1,237,238],[400,1,1,238,239]]],[14,1,1,239,240,[[404,1,1,239,240]]],[15,1,1,240,241,[[419,1,1,240,241]]],[16,4,3,241,244,[[430,2,2,241,243],[431,2,1,243,244]]],[17,3,3,244,247,[[437,1,1,244,245],[454,1,1,245,246],[466,1,1,246,247]]],[18,2,2,247,249,[[586,1,1,247,248],[605,1,1,248,249]]],[19,4,4,249,253,[[633,1,1,249,250],[645,1,1,250,251],[646,2,2,251,253]]],[20,1,1,253,254,[[667,1,1,253,254]]],[22,1,1,254,255,[[732,1,1,254,255]]],[23,5,5,255,260,[[747,2,2,255,257],[749,1,1,257,258],[750,1,1,258,259],[760,1,1,259,260]]],[25,7,7,260,267,[[817,1,1,260,261],[819,3,3,261,264],[823,1,1,264,265],[825,1,1,265,266],[834,1,1,266,267]]],[27,4,3,267,270,[[862,1,1,267,268],[863,1,1,268,269],[873,2,1,269,270]]],[29,1,1,270,271,[[885,1,1,270,271]]],[38,3,2,271,273,[[926,3,2,271,273]]]],[54,55,63,72,76,80,96,104,155,166,172,199,201,295,297,303,309,310,315,316,317,318,319,382,384,412,416,433,434,472,473,483,497,502,507,509,512,513,534,590,594,595,598,606,627,628,629,631,642,658,659,668,678,679,699,700,701,702,703,773,774,775,779,782,816,823,834,839,984,988,992,1050,1052,1053,1054,1057,1058,1125,1127,1128,1131,1133,1156,1157,1158,1168,1351,1405,1504,1621,1675,1678,1680,2001,2004,2005,2068,2080,2081,2082,2129,3259,3265,3266,3267,3269,3271,3328,3329,3332,3339,3352,3358,3359,3804,3806,3807,3821,3822,4548,4664,4887,5074,5278,5434,5458,5460,5483,5486,5489,5494,5499,5500,5526,5528,5529,5530,5552,5558,5605,5641,5665,6218,6219,6521,6522,6603,6616,6620,6647,6831,6886,6895,6903,6904,6905,6906,6907,6911,6912,6924,6925,6929,6930,6935,7103,7120,7123,7124,7128,7129,7195,7200,7203,7216,7231,7260,7316,7558,7693,7695,7703,7717,7864,7875,7898,7900,7901,7903,7905,7933,7983,8000,8051,8084,8086,8262,8270,8285,8286,8295,8296,8301,8310,8787,8791,8855,8859,9067,9127,9220,9222,9223,9224,9235,9456,9458,9476,9649,9745,9905,10159,10324,10330,10332,10335,10341,10364,10403,10404,10550,10551,10558,11357,11432,11630,11655,11722,11955,12088,12483,12789,12793,12806,12900,13314,13598,15764,16129,16569,16923,16938,16939,17484,18729,19003,19022,19066,19100,19338,20794,20855,20860,20864,20987,21074,21306,22096,22107,22264,22481,23117,23118]]],["wife's",[8,8,[[0,3,3,0,3,[[2,1,1,0,1],[19,1,1,1,2],[35,1,1,2,3]]],[2,1,1,3,4,[[107,1,1,3,4]]],[6,1,1,4,5,[[221,1,1,4,5]]],[12,3,3,5,8,[[338,1,1,5,6],[345,1,1,6,7],[346,1,1,7,8]]]],[75,506,1079,3262,6831,10302,10604,10650]]],["wives",[114,104,[[0,23,22,0,22,[[3,3,2,0,2],[5,2,2,2,4],[6,2,2,4,6],[7,2,2,6,8],[10,1,1,8,9],[27,1,1,9,10],[29,1,1,10,11],[30,2,2,11,13],[31,1,1,13,14],[33,2,2,14,16],[35,2,2,16,18],[36,1,1,18,19],[44,1,1,19,20],[45,2,2,20,22]]],[1,3,3,22,25,[[68,1,1,22,23],[71,1,1,23,24],[81,1,1,24,25]]],[3,3,3,25,28,[[130,1,1,25,26],[132,1,1,26,27],[148,1,1,27,28]]],[4,4,4,28,32,[[155,1,1,28,29],[169,1,1,29,30],[173,1,1,30,31],[181,1,1,31,32]]],[5,1,1,32,33,[[187,1,1,32,33]]],[6,8,7,33,40,[[213,1,1,33,34],[218,1,1,34,35],[231,6,5,35,40]]],[7,1,1,40,41,[[232,1,1,40,41]]],[8,6,6,41,47,[[236,1,1,41,42],[260,1,1,42,43],[262,1,1,43,44],[265,3,3,44,47]]],[9,6,5,47,52,[[268,1,1,47,48],[271,1,1,48,49],[278,3,2,49,51],[285,1,1,51,52]]],[10,7,6,52,58,[[301,4,3,52,55],[310,3,3,55,58]]],[11,1,1,58,59,[[336,1,1,58,59]]],[12,4,4,59,63,[[341,1,1,59,60],[344,1,1,60,61],[345,1,1,61,62],[351,1,1,62,63]]],[13,10,9,63,72,[[377,3,2,63,65],[379,1,1,65,66],[386,1,1,66,67],[387,2,2,67,69],[390,1,1,69,70],[395,1,1,70,71],[397,1,1,71,72]]],[14,10,9,72,81,[[412,10,9,72,81]]],[15,6,6,81,87,[[416,1,1,81,82],[417,1,1,82,83],[422,1,1,83,84],[424,1,1,84,85],[425,2,2,85,87]]],[16,1,1,87,88,[[426,1,1,87,88]]],[22,1,1,88,89,[[691,1,1,88,89]]],[23,13,11,89,100,[[750,1,1,89,90],[752,1,1,90,91],[758,1,1,91,92],[762,1,1,92,93],[773,3,2,93,95],[779,1,1,95,96],[782,1,1,96,97],[788,4,3,97,100]]],[25,1,1,100,101,[[845,1,1,100,101]]],[37,5,3,101,104,[[922,5,3,101,104]]]],[98,102,139,155,166,172,199,201,295,782,856,890,923,950,1001,1009,1042,1046,1085,1377,1391,1412,2041,2137,2440,4111,4221,4744,4994,5381,5462,5690,5865,6574,6749,7109,7116,7118,7120,7125,7131,7214,7904,7933,7981,7983,7996,8051,8145,8294,8297,8516,9111,9112,9116,9411,9413,9415,10217,10390,10539,10583,10777,11435,11437,11474,11600,11638,11641,11680,11800,11872,12254,12255,12262,12263,12266,12269,12270,12271,12296,12373,12383,12577,12667,12694,12698,12722,17922,19101,19163,19309,19405,19641,19658,19831,19918,20019,20025,20035,21621,23057,23058,23059]]],["woman",[204,189,[[0,18,17,0,17,[[1,1,1,0,1],[2,9,8,1,9],[11,3,3,9,12],[19,1,1,12,13],[23,4,4,13,17]]],[1,9,9,17,26,[[51,2,2,17,19],[52,1,1,19,20],[60,1,1,20,21],[70,3,3,21,24],[84,1,1,24,25],[85,1,1,25,26]]],[2,17,16,26,42,[[101,1,1,26,27],[102,2,2,27,29],[104,3,3,29,32],[107,3,3,32,35],[108,1,1,35,36],[109,5,4,36,40],[110,1,1,40,41],[113,1,1,41,42]]],[3,19,17,42,59,[[121,12,11,42,53],[122,1,1,53,54],[128,2,1,54,55],[141,2,2,55,57],[146,1,1,57,58],[147,1,1,58,59]]],[4,10,7,59,66,[[169,3,2,59,61],[173,1,1,61,62],[174,5,3,62,65],[181,1,1,65,66]]],[5,3,3,66,69,[[188,1,1,66,67],[192,2,2,67,69]]],[6,21,21,69,90,[[214,1,1,69,70],[219,2,2,70,72],[221,1,1,72,73],[223,7,7,73,80],[224,5,5,80,85],[226,1,1,85,86],[229,2,2,86,88],[230,1,1,88,89],[231,1,1,89,90]]],[7,5,5,90,95,[[232,1,1,90,91],[234,3,3,91,94],[235,1,1,94,95]]],[8,19,17,95,112,[[236,4,4,95,99],[237,1,1,99,100],[250,1,1,100,101],[260,1,1,101,102],[262,2,2,102,104],[263,10,8,104,112]]],[9,25,21,112,133,[[269,1,1,112,113],[277,5,4,113,117],[280,12,10,117,127],[283,3,2,127,129],[286,4,4,129,133]]],[10,10,9,133,142,[[293,5,4,133,137],[301,1,1,137,138],[307,4,4,138,142]]],[11,12,11,142,153,[[316,3,3,142,145],[318,3,3,145,148],[320,6,5,148,153]]],[12,1,1,153,154,[[353,1,1,153,154]]],[13,2,2,154,156,[[368,1,1,154,155],[381,1,1,155,156]]],[16,1,1,156,157,[[429,1,1,156,157]]],[17,4,4,157,161,[[449,1,1,157,158],[450,1,1,158,159],[460,1,1,159,160],[466,1,1,160,161]]],[18,1,1,161,162,[[535,1,1,161,162]]],[19,12,12,162,174,[[633,2,2,162,164],[634,1,1,164,165],[636,1,1,165,166],[638,2,2,166,168],[639,1,1,168,169],[641,1,1,169,170],[654,1,1,170,171],[657,1,1,171,172],[658,2,2,172,174]]],[20,2,2,174,176,[[665,2,2,174,176]]],[22,3,3,176,179,[[723,1,1,176,177],[727,1,1,177,178],[732,1,1,178,179]]],[23,5,5,179,184,[[757,1,1,179,180],[788,1,1,180,181],[792,1,1,181,182],[793,1,1,182,183],[795,1,1,183,184]]],[25,3,3,184,187,[[817,1,1,184,185],[819,1,1,185,186],[824,1,1,186,187]]],[27,1,1,187,188,[[864,1,1,187,188]]],[37,1,1,188,189,[[915,1,1,188,189]]]],[52,56,57,59,61,67,68,70,71,309,312,313,498,596,599,630,635,1556,1563,1601,1808,2099,2105,2106,2560,2572,3046,3081,3090,3186,3187,3193,3268,3270,3274,3301,3331,3334,3336,3345,3352,3456,3798,3810,3811,3813,3814,3816,3818,3819,3820,3822,3823,3825,4060,4479,4486,4651,4681,5366,5369,5458,5475,5484,5492,5697,5873,5970,5971,6608,6807,6808,6831,6887,6890,6893,6894,6895,6897,6908,6910,6911,6912,6916,6919,6953,7050,7051,7058,7113,7132,7180,7183,7186,7201,7227,7230,7235,7238,7260,7563,7864,7939,7941,7949,7950,7951,7954,7955,7963,7965,7966,8089,8261,8262,8264,8280,8358,8360,8361,8364,8365,8368,8369,8374,8375,8383,8468,8469,8570,8571,8575,8576,8833,8834,8838,8842,9134,9326,9327,9334,9341,9604,9611,9620,9700,9702,9704,9728,9729,9730,9732,9733,10823,11225,11503,12773,13182,13217,13465,13597,14787,16566,16572,16585,16651,16704,16710,16723,16773,17184,17271,17294,17314,17455,17457,18571,18651,18729,19287,20017,20121,20149,20234,20792,20855,21051,22129,22943]]],["woman's",[7,7,[[0,1,1,0,1,[[37,1,1,0,1]]],[1,1,1,1,2,[[70,1,1,1,2]]],[2,1,1,2,3,[[113,1,1,2,3]]],[3,2,2,3,5,[[121,2,2,3,5]]],[4,1,1,5,6,[[174,1,1,5,6]]],[10,1,1,6,7,[[293,1,1,6,7]]]],[1139,2099,3457,3810,3817,5475,8835]]],["womankind",[1,1,[[2,1,1,0,1,[[107,1,1,0,1]]]],[3273]]],["women",[96,93,[[0,4,4,0,4,[[13,1,1,0,1],[17,1,1,1,2],[30,1,1,2,3],[32,1,1,3,4]]],[1,5,5,4,9,[[50,1,1,4,5],[64,1,1,5,6],[84,3,3,6,9]]],[2,1,1,9,10,[[115,1,1,9,10]]],[3,3,3,10,13,[[147,3,3,10,13]]],[4,4,4,13,17,[[154,1,1,13,14],[155,1,1,14,15],[172,1,1,15,16],[183,1,1,16,17]]],[5,2,2,17,19,[[194,2,2,17,19]]],[6,6,5,19,24,[[219,2,2,19,21],[226,2,1,21,22],[231,2,2,22,24]]],[7,1,1,24,25,[[235,1,1,24,25]]],[8,6,6,25,31,[[237,1,1,25,26],[250,1,1,26,27],[253,2,2,27,29],[256,1,1,29,30],[257,1,1,30,31]]],[9,4,4,31,35,[[267,1,1,31,32],[272,1,1,32,33],[281,1,1,33,34],[286,1,1,34,35]]],[10,2,2,35,37,[[293,1,1,35,36],[301,1,1,36,37]]],[11,1,1,37,38,[[335,1,1,37,38]]],[13,1,1,38,39,[[394,1,1,38,39]]],[14,1,1,39,40,[[412,1,1,39,40]]],[15,3,3,40,43,[[420,2,2,40,42],[425,1,1,42,43]]],[16,14,12,43,55,[[426,2,2,43,45],[427,10,8,45,53],[428,1,1,53,54],[433,1,1,54,55]]],[17,1,1,55,56,[[477,1,1,55,56]]],[19,1,1,56,57,[[658,1,1,56,57]]],[21,3,3,57,60,[[671,1,1,57,58],[675,1,1,58,59],[676,1,1,59,60]]],[22,5,5,60,65,[[681,1,1,60,61],[682,1,1,61,62],[697,1,1,62,63],[705,1,1,63,64],[710,1,1,64,65]]],[23,11,11,65,76,[[751,1,1,65,66],[753,1,1,66,67],[782,1,1,67,68],[784,1,1,68,69],[785,1,1,69,70],[787,1,1,70,71],[788,3,3,71,74],[794,1,1,74,75],[795,1,1,75,76]]],[24,3,3,76,79,[[798,1,1,76,77],[800,1,1,77,78],[801,1,1,78,79]]],[25,8,8,79,87,[[809,1,1,79,80],[810,1,1,80,81],[817,2,2,81,83],[824,4,4,83,87]]],[26,2,2,87,89,[[860,2,2,87,89]]],[32,1,1,89,90,[[894,1,1,89,90]]],[33,1,1,90,91,[[902,1,1,90,91]]],[37,2,2,91,93,[[915,1,1,91,92],[924,1,1,92,93]]]],[352,435,908,965,1551,1940,2553,2556,2557,3550,4673,4682,4699,4972,4981,5441,5740,6027,6037,6803,6805,6976,7112,7118,7204,7262,7593,7682,7683,7777,7806,8048,8176,8405,8557,8832,9109,10172,11772,12253,12495,12496,12697,12711,12719,12727,12732,12733,12736,12737,12738,12739,12741,12760,12828,13937,17287,17545,17607,17615,17719,17734,18020,18162,18268,19137,19195,19917,19948,19973,20003,20025,20030,20034,20203,20242,20352,20430,20453,20618,20628,20796,20803,21009,21017,21051,21055,22053,22073,22604,22725,22945,23070]]],["women's",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12735]]]]},{"k":"H803","v":[["foundations",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20181]]]]},{"k":"H804","v":[["*",[151,138,[[0,4,4,0,4,[[1,1,1,0,1],[9,2,2,1,3],[24,1,1,3,4]]],[3,2,2,4,6,[[140,2,2,4,6]]],[11,49,41,6,47,[[327,5,3,6,9],[328,6,5,9,14],[329,11,8,14,22],[330,15,13,22,35],[331,10,10,35,45],[332,1,1,45,46],[335,1,1,46,47]]],[12,4,3,47,50,[[338,1,1,47,48],[342,3,2,48,50]]],[13,13,13,50,63,[[394,3,3,50,53],[396,1,1,53,54],[398,8,8,54,62],[399,1,1,62,63]]],[14,2,2,63,65,[[406,1,1,63,64],[408,1,1,64,65]]],[15,1,1,65,66,[[421,1,1,65,66]]],[18,1,1,66,67,[[560,1,1,66,67]]],[22,44,41,67,108,[[685,3,3,67,70],[686,2,2,70,72],[688,3,3,72,75],[689,2,2,75,77],[692,1,1,77,78],[697,6,3,78,81],[698,3,3,81,84],[701,1,1,84,85],[705,1,1,85,86],[708,1,1,86,87],[709,1,1,87,88],[714,8,8,88,96],[715,10,10,96,106],[716,1,1,106,107],[730,1,1,107,108]]],[23,4,4,108,112,[[746,2,2,108,110],[794,2,2,110,112]]],[24,1,1,112,113,[[801,1,1,112,113]]],[25,9,9,113,122,[[817,1,1,113,114],[824,5,5,114,119],[828,1,1,119,120],[832,1,1,120,121],[833,1,1,121,122]]],[27,9,9,122,131,[[866,1,1,122,123],[868,1,1,123,124],[869,1,1,124,125],[870,1,1,125,126],[871,1,1,126,127],[872,2,2,127,129],[873,1,1,129,130],[875,1,1,130,131]]],[32,4,3,131,134,[[897,3,2,131,133],[899,1,1,133,134]]],[33,1,1,134,135,[[902,1,1,134,135]]],[35,1,1,135,136,[[907,1,1,135,136]]],[37,2,2,136,138,[[920,2,2,136,138]]]],[44,245,256,676,4468,4470,9944,9945,9954,9970,9971,9972,9973,9981,9986,9987,9988,9989,10006,10007,10009,10010,10031,10033,10035,10037,10038,10040,10041,10043,10047,10052,10054,10055,10057,10065,10067,10069,10071,10072,10078,10081,10093,10096,10097,10104,10194,10269,10434,10454,11780,11784,11785,11833,11876,11879,11882,11884,11885,11886,11896,11897,11919,12112,12173,12543,15249,17799,17800,17802,17811,17814,17855,17862,17874,17895,17900,17953,18027,18028,18029,18030,18033,18035,18090,18164,18248,18258,18331,18332,18334,18338,18343,18345,18346,18348,18356,18358,18360,18362,18363,18370,18373,18385,18388,18389,18396,18700,18983,19001,20183,20184,20448,20790,21012,21014,21016,21019,21030,21144,21233,21270,22165,22189,22203,22211,22231,22245,22251,22253,22285,22638,22639,22676,22730,22818,23026,23027]]],["+",[10,10,[[22,4,4,0,4,[[685,1,1,0,1],[688,1,1,1,2],[689,2,2,2,4]]],[23,1,1,4,5,[[746,1,1,4,5]]],[25,4,4,5,9,[[817,1,1,5,6],[824,3,3,6,9]]],[37,1,1,9,10,[[920,1,1,9,10]]]],[17802,17874,17895,17900,19001,20790,21016,21019,21030,23026]]],["Asshur",[8,8,[[0,2,2,0,2,[[9,2,2,0,2]]],[3,2,2,2,4,[[140,2,2,2,4]]],[12,1,1,4,5,[[338,1,1,4,5]]],[25,2,2,5,7,[[828,1,1,5,6],[833,1,1,6,7]]],[27,1,1,7,8,[[875,1,1,7,8]]]],[245,256,4468,4470,10269,21144,21270,22285]]],["Assur",[2,2,[[14,1,1,0,1,[[406,1,1,0,1]]],[18,1,1,1,2,[[560,1,1,1,2]]]],[12112,15249]]],["Assyria",[113,103,[[0,2,2,0,2,[[1,1,1,0,1],[24,1,1,1,2]]],[11,48,40,2,42,[[327,5,3,2,5],[328,6,5,5,10],[329,11,8,10,18],[330,15,13,18,31],[331,9,9,31,40],[332,1,1,40,41],[335,1,1,41,42]]],[12,3,2,42,44,[[342,3,2,42,44]]],[13,13,13,44,57,[[394,3,3,44,47],[396,1,1,47,48],[398,8,8,48,56],[399,1,1,56,57]]],[14,1,1,57,58,[[408,1,1,57,58]]],[15,1,1,58,59,[[421,1,1,58,59]]],[22,31,30,59,89,[[685,2,2,59,61],[686,2,2,61,63],[688,1,1,63,64],[697,4,3,64,67],[698,3,3,67,70],[705,1,1,70,71],[714,8,8,71,79],[715,9,9,79,88],[716,1,1,88,89]]],[23,3,3,89,92,[[746,1,1,89,90],[794,2,2,90,92]]],[25,1,1,92,93,[[824,1,1,92,93]]],[27,5,5,93,98,[[868,1,1,93,94],[869,1,1,94,95],[870,1,1,95,96],[871,1,1,96,97],[872,1,1,97,98]]],[32,2,2,98,100,[[897,1,1,98,99],[899,1,1,99,100]]],[33,1,1,100,101,[[902,1,1,100,101]]],[35,1,1,101,102,[[907,1,1,101,102]]],[37,1,1,102,103,[[920,1,1,102,103]]]],[44,676,9944,9945,9954,9970,9971,9972,9973,9981,9986,9987,9988,9989,10006,10007,10009,10010,10031,10033,10035,10037,10038,10040,10041,10043,10047,10052,10054,10055,10057,10065,10067,10069,10071,10072,10078,10081,10093,10097,10104,10194,10434,10454,11780,11784,11785,11833,11876,11879,11882,11884,11885,11886,11896,11897,11919,12173,12543,17799,17800,17811,17814,17862,18027,18028,18029,18030,18033,18035,18164,18331,18332,18334,18338,18343,18345,18346,18348,18356,18358,18360,18362,18363,18370,18373,18385,18389,18396,18983,20183,20184,21014,22189,22203,22211,22231,22251,22639,22676,22730,22818,23027]]],["Assyrian",[12,12,[[22,7,7,0,7,[[688,1,1,0,1],[692,1,1,1,2],[697,1,1,2,3],[701,1,1,3,4],[708,1,1,4,5],[709,1,1,5,6],[730,1,1,6,7]]],[25,1,1,7,8,[[832,1,1,7,8]]],[27,2,2,8,10,[[866,1,1,8,9],[872,1,1,9,10]]],[32,2,2,10,12,[[897,2,2,10,12]]]],[17855,17953,18027,18090,18248,18258,18700,21233,22165,22245,22638,22639]]],["Assyrians",[6,6,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,2,2,1,3,[[697,1,1,1,2],[715,1,1,2,3]]],[24,1,1,3,4,[[801,1,1,3,4]]],[25,1,1,4,5,[[824,1,1,4,5]]],[27,1,1,5,6,[[873,1,1,5,6]]]],[10096,18027,18388,20448,21012,22253]]]]},{"k":"H805","v":[["Asshurim",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[661]]]]},{"k":"H806","v":[["Ashur",[2,2,[[12,2,2,0,2,[[339,1,1,0,1],[341,1,1,1,2]]]],[10330,10390]]]]},{"k":"H807","v":[["Ashima",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10013]]]]},{"k":"H808","v":[["foundations",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17976]]]]},{"k":"H809","v":[["*",[4,4,[[9,1,1,0,1,[[272,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[21,1,1,2,3,[[672,1,1,2,3]]],[27,1,1,3,4,[[864,1,1,3,4]]]],[8176,10823,17559,22129]]],["flagon",[2,2,[[9,1,1,0,1,[[272,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]]],[8176,10823]]],["flagons",[2,2,[[21,1,1,0,1,[[672,1,1,0,1]]],[27,1,1,1,2,[[864,1,1,1,2]]]],[17559,22129]]]]},{"k":"H810","v":[["stones",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3365]]]]},{"k":"H811","v":[["*",[9,9,[[0,1,1,0,1,[[39,1,1,0,1]]],[3,2,2,1,3,[[129,2,2,1,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[21,3,3,4,7,[[671,1,1,4,5],[677,2,2,5,7]]],[22,1,1,7,8,[[743,1,1,7,8]]],[32,1,1,8,9,[[899,1,1,8,9]]]],[1182,4098,4099,5790,17551,17634,17635,18905,22665]]],["cluster",[4,4,[[3,1,1,0,1,[[129,1,1,0,1]]],[21,1,1,1,2,[[671,1,1,1,2]]],[22,1,1,2,3,[[743,1,1,2,3]]],[32,1,1,3,4,[[899,1,1,3,4]]]],[4098,17551,18905,22665]]],["clusters",[4,4,[[0,1,1,0,1,[[39,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[21,2,2,2,4,[[677,2,2,2,4]]]],[1182,5790,17634,17635]]],["grapes",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4099]]]]},{"k":"H812","v":[["Eshcol",[6,6,[[0,2,2,0,2,[[13,2,2,0,2]]],[3,3,3,2,5,[[129,2,2,2,4],[148,1,1,4,5]]],[4,1,1,5,6,[[153,1,1,5,6]]]],[349,360,4098,4099,4727,4916]]]]},{"k":"H813","v":[["*",[3,3,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[23,1,1,2,3,[[795,1,1,2,3]]]],[237,10258,20239]]],["Ashchenaz",[2,2,[[12,1,1,0,1,[[338,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[10258,20239]]],["Ashkenaz",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[237]]]]},{"k":"H814","v":[["*",[2,2,[[18,1,1,0,1,[[549,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[15010,21136]]],["gifts",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15010]]],["present",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21136]]]]},{"k":"H815","v":[["*",[3,3,[[0,1,1,0,1,[[20,1,1,0,1]]],[8,2,2,1,3,[[257,1,1,1,2],[266,1,1,2,3]]]],[546,7793,8022]]],["grove",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[546]]],["tree",[2,2,[[8,2,2,0,2,[[257,1,1,0,1],[266,1,1,1,2]]]],[7793,8022]]]]},{"k":"H816","v":[["*",[35,32,[[2,11,10,0,10,[[93,3,3,0,3],[94,7,6,3,9],[95,1,1,9,10]]],[3,2,2,10,12,[[121,2,2,10,12]]],[6,1,1,12,13,[[231,1,1,12,13]]],[13,2,1,13,14,[[385,2,1,13,14]]],[18,3,3,14,17,[[482,1,1,14,15],[511,2,2,15,17]]],[19,1,1,17,18,[[657,1,1,17,18]]],[22,1,1,18,19,[[702,1,1,18,19]]],[23,2,2,19,21,[[746,1,1,19,20],[794,1,1,20,21]]],[25,4,3,21,24,[[807,1,1,21,22],[823,1,1,22,23],[826,2,1,23,24]]],[27,5,5,24,29,[[865,1,1,24,25],[866,1,1,25,26],[871,1,1,26,27],[874,2,2,27,29]]],[28,1,1,29,30,[[876,1,1,29,30]]],[34,1,1,30,31,[[903,1,1,30,31]]],[37,1,1,31,32,[[921,1,1,31,32]]]],[2808,2817,2822,2832,2833,2834,2835,2847,2849,2853,3798,3799,7124,11586,13983,14409,14410,17261,18101,18968,20173,20569,20980,21095,22148,22167,22227,22267,22282,22309,22742,23033]]],["+",[5,3,[[2,2,1,0,1,[[94,2,1,0,1]]],[25,2,1,1,2,[[826,2,1,1,2]]],[37,1,1,2,3,[[921,1,1,2,3]]]],[2849,21095,23033]]],["Destroy",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13983]]],["desolate",[6,6,[[18,2,2,0,2,[[511,2,2,0,2]]],[22,1,1,2,3,[[702,1,1,2,3]]],[25,1,1,3,4,[[807,1,1,3,4]]],[27,1,1,4,5,[[874,1,1,4,5]]],[28,1,1,5,6,[[876,1,1,5,6]]]],[14409,14410,18101,20569,22282,22309]]],["faulty",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22227]]],["guilty",[13,13,[[2,9,9,0,9,[[93,3,3,0,3],[94,5,5,3,8],[95,1,1,8,9]]],[3,1,1,9,10,[[121,1,1,9,10]]],[6,1,1,10,11,[[231,1,1,10,11]]],[19,1,1,11,12,[[657,1,1,11,12]]],[25,1,1,12,13,[[823,1,1,12,13]]]],[2808,2817,2822,2832,2833,2834,2835,2847,2853,3798,7124,17261,20980]]],["offence",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22167]]],["offend",[4,4,[[23,2,2,0,2,[[746,1,1,0,1],[794,1,1,1,2]]],[27,1,1,2,3,[[865,1,1,2,3]]],[34,1,1,3,4,[[903,1,1,3,4]]]],[18968,20173,22148,22742]]],["offended",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22267]]],["trespass",[2,1,[[13,2,1,0,1,[[385,2,1,0,1]]]],[11586]]],["trespassed",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3799]]]]},{"k":"H817","v":[["*",[46,41,[[0,1,1,0,1,[[25,1,1,0,1]]],[2,27,23,1,24,[[94,7,6,1,7],[95,3,2,7,9],[96,5,5,9,14],[103,9,8,14,22],[108,3,2,22,24]]],[3,5,4,24,28,[[121,3,2,24,26],[122,1,1,26,27],[134,1,1,27,28]]],[8,4,4,28,32,[[241,4,4,28,32]]],[11,1,1,32,33,[[324,1,1,32,33]]],[18,1,1,33,34,[[545,1,1,33,34]]],[19,1,1,34,35,[[641,1,1,34,35]]],[22,1,1,35,36,[[731,1,1,35,36]]],[23,1,1,36,37,[[795,1,1,36,37]]],[25,4,4,37,41,[[841,1,1,37,38],[843,1,1,38,39],[845,1,1,39,40],[847,1,1,40,41]]]],[702,2836,2837,2845,2846,2848,2849,2855,2866,2880,2881,2884,2886,2916,3123,3124,3125,3128,3132,3135,3136,3139,3302,3303,3799,3800,3835,4266,7334,7335,7339,7348,9866,14921,16781,18721,20217,21516,21565,21628,21675]]],["guiltiness",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[702]]],["offering",[35,32,[[2,25,22,0,22,[[94,5,5,0,5],[95,3,2,5,7],[96,5,5,7,12],[103,9,8,12,20],[108,3,2,20,22]]],[3,2,2,22,24,[[122,1,1,22,23],[134,1,1,23,24]]],[8,4,4,24,28,[[241,4,4,24,28]]],[25,4,4,28,32,[[841,1,1,28,29],[843,1,1,29,30],[845,1,1,30,31],[847,1,1,31,32]]]],[2836,2845,2846,2848,2849,2855,2866,2880,2881,2884,2886,2916,3123,3124,3125,3128,3132,3135,3136,3139,3302,3303,3835,4266,7334,7335,7339,7348,21516,21565,21628,21675]]],["sin",[3,3,[[19,1,1,0,1,[[641,1,1,0,1]]],[22,1,1,1,2,[[731,1,1,1,2]]],[23,1,1,2,3,[[795,1,1,2,3]]]],[16781,18721,20217]]],["trespass",[6,5,[[2,2,2,0,2,[[94,2,2,0,2]]],[3,3,2,2,4,[[121,3,2,2,4]]],[11,1,1,4,5,[[324,1,1,4,5]]]],[2837,2845,3799,3800,9866]]],["trespasses",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14921]]]]},{"k":"H818","v":[["*",[3,3,[[0,1,1,0,1,[[41,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]],[14,1,1,2,3,[[412,1,1,2,3]]]],[1273,8369,12271]]],["faulty",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8369]]],["guilty",[2,2,[[0,1,1,0,1,[[41,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]]],[1273,12271]]]]},{"k":"H819","v":[["*",[19,17,[[2,4,4,0,4,[[93,1,1,0,1],[95,2,2,1,3],[111,1,1,3,4]]],[12,1,1,4,5,[[358,1,1,4,5]]],[13,6,4,5,9,[[390,1,1,5,6],[394,4,2,6,8],[399,1,1,8,9]]],[14,6,6,9,15,[[411,4,4,9,13],[412,2,2,13,15]]],[18,1,1,15,16,[[546,1,1,15,16]]],[29,1,1,16,17,[[886,1,1,16,17]]]],[2798,2854,2856,3385,10937,11695,11774,11777,11931,12243,12244,12250,12252,12262,12271,14940,22495]]],["+",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11777]]],["offering",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2854]]],["sin",[2,2,[[2,1,1,0,1,[[93,1,1,0,1]]],[29,1,1,1,2,[[886,1,1,1,2]]]],[2798,22495]]],["sins",[2,2,[[13,1,1,0,1,[[394,1,1,0,1]]],[18,1,1,1,2,[[546,1,1,1,2]]]],[11774,14940]]],["trespass",[10,9,[[2,1,1,0,1,[[111,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]],[13,3,2,2,4,[[390,1,1,2,3],[394,2,1,3,4]]],[14,5,5,4,9,[[411,3,3,4,7],[412,2,2,7,9]]]],[3385,10937,11695,11777,12243,12244,12250,12262,12271]]],["trespassed",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11931]]],["trespasses",[1,1,[[14,1,1,0,1,[[411,1,1,0,1]]]],[12252]]],["trespassing",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2856]]]]},{"k":"H820","v":[["places",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18810]]]]},{"k":"H821","v":[["*",[7,7,[[1,1,1,0,1,[[63,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]],[8,1,1,2,3,[[246,1,1,2,3]]],[18,3,3,3,6,[[540,1,1,3,4],[567,1,1,4,5],[596,1,1,5,6]]],[24,1,1,6,7,[[798,1,1,6,7]]]],[1913,6713,7456,14845,15382,16046,20351]]],["watch",[4,4,[[1,1,1,0,1,[[63,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]],[8,1,1,2,3,[[246,1,1,2,3]]],[18,1,1,3,4,[[567,1,1,3,4]]]],[1913,6713,7456,15382]]],["watches",[3,3,[[18,2,2,0,2,[[540,1,1,0,1],[596,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]]],[14845,16046,20351]]]]},{"k":"H822","v":[["*",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]]],[6651,16581]]],["casement",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16581]]],["lattice",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6651]]]]},{"k":"H823","v":[["Ashnah",[2,2,[[5,2,2,0,2,[[201,2,2,0,2]]]],[6235,6245]]]]},{"k":"H824","v":[["Eshean",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6254]]]]},{"k":"H825","v":[["astrologers",[2,2,[[26,2,2,0,2,[[850,1,1,0,1],[851,1,1,1,2]]]],[21757,21760]]]]},{"k":"H826","v":[["*",[6,6,[[26,6,6,0,6,[[851,2,2,0,2],[853,1,1,2,3],[854,3,3,3,6]]]],[21768,21785,21844,21881,21885,21889]]],["astrologer",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21768]]],["astrologers",[5,5,[[26,5,5,0,5,[[851,1,1,0,1],[853,1,1,1,2],[854,3,3,2,5]]]],[21785,21844,21881,21885,21889]]]]},{"k":"H827","v":[["quiver",[6,6,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,1,1,1,2,[[604,1,1,1,2]]],[22,2,2,2,4,[[700,1,1,2,3],[727,1,1,3,4]]],[23,1,1,4,5,[[749,1,1,4,5]]],[24,1,1,5,6,[[799,1,1,5,6]]]],[13857,16126,18058,18638,19074,20367]]]]},{"k":"H828","v":[["Ashpenaz",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21740]]]]},{"k":"H829","v":[["*",[2,2,[[9,1,1,0,1,[[272,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]]],[8176,10823]]],["flesh",[1,1,[[12,1,1,0,1,[[353,1,1,0,1]]]],[10823]]],["piece",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8176]]]]},{"k":"H830","v":[["*",[7,7,[[8,1,1,0,1,[[237,1,1,0,1]]],[15,4,4,1,5,[[414,1,1,1,2],[415,2,2,2,4],[424,1,1,4,5]]],[18,1,1,5,6,[[590,1,1,5,6]]],[24,1,1,6,7,[[800,1,1,6,7]]]],[7248,12320,12340,12341,12655,15820,20425]]],["+",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[18,1,1,1,2,[[590,1,1,1,2]]]],[7248,15820]]],["dung",[4,4,[[15,4,4,0,4,[[414,1,1,0,1],[415,2,2,1,3],[424,1,1,3,4]]]],[12320,12340,12341,12655]]],["dunghills",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20425]]]]},{"k":"H831","v":[["*",[12,11,[[6,2,2,0,2,[[211,1,1,0,1],[224,1,1,1,2]]],[8,1,1,2,3,[[241,1,1,2,3]]],[9,1,1,3,4,[[267,1,1,3,4]]],[23,3,3,4,7,[[769,1,1,4,5],[791,2,2,5,7]]],[29,1,1,7,8,[[879,1,1,7,8]]],[35,2,2,8,10,[[907,2,2,8,10]]],[37,2,1,10,11,[[919,2,1,10,11]]]],[6527,6928,7348,8042,19554,20078,20080,22372,22809,22812,23004]]],["+",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22372]]],["Ashkelon",[8,7,[[6,1,1,0,1,[[224,1,1,0,1]]],[23,3,3,1,4,[[769,1,1,1,2],[791,2,2,2,4]]],[35,2,2,4,6,[[907,2,2,4,6]]],[37,2,1,6,7,[[919,2,1,6,7]]]],[6928,19554,20078,20080,22809,22812,23004]]],["Askelon",[3,3,[[6,1,1,0,1,[[211,1,1,0,1]]],[8,1,1,1,2,[[241,1,1,1,2]]],[9,1,1,2,3,[[267,1,1,2,3]]]],[6527,7348,8042]]]]},{"k":"H832","v":[["Eshkalonites",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6157]]]]},{"k":"H833","v":[["*",[16,15,[[0,1,1,0,1,[[29,1,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]],[18,2,2,2,4,[[518,1,1,2,3],[549,1,1,3,4]]],[19,5,5,4,9,[[630,1,1,4,5],[631,1,1,5,6],[636,1,1,6,7],[650,1,1,7,8],[658,1,1,8,9]]],[21,1,1,9,10,[[676,1,1,9,10]]],[22,4,3,10,13,[[679,1,1,10,11],[681,1,1,11,12],[687,2,1,12,13]]],[38,2,2,13,15,[[927,2,2,13,15]]]],[843,13543,14544,15017,16473,16504,16644,17063,17312,17623,17671,17719,17845,23132,23135]]],["+",[2,2,[[38,2,2,0,2,[[927,2,2,0,2]]]],[23132,23135]]],["blessed",[6,6,[[0,1,1,0,1,[[29,1,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]],[18,2,2,2,4,[[518,1,1,2,3],[549,1,1,3,4]]],[19,1,1,4,5,[[658,1,1,4,5]]],[21,1,1,5,6,[[676,1,1,5,6]]]],[843,13543,14544,15017,17312,17623]]],["go",[2,2,[[19,2,2,0,2,[[631,1,1,0,1],[636,1,1,1,2]]]],[16504,16644]]],["guide",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17063]]],["happy",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16473]]],["lead",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17719]]],["leaders",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17845]]],["led",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17845]]],["relieve",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17671]]]]},{"k":"H834","v":[["*",[5445,4402,[[0,406,348,0,348,[[0,9,7,0,7],[1,7,6,7,13],[2,6,6,13,19],[3,1,1,19,20],[4,2,2,20,22],[5,9,7,22,29],[6,12,10,29,39],[7,4,4,39,43],[8,10,8,43,51],[9,1,1,51,52],[10,3,3,52,55],[11,6,5,55,60],[12,7,7,60,67],[13,8,7,67,74],[14,4,4,74,78],[15,1,1,78,79],[16,5,5,79,84],[17,7,6,84,90],[18,8,8,90,98],[19,7,5,98,103],[20,13,11,103,114],[21,8,7,114,121],[22,10,5,121,126],[23,24,21,126,147],[24,7,7,147,154],[25,10,8,154,162],[26,14,14,162,176],[27,9,6,176,182],[28,3,3,182,185],[29,13,10,185,195],[30,16,11,195,206],[31,7,7,206,213],[32,9,8,213,221],[33,10,9,221,230],[34,15,11,230,241],[35,4,4,241,245],[36,5,4,245,249],[37,5,5,249,254],[38,15,11,254,265],[39,6,6,265,271],[40,15,13,271,284],[41,4,4,284,288],[42,9,8,288,296],[43,13,11,296,307],[44,7,6,307,313],[45,11,11,313,324],[46,7,7,324,331],[47,4,4,331,335],[48,8,5,335,340],[49,8,8,340,348]]],[1,303,257,348,605,[[50,5,5,348,353],[51,1,1,353,354],[52,5,5,354,359],[53,9,8,359,367],[54,6,6,367,373],[55,6,6,373,379],[56,13,10,379,389],[57,6,6,389,395],[58,10,9,395,404],[59,6,5,404,409],[60,4,4,409,413],[61,15,13,413,426],[62,4,4,426,430],[63,4,3,430,433],[64,1,1,433,434],[65,14,9,434,443],[66,4,3,443,446],[67,16,12,446,458],[68,6,6,458,464],[69,12,10,464,474],[70,6,5,474,479],[71,3,2,479,481],[72,7,7,481,488],[73,5,5,488,493],[74,10,9,493,502],[75,2,2,502,504],[76,2,2,504,506],[77,5,5,506,511],[78,16,13,511,524],[79,8,5,524,529],[80,3,3,529,532],[81,22,16,532,548],[82,9,7,548,555],[83,11,8,555,563],[84,12,10,563,573],[85,8,6,573,579],[86,2,2,579,581],[87,3,3,581,584],[88,12,11,584,595],[89,10,10,595,605]]],[2,308,251,605,856,[[90,6,4,605,609],[91,2,2,609,611],[92,11,7,611,618],[93,26,19,618,637],[94,12,12,637,649],[95,18,12,649,661],[96,15,13,661,674],[97,16,15,674,689],[98,8,8,689,697],[99,7,7,697,704],[100,21,14,704,718],[102,7,7,718,725],[103,17,16,725,741],[104,20,17,741,758],[105,15,12,758,770],[106,12,8,770,778],[107,9,7,778,785],[108,3,2,785,787],[109,20,18,787,805],[110,6,6,805,811],[111,13,8,811,819],[112,7,7,819,826],[113,3,3,826,829],[114,14,11,829,840],[115,6,5,840,845],[116,14,11,845,856]]],[3,292,254,856,1110,[[117,6,6,856,862],[118,3,3,862,865],[119,7,7,865,872],[120,12,11,872,883],[121,10,9,883,892],[122,7,5,892,897],[123,1,1,897,898],[124,5,5,898,903],[125,7,7,903,910],[126,2,2,910,912],[127,10,8,912,920],[128,5,4,920,924],[129,10,7,924,931],[130,21,19,931,950],[131,12,10,950,960],[132,12,10,960,970],[133,4,3,970,973],[134,10,9,973,982],[135,10,8,982,990],[136,8,7,990,997],[137,10,9,997,1006],[138,14,12,1006,1018],[139,5,5,1018,1023],[140,4,4,1023,1027],[141,3,3,1027,1030],[142,5,5,1030,1035],[143,12,8,1035,1043],[144,2,2,1043,1045],[145,1,1,1045,1046],[146,12,10,1046,1056],[147,16,15,1056,1071],[148,10,10,1071,1081],[149,8,7,1081,1088],[150,5,4,1088,1092],[151,18,13,1092,1105],[152,5,5,1105,1110]]],[4,582,429,1110,1539,[[153,30,22,1110,1132],[154,16,9,1132,1141],[155,16,11,1141,1152],[156,43,30,1152,1182],[157,21,14,1182,1196],[158,21,15,1196,1211],[159,12,10,1211,1221],[160,15,12,1221,1233],[161,21,16,1233,1249],[162,12,9,1249,1258],[163,32,22,1258,1280],[164,32,22,1280,1302],[165,11,9,1302,1311],[166,15,12,1311,1323],[167,11,11,1323,1334],[168,18,15,1334,1349],[169,18,11,1349,1360],[170,16,11,1360,1371],[171,17,12,1371,1383],[172,12,9,1383,1392],[173,10,9,1392,1401],[174,9,8,1401,1409],[175,10,8,1409,1417],[176,10,7,1417,1424],[177,6,6,1424,1430],[178,16,10,1430,1440],[179,10,7,1440,1447],[180,47,37,1447,1484],[181,23,15,1484,1499],[182,13,11,1499,1510],[183,18,13,1510,1523],[184,12,7,1523,1530],[185,3,3,1530,1533],[186,6,6,1533,1539]]],[5,263,193,1539,1732,[[187,20,13,1539,1552],[188,12,8,1552,1560],[189,6,4,1560,1564],[190,16,12,1564,1576],[191,9,5,1576,1581],[192,11,7,1581,1588],[193,8,6,1588,1594],[194,20,15,1594,1609],[195,12,10,1609,1619],[196,20,11,1619,1630],[197,10,9,1630,1639],[198,4,4,1639,1643],[199,19,15,1643,1658],[200,14,11,1658,1669],[201,6,4,1669,1673],[203,5,4,1673,1677],[204,8,7,1677,1684],[205,4,4,1684,1688],[206,3,2,1688,1690],[207,5,5,1690,1695],[208,17,13,1695,1708],[209,13,10,1708,1718],[210,21,14,1718,1732]]],[6,175,142,1732,1874,[[211,4,4,1732,1736],[212,15,9,1736,1745],[213,7,6,1745,1751],[214,7,7,1751,1758],[215,1,1,1758,1759],[216,17,13,1759,1772],[217,12,8,1772,1780],[218,11,10,1780,1790],[219,19,14,1790,1804],[220,5,4,1804,1808],[221,10,8,1808,1816],[223,6,5,1816,1821],[224,3,3,1821,1824],[225,6,4,1824,1828],[226,12,10,1828,1838],[227,3,3,1838,1841],[228,13,11,1841,1852],[229,5,5,1852,1857],[230,9,9,1857,1866],[231,10,8,1866,1874]]],[7,42,31,1874,1905,[[232,6,5,1874,1879],[233,15,10,1879,1889],[234,10,9,1889,1898],[235,11,7,1898,1905]]],[8,234,198,1905,2103,[[236,4,4,1905,1909],[237,11,10,1909,1919],[238,6,5,1919,1924],[239,1,1,1924,1925],[240,1,1,1925,1926],[241,9,7,1926,1933],[242,1,1,1933,1934],[243,7,7,1934,1941],[244,8,6,1941,1947],[245,8,8,1947,1955],[246,1,1,1955,1956],[247,12,10,1956,1966],[248,6,6,1966,1972],[249,19,17,1972,1989],[250,10,8,1989,1997],[251,5,4,1997,2001],[252,10,10,2001,2011],[253,3,3,2011,2014],[254,3,3,2014,2017],[255,8,8,2017,2025],[256,4,3,2025,2028],[257,5,5,2028,2033],[258,5,5,2033,2038],[259,9,7,2038,2045],[260,18,16,2045,2061],[261,11,8,2061,2069],[262,3,3,2069,2072],[263,7,6,2072,2078],[264,6,6,2078,2084],[265,30,17,2084,2101],[266,3,2,2101,2103]]],[9,187,162,2103,2265,[[267,4,3,2103,2106],[268,10,10,2106,2116],[269,11,11,2116,2127],[270,3,3,2127,2130],[271,1,1,2130,2131],[272,10,9,2131,2140],[273,16,11,2140,2151],[274,6,5,2151,2156],[275,4,4,2156,2160],[276,3,3,2160,2163],[277,4,4,2163,2167],[278,7,5,2167,2172],[279,9,8,2172,2180],[280,9,8,2180,2188],[281,15,15,2188,2203],[282,11,9,2203,2212],[283,16,12,2212,2224],[284,8,7,2224,2231],[285,11,9,2231,2240],[286,9,8,2240,2248],[287,12,9,2248,2257],[289,3,3,2257,2260],[290,5,5,2260,2265]]],[10,374,281,2265,2546,[[291,9,9,2265,2274],[292,21,13,2274,2287],[293,12,10,2287,2297],[294,11,9,2297,2306],[295,9,8,2306,2314],[296,4,3,2314,2317],[297,17,14,2317,2331],[298,57,38,2331,2369],[299,26,19,2369,2388],[300,15,13,2388,2401],[301,21,17,2401,2418],[302,21,14,2418,2432],[303,25,17,2432,2449],[304,21,15,2449,2464],[305,18,14,2464,2478],[306,23,18,2478,2496],[307,8,8,2496,2504],[308,10,9,2504,2513],[309,5,3,2513,2516],[310,9,8,2516,2524],[311,16,10,2524,2534],[312,16,12,2534,2546]]],[11,314,237,2546,2783,[[313,9,7,2546,2553],[314,7,7,2553,2560],[315,6,6,2560,2566],[316,1,1,2566,2567],[317,5,5,2567,2572],[318,8,6,2572,2578],[319,11,7,2578,2585],[320,12,9,2585,2594],[321,4,4,2594,2598],[322,20,14,2598,2612],[323,3,3,2612,2615],[324,8,7,2615,2622],[325,8,7,2622,2629],[326,15,9,2629,2638],[327,15,14,2638,2652],[328,9,9,2652,2661],[329,31,22,2661,2683],[330,17,16,2683,2699],[331,14,11,2699,2710],[332,13,9,2710,2719],[333,25,15,2719,2734],[334,10,9,2734,2743],[335,41,21,2743,2764],[336,9,8,2764,2772],[337,13,11,2772,2783]]],[12,91,83,2783,2866,[[338,2,2,2783,2785],[339,2,2,2785,2787],[340,1,1,2787,2788],[341,5,5,2788,2793],[342,2,2,2793,2795],[343,5,4,2795,2799],[344,1,1,2799,2800],[346,1,1,2800,2801],[347,4,3,2801,2804],[348,4,4,2804,2808],[349,3,3,2808,2811],[350,4,3,2811,2814],[351,2,2,2814,2816],[352,2,2,2816,2818],[353,7,7,2818,2825],[354,17,12,2825,2837],[355,5,5,2837,2842],[356,4,4,2842,2846],[357,1,1,2846,2847],[358,5,5,2847,2852],[359,3,3,2852,2855],[360,1,1,2855,2856],[361,1,1,2856,2857],[363,1,1,2857,2858],[364,2,2,2858,2860],[365,1,1,2860,2861],[366,5,5,2861,2866]]],[13,249,199,2866,3065,[[367,11,7,2866,2873],[368,14,10,2873,2883],[369,4,3,2883,2886],[370,4,4,2886,2890],[371,5,4,2890,2894],[372,37,23,2894,2917],[373,14,10,2917,2927],[374,11,8,2927,2935],[375,15,13,2935,2948],[376,12,9,2948,2957],[377,3,3,2957,2960],[378,5,5,2960,2965],[379,2,2,2965,2967],[380,1,1,2967,2968],[381,4,3,2968,2971],[382,4,3,2971,2974],[383,3,3,2974,2977],[384,7,7,2977,2984],[385,1,1,2984,2985],[386,3,3,2985,2988],[387,5,4,2988,2992],[388,3,3,2992,2995],[389,6,5,2995,3000],[390,1,1,3000,3001],[391,11,9,3001,3010],[392,2,2,3010,3012],[393,1,1,3012,3013],[394,3,3,3013,3016],[395,5,5,3016,3021],[396,5,4,3021,3025],[397,2,2,3025,3027],[398,7,6,3027,3033],[399,14,10,3033,3043],[400,15,13,3043,3056],[401,5,5,3056,3061],[402,4,4,3061,3065]]],[14,24,19,3065,3084,[[403,7,5,3065,3070],[404,5,5,3070,3075],[405,1,1,3075,3076],[406,1,1,3076,3077],[409,4,3,3077,3080],[411,3,1,3080,3081],[412,3,3,3081,3084]]],[15,94,81,3084,3165,[[413,8,7,3084,3091],[414,15,10,3091,3101],[415,1,1,3101,3102],[416,9,8,3102,3110],[417,13,13,3110,3123],[418,7,6,3123,3129],[419,5,5,3129,3134],[420,8,6,3134,3140],[421,17,15,3140,3155],[422,2,2,3155,3157],[423,1,1,3157,3158],[424,1,1,3158,3159],[425,7,6,3159,3165]]],[16,99,71,3165,3236,[[426,8,8,3165,3173],[427,12,7,3173,3180],[428,7,6,3180,3186],[429,15,9,3186,3195],[430,7,6,3195,3201],[431,16,10,3201,3211],[432,5,4,3211,3215],[433,12,9,3215,3224],[434,16,11,3224,3235],[435,1,1,3235,3236]]],[17,40,40,3236,3276,[[436,3,3,3236,3239],[437,1,1,3239,3240],[438,2,2,3240,3242],[439,2,2,3242,3244],[440,1,1,3244,3245],[441,1,1,3245,3246],[443,1,1,3246,3247],[444,3,3,3247,3250],[445,1,1,3250,3251],[447,2,2,3251,3253],[450,2,2,3253,3255],[454,1,1,3255,3256],[457,2,2,3256,3258],[462,1,1,3258,3259],[464,2,2,3259,3261],[465,1,1,3261,3262],[467,1,1,3262,3263],[469,2,2,3263,3265],[471,2,2,3265,3267],[472,2,2,3267,3269],[473,1,1,3269,3270],[474,2,2,3270,3272],[475,1,1,3272,3273],[477,3,3,3273,3276]]],[18,96,93,3276,3369,[[478,4,3,3276,3279],[480,1,1,3279,3280],[485,2,2,3280,3282],[487,1,1,3282,3283],[489,1,1,3283,3284],[493,2,2,3284,3286],[501,1,1,3286,3287],[503,1,1,3287,3288],[508,2,2,3288,3290],[510,2,2,3290,3292],[512,2,2,3292,3294],[515,1,1,3294,3295],[517,1,1,3295,3296],[518,2,2,3296,3298],[523,1,1,3298,3299],[524,1,1,3299,3300],[525,1,1,3300,3301],[532,1,1,3301,3302],[533,1,1,3302,3303],[535,1,1,3303,3304],[541,1,1,3304,3305],[543,3,3,3305,3308],[546,2,2,3308,3310],[548,3,3,3310,3313],[555,7,7,3313,3320],[556,3,2,3320,3322],[557,1,1,3322,3323],[560,1,1,3323,3324],[561,1,1,3324,3325],[563,1,1,3325,3326],[565,1,1,3326,3327],[566,3,2,3327,3329],[571,1,1,3329,3330],[572,2,2,3330,3332],[573,1,1,3332,3333],[581,2,2,3333,3335],[582,3,3,3335,3338],[583,2,2,3338,3340],[584,1,1,3340,3341],[586,2,2,3341,3343],[589,1,1,3343,3344],[592,2,2,3344,3346],[596,8,8,3346,3354],[604,1,1,3354,3355],[609,1,1,3355,3356],[612,2,2,3356,3358],[616,2,2,3358,3360],[617,2,2,3360,3362],[621,3,3,3362,3365],[622,1,1,3365,3366],[623,1,1,3366,3367],[624,1,1,3367,3368],[625,1,1,3368,3369]]],[19,12,12,3369,3381,[[629,1,1,3369,3370],[630,1,1,3370,3371],[633,1,1,3371,3372],[644,1,1,3372,3373],[648,1,1,3373,3374],[649,1,1,3374,3375],[650,1,1,3375,3376],[651,1,1,3376,3377],[652,3,3,3377,3380],[658,1,1,3380,3381]]],[20,88,65,3381,3446,[[659,3,3,3381,3384],[660,4,3,3384,3387],[661,7,6,3387,3393],[662,9,7,3393,3400],[663,8,6,3400,3406],[664,5,4,3406,3410],[665,11,10,3410,3420],[666,20,12,3420,3432],[667,12,7,3432,3439],[668,2,2,3439,3441],[669,2,1,3441,3442],[670,5,4,3442,3446]]],[21,1,1,3446,3447,[[671,1,1,3446,3447]]],[22,169,144,3447,3591,[[679,4,3,3447,3450],[680,4,4,3450,3454],[683,2,2,3454,3456],[684,2,2,3456,3458],[685,5,4,3458,3462],[686,3,3,3462,3465],[687,2,2,3465,3467],[688,2,2,3467,3469],[689,4,3,3469,3472],[691,2,2,3472,3474],[692,3,2,3474,3476],[694,1,1,3476,3477],[695,2,2,3477,3479],[696,3,3,3479,3482],[697,5,4,3482,3486],[698,2,2,3486,3488],[699,2,2,3488,3490],[700,2,2,3490,3492],[701,2,2,3492,3494],[702,1,1,3494,3495],[703,1,1,3495,3496],[704,1,1,3496,3497],[705,1,1,3497,3498],[706,5,4,3498,3502],[707,5,4,3502,3506],[708,5,5,3506,3511],[709,5,4,3511,3515],[711,1,1,3515,3516],[714,7,7,3516,3523],[715,14,11,3523,3534],[716,5,3,3534,3537],[717,9,5,3537,3542],[719,3,3,3542,3545],[721,2,2,3545,3547],[723,1,1,3547,3548],[724,1,1,3548,3549],[725,3,3,3549,3552],[727,4,4,3552,3556],[728,3,2,3556,3558],[729,3,3,3558,3561],[730,3,2,3561,3563],[731,1,1,3563,3564],[732,1,1,3564,3565],[733,5,3,3565,3568],[734,3,2,3568,3570],[736,2,2,3570,3572],[737,2,1,3572,3573],[738,1,1,3573,3574],[740,2,2,3574,3576],[741,2,1,3576,3577],[742,1,1,3577,3578],[743,7,7,3578,3585],[744,7,6,3585,3591]]],[23,459,362,3591,3953,[[745,6,5,3591,3596],[746,3,3,3596,3599],[747,3,3,3599,3602],[749,5,5,3602,3607],[750,1,1,3607,3608],[751,19,13,3608,3621],[752,7,3,3621,3624],[753,4,4,3624,3628],[754,3,2,3628,3630],[755,11,9,3630,3639],[756,2,2,3639,3641],[757,8,7,3641,3648],[758,2,2,3648,3650],[759,5,2,3650,3652],[760,8,5,3652,3657],[761,7,5,3657,3662],[762,6,4,3662,3666],[763,12,9,3666,3675],[764,8,6,3675,3681],[765,3,2,3681,3683],[766,8,7,3683,3690],[767,14,10,3690,3700],[768,6,6,3700,3706],[769,13,12,3706,3718],[770,9,9,3718,3727],[771,9,6,3727,3733],[772,7,6,3733,3739],[773,24,17,3739,3756],[774,6,6,3756,3762],[775,5,4,3762,3766],[776,24,21,3766,3787],[777,13,8,3787,3795],[778,12,9,3795,3804],[779,12,10,3804,3814],[780,15,13,3814,3827],[781,3,3,3827,3830],[782,14,11,3830,3841],[783,5,5,3841,3846],[784,12,9,3846,3855],[785,21,12,3855,3867],[786,20,16,3867,3883],[787,11,8,3883,3891],[788,22,19,3891,3910],[789,4,3,3910,3913],[790,5,4,3913,3917],[791,1,1,3917,3918],[792,2,2,3918,3920],[793,7,6,3920,3926],[794,11,10,3926,3936],[795,6,6,3936,3942],[796,15,11,3942,3953]]],[24,9,7,3953,3960,[[797,5,4,3953,3957],[798,3,2,3957,3959],[800,1,1,3959,3960]]],[25,340,274,3960,4234,[[802,6,6,3960,3966],[803,4,3,3966,3969],[804,6,6,3969,3975],[805,4,4,3975,3979],[806,9,6,3979,3985],[807,6,3,3985,3988],[808,2,1,3988,3989],[809,8,8,3989,3997],[810,7,4,3997,4001],[811,7,7,4001,4008],[812,9,8,4008,4016],[813,11,10,4016,4026],[814,7,5,4026,4031],[815,6,5,4031,4036],[816,3,2,4036,4038],[817,19,15,4038,4053],[818,6,4,4053,4057],[819,13,9,4057,4066],[821,20,17,4066,4083],[822,5,5,4083,4088],[823,5,3,4088,4091],[824,12,10,4091,4101],[825,5,5,4101,4106],[827,6,5,4106,4111],[828,2,1,4111,4112],[829,2,1,4112,4113],[830,5,4,4113,4117],[832,3,3,4117,4120],[833,8,6,4120,4126],[834,6,4,4126,4130],[835,3,3,4130,4133],[836,4,3,4133,4136],[837,16,13,4136,4149],[838,9,8,4149,4157],[839,4,4,4157,4161],[840,9,8,4161,4169],[841,12,11,4169,4180],[842,8,6,4180,4186],[843,14,9,4186,4195],[844,10,8,4195,4203],[845,11,10,4203,4213],[846,1,1,4213,4214],[847,9,8,4214,4222],[848,11,7,4222,4229],[849,7,5,4229,4234]]],[26,47,38,4234,4272,[[850,12,7,4234,4241],[857,6,6,4241,4247],[858,17,13,4247,4260],[859,5,5,4260,4265],[860,4,4,4265,4269],[861,3,3,4269,4272]]],[27,12,10,4272,4282,[[862,3,2,4272,4274],[863,3,2,4274,4276],[866,1,1,4276,4277],[868,1,1,4277,4278],[870,1,1,4278,4279],[873,1,1,4279,4280],[874,1,1,4280,4281],[875,1,1,4281,4282]]],[28,12,9,4282,4291,[[876,1,1,4282,4283],[877,6,3,4283,4286],[878,5,5,4286,4291]]],[29,18,16,4291,4307,[[879,2,1,4291,4292],[880,3,3,4292,4295],[881,3,2,4295,4297],[882,2,2,4297,4299],[883,4,4,4299,4303],[884,1,1,4303,4304],[887,3,3,4304,4307]]],[30,4,3,4307,4310,[[888,4,3,4307,4310]]],[31,11,10,4310,4320,[[889,4,4,4310,4314],[890,1,1,4314,4315],[891,3,3,4315,4318],[892,3,2,4318,4320]]],[32,15,13,4320,4333,[[893,2,1,4320,4321],[894,1,1,4321,4322],[895,4,3,4322,4325],[896,1,1,4325,4326],[897,3,3,4326,4329],[898,3,3,4329,4332],[899,1,1,4332,4333]]],[33,2,2,4333,4335,[[901,1,1,4333,4334],[902,1,1,4334,4335]]],[34,3,3,4335,4338,[[903,1,1,4335,4336],[904,1,1,4336,4337],[905,1,1,4337,4338]]],[35,6,6,4338,4344,[[906,2,2,4338,4340],[907,2,2,4340,4342],[908,2,2,4342,4344]]],[36,7,7,4344,4351,[[909,3,3,4344,4347],[910,4,4,4347,4351]]],[37,44,40,4351,4391,[[911,9,8,4351,4359],[913,1,1,4359,4360],[914,3,3,4360,4363],[916,2,2,4363,4365],[917,6,5,4365,4370],[918,7,7,4370,4377],[920,1,1,4377,4378],[921,4,4,4378,4382],[922,1,1,4382,4383],[923,1,1,4383,4384],[924,9,7,4384,4391]]],[38,13,11,4391,4402,[[925,1,1,4391,4392],[926,4,4,4392,4396],[927,5,3,4396,4399],[928,3,3,4399,4402]]]],[6,10,11,20,28,29,30,32,33,38,41,49,52,56,58,66,67,72,78,90,110,134,139,141,144,152,154,158,159,161,163,164,167,168,174,175,178,181,182,184,189,200,204,207,208,215,217,220,221,222,229,248,271,272,273,299,302,303,309,318,319,321,322,332,333,334,336,341,342,351,353,356,359,360,364,367,374,377,396,407,409,411,418,420,429,432,441,443,448,457,462,465,468,469,476,478,484,486,498,502,504,508,511,514,515,516,517,522,525,530,535,536,538,542,549,550,556,561,563,564,565,580,582,587,588,591,593,594,596,598,605,606,613,615,618,623,627,628,631,633,635,638,639,642,643,645,657,663,664,665,667,668,670,676,693,694,695,697,707,710,721,724,731,735,736,737,741,742,744,746,754,757,767,768,771,772,777,786,788,791,793,795,803,805,822,832,848,855,856,859,860,863,865,867,868,874,885,886,889,891,892,894,905,916,922,924,930,935,938,940,951,959,960,965,968,969,971,974,975,978,979,981,991,992,993,994,1002,1007,1008,1009,1013,1014,1015,1016,1017,1023,1024,1025,1026,1037,1038,1045,1046,1064,1071,1089,1093,1105,1106,1129,1133,1137,1144,1149,1150,1152,1154,1155,1157,1158,1166,1168,1169,1171,1172,1175,1177,1179,1185,1186,1194,1208,1216,1220,1223,1231,1233,1238,1243,1245,1248,1249,1250,1251,1261,1266,1273,1290,1292,1304,1306,1307,1309,1316,1317,1319,1325,1326,1328,1329,1332,1333,1334,1339,1340,1341,1358,1362,1364,1368,1369,1371,1385,1387,1391,1392,1401,1404,1406,1408,1411,1413,1417,1418,1421,1424,1426,1431,1434,1442,1444,1457,1460,1466,1473,1474,1501,1502,1503,1505,1511,1512,1516,1517,1518,1519,1521,1530,1540,1544,1546,1547,1549,1568,1584,1586,1588,1593,1599,1610,1613,1616,1618,1619,1622,1629,1631,1634,1640,1643,1645,1646,1653,1656,1659,1660,1663,1681,1684,1687,1691,1695,1698,1700,1702,1703,1705,1706,1707,1722,1725,1729,1731,1732,1737,1745,1754,1760,1761,1763,1766,1767,1768,1777,1779,1783,1787,1789,1792,1811,1812,1813,1814,1823,1829,1832,1838,1841,1843,1844,1845,1846,1848,1855,1856,1866,1870,1872,1878,1879,1901,1902,1920,1946,1948,1952,1955,1962,1963,1970,1971,1979,1981,1988,1993,1994,2000,2002,2004,2007,2008,2009,2010,2013,2016,2017,2019,2023,2030,2032,2033,2034,2042,2044,2053,2055,2058,2061,2062,2063,2068,2072,2075,2077,2078,2085,2090,2099,2107,2122,2129,2157,2159,2160,2164,2166,2171,2174,2180,2184,2185,2189,2191,2197,2198,2204,2211,2216,2217,2221,2224,2235,2240,2265,2280,2293,2296,2297,2301,2319,2331,2337,2349,2357,2358,2359,2363,2366,2368,2369,2371,2374,2378,2382,2388,2415,2418,2419,2420,2426,2427,2431,2439,2440,2441,2442,2445,2446,2449,2451,2452,2457,2458,2461,2470,2471,2472,2473,2474,2480,2484,2485,2489,2490,2492,2497,2500,2506,2507,2508,2514,2528,2530,2532,2535,2541,2547,2552,2553,2554,2555,2557,2560,2567,2568,2569,2570,2571,2578,2617,2620,2641,2654,2655,2665,2669,2671,2683,2685,2693,2695,2696,2703,2706,2707,2716,2722,2723,2726,2728,2730,2732,2734,2736,2739,2750,2753,2757,2762,2770,2773,2781,2782,2783,2787,2788,2792,2793,2797,2798,2802,2803,2804,2805,2808,2809,2813,2815,2816,2817,2818,2819,2822,2823,2826,2828,2830,2833,2834,2835,2836,2837,2838,2840,2841,2843,2846,2847,2848,2852,2853,2854,2856,2859,2864,2867,2869,2874,2876,2877,2879,2881,2883,2886,2887,2888,2890,2898,2899,2900,2904,2906,2915,2917,2921,2922,2926,2927,2930,2933,2934,2938,2942,2943,2946,2947,2948,2951,2953,2958,2959,2960,2961,2963,2968,2971,2974,2978,2980,2982,2983,2988,2992,2995,2999,3006,3007,3009,3018,3020,3023,3029,3030,3031,3032,3034,3036,3044,3097,3098,3103,3104,3106,3109,3110,3124,3127,3128,3129,3133,3138,3139,3140,3141,3142,3143,3145,3146,3147,3151,3152,3172,3173,3174,3177,3178,3179,3180,3185,3186,3188,3190,3191,3192,3194,3199,3200,3201,3203,3207,3210,3211,3212,3214,3216,3219,3224,3228,3233,3235,3237,3238,3240,3242,3243,3245,3248,3250,3254,3256,3275,3278,3279,3280,3281,3303,3317,3320,3324,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3338,3339,3340,3341,3342,3343,3348,3355,3362,3363,3364,3366,3371,3372,3373,3374,3375,3384,3387,3389,3404,3406,3412,3431,3432,3439,3440,3465,3466,3469,3471,3476,3496,3499,3500,3502,3507,3511,3513,3514,3524,3537,3559,3564,3569,3570,3578,3579,3581,3584,3592,3594,3596,3598,3599,3602,3604,3609,3621,3623,3648,3654,3658,3675,3691,3692,3695,3708,3718,3723,3731,3734,3743,3752,3755,3757,3759,3768,3769,3780,3784,3788,3789,3792,3795,3796,3799,3800,3801,3802,3809,3821,3822,3827,3828,3834,3841,3844,3939,3942,3943,3959,3961,3963,3970,3971,3978,3982,3983,3985,3986,4017,4020,4028,4029,4036,4040,4041,4044,4045,4049,4060,4062,4070,4071,4077,4091,4094,4099,4102,4106,4107,4115,4116,4119,4122,4123,4124,4125,4127,4130,4131,4132,4135,4136,4137,4138,4139,4142,4144,4148,4155,4165,4167,4171,4175,4176,4183,4189,4192,4194,4199,4201,4224,4225,4226,4227,4228,4233,4234,4241,4248,4249,4255,4266,4269,4270,4272,4276,4278,4281,4283,4285,4291,4302,4303,4304,4305,4307,4309,4311,4320,4323,4324,4325,4328,4335,4338,4351,4353,4355,4356,4360,4362,4370,4372,4374,4377,4380,4381,4383,4392,4395,4401,4405,4410,4411,4413,4415,4418,4428,4429,4442,4446,4450,4458,4459,4460,4484,4485,4489,4493,4498,4548,4552,4553,4565,4566,4567,4568,4571,4572,4576,4577,4580,4600,4648,4649,4652,4653,4654,4655,4656,4657,4659,4662,4664,4671,4676,4682,4685,4687,4695,4696,4699,4705,4706,4711,4712,4713,4714,4716,4722,4725,4727,4729,4735,4743,4745,4749,4756,4757,4761,4764,4766,4767,4814,4815,4816,4818,4829,4833,4845,4849,4851,4852,4853,4858,4862,4863,4868,4870,4871,4876,4878,4879,4882,4883,4885,4889,4892,4893,4895,4896,4900,4903,4906,4909,4910,4911,4912,4913,4914,4917,4922,4923,4925,4927,4928,4931,4933,4936,4938,4939,4950,4952,4954,4960,4963,4967,4973,4974,4977,4979,4981,4983,4987,4994,4995,4996,4999,5000,5003,5005,5006,5007,5009,5010,5011,5012,5013,5014,5017,5018,5021,5022,5023,5025,5027,5030,5031,5032,5035,5036,5037,5038,5044,5046,5048,5049,5050,5051,5052,5054,5059,5061,5064,5065,5067,5069,5074,5079,5080,5081,5084,5085,5086,5087,5088,5089,5092,5096,5097,5098,5100,5102,5103,5104,5105,5106,5109,5111,5112,5117,5119,5122,5123,5124,5126,5127,5129,5130,5138,5139,5140,5142,5146,5147,5148,5150,5152,5153,5155,5157,5159,5160,5162,5164,5166,5167,5169,5173,5175,5176,5178,5180,5182,5183,5185,5186,5188,5190,5191,5195,5197,5199,5200,5203,5207,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5225,5229,5230,5232,5233,5235,5236,5237,5239,5240,5241,5242,5245,5247,5248,5249,5250,5251,5252,5253,5254,5255,5257,5258,5260,5261,5262,5266,5268,5269,5271,5272,5274,5277,5278,5279,5284,5285,5287,5289,5290,5292,5294,5299,5300,5302,5311,5313,5314,5315,5316,5317,5319,5321,5322,5323,5324,5325,5326,5327,5333,5337,5338,5339,5344,5346,5347,5348,5349,5352,5353,5356,5357,5358,5359,5360,5362,5363,5364,5365,5366,5367,5369,5372,5373,5374,5375,5376,5378,5379,5386,5390,5393,5398,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5414,5415,5416,5420,5421,5423,5425,5432,5433,5434,5441,5442,5443,5444,5445,5447,5448,5449,5450,5451,5455,5461,5463,5464,5470,5473,5479,5482,5494,5495,5496,5498,5499,5504,5508,5510,5515,5516,5519,5520,5523,5528,5529,5530,5533,5534,5536,5539,5553,5556,5562,5564,5565,5566,5567,5568,5569,5576,5577,5579,5580,5581,5584,5585,5586,5587,5588,5589,5595,5600,5611,5612,5619,5620,5622,5624,5625,5626,5631,5632,5634,5638,5640,5644,5645,5646,5647,5648,5654,5656,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5671,5672,5673,5674,5675,5678,5679,5680,5681,5682,5688,5690,5691,5692,5694,5695,5696,5697,5701,5702,5704,5705,5709,5710,5711,5713,5715,5716,5717,5719,5724,5726,5728,5731,5732,5733,5735,5739,5740,5741,5744,5746,5748,5749,5751,5757,5796,5804,5805,5807,5808,5809,5810,5811,5818,5839,5840,5843,5848,5849,5850,5851,5853,5854,5856,5857,5858,5860,5862,5864,5865,5866,5867,5868,5869,5872,5876,5879,5882,5886,5887,5888,5889,5897,5900,5909,5910,5911,5913,5914,5917,5918,5920,5921,5922,5924,5930,5931,5933,5935,5938,5940,5942,5949,5966,5970,5971,5972,5973,5974,5975,5978,5984,5987,5990,5991,6000,6004,6007,6008,6013,6015,6018,6019,6020,6026,6028,6029,6033,6034,6035,6037,6038,6040,6046,6047,6050,6053,6057,6058,6061,6064,6065,6075,6089,6091,6092,6094,6096,6099,6101,6103,6104,6109,6111,6116,6118,6119,6122,6126,6127,6130,6131,6132,6137,6139,6157,6158,6160,6162,6163,6164,6166,6168,6170,6171,6175,6179,6184,6186,6187,6188,6189,6192,6193,6194,6195,6196,6197,6198,6199,6201,6209,6210,6218,6248,6280,6282,6289,6291,6295,6296,6300,6306,6307,6309,6310,6329,6332,6371,6372,6374,6378,6389,6390,6424,6425,6426,6428,6430,6431,6435,6436,6442,6443,6445,6454,6455,6456,6457,6459,6461,6463,6464,6465,6468,6470,6473,6474,6475,6476,6481,6483,6489,6490,6491,6493,6496,6499,6502,6503,6506,6507,6508,6509,6516,6521,6525,6529,6546,6552,6555,6557,6560,6562,6565,6566,6567,6569,6570,6572,6586,6587,6588,6601,6608,6610,6612,6613,6621,6623,6650,6656,6664,6665,6667,6675,6679,6680,6681,6682,6684,6685,6690,6691,6695,6696,6698,6699,6705,6711,6712,6713,6723,6724,6727,6734,6737,6740,6745,6750,6752,6754,6760,6763,6771,6778,6779,6786,6787,6788,6789,6792,6798,6799,6802,6810,6815,6819,6825,6829,6834,6836,6853,6855,6857,6860,6865,6868,6892,6894,6895,6897,6898,6915,6926,6929,6939,6940,6943,6948,6952,6956,6957,6958,6960,6971,6973,6975,6978,6979,6982,6988,6989,6998,6999,7000,7003,7009,7015,7017,7020,7021,7022,7024,7036,7038,7046,7047,7050,7058,7063,7064,7066,7067,7076,7085,7090,7096,7107,7110,7113,7114,7115,7116,7121,7125,7134,7135,7140,7143,7144,7151,7152,7158,7160,7161,7166,7167,7168,7169,7170,7173,7174,7176,7177,7178,7183,7187,7188,7190,7191,7193,7199,7201,7202,7204,7205,7229,7236,7239,7240,7254,7256,7260,7262,7263,7264,7269,7272,7274,7275,7279,7287,7288,7289,7293,7306,7331,7335,7337,7338,7339,7346,7348,7349,7366,7370,7375,7376,7377,7378,7380,7387,7396,7397,7401,7408,7410,7414,7420,7423,7425,7426,7434,7437,7442,7444,7452,7461,7466,7467,7468,7473,7474,7476,7477,7481,7484,7488,7490,7493,7498,7499,7507,7509,7510,7512,7515,7519,7522,7525,7527,7528,7529,7532,7535,7536,7538,7551,7553,7555,7562,7563,7567,7574,7575,7576,7580,7593,7598,7599,7602,7614,7619,7631,7638,7643,7644,7645,7649,7655,7658,7663,7680,7681,7691,7709,7724,7728,7743,7749,7753,7761,7766,7767,7770,7772,7774,7779,7781,7789,7790,7793,7798,7810,7821,7823,7829,7832,7833,7840,7843,7844,7849,7852,7857,7858,7867,7868,7869,7872,7882,7883,7886,7887,7888,7891,7893,7894,7895,7896,7900,7905,7908,7910,7916,7921,7925,7926,7928,7929,7932,7937,7938,7944,7950,7951,7959,7960,7963,7968,7970,7971,7972,7975,7977,7980,7982,7987,7988,7992,7994,7995,7996,7997,7999,8000,8001,8005,8006,8007,8008,8009,8016,8020,8026,8032,8033,8052,8053,8054,8055,8060,8065,8067,8072,8073,8081,8089,8090,8095,8100,8101,8102,8104,8106,8111,8112,8117,8128,8129,8130,8157,8159,8160,8161,8165,8169,8174,8177,8178,8179,8183,8187,8189,8190,8191,8192,8194,8195,8202,8203,8205,8215,8216,8219,8220,8223,8228,8235,8236,8238,8242,8253,8256,8275,8279,8281,8286,8289,8292,8301,8307,8317,8322,8327,8332,8333,8336,8339,8340,8346,8363,8370,8371,8374,8375,8376,8378,8382,8391,8393,8395,8396,8403,8404,8407,8409,8410,8411,8415,8419,8421,8424,8425,8430,8434,8437,8440,8442,8444,8445,8447,8449,8451,8452,8456,8458,8459,8460,8461,8462,8465,8471,8474,8478,8479,8482,8487,8496,8499,8506,8510,8514,8518,8521,8527,8530,8541,8546,8548,8549,8557,8559,8562,8564,8565,8566,8567,8569,8581,8585,8587,8588,8591,8592,8594,8596,8598,8661,8668,8669,8694,8697,8702,8711,8716,8725,8726,8746,8747,8754,8758,8762,8765,8766,8773,8774,8775,8779,8781,8794,8796,8797,8801,8802,8808,8813,8814,8822,8824,8827,8828,8829,8830,8835,8837,8842,8844,8846,8856,8857,8863,8864,8872,8873,8877,8878,8881,8883,8884,8885,8886,8887,8890,8894,8898,8908,8918,8937,8941,8942,8951,8952,8953,8954,8963,8974,8975,8976,8979,8982,8985,8989,8990,8994,9000,9001,9003,9005,9006,9009,9010,9011,9012,9013,9014,9015,9016,9018,9019,9021,9023,9024,9025,9026,9028,9029,9031,9032,9033,9035,9036,9038,9041,9042,9043,9044,9048,9049,9051,9052,9053,9054,9055,9056,9057,9058,9060,9061,9063,9064,9066,9070,9071,9072,9074,9075,9076,9077,9081,9082,9083,9084,9085,9086,9088,9089,9090,9092,9093,9103,9106,9110,9115,9118,9119,9121,9131,9133,9135,9138,9140,9141,9142,9144,9145,9146,9149,9150,9153,9155,9157,9159,9160,9161,9163,9164,9166,9169,9179,9182,9183,9184,9187,9188,9189,9193,9194,9195,9196,9198,9201,9204,9205,9206,9207,9209,9210,9215,9216,9225,9226,9227,9228,9232,9233,9234,9236,9237,9238,9239,9240,9242,9244,9247,9252,9254,9256,9261,9262,9269,9271,9272,9275,9276,9278,9279,9280,9283,9285,9288,9290,9295,9296,9297,9298,9302,9303,9305,9307,9308,9309,9310,9313,9315,9316,9317,9318,9320,9322,9326,9333,9334,9336,9337,9344,9351,9353,9354,9356,9365,9367,9372,9379,9388,9390,9405,9412,9417,9418,9427,9430,9436,9442,9444,9452,9455,9459,9462,9466,9469,9470,9473,9476,9477,9493,9494,9496,9497,9505,9511,9518,9519,9525,9526,9532,9533,9535,9537,9539,9540,9549,9550,9551,9554,9556,9564,9565,9566,9570,9573,9578,9579,9585,9587,9590,9603,9620,9650,9651,9663,9667,9673,9675,9684,9686,9690,9693,9696,9709,9714,9717,9719,9720,9722,9724,9728,9731,9732,9733,9739,9745,9746,9750,9756,9771,9783,9792,9793,9798,9803,9808,9810,9812,9814,9815,9817,9822,9823,9824,9826,9827,9829,9834,9838,9839,9852,9854,9855,9862,9865,9868,9869,9873,9877,9879,9882,9883,9885,9896,9899,9901,9902,9905,9907,9911,9920,9921,9924,9928,9931,9934,9937,9940,9941,9943,9946,9949,9951,9953,9956,9959,9961,9966,9973,9974,9976,9977,9979,9980,9981,9982,9985,9991,9992,9994,9995,9996,9997,9998,10002,10003,10005,10006,10009,10010,10011,10012,10016,10017,10019,10020,10021,10024,10027,10028,10029,10030,10031,10036,10038,10040,10041,10042,10043,10045,10046,10050,10059,10061,10063,10065,10067,10071,10072,10073,10077,10081,10082,10089,10094,10101,10107,10109,10111,10113,10115,10116,10117,10118,10121,10122,10123,10126,10127,10128,10130,10131,10132,10134,10135,10136,10139,10140,10144,10149,10150,10158,10160,10161,10162,10163,10164,10165,10170,10172,10173,10175,10176,10177,10178,10180,10181,10182,10183,10184,10185,10187,10189,10190,10191,10192,10193,10197,10202,10204,10205,10206,10207,10209,10211,10215,10221,10226,10232,10233,10235,10236,10237,10238,10241,10244,10247,10250,10264,10295,10313,10315,10362,10395,10403,10407,10418,10426,10434,10453,10464,10485,10503,10519,10549,10617,10666,10670,10672,10683,10684,10690,10691,10735,10740,10751,10766,10770,10774,10778,10790,10794,10806,10821,10832,10836,10852,10859,10860,10861,10864,10865,10868,10869,10871,10872,10873,10874,10876,10883,10884,10886,10896,10897,10900,10901,10903,10912,10916,10921,10923,10929,10942,10951,10953,10958,10963,10966,10975,10977,10988,11034,11103,11137,11140,11155,11180,11183,11189,11191,11194,11197,11199,11200,11205,11206,11207,11209,11214,11216,11217,11218,11219,11220,11223,11225,11226,11228,11230,11233,11244,11257,11258,11259,11265,11269,11273,11274,11278,11286,11287,11290,11292,11293,11297,11298,11299,11300,11301,11302,11303,11307,11309,11311,11313,11314,11315,11316,11318,11319,11320,11321,11330,11331,11334,11338,11341,11342,11343,11344,11345,11346,11347,11348,11350,11352,11353,11354,11357,11358,11365,11366,11367,11368,11369,11370,11372,11373,11374,11376,11377,11387,11391,11397,11399,11401,11403,11404,11405,11407,11410,11413,11424,11427,11429,11440,11441,11442,11446,11450,11457,11461,11488,11498,11503,11506,11513,11515,11523,11525,11533,11542,11544,11554,11555,11557,11558,11566,11572,11586,11597,11598,11621,11630,11631,11636,11640,11650,11651,11653,11659,11660,11664,11665,11674,11699,11707,11708,11713,11714,11717,11719,11722,11725,11731,11736,11755,11757,11767,11775,11779,11793,11799,11807,11810,11823,11834,11835,11841,11844,11873,11875,11878,11882,11884,11889,11893,11906,11910,11911,11912,11915,11916,11917,11919,11923,11927,11930,11937,11942,11943,11944,11949,11954,11955,11956,11957,11958,11959,11961,11966,11969,11984,11986,11987,11990,12001,12006,12007,12016,12018,12019,12020,12021,12023,12028,12029,12088,12090,12095,12109,12113,12179,12184,12200,12248,12260,12266,12270,12298,12299,12302,12303,12304,12305,12306,12310,12312,12314,12315,12317,12319,12320,12324,12325,12326,12352,12360,12362,12366,12370,12371,12374,12379,12382,12384,12385,12386,12388,12391,12393,12394,12395,12396,12397,12399,12400,12401,12402,12404,12409,12412,12415,12417,12421,12426,12483,12485,12492,12494,12496,12497,12505,12507,12508,12517,12518,12523,12526,12528,12529,12530,12534,12537,12540,12543,12545,12546,12547,12548,12578,12579,12591,12625,12672,12678,12685,12688,12690,12693,12704,12711,12714,12717,12718,12720,12721,12722,12725,12728,12730,12734,12737,12739,12744,12748,12749,12750,12751,12753,12759,12763,12765,12767,12768,12769,12770,12773,12778,12779,12781,12783,12784,12787,12790,12791,12795,12797,12799,12800,12801,12802,12803,12804,12806,12807,12812,12815,12816,12817,12819,12820,12822,12823,12824,12825,12826,12828,12834,12835,12837,12847,12849,12850,12852,12854,12856,12857,12859,12865,12868,12879,12880,12881,12895,12927,12929,12938,12949,12956,12982,13043,13056,13066,13068,13105,13134,13138,13221,13231,13324,13404,13405,13492,13536,13557,13558,13631,13702,13710,13760,13764,13781,13786,13816,13840,13864,13879,13931,13932,13933,13940,13942,13943,13963,14013,14015,14047,14070,14095,14099,14245,14283,14338,14350,14378,14388,14418,14421,14504,14529,14550,14551,14622,14629,14642,14751,14761,14784,14853,14887,14889,14893,14939,14961,14995,14996,14999,15116,15117,15118,15124,15155,15156,15181,15191,15197,15213,15253,15262,15293,15313,15347,15377,15443,15463,15465,15477,15587,15588,15611,15615,15632,15685,15689,15701,15766,15771,15811,15833,15838,15936,15937,15945,15946,15947,15961,15983,16056,16126,16153,16181,16193,16254,16259,16265,16267,16313,16316,16317,16338,16347,16360,16375,16448,16467,16547,16881,16985,17043,17045,17108,17114,17120,17141,17285,17325,17328,17331,17336,17343,17345,17368,17369,17370,17373,17374,17381,17382,17383,17384,17390,17394,17396,17397,17398,17401,17402,17412,17415,17416,17418,17419,17427,17429,17431,17442,17447,17448,17449,17450,17451,17455,17457,17458,17461,17462,17465,17467,17468,17469,17470,17471,17472,17473,17474,17475,17476,17477,17478,17479,17481,17484,17485,17507,17508,17518,17524,17525,17529,17530,17538,17655,17683,17684,17686,17693,17705,17707,17744,17767,17780,17782,17798,17799,17800,17807,17819,17825,17827,17830,17832,17860,17861,17894,17895,17900,17907,17923,17931,17952,17982,17991,17992,17998,17999,18004,18019,18020,18021,18029,18032,18035,18041,18045,18067,18077,18082,18085,18097,18129,18139,18152,18165,18168,18176,18178,18201,18204,18205,18215,18227,18230,18240,18241,18249,18254,18256,18257,18259,18292,18333,18334,18336,18337,18341,18350,18352,18354,18356,18358,18362,18363,18364,18369,18373,18374,18381,18386,18393,18397,18398,18414,18416,18418,18419,18420,18459,18460,18473,18509,18515,18562,18596,18611,18612,18614,18639,18643,18645,18659,18663,18672,18686,18690,18696,18710,18711,18723,18732,18741,18750,18751,18757,18758,18788,18797,18821,18833,18856,18862,18873,18896,18904,18905,18907,18909,18913,18915,18917,18923,18926,18935,18941,18942,18944,18947,18948,18953,18962,18963,18978,18993,19001,19008,19010,19020,19067,19075,19077,19080,19087,19107,19120,19126,19128,19129,19130,19131,19133,19134,19142,19144,19147,19149,19150,19155,19156,19170,19184,19188,19189,19191,19202,19226,19227,19229,19230,19231,19234,19236,19237,19238,19243,19263,19265,19270,19271,19272,19273,19276,19277,19291,19294,19309,19317,19319,19346,19347,19349,19350,19351,19361,19362,19364,19376,19379,19385,19388,19392,19394,19409,19410,19411,19412,19416,19418,19420,19421,19422,19424,19428,19436,19437,19438,19439,19441,19444,19463,19465,19466,19479,19480,19481,19482,19487,19490,19491,19492,19509,19511,19512,19518,19523,19524,19526,19527,19529,19532,19533,19534,19535,19536,19539,19542,19547,19549,19550,19551,19556,19560,19561,19563,19574,19575,19576,19577,19580,19583,19584,19585,19591,19601,19604,19605,19607,19609,19616,19619,19621,19624,19625,19626,19627,19636,19638,19639,19642,19643,19646,19649,19651,19652,19653,19654,19655,19657,19658,19660,19666,19667,19668,19669,19670,19671,19676,19678,19719,19723,19724,19728,19732,19733,19734,19738,19739,19740,19750,19751,19753,19754,19755,19760,19762,19763,19765,19766,19767,19768,19771,19773,19774,19780,19783,19784,19785,19789,19791,19797,19799,19802,19806,19809,19811,19812,19815,19816,19817,19819,19824,19827,19830,19831,19833,19837,19838,19839,19840,19841,19844,19845,19846,19848,19849,19850,19855,19856,19865,19869,19870,19873,19874,19875,19876,19893,19896,19901,19904,19909,19911,19914,19915,19916,19917,19922,19923,19927,19932,19933,19935,19940,19942,19944,19945,19946,19948,19951,19952,19953,19954,19959,19960,19964,19966,19967,19968,19969,19970,19971,19973,19974,19975,19977,19978,19979,19980,19981,19983,19984,19985,19986,19989,19991,19992,19993,19995,19996,19997,19998,20002,20003,20006,20007,20008,20009,20010,20011,20012,20013,20014,20018,20019,20020,20022,20023,20024,20026,20027,20031,20032,20033,20034,20035,20037,20040,20041,20044,20045,20046,20047,20058,20073,20074,20088,20093,20139,20146,20147,20155,20161,20163,20167,20173,20181,20184,20186,20187,20195,20203,20210,20211,20224,20236,20260,20271,20272,20276,20278,20283,20290,20291,20293,20294,20295,20296,20301,20304,20308,20317,20320,20322,20332,20349,20354,20440,20476,20480,20484,20489,20490,20492,20494,20495,20500,20503,20505,20508,20512,20522,20525,20533,20538,20539,20542,20552,20553,20555,20560,20561,20562,20572,20574,20576,20592,20607,20608,20610,20613,20616,20617,20618,20621,20624,20625,20628,20633,20634,20640,20643,20644,20648,20653,20655,20662,20667,20670,20671,20672,20678,20679,20680,20682,20687,20690,20691,20692,20694,20696,20705,20707,20708,20711,20720,20722,20727,20728,20735,20736,20738,20753,20754,20756,20760,20776,20779,20781,20782,20798,20799,20805,20807,20810,20812,20813,20814,20816,20821,20825,20828,20841,20844,20845,20863,20867,20870,20871,20873,20875,20876,20877,20880,20901,20904,20906,20908,20909,20910,20916,20917,20921,20923,20924,20927,20929,20931,20936,20937,20938,20948,20969,20971,20973,20974,20980,20989,20990,21014,21016,21025,21026,21027,21029,21035,21037,21044,21047,21062,21074,21077,21078,21080,21102,21106,21117,21118,21119,21148,21182,21186,21196,21201,21203,21239,21240,21244,21257,21271,21272,21275,21277,21278,21293,21296,21307,21309,21315,21325,21334,21355,21356,21359,21363,21364,21366,21377,21379,21380,21381,21382,21387,21389,21390,21393,21395,21404,21407,21415,21416,21417,21418,21420,21422,21433,21442,21445,21447,21452,21456,21465,21467,21469,21471,21474,21477,21478,21481,21483,21497,21499,21517,21519,21521,21522,21523,21526,21532,21535,21538,21541,21548,21551,21553,21555,21559,21560,21563,21564,21565,21566,21567,21573,21575,21576,21579,21580,21583,21591,21594,21604,21608,21609,21611,21612,21613,21614,21618,21621,21624,21643,21659,21662,21664,21667,21673,21674,21675,21679,21684,21688,21692,21693,21695,21701,21702,21710,21711,21713,21724,21731,21741,21745,21747,21748,21750,21755,21757,21963,21967,21980,21981,21982,21987,21989,21990,21994,21995,21996,21998,21999,22000,22001,22002,22003,22006,22009,22016,22022,22026,22027,22029,22040,22060,22074,22075,22082,22087,22088,22095,22104,22117,22118,22167,22190,22221,22260,22276,22285,22292,22336,22337,22343,22344,22345,22348,22350,22362,22365,22383,22388,22392,22396,22407,22411,22417,22424,22437,22442,22449,22460,22504,22507,22510,22525,22526,22530,22536,22539,22540,22545,22557,22560,22566,22568,22578,22579,22580,22598,22611,22612,22613,22626,22640,22641,22648,22649,22660,22662,22684,22710,22720,22732,22753,22784,22788,22793,22808,22813,22827,22831,22849,22851,22852,22858,22860,22869,22873,22882,22884,22886,22888,22890,22893,22897,22899,22921,22923,22924,22934,22953,22957,22965,22969,22974,22975,22976,22985,22989,22990,22992,22993,22996,22999,23022,23030,23033,23038,23041,23055,23065,23072,23073,23080,23083,23085,23086,23087,23093,23112,23114,23115,23117,23121,23137,23138,23139,23141,23142]]],["+",[484,462,[[0,42,41,0,41,[[1,2,2,0,2],[2,2,2,2,4],[9,1,1,4,5],[12,2,2,5,7],[16,1,1,7,8],[17,1,1,8,9],[18,3,3,9,12],[19,1,1,12,13],[20,1,1,13,14],[21,2,2,14,16],[23,2,2,16,18],[26,2,2,18,20],[27,2,2,20,22],[28,1,1,22,23],[29,1,1,23,24],[30,4,3,24,27],[32,2,2,27,29],[34,1,1,29,30],[38,1,1,30,31],[39,1,1,31,32],[42,2,2,32,34],[43,3,3,34,37],[46,2,2,37,39],[48,1,1,39,40],[49,1,1,40,41]]],[1,29,28,41,69,[[52,1,1,41,42],[54,1,1,42,43],[55,1,1,43,44],[57,1,1,44,45],[58,1,1,45,46],[61,1,1,46,47],[65,1,1,47,48],[67,1,1,48,49],[68,1,1,49,50],[69,1,1,50,51],[70,2,2,51,53],[72,1,1,53,54],[73,1,1,54,55],[74,1,1,55,56],[78,3,2,56,58],[79,4,4,58,62],[81,3,3,62,65],[83,1,1,65,66],[84,1,1,66,67],[85,2,2,67,69]]],[2,42,38,69,107,[[94,2,2,69,71],[95,2,1,71,72],[96,1,1,72,73],[100,6,5,73,78],[103,2,2,78,80],[104,12,10,80,90],[107,2,2,90,92],[109,2,2,92,94],[110,1,1,94,95],[111,3,3,95,98],[112,2,2,98,100],[114,2,2,100,102],[115,1,1,102,103],[116,4,4,103,107]]],[3,22,22,107,129,[[122,1,1,107,108],[125,1,1,108,109],[127,1,1,109,110],[130,1,1,110,111],[131,1,1,111,112],[132,1,1,112,113],[133,1,1,113,114],[134,1,1,114,115],[135,2,2,115,117],[136,2,2,117,119],[137,1,1,119,120],[138,1,1,120,121],[139,1,1,121,122],[141,1,1,122,123],[146,1,1,123,124],[148,1,1,124,125],[149,1,1,125,126],[151,3,3,126,129]]],[4,55,49,129,178,[[153,1,1,129,130],[154,2,2,130,132],[155,2,2,132,134],[156,4,4,134,138],[158,1,1,138,139],[159,1,1,139,140],[161,1,1,140,141],[163,5,4,141,145],[164,5,4,145,149],[166,3,2,149,151],[170,2,2,151,153],[171,1,1,153,154],[172,2,2,154,156],[173,1,1,156,157],[174,3,2,157,159],[175,1,1,159,160],[176,1,1,160,161],[179,1,1,161,162],[180,5,5,162,167],[181,1,1,167,168],[182,4,4,168,172],[183,4,3,172,175],[184,4,3,175,178]]],[5,19,18,178,196,[[187,5,5,178,183],[188,3,2,183,185],[189,2,2,185,187],[191,1,1,187,188],[193,1,1,188,189],[194,1,1,189,190],[195,1,1,190,191],[196,3,3,191,194],[203,1,1,194,195],[206,1,1,195,196]]],[6,11,11,196,207,[[212,1,1,196,197],[213,1,1,197,198],[214,1,1,198,199],[217,1,1,199,200],[221,2,2,200,202],[226,2,2,202,204],[229,2,2,204,206],[230,1,1,206,207]]],[7,7,7,207,214,[[232,3,3,207,210],[233,2,2,210,212],[234,2,2,212,214]]],[8,20,19,214,233,[[238,1,1,214,215],[241,1,1,215,216],[244,2,2,216,218],[245,2,2,218,220],[249,2,2,220,222],[253,1,1,222,223],[254,1,1,223,224],[257,1,1,224,225],[259,1,1,225,226],[261,3,2,226,228],[262,1,1,228,229],[264,1,1,229,230],[265,3,3,230,233]]],[9,21,20,233,253,[[268,1,1,233,234],[269,2,2,234,236],[272,1,1,236,237],[273,1,1,237,238],[274,3,3,238,241],[277,1,1,241,242],[278,2,1,242,243],[279,2,2,243,245],[281,2,2,245,247],[283,2,2,247,249],[285,2,2,249,251],[287,2,2,251,253]]],[10,27,27,253,280,[[292,1,1,253,254],[293,1,1,254,255],[294,1,1,255,256],[297,3,3,256,259],[298,6,6,259,265],[299,1,1,265,266],[300,1,1,266,267],[301,1,1,267,268],[304,2,2,268,270],[306,2,2,270,272],[307,2,2,272,274],[308,2,2,274,276],[310,2,2,276,278],[311,2,2,278,280]]],[11,27,26,280,306,[[313,4,3,280,283],[318,2,2,283,285],[320,2,2,285,287],[322,2,2,287,289],[324,1,1,289,290],[328,1,1,290,291],[329,4,4,291,295],[330,3,3,295,298],[333,3,3,298,301],[334,2,2,301,303],[335,2,2,303,305],[337,1,1,305,306]]],[12,9,9,306,315,[[338,1,1,306,307],[350,1,1,307,308],[354,3,3,308,311],[355,3,3,311,314],[356,1,1,314,315]]],[13,13,13,315,328,[[367,2,2,315,317],[372,3,3,317,320],[373,1,1,320,321],[374,1,1,321,322],[375,1,1,322,323],[381,1,1,323,324],[385,1,1,324,325],[387,1,1,325,326],[400,2,2,326,328]]],[14,1,1,328,329,[[412,1,1,328,329]]],[15,3,3,329,332,[[414,2,2,329,331],[416,1,1,331,332]]],[16,9,8,332,340,[[426,2,2,332,334],[427,1,1,334,335],[429,3,2,335,337],[432,1,1,337,338],[433,2,2,338,340]]],[17,4,4,340,344,[[467,1,1,340,341],[469,1,1,341,342],[472,1,1,342,343],[477,1,1,343,344]]],[18,6,6,344,350,[[478,1,1,344,345],[487,1,1,345,346],[581,1,1,346,347],[589,1,1,347,348],[592,1,1,348,349],[612,1,1,349,350]]],[19,2,2,350,352,[[644,1,1,350,351],[648,1,1,351,352]]],[20,15,14,352,366,[[660,2,2,352,354],[661,2,2,354,356],[662,1,1,356,357],[665,2,2,357,359],[666,2,2,359,361],[667,3,2,361,363],[670,3,3,363,366]]],[22,6,6,366,372,[[684,1,1,366,367],[698,1,1,367,368],[714,1,1,368,369],[721,1,1,369,370],[725,1,1,370,371],[731,1,1,371,372]]],[23,46,44,372,416,[[745,1,1,372,373],[752,1,1,373,374],[757,1,1,374,375],[760,2,2,375,377],[763,2,2,377,379],[766,4,4,379,383],[767,4,3,383,386],[768,1,1,386,387],[769,2,2,387,389],[771,1,1,389,390],[773,8,7,390,397],[774,1,1,397,398],[775,1,1,398,399],[776,1,1,399,400],[779,2,2,400,402],[784,2,2,402,404],[785,1,1,404,405],[786,3,3,405,408],[787,1,1,408,409],[788,3,3,409,412],[789,1,1,412,413],[790,1,1,413,414],[793,1,1,414,415],[794,1,1,415,416]]],[25,39,37,416,453,[[802,2,2,416,418],[805,1,1,418,419],[807,2,2,419,421],[809,1,1,421,422],[810,2,2,422,424],[812,1,1,424,425],[813,2,2,425,427],[817,1,1,427,428],[818,2,1,428,429],[821,1,1,429,430],[824,2,2,430,432],[827,1,1,432,433],[830,1,1,433,434],[832,1,1,434,435],[835,2,2,435,437],[836,1,1,437,438],[837,5,5,438,443],[838,2,2,443,445],[840,1,1,445,446],[843,1,1,446,447],[844,1,1,447,448],[845,1,1,448,449],[847,3,3,449,452],[848,2,1,452,453]]],[26,1,1,453,454,[[858,1,1,453,454]]],[27,1,1,454,455,[[866,1,1,454,455]]],[28,2,2,455,457,[[877,1,1,455,456],[878,1,1,456,457]]],[29,1,1,457,458,[[882,1,1,457,458]]],[31,1,1,458,459,[[889,1,1,458,459]]],[33,1,1,459,460,[[901,1,1,459,460]]],[35,1,1,460,461,[[908,1,1,460,461]]],[38,1,1,461,462,[[926,1,1,461,462]]]],[41,49,66,78,248,321,332,411,443,469,484,486,508,530,563,565,596,633,737,771,786,788,803,856,874,886,889,974,979,1038,1171,1175,1306,1309,1325,1328,1340,1424,1426,1501,1518,1584,1643,1660,1731,1768,1846,1952,2004,2044,2072,2090,2107,2174,2191,2224,2363,2378,2388,2415,2418,2420,2458,2471,2473,2508,2552,2567,2571,2834,2846,2876,2904,3006,3009,3029,3030,3032,3141,3151,3172,3173,3174,3177,3179,3185,3186,3191,3192,3194,3254,3280,3340,3343,3362,3373,3374,3389,3404,3439,3499,3524,3569,3578,3579,3581,3602,3834,3983,4044,4132,4171,4234,4248,4270,4305,4311,4328,4335,4362,4392,4429,4484,4656,4735,4814,4870,4871,4879,4928,4952,4967,4995,4996,5009,5018,5030,5031,5087,5112,5185,5216,5218,5219,5237,5242,5262,5269,5272,5300,5316,5390,5403,5407,5445,5447,5461,5494,5499,5520,5529,5588,5632,5648,5658,5673,5674,5704,5709,5711,5724,5726,5732,5741,5744,5805,5808,5809,5858,5860,5866,5867,5869,5876,5888,5897,5910,5949,5984,6028,6053,6075,6089,6091,6289,6378,6560,6569,6623,6698,6853,6865,6975,6979,7047,7050,7076,7134,7140,7143,7151,7158,7176,7190,7279,7349,7397,7401,7423,7425,7519,7555,7681,7709,7790,7844,7910,7926,7938,7971,7982,8000,8009,8067,8111,8117,8165,8189,8215,8219,8223,8275,8292,8322,8339,8404,8409,8461,8462,8541,8549,8581,8592,8773,8827,8872,8941,8942,8982,9003,9006,9023,9024,9029,9032,9060,9086,9142,9225,9233,9285,9290,9334,9336,9351,9353,9436,9444,9469,9476,9537,9539,9549,9675,9690,9728,9732,9812,9823,9855,9966,10003,10006,10012,10016,10031,10036,10046,10130,10134,10135,10158,10162,10172,10173,10241,10264,10770,10869,10871,10876,10896,10900,10903,10912,11205,11206,11290,11293,11319,11346,11357,11370,11503,11586,11636,11954,11958,12260,12314,12325,12370,12714,12717,12737,12765,12773,12815,12824,12834,13631,13710,13781,13932,13942,14047,15588,15811,15833,16181,16881,16985,17336,17343,17373,17381,17383,17450,17455,17461,17472,17477,17485,17524,17525,17529,17780,18035,18336,18509,18612,18723,18953,19156,19273,19347,19351,19411,19421,19463,19466,19480,19481,19487,19492,19512,19533,19542,19549,19605,19642,19649,19653,19654,19658,19660,19666,19678,19723,19768,19830,19841,19948,19953,19966,19979,19981,19997,20002,20018,20027,20033,20045,20073,20163,20173,20476,20484,20542,20572,20576,20607,20625,20633,20671,20692,20696,20805,20841,20924,21029,21037,21102,21196,21240,21325,21334,21359,21379,21380,21381,21389,21393,21417,21418,21471,21565,21579,21611,21673,21675,21679,21688,21995,22167,22343,22350,22417,22539,22710,22827,23112]]],["As",[29,29,[[1,1,1,0,1,[[65,1,1,0,1]]],[2,2,2,1,3,[[93,1,1,1,2],[97,1,1,2,3]]],[3,2,2,3,5,[[117,1,1,3,4],[148,1,1,4,5]]],[4,2,2,5,7,[[154,2,2,5,7]]],[5,3,3,7,10,[[194,1,1,7,8],[197,1,1,8,9],[200,1,1,9,10]]],[6,1,1,10,11,[[225,1,1,10,11]]],[8,2,2,11,13,[[250,1,1,11,12],[259,1,1,12,13]]],[10,1,1,13,14,[[291,1,1,13,14]]],[13,1,1,14,15,[[368,1,1,14,15]]],[17,1,1,15,16,[[464,1,1,15,16]]],[18,1,1,16,17,[[525,1,1,16,17]]],[20,2,2,17,19,[[663,1,1,17,18],[669,1,1,18,19]]],[22,4,4,19,23,[[688,1,1,19,20],[701,1,1,20,21],[730,1,1,21,22],[743,1,1,22,23]]],[23,2,2,23,25,[[777,1,1,23,24],[786,1,1,24,25]]],[25,1,1,25,26,[[816,1,1,25,26]]],[26,1,1,26,27,[[858,1,1,26,27]]],[29,1,1,27,28,[[881,1,1,27,28]]],[37,1,1,28,29,[[918,1,1,28,29]]]],[1981,2805,2951,3623,4749,4960,4967,6033,6122,6192,6940,7593,7852,8754,11214,13536,14642,17412,17518,17860,18082,18710,18905,19797,19993,20760,22001,22407,22990]]],["Because",[6,6,[[8,1,1,0,1,[[263,1,1,0,1]]],[10,1,1,1,2,[[305,1,1,1,2]]],[18,1,1,2,3,[[532,1,1,2,3]]],[20,1,1,3,4,[[666,1,1,3,4]]],[23,1,1,4,5,[[764,1,1,4,5]]],[28,1,1,5,6,[[878,1,1,5,6]]]],[7960,9254,14751,17469,19439,22348]]],["For",[7,7,[[3,1,1,0,1,[[143,1,1,0,1]]],[5,1,1,1,2,[[190,1,1,1,2]]],[6,1,1,2,3,[[219,1,1,2,3]]],[17,1,1,3,4,[[444,1,1,3,4]]],[18,1,1,4,5,[[616,1,1,4,5]]],[23,1,1,5,6,[[776,1,1,5,6]]],[32,1,1,6,7,[[898,1,1,6,7]]]],[4568,5933,6771,13068,16259,19734,22660]]],["How",[4,4,[[4,1,1,0,1,[[177,1,1,0,1]]],[17,1,1,1,2,[[472,1,1,1,2]]],[18,2,2,2,4,[[555,1,1,2,3],[609,1,1,3,4]]]],[5565,13786,15156,16153]]],["If",[4,4,[[0,1,1,0,1,[[42,1,1,0,1]]],[2,1,1,1,2,[[109,1,1,1,2]]],[9,1,1,2,3,[[273,1,1,2,3]]],[10,1,1,3,4,[[298,1,1,3,4]]]],[1304,3331,8194,9016]]],["Like",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19077]]],["THAT",[1,1,[[1,1,1,0,1,[[52,1,1,0,1]]]],[1593]]],["That",[4,4,[[5,1,1,0,1,[[190,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]],[16,1,1,2,3,[[426,1,1,2,3]]],[18,1,1,3,4,[[621,1,1,3,4]]]],[5917,8026,12721,16317]]],["Though",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17470]]],["What",[2,2,[[0,1,1,0,1,[[40,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]]],[1223,8482]]],["When",[9,9,[[2,1,1,0,1,[[93,1,1,0,1]]],[4,1,1,1,2,[[170,1,1,1,2]]],[5,1,1,2,3,[[190,1,1,2,3]]],[8,1,1,3,4,[[247,1,1,3,4]]],[9,1,1,4,5,[[286,1,1,4,5]]],[18,1,1,5,6,[[572,1,1,5,6]]],[20,2,2,6,8,[[663,1,1,6,7],[666,1,1,7,8]]],[27,1,1,8,9,[[868,1,1,8,9]]]],[2817,5406,5931,7468,8567,15463,17401,17474,22190]]],["Where",[2,2,[[7,1,1,0,1,[[232,1,1,0,1]]],[20,1,1,1,2,[[666,1,1,1,2]]]],[7144,17462]]],["Whereas",[1,1,[[22,1,1,0,1,[[715,1,1,0,1]]]],[18373]]],["Wherein",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12828]]],["Wherewith",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15377]]],["Which",[21,21,[[2,2,2,0,2,[[96,2,2,0,2]]],[3,1,1,2,3,[[143,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[14,2,2,4,6,[[404,1,1,4,5],[411,1,1,5,6]]],[17,4,4,6,10,[[450,1,1,6,7],[457,1,1,7,8],[471,1,1,8,9],[473,1,1,9,10]]],[18,5,5,10,15,[[535,1,1,10,11],[543,1,1,11,12],[555,1,1,12,13],[582,1,1,13,14],[617,1,1,14,15]]],[19,1,1,15,16,[[633,1,1,15,16]]],[20,1,1,16,17,[[665,1,1,16,17]]],[22,1,1,17,18,[[708,1,1,17,18]]],[23,3,3,18,21,[[755,1,1,18,19],[771,1,1,19,20],[776,1,1,20,21]]]],[2915,2917,4571,5796,12029,12248,13221,13405,13764,13816,14784,14887,15116,15615,16265,16547,17457,18227,19230,19616,19751]]],["Who",[6,6,[[10,1,1,0,1,[[298,1,1,0,1]]],[16,1,1,1,2,[[427,1,1,1,2]]],[18,3,3,2,5,[[489,1,1,2,3],[541,1,1,3,4],[560,1,1,4,5]]],[32,1,1,5,6,[[895,1,1,5,6]]]],[9009,12730,14070,14853,15253,22611]]],["Whom",[3,3,[[17,2,2,0,2,[[444,1,1,0,1],[454,1,1,1,2]]],[22,1,1,2,3,[[697,1,1,2,3]]]],[13066,13324,18029]]],["Whose",[8,8,[[17,3,3,0,3,[[440,1,1,0,1],[443,1,1,1,2],[474,1,1,2,3]]],[18,1,1,3,4,[[621,1,1,3,4]]],[19,1,1,4,5,[[629,1,1,4,5]]],[22,1,1,5,6,[[683,1,1,5,6]]],[25,1,1,6,7,[[833,1,1,6,7]]],[37,1,1,7,8,[[921,1,1,7,8]]]],[12956,13043,13840,16313,16448,17767,21271,23033]]],["Whoso",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5410]]],["Whosoever",[1,1,[[8,1,1,0,1,[[246,1,1,0,1]]]],[7452]]],["Yea",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7580]]],["according",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5195]]],["after",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6971]]],["alike",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17477]]],["any",[1,1,[[9,1,1,0,1,[[275,1,1,0,1]]]],[8228]]],["as",[437,422,[[0,31,29,0,29,[[6,2,2,0,2],[7,1,1,2,3],[11,1,1,3,4],[16,1,1,4,5],[17,2,2,5,7],[20,3,2,7,9],[21,1,1,9,10],[23,2,2,10,12],[25,2,1,12,13],[26,5,5,13,18],[31,1,1,18,19],[33,2,2,19,21],[39,1,1,21,22],[40,3,3,22,25],[42,1,1,25,26],[43,1,1,26,27],[46,1,1,27,28],[49,1,1,28,29]]],[1,46,46,29,75,[[50,1,1,29,30],[51,1,1,30,31],[56,5,5,31,36],[57,3,3,36,39],[58,3,3,39,42],[59,1,1,42,43],[60,1,1,43,44],[61,4,4,44,48],[62,1,1,48,49],[65,1,1,49,50],[66,1,1,50,51],[70,1,1,51,52],[72,1,1,52,53],[76,1,1,53,54],[81,1,1,54,55],[82,1,1,55,56],[83,3,3,56,59],[87,1,1,59,60],[88,7,7,60,67],[89,8,8,67,75]]],[2,26,26,75,101,[[93,4,4,75,79],[97,7,7,79,86],[98,3,3,86,89],[99,3,3,89,92],[103,2,2,92,94],[105,2,2,94,96],[107,1,1,96,97],[113,3,3,97,100],[116,1,1,100,101]]],[3,37,37,101,138,[[118,2,2,101,103],[119,3,3,103,106],[120,1,1,106,107],[121,1,1,107,108],[124,2,2,108,110],[127,1,1,110,111],[130,3,3,111,114],[131,2,2,114,116],[132,2,2,116,118],[133,1,1,118,119],[136,2,2,119,121],[137,1,1,121,122],[138,1,1,122,123],[139,2,2,123,125],[142,1,1,125,126],[143,4,4,126,130],[147,4,4,130,134],[148,2,2,134,136],[149,1,1,136,137],[152,1,1,137,138]]],[4,51,50,138,188,[[153,5,5,138,143],[154,3,3,143,146],[155,2,2,146,148],[156,2,2,148,150],[157,3,3,150,153],[158,4,4,153,157],[160,1,1,157,158],[161,2,2,158,160],[162,1,1,160,161],[163,1,1,161,162],[164,2,2,162,164],[165,1,1,164,165],[167,1,1,165,166],[168,1,1,166,167],[170,1,1,167,168],[171,2,2,168,170],[172,1,1,170,171],[174,1,1,171,172],[175,1,1,172,173],[176,1,1,173,174],[178,3,3,174,177],[179,1,1,177,178],[180,4,4,178,182],[181,2,1,182,183],[182,1,1,183,184],[183,2,2,184,186],[184,1,1,186,187],[186,1,1,187,188]]],[5,39,37,188,225,[[187,3,3,188,191],[189,1,1,191,192],[190,5,4,192,196],[192,1,1,196,197],[194,4,4,197,201],[195,1,1,201,202],[196,6,5,202,207],[197,3,3,207,210],[199,4,4,210,214],[200,5,5,214,219],[207,1,1,219,220],[208,1,1,220,221],[209,4,4,221,225]]],[6,16,15,225,240,[[211,2,2,225,227],[212,3,2,227,229],[213,1,1,229,230],[216,3,3,230,233],[217,2,2,233,235],[218,2,2,235,237],[219,1,1,237,238],[225,1,1,238,239],[226,1,1,239,240]]],[7,1,1,240,241,[[232,1,1,240,241]]],[8,14,14,241,255,[[236,1,1,241,242],[237,1,1,242,243],[239,1,1,243,244],[241,1,1,244,245],[251,1,1,245,246],[252,1,1,246,247],[255,3,3,247,250],[258,1,1,250,251],[259,1,1,251,252],[261,1,1,252,253],[263,1,1,253,254],[264,1,1,254,255]]],[9,13,13,255,268,[[269,1,1,255,256],[271,1,1,256,257],[273,3,3,257,260],[276,1,1,260,261],[279,1,1,261,262],[281,1,1,262,263],[282,2,2,263,265],[283,1,1,265,266],[285,1,1,266,267],[290,1,1,267,268]]],[10,25,23,268,291,[[291,1,1,268,269],[292,3,3,269,272],[293,2,2,272,274],[295,2,2,274,276],[298,4,4,276,280],[299,3,3,280,283],[301,3,2,283,285],[302,1,1,285,286],[304,2,2,286,288],[310,1,1,288,289],[311,3,2,289,291]]],[11,18,18,291,309,[[314,1,1,291,292],[319,3,3,292,295],[320,2,2,295,297],[322,1,1,297,298],[326,2,2,298,300],[327,1,1,300,301],[329,2,2,301,303],[333,3,3,303,306],[335,1,1,306,307],[336,1,1,307,308],[337,1,1,308,309]]],[12,9,9,309,318,[[351,1,1,309,310],[352,1,1,310,311],[354,4,4,311,315],[359,1,1,315,316],[361,1,1,316,317],[366,1,1,317,318]]],[13,14,14,318,332,[[372,3,3,318,321],[373,2,2,321,323],[375,1,1,323,324],[376,1,1,324,325],[387,2,2,325,327],[389,1,1,327,328],[395,1,1,328,329],[396,1,1,329,330],[399,1,1,330,331],[401,1,1,331,332]]],[14,1,1,332,333,[[406,1,1,332,333]]],[15,2,2,333,335,[[417,1,1,333,334],[418,1,1,334,335]]],[16,7,4,335,339,[[427,2,1,335,336],[431,1,1,336,337],[434,4,2,337,339]]],[17,3,3,339,342,[[439,1,1,339,340],[464,1,1,340,341],[477,1,1,341,342]]],[18,1,1,342,343,[[510,1,1,342,343]]],[19,1,1,343,344,[[651,1,1,343,344]]],[20,1,1,344,345,[[667,1,1,344,345]]],[22,13,12,345,357,[[687,2,2,345,347],[688,1,1,347,348],[689,1,1,348,349],[692,2,1,349,350],[698,1,1,350,351],[703,1,1,351,352],[709,1,1,352,353],[729,1,1,353,354],[733,1,1,354,355],[744,2,2,355,357]]],[23,29,26,357,383,[[746,1,1,357,358],[751,2,2,358,360],[756,1,1,360,361],[757,2,2,361,363],[759,4,1,363,364],[761,1,1,364,365],[762,1,1,365,366],[763,1,1,366,367],[767,1,1,367,368],[770,1,1,368,369],[771,1,1,369,370],[775,1,1,370,371],[776,1,1,371,372],[783,1,1,372,373],[784,1,1,373,374],[786,1,1,374,375],[787,1,1,375,376],[788,3,3,376,379],[792,2,2,379,381],[794,2,2,381,383]]],[24,1,1,383,384,[[797,1,1,383,384]]],[25,17,17,384,401,[[802,1,1,384,385],[813,2,2,385,387],[817,3,3,387,390],[821,1,1,390,391],[824,1,1,391,392],[825,2,2,392,394],[838,2,2,394,396],[842,1,1,396,397],[844,1,1,397,398],[847,2,2,398,400],[849,1,1,400,401]]],[26,3,3,401,404,[[850,1,1,401,402],[858,1,1,402,403],[861,1,1,403,404]]],[27,1,1,404,405,[[870,1,1,404,405]]],[28,1,1,405,406,[[877,1,1,405,406]]],[29,3,3,406,409,[[880,1,1,406,407],[883,1,1,407,408],[887,1,1,408,409]]],[30,2,2,409,411,[[888,2,2,409,411]]],[31,1,1,411,412,[[889,1,1,411,412]]],[32,3,3,412,415,[[895,2,2,412,414],[897,1,1,414,415]]],[36,1,1,415,416,[[909,1,1,415,416]]],[37,5,5,416,421,[[911,1,1,416,417],[917,2,2,417,419],[918,1,1,419,420],[924,1,1,420,421]]],[38,1,1,421,422,[[927,1,1,421,422]]]],[168,175,204,302,420,429,457,514,517,561,613,642,721,731,736,741,746,757,959,992,1002,1194,1208,1216,1249,1307,1325,1431,1512,1549,1568,1691,1695,1698,1705,1707,1725,1729,1737,1754,1766,1777,1787,1812,1841,1844,1848,1866,1878,1971,1993,2099,2159,2280,2457,2484,2500,2506,2514,2654,2665,2669,2671,2685,2693,2695,2707,2722,2726,2728,2730,2732,2734,2736,2739,2815,2816,2826,2830,2921,2926,2930,2934,2938,2946,2948,2960,2963,2974,2982,2992,2995,3133,3142,3216,3235,3279,3465,3466,3469,3584,3675,3691,3708,3734,3743,3792,3796,3942,3961,4036,4125,4127,4136,4167,4189,4234,4241,4255,4320,4338,4374,4383,4418,4446,4493,4565,4567,4576,4577,4671,4695,4705,4711,4743,4745,4816,4889,4903,4911,4913,4923,4936,4939,4950,4952,4977,4981,5009,5037,5065,5069,5085,5089,5102,5105,5111,5142,5160,5182,5191,5233,5260,5261,5289,5325,5352,5386,5414,5425,5444,5496,5523,5533,5581,5584,5585,5588,5620,5640,5660,5674,5692,5717,5731,5732,5808,5848,5854,5856,5868,5900,5918,5922,5924,5933,5971,6004,6007,6008,6035,6058,6065,6092,6094,6103,6104,6116,6119,6127,6160,6162,6168,6187,6189,6194,6197,6198,6199,6389,6430,6465,6468,6470,6475,6516,6529,6560,6567,6570,6681,6690,6691,6699,6711,6727,6752,6787,6939,6958,7135,7240,7256,7306,7337,7602,7638,7743,7761,7772,7821,7843,7929,7959,7975,8090,8157,8190,8195,8205,8242,8346,8415,8445,8449,8461,8514,8711,8747,8794,8801,8808,8822,8830,8883,8890,9005,9010,9038,9042,9053,9055,9056,9119,9146,9163,9228,9233,9442,9462,9477,9570,9714,9717,9724,9745,9746,9808,9899,9901,9934,10006,10024,10122,10132,10139,10192,10215,10237,10790,10806,10864,10872,10876,10886,10975,11034,11189,11292,11298,11313,11341,11342,11373,11407,11630,11631,11659,11799,11834,11930,11984,12113,12394,12409,12744,12803,12857,12865,12938,13557,13931,14388,17108,17477,17830,17832,17861,17900,17952,18032,18129,18254,18686,18750,18942,18944,19001,19133,19134,19265,19271,19277,19317,19379,19388,19418,19511,19583,19609,19719,19773,19935,19944,19977,20009,20023,20027,20040,20088,20093,20181,20184,20332,20480,20687,20691,20810,20812,20821,20931,21025,21074,21078,21404,21407,21551,21594,21662,21667,21713,21750,22000,22082,22221,22343,22392,22437,22504,22525,22526,22545,22611,22612,22648,22852,22884,22965,22975,22989,23073,23137]]],["because",[35,35,[[0,5,5,0,5,[[29,1,1,0,1],[33,2,2,1,3],[38,2,2,3,5]]],[1,1,1,5,6,[[54,1,1,5,6]]],[2,1,1,6,7,[[115,1,1,6,7]]],[3,1,1,7,8,[[136,1,1,7,8]]],[4,1,1,8,9,[[175,1,1,8,9]]],[5,2,2,9,11,[[191,1,1,9,10],[208,1,1,10,11]]],[6,1,1,11,12,[[216,1,1,11,12]]],[8,1,1,12,13,[[261,1,1,12,13]]],[9,1,1,13,14,[[268,1,1,13,14]]],[10,4,4,14,18,[[293,1,1,14,15],[298,1,1,15,16],[301,1,1,16,17],[305,1,1,17,18]]],[11,1,1,18,19,[[329,1,1,18,19]]],[12,1,1,19,20,[[358,1,1,19,20]]],[13,1,1,20,21,[[381,1,1,20,21]]],[18,1,1,21,22,[[596,1,1,21,22]]],[20,4,4,22,26,[[662,1,1,22,23],[666,2,2,23,25],[668,1,1,25,26]]],[22,1,1,26,27,[[686,1,1,26,27]]],[23,2,2,27,29,[[757,1,1,27,28],[788,1,1,28,29]]],[25,3,3,29,32,[[807,1,1,29,30],[815,1,1,30,31],[830,1,1,31,32]]],[26,1,1,32,33,[[858,1,1,32,33]]],[28,1,1,33,34,[[878,1,1,33,34]]],[37,1,1,34,35,[[921,1,1,34,35]]]],[848,993,1007,1158,1172,1653,3559,4324,5504,5940,6457,6681,7921,8055,8835,9018,9142,9262,10009,10942,11506,16056,17390,17471,17473,17508,17827,19291,20033,20572,20736,21203,21996,22362,23030]]],["concerning",[1,1,[[6,1,1,0,1,[[231,1,1,0,1]]]],[7107]]],["for",[19,19,[[0,1,1,0,1,[[30,1,1,0,1]]],[4,2,2,1,3,[[155,1,1,1,2],[180,1,1,2,3]]],[8,3,3,3,6,[[237,1,1,3,4],[250,1,1,4,5],[261,1,1,5,6]]],[10,1,1,6,7,[[302,1,1,6,7]]],[18,1,1,7,8,[[508,1,1,7,8]]],[20,2,2,8,10,[[664,1,1,8,9],[665,1,1,9,10]]],[22,1,1,10,11,[[732,1,1,10,11]]],[23,1,1,11,12,[[776,1,1,11,12]]],[25,3,3,12,15,[[807,1,1,12,13],[812,1,1,13,14],[840,1,1,14,15]]],[26,2,2,15,17,[[850,1,1,15,16],[858,1,1,16,17]]],[27,1,1,17,18,[[875,1,1,17,18]]],[37,1,1,18,19,[[911,1,1,18,19]]]],[922,4999,5631,7263,7575,7928,9153,14338,17429,17431,18732,19750,20574,20667,21477,21747,22000,22285,22893]]],["him",[2,2,[[2,1,1,0,1,[[116,1,1,0,1]]],[38,1,1,1,2,[[927,1,1,1,2]]]],[3594,23138]]],["his",[7,6,[[1,2,2,0,2,[[84,1,1,0,1],[88,1,1,1,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[10,2,1,3,4,[[312,2,1,3,4]]],[11,1,1,4,5,[[328,1,1,4,5]]],[13,1,1,5,6,[[382,1,1,5,6]]]],[2547,2703,7770,9511,9976,11513]]],["how",[26,22,[[0,2,1,0,1,[[29,2,1,0,1]]],[4,5,4,1,5,[[161,1,1,1,2],[163,2,2,2,4],[181,2,1,4,5]]],[5,1,1,5,6,[[188,1,1,5,6]]],[8,5,5,6,11,[[237,1,1,6,7],[247,1,1,7,8],[250,1,1,8,9],[259,1,1,9,10],[263,1,1,10,11]]],[10,4,3,11,14,[[304,2,1,11,12],[309,1,1,12,13],[312,1,1,13,14]]],[11,6,5,14,19,[[320,1,1,14,15],[326,3,2,15,17],[332,2,2,17,19]]],[15,1,1,19,20,[[414,1,1,19,20]]],[16,1,1,20,21,[[430,1,1,20,21]]],[22,1,1,21,22,[[716,1,1,21,22]]]],[859,5164,5212,5214,5695,5879,7262,7484,7562,7849,7951,9237,9388,9525,9732,9911,9924,10101,10118,12324,12790,18393]]],["if",[13,13,[[1,1,1,0,1,[[70,1,1,0,1]]],[2,8,8,1,9,[[109,8,8,1,9]]],[4,1,1,9,10,[[163,1,1,9,10]]],[16,1,1,10,11,[[429,1,1,10,11]]],[25,1,1,11,12,[[811,1,1,11,12]]],[29,1,1,12,13,[[883,1,1,12,13]]]],[2090,3330,3332,3333,3334,3335,3336,3338,3339,5235,12778,20643,22442]]],["it",[1,1,[[4,1,1,0,1,[[161,1,1,0,1]]]],[5178]]],["man",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[4,1,1,1,2,[[171,1,1,1,2]]]],[3502,5411]]],["more",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1544]]],["my",[2,1,[[7,2,1,0,1,[[233,2,1,0,1]]]],[7170]]],["of",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12837]]],["owneth",[1,1,[[2,1,1,0,1,[[103,1,1,0,1]]]],[3146]]],["seeing",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7887]]],["so",[2,2,[[0,1,1,0,1,[[43,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]]],[1329,18097]]],["soever",[2,2,[[9,1,1,0,1,[[281,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]]],[8424,11311]]],["storehouses",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1251]]],["such",[9,7,[[1,1,1,0,1,[[58,1,1,0,1]]],[9,1,1,1,2,[[275,1,1,1,2]]],[23,6,4,2,6,[[749,2,2,2,4],[753,1,1,4,5],[787,3,1,5,6]]],[26,1,1,6,7,[[850,1,1,6,7]]]],[1760,8235,19067,19087,19184,20008,21741]]],["that",[1664,1520,[[0,109,104,0,104,[[0,1,1,0,1],[4,1,1,1,2],[5,3,3,2,5],[6,8,7,5,12],[7,2,2,12,14],[8,6,6,14,20],[10,1,1,20,21],[11,4,3,21,24],[12,2,2,24,26],[13,3,3,26,29],[14,3,3,29,32],[17,1,1,32,33],[18,1,1,33,34],[19,3,3,34,37],[20,3,3,37,40],[22,4,3,40,43],[23,7,7,43,50],[24,2,2,50,52],[25,2,2,52,54],[27,3,3,54,57],[29,2,2,57,59],[30,5,5,59,64],[31,2,2,64,66],[32,4,4,66,70],[33,2,2,70,72],[34,4,3,72,75],[35,2,2,75,77],[36,3,3,77,80],[37,2,2,80,82],[38,6,5,82,87],[39,1,1,87,88],[40,1,1,88,89],[41,2,2,89,91],[43,3,3,91,94],[44,3,3,94,97],[45,2,2,97,99],[46,1,1,99,100],[48,4,4,100,104]]],[1,78,71,104,175,[[54,1,1,104,105],[55,1,1,105,106],[56,6,5,106,111],[58,3,3,111,114],[59,1,1,114,115],[60,3,3,115,118],[61,3,2,118,120],[63,1,1,120,121],[65,1,1,121,122],[67,9,7,122,129],[68,2,2,129,131],[69,8,6,131,137],[71,1,1,137,138],[72,2,2,138,140],[73,1,1,140,141],[74,4,4,141,145],[75,1,1,145,146],[78,7,7,146,153],[79,2,1,153,154],[80,3,3,154,157],[81,3,3,157,160],[82,2,2,160,162],[83,3,3,162,165],[84,2,2,165,167],[85,1,1,167,168],[86,1,1,168,169],[87,1,1,169,170],[88,3,3,170,173],[89,2,2,173,175]]],[2,89,84,175,259,[[90,4,4,175,179],[91,1,1,179,180],[92,7,7,180,187],[93,4,4,187,191],[94,4,4,191,195],[95,3,3,195,198],[96,7,6,198,204],[97,5,5,204,209],[99,1,1,209,210],[100,5,5,210,215],[102,1,1,215,216],[103,8,8,216,224],[104,7,6,224,230],[105,3,3,230,233],[106,7,6,233,239],[107,1,1,239,240],[109,6,5,240,245],[110,3,3,245,248],[111,2,2,248,250],[112,2,2,250,252],[114,4,4,252,256],[115,1,1,256,257],[116,3,2,257,259]]],[3,53,50,259,309,[[117,3,3,259,262],[118,1,1,262,263],[120,3,3,263,266],[121,1,1,266,267],[122,2,2,267,269],[123,1,1,269,270],[124,2,2,270,272],[125,2,2,272,274],[127,2,2,274,276],[129,4,3,276,279],[130,1,1,279,280],[131,4,3,280,283],[132,5,5,283,288],[135,4,4,288,292],[136,1,1,292,293],[137,3,3,293,296],[138,4,4,296,300],[139,1,1,300,301],[141,1,1,301,302],[145,1,1,302,303],[147,5,4,303,307],[150,1,1,307,308],[151,1,1,308,309]]],[4,107,94,309,403,[[153,8,7,309,316],[154,1,1,316,317],[155,4,4,317,321],[156,11,8,321,329],[157,10,7,329,336],[158,2,1,336,337],[159,1,1,337,338],[160,1,1,338,339],[161,1,1,339,340],[162,3,3,340,343],[163,2,2,343,345],[164,7,7,345,352],[165,1,1,352,353],[166,5,4,353,357],[167,3,3,357,360],[168,3,2,360,362],[169,5,5,362,367],[170,3,3,367,370],[171,2,2,370,372],[172,4,4,372,376],[173,1,1,376,377],[174,1,1,377,378],[175,3,3,378,381],[176,2,2,381,383],[177,1,1,383,384],[178,4,4,384,388],[179,2,2,388,390],[180,4,3,390,393],[181,7,5,393,398],[182,2,2,398,400],[183,1,1,400,401],[184,1,1,401,402],[186,1,1,402,403]]],[5,85,72,403,475,[[187,3,3,403,406],[188,2,2,406,408],[189,2,2,408,410],[190,2,1,410,411],[191,1,1,411,412],[192,9,7,412,419],[193,2,2,419,421],[194,8,7,421,428],[195,4,3,428,431],[196,10,6,431,437],[197,6,6,437,443],[199,7,5,443,448],[200,3,3,448,451],[201,4,4,451,455],[203,1,1,455,456],[204,3,3,456,459],[205,2,2,459,461],[206,1,1,461,462],[207,1,1,462,463],[208,6,5,463,468],[209,3,3,468,471],[210,5,4,471,475]]],[6,73,63,475,538,[[211,1,1,475,476],[212,4,3,476,479],[213,1,1,479,480],[214,3,3,480,483],[216,8,6,483,489],[217,8,6,489,495],[218,6,5,495,500],[219,12,10,500,510],[220,2,2,510,512],[221,1,1,512,513],[223,5,4,513,517],[225,3,2,517,519],[226,4,4,519,523],[227,1,1,523,524],[228,4,4,524,528],[229,2,2,528,530],[230,3,3,530,533],[231,5,5,533,538]]],[7,13,12,538,550,[[233,4,4,538,542],[234,6,6,542,548],[235,3,2,548,550]]],[8,74,68,550,618,[[236,1,1,550,551],[237,4,4,551,555],[238,2,1,555,556],[240,1,1,556,557],[241,1,1,557,558],[243,3,3,558,561],[244,3,3,561,564],[247,4,3,564,567],[248,3,3,567,570],[249,11,11,570,581],[250,2,2,581,583],[252,4,4,583,587],[253,2,2,587,589],[254,2,2,589,591],[256,1,1,591,592],[257,4,4,592,596],[259,2,2,596,598],[260,7,6,598,604],[261,3,2,604,606],[262,2,2,606,608],[264,1,1,608,609],[265,9,8,609,617],[266,2,1,617,618]]],[9,79,75,618,693,[[267,3,2,618,620],[268,5,5,620,625],[269,6,6,625,631],[272,4,4,631,635],[273,5,5,635,640],[274,2,2,640,642],[275,2,2,642,644],[276,2,2,644,646],[277,3,3,646,649],[278,3,3,649,652],[279,2,2,652,654],[280,6,6,654,660],[281,6,6,660,666],[282,3,3,666,669],[283,10,9,669,678],[284,4,4,678,682],[285,2,2,682,684],[286,4,3,684,687],[287,4,3,687,690],[289,1,1,690,691],[290,2,2,691,693]]],[10,116,108,693,801,[[291,4,4,693,697],[292,6,5,697,702],[293,3,3,702,705],[294,3,2,705,707],[295,2,2,707,709],[296,1,1,709,710],[297,9,9,710,719],[298,18,16,719,735],[299,6,6,735,741],[300,6,6,741,747],[301,9,9,747,756],[302,7,5,756,761],[303,9,9,761,770],[304,3,3,770,773],[305,5,5,773,778],[306,9,8,778,786],[307,2,2,786,788],[308,2,2,788,790],[309,1,1,790,791],[310,3,3,791,794],[311,1,1,794,795],[312,7,6,795,801]]],[11,124,106,801,907,[[313,2,2,801,803],[314,4,4,803,807],[315,3,3,807,810],[316,1,1,810,811],[317,2,2,811,813],[318,3,2,813,815],[319,2,1,815,816],[320,4,4,816,820],[321,1,1,820,821],[322,10,7,821,828],[323,3,3,828,831],[324,5,4,831,835],[325,2,2,835,837],[326,4,2,837,839],[327,8,8,839,847],[328,5,5,847,852],[329,6,5,852,857],[330,6,6,857,863],[331,2,2,863,865],[332,7,5,865,870],[333,9,6,870,876],[334,2,2,876,878],[335,21,18,878,896],[336,6,6,896,902],[337,6,5,902,907]]],[12,38,37,907,944,[[338,1,1,907,908],[339,1,1,908,909],[341,2,2,909,911],[343,3,2,911,913],[346,1,1,913,914],[347,2,2,914,916],[348,2,2,916,918],[349,2,2,918,920],[350,1,1,920,921],[353,4,4,921,925],[354,6,6,925,931],[355,2,2,931,933],[356,3,3,933,936],[357,1,1,936,937],[358,1,1,937,938],[359,1,1,938,939],[364,1,1,939,940],[365,1,1,940,941],[366,3,3,941,944]]],[13,90,83,944,1027,[[367,6,6,944,950],[368,6,5,950,955],[369,3,3,955,958],[370,2,2,958,960],[371,2,2,960,962],[372,5,5,962,967],[373,3,3,967,970],[374,3,2,970,972],[375,6,6,972,978],[376,7,6,978,984],[377,1,1,984,985],[378,2,2,985,987],[380,1,1,987,988],[381,1,1,988,989],[383,1,1,989,990],[384,5,5,990,995],[387,2,2,995,997],[389,3,3,997,1000],[391,5,3,1000,1003],[392,1,1,1003,1004],[393,1,1,1004,1005],[395,2,2,1005,1007],[396,2,2,1007,1009],[397,2,2,1009,1011],[398,6,5,1011,1016],[399,2,2,1016,1018],[400,9,8,1018,1026],[401,1,1,1026,1027]]],[14,5,5,1027,1032,[[403,1,1,1027,1028],[404,1,1,1028,1029],[405,1,1,1029,1030],[409,1,1,1030,1031],[412,1,1,1031,1032]]],[15,48,46,1032,1078,[[413,3,3,1032,1035],[414,9,8,1035,1043],[415,1,1,1043,1044],[417,10,10,1044,1054],[418,3,3,1054,1057],[419,1,1,1057,1058],[420,5,5,1058,1063],[421,7,6,1063,1069],[422,1,1,1069,1070],[423,1,1,1070,1071],[424,1,1,1071,1072],[425,6,6,1072,1078]]],[16,36,33,1078,1111,[[426,1,1,1078,1079],[427,1,1,1079,1080],[428,6,5,1080,1085],[429,6,5,1085,1090],[430,5,5,1090,1095],[431,6,6,1095,1101],[432,2,2,1101,1103],[433,3,3,1103,1106],[434,6,5,1106,1111]]],[17,6,6,1111,1117,[[436,3,3,1111,1114],[437,1,1,1114,1115],[469,1,1,1115,1116],[477,1,1,1116,1117]]],[18,24,23,1117,1140,[[478,2,2,1117,1119],[480,1,1,1119,1120],[493,1,1,1120,1121],[512,2,2,1121,1123],[515,1,1,1123,1124],[517,1,1,1124,1125],[518,1,1,1125,1126],[555,2,2,1126,1128],[556,2,1,1128,1129],[573,1,1,1129,1130],[582,1,1,1130,1131],[586,2,2,1131,1133],[592,1,1,1133,1134],[596,1,1,1134,1135],[604,1,1,1135,1136],[612,1,1,1136,1137],[622,1,1,1137,1138],[623,1,1,1138,1139],[625,1,1,1139,1140]]],[19,2,2,1140,1142,[[652,1,1,1140,1141],[658,1,1,1141,1142]]],[20,25,24,1142,1166,[[659,2,2,1142,1144],[661,2,1,1144,1145],[662,4,4,1145,1149],[663,1,1,1149,1150],[664,2,2,1150,1152],[665,5,5,1152,1157],[666,5,5,1157,1162],[667,4,4,1162,1166]]],[22,44,39,1166,1205,[[679,2,2,1166,1168],[680,1,1,1168,1169],[685,5,4,1169,1173],[694,1,1,1173,1174],[697,1,1,1174,1175],[700,1,1,1175,1176],[705,1,1,1176,1177],[707,1,1,1177,1178],[708,1,1,1178,1179],[714,3,3,1179,1182],[715,2,2,1182,1184],[716,2,1,1184,1185],[717,6,4,1185,1189],[724,1,1,1189,1190],[727,2,2,1190,1192],[728,1,1,1192,1193],[733,2,2,1193,1195],[734,3,2,1195,1197],[736,1,1,1197,1198],[737,1,1,1198,1199],[738,1,1,1199,1200],[741,1,1,1200,1201],[743,2,2,1201,1203],[744,2,2,1203,1205]]],[23,162,150,1205,1355,[[745,3,3,1205,1208],[746,2,2,1208,1210],[747,1,1,1210,1211],[751,5,5,1211,1216],[754,2,1,1216,1217],[755,2,2,1217,1219],[757,1,1,1219,1220],[758,1,1,1220,1221],[760,5,4,1221,1225],[761,3,3,1225,1228],[762,2,2,1228,1230],[763,3,3,1230,1233],[764,1,1,1233,1234],[765,1,1,1234,1235],[766,1,1,1235,1236],[767,2,2,1236,1238],[768,2,2,1238,1240],[769,3,3,1240,1243],[770,4,4,1243,1247],[771,4,4,1247,1251],[772,4,4,1251,1255],[773,7,7,1255,1262],[774,4,4,1262,1266],[775,3,3,1266,1269],[776,8,8,1269,1277],[777,2,1,1277,1278],[778,1,1,1278,1279],[779,5,5,1279,1284],[780,8,7,1284,1291],[782,11,10,1291,1301],[783,1,1,1301,1302],[784,5,4,1302,1306],[785,11,9,1306,1315],[786,5,4,1315,1319],[787,4,4,1319,1323],[788,10,10,1323,1333],[789,1,1,1333,1334],[790,1,1,1334,1335],[791,1,1,1335,1336],[793,4,3,1336,1339],[794,7,6,1339,1345],[795,4,4,1345,1349],[796,7,6,1349,1355]]],[24,3,3,1355,1358,[[797,1,1,1355,1356],[798,2,2,1356,1358]]],[25,127,110,1358,1468,[[802,3,3,1358,1361],[803,2,2,1361,1363],[804,3,3,1363,1366],[805,2,2,1366,1368],[806,5,4,1368,1372],[808,2,1,1372,1373],[809,4,4,1373,1377],[811,4,4,1377,1381],[812,3,3,1381,1384],[813,5,5,1384,1389],[814,5,4,1389,1393],[815,5,4,1393,1397],[817,5,4,1397,1401],[818,3,2,1401,1403],[819,10,6,1403,1409],[821,5,4,1409,1413],[822,1,1,1413,1414],[823,2,2,1414,1416],[825,1,1,1416,1417],[827,2,2,1417,1419],[828,1,1,1419,1420],[829,1,1,1420,1421],[830,1,1,1421,1422],[832,2,2,1422,1424],[834,5,3,1424,1427],[835,1,1,1427,1428],[837,6,6,1428,1434],[838,1,1,1434,1435],[839,2,2,1435,1437],[840,4,3,1437,1440],[841,5,4,1440,1444],[842,3,3,1444,1447],[843,5,5,1447,1452],[844,6,5,1452,1457],[845,7,7,1457,1464],[846,1,1,1464,1465],[847,1,1,1465,1466],[848,2,1,1466,1467],[849,1,1,1467,1468]]],[26,13,11,1468,1479,[[850,5,3,1468,1471],[857,1,1,1471,1472],[858,4,4,1472,1476],[859,3,3,1476,1479]]],[27,3,3,1479,1482,[[862,1,1,1479,1480],[863,1,1,1480,1481],[873,1,1,1481,1482]]],[28,3,3,1482,1485,[[876,1,1,1482,1483],[877,2,2,1483,1485]]],[29,3,3,1485,1488,[[881,1,1,1485,1486],[882,1,1,1486,1487],[884,1,1,1487,1488]]],[30,1,1,1488,1489,[[888,1,1,1488,1489]]],[31,6,6,1489,1495,[[889,1,1,1489,1490],[890,1,1,1490,1491],[891,3,3,1491,1494],[892,1,1,1494,1495]]],[32,4,4,1495,1499,[[893,1,1,1495,1496],[895,1,1,1496,1497],[896,1,1,1497,1498],[897,1,1,1498,1499]]],[34,1,1,1499,1500,[[905,1,1,1499,1500]]],[35,1,1,1500,1501,[[906,1,1,1500,1501]]],[36,4,4,1501,1505,[[909,1,1,1501,1502],[910,3,3,1502,1505]]],[37,12,12,1505,1517,[[911,1,1,1505,1506],[913,1,1,1506,1507],[914,1,1,1507,1508],[918,4,4,1508,1512],[921,1,1,1512,1513],[924,4,4,1513,1517]]],[38,3,3,1517,1520,[[926,1,1,1517,1518],[928,2,2,1518,1520]]]],[30,110,154,158,159,161,163,164,167,178,181,182,184,200,207,208,215,217,221,222,273,299,303,318,319,334,341,353,359,364,367,377,448,468,502,504,511,525,535,536,582,588,591,593,594,598,623,627,645,657,663,676,693,697,791,793,795,863,865,874,885,892,894,916,935,951,969,971,974,975,994,1009,1013,1016,1017,1064,1071,1093,1105,1106,1137,1149,1152,1154,1155,1157,1171,1179,1248,1266,1273,1326,1339,1358,1368,1369,1371,1387,1418,1421,1501,1502,1503,1505,1634,1684,1687,1702,1703,1705,1706,1761,1763,1767,1789,1811,1813,1814,1838,1845,1901,1970,2000,2007,2013,2016,2017,2019,2023,2034,2042,2055,2058,2061,2062,2068,2077,2129,2157,2166,2184,2197,2204,2216,2221,2240,2337,2349,2357,2358,2359,2368,2382,2388,2426,2427,2431,2439,2451,2461,2489,2490,2497,2506,2528,2541,2553,2567,2617,2655,2669,2696,2706,2716,2723,2750,2753,2757,2762,2770,2781,2782,2783,2787,2788,2792,2793,2803,2804,2813,2830,2833,2835,2841,2843,2852,2856,2867,2883,2886,2888,2898,2899,2906,2927,2933,2942,2943,2948,2980,2999,3006,3007,3031,3044,3103,3127,3128,3129,3138,3139,3140,3147,3152,3178,3180,3188,3190,3199,3201,3214,3216,3219,3238,3240,3243,3245,3248,3250,3279,3320,3324,3327,3328,3329,3363,3364,3366,3372,3387,3431,3432,3476,3499,3513,3514,3564,3579,3598,3609,3654,3658,3692,3759,3768,3769,3809,3827,3844,3939,3959,3963,3970,3978,4028,4049,4094,4106,4107,4122,4165,4176,4183,4224,4225,4226,4227,4228,4302,4303,4307,4309,4325,4355,4360,4372,4377,4410,4413,4415,4442,4485,4648,4682,4687,4699,4716,4818,4878,4895,4909,4922,4923,4928,4933,4938,4974,4983,4996,4999,5000,5007,5012,5014,5021,5022,5036,5038,5044,5061,5064,5067,5074,5079,5080,5081,5089,5117,5150,5164,5188,5200,5207,5214,5233,5241,5248,5251,5252,5253,5254,5258,5287,5292,5299,5311,5317,5321,5337,5338,5353,5356,5366,5373,5374,5376,5378,5400,5402,5404,5420,5421,5432,5433,5434,5441,5464,5495,5508,5510,5519,5533,5539,5556,5568,5569,5577,5580,5600,5611,5634,5646,5654,5681,5688,5690,5694,5701,5710,5724,5740,5807,5840,5854,5867,5869,5879,5882,5900,5909,5920,5935,5966,5970,5971,5972,5973,5974,5975,5991,6000,6007,6013,6015,6018,6019,6020,6037,6046,6047,6061,6092,6094,6096,6099,6101,6103,6109,6111,6118,6122,6126,6130,6158,6163,6170,6171,6179,6193,6195,6201,6209,6210,6218,6248,6282,6306,6307,6309,6329,6332,6378,6425,6428,6436,6442,6455,6456,6461,6463,6464,6491,6496,6502,6507,6521,6552,6557,6565,6587,6601,6608,6612,6665,6675,6679,6682,6684,6685,6695,6696,6699,6705,6712,6713,6723,6724,6740,6745,6750,6760,6779,6786,6787,6788,6789,6792,6798,6799,6802,6819,6829,6855,6894,6895,6897,6898,6943,6948,6952,6956,6960,6979,6982,7000,7003,7015,7021,7036,7046,7058,7064,7066,7107,7110,7113,7114,7115,7158,7160,7166,7167,7173,7177,7178,7183,7187,7188,7199,7201,7229,7254,7262,7264,7274,7293,7331,7346,7376,7378,7380,7396,7397,7410,7461,7466,7474,7488,7493,7507,7509,7510,7515,7525,7527,7528,7529,7532,7535,7536,7551,7563,7567,7631,7644,7645,7655,7680,7691,7724,7728,7779,7789,7793,7798,7810,7857,7858,7867,7872,7882,7883,7891,7900,7916,7921,7932,7937,7977,7980,7982,7987,7994,7996,7997,7999,8000,8016,8032,8033,8052,8053,8054,8060,8073,8100,8101,8102,8104,8106,8112,8159,8160,8169,8174,8183,8189,8191,8202,8205,8216,8220,8236,8238,8253,8256,8279,8281,8286,8301,8307,8317,8333,8336,8371,8374,8375,8376,8378,8382,8391,8395,8403,8411,8419,8425,8430,8440,8447,8451,8456,8458,8460,8461,8465,8471,8474,8478,8479,8487,8506,8510,8518,8530,8564,8565,8569,8585,8587,8594,8669,8697,8702,8746,8758,8762,8766,8773,8775,8781,8813,8814,8824,8828,8829,8873,8877,8884,8887,8918,8937,8952,8953,8963,8974,8975,8976,8982,8985,8989,8990,9001,9005,9009,9010,9012,9025,9026,9028,9029,9031,9035,9041,9049,9051,9054,9055,9070,9072,9074,9076,9081,9083,9085,9090,9093,9106,9115,9133,9135,9138,9141,9145,9146,9149,9150,9157,9159,9161,9164,9183,9187,9193,9194,9195,9198,9201,9204,9205,9210,9227,9240,9247,9254,9256,9261,9272,9280,9290,9297,9303,9305,9308,9310,9313,9316,9320,9322,9365,9379,9388,9412,9417,9418,9459,9493,9496,9497,9519,9525,9533,9535,9539,9554,9556,9564,9565,9578,9585,9603,9620,9650,9651,9686,9690,9720,9731,9733,9739,9750,9793,9798,9814,9815,9822,9823,9827,9829,9834,9838,9839,9854,9862,9868,9869,9879,9883,9905,9924,9928,9931,9941,9946,9951,9956,9959,9961,9973,9974,9979,9980,9981,9985,9992,9997,9998,10021,10027,10028,10029,10036,10050,10059,10082,10094,10107,10111,10113,10115,10116,10126,10127,10130,10131,10136,10140,10158,10160,10172,10173,10176,10177,10178,10180,10181,10182,10183,10184,10185,10187,10189,10190,10191,10193,10197,10202,10205,10206,10207,10209,10211,10221,10232,10233,10235,10247,10250,10295,10315,10418,10426,10464,10503,10617,10666,10670,10690,10691,10735,10740,10774,10821,10832,10852,10859,10865,10868,10871,10873,10883,10886,10897,10901,10916,10921,10923,10929,10951,10966,11137,11155,11180,11191,11194,11197,11199,11205,11206,11207,11209,11217,11218,11219,11223,11228,11230,11233,11244,11257,11265,11269,11273,11287,11292,11293,11315,11316,11331,11334,11341,11352,11357,11365,11367,11370,11377,11387,11391,11399,11401,11403,11404,11405,11413,11427,11440,11442,11488,11498,11533,11544,11554,11557,11558,11572,11631,11640,11660,11664,11665,11714,11722,11731,11736,11757,11793,11807,11841,11844,11873,11875,11882,11884,11889,11893,11906,11916,11923,11937,11943,11949,11954,11955,11956,11961,11966,11990,12020,12090,12109,12184,12270,12299,12304,12305,12312,12314,12315,12317,12319,12324,12325,12326,12352,12384,12385,12386,12391,12393,12395,12396,12397,12399,12401,12412,12415,12417,12485,12494,12496,12505,12507,12508,12517,12528,12529,12543,12546,12547,12579,12591,12625,12672,12678,12685,12688,12690,12693,12718,12734,12748,12749,12751,12753,12759,12763,12769,12770,12773,12779,12781,12783,12784,12787,12791,12795,12797,12801,12803,12806,12807,12812,12817,12820,12823,12826,12835,12849,12850,12852,12854,12879,12880,12881,12895,13702,13933,13940,13942,13963,14095,14418,14421,14504,14529,14550,15117,15124,15191,15477,15611,15766,15771,15838,15961,16126,16193,16338,16347,16375,17141,17285,17328,17331,17370,17382,17384,17396,17397,17402,17419,17427,17447,17449,17450,17451,17458,17467,17470,17472,17474,17475,17476,17478,17479,17481,17683,17684,17686,17798,17799,17800,17807,17982,18021,18077,18152,18205,18240,18341,18350,18352,18358,18386,18397,18414,18416,18418,18419,18596,18643,18645,18672,18741,18751,18757,18758,18788,18821,18833,18873,18907,18917,18923,18941,18947,18953,18963,18978,18993,19020,19120,19126,19142,19144,19147,19226,19227,19229,19270,19294,19346,19349,19350,19351,19361,19362,19364,19388,19392,19409,19418,19422,19424,19444,19480,19518,19523,19527,19534,19535,19539,19550,19574,19580,19584,19585,19601,19604,19607,19609,19621,19625,19626,19627,19636,19643,19646,19651,19652,19660,19667,19668,19669,19670,19671,19723,19724,19728,19732,19738,19739,19740,19754,19762,19771,19773,19784,19809,19831,19833,19837,19840,19841,19844,19849,19850,19855,19865,19870,19873,19896,19901,19904,19909,19911,19914,19916,19917,19922,19923,19932,19942,19951,19952,19954,19959,19960,19964,19967,19968,19969,19970,19971,19973,19978,19985,19992,19995,20002,20003,20007,20010,20011,20012,20014,20020,20022,20026,20031,20034,20035,20037,20041,20058,20074,20146,20147,20161,20167,20187,20195,20203,20210,20211,20236,20260,20272,20276,20278,20290,20291,20293,20296,20308,20317,20349,20354,20489,20490,20492,20495,20500,20503,20505,20512,20533,20538,20552,20553,20560,20561,20592,20608,20610,20613,20617,20634,20640,20648,20653,20667,20679,20680,20690,20692,20694,20705,20707,20711,20722,20727,20728,20735,20738,20753,20754,20799,20814,20816,20825,20844,20845,20870,20871,20873,20875,20876,20877,20901,20921,20927,20938,20948,20980,20990,21080,21118,21119,21148,21182,21201,21239,21244,21293,21296,21307,21315,21363,21366,21377,21387,21390,21395,21422,21445,21447,21452,21465,21469,21478,21481,21497,21499,21535,21538,21548,21553,21559,21560,21564,21565,21573,21575,21580,21583,21591,21604,21608,21609,21613,21614,21621,21624,21643,21659,21684,21711,21745,21755,21757,21982,21995,21999,22000,22003,22022,22026,22027,22095,22117,22260,22292,22336,22337,22396,22411,22460,22530,22536,22557,22560,22566,22568,22579,22580,22613,22626,22640,22784,22793,22849,22858,22860,22873,22886,22921,22923,22992,22993,22996,22999,23041,23080,23083,23086,23087,23115,23139,23141]]],["the",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9021]]],["them",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1444]]],["they",[2,2,[[4,1,1,0,1,[[175,1,1,0,1]]],[22,1,1,1,2,[[727,1,1,1,2]]]],[5504,18659]]],["things",[2,2,[[1,1,1,0,1,[[59,1,1,0,1]]],[5,1,1,1,2,[[187,1,1,1,2]]]],[1779,5868]]],["though",[3,3,[[17,1,1,0,1,[[445,1,1,0,1]]],[20,1,1,1,2,[[666,1,1,1,2]]],[37,1,1,2,3,[[920,1,1,2,3]]]],[13105,17475,23022]]],["what",[76,72,[[0,4,4,0,4,[[8,1,1,0,1],[33,1,1,1,2],[40,2,2,2,4]]],[1,4,4,4,8,[[53,2,2,4,6],[55,1,1,6,7],[68,1,1,7,8]]],[3,4,4,8,12,[[126,1,1,8,9],[140,2,2,9,11],[147,1,1,11,12]]],[4,11,10,12,22,[[153,3,2,12,14],[156,1,1,14,15],[159,1,1,15,16],[160,1,1,16,17],[163,3,3,17,20],[176,1,1,20,21],[177,1,1,21,22]]],[5,3,3,22,25,[[188,1,1,22,23],[195,1,1,23,24],[210,1,1,24,25]]],[6,1,1,25,26,[[224,1,1,25,26]]],[7,2,2,26,28,[[233,1,1,26,27],[234,1,1,27,28]]],[8,6,6,28,34,[[245,1,1,28,29],[250,1,1,29,30],[251,1,1,30,31],[256,1,1,31,32],[263,2,2,32,34]]],[9,6,5,34,39,[[281,1,1,34,35],[284,1,1,35,36],[285,3,2,36,38],[287,1,1,38,39]]],[10,8,7,39,46,[[292,3,2,39,41],[303,1,1,41,42],[306,1,1,42,43],[308,1,1,43,44],[310,1,1,44,45],[312,1,1,45,46]]],[11,3,3,46,49,[[319,1,1,46,47],[331,1,1,47,48],[334,1,1,48,49]]],[13,1,1,49,50,[[384,1,1,49,50]]],[15,1,1,50,51,[[416,1,1,50,51]]],[16,3,2,51,53,[[427,3,2,51,53]]],[18,2,2,53,55,[[523,1,1,53,54],[543,1,1,54,55]]],[19,1,1,55,56,[[650,1,1,55,56]]],[20,1,1,56,57,[[668,1,1,56,57]]],[22,5,5,57,62,[[683,1,1,57,58],[699,1,1,58,59],[711,1,1,59,60],[715,1,1,60,61],[719,1,1,61,62]]],[23,4,4,62,66,[[750,1,1,62,63],[751,1,1,63,64],[767,1,1,64,65],[776,1,1,65,66]]],[25,3,3,66,69,[[803,1,1,66,67],[809,1,1,67,68],[848,1,1,68,69]]],[26,2,2,69,71,[[857,1,1,69,70],[859,1,1,70,71]]],[32,1,1,71,72,[[898,1,1,71,72]]]],[229,991,1220,1250,1613,1616,1656,2030,4020,4459,4460,4714,4914,4925,5007,5129,5139,5212,5213,5214,5534,5564,5879,6040,6483,6915,7167,7176,7426,7576,7598,7774,7944,7951,8410,8499,8546,8548,8591,8775,8779,9196,9288,9354,9430,9494,9719,10072,10164,11555,12379,12725,12739,14622,14889,17045,17507,17744,18041,18292,18363,18473,19107,19131,19509,19755,20500,20616,21702,21980,22029,22649]]],["whatsoever",[5,5,[[3,1,1,0,1,[[121,1,1,0,1]]],[6,1,1,1,2,[[221,1,1,1,2]]],[8,1,1,2,3,[[260,1,1,2,3]]],[10,1,1,3,4,[[300,1,1,3,4]]],[13,1,1,4,5,[[375,1,1,4,5]]]],[3802,6860,7869,9092,11376]]],["when",[81,79,[[0,13,13,0,13,[[5,1,1,0,1],[11,1,1,1,2],[19,1,1,2,3],[23,1,1,3,4],[26,1,1,4,5],[28,1,1,5,6],[29,2,2,6,8],[31,1,1,8,9],[36,1,1,9,10],[39,2,2,10,12],[42,1,1,12,13]]],[1,4,3,13,16,[[54,1,1,13,14],[66,2,1,14,15],[78,1,1,15,16]]],[2,1,1,16,17,[[95,1,1,16,17]]],[3,5,5,17,22,[[121,2,2,17,19],[125,2,2,19,21],[142,1,1,21,22]]],[4,3,3,22,25,[[154,2,2,22,24],[179,1,1,24,25]]],[5,3,3,25,28,[[190,2,2,25,27],[191,1,1,27,28]]],[6,3,3,28,31,[[213,1,1,28,29],[221,2,2,29,31]]],[8,7,7,31,38,[[236,1,1,31,32],[241,1,1,32,33],[243,2,2,33,35],[259,2,2,35,37],[261,1,1,37,38]]],[9,3,3,38,41,[[278,1,1,38,39],[282,1,1,39,40],[286,1,1,40,41]]],[10,4,4,41,45,[[298,2,2,41,43],[299,1,1,43,44],[312,1,1,44,45]]],[11,1,1,45,46,[[317,1,1,45,46]]],[13,5,5,46,51,[[371,1,1,46,47],[372,1,1,47,48],[384,1,1,48,49],[391,1,1,49,50],[401,1,1,50,51]]],[15,10,10,51,61,[[414,1,1,51,52],[416,4,4,52,56],[417,1,1,56,57],[418,2,2,57,59],[419,1,1,59,60],[425,1,1,60,61]]],[16,1,1,61,62,[[434,1,1,61,62]]],[18,3,3,62,65,[[533,1,1,62,63],[555,1,1,63,64],[616,1,1,64,65]]],[20,3,3,65,68,[[663,1,1,65,66],[666,1,1,66,67],[670,1,1,67,68]]],[22,4,3,68,71,[[704,1,1,68,69],[707,2,1,69,70],[709,1,1,70,71]]],[23,3,3,71,74,[[778,1,1,71,72],[782,1,1,72,73],[783,1,1,73,74]]],[25,3,3,74,77,[[803,1,1,74,75],[836,1,1,75,76],[838,1,1,76,77]]],[28,1,1,77,78,[[878,1,1,77,78]]],[38,1,1,78,79,[[927,1,1,78,79]]]],[141,309,508,643,767,805,855,868,930,1106,1185,1186,1292,1645,1994,2366,2876,3821,3822,3985,3986,4553,4954,4960,5587,5911,5921,5942,6586,6834,6836,7236,7337,7370,7375,7840,7857,7925,8307,8442,8566,8994,9015,9061,9505,9673,11278,11311,11566,11707,11986,12310,12360,12366,12371,12374,12388,12402,12417,12421,12690,12835,14761,15155,16254,17398,17465,17524,18139,18201,18254,19819,19923,19927,20494,21355,21415,22344,23137]]],["whence",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12371]]],["where",[43,43,[[0,4,4,0,4,[[34,3,3,0,3],[38,1,1,3,4]]],[1,2,2,4,6,[[61,1,1,4,5],[69,1,1,5,6]]],[2,5,5,6,11,[[93,2,2,6,8],[95,1,1,8,9],[96,1,1,9,10],[103,1,1,10,11]]],[3,2,2,11,13,[[125,1,1,11,12],[138,1,1,12,13]]],[4,3,3,13,16,[[153,1,1,13,14],[160,1,1,14,15],[163,1,1,15,16]]],[5,1,1,16,17,[[190,1,1,16,17]]],[6,4,4,17,21,[[215,1,1,17,18],[227,2,2,18,20],[228,1,1,20,21]]],[7,1,1,21,22,[[232,1,1,21,22]]],[8,3,3,22,25,[[255,1,1,22,23],[258,2,2,23,25]]],[9,2,2,25,27,[[268,1,1,25,26],[281,1,1,26,27]]],[10,2,2,27,29,[[303,1,1,27,28],[311,1,1,28,29]]],[13,2,2,29,31,[[369,1,1,29,30],[391,1,1,30,31]]],[14,1,1,31,32,[[403,1,1,31,32]]],[17,1,1,32,33,[[474,1,1,32,33]]],[18,1,1,33,34,[[561,1,1,33,34]]],[20,1,1,34,35,[[666,1,1,34,35]]],[22,1,1,35,36,[[742,1,1,35,36]]],[23,3,3,36,39,[[751,1,1,36,37],[760,1,1,37,38],[786,1,1,38,39]]],[25,3,3,39,42,[[812,1,1,39,40],[822,1,1,40,41],[847,1,1,41,42]]],[27,1,1,42,43,[[862,1,1,42,43]]]],[1024,1025,1026,1169,1829,2075,2819,2828,2874,2881,3124,3982,4401,4923,5152,5218,5913,6650,6988,6989,7003,7143,7749,7832,7833,8072,8421,9209,9470,11230,11708,12020,13864,15262,17468,18896,19131,19349,19989,20672,20974,21675,22104]]],["whereabout",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7774]]],["whereby",[17,15,[[2,1,1,0,1,[[111,1,1,0,1]]],[3,2,2,1,3,[[121,1,1,1,2],[133,1,1,2,3]]],[4,2,2,3,5,[[159,1,1,3,4],[180,1,1,4,5]]],[23,6,4,5,9,[[747,1,1,5,6],[761,1,1,6,7],[767,1,1,7,8],[777,3,1,8,9]]],[25,5,5,9,14,[[819,1,1,9,10],[840,1,1,10,11],[841,1,1,11,12],[847,1,1,12,13],[848,1,1,13,14]]],[35,1,1,14,15,[[907,1,1,14,15]]]],[3374,3800,4249,5130,5631,19010,19376,19490,19783,20880,21474,21526,21664,21692,22813]]],["wherein",[69,67,[[0,4,4,0,4,[[0,1,1,0,1],[5,1,1,1,2],[6,1,1,2,3],[20,1,1,3,4]]],[1,4,4,4,8,[[50,1,1,4,5],[55,1,1,5,6],[61,1,1,6,7],[67,1,1,7,8]]],[2,9,9,8,17,[[93,1,1,8,9],[94,1,1,9,10],[95,1,1,10,11],[100,1,1,11,12],[102,4,4,12,16],[107,1,1,16,17]]],[3,5,4,17,21,[[128,2,1,17,18],[135,1,1,18,19],[149,1,1,19,20],[151,1,1,20,21]]],[4,4,4,21,25,[[160,1,1,21,22],[164,1,1,22,23],[169,1,1,23,24],[180,1,1,24,25]]],[5,4,4,25,29,[[194,1,1,25,26],[208,2,2,26,28],[210,1,1,28,29]]],[6,1,1,29,30,[[228,1,1,29,30]]],[8,1,1,30,31,[[241,1,1,30,31]]],[9,1,1,31,32,[[273,1,1,31,32]]],[10,3,3,32,35,[[292,1,1,32,33],[298,1,1,33,34],[303,1,1,34,35]]],[11,3,3,35,38,[[324,1,1,35,36],[326,1,1,36,37],[330,1,1,37,38]]],[13,3,3,38,41,[[372,1,1,38,39],[374,1,1,39,40],[399,1,1,40,41]]],[15,2,2,41,43,[[421,2,2,41,43]]],[16,2,2,43,45,[[430,1,1,43,44],[434,1,1,44,45]]],[20,2,2,45,47,[[661,1,1,45,46],[666,1,1,46,47]]],[22,4,4,47,51,[[692,1,1,47,48],[714,1,1,48,49],[725,1,1,49,50],[743,1,1,50,51]]],[23,6,5,51,56,[[749,1,1,51,52],[751,1,1,52,53],[764,2,1,53,54],[780,1,1,54,55],[786,1,1,55,56]]],[25,8,8,56,64,[[821,3,3,56,59],[824,1,1,59,60],[838,2,2,60,62],[843,1,1,62,63],[845,1,1,63,64]]],[27,1,1,64,65,[[863,1,1,64,65]]],[31,1,1,65,66,[[892,1,1,65,66]]],[35,1,1,66,67,[[908,1,1,66,67]]]],[29,154,174,536,1546,1659,1823,2010,2818,2848,2877,3029,3098,3104,3106,3109,3254,4070,4291,4815,4878,5146,5247,5365,5663,6026,6445,6459,6493,6999,7346,8187,8796,9035,9215,9852,9902,10043,11309,11347,11927,12523,12530,12790,12856,17368,17467,17931,18334,18611,18909,19075,19133,19436,19856,19978,20929,20936,20938,21026,21420,21422,21566,21618,22118,22579,22831]]],["whereof",[21,21,[[2,1,1,0,1,[[95,1,1,0,1]]],[3,2,2,1,3,[[121,1,1,1,2],[137,1,1,2,3]]],[4,3,3,3,6,[[165,1,1,3,4],[180,2,2,4,6]]],[5,3,3,6,9,[[200,1,1,6,7],[206,1,1,7,8],[208,1,1,8,9]]],[8,1,1,9,10,[[245,1,1,9,10]]],[11,2,2,10,12,[[325,1,1,10,11],[329,1,1,11,12]]],[13,2,2,12,14,[[372,1,1,12,13],[399,1,1,13,14]]],[17,1,1,14,15,[[441,1,1,14,15]]],[23,3,3,15,18,[[776,2,2,15,17],[786,1,1,17,18]]],[25,1,1,18,19,[[840,1,1,18,19]]],[26,1,1,19,20,[[858,1,1,19,20]]],[27,1,1,20,21,[[863,1,1,20,21]]]],[2879,3795,4356,5274,5638,5679,6199,6374,6435,7434,9885,9995,11302,11912,12982,19767,19774,19991,21456,21990,22117]]],["whereon",[2,2,[[4,1,1,0,1,[[163,1,1,0,1]]],[5,1,1,1,2,[[200,1,1,1,2]]]],[5232,6196]]],["wheresoever",[1,1,[[11,1,1,0,1,[[320,1,1,0,1]]]],[9728]]],["whereto",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18751]]],["whereunto",[4,4,[[3,2,2,0,2,[[152,2,2,0,2]]],[16,1,1,2,3,[[435,1,1,2,3]]],[25,1,1,3,4,[[806,1,1,3,4]]]],[4882,4883,12868,20555]]],["wherewith",[65,63,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,5,5,1,6,[[52,1,1,1,2],[53,1,1,2,3],[65,1,1,3,4],[66,1,1,4,5],[78,1,1,5,6]]],[3,17,16,6,22,[[119,1,1,6,7],[120,3,3,7,10],[132,1,1,10,11],[141,1,1,11,12],[146,8,7,12,19],[151,3,3,19,22]]],[4,8,8,22,30,[[161,1,1,22,23],[167,1,1,23,24],[174,1,1,24,25],[180,4,4,25,29],[185,1,1,29,30]]],[5,1,1,30,31,[[194,1,1,30,31]]],[6,2,2,31,33,[[219,2,2,31,33]]],[9,2,1,33,34,[[279,2,1,33,34]]],[10,7,7,34,41,[[298,1,1,34,35],[305,4,4,35,39],[306,1,1,39,40],[311,1,1,40,41]]],[11,4,4,41,45,[[325,1,1,41,42],[333,1,1,42,43],[335,1,1,43,44],[337,1,1,44,45]]],[13,2,2,45,47,[[368,1,1,45,46],[382,1,1,46,47]]],[15,1,1,47,48,[[421,1,1,47,48]]],[18,2,2,48,50,[[556,1,1,48,49],[566,1,1,49,50]]],[22,1,1,50,51,[[715,1,1,50,51]]],[23,5,5,51,56,[[762,1,1,51,52],[763,1,1,52,53],[765,1,1,53,54],[777,1,1,54,55],[796,1,1,55,56]]],[24,1,1,56,57,[[797,1,1,56,57]]],[25,4,4,57,61,[[814,2,2,57,59],[830,1,1,59,60],[841,1,1,60,61]]],[37,2,2,61,63,[[924,2,2,61,63]]]],[768,1588,1618,1979,1988,2369,3723,3752,3755,3757,4233,4489,4652,4653,4654,4655,4656,4657,4659,4862,4863,4868,5176,5333,5482,5664,5666,5668,5678,5811,6028,6763,6792,8332,9044,9271,9275,9279,9283,9309,9473,9883,10135,10191,10236,11228,11515,12545,15197,15377,18358,19394,19416,19444,19791,20294,20322,20720,20728,21203,21519,23080,23086]]],["whether",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12773]]],["which",[1777,1609,[[0,154,138,0,138,[[0,5,3,0,3],[1,4,3,3,6],[2,3,3,6,9],[3,1,1,9,10],[4,1,1,10,11],[5,3,3,11,14],[6,1,1,14,15],[7,1,1,15,16],[8,3,3,16,19],[10,2,2,19,21],[12,3,3,21,24],[13,5,4,24,28],[15,1,1,28,29],[16,3,3,29,32],[17,3,3,32,35],[18,4,4,35,39],[19,2,2,39,41],[20,4,4,41,45],[21,4,4,45,49],[22,6,3,49,52],[23,4,3,52,55],[24,4,4,55,59],[25,6,5,59,64],[26,5,5,64,69],[27,3,3,69,72],[28,1,1,72,73],[29,4,4,73,77],[30,5,4,77,81],[31,3,3,81,84],[32,3,3,84,87],[33,3,2,87,89],[34,7,5,89,94],[35,2,2,94,96],[36,1,1,96,97],[37,2,2,97,99],[38,5,5,99,104],[39,1,1,104,105],[40,6,5,105,110],[41,2,2,110,112],[42,2,2,112,114],[43,2,2,114,116],[44,3,2,116,118],[45,8,8,118,126],[46,2,2,126,128],[47,2,2,128,130],[48,3,2,130,132],[49,6,6,132,138]]],[1,98,92,138,230,[[50,2,2,138,140],[52,2,2,140,142],[53,5,5,142,147],[54,2,2,147,149],[55,1,1,149,150],[56,2,2,150,152],[57,2,2,152,154],[58,2,2,154,156],[59,3,3,156,159],[61,3,3,159,162],[62,3,3,162,165],[63,2,2,165,167],[64,1,1,167,168],[65,9,7,168,175],[67,2,2,175,177],[68,2,2,177,179],[69,2,2,179,181],[70,1,1,181,182],[71,1,1,182,183],[72,2,2,183,185],[73,3,3,185,188],[74,5,4,188,192],[75,1,1,192,193],[76,1,1,193,194],[77,4,4,194,198],[78,4,3,198,201],[79,1,1,201,202],[81,14,13,202,215],[82,3,2,215,217],[83,4,4,217,221],[84,3,3,221,224],[85,3,3,224,227],[86,1,1,227,228],[87,1,1,228,229],[88,1,1,229,230]]],[2,102,93,230,323,[[90,2,2,230,232],[91,1,1,232,233],[92,4,4,233,237],[93,13,10,237,247],[94,5,5,247,252],[95,8,5,252,257],[96,4,4,257,261],[97,3,3,261,264],[98,5,5,264,269],[99,3,3,269,272],[100,9,8,272,280],[102,1,1,280,281],[103,1,1,281,282],[105,7,6,282,288],[106,4,4,288,292],[107,4,4,292,296],[108,3,2,296,298],[109,3,3,298,301],[110,1,1,301,302],[111,5,5,302,307],[112,3,3,307,310],[114,6,6,310,316],[115,3,3,316,319],[116,4,4,319,323]]],[3,111,100,323,423,[[117,2,2,323,325],[119,2,2,325,327],[120,2,2,327,329],[121,2,2,329,331],[122,3,3,331,334],[124,1,1,334,335],[126,1,1,335,336],[127,4,4,336,340],[128,1,1,340,341],[129,5,4,341,345],[130,16,14,345,359],[131,4,4,359,363],[134,9,9,363,372],[135,3,2,372,374],[136,2,2,374,376],[137,4,4,376,380],[138,5,4,380,384],[139,1,1,384,385],[140,2,2,385,387],[143,5,2,387,389],[144,2,2,389,391],[146,3,3,391,394],[147,6,6,394,400],[148,6,6,400,406],[149,5,5,406,411],[150,3,2,411,413],[151,10,8,413,421],[152,2,2,421,423]]],[4,297,261,423,684,[[153,12,10,423,433],[154,5,5,433,438],[155,7,6,438,444],[156,22,18,444,462],[157,8,6,462,468],[158,14,11,468,479],[159,7,7,479,486],[160,9,8,486,494],[161,13,11,494,505],[162,7,7,505,512],[163,16,14,512,526],[164,17,13,526,539],[165,8,7,539,546],[166,7,6,546,552],[167,6,6,552,558],[168,14,14,558,572],[169,11,8,572,580],[170,9,8,580,588],[171,9,8,588,596],[172,5,5,596,601],[173,7,6,601,607],[174,3,3,607,610],[175,3,3,610,613],[176,4,3,613,616],[177,3,3,616,619],[178,9,8,619,627],[179,5,5,627,632],[180,23,22,632,654],[181,9,8,654,662],[182,6,6,662,668],[183,11,10,668,678],[184,5,3,678,681],[186,3,3,681,684]]],[5,86,76,684,760,[[187,8,7,684,691],[188,4,4,691,695],[189,1,1,695,696],[190,2,2,696,698],[191,3,2,698,700],[192,1,1,700,701],[193,5,3,701,704],[194,4,4,704,708],[195,5,5,708,713],[196,1,1,713,714],[198,4,4,714,718],[199,7,7,718,725],[200,2,1,725,726],[201,2,2,726,728],[203,1,1,728,729],[204,5,5,729,734],[205,2,2,734,736],[207,3,3,736,739],[208,6,6,739,745],[209,6,4,745,749],[210,14,11,749,760]]],[6,48,45,760,805,[[211,1,1,760,761],[212,6,5,761,766],[213,3,3,766,769],[214,2,2,769,771],[216,4,4,771,775],[218,1,1,775,776],[219,3,2,776,778],[220,3,3,778,781],[221,4,4,781,785],[223,1,1,785,786],[225,1,1,786,787],[226,4,4,787,791],[228,6,5,791,796],[229,1,1,796,797],[230,5,5,797,802],[231,3,3,802,805]]],[7,7,6,805,811,[[233,1,1,805,806],[235,6,5,806,811]]],[8,73,64,811,875,[[236,1,1,811,812],[237,4,4,812,816],[238,3,3,816,819],[241,4,4,819,823],[242,1,1,823,824],[243,2,2,824,826],[244,2,1,826,827],[245,1,1,827,828],[247,4,4,828,832],[248,3,3,832,835],[249,5,5,835,840],[250,3,3,840,843],[251,2,2,843,845],[252,3,3,845,848],[255,3,3,848,851],[258,1,1,851,852],[259,1,1,852,853],[260,7,7,853,860],[261,1,1,860,861],[263,1,1,861,862],[264,2,2,862,864],[265,18,10,864,874],[266,1,1,874,875]]],[9,35,35,875,910,[[268,2,2,875,877],[269,2,2,877,879],[270,1,1,879,880],[272,3,3,880,883],[273,2,2,883,885],[274,1,1,885,886],[278,1,1,886,887],[279,2,2,887,889],[280,2,2,889,891],[281,3,3,891,894],[282,3,3,894,897],[283,1,1,897,898],[284,2,2,898,900],[285,2,2,900,902],[286,2,2,902,904],[287,3,3,904,907],[289,1,1,907,908],[290,2,2,908,910]]],[10,142,126,910,1036,[[291,3,3,910,913],[292,5,5,913,918],[293,4,4,918,922],[294,7,6,922,928],[295,4,4,928,932],[296,3,2,932,934],[297,4,4,934,938],[298,21,17,938,955],[299,13,12,955,967],[300,7,7,967,974],[301,7,7,974,981],[302,10,8,981,989],[303,11,9,989,998],[304,7,7,998,1005],[305,7,6,1005,1011],[306,10,8,1011,1019],[307,2,2,1019,1021],[308,3,2,1021,1023],[309,3,2,1023,1025],[310,2,2,1025,1027],[311,6,6,1027,1033],[312,3,3,1033,1036]]],[11,90,81,1036,1117,[[313,3,3,1036,1039],[314,2,2,1039,1041],[315,2,2,1041,1043],[317,1,1,1043,1044],[318,1,1,1044,1045],[319,2,2,1045,1047],[320,1,1,1047,1048],[321,3,3,1048,1051],[322,5,4,1051,1055],[325,2,2,1055,1057],[326,4,3,1057,1060],[327,2,2,1060,1062],[328,2,2,1062,1064],[329,10,9,1064,1073],[330,7,7,1073,1080],[331,9,7,1080,1087],[332,4,4,1087,1091],[333,7,6,1091,1097],[334,5,5,1097,1102],[335,13,10,1102,1112],[336,2,2,1112,1114],[337,3,3,1114,1117]]],[12,21,20,1117,1137,[[340,1,1,1117,1118],[341,2,2,1118,1120],[343,1,1,1120,1121],[347,2,1,1121,1122],[349,1,1,1122,1123],[350,1,1,1123,1124],[351,1,1,1124,1125],[352,1,1,1125,1126],[353,2,2,1126,1128],[354,1,1,1128,1129],[358,3,3,1129,1132],[359,1,1,1132,1133],[360,1,1,1133,1134],[363,1,1,1134,1135],[364,1,1,1135,1136],[366,1,1,1136,1137]]],[13,94,86,1137,1223,[[367,2,2,1137,1139],[368,4,4,1139,1143],[370,2,2,1143,1145],[371,2,2,1145,1147],[372,21,17,1147,1164],[373,8,7,1164,1171],[374,4,4,1171,1175],[375,6,6,1175,1181],[376,3,3,1181,1184],[377,2,2,1184,1186],[378,3,3,1186,1189],[379,2,2,1189,1191],[381,1,1,1191,1192],[382,2,1,1192,1193],[383,1,1,1193,1194],[386,1,1,1194,1195],[388,1,1,1195,1196],[389,1,1,1196,1197],[390,1,1,1197,1198],[391,4,4,1198,1202],[392,1,1,1202,1203],[394,2,2,1203,1205],[395,2,2,1205,1207],[396,2,2,1207,1209],[398,1,1,1209,1210],[399,7,5,1210,1215],[400,4,4,1215,1219],[401,1,1,1219,1220],[402,3,3,1220,1223]]],[14,13,10,1223,1233,[[403,5,4,1223,1227],[404,2,2,1227,1229],[409,3,2,1229,1231],[411,2,1,1231,1232],[412,1,1,1232,1233]]],[15,20,19,1233,1252,[[413,4,3,1233,1236],[414,2,2,1236,1238],[416,2,2,1238,1240],[417,1,1,1240,1241],[419,2,2,1241,1243],[420,3,3,1243,1246],[421,5,5,1246,1251],[422,1,1,1251,1252]]],[16,21,19,1252,1271,[[426,4,4,1252,1256],[427,2,2,1256,1258],[428,1,1,1258,1259],[429,2,2,1259,1261],[431,2,1,1261,1262],[432,1,1,1262,1263],[433,6,5,1263,1268],[434,3,3,1268,1271]]],[17,7,7,1271,1278,[[438,1,1,1271,1272],[444,1,1,1272,1273],[450,1,1,1273,1274],[457,1,1,1274,1275],[462,1,1,1275,1276],[471,1,1,1276,1277],[475,1,1,1277,1278]]],[18,17,17,1278,1295,[[478,1,1,1278,1279],[485,1,1,1279,1280],[508,1,1,1280,1281],[543,1,1,1281,1282],[546,1,1,1282,1283],[548,2,2,1283,1285],[555,2,2,1285,1287],[557,1,1,1287,1288],[581,1,1,1288,1289],[596,5,5,1289,1294],[624,1,1,1294,1295]]],[19,2,2,1295,1297,[[649,1,1,1295,1296],[652,1,1,1296,1297]]],[20,17,15,1297,1312,[[659,1,1,1297,1298],[660,2,2,1298,1300],[661,2,2,1300,1302],[662,1,1,1302,1303],[663,3,2,1303,1305],[664,1,1,1305,1306],[665,2,2,1306,1308],[666,3,3,1308,1311],[667,2,1,1311,1312]]],[21,1,1,1312,1313,[[671,1,1,1312,1313]]],[22,50,46,1313,1359,[[679,2,2,1313,1315],[680,2,2,1315,1317],[689,3,3,1317,1320],[691,2,2,1320,1322],[695,2,2,1322,1324],[696,1,1,1324,1325],[697,3,3,1325,1328],[699,1,1,1328,1329],[700,1,1,1329,1330],[706,4,3,1330,1333],[707,1,1,1333,1334],[708,2,2,1334,1336],[709,1,1,1336,1337],[714,1,1,1337,1338],[715,6,5,1338,1343],[716,2,1,1343,1344],[717,3,3,1344,1347],[729,2,2,1347,1349],[730,2,1,1349,1350],[733,1,1,1350,1351],[737,1,1,1351,1352],[740,2,2,1352,1354],[741,1,1,1354,1355],[743,2,2,1355,1357],[744,2,2,1357,1359]]],[23,126,114,1359,1473,[[747,1,1,1359,1360],[749,1,1,1360,1361],[751,8,6,1361,1367],[752,1,1,1367,1368],[753,2,2,1368,1370],[754,1,1,1370,1371],[755,7,6,1371,1377],[756,1,1,1377,1378],[757,3,3,1378,1381],[759,1,1,1381,1382],[761,2,2,1382,1384],[762,1,1,1384,1385],[763,3,3,1385,1388],[764,2,2,1388,1390],[765,1,1,1390,1391],[766,2,2,1391,1393],[767,5,4,1393,1397],[768,2,2,1397,1399],[769,7,6,1399,1405],[770,3,3,1405,1408],[771,1,1,1408,1409],[772,3,3,1409,1412],[773,4,4,1412,1416],[776,7,6,1416,1422],[777,4,4,1422,1426],[778,8,7,1426,1433],[779,5,4,1433,1437],[780,6,6,1437,1443],[781,2,2,1443,1445],[782,1,1,1445,1446],[783,1,1,1446,1447],[784,3,3,1447,1450],[785,3,3,1450,1453],[786,4,4,1453,1457],[787,2,2,1457,1459],[788,4,4,1459,1463],[789,2,1,1463,1464],[790,3,2,1464,1466],[793,1,1,1466,1467],[795,2,2,1467,1469],[796,6,4,1469,1473]]],[24,2,2,1473,1475,[[797,1,1,1473,1474],[798,1,1,1474,1475]]],[25,90,81,1475,1556,[[804,2,2,1475,1477],[805,1,1,1477,1478],[806,3,2,1478,1480],[807,2,1,1480,1481],[809,2,2,1481,1483],[810,4,4,1483,1487],[811,1,1,1487,1488],[812,1,1,1488,1489],[813,2,2,1489,1491],[816,2,2,1491,1493],[817,8,8,1493,1501],[818,1,1,1501,1502],[819,2,2,1502,1504],[821,6,6,1504,1510],[823,3,2,1510,1512],[827,3,2,1512,1514],[828,1,1,1514,1515],[830,1,1,1515,1516],[833,7,6,1516,1522],[834,1,1,1522,1523],[836,2,2,1523,1525],[837,5,5,1525,1530],[838,1,1,1530,1531],[839,1,1,1531,1532],[840,1,1,1532,1533],[841,3,3,1533,1536],[842,4,3,1536,1539],[843,6,5,1539,1544],[844,1,1,1544,1545],[845,2,2,1545,1547],[847,1,1,1547,1548],[848,5,4,1548,1552],[849,5,4,1552,1556]]],[26,15,15,1556,1571,[[850,1,1,1556,1557],[857,4,4,1557,1561],[858,6,6,1561,1567],[860,2,2,1567,1569],[861,2,2,1569,1571]]],[27,1,1,1571,1572,[[862,1,1,1571,1572]]],[28,1,1,1572,1573,[[877,1,1,1572,1573]]],[29,7,7,1573,1580,[[879,1,1,1573,1574],[880,1,1,1574,1575],[881,1,1,1575,1576],[883,2,2,1576,1578],[887,2,2,1578,1580]]],[30,1,1,1580,1581,[[888,1,1,1580,1581]]],[31,2,2,1581,1583,[[889,1,1,1581,1582],[892,1,1,1582,1583]]],[32,4,4,1583,1587,[[893,1,1,1583,1584],[894,1,1,1584,1585],[898,1,1,1585,1586],[899,1,1,1586,1587]]],[34,1,1,1587,1588,[[903,1,1,1587,1588]]],[35,2,2,1588,1590,[[906,1,1,1588,1589],[907,1,1,1589,1590]]],[36,2,2,1590,1592,[[909,1,1,1590,1591],[910,1,1,1591,1592]]],[37,15,15,1592,1607,[[911,4,4,1592,1596],[914,2,2,1596,1598],[916,2,2,1598,1600],[917,3,3,1600,1603],[918,1,1,1603,1604],[921,1,1,1604,1605],[923,1,1,1605,1606],[924,1,1,1606,1607]]],[38,2,2,1607,1609,[[926,1,1,1607,1608],[928,1,1,1608,1609]]]],[6,20,28,32,33,52,56,58,72,90,134,139,141,152,182,189,217,220,222,271,272,322,333,336,342,351,356,360,396,407,409,418,432,441,443,462,465,476,478,498,508,515,522,538,542,549,550,556,564,580,587,588,598,615,639,664,665,667,668,694,695,707,710,724,735,742,744,754,772,777,788,795,822,856,860,867,868,889,891,916,924,938,940,960,965,968,978,981,1008,1014,1015,1017,1023,1037,1045,1046,1089,1129,1133,1150,1155,1166,1168,1172,1177,1223,1231,1238,1243,1245,1261,1290,1292,1316,1329,1332,1364,1385,1391,1392,1401,1406,1408,1411,1413,1417,1434,1442,1457,1473,1474,1503,1511,1516,1517,1519,1521,1530,1540,1547,1586,1599,1610,1619,1622,1629,1631,1640,1646,1663,1700,1702,1722,1732,1745,1761,1779,1783,1792,1832,1841,1855,1870,1872,1879,1902,1920,1946,1948,1952,1955,1962,1963,1970,1979,2002,2008,2032,2033,2053,2063,2078,2122,2160,2164,2180,2185,2189,2198,2211,2217,2235,2265,2293,2297,2301,2319,2331,2363,2371,2374,2419,2439,2440,2441,2442,2445,2446,2449,2452,2458,2461,2470,2472,2473,2474,2480,2497,2506,2507,2530,2532,2535,2560,2569,2570,2578,2620,2641,2683,2753,2757,2773,2782,2783,2788,2793,2797,2798,2802,2804,2808,2809,2813,2817,2822,2823,2836,2837,2838,2840,2847,2853,2854,2859,2864,2869,2883,2887,2890,2900,2922,2947,2953,2958,2959,2961,2968,2971,2978,2983,2988,2999,3007,3018,3020,3023,3031,3034,3036,3110,3145,3203,3207,3210,3211,3212,3224,3237,3240,3243,3248,3256,3275,3278,3281,3303,3317,3341,3342,3343,3348,3371,3372,3375,3384,3387,3406,3412,3440,3471,3500,3507,3511,3513,3514,3537,3564,3570,3592,3596,3599,3604,3621,3648,3718,3731,3769,3780,3799,3801,3828,3841,3844,3943,4017,4029,4036,4041,4044,4062,4077,4091,4099,4107,4115,4116,4119,4123,4124,4130,4131,4135,4137,4138,4139,4142,4144,4148,4155,4175,4192,4194,4266,4269,4270,4272,4276,4278,4281,4283,4285,4291,4304,4323,4335,4351,4353,4370,4374,4380,4395,4405,4411,4428,4450,4458,4566,4571,4580,4600,4649,4662,4664,4676,4685,4696,4706,4712,4713,4722,4725,4727,4729,4756,4757,4761,4764,4766,4767,4815,4829,4833,4849,4851,4852,4853,4858,4870,4876,4879,4885,4892,4893,4896,4900,4906,4910,4911,4912,4917,4927,4931,4950,4952,4967,4973,4974,4977,4979,4987,4994,4995,5003,5005,5006,5010,5012,5013,5017,5023,5025,5027,5032,5035,5036,5044,5046,5048,5049,5051,5052,5054,5059,5069,5081,5084,5086,5087,5088,5092,5096,5097,5098,5100,5103,5104,5106,5109,5119,5122,5123,5124,5126,5127,5130,5138,5139,5140,5147,5148,5153,5155,5157,5162,5166,5167,5169,5173,5175,5178,5180,5183,5185,5186,5188,5190,5191,5197,5199,5203,5207,5210,5211,5215,5216,5217,5220,5221,5225,5229,5230,5235,5236,5239,5240,5241,5245,5249,5250,5251,5254,5255,5257,5258,5261,5266,5268,5271,5274,5277,5278,5279,5284,5285,5290,5294,5302,5313,5314,5315,5319,5322,5323,5324,5326,5327,5339,5344,5346,5347,5348,5349,5352,5353,5357,5358,5359,5360,5362,5363,5364,5366,5367,5369,5372,5374,5375,5378,5379,5390,5393,5398,5401,5403,5404,5405,5406,5408,5409,5410,5414,5415,5416,5420,5423,5441,5442,5443,5445,5447,5448,5449,5450,5451,5463,5470,5473,5479,5498,5515,5516,5523,5528,5529,5530,5553,5562,5566,5567,5568,5569,5576,5577,5579,5581,5585,5586,5587,5588,5589,5595,5612,5619,5622,5624,5625,5626,5644,5645,5647,5656,5659,5661,5662,5663,5664,5665,5667,5668,5671,5672,5675,5678,5680,5682,5691,5695,5696,5701,5702,5704,5709,5713,5715,5716,5719,5728,5733,5735,5739,5741,5744,5746,5748,5749,5751,5757,5804,5807,5810,5843,5850,5851,5853,5857,5858,5862,5864,5865,5866,5872,5886,5887,5889,5897,5930,5933,5935,5940,5974,5978,5987,5990,6029,6033,6034,6037,6038,6047,6050,6057,6064,6075,6131,6132,6137,6139,6157,6162,6164,6166,6175,6184,6186,6188,6209,6210,6280,6295,6296,6300,6309,6310,6371,6372,6390,6424,6426,6430,6431,6435,6443,6454,6456,6473,6474,6475,6476,6481,6489,6490,6491,6493,6499,6503,6506,6507,6508,6509,6525,6546,6555,6562,6565,6566,6569,6572,6588,6610,6613,6656,6665,6667,6680,6754,6778,6810,6815,6819,6825,6853,6857,6865,6868,6892,6948,6957,6973,6978,6979,6998,7009,7017,7020,7024,7038,7063,7067,7085,7090,7096,7114,7116,7121,7160,7193,7201,7202,7204,7205,7239,7260,7269,7272,7275,7287,7288,7289,7335,7338,7339,7348,7366,7377,7387,7414,7420,7467,7476,7477,7481,7490,7498,7499,7510,7512,7522,7529,7538,7562,7574,7580,7599,7614,7619,7649,7658,7753,7766,7767,7829,7843,7868,7888,7893,7894,7895,7896,7905,7908,7963,7968,7970,7988,7992,7995,7999,8001,8005,8006,8007,8008,8009,8020,8065,8081,8089,8095,8128,8161,8178,8179,8192,8203,8220,8289,8327,8340,8363,8370,8393,8396,8407,8437,8447,8449,8459,8496,8506,8527,8530,8559,8562,8592,8596,8598,8668,8694,8716,8725,8726,8765,8774,8794,8797,8801,8814,8824,8829,8837,8844,8846,8856,8857,8863,8864,8878,8881,8885,8886,8894,8898,8908,8951,8954,8975,8979,8994,9000,9006,9011,9013,9014,9019,9021,9023,9025,9028,9029,9033,9036,9041,9043,9048,9052,9054,9057,9058,9063,9064,9066,9070,9071,9075,9076,9077,9082,9084,9086,9088,9089,9092,9103,9110,9118,9119,9121,9131,9140,9144,9155,9159,9160,9166,9179,9182,9183,9184,9187,9188,9189,9195,9196,9205,9206,9210,9216,9233,9236,9238,9239,9240,9242,9244,9252,9269,9272,9276,9278,9279,9295,9296,9298,9302,9307,9310,9315,9317,9326,9333,9344,9367,9390,9405,9427,9442,9452,9455,9462,9466,9469,9476,9518,9519,9526,9540,9550,9551,9566,9573,9579,9587,9667,9684,9720,9722,9756,9771,9783,9792,9803,9810,9824,9826,9873,9896,9907,9911,9921,9937,9940,9977,9982,9991,9996,9998,10002,10005,10009,10012,10017,10020,10030,10038,10040,10041,10042,10045,10061,10063,10065,10067,10073,10077,10081,10089,10109,10115,10116,10117,10122,10123,10126,10127,10130,10144,10149,10150,10161,10163,10165,10173,10175,10176,10177,10178,10180,10181,10182,10184,10192,10204,10215,10226,10238,10241,10362,10395,10403,10519,10672,10751,10766,10778,10794,10836,10860,10874,10953,10958,10963,10977,10988,11103,11140,11183,11197,11200,11216,11220,11225,11226,11258,11259,11274,11278,11286,11297,11298,11299,11300,11301,11302,11303,11307,11309,11313,11314,11315,11316,11318,11320,11321,11330,11331,11338,11343,11344,11345,11346,11348,11350,11353,11358,11366,11368,11369,11372,11374,11376,11403,11404,11410,11424,11429,11441,11446,11450,11457,11461,11498,11523,11525,11598,11650,11665,11699,11713,11717,11719,11725,11755,11775,11779,11810,11823,11834,11835,11878,11911,11915,11916,11919,11930,11942,11944,11957,11959,11969,12001,12007,12016,12018,12019,12021,12023,12088,12095,12179,12200,12248,12266,12298,12302,12303,12315,12320,12362,12382,12400,12483,12492,12494,12497,12507,12526,12534,12537,12540,12546,12578,12704,12711,12720,12722,12728,12730,12750,12768,12778,12801,12816,12819,12822,12825,12826,12828,12847,12856,12859,12929,13056,13231,13404,13492,13760,13879,13943,14015,14350,14893,14939,14996,14999,15118,15181,15213,15587,15937,15945,15946,15947,15983,16360,17043,17114,17325,17336,17345,17369,17374,17384,17401,17415,17418,17442,17448,17470,17472,17473,17484,17538,17655,17683,17693,17705,17894,17895,17900,17907,17923,17991,17992,17998,18019,18020,18021,18045,18067,18165,18168,18178,18204,18241,18249,18257,18333,18356,18364,18369,18374,18381,18398,18418,18419,18420,18690,18696,18711,18751,18821,18856,18862,18873,18904,18915,18926,18944,19008,19080,19129,19130,19131,19133,19149,19150,19170,19188,19189,19202,19230,19231,19234,19236,19237,19243,19263,19270,19272,19276,19319,19361,19376,19385,19409,19410,19412,19424,19438,19441,19465,19482,19491,19492,19511,19524,19526,19532,19536,19547,19556,19560,19561,19563,19575,19576,19591,19604,19619,19624,19627,19643,19654,19657,19658,19733,19739,19753,19763,19765,19766,19784,19785,19789,19799,19802,19806,19809,19811,19815,19816,19819,19824,19827,19838,19839,19845,19846,19848,19869,19870,19874,19876,19893,19915,19933,19945,19948,19951,19966,19970,19974,19980,19983,19991,19996,19998,20006,20013,20019,20024,20032,20044,20046,20047,20155,20224,20271,20283,20295,20296,20301,20322,20349,20522,20525,20539,20555,20562,20572,20618,20621,20624,20625,20628,20633,20655,20678,20682,20708,20756,20760,20776,20779,20781,20798,20807,20813,20814,20821,20828,20863,20867,20906,20908,20910,20916,20923,20937,20980,20989,21106,21117,21148,21186,21257,21271,21272,21275,21277,21278,21309,21355,21356,21363,21364,21380,21381,21382,21416,21433,21467,21483,21517,21521,21532,21535,21541,21553,21555,21563,21565,21566,21575,21609,21612,21674,21688,21693,21695,21701,21710,21713,21724,21731,21747,21963,21967,21981,21987,21989,21994,21998,22000,22002,22006,22040,22060,22087,22088,22104,22336,22365,22383,22396,22424,22449,22507,22510,22530,22540,22578,22580,22598,22662,22684,22732,22788,22808,22851,22869,22884,22890,22897,22899,22924,22934,22953,22957,22965,22969,22974,22985,23038,23065,23072,23114,23142]]],["while",[2,2,[[5,1,1,0,1,[[200,1,1,0,1]]],[6,1,1,1,2,[[224,1,1,1,2]]]],[6197,6926]]],["whilst",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12404]]],["whither",[5,5,[[0,1,1,0,1,[[27,1,1,0,1]]],[3,1,1,1,2,[[129,1,1,1,2]]],[13,2,2,2,4,[[372,1,1,2,3],[376,1,1,3,4]]],[25,1,1,4,5,[[811,1,1,4,5]]]],[788,4102,11320,11397,20644]]],["whithersoever",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7823]]],["who",[88,84,[[0,3,3,0,3,[[23,2,2,0,2],[29,1,1,2,3]]],[1,6,5,3,8,[[53,1,1,3,4],[61,2,2,4,6],[67,2,1,6,7],[70,1,1,7,8]]],[3,5,5,8,13,[[122,1,1,8,9],[125,1,1,9,10],[132,1,1,10,11],[142,2,2,11,13]]],[4,4,4,13,17,[[154,1,1,13,14],[156,2,2,14,16],[185,1,1,16,17]]],[5,2,1,17,18,[[203,2,1,17,18]]],[6,2,2,18,20,[[212,1,1,18,19],[228,1,1,19,20]]],[7,2,2,20,22,[[233,2,2,20,22]]],[8,3,3,22,25,[[245,1,1,22,23],[249,1,1,23,24],[252,1,1,24,25]]],[9,3,3,25,28,[[270,2,2,25,27],[272,1,1,27,28]]],[10,13,11,28,39,[[292,2,2,28,30],[299,1,1,30,31],[302,2,2,31,33],[303,1,1,33,34],[304,5,3,34,37],[311,1,1,37,38],[312,1,1,38,39]]],[11,12,12,39,51,[[319,1,1,39,40],[322,1,1,40,41],[325,2,2,41,43],[326,1,1,43,44],[327,4,4,44,48],[329,1,1,48,49],[335,2,2,49,51]]],[12,3,3,51,54,[[339,1,1,51,52],[341,1,1,52,53],[353,1,1,53,54]]],[13,6,6,54,60,[[368,1,1,54,55],[374,1,1,55,56],[386,1,1,56,57],[388,1,1,57,58],[401,1,1,58,59],[402,1,1,59,60]]],[15,1,1,60,61,[[421,1,1,60,61]]],[16,4,4,61,65,[[427,1,1,61,62],[429,1,1,62,63],[431,1,1,63,64],[432,1,1,64,65]]],[18,6,6,65,71,[[485,1,1,65,66],[493,1,1,66,67],[501,1,1,67,68],[548,1,1,68,69],[596,1,1,69,70],[617,1,1,70,71]]],[20,4,4,71,75,[[662,2,2,71,73],[669,1,1,73,74],[670,1,1,74,75]]],[22,3,3,75,78,[[707,1,1,75,76],[715,1,1,76,77],[743,1,1,77,78]]],[23,2,2,78,80,[[745,1,1,78,79],[764,1,1,79,80]]],[26,1,1,80,81,[[850,1,1,80,81]]],[29,1,1,81,82,[[879,1,1,81,82]]],[32,1,1,82,83,[[897,1,1,82,83]]],[34,1,1,83,84,[[904,1,1,83,84]]]],[606,618,832,1629,1843,1856,2009,2085,3844,3971,4199,4498,4552,4963,5011,5050,5839,6291,6552,7022,7152,7169,7437,7553,7643,8129,8130,8177,8794,8802,9060,9160,9169,9210,9226,9232,9234,9462,9532,9724,9822,9877,9882,9920,9934,9943,9949,9953,10019,10180,10181,10313,10407,10861,11223,11354,11621,11653,11987,12006,12518,12739,12773,12795,12816,14013,14099,14245,14995,15936,16267,17384,17394,17518,17530,18215,18354,18913,18962,19437,21747,22365,22641,22753]]],["whom",[270,253,[[0,20,20,0,20,[[1,1,1,0,1],[2,1,1,1,2],[5,1,1,2,3],[14,1,1,3,4],[20,1,1,4,5],[21,1,1,5,6],[23,5,5,6,11],[24,1,1,11,12],[40,1,1,12,13],[42,2,2,13,15],[43,1,1,15,16],[44,1,1,16,17],[45,1,1,17,18],[47,2,2,18,20]]],[1,12,11,20,31,[[55,1,1,20,21],[63,1,1,21,22],[67,1,1,22,23],[71,1,1,23,24],[72,1,1,24,25],[77,1,1,25,26],[81,1,1,26,27],[82,3,2,27,29],[84,2,2,29,31]]],[2,9,8,31,39,[[95,1,1,31,32],[102,1,1,32,33],[103,1,1,33,34],[105,2,1,34,35],[106,1,1,35,36],[111,1,1,36,37],[114,1,1,37,38],[116,1,1,38,39]]],[3,17,16,39,55,[[119,1,1,39,40],[120,3,3,40,43],[121,1,1,43,44],[127,2,2,44,46],[128,2,2,46,48],[132,2,2,48,50],[133,1,1,50,51],[138,2,1,51,52],[142,1,1,52,53],[143,1,1,53,54],[150,1,1,54,55]]],[4,11,11,55,66,[[156,1,1,55,56],[159,1,1,56,57],[161,1,1,57,58],[169,1,1,58,59],[171,1,1,59,60],[173,1,1,60,61],[176,1,1,61,62],[180,1,1,62,63],[181,1,1,63,64],[185,1,1,64,65],[186,1,1,65,66]]],[5,4,4,66,70,[[188,1,1,66,67],[190,1,1,67,68],[191,1,1,68,69],[199,1,1,69,70]]],[6,6,6,70,76,[[214,1,1,70,71],[217,1,1,71,72],[218,2,2,72,74],[224,1,1,74,75],[231,1,1,75,76]]],[7,4,3,76,79,[[233,2,1,76,77],[235,2,2,77,79]]],[8,11,10,79,89,[[244,1,1,79,80],[245,1,1,80,81],[247,2,1,81,82],[251,1,1,82,83],[252,1,1,83,84],[256,1,1,84,85],[260,2,2,85,87],[263,1,1,87,88],[264,1,1,88,89]]],[9,11,10,89,99,[[273,3,3,89,92],[280,1,1,92,93],[282,1,1,93,94],[283,1,1,94,95],[285,1,1,95,96],[286,1,1,96,97],[287,2,1,97,98],[289,1,1,98,99]]],[10,9,9,99,108,[[295,1,1,99,100],[297,1,1,100,101],[299,1,1,101,102],[303,1,1,102,103],[307,2,2,103,105],[308,2,2,105,107],[311,1,1,107,108]]],[11,18,18,108,126,[[315,1,1,108,109],[317,1,1,109,110],[318,2,2,110,112],[320,1,1,112,113],[322,1,1,113,114],[329,6,6,114,120],[331,2,2,120,122],[333,2,2,122,124],[335,1,1,124,125],[337,1,1,125,126]]],[12,9,8,126,134,[[342,2,2,126,128],[343,1,1,128,129],[344,1,1,129,130],[348,2,2,130,132],[354,3,2,132,134]]],[13,10,10,134,144,[[367,1,1,134,135],[368,1,1,135,136],[374,1,1,136,137],[383,1,1,137,138],[386,1,1,138,139],[388,1,1,139,140],[389,1,1,140,141],[394,1,1,141,142],[399,2,2,142,144]]],[14,1,1,144,145,[[404,1,1,144,145]]],[15,3,3,145,148,[[413,1,1,145,146],[419,1,1,146,147],[421,1,1,147,148]]],[16,8,7,148,155,[[427,1,1,148,149],[429,1,1,149,150],[431,6,5,150,155]]],[18,12,12,155,167,[[518,1,1,155,156],[524,1,1,156,157],[546,1,1,157,158],[563,1,1,158,159],[565,1,1,159,160],[566,1,1,160,161],[571,1,1,161,162],[572,1,1,162,163],[582,1,1,163,164],[583,2,2,164,166],[584,1,1,166,167]]],[19,2,2,167,169,[[630,1,1,167,168],[652,1,1,168,169]]],[20,3,3,169,172,[[663,1,1,169,170],[664,1,1,170,171],[667,1,1,171,172]]],[22,14,13,172,185,[[686,2,2,172,174],[706,1,1,174,175],[709,1,1,175,176],[715,2,2,176,178],[719,2,2,178,180],[721,1,1,180,181],[725,1,1,181,182],[727,1,1,182,183],[728,2,1,183,184],[744,1,1,184,185]]],[23,42,37,185,222,[[745,1,1,185,186],[751,1,1,186,187],[752,5,1,187,188],[753,1,1,188,189],[755,1,1,189,190],[758,1,1,190,191],[762,1,1,191,192],[763,1,1,192,193],[764,1,1,193,194],[768,1,1,194,195],[769,1,1,195,196],[770,1,1,196,197],[771,1,1,197,198],[773,5,5,198,203],[774,1,1,203,204],[777,1,1,204,205],[778,2,2,205,207],[781,1,1,207,208],[782,1,1,208,209],[783,1,1,209,210],[784,1,1,210,211],[785,6,5,211,216],[786,3,3,216,219],[788,1,1,219,220],[794,1,1,220,221],[796,1,1,221,222]]],[24,2,2,222,224,[[797,1,1,222,223],[800,1,1,223,224]]],[25,16,14,224,238,[[810,1,1,224,225],[812,2,2,225,227],[817,2,2,227,229],[821,1,1,229,230],[824,7,5,230,235],[825,1,1,235,236],[829,1,1,236,237],[839,1,1,237,238]]],[26,5,5,238,243,[[850,2,2,238,240],[858,1,1,240,241],[860,2,2,241,243]]],[27,1,1,243,244,[[874,1,1,243,244]]],[28,2,2,244,246,[[877,1,1,244,245],[878,1,1,245,246]]],[37,4,4,246,250,[[911,2,2,246,248],[917,1,1,248,249],[922,1,1,249,250]]],[38,4,3,250,253,[[925,1,1,250,251],[926,1,1,251,252],[927,2,1,252,253]]]],[38,67,144,374,516,549,594,605,631,635,638,670,1233,1317,1319,1334,1362,1404,1460,1466,1681,1902,2008,2122,2171,2296,2451,2485,2492,2554,2555,2854,3097,3143,3233,3242,3374,3496,3594,3695,3784,3788,3789,3799,4040,4045,4060,4071,4199,4201,4249,4381,4548,4572,4845,5050,5130,5159,5379,5423,5455,5536,5666,5705,5818,5849,5879,5914,5940,6175,6621,6698,6734,6737,6929,7125,7168,7191,7202,7408,7442,7473,7598,7663,7781,7872,7886,7950,7972,8187,8195,8203,8363,8444,8452,8521,8557,8588,8661,8883,8942,9072,9207,9318,9337,9356,9372,9477,9590,9663,9693,9696,9732,9817,9991,9994,9998,10010,10011,10017,10065,10071,10121,10128,10170,10244,10434,10453,10485,10549,10683,10684,10869,10884,11205,11218,11354,11542,11597,11651,11674,11767,11910,11917,12028,12306,12426,12548,12730,12767,12799,12800,12802,12804,12806,14551,14629,14961,15293,15313,15347,15443,15465,15632,15685,15689,15701,16467,17120,17416,17419,17484,17819,17825,18176,18256,18356,18362,18459,18460,18515,18614,18639,18663,18935,18948,19128,19155,19191,19238,19309,19392,19411,19428,19529,19551,19577,19601,19636,19638,19639,19655,19657,19676,19780,19812,19817,19875,19904,19940,19946,19959,19966,19967,19973,19975,19981,19984,19986,20013,20186,20304,20320,20440,20628,20662,20670,20782,20799,20904,21014,21016,21035,21044,21047,21077,21182,21442,21741,21748,22009,22074,22075,22276,22343,22345,22882,22888,22976,23055,23093,23117,23121]]],["whomsoever",[2,2,[[0,2,2,0,2,[[30,1,1,0,1],[43,1,1,1,2]]]],[905,1333]]],["whose",[69,68,[[0,5,5,0,5,[[0,2,2,0,2],[23,1,1,2,3],[37,1,1,3,4],[43,1,1,4,5]]],[1,5,4,5,9,[[84,3,3,5,8],[85,2,1,8,9]]],[2,5,5,9,14,[[103,1,1,9,10],[104,1,1,10,11],[105,1,1,11,12],[110,1,1,12,13],[111,1,1,13,14]]],[4,3,3,14,17,[[160,1,1,14,15],[180,1,1,15,16],[181,1,1,16,17]]],[6,1,1,17,18,[[216,1,1,17,18]]],[7,2,2,18,20,[[233,1,1,18,19],[234,1,1,19,20]]],[8,1,1,20,21,[[245,1,1,20,21]]],[9,3,3,21,24,[[272,1,1,21,22],[282,1,1,22,23],[283,1,1,23,24]]],[10,1,1,24,25,[[293,1,1,24,25]]],[11,3,3,25,28,[[319,2,2,25,27],[324,1,1,27,28]]],[12,1,1,28,29,[[350,1,1,28,29]]],[17,5,5,29,34,[[438,1,1,29,30],[439,1,1,30,31],[447,2,2,31,33],[465,1,1,33,34]]],[18,3,3,34,37,[[503,1,1,34,35],[510,1,1,35,36],[621,1,1,36,37]]],[22,10,10,37,47,[[680,1,1,37,38],[684,1,1,38,39],[696,2,2,39,41],[701,1,1,41,42],[708,1,1,42,43],[709,1,1,43,44],[714,1,1,44,45],[723,1,1,45,46],[736,1,1,46,47]]],[23,5,5,47,52,[[763,1,1,47,48],[766,1,1,48,49],[776,1,1,49,50],[777,1,1,50,51],[793,1,1,51,52]]],[25,13,13,52,65,[[804,1,1,52,53],[821,3,3,53,56],[822,3,3,56,59],[824,1,1,59,60],[825,1,1,60,61],[841,2,2,61,63],[843,1,1,63,64],[844,1,1,64,65]]],[26,1,1,65,66,[[859,1,1,65,66]]],[29,1,1,66,67,[[880,1,1,66,67]]],[33,1,1,67,68,[[902,1,1,67,68]]]],[10,11,628,1144,1341,2552,2557,2560,2568,3143,3200,3228,3355,3373,5146,5660,5697,6664,7161,7174,7444,8159,8434,8459,8842,9709,9724,9865,10766,12927,12949,13134,13138,13558,14283,14378,16316,17707,17782,17999,18004,18085,18230,18259,18337,18562,18797,19420,19479,19760,19780,20139,20508,20904,20909,20917,20969,20971,20973,21027,21062,21522,21523,21567,21576,22016,22388,22720]]],["whoso",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23085]]],["whosoever",[2,2,[[1,1,1,0,1,[[79,1,1,0,1]]],[3,1,1,1,2,[[131,1,1,1,2]]]],[2415,4167]]],["why",[1,1,[[5,1,1,0,1,[[191,1,1,0,1]]]],[5938]]]]},{"k":"H835","v":[["*",[45,42,[[4,1,1,0,1,[[185,1,1,0,1]]],[10,2,1,1,2,[[300,2,1,1,2]]],[13,2,1,2,3,[[375,2,1,2,3]]],[17,1,1,3,4,[[440,1,1,3,4]]],[18,26,25,4,29,[[478,1,1,4,5],[479,1,1,5,6],[509,2,2,6,8],[510,1,1,8,9],[511,1,1,9,10],[517,1,1,10,11],[518,1,1,11,12],[542,1,1,12,13],[561,3,3,13,16],[566,1,1,16,17],[571,1,1,17,18],[583,1,1,18,19],[589,1,1,19,20],[596,2,2,20,22],[604,1,1,22,23],[605,2,2,23,25],[614,2,2,25,27],[621,2,1,27,28],[623,1,1,28,29]]],[19,8,8,29,37,[[630,1,1,29,30],[635,2,2,30,32],[641,1,1,32,33],[643,1,1,33,34],[647,1,1,34,35],[655,1,1,35,36],[656,1,1,36,37]]],[20,1,1,37,38,[[668,1,1,37,38]]],[22,3,3,38,41,[[708,1,1,38,39],[710,1,1,39,40],[734,1,1,40,41]]],[26,1,1,41,42,[[861,1,1,41,42]]]],[5839,9087,11371,12968,13940,13957,14356,14357,14378,14396,14529,14543,14864,15263,15264,15271,15341,15443,15654,15804,15899,15900,16126,16127,16128,16230,16231,16320,16346,16468,16634,16636,16793,16860,16961,17210,17242,17510,18235,18279,18755,22093]]],["Blessed",[22,22,[[18,17,17,0,17,[[478,1,1,0,1],[479,1,1,1,2],[509,2,2,2,4],[510,1,1,4,5],[517,1,1,5,6],[518,1,1,6,7],[542,1,1,7,8],[561,2,2,8,10],[566,1,1,10,11],[571,1,1,11,12],[583,1,1,12,13],[589,1,1,13,14],[596,2,2,14,16],[605,1,1,16,17]]],[19,1,1,17,18,[[635,1,1,17,18]]],[20,1,1,18,19,[[668,1,1,18,19]]],[22,2,2,19,21,[[710,1,1,19,20],[734,1,1,20,21]]],[26,1,1,21,22,[[861,1,1,21,22]]]],[13940,13957,14356,14357,14378,14529,14543,14864,15263,15264,15341,15443,15654,15804,15899,15900,16127,16636,17510,18279,18755,22093]]],["Happy",[9,9,[[4,1,1,0,1,[[185,1,1,0,1]]],[10,1,1,1,2,[[300,1,1,1,2]]],[13,1,1,2,3,[[375,1,1,2,3]]],[18,4,4,3,7,[[604,1,1,3,4],[614,1,1,4,5],[621,1,1,5,6],[623,1,1,6,7]]],[19,2,2,7,9,[[630,1,1,7,8],[655,1,1,8,9]]]],[5839,9087,11371,16126,16231,16320,16346,16468,17210]]],["blessed",[5,5,[[18,2,2,0,2,[[511,1,1,0,1],[561,1,1,1,2]]],[19,2,2,2,4,[[635,1,1,2,3],[647,1,1,3,4]]],[22,1,1,4,5,[[708,1,1,4,5]]]],[14396,15271,16634,16961,18235]]],["happy",[9,9,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]],[17,1,1,2,3,[[440,1,1,2,3]]],[18,3,3,3,6,[[605,1,1,3,4],[614,1,1,4,5],[621,1,1,5,6]]],[19,3,3,6,9,[[641,1,1,6,7],[643,1,1,7,8],[656,1,1,8,9]]]],[9087,11371,12968,16128,16230,16320,16793,16860,17242]]]]},{"k":"H836","v":[["*",[43,41,[[0,4,4,0,4,[[29,1,1,0,1],[34,1,1,1,2],[45,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[3,12,11,5,16,[[117,3,3,5,8],[118,2,1,8,9],[123,1,1,9,10],[126,1,1,10,11],[129,1,1,11,12],[142,3,3,12,15],[150,1,1,15,16]]],[4,3,2,16,18,[[179,1,1,16,17],[185,2,1,17,18]]],[5,8,8,18,26,[[203,3,3,18,21],[205,3,3,21,24],[207,2,2,24,26]]],[6,4,4,26,30,[[211,1,1,26,27],[215,1,1,27,28],[216,1,1,28,29],[217,1,1,29,30]]],[10,1,1,30,31,[[294,1,1,30,31]]],[12,6,6,31,37,[[339,1,1,31,32],[343,2,2,32,34],[344,2,2,34,36],[349,1,1,36,37]]],[13,1,1,37,38,[[396,1,1,37,38]]],[25,3,3,38,41,[[849,3,3,38,41]]]],[843,1037,1403,1493,1536,3617,3644,3645,3685,3922,4014,4088,4533,4535,4536,4843,5598,5834,6282,6285,6286,6345,6352,6355,6387,6411,6540,6640,6689,6717,8860,10308,10516,10528,10565,10575,10756,11838,21704,21705,21736]]],["+",[6,6,[[0,1,1,0,1,[[48,1,1,0,1]]],[5,2,2,1,3,[[203,1,1,1,2],[207,1,1,2,3]]],[12,2,2,3,5,[[343,1,1,3,4],[349,1,1,4,5]]],[13,1,1,5,6,[[396,1,1,5,6]]]],[1493,6282,6411,10528,10756,11838]]],["Asher",[37,35,[[0,3,3,0,3,[[29,1,1,0,1],[34,1,1,1,2],[45,1,1,2,3]]],[1,1,1,3,4,[[50,1,1,3,4]]],[3,12,11,4,15,[[117,3,3,4,7],[118,2,1,7,8],[123,1,1,8,9],[126,1,1,9,10],[129,1,1,10,11],[142,3,3,11,14],[150,1,1,14,15]]],[4,3,2,15,17,[[179,1,1,15,16],[185,2,1,16,17]]],[5,6,6,17,23,[[203,2,2,17,19],[205,3,3,19,22],[207,1,1,22,23]]],[6,4,4,23,27,[[211,1,1,23,24],[215,1,1,24,25],[216,1,1,25,26],[217,1,1,26,27]]],[10,1,1,27,28,[[294,1,1,27,28]]],[12,4,4,28,32,[[339,1,1,28,29],[343,1,1,29,30],[344,2,2,30,32]]],[25,3,3,32,35,[[849,3,3,32,35]]]],[843,1037,1403,1536,3617,3644,3645,3685,3922,4014,4088,4533,4535,4536,4843,5598,5834,6285,6286,6345,6352,6355,6387,6540,6640,6689,6717,8860,10308,10516,10565,10575,21704,21705,21736]]]]},{"k":"H837","v":[["Happy",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[843]]]]},{"k":"H838","v":[["*",[9,9,[[17,2,2,0,2,[[458,1,1,0,1],[466,1,1,1,2]]],[18,6,6,2,8,[[494,2,2,2,4],[514,1,1,4,5],[517,1,1,5,6],[521,1,1,6,7],[550,1,1,7,8]]],[19,1,1,8,9,[[641,1,1,8,9]]]],[13430,13595,14108,14114,14481,14527,14589,15022,16787]]],["going",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16787]]],["goings",[2,2,[[18,2,2,0,2,[[494,1,1,0,1],[517,1,1,1,2]]]],[14108,14527]]],["step",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13595]]],["steps",[5,5,[[17,1,1,0,1,[[458,1,1,0,1]]],[18,4,4,1,5,[[494,1,1,1,2],[514,1,1,2,3],[521,1,1,3,4],[550,1,1,4,5]]]],[13430,14114,14481,14589,15022]]]]},{"k":"H839","v":[["Ashurites",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21127]]]]},{"k":"H840","v":[["Asareel",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10401]]]]},{"k":"H841","v":[["Asarelah",[1,1,[[12,1,1,0,1,[[362,1,1,0,1]]]],[11048]]]]},{"k":"H842","v":[["*",[40,40,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,3,3,1,4,[[159,1,1,1,2],[164,1,1,2,3],[168,1,1,3,4]]],[6,5,5,4,9,[[213,1,1,4,5],[216,4,4,5,9]]],[10,5,5,9,14,[[304,2,2,9,11],[305,1,1,11,12],[306,1,1,12,13],[308,1,1,13,14]]],[11,11,11,14,25,[[325,1,1,14,15],[329,2,2,15,17],[330,1,1,17,18],[333,2,2,18,20],[335,5,5,20,25]]],[13,11,11,25,36,[[380,1,1,25,26],[381,1,1,26,27],[383,1,1,27,28],[385,1,1,28,29],[390,1,1,29,30],[397,1,1,30,31],[399,2,2,31,33],[400,3,3,33,36]]],[22,2,2,36,38,[[695,1,1,36,37],[705,1,1,37,38]]],[23,1,1,38,39,[[761,1,1,38,39]]],[32,1,1,39,40,[[897,1,1,39,40]]]],[2509,5116,5243,5363,6575,6679,6680,6682,6684,9233,9241,9262,9316,9360,9877,9993,9999,10028,10122,10126,10169,10171,10172,10179,10180,11478,11506,11529,11579,11695,11855,11911,11927,11936,11937,11940,17991,18160,19359,22647]]],["grove",[16,16,[[4,1,1,0,1,[[168,1,1,0,1]]],[6,4,4,1,5,[[216,4,4,1,5]]],[10,2,2,5,7,[[305,1,1,5,6],[306,1,1,6,7]]],[11,8,8,7,15,[[325,1,1,7,8],[329,1,1,8,9],[333,2,2,9,11],[335,4,4,11,15]]],[13,1,1,15,16,[[381,1,1,15,16]]]],[5363,6679,6680,6682,6684,9262,9316,9877,9999,10122,10126,10169,10171,10172,10180,11506]]],["groves",[24,24,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,2,2,1,3,[[159,1,1,1,2],[164,1,1,2,3]]],[6,1,1,3,4,[[213,1,1,3,4]]],[10,3,3,4,7,[[304,2,2,4,6],[308,1,1,6,7]]],[11,3,3,7,10,[[329,1,1,7,8],[330,1,1,8,9],[335,1,1,9,10]]],[13,10,10,10,20,[[380,1,1,10,11],[383,1,1,11,12],[385,1,1,12,13],[390,1,1,13,14],[397,1,1,14,15],[399,2,2,15,17],[400,3,3,17,20]]],[22,2,2,20,22,[[695,1,1,20,21],[705,1,1,21,22]]],[23,1,1,22,23,[[761,1,1,22,23]]],[32,1,1,23,24,[[897,1,1,23,24]]]],[2509,5116,5243,6575,9233,9241,9360,9993,10028,10179,11478,11529,11579,11695,11855,11911,11927,11936,11937,11940,17991,18160,19359,22647]]]]},{"k":"H843","v":[["*",[2,2,[[6,1,1,0,1,[[211,1,1,0,1]]],[9,1,1,1,2,[[268,1,1,1,2]]]],[6541,8058]]],["Asherites",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6541]]],["Ashurites",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8058]]]]},{"k":"H844","v":[["*",[3,3,[[3,1,1,0,1,[[142,1,1,0,1]]],[5,1,1,1,2,[[203,1,1,1,2]]],[12,1,1,2,3,[[344,1,1,2,3]]]],[4520,6277,10549]]],["Ashriel",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10549]]],["Asriel",[2,2,[[3,1,1,0,1,[[142,1,1,0,1]]],[5,1,1,1,2,[[203,1,1,1,2]]]],[4520,6277]]]]},{"k":"H845","v":[["Asrielites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4520]]]]},{"k":"H846","v":[["*",[2,2,[[14,2,2,0,2,[[407,2,2,0,2]]]],[12137,12143]]],["wall",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12137]]],["walls",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12143]]]]},{"k":"H847","v":[["*",[7,7,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]],[6,5,5,2,7,[[223,1,1,2,3],[226,1,1,3,4],[228,3,3,4,7]]]],[6235,6362,6909,6980,6995,7001,7004]]],["+",[2,2,[[6,2,2,0,2,[[228,2,2,0,2]]]],[6995,7004]]],["Eshtaol",[5,5,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]],[6,3,3,2,5,[[223,1,1,2,3],[226,1,1,3,4],[228,1,1,4,5]]]],[6235,6362,6909,6980,7001]]]]},{"k":"H848","v":[["Eshtaulites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10359]]]]},{"k":"H849","v":[["sedition",[2,2,[[14,2,2,0,2,[[406,2,2,0,2]]]],[12125,12129]]]]},{"k":"H850","v":[["Eshton",[2,2,[[12,2,2,0,2,[[341,2,2,0,2]]]],[10396,10397]]]]},{"k":"H851","v":[["*",[6,6,[[5,2,2,0,2,[[201,1,1,0,1],[207,1,1,1,2]]],[8,1,1,2,3,[[265,1,1,2,3]]],[12,3,3,3,6,[[341,2,2,3,5],[343,1,1,5,6]]]],[6252,6395,8006,10402,10404,10511]]],["Eshtemoa",[5,5,[[5,1,1,0,1,[[207,1,1,0,1]]],[8,1,1,1,2,[[265,1,1,1,2]]],[12,3,3,2,5,[[341,2,2,2,4],[343,1,1,4,5]]]],[6395,8006,10402,10404,10511]]],["Eshtemoh",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6252]]]]},{"k":"H852","v":[["signs",[3,3,[[26,3,3,0,3,[[853,2,2,0,2],[855,1,1,2,3]]]],[21839,21840,21932]]]]},{"k":"H853","v":[["*",[7297,5647,[[0,649,513,0,513,[[0,13,12,0,12],[1,11,11,12,23],[2,7,5,23,28],[3,19,11,28,39],[4,21,20,39,59],[5,10,8,59,67],[6,4,4,67,71],[7,11,9,71,80],[8,14,11,80,91],[9,7,6,91,97],[10,24,21,97,118],[11,5,5,118,123],[12,7,4,123,127],[13,12,9,127,136],[14,7,7,136,143],[15,3,3,143,146],[16,15,11,146,157],[17,3,2,157,159],[18,19,14,159,173],[19,5,5,173,178],[20,18,15,178,193],[21,28,14,193,207],[22,11,9,207,216],[23,22,18,216,234],[24,12,11,234,245],[25,9,7,245,252],[26,13,11,252,263],[27,10,7,263,270],[28,23,18,270,288],[29,20,17,288,305],[30,34,26,305,331],[31,14,9,331,340],[32,8,6,340,346],[33,14,13,346,359],[34,6,6,359,365],[35,11,8,365,373],[36,18,12,373,385],[37,5,5,385,390],[38,6,5,390,395],[39,12,9,395,404],[40,25,21,404,425],[41,19,16,425,441],[42,15,13,441,454],[43,15,12,454,466],[44,11,7,466,473],[45,6,6,473,479],[46,14,11,479,490],[47,15,12,490,502],[48,5,3,502,505],[49,13,8,505,513]]],[1,668,484,513,997,[[50,10,8,513,521],[51,22,18,521,539],[52,16,12,539,551],[53,16,11,551,562],[54,10,8,562,570],[55,21,13,570,583],[56,15,10,583,593],[57,23,16,593,609],[58,20,18,609,627],[59,28,18,627,645],[60,5,3,645,648],[61,18,14,648,662],[62,10,7,662,669],[63,26,18,669,687],[64,4,4,687,691],[65,18,14,691,705],[66,5,5,705,710],[67,17,13,710,723],[68,8,8,723,731],[69,13,7,731,738],[70,16,8,738,746],[71,5,4,746,750],[72,21,12,750,762],[73,8,8,762,770],[74,16,11,770,781],[75,13,10,781,791],[76,4,4,791,795],[77,20,16,795,811],[78,29,22,811,833],[79,9,9,833,842],[80,8,6,842,848],[81,17,12,848,860],[82,15,12,860,872],[83,19,14,872,886],[84,28,16,886,902],[85,14,14,902,916],[86,18,14,916,930],[87,12,9,930,939],[88,38,27,939,966],[89,53,31,966,997]]],[2,450,324,997,1321,[[90,14,11,997,1008],[91,5,5,1008,1013],[92,11,7,1013,1020],[93,18,11,1020,1031],[94,7,6,1031,1037],[95,10,6,1037,1043],[96,19,11,1043,1054],[97,39,26,1054,1080],[98,18,15,1080,1095],[99,9,7,1095,1102],[100,14,12,1102,1114],[102,31,21,1114,1135],[103,43,30,1135,1165],[104,7,6,1165,1171],[105,32,21,1171,1192],[106,6,5,1192,1197],[107,10,9,1197,1206],[108,16,15,1206,1221],[109,26,16,1221,1237],[110,11,8,1237,1245],[111,9,8,1245,1253],[112,17,14,1253,1267],[113,7,5,1267,1272],[114,22,18,1272,1290],[115,38,22,1290,1312],[116,11,9,1312,1321]]],[3,455,357,1321,1678,[[117,10,8,1321,1329],[118,2,2,1329,1331],[119,17,14,1331,1345],[120,24,21,1345,1366],[121,31,19,1366,1385],[122,11,9,1385,1394],[123,11,10,1394,1404],[124,22,15,1404,1419],[125,8,6,1419,1425],[126,3,3,1425,1428],[127,14,11,1428,1439],[129,8,8,1439,1447],[130,22,18,1447,1465],[131,9,9,1465,1474],[132,21,16,1474,1490],[133,5,5,1490,1495],[134,21,17,1495,1512],[135,8,6,1512,1518],[136,23,14,1518,1532],[137,19,15,1532,1547],[138,25,19,1547,1566],[139,4,4,1566,1570],[140,7,6,1570,1576],[141,9,6,1576,1582],[142,13,10,1582,1592],[143,13,11,1592,1603],[144,4,3,1603,1606],[145,2,2,1606,1608],[146,8,6,1608,1614],[147,21,16,1614,1630],[148,25,20,1630,1650],[149,11,7,1650,1657],[150,5,5,1657,1662],[151,14,13,1662,1675],[152,5,3,1675,1678]]],[4,447,350,1678,2028,[[153,23,20,1678,1698],[154,23,16,1698,1714],[155,15,12,1714,1726],[156,27,22,1726,1748],[157,19,15,1748,1763],[158,15,11,1763,1774],[159,12,9,1774,1783],[160,12,10,1783,1793],[161,19,14,1793,1807],[162,13,11,1807,1818],[163,23,17,1818,1835],[164,19,14,1835,1849],[165,7,6,1849,1855],[166,7,6,1855,1861],[167,11,10,1861,1871],[168,9,8,1871,1879],[169,10,6,1879,1885],[170,6,6,1885,1891],[171,9,6,1891,1897],[172,5,4,1897,1901],[173,14,9,1901,1910],[174,14,11,1910,1921],[175,3,3,1921,1924],[176,8,8,1924,1932],[177,8,7,1932,1939],[178,9,7,1939,1946],[179,13,10,1946,1956],[180,22,16,1956,1972],[181,16,14,1972,1986],[182,10,9,1986,1995],[183,32,22,1995,2017],[184,7,6,2017,2023],[185,1,1,2023,2024],[186,6,4,2024,2028]]],[5,320,230,2028,2258,[[187,14,9,2028,2037],[188,17,13,2037,2050],[189,10,8,2050,2058],[190,14,10,2058,2068],[191,7,6,2068,2074],[192,25,19,2074,2093],[193,17,12,2093,2105],[194,20,17,2105,2122],[195,7,3,2122,2125],[196,20,12,2125,2137],[197,18,12,2137,2149],[198,1,1,2149,2150],[199,3,3,2150,2153],[200,9,7,2153,2160],[201,7,5,2160,2165],[202,1,1,2165,2166],[203,5,5,2166,2171],[204,7,6,2171,2177],[205,5,3,2177,2180],[206,6,5,2180,2185],[207,38,25,2185,2210],[208,20,16,2210,2226],[209,8,8,2226,2234],[210,41,24,2234,2258]]],[6,311,232,2258,2490,[[211,28,21,2258,2279],[212,21,12,2279,2291],[213,36,20,2291,2311],[214,16,13,2311,2324],[216,27,21,2324,2345],[217,15,12,2345,2357],[218,19,13,2357,2370],[219,34,26,2370,2396],[220,12,8,2396,2404],[221,23,19,2404,2423],[222,10,8,2423,2431],[223,4,4,2431,2435],[224,5,4,2435,2439],[225,6,6,2439,2445],[226,16,12,2445,2457],[227,5,4,2457,2461],[228,18,15,2461,2476],[229,6,4,2476,2480],[230,7,7,2480,2487],[231,3,3,2487,2490]]],[7,32,24,2490,2514,[[232,1,1,2490,2491],[233,8,7,2491,2498],[234,5,4,2498,2502],[235,18,12,2502,2514]]],[8,406,330,2514,2844,[[236,16,14,2514,2528],[237,18,15,2528,2543],[238,8,7,2543,2550],[239,8,7,2550,2557],[240,12,8,2557,2565],[241,17,12,2565,2577],[242,12,10,2577,2587],[243,5,5,2587,2592],[244,15,12,2592,2604],[245,11,10,2604,2614],[246,6,5,2614,2619],[247,21,14,2619,2633],[248,8,7,2633,2640],[249,14,10,2640,2650],[250,23,18,2650,2668],[251,8,7,2668,2675],[252,27,25,2675,2700],[253,14,13,2700,2713],[254,18,12,2713,2725],[255,24,18,2725,2743],[256,6,6,2743,2749],[257,12,8,2749,2757],[258,10,9,2757,2766],[259,19,14,2766,2780],[260,23,19,2780,2799],[261,10,10,2799,2809],[262,2,2,2809,2811],[263,15,12,2811,2823],[264,2,2,2823,2825],[265,10,10,2825,2835],[266,12,9,2835,2844]]],[9,322,251,2844,3095,[[267,3,3,2844,2847],[268,7,6,2847,2853],[269,21,14,2853,2867],[270,12,6,2867,2873],[271,12,9,2873,2882],[272,14,12,2882,2894],[273,15,11,2894,2905],[274,12,10,2905,2915],[275,3,3,2915,2918],[276,12,7,2918,2925],[277,12,10,2925,2935],[278,23,19,2935,2954],[279,22,17,2954,2971],[280,24,15,2971,2986],[281,18,16,2986,3002],[282,8,7,3002,3009],[283,12,10,3009,3019],[284,16,14,3019,3033],[285,29,24,3033,3057],[286,6,6,3057,3063],[287,19,15,3063,3078],[288,2,2,3078,3080],[289,7,5,3080,3085],[290,13,10,3085,3095]]],[10,422,322,3095,3417,[[291,24,17,3095,3112],[292,33,22,3112,3134],[293,17,14,3134,3148],[294,6,5,3148,3153],[295,6,5,3153,3158],[296,19,14,3158,3172],[297,27,18,3172,3190],[298,41,31,3190,3221],[299,18,14,3221,3235],[300,11,10,3235,3245],[301,25,19,3245,3264],[302,22,18,3264,3282],[303,20,15,3282,3297],[304,13,8,3297,3305],[305,22,16,3305,3321],[306,21,14,3321,3335],[307,5,4,3335,3339],[308,23,20,3339,3359],[309,13,10,3359,3369],[310,19,17,3369,3386],[311,18,14,3386,3400],[312,19,17,3400,3417]]],[11,387,284,3417,3701,[[313,2,2,3417,3419],[314,10,7,3419,3426],[315,10,9,3426,3435],[316,7,5,3435,3440],[317,7,6,3440,3446],[318,17,11,3446,3457],[319,8,7,3457,3464],[320,14,11,3464,3475],[321,14,13,3475,3488],[322,22,16,3488,3504],[323,19,14,3504,3518],[324,12,12,3518,3530],[325,13,9,3530,3539],[326,18,12,3539,3551],[327,12,10,3551,3561],[328,15,9,3561,3570],[329,36,25,3570,3595],[330,24,17,3595,3612],[331,12,12,3612,3624],[332,11,8,3624,3632],[333,20,14,3632,3646],[334,14,12,3646,3658],[335,47,23,3658,3681],[336,9,7,3681,3688],[337,14,13,3688,3701]]],[12,280,209,3701,3910,[[338,9,8,3701,3709],[339,38,23,3709,3732],[341,14,11,3732,3743],[342,1,1,3743,3744],[343,42,28,3744,3772],[344,6,6,3772,3778],[345,16,12,3778,3790],[346,9,5,3790,3795],[347,11,8,3795,3803],[348,14,10,3803,3813],[349,6,4,3813,3817],[350,11,8,3817,3825],[351,7,6,3825,3831],[352,15,13,3831,3844],[353,5,5,3844,3849],[354,14,11,3849,3860],[355,11,10,3860,3870],[356,7,6,3870,3876],[357,8,5,3876,3881],[358,14,10,3881,3891],[359,7,5,3891,3896],[360,4,4,3896,3900],[364,2,2,3900,3902],[365,6,5,3902,3907],[366,3,3,3907,3910]]],[13,362,286,3910,4196,[[367,3,3,3910,3913],[368,4,4,3913,3917],[369,7,7,3917,3924],[370,10,9,3924,3933],[371,7,6,3933,3939],[372,17,14,3939,3953],[373,15,12,3953,3965],[374,4,4,3965,3969],[375,12,9,3969,3978],[376,10,10,3978,3988],[377,16,12,3988,4000],[378,7,5,4000,4005],[379,7,6,4005,4011],[380,10,6,4011,4017],[381,5,5,4017,4022],[382,9,5,4022,4027],[383,3,3,4027,4030],[384,13,13,4030,4043],[386,9,7,4043,4050],[387,10,8,4050,4058],[388,10,8,4058,4066],[389,17,11,4066,4077],[390,18,13,4077,4090],[391,15,9,4090,4099],[392,6,5,4099,4104],[393,1,1,4104,4105],[394,13,11,4105,4116],[395,15,13,4116,4129],[396,8,8,4129,4137],[397,7,5,4137,4142],[398,10,9,4142,4151],[399,15,10,4151,4161],[400,32,22,4161,4183],[401,4,3,4183,4186],[402,13,10,4186,4196]]],[14,25,20,4196,4216,[[403,5,4,4196,4200],[405,6,5,4200,4205],[406,1,1,4205,4206],[408,1,1,4206,4207],[409,2,2,4207,4209],[410,4,3,4209,4212],[411,5,3,4212,4215],[412,1,1,4215,4216]]],[15,93,71,4216,4287,[[413,8,5,4216,4221],[414,5,5,4221,4226],[415,2,2,4226,4228],[416,8,8,4228,4236],[417,10,7,4236,4243],[418,5,4,4243,4247],[419,3,2,4247,4249],[420,7,5,4249,4254],[421,19,14,4254,4268],[422,7,5,4268,4273],[424,8,5,4273,4278],[425,11,9,4278,4287]]],[16,75,64,4287,4351,[[426,7,6,4287,4293],[427,10,10,4293,4303],[428,7,5,4303,4308],[429,10,8,4308,4316],[430,11,8,4316,4324],[431,8,7,4324,4331],[432,2,2,4331,4333],[433,9,7,4333,4340],[434,11,11,4340,4351]]],[17,32,28,4351,4379,[[436,4,3,4351,4354],[437,7,7,4354,4361],[438,2,1,4361,4362],[442,1,1,4362,4363],[448,1,1,4363,4364],[463,1,1,4364,4365],[467,3,3,4365,4368],[473,1,1,4368,4369],[475,3,3,4369,4372],[476,1,1,4372,4373],[477,8,6,4373,4379]]],[18,123,110,4379,4489,[[479,2,2,4379,4381],[480,1,1,4381,4382],[490,1,1,4382,4383],[491,1,1,4383,4384],[493,2,2,4384,4386],[502,1,1,4386,4387],[503,1,1,4387,4388],[504,2,2,4388,4390],[505,2,1,4390,4391],[506,2,2,4391,4393],[508,2,2,4393,4395],[510,1,1,4395,4396],[511,3,3,4396,4399],[512,1,1,4399,4400],[514,1,1,4400,4401],[524,2,1,4401,4402],[528,1,1,4402,4403],[530,1,1,4403,4404],[549,1,1,4404,4405],[555,5,4,4405,4409],[556,4,3,4409,4412],[557,1,1,4412,4413],[560,1,1,4413,4414],[561,1,1,4414,4415],[569,1,1,4415,4416],[571,1,1,4416,4417],[575,1,1,4417,4418],[577,1,1,4418,4419],[579,5,4,4419,4423],[580,5,4,4423,4427],[581,2,2,4427,4429],[582,8,6,4429,4435],[583,9,9,4435,4444],[589,1,1,4444,4445],[590,1,1,4445,4446],[592,2,1,4446,4447],[593,3,2,4447,4449],[594,1,1,4449,4450],[596,3,3,4450,4453],[598,1,1,4453,4454],[600,1,1,4454,4455],[603,2,2,4455,4457],[604,1,1,4457,4458],[607,1,1,4458,4459],[609,1,1,4459,4460],[610,1,1,4460,4461],[611,2,2,4461,4463],[612,5,3,4463,4466],[613,2,2,4466,4468],[614,5,5,4468,4473],[615,1,1,4473,4474],[617,1,1,4474,4475],[619,1,1,4475,4476],[621,1,1,4476,4477],[622,3,3,4477,4480],[623,3,3,4480,4483],[624,3,2,4483,4485],[625,4,4,4485,4489]]],[19,17,16,4489,4505,[[628,1,1,4489,4490],[630,4,3,4490,4493],[632,1,1,4493,4494],[633,2,2,4494,4496],[643,1,1,4496,4497],[649,1,1,4497,4498],[650,3,3,4498,4501],[651,1,1,4501,4502],[652,1,1,4502,4503],[653,1,1,4503,4504],[654,1,1,4504,4505]]],[20,68,54,4505,4559,[[659,2,2,4505,4507],[660,7,7,4507,4514],[661,6,4,4514,4518],[662,10,8,4518,4526],[663,7,5,4526,4531],[665,10,8,4531,4539],[666,8,5,4539,4544],[667,7,5,4544,4549],[668,2,2,4549,4551],[669,5,4,4551,4555],[670,4,4,4555,4559]]],[21,19,16,4559,4575,[[671,2,2,4559,4561],[672,3,2,4561,4563],[673,4,4,4563,4567],[675,4,3,4567,4570],[677,1,1,4570,4571],[678,5,4,4571,4575]]],[22,152,127,4575,4702,[[679,2,1,4575,4576],[680,1,1,4576,4577],[681,1,1,4577,4578],[682,1,1,4578,4579],[683,2,2,4579,4581],[684,6,4,4581,4585],[685,6,5,4585,4590],[686,7,5,4590,4595],[687,6,4,4595,4599],[688,2,2,4599,4601],[689,6,5,4601,4606],[691,2,2,4606,4608],[692,1,1,4608,4609],[693,1,1,4609,4610],[697,5,5,4610,4615],[698,1,1,4615,4616],[699,1,1,4616,4617],[700,2,2,4617,4619],[701,1,1,4619,4620],[702,1,1,4620,4621],[704,1,1,4621,4622],[705,2,2,4622,4624],[706,1,1,4624,4625],[707,4,3,4625,4628],[708,6,6,4628,4634],[711,2,2,4634,4636],[714,14,11,4636,4647],[715,11,11,4647,4658],[716,5,4,4658,4662],[717,3,2,4662,4664],[718,2,2,4664,4666],[719,4,3,4666,4669],[722,1,1,4669,4670],[723,1,1,4670,4671],[725,1,1,4671,4672],[726,1,1,4672,4673],[727,4,3,4673,4676],[728,1,1,4676,4677],[729,4,2,4677,4679],[730,2,1,4679,4680],[731,1,1,4680,4681],[733,2,2,4681,4683],[734,2,2,4683,4685],[735,1,1,4685,4686],[737,2,1,4686,4687],[740,4,4,4687,4691],[741,2,2,4691,4693],[742,1,1,4693,4694],[743,4,4,4694,4698],[744,8,4,4698,4702]]],[23,530,413,4702,5115,[[745,2,2,4702,4704],[746,8,7,4704,4711],[747,12,9,4711,4720],[748,1,1,4720,4721],[749,4,4,4721,4725],[750,5,5,4725,4730],[751,18,16,4730,4746],[752,5,4,4746,4750],[753,7,7,4750,4757],[754,5,5,4757,4762],[755,14,10,4762,4772],[756,12,7,4772,4779],[757,8,8,4779,4787],[758,4,4,4787,4791],[759,4,4,4791,4795],[760,10,7,4795,4802],[761,7,6,4802,4808],[762,4,4,4808,4812],[763,15,9,4812,4821],[764,9,7,4821,4828],[765,7,6,4828,4834],[766,9,9,4834,4843],[767,22,17,4843,4860],[768,5,4,4860,4864],[769,19,14,4864,4878],[770,13,9,4878,4887],[771,16,12,4887,4899],[772,10,9,4899,4908],[773,13,10,4908,4918],[774,4,4,4918,4922],[775,12,8,4922,4930],[776,31,23,4930,4953],[777,8,7,4953,4960],[778,19,11,4960,4971],[779,9,6,4971,4977],[780,30,22,4977,4999],[781,5,5,4999,5004],[782,18,11,5004,5015],[783,5,5,5015,5020],[784,8,8,5020,5028],[785,12,9,5028,5037],[786,4,4,5037,5041],[787,12,8,5041,5049],[788,17,13,5049,5062],[789,2,2,5062,5064],[790,1,1,5064,5065],[791,3,2,5065,5067],[792,1,1,5067,5068],[793,12,9,5068,5077],[794,10,8,5077,5085],[795,26,19,5085,5104],[796,13,11,5104,5115]]],[24,6,6,5115,5121,[[797,2,2,5115,5117],[798,2,2,5117,5119],[800,1,1,5119,5120],[801,1,1,5120,5121]]],[25,370,298,5121,5419,[[802,3,3,5121,5124],[803,5,4,5124,5128],[804,11,8,5128,5136],[805,10,7,5136,5143],[806,7,6,5143,5149],[807,4,2,5149,5151],[808,4,4,5151,5155],[809,6,4,5155,5159],[810,5,3,5159,5162],[811,5,5,5162,5167],[812,9,8,5167,5175],[813,7,6,5175,5181],[814,9,6,5181,5187],[815,7,5,5187,5192],[816,5,4,5192,5196],[817,29,21,5196,5217],[818,9,6,5217,5223],[819,9,9,5223,5232],[821,22,17,5232,5249],[823,4,2,5249,5251],[824,11,8,5251,5259],[825,9,7,5259,5266],[826,8,6,5266,5272],[827,3,3,5272,5275],[828,1,1,5275,5276],[829,2,2,5276,5278],[830,8,7,5278,5285],[831,18,13,5285,5298],[832,3,3,5298,5301],[833,9,8,5301,5309],[834,12,11,5309,5320],[835,11,10,5320,5330],[836,5,5,5330,5335],[837,10,10,5335,5345],[838,6,5,5345,5350],[839,1,1,5350,5351],[840,14,10,5351,5361],[841,14,13,5361,5374],[842,3,3,5374,5377],[843,2,2,5377,5379],[844,14,11,5379,5390],[845,15,11,5390,5401],[846,6,6,5401,5407],[847,10,7,5407,5414],[848,4,4,5414,5418],[849,1,1,5418,5419]]],[26,36,29,5419,5448,[[850,10,7,5419,5426],[851,1,1,5426,5427],[857,7,6,5427,5433],[858,6,5,5433,5438],[859,11,9,5438,5447],[861,1,1,5447,5448]]],[27,34,30,5448,5478,[[862,5,5,5448,5453],[863,14,11,5453,5464],[864,2,2,5464,5466],[865,2,2,5466,5468],[866,3,2,5468,5470],[867,1,1,5470,5471],[868,1,1,5471,5472],[869,1,1,5472,5473],[870,1,1,5473,5474],[871,2,2,5474,5476],[873,2,2,5476,5478]]],[28,11,11,5478,5489,[[877,6,6,5478,5484],[878,5,5,5484,5489]]],[29,37,32,5489,5521,[[879,2,2,5489,5491],[880,6,5,5491,5496],[881,2,2,5496,5498],[882,3,3,5498,5501],[883,5,5,5501,5506],[884,1,1,5506,5507],[885,4,3,5507,5510],[886,2,2,5510,5512],[887,12,9,5512,5521]]],[30,8,5,5521,5526,[[888,8,5,5521,5526]]],[31,11,11,5526,5537,[[889,5,5,5526,5531],[890,2,2,5531,5533],[891,2,2,5533,5535],[892,2,2,5535,5537]]],[32,10,10,5537,5547,[[895,2,2,5537,5539],[896,1,1,5539,5540],[897,3,3,5540,5543],[898,3,3,5543,5546],[899,1,1,5546,5547]]],[33,1,1,5547,5548,[[901,1,1,5547,5548]]],[34,3,3,5548,5551,[[903,2,2,5548,5550],[904,1,1,5550,5551]]],[35,14,11,5551,5562,[[906,6,5,5551,5556],[907,5,4,5556,5560],[908,3,2,5560,5562]]],[36,8,7,5562,5569,[[909,1,1,5562,5563],[910,7,6,5563,5569]]],[37,83,61,5569,5630,[[911,10,8,5569,5577],[912,4,4,5577,5581],[913,6,4,5581,5585],[914,2,2,5585,5587],[915,3,3,5587,5590],[916,3,3,5590,5593],[917,3,3,5593,5596],[918,14,9,5596,5605],[920,3,2,5605,5607],[921,15,8,5607,5615],[922,8,7,5615,5622],[923,6,3,5622,5625],[924,6,5,5625,5630]]],[38,20,17,5630,5647,[[925,4,4,5630,5634],[926,7,5,5634,5639],[927,6,5,5639,5644],[928,3,3,5644,5647]]]],[0,3,6,15,20,21,24,26,27,28,29,30,33,35,36,37,38,40,41,43,45,52,54,63,65,73,78,79,80,81,90,91,93,96,97,99,101,104,105,107,108,109,111,112,114,115,117,118,120,121,123,124,126,127,130,131,134,135,137,139,143,144,147,149,151,154,155,163,168,176,182,184,189,190,191,192,193,195,196,204,206,208,210,211,214,216,218,220,227,228,229,242,245,247,249,258,260,271,274,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,297,303,305,312,315,318,328,329,333,334,340,341,343,347,348,350,352,353,359,365,367,370,371,374,378,379,384,391,397,402,404,405,406,408,411,412,416,417,420,422,443,452,465,467,470,471,472,474,476,478,482,484,486,489,490,492,497,503,505,509,512,514,516,518,521,522,526,528,529,530,531,532,538,539,541,543,548,549,550,551,553,556,557,559,560,563,564,568,570,571,576,577,579,580,581,584,585,587,590,592,596,597,598,599,600,621,626,627,639,643,648,650,651,652,655,657,658,660,661,663,669,677,678,680,686,689,691,692,695,696,700,703,710,716,726,728,733,742,744,754,757,761,763,768,769,772,777,778,779,782,788,791,792,798,800,803,805,806,808,813,816,817,818,819,822,823,824,825,826,828,830,834,839,841,843,845,850,851,852,853,854,855,856,859,865,866,868,871,874,875,878,879,880,882,885,888,890,891,892,893,894,896,898,899,903,904,905,907,908,910,914,915,923,925,935,938,940,945,947,950,951,959,960,961,962,965,971,978,979,983,984,985,987,992,993,994,996,997,1001,1006,1008,1011,1013,1015,1021,1023,1026,1033,1042,1044,1045,1046,1052,1054,1064,1075,1085,1086,1094,1095,1097,1099,1106,1109,1111,1112,1114,1115,1122,1123,1124,1139,1140,1154,1156,1168,1171,1172,1176,1179,1181,1183,1185,1191,1192,1193,1195,1199,1202,1203,1204,1207,1209,1211,1215,1219,1220,1223,1225,1229,1230,1234,1237,1239,1240,1243,1246,1251,1259,1260,1261,1268,1269,1270,1276,1277,1278,1279,1281,1282,1286,1287,1289,1290,1292,1294,1297,1304,1305,1306,1307,1311,1313,1314,1315,1316,1319,1325,1328,1330,1335,1340,1343,1346,1348,1353,1355,1356,1358,1360,1371,1375,1376,1377,1382,1385,1391,1392,1404,1406,1411,1416,1426,1427,1429,1430,1431,1432,1434,1437,1440,1442,1443,1452,1455,1459,1461,1462,1463,1464,1465,1466,1467,1471,1472,1474,1504,1506,1508,1511,1512,1513,1517,1520,1521,1531,1540,1543,1545,1546,1548,1549,1550,1553,1555,1557,1559,1560,1561,1562,1563,1566,1568,1569,1570,1571,1573,1574,1575,1576,1578,1579,1580,1582,1586,1588,1589,1590,1591,1595,1596,1599,1600,1601,1616,1618,1620,1621,1622,1624,1626,1629,1630,1631,1632,1633,1634,1636,1637,1638,1652,1653,1655,1659,1660,1661,1662,1663,1666,1668,1675,1678,1680,1681,1682,1684,1687,1688,1689,1690,1694,1695,1697,1701,1705,1710,1711,1712,1715,1716,1717,1718,1724,1725,1726,1727,1728,1731,1732,1736,1739,1742,1743,1748,1749,1752,1754,1755,1756,1757,1758,1761,1762,1763,1764,1765,1767,1771,1775,1777,1778,1779,1781,1782,1784,1785,1788,1789,1790,1792,1794,1796,1797,1799,1800,1801,1803,1804,1807,1809,1816,1824,1829,1833,1839,1840,1841,1843,1844,1847,1850,1852,1855,1866,1867,1870,1872,1874,1877,1884,1885,1886,1893,1894,1895,1897,1899,1901,1902,1905,1906,1909,1910,1913,1914,1915,1916,1917,1919,1920,1921,1939,1940,1942,1950,1952,1953,1954,1955,1956,1959,1960,1970,1971,1978,1979,1980,1982,1985,1988,1990,1996,1997,2000,2001,2007,2009,2012,2013,2015,2018,2019,2021,2022,2025,2026,2031,2033,2034,2035,2038,2040,2043,2049,2052,2058,2059,2062,2063,2069,2075,2082,2083,2084,2095,2097,2103,2105,2112,2118,2119,2136,2138,2153,2154,2159,2160,2166,2169,2170,2171,2172,2174,2175,2177,2180,2181,2182,2185,2187,2188,2189,2192,2197,2204,2209,2211,2214,2216,2217,2221,2222,2223,2232,2241,2244,2246,2250,2253,2264,2265,2268,2269,2270,2273,2279,2281,2292,2294,2296,2298,2299,2302,2304,2305,2307,2316,2317,2321,2322,2323,2324,2331,2334,2341,2342,2343,2346,2347,2349,2351,2352,2354,2355,2356,2358,2362,2363,2365,2367,2368,2369,2370,2375,2380,2382,2385,2387,2389,2390,2394,2397,2398,2401,2408,2426,2427,2433,2434,2436,2437,2441,2447,2449,2451,2455,2457,2458,2460,2463,2465,2472,2473,2475,2477,2479,2480,2483,2485,2486,2490,2491,2492,2493,2496,2497,2506,2507,2509,2512,2514,2519,2520,2523,2524,2526,2528,2530,2531,2532,2536,2541,2542,2543,2544,2547,2548,2549,2550,2552,2555,2556,2557,2558,2560,2567,2569,2570,2571,2574,2576,2579,2582,2584,2586,2589,2599,2600,2601,2605,2609,2612,2614,2617,2618,2619,2620,2621,2627,2629,2630,2632,2633,2634,2636,2639,2640,2641,2642,2655,2660,2663,2665,2666,2667,2669,2670,2671,2672,2673,2680,2685,2686,2689,2690,2691,2693,2694,2695,2696,2697,2699,2700,2701,2703,2704,2705,2706,2707,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2722,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2747,2750,2751,2753,2754,2756,2757,2758,2759,2760,2761,2764,2770,2771,2776,2778,2780,2781,2785,2786,2787,2791,2792,2799,2801,2803,2807,2810,2812,2816,2818,2819,2824,2828,2836,2837,2838,2841,2842,2845,2851,2853,2858,2859,2860,2875,2881,2882,2887,2893,2895,2908,2909,2910,2912,2913,2917,2919,2923,2924,2925,2926,2927,2928,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2941,2942,2944,2946,2947,2948,2950,2952,2953,2958,2960,2961,2962,2963,2965,2967,2968,2969,2970,2971,2973,2975,2976,2977,2981,2983,2988,2989,2994,2995,2996,3001,3006,3008,3010,3012,3018,3019,3025,3037,3040,3041,3042,3055,3056,3064,3065,3067,3069,3074,3077,3079,3082,3083,3084,3085,3086,3101,3102,3103,3104,3106,3107,3109,3116,3117,3118,3119,3120,3122,3123,3124,3127,3130,3131,3135,3136,3141,3142,3147,3148,3149,3151,3152,3153,3154,3156,3158,3159,3160,3161,3162,3163,3164,3184,3186,3192,3198,3199,3201,3205,3207,3208,3210,3211,3212,3214,3216,3221,3222,3223,3224,3225,3227,3228,3229,3230,3232,3233,3234,3235,3240,3241,3242,3245,3248,3255,3256,3268,3272,3276,3277,3278,3279,3281,3289,3290,3293,3294,3298,3299,3300,3302,3304,3306,3308,3310,3311,3317,3318,3321,3322,3323,3324,3326,3327,3332,3334,3335,3336,3337,3339,3340,3341,3342,3343,3351,3353,3354,3355,3357,3359,3366,3368,3371,3378,3383,3384,3385,3394,3401,3402,3404,3412,3413,3414,3416,3417,3424,3429,3432,3434,3439,3441,3445,3446,3448,3450,3457,3460,3469,3472,3474,3479,3480,3481,3483,3486,3487,3489,3490,3491,3494,3496,3506,3507,3515,3521,3524,3526,3529,3531,3533,3537,3538,3539,3540,3543,3544,3546,3554,3555,3556,3558,3559,3562,3564,3565,3566,3567,3569,3581,3584,3585,3588,3589,3590,3592,3593,3604,3606,3621,3623,3653,3654,3655,3657,3658,3691,3692,3698,3699,3700,3701,3702,3704,3707,3732,3733,3734,3737,3741,3742,3743,3745,3748,3750,3751,3752,3754,3755,3756,3757,3758,3761,3762,3763,3765,3768,3770,3773,3775,3777,3789,3792,3794,3795,3796,3799,3802,3806,3807,3808,3810,3811,3812,3813,3815,3816,3817,3818,3819,3822,3823,3834,3835,3837,3839,3840,3841,3842,3846,3850,3851,3853,3855,3856,3857,3860,3861,3862,3869,3939,3941,3942,3943,3945,3948,3949,3950,3951,3952,3953,3954,3957,3958,3959,3961,3967,3970,3972,3980,3984,3988,3990,3995,4009,4029,4034,4035,4036,4038,4044,4046,4048,4053,4056,4058,4077,4091,4092,4093,4096,4101,4105,4108,4109,4114,4117,4121,4123,4124,4129,4130,4131,4135,4138,4139,4141,4142,4144,4146,4147,4149,4166,4175,4176,4178,4183,4189,4192,4193,4194,4199,4203,4204,4209,4213,4222,4224,4225,4226,4229,4231,4232,4233,4235,4240,4241,4246,4249,4251,4253,4254,4258,4259,4261,4262,4263,4264,4265,4272,4274,4278,4280,4281,4283,4285,4286,4287,4289,4292,4294,4298,4299,4302,4309,4315,4316,4319,4320,4321,4322,4323,4325,4332,4335,4336,4337,4339,4340,4342,4343,4344,4346,4347,4349,4354,4356,4357,4363,4364,4365,4366,4372,4375,4377,4379,4380,4381,4386,4387,4392,4393,4395,4396,4398,4400,4402,4403,4406,4407,4408,4410,4416,4420,4426,4428,4444,4447,4448,4456,4459,4466,4467,4475,4477,4479,4482,4483,4488,4491,4493,4499,4518,4544,4547,4548,4549,4552,4553,4559,4561,4562,4563,4564,4565,4566,4572,4573,4576,4577,4579,4581,4600,4615,4648,4652,4656,4660,4662,4663,4664,4671,4672,4673,4675,4676,4685,4686,4690,4691,4695,4705,4711,4713,4714,4715,4718,4719,4723,4725,4726,4727,4729,4738,4739,4741,4746,4747,4749,4751,4752,4755,4756,4757,4758,4759,4760,4762,4764,4811,4812,4813,4814,4815,4818,4829,4833,4834,4845,4847,4850,4851,4855,4859,4864,4866,4870,4871,4872,4875,4878,4879,4881,4884,4889,4895,4896,4897,4900,4907,4908,4910,4911,4913,4914,4916,4918,4920,4923,4926,4927,4928,4930,4933,4935,4939,4941,4943,4945,4947,4951,4952,4956,4960,4962,4967,4968,4969,4971,4972,4974,4978,4979,4983,4989,4990,4993,4995,4996,4999,5000,5002,5003,5005,5006,5007,5010,5013,5014,5017,5023,5024,5025,5026,5027,5030,5033,5035,5040,5041,5042,5044,5046,5047,5051,5054,5056,5058,5064,5065,5068,5069,5075,5076,5077,5078,5080,5081,5082,5084,5088,5091,5098,5099,5102,5103,5104,5105,5109,5110,5111,5115,5119,5122,5123,5127,5129,5131,5133,5135,5138,5139,5142,5143,5147,5148,5151,5154,5155,5156,5158,5161,5162,5163,5164,5165,5167,5168,5170,5171,5178,5179,5180,5182,5188,5190,5191,5194,5197,5198,5199,5202,5205,5206,5207,5209,5210,5212,5214,5215,5216,5218,5221,5225,5226,5227,5230,5231,5235,5237,5239,5240,5242,5243,5245,5246,5250,5251,5259,5260,5262,5268,5269,5270,5271,5272,5275,5277,5285,5287,5288,5290,5297,5299,5306,5312,5313,5318,5321,5322,5324,5326,5327,5330,5334,5336,5337,5342,5343,5345,5347,5348,5354,5358,5360,5362,5366,5369,5373,5380,5382,5383,5396,5398,5400,5402,5404,5405,5407,5409,5410,5411,5414,5415,5435,5440,5441,5446,5451,5453,5454,5459,5460,5463,5464,5466,5470,5471,5474,5477,5484,5485,5486,5488,5491,5494,5495,5500,5504,5505,5513,5529,5530,5534,5536,5538,5540,5543,5547,5548,5554,5556,5558,5559,5564,5566,5573,5575,5576,5578,5581,5582,5583,5586,5587,5588,5589,5591,5593,5595,5596,5597,5611,5612,5618,5619,5620,5623,5626,5631,5632,5635,5640,5658,5659,5669,5670,5671,5674,5680,5681,5687,5688,5693,5695,5696,5697,5698,5699,5701,5704,5706,5708,5711,5714,5715,5716,5723,5724,5726,5727,5728,5729,5730,5731,5732,5737,5739,5740,5741,5742,5744,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5802,5803,5804,5805,5807,5810,5811,5840,5845,5847,5848,5853,5857,5859,5861,5862,5864,5866,5867,5869,5870,5871,5872,5873,5878,5879,5882,5883,5887,5889,5890,5892,5893,5896,5897,5899,5901,5902,5903,5907,5910,5911,5913,5920,5924,5926,5927,5931,5932,5933,5934,5935,5936,5937,5940,5943,5944,5951,5952,5953,5954,5955,5956,5960,5961,5963,5964,5965,5966,5967,5969,5970,5971,5972,5974,5975,5978,5979,5983,5985,5987,5989,5991,5992,5993,5994,5996,6000,6003,6009,6010,6012,6015,6019,6021,6023,6026,6028,6029,6030,6031,6033,6034,6035,6036,6040,6057,6061,6065,6068,6076,6085,6086,6087,6088,6089,6096,6097,6103,6104,6113,6116,6117,6118,6120,6121,6122,6123,6126,6127,6128,6130,6131,6161,6167,6175,6192,6193,6194,6195,6197,6199,6200,6215,6216,6218,6219,6221,6275,6279,6287,6288,6289,6293,6294,6295,6296,6299,6301,6303,6370,6371,6372,6374,6376,6377,6379,6380,6384,6389,6390,6392,6394,6397,6398,6399,6402,6404,6405,6406,6408,6409,6411,6412,6413,6415,6416,6417,6418,6419,6420,6424,6425,6428,6429,6431,6437,6439,6443,6447,6450,6451,6452,6453,6454,6456,6457,6458,6459,6463,6464,6465,6466,6471,6473,6475,6476,6477,6479,6480,6481,6482,6483,6484,6487,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6502,6503,6504,6507,6511,6513,6514,6515,6519,6521,6522,6524,6526,6527,6528,6529,6533,6534,6536,6537,6538,6539,6540,6542,6543,6546,6548,6549,6551,6552,6555,6556,6557,6558,6565,6567,6568,6569,6572,6574,6575,6576,6577,6578,6580,6581,6582,6583,6585,6586,6589,6592,6593,6594,6596,6597,6599,6602,6603,6606,6608,6609,6612,6613,6614,6618,6620,6621,6622,6623,6656,6658,6662,6663,6664,6668,6669,6670,6672,6674,6675,6679,6680,6681,6684,6685,6686,6688,6690,6691,6692,6696,6698,6699,6701,6702,6708,6709,6710,6713,6716,6718,6719,6722,6726,6728,6730,6731,6733,6735,6736,6738,6740,6744,6750,6753,6757,6759,6760,6763,6765,6767,6769,6770,6771,6772,6774,6778,6779,6781,6782,6783,6784,6785,6790,6795,6797,6799,6802,6803,6807,6810,6812,6813,6814,6817,6819,6820,6821,6827,6830,6831,6834,6838,6840,6842,6844,6847,6849,6850,6851,6852,6853,6858,6859,6864,6865,6867,6868,6873,6874,6876,6877,6878,6880,6882,6883,6889,6903,6907,6908,6915,6917,6924,6928,6930,6935,6939,6947,6948,6949,6958,6962,6963,6966,6967,6968,6970,6972,6973,6975,6978,6980,6983,6984,6985,6992,6995,6996,7000,7002,7007,7010,7011,7013,7014,7015,7017,7020,7021,7023,7024,7041,7046,7047,7053,7059,7067,7089,7091,7097,7098,7100,7112,7122,7125,7133,7158,7160,7164,7166,7167,7168,7170,7174,7176,7186,7188,7196,7199,7200,7201,7203,7205,7206,7208,7209,7210,7211,7212,7217,7223,7224,7226,7227,7228,7229,7231,7232,7233,7234,7235,7237,7239,7251,7252,7255,7257,7258,7259,7260,7261,7262,7263,7268,7269,7271,7272,7273,7277,7283,7288,7289,7291,7292,7294,7300,7301,7303,7305,7311,7315,7316,7320,7321,7322,7325,7327,7328,7329,7330,7334,7336,7337,7338,7339,7340,7342,7344,7345,7346,7349,7352,7353,7355,7356,7357,7358,7363,7364,7367,7368,7369,7370,7377,7380,7389,7390,7394,7397,7399,7407,7408,7409,7410,7411,7413,7414,7415,7418,7419,7420,7426,7432,7435,7436,7437,7438,7439,7443,7449,7450,7451,7456,7460,7463,7466,7467,7468,7469,7470,7471,7474,7475,7476,7478,7480,7482,7484,7488,7489,7492,7498,7499,7500,7505,7520,7531,7532,7534,7535,7536,7537,7547,7553,7556,7562,7563,7564,7567,7568,7571,7573,7576,7578,7580,7583,7584,7585,7586,7588,7592,7593,7595,7598,7599,7600,7601,7608,7614,7618,7619,7628,7629,7633,7638,7640,7642,7643,7644,7646,7654,7656,7657,7660,7661,7662,7664,7667,7668,7669,7670,7671,7672,7673,7675,7680,7682,7685,7687,7692,7695,7696,7698,7699,7701,7702,7703,7705,7707,7711,7713,7716,7717,7718,7719,7720,7721,7723,7724,7726,7731,7732,7738,7742,7743,7745,7747,7751,7758,7759,7761,7762,7763,7766,7768,7769,7770,7771,7774,7776,7777,7784,7785,7787,7791,7795,7796,7798,7801,7804,7808,7810,7811,7812,7814,7815,7818,7825,7826,7832,7833,7841,7842,7843,7844,7845,7846,7848,7849,7850,7854,7855,7857,7858,7860,7863,7865,7869,7871,7872,7874,7875,7882,7884,7885,7886,7890,7891,7892,7896,7898,7899,7900,7905,7907,7910,7913,7916,7917,7920,7922,7924,7925,7928,7936,7939,7943,7944,7946,7947,7950,7951,7953,7954,7957,7959,7961,7963,7968,7971,7979,7980,7982,7985,7988,7996,7998,7999,8000,8001,8011,8013,8016,8017,8018,8019,8020,8021,8022,8023,8036,8038,8053,8057,8070,8078,8079,8081,8091,8092,8093,8094,8095,8098,8099,8100,8102,8106,8107,8111,8113,8116,8125,8127,8128,8129,8131,8132,8134,8135,8139,8149,8151,8152,8153,8156,8157,8158,8159,8160,8166,8167,8168,8169,8172,8173,8174,8175,8177,8186,8187,8189,8192,8193,8200,8201,8204,8207,8208,8209,8210,8211,8212,8213,8215,8216,8218,8219,8222,8223,8234,8237,8238,8243,8244,8246,8247,8256,8257,8259,8260,8265,8270,8274,8275,8277,8278,8280,8281,8284,8287,8290,8292,8294,8295,8296,8297,8298,8300,8301,8302,8310,8311,8312,8313,8314,8315,8316,8317,8321,8322,8325,8326,8327,8329,8330,8334,8337,8338,8339,8344,8345,8347,8348,8349,8351,8359,8362,8363,8367,8369,8371,8372,8375,8376,8377,8378,8379,8382,8386,8387,8394,8395,8396,8397,8399,8401,8403,8405,8409,8410,8412,8413,8414,8418,8420,8423,8429,8432,8434,8435,8436,8437,8443,8451,8455,8457,8463,8464,8468,8470,8471,8472,8473,8479,8480,8483,8488,8493,8494,8495,8496,8497,8501,8502,8505,8506,8507,8515,8516,8517,8521,8522,8523,8525,8526,8529,8530,8532,8539,8540,8541,8542,8543,8546,8547,8548,8549,8550,8551,8552,8554,8557,8558,8559,8560,8566,8576,8581,8583,8588,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8601,8602,8603,8622,8665,8669,8671,8673,8674,8693,8694,8696,8697,8701,8702,8709,8712,8713,8716,8720,8726,8729,8731,8732,8744,8746,8750,8753,8754,8755,8756,8758,8760,8761,8764,8768,8771,8773,8774,8775,8779,8786,8787,8790,8791,8792,8793,8796,8797,8799,8800,8802,8805,8807,8810,8813,8814,8816,8817,8819,8822,8823,8825,8826,8827,8830,8836,8837,8841,8842,8843,8844,8851,8859,8865,8871,8878,8879,8881,8885,8886,8887,8901,8905,8906,8908,8909,8910,8911,8912,8915,8917,8923,8924,8928,8932,8935,8936,8947,8948,8949,8952,8955,8957,8958,8961,8971,8973,8974,8975,8976,8981,8982,8985,8986,8988,8989,8991,8995,8996,8999,9001,9005,9006,9009,9010,9016,9017,9018,9020,9021,9024,9027,9028,9030,9033,9034,9038,9039,9040,9043,9048,9049,9050,9051,9052,9054,9056,9058,9060,9061,9062,9063,9066,9067,9068,9075,9076,9078,9080,9081,9082,9083,9087,9088,9091,9092,9103,9106,9110,9111,9112,9118,9119,9121,9122,9123,9127,9128,9131,9135,9136,9139,9142,9143,9146,9147,9148,9152,9155,9157,9159,9160,9161,9164,9165,9166,9167,9169,9171,9172,9175,9176,9180,9182,9183,9186,9188,9190,9192,9195,9196,9205,9209,9210,9211,9212,9213,9214,9215,9217,9224,9226,9232,9233,9234,9239,9240,9244,9253,9254,9261,9262,9264,9266,9267,9268,9269,9270,9271,9272,9275,9278,9279,9283,9285,9286,9294,9295,9296,9299,9301,9302,9305,9307,9309,9314,9316,9317,9335,9336,9337,9340,9344,9345,9347,9350,9351,9353,9354,9358,9359,9360,9361,9364,9367,9371,9374,9376,9377,9378,9379,9381,9388,9389,9390,9391,9397,9401,9402,9406,9407,9408,9409,9414,9420,9421,9423,9429,9430,9433,9434,9435,9436,9437,9439,9444,9447,9449,9450,9453,9454,9455,9457,9458,9460,9463,9464,9466,9470,9473,9474,9476,9478,9485,9486,9488,9491,9497,9499,9500,9504,9506,9507,9511,9512,9514,9517,9518,9532,9533,9540,9547,9552,9554,9556,9559,9564,9565,9567,9578,9579,9582,9587,9594,9598,9599,9600,9603,9604,9610,9634,9638,9640,9653,9654,9655,9667,9671,9673,9680,9686,9689,9691,9692,9694,9698,9702,9703,9704,9706,9709,9713,9714,9719,9723,9724,9726,9728,9731,9732,9733,9735,9738,9739,9746,9748,9755,9756,9763,9765,9767,9772,9773,9778,9780,9781,9782,9784,9786,9790,9792,9799,9800,9802,9803,9804,9806,9808,9810,9811,9812,9819,9820,9821,9822,9824,9826,9830,9831,9833,9835,9836,9838,9839,9841,9842,9843,9844,9846,9847,9848,9855,9856,9857,9858,9859,9860,9861,9862,9864,9865,9868,9870,9873,9875,9877,9882,9888,9890,9892,9893,9896,9901,9903,9905,9906,9910,9917,9918,9920,9921,9922,9923,9924,9930,9934,9939,9941,9943,9945,9949,9953,9954,9960,9966,9969,9971,9973,9974,9975,9976,9978,9980,9989,9990,9994,9995,9996,9997,9998,9999,10000,10002,10004,10006,10007,10008,10009,10010,10011,10013,10014,10015,10016,10017,10019,10022,10024,10028,10030,10032,10035,10036,10038,10039,10040,10041,10046,10048,10051,10054,10056,10057,10058,10059,10062,10063,10065,10069,10072,10073,10075,10076,10077,10078,10079,10083,10100,10101,10103,10107,10109,10111,10113,10118,10122,10123,10125,10126,10128,10130,10132,10133,10134,10135,10140,10141,10142,10143,10148,10149,10151,10153,10154,10156,10157,10158,10161,10163,10164,10165,10167,10168,10169,10170,10171,10172,10173,10175,10176,10177,10179,10180,10181,10182,10184,10185,10186,10187,10189,10192,10195,10199,10200,10204,10206,10215,10216,10217,10219,10222,10228,10229,10231,10235,10240,10241,10244,10245,10246,10247,10249,10250,10251,10262,10263,10265,10270,10272,10284,10286,10298,10310,10315,10316,10317,10318,10319,10323,10325,10326,10327,10328,10330,10335,10341,10342,10343,10344,10345,10346,10347,10350,10352,10355,10387,10391,10393,10395,10396,10397,10399,10402,10403,10426,10428,10454,10458,10459,10460,10461,10462,10463,10464,10465,10466,10467,10468,10469,10486,10509,10511,10512,10514,10518,10519,10521,10524,10525,10526,10528,10530,10531,10532,10534,10549,10553,10556,10558,10559,10567,10576,10582,10583,10584,10586,10587,10588,10607,10608,10609,10611,10612,10653,10654,10655,10657,10658,10661,10663,10667,10668,10669,10670,10671,10673,10675,10676,10678,10681,10684,10687,10691,10693,10695,10696,10735,10738,10751,10758,10763,10765,10766,10767,10769,10772,10773,10774,10782,10785,10786,10789,10790,10791,10793,10794,10795,10803,10805,10806,10807,10808,10816,10817,10818,10819,10820,10821,10822,10844,10853,10863,10868,10869,10871,10873,10874,10875,10881,10882,10885,10888,10890,10891,10892,10893,10894,10897,10898,10899,10900,10902,10903,10910,10911,10915,10923,10924,10926,10927,10928,10930,10931,10933,10935,10936,10939,10940,10941,10942,10946,10950,10954,10955,10966,10976,10977,10982,10983,10984,10985,11009,11015,11110,11132,11144,11150,11151,11152,11154,11174,11184,11189,11204,11205,11209,11222,11223,11227,11229,11230,11232,11235,11236,11237,11243,11246,11248,11249,11252,11253,11257,11258,11259,11261,11265,11269,11270,11272,11273,11275,11282,11285,11287,11292,11293,11297,11298,11305,11306,11308,11312,11315,11317,11320,11321,11325,11326,11329,11331,11332,11334,11335,11336,11338,11340,11342,11346,11348,11350,11351,11360,11365,11366,11367,11371,11372,11375,11376,11387,11391,11396,11399,11403,11404,11405,11408,11409,11410,11411,11413,11415,11418,11420,11425,11428,11430,11431,11432,11433,11434,11435,11436,11438,11441,11446,11450,11451,11456,11462,11464,11466,11468,11472,11478,11479,11480,11482,11487,11489,11498,11499,11502,11506,11508,11510,11513,11514,11515,11521,11528,11529,11542,11546,11547,11549,11552,11555,11558,11560,11561,11565,11567,11572,11573,11575,11590,11591,11594,11604,11612,11613,11624,11628,11631,11633,11634,11635,11637,11640,11641,11645,11649,11650,11651,11652,11653,11654,11655,11657,11658,11663,11664,11665,11666,11667,11668,11669,11670,11676,11681,11682,11683,11684,11688,11689,11690,11691,11695,11697,11699,11700,11701,11707,11709,11715,11718,11719,11722,11723,11724,11728,11733,11734,11737,11738,11753,11758,11767,11770,11771,11772,11777,11778,11782,11783,11785,11788,11789,11794,11795,11796,11798,11806,11807,11808,11809,11811,11813,11814,11816,11825,11835,11840,11841,11843,11845,11847,11848,11854,11855,11856,11862,11864,11866,11878,11879,11880,11887,11888,11889,11893,11897,11905,11911,11914,11915,11916,11917,11919,11920,11923,11924,11933,11936,11937,11938,11940,11941,11942,11944,11947,11948,11949,11950,11952,11953,11954,11957,11960,11961,11962,11963,11964,11965,11966,11969,11983,11986,11994,11996,11997,12003,12006,12007,12010,12012,12014,12015,12017,12019,12021,12023,12099,12101,12105,12107,12109,12112,12170,12183,12200,12218,12226,12237,12240,12246,12249,12257,12300,12303,12304,12305,12307,12308,12315,12316,12324,12325,12328,12340,12360,12361,12365,12370,12372,12373,12374,12379,12387,12388,12389,12390,12392,12394,12395,12402,12406,12410,12419,12422,12425,12494,12495,12499,12500,12502,12516,12517,12519,12520,12523,12526,12527,12528,12530,12533,12535,12537,12543,12547,12578,12580,12584,12587,12588,12634,12635,12651,12654,12655,12673,12674,12676,12679,12688,12689,12693,12694,12698,12706,12712,12713,12717,12719,12720,12725,12727,12731,12733,12734,12735,12737,12739,12741,12742,12748,12750,12753,12757,12760,12763,12766,12769,12770,12771,12773,12774,12778,12781,12784,12787,12788,12789,12790,12792,12793,12794,12797,12802,12803,12804,12806,12807,12815,12817,12818,12819,12820,12821,12822,12823,12828,12837,12844,12849,12850,12853,12854,12855,12857,12861,12863,12865,12876,12878,12889,12893,12895,12897,12898,12901,12902,12903,12905,13029,13162,13527,13629,13631,13632,13794,13865,13867,13870,13922,13923,13929,13931,13932,13934,13938,13948,13956,13964,14075,14082,14096,14099,14273,14279,14287,14293,14308,14313,14319,14338,14354,14379,14389,14392,14397,14411,14478,14629,14709,14721,15019,15118,15155,15169,15181,15186,15187,15192,15200,15253,15262,15417,15454,15493,15510,15535,15536,15538,15543,15550,15551,15561,15571,15572,15606,15617,15630,15634,15635,15648,15649,15658,15659,15671,15684,15685,15687,15688,15691,15695,15804,15814,15842,15849,15856,15868,15906,15907,16033,16088,16099,16116,16119,16126,16148,16152,16172,16173,16174,16176,16194,16195,16204,16205,16223,16226,16228,16229,16231,16233,16276,16293,16315,16335,16336,16340,16342,16347,16350,16362,16363,16372,16376,16378,16384,16419,16462,16464,16467,16539,16562,16571,16873,17038,17045,17050,17055,17100,17121,17160,17191,17328,17329,17336,17343,17345,17350,17351,17353,17357,17369,17370,17374,17376,17382,17383,17384,17385,17386,17389,17391,17396,17401,17403,17404,17416,17417,17436,17442,17443,17444,17447,17450,17455,17458,17466,17467,17473,17474,17475,17476,17482,17486,17487,17490,17512,17513,17518,17519,17520,17521,17524,17532,17536,17537,17543,17545,17561,17568,17572,17574,17575,17576,17601,17605,17606,17639,17644,17647,17651,17652,17658,17705,17725,17737,17744,17763,17770,17774,17777,17781,17788,17794,17795,17799,17802,17809,17811,17813,17814,17820,17833,17840,17841,17850,17862,17865,17893,17895,17897,17898,17899,17923,17925,17929,17968,18008,18017,18018,18025,18026,18033,18039,18060,18061,18094,18098,18151,18152,18162,18173,18203,18215,18216,18228,18237,18239,18240,18243,18247,18297,18298,18332,18337,18339,18342,18343,18345,18347,18348,18349,18350,18352,18353,18354,18356,18360,18364,18366,18368,18369,18370,18371,18375,18393,18395,18397,18398,18414,18416,18433,18434,18457,18458,18473,18553,18581,18613,18628,18642,18657,18662,18666,18690,18695,18706,18717,18750,18751,18757,18759,18778,18819,18860,18861,18862,18863,18876,18877,18890,18900,18908,18915,18917,18930,18940,18941,18942,18955,18963,18971,18972,18982,18984,18995,18998,19001,19003,19009,19010,19011,19014,19015,19020,19023,19026,19050,19065,19072,19077,19082,19101,19103,19107,19113,19116,19121,19124,19129,19131,19132,19134,19137,19138,19141,19142,19143,19144,19145,19146,19148,19150,19154,19160,19163,19164,19177,19178,19186,19187,19188,19190,19191,19202,19219,19223,19224,19226,19228,19229,19230,19231,19232,19233,19234,19236,19246,19247,19253,19256,19259,19263,19264,19265,19266,19268,19270,19272,19273,19276,19277,19278,19279,19309,19310,19312,19315,19318,19321,19322,19326,19341,19346,19349,19350,19351,19354,19357,19361,19370,19379,19380,19381,19384,19386,19404,19405,19407,19409,19411,19412,19414,19415,19416,19418,19419,19422,19423,19424,19425,19427,19434,19435,19437,19441,19442,19444,19446,19447,19448,19455,19458,19459,19463,19464,19466,19480,19481,19484,19485,19486,19487,19491,19492,19497,19500,19502,19505,19506,19508,19509,19511,19516,19517,19520,19522,19525,19529,19532,19534,19538,19540,19542,19543,19545,19547,19549,19551,19552,19553,19554,19555,19564,19570,19578,19579,19580,19582,19587,19591,19593,19594,19595,19601,19602,19604,19605,19606,19607,19608,19609,19610,19611,19613,19616,19620,19621,19622,19624,19628,19629,19630,19632,19633,19640,19642,19645,19646,19649,19652,19654,19663,19664,19666,19669,19670,19676,19688,19698,19702,19705,19714,19718,19723,19724,19725,19734,19735,19736,19738,19739,19740,19742,19743,19744,19745,19747,19748,19752,19753,19754,19759,19760,19761,19766,19771,19772,19773,19775,19782,19784,19786,19789,19795,19797,19801,19803,19804,19807,19810,19811,19812,19814,19815,19816,19817,19819,19826,19837,19838,19839,19840,19841,19844,19845,19846,19847,19848,19852,19853,19855,19856,19858,19859,19860,19862,19863,19866,19867,19868,19869,19870,19871,19873,19874,19877,19879,19884,19887,19895,19896,19899,19901,19902,19904,19905,19906,19908,19909,19911,19914,19928,19929,19932,19937,19939,19943,19945,19948,19950,19952,19955,19956,19957,19959,19961,19966,19967,19968,19969,19970,19973,19975,19978,19987,19992,19993,19998,20000,20002,20003,20007,20008,20009,20010,20012,20014,20015,20019,20021,20022,20024,20025,20027,20030,20031,20035,20040,20041,20045,20058,20074,20077,20118,20128,20129,20133,20137,20155,20159,20162,20164,20166,20169,20185,20186,20191,20194,20200,20206,20209,20214,20221,20222,20223,20224,20236,20237,20240,20241,20248,20251,20256,20257,20262,20267,20271,20272,20273,20275,20279,20284,20285,20286,20289,20293,20300,20301,20307,20308,20309,20319,20329,20333,20334,20431,20443,20475,20487,20488,20494,20495,20499,20500,20503,20504,20510,20512,20519,20521,20523,20529,20530,20532,20533,20534,20535,20542,20544,20548,20552,20555,20556,20557,20562,20568,20577,20580,20585,20599,20601,20607,20613,20616,20621,20629,20630,20631,20636,20639,20640,20649,20652,20656,20662,20668,20672,20673,20675,20677,20680,20686,20692,20693,20696,20703,20705,20718,20722,20723,20728,20729,20731,20735,20736,20740,20753,20754,20758,20760,20761,20762,20764,20777,20780,20782,20783,20784,20787,20788,20791,20792,20794,20795,20799,20805,20812,20813,20815,20820,20822,20823,20824,20828,20829,20834,20837,20839,20841,20851,20860,20862,20863,20864,20868,20870,20876,20880,20896,20898,20899,20903,20906,20907,20908,20916,20917,20918,20923,20929,20933,20935,20936,20937,20938,20978,20987,21025,21026,21028,21029,21043,21044,21045,21046,21058,21064,21069,21072,21077,21081,21083,21088,21090,21092,21097,21099,21100,21111,21116,21119,21126,21163,21182,21193,21195,21196,21197,21201,21202,21203,21213,21214,21215,21216,21218,21219,21222,21225,21226,21227,21228,21229,21230,21244,21245,21246,21251,21253,21255,21260,21261,21263,21275,21280,21283,21284,21285,21286,21302,21304,21306,21308,21309,21311,21312,21316,21317,21320,21321,21323,21324,21325,21329,21336,21340,21349,21351,21352,21354,21356,21362,21364,21366,21371,21379,21382,21385,21389,21390,21392,21409,21410,21416,21418,21425,21429,21455,21458,21459,21460,21462,21469,21473,21474,21475,21477,21481,21482,21483,21485,21486,21488,21490,21491,21505,21509,21515,21519,21524,21527,21530,21539,21567,21570,21575,21579,21580,21581,21582,21583,21593,21594,21596,21598,21599,21600,21602,21603,21604,21606,21610,21611,21614,21615,21618,21619,21631,21634,21638,21647,21648,21650,21657,21667,21669,21670,21673,21675,21679,21692,21693,21700,21701,21722,21739,21746,21747,21749,21750,21752,21753,21761,21965,21968,21976,21977,21980,21988,21991,21999,22000,22001,22003,22016,22020,22022,22023,22024,22026,22027,22029,22036,22088,22097,22098,22099,22100,22102,22111,22112,22114,22115,22118,22120,22122,22125,22126,22127,22128,22129,22133,22143,22152,22158,22165,22170,22185,22208,22220,22228,22237,22255,22265,22330,22334,22336,22337,22339,22340,22344,22345,22351,22355,22361,22367,22377,22383,22386,22388,22389,22391,22396,22397,22412,22417,22421,22424,22429,22434,22441,22449,22458,22466,22468,22474,22492,22493,22496,22498,22499,22502,22503,22504,22506,22507,22509,22524,22527,22529,22530,22531,22536,22540,22546,22547,22548,22555,22558,22560,22568,22571,22575,22609,22613,22627,22634,22639,22648,22649,22650,22652,22666,22701,22735,22737,22762,22790,22791,22793,22799,22800,22808,22813,22816,22818,22839,22840,22854,22858,22860,22861,22862,22866,22876,22884,22889,22890,22891,22895,22896,22897,22899,22901,22905,22908,22911,22913,22919,22920,22921,22929,22932,22944,22945,22946,22955,22959,22960,22964,22969,22974,22983,22985,22986,22988,22990,22991,22993,22997,22998,23019,23022,23032,23034,23035,23036,23037,23038,23040,23042,23047,23048,23049,23051,23052,23054,23055,23061,23066,23068,23070,23080,23084,23086,23087,23091,23092,23095,23102,23105,23106,23107,23112,23116,23122,23123,23130,23131,23132,23139,23143,23144]]],["+",[6331,5032,[[0,571,458,0,458,[[0,11,10,0,10],[1,10,10,10,20],[2,7,5,20,25],[3,18,11,25,36],[4,21,20,36,56],[5,10,8,56,64],[6,2,2,64,66],[7,11,9,66,75],[8,12,9,75,84],[9,7,6,84,90],[10,24,21,90,111],[11,5,5,111,116],[12,6,3,116,119],[13,10,8,119,127],[14,4,4,127,131],[15,3,3,131,134],[16,13,10,134,144],[17,3,2,144,146],[18,16,11,146,157],[19,4,4,157,161],[20,14,13,161,174],[21,26,13,174,187],[22,9,8,187,195],[23,20,16,195,211],[24,10,9,211,220],[25,7,6,220,226],[26,12,10,226,236],[27,8,6,236,242],[28,18,13,242,255],[29,18,16,255,271],[30,34,26,271,297],[31,11,8,297,305],[32,8,6,305,311],[33,12,11,311,322],[34,6,6,322,328],[35,11,8,328,336],[36,14,10,336,346],[37,5,5,346,351],[38,5,4,351,355],[39,11,9,355,364],[40,20,18,364,382],[41,14,12,382,394],[42,14,12,394,406],[43,12,9,406,415],[44,8,7,415,422],[45,5,5,422,427],[46,13,10,427,437],[47,14,12,437,449],[48,4,2,449,451],[49,11,7,451,458]]],[1,565,433,458,891,[[50,7,6,458,464],[51,20,17,464,481],[52,16,12,481,493],[53,13,11,493,504],[54,6,6,504,510],[55,14,10,510,520],[56,13,9,520,529],[57,16,13,529,542],[58,12,12,542,554],[59,23,17,554,571],[60,4,3,571,574],[61,17,13,574,587],[62,9,6,587,593],[63,24,17,593,610],[64,4,4,610,614],[65,17,13,614,627],[66,5,5,627,632],[67,13,11,632,643],[68,8,8,643,651],[69,11,6,651,657],[70,14,8,657,665],[71,3,3,665,668],[72,21,12,668,680],[73,7,7,680,687],[74,12,10,687,697],[75,13,10,697,707],[76,3,3,707,710],[77,19,15,710,725],[78,27,21,725,746],[79,9,9,746,755],[80,6,5,755,760],[81,16,12,760,772],[82,13,10,772,782],[83,14,10,782,792],[84,16,10,792,802],[85,13,13,802,815],[86,16,13,815,828],[87,11,9,828,837],[88,29,23,837,860],[89,51,31,860,891]]],[2,414,304,891,1195,[[90,13,10,891,901],[91,5,5,901,906],[92,11,7,906,913],[93,15,9,913,922],[94,6,5,922,927],[95,10,6,927,933],[96,18,11,933,944],[97,38,26,944,970],[98,16,14,970,984],[99,9,7,984,991],[100,10,10,991,1001],[102,24,17,1001,1018],[103,40,28,1018,1046],[104,7,6,1046,1052],[105,29,20,1052,1072],[106,6,5,1072,1077],[107,10,9,1077,1086],[108,15,14,1086,1100],[109,26,16,1100,1116],[110,11,8,1116,1124],[111,9,8,1124,1132],[112,16,14,1132,1146],[113,7,5,1146,1151],[114,17,15,1151,1166],[115,37,21,1166,1187],[116,9,8,1187,1195]]],[3,399,324,1195,1519,[[117,9,7,1195,1202],[118,2,2,1202,1204],[119,15,12,1204,1216],[120,21,20,1216,1236],[121,26,19,1236,1255],[122,10,8,1255,1263],[123,9,8,1263,1271],[124,22,15,1271,1286],[125,7,6,1286,1292],[126,2,2,1292,1294],[127,14,11,1294,1305],[129,7,7,1305,1312],[130,20,18,1312,1330],[131,8,8,1330,1338],[132,19,15,1338,1353],[133,3,3,1353,1356],[134,16,13,1356,1369],[135,8,6,1369,1375],[136,21,13,1375,1388],[137,19,15,1388,1403],[138,23,18,1403,1421],[139,2,2,1421,1423],[140,7,6,1423,1429],[141,7,5,1429,1434],[142,12,10,1434,1444],[143,10,9,1444,1453],[144,2,2,1453,1455],[145,2,2,1455,1457],[146,7,5,1457,1462],[147,19,14,1462,1476],[148,20,19,1476,1495],[149,9,6,1495,1501],[150,5,5,1501,1506],[151,11,10,1506,1516],[152,5,3,1516,1519]]],[4,386,308,1519,1827,[[153,20,19,1519,1538],[154,22,16,1538,1554],[155,14,11,1554,1565],[156,22,18,1565,1583],[157,14,11,1583,1594],[158,13,11,1594,1605],[159,11,9,1605,1614],[160,11,9,1614,1623],[161,17,12,1623,1635],[162,10,8,1635,1643],[163,20,14,1643,1657],[164,17,12,1657,1669],[165,7,6,1669,1675],[166,4,4,1675,1679],[167,9,8,1679,1687],[168,9,8,1687,1695],[169,6,3,1695,1698],[170,5,5,1698,1703],[171,8,6,1703,1709],[172,5,4,1709,1713],[173,12,8,1713,1721],[174,14,11,1721,1732],[175,2,2,1732,1734],[176,6,6,1734,1740],[177,8,7,1740,1747],[178,8,6,1747,1753],[179,11,8,1753,1761],[180,17,13,1761,1774],[181,14,13,1774,1787],[182,10,9,1787,1796],[183,29,22,1796,1818],[184,7,6,1818,1824],[185,1,1,1824,1825],[186,3,2,1825,1827]]],[5,272,203,1827,2030,[[187,12,9,1827,1836],[188,14,11,1836,1847],[189,9,7,1847,1854],[190,13,10,1854,1864],[191,6,5,1864,1869],[192,24,18,1869,1887],[193,17,12,1887,1899],[194,19,16,1899,1915],[195,7,3,1915,1918],[196,19,12,1918,1930],[197,18,12,1930,1942],[198,1,1,1942,1943],[199,3,3,1943,1946],[200,7,5,1946,1951],[201,4,2,1951,1953],[202,1,1,1953,1954],[203,4,4,1954,1958],[204,7,6,1958,1964],[205,3,3,1964,1967],[206,5,4,1967,1971],[207,22,18,1971,1989],[208,16,13,1989,2002],[209,6,6,2002,2008],[210,35,22,2008,2030]]],[6,284,220,2030,2250,[[211,23,19,2030,2049],[212,20,12,2049,2061],[213,30,18,2061,2079],[214,15,13,2079,2092],[216,25,20,2092,2112],[217,14,12,2112,2124],[218,18,12,2124,2136],[219,32,26,2136,2162],[220,12,8,2162,2170],[221,22,18,2170,2188],[222,10,8,2188,2196],[223,3,3,2196,2199],[224,4,4,2199,2203],[225,6,6,2203,2209],[226,12,9,2209,2218],[227,5,4,2218,2222],[228,18,15,2222,2237],[229,6,4,2237,2241],[230,6,6,2241,2247],[231,3,3,2247,2250]]],[7,26,20,2250,2270,[[232,1,1,2250,2251],[233,6,6,2251,2257],[234,2,2,2257,2259],[235,17,11,2259,2270]]],[8,358,293,2270,2563,[[236,14,12,2270,2282],[237,16,14,2282,2296],[238,6,5,2296,2301],[239,7,7,2301,2308],[240,11,7,2308,2315],[241,16,11,2315,2326],[242,12,10,2326,2336],[243,5,5,2336,2341],[244,11,9,2341,2350],[245,8,7,2350,2357],[246,5,4,2357,2361],[247,20,13,2361,2374],[248,7,6,2374,2380],[249,12,10,2380,2390],[250,20,15,2390,2405],[251,5,5,2405,2410],[252,26,24,2410,2434],[253,9,9,2434,2443],[254,16,11,2443,2454],[255,21,17,2454,2471],[256,5,5,2471,2476],[257,11,7,2476,2483],[258,10,9,2483,2492],[259,17,13,2492,2505],[260,22,18,2505,2523],[261,10,10,2523,2533],[262,1,1,2533,2534],[263,13,10,2534,2544],[264,2,2,2544,2546],[265,8,8,2546,2554],[266,12,9,2554,2563]]],[9,278,218,2563,2781,[[267,2,2,2563,2565],[268,6,5,2565,2570],[269,17,11,2570,2581],[270,11,5,2581,2586],[271,12,9,2586,2595],[272,13,11,2595,2606],[273,12,10,2606,2616],[274,10,8,2616,2624],[275,2,2,2624,2626],[276,11,7,2626,2633],[277,10,9,2633,2642],[278,21,18,2642,2660],[279,18,13,2660,2673],[280,23,15,2673,2688],[281,15,14,2688,2702],[282,5,4,2702,2706],[283,10,8,2706,2714],[284,13,12,2714,2726],[285,25,21,2726,2747],[286,4,4,2747,2751],[287,17,13,2751,2764],[288,2,2,2764,2766],[289,7,5,2766,2771],[290,12,10,2771,2781]]],[10,355,277,2781,3058,[[291,18,16,2781,2797],[292,25,20,2797,2817],[293,12,9,2817,2826],[294,4,3,2826,2829],[295,6,5,2829,2834],[296,18,13,2834,2847],[297,25,17,2847,2864],[298,37,28,2864,2892],[299,16,13,2892,2905],[300,7,6,2905,2911],[301,22,17,2911,2928],[302,18,14,2928,2942],[303,16,12,2942,2954],[304,13,8,2954,2962],[305,17,13,2962,2975],[306,19,13,2975,2988],[307,3,3,2988,2991],[308,21,18,2991,3009],[309,12,9,3009,3018],[310,18,16,3018,3034],[311,11,9,3034,3043],[312,17,15,3043,3058]]],[11,332,246,3058,3304,[[313,1,1,3058,3059],[314,9,6,3059,3065],[315,8,7,3065,3072],[316,6,5,3072,3077],[317,6,5,3077,3082],[318,16,10,3082,3092],[319,5,5,3092,3097],[320,14,11,3097,3108],[321,13,12,3108,3120],[322,17,13,3120,3133],[323,18,14,3133,3147],[324,11,11,3147,3158],[325,10,6,3158,3164],[326,16,11,3164,3175],[327,7,6,3175,3181],[328,14,9,3181,3190],[329,33,23,3190,3213],[330,19,14,3213,3227],[331,9,9,3227,3236],[332,10,8,3236,3244],[333,16,12,3244,3256],[334,11,9,3256,3265],[335,43,22,3265,3287],[336,8,6,3287,3293],[337,12,11,3293,3304]]],[12,261,197,3304,3501,[[338,9,8,3304,3312],[339,30,17,3312,3329],[341,12,10,3329,3339],[342,1,1,3339,3340],[343,38,26,3340,3366],[344,6,6,3366,3372],[345,16,12,3372,3384],[346,9,5,3384,3389],[347,11,8,3389,3397],[348,14,10,3397,3407],[349,6,4,3407,3411],[350,11,8,3411,3419],[351,7,6,3419,3425],[352,15,13,3425,3438],[353,5,5,3438,3443],[354,12,10,3443,3453],[355,11,10,3453,3463],[356,7,6,3463,3469],[357,8,5,3469,3474],[358,13,9,3474,3483],[359,6,5,3483,3488],[360,4,4,3488,3492],[364,2,2,3492,3494],[365,5,4,3494,3498],[366,3,3,3498,3501]]],[13,330,267,3501,3768,[[367,3,3,3501,3504],[368,4,4,3504,3508],[369,6,6,3508,3514],[370,8,7,3514,3521],[371,7,6,3521,3527],[372,17,14,3527,3541],[373,15,12,3541,3553],[374,3,3,3553,3556],[375,10,8,3556,3564],[376,9,9,3564,3573],[377,12,10,3573,3583],[378,7,5,3583,3588],[379,6,5,3588,3593],[380,10,6,3593,3599],[381,5,5,3599,3604],[382,7,5,3604,3609],[383,3,3,3609,3612],[384,10,10,3612,3622],[386,9,7,3622,3629],[387,8,8,3629,3637],[388,9,7,3637,3644],[389,16,11,3644,3655],[390,18,13,3655,3668],[391,14,9,3668,3677],[392,6,5,3677,3682],[393,1,1,3682,3683],[394,12,10,3683,3693],[395,14,13,3693,3706],[396,8,8,3706,3714],[397,6,5,3714,3719],[398,10,9,3719,3728],[399,13,8,3728,3736],[400,29,20,3736,3756],[401,4,3,3756,3759],[402,11,9,3759,3768]]],[14,20,17,3768,3785,[[403,4,4,3768,3772],[405,4,4,3772,3776],[406,1,1,3776,3777],[408,1,1,3777,3778],[409,2,2,3778,3780],[410,3,2,3780,3782],[411,5,3,3782,3785]]],[15,80,62,3785,3847,[[413,7,5,3785,3790],[414,2,2,3790,3792],[415,1,1,3792,3793],[416,6,6,3793,3799],[417,10,7,3799,3806],[418,5,4,3806,3810],[419,2,2,3810,3812],[420,5,4,3812,3816],[421,17,13,3816,3829],[422,7,5,3829,3834],[424,8,5,3834,3839],[425,10,8,3839,3847]]],[16,65,57,3847,3904,[[426,7,6,3847,3853],[427,8,8,3853,3861],[428,6,5,3861,3866],[429,7,6,3866,3872],[430,7,5,3872,3877],[431,8,7,3877,3884],[432,2,2,3884,3886],[433,9,7,3886,3893],[434,11,11,3893,3904]]],[17,29,26,3904,3930,[[436,4,3,3904,3907],[437,7,7,3907,3914],[438,2,1,3914,3915],[442,1,1,3915,3916],[448,1,1,3916,3917],[463,1,1,3917,3918],[467,2,2,3918,3920],[473,1,1,3920,3921],[475,2,2,3921,3923],[476,1,1,3923,3924],[477,7,6,3924,3930]]],[18,95,87,3930,4017,[[479,2,2,3930,3932],[480,1,1,3932,3933],[490,1,1,3933,3934],[491,1,1,3934,3935],[493,2,2,3935,3937],[502,1,1,3937,3938],[504,1,1,3938,3939],[505,2,1,3939,3940],[506,2,2,3940,3942],[508,2,2,3942,3944],[510,1,1,3944,3945],[511,2,2,3945,3947],[512,1,1,3947,3948],[514,1,1,3948,3949],[524,1,1,3949,3950],[530,1,1,3950,3951],[555,5,4,3951,3955],[556,3,2,3955,3957],[557,1,1,3957,3958],[569,1,1,3958,3959],[575,1,1,3959,3960],[579,5,4,3960,3964],[580,4,4,3964,3968],[581,1,1,3968,3969],[582,5,4,3969,3973],[583,8,8,3973,3981],[589,1,1,3981,3982],[590,1,1,3982,3983],[592,2,1,3983,3984],[593,2,2,3984,3986],[594,1,1,3986,3987],[596,2,2,3987,3989],[598,1,1,3989,3990],[600,1,1,3990,3991],[603,2,2,3991,3993],[607,1,1,3993,3994],[610,1,1,3994,3995],[611,1,1,3995,3996],[612,4,2,3996,3998],[614,5,5,3998,4003],[615,1,1,4003,4004],[617,1,1,4004,4005],[619,1,1,4005,4006],[621,1,1,4006,4007],[622,2,2,4007,4009],[623,3,3,4009,4012],[624,2,2,4012,4014],[625,3,3,4014,4017]]],[19,13,12,4017,4029,[[628,1,1,4017,4018],[630,4,3,4018,4021],[632,1,1,4021,4022],[633,1,1,4022,4023],[650,3,3,4023,4026],[652,1,1,4026,4027],[653,1,1,4027,4028],[654,1,1,4028,4029]]],[20,60,48,4029,4077,[[659,2,2,4029,4031],[660,5,5,4031,4036],[661,6,4,4036,4040],[662,9,8,4040,4048],[663,5,4,4048,4052],[665,9,7,4052,4059],[666,8,5,4059,4064],[667,6,4,4064,4068],[668,2,2,4068,4070],[669,5,4,4070,4074],[670,3,3,4074,4077]]],[21,16,13,4077,4090,[[671,1,1,4077,4078],[672,3,2,4078,4080],[673,3,3,4080,4083],[675,4,3,4083,4086],[678,5,4,4086,4090]]],[22,122,103,4090,4193,[[679,2,1,4090,4091],[680,1,1,4091,4092],[681,1,1,4092,4093],[682,1,1,4093,4094],[683,1,1,4094,4095],[684,5,4,4095,4099],[685,4,3,4099,4102],[686,5,4,4102,4106],[687,6,4,4106,4110],[688,1,1,4110,4111],[689,5,4,4111,4115],[691,2,2,4115,4117],[697,3,3,4117,4120],[698,1,1,4120,4121],[699,1,1,4121,4122],[700,2,2,4122,4124],[701,1,1,4124,4125],[702,1,1,4125,4126],[704,1,1,4126,4127],[705,2,2,4127,4129],[707,4,3,4129,4132],[708,3,3,4132,4135],[711,2,2,4135,4137],[714,12,9,4137,4146],[715,9,9,4146,4155],[716,5,4,4155,4159],[717,2,2,4159,4161],[718,1,1,4161,4162],[719,3,2,4162,4164],[722,1,1,4164,4165],[723,1,1,4165,4166],[725,1,1,4166,4167],[726,1,1,4167,4168],[727,2,2,4168,4170],[729,3,2,4170,4172],[730,2,1,4172,4173],[733,2,2,4173,4175],[734,2,2,4175,4177],[735,1,1,4177,4178],[737,1,1,4178,4179],[740,3,3,4179,4182],[741,2,2,4182,4184],[742,1,1,4184,4185],[743,4,4,4185,4189],[744,8,4,4189,4193]]],[23,431,363,4193,4556,[[745,1,1,4193,4194],[746,8,7,4194,4201],[747,10,7,4201,4208],[748,1,1,4208,4209],[749,4,4,4209,4213],[750,4,4,4213,4217],[751,16,14,4217,4231],[752,5,4,4231,4235],[753,6,6,4235,4241],[754,4,4,4241,4245],[755,11,9,4245,4254],[756,11,7,4254,4261],[757,6,6,4261,4267],[758,4,4,4267,4271],[759,3,3,4271,4274],[760,9,7,4274,4281],[761,5,5,4281,4286],[762,4,4,4286,4290],[763,13,9,4290,4299],[764,6,6,4299,4305],[765,3,3,4305,4308],[766,8,8,4308,4316],[767,16,14,4316,4330],[768,5,4,4330,4334],[769,8,8,4334,4342],[770,12,8,4342,4350],[771,14,12,4350,4362],[772,8,8,4362,4370],[773,11,9,4370,4379],[774,3,3,4379,4382],[775,12,8,4382,4390],[776,21,19,4390,4409],[777,6,5,4409,4414],[778,16,10,4414,4424],[779,7,6,4424,4430],[780,26,20,4430,4450],[781,5,5,4450,4455],[782,14,11,4455,4466],[783,4,4,4466,4470],[784,6,6,4470,4476],[785,8,8,4476,4484],[786,3,3,4484,4487],[787,9,6,4487,4493],[788,15,12,4493,4505],[789,1,1,4505,4506],[790,1,1,4506,4507],[791,3,2,4507,4509],[792,1,1,4509,4510],[793,8,8,4510,4518],[794,10,8,4518,4526],[795,23,19,4526,4545],[796,13,11,4545,4556]]],[24,6,6,4556,4562,[[797,2,2,4556,4558],[798,2,2,4558,4560],[800,1,1,4560,4561],[801,1,1,4561,4562]]],[25,323,267,4562,4829,[[802,3,3,4562,4565],[803,4,3,4565,4568],[804,10,8,4568,4576],[805,7,5,4576,4581],[806,4,4,4581,4585],[807,4,2,4585,4587],[808,2,2,4587,4589],[809,6,4,4589,4593],[810,5,3,4593,4596],[811,5,5,4596,4601],[812,7,6,4601,4607],[813,6,5,4607,4612],[814,7,6,4612,4618],[815,7,5,4618,4623],[816,5,4,4623,4627],[817,27,21,4627,4648],[818,9,6,4648,4654],[819,8,8,4654,4662],[821,20,16,4662,4678],[823,3,2,4678,4680],[824,9,7,4680,4687],[825,5,5,4687,4692],[826,8,6,4692,4698],[827,3,3,4698,4701],[828,1,1,4701,4702],[829,2,2,4702,4704],[830,6,5,4704,4709],[831,15,11,4709,4720],[832,3,3,4720,4723],[833,8,7,4723,4730],[834,12,11,4730,4741],[835,9,8,4741,4749],[836,4,4,4749,4753],[837,9,9,4753,4762],[838,6,5,4762,4767],[839,1,1,4767,4768],[840,14,10,4768,4778],[841,10,9,4778,4787],[842,3,3,4787,4790],[843,1,1,4790,4791],[844,13,11,4791,4802],[845,13,10,4802,4812],[846,6,6,4812,4818],[847,8,6,4818,4824],[848,4,4,4824,4828],[849,1,1,4828,4829]]],[26,34,28,4829,4857,[[850,10,7,4829,4836],[851,1,1,4836,4837],[857,7,6,4837,4843],[858,6,5,4843,4848],[859,9,8,4848,4856],[861,1,1,4856,4857]]],[27,30,27,4857,4884,[[862,5,5,4857,4862],[863,12,9,4862,4871],[864,1,1,4871,4872],[865,2,2,4872,4874],[866,2,2,4874,4876],[867,1,1,4876,4877],[868,1,1,4877,4878],[869,1,1,4878,4879],[870,1,1,4879,4880],[871,2,2,4880,4882],[873,2,2,4882,4884]]],[28,8,8,4884,4892,[[877,3,3,4884,4887],[878,5,5,4887,4892]]],[29,34,29,4892,4921,[[879,2,2,4892,4894],[880,5,4,4894,4898],[881,1,1,4898,4899],[882,3,3,4899,4902],[883,4,4,4902,4906],[884,1,1,4906,4907],[885,4,3,4907,4910],[886,2,2,4910,4912],[887,12,9,4912,4921]]],[30,6,4,4921,4925,[[888,6,4,4921,4925]]],[31,10,10,4925,4935,[[889,5,5,4925,4930],[890,2,2,4930,4932],[891,1,1,4932,4933],[892,2,2,4933,4935]]],[32,7,7,4935,4942,[[895,1,1,4935,4936],[896,1,1,4936,4937],[897,2,2,4937,4939],[898,2,2,4939,4941],[899,1,1,4941,4942]]],[33,1,1,4942,4943,[[901,1,1,4942,4943]]],[34,3,3,4943,4946,[[903,2,2,4943,4945],[904,1,1,4945,4946]]],[35,12,10,4946,4956,[[906,5,5,4946,4951],[907,4,3,4951,4954],[908,3,2,4954,4956]]],[36,7,6,4956,4962,[[909,1,1,4956,4957],[910,6,5,4957,4962]]],[37,71,55,4962,5017,[[911,10,8,4962,4970],[912,4,4,4970,4974],[913,4,3,4974,4977],[914,2,2,4977,4979],[915,3,3,4979,4982],[916,3,3,4982,4985],[917,1,1,4985,4986],[918,12,8,4986,4994],[920,3,2,4994,4996],[921,13,7,4996,5003],[922,7,6,5003,5009],[923,3,3,5009,5012],[924,6,5,5012,5017]]],[38,17,15,5017,5032,[[925,4,4,5017,5021],[926,7,5,5021,5026],[927,4,4,5026,5030],[928,2,2,5030,5032]]]],[0,3,6,15,20,21,24,26,27,30,33,35,36,37,38,40,41,43,45,54,63,65,73,78,79,80,81,90,91,93,96,97,99,101,104,105,107,108,109,111,112,114,115,117,118,120,121,123,124,126,127,130,131,134,135,137,139,143,144,147,149,151,154,155,168,176,184,189,190,191,192,193,195,196,204,206,210,214,216,218,220,227,228,229,242,245,247,249,258,260,271,274,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,297,303,305,312,315,318,328,333,334,340,341,343,347,348,350,352,359,365,371,374,378,384,391,397,404,405,406,408,411,412,416,417,420,422,443,452,465,467,470,471,472,474,476,478,482,484,486,497,503,505,512,514,516,522,526,528,529,530,531,532,538,539,541,543,548,549,550,551,553,556,557,559,560,563,564,570,571,576,577,579,581,584,585,587,590,592,596,598,599,600,621,626,627,639,643,650,651,652,655,657,658,661,663,669,677,678,686,689,691,692,695,696,703,710,716,726,728,733,742,744,754,757,761,763,768,772,777,778,779,788,791,792,798,803,805,806,808,813,817,818,819,824,825,826,830,839,841,843,845,850,851,852,853,854,855,856,859,865,866,868,871,874,875,878,879,880,882,885,888,890,891,892,893,894,896,898,899,903,904,905,907,908,910,914,915,923,925,935,938,940,945,947,950,951,959,961,962,965,971,978,979,983,985,987,993,994,996,997,1001,1006,1008,1011,1013,1015,1021,1023,1026,1033,1042,1044,1045,1046,1052,1054,1064,1075,1086,1094,1095,1099,1106,1109,1111,1112,1114,1115,1122,1123,1124,1139,1140,1154,1156,1168,1171,1176,1179,1181,1183,1185,1191,1192,1193,1195,1199,1202,1203,1204,1209,1211,1215,1219,1220,1223,1225,1230,1237,1239,1240,1243,1246,1251,1259,1260,1261,1268,1269,1270,1277,1279,1286,1287,1289,1290,1292,1294,1297,1304,1305,1306,1307,1311,1313,1314,1315,1319,1325,1328,1335,1340,1343,1346,1353,1355,1358,1360,1371,1375,1376,1377,1382,1385,1391,1392,1406,1411,1416,1427,1429,1430,1431,1432,1434,1437,1440,1442,1443,1452,1455,1459,1461,1462,1463,1464,1465,1466,1467,1471,1472,1504,1506,1508,1511,1512,1513,1517,1520,1531,1540,1543,1546,1549,1550,1553,1557,1559,1560,1561,1562,1563,1566,1568,1569,1570,1571,1573,1574,1575,1576,1578,1579,1580,1582,1586,1588,1589,1590,1591,1595,1596,1599,1600,1601,1616,1618,1620,1621,1622,1624,1626,1629,1630,1631,1632,1634,1636,1637,1638,1652,1655,1659,1660,1661,1662,1663,1668,1678,1681,1682,1684,1687,1688,1689,1690,1694,1695,1697,1705,1710,1712,1715,1716,1717,1724,1725,1726,1727,1728,1731,1732,1736,1742,1748,1752,1754,1756,1757,1761,1762,1763,1764,1765,1767,1771,1778,1779,1782,1784,1785,1788,1789,1790,1792,1794,1796,1797,1799,1800,1801,1803,1804,1807,1809,1816,1824,1829,1833,1839,1840,1841,1843,1844,1847,1850,1852,1866,1867,1870,1872,1874,1877,1885,1886,1893,1895,1897,1899,1901,1902,1905,1906,1909,1910,1913,1914,1915,1916,1917,1919,1920,1921,1939,1940,1942,1950,1952,1953,1954,1955,1956,1959,1960,1971,1978,1979,1980,1982,1985,1988,1990,1996,1997,2000,2001,2007,2009,2012,2013,2015,2018,2021,2022,2025,2031,2033,2034,2035,2038,2040,2043,2049,2052,2058,2062,2063,2069,2075,2082,2083,2084,2095,2097,2103,2105,2112,2118,2119,2136,2153,2154,2159,2160,2166,2169,2170,2171,2172,2174,2175,2177,2180,2181,2182,2185,2187,2188,2192,2197,2209,2211,2214,2216,2217,2221,2222,2223,2232,2241,2244,2246,2250,2253,2264,2265,2268,2269,2270,2273,2281,2292,2296,2298,2299,2302,2304,2305,2307,2316,2317,2321,2322,2323,2324,2331,2334,2341,2342,2343,2346,2347,2349,2351,2352,2354,2355,2356,2358,2362,2363,2365,2367,2368,2369,2370,2380,2382,2385,2387,2389,2390,2394,2397,2398,2401,2408,2426,2433,2434,2436,2437,2441,2447,2449,2451,2455,2457,2458,2460,2463,2465,2472,2473,2475,2477,2480,2483,2485,2486,2490,2492,2493,2496,2497,2506,2509,2519,2520,2524,2526,2528,2530,2531,2532,2541,2542,2547,2548,2552,2555,2557,2558,2560,2567,2569,2570,2571,2576,2579,2582,2584,2586,2589,2599,2600,2601,2605,2609,2614,2617,2618,2619,2620,2621,2627,2629,2630,2632,2633,2634,2636,2639,2640,2641,2642,2655,2660,2663,2665,2666,2667,2669,2670,2671,2672,2673,2680,2685,2686,2689,2690,2691,2693,2694,2695,2696,2697,2703,2704,2706,2707,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2722,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2747,2750,2751,2753,2754,2756,2757,2759,2760,2761,2764,2770,2771,2776,2778,2780,2781,2785,2786,2787,2791,2792,2799,2801,2803,2810,2816,2818,2819,2824,2828,2836,2837,2838,2841,2845,2851,2853,2858,2859,2860,2875,2881,2882,2887,2893,2895,2908,2909,2910,2912,2913,2917,2919,2923,2924,2925,2926,2927,2928,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2941,2942,2944,2946,2947,2948,2950,2952,2953,2958,2960,2961,2962,2963,2965,2967,2968,2969,2970,2973,2975,2976,2977,2981,2983,2988,2989,2994,2995,2996,3001,3008,3010,3018,3019,3025,3037,3040,3041,3042,3055,3064,3065,3067,3074,3077,3079,3082,3083,3084,3086,3101,3102,3103,3104,3107,3109,3116,3119,3120,3122,3123,3124,3127,3130,3131,3135,3136,3141,3142,3147,3148,3149,3151,3152,3153,3154,3156,3158,3159,3160,3161,3162,3163,3164,3184,3186,3192,3198,3199,3201,3205,3207,3208,3210,3211,3212,3214,3216,3221,3222,3223,3224,3225,3227,3228,3229,3230,3232,3233,3235,3240,3241,3242,3245,3248,3255,3256,3268,3272,3276,3277,3278,3279,3281,3289,3290,3293,3294,3298,3300,3302,3304,3306,3308,3310,3311,3317,3318,3321,3322,3323,3324,3326,3327,3332,3334,3335,3336,3337,3339,3340,3341,3342,3343,3351,3353,3354,3355,3357,3359,3366,3368,3371,3378,3383,3384,3385,3394,3401,3402,3404,3412,3413,3414,3416,3417,3424,3429,3432,3434,3439,3441,3445,3446,3448,3450,3457,3460,3469,3472,3479,3480,3481,3483,3486,3487,3489,3490,3494,3496,3507,3515,3521,3524,3526,3529,3531,3533,3537,3538,3539,3540,3543,3544,3546,3554,3555,3556,3558,3559,3562,3564,3566,3567,3569,3581,3584,3585,3589,3590,3592,3593,3604,3621,3623,3653,3654,3655,3657,3658,3691,3692,3698,3699,3700,3701,3702,3704,3707,3732,3733,3737,3741,3743,3745,3748,3750,3751,3752,3754,3755,3756,3757,3758,3761,3762,3765,3768,3770,3773,3775,3777,3789,3792,3794,3795,3796,3799,3802,3806,3807,3808,3810,3811,3812,3813,3815,3816,3817,3818,3819,3822,3823,3834,3835,3837,3839,3841,3842,3846,3850,3851,3853,3855,3856,3860,3861,3862,3939,3941,3942,3943,3945,3948,3949,3950,3951,3952,3953,3954,3957,3958,3959,3961,3967,3970,3972,3980,3984,3988,3990,4009,4029,4034,4035,4036,4038,4044,4046,4048,4053,4056,4058,4077,4091,4092,4093,4096,4105,4108,4109,4114,4117,4121,4123,4124,4129,4130,4131,4135,4138,4139,4141,4142,4144,4146,4147,4149,4166,4175,4178,4183,4189,4192,4193,4194,4199,4203,4204,4209,4213,4222,4224,4225,4226,4231,4232,4233,4235,4240,4241,4251,4253,4254,4258,4261,4262,4263,4264,4272,4274,4280,4281,4283,4285,4286,4287,4292,4294,4298,4299,4302,4309,4315,4316,4319,4320,4321,4322,4323,4325,4332,4335,4336,4337,4339,4342,4343,4344,4346,4347,4349,4354,4356,4357,4363,4364,4365,4366,4372,4375,4377,4379,4380,4381,4386,4387,4393,4395,4396,4398,4400,4402,4403,4406,4407,4408,4410,4416,4420,4444,4447,4448,4456,4459,4466,4467,4475,4477,4479,4482,4488,4491,4493,4499,4518,4544,4547,4548,4549,4552,4553,4559,4563,4564,4565,4566,4572,4573,4576,4577,4579,4600,4615,4648,4652,4660,4662,4663,4664,4671,4675,4676,4685,4686,4690,4691,4695,4705,4711,4713,4714,4715,4718,4719,4723,4726,4727,4729,4738,4739,4741,4746,4747,4749,4751,4752,4755,4756,4757,4758,4759,4760,4762,4764,4811,4812,4814,4815,4818,4829,4833,4834,4845,4847,4855,4859,4864,4866,4870,4871,4872,4875,4878,4881,4884,4889,4895,4896,4897,4900,4907,4908,4910,4911,4913,4914,4916,4918,4920,4923,4926,4927,4928,4933,4935,4939,4941,4943,4945,4947,4951,4952,4956,4960,4962,4967,4968,4969,4971,4972,4974,4978,4979,4983,4989,4990,4995,4996,4999,5000,5002,5003,5005,5006,5007,5010,5013,5014,5023,5024,5025,5026,5027,5030,5033,5035,5040,5041,5046,5051,5054,5056,5064,5065,5068,5069,5076,5078,5080,5081,5082,5088,5091,5098,5099,5102,5103,5104,5105,5109,5110,5111,5115,5119,5122,5123,5127,5129,5131,5133,5135,5138,5139,5142,5143,5147,5148,5151,5155,5156,5158,5161,5162,5163,5164,5165,5170,5171,5178,5179,5180,5182,5188,5190,5191,5194,5197,5198,5199,5206,5209,5210,5214,5215,5216,5218,5221,5225,5226,5230,5231,5237,5239,5240,5242,5243,5245,5250,5251,5259,5260,5262,5268,5269,5270,5271,5275,5277,5285,5287,5288,5290,5297,5312,5313,5318,5321,5324,5326,5327,5330,5336,5337,5342,5343,5345,5347,5348,5354,5358,5360,5362,5366,5369,5383,5396,5398,5400,5404,5405,5407,5409,5410,5411,5414,5415,5435,5440,5441,5446,5451,5453,5454,5459,5460,5463,5464,5466,5471,5474,5477,5484,5485,5486,5488,5491,5494,5495,5500,5505,5513,5530,5534,5536,5540,5543,5547,5548,5554,5556,5558,5559,5564,5566,5573,5576,5578,5581,5582,5583,5586,5587,5589,5591,5593,5595,5596,5597,5612,5618,5619,5620,5623,5626,5631,5635,5640,5658,5659,5669,5674,5680,5681,5687,5688,5693,5695,5696,5697,5698,5699,5701,5704,5708,5711,5714,5715,5716,5723,5724,5726,5727,5728,5729,5730,5731,5732,5737,5739,5740,5741,5742,5744,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5802,5803,5804,5805,5807,5810,5811,5840,5848,5853,5857,5859,5861,5862,5864,5866,5867,5869,5870,5871,5872,5873,5879,5882,5883,5887,5889,5890,5893,5896,5897,5899,5901,5902,5907,5910,5911,5913,5920,5924,5926,5927,5931,5932,5933,5934,5935,5936,5937,5943,5944,5951,5952,5953,5954,5955,5956,5960,5961,5963,5964,5966,5967,5969,5970,5971,5972,5974,5975,5978,5979,5983,5985,5987,5989,5991,5992,5993,5994,5996,6000,6003,6009,6010,6012,6019,6021,6023,6026,6028,6029,6030,6031,6033,6034,6035,6036,6040,6057,6061,6065,6068,6076,6085,6086,6087,6088,6089,6096,6097,6103,6104,6113,6116,6117,6118,6120,6121,6122,6123,6126,6127,6128,6130,6131,6161,6167,6175,6192,6193,6194,6197,6200,6216,6218,6275,6279,6288,6289,6293,6294,6295,6296,6299,6301,6303,6370,6371,6372,6376,6377,6379,6380,6384,6389,6390,6394,6398,6404,6405,6406,6409,6411,6413,6415,6416,6417,6419,6420,6424,6425,6428,6429,6431,6437,6439,6450,6451,6453,6454,6456,6457,6458,6459,6463,6464,6465,6466,6471,6476,6477,6479,6480,6481,6482,6483,6484,6487,6488,6490,6491,6492,6493,6494,6495,6496,6497,6499,6500,6502,6503,6507,6511,6513,6514,6515,6519,6521,6526,6527,6528,6529,6533,6534,6536,6537,6538,6539,6540,6542,6543,6546,6548,6549,6551,6552,6555,6556,6557,6558,6565,6567,6568,6569,6572,6574,6575,6576,6578,6580,6581,6582,6583,6585,6586,6589,6592,6593,6594,6596,6599,6602,6603,6606,6608,6609,6612,6613,6614,6618,6620,6621,6622,6623,6658,6662,6663,6664,6668,6669,6670,6672,6674,6675,6679,6680,6681,6684,6685,6686,6688,6690,6691,6692,6696,6698,6699,6701,6702,6708,6709,6710,6713,6716,6718,6719,6722,6726,6728,6730,6731,6735,6736,6738,6740,6744,6750,6753,6757,6759,6760,6763,6765,6767,6769,6770,6771,6772,6774,6778,6779,6781,6782,6783,6784,6785,6790,6795,6797,6799,6802,6803,6807,6810,6812,6813,6814,6817,6819,6820,6821,6827,6830,6831,6834,6838,6840,6842,6844,6847,6849,6850,6851,6852,6853,6858,6859,6864,6865,6867,6873,6874,6876,6877,6878,6880,6882,6883,6889,6903,6908,6915,6917,6924,6928,6930,6935,6939,6947,6948,6949,6958,6962,6963,6968,6970,6972,6973,6975,6980,6983,6984,6985,6992,6995,6996,7000,7002,7007,7010,7011,7013,7014,7015,7017,7020,7021,7023,7024,7041,7046,7047,7053,7059,7089,7091,7097,7098,7100,7112,7122,7125,7133,7158,7164,7166,7167,7168,7170,7176,7186,7196,7199,7200,7201,7203,7206,7208,7209,7210,7211,7212,7217,7223,7224,7226,7227,7228,7231,7232,7233,7234,7235,7237,7251,7252,7255,7257,7258,7259,7260,7261,7262,7268,7269,7271,7272,7273,7283,7288,7289,7291,7292,7300,7301,7303,7305,7311,7315,7316,7320,7321,7322,7327,7328,7329,7330,7334,7336,7337,7338,7339,7342,7344,7345,7346,7349,7352,7353,7355,7356,7357,7358,7363,7364,7367,7368,7369,7370,7377,7380,7389,7390,7394,7399,7407,7408,7410,7411,7413,7414,7415,7419,7420,7432,7435,7436,7437,7443,7449,7451,7456,7460,7463,7466,7468,7469,7470,7471,7474,7475,7476,7478,7480,7482,7484,7488,7489,7492,7498,7500,7505,7520,7531,7532,7534,7535,7536,7537,7547,7553,7556,7563,7564,7567,7568,7571,7573,7578,7580,7583,7584,7585,7586,7588,7593,7595,7599,7600,7601,7608,7618,7619,7628,7629,7633,7638,7640,7642,7643,7644,7646,7654,7656,7657,7660,7661,7662,7664,7667,7668,7669,7670,7671,7672,7673,7685,7687,7692,7696,7698,7699,7702,7703,7705,7707,7711,7713,7716,7717,7718,7719,7720,7721,7723,7726,7731,7732,7738,7742,7743,7745,7751,7758,7759,7761,7762,7763,7766,7768,7769,7770,7771,7776,7777,7784,7785,7787,7795,7796,7798,7801,7804,7808,7810,7811,7812,7814,7815,7818,7825,7826,7832,7833,7841,7842,7843,7844,7845,7846,7849,7850,7854,7855,7857,7858,7860,7863,7865,7869,7871,7872,7874,7875,7882,7884,7885,7886,7890,7891,7892,7896,7899,7900,7905,7907,7910,7913,7916,7917,7920,7922,7924,7925,7928,7939,7943,7944,7946,7947,7951,7953,7954,7957,7959,7961,7968,7971,7979,7980,7982,7988,7996,7998,8000,8001,8011,8013,8016,8017,8018,8019,8020,8021,8022,8036,8038,8053,8057,8078,8079,8081,8092,8093,8094,8095,8099,8100,8102,8106,8107,8111,8113,8127,8128,8129,8131,8132,8134,8135,8139,8149,8151,8152,8153,8156,8157,8158,8159,8160,8167,8168,8169,8172,8173,8174,8175,8177,8186,8187,8189,8192,8193,8200,8201,8207,8208,8209,8210,8211,8213,8215,8216,8218,8219,8223,8237,8238,8243,8244,8246,8247,8256,8257,8259,8260,8265,8270,8275,8277,8278,8280,8281,8284,8287,8290,8292,8295,8296,8297,8298,8300,8301,8302,8310,8311,8312,8313,8314,8315,8316,8317,8321,8322,8325,8326,8327,8334,8337,8339,8345,8347,8348,8349,8351,8359,8362,8363,8367,8369,8371,8372,8375,8376,8377,8378,8379,8382,8386,8387,8394,8395,8396,8397,8399,8401,8403,8405,8409,8410,8413,8414,8418,8423,8434,8435,8436,8437,8451,8457,8463,8464,8468,8470,8471,8473,8479,8483,8488,8493,8494,8495,8497,8501,8502,8505,8506,8507,8515,8516,8517,8521,8522,8523,8525,8526,8529,8530,8532,8539,8540,8541,8542,8546,8547,8550,8551,8552,8554,8557,8560,8566,8576,8581,8583,8588,8590,8591,8592,8593,8595,8596,8597,8598,8601,8602,8603,8622,8665,8669,8671,8673,8674,8693,8694,8696,8697,8701,8702,8709,8712,8713,8716,8720,8726,8729,8731,8732,8744,8746,8750,8753,8754,8756,8758,8760,8761,8764,8768,8771,8773,8774,8779,8786,8787,8790,8792,8793,8796,8797,8799,8800,8802,8805,8807,8810,8813,8814,8816,8817,8819,8825,8826,8827,8830,8836,8837,8841,8859,8865,8878,8879,8881,8885,8886,8887,8905,8906,8908,8909,8910,8911,8912,8915,8917,8923,8924,8928,8932,8935,8947,8948,8949,8952,8955,8957,8958,8961,8971,8973,8974,8975,8976,8981,8982,8985,8986,8988,8989,8991,8995,8996,8999,9001,9005,9006,9009,9010,9017,9018,9020,9024,9027,9028,9030,9033,9038,9039,9040,9043,9048,9049,9050,9051,9054,9056,9058,9060,9061,9062,9063,9066,9067,9068,9075,9076,9078,9083,9087,9088,9092,9103,9106,9110,9111,9112,9118,9119,9121,9122,9123,9127,9131,9135,9136,9139,9142,9146,9147,9148,9152,9157,9159,9160,9164,9166,9167,9169,9171,9172,9176,9180,9182,9183,9186,9188,9190,9195,9196,9205,9209,9212,9213,9214,9215,9217,9224,9226,9232,9233,9234,9239,9240,9244,9253,9261,9262,9264,9266,9267,9268,9269,9271,9275,9278,9279,9283,9286,9294,9295,9296,9299,9301,9302,9305,9307,9309,9314,9316,9317,9335,9337,9340,9344,9345,9347,9350,9353,9354,9358,9359,9361,9364,9367,9371,9374,9376,9377,9378,9379,9381,9388,9390,9391,9397,9401,9402,9406,9407,9408,9409,9414,9420,9421,9423,9429,9430,9433,9434,9435,9436,9439,9444,9447,9449,9450,9454,9455,9460,9463,9470,9473,9474,9476,9478,9486,9491,9497,9499,9500,9504,9506,9507,9511,9512,9514,9517,9518,9532,9533,9547,9552,9554,9556,9559,9565,9567,9578,9582,9594,9598,9599,9600,9603,9604,9610,9634,9638,9640,9653,9654,9655,9667,9673,9686,9689,9691,9692,9694,9698,9702,9703,9704,9706,9709,9714,9723,9724,9726,9728,9731,9732,9733,9735,9738,9739,9746,9748,9755,9756,9763,9765,9772,9773,9778,9780,9781,9782,9784,9786,9790,9792,9799,9800,9802,9803,9804,9808,9810,9811,9812,9819,9820,9821,9826,9830,9831,9833,9835,9836,9838,9839,9841,9842,9843,9844,9846,9847,9848,9855,9856,9857,9858,9859,9860,9861,9862,9865,9868,9870,9875,9888,9890,9892,9893,9896,9901,9903,9905,9906,9910,9917,9918,9921,9922,9923,9924,9930,9939,9941,9945,9954,9960,9966,9969,9971,9973,9974,9975,9976,9978,9980,9989,9990,9994,9995,9996,9997,9998,9999,10002,10004,10006,10007,10008,10009,10011,10013,10014,10015,10016,10017,10019,10022,10024,10028,10030,10032,10035,10036,10041,10046,10048,10051,10054,10056,10057,10058,10059,10062,10063,10065,10069,10072,10075,10076,10077,10079,10100,10101,10103,10107,10109,10111,10113,10118,10122,10123,10126,10128,10132,10133,10134,10135,10140,10141,10142,10143,10148,10149,10151,10153,10154,10156,10157,10164,10165,10167,10168,10169,10170,10171,10172,10173,10175,10176,10177,10179,10180,10181,10182,10185,10186,10187,10189,10192,10195,10199,10200,10206,10215,10216,10217,10219,10222,10228,10229,10231,10235,10240,10241,10246,10247,10249,10250,10251,10262,10263,10265,10270,10272,10284,10286,10298,10316,10317,10318,10319,10323,10326,10328,10341,10342,10343,10344,10345,10346,10347,10350,10352,10355,10387,10393,10395,10396,10397,10399,10402,10403,10426,10428,10454,10458,10459,10460,10461,10462,10463,10464,10465,10466,10467,10468,10469,10486,10511,10512,10514,10519,10521,10524,10525,10526,10528,10530,10531,10532,10534,10549,10553,10556,10558,10559,10567,10576,10582,10583,10584,10586,10587,10588,10607,10608,10609,10611,10612,10653,10654,10655,10657,10658,10661,10663,10667,10668,10669,10670,10671,10673,10675,10676,10678,10681,10684,10687,10691,10693,10695,10696,10735,10738,10751,10758,10763,10765,10766,10767,10769,10772,10773,10774,10782,10785,10786,10789,10790,10791,10793,10794,10795,10803,10805,10806,10807,10808,10816,10817,10818,10819,10820,10821,10822,10844,10853,10863,10868,10869,10871,10873,10874,10875,10881,10882,10888,10890,10891,10892,10893,10894,10897,10898,10899,10900,10902,10903,10910,10911,10915,10923,10924,10926,10927,10928,10930,10931,10933,10935,10936,10939,10941,10942,10946,10950,10954,10955,10966,10976,10977,10982,10983,10984,10985,11009,11015,11110,11132,11144,11150,11151,11154,11174,11184,11189,11204,11205,11209,11222,11223,11227,11229,11230,11232,11235,11237,11243,11246,11248,11249,11253,11257,11258,11259,11265,11269,11270,11272,11273,11275,11282,11285,11287,11292,11293,11297,11298,11305,11306,11308,11312,11315,11317,11320,11321,11325,11326,11329,11331,11332,11334,11335,11336,11338,11340,11342,11346,11350,11351,11360,11365,11367,11371,11372,11375,11376,11387,11391,11396,11403,11404,11405,11408,11409,11410,11411,11413,11415,11418,11425,11428,11430,11431,11433,11434,11435,11436,11438,11441,11446,11450,11451,11456,11462,11464,11466,11468,11478,11479,11480,11482,11487,11489,11498,11499,11502,11506,11508,11510,11513,11514,11515,11521,11528,11529,11542,11547,11552,11555,11558,11560,11561,11565,11572,11573,11575,11590,11591,11594,11604,11612,11613,11624,11628,11631,11633,11634,11635,11637,11640,11641,11649,11650,11651,11652,11653,11654,11655,11657,11658,11663,11664,11665,11666,11667,11668,11669,11670,11676,11681,11682,11683,11684,11688,11689,11690,11691,11695,11697,11699,11700,11701,11707,11709,11715,11718,11719,11722,11723,11724,11728,11733,11734,11737,11738,11753,11758,11767,11770,11771,11772,11777,11778,11782,11783,11788,11789,11794,11795,11796,11798,11806,11807,11808,11809,11811,11813,11814,11816,11825,11835,11840,11841,11843,11845,11847,11848,11854,11855,11856,11862,11864,11866,11878,11879,11880,11887,11888,11889,11893,11897,11905,11911,11915,11916,11919,11920,11923,11924,11933,11936,11937,11938,11940,11941,11942,11944,11947,11948,11949,11950,11952,11953,11954,11960,11961,11962,11963,11964,11966,11969,11983,11986,11994,11996,11997,12003,12006,12007,12012,12014,12015,12017,12019,12021,12023,12099,12105,12107,12109,12112,12170,12183,12200,12218,12237,12240,12246,12249,12300,12303,12304,12305,12307,12308,12324,12328,12360,12361,12372,12373,12374,12379,12387,12388,12389,12390,12392,12394,12395,12402,12406,12410,12419,12422,12425,12494,12495,12499,12502,12516,12517,12519,12520,12526,12527,12528,12530,12533,12535,12537,12543,12547,12578,12580,12584,12587,12588,12634,12635,12651,12654,12655,12673,12674,12676,12679,12688,12689,12693,12698,12706,12712,12713,12717,12719,12720,12725,12727,12731,12734,12735,12737,12739,12741,12748,12750,12753,12757,12760,12763,12766,12771,12773,12774,12778,12781,12784,12787,12788,12792,12794,12797,12802,12803,12804,12806,12807,12815,12817,12818,12819,12820,12821,12822,12823,12828,12837,12844,12849,12850,12853,12854,12855,12857,12861,12863,12865,12876,12878,12889,12893,12895,12897,12898,12901,12902,12903,12905,13029,13162,13527,13629,13631,13794,13865,13867,13922,13923,13929,13931,13932,13934,13938,13948,13956,13964,14075,14082,14096,14099,14273,14287,14308,14313,14319,14338,14354,14379,14392,14397,14411,14478,14629,14721,15118,15155,15169,15181,15186,15192,15200,15417,15493,15535,15536,15538,15543,15550,15551,15561,15571,15572,15617,15630,15635,15648,15658,15671,15684,15685,15687,15688,15691,15695,15804,15814,15842,15849,15856,15868,15906,15907,16088,16099,16116,16119,16148,16172,16174,16194,16195,16223,16226,16228,16229,16231,16233,16276,16293,16315,16336,16340,16342,16347,16350,16362,16363,16376,16378,16384,16419,16462,16464,16467,16539,16571,17045,17050,17055,17121,17160,17191,17328,17329,17336,17343,17350,17351,17357,17369,17370,17374,17376,17382,17383,17384,17385,17386,17389,17391,17396,17401,17403,17416,17417,17436,17442,17443,17447,17450,17455,17458,17466,17467,17473,17474,17475,17476,17482,17487,17490,17512,17513,17518,17519,17520,17521,17532,17536,17537,17545,17561,17568,17572,17575,17576,17601,17605,17606,17644,17647,17651,17652,17658,17705,17725,17737,17763,17770,17774,17777,17781,17794,17795,17802,17809,17811,17813,17820,17833,17840,17841,17850,17865,17895,17897,17898,17899,17923,17925,18017,18025,18026,18033,18039,18060,18061,18094,18098,18151,18152,18162,18203,18215,18216,18237,18240,18243,18297,18298,18332,18337,18339,18342,18345,18347,18348,18349,18350,18353,18354,18356,18360,18366,18368,18369,18370,18371,18393,18395,18397,18398,18414,18416,18433,18457,18458,18553,18581,18613,18628,18642,18662,18690,18695,18706,18750,18751,18757,18759,18778,18819,18861,18862,18863,18876,18877,18890,18900,18908,18915,18917,18930,18940,18941,18942,18955,18971,18972,18982,18984,18995,18998,19001,19003,19009,19011,19014,19015,19023,19026,19050,19065,19072,19077,19082,19101,19107,19113,19116,19121,19124,19129,19131,19132,19134,19137,19138,19142,19143,19145,19146,19148,19150,19154,19160,19163,19164,19177,19178,19186,19187,19188,19191,19219,19223,19224,19226,19229,19230,19231,19232,19233,19234,19236,19246,19247,19253,19256,19259,19263,19264,19265,19266,19268,19270,19272,19273,19276,19279,19309,19310,19312,19315,19318,19321,19322,19341,19346,19349,19350,19351,19354,19357,19361,19370,19380,19381,19384,19386,19404,19405,19407,19409,19411,19412,19414,19415,19416,19418,19419,19422,19423,19424,19425,19427,19434,19435,19444,19446,19447,19455,19458,19459,19463,19464,19466,19480,19481,19485,19486,19487,19491,19492,19497,19500,19502,19505,19508,19509,19511,19520,19522,19525,19529,19532,19534,19538,19540,19542,19543,19545,19547,19549,19570,19578,19579,19580,19582,19587,19591,19593,19595,19601,19602,19604,19605,19606,19607,19608,19609,19610,19611,19613,19616,19620,19621,19622,19624,19628,19629,19630,19632,19640,19642,19645,19646,19649,19652,19663,19664,19666,19670,19676,19688,19698,19702,19705,19714,19718,19723,19724,19725,19734,19735,19736,19739,19740,19742,19743,19744,19745,19747,19748,19752,19754,19759,19761,19766,19771,19772,19773,19784,19786,19789,19795,19797,19803,19804,19807,19810,19811,19814,19815,19816,19817,19819,19826,19837,19838,19839,19840,19841,19844,19845,19846,19847,19848,19852,19853,19856,19858,19859,19860,19862,19863,19866,19867,19868,19869,19871,19873,19874,19877,19879,19884,19887,19895,19896,19899,19901,19902,19904,19905,19906,19908,19909,19911,19914,19928,19929,19937,19939,19943,19945,19950,19955,19956,19957,19959,19961,19966,19967,19969,19970,19973,19975,19987,19992,19993,19998,20000,20002,20007,20008,20009,20012,20014,20015,20019,20021,20022,20024,20025,20027,20030,20035,20040,20041,20058,20074,20077,20118,20128,20133,20137,20155,20159,20162,20164,20166,20169,20185,20186,20191,20194,20200,20206,20209,20214,20221,20222,20223,20224,20236,20237,20240,20241,20248,20251,20256,20257,20262,20267,20271,20272,20273,20275,20279,20284,20285,20286,20289,20293,20300,20301,20307,20308,20309,20319,20329,20333,20334,20431,20443,20475,20487,20488,20494,20499,20500,20503,20504,20510,20512,20519,20521,20523,20529,20532,20533,20535,20542,20544,20548,20552,20557,20562,20568,20577,20599,20601,20607,20613,20616,20621,20629,20630,20631,20636,20639,20640,20649,20652,20656,20662,20668,20673,20677,20680,20686,20692,20696,20703,20705,20718,20722,20723,20728,20729,20731,20735,20736,20740,20753,20754,20758,20760,20761,20762,20764,20777,20780,20782,20783,20784,20787,20788,20791,20792,20794,20795,20799,20805,20812,20813,20815,20820,20822,20823,20824,20828,20829,20834,20837,20839,20841,20851,20860,20862,20863,20864,20868,20870,20876,20896,20898,20899,20903,20906,20908,20916,20917,20918,20923,20929,20933,20935,20936,20937,20938,20978,20987,21025,21026,21028,21029,21043,21045,21046,21058,21064,21077,21081,21083,21088,21090,21092,21097,21099,21100,21111,21116,21119,21126,21163,21182,21193,21195,21196,21197,21202,21215,21216,21218,21219,21222,21225,21226,21227,21228,21229,21230,21244,21245,21246,21251,21253,21255,21260,21263,21275,21280,21283,21284,21285,21286,21302,21304,21306,21308,21309,21311,21312,21316,21320,21321,21323,21324,21325,21329,21340,21351,21352,21354,21356,21362,21364,21366,21379,21382,21385,21389,21390,21392,21409,21410,21416,21418,21425,21429,21455,21458,21459,21460,21462,21469,21473,21474,21475,21477,21481,21482,21483,21488,21505,21509,21515,21519,21524,21527,21530,21539,21570,21575,21579,21580,21581,21582,21583,21593,21594,21596,21598,21599,21600,21603,21604,21606,21610,21611,21614,21615,21618,21619,21631,21634,21638,21647,21648,21650,21657,21667,21669,21670,21675,21679,21692,21693,21700,21701,21722,21739,21746,21747,21749,21750,21752,21753,21761,21965,21968,21976,21977,21980,21988,21991,21999,22000,22001,22003,22016,22020,22022,22023,22024,22026,22027,22029,22088,22097,22098,22099,22100,22102,22111,22112,22114,22115,22122,22125,22126,22127,22128,22133,22143,22152,22158,22165,22170,22185,22208,22220,22228,22237,22255,22265,22337,22339,22340,22344,22345,22351,22355,22361,22367,22377,22383,22386,22388,22389,22396,22412,22417,22421,22429,22434,22441,22449,22458,22466,22468,22474,22492,22493,22496,22498,22499,22502,22503,22504,22506,22507,22509,22524,22527,22529,22530,22536,22540,22546,22547,22548,22555,22558,22568,22571,22575,22609,22627,22634,22639,22649,22650,22666,22701,22735,22737,22762,22790,22791,22793,22799,22800,22813,22816,22818,22839,22840,22854,22858,22861,22862,22866,22876,22884,22889,22890,22891,22895,22896,22897,22899,22901,22905,22908,22911,22919,22920,22921,22929,22932,22944,22945,22946,22955,22959,22960,22964,22983,22985,22986,22988,22990,22993,22997,22998,23019,23022,23032,23034,23035,23037,23038,23040,23042,23047,23048,23049,23051,23052,23054,23061,23066,23068,23070,23080,23084,23086,23087,23091,23092,23095,23102,23105,23106,23107,23112,23116,23122,23123,23131,23132,23139,23144]]],["-",[55,55,[[0,2,2,0,2,[[14,1,1,0,1],[21,1,1,1,2]]],[1,16,16,2,18,[[78,1,1,2,3],[80,1,1,3,4],[83,1,1,4,5],[84,7,7,5,12],[88,6,6,12,18]]],[2,3,3,18,21,[[100,2,2,18,20],[114,1,1,20,21]]],[3,3,3,21,24,[[123,1,1,21,22],[132,1,1,22,23],[144,1,1,23,24]]],[4,5,5,24,29,[[157,1,1,24,25],[163,1,1,25,26],[164,1,1,26,27],[166,2,2,27,29]]],[5,6,6,29,35,[[207,6,6,29,35]]],[10,1,1,35,36,[[298,1,1,35,36]]],[11,1,1,36,37,[[331,1,1,36,37]]],[13,1,1,37,38,[[370,1,1,37,38]]],[15,1,1,38,39,[[415,1,1,38,39]]],[18,3,3,39,42,[[556,1,1,39,40],[613,2,2,40,42]]],[19,1,1,42,43,[[643,1,1,42,43]]],[20,1,1,43,44,[[665,1,1,43,44]]],[22,3,3,44,47,[[706,1,1,44,45],[715,1,1,45,46],[718,1,1,46,47]]],[23,4,4,47,51,[[769,2,2,47,49],[779,1,1,49,50],[788,1,1,50,51]]],[25,3,3,51,54,[[813,1,1,51,52],[814,1,1,52,53],[835,1,1,53,54]]],[37,1,1,54,55,[[921,1,1,54,55]]]],[379,568,2375,2427,2514,2542,2543,2544,2547,2548,2549,2550,2699,2700,2701,2703,2704,2705,3006,3012,3474,3857,4232,4581,5075,5235,5272,5299,5306,6399,6405,6412,6416,6418,6420,9016,10083,11261,12340,15187,16204,16205,16873,17444,18173,18375,18434,19553,19555,19837,20031,20693,20729,21317,23036]]],["And",[10,10,[[0,3,3,0,3,[[1,1,1,0,1],[6,1,1,1,2],[26,1,1,2,3]]],[1,2,2,3,5,[[59,1,1,3,4],[76,1,1,4,5]]],[3,1,1,5,6,[[134,1,1,5,6]]],[6,1,1,6,7,[[211,1,1,6,7]]],[9,1,1,7,8,[[287,1,1,7,8]]],[11,1,1,8,9,[[335,1,1,8,9]]],[22,1,1,9,10,[[697,1,1,9,10]]]],[52,182,769,1785,2279,4259,6526,8594,10184,18008]]],["Cause",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12784]]],["Even",[5,5,[[2,3,3,0,3,[[93,1,1,0,1],[100,1,1,1,2],[103,1,1,2,3]]],[3,1,1,3,4,[[131,1,1,3,4]]],[23,1,1,4,5,[[787,1,1,4,5]]]],[2807,3019,3142,4176,20003]]],["For",[1,1,[[12,1,1,0,1,[[354,1,1,0,1]]]],[10885]]],["I",[3,3,[[15,1,1,0,1,[[425,1,1,0,1]]],[23,1,1,1,2,[[769,1,1,1,2]]],[26,1,1,2,3,[[859,1,1,2,3]]]],[12694,19551,22024]]],["Is",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6443]]],["Let",[7,7,[[1,6,6,0,6,[[53,1,1,0,1],[54,1,1,1,2],[56,1,1,2,3],[57,1,1,3,4],[58,2,2,4,6]]],[10,1,1,6,7,[[292,1,1,6,7]]]],[1624,1633,1701,1711,1743,1755,8791]]],["Namely",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5047]]],["Of",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5322]]],["a",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1555]]],["about",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17968]]],["after",[2,2,[[1,1,1,0,1,[[74,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]]],[2204,8455]]],["again",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4914]]],["against",[5,5,[[2,1,1,0,1,[[108,1,1,0,1]]],[10,2,2,1,3,[[296,1,1,1,2],[311,1,1,2,3]]],[18,1,1,3,4,[[582,1,1,3,4]]],[23,1,1,4,5,[[765,1,1,4,5]]]],[3299,8901,9464,15634,19444]]],["all",[3,3,[[3,2,2,0,2,[[130,1,1,0,1],[147,1,1,1,2]]],[4,1,1,2,3,[[179,1,1,2,3]]]],[4123,4673,5611]]],["also",[16,16,[[2,1,1,0,1,[[98,1,1,0,1]]],[3,1,1,1,2,[[122,1,1,1,2]]],[9,1,1,2,3,[[274,1,1,2,3]]],[10,2,2,3,5,[[292,1,1,3,4],[297,1,1,4,5]]],[11,1,1,5,6,[[314,1,1,5,6]]],[13,1,1,6,7,[[369,1,1,6,7]]],[14,1,1,7,8,[[405,1,1,7,8]]],[22,2,2,8,10,[[684,1,1,8,9],[708,1,1,9,10]]],[23,3,3,10,13,[[750,1,1,10,11],[763,1,1,11,12],[787,1,1,12,13]]],[25,3,3,13,16,[[833,1,1,13,14],[841,2,2,14,16]]]],[2971,3840,8212,8775,8936,9564,11236,12101,17770,18239,19103,19412,20010,21261,21485,21491]]],["and",[40,40,[[0,3,3,0,3,[[6,1,1,0,1],[13,1,1,1,2],[45,1,1,2,3]]],[1,8,8,3,11,[[56,1,1,3,4],[67,1,1,4,5],[70,2,2,5,7],[84,1,1,7,8],[87,1,1,8,9],[88,2,2,9,11]]],[2,1,1,11,12,[[93,1,1,11,12]]],[3,2,2,12,14,[[142,1,1,12,13],[148,1,1,13,14]]],[4,2,2,14,16,[[153,1,1,14,15],[164,1,1,15,16]]],[5,3,3,16,19,[[196,1,1,16,17],[207,2,2,17,19]]],[10,1,1,19,20,[[298,1,1,19,20]]],[11,5,5,20,25,[[321,1,1,20,21],[327,1,1,21,22],[330,2,2,22,24],[331,1,1,24,25]]],[13,1,1,25,26,[[391,1,1,25,26]]],[16,1,1,26,27,[[429,1,1,26,27]]],[17,1,1,27,28,[[477,1,1,27,28]]],[18,4,4,28,32,[[582,2,2,28,30],[593,1,1,30,31],[609,1,1,31,32]]],[22,1,1,32,33,[[737,1,1,32,33]]],[23,4,4,33,37,[[763,1,1,33,34],[769,2,2,34,36],[771,1,1,36,37]]],[25,2,2,37,39,[[804,1,1,37,38],[806,1,1,38,39]]],[35,1,1,39,40,[[906,1,1,39,40]]]],[163,352,1404,1689,2007,2105,2112,2556,2636,2700,2705,2810,4499,4756,4914,5246,6087,6397,6415,8986,9767,9941,10036,10054,10078,11728,12769,13938,15648,15649,15856,16152,18819,19414,19552,19554,19602,20510,20556,22791]]],["as",[6,5,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[22,1,1,3,4,[[715,1,1,3,4]]],[37,2,1,4,5,[[923,2,1,4,5]]]],[3001,5297,10073,18364,23068]]],["at",[4,4,[[0,1,1,0,1,[[23,1,1,0,1]]],[9,1,1,1,2,[[282,1,1,1,2]]],[10,1,1,2,3,[[312,1,1,2,3]]],[13,1,1,3,4,[[384,1,1,3,4]]]],[648,8432,9485,11546]]],["be",[6,6,[[3,1,1,0,1,[[151,1,1,0,1]]],[5,5,5,1,6,[[207,5,5,1,6]]]],[4851,6394,6402,6408,6413,6419]]],["bless",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15550]]],["both",[2,2,[[1,1,1,0,1,[[84,1,1,0,1]]],[23,1,1,1,2,[[776,1,1,1,2]]]],[2556,19742]]],["but",[1,1,[[23,1,1,0,1,[[789,1,1,0,1]]]],[20045]]],["by",[1,1,[[23,1,1,0,1,[[773,1,1,0,1]]]],[19654]]],["call",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9335]]],["cause",[31,30,[[1,2,2,0,2,[[57,1,1,0,1],[78,1,1,1,2]]],[3,4,4,2,6,[[121,2,2,2,4],[143,2,2,4,6]]],[4,3,3,6,9,[[153,1,1,6,7],[169,1,1,7,8],[176,1,1,8,9]]],[9,2,2,9,11,[[269,1,1,9,10],[279,1,1,10,11]]],[10,1,1,11,12,[[291,1,1,11,12]]],[15,1,1,12,13,[[416,1,1,12,13]]],[20,2,2,13,15,[[660,1,1,13,14],[663,1,1,14,15]]],[22,2,2,15,17,[[708,2,2,15,17]]],[23,10,9,17,26,[[759,1,1,17,18],[767,2,2,18,20],[769,1,1,20,21],[776,3,2,21,23],[777,2,2,23,25],[793,1,1,25,26]]],[25,2,2,26,28,[[817,1,1,26,27],[831,1,1,27,28]]],[37,2,2,28,30,[[918,1,1,28,29],[923,1,1,29,30]]]],[1715,2346,3816,3818,4561,4562,4930,5380,5529,8116,8330,8750,12370,17353,17403,18228,18247,19326,19511,19516,19549,19766,19775,19782,19801,20164,20764,21226,22988,23061]]],["caused",[20,20,[[1,1,1,0,1,[[63,1,1,0,1]]],[8,3,3,1,4,[[245,2,2,1,3],[255,1,1,3,4]]],[10,1,1,4,5,[[291,1,1,4,5]]],[11,1,1,5,6,[[329,1,1,5,6]]],[13,4,4,6,10,[[374,1,1,6,7],[387,1,1,7,8],[399,1,1,8,9],[400,1,1,9,10]]],[15,1,1,10,11,[[420,1,1,10,11]]],[22,1,1,11,12,[[697,1,1,11,12]]],[23,5,5,12,17,[[756,1,1,12,13],[767,2,2,13,15],[776,1,1,15,16],[778,1,1,16,17]]],[25,3,3,17,20,[[824,1,1,17,18],[825,1,1,18,19],[830,1,1,19,20]]]],[1910,7438,7439,7747,8755,10000,11348,11635,11914,11965,12500,18018,19263,19497,19506,19754,19812,21044,21069,21201]]],["even",[39,39,[[1,1,1,0,1,[[59,1,1,0,1]]],[2,2,2,1,3,[[93,1,1,1,2],[94,1,1,2,3]]],[3,4,4,3,7,[[120,1,1,3,4],[121,1,1,4,5],[134,2,2,5,7]]],[4,1,1,7,8,[[169,1,1,7,8]]],[5,3,3,8,11,[[194,1,1,8,9],[201,1,1,9,10],[205,1,1,10,11]]],[6,2,2,11,13,[[213,2,2,11,13]]],[8,1,1,13,14,[[240,1,1,13,14]]],[10,2,2,14,16,[[297,1,1,14,15],[301,1,1,15,16]]],[11,1,1,16,17,[[334,1,1,16,17]]],[13,2,2,17,19,[[377,1,1,17,18],[400,1,1,18,19]]],[16,1,1,19,20,[[427,1,1,19,20]]],[18,1,1,20,21,[[561,1,1,20,21]]],[20,1,1,21,22,[[660,1,1,21,22]]],[22,4,4,22,26,[[685,2,2,22,24],[686,1,1,24,25],[729,1,1,25,26]]],[23,7,7,26,33,[[753,1,1,26,27],[760,1,1,27,28],[769,1,1,28,29],[785,1,1,29,30],[787,1,1,30,31],[793,1,1,31,32],[795,1,1,32,33]]],[25,5,5,33,38,[[805,1,1,33,34],[814,1,1,34,35],[835,1,1,35,36],[837,1,1,36,37],[845,1,1,37,38]]],[37,1,1,38,39,[[921,1,1,38,39]]]],[1789,2812,2842,3757,3818,4278,4286,5369,6015,6215,6371,6569,6577,7325,8985,9143,10161,11420,11957,12742,15262,17345,17788,17799,17814,18695,19190,19341,19547,19967,19998,20164,20272,20530,20728,21336,21371,21606,23038]]],["for",[14,14,[[0,1,1,0,1,[[43,1,1,0,1]]],[2,2,2,1,3,[[103,1,1,1,2],[105,1,1,2,3]]],[3,2,2,3,5,[[123,1,1,3,4],[136,1,1,4,5]]],[4,1,1,5,6,[[186,1,1,5,6]]],[9,2,2,6,8,[[269,1,1,6,7],[281,1,1,7,8]]],[10,2,2,8,10,[[294,2,2,8,10]]],[15,1,1,10,11,[[414,1,1,10,11]]],[16,1,1,11,12,[[430,1,1,11,12]]],[23,1,1,12,13,[[780,1,1,12,13]]],[25,1,1,13,14,[[808,1,1,13,14]]]],[1356,3117,3234,3869,4340,5847,8098,8401,8851,8871,12315,12789,19873,20585]]],["from",[1,1,[[11,1,1,0,1,[[330,1,1,0,1]]]],[10040]]],["gave",[5,5,[[0,1,1,0,1,[[20,1,1,0,1]]],[5,1,1,1,2,[[207,1,1,1,2]]],[9,1,1,2,3,[[284,1,1,2,3]]],[15,1,1,3,4,[[419,1,1,3,4]]],[29,1,1,4,5,[[880,1,1,4,5]]]],[532,6408,8483,12422,22391]]],["give",[2,2,[[3,1,1,0,1,[[136,1,1,0,1]]],[25,1,1,1,2,[[847,1,1,1,2]]]],[4319,21673]]],["given",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[29]]],["had",[1,1,[[0,1,1,0,1,[[27,1,1,0,1]]]],[782]]],["hath",[7,7,[[2,6,6,0,6,[[102,6,6,0,6]]],[18,1,1,6,7,[[604,1,1,6,7]]]],[3056,3065,3069,3083,3085,3102,16126]]],["he",[6,6,[[0,2,2,0,2,[[8,1,1,0,1],[31,1,1,1,2]]],[1,2,2,2,4,[[86,2,2,2,4]]],[3,1,1,4,5,[[119,1,1,4,5]]],[25,1,1,5,6,[[841,1,1,5,6]]]],[211,947,2612,2621,3742,21486]]],["hear",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22969]]],["her",[16,16,[[3,1,1,0,1,[[121,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]],[6,3,3,2,5,[[211,1,1,2,3],[226,2,2,3,5]]],[7,2,2,5,7,[[233,1,1,5,6],[234,1,1,6,7]]],[10,3,3,7,10,[[293,2,2,7,9],[300,1,1,9,10]]],[13,1,1,10,11,[[375,1,1,10,11]]],[16,1,1,11,12,[[427,1,1,11,12]]],[23,1,1,12,13,[[747,1,1,12,13]]],[25,1,1,13,14,[[823,1,1,13,14]]],[27,2,2,14,16,[[863,2,2,14,16]]]],[3822,6221,6524,6966,6967,7167,7188,8842,8843,9082,11366,12733,19010,20978,22118,22120]]],["him",[79,76,[[0,11,11,0,11,[[12,1,1,0,1],[14,1,1,1,2],[19,1,1,2,3],[24,1,1,3,4],[28,1,1,4,5],[29,1,1,5,6],[41,1,1,6,7],[42,1,1,7,8],[43,1,1,8,9],[44,1,1,9,10],[47,1,1,10,11]]],[1,6,4,11,15,[[55,5,3,11,14],[80,1,1,14,15]]],[2,7,7,15,22,[[97,1,1,15,16],[98,1,1,16,17],[105,2,2,17,19],[114,1,1,19,20],[116,2,2,20,22]]],[3,2,2,22,24,[[119,1,1,22,23],[141,1,1,23,24]]],[4,3,3,24,27,[[169,1,1,24,25],[176,1,1,25,26],[186,1,1,26,27]]],[5,4,4,27,31,[[188,1,1,27,28],[201,1,1,28,29],[205,1,1,29,30],[210,1,1,30,31]]],[6,3,3,31,34,[[211,1,1,31,32],[213,1,1,32,33],[218,1,1,33,34]]],[8,8,8,34,42,[[238,1,1,34,35],[246,1,1,35,36],[251,1,1,36,37],[253,1,1,37,38],[254,2,2,38,40],[260,1,1,40,41],[262,1,1,41,42]]],[9,2,2,42,44,[[285,2,2,42,44]]],[10,5,5,44,49,[[291,1,1,44,45],[292,1,1,45,46],[293,1,1,46,47],[301,1,1,47,48],[303,1,1,48,49]]],[11,4,4,49,53,[[316,1,1,49,50],[318,1,1,50,51],[330,1,1,51,52],[336,1,1,52,53]]],[12,10,9,53,62,[[339,8,7,53,60],[341,2,2,60,62]]],[13,5,5,62,67,[[375,1,1,62,63],[377,2,2,63,65],[379,1,1,65,66],[389,1,1,66,67]]],[16,1,1,67,68,[[428,1,1,67,68]]],[22,2,2,68,70,[[714,1,1,68,69],[731,1,1,69,70]]],[23,4,4,70,74,[[765,1,1,70,71],[772,1,1,71,72],[776,1,1,72,73],[785,1,1,73,74]]],[25,2,2,74,76,[[830,1,1,74,75],[847,1,1,75,76]]]],[329,370,509,660,823,834,1281,1316,1348,1385,1452,1675,1678,1680,2426,2924,2965,3222,3223,3506,3588,3593,3734,4483,5382,5538,5840,5892,6219,6371,6479,6522,6581,6733,7294,7450,7598,7703,7713,7724,7898,7936,8548,8549,8761,8792,8822,9128,9195,9604,9680,10039,10204,10310,10315,10325,10327,10330,10335,10341,10391,10395,11365,11432,11434,11472,11667,12753,18352,18717,19441,19632,19740,19973,21203,21667]]],["himself",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8496]]],["his",[6,6,[[0,2,2,0,2,[[3,1,1,0,1],[36,1,1,1,2]]],[3,1,1,2,3,[[121,1,1,2,3]]],[9,1,1,3,4,[[283,1,1,3,4]]],[10,1,1,4,5,[[292,1,1,4,5]]],[22,1,1,5,6,[[688,1,1,5,6]]]],[104,1106,3799,8472,8779,17862]]],["in",[8,8,[[7,1,1,0,1,[[234,1,1,0,1]]],[9,1,1,1,2,[[273,1,1,1,2]]],[10,3,3,2,5,[[292,1,1,2,3],[301,1,1,3,4],[305,1,1,4,5]]],[15,1,1,5,6,[[421,1,1,5,6]]],[18,1,1,6,7,[[624,1,1,6,7]]],[23,1,1,7,8,[[782,1,1,7,8]]]],[7174,8207,8773,9123,9272,12523,16362,19904]]],["inhabitants",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4813]]],["is",[3,3,[[1,1,1,0,1,[[71,1,1,0,1]]],[13,1,1,1,2,[[397,1,1,1,2]]],[25,1,1,2,3,[[845,1,1,2,3]]]],[2138,11864,21602]]],["it",[13,13,[[1,2,2,0,2,[[84,1,1,0,1],[89,1,1,1,2]]],[2,2,2,2,4,[[90,1,1,2,3],[114,1,1,3,4]]],[3,2,2,4,6,[[120,1,1,4,5],[134,1,1,5,6]]],[4,3,3,6,9,[[181,1,1,6,7],[183,2,2,7,9]]],[8,2,2,9,11,[[249,1,1,9,10],[255,1,1,10,11]]],[23,1,1,11,12,[[780,1,1,11,12]]],[31,1,1,12,13,[[891,1,1,12,13]]]],[2536,2736,2758,3480,3757,4289,5706,5747,5750,7535,7732,19870,22560]]],["let",[28,27,[[1,16,15,0,15,[[53,1,1,0,1],[54,2,1,1,2],[55,1,1,2,3],[57,3,3,3,6],[58,2,2,6,8],[59,3,3,8,11],[60,1,1,11,12],[62,1,1,12,13],[63,1,1,13,14],[67,1,1,14,15]]],[2,1,1,15,16,[[103,1,1,15,16]]],[3,1,1,16,17,[[148,1,1,16,17]]],[5,2,2,17,19,[[190,1,1,17,18],[210,1,1,18,19]]],[6,1,1,19,20,[[212,1,1,19,20]]],[9,1,1,20,21,[[279,1,1,20,21]]],[11,1,1,21,22,[[317,1,1,21,22]]],[13,1,1,22,23,[[382,1,1,22,23]]],[18,1,1,23,24,[[549,1,1,23,24]]],[23,3,3,24,27,[[778,2,2,24,26],[782,1,1,26,27]]]],[1622,1634,1666,1718,1731,1742,1749,1777,1781,1784,1797,1816,1884,1894,2026,3118,4723,5932,6504,6551,8344,9671,11514,15019,19810,19811,19899]]],["letting",[1,1,[[1,1,1,0,1,[[57,1,1,0,1]]]],[1739]]],["made",[51,51,[[0,2,2,0,2,[[18,2,2,0,2]]],[1,5,5,2,7,[[50,2,2,2,4],[54,1,1,4,5],[58,1,1,5,6],[81,1,1,6,7]]],[2,1,1,7,8,[[112,1,1,7,8]]],[3,1,1,8,9,[[130,1,1,8,9]]],[4,1,1,9,10,[[163,1,1,9,10]]],[5,1,1,10,11,[[200,1,1,10,11]]],[6,1,1,11,12,[[219,1,1,11,12]]],[10,6,6,12,18,[[293,1,1,12,13],[302,3,3,13,16],[306,2,2,16,18]]],[11,20,20,18,38,[[315,1,1,18,19],[319,1,1,19,20],[322,2,2,20,22],[325,3,3,22,25],[326,1,1,25,26],[327,4,4,26,30],[328,1,1,30,31],[329,1,1,31,32],[333,3,3,32,35],[335,1,1,35,36],[337,2,2,36,38]]],[13,7,7,38,45,[[376,1,1,38,39],[377,1,1,39,40],[387,1,1,40,41],[388,1,1,41,42],[399,1,1,42,43],[400,1,1,43,44],[402,1,1,44,45]]],[14,1,1,45,46,[[412,1,1,45,46]]],[23,4,4,46,50,[[761,1,1,46,47],[769,1,1,47,48],[784,1,1,48,49],[793,1,1,49,50]]],[25,1,1,50,51,[[817,1,1,50,51]]]],[490,492,1545,1546,1653,1762,2458,3445,4144,5212,6195,6772,8823,9155,9161,9165,9285,9299,9579,9713,9822,9824,9873,9877,9882,9920,9934,9943,9949,9953,9966,10004,10125,10130,10143,10180,10244,10245,11399,11431,11637,11645,11917,11966,11997,12257,19380,19551,19948,20137,20787]]],["make",[18,17,[[0,3,3,0,3,[[18,1,1,0,1],[25,1,1,1,2],[46,1,1,2,3]]],[1,1,1,3,4,[[83,1,1,3,4]]],[3,1,1,4,5,[[146,1,1,4,5]]],[4,2,2,5,7,[[180,2,2,5,7]]],[5,1,1,7,8,[[208,1,1,7,8]]],[8,1,1,8,9,[[253,1,1,8,9]]],[9,1,1,9,10,[[273,1,1,9,10]]],[10,2,1,10,11,[[291,2,1,10,11]]],[11,1,1,11,12,[[335,1,1,11,12]]],[18,1,1,12,13,[[583,1,1,12,13]]],[23,1,1,13,14,[[795,1,1,13,14]]],[25,2,2,14,16,[[831,2,2,14,16]]],[32,1,1,16,17,[[895,1,1,16,17]]]],[489,696,1426,2512,4656,5632,5670,6451,7701,8201,8764,10175,15659,20248,21213,21214,22613]]],["makest",[1,1,[[23,1,1,0,1,[[772,1,1,0,1]]]],[19633]]],["maketh",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5463]]],["me",[38,38,[[0,6,6,0,6,[[22,1,1,0,1],[28,2,2,1,3],[29,1,1,3,4],[33,2,2,4,6]]],[1,1,1,6,7,[[82,1,1,6,7]]],[3,3,3,7,10,[[133,1,1,7,8],[138,2,2,8,10]]],[4,4,4,10,14,[[160,1,1,10,11],[161,2,2,11,13],[183,1,1,13,14]]],[5,1,1,14,15,[[200,1,1,14,15]]],[6,1,1,15,16,[[226,1,1,15,16]]],[8,4,4,16,20,[[236,1,1,16,17],[250,1,1,17,18],[251,1,1,18,19],[259,1,1,19,20]]],[9,4,4,20,24,[[269,1,1,20,21],[277,1,1,21,22],[282,1,1,22,23],[286,1,1,23,24]]],[10,7,7,24,31,[[292,1,1,24,25],[303,2,2,25,27],[307,1,1,27,28],[308,1,1,28,29],[311,2,2,29,31]]],[11,2,2,31,33,[[322,1,1,31,32],[330,1,1,32,33]]],[18,1,1,33,34,[[596,1,1,33,34]]],[22,1,1,34,35,[[727,1,1,34,35]]],[23,1,1,35,36,[[757,1,1,35,36]]],[37,2,2,36,38,[[913,1,1,36,37],[922,1,1,37,38]]]],[580,816,828,856,984,992,2491,4249,4381,4392,5154,5167,5168,5756,6199,6967,7239,7592,7614,7857,8095,8265,8429,8558,8787,9192,9211,9336,9360,9453,9457,9808,10038,16033,18657,19277,22913,23055]]],["my",[1,1,[[37,1,1,0,1,[[913,1,1,0,1]]]],[22919]]],["namely",[3,3,[[3,1,1,0,1,[[147,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]],[23,1,1,2,3,[[770,1,1,2,3]]]],[4672,10511,19594]]],["not",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[10,1,1,1,2,[[309,1,1,1,2]]]],[597,9389]]],["now",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17524]]],["of",[74,74,[[0,9,9,0,9,[[13,1,1,0,1],[24,1,1,1,2],[31,1,1,2,3],[36,1,1,3,4],[40,2,2,4,6],[41,1,1,6,7],[44,1,1,7,8],[49,1,1,8,9]]],[1,7,7,9,16,[[57,1,1,9,10],[58,2,2,10,12],[61,1,1,12,13],[71,1,1,13,14],[82,1,1,14,15],[85,1,1,15,16]]],[2,1,1,16,17,[[115,1,1,16,17]]],[3,1,1,17,18,[[139,1,1,17,18]]],[4,1,1,18,19,[[186,1,1,18,19]]],[5,2,2,19,21,[[203,1,1,19,20],[209,1,1,20,21]]],[6,4,4,21,25,[[213,2,2,21,23],[219,1,1,23,24],[226,1,1,24,25]]],[7,1,1,25,26,[[235,1,1,25,26]]],[8,7,7,26,33,[[237,1,1,26,27],[239,1,1,27,28],[247,1,1,28,29],[252,1,1,29,30],[253,2,2,30,32],[256,1,1,32,33]]],[9,9,9,33,42,[[267,1,1,33,34],[272,1,1,34,35],[274,1,1,35,36],[279,1,1,36,37],[280,1,1,37,38],[281,1,1,38,39],[284,1,1,39,40],[286,1,1,40,41],[287,1,1,41,42]]],[10,10,10,42,52,[[293,1,1,42,43],[299,1,1,43,44],[300,3,3,44,47],[305,1,1,47,48],[308,1,1,48,49],[310,1,1,49,50],[311,1,1,50,51],[312,1,1,51,52]]],[11,5,5,52,57,[[315,1,1,52,53],[326,1,1,53,54],[334,2,2,54,56],[335,1,1,56,57]]],[12,2,2,57,59,[[343,1,1,57,58],[354,1,1,58,59]]],[13,2,2,59,61,[[384,1,1,59,60],[394,1,1,60,61]]],[14,1,1,61,62,[[405,1,1,61,62]]],[15,1,1,62,63,[[414,1,1,62,63]]],[16,2,2,63,65,[[429,1,1,63,64],[430,1,1,64,65]]],[19,1,1,65,66,[[649,1,1,65,66]]],[21,1,1,66,67,[[671,1,1,66,67]]],[22,2,2,67,69,[[689,1,1,67,68],[740,1,1,68,69]]],[23,3,3,69,72,[[765,1,1,69,70],[780,1,1,70,71],[785,1,1,71,72]]],[25,2,2,72,74,[[836,1,1,72,73],[843,1,1,73,74]]]],[353,680,960,1106,1211,1229,1282,1371,1531,1731,1771,1775,1855,2138,2479,2574,3565,4426,5845,6287,6473,6597,6599,6778,6978,7205,7263,7315,7467,7675,7680,7682,7774,8023,8166,8222,8338,8371,8412,8480,8559,8599,8844,9052,9080,9081,9091,9270,9351,9437,9466,9488,9587,9903,10158,10163,10200,10521,10881,11549,11785,12107,12325,12769,12790,17038,17543,17893,18860,19442,19858,19968,21349,21567]]],["on",[4,4,[[3,1,1,0,1,[[151,1,1,0,1]]],[9,1,1,1,2,[[270,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]],[23,1,1,3,4,[[776,1,1,3,4]]]],[4850,8125,17929,19760]]],["ourselves",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15253]]],["over",[2,2,[[3,1,1,0,1,[[148,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]]],[4739,8552]]],["place",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2550]]],["possess",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22529]]],["provided",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8543]]],["same",[1,1,[[23,1,1,0,1,[[771,1,1,0,1]]]],[19604]]],["saw",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22165]]],["shall",[1,1,[[0,1,1,0,1,[[16,1,1,0,1]]]],[402]]],["son",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[549]]],["that",[12,12,[[0,2,2,0,2,[[20,1,1,0,1],[48,1,1,1,2]]],[1,3,3,2,5,[[65,1,1,2,3],[74,2,2,3,5]]],[3,2,2,5,7,[[125,1,1,5,6],[139,1,1,6,7]]],[4,1,1,7,8,[[173,1,1,7,8]]],[8,2,2,8,10,[[248,1,1,8,9],[250,1,1,9,10]]],[16,1,1,10,11,[[430,1,1,10,11]]],[23,1,1,11,12,[[764,1,1,11,12]]]],[521,1474,1970,2209,2223,3980,4428,5470,7499,7562,12793,19423]]],["the",[16,16,[[1,4,4,0,4,[[69,2,2,0,2],[74,1,1,2,3],[89,1,1,3,4]]],[2,1,1,4,5,[[114,1,1,4,5]]],[3,1,1,5,6,[[132,1,1,5,6]]],[4,1,1,6,7,[[158,1,1,6,7]]],[5,1,1,7,8,[[210,1,1,7,8]]],[9,2,2,8,10,[[269,1,1,8,9],[276,1,1,9,10]]],[18,3,3,10,13,[[511,1,1,10,11],[577,1,1,11,12],[611,1,1,12,13]]],[25,1,1,13,14,[[806,1,1,13,14]]],[30,1,1,14,15,[[888,1,1,14,15]]],[37,1,1,15,16,[[917,1,1,15,16]]]],[2059,2062,2232,2720,3491,4229,5110,6499,8091,8244,14389,15510,16173,20562,22531,22974]]],["thee",[55,54,[[0,6,6,0,6,[[14,1,1,0,1],[16,1,1,1,2],[22,1,1,2,3],[27,1,1,3,4],[28,1,1,4,5],[40,1,1,5,6]]],[1,5,5,6,11,[[51,1,1,6,7],[58,1,1,7,8],[73,1,1,8,9],[77,1,1,9,10],[83,1,1,10,11]]],[3,2,2,11,13,[[134,1,1,11,12],[143,1,1,12,13]]],[4,12,12,13,25,[[156,2,2,13,15],[157,1,1,15,16],[159,1,1,16,17],[162,1,1,17,18],[167,1,1,18,19],[169,1,1,19,20],[171,1,1,20,21],[175,1,1,21,22],[180,3,3,22,25]]],[6,1,1,25,26,[[214,1,1,25,26]]],[7,1,1,26,27,[[234,1,1,26,27]]],[8,6,6,27,33,[[236,1,1,27,28],[244,1,1,28,29],[245,1,1,29,30],[250,1,1,30,31],[251,1,1,31,32],[255,1,1,32,33]]],[9,4,3,33,36,[[268,1,1,33,34],[275,1,1,34,35],[278,2,1,35,36]]],[10,3,3,36,39,[[311,3,3,36,39]]],[15,1,1,39,40,[[413,1,1,39,40]]],[18,1,1,40,41,[[504,1,1,40,41]]],[19,1,1,41,42,[[633,1,1,41,42]]],[21,1,1,42,43,[[677,1,1,42,43]]],[23,2,2,43,45,[[774,1,1,43,44],[776,1,1,44,45]]],[25,7,7,45,52,[[803,1,1,45,46],[805,2,2,46,48],[806,1,1,48,49],[808,1,1,49,50],[825,2,2,50,52]]],[26,1,1,52,53,[[859,1,1,52,53]]],[32,1,1,53,54,[[898,1,1,53,54]]]],[367,405,577,777,822,1234,1563,1758,2189,2294,2507,4265,4572,5040,5042,5084,5123,5207,5334,5373,5414,5504,5623,5631,5671,6621,7176,7229,7418,7426,7576,7598,7743,8070,8234,8294,9455,9457,9458,12304,14293,16562,17639,19669,19738,20495,20534,20544,20555,20580,21058,21072,22036,22652]]],["their",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1085]]],["them",[51,50,[[0,3,3,0,3,[[40,1,1,0,1],[41,1,1,1,2],[43,1,1,2,3]]],[1,3,2,3,5,[[55,1,1,3,4],[67,2,1,4,5]]],[3,3,3,5,8,[[129,1,1,5,6],[144,1,1,6,7],[148,1,1,7,8]]],[4,3,3,8,11,[[163,1,1,8,9],[170,1,1,9,10],[179,1,1,10,11]]],[5,3,3,11,14,[[191,1,1,11,12],[207,2,2,12,14]]],[6,3,3,14,17,[[211,1,1,14,15],[216,1,1,15,16],[217,1,1,16,17]]],[8,1,1,17,18,[[257,1,1,17,18]]],[10,3,3,18,21,[[298,1,1,18,19],[299,1,1,19,20],[305,1,1,20,21]]],[11,3,3,21,24,[[323,1,1,21,22],[329,1,1,22,23],[332,1,1,23,24]]],[12,1,1,24,25,[[343,1,1,24,25]]],[13,2,2,25,27,[[370,1,1,25,26],[402,1,1,26,27]]],[14,2,2,27,29,[[403,1,1,27,28],[410,1,1,28,29]]],[15,2,2,29,31,[[414,1,1,29,30],[421,1,1,30,31]]],[18,2,2,31,33,[[571,1,1,31,32],[622,1,1,32,33]]],[22,2,2,33,35,[[686,1,1,33,34],[717,1,1,34,35]]],[23,10,10,35,45,[[745,1,1,35,36],[755,1,1,36,37],[757,1,1,37,38],[767,1,1,38,39],[769,1,1,39,40],[773,1,1,40,41],[776,2,2,41,43],[780,1,1,43,44],[784,1,1,44,45]]],[25,5,5,45,50,[[812,1,1,45,46],[821,2,2,46,48],[824,1,1,48,49],[825,1,1,49,50]]]],[1203,1276,1330,1659,2019,4101,4579,4747,5227,5402,5588,5940,6392,6402,6534,6656,6718,7791,9021,9060,9271,9833,10010,10111,10509,11252,12010,12021,12226,12316,12535,15454,16335,17814,18414,18963,19234,19278,19517,19564,19652,19753,19773,19855,19952,20675,20906,20907,21043,21081]]],["then",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21490]]],["therefore",[6,6,[[3,1,1,0,1,[[151,1,1,0,1]]],[4,4,4,1,5,[[156,1,1,1,2],[162,2,2,2,4],[181,1,1,4,5]]],[10,1,1,5,6,[[302,1,1,5,6]]]],[4879,5044,5202,5205,5688,9175]]],["thereof",[1,1,[[2,1,1,0,1,[[96,1,1,0,1]]]],[2882]]],["therewith",[2,2,[[11,1,1,0,1,[[324,1,1,0,1]]],[13,1,1,1,2,[[382,1,1,1,2]]]],[9864,11515]]],["these",[2,2,[[0,1,1,0,1,[[20,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]]],[543,10518]]],["they",[2,2,[[20,1,1,0,1,[[662,1,1,0,1]]],[23,1,1,1,2,[[782,1,1,1,2]]]],[17384,19901]]],["thine",[1,1,[[18,1,1,0,1,[[503,1,1,0,1]]]],[14279]]],["thing",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3106]]],["thither",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7985]]],["thou",[10,10,[[1,2,2,0,2,[[83,2,2,0,2]]],[3,1,1,2,3,[[133,1,1,2,3]]],[8,1,1,3,4,[[259,1,1,3,4]]],[9,1,1,4,5,[[279,1,1,4,5]]],[10,1,1,5,6,[[298,1,1,5,6]]],[12,1,1,6,7,[[365,1,1,6,7]]],[18,1,1,7,8,[[581,1,1,7,8]]],[19,1,1,8,9,[[651,1,1,8,9]]],[20,1,1,9,10,[[663,1,1,9,10]]]],[2507,2523,4246,7848,8329,9034,11152,15606,17100,17404]]],["through",[2,2,[[3,1,1,0,1,[[141,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]]],[4479,4956]]],["throughout",[1,1,[[10,1,1,0,1,[[305,1,1,0,1]]]],[9271]]],["thyself",[1,1,[[9,1,1,0,1,[[273,1,1,0,1]]]],[8204]]],["till",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13632]]],["to",[14,14,[[0,1,1,0,1,[[38,1,1,0,1]]],[1,1,1,1,2,[[50,1,1,1,2]]],[6,1,1,2,3,[[221,1,1,2,3]]],[8,2,2,3,5,[[244,1,1,3,4],[265,1,1,4,5]]],[9,1,1,5,6,[[282,1,1,5,6]]],[10,1,1,6,7,[[292,1,1,6,7]]],[12,1,1,7,8,[[358,1,1,7,8]]],[15,1,1,8,9,[[420,1,1,8,9]]],[20,1,1,9,10,[[667,1,1,9,10]]],[22,1,1,10,11,[[728,1,1,10,11]]],[23,2,2,11,13,[[764,1,1,11,12],[785,1,1,12,13]]],[36,1,1,13,14,[[910,1,1,13,14]]]],[1172,1548,6868,7409,7999,8443,8774,10940,12494,17486,18666,19437,19967,22860]]],["toward",[1,1,[[27,1,1,0,1,[[864,1,1,0,1]]]],[22129]]],["turn",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8420]]],["unto",[16,16,[[0,1,1,0,1,[[31,1,1,0,1]]],[5,2,2,1,3,[[187,1,1,1,2],[208,1,1,2,3]]],[6,1,1,3,4,[[213,1,1,3,4]]],[7,1,1,4,5,[[233,1,1,4,5]]],[8,4,4,5,9,[[237,1,1,5,6],[238,1,1,6,7],[249,1,1,7,8],[263,1,1,8,9]]],[10,1,1,9,10,[[303,1,1,9,10]]],[16,1,1,10,11,[[429,1,1,10,11]]],[17,1,1,11,12,[[475,1,1,11,12]]],[18,1,1,12,13,[[528,1,1,12,13]]],[23,2,2,13,15,[[747,1,1,13,14],[751,1,1,14,15]]],[37,1,1,15,16,[[918,1,1,15,16]]]],[938,5857,6447,6572,7160,7251,7277,7531,7963,9210,12770,13870,14709,19020,19141,22991]]],["up",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7950]]],["upon",[1,1,[[32,1,1,0,1,[[897,1,1,0,1]]]],[22648]]],["us",[20,20,[[0,2,2,0,2,[[40,1,1,0,1],[49,1,1,1,2]]],[4,4,4,2,6,[[157,2,2,2,4],[158,1,1,4,5],[178,1,1,5,6]]],[5,3,3,6,9,[[188,1,1,6,7],[208,1,1,7,8],[210,1,1,8,9]]],[6,3,3,9,12,[[223,1,1,9,10],[224,1,1,10,11],[230,1,1,11,12]]],[8,3,3,12,15,[[241,1,1,12,13],[244,2,2,13,15]]],[11,1,1,15,16,[[319,1,1,15,16]]],[18,1,1,16,17,[[524,1,1,16,17]]],[22,1,1,17,18,[[719,1,1,17,18]]],[23,2,2,18,20,[[782,1,1,18,19],[786,1,1,19,20]]]],[1207,1521,5077,5080,5109,5575,5883,6452,6494,6907,6924,7067,7340,7397,7399,9713,14629,18473,19911,19978]]],["was",[3,3,[[0,1,1,0,1,[[39,1,1,0,1]]],[10,1,1,1,2,[[305,1,1,1,2]]],[11,1,1,2,3,[[333,1,1,2,3]]]],[1192,9254,10134]]],["we",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12365]]],["were",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20129]]],["when",[5,5,[[0,1,1,0,1,[[20,1,1,0,1]]],[3,2,2,1,3,[[120,1,1,1,2],[126,1,1,2,3]]],[8,1,1,3,4,[[253,1,1,3,4]]],[25,1,1,4,5,[[844,1,1,4,5]]]],[518,3763,3995,7695,21599]]],["whether",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1097]]],["wit",[2,2,[[10,1,1,0,1,[[292,1,1,0,1]]],[23,1,1,1,2,[[769,1,1,1,2]]]],[8802,19552]]],["with",[10,10,[[0,2,2,0,2,[[25,1,1,0,1],[41,1,1,1,2]]],[1,2,2,2,4,[[84,1,1,2,3],[88,1,1,3,4]]],[6,1,1,4,5,[[211,1,1,4,5]]],[11,1,1,5,6,[[322,1,1,5,6]]],[13,1,1,6,7,[[395,1,1,6,7]]],[22,1,1,7,8,[[727,1,1,7,8]]],[23,2,2,8,10,[[783,1,1,8,9],[795,1,1,9,10]]]],[700,1278,2543,2701,6527,9806,11809,18662,19932,20240]]],["ye",[22,22,[[0,1,1,0,1,[[28,1,1,0,1]]],[3,2,2,1,3,[[117,1,1,1,2],[148,1,1,2,3]]],[5,1,1,3,4,[[210,1,1,3,4]]],[9,2,2,4,6,[[277,1,1,4,5],[290,1,1,5,6]]],[11,1,1,6,7,[[322,1,1,6,7]]],[12,1,1,7,8,[[359,1,1,7,8]]],[13,1,1,8,9,[[384,1,1,8,9]]],[18,2,2,9,11,[[612,1,1,9,10],[625,1,1,10,11]]],[21,1,1,11,12,[[673,1,1,11,12]]],[22,1,1,12,13,[[714,1,1,12,13]]],[23,6,6,13,19,[[754,1,1,13,14],[755,2,2,14,16],[761,1,1,16,17],[764,1,1,17,18],[766,1,1,18,19]]],[29,1,1,19,20,[[883,1,1,19,20]]],[35,1,1,20,21,[[907,1,1,20,21]]],[38,1,1,21,22,[[927,1,1,21,22]]]],[800,3606,4725,6490,8274,8694,9799,10983,11567,16176,16372,17574,18343,19202,19228,19232,19379,19435,19484,22424,22808,23130]]],["you",[36,36,[[0,4,4,0,4,[[0,1,1,0,1],[8,1,1,1,2],[41,1,1,2,3],[44,1,1,3,4]]],[1,1,1,4,5,[[53,1,1,4,5]]],[2,1,1,5,6,[[114,1,1,5,6]]],[3,1,1,6,7,[[149,1,1,6,7]]],[4,3,3,7,10,[[155,1,1,7,8],[156,1,1,8,9],[157,1,1,9,10]]],[5,7,7,10,17,[[187,1,1,10,11],[188,1,1,11,12],[189,1,1,12,13],[192,1,1,13,14],[206,1,1,14,15],[209,1,1,15,16],[210,1,1,16,17]]],[6,1,1,17,18,[[216,1,1,17,18]]],[10,1,1,18,19,[[291,1,1,18,19]]],[11,2,2,19,21,[[313,1,1,19,20],[319,1,1,20,21]]],[22,1,1,21,22,[[683,1,1,21,22]]],[23,6,6,22,28,[[751,1,1,22,23],[765,1,1,23,24],[767,1,1,24,25],[769,1,1,25,26],[779,1,1,26,27],[788,1,1,27,28]]],[25,2,2,28,30,[[812,1,1,28,29],[819,1,1,29,30]]],[28,3,3,30,33,[[877,3,3,30,33]]],[29,1,1,33,34,[[881,1,1,33,34]]],[38,2,2,34,36,[[927,1,1,34,35],[928,1,1,35,36]]]],[28,208,1286,1376,1616,3507,4813,4993,5017,5058,5864,5878,5903,5965,6374,6475,6498,6663,8750,9540,9719,17744,19144,19448,19486,19538,19838,20014,20672,20880,22330,22334,22336,22397,23130,23143]]]]},{"k":"H854","v":[["*",[995,857,[[0,135,118,0,118,[[3,1,1,0,1],[4,2,2,1,3],[5,5,4,3,7],[6,3,3,7,10],[7,6,5,10,15],[8,8,5,15,20],[10,1,1,20,21],[11,1,1,21,22],[12,1,1,22,23],[13,8,6,23,29],[14,1,1,29,30],[16,8,7,30,37],[18,3,3,37,40],[19,2,1,40,41],[20,2,2,41,43],[21,1,1,43,44],[22,2,2,44,46],[23,4,4,46,50],[24,1,1,50,51],[25,3,3,51,54],[26,2,2,54,56],[27,1,1,56,57],[29,2,2,57,59],[30,1,1,59,60],[31,1,1,60,61],[32,1,1,61,62],[33,9,9,62,71],[34,3,3,71,74],[36,3,1,74,75],[37,1,1,75,76],[38,6,6,76,82],[39,2,2,82,84],[40,1,1,84,85],[41,8,8,85,93],[42,9,7,93,100],[43,8,7,100,107],[44,2,2,107,109],[45,4,3,109,112],[46,1,1,112,113],[48,3,2,113,115],[49,4,3,115,118]]],[1,44,38,118,156,[[50,2,2,118,120],[51,4,2,120,122],[54,1,1,122,123],[55,1,1,123,124],[59,1,1,124,125],[60,2,1,125,126],[61,2,2,126,128],[62,1,1,128,129],[66,1,1,129,130],[67,1,1,130,131],[69,1,1,131,132],[74,4,4,132,136],[76,1,1,136,137],[77,2,2,137,139],[78,4,2,139,141],[79,1,1,141,142],[80,2,2,142,144],[82,1,1,144,145],[83,7,6,145,151],[84,3,3,151,154],[87,1,1,154,155],[89,1,1,155,156]]],[2,38,35,156,191,[[90,1,1,156,157],[95,2,2,157,159],[96,3,2,159,161],[97,4,3,161,164],[99,4,4,164,168],[104,1,1,168,169],[105,3,3,169,172],[107,1,1,172,173],[108,4,4,173,177],[109,7,6,177,183],[113,1,1,183,184],[114,3,3,184,187],[115,3,3,187,190],[116,1,1,190,191]]],[3,60,53,191,244,[[117,2,2,191,193],[119,4,4,193,197],[121,2,2,197,199],[123,3,3,199,202],[124,2,2,202,204],[125,1,1,204,205],[126,1,1,205,206],[127,2,2,206,208],[129,1,1,208,209],[130,1,1,209,210],[131,2,2,210,212],[132,2,2,212,214],[133,2,1,214,215],[134,11,7,215,222],[136,1,1,222,223],[138,2,2,223,225],[139,2,2,225,227],[141,2,2,227,229],[142,2,2,229,231],[143,1,1,231,232],[147,7,6,232,238],[148,3,3,238,241],[151,4,3,241,244]]],[4,26,21,244,265,[[153,1,1,244,245],[154,3,2,245,247],[155,1,1,247,248],[157,3,2,248,250],[160,1,1,250,251],[162,1,1,251,252],[163,1,1,252,253],[164,1,1,253,254],[167,1,1,254,255],[169,1,1,255,256],[170,2,1,256,257],[171,1,1,257,258],[180,1,1,258,259],[181,6,4,259,263],[183,2,2,263,265]]],[5,75,47,265,312,[[188,1,1,265,266],[192,3,3,266,269],[194,2,2,269,271],[196,4,3,271,274],[197,1,1,274,275],[199,1,1,275,276],[200,1,1,276,277],[201,2,2,277,279],[203,1,1,279,280],[207,51,25,280,305],[208,5,4,305,309],[209,1,1,309,310],[210,2,2,310,312]]],[6,36,31,312,343,[[211,9,6,312,318],[212,1,1,318,319],[213,1,1,319,320],[214,2,2,320,322],[217,6,5,322,327],[218,4,3,327,330],[219,4,4,330,334],[222,1,1,334,335],[223,1,1,335,336],[224,1,1,336,337],[226,1,1,337,338],[227,2,2,338,340],[229,2,2,340,342],[230,1,1,342,343]]],[7,7,6,343,349,[[232,2,2,343,345],[233,3,2,345,347],[234,1,1,347,348],[235,1,1,348,349]]],[8,41,39,349,388,[[237,4,4,349,353],[241,2,2,353,355],[242,2,2,355,357],[243,1,1,357,358],[244,2,2,358,360],[247,4,2,360,362],[248,1,1,362,363],[249,2,2,363,365],[251,2,2,365,367],[252,1,1,367,368],[255,1,1,368,369],[256,1,1,369,370],[257,3,3,370,373],[258,1,1,373,374],[259,1,1,374,375],[260,2,2,375,377],[261,2,2,377,379],[263,1,1,379,380],[264,3,3,380,383],[265,4,4,383,387],[266,1,1,387,388]]],[9,58,55,388,443,[[267,2,2,388,390],[269,10,8,390,398],[272,1,1,398,399],[273,2,2,399,401],[276,1,1,401,402],[277,2,2,402,404],[278,1,1,404,405],[279,2,2,405,407],[280,1,1,407,408],[281,9,9,408,417],[282,6,5,417,422],[283,7,7,422,429],[284,1,1,429,430],[285,8,8,430,438],[286,1,1,438,439],[287,2,2,439,441],[290,2,2,441,443]]],[10,46,41,443,484,[[291,3,3,443,446],[292,1,1,446,447],[293,2,2,447,449],[294,1,1,449,450],[296,2,2,450,452],[297,1,1,452,453],[298,2,2,453,455],[299,2,2,455,457],[301,4,4,457,461],[302,6,5,461,466],[303,7,5,466,471],[305,1,1,471,472],[306,1,1,472,473],[308,2,2,473,475],[310,3,3,475,478],[311,1,1,478,479],[312,7,5,479,484]]],[11,62,56,484,540,[[313,2,1,484,485],[314,2,2,485,487],[315,5,5,487,492],[316,4,4,492,496],[317,3,3,496,499],[318,6,5,499,504],[320,4,4,504,508],[321,3,3,508,511],[322,4,3,511,514],[323,2,2,514,516],[324,4,4,516,520],[325,2,2,520,522],[327,3,2,522,524],[328,1,1,524,525],[329,3,3,525,528],[330,2,2,528,530],[331,1,1,530,531],[332,1,1,531,532],[334,2,2,532,534],[335,2,2,534,536],[337,6,4,536,540]]],[12,9,6,540,546,[[339,5,2,540,542],[353,1,1,542,543],[354,1,1,543,544],[357,1,1,544,545],[366,1,1,545,546]]],[13,26,20,546,566,[[372,2,2,546,548],[376,5,3,548,551],[377,1,1,551,552],[379,2,1,552,553],[382,1,1,553,554],[384,7,4,554,558],[388,2,2,558,560],[389,1,1,560,561],[390,1,1,561,562],[395,2,2,562,564],[396,1,1,564,565],[397,1,1,565,566]]],[14,2,2,566,568,[[410,1,1,566,567],[411,1,1,567,568]]],[15,4,4,568,572,[[418,1,1,568,569],[425,3,3,569,572]]],[16,5,5,572,577,[[427,2,2,572,574],[428,1,1,574,575],[432,1,1,575,576],[434,1,1,576,577]]],[17,8,8,577,585,[[437,3,3,577,580],[447,1,1,580,581],[449,1,1,581,582],[454,1,1,582,583],[461,1,1,583,584],[471,1,1,584,585]]],[18,23,23,585,608,[[489,1,1,585,586],[493,1,1,586,587],[498,1,1,587,588],[499,1,1,588,589],[501,1,1,589,590],[504,1,1,590,591],[511,1,1,591,592],[512,1,1,592,593],[515,1,1,593,594],[543,1,1,594,595],[544,1,1,595,596],[551,1,1,596,597],[555,1,1,597,598],[582,1,1,598,599],[586,3,3,599,602],[595,1,1,602,603],[602,1,1,603,604],[604,1,1,604,605],[614,1,1,605,606],[618,1,1,606,607],[620,1,1,607,608]]],[19,25,23,608,631,[[628,2,2,608,610],[629,1,1,610,611],[630,3,3,611,614],[632,1,1,614,615],[634,1,1,615,616],[635,2,2,616,618],[638,1,1,618,619],[640,2,2,619,621],[643,3,2,621,623],[644,1,1,623,624],[649,2,1,624,625],[650,2,2,625,627],[651,1,1,627,628],[652,1,1,628,629],[656,1,1,629,630],[657,1,1,630,631]]],[20,1,1,631,632,[[660,1,1,631,632]]],[21,2,1,632,633,[[674,2,1,632,633]]],[22,50,41,633,674,[[692,1,1,633,634],[697,1,1,634,635],[699,1,1,635,636],[701,1,1,636,637],[706,4,3,637,640],[707,2,2,640,642],[708,1,1,642,643],[712,1,1,643,644],[714,2,2,644,646],[715,1,1,646,647],[716,1,1,647,648],[718,1,1,648,649],[719,1,1,649,650],[721,2,2,650,652],[722,1,1,652,653],[723,2,1,653,654],[727,2,1,654,655],[728,1,1,655,656],[729,1,1,656,657],[731,4,2,657,659],[732,5,3,659,662],[735,2,2,662,664],[737,2,2,664,666],[738,1,1,666,667],[740,1,1,667,668],[741,2,2,668,670],[743,1,1,670,671],[744,5,3,671,674]]],[23,103,89,674,763,[[745,2,2,674,676],[746,3,2,676,678],[747,3,2,678,680],[749,1,1,680,681],[750,2,2,681,683],[751,1,1,683,684],[752,1,1,684,685],[753,2,2,685,687],[754,1,1,687,688],[755,2,2,688,690],[756,4,3,690,693],[757,1,1,693,694],[758,1,1,694,695],[759,2,2,695,697],[760,2,2,697,699],[762,1,1,699,700],[763,1,1,700,701],[764,1,1,701,702],[765,3,3,702,705],[767,5,3,705,708],[768,1,1,708,709],[769,1,1,709,710],[770,3,3,710,713],[771,2,2,713,715],[773,2,2,715,717],[774,2,2,717,719],[775,4,3,719,722],[776,3,3,722,725],[777,4,2,725,727],[778,6,5,727,732],[779,1,1,732,733],[780,1,1,733,734],[781,2,2,734,736],[782,1,1,736,737],[783,1,1,737,738],[784,6,5,738,743],[785,10,7,743,750],[786,2,2,750,752],[787,2,2,752,754],[790,1,1,754,755],[793,1,1,755,756],[794,1,1,756,757],[795,2,2,757,759],[796,5,4,759,763]]],[25,73,60,763,823,[[803,1,1,763,764],[804,4,4,764,768],[807,2,1,768,769],[809,1,1,769,770],[811,2,1,770,771],[815,1,1,771,772],[817,4,4,772,776],[818,3,3,776,779],[821,4,3,779,782],[822,3,2,782,784],[823,1,1,784,785],[824,6,6,785,791],[827,2,1,791,792],[831,2,2,792,794],[832,5,4,794,798],[833,14,10,798,808],[834,3,1,808,809],[835,2,2,809,811],[837,1,1,811,812],[838,2,2,812,814],[839,6,5,814,819],[840,1,1,819,820],[844,1,1,820,821],[848,2,2,821,823]]],[26,2,2,823,825,[[850,1,1,823,824],[860,1,1,824,825]]],[27,3,3,825,828,[[866,1,1,825,826],[868,1,1,826,827],[873,1,1,827,828]]],[28,2,2,828,830,[[877,2,2,828,830]]],[29,1,1,830,831,[[883,1,1,830,831]]],[30,1,1,831,832,[[888,1,1,831,832]]],[31,1,1,832,833,[[892,1,1,832,833]]],[32,4,4,833,837,[[893,1,1,833,834],[895,1,1,834,835],[897,1,1,835,836],[898,1,1,836,837]]],[34,2,2,837,839,[[904,1,1,837,838],[905,1,1,838,839]]],[35,2,2,839,841,[[906,2,2,839,841]]],[36,4,4,841,845,[[909,1,1,841,842],[910,3,3,842,845]]],[37,10,8,845,853,[[911,1,1,845,846],[916,3,1,846,847],[917,2,2,847,849],[918,1,1,849,850],[920,1,1,850,851],[921,1,1,851,852],[924,1,1,852,853]]],[38,4,4,853,857,[[926,3,3,853,856],[927,1,1,856,857]]]],[80,127,129,146,150,155,156,166,172,182,184,191,199,200,201,213,214,215,216,217,297,302,323,338,341,344,345,353,360,378,400,401,416,418,419,420,424,481,490,491,511,531,533,550,579,591,623,631,640,646,668,702,716,723,742,757,777,859,863,898,935,975,985,986,988,989,990,996,1001,1002,1003,1024,1025,1026,1085,1120,1151,1152,1155,1157,1170,1172,1176,1179,1207,1256,1259,1265,1268,1276,1282,1284,1285,1293,1294,1295,1298,1306,1322,1324,1333,1334,1347,1350,1352,1354,1358,1359,1373,1392,1393,1401,1442,1503,1505,1513,1519,1520,1533,1539,1575,1578,1652,1659,1788,1808,1854,1864,1886,1988,2021,2074,2197,2198,2217,2234,2293,2294,2334,2357,2364,2398,2426,2438,2494,2523,2525,2528,2529,2530,2531,2536,2554,2555,2656,2710,2757,2853,2859,2913,2915,2919,2924,2947,2981,2986,2991,2992,3171,3206,3216,3217,3273,3294,3301,3314,3315,3328,3329,3330,3331,3336,3338,3454,3484,3505,3513,3533,3563,3568,3594,3608,3609,3693,3701,3741,3742,3805,3811,3855,3934,3939,3950,3965,3979,4017,4041,4055,4092,4117,4167,4169,4204,4229,4246,4258,4259,4264,4268,4276,4283,4285,4324,4395,4415,4429,4433,4482,4485,4492,4499,4575,4666,4667,4692,4715,4716,4718,4737,4747,4748,4851,4852,4853,4922,4944,4946,4979,5056,5077,5140,5207,5210,5252,5322,5376,5387,5411,5619,5680,5693,5694,5698,5735,5744,5888,5959,5966,5976,6007,6013,6065,6068,6088,6125,6175,6199,6220,6265,6289,6389,6392,6394,6395,6396,6397,6398,6399,6402,6403,6404,6405,6406,6408,6409,6410,6411,6412,6413,6415,6416,6417,6418,6419,6420,6435,6441,6456,6458,6472,6484,6508,6512,6523,6525,6526,6528,6530,6546,6587,6610,6612,6695,6696,6698,6712,6713,6720,6723,6726,6786,6787,6789,6802,6873,6903,6920,6964,6982,6991,7026,7028,7074,7137,7145,7169,7172,7174,7195,7253,7259,7262,7263,7342,7346,7366,7368,7379,7394,7406,7462,7467,7507,7525,7528,7600,7609,7627,7771,7773,7790,7793,7810,7833,7857,7876,7890,7907,7911,7943,7970,7973,7977,7982,7987,7999,8001,8018,8033,8039,8093,8094,8097,8101,8102,8104,8108,8112,8159,8187,8192,8259,8268,8276,8303,8343,8344,8375,8400,8401,8403,8408,8411,8413,8416,8419,8422,8440,8441,8443,8444,8447,8451,8457,8459,8461,8465,8471,8478,8479,8518,8528,8537,8542,8544,8545,8547,8549,8569,8592,8595,8694,8716,8744,8758,8761,8786,8817,8834,8878,8908,8929,8948,8990,9000,9076,9077,9109,9125,9131,9133,9157,9159,9161,9172,9175,9191,9199,9200,9202,9203,9268,9307,9353,9373,9409,9431,9442,9459,9484,9487,9488,9504,9511,9548,9561,9567,9583,9587,9588,9596,9602,9606,9608,9616,9631,9662,9666,9667,9677,9678,9690,9706,9707,9735,9741,9755,9756,9771,9783,9788,9795,9799,9809,9832,9837,9855,9857,9858,9865,9885,9894,9944,9950,9977,9998,10018,10021,10047,10055,10070,10107,10149,10152,10167,10183,10228,10247,10250,10252,10324,10329,10836,10869,10931,11172,11286,11300,11401,11403,11405,11418,11472,11512,11548,11549,11565,11572,11649,11656,11663,11701,11815,11820,11849,11871,12220,12245,12417,12680,12682,12688,12733,12744,12748,12814,12863,12898,12901,12904,13131,13186,13301,13471,13743,14068,14103,14197,14229,14246,14289,14391,14411,14500,14893,14894,15057,15121,15615,15757,15775,15776,15892,16115,16126,16230,16280,16295,16411,16415,16434,16483,16484,16487,16534,16576,16620,16633,16690,16757,16767,16847,16859,16897,17039,17045,17055,17080,17122,17233,17258,17347,17590,17948,18027,18045,18094,18179,18182,18186,18206,18207,18225,18317,18338,18346,18361,18397,18430,18455,18507,18510,18557,18570,18640,18670,18677,18720,18723,18733,18738,18740,18773,18780,18812,18821,18830,18865,18869,18877,18920,18932,18936,18938,18954,18965,18974,19002,19003,19011,19076,19092,19100,19120,19161,19177,19183,19206,19227,19236,19250,19252,19254,19291,19314,19329,19335,19341,19344,19385,19417,19433,19441,19442,19445,19499,19512,19514,19525,19546,19573,19594,19596,19597,19614,19651,19658,19668,19678,19722,19723,19724,19732,19736,19740,19780,19796,19802,19804,19809,19813,19814,19824,19843,19884,19891,19920,19928,19942,19945,19946,19947,19948,19958,19959,19960,19964,19968,19970,19973,19983,19986,20003,20009,20073,20141,20205,20265,20271,20285,20290,20308,20310,20498,20505,20524,20526,20529,20572,20618,20637,20753,20770,20821,20822,20824,20838,20841,20845,20930,20931,20939,20956,20964,20987,21015,21030,21032,21033,21036,21044,21120,21209,21215,21234,21246,21247,21248,21266,21267,21269,21272,21273,21275,21276,21277,21278,21280,21310,21316,21343,21386,21416,21423,21430,21431,21434,21440,21447,21452,21580,21701,21702,21756,22038,22159,22183,22255,22330,22331,22437,22511,22576,22591,22616,22640,22649,22761,22781,22790,22805,22853,22859,22860,22872,22884,22957,22971,22974,22992,23025,23038,23085,23107,23108,23109,23136]]],["+",[183,170,[[0,15,15,0,15,[[7,1,1,0,1],[16,1,1,1,2],[18,1,1,2,3],[22,1,1,3,4],[24,1,1,4,5],[25,1,1,5,6],[26,1,1,6,7],[37,1,1,7,8],[41,1,1,8,9],[42,1,1,9,10],[43,1,1,10,11],[46,1,1,11,12],[48,2,2,12,14],[49,1,1,14,15]]],[1,11,9,15,24,[[54,1,1,15,16],[59,1,1,16,17],[60,2,1,17,18],[74,2,2,18,20],[76,1,1,20,21],[78,2,1,21,22],[79,1,1,22,23],[84,1,1,23,24]]],[2,12,11,24,35,[[95,1,1,24,25],[96,3,2,25,27],[99,1,1,27,28],[105,1,1,28,29],[108,1,1,29,30],[113,1,1,30,31],[114,3,3,31,34],[116,1,1,34,35]]],[3,24,20,35,55,[[119,3,3,35,38],[123,2,2,38,40],[124,1,1,40,41],[127,1,1,41,42],[132,1,1,42,43],[133,2,1,43,44],[134,3,2,44,46],[141,1,1,46,47],[147,7,6,47,53],[148,1,1,53,54],[151,2,1,54,55]]],[4,6,4,55,59,[[154,3,2,55,57],[155,1,1,57,58],[170,2,1,58,59]]],[5,8,7,59,66,[[201,1,1,59,60],[203,1,1,60,61],[207,2,2,61,63],[208,3,2,63,65],[210,1,1,65,66]]],[6,2,2,66,68,[[211,1,1,66,67],[229,1,1,67,68]]],[7,1,1,68,69,[[235,1,1,68,69]]],[8,4,4,69,73,[[237,1,1,69,70],[242,1,1,70,71],[243,1,1,71,72],[251,1,1,72,73]]],[9,3,3,73,76,[[269,1,1,73,74],[287,1,1,74,75],[290,1,1,75,76]]],[10,12,12,76,88,[[291,1,1,76,77],[292,1,1,77,78],[294,1,1,78,79],[296,1,1,79,80],[301,1,1,80,81],[302,1,1,81,82],[306,1,1,82,83],[308,1,1,83,84],[310,1,1,84,85],[312,3,3,85,88]]],[11,18,18,88,106,[[314,1,1,88,89],[315,1,1,89,90],[316,3,3,90,93],[317,3,3,93,96],[318,1,1,96,97],[320,2,2,97,99],[324,3,3,99,102],[328,1,1,102,103],[332,1,1,103,104],[334,1,1,104,105],[337,1,1,105,106]]],[12,1,1,106,107,[[339,1,1,106,107]]],[13,4,4,107,111,[[377,1,1,107,108],[384,3,3,108,111]]],[14,1,1,111,112,[[411,1,1,111,112]]],[15,1,1,112,113,[[418,1,1,112,113]]],[16,1,1,113,114,[[432,1,1,113,114]]],[17,2,2,114,116,[[437,2,2,114,116]]],[18,7,7,116,123,[[499,1,1,116,117],[501,1,1,117,118],[504,1,1,118,119],[543,1,1,119,120],[586,1,1,120,121],[595,1,1,121,122],[614,1,1,122,123]]],[19,2,2,123,125,[[644,1,1,123,124],[657,1,1,124,125]]],[22,8,8,125,133,[[699,1,1,125,126],[706,1,1,126,127],[716,1,1,127,128],[729,1,1,128,129],[732,3,3,129,132],[735,1,1,132,133]]],[23,29,28,133,161,[[746,1,1,133,134],[747,1,1,134,135],[751,1,1,135,136],[753,1,1,136,137],[755,1,1,137,138],[757,1,1,138,139],[760,1,1,139,140],[762,1,1,140,141],[765,1,1,141,142],[767,4,3,142,145],[770,1,1,145,146],[771,1,1,146,147],[774,1,1,147,148],[776,2,2,148,150],[778,3,3,150,153],[779,1,1,153,154],[780,1,1,154,155],[781,1,1,155,156],[784,1,1,156,157],[785,1,1,157,158],[793,1,1,158,159],[795,1,1,159,160],[796,1,1,160,161]]],[25,2,2,161,163,[[834,1,1,161,162],[848,1,1,162,163]]],[30,1,1,163,164,[[888,1,1,163,164]]],[32,2,2,164,166,[[893,1,1,164,165],[897,1,1,165,166]]],[34,1,1,166,167,[[904,1,1,166,167]]],[37,5,3,167,170,[[916,3,1,167,168],[917,1,1,168,169],[924,1,1,169,170]]]],[191,424,481,591,668,723,757,1120,1276,1324,1352,1442,1503,1505,1519,1652,1788,1808,2197,2198,2293,2364,2398,2536,2853,2913,2915,2981,3206,3294,3454,3484,3505,3513,3594,3701,3741,3742,3855,3934,3950,4055,4229,4246,4283,4285,4482,4666,4667,4692,4715,4716,4718,4747,4853,4944,4946,4979,5387,6220,6289,6397,6415,6435,6458,6508,6523,7026,7195,7263,7366,7379,7609,8094,8592,8716,8744,8786,8878,8929,9131,9175,9307,9353,9442,9487,9488,9504,9561,9587,9606,9608,9631,9662,9666,9667,9707,9735,9741,9855,9857,9858,9977,10107,10149,10252,10329,11418,11548,11549,11565,12245,12417,12814,12898,12901,14229,14246,14289,14893,15775,15892,16230,16897,17258,18045,18186,18397,18677,18733,18738,18740,18773,19002,19003,19120,19177,19227,19291,19341,19385,19441,19499,19512,19514,19573,19597,19668,19732,19740,19802,19809,19813,19824,19843,19891,19942,19973,20141,20265,20310,21310,21702,22511,22591,22640,22761,22957,22974,23085]]],["To",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13471]]],["With",[3,3,[[0,2,2,0,2,[[13,1,1,0,1],[43,1,1,1,2]]],[11,1,1,2,3,[[329,1,1,2,3]]]],[345,1333,10018]]],["against",[12,12,[[6,1,1,0,1,[[230,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[11,2,2,2,4,[[320,1,1,2,3],[331,1,1,3,4]]],[13,1,1,4,5,[[390,1,1,4,5]]],[18,1,1,5,6,[[586,1,1,5,6]]],[22,2,2,6,8,[[732,2,2,6,8]]],[23,2,2,8,10,[[765,1,1,8,9],[781,1,1,9,10]]],[25,1,1,10,11,[[839,1,1,10,11]]],[26,1,1,11,12,[[860,1,1,11,12]]]],[7074,9431,9756,10070,11701,15757,18738,18740,19445,19884,21447,22038]]],["among",[8,8,[[2,1,1,0,1,[[105,1,1,0,1]]],[3,2,2,1,3,[[125,1,1,1,2],[151,1,1,2,3]]],[5,1,1,3,4,[[209,1,1,3,4]]],[6,1,1,4,5,[[211,1,1,4,5]]],[8,1,1,5,6,[[266,1,1,5,6]]],[18,1,1,6,7,[[551,1,1,6,7]]],[22,1,1,7,8,[[707,1,1,7,8]]]],[3217,3979,4851,6472,6525,8018,15057,18207]]],["and",[1,1,[[11,1,1,0,1,[[327,1,1,0,1]]]],[9950]]],["before",[3,3,[[4,1,1,0,1,[[169,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]],[32,1,1,2,3,[[898,1,1,2,3]]]],[5376,18225,22649]]],["beside",[2,2,[[10,2,2,0,2,[[299,1,1,0,1],[301,1,1,1,2]]]],[9077,9133]]],["by",[10,10,[[1,1,1,0,1,[[82,1,1,0,1]]],[6,2,2,1,3,[[213,1,1,1,2],[214,1,1,2,3]]],[11,1,1,3,4,[[321,1,1,3,4]]],[19,2,2,4,6,[[630,2,2,4,6]]],[22,1,1,6,7,[[722,1,1,6,7]]],[25,2,2,7,9,[[833,1,1,7,8],[844,1,1,8,9]]],[32,1,1,9,10,[[895,1,1,9,10]]]],[2494,6587,6610,9783,16483,16484,18557,21277,21580,22616]]],["concerning",[1,1,[[25,1,1,0,1,[[815,1,1,0,1]]]],[20753]]],["for",[5,5,[[4,2,2,0,2,[[153,1,1,0,1],[162,1,1,1,2]]],[18,1,1,2,3,[[586,1,1,2,3]]],[23,1,1,3,4,[[769,1,1,3,4]]],[25,1,1,4,5,[[809,1,1,4,5]]]],[4922,5207,15776,19546,20618]]],["from",[2,2,[[0,1,1,0,1,[[3,1,1,0,1]]],[18,1,1,1,2,[[515,1,1,1,2]]]],[80,14500]]],["had",[1,1,[[0,1,1,0,1,[[38,1,1,0,1]]]],[1155]]],["her",[1,1,[[11,1,1,0,1,[[323,1,1,0,1]]]],[9832]]],["in",[10,10,[[0,2,2,0,2,[[20,1,1,0,1],[41,1,1,1,2]]],[8,2,2,2,4,[[242,1,1,2,3],[244,1,1,3,4]]],[18,1,1,4,5,[[493,1,1,4,5]]],[23,2,2,5,7,[[750,1,1,5,6],[754,1,1,6,7]]],[25,1,1,7,8,[[837,1,1,7,8]]],[31,1,1,8,9,[[892,1,1,8,9]]],[36,1,1,9,10,[[910,1,1,9,10]]]],[531,1268,7368,7406,14103,19092,19206,21386,22576,22872]]],["into",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4092]]],["of",[8,7,[[9,1,1,0,1,[[282,1,1,0,1]]],[11,1,1,1,2,[[325,1,1,1,2]]],[12,2,1,2,3,[[339,2,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]],[25,2,2,4,6,[[811,1,1,4,5],[824,1,1,5,6]]],[35,1,1,6,7,[[906,1,1,6,7]]]],[8447,9885,10324,19100,20637,21033,22805]]],["or",[1,1,[[13,1,1,0,1,[[384,1,1,0,1]]]],[11572]]],["side",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9788]]],["thee",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8908]]],["therewith",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22330]]],["throughout",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11849]]],["to",[23,19,[[0,1,1,0,1,[[41,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[7,2,1,2,3,[[233,2,1,2,3]]],[8,2,1,3,4,[[247,2,1,3,4]]],[9,1,1,4,5,[[285,1,1,4,5]]],[11,2,2,5,7,[[330,1,1,5,6],[337,1,1,6,7]]],[12,1,1,7,8,[[354,1,1,7,8]]],[13,2,2,8,10,[[372,1,1,8,9],[397,1,1,9,10]]],[20,1,1,10,11,[[660,1,1,10,11]]],[22,1,1,11,12,[[714,1,1,11,12]]],[23,2,2,12,14,[[753,1,1,12,13],[767,1,1,13,14]]],[25,4,2,14,16,[[822,2,1,14,15],[834,2,1,15,16]]],[37,2,2,16,18,[[917,1,1,16,17],[918,1,1,17,18]]],[38,1,1,18,19,[[927,1,1,18,19]]]],[1282,5698,7169,7467,8537,10047,10250,10869,11286,11871,17347,18338,19183,19512,20964,21310,22971,22992,23136]]],["toward",[4,3,[[22,3,2,0,2,[[707,1,1,0,1],[744,2,1,1,2]]],[23,1,1,2,3,[[756,1,1,2,3]]]],[18206,18936,19252]]],["unto",[8,8,[[0,2,2,0,2,[[16,1,1,0,1],[41,1,1,1,2]]],[10,2,2,2,4,[[298,1,1,2,3],[312,1,1,3,4]]],[13,2,2,4,6,[[376,1,1,4,5],[384,1,1,5,6]]],[23,2,2,6,8,[[784,1,1,6,7],[796,1,1,7,8]]]],[420,1259,9000,9504,11405,11565,19948,20308]]],["upon",[7,7,[[4,1,1,0,1,[[180,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[11,1,1,2,3,[[337,1,1,2,3]]],[18,1,1,3,4,[[544,1,1,3,4]]],[23,2,2,4,6,[[783,1,1,4,5],[796,1,1,5,6]]],[25,1,1,6,7,[[822,1,1,6,7]]]],[5619,9076,10228,14894,19928,20285,20956]]],["with",[695,603,[[0,111,98,0,98,[[4,2,2,0,2],[5,5,4,2,6],[6,3,3,6,9],[7,5,4,9,13],[8,8,5,13,18],[10,1,1,18,19],[11,1,1,19,20],[12,1,1,20,21],[13,7,6,21,27],[14,1,1,27,28],[16,6,6,28,34],[18,2,2,34,36],[19,2,1,36,37],[20,1,1,37,38],[21,1,1,38,39],[22,1,1,39,40],[23,4,4,40,44],[25,2,2,44,46],[26,1,1,46,47],[27,1,1,47,48],[29,2,2,48,50],[30,1,1,50,51],[31,1,1,51,52],[32,1,1,52,53],[33,9,9,53,62],[34,3,3,62,65],[36,3,1,65,66],[38,5,5,66,71],[39,2,2,71,73],[40,1,1,73,74],[41,4,4,74,78],[42,8,6,78,84],[43,6,5,84,89],[44,2,2,89,91],[45,4,3,91,94],[48,1,1,94,95],[49,3,3,95,98]]],[1,32,28,98,126,[[50,2,2,98,100],[51,4,2,100,102],[55,1,1,102,103],[61,2,2,103,105],[62,1,1,105,106],[66,1,1,106,107],[67,1,1,107,108],[69,1,1,108,109],[74,2,2,109,111],[77,2,2,111,113],[78,2,1,113,114],[80,2,2,114,116],[83,7,6,116,122],[84,2,2,122,124],[87,1,1,124,125],[89,1,1,125,126]]],[2,25,23,126,149,[[90,1,1,126,127],[95,1,1,127,128],[97,4,3,128,131],[99,3,3,131,134],[104,1,1,134,135],[105,1,1,135,136],[107,1,1,136,137],[108,3,3,137,140],[109,7,6,140,146],[115,3,3,146,149]]],[3,33,30,149,179,[[117,2,2,149,151],[119,1,1,151,152],[121,2,2,152,154],[123,1,1,154,155],[124,1,1,155,156],[126,1,1,156,157],[127,1,1,157,158],[130,1,1,158,159],[131,2,2,159,161],[132,1,1,161,162],[134,8,5,162,167],[136,1,1,167,168],[138,2,2,168,170],[139,2,2,170,172],[141,1,1,172,173],[142,2,2,173,175],[143,1,1,175,176],[148,2,2,176,178],[151,1,1,178,179]]],[4,15,12,179,191,[[157,3,2,179,181],[160,1,1,181,182],[163,1,1,182,183],[164,1,1,183,184],[167,1,1,184,185],[171,1,1,185,186],[181,5,3,186,189],[183,2,2,189,191]]],[5,66,41,191,232,[[188,1,1,191,192],[192,3,3,192,195],[194,2,2,195,197],[196,4,3,197,200],[197,1,1,200,201],[199,1,1,201,202],[200,1,1,202,203],[201,1,1,203,204],[207,49,25,204,229],[208,2,2,229,231],[210,1,1,231,232]]],[6,30,26,232,258,[[211,7,5,232,237],[212,1,1,237,238],[214,1,1,238,239],[217,6,5,239,244],[218,4,3,244,247],[219,4,4,247,251],[222,1,1,251,252],[223,1,1,252,253],[224,1,1,253,254],[226,1,1,254,255],[227,2,2,255,257],[229,1,1,257,258]]],[7,4,4,258,262,[[232,2,2,258,260],[233,1,1,260,261],[234,1,1,261,262]]],[8,32,32,262,294,[[237,3,3,262,265],[241,2,2,265,267],[244,1,1,267,268],[247,2,2,268,270],[248,1,1,270,271],[249,2,2,271,273],[251,1,1,273,274],[252,1,1,274,275],[255,1,1,275,276],[256,1,1,276,277],[257,3,3,277,280],[258,1,1,280,281],[259,1,1,281,282],[260,2,2,282,284],[261,2,2,284,286],[263,1,1,286,287],[264,3,3,287,290],[265,4,4,290,294]]],[9,53,52,294,346,[[267,2,2,294,296],[269,9,8,296,304],[272,1,1,304,305],[273,2,2,305,307],[276,1,1,307,308],[277,2,2,308,310],[278,1,1,310,311],[279,2,2,311,313],[280,1,1,313,314],[281,9,9,314,323],[282,5,5,323,328],[283,7,7,328,335],[284,1,1,335,336],[285,7,7,336,343],[286,1,1,343,344],[287,1,1,344,345],[290,1,1,345,346]]],[10,27,23,346,369,[[291,2,2,346,348],[293,2,2,348,350],[297,1,1,350,351],[298,1,1,351,352],[301,2,2,352,354],[302,5,4,354,358],[303,7,5,358,363],[305,1,1,363,364],[308,1,1,364,365],[310,1,1,365,366],[311,1,1,366,367],[312,3,2,367,369]]],[11,33,29,369,398,[[313,2,1,369,370],[314,1,1,370,371],[315,4,4,371,375],[316,1,1,375,376],[318,5,4,376,380],[320,1,1,380,381],[321,1,1,381,382],[322,4,3,382,385],[323,1,1,385,386],[324,1,1,386,387],[325,1,1,387,388],[327,2,2,388,390],[329,2,2,390,392],[330,1,1,392,393],[334,1,1,393,394],[335,2,2,394,396],[337,3,2,396,398]]],[12,5,4,398,402,[[339,2,1,398,399],[353,1,1,399,400],[357,1,1,400,401],[366,1,1,401,402]]],[13,15,12,402,414,[[372,1,1,402,403],[376,4,3,403,406],[379,2,1,406,407],[382,1,1,407,408],[384,2,1,408,409],[388,2,2,409,411],[389,1,1,411,412],[395,2,2,412,414]]],[14,1,1,414,415,[[410,1,1,414,415]]],[15,3,3,415,418,[[425,3,3,415,418]]],[16,4,4,418,422,[[427,2,2,418,420],[428,1,1,420,421],[434,1,1,421,422]]],[17,4,4,422,426,[[437,1,1,422,423],[449,1,1,423,424],[454,1,1,424,425],[471,1,1,425,426]]],[18,10,10,426,436,[[489,1,1,426,427],[498,1,1,427,428],[511,1,1,428,429],[512,1,1,429,430],[555,1,1,430,431],[582,1,1,431,432],[602,1,1,432,433],[604,1,1,433,434],[618,1,1,434,435],[620,1,1,435,436]]],[19,21,19,436,455,[[628,2,2,436,438],[629,1,1,438,439],[630,1,1,439,440],[632,1,1,440,441],[634,1,1,441,442],[635,2,2,442,444],[638,1,1,444,445],[640,2,2,445,447],[643,3,2,447,449],[649,2,1,449,450],[650,2,2,450,452],[651,1,1,452,453],[652,1,1,453,454],[656,1,1,454,455]]],[21,2,1,455,456,[[674,2,1,455,456]]],[22,33,27,456,483,[[692,1,1,456,457],[697,1,1,457,458],[701,1,1,458,459],[706,3,2,459,461],[712,1,1,461,462],[714,1,1,462,463],[715,1,1,463,464],[718,1,1,464,465],[719,1,1,465,466],[721,2,2,466,468],[723,2,1,468,469],[727,2,1,469,470],[728,1,1,470,471],[731,4,2,471,473],[735,1,1,473,474],[737,2,2,474,476],[738,1,1,476,477],[740,1,1,477,478],[741,2,2,478,480],[743,1,1,480,481],[744,3,2,481,483]]],[23,61,52,483,535,[[745,2,2,483,485],[746,2,1,485,486],[747,2,1,486,487],[749,1,1,487,488],[752,1,1,488,489],[755,1,1,489,490],[756,3,2,490,492],[758,1,1,492,493],[759,2,2,493,495],[760,1,1,495,496],[763,1,1,496,497],[764,1,1,497,498],[765,1,1,498,499],[768,1,1,499,500],[770,2,2,500,502],[771,1,1,502,503],[773,2,2,503,505],[774,1,1,505,506],[775,4,3,506,509],[776,1,1,509,510],[777,4,2,510,512],[778,3,3,512,515],[782,1,1,515,516],[784,4,3,516,519],[785,9,7,519,526],[786,2,2,526,528],[787,2,2,528,530],[790,1,1,530,531],[794,1,1,531,532],[795,1,1,532,533],[796,2,2,533,535]]],[25,58,51,535,586,[[803,1,1,535,536],[804,4,4,536,540],[807,2,1,540,541],[811,1,1,541,542],[817,4,4,542,546],[818,3,3,546,549],[821,4,3,549,552],[823,1,1,552,553],[824,5,5,553,558],[827,2,1,558,559],[831,2,2,559,561],[832,5,4,561,565],[833,13,10,565,575],[835,2,2,575,577],[838,2,2,577,579],[839,5,5,579,584],[840,1,1,584,585],[848,1,1,585,586]]],[26,1,1,586,587,[[850,1,1,586,587]]],[27,3,3,587,590,[[866,1,1,587,588],[868,1,1,588,589],[873,1,1,589,590]]],[28,1,1,590,591,[[877,1,1,590,591]]],[29,1,1,591,592,[[883,1,1,591,592]]],[34,1,1,592,593,[[905,1,1,592,593]]],[35,1,1,593,594,[[906,1,1,593,594]]],[36,3,3,594,597,[[909,1,1,594,595],[910,2,2,595,597]]],[37,3,3,597,600,[[911,1,1,597,598],[920,1,1,598,599],[921,1,1,599,600]]],[38,3,3,600,603,[[926,3,3,600,603]]]],[127,129,146,150,155,156,166,172,182,184,199,200,201,213,214,215,216,217,297,302,323,338,341,344,345,353,360,378,400,401,416,418,419,424,490,491,511,533,550,579,623,631,640,646,702,716,742,777,859,863,898,935,975,985,986,988,989,990,996,1001,1002,1003,1024,1025,1026,1085,1151,1152,1157,1170,1172,1176,1179,1207,1256,1265,1284,1285,1293,1294,1295,1298,1306,1322,1334,1347,1350,1354,1358,1359,1373,1392,1393,1401,1503,1513,1519,1520,1533,1539,1575,1578,1659,1854,1864,1886,1988,2021,2074,2217,2234,2294,2334,2357,2426,2438,2523,2525,2528,2529,2530,2531,2554,2555,2656,2710,2757,2859,2919,2924,2947,2986,2991,2992,3171,3216,3273,3301,3314,3315,3328,3329,3330,3331,3336,3338,3533,3563,3568,3608,3609,3693,3805,3811,3939,3965,4017,4041,4117,4167,4169,4204,4258,4259,4264,4268,4276,4324,4395,4415,4429,4433,4485,4492,4499,4575,4737,4748,4852,5056,5077,5140,5210,5252,5322,5411,5680,5693,5694,5735,5744,5888,5959,5966,5976,6007,6013,6065,6068,6088,6125,6175,6199,6265,6389,6392,6394,6395,6396,6397,6398,6399,6402,6403,6404,6405,6406,6408,6409,6410,6411,6412,6413,6415,6416,6417,6418,6419,6420,6441,6456,6484,6512,6525,6526,6528,6530,6546,6612,6695,6696,6698,6712,6713,6720,6723,6726,6786,6787,6789,6802,6873,6903,6920,6964,6982,6991,7028,7137,7145,7172,7174,7253,7259,7262,7342,7346,7394,7462,7467,7507,7525,7528,7600,7627,7771,7773,7790,7793,7810,7833,7857,7876,7890,7907,7911,7943,7970,7973,7977,7982,7987,7999,8001,8033,8039,8093,8094,8097,8101,8102,8104,8108,8112,8159,8187,8192,8259,8268,8276,8303,8343,8344,8375,8400,8401,8403,8408,8411,8413,8416,8419,8422,8440,8441,8443,8444,8447,8451,8457,8459,8461,8465,8471,8478,8479,8518,8528,8542,8544,8545,8547,8549,8569,8595,8694,8758,8761,8817,8834,8948,8990,9109,9125,9157,9159,9161,9172,9191,9199,9200,9202,9203,9268,9373,9409,9459,9484,9511,9548,9567,9583,9588,9596,9602,9616,9677,9678,9690,9706,9755,9771,9795,9799,9809,9837,9865,9894,9944,9950,9998,10021,10055,10152,10167,10183,10247,10250,10329,10836,10931,11172,11300,11401,11403,11405,11472,11512,11572,11649,11656,11663,11815,11820,12220,12680,12682,12688,12733,12744,12748,12863,12904,13186,13301,13743,14068,14197,14391,14411,15121,15615,16115,16126,16280,16295,16411,16415,16434,16487,16534,16576,16620,16633,16690,16757,16767,16847,16859,17039,17045,17055,17080,17122,17233,17590,17948,18027,18094,18179,18182,18317,18346,18361,18430,18455,18507,18510,18570,18640,18670,18720,18723,18780,18812,18821,18830,18865,18869,18877,18920,18932,18938,18954,18965,18974,19011,19076,19161,19236,19250,19254,19314,19329,19335,19344,19417,19433,19442,19525,19594,19596,19614,19651,19658,19678,19722,19723,19724,19736,19780,19796,19804,19809,19814,19920,19945,19946,19947,19958,19959,19960,19964,19968,19970,19973,19983,19986,20003,20009,20073,20205,20271,20290,20308,20498,20505,20524,20526,20529,20572,20637,20770,20821,20822,20824,20838,20841,20845,20930,20931,20939,20987,21015,21030,21032,21036,21044,21120,21209,21215,21234,21246,21247,21248,21266,21267,21269,21272,21273,21275,21276,21277,21278,21280,21316,21343,21416,21423,21430,21431,21434,21440,21447,21452,21701,21756,22159,22183,22255,22331,22437,22781,22790,22853,22859,22860,22884,23025,23038,23107,23108,23109]]],["yea",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13131]]]]},{"k":"H855","v":[["*",[5,5,[[8,2,2,0,2,[[248,2,2,0,2]]],[22,1,1,2,3,[[680,1,1,2,3]]],[28,1,1,3,4,[[878,1,1,3,4]]],[32,1,1,4,5,[[896,1,1,4,5]]]],[7505,7506,17689,22353,22623]]],["coulter",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7505]]],["coulters",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7506]]],["plowshares",[3,3,[[22,1,1,0,1,[[680,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]],[32,1,1,2,3,[[896,1,1,2,3]]]],[17689,22353,22623]]]]},{"k":"H856","v":[["Ethbaal",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9314]]]]},{"k":"H857","v":[["*",[21,20,[[4,2,2,0,2,[[185,2,2,0,2]]],[17,4,4,2,6,[[438,1,1,2,3],[451,1,1,3,4],[465,1,1,4,5],[472,1,1,5,6]]],[18,1,1,6,7,[[545,1,1,6,7]]],[19,1,1,7,8,[[628,1,1,7,8]]],[22,10,9,8,17,[[699,3,2,8,10],[719,3,3,10,13],[722,1,1,13,14],[723,1,1,14,15],[734,2,2,15,17]]],[23,2,2,17,19,[[747,1,1,17,18],[756,1,1,18,19]]],[32,1,1,19,20,[[896,1,1,19,20]]]],[5812,5831,12929,13260,13571,13791,14931,16427,18047,18049,18456,18474,18476,18540,18572,18762,18765,19024,19258,22628]]],["Come",[1,1,[[22,1,1,0,1,[[734,1,1,0,1]]]],[18765]]],["brought",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18049]]],["came",[4,4,[[4,2,2,0,2,[[185,2,2,0,2]]],[17,1,1,2,3,[[465,1,1,2,3]]],[22,1,1,3,4,[[719,1,1,3,4]]]],[5812,5831,13571,18456]]],["come",[9,9,[[17,1,1,0,1,[[451,1,1,0,1]]],[22,5,5,1,6,[[699,1,1,1,2],[719,2,2,2,4],[723,1,1,4,5],[734,1,1,5,6]]],[23,2,2,6,8,[[747,1,1,6,7],[756,1,1,7,8]]],[32,1,1,8,9,[[896,1,1,8,9]]]],[13260,18047,18474,18476,18572,18762,19024,19258,22628]]],["cometh",[3,3,[[17,1,1,0,1,[[472,1,1,0,1]]],[19,1,1,1,2,[[628,1,1,1,2]]],[22,1,1,2,3,[[699,1,1,2,3]]]],[13791,16427,18047]]],["coming",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18540]]],["out",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14931]]],["upon",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12929]]]]},{"k":"H858","v":[["*",[16,15,[[14,3,3,0,3,[[406,1,1,0,1],[407,2,2,1,3]]],[26,13,12,3,15,[[852,4,3,3,6],[854,4,4,6,10],[855,3,3,10,13],[856,2,2,13,15]]]],[12122,12137,12150,21809,21820,21833,21876,21877,21887,21897,21921,21922,21929,21946,21955]]],["+",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21946]]],["bring",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[854,1,1,1,2]]]],[21820,21876]]],["brought",[6,6,[[26,6,6,0,6,[[852,1,1,0,1],[854,2,2,1,3],[855,3,3,3,6]]]],[21820,21877,21897,21921,21922,21929]]],["came",[3,3,[[14,2,2,0,2,[[407,2,2,0,2]]],[26,1,1,2,3,[[856,1,1,2,3]]]],[12137,12150,21955]]],["come",[3,3,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,2,2,1,3,[[852,2,2,1,3]]]],[12122,21809,21833]]],["out",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21887]]]]},{"k":"H859","v":[["*",[1086,995,[[0,70,66,0,66,[[2,4,4,0,4],[3,2,2,4,6],[5,2,2,6,8],[6,1,1,8,9],[7,1,1,9,10],[8,1,1,10,11],[11,2,2,11,13],[12,2,2,13,15],[14,1,1,15,16],[15,1,1,16,17],[16,2,1,17,18],[19,1,1,18,19],[20,2,2,19,21],[21,1,1,21,22],[22,2,2,22,24],[23,4,4,24,28],[25,2,2,28,30],[26,4,4,30,34],[27,1,1,34,35],[28,3,3,35,38],[29,2,2,38,40],[30,4,4,40,44],[31,2,2,44,46],[37,1,1,46,47],[38,1,1,47,48],[40,1,1,48,49],[41,9,6,49,55],[42,1,1,55,56],[43,3,3,56,59],[44,4,4,59,63],[48,2,2,63,65],[49,1,1,65,66]]],[1,55,50,66,116,[[51,1,1,66,67],[52,2,2,67,69],[53,2,2,69,71],[54,3,2,71,73],[56,1,1,73,74],[57,1,1,74,75],[58,2,2,75,77],[59,3,3,77,80],[60,1,1,80,81],[61,3,3,81,84],[62,1,1,84,85],[63,2,2,85,87],[65,1,1,87,88],[67,7,5,88,93],[68,4,4,93,97],[69,3,3,97,100],[72,1,1,100,101],[73,1,1,101,102],[74,1,1,102,103],[76,1,1,103,104],[77,2,2,104,106],[79,1,1,106,107],[80,1,1,107,108],[81,2,2,108,110],[82,6,4,110,114],[83,2,2,114,116]]],[2,7,7,116,123,[[99,2,2,116,118],[107,1,1,118,119],[109,1,1,119,120],[114,1,1,120,121],[115,2,2,121,123]]],[3,42,37,123,160,[[117,2,2,123,125],[121,1,1,125,126],[127,4,4,126,130],[130,7,5,130,135],[131,1,1,135,136],[132,5,4,136,140],[134,7,6,140,146],[136,2,2,146,148],[138,2,2,148,150],[143,1,1,150,151],[147,3,2,151,153],[148,1,1,153,154],[149,2,2,154,156],[150,1,1,156,157],[151,3,3,157,160]]],[4,91,81,160,241,[[153,2,2,160,162],[154,2,2,162,164],[155,2,2,164,166],[156,8,8,166,174],[157,4,3,174,177],[158,2,2,177,179],[159,4,4,179,183],[161,5,4,183,187],[163,5,5,187,192],[164,6,6,192,198],[165,1,1,198,199],[166,4,4,199,203],[167,2,2,203,205],[168,2,2,205,207],[170,3,2,207,209],[172,1,1,209,210],[173,1,1,210,211],[175,1,1,211,212],[176,1,1,212,213],[177,1,1,213,214],[178,1,1,214,215],[180,17,12,215,227],[181,3,3,227,230],[182,5,5,230,235],[183,5,3,235,238],[184,2,2,238,240],[185,1,1,240,241]]],[5,35,33,241,274,[[187,4,4,241,245],[188,1,1,245,246],[189,2,2,246,248],[191,2,2,248,250],[192,1,1,250,251],[193,1,1,251,252],[194,2,2,252,254],[195,4,4,254,258],[196,2,2,258,260],[199,1,1,260,261],[200,2,2,261,263],[203,2,2,263,265],[204,2,2,265,267],[208,3,2,267,269],[209,2,2,269,271],[210,4,3,271,274]]],[6,42,40,274,314,[[212,1,1,274,275],[214,2,2,275,277],[216,4,3,277,280],[217,3,2,280,282],[218,2,2,282,284],[219,7,7,284,291],[220,2,2,291,293],[221,7,7,293,300],[222,2,2,300,302],[223,2,2,302,304],[224,2,2,304,306],[225,2,2,306,308],[227,1,1,308,309],[228,4,4,309,313],[231,1,1,313,314]]],[7,7,6,314,320,[[234,4,3,314,317],[235,3,3,317,320]]],[8,57,52,320,372,[[242,1,1,320,321],[243,2,2,321,323],[244,1,1,323,324],[245,1,1,324,325],[247,3,3,325,328],[248,1,1,328,329],[249,1,1,329,330],[250,4,3,330,333],[251,1,1,333,334],[252,6,6,334,340],[254,2,2,340,342],[255,4,4,342,346],[256,1,1,346,347],[257,4,4,347,351],[258,2,2,351,353],[259,5,4,353,357],[260,2,2,357,359],[261,4,4,359,363],[263,7,6,363,369],[264,3,2,369,371],[265,2,1,371,372]]],[9,47,43,372,415,[[267,2,2,372,374],[268,2,2,374,376],[269,1,1,376,377],[271,3,1,377,378],[273,6,6,378,384],[275,3,3,384,387],[277,1,1,387,388],[278,2,2,388,390],[279,2,2,390,392],[281,4,3,392,395],[282,1,1,395,396],[283,3,3,396,399],[284,3,3,399,402],[285,7,6,402,408],[286,5,5,408,413],[287,1,1,413,414],[288,1,1,414,415]]],[10,57,54,415,469,[[291,5,5,415,420],[292,6,6,420,426],[293,2,2,426,428],[295,4,3,428,431],[296,1,1,431,432],[298,9,8,432,440],[299,2,2,440,442],[301,1,1,442,443],[302,4,4,443,447],[303,1,1,447,448],[304,3,3,448,451],[307,1,1,451,452],[308,11,10,452,462],[310,3,3,462,465],[311,3,3,465,468],[312,1,1,468,469]]],[11,23,20,469,489,[[313,2,2,469,471],[315,1,1,471,472],[316,4,4,472,476],[318,1,1,476,477],[320,1,1,477,478],[321,2,2,478,480],[322,4,3,480,483],[326,1,1,483,484],[331,6,4,484,488],[332,1,1,488,489]]],[12,17,14,489,503,[[348,3,1,489,490],[352,3,2,490,492],[354,6,6,492,498],[365,2,2,498,500],[366,3,3,500,503]]],[13,41,37,503,540,[[367,2,2,503,505],[368,1,1,505,506],[372,9,8,506,514],[373,2,2,514,516],[376,3,3,516,519],[378,1,1,519,520],[379,3,2,520,522],[380,1,1,522,523],[381,1,1,523,524],[384,1,1,524,525],[385,1,1,525,526],[386,4,3,526,529],[387,1,1,529,530],[390,2,2,530,532],[391,2,2,532,534],[394,3,2,534,536],[395,1,1,536,537],[396,1,1,537,538],[398,1,1,538,539],[401,1,1,539,540]]],[14,5,5,540,545,[[410,1,1,540,541],[411,3,3,541,544],[412,1,1,544,545]]],[15,30,24,545,569,[[413,1,1,545,546],[414,5,4,546,550],[417,5,5,550,555],[418,5,2,555,557],[421,11,9,557,566],[425,3,3,566,569]]],[16,3,3,569,572,[[428,1,1,569,570],[429,1,1,570,571],[433,1,1,571,572]]],[17,15,15,572,587,[[436,1,1,572,573],[440,1,1,573,574],[443,2,2,574,576],[446,2,2,576,578],[447,1,1,578,579],[448,1,1,579,580],[450,1,1,580,581],[452,1,1,581,582],[454,1,1,582,583],[462,1,1,583,584],[467,1,1,584,585],[469,2,2,585,587]]],[18,119,112,587,699,[[479,1,1,587,588],[480,1,1,588,589],[481,1,1,589,590],[482,2,2,590,592],[483,1,1,592,593],[487,2,1,593,594],[489,1,1,594,595],[493,2,2,595,597],[495,2,2,597,599],[499,4,4,599,603],[500,1,1,603,604],[502,2,2,604,606],[508,3,3,606,609],[509,2,2,609,611],[515,1,1,611,612],[516,1,1,612,613],[517,4,4,613,617],[518,1,1,617,618],[520,1,1,618,619],[521,2,2,619,621],[527,1,1,621,622],[532,2,2,622,624],[533,1,1,624,625],[536,2,2,625,627],[537,1,1,627,628],[538,1,1,628,629],[539,1,1,629,630],[540,1,1,630,631],[542,1,1,631,632],[545,1,1,632,633],[546,3,3,633,636],[547,1,1,636,637],[548,4,4,637,641],[551,7,5,641,646],[553,3,2,646,648],[554,1,1,648,649],[559,2,2,649,651],[560,1,1,651,652],[562,1,1,652,653],[563,6,5,653,658],[566,8,7,658,665],[567,2,2,665,667],[568,1,1,667,668],[569,1,1,668,669],[570,1,1,669,670],[574,1,1,670,671],[576,3,2,671,673],[579,4,4,673,677],[586,3,3,677,680],[587,1,1,680,681],[592,1,1,681,682],[595,1,1,682,683],[596,7,7,683,690],[609,1,1,690,691],[616,3,3,691,694],[617,1,1,694,695],[619,2,2,695,697],[620,1,1,697,698],[622,1,1,698,699]]],[19,9,9,699,708,[[634,1,1,699,700],[649,1,1,700,701],[650,3,3,701,704],[651,1,1,704,705],[652,1,1,705,706],[653,1,1,706,707],[658,1,1,707,708]]],[20,4,4,708,712,[[663,1,1,708,709],[665,1,1,709,710],[667,2,2,710,712]]],[21,1,1,712,713,[[676,1,1,712,713]]],[22,52,45,713,758,[[681,1,1,713,714],[685,2,2,714,716],[692,3,3,716,719],[703,1,1,719,720],[705,1,1,720,721],[711,1,1,721,722],[715,6,4,722,726],[716,2,2,726,728],[719,5,5,728,733],[720,1,1,733,734],[721,4,4,734,738],[722,4,3,738,741],[723,1,1,741,742],[726,2,2,742,744],[727,1,1,744,745],[729,4,4,745,749],[735,2,2,749,751],[739,1,1,751,752],[741,2,1,752,753],[742,3,2,753,755],[743,5,3,755,758]]],[23,103,98,758,856,[[745,3,3,758,761],[746,4,3,761,764],[747,3,3,764,767],[748,1,1,767,768],[749,1,1,768,769],[751,4,4,769,773],[754,1,1,773,774],[755,1,1,774,775],[756,4,4,775,779],[757,2,2,779,781],[758,3,2,781,783],[759,3,3,783,786],[760,2,2,786,788],[761,3,3,788,791],[762,2,2,791,793],[764,2,1,793,794],[765,1,1,794,795],[766,4,4,795,799],[767,1,1,799,800],[768,1,1,800,801],[769,2,2,801,803],[770,2,1,803,804],[771,3,3,804,807],[772,2,2,807,809],[773,3,3,809,812],[774,1,1,812,813],[775,1,1,813,814],[776,5,5,814,819],[777,1,1,819,820],[778,3,3,820,823],[779,2,2,823,825],[780,3,3,825,828],[781,1,1,828,829],[782,4,4,829,833],[783,1,1,833,834],[784,2,2,834,836],[786,6,5,836,841],[787,1,1,841,842],[788,6,6,842,848],[789,1,1,848,849],[790,2,2,849,851],[792,1,1,851,852],[793,1,1,852,853],[794,1,1,853,854],[795,2,2,854,856]]],[24,3,3,856,859,[[797,1,1,856,857],[799,1,1,857,858],[801,1,1,858,859]]],[25,91,82,859,941,[[803,3,2,859,861],[804,6,4,861,865],[805,5,4,865,869],[806,1,1,869,870],[808,1,1,870,871],[809,1,1,871,872],[810,1,1,872,873],[812,2,2,873,875],[813,4,4,875,879],[814,4,3,879,882],[817,9,7,882,889],[819,1,1,889,890],[820,1,1,890,891],[821,7,6,891,897],[822,6,6,897,903],[823,2,2,903,905],[824,1,1,905,906],[825,2,2,906,908],[828,2,2,908,910],[829,6,6,910,916],[833,2,2,916,918],[834,6,5,918,923],[835,2,2,923,925],[836,1,1,925,926],[837,3,3,926,929],[838,2,2,929,931],[839,5,5,931,936],[840,3,3,936,939],[841,1,1,939,940],[844,1,1,940,941]]],[26,4,4,941,945,[[857,1,1,941,942],[858,1,1,942,943],[861,2,2,943,945]]],[27,6,6,945,951,[[862,2,2,945,947],[863,1,1,947,948],[865,2,2,948,950],[873,1,1,950,951]]],[28,3,1,951,952,[[878,3,1,951,952]]],[29,5,5,952,957,[[885,3,3,952,955],[886,1,1,955,956],[887,1,1,956,957]]],[30,3,3,957,960,[[888,3,3,957,960]]],[31,4,4,960,964,[[889,2,2,960,962],[892,2,2,962,964]]],[32,5,4,964,968,[[896,1,1,964,965],[897,1,1,965,966],[898,3,2,966,968]]],[33,2,1,968,969,[[902,2,1,968,969]]],[34,3,3,969,972,[[903,1,1,969,970],[904,2,2,970,972]]],[35,1,1,972,973,[[907,1,1,972,973]]],[36,3,3,973,976,[[909,2,2,973,975],[910,1,1,975,976]]],[37,10,10,976,986,[[911,1,1,976,977],[912,1,1,977,978],[913,2,2,978,980],[914,2,2,980,982],[915,1,1,982,983],[916,1,1,983,984],[917,1,1,984,985],[919,1,1,985,986]]],[38,11,9,986,995,[[925,2,2,986,988],[926,2,2,988,990],[927,7,5,990,995]]]],[66,69,70,74,86,90,155,158,160,199,212,309,311,332,333,375,394,406,502,535,539,559,577,584,614,635,638,651,719,721,745,748,751,759,786,799,809,810,856,859,879,916,917,925,940,945,1142,1158,1235,1261,1266,1268,1271,1285,1286,1298,1334,1341,1351,1366,1368,1369,1377,1476,1481,1526,1568,1584,1597,1617,1626,1643,1649,1687,1712,1744,1772,1781,1788,1802,1814,1829,1838,1847,1871,1903,1905,1955,2013,2016,2017,2018,2020,2030,2032,2049,2050,2061,2070,2073,2153,2178,2235,2292,2294,2296,2405,2433,2460,2468,2474,2476,2478,2485,2506,2508,2986,2991,3277,3342,3492,3536,3558,3607,3654,3812,4039,4041,4045,4053,4117,4122,4138,4140,4149,4192,4205,4210,4211,4235,4258,4259,4260,4264,4285,4288,4319,4325,4394,4409,4567,4683,4690,4724,4811,4815,4818,4855,4878,4879,4929,4932,4942,4956,4996,4999,5008,5009,5016,5018,5026,5030,5037,5039,5067,5080,5084,5087,5088,5112,5117,5118,5130,5158,5159,5162,5163,5216,5218,5219,5237,5239,5241,5242,5247,5252,5258,5269,5278,5291,5292,5311,5316,5325,5339,5353,5356,5393,5398,5430,5456,5520,5536,5565,5577,5614,5617,5623,5627,5630,5632,5647,5654,5655,5663,5674,5675,5681,5689,5695,5710,5716,5724,5726,5727,5735,5741,5751,5805,5808,5839,5853,5857,5862,5865,5881,5896,5901,5947,5949,5967,5986,6006,6009,6044,6045,6059,6060,6083,6089,6155,6193,6199,6290,6292,6296,6299,6428,6444,6463,6469,6489,6491,6498,6547,6608,6621,6664,6671,6685,6704,6712,6740,6741,6764,6766,6768,6769,6772,6786,6790,6824,6826,6831,6836,6838,6852,6854,6856,6864,6873,6874,6887,6895,6912,6922,6941,6947,6982,6996,7001,7002,7011,7124,7181,7182,7188,7196,7199,7200,7355,7374,7386,7418,7437,7474,7480,7485,7496,7548,7566,7573,7577,7596,7626,7651,7661,7663,7674,7676,7709,7717,7738,7753,7760,7761,7773,7800,7803,7805,7810,7827,7831,7850,7853,7856,7857,7867,7894,7919,7920,7921,7930,7943,7944,7951,7954,7961,7964,7973,7976,7991,8030,8035,8054,8069,8106,8134,8185,8200,8204,8207,8208,8209,8229,8234,8237,8269,8293,8298,8321,8330,8391,8408,8416,8434,8452,8455,8457,8491,8498,8500,8521,8523,8524,8525,8540,8544,8558,8560,8563,8571,8573,8584,8631,8730,8734,8737,8741,8759,8775,8779,8785,8792,8796,8814,8822,8823,8881,8884,8887,8908,9004,9015,9017,9019,9021,9024,9028,9038,9055,9057,9130,9155,9157,9160,9161,9198,9220,9224,9230,9341,9348,9350,9352,9355,9358,9359,9362,9366,9377,9378,9422,9433,9448,9457,9458,9470,9510,9536,9539,9593,9604,9610,9619,9626,9696,9728,9767,9781,9799,9802,9806,9906,10071,10072,10076,10080,10099,10675,10803,10804,10867,10881,10885,10888,10889,10890,11146,11152,11174,11176,11181,11202,11203,11227,11291,11303,11305,11307,11309,11312,11315,11323,11341,11343,11401,11404,11405,11442,11461,11464,11486,11497,11571,11582,11593,11594,11602,11639,11682,11697,11712,11723,11774,11777,11799,11834,11885,11987,12229,12248,12250,12252,12262,12304,12309,12311,12324,12326,12389,12390,12391,12393,12394,12407,12409,12517,12518,12519,12528,12530,12538,12539,12542,12544,12688,12689,12692,12750,12776,12825,12879,12978,13034,13035,13121,13124,13130,13157,13207,13274,13318,13493,13634,13715,13716,13952,13960,13973,13977,13985,13988,14055,14073,14094,14097,14145,14146,14207,14213,14214,14223,14239,14256,14258,14334,14335,14345,14360,14362,14505,14521,14530,14534,14536,14542,14552,14568,14573,14575,14685,14745,14755,14763,14795,14798,14817,14824,14839,14840,14863,14909,14940,14954,14961,14976,14979,14981,14982,14983,15061,15062,15063,15064,15065,15085,15088,15107,15239,15241,15259,15277,15286,15289,15294,15299,15301,15335,15336,15337,15338,15343,15352,15364,15379,15380,15404,15419,15428,15487,15503,15507,15533,15534,15547,15548,15776,15782,15783,15790,15845,15897,15902,15910,15966,16000,16012,16035,16049,16159,16241,16247,16252,16269,16289,16291,16303,16335,16579,17034,17046,17058,17063,17103,17135,17145,17313,17399,17451,17484,17485,17618,17721,17785,17798,17938,17941,17947,18119,18163,18280,18362,18363,18368,18372,18391,18407,18459,18460,18467,18474,18475,18497,18506,18515,18517,18531,18541,18550,18554,18576,18618,18620,18639,18682,18683,18685,18689,18768,18769,18849,18882,18890,18893,18908,18910,18911,18957,18959,18963,18985,18992,18996,19003,19006,19024,19057,19075,19127,19133,19135,19142,19207,19240,19250,19251,19252,19254,19287,19289,19302,19315,19321,19330,19334,19348,19349,19371,19373,19374,19390,19407,19428,19444,19456,19460,19469,19479,19486,19527,19563,19564,19587,19605,19609,19611,19633,19634,19643,19655,19660,19677,19709,19734,19748,19756,19767,19774,19785,19804,19816,19818,19829,19830,19848,19861,19871,19887,19912,19913,19916,19918,19940,19951,19957,19986,19988,19990,19991,19995,19999,20012,20013,20017,20018,20031,20035,20045,20072,20073,20087,20139,20190,20232,20274,20331,20396,20461,20498,20500,20507,20521,20523,20527,20530,20532,20533,20538,20547,20579,20610,20630,20666,20668,20682,20683,20684,20689,20719,20725,20728,20769,20795,20807,20810,20814,20817,20820,20851,20882,20898,20924,20925,20926,20927,20934,20950,20951,20958,20963,20969,20972,20978,21000,21042,21075,21081,21123,21124,21159,21160,21166,21169,21171,21172,21250,21276,21287,21289,21290,21292,21310,21330,21344,21348,21360,21367,21372,21400,21413,21432,21434,21438,21440,21442,21449,21452,21465,21481,21582,21987,22011,22085,22094,22103,22104,22128,22139,22148,22258,22347,22472,22480,22481,22483,22502,22512,22521,22523,22539,22545,22570,22578,22628,22635,22662,22663,22723,22743,22756,22764,22817,22844,22849,22858,22890,22901,22919,22920,22924,22929,22938,22957,22968,23010,23094,23101,23111,23117,23121,23126,23128,23129,23132]]],["+",[23,23,[[1,3,3,0,3,[[60,1,1,0,1],[62,1,1,1,2],[63,1,1,2,3]]],[3,1,1,3,4,[[130,1,1,3,4]]],[4,1,1,4,5,[[157,1,1,4,5]]],[6,1,1,5,6,[[216,1,1,5,6]]],[7,1,1,6,7,[[235,1,1,6,7]]],[8,1,1,7,8,[[244,1,1,7,8]]],[9,1,1,8,9,[[286,1,1,8,9]]],[10,2,2,9,11,[[304,1,1,9,10],[310,1,1,10,11]]],[11,1,1,11,12,[[321,1,1,11,12]]],[13,5,5,12,17,[[376,1,1,12,13],[381,1,1,13,14],[384,1,1,14,15],[386,1,1,15,16],[390,1,1,16,17]]],[16,1,1,17,18,[[428,1,1,17,18]]],[25,3,3,18,21,[[817,1,1,18,19],[820,1,1,19,20],[821,1,1,20,21]]],[26,2,2,21,23,[[857,1,1,21,22],[861,1,1,22,23]]]],[1814,1871,1905,4117,5080,6671,7196,7418,8560,9224,9433,9781,11405,11497,11571,11602,11697,12750,20814,20882,20925,21987,22094]]],["Thou",[97,96,[[0,5,5,0,5,[[15,1,1,0,1],[16,1,1,1,2],[23,1,1,2,3],[29,1,1,3,4],[40,1,1,4,5]]],[1,2,2,5,7,[[56,1,1,5,6],[59,1,1,6,7]]],[3,2,2,7,9,[[134,1,1,7,8],[136,1,1,8,9]]],[4,3,3,9,12,[[153,1,1,9,10],[154,1,1,10,11],[161,1,1,11,12]]],[5,3,3,12,15,[[199,1,1,12,13],[200,1,1,13,14],[203,1,1,14,15]]],[6,2,2,15,17,[[219,1,1,15,16],[225,1,1,16,17]]],[8,2,2,17,19,[[252,1,1,17,18],[259,1,1,18,19]]],[9,5,5,19,24,[[271,1,1,19,20],[275,1,1,20,21],[278,1,1,21,22],[284,1,1,22,23],[285,1,1,23,24]]],[10,5,5,24,29,[[292,2,2,24,26],[293,1,1,26,27],[295,1,1,27,28],[310,1,1,28,29]]],[12,2,2,29,31,[[348,1,1,29,30],[354,1,1,30,31]]],[13,1,1,31,32,[[367,1,1,31,32]]],[15,2,2,32,34,[[421,2,2,32,34]]],[17,1,1,34,35,[[452,1,1,34,35]]],[18,28,28,35,63,[[479,1,1,35,36],[489,1,1,36,37],[493,1,1,37,38],[508,1,1,38,39],[509,1,1,39,40],[521,1,1,40,41],[536,1,1,41,42],[546,1,1,42,43],[551,4,4,43,47],[553,2,2,47,49],[554,1,1,49,50],[566,3,3,50,53],[579,1,1,53,54],[587,1,1,54,55],[595,1,1,55,56],[596,4,4,56,60],[616,1,1,60,61],[617,1,1,61,62],[619,1,1,62,63]]],[19,3,3,63,66,[[634,1,1,63,64],[650,1,1,64,65],[651,1,1,65,66]]],[21,1,1,66,67,[[676,1,1,66,67]]],[22,3,3,67,70,[[719,1,1,67,68],[727,1,1,68,69],[729,1,1,69,70]]],[23,9,8,70,78,[[745,1,1,70,71],[746,2,1,71,72],[759,1,1,72,73],[766,1,1,73,74],[780,1,1,74,75],[781,1,1,75,76],[787,1,1,76,77],[795,1,1,77,78]]],[24,1,1,78,79,[[801,1,1,78,79]]],[25,11,11,79,90,[[805,1,1,79,80],[817,3,3,80,83],[822,1,1,83,84],[823,1,1,84,85],[829,3,3,85,88],[837,1,1,88,89],[844,1,1,89,90]]],[27,1,1,90,91,[[863,1,1,90,91]]],[29,1,1,91,92,[[885,1,1,91,92]]],[31,1,1,92,93,[[892,1,1,92,93]]],[32,2,2,93,95,[[898,2,2,93,95]]],[33,1,1,95,96,[[902,1,1,95,96]]]],[394,406,651,859,1235,1687,1802,4258,4325,4929,4956,5158,6155,6193,6292,6790,6947,7663,7856,8134,8237,8293,8498,8540,8785,8814,8822,8881,9422,10675,10867,11202,12517,12518,13274,13952,14073,14094,14345,14362,14575,14795,14954,15061,15062,15063,15065,15085,15088,15107,15335,15336,15352,15534,15790,15897,15902,15966,16012,16049,16241,16269,16291,16579,17058,17103,17618,18460,18639,18689,18963,18992,19321,19460,19871,19887,19999,20232,20461,20530,20807,20814,20820,20958,21000,21169,21171,21172,21372,21582,22128,22480,22578,22662,22663,22723]]],["Ye",[39,39,[[0,3,3,0,3,[[41,2,2,0,2],[43,1,1,2,3]]],[1,5,5,3,8,[[54,1,1,3,4],[68,1,1,4,5],[69,1,1,5,6],[81,1,1,6,7],[82,1,1,7,8]]],[2,2,2,8,10,[[107,1,1,8,9],[109,1,1,9,10]]],[3,1,1,10,11,[[132,1,1,10,11]]],[4,4,4,11,15,[[154,1,1,11,12],[166,1,1,12,13],[181,2,2,13,15]]],[5,3,3,15,18,[[204,1,1,15,16],[208,1,1,16,17],[210,1,1,17,18]]],[6,1,1,18,19,[[222,1,1,18,19]]],[7,1,1,19,20,[[235,1,1,19,20]]],[9,1,1,20,21,[[285,1,1,20,21]]],[11,2,2,21,23,[[321,1,1,21,22],[322,1,1,22,23]]],[12,1,1,23,24,[[352,1,1,23,24]]],[13,1,1,24,25,[[378,1,1,24,25]]],[14,2,2,25,27,[[410,1,1,25,26],[412,1,1,26,27]]],[15,2,2,27,29,[[414,1,1,27,28],[417,1,1,28,29]]],[18,1,1,29,30,[[592,1,1,29,30]]],[22,2,2,30,32,[[720,1,1,30,31],[721,1,1,31,32]]],[23,4,4,32,36,[[767,1,1,32,33],[778,1,1,33,34],[788,2,2,34,36]]],[27,1,1,36,37,[[862,1,1,36,37]]],[35,1,1,37,38,[[907,1,1,37,38]]],[38,1,1,38,39,[[927,1,1,38,39]]]],[1261,1266,1351,1649,2030,2073,2468,2478,3277,3342,4235,4942,5291,5681,5689,6299,6428,6498,6873,7199,8523,9767,9802,10803,11442,12229,12262,12324,12389,15845,18497,18515,19486,19818,20012,20035,22104,22817,23129]]],["thee",[13,13,[[1,2,2,0,2,[[58,1,1,0,1],[74,1,1,1,2]]],[4,3,3,2,5,[[156,1,1,2,3],[157,1,1,3,4],[170,1,1,4,5]]],[8,2,2,5,7,[[260,1,1,5,6],[264,1,1,6,7]]],[9,1,1,7,8,[[279,1,1,7,8]]],[10,1,1,8,9,[[311,1,1,8,9]]],[13,2,2,9,11,[[373,1,1,9,10],[401,1,1,10,11]]],[19,1,1,11,12,[[649,1,1,11,12]]],[37,1,1,12,13,[[919,1,1,12,13]]]],[1772,2235,5039,5084,5398,7867,7973,8330,9457,11341,11987,17034,23010]]],["thine",[1,1,[[10,1,1,0,1,[[311,1,1,0,1]]]],[9470]]],["thou",[666,618,[[0,47,47,0,47,[[2,4,4,0,4],[3,2,2,4,6],[5,2,2,6,8],[6,1,1,8,9],[7,1,1,9,10],[11,2,2,10,12],[12,2,2,12,14],[14,1,1,14,15],[16,1,1,15,16],[19,1,1,16,17],[20,2,2,17,19],[21,1,1,19,20],[22,2,2,20,22],[23,3,3,22,25],[25,1,1,25,26],[26,4,4,26,30],[27,1,1,30,31],[28,2,2,31,33],[29,1,1,33,34],[30,3,3,34,37],[31,2,2,37,39],[37,1,1,39,40],[38,1,1,40,41],[42,1,1,41,42],[44,3,3,42,45],[48,2,2,45,47]]],[1,33,29,47,76,[[51,1,1,47,48],[52,2,2,48,50],[53,2,2,50,52],[57,1,1,52,53],[58,1,1,53,54],[59,1,1,54,55],[67,7,5,55,60],[68,2,2,60,62],[69,2,2,62,64],[73,1,1,64,65],[76,1,1,65,66],[77,2,2,66,68],[79,1,1,68,69],[80,1,1,69,70],[81,1,1,70,71],[82,5,3,71,74],[83,2,2,74,76]]],[2,2,2,76,78,[[99,2,2,76,78]]],[3,21,18,78,96,[[117,2,2,78,80],[121,1,1,80,81],[127,4,4,81,85],[130,3,1,85,86],[132,4,3,86,89],[134,3,3,89,92],[136,1,1,92,93],[138,1,1,93,94],[143,1,1,94,95],[147,1,1,95,96]]],[4,59,52,96,148,[[155,2,2,96,98],[156,1,1,98,99],[157,2,2,99,101],[158,1,1,101,102],[159,3,3,102,105],[161,4,3,105,108],[163,2,2,108,110],[164,2,2,110,112],[165,1,1,112,113],[166,3,3,113,116],[167,2,2,116,118],[168,2,2,118,120],[170,2,2,120,122],[173,1,1,122,123],[175,1,1,123,124],[176,1,1,124,125],[177,1,1,125,126],[178,1,1,126,127],[180,17,12,127,139],[182,5,5,139,144],[183,3,2,144,146],[184,1,1,146,147],[185,1,1,147,148]]],[5,8,8,148,156,[[187,2,2,148,150],[189,1,1,150,151],[191,2,2,151,153],[193,1,1,153,154],[200,1,1,154,155],[203,1,1,155,156]]],[6,22,21,156,177,[[214,2,2,156,158],[217,2,1,158,159],[218,2,2,159,161],[219,4,4,161,165],[220,1,1,165,166],[221,5,5,166,171],[222,1,1,171,172],[223,2,2,172,174],[224,1,1,174,175],[227,1,1,175,176],[228,1,1,176,177]]],[7,4,3,177,180,[[234,4,3,177,180]]],[8,40,37,180,217,[[243,1,1,180,181],[248,1,1,181,182],[250,3,2,182,184],[251,1,1,184,185],[252,4,4,185,189],[254,2,2,189,191],[255,3,3,191,194],[256,1,1,194,195],[257,4,4,195,199],[258,1,1,199,200],[259,4,4,200,204],[260,1,1,204,205],[261,3,3,205,208],[263,7,6,208,214],[264,2,2,214,216],[265,2,1,216,217]]],[9,34,32,217,249,[[267,2,2,217,219],[268,1,1,219,220],[269,1,1,220,221],[271,2,1,221,222],[273,6,6,222,228],[275,2,2,228,230],[277,1,1,230,231],[278,1,1,231,232],[279,1,1,232,233],[281,4,3,233,236],[282,1,1,236,237],[283,3,3,237,240],[284,1,1,240,241],[285,3,3,241,244],[286,4,4,244,248],[288,1,1,248,249]]],[10,42,39,249,288,[[291,5,5,249,254],[292,4,4,254,258],[293,1,1,258,259],[295,3,2,259,261],[296,1,1,261,262],[298,9,8,262,270],[299,1,1,270,271],[301,1,1,271,272],[302,2,2,272,274],[303,1,1,274,275],[304,2,2,275,277],[307,1,1,277,278],[308,9,8,278,286],[311,1,1,286,287],[312,1,1,287,288]]],[11,15,13,288,301,[[313,1,1,288,289],[316,4,4,289,293],[318,1,1,293,294],[320,1,1,294,295],[326,1,1,295,296],[331,6,4,296,300],[332,1,1,300,301]]],[12,12,11,301,312,[[348,2,1,301,302],[354,5,5,302,307],[365,2,2,307,309],[366,3,3,309,312]]],[13,18,16,312,328,[[367,1,1,312,313],[368,1,1,313,314],[372,9,8,314,322],[380,1,1,322,323],[386,3,2,323,325],[387,1,1,325,326],[391,2,2,326,328]]],[14,2,2,328,330,[[411,2,2,328,330]]],[15,17,13,330,343,[[414,2,2,330,332],[417,1,1,332,333],[418,5,2,333,335],[421,9,8,335,343]]],[16,1,1,343,344,[[429,1,1,343,344]]],[17,9,9,344,353,[[436,1,1,344,345],[440,1,1,345,346],[443,2,2,346,348],[446,2,2,348,350],[450,1,1,350,351],[469,2,2,351,353]]],[18,88,85,353,438,[[480,1,1,353,354],[481,1,1,354,355],[482,2,2,355,357],[483,1,1,357,358],[487,2,1,358,359],[493,1,1,359,360],[495,1,1,360,361],[499,4,4,361,365],[500,1,1,365,366],[502,2,2,366,368],[508,2,2,368,370],[509,1,1,370,371],[515,1,1,371,372],[516,1,1,372,373],[517,4,4,373,377],[518,1,1,377,378],[520,1,1,378,379],[521,1,1,379,380],[527,1,1,380,381],[532,2,2,381,383],[533,1,1,383,384],[536,1,1,384,385],[537,1,1,385,386],[538,1,1,386,387],[539,1,1,387,388],[540,1,1,388,389],[542,1,1,389,390],[545,1,1,390,391],[546,2,2,391,393],[547,1,1,393,394],[548,4,4,394,398],[551,3,3,398,401],[553,1,1,401,402],[559,1,1,402,403],[560,1,1,403,404],[562,1,1,404,405],[563,6,5,405,410],[566,5,5,410,415],[567,2,2,415,417],[568,1,1,417,418],[569,1,1,418,419],[570,1,1,419,420],[574,1,1,420,421],[576,3,2,421,423],[579,3,3,423,426],[586,3,3,426,429],[596,3,3,429,432],[609,1,1,432,433],[616,2,2,433,435],[619,1,1,435,436],[620,1,1,436,437],[622,1,1,437,438]]],[19,5,5,438,443,[[650,2,2,438,440],[652,1,1,440,441],[653,1,1,441,442],[658,1,1,442,443]]],[20,3,3,443,446,[[663,1,1,443,444],[667,2,2,444,446]]],[22,32,27,446,473,[[685,2,2,446,448],[692,3,3,448,451],[703,1,1,451,452],[711,1,1,452,453],[715,6,4,453,457],[716,2,2,457,459],[719,2,2,459,461],[721,2,2,461,463],[722,3,2,463,465],[723,1,1,465,466],[726,1,1,466,467],[729,3,3,467,470],[741,2,1,470,471],[742,3,2,471,473]]],[23,57,55,473,528,[[745,2,2,473,475],[746,1,1,475,476],[747,3,3,476,479],[748,1,1,479,480],[749,1,1,480,481],[751,1,1,481,482],[754,1,1,482,483],[755,1,1,483,484],[756,4,4,484,488],[757,1,1,488,489],[758,3,2,489,491],[759,2,2,491,493],[761,3,3,493,496],[762,1,1,496,497],[764,2,1,497,498],[766,3,3,498,501],[768,1,1,501,502],[769,1,1,502,503],[771,1,1,503,504],[772,2,2,504,506],[773,1,1,506,507],[774,1,1,507,508],[775,1,1,508,509],[776,3,3,509,512],[778,1,1,512,513],[780,2,2,513,515],[782,4,4,515,519],[783,1,1,519,520],[784,1,1,520,521],[789,1,1,521,522],[790,2,2,522,524],[792,1,1,524,525],[793,1,1,525,526],[794,1,1,526,527],[795,1,1,527,528]]],[24,2,2,528,530,[[797,1,1,528,529],[799,1,1,529,530]]],[25,63,58,530,588,[[803,3,2,530,532],[804,6,4,532,536],[805,4,3,536,539],[806,1,1,539,540],[808,1,1,540,541],[809,1,1,541,542],[810,1,1,542,543],[812,1,1,543,544],[813,4,4,544,548],[814,1,1,548,549],[817,5,5,549,554],[822,5,5,554,559],[823,1,1,559,560],[824,1,1,560,561],[825,2,2,561,563],[828,2,2,563,565],[829,3,3,565,568],[833,2,2,568,570],[834,6,5,570,575],[836,1,1,575,576],[837,1,1,576,577],[838,2,2,577,579],[839,5,5,579,584],[840,3,3,584,587],[841,1,1,587,588]]],[26,2,2,588,590,[[858,1,1,588,589],[861,1,1,589,590]]],[27,3,3,590,593,[[865,2,2,590,592],[873,1,1,592,593]]],[29,3,3,593,596,[[885,2,2,593,595],[886,1,1,595,596]]],[30,3,3,596,599,[[888,3,3,596,599]]],[31,3,3,599,602,[[889,2,2,599,601],[892,1,1,601,602]]],[32,3,3,602,605,[[896,1,1,602,603],[897,1,1,603,604],[898,1,1,604,605]]],[33,1,1,605,606,[[902,1,1,605,606]]],[34,3,3,606,609,[[903,1,1,606,607],[904,2,2,607,609]]],[37,8,8,609,617,[[911,1,1,609,610],[912,1,1,610,611],[913,2,2,611,613],[914,2,2,613,615],[915,1,1,615,616],[916,1,1,616,617]]],[38,1,1,617,618,[[926,1,1,617,618]]]],[66,69,70,74,86,90,155,158,160,199,309,311,332,333,375,406,502,535,539,559,577,584,614,635,638,721,745,748,751,759,786,809,810,856,916,917,925,940,945,1142,1158,1298,1368,1369,1377,1476,1481,1568,1584,1597,1617,1626,1712,1744,1781,2013,2016,2017,2018,2020,2049,2050,2061,2070,2178,2292,2294,2296,2405,2433,2460,2474,2476,2485,2506,2508,2986,2991,3607,3654,3812,4039,4041,4045,4053,4122,4205,4210,4211,4258,4259,4264,4319,4409,4567,4690,4996,4999,5037,5067,5080,5088,5112,5117,5130,5159,5162,5163,5218,5237,5258,5269,5278,5292,5311,5316,5325,5339,5353,5356,5393,5398,5456,5520,5536,5565,5577,5614,5617,5623,5627,5630,5632,5647,5654,5655,5663,5674,5675,5710,5716,5724,5726,5727,5735,5751,5808,5839,5853,5857,5901,5947,5949,5986,6199,6290,6608,6621,6704,6740,6741,6764,6766,6768,6786,6826,6831,6852,6854,6856,6864,6874,6887,6895,6912,6982,6996,7181,7182,7188,7374,7496,7573,7577,7596,7651,7661,7674,7676,7709,7717,7753,7760,7761,7773,7800,7803,7805,7810,7827,7850,7853,7856,7857,7894,7919,7920,7930,7943,7944,7951,7954,7961,7964,7973,7976,7991,8030,8035,8069,8106,8134,8185,8200,8204,8207,8208,8209,8229,8234,8269,8298,8321,8391,8408,8416,8434,8452,8455,8457,8500,8524,8525,8544,8558,8563,8571,8573,8631,8730,8734,8737,8741,8759,8775,8779,8792,8796,8823,8884,8887,8908,9004,9015,9017,9019,9021,9024,9028,9038,9055,9130,9155,9161,9198,9220,9230,9341,9348,9350,9352,9355,9358,9359,9377,9378,9458,9510,9539,9604,9610,9619,9626,9696,9728,9906,10071,10072,10076,10080,10099,10675,10881,10885,10888,10889,10890,11146,11152,11174,11176,11181,11203,11227,11291,11303,11305,11307,11309,11312,11315,11323,11486,11593,11594,11639,11712,11723,12250,12252,12309,12311,12394,12407,12409,12517,12519,12528,12530,12538,12539,12542,12544,12776,12879,12978,13034,13035,13121,13124,13207,13715,13716,13960,13973,13977,13985,13988,14055,14097,14146,14207,14213,14214,14223,14239,14256,14258,14334,14335,14360,14505,14521,14530,14534,14536,14542,14552,14568,14573,14685,14745,14755,14763,14798,14817,14824,14839,14840,14863,14909,14940,14961,14976,14979,14981,14982,14983,15063,15064,15065,15088,15241,15259,15277,15286,15289,15294,15299,15301,15335,15337,15338,15343,15364,15379,15380,15404,15419,15428,15487,15503,15507,15533,15547,15548,15776,15782,15783,15910,16000,16035,16159,16247,16252,16289,16303,16335,17046,17063,17135,17145,17313,17399,17484,17485,17785,17798,17938,17941,17947,18119,18280,18362,18363,18368,18372,18391,18407,18459,18467,18506,18531,18550,18554,18576,18618,18682,18683,18685,18882,18890,18893,18957,18959,18985,19003,19006,19024,19057,19075,19135,19207,19240,19250,19251,19252,19254,19287,19302,19315,19330,19334,19371,19373,19374,19407,19428,19456,19469,19479,19527,19564,19609,19633,19634,19660,19677,19709,19734,19748,19756,19804,19848,19861,19912,19913,19916,19918,19940,19957,20045,20072,20073,20087,20139,20190,20274,20331,20396,20498,20500,20507,20521,20523,20527,20532,20533,20538,20547,20579,20610,20630,20668,20682,20683,20684,20689,20725,20769,20795,20807,20810,20817,20950,20951,20963,20969,20972,20978,21042,21075,21081,21123,21124,21159,21160,21166,21250,21276,21287,21289,21290,21292,21310,21348,21360,21400,21413,21432,21434,21438,21440,21442,21449,21452,21465,21481,22011,22085,22139,22148,22258,22472,22481,22483,22512,22521,22523,22539,22545,22570,22628,22635,22663,22723,22743,22756,22764,22890,22901,22919,22920,22924,22929,22938,22957,23117]]],["thyself",[4,4,[[8,1,1,0,1,[[255,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[10,1,1,2,3,[[310,1,1,2,3]]],[20,1,1,3,4,[[665,1,1,3,4]]]],[7738,8491,9448,17451]]],["wilt",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14145]]],["ye",[227,210,[[0,11,8,0,8,[[25,1,1,0,1],[28,1,1,1,2],[30,1,1,2,3],[41,7,4,3,7],[43,1,1,7,8]]],[1,9,9,8,17,[[54,2,2,8,10],[59,1,1,10,11],[61,2,2,11,13],[63,1,1,13,14],[65,1,1,14,15],[68,1,1,15,16],[72,1,1,16,17]]],[2,3,3,17,20,[[114,1,1,17,18],[115,2,2,18,20]]],[3,15,15,20,35,[[130,2,2,20,22],[131,1,1,22,23],[134,3,3,23,26],[138,1,1,26,27],[147,1,1,27,28],[148,1,1,28,29],[149,2,2,29,31],[150,1,1,31,32],[151,3,3,32,35]]],[4,20,19,35,54,[[156,6,6,35,41],[158,1,1,41,42],[159,1,1,42,43],[163,3,3,43,46],[164,4,4,46,50],[172,1,1,50,51],[181,1,1,51,52],[183,2,1,52,53],[184,1,1,53,54]]],[5,20,19,54,73,[[187,2,2,54,56],[188,1,1,56,57],[189,1,1,57,58],[192,1,1,58,59],[194,2,2,59,61],[195,4,4,61,65],[196,2,2,65,67],[204,1,1,67,68],[208,2,1,68,69],[209,1,1,69,70],[210,3,3,70,73]]],[6,15,14,73,87,[[212,1,1,73,74],[216,3,2,74,76],[217,1,1,76,77],[219,2,2,77,79],[220,1,1,79,80],[221,2,2,80,82],[224,1,1,82,83],[228,3,3,83,86],[231,1,1,86,87]]],[7,1,1,87,88,[[235,1,1,87,88]]],[8,11,11,88,99,[[242,1,1,88,89],[243,1,1,89,90],[245,1,1,90,91],[247,3,3,91,94],[249,1,1,94,95],[250,1,1,95,96],[252,1,1,96,97],[258,1,1,97,98],[261,1,1,98,99]]],[9,4,4,99,103,[[268,1,1,99,100],[285,2,2,100,102],[287,1,1,102,103]]],[10,5,5,103,108,[[299,1,1,103,104],[302,2,2,104,106],[308,2,2,106,108]]],[11,5,4,108,112,[[313,1,1,108,109],[315,1,1,109,110],[322,3,2,110,112]]],[12,2,2,112,114,[[352,2,2,112,114]]],[13,13,12,114,126,[[373,1,1,114,115],[376,2,2,115,117],[379,3,2,117,119],[385,1,1,119,120],[390,1,1,120,121],[394,2,2,121,123],[395,1,1,123,124],[396,1,1,124,125],[398,1,1,125,126]]],[14,1,1,126,127,[[411,1,1,126,127]]],[15,9,8,127,135,[[413,1,1,127,128],[414,2,1,128,129],[417,3,3,129,132],[425,3,3,132,135]]],[16,1,1,135,136,[[433,1,1,135,136]]],[17,4,4,136,140,[[447,1,1,136,137],[448,1,1,137,138],[454,1,1,138,139],[467,1,1,139,140]]],[22,15,13,140,153,[[681,1,1,140,141],[705,1,1,141,142],[719,2,2,142,144],[721,1,1,144,145],[722,1,1,145,146],[726,1,1,146,147],[735,2,2,147,149],[739,1,1,149,150],[743,5,3,150,153]]],[23,33,31,153,184,[[746,1,1,153,154],[751,3,3,154,157],[757,1,1,157,158],[760,2,2,158,160],[762,1,1,160,161],[765,1,1,161,162],[769,1,1,162,163],[770,2,1,163,164],[771,2,2,164,166],[773,2,2,166,168],[776,2,2,168,170],[777,1,1,170,171],[778,1,1,171,172],[779,2,2,172,174],[784,1,1,174,175],[786,6,5,175,180],[788,4,4,180,184]]],[25,12,11,184,195,[[812,1,1,184,185],[814,3,2,185,187],[819,1,1,187,188],[821,5,5,188,193],[835,1,1,193,194],[837,1,1,194,195]]],[27,1,1,195,196,[[862,1,1,195,196]]],[28,3,1,196,197,[[878,3,1,196,197]]],[29,1,1,197,198,[[887,1,1,197,198]]],[36,3,3,198,201,[[909,2,2,198,200],[910,1,1,200,201]]],[37,1,1,201,202,[[917,1,1,201,202]]],[38,9,8,202,210,[[925,2,2,202,204],[926,1,1,204,205],[927,6,5,205,210]]]],[719,799,879,1268,1271,1285,1286,1334,1643,1649,1788,1829,1847,1903,1955,2032,2153,3492,3536,3558,4138,4149,4192,4260,4285,4288,4394,4683,4724,4811,4815,4818,4855,4878,4879,5008,5009,5016,5018,5026,5030,5087,5118,5216,5219,5239,5241,5242,5247,5252,5430,5695,5741,5805,5862,5865,5881,5896,5967,6006,6009,6044,6045,6059,6060,6083,6089,6296,6444,6463,6489,6491,6498,6547,6664,6685,6712,6769,6772,6824,6836,6838,6922,7001,7002,7011,7124,7200,7355,7386,7437,7474,7480,7485,7548,7566,7626,7831,7921,8054,8521,8523,8584,9057,9157,9160,9362,9366,9536,9593,9799,9806,10803,10804,11343,11401,11404,11461,11464,11582,11682,11774,11777,11799,11834,11885,12248,12304,12326,12390,12391,12393,12688,12689,12692,12825,13130,13157,13318,13634,17721,18163,18474,18475,18517,18541,18620,18768,18769,18849,18908,18910,18911,18996,19127,19133,19142,19289,19348,19349,19390,19444,19563,19587,19605,19611,19643,19655,19767,19774,19785,19816,19829,19830,19951,19986,19988,19990,19991,19995,20013,20017,20018,20031,20666,20719,20728,20851,20898,20924,20925,20926,20927,21344,21367,22103,22347,22502,22844,22849,22858,22968,23094,23101,23111,23121,23126,23128,23129,23132]]],["you",[12,12,[[0,4,4,0,4,[[8,1,1,0,1],[43,1,1,1,2],[44,1,1,2,3],[49,1,1,3,4]]],[1,1,1,4,5,[[61,1,1,4,5]]],[3,1,1,5,6,[[130,1,1,5,6]]],[4,1,1,6,7,[[153,1,1,6,7]]],[5,1,1,7,8,[[209,1,1,7,8]]],[13,1,1,8,9,[[394,1,1,8,9]]],[18,1,1,9,10,[[559,1,1,9,10]]],[25,2,2,10,12,[[821,1,1,10,11],[835,1,1,11,12]]]],[212,1341,1366,1526,1838,4140,4932,6469,11774,15239,20934,21330]]],["yourselves",[3,3,[[3,1,1,0,1,[[147,1,1,0,1]]],[6,1,1,1,2,[[225,1,1,1,2]]],[17,1,1,2,3,[[462,1,1,2,3]]]],[4683,6941,13493]]]]},{"k":"H860","v":[["*",[34,28,[[0,4,4,0,4,[[11,1,1,0,1],[31,1,1,1,2],[44,1,1,2,3],[48,1,1,3,4]]],[3,14,10,4,14,[[138,14,10,4,14]]],[6,1,1,14,15,[[215,1,1,14,15]]],[8,8,6,15,21,[[244,4,3,15,18],[245,4,3,18,21]]],[11,2,2,21,23,[[316,2,2,21,23]]],[12,1,1,23,24,[[364,1,1,23,24]]],[17,3,3,24,27,[[436,2,2,24,26],[477,1,1,26,27]]],[37,1,1,27,28,[[919,1,1,27,28]]]],[314,943,1381,1484,4396,4397,4398,4400,4402,4403,4404,4405,4407,4408,6633,7394,7396,7411,7420,7432,7434,9625,9627,11139,12872,12883,13934,23008]]],["ass",[16,12,[[3,14,10,0,10,[[138,14,10,0,10]]],[11,1,1,10,11,[[316,1,1,10,11]]],[37,1,1,11,12,[[919,1,1,11,12]]]],[4396,4397,4398,4400,4402,4403,4404,4405,4407,4408,9627,23008]]],["ass's",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1484]]],["asses",[17,15,[[0,3,3,0,3,[[11,1,1,0,1],[31,1,1,1,2],[44,1,1,2,3]]],[6,1,1,3,4,[[215,1,1,3,4]]],[8,8,6,4,10,[[244,4,3,4,7],[245,4,3,7,10]]],[11,1,1,10,11,[[316,1,1,10,11]]],[12,1,1,11,12,[[364,1,1,11,12]]],[17,3,3,12,15,[[436,2,2,12,14],[477,1,1,14,15]]]],[314,943,1381,6633,7394,7396,7411,7420,7432,7434,9625,11139,12872,12883,13934]]]]},{"k":"H861","v":[["furnace",[10,10,[[26,10,10,0,10,[[852,10,10,0,10]]]],[21813,21818,21822,21824,21826,21827,21828,21829,21830,21833]]]]},{"k":"H862","v":[["*",[5,4,[[25,5,4,0,4,[[842,2,2,0,2],[843,3,2,2,4]]]],[21541,21542,21555,21557]]],["galleries",[3,3,[[25,3,3,0,3,[[842,2,2,0,2],[843,1,1,2,3]]]],[21541,21542,21557]]],["gallery",[2,1,[[25,2,1,0,1,[[843,2,1,0,1]]]],[21555]]]]},{"k":"H863","v":[["*",[9,8,[[9,8,7,0,7,[[281,4,3,0,3],[284,3,3,3,6],[289,1,1,6,7]]],[12,1,1,7,8,[[348,1,1,7,8]]]],[8408,8410,8411,8480,8483,8490,8682,10704]]],["Ithai",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10704]]],["Ittai",[8,7,[[9,8,7,0,7,[[281,4,3,0,3],[284,3,3,3,6],[289,1,1,6,7]]]],[8408,8410,8411,8480,8483,8490,8682]]]]},{"k":"H864","v":[["*",[4,4,[[1,1,1,0,1,[[62,1,1,0,1]]],[3,3,3,1,4,[[149,3,3,1,4]]]],[1887,4766,4767,4768]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4767]]],["Etham",[3,3,[[1,1,1,0,1,[[62,1,1,0,1]]],[3,2,2,1,3,[[149,2,2,1,3]]]],[1887,4766,4768]]]]},{"k":"H865","v":[["*",[8,8,[[8,4,4,0,4,[[239,1,1,0,1],[245,1,1,1,2],[249,1,1,2,3],[254,1,1,3,4]]],[9,1,1,4,5,[[271,1,1,4,5]]],[18,1,1,5,6,[[567,1,1,5,6]]],[22,1,1,6,7,[[708,1,1,6,7]]],[32,1,1,7,8,[[894,1,1,7,8]]]],[7304,7429,7529,7713,8134,15382,18250,22603]]],["+",[6,6,[[8,3,3,0,3,[[239,1,1,0,1],[245,1,1,1,2],[254,1,1,2,3]]],[9,1,1,3,4,[[271,1,1,3,4]]],[18,1,1,4,5,[[567,1,1,4,5]]],[22,1,1,5,6,[[708,1,1,5,6]]]],[7304,7429,7713,8134,15382,18250]]],["before",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7529]]],["late",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22603]]]]},{"k":"H866","v":[["rewards",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22117]]]]},{"k":"H867","v":[["Ethni",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10495]]]]},{"k":"H868","v":[["*",[11,8,[[4,1,1,0,1,[[175,1,1,0,1]]],[22,2,2,1,3,[[701,2,2,1,3]]],[25,4,3,3,6,[[817,4,3,3,6]]],[27,1,1,6,7,[[870,1,1,6,7]]],[32,3,1,7,8,[[893,3,1,7,8]]]],[5518,18094,18095,20793,20796,20803,22209,22586]]],["+",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22586]]],["hire",[6,6,[[4,1,1,0,1,[[175,1,1,0,1]]],[22,2,2,1,3,[[701,2,2,1,3]]],[25,2,2,3,5,[[817,2,2,3,5]]],[32,1,1,5,6,[[893,1,1,5,6]]]],[5518,18094,18095,20793,20803,22586]]],["hires",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22586]]],["reward",[3,2,[[25,2,1,0,1,[[817,2,1,0,1]]],[27,1,1,1,2,[[870,1,1,1,2]]]],[20796,22209]]]]},{"k":"H869","v":[["Ethnan",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10392]]]]},{"k":"H870","v":[["*",[8,8,[[14,4,4,0,4,[[407,1,1,0,1],[408,3,3,1,4]]],[26,4,4,4,8,[[851,2,2,4,6],[856,2,2,6,8]]]],[12149,12154,12156,12158,21793,21797,21939,21940]]],["After",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21939,21940]]],["after",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21797]]],["place",[5,5,[[14,4,4,0,4,[[407,1,1,0,1],[408,3,3,1,4]]],[26,1,1,4,5,[[851,1,1,4,5]]]],[12149,12154,12156,12158,21793]]]]},{"k":"H871","v":[["spies",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4341]]]]},{"k":"H872","v":[["entry",[1,1,[[25,1,1,0,1,[[809,1,1,0,1]]]],[20609]]]]},{"k":"H873","v":[["bad",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12122]]]]},{"k":"H874","v":[["*",[3,3,[[4,2,2,0,2,[[153,1,1,0,1],[179,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[4897,5593,22750]]],["+",[2,2,[[4,2,2,0,2,[[153,1,1,0,1],[179,1,1,1,2]]]],[4897,5593]]],["plain",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22750]]]]},{"k":"H875","v":[["*",[37,33,[[0,23,19,0,19,[[13,2,1,0,1],[15,1,1,1,2],[20,3,3,2,5],[23,2,2,5,7],[25,8,8,7,15],[28,7,4,15,19]]],[1,1,1,19,20,[[51,1,1,19,20]]],[3,5,5,20,25,[[136,1,1,20,21],[137,4,4,21,25]]],[9,3,3,25,28,[[283,3,3,25,28]]],[18,2,2,28,30,[[532,1,1,28,29],[546,1,1,29,30]]],[19,2,2,30,32,[[632,1,1,30,31],[650,1,1,31,32]]],[21,1,1,32,33,[[674,1,1,32,33]]]],[346,395,532,538,543,602,611,707,710,711,712,713,714,717,724,797,798,803,805,1569,4328,4356,4357,4358,4362,8467,8468,8470,14755,14950,16532,17071,17597]]],["+",[3,2,[[0,2,1,0,1,[[13,2,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]]],[346,8470]]],["pit",[3,3,[[18,2,2,0,2,[[532,1,1,0,1],[546,1,1,1,2]]],[19,1,1,2,3,[[650,1,1,2,3]]]],[14755,14950,17071]]],["well",[22,21,[[0,14,13,0,13,[[15,1,1,0,1],[20,3,3,1,4],[23,2,2,4,6],[25,6,6,6,12],[28,2,1,12,13]]],[1,1,1,13,14,[[51,1,1,13,14]]],[3,4,4,14,18,[[137,4,4,14,18]]],[9,1,1,18,19,[[283,1,1,18,19]]],[19,1,1,19,20,[[632,1,1,19,20]]],[21,1,1,20,21,[[674,1,1,20,21]]]],[395,532,538,543,602,611,711,712,713,714,717,724,797,1569,4356,4357,4358,4362,8467,16532,17597]]],["well's",[6,5,[[0,5,4,0,4,[[28,5,4,0,4]]],[9,1,1,4,5,[[283,1,1,4,5]]]],[797,798,803,805,8468]]],["wells",[3,3,[[0,2,2,0,2,[[25,2,2,0,2]]],[3,1,1,2,3,[[136,1,1,2,3]]]],[707,710,4328]]]]},{"k":"H876","v":[["Beer",[2,2,[[3,1,1,0,1,[[137,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]]],[4356,6775]]]]},{"k":"H877","v":[["cisterns",[2,1,[[23,2,1,0,1,[[746,2,1,0,1]]]],[18978]]]]},{"k":"H878","v":[["Beera",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10572]]]]},{"k":"H879","v":[["Beerelim",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17968]]]]},{"k":"H880","v":[["Beerah",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10434]]]]},{"k":"H881","v":[["*",[6,6,[[4,1,1,0,1,[[162,1,1,0,1]]],[5,2,2,1,3,[[195,1,1,1,2],[204,1,1,2,3]]],[9,1,1,3,4,[[270,1,1,3,4]]],[14,1,1,4,5,[[404,1,1,4,5]]],[15,1,1,5,6,[[419,1,1,5,6]]]],[5192,6054,6318,8122,12052,12449]]],["+",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5192]]],["Beeroth",[5,5,[[5,2,2,0,2,[[195,1,1,0,1],[204,1,1,1,2]]],[9,1,1,2,3,[[270,1,1,2,3]]],[14,1,1,3,4,[[404,1,1,3,4]]],[15,1,1,4,5,[[419,1,1,4,5]]]],[6054,6318,8122,12052,12449]]]]},{"k":"H882","v":[["Beeri",[2,2,[[0,1,1,0,1,[[25,1,1,0,1]]],[27,1,1,1,2,[[862,1,1,1,2]]]],[726,22095]]]]},{"k":"H883","v":[["*",[3,3,[[0,3,3,0,3,[[15,1,1,0,1],[23,1,1,1,2],[24,1,1,2,3]]]],[395,653,669]]],["Beerlahairoi",[1,1,[[0,1,1,0,1,[[15,1,1,0,1]]]],[395]]],["Lahairoi",[2,2,[[0,2,2,0,2,[[23,1,1,0,1],[24,1,1,1,2]]]],[653,669]]]]},{"k":"H884","v":[["*",[34,33,[[0,11,10,0,10,[[20,4,4,0,4],[21,2,1,4,5],[25,2,2,5,7],[27,1,1,7,8],[45,2,2,8,10]]],[5,2,2,10,12,[[201,1,1,10,11],[205,1,1,11,12]]],[6,1,1,12,13,[[230,1,1,12,13]]],[8,2,2,13,15,[[238,1,1,13,14],[243,1,1,14,15]]],[9,5,5,15,20,[[269,1,1,15,16],[283,1,1,16,17],[290,3,3,17,20]]],[10,2,2,20,22,[[294,1,1,20,21],[309,1,1,21,22]]],[11,2,2,22,24,[[324,1,1,22,23],[335,1,1,23,24]]],[12,2,2,24,26,[[341,1,1,24,25],[358,1,1,25,26]]],[13,3,3,26,29,[[385,1,1,26,27],[390,1,1,27,28],[396,1,1,28,29]]],[15,2,2,29,31,[[423,2,2,29,31]]],[29,2,2,31,33,[[883,1,1,31,32],[886,1,1,32,33]]]],[527,544,545,546,566,715,725,783,1387,1391,6230,6323,7055,7296,7371,8091,8460,8694,8699,8707,8869,9390,9851,10173,10413,10936,11580,11678,11832,12615,12618,22428,22495]]],["+",[8,8,[[0,2,2,0,2,[[27,1,1,0,1],[45,1,1,1,2]]],[11,1,1,2,3,[[324,1,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[13,3,3,4,7,[[385,1,1,4,5],[390,1,1,5,6],[396,1,1,6,7]]],[15,1,1,7,8,[[423,1,1,7,8]]]],[783,1391,9851,10936,11580,11678,11832,12618]]],["Beersheba",[26,25,[[0,9,8,0,8,[[20,4,4,0,4],[21,2,1,4,5],[25,2,2,5,7],[45,1,1,7,8]]],[5,2,2,8,10,[[201,1,1,8,9],[205,1,1,9,10]]],[6,1,1,10,11,[[230,1,1,10,11]]],[8,2,2,11,13,[[238,1,1,11,12],[243,1,1,12,13]]],[9,5,5,13,18,[[269,1,1,13,14],[283,1,1,14,15],[290,3,3,15,18]]],[10,2,2,18,20,[[294,1,1,18,19],[309,1,1,19,20]]],[11,1,1,20,21,[[335,1,1,20,21]]],[12,1,1,21,22,[[341,1,1,21,22]]],[15,1,1,22,23,[[423,1,1,22,23]]],[29,2,2,23,25,[[883,1,1,23,24],[886,1,1,24,25]]]],[527,544,545,546,566,715,725,1387,6230,6323,7055,7296,7371,8091,8460,8694,8699,8707,8869,9390,10173,10413,12615,22428,22495]]]]},{"k":"H885","v":[]},{"k":"H886","v":[["*",[5,5,[[9,5,5,0,5,[[270,4,4,0,4],[289,1,1,4,5]]]],[8122,8123,8125,8129,8690]]],["Beerothite",[4,4,[[9,4,4,0,4,[[270,3,3,0,3],[289,1,1,3,4]]]],[8122,8125,8129,8690]]],["Beerothites",[1,1,[[9,1,1,0,1,[[270,1,1,0,1]]]],[8123]]]]},{"k":"H887","v":[["*",[17,16,[[0,1,1,0,1,[[33,1,1,0,1]]],[1,6,6,1,7,[[54,1,1,1,2],[56,2,2,2,4],[57,1,1,4,5],[65,2,2,5,7]]],[8,3,2,7,9,[[248,1,1,7,8],[262,2,1,8,9]]],[9,2,2,9,11,[[276,1,1,9,10],[282,1,1,10,11]]],[12,1,1,11,12,[[356,1,1,11,12]]],[18,1,1,12,13,[[515,1,1,12,13]]],[19,1,1,13,14,[[640,1,1,13,14]]],[20,1,1,14,15,[[668,1,1,14,15]]],[22,1,1,15,16,[[728,1,1,15,16]]]],[1010,1653,1703,1706,1724,1967,1971,7489,7942,8246,8447,10913,14495,16752,17494,18664]]],["+",[2,1,[[8,2,1,0,1,[[262,2,1,0,1]]]],[7942]]],["abhorred",[2,2,[[1,1,1,0,1,[[54,1,1,0,1]]],[9,1,1,1,2,[[282,1,1,1,2]]]],[1653,8447]]],["abomination",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7489]]],["loathsome",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16752]]],["odious",[1,1,[[12,1,1,0,1,[[356,1,1,0,1]]]],[10913]]],["savour",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17494]]],["stank",[4,4,[[1,3,3,0,3,[[56,1,1,0,1],[57,1,1,1,2],[65,1,1,2,3]]],[9,1,1,3,4,[[276,1,1,3,4]]]],[1706,1724,1967,8246]]],["stink",[4,4,[[0,1,1,0,1,[[33,1,1,0,1]]],[1,2,2,1,3,[[56,1,1,1,2],[65,1,1,2,3]]],[18,1,1,3,4,[[515,1,1,3,4]]]],[1010,1703,1971,14495]]],["stinketh",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18664]]]]},{"k":"H888","v":[["displeased",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21919]]]]},{"k":"H889","v":[["stink",[3,3,[[22,1,1,0,1,[[712,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]],[29,1,1,2,3,[[882,1,1,2,3]]]],[18306,22331,22420]]]]},{"k":"H890","v":[["cockle",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13628]]]]},{"k":"H891","v":[["grapes",[2,2,[[22,2,2,0,2,[[683,2,2,0,2]]]],[17741,17743]]]]},{"k":"H892","v":[["apple",[1,1,[[37,1,1,0,1,[[912,1,1,0,1]]]],[22907]]]]},{"k":"H893","v":[["Bebai",[6,5,[[14,4,3,0,3,[[404,1,1,0,1],[410,2,1,1,2],[412,1,1,2,3]]],[15,2,2,3,5,[[419,1,1,3,4],[422,1,1,4,5]]]],[12038,12212,12280,12436,12564]]]]},{"k":"H894","v":[["*",[262,233,[[0,2,2,0,2,[[9,1,1,0,1],[10,1,1,1,2]]],[11,32,28,2,30,[[329,2,2,2,4],[332,4,4,4,8],[336,12,9,8,17],[337,14,13,17,30]]],[12,1,1,30,31,[[346,1,1,30,31]]],[13,9,7,31,38,[[398,1,1,31,32],[399,1,1,32,33],[402,7,5,33,38]]],[14,6,5,38,43,[[403,1,1,38,39],[404,2,1,39,40],[409,2,2,40,42],[410,1,1,42,43]]],[15,2,2,43,45,[[419,1,1,43,44],[425,1,1,44,45]]],[16,1,1,45,46,[[427,1,1,45,46]]],[18,3,3,46,49,[[564,1,1,46,47],[614,2,2,47,49]]],[22,13,13,49,62,[[691,2,2,49,51],[692,2,2,51,53],[699,1,1,53,54],[717,4,4,54,58],[721,1,1,58,59],[725,1,1,59,60],[726,2,2,60,62]]],[23,169,149,62,211,[[764,4,3,62,65],[765,4,4,65,69],[766,1,1,69,70],[768,2,1,70,71],[769,4,4,71,75],[771,14,12,75,87],[772,8,6,87,93],[773,11,9,93,102],[776,6,6,102,108],[778,6,5,108,113],[779,1,1,113,114],[780,1,1,114,115],[781,3,3,115,118],[782,5,5,118,123],[783,10,8,123,131],[784,8,6,131,137],[785,2,2,137,139],[786,1,1,139,140],[787,2,2,140,142],[788,1,1,142,143],[790,3,3,143,146],[793,2,2,146,148],[794,19,19,148,167],[795,36,31,167,198],[796,15,13,198,211]]],[25,20,18,211,229,[[813,1,1,211,212],[818,4,3,212,215],[820,1,1,215,216],[822,2,2,216,218],[824,3,3,218,221],[825,1,1,221,222],[827,1,1,222,223],[830,2,2,223,225],[831,4,3,225,228],[833,1,1,228,229]]],[26,1,1,229,230,[[850,1,1,229,230]]],[32,1,1,230,231,[[896,1,1,230,231]]],[37,2,2,231,233,[[912,1,1,231,232],[916,1,1,232,233]]]],[244,275,10007,10013,10110,10112,10115,10116,10203,10209,10212,10213,10214,10217,10218,10219,10222,10223,10228,10229,10230,10233,10235,10242,10243,10244,10245,10246,10249,10250,10616,11906,11919,11999,12000,12003,12011,12013,12027,12028,12179,12182,12202,12426,12677,12730,15305,16223,16230,17907,17925,17932,17950,18044,18413,18415,18418,18419,18519,18600,18628,18634,19426,19427,19428,19442,19444,19447,19450,19479,19525,19535,19543,19545,19546,19602,19604,19605,19607,19608,19609,19610,19612,19613,19614,19616,19618,19620,19621,19622,19624,19629,19632,19636,19638,19639,19645,19650,19655,19656,19657,19663,19733,19734,19735,19736,19759,19767,19802,19803,19804,19808,19822,19834,19871,19875,19891,19893,19898,19912,19913,19917,19918,19924,19926,19928,19929,19930,19932,19934,19936,19942,19945,19946,19948,19950,19952,19959,19975,19986,20000,20007,20040,20047,20058,20071,20155,20157,20167,20168,20174,20175,20179,20180,20182,20183,20184,20189,20190,20194,20195,20200,20201,20208,20209,20211,20212,20213,20214,20218,20219,20220,20221,20223,20224,20236,20241,20242,20243,20245,20246,20247,20249,20253,20254,20256,20259,20260,20261,20265,20266,20267,20268,20270,20271,20272,20273,20276,20279,20280,20285,20286,20287,20288,20291,20293,20302,20303,20307,20308,20310,20693,20837,20841,20845,20890,20963,20965,21022,21024,21030,21058,21107,21201,21202,21214,21228,21229,21259,21738,22630,22906,22957]]],["+",[16,16,[[11,2,2,0,2,[[329,1,1,0,1],[332,1,1,1,2]]],[14,4,4,2,6,[[403,1,1,2,3],[409,2,2,3,5],[410,1,1,5,6]]],[22,2,2,6,8,[[717,1,1,6,7],[726,1,1,7,8]]],[23,4,4,8,12,[[771,1,1,8,9],[772,1,1,9,10],[794,1,1,10,11],[795,1,1,11,12]]],[25,3,3,12,15,[[824,3,3,12,15]]],[37,1,1,15,16,[[916,1,1,15,16]]]],[10007,10112,12027,12179,12182,12202,18415,18634,19612,19624,20182,20266,21022,21024,21030,22957]]],["Babel",[2,2,[[0,2,2,0,2,[[9,1,1,0,1],[10,1,1,1,2]]]],[244,275]]],["Babylon",[236,207,[[11,30,26,0,26,[[329,1,1,0,1],[332,3,3,1,4],[336,12,9,4,13],[337,14,13,13,26]]],[12,1,1,26,27,[[346,1,1,26,27]]],[13,9,7,27,34,[[398,1,1,27,28],[399,1,1,28,29],[402,7,5,29,34]]],[14,2,1,34,35,[[404,2,1,34,35]]],[15,2,2,35,37,[[419,1,1,35,36],[425,1,1,36,37]]],[16,1,1,37,38,[[427,1,1,37,38]]],[18,3,3,38,41,[[564,1,1,38,39],[614,2,2,39,41]]],[22,11,11,41,52,[[691,2,2,41,43],[692,2,2,43,45],[699,1,1,45,46],[717,3,3,46,49],[721,1,1,49,50],[725,1,1,50,51],[726,1,1,51,52]]],[23,157,137,52,189,[[764,4,3,52,55],[765,4,4,55,59],[766,1,1,59,60],[768,2,1,60,61],[769,4,4,61,65],[771,13,11,65,76],[772,7,5,76,81],[773,11,9,81,90],[776,5,5,90,95],[778,4,3,95,98],[779,1,1,98,99],[780,1,1,99,100],[781,3,3,100,103],[782,1,1,103,104],[783,9,7,104,111],[784,8,6,111,117],[785,2,2,117,119],[786,1,1,119,120],[787,2,2,120,122],[788,1,1,122,123],[790,3,3,123,126],[793,2,2,126,128],[794,18,18,128,146],[795,35,30,146,176],[796,15,13,176,189]]],[25,17,15,189,204,[[813,1,1,189,190],[818,4,3,190,193],[820,1,1,193,194],[822,2,2,194,196],[825,1,1,196,197],[827,1,1,197,198],[830,2,2,198,200],[831,4,3,200,203],[833,1,1,203,204]]],[26,1,1,204,205,[[850,1,1,204,205]]],[32,1,1,205,206,[[896,1,1,205,206]]],[37,1,1,206,207,[[912,1,1,206,207]]]],[10013,10110,10115,10116,10203,10209,10212,10213,10214,10217,10218,10219,10222,10223,10228,10229,10230,10233,10235,10242,10243,10244,10245,10246,10249,10250,10616,11906,11919,11999,12000,12003,12011,12013,12028,12426,12677,12730,15305,16223,16230,17907,17925,17932,17950,18044,18413,18418,18419,18519,18600,18628,19426,19427,19428,19442,19444,19447,19450,19479,19525,19535,19543,19545,19546,19602,19604,19605,19607,19608,19609,19610,19613,19614,19616,19618,19620,19621,19622,19629,19632,19636,19638,19639,19645,19650,19655,19656,19657,19663,19734,19735,19736,19759,19767,19802,19803,19804,19834,19871,19875,19891,19893,19918,19924,19926,19928,19929,19930,19932,19934,19942,19945,19946,19948,19950,19952,19959,19975,19986,20000,20007,20040,20047,20058,20071,20155,20157,20167,20168,20174,20175,20179,20180,20183,20184,20189,20190,20194,20195,20200,20201,20208,20209,20211,20212,20213,20214,20218,20219,20220,20221,20223,20224,20236,20241,20242,20243,20245,20246,20247,20249,20253,20254,20256,20259,20260,20261,20265,20267,20268,20270,20271,20272,20273,20276,20279,20280,20285,20286,20287,20288,20291,20293,20302,20303,20307,20308,20310,20693,20837,20841,20845,20890,20963,20965,21058,21107,21201,21202,21214,21228,21229,21259,21738,22630,22906]]],["Babylon's",[8,8,[[23,8,8,0,8,[[776,1,1,0,1],[778,2,2,1,3],[782,4,4,3,7],[783,1,1,7,8]]]],[19733,19808,19822,19898,19912,19913,19917,19936]]]]},{"k":"H895","v":[["Babylon",[25,21,[[14,9,7,0,7,[[407,6,4,0,4],[408,2,2,4,6],[409,1,1,6,7]]],[26,16,14,7,21,[[851,8,6,7,13],[852,3,3,13,16],[853,3,3,16,19],[854,1,1,19,20],[856,1,1,20,21]]]],[12146,12147,12148,12151,12152,12156,12189,21770,21772,21776,21782,21806,21807,21808,21819,21837,21843,21866,21867,21881,21934]]]]},{"k":"H896","v":[["Babylonians",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12119]]]]},{"k":"H897","v":[]},{"k":"H898","v":[["*",[49,39,[[1,1,1,0,1,[[70,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[8,1,1,2,3,[[249,1,1,2,3]]],[17,1,1,3,4,[[441,1,1,3,4]]],[18,5,5,4,9,[[502,1,1,4,5],[536,1,1,5,6],[550,1,1,6,7],[555,1,1,7,8],[596,1,1,8,9]]],[19,9,9,9,18,[[629,1,1,9,10],[638,2,2,10,12],[640,2,2,12,14],[648,1,1,14,15],[649,1,1,15,16],[650,1,1,16,17],[652,1,1,17,18]]],[22,12,4,18,22,[[699,2,1,18,19],[702,4,1,19,20],[711,4,1,20,21],[726,2,1,21,22]]],[23,9,7,22,29,[[747,4,3,22,25],[749,2,1,25,26],[753,1,1,26,27],[756,2,2,27,29]]],[24,1,1,29,30,[[797,1,1,29,30]]],[27,2,2,30,32,[[866,1,1,30,31],[867,1,1,31,32]]],[34,2,2,32,34,[[903,1,1,32,33],[904,1,1,33,34]]],[38,5,5,34,39,[[926,5,5,34,39]]]],[2085,6777,7541,12993,14254,14795,15035,15170,16056,16455,16691,16694,16749,16762,17002,17027,17072,17132,18037,18111,18280,18622,19010,19013,19022,19069,19177,19250,19255,20312,22159,22174,22744,22753,23113,23114,23117,23118,23119]]],["+",[9,7,[[22,4,3,0,3,[[702,1,1,0,1],[711,1,1,1,2],[726,2,1,2,3]]],[23,4,3,3,6,[[747,1,1,3,4],[749,2,1,4,5],[756,1,1,5,6]]],[38,1,1,6,7,[[926,1,1,6,7]]]],[18111,18280,18622,19013,19069,19250,23119]]],["dealer",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18037]]],["dealers",[2,1,[[22,2,1,0,1,[[702,2,1,0,1]]]],[18111]]],["deceitfully",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]]],[2085,12993]]],["departeth",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19022]]],["man",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17132]]],["men",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19177]]],["offend",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15035]]],["transgress",[1,1,[[18,1,1,0,1,[[502,1,1,0,1]]]],[14254]]],["transgressed",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7541]]],["transgresseth",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22753]]],["transgressor",[2,2,[[19,2,2,0,2,[[648,1,1,0,1],[649,1,1,1,2]]]],[17002,17027]]],["transgressors",[8,8,[[18,2,2,0,2,[[536,1,1,0,1],[596,1,1,1,2]]],[19,6,6,2,8,[[629,1,1,2,3],[638,2,2,3,5],[640,2,2,5,7],[650,1,1,7,8]]]],[14795,16056,16455,16691,16694,16749,16762,17072]]],["treacherous",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19010]]],["treacherously",[16,14,[[6,1,1,0,1,[[219,1,1,0,1]]],[22,5,3,1,4,[[699,1,1,1,2],[702,1,1,2,3],[711,3,1,3,4]]],[23,2,2,4,6,[[747,1,1,4,5],[756,1,1,5,6]]],[24,1,1,6,7,[[797,1,1,6,7]]],[27,2,2,7,9,[[866,1,1,7,8],[867,1,1,8,9]]],[34,1,1,9,10,[[903,1,1,9,10]]],[38,4,4,10,14,[[926,4,4,10,14]]]],[6777,18037,18111,18280,19022,19255,20312,22159,22174,22744,23113,23114,23117,23118]]],["unfaithfully",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15170]]]]},{"k":"H899","v":[["*",[217,190,[[0,14,13,0,13,[[23,1,1,0,1],[26,2,2,1,3],[27,1,1,3,4],[36,1,1,4,5],[37,2,2,5,7],[38,6,5,7,12],[40,1,1,12,13]]],[1,23,12,13,25,[[77,4,3,13,16],[78,6,3,16,19],[80,3,1,19,20],[84,4,2,20,22],[88,5,2,22,24],[89,1,1,24,25]]],[2,55,45,25,70,[[95,3,2,25,27],[97,5,2,27,29],[99,1,1,29,30],[100,5,4,30,34],[102,14,12,34,46],[103,5,4,46,50],[104,11,11,50,61],[105,7,6,61,67],[106,1,1,67,68],[108,1,1,68,69],[110,2,1,69,70]]],[3,20,20,70,90,[[120,7,7,70,77],[124,2,2,77,79],[130,1,1,79,80],[131,1,1,80,81],[135,5,5,81,86],[136,2,2,86,88],[147,2,2,88,90]]],[4,1,1,90,91,[[176,1,1,90,91]]],[6,5,5,91,96,[[218,1,1,91,92],[221,1,1,92,93],[224,2,2,93,95],[227,1,1,95,96]]],[8,4,4,96,100,[[254,2,2,96,98],[262,1,1,98,99],[263,1,1,99,100]]],[9,8,7,100,107,[[267,2,2,100,102],[269,1,1,102,103],[279,2,1,103,104],[280,1,1,104,105],[285,1,1,105,106],[286,1,1,106,107]]],[10,4,4,107,111,[[291,1,1,107,108],[311,1,1,108,109],[312,2,2,109,111]]],[11,20,19,111,130,[[314,1,1,111,112],[316,1,1,112,113],[317,7,6,113,119],[318,1,1,119,120],[319,2,2,120,122],[321,1,1,122,123],[323,1,1,123,124],[330,1,1,124,125],[331,1,1,125,126],[334,3,3,126,129],[337,1,1,129,130]]],[13,6,6,130,136,[[384,2,2,130,132],[389,1,1,132,133],[400,3,3,133,136]]],[14,2,2,136,138,[[411,2,2,136,138]]],[15,1,1,138,139,[[416,1,1,138,139]]],[16,2,2,139,141,[[429,2,2,139,141]]],[17,3,3,141,144,[[448,1,1,141,142],[457,1,1,142,143],[472,1,1,143,144]]],[18,4,4,144,148,[[499,1,1,144,145],[522,1,1,145,146],[579,1,1,146,147],[586,1,1,147,148]]],[19,4,4,148,152,[[633,1,1,148,149],[647,1,1,149,150],[652,1,1,150,151],[654,1,1,151,152]]],[20,1,1,152,153,[[667,1,1,152,153]]],[22,14,14,153,167,[[702,1,1,153,154],[714,1,1,154,155],[715,1,1,155,156],[728,1,1,156,157],[729,2,2,157,159],[730,1,1,159,160],[737,2,2,160,162],[739,1,1,162,163],[741,3,3,163,166],[742,1,1,166,167]]],[23,5,5,167,172,[[756,1,1,167,168],[780,1,1,168,169],[785,1,1,169,170],[787,1,1,170,171],[796,1,1,171,172]]],[25,14,11,172,183,[[817,3,3,172,175],[819,2,2,175,177],[824,1,1,177,178],[827,1,1,178,179],[828,1,1,179,180],[843,2,1,180,181],[845,4,2,181,183]]],[28,1,1,183,184,[[877,1,1,183,184]]],[29,1,1,184,185,[[880,1,1,184,185]]],[36,1,1,185,186,[[910,1,1,185,186]]],[37,4,4,186,190,[[913,3,3,186,189],[924,1,1,189,190]]]],[644,742,754,793,1112,1133,1138,1161,1162,1164,1165,1167,1237,2295,2296,2297,2341,2357,2365,2430,2550,2552,2665,2705,2720,2860,2876,2919,2947,2983,3022,3025,3029,3037,3058,3086,3097,3099,3101,3103,3104,3105,3108,3109,3110,3111,3119,3120,3158,3166,3173,3174,3175,3176,3178,3179,3181,3185,3189,3190,3195,3205,3224,3225,3227,3229,3233,3250,3300,3355,3749,3750,3751,3752,3754,3755,3756,3946,3960,4114,4191,4296,4297,4299,4308,4310,4337,4339,4684,4688,5542,6745,6864,6921,6922,6990,7719,7730,7939,7950,8024,8033,8112,8348,8358,8535,8566,8718,9478,9490,9510,9563,9642,9652,9654,9655,9669,9670,9673,9704,9715,9722,9769,9843,10061,10062,10156,10159,10164,10251,11551,11571,11669,11952,11955,11960,12240,12242,12382,12763,12766,13181,13395,13786,14222,14605,15547,15774,16567,16970,17133,17182,17483,18111,18352,18353,18671,18679,18681,18697,18806,18817,18853,18867,18868,18869,18891,19250,19866,19962,20009,20309,20778,20780,20801,20856,20865,21033,21116,21141,21566,21616,21618,22324,22387,22867,22915,22916,22917,23082]]],["+",[3,3,[[22,1,1,0,1,[[702,1,1,0,1]]],[23,1,1,1,2,[[756,1,1,1,2]]],[25,1,1,2,3,[[817,1,1,2,3]]]],[18111,19250,20778]]],["apparel",[4,4,[[6,1,1,0,1,[[227,1,1,0,1]]],[8,1,1,1,2,[[262,1,1,1,2]]],[9,1,1,2,3,[[280,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[6990,7939,8358,23082]]],["cloth",[9,9,[[3,7,7,0,7,[[120,7,7,0,7]]],[8,1,1,7,8,[[254,1,1,7,8]]],[9,1,1,8,9,[[286,1,1,8,9]]]],[3749,3750,3751,3752,3754,3755,3756,7719,8566]]],["clothes",[69,66,[[0,1,1,0,1,[[36,1,1,0,1]]],[2,27,25,1,26,[[99,1,1,1,2],[100,4,3,2,5],[102,3,3,5,8],[103,4,3,8,11],[104,10,10,11,21],[105,3,3,21,24],[106,1,1,24,25],[110,1,1,25,26]]],[3,9,9,26,35,[[124,2,2,26,28],[130,1,1,28,29],[135,5,5,29,34],[147,1,1,34,35]]],[6,1,1,35,36,[[221,1,1,35,36]]],[8,1,1,36,37,[[254,1,1,36,37]]],[9,5,5,37,42,[[267,2,2,37,39],[269,1,1,39,40],[279,1,1,40,41],[285,1,1,41,42]]],[10,2,2,42,44,[[291,1,1,42,43],[311,1,1,43,44]]],[11,10,9,44,53,[[314,1,1,44,45],[317,3,2,45,47],[318,1,1,47,48],[323,1,1,48,49],[330,1,1,49,50],[331,1,1,50,51],[334,2,2,51,53]]],[13,3,3,53,56,[[389,1,1,53,54],[400,2,2,54,56]]],[15,1,1,56,57,[[416,1,1,56,57]]],[16,1,1,57,58,[[429,1,1,57,58]]],[19,1,1,58,59,[[633,1,1,58,59]]],[22,2,2,59,61,[[714,1,1,59,60],[715,1,1,60,61]]],[23,1,1,61,62,[[785,1,1,61,62]]],[25,3,3,62,65,[[817,1,1,62,63],[824,1,1,63,64],[828,1,1,64,65]]],[29,1,1,65,66,[[880,1,1,65,66]]]],[1112,2983,3022,3025,3037,3058,3086,3097,3119,3120,3158,3173,3174,3175,3176,3178,3179,3181,3189,3190,3195,3227,3229,3233,3250,3355,3946,3960,4114,4296,4297,4299,4308,4310,4688,6864,7730,8024,8033,8112,8348,8535,8718,9478,9563,9654,9655,9704,9843,10061,10062,10156,10164,11669,11952,11960,12382,12763,16567,18352,18353,19962,20801,21033,21141,22387]]],["clothing",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13395]]],["cloths",[4,4,[[1,4,4,0,4,[[80,1,1,0,1],[84,1,1,1,2],[88,2,2,2,4]]]],[2430,2550,2665,2705]]],["garment",[37,34,[[0,6,5,0,5,[[38,6,5,0,5]]],[2,15,13,5,18,[[95,1,1,5,6],[102,11,9,6,15],[103,1,1,15,16],[104,1,1,16,17],[108,1,1,17,18]]],[11,1,1,18,19,[[321,1,1,18,19]]],[14,2,2,19,21,[[411,2,2,19,21]]],[17,1,1,21,22,[[448,1,1,21,22]]],[18,2,2,22,24,[[579,1,1,22,23],[586,1,1,23,24]]],[19,3,3,24,27,[[647,1,1,24,25],[652,1,1,25,26],[654,1,1,26,27]]],[22,3,3,27,30,[[728,1,1,27,28],[729,2,2,28,30]]],[23,1,1,30,31,[[787,1,1,30,31]]],[25,2,2,31,33,[[819,2,2,31,33]]],[36,1,1,33,34,[[910,1,1,33,34]]]],[1161,1162,1164,1165,1167,2876,3099,3101,3103,3104,3105,3108,3109,3110,3111,3166,3185,3300,9769,12240,12242,13181,15547,15774,16970,17133,17182,18671,18679,18681,20009,20856,20865,22867]]],["garments",[69,55,[[0,2,2,0,2,[[37,2,2,0,2]]],[1,19,12,2,14,[[77,4,3,2,5],[78,6,3,5,8],[80,2,1,8,9],[84,3,2,9,11],[88,3,2,11,13],[89,1,1,13,14]]],[2,12,8,14,22,[[95,2,1,14,15],[97,5,2,15,17],[105,4,4,17,21],[110,1,1,21,22]]],[3,3,3,22,25,[[131,1,1,22,23],[136,2,2,23,25]]],[6,2,2,25,27,[[224,2,2,25,27]]],[9,1,1,27,28,[[279,1,1,27,28]]],[11,5,5,28,33,[[317,3,3,28,31],[319,1,1,31,32],[337,1,1,32,33]]],[17,1,1,33,34,[[472,1,1,33,34]]],[18,2,2,34,36,[[499,1,1,34,35],[522,1,1,35,36]]],[20,1,1,36,37,[[667,1,1,36,37]]],[22,7,7,37,44,[[730,1,1,37,38],[737,2,2,38,40],[739,1,1,40,41],[741,3,3,41,44]]],[23,2,2,44,46,[[780,1,1,44,45],[796,1,1,45,46]]],[25,8,5,46,51,[[817,1,1,46,47],[827,1,1,47,48],[843,2,1,48,49],[845,4,2,49,51]]],[28,1,1,51,52,[[877,1,1,51,52]]],[37,3,3,52,55,[[913,3,3,52,55]]]],[1133,1138,2295,2296,2297,2341,2357,2365,2430,2550,2552,2665,2705,2720,2860,2919,2947,3205,3224,3225,3233,3355,4191,4337,4339,6921,6922,8348,9669,9670,9673,9722,10251,13786,14222,14605,17483,18697,18806,18817,18853,18867,18868,18869,19866,20309,20780,21116,21566,21616,21618,22324,22915,22916,22917]]],["lap",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9642]]],["rags",[1,1,[[22,1,1,0,1,[[742,1,1,0,1]]]],[18891]]],["raiment",[12,12,[[0,4,4,0,4,[[23,1,1,0,1],[26,2,2,1,3],[27,1,1,3,4]]],[2,1,1,4,5,[[100,1,1,4,5]]],[3,1,1,5,6,[[147,1,1,5,6]]],[4,1,1,6,7,[[176,1,1,6,7]]],[6,1,1,7,8,[[218,1,1,7,8]]],[8,1,1,8,9,[[263,1,1,8,9]]],[11,2,2,9,11,[[317,1,1,9,10],[319,1,1,10,11]]],[16,1,1,11,12,[[429,1,1,11,12]]]],[644,742,754,793,3029,4684,5542,6745,7950,9652,9715,12766]]],["robes",[4,4,[[10,2,2,0,2,[[312,2,2,0,2]]],[13,2,2,2,4,[[384,2,2,2,4]]]],[9490,9510,11551,11571]]],["vestures",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1237]]],["wardrobe",[2,2,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]]],[10159,11955]]]]},{"k":"H900","v":[["treacherous",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22824]]]]},{"k":"H901","v":[["treacherous",[2,2,[[23,2,2,0,2,[[747,2,2,0,2]]]],[19009,19012]]]]},{"k":"H902","v":[["Bigvai",[6,6,[[14,3,3,0,3,[[404,2,2,0,2],[410,1,1,2,3]]],[15,3,3,3,6,[[419,2,2,3,5],[422,1,1,5,6]]]],[12029,12041,12215,12427,12439,12565]]]]},{"k":"H903","v":[["Bigtha",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12712]]]]},{"k":"H904","v":[["*",[2,2,[[16,2,2,0,2,[[427,1,1,0,1],[431,1,1,1,2]]]],[12745,12795]]],["Bigthan",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12745]]],["Bigthana",[1,1,[[16,1,1,0,1,[[431,1,1,0,1]]]],[12795]]]]},{"k":"H905","v":[["*",[202,179,[[0,14,12,0,12,[[1,1,1,0,1],[20,2,2,1,3],[25,1,1,3,4],[29,1,1,4,5],[31,2,2,5,7],[41,1,1,7,8],[42,3,1,8,9],[43,1,1,9,10],[45,1,1,10,11],[46,1,1,11,12]]],[1,40,35,12,47,[[61,2,2,12,14],[67,2,2,14,16],[71,2,2,16,18],[73,1,1,18,19],[74,5,5,19,24],[75,2,1,24,25],[76,4,2,25,27],[79,4,3,27,30],[84,4,4,30,34],[85,2,1,34,35],[86,6,6,35,41],[87,3,3,41,44],[88,2,2,44,46],[89,1,1,46,47]]],[2,5,2,47,49,[[98,1,1,47,48],[112,4,1,48,49]]],[3,22,22,49,71,[[120,4,4,49,53],[121,1,1,53,54],[122,1,1,54,55],[127,2,2,55,57],[132,1,1,57,58],[144,2,2,58,60],[145,11,11,60,71]]],[4,9,9,71,80,[[153,2,2,71,73],[155,1,1,73,74],[156,1,1,74,75],[160,1,1,75,76],[170,1,1,76,77],[174,1,1,77,78],[181,2,2,78,80]]],[5,3,3,80,83,[[197,1,1,80,81],[203,1,1,81,82],[208,1,1,82,83]]],[6,9,8,83,91,[[213,1,1,83,84],[216,3,3,84,87],[217,1,1,87,88],[218,2,1,88,89],[230,2,2,89,91]]],[8,3,3,91,94,[[242,2,2,91,93],[256,1,1,93,94]]],[9,8,8,94,102,[[276,1,1,94,95],[279,2,2,95,97],[283,1,1,97,98],[284,3,3,98,101],[286,1,1,101,102]]],[10,17,15,102,117,[[294,1,1,102,103],[295,1,1,103,104],[298,4,3,104,107],[300,2,2,107,109],[301,1,1,109,110],[302,1,1,110,111],[304,1,1,111,112],[308,3,2,112,114],[309,2,2,114,116],[312,1,1,116,117]]],[11,5,5,117,122,[[322,1,1,117,118],[329,1,1,118,119],[331,2,2,119,121],[333,1,1,121,122]]],[12,2,2,122,124,[[340,1,1,122,123],[356,1,1,123,124]]],[13,9,8,124,132,[[371,3,2,124,126],[372,1,1,126,127],[375,2,2,127,129],[383,1,1,129,130],[384,1,1,130,131],[397,1,1,131,132]]],[14,2,2,132,134,[[403,1,1,132,133],[404,1,1,133,134]]],[15,2,2,134,136,[[419,1,1,134,135],[421,1,1,135,136]]],[16,3,3,136,139,[[426,1,1,136,137],[428,1,1,137,138],[429,1,1,138,139]]],[17,11,10,139,149,[[436,4,4,139,143],[444,1,1,143,144],[450,1,1,144,145],[452,1,1,145,146],[453,2,1,146,147],[466,1,1,147,148],[476,1,1,148,149]]],[18,7,7,149,156,[[528,1,1,149,150],[548,1,1,150,151],[549,1,1,151,152],[560,1,1,152,153],[563,1,1,153,154],[613,1,1,154,155],[625,1,1,155,156]]],[19,2,2,156,158,[[632,1,1,156,157],[636,1,1,157,158]]],[20,1,1,158,159,[[665,1,1,158,159]]],[22,9,9,159,168,[[680,2,2,159,161],[683,1,1,161,162],[704,1,1,162,163],[715,2,2,163,165],[722,1,1,165,166],[727,1,1,166,167],[741,1,1,167,168]]],[25,4,4,168,172,[[815,2,2,168,170],[818,1,1,170,171],[820,1,1,171,172]]],[26,3,3,172,175,[[859,2,2,172,174],[860,1,1,174,175]]],[27,1,1,175,176,[[872,1,1,175,176]]],[37,11,3,176,179,[[922,11,3,176,179]]]],[48,541,542,693,870,944,952,1290,1322,1344,1412,1446,1832,1853,2013,2017,2133,2140,2179,2208,2209,2210,2222,2223,2244,2278,2279,2386,2387,2416,2543,2544,2546,2547,2582,2608,2609,2618,2619,2631,2632,2638,2639,2640,2699,2703,2727,2970,3440,3749,3751,3754,3757,3800,3844,4038,4041,4243,4600,4608,4614,4619,4624,4627,4630,4633,4636,4639,4642,4646,4647,4901,4904,4980,5039,5140,5392,5495,5680,5693,6120,6280,6455,6588,6691,6693,6694,6699,6745,7069,7071,7355,7356,7773,8248,8349,8350,8451,8502,8503,8504,8575,8867,8894,8992,8993,9024,9092,9094,9137,9171,9231,9347,9363,9397,9401,9511,9816,10001,10076,10080,10135,10370,10916,11276,11277,11312,11376,11378,11542,11572,11870,12022,12092,12487,12517,12718,12753,12773,12884,12885,12886,12888,13059,13222,13276,13289,13605,13900,14695,14992,15018,15259,15294,16200,16384,16534,16650,17458,17696,17702,17747,18143,18368,18372,18557,18657,18869,20747,20749,20831,20895,22022,22023,22040,22246,23057,23058,23059]]],["+",[38,34,[[0,2,2,0,2,[[25,1,1,0,1],[45,1,1,1,2]]],[2,5,2,2,4,[[98,1,1,2,3],[112,4,1,3,4]]],[3,15,15,4,19,[[121,1,1,4,5],[122,1,1,5,6],[132,1,1,6,7],[144,2,2,7,9],[145,10,10,9,19]]],[4,2,2,19,21,[[156,1,1,19,20],[181,1,1,20,21]]],[5,1,1,21,22,[[208,1,1,21,22]]],[6,2,1,22,23,[[218,2,1,22,23]]],[10,2,2,23,25,[[295,1,1,23,24],[300,1,1,24,25]]],[11,1,1,25,26,[[333,1,1,25,26]]],[12,1,1,26,27,[[340,1,1,26,27]]],[13,3,3,27,30,[[375,1,1,27,28],[383,1,1,28,29],[397,1,1,29,30]]],[14,2,2,30,32,[[403,1,1,30,31],[404,1,1,31,32]]],[15,1,1,32,33,[[419,1,1,32,33]]],[26,1,1,33,34,[[860,1,1,33,34]]]],[693,1412,2970,3440,3800,3844,4243,4600,4608,4614,4619,4624,4627,4630,4633,4636,4639,4642,4646,5039,5680,6455,6745,8894,9092,10135,10370,11376,11542,11870,12022,12092,12487,22040]]],["Beside",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9094,11378]]],["alone",[41,41,[[0,4,4,0,4,[[1,1,1,0,1],[31,1,1,1,2],[41,1,1,2,3],[43,1,1,3,4]]],[1,3,3,4,7,[[67,2,2,4,6],[73,1,1,6,7]]],[3,2,2,7,9,[[127,2,2,7,9]]],[4,2,2,9,11,[[153,2,2,9,11]]],[6,1,1,11,12,[[213,1,1,11,12]]],[8,1,1,12,13,[[256,1,1,12,13]]],[9,3,3,13,16,[[284,3,3,13,16]]],[10,1,1,16,17,[[301,1,1,16,17]]],[11,1,1,17,18,[[331,1,1,17,18]]],[15,1,1,18,19,[[421,1,1,18,19]]],[16,1,1,19,20,[[428,1,1,19,20]]],[17,7,7,20,27,[[436,4,4,20,24],[444,1,1,24,25],[450,1,1,25,26],[466,1,1,26,27]]],[18,4,4,27,31,[[560,1,1,27,28],[563,1,1,28,29],[613,1,1,29,30],[625,1,1,30,31]]],[19,1,1,31,32,[[636,1,1,31,32]]],[22,7,7,32,39,[[680,2,2,32,34],[683,1,1,34,35],[715,1,1,35,36],[722,1,1,36,37],[727,1,1,37,38],[741,1,1,38,39]]],[26,2,2,39,41,[[859,2,2,39,41]]]],[48,952,1290,1344,2013,2017,2179,4038,4041,4901,4904,6588,7773,8502,8503,8504,9137,10076,12517,12753,12884,12885,12886,12888,13059,13222,13605,15259,15294,16200,16384,16650,17696,17702,17747,18368,18557,18657,18869,22022,22023]]],["apart",[11,3,[[37,11,3,0,3,[[922,11,3,0,3]]]],[23057,23058,23059]]],["bars",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13276]]],["beside",[8,8,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[145,1,1,1,2]]],[4,2,2,2,4,[[155,1,1,2,3],[170,1,1,3,4]]],[5,1,1,4,5,[[203,1,1,4,5]]],[6,2,2,5,7,[[230,2,2,5,7]]],[10,1,1,7,8,[[294,1,1,7,8]]]],[1853,4647,4980,5392,6280,7069,7071,8867]]],["branches",[3,3,[[25,2,2,0,2,[[818,1,1,0,1],[820,1,1,1,2]]],[27,1,1,2,3,[[872,1,1,2,3]]]],[20831,20895,22246]]],["each",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2416]]],["except",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12773]]],["himself",[4,3,[[0,1,1,0,1,[[42,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]],[10,2,1,2,3,[[308,2,1,2,3]]]],[1322,6699,9347]]],["like",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2416]]],["only",[39,39,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,3,3,1,4,[[61,1,1,1,2],[71,2,2,2,4]]],[4,3,3,4,7,[[160,1,1,4,5],[174,1,1,5,6],[181,1,1,6,7]]],[5,1,1,7,8,[[197,1,1,7,8]]],[6,3,3,8,11,[[216,3,3,8,11]]],[8,2,2,11,13,[[242,2,2,11,13]]],[9,4,4,13,17,[[279,2,2,13,15],[283,1,1,15,16],[286,1,1,16,17]]],[10,7,7,17,24,[[298,1,1,17,18],[302,1,1,18,19],[304,1,1,19,20],[308,1,1,20,21],[309,2,2,21,23],[312,1,1,23,24]]],[11,3,3,24,27,[[322,1,1,24,25],[329,1,1,25,26],[331,1,1,26,27]]],[13,2,2,27,29,[[372,1,1,27,28],[384,1,1,28,29]]],[16,1,1,29,30,[[426,1,1,29,30]]],[18,3,3,30,33,[[528,1,1,30,31],[548,1,1,31,32],[549,1,1,32,33]]],[19,1,1,33,34,[[632,1,1,33,34]]],[20,1,1,34,35,[[665,1,1,34,35]]],[22,2,2,35,37,[[704,1,1,35,36],[715,1,1,36,37]]],[25,2,2,37,39,[[815,2,2,37,39]]]],[1446,1832,2133,2140,5140,5495,5693,6120,6691,6693,6694,7355,7356,8349,8350,8451,8575,9024,9171,9231,9363,9397,9401,9511,9816,10001,10080,11312,11572,12718,14695,14992,15018,16534,17458,18143,18372,20747,20749]]],["parts",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13900]]],["staves",[37,33,[[1,27,25,0,25,[[74,5,5,0,5],[76,4,2,5,7],[79,2,2,7,9],[84,4,4,9,13],[86,6,6,13,19],[87,3,3,19,22],[88,2,2,22,24],[89,1,1,24,25]]],[3,4,4,25,29,[[120,4,4,25,29]]],[10,3,2,29,31,[[298,3,2,29,31]]],[13,3,2,31,33,[[371,3,2,31,33]]]],[2208,2209,2210,2222,2223,2278,2279,2386,2387,2543,2544,2546,2547,2608,2609,2618,2619,2631,2632,2638,2639,2640,2699,2703,2727,3749,3751,3754,3757,8992,8993,11276,11277]]],["strength",[2,1,[[17,2,1,0,1,[[453,2,1,0,1]]]],[13289]]],["themselves",[12,9,[[0,6,5,0,5,[[20,2,2,0,2],[29,1,1,2,3],[31,1,1,3,4],[42,2,1,4,5]]],[1,4,2,5,7,[[75,2,1,5,6],[85,2,1,6,7]]],[9,1,1,7,8,[[276,1,1,7,8]]],[12,1,1,8,9,[[356,1,1,8,9]]]],[541,542,870,944,1322,2244,2582,8248,10916]]]]},{"k":"H906","v":[["linen",[23,19,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[2,8,4,2,6,[[95,2,1,2,3],[105,6,3,3,6]]],[8,2,2,6,8,[[237,1,1,6,7],[257,1,1,7,8]]],[9,1,1,8,9,[[272,1,1,8,9]]],[12,1,1,9,10,[[352,1,1,9,10]]],[25,6,6,10,16,[[810,3,3,10,13],[811,3,3,13,16]]],[26,3,3,16,19,[[859,1,1,16,17],[861,2,2,17,19]]]],[2335,2692,2859,3205,3224,3233,7258,7805,8171,10818,20624,20625,20633,20635,20639,20640,22020,22087,22088]]]]},{"k":"H907","v":[["*",[5,5,[[17,1,1,0,1,[[446,1,1,0,1]]],[22,2,2,1,3,[[694,1,1,1,2],[722,1,1,2,3]]],[23,2,2,3,5,[[792,1,1,3,4],[794,1,1,4,5]]]],[13111,17975,18558,20110,20202]]],["liars",[2,2,[[22,1,1,0,1,[[722,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]]],[18558,20202]]],["lies",[3,3,[[17,1,1,0,1,[[446,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[13111,17975,20110]]]]},{"k":"H908","v":[["*",[2,2,[[10,1,1,0,1,[[302,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]]],[9184,12409]]],["devised",[1,1,[[10,1,1,0,1,[[302,1,1,0,1]]]],[9184]]],["feignest",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12409]]]]},{"k":"H909","v":[["alone",[3,3,[[18,1,1,0,1,[[579,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]],[27,1,1,2,3,[[869,1,1,2,3]]]],[15528,17959,22203]]]]},{"k":"H910","v":[["*",[11,11,[[2,1,1,0,1,[[102,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[4,2,2,2,4,[[184,1,1,2,3],[185,1,1,3,4]]],[18,1,1,4,5,[[481,1,1,4,5]]],[22,1,1,5,6,[[705,1,1,5,6]]],[23,2,2,6,8,[[759,1,1,6,7],[793,1,1,7,8]]],[24,2,2,8,10,[[797,1,1,8,9],[799,1,1,9,10]]],[32,1,1,10,11,[[899,1,1,10,11]]]],[3098,4425,5770,5838,13973,18161,19332,20158,20311,20382,22678]]],["alone",[7,7,[[2,1,1,0,1,[[102,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[4,2,2,2,4,[[184,1,1,2,3],[185,1,1,3,4]]],[23,2,2,4,6,[[759,1,1,4,5],[793,1,1,5,6]]],[24,1,1,6,7,[[799,1,1,6,7]]]],[3098,4425,5770,5838,19332,20158,20382]]],["desolate",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18161]]],["only",[1,1,[[18,1,1,0,1,[[481,1,1,0,1]]]],[13973]]],["solitarily",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22678]]],["solitary",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20311]]]]},{"k":"H911","v":[["Bedad",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1075,10298]]]]},{"k":"H912","v":[["Bedeiah",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12287]]]]},{"k":"H913","v":[["*",[6,6,[[3,1,1,0,1,[[147,1,1,0,1]]],[22,1,1,1,2,[[679,1,1,1,2]]],[25,3,3,2,5,[[823,2,2,2,4],[828,1,1,4,5]]],[37,1,1,5,6,[[914,1,1,5,6]]]],[4686,17679,20994,20996,21133,22932]]],["+",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22932]]],["tin",[5,5,[[3,1,1,0,1,[[147,1,1,0,1]]],[22,1,1,1,2,[[679,1,1,1,2]]],[25,3,3,2,5,[[823,2,2,2,4],[828,1,1,4,5]]]],[4686,17679,20994,20996,21133]]]]},{"k":"H914","v":[["*",[42,40,[[0,5,5,0,5,[[0,5,5,0,5]]],[1,1,1,5,6,[[75,1,1,5,6]]],[2,8,7,6,13,[[90,1,1,6,7],[94,1,1,7,8],[99,1,1,8,9],[100,1,1,9,10],[109,4,3,10,13]]],[3,3,3,13,16,[[124,1,1,13,14],[132,2,2,14,16]]],[4,5,5,16,21,[[156,1,1,16,17],[162,1,1,17,18],[171,2,2,18,20],[181,1,1,20,21]]],[10,1,1,21,22,[[298,1,1,21,22]]],[12,3,3,22,25,[[349,1,1,22,23],[360,1,1,23,24],[362,1,1,24,25]]],[13,1,1,25,26,[[391,1,1,25,26]]],[14,6,6,26,32,[[408,1,1,26,27],[410,1,1,27,28],[411,1,1,28,29],[412,3,3,29,32]]],[15,3,3,32,35,[[421,1,1,32,33],[422,1,1,33,34],[425,1,1,34,35]]],[22,3,2,35,37,[[734,2,1,35,36],[737,1,1,36,37]]],[25,3,3,37,40,[[823,1,1,37,38],[840,1,1,38,39],[843,1,1,39,40]]]],[3,5,6,13,17,2268,2762,2838,2987,3044,3342,3343,3344,3953,4203,4215,5045,5194,5408,5413,5700,9038,10728,10996,11047,11714,12172,12225,12238,12260,12263,12268,12513,12577,12674,18756,18802,21002,21462,21572]]],["+",[10,9,[[0,5,5,0,5,[[0,5,5,0,5]]],[3,1,1,5,6,[[124,1,1,5,6]]],[4,1,1,6,7,[[162,1,1,6,7]]],[22,2,1,7,8,[[734,2,1,7,8]]],[25,1,1,8,9,[[823,1,1,8,9]]]],[3,5,6,13,17,3953,5194,18756,21002]]],["asunder",[2,2,[[2,2,2,0,2,[[90,1,1,0,1],[94,1,1,1,2]]]],[2762,2838]]],["difference",[3,3,[[2,3,3,0,3,[[99,1,1,0,1],[100,1,1,1,2],[109,1,1,2,3]]]],[2987,3044,3343]]],["divide",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2268]]],["out",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21462]]],["separate",[4,4,[[4,3,3,0,3,[[171,2,2,0,2],[181,1,1,2,3]]],[10,1,1,3,4,[[298,1,1,3,4]]]],[5408,5413,5700,9038]]],["separated",[11,11,[[2,2,2,0,2,[[109,2,2,0,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[12,2,2,3,5,[[360,1,1,3,4],[362,1,1,4,5]]],[13,1,1,5,6,[[391,1,1,5,6]]],[14,3,3,6,9,[[410,1,1,6,7],[412,2,2,7,9]]],[15,1,1,9,10,[[425,1,1,9,10]]],[22,1,1,10,11,[[737,1,1,10,11]]]],[3342,3343,4203,10996,11047,11714,12225,12260,12268,12674,18802]]],["separation",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21572]]],["severed",[2,2,[[2,1,1,0,1,[[109,1,1,0,1]]],[4,1,1,1,2,[[156,1,1,1,2]]]],[3344,5045]]],["themselves",[5,5,[[12,1,1,0,1,[[349,1,1,0,1]]],[14,2,2,1,3,[[408,1,1,1,2],[411,1,1,2,3]]],[15,2,2,3,5,[[421,1,1,3,4],[422,1,1,4,5]]]],[10728,12172,12238,12513,12577]]],["yourselves",[2,2,[[3,1,1,0,1,[[132,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]]],[4215,12263]]]]},{"k":"H915","v":[["piece",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22407]]]]},{"k":"H916","v":[["bdellium",[2,2,[[0,1,1,0,1,[[1,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]]],[42,4031]]]]},{"k":"H917","v":[["Bedan",[2,2,[[8,1,1,0,1,[[247,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]]],[7471,10552]]]]},{"k":"H918","v":[["repair",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11943]]]]},{"k":"H919","v":[["*",[10,8,[[11,8,6,0,6,[[324,7,5,0,5],[334,1,1,5,6]]],[25,2,2,6,8,[[828,2,2,6,8]]]],[9855,9856,9857,9858,9862,10150,21130,21148]]],["+",[2,2,[[25,2,2,0,2,[[828,2,2,0,2]]]],[21130,21148]]],["breach",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9855]]],["breaches",[7,6,[[11,7,6,0,6,[[324,6,5,0,5],[334,1,1,5,6]]]],[9855,9856,9857,9858,9862,10150]]]]},{"k":"H920","v":[["Bidkar",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9781]]]]},{"k":"H921","v":[["*",[2,2,[[22,1,1,0,1,[[694,1,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[17980,21851]]],["+",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17980]]],["scatter",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21851]]]]},{"k":"H922","v":[["*",[3,3,[[0,1,1,0,1,[[0,1,1,0,1]]],[22,1,1,1,2,[[712,1,1,1,2]]],[23,1,1,2,3,[[748,1,1,2,3]]]],[1,18314,19050]]],["emptiness",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18314]]],["void",[2,2,[[0,1,1,0,1,[[0,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]]],[1,19050]]]]},{"k":"H923","v":[["red",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12708]]]]},{"k":"H924","v":[["haste",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12133]]]]},{"k":"H925","v":[["bright",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13790]]]]},{"k":"H926","v":[["*",[38,38,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[6,1,1,2,3,[[230,1,1,2,3]]],[8,1,1,3,4,[[263,1,1,3,4]]],[9,1,1,4,5,[[270,1,1,4,5]]],[13,3,3,5,8,[[392,1,1,5,6],[398,1,1,6,7],[401,1,1,7,8]]],[16,3,3,8,11,[[427,1,1,8,9],[431,1,1,9,10],[433,1,1,10,11]]],[17,5,5,11,16,[[439,1,1,11,12],[456,1,1,12,13],[457,1,1,13,14],[458,2,2,14,16]]],[18,10,10,16,26,[[479,1,1,16,17],[483,3,3,17,20],[507,1,1,20,21],[525,1,1,21,22],[560,2,2,22,24],[567,1,1,24,25],[581,1,1,25,26]]],[19,2,2,26,28,[[647,1,1,26,27],[655,1,1,27,28]]],[20,3,3,28,31,[[663,1,1,28,29],[665,1,1,29,30],[666,1,1,30,31]]],[22,2,2,31,33,[[691,1,1,31,32],[699,1,1,32,33]]],[23,1,1,33,34,[[795,1,1,33,34]]],[25,2,2,34,36,[[808,1,1,34,35],[827,1,1,35,36]]],[26,1,1,36,37,[[860,1,1,36,37]]],[35,1,1,37,38,[[906,1,1,37,38]]]],[1361,1935,7095,7963,8121,11752,11893,11987,12733,12807,12831,12935,13361,13399,13434,13435,13950,13987,13988,13995,14326,14639,15256,15258,15385,15600,16975,17218,17399,17438,17461,17914,18038,20244,20604,21118,22080,22805]]],["affrighted",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20244]]],["afraid",[3,3,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,1,1,1,2,[[560,1,1,1,2]]],[22,1,1,2,3,[[691,1,1,2,3]]]],[13361,15256,17914]]],["amazed",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]]],[1935,7095]]],["dismayed",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18038]]],["haste",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11987]]],["hasted",[1,1,[[16,1,1,0,1,[[431,1,1,0,1]]]],[12807]]],["hastened",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12831]]],["hasteth",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17218]]],["hastily",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16975]]],["hasty",[2,2,[[20,2,2,0,2,[[665,1,1,0,1],[666,1,1,1,2]]]],[17438,17461]]],["out",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11752]]],["rash",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17399]]],["speedily",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12733]]],["speedy",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22805]]],["trouble",[2,2,[[13,1,1,0,1,[[398,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[11893,22080]]],["troubled",[12,12,[[0,1,1,0,1,[[44,1,1,0,1]]],[8,1,1,1,2,[[263,1,1,1,2]]],[9,1,1,2,3,[[270,1,1,2,3]]],[17,2,2,3,5,[[439,1,1,3,4],[458,1,1,4,5]]],[18,5,5,5,10,[[507,1,1,5,6],[525,1,1,6,7],[560,1,1,7,8],[567,1,1,8,9],[581,1,1,9,10]]],[25,2,2,10,12,[[808,1,1,10,11],[827,1,1,11,12]]]],[1361,7963,8121,12935,13434,14326,14639,15258,15385,15600,20604,21118]]],["troubleth",[2,2,[[17,2,2,0,2,[[457,1,1,0,1],[458,1,1,1,2]]]],[13399,13435]]],["vex",[1,1,[[18,1,1,0,1,[[479,1,1,0,1]]]],[13950]]],["vexed",[3,3,[[18,3,3,0,3,[[483,3,3,0,3]]]],[13987,13988,13995]]]]},{"k":"H927","v":[["*",[11,10,[[26,11,10,0,10,[[851,1,1,0,1],[852,1,1,1,2],[853,3,2,2,4],[854,3,3,4,7],[855,1,1,7,8],[856,2,2,8,10]]]],[21783,21831,21842,21856,21880,21883,21884,21924,21948,21961]]],["haste",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[852,1,1,1,2],[855,1,1,2,3]]]],[21783,21831,21924]]],["trouble",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[854,1,1,1,2]]]],[21856,21884]]],["troubled",[6,6,[[26,6,6,0,6,[[853,2,2,0,2],[854,2,2,2,4],[856,2,2,4,6]]]],[21842,21856,21880,21883,21948,21961]]]]},{"k":"H928","v":[["*",[4,4,[[2,1,1,0,1,[[115,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]],[22,1,1,2,3,[[743,1,1,2,3]]],[23,1,1,3,4,[[759,1,1,3,4]]]],[3540,15146,18920,19323]]],["+",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3540]]],["terrors",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19323]]],["trouble",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[22,1,1,1,2,[[743,1,1,1,2]]]],[15146,18920]]]]},{"k":"H929","v":[["*",[190,172,[[0,21,19,0,19,[[0,3,3,0,3],[1,1,1,3,4],[2,1,1,4,5],[5,2,2,5,7],[6,7,5,7,12],[7,3,3,12,15],[8,1,1,15,16],[33,1,1,16,17],[35,1,1,17,18],[46,1,1,18,19]]],[1,18,18,19,37,[[57,2,2,19,21],[58,5,5,21,26],[60,2,2,26,28],[61,2,2,28,30],[62,3,3,30,33],[68,1,1,33,34],[69,1,1,34,35],[71,2,2,35,37]]],[2,31,25,37,62,[[90,1,1,37,38],[94,1,1,38,39],[96,3,3,39,42],[100,5,5,42,47],[107,2,1,47,48],[108,1,1,48,49],[109,6,3,49,52],[113,2,2,52,54],[114,1,1,54,55],[115,1,1,55,56],[116,8,6,56,62]]],[3,15,12,62,74,[[119,5,3,62,65],[124,1,1,65,66],[134,2,1,66,67],[147,5,5,67,72],[148,1,1,72,73],[151,1,1,73,74]]],[4,18,17,74,91,[[154,1,1,74,75],[155,1,1,75,76],[156,1,1,76,77],[157,1,1,77,78],[159,1,1,78,79],[163,1,1,79,80],[165,1,1,80,81],[166,3,2,81,83],[172,1,1,83,84],[179,1,1,84,85],[180,4,4,85,89],[182,1,1,89,90],[184,1,1,90,91]]],[5,4,4,91,95,[[194,2,2,91,93],[197,1,1,93,94],[207,1,1,94,95]]],[6,1,1,95,96,[[230,1,1,95,96]]],[8,1,1,96,97,[[252,1,1,96,97]]],[10,2,2,97,99,[[294,1,1,97,98],[308,1,1,98,99]]],[11,2,2,99,101,[[315,2,2,99,101]]],[13,2,1,101,102,[[398,2,1,101,102]]],[14,2,2,102,104,[[403,2,2,102,104]]],[15,5,4,104,108,[[414,3,2,104,106],[421,1,1,106,107],[422,1,1,107,108]]],[17,3,3,108,111,[[447,1,1,108,109],[453,1,1,109,110],[470,1,1,110,111]]],[18,11,11,111,122,[[485,1,1,111,112],[513,1,1,112,113],[526,2,2,113,115],[527,1,1,115,116],[550,1,1,116,117],[581,1,1,117,118],[584,1,1,118,119],[612,1,1,119,120],[624,1,1,120,121],[625,1,1,121,122]]],[19,2,2,122,124,[[639,1,1,122,123],[657,1,1,123,124]]],[20,4,3,124,127,[[661,4,3,124,127]]],[22,5,4,127,131,[[696,2,1,127,128],[708,1,1,128,129],[724,1,1,129,130],[741,1,1,130,131]]],[23,18,17,131,148,[[751,2,2,131,133],[753,1,1,133,134],[756,1,1,134,135],[759,1,1,135,136],[760,1,1,136,137],[763,1,1,137,138],[765,1,1,138,139],[771,1,1,139,140],[775,1,1,140,141],[776,1,1,141,142],[777,3,2,142,144],[778,1,1,144,145],[780,1,1,145,146],[794,1,1,146,147],[795,1,1,147,148]]],[25,12,11,148,159,[[809,1,1,148,149],[815,4,4,149,153],[826,1,1,153,154],[830,2,2,154,156],[833,2,1,156,157],[837,1,1,157,158],[845,1,1,158,159]]],[28,3,3,159,162,[[876,2,2,159,161],[877,1,1,161,162]]],[31,3,3,162,165,[[891,2,2,162,164],[892,1,1,164,165]]],[32,1,1,165,166,[[897,1,1,165,166]]],[34,1,1,166,167,[[904,1,1,166,167]]],[35,1,1,167,168,[[906,1,1,167,168]]],[36,1,1,168,169,[[909,1,1,168,169]]],[37,3,3,169,172,[[912,1,1,169,170],[918,1,1,170,171],[924,1,1,171,172]]]],[23,24,25,50,69,144,157,161,167,173,180,182,184,200,203,215,1003,1046,1438,1727,1728,1751,1752,1761,1764,1767,1811,1813,1828,1845,1869,1879,1882,2039,2061,2123,2132,2747,2832,2900,2904,2905,2999,3000,3023,3036,3043,3274,3300,3333,3334,3343,3464,3467,3476,3546,3579,3580,3581,3596,3597,3598,3705,3733,3737,3956,4272,4673,4675,4690,4694,4711,4744,4848,4973,4982,5021,5067,5125,5223,5287,5294,5296,5441,5606,5615,5622,5637,5662,5717,5782,6004,6029,6121,6383,7102,7662,8877,9346,9585,9593,11903,12020,12022,12319,12321,12548,12585,13135,13279,13731,14019,14444,14660,14668,14678,15042,15585,15737,16183,16360,16381,16729,17281,17377,17378,17380,18003,18223,18587,18880,19139,19152,19185,19253,19318,19340,19414,19446,19601,19718,19774,19785,19787,19821,19871,20169,20274,20614,20744,20748,20750,20752,21096,21191,21194,21261,21370,21630,22309,22311,22333,22565,22566,22579,22641,22765,22790,22851,22903,22986,23083]]],["+",[5,4,[[2,1,1,0,1,[[113,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]],[13,2,1,2,3,[[398,2,1,2,3]]],[17,1,1,3,4,[[470,1,1,3,4]]]],[3464,9346,11903,13731]]],["beast",[83,76,[[0,4,4,0,4,[[5,1,1,0,1],[6,1,1,1,2],[7,1,1,2,3],[33,1,1,3,4]]],[1,15,15,4,19,[[57,2,2,4,6],[58,5,5,6,11],[60,1,1,11,12],[61,1,1,12,13],[62,3,3,13,16],[68,1,1,16,17],[71,2,2,17,19]]],[2,20,15,19,34,[[96,3,3,19,22],[100,2,2,22,24],[107,2,1,24,25],[109,5,3,25,28],[113,1,1,28,29],[116,7,5,29,34]]],[3,4,4,34,38,[[119,1,1,34,35],[124,1,1,35,36],[147,2,2,36,38]]],[4,3,3,38,41,[[156,1,1,38,39],[166,1,1,39,40],[179,1,1,40,41]]],[6,1,1,41,42,[[230,1,1,41,42]]],[15,3,2,42,44,[[414,3,2,42,44]]],[18,4,4,44,48,[[513,1,1,44,45],[550,1,1,45,46],[612,1,1,46,47],[624,1,1,47,48]]],[19,1,1,48,49,[[639,1,1,48,49]]],[20,2,2,49,51,[[661,2,2,49,51]]],[22,1,1,51,52,[[741,1,1,51,52]]],[23,12,11,52,63,[[751,1,1,52,53],[753,1,1,53,54],[765,1,1,54,55],[771,1,1,55,56],[775,1,1,56,57],[776,1,1,57,58],[777,3,2,58,60],[780,1,1,60,61],[794,1,1,61,62],[795,1,1,62,63]]],[25,9,9,63,72,[[815,4,4,63,67],[826,1,1,67,68],[830,2,2,68,70],[837,1,1,70,71],[845,1,1,71,72]]],[31,2,2,72,74,[[891,2,2,72,74]]],[35,1,1,74,75,[[906,1,1,74,75]]],[37,1,1,75,76,[[918,1,1,75,76]]]],[144,161,203,1003,1727,1728,1751,1752,1761,1764,1767,1813,1828,1869,1879,1882,2039,2123,2132,2900,2904,2905,3023,3036,3274,3333,3334,3343,3467,3579,3580,3581,3597,3598,3705,3956,4690,4711,5021,5296,5606,7102,12319,12321,14444,15042,16183,16360,16729,17378,17380,18880,19139,19185,19446,19601,19718,19774,19785,19787,19871,20169,20274,20744,20748,20750,20752,21096,21191,21194,21370,21630,22565,22566,22790,22986]]],["beasts",[49,45,[[0,4,3,0,3,[[6,3,2,0,2],[35,1,1,2,3]]],[1,1,1,3,4,[[60,1,1,3,4]]],[2,5,5,4,9,[[100,3,3,4,7],[109,1,1,7,8],[116,1,1,8,9]]],[3,4,3,9,12,[[134,2,1,9,10],[147,2,2,10,12]]],[4,4,4,12,16,[[166,2,2,12,14],[180,1,1,14,15],[184,1,1,15,16]]],[8,1,1,16,17,[[252,1,1,16,17]]],[10,1,1,17,18,[[294,1,1,17,18]]],[11,1,1,18,19,[[315,1,1,18,19]]],[14,2,2,19,21,[[403,2,2,19,21]]],[17,2,2,21,23,[[447,1,1,21,22],[453,1,1,22,23]]],[18,3,3,23,26,[[485,1,1,23,24],[526,2,2,24,26]]],[19,1,1,26,27,[[657,1,1,26,27]]],[20,2,2,27,29,[[661,2,2,27,29]]],[22,3,2,29,31,[[696,2,1,29,30],[708,1,1,30,31]]],[23,6,6,31,37,[[751,1,1,31,32],[756,1,1,32,33],[759,1,1,33,34],[760,1,1,34,35],[763,1,1,35,36],[778,1,1,36,37]]],[25,3,2,37,39,[[809,1,1,37,38],[833,2,1,38,39]]],[28,3,3,39,42,[[876,2,2,39,41],[877,1,1,41,42]]],[32,1,1,42,43,[[897,1,1,42,43]]],[34,1,1,43,44,[[904,1,1,43,44]]],[37,1,1,44,45,[[924,1,1,44,45]]]],[161,167,1046,1811,2999,3000,3043,3343,3596,4272,4675,4694,5294,5296,5637,5782,7662,8877,9593,12020,12022,13135,13279,14019,14660,14668,17281,17377,17378,18003,18223,19152,19253,19318,19340,19414,19821,20614,21261,22309,22311,22333,22641,22765,23083]]],["cattle",[53,51,[[0,13,13,0,13,[[0,3,3,0,3],[1,1,1,3,4],[2,1,1,4,5],[5,1,1,5,6],[6,3,3,6,9],[7,2,2,9,11],[8,1,1,11,12],[46,1,1,12,13]]],[1,2,2,13,15,[[61,1,1,13,14],[69,1,1,14,15]]],[2,5,5,15,20,[[90,1,1,15,16],[94,1,1,16,17],[108,1,1,17,18],[114,1,1,18,19],[115,1,1,19,20]]],[3,7,5,20,25,[[119,4,2,20,22],[147,1,1,22,23],[148,1,1,23,24],[151,1,1,24,25]]],[4,11,11,25,36,[[154,1,1,25,26],[155,1,1,26,27],[157,1,1,27,28],[159,1,1,28,29],[163,1,1,29,30],[165,1,1,30,31],[172,1,1,31,32],[180,3,3,32,35],[182,1,1,35,36]]],[5,4,4,36,40,[[194,2,2,36,38],[197,1,1,38,39],[207,1,1,39,40]]],[11,1,1,40,41,[[315,1,1,40,41]]],[15,2,2,41,43,[[421,1,1,41,42],[422,1,1,42,43]]],[18,4,4,43,47,[[527,1,1,43,44],[581,1,1,44,45],[584,1,1,45,46],[625,1,1,46,47]]],[22,1,1,47,48,[[724,1,1,47,48]]],[31,1,1,48,49,[[892,1,1,48,49]]],[36,1,1,49,50,[[909,1,1,49,50]]],[37,1,1,50,51,[[912,1,1,50,51]]]],[23,24,25,50,69,157,173,180,182,184,200,215,1438,1845,2061,2747,2832,3300,3476,3546,3733,3737,4673,4744,4848,4973,4982,5067,5125,5223,5287,5441,5615,5622,5662,5717,6004,6029,6121,6383,9585,12548,12585,14678,15585,15737,16381,18587,22579,22851,22903]]]]},{"k":"H930","v":[["behemoth",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13879]]]]},{"k":"H931","v":[["*",[16,9,[[1,2,1,0,1,[[78,2,1,0,1]]],[2,12,6,1,7,[[97,4,2,1,3],[103,8,4,3,7]]],[6,2,2,7,9,[[211,2,2,7,9]]]],[2356,2940,2941,3125,3128,3136,3139,6515,6516]]],["+",[2,2,[[6,2,2,0,2,[[211,2,2,0,2]]]],[6515,6516]]],["thumb",[6,6,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,5,5,1,6,[[97,1,1,1,2],[103,4,4,2,6]]]],[2356,2940,3125,3128,3136,3139]]],["thumbs",[1,1,[[2,1,1,0,1,[[97,1,1,0,1]]]],[2941]]],["toe",[6,6,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,5,5,1,6,[[97,1,1,1,2],[103,4,4,2,6]]]],[2356,2940,3125,3128,3136,3139]]],["toes",[1,1,[[2,1,1,0,1,[[97,1,1,0,1]]]],[2941]]]]},{"k":"H932","v":[["Bohan",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[204,1,1,1,2]]]],[6208,6310]]]]},{"k":"H933","v":[["spot",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3091]]]]},{"k":"H934","v":[["*",[12,11,[[2,12,11,0,11,[[102,11,10,0,10],[103,1,1,10,11]]]],[3054,3056,3071,3075,3076,3077,3078,3080,3090,3091,3167]]],["spot",[9,9,[[2,9,9,0,9,[[102,8,8,0,8],[103,1,1,8,9]]]],[3054,3056,3071,3075,3076,3077,3078,3080,3167]]],["spots",[3,2,[[2,3,2,0,2,[[102,3,2,0,2]]]],[3090,3091]]]]},{"k":"H935","v":[["*",[2563,2302,[[0,216,197,0,197,[[1,2,2,0,2],[3,2,2,2,4],[5,6,6,4,10],[6,7,6,10,16],[7,2,2,16,18],[9,3,2,18,20],[10,1,1,20,21],[11,3,3,21,24],[12,2,2,24,26],[13,3,3,26,29],[14,3,3,29,32],[15,3,3,32,35],[17,3,3,35,38],[18,11,11,38,49],[19,3,3,49,52],[21,1,1,52,53],[22,3,3,53,56],[23,10,9,56,65],[24,2,2,65,67],[25,3,3,67,70],[26,13,12,70,82],[27,1,1,82,83],[28,7,6,83,89],[29,8,6,89,95],[30,5,4,95,99],[31,4,4,99,103],[32,5,4,103,107],[33,5,5,107,112],[34,4,4,112,116],[36,10,9,116,125],[37,6,5,125,130],[38,6,4,130,134],[39,1,1,134,135],[40,8,7,135,142],[41,14,13,142,155],[42,13,11,155,166],[43,3,3,166,169],[44,5,5,169,174],[45,9,9,174,183],[46,9,8,183,191],[47,4,3,191,194],[48,2,2,194,196],[49,1,1,196,197]]],[1,124,114,197,311,[[50,3,2,197,199],[51,5,4,199,203],[52,4,4,203,207],[53,2,1,207,208],[54,3,3,208,211],[55,2,2,211,213],[56,2,2,213,215],[57,3,3,215,218],[58,1,1,218,219],[59,4,4,219,223],[60,1,1,223,224],[61,2,2,224,226],[62,2,2,226,228],[63,6,6,228,234],[64,4,4,234,238],[65,5,4,238,242],[66,2,2,242,244],[67,10,10,244,254],[68,5,5,254,259],[69,2,2,259,261],[70,1,1,261,262],[71,4,4,262,266],[72,4,4,266,270],[73,2,2,270,272],[74,1,1,272,273],[75,2,2,273,275],[76,1,1,275,276],[77,4,4,276,280],[78,1,1,280,281],[79,1,1,281,282],[81,3,3,282,285],[82,2,2,285,287],[83,4,4,287,291],[84,13,9,291,300],[85,5,4,300,304],[86,1,1,304,305],[87,1,1,305,306],[88,1,1,306,307],[89,5,4,307,311]]],[2,81,74,311,385,[[91,2,2,311,313],[93,8,7,313,320],[94,7,7,320,327],[95,3,3,327,330],[96,3,2,330,332],[98,1,1,332,333],[99,3,3,333,336],[100,2,2,336,338],[101,2,2,338,340],[102,3,3,340,343],[103,12,10,343,353],[104,2,2,353,355],[105,10,9,355,364],[106,4,3,364,367],[107,1,1,367,368],[108,2,2,368,370],[109,1,1,370,371],[110,2,2,371,373],[111,1,1,373,374],[112,5,4,374,378],[113,1,1,378,379],[114,3,3,379,382],[115,3,3,382,385]]],[3,91,85,385,470,[[120,11,11,385,396],[121,5,4,396,400],[122,4,4,400,404],[123,2,2,404,406],[124,3,3,406,409],[126,2,2,409,411],[129,5,5,411,416],[130,7,6,416,422],[131,4,3,422,425],[132,2,2,425,427],[133,1,1,427,428],[134,1,1,428,429],[135,2,2,429,431],[136,7,7,431,438],[137,4,4,438,442],[138,9,8,442,450],[139,1,1,450,451],[141,2,2,451,453],[143,3,2,453,455],[147,7,6,455,461],[148,5,5,461,466],[149,2,2,466,468],[150,2,2,468,470]]],[4,106,99,470,569,[[153,10,10,470,480],[156,5,5,480,485],[158,3,3,485,488],[159,3,2,488,490],[160,2,2,490,492],[161,5,5,492,497],[162,1,1,497,498],[163,6,5,498,503],[164,6,6,503,509],[165,1,1,509,510],[166,1,1,510,511],[168,1,1,511,512],[169,2,2,512,514],[170,4,3,514,517],[171,1,1,517,518],[172,1,1,518,519],[173,2,2,519,521],[174,1,1,521,522],[175,13,10,522,532],[176,3,3,532,535],[177,1,1,535,536],[178,6,5,536,541],[179,1,1,541,542],[180,7,7,542,549],[181,3,3,549,552],[182,4,4,552,556],[183,7,7,556,563],[184,3,3,563,566],[185,3,3,566,569]]],[5,59,55,569,624,[[187,1,1,569,570],[188,9,7,570,577],[189,3,3,577,580],[191,1,1,580,581],[192,5,5,581,586],[193,1,1,586,587],[194,3,3,587,590],[195,4,4,590,594],[196,5,5,594,599],[197,3,3,599,602],[199,3,2,602,604],[200,1,1,604,605],[201,1,1,605,606],[204,4,4,606,610],[206,1,1,610,611],[207,1,1,611,612],[208,2,2,612,614],[209,7,6,614,620],[210,4,4,620,624]]],[6,95,88,624,712,[[211,2,2,624,626],[212,1,1,626,627],[213,5,5,627,632],[214,3,3,632,635],[215,3,3,635,638],[216,6,5,638,643],[217,5,4,643,647],[218,2,2,647,649],[219,10,10,649,659],[221,7,6,659,665],[222,1,1,665,666],[223,8,7,666,673],[224,2,2,673,675],[225,3,2,675,677],[226,2,2,677,679],[227,2,2,679,681],[228,13,12,681,693],[229,12,11,693,704],[230,4,4,704,708],[231,4,4,708,712]]],[7,18,16,712,728,[[232,4,3,712,715],[233,5,5,715,720],[234,7,6,720,726],[235,2,2,726,728]]],[8,169,152,728,880,[[236,4,4,728,732],[237,7,7,732,739],[238,1,1,739,740],[239,10,8,740,748],[240,4,4,748,752],[241,1,1,752,753],[242,3,2,753,755],[243,1,1,755,756],[244,12,9,756,765],[245,11,10,765,775],[246,5,4,775,779],[247,2,2,779,781],[248,3,3,781,784],[249,3,3,784,787],[250,6,6,787,793],[251,10,8,793,801],[252,11,10,801,811],[253,4,4,811,815],[254,5,5,815,820],[255,13,12,820,832],[256,5,4,832,836],[257,4,3,836,839],[258,4,3,839,842],[259,2,1,842,843],[260,12,12,843,855],[261,7,7,855,862],[262,3,3,862,865],[263,3,3,865,868],[264,3,2,868,870],[265,6,6,870,876],[266,4,4,876,880]]],[9,148,124,880,1004,[[267,4,3,880,883],[268,5,4,883,887],[269,13,8,887,895],[270,5,5,895,900],[271,11,10,900,910],[272,4,4,910,914],[273,2,1,914,915],[274,2,2,915,917],[275,2,2,917,919],[276,5,4,919,923],[277,5,5,923,928],[278,8,5,928,933],[279,11,8,933,941],[280,11,8,941,949],[281,10,9,949,958],[282,6,6,958,964],[283,10,10,964,974],[284,3,3,974,977],[285,12,11,977,988],[286,7,6,988,994],[289,4,4,994,998],[290,8,6,998,1004]]],[10,114,103,1004,1107,[[291,14,13,1004,1017],[292,6,5,1017,1022],[293,5,5,1022,1027],[294,2,2,1027,1029],[297,2,2,1029,1031],[298,6,6,1031,1037],[299,3,2,1037,1039],[300,10,9,1039,1048],[301,5,3,1048,1051],[302,4,4,1051,1055],[303,12,12,1055,1067],[304,12,9,1067,1076],[305,2,2,1076,1078],[306,2,2,1078,1080],[307,5,5,1080,1085],[308,2,2,1085,1087],[309,4,4,1087,1091],[310,5,5,1091,1096],[311,6,5,1096,1101],[312,7,6,1101,1107]]],[11,152,129,1107,1236,[[313,1,1,1107,1108],[314,2,2,1108,1110],[315,2,2,1110,1112],[316,15,14,1112,1126],[317,12,11,1126,1137],[318,6,5,1137,1142],[319,11,7,1142,1149],[320,5,4,1149,1153],[321,13,11,1153,1164],[322,14,10,1164,1174],[323,11,9,1174,1183],[324,6,4,1183,1187],[325,2,1,1187,1188],[326,2,2,1188,1190],[327,3,3,1190,1193],[328,3,3,1193,1196],[329,2,2,1196,1198],[330,5,4,1198,1202],[331,10,9,1202,1211],[332,6,4,1211,1215],[333,1,1,1215,1216],[334,4,4,1216,1220],[335,6,6,1220,1226],[336,3,3,1226,1229],[337,7,7,1229,1236]]],[12,62,58,1236,1294,[[339,2,2,1236,1238],[341,3,3,1238,1241],[342,2,2,1241,1243],[344,2,2,1243,1245],[346,2,2,1245,1247],[347,4,4,1247,1251],[348,7,7,1251,1258],[349,9,9,1258,1267],[350,4,3,1267,1270],[351,2,2,1270,1272],[352,1,1,1272,1273],[353,3,3,1273,1276],[354,2,1,1276,1277],[355,2,2,1277,1279],[356,8,6,1279,1285],[357,1,1,1285,1286],[358,4,4,1286,1290],[359,2,2,1290,1292],[361,1,1,1292,1293],[364,1,1,1293,1294]]],[13,159,139,1294,1433,[[367,2,2,1294,1296],[368,1,1,1296,1297],[371,3,3,1297,1300],[372,3,2,1300,1302],[373,4,4,1302,1306],[374,3,2,1306,1308],[375,11,8,1308,1316],[376,3,3,1316,1319],[377,2,2,1319,1321],[378,5,4,1321,1325],[379,2,2,1325,1327],[380,2,2,1327,1329],[381,4,4,1329,1333],[382,2,2,1333,1335],[383,2,1,1335,1336],[384,5,4,1336,1340],[385,1,1,1340,1341],[386,13,11,1341,1352],[387,1,1,1352,1353],[388,4,3,1353,1356],[389,13,11,1356,1367],[390,9,8,1367,1375],[391,8,6,1375,1381],[392,3,3,1381,1384],[393,1,1,1384,1385],[394,9,9,1385,1394],[395,9,8,1394,1402],[396,8,7,1402,1409],[397,6,6,1409,1415],[398,7,6,1415,1421],[399,2,2,1421,1423],[400,6,5,1423,1428],[401,1,1,1428,1429],[402,4,4,1429,1433]]],[14,17,16,1433,1449,[[404,2,2,1433,1435],[405,3,2,1435,1437],[409,2,2,1437,1439],[410,6,6,1439,1445],[411,2,2,1445,1447],[412,2,2,1447,1449]]],[15,49,44,1449,1493,[[413,2,2,1449,1451],[414,6,6,1451,1457],[415,1,1,1457,1458],[416,3,3,1458,1461],[417,1,1,1461,1462],[418,6,3,1462,1465],[419,1,1,1465,1466],[420,4,4,1466,1470],[421,5,4,1470,1474],[422,7,7,1474,1481],[423,1,1,1481,1482],[424,1,1,1482,1483],[425,11,10,1483,1493]]],[16,37,31,1493,1524,[[426,5,4,1493,1497],[427,6,4,1497,1501],[428,1,1,1501,1502],[429,8,6,1502,1508],[430,7,6,1508,1514],[431,6,6,1514,1520],[432,1,1,1520,1521],[433,1,1,1521,1522],[434,2,2,1522,1524]]],[17,52,46,1524,1570,[[436,8,7,1524,1531],[437,6,3,1531,1534],[438,5,5,1534,1539],[439,1,1,1539,1540],[440,2,2,1540,1542],[441,2,2,1542,1544],[444,1,1,1544,1545],[447,1,1,1545,1546],[448,1,1,1546,1547],[449,2,2,1547,1549],[450,1,1,1549,1550],[452,1,1,1550,1551],[454,1,1,1551,1552],[455,1,1,1552,1553],[456,1,1,1553,1554],[457,2,2,1554,1556],[458,1,1,1556,1557],[462,1,1,1557,1558],[463,1,1,1558,1559],[464,1,1,1559,1560],[465,2,1,1560,1561],[469,1,1,1561,1562],[472,2,2,1562,1564],[473,3,3,1564,1567],[476,2,2,1567,1569],[477,2,1,1569,1570]]],[18,74,72,1570,1642,[[482,1,1,1570,1571],[495,1,1,1571,1572],[499,1,1,1572,1573],[501,2,2,1573,1575],[503,1,1,1575,1576],[512,1,1,1576,1577],[513,1,1,1577,1578],[514,2,2,1578,1580],[517,1,1,1580,1581],[518,1,1,1581,1582],[519,1,1,1582,1583],[520,2,2,1583,1585],[521,1,1,1585,1586],[522,2,2,1586,1588],[526,1,1,1588,1589],[527,1,1,1589,1590],[532,1,1,1590,1591],[540,1,1,1591,1592],[542,1,1,1592,1593],[543,3,3,1593,1596],[546,3,3,1596,1599],[548,3,3,1599,1602],[550,1,1,1602,1603],[551,1,1,1603,1604],[555,3,3,1604,1607],[556,2,2,1607,1609],[563,1,1,1609,1610],[565,1,1,1610,1611],[567,1,1,1611,1612],[572,2,2,1612,1614],[573,3,2,1614,1616],[575,1,1,1616,1617],[577,2,2,1617,1619],[578,1,1,1619,1620],[579,2,2,1620,1622],[582,6,6,1622,1628],[586,2,2,1628,1630],[595,3,3,1630,1633],[596,3,3,1633,1636],[598,2,2,1636,1638],[603,2,1,1638,1639],[609,2,2,1639,1641],[620,1,1,1641,1642]]],[19,34,31,1642,1673,[[628,3,2,1642,1644],[629,2,2,1644,1646],[630,1,1,1646,1647],[631,1,1,1647,1648],[633,4,4,1648,1652],[634,2,2,1652,1654],[637,1,1,1654,1655],[638,4,3,1655,1658],[640,1,1,1658,1659],[645,4,3,1659,1662],[648,1,1,1662,1663],[649,1,1,1663,1664],[650,3,3,1664,1667],[651,2,2,1667,1669],[653,1,1,1669,1670],[654,1,1,1670,1671],[655,1,1,1671,1672],[658,1,1,1672,1673]]],[20,15,15,1673,1688,[[659,2,2,1673,1675],[660,2,2,1675,1677],[661,1,1,1677,1678],[663,3,3,1678,1681],[664,1,1,1681,1682],[666,1,1,1682,1683],[667,1,1,1683,1684],[669,2,2,1684,1686],[670,2,2,1686,1688]]],[21,10,9,1688,1697,[[671,1,1,1688,1689],[672,2,2,1689,1691],[673,1,1,1691,1692],[674,3,2,1692,1694],[675,1,1,1694,1695],[678,2,2,1695,1697]]],[22,123,112,1697,1809,[[679,3,3,1697,1700],[680,3,3,1700,1703],[681,1,1,1703,1704],[683,2,2,1704,1706],[685,5,4,1706,1710],[688,2,2,1710,1712],[691,5,5,1712,1717],[692,3,3,1717,1720],[694,2,2,1720,1722],[697,2,2,1722,1724],[698,1,1,1724,1725],[699,2,2,1725,1727],[700,1,1,1727,1728],[701,1,1,1728,1729],[702,1,1,1729,1730],[704,2,2,1730,1732],[705,3,3,1732,1735],[706,1,1,1735,1736],[708,4,4,1736,1740],[709,1,1,1740,1741],[710,1,1,1741,1742],[713,3,2,1742,1744],[714,3,3,1744,1747],[715,10,9,1747,1756],[716,1,1,1756,1757],[717,4,2,1757,1759],[718,1,1,1759,1760],[719,3,3,1760,1763],[720,1,1,1763,1764],[721,3,3,1764,1767],[722,1,1,1767,1768],[723,2,2,1768,1770],[724,1,1,1770,1771],[725,6,4,1771,1775],[726,3,3,1775,1778],[727,3,3,1778,1781],[728,1,1,1781,1782],[729,1,1,1782,1783],[730,1,1,1783,1784],[734,2,2,1784,1786],[735,1,1,1786,1787],[736,1,1,1787,1788],[737,3,3,1788,1791],[738,11,9,1791,1800],[740,1,1,1800,1801],[741,2,2,1801,1803],[744,8,6,1803,1809]]],[23,213,197,1809,2006,[[745,1,1,1809,1810],[746,4,3,1810,1813],[747,2,2,1813,1815],[748,5,5,1815,1820],[749,2,2,1820,1822],[750,5,5,1822,1827],[751,3,3,1827,1830],[752,3,3,1830,1833],[753,4,3,1833,1836],[754,2,2,1836,1838],[755,3,3,1838,1841],[756,1,1,1841,1842],[757,2,2,1842,1844],[758,2,2,1844,1846],[759,2,2,1846,1848],[760,4,4,1848,1852],[761,13,11,1852,1863],[762,1,1,1863,1864],[763,4,4,1864,1868],[764,2,2,1868,1870],[765,1,1,1870,1871],[766,3,3,1871,1874],[767,5,5,1874,1879],[768,1,1,1879,1880],[769,3,3,1880,1883],[770,3,3,1883,1886],[771,6,6,1886,1892],[772,3,3,1892,1895],[774,1,1,1895,1896],[775,6,6,1896,1902],[776,7,6,1902,1908],[777,3,3,1908,1911],[778,2,2,1911,1913],[779,5,4,1913,1917],[780,9,7,1917,1924],[781,4,4,1924,1928],[782,3,3,1928,1931],[783,4,4,1931,1935],[784,9,7,1935,1942],[785,6,5,1942,1947],[786,8,6,1947,1953],[787,4,3,1953,1956],[788,5,5,1956,1961],[789,1,1,1961,1962],[790,6,5,1962,1967],[791,2,2,1967,1969],[792,5,5,1969,1974],[793,10,9,1974,1983],[794,6,6,1983,1989],[795,13,13,1989,2002],[796,4,4,2002,2006]]],[24,10,9,2006,2015,[[797,5,4,2006,2010],[799,1,1,2010,2011],[800,2,2,2011,2013],[801,2,2,2013,2015]]],[25,190,164,2015,2179,[[802,1,1,2015,2016],[803,1,1,2016,2017],[804,5,4,2017,2021],[805,1,1,2021,2022],[806,1,1,2022,2023],[807,1,1,2023,2024],[808,13,10,2024,2034],[809,6,6,2034,2040],[810,2,1,2040,2041],[811,4,3,2041,2044],[812,5,5,2044,2049],[813,2,2,2049,2051],[814,1,1,2051,2052],[815,7,5,2052,2057],[817,4,4,2057,2061],[818,6,5,2061,2066],[820,3,2,2066,2068],[821,10,10,2068,2078],[822,7,6,2078,2084],[823,2,2,2084,2086],[824,10,7,2086,2093],[825,4,4,2093,2097],[827,2,2,2097,2099],[828,1,1,2099,2100],[829,1,1,2100,2101],[830,1,1,2101,2102],[831,3,3,2102,2105],[833,2,2,2105,2107],[834,12,9,2107,2116],[835,1,1,2116,2117],[837,6,5,2117,2122],[838,5,5,2122,2127],[839,8,8,2127,2135],[840,3,3,2135,2138],[841,10,10,2138,2148],[842,3,3,2148,2151],[843,4,4,2151,2155],[844,4,4,2155,2159],[845,11,10,2159,2169],[847,10,5,2169,2174],[848,6,4,2174,2178],[849,1,1,2178,2179]]],[26,43,35,2179,2214,[[850,6,4,2179,2183],[851,1,1,2183,2184],[857,4,3,2184,2187],[858,6,6,2187,2193],[859,6,5,2193,2198],[860,20,16,2198,2214]]],[27,11,10,2214,2224,[[865,1,1,2214,2215],[867,1,1,2215,2216],[868,1,1,2216,2217],[870,4,3,2217,2220],[871,1,1,2220,2221],[872,1,1,2221,2222],[874,2,2,2222,2224]]],[28,8,8,2224,2232,[[876,2,2,2224,2226],[877,3,3,2226,2229],[878,3,3,2229,2232]]],[29,13,12,2232,2244,[[882,4,3,2232,2235],[883,3,3,2235,2238],[884,2,2,2238,2240],[886,3,3,2240,2243],[887,1,1,2243,2244]]],[30,4,3,2244,2247,[[888,4,3,2244,2247]]],[31,5,4,2247,2251,[[889,3,2,2247,2249],[890,1,1,2249,2250],[891,1,1,2250,2251]]],[32,11,10,2251,2261,[[893,3,2,2251,2253],[895,2,2,2253,2255],[896,2,2,2255,2257],[897,2,2,2257,2259],[899,2,2,2259,2261]]],[33,1,1,2261,2262,[[902,1,1,2261,2262]]],[34,6,5,2262,2267,[[903,2,2,2262,2264],[904,2,1,2264,2265],[905,2,2,2265,2267]]],[35,3,2,2267,2269,[[907,2,1,2267,2268],[908,1,1,2268,2269]]],[36,8,7,2269,2276,[[909,5,5,2269,2274],[910,3,2,2274,2276]]],[37,22,19,2276,2295,[[911,2,1,2276,2277],[912,1,1,2277,2278],[913,1,1,2278,2279],[915,1,1,2279,2280],[916,4,2,2280,2282],[918,4,4,2282,2286],[919,1,1,2286,2287],[920,1,1,2287,2288],[922,1,1,2288,2289],[923,1,1,2289,2290],[924,5,5,2290,2295]]],[38,10,7,2295,2302,[[925,2,1,2295,2296],[927,4,3,2296,2299],[928,4,3,2299,2302]]]],[49,52,82,83,141,150,154,155,156,157,160,166,168,172,174,175,192,194,253,264,297,303,309,312,328,336,341,343,349,372,375,377,383,385,389,435,443,445,458,460,462,465,466,467,479,480,488,490,491,498,504,508,556,573,581,589,592,621,622,623,632,633,653,654,658,676,687,702,719,724,731,732,734,737,739,741,745,752,757,758,760,762,784,801,804,808,816,818,825,833,834,844,846,863,868,891,897,906,912,934,936,939,941,961,971,974,978,985,987,1000,1005,1007,1017,1020,1027,1038,1085,1093,1097,1102,1106,1108,1111,1113,1115,1121,1127,1128,1135,1137,1160,1163,1165,1166,1178,1209,1216,1224,1230,1245,1249,1252,1257,1258,1259,1261,1262,1264,1267,1271,1272,1273,1281,1286,1289,1292,1299,1306,1307,1308,1311,1313,1314,1315,1316,1320,1338,1354,1356,1374,1375,1376,1377,1383,1387,1392,1393,1394,1412,1413,1414,1417,1418,1421,1424,1425,1427,1434,1435,1437,1438,1453,1456,1458,1479,1483,1516,1533,1551,1564,1570,1571,1572,1580,1588,1592,1597,1607,1633,1647,1655,1663,1666,1695,1708,1711,1713,1734,1743,1778,1780,1781,1803,1807,1839,1841,1872,1878,1905,1906,1909,1911,1912,1917,1937,1939,1943,1947,1948,1952,1969,1982,1991,1995,2004,2005,2006,2011,2014,2015,2018,2021,2022,2025,2027,2028,2030,2033,2035,2071,2075,2080,2122,2126,2128,2139,2163,2164,2167,2171,2180,2195,2209,2246,2268,2279,2322,2323,2328,2336,2366,2402,2440,2441,2459,2481,2482,2508,2522,2530,2531,2536,2541,2552,2553,2554,2555,2556,2558,2560,2569,2570,2571,2572,2609,2640,2697,2711,2728,2739,2742,2764,2770,2799,2800,2809,2811,2818,2823,2827,2836,2837,2838,2841,2842,2845,2848,2855,2870,2879,2908,2909,2976,2986,2992,2995,3029,3031,3048,3050,3054,3061,3068,3113,3119,3134,3145,3146,3147,3153,3155,3157,3159,3182,3197,3203,3204,3213,3216,3218,3224,3227,3228,3229,3239,3240,3244,3254,3302,3304,3340,3356,3368,3376,3412,3416,3417,3419,3457,3471,3491,3494,3549,3560,3565,3746,3748,3758,3762,3763,3766,3773,3778,3782,3786,3790,3807,3814,3816,3819,3829,3833,3835,3836,3853,3939,3954,3961,3963,3997,4009,4096,4097,4098,4101,4102,4111,4116,4124,4132,4138,4139,4155,4171,4178,4208,4237,4252,4270,4296,4303,4312,4315,4316,4317,4323,4333,4335,4341,4347,4363,4367,4382,4384,4389,4391,4395,4411,4413,4414,4433,4477,4479,4571,4575,4676,4678,4685,4687,4688,4718,4720,4724,4727,4735,4737,4769,4800,4818,4824,4899,4900,4911,4912,4914,4916,4923,4929,4930,4931,5005,5009,5025,5038,5042,5096,5104,5109,5112,5137,5138,5144,5158,5161,5162,5164,5185,5197,5213,5216,5218,5237,5239,5245,5246,5249,5251,5266,5269,5274,5319,5348,5373,5378,5390,5393,5406,5411,5446,5459,5460,5483,5501,5502,5503,5508,5510,5511,5518,5520,5524,5525,5535,5538,5540,5552,5567,5568,5569,5575,5576,5588,5613,5617,5626,5630,5632,5656,5674,5686,5701,5706,5709,5713,5724,5726,5730,5735,5739,5744,5748,5749,5751,5775,5802,5810,5812,5817,5826,5862,5870,5871,5872,5873,5887,5891,5892,5894,5901,5908,5948,5950,5960,5968,5971,5972,5999,6013,6021,6031,6043,6045,6046,6054,6073,6077,6083,6084,6091,6112,6114,6128,6155,6159,6198,6220,6296,6297,6299,6302,6378,6426,6436,6441,6461,6462,6467,6472,6474,6475,6482,6483,6484,6487,6516,6523,6546,6571,6588,6590,6592,6595,6619,6620,6621,6642,6646,6651,6658,6659,6665,6672,6673,6707,6711,6713,6719,6723,6734,6759,6769,6778,6780,6781,6785,6791,6800,6806,6811,6836,6841,6845,6847,6862,6863,6878,6890,6892,6893,6894,6895,6896,6901,6914,6927,6930,6943,6950,6951,6988,6989,6995,6996,7000,7001,7002,7003,7006,7008,7010,7011,7013,7020,7027,7034,7038,7039,7040,7041,7045,7046,7047,7050,7053,7058,7064,7080,7088,7104,7110,7114,7124,7129,7146,7149,7152,7153,7156,7161,7167,7176,7179,7186,7187,7188,7189,7201,7203,7231,7234,7236,7237,7253,7254,7255,7267,7271,7274,7276,7286,7300,7302,7303,7304,7309,7310,7311,7313,7320,7321,7324,7329,7345,7353,7365,7373,7396,7397,7398,7403,7404,7405,7406,7407,7413,7421,7423,7425,7426,7427,7428,7431,7432,7440,7445,7449,7450,7454,7456,7468,7472,7493,7495,7496,7528,7533,7534,7565,7567,7572,7573,7575,7580,7597,7599,7600,7601,7606,7607,7612,7616,7630,7636,7638,7640,7652,7661,7663,7670,7672,7675,7682,7689,7692,7703,7713,7722,7724,7728,7729,7731,7738,7739,7749,7751,7757,7759,7767,7768,7770,7771,7772,7773,7782,7786,7787,7792,7796,7798,7817,7820,7837,7842,7866,7869,7870,7873,7880,7887,7888,7894,7895,7896,7897,7901,7906,7908,7909,7910,7912,7915,7920,7938,7939,7941,7946,7950,7963,7973,7977,7979,7981,7987,7999,8001,8004,8013,8016,8017,8021,8024,8025,8032,8053,8072,8073,8078,8088,8094,8101,8103,8104,8105,8106,8116,8124,8125,8126,8127,8128,8133,8134,8135,8138,8140,8145,8150,8152,8155,8157,8163,8166,8173,8174,8198,8214,8216,8233,8237,8242,8254,8256,8257,8263,8266,8269,8270,8281,8287,8290,8302,8306,8310,8322,8323,8327,8328,8341,8347,8352,8353,8359,8366,8371,8379,8385,8387,8388,8389,8391,8393,8395,8402,8407,8409,8417,8421,8426,8431,8440,8441,8442,8447,8448,8451,8455,8461,8463,8466,8467,8469,8473,8474,8476,8487,8505,8509,8514,8516,8518,8519,8522,8526,8531,8535,8536,8541,8552,8557,8562,8566,8568,8569,8576,8666,8669,8672,8676,8698,8699,8700,8705,8710,8713,8718,8720,8730,8731,8732,8739,8740,8745,8749,8752,8759,8764,8770,8783,8789,8798,8800,8810,8817,8823,8831,8832,8840,8872,8878,8948,8985,8988,8991,9016,9026,9027,9050,9060,9079,9080,9081,9086,9089,9090,9091,9093,9101,9104,9110,9125,9126,9152,9154,9163,9172,9185,9191,9192,9194,9195,9196,9198,9200,9205,9206,9209,9213,9221,9222,9223,9224,9228,9230,9231,9235,9246,9264,9266,9293,9301,9323,9327,9329,9330,9335,9353,9387,9390,9391,9396,9402,9438,9440,9441,9447,9451,9455,9456,9464,9472,9480,9495,9505,9507,9510,9516,9517,9546,9555,9566,9596,9600,9604,9607,9610,9613,9614,9623,9628,9630,9635,9636,9639,9640,9642,9645,9651,9652,9653,9655,9656,9662,9665,9667,9669,9671,9672,9678,9688,9694,9697,9706,9711,9712,9713,9715,9716,9717,9719,9728,9734,9736,9741,9758,9761,9762,9767,9773,9774,9775,9776,9786,9787,9790,9795,9799,9800,9801,9805,9810,9814,9816,9817,9818,9833,9834,9837,9838,9842,9844,9845,9847,9848,9854,9859,9863,9866,9891,9909,9921,9939,9944,9954,9969,9974,9975,10007,10011,10041,10045,10056,10061,10062,10064,10066,10084,10086,10088,10089,10093,10094,10099,10112,10115,10118,10131,10149,10154,10161,10165,10173,10176,10182,10183,10195,10199,10212,10213,10218,10223,10224,10229,10230,10245,10247,10248,10327,10361,10395,10423,10426,10437,10454,10557,10558,10640,10643,10663,10666,10667,10671,10675,10676,10678,10691,10692,10694,10698,10721,10736,10737,10739,10742,10743,10751,10758,10760,10765,10769,10772,10783,10788,10820,10821,10849,10853,10879,10895,10897,10909,10910,10914,10916,10922,10924,10927,10936,10938,10945,10955,10968,10983,11034,11110,11204,11207,11227,11269,11272,11275,11304,11314,11326,11332,11335,11346,11357,11364,11365,11370,11374,11376,11377,11378,11385,11388,11396,11398,11407,11415,11430,11440,11441,11442,11448,11462,11466,11484,11486,11495,11501,11502,11508,11510,11516,11534,11556,11566,11571,11576,11586,11588,11589,11591,11596,11597,11598,11599,11609,11611,11612,11615,11636,11645,11651,11653,11658,11660,11662,11663,11664,11668,11670,11671,11673,11675,11676,11683,11686,11687,11688,11691,11694,11700,11701,11711,11712,11714,11716,11718,11727,11740,11748,11749,11757,11769,11772,11773,11776,11777,11779,11781,11784,11791,11795,11806,11807,11808,11809,11812,11822,11823,11828,11832,11835,11838,11842,11852,11854,11859,11860,11862,11864,11866,11870,11876,11877,11879,11896,11898,11901,11919,11922,11942,11947,11949,11957,11961,11988,11997,12000,12003,12011,12029,12095,12104,12105,12181,12182,12216,12218,12219,12231,12233,12236,12248,12250,12260,12266,12298,12305,12314,12315,12316,12317,12318,12322,12332,12367,12370,12371,12399,12411,12412,12418,12427,12494,12495,12508,12509,12526,12534,12535,12544,12578,12580,12583,12584,12585,12586,12588,12589,12651,12672,12677,12678,12683,12686,12687,12689,12690,12692,12693,12713,12714,12719,12721,12736,12737,12738,12739,12756,12764,12766,12770,12771,12773,12778,12783,12784,12787,12789,12791,12793,12794,12797,12798,12799,12801,12807,12808,12818,12845,12859,12875,12876,12883,12885,12886,12887,12888,12892,12893,12902,12910,12911,12928,12929,12930,12935,12972,12977,12986,12998,13083,13134,13169,13184,13195,13224,13270,13309,13348,13372,13393,13410,13422,13490,13524,13545,13583,13711,13777,13778,13804,13809,13815,13901,13904,13933,13980,14124,14235,14248,14250,14277,14418,14449,14463,14465,14532,14548,14557,14569,14570,14588,14611,14612,14667,14671,14737,14848,14862,14884,14885,14886,14936,14937,14962,14979,14992,14994,15037,15053,15142,15167,15184,15186,15196,15293,15310,15390,15460,15465,15473,15478,15499,15510,15512,15515,15522,15534,15624,15625,15629,15637,15640,15646,15772,15773,15888,15889,15895,15939,15975,16068,16082,16089,16121,16154,16158,16295,16426,16427,16443,16452,16480,16504,16543,16551,16555,16569,16595,16597,16680,16690,16696,16715,16759,16904,16907,16918,17011,17039,17054,17056,17074,17104,17113,17143,17179,17218,17298,17319,17320,17345,17349,17381,17400,17412,17413,17421,17468,17489,17521,17522,17524,17537,17541,17558,17562,17575,17590,17598,17599,17642,17651,17666,17667,17677,17695,17704,17706,17721,17758,17765,17799,17801,17806,17807,17853,17878,17908,17911,17912,17915,17928,17930,17937,17959,17972,17981,18005,18027,18030,18036,18044,18067,18078,18105,18132,18150,18157,18162,18164,18179,18225,18230,18244,18246,18252,18269,18324,18330,18336,18347,18352,18353,18355,18357,18376,18378,18380,18381,18385,18386,18391,18415,18418,18430,18454,18473,18476,18489,18510,18511,18528,18540,18581,18585,18597,18604,18608,18610,18612,18617,18619,18629,18648,18654,18658,18664,18684,18697,18754,18760,18767,18793,18814,18819,18820,18822,18825,18826,18827,18830,18832,18834,18838,18841,18865,18867,18870,18926,18929,18937,18940,18942,18945,18961,18968,18972,18996,19016,19020,19032,19033,19039,19043,19056,19070,19073,19092,19108,19109,19111,19115,19121,19129,19151,19160,19167,19169,19192,19196,19200,19210,19223,19234,19237,19249,19261,19267,19286,19296,19311,19323,19324,19341,19344,19350,19355,19363,19365,19372,19375,19376,19377,19378,19381,19382,19383,19384,19406,19410,19413,19421,19422,19427,19428,19453,19456,19458,19477,19489,19491,19492,19496,19501,19525,19543,19547,19565,19574,19593,19595,19599,19603,19607,19608,19614,19618,19621,19622,19627,19670,19699,19700,19703,19718,19722,19729,19738,19739,19754,19755,19760,19773,19780,19786,19789,19804,19811,19825,19827,19834,19840,19847,19848,19851,19856,19862,19871,19873,19878,19888,19890,19893,19906,19920,19922,19924,19926,19930,19939,19944,19945,19947,19949,19951,19953,19954,19958,19962,19963,19964,19974,19989,19990,19992,19993,19994,19997,19999,20004,20008,20012,20018,20022,20024,20038,20045,20058,20063,20065,20066,20067,20077,20078,20088,20092,20096,20101,20124,20129,20131,20132,20135,20136,20141,20159,20163,20164,20170,20171,20192,20193,20197,20207,20222,20225,20245,20258,20259,20260,20263,20264,20265,20268,20272,20273,20276,20280,20281,20287,20288,20314,20320,20331,20332,20367,20432,20438,20446,20451,20468,20494,20506,20513,20517,20526,20543,20563,20566,20579,20582,20583,20584,20587,20589,20599,20601,20602,20603,20607,20611,20613,20614,20618,20620,20624,20635,20636,20639,20656,20663,20671,20673,20679,20693,20696,20717,20732,20735,20738,20748,20753,20769,20770,20778,20795,20828,20829,20837,20838,20845,20885,20890,20896,20898,20905,20910,20923,20924,20930,20932,20933,20937,20951,20963,20964,20969,20971,20973,20979,20980,21024,21029,21031,21046,21047,21049,21051,21070,21072,21080,21082,21107,21110,21147,21164,21191,21208,21213,21215,21257,21259,21282,21283,21284,21286,21301,21302,21310,21311,21313,21326,21367,21379,21380,21381,21383,21402,21406,21407,21409,21418,21433,21434,21436,21438,21440,21441,21442,21443,21450,21456,21465,21478,21479,21480,21481,21483,21494,21505,21509,21512,21525,21527,21529,21532,21553,21561,21564,21566,21574,21575,21576,21577,21601,21602,21603,21606,21608,21615,21616,21620,21624,21626,21657,21663,21664,21665,21674,21687,21688,21694,21699,21703,21738,21739,21740,21755,21760,21966,21967,21978,22000,22001,22002,22011,22012,22014,22018,22027,22028,22029,22035,22042,22043,22044,22045,22046,22049,22051,22052,22053,22057,22060,22065,22066,22076,22077,22081,22148,22170,22179,22212,22215,22218,22237,22249,22279,22281,22304,22306,22312,22320,22342,22348,22354,22356,22411,22412,22414,22428,22432,22442,22451,22464,22483,22490,22492,22508,22515,22521,22523,22534,22539,22555,22562,22588,22594,22614,22619,22628,22630,22638,22639,22668,22676,22726,22739,22740,22751,22771,22784,22807,22840,22842,22846,22848,22849,22854,22862,22871,22899,22909,22920,22940,22957,22962,22984,22986,22996,22998,23008,23026,23054,23068,23069,23073,23084,23086,23089,23102,23121,23122,23130,23139,23143,23144]]],["+",[158,145,[[0,17,15,0,15,[[5,1,1,0,1],[7,1,1,1,2],[18,1,1,2,3],[23,1,1,3,4],[36,3,2,4,6],[38,1,1,6,7],[40,2,1,7,8],[41,1,1,8,9],[42,3,3,9,12],[46,3,3,12,15]]],[1,15,14,15,29,[[55,1,1,15,16],[63,1,1,16,17],[67,1,1,17,18],[74,1,1,18,19],[75,1,1,19,20],[84,3,3,20,23],[85,1,1,23,24],[86,1,1,24,25],[87,1,1,25,26],[88,1,1,26,27],[89,3,2,27,29]]],[2,18,16,29,45,[[91,1,1,29,30],[93,2,2,30,32],[94,4,4,32,36],[96,3,2,36,38],[103,2,1,38,39],[105,1,1,39,40],[106,1,1,40,41],[108,1,1,41,42],[112,3,3,42,45]]],[3,10,9,45,54,[[121,2,1,45,46],[123,1,1,46,47],[124,1,1,47,48],[130,1,1,48,49],[131,1,1,49,50],[136,3,3,50,53],[147,1,1,53,54]]],[4,5,5,54,59,[[158,1,1,54,55],[164,1,1,55,56],[172,1,1,56,57],[178,1,1,57,58],[183,1,1,58,59]]],[5,1,1,59,60,[[210,1,1,59,60]]],[8,11,10,60,70,[[236,1,1,60,61],[244,2,1,61,62],[250,1,1,62,63],[253,1,1,63,64],[254,1,1,64,65],[255,1,1,65,66],[256,1,1,66,67],[260,2,2,67,69],[261,1,1,69,70]]],[9,6,6,70,76,[[269,1,1,70,71],[270,1,1,71,72],[271,1,1,72,73],[272,1,1,73,74],[280,1,1,74,75],[285,1,1,75,76]]],[10,5,5,76,81,[[292,1,1,76,77],[297,1,1,77,78],[298,2,2,78,80],[305,1,1,80,81]]],[11,7,7,81,88,[[323,1,1,81,82],[326,1,1,82,83],[332,1,1,83,84],[335,2,2,84,86],[336,1,1,86,87],[337,1,1,87,88]]],[12,6,6,88,94,[[348,1,1,88,89],[350,2,2,89,91],[353,1,1,91,92],[358,1,1,92,93],[359,1,1,93,94]]],[13,13,13,94,107,[[371,2,2,94,96],[373,2,2,96,98],[378,1,1,98,99],[389,1,1,99,100],[390,1,1,100,101],[391,1,1,101,102],[394,2,2,102,104],[395,1,1,104,105],[397,1,1,105,106],[400,1,1,106,107]]],[15,6,6,107,113,[[420,2,2,107,109],[422,3,3,109,112],[425,1,1,112,113]]],[16,4,4,113,117,[[426,1,1,113,114],[430,1,1,114,115],[431,2,2,115,117]]],[18,3,2,117,119,[[551,1,1,117,118],[603,2,1,118,119]]],[20,5,5,119,124,[[660,1,1,119,120],[663,2,2,120,122],[669,1,1,122,123],[670,1,1,123,124]]],[21,1,1,124,125,[[673,1,1,124,125]]],[22,4,3,125,128,[[701,1,1,125,126],[702,1,1,126,127],[744,2,1,127,128]]],[23,9,8,128,136,[[767,1,1,128,129],[771,2,2,129,131],[776,1,1,131,132],[780,2,1,132,133],[783,1,1,133,134],[793,1,1,134,135],[796,1,1,135,136]]],[24,1,1,136,137,[[801,1,1,136,137]]],[25,1,1,137,138,[[811,1,1,137,138]]],[26,4,2,138,140,[[860,4,2,138,140]]],[29,1,1,140,141,[[884,1,1,140,141]]],[34,2,1,141,142,[[904,2,1,141,142]]],[37,2,2,142,144,[[913,1,1,142,143],[923,1,1,143,144]]],[38,1,1,144,145,[[925,1,1,144,145]]]],[154,192,467,653,1093,1111,1165,1216,1286,1306,1307,1314,1427,1434,1437,1663,1906,2018,2209,2246,2552,2555,2558,2572,2609,2640,2697,2711,2728,2770,2799,2818,2836,2837,2841,2845,2908,2909,3159,3216,3240,3302,3412,3416,3417,3807,3853,3961,4124,4178,4315,4316,4323,4676,5109,5251,5446,5576,5751,6483,7237,7397,7580,7703,7713,7738,7787,7887,7894,7909,8094,8128,8134,8174,8379,8518,8810,8985,8991,9050,9264,9844,9921,10118,10173,10176,10212,10224,10675,10765,10772,10821,10936,10983,11269,11275,11332,11346,11448,11670,11691,11718,11772,11777,11795,11866,11949,12494,12495,12580,12584,12588,12689,12713,12789,12794,12807,15053,16121,17345,17412,17413,17521,17537,17575,18078,18105,18942,19492,19607,19608,19773,19871,19939,20159,20281,20446,20635,22046,22049,22464,22751,22920,23068,23102]]],["Apply",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17056]]],["Bring",[5,5,[[0,1,1,0,1,[[26,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[22,1,1,2,3,[[679,1,1,2,3]]],[29,1,1,3,4,[[882,1,1,3,4]]],[38,1,1,4,5,[[927,1,1,4,5]]]],[734,8327,17667,22411,23130]]],["Camest",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8269]]],["Come",[13,13,[[0,1,1,0,1,[[6,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[9,2,2,2,4,[[279,1,1,2,3],[280,1,1,3,4]]],[10,1,1,4,5,[[303,1,1,4,5]]],[21,1,1,5,6,[[674,1,1,5,6]]],[23,4,4,6,10,[[779,1,1,6,7],[785,1,1,7,8],[794,2,2,8,10]]],[25,2,2,10,12,[[834,1,1,10,11],[838,1,1,11,12]]],[29,1,1,12,13,[[882,1,1,12,13]]]],[160,4367,8328,8388,9191,17590,19834,19963,20171,20192,21310,21406,22414]]],["Comest",[2,2,[[8,1,1,0,1,[[251,1,1,0,1]]],[10,1,1,1,2,[[292,1,1,1,2]]]],[7599,8783]]],["Enter",[4,4,[[18,1,1,0,1,[[577,1,1,0,1]]],[19,1,1,1,2,[[631,1,1,1,2]]],[22,1,1,2,3,[[680,1,1,2,3]]],[23,1,1,3,4,[[760,1,1,3,4]]]],[15512,16504,17695,19341]]],["Go",[7,7,[[1,1,1,0,1,[[57,1,1,0,1]]],[7,1,1,1,2,[[234,1,1,1,2]]],[9,1,1,2,3,[[282,1,1,2,3]]],[10,1,1,3,4,[[310,1,1,3,4]]],[23,2,2,4,6,[[786,1,1,4,5],[787,1,1,5,6]]],[25,1,1,6,7,[[804,1,1,6,7]]]],[1711,7189,8447,9441,19994,19999,20526]]],["Put",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1607]]],["Take",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17972]]],["abide",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4687]]],["abideth",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4687]]],["about",[1,1,[[13,1,1,0,1,[[379,1,1,0,1]]]],[11466]]],["again",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8541]]],["against",[1,1,[[18,1,1,0,1,[[513,1,1,0,1]]]],[14449]]],["apply",[1,1,[[18,1,1,0,1,[[567,1,1,0,1]]]],[15390]]],["attained",[4,4,[[9,2,2,0,2,[[289,2,2,0,2]]],[12,2,2,2,4,[[348,2,2,2,4]]]],[8672,8676,10694,10698]]],["bring",[172,168,[[0,10,10,0,10,[[5,1,1,0,1],[17,1,1,1,2],[26,4,4,2,6],[41,2,2,6,8],[42,1,1,8,9],[43,1,1,9,10]]],[1,13,13,10,23,[[59,1,1,10,11],[60,1,1,11,12],[62,2,2,12,14],[67,1,1,14,15],[71,1,1,15,16],[72,2,2,16,18],[81,1,1,18,19],[83,1,1,19,20],[84,2,2,20,22],[85,1,1,22,23]]],[2,21,20,23,43,[[91,1,1,23,24],[93,6,5,24,29],[94,3,3,29,32],[95,1,1,32,33],[99,1,1,33,34],[101,1,1,34,35],[103,1,1,35,36],[104,1,1,36,37],[105,1,1,37,38],[106,1,1,38,39],[107,1,1,39,40],[109,1,1,40,41],[112,1,1,41,42],[115,1,1,42,43]]],[3,6,6,43,49,[[122,2,2,43,45],[130,2,2,45,47],[131,1,1,47,48],[134,1,1,48,49]]],[4,10,10,49,59,[[159,2,2,49,51],[161,1,1,51,52],[164,1,1,52,53],[173,1,1,53,54],[175,1,1,54,55],[178,1,1,55,56],[181,1,1,56,57],[182,1,1,57,58],[185,1,1,58,59]]],[5,2,2,59,61,[[204,1,1,59,60],[209,1,1,60,61]]],[8,6,5,61,66,[[236,1,1,61,62],[244,2,1,62,63],[251,1,1,63,64],[255,1,1,64,65],[262,1,1,65,66]]],[9,3,3,66,69,[[275,1,1,66,67],[280,1,1,67,68],[283,1,1,68,69]]],[10,4,3,69,72,[[304,1,1,69,70],[311,3,2,70,72]]],[11,3,3,72,75,[[324,1,1,72,73],[334,2,2,73,75]]],[13,5,5,75,80,[[368,1,1,75,76],[395,1,1,76,77],[397,1,1,77,78],[400,2,2,78,80]]],[14,3,3,80,83,[[405,1,1,80,81],[410,2,2,81,83]]],[15,6,6,83,89,[[413,1,1,83,84],[422,3,3,84,87],[423,1,1,87,88],[424,1,1,88,89]]],[16,1,1,89,90,[[428,1,1,89,90]]],[18,1,1,90,91,[[520,1,1,90,91]]],[20,2,2,91,93,[[661,1,1,91,92],[669,1,1,92,93]]],[21,2,2,93,95,[[678,2,2,93,95]]],[22,13,12,95,107,[[685,1,1,95,96],[692,1,1,96,97],[709,1,1,97,98],[721,2,2,98,100],[727,1,1,100,101],[734,1,1,101,102],[736,1,1,102,103],[738,4,3,103,106],[744,1,1,106,107]]],[23,29,29,107,136,[[747,1,1,107,108],[748,1,1,108,109],[749,1,1,109,110],[750,1,1,110,111],[755,3,3,111,114],[761,1,1,114,115],[762,1,1,115,116],[763,2,2,116,118],[767,1,1,118,119],[769,2,2,119,121],[775,1,1,121,122],[776,1,1,122,123],[777,1,1,123,124],[779,2,2,124,126],[780,1,1,126,127],[785,1,1,127,128],[786,1,1,128,129],[789,1,1,129,130],[792,1,1,130,131],[793,4,4,131,135],[795,1,1,135,136]]],[24,1,1,136,137,[[797,1,1,136,137]]],[25,24,24,137,161,[[806,1,1,137,138],[807,1,1,138,139],[808,1,1,139,140],[812,1,1,140,141],[813,1,1,141,142],[815,1,1,142,143],[818,1,1,143,144],[821,4,4,144,148],[824,1,1,148,149],[827,1,1,149,150],[829,1,1,150,151],[830,1,1,151,152],[833,1,1,152,153],[834,1,1,153,154],[835,1,1,154,155],[837,1,1,155,156],[838,2,2,156,158],[839,2,2,158,160],[840,1,1,160,161]]],[26,1,1,161,162,[[850,1,1,161,162]]],[29,1,1,162,163,[[882,1,1,162,163]]],[32,1,1,163,164,[[893,1,1,163,164]]],[35,1,1,164,165,[[908,1,1,164,165]]],[36,1,1,165,166,[[909,1,1,165,166]]],[37,2,2,166,168,[[918,1,1,166,167],[920,1,1,167,168]]]],[156,443,731,732,737,739,1272,1289,1299,1356,1781,1807,1872,1878,2021,2126,2163,2164,2440,2522,2536,2560,2571,2764,2800,2809,2811,2823,2827,2838,2842,2848,2855,2992,3050,3134,3197,3213,3240,3254,3340,3419,3549,3833,3835,4116,4132,4171,4270,5112,5137,5185,5246,5459,5518,5568,5706,5713,5817,6299,6475,7234,7398,7612,7738,7941,8237,8366,8463,9228,9472,9480,9854,10161,10165,11227,11822,11864,11957,11961,12104,12218,12231,12305,12583,12585,12586,12589,12651,12756,14569,17381,17522,17642,17651,17799,17930,18252,18510,18511,18658,18760,18793,18830,18832,18838,18926,19016,19033,19073,19108,19234,19237,19249,19375,19406,19410,19422,19496,19543,19547,19699,19773,19786,19825,19840,19873,19962,19992,20045,20124,20132,20135,20163,20164,20276,20331,20563,20566,20601,20663,20693,20748,20845,20910,20930,20932,20937,21029,21107,21164,21191,21257,21282,21326,21383,21409,21418,21441,21442,21450,21740,22414,22594,22840,22848,22984,23026]]],["bringest",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13184]]],["bringeth",[6,6,[[2,2,2,0,2,[[106,2,2,0,2]]],[4,1,1,2,3,[[160,1,1,2,3]]],[17,1,1,3,4,[[447,1,1,3,4]]],[19,2,2,4,6,[[648,1,1,4,5],[658,1,1,5,6]]]],[3239,3244,5144,13134,17011,17298]]],["bringing",[4,3,[[11,1,1,0,1,[[333,1,1,0,1]]],[23,2,1,1,2,[[761,2,1,1,2]]],[26,1,1,2,3,[[858,1,1,2,3]]]],[10131,19383,22000]]],["brought",[196,190,[[0,24,24,0,24,[[1,2,2,0,2],[3,2,2,2,4],[19,1,1,4,5],[23,1,1,5,6],[25,1,1,6,7],[26,4,4,7,11],[28,2,2,11,13],[29,1,1,13,14],[30,1,1,14,15],[32,1,1,15,16],[36,2,2,16,18],[38,1,1,18,19],[42,3,3,19,22],[45,2,2,22,24]]],[1,12,11,24,35,[[51,1,1,24,25],[67,1,1,25,26],[68,1,1,26,27],[81,2,2,27,29],[84,5,5,29,34],[85,2,1,34,35]]],[2,6,6,35,41,[[95,1,1,35,36],[102,2,2,36,38],[103,1,1,38,39],[113,1,1,39,40],[115,1,1,40,41]]],[3,5,5,41,46,[[122,1,1,41,42],[130,1,1,42,43],[132,1,1,43,44],[147,1,1,44,45],[148,1,1,45,46]]],[4,4,4,46,50,[[158,1,1,46,47],[178,1,1,47,48],[183,2,2,48,50]]],[5,2,2,50,52,[[193,1,1,50,51],[210,1,1,51,52]]],[6,7,7,52,59,[[211,1,1,52,53],[212,1,1,53,54],[217,1,1,54,55],[228,1,1,55,56],[229,2,2,56,58],[231,1,1,58,59]]],[8,13,13,59,72,[[236,1,1,59,60],[240,2,2,60,62],[242,1,1,62,63],[244,1,1,63,64],[245,1,1,64,65],[250,1,1,65,66],[251,1,1,66,67],[252,2,2,67,69],[256,1,1,69,70],[260,2,2,70,72]]],[9,6,6,72,78,[[267,1,1,72,73],[269,1,1,73,74],[273,1,1,74,75],[274,1,1,75,76],[279,1,1,76,77],[289,1,1,77,78]]],[10,10,10,78,88,[[291,1,1,78,79],[293,2,2,79,81],[294,1,1,81,82],[299,2,2,82,84],[300,1,1,84,85],[307,1,1,85,86],[310,1,1,86,87],[312,1,1,87,88]]],[11,15,15,88,103,[[316,2,2,88,90],[317,2,2,90,92],[322,2,2,92,94],[323,1,1,94,95],[324,4,4,95,99],[329,1,1,99,100],[334,1,1,100,101],[335,1,1,101,102],[336,1,1,102,103]]],[12,8,8,103,111,[[342,1,1,103,104],[347,1,1,104,105],[348,2,2,105,107],[349,1,1,107,108],[354,1,1,108,109],[355,1,1,109,110],[359,1,1,110,111]]],[13,23,20,111,131,[[374,1,1,111,112],[375,6,4,112,116],[381,1,1,116,117],[383,2,1,117,118],[388,1,1,118,119],[390,1,1,119,120],[391,2,2,120,122],[394,3,3,122,125],[395,2,2,125,127],[398,1,1,127,128],[399,1,1,128,129],[402,2,2,129,131]]],[14,1,1,131,132,[[410,1,1,131,132]]],[15,4,4,132,136,[[420,1,1,132,133],[421,1,1,133,134],[425,2,2,134,136]]],[16,2,2,136,138,[[431,1,1,136,137],[434,1,1,137,138]]],[17,1,1,138,139,[[477,1,1,138,139]]],[18,4,4,139,143,[[522,1,1,139,140],[555,2,2,140,142],[582,1,1,142,143]]],[21,2,2,143,145,[[671,1,1,143,144],[672,1,1,144,145]]],[22,2,2,145,147,[[721,1,1,145,146],[726,1,1,146,147]]],[23,9,9,147,156,[[746,1,1,147,148],[754,1,1,148,149],[759,1,1,149,150],[768,1,1,150,151],[770,1,1,151,152],[779,1,1,152,153],[781,1,1,153,154],[784,1,1,154,155],[788,1,1,155,156]]],[25,31,29,156,185,[[809,4,4,156,160],[812,2,2,160,162],[815,2,1,162,163],[820,3,2,163,165],[821,2,2,165,167],[824,1,1,167,168],[828,1,1,168,169],[831,1,1,169,170],[841,9,9,170,179],[842,1,1,179,180],[843,1,1,180,181],[844,1,1,181,182],[845,2,2,182,184],[847,1,1,184,185]]],[26,3,3,185,188,[[850,1,1,185,186],[858,1,1,186,187],[860,1,1,187,188]]],[36,1,1,188,189,[[909,1,1,188,189]]],[38,1,1,189,190,[[925,1,1,189,190]]]],[49,52,82,83,504,658,702,741,752,758,760,808,818,844,912,971,1085,1115,1166,1292,1308,1316,1393,1418,1564,2025,2030,2441,2459,2553,2554,2555,2556,2560,2569,2879,3054,3061,3113,3457,3565,3836,4111,4208,4718,4735,5096,5575,5748,5749,5999,6484,6516,6546,6719,6996,7027,7045,7114,7236,7320,7321,7353,7413,7445,7575,7607,7672,7675,7786,7888,7896,8032,8103,8198,8216,8327,8669,8720,8817,8840,8872,9060,9079,9104,9323,9447,9517,9623,9645,9653,9667,9801,9817,9833,9854,9859,9863,9866,10007,10149,10195,10218,10454,10671,10691,10692,10760,10879,10897,10968,11364,11374,11376,11378,11388,11501,11534,11653,11688,11716,11727,11769,11779,11791,11812,11823,11898,11919,12003,12011,12219,12509,12544,12683,12687,12801,12845,13933,14611,15167,15184,15646,17541,17558,18528,18629,18972,19210,19323,19525,19595,19827,19888,19944,20012,20607,20611,20618,20620,20656,20679,20753,20885,20890,20905,20923,21049,21147,21215,21478,21479,21480,21481,21494,21505,21509,21512,21525,21527,21553,21577,21603,21606,21674,21739,22002,22042,22849,23102]]],["broughtest",[2,2,[[15,1,1,0,1,[[421,1,1,0,1]]],[18,1,1,1,2,[[543,1,1,1,2]]]],[12534,14884]]],["called",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12789]]],["came",[615,582,[[0,61,58,0,58,[[10,1,1,0,1],[11,1,1,1,2],[12,1,1,2,3],[13,3,3,3,6],[18,2,2,6,8],[19,1,1,8,9],[21,1,1,9,10],[22,1,1,10,11],[23,4,4,11,15],[24,1,1,15,16],[25,1,1,16,17],[26,2,2,17,19],[28,1,1,19,20],[29,3,2,20,22],[30,1,1,22,23],[31,2,2,23,25],[32,3,2,25,27],[33,4,4,27,31],[34,3,3,31,34],[36,2,2,34,36],[40,2,2,36,38],[41,4,3,38,41],[42,3,3,41,44],[43,1,1,44,45],[44,1,1,45,46],[45,6,6,46,52],[46,3,3,52,55],[47,2,2,55,57],[49,1,1,57,58]]],[1,28,26,58,84,[[50,2,1,58,59],[51,3,3,59,62],[52,1,1,62,63],[54,2,2,63,65],[57,1,1,65,66],[63,2,2,66,68],[64,2,2,68,70],[65,4,3,70,73],[66,1,1,73,74],[67,3,3,74,77],[68,2,2,77,79],[71,1,1,79,80],[73,1,1,80,81],[84,2,2,81,83],[85,1,1,83,84]]],[3,22,22,84,106,[[120,1,1,84,85],[126,1,1,85,86],[129,4,4,86,90],[132,1,1,90,91],[136,2,2,91,93],[137,3,3,93,96],[138,5,5,96,101],[139,1,1,101,102],[141,1,1,102,103],[147,1,1,103,104],[148,1,1,104,105],[149,1,1,105,106]]],[4,9,9,106,115,[[153,3,3,106,109],[161,1,1,109,110],[163,1,1,110,111],[181,1,1,111,112],[184,2,2,112,114],[185,1,1,114,115]]],[5,18,18,115,133,[[188,4,4,115,119],[189,1,1,119,120],[192,1,1,120,121],[194,1,1,121,122],[195,1,1,122,123],[196,1,1,123,124],[197,3,3,124,127],[201,1,1,127,128],[204,1,1,128,129],[208,2,2,129,131],[210,2,2,131,133]]],[6,42,40,133,173,[[211,1,1,133,134],[213,2,2,134,136],[214,1,1,136,137],[215,2,2,137,139],[216,2,2,139,141],[217,2,2,141,143],[218,2,2,143,145],[219,3,3,145,148],[221,4,3,148,151],[223,5,4,151,155],[224,1,1,155,156],[225,1,1,156,157],[227,1,1,157,158],[228,6,6,158,164],[229,4,4,164,168],[230,3,3,168,171],[231,2,2,171,173]]],[7,9,9,173,182,[[232,3,3,173,176],[233,3,3,176,179],[234,3,3,179,182]]],[8,71,69,182,251,[[236,1,1,182,183],[237,4,4,183,187],[238,1,1,187,188],[239,6,5,188,193],[240,1,1,193,194],[241,1,1,194,195],[242,2,2,195,197],[243,1,1,197,198],[244,2,2,198,200],[245,3,3,200,203],[246,5,4,203,207],[247,1,1,207,208],[248,2,2,208,210],[249,2,2,210,212],[250,3,3,212,215],[251,2,2,215,217],[252,3,3,217,220],[253,1,1,220,221],[254,3,3,221,224],[255,2,2,224,226],[256,1,1,226,227],[257,2,2,227,229],[258,1,1,229,230],[259,1,1,230,231],[260,3,3,231,234],[261,5,5,234,239],[262,1,1,239,240],[263,3,3,240,243],[265,5,5,243,248],[266,3,3,248,251]]],[9,68,61,251,312,[[267,2,1,251,252],[268,3,3,252,255],[269,7,6,255,261],[270,4,4,261,265],[271,4,4,265,269],[272,2,2,269,271],[274,1,1,271,272],[276,4,4,272,276],[277,2,2,276,278],[278,4,3,278,281],[279,3,3,281,284],[280,3,2,284,286],[281,6,5,286,291],[282,3,3,291,294],[283,3,3,294,297],[284,1,1,297,298],[285,6,5,298,303],[286,3,3,303,306],[289,1,1,306,307],[290,6,5,307,312]]],[10,44,42,312,354,[[291,4,4,312,316],[292,3,3,316,319],[293,2,2,319,321],[294,1,1,321,322],[297,1,1,322,323],[298,1,1,323,324],[299,1,1,324,325],[300,7,7,325,332],[301,2,1,332,333],[302,2,2,333,335],[303,7,7,335,342],[304,3,2,342,344],[307,1,1,344,345],[309,3,3,345,348],[310,3,3,348,351],[311,2,2,351,353],[312,1,1,353,354]]],[11,64,59,354,413,[[313,1,1,354,355],[314,2,2,355,357],[315,2,2,357,359],[316,6,6,359,365],[317,3,3,365,368],[318,4,4,368,372],[319,3,2,372,374],[320,3,3,374,377],[321,6,6,377,383],[322,6,4,383,387],[323,3,3,387,390],[326,1,1,390,391],[327,3,3,391,394],[328,2,2,394,396],[329,1,1,396,397],[330,3,2,397,399],[331,2,2,399,401],[332,3,2,401,403],[334,1,1,403,404],[335,3,3,404,407],[336,1,1,407,408],[337,5,5,408,413]]],[12,26,25,413,438,[[339,1,1,413,414],[341,1,1,414,415],[344,1,1,415,416],[347,2,2,416,418],[348,1,1,418,419],[349,6,6,419,425],[350,1,1,425,426],[351,1,1,426,427],[352,1,1,427,428],[354,1,1,428,429],[355,1,1,429,430],[356,5,4,430,434],[357,1,1,434,435],[358,3,3,435,438]]],[13,47,46,438,484,[[367,1,1,438,439],[371,1,1,439,440],[373,1,1,440,441],[375,4,4,441,445],[376,2,2,445,447],[377,1,1,447,448],[378,4,4,448,452],[380,1,1,452,453],[382,1,1,453,454],[386,7,7,454,461],[387,1,1,461,462],[388,1,1,462,463],[389,3,3,463,466],[390,4,4,466,470],[391,1,1,470,471],[394,3,3,471,474],[395,2,2,474,476],[396,4,3,476,479],[397,1,1,479,480],[398,2,2,480,482],[400,1,1,482,483],[401,1,1,483,484]]],[14,5,5,484,489,[[404,2,2,484,486],[409,2,2,486,488],[410,1,1,488,489]]],[15,11,11,489,500,[[413,1,1,489,490],[414,2,2,490,492],[416,1,1,492,493],[417,1,1,493,494],[418,2,2,494,496],[419,1,1,496,497],[425,3,3,497,500]]],[16,9,9,500,509,[[426,1,1,500,501],[427,1,1,501,502],[429,3,3,502,505],[430,1,1,505,506],[432,1,1,506,507],[433,1,1,507,508],[434,1,1,508,509]]],[17,16,13,509,522,[[436,7,6,509,515],[437,3,2,515,517],[438,1,1,517,518],[441,1,1,518,519],[464,1,1,519,520],[465,2,1,520,521],[477,1,1,521,522]]],[18,4,4,522,526,[[495,1,1,522,523],[582,3,3,523,526]]],[20,1,1,526,527,[[667,1,1,526,527]]],[22,9,8,527,535,[[698,1,1,527,528],[714,1,1,528,529],[715,2,2,529,531],[716,1,1,531,532],[717,2,1,532,533],[728,1,1,533,534],[744,1,1,534,535]]],[23,17,17,535,552,[[758,1,1,535,536],[763,1,1,536,537],[776,2,2,537,539],[780,2,2,539,541],[782,1,1,541,542],[783,1,1,542,543],[784,3,3,543,546],[785,3,3,546,549],[787,1,1,549,550],[796,2,2,550,552]]],[25,18,17,552,569,[[802,1,1,552,553],[804,1,1,553,554],[805,1,1,554,555],[810,1,1,555,556],[815,1,1,556,557],[818,1,1,557,558],[821,1,1,558,559],[824,3,3,559,562],[834,3,2,562,564],[838,1,1,564,565],[841,1,1,565,566],[844,3,3,566,569]]],[26,8,7,569,576,[[850,1,1,569,570],[851,1,1,570,571],[857,4,3,571,574],[859,2,2,574,576]]],[29,1,1,576,577,[[884,1,1,576,577]]],[30,2,1,577,578,[[888,2,1,577,578]]],[34,1,1,578,579,[[905,1,1,578,579]]],[36,3,2,579,581,[[909,1,1,579,580],[910,2,1,580,581]]],[37,1,1,581,582,[[924,1,1,581,582]]]],[297,303,336,341,343,349,458,465,498,556,573,621,623,633,653,687,724,745,762,804,846,868,897,934,941,961,978,987,1000,1005,1007,1017,1020,1038,1097,1108,1245,1252,1257,1258,1281,1311,1315,1316,1338,1383,1387,1392,1394,1412,1413,1414,1421,1435,1438,1456,1458,1516,1533,1570,1571,1572,1580,1647,1655,1734,1909,1917,1943,1947,1948,1969,1982,1991,2004,2006,2011,2027,2033,2128,2180,2552,2553,2570,3790,4009,4097,4098,4101,4102,4237,4312,4333,4341,4347,4363,4382,4384,4391,4395,4414,4433,4477,4678,4720,4769,4911,4916,4923,5164,5213,5686,5775,5802,5812,5871,5873,5891,5892,5894,5960,6013,6054,6073,6112,6114,6128,6220,6302,6436,6441,6482,6487,6523,6588,6592,6621,6642,6646,6659,6665,6707,6713,6723,6734,6780,6806,6811,6845,6847,6863,6890,6893,6894,6895,6914,6943,6988,6995,7000,7001,7006,7008,7020,7034,7040,7046,7050,7058,7080,7088,7104,7110,7129,7146,7149,7152,7153,7156,7179,7186,7188,7231,7253,7254,7255,7267,7286,7302,7309,7310,7311,7313,7329,7345,7353,7365,7373,7403,7406,7428,7431,7432,7449,7450,7454,7456,7472,7493,7495,7528,7533,7565,7572,7573,7599,7616,7638,7640,7652,7682,7724,7728,7729,7731,7768,7773,7792,7798,7837,7842,7870,7873,7897,7906,7908,7910,7912,7920,7939,7946,7950,7963,7981,7987,7999,8001,8004,8016,8017,8021,8024,8053,8072,8078,8101,8103,8104,8105,8106,8116,8124,8125,8126,8127,8133,8135,8150,8152,8163,8173,8214,8242,8254,8256,8257,8263,8281,8287,8290,8306,8341,8347,8353,8387,8389,8391,8395,8402,8407,8426,8431,8440,8441,8467,8469,8473,8509,8516,8519,8526,8535,8552,8557,8566,8569,8666,8698,8699,8700,8705,8710,8749,8759,8764,8770,8783,8798,8800,8831,8832,8878,8948,8988,9079,9080,9081,9086,9089,9091,9093,9101,9126,9154,9163,9185,9194,9195,9196,9205,9209,9213,9222,9235,9327,9390,9391,9396,9438,9440,9451,9455,9456,9495,9546,9555,9566,9596,9600,9610,9614,9628,9630,9642,9645,9656,9662,9671,9678,9688,9697,9706,9715,9717,9734,9736,9741,9761,9767,9773,9774,9775,9776,9800,9801,9810,9814,9838,9842,9848,9909,9939,9944,9954,9969,9974,10011,10041,10061,10066,10094,10099,10112,10154,10182,10183,10199,10213,10223,10230,10245,10247,10248,10361,10426,10557,10666,10667,10676,10721,10736,10739,10742,10743,10758,10769,10783,10820,10879,10895,10909,10914,10922,10924,10927,10938,10945,10955,11207,11272,11335,11365,11370,11377,11385,11398,11407,11430,11440,11441,11442,11448,11484,11516,11588,11589,11591,11597,11611,11612,11615,11636,11645,11658,11668,11676,11688,11694,11700,11701,11711,11773,11776,11784,11806,11808,11838,11852,11854,11862,11876,11901,11942,11988,12029,12095,12181,12182,12233,12298,12316,12318,12371,12399,12411,12418,12427,12677,12678,12692,12719,12737,12764,12766,12771,12784,12808,12818,12859,12875,12883,12885,12886,12887,12888,12892,12902,12930,12998,13545,13583,13933,14124,15625,15637,15640,17489,18030,18352,18357,18386,18391,18415,18664,18929,19296,19421,19739,19754,19851,19856,19922,19924,19949,19953,19954,19958,19962,19964,20004,20280,20288,20468,20517,20543,20624,20732,20828,20896,21024,21046,21047,21301,21302,21407,21483,21574,21575,21576,21738,21760,21966,21967,21978,22018,22028,22451,22515,22771,22854,22871,23084]]],["camest",[7,7,[[0,2,2,0,2,[[15,1,1,0,1],[26,1,1,1,2]]],[8,1,1,2,3,[[248,1,1,2,3]]],[9,1,1,3,4,[[281,1,1,3,4]]],[10,1,1,4,5,[[303,1,1,4,5]]],[11,1,1,5,6,[[331,1,1,5,6]]],[22,1,1,6,7,[[715,1,1,6,7]]]],[389,760,7496,8409,9198,10089,18381]]],["carried",[8,8,[[11,1,1,0,1,[[337,1,1,0,1]]],[13,2,2,1,3,[[402,2,2,1,3]]],[23,3,3,3,6,[[771,1,1,3,4],[772,1,1,4,5],[796,1,1,5,6]]],[25,1,1,6,7,[[818,1,1,6,7]]],[28,1,1,7,8,[[878,1,1,7,8]]]],[10229,11997,12000,19618,19621,20287,20829,22348]]],["carry",[7,7,[[0,1,1,0,1,[[41,1,1,0,1]]],[8,2,2,1,3,[[252,1,1,1,2],[255,1,1,2,3]]],[11,1,1,3,4,[[321,1,1,3,4]]],[23,2,2,4,6,[[764,1,1,4,5],[783,1,1,5,6]]],[26,1,1,6,7,[[860,1,1,6,7]]]],[1271,7636,7770,9758,19427,19930,22044]]],["come",[604,573,[[0,35,35,0,35,[[5,3,3,0,3],[11,1,1,3,4],[17,1,1,4,5],[18,1,1,5,6],[19,1,1,6,7],[25,1,1,7,8],[29,1,1,8,9],[31,2,2,9,11],[32,1,1,11,12],[33,1,1,12,13],[34,1,1,13,14],[36,1,1,14,15],[40,3,3,15,18],[41,6,6,18,24],[43,1,1,24,25],[44,3,3,25,28],[45,1,1,28,29],[46,3,3,29,32],[47,1,1,32,33],[48,2,2,33,35]]],[1,17,17,35,52,[[51,1,1,35,36],[52,3,3,36,39],[57,1,1,39,40],[59,1,1,40,41],[61,1,1,41,42],[67,3,3,42,45],[68,2,2,45,47],[69,2,2,47,49],[71,1,1,49,50],[72,1,1,50,51],[84,1,1,51,52]]],[2,16,16,52,68,[[101,1,1,52,53],[102,1,1,53,54],[103,4,4,54,58],[104,1,1,58,59],[105,5,5,59,64],[108,1,1,64,65],[112,1,1,65,66],[114,2,2,66,68]]],[3,14,14,68,82,[[120,2,2,68,70],[122,1,1,70,71],[129,1,1,71,72],[130,1,1,72,73],[131,2,2,73,75],[135,2,2,75,77],[138,3,3,77,80],[147,1,1,80,81],[150,1,1,81,82]]],[4,20,19,82,101,[[153,2,2,82,84],[164,2,2,84,86],[166,1,1,86,87],[169,2,2,87,89],[170,3,2,89,91],[175,2,2,91,93],[178,1,1,93,94],[180,3,3,94,97],[181,1,1,97,98],[182,1,1,98,99],[183,1,1,99,100],[185,1,1,100,101]]],[5,14,13,101,114,[[188,3,2,101,103],[189,2,2,103,105],[191,1,1,105,106],[192,1,1,106,107],[195,3,3,107,110],[204,1,1,110,111],[206,1,1,111,112],[209,2,2,112,114]]],[6,20,20,114,134,[[213,1,1,114,115],[214,1,1,115,116],[216,2,2,116,118],[217,2,2,118,120],[219,4,4,120,124],[221,3,3,124,127],[223,1,1,127,128],[226,1,1,128,129],[228,1,1,129,130],[229,2,2,130,132],[230,1,1,132,133],[231,1,1,133,134]]],[7,3,3,134,137,[[232,1,1,134,135],[233,1,1,135,136],[235,1,1,136,137]]],[8,42,39,137,176,[[237,3,3,137,140],[239,3,3,140,143],[240,1,1,143,144],[244,5,4,144,148],[245,6,5,148,153],[247,1,1,153,154],[249,1,1,154,155],[251,5,4,155,159],[252,2,2,159,161],[255,4,4,161,165],[256,1,1,165,166],[258,2,2,166,168],[260,4,4,168,172],[261,1,1,172,173],[264,1,1,173,174],[265,1,1,174,175],[266,1,1,175,176]]],[9,34,31,176,207,[[268,1,1,176,177],[269,1,1,177,178],[271,4,4,178,182],[272,1,1,182,183],[275,1,1,183,184],[277,1,1,184,185],[278,2,1,185,186],[279,4,3,186,189],[280,5,4,189,193],[281,3,3,193,196],[282,1,1,196,197],[283,5,5,197,202],[285,3,3,202,205],[290,2,2,205,207]]],[10,11,11,207,218,[[291,1,1,207,208],[298,2,2,208,210],[300,1,1,210,211],[302,2,2,211,213],[303,1,1,213,214],[304,1,1,214,215],[307,1,1,215,216],[308,1,1,216,217],[312,1,1,217,218]]],[11,20,20,218,238,[[316,3,3,218,221],[317,3,3,221,224],[318,1,1,224,225],[319,2,2,225,227],[320,2,2,227,229],[321,1,1,229,230],[322,1,1,230,231],[328,1,1,231,232],[330,1,1,232,233],[331,3,3,233,236],[332,2,2,236,238]]],[12,10,10,238,248,[[346,1,1,238,239],[347,1,1,239,240],[348,1,1,240,241],[349,2,2,241,243],[351,1,1,243,244],[353,1,1,244,245],[356,2,2,245,247],[361,1,1,247,248]]],[13,21,20,248,268,[[372,3,2,248,250],[374,1,1,250,251],[375,1,1,251,252],[376,1,1,252,253],[377,1,1,253,254],[384,1,1,254,255],[385,1,1,255,256],[386,2,2,256,258],[388,1,1,258,259],[389,2,2,259,261],[391,2,2,261,263],[394,1,1,263,264],[396,2,2,264,266],[398,2,2,266,268]]],[14,5,5,268,273,[[405,1,1,268,269],[410,1,1,269,270],[411,1,1,270,271],[412,2,2,271,273]]],[15,8,7,273,280,[[414,2,2,273,275],[416,2,2,275,277],[418,2,1,277,278],[425,2,2,278,280]]],[16,6,6,280,286,[[426,2,2,280,282],[429,1,1,282,283],[430,2,2,283,285],[431,1,1,285,286]]],[17,19,18,286,304,[[437,2,1,286,287],[438,3,3,287,290],[439,1,1,290,291],[440,1,1,291,292],[444,1,1,292,293],[448,1,1,293,294],[449,1,1,294,295],[452,1,1,295,296],[454,1,1,296,297],[455,1,1,297,298],[457,1,1,298,299],[458,1,1,299,300],[469,1,1,300,301],[473,1,1,301,302],[476,2,2,302,304]]],[18,27,27,304,331,[[482,1,1,304,305],[499,1,1,305,306],[517,1,1,306,307],[518,1,1,307,308],[519,1,1,308,309],[527,1,1,309,310],[532,1,1,310,311],[542,1,1,311,312],[546,2,2,312,314],[548,1,1,314,315],[556,2,2,315,317],[563,1,1,317,318],[565,1,1,318,319],[572,1,1,319,320],[573,1,1,320,321],[577,1,1,321,322],[578,1,1,322,323],[579,2,2,323,325],[586,2,2,325,327],[596,3,3,327,330],[609,1,1,330,331]]],[19,8,8,331,339,[[633,3,3,331,334],[634,1,1,334,335],[638,1,1,335,336],[651,2,2,336,338],[653,1,1,338,339]]],[20,3,3,339,342,[[660,1,1,339,340],[666,1,1,340,341],[670,1,1,341,342]]],[21,3,2,342,344,[[674,2,1,342,343],[675,1,1,343,344]]],[22,60,55,344,399,[[679,2,2,344,346],[683,2,2,346,348],[685,4,4,348,352],[688,2,2,352,354],[691,3,3,354,357],[692,1,1,357,358],[694,1,1,358,359],[697,2,2,359,361],[705,3,3,361,364],[706,1,1,364,365],[708,1,1,365,366],[710,1,1,366,367],[713,3,2,367,369],[714,1,1,369,370],[715,3,3,370,373],[717,2,2,373,375],[718,1,1,375,376],[719,2,2,376,378],[722,1,1,378,379],[723,2,2,379,381],[725,5,3,381,384],[727,2,2,384,386],[729,1,1,386,387],[730,1,1,387,388],[734,1,1,388,389],[737,1,1,389,390],[738,6,5,390,395],[741,1,1,395,396],[744,4,3,396,399]]],[23,79,76,399,475,[[745,1,1,399,400],[746,2,2,400,402],[747,1,1,402,403],[748,2,2,403,405],[749,1,1,405,406],[750,2,2,406,408],[751,2,2,408,410],[752,1,1,410,411],[753,3,2,411,413],[754,1,1,413,414],[756,1,1,414,415],[757,1,1,415,416],[760,2,2,416,418],[761,2,2,418,420],[763,1,1,420,421],[764,1,1,421,422],[766,1,1,422,423],[767,3,3,423,426],[769,1,1,426,427],[770,1,1,427,428],[771,2,2,428,430],[774,1,1,430,431],[775,5,5,431,436],[776,3,3,436,439],[777,2,2,439,441],[780,1,1,441,442],[781,1,1,442,443],[782,1,1,443,444],[784,4,2,444,446],[790,4,4,446,450],[791,1,1,450,451],[792,4,4,451,455],[793,5,5,455,460],[794,4,4,460,464],[795,11,11,464,475]]],[24,3,3,475,478,[[797,2,2,475,477],[800,1,1,477,478]]],[25,48,43,478,521,[[808,10,7,478,485],[812,2,2,485,487],[813,1,1,487,488],[817,3,3,488,491],[818,1,1,491,492],[821,1,1,492,493],[822,5,5,493,498],[823,2,2,498,500],[824,2,2,500,502],[825,1,1,502,503],[831,1,1,503,504],[834,6,5,504,509],[837,1,1,509,510],[839,5,5,510,515],[840,2,2,515,517],[845,1,1,517,518],[847,1,1,518,519],[848,3,2,519,521]]],[26,14,13,521,534,[[858,3,3,521,524],[859,4,3,524,527],[860,7,7,527,534]]],[27,7,6,534,540,[[865,1,1,534,535],[867,1,1,535,536],[870,2,1,536,537],[871,1,1,537,538],[874,2,2,538,540]]],[28,5,5,540,545,[[876,2,2,540,542],[877,1,1,542,543],[878,2,2,543,545]]],[29,5,5,545,550,[[882,1,1,545,546],[883,1,1,546,547],[886,2,2,547,549],[887,1,1,549,550]]],[32,6,6,550,556,[[893,2,2,550,552],[895,1,1,552,553],[896,1,1,553,554],[897,1,1,554,555],[899,1,1,555,556]]],[34,2,2,556,558,[[903,2,2,556,558]]],[35,2,1,558,559,[[907,2,1,558,559]]],[36,2,2,559,561,[[909,1,1,559,560],[910,1,1,560,561]]],[37,12,10,561,571,[[911,2,1,561,562],[912,1,1,562,563],[916,3,2,563,565],[918,2,2,565,567],[922,1,1,567,568],[924,3,3,568,571]]],[38,3,2,571,573,[[927,2,1,571,572],[928,1,1,572,573]]]],[150,155,157,312,445,479,508,719,863,936,939,974,985,1027,1106,1224,1230,1249,1259,1261,1262,1264,1267,1273,1354,1374,1376,1377,1417,1421,1424,1425,1458,1479,1483,1572,1588,1592,1597,1713,1803,1841,2005,2014,2015,2028,2035,2071,2075,2122,2171,2541,3048,3068,3119,3145,3146,3155,3182,3203,3204,3224,3227,3229,3304,3412,3471,3494,3748,3758,3829,4096,4138,4155,4171,4296,4303,4395,4411,4413,4688,4818,4912,4914,5245,5249,5319,5373,5378,5390,5393,5510,5511,5569,5613,5626,5656,5701,5709,5739,5826,5872,5887,5901,5908,5948,5968,6043,6045,6046,6297,6378,6467,6475,6595,6619,6658,6672,6707,6711,6769,6778,6785,6791,6836,6841,6862,6892,6951,7003,7047,7053,7064,7124,7146,7161,7201,7271,7274,7276,7300,7303,7304,7324,7396,7404,7405,7407,7421,7423,7425,7426,7440,7468,7534,7597,7600,7601,7606,7663,7670,7739,7749,7751,7767,7787,7817,7820,7869,7880,7895,7901,7915,7977,7979,8013,8073,8104,8140,8145,8155,8157,8166,8233,8266,8290,8322,8323,8352,8359,8371,8385,8388,8393,8417,8421,8442,8451,8455,8461,8466,8476,8522,8531,8536,8705,8713,8752,9016,9027,9081,9152,9172,9206,9231,9335,9353,9507,9604,9635,9639,9653,9655,9669,9694,9712,9713,9728,9734,9786,9799,9975,10056,10064,10093,10094,10112,10115,10640,10663,10678,10737,10751,10788,10849,10910,10916,11034,11304,11314,11357,11365,11396,11415,11556,11586,11598,11609,11651,11662,11671,11714,11718,11781,11828,11832,11877,11879,12105,12236,12250,12260,12266,12314,12317,12367,12370,12411,12672,12693,12714,12721,12773,12783,12787,12797,12902,12910,12911,12929,12935,12977,13083,13169,13195,13270,13309,13348,13410,13422,13711,13804,13901,13904,13980,14235,14532,14548,14557,14671,14737,14862,14937,14962,14994,15186,15196,15293,15310,15460,15473,15510,15515,15522,15534,15772,15773,15939,15975,16068,16154,16543,16551,16555,16595,16715,17104,17113,17143,17349,17468,17524,17598,17599,17666,17677,17758,17765,17799,17801,17806,17807,17853,17878,17911,17912,17928,17959,17981,18005,18027,18157,18162,18164,18179,18246,18269,18324,18330,18347,18355,18385,18386,18415,18418,18430,18473,18476,18540,18581,18585,18608,18610,18612,18648,18654,18684,18697,18754,18820,18822,18825,18826,18827,18834,18870,18937,18940,18945,18961,18968,18996,19020,19039,19043,19070,19092,19115,19129,19151,19169,19192,19200,19223,19261,19286,19350,19355,19372,19383,19413,19428,19477,19489,19491,19501,19565,19574,19599,19603,19670,19700,19703,19718,19722,19729,19738,19755,19760,19780,19789,19848,19893,19920,19945,19951,20058,20063,20066,20067,20078,20088,20092,20096,20101,20129,20131,20136,20141,20163,20170,20193,20197,20207,20222,20225,20245,20258,20259,20260,20263,20264,20265,20268,20272,20314,20332,20438,20579,20582,20583,20584,20587,20589,20603,20671,20673,20696,20769,20778,20795,20837,20898,20963,20964,20969,20971,20973,20979,20980,21031,21047,21082,21208,21283,21284,21286,21311,21313,21367,21433,21434,21438,21440,21443,21456,21465,21624,21664,21688,21699,22001,22011,22014,22027,22029,22035,22042,22043,22045,22051,22065,22066,22081,22148,22170,22215,22237,22279,22281,22304,22306,22342,22354,22356,22412,22432,22483,22492,22508,22588,22594,22619,22628,22638,22676,22739,22740,22807,22842,22862,22899,22909,22957,22962,22996,22998,23054,23073,23086,23089,23121,23144]]],["comest",[18,18,[[0,3,3,0,3,[[9,1,1,0,1],[12,1,1,1,2],[23,1,1,2,3]]],[4,2,2,3,5,[[175,2,2,3,5]]],[6,2,2,5,7,[[227,1,1,5,6],[229,1,1,6,7]]],[8,3,3,7,10,[[250,1,1,7,8],[252,2,2,8,10]]],[9,2,2,10,12,[[267,1,1,10,11],[269,1,1,11,12]]],[10,1,1,12,13,[[309,1,1,12,13]]],[11,1,1,13,14,[[321,1,1,13,14]]],[17,2,2,14,16,[[436,1,1,14,15],[437,1,1,15,16]]],[23,1,1,16,17,[[795,1,1,16,17]]],[31,1,1,17,18,[[889,1,1,17,18]]]],[253,328,632,5524,5525,6989,7041,7567,7661,7663,8025,8094,9402,9758,12876,12893,20273,22539]]],["cometh",[81,73,[[0,3,3,0,3,[[28,1,1,0,1],[36,1,1,1,2],[47,1,1,2,3]]],[1,1,1,3,4,[[78,1,1,3,4]]],[2,1,1,4,5,[[100,1,1,4,5]]],[8,3,3,5,8,[[239,1,1,5,6],[255,2,2,6,8]]],[9,2,2,8,10,[[279,1,1,8,9],[284,1,1,9,10]]],[10,2,2,10,12,[[298,1,1,10,11],[304,1,1,11,12]]],[11,5,5,12,17,[[316,1,1,12,13],[318,1,1,13,14],[322,1,1,14,15],[323,1,1,15,16],[324,1,1,16,17]]],[12,1,1,17,18,[[353,1,1,17,18]]],[13,5,5,18,23,[[379,1,1,18,19],[386,3,3,19,22],[389,1,1,22,23]]],[17,6,6,23,29,[[438,1,1,23,24],[440,1,1,24,25],[456,1,1,25,26],[462,1,1,26,27],[463,1,1,27,28],[472,1,1,28,29]]],[18,5,4,29,33,[[573,2,1,29,30],[575,1,1,30,31],[595,1,1,31,32],[598,1,1,32,33]]],[19,11,8,33,41,[[628,3,2,33,35],[630,1,1,35,36],[638,3,2,36,38],[640,1,1,38,39],[645,3,2,39,41]]],[20,3,3,41,44,[[659,1,1,41,42],[663,1,1,42,43],[664,1,1,43,44]]],[21,1,1,44,45,[[672,1,1,44,45]]],[22,7,7,45,52,[[691,1,1,45,46],[699,2,2,46,48],[708,2,2,48,50],[740,1,1,50,51],[741,1,1,51,52]]],[23,8,7,52,59,[[750,2,2,52,54],[761,2,2,54,56],[787,1,1,56,57],[790,2,1,57,58],[791,1,1,58,59]]],[25,9,7,59,66,[[808,1,1,59,60],[815,3,2,60,62],[822,2,1,62,63],[825,1,1,63,64],[831,1,1,64,65],[848,1,1,65,66]]],[26,1,1,66,67,[[860,1,1,66,67]]],[28,1,1,67,68,[[877,1,1,67,68]]],[32,2,2,68,70,[[897,1,1,68,69],[899,1,1,69,70]]],[37,2,2,70,72,[[919,1,1,70,71],[924,1,1,71,72]]],[38,2,1,72,73,[[928,2,1,72,73]]]],[801,1102,1453,2366,3031,7300,7757,7759,8322,8505,9026,9223,9613,9706,9795,9837,9859,10853,11462,11589,11596,11599,11663,12928,12972,13372,13490,13524,13778,15478,15499,15895,16082,16426,16427,16480,16690,16696,16759,16904,16918,17319,17400,17421,17562,17915,18036,18044,18230,18244,18865,18867,19109,19111,19363,19365,20008,20065,20077,20602,20735,20738,20951,21080,21213,21688,22052,22312,22639,22668,23008,23069,23139]]],["coming",[12,12,[[0,1,1,0,1,[[23,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[8,2,2,3,5,[[257,1,1,3,4],[264,1,1,4,5]]],[13,1,1,5,6,[[388,1,1,5,6]]],[14,1,1,6,7,[[405,1,1,6,7]]],[18,1,1,7,8,[[514,1,1,7,8]]],[22,1,1,8,9,[[692,1,1,8,9]]],[23,1,1,9,10,[[752,1,1,9,10]]],[38,2,2,10,12,[[927,1,1,10,11],[928,1,1,11,12]]]],[654,4800,6651,7796,7973,11651,12105,14463,17937,19160,23122,23143]]],["departed",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9805]]],["down",[24,24,[[0,2,2,0,2,[[14,2,2,0,2]]],[1,2,2,2,4,[[66,1,1,2,3],[71,1,1,3,4]]],[2,1,1,4,5,[[111,1,1,4,5]]],[4,4,4,5,9,[[168,1,1,5,6],[175,1,1,6,7],[176,2,2,7,9]]],[5,3,3,9,12,[[194,1,1,9,10],[196,2,2,10,12]]],[6,2,2,12,14,[[224,1,1,12,13],[229,1,1,13,14]]],[9,2,2,14,16,[[268,1,1,14,15],[269,1,1,15,16]]],[10,1,1,16,17,[[312,1,1,16,17]]],[13,1,1,17,18,[[384,1,1,17,18]]],[20,1,1,18,19,[[659,1,1,18,19]]],[22,1,1,19,20,[[738,1,1,19,20]]],[23,1,1,20,21,[[759,1,1,20,21]]],[25,1,1,21,22,[[825,1,1,21,22]]],[29,1,1,22,23,[[886,1,1,22,23]]],[32,1,1,23,24,[[895,1,1,23,24]]]],[372,377,1995,2139,3376,5348,5511,5538,5540,6031,6077,6091,6927,7038,8073,8116,9516,11576,17320,18841,19324,21072,22490,22614]]],["enter",[65,63,[[0,1,1,0,1,[[11,1,1,0,1]]],[1,1,1,1,2,[[89,1,1,1,2]]],[3,4,4,2,6,[[120,1,1,2,3],[121,2,2,3,5],[136,1,1,5,6]]],[4,6,4,6,10,[[175,6,4,6,10]]],[5,1,1,10,11,[[196,1,1,10,11]]],[6,1,1,11,12,[[228,1,1,11,12]]],[10,2,2,12,14,[[304,1,1,12,13],[312,1,1,13,14]]],[11,3,3,14,17,[[319,1,1,14,15],[323,1,1,15,16],[331,1,1,16,17]]],[13,2,2,17,19,[[373,1,1,17,18],[396,1,1,18,19]]],[15,1,1,19,20,[[414,1,1,19,20]]],[16,1,1,20,21,[[429,1,1,20,21]]],[17,1,1,21,22,[[457,1,1,21,22]]],[18,5,5,22,27,[[514,1,1,22,23],[522,1,1,23,24],[572,1,1,24,25],[595,1,1,25,26],[620,1,1,26,27]]],[19,2,2,27,29,[[645,1,1,27,28],[650,1,1,28,29]]],[22,5,5,29,34,[[681,1,1,29,30],[704,1,1,30,31],[715,1,1,31,32],[735,1,1,32,33],[737,1,1,33,34]]],[23,6,6,34,40,[[751,1,1,34,35],[752,1,1,35,36],[758,1,1,36,37],[761,1,1,37,38],[765,1,1,38,39],[766,1,1,39,40]]],[24,2,2,40,42,[[797,1,1,40,41],[799,1,1,41,42]]],[25,12,12,42,54,[[808,1,1,42,43],[814,1,1,43,44],[821,1,1,44,45],[827,1,1,45,46],[838,1,1,46,47],[843,1,1,47,48],[845,4,4,48,52],[847,2,2,52,54]]],[26,5,5,54,59,[[860,5,5,54,59]]],[27,1,1,59,60,[[872,1,1,59,60]]],[29,1,1,60,61,[[883,1,1,60,61]]],[31,1,1,61,62,[[891,1,1,61,62]]],[37,1,1,62,63,[[915,1,1,62,63]]]],[309,2742,3746,3816,3819,4335,5501,5502,5503,5508,6083,7002,9230,9510,9711,9834,10084,11326,11835,12315,12764,13393,14465,14612,15465,15889,16295,16907,17054,17721,18150,18376,18767,18814,19121,19167,19311,19382,19453,19456,20320,20367,20599,20717,20933,21110,21402,21566,21602,21608,21615,21620,21657,21663,22043,22053,22060,22076,22077,22249,22428,22562,22940]]],["entered",[32,32,[[0,4,4,0,4,[[6,1,1,0,1],[18,2,2,1,3],[30,1,1,3,4]]],[5,3,3,4,7,[[188,1,1,4,5],[194,1,1,5,6],[196,1,1,6,7]]],[6,2,2,7,9,[[216,1,1,7,8],[219,1,1,8,9]]],[9,1,1,9,10,[[276,1,1,9,10]]],[11,1,1,10,11,[[319,1,1,10,11]]],[12,1,1,11,12,[[356,1,1,11,12]]],[13,3,3,12,15,[[381,1,1,12,13],[393,1,1,13,14],[398,1,1,14,15]]],[15,2,2,15,17,[[414,1,1,15,16],[422,1,1,16,17]]],[17,2,2,17,19,[[473,2,2,17,19]]],[23,4,4,19,23,[[746,1,1,19,20],[753,1,1,20,21],[778,1,1,21,22],[781,1,1,22,23]]],[24,2,2,23,25,[[797,1,1,23,24],[800,1,1,24,25]]],[25,5,5,25,30,[[803,1,1,25,26],[804,1,1,26,27],[817,1,1,27,28],[837,1,1,28,29],[842,1,1,29,30]]],[30,1,1,30,31,[[888,1,1,30,31]]],[34,1,1,31,32,[[905,1,1,31,32]]]],[172,460,480,906,5872,6021,6084,6659,6800,8254,9715,10922,11502,11757,11876,12322,12578,13809,13815,18972,19196,19811,19890,20320,20432,20494,20526,20770,21379,21532,22523,22784]]],["entereth",[8,8,[[3,4,4,0,4,[[120,4,4,0,4]]],[13,1,1,4,5,[[397,1,1,4,5]]],[19,1,1,5,6,[[629,1,1,5,6]]],[25,2,2,6,8,[[843,1,1,6,7],[847,1,1,7,8]]]],[3773,3778,3782,3786,11870,16443,21564,21664]]],["entering",[5,5,[[5,1,1,0,1,[[199,1,1,0,1]]],[8,1,1,1,2,[[258,1,1,1,2]]],[12,1,1,2,3,[[350,1,1,2,3]]],[13,1,1,3,4,[[389,1,1,3,4]]],[23,1,1,4,5,[[761,1,1,4,5]]]],[6159,7817,10765,11660,19384]]],["entrance",[2,2,[[3,1,1,0,1,[[150,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]]],[4824,9387]]],["fallen",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4737]]],["fetch",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12508]]],["gat",[2,2,[[9,1,1,0,1,[[285,1,1,0,1]]],[24,1,1,1,2,[[801,1,1,1,2]]]],[8514,20451]]],["gave",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15142]]],["get",[7,7,[[0,1,1,0,1,[[44,1,1,0,1]]],[8,1,1,1,2,[[257,1,1,1,2]]],[11,1,1,2,3,[[319,1,1,2,3]]],[22,2,2,3,5,[[700,1,1,3,4],[725,1,1,4,5]]],[25,2,2,5,7,[[804,2,2,5,7]]]],[1375,7792,9719,18067,18604,20506,20513]]],["go",[77,77,[[0,3,3,0,3,[[14,1,1,0,1],[30,1,1,1,2],[36,1,1,2,3]]],[1,3,3,3,6,[[63,1,1,3,4],[67,1,1,4,5],[79,1,1,5,6]]],[2,2,2,6,8,[[99,1,1,6,7],[103,1,1,7,8]]],[3,4,4,8,12,[[121,1,1,8,9],[126,1,1,9,10],[148,2,2,10,12]]],[4,11,11,12,23,[[153,1,1,12,13],[156,2,2,13,15],[161,1,1,15,16],[164,1,1,16,17],[176,1,1,17,18],[178,1,1,18,19],[182,1,1,19,20],[183,2,2,20,22],[184,1,1,22,23]]],[5,1,1,23,24,[[204,1,1,23,24]]],[6,1,1,24,25,[[228,1,1,24,25]]],[8,1,1,25,26,[[260,1,1,25,26]]],[9,1,1,26,27,[[277,1,1,26,27]]],[10,3,3,27,30,[[301,1,1,27,28],[304,1,1,28,29],[307,1,1,29,30]]],[11,4,4,30,34,[[317,1,1,30,31],[319,2,2,31,33],[330,1,1,33,34]]],[13,5,5,34,39,[[380,1,1,34,35],[384,2,2,35,37],[391,2,2,37,39]]],[14,1,1,39,40,[[411,1,1,39,40]]],[15,1,1,40,41,[[418,1,1,40,41]]],[16,2,2,41,43,[[427,1,1,41,42],[430,1,1,42,43]]],[17,1,1,43,44,[[472,1,1,43,44]]],[18,7,7,44,51,[[520,1,1,44,45],[526,1,1,45,46],[540,1,1,46,47],[543,1,1,47,48],[548,1,1,48,49],[595,1,1,49,50],[609,1,1,50,51]]],[19,3,3,51,54,[[649,1,1,51,52],[650,1,1,52,53],[654,1,1,53,54]]],[22,5,5,54,59,[[680,2,2,54,56],[691,1,1,56,57],[708,1,1,57,58],[714,1,1,58,59]]],[23,11,11,59,70,[[748,2,2,59,61],[760,1,1,61,62],[771,1,1,62,63],[778,1,1,63,64],[779,1,1,64,65],[780,2,2,65,67],[786,3,3,67,70]]],[25,3,3,70,73,[[821,1,1,70,71],[839,1,1,71,72],[848,1,1,72,73]]],[31,1,1,73,74,[[889,1,1,73,74]]],[32,1,1,74,75,[[896,1,1,74,75]]],[33,1,1,75,76,[[902,1,1,75,76]]],[37,1,1,76,77,[[916,1,1,76,77]]]],[375,891,1113,1905,2022,2402,2986,3147,3814,3997,4724,4727,4899,5009,5038,5162,5266,5535,5569,5726,5735,5744,5810,6296,7003,7866,8270,9125,9221,9330,9652,9712,9716,10045,11486,11566,11571,11711,11712,12248,12412,12737,12793,13777,14570,14667,14848,14886,14992,15888,16158,17039,17074,17179,17704,17706,17908,18225,18336,19032,19056,19344,19614,19804,19834,19847,19848,19989,19990,19997,20924,21436,21694,22534,22630,22726,22957]]],["goest",[12,12,[[0,3,3,0,3,[[9,2,2,0,2],[24,1,1,2,3]]],[1,1,1,3,4,[[83,1,1,3,4]]],[4,7,7,4,11,[[159,1,1,4,5],[163,1,1,5,6],[164,1,1,6,7],[175,1,1,7,8],[180,2,2,8,10],[182,1,1,10,11]]],[8,1,1,11,12,[[262,1,1,11,12]]]],[253,264,676,2508,5112,5237,5269,5520,5632,5674,5724,7938]]],["goeth",[7,7,[[2,1,1,0,1,[[103,1,1,0,1]]],[4,1,1,1,2,[[171,1,1,1,2]]],[11,1,1,2,3,[[317,1,1,2,3]]],[19,1,1,3,4,[[634,1,1,3,4]]],[25,3,3,4,7,[[843,1,1,4,5],[845,1,1,5,6],[849,1,1,6,7]]]],[3157,5411,9665,16597,21561,21626,21703]]],["going",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22534]]],["gone",[8,8,[[1,1,1,0,1,[[82,1,1,0,1]]],[3,1,1,1,2,[[123,1,1,1,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[9,1,1,3,4,[[269,1,1,3,4]]],[22,1,1,4,5,[[719,1,1,4,5]]],[23,3,3,5,8,[[788,3,3,5,8]]]],[2481,3939,7771,8088,18454,20018,20024,20038]]],["granted",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10395]]],["had",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1313]]],["have",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12986]]],["in",[234,219,[[0,36,33,0,33,[[5,1,1,0,1],[6,5,4,1,5],[7,1,1,5,6],[15,2,2,6,8],[18,5,5,8,13],[22,2,2,13,15],[23,1,1,15,16],[26,1,1,16,17],[28,3,3,17,20],[29,3,3,20,23],[37,6,5,23,28],[38,3,2,28,30],[39,1,1,30,31],[40,1,1,31,32],[42,1,1,32,33]]],[1,21,21,33,54,[[50,1,1,33,34],[54,1,1,34,35],[55,1,1,35,36],[56,1,1,36,37],[58,1,1,37,38],[59,2,2,38,40],[61,1,1,40,41],[63,1,1,41,42],[64,2,2,42,44],[65,1,1,44,45],[70,1,1,45,46],[72,1,1,46,47],[75,1,1,47,48],[77,4,4,48,52],[83,2,2,52,54]]],[2,8,8,54,62,[[95,1,1,54,55],[99,1,1,55,56],[103,1,1,56,57],[105,2,2,57,59],[110,2,2,59,61],[114,1,1,61,62]]],[3,9,8,62,70,[[120,3,3,62,65],[124,2,2,65,67],[130,1,1,67,68],[143,3,2,68,70]]],[4,24,24,70,94,[[153,4,4,70,74],[156,3,3,74,77],[158,1,1,77,78],[160,1,1,78,79],[161,2,2,79,81],[162,1,1,81,82],[163,4,4,82,86],[173,1,1,86,87],[174,1,1,87,88],[177,1,1,88,89],[178,1,1,89,90],[179,1,1,90,91],[180,2,2,91,93],[183,1,1,93,94]]],[5,5,5,94,99,[[187,1,1,94,95],[192,2,2,95,97],[200,1,1,97,98],[209,1,1,98,99]]],[6,10,8,99,107,[[213,2,2,99,101],[216,1,1,101,102],[222,1,1,102,103],[225,2,1,103,104],[226,1,1,104,105],[228,1,1,105,106],[229,2,1,106,107]]],[7,1,1,107,108,[[234,1,1,107,108]]],[8,5,5,108,113,[[253,2,2,108,110],[254,1,1,110,111],[259,1,1,111,112],[264,1,1,112,113]]],[9,2,1,113,114,[[271,2,1,113,114]]],[10,19,17,114,131,[[291,6,6,114,120],[293,1,1,120,121],[300,1,1,121,122],[301,2,1,122,123],[303,2,2,123,125],[304,3,2,125,127],[305,1,1,127,128],[306,1,1,128,129],[307,1,1,129,130],[311,1,1,130,131]]],[11,14,14,131,145,[[316,3,3,131,134],[317,2,2,134,136],[321,3,3,136,139],[322,2,2,139,141],[323,2,2,141,143],[325,1,1,143,144],[331,1,1,144,145]]],[12,5,5,145,150,[[339,1,1,145,146],[342,1,1,146,147],[344,1,1,147,148],[346,1,1,148,149],[364,1,1,149,150]]],[13,17,17,150,167,[[367,1,1,150,151],[381,1,1,151,152],[382,1,1,152,153],[389,4,4,153,157],[390,3,3,157,160],[392,2,2,160,162],[395,1,1,162,163],[396,1,1,163,164],[397,2,2,164,166],[399,1,1,166,167]]],[15,6,6,167,173,[[418,1,1,167,168],[421,3,3,168,171],[425,2,2,171,173]]],[16,10,10,173,183,[[426,1,1,173,174],[427,3,3,174,177],[429,3,3,177,180],[430,1,1,180,181],[431,2,2,181,183]]],[18,5,5,183,188,[[501,2,2,183,185],[503,1,1,185,186],[546,1,1,186,187],[598,1,1,187,188]]],[19,1,1,188,189,[[633,1,1,188,189]]],[22,3,3,189,192,[[704,1,1,189,190],[715,1,1,190,191],[737,1,1,191,192]]],[23,8,8,192,200,[[761,4,4,192,196],[766,1,1,196,197],[780,1,1,197,198],[781,1,1,198,199],[783,1,1,199,200]]],[25,16,11,200,211,[[809,2,2,200,202],[810,1,1,202,203],[811,2,2,203,205],[824,3,1,205,206],[845,3,2,206,208],[847,5,3,208,211]]],[26,4,3,211,214,[[850,2,1,211,212],[858,1,1,212,213],[860,1,1,213,214]]],[27,1,1,214,215,[[868,1,1,214,215]]],[28,1,1,215,216,[[877,1,1,215,216]]],[31,1,1,216,217,[[890,1,1,216,217]]],[36,1,1,217,218,[[909,1,1,217,218]]],[37,1,1,218,219,[[918,1,1,218,219]]]],[141,166,168,174,175,194,383,385,462,466,488,490,491,581,589,622,757,816,818,825,833,834,846,1121,1127,1128,1135,1137,1163,1166,1178,1209,1308,1551,1633,1666,1695,1743,1778,1780,1839,1912,1937,1939,1952,2080,2167,2268,2322,2323,2328,2336,2530,2531,2870,2995,3147,3218,3228,3356,3368,3491,3762,3763,3766,3954,3963,4139,4571,4575,4900,4929,4930,4931,5005,5025,5042,5104,5138,5158,5161,5197,5216,5218,5237,5239,5460,5483,5552,5567,5588,5617,5630,5730,5862,5950,5972,6198,6472,6571,6590,6673,6878,6930,6950,7010,7039,7176,7689,7692,7722,7842,7973,8138,8730,8731,8732,8739,8740,8759,8823,9090,9110,9192,9200,9223,9224,9266,9293,9329,9464,9607,9636,9640,9651,9672,9758,9787,9790,9817,9818,9837,9838,9891,10088,10327,10437,10558,10643,11110,11204,11495,11510,11662,11663,11664,11675,11683,11686,11687,11740,11749,11822,11842,11859,11860,11922,12412,12526,12534,12535,12686,12690,12719,12736,12738,12739,12770,12773,12778,12791,12798,12799,14248,14250,14277,14936,16089,16569,18132,18380,18819,19376,19377,19378,19381,19458,19862,19878,19926,20613,20614,20624,20636,20639,21051,21601,21616,21663,21664,21665,21755,22012,22057,22179,22320,22555,22846,22986]]],["into",[26,26,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,1,1,1,2,[[82,1,1,1,2]]],[5,2,2,2,4,[[188,1,1,2,3],[192,1,1,3,4]]],[6,1,1,4,5,[[219,1,1,4,5]]],[7,1,1,5,6,[[234,1,1,5,6]]],[10,2,2,6,8,[[291,1,1,6,7],[312,1,1,7,8]]],[13,4,4,8,12,[[381,1,1,8,9],[398,1,1,9,10],[400,2,2,10,12]]],[15,1,1,12,13,[[425,1,1,12,13]]],[18,1,1,13,14,[[582,1,1,13,14]]],[23,8,8,14,22,[[770,1,1,14,15],[782,1,1,15,16],[785,1,1,16,17],[786,3,3,17,20],[787,1,1,20,21],[788,1,1,21,22]]],[25,1,1,22,23,[[848,1,1,22,23]]],[26,1,1,23,24,[[850,1,1,23,24]]],[27,1,1,24,25,[[870,1,1,24,25]]],[30,1,1,25,26,[[888,1,1,25,26]]]],[1320,2482,5870,5971,6781,7187,8745,9505,11508,11896,11942,11947,12686,15629,19593,19906,19974,19990,19992,19993,20004,20022,21687,21739,22212,22521]]],["invade",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11597]]],["invaded",[1,1,[[11,1,1,0,1,[[325,1,1,0,1]]]],[9891]]],["laid",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15624]]],["led",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20837]]],["mentioned",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10423]]],["pass",[16,16,[[4,2,2,0,2,[[165,1,1,0,1],[170,1,1,1,2]]],[5,2,2,2,4,[[207,1,1,2,3],[209,1,1,3,4]]],[6,2,2,4,6,[[223,2,2,4,6]]],[8,1,1,6,7,[[245,1,1,6,7]]],[11,1,1,7,8,[[331,1,1,7,8]]],[22,5,5,8,13,[[715,1,1,8,9],[720,1,1,9,10],[724,1,1,10,11],[726,2,2,11,13]]],[23,1,1,13,14,[[772,1,1,13,14]]],[25,2,2,14,16,[[825,1,1,14,15],[834,1,1,15,16]]]],[5274,5406,6426,6474,6896,6901,7427,10086,18378,18489,18597,18617,18619,19627,21070,21313]]],["put",[6,6,[[1,2,2,0,2,[[53,1,1,0,1],[76,1,1,1,2]]],[2,2,2,2,4,[[100,1,1,2,3],[103,1,1,3,4]]],[15,1,1,4,5,[[415,1,1,4,5]]],[23,1,1,5,6,[[757,1,1,5,6]]]],[1607,2279,3029,3153,12332,19267]]],["resort",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14979]]],["runneth",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12216]]],["send",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3560]]],["set",[1,1,[[0,1,1,0,1,[[27,1,1,0,1]]]],[784]]],["stricken",[7,6,[[0,2,2,0,2,[[17,1,1,0,1],[23,1,1,1,2]]],[5,4,3,2,5,[[199,2,1,2,3],[209,2,2,3,5]]],[10,1,1,5,6,[[291,1,1,5,6]]]],[435,592,6155,6461,6462,8718]]],["taken",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20838]]],["to",[1,1,[[13,1,1,0,1,[[389,1,1,0,1]]]],[11673]]],["unto",[1,1,[[19,1,1,0,1,[[629,1,1,0,1]]]],[16452]]],["upon",[6,6,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,2,2,1,3,[[512,1,1,1,2],[521,1,1,2,3]]],[19,2,2,3,5,[[637,1,1,3,4],[655,1,1,4,5]]],[25,1,1,5,6,[[833,1,1,5,6]]]],[13224,14418,14588,16680,17218,21259]]],["went",[62,62,[[0,2,2,0,2,[[30,1,1,0,1],[38,1,1,1,2]]],[1,4,4,2,6,[[56,1,1,2,3],[63,1,1,3,4],[73,1,1,4,5],[89,1,1,5,6]]],[2,2,2,6,8,[[98,1,1,6,7],[105,1,1,7,8]]],[3,6,6,8,14,[[130,1,1,8,9],[133,1,1,9,10],[136,1,1,10,11],[138,1,1,11,12],[141,1,1,12,13],[147,1,1,13,14]]],[6,4,4,14,18,[[214,1,1,14,15],[219,1,1,15,16],[228,2,2,16,18]]],[7,3,3,18,21,[[233,1,1,18,19],[234,1,1,19,20],[235,1,1,20,21]]],[8,3,3,21,24,[[252,1,1,21,22],[255,1,1,22,23],[256,1,1,23,24]]],[9,10,10,24,34,[[273,1,1,24,25],[278,2,2,25,27],[282,1,1,27,28],[283,1,1,28,29],[284,1,1,29,30],[286,4,4,30,34]]],[10,4,4,34,38,[[292,1,1,34,35],[304,1,1,35,36],[306,1,1,36,37],[312,1,1,37,38]]],[11,6,6,38,44,[[319,1,1,38,39],[321,1,1,39,40],[322,1,1,40,41],[323,2,2,41,43],[331,1,1,43,44]]],[13,5,5,44,49,[[374,1,1,44,45],[384,1,1,45,46],[392,1,1,46,47],[395,2,2,47,49]]],[16,1,1,49,50,[[427,1,1,49,50]]],[18,2,2,50,52,[[543,1,1,50,51],[550,1,1,51,52]]],[22,1,1,52,53,[[715,1,1,52,53]]],[23,2,2,53,55,[[772,1,1,53,54],[784,1,1,54,55]]],[25,5,5,55,60,[[811,1,1,55,56],[837,3,3,56,59],[842,1,1,59,60]]],[27,1,1,60,61,[[870,1,1,60,61]]],[29,1,1,61,62,[[883,1,1,61,62]]]],[906,1160,1708,1911,2195,2739,2976,3224,4132,4252,4317,4389,4479,4685,6620,6759,7011,7013,7167,7179,7203,7630,7772,7782,8198,8302,8310,8448,8474,8487,8557,8562,8568,8576,8789,9246,9301,9510,9715,9762,9816,9845,9847,10062,11364,11571,11748,11807,11809,12738,14885,15037,18353,19622,19947,20635,21379,21380,21381,21529,22218,22442]]]]},{"k":"H936","v":[["*",[13,12,[[19,8,8,0,8,[[628,1,1,0,1],[633,1,1,1,2],[638,1,1,2,3],[640,1,1,3,4],[641,1,1,4,5],[650,2,2,5,7],[657,1,1,7,8]]],[21,3,2,8,10,[[678,3,2,8,10]]],[22,1,1,10,11,[[715,1,1,10,11]]],[37,1,1,11,12,[[914,1,1,11,12]]]],[16407,16570,16700,16760,16793,17053,17066,17268,17641,17647,18374,22932]]],["+",[2,1,[[21,2,1,0,1,[[678,2,1,0,1]]]],[17647]]],["despise",[4,4,[[19,4,4,0,4,[[628,1,1,0,1],[633,1,1,1,2],[650,2,2,2,4]]]],[16407,16570,17053,17066]]],["despised",[3,3,[[21,1,1,0,1,[[678,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]],[37,1,1,2,3,[[914,1,1,2,3]]]],[17641,18374,22932]]],["despiseth",[4,4,[[19,4,4,0,4,[[638,1,1,0,1],[640,1,1,1,2],[641,1,1,2,3],[657,1,1,3,4]]]],[16700,16760,16793,17268]]]]},{"k":"H937","v":[["*",[11,11,[[0,1,1,0,1,[[37,1,1,0,1]]],[17,3,3,1,4,[[447,2,2,1,3],[466,1,1,3,4]]],[18,5,5,4,9,[[508,1,1,4,5],[584,1,1,5,6],[596,1,1,6,7],[600,2,2,7,9]]],[19,2,2,9,11,[[639,1,1,9,10],[645,1,1,10,11]]]],[1142,13133,13149,13622,14349,15739,15920,16101,16102,16727,16904]]],["contempt",[7,7,[[17,2,2,0,2,[[447,1,1,0,1],[466,1,1,1,2]]],[18,4,4,2,6,[[584,1,1,2,3],[596,1,1,3,4],[600,2,2,4,6]]],[19,1,1,6,7,[[645,1,1,6,7]]]],[13149,13622,15739,15920,16101,16102,16904]]],["contemptuously",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14349]]],["despised",[2,2,[[17,1,1,0,1,[[447,1,1,0,1]]],[19,1,1,1,2,[[639,1,1,1,2]]]],[13133,16727]]],["shamed",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1142]]]]},{"k":"H938","v":[["Buz",[3,3,[[0,1,1,0,1,[[21,1,1,0,1]]],[12,1,1,1,2,[[342,1,1,1,2]]],[23,1,1,2,3,[[769,1,1,2,3]]]],[568,10442,19557]]]]},{"k":"H939","v":[["despised",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12363]]]]},{"k":"H940","v":[["Buzite",[2,2,[[17,2,2,0,2,[[467,2,2,0,2]]]],[13630,13634]]]]},{"k":"H941","v":[["Buzi",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20467]]]]},{"k":"H942","v":[["Bavai",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12345]]]]},{"k":"H943","v":[["*",[3,3,[[1,1,1,0,1,[[63,1,1,0,1]]],[16,1,1,1,2,[[428,1,1,1,2]]],[28,1,1,2,3,[[876,1,1,2,3]]]],[1892,12762,22309]]],["entangled",[1,1,[[1,1,1,0,1,[[63,1,1,0,1]]]],[1892]]],["perplexed",[2,2,[[16,1,1,0,1,[[428,1,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]]],[12762,22309]]]]},{"k":"H944","v":[["*",[2,2,[[17,1,1,0,1,[[475,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[13884,18552]]],["food",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13884]]],["stock",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18552]]]]},{"k":"H945","v":[["Bul",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8934]]]]},{"k":"H946","v":[["Bunah",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10331]]]]},{"k":"H947","v":[["*",[12,12,[[18,3,3,0,3,[[521,1,1,0,1],[537,1,1,1,2],[585,1,1,2,3]]],[19,1,1,3,4,[[654,1,1,3,4]]],[22,4,4,4,8,[[692,2,2,4,6],[741,2,2,6,8]]],[23,1,1,8,9,[[756,1,1,8,9]]],[25,2,2,9,11,[[817,2,2,9,11]]],[37,1,1,11,12,[[920,1,1,11,12]]]],[14576,14819,15755,17176,17947,17953,18872,18884,19259,20768,20784,23021]]],["+",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19259]]],["down",[5,5,[[18,2,2,0,2,[[537,1,1,0,1],[585,1,1,1,2]]],[22,2,2,2,4,[[741,2,2,2,4]]],[37,1,1,4,5,[[920,1,1,4,5]]]],[14819,15755,18872,18884,23021]]],["feet",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17947]]],["foot",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17953]]],["loatheth",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17176]]],["polluted",[2,2,[[25,2,2,0,2,[[817,2,2,0,2]]]],[20768,20784]]],["under",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14576]]]]},{"k":"H948","v":[["linen",[8,8,[[12,2,2,0,2,[[341,1,1,0,1],[352,1,1,1,2]]],[13,3,3,2,5,[[368,1,1,2,3],[369,1,1,3,4],[371,1,1,4,5]]],[16,2,2,5,7,[[426,1,1,5,6],[433,1,1,6,7]]],[25,1,1,7,8,[[828,1,1,7,8]]]],[10406,10818,11225,11243,11280,12708,12832,21137]]]]},{"k":"H949","v":[["Bozez",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7512]]]]},{"k":"H950","v":[["empty",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22709]]]]},{"k":"H951","v":[["herdman",[1,1,[[29,1,1,0,1,[[885,1,1,0,1]]]],[22478]]]]},{"k":"H952","v":[["+",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17476]]]]},{"k":"H953","v":[["*",[69,64,[[0,9,7,0,7,[[36,7,5,0,5],[39,1,1,5,6],[40,1,1,6,7]]],[1,4,3,7,10,[[61,1,1,7,8],[70,3,2,8,10]]],[2,1,1,10,11,[[100,1,1,10,11]]],[4,1,1,11,12,[[158,1,1,11,12]]],[8,2,2,12,14,[[248,1,1,12,13],[254,1,1,13,14]]],[9,4,4,14,18,[[269,1,1,14,15],[289,3,3,15,18]]],[11,2,2,18,20,[[322,1,1,18,19],[330,1,1,19,20]]],[12,3,3,20,23,[[348,3,3,20,23]]],[13,1,1,23,24,[[392,1,1,23,24]]],[15,1,1,24,25,[[421,1,1,24,25]]],[18,7,7,25,32,[[484,1,1,25,26],[505,1,1,26,27],[507,1,1,27,28],[517,1,1,28,29],[565,2,2,29,31],[620,1,1,31,32]]],[19,3,3,32,35,[[628,1,1,32,33],[632,1,1,33,34],[655,1,1,34,35]]],[20,1,1,35,36,[[670,1,1,35,36]]],[22,6,6,36,42,[[692,2,2,36,38],[702,1,1,38,39],[714,1,1,39,40],[716,1,1,40,41],[729,1,1,41,42]]],[23,11,10,42,52,[[750,1,1,42,43],[781,1,1,43,44],[782,7,6,44,50],[785,2,2,50,52]]],[24,2,2,52,54,[[799,2,2,52,54]]],[25,10,9,54,63,[[827,2,1,54,55],[832,2,2,55,57],[833,6,6,57,63]]],[37,1,1,63,64,[[919,1,1,63,64]]]],[1103,1105,1107,1111,1112,1187,1209,1845,2110,2111,3033,5097,7491,7728,8107,8668,8669,8673,9807,10055,10690,10691,10695,11742,12536,14010,14300,14322,14527,15312,15314,16300,16412,16532,17213,17529,17943,17947,18117,18346,18408,18674,19096,19890,19901,19902,19904,19905,19906,19908,19964,19966,20407,20409,21120,21244,21246,21266,21271,21272,21273,21277,21278,23010]]],["+",[12,12,[[1,1,1,0,1,[[61,1,1,0,1]]],[9,4,4,1,5,[[269,1,1,1,2],[289,3,3,2,5]]],[12,2,2,5,7,[[348,2,2,5,7]]],[18,1,1,7,8,[[517,1,1,7,8]]],[19,1,1,8,9,[[632,1,1,8,9]]],[23,1,1,9,10,[[781,1,1,9,10]]],[24,1,1,10,11,[[799,1,1,10,11]]],[37,1,1,11,12,[[919,1,1,11,12]]]],[1845,8107,8668,8669,8673,10690,10691,14527,16532,19890,20409,23010]]],["cistern",[3,3,[[11,1,1,0,1,[[330,1,1,0,1]]],[20,1,1,1,2,[[670,1,1,1,2]]],[22,1,1,2,3,[[714,1,1,2,3]]]],[10055,17529,18346]]],["dungeon",[10,9,[[0,2,2,0,2,[[39,1,1,0,1],[40,1,1,1,2]]],[23,7,6,2,8,[[782,7,6,2,8]]],[24,1,1,8,9,[[799,1,1,8,9]]]],[1187,1209,19901,19902,19904,19905,19906,19908,20407]]],["fountain",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19096]]],["pit",[38,34,[[0,7,5,0,5,[[36,7,5,0,5]]],[1,3,2,5,7,[[70,3,2,5,7]]],[2,1,1,7,8,[[100,1,1,7,8]]],[11,1,1,8,9,[[322,1,1,8,9]]],[12,1,1,9,10,[[348,1,1,9,10]]],[18,6,6,10,16,[[484,1,1,10,11],[505,1,1,11,12],[507,1,1,12,13],[565,2,2,13,15],[620,1,1,15,16]]],[19,2,2,16,18,[[628,1,1,16,17],[655,1,1,17,18]]],[22,5,5,18,23,[[692,2,2,18,20],[702,1,1,20,21],[716,1,1,21,22],[729,1,1,22,23]]],[23,2,2,23,25,[[785,2,2,23,25]]],[25,10,9,25,34,[[827,2,1,25,26],[832,2,2,26,28],[833,6,6,28,34]]]],[1103,1105,1107,1111,1112,2110,2111,3033,9807,10695,14010,14300,14322,15312,15314,16300,16412,17213,17943,17947,18117,18408,18674,19964,19966,21120,21244,21246,21266,21271,21272,21273,21277,21278]]],["pits",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7491]]],["well",[1,1,[[8,1,1,0,1,[[254,1,1,0,1]]]],[7728]]],["wells",[3,3,[[4,1,1,0,1,[[158,1,1,0,1]]],[13,1,1,1,2,[[392,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]]],[5097,11742,12536]]]]},{"k":"H954","v":[["*",[119,107,[[0,1,1,0,1,[[1,1,1,0,1]]],[1,1,1,1,2,[[81,1,1,1,2]]],[6,3,2,2,4,[[213,1,1,2,3],[215,2,1,3,4]]],[11,3,3,4,7,[[314,1,1,4,5],[320,1,1,5,6],[331,1,1,6,7]]],[14,2,2,7,9,[[410,1,1,7,8],[411,1,1,8,9]]],[17,2,2,9,11,[[441,1,1,9,10],[454,1,1,10,11]]],[18,34,31,11,42,[[483,2,1,11,12],[491,1,1,12,13],[499,1,1,13,14],[502,4,3,14,17],[508,3,2,17,19],[512,2,2,19,21],[514,1,1,21,22],[517,1,1,22,23],[521,1,1,23,24],[530,1,1,24,25],[546,1,1,25,26],[547,1,1,26,27],[548,3,3,27,30],[560,1,1,30,31],[563,1,1,31,32],[574,1,1,32,33],[586,1,1,33,34],[596,6,6,34,40],[604,1,1,40,41],[606,1,1,41,42]]],[19,6,6,42,48,[[637,1,1,42,43],[639,1,1,43,44],[641,1,1,44,45],[644,1,1,45,46],[646,1,1,46,47],[656,1,1,47,48]]],[22,22,21,48,69,[[679,1,1,48,49],[697,1,1,49,50],[698,1,1,50,51],[701,1,1,51,52],[702,1,1,52,53],[704,1,1,53,54],[707,1,1,54,55],[708,1,1,55,56],[715,1,1,56,57],[719,1,1,57,58],[720,1,1,58,59],[722,3,2,59,61],[723,3,3,61,64],[727,1,1,64,65],[728,1,1,65,66],[732,1,1,66,67],[743,1,1,67,68],[744,1,1,68,69]]],[23,28,21,69,90,[[746,3,2,69,71],[750,3,1,71,72],[752,4,2,72,74],[753,1,1,74,75],[756,1,1,75,76],[758,2,2,76,78],[759,1,1,78,79],[761,3,2,79,81],[764,1,1,81,82],[766,1,1,82,83],[775,1,1,83,84],[792,3,2,84,86],[793,1,1,86,87],[794,1,1,87,88],[795,2,2,88,90]]],[25,4,4,90,94,[[817,2,2,90,92],[833,1,1,92,93],[837,1,1,93,94]]],[27,4,4,94,98,[[863,1,1,94,95],[865,1,1,95,96],[871,1,1,96,97],[874,1,1,97,98]]],[28,3,3,98,101,[[876,1,1,98,99],[877,2,2,99,101]]],[32,2,2,101,103,[[895,1,1,101,102],[899,1,1,102,103]]],[35,1,1,103,104,[[908,1,1,103,104]]],[37,3,3,104,107,[[919,1,1,104,105],[920,1,1,105,106],[923,1,1,106,107]]]],[55,2439,6593,6651,9568,9738,10087,12223,12243,12998,13300,13995,14086,14209,14253,14254,14271,14332,14348,14414,14436,14469,14539,14578,14724,14941,14973,14977,14989,15000,15258,15301,15485,15783,15904,15929,15944,15976,15978,16014,16126,16137,16661,16723,16807,16875,16951,17239,17683,18013,18034,18081,18118,18141,18215,18222,18379,18462,18497,18542,18544,18577,18578,18585,18659,18669,18727,18910,18927,18991,19001,19104,19162,19165,19194,19262,19296,19297,19324,19370,19375,19433,19476,19710,20093,20119,20150,20178,20259,20263,20814,20825,21278,21391,22110,22152,22231,22281,22302,22337,22338,22615,22680,22831,23004,23021,23063]]],["+",[6,4,[[22,1,1,0,1,[[720,1,1,0,1]]],[23,4,2,1,3,[[750,2,1,1,2],[752,2,1,2,3]]],[25,1,1,3,4,[[817,1,1,3,4]]]],[18497,19104,19165,20814]]],["Confounded",[1,1,[[18,1,1,0,1,[[574,1,1,0,1]]]],[15485]]],["ashamed",[76,70,[[0,1,1,0,1,[[1,1,1,0,1]]],[6,1,1,1,2,[[213,1,1,1,2]]],[11,2,2,2,4,[[314,1,1,2,3],[320,1,1,3,4]]],[14,2,2,4,6,[[410,1,1,4,5],[411,1,1,5,6]]],[17,1,1,6,7,[[454,1,1,6,7]]],[18,22,19,7,26,[[483,2,1,7,8],[502,4,3,8,11],[508,3,2,11,13],[512,1,1,13,14],[514,1,1,14,15],[517,1,1,15,16],[546,1,1,16,17],[547,1,1,17,18],[563,1,1,18,19],[586,1,1,19,20],[596,5,5,20,25],[604,1,1,25,26]]],[19,1,1,26,27,[[639,1,1,26,27]]],[22,19,18,27,45,[[679,1,1,27,28],[698,1,1,28,29],[701,1,1,29,30],[702,1,1,30,31],[704,1,1,31,32],[707,1,1,32,33],[708,1,1,33,34],[719,1,1,34,35],[722,3,2,35,37],[723,3,3,37,40],[727,1,1,40,41],[728,1,1,41,42],[732,1,1,42,43],[743,1,1,43,44],[744,1,1,44,45]]],[23,16,14,45,59,[[746,3,2,45,47],[750,1,1,47,48],[752,2,2,48,50],[756,1,1,50,51],[758,2,2,51,53],[759,1,1,53,54],[761,1,1,54,55],[764,1,1,55,56],[766,1,1,56,57],[775,1,1,57,58],[792,2,1,58,59]]],[25,2,2,59,61,[[833,1,1,59,60],[837,1,1,60,61]]],[27,2,2,61,63,[[865,1,1,61,62],[871,1,1,62,63]]],[28,3,3,63,66,[[876,1,1,63,64],[877,2,2,64,66]]],[32,1,1,66,67,[[895,1,1,66,67]]],[35,1,1,67,68,[[908,1,1,67,68]]],[37,2,2,68,70,[[919,1,1,68,69],[923,1,1,69,70]]]],[55,6593,9568,9738,12223,12243,13300,13995,14253,14254,14271,14332,14348,14436,14469,14539,14941,14973,15301,15783,15904,15944,15976,15978,16014,16126,16723,17683,18034,18081,18118,18141,18215,18222,18462,18542,18544,18577,18578,18585,18659,18669,18727,18910,18927,18991,19001,19104,19162,19165,19262,19296,19297,19324,19370,19433,19476,19710,20093,21278,21391,22152,22231,22302,22337,22338,22615,22831,23004,23063]]],["confounded",[20,19,[[11,1,1,0,1,[[331,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]],[18,6,6,2,8,[[499,1,1,2,3],[512,1,1,3,4],[548,2,2,4,6],[560,1,1,6,7],[606,1,1,7,8]]],[22,2,2,8,10,[[697,1,1,8,9],[715,1,1,9,10]]],[23,7,6,10,16,[[753,1,1,10,11],[761,2,1,11,12],[793,1,1,12,13],[794,1,1,13,14],[795,2,2,14,16]]],[25,1,1,16,17,[[817,1,1,16,17]]],[32,1,1,17,18,[[899,1,1,17,18]]],[37,1,1,18,19,[[920,1,1,18,19]]]],[10087,12998,14209,14414,14989,15000,15258,16137,18013,18379,19194,19375,20150,20178,20259,20263,20825,22680,23021]]],["confusion",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14977]]],["delayed",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2439]]],["dry",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22281]]],["is",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6651]]],["long",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6651]]],["shame",[9,9,[[18,3,3,0,3,[[521,1,1,0,1],[530,1,1,1,2],[596,1,1,2,3]]],[19,5,5,3,8,[[637,1,1,3,4],[641,1,1,4,5],[644,1,1,5,6],[646,1,1,6,7],[656,1,1,7,8]]],[23,1,1,8,9,[[792,1,1,8,9]]]],[14578,14724,15929,16661,16807,16875,16951,17239,20119]]],["shamed",[1,1,[[18,1,1,0,1,[[491,1,1,0,1]]]],[14086]]],["shamefully",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22110]]]]},{"k":"H955","v":[["shame",[4,4,[[18,1,1,0,1,[[566,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]],[30,1,1,2,3,[[888,1,1,2,3]]],[32,1,1,3,4,[[899,1,1,3,4]]]],[15371,20595,22520,22674]]]]},{"k":"H956","v":[["night",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21923]]]]},{"k":"H957","v":[["*",[25,25,[[3,3,3,0,3,[[130,2,2,0,2],[147,1,1,2,3]]],[4,1,1,3,4,[[153,1,1,3,4]]],[11,1,1,4,5,[[333,1,1,4,5]]],[22,3,3,5,8,[[688,1,1,5,6],[711,1,1,6,7],[720,1,1,7,8]]],[23,5,5,8,13,[[746,1,1,8,9],[759,1,1,9,10],[761,1,1,10,11],[774,1,1,11,12],[793,1,1,12,13]]],[25,12,12,13,25,[[808,1,1,13,14],[824,1,1,14,15],[826,1,1,15,16],[827,1,1,16,17],[830,1,1,17,18],[835,3,3,18,21],[837,2,2,21,23],[839,2,2,23,25]]]],[4111,4139,4696,4931,10133,17856,18302,18502,18979,19328,19360,19683,20159,20598,21053,21090,21105,21202,21321,21335,21341,21363,21364,21437,21438]]],["booty",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20159]]],["prey",[18,18,[[3,3,3,0,3,[[130,2,2,0,2],[147,1,1,2,3]]],[4,1,1,3,4,[[153,1,1,3,4]]],[11,1,1,4,5,[[333,1,1,4,5]]],[22,3,3,5,8,[[688,1,1,5,6],[711,1,1,6,7],[720,1,1,7,8]]],[23,1,1,8,9,[[774,1,1,8,9]]],[25,9,9,9,18,[[808,1,1,9,10],[830,1,1,10,11],[835,3,3,11,14],[837,2,2,14,16],[839,2,2,16,18]]]],[4111,4139,4696,4931,10133,17856,18302,18502,19683,20598,21202,21321,21335,21341,21363,21364,21437,21438]]],["spoil",[4,4,[[23,2,2,0,2,[[759,1,1,0,1],[761,1,1,1,2]]],[25,2,2,2,4,[[826,1,1,2,3],[827,1,1,3,4]]]],[19328,19360,21090,21105]]],["spoiled",[2,2,[[23,1,1,0,1,[[746,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[18979,21053]]]]},{"k":"H958","v":[["spoiled",[2,2,[[22,2,2,0,2,[[696,2,2,0,2]]]],[17999,18004]]]]},{"k":"H959","v":[["*",[42,40,[[0,1,1,0,1,[[24,1,1,0,1]]],[3,1,1,1,2,[[131,1,1,1,2]]],[8,3,3,2,5,[[237,1,1,2,3],[245,1,1,3,4],[252,1,1,4,5]]],[9,3,3,5,8,[[272,1,1,5,6],[278,2,2,6,8]]],[11,1,1,8,9,[[331,1,1,8,9]]],[12,1,1,9,10,[[352,1,1,9,10]]],[13,1,1,10,11,[[402,1,1,10,11]]],[15,1,1,11,12,[[414,1,1,11,12]]],[16,2,2,12,14,[[426,1,1,12,13],[428,1,1,13,14]]],[18,8,8,14,22,[[492,1,1,14,15],[499,2,2,15,17],[528,1,1,17,18],[546,1,1,18,19],[550,1,1,19,20],[579,1,1,20,21],[596,1,1,21,22]]],[19,3,3,22,25,[[641,1,1,22,23],[642,1,1,23,24],[646,1,1,24,25]]],[20,1,1,25,26,[[667,1,1,25,26]]],[22,2,1,26,27,[[731,2,1,26,27]]],[23,2,2,27,29,[[766,1,1,27,28],[793,1,1,28,29]]],[25,5,5,29,34,[[817,1,1,29,30],[818,3,3,30,33],[823,1,1,33,34]]],[26,1,1,34,35,[[860,1,1,34,35]]],[30,1,1,35,36,[[888,1,1,35,36]]],[38,5,4,36,40,[[925,4,3,36,39],[926,1,1,39,40]]]],[692,4184,7270,7445,7660,8173,8295,8296,10082,10820,12009,12326,12719,12753,14091,14210,14228,14708,14968,15040,15538,16039,16774,16827,16941,17491,18714,19482,20142,20821,20841,20843,20844,20984,22057,22512,23095,23096,23101,23112]]],["+",[5,5,[[0,1,1,0,1,[[24,1,1,0,1]]],[9,1,1,1,2,[[278,1,1,1,2]]],[15,1,1,2,3,[[414,1,1,2,3]]],[18,1,1,3,4,[[579,1,1,3,4]]],[38,1,1,4,5,[[925,1,1,4,5]]]],[692,8295,12326,15538,23095]]],["contemned",[1,1,[[18,1,1,0,1,[[492,1,1,0,1]]]],[14091]]],["contemptible",[3,3,[[38,3,3,0,3,[[925,2,2,0,2],[926,1,1,2,3]]]],[23096,23101,23112]]],["despise",[5,5,[[8,1,1,0,1,[[237,1,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]],[18,2,2,2,4,[[528,1,1,2,3],[550,1,1,3,4]]],[38,1,1,4,5,[[925,1,1,4,5]]]],[7270,12719,14708,15040,23095]]],["despised",[21,20,[[3,1,1,0,1,[[131,1,1,0,1]]],[8,1,1,1,2,[[245,1,1,1,2]]],[9,2,2,2,4,[[272,1,1,2,3],[278,1,1,3,4]]],[11,1,1,4,5,[[331,1,1,4,5]]],[12,1,1,5,6,[[352,1,1,5,6]]],[13,1,1,6,7,[[402,1,1,6,7]]],[18,3,3,7,10,[[499,2,2,7,9],[596,1,1,9,10]]],[20,1,1,10,11,[[667,1,1,10,11]]],[22,2,1,11,12,[[731,2,1,11,12]]],[23,2,2,12,14,[[766,1,1,12,13],[793,1,1,13,14]]],[25,5,5,14,19,[[817,1,1,14,15],[818,3,3,15,18],[823,1,1,18,19]]],[30,1,1,19,20,[[888,1,1,19,20]]]],[4184,7445,8173,8296,10082,10820,12009,14210,14228,16039,17491,18714,19482,20142,20821,20841,20843,20844,20984,22512]]],["despiseth",[4,4,[[18,1,1,0,1,[[546,1,1,0,1]]],[19,3,3,1,4,[[641,1,1,1,2],[642,1,1,2,3],[646,1,1,3,4]]]],[14968,16774,16827,16941]]],["disdained",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7660]]],["person",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22057]]],["scorn",[1,1,[[16,1,1,0,1,[[428,1,1,0,1]]]],[12753]]]]},{"k":"H960","v":[["despiseth",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18643]]]]},{"k":"H961","v":[["*",[10,10,[[13,3,3,0,3,[[380,1,1,0,1],[391,1,1,1,2],[394,1,1,2,3]]],[14,1,1,3,4,[[411,1,1,3,4]]],[15,1,1,4,5,[[416,1,1,4,5]]],[16,3,3,5,8,[[434,3,3,5,8]]],[26,2,2,8,10,[[860,2,2,8,10]]]],[11489,11717,11778,12244,12363,12844,12849,12850,22060,22069]]],["prey",[4,4,[[15,1,1,0,1,[[416,1,1,0,1]]],[16,2,2,1,3,[[434,2,2,1,3]]],[26,1,1,3,4,[[860,1,1,3,4]]]],[12363,12849,12850,22060]]],["spoil",[6,6,[[13,3,3,0,3,[[380,1,1,0,1],[391,1,1,1,2],[394,1,1,2,3]]],[14,1,1,3,4,[[411,1,1,3,4]]],[16,1,1,4,5,[[434,1,1,4,5]]],[26,1,1,5,6,[[860,1,1,5,6]]]],[11489,11717,11778,12244,12844,22069]]]]},{"k":"H962","v":[["*",[43,39,[[0,2,2,0,2,[[33,2,2,0,2]]],[3,3,3,2,5,[[147,3,3,2,5]]],[4,3,3,5,8,[[154,1,1,5,6],[155,1,1,6,7],[172,1,1,7,8]]],[5,3,3,8,11,[[194,2,2,8,10],[197,1,1,10,11]]],[8,1,1,11,12,[[249,1,1,11,12]]],[11,1,1,12,13,[[319,1,1,12,13]]],[13,5,4,13,17,[[380,1,1,13,14],[386,2,1,14,15],[391,1,1,15,16],[394,1,1,16,17]]],[16,2,2,17,19,[[428,1,1,17,18],[433,1,1,18,19]]],[18,1,1,19,20,[[586,1,1,19,20]]],[22,9,8,20,28,[[688,2,2,20,22],[689,1,1,22,23],[695,1,1,23,24],[702,2,1,24,25],[711,1,1,25,26],[720,2,2,26,28]]],[23,3,3,28,31,[[764,1,1,28,29],[774,1,1,29,30],[794,1,1,30,31]]],[25,6,5,31,36,[[827,1,1,31,32],[830,1,1,32,33],[839,2,2,33,35],[840,2,1,35,36]]],[29,1,1,36,37,[[881,1,1,36,37]]],[33,2,1,37,38,[[901,2,1,37,38]]],[35,1,1,38,39,[[907,1,1,38,39]]]],[1007,1009,4673,4696,4717,4973,4982,5441,6004,6029,6121,7544,9723,11489,11612,11717,11772,12760,12828,15766,17852,17856,17898,17997,18098,18302,18502,18504,19427,19683,20203,21112,21202,21437,21438,21458,22406,22708,22814]]],["+",[9,7,[[11,1,1,0,1,[[319,1,1,0,1]]],[13,4,3,1,4,[[380,1,1,1,2],[386,2,1,2,3],[394,1,1,3,4]]],[22,3,2,4,6,[[689,1,1,4,5],[702,2,1,5,6]]],[25,1,1,6,7,[[840,1,1,6,7]]]],[9723,11489,11612,11772,17898,18098,21458]]],["caught",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4696]]],["prey",[9,9,[[4,2,2,0,2,[[154,1,1,0,1],[155,1,1,1,2]]],[5,3,3,2,5,[[194,2,2,2,4],[197,1,1,4,5]]],[16,2,2,5,7,[[428,1,1,5,6],[433,1,1,6,7]]],[23,1,1,7,8,[[774,1,1,7,8]]],[25,1,1,8,9,[[827,1,1,8,9]]]],[4973,4982,6004,6029,6121,12760,12828,19683,21112]]],["rob",[2,2,[[22,2,2,0,2,[[688,1,1,0,1],[695,1,1,1,2]]]],[17852,17997]]],["robbed",[3,3,[[22,1,1,0,1,[[720,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]],[25,1,1,2,3,[[840,1,1,2,3]]]],[18502,20203,21458]]],["robbers",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18504]]],["spoil",[8,7,[[3,2,2,0,2,[[147,2,2,0,2]]],[8,1,1,2,3,[[249,1,1,2,3]]],[18,1,1,3,4,[[586,1,1,3,4]]],[23,1,1,4,5,[[764,1,1,4,5]]],[33,2,1,5,6,[[901,2,1,5,6]]],[35,1,1,6,7,[[907,1,1,6,7]]]],[4673,4717,7544,15766,19427,22708,22814]]],["spoiled",[3,3,[[0,2,2,0,2,[[33,2,2,0,2]]],[29,1,1,2,3,[[881,1,1,2,3]]]],[1007,1009,22406]]],["take",[6,6,[[4,1,1,0,1,[[172,1,1,0,1]]],[22,2,2,1,3,[[688,1,1,1,2],[711,1,1,2,3]]],[25,3,3,3,6,[[830,1,1,3,4],[839,2,2,4,6]]]],[5441,17856,18302,21202,21437,21438]]],["took",[1,1,[[13,1,1,0,1,[[391,1,1,0,1]]]],[11717]]]]},{"k":"H963","v":[["contempt",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12720]]]]},{"k":"H964","v":[["Bizjothjah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6230]]]]},{"k":"H965","v":[["lightning",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20478]]]]},{"k":"H966","v":[["Bezek",[3,3,[[6,2,2,0,2,[[211,2,2,0,2]]],[8,1,1,2,3,[[246,1,1,2,3]]]],[6513,6514,7453]]]]},{"k":"H967","v":[["scatter",[2,2,[[18,1,1,0,1,[[545,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[14930,22060]]]]},{"k":"H968","v":[["Biztha",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12712]]]]},{"k":"H969","v":[["tower",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19116]]]]},{"k":"H970","v":[["*",[46,45,[[4,1,1,0,1,[[184,1,1,0,1]]],[6,2,2,1,3,[[224,1,1,1,2],[230,1,1,2,3]]],[7,1,1,3,4,[[234,1,1,3,4]]],[8,2,2,4,6,[[243,1,1,4,5],[244,1,1,5,6]]],[11,1,1,6,7,[[320,1,1,6,7]]],[13,2,1,7,8,[[402,2,1,7,8]]],[18,4,4,8,12,[[555,2,2,8,10],[566,1,1,10,11],[625,1,1,11,12]]],[19,1,1,12,13,[[647,1,1,12,13]]],[20,1,1,13,14,[[669,1,1,13,14]]],[22,5,5,14,19,[[687,1,1,14,15],[701,1,1,15,16],[709,1,1,16,17],[718,1,1,17,18],[740,1,1,18,19]]],[23,11,11,19,30,[[750,1,1,19,20],[753,1,1,20,21],[755,1,1,21,22],[759,1,1,22,23],[762,1,1,23,24],[775,1,1,24,25],[792,1,1,25,26],[793,1,1,26,27],[794,1,1,27,28],[795,2,2,28,30]]],[24,5,5,30,35,[[797,2,2,30,32],[798,1,1,32,33],[801,2,2,33,35]]],[25,5,5,35,40,[[810,1,1,35,36],[824,3,3,36,39],[831,1,1,39,40]]],[28,1,1,40,41,[[877,1,1,40,41]]],[29,3,3,41,44,[[880,1,1,41,42],[882,1,1,42,43],[886,1,1,43,44]]],[37,1,1,44,45,[[919,1,1,44,45]]]],[5783,6919,7069,7182,7385,7393,9739,12010,15144,15176,15345,16383,16983,17522,17846,18081,18258,18450,18859,19100,19196,19248,19323,19405,19704,20095,20153,20196,20215,20234,20325,20328,20353,20455,20456,20628,21013,21019,21030,21221,22339,22390,22420,22494,23016]]],["+",[1,1,[[29,1,1,0,1,[[880,1,1,0,1]]]],[22390]]],["chosen",[3,3,[[6,1,1,0,1,[[230,1,1,0,1]]],[18,2,2,1,3,[[555,1,1,1,2],[566,1,1,2,3]]]],[7069,15144,15345]]],["man",[6,6,[[4,1,1,0,1,[[184,1,1,0,1]]],[8,1,1,1,2,[[244,1,1,1,2]]],[13,1,1,2,3,[[402,1,1,2,3]]],[20,1,1,3,4,[[669,1,1,3,4]]],[22,1,1,4,5,[[740,1,1,4,5]]],[23,1,1,5,6,[[795,1,1,5,6]]]],[5783,7393,12010,17522,18859,20234]]],["men",[35,35,[[6,1,1,0,1,[[224,1,1,0,1]]],[7,1,1,1,2,[[234,1,1,1,2]]],[8,1,1,2,3,[[243,1,1,2,3]]],[11,1,1,3,4,[[320,1,1,3,4]]],[13,1,1,4,5,[[402,1,1,4,5]]],[18,2,2,5,7,[[555,1,1,5,6],[625,1,1,6,7]]],[19,1,1,7,8,[[647,1,1,7,8]]],[22,4,4,8,12,[[687,1,1,8,9],[701,1,1,9,10],[709,1,1,10,11],[718,1,1,11,12]]],[23,10,10,12,22,[[750,1,1,12,13],[753,1,1,13,14],[755,1,1,14,15],[759,1,1,15,16],[762,1,1,16,17],[775,1,1,17,18],[792,1,1,18,19],[793,1,1,19,20],[794,1,1,20,21],[795,1,1,21,22]]],[24,5,5,22,27,[[797,2,2,22,24],[798,1,1,24,25],[801,2,2,25,27]]],[25,4,4,27,31,[[824,3,3,27,30],[831,1,1,30,31]]],[28,1,1,31,32,[[877,1,1,31,32]]],[29,2,2,32,34,[[882,1,1,32,33],[886,1,1,33,34]]],[37,1,1,34,35,[[919,1,1,34,35]]]],[6919,7182,7385,9739,12010,15176,16383,16983,17846,18081,18258,18450,19100,19196,19248,19323,19405,19704,20095,20153,20196,20215,20325,20328,20353,20455,20456,21013,21019,21030,21221,22339,22420,22494,23016]]],["young",[1,1,[[25,1,1,0,1,[[810,1,1,0,1]]]],[20628]]]]},{"k":"H971","v":[["towers",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18090]]]]},{"k":"H972","v":[["*",[13,13,[[9,1,1,0,1,[[287,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[18,5,5,2,7,[[566,1,1,2,3],[582,2,2,3,5],[583,2,2,5,7]]],[22,6,6,7,13,[[720,1,1,7,8],[721,1,1,8,9],[723,1,1,9,10],[743,3,3,10,13]]]],[8586,10833,15329,15612,15649,15656,15674,18481,18525,18565,18906,18912,18919]]],["choose",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8586]]],["chosen",[7,7,[[18,5,5,0,5,[[566,1,1,0,1],[582,2,2,1,3],[583,2,2,3,5]]],[22,2,2,5,7,[[721,1,1,5,6],[743,1,1,6,7]]]],[15329,15612,15649,15656,15674,18525,18912]]],["elect",[4,4,[[22,4,4,0,4,[[720,1,1,0,1],[723,1,1,1,2],[743,2,2,2,4]]]],[18481,18565,18906,18919]]],["ones",[1,1,[[12,1,1,0,1,[[353,1,1,0,1]]]],[10833]]]]},{"k":"H973","v":[["abhorred",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23036]]]]},{"k":"H974","v":[["*",[29,28,[[0,2,2,0,2,[[41,2,2,0,2]]],[12,1,1,2,3,[[366,1,1,2,3]]],[17,5,5,3,8,[[442,1,1,3,4],[447,1,1,4,5],[458,1,1,5,6],[469,2,2,6,8]]],[18,9,9,8,17,[[484,1,1,8,9],[488,2,2,9,11],[494,1,1,11,12],[503,1,1,12,13],[543,1,1,13,14],[558,1,1,14,15],[572,1,1,15,16],[616,1,1,16,17]]],[19,1,1,17,18,[[644,1,1,17,18]]],[23,6,6,18,24,[[750,1,1,18,19],[753,1,1,19,20],[755,1,1,20,21],[756,1,1,21,22],[761,1,1,22,23],[764,1,1,23,24]]],[25,1,1,24,25,[[822,1,1,24,25]]],[37,2,1,25,26,[[923,2,1,25,26]]],[38,2,2,26,28,[[927,2,2,26,28]]]],[1267,1268,11181,13026,13139,13429,13686,13719,14004,14063,14064,14106,14275,14883,15224,15463,16262,16876,19116,19182,19246,19252,19367,19434,20957,23068,23130,23135]]],["+",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19116]]],["Examine",[1,1,[[18,1,1,0,1,[[503,1,1,0,1]]]],[14275]]],["prove",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23130]]],["proved",[6,6,[[0,2,2,0,2,[[41,2,2,0,2]]],[18,4,4,2,6,[[494,1,1,2,3],[543,1,1,3,4],[558,1,1,4,5],[572,1,1,5,6]]]],[1267,1268,14106,14883,15224,15463]]],["tempt",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23135]]],["trial",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20957]]],["tried",[4,4,[[17,2,2,0,2,[[458,1,1,0,1],[469,1,1,1,2]]],[23,1,1,2,3,[[756,1,1,2,3]]],[37,1,1,3,4,[[923,1,1,3,4]]]],[13429,13719,19252,23068]]],["triest",[3,3,[[12,1,1,0,1,[[366,1,1,0,1]]],[23,2,2,1,3,[[755,1,1,1,2],[764,1,1,2,3]]]],[11181,19246,19434]]],["trieth",[4,4,[[17,1,1,0,1,[[469,1,1,0,1]]],[18,2,2,1,3,[[484,1,1,1,2],[488,1,1,2,3]]],[19,1,1,3,4,[[644,1,1,3,4]]]],[13686,14004,14064,16876]]],["try",[7,7,[[17,2,2,0,2,[[442,1,1,0,1],[447,1,1,1,2]]],[18,2,2,2,4,[[488,1,1,2,3],[616,1,1,3,4]]],[23,2,2,4,6,[[753,1,1,4,5],[761,1,1,5,6]]],[37,1,1,6,7,[[923,1,1,6,7]]]],[13026,13139,14063,16262,19182,19367,23068]]]]},{"k":"H975","v":[["towers",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18273]]]]},{"k":"H976","v":[["tried",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18180]]]]},{"k":"H977","v":[["*",[169,161,[[0,2,2,0,2,[[5,1,1,0,1],[12,1,1,1,2]]],[1,3,3,2,5,[[63,1,1,2,3],[66,1,1,3,4],[67,1,1,4,5]]],[3,3,3,5,8,[[132,2,2,5,7],[133,1,1,7,8]]],[4,31,31,8,39,[[156,1,1,8,9],[159,2,2,9,11],[162,1,1,11,12],[164,6,6,12,18],[166,4,4,18,22],[167,1,1,22,23],[168,6,6,23,29],[169,3,3,29,32],[170,2,2,32,34],[173,1,1,34,35],[175,1,1,35,36],[178,1,1,36,37],[182,1,1,37,38],[183,1,1,38,39]]],[5,4,4,39,43,[[194,1,1,39,40],[195,1,1,40,41],[210,2,2,41,43]]],[6,4,4,43,47,[[215,1,1,43,44],[220,1,1,44,45],[230,2,2,45,47]]],[8,12,12,47,59,[[237,1,1,47,48],[243,1,1,48,49],[245,1,1,49,50],[247,1,1,50,51],[248,1,1,51,52],[251,3,3,52,55],[252,1,1,55,56],[255,1,1,56,57],[259,1,1,57,58],[261,1,1,58,59]]],[9,9,8,59,67,[[272,2,2,59,61],[276,2,1,61,62],[281,1,1,62,63],[282,1,1,63,64],[283,1,1,64,65],[285,1,1,65,66],[290,1,1,66,67]]],[10,13,12,67,79,[[293,1,1,67,68],[298,4,3,68,71],[301,4,4,71,75],[302,1,1,75,76],[304,1,1,76,77],[308,2,2,77,79]]],[11,2,2,79,81,[[333,1,1,79,80],[335,1,1,80,81]]],[12,10,8,81,89,[[352,1,1,81,82],[356,2,1,82,83],[358,1,1,83,84],[365,5,4,84,88],[366,1,1,88,89]]],[13,16,13,89,102,[[372,6,4,89,93],[373,2,2,93,95],[377,1,1,95,96],[378,1,1,96,97],[379,3,2,97,99],[391,1,1,99,100],[395,1,1,100,101],[399,1,1,101,102]]],[15,2,2,102,104,[[413,1,1,102,103],[421,1,1,103,104]]],[17,7,7,104,111,[[442,1,1,104,105],[444,1,1,105,106],[450,1,1,106,107],[464,1,1,107,108],[469,2,2,108,110],[471,1,1,110,111]]],[18,13,13,111,124,[[502,1,1,111,112],[510,1,1,112,113],[524,1,1,113,114],[542,1,1,114,115],[555,3,3,115,118],[561,1,1,118,119],[582,1,1,119,120],[596,2,2,120,122],[609,1,1,122,123],[612,1,1,123,124]]],[19,8,8,124,132,[[628,1,1,124,125],[630,1,1,125,126],[635,2,2,126,128],[637,1,1,128,129],[643,1,1,129,130],[648,1,1,130,131],[649,1,1,131,132]]],[21,1,1,132,133,[[675,1,1,132,133]]],[22,20,19,133,152,[[679,1,1,133,134],[685,2,2,134,136],[692,1,1,136,137],[718,1,1,137,138],[719,3,3,138,141],[721,1,1,141,142],[722,2,2,142,144],[726,1,1,144,145],[727,1,1,145,146],[734,1,1,146,147],[736,2,2,147,149],[743,1,1,149,150],[744,3,2,150,152]]],[23,4,4,152,156,[[752,1,1,152,153],[777,1,1,153,154],[793,1,1,154,155],[794,1,1,155,156]]],[25,1,1,156,157,[[821,1,1,156,157]]],[36,1,1,157,158,[[910,1,1,157,158]]],[37,3,3,158,161,[[911,1,1,158,159],[912,1,1,159,160],[913,1,1,160,161]]]],[139,329,1896,1992,2024,4199,4201,4249,5041,5117,5118,5201,5245,5251,5254,5258,5261,5266,5292,5313,5314,5315,5339,5344,5348,5349,5353,5357,5358,5372,5374,5379,5389,5390,5452,5516,5568,5727,5739,6005,6064,6491,6498,6631,6825,7070,7088,7268,7387,7442,7473,7487,7603,7604,7605,7658,7760,7841,7907,8158,8178,8249,8404,8444,8450,8549,8704,8824,9001,9029,9033,9121,9140,9142,9144,9172,9239,9364,9366,10126,10192,10793,10917,10944,11147,11148,11149,11153,11165,11287,11288,11316,11320,11336,11340,11415,11450,11456,11470,11709,11802,11915,12305,12518,13023,13065,13208,13557,13687,13716,13757,14263,14378,14629,14864,15180,15181,15183,15269,15632,15928,16071,16164,16179,16429,16486,16612,16621,16676,16856,16987,17016,17613,17683,17797,17798,17929,18440,18459,18460,18475,18515,18534,18535,18624,18643,18757,18791,18792,18909,18925,18926,19156,19799,20146,20210,20900,22878,22895,22911,22914]]],["+",[3,3,[[18,2,2,0,2,[[524,1,1,0,1],[555,1,1,1,2]]],[19,1,1,2,3,[[635,1,1,2,3]]]],[14629,15181,16612]]],["Choose",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9366]]],["acceptable",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16987]]],["appoint",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8404]]],["choice",[5,5,[[9,1,1,0,1,[[276,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]],[13,1,1,2,3,[[391,1,1,2,3]]],[19,2,2,3,5,[[635,1,1,3,4],[637,1,1,4,5]]]],[8249,10917,11709,16621,16676]]],["choose",[48,48,[[3,2,2,0,2,[[132,1,1,0,1],[133,1,1,1,2]]],[4,23,23,2,25,[[159,1,1,2,3],[164,5,5,3,8],[166,3,3,8,11],[167,1,1,11,12],[168,5,5,12,17],[169,3,3,17,20],[170,1,1,20,21],[175,1,1,21,22],[178,1,1,22,23],[182,1,1,23,24],[183,1,1,24,25]]],[5,2,2,25,27,[[195,1,1,25,26],[210,1,1,26,27]]],[8,1,1,27,28,[[237,1,1,27,28]]],[9,2,2,28,30,[[282,1,1,28,29],[290,1,1,29,30]]],[10,2,2,30,32,[[304,1,1,30,31],[308,1,1,31,32]]],[12,1,1,32,33,[[358,1,1,32,33]]],[15,1,1,33,34,[[421,1,1,33,34]]],[17,2,2,34,36,[[469,2,2,34,36]]],[18,1,1,36,37,[[502,1,1,36,37]]],[19,2,2,37,39,[[628,1,1,37,38],[630,1,1,38,39]]],[22,7,7,39,46,[[685,2,2,39,41],[692,1,1,41,42],[727,1,1,42,43],[734,1,1,43,44],[743,1,1,44,45],[744,1,1,45,46]]],[37,2,2,46,48,[[911,1,1,46,47],[912,1,1,47,48]]]],[4201,4249,5118,5245,5251,5254,5258,5266,5313,5314,5315,5339,5344,5348,5349,5357,5358,5372,5374,5379,5390,5516,5568,5727,5739,6064,6491,7268,8444,8704,9239,9364,10944,12518,13687,13716,14263,16429,16486,17797,17798,17929,18643,18757,18909,18926,22895,22911]]],["choosest",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,1,1,1,2,[[542,1,1,1,2]]]],[13208,14864]]],["chooseth",[3,3,[[17,1,1,0,1,[[442,1,1,0,1]]],[22,2,2,1,3,[[718,1,1,1,2],[719,1,1,2,3]]]],[13023,18440,18475]]],["chose",[21,19,[[0,2,2,0,2,[[5,1,1,0,1],[12,1,1,1,2]]],[1,1,1,2,3,[[67,1,1,2,3]]],[4,2,2,3,5,[[156,1,1,3,4],[162,1,1,4,5]]],[6,1,1,5,6,[[215,1,1,5,6]]],[8,2,2,6,8,[[248,1,1,6,7],[252,1,1,7,8]]],[9,2,2,8,10,[[272,1,1,8,9],[276,1,1,9,10]]],[10,3,2,10,12,[[298,2,1,10,11],[301,1,1,11,12]]],[12,2,2,12,14,[[356,1,1,12,13],[365,1,1,13,14]]],[13,2,1,14,15,[[372,2,1,14,15]]],[18,2,2,15,17,[[555,2,2,15,17]]],[22,1,1,17,18,[[744,1,1,17,18]]],[25,1,1,18,19,[[821,1,1,18,19]]]],[139,329,2024,5041,5201,6631,7487,7658,8178,8249,9001,9142,10917,11147,11287,15180,15183,18926,20900]]],["chosen",[76,74,[[1,1,1,0,1,[[63,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[4,6,6,2,8,[[159,1,1,2,3],[164,1,1,3,4],[166,1,1,4,5],[168,1,1,5,6],[170,1,1,6,7],[173,1,1,7,8]]],[5,1,1,8,9,[[210,1,1,8,9]]],[6,3,3,9,12,[[220,1,1,9,10],[230,2,2,10,12]]],[8,9,9,12,21,[[243,1,1,12,13],[245,1,1,13,14],[247,1,1,14,15],[251,3,3,15,18],[255,1,1,18,19],[259,1,1,19,20],[261,1,1,20,21]]],[9,1,1,21,22,[[272,1,1,21,22]]],[10,7,7,22,29,[[293,1,1,22,23],[298,2,2,23,25],[301,3,3,25,28],[302,1,1,28,29]]],[11,2,2,29,31,[[333,1,1,29,30],[335,1,1,30,31]]],[12,6,6,31,37,[[352,1,1,31,32],[365,4,4,32,36],[366,1,1,36,37]]],[13,13,11,37,48,[[372,4,3,37,40],[373,2,2,40,42],[377,1,1,42,43],[378,1,1,43,44],[379,3,2,44,46],[395,1,1,46,47],[399,1,1,47,48]]],[15,1,1,48,49,[[413,1,1,48,49]]],[17,1,1,49,50,[[471,1,1,49,50]]],[18,6,6,50,56,[[510,1,1,50,51],[582,1,1,51,52],[596,2,2,52,54],[609,1,1,54,55],[612,1,1,55,56]]],[19,2,2,56,58,[[643,1,1,56,57],[649,1,1,57,58]]],[22,10,10,58,68,[[679,1,1,58,59],[719,2,2,59,61],[721,1,1,61,62],[722,2,2,62,64],[726,1,1,64,65],[736,2,2,65,67],[744,1,1,67,68]]],[23,4,4,68,72,[[752,1,1,68,69],[777,1,1,69,70],[793,1,1,70,71],[794,1,1,71,72]]],[36,1,1,72,73,[[910,1,1,72,73]]],[37,1,1,73,74,[[913,1,1,73,74]]]],[1896,4199,5117,5261,5292,5353,5389,5452,6498,6825,7070,7088,7387,7442,7473,7603,7604,7605,7760,7841,7907,8158,8824,9029,9033,9121,9140,9144,9172,10126,10192,10793,11147,11148,11149,11153,11165,11288,11316,11320,11336,11340,11415,11450,11456,11470,11802,11915,12305,13757,14378,15632,15928,16071,16164,16179,16856,17016,17683,18459,18460,18515,18534,18535,18624,18791,18792,18925,19156,19799,20146,20210,22878,22914]]],["excellent",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17613]]],["out",[5,5,[[1,1,1,0,1,[[66,1,1,0,1]]],[5,1,1,1,2,[[194,1,1,1,2]]],[9,1,1,2,3,[[283,1,1,2,3]]],[17,2,2,3,5,[[444,1,1,3,4],[464,1,1,4,5]]]],[1992,6005,8450,13065,13557]]],["rather",[1,1,[[18,1,1,0,1,[[561,1,1,0,1]]]],[15269]]],["require",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8549]]]]},{"k":"H978","v":[["Baharumite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10706]]]]},{"k":"H979","v":[["*",[3,3,[[3,1,1,0,1,[[127,1,1,0,1]]],[20,2,2,1,3,[[669,1,1,1,2],[670,1,1,2,3]]]],[4052,17522,17524]]],["+",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4052]]],["youth",[2,2,[[20,2,2,0,2,[[669,1,1,0,1],[670,1,1,1,2]]]],[17522,17524]]]]},{"k":"H980","v":[["*",[5,5,[[9,4,4,0,4,[[269,1,1,0,1],[282,1,1,1,2],[283,1,1,2,3],[285,1,1,3,4]]],[10,1,1,4,5,[[292,1,1,4,5]]]],[8097,8431,8467,8527,8778]]],["+",[2,2,[[9,1,1,0,1,[[285,1,1,0,1]]],[10,1,1,1,2,[[292,1,1,1,2]]]],[8527,8778]]],["Bahurim",[3,3,[[9,3,3,0,3,[[269,1,1,0,1],[282,1,1,1,2],[283,1,1,2,3]]]],[8097,8431,8467]]]]},{"k":"H981","v":[["*",[4,3,[[2,2,1,0,1,[[94,2,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]],[19,1,1,2,3,[[639,1,1,2,3]]]],[2834,15684,16737]]],["pronounce",[1,1,[[2,1,1,0,1,[[94,1,1,0,1]]]],[2834]]],["pronouncing",[1,1,[[2,1,1,0,1,[[94,1,1,0,1]]]],[2834]]],["speaketh",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16737]]],["unadvisedly",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15684]]]]},{"k":"H982","v":[["*",[120,117,[[4,1,1,0,1,[[180,1,1,0,1]]],[6,5,5,1,6,[[219,1,1,1,2],[228,3,3,2,5],[230,1,1,5,6]]],[11,9,8,6,14,[[330,8,7,6,13],[331,1,1,13,14]]],[12,1,1,14,15,[[342,1,1,14,15]]],[13,1,1,15,16,[[398,1,1,15,16]]],[17,4,4,16,20,[[441,1,1,16,17],[446,1,1,17,18],[474,1,1,18,19],[475,1,1,19,20]]],[18,46,45,20,65,[[481,1,1,20,21],[486,1,1,21,22],[490,1,1,22,23],[498,1,1,23,24],[499,4,3,24,27],[502,1,1,27,28],[503,1,1,28,29],[504,1,1,29,30],[505,1,1,30,31],[508,2,2,31,33],[509,1,1,33,34],[510,1,1,34,35],[514,2,2,35,37],[517,1,1,37,38],[518,1,1,38,39],[521,1,1,39,40],[526,1,1,40,41],[529,2,2,41,43],[532,1,1,43,44],[533,3,3,44,47],[539,2,2,47,49],[555,1,1,49,50],[561,1,1,50,51],[563,1,1,51,52],[568,1,1,52,53],[589,1,1,53,54],[592,4,4,54,58],[595,2,2,58,60],[596,1,1,60,61],[602,1,1,61,62],[612,1,1,62,63],[620,1,1,63,64],[623,1,1,64,65]]],[19,10,10,65,75,[[630,1,1,65,66],[638,2,2,66,68],[641,1,1,68,69],[643,1,1,69,70],[655,3,3,70,73],[656,1,1,73,74],[658,1,1,74,75]]],[22,20,19,75,94,[[690,1,1,75,76],[704,2,2,76,78],[708,1,1,78,79],[709,1,1,79,80],[710,3,3,80,83],[714,7,6,83,89],[715,1,1,89,90],[720,1,1,90,91],[725,1,1,91,92],[728,1,1,92,93],[737,1,1,93,94]]],[23,16,16,94,110,[[749,1,1,94,95],[751,3,3,95,98],[753,1,1,98,99],[756,1,1,99,100],[757,1,1,100,101],[761,2,2,101,103],[772,1,1,103,104],[773,1,1,104,105],[783,1,1,105,106],[790,1,1,106,107],[792,1,1,107,108],[793,2,2,108,110]]],[25,2,2,110,112,[[817,1,1,110,111],[834,1,1,111,112]]],[27,1,1,112,113,[[871,1,1,112,113]]],[29,1,1,113,114,[[884,1,1,113,114]]],[32,1,1,114,115,[[899,1,1,114,115]]],[34,1,1,115,116,[[904,1,1,115,116]]],[35,1,1,116,117,[[908,1,1,116,117]]]],[5663,6780,7000,7003,7020,7090,10029,10043,10044,10045,10046,10048,10054,10071,10448,11885,12998,13126,13845,13887,13970,14031,14079,14198,14208,14209,14213,14253,14274,14288,14306,14337,14345,14365,14387,14453,14455,14528,14551,14577,14654,14717,14718,14755,14758,14759,14766,14835,14837,15135,15271,15286,15397,15810,15838,15839,15840,15841,15877,15878,15940,16111,16193,16301,16344,16460,16703,16716,16788,16860,17197,17221,17222,17249,17295,17902,18133,18134,18229,18251,18268,18269,18270,18334,18335,18336,18337,18339,18345,18362,18497,18609,18672,18804,19075,19123,19127,19133,19179,19254,19291,19362,19364,19633,19666,19941,20070,20087,20131,20138,20777,21293,22238,22451,22669,22766,22822]]],["+",[6,6,[[11,1,1,0,1,[[330,1,1,0,1]]],[18,2,2,1,3,[[595,2,2,1,3]]],[22,1,1,3,4,[[714,1,1,3,4]]],[23,1,1,4,5,[[773,1,1,4,5]]],[32,1,1,5,6,[[899,1,1,5,6]]]],[10054,15877,15878,18345,19666,22669]]],["Trust",[6,6,[[18,3,3,0,3,[[514,1,1,0,1],[539,2,2,1,3]]],[19,1,1,3,4,[[630,1,1,3,4]]],[22,1,1,4,5,[[704,1,1,4,5]]],[23,1,1,5,6,[[751,1,1,5,6]]]],[14453,14835,14837,16460,18134,19123]]],["bold",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17197]]],["careless",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18268]]],["confidence",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6780]]],["confident",[2,2,[[18,1,1,0,1,[[504,1,1,0,1]]],[19,1,1,1,2,[[641,1,1,1,2]]]],[14288,16788]]],["hope",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14213]]],["hoped",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12998]]],["ones",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18270]]],["secure",[4,4,[[6,3,3,0,3,[[228,3,3,0,3]]],[17,1,1,3,4,[[446,1,1,3,4]]]],[7000,7003,7020,13126]]],["sure",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16703]]],["trust",[52,52,[[11,4,4,0,4,[[330,4,4,0,4]]],[12,1,1,4,5,[[342,1,1,4,5]]],[13,1,1,5,6,[[398,1,1,5,6]]],[17,1,1,6,7,[[474,1,1,6,7]]],[18,21,21,7,28,[[481,1,1,7,8],[486,1,1,8,9],[502,1,1,9,10],[508,1,1,10,11],[514,1,1,11,12],[517,1,1,12,13],[521,1,1,13,14],[526,1,1,14,15],[529,1,1,15,16],[532,1,1,16,17],[533,3,3,17,20],[568,1,1,20,21],[592,3,3,21,24],[596,1,1,24,25],[602,1,1,25,26],[620,1,1,26,27],[623,1,1,27,28]]],[19,3,3,28,31,[[655,1,1,28,29],[656,1,1,29,30],[658,1,1,30,31]]],[22,10,10,31,41,[[690,1,1,31,32],[708,1,1,32,33],[709,1,1,33,34],[714,4,4,34,38],[720,1,1,38,39],[728,1,1,39,40],[737,1,1,40,41]]],[23,7,7,41,48,[[751,2,2,41,43],[753,1,1,43,44],[772,1,1,44,45],[783,1,1,45,46],[790,1,1,46,47],[793,1,1,47,48]]],[25,2,2,48,50,[[817,1,1,48,49],[834,1,1,49,50]]],[27,1,1,50,51,[[871,1,1,50,51]]],[29,1,1,51,52,[[884,1,1,51,52]]]],[10044,10045,10046,10048,10448,11885,13845,13970,14031,14253,14337,14455,14528,14577,14654,14718,14755,14758,14759,14766,15397,15839,15840,15841,15940,16111,16301,16344,17221,17249,17295,17902,18229,18251,18335,18336,18337,18339,18497,18672,18804,19127,19133,19179,19633,19941,20070,20138,20777,21293,22238,22451]]],["trusted",[18,17,[[6,1,1,0,1,[[230,1,1,0,1]]],[11,1,1,1,2,[[330,1,1,1,2]]],[18,11,10,2,12,[[490,1,1,2,3],[499,3,2,3,5],[503,1,1,5,6],[505,1,1,6,7],[508,1,1,7,8],[510,1,1,8,9],[518,1,1,9,10],[529,1,1,10,11],[555,1,1,11,12]]],[22,1,1,12,13,[[725,1,1,12,13]]],[23,3,3,13,16,[[757,1,1,13,14],[792,1,1,14,15],[793,1,1,15,16]]],[35,1,1,16,17,[[908,1,1,16,17]]]],[7090,10029,14079,14208,14209,14274,14306,14345,14387,14551,14717,15135,18609,19291,20087,20131,22822]]],["trustedst",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[23,2,2,1,3,[[749,1,1,1,2],[756,1,1,2,3]]]],[5663,19075,19254]]],["trustest",[6,6,[[11,3,3,0,3,[[330,2,2,0,2],[331,1,1,2,3]]],[22,3,3,3,6,[[714,2,2,3,5],[715,1,1,5,6]]]],[10043,10045,10071,18334,18336,18362]]],["trusteth",[14,14,[[17,1,1,0,1,[[475,1,1,0,1]]],[18,6,6,1,7,[[498,1,1,1,2],[509,1,1,2,3],[561,1,1,3,4],[563,1,1,4,5],[592,1,1,5,6],[612,1,1,6,7]]],[19,3,3,7,10,[[638,1,1,7,8],[643,1,1,8,9],[655,1,1,9,10]]],[22,1,1,10,11,[[704,1,1,10,11]]],[23,2,2,11,13,[[761,2,2,11,13]]],[34,1,1,13,14,[[904,1,1,13,14]]]],[13887,14198,14365,15271,15286,15838,16193,16716,16860,17222,18133,19362,19364,22766]]],["trusting",[1,1,[[18,1,1,0,1,[[589,1,1,0,1]]]],[15810]]],["women",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18269]]]]},{"k":"H983","v":[["*",[42,41,[[0,1,1,0,1,[[33,1,1,0,1]]],[2,3,3,1,4,[[114,2,2,1,3],[115,1,1,3,4]]],[4,3,3,4,7,[[164,1,1,4,5],[185,2,2,5,7]]],[6,2,2,7,9,[[218,1,1,7,8],[228,1,1,8,9]]],[8,1,1,9,10,[[247,1,1,9,10]]],[10,1,1,10,11,[[294,1,1,10,11]]],[17,2,2,11,13,[[446,1,1,11,12],[459,1,1,12,13]]],[18,3,3,13,16,[[481,1,1,13,14],[493,1,1,14,15],[555,1,1,15,16]]],[19,4,4,16,20,[[628,1,1,16,17],[630,2,2,17,19],[637,1,1,19,20]]],[22,3,3,20,23,[[692,1,1,20,21],[710,1,1,21,22],[725,1,1,22,23]]],[23,4,4,23,27,[[767,1,1,23,24],[776,1,1,24,25],[777,1,1,25,26],[793,1,1,26,27]]],[25,11,10,27,37,[[829,2,1,27,28],[831,1,1,28,29],[835,3,3,29,32],[839,3,3,32,35],[840,2,2,35,37]]],[27,1,1,37,38,[[863,1,1,37,38]]],[32,1,1,38,39,[[894,1,1,38,39]]],[35,1,1,39,40,[[907,1,1,39,40]]],[37,1,1,40,41,[[924,1,1,40,41]]]],[1005,3487,3488,3529,5250,5822,5838,6730,7000,7471,8869,13126,13459,13973,14101,15166,16433,16478,16484,16665,17958,18276,18607,19490,19768,19791,20158,21183,21213,21338,21340,21341,21433,21436,21439,21454,21474,22123,22603,22820,23079]]],["assurance",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18276]]],["boldly",[1,1,[[0,1,1,0,1,[[33,1,1,0,1]]]],[1005]]],["care",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20158]]],["careless",[2,2,[[6,1,1,0,1,[[228,1,1,0,1]]],[25,1,1,1,2,[[831,1,1,1,2]]]],[7000,21213]]],["carelessly",[3,3,[[22,1,1,0,1,[[725,1,1,0,1]]],[25,1,1,1,2,[[840,1,1,1,2]]],[35,1,1,2,3,[[907,1,1,2,3]]]],[18607,21454,22820]]],["confidence",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21183]]],["hope",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14101]]],["safe",[2,2,[[8,1,1,0,1,[[247,1,1,0,1]]],[25,1,1,1,2,[[835,1,1,1,2]]]],[7471,21340]]],["safely",[17,17,[[2,1,1,0,1,[[115,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]],[18,1,1,2,3,[[555,1,1,2,3]]],[19,2,2,3,5,[[628,1,1,3,4],[630,1,1,4,5]]],[23,3,3,5,8,[[767,1,1,5,6],[776,1,1,6,7],[777,1,1,7,8]]],[25,7,7,8,15,[[829,1,1,8,9],[835,2,2,9,11],[839,3,3,11,14],[840,1,1,14,15]]],[27,1,1,15,16,[[863,1,1,15,16]]],[37,1,1,16,17,[[924,1,1,16,17]]]],[3529,8869,15166,16433,16478,19490,19768,19791,21183,21338,21341,21433,21436,21439,21474,22123,23079]]],["safety",[9,9,[[2,2,2,0,2,[[114,2,2,0,2]]],[4,3,3,2,5,[[164,1,1,2,3],[185,2,2,3,5]]],[17,2,2,5,7,[[446,1,1,5,6],[459,1,1,6,7]]],[18,1,1,7,8,[[481,1,1,7,8]]],[22,1,1,8,9,[[692,1,1,8,9]]]],[3487,3488,5250,5822,5838,13126,13459,13973,17958]]],["secure",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6730]]],["securely",[2,2,[[19,1,1,0,1,[[630,1,1,0,1]]],[32,1,1,1,2,[[894,1,1,1,2]]]],[16484,22603]]],["surely",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16665]]]]},{"k":"H984","v":[["+",[1,1,[[9,1,1,0,1,[[274,1,1,0,1]]]],[8217]]]]},{"k":"H985","v":[["confidence",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18232]]]]},{"k":"H986","v":[["*",[3,3,[[11,1,1,0,1,[[330,1,1,0,1]]],[20,1,1,1,2,[[667,1,1,1,2]]],[22,1,1,2,3,[[714,1,1,2,3]]]],[10043,17479,18334]]],["confidence",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]]],[10043,18334]]],["hope",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17479]]]]},{"k":"H987","v":[["secure",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13134]]]]},{"k":"H988","v":[["cease",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17526]]]]},{"k":"H989","v":[["*",[6,5,[[14,6,5,0,5,[[406,4,3,0,3],[407,1,1,3,4],[408,1,1,4,5]]]],[12131,12133,12134,12139,12159]]],["cease",[3,3,[[14,3,3,0,3,[[406,2,2,0,2],[407,1,1,2,3]]]],[12131,12133,12139]]],["ceased",[2,1,[[14,2,1,0,1,[[406,2,1,0,1]]]],[12134]]],["hindered",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12159]]]]},{"k":"H990","v":[["*",[72,72,[[0,4,4,0,4,[[24,2,2,0,2],[29,1,1,2,3],[37,1,1,3,4]]],[3,3,3,4,7,[[121,3,3,4,7]]],[4,6,6,7,13,[[159,1,1,7,8],[180,4,4,8,12],[182,1,1,12,13]]],[6,5,5,13,18,[[213,2,2,13,15],[223,2,2,15,17],[226,1,1,17,18]]],[10,1,1,18,19,[[297,1,1,18,19]]],[17,16,16,19,35,[[436,1,1,19,20],[438,2,2,20,22],[445,1,1,22,23],[450,2,2,23,25],[454,1,1,25,26],[455,3,3,26,29],[466,2,2,29,31],[467,2,2,31,33],[473,1,1,33,34],[475,1,1,34,35]]],[18,10,10,35,45,[[494,1,1,35,36],[499,2,2,36,38],[508,1,1,38,39],[521,1,1,39,40],[535,1,1,40,41],[548,1,1,41,42],[604,1,1,42,43],[609,1,1,43,44],[616,1,1,44,45]]],[19,8,8,45,53,[[640,1,1,45,46],[645,2,2,46,48],[647,2,2,48,50],[649,1,1,50,51],[653,1,1,51,52],[658,1,1,52,53]]],[20,2,2,53,55,[[663,1,1,53,54],[669,1,1,54,55]]],[21,1,1,55,56,[[677,1,1,55,56]]],[22,8,8,56,64,[[691,1,1,56,57],[722,2,2,57,59],[724,1,1,59,60],[726,1,1,60,61],[727,3,3,61,64]]],[23,1,1,64,65,[[745,1,1,64,65]]],[25,1,1,65,66,[[804,1,1,65,66]]],[27,3,3,66,69,[[870,2,2,66,68],[873,1,1,68,69]]],[31,1,1,69,70,[[890,1,1,69,70]]],[32,1,1,70,71,[[898,1,1,70,71]]],[34,1,1,71,72,[[905,1,1,71,72]]]],[681,682,832,1146,3813,3814,3819,5124,5615,5622,5629,5664,5717,6589,6590,6889,6891,6966,8954,12890,12914,12915,13105,13205,13238,13314,13341,13346,13349,13603,13606,13646,13647,13822,13880,14117,14213,14214,14340,14596,14782,14982,16124,16162,16252,16772,16909,16921,16981,16984,17033,17163,17286,17412,17518,17629,17924,18535,18557,18589,18622,18637,18641,18651,18951,20505,22219,22224,22255,22550,22655,22784]]],["+",[19,19,[[6,2,2,0,2,[[213,1,1,0,1],[226,1,1,1,2]]],[17,5,5,2,7,[[436,1,1,2,3],[438,1,1,3,4],[445,1,1,4,5],[466,1,1,5,6],[473,1,1,6,7]]],[18,4,4,7,11,[[499,2,2,7,9],[535,1,1,9,10],[548,1,1,10,11]]],[20,1,1,11,12,[[663,1,1,11,12]]],[22,5,5,12,17,[[722,2,2,12,14],[726,1,1,14,15],[727,2,2,15,17]]],[27,1,1,17,18,[[870,1,1,17,18]]],[31,1,1,18,19,[[890,1,1,18,19]]]],[6590,6966,12890,12915,13105,13606,13822,14213,14214,14782,14982,17412,18535,18557,18622,18637,18641,22219,22550]]],["belly",[26,26,[[3,3,3,0,3,[[121,3,3,0,3]]],[6,1,1,3,4,[[213,1,1,3,4]]],[10,1,1,4,5,[[297,1,1,4,5]]],[17,7,7,5,12,[[450,2,2,5,7],[455,3,3,7,10],[467,1,1,10,11],[475,1,1,11,12]]],[18,3,3,12,15,[[494,1,1,12,13],[508,1,1,13,14],[521,1,1,14,15]]],[19,6,6,15,21,[[640,1,1,15,16],[645,2,2,16,18],[647,2,2,18,20],[653,1,1,20,21]]],[21,1,1,21,22,[[677,1,1,21,22]]],[22,1,1,22,23,[[724,1,1,22,23]]],[23,1,1,23,24,[[745,1,1,23,24]]],[25,1,1,24,25,[[804,1,1,24,25]]],[34,1,1,25,26,[[905,1,1,25,26]]]],[3813,3814,3819,6589,8954,13205,13238,13341,13346,13349,13647,13880,14117,14340,14596,16772,16909,16921,16981,16984,17163,17629,18589,18951,20505,22784]]],["body",[8,8,[[4,5,5,0,5,[[180,4,4,0,4],[182,1,1,4,5]]],[17,1,1,5,6,[[454,1,1,5,6]]],[18,1,1,6,7,[[609,1,1,6,7]]],[32,1,1,7,8,[[898,1,1,7,8]]]],[5615,5622,5629,5664,5717,13314,16162,22655]]],["within",[2,2,[[17,1,1,0,1,[[467,1,1,0,1]]],[19,1,1,1,2,[[649,1,1,1,2]]]],[13646,17033]]],["womb",[17,17,[[0,4,4,0,4,[[24,2,2,0,2],[29,1,1,2,3],[37,1,1,3,4]]],[4,1,1,4,5,[[159,1,1,4,5]]],[6,2,2,5,7,[[223,2,2,5,7]]],[17,2,2,7,9,[[438,1,1,7,8],[466,1,1,8,9]]],[18,2,2,9,11,[[604,1,1,9,10],[616,1,1,10,11]]],[19,1,1,11,12,[[658,1,1,11,12]]],[20,1,1,12,13,[[669,1,1,12,13]]],[22,2,2,13,15,[[691,1,1,13,14],[727,1,1,14,15]]],[27,2,2,15,17,[[870,1,1,15,16],[873,1,1,16,17]]]],[681,682,832,1146,5124,6889,6891,12914,13603,16124,16252,17286,17518,17924,18651,22224,22255]]]]},{"k":"H991","v":[["Beten",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6346]]]]},{"k":"H992","v":[["nuts",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1301]]]]},{"k":"H993","v":[["Betonim",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6180]]]]},{"k":"H994","v":[["*",[12,12,[[0,2,2,0,2,[[42,1,1,0,1],[43,1,1,1,2]]],[1,2,2,2,4,[[53,2,2,2,4]]],[3,1,1,4,5,[[128,1,1,4,5]]],[5,1,1,5,6,[[193,1,1,5,6]]],[6,3,3,6,9,[[216,2,2,6,8],[223,1,1,8,9]]],[8,1,1,9,10,[[236,1,1,9,10]]],[10,2,2,10,12,[[293,2,2,10,12]]]],[1310,1342,1611,1614,4070,5984,6667,6669,6892,7238,8833,8842]]],["Alas",[1,1,[[3,1,1,0,1,[[128,1,1,0,1]]]],[4070]]],["O",[7,7,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,2,2,1,3,[[53,2,2,1,3]]],[5,1,1,3,4,[[193,1,1,3,4]]],[6,1,1,4,5,[[223,1,1,4,5]]],[10,2,2,5,7,[[293,2,2,5,7]]]],[1310,1611,1614,5984,6892,8833,8842]]],["Oh",[4,4,[[0,1,1,0,1,[[43,1,1,0,1]]],[6,2,2,1,3,[[216,2,2,1,3]]],[8,1,1,3,4,[[236,1,1,3,4]]]],[1342,6667,6669,7238]]]]},{"k":"H995","v":[["*",[169,161,[[0,2,2,0,2,[[40,2,2,0,2]]],[4,5,5,2,7,[[153,1,1,2,3],[156,1,1,3,4],[184,3,3,4,7]]],[8,2,2,7,9,[[238,1,1,7,8],[251,1,1,8,9]]],[9,1,1,9,10,[[278,1,1,9,10]]],[10,4,4,10,14,[[293,4,4,10,14]]],[12,5,5,14,19,[[352,1,1,14,15],[362,2,2,15,17],[364,1,1,17,18],[365,1,1,18,19]]],[13,3,3,19,22,[[377,1,1,19,20],[392,1,1,20,21],[400,1,1,21,22]]],[14,2,2,22,24,[[410,2,2,22,24]]],[15,8,8,24,32,[[420,6,6,24,30],[422,1,1,30,31],[425,1,1,31,32]]],[17,23,23,32,55,[[441,2,2,32,34],[444,1,1,34,35],[446,1,1,35,36],[448,1,1,36,37],[449,1,1,37,38],[450,1,1,38,39],[453,1,1,39,40],[458,3,3,40,43],[461,1,1,43,44],[463,1,1,44,45],[465,1,1,45,46],[466,1,1,46,47],[467,3,3,47,50],[471,1,1,50,51],[472,1,1,51,52],[473,2,2,52,54],[477,1,1,54,55]]],[18,26,26,55,81,[[482,1,1,55,56],[496,1,1,56,57],[505,1,1,57,58],[509,1,1,58,59],[510,1,1,59,60],[514,1,1,60,61],[526,1,1,61,62],[527,1,1,62,63],[535,1,1,63,64],[550,1,1,64,65],[559,1,1,65,66],[569,1,1,66,67],[571,2,2,67,69],[584,1,1,69,70],[596,10,10,70,80],[616,1,1,80,81]]],[19,34,30,81,111,[[628,3,3,81,84],[629,2,2,84,86],[634,1,1,86,87],[635,3,2,87,89],[637,1,1,89,90],[641,4,4,90,94],[642,1,1,94,95],[643,1,1,95,96],[644,3,3,96,99],[645,1,1,99,100],[646,2,1,100,101],[647,1,1,101,102],[648,1,1,102,103],[650,2,1,103,104],[651,1,1,104,105],[655,5,4,105,109],[656,2,2,109,111]]],[20,1,1,111,112,[[667,1,1,111,112]]],[22,20,20,112,132,[[679,1,1,112,113],[681,1,1,113,114],[683,1,1,114,115],[684,2,2,115,117],[688,1,1,117,118],[692,1,1,118,119],[706,2,2,119,121],[707,2,2,121,123],[710,1,1,123,124],[718,2,2,124,126],[721,2,2,126,128],[722,1,1,128,129],[730,1,1,129,130],[734,1,1,130,131],[735,1,1,131,132]]],[23,7,7,132,139,[[746,1,1,132,133],[748,1,1,133,134],[753,2,2,134,136],[767,1,1,136,137],[774,1,1,137,138],[793,1,1,138,139]]],[26,22,19,139,158,[[850,2,2,139,141],[857,5,5,141,146],[858,4,3,146,149],[859,4,4,149,153],[860,4,3,153,156],[861,3,2,156,158]]],[27,3,2,158,160,[[865,1,1,158,159],[875,2,1,159,160]]],[32,1,1,160,161,[[896,1,1,160,161]]]],[1228,1234,4905,5010,5765,5768,5787,7284,7613,8305,8825,8827,8828,8837,10813,11053,11054,11141,11152,11437,11737,11945,12216,12217,12495,12496,12500,12501,12502,12505,12577,12678,13002,13008,13062,13119,13154,13202,13212,13278,13424,13427,13434,13481,13527,13577,13589,13636,13637,13640,13765,13783,13811,13813,13925,13974,14180,14304,14364,14381,14460,14668,14690,14788,15037,15238,15417,15438,15439,15742,15925,15932,15971,15993,15998,16002,16023,16028,16042,16067,16241,16402,16405,16406,16438,16442,16582,16607,16611,16669,16778,16780,16787,16805,16821,16861,16883,16897,16901,16916,16950,16978,17013,17045,17091,17198,17201,17203,17207,17231,17243,17486,17657,17710,17760,17778,17779,17863,17944,18173,18183,18207,18209,18263,18434,18441,18515,18523,18551,18711,18764,18766,18975,19049,19187,19192,19504,19691,20134,21741,21754,21966,21977,21978,21984,21988,21990,22010,22011,22016,22026,22027,22029,22066,22069,22073,22089,22091,22147,22291,22632]]],["+",[17,15,[[10,1,1,0,1,[[293,1,1,0,1]]],[15,1,1,1,2,[[420,1,1,1,2]]],[17,1,1,2,3,[[473,1,1,2,3]]],[18,4,4,3,7,[[505,1,1,3,4],[510,1,1,4,5],[514,1,1,5,6],[569,1,1,6,7]]],[19,2,1,7,8,[[650,2,1,7,8]]],[22,1,1,8,9,[[707,1,1,8,9]]],[23,2,2,9,11,[[753,1,1,9,10],[793,1,1,10,11]]],[26,5,4,11,15,[[857,1,1,11,12],[859,2,2,12,14],[860,2,1,14,15]]]],[8837,12502,13811,14304,14381,14460,15417,17045,18209,19187,20134,21977,22016,22029,22073]]],["Consider",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19192]]],["Understand",[2,2,[[18,1,1,0,1,[[571,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]]],[15439,21978]]],["attended",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13640]]],["consider",[17,17,[[4,2,2,0,2,[[184,2,2,0,2]]],[17,3,3,2,5,[[446,1,1,2,3],[458,1,1,3,4],[472,1,1,4,5]]],[18,3,3,5,8,[[482,1,1,5,6],[527,1,1,6,7],[596,1,1,7,8]]],[19,1,1,8,9,[[651,1,1,8,9]]],[22,4,4,9,13,[[679,1,1,9,10],[692,1,1,10,11],[721,1,1,11,12],[730,1,1,12,13]]],[23,3,3,13,16,[[746,1,1,13,14],[767,1,1,14,15],[774,1,1,15,16]]],[26,1,1,16,17,[[858,1,1,16,17]]]],[5765,5787,13119,13434,13783,13974,14690,15993,17091,17657,17944,18523,18711,18975,19504,19691,22011]]],["considering",[2,2,[[22,1,1,0,1,[[735,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]]],[18766,21966]]],["cunning",[1,1,[[12,1,1,0,1,[[362,1,1,0,1]]]],[11053]]],["directeth",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17013]]],["discern",[2,2,[[10,1,1,0,1,[[293,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]]],[8825,13008]]],["discerned",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16582]]],["discreet",[2,2,[[0,2,2,0,2,[[40,2,2,0,2]]]],[1228,1234]]],["eloquent",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17710]]],["feel",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14788]]],["informed",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22010]]],["instruct",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22069]]],["instructed",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[5768,18434]]],["intelligence",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22066]]],["know",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13813]]],["mark",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13278]]],["perceive",[3,3,[[17,2,2,0,2,[[444,1,1,0,1],[458,1,1,1,2]]],[19,1,1,2,3,[[628,1,1,2,3]]]],[13062,13427,16402]]],["perceived",[2,2,[[8,1,1,0,1,[[238,1,1,0,1]]],[9,1,1,1,2,[[278,1,1,1,2]]]],[7284,8305]]],["perceiveth",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13202]]],["prudent",[7,7,[[8,1,1,0,1,[[251,1,1,0,1]]],[19,2,2,1,3,[[643,1,1,1,2],[645,1,1,2,3]]],[22,3,3,3,6,[[683,1,1,3,4],[688,1,1,4,5],[707,1,1,5,6]]],[27,1,1,6,7,[[875,1,1,6,7]]]],[7613,16861,16916,17760,17863,18207,22291]]],["regard",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15438]]],["regardest",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13577]]],["regardeth",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17231]]],["skilful",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10813]]],["skill",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11945]]],["teacher",[1,1,[[12,1,1,0,1,[[362,1,1,0,1]]]],[11054]]],["think",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13589]]],["understand",[38,36,[[15,3,3,0,3,[[420,3,3,0,3]]],[17,5,5,3,8,[[441,1,1,3,4],[458,1,1,4,5],[461,1,1,5,6],[467,1,1,6,7],[471,1,1,7,8]]],[18,5,5,8,13,[[496,1,1,8,9],[559,1,1,9,10],[584,1,1,10,11],[596,2,2,11,13]]],[19,10,9,13,22,[[628,1,1,13,14],[629,2,2,14,16],[635,1,1,16,17],[641,1,1,17,18],[646,1,1,18,19],[647,1,1,19,20],[655,2,1,20,21],[656,1,1,21,22]]],[22,7,7,22,29,[[684,2,2,22,24],[706,2,2,24,26],[710,1,1,26,27],[721,1,1,27,28],[734,1,1,28,29]]],[26,5,4,29,33,[[858,1,1,29,30],[859,2,2,30,32],[861,2,1,32,33]]],[27,2,2,33,35,[[865,1,1,33,34],[875,1,1,34,35]]],[32,1,1,35,36,[[896,1,1,35,36]]]],[12496,12500,12501,13002,13424,13481,13637,13765,14180,15238,15742,15925,15998,16406,16438,16442,16607,16780,16950,16978,17201,17243,17778,17779,18173,18183,18263,18515,18764,22011,22026,22027,22091,22147,22291,22632]]],["understandest",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]]],[13212,16241]]],["understandeth",[5,5,[[12,1,1,0,1,[[365,1,1,0,1]]],[17,1,1,1,2,[[463,1,1,1,2]]],[18,1,1,2,3,[[526,1,1,2,3]]],[19,2,2,3,5,[[635,1,1,3,4],[641,1,1,4,5]]]],[11152,13527,14668,16611,16778]]],["understanding",[32,32,[[4,2,2,0,2,[[153,1,1,0,1],[156,1,1,1,2]]],[10,2,2,2,4,[[293,2,2,2,4]]],[13,1,1,4,5,[[392,1,1,4,5]]],[14,1,1,5,6,[[410,1,1,5,6]]],[15,2,2,6,8,[[420,1,1,6,7],[422,1,1,7,8]]],[17,1,1,8,9,[[467,1,1,8,9]]],[18,8,8,9,17,[[509,1,1,9,10],[596,7,7,10,17]]],[19,10,10,17,27,[[628,1,1,17,18],[635,1,1,18,19],[637,1,1,19,20],[641,1,1,20,21],[642,1,1,21,22],[644,2,2,22,24],[646,1,1,24,25],[655,2,2,25,27]]],[20,1,1,27,28,[[667,1,1,27,28]]],[23,1,1,28,29,[[748,1,1,28,29]]],[26,3,3,29,32,[[850,2,2,29,31],[857,1,1,31,32]]]],[4905,5010,8827,8828,11737,12217,12495,12577,13636,14364,15932,15971,16002,16023,16028,16042,16067,16405,16607,16669,16805,16821,16897,16901,16950,17198,17207,17486,19049,21741,21754,21984]]],["understood",[10,10,[[15,2,2,0,2,[[420,1,1,0,1],[425,1,1,1,2]]],[17,2,2,2,4,[[448,1,1,2,3],[477,1,1,3,4]]],[18,1,1,4,5,[[550,1,1,4,5]]],[22,2,2,5,7,[[718,1,1,5,6],[722,1,1,6,7]]],[26,3,3,7,10,[[857,1,1,7,8],[858,1,1,8,9],[861,1,1,9,10]]]],[12505,12678,13154,13925,15037,18441,18551,21988,21990,22089]]],["viewed",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12216]]],["well",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16787]]],["wise",[3,3,[[12,1,1,0,1,[[364,1,1,0,1]]],[19,2,2,1,3,[[644,1,1,1,2],[655,1,1,2,3]]]],[11141,16883,17203]]],["wisely",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11437]]]]},{"k":"H996","v":[["*",[284,248,[[0,44,37,0,37,[[0,9,5,0,5],[2,2,1,5,6],[8,5,5,6,11],[9,1,1,11,12],[12,4,3,12,15],[14,1,1,15,16],[15,2,2,16,18],[16,4,4,18,22],[19,1,1,22,23],[22,1,1,23,24],[25,2,1,24,25],[29,1,1,25,26],[30,7,7,26,33],[31,1,1,33,34],[41,1,1,34,35],[48,2,2,35,37]]],[1,22,22,37,59,[[57,1,1,37,38],[58,1,1,38,39],[60,1,1,39,40],[61,1,1,40,41],[62,2,2,41,43],[63,2,2,43,45],[65,2,2,45,47],[67,1,1,47,48],[71,1,1,48,49],[74,1,1,49,50],[75,1,1,50,51],[78,2,2,51,53],[79,2,2,53,55],[80,2,2,55,57],[89,2,2,57,59]]],[2,11,8,59,67,[[99,2,1,59,60],[100,2,1,60,61],[109,2,1,61,62],[112,1,1,62,63],[115,1,1,63,64],[116,3,3,64,67]]],[3,16,14,67,81,[[123,1,1,67,68],[125,3,3,68,71],[127,1,1,71,72],[132,2,2,72,74],[137,1,1,74,75],[142,1,1,75,76],[144,2,2,76,78],[146,2,1,78,79],[147,2,1,79,80],[151,1,1,80,81]]],[4,13,10,81,91,[[153,3,2,81,83],[157,1,1,83,84],[158,1,1,84,85],[163,1,1,85,86],[166,1,1,86,87],[169,3,1,87,88],[177,1,1,88,89],[180,1,1,89,90],[185,1,1,90,91]]],[5,10,10,91,101,[[189,1,1,91,92],[194,3,3,92,95],[204,1,1,95,96],[208,4,4,96,100],[210,1,1,100,101]]],[6,13,12,101,113,[[214,2,2,101,103],[215,4,3,103,106],[219,1,1,106,107],[221,2,2,107,109],[223,1,1,109,110],[225,1,1,110,111],[226,2,2,111,113]]],[7,3,2,113,115,[[232,2,1,113,114],[233,1,1,114,115]]],[8,14,13,115,128,[[242,2,2,115,117],[249,2,2,117,119],[252,3,3,119,122],[255,4,3,122,125],[259,2,2,125,127],[261,1,1,127,128]]],[9,8,7,128,135,[[269,2,2,128,130],[280,1,1,130,131],[284,2,2,131,133],[285,1,1,133,134],[287,2,1,134,135]]],[10,15,14,135,149,[[293,1,1,135,136],[295,1,1,136,137],[297,3,3,137,140],[304,1,1,140,141],[305,6,5,141,146],[308,1,1,146,147],[312,2,2,147,149]]],[11,6,5,149,154,[[314,1,1,149,150],[321,1,1,150,151],[323,2,1,151,152],[328,1,1,152,153],[337,1,1,153,154]]],[12,1,1,154,155,[[358,1,1,154,155]]],[13,11,7,155,162,[[370,1,1,155,156],[379,1,1,156,157],[380,1,1,157,158],[382,2,1,158,159],[384,1,1,159,160],[385,2,1,160,161],[389,3,1,161,162]]],[15,2,2,162,164,[[415,1,1,162,163],[417,1,1,163,164]]],[16,1,1,164,165,[[428,1,1,164,165]]],[17,7,7,165,172,[[444,1,1,165,166],[459,1,1,166,167],[465,1,1,167,168],[469,2,2,168,170],[476,2,2,170,172]]],[18,3,3,172,175,[[545,1,1,172,173],[581,2,2,173,175]]],[19,4,4,175,179,[[633,1,1,175,176],[641,1,1,176,177],[645,1,1,177,178],[653,1,1,178,179]]],[21,4,3,179,182,[[671,1,1,179,180],[672,3,2,180,182]]],[22,5,5,182,187,[[680,1,1,182,183],[683,1,1,183,184],[700,1,1,184,185],[722,1,1,185,186],[737,1,1,186,187]]],[23,8,8,187,195,[[751,1,1,187,188],[769,2,2,188,190],[778,2,2,190,192],[783,1,1,192,193],[792,1,1,193,194],[796,1,1,194,195]]],[24,2,2,195,197,[[797,2,2,195,197]]],[25,38,29,197,226,[[802,1,1,197,198],[805,1,1,198,199],[809,2,2,199,201],[811,6,3,201,204],[819,1,1,204,205],[820,2,2,205,207],[821,2,2,207,209],[823,2,1,209,210],[832,3,3,210,213],[835,4,3,213,216],[838,1,1,216,217],[841,1,1,217,218],[842,2,2,218,220],[843,1,1,220,221],[844,1,1,221,222],[845,2,1,222,223],[848,5,2,223,225],[849,1,1,225,226]]],[26,4,4,226,230,[[857,3,3,226,229],[860,1,1,229,230]]],[27,2,2,230,232,[[863,1,1,230,231],[874,1,1,231,232]]],[28,1,1,232,233,[[877,1,1,232,233]]],[30,1,1,233,234,[[888,1,1,233,234]]],[31,1,1,234,235,[[892,1,1,234,235]]],[32,1,1,235,236,[[896,1,1,235,236]]],[37,10,10,236,246,[[911,3,3,236,239],[913,1,1,239,240],[915,1,1,240,241],[916,2,2,241,243],[919,1,1,243,244],[921,1,1,244,245],[923,1,1,245,246]]],[38,3,2,246,248,[[926,1,1,246,247],[927,2,1,247,248]]]],[3,5,6,13,17,70,217,218,220,221,222,246,321,325,326,377,386,395,399,404,407,408,496,586,720,866,910,917,921,922,923,924,926,944,1275,1483,1487,1733,1746,1813,1822,1876,1883,1891,1909,1948,1959,2015,2124,2217,2268,2375,2377,2390,2400,2433,2437,2714,2737,2987,3044,3343,3407,3570,3582,3584,3603,3939,3968,3970,3976,4057,4231,4242,4353,4545,4581,4585,4664,4691,4869,4893,4908,5058,5094,5226,5291,5372,5548,5668,5822,5897,6011,6013,6014,6304,6451,6453,6454,6460,6483,6604,6616,6634,6639,6650,6777,6839,6856,6909,6933,6974,6980,7144,7164,7364,7366,7512,7550,7619,7621,7624,7733,7753,7772,7851,7854,7918,8082,8087,8362,8487,8502,8546,8587,8825,8890,8962,8963,8980,9248,9255,9256,9265,9268,9281,9383,9481,9514,9562,9780,9846,9977,10226,10950,11263,11455,11486,11512,11575,11586,11672,12359,12400,12755,13084,13447,13564,13687,13720,13894,13904,14913,15581,15583,16559,16781,16919,17154,17550,17556,17557,17689,17742,18063,18537,18802,19124,19550,19561,19819,19820,19927,20125,20283,20313,20327,20477,20532,20607,20620,20635,20639,20640,20857,20883,20892,20907,20915,21002,21233,21240,21244,21330,21333,21335,21418,21484,21536,21544,21572,21580,21622,21695,21697,21724,21966,21977,21982,22081,22107,22281,22328,22514,22579,22623,22886,22888,22889,22919,22945,22948,22960,23006,23042,23065,23117,23138]]],["+",[29,25,[[0,6,6,0,6,[[0,5,5,0,5],[48,1,1,5,6]]],[1,1,1,6,7,[[74,1,1,6,7]]],[3,2,2,7,9,[[123,1,1,7,8],[132,1,1,8,9]]],[4,1,1,9,10,[[180,1,1,9,10]]],[9,1,1,10,11,[[280,1,1,10,11]]],[11,1,1,11,12,[[328,1,1,11,12]]],[18,1,1,12,13,[[581,1,1,12,13]]],[23,1,1,13,14,[[792,1,1,13,14]]],[25,12,8,14,22,[[811,4,3,14,17],[820,1,1,17,18],[832,2,2,18,20],[838,1,1,20,21],[848,4,1,21,22]]],[27,1,1,22,23,[[863,1,1,22,23]]],[37,2,2,23,25,[[916,1,1,23,24],[919,1,1,24,25]]]],[3,5,6,13,17,1483,2217,3939,4231,5668,8362,9977,15583,20125,20635,20639,20640,20892,21240,21244,21418,21697,22107,22948,23006]]],["Among",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13564]]],["At",[2,2,[[1,1,1,0,1,[[65,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]]],[1959,6650]]],["among",[28,27,[[6,1,1,0,1,[[215,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[16,1,1,2,3,[[428,1,1,2,3]]],[17,3,3,3,6,[[469,2,2,3,5],[476,1,1,5,6]]],[18,2,2,6,8,[[545,1,1,6,7],[581,1,1,7,8]]],[19,2,2,8,10,[[633,1,1,8,9],[641,1,1,9,10]]],[21,3,2,10,12,[[672,3,2,10,12]]],[22,2,2,12,14,[[680,1,1,12,13],[722,1,1,13,14]]],[23,2,2,14,16,[[769,2,2,14,16]]],[24,1,1,16,17,[[797,1,1,16,17]]],[25,3,3,17,20,[[802,1,1,17,18],[820,1,1,18,19],[832,1,1,19,20]]],[27,1,1,20,21,[[874,1,1,20,21]]],[30,1,1,21,22,[[888,1,1,21,22]]],[32,1,1,22,23,[[896,1,1,22,23]]],[37,4,4,23,27,[[911,3,3,23,26],[913,1,1,26,27]]]],[6639,7164,12755,13687,13720,13894,14913,15581,16559,16781,17556,17557,17689,18537,19550,19561,20327,20477,20883,21233,22281,22514,22623,22886,22888,22889,22919]]],["asunder",[1,1,[[11,1,1,0,1,[[314,1,1,0,1]]]],[9562]]],["at",[10,10,[[1,3,3,0,3,[[78,2,2,0,2],[79,1,1,2,3]]],[2,1,1,3,4,[[112,1,1,3,4]]],[3,5,5,4,9,[[125,3,3,4,7],[144,2,2,7,9]]],[6,1,1,9,10,[[215,1,1,9,10]]]],[2375,2377,2390,3407,3968,3970,3976,4581,4585,6650]]],["between",[182,160,[[0,23,21,0,21,[[2,2,1,0,1],[8,5,5,1,6],[9,1,1,6,7],[12,4,3,7,10],[14,1,1,10,11],[15,2,2,11,13],[16,3,3,13,16],[19,1,1,16,17],[30,3,3,17,20],[48,1,1,20,21]]],[1,16,16,21,37,[[57,1,1,21,22],[58,1,1,22,23],[60,1,1,23,24],[62,2,2,24,26],[63,2,2,26,28],[65,1,1,28,29],[67,1,1,29,30],[71,1,1,30,31],[75,1,1,31,32],[79,1,1,32,33],[80,2,2,33,35],[89,2,2,35,37]]],[2,7,4,37,41,[[99,2,1,37,38],[100,2,1,38,39],[109,2,1,39,40],[115,1,1,40,41]]],[3,9,7,41,48,[[127,1,1,41,42],[132,1,1,42,43],[137,1,1,43,44],[142,1,1,44,45],[146,2,1,45,46],[147,2,1,46,47],[151,1,1,47,48]]],[4,12,9,48,57,[[153,3,2,48,50],[157,1,1,50,51],[158,1,1,51,52],[163,1,1,52,53],[166,1,1,53,54],[169,3,1,54,55],[177,1,1,55,56],[185,1,1,56,57]]],[5,10,10,57,67,[[189,1,1,57,58],[194,3,3,58,61],[204,1,1,61,62],[208,4,4,62,66],[210,1,1,66,67]]],[6,9,9,67,76,[[214,2,2,67,69],[219,1,1,69,70],[221,2,2,70,72],[223,1,1,72,73],[225,1,1,73,74],[226,2,2,74,76]]],[8,14,13,76,89,[[242,2,2,76,78],[249,2,2,78,80],[252,3,3,80,83],[255,4,3,83,86],[259,2,2,86,88],[261,1,1,88,89]]],[9,7,6,89,95,[[269,2,2,89,91],[284,2,2,91,93],[285,1,1,93,94],[287,2,1,94,95]]],[10,15,14,95,109,[[293,1,1,95,96],[295,1,1,96,97],[297,3,3,97,100],[304,1,1,100,101],[305,6,5,101,106],[308,1,1,106,107],[312,2,2,107,109]]],[11,4,3,109,112,[[321,1,1,109,110],[323,2,1,110,111],[337,1,1,111,112]]],[12,1,1,112,113,[[358,1,1,112,113]]],[13,10,6,113,119,[[370,1,1,113,114],[379,1,1,114,115],[382,2,1,115,116],[384,1,1,116,117],[385,2,1,117,118],[389,3,1,118,119]]],[15,1,1,119,120,[[415,1,1,119,120]]],[17,1,1,120,121,[[476,1,1,120,121]]],[19,1,1,121,122,[[645,1,1,121,122]]],[22,2,2,122,124,[[700,1,1,122,123],[737,1,1,123,124]]],[23,4,4,124,128,[[751,1,1,124,125],[778,2,2,125,127],[796,1,1,127,128]]],[24,1,1,128,129,[[797,1,1,128,129]]],[25,23,20,129,149,[[805,1,1,129,130],[809,2,2,130,132],[811,2,2,132,134],[819,1,1,134,135],[821,2,2,135,137],[823,2,1,137,138],[835,4,3,138,141],[841,1,1,141,142],[842,2,2,142,144],[843,1,1,144,145],[844,1,1,145,146],[845,2,1,146,147],[848,1,1,147,148],[849,1,1,148,149]]],[26,4,4,149,153,[[857,3,3,149,152],[860,1,1,152,153]]],[28,1,1,153,154,[[877,1,1,153,154]]],[31,1,1,154,155,[[892,1,1,154,155]]],[37,3,3,155,158,[[915,1,1,155,156],[916,1,1,156,157],[921,1,1,157,158]]],[38,3,2,158,160,[[926,1,1,158,159],[927,2,1,159,160]]]],[70,217,218,220,221,222,246,321,325,326,377,386,395,399,404,407,496,917,921,922,1487,1733,1746,1813,1876,1883,1891,1909,1948,2015,2124,2268,2400,2433,2437,2714,2737,2987,3044,3343,3570,4057,4242,4353,4545,4664,4691,4869,4893,4908,5058,5094,5226,5291,5372,5548,5822,5897,6011,6013,6014,6304,6451,6453,6454,6460,6483,6604,6616,6777,6839,6856,6909,6933,6974,6980,7364,7366,7512,7550,7619,7621,7624,7733,7753,7772,7851,7854,7918,8082,8087,8487,8502,8546,8587,8825,8890,8962,8963,8980,9248,9255,9256,9265,9268,9281,9383,9481,9514,9780,9846,10226,10950,11263,11455,11512,11575,11586,11672,12359,13904,16919,18063,18802,19124,19819,19820,20283,20313,20532,20607,20620,20635,20640,20857,20907,20915,21002,21330,21333,21335,21484,21536,21544,21572,21580,21622,21695,21724,21966,21977,21982,22081,22328,22579,22945,22960,23042,23117,23138]]],["betwixt",[14,13,[[0,10,9,0,9,[[16,1,1,0,1],[22,1,1,1,2],[25,2,1,2,3],[29,1,1,3,4],[30,4,4,4,8],[31,1,1,8,9]]],[17,1,1,9,10,[[444,1,1,9,10]]],[21,1,1,10,11,[[671,1,1,10,11]]],[22,1,1,11,12,[[683,1,1,11,12]]],[23,1,1,12,13,[[783,1,1,12,13]]]],[408,586,720,866,910,923,924,926,944,13084,17550,17742,19927]]],["from",[4,4,[[0,4,4,0,4,[[0,4,4,0,4]]]],[3,6,13,17]]],["in",[4,4,[[1,1,1,0,1,[[61,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[19,1,1,2,3,[[653,1,1,2,3]]],[37,1,1,3,4,[[923,1,1,3,4]]]],[1822,6634,17154,23065]]],["me",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7144]]],["once",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12400]]],["thee",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7144]]],["unto",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1275]]],["whether",[4,4,[[2,3,3,0,3,[[116,3,3,0,3]]],[13,1,1,3,4,[[380,1,1,3,4]]]],[3582,3584,3603,11486]]],["within",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13447]]]]},{"k":"H997","v":[["*",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21938,21941]]],["among",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21941]]],["between",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21938]]]]},{"k":"H998","v":[["*",[38,38,[[4,1,1,0,1,[[156,1,1,0,1]]],[12,2,2,1,3,[[349,1,1,1,2],[359,1,1,2,3]]],[13,2,2,3,5,[[368,2,2,3,5]]],[17,9,9,5,14,[[455,1,1,5,6],[463,3,3,6,9],[469,1,1,9,10],[473,2,2,10,12],[474,2,2,12,14]]],[19,14,14,14,28,[[628,1,1,14,15],[629,1,1,15,16],[630,1,1,16,17],[631,3,3,17,20],[634,1,1,20,21],[635,1,1,21,22],[636,2,2,22,24],[643,1,1,24,25],[650,2,2,25,27],[657,1,1,27,28]]],[22,5,5,28,33,[[689,1,1,28,29],[705,1,1,29,30],[707,2,2,30,32],[711,1,1,32,33]]],[23,1,1,33,34,[[767,1,1,33,34]]],[26,4,4,34,38,[[850,1,1,34,35],[857,1,1,35,36],[858,1,1,36,37],[859,1,1,37,38]]]],[5010,10752,10976,11223,11224,13329,13516,13524,13532,13699,13797,13829,13851,13860,16402,16436,16460,16491,16495,16497,16579,16616,16644,16648,16856,17048,17067,17253,17886,18162,18207,18217,18298,19504,21757,21976,22010,22016]]],["+",[3,3,[[17,3,3,0,3,[[455,1,1,0,1],[473,1,1,1,2],[474,1,1,2,3]]]],[13329,13797,13860]]],["knowledge",[1,1,[[19,1,1,0,1,[[629,1,1,0,1]]]],[16436]]],["meaning",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21976]]],["perfectly",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19504]]],["understand",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18298]]],["understanding",[30,30,[[4,1,1,0,1,[[156,1,1,0,1]]],[12,2,2,1,3,[[349,1,1,1,2],[359,1,1,2,3]]],[13,2,2,3,5,[[368,2,2,3,5]]],[17,6,6,5,11,[[463,3,3,5,8],[469,1,1,8,9],[473,1,1,9,10],[474,1,1,10,11]]],[19,12,12,11,23,[[628,1,1,11,12],[630,1,1,12,13],[631,3,3,13,16],[634,1,1,16,17],[635,1,1,17,18],[636,2,2,18,20],[643,1,1,20,21],[650,1,1,21,22],[657,1,1,22,23]]],[22,4,4,23,27,[[689,1,1,23,24],[705,1,1,24,25],[707,2,2,25,27]]],[26,3,3,27,30,[[850,1,1,27,28],[858,1,1,28,29],[859,1,1,29,30]]]],[5010,10752,10976,11223,11224,13516,13524,13532,13699,13829,13851,16402,16460,16491,16495,16497,16579,16616,16644,16648,16856,17067,17253,17886,18162,18207,18217,21757,22010,22016]]],["wisdom",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17048]]]]},{"k":"H999","v":[["understanding",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21779]]]]},{"k":"H1000","v":[["*",[6,4,[[4,2,1,0,1,[[174,2,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]],[22,3,2,2,4,[[688,1,1,2,3],[737,2,1,3,4]]]],[5476,13848,17864,18805]]],["+",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18805]]],["eggs",[5,4,[[4,2,1,0,1,[[174,2,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]],[22,2,2,2,4,[[688,1,1,2,3],[737,1,1,3,4]]]],[5476,13848,17864,18805]]]]},{"k":"H1001","v":[["palace",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12153]]]]},{"k":"H1002","v":[["palace",[16,16,[[12,2,2,0,2,[[366,2,2,0,2]]],[15,3,3,2,5,[[413,1,1,2,3],[414,1,1,3,4],[419,1,1,4,5]]],[16,10,10,5,15,[[426,2,2,5,7],[427,3,3,7,10],[428,1,1,10,11],[433,1,1,11,12],[434,3,3,12,15]]],[26,1,1,15,16,[[857,1,1,15,16]]]],[11165,11183,12297,12315,12422,12704,12707,12727,12729,12732,12762,12831,12840,12845,12846,21963]]]]},{"k":"H1003","v":[["castles",[2,2,[[13,2,2,0,2,[[383,1,1,0,1],[393,1,1,1,2]]]],[11535,11759]]]]},{"k":"H1004","v":[["*",[2050,1708,[[0,109,93,0,93,[[5,1,1,0,1],[6,1,1,1,2],[11,3,3,2,5],[13,1,1,5,6],[14,2,2,6,8],[16,6,4,8,12],[17,1,1,12,13],[18,5,5,13,18],[19,2,2,18,20],[23,9,9,20,29],[26,1,1,29,30],[27,4,4,30,34],[28,1,1,34,35],[29,1,1,35,36],[30,4,4,36,40],[32,1,1,40,41],[33,4,4,41,45],[34,1,1,45,46],[35,1,1,46,47],[37,2,1,47,48],[38,18,12,48,60],[39,5,4,60,64],[40,3,3,64,67],[41,3,2,67,69],[42,9,6,69,75],[43,4,4,75,79],[44,5,5,79,84],[45,3,2,84,86],[46,3,3,86,89],[49,5,4,89,93]]],[1,59,50,93,143,[[50,2,2,93,95],[51,1,1,95,96],[52,1,1,96,97],[55,1,1,97,98],[56,1,1,98,99],[57,9,6,99,105],[58,2,2,105,107],[59,3,1,107,108],[61,16,12,108,120],[62,2,2,120,122],[65,1,1,122,123],[68,1,1,123,124],[69,2,2,124,126],[71,2,2,126,128],[72,1,1,128,129],[74,2,2,129,131],[75,2,2,131,133],[77,1,1,133,134],[79,1,1,134,135],[83,1,1,135,136],[85,1,1,136,137],[86,3,3,137,140],[87,1,1,140,141],[88,1,1,141,142],[89,1,1,142,143]]],[2,53,40,143,183,[[99,1,1,143,144],[103,31,19,144,163],[105,6,6,163,169],[106,3,3,169,172],[107,1,1,172,173],[111,3,3,173,176],[114,6,5,176,181],[116,2,2,181,183]]],[3,58,56,183,239,[[117,17,17,183,200],[118,3,3,200,203],[119,5,5,203,208],[120,8,8,208,216],[123,1,1,216,217],[128,1,1,217,218],[132,1,1,218,219],[133,5,4,219,223],[134,5,5,223,228],[136,1,1,228,229],[138,1,1,229,230],[140,1,1,230,231],[141,2,2,231,233],[142,1,1,233,234],[146,3,3,234,237],[148,1,1,237,238],[150,2,1,238,239]]],[4,45,42,239,281,[[157,2,2,239,241],[158,5,5,241,246],[159,2,2,246,248],[160,2,2,248,250],[163,3,3,250,253],[164,1,1,253,254],[165,2,2,254,256],[166,1,1,256,257],[167,2,2,257,259],[171,1,1,259,260],[172,5,4,260,264],[173,2,2,264,266],[174,5,3,266,269],[175,1,1,269,270],[176,5,5,270,275],[177,3,3,275,278],[178,2,2,278,280],[180,1,1,280,281]]],[5,25,21,281,302,[[188,8,6,281,287],[192,4,4,287,291],[193,3,2,291,293],[195,2,2,293,295],[203,1,1,295,296],[204,1,1,296,297],[206,1,1,297,298],[207,1,1,298,299],[208,2,1,299,300],[210,2,2,300,302]]],[6,70,61,302,363,[[211,3,3,302,305],[214,1,1,305,306],[216,3,3,306,309],[218,3,3,309,312],[219,10,9,312,321],[220,1,1,321,322],[221,4,4,322,326],[222,1,1,326,327],[224,2,2,327,329],[226,7,7,329,336],[227,4,4,336,340],[228,14,11,340,351],[229,15,10,351,361],[230,2,2,361,363]]],[7,7,5,363,368,[[232,2,2,363,365],[233,1,1,365,366],[235,4,2,366,368]]],[8,61,57,368,425,[[236,4,4,368,372],[237,12,9,372,381],[238,5,4,381,385],[240,2,2,385,387],[241,2,2,387,389],[242,4,4,389,393],[244,2,2,393,395],[245,2,2,395,397],[250,1,1,397,398],[252,1,1,398,399],[253,2,2,399,401],[254,2,2,401,403],[255,2,2,403,405],[256,1,1,405,406],[257,6,6,406,412],[258,1,1,412,413],[259,2,2,413,415],[260,6,6,415,421],[262,1,1,421,422],[263,1,1,422,423],[266,2,2,423,425]]],[9,115,95,425,520,[[267,1,1,425,426],[268,5,5,426,431],[269,11,6,431,437],[270,4,4,437,441],[271,3,3,441,444],[272,12,10,444,454],[273,15,14,454,468],[275,7,7,468,475],[277,11,8,475,483],[278,8,6,483,489],[279,4,3,489,492],[280,5,4,492,496],[281,4,3,496,499],[282,5,5,499,504],[283,4,3,504,507],[285,9,8,507,515],[286,3,1,515,516],[287,2,2,516,518],[289,1,1,518,519],[290,1,1,519,520]]],[10,194,148,520,668,[[291,1,1,520,521],[292,6,6,521,527],[293,7,4,527,531],[294,2,2,531,533],[295,8,7,533,540],[296,38,24,540,564],[297,21,13,564,577],[298,21,20,577,597],[299,13,8,597,605],[300,6,5,605,610],[301,5,4,610,614],[302,10,9,614,623],[303,8,8,623,631],[304,12,10,631,641],[305,5,4,641,645],[306,12,7,645,652],[307,3,3,652,655],[308,3,3,655,658],[310,4,3,658,661],[311,6,4,661,665],[312,3,3,665,668]]],[11,152,110,668,778,[[316,4,3,668,671],[317,5,3,671,674],[318,2,2,674,676],[319,2,2,676,678],[320,8,6,678,684],[321,7,5,684,689],[322,11,10,689,699],[323,19,13,699,712],[324,21,14,712,726],[325,1,1,726,727],[326,3,2,727,729],[327,4,3,729,732],[328,6,3,732,735],[329,4,4,735,739],[330,4,3,739,742],[331,5,5,742,747],[332,9,6,747,753],[333,7,6,753,759],[334,9,6,759,765],[335,11,8,765,773],[336,2,1,773,774],[337,8,4,774,778]]],[12,112,92,778,870,[[339,1,1,778,779],[341,3,2,779,781],[342,4,3,781,784],[343,4,4,784,788],[344,6,6,788,794],[346,9,7,794,801],[347,3,2,801,803],[349,3,3,803,806],[350,5,3,806,809],[351,1,1,809,810],[352,2,2,810,812],[353,2,1,812,813],[354,14,13,813,826],[358,1,1,826,827],[359,10,10,827,837],[360,7,5,837,842],[361,5,4,842,846],[362,2,1,846,847],[363,7,7,847,854],[365,15,10,854,864],[366,8,6,864,870]]],[13,218,171,870,1041,[[368,10,7,870,877],[369,13,12,877,889],[370,6,5,889,894],[371,6,4,894,898],[372,16,15,898,913],[373,15,10,913,923],[374,6,3,923,926],[375,6,5,926,931],[376,2,2,931,933],[377,2,2,933,935],[378,4,3,935,938],[381,1,1,938,939],[382,3,2,939,941],[383,1,1,941,942],[384,2,2,942,944],[385,2,2,944,946],[386,4,3,946,949],[387,5,4,949,953],[388,7,7,953,960],[389,19,13,960,973],[390,15,11,973,984],[391,4,3,984,987],[392,4,2,987,989],[393,1,1,989,990],[394,6,3,990,993],[395,11,10,993,1003],[396,2,2,1003,1005],[397,7,6,1005,1011],[398,1,1,1011,1012],[399,8,6,1012,1018],[400,12,8,1018,1026],[401,9,8,1026,1034],[402,8,7,1034,1041]]],[14,30,26,1041,1067,[[403,6,5,1041,1046],[404,4,3,1046,1049],[405,6,4,1049,1053],[406,1,1,1053,1054],[408,1,1,1054,1055],[409,1,1,1055,1056],[410,6,6,1056,1062],[411,1,1,1062,1063],[412,4,4,1063,1067]]],[15,53,46,1067,1113,[[413,1,1,1067,1068],[414,3,2,1068,1070],[415,12,10,1070,1080],[416,2,2,1080,1082],[417,3,3,1082,1085],[418,2,1,1085,1086],[419,4,4,1086,1090],[420,1,1,1090,1091],[421,1,1,1091,1092],[422,11,8,1092,1100],[423,4,4,1100,1104],[424,3,3,1104,1107],[425,6,6,1107,1113]]],[16,28,22,1113,1135,[[426,3,3,1113,1116],[427,9,7,1116,1123],[429,2,2,1123,1125],[430,5,2,1125,1127],[431,2,2,1127,1129],[432,3,2,1129,1131],[433,3,3,1131,1134],[434,1,1,1134,1135]]],[17,26,26,1135,1161,[[436,5,5,1135,1140],[438,1,1,1140,1141],[439,1,1,1141,1142],[442,1,1,1142,1143],[443,3,3,1143,1146],[450,1,1,1146,1147],[452,1,1,1147,1148],[454,1,1,1148,1149],[455,2,2,1149,1151],[456,3,3,1151,1154],[457,1,1,1154,1155],[459,1,1,1155,1156],[462,1,1,1156,1157],[465,1,1,1157,1158],[473,1,1,1158,1159],[474,1,1,1159,1160],[477,1,1,1160,1161]]],[18,50,47,1161,1208,[[482,1,1,1161,1162],[500,1,1,1162,1163],[503,1,1,1163,1164],[504,1,1,1164,1165],[508,1,1,1165,1166],[513,1,1,1166,1167],[519,1,1,1167,1168],[522,1,1,1168,1169],[526,2,2,1169,1171],[527,1,1,1171,1172],[529,1,1,1172,1173],[532,1,1,1173,1174],[542,1,1,1174,1175],[543,1,1,1175,1176],[545,2,2,1176,1178],[546,1,1,1178,1179],[561,3,3,1179,1182],[569,1,1,1182,1183],[570,1,1,1183,1184],[575,1,1,1184,1185],[578,2,2,1185,1187],[581,1,1,1187,1188],[582,1,1,1188,1189],[589,1,1,1189,1190],[590,1,1,1190,1191],[591,1,1,1191,1192],[592,3,2,1192,1194],[593,1,1,1194,1195],[595,2,2,1195,1197],[596,1,1,1197,1198],[599,3,3,1198,1201],[604,1,1,1201,1202],[605,1,1,1202,1203],[609,1,1,1203,1204],[611,1,1,1204,1205],[612,5,3,1205,1208]]],[19,38,37,1208,1245,[[628,1,1,1208,1209],[629,1,1,1209,1210],[630,1,1,1210,1211],[632,2,2,1211,1213],[633,1,1,1213,1214],[634,6,6,1214,1220],[635,1,1,1220,1221],[636,2,2,1221,1223],[638,1,1,1223,1224],[639,1,1,1224,1225],[641,2,2,1225,1227],[642,3,3,1227,1230],[644,2,2,1230,1232],[646,1,1,1232,1233],[648,2,2,1233,1235],[651,2,2,1235,1237],[652,2,2,1237,1239],[654,2,2,1239,1241],[657,1,1,1241,1242],[658,4,3,1242,1245]]],[20,11,9,1245,1254,[[660,2,2,1245,1247],[662,1,1,1247,1248],[663,1,1,1248,1249],[665,4,2,1249,1251],[668,1,1,1251,1252],[670,2,2,1252,1254]]],[21,5,5,1254,1259,[[671,1,1,1254,1255],[672,1,1,1255,1256],[673,1,1,1256,1257],[678,2,2,1257,1259]]],[22,75,67,1259,1326,[[680,4,4,1259,1263],[681,4,4,1263,1267],[683,4,3,1267,1270],[684,2,2,1270,1272],[685,3,3,1272,1275],[686,2,2,1275,1277],[688,2,2,1277,1279],[691,2,2,1279,1281],[692,4,4,1281,1285],[700,9,8,1285,1293],[701,1,1,1293,1294],[702,1,1,1294,1295],[707,1,1,1295,1296],[709,1,1,1296,1297],[710,1,1,1297,1298],[714,2,2,1298,1300],[715,5,5,1300,1305],[716,3,3,1305,1308],[717,6,3,1308,1311],[720,2,2,1311,1313],[722,1,1,1313,1314],[724,2,1,1314,1315],[726,1,1,1315,1316],[734,4,2,1316,1318],[736,2,2,1318,1320],[738,1,1,1320,1321],[741,1,1,1321,1322],[742,1,1,1322,1323],[743,1,1,1323,1324],[744,2,2,1324,1326]]],[23,146,119,1326,1445,[[746,4,3,1326,1329],[747,3,2,1329,1331],[749,6,5,1331,1336],[750,1,1,1336,1337],[751,5,5,1337,1342],[753,1,1,1342,1343],[754,1,1,1343,1344],[755,5,3,1344,1347],[756,3,3,1347,1350],[757,2,1,1350,1351],[760,2,2,1351,1353],[761,2,2,1353,1355],[762,5,4,1355,1359],[763,4,2,1359,1361],[764,3,3,1361,1364],[765,2,2,1364,1366],[766,6,6,1366,1372],[767,3,3,1372,1375],[770,10,7,1375,1382],[771,5,3,1382,1385],[772,4,4,1385,1389],[773,3,3,1389,1392],[775,5,3,1392,1395],[776,4,4,1395,1399],[777,6,4,1399,1403],[778,2,2,1403,1405],[779,8,7,1405,1412],[780,8,7,1412,1419],[781,8,6,1419,1425],[782,7,7,1425,1432],[783,3,2,1432,1434],[785,1,1,1434,1435],[787,3,3,1435,1438],[792,1,1,1438,1439],[795,1,1,1439,1440],[796,9,5,1440,1445]]],[24,3,3,1445,1448,[[797,1,1,1445,1446],[798,1,1,1446,1447],[801,1,1,1447,1448]]],[25,181,159,1448,1607,[[802,1,1,1448,1449],[803,3,3,1449,1452],[804,10,9,1452,1461],[805,4,4,1461,1465],[806,1,1,1465,1466],[807,1,1,1466,1467],[808,2,2,1467,1469],[809,8,8,1469,1477],[810,4,4,1477,1481],[811,5,4,1481,1485],[812,4,4,1485,1489],[813,10,8,1489,1497],[814,2,2,1497,1499],[815,5,5,1499,1504],[817,1,1,1504,1505],[818,2,2,1505,1507],[819,7,6,1507,1513],[821,8,8,1513,1521],[823,1,1,1521,1522],[824,2,2,1522,1524],[825,2,2,1524,1526],[826,3,3,1526,1529],[827,1,1,1529,1530],[828,1,1,1530,1531],[829,3,3,1531,1534],[830,3,3,1534,1537],[834,5,5,1537,1542],[835,1,1,1542,1543],[836,1,1,1543,1544],[837,7,6,1544,1550],[838,2,2,1550,1552],[839,1,1,1552,1553],[840,5,5,1553,1558],[841,9,9,1558,1567],[842,16,11,1567,1578],[843,1,1,1578,1579],[844,10,8,1579,1587],[845,14,10,1587,1597],[846,8,7,1597,1604],[847,2,1,1604,1605],[848,4,1,1605,1606],[849,1,1,1606,1607]]],[26,3,1,1607,1608,[[850,3,1,1607,1608]]],[27,15,13,1608,1621,[[862,4,3,1608,1611],[866,4,3,1611,1614],[867,1,1,1614,1615],[869,1,1,1615,1616],[870,3,3,1616,1619],[872,2,2,1619,1621]]],[28,6,6,1621,1627,[[876,4,4,1621,1625],[877,1,1,1625,1626],[878,1,1,1626,1627]]],[29,27,22,1627,1649,[[879,1,1,1627,1628],[880,1,1,1628,1629],[881,5,2,1629,1631],[883,7,7,1631,1638],[884,7,5,1638,1643],[885,4,4,1643,1647],[887,2,2,1647,1649]]],[30,5,2,1649,1651,[[888,5,2,1649,1651]]],[32,17,15,1651,1666,[[893,3,3,1651,1654],[894,4,3,1654,1657],[895,4,3,1657,1660],[896,2,2,1660,1662],[898,3,3,1662,1665],[899,1,1,1665,1666]]],[33,1,1,1666,1667,[[900,1,1,1666,1667]]],[34,3,3,1667,1670,[[904,2,2,1667,1669],[905,1,1,1669,1670]]],[35,5,3,1670,1673,[[906,3,2,1670,1672],[907,2,1,1672,1673]]],[36,11,8,1673,1681,[[909,8,5,1673,1678],[910,3,3,1678,1681]]],[37,31,26,1681,1707,[[911,1,1,1681,1682],[913,1,1,1682,1683],[914,1,1,1683,1684],[915,4,2,1684,1686],[916,1,1,1686,1687],[917,1,1,1687,1688],[918,5,4,1688,1692],[919,1,1,1692,1693],[920,3,2,1693,1695],[921,1,1,1695,1696],[922,7,6,1696,1702],[923,2,2,1702,1704],[924,3,3,1704,1707]]],[38,2,1,1707,1708,[[927,2,1,1707,1708]]]],[151,160,299,313,315,350,362,363,409,410,420,424,443,459,460,461,467,468,508,513,593,598,614,618,619,622,623,629,631,742,775,790,794,795,808,860,887,903,910,914,977,999,1006,1009,1010,1013,1046,1130,1151,1153,1154,1157,1158,1160,1163,1165,1169,1170,1171,1172,1175,1177,1179,1186,1205,1235,1246,1271,1285,1306,1307,1308,1309,1314,1316,1325,1328,1332,1338,1360,1366,1369,1374,1376,1413,1417,1432,1434,1444,1510,1513,1514,1528,1533,1553,1555,1601,1669,1708,1713,1719,1721,1723,1731,1734,1761,1762,1783,1819,1820,1823,1829,1831,1835,1838,1839,1843,1845,1846,1862,1870,1881,1978,2029,2053,2068,2120,2121,2163,2206,2222,2264,2268,2319,2386,2522,2600,2606,2618,2631,2638,2683,2745,2983,3145,3146,3147,3148,3149,3150,3152,3153,3154,3155,3156,3157,3158,3159,3160,3162,3163,3164,3166,3203,3207,3212,3213,3216,3218,3238,3243,3245,3260,3380,3382,3387,3498,3499,3500,3501,3502,3584,3585,3606,3608,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3648,3649,3660,3690,3692,3707,3712,3716,3722,3727,3745,3765,3772,3777,3781,3783,3785,3789,3852,4066,4226,4246,4247,4250,4252,4258,4264,4268,4270,4288,4340,4393,4459,4485,4486,4491,4651,4658,4664,4736,4830,5059,5074,5093,5095,5097,5098,5108,5119,5137,5149,5151,5214,5227,5228,5247,5277,5282,5316,5335,5339,5407,5432,5433,5434,5435,5459,5460,5472,5478,5491,5518,5526,5527,5528,5530,5535,5556,5557,5561,5577,5579,5641,5870,5872,5881,5884,5887,5888,5966,5971,5973,5974,5990,5994,6049,6060,6292,6298,6378,6426,6440,6491,6493,6531,6532,6544,6616,6662,6669,6681,6746,6748,6754,6755,6758,6759,6770,6772,6773,6774,6781,6800,6820,6831,6836,6860,6863,6870,6924,6928,6970,6974,6975,6976,6978,6979,6980,6984,6985,6988,6992,6995,6996,7006,7007,7008,7011,7012,7015,7018,7019,7024,7026,7027,7039,7042,7045,7046,7047,7050,7051,7053,7059,7062,7135,7136,7156,7201,7202,7219,7231,7233,7236,7251,7267,7268,7270,7271,7272,7273,7275,7276,7288,7289,7290,7291,7321,7324,7338,7341,7353,7354,7355,7369,7409,7411,7443,7444,7594,7643,7678,7686,7715,7717,7745,7746,7787,7788,7798,7801,7802,7803,7809,7828,7860,7861,7862,7867,7878,7889,7896,7897,7933,7966,8018,8019,8034,8052,8053,8056,8059,8060,8082,8087,8089,8091,8100,8110,8125,8126,8127,8131,8140,8141,8143,8160,8161,8162,8167,8168,8169,8172,8176,8177,8178,8181,8182,8185,8186,8187,8191,8193,8196,8198,8199,8205,8206,8207,8209,8228,8229,8230,8231,8232,8236,8239,8261,8263,8267,8268,8269,8270,8272,8286,8294,8296,8297,8301,8303,8306,8324,8325,8337,8364,8365,8380,8387,8405,8406,8424,8428,8429,8431,8434,8447,8467,8469,8472,8516,8522,8528,8529,8531,8539,8541,8552,8557,8581,8584,8658,8709,8770,8794,8797,8801,8803,8804,8806,8817,8818,8833,8834,8850,8851,8881,8883,8887,8889,8892,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8908,8910,8911,8912,8913,8914,8915,8917,8918,8923,8925,8926,8933,8934,8935,8936,8942,8943,8946,8959,8965,8973,8974,8979,8982,8984,8985,8991,8995,8996,8998,9001,9002,9003,9004,9005,9012,9014,9016,9018,9023,9027,9028,9029,9033,9048,9049,9052,9054,9058,9059,9061,9066,9075,9076,9083,9084,9091,9096,9100,9126,9128,9136,9146,9167,9170,9171,9172,9174,9175,9177,9178,9182,9186,9191,9192,9199,9202,9203,9216,9218,9222,9226,9228,9230,9231,9232,9235,9244,9245,9246,9264,9267,9276,9278,9286,9290,9292,9294,9295,9301,9315,9332,9334,9340,9344,9359,9373,9414,9439,9451,9453,9455,9473,9480,9497,9507,9519,9605,9635,9638,9656,9665,9671,9704,9706,9716,9718,9728,9729,9730,9732,9745,9754,9762,9763,9764,9765,9783,9796,9798,9803,9804,9814,9816,9818,9819,9820,9823,9832,9833,9834,9835,9836,9839,9840,9842,9844,9845,9847,9848,9849,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9866,9868,9870,9877,9906,9910,9930,9950,9960,9971,9977,9981,9987,10004,10012,10015,10039,10042,10061,10062,10063,10075,10091,10098,10099,10103,10106,10111,10113,10115,10123,10124,10126,10132,10137,10142,10148,10149,10150,10151,10153,10154,10167,10171,10172,10176,10177,10184,10189,10192,10215,10231,10235,10238,10249,10361,10406,10423,10441,10443,10452,10464,10485,10486,10502,10537,10539,10542,10544,10558,10575,10624,10626,10628,10634,10638,10641,10642,10665,10669,10748,10749,10750,10767,10773,10774,10775,10792,10816,10863,10864,10867,10868,10869,10873,10875,10877,10879,10880,10886,10887,10888,10890,10951,10965,10966,10969,10970,10971,10972,10974,10975,10978,10983,10987,10994,11007,11011,11015,11019,11021,11034,11045,11052,11083,11089,11090,11092,11097,11099,11104,11145,11146,11147,11149,11153,11154,11155,11156,11163,11164,11166,11167,11168,11171,11172,11180,11212,11214,11215,11216,11217,11220,11223,11230,11232,11233,11234,11235,11236,11237,11239,11240,11241,11242,11244,11250,11257,11262,11265,11268,11269,11275,11281,11282,11284,11287,11289,11290,11291,11292,11300,11302,11304,11306,11311,11314,11315,11316,11320,11325,11326,11327,11329,11331,11335,11336,11340,11344,11345,11347,11357,11362,11367,11368,11375,11380,11384,11411,11414,11415,11418,11446,11447,11448,11508,11511,11519,11537,11558,11568,11577,11587,11592,11596,11615,11630,11631,11637,11641,11647,11648,11651,11652,11653,11654,11656,11659,11661,11662,11663,11665,11666,11668,11670,11671,11673,11674,11675,11676,11681,11682,11684,11685,11689,11690,11691,11693,11695,11698,11704,11709,11723,11728,11751,11753,11758,11771,11785,11788,11794,11796,11806,11807,11808,11809,11811,11816,11822,11826,11828,11842,11864,11865,11867,11870,11871,11875,11896,11912,11913,11915,11923,11928,11932,11941,11942,11943,11944,11947,11948,11950,11963,11968,11969,11970,11971,11974,11978,11986,11987,12000,12003,12007,12010,12011,12012,12016,12018,12019,12020,12021,12023,12063,12086,12095,12105,12106,12108,12109,12113,12173,12200,12218,12226,12230,12231,12234,12237,12246,12253,12258,12261,12268,12302,12310,12315,12337,12343,12347,12348,12350,12351,12352,12355,12356,12358,12373,12375,12385,12393,12395,12411,12423,12424,12459,12481,12509,12536,12581,12582,12583,12584,12585,12586,12587,12588,12599,12600,12604,12610,12653,12661,12664,12675,12678,12679,12680,12682,12685,12710,12711,12724,12727,12732,12733,12735,12737,12738,12740,12775,12776,12780,12789,12797,12805,12815,12816,12818,12819,12824,12838,12873,12879,12882,12887,12888,12919,12949,13018,13043,13044,13046,13231,13273,13312,13345,13354,13364,13376,13383,13407,13452,13499,13580,13813,13840,13933,13980,14241,14281,14289,14333,14446,14559,14607,14659,14664,14677,14718,14746,14864,14886,14906,14912,14944,15262,15263,15269,15424,15431,15493,15515,15520,15588,15627,15806,15822,15823,15840,15842,15867,15872,15895,15952,16090,16094,16098,16122,16129,16154,16173,16177,16194,16195,16413,16451,16488,16525,16527,16571,16581,16583,16586,16594,16595,16602,16604,16639,16652,16717,16726,16773,16783,16813,16832,16834,16874,16886,16939,16993,16996,17082,17106,17130,17137,17179,17196,17277,17299,17305,17311,17337,17340,17395,17398,17431,17433,17511,17526,17528,17554,17558,17575,17642,17647,17687,17688,17690,17691,17713,17714,17721,17727,17746,17747,17748,17773,17780,17784,17795,17799,17821,17824,17870,17882,17922,17927,17929,17930,17945,17946,18060,18062,18067,18070,18073,18074,18075,18076,18078,18105,18215,18252,18272,18333,18352,18353,18354,18366,18383,18390,18391,18410,18412,18414,18416,18418,18487,18502,18546,18589,18615,18758,18760,18787,18793,18828,18873,18896,18918,18923,18942,18969,18979,18991,19020,19022,19065,19069,19073,19078,19085,19101,19121,19129,19130,19133,19149,19201,19202,19236,19241,19243,19255,19256,19263,19277,19341,19344,19379,19383,19386,19387,19390,19406,19420,19421,19423,19424,19428,19451,19452,19455,19458,19459,19460,19467,19468,19492,19495,19518,19574,19578,19579,19581,19582,19584,19590,19612,19614,19617,19619,19621,19623,19624,19640,19661,19663,19718,19722,19724,19733,19746,19760,19765,19779,19786,19789,19792,19814,19816,19825,19826,19827,19828,19830,19832,19841,19845,19847,19848,19850,19852,19854,19864,19878,19889,19890,19891,19892,19894,19902,19903,19906,19909,19912,19917,19921,19931,19937,19962,20006,20009,20010,20093,20263,20287,20289,20293,20296,20307,20330,20339,20444,20491,20497,20498,20500,20503,20506,20507,20509,20511,20519,20526,20528,20529,20532,20533,20534,20535,20550,20574,20592,20601,20605,20610,20614,20615,20616,20618,20620,20621,20625,20628,20629,20631,20636,20637,20651,20652,20656,20658,20660,20670,20682,20683,20686,20689,20690,20704,20705,20707,20713,20717,20735,20736,20737,20738,20742,20803,20827,20837,20855,20864,20874,20878,20879,20880,20900,20908,20922,20925,20926,20934,20935,20939,20994,21046,21054,21059,21077,21086,21091,21095,21112,21135,21181,21182,21183,21189,21199,21204,21287,21290,21291,21300,21310,21343,21359,21369,21376,21380,21381,21391,21396,21408,21413,21431,21460,21470,21471,21473,21477,21481,21482,21484,21485,21486,21520,21522,21524,21525,21531,21532,21533,21534,21535,21536,21539,21540,21543,21545,21552,21567,21576,21577,21578,21579,21582,21583,21584,21593,21603,21604,21605,21606,21610,21611,21613,21616,21621,21629,21634,21635,21636,21638,21647,21649,21650,21679,21680,21723,21739,22098,22100,22101,22153,22164,22166,22177,22195,22212,22216,22223,22251,22252,22300,22304,22305,22307,22320,22361,22368,22387,22408,22410,22424,22426,22427,22429,22434,22442,22448,22451,22459,22460,22461,22464,22473,22474,22477,22480,22503,22504,22527,22528,22584,22589,22593,22597,22602,22604,22609,22617,22620,22621,22622,22652,22658,22664,22670,22698,22757,22758,22781,22796,22800,22812,22842,22844,22848,22849,22854,22858,22862,22864,22894,22919,22931,22940,22947,22957,22965,22985,22989,22991,22995,23007,23019,23022,23041,23049,23052,23053,23055,23057,23058,23060,23065,23070,23088,23089,23130]]],["+",[147,142,[[0,16,14,0,14,[[5,1,1,0,1],[11,1,1,1,2],[19,1,1,2,3],[23,2,2,3,5],[33,1,1,5,6],[38,6,4,6,10],[39,2,2,10,12],[43,2,2,12,14]]],[1,12,12,14,26,[[51,1,1,14,15],[57,2,2,15,17],[61,2,2,17,19],[62,2,2,19,21],[69,1,1,21,22],[71,1,1,22,23],[74,1,1,23,24],[75,1,1,24,25],[86,1,1,25,26]]],[2,10,10,26,36,[[103,3,3,26,29],[105,3,3,29,32],[106,3,3,32,35],[111,1,1,35,36]]],[3,1,1,36,37,[[134,1,1,36,37]]],[4,9,9,37,46,[[157,1,1,37,38],[158,1,1,38,39],[159,1,1,39,40],[160,1,1,40,41],[165,2,2,41,43],[176,3,3,43,46]]],[5,2,2,46,48,[[195,1,1,46,47],[210,1,1,47,48]]],[6,8,8,48,56,[[216,1,1,48,49],[219,2,2,49,51],[221,1,1,51,52],[226,1,1,52,53],[228,1,1,53,54],[229,1,1,54,55],[230,1,1,55,56]]],[8,2,2,56,58,[[236,1,1,56,57],[259,1,1,57,58]]],[9,11,11,58,69,[[269,2,2,58,60],[272,3,3,60,63],[275,1,1,63,64],[277,1,1,64,65],[278,2,2,65,67],[281,1,1,67,68],[286,1,1,68,69]]],[10,10,9,69,78,[[296,4,3,69,72],[297,3,3,72,75],[299,1,1,75,76],[304,1,1,76,77],[312,1,1,77,78]]],[11,7,7,78,85,[[318,1,1,78,79],[323,2,2,79,81],[329,1,1,81,82],[332,1,1,82,83],[335,1,1,83,84],[337,1,1,84,85]]],[12,1,1,85,86,[[350,1,1,85,86]]],[13,9,8,86,94,[[384,1,1,86,87],[389,3,2,87,89],[391,1,1,89,90],[392,1,1,90,91],[399,1,1,91,92],[401,2,2,92,94]]],[14,2,2,94,96,[[405,2,2,94,96]]],[15,4,4,96,100,[[415,2,2,96,98],[417,1,1,98,99],[424,1,1,99,100]]],[16,2,2,100,102,[[427,2,2,100,102]]],[18,2,2,102,104,[[527,1,1,102,103],[595,1,1,103,104]]],[19,3,3,104,107,[[644,2,2,104,106],[652,1,1,106,107]]],[20,1,1,107,108,[[662,1,1,107,108]]],[22,5,5,108,113,[[681,1,1,108,109],[686,1,1,109,110],[701,1,1,110,111],[716,1,1,111,112],[720,1,1,112,113]]],[23,14,13,113,126,[[746,1,1,113,114],[761,1,1,114,115],[762,1,1,115,116],[770,1,1,116,117],[778,1,1,117,118],[780,1,1,118,119],[781,5,4,119,123],[782,1,1,123,124],[796,2,2,124,126]]],[25,6,6,126,132,[[808,1,1,126,127],[815,2,2,127,129],[828,1,1,129,130],[844,2,2,130,132]]],[27,1,1,132,133,[[870,1,1,132,133]]],[28,4,4,133,137,[[876,3,3,133,136],[878,1,1,136,137]]],[32,2,2,137,139,[[894,1,1,137,138],[898,1,1,138,139]]],[33,1,1,139,140,[[900,1,1,139,140]]],[34,1,1,140,141,[[905,1,1,140,141]]],[38,1,1,141,142,[[927,1,1,141,142]]]],[151,299,508,598,631,1006,1169,1170,1171,1172,1175,1177,1328,1332,1555,1719,1721,1831,1845,1870,1881,2053,2120,2206,2268,2606,3152,3156,3159,3203,3213,3216,3238,3243,3245,3387,4264,5059,5098,5119,5151,5277,5282,5526,5527,5528,6049,6493,6662,6758,6774,6836,6974,7015,7046,7059,7219,7860,8091,8110,8160,8161,8169,8232,8267,8296,8297,8424,8557,8911,8912,8915,8942,8943,8965,9061,9226,9507,9704,9844,9848,9987,10099,10171,10249,10767,11568,11670,11676,11728,11753,11923,11971,11978,12108,12109,12351,12352,12395,12653,12733,12737,14677,15895,16874,16886,17130,17395,17727,17824,18078,18391,18487,18979,19379,19406,19582,19814,19864,19878,19889,19890,19892,19903,20287,20307,20592,20735,20738,21135,21578,21582,22223,22300,22304,22307,22361,22604,22652,22698,22781,23130]]],["House",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16939]]],["Houses",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19746]]],["contain",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9373]]],["court",[1,1,[[29,1,1,0,1,[[885,1,1,0,1]]]],[22477]]],["daughter",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17882]]],["door",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9235]]],["families",[2,2,[[13,1,1,0,1,[[401,1,1,0,1]]],[18,1,1,1,2,[[545,1,1,1,2]]]],[11971,14906]]],["family",[1,1,[[12,1,1,0,1,[[350,1,1,0,1]]]],[10774]]],["hangings",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10172]]],["home",[25,25,[[0,3,3,0,3,[[38,1,1,0,1],[42,2,2,1,3]]],[1,1,1,3,4,[[58,1,1,3,4]]],[2,1,1,4,5,[[107,1,1,4,5]]],[4,1,1,5,6,[[176,1,1,5,6]]],[5,1,1,6,7,[[188,1,1,6,7]]],[8,4,4,7,11,[[241,2,2,7,9],[245,1,1,9,10],[259,1,1,10,11]]],[9,1,1,11,12,[[279,1,1,11,12]]],[10,3,3,12,15,[[295,1,1,12,13],[303,2,2,13,15]]],[11,1,1,15,16,[[326,1,1,15,16]]],[13,1,1,16,17,[[391,1,1,16,17]]],[16,1,1,17,18,[[430,1,1,17,18]]],[18,1,1,18,19,[[545,1,1,18,19]]],[19,2,2,19,21,[[634,2,2,19,21]]],[20,1,1,21,22,[[670,1,1,21,22]]],[23,1,1,22,23,[[783,1,1,22,23]]],[24,1,1,23,24,[[797,1,1,23,24]]],[36,1,1,24,25,[[909,1,1,24,25]]]],[1165,1306,1316,1761,3260,5530,5887,7338,7341,7444,7861,8324,8892,9191,9199,9906,11723,12789,14912,16594,16595,17528,19937,20330,22849]]],["house",[1662,1404,[[0,80,71,0,71,[[6,1,1,0,1],[11,2,2,1,3],[13,1,1,3,4],[14,2,2,4,6],[16,6,4,6,10],[18,5,5,10,15],[19,1,1,15,16],[23,7,7,16,23],[26,1,1,23,24],[27,4,4,24,28],[28,1,1,28,29],[29,1,1,29,30],[30,3,3,30,33],[32,1,1,33,34],[33,3,3,34,37],[35,1,1,37,38],[37,2,1,38,39],[38,10,7,39,46],[39,3,3,46,49],[40,3,3,49,52],[41,1,1,52,53],[42,7,6,53,59],[43,2,2,59,61],[44,3,3,61,64],[45,3,2,64,66],[46,1,1,66,67],[49,5,4,67,71]]],[1,19,16,71,87,[[52,1,1,71,72],[56,1,1,72,73],[57,3,2,73,75],[61,7,5,75,80],[65,1,1,80,81],[68,1,1,81,82],[69,1,1,82,83],[71,1,1,83,84],[72,1,1,84,85],[83,1,1,85,86],[89,1,1,86,87]]],[2,38,29,87,116,[[99,1,1,87,88],[103,28,19,88,107],[105,2,2,107,109],[111,2,2,109,111],[114,3,3,111,114],[116,2,2,114,116]]],[3,52,50,116,166,[[117,17,17,116,133],[118,3,3,133,136],[119,5,5,136,141],[120,7,7,141,148],[123,1,1,148,149],[128,1,1,149,150],[133,4,3,150,153],[134,3,3,153,156],[136,1,1,156,157],[138,1,1,157,158],[140,1,1,158,159],[141,2,2,159,161],[142,1,1,161,162],[146,3,3,162,165],[150,2,1,165,166]]],[4,27,24,166,190,[[157,1,1,166,167],[158,2,2,167,169],[159,1,1,169,170],[163,2,2,170,172],[167,1,1,172,173],[172,5,4,173,177],[173,2,2,177,179],[174,5,3,179,182],[175,1,1,182,183],[176,1,1,183,184],[177,3,3,184,187],[178,2,2,187,189],[180,1,1,189,190]]],[5,17,15,190,205,[[188,6,5,190,195],[192,3,3,195,198],[195,1,1,198,199],[203,1,1,199,200],[204,1,1,200,201],[206,1,1,201,202],[207,1,1,202,203],[208,2,1,203,204],[210,1,1,204,205]]],[6,58,53,205,258,[[211,3,3,205,208],[214,1,1,208,209],[216,1,1,209,210],[218,3,3,210,213],[219,8,8,213,221],[220,1,1,221,222],[221,3,3,222,225],[222,1,1,225,226],[224,2,2,226,228],[226,6,6,228,234],[227,4,4,234,238],[228,10,9,238,247],[229,14,10,247,257],[230,1,1,257,258]]],[7,7,5,258,263,[[232,2,2,258,260],[233,1,1,260,261],[235,4,2,261,263]]],[8,53,49,263,312,[[236,3,3,263,266],[237,12,9,266,275],[238,5,4,275,279],[240,2,2,279,281],[242,4,4,281,285],[244,2,2,285,287],[245,1,1,287,288],[250,1,1,288,289],[252,1,1,289,290],[253,2,2,290,292],[254,2,2,292,294],[255,2,2,294,296],[256,1,1,296,297],[257,6,6,297,303],[258,1,1,303,304],[260,5,5,304,309],[263,1,1,309,310],[266,2,2,310,312]]],[9,93,81,312,393,[[267,1,1,312,313],[268,4,4,313,317],[269,9,5,317,322],[270,4,4,322,326],[271,2,2,326,328],[272,7,7,328,335],[273,15,14,335,349],[275,6,6,349,355],[277,10,8,355,363],[278,6,4,363,367],[279,3,3,367,370],[280,5,4,370,374],[281,1,1,374,375],[282,4,4,375,379],[283,3,3,379,382],[285,7,6,382,388],[286,2,1,388,389],[287,2,2,389,391],[289,1,1,391,392],[290,1,1,392,393]]],[10,171,132,393,525,[[291,1,1,393,394],[292,6,6,394,400],[293,7,4,400,404],[295,5,4,404,408],[296,34,23,408,431],[297,17,10,431,441],[298,21,20,441,461],[299,12,8,461,469],[300,6,5,469,474],[301,4,4,474,478],[302,10,9,478,487],[303,5,5,487,492],[304,10,8,492,500],[305,5,4,500,504],[306,12,7,504,511],[307,3,3,511,514],[308,2,2,514,516],[310,3,3,516,519],[311,6,4,519,523],[312,2,2,523,525]]],[11,127,92,525,617,[[316,4,3,525,528],[317,5,3,528,531],[318,1,1,531,532],[319,1,1,532,533],[320,6,4,533,537],[321,7,5,537,542],[322,11,10,542,552],[323,12,10,552,562],[324,21,14,562,576],[325,1,1,576,577],[326,2,1,577,578],[327,4,3,578,581],[328,6,3,581,584],[329,1,1,584,585],[330,2,1,585,586],[331,4,4,586,590],[332,8,5,590,595],[333,7,6,595,601],[334,9,6,601,607],[335,7,6,607,613],[336,2,1,613,614],[337,6,3,614,617]]],[12,103,86,617,703,[[339,1,1,617,618],[341,3,2,618,620],[342,4,3,620,623],[343,3,3,623,626],[344,6,6,626,632],[346,9,7,632,639],[347,2,2,639,641],[349,3,3,641,644],[350,3,2,644,646],[351,1,1,646,647],[352,1,1,647,648],[353,2,1,648,649],[354,14,13,649,662],[358,1,1,662,663],[359,10,10,663,673],[360,7,5,673,678],[361,4,3,678,681],[362,2,1,681,682],[363,7,7,682,689],[365,13,9,689,698],[366,7,5,698,703]]],[13,197,159,703,862,[[368,10,7,703,710],[369,12,11,710,721],[370,5,4,721,725],[371,6,4,725,729],[372,16,15,729,744],[373,15,10,744,754],[374,6,3,754,757],[375,5,5,757,762],[376,2,2,762,764],[377,2,2,764,766],[378,4,3,766,769],[381,1,1,769,770],[382,3,2,770,772],[383,1,1,772,773],[384,1,1,773,774],[385,2,2,774,776],[386,4,3,776,779],[387,5,4,779,783],[388,7,7,783,790],[389,13,11,790,801],[390,15,11,801,812],[391,1,1,812,813],[392,3,2,813,815],[393,1,1,815,816],[394,6,3,816,819],[395,11,10,819,829],[396,2,2,829,831],[397,7,6,831,837],[398,1,1,837,838],[399,7,6,838,844],[400,11,7,844,851],[401,4,4,851,855],[402,8,7,855,862]]],[14,28,25,862,887,[[403,6,5,862,867],[404,4,3,867,870],[405,4,3,870,873],[406,1,1,873,874],[408,1,1,874,875],[409,1,1,875,876],[410,6,6,876,882],[411,1,1,882,883],[412,4,4,883,887]]],[15,40,34,887,921,[[413,1,1,887,888],[414,2,1,888,889],[415,9,7,889,896],[416,1,1,896,897],[418,2,1,897,898],[419,3,3,898,901],[420,1,1,901,902],[422,10,8,902,910],[423,4,4,910,914],[424,2,2,914,916],[425,5,5,916,921]]],[16,24,21,921,942,[[426,3,3,921,924],[427,7,7,924,931],[429,2,2,931,933],[430,4,1,933,934],[431,2,2,934,936],[432,2,2,936,938],[433,3,3,938,941],[434,1,1,941,942]]],[17,17,17,942,959,[[436,4,4,942,946],[442,1,1,946,947],[443,1,1,947,948],[452,1,1,948,949],[454,1,1,949,950],[455,2,2,950,952],[456,2,2,952,954],[462,1,1,954,955],[465,1,1,955,956],[473,1,1,956,957],[474,1,1,957,958],[477,1,1,958,959]]],[18,45,42,959,1001,[[482,1,1,959,960],[500,1,1,960,961],[503,1,1,961,962],[504,1,1,962,963],[508,1,1,963,964],[513,1,1,964,965],[519,1,1,965,966],[522,1,1,966,967],[526,1,1,967,968],[529,1,1,968,969],[532,1,1,969,970],[542,1,1,970,971],[543,1,1,971,972],[546,1,1,972,973],[561,3,3,973,976],[569,1,1,976,977],[570,1,1,977,978],[575,1,1,978,979],[578,2,2,979,981],[581,1,1,981,982],[582,1,1,982,983],[589,1,1,983,984],[590,1,1,984,985],[591,1,1,985,986],[592,3,2,986,988],[593,1,1,988,989],[595,1,1,989,990],[596,1,1,990,991],[599,3,3,991,994],[604,1,1,994,995],[605,1,1,995,996],[609,1,1,996,997],[611,1,1,997,998],[612,5,3,998,1001]]],[19,24,24,1001,1025,[[629,1,1,1001,1002],[630,1,1,1002,1003],[632,2,2,1003,1005],[633,1,1,1005,1006],[634,4,4,1006,1010],[636,2,2,1010,1012],[638,1,1,1012,1013],[639,1,1,1013,1014],[641,2,2,1014,1016],[642,3,3,1016,1019],[648,2,2,1019,1021],[651,2,2,1021,1023],[652,1,1,1023,1024],[654,1,1,1024,1025]]],[20,8,6,1025,1031,[[660,1,1,1025,1026],[663,1,1,1026,1027],[665,4,2,1027,1029],[668,1,1,1029,1030],[670,1,1,1030,1031]]],[21,5,5,1031,1036,[[671,1,1,1031,1032],[672,1,1,1032,1033],[673,1,1,1033,1034],[678,2,2,1034,1036]]],[22,56,49,1036,1085,[[680,4,4,1036,1040],[681,2,2,1040,1042],[683,3,2,1042,1044],[684,1,1,1044,1045],[685,3,3,1045,1048],[688,1,1,1048,1049],[692,4,4,1049,1053],[700,7,7,1053,1060],[702,1,1,1060,1061],[707,1,1,1061,1062],[709,1,1,1062,1063],[714,1,1,1063,1064],[715,4,4,1064,1068],[716,2,2,1068,1070],[717,6,3,1070,1073],[722,1,1,1073,1074],[724,2,1,1074,1075],[726,1,1,1075,1076],[734,4,2,1076,1078],[736,2,2,1078,1080],[738,1,1,1080,1081],[741,1,1,1081,1082],[742,1,1,1082,1083],[744,2,2,1083,1085]]],[23,113,95,1085,1180,[[746,3,2,1085,1087],[747,3,2,1087,1089],[749,4,3,1089,1092],[751,5,5,1092,1097],[753,1,1,1097,1098],[754,1,1,1098,1099],[755,5,3,1099,1102],[756,3,3,1102,1105],[757,2,1,1105,1106],[760,2,2,1106,1108],[761,1,1,1108,1109],[762,4,3,1109,1112],[763,1,1,1112,1113],[764,3,3,1113,1116],[765,2,2,1116,1118],[766,6,6,1118,1124],[767,3,3,1124,1127],[770,9,7,1127,1134],[771,5,3,1134,1137],[772,4,4,1137,1141],[773,1,1,1141,1142],[775,5,3,1142,1145],[776,2,2,1145,1147],[777,4,3,1147,1150],[778,1,1,1150,1151],[779,7,6,1151,1157],[780,7,6,1157,1163],[781,3,3,1163,1166],[782,6,6,1166,1172],[783,1,1,1172,1173],[785,1,1,1173,1174],[787,1,1,1174,1175],[792,1,1,1175,1176],[795,1,1,1176,1177],[796,5,3,1177,1180]]],[24,1,1,1180,1181,[[798,1,1,1180,1181]]],[25,158,139,1181,1320,[[803,3,3,1181,1184],[804,10,9,1184,1193],[805,4,4,1193,1197],[806,1,1,1197,1198],[807,1,1,1198,1199],[809,8,8,1199,1207],[810,4,4,1207,1211],[811,5,4,1211,1215],[812,3,3,1215,1218],[813,10,8,1218,1226],[814,2,2,1226,1228],[815,3,3,1228,1231],[818,2,2,1231,1233],[819,7,6,1233,1239],[821,8,8,1239,1247],[823,1,1,1247,1248],[824,1,1,1248,1249],[825,2,2,1249,1251],[826,3,3,1251,1254],[829,2,2,1254,1256],[830,3,3,1256,1259],[834,4,4,1259,1263],[835,1,1,1263,1264],[836,1,1,1264,1265],[837,7,6,1265,1271],[838,2,2,1271,1273],[839,1,1,1273,1274],[840,5,5,1274,1279],[841,5,5,1279,1284],[842,14,10,1284,1294],[843,1,1,1294,1295],[844,8,7,1295,1302],[845,13,9,1302,1311],[846,7,6,1311,1317],[847,1,1,1317,1318],[848,4,1,1318,1319],[849,1,1,1319,1320]]],[26,3,1,1320,1321,[[850,3,1,1320,1321]]],[27,13,11,1321,1332,[[862,4,3,1321,1324],[866,4,3,1324,1327],[867,1,1,1327,1328],[869,1,1,1328,1329],[870,2,2,1329,1331],[872,1,1,1331,1332]]],[28,1,1,1332,1333,[[876,1,1,1332,1333]]],[29,23,20,1333,1353,[[879,1,1,1333,1334],[880,1,1,1334,1335],[881,3,2,1335,1337],[883,6,6,1337,1343],[884,7,5,1343,1348],[885,3,3,1348,1351],[887,2,2,1351,1353]]],[30,5,2,1353,1355,[[888,5,2,1353,1355]]],[32,13,12,1355,1367,[[893,2,2,1355,1357],[894,2,2,1357,1359],[895,4,3,1359,1362],[896,2,2,1362,1364],[898,2,2,1364,1366],[899,1,1,1366,1367]]],[34,2,2,1367,1369,[[904,2,2,1367,1369]]],[35,1,1,1369,1370,[[907,1,1,1369,1370]]],[36,9,8,1370,1378,[[909,6,5,1370,1375],[910,3,3,1375,1378]]],[37,30,25,1378,1403,[[911,1,1,1378,1379],[913,1,1,1379,1380],[914,1,1,1380,1381],[915,4,2,1381,1383],[916,1,1,1383,1384],[917,1,1,1384,1385],[918,5,4,1385,1389],[919,1,1,1389,1390],[920,3,2,1390,1392],[921,1,1,1392,1393],[922,7,6,1393,1399],[923,2,2,1399,1401],[924,2,2,1401,1403]]],[38,1,1,1403,1404,[[927,1,1,1403,1404]]]],[160,313,315,350,362,363,409,410,420,424,459,460,461,467,468,513,593,614,618,619,622,623,629,742,775,790,794,795,808,860,887,903,914,977,999,1009,1010,1046,1130,1151,1153,1154,1157,1158,1160,1163,1175,1179,1186,1205,1235,1246,1271,1306,1307,1308,1309,1314,1316,1325,1338,1360,1366,1374,1413,1417,1434,1510,1513,1514,1528,1601,1708,1713,1734,1819,1820,1838,1846,1862,1978,2029,2068,2121,2163,2522,2745,2983,3145,3146,3147,3148,3149,3150,3152,3153,3154,3155,3156,3157,3158,3159,3160,3162,3163,3164,3166,3207,3212,3380,3382,3498,3499,3502,3584,3585,3606,3608,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3648,3649,3660,3690,3692,3707,3712,3716,3722,3727,3745,3772,3777,3781,3783,3785,3789,3852,4066,4246,4247,4252,4258,4268,4270,4340,4393,4459,4485,4486,4491,4651,4658,4664,4830,5074,5093,5095,5137,5227,5228,5335,5432,5433,5434,5435,5459,5460,5472,5478,5491,5518,5535,5556,5557,5561,5577,5579,5641,5870,5872,5881,5884,5888,5966,5971,5973,6060,6292,6298,6378,6426,6440,6491,6531,6532,6544,6616,6669,6746,6748,6754,6755,6759,6770,6772,6773,6774,6781,6800,6820,6831,6860,6863,6870,6924,6928,6970,6975,6976,6978,6979,6980,6984,6985,6988,6992,6995,6996,7006,7008,7011,7012,7015,7019,7024,7026,7027,7039,7042,7045,7046,7047,7050,7051,7053,7062,7135,7136,7156,7201,7202,7231,7233,7236,7251,7267,7268,7270,7271,7272,7273,7275,7276,7288,7289,7290,7291,7321,7324,7353,7354,7355,7369,7409,7411,7443,7594,7643,7678,7686,7715,7717,7745,7746,7787,7788,7798,7801,7802,7803,7809,7828,7862,7867,7889,7896,7897,7966,8018,8019,8034,8053,8056,8059,8060,8082,8087,8089,8100,8110,8125,8126,8127,8131,8140,8143,8162,8167,8168,8169,8172,8176,8178,8181,8182,8185,8186,8187,8191,8193,8196,8198,8199,8205,8206,8207,8209,8228,8229,8230,8231,8236,8239,8261,8263,8267,8268,8269,8270,8272,8286,8294,8301,8303,8306,8324,8325,8337,8364,8365,8380,8387,8405,8429,8431,8434,8447,8467,8469,8472,8516,8522,8528,8531,8539,8541,8557,8581,8584,8658,8709,8770,8794,8797,8801,8803,8804,8806,8817,8818,8833,8834,8881,8883,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8908,8910,8911,8912,8913,8914,8917,8918,8923,8925,8926,8933,8934,8935,8936,8942,8946,8973,8974,8979,8982,8984,8985,8991,8995,8996,8998,9001,9002,9003,9004,9005,9012,9014,9016,9018,9023,9027,9028,9029,9033,9048,9049,9052,9054,9058,9059,9061,9066,9075,9076,9083,9084,9091,9096,9100,9126,9128,9136,9146,9167,9170,9171,9172,9174,9175,9177,9178,9182,9186,9192,9202,9203,9218,9222,9228,9230,9231,9232,9244,9245,9246,9264,9267,9276,9278,9286,9290,9292,9294,9295,9301,9315,9332,9334,9340,9344,9359,9414,9439,9451,9453,9455,9473,9480,9497,9519,9605,9635,9638,9656,9665,9671,9706,9718,9730,9732,9745,9754,9762,9763,9764,9765,9783,9796,9798,9803,9804,9814,9816,9818,9819,9820,9823,9832,9833,9834,9835,9836,9844,9845,9847,9848,9849,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9866,9868,9870,9877,9910,9930,9950,9960,9971,9977,9981,10004,10039,10062,10075,10091,10098,10103,10106,10111,10113,10115,10123,10124,10126,10132,10137,10142,10148,10149,10150,10151,10153,10154,10167,10172,10176,10177,10189,10192,10215,10231,10235,10238,10361,10406,10423,10441,10443,10452,10485,10486,10502,10537,10539,10542,10544,10558,10575,10624,10626,10628,10634,10638,10641,10642,10665,10669,10748,10749,10750,10773,10774,10775,10816,10863,10864,10867,10868,10869,10873,10875,10877,10879,10880,10886,10887,10888,10890,10951,10965,10966,10969,10970,10971,10972,10974,10975,10978,10983,10987,10994,11007,11011,11015,11019,11034,11045,11052,11083,11089,11090,11092,11097,11099,11104,11145,11146,11147,11149,11153,11155,11156,11163,11164,11166,11167,11171,11172,11180,11212,11214,11215,11216,11217,11220,11223,11230,11232,11233,11234,11235,11236,11237,11239,11240,11241,11244,11257,11262,11265,11268,11269,11275,11281,11282,11284,11287,11289,11290,11291,11292,11300,11302,11304,11306,11311,11314,11315,11316,11320,11325,11326,11327,11329,11331,11335,11336,11340,11344,11345,11347,11357,11362,11367,11368,11375,11380,11384,11411,11414,11415,11418,11446,11447,11448,11508,11511,11519,11537,11558,11577,11587,11592,11596,11615,11630,11631,11637,11641,11647,11648,11651,11652,11653,11654,11656,11659,11661,11662,11663,11665,11668,11671,11673,11674,11675,11676,11681,11682,11684,11685,11689,11690,11691,11693,11695,11698,11704,11728,11751,11753,11758,11771,11785,11788,11794,11796,11806,11807,11808,11809,11811,11816,11822,11826,11828,11842,11864,11865,11867,11870,11871,11875,11896,11912,11913,11915,11923,11928,11932,11941,11942,11943,11947,11948,11950,11963,11968,11969,11974,11987,12000,12003,12007,12010,12011,12012,12016,12018,12019,12020,12021,12023,12063,12086,12095,12105,12106,12109,12113,12173,12200,12218,12226,12230,12231,12234,12237,12246,12253,12258,12261,12268,12302,12315,12337,12343,12347,12348,12350,12355,12356,12375,12411,12423,12459,12481,12509,12581,12582,12583,12584,12585,12586,12587,12588,12599,12600,12604,12610,12661,12664,12675,12678,12680,12682,12685,12710,12711,12724,12727,12732,12733,12735,12737,12738,12740,12775,12776,12780,12797,12805,12815,12816,12818,12819,12824,12838,12879,12882,12887,12888,13018,13044,13273,13312,13345,13354,13376,13383,13499,13580,13813,13840,13933,13980,14241,14281,14289,14333,14446,14559,14607,14664,14718,14746,14864,14886,14944,15262,15263,15269,15424,15431,15493,15515,15520,15588,15627,15806,15822,15823,15840,15842,15867,15872,15952,16090,16094,16098,16122,16129,16154,16173,16177,16194,16195,16451,16488,16525,16527,16571,16581,16583,16586,16602,16639,16652,16717,16726,16773,16783,16813,16832,16834,16993,16996,17082,17106,17137,17179,17340,17398,17431,17433,17511,17526,17554,17558,17575,17642,17647,17687,17688,17690,17691,17713,17714,17746,17747,17773,17784,17795,17799,17870,17929,17930,17945,17946,18060,18067,18070,18073,18074,18075,18076,18105,18215,18252,18333,18353,18366,18383,18390,18410,18412,18414,18416,18418,18546,18589,18615,18758,18760,18787,18793,18828,18873,18896,18923,18942,18969,18991,19020,19022,19069,19073,19078,19121,19129,19130,19133,19149,19201,19202,19236,19241,19243,19255,19256,19263,19277,19341,19344,19383,19386,19387,19390,19421,19423,19424,19428,19451,19452,19455,19458,19459,19460,19467,19468,19492,19495,19518,19574,19578,19579,19581,19582,19584,19590,19612,19614,19617,19619,19621,19623,19624,19661,19718,19722,19724,19733,19765,19786,19789,19792,19816,19825,19826,19827,19828,19830,19841,19845,19847,19848,19850,19852,19854,19889,19891,19894,19902,19906,19909,19912,19917,19921,19931,19962,20006,20093,20263,20289,20293,20296,20339,20497,20498,20500,20503,20506,20507,20509,20511,20519,20526,20528,20529,20532,20533,20534,20535,20550,20574,20605,20610,20614,20615,20616,20618,20620,20621,20625,20628,20629,20631,20636,20637,20651,20652,20656,20660,20670,20682,20683,20686,20689,20690,20704,20705,20707,20713,20717,20736,20737,20742,20827,20837,20855,20864,20874,20878,20879,20880,20900,20908,20922,20925,20926,20934,20935,20939,20994,21046,21059,21077,21086,21091,21095,21181,21182,21189,21199,21204,21287,21290,21291,21300,21343,21359,21369,21376,21380,21381,21391,21396,21408,21413,21431,21460,21470,21471,21473,21477,21481,21482,21522,21524,21525,21531,21532,21533,21534,21536,21539,21540,21543,21545,21552,21567,21576,21577,21579,21582,21583,21584,21593,21603,21604,21605,21606,21610,21611,21613,21621,21629,21635,21636,21638,21647,21649,21650,21679,21680,21723,21739,22098,22100,22101,22153,22164,22166,22177,22195,22212,22216,22252,22305,22368,22387,22408,22410,22424,22426,22427,22429,22442,22448,22451,22459,22460,22461,22464,22473,22474,22480,22503,22504,22527,22528,22584,22589,22597,22602,22609,22617,22620,22621,22622,22658,22664,22670,22757,22758,22812,22842,22844,22848,22849,22854,22858,22862,22864,22894,22919,22931,22940,22947,22957,22965,22985,22989,22991,22995,23007,23019,23022,23041,23049,23052,23053,23055,23057,23058,23060,23065,23088,23089,23130]]],["household",[47,46,[[0,5,5,0,5,[[17,1,1,0,1],[30,1,1,1,2],[34,1,1,2,3],[44,1,1,3,4],[46,1,1,4,5]]],[1,2,2,5,7,[[50,1,1,5,6],[61,1,1,6,7]]],[2,1,1,7,8,[[105,1,1,7,8]]],[4,3,3,8,11,[[158,1,1,8,9],[166,1,1,9,10],[167,1,1,10,11]]],[5,4,4,11,15,[[188,1,1,11,12],[192,1,1,12,13],[193,2,2,13,15]]],[6,2,2,15,17,[[216,1,1,15,16],[228,1,1,16,17]]],[8,2,2,17,19,[[260,1,1,17,18],[262,1,1,18,19]]],[9,8,8,19,27,[[268,1,1,19,20],[272,2,2,20,22],[281,1,1,22,23],[282,1,1,23,24],[283,1,1,24,25],[285,2,2,25,27]]],[10,5,5,27,32,[[294,2,2,27,29],[295,2,2,29,31],[301,1,1,31,32]]],[11,6,6,32,38,[[319,1,1,32,33],[320,2,2,33,35],[330,2,2,35,37],[331,1,1,37,38]]],[12,1,1,38,39,[[361,1,1,38,39]]],[15,1,1,39,40,[[425,1,1,39,40]]],[19,5,4,40,44,[[654,1,1,40,41],[658,4,3,41,44]]],[22,2,2,44,46,[[714,1,1,44,45],[715,1,1,45,46]]]],[443,910,1013,1369,1432,1533,1820,3218,5108,5316,5339,5887,5974,5990,5994,6681,7018,7878,7933,8052,8168,8177,8405,8428,8472,8529,8552,8850,8851,8887,8889,9128,9716,9728,9729,10042,10061,10063,11021,12679,17196,17299,17305,17311,18352,18354]]],["households",[7,7,[[0,3,3,0,3,[[41,1,1,0,1],[44,1,1,1,2],[46,1,1,2,3]]],[3,1,1,3,4,[[134,1,1,3,4]]],[4,2,2,4,6,[[163,1,1,4,5],[164,1,1,5,6]]],[5,1,1,6,7,[[193,1,1,6,7]]]],[1285,1376,1444,4288,5214,5247,5990]]],["houses",[108,97,[[0,1,1,0,1,[[41,1,1,0,1]]],[1,16,12,1,13,[[50,1,1,1,2],[55,1,1,2,3],[57,4,3,3,6],[58,1,1,6,7],[59,3,1,7,8],[61,6,5,8,13]]],[2,3,3,13,16,[[114,3,3,13,16]]],[3,4,4,16,20,[[120,1,1,16,17],[132,1,1,17,18],[133,1,1,18,19],[148,1,1,19,20]]],[4,3,3,20,23,[[158,1,1,20,21],[160,1,1,21,22],[171,1,1,22,23]]],[6,2,2,23,25,[[228,2,2,23,25]]],[10,2,2,25,27,[[303,1,1,25,26],[310,1,1,26,27]]],[11,5,5,27,32,[[329,2,2,27,29],[335,2,2,29,31],[337,1,1,31,32]]],[12,3,3,32,35,[[352,1,1,32,33],[365,1,1,33,34],[366,1,1,34,35]]],[13,3,3,35,38,[[391,1,1,35,36],[400,1,1,36,37],[401,1,1,37,38]]],[15,6,6,38,44,[[416,1,1,38,39],[417,2,2,39,41],[419,1,1,41,42],[421,1,1,42,43],[422,1,1,43,44]]],[17,6,6,44,50,[[436,1,1,44,45],[438,1,1,45,46],[439,1,1,46,47],[456,1,1,47,48],[457,1,1,48,49],[459,1,1,49,50]]],[18,1,1,50,51,[[526,1,1,50,51]]],[19,2,2,51,53,[[628,1,1,51,52],[657,1,1,52,53]]],[20,1,1,53,54,[[660,1,1,53,54]]],[22,11,10,54,64,[[681,1,1,54,55],[683,1,1,55,56],[684,1,1,56,57],[686,1,1,57,58],[691,2,2,58,60],[700,2,1,60,61],[710,1,1,61,62],[720,1,1,62,63],[743,1,1,63,64]]],[23,17,13,64,77,[[749,2,2,64,66],[750,1,1,66,67],[763,3,1,67,68],[773,2,2,68,70],[776,1,1,70,71],[777,2,1,71,72],[779,1,1,72,73],[783,1,1,73,74],[787,2,2,74,76],[796,2,1,76,77]]],[24,1,1,77,78,[[801,1,1,77,78]]],[25,8,8,78,86,[[808,1,1,78,79],[812,1,1,79,80],[817,1,1,80,81],[824,1,1,81,82],[827,1,1,82,83],[829,1,1,83,84],[834,1,1,84,85],[846,1,1,85,86]]],[27,1,1,86,87,[[872,1,1,86,87]]],[28,1,1,87,88,[[877,1,1,87,88]]],[29,3,2,88,90,[[881,2,1,88,89],[883,1,1,89,90]]],[32,2,2,90,92,[[893,1,1,90,91],[894,1,1,91,92]]],[35,4,3,92,95,[[906,3,2,92,94],[907,1,1,94,95]]],[36,1,1,95,96,[[909,1,1,95,96]]],[37,1,1,96,97,[[924,1,1,96,97]]]],[1271,1553,1669,1723,1731,1734,1762,1783,1823,1829,1835,1839,1843,3500,3501,3502,3765,4226,4250,4736,5097,5149,5407,7007,7015,9216,9414,10012,10015,10172,10184,10231,10792,11154,11168,11709,11944,11970,12373,12385,12393,12424,12536,12583,12873,12919,12949,13364,13407,13452,14659,16413,17277,17337,17721,17748,17780,17821,17922,17927,18062,18272,18502,18918,19065,19085,19101,19420,19640,19663,19760,19779,19832,19931,20009,20010,20289,20444,20601,20658,20803,21054,21112,21183,21310,21634,22251,22320,22410,22434,22593,22597,22796,22800,22812,22844,23070]]],["inward",[7,7,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[9,1,1,2,3,[[271,1,1,2,3]]],[10,1,1,3,4,[[297,1,1,3,4]]],[13,2,2,4,6,[[369,1,1,4,5],[370,1,1,5,6]]],[25,1,1,6,7,[[841,1,1,6,7]]]],[2319,2683,8141,8959,11242,11250,21486]]],["palace",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11375]]],["place",[7,7,[[9,1,1,0,1,[[281,1,1,0,1]]],[12,1,1,1,2,[[365,1,1,1,2]]],[15,2,2,2,4,[[414,1,1,2,3],[415,1,1,3,4]]],[16,1,1,4,5,[[432,1,1,4,5]]],[17,1,1,5,6,[[443,1,1,5,6]]],[25,1,1,6,7,[[842,1,1,6,7]]]],[8406,11154,12310,12358,12815,13046,21535]]],["places",[9,9,[[1,7,7,0,7,[[74,1,1,0,1],[75,1,1,1,2],[79,1,1,2,3],[85,1,1,3,4],[86,2,2,4,6],[87,1,1,6,7]]],[19,1,1,7,8,[[635,1,1,7,8]]],[25,1,1,8,9,[[847,1,1,8,9]]]],[2222,2264,2386,2600,2618,2631,2638,16604,21679]]],["temple",[11,7,[[11,5,3,0,3,[[323,5,3,0,3]]],[12,2,2,3,5,[[343,1,1,3,4],[347,1,1,4,5]]],[13,4,2,5,7,[[389,3,1,5,6],[401,1,1,6,7]]]],[9839,9840,9842,10464,10669,11666,11986]]],["web",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13043]]],["which",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13231]]],["within",[7,7,[[0,1,1,0,1,[[38,1,1,0,1]]],[25,6,6,1,7,[[802,1,1,1,2],[841,3,3,2,5],[842,1,1,5,6],[845,1,1,6,7]]]],[1160,20491,21484,21485,21520,21535,21616]]]]},{"k":"H1005","v":[["*",[44,38,[[14,35,29,0,29,[[406,1,1,0,1],[407,12,11,1,12],[408,15,11,12,23],[409,7,6,23,29]]],[26,9,9,29,38,[[851,2,2,29,31],[852,1,1,31,32],[853,2,2,32,34],[854,3,3,34,37],[855,1,1,37,38]]]],[12134,12136,12137,12142,12143,12145,12146,12147,12148,12149,12150,12151,12152,12154,12155,12156,12158,12159,12162,12163,12166,12167,12168,12189,12190,12192,12193,12196,12197,21763,21775,21836,21841,21867,21877,21884,21897,21915]]],["house",[42,36,[[14,35,29,0,29,[[406,1,1,0,1],[407,12,11,1,12],[408,15,11,12,23],[409,7,6,23,29]]],[26,7,7,29,36,[[851,1,1,29,30],[853,2,2,30,32],[854,3,3,32,35],[855,1,1,35,36]]]],[12134,12136,12137,12142,12143,12145,12146,12147,12148,12149,12150,12151,12152,12154,12155,12156,12158,12159,12162,12163,12166,12167,12168,12189,12190,12192,12193,12196,12197,21775,21841,21867,21877,21884,21897,21915]]],["houses",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21763,21836]]]]},{"k":"H1006","v":[["Bajith",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17962]]]]},{"k":"H1007","v":[["Bethaven",[7,7,[[5,2,2,0,2,[[193,1,1,0,1],[204,1,1,1,2]]],[8,2,2,2,4,[[248,1,1,2,3],[249,1,1,3,4]]],[27,3,3,4,7,[[865,1,1,4,5],[866,1,1,5,6],[871,1,1,6,7]]]],[5978,6305,7490,7531,22148,22160,22230]]]]},{"k":"H1008","v":[["*",[71,64,[[0,12,10,0,10,[[11,2,1,0,1],[12,2,1,1,2],[27,1,1,2,3],[30,1,1,3,4],[34,6,6,4,10]]],[5,10,10,10,20,[[193,1,1,10,11],[194,3,3,11,14],[198,2,2,14,16],[202,2,2,16,18],[204,2,2,18,20]]],[6,9,8,20,28,[[211,2,2,20,22],[214,1,1,22,23],[230,3,3,23,26],[231,3,2,26,28]]],[8,4,4,28,32,[[242,1,1,28,29],[245,1,1,29,30],[248,1,1,30,31],[265,1,1,31,32]]],[10,10,8,32,40,[[302,4,3,32,35],[303,6,5,35,40]]],[11,10,9,40,49,[[314,4,3,40,43],[322,1,1,43,44],[329,1,1,44,45],[335,4,4,45,49]]],[12,1,1,49,50,[[344,1,1,49,50]]],[13,1,1,50,51,[[379,1,1,50,51]]],[14,1,1,51,52,[[404,1,1,51,52]]],[15,2,2,52,54,[[419,1,1,52,53],[423,1,1,53,54]]],[23,1,1,54,55,[[792,1,1,54,55]]],[27,2,2,55,57,[[871,1,1,55,56],[873,1,1,56,57]]],[29,7,6,57,63,[[881,1,1,57,58],[882,1,1,58,59],[883,3,2,59,61],[885,2,2,61,63]]],[37,1,1,63,64,[[917,1,1,63,64]]]],[306,321,792,886,1012,1014,1017,1019,1026,1027,5978,6011,6014,6019,6139,6146,6266,6267,6306,6315,6531,6532,6604,7072,7080,7085,7104,7121,7368,7421,7487,8005,9180,9183,9184,9185,9188,9194,9195,9216,9553,9554,9574,9822,10011,10169,10180,10182,10184,10563,11472,12055,12452,12619,20093,22240,22256,22409,22414,22428,22429,22474,22477,22964]]],["+",[7,6,[[0,1,1,0,1,[[34,1,1,0,1]]],[5,1,1,1,2,[[202,1,1,1,2]]],[6,2,1,2,3,[[231,2,1,2,3]]],[10,2,2,3,5,[[302,1,1,3,4],[303,1,1,4,5]]],[23,1,1,5,6,[[792,1,1,5,6]]]],[1027,6267,7121,9183,9195,20093]]],["Bethel",[59,55,[[0,11,9,0,9,[[11,2,1,0,1],[12,2,1,1,2],[27,1,1,2,3],[30,1,1,3,4],[34,5,5,4,9]]],[5,9,9,9,18,[[193,1,1,9,10],[194,3,3,10,13],[198,2,2,13,15],[202,1,1,15,16],[204,2,2,16,18]]],[6,3,3,18,21,[[211,2,2,18,20],[214,1,1,20,21]]],[8,4,4,21,25,[[242,1,1,21,22],[245,1,1,22,23],[248,1,1,23,24],[265,1,1,24,25]]],[10,8,8,25,33,[[302,3,3,25,28],[303,5,5,28,33]]],[11,10,9,33,42,[[314,4,3,33,36],[322,1,1,36,37],[329,1,1,37,38],[335,4,4,38,42]]],[12,1,1,42,43,[[344,1,1,42,43]]],[13,1,1,43,44,[[379,1,1,43,44]]],[14,1,1,44,45,[[404,1,1,44,45]]],[15,2,2,45,47,[[419,1,1,45,46],[423,1,1,46,47]]],[27,2,2,47,49,[[871,1,1,47,48],[873,1,1,48,49]]],[29,7,6,49,55,[[881,1,1,49,50],[882,1,1,50,51],[883,3,2,51,53],[885,2,2,53,55]]]],[306,321,792,886,1012,1014,1017,1019,1026,5978,6011,6014,6019,6139,6146,6266,6306,6315,6531,6532,6604,7368,7421,7487,8005,9180,9183,9184,9185,9188,9194,9195,9216,9553,9554,9574,9822,10011,10169,10180,10182,10184,10563,11472,12055,12452,12619,22240,22256,22409,22414,22428,22429,22474,22477]]],["God",[5,5,[[6,4,4,0,4,[[230,3,3,0,3],[231,1,1,3,4]]],[37,1,1,4,5,[[917,1,1,4,5]]]],[7072,7080,7085,7104,22964]]]]},{"k":"H1009","v":[["Betharbel",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22239]]]]},{"k":"H1010","v":[["*",[2,2,[[5,1,1,0,1,[[199,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[6171,20103]]],["Bethbaalmeon",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6171]]],["Bethmeon",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20103]]]]},{"k":"H1011","v":[["Bethbirei",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10416]]]]},{"k":"H1012","v":[["Bethbarah",[2,1,[[6,2,1,0,1,[[217,2,1,0,1]]]],[6718]]]]},{"k":"H1013","v":[["Bethgader",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10357]]]]},{"k":"H1014","v":[["Bethgamul",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20103]]]]},{"k":"H1015","v":[["Bethdiblathaim",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20102]]]]},{"k":"H1016","v":[["Bethdagon",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]]],[6243,6348]]]]},{"k":"H1017","v":[["Bethelite",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9317]]]]},{"k":"H1018","v":[["Bethezel",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22590]]]]},{"k":"H1019","v":[]},{"k":"H1020","v":[["*",[4,4,[[3,1,1,0,1,[[149,1,1,0,1]]],[5,2,2,1,3,[[198,1,1,1,2],[199,1,1,2,3]]],[25,1,1,3,4,[[826,1,1,3,4]]]],[4809,6133,6174,21092]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4809]]],["Bethjeshimoth",[3,3,[[5,2,2,0,2,[[198,1,1,0,1],[199,1,1,1,2]]],[25,1,1,2,3,[[826,1,1,2,3]]]],[6133,6174,21092]]]]},{"k":"H1021","v":[["Bethhaccerem",[2,2,[[15,1,1,0,1,[[415,1,1,0,1]]],[23,1,1,1,2,[[750,1,1,1,2]]]],[12341,19090]]]]},{"k":"H1022","v":[["Bethlehemite",[4,4,[[8,3,3,0,3,[[251,2,2,0,2],[252,1,1,2,3]]],[9,1,1,3,4,[[287,1,1,3,4]]]],[7596,7613,7676,8599]]]]},{"k":"H1023","v":[]},{"k":"H1024","v":[["Bethmarcaboth",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[12,1,1,1,2,[[341,1,1,1,2]]]],[6326,10416]]]]},{"k":"H1025","v":[["Bethemek",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6348]]]]},{"k":"H1026","v":[["Betharabah",[3,3,[[5,3,3,0,3,[[201,2,2,0,2],[204,1,1,2,3]]]],[6208,6263,6315]]]]},{"k":"H1027","v":[["Betharam",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6181]]]]},{"k":"H1028","v":[["Bethharan",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4754]]]]},{"k":"H1029","v":[["Bethshittah",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6716]]]]},{"k":"H1030","v":[["Bethshemite",[2,2,[[8,2,2,0,2,[[241,2,2,0,2]]]],[7345,7349]]]]},{"k":"H1031","v":[["*",[3,3,[[5,3,3,0,3,[[201,1,1,0,1],[204,2,2,1,3]]]],[6208,6312,6314]]],["Bethhogla",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6208]]],["Bethhoglah",[2,2,[[5,2,2,0,2,[[204,2,2,0,2]]]],[6312,6314]]]]},{"k":"H1032","v":[["Bethhoron",[14,13,[[5,7,7,0,7,[[196,2,2,0,2],[202,2,2,2,4],[204,2,2,4,6],[207,1,1,6,7]]],[8,1,1,7,8,[[248,1,1,7,8]]],[10,1,1,8,9,[[299,1,1,8,9]]],[12,2,2,9,11,[[343,1,1,9,10],[344,1,1,10,11]]],[13,3,2,11,13,[[374,2,1,11,12],[391,1,1,12,13]]]],[6074,6075,6268,6270,6306,6307,6403,7503,9068,10522,10559,11351,11717]]]]},{"k":"H1033","v":[["Bethcar",[1,1,[[8,1,1,0,1,[[242,1,1,0,1]]]],[7363]]]]},{"k":"H1034","v":[["Bethlebaoth",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6327]]]]},{"k":"H1035","v":[["*",[41,39,[[0,2,2,0,2,[[34,1,1,0,1],[47,1,1,1,2]]],[5,1,1,2,3,[[205,1,1,2,3]]],[6,9,8,3,11,[[222,2,2,3,5],[227,3,3,5,8],[229,4,3,8,11]]],[7,7,6,11,17,[[232,5,4,11,15],[233,1,1,15,16],[235,1,1,16,17]]],[8,5,5,17,22,[[251,1,1,17,18],[252,2,2,18,20],[255,2,2,20,22]]],[9,5,5,22,27,[[268,1,1,22,23],[289,4,4,23,27]]],[12,7,7,27,34,[[339,2,2,27,29],[341,1,1,29,30],[348,4,4,30,34]]],[13,1,1,34,35,[[377,1,1,34,35]]],[14,1,1,35,36,[[404,1,1,35,36]]],[15,1,1,36,37,[[419,1,1,36,37]]],[23,1,1,37,38,[[785,1,1,37,38]]],[32,1,1,38,39,[[897,1,1,38,39]]]],[1030,1458,6336,6877,6879,6987,6988,6989,7025,7026,7042,7128,7129,7146,7149,7153,7201,7599,7630,7633,7736,7758,8081,8667,8668,8669,8677,10357,10360,10389,10689,10690,10691,10699,11420,12048,12446,19974,22635]]],["+",[13,12,[[6,8,7,0,7,[[222,1,1,0,1],[227,3,3,1,4],[229,4,3,4,7]]],[7,3,3,7,10,[[232,2,2,7,9],[233,1,1,9,10]]],[8,1,1,10,11,[[252,1,1,10,11]]],[12,1,1,11,12,[[348,1,1,11,12]]]],[6877,6987,6988,6989,7025,7026,7042,7128,7129,7153,7630,10699]]],["Bethlehem",[28,27,[[0,2,2,0,2,[[34,1,1,0,1],[47,1,1,1,2]]],[5,1,1,2,3,[[205,1,1,2,3]]],[6,1,1,3,4,[[222,1,1,3,4]]],[7,4,3,4,7,[[232,3,2,4,6],[235,1,1,6,7]]],[8,4,4,7,11,[[251,1,1,7,8],[252,1,1,8,9],[255,2,2,9,11]]],[9,5,5,11,16,[[268,1,1,11,12],[289,4,4,12,16]]],[12,6,6,16,22,[[339,2,2,16,18],[341,1,1,18,19],[348,3,3,19,22]]],[13,1,1,22,23,[[377,1,1,22,23]]],[14,1,1,23,24,[[404,1,1,23,24]]],[15,1,1,24,25,[[419,1,1,24,25]]],[23,1,1,25,26,[[785,1,1,25,26]]],[32,1,1,26,27,[[897,1,1,26,27]]]],[1030,1458,6336,6879,7146,7149,7201,7599,7633,7736,7758,8081,8667,8668,8669,8677,10357,10360,10389,10689,10690,10691,11420,12048,12446,19974,22635]]]]},{"k":"H1036","v":[["Aphrah",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22589]]]]},{"k":"H1037","v":[["Millo",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6760]]]]},{"k":"H1038","v":[["Bethmaachah",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8568]]]]},{"k":"H1039","v":[["Bethnimrah",[2,2,[[3,1,1,0,1,[[148,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]]],[4754,6181]]]]},{"k":"H1040","v":[["+",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22369]]]]},{"k":"H1041","v":[["Bethazmaveth",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12448]]]]},{"k":"H1042","v":[["Bethanoth",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6261]]]]},{"k":"H1043","v":[["Bethanath",[3,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[6,2,1,1,2,[[211,2,1,1,2]]]],[6359,6542]]]]},{"k":"H1044","v":[["house",[2,2,[[11,2,2,0,2,[[322,2,2,0,2]]]],[9805,9807]]]]},{"k":"H1045","v":[]},{"k":"H1046","v":[["*",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[6229,12614]]],["Bethpalet",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6229]]],["Bethphelet",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12614]]]]},{"k":"H1047","v":[["Bethpeor",[4,4,[[4,3,3,0,3,[[155,1,1,0,1],[156,1,1,1,2],[186,1,1,2,3]]],[5,1,1,3,4,[[199,1,1,3,4]]]],[5004,5050,5845,6174]]]]},{"k":"H1048","v":[["Bethpazzez",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6342]]]]},{"k":"H1049","v":[["Bethzur",[4,4,[[5,1,1,0,1,[[201,1,1,0,1]]],[12,1,1,1,2,[[339,1,1,1,2]]],[13,1,1,2,3,[[377,1,1,2,3]]],[15,1,1,3,4,[[415,1,1,3,4]]]],[6260,10351,11421,12343]]]]},{"k":"H1050","v":[["Bethrehob",[2,2,[[6,1,1,0,1,[[228,1,1,0,1]]],[9,1,1,1,2,[[276,1,1,1,2]]]],[7021,8246]]]]},{"k":"H1051","v":[["Bethrapha",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10397]]]]},{"k":"H1052","v":[["*",[9,8,[[5,2,2,0,2,[[203,2,2,0,2]]],[6,1,1,2,3,[[211,1,1,2,3]]],[8,2,2,3,5,[[266,2,2,3,5]]],[9,1,1,5,6,[[287,1,1,5,6]]],[10,2,1,6,7,[[294,2,1,6,7]]],[12,1,1,7,8,[[344,1,1,7,8]]]],[6286,6291,6536,8019,8021,8592,8856,10564]]],["+",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8856]]],["Bethshan",[3,3,[[8,2,2,0,2,[[266,2,2,0,2]]],[9,1,1,2,3,[[287,1,1,2,3]]]],[8019,8021,8592]]],["Bethshean",[5,5,[[5,2,2,0,2,[[203,2,2,0,2]]],[6,1,1,2,3,[[211,1,1,2,3]]],[10,1,1,3,4,[[294,1,1,3,4]]],[12,1,1,4,5,[[344,1,1,4,5]]]],[6286,6291,6536,8856,10564]]]]},{"k":"H1053","v":[["Bethshemesh",[21,19,[[5,4,4,0,4,[[201,1,1,0,1],[205,2,2,1,3],[207,1,1,3,4]]],[6,2,1,4,5,[[211,2,1,4,5]]],[8,7,6,5,11,[[241,7,6,5,11]]],[10,1,1,11,12,[[294,1,1,11,12]]],[11,2,2,12,14,[[326,2,2,12,14]]],[12,1,1,14,15,[[343,1,1,14,15]]],[13,3,3,15,18,[[391,2,2,15,17],[394,1,1,17,18]]],[23,1,1,18,19,[[787,1,1,18,19]]]],[6212,6343,6359,6397,6542,7340,7343,7344,7346,7350,7351,8853,9907,9909,10513,11725,11727,11782,20010]]]]},{"k":"H1054","v":[["Bethtappuah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6255]]]]},{"k":"H1055","v":[["*",[3,3,[[16,3,3,0,3,[[426,1,1,0,1],[432,2,2,1,3]]]],[12707,12814,12815]]],["+",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12815]]],["palace",[2,2,[[16,2,2,0,2,[[426,1,1,0,1],[432,1,1,1,2]]]],[12707,12814]]]]},{"k":"H1056","v":[["Baca",[1,1,[[18,1,1,0,1,[[561,1,1,0,1]]]],[15265]]]]},{"k":"H1057","v":[["trees",[4,4,[[9,2,2,0,2,[[271,2,2,0,2]]],[12,2,2,2,4,[[351,2,2,2,4]]]],[8155,8156,10788,10789]]]]},{"k":"H1058","v":[["*",[114,100,[[0,16,14,0,14,[[20,1,1,0,1],[22,1,1,1,2],[26,1,1,2,3],[28,1,1,3,4],[32,1,1,4,5],[36,1,1,5,6],[41,1,1,6,7],[42,2,1,7,8],[44,3,2,8,10],[45,1,1,10,11],[49,3,3,11,14]]],[1,1,1,14,15,[[51,1,1,14,15]]],[2,1,1,15,16,[[99,1,1,15,16]]],[3,8,8,16,24,[[127,5,5,16,21],[130,1,1,21,22],[136,1,1,22,23],[141,1,1,23,24]]],[4,3,3,24,27,[[153,1,1,24,25],[173,1,1,25,26],[186,1,1,26,27]]],[6,8,8,27,35,[[212,1,1,27,28],[221,2,2,28,30],[224,2,2,30,32],[230,2,2,32,34],[231,1,1,34,35]]],[7,2,2,35,37,[[232,2,2,35,37]]],[8,10,8,37,45,[[236,4,3,37,40],[246,2,2,40,42],[255,1,1,42,43],[259,1,1,43,44],[265,2,1,44,45]]],[9,15,12,45,57,[[267,2,2,45,47],[269,4,3,47,50],[278,2,2,50,52],[279,2,1,52,53],[281,3,2,53,55],[284,1,1,55,56],[285,1,1,56,57]]],[11,5,5,57,62,[[320,2,2,57,59],[325,1,1,59,60],[332,1,1,60,61],[334,1,1,61,62]]],[13,1,1,62,63,[[400,1,1,62,63]]],[14,3,2,63,65,[[405,1,1,63,64],[412,2,1,64,65]]],[15,3,2,65,67,[[413,1,1,65,66],[420,2,1,66,67]]],[16,1,1,67,68,[[433,1,1,67,68]]],[17,5,5,68,73,[[437,1,1,68,69],[462,1,1,69,70],[465,2,2,70,72],[466,1,1,72,73]]],[18,4,4,73,77,[[546,1,1,73,74],[555,1,1,74,75],[603,1,1,75,76],[614,1,1,76,77]]],[20,1,1,77,78,[[661,1,1,77,78]]],[22,5,4,78,82,[[694,1,1,78,79],[708,2,1,79,80],[711,1,1,80,81],[716,1,1,81,82]]],[23,9,7,82,89,[[753,1,1,82,83],[757,1,1,83,84],[766,3,1,84,85],[775,1,1,85,86],[785,1,1,86,87],[792,1,1,87,88],[794,1,1,88,89]]],[24,3,2,89,91,[[797,3,2,89,91]]],[25,4,4,91,95,[[809,1,1,91,92],[825,2,2,92,94],[828,1,1,94,95]]],[27,1,1,95,96,[[873,1,1,95,96]]],[28,2,2,96,98,[[876,1,1,96,97],[877,1,1,97,98]]],[32,2,1,98,99,[[893,2,1,98,99]]],[37,1,1,99,100,[[917,1,1,99,100]]]],[529,573,765,806,964,1118,1276,1320,1372,1373,1415,1507,1509,1523,1560,2983,4028,4034,4037,4042,4044,4109,4340,4477,4937,5460,5847,6549,6866,6867,6925,6926,7077,7080,7104,7136,7141,7219,7220,7222,7449,7450,7771,7855,7982,8034,8046,8097,8113,8115,8307,8308,8353,8412,8419,8511,8512,9738,9739,9885,10101,10164,11960,12109,12253,12300,12502,12820,12903,13496,13582,13588,13626,14945,15177,16121,16223,17363,17978,18236,18286,18393,19176,19283,19464,19706,19963,20112,20170,20312,20326,20618,21072,21079,21152,22256,22296,22328,22589,22965]]],["+",[14,9,[[2,1,1,0,1,[[99,1,1,0,1]]],[4,1,1,1,2,[[173,1,1,1,2]]],[6,2,2,2,4,[[221,2,2,2,4]]],[8,2,1,4,5,[[236,2,1,4,5]]],[22,2,1,5,6,[[708,2,1,5,6]]],[23,2,1,6,7,[[766,2,1,6,7]]],[24,2,1,7,8,[[797,2,1,7,8]]],[32,2,1,8,9,[[893,2,1,8,9]]]],[2983,5460,6866,6867,7222,18236,19464,20312,22589]]],["Weep",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19464]]],["bewail",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17978]]],["complain",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13626]]],["lamentation",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15177]]],["mourned",[2,2,[[0,1,1,0,1,[[49,1,1,0,1]]],[3,1,1,1,2,[[136,1,1,1,2]]]],[1509,4340]]],["tears",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12820]]],["weep",[25,25,[[0,2,2,0,2,[[22,1,1,0,1],[42,1,1,1,2]]],[3,2,2,2,4,[[127,2,2,2,4]]],[8,2,2,4,6,[[246,1,1,4,5],[265,1,1,5,6]]],[9,2,2,6,8,[[267,1,1,6,7],[278,1,1,7,8]]],[13,1,1,8,9,[[400,1,1,8,9]]],[15,1,1,9,10,[[420,1,1,9,10]]],[17,3,3,10,13,[[462,1,1,10,11],[465,2,2,11,13]]],[20,1,1,13,14,[[661,1,1,13,14]]],[22,1,1,14,15,[[711,1,1,14,15]]],[23,3,3,15,18,[[753,1,1,15,16],[757,1,1,16,17],[792,1,1,17,18]]],[24,1,1,18,19,[[797,1,1,18,19]]],[25,3,3,19,22,[[825,2,2,19,21],[828,1,1,21,22]]],[28,2,2,22,24,[[876,1,1,22,23],[877,1,1,23,24]]],[37,1,1,24,25,[[917,1,1,24,25]]]],[573,1320,4034,4037,7450,7982,8046,8307,11960,12502,13496,13582,13588,17363,18286,19176,19283,20112,20326,21072,21079,21152,22296,22328,22965]]],["weepest",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7220]]],["weepeth",[3,3,[[9,1,1,0,1,[[285,1,1,0,1]]],[11,1,1,1,2,[[320,1,1,1,2]]],[18,1,1,2,3,[[603,1,1,2,3]]]],[8512,9739,16121]]],["weeping",[8,8,[[3,1,1,0,1,[[141,1,1,0,1]]],[9,2,2,1,3,[[269,1,1,1,2],[281,1,1,2,3]]],[14,1,1,3,4,[[412,1,1,3,4]]],[23,3,3,4,7,[[775,1,1,4,5],[785,1,1,5,6],[794,1,1,6,7]]],[25,1,1,7,8,[[809,1,1,7,8]]]],[4477,8097,8419,12253,19706,19963,20170,20618]]],["wept",[56,53,[[0,13,12,0,12,[[20,1,1,0,1],[26,1,1,1,2],[28,1,1,2,3],[32,1,1,3,4],[36,1,1,4,5],[41,1,1,5,6],[42,1,1,6,7],[44,3,2,7,9],[45,1,1,9,10],[49,2,2,10,12]]],[1,1,1,12,13,[[51,1,1,12,13]]],[3,4,4,13,17,[[127,3,3,13,16],[130,1,1,16,17]]],[4,2,2,17,19,[[153,1,1,17,18],[186,1,1,18,19]]],[6,6,6,19,25,[[212,1,1,19,20],[224,2,2,20,22],[230,2,2,22,24],[231,1,1,24,25]]],[7,2,2,25,27,[[232,2,2,25,27]]],[8,5,5,27,32,[[236,1,1,27,28],[246,1,1,28,29],[255,1,1,29,30],[259,1,1,30,31],[265,1,1,31,32]]],[9,10,8,32,40,[[267,1,1,32,33],[269,3,2,33,35],[278,1,1,35,36],[279,2,1,36,37],[281,2,2,37,39],[284,1,1,39,40]]],[11,4,4,40,44,[[320,1,1,40,41],[325,1,1,41,42],[332,1,1,42,43],[334,1,1,43,44]]],[14,2,2,44,46,[[405,1,1,44,45],[412,1,1,45,46]]],[15,2,2,46,48,[[413,1,1,46,47],[420,1,1,47,48]]],[17,1,1,48,49,[[437,1,1,48,49]]],[18,2,2,49,51,[[546,1,1,49,50],[614,1,1,50,51]]],[22,1,1,51,52,[[716,1,1,51,52]]],[27,1,1,52,53,[[873,1,1,52,53]]]],[529,765,806,964,1118,1276,1320,1372,1373,1415,1507,1523,1560,4028,4042,4044,4109,4937,5847,6549,6925,6926,7077,7080,7104,7136,7141,7219,7449,7771,7855,7982,8034,8113,8115,8308,8353,8412,8419,8511,9738,9885,10101,10164,12109,12253,12300,12502,12903,14945,16223,18393,22256]]]]},{"k":"H1059","v":[["+",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12253]]]]},{"k":"H1060","v":[["*",[117,96,[[0,15,15,0,15,[[9,1,1,0,1],[21,1,1,1,2],[24,1,1,2,3],[26,2,2,3,5],[34,1,1,5,6],[35,1,1,6,7],[37,2,2,7,9],[40,1,1,9,10],[42,1,1,10,11],[45,1,1,11,12],[47,2,2,12,14],[48,1,1,14,15]]],[1,20,11,15,26,[[53,2,2,15,17],[55,1,1,17,18],[60,4,1,18,19],[61,5,2,19,21],[62,6,3,21,24],[71,1,1,24,25],[83,1,1,25,26]]],[2,1,1,26,27,[[116,1,1,26,27]]],[3,25,18,27,45,[[117,1,1,27,28],[119,13,10,28,38],[124,4,3,38,41],[134,5,2,41,43],[142,1,1,43,44],[149,1,1,44,45]]],[4,8,6,45,51,[[167,3,1,45,46],[173,3,3,46,49],[177,1,1,49,50],[185,1,1,50,51]]],[5,3,2,51,53,[[192,1,1,51,52],[203,2,1,52,53]]],[6,1,1,53,54,[[218,1,1,53,54]]],[8,2,2,54,56,[[243,1,1,54,55],[252,1,1,55,56]]],[9,1,1,56,57,[[269,1,1,56,57]]],[10,1,1,57,58,[[306,1,1,57,58]]],[11,1,1,58,59,[[315,1,1,58,59]]],[12,25,23,59,82,[[338,2,2,59,61],[339,7,6,61,67],[340,2,2,67,69],[341,1,1,69,70],[342,3,2,70,72],[343,1,1,72,73],[345,3,3,73,76],[346,3,3,76,79],[363,3,3,79,82]]],[13,1,1,82,83,[[387,1,1,82,83]]],[15,1,1,83,84,[[422,1,1,83,84]]],[17,3,3,84,87,[[436,2,2,84,86],[453,1,1,86,87]]],[18,5,5,87,92,[[555,1,1,87,88],[566,1,1,88,89],[582,1,1,89,90],[612,1,1,90,91],[613,1,1,91,92]]],[22,1,1,92,93,[[692,1,1,92,93]]],[23,1,1,93,94,[[775,1,1,93,94]]],[32,1,1,94,95,[[898,1,1,94,95]]],[37,1,1,95,96,[[922,1,1,95,96]]]],[249,568,671,746,759,1034,1055,1125,1126,1246,1323,1394,1465,1469,1476,1623,1624,1669,1811,1828,1845,1869,1880,1882,2142,2516,3596,3624,3694,3704,3705,3732,3733,3734,3735,3737,3738,3742,3955,3956,3957,4272,4274,4494,4764,5338,5462,5463,5464,5553,5827,5975,6276,6739,7371,7631,8083,9317,9603,10265,10281,10309,10319,10331,10333,10348,10356,10362,10376,10389,10429,10431,10482,10576,10605,10614,10620,10646,10651,11079,11081,11087,11627,12585,12882,12887,13289,15164,15353,15642,16183,16206,17958,19700,22655,23055]]],["+",[6,6,[[1,3,3,0,3,[[60,1,1,0,1],[61,1,1,1,2],[62,1,1,2,3]]],[3,2,2,3,5,[[119,1,1,3,4],[149,1,1,4,5]]],[12,1,1,5,6,[[339,1,1,5,6]]]],[1811,1845,1882,3738,4764,10319]]],["eldest",[3,3,[[11,1,1,0,1,[[315,1,1,0,1]]],[17,2,2,1,3,[[436,2,2,1,3]]]],[9603,12882,12887]]],["firstborn",[96,84,[[0,15,15,0,15,[[9,1,1,0,1],[21,1,1,1,2],[24,1,1,2,3],[26,2,2,3,5],[34,1,1,5,6],[35,1,1,6,7],[37,2,2,7,9],[40,1,1,9,10],[42,1,1,10,11],[45,1,1,11,12],[47,2,2,12,14],[48,1,1,14,15]]],[1,17,11,15,26,[[53,2,2,15,17],[55,1,1,17,18],[60,3,1,18,19],[61,4,2,19,21],[62,5,3,21,24],[71,1,1,24,25],[83,1,1,25,26]]],[3,16,13,26,39,[[119,11,9,26,35],[124,4,3,35,38],[134,1,1,38,39]]],[4,4,4,39,43,[[173,3,3,39,42],[177,1,1,42,43]]],[5,3,2,43,45,[[192,1,1,43,44],[203,2,1,44,45]]],[6,1,1,45,46,[[218,1,1,45,46]]],[8,2,2,46,48,[[243,1,1,46,47],[252,1,1,47,48]]],[9,1,1,48,49,[[269,1,1,48,49]]],[10,1,1,49,50,[[306,1,1,49,50]]],[12,24,22,50,72,[[338,2,2,50,52],[339,6,5,52,57],[340,2,2,57,59],[341,1,1,59,60],[342,3,2,60,62],[343,1,1,62,63],[345,3,3,63,66],[346,3,3,66,69],[363,3,3,69,72]]],[13,1,1,72,73,[[387,1,1,72,73]]],[15,1,1,73,74,[[422,1,1,73,74]]],[17,1,1,74,75,[[453,1,1,74,75]]],[18,5,5,75,80,[[555,1,1,75,76],[566,1,1,76,77],[582,1,1,77,78],[612,1,1,78,79],[613,1,1,79,80]]],[22,1,1,80,81,[[692,1,1,80,81]]],[23,1,1,81,82,[[775,1,1,81,82]]],[32,1,1,82,83,[[898,1,1,82,83]]],[37,1,1,83,84,[[922,1,1,83,84]]]],[249,568,671,746,759,1034,1055,1125,1126,1246,1323,1394,1465,1469,1476,1623,1624,1669,1811,1828,1845,1869,1880,1882,2142,2516,3694,3704,3705,3732,3733,3734,3735,3737,3742,3955,3956,3957,4272,5462,5463,5464,5553,5975,6276,6739,7371,7631,8083,9317,10265,10281,10309,10331,10333,10348,10356,10362,10376,10389,10429,10431,10482,10576,10605,10614,10620,10646,10651,11079,11081,11087,11627,12585,13289,15164,15353,15642,16183,16206,17958,19700,22655,23055]]],["firstling",[9,5,[[2,1,1,0,1,[[116,1,1,0,1]]],[3,4,2,1,3,[[134,4,2,1,3]]],[4,4,2,3,5,[[167,3,1,3,4],[185,1,1,4,5]]]],[3596,4272,4274,5338,5827]]],["firstlings",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3733]]],["son",[2,2,[[3,2,2,0,2,[[117,1,1,0,1],[142,1,1,1,2]]]],[3624,4494]]]]},{"k":"H1061","v":[["*",[18,16,[[1,4,4,0,4,[[72,2,2,0,2],[83,2,2,2,4]]],[2,4,3,4,7,[[91,2,1,4,5],[112,2,2,5,7]]],[3,3,3,7,10,[[129,1,1,7,8],[134,1,1,8,9],[144,1,1,9,10]]],[11,1,1,10,11,[[316,1,1,10,11]]],[15,3,2,11,13,[[422,2,1,11,12],[425,1,1,12,13]]],[22,1,1,13,14,[[706,1,1,13,14]]],[25,1,1,14,15,[[845,1,1,14,15]]],[33,1,1,15,16,[[902,1,1,15,16]]]],[2160,2163,2518,2522,2776,3419,3422,4095,4270,4603,9645,12584,12702,18168,21629,22724]]],["figs",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22724]]],["firstfruits",[14,12,[[1,4,4,0,4,[[72,2,2,0,2],[83,2,2,2,4]]],[2,4,3,4,7,[[91,2,1,4,5],[112,2,2,5,7]]],[3,1,1,7,8,[[144,1,1,7,8]]],[11,1,1,8,9,[[316,1,1,8,9]]],[15,3,2,9,11,[[422,2,1,9,10],[425,1,1,10,11]]],[25,1,1,11,12,[[845,1,1,11,12]]]],[2160,2163,2518,2522,2776,3419,3422,4603,9645,12584,12702,21629]]],["firstripe",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4095]]],["fruit",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18168]]],["ripe",[1,1,[[3,1,1,0,1,[[134,1,1,0,1]]]],[4270]]]]},{"k":"H1062","v":[["*",[15,14,[[0,7,7,0,7,[[3,1,1,0,1],[24,4,4,1,5],[26,1,1,5,6],[42,1,1,6,7]]],[4,4,4,7,11,[[164,2,2,7,9],[166,1,1,9,10],[173,1,1,10,11]]],[12,3,2,11,13,[[342,3,2,11,13]]],[15,1,1,13,14,[[422,1,1,13,14]]]],[83,689,690,691,692,763,1323,5246,5257,5313,5464,10429,10430,12585]]],["+",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[83]]],["birthright",[9,8,[[0,6,6,0,6,[[24,4,4,0,4],[26,1,1,4,5],[42,1,1,5,6]]],[12,3,2,6,8,[[342,3,2,6,8]]]],[689,690,691,692,763,1323,10429,10430]]],["firstborn",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5464]]],["firstlings",[4,4,[[4,3,3,0,3,[[164,2,2,0,2],[166,1,1,2,3]]],[15,1,1,3,4,[[422,1,1,3,4]]]],[5246,5257,5313,12585]]]]},{"k":"H1063","v":[["*",[2,2,[[27,1,1,0,1,[[870,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]]],[22218,22665]]],["firstripe",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22218]]],["fruit",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22665]]]]},{"k":"H1064","v":[["Bechorath",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7392]]]]},{"k":"H1065","v":[["*",[29,28,[[0,1,1,0,1,[[44,1,1,0,1]]],[4,1,1,1,2,[[186,1,1,1,2]]],[6,1,1,2,3,[[231,1,1,2,3]]],[11,1,1,3,4,[[332,1,1,3,4]]],[14,1,1,4,5,[[405,1,1,4,5]]],[16,1,1,5,6,[[429,1,1,5,6]]],[17,2,2,6,8,[[451,1,1,6,7],[463,1,1,7,8]]],[18,3,3,8,11,[[483,1,1,8,9],[507,1,1,9,10],[579,1,1,10,11]]],[22,8,8,11,19,[[693,3,3,11,14],[694,1,1,14,15],[700,2,2,15,17],[716,1,1,17,18],[743,1,1,18,19]]],[23,8,7,19,26,[[747,1,1,19,20],[753,1,1,20,21],[775,3,3,21,24],[792,3,2,24,26]]],[28,1,1,26,27,[[877,1,1,26,27]]],[38,1,1,27,28,[[926,1,1,27,28]]]],[1360,5847,7104,10101,12110,12765,13254,13515,13993,14324,15530,17962,17963,17965,17978,18056,18064,18393,18916,19023,19185,19700,19706,19707,20085,20112,22323,23116]]],["+",[9,8,[[0,1,1,0,1,[[44,1,1,0,1]]],[6,1,1,1,2,[[231,1,1,1,2]]],[11,1,1,2,3,[[332,1,1,2,3]]],[17,1,1,3,4,[[463,1,1,3,4]]],[22,1,1,4,5,[[716,1,1,4,5]]],[23,4,3,5,8,[[775,1,1,5,6],[792,3,2,6,8]]]],[1360,7104,10101,13515,18393,19707,20085,20112]]],["weep",[2,2,[[22,2,2,0,2,[[693,1,1,0,1],[700,1,1,1,2]]]],[17962,18056]]],["weeping",[18,18,[[4,1,1,0,1,[[186,1,1,0,1]]],[14,1,1,1,2,[[405,1,1,1,2]]],[16,1,1,2,3,[[429,1,1,2,3]]],[17,1,1,3,4,[[451,1,1,3,4]]],[18,3,3,4,7,[[483,1,1,4,5],[507,1,1,5,6],[579,1,1,6,7]]],[22,5,5,7,12,[[693,2,2,7,9],[694,1,1,9,10],[700,1,1,10,11],[743,1,1,11,12]]],[23,4,4,12,16,[[747,1,1,12,13],[753,1,1,13,14],[775,2,2,14,16]]],[28,1,1,16,17,[[877,1,1,16,17]]],[38,1,1,17,18,[[926,1,1,17,18]]]],[5847,12110,12765,13254,13993,14324,15530,17963,17965,17978,18064,18916,19023,19185,19700,19706,22323,23116]]]]},{"k":"H1066","v":[["Bochim",[2,2,[[6,2,2,0,2,[[212,2,2,0,2]]]],[6546,6550]]]]},{"k":"H1067","v":[["firstborn",[6,6,[[0,5,5,0,5,[[18,4,4,0,4],[28,1,1,4,5]]],[8,1,1,5,6,[[249,1,1,5,6]]]],[488,490,491,494,821,7557]]]]},{"k":"H1068","v":[["mourning",[1,1,[[0,1,1,0,1,[[49,1,1,0,1]]]],[1510]]]]},{"k":"H1069","v":[["*",[5,4,[[2,1,1,0,1,[[116,1,1,0,1]]],[4,2,1,1,2,[[173,2,1,1,2]]],[23,1,1,2,3,[[748,1,1,2,3]]],[25,1,1,3,4,[[848,1,1,3,4]]]],[3596,5463,19058,21691]]],["+",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5463]]],["child",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19058]]],["firstborn",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5463]]],["firstling",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3596]]],["fruit",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21691]]]]},{"k":"H1070","v":[["dromedaries",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18827]]]]},{"k":"H1071","v":[["Becher",[5,4,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[12,3,2,2,4,[[344,3,2,2,4]]]],[1407,4524,10541,10543]]]]},{"k":"H1072","v":[["dromedary",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18988]]]]},{"k":"H1073","v":[["ripe",[1,1,[[23,1,1,0,1,[[768,1,1,0,1]]]],[19526]]]]},{"k":"H1074","v":[["Bocheru",[2,2,[[12,2,2,0,2,[[345,1,1,0,1],[346,1,1,1,2]]]],[10613,10659]]]]},{"k":"H1075","v":[["Bichri",[8,8,[[9,8,8,0,8,[[286,8,8,0,8]]]],[8555,8556,8560,8561,8564,8567,8575,8576]]]]},{"k":"H1076","v":[["Bachrites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4524]]]]},{"k":"H1077","v":[["*",[69,55,[[12,1,1,0,1,[[353,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[18,31,28,2,30,[[487,5,5,2,7],[493,4,3,7,10],[494,3,2,10,12],[498,3,3,12,15],[507,1,1,15,16],[509,1,1,16,17],[523,1,1,17,18],[526,1,1,18,19],[535,1,1,19,20],[555,1,1,20,21],[570,1,1,21,22],[573,1,1,22,23],[581,3,2,23,25],[596,1,1,25,26],[617,2,2,26,28],[618,1,1,28,29],[624,1,1,29,30]]],[19,10,9,30,39,[[636,1,1,30,31],[637,1,1,31,32],[639,1,1,32,33],[641,1,1,33,34],[646,1,1,34,35],[649,1,1,35,36],[650,3,2,36,38],[651,1,1,38,39]]],[22,24,14,39,53,[[692,1,1,39,40],[704,7,4,40,44],[711,7,4,44,48],[713,1,1,48,49],[718,3,1,49,50],[721,1,1,50,51],[722,4,2,51,53]]],[27,2,2,53,55,[[868,1,1,53,54],[870,1,1,54,55]]]],[10850,13911,14045,14047,14052,14056,14059,14094,14096,14100,14106,14108,14193,14198,14202,14325,14364,14619,14660,14787,15157,15427,15475,15576,15580,16019,16273,16274,16280,16371,16651,16686,16722,16779,16948,17044,17051,17079,17102,17949,18140,18141,18144,18148,18299,18300,18302,18303,18329,18444,18522,18541,18542,22180,22224]]],["+",[5,5,[[18,3,3,0,3,[[487,1,1,0,1],[507,1,1,1,2],[581,1,1,2,3]]],[19,2,2,3,5,[[636,1,1,3,4],[637,1,1,4,5]]]],[14052,14325,15580,16651,16686]]],["cannot",[2,2,[[17,1,1,0,1,[[476,1,1,0,1]]],[18,1,1,1,2,[[570,1,1,1,2]]]],[13911,15427]]],["lest",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14364]]],["neither",[2,2,[[22,2,2,0,2,[[704,1,1,0,1],[711,1,1,1,2]]]],[18148,18299]]],["no",[3,3,[[18,1,1,0,1,[[487,1,1,0,1]]],[22,1,1,1,2,[[711,1,1,1,2]]],[27,1,1,2,3,[[870,1,1,2,3]]]],[14059,18300,22224]]],["none",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14056]]],["nor",[3,3,[[18,1,1,0,1,[[493,1,1,0,1]]],[22,2,2,1,3,[[713,1,1,1,2],[722,1,1,2,3]]]],[14096,18329,18542]]],["not",[51,43,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,22,22,1,23,[[487,2,2,1,3],[493,3,3,3,6],[494,2,2,6,8],[498,3,3,8,11],[523,1,1,11,12],[526,1,1,12,13],[535,1,1,13,14],[555,1,1,14,15],[573,1,1,15,16],[581,2,2,16,18],[596,1,1,18,19],[617,2,2,19,21],[618,1,1,21,22],[624,1,1,22,23]]],[19,8,7,23,30,[[639,1,1,23,24],[641,1,1,24,25],[646,1,1,25,26],[649,1,1,26,27],[650,3,2,27,29],[651,1,1,29,30]]],[22,19,12,30,42,[[692,1,1,30,31],[704,6,4,31,35],[711,5,3,35,38],[718,3,1,38,39],[721,1,1,39,40],[722,3,2,40,42]]],[27,1,1,42,43,[[868,1,1,42,43]]]],[10850,14045,14047,14094,14096,14100,14106,14108,14193,14198,14202,14619,14660,14787,15157,15475,15576,15580,16019,16273,16274,16280,16371,16722,16779,16948,17044,17051,17079,17102,17949,18140,18141,18144,18148,18299,18302,18303,18444,18522,18541,18542,22180]]],["nothing",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14106]]]]},{"k":"H1078","v":[["Bel",[3,3,[[22,1,1,0,1,[[724,1,1,0,1]]],[23,2,2,1,3,[[794,1,1,1,2],[795,1,1,2,3]]]],[18587,20168,20256]]]]},{"k":"H1079","v":[["heart",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21919]]]]},{"k":"H1080","v":[["out",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21958]]]]},{"k":"H1081","v":[["Baladan",[2,2,[[11,1,1,0,1,[[332,1,1,0,1]]],[22,1,1,1,2,[[717,1,1,1,2]]]],[10110,18413]]]]},{"k":"H1082","v":[["*",[4,4,[[17,2,2,0,2,[[444,1,1,0,1],[445,1,1,1,2]]],[18,1,1,2,3,[[516,1,1,2,3]]],[29,1,1,3,4,[[883,1,1,3,4]]]],[13078,13106,14525,22432]]],["comfort",[2,2,[[17,2,2,0,2,[[444,1,1,0,1],[445,1,1,1,2]]]],[13078,13106]]],["strength",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14525]]],["strengtheneth",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22432]]]]},{"k":"H1083","v":[["Bilgah",[3,3,[[12,1,1,0,1,[[361,1,1,0,1]]],[15,2,2,1,3,[[424,2,2,1,3]]]],[11029,12629,12642]]]]},{"k":"H1084","v":[["Bilgai",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12557]]]]},{"k":"H1085","v":[["Bildad",[5,5,[[17,5,5,0,5,[[437,1,1,0,1],[443,1,1,1,2],[453,1,1,2,3],[460,1,1,3,4],[477,1,1,4,5]]]],[12902,13030,13277,13462,13931]]]]},{"k":"H1086","v":[["*",[15,14,[[0,1,1,0,1,[[17,1,1,0,1]]],[4,3,2,1,3,[[160,1,1,1,2],[181,2,1,2,3]]],[5,1,1,3,4,[[195,1,1,3,4]]],[12,1,1,4,5,[[354,1,1,4,5]]],[15,1,1,5,6,[[421,1,1,5,6]]],[17,1,1,6,7,[[448,1,1,6,7]]],[18,3,3,7,10,[[509,1,1,7,8],[526,1,1,8,9],[579,1,1,9,10]]],[22,3,3,10,13,[[728,1,1,10,11],[729,1,1,11,12],[743,1,1,12,13]]],[24,1,1,13,14,[[799,1,1,13,14]]]],[436,5141,5684,6050,10872,12532,13181,14358,14662,15547,18671,18679,18919,20358]]],["+",[2,2,[[4,1,1,0,1,[[160,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]]],[5141,12532]]],["consume",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14662]]],["consumeth",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13181]]],["enjoy",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18919]]],["old",[9,8,[[0,1,1,0,1,[[17,1,1,0,1]]],[4,2,1,1,2,[[181,2,1,1,2]]],[5,1,1,2,3,[[195,1,1,2,3]]],[18,2,2,3,5,[[509,1,1,3,4],[579,1,1,4,5]]],[22,2,2,5,7,[[728,1,1,5,6],[729,1,1,6,7]]],[24,1,1,7,8,[[799,1,1,7,8]]]],[436,5684,6050,14358,15547,18671,18679,20358]]],["waste",[1,1,[[12,1,1,0,1,[[354,1,1,0,1]]]],[10872]]]]},{"k":"H1087","v":[["old",[5,3,[[5,4,2,0,2,[[195,4,2,0,2]]],[25,1,1,2,3,[[824,1,1,2,3]]]],[6041,6042,21050]]]]},{"k":"H1088","v":[["Balah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6324]]]]},{"k":"H1089","v":[["troubled",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12114]]]]},{"k":"H1090","v":[["Bilhah",[11,11,[[0,9,9,0,9,[[28,1,1,0,1],[29,4,4,1,5],[34,2,2,5,7],[36,1,1,7,8],[45,1,1,8,9]]],[12,2,2,9,11,[[341,1,1,9,10],[344,1,1,10,11]]]],[824,833,834,835,837,1033,1036,1085,1411,10414,10548]]]]},{"k":"H1091","v":[["*",[10,10,[[17,5,5,0,5,[[453,2,2,0,2],[459,1,1,2,3],[462,1,1,3,4],[465,1,1,4,5]]],[18,1,1,5,6,[[550,1,1,5,6]]],[22,1,1,6,7,[[695,1,1,6,7]]],[25,3,3,7,10,[[827,1,1,7,8],[828,1,1,8,9],[829,1,1,9,10]]]],[13287,13290,13453,13501,13572,15039,17997,21121,21157,21176]]],["Terrors",[3,3,[[17,3,3,0,3,[[453,1,1,0,1],[462,1,1,1,2],[465,1,1,2,3]]]],[13287,13501,13572]]],["terror",[3,3,[[25,3,3,0,3,[[827,1,1,0,1],[828,1,1,1,2],[829,1,1,2,3]]]],[21121,21157,21176]]],["terrors",[3,3,[[17,2,2,0,2,[[453,1,1,0,1],[459,1,1,1,2]]],[18,1,1,2,3,[[550,1,1,2,3]]]],[13290,13453,15039]]],["trouble",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17997]]]]},{"k":"H1092","v":[["Bilhan",[4,3,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,3,2,1,3,[[338,1,1,1,2],[344,2,1,2,3]]]],[1067,10294,10545]]]]},{"k":"H1093","v":[["tribute",[3,3,[[14,3,3,0,3,[[406,2,2,0,2],[409,1,1,2,3]]]],[12123,12130,12197]]]]},{"k":"H1094","v":[["old",[3,2,[[23,3,2,0,2,[[782,3,2,0,2]]]],[19906,19907]]]]},{"k":"H1095","v":[["Belteshazzar",[2,2,[[26,2,2,0,2,[[850,1,1,0,1],[859,1,1,1,2]]]],[21744,22016]]]]},{"k":"H1096","v":[["Belteshazzar",[8,6,[[26,8,6,0,6,[[851,1,1,0,1],[853,6,4,1,5],[854,1,1,5,6]]]],[21784,21845,21846,21855,21856,21886]]]]},{"k":"H1097","v":[["*",[57,56,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[4,4,4,2,6,[[156,1,1,2,3],[161,1,1,3,4],[171,1,1,4,5],[180,1,1,5,6]]],[5,2,2,6,8,[[206,2,2,6,8]]],[9,1,1,8,9,[[267,1,1,8,9]]],[11,3,3,9,12,[[313,3,3,9,12]]],[17,21,21,12,33,[[439,2,2,12,14],[441,1,1,14,15],[443,1,1,15,16],[453,1,1,16,17],[459,3,3,17,20],[465,1,1,20,21],[466,2,2,21,23],[468,1,1,23,24],[469,1,1,24,25],[470,1,1,25,26],[471,1,1,26,27],[473,2,2,27,29],[474,1,1,29,30],[476,2,2,30,32],[477,1,1,32,33]]],[18,4,4,33,37,[[496,1,1,33,34],[536,1,1,34,35],[540,1,1,35,36],[549,1,1,36,37]]],[20,1,1,37,38,[[661,1,1,37,38]]],[22,6,6,38,44,[[683,2,2,38,40],[692,1,1,40,41],[706,1,1,41,42],[710,1,1,42,43],[716,1,1,43,44]]],[23,4,4,44,48,[[746,1,1,44,45],[753,3,3,45,48]]],[24,1,1,48,49,[[797,1,1,48,49]]],[25,2,2,49,51,[[815,1,1,49,50],[835,1,1,50,51]]],[27,3,3,51,54,[[865,1,1,51,52],[868,1,1,52,53],[869,1,1,53,54]]],[35,2,1,54,55,[[908,2,1,54,55]]],[38,1,1,55,56,[[927,1,1,55,56]]]],[893,1900,5046,5185,5410,5666,6375,6377,8043,9536,9539,9549,12941,12950,12984,13040,13291,13443,13444,13446,13565,13607,13627,13659,13689,13736,13748,13795,13834,13850,13914,13921,13925,14171,14794,14840,15007,17370,17752,17753,17934,18172,18269,18407,18980,19185,19186,19187,20314,20746,21318,22139,22186,22201,22826,23130]]],["+",[30,29,[[1,1,1,0,1,[[63,1,1,0,1]]],[4,4,4,1,5,[[156,1,1,1,2],[161,1,1,2,3],[171,1,1,3,4],[180,1,1,4,5]]],[5,2,2,5,7,[[206,2,2,5,7]]],[11,3,3,7,10,[[313,3,3,7,10]]],[17,8,8,10,18,[[439,2,2,10,12],[441,1,1,12,13],[453,1,1,13,14],[459,2,2,14,16],[465,1,1,16,17],[466,1,1,17,18]]],[20,1,1,18,19,[[661,1,1,18,19]]],[22,1,1,19,20,[[683,1,1,19,20]]],[23,4,4,20,24,[[746,1,1,20,21],[753,3,3,21,24]]],[24,1,1,24,25,[[797,1,1,24,25]]],[25,2,2,25,27,[[815,1,1,25,26],[835,1,1,26,27]]],[27,1,1,27,28,[[865,1,1,27,28]]],[35,2,1,28,29,[[908,2,1,28,29]]]],[1900,5046,5185,5410,5666,6375,6377,9536,9539,9549,12941,12950,12984,13291,13443,13444,13565,13607,17370,17752,18980,19185,19186,19187,20314,20746,21318,22139,22826]]],["cannot",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13914]]],["corruption",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18407]]],["endureth",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15007]]],["lack",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13834]]],["no",[3,3,[[18,1,1,0,1,[[540,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]],[27,1,1,2,3,[[869,1,1,2,3]]]],[14840,18172,22201]]],["none",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17934]]],["not",[6,6,[[0,1,1,0,1,[[30,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]],[18,1,1,2,3,[[496,1,1,2,3]]],[22,1,1,3,4,[[710,1,1,3,4]]],[27,1,1,4,5,[[868,1,1,4,5]]],[38,1,1,5,6,[[927,1,1,5,6]]]],[893,8043,14171,18269,22186,23130]]],["without",[13,13,[[17,11,11,0,11,[[443,1,1,0,1],[459,1,1,1,2],[466,1,1,2,3],[468,1,1,3,4],[469,1,1,4,5],[470,1,1,5,6],[471,1,1,6,7],[473,1,1,7,8],[474,1,1,8,9],[476,1,1,9,10],[477,1,1,10,11]]],[18,1,1,11,12,[[536,1,1,11,12]]],[22,1,1,12,13,[[683,1,1,12,13]]]],[13040,13446,13627,13659,13689,13736,13748,13795,13850,13921,13925,14794,17753]]]]},{"k":"H1098","v":[["*",[3,3,[[17,2,2,0,2,[[441,1,1,0,1],[459,1,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]]],[12983,13442,18241]]],["corn",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13442]]],["fodder",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12983]]],["provender",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18241]]]]},{"k":"H1099","v":[["nothing",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13474]]]]},{"k":"H1100","v":[["*",[27,26,[[4,2,2,0,2,[[165,1,1,0,1],[167,1,1,1,2]]],[6,2,2,2,4,[[229,1,1,2,3],[230,1,1,3,4]]],[8,6,6,4,10,[[236,1,1,4,5],[237,1,1,5,6],[245,1,1,6,7],[260,2,2,7,9],[265,1,1,9,10]]],[9,4,4,10,14,[[282,1,1,10,11],[286,1,1,11,12],[288,1,1,12,13],[289,1,1,13,14]]],[10,3,2,14,16,[[311,3,2,14,16]]],[13,1,1,16,17,[[379,1,1,16,17]]],[17,1,1,17,18,[[469,1,1,17,18]]],[18,3,3,18,21,[[495,1,1,18,19],[518,1,1,19,20],[578,1,1,20,21]]],[19,3,3,21,24,[[633,1,1,21,22],[643,1,1,22,23],[646,1,1,23,24]]],[33,2,2,24,26,[[900,2,2,24,26]]]],[5285,5328,7046,7067,7228,7252,7445,7878,7886,8000,8433,8555,8607,8659,9461,9464,11460,13701,14122,14550,15516,16552,16867,16953,22695,22699]]],["+",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7228]]],["Belial",[15,14,[[4,1,1,0,1,[[165,1,1,0,1]]],[6,2,2,1,3,[[229,1,1,1,2],[230,1,1,2,3]]],[8,5,5,3,8,[[237,1,1,3,4],[245,1,1,4,5],[260,2,2,5,7],[265,1,1,7,8]]],[9,3,3,8,11,[[282,1,1,8,9],[286,1,1,9,10],[289,1,1,10,11]]],[10,3,2,11,13,[[311,3,2,11,13]]],[13,1,1,13,14,[[379,1,1,13,14]]]],[5285,7046,7067,7252,7445,7878,7886,8000,8433,8555,8659,9461,9464,11460]]],["evil",[1,1,[[18,1,1,0,1,[[518,1,1,0,1]]]],[14550]]],["men",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14122]]],["naughty",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16552]]],["ungodly",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[19,2,2,1,3,[[643,1,1,1,2],[646,1,1,2,3]]]],[8607,16867,16953]]],["wicked",[5,5,[[4,1,1,0,1,[[167,1,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[18,1,1,2,3,[[578,1,1,2,3]]],[33,2,2,3,5,[[900,2,2,3,5]]]],[5328,13701,15516,22695,22699]]]]},{"k":"H1101","v":[["*",[43,41,[[0,2,2,0,2,[[10,2,2,0,2]]],[1,2,2,2,4,[[78,2,2,2,4]]],[2,9,8,4,12,[[91,2,2,4,6],[96,3,2,6,8],[98,1,1,8,9],[103,2,2,9,11],[112,1,1,11,12]]],[3,27,26,12,38,[[122,1,1,12,13],[123,12,12,13,25],[124,1,1,25,26],[131,3,3,26,29],[144,7,6,29,35],[145,3,3,35,38]]],[6,1,1,38,39,[[229,1,1,38,39]]],[18,1,1,39,40,[[569,1,1,39,40]]],[27,1,1,40,41,[[868,1,1,40,41]]]],[273,275,2338,2376,2766,2767,2889,2891,2957,3121,3132,3415,3838,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3947,4157,4159,4162,4582,4586,4589,4590,4597,4605,4611,4617,4622,7045,15421,22186]]],["anointed",[1,1,[[18,1,1,0,1,[[569,1,1,0,1]]]],[15421]]],["confound",[2,2,[[0,2,2,0,2,[[10,2,2,0,2]]]],[273,275]]],["himself",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22186]]],["mingled",[37,35,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,9,8,1,9,[[91,2,2,1,3],[96,3,2,3,5],[98,1,1,5,6],[103,2,2,6,8],[112,1,1,8,9]]],[3,27,26,9,35,[[122,1,1,9,10],[123,12,12,10,22],[124,1,1,22,23],[131,3,3,23,26],[144,7,6,26,32],[145,3,3,32,35]]]],[2376,2766,2767,2889,2891,2957,3121,3132,3415,3838,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3947,4157,4159,4162,4582,4586,4589,4590,4597,4605,4611,4617,4622]]],["provender",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7045]]],["tempered",[1,1,[[1,1,1,0,1,[[78,1,1,0,1]]]],[2338]]]]},{"k":"H1102","v":[["in",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14364]]]]},{"k":"H1103","v":[["gatherer",[1,1,[[29,1,1,0,1,[[885,1,1,0,1]]]],[22478]]]]},{"k":"H1104","v":[["*",[49,48,[[0,2,2,0,2,[[40,2,2,0,2]]],[1,2,2,2,4,[[56,1,1,2,3],[64,1,1,3,4]]],[3,5,5,4,9,[[120,1,1,4,5],[132,3,3,5,8],[142,1,1,8,9]]],[4,1,1,9,10,[[163,1,1,9,10]]],[9,3,3,10,13,[[283,1,1,10,11],[286,2,2,11,13]]],[17,7,7,13,20,[[437,1,1,13,14],[442,1,1,14,15],[443,1,1,15,16],[445,1,1,16,17],[455,2,2,17,19],[472,1,1,19,20]]],[18,7,7,20,27,[[498,1,1,20,21],[512,1,1,21,22],[532,1,1,22,23],[546,1,1,23,24],[583,1,1,24,25],[584,1,1,25,26],[601,1,1,26,27]]],[19,3,3,27,30,[[628,1,1,27,28],[646,1,1,28,29],[648,1,1,29,30]]],[20,1,1,30,31,[[668,1,1,30,31]]],[22,8,8,31,39,[[681,1,1,31,32],[687,1,1,32,33],[697,1,1,33,34],[703,2,2,34,36],[706,2,2,36,38],[727,1,1,38,39]]],[23,1,1,39,40,[[795,1,1,39,40]]],[24,5,4,40,44,[[798,5,4,40,44]]],[27,2,2,44,46,[[869,2,2,44,46]]],[31,1,1,46,47,[[889,1,1,46,47]]],[34,1,1,47,48,[[903,1,1,47,48]]]],[1202,1219,1697,1932,3763,4224,4226,4228,4499,5214,8465,8573,8574,12894,13027,13047,13094,13341,13344,13789,14200,14435,14741,14950,15668,15726,16105,16412,16953,17004,17505,17719,17845,18007,18125,18126,18168,18171,18655,20246,20334,20337,20340,20348,22201,22202,22548,22744]]],["+",[10,10,[[0,2,2,0,2,[[40,2,2,0,2]]],[1,1,1,2,3,[[56,1,1,2,3]]],[3,3,3,3,6,[[132,2,2,3,5],[142,1,1,5,6]]],[18,1,1,6,7,[[584,1,1,6,7]]],[24,2,2,7,9,[[798,2,2,7,9]]],[31,1,1,9,10,[[889,1,1,9,10]]]],[1202,1219,1697,4224,4226,4499,15726,20334,20340,22548]]],["Destroy",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14741]]],["covered",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3763]]],["destroy",[6,6,[[17,3,3,0,3,[[437,1,1,0,1],[443,1,1,1,2],[445,1,1,2,3]]],[22,3,3,3,6,[[681,1,1,3,4],[697,1,1,4,5],[703,1,1,5,6]]]],[12894,13047,13094,17719,18007,18125]]],["destroyed",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17845]]],["devoureth",[2,2,[[19,1,1,0,1,[[646,1,1,0,1]]],[34,1,1,1,2,[[903,1,1,1,2]]]],[16953,22744]]],["down",[3,3,[[17,3,3,0,3,[[442,1,1,0,1],[455,2,2,1,3]]]],[13027,13341,13344]]],["swallowed",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1932]]],["up",[24,23,[[3,1,1,0,1,[[132,1,1,0,1]]],[4,1,1,1,2,[[163,1,1,1,2]]],[9,3,3,2,5,[[283,1,1,2,3],[286,2,2,3,5]]],[17,1,1,5,6,[[472,1,1,5,6]]],[18,5,5,6,11,[[498,1,1,6,7],[512,1,1,7,8],[546,1,1,8,9],[583,1,1,9,10],[601,1,1,10,11]]],[19,2,2,11,13,[[628,1,1,11,12],[648,1,1,12,13]]],[20,1,1,13,14,[[668,1,1,13,14]]],[22,4,4,14,18,[[703,1,1,14,15],[706,2,2,15,17],[727,1,1,17,18]]],[23,1,1,18,19,[[795,1,1,18,19]]],[24,3,2,19,21,[[798,3,2,19,21]]],[27,2,2,21,23,[[869,2,2,21,23]]]],[4228,5214,8465,8573,8574,13789,14200,14435,14950,15668,16105,16412,17004,17505,18126,18168,18171,18655,20246,20337,20348,22201,22202]]]]},{"k":"H1105","v":[["*",[2,2,[[18,1,1,0,1,[[529,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[14714,20256]]],["devouring",[1,1,[[18,1,1,0,1,[[529,1,1,0,1]]]],[14714]]],["up",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20256]]]]},{"k":"H1106","v":[["*",[14,14,[[0,5,5,0,5,[[13,2,2,0,2],[35,2,2,2,4],[45,1,1,4,5]]],[3,2,2,5,7,[[142,2,2,5,7]]],[12,7,7,7,14,[[338,2,2,7,9],[342,1,1,9,10],[344,2,2,10,12],[345,2,2,12,14]]]],[338,344,1072,1073,1407,4527,4529,10295,10296,10436,10541,10542,10576,10578]]],["Bela",[13,13,[[0,4,4,0,4,[[13,2,2,0,2],[35,2,2,2,4]]],[3,2,2,4,6,[[142,2,2,4,6]]],[12,7,7,6,13,[[338,2,2,6,8],[342,1,1,8,9],[344,2,2,9,11],[345,2,2,11,13]]]],[338,344,1072,1073,4527,4529,10295,10296,10436,10541,10542,10576,10578]]],["Belah",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1407]]]]},{"k":"H1107","v":[["*",[17,16,[[0,3,3,0,3,[[13,1,1,0,1],[40,2,2,1,3]]],[3,1,1,3,4,[[121,1,1,3,4]]],[5,1,1,4,5,[[208,1,1,4,5]]],[9,2,1,5,6,[[288,2,1,5,6]]],[11,1,1,6,7,[[330,1,1,6,7]]],[17,1,1,7,8,[[469,1,1,7,8]]],[18,1,1,8,9,[[495,1,1,8,9]]],[22,6,6,9,15,[[714,1,1,9,10],[721,1,1,10,11],[722,2,2,11,13],[723,2,2,13,15]]],[23,1,1,15,16,[[788,1,1,15,16]]]],[360,1211,1239,3812,6445,8634,10049,13715,14149,18340,18516,18539,18541,18567,18582,20029]]],["+",[12,11,[[3,1,1,0,1,[[121,1,1,0,1]]],[5,1,1,1,2,[[208,1,1,1,2]]],[9,2,1,2,3,[[288,2,1,2,3]]],[11,1,1,3,4,[[330,1,1,3,4]]],[18,1,1,4,5,[[495,1,1,4,5]]],[22,5,5,5,10,[[714,1,1,5,6],[721,1,1,6,7],[722,2,2,7,9],[723,1,1,9,10]]],[23,1,1,10,11,[[788,1,1,10,11]]]],[3812,6445,8634,10049,14149,18340,18516,18539,18541,18582,20029]]],["Save",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[360]]],["beside",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18567]]],["in",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1211]]],["not",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13715]]],["without",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1239]]]]},{"k":"H1108","v":[["Belaites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4527]]]]},{"k":"H1109","v":[["*",[61,57,[[3,53,49,0,49,[[138,29,27,0,27],[139,14,13,27,40],[140,8,7,40,47],[147,2,2,47,49]]],[4,2,2,49,51,[[175,2,2,49,51]]],[5,3,3,51,54,[[199,1,1,51,52],[210,2,2,52,54]]],[12,1,1,54,55,[[343,1,1,54,55]]],[15,1,1,55,56,[[425,1,1,55,56]]],[32,1,1,56,57,[[898,1,1,56,57]]]],[4380,4382,4383,4384,4385,4387,4388,4389,4391,4393,4395,4396,4398,4400,4402,4403,4404,4405,4406,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4427,4432,4441,4442,4443,4444,4445,4446,4447,4448,4449,4456,4458,4461,4471,4672,4680,5504,5505,6176,6485,6486,10524,12673,22653]]],["Balaam",[57,54,[[3,50,47,0,47,[[138,27,26,0,26],[139,13,12,26,38],[140,8,7,38,45],[147,2,2,45,47]]],[4,2,2,47,49,[[175,2,2,47,49]]],[5,3,3,49,52,[[199,1,1,49,50],[210,2,2,50,52]]],[15,1,1,52,53,[[425,1,1,52,53]]],[32,1,1,53,54,[[898,1,1,53,54]]]],[4380,4382,4383,4384,4385,4387,4388,4389,4391,4393,4395,4396,4398,4402,4403,4404,4405,4406,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4427,4432,4441,4442,4443,4444,4445,4446,4447,4448,4449,4456,4458,4461,4471,4672,4680,5504,5505,6176,6485,6486,12673,22653]]],["Balaam's",[3,3,[[3,3,3,0,3,[[138,2,2,0,2],[139,1,1,2,3]]]],[4400,4402,4421]]],["Bileam",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10524]]]]},{"k":"H1110","v":[["waste",[2,2,[[22,1,1,0,1,[[702,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[18096,22709]]]]},{"k":"H1111","v":[["*",[43,40,[[3,40,37,0,37,[[138,17,16,0,16],[139,18,17,16,33],[140,5,4,33,37]]],[5,1,1,37,38,[[210,1,1,37,38]]],[6,1,1,38,39,[[221,1,1,38,39]]],[32,1,1,39,40,[[898,1,1,39,40]]]],[4377,4379,4382,4385,4388,4389,4390,4391,4393,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4421,4423,4427,4429,4431,4432,4433,4434,4441,4442,4443,4444,4445,4446,4456,4458,4459,4471,6485,6854,22653]]],["+",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6854]]],["Balak",[41,39,[[3,39,37,0,37,[[138,17,16,0,16],[139,18,17,16,33],[140,4,4,33,37]]],[5,1,1,37,38,[[210,1,1,37,38]]],[32,1,1,38,39,[[898,1,1,38,39]]]],[4377,4379,4382,4385,4388,4389,4390,4391,4393,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4421,4423,4427,4429,4431,4432,4433,4434,4441,4442,4443,4444,4445,4446,4456,4458,4459,4471,6485,22653]]],["Balak's",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4456]]]]},{"k":"H1112","v":[["Belshazzar",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21962]]]]},{"k":"H1113","v":[["Belshazzar",[7,7,[[26,7,7,0,7,[[854,6,6,0,6],[856,1,1,6,7]]]],[21875,21876,21883,21896,21903,21904,21934]]]]},{"k":"H1114","v":[["Bilshan",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12029,12427]]]]},{"k":"H1115","v":[["*",[109,104,[[0,8,8,0,8,[[2,1,1,0,1],[3,1,1,1,2],[18,1,1,2,3],[20,1,1,3,4],[37,1,1,4,5],[42,2,2,5,7],[46,1,1,7,8]]],[1,5,5,8,13,[[57,2,2,8,10],[58,1,1,10,11],[69,1,1,11,12],[71,1,1,12,13]]],[2,3,3,13,16,[[107,1,1,13,14],[109,1,1,14,15],[115,1,1,15,16]]],[3,6,6,16,22,[[125,1,1,16,17],[127,1,1,17,18],[130,1,1,18,19],[137,1,1,19,20],[148,2,2,20,22]]],[4,8,6,22,28,[[155,1,1,22,23],[156,2,1,23,24],[160,1,1,24,25],[164,1,1,25,26],[169,3,2,26,28]]],[5,8,8,28,36,[[191,1,1,28,29],[194,1,1,29,30],[196,1,1,30,31],[197,3,3,31,34],[209,2,2,34,36]]],[6,4,4,36,40,[[212,1,1,36,37],[217,1,1,37,38],[218,1,1,38,39],[231,1,1,39,40]]],[7,2,2,40,42,[[233,1,1,40,41],[234,1,1,41,42]]],[8,2,2,42,44,[[237,1,1,42,43],[255,1,1,43,44]]],[9,2,2,44,46,[[280,2,2,44,46]]],[10,3,3,46,49,[[296,1,1,46,47],[301,1,1,47,48],[305,1,1,48,49]]],[11,5,4,49,53,[[322,1,1,49,50],[324,2,1,50,51],[329,1,1,51,52],[335,1,1,52,53]]],[12,1,1,53,54,[[341,1,1,53,54]]],[13,1,1,54,55,[[382,1,1,54,55]]],[17,2,2,55,57,[[449,1,1,55,56],[477,1,1,56,57]]],[22,5,5,57,62,[[688,1,1,57,58],[692,1,1,58,59],[722,1,1,59,60],[726,1,1,60,61],[743,1,1,61,62]]],[23,25,23,62,85,[[751,1,1,62,63],[760,1,1,63,64],[761,5,3,64,67],[762,1,1,67,68],[763,1,1,68,69],[767,1,1,69,70],[770,1,1,70,71],[771,1,1,71,72],[776,1,1,72,73],[777,1,1,73,74],[778,2,2,74,76],[779,3,3,76,79],[780,1,1,79,80],[782,1,1,80,81],[786,1,1,81,82],[788,2,2,82,84],[795,1,1,84,85]]],[25,14,14,85,99,[[804,1,1,85,86],[814,2,2,86,88],[817,1,1,88,89],[818,1,1,89,90],[821,4,4,90,94],[823,1,1,94,95],[825,1,1,95,96],[830,1,1,96,97],[834,1,1,97,98],[847,1,1,98,99]]],[26,2,2,99,101,[[858,1,1,99,100],[860,1,1,100,101]]],[27,1,1,101,102,[[874,1,1,101,102]]],[29,2,2,102,104,[[881,2,2,102,104]]]],[66,94,478,539,1128,1293,1295,1438,1732,1739,1759,2071,2133,3281,3322,3539,3972,4030,4124,4375,4727,4730,4978,5025,5148,5263,5376,5384,5940,6024,6097,6115,6126,6127,6466,6467,6568,6708,6720,7109,7158,7182,7242,7756,8363,8369,8902,9118,9266,9804,9858,9998,10175,10395,11510,13193,13930,17854,17934,18543,18623,18905,19127,19348,19380,19381,19384,19394,19422,19498,19596,19614,19771,19795,19810,19811,19831,19832,19837,19867,19921,19988,20015,20017,20274,20523,20711,20730,20790,20839,20904,20909,20910,20917,21006,21064,21198,21295,21675,21999,22054,22270,22398,22399]]],["+",[14,14,[[0,1,1,0,1,[[46,1,1,0,1]]],[2,1,1,1,2,[[107,1,1,1,2]]],[3,2,2,2,4,[[127,1,1,2,3],[130,1,1,3,4]]],[4,1,1,4,5,[[169,1,1,4,5]]],[6,1,1,5,6,[[217,1,1,5,6]]],[22,2,2,6,8,[[692,1,1,6,7],[726,1,1,7,8]]],[23,3,3,8,11,[[761,1,1,8,9],[767,1,1,9,10],[778,1,1,10,11]]],[25,2,2,11,13,[[817,1,1,11,12],[847,1,1,12,13]]],[29,1,1,13,14,[[881,1,1,13,14]]]],[1438,3281,4030,4124,5384,6708,17934,18623,19381,19498,19810,20790,21675,22398]]],["Nor",[1,1,[[23,1,1,0,1,[[779,1,1,0,1]]]],[19832]]],["Save",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4730]]],["Without",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17854]]],["beside",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[27,1,1,1,2,[[874,1,1,1,2]]]],[7242,22270]]],["but",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[539]]],["cannot",[1,1,[[23,1,1,0,1,[[751,1,1,0,1]]]],[19127]]],["except",[2,2,[[0,2,2,0,2,[[42,2,2,0,2]]]],[1293,1295]]],["lest",[3,3,[[0,2,2,0,2,[[3,1,1,0,1],[37,1,1,1,2]]],[17,1,1,2,3,[[477,1,1,2,3]]]],[94,1128,13930]]],["more",[2,2,[[17,1,1,0,1,[[449,1,1,0,1]]],[25,1,1,1,2,[[830,1,1,1,2]]]],[13193,21198]]],["neither",[2,2,[[11,1,1,0,1,[[324,1,1,0,1]]],[23,1,1,1,2,[[786,1,1,1,2]]]],[9858,19988]]],["no",[7,7,[[1,1,1,0,1,[[57,1,1,0,1]]],[5,1,1,1,2,[[197,1,1,1,2]]],[11,2,2,2,4,[[324,1,1,2,3],[335,1,1,3,4]]],[23,3,3,4,7,[[761,1,1,4,5],[779,1,1,5,6],[788,1,1,6,7]]]],[1732,6127,9858,10175,19381,19831,20015]]],["none",[10,10,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,1,1,1,2,[[155,1,1,1,2]]],[5,3,3,2,5,[[194,1,1,2,3],[196,1,1,3,4],[197,1,1,4,5]]],[11,1,1,5,6,[[322,1,1,5,6]]],[13,1,1,6,7,[[382,1,1,6,7]]],[23,3,3,7,10,[[778,1,1,7,8],[788,1,1,8,9],[795,1,1,9,10]]]],[4375,4978,6024,6097,6115,9804,11510,19811,20017,20274]]],["nor",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19380]]],["not",[53,52,[[0,2,2,0,2,[[2,1,1,0,1],[18,1,1,1,2]]],[1,3,3,2,5,[[57,1,1,2,3],[58,1,1,3,4],[69,1,1,4,5]]],[2,2,2,5,7,[[109,1,1,5,6],[115,1,1,6,7]]],[3,2,2,7,9,[[125,1,1,7,8],[148,1,1,8,9]]],[4,6,5,9,14,[[156,2,1,9,10],[160,1,1,10,11],[164,1,1,11,12],[169,2,2,12,14]]],[5,3,3,14,17,[[191,1,1,14,15],[209,2,2,15,17]]],[6,2,2,17,19,[[218,1,1,17,18],[231,1,1,18,19]]],[7,2,2,19,21,[[233,1,1,19,20],[234,1,1,20,21]]],[8,1,1,21,22,[[255,1,1,21,22]]],[9,2,2,22,24,[[280,2,2,22,24]]],[10,3,3,24,27,[[296,1,1,24,25],[301,1,1,25,26],[305,1,1,26,27]]],[11,1,1,27,28,[[329,1,1,27,28]]],[12,1,1,28,29,[[341,1,1,28,29]]],[22,1,1,29,30,[[743,1,1,29,30]]],[23,12,12,30,42,[[760,1,1,30,31],[761,2,2,31,33],[762,1,1,33,34],[763,1,1,34,35],[770,1,1,35,36],[771,1,1,36,37],[776,1,1,37,38],[777,1,1,38,39],[779,1,1,39,40],[780,1,1,40,41],[782,1,1,41,42]]],[25,9,9,42,51,[[804,1,1,42,43],[814,1,1,43,44],[818,1,1,44,45],[821,4,4,45,49],[823,1,1,49,50],[825,1,1,50,51]]],[26,1,1,51,52,[[858,1,1,51,52]]]],[66,478,1739,1759,2071,3322,3539,3972,4727,5025,5148,5263,5376,5384,5940,6466,6467,6720,7109,7158,7182,7756,8363,8369,8902,9118,9266,9998,10395,18905,19348,19380,19384,19394,19422,19596,19614,19771,19795,19837,19867,19921,20523,20730,20839,20904,20909,20910,20917,21006,21064,21999]]],["nothing",[3,3,[[22,1,1,0,1,[[722,1,1,0,1]]],[25,1,1,1,2,[[814,1,1,1,2]]],[29,1,1,2,3,[[881,1,1,2,3]]]],[18543,20711,22399]]],["save",[2,2,[[1,1,1,0,1,[[71,1,1,0,1]]],[5,1,1,1,2,[[197,1,1,1,2]]]],[2133,6126]]],["without",[3,3,[[6,1,1,0,1,[[212,1,1,0,1]]],[25,1,1,1,2,[[834,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[6568,21295,22054]]]]},{"k":"H1116","v":[["*",[103,93,[[2,1,1,0,1,[[115,1,1,0,1]]],[3,3,3,1,4,[[137,1,1,1,2],[138,1,1,2,3],[149,1,1,3,4]]],[4,2,2,4,6,[[184,1,1,4,5],[185,1,1,5,6]]],[8,7,7,6,13,[[244,5,5,6,11],[245,2,2,11,13]]],[9,3,3,13,16,[[267,2,2,13,15],[288,1,1,15,16]]],[10,14,12,16,28,[[293,3,3,16,19],[301,1,1,19,20],[302,2,2,20,22],[303,4,3,22,25],[304,1,1,25,26],[305,1,1,26,27],[312,2,1,27,28]]],[11,27,19,28,47,[[324,2,1,28,29],[326,2,1,29,30],[327,4,2,30,32],[328,1,1,32,33],[329,5,4,33,37],[330,2,2,37,39],[333,1,1,39,40],[335,10,7,40,47]]],[12,2,2,47,49,[[353,1,1,47,48],[358,1,1,48,49]]],[13,17,17,49,66,[[367,2,2,49,51],[377,1,1,51,52],[380,2,2,52,54],[381,1,1,54,55],[383,1,1,55,56],[386,1,1,56,57],[387,1,1,57,58],[394,2,2,58,60],[397,1,1,60,61],[398,1,1,61,62],[399,3,3,62,65],[400,1,1,65,66]]],[17,1,1,66,67,[[444,1,1,66,67]]],[18,2,2,67,69,[[495,1,1,67,68],[555,1,1,68,69]]],[22,5,5,69,74,[[692,1,1,69,70],[693,1,1,70,71],[694,1,1,71,72],[714,1,1,72,73],[736,1,1,73,74]]],[23,6,6,74,80,[[751,1,1,74,75],[761,1,1,75,76],[763,1,1,76,77],[770,1,1,77,78],[776,1,1,78,79],[792,1,1,79,80]]],[25,6,6,80,86,[[807,2,2,80,82],[817,1,1,82,83],[821,1,1,83,84],[837,1,1,84,85],[844,1,1,85,86]]],[27,1,1,86,87,[[871,1,1,86,87]]],[29,2,2,87,89,[[882,1,1,87,88],[885,1,1,88,89]]],[32,3,3,89,92,[[893,2,2,89,91],[895,1,1,91,92]]],[34,1,1,92,93,[[905,1,1,92,93]]]],[3554,4368,4416,4812,5771,5839,7403,7404,7405,7410,7416,7423,7431,8041,8047,8636,8818,8819,8820,9115,9182,9183,9186,9216,9217,9241,9263,9523,9853,9900,9929,9960,9967,9992,9994,10012,10015,10028,10046,10122,10170,10173,10174,10178,10180,10184,10185,10859,10963,11197,11207,11429,11478,11480,11507,11529,11620,11635,11768,11789,11855,11887,11911,11925,11927,11936,13059,14151,15171,17942,17962,17981,18337,18800,19150,19360,19412,19590,19766,20115,20566,20569,20778,20924,21361,21579,22233,22423,22473,22582,22584,22620,22787]]],["+",[2,2,[[8,2,2,0,2,[[244,1,1,0,1],[245,1,1,1,2]]]],[7416,7423]]],["heights",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17942]]],["place",[16,14,[[8,5,5,0,5,[[244,4,4,0,4],[245,1,1,4,5]]],[10,2,2,5,7,[[293,1,1,5,6],[301,1,1,6,7]]],[11,3,1,7,8,[[335,3,1,7,8]]],[12,2,2,8,10,[[353,1,1,8,9],[358,1,1,9,10]]],[13,2,2,10,12,[[367,2,2,10,12]]],[22,1,1,12,13,[[694,1,1,12,13]]],[25,1,1,13,14,[[821,1,1,13,14]]]],[7403,7404,7405,7410,7431,8820,9115,10180,10859,10963,11197,11207,17981,20924]]],["places",[83,75,[[2,1,1,0,1,[[115,1,1,0,1]]],[3,3,3,1,4,[[137,1,1,1,2],[138,1,1,2,3],[149,1,1,3,4]]],[4,2,2,4,6,[[184,1,1,4,5],[185,1,1,5,6]]],[9,3,3,6,9,[[267,2,2,6,8],[288,1,1,8,9]]],[10,12,10,9,19,[[293,2,2,9,11],[302,2,2,11,13],[303,4,3,13,16],[304,1,1,16,17],[305,1,1,17,18],[312,2,1,18,19]]],[11,24,18,19,37,[[324,2,1,19,20],[326,2,1,20,21],[327,4,2,21,23],[328,1,1,23,24],[329,5,4,24,28],[330,2,2,28,30],[333,1,1,30,31],[335,7,6,31,37]]],[13,15,15,37,52,[[377,1,1,37,38],[380,2,2,38,40],[381,1,1,40,41],[383,1,1,41,42],[386,1,1,42,43],[387,1,1,43,44],[394,2,2,44,46],[397,1,1,46,47],[398,1,1,47,48],[399,3,3,48,51],[400,1,1,51,52]]],[18,2,2,52,54,[[495,1,1,52,53],[555,1,1,53,54]]],[22,3,3,54,57,[[693,1,1,54,55],[714,1,1,55,56],[736,1,1,56,57]]],[23,6,6,57,63,[[751,1,1,57,58],[761,1,1,58,59],[763,1,1,59,60],[770,1,1,60,61],[776,1,1,61,62],[792,1,1,62,63]]],[25,5,5,63,68,[[807,2,2,63,65],[817,1,1,65,66],[837,1,1,66,67],[844,1,1,67,68]]],[27,1,1,68,69,[[871,1,1,68,69]]],[29,2,2,69,71,[[882,1,1,69,70],[885,1,1,70,71]]],[32,3,3,71,74,[[893,2,2,71,73],[895,1,1,73,74]]],[34,1,1,74,75,[[905,1,1,74,75]]]],[3554,4368,4416,4812,5771,5839,8041,8047,8636,8818,8819,9182,9183,9186,9216,9217,9241,9263,9523,9853,9900,9929,9960,9967,9992,9994,10012,10015,10028,10046,10122,10170,10173,10174,10178,10184,10185,11429,11478,11480,11507,11529,11620,11635,11768,11789,11855,11887,11911,11925,11927,11936,14151,15171,17962,18337,18800,19150,19360,19412,19590,19766,20115,20566,20569,20778,21361,21579,22233,22423,22473,22582,22584,22620,22787]]],["waves",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13059]]]]},{"k":"H1117","v":[["Bamah",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20924]]]]},{"k":"H1118","v":[["Bimhal",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10568]]]]},{"k":"H1119","v":[["*",[8,8,[[17,4,4,0,4,[[451,2,2,0,2],[454,1,1,2,3],[472,1,1,3,4]]],[18,1,1,4,5,[[488,1,1,4,5]]],[22,3,3,5,8,[[721,1,1,5,6],[722,2,2,6,8]]]],[13242,13243,13313,13777,14061,18507,18549,18552]]],["+",[1,1,[[18,1,1,0,1,[[488,1,1,0,1]]]],[14061]]],["in",[2,2,[[22,2,2,0,2,[[722,2,2,0,2]]]],[18549,18552]]],["into",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13777]]],["mine",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13242]]],["through",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18507]]],["with",[2,2,[[17,2,2,0,2,[[451,1,1,0,1],[454,1,1,1,2]]]],[13243,13313]]]]},{"k":"H1120","v":[["*",[3,3,[[3,2,2,0,2,[[137,2,2,0,2]]],[5,1,1,2,3,[[199,1,1,2,3]]]],[4359,4360,6171]]],["+",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4360]]],["Bamoth",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4359]]],["Bamothbaal",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6171]]]]},{"k":"H1121","v":[["*",[4912,3637,[[0,365,306,0,306,[[2,1,1,0,1],[3,3,3,1,4],[4,11,11,4,15],[5,5,4,15,19],[6,5,3,19,22],[7,4,2,22,24],[8,5,5,24,29],[9,16,14,29,43],[10,15,11,43,54],[11,2,2,54,56],[13,1,1,56,57],[14,2,2,57,59],[15,4,3,59,62],[16,12,10,62,72],[17,5,5,72,77],[18,4,3,77,80],[20,14,9,80,89],[21,11,11,89,100],[22,10,9,100,109],[23,16,16,109,125],[24,16,13,125,138],[25,1,1,138,139],[26,25,20,139,159],[27,2,2,159,161],[28,9,8,161,169],[29,16,15,169,184],[30,8,6,184,190],[31,3,3,190,193],[32,1,1,193,194],[33,11,11,194,205],[34,9,8,205,213],[35,34,27,213,240],[36,10,6,240,246],[37,5,5,246,251],[40,2,2,251,253],[41,7,7,253,260],[42,2,1,260,261],[44,6,4,261,265],[45,29,21,265,286],[46,1,1,286,287],[47,6,6,287,293],[48,9,8,293,301],[49,7,5,301,306]]],[1,233,208,306,514,[[50,7,7,306,313],[51,5,5,313,318],[52,7,7,318,325],[53,7,6,325,331],[54,3,3,331,334],[55,20,18,334,352],[56,5,4,352,356],[58,4,4,356,360],[59,6,4,360,364],[60,2,2,364,366],[61,13,13,366,379],[62,7,7,379,386],[63,10,8,386,394],[64,2,2,394,396],[65,10,10,396,406],[66,3,3,406,409],[67,3,3,409,412],[68,3,3,412,415],[69,3,3,415,418],[70,4,4,418,422],[71,2,2,422,424],[72,1,1,424,425],[73,3,3,425,428],[74,2,2,428,430],[76,3,2,430,432],[77,14,12,432,444],[78,26,20,444,464],[79,7,6,464,470],[80,7,6,470,476],[81,5,5,476,481],[82,3,3,481,484],[83,10,7,484,491],[84,9,7,491,498],[85,1,1,498,499],[87,5,4,499,503],[88,7,7,503,510],[89,4,4,510,514]]],[2,160,134,514,648,[[90,7,6,514,520],[91,3,3,520,523],[92,4,4,523,527],[93,3,3,527,530],[94,2,2,530,532],[95,7,7,532,539],[96,11,9,539,548],[97,15,11,548,559],[98,7,6,559,565],[99,12,10,565,575],[100,1,1,575,576],[101,5,3,576,579],[102,1,1,579,580],[103,2,2,580,582],[104,4,4,582,586],[105,7,7,586,593],[106,6,5,593,598],[107,4,4,598,602],[108,2,2,602,604],[109,3,2,604,606],[110,4,3,606,609],[111,9,7,609,616],[112,10,9,616,625],[113,11,7,625,632],[114,9,8,632,640],[115,2,2,640,642],[116,9,6,642,648]]],[3,611,437,648,1085,[[117,47,31,648,679],[118,28,16,679,695],[119,39,33,695,728],[120,36,23,728,751],[121,6,5,751,756],[122,7,6,756,762],[123,76,41,762,803],[124,23,15,803,818],[125,10,9,818,827],[126,29,17,827,844],[127,2,2,844,846],[129,19,19,846,865],[130,15,12,865,877],[131,10,10,877,887],[132,16,11,887,898],[133,6,6,898,904],[134,23,18,904,922],[135,3,3,922,925],[136,9,9,925,934],[137,5,4,934,938],[138,8,7,938,945],[139,2,2,945,947],[140,3,3,947,950],[141,11,6,950,956],[142,42,35,956,991],[143,14,9,991,1000],[144,9,6,1000,1006],[145,15,11,1006,1017],[146,1,1,1017,1018],[147,10,10,1018,1028],[148,30,19,1028,1047],[149,7,7,1047,1054],[150,25,15,1054,1069],[151,5,5,1069,1074],[152,20,11,1074,1085]]],[4,128,103,1085,1188,[[153,7,6,1085,1091],[154,11,9,1091,1100],[155,5,4,1100,1104],[156,11,7,1104,1111],[157,3,3,1111,1114],[158,6,4,1114,1118],[159,3,2,1118,1120],[160,1,1,1120,1121],[161,2,1,1121,1122],[162,3,1,1122,1123],[163,5,4,1123,1127],[164,5,5,1127,1132],[165,3,2,1132,1134],[166,1,1,1134,1135],[168,2,2,1135,1137],[169,1,1,1137,1138],[170,2,2,1138,1140],[173,9,6,1140,1146],[174,2,2,1146,1148],[175,3,3,1148,1151],[176,3,2,1151,1153],[177,2,2,1153,1155],[180,7,7,1155,1162],[181,3,3,1162,1165],[182,1,1,1165,1166],[183,8,6,1166,1172],[184,12,10,1172,1182],[185,3,3,1182,1185],[186,4,3,1185,1188]]],[5,241,159,1188,1347,[[187,2,2,1188,1190],[188,3,3,1190,1193],[189,2,2,1193,1195],[190,12,8,1195,1203],[191,8,7,1203,1210],[192,2,2,1210,1212],[193,13,6,1212,1218],[194,2,2,1218,1220],[195,3,3,1220,1223],[196,5,5,1223,1228],[197,3,3,1228,1231],[198,4,4,1231,1235],[199,15,11,1235,1246],[200,12,9,1246,1255],[201,12,10,1255,1265],[202,6,5,1265,1270],[203,22,9,1270,1279],[204,13,11,1279,1290],[205,24,16,1290,1306],[206,2,2,1306,1308],[207,22,18,1308,1326],[208,45,16,1326,1342],[210,9,5,1342,1347]]],[6,204,161,1347,1508,[[211,10,8,1347,1355],[212,5,4,1355,1359],[213,18,13,1359,1372],[214,11,8,1372,1380],[215,3,3,1380,1383],[216,10,10,1383,1393],[217,2,2,1393,1395],[218,15,13,1395,1408],[219,14,11,1408,1419],[220,16,11,1419,1430],[221,25,21,1430,1451],[222,10,7,1451,1458],[223,5,5,1458,1463],[224,2,2,1463,1465],[227,4,4,1465,1469],[228,10,7,1469,1476],[229,3,3,1476,1479],[230,33,21,1479,1500],[231,8,8,1500,1508]]],[7,8,8,1508,1516,[[232,5,5,1508,1513],[235,3,3,1513,1516]]],[8,136,114,1516,1630,[[236,9,6,1516,1522],[237,9,8,1522,1530],[238,3,3,1530,1533],[239,6,6,1533,1539],[241,2,2,1539,1541],[242,6,5,1541,1546],[243,4,4,1546,1550],[244,7,3,1550,1553],[245,5,5,1553,1558],[246,1,1,1558,1559],[247,2,2,1559,1561],[248,3,3,1561,1564],[249,14,12,1564,1576],[250,1,1,1576,1577],[251,6,6,1577,1583],[252,10,7,1583,1590],[253,1,1,1590,1591],[254,2,2,1591,1593],[255,6,3,1593,1596],[257,11,7,1596,1603],[258,2,2,1603,1605],[259,1,1,1605,1606],[260,4,4,1606,1610],[261,8,8,1610,1618],[262,1,1,1618,1619],[263,1,1,1619,1620],[265,5,5,1620,1625],[266,6,5,1625,1630]]],[9,208,157,1630,1787,[[267,6,6,1630,1636],[268,11,8,1636,1644],[269,13,11,1644,1655],[270,10,6,1655,1661],[271,2,2,1661,1663],[272,1,1,1663,1664],[273,5,4,1664,1668],[274,10,6,1668,1674],[275,12,8,1674,1682],[276,13,9,1682,1691],[277,3,3,1691,1694],[278,7,7,1694,1701],[279,17,14,1701,1715],[280,6,5,1715,1720],[281,4,2,1720,1722],[282,7,7,1722,1729],[283,6,3,1729,1732],[284,13,8,1732,1740],[285,13,11,1740,1751],[286,11,10,1751,1761],[287,16,10,1761,1771],[288,2,2,1771,1773],[289,20,14,1773,1787]]],[10,183,161,1787,1948,[[291,20,20,1787,1807],[292,17,14,1807,1821],[293,16,7,1821,1828],[294,16,14,1828,1842],[295,2,2,1842,1844],[296,2,2,1844,1846],[297,1,1,1846,1847],[298,6,6,1847,1853],[299,5,4,1853,1857],[301,12,11,1857,1868],[302,9,9,1868,1877],[303,6,6,1877,1883],[304,7,6,1883,1889],[305,9,8,1889,1897],[306,15,14,1897,1911],[307,7,7,1911,1918],[308,2,2,1918,1920],[309,5,4,1920,1924],[310,8,7,1924,1931],[311,6,5,1931,1936],[312,12,12,1936,1948]]],[11,222,174,1948,2122,[[313,2,1,1948,1949],[314,5,5,1949,1954],[315,4,4,1954,1958],[316,13,12,1958,1970],[317,1,1,1970,1971],[318,8,5,1971,1976],[320,16,12,1976,1988],[321,10,7,1988,1995],[322,14,12,1995,2007],[323,6,5,2007,2012],[324,3,1,2012,2013],[325,11,9,2013,2022],[326,22,15,2022,2037],[327,28,23,2037,2060],[328,8,6,2060,2066],[329,13,11,2066,2077],[330,10,7,2077,2084],[331,6,5,2084,2089],[332,4,4,2089,2093],[333,9,9,2093,2102],[334,7,4,2102,2106],[335,9,8,2106,2114],[336,4,4,2114,2118],[337,9,4,2118,2122]]],[12,706,429,2122,2551,[[338,32,25,2122,2147],[339,37,28,2147,2175],[340,37,16,2175,2191],[341,41,22,2191,2213],[342,29,11,2213,2224],[343,120,50,2224,2274],[344,52,30,2274,2304],[345,23,16,2304,2320],[346,63,23,2320,2343],[347,7,6,2343,2349],[348,24,20,2349,2369],[349,13,12,2369,2381],[351,1,1,2381,2382],[352,12,9,2382,2391],[353,3,3,2391,2394],[354,3,3,2394,2397],[355,9,6,2397,2403],[356,13,10,2403,2413],[357,4,4,2413,2417],[358,1,1,2417,2418],[359,7,7,2418,2425],[360,31,23,2425,2448],[361,32,18,2448,2466],[362,30,28,2466,2494],[363,35,20,2494,2514],[364,30,23,2514,2537],[365,11,8,2537,2545],[366,6,6,2545,2551]]],[13,234,175,2551,2726,[[367,3,2,2551,2553],[368,2,2,2553,2555],[371,3,3,2555,2558],[372,4,4,2558,2562],[373,1,1,2562,2563],[374,4,3,2563,2566],[375,2,2,2566,2568],[376,5,5,2568,2573],[377,9,8,2573,2581],[378,2,2,2581,2583],[379,14,10,2583,2593],[380,1,1,2593,2594],[381,1,1,2594,2595],[383,2,2,2595,2597],[384,5,5,2597,2602],[385,2,2,2602,2604],[386,16,10,2604,2614],[387,10,7,2614,2621],[388,12,9,2621,2630],[389,9,3,2630,2633],[390,11,9,2633,2642],[391,18,13,2642,2655],[392,7,7,2655,2662],[393,6,4,2662,2666],[394,16,8,2666,2674],[395,16,7,2674,2681],[396,4,4,2681,2685],[397,8,8,2685,2693],[398,4,3,2693,2696],[399,9,8,2696,2704],[400,10,6,2704,2710],[401,11,9,2710,2719],[402,7,7,2719,2726]]],[14,197,110,2726,2836,[[404,99,55,2726,2781],[405,12,5,2781,2786],[406,1,1,2786,2787],[408,3,3,2787,2790],[409,17,6,2790,2796],[410,37,18,2796,2814],[411,4,2,2814,2816],[412,24,20,2816,2836]]],[15,246,124,2836,2960,[[413,3,2,2836,2838],[414,1,1,2838,2839],[415,37,23,2839,2862],[416,1,1,2862,2863],[417,4,2,2863,2865],[418,5,2,2865,2867],[419,89,49,2867,2916],[420,3,2,2916,2918],[421,4,4,2918,2922],[422,9,7,2922,2929],[423,65,17,2929,2946],[424,16,8,2946,2954],[425,9,6,2954,2960]]],[16,15,12,2960,2972,[[427,3,1,2960,2961],[428,2,2,2961,2963],[430,1,1,2963,2964],[433,2,2,2964,2966],[434,7,6,2966,2972]]],[17,36,33,2972,3005,[[436,7,7,2972,2979],[437,1,1,2979,2980],[439,1,1,2980,2981],[440,2,2,2981,2983],[443,1,1,2983,2984],[449,1,1,2984,2985],[451,1,1,2985,2986],[452,1,1,2986,2987],[454,1,1,2987,2988],[455,1,1,2988,2989],[456,1,1,2989,2990],[460,1,1,2990,2991],[462,1,1,2991,2992],[463,1,1,2992,2993],[465,2,1,2993,2994],[467,2,2,2994,2996],[470,1,1,2996,2997],[473,2,2,2997,2999],[474,2,2,2999,3001],[476,2,2,3001,3003],[477,4,2,3003,3005]]],[18,87,82,3005,3087,[[479,1,1,3005,3006],[481,1,1,3006,3007],[485,1,1,3007,3008],[488,1,1,3008,3009],[489,1,1,3009,3010],[491,1,1,3010,3011],[494,1,1,3011,3012],[495,2,2,3012,3014],[498,1,1,3014,3015],[506,2,2,3015,3017],[508,1,1,3017,3018],[510,1,1,3018,3019],[511,1,1,3019,3020],[513,1,1,3020,3021],[522,2,2,3021,3023],[527,1,1,3023,3024],[530,1,1,3024,3025],[534,1,1,3025,3026],[535,1,1,3026,3027],[539,2,1,3027,3028],[543,1,1,3028,3029],[546,1,1,3029,3030],[549,3,3,3030,3033],[550,1,1,3033,3034],[554,1,1,3034,3035],[555,5,4,3035,3039],[556,1,1,3039,3040],[557,2,2,3040,3042],[559,1,1,3042,3043],[560,1,1,3043,3044],[563,1,1,3044,3045],[566,4,4,3045,3049],[567,2,2,3049,3051],[579,2,2,3051,3053],[580,4,3,3053,3056],[582,1,1,3056,3057],[583,2,2,3057,3059],[584,4,4,3059,3063],[586,2,2,3063,3065],[590,1,1,3065,3066],[591,2,2,3066,3068],[592,2,2,3068,3070],[593,1,1,3070,3071],[604,2,2,3071,3073],[605,3,2,3073,3075],[609,2,1,3075,3076],[614,1,1,3076,3077],[621,4,4,3077,3081],[622,1,1,3081,3082],[623,1,1,3082,3083],[624,2,2,3083,3085],[625,1,1,3085,3086],[626,1,1,3086,3087]]],[19,60,55,3087,3142,[[628,4,4,3087,3091],[629,1,1,3091,3092],[630,4,4,3092,3096],[631,4,4,3096,3100],[632,3,3,3100,3103],[633,3,3,3103,3106],[634,3,3,3106,3109],[635,3,3,3109,3112],[637,4,2,3112,3114],[640,4,3,3114,3117],[641,1,1,3117,3118],[642,2,2,3118,3120],[644,5,3,3120,3123],[646,4,4,3123,3127],[647,1,1,3127,3128],[650,3,3,3128,3131],[651,2,2,3131,3133],[654,1,1,3133,3134],[655,1,1,3134,3135],[656,1,1,3135,3136],[657,3,3,3136,3139],[658,3,3,3139,3142]]],[20,15,15,3142,3157,[[659,2,2,3142,3144],[660,3,3,3144,3147],[661,3,3,3147,3150],[662,1,1,3150,3151],[663,1,1,3151,3152],[666,1,1,3152,3153],[667,2,2,3153,3155],[668,1,1,3155,3156],[670,1,1,3156,3157]]],[21,2,2,3157,3159,[[671,1,1,3157,3158],[672,1,1,3158,3159]]],[22,84,72,3159,3231,[[679,3,3,3159,3162],[680,1,1,3162,3163],[683,1,1,3163,3164],[685,9,7,3164,3171],[686,3,3,3171,3174],[687,1,1,3174,3175],[689,2,1,3175,3176],[691,2,2,3176,3178],[692,2,2,3178,3180],[695,2,2,3180,3182],[697,2,1,3182,3183],[698,1,1,3183,3184],[699,2,2,3184,3186],[700,1,1,3186,3187],[705,1,1,3187,3188],[708,3,2,3188,3190],[709,1,1,3190,3191],[714,4,2,3191,3193],[715,6,5,3193,3198],[716,2,2,3198,3200],[717,2,2,3200,3202],[721,1,1,3202,3203],[723,1,1,3203,3204],[727,5,5,3204,3209],[729,4,3,3209,3212],[730,1,1,3212,3213],[732,4,2,3213,3215],[734,4,4,3215,3219],[735,1,1,3219,3220],[738,4,4,3220,3224],[739,1,1,3224,3225],[740,2,2,3225,3227],[741,1,1,3227,3228],[743,2,1,3228,3229],[744,2,2,3229,3231]]],[23,229,156,3231,3387,[[745,4,3,3231,3234],[746,4,3,3234,3237],[747,5,5,3237,3242],[748,1,1,3242,3243],[749,2,2,3243,3245],[750,2,2,3245,3247],[751,5,4,3247,3251],[753,1,1,3251,3252],[754,1,1,3252,3253],[755,1,1,3253,3254],[757,1,1,3254,3255],[758,1,1,3255,3256],[759,1,1,3256,3257],[760,4,4,3257,3261],[761,2,2,3261,3263],[762,1,1,3263,3264],[763,4,4,3264,3268],[764,2,2,3268,3270],[765,2,1,3270,3271],[766,3,3,3271,3274],[767,1,1,3274,3275],[768,1,1,3275,3276],[769,3,3,3276,3279],[770,5,5,3279,3284],[771,6,4,3284,3288],[772,2,2,3288,3290],[773,8,4,3290,3294],[774,1,1,3294,3295],[775,6,5,3295,3300],[776,16,11,3300,3311],[777,1,1,3311,3312],[779,17,9,3312,3321],[780,19,10,3321,3331],[781,6,3,3331,3334],[782,6,3,3334,3337],[783,3,2,3337,3339],[784,22,10,3339,3349],[785,25,13,3349,3362],[786,3,2,3362,3364],[787,8,5,3364,3369],[789,2,1,3369,3370],[790,1,1,3370,3371],[791,1,1,3371,3372],[792,2,2,3372,3374],[793,7,6,3374,3380],[794,5,3,3380,3383],[795,3,2,3383,3385],[796,2,2,3385,3387]]],[24,4,4,3387,3391,[[797,1,1,3387,3388],[799,2,2,3388,3390],[800,1,1,3390,3391]]],[25,191,165,3391,3556,[[802,1,1,3391,3392],[803,6,5,3392,3397],[804,7,7,3397,3404],[805,3,3,3404,3407],[806,3,2,3407,3409],[807,2,2,3409,3411],[808,1,1,3411,3412],[809,7,7,3412,3419],[812,6,5,3419,3424],[813,6,6,3424,3430],[814,2,2,3430,3432],[815,6,6,3432,3438],[816,1,1,3438,3439],[817,8,7,3439,3446],[818,1,1,3446,3447],[819,8,6,3447,3453],[821,7,7,3453,3460],[822,10,9,3460,3469],[823,3,3,3469,3472],[824,15,14,3472,3486],[825,5,4,3486,3490],[826,8,5,3490,3495],[827,1,1,3495,3496],[828,3,3,3496,3499],[829,3,3,3499,3502],[830,2,2,3502,3504],[831,3,3,3504,3507],[832,2,2,3507,3509],[833,2,2,3509,3511],[834,10,7,3511,3518],[835,1,1,3518,3519],[836,2,2,3519,3521],[837,2,2,3521,3523],[838,10,7,3523,3530],[839,2,2,3530,3532],[840,2,2,3532,3534],[841,3,2,3534,3536],[844,7,6,3536,3542],[845,8,5,3542,3547],[846,1,1,3547,3548],[847,6,5,3548,3553],[848,3,2,3553,3555],[849,2,1,3555,3556]]],[26,9,9,3556,3565,[[850,2,2,3556,3558],[857,1,1,3558,3559],[858,1,1,3559,3560],[859,1,1,3560,3561],[860,3,3,3561,3564],[861,1,1,3564,3565]]],[27,24,19,3565,3584,[[862,8,5,3565,3570],[863,2,1,3570,3571],[864,3,3,3571,3574],[865,2,2,3574,3576],[866,1,1,3576,3577],[870,2,2,3577,3579],[871,2,2,3579,3581],[872,2,2,3581,3583],[874,2,1,3583,3584]]],[28,15,9,3584,3593,[[876,6,3,3584,3587],[877,2,2,3587,3589],[878,7,4,3589,3593]]],[29,11,9,3593,3602,[[879,2,2,3593,3595],[880,2,1,3595,3596],[881,2,2,3596,3598],[882,1,1,3598,3599],[885,2,2,3599,3601],[887,2,1,3601,3602]]],[30,2,2,3602,3604,[[888,2,2,3602,3604]]],[31,3,2,3604,3606,[[889,1,1,3604,3605],[892,2,1,3605,3606]]],[32,6,6,3606,3612,[[893,1,1,3606,3607],[897,2,2,3607,3609],[898,2,2,3609,3611],[899,1,1,3611,3612]]],[35,8,4,3612,3616,[[906,6,2,3612,3614],[907,2,2,3614,3616]]],[36,10,6,3616,3622,[[909,6,3,3616,3619],[910,4,3,3619,3622]]],[37,13,10,3622,3632,[[911,4,2,3622,3624],[914,1,1,3624,3625],[916,3,3,3625,3628],[919,3,2,3628,3630],[920,2,2,3630,3632]]],[38,6,5,3632,3637,[[925,1,1,3632,3633],[927,3,3,3633,3636],[928,2,1,3636,3637]]]],[71,96,104,105,109,112,115,118,121,124,127,131,133,135,137,139,141,147,155,165,166,172,199,201,206,213,223,224,229,235,236,237,238,240,241,254,255,256,257,259,263,265,266,271,276,277,279,281,283,285,287,289,291,297,302,303,348,362,363,392,396,397,398,409,413,414,416,420,421,422,423,424,431,432,434,438,443,469,494,495,515,516,517,518,520,522,523,524,526,549,550,553,554,555,556,557,559,560,563,567,574,576,578,579,581,582,587,589,591,594,595,596,597,598,599,606,615,627,628,629,631,635,638,639,642,661,662,664,667,668,669,670,671,674,677,678,680,684,726,728,732,733,735,740,742,744,745,747,748,751,752,753,754,756,758,759,764,769,770,778,782,796,800,807,808,827,828,829,830,831,835,836,837,840,842,844,845,846,847,849,850,853,854,865,874,889,890,901,916,928,939,943,960,979,982,985,987,988,993,998,1000,1004,1005,1006,1007,1016,1028,1033,1034,1035,1036,1037,1040,1045,1046,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1071,1072,1073,1075,1078,1079,1085,1086,1115,1116,1117,1118,1122,1123,1124,1130,1145,1241,1245,1253,1257,1263,1265,1284,1289,1290,1319,1367,1368,1379,1386,1391,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1407,1408,1409,1410,1411,1412,1413,1449,1452,1453,1456,1459,1460,1470,1474,1475,1481,1482,1484,1495,1505,1506,1518,1519,1529,1531,1532,1533,1539,1541,1544,1545,1548,1554,1556,1564,1576,1577,1579,1588,1589,1590,1592,1593,1594,1601,1621,1623,1624,1626,1630,1632,1646,1647,1651,1660,1661,1664,1666,1667,1668,1669,1670,1671,1672,1673,1674,1676,1677,1679,1680,1681,1682,1687,1689,1690,1692,1746,1748,1768,1777,1779,1786,1797,1800,1813,1816,1821,1840,1842,1843,1844,1847,1851,1853,1856,1858,1859,1866,1867,1869,1875,1880,1881,1882,1885,1886,1891,1892,1897,1899,1904,1905,1911,1918,1921,1939,1948,1949,1950,1953,1956,1957,1959,1962,1964,1982,1984,1986,1990,2002,2004,2005,2027,2029,2032,2056,2061,2073,2081,2082,2086,2108,2137,2142,2156,2182,2188,2194,2197,2217,2292,2293,2294,2297,2302,2304,2305,2314,2322,2323,2331,2333,2334,2336,2337,2340,2344,2345,2346,2351,2355,2356,2357,2360,2363,2364,2365,2366,2368,2371,2374,2379,2380,2381,2394,2396,2398,2401,2412,2413,2422,2426,2430,2433,2436,2437,2440,2458,2464,2466,2467,2478,2479,2484,2503,2512,2516,2526,2528,2530,2531,2532,2535,2550,2551,2560,2561,2565,2569,2654,2655,2656,2659,2670,2671,2678,2691,2696,2705,2706,2719,2721,2738,2743,2747,2750,2752,2753,2756,2759,2764,2765,2772,2780,2783,2786,2791,2797,2798,2809,2837,2841,2858,2863,2865,2867,2869,2871,2874,2889,2902,2908,2910,2912,2913,2914,2915,2917,2919,2923,2930,2931,2935,2939,2941,2944,2947,2948,2953,2954,2955,2956,2962,2965,2971,2978,2981,2983,2986,2988,2989,2990,2991,2992,2993,2999,3046,3050,3052,3054,3133,3141,3170,3182,3197,3199,3202,3204,3206,3217,3220,3222,3235,3237,3240,3247,3248,3249,3253,3261,3266,3268,3283,3299,3320,3335,3346,3347,3369,3371,3372,3384,3387,3394,3397,3401,3404,3412,3414,3420,3421,3426,3436,3445,3446,3448,3454,3455,3456,3457,3461,3469,3471,3502,3510,3514,3515,3518,3523,3524,3553,3570,3572,3573,3575,3576,3577,3604,3606,3607,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3653,3656,3657,3658,3660,3661,3663,3665,3668,3670,3672,3676,3678,3680,3683,3685,3687,3690,3691,3692,3694,3695,3696,3700,3701,3702,3704,3707,3709,3710,3711,3712,3714,3716,3717,3720,3721,3722,3724,3726,3727,3728,3730,3731,3732,3733,3734,3735,3737,3738,3740,3742,3743,3745,3746,3747,3748,3758,3759,3762,3765,3766,3770,3771,3772,3773,3776,3777,3778,3781,3782,3784,3785,3786,3788,3790,3794,3796,3798,3801,3804,3825,3833,3835,3837,3846,3850,3857,3858,3859,3862,3865,3867,3868,3871,3873,3874,3877,3879,3880,3883,3885,3886,3889,3891,3892,3895,3897,3898,3901,3903,3904,3907,3909,3910,3913,3915,3916,3919,3921,3922,3925,3927,3928,3931,3933,3937,3938,3945,3947,3948,3949,3950,3952,3953,3955,3956,3957,3958,3959,3961,3963,3964,3967,3969,3970,3972,3975,3982,3983,3984,3987,3996,4000,4002,4003,4004,4005,4006,4007,4008,4010,4011,4012,4013,4014,4015,4016,4017,4028,4052,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4099,4101,4107,4108,4110,4113,4114,4115,4118,4126,4135,4137,4138,4141,4146,4147,4155,4161,4162,4171,4177,4178,4179,4182,4185,4191,4195,4196,4201,4202,4204,4206,4221,4231,4232,4234,4235,4246,4249,4250,4253,4254,4256,4258,4259,4262,4263,4264,4265,4266,4268,4273,4276,4277,4278,4279,4280,4281,4283,4285,4289,4291,4298,4299,4312,4323,4324,4330,4333,4335,4336,4337,4339,4350,4364,4369,4375,4376,4377,4378,4379,4380,4385,4391,4434,4435,4449,4461,4463,4477,4478,4479,4482,4484,4485,4490,4491,4493,4494,4497,4498,4500,4501,4504,4507,4508,4509,4510,4512,4515,4517,4518,4519,4522,4524,4525,4526,4527,4529,4530,4531,4533,4534,4536,4537,4540,4551,4552,4553,4554,4555,4557,4558,4562,4565,4566,4572,4574,4575,4579,4580,4586,4588,4596,4604,4610,4616,4621,4625,4628,4631,4634,4637,4640,4644,4648,4649,4666,4670,4672,4673,4676,4680,4694,4706,4711,4718,4719,4720,4724,4725,4727,4729,4730,4735,4736,4743,4746,4747,4749,4751,4752,4755,4757,4758,4759,4761,4763,4765,4798,4799,4800,4811,4818,4829,4830,4833,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4847,4853,4855,4860,4879,4880,4881,4882,4883,4884,4886,4887,4888,4890,4891,4892,4895,4920,4923,4928,4930,4931,4942,4946,4947,4950,4957,4960,4967,4971,4975,4986,4989,4991,4993,5013,5014,5029,5044,5048,5049,5050,5062,5067,5082,5088,5093,5106,5107,5114,5115,5142,5159,5192,5210,5214,5227,5229,5252,5258,5265,5268,5271,5278,5285,5291,5353,5356,5384,5389,5394,5452,5462,5463,5464,5465,5467,5476,5477,5504,5508,5517,5532,5541,5549,5552,5643,5652,5664,5665,5666,5667,5668,5680,5701,5708,5710,5730,5737,5741,5747,5750,5751,5763,5766,5772,5777,5778,5802,5804,5807,5809,5810,5811,5819,5834,5846,5847,5848,5852,5853,5870,5871,5892,5894,5902,5914,5915,5916,5917,5918,5922,5931,5932,5935,5936,5937,5940,5941,5944,5946,5950,5955,5977,5988,5994,5995,5999,6000,6033,6034,6054,6055,6063,6068,6075,6076,6084,6085,6121,6126,6129,6131,6132,6136,6137,6160,6164,6167,6169,6176,6177,6178,6179,6182,6183,6185,6188,6191,6192,6193,6194,6196,6197,6200,6201,6203,6208,6210,6214,6215,6216,6219,6222,6223,6265,6266,6269,6270,6273,6274,6277,6278,6279,6281,6283,6287,6288,6289,6291,6294,6295,6296,6303,6304,6307,6309,6310,6313,6314,6321,6322,6329,6330,6331,6337,6338,6344,6345,6352,6353,6360,6361,6368,6369,6370,6372,6374,6381,6382,6384,6385,6386,6387,6388,6389,6390,6391,6393,6394,6400,6401,6407,6408,6415,6421,6422,6435,6436,6437,6438,6439,6441,6446,6447,6450,6451,6453,6456,6457,6458,6459,6460,6480,6485,6505,6508,6509,6510,6517,6518,6522,6525,6529,6530,6543,6549,6551,6553,6556,6570,6573,6574,6575,6576,6577,6579,6580,6581,6582,6583,6595,6599,6600,6602,6604,6605,6610,6611,6622,6623,6624,6629,6635,6655,6656,6657,6660,6661,6662,6665,6683,6684,6687,6706,6708,6729,6732,6737,6738,6741,6742,6747,6748,6749,6750,6751,6752,6753,6755,6756,6759,6772,6778,6780,6782,6784,6785,6789,6811,6812,6815,6817,6818,6819,6820,6821,6822,6826,6828,6829,6830,6831,6833,6834,6835,6837,6838,6841,6842,6843,6844,6854,6856,6857,6858,6859,6860,6861,6862,6863,6865,6870,6871,6872,6878,6882,6883,6884,6885,6887,6889,6891,6908,6925,6926,6982,6983,6985,6991,6995,7009,7015,7016,7018,7019,7023,7036,7046,7054,7055,7057,7061,7067,7068,7069,7072,7073,7075,7077,7078,7079,7080,7081,7082,7084,7085,7086,7089,7090,7102,7107,7108,7112,7115,7120,7122,7125,7126,7128,7129,7130,7138,7139,7203,7205,7207,7213,7215,7216,7220,7232,7235,7245,7252,7261,7262,7264,7268,7269,7274,7282,7289,7292,7301,7308,7312,7313,7314,7317,7338,7341,7353,7356,7358,7359,7360,7370,7372,7374,7380,7392,7393,7394,7420,7429,7436,7439,7445,7453,7462,7472,7486,7501,7507,7509,7511,7526,7540,7547,7548,7550,7555,7557,7558,7559,7560,7566,7596,7600,7605,7613,7614,7615,7630,7631,7635,7671,7673,7674,7676,7693,7707,7708,7757,7760,7761,7794,7795,7796,7798,7799,7800,7807,7816,7826,7855,7869,7871,7878,7905,7910,7911,7919,7921,7922,7924,7926,7930,7932,7961,7981,7984,7985,7997,8000,8011,8015,8016,8017,8021,8026,8027,8034,8035,8039,8040,8056,8057,8059,8061,8062,8064,8067,8074,8083,8084,8085,8095,8096,8104,8106,8109,8115,8118,8120,8121,8122,8124,8125,8128,8129,8136,8145,8160,8186,8187,8190,8194,8212,8219,8221,8225,8226,8227,8230,8231,8232,8233,8236,8237,8238,8239,8241,8242,8243,8246,8248,8250,8251,8254,8259,8260,8280,8286,8289,8291,8295,8300,8310,8312,8317,8318,8320,8321,8340,8342,8344,8345,8346,8347,8349,8350,8352,8353,8354,8357,8362,8367,8372,8383,8416,8425,8429,8431,8434,8435,8436,8437,8445,8459,8474,8476,8480,8490,8496,8497,8498,8500,8505,8511,8513,8515,8516,8527,8528,8529,8532,8533,8535,8543,8546,8555,8556,8560,8561,8564,8567,8575,8576,8577,8578,8582,8586,8587,8588,8592,8593,8594,8597,8599,8601,8647,8648,8654,8662,8664,8671,8673,8675,8677,8679,8682,8685,8686,8687,8689,8690,8722,8724,8725,8726,8728,8729,8730,8734,8736,8738,8742,8743,8747,8749,8750,8753,8755,8759,8761,8769,8771,8774,8775,8777,8778,8783,8792,8795,8799,8802,8804,8805,8809,8816,8822,8835,8836,8837,8838,8839,8842,8846,8847,8848,8849,8850,8856,8857,8858,8860,8861,8862,8863,8874,8875,8883,8885,8897,8909,8948,8986,8994,9004,9010,9024,9048,9057,9071,9072,9073,9110,9115,9120,9121,9128,9131,9134,9141,9143,9144,9151,9153,9166,9167,9168,9172,9174,9175,9182,9184,9186,9195,9196,9197,9211,9215,9219,9223,9238,9239,9242,9249,9250,9253,9257,9267,9273,9274,9276,9282,9284,9286,9289,9290,9291,9296,9304,9305,9309,9311,9312,9313,9314,9317,9329,9330,9334,9335,9336,9337,9340,9361,9372,9397,9401,9403,9406,9411,9413,9415,9423,9435,9437,9443,9461,9464,9473,9477,9480,9488,9489,9491,9504,9506,9520,9521,9522,9529,9530,9531,9532,9550,9554,9556,9558,9566,9567,9577,9579,9587,9603,9604,9607,9608,9609,9610,9617,9619,9620,9631,9639,9640,9641,9669,9675,9702,9703,9705,9706,9728,9732,9736,9739,9743,9744,9746,9751,9752,9753,9755,9756,9757,9758,9765,9770,9776,9782,9785,9794,9795,9796,9799,9800,9801,9806,9808,9816,9822,9823,9828,9830,9831,9833,9841,9850,9871,9872,9873,9874,9876,9880,9881,9882,9895,9896,9897,9898,9902,9904,9905,9909,9910,9912,9913,9917,9919,9920,9921,9923,9925,9926,9927,9930,9932,9933,9934,9935,9937,9938,9939,9942,9943,9947,9948,9949,9950,9952,9953,9955,9957,9958,9962,9963,9964,9965,9966,9968,9970,9983,9984,9990,9991,9992,10000,10004,10005,10007,10014,10017,10024,10025,10026,10028,10033,10042,10050,10061,10063,10064,10073,10081,10098,10099,10110,10116,10119,10120,10121,10125,10126,10128,10137,10138,10143,10145,10146,10148,10157,10159,10171,10175,10178,10180,10195,10196,10199,10201,10204,10208,10210,10220,10229,10244,10245,10247,10257,10258,10259,10260,10261,10269,10271,10275,10280,10283,10284,10285,10286,10287,10288,10289,10290,10291,10292,10293,10294,10295,10296,10298,10301,10307,10309,10310,10311,10312,10313,10314,10315,10316,10322,10324,10327,10329,10331,10333,10334,10336,10337,10338,10339,10340,10348,10349,10351,10353,10356,10358,10360,10362,10363,10370,10371,10372,10373,10374,10375,10376,10377,10378,10380,10382,10383,10384,10385,10386,10387,10389,10391,10392,10393,10398,10400,10401,10402,10403,10404,10405,10406,10409,10410,10411,10412,10419,10420,10422,10427,10429,10431,10432,10433,10434,10436,10439,10442,10443,10446,10451,10455,10456,10457,10470,10471,10472,10473,10474,10475,10476,10477,10478,10479,10480,10481,10482,10483,10484,10487,10488,10489,10490,10491,10492,10493,10494,10495,10496,10497,10498,10499,10500,10501,10503,10504,10505,10506,10507,10508,10510,10511,10515,10516,10517,10518,10519,10520,10524,10525,10531,10536,10537,10538,10539,10542,10543,10545,10546,10547,10548,10549,10551,10552,10554,10555,10556,10558,10560,10561,10562,10564,10565,10566,10568,10569,10570,10571,10573,10574,10575,10578,10581,10585,10587,10591,10593,10596,10600,10602,10605,10609,10610,10612,10613,10614,10615,10618,10619,10620,10621,10622,10623,10626,10627,10629,10630,10631,10633,10634,10635,10636,10638,10645,10647,10651,10655,10656,10658,10659,10661,10665,10666,10667,10671,10673,10679,10684,10685,10695,10697,10699,10701,10703,10704,10707,10708,10710,10711,10712,10714,10715,10716,10717,10718,10719,10721,10723,10727,10734,10736,10738,10744,10745,10746,10749,10750,10752,10777,10795,10796,10797,10798,10799,10800,10801,10806,10808,10833,10858,10862,10872,10874,10876,10900,10901,10902,10905,10906,10907,10908,10909,10910,10913,10914,10916,10918,10919,10922,10926,10927,10929,10931,10933,10954,10969,10970,10971,10973,10974,10975,10981,10984,10986,10989,10991,10992,10993,10994,10995,10996,10997,10998,10999,11000,11001,11002,11003,11004,11005,11006,11007,11010,11011,11015,11016,11017,11018,11019,11020,11021,11035,11036,11037,11038,11039,11040,11041,11042,11043,11044,11045,11046,11047,11048,11049,11050,11051,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11078,11079,11081,11083,11084,11085,11086,11087,11088,11091,11092,11096,11098,11099,11101,11102,11105,11106,11107,11109,11110,11111,11112,11114,11115,11116,11118,11119,11123,11125,11126,11127,11128,11129,11130,11131,11132,11133,11134,11135,11138,11141,11143,11144,11147,11148,11149,11151,11152,11154,11163,11165,11183,11186,11188,11190,11192,11195,11199,11223,11225,11270,11278,11280,11291,11293,11298,11312,11327,11348,11354,11355,11393,11395,11397,11410,11411,11412,11413,11417,11428,11431,11432,11433,11435,11436,11437,11450,11453,11458,11459,11460,11461,11462,11463,11465,11469,11471,11474,11476,11491,11524,11539,11549,11550,11552,11565,11567,11578,11587,11588,11597,11600,11601,11606,11609,11610,11618,11621,11624,11625,11626,11629,11631,11638,11641,11644,11645,11646,11649,11650,11651,11652,11653,11654,11655,11657,11659,11667,11678,11680,11684,11692,11697,11699,11702,11703,11704,11705,11708,11709,11711,11715,11716,11717,11718,11721,11722,11727,11728,11729,11733,11735,11749,11750,11753,11754,11755,11756,11760,11763,11764,11765,11767,11770,11771,11772,11774,11776,11791,11792,11800,11802,11803,11804,11805,11812,11833,11836,11848,11853,11855,11859,11860,11868,11870,11871,11872,11873,11895,11907,11908,11909,11910,11914,11915,11917,11928,11929,11933,11934,11941,11945,11953,11955,11966,11969,11970,11971,11973,11978,11979,11980,11981,11983,11994,11995,11998,12001,12002,12004,12013,12028,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12041,12042,12043,12044,12045,12046,12047,12048,12051,12052,12053,12056,12057,12058,12059,12060,12061,12062,12063,12064,12065,12066,12067,12068,12069,12070,12071,12072,12073,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12084,12085,12087,12088,12098,12099,12105,12106,12107,12111,12170,12171,12172,12174,12175,12176,12177,12178,12180,12203,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12216,12219,12220,12234,12236,12239,12249,12254,12258,12259,12267,12268,12270,12272,12273,12274,12277,12278,12279,12280,12281,12282,12283,12285,12286,12295,12296,12297,12302,12317,12329,12330,12331,12333,12335,12336,12337,12338,12339,12341,12342,12343,12344,12345,12346,12347,12348,12350,12351,12352,12356,12357,12358,12373,12384,12387,12411,12419,12426,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12439,12440,12441,12442,12443,12444,12445,12454,12455,12456,12457,12458,12459,12460,12461,12462,12463,12464,12465,12466,12467,12468,12469,12470,12471,12472,12473,12474,12475,12476,12477,12478,12479,12480,12482,12483,12493,12507,12510,12512,12513,12534,12535,12550,12558,12577,12579,12585,12587,12588,12591,12592,12593,12594,12595,12597,12598,12599,12600,12601,12602,12603,12605,12610,12612,12613,12619,12625,12647,12648,12650,12652,12659,12669,12671,12673,12684,12687,12695,12696,12699,12729,12748,12757,12790,12822,12827,12844,12846,12847,12848,12858,12859,12871,12872,12873,12874,12875,12882,12887,12892,12941,12955,12958,13033,13202,13259,13265,13314,13336,13374,13467,13495,13512,13565,13630,13634,13728,13800,13825,13838,13850,13916,13922,13935,13938,13952,13967,14016,14063,14067,14082,14117,14162,14163,14201,14309,14314,14350,14379,14399,14445,14599,14613,14688,14721,14772,14780,14836,14878,14943,15001,15004,15020,15035,15108,15117,15118,15119,15122,15196,15213,15215,15239,15249,15300,15332,15348,15356,15373,15381,15394,15541,15549,15556,15562,15566,15612,15688,15689,15707,15714,15720,15730,15764,15765,15822,15826,15828,15844,15846,15864,16124,16125,16129,16132,16163,16229,16308,16312,16316,16317,16332,16344,16360,16364,16385,16387,16401,16408,16410,16415,16434,16456,16466,16467,16476,16491,16493,16500,16510,16518,16524,16537,16541,16543,16560,16576,16582,16599,16606,16633,16634,16657,16661,16748,16769,16771,16798,16818,16827,16875,16879,16898,16938,16943,16951,16952,16961,17059,17063,17070,17092,17100,17180,17203,17241,17252,17255,17268,17289,17292,17312,17316,17328,17336,17340,17341,17369,17377,17378,17389,17411,17469,17478,17487,17510,17535,17543,17557,17655,17656,17658,17686,17740,17783,17785,17786,17787,17788,17791,17796,17809,17810,17813,17835,17898,17907,17924,17940,17949,17986,17992,18015,18031,18045,18052,18072,18163,18218,18226,18256,18333,18352,18354,18355,18364,18373,18390,18391,18409,18413,18419,18511,18572,18651,18653,18656,18658,18661,18685,18691,18693,18710,18724,18736,18755,18756,18758,18759,18768,18825,18830,18831,18835,18848,18859,18862,18874,18917,18930,18942,18947,18948,18949,18974,18981,18995,19016,19021,19023,19024,19026,19049,19065,19075,19090,19110,19137,19149,19150,19151,19201,19221,19248,19280,19309,19319,19338,19339,19350,19351,19359,19376,19405,19409,19412,19413,19416,19423,19437,19441,19465,19472,19478,19491,19525,19535,19537,19555,19573,19592,19594,19595,19596,19597,19599,19603,19616,19619,19622,19638,19641,19656,19660,19687,19703,19706,19708,19711,19720,19738,19739,19740,19743,19747,19749,19750,19761,19763,19766,19770,19796,19824,19826,19827,19828,19829,19831,19837,19839,19842,19843,19846,19850,19851,19852,19853,19854,19856,19868,19874,19875,19877,19887,19896,19901,19918,19929,19937,19946,19947,19948,19949,19950,19952,19954,19955,19956,19957,19958,19959,19963,19964,19966,19967,19968,19969,19970,19971,19972,19973,19975,19976,19983,19999,20000,20001,20002,20003,20041,20047,20076,20125,20126,20128,20129,20133,20145,20155,20160,20170,20199,20206,20255,20271,20277,20286,20326,20367,20387,20422,20467,20493,20495,20496,20498,20500,20503,20505,20506,20512,20513,20519,20527,20530,20542,20545,20547,20556,20565,20568,20579,20609,20610,20612,20615,20616,20619,20621,20656,20657,20659,20668,20670,20682,20683,20689,20698,20702,20707,20710,20725,20734,20744,20747,20749,20751,20753,20756,20764,20782,20783,20788,20790,20798,20807,20827,20851,20853,20859,20863,20868,20869,20898,20899,20913,20916,20922,20926,20941,20946,20950,20953,20954,20956,20958,20963,20964,20972,20978,20994,21000,21009,21011,21014,21016,21017,21019,21022,21024,21030,21032,21043,21044,21046,21054,21058,21072,21077,21081,21085,21086,21087,21088,21093,21102,21123,21132,21136,21159,21169,21178,21185,21201,21206,21209,21225,21232,21244,21250,21266,21282,21287,21290,21292,21297,21304,21310,21315,21346,21349,21360,21376,21400,21406,21408,21413,21415,21418,21422,21427,21439,21449,21465,21481,21523,21579,21582,21590,21591,21595,21597,21604,21606,21608,21614,21624,21648,21661,21668,21671,21672,21673,21685,21701,21713,21740,21743,21978,21989,22031,22046,22050,22077,22082,22095,22097,22102,22104,22105,22109,22129,22132,22133,22134,22139,22159,22220,22221,22234,22239,22241,22250,22279,22292,22294,22303,22334,22339,22349,22351,22359,22362,22365,22377,22390,22396,22407,22415,22478,22481,22502,22522,22530,22532,22578,22595,22636,22640,22653,22654,22670,22788,22795,22813,22814,22841,22852,22854,22857,22859,22878,22879,22885,22936,22957,22958,22961,23008,23012,23023,23025,23095,23123,23126,23137,23144]]],["+",[303,287,[[0,12,12,0,12,[[5,1,1,0,1],[14,1,1,1,2],[16,2,2,2,4],[17,2,2,4,6],[20,1,1,6,7],[21,3,3,7,10],[24,1,1,10,11],[47,1,1,11,12]]],[1,6,6,12,18,[[59,1,1,12,13],[61,1,1,13,14],[78,2,2,14,16],[79,1,1,16,17],[87,1,1,17,18]]],[2,19,19,18,37,[[90,1,1,18,19],[93,2,2,19,21],[95,1,1,21,22],[96,1,1,22,23],[98,1,1,23,24],[102,1,1,24,25],[105,1,1,25,26],[106,1,1,26,27],[109,2,2,27,29],[111,1,1,29,30],[112,1,1,30,31],[113,1,1,31,32],[114,1,1,32,33],[116,4,4,33,37]]],[3,67,66,37,103,[[117,15,15,37,52],[119,8,8,52,60],[120,7,7,60,67],[123,12,12,67,79],[124,5,4,79,83],[130,1,1,83,84],[131,3,3,84,87],[132,1,1,87,88],[133,1,1,88,89],[134,1,1,89,90],[141,1,1,90,91],[142,3,3,91,94],[144,3,3,94,97],[145,4,4,97,101],[148,1,1,101,102],[152,1,1,102,103]]],[4,5,5,103,108,[[155,1,1,103,104],[175,1,1,104,105],[176,1,1,105,106],[177,1,1,106,107],[185,1,1,107,108]]],[5,4,4,108,112,[[188,1,1,108,109],[190,1,1,109,110],[207,2,2,110,112]]],[6,14,12,112,124,[[213,1,1,112,113],[214,3,2,113,115],[218,1,1,115,116],[221,2,2,116,118],[222,2,1,118,119],[227,2,2,119,121],[228,1,1,121,122],[229,1,1,122,123],[231,1,1,123,124]]],[8,5,5,124,129,[[236,1,1,124,125],[244,1,1,125,126],[249,1,1,126,127],[253,1,1,127,128],[255,1,1,128,129]]],[9,12,12,129,141,[[268,1,1,129,130],[270,1,1,130,131],[274,1,1,131,132],[275,1,1,132,133],[278,1,1,133,134],[279,1,1,134,135],[283,1,1,135,136],[287,2,2,136,138],[288,2,2,138,140],[289,1,1,140,141]]],[10,6,6,141,147,[[293,1,1,141,142],[299,2,2,142,144],[301,1,1,144,145],[302,1,1,145,146],[310,1,1,146,147]]],[11,8,8,147,155,[[314,2,2,147,149],[317,1,1,149,150],[321,1,1,150,151],[322,1,1,151,152],[326,1,1,152,153],[327,1,1,153,154],[332,1,1,154,155]]],[12,20,19,155,174,[[342,1,1,155,156],[343,1,1,156,157],[345,1,1,157,158],[346,1,1,158,159],[348,1,1,159,160],[349,2,2,160,162],[354,1,1,162,163],[355,1,1,163,164],[360,4,3,164,167],[361,1,1,167,168],[363,4,4,168,172],[364,1,1,172,173],[365,1,1,173,174]]],[13,15,14,174,188,[[377,1,1,174,175],[379,1,1,175,176],[391,2,2,176,178],[392,1,1,178,179],[393,1,1,179,180],[394,1,1,180,181],[397,2,2,181,183],[399,1,1,183,184],[401,5,4,184,188]]],[14,37,33,188,221,[[404,1,1,188,189],[405,1,1,189,190],[409,1,1,190,191],[410,19,16,191,207],[412,15,14,207,221]]],[15,11,8,221,229,[[421,1,1,221,222],[422,1,1,222,223],[423,7,4,223,227],[424,1,1,227,228],[425,1,1,228,229]]],[17,3,3,229,232,[[440,1,1,229,230],[451,1,1,230,231],[476,1,1,231,232]]],[18,12,11,232,243,[[489,1,1,232,233],[495,2,2,233,235],[498,1,1,235,236],[506,1,1,236,237],[522,1,1,237,238],[539,2,1,238,239],[555,1,1,239,240],[566,1,1,240,241],[591,2,2,241,243]]],[19,1,1,243,244,[[658,1,1,243,244]]],[22,6,6,244,250,[[683,1,1,244,245],[717,1,1,245,246],[729,1,1,246,247],[730,1,1,247,248],[732,1,1,248,249],[734,1,1,249,250]]],[23,7,7,250,257,[[771,1,1,250,251],[784,2,2,251,253],[785,2,2,253,255],[793,2,2,255,257]]],[25,26,23,257,280,[[817,2,2,257,259],[822,2,2,259,261],[824,6,5,261,266],[826,5,4,266,270],[841,1,1,270,271],[844,3,3,271,274],[845,3,2,274,276],[846,1,1,276,277],[847,2,2,277,279],[849,1,1,279,280]]],[26,3,3,280,283,[[850,2,2,280,282],[860,1,1,282,283]]],[28,1,1,283,284,[[878,1,1,283,284]]],[29,1,1,284,285,[[880,1,1,284,285]]],[31,1,1,285,286,[[892,1,1,285,286]]],[37,1,1,286,287,[[914,1,1,286,287]]]],[147,362,409,424,431,432,520,549,559,563,669,1452,1779,1859,2337,2366,2396,2659,2750,2798,2809,2871,2912,2955,3054,3204,3248,3320,3335,3394,3420,3456,3514,3573,3575,3576,3577,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3704,3707,3714,3720,3726,3731,3732,3735,3746,3766,3773,3778,3782,3786,3790,3865,3871,3877,3883,3889,3895,3901,3907,3913,3919,3925,3931,3947,3955,3963,3964,4137,4161,4162,4177,4196,4254,4273,4477,4491,4493,4551,4588,4596,4604,4610,4616,4621,4625,4729,4882,4993,5517,5532,5549,5834,5871,5914,6391,6401,6583,6605,6610,6750,6860,6865,6883,6985,6991,7009,7036,7112,7235,7393,7540,7693,7761,8056,8122,8221,8238,8291,8345,8459,8582,8586,8647,8648,8662,8837,9071,9073,9143,9182,9443,9558,9567,9669,9757,9796,9910,9950,10116,10446,10487,10615,10619,10684,10734,10752,10874,10901,10986,11007,11010,11020,11084,11085,11086,11107,11132,11154,11433,11462,11709,11728,11749,11760,11770,11870,11871,11933,11971,11973,11978,11979,12088,12105,12180,12203,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12216,12219,12220,12254,12270,12272,12273,12274,12277,12278,12279,12280,12281,12282,12285,12286,12295,12513,12558,12592,12610,12612,12613,12659,12699,12958,13259,13916,14067,14162,14163,14201,14309,14599,14836,15117,15373,15826,15828,17289,17740,18419,18685,18710,18724,18758,19599,19952,19955,19967,19972,20128,20129,20788,20790,20964,20972,21016,21019,21022,21024,21030,21085,21086,21088,21093,21523,21591,21595,21597,21606,21608,21648,21661,21671,21713,21740,21743,22050,22349,22390,22578,22936]]],["Beno",[2,2,[[12,2,2,0,2,[[361,2,2,0,2]]]],[11041,11042]]],["Children's",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16879]]],["Son",[62,62,[[18,1,1,0,1,[[479,1,1,0,1]]],[25,61,61,1,62,[[803,2,2,1,3],[804,5,5,3,8],[805,1,1,8,9],[807,1,1,9,10],[809,4,4,10,14],[812,2,2,14,16],[813,5,5,16,21],[814,1,1,21,22],[815,2,2,22,24],[816,1,1,24,25],[817,1,1,25,26],[818,1,1,26,27],[821,2,2,27,29],[822,2,2,29,31],[823,2,2,31,33],[824,2,2,33,35],[825,2,2,35,37],[826,1,1,37,38],[827,1,1,38,39],[829,3,3,39,42],[830,2,2,42,44],[831,2,2,44,46],[832,1,1,46,47],[833,2,2,47,49],[834,2,2,49,51],[835,1,1,51,52],[836,1,1,52,53],[837,1,1,53,54],[838,2,2,54,56],[839,1,1,56,57],[841,1,1,57,58],[844,2,2,58,60],[845,1,1,60,61],[848,1,1,61,62]]]],[13952,20493,20495,20503,20505,20506,20512,20519,20545,20565,20609,20610,20612,20616,20657,20670,20682,20689,20698,20702,20707,20710,20734,20744,20756,20764,20827,20898,20941,20946,20953,20994,21000,21009,21043,21058,21072,21085,21102,21159,21169,21178,21185,21201,21206,21225,21232,21250,21266,21282,21304,21315,21346,21376,21400,21408,21427,21481,21579,21590,21604,21685]]],["appointed",[3,3,[[18,2,2,0,2,[[556,1,1,0,1],[579,1,1,1,2]]],[19,1,1,2,3,[[658,1,1,2,3]]]],[15196,15541,17292]]],["arrows",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20367]]],["born",[2,2,[[0,1,1,0,1,[[14,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[363,17340]]],["bough",[2,1,[[0,2,1,0,1,[[48,2,1,0,1]]]],[1495]]],["branch",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15213]]],["breed",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5772]]],["calves",[2,2,[[8,2,2,0,2,[[241,2,2,0,2]]]],[7338,7341]]],["child",[9,9,[[4,1,1,0,1,[[177,1,1,0,1]]],[9,1,1,1,2,[[278,1,1,1,2]]],[10,4,4,2,6,[[293,3,3,2,5],[303,1,1,5,6]]],[11,1,1,6,7,[[316,1,1,6,7]]],[20,1,1,7,8,[[662,1,1,7,8]]],[23,1,1,8,9,[[764,1,1,8,9]]]],[5552,8300,8835,8836,8842,9186,9617,17389,19437]]],["children",[1497,1241,[[0,41,36,0,36,[[2,1,1,0,1],[9,3,3,1,4],[10,1,1,4,5],[17,1,1,5,6],[18,1,1,6,7],[21,1,1,7,8],[22,5,4,8,12],[24,2,2,12,14],[29,1,1,14,15],[30,3,1,15,16],[31,2,2,16,18],[32,1,1,18,19],[35,9,9,19,28],[36,1,1,28,29],[44,3,2,29,31],[45,1,1,31,32],[48,2,2,32,34],[49,3,2,34,36]]],[1,132,126,36,162,[[50,5,5,36,41],[51,2,2,41,43],[52,6,6,43,49],[53,2,2,49,51],[54,3,3,51,54],[55,9,8,54,62],[56,3,3,62,65],[58,3,3,65,68],[59,2,2,68,70],[60,2,2,70,72],[61,10,10,72,82],[62,5,5,82,87],[63,10,8,87,95],[64,2,2,95,97],[65,10,10,97,107],[66,3,3,107,110],[68,3,3,110,113],[69,2,2,113,115],[70,1,1,115,116],[71,1,1,116,117],[73,3,3,117,120],[74,2,2,120,122],[76,2,2,122,124],[77,8,8,124,132],[78,4,3,132,135],[79,4,3,135,138],[80,3,3,138,141],[81,2,2,141,143],[82,2,2,143,145],[83,6,5,145,150],[84,5,5,150,155],[85,1,1,155,156],[88,5,5,156,161],[89,1,1,161,162]]],[2,57,54,162,216,[[90,1,1,162,163],[93,1,1,163,164],[95,1,1,164,165],[96,6,5,165,170],[98,1,1,170,171],[99,2,2,171,173],[100,1,1,173,174],[101,1,1,174,175],[104,2,2,175,177],[105,5,5,177,182],[106,4,4,182,186],[107,1,1,186,187],[108,2,2,187,189],[109,1,1,189,190],[110,1,1,190,191],[111,5,5,191,196],[112,6,6,196,202],[113,6,5,202,207],[114,7,6,207,213],[115,1,1,213,214],[116,2,2,214,216]]],[3,254,229,216,445,[[117,20,19,216,235],[118,13,13,235,248],[119,13,12,248,260],[121,6,5,260,265],[122,3,3,265,268],[123,10,10,268,278],[124,15,10,278,288],[125,10,9,288,297],[126,13,13,297,310],[127,1,1,310,311],[129,5,5,311,316],[130,8,8,316,324],[131,7,7,324,331],[132,3,3,331,334],[133,5,5,334,339],[134,14,13,339,352],[135,3,3,352,355],[136,6,6,355,361],[137,3,2,361,363],[138,3,3,363,366],[140,1,1,366,367],[141,5,4,367,371],[142,12,11,371,382],[143,5,5,382,387],[144,1,1,387,388],[145,1,1,388,389],[146,1,1,389,390],[147,8,8,390,398],[148,22,15,398,413],[149,6,6,413,419],[150,14,12,419,431],[151,5,5,431,436],[152,12,9,436,445]]],[4,66,58,445,503,[[153,3,3,445,448],[154,10,8,448,456],[155,3,3,456,459],[156,7,6,459,465],[157,2,2,465,467],[158,1,1,467,468],[161,2,1,468,469],[162,2,1,469,470],[163,3,3,470,473],[164,2,2,473,475],[165,1,1,475,476],[166,1,1,476,477],[169,1,1,477,478],[173,1,1,478,479],[175,1,1,479,480],[176,2,1,480,481],[180,3,3,481,484],[181,3,3,484,487],[182,1,1,487,488],[183,5,4,488,492],[184,8,7,492,499],[185,2,2,499,501],[186,2,2,501,503]]],[5,185,131,503,634,[[187,1,1,503,504],[189,2,2,504,506],[190,11,7,506,513],[191,8,7,513,520],[192,1,1,520,521],[193,4,3,521,524],[194,2,2,524,526],[195,3,3,526,529],[196,5,5,529,534],[197,3,3,534,537],[198,4,4,537,541],[199,13,11,541,552],[200,5,4,552,556],[201,7,6,556,562],[202,6,5,562,567],[203,13,6,567,573],[204,11,9,573,582],[205,22,16,582,598],[206,2,2,598,600],[207,18,17,600,617],[208,41,15,617,632],[210,3,2,632,634]]],[6,123,102,634,736,[[211,8,6,634,640],[212,3,3,640,643],[213,12,10,643,653],[214,6,5,653,658],[216,7,7,658,665],[217,1,1,665,666],[218,5,5,666,671],[220,13,9,671,680],[221,17,15,680,695],[222,3,3,695,698],[223,1,1,698,699],[224,2,2,699,701],[228,6,6,701,707],[229,1,1,707,708],[230,31,21,708,729],[231,7,7,729,736]]],[8,17,16,736,752,[[237,2,2,736,738],[242,5,4,738,742],[245,2,2,742,744],[246,1,1,744,745],[247,1,1,745,746],[249,2,2,746,748],[250,1,1,748,749],[252,1,1,749,750],[261,1,1,750,751],[265,1,1,751,752]]],[9,26,23,752,775,[[267,1,1,752,753],[268,1,1,753,754],[273,4,4,754,758],[276,11,9,758,767],[277,1,1,767,768],[278,4,4,768,772],[283,1,1,772,773],[287,2,1,773,774],[289,1,1,774,775]]],[10,31,29,775,804,[[292,1,1,775,776],[294,1,1,776,777],[296,2,2,777,779],[298,5,5,779,784],[299,3,2,784,786],[301,3,3,786,789],[302,3,3,789,792],[304,1,1,792,793],[308,1,1,793,794],[309,2,2,794,796],[310,7,6,796,802],[311,2,2,802,804]]],[11,29,25,804,829,[[316,1,1,804,805],[320,2,2,805,807],[322,3,2,807,809],[325,1,1,809,810],[326,3,1,810,811],[328,1,1,811,812],[329,9,8,812,820],[330,1,1,820,821],[331,2,2,821,823],[333,2,2,823,825],[335,3,3,825,828],[336,1,1,828,829]]],[12,59,52,829,881,[[338,1,1,829,830],[339,4,4,830,834],[341,2,1,834,835],[342,3,3,835,838],[343,7,5,838,843],[344,5,4,843,847],[346,5,3,847,850],[348,1,1,850,851],[349,6,6,851,857],[352,2,2,857,859],[353,1,1,859,860],[354,1,1,860,861],[356,11,10,861,871],[357,2,2,871,873],[361,1,1,873,874],[363,1,1,874,875],[364,5,5,875,880],[365,1,1,880,881]]],[13,52,44,881,925,[[371,2,2,881,883],[372,3,3,883,886],[373,1,1,886,887],[374,4,3,887,890],[376,2,2,890,892],[377,1,1,892,893],[379,5,4,893,897],[386,8,6,897,903],[387,1,1,903,904],[391,7,5,904,909],[393,2,1,909,910],[394,5,4,910,914],[396,3,3,914,917],[397,3,3,917,920],[399,3,3,920,923],[400,1,1,923,924],[401,1,1,924,925]]],[14,108,65,925,990,[[404,98,55,925,980],[405,1,1,980,981],[406,1,1,981,982],[408,3,3,982,985],[410,1,1,985,986],[411,1,1,986,987],[412,3,3,987,990]]],[15,107,64,990,1054,[[413,2,1,990,991],[414,1,1,991,992],[417,2,1,992,993],[419,89,49,993,1042],[420,2,2,1042,1044],[421,3,3,1044,1047],[422,2,1,1047,1048],[423,2,2,1048,1050],[424,1,1,1050,1051],[425,3,3,1051,1054]]],[16,1,1,1054,1055,[[430,1,1,1054,1055]]],[17,9,8,1055,1063,[[440,1,1,1055,1056],[443,1,1,1056,1057],[452,1,1,1057,1058],[455,1,1,1058,1059],[456,1,1,1059,1060],[462,1,1,1060,1061],[465,2,1,1061,1062],[476,1,1,1062,1063]]],[18,46,44,1063,1107,[[488,1,1,1063,1064],[491,1,1,1064,1065],[494,1,1,1065,1066],[511,1,1,1066,1067],[513,1,1,1067,1068],[522,1,1,1068,1069],[530,1,1,1069,1070],[543,1,1,1070,1071],[546,1,1,1071,1072],[549,1,1,1072,1073],[550,1,1,1073,1074],[555,4,3,1074,1077],[559,1,1,1077,1078],[560,1,1,1078,1079],[566,1,1,1079,1080],[567,2,2,1080,1082],[579,1,1,1082,1083],[580,3,3,1083,1086],[582,1,1,1086,1087],[584,4,4,1087,1091],[586,2,2,1091,1093],[590,1,1,1093,1094],[592,2,2,1094,1096],[604,2,2,1096,1098],[605,2,2,1098,1100],[609,2,1,1100,1101],[614,1,1,1101,1102],[621,2,2,1102,1104],[624,1,1,1104,1105],[625,1,1,1105,1106],[626,1,1,1106,1107]]],[19,11,10,1107,1117,[[631,1,1,1107,1108],[632,1,1,1108,1109],[634,1,1,1109,1110],[635,1,1,1110,1111],[640,1,1,1111,1112],[641,1,1,1112,1113],[642,1,1,1113,1114],[644,2,1,1114,1115],[647,1,1,1115,1116],[658,1,1,1116,1117]]],[21,1,1,1117,1118,[[671,1,1,1117,1118]]],[22,25,23,1118,1141,[[679,2,2,1118,1120],[689,1,1,1120,1121],[691,1,1,1121,1122],[692,1,1,1122,1123],[695,2,2,1123,1125],[699,1,1,1125,1126],[705,1,1,1126,1127],[708,3,2,1127,1129],[709,1,1,1129,1130],[715,2,2,1130,1132],[716,1,1,1132,1133],[727,3,3,1133,1136],[732,3,2,1136,1138],[741,1,1,1138,1139],[744,2,2,1139,1141]]],[23,39,33,1141,1174,[[746,3,3,1141,1144],[747,4,4,1144,1148],[748,1,1,1148,1149],[749,1,1,1149,1150],[750,1,1,1150,1151],[751,2,2,1151,1153],[753,1,1,1153,1154],[754,1,1,1154,1155],[760,2,2,1155,1157],[761,2,2,1157,1159],[762,1,1,1159,1160],[767,1,1,1160,1161],[769,1,1,1161,1162],[774,1,1,1162,1163],[775,3,2,1163,1165],[776,7,4,1165,1169],[782,1,1,1169,1170],[791,1,1,1170,1171],[793,1,1,1171,1172],[794,4,2,1172,1174]]],[24,2,2,1174,1176,[[797,1,1,1174,1175],[799,1,1,1175,1176]]],[25,29,26,1176,1202,[[803,2,2,1176,1178],[804,1,1,1178,1179],[805,1,1,1179,1180],[807,1,1,1180,1181],[817,4,3,1181,1184],[821,2,2,1184,1186],[824,1,1,1186,1187],[832,1,1,1187,1188],[834,4,4,1188,1192],[836,1,1,1192,1193],[838,5,4,1193,1197],[844,1,1,1197,1198],[845,2,2,1198,1200],[848,2,1,1200,1201],[849,1,1,1201,1202]]],[26,2,2,1202,1204,[[860,1,1,1202,1203],[861,1,1,1203,1204]]],[27,17,15,1204,1219,[[862,3,2,1204,1206],[863,2,1,1206,1207],[864,3,3,1207,1210],[865,2,2,1210,1212],[866,1,1,1212,1213],[870,2,2,1213,1215],[871,2,2,1215,1217],[872,1,1,1217,1218],[874,1,1,1218,1219]]],[28,10,6,1219,1225,[[876,4,1,1219,1220],[877,1,1,1220,1221],[878,5,4,1221,1225]]],[29,7,6,1225,1231,[[879,1,1,1225,1226],[880,1,1,1226,1227],[881,2,2,1227,1229],[882,1,1,1229,1230],[887,2,1,1230,1231]]],[30,2,2,1231,1233,[[888,2,2,1231,1233]]],[32,2,2,1233,1235,[[893,1,1,1233,1234],[897,1,1,1234,1235]]],[35,3,3,1235,1238,[[906,1,1,1235,1236],[907,2,2,1236,1238]]],[37,2,2,1238,1240,[[920,2,2,1238,1240]]],[38,2,1,1240,1241,[[928,2,1,1240,1241]]]],[71,255,256,257,271,443,495,567,576,578,581,589,662,680,831,916,939,960,979,1061,1062,1063,1064,1065,1066,1067,1068,1071,1086,1368,1379,1394,1481,1505,1529,1531,1533,1539,1541,1544,1545,1577,1579,1588,1589,1590,1592,1593,1594,1630,1632,1646,1647,1651,1660,1661,1664,1666,1667,1668,1681,1682,1687,1689,1690,1748,1768,1777,1797,1800,1813,1816,1842,1843,1844,1847,1851,1853,1856,1858,1866,1867,1869,1880,1882,1885,1886,1891,1892,1897,1899,1904,1905,1911,1918,1921,1939,1948,1949,1950,1953,1956,1957,1959,1962,1964,1982,1984,1986,1990,2027,2029,2032,2056,2073,2082,2137,2182,2188,2194,2197,2217,2292,2293,2294,2302,2304,2305,2314,2322,2323,2331,2364,2379,2381,2394,2398,2413,2433,2436,2437,2458,2466,2478,2479,2503,2526,2528,2530,2531,2532,2535,2551,2560,2561,2569,2670,2671,2678,2696,2706,2743,2747,2797,2867,2902,2908,2913,2915,2917,2956,2988,2991,2999,3046,3170,3199,3206,3217,3220,3222,3235,3237,3240,3247,3249,3253,3283,3299,3320,3369,3371,3372,3384,3387,3401,3404,3412,3426,3436,3445,3446,3448,3454,3456,3461,3469,3471,3502,3510,3515,3523,3524,3570,3572,3604,3606,3614,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3653,3656,3657,3658,3660,3661,3663,3665,3668,3670,3678,3683,3685,3687,3690,3691,3692,3696,3700,3701,3704,3707,3730,3732,3733,3734,3737,3738,3742,3794,3796,3798,3801,3804,3825,3846,3850,3874,3880,3886,3892,3898,3904,3910,3916,3922,3928,3945,3948,3949,3950,3953,3955,3956,3957,3958,3959,3967,3969,3970,3972,3975,3982,3983,3984,3987,4000,4002,4003,4004,4007,4008,4010,4011,4012,4013,4014,4015,4016,4028,4077,4078,4099,4101,4107,4110,4113,4115,4118,4126,4135,4141,4147,4155,4171,4178,4179,4182,4185,4191,4232,4234,4235,4246,4249,4250,4253,4256,4262,4263,4265,4268,4276,4277,4278,4279,4280,4281,4283,4285,4289,4291,4298,4299,4312,4323,4324,4330,4333,4335,4350,4364,4376,4378,4380,4463,4477,4479,4482,4484,4491,4493,4494,4500,4504,4507,4533,4540,4551,4552,4553,4562,4565,4566,4574,4575,4579,4648,4649,4666,4673,4676,4680,4694,4706,4711,4718,4719,4720,4724,4725,4727,4735,4736,4743,4746,4747,4749,4751,4752,4755,4757,4761,4763,4765,4798,4800,4811,4818,4829,4830,4836,4838,4839,4840,4841,4842,4843,4844,4845,4847,4853,4855,4860,4879,4880,4881,4882,4883,4884,4886,4887,4888,4892,4895,4928,4931,4942,4946,4947,4950,4957,4960,4967,4975,4986,4991,4993,5014,5029,5044,5048,5049,5050,5062,5082,5093,5159,5192,5210,5227,5229,5265,5268,5285,5291,5384,5462,5508,5541,5665,5666,5668,5680,5701,5708,5710,5741,5747,5750,5751,5763,5766,5778,5804,5807,5809,5810,5811,5819,5847,5848,5853,5894,5902,5915,5916,5917,5918,5922,5931,5932,5935,5936,5937,5940,5941,5944,5946,5950,5977,5988,5999,6033,6034,6054,6055,6063,6068,6075,6076,6084,6085,6121,6126,6129,6131,6132,6136,6137,6160,6164,6167,6169,6176,6177,6178,6179,6182,6183,6185,6188,6191,6192,6193,6203,6214,6215,6222,6223,6265,6266,6269,6270,6273,6274,6277,6283,6287,6288,6289,6291,6294,6295,6296,6303,6304,6307,6313,6314,6321,6322,6329,6330,6331,6337,6338,6344,6345,6352,6353,6360,6361,6368,6369,6370,6372,6374,6381,6382,6384,6385,6386,6387,6388,6389,6390,6391,6394,6400,6401,6407,6408,6415,6421,6422,6435,6436,6437,6438,6439,6441,6447,6450,6451,6453,6456,6457,6458,6459,6460,6480,6508,6510,6517,6518,6525,6530,6543,6549,6551,6556,6570,6573,6575,6576,6577,6580,6581,6582,6583,6595,6600,6602,6604,6622,6623,6655,6656,6657,6660,6661,6662,6687,6706,6729,6737,6747,6752,6753,6817,6818,6819,6820,6821,6822,6826,6828,6829,6833,6834,6835,6837,6838,6841,6842,6843,6844,6856,6857,6858,6859,6861,6862,6870,6871,6872,6885,6925,6926,6995,7015,7016,7018,7019,7023,7054,7055,7057,7061,7067,7068,7069,7072,7073,7075,7077,7078,7079,7080,7081,7082,7084,7085,7086,7089,7090,7102,7107,7108,7115,7120,7122,7125,7126,7245,7268,7356,7358,7359,7360,7436,7445,7453,7472,7526,7555,7566,7671,7924,8000,8040,8074,8186,8187,8190,8194,8241,8242,8243,8246,8248,8250,8251,8254,8259,8260,8289,8295,8312,8317,8476,8582,8682,8774,8874,8897,8909,8986,8994,9010,9024,9048,9057,9072,9110,9115,9141,9168,9175,9184,9242,9361,9397,9401,9411,9413,9415,9423,9435,9437,9464,9477,9610,9739,9746,9806,9823,9876,9902,9966,9990,9991,9992,10005,10007,10014,10017,10024,10028,10064,10073,10121,10128,10171,10175,10178,10204,10295,10316,10336,10337,10338,10412,10439,10442,10451,10457,10487,10518,10519,10531,10547,10564,10568,10575,10618,10633,10638,10704,10736,10744,10745,10746,10749,10750,10795,10806,10833,10872,10908,10909,10910,10913,10914,10916,10918,10919,10922,10926,10927,10929,11017,11087,11110,11112,11119,11123,11129,11151,11270,11278,11293,11298,11312,11327,11348,11354,11355,11412,11413,11437,11460,11465,11469,11471,11588,11597,11600,11606,11609,11610,11638,11708,11711,11715,11716,11718,11760,11767,11772,11774,11776,11833,11836,11848,11855,11859,11860,11910,11914,11917,11966,11983,12028,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12041,12042,12043,12044,12045,12046,12047,12048,12051,12052,12053,12056,12057,12058,12059,12060,12061,12062,12063,12064,12065,12066,12067,12068,12069,12070,12071,12072,12073,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12084,12085,12087,12088,12098,12111,12170,12171,12172,12236,12249,12259,12268,12296,12302,12317,12387,12426,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12439,12440,12441,12442,12443,12444,12445,12454,12455,12456,12457,12458,12459,12460,12461,12462,12463,12464,12465,12466,12467,12468,12469,12470,12471,12472,12473,12474,12475,12476,12477,12478,12479,12480,12482,12483,12493,12507,12510,12512,12534,12535,12588,12591,12619,12671,12673,12687,12695,12790,12955,13033,13265,13336,13374,13495,13565,13922,14063,14082,14117,14399,14445,14613,14721,14878,14943,15004,15035,15118,15119,15122,15239,15249,15356,15381,15394,15549,15556,15562,15566,15612,15707,15714,15720,15730,15764,15765,15822,15844,15846,16124,16125,16129,16132,16163,16229,16312,16316,16364,16385,16387,16491,16524,16599,16634,16769,16798,16818,16879,16961,17312,17543,17656,17658,17898,17924,17949,17986,17992,18052,18163,18218,18226,18256,18355,18364,18409,18653,18656,18661,18724,18736,18874,18930,18942,18974,18981,18995,19016,19021,19023,19024,19049,19065,19090,19137,19149,19201,19221,19350,19351,19359,19376,19405,19491,19555,19687,19706,19708,19749,19761,19763,19770,19918,20076,20133,20170,20199,20326,20387,20495,20496,20513,20542,20568,20783,20798,20807,20913,20916,21046,21244,21282,21292,21297,21310,21349,21413,21415,21418,21422,21579,21608,21614,21701,21713,22077,22082,22104,22105,22109,22129,22132,22133,22134,22139,22159,22220,22221,22234,22239,22250,22279,22294,22334,22349,22351,22359,22362,22377,22390,22396,22407,22415,22502,22522,22530,22595,22636,22795,22813,22814,23023,23025,23144]]],["children's",[15,15,[[0,2,2,0,2,[[30,1,1,0,1],[44,1,1,1,2]]],[1,2,2,2,4,[[58,1,1,2,3],[83,1,1,3,4]]],[4,1,1,4,5,[[156,1,1,4,5]]],[5,1,1,5,6,[[200,1,1,5,6]]],[11,1,1,6,7,[[329,1,1,6,7]]],[17,1,1,7,8,[[454,1,1,7,8]]],[18,2,2,8,10,[[580,1,1,8,9],[605,1,1,9,10]]],[19,1,1,10,11,[[640,1,1,10,11]]],[23,2,2,11,13,[[746,1,1,11,12],[775,1,1,12,13]]],[25,2,2,13,15,[[819,1,1,13,14],[838,1,1,14,15]]]],[889,1368,1746,2503,5029,6196,10024,13314,15566,16132,16769,18974,19720,20851,21422]]],["colt",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1484]]],["colts",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[943]]],["common",[1,1,[[23,1,1,0,1,[[770,1,1,0,1]]]],[19595]]],["corn",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18045]]],["first",[51,51,[[1,2,2,0,2,[[61,1,1,0,1],[78,1,1,1,2]]],[2,5,5,2,7,[[98,1,1,2,3],[101,1,1,3,4],[112,3,3,4,7]]],[3,43,43,7,50,[[122,2,2,7,9],[123,26,26,9,35],[144,5,5,35,40],[145,10,10,40,50]]],[25,1,1,50,51,[[847,1,1,50,51]]]],[1821,2374,2956,3050,3414,3420,3421,3835,3837,3865,3867,3871,3873,3877,3879,3883,3885,3889,3891,3895,3897,3901,3903,3907,3909,3913,3915,3919,3921,3925,3927,3931,3933,3937,3938,4580,4586,4588,4596,4604,4610,4616,4621,4625,4628,4631,4634,4637,4640,4644,21668]]],["foal",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23008]]],["in",[1,1,[[31,1,1,0,1,[[892,1,1,0,1]]]],[22578]]],["man",[3,3,[[8,1,1,0,1,[[249,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]],[10,1,1,2,3,[[291,1,1,2,3]]]],[7560,8115,8769]]],["men",[11,11,[[9,2,2,0,2,[[269,1,1,0,1],[283,1,1,1,2]]],[12,1,1,2,3,[[363,1,1,2,3]]],[17,1,1,3,4,[[436,1,1,3,4]]],[23,1,1,4,5,[[793,1,1,4,5]]],[25,6,6,5,11,[[824,1,1,5,6],[826,2,2,6,8],[828,2,2,8,10],[831,1,1,10,11]]]],[8115,8459,11109,12872,20155,21014,21087,21093,21132,21136,21209]]],["old",[86,84,[[0,18,18,0,18,[[4,1,1,0,1],[6,1,1,1,2],[10,1,1,2,3],[11,1,1,3,4],[15,1,1,4,5],[16,5,5,5,10],[20,2,2,10,12],[24,2,2,12,14],[25,1,1,14,15],[36,1,1,15,16],[40,1,1,16,17],[49,1,1,17,18]]],[1,2,1,18,19,[[56,2,1,18,19]]],[2,3,3,19,22,[[116,3,3,19,22]]],[3,8,8,22,30,[[120,7,7,22,29],[149,1,1,29,30]]],[4,2,2,30,32,[[183,1,1,30,31],[186,1,1,31,32]]],[5,2,2,32,34,[[200,2,2,32,34]]],[6,1,1,34,35,[[212,1,1,34,35]]],[8,1,1,35,36,[[239,1,1,35,36]]],[9,5,5,36,41,[[268,1,1,36,37],[270,1,1,37,38],[271,1,1,38,39],[285,2,2,39,41]]],[10,2,2,41,43,[[304,1,1,41,42],[312,1,1,42,43]]],[11,16,16,43,59,[[320,2,2,43,45],[323,1,1,45,46],[326,2,2,46,48],[327,2,2,48,50],[328,1,1,50,51],[330,1,1,51,52],[333,2,2,52,54],[334,1,1,54,55],[335,2,2,55,57],[336,2,2,57,59]]],[12,1,1,59,60,[[339,1,1,59,60]]],[13,21,21,60,81,[[378,1,1,60,61],[386,1,1,61,62],[387,2,2,62,64],[388,1,1,64,65],[390,2,2,65,67],[391,1,1,67,68],[392,2,2,68,70],[393,2,2,70,72],[394,1,1,72,73],[395,1,1,73,74],[399,2,2,74,76],[400,1,1,76,77],[402,4,4,77,81]]],[22,2,1,81,82,[[743,2,1,81,82]]],[23,1,1,82,83,[[796,1,1,82,83]]],[32,1,1,83,84,[[898,1,1,83,84]]]],[137,165,276,302,397,398,409,414,421,422,517,518,678,684,726,1085,1241,1532,1692,3573,3575,3576,3746,3766,3773,3778,3782,3786,3790,4799,5730,5846,6194,6197,6553,7312,8059,8124,8136,8543,8546,9239,9522,9744,9753,9850,9898,9917,9927,9958,9965,10026,10120,10138,10146,10196,10201,10210,10220,10327,11450,11618,11629,11644,11646,11678,11692,11705,11733,11735,11756,11763,11765,11792,11909,11929,11934,11995,11998,12002,12004,18917,20277,22654]]],["one",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7486]]],["ones",[3,3,[[17,2,2,0,2,[[474,2,2,0,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[13838,13850,20125]]],["people",[1,1,[[0,1,1,0,1,[[28,1,1,0,1]]]],[796]]],["soldiers",[1,1,[[13,1,1,0,1,[[391,1,1,0,1]]]],[11717]]],["son",[1824,1340,[[0,135,123,0,123,[[3,3,3,0,3],[4,1,1,3,4],[8,1,1,4,5],[10,4,1,5,6],[11,1,1,6,7],[13,1,1,7,8],[15,2,2,8,10],[16,5,5,10,15],[17,2,2,15,17],[18,2,2,17,19],[20,11,9,19,28],[21,7,7,28,35],[22,1,1,35,36],[23,15,15,36,51],[24,4,4,51,55],[26,22,17,55,72],[27,2,2,72,74],[28,7,7,74,81],[29,9,9,81,90],[33,6,6,90,96],[34,1,1,96,97],[35,9,8,97,105],[36,3,3,105,108],[37,5,5,108,113],[41,1,1,113,114],[42,2,1,114,115],[44,2,2,115,117],[45,1,1,117,118],[46,1,1,118,119],[47,2,2,119,121],[48,1,1,121,122],[49,1,1,122,123]]],[1,30,26,123,149,[[50,2,2,123,125],[51,3,3,125,128],[53,4,3,128,131],[55,2,2,131,133],[59,1,1,133,134],[62,2,2,134,136],[69,1,1,136,137],[70,2,2,137,139],[72,1,1,139,140],[80,3,2,140,142],[81,1,1,142,143],[82,1,1,143,144],[84,3,2,144,146],[87,4,3,146,149]]],[2,6,5,149,154,[[101,1,1,149,150],[110,1,1,150,151],[113,3,2,151,153],[114,1,1,153,154]]],[3,146,130,154,284,[[117,12,11,154,165],[118,12,12,165,177],[119,4,4,177,181],[120,3,3,181,184],[123,25,25,184,209],[126,13,13,209,222],[127,1,1,222,223],[129,13,13,223,236],[130,6,3,236,239],[132,5,2,239,241],[136,3,3,241,244],[138,5,5,244,249],[139,2,2,249,251],[140,2,2,251,253],[141,5,3,253,256],[142,4,3,256,259],[143,8,4,259,263],[147,2,2,263,265],[148,7,6,265,271],[150,11,11,271,282],[152,3,2,282,284]]],[4,32,28,284,312,[[153,3,3,284,287],[155,1,1,287,288],[157,1,1,288,289],[158,4,3,289,292],[159,3,2,292,294],[160,1,1,294,295],[162,1,1,295,296],[163,1,1,296,297],[164,1,1,297,298],[165,2,1,298,299],[168,2,2,299,301],[170,1,1,301,302],[173,6,5,302,307],[175,1,1,307,308],[180,1,1,308,309],[183,1,1,309,310],[184,1,1,310,311],[186,1,1,311,312]]],[5,43,34,312,346,[[187,1,1,312,313],[188,2,2,313,315],[192,1,1,315,316],[193,8,4,316,320],[199,2,2,320,322],[200,4,4,322,326],[201,4,4,326,330],[203,6,3,330,333],[204,2,2,333,335],[205,2,2,335,337],[207,2,2,337,339],[208,4,4,339,343],[210,5,3,343,346]]],[6,49,44,346,390,[[211,1,1,346,347],[212,1,1,347,348],[213,4,4,348,352],[214,2,2,352,354],[215,3,3,354,357],[216,3,3,357,360],[217,1,1,360,361],[218,6,5,361,366],[219,10,9,366,375],[220,2,1,375,376],[221,4,4,376,380],[222,2,2,380,382],[223,4,4,382,386],[227,2,2,386,388],[228,2,1,388,389],[230,2,1,389,390]]],[7,2,2,390,392,[[235,2,2,390,392]]],[8,71,57,392,449,[[236,5,2,392,394],[238,2,2,394,396],[239,2,2,396,398],[242,1,1,398,399],[244,6,3,399,402],[245,3,3,402,405],[248,2,2,405,407],[249,9,7,407,414],[251,3,3,414,417],[252,6,5,417,422],[254,2,2,422,424],[255,5,3,424,427],[257,10,7,427,434],[258,2,2,434,436],[259,1,1,436,437],[260,4,4,437,441],[261,6,6,441,447],[262,1,1,447,448],[265,1,1,448,449]]],[9,131,104,449,553,[[267,5,5,449,454],[268,7,5,454,459],[269,9,8,459,467],[270,5,4,467,471],[273,1,1,471,472],[274,8,6,472,478],[275,9,7,478,485],[276,2,2,485,487],[277,2,2,487,489],[278,1,1,489,490],[279,8,6,490,496],[280,4,3,496,499],[281,2,1,499,500],[282,6,6,500,506],[283,3,2,506,508],[284,13,8,508,516],[285,8,6,516,522],[286,11,10,522,532],[287,10,8,532,540],[289,17,13,540,553]]],[10,124,110,553,663,[[291,16,16,553,569],[292,15,12,569,581],[293,12,6,581,587],[294,13,12,587,599],[295,2,2,599,601],[297,1,1,601,602],[298,1,1,602,603],[301,7,7,603,610],[302,5,5,610,615],[304,5,5,615,620],[305,9,8,620,628],[306,15,14,628,642],[307,7,7,642,649],[309,3,2,649,651],[311,2,1,651,652],[312,11,11,652,663]]],[11,146,110,663,773,[[313,2,1,663,664],[315,4,4,664,668],[316,6,6,668,674],[318,7,4,674,678],[320,12,8,678,686],[321,8,5,686,691],[322,4,4,691,695],[323,4,4,695,699],[324,3,1,699,700],[325,10,8,700,708],[326,16,11,708,719],[327,24,20,719,739],[328,6,5,739,744],[329,2,2,744,746],[330,8,5,746,751],[331,3,3,751,754],[332,3,3,754,757],[333,5,5,757,762],[334,6,3,762,765],[335,4,4,765,769],[336,1,1,769,770],[337,8,3,770,773]]],[12,322,161,773,934,[[338,4,4,773,777],[339,3,3,777,780],[340,20,8,780,788],[341,19,9,788,797],[342,20,7,797,804],[343,89,29,804,833],[344,19,9,833,842],[345,5,3,842,845],[346,48,14,845,859],[347,1,1,859,860],[348,19,17,860,877],[349,2,2,877,879],[352,3,1,879,880],[353,1,1,880,881],[354,1,1,881,882],[355,7,5,882,887],[356,2,2,887,889],[357,2,2,889,891],[359,7,7,891,898],[360,1,1,898,899],[361,3,2,899,901],[363,13,6,901,907],[364,23,18,907,925],[365,5,4,925,929],[366,5,5,929,934]]],[13,103,76,934,1010,[[367,3,2,934,936],[368,2,2,936,938],[372,1,1,938,939],[375,2,2,939,941],[376,3,3,941,944],[377,5,4,944,948],[378,1,1,948,949],[379,3,2,949,951],[380,1,1,951,952],[381,1,1,952,953],[383,2,2,953,955],[384,5,5,955,960],[385,2,2,960,962],[386,6,3,962,965],[387,2,2,965,967],[388,9,7,967,974],[389,7,3,974,977],[390,5,4,977,981],[391,7,4,981,985],[392,3,3,985,988],[393,1,1,988,989],[394,8,5,989,994],[395,6,1,994,995],[396,1,1,995,996],[397,1,1,996,997],[398,3,3,997,1000],[399,3,3,1000,1003],[400,6,3,1003,1006],[401,2,2,1006,1008],[402,2,2,1008,1010]]],[14,40,22,1010,1032,[[405,4,2,1010,1012],[409,16,5,1012,1017],[410,15,11,1017,1028],[412,5,4,1028,1032]]],[15,115,50,1032,1082,[[413,1,1,1032,1033],[415,36,22,1033,1055],[418,5,2,1055,1057],[420,1,1,1057,1058],[422,3,3,1058,1061],[423,54,13,1061,1074],[424,12,6,1074,1080],[425,3,2,1080,1082]]],[16,8,6,1082,1088,[[427,3,1,1082,1083],[428,2,2,1083,1085],[433,1,1,1085,1086],[434,2,2,1086,1088]]],[17,4,4,1088,1092,[[460,1,1,1088,1089],[467,2,2,1089,1091],[470,1,1,1091,1092]]],[18,10,10,1092,1102,[[485,1,1,1092,1093],[527,1,1,1093,1094],[549,2,2,1094,1096],[557,1,1,1096,1097],[563,1,1,1097,1098],[566,1,1,1098,1099],[593,1,1,1099,1100],[621,1,1,1100,1101],[623,1,1,1101,1102]]],[19,40,38,1102,1140,[[628,4,4,1102,1106],[629,1,1,1106,1107],[630,4,4,1107,1111],[631,3,3,1111,1114],[632,2,2,1114,1116],[633,3,3,1116,1119],[634,1,1,1119,1120],[637,4,2,1120,1122],[640,2,2,1122,1124],[642,1,1,1124,1125],[644,2,2,1125,1127],[646,4,4,1127,1131],[650,3,3,1131,1134],[651,2,2,1134,1136],[654,1,1,1136,1137],[655,1,1,1137,1138],[656,1,1,1138,1139],[657,1,1,1139,1140]]],[20,4,4,1140,1144,[[659,1,1,1140,1141],[663,1,1,1141,1142],[668,1,1,1142,1143],[670,1,1,1143,1144]]],[22,33,28,1144,1172,[[679,1,1,1144,1145],[680,1,1,1145,1146],[685,9,7,1146,1153],[686,3,3,1153,1156],[687,1,1,1156,1157],[691,1,1,1157,1158],[692,1,1,1158,1159],[697,2,1,1159,1160],[698,1,1,1160,1161],[700,1,1,1161,1162],[714,4,2,1162,1164],[715,3,3,1164,1167],[716,1,1,1167,1168],[717,1,1,1168,1169],[727,1,1,1169,1170],[734,2,2,1170,1172]]],[23,145,97,1172,1269,[[745,4,3,1172,1175],[751,2,2,1175,1177],[759,1,1,1177,1178],[763,2,2,1178,1180],[764,1,1,1180,1181],[765,2,1,1181,1182],[766,3,3,1182,1185],[768,1,1,1185,1186],[769,2,2,1186,1188],[770,4,4,1188,1192],[771,4,3,1192,1195],[772,2,2,1195,1197],[773,5,3,1197,1200],[775,1,1,1200,1201],[776,7,6,1201,1207],[777,1,1,1207,1208],[779,10,8,1208,1216],[780,19,10,1216,1226],[781,6,3,1226,1229],[782,5,2,1229,1231],[783,2,1,1231,1232],[784,18,10,1232,1242],[785,23,13,1242,1255],[786,3,2,1255,1257],[787,8,5,1257,1262],[789,2,1,1262,1263],[790,1,1,1263,1264],[793,2,2,1264,1266],[794,1,1,1266,1267],[795,3,2,1267,1269]]],[25,47,44,1269,1313,[[802,1,1,1269,1270],[803,2,2,1270,1272],[804,1,1,1272,1273],[805,1,1,1273,1274],[806,1,1,1274,1275],[808,1,1,1275,1276],[809,3,3,1276,1279],[812,4,3,1279,1282],[813,1,1,1282,1283],[814,1,1,1283,1284],[815,1,1,1284,1285],[819,7,5,1285,1290],[821,2,2,1290,1292],[822,6,6,1292,1298],[823,1,1,1298,1299],[825,1,1,1299,1300],[828,1,1,1300,1301],[834,4,4,1301,1305],[837,1,1,1305,1306],[838,2,2,1306,1308],[839,1,1,1308,1309],[840,2,2,1309,1311],[844,1,1,1311,1312],[845,1,1,1312,1313]]],[26,2,2,1313,1315,[[857,1,1,1313,1314],[858,1,1,1314,1315]]],[27,6,5,1315,1320,[[862,4,3,1315,1318],[872,1,1,1318,1319],[874,1,1,1319,1320]]],[28,1,1,1320,1321,[[876,1,1,1320,1321]]],[29,2,2,1321,1323,[[879,1,1,1321,1322],[885,1,1,1322,1323]]],[31,1,1,1323,1324,[[889,1,1,1323,1324]]],[32,2,2,1324,1326,[[898,1,1,1324,1325],[899,1,1,1325,1326]]],[35,5,1,1326,1327,[[906,5,1,1326,1327]]],[36,10,6,1327,1333,[[909,6,3,1327,1330],[910,4,3,1330,1333]]],[37,7,5,1333,1338,[[911,4,2,1333,1335],[916,3,3,1335,1338]]],[38,2,2,1338,1340,[[925,1,1,1338,1339],[927,1,1,1339,1340]]]],[96,104,105,133,229,297,303,348,392,396,413,416,420,422,423,434,438,494,495,515,516,517,518,520,522,523,524,526,550,553,554,555,556,557,560,579,594,595,596,597,598,599,606,615,627,628,629,631,635,638,639,664,667,670,677,728,732,733,735,740,742,744,745,747,748,751,753,754,759,764,769,770,778,782,800,807,808,827,828,829,830,835,836,837,840,842,847,849,853,854,982,988,998,1000,1004,1006,1028,1050,1052,1057,1072,1073,1075,1078,1079,1086,1117,1118,1122,1123,1124,1130,1145,1290,1319,1367,1386,1396,1449,1453,1470,1482,1529,1548,1554,1556,1564,1576,1623,1624,1626,1670,1680,1779,1875,1881,2061,2086,2108,2156,2422,2426,2467,2484,2561,2565,2654,2655,2656,3050,3347,3456,3457,3518,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3661,3663,3665,3668,3670,3672,3676,3678,3680,3683,3685,3687,3716,3722,3724,3727,3759,3771,3776,3858,3862,3867,3868,3873,3874,3879,3880,3885,3886,3891,3892,3897,3898,3903,3904,3909,3910,3915,3916,3921,3922,3927,3928,3933,4002,4003,4004,4006,4007,4008,4010,4011,4012,4013,4014,4015,4017,4052,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4114,4138,4146,4195,4231,4336,4337,4339,4377,4379,4380,4385,4391,4434,4435,4449,4461,4478,4482,4485,4490,4522,4554,4555,4558,4562,4572,4670,4672,4730,4746,4751,4757,4758,4759,4833,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4880,4891,4923,4928,4930,4989,5067,5088,5106,5107,5114,5115,5142,5192,5214,5258,5278,5353,5356,5394,5462,5463,5464,5465,5467,5504,5667,5751,5802,5848,5852,5870,5892,5955,5977,5994,5995,6000,6176,6185,6188,6193,6200,6201,6208,6210,6215,6219,6277,6278,6279,6309,6310,6370,6372,6382,6393,6439,6446,6457,6458,6485,6505,6509,6522,6553,6577,6579,6583,6599,6605,6611,6624,6629,6635,6665,6683,6684,6708,6732,6741,6742,6748,6751,6755,6759,6772,6780,6782,6784,6785,6789,6811,6812,6830,6831,6854,6863,6882,6884,6887,6889,6891,6908,6982,6983,7023,7082,7203,7207,7213,7232,7282,7292,7313,7317,7353,7392,7393,7394,7420,7429,7439,7501,7507,7509,7511,7547,7548,7550,7558,7559,7613,7614,7615,7630,7635,7673,7674,7676,7707,7708,7757,7760,7761,7794,7795,7796,7798,7799,7800,7807,7816,7826,7855,7869,7871,7878,7905,7910,7911,7919,7922,7926,7930,7932,7985,8026,8027,8034,8035,8039,8057,8059,8061,8062,8064,8084,8085,8095,8096,8104,8106,8109,8118,8121,8122,8124,8128,8194,8212,8219,8221,8225,8226,8227,8230,8231,8232,8233,8236,8237,8239,8241,8242,8280,8286,8310,8318,8320,8321,8342,8349,8354,8357,8367,8372,8416,8429,8431,8434,8435,8437,8445,8474,8476,8480,8490,8496,8497,8498,8500,8505,8511,8513,8515,8527,8529,8532,8535,8555,8556,8560,8561,8564,8567,8575,8576,8577,8578,8587,8588,8592,8593,8594,8597,8599,8601,8654,8662,8664,8671,8673,8675,8677,8679,8682,8686,8687,8689,8690,8722,8724,8725,8728,8729,8730,8734,8738,8743,8747,8749,8750,8753,8755,8759,8761,8771,8775,8778,8783,8792,8795,8799,8802,8804,8805,8809,8816,8822,8836,8837,8838,8839,8842,8846,8847,8848,8849,8850,8856,8857,8858,8860,8861,8862,8863,8883,8885,8948,9004,9120,9121,9128,9131,9134,9144,9151,9153,9166,9167,9172,9174,9219,9223,9238,9239,9249,9250,9253,9257,9267,9273,9274,9276,9282,9284,9286,9289,9290,9291,9296,9304,9305,9309,9311,9312,9313,9314,9317,9329,9330,9334,9335,9336,9337,9340,9403,9406,9473,9488,9489,9491,9504,9506,9520,9521,9529,9530,9531,9532,9550,9577,9579,9587,9603,9609,9619,9620,9631,9639,9640,9702,9703,9705,9706,9728,9732,9736,9743,9751,9752,9755,9756,9758,9765,9770,9776,9785,9808,9816,9822,9828,9830,9831,9833,9841,9871,9872,9873,9874,9880,9881,9882,9895,9896,9897,9904,9905,9909,9912,9913,9919,9920,9921,9923,9925,9926,9930,9932,9933,9934,9935,9938,9939,9942,9943,9947,9948,9949,9950,9952,9953,9955,9957,9962,9963,9964,9966,9968,9970,9983,9984,10004,10025,10033,10042,10050,10061,10063,10081,10098,10099,10110,10119,10125,10126,10137,10143,10145,10148,10157,10159,10175,10180,10195,10199,10208,10244,10245,10247,10295,10296,10298,10301,10324,10351,10356,10363,10371,10372,10373,10374,10375,10377,10378,10387,10393,10400,10406,10410,10411,10419,10420,10422,10429,10432,10433,10434,10436,10442,10443,10474,10475,10476,10477,10478,10480,10481,10483,10484,10487,10488,10489,10490,10491,10492,10493,10494,10495,10496,10497,10498,10499,10500,10501,10504,10505,10506,10507,10510,10551,10552,10555,10556,10558,10560,10561,10562,10564,10605,10609,10612,10619,10622,10623,10626,10627,10629,10630,10631,10634,10635,10636,10651,10655,10658,10673,10679,10685,10695,10697,10699,10701,10703,10704,10707,10708,10710,10711,10712,10714,10715,10716,10718,10721,10738,10808,10858,10876,10900,10902,10905,10906,10907,10908,10909,10931,10933,10969,10970,10971,10973,10974,10975,10981,10984,11021,11044,11078,11083,11091,11101,11102,11105,11111,11114,11115,11116,11118,11125,11126,11127,11128,11129,11130,11131,11133,11134,11135,11138,11141,11143,11148,11149,11152,11163,11165,11183,11186,11190,11192,11195,11199,11223,11225,11291,11393,11395,11397,11410,11411,11417,11431,11432,11436,11453,11459,11460,11476,11491,11524,11539,11549,11550,11552,11565,11567,11578,11587,11601,11621,11624,11625,11641,11645,11649,11650,11651,11653,11654,11655,11657,11659,11667,11697,11699,11703,11704,11721,11722,11727,11729,11753,11754,11755,11764,11767,11770,11771,11776,11791,11803,11853,11868,11895,11907,11908,11914,11915,11928,11941,11953,11955,11969,11970,11994,12001,12099,12105,12174,12175,12176,12177,12178,12205,12206,12207,12208,12209,12210,12211,12212,12213,12219,12234,12254,12258,12267,12270,12297,12329,12331,12333,12335,12336,12337,12338,12339,12341,12342,12343,12344,12345,12346,12347,12348,12350,12351,12352,12356,12357,12358,12411,12419,12510,12550,12558,12587,12592,12593,12595,12597,12598,12599,12600,12601,12602,12603,12605,12610,12612,12625,12647,12648,12650,12659,12669,12684,12699,12729,12748,12757,12822,12844,12858,13467,13630,13634,13728,14016,14688,15001,15020,15215,15300,15348,15864,16308,16344,16401,16408,16410,16415,16434,16456,16466,16467,16476,16493,16500,16510,16518,16537,16541,16543,16560,16576,16657,16661,16748,16771,16827,16875,16898,16938,16943,16951,16952,17059,17063,17070,17092,17100,17180,17203,17241,17252,17316,17411,17510,17535,17655,17686,17783,17785,17786,17787,17788,17791,17796,17809,17810,17813,17835,17907,17940,18015,18031,18072,18333,18352,18354,18373,18390,18391,18413,18651,18755,18756,18947,18948,18949,19150,19151,19319,19409,19413,19423,19441,19465,19472,19478,19525,19535,19537,19573,19592,19594,19596,19597,19603,19616,19619,19622,19638,19656,19660,19711,19738,19739,19740,19743,19747,19766,19796,19824,19826,19827,19829,19831,19837,19839,19842,19843,19846,19850,19851,19852,19853,19854,19856,19868,19874,19875,19877,19887,19896,19901,19937,19946,19947,19948,19949,19950,19952,19954,19955,19956,19957,19958,19959,19963,19964,19966,19967,19968,19969,19970,19971,19972,19973,19975,19976,19983,19999,20000,20001,20002,20003,20041,20047,20145,20160,20206,20255,20271,20467,20498,20500,20527,20530,20547,20579,20615,20619,20621,20656,20659,20668,20683,20725,20751,20853,20859,20863,20868,20869,20899,20922,20950,20954,20956,20958,20963,20972,20978,21081,21123,21287,21290,21292,21310,21360,21406,21413,21439,21449,21465,21582,21624,21978,21989,22095,22097,22102,22241,22279,22292,22365,22478,22532,22653,22670,22788,22841,22852,22854,22857,22859,22878,22879,22885,22957,22958,22961,23095,23137]]],["son's",[20,19,[[0,11,10,0,10,[[10,1,1,0,1],[15,1,1,1,2],[23,1,1,2,3],[26,2,2,3,5],[29,4,3,5,8],[36,2,2,8,10]]],[1,1,1,10,11,[[59,1,1,10,11]]],[2,3,3,11,14,[[107,3,3,11,14]]],[4,1,1,14,15,[[158,1,1,14,15]]],[6,1,1,15,16,[[218,1,1,15,16]]],[10,1,1,16,17,[[311,1,1,16,17]]],[19,1,1,17,18,[[657,1,1,17,18]]],[23,1,1,18,19,[[771,1,1,18,19]]]],[297,396,642,752,758,844,845,846,1115,1116,1779,3261,3266,3268,5088,6741,9480,17255,19603]]],["sons",[955,843,[[0,133,121,0,121,[[4,9,9,0,9],[5,3,3,9,12],[6,3,2,12,14],[7,2,2,14,16],[8,4,4,16,20],[9,13,11,20,31],[10,8,8,31,39],[18,1,1,39,40],[22,4,4,40,44],[24,7,7,44,51],[26,1,1,51,52],[28,1,1,52,53],[29,2,2,53,55],[30,4,4,55,59],[33,5,5,59,64],[34,8,7,64,71],[35,16,13,71,84],[36,3,2,84,86],[40,1,1,86,87],[41,6,6,87,93],[45,24,20,93,113],[47,3,3,113,116],[48,3,3,116,119],[49,2,2,119,121]]],[1,54,49,121,170,[[52,1,1,121,122],[53,1,1,122,123],[55,9,9,123,132],[59,1,1,132,133],[61,1,1,133,134],[67,3,3,134,137],[70,1,1,137,138],[71,1,1,138,139],[76,1,1,139,140],[77,6,5,140,145],[78,16,13,145,158],[79,2,2,158,160],[80,1,1,160,161],[81,2,2,161,163],[83,3,2,163,165],[84,1,1,165,166],[88,1,1,166,167],[89,3,3,167,170]]],[2,47,45,170,215,[[90,4,4,170,174],[91,1,1,174,175],[92,4,4,175,179],[95,5,5,179,184],[96,3,3,184,187],[97,12,10,187,197],[98,4,4,197,201],[99,7,7,201,208],[105,1,1,208,209],[106,1,1,209,210],[110,2,2,210,212],[111,2,2,212,214],[115,1,1,214,215]]],[3,92,84,215,299,[[118,3,3,215,218],[119,14,14,218,232],[120,19,15,232,247],[122,1,1,247,248],[123,3,3,248,251],[124,3,3,251,254],[126,3,2,254,256],[129,1,1,256,257],[132,7,6,257,263],[134,8,7,263,270],[137,2,2,270,272],[142,23,22,272,294],[143,1,1,294,295],[152,4,4,295,299]]],[4,16,15,299,314,[[153,1,1,299,300],[154,1,1,300,301],[156,2,1,301,302],[163,1,1,302,303],[164,2,2,303,305],[170,1,1,305,306],[173,2,2,306,308],[180,3,3,308,311],[183,1,1,311,312],[184,2,2,312,314]]],[5,6,5,314,319,[[193,1,1,314,315],[201,1,1,315,316],[203,3,2,316,318],[210,1,1,318,319]]],[6,16,14,319,333,[[211,1,1,319,320],[213,1,1,320,321],[218,2,2,321,323],[219,4,4,323,327],[220,1,1,327,328],[221,2,1,328,329],[222,3,2,329,331],[228,1,1,331,332],[229,1,1,332,333]]],[7,6,6,333,339,[[232,5,5,333,338],[235,1,1,338,339]]],[8,37,34,339,373,[[236,3,3,339,342],[237,7,6,342,348],[238,1,1,348,349],[239,3,3,349,352],[243,4,4,352,356],[247,1,1,356,357],[249,1,1,357,358],[251,3,3,358,361],[252,3,2,361,363],[257,1,1,363,364],[263,1,1,364,365],[265,3,3,365,368],[266,6,5,368,373]]],[9,30,28,373,401,[[268,1,1,373,374],[269,2,2,374,376],[270,3,3,376,379],[271,1,1,379,380],[272,1,1,380,381],[274,1,1,381,382],[275,2,1,382,383],[279,8,8,383,391],[280,2,2,391,393],[281,2,2,393,395],[282,1,1,395,396],[285,3,3,396,399],[287,2,1,399,400],[289,1,1,400,401]]],[10,14,14,401,415,[[291,3,3,401,404],[292,1,1,404,405],[294,2,2,405,407],[301,1,1,407,408],[303,5,5,408,413],[308,1,1,413,414],[311,1,1,414,415]]],[11,21,19,415,434,[[314,3,3,415,418],[316,5,4,418,422],[318,1,1,422,423],[321,1,1,423,424],[322,6,5,424,429],[323,1,1,429,430],[327,1,1,430,431],[329,1,1,431,432],[331,1,1,432,433],[337,1,1,433,434]]],[12,300,246,434,680,[[338,27,21,434,455],[339,29,25,455,480],[340,17,10,480,490],[341,20,16,490,506],[342,5,4,506,510],[343,23,23,510,533],[344,28,23,533,556],[345,16,13,556,569],[346,9,8,569,577],[347,6,5,577,582],[348,3,3,582,585],[349,3,2,585,587],[351,1,1,587,588],[352,7,7,588,595],[353,1,1,595,596],[355,1,1,596,597],[358,1,1,597,598],[360,26,20,598,618],[361,25,15,618,633],[362,30,28,633,661],[363,16,14,661,675],[364,1,1,675,676],[365,4,3,676,679],[366,1,1,679,680]]],[13,42,35,680,715,[[371,1,1,680,681],[377,2,2,681,683],[379,5,5,683,688],[386,1,1,688,689],[387,5,3,689,692],[388,2,2,692,694],[389,2,2,694,696],[390,4,4,696,700],[392,1,1,700,701],[394,1,1,701,702],[395,9,6,702,708],[397,2,2,708,710],[398,1,1,710,711],[400,2,1,711,712],[401,3,2,712,714],[402,1,1,714,715]]],[14,12,7,715,722,[[405,6,2,715,717],[410,2,2,717,719],[411,3,2,719,721],[412,1,1,721,722]]],[15,13,12,722,734,[[415,1,1,722,723],[416,1,1,723,724],[417,2,2,724,726],[422,3,3,726,729],[423,2,2,729,731],[424,2,2,731,733],[425,2,1,733,734]]],[16,5,5,734,739,[[434,5,5,734,739]]],[17,13,12,739,751,[[436,6,6,739,745],[437,1,1,745,746],[449,1,1,746,747],[473,2,2,747,749],[477,3,2,749,751]]],[18,11,11,751,762,[[481,1,1,751,752],[508,1,1,752,753],[510,1,1,753,754],[534,1,1,754,755],[535,1,1,755,756],[554,1,1,756,757],[566,1,1,757,758],[583,2,2,758,760],[621,1,1,760,761],[622,1,1,761,762]]],[19,2,2,762,764,[[635,2,2,762,764]]],[20,9,9,764,773,[[659,1,1,764,765],[660,2,2,765,767],[661,3,3,767,770],[666,1,1,770,771],[667,2,2,771,773]]],[21,1,1,773,774,[[672,1,1,773,774]]],[22,16,15,774,789,[[715,1,1,774,775],[721,1,1,775,776],[723,1,1,776,777],[727,1,1,777,778],[729,3,2,778,780],[734,1,1,780,781],[735,1,1,781,782],[738,4,4,782,786],[739,1,1,786,787],[740,2,2,787,789]]],[23,29,26,789,815,[[747,1,1,789,790],[749,1,1,790,791],[750,1,1,791,792],[751,1,1,792,793],[755,1,1,793,794],[757,1,1,794,795],[758,1,1,795,796],[760,2,2,796,798],[763,2,2,798,800],[773,3,1,800,801],[776,2,2,801,803],[779,7,7,803,810],[783,1,1,810,811],[784,2,1,811,812],[792,1,1,812,813],[793,1,1,813,814],[796,1,1,814,815]]],[24,1,1,815,816,[[800,1,1,815,816]]],[25,17,16,816,832,[[806,2,1,816,817],[815,3,3,817,820],[817,1,1,820,821],[821,1,1,821,822],[824,5,5,822,827],[825,2,2,827,829],[841,1,1,829,830],[845,1,1,830,831],[847,1,1,831,832]]],[26,2,2,832,834,[[859,1,1,832,833],[860,1,1,833,834]]],[27,1,1,834,835,[[862,1,1,834,835]]],[28,3,3,835,838,[[876,1,1,835,836],[877,1,1,836,837],[878,1,1,837,838]]],[29,1,1,838,839,[[885,1,1,838,839]]],[32,1,1,839,840,[[897,1,1,839,840]]],[37,2,1,840,841,[[919,2,1,840,841]]],[38,2,2,841,843,[[927,2,2,841,843]]]],[109,112,115,118,121,124,127,131,135,139,141,155,166,172,199,201,206,213,223,224,235,236,237,238,240,241,254,259,263,265,266,277,279,281,283,285,287,289,291,469,574,582,587,591,661,662,664,667,668,671,674,756,829,850,865,874,890,901,928,985,987,993,1005,1007,1016,1033,1034,1035,1036,1037,1040,1045,1046,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1085,1118,1245,1253,1257,1263,1265,1284,1289,1391,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1407,1408,1409,1410,1411,1413,1456,1459,1460,1474,1475,1506,1518,1519,1601,1621,1669,1670,1671,1672,1673,1674,1676,1677,1679,1786,1840,2002,2004,2005,2081,2142,2293,2294,2297,2333,2334,2336,2340,2344,2345,2346,2351,2355,2356,2357,2360,2363,2368,2371,2380,2401,2412,2430,2440,2464,2512,2516,2550,2691,2719,2721,2738,2750,2752,2753,2756,2764,2780,2783,2786,2791,2858,2863,2865,2869,2874,2889,2913,2914,2919,2923,2930,2931,2935,2939,2941,2947,2948,2953,2954,2962,2965,2971,2978,2981,2983,2986,2989,2991,2993,3202,3237,3346,3369,3371,3387,3553,3672,3676,3680,3694,3695,3701,3702,3709,3710,3711,3712,3717,3721,3728,3730,3740,3743,3745,3747,3748,3758,3762,3765,3770,3771,3772,3776,3777,3781,3784,3785,3788,3846,3857,3858,3859,3952,3958,3961,3996,4005,4108,4195,4201,4202,4204,4206,4221,4258,4259,4264,4265,4266,4268,4276,4369,4375,4497,4498,4501,4508,4509,4510,4512,4515,4517,4518,4519,4522,4524,4525,4526,4527,4529,4530,4531,4534,4536,4537,4557,4880,4884,4890,4891,4920,4971,5013,5214,5252,5271,5389,5452,5463,5643,5652,5664,5737,5766,5777,6000,6216,6278,6281,6508,6529,6574,6738,6749,6756,6759,6772,6778,6815,6831,6878,6883,7023,7046,7128,7129,7130,7138,7139,7205,7215,7216,7220,7252,7261,7262,7264,7269,7274,7289,7301,7308,7314,7370,7372,7374,7380,7462,7557,7596,7600,7605,7630,7631,7807,7961,7981,7984,7997,8011,8015,8016,8017,8021,8067,8083,8120,8122,8125,8129,8145,8160,8227,8237,8340,8344,8346,8347,8349,8350,8352,8353,8362,8383,8416,8425,8436,8516,8528,8533,8588,8685,8726,8736,8742,8777,8847,8875,9128,9195,9196,9197,9211,9215,9372,9461,9554,9556,9566,9604,9607,9608,9641,9675,9782,9794,9795,9799,9800,9801,9831,9937,10000,10098,10229,10257,10258,10259,10260,10261,10269,10271,10275,10280,10283,10284,10285,10286,10287,10288,10289,10290,10291,10292,10293,10294,10307,10309,10310,10311,10312,10313,10314,10315,10322,10324,10329,10331,10333,10334,10336,10337,10338,10339,10340,10348,10349,10353,10356,10358,10360,10362,10370,10376,10377,10378,10380,10382,10383,10384,10385,10386,10389,10391,10392,10398,10400,10401,10402,10403,10404,10405,10406,10409,10411,10412,10427,10429,10431,10432,10446,10455,10456,10457,10470,10471,10472,10473,10476,10479,10480,10482,10483,10498,10503,10504,10508,10511,10515,10516,10517,10520,10524,10525,10536,10537,10538,10539,10542,10543,10545,10546,10547,10548,10549,10551,10552,10554,10555,10565,10566,10568,10569,10570,10571,10573,10574,10578,10581,10585,10587,10591,10593,10596,10600,10602,10610,10613,10614,10615,10620,10621,10622,10629,10645,10647,10656,10659,10661,10665,10666,10667,10671,10707,10717,10719,10723,10727,10777,10796,10797,10798,10799,10800,10801,10808,10862,10907,10954,10989,10991,10992,10993,10994,10995,10996,10997,10998,10999,11000,11001,11002,11003,11004,11005,11006,11007,11011,11015,11016,11018,11019,11020,11035,11036,11037,11038,11039,11040,11041,11042,11043,11045,11046,11047,11048,11049,11050,11051,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11078,11079,11081,11083,11084,11085,11086,11087,11088,11092,11096,11098,11099,11106,11141,11144,11147,11148,11188,11280,11428,11435,11458,11461,11462,11463,11474,11601,11626,11631,11641,11652,11655,11659,11667,11680,11684,11702,11704,11750,11772,11800,11802,11803,11804,11805,11812,11872,11873,11908,11945,11980,11981,12013,12106,12107,12219,12220,12239,12249,12283,12330,12373,12384,12387,12577,12579,12585,12594,12595,12647,12652,12696,12844,12846,12847,12848,12859,12871,12873,12874,12875,12882,12887,12892,13202,13800,13825,13935,13938,13967,14350,14379,14772,14780,15108,15332,15688,15689,16317,16332,16606,16633,17328,17336,17341,17369,17377,17378,17469,17478,17487,17557,18390,18511,18572,18658,18691,18693,18759,18768,18825,18830,18831,18835,18848,18859,18862,19026,19075,19110,19150,19248,19280,19309,19338,19339,19412,19416,19641,19750,19766,19826,19827,19828,19829,19831,19837,19839,19929,19949,20126,20128,20286,20422,20556,20747,20749,20753,20782,20926,21011,21017,21032,21044,21054,21077,21081,21523,21614,21673,22031,22046,22104,22303,22339,22351,22481,22640,23012,23123,23126]]],["sons'",[26,24,[[0,7,6,0,6,[[5,1,1,0,1],[6,1,1,1,2],[7,2,2,2,4],[45,3,2,4,6]]],[1,4,4,6,10,[[78,3,3,6,9],[88,1,1,9,10]]],[2,10,9,10,19,[[91,2,2,10,12],[96,1,1,12,13],[97,3,2,13,15],[99,3,3,15,18],[113,1,1,18,19]]],[4,1,1,19,20,[[156,1,1,19,20]]],[12,1,1,20,21,[[345,1,1,20,21]]],[17,1,1,21,22,[[477,1,1,21,22]]],[25,2,2,22,24,[[847,2,2,22,24]]]],[155,166,199,201,1393,1412,2357,2364,2365,2705,2765,2772,2910,2944,2947,2990,2991,2992,3455,5013,10615,13938,21671,21672]]],["them",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17898]]],["whelps",[2,2,[[17,2,2,0,2,[[439,1,1,0,1],[463,1,1,1,2]]]],[12941,13512]]],["worthy",[1,1,[[8,1,1,0,1,[[261,1,1,0,1]]]],[7921]]],["young",[18,18,[[2,10,10,0,10,[[90,1,1,0,1],[94,2,2,1,3],[101,2,2,3,5],[103,2,2,5,7],[104,2,2,7,9],[111,1,1,9,10]]],[3,1,1,10,11,[[122,1,1,10,11]]],[4,2,2,11,13,[[174,2,2,11,13]]],[16,1,1,13,14,[[433,1,1,13,14]]],[18,2,2,14,16,[[506,1,1,14,15],[624,1,1,15,16]]],[19,1,1,16,17,[[657,1,1,16,17]]],[23,1,1,17,18,[[775,1,1,17,18]]]],[2759,2837,2841,3050,3052,3133,3141,3182,3197,3397,3833,5476,5477,12827,14314,16360,17268,19703]]],["youths",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16582]]]]},{"k":"H1122","v":[["Ben",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10809]]]]},{"k":"H1123","v":[["*",[11,10,[[14,5,4,0,4,[[408,4,3,0,3],[409,1,1,3,4]]],[26,6,6,4,10,[[851,2,2,4,6],[854,2,2,6,8],[855,2,2,8,10]]]],[12160,12161,12167,12196,21783,21796,21887,21895,21918,21929]]],["+",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21783]]],["children",[6,5,[[14,2,1,0,1,[[408,2,1,0,1]]],[26,4,4,1,5,[[851,1,1,1,2],[854,1,1,2,3],[855,2,2,3,5]]]],[12167,21796,21887,21918,21929]]],["sons",[3,3,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]],[26,1,1,2,3,[[854,1,1,2,3]]]],[12161,12196,21895]]],["young",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12160]]]]},{"k":"H1124","v":[["*",[22,19,[[14,21,18,0,18,[[406,4,4,0,4],[407,12,10,4,14],[408,5,4,14,18]]],[26,1,1,18,19,[[853,1,1,18,19]]]],[12122,12123,12126,12131,12136,12137,12138,12142,12143,12145,12147,12149,12150,12151,12154,12158,12159,12165,21867]]],["build",[7,7,[[14,7,7,0,7,[[407,6,6,0,6],[408,1,1,6,7]]]],[12136,12137,12143,12145,12147,12151,12158]]],["builded",[10,8,[[14,10,8,0,8,[[406,3,3,0,3],[407,4,3,3,6],[408,3,2,6,8]]]],[12123,12126,12131,12142,12145,12149,12154,12165]]],["building",[3,3,[[14,3,3,0,3,[[406,1,1,0,1],[407,1,1,1,2],[408,1,1,2,3]]]],[12122,12150,12159]]],["built",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21867]]],["make",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12138]]]]},{"k":"H1125","v":[["Abinadab",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8855]]]]},{"k":"H1126","v":[["Benoni",[1,1,[[0,1,1,0,1,[[34,1,1,0,1]]]],[1029]]]]},{"k":"H1127","v":[["Geber",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8857]]]]},{"k":"H1128","v":[["Dekar",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8853]]]]},{"k":"H1129","v":[["*",[376,345,[[0,16,16,0,16,[[1,1,1,0,1],[3,1,1,1,2],[7,1,1,2,3],[9,1,1,3,4],[10,3,3,4,7],[11,2,2,7,9],[12,1,1,9,10],[15,1,1,10,11],[21,1,1,11,12],[25,1,1,12,13],[29,1,1,13,14],[32,1,1,14,15],[34,1,1,15,16]]],[1,5,5,16,21,[[50,1,1,16,17],[66,1,1,17,18],[69,1,1,18,19],[73,1,1,19,20],[81,1,1,20,21]]],[3,10,10,21,31,[[129,1,1,21,22],[137,1,1,22,23],[139,3,3,23,26],[148,5,5,26,31]]],[4,10,10,31,41,[[158,1,1,31,32],[160,1,1,32,33],[165,1,1,33,34],[172,2,2,34,36],[174,1,1,36,37],[177,1,1,37,38],[179,2,2,38,40],[180,1,1,40,41]]],[5,11,11,41,52,[[192,1,1,41,42],[194,1,1,42,43],[205,1,1,43,44],[208,7,7,44,51],[210,1,1,51,52]]],[6,7,7,52,59,[[211,1,1,52,53],[216,3,3,53,56],[228,1,1,56,57],[231,2,2,57,59]]],[7,1,1,59,60,[[235,1,1,59,60]]],[8,4,3,60,63,[[237,1,1,60,61],[242,1,1,61,62],[249,2,1,62,63]]],[9,8,8,63,71,[[271,2,2,63,65],[273,4,4,65,69],[290,2,2,69,71]]],[10,67,53,71,124,[[292,1,1,71,72],[293,2,2,72,74],[295,6,3,74,77],[296,15,12,77,89],[297,2,2,89,91],[298,12,10,91,101],[299,9,8,101,109],[300,1,1,109,110],[301,4,3,110,113],[302,2,1,113,114],[304,1,1,114,115],[305,5,4,115,119],[306,4,3,119,122],[308,1,1,122,123],[312,2,1,123,124]]],[11,12,12,124,136,[[324,1,1,124,125],[326,1,1,125,126],[327,1,1,126,127],[328,2,2,127,129],[329,1,1,129,130],[333,3,3,130,133],[334,1,1,133,134],[335,1,1,134,135],[337,1,1,135,136]]],[12,29,27,136,163,[[343,2,2,136,138],[344,1,1,138,139],[345,1,1,139,140],[348,1,1,140,141],[351,1,1,141,142],[354,5,5,142,147],[358,2,2,147,149],[359,9,8,149,157],[365,5,4,157,161],[366,2,2,161,163]]],[13,61,54,163,217,[[368,8,7,163,170],[369,3,3,170,173],[372,11,10,173,183],[374,8,7,183,190],[375,1,1,190,191],[377,2,2,191,193],[380,3,2,193,195],[382,4,3,195,198],[383,1,1,198,199],[386,1,1,199,200],[392,4,4,200,204],[393,4,2,204,206],[398,1,1,206,207],[399,7,7,207,214],[400,1,1,214,215],[401,1,1,215,216],[402,1,1,216,217]]],[14,10,9,217,226,[[403,3,3,217,220],[405,2,2,220,222],[406,5,4,222,226]]],[15,24,22,226,248,[[414,4,4,226,230],[415,7,6,230,236],[416,8,7,236,243],[418,2,2,243,245],[419,2,2,245,247],[424,1,1,247,248]]],[17,5,5,248,253,[[438,1,1,248,249],[447,1,1,249,250],[455,1,1,250,251],[457,1,1,251,252],[462,1,1,252,253]]],[18,12,11,253,264,[[505,1,1,253,254],[528,1,1,254,255],[546,1,1,255,256],[555,1,1,256,257],[566,2,2,257,259],[579,1,1,259,260],[595,1,1,260,261],[599,1,1,261,262],[604,2,1,262,263],[624,1,1,263,264]]],[19,4,4,264,268,[[636,1,1,264,265],[641,1,1,265,266],[651,2,2,266,268]]],[20,3,3,268,271,[[660,1,1,268,269],[661,1,1,269,270],[667,1,1,270,271]]],[21,2,2,271,273,[[674,1,1,271,272],[678,1,1,272,273]]],[22,12,12,273,285,[[683,1,1,273,274],[687,1,1,274,275],[703,1,1,275,276],[722,2,2,276,278],[723,1,1,278,279],[736,1,1,279,280],[738,1,1,280,281],[739,1,1,281,282],[743,2,2,282,284],[744,1,1,284,285]]],[23,23,22,285,307,[[745,1,1,285,286],[751,1,1,286,287],[756,1,1,287,288],[762,1,1,288,289],[763,1,1,289,290],[766,2,2,290,292],[768,1,1,292,293],[773,2,2,293,295],[774,1,1,295,296],[775,4,3,296,299],[776,2,2,299,301],[777,1,1,301,302],[779,2,2,302,304],[786,1,1,304,305],[789,1,1,305,306],[796,1,1,306,307]]],[24,1,1,307,308,[[799,1,1,307,308]]],[25,16,16,308,324,[[805,1,1,308,309],[812,1,1,309,310],[814,1,1,310,311],[817,3,3,311,314],[818,1,1,314,315],[822,1,1,315,316],[827,1,1,316,317],[828,2,2,317,319],[829,1,1,319,320],[837,3,3,320,323],[840,1,1,323,324]]],[26,2,1,324,325,[[858,2,1,324,325]]],[27,1,1,325,326,[[869,1,1,325,326]]],[29,4,4,326,330,[[883,1,1,326,327],[887,3,3,327,330]]],[32,2,2,330,332,[[895,1,1,330,331],[899,1,1,331,332]]],[34,1,1,332,333,[[904,1,1,332,333]]],[35,1,1,333,334,[[906,1,1,333,334]]],[36,2,2,334,336,[[909,2,2,334,336]]],[37,7,7,336,343,[[911,1,1,336,337],[915,1,1,337,338],[916,3,3,338,341],[918,1,1,341,342],[919,1,1,342,343]]],[38,3,2,343,345,[[925,2,1,343,344],[927,1,1,344,345]]]],[52,96,203,245,270,271,274,305,306,336,383,556,717,833,977,1018,1543,1998,2076,2181,2443,4097,4367,4417,4430,4445,4734,4742,4752,4755,4756,5096,5149,5288,5432,5447,5478,5556,5590,5591,5641,5975,6032,6371,6436,6437,6442,6445,6449,6452,6455,6489,6535,6678,6680,6682,7021,7106,7125,7201,7275,7369,7543,8141,8143,8185,8187,8193,8207,8713,8717,8806,8817,8818,8881,8883,8896,8897,8898,8901,8903,8905,8906,8908,8910,8911,8912,8932,8934,8935,8936,8998,9001,9002,9003,9004,9005,9012,9028,9029,9033,9052,9054,9061,9066,9068,9070,9075,9076,9083,9115,9135,9146,9176,9241,9266,9270,9271,9272,9307,9315,9317,9373,9519,9861,9918,9960,9974,9981,9992,10122,10123,10124,10151,10178,10223,10464,10486,10559,10587,10681,10775,10867,10869,10873,10875,10888,10956,10960,10966,10969,10970,10971,10972,10974,10975,10983,11145,11146,11149,11153,11180,11183,11212,11214,11215,11216,11217,11220,11223,11230,11231,11232,11284,11287,11289,11290,11291,11292,11300,11315,11316,11320,11347,11348,11350,11351,11352,11357,11358,11367,11419,11420,11481,11482,11510,11514,11515,11535,11595,11734,11738,11741,11742,11758,11759,11880,11911,11912,11913,11922,11923,11924,11927,11944,11969,12016,12018,12019,12021,12099,12107,12111,12112,12113,12114,12312,12324,12325,12327,12328,12329,12330,12340,12341,12342,12360,12362,12364,12365,12369,12376,12377,12402,12407,12421,12424,12653,12918,13142,13345,13412,13499,14304,14709,14970,15182,15328,15330,15537,15891,16092,16122,16353,16639,16773,17082,17106,17337,17362,17489,17586,17649,17741,17839,18120,18559,18561,18574,18798,18831,18847,18918,18919,18923,18956,19150,19265,19393,19412,19467,19468,19530,19640,19663,19685,19695,19719,19729,19762,19766,19782,19830,19832,19985,20044,20280,20359,20531,20658,20718,20786,20787,20793,20842,20966,21114,21125,21126,21183,21369,21392,21395,21463,22013,22208,22434,22501,22506,22509,22618,22675,22760,22800,22842,22848,22894,22947,22959,22960,22962,22985,23002,23093,23135]]],["+",[60,58,[[0,3,3,0,3,[[3,1,1,0,1],[9,1,1,1,2],[21,1,1,2,3]]],[3,2,2,3,5,[[148,2,2,3,5]]],[4,2,2,5,7,[[177,1,1,5,6],[179,1,1,6,7]]],[5,3,3,7,10,[[192,1,1,7,8],[205,1,1,8,9],[208,1,1,9,10]]],[6,2,2,10,12,[[228,1,1,10,11],[231,1,1,11,12]]],[7,1,1,12,13,[[235,1,1,12,13]]],[10,19,17,13,30,[[293,1,1,13,14],[296,5,5,14,19],[298,2,1,19,20],[299,4,4,20,24],[301,1,1,24,25],[302,2,1,25,26],[305,2,2,26,28],[306,2,2,28,30]]],[11,3,3,30,33,[[326,1,1,30,31],[327,1,1,31,32],[328,1,1,32,33]]],[12,3,3,33,36,[[343,1,1,33,34],[344,1,1,34,35],[345,1,1,35,36]]],[13,11,11,36,47,[[369,2,2,36,38],[374,2,2,38,40],[380,1,1,40,41],[382,2,2,41,43],[392,1,1,43,44],[393,1,1,44,45],[398,1,1,45,46],[399,1,1,46,47]]],[14,3,3,47,50,[[403,2,2,47,49],[405,1,1,49,50]]],[15,4,4,50,54,[[414,1,1,50,51],[415,1,1,51,52],[416,1,1,52,53],[418,1,1,53,54]]],[23,1,1,54,55,[[776,1,1,54,55]]],[25,1,1,55,56,[[828,1,1,55,56]]],[37,2,2,56,58,[[916,2,2,56,58]]]],[96,245,556,4752,4755,5556,5591,5975,6371,6437,7021,7125,7201,8817,8905,8906,8910,8911,8912,8998,9061,9066,9068,9075,9135,9176,9266,9270,9307,9317,9918,9960,9974,10486,10559,10587,11230,11232,11350,11351,11482,11510,11514,11734,11758,11880,11924,12019,12021,12099,12324,12328,12360,12402,19766,21126,22959,22960]]],["Build",[5,5,[[3,3,3,0,3,[[139,2,2,0,2],[148,1,1,2,3]]],[10,1,1,3,4,[[292,1,1,3,4]]],[23,1,1,4,5,[[773,1,1,4,5]]]],[4417,4445,4742,8806,19640]]],["again",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13142]]],["build",[114,107,[[0,2,2,0,2,[[10,2,2,0,2]]],[1,1,1,2,3,[[69,1,1,2,3]]],[3,1,1,3,4,[[148,1,1,3,4]]],[4,3,3,4,7,[[172,1,1,4,5],[179,1,1,5,6],[180,1,1,6,7]]],[5,2,2,7,9,[[208,2,2,7,9]]],[6,1,1,9,10,[[216,1,1,9,10]]],[8,1,1,10,11,[[237,1,1,10,11]]],[9,5,5,11,16,[[273,4,4,11,15],[290,1,1,15,16]]],[10,13,11,16,27,[[295,4,3,16,19],[296,1,1,19,20],[298,5,4,20,24],[299,1,1,24,25],[301,2,2,25,27]]],[12,19,19,27,46,[[351,1,1,27,28],[354,4,4,28,32],[358,1,1,32,33],[359,7,7,33,40],[365,4,4,40,44],[366,2,2,44,46]]],[13,17,15,46,61,[[368,8,7,46,53],[369,1,1,53,54],[372,5,4,54,58],[374,1,1,58,59],[401,1,1,59,60],[402,1,1,60,61]]],[14,4,3,61,64,[[403,1,1,61,62],[406,3,2,62,64]]],[15,6,6,64,70,[[414,3,3,64,67],[415,1,1,67,68],[416,2,2,68,70]]],[18,4,3,70,73,[[528,1,1,70,71],[546,1,1,71,72],[604,2,1,72,73]]],[19,1,1,73,74,[[651,1,1,73,74]]],[21,1,1,74,75,[[678,1,1,74,75]]],[22,7,7,75,82,[[687,1,1,75,76],[723,1,1,76,77],[736,1,1,77,78],[739,1,1,78,79],[743,2,2,79,81],[744,1,1,81,82]]],[23,11,11,82,93,[[745,1,1,82,83],[762,1,1,83,84],[766,1,1,84,85],[768,1,1,85,86],[773,1,1,86,87],[775,2,2,87,89],[777,1,1,89,90],[779,2,2,90,92],[786,1,1,92,93]]],[25,5,5,93,98,[[805,1,1,93,94],[812,1,1,94,95],[822,1,1,95,96],[829,1,1,96,97],[837,1,1,97,98]]],[26,1,1,98,99,[[858,1,1,98,99]]],[29,2,2,99,101,[[887,2,2,99,101]]],[35,1,1,101,102,[[906,1,1,101,102]]],[36,1,1,102,103,[[909,1,1,102,103]]],[37,3,3,103,106,[[915,1,1,103,104],[916,1,1,104,105],[919,1,1,105,106]]],[38,2,1,106,107,[[925,2,1,106,107]]]],[270,274,2076,4734,5447,5590,5641,6452,6455,6680,7275,8185,8187,8193,8207,8713,8881,8883,8896,8897,9001,9002,9003,9004,9070,9115,9146,10775,10867,10873,10875,10888,10956,10966,10970,10971,10972,10974,10975,10983,11145,11146,11149,11153,11180,11183,11212,11214,11215,11216,11217,11220,11223,11231,11287,11289,11290,11291,11352,11969,12016,12018,12112,12113,12312,12325,12327,12330,12362,12369,14709,14970,16122,17106,17649,17839,18574,18798,18847,18918,18919,18923,18956,19393,19468,19530,19663,19695,19719,19782,19830,19832,19985,20531,20658,20966,21183,21395,22013,22506,22509,22800,22848,22947,22962,23002,23093]]],["builded",[30,29,[[0,5,5,0,5,[[7,1,1,0,1],[10,1,1,1,2],[11,2,2,2,4],[25,1,1,4,5]]],[1,1,1,5,6,[[73,1,1,5,6]]],[3,1,1,6,7,[[148,1,1,6,7]]],[5,1,1,7,8,[[208,1,1,7,8]]],[10,3,3,8,11,[[298,2,2,8,10],[305,1,1,10,11]]],[11,1,1,11,12,[[335,1,1,11,12]]],[12,1,1,12,13,[[359,1,1,12,13]]],[14,1,1,13,14,[[406,1,1,13,14]]],[15,6,5,14,19,[[415,2,1,14,15],[416,2,2,15,17],[419,1,1,17,18],[424,1,1,18,19]]],[17,1,1,19,20,[[455,1,1,19,20]]],[18,1,1,20,21,[[599,1,1,20,21]]],[19,2,2,21,23,[[636,1,1,21,22],[651,1,1,22,23]]],[20,1,1,23,24,[[660,1,1,23,24]]],[21,1,1,24,25,[[674,1,1,24,25]]],[23,1,1,25,26,[[774,1,1,25,26]]],[24,1,1,26,27,[[799,1,1,26,27]]],[25,2,2,27,29,[[837,2,2,27,29]]]],[203,271,305,306,717,2181,4756,6442,9012,9028,9271,10178,10969,12111,12329,12376,12377,12424,12653,13345,16092,16639,17082,17337,17586,19685,20359,21369,21392]]],["buildedst",[1,1,[[4,1,1,0,1,[[158,1,1,0,1]]]],[5096]]],["builders",[10,9,[[10,2,1,0,1,[[295,2,1,0,1]]],[11,2,2,1,3,[[324,1,1,1,2],[334,1,1,2,3]]],[13,1,1,3,4,[[400,1,1,3,4]]],[14,1,1,4,5,[[405,1,1,4,5]]],[15,2,2,5,7,[[416,2,2,5,7]]],[18,1,1,7,8,[[595,1,1,7,8]]],[25,1,1,8,9,[[828,1,1,8,9]]]],[8896,9861,10151,11944,12107,12364,12377,15891,21125]]],["buildest",[3,3,[[4,1,1,0,1,[[174,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]],[25,1,1,2,3,[[817,1,1,2,3]]]],[5478,12407,20793]]],["buildeth",[6,6,[[17,1,1,0,1,[[462,1,1,0,1]]],[19,1,1,1,2,[[641,1,1,1,2]]],[23,1,1,2,3,[[766,1,1,2,3]]],[27,1,1,3,4,[[869,1,1,3,4]]],[29,1,1,4,5,[[887,1,1,4,5]]],[34,1,1,5,6,[[904,1,1,5,6]]]],[13499,16773,19467,22208,22501,22760]]],["building",[11,10,[[5,1,1,0,1,[[208,1,1,0,1]]],[10,6,5,1,6,[[296,4,3,1,4],[297,1,1,4,5],[299,1,1,5,6]]],[12,1,1,6,7,[[365,1,1,6,7]]],[13,1,1,7,8,[[382,1,1,7,8]]],[14,1,1,8,9,[[406,1,1,8,9]]],[25,1,1,9,10,[[818,1,1,9,10]]]],[6445,8903,8908,8934,8935,9052,11145,11515,12114,20842]]],["built",[118,116,[[0,3,3,0,3,[[12,1,1,0,1],[32,1,1,1,2],[34,1,1,2,3]]],[1,3,3,3,6,[[50,1,1,3,4],[66,1,1,4,5],[81,1,1,5,6]]],[3,3,3,6,9,[[129,1,1,6,7],[137,1,1,7,8],[139,1,1,8,9]]],[4,3,3,9,12,[[160,1,1,9,10],[165,1,1,10,11],[172,1,1,11,12]]],[5,4,4,12,16,[[194,1,1,12,13],[208,2,2,13,15],[210,1,1,15,16]]],[6,4,4,16,20,[[211,1,1,16,17],[216,2,2,17,19],[231,1,1,19,20]]],[8,3,2,20,22,[[242,1,1,20,21],[249,2,1,21,22]]],[9,3,3,22,25,[[271,2,2,22,24],[290,1,1,24,25]]],[10,22,22,25,47,[[293,1,1,25,26],[296,5,5,26,31],[297,1,1,31,32],[298,3,3,32,35],[299,3,3,35,38],[300,1,1,38,39],[301,1,1,39,40],[304,1,1,40,41],[305,2,2,41,43],[306,2,2,43,45],[308,1,1,45,46],[312,1,1,46,47]]],[11,5,5,47,52,[[328,1,1,47,48],[329,1,1,48,49],[333,2,2,49,51],[337,1,1,51,52]]],[12,5,5,52,57,[[343,1,1,52,53],[348,1,1,53,54],[354,1,1,54,55],[358,1,1,55,56],[359,1,1,56,57]]],[13,31,30,57,87,[[372,6,6,57,63],[374,5,5,63,68],[375,1,1,68,69],[377,2,2,69,71],[380,2,2,71,73],[382,1,1,73,74],[383,1,1,74,75],[386,1,1,75,76],[392,3,3,76,79],[393,3,2,79,81],[399,6,6,81,87]]],[15,5,5,87,92,[[415,3,3,87,90],[416,1,1,90,91],[419,1,1,91,92]]],[17,1,1,92,93,[[438,1,1,92,93]]],[18,1,1,93,94,[[555,1,1,93,94]]],[20,1,1,94,95,[[667,1,1,94,95]]],[22,4,4,95,99,[[683,1,1,95,96],[703,1,1,96,97],[722,2,2,97,99]]],[23,8,8,99,107,[[751,1,1,99,100],[756,1,1,100,101],[763,1,1,101,102],[775,2,2,102,104],[776,1,1,104,105],[789,1,1,105,106],[796,1,1,106,107]]],[25,3,3,107,110,[[817,2,2,107,109],[827,1,1,109,110]]],[26,1,1,110,111,[[858,1,1,110,111]]],[29,1,1,111,112,[[883,1,1,111,112]]],[32,1,1,112,113,[[899,1,1,112,113]]],[36,1,1,113,114,[[909,1,1,113,114]]],[37,2,2,114,116,[[911,1,1,114,115],[918,1,1,115,116]]]],[336,977,1018,1543,1998,2443,4097,4367,4430,5149,5288,5432,6032,6436,6449,6489,6535,6678,6682,7106,7369,7543,8141,8143,8717,8818,8898,8901,8903,8912,8932,8936,9005,9029,9033,9054,9075,9076,9083,9146,9241,9271,9272,9307,9315,9373,9519,9981,9992,10123,10124,10223,10464,10681,10869,10960,10983,11284,11292,11300,11315,11316,11320,11347,11348,11350,11357,11358,11367,11419,11420,11481,11482,11515,11535,11595,11738,11741,11742,11758,11759,11911,11912,11913,11922,11923,11927,12340,12341,12342,12365,12421,12918,15182,17489,17741,18120,18559,18561,19150,19265,19412,19695,19729,19762,20044,20280,20786,20787,21114,22013,22434,22675,22842,22894,22985]]],["children",[2,2,[[0,2,2,0,2,[[15,1,1,0,1],[29,1,1,1,2]]]],[383,833]]],["made",[2,2,[[0,1,1,0,1,[[1,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]]],[52,9519]]],["up",[13,13,[[11,1,1,0,1,[[333,1,1,0,1]]],[17,1,1,1,2,[[457,1,1,1,2]]],[18,5,5,2,7,[[505,1,1,2,3],[566,2,2,3,5],[579,1,1,5,6],[624,1,1,6,7]]],[20,1,1,7,8,[[661,1,1,7,8]]],[22,1,1,8,9,[[738,1,1,8,9]]],[25,2,2,9,11,[[814,1,1,9,10],[840,1,1,10,11]]],[32,1,1,11,12,[[895,1,1,11,12]]],[38,1,1,12,13,[[927,1,1,12,13]]]],[10122,13412,14304,15328,15330,15537,16353,17362,18831,20718,21463,22618,23135]]]]},{"k":"H1130","v":[["Benhadad",[25,24,[[10,15,14,0,14,[[305,2,2,0,2],[310,13,12,2,14]]],[11,6,6,14,20,[[318,1,1,14,15],[320,2,2,15,17],[325,3,3,17,20]]],[13,2,2,20,22,[[382,2,2,20,22]]],[23,1,1,22,23,[[793,1,1,22,23]]],[29,1,1,23,24,[[879,1,1,23,24]]]],[9267,9269,9409,9410,9413,9417,9418,9424,9425,9428,9434,9438,9440,9441,9698,9734,9736,9874,9895,9896,11511,11513,20154,22368]]]]},{"k":"H1131","v":[["Binnui",[7,7,[[14,3,3,0,3,[[410,1,1,0,1],[412,2,2,1,3]]],[15,4,4,3,7,[[415,1,1,3,4],[419,1,1,4,5],[422,1,1,5,6],[424,1,1,6,7]]]],[12234,12282,12290,12351,12435,12558,12632]]]]},{"k":"H1132","v":[["Benzoheth",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10405]]]]},{"k":"H1133","v":[["Hur",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8852]]]]},{"k":"H1134","v":[["Benhail",[1,1,[[13,1,1,0,1,[[383,1,1,0,1]]]],[11530]]]]},{"k":"H1135","v":[["Benhanan",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10405]]]]},{"k":"H1136","v":[["Hesed",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8854]]]]},{"k":"H1137","v":[["Bani",[15,14,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,2,2,1,3,[[343,1,1,1,2],[346,1,1,2,3]]],[14,4,4,3,7,[[404,1,1,3,4],[412,3,3,4,7]]],[15,8,7,7,14,[[415,1,1,7,8],[420,1,1,8,9],[421,3,2,9,11],[422,2,2,11,13],[423,1,1,13,14]]]],[8689,10500,10619,12037,12281,12286,12290,12344,12500,12515,12516,12562,12563,12610]]]]},{"k":"H1138","v":[["Bunni",[3,3,[[15,3,3,0,3,[[421,1,1,0,1],[422,1,1,1,2],[423,1,1,2,3]]]],[12515,12564,12603]]]]},{"k":"H1139","v":[["Beneberak",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6366]]]]},{"k":"H1140","v":[["building",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21539]]]]},{"k":"H1141","v":[["Benaiah",[42,41,[[9,5,5,0,5,[[274,1,1,0,1],[286,1,1,1,2],[289,3,3,2,5]]],[10,15,14,5,19,[[291,7,7,5,12],[292,7,6,12,18],[294,1,1,18,19]]],[12,14,14,19,33,[[341,1,1,19,20],[348,3,3,20,23],[352,3,3,23,26],[353,2,2,26,28],[355,1,1,28,29],[364,4,4,29,33]]],[13,2,2,33,35,[[386,1,1,33,34],[397,1,1,34,35]]],[14,4,4,35,39,[[412,4,4,35,39]]],[25,2,2,39,41,[[812,2,2,39,41]]]],[8227,8577,8673,8675,8683,8725,8727,8743,8749,8753,8755,8761,8795,8799,8800,8804,8805,8816,8848,10421,10695,10697,10704,10809,10811,10815,10825,10826,10907,11114,11115,11123,11143,11601,11867,12277,12282,12287,12295,20656,20668]]]]},{"k":"H1142","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4791,4792]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4792]]],["Benejaakan",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4791]]]]},{"k":"H1143","v":[["+",[2,2,[[8,2,2,0,2,[[252,2,2,0,2]]]],[7622,7641]]]]},{"k":"H1144","v":[["*",[166,159,[[0,17,16,0,16,[[34,2,2,0,2],[41,2,2,2,4],[42,5,5,4,9],[43,1,1,9,10],[44,4,3,10,13],[45,2,2,13,15],[48,1,1,15,16]]],[1,1,1,16,17,[[50,1,1,16,17]]],[3,11,10,17,27,[[117,3,3,17,20],[118,2,1,20,21],[123,1,1,21,22],[126,1,1,22,23],[129,1,1,23,24],[142,2,2,24,26],[150,1,1,26,27]]],[4,2,2,27,29,[[179,1,1,27,28],[185,1,1,28,29]]],[5,6,6,29,35,[[204,4,4,29,33],[207,2,2,33,35]]],[6,45,42,35,77,[[211,2,1,35,36],[215,1,1,36,37],[220,1,1,37,38],[229,1,1,38,39],[230,29,27,39,66],[231,11,11,66,77]]],[8,11,11,77,88,[[239,1,1,77,78],[244,3,3,78,81],[245,3,3,81,84],[248,3,3,84,87],[249,1,1,87,88]]],[9,11,9,88,97,[[268,4,4,88,92],[269,2,1,92,93],[270,2,1,93,94],[285,1,1,94,95],[287,1,1,95,96],[289,1,1,96,97]]],[10,4,4,97,101,[[294,1,1,97,98],[302,2,2,98,100],[305,1,1,100,101]]],[12,15,15,101,116,[[339,1,1,101,102],[343,2,2,102,104],[344,2,2,104,106],[345,2,2,106,108],[346,2,2,108,110],[348,1,1,110,111],[349,3,3,111,114],[358,1,1,114,115],[364,1,1,115,116]]],[13,14,14,116,130,[[377,5,5,116,121],[380,1,1,121,122],[381,3,3,122,125],[383,1,1,125,126],[391,1,1,126,127],[397,1,1,127,128],[400,2,2,128,130]]],[14,4,4,130,134,[[403,1,1,130,131],[406,1,1,131,132],[412,2,2,132,134]]],[15,6,6,134,140,[[415,1,1,134,135],[423,4,4,135,139],[424,1,1,139,140]]],[18,2,2,140,142,[[545,1,1,140,141],[557,1,1,141,142]]],[23,10,10,142,152,[[745,1,1,142,143],[750,1,1,143,144],[761,1,1,144,145],[764,1,1,145,146],[776,2,2,146,148],[777,1,1,148,149],[781,2,2,149,151],[782,1,1,151,152]]],[25,4,4,152,156,[[849,4,4,152,156]]],[27,1,1,156,157,[[866,1,1,156,157]]],[30,1,1,157,158,[[888,1,1,157,158]]],[37,1,1,158,159,[[924,1,1,158,159]]]],[1029,1035,1256,1288,1304,1305,1306,1319,1324,1336,1370,1372,1380,1405,1407,1500,1535,3615,3640,3641,3680,3910,4012,4084,4527,4530,4837,5597,5822,6304,6313,6314,6321,6385,6398,6530,6637,6820,7038,7057,7058,7064,7066,7067,7068,7069,7071,7072,7074,7075,7077,7078,7079,7082,7084,7085,7086,7089,7090,7093,7094,7095,7097,7098,7100,7102,7103,7108,7115,7116,7117,7118,7119,7120,7122,7123,7125,7309,7392,7407,7412,7420,7438,7439,7487,7500,7501,7524,8058,8064,8074,8080,8100,8122,8528,8594,8682,8862,9172,9174,9271,10308,10514,10519,10541,10545,10576,10615,10618,10622,10704,10722,10736,10749,10940,11130,11415,11417,11424,11426,11437,11483,11492,11498,11499,11540,11709,11855,11942,11965,12021,12111,12261,12284,12350,12592,12595,12619,12624,12658,14927,15200,18947,19090,19383,19424,19739,19775,19788,19886,19887,19902,21724,21725,21726,21734,22160,22529,23078]]],["+",[13,13,[[5,1,1,0,1,[[207,1,1,0,1]]],[6,5,5,1,6,[[230,4,4,1,5],[231,1,1,5,6]]],[8,1,1,6,7,[[244,1,1,6,7]]],[9,2,2,7,9,[[268,1,1,7,8],[285,1,1,8,9]]],[12,3,3,9,12,[[343,2,2,9,11],[349,1,1,11,12]]],[13,1,1,12,13,[[380,1,1,12,13]]]],[6398,7071,7097,7098,7100,7118,7392,8080,8528,10514,10519,10722,11483]]],["Benjamin",[146,142,[[0,14,14,0,14,[[34,2,2,0,2],[41,2,2,2,4],[42,4,4,4,8],[44,3,3,8,11],[45,2,2,11,13],[48,1,1,13,14]]],[1,1,1,14,15,[[50,1,1,14,15]]],[3,11,10,15,25,[[117,3,3,15,18],[118,2,1,18,19],[123,1,1,19,20],[126,1,1,20,21],[129,1,1,21,22],[142,2,2,22,24],[150,1,1,24,25]]],[4,2,2,25,27,[[179,1,1,25,26],[185,1,1,26,27]]],[5,5,5,27,32,[[204,4,4,27,31],[207,1,1,31,32]]],[6,37,36,32,68,[[211,2,1,32,33],[215,1,1,33,34],[220,1,1,34,35],[229,1,1,35,36],[230,22,22,36,58],[231,10,10,58,68]]],[8,10,10,68,78,[[239,1,1,68,69],[244,2,2,69,71],[245,3,3,71,74],[248,3,3,74,77],[249,1,1,77,78]]],[9,9,7,78,85,[[268,3,3,78,81],[269,2,1,81,82],[270,2,1,82,83],[287,1,1,83,84],[289,1,1,84,85]]],[10,4,4,85,89,[[294,1,1,85,86],[302,2,2,86,88],[305,1,1,88,89]]],[12,12,12,89,101,[[339,1,1,89,90],[344,2,2,90,92],[345,2,2,92,94],[346,2,2,94,96],[348,1,1,96,97],[349,2,2,97,99],[358,1,1,99,100],[364,1,1,100,101]]],[13,13,13,101,114,[[377,5,5,101,106],[381,3,3,106,109],[383,1,1,109,110],[391,1,1,110,111],[397,1,1,111,112],[400,2,2,112,114]]],[14,4,4,114,118,[[403,1,1,114,115],[406,1,1,115,116],[412,2,2,116,118]]],[15,6,6,118,124,[[415,1,1,118,119],[423,4,4,119,123],[424,1,1,123,124]]],[18,2,2,124,126,[[545,1,1,124,125],[557,1,1,125,126]]],[23,10,10,126,136,[[745,1,1,126,127],[750,1,1,127,128],[761,1,1,128,129],[764,1,1,129,130],[776,2,2,130,132],[777,1,1,132,133],[781,2,2,133,135],[782,1,1,135,136]]],[25,4,4,136,140,[[849,4,4,136,140]]],[27,1,1,140,141,[[866,1,1,140,141]]],[30,1,1,141,142,[[888,1,1,141,142]]]],[1029,1035,1256,1288,1304,1305,1306,1319,1370,1372,1380,1405,1407,1500,1535,3615,3640,3641,3680,3910,4012,4084,4527,4530,4837,5597,5822,6304,6313,6314,6321,6385,6530,6637,6820,7038,7057,7058,7064,7066,7067,7068,7069,7072,7074,7075,7077,7078,7079,7082,7084,7085,7086,7089,7090,7093,7095,7102,7103,7108,7115,7116,7117,7119,7120,7122,7123,7125,7309,7407,7412,7420,7438,7439,7487,7500,7501,7524,8058,8064,8074,8100,8122,8594,8682,8862,9172,9174,9271,10308,10541,10545,10576,10615,10618,10622,10704,10736,10749,10940,11130,11415,11417,11424,11426,11437,11492,11498,11499,11540,11709,11855,11942,11965,12021,12111,12261,12284,12350,12592,12595,12619,12624,12658,14927,15200,18947,19090,19383,19424,19739,19775,19788,19886,19887,19902,21724,21725,21726,21734,22160,22529]]],["Benjamin's",[4,4,[[0,3,3,0,3,[[42,1,1,0,1],[43,1,1,1,2],[44,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[1324,1336,1372,23078]]],["Benjamites",[3,3,[[6,3,3,0,3,[[230,3,3,0,3]]]],[7089,7090,7094]]]]},{"k":"H1145","v":[["*",[12,12,[[6,2,2,0,2,[[213,1,1,0,1],[229,1,1,1,2]]],[8,4,4,2,6,[[244,3,3,2,5],[257,1,1,5,6]]],[9,3,3,6,9,[[282,1,1,6,7],[285,1,1,7,8],[286,1,1,8,9]]],[10,1,1,9,10,[[292,1,1,9,10]]],[12,1,1,10,11,[[364,1,1,10,11]]],[16,1,1,11,12,[[427,1,1,11,12]]]],[6583,7040,7392,7395,7412,7794,8437,8527,8555,8778,11121,12729]]],["+",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6583]]],["Benjamite",[7,7,[[8,2,2,0,2,[[244,2,2,0,2]]],[9,3,3,2,5,[[282,1,1,2,3],[285,1,1,3,4],[286,1,1,4,5]]],[10,1,1,5,6,[[292,1,1,5,6]]],[16,1,1,6,7,[[427,1,1,6,7]]]],[7392,7412,8437,8527,8555,8778,12729]]],["Benjamites",[4,4,[[6,1,1,0,1,[[229,1,1,0,1]]],[8,2,2,1,3,[[244,1,1,1,2],[257,1,1,2,3]]],[12,1,1,3,4,[[364,1,1,3,4]]]],[7040,7395,7794,11121]]]]},{"k":"H1146","v":[["building",[7,6,[[25,7,6,0,6,[[841,1,1,0,1],[842,3,2,1,3],[843,3,3,3,6]]]],[21482,21538,21541,21553,21557,21562]]]]},{"k":"H1147","v":[["building",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12138]]]]},{"k":"H1148","v":[["Beninu",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12562]]]]},{"k":"H1149","v":[["angry",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21770]]]]},{"k":"H1150","v":[["Binea",[2,2,[[12,2,2,0,2,[[345,1,1,0,1],[346,1,1,1,2]]]],[10612,10658]]]]},{"k":"H1151","v":[["Benammi",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[495]]]]},{"k":"H1152","v":[["Besodeiah",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12333]]]]},{"k":"H1153","v":[["Besai",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12076,12472]]]]},{"k":"H1154","v":[["grape",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13236]]]]},{"k":"H1155","v":[["*",[4,4,[[22,1,1,0,1,[[696,1,1,0,1]]],[23,2,2,1,3,[[775,2,2,1,3]]],[25,1,1,3,4,[[819,1,1,3,4]]]],[18002,19720,19721,20851]]],["grape",[3,3,[[22,1,1,0,1,[[696,1,1,0,1]]],[23,2,2,1,3,[[775,2,2,1,3]]]],[18002,19720,19721]]],["grapes",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20851]]]]},{"k":"H1156","v":[["*",[12,12,[[26,12,12,0,12,[[851,5,5,0,5],[853,1,1,5,6],[855,5,5,6,11],[856,1,1,11,12]]]],[21771,21774,21776,21781,21807,21873,21909,21912,21916,21917,21918,21949]]],["+",[2,2,[[26,2,2,0,2,[[855,1,1,0,1],[856,1,1,1,2]]]],[21909,21949]]],["ask",[2,2,[[26,2,2,0,2,[[855,2,2,0,2]]]],[21912,21917]]],["desire",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21776]]],["desired",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21774,21781]]],["maketh",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21918]]],["praying",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21916]]],["requested",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21807]]],["sought",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21771,21873]]]]},{"k":"H1157","v":[["*",[104,81,[[0,4,4,0,4,[[6,1,1,0,1],[19,2,2,1,3],[25,1,1,3,4]]],[1,2,2,4,6,[[57,1,1,4,5],[81,1,1,5,6]]],[2,12,5,6,11,[[98,3,1,6,7],[105,9,4,7,11]]],[3,1,1,11,12,[[137,1,1,11,12]]],[4,1,1,12,13,[[161,1,1,12,13]]],[5,1,1,13,14,[[188,1,1,13,14]]],[6,5,4,14,18,[[213,2,2,14,16],[215,2,1,16,17],[219,1,1,17,18]]],[8,7,7,18,25,[[236,1,1,18,19],[239,1,1,19,20],[242,2,2,20,22],[247,2,2,22,24],[254,1,1,24,25]]],[9,5,4,25,29,[[272,1,1,25,26],[276,2,1,26,27],[278,1,1,27,28],[286,1,1,28,29]]],[10,1,1,29,30,[[303,1,1,29,30]]],[11,12,8,30,38,[[313,1,1,30,31],[316,6,4,31,35],[321,1,1,35,36],[331,1,1,36,37],[334,3,1,37,38]]],[12,3,2,38,40,[[352,1,1,38,39],[356,2,1,39,40]]],[13,3,2,40,42,[[396,1,1,40,41],[400,2,1,41,42]]],[17,10,7,42,49,[[436,3,1,42,43],[437,2,1,43,44],[438,1,1,44,45],[441,1,1,45,46],[457,1,1,46,47],[477,2,2,47,49]]],[18,4,4,49,53,[[480,1,1,49,50],[549,1,1,50,51],[615,1,1,51,52],[616,1,1,52,53]]],[19,4,4,53,57,[[633,1,1,53,54],[634,1,1,54,55],[647,1,1,55,56],[654,1,1,56,57]]],[21,3,3,57,60,[[674,2,2,57,59],[676,1,1,59,60]]],[22,4,4,60,64,[[686,1,1,60,61],[704,1,1,61,62],[710,1,1,62,63],[715,1,1,63,64]]],[23,12,8,64,72,[[751,2,1,64,65],[755,3,1,65,66],[758,1,1,66,67],[765,1,1,67,68],[773,1,1,68,69],[781,1,1,69,70],[786,3,2,70,72]]],[24,1,1,72,73,[[799,1,1,72,73]]],[25,4,3,73,76,[[823,1,1,73,74],[846,3,2,74,76]]],[28,2,2,76,78,[[877,2,2,76,78]]],[29,1,1,78,79,[[887,1,1,78,79]]],[31,1,1,79,80,[[890,1,1,79,80]]],[37,1,1,80,81,[[922,1,1,80,81]]]],[175,502,513,700,1738,2468,2960,3207,3212,3218,3225,4347,5177,5884,6590,6591,6651,6805,7218,7315,7357,7361,7479,7483,7718,8173,8252,8302,8575,9190,9535,9607,9608,9624,9636,9786,10065,10158,10820,10920,11845,11954,12879,12895,12927,13000,13402,13930,13932,13960,15015,16239,16250,16566,16581,16970,17182,17583,17585,17621,17826,18150,18273,18356,19135,19240,19304,19442,19642,19877,19977,19995,20361,21006,21647,21652,22319,22320,22505,22554,23053]]],["+",[9,9,[[0,2,2,0,2,[[6,1,1,0,1],[19,1,1,1,2]]],[8,1,1,2,3,[[236,1,1,2,3]]],[17,1,1,3,4,[[437,1,1,3,4]]],[21,3,3,4,7,[[674,2,2,4,6],[676,1,1,6,7]]],[29,1,1,7,8,[[887,1,1,7,8]]],[37,1,1,8,9,[[922,1,1,8,9]]]],[175,513,7218,12895,17583,17585,17621,22505,23053]]],["about",[7,5,[[17,3,1,0,1,[[436,3,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]],[22,1,1,2,3,[[704,1,1,2,3]]],[24,1,1,3,4,[[799,1,1,3,4]]],[31,1,1,4,5,[[890,1,1,4,5]]]],[12879,16250,18150,20361,22554]]],["at",[5,5,[[0,1,1,0,1,[[25,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[11,1,1,2,3,[[321,1,1,2,3]]],[12,1,1,3,4,[[352,1,1,3,4]]],[28,1,1,4,5,[[877,1,1,4,5]]]],[700,6651,9786,10820,22320]]],["by",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7315]]],["concerneth",[1,1,[[18,1,1,0,1,[[615,1,1,0,1]]]],[16239]]],["for",[60,43,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,2,2,1,3,[[57,1,1,1,2],[81,1,1,2,3]]],[2,12,5,3,8,[[98,3,1,3,4],[105,9,4,4,8]]],[3,1,1,8,9,[[137,1,1,8,9]]],[4,1,1,9,10,[[161,1,1,9,10]]],[8,4,4,10,14,[[242,2,2,10,12],[247,2,2,12,14]]],[9,3,2,14,16,[[276,2,1,14,15],[278,1,1,15,16]]],[10,1,1,16,17,[[303,1,1,16,17]]],[11,4,2,17,19,[[331,1,1,17,18],[334,3,1,18,19]]],[12,2,1,19,20,[[356,2,1,19,20]]],[13,2,1,20,21,[[400,2,1,20,21]]],[17,4,4,21,25,[[437,1,1,21,22],[441,1,1,22,23],[477,2,2,23,25]]],[18,2,2,25,27,[[480,1,1,25,26],[549,1,1,26,27]]],[19,2,2,27,29,[[647,1,1,27,28],[654,1,1,28,29]]],[22,3,3,29,32,[[686,1,1,29,30],[710,1,1,30,31],[715,1,1,31,32]]],[23,12,8,32,40,[[751,2,1,32,33],[755,3,1,33,34],[758,1,1,34,35],[765,1,1,35,36],[773,1,1,36,37],[781,1,1,37,38],[786,3,2,38,40]]],[25,4,3,40,43,[[823,1,1,40,41],[846,3,2,41,43]]]],[502,1738,2468,2960,3207,3212,3218,3225,4347,5177,7357,7361,7479,7483,8252,8302,9190,10065,10158,10920,11954,12895,13000,13930,13932,13960,15015,16970,17182,17826,18273,18356,19135,19240,19304,19442,19642,19877,19977,19995,21006,21647,21652]]],["him",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6591]]],["means",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16566]]],["one",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11845]]],["over",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8575]]],["through",[7,7,[[5,1,1,0,1,[[188,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[8,1,1,2,3,[[254,1,1,2,3]]],[9,1,1,3,4,[[272,1,1,3,4]]],[11,1,1,4,5,[[313,1,1,4,5]]],[17,1,1,5,6,[[457,1,1,5,6]]],[19,1,1,6,7,[[634,1,1,6,7]]]],[5884,6651,7718,8173,9535,13402,16581]]],["to",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6805]]],["upon",[8,6,[[6,1,1,0,1,[[213,1,1,0,1]]],[11,6,4,1,5,[[316,6,4,1,5]]],[28,1,1,5,6,[[877,1,1,5,6]]]],[6590,9607,9608,9624,9636,22319]]],["whom",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12927]]]]},{"k":"H1158","v":[["*",[5,4,[[22,4,3,0,3,[[699,2,1,0,1],[708,1,1,1,2],[742,1,1,2,3]]],[30,1,1,3,4,[[888,1,1,3,4]]]],[18047,18230,18887,22516]]],["boil",[1,1,[[22,1,1,0,1,[[742,1,1,0,1]]]],[18887]]],["enquire",[2,1,[[22,2,1,0,1,[[699,2,1,0,1]]]],[18047]]],["out",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18230]]],["up",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22516]]]]},{"k":"H1159","v":[["petition",[2,2,[[26,2,2,0,2,[[855,2,2,0,2]]]],[21912,21918]]]]},{"k":"H1160","v":[["Beor",[10,10,[[0,1,1,0,1,[[35,1,1,0,1]]],[3,4,4,1,5,[[138,1,1,1,2],[140,2,2,2,4],[147,1,1,4,5]]],[4,1,1,5,6,[[175,1,1,5,6]]],[5,2,2,6,8,[[199,1,1,6,7],[210,1,1,7,8]]],[12,1,1,8,9,[[338,1,1,8,9]]],[32,1,1,9,10,[[898,1,1,9,10]]]],[1072,4380,4449,4461,4672,5504,6176,6485,10295,22653]]]]},{"k":"H1161","v":[["terrors",[2,2,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,1,1,1,2,[[565,1,1,1,2]]]],[12982,15324]]]]},{"k":"H1162","v":[["*",[24,22,[[7,20,18,0,18,[[233,10,10,0,10],[234,2,2,10,12],[235,8,6,12,18]]],[10,1,1,18,19,[[297,1,1,18,19]]],[12,2,2,19,21,[[339,2,2,19,21]]],[13,1,1,21,22,[[369,1,1,21,22]]]],[7150,7152,7153,7154,7157,7160,7163,7164,7168,7172,7174,7179,7191,7195,7198,7199,7203,7211,8955,10317,10318,11246]]],["+",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7191]]],["Boaz",[23,22,[[7,19,18,0,18,[[233,10,10,0,10],[234,2,2,10,12],[235,7,6,12,18]]],[10,1,1,18,19,[[297,1,1,18,19]]],[12,2,2,19,21,[[339,2,2,19,21]]],[13,1,1,21,22,[[369,1,1,21,22]]]],[7150,7152,7153,7154,7157,7160,7163,7164,7168,7172,7174,7179,7191,7195,7198,7199,7203,7211,8955,10317,10318,11246]]]]},{"k":"H1163","v":[["*",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]]],[5773,7269]]],["kick",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7269]]],["kicked",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5773]]]]},{"k":"H1164","v":[["grave",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13581]]]]},{"k":"H1165","v":[["*",[6,6,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[3,3,3,2,5,[[136,3,3,2,5]]],[18,1,1,5,6,[[555,1,1,5,6]]]],[1375,2118,4315,4319,4322,15161]]],["beast",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2118]]],["beasts",[3,3,[[0,1,1,0,1,[[44,1,1,0,1]]],[3,2,2,1,3,[[136,2,2,1,3]]]],[1375,4319,4322]]],["cattle",[2,2,[[3,1,1,0,1,[[136,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[4315,15161]]]]},{"k":"H1166","v":[["*",[15,13,[[0,1,1,0,1,[[19,1,1,0,1]]],[4,2,2,1,3,[[174,1,1,1,2],[176,1,1,2,3]]],[12,1,1,3,4,[[341,1,1,3,4]]],[19,1,1,4,5,[[657,1,1,4,5]]],[22,7,5,5,10,[[704,1,1,5,6],[732,2,2,6,8],[740,4,2,8,10]]],[23,2,2,10,12,[[747,1,1,10,11],[775,1,1,11,12]]],[38,1,1,12,13,[[926,1,1,12,13]]]],[498,5492,5526,10407,17274,18143,18724,18728,18858,18859,19016,19723,23114]]],["Beulah",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18858]]],["dominion",[2,2,[[12,1,1,0,1,[[341,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]]],[10407,18143]]],["husband",[2,2,[[22,1,1,0,1,[[732,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[18728,19723]]],["married",[6,6,[[4,2,2,0,2,[[174,1,1,0,1],[176,1,1,1,2]]],[19,1,1,2,3,[[657,1,1,2,3]]],[22,1,1,3,4,[[740,1,1,3,4]]],[23,1,1,4,5,[[747,1,1,4,5]]],[38,1,1,5,6,[[926,1,1,5,6]]]],[5492,5526,17274,18858,19016,23114]]],["marrieth",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18859]]],["marry",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18859]]],["wife",[2,2,[[0,1,1,0,1,[[19,1,1,0,1]]],[22,1,1,1,2,[[732,1,1,1,2]]]],[498,18724]]]]},{"k":"H1167","v":[["*",[85,81,[[0,4,4,0,4,[[13,1,1,0,1],[19,1,1,1,2],[36,1,1,2,3],[48,1,1,3,4]]],[1,14,12,4,16,[[70,8,6,4,10],[71,5,5,10,15],[73,1,1,15,16]]],[2,1,1,16,17,[[110,1,1,16,17]]],[3,1,1,17,18,[[137,1,1,17,18]]],[4,4,4,18,22,[[167,1,1,18,19],[173,1,1,19,20],[174,1,1,20,21],[176,1,1,21,22]]],[5,1,1,22,23,[[210,1,1,22,23]]],[6,19,17,23,40,[[219,16,14,23,37],[229,2,2,37,39],[230,1,1,39,40]]],[8,2,2,40,42,[[258,2,2,40,42]]],[9,3,3,42,45,[[267,1,1,42,43],[277,1,1,43,44],[287,1,1,44,45]]],[11,1,1,45,46,[[313,1,1,45,46]]],[15,1,1,46,47,[[418,1,1,46,47]]],[16,2,2,47,49,[[426,2,2,47,49]]],[17,1,1,49,50,[[466,1,1,49,50]]],[19,14,14,50,64,[[628,2,2,50,52],[630,1,1,52,53],[639,1,1,53,54],[643,1,1,54,55],[644,1,1,55,56],[645,1,1,56,57],[649,1,1,57,58],[650,1,1,58,59],[651,1,1,59,60],[656,1,1,60,61],[658,3,3,61,64]]],[20,7,7,64,71,[[663,2,2,64,66],[665,1,1,66,67],[666,1,1,67,68],[668,2,2,68,70],[670,1,1,70,71]]],[22,4,4,71,75,[[679,1,1,71,72],[694,1,1,72,73],[719,1,1,73,74],[728,1,1,74,75]]],[23,2,2,75,77,[[747,1,1,75,76],[781,1,1,76,77]]],[26,2,2,77,79,[[857,2,2,77,79]]],[28,1,1,79,80,[[876,1,1,79,80]]],[33,1,1,80,81,[[900,1,1,80,81]]]],[349,498,1102,1496,2080,2099,2105,2106,2111,2113,2121,2124,2125,2127,2128,2191,3349,4368,5321,5460,5492,5529,6487,6756,6757,6760,6761,6772,6774,6777,6778,6779,6780,6793,6800,6801,6805,7046,7047,7059,7821,7822,8028,8285,8592,9541,12419,12719,12722,13627,16417,16419,16482,16723,16862,16881,16910,17039,17046,17087,17246,17295,17307,17312,17408,17410,17441,17466,17504,17513,17534,17657,17977,18466,18670,19022,19887,21967,21981,22299,22686]]],["+",[15,15,[[0,3,3,0,3,[[13,1,1,0,1],[36,1,1,1,2],[48,1,1,2,3]]],[1,1,1,3,4,[[70,1,1,3,4]]],[4,1,1,4,5,[[167,1,1,4,5]]],[6,1,1,5,6,[[219,1,1,5,6]]],[9,1,1,6,7,[[267,1,1,6,7]]],[11,1,1,7,8,[[313,1,1,7,8]]],[15,1,1,8,9,[[418,1,1,8,9]]],[19,2,2,9,11,[[628,1,1,9,10],[630,1,1,10,11]]],[20,1,1,11,12,[[668,1,1,11,12]]],[22,1,1,12,13,[[728,1,1,12,13]]],[23,1,1,13,14,[[747,1,1,13,14]]],[33,1,1,14,15,[[900,1,1,14,15]]]],[349,1102,1496,2080,5321,6774,8028,9541,12419,16417,16482,17504,18670,19022,22686]]],["captain",[1,1,[[23,1,1,0,1,[[781,1,1,0,1]]]],[19887]]],["given",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17466]]],["great",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16910]]],["had",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21967]]],["hath",[3,3,[[19,2,2,0,2,[[643,1,1,0,1],[644,1,1,1,2]]],[20,1,1,2,3,[[668,1,1,2,3]]]],[16862,16881,17513]]],["have",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17441]]],["having",[2,2,[[22,1,1,0,1,[[719,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]]],[18466,21981]]],["husband",[10,10,[[1,1,1,0,1,[[70,1,1,0,1]]],[4,3,3,1,4,[[173,1,1,1,2],[174,1,1,2,3],[176,1,1,3,4]]],[9,1,1,4,5,[[277,1,1,4,5]]],[19,4,4,5,9,[[639,1,1,5,6],[658,3,3,6,9]]],[28,1,1,9,10,[[876,1,1,9,10]]]],[2099,5460,5492,5529,8285,16723,17295,17307,17312,22299]]],["husbands",[2,2,[[16,2,2,0,2,[[426,2,2,0,2]]]],[12719,12722]]],["lords",[2,2,[[3,1,1,0,1,[[137,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]]],[4368,17977]]],["man",[5,5,[[1,1,1,0,1,[[73,1,1,0,1]]],[2,1,1,1,2,[[110,1,1,1,2]]],[19,3,3,2,5,[[649,1,1,2,3],[650,1,1,3,4],[656,1,1,4,5]]]],[2191,3349,17039,17046,17246]]],["man's",[1,1,[[0,1,1,0,1,[[19,1,1,0,1]]]],[498]]],["master",[3,3,[[1,1,1,0,1,[[71,1,1,0,1]]],[6,2,2,1,3,[[229,2,2,1,3]]]],[2121,7046,7047]]],["master's",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17657]]],["masters",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17534]]],["men",[19,18,[[5,1,1,0,1,[[210,1,1,0,1]]],[6,15,14,1,15,[[219,14,13,1,14],[230,1,1,14,15]]],[8,2,2,15,17,[[258,2,2,15,17]]],[9,1,1,17,18,[[287,1,1,17,18]]]],[6487,6756,6757,6760,6761,6772,6774,6777,6778,6779,6780,6793,6800,6801,7059,7821,7822,8592]]],["owner",[10,8,[[1,10,8,0,8,[[70,6,4,0,4],[71,4,4,4,8]]]],[2105,2106,2111,2113,2124,2125,2127,2128]]],["owners",[4,4,[[17,1,1,0,1,[[466,1,1,0,1]]],[19,1,1,1,2,[[628,1,1,1,2]]],[20,2,2,2,4,[[663,2,2,2,4]]]],[13627,16419,17408,17410]]],["person",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17087]]],["they",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6805]]]]},{"k":"H1168","v":[["*",[81,69,[[3,1,1,0,1,[[138,1,1,0,1]]],[6,11,11,1,12,[[212,2,2,1,3],[213,1,1,3,4],[216,5,5,4,9],[218,1,1,9,10],[220,2,2,10,12]]],[8,2,2,12,14,[[242,1,1,12,13],[247,1,1,13,14]]],[10,13,11,14,25,[[306,3,2,14,16],[308,8,7,16,23],[309,1,1,23,24],[312,1,1,24,25]]],[11,24,16,25,41,[[315,1,1,25,26],[322,17,10,26,36],[323,2,1,36,37],[329,1,1,37,38],[333,1,1,38,39],[335,2,2,39,41]]],[12,4,4,41,45,[[341,1,1,41,42],[342,1,1,42,43],[345,1,1,43,44],[346,1,1,44,45]]],[13,7,6,45,51,[[383,1,1,45,46],[389,2,1,46,47],[390,1,1,47,48],[394,1,1,48,49],[399,1,1,49,50],[400,1,1,50,51]]],[23,13,12,51,63,[[746,2,2,51,53],[751,1,1,53,54],[753,1,1,54,55],[755,2,2,55,57],[756,1,1,57,58],[763,2,1,58,59],[767,2,2,59,61],[776,2,2,61,63]]],[27,5,5,63,68,[[863,3,3,63,66],[872,1,1,66,67],[874,1,1,67,68]]],[35,1,1,68,69,[[906,1,1,68,69]]]],[4416,6556,6558,6575,6679,6682,6684,6685,6686,6752,6817,6821,7356,7470,9314,9315,9359,9360,9362,9363,9366,9367,9381,9405,9533,9578,9811,9812,9813,9814,9815,9816,9818,9819,9820,9821,9847,9999,10122,10169,10170,10418,10433,10605,10651,11526,11673,11684,11766,11911,11937,18973,18988,19128,19189,19239,19243,19265,19412,19497,19511,19760,19766,22113,22118,22122,22242,22267,22791]]],["Baal",[62,50,[[3,1,1,0,1,[[138,1,1,0,1]]],[6,6,6,1,7,[[212,1,1,1,2],[216,5,5,2,7]]],[10,11,9,7,16,[[306,3,2,7,9],[308,6,5,9,14],[309,1,1,14,15],[312,1,1,15,16]]],[11,24,16,16,32,[[315,1,1,16,17],[322,17,10,17,27],[323,2,1,27,28],[329,1,1,28,29],[333,1,1,29,30],[335,2,2,30,32]]],[12,4,4,32,36,[[341,1,1,32,33],[342,1,1,33,34],[345,1,1,34,35],[346,1,1,35,36]]],[13,2,1,36,37,[[389,2,1,36,37]]],[23,11,10,37,47,[[746,1,1,37,38],[751,1,1,38,39],[755,2,2,39,41],[756,1,1,41,42],[763,2,1,42,43],[767,2,2,43,45],[776,2,2,45,47]]],[27,2,2,47,49,[[863,1,1,47,48],[874,1,1,48,49]]],[35,1,1,49,50,[[906,1,1,49,50]]]],[4416,6558,6679,6682,6684,6685,6686,9314,9315,9360,9362,9366,9367,9381,9405,9533,9578,9811,9812,9813,9814,9815,9816,9818,9819,9820,9821,9847,9999,10122,10169,10170,10418,10433,10605,10651,11673,18973,19128,19239,19243,19265,19412,19497,19511,19760,19766,22113,22267,22791]]],["Baal's",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9363]]],["Baalim",[18,18,[[6,5,5,0,5,[[212,1,1,0,1],[213,1,1,1,2],[218,1,1,2,3],[220,2,2,3,5]]],[8,2,2,5,7,[[242,1,1,5,6],[247,1,1,6,7]]],[10,1,1,7,8,[[308,1,1,7,8]]],[13,5,5,8,13,[[383,1,1,8,9],[390,1,1,9,10],[394,1,1,10,11],[399,1,1,11,12],[400,1,1,12,13]]],[23,2,2,13,15,[[746,1,1,13,14],[753,1,1,14,15]]],[27,3,3,15,18,[[863,2,2,15,17],[872,1,1,17,18]]]],[6556,6575,6752,6817,6821,7356,7470,9359,11526,11684,11766,11911,11937,18988,19189,22118,22122,22242]]]]},{"k":"H1169","v":[["+",[3,3,[[14,3,3,0,3,[[406,3,3,0,3]]]],[12118,12119,12127]]]]},{"k":"H1170","v":[["Baalberith",[2,2,[[6,2,2,0,2,[[218,1,1,0,1],[219,1,1,1,2]]]],[6752,6758]]]]},{"k":"H1171","v":[["*",[3,3,[[5,3,3,0,3,[[197,1,1,0,1],[198,1,1,1,2],[199,1,1,2,3]]]],[6124,6137,6159]]],["+",[2,2,[[5,2,2,0,2,[[198,1,1,0,1],[199,1,1,1,2]]]],[6137,6159]]],["Baalgad",[1,1,[[5,1,1,0,1,[[197,1,1,0,1]]]],[6124]]]]},{"k":"H1172","v":[["*",[4,3,[[8,2,1,0,1,[[263,2,1,0,1]]],[10,1,1,1,2,[[307,1,1,1,2]]],[33,1,1,2,3,[[902,1,1,2,3]]]],[7949,9334,22716]]],["hath",[2,1,[[8,2,1,0,1,[[263,2,1,0,1]]]],[7949]]],["mistress",[2,2,[[10,1,1,0,1,[[307,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[9334,22716]]]]},{"k":"H1173","v":[["*",[5,5,[[5,4,4,0,4,[[201,4,4,0,4]]],[12,1,1,4,5,[[350,1,1,4,5]]]],[6211,6212,6213,6231,10766]]],["+",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6212]]],["Baalah",[4,4,[[5,3,3,0,3,[[201,3,3,0,3]]],[12,1,1,3,4,[[350,1,1,3,4]]]],[6211,6213,6231,10766]]]]},{"k":"H1174","v":[["Baalhamon",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17651]]]]},{"k":"H1175","v":[["*",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]]],[6226,8860]]],["Aloth",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8860]]],["Bealoth",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6226]]]]},{"k":"H1176","v":[["Baalzebub",[4,4,[[11,4,4,0,4,[[313,4,4,0,4]]]],[9535,9536,9539,9549]]]]},{"k":"H1177","v":[["Baalhanan",[5,5,[[0,2,2,0,2,[[35,2,2,0,2]]],[12,3,3,2,5,[[338,2,2,2,4],[364,1,1,4,5]]]],[1078,1079,10301,10302,11137]]]]},{"k":"H1178","v":[["Baalhazor",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8340]]]]},{"k":"H1179","v":[["Baalhermon",[2,2,[[6,1,1,0,1,[[213,1,1,0,1]]],[12,1,1,1,2,[[342,1,1,1,2]]]],[6571,10451]]]]},{"k":"H1180","v":[["Baali",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22121]]]]},{"k":"H1181","v":[]},{"k":"H1182","v":[["Beeliada",[1,1,[[12,1,1,0,1,[[351,1,1,0,1]]]],[10781]]]]},{"k":"H1183","v":[["Bealiah",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10725]]]]},{"k":"H1184","v":[["+",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8159]]]]},{"k":"H1185","v":[["Baalis",[1,1,[[23,1,1,0,1,[[784,1,1,0,1]]]],[19955]]]]},{"k":"H1186","v":[["Baalmeon",[3,3,[[3,1,1,0,1,[[148,1,1,0,1]]],[12,1,1,1,2,[[342,1,1,1,2]]],[25,1,1,2,3,[[826,1,1,2,3]]]],[4756,10436,21092]]]]},{"k":"H1187","v":[["Baalpeor",[6,5,[[3,2,2,0,2,[[141,2,2,0,2]]],[4,2,1,2,3,[[156,2,1,2,3]]],[18,1,1,3,4,[[583,1,1,3,4]]],[27,1,1,4,5,[[870,1,1,4,5]]]],[4474,4476,5007,15679,22218]]]]},{"k":"H1188","v":[["Baalperazim",[4,2,[[9,2,1,0,1,[[271,2,1,0,1]]],[12,2,1,1,2,[[351,2,1,1,2]]]],[8152,10785]]]]},{"k":"H1189","v":[["Baalzephon",[3,3,[[1,2,2,0,2,[[63,2,2,0,2]]],[3,1,1,2,3,[[149,1,1,2,3]]]],[1891,1898,4767]]]]},{"k":"H1190","v":[["+",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9645]]]]},{"k":"H1191","v":[["Baalath",[3,3,[[5,1,1,0,1,[[205,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[13,1,1,2,3,[[374,1,1,2,3]]]],[6365,9069,11352]]]]},{"k":"H1192","v":[["Baalathbeer",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6329]]]]},{"k":"H1193","v":[["Baaltamar",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7087]]]]},{"k":"H1194","v":[["Beon",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4721]]]]},{"k":"H1195","v":[["*",[3,3,[[9,1,1,0,1,[[270,1,1,0,1]]],[10,2,2,1,3,[[294,2,2,1,3]]]],[8125,8856,8860]]],["Baana",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8856]]],["Baanah",[2,2,[[9,1,1,0,1,[[270,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]]],[8125,8860]]]]},{"k":"H1196","v":[["*",[9,9,[[9,4,4,0,4,[[270,3,3,0,3],[289,1,1,3,4]]],[12,1,1,4,5,[[348,1,1,4,5]]],[14,1,1,5,6,[[404,1,1,5,6]]],[15,3,3,6,9,[[415,1,1,6,7],[419,1,1,7,8],[422,1,1,8,9]]]],[8122,8126,8129,8682,10703,12029,12331,12427,12576]]],["Baana",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12331]]],["Baanah",[8,8,[[9,4,4,0,4,[[270,3,3,0,3],[289,1,1,3,4]]],[12,1,1,4,5,[[348,1,1,4,5]]],[14,1,1,5,6,[[404,1,1,5,6]]],[15,2,2,6,8,[[419,1,1,6,7],[422,1,1,7,8]]]],[8122,8126,8129,8682,10703,12029,12427,12576]]]]},{"k":"H1197","v":[["*",[94,90,[[1,6,5,0,5,[[52,2,2,0,2],[71,3,2,2,4],[84,1,1,4,5]]],[2,1,1,5,6,[[95,1,1,5,6]]],[3,3,3,6,9,[[127,2,2,6,8],[140,1,1,8,9]]],[4,16,16,9,25,[[156,1,1,9,10],[157,1,1,10,11],[161,1,1,11,12],[165,1,1,12,13],[169,2,2,13,15],[171,2,2,15,17],[173,2,2,17,19],[174,3,3,19,22],[176,1,1,22,23],[178,2,2,23,25]]],[6,4,3,25,28,[[225,3,2,25,27],[230,1,1,27,28]]],[9,3,3,28,31,[[270,1,1,28,29],[288,2,2,29,31]]],[10,5,4,31,35,[[304,2,1,31,32],[306,1,1,32,33],[311,1,1,33,34],[312,1,1,34,35]]],[11,1,1,35,36,[[335,1,1,35,36]]],[13,4,4,36,40,[[370,1,1,36,37],[379,1,1,37,38],[385,1,1,38,39],[394,1,1,39,40]]],[15,1,1,40,41,[[422,1,1,40,41]]],[16,1,1,41,42,[[426,1,1,41,42]]],[17,1,1,42,43,[[436,1,1,42,43]]],[18,8,8,43,51,[[479,1,1,43,44],[495,1,1,44,45],[516,1,1,45,46],[556,1,1,46,47],[560,1,1,47,48],[566,1,1,48,49],[571,1,1,49,50],[583,1,1,50,51]]],[22,17,17,51,68,[[679,1,1,51,52],[681,1,1,52,53],[682,1,1,53,54],[683,1,1,54,55],[684,1,1,55,56],[687,1,1,56,57],[688,1,1,57,58],[697,1,1,58,59],[708,2,2,59,61],[712,1,1,61,62],[718,1,1,62,63],[720,1,1,63,64],[721,1,1,64,65],[722,1,1,65,66],[728,1,1,66,67],[740,1,1,67,68]]],[23,11,11,68,79,[[748,1,1,68,69],[751,2,2,69,71],[754,3,3,71,74],[764,1,1,74,75],[765,1,1,75,76],[780,1,1,76,77],[788,1,1,77,78],[795,1,1,78,79]]],[24,1,1,79,80,[[798,1,1,79,80]]],[25,7,6,80,86,[[802,1,1,80,81],[806,1,1,81,82],[821,1,1,82,83],[822,1,1,83,84],[840,3,2,84,86]]],[27,2,2,86,88,[[868,2,2,86,88]]],[33,1,1,88,89,[[901,1,1,88,89]]],[38,1,1,89,90,[[928,1,1,89,90]]]],[1581,1582,2118,2119,2534,2861,4025,4027,4468,5015,5076,5172,5277,5371,5376,5419,5425,5456,5468,5491,5492,5494,5532,5579,5580,6934,6943,7067,8131,8611,8615,9228,9286,9472,9526,10189,11266,11464,11579,11767,12583,12714,12885,13957,14126,14515,15190,15255,15372,15439,15669,17685,17721,17737,17744,17782,17847,17867,18015,18244,18250,18312,18436,18505,18507,18548,18673,18855,19031,19137,19139,19209,19215,19222,19431,19452,19864,20016,20229,20335,20477,20548,20943,20975,21457,21458,22182,22184,22712,23139]]],["+",[10,10,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,6,6,1,7,[[165,1,1,1,2],[169,1,1,2,3],[171,1,1,3,4],[173,1,1,4,5],[174,1,1,5,6],[176,1,1,6,7]]],[9,1,1,7,8,[[270,1,1,7,8]]],[13,1,1,8,9,[[394,1,1,8,9]]],[23,1,1,9,10,[[751,1,1,9,10]]]],[2119,5277,5371,5425,5468,5491,5532,8131,11767,19137]]],["away",[14,13,[[4,7,7,0,7,[[169,1,1,0,1],[171,1,1,1,2],[173,1,1,2,3],[174,2,2,3,5],[178,2,2,5,7]]],[6,1,1,7,8,[[230,1,1,7,8]]],[10,4,3,8,11,[[304,2,1,8,9],[306,1,1,9,10],[311,1,1,10,11]]],[11,1,1,11,12,[[335,1,1,11,12]]],[13,1,1,12,13,[[385,1,1,12,13]]]],[5376,5419,5456,5492,5494,5579,5580,7067,9228,9286,9472,10189,11579]]],["brutish",[7,7,[[18,1,1,0,1,[[571,1,1,0,1]]],[22,1,1,1,2,[[697,1,1,1,2]]],[23,4,4,2,6,[[754,3,3,2,5],[795,1,1,5,6]]],[25,1,1,6,7,[[822,1,1,6,7]]]],[15439,18015,19209,19215,19222,20229,20975]]],["burn",[19,19,[[2,1,1,0,1,[[95,1,1,0,1]]],[4,1,1,1,2,[[157,1,1,1,2]]],[13,2,2,2,4,[[370,1,1,2,3],[379,1,1,3,4]]],[15,1,1,4,5,[[422,1,1,4,5]]],[18,2,2,5,7,[[556,1,1,5,6],[566,1,1,6,7]]],[22,4,4,7,11,[[679,1,1,7,8],[688,1,1,8,9],[718,1,1,9,10],[722,1,1,10,11]]],[23,3,3,11,14,[[748,1,1,11,12],[751,1,1,12,13],[765,1,1,13,14]]],[25,3,3,14,17,[[806,1,1,14,15],[840,2,2,15,17]]],[33,1,1,17,18,[[901,1,1,17,18]]],[38,1,1,18,19,[[928,1,1,18,19]]]],[2861,5076,11266,11464,12583,15190,15372,17685,17867,18436,18548,19031,19139,19452,20548,21457,21458,22712,23139]]],["burned",[7,7,[[1,1,1,0,1,[[52,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[161,1,1,2,3]]],[16,1,1,3,4,[[426,1,1,3,4]]],[18,1,1,4,5,[[516,1,1,4,5]]],[22,1,1,5,6,[[720,1,1,5,6]]],[24,1,1,6,7,[[798,1,1,6,7]]]],[1581,5015,5172,12714,14515,18505,20335]]],["burneth",[4,4,[[18,1,1,0,1,[[560,1,1,0,1]]],[22,2,2,1,3,[[687,1,1,1,2],[740,1,1,2,3]]],[27,1,1,3,4,[[868,1,1,3,4]]]],[15255,17847,18855,22184]]],["burning",[6,6,[[22,3,3,0,3,[[682,1,1,0,1],[708,1,1,1,2],[712,1,1,2,3]]],[23,2,2,3,5,[[764,1,1,3,4],[780,1,1,4,5]]],[25,1,1,5,6,[[802,1,1,5,6]]]],[17737,18244,18312,19431,19864,20477]]],["burnt",[4,4,[[1,1,1,0,1,[[52,1,1,0,1]]],[3,2,2,1,3,[[127,2,2,1,3]]],[6,1,1,3,4,[[225,1,1,3,4]]]],[1582,4025,4027,6943]]],["eaten",[2,2,[[1,1,1,0,1,[[71,1,1,0,1]]],[22,1,1,1,2,[[684,1,1,1,2]]]],[2118,17782]]],["feed",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2118]]],["fire",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21457]]],["heated",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22182]]],["kindle",[3,3,[[1,1,1,0,1,[[84,1,1,0,1]]],[22,2,2,1,3,[[708,1,1,1,2],[721,1,1,2,3]]]],[2534,18250,18507]]],["kindled",[8,8,[[9,2,2,0,2,[[288,2,2,0,2]]],[18,3,3,2,5,[[479,1,1,2,3],[495,1,1,3,4],[583,1,1,4,5]]],[22,1,1,5,6,[[728,1,1,5,6]]],[23,1,1,6,7,[[788,1,1,6,7]]],[25,1,1,7,8,[[821,1,1,7,8]]]],[8611,8615,13957,14126,15669,18673,20016,20943]]],["set",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6934]]],["took",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9526]]],["up",[4,4,[[6,1,1,0,1,[[225,1,1,0,1]]],[17,1,1,1,2,[[436,1,1,1,2]]],[22,2,2,2,4,[[681,1,1,2,3],[683,1,1,3,4]]]],[6934,12885,17721,17744]]],["wasted",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4468]]]]},{"k":"H1198","v":[["*",[5,5,[[18,3,3,0,3,[[526,1,1,0,1],[550,1,1,1,2],[569,1,1,2,3]]],[19,2,2,3,5,[[639,1,1,3,4],[657,1,1,4,5]]]],[14658,15042,15417,16720,17253]]],["brutish",[3,3,[[18,1,1,0,1,[[569,1,1,0,1]]],[19,2,2,1,3,[[639,1,1,1,2],[657,1,1,2,3]]]],[15417,16720,17253]]],["foolish",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15042]]],["person",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14658]]]]},{"k":"H1199","v":[["Baara",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10583]]]]},{"k":"H1200","v":[["fire",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2119]]]]},{"k":"H1201","v":[["Baasha",[28,26,[[10,22,20,0,20,[[305,10,9,0,9],[306,11,10,9,19],[311,1,1,19,20]]],[11,1,1,20,21,[[321,1,1,20,21]]],[13,4,4,21,25,[[382,4,4,21,25]]],[23,1,1,25,26,[[785,1,1,25,26]]]],[9265,9266,9268,9270,9271,9276,9277,9281,9282,9284,9286,9287,9288,9289,9290,9291,9294,9295,9296,9473,9765,11510,11512,11514,11515,19966]]]]},{"k":"H1202","v":[["Baaseiah",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10494]]]]},{"k":"H1203","v":[["Beeshterah",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6408]]]]},{"k":"H1204","v":[["*",[16,16,[[8,2,2,0,2,[[251,2,2,0,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[16,1,1,4,5,[[432,1,1,4,5]]],[17,8,8,5,13,[[438,1,1,5,6],[442,1,1,6,7],[444,1,1,7,8],[448,2,2,8,10],[450,1,1,10,11],[453,1,1,11,12],[468,1,1,12,13]]],[18,1,1,13,14,[[495,1,1,13,14]]],[22,1,1,14,15,[[699,1,1,14,15]]],[26,1,1,15,16,[[857,1,1,15,16]]]],[7609,7610,8607,10964,12813,12909,13022,13085,13164,13174,13227,13287,13657,14122,18039,21978]]],["+",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18039]]],["afraid",[10,10,[[9,1,1,0,1,[[288,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]],[16,1,1,2,3,[[432,1,1,2,3]]],[17,5,5,3,8,[[448,2,2,3,5],[450,1,1,5,6],[453,1,1,6,7],[468,1,1,7,8]]],[18,1,1,8,9,[[495,1,1,8,9]]],[26,1,1,9,10,[[857,1,1,9,10]]]],[8607,10964,12813,13164,13174,13227,13287,13657,14122,21978]]],["terrifiest",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13022]]],["terrify",[2,2,[[17,2,2,0,2,[[438,1,1,0,1],[444,1,1,1,2]]]],[12909,13085]]],["troubled",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7609]]],["troubleth",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7610]]]]},{"k":"H1205","v":[["trouble",[2,2,[[23,2,2,0,2,[[752,1,1,0,1],[758,1,1,1,2]]]],[19168,19312]]]]},{"k":"H1206","v":[["mire",[1,1,[[23,1,1,0,1,[[782,1,1,0,1]]]],[19917]]]]},{"k":"H1207","v":[["*",[3,3,[[17,2,2,0,2,[[443,1,1,0,1],[475,1,1,1,2]]],[25,1,1,2,3,[[848,1,1,2,3]]]],[13040,13885,21690]]],["fens",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13885]]],["mire",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13040]]],["places",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21690]]]]},{"k":"H1208","v":[["vintage",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23030]]]]},{"k":"H1209","v":[["Bezai",[3,3,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,2,2,1,3,[[419,1,1,1,2],[422,1,1,2,3]]]],[12044,12443,12567]]]]},{"k":"H1210","v":[["*",[7,6,[[2,2,1,0,1,[[115,2,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]],[22,2,2,2,4,[[702,1,1,2,3],[710,1,1,3,4]]],[23,1,1,4,5,[[792,1,1,4,5]]],[32,1,1,5,6,[[899,1,1,5,6]]]],[3529,6721,18108,18269,20112,22665]]],["+",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6721]]],["vintage",[6,5,[[2,2,1,0,1,[[115,2,1,0,1]]],[22,2,2,1,3,[[702,1,1,1,2],[710,1,1,2,3]]],[23,1,1,3,4,[[792,1,1,3,4]]],[32,1,1,4,5,[[899,1,1,4,5]]]],[3529,18108,18269,20112,22665]]]]},{"k":"H1211","v":[["onions",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4029]]]]},{"k":"H1212","v":[["Bezaleel",[9,9,[[1,6,6,0,6,[[80,1,1,0,1],[84,1,1,1,2],[85,2,2,2,4],[86,1,1,4,5],[87,1,1,5,6]]],[12,1,1,6,7,[[339,1,1,6,7]]],[13,1,1,7,8,[[367,1,1,7,8]]],[14,1,1,8,9,[[412,1,1,8,9]]]],[2422,2561,2567,2568,2605,2655,10326,11199,12282]]]]},{"k":"H1213","v":[["*",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12079,12474]]],["Bazlith",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12474]]],["Bazluth",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12079]]]]},{"k":"H1214","v":[["*",[17,17,[[6,1,1,0,1,[[215,1,1,0,1]]],[17,2,2,1,3,[[441,1,1,1,2],[462,1,1,2,3]]],[18,1,1,3,4,[[487,1,1,3,4]]],[19,2,2,4,6,[[628,1,1,4,5],[642,1,1,5,6]]],[22,2,2,6,8,[[688,1,1,6,7],[716,1,1,7,8]]],[23,2,2,8,10,[[750,1,1,8,9],[752,1,1,9,10]]],[24,1,1,10,11,[[798,1,1,10,11]]],[25,2,2,11,13,[[823,2,2,11,13]]],[28,1,1,13,14,[[877,1,1,13,14]]],[29,1,1,14,15,[[887,1,1,14,15]]],[34,1,1,15,16,[[904,1,1,15,16]]],[37,1,1,16,17,[[914,1,1,16,17]]]],[6642,12987,13489,14044,16419,16834,17862,18402,19102,19163,20349,20988,21003,22319,22496,22757,22931]]],["+",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19163]]],["coveteth",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22757]]],["covetous",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14044]]],["cut",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22496]]],["finish",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22931]]],["fulfilled",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20349]]],["gain",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6642]]],["gained",[2,2,[[17,1,1,0,1,[[462,1,1,0,1]]],[25,1,1,1,2,[[823,1,1,1,2]]]],[13489,20988]]],["get",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[21003]]],["greedy",[2,2,[[19,2,2,0,2,[[628,1,1,0,1],[642,1,1,1,2]]]],[16419,16834]]],["off",[2,2,[[17,1,1,0,1,[[441,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]]],[12987,18402]]],["performed",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17862]]],["to",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19102]]],["wounded",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22319]]]]},{"k":"H1215","v":[["*",[22,22,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,1,1,1,2,[[67,1,1,1,2]]],[8,1,1,2,3,[[243,1,1,2,3]]],[17,1,1,3,4,[[457,1,1,3,4]]],[18,2,2,4,6,[[507,1,1,4,5],[596,1,1,5,6]]],[19,3,3,6,9,[[628,1,1,6,7],[642,1,1,7,8],[655,1,1,8,9]]],[22,3,3,9,12,[[711,1,1,9,10],[734,1,1,10,11],[735,1,1,11,12]]],[23,4,4,12,16,[[750,1,1,12,13],[752,1,1,13,14],[766,1,1,14,15],[795,1,1,15,16]]],[25,3,3,16,19,[[823,2,2,16,18],[834,1,1,18,19]]],[32,1,1,19,20,[[896,1,1,19,20]]],[34,1,1,20,21,[[904,1,1,20,21]]],[38,1,1,21,22,[[927,1,1,21,22]]]],[1109,2020,7372,13392,14328,15934,16419,16834,17212,18294,18764,18782,19102,19163,19471,20225,20989,21003,21311,22633,22757,23134]]],["+",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19163]]],["covetousness",[9,9,[[1,1,1,0,1,[[67,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[19,1,1,2,3,[[655,1,1,2,3]]],[22,1,1,3,4,[[735,1,1,3,4]]],[23,3,3,4,7,[[750,1,1,4,5],[766,1,1,5,6],[795,1,1,6,7]]],[25,1,1,7,8,[[834,1,1,7,8]]],[34,1,1,8,9,[[904,1,1,8,9]]]],[2020,15934,17212,18782,19102,19471,20225,21311,22757]]],["gain",[8,8,[[17,1,1,0,1,[[457,1,1,0,1]]],[19,2,2,1,3,[[628,1,1,1,2],[642,1,1,2,3]]],[22,2,2,3,5,[[711,1,1,3,4],[734,1,1,4,5]]],[25,2,2,5,7,[[823,2,2,5,7]]],[32,1,1,7,8,[[896,1,1,7,8]]]],[13392,16419,16834,18294,18764,20989,21003,22633]]],["lucre",[1,1,[[8,1,1,0,1,[[243,1,1,0,1]]]],[7372]]],["profit",[3,3,[[0,1,1,0,1,[[36,1,1,0,1]]],[18,1,1,1,2,[[507,1,1,1,2]]],[38,1,1,2,3,[[927,1,1,2,3]]]],[1109,14328,23134]]]]},{"k":"H1216","v":[["*",[2,2,[[4,1,1,0,1,[[160,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]]],[5141,12532]]],["swell",[1,1,[[4,1,1,0,1,[[160,1,1,0,1]]]],[5141]]],["swelled",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12532]]]]},{"k":"H1217","v":[["*",[5,5,[[1,2,2,0,2,[[61,2,2,0,2]]],[9,1,1,2,3,[[279,1,1,2,3]]],[23,1,1,3,4,[[751,1,1,3,4]]],[27,1,1,4,5,[[868,1,1,4,5]]]],[1850,1855,8325,19137,22182]]],["dough",[4,4,[[1,2,2,0,2,[[61,2,2,0,2]]],[23,1,1,2,3,[[751,1,1,2,3]]],[27,1,1,3,4,[[868,1,1,3,4]]]],[1850,1855,19137,22182]]],["flour",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8325]]]]},{"k":"H1218","v":[["*",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[11,1,1,1,2,[[334,1,1,1,2]]]],[6241,10146]]],["+",[1,1,[[11,1,1,0,1,[[334,1,1,0,1]]]],[10146]]],["Bozkath",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6241]]]]},{"k":"H1219","v":[["*",[37,37,[[0,1,1,0,1,[[10,1,1,0,1]]],[2,2,2,1,3,[[114,2,2,1,3]]],[3,1,1,3,4,[[129,1,1,3,4]]],[4,5,5,4,9,[[153,1,1,4,5],[155,1,1,5,6],[161,1,1,6,7],[176,1,1,7,8],[180,1,1,8,9]]],[5,1,1,9,10,[[200,1,1,9,10]]],[6,1,1,10,11,[[219,1,1,10,11]]],[9,1,1,11,12,[[286,1,1,11,12]]],[11,2,2,12,14,[[330,1,1,12,13],[331,1,1,13,14]]],[13,4,4,14,18,[[383,1,1,14,15],[385,1,1,15,16],[398,1,1,16,17],[399,1,1,17,18]]],[15,1,1,18,19,[[421,1,1,18,19]]],[17,1,1,19,20,[[477,1,1,19,20]]],[18,1,1,20,21,[[553,1,1,20,21]]],[22,6,6,21,27,[[680,1,1,21,22],[700,1,1,22,23],[703,1,1,23,24],[705,1,1,24,25],[714,1,1,25,26],[715,1,1,26,27]]],[23,5,5,27,32,[[750,1,1,27,28],[759,1,1,28,29],[777,1,1,29,30],[793,1,1,30,31],[795,1,1,31,32]]],[25,2,2,32,34,[[822,1,1,32,33],[837,1,1,33,34]]],[27,1,1,34,35,[[869,1,1,34,35]]],[30,1,1,35,36,[[888,1,1,35,36]]],[35,1,1,36,37,[[906,1,1,36,37]]]],[272,3474,3480,4103,4920,4980,5158,5546,5663,6199,6781,8560,10037,10086,11525,11581,11876,11922,12536,13924,15093,17700,18062,18120,18161,18331,18378,19098,19335,19778,20136,20265,20964,21394,22208,22515,22803]]],["+",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6781]]],["defenced",[5,5,[[22,4,4,0,4,[[703,1,1,0,1],[705,1,1,1,2],[714,1,1,2,3],[715,1,1,3,4]]],[25,1,1,4,5,[[822,1,1,4,5]]]],[18120,18161,18331,18378,20964]]],["fenced",[15,15,[[4,2,2,0,2,[[155,1,1,0,1],[180,1,1,1,2]]],[5,1,1,2,3,[[200,1,1,2,3]]],[9,1,1,3,4,[[286,1,1,3,4]]],[11,2,2,4,6,[[330,1,1,4,5],[331,1,1,5,6]]],[13,4,4,6,10,[[383,1,1,6,7],[385,1,1,7,8],[398,1,1,8,9],[399,1,1,9,10]]],[22,1,1,10,11,[[680,1,1,10,11]]],[23,1,1,11,12,[[759,1,1,11,12]]],[25,1,1,12,13,[[837,1,1,12,13]]],[27,1,1,13,14,[[869,1,1,13,14]]],[35,1,1,14,15,[[906,1,1,14,15]]]],[4980,5663,6199,8560,10037,10086,11525,11581,11876,11922,17700,19335,21394,22208,22803]]],["fortify",[2,2,[[22,1,1,0,1,[[700,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[18062,20265]]],["gather",[2,2,[[2,2,2,0,2,[[114,2,2,0,2]]]],[3474,3480]]],["grapegatherer",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19098]]],["grapegatherers",[2,2,[[23,1,1,0,1,[[793,1,1,0,1]]],[30,1,1,1,2,[[888,1,1,1,2]]]],[20136,22515]]],["grapes",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5546]]],["mighty",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19778]]],["off",[1,1,[[18,1,1,0,1,[[553,1,1,0,1]]]],[15093]]],["restrained",[1,1,[[0,1,1,0,1,[[10,1,1,0,1]]]],[272]]],["strong",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12536]]],["up",[1,1,[[4,1,1,0,1,[[161,1,1,0,1]]]],[5158]]],["walled",[2,2,[[3,1,1,0,1,[[129,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]]],[4103,4920]]],["withholden",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13924]]]]},{"k":"H1220","v":[["*",[2,2,[[17,2,2,0,2,[[457,2,2,0,2]]]],[13413,13414]]],["defence",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13414]]],["gold",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13413]]]]},{"k":"H1221","v":[["Bezer",[5,5,[[4,1,1,0,1,[[156,1,1,0,1]]],[5,2,2,1,3,[[206,1,1,1,2],[207,1,1,2,3]]],[12,2,2,3,5,[[343,1,1,3,4],[344,1,1,4,5]]]],[5047,6380,6417,10532,10572]]]]},{"k":"H1222","v":[["gold",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13755]]]]},{"k":"H1223","v":[["Bozrah",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22607]]]]},{"k":"H1224","v":[["*",[8,8,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[22,2,2,2,4,[[712,1,1,2,3],[741,1,1,3,4]]],[23,3,3,4,7,[[792,1,1,4,5],[793,2,2,5,7]]],[29,1,1,7,8,[[879,1,1,7,8]]]],[1073,10296,18309,18867,20104,20140,20149,22376]]],["+",[3,3,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[22,1,1,2,3,[[741,1,1,2,3]]]],[1073,10296,18867]]],["Bozrah",[5,5,[[22,1,1,0,1,[[712,1,1,0,1]]],[23,3,3,1,4,[[792,1,1,1,2],[793,2,2,2,4]]],[29,1,1,4,5,[[879,1,1,4,5]]]],[18309,20104,20140,20149,22376]]]]},{"k":"H1225","v":[["hold",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23011]]]]},{"k":"H1226","v":[["*",[2,2,[[23,2,2,0,2,[[758,1,1,0,1],[761,1,1,1,2]]]],[19294,19365]]],["dearth",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19294]]],["drought",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19365]]]]},{"k":"H1227","v":[["Bakbuk",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12078,12473]]]]},{"k":"H1228","v":[["*",[3,3,[[10,1,1,0,1,[[304,1,1,0,1]]],[23,2,2,1,3,[[763,2,2,1,3]]]],[9221,19408,19417]]],["bottle",[2,2,[[23,2,2,0,2,[[763,2,2,0,2]]]],[19408,19417]]],["cruse",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9221]]]]},{"k":"H1229","v":[["Bakbukiah",[3,3,[[15,3,3,0,3,[[423,1,1,0,1],[424,2,2,1,3]]]],[12605,12633,12649]]]]},{"k":"H1230","v":[["Bakbakkar",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10630]]]]},{"k":"H1231","v":[["Bukki",[5,4,[[3,1,1,0,1,[[150,1,1,0,1]]],[12,3,2,1,3,[[343,3,2,1,3]]],[14,1,1,3,4,[[409,1,1,3,4]]]],[4838,10459,10505,12177]]]]},{"k":"H1232","v":[["Bukkiah",[2,2,[[12,2,2,0,2,[[362,2,2,0,2]]]],[11050,11059]]]]},{"k":"H1233","v":[["*",[2,2,[[22,1,1,0,1,[[700,1,1,0,1]]],[29,1,1,1,2,[[884,1,1,1,2]]]],[18061,22461]]],["breaches",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18061]]],["clefts",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22461]]]]},{"k":"H1234","v":[["*",[51,50,[[0,2,2,0,2,[[6,1,1,0,1],[21,1,1,1,2]]],[1,2,2,2,4,[[63,2,2,2,4]]],[3,1,1,4,5,[[132,1,1,4,5]]],[5,2,2,5,7,[[195,2,2,5,7]]],[6,1,1,7,8,[[225,1,1,7,8]]],[8,1,1,8,9,[[241,1,1,8,9]]],[9,1,1,9,10,[[289,1,1,9,10]]],[10,1,1,10,11,[[291,1,1,10,11]]],[11,5,5,11,16,[[314,1,1,11,12],[315,1,1,12,13],[320,1,1,13,14],[327,1,1,14,15],[337,1,1,15,16]]],[12,1,1,16,17,[[348,1,1,16,17]]],[13,3,3,17,20,[[387,1,1,17,18],[391,1,1,18,19],[398,1,1,19,20]]],[15,1,1,20,21,[[421,1,1,20,21]]],[17,3,3,21,24,[[461,1,1,21,22],[463,1,1,22,23],[467,1,1,23,24]]],[18,4,4,24,28,[[551,1,1,24,25],[555,2,2,25,27],[618,1,1,27,28]]],[19,1,1,28,29,[[630,1,1,28,29]]],[20,1,1,29,30,[[668,1,1,29,30]]],[22,8,7,30,37,[[685,1,1,30,31],[712,1,1,31,32],[713,1,1,32,33],[726,1,1,33,34],[736,1,1,34,35],[737,2,1,35,36],[741,1,1,36,37]]],[23,2,2,37,39,[[783,1,1,37,38],[796,1,1,38,39]]],[25,5,5,39,44,[[814,2,2,39,41],[827,1,1,41,42],[830,1,1,42,43],[831,1,1,43,44]]],[27,2,2,44,46,[[874,2,2,44,46]]],[29,1,1,46,47,[[879,1,1,46,47]]],[32,1,1,47,48,[[893,1,1,47,48]]],[34,1,1,48,49,[[905,1,1,48,49]]],[37,1,1,49,50,[[924,1,1,49,50]]]],[170,550,1905,1910,4225,6041,6050,6948,7345,8669,8757,9575,9602,9739,9941,10226,10691,11641,11716,11876,12522,13475,13514,13647,15063,15126,15128,16283,16475,17502,17788,18318,18326,18635,18794,18805,18878,19925,20283,20719,20721,21110,21190,21220,22274,22282,22377,22583,22777,23072]]],["+",[3,3,[[6,1,1,0,1,[[225,1,1,0,1]]],[8,1,1,1,2,[[241,1,1,1,2]]],[17,1,1,2,3,[[461,1,1,2,3]]]],[6948,7345,13475]]],["asunder",[2,2,[[3,1,1,0,1,[[132,1,1,0,1]]],[25,1,1,1,2,[[831,1,1,1,2]]]],[4225,21220]]],["breach",[2,2,[[22,1,1,0,1,[[685,1,1,0,1]]],[25,1,1,1,2,[[827,1,1,1,2]]]],[17788,21110]]],["burst",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13647]]],["clave",[3,3,[[0,1,1,0,1,[[21,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]],[22,1,1,2,3,[[726,1,1,2,3]]]],[550,15128,18635]]],["cleave",[3,3,[[18,1,1,0,1,[[551,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]],[37,1,1,2,3,[[924,1,1,2,3]]]],[15063,22777,23072]]],["cleaveth",[2,2,[[18,1,1,0,1,[[618,1,1,0,1]]],[20,1,1,1,2,[[668,1,1,1,2]]]],[16283,17502]]],["cleft",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22583]]],["divide",[2,2,[[1,1,1,0,1,[[63,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]]],[1905,12522]]],["divided",[2,2,[[1,1,1,0,1,[[63,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[1910,15126]]],["dividing",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18878]]],["forth",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18794]]],["hatch",[2,2,[[22,2,2,0,2,[[712,1,1,0,1],[737,1,1,1,2]]]],[18318,18805]]],["into",[1,1,[[13,1,1,0,1,[[387,1,1,0,1]]]],[11641]]],["out",[3,3,[[17,1,1,0,1,[[463,1,1,0,1]]],[22,2,2,1,3,[[713,1,1,1,2],[737,1,1,2,3]]]],[13514,18326,18805]]],["pieces",[1,1,[[13,1,1,0,1,[[391,1,1,0,1]]]],[11716]]],["rend",[3,3,[[25,3,3,0,3,[[814,2,2,0,2],[830,1,1,2,3]]]],[20719,20721,21190]]],["rent",[3,3,[[5,2,2,0,2,[[195,2,2,0,2]]],[10,1,1,2,3,[[291,1,1,2,3]]]],[6041,6050,8757]]],["tare",[1,1,[[11,1,1,0,1,[[314,1,1,0,1]]]],[9575]]],["tear",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22274]]],["through",[3,3,[[9,1,1,0,1,[[289,1,1,0,1]]],[11,1,1,1,2,[[315,1,1,1,2]]],[12,1,1,2,3,[[348,1,1,2,3]]]],[8669,9602,10691]]],["up",[9,9,[[0,1,1,0,1,[[6,1,1,0,1]]],[11,3,3,1,4,[[320,1,1,1,2],[327,1,1,2,3],[337,1,1,3,4]]],[19,1,1,4,5,[[630,1,1,4,5]]],[23,2,2,5,7,[[783,1,1,5,6],[796,1,1,6,7]]],[27,1,1,7,8,[[874,1,1,7,8]]],[29,1,1,8,9,[[879,1,1,8,9]]]],[170,9739,9941,10226,16475,19925,20283,22282,22377]]],["win",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11876]]]]},{"k":"H1235","v":[["*",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,1,1,1,2,[[87,1,1,1,2]]]],[613,2659]]],["bekah",[1,1,[[1,1,1,0,1,[[87,1,1,0,1]]]],[2659]]],["shekel",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[613]]]]},{"k":"H1236","v":[["plain",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21808]]]]},{"k":"H1237","v":[["*",[20,20,[[0,1,1,0,1,[[10,1,1,0,1]]],[4,3,3,1,4,[[160,1,1,1,2],[163,1,1,2,3],[186,1,1,3,4]]],[5,3,3,4,7,[[197,2,2,4,6],[198,1,1,6,7]]],[13,1,1,7,8,[[401,1,1,7,8]]],[15,1,1,8,9,[[418,1,1,8,9]]],[18,1,1,9,10,[[581,1,1,9,10]]],[22,3,3,10,13,[[718,1,1,10,11],[719,1,1,11,12],[741,1,1,12,13]]],[25,5,5,13,18,[[804,2,2,13,15],[809,1,1,15,16],[838,2,2,16,18]]],[29,1,1,18,19,[[879,1,1,18,19]]],[37,1,1,19,20,[[922,1,1,19,20]]]],[268,5144,5219,5842,6115,6124,6137,11988,12403,15579,18424,18469,18880,20524,20525,20608,21398,21399,22369,23056]]],["+",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22369]]],["plain",[6,6,[[0,1,1,0,1,[[10,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]],[25,3,3,3,6,[[804,2,2,3,5],[809,1,1,5,6]]]],[268,12403,18424,20524,20525,20608]]],["valley",[9,9,[[4,1,1,0,1,[[186,1,1,0,1]]],[5,3,3,1,4,[[197,2,2,1,3],[198,1,1,3,4]]],[13,1,1,4,5,[[401,1,1,4,5]]],[22,1,1,5,6,[[741,1,1,5,6]]],[25,2,2,6,8,[[838,2,2,6,8]]],[37,1,1,8,9,[[922,1,1,8,9]]]],[5842,6115,6124,6137,11988,18880,21398,21399,23056]]],["valleys",[4,4,[[4,2,2,0,2,[[160,1,1,0,1],[163,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[22,1,1,3,4,[[719,1,1,3,4]]]],[5144,5219,15579,18469]]]]},{"k":"H1238","v":[["*",[9,7,[[22,4,3,0,3,[[697,1,1,0,1],[702,3,2,1,3]]],[23,2,2,3,5,[[763,1,1,3,4],[795,1,1,4,5]]],[27,1,1,5,6,[[871,1,1,5,6]]],[33,2,1,6,7,[[901,2,1,6,7]]]],[18007,18096,18098,19414,20214,22226,22701]]],["+",[5,4,[[22,3,2,0,2,[[702,3,2,0,2]]],[23,2,2,2,4,[[763,1,1,2,3],[795,1,1,3,4]]]],[18096,18098,19414,20214]]],["emptied",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22701]]],["emptiers",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22701]]],["empty",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22226]]],["fail",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18007]]]]},{"k":"H1239","v":[["*",[7,7,[[2,2,2,0,2,[[102,1,1,0,1],[116,1,1,1,2]]],[11,1,1,2,3,[[328,1,1,2,3]]],[18,1,1,3,4,[[504,1,1,3,4]]],[19,1,1,4,5,[[647,1,1,4,5]]],[25,2,2,5,7,[[835,2,2,5,7]]]],[3088,3603,9978,14289,16979,21324,21325]]],["+",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21325]]],["enquire",[2,2,[[11,1,1,0,1,[[328,1,1,0,1]]],[18,1,1,1,2,[[504,1,1,1,2]]]],[9978,14289]]],["enquiry",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16979]]],["out",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21324]]],["search",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3603]]],["seek",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3088]]]]},{"k":"H1240","v":[["*",[5,5,[[14,5,5,0,5,[[406,2,2,0,2],[407,1,1,2,3],[408,1,1,3,4],[409,1,1,4,5]]]],[12125,12129,12151,12152,12187]]],["enquire",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12187]]],["made",[4,4,[[14,4,4,0,4,[[406,2,2,0,2],[407,1,1,2,3],[408,1,1,3,4]]]],[12125,12129,12151,12152]]]]},{"k":"H1241","v":[["*",[183,172,[[0,17,16,0,16,[[11,1,1,0,1],[12,1,1,1,2],[17,3,2,2,4],[19,1,1,4,5],[20,1,1,5,6],[23,1,1,6,7],[25,1,1,7,8],[31,1,1,8,9],[32,1,1,9,10],[33,1,1,10,11],[44,1,1,11,12],[45,1,1,12,13],[46,2,2,13,15],[49,1,1,15,16]]],[1,9,9,16,25,[[58,1,1,16,17],[59,2,2,17,19],[61,2,2,19,21],[69,1,1,21,22],[71,1,1,22,23],[78,1,1,23,24],[83,1,1,24,25]]],[2,12,12,25,37,[[90,3,3,25,28],[92,1,1,28,29],[93,2,2,29,31],[98,1,1,31,32],[105,1,1,32,33],[111,2,2,33,35],[112,1,1,35,36],[116,1,1,36,37]]],[3,50,49,37,86,[[123,30,30,37,67],[124,2,1,67,68],[127,1,1,68,69],[131,4,4,69,73],[138,1,1,73,74],[144,3,3,74,77],[145,4,4,77,81],[147,5,5,81,86]]],[4,10,10,86,96,[[160,1,1,86,87],[164,3,3,87,90],[166,2,2,90,92],[167,1,1,92,93],[168,1,1,93,94],[173,1,1,94,95],[184,1,1,95,96]]],[6,1,1,96,97,[[213,1,1,96,97]]],[8,12,10,97,107,[[246,3,2,97,99],[249,2,1,99,100],[250,4,4,100,104],[251,1,1,104,105],[262,1,1,105,106],[265,1,1,106,107]]],[9,7,6,107,113,[[272,1,1,107,108],[278,2,2,108,110],[283,1,1,110,111],[290,3,2,111,113]]],[10,12,9,113,122,[[291,1,1,113,114],[294,2,1,114,115],[297,4,3,115,118],[298,2,2,118,120],[309,3,2,120,122]]],[11,2,2,122,124,[[317,1,1,122,123],[328,1,1,123,124]]],[12,6,4,124,128,[[349,2,1,124,125],[350,1,1,125,126],[358,1,1,126,127],[364,2,1,127,128]]],[13,18,17,128,145,[[370,4,3,128,131],[371,1,1,131,132],[373,1,1,132,133],[379,1,1,133,134],[381,1,1,134,135],[384,1,1,135,136],[395,3,3,136,139],[397,1,1,139,140],[398,1,1,140,141],[401,4,4,141,145]]],[15,1,1,145,146,[[422,1,1,145,146]]],[17,4,4,146,150,[[436,2,2,146,148],[475,1,1,148,149],[477,1,1,149,150]]],[18,1,1,150,151,[[543,1,1,150,151]]],[20,1,1,151,152,[[660,1,1,151,152]]],[22,5,5,152,157,[[685,1,1,152,153],[689,1,1,153,154],[700,1,1,154,155],[743,2,2,155,157]]],[23,4,4,157,161,[[747,1,1,157,158],[749,1,1,158,159],[775,1,1,159,160],[796,1,1,160,161]]],[25,6,6,161,167,[[805,1,1,161,162],[844,3,3,162,165],[846,1,1,165,166],[847,1,1,166,167]]],[27,1,1,167,168,[[866,1,1,167,168]]],[28,1,1,168,169,[[876,1,1,168,169]]],[29,1,1,169,170,[[884,1,1,169,170]]],[31,1,1,170,171,[[891,1,1,170,171]]],[34,1,1,171,172,[[905,1,1,171,172]]]],[314,323,431,432,509,540,626,706,935,973,1008,1368,1418,1421,1437,1514,1745,1786,1801,1848,1854,2075,2114,2337,2499,2747,2748,2750,2779,2798,2809,2955,3204,3388,3390,3420,3602,3853,3856,3857,3858,3865,3867,3871,3873,3877,3879,3883,3885,3889,3891,3895,3897,3901,3903,3907,3909,3913,3915,3919,3921,3925,3927,3931,3933,3937,3938,3947,4046,4156,4161,4162,4177,4415,4588,4596,4604,4610,4616,4621,4625,4692,4694,4697,4702,4708,5150,5246,5257,5261,5313,5316,5338,5344,5450,5772,6599,7450,7452,7540,7569,7574,7575,7581,7597,7939,7998,8163,8288,8290,8478,8714,8716,8726,8867,8959,8963,8978,8990,9048,9407,9408,9673,9980,10760,10769,10957,11138,11249,11250,11261,11274,11329,11462,11501,11544,11813,11823,11824,11860,11904,11973,11974,11975,11978,12585,12872,12883,13879,13934,14888,17340,17803,17891,18065,18907,18922,19026,19075,19703,20296,20544,21591,21595,21597,21648,21661,22158,22309,22462,22565,22785]]],["+",[45,44,[[0,2,2,0,2,[[17,2,2,0,2]]],[1,1,1,2,3,[[78,1,1,2,3]]],[2,6,6,3,9,[[90,1,1,3,4],[93,2,2,4,6],[98,1,1,6,7],[105,1,1,7,8],[112,1,1,8,9]]],[3,24,23,9,32,[[123,12,12,9,21],[124,2,1,21,22],[131,3,3,22,25],[144,3,3,25,28],[145,4,4,28,32]]],[4,2,2,32,34,[[164,1,1,32,33],[173,1,1,33,34]]],[8,2,2,34,36,[[249,1,1,34,35],[251,1,1,35,36]]],[9,1,1,36,37,[[278,1,1,36,37]]],[13,1,1,37,38,[[379,1,1,37,38]]],[23,1,1,38,39,[[747,1,1,38,39]]],[25,5,5,39,44,[[844,3,3,39,42],[846,1,1,42,43],[847,1,1,43,44]]]],[431,432,2337,2750,2798,2809,2955,3204,3420,3865,3871,3877,3883,3889,3895,3901,3907,3913,3919,3925,3931,3947,4161,4162,4177,4588,4596,4604,4610,4616,4621,4625,5261,5450,7540,7597,8290,11462,19026,21591,21595,21597,21648,21661]]],["beeves",[7,7,[[2,2,2,0,2,[[111,2,2,0,2]]],[3,5,5,2,7,[[147,5,5,2,7]]]],[3388,3390,4692,4694,4697,4702,4708]]],["bullock",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18922]]],["bullocks",[4,4,[[13,3,3,0,3,[[395,2,2,0,2],[401,1,1,2,3]]],[18,1,1,3,4,[[543,1,1,3,4]]]],[11813,11823,11973,14888]]],["bulls",[1,1,[[23,1,1,0,1,[[796,1,1,0,1]]]],[20296]]],["cattle",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22309]]],["cow's",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20544]]],["great",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17340]]],["herd",[12,12,[[0,1,1,0,1,[[17,1,1,0,1]]],[2,4,4,1,5,[[90,2,2,1,3],[92,1,1,3,4],[116,1,1,4,5]]],[3,1,1,5,6,[[131,1,1,5,6]]],[4,2,2,6,8,[[167,1,1,6,7],[168,1,1,7,8]]],[8,1,1,8,9,[[246,1,1,8,9]]],[23,1,1,9,10,[[775,1,1,9,10]]],[31,1,1,10,11,[[891,1,1,10,11]]],[34,1,1,11,12,[[905,1,1,11,12]]]],[431,2747,2748,2779,3602,4156,5338,5344,7450,19703,22565,22785]]],["herds",[29,28,[[0,10,10,0,10,[[12,1,1,0,1],[23,1,1,1,2],[25,1,1,2,3],[31,1,1,3,4],[32,1,1,4,5],[44,1,1,5,6],[45,1,1,6,7],[46,2,2,7,9],[49,1,1,9,10]]],[1,5,5,10,15,[[59,2,2,10,12],[61,2,2,12,14],[83,1,1,14,15]]],[3,1,1,15,16,[[127,1,1,15,16]]],[4,4,4,16,20,[[160,1,1,16,17],[164,2,2,17,19],[166,1,1,19,20]]],[8,1,1,20,21,[[265,1,1,20,21]]],[9,1,1,21,22,[[278,1,1,21,22]]],[12,2,1,22,23,[[364,2,1,22,23]]],[13,1,1,23,24,[[398,1,1,23,24]]],[15,1,1,24,25,[[422,1,1,24,25]]],[22,1,1,25,26,[[743,1,1,25,26]]],[23,1,1,26,27,[[749,1,1,26,27]]],[27,1,1,27,28,[[866,1,1,27,28]]]],[323,626,706,935,973,1368,1418,1421,1437,1514,1786,1801,1848,1854,2499,4046,5150,5246,5257,5313,7998,8288,11138,11904,12585,18907,19075,22158]]],["kine",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]]],[5772,8478]]],["ox",[3,3,[[6,1,1,0,1,[[213,1,1,0,1]]],[17,1,1,1,2,[[475,1,1,1,2]]],[22,1,1,2,3,[[689,1,1,2,3]]]],[6599,13879,17891]]],["oxen",[75,68,[[0,4,4,0,4,[[11,1,1,0,1],[19,1,1,1,2],[20,1,1,2,3],[33,1,1,3,4]]],[1,3,3,4,7,[[58,1,1,4,5],[69,1,1,5,6],[71,1,1,6,7]]],[3,19,19,7,26,[[123,18,18,7,25],[138,1,1,25,26]]],[4,1,1,26,27,[[166,1,1,26,27]]],[8,8,7,27,34,[[246,2,1,27,28],[249,1,1,28,29],[250,4,4,29,33],[262,1,1,33,34]]],[9,4,3,34,37,[[272,1,1,34,35],[290,3,2,35,37]]],[10,12,9,37,46,[[291,1,1,37,38],[294,2,1,38,39],[297,4,3,39,42],[298,2,2,42,44],[309,3,2,44,46]]],[11,2,2,46,48,[[317,1,1,46,47],[328,1,1,47,48]]],[12,4,3,48,51,[[349,2,1,48,49],[350,1,1,49,50],[358,1,1,50,51]]],[13,13,12,51,63,[[370,4,3,51,54],[371,1,1,54,55],[373,1,1,55,56],[381,1,1,56,57],[384,1,1,57,58],[395,1,1,58,59],[397,1,1,59,60],[401,3,3,60,63]]],[17,3,3,63,66,[[436,2,2,63,65],[477,1,1,65,66]]],[22,1,1,66,67,[[700,1,1,66,67]]],[29,1,1,67,68,[[884,1,1,67,68]]]],[314,509,540,1008,1745,2075,2114,3853,3856,3857,3858,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3937,3938,4415,5316,7452,7540,7569,7574,7575,7581,7939,8163,8714,8716,8726,8867,8959,8963,8978,8990,9048,9407,9408,9673,9980,10760,10769,10957,11249,11250,11261,11274,11329,11501,11544,11824,11860,11974,11975,11978,12872,12883,13934,18065,22462]]],["young",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17803]]]]},{"k":"H1242","v":[["*",[214,189,[[0,19,19,0,19,[[0,6,6,0,6],[18,1,1,6,7],[19,1,1,7,8],[20,1,1,8,9],[21,1,1,9,10],[23,1,1,10,11],[25,1,1,11,12],[27,1,1,12,13],[28,1,1,13,14],[30,1,1,14,15],[39,1,1,15,16],[40,1,1,16,17],[43,1,1,17,18],[48,1,1,18,19]]],[1,36,31,19,50,[[56,1,1,19,20],[57,1,1,20,21],[58,1,1,21,22],[59,1,1,22,23],[61,3,2,23,25],[63,2,2,25,27],[65,10,9,27,36],[67,2,2,36,38],[68,1,1,38,39],[72,1,1,39,40],[73,1,1,40,41],[76,1,1,41,42],[78,3,3,42,45],[79,2,1,45,46],[83,4,3,46,49],[85,2,1,49,50]]],[2,9,8,50,58,[[95,4,3,50,53],[96,1,1,53,54],[98,1,1,54,55],[108,1,1,55,56],[111,1,1,56,57],[113,1,1,57,58]]],[3,12,11,58,69,[[125,4,3,58,61],[130,1,1,61,62],[132,1,1,62,63],[138,3,3,63,66],[144,3,3,66,69]]],[4,4,3,69,72,[[168,2,2,69,71],[180,2,1,71,72]]],[5,5,5,72,77,[[189,1,1,72,73],[192,1,1,73,74],[193,2,2,74,76],[194,1,1,76,77]]],[6,10,10,77,87,[[216,2,2,77,79],[219,1,1,79,80],[226,1,1,80,81],[229,5,5,81,86],[230,1,1,86,87]]],[7,4,3,87,90,[[233,1,1,87,88],[234,3,2,88,90]]],[8,18,17,90,107,[[236,1,1,90,91],[238,1,1,91,92],[240,1,1,92,93],[244,1,1,93,94],[246,1,1,94,95],[249,1,1,95,96],[250,1,1,96,97],[252,1,1,97,98],[254,2,2,98,100],[255,1,1,100,101],[260,4,4,101,105],[264,3,2,105,107]]],[9,9,7,107,114,[[268,1,1,107,108],[277,1,1,108,109],[279,2,1,109,110],[283,1,1,110,111],[289,2,1,111,112],[290,2,2,112,114]]],[10,4,3,114,117,[[293,2,1,114,115],[307,1,1,115,116],[308,1,1,116,117]]],[11,7,7,117,124,[[315,2,2,117,119],[319,1,1,119,120],[322,2,2,120,122],[328,1,1,122,123],[331,1,1,123,124]]],[12,5,3,124,127,[[346,2,1,124,125],[353,1,1,125,126],[360,2,1,126,127]]],[13,5,4,127,131,[[368,1,1,127,128],[379,2,1,128,129],[386,1,1,129,130],[397,1,1,130,131]]],[14,1,1,131,132,[[405,1,1,131,132]]],[16,2,2,132,134,[[427,1,1,132,133],[430,1,1,133,134]]],[17,7,7,134,141,[[436,1,1,134,135],[439,1,1,135,136],[442,1,1,136,137],[446,1,1,137,138],[459,1,1,138,139],[473,2,2,139,141]]],[18,18,16,141,157,[[482,2,1,141,142],[507,1,1,142,143],[523,1,1,143,144],[526,1,1,144,145],[532,1,1,145,146],[536,1,1,146,147],[542,1,1,147,148],[550,1,1,148,149],[565,1,1,149,150],[567,3,3,150,153],[569,1,1,153,154],[578,1,1,154,155],[607,2,1,155,156],[620,1,1,156,157]]],[19,2,2,157,159,[[634,1,1,157,158],[654,1,1,158,159]]],[20,2,2,159,161,[[668,1,1,159,160],[669,1,1,160,161]]],[22,11,9,161,170,[[683,1,1,161,162],[695,2,2,162,164],[699,1,1,164,165],[706,2,1,165,166],[711,1,1,166,167],[715,1,1,167,168],[716,1,1,168,169],[728,2,1,169,170]]],[23,2,2,170,172,[[764,1,1,170,171],[765,1,1,171,172]]],[24,1,1,172,173,[[799,1,1,172,173]]],[25,10,6,173,179,[[813,1,1,173,174],[825,2,1,174,175],[834,1,1,175,176],[847,6,3,176,179]]],[26,2,2,179,181,[[857,2,2,179,181]]],[27,3,3,181,184,[[867,1,1,181,182],[868,1,1,182,183],[874,1,1,183,184]]],[29,2,2,184,186,[[882,1,1,184,185],[883,1,1,185,186]]],[32,1,1,186,187,[[894,1,1,186,187]]],[35,3,2,187,189,[[908,3,2,187,189]]]],[4,7,12,18,22,30,484,503,527,550,645,723,791,820,928,1178,1203,1327,1500,1700,1730,1755,1790,1826,1838,1913,1916,1954,1955,1959,1960,1966,1967,1968,1970,1971,2012,2013,2042,2162,2181,2293,2370,2375,2377,2389,2498,2500,2521,2569,2858,2861,2869,2894,2970,3294,3399,3449,3977,3980,3986,4148,4199,4388,4396,4416,4581,4585,4600,5346,5349,5678,5894,5961,5990,5992,6012,6682,6685,6787,6951,7029,7032,7049,7050,7051,7073,7156,7185,7186,7231,7291,7323,7410,7456,7544,7572,7638,7708,7717,7765,7883,7895,7897,7898,7977,7978,8076,8273,8321,8471,8657,8703,8707,8837,9323,9367,9596,9598,9716,9801,9802,9978,10096,10642,10860,11013,11215,11464,11607,11857,12100,12738,12793,12874,12950,13026,13125,13453,13800,13805,13976,14324,14619,14662,14749,14806,14868,15034,15321,15383,15384,15392,15413,15521,16146,16301,16593,17183,17509,17519,17750,17994,17997,18047,18183,18281,18388,18403,18666,19438,19452,20377,20688,21074,21302,21668,21669,21670,21975,21987,22171,22184,22269,22414,22431,22596,22823,22825]]],["+",[26,15,[[1,6,3,0,3,[[65,2,1,0,1],[79,2,1,1,2],[85,2,1,2,3]]],[2,2,1,3,4,[[95,2,1,3,4]]],[8,1,1,4,5,[[236,1,1,4,5]]],[10,1,1,5,6,[[308,1,1,5,6]]],[12,4,2,6,8,[[346,2,1,6,7],[360,2,1,7,8]]],[13,2,1,8,9,[[379,2,1,8,9]]],[17,1,1,9,10,[[439,1,1,9,10]]],[25,6,3,10,13,[[847,6,3,10,13]]],[26,1,1,13,14,[[857,1,1,13,14]]],[35,2,1,14,15,[[908,2,1,14,15]]]],[1968,2389,2569,2861,7231,9367,10642,11013,11464,12950,21668,21669,21670,21975,22825]]],["day",[3,2,[[6,1,1,0,1,[[229,1,1,0,1]]],[9,2,1,1,2,[[279,2,1,1,2]]]],[7050,8321]]],["early",[3,3,[[18,3,3,0,3,[[523,1,1,0,1],[567,1,1,1,2],[578,1,1,2,3]]]],[14619,15392,15521]]],["light",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7883]]],["morning",[174,161,[[0,19,19,0,19,[[0,6,6,0,6],[18,1,1,6,7],[19,1,1,7,8],[20,1,1,8,9],[21,1,1,9,10],[23,1,1,10,11],[25,1,1,11,12],[27,1,1,12,13],[28,1,1,13,14],[30,1,1,14,15],[39,1,1,15,16],[40,1,1,16,17],[43,1,1,17,18],[48,1,1,18,19]]],[1,30,28,19,47,[[56,1,1,19,20],[57,1,1,20,21],[58,1,1,21,22],[59,1,1,22,23],[61,3,2,23,25],[63,2,2,25,27],[65,8,8,27,35],[67,2,2,35,37],[68,1,1,37,38],[72,1,1,38,39],[73,1,1,39,40],[76,1,1,40,41],[78,3,3,41,44],[83,4,3,44,47]]],[2,6,6,47,53,[[95,2,2,47,49],[96,1,1,49,50],[98,1,1,50,51],[108,1,1,51,52],[113,1,1,52,53]]],[3,10,9,53,62,[[125,4,3,53,56],[130,1,1,56,57],[138,2,2,57,59],[144,3,3,59,62]]],[4,4,3,62,65,[[168,2,2,62,64],[180,2,1,64,65]]],[5,5,5,65,70,[[189,1,1,65,66],[192,1,1,66,67],[193,2,2,67,69],[194,1,1,69,70]]],[6,9,9,70,79,[[216,2,2,70,72],[219,1,1,72,73],[226,1,1,73,74],[229,4,4,74,78],[230,1,1,78,79]]],[7,4,3,79,82,[[233,1,1,79,80],[234,3,2,80,82]]],[8,15,14,82,96,[[238,1,1,82,83],[240,1,1,83,84],[246,1,1,84,85],[249,1,1,85,86],[250,1,1,86,87],[252,1,1,87,88],[254,2,2,88,90],[255,1,1,90,91],[260,3,3,91,94],[264,3,2,94,96]]],[9,7,6,96,102,[[268,1,1,96,97],[277,1,1,97,98],[283,1,1,98,99],[289,2,1,99,100],[290,2,2,100,102]]],[10,3,2,102,104,[[293,2,1,102,103],[307,1,1,103,104]]],[11,7,7,104,111,[[315,2,2,104,106],[319,1,1,106,107],[322,2,2,107,109],[328,1,1,109,110],[331,1,1,110,111]]],[12,1,1,111,112,[[353,1,1,111,112]]],[13,3,3,112,115,[[368,1,1,112,113],[386,1,1,113,114],[397,1,1,114,115]]],[14,1,1,115,116,[[405,1,1,115,116]]],[17,6,6,116,122,[[436,1,1,116,117],[442,1,1,117,118],[446,1,1,118,119],[459,1,1,119,120],[473,2,2,120,122]]],[18,15,13,122,135,[[482,2,1,122,123],[507,1,1,123,124],[526,1,1,124,125],[532,1,1,125,126],[536,1,1,126,127],[542,1,1,127,128],[550,1,1,128,129],[565,1,1,129,130],[567,2,2,130,132],[569,1,1,132,133],[607,2,1,133,134],[620,1,1,134,135]]],[19,2,2,135,137,[[634,1,1,135,136],[654,1,1,136,137]]],[20,2,2,137,139,[[668,1,1,137,138],[669,1,1,138,139]]],[22,11,9,139,148,[[683,1,1,139,140],[695,2,2,140,142],[699,1,1,142,143],[706,2,1,143,144],[711,1,1,144,145],[715,1,1,145,146],[716,1,1,146,147],[728,2,1,147,148]]],[23,2,2,148,150,[[764,1,1,148,149],[765,1,1,149,150]]],[24,1,1,150,151,[[799,1,1,150,151]]],[25,4,3,151,154,[[813,1,1,151,152],[825,2,1,152,153],[834,1,1,153,154]]],[26,1,1,154,155,[[857,1,1,154,155]]],[27,3,3,155,158,[[867,1,1,155,156],[868,1,1,156,157],[874,1,1,157,158]]],[29,2,2,158,160,[[882,1,1,158,159],[883,1,1,159,160]]],[32,1,1,160,161,[[894,1,1,160,161]]]],[4,7,12,18,22,30,484,503,527,550,645,723,791,820,928,1178,1203,1327,1500,1700,1730,1755,1790,1826,1838,1913,1916,1954,1955,1959,1960,1966,1967,1970,1971,2012,2013,2042,2162,2181,2293,2370,2375,2377,2498,2500,2521,2858,2869,2894,2970,3294,3449,3977,3980,3986,4148,4388,4396,4581,4585,4600,5346,5349,5678,5894,5961,5990,5992,6012,6682,6685,6787,6951,7029,7032,7049,7051,7073,7156,7185,7186,7291,7323,7456,7544,7572,7638,7708,7717,7765,7895,7897,7898,7977,7978,8076,8273,8471,8657,8703,8707,8837,9323,9596,9598,9716,9801,9802,9978,10096,10860,11215,11607,11857,12100,12874,13026,13125,13453,13800,13805,13976,14324,14662,14749,14806,14868,15034,15321,15383,15384,15413,16146,16301,16593,17183,17509,17519,17750,17994,17997,18047,18183,18281,18388,18403,18666,19438,19452,20377,20688,21074,21302,21987,22171,22184,22269,22414,22431,22596]]],["morrow",[7,7,[[2,1,1,0,1,[[111,1,1,0,1]]],[3,2,2,1,3,[[132,1,1,1,2],[138,1,1,2,3]]],[8,1,1,3,4,[[244,1,1,3,4]]],[16,2,2,4,6,[[427,1,1,4,5],[430,1,1,5,6]]],[35,1,1,6,7,[[908,1,1,6,7]]]],[3399,4199,4416,7410,12738,12793,22823]]]]},{"k":"H1243","v":[["out",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21325]]]]},{"k":"H1244","v":[["scourged",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3301]]]]},{"k":"H1245","v":[["*",[225,215,[[0,5,5,0,5,[[30,1,1,0,1],[36,2,2,1,3],[42,2,2,3,5]]],[1,5,5,5,10,[[51,1,1,5,6],[53,2,2,6,8],[59,1,1,8,9],[82,1,1,9,10]]],[2,1,1,10,11,[[108,1,1,10,11]]],[3,2,2,11,13,[[132,1,1,11,12],[151,1,1,12,13]]],[4,2,2,13,15,[[156,1,1,13,14],[165,1,1,14,15]]],[5,2,2,15,17,[[188,1,1,15,16],[208,1,1,16,17]]],[6,4,4,17,21,[[214,1,1,17,18],[216,1,1,18,19],[224,1,1,19,20],[228,1,1,20,21]]],[7,1,1,21,22,[[234,1,1,21,22]]],[8,26,25,22,47,[[244,1,1,22,23],[245,3,3,23,26],[248,1,1,26,27],[249,1,1,27,28],[251,1,1,28,29],[254,2,2,29,31],[255,2,2,31,33],[257,2,1,33,34],[258,4,4,34,38],[259,2,2,38,40],[260,2,2,40,42],[261,2,2,42,44],[262,2,2,44,46],[263,1,1,46,47]]],[9,11,11,47,58,[[269,1,1,47,48],[270,2,2,48,50],[271,1,1,50,51],[278,1,1,51,52],[282,1,1,52,53],[283,2,2,53,55],[286,1,1,55,56],[287,2,2,56,58]]],[10,10,10,58,68,[[291,2,2,58,60],[292,1,1,60,61],[300,1,1,61,62],[301,2,2,62,64],[308,1,1,64,65],[309,2,2,65,67],[310,1,1,67,68]]],[11,3,3,68,71,[[314,2,2,68,70],[318,1,1,70,71]]],[12,5,5,71,76,[[341,1,1,71,72],[351,1,1,72,73],[353,2,2,73,75],[358,1,1,75,76]]],[13,8,7,76,83,[[373,1,1,76,77],[375,1,1,77,78],[377,1,1,78,79],[381,2,2,79,81],[386,2,1,81,82],[388,1,1,82,83]]],[14,4,4,83,87,[[404,1,1,83,84],[410,3,3,84,87]]],[15,6,6,87,93,[[414,2,2,87,89],[417,2,2,89,91],[419,1,1,91,92],[424,1,1,92,93]]],[16,9,9,93,102,[[427,4,4,93,97],[428,1,1,97,98],[429,1,1,98,99],[431,1,1,99,100],[432,1,1,100,101],[434,1,1,101,102]]],[17,1,1,102,103,[[445,1,1,102,103]]],[18,27,26,103,129,[[481,1,1,103,104],[501,1,1,104,105],[504,3,2,105,107],[511,1,1,107,108],[512,1,1,108,109],[514,3,3,109,112],[515,1,1,112,113],[517,2,2,113,115],[531,1,1,115,116],[540,1,1,116,117],[546,1,1,117,118],[547,2,2,118,120],[548,2,2,120,122],[560,1,1,122,123],[563,1,1,123,124],[581,1,1,124,125],[582,2,2,125,127],[596,1,1,127,128],[599,1,1,128,129]]],[19,14,14,129,143,[[629,1,1,129,130],[638,1,1,130,131],[641,1,1,131,132],[642,1,1,132,133],[644,3,3,133,136],[645,2,2,136,138],[648,1,1,138,139],[650,1,1,139,140],[655,1,1,140,141],[656,2,2,141,143]]],[20,7,7,143,150,[[661,2,2,143,145],[665,3,3,145,148],[666,1,1,148,149],[670,1,1,149,150]]],[21,6,4,150,154,[[673,4,2,150,152],[675,1,1,152,153],[676,1,1,153,154]]],[22,7,7,154,161,[[679,1,1,154,155],[718,1,1,155,156],[719,2,2,156,158],[723,1,1,158,159],[729,1,1,159,160],[743,1,1,160,161]]],[23,23,20,161,181,[[746,2,2,161,163],[748,1,1,163,164],[749,2,1,164,165],[755,1,1,165,166],[763,2,2,166,168],[765,1,1,168,169],[766,1,1,169,170],[770,1,1,170,171],[773,1,1,171,172],[778,2,2,172,174],[782,1,1,174,175],[788,2,1,175,176],[789,2,1,176,177],[790,1,1,177,178],[793,1,1,178,179],[794,2,2,179,181]]],[24,2,2,181,183,[[797,2,2,181,183]]],[25,10,10,183,193,[[804,2,2,183,185],[808,2,2,185,187],[823,1,1,187,188],[827,1,1,188,189],[834,1,1,189,190],[835,3,3,190,193]]],[26,4,4,193,197,[[850,2,2,193,195],[857,1,1,195,196],[858,1,1,196,197]]],[27,5,5,197,202,[[863,1,1,197,198],[864,1,1,198,199],[866,2,2,199,201],[868,1,1,201,202]]],[29,1,1,202,203,[[886,1,1,202,203]]],[33,2,2,203,205,[[902,2,2,203,205]]],[35,4,2,205,207,[[906,1,1,205,206],[907,3,1,206,207]]],[37,5,5,207,212,[[916,1,1,207,208],[918,2,2,208,210],[921,1,1,210,211],[922,1,1,211,212]]],[38,3,3,212,215,[[926,2,2,212,214],[927,1,1,214,215]]]],[912,1098,1099,1299,1320,1569,1620,1625,1788,2480,3312,4204,4868,5033,5282,5891,6449,6621,6683,6913,6994,7173,7394,7420,7432,7439,7499,7512,7611,7708,7716,7731,7746,7810,7820,7824,7825,7835,7841,7848,7887,7890,7907,7925,7931,7934,7949,8098,8128,8131,8149,8302,8437,8452,8469,8573,8581,8582,8719,8720,8810,9103,9130,9148,9351,9397,9401,9415,9567,9568,9693,10424,10782,10830,10831,10937,11338,11387,11430,11494,11505,11591,11653,12089,12222,12223,12224,12311,12317,12394,12400,12484,12651,12726,12739,12745,12747,12753,12770,12795,12814,12836,13092,13967,14247,14289,14293,14402,14414,14475,14482,14486,14502,14539,14541,14728,14848,14941,14973,14975,14989,15000,15257,15298,15592,15609,15610,16074,16098,16437,16715,16778,16821,16882,16884,16892,16902,16916,16990,17079,17201,17234,17250,17365,17374,17454,17457,17458,17475,17533,17572,17573,17604,17615,17666,18440,18463,18468,18580,18674,18898,18989,18998,19057,19059,19247,19414,19416,19447,19479,19593,19648,19821,19822,19911,20040,20045,20071,20164,20170,20186,20321,20329,20520,20522,20602,20603,21006,21121,21288,21317,21319,21329,21745,21757,21976,21991,22112,22133,22158,22167,22188,22493,22719,22723,22793,22808,22954,22997,22998,23044,23054,23110,23118,23121]]],["+",[42,41,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,1,1,1,2,[[53,1,1,1,2]]],[4,1,1,2,3,[[156,1,1,2,3]]],[8,10,9,3,12,[[244,1,1,3,4],[245,1,1,4,5],[255,1,1,5,6],[257,2,1,6,7],[258,1,1,7,8],[259,1,1,8,9],[260,1,1,9,10],[261,2,2,10,12]]],[9,7,7,12,19,[[269,1,1,12,13],[270,2,2,13,15],[271,1,1,15,16],[278,1,1,16,17],[282,1,1,17,18],[287,1,1,18,19]]],[10,4,4,19,23,[[292,1,1,19,20],[300,1,1,20,21],[309,2,2,21,23]]],[11,1,1,23,24,[[314,1,1,23,24]]],[12,1,1,24,25,[[351,1,1,24,25]]],[13,4,4,25,29,[[375,1,1,25,26],[377,1,1,26,27],[386,1,1,27,28],[388,1,1,28,29]]],[15,1,1,29,30,[[424,1,1,29,30]]],[20,1,1,30,31,[[661,1,1,30,31]]],[21,1,1,31,32,[[673,1,1,31,32]]],[23,2,2,32,34,[[755,1,1,32,33],[782,1,1,33,34]]],[25,1,1,34,35,[[835,1,1,34,35]]],[27,2,2,35,37,[[864,1,1,35,36],[866,1,1,36,37]]],[29,1,1,37,38,[[886,1,1,37,38]]],[35,1,1,38,39,[[906,1,1,38,39]]],[37,2,2,39,41,[[918,2,2,39,41]]]],[1099,1620,5033,7394,7432,7731,7810,7825,7841,7890,7907,7925,8098,8128,8131,8149,8302,8437,8581,8810,9103,9397,9401,9567,10782,11387,11430,11591,11653,12651,17374,17572,19247,19911,21329,22133,22158,22493,22793,22997,22998]]],["Seek",[4,4,[[8,1,1,0,1,[[263,1,1,0,1]]],[18,1,1,1,2,[[504,1,1,1,2]]],[22,1,1,2,3,[[723,1,1,2,3]]],[35,1,1,3,4,[[907,1,1,3,4]]]],[7949,14293,18580,22808]]],["after",[8,8,[[18,8,8,0,8,[[481,1,1,0,1],[504,1,1,1,2],[512,1,1,2,3],[515,1,1,3,4],[517,1,1,4,5],[531,1,1,5,6],[547,1,1,6,7],[563,1,1,7,8]]]],[13967,14289,14414,14502,14539,14728,14973,15298]]],["ask",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11591]]],["asked",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6683]]],["begging",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14475]]],["besought",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12224]]],["desire",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1788]]],["enquired",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21757]]],["enquirest",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13092]]],["for",[2,2,[[23,1,1,0,1,[[794,1,1,0,1]]],[25,1,1,1,2,[[827,1,1,1,2]]]],[20186,21121]]],["get",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17365]]],["made",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12747]]],["out",[4,4,[[8,1,1,0,1,[[251,1,1,0,1]]],[20,3,3,1,4,[[665,2,2,1,3],[666,1,1,3,4]]]],[7611,17454,17458,17475]]],["procureth",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16715]]],["request",[3,3,[[15,1,1,0,1,[[414,1,1,0,1]]],[16,2,2,1,3,[[429,1,1,1,2],[432,1,1,2,3]]]],[12311,12770,12814]]],["requested",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21745]]],["require",[9,9,[[0,2,2,0,2,[[30,1,1,0,1],[42,1,1,1,2]]],[5,1,1,2,3,[[208,1,1,2,3]]],[8,1,1,3,4,[[255,1,1,3,4]]],[12,1,1,4,5,[[358,1,1,4,5]]],[15,1,1,5,6,[[417,1,1,5,6]]],[25,3,3,6,9,[[804,2,2,6,8],[834,1,1,8,9]]]],[912,1299,6449,7746,10937,12394,20520,20522,21288]]],["required",[3,3,[[15,1,1,0,1,[[417,1,1,0,1]]],[16,1,1,1,2,[[427,1,1,1,2]]],[22,1,1,2,3,[[679,1,1,2,3]]]],[12400,12739,17666]]],["seek",[74,73,[[2,1,1,0,1,[[108,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[8,4,4,3,7,[[245,1,1,3,4],[258,1,1,4,5],[260,1,1,5,6],[262,1,1,6,7]]],[10,1,1,7,8,[[308,1,1,7,8]]],[11,1,1,8,9,[[318,1,1,8,9]]],[12,3,3,9,12,[[341,1,1,9,10],[353,2,2,10,12]]],[13,1,1,12,13,[[373,1,1,12,13]]],[14,2,2,13,15,[[410,2,2,13,15]]],[15,1,1,15,16,[[414,1,1,15,16]]],[18,15,15,16,31,[[501,1,1,16,17],[504,1,1,17,18],[511,1,1,18,19],[517,1,1,19,20],[540,1,1,20,21],[546,1,1,21,22],[547,1,1,22,23],[548,2,2,23,25],[560,1,1,25,26],[581,1,1,26,27],[582,2,2,27,29],[596,1,1,29,30],[599,1,1,30,31]]],[19,5,5,31,36,[[648,1,1,31,32],[650,1,1,32,33],[655,1,1,33,34],[656,2,2,34,36]]],[21,2,2,36,38,[[673,1,1,36,37],[676,1,1,37,38]]],[22,3,3,38,41,[[719,2,2,38,40],[729,1,1,40,41]]],[23,16,16,41,57,[[746,2,2,41,43],[748,1,1,43,44],[749,1,1,44,45],[763,2,2,45,47],[765,1,1,47,48],[766,1,1,48,49],[773,1,1,49,50],[778,2,2,50,52],[788,1,1,52,53],[789,1,1,53,54],[790,1,1,54,55],[793,1,1,55,56],[794,1,1,56,57]]],[24,1,1,57,58,[[797,1,1,57,58]]],[25,3,3,58,61,[[808,2,2,58,60],[835,1,1,60,61]]],[26,1,1,61,62,[[858,1,1,61,62]]],[27,3,3,62,65,[[863,1,1,62,63],[866,1,1,63,64],[868,1,1,64,65]]],[33,2,2,65,67,[[902,2,2,65,67]]],[35,2,1,67,68,[[907,2,1,67,68]]],[37,2,2,68,70,[[921,1,1,68,69],[922,1,1,69,70]]],[38,3,3,70,73,[[926,2,2,70,72],[927,1,1,72,73]]]],[3312,4204,7173,7420,7835,7887,7931,9351,9693,10424,10830,10831,11338,12222,12223,12317,14247,14293,14402,14541,14848,14941,14975,14989,15000,15257,15592,15609,15610,16074,16098,16990,17079,17201,17234,17250,17573,17615,18463,18468,18674,18989,18998,19057,19059,19414,19416,19447,19479,19648,19821,19822,20040,20045,20071,20164,20170,20321,20602,20603,21319,21991,22112,22167,22188,22719,22723,22808,23044,23054,23110,23118,23121]]],["seekest",[7,7,[[0,1,1,0,1,[[36,1,1,0,1]]],[6,1,1,1,2,[[214,1,1,1,2]]],[9,2,2,2,4,[[283,1,1,2,3],[286,1,1,3,4]]],[10,1,1,4,5,[[301,1,1,4,5]]],[19,1,1,5,6,[[629,1,1,5,6]]],[23,1,1,6,7,[[789,1,1,6,7]]]],[1098,6621,8452,8573,9130,16437,20045]]],["seeketh",[15,15,[[8,3,3,0,3,[[254,1,1,0,1],[258,1,1,1,2],[259,1,1,2,3]]],[10,1,1,3,4,[[310,1,1,3,4]]],[18,1,1,4,5,[[514,1,1,4,5]]],[19,7,7,5,12,[[641,1,1,5,6],[642,1,1,6,7],[644,3,3,7,10],[645,2,2,10,12]]],[20,1,1,12,13,[[665,1,1,12,13]]],[22,1,1,13,14,[[718,1,1,13,14]]],[23,1,1,14,15,[[749,1,1,14,15]]]],[7708,7820,7848,9415,14482,16778,16821,16882,16884,16892,16902,16916,17457,18440,19059]]],["sought",[43,43,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,3,3,1,4,[[51,1,1,1,2],[53,1,1,2,3],[82,1,1,3,4]]],[3,1,1,4,5,[[151,1,1,4,5]]],[4,1,1,5,6,[[165,1,1,5,6]]],[5,1,1,6,7,[[188,1,1,6,7]]],[6,2,2,7,9,[[224,1,1,7,8],[228,1,1,8,9]]],[8,6,6,9,15,[[245,1,1,9,10],[248,1,1,10,11],[249,1,1,11,12],[254,1,1,12,13],[258,1,1,13,14],[262,1,1,14,15]]],[9,2,2,15,17,[[283,1,1,15,16],[287,1,1,16,17]]],[10,3,3,17,20,[[291,2,2,17,19],[301,1,1,19,20]]],[11,1,1,20,21,[[314,1,1,20,21]]],[13,2,2,21,23,[[381,2,2,21,23]]],[14,1,1,23,24,[[404,1,1,23,24]]],[15,1,1,24,25,[[419,1,1,24,25]]],[16,5,5,25,30,[[427,2,2,25,27],[428,1,1,27,28],[431,1,1,28,29],[434,1,1,29,30]]],[18,1,1,30,31,[[514,1,1,30,31]]],[20,1,1,31,32,[[670,1,1,31,32]]],[21,3,3,32,35,[[673,2,2,32,34],[675,1,1,34,35]]],[22,1,1,35,36,[[743,1,1,35,36]]],[23,2,2,36,38,[[770,1,1,36,37],[788,1,1,37,38]]],[24,1,1,38,39,[[797,1,1,38,39]]],[25,2,2,39,41,[[823,1,1,39,40],[835,1,1,40,41]]],[26,1,1,41,42,[[857,1,1,41,42]]],[37,1,1,42,43,[[916,1,1,42,43]]]],[1320,1569,1625,2480,4868,5282,5891,6913,6994,7439,7499,7512,7716,7824,7934,8469,8582,8719,8720,9148,9568,11494,11505,12089,12484,12726,12745,12753,12795,12836,14486,17533,17572,17573,17604,18898,19593,20040,20329,21006,21317,21976,22954]]]]},{"k":"H1246","v":[["request",[8,8,[[14,1,1,0,1,[[409,1,1,0,1]]],[16,7,7,1,8,[[430,4,4,1,5],[432,2,2,5,7],[434,1,1,7,8]]]],[12179,12782,12785,12786,12787,12809,12810,12846]]]]},{"k":"H1247","v":[["*",[8,7,[[14,4,3,0,3,[[407,3,2,0,2],[408,1,1,2,3]]],[26,4,4,3,7,[[852,1,1,3,4],[854,2,2,4,6],[856,1,1,6,7]]]],[12135,12136,12165,21832,21896,21905,21946]]],["Son",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[856,1,1,1,2]]]],[21832,21946]]],["old",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21905]]],["son",[5,4,[[14,4,3,0,3,[[407,3,2,0,2],[408,1,1,2,3]]],[26,1,1,3,4,[[854,1,1,3,4]]]],[12135,12136,12165,21896]]]]},{"k":"H1248","v":[["*",[4,2,[[18,1,1,0,1,[[479,1,1,0,1]]],[19,3,1,1,2,[[658,3,1,1,2]]]],[13957,17286]]],["Son",[1,1,[[18,1,1,0,1,[[479,1,1,0,1]]]],[13957]]],["son",[3,1,[[19,3,1,0,1,[[658,3,1,0,1]]]],[17286]]]]},{"k":"H1249","v":[["*",[7,7,[[17,1,1,0,1,[[446,1,1,0,1]]],[18,3,3,1,4,[[496,1,1,1,2],[501,1,1,2,3],[550,1,1,3,4]]],[19,1,1,4,5,[[641,1,1,4,5]]],[21,2,2,5,7,[[676,2,2,5,7]]]],[13112,14176,14245,15021,16776,17623,17624]]],["choice",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17623]]],["clean",[3,3,[[17,1,1,0,1,[[446,1,1,0,1]]],[18,1,1,1,2,[[550,1,1,1,2]]],[19,1,1,2,3,[[641,1,1,2,3]]]],[13112,15021,16776]]],["clear",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17624]]],["pure",[2,2,[[18,2,2,0,2,[[496,1,1,0,1],[501,1,1,1,2]]]],[14176,14245]]]]},{"k":"H1250","v":[["*",[14,14,[[0,5,5,0,5,[[40,2,2,0,2],[41,2,2,2,4],[44,1,1,4,5]]],[17,1,1,5,6,[[474,1,1,5,6]]],[18,2,2,6,8,[[542,1,1,6,7],[549,1,1,7,8]]],[19,1,1,8,9,[[638,1,1,8,9]]],[23,1,1,9,10,[[767,1,1,9,10]]],[28,1,1,10,11,[[877,1,1,10,11]]],[29,3,3,11,14,[[883,1,1,11,12],[886,2,2,12,14]]]],[1230,1244,1255,1277,1381,13838,14873,15016,16714,19512,22335,22434,22486,22487]]],["corn",[9,9,[[0,5,5,0,5,[[40,2,2,0,2],[41,2,2,2,4],[44,1,1,4,5]]],[17,1,1,5,6,[[474,1,1,5,6]]],[18,2,2,6,8,[[542,1,1,6,7],[549,1,1,7,8]]],[19,1,1,8,9,[[638,1,1,8,9]]]],[1230,1244,1255,1277,1381,13838,14873,15016,16714]]],["wheat",[5,5,[[23,1,1,0,1,[[767,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]],[29,3,3,2,5,[[883,1,1,2,3],[886,2,2,3,5]]]],[19512,22335,22434,22486,22487]]]]},{"k":"H1251","v":[["field",[8,7,[[26,8,7,0,7,[[851,1,1,0,1],[853,7,6,1,7]]]],[21796,21849,21852,21858,21860,21862,21869]]]]},{"k":"H1252","v":[["*",[6,6,[[9,2,2,0,2,[[288,2,2,0,2]]],[17,1,1,2,3,[[457,1,1,2,3]]],[18,2,2,3,5,[[495,2,2,3,5]]],[22,1,1,5,6,[[679,1,1,5,6]]]],[8623,8627,13419,14138,14142,17679]]],["cleanness",[4,4,[[9,2,2,0,2,[[288,2,2,0,2]]],[18,2,2,2,4,[[495,2,2,2,4]]]],[8623,8627,14138,14142]]],["purely",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17679]]],["pureness",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13419]]]]},{"k":"H1253","v":[["never",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13081]]]]},{"k":"H1254","v":[["*",[54,46,[[0,11,8,0,8,[[0,5,3,0,3],[1,2,2,3,5],[4,3,2,5,7],[5,1,1,7,8]]],[1,1,1,8,9,[[83,1,1,8,9]]],[3,1,1,9,10,[[132,1,1,9,10]]],[4,1,1,10,11,[[156,1,1,10,11]]],[5,2,2,11,13,[[203,2,2,11,13]]],[8,1,1,13,14,[[237,1,1,13,14]]],[18,6,6,14,20,[[528,1,1,14,15],[566,2,2,15,17],[579,1,1,17,18],[581,1,1,18,19],[625,1,1,19,20]]],[20,1,1,20,21,[[670,1,1,20,21]]],[22,21,17,21,38,[[682,1,1,21,22],[718,2,2,22,24],[719,1,1,24,25],[720,1,1,25,26],[721,3,3,26,29],[723,6,4,29,33],[726,1,1,33,34],[732,2,1,34,35],[735,1,1,35,36],[743,3,2,36,38]]],[23,1,1,38,39,[[775,1,1,38,39]]],[25,6,5,39,44,[[822,3,2,39,41],[824,1,1,41,42],[829,2,2,42,44]]],[29,1,1,44,45,[[882,1,1,44,45]]],[38,1,1,45,46,[[926,1,1,45,46]]]],[0,20,26,33,34,106,107,144,2506,4224,5036,6290,6293,7269,14701,15338,15373,15539,15601,16376,17524,17738,18446,18448,18471,18485,18506,18512,18520,18568,18569,18573,18579,18621,18739,18784,18914,18915,19713,20963,20974,21054,21170,21172,22423,23113]]],["+",[4,4,[[0,3,3,0,3,[[0,3,3,0,3]]],[22,1,1,3,4,[[743,1,1,3,4]]]],[0,20,26,18915]]],["Create",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14701]]],["Creator",[2,2,[[20,1,1,0,1,[[670,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[17524,18448]]],["choose",[2,1,[[25,2,1,0,1,[[822,2,1,0,1]]]],[20963]]],["create",[6,5,[[22,6,5,0,5,[[682,1,1,0,1],[723,2,1,1,2],[735,1,1,2,3],[743,2,2,3,5]]]],[17738,18568,18784,18914,18915]]],["created",[30,26,[[0,8,6,0,6,[[0,2,1,0,1],[1,2,2,1,3],[4,3,2,3,5],[5,1,1,5,6]]],[4,1,1,6,7,[[156,1,1,6,7]]],[18,4,4,7,11,[[566,1,1,7,8],[579,1,1,8,9],[581,1,1,9,10],[625,1,1,10,11]]],[22,12,10,11,21,[[718,1,1,11,12],[719,1,1,12,13],[720,1,1,13,14],[721,2,2,14,16],[723,4,3,16,19],[726,1,1,19,20],[732,2,1,20,21]]],[23,1,1,21,22,[[775,1,1,21,22]]],[25,3,3,22,25,[[822,1,1,22,23],[829,2,2,23,25]]],[38,1,1,25,26,[[926,1,1,25,26]]]],[26,33,34,106,107,144,5036,15338,15539,15601,16376,18446,18471,18485,18506,18512,18569,18573,18579,18621,18739,19713,20974,21170,21172,23113]]],["createth",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22423]]],["creator",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18520]]],["dispatch",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21054]]],["done",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2506]]],["down",[2,2,[[5,2,2,0,2,[[203,2,2,0,2]]]],[6290,6293]]],["fat",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7269]]],["made",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15373]]],["make",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4224]]]]},{"k":"H1255","v":[["Berodachbaladan",[1,1,[[11,1,1,0,1,[[332,1,1,0,1]]]],[10110]]]]},{"k":"H1256","v":[["Beraiah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10596]]]]},{"k":"H1257","v":[["fowl",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8867]]]]},{"k":"H1258","v":[["hail",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18278]]]]},{"k":"H1259","v":[["*",[29,26,[[1,17,14,0,14,[[58,14,11,0,11],[59,3,3,11,14]]],[5,1,1,14,15,[[196,1,1,14,15]]],[17,1,1,15,16,[[473,1,1,15,16]]],[18,6,6,16,22,[[495,2,2,16,18],[555,2,2,18,20],[582,1,1,20,21],[625,1,1,21,22]]],[22,3,3,22,25,[[706,2,2,22,24],[708,1,1,24,25]]],[36,1,1,25,26,[[910,1,1,25,26]]]],[1760,1761,1764,1765,1766,1767,1768,1770,1771,1775,1776,1782,1789,1792,6075,13815,14130,14131,15160,15161,15638,16379,18166,18181,18247,22872]]],["+",[2,2,[[5,1,1,0,1,[[196,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]]],[6075,18247]]],["hail",[27,24,[[1,17,14,0,14,[[58,14,11,0,11],[59,3,3,11,14]]],[17,1,1,14,15,[[473,1,1,14,15]]],[18,6,6,15,21,[[495,2,2,15,17],[555,2,2,17,19],[582,1,1,19,20],[625,1,1,20,21]]],[22,2,2,21,23,[[706,2,2,21,23]]],[36,1,1,23,24,[[910,1,1,23,24]]]],[1760,1761,1764,1765,1766,1767,1768,1770,1771,1775,1776,1782,1789,1792,13815,14130,14131,15160,15161,15638,16379,18166,18181,22872]]]]},{"k":"H1260","v":[["Bered",[2,2,[[0,1,1,0,1,[[15,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]]],[395,10555]]]]},{"k":"H1261","v":[["grisled",[4,4,[[0,2,2,0,2,[[30,2,2,0,2]]],[37,2,2,2,4,[[916,2,2,2,4]]]],[883,885,22950,22953]]]]},{"k":"H1262","v":[["*",[7,7,[[8,1,1,0,1,[[252,1,1,0,1]]],[9,5,5,1,6,[[269,1,1,1,2],[278,1,1,2,3],[279,3,3,3,6]]],[24,1,1,6,7,[[800,1,1,6,7]]]],[7626,8116,8303,8322,8323,8327,20430]]],["choose",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7626]]],["eat",[4,4,[[9,4,4,0,4,[[269,1,1,0,1],[278,1,1,1,2],[279,2,2,2,4]]]],[8116,8303,8323,8327]]],["give",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8322]]],["meat",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20430]]]]},{"k":"H1263","v":[["Baruch",[26,24,[[15,3,3,0,3,[[415,1,1,0,1],[422,1,1,1,2],[423,1,1,2,3]]],[23,23,21,3,24,[[776,3,3,3,6],[780,16,14,6,20],[787,2,2,20,22],[789,2,2,22,24]]]],[12347,12555,12593,19743,19744,19747,19846,19847,19850,19852,19855,19856,19857,19858,19859,19860,19861,19868,19869,19874,20000,20003,20041,20042]]]]},{"k":"H1264","v":[["apparel",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21145]]]]},{"k":"H1265","v":[["*",[20,20,[[9,1,1,0,1,[[272,1,1,0,1]]],[10,5,5,1,6,[[295,2,2,1,3],[296,2,2,3,5],[299,1,1,5,6]]],[11,1,1,6,7,[[331,1,1,6,7]]],[13,2,2,7,9,[[368,1,1,7,8],[369,1,1,8,9]]],[18,1,1,9,10,[[581,1,1,9,10]]],[22,5,5,10,15,[[692,1,1,10,11],[715,1,1,11,12],[719,1,1,12,13],[733,1,1,13,14],[738,1,1,14,15]]],[25,2,2,15,17,[[828,1,1,15,16],[832,1,1,16,17]]],[27,1,1,17,18,[[875,1,1,17,18]]],[33,1,1,18,19,[[901,1,1,18,19]]],[37,1,1,19,20,[[921,1,1,19,20]]]],[8162,8886,8888,8911,8930,9062,10084,11219,11234,15588,17936,18376,18470,18753,18834,21126,21238,22290,22702,23030]]],["fir",[7,7,[[9,1,1,0,1,[[272,1,1,0,1]]],[10,5,5,1,6,[[295,2,2,1,3],[296,2,2,3,5],[299,1,1,5,6]]],[13,1,1,6,7,[[369,1,1,6,7]]]],[8162,8886,8888,8911,8930,9062,11234]]],["tree",[5,5,[[22,3,3,0,3,[[719,1,1,0,1],[733,1,1,1,2],[738,1,1,2,3]]],[27,1,1,3,4,[[875,1,1,3,4]]],[37,1,1,4,5,[[921,1,1,4,5]]]],[18470,18753,18834,22290,23030]]],["trees",[8,8,[[11,1,1,0,1,[[331,1,1,0,1]]],[13,1,1,1,2,[[368,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[22,2,2,3,5,[[692,1,1,3,4],[715,1,1,4,5]]],[25,2,2,5,7,[[828,1,1,5,6],[832,1,1,6,7]]],[33,1,1,7,8,[[901,1,1,7,8]]]],[10084,11219,15588,17936,18376,21126,21238,22702]]]]},{"k":"H1266","v":[["fir",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17554]]]]},{"k":"H1267","v":[["meat",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14956]]]]},{"k":"H1268","v":[["*",[2,2,[[9,1,1,0,1,[[274,1,1,0,1]]],[25,1,1,1,2,[[848,1,1,1,2]]]],[8217,21695]]],["+",[1,1,[[9,1,1,0,1,[[274,1,1,0,1]]]],[8217]]],["Berothah",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21695]]]]},{"k":"H1269","v":[["Birzavith",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10566]]]]},{"k":"H1270","v":[["*",[76,70,[[0,1,1,0,1,[[3,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,2,2,2,4,[[147,1,1,2,3],[151,1,1,3,4]]],[4,8,8,4,12,[[155,1,1,4,5],[156,1,1,5,6],[160,1,1,6,7],[171,1,1,7,8],[179,1,1,8,9],[180,2,2,9,11],[185,1,1,11,12]]],[5,6,6,12,18,[[192,2,2,12,14],[194,1,1,14,15],[203,2,2,15,17],[208,1,1,17,18]]],[6,3,3,18,21,[[211,1,1,18,19],[214,2,2,19,21]]],[8,1,1,21,22,[[252,1,1,21,22]]],[9,3,2,22,24,[[278,2,1,22,23],[289,1,1,23,24]]],[10,3,3,24,27,[[296,1,1,24,25],[298,1,1,25,26],[312,1,1,26,27]]],[11,2,2,27,29,[[318,2,2,27,29]]],[12,7,6,29,35,[[357,1,1,29,30],[359,3,3,30,33],[366,3,2,33,35]]],[13,4,4,35,39,[[368,2,2,35,37],[384,1,1,37,38],[390,1,1,38,39]]],[17,5,5,39,44,[[454,1,1,39,40],[455,1,1,40,41],[463,1,1,41,42],[475,1,1,42,43],[476,1,1,43,44]]],[18,5,5,44,49,[[479,1,1,44,45],[582,1,1,45,46],[584,2,2,46,48],[626,1,1,48,49]]],[19,2,1,49,50,[[654,2,1,49,50]]],[20,1,1,50,51,[[668,1,1,50,51]]],[22,6,5,51,56,[[688,1,1,51,52],[722,1,1,52,53],[723,1,1,53,54],[726,1,1,54,55],[738,2,1,55,56]]],[23,8,7,56,63,[[745,1,1,56,57],[750,1,1,57,58],[755,1,1,58,59],[759,2,1,59,60],[761,1,1,60,61],[772,2,2,61,63]]],[25,6,5,63,68,[[805,2,1,63,64],[823,2,2,64,66],[828,2,2,66,68]]],[29,1,1,68,69,[[879,1,1,68,69]]],[32,1,1,69,70,[[896,1,1,69,70]]]],[101,3543,4686,4861,4986,5024,5146,5411,5590,5634,5659,5835,5968,5973,6033,6291,6293,6434,6528,6602,6612,7625,8317,8660,8903,9036,9491,9679,9680,10929,10967,10978,10980,11166,11171,11218,11225,11552,11689,13321,13350,13506,13882,13915,13954,15624,15709,15715,16393,17186,17503,17884,18545,18563,18618,18838,18964,19117,19230,19327,19358,19631,19632,20532,20994,20996,21133,21140,22367,22633]]],["+",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[4686,18545]]],["Iron",[2,2,[[17,1,1,0,1,[[463,1,1,0,1]]],[19,1,1,1,2,[[654,1,1,1,2]]]],[13506,17186]]],["head",[2,2,[[4,1,1,0,1,[[171,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]]],[5411,9679]]],["iron",[70,65,[[0,1,1,0,1,[[3,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,1,1,2,3,[[151,1,1,2,3]]],[4,7,7,3,10,[[155,1,1,3,4],[156,1,1,4,5],[160,1,1,5,6],[179,1,1,6,7],[180,2,2,7,9],[185,1,1,9,10]]],[5,6,6,10,16,[[192,2,2,10,12],[194,1,1,12,13],[203,2,2,13,15],[208,1,1,15,16]]],[6,3,3,16,19,[[211,1,1,16,17],[214,2,2,17,19]]],[8,1,1,19,20,[[252,1,1,19,20]]],[9,3,2,20,22,[[278,2,1,20,21],[289,1,1,21,22]]],[10,3,3,22,25,[[296,1,1,22,23],[298,1,1,23,24],[312,1,1,24,25]]],[11,1,1,25,26,[[318,1,1,25,26]]],[12,7,6,26,32,[[357,1,1,26,27],[359,3,3,27,30],[366,3,2,30,32]]],[13,4,4,32,36,[[368,2,2,32,34],[384,1,1,34,35],[390,1,1,35,36]]],[17,4,4,36,40,[[454,1,1,36,37],[455,1,1,37,38],[475,1,1,38,39],[476,1,1,39,40]]],[18,5,5,40,45,[[479,1,1,40,41],[582,1,1,41,42],[584,2,2,42,44],[626,1,1,44,45]]],[19,1,1,45,46,[[654,1,1,45,46]]],[20,1,1,46,47,[[668,1,1,46,47]]],[22,5,4,47,51,[[688,1,1,47,48],[723,1,1,48,49],[726,1,1,49,50],[738,2,1,50,51]]],[23,8,7,51,58,[[745,1,1,51,52],[750,1,1,52,53],[755,1,1,53,54],[759,2,1,54,55],[761,1,1,55,56],[772,2,2,56,58]]],[25,6,5,58,63,[[805,2,1,58,59],[823,2,2,59,61],[828,2,2,61,63]]],[29,1,1,63,64,[[879,1,1,63,64]]],[32,1,1,64,65,[[896,1,1,64,65]]]],[101,3543,4861,4986,5024,5146,5590,5634,5659,5835,5968,5973,6033,6291,6293,6434,6528,6602,6612,7625,8317,8660,8903,9036,9491,9680,10929,10967,10978,10980,11166,11171,11218,11225,11552,11689,13321,13350,13882,13915,13954,15624,15709,15715,16393,17186,17503,17884,18563,18618,18838,18964,19117,19230,19327,19358,19631,19632,20532,20994,20996,21133,21140,22367,22633]]]]},{"k":"H1271","v":[["Barzillai",[12,10,[[9,7,7,0,7,[[283,1,1,0,1],[285,5,5,1,6],[287,1,1,6,7]]],[10,1,1,7,8,[[292,1,1,7,8]]],[14,2,1,8,9,[[404,2,1,8,9]]],[15,2,1,9,10,[[419,2,1,9,10]]]],[8476,8542,8543,8544,8545,8550,8588,8777,12088,12483]]]]},{"k":"H1272","v":[["*",[63,62,[[0,9,9,0,9,[[15,2,2,0,2],[26,1,1,2,3],[30,4,4,3,7],[34,2,2,7,9]]],[1,4,4,9,13,[[51,1,1,9,10],[63,1,1,10,11],[75,1,1,11,12],[85,1,1,12,13]]],[3,1,1,13,14,[[140,1,1,13,14]]],[6,2,2,14,16,[[219,1,1,14,15],[221,1,1,15,16]]],[8,8,8,16,24,[[254,2,2,16,18],[255,1,1,18,19],[256,1,1,19,20],[257,2,2,20,22],[258,1,1,22,23],[262,1,1,23,24]]],[9,6,6,24,30,[[270,1,1,24,25],[279,3,3,25,28],[281,1,1,28,29],[285,1,1,29,30]]],[10,6,6,30,36,[[292,2,2,30,32],[301,3,3,32,35],[302,1,1,35,36]]],[12,2,2,36,38,[[345,1,1,36,37],[349,1,1,37,38]]],[13,1,1,38,39,[[376,1,1,38,39]]],[15,3,3,39,42,[[418,1,1,39,40],[425,2,2,40,42]]],[17,6,5,42,47,[[444,1,1,42,43],[449,1,1,43,44],[455,1,1,44,45],[462,2,1,45,46],[476,1,1,46,47]]],[18,1,1,47,48,[[616,1,1,47,48]]],[19,1,1,48,49,[[646,1,1,48,49]]],[21,1,1,49,50,[[678,1,1,49,50]]],[22,2,2,50,52,[[700,1,1,50,51],[726,1,1,51,52]]],[23,4,4,52,56,[[748,1,1,52,53],[770,1,1,53,54],[783,1,1,54,55],[796,1,1,55,56]]],[26,1,1,56,57,[[859,1,1,56,57]]],[27,1,1,57,58,[[873,1,1,57,58]]],[29,1,1,58,59,[[885,1,1,58,59]]],[31,3,3,59,62,[[889,2,2,59,61],[892,1,1,61,62]]]],[387,389,770,893,894,895,900,1012,1018,1569,1894,2263,2599,4457,6775,6832,7718,7724,7731,7782,7804,7807,7816,7934,8123,8351,8354,8355,8403,8520,8777,8809,9125,9131,9148,9153,10588,10735,11397,12412,12681,12699,13076,13183,13350,13503,13916,16246,16951,17654,18055,18634,19056,19593,19927,20283,22022,22264,22476,22534,22541,22570]]],["+",[4,3,[[12,2,2,0,2,[[345,1,1,0,1],[349,1,1,1,2]]],[17,2,1,2,3,[[462,2,1,2,3]]]],[10588,10735,13503]]],["away",[5,5,[[0,1,1,0,1,[[30,1,1,0,1]]],[10,1,1,1,2,[[292,1,1,1,2]]],[17,1,1,2,3,[[444,1,1,2,3]]],[19,1,1,3,4,[[646,1,1,3,4]]],[29,1,1,4,5,[[885,1,1,4,5]]]],[900,8809,13076,16951,22476]]],["chased",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12699]]],["fled",[37,37,[[0,5,5,0,5,[[15,1,1,0,1],[30,3,3,1,4],[34,1,1,4,5]]],[1,2,2,5,7,[[51,1,1,5,6],[63,1,1,6,7]]],[6,2,2,7,9,[[219,1,1,7,8],[221,1,1,8,9]]],[8,8,8,9,17,[[254,2,2,9,11],[255,1,1,11,12],[256,1,1,12,13],[257,2,2,13,15],[258,1,1,15,16],[262,1,1,16,17]]],[9,5,5,17,22,[[270,1,1,17,18],[279,3,3,18,21],[285,1,1,21,22]]],[10,5,5,22,27,[[292,1,1,22,23],[301,3,3,23,26],[302,1,1,26,27]]],[13,1,1,27,28,[[376,1,1,27,28]]],[15,1,1,28,29,[[425,1,1,28,29]]],[22,1,1,29,30,[[700,1,1,29,30]]],[23,3,3,30,33,[[770,1,1,30,31],[783,1,1,31,32],[796,1,1,32,33]]],[26,1,1,33,34,[[859,1,1,33,34]]],[27,1,1,34,35,[[873,1,1,34,35]]],[31,2,2,35,37,[[889,1,1,35,36],[892,1,1,36,37]]]],[387,893,894,895,1018,1569,1894,6775,6832,7718,7724,7731,7782,7804,7807,7816,7934,8123,8351,8354,8355,8520,8777,9125,9131,9148,9153,11397,12681,18055,19593,19927,20283,22022,22264,22541,22570]]],["fleddest",[1,1,[[0,1,1,0,1,[[34,1,1,0,1]]]],[1012]]],["flee",[11,11,[[0,2,2,0,2,[[15,1,1,0,1],[26,1,1,1,2]]],[3,1,1,2,3,[[140,1,1,2,3]]],[9,1,1,3,4,[[281,1,1,3,4]]],[15,1,1,4,5,[[418,1,1,4,5]]],[17,2,2,5,7,[[455,1,1,5,6],[476,1,1,6,7]]],[18,1,1,7,8,[[616,1,1,7,8]]],[22,1,1,8,9,[[726,1,1,8,9]]],[23,1,1,9,10,[[748,1,1,9,10]]],[31,1,1,10,11,[[889,1,1,10,11]]]],[389,770,4457,8403,12412,13350,13916,16246,18634,19056,22534]]],["fleeth",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13183]]],["haste",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17654]]],["reach",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2263]]],["shoot",[1,1,[[1,1,1,0,1,[[85,1,1,0,1]]]],[2599]]]]},{"k":"H1273","v":[["Barhumite",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8684]]]]},{"k":"H1274","v":[]},{"k":"H1275","v":[["Beri",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10571]]]]},{"k":"H1276","v":[["Berites",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8568]]]]},{"k":"H1277","v":[["*",[14,14,[[0,6,6,0,6,[[40,6,6,0,6]]],[6,1,1,6,7,[[213,1,1,6,7]]],[10,1,1,7,8,[[294,1,1,7,8]]],[18,1,1,8,9,[[550,1,1,8,9]]],[25,2,2,9,11,[[835,2,2,9,11]]],[26,1,1,11,12,[[850,1,1,11,12]]],[34,1,1,12,13,[[903,1,1,12,13]]],[37,1,1,13,14,[[921,1,1,13,14]]]],[1197,1199,1200,1202,1213,1215,6585,8867,15024,21316,21333,21752,22747,23044]]],["+",[2,2,[[0,2,2,0,2,[[40,2,2,0,2]]]],[1197,1213]]],["fat",[6,6,[[0,2,2,0,2,[[40,2,2,0,2]]],[6,1,1,2,3,[[213,1,1,2,3]]],[10,1,1,3,4,[[294,1,1,3,4]]],[25,1,1,4,5,[[835,1,1,4,5]]],[37,1,1,5,6,[[921,1,1,5,6]]]],[1199,1215,6585,8867,21333,23044]]],["fatter",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21752]]],["fed",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21316]]],["firm",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15024]]],["plenteous",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22747]]],["rank",[2,2,[[0,2,2,0,2,[[40,2,2,0,2]]]],[1200,1202]]]]},{"k":"H1278","v":[["thing",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4224]]]]},{"k":"H1279","v":[["meat",[3,3,[[9,3,3,0,3,[[279,3,3,0,3]]]],[8322,8324,8327]]]]},{"k":"H1280","v":[["*",[41,37,[[1,15,11,0,11,[[75,6,4,0,4],[84,1,1,4,5],[85,6,4,5,9],[88,1,1,9,10],[89,1,1,10,11]]],[3,2,2,11,13,[[119,1,1,11,12],[120,1,1,12,13]]],[4,1,1,13,14,[[155,1,1,13,14]]],[6,1,1,14,15,[[226,1,1,14,15]]],[8,1,1,15,16,[[258,1,1,15,16]]],[10,1,1,16,17,[[294,1,1,16,17]]],[13,2,2,17,19,[[374,1,1,17,18],[380,1,1,18,19]]],[15,5,5,19,24,[[415,5,5,19,24]]],[17,1,1,24,25,[[473,1,1,24,25]]],[18,2,2,25,27,[[584,1,1,25,26],[624,1,1,26,27]]],[19,1,1,27,28,[[645,1,1,27,28]]],[22,2,2,28,30,[[693,1,1,28,29],[723,1,1,29,30]]],[23,2,2,30,32,[[793,1,1,30,31],[795,1,1,31,32]]],[24,1,1,32,33,[[798,1,1,32,33]]],[25,1,1,33,34,[[839,1,1,33,34]]],[29,1,1,34,35,[[879,1,1,34,35]]],[31,1,1,35,36,[[890,1,1,35,36]]],[33,1,1,36,37,[[902,1,1,36,37]]]],[2261,2262,2263,2264,2542,2597,2598,2599,2600,2697,2725,3728,3774,4980,6952,7817,8857,11351,11482,12330,12333,12340,12341,12342,13803,15715,16364,16920,17965,18563,20158,20242,20341,21436,22369,22554,22725]]],["+",[2,2,[[1,1,1,0,1,[[84,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]]],[2542,6952]]],["bar",[3,3,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]],[29,1,1,2,3,[[879,1,1,2,3]]]],[2263,2599,22369]]],["bars",[35,31,[[1,12,8,0,8,[[75,5,3,0,3],[85,5,3,3,6],[88,1,1,6,7],[89,1,1,7,8]]],[3,2,2,8,10,[[119,1,1,8,9],[120,1,1,9,10]]],[4,1,1,10,11,[[155,1,1,10,11]]],[8,1,1,11,12,[[258,1,1,11,12]]],[10,1,1,12,13,[[294,1,1,12,13]]],[13,2,2,13,15,[[374,1,1,13,14],[380,1,1,14,15]]],[15,5,5,15,20,[[415,5,5,15,20]]],[17,1,1,20,21,[[473,1,1,20,21]]],[18,2,2,21,23,[[584,1,1,21,22],[624,1,1,22,23]]],[19,1,1,23,24,[[645,1,1,23,24]]],[22,1,1,24,25,[[723,1,1,24,25]]],[23,2,2,25,27,[[793,1,1,25,26],[795,1,1,26,27]]],[24,1,1,27,28,[[798,1,1,27,28]]],[25,1,1,28,29,[[839,1,1,28,29]]],[31,1,1,29,30,[[890,1,1,29,30]]],[33,1,1,30,31,[[902,1,1,30,31]]]],[2261,2262,2264,2597,2598,2600,2697,2725,3728,3774,4980,7817,8857,11351,11482,12330,12333,12340,12341,12342,13803,15715,16364,16920,18563,20158,20242,20341,21436,22554,22725]]],["fugitives",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17965]]]]},{"k":"H1281","v":[["*",[3,3,[[17,1,1,0,1,[[461,1,1,0,1]]],[22,2,2,1,3,[[705,1,1,1,2],[721,1,1,2,3]]]],[13480,18152,18519]]],["crooked",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13480]]],["nobles",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18519]]],["piercing",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18152]]]]},{"k":"H1282","v":[["Bariah",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10383]]]]},{"k":"H1283","v":[["Beriah",[11,10,[[0,2,1,0,1,[[45,2,1,0,1]]],[3,2,2,1,3,[[142,2,2,1,3]]],[12,7,7,3,10,[[344,3,3,3,6],[345,2,2,6,8],[360,2,2,8,10]]]],[1403,4533,4534,10558,10565,10566,10588,10591,10993,10994]]]]},{"k":"H1284","v":[["Beriites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4533]]]]},{"k":"H1285","v":[["*",[284,264,[[0,27,24,0,24,[[5,1,1,0,1],[8,7,7,1,8],[13,1,1,8,9],[14,1,1,9,10],[16,13,10,10,20],[20,2,2,20,22],[25,1,1,22,23],[30,1,1,23,24]]],[1,13,13,24,37,[[51,1,1,24,25],[55,2,2,25,27],[68,1,1,27,28],[72,1,1,28,29],[73,2,2,29,31],[80,1,1,31,32],[83,5,5,32,37]]],[2,10,8,37,45,[[91,1,1,37,38],[113,1,1,38,39],[115,8,6,39,45]]],[3,5,5,45,50,[[126,1,1,45,46],[130,1,1,46,47],[134,1,1,47,48],[141,2,2,48,50]]],[4,27,26,50,76,[[156,3,3,50,53],[157,2,2,53,55],[159,3,3,55,58],[160,1,1,58,59],[161,3,3,59,62],[162,1,1,62,63],[169,1,1,63,64],[181,7,6,64,70],[183,5,5,70,75],[185,1,1,75,76]]],[5,22,21,76,97,[[189,7,6,76,82],[190,3,3,82,85],[192,2,2,85,87],[193,2,2,87,89],[194,1,1,89,90],[195,5,5,90,95],[209,1,1,95,96],[210,1,1,96,97]]],[6,4,4,97,101,[[212,3,3,97,100],[230,1,1,100,101]]],[8,8,7,101,108,[[239,4,3,101,104],[246,1,1,104,105],[253,1,1,105,106],[255,1,1,106,107],[258,1,1,107,108]]],[9,6,6,108,114,[[269,3,3,108,111],[271,1,1,111,112],[281,1,1,112,113],[289,1,1,113,114]]],[10,14,12,114,126,[[293,1,1,114,115],[295,1,1,115,116],[296,1,1,116,117],[298,4,4,117,121],[301,1,1,121,122],[305,2,1,122,123],[309,2,2,123,125],[310,2,1,125,126]]],[11,12,10,126,136,[[323,2,2,126,128],[325,1,1,128,129],[329,3,3,129,132],[330,1,1,132,133],[335,5,3,133,136]]],[12,13,13,136,149,[[348,1,1,136,137],[352,4,4,137,141],[353,4,4,141,145],[354,1,1,145,146],[359,1,1,146,147],[365,2,2,147,149]]],[13,17,15,149,164,[[371,2,2,149,151],[372,2,2,151,153],[379,1,1,153,154],[381,1,1,154,155],[382,2,1,155,156],[387,1,1,156,157],[389,3,3,157,160],[395,1,1,160,161],[400,4,3,161,164]]],[14,1,1,164,165,[[412,1,1,164,165]]],[15,4,4,165,169,[[413,1,1,165,166],[421,2,2,166,168],[425,1,1,168,169]]],[17,3,3,169,172,[[440,1,1,169,170],[466,1,1,170,171],[476,1,1,171,172]]],[18,21,21,172,193,[[502,2,2,172,174],[521,1,1,174,175],[527,2,2,175,177],[532,1,1,177,178],[551,1,1,178,179],[555,2,2,179,181],[560,1,1,181,182],[566,4,4,182,186],[580,1,1,186,187],[582,2,2,187,189],[583,1,1,189,190],[588,2,2,190,192],[609,1,1,192,193]]],[19,1,1,193,194,[[629,1,1,193,194]]],[22,12,12,194,206,[[702,1,1,194,195],[706,2,2,195,197],[711,1,1,197,198],[720,1,1,198,199],[727,1,1,199,200],[732,1,1,200,201],[733,1,1,201,202],[734,2,2,202,204],[737,1,1,204,205],[739,1,1,205,206]]],[23,24,21,206,227,[[747,1,1,206,207],[755,5,5,207,212],[758,1,1,212,213],[766,1,1,213,214],[775,4,3,214,217],[776,1,1,217,218],[777,4,3,218,221],[778,6,5,221,226],[794,1,1,226,227]]],[25,18,16,227,243,[[817,6,5,227,232],[818,6,6,232,238],[821,1,1,238,239],[831,1,1,239,240],[835,1,1,240,241],[838,2,1,241,242],[845,1,1,242,243]]],[26,7,6,243,249,[[858,2,2,243,245],[860,5,4,245,249]]],[27,5,5,249,254,[[863,1,1,249,250],[867,1,1,250,251],[869,1,1,251,252],[871,1,1,252,253],[873,1,1,253,254]]],[29,1,1,254,255,[[879,1,1,254,255]]],[30,1,1,255,256,[[888,1,1,255,256]]],[37,2,2,256,258,[[919,1,1,256,257],[921,1,1,257,258]]],[38,6,6,258,264,[[926,5,5,258,263],[927,1,1,263,264]]]],[155,214,216,217,218,220,221,222,349,378,399,401,404,406,407,408,410,411,416,418,540,545,720,917,1578,1659,1660,2031,2176,2184,2185,2436,2506,2508,2511,2523,2524,2775,3454,3533,3539,3549,3566,3568,3569,4021,4152,4276,4483,4484,5017,5027,5035,5055,5056,5113,5120,5123,5155,5166,5168,5172,5194,5366,5680,5688,5691,5693,5700,5704,5737,5744,5748,5753,5754,5819,5896,5899,5901,5904,5907,5910,5917,5919,5928,5955,5957,5987,5991,6035,6043,6044,6048,6052,6053,6476,6501,6546,6547,6565,7081,7300,7301,7302,7446,7679,7738,7828,8093,8094,8102,8135,8413,8658,8831,8890,8915,8986,8991,9006,9008,9119,9268,9397,9401,9442,9833,9846,9894,9998,10018,10021,10036,10167,10168,10186,10676,10816,10817,10819,10820,10826,10835,10837,10857,10864,10983,11145,11161,11270,11275,11293,11296,11458,11502,11512,11631,11657,11659,11672,11801,11963,11964,11965,12255,12301,12519,12543,12700,12974,13589,13892,14261,14265,14588,14673,14684,14752,15068,15123,15150,15246,15329,15354,15360,15365,15567,15614,15616,15696,15798,15802,16163,16450,18100,18179,18182,18287,18486,18644,18733,18743,18757,18759,18821,18851,19018,19228,19229,19232,19234,19236,19314,19463,19722,19723,19724,19771,19795,19796,19800,19809,19811,19814,19816,19819,20171,20770,20821,20822,20823,20824,20838,20839,20840,20841,20843,20844,20932,21209,21338,21423,21606,21992,22015,22058,22064,22066,22068,22123,22174,22195,22229,22253,22373,22517,23010,23038,23107,23108,23111,23113,23117,23121]]],["+",[4,4,[[0,1,1,0,1,[[13,1,1,0,1]]],[10,1,1,1,2,[[295,1,1,1,2]]],[18,1,1,2,3,[[560,1,1,2,3]]],[25,1,1,3,4,[[817,1,1,3,4]]]],[349,8890,15246,20823]]],["confederacy",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22517]]],["covenant",[263,245,[[0,26,23,0,23,[[5,1,1,0,1],[8,7,7,1,8],[14,1,1,8,9],[16,13,10,9,19],[20,2,2,19,21],[25,1,1,21,22],[30,1,1,22,23]]],[1,13,13,23,36,[[51,1,1,23,24],[55,2,2,24,26],[68,1,1,26,27],[72,1,1,27,28],[73,2,2,28,30],[80,1,1,30,31],[83,5,5,31,36]]],[2,10,8,36,44,[[91,1,1,36,37],[113,1,1,37,38],[115,8,6,38,44]]],[3,5,5,44,49,[[126,1,1,44,45],[130,1,1,45,46],[134,1,1,46,47],[141,2,2,47,49]]],[4,27,26,49,75,[[156,3,3,49,52],[157,2,2,52,54],[159,3,3,54,57],[160,1,1,57,58],[161,3,3,58,61],[162,1,1,61,62],[169,1,1,62,63],[181,7,6,63,69],[183,5,5,69,74],[185,1,1,74,75]]],[5,17,16,75,91,[[189,7,6,75,81],[190,3,3,81,84],[192,2,2,84,86],[193,2,2,86,88],[194,1,1,88,89],[209,1,1,89,90],[210,1,1,90,91]]],[6,3,3,91,94,[[212,2,2,91,93],[230,1,1,93,94]]],[8,8,7,94,101,[[239,4,3,94,97],[246,1,1,97,98],[253,1,1,98,99],[255,1,1,99,100],[258,1,1,100,101]]],[9,2,2,101,103,[[281,1,1,101,102],[289,1,1,102,103]]],[10,11,10,103,113,[[293,1,1,103,104],[296,1,1,104,105],[298,4,4,105,109],[301,1,1,109,110],[309,2,2,110,112],[310,2,1,112,113]]],[11,12,10,113,123,[[323,2,2,113,115],[325,1,1,115,116],[329,3,3,116,119],[330,1,1,119,120],[335,5,3,120,123]]],[12,13,13,123,136,[[348,1,1,123,124],[352,4,4,124,128],[353,4,4,128,132],[354,1,1,132,133],[359,1,1,133,134],[365,2,2,134,136]]],[13,15,14,136,150,[[371,2,2,136,138],[372,2,2,138,140],[379,1,1,140,141],[381,1,1,141,142],[387,1,1,142,143],[389,3,3,143,146],[395,1,1,146,147],[400,4,3,147,150]]],[14,1,1,150,151,[[412,1,1,150,151]]],[15,4,4,151,155,[[413,1,1,151,152],[421,2,2,152,154],[425,1,1,154,155]]],[17,2,2,155,157,[[466,1,1,155,156],[476,1,1,156,157]]],[18,20,20,157,177,[[502,2,2,157,159],[521,1,1,159,160],[527,2,2,160,162],[532,1,1,162,163],[551,1,1,163,164],[555,2,2,164,166],[566,4,4,166,170],[580,1,1,170,171],[582,2,2,171,173],[583,1,1,173,174],[588,2,2,174,176],[609,1,1,176,177]]],[19,1,1,177,178,[[629,1,1,177,178]]],[22,12,12,178,190,[[702,1,1,178,179],[706,2,2,179,181],[711,1,1,181,182],[720,1,1,182,183],[727,1,1,183,184],[732,1,1,184,185],[733,1,1,185,186],[734,2,2,186,188],[737,1,1,188,189],[739,1,1,189,190]]],[23,24,21,190,211,[[747,1,1,190,191],[755,5,5,191,196],[758,1,1,196,197],[766,1,1,197,198],[775,4,3,198,201],[776,1,1,201,202],[777,4,3,202,205],[778,6,5,205,210],[794,1,1,210,211]]],[25,16,14,211,225,[[817,5,4,211,215],[818,6,6,215,221],[821,1,1,221,222],[835,1,1,222,223],[838,2,1,223,224],[845,1,1,224,225]]],[26,7,6,225,231,[[858,2,2,225,227],[860,5,4,227,231]]],[27,5,5,231,236,[[863,1,1,231,232],[867,1,1,232,233],[869,1,1,233,234],[871,1,1,234,235],[873,1,1,235,236]]],[29,1,1,236,237,[[879,1,1,236,237]]],[37,2,2,237,239,[[919,1,1,237,238],[921,1,1,238,239]]],[38,6,6,239,245,[[926,5,5,239,244],[927,1,1,244,245]]]],[155,214,216,217,218,220,221,222,378,399,401,404,406,407,408,410,411,416,418,540,545,720,917,1578,1659,1660,2031,2176,2184,2185,2436,2506,2508,2511,2523,2524,2775,3454,3533,3539,3549,3566,3568,3569,4021,4152,4276,4483,4484,5017,5027,5035,5055,5056,5113,5120,5123,5155,5166,5168,5172,5194,5366,5680,5688,5691,5693,5700,5704,5737,5744,5748,5753,5754,5819,5896,5899,5901,5904,5907,5910,5917,5919,5928,5955,5957,5987,5991,6035,6476,6501,6546,6565,7081,7300,7301,7302,7446,7679,7738,7828,8413,8658,8831,8915,8986,8991,9006,9008,9119,9397,9401,9442,9833,9846,9894,9998,10018,10021,10036,10167,10168,10186,10676,10816,10817,10819,10820,10826,10835,10837,10857,10864,10983,11145,11161,11270,11275,11293,11296,11458,11502,11631,11657,11659,11672,11801,11963,11964,11965,12255,12301,12519,12543,12700,13589,13892,14261,14265,14588,14673,14684,14752,15068,15123,15150,15329,15354,15360,15365,15567,15614,15616,15696,15798,15802,16163,16450,18100,18179,18182,18287,18486,18644,18733,18743,18757,18759,18821,18851,19018,19228,19229,19232,19234,19236,19314,19463,19722,19723,19724,19771,19795,19796,19800,19809,19811,19814,19816,19819,20171,20770,20821,20822,20824,20838,20839,20840,20841,20843,20844,20932,21338,21423,21606,21992,22015,22058,22064,22066,22068,22123,22174,22195,22229,22253,22373,23010,23038,23107,23108,23111,23113,23117,23121]]],["league",[16,14,[[5,5,5,0,5,[[195,5,5,0,5]]],[6,1,1,5,6,[[212,1,1,5,6]]],[9,4,4,6,10,[[269,3,3,6,9],[271,1,1,9,10]]],[10,2,1,10,11,[[305,2,1,10,11]]],[13,2,1,11,12,[[382,2,1,11,12]]],[17,1,1,12,13,[[440,1,1,12,13]]],[25,1,1,13,14,[[831,1,1,13,14]]]],[6043,6044,6048,6052,6053,6547,8093,8094,8102,8135,9268,11512,12974,21209]]]]},{"k":"H1286","v":[["Berith",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6800]]]]},{"k":"H1287","v":[["soap",[2,2,[[23,1,1,0,1,[[746,1,1,0,1]]],[38,1,1,1,2,[[927,1,1,1,2]]]],[18987,23122]]]]},{"k":"H1288","v":[["*",[330,289,[[0,73,62,0,62,[[0,2,2,0,2],[1,1,1,2,3],[4,1,1,3,4],[8,2,2,4,6],[11,4,2,6,8],[13,3,2,8,10],[16,3,2,10,12],[17,1,1,12,13],[21,3,2,13,15],[23,7,7,15,22],[24,1,1,22,23],[25,5,5,23,28],[26,17,14,28,42],[27,5,4,42,46],[29,2,2,46,48],[30,1,1,48,49],[31,2,2,49,51],[34,1,1,51,52],[38,1,1,52,53],[46,2,2,53,55],[47,6,5,55,60],[48,3,2,60,62]]],[1,6,6,62,68,[[61,1,1,62,63],[67,1,1,63,64],[69,2,2,64,66],[72,1,1,66,67],[88,1,1,67,68]]],[2,2,2,68,70,[[98,2,2,68,70]]],[3,17,11,70,81,[[122,3,3,70,73],[138,3,2,73,75],[139,6,3,75,78],[140,5,3,78,81]]],[4,39,35,81,116,[[153,1,1,81,82],[154,1,1,82,83],[159,3,2,83,85],[160,1,1,85,86],[162,1,1,86,87],[164,1,1,87,88],[166,2,2,88,90],[167,6,5,90,95],[168,2,2,95,97],[173,1,1,97,98],[175,1,1,98,99],[176,2,2,99,101],[178,1,1,101,102],[179,1,1,102,103],[180,8,6,103,109],[181,1,1,109,110],[182,1,1,110,111],[185,5,5,111,116]]],[5,8,7,116,123,[[194,1,1,116,117],[200,1,1,117,118],[203,1,1,118,119],[208,3,3,119,122],[210,2,1,122,123]]],[6,6,5,123,128,[[215,4,3,123,126],[223,1,1,126,127],[227,1,1,127,128]]],[7,5,5,128,133,[[233,3,3,128,131],[234,1,1,131,132],[235,1,1,132,133]]],[8,11,10,133,143,[[237,1,1,133,134],[244,1,1,134,135],[248,1,1,135,136],[250,1,1,136,137],[258,1,1,137,138],[260,5,4,138,142],[261,1,1,142,143]]],[9,14,13,143,156,[[268,1,1,143,144],[272,4,4,144,148],[273,2,1,148,149],[274,1,1,149,150],[279,1,1,150,151],[280,1,1,151,152],[284,1,1,152,153],[285,1,1,153,154],[287,1,1,154,155],[288,1,1,155,156]]],[10,12,12,156,168,[[291,2,2,156,158],[292,1,1,158,159],[295,1,1,159,160],[298,5,5,160,165],[300,1,1,165,166],[311,2,2,166,168]]],[11,3,2,168,170,[[316,2,1,168,169],[322,1,1,169,170]]],[12,16,11,170,181,[[341,2,1,170,171],[350,1,1,171,172],[353,3,3,172,175],[354,3,1,175,176],[355,1,1,176,177],[360,1,1,177,178],[363,1,1,178,179],[366,4,2,179,181]]],[13,9,9,181,190,[[368,1,1,181,182],[372,3,3,182,185],[375,1,1,185,186],[386,1,1,186,187],[396,1,1,187,188],[397,2,2,188,190]]],[14,1,1,190,191,[[409,1,1,190,191]]],[15,4,3,191,194,[[420,1,1,191,192],[421,2,1,192,193],[423,1,1,193,194]]],[17,8,8,194,202,[[436,4,4,194,198],[437,2,2,198,200],[466,1,1,200,201],[477,1,1,201,202]]],[18,75,68,202,270,[[482,1,1,202,203],[487,1,1,203,204],[493,1,1,204,205],[495,1,1,205,206],[503,1,1,206,207],[505,2,2,207,209],[506,1,1,209,210],[508,1,1,210,211],[511,1,1,211,212],[514,1,1,212,213],[518,1,1,213,214],[522,1,1,214,215],[526,1,1,215,216],[539,1,1,216,217],[540,1,1,217,218],[542,1,1,218,219],[543,2,2,219,221],[544,3,3,221,224],[545,3,3,224,227],[549,4,4,227,231],[566,1,1,231,232],[572,1,1,232,233],[573,1,1,233,234],[577,1,1,234,235],[580,6,5,235,240],[581,2,2,240,242],[583,1,1,242,243],[584,1,1,243,244],[586,1,1,244,245],[589,1,1,245,246],[590,1,1,246,247],[592,6,4,247,251],[595,2,1,251,252],[596,1,1,252,253],[601,1,1,253,254],[605,2,2,254,256],[606,1,1,256,257],[609,2,1,257,258],[611,3,3,258,261],[612,5,3,261,264],[621,1,1,264,265],[622,4,4,265,269],[624,1,1,269,270]]],[19,6,6,270,276,[[630,1,1,270,271],[632,1,1,271,272],[647,1,1,272,273],[649,1,1,273,274],[654,1,1,274,275],[657,1,1,275,276]]],[22,8,6,276,282,[[697,2,1,276,277],[729,1,1,277,278],[739,1,1,278,279],[743,3,2,279,281],[744,1,1,281,282]]],[23,4,4,282,286,[[748,1,1,282,283],[761,1,1,283,284],[764,1,1,284,285],[775,1,1,285,286]]],[25,1,1,286,287,[[804,1,1,286,287]]],[36,1,1,287,288,[[910,1,1,287,288]]],[37,1,1,288,289,[[921,1,1,288,289]]]],[21,27,33,107,206,231,300,301,355,356,413,417,442,564,565,592,602,618,622,626,639,651,669,695,696,704,716,721,731,734,737,746,750,752,754,756,757,758,760,761,765,768,774,776,779,787,857,860,928,954,957,1020,1154,1427,1430,1454,1460,1466,1467,1471,1498,1501,1848,2009,2062,2075,2169,2707,2975,2976,3846,3847,3850,4381,4387,4427,4436,4441,4447,4455,4456,4903,4945,5124,5125,5147,5194,5247,5314,5319,5323,5325,5329,5333,5337,5352,5357,5452,5520,5538,5544,5581,5597,5614,5615,5616,5617,5619,5623,5698,5724,5811,5821,5823,5830,5834,6035,6200,6289,6432,6433,6459,6486,6625,6632,6647,6908,6982,7153,7168,7169,7182,7204,7260,7404,7495,7573,7831,7875,7893,7894,7900,7930,8054,8168,8169,8175,8177,8209,8219,8342,8378,8506,8550,8583,8649,8764,8765,8815,8885,8999,9000,9040,9041,9051,9088,9461,9464,9632,9808,10395,10774,10822,10856,10863,10890,10900,10996,11082,11174,11184,11223,11285,11286,11295,11372,11613,11854,11862,11864,12200,12499,12516,12590,12874,12879,12880,12890,12896,12900,13608,13934,13985,14044,14099,14164,14285,14305,14308,14319,14352,14389,14472,14555,14599,14666,14831,14843,14870,14881,14893,14894,14899,14900,14919,14926,14935,15015,15017,15018,15019,15378,15460,15467,15512,15550,15551,15569,15570,15571,15572,15606,15699,15737,15783,15805,15815,15842,15843,15845,15848,15895,15910,16108,16130,16131,16140,16166,16173,16174,16175,16194,16195,16196,16306,16321,16322,16330,16341,16364,16488,16535,16975,17024,17183,17262,18029,18675,18852,18913,18920,18925,19029,19364,19436,19714,20514,22874,23033]]],["+",[77,68,[[0,13,13,0,13,[[1,1,1,0,1],[8,1,1,1,2],[23,4,4,2,6],[26,1,1,6,7],[27,1,1,7,8],[38,1,1,8,9],[46,2,2,9,11],[47,2,2,11,13]]],[1,1,1,13,14,[[72,1,1,13,14]]],[2,1,1,14,15,[[98,1,1,14,15]]],[3,8,5,15,20,[[122,1,1,15,16],[139,4,2,16,18],[140,3,2,18,20]]],[4,7,6,20,26,[[160,1,1,20,21],[167,2,1,21,22],[178,1,1,22,23],[179,1,1,23,24],[180,1,1,24,25],[185,1,1,25,26]]],[5,3,2,26,28,[[194,1,1,26,27],[210,2,1,27,28]]],[8,2,2,28,30,[[237,1,1,28,29],[260,1,1,29,30]]],[9,7,7,30,37,[[272,4,4,30,34],[273,1,1,34,35],[280,1,1,35,36],[287,1,1,36,37]]],[10,4,4,37,41,[[291,1,1,37,38],[298,3,3,38,41]]],[12,8,7,41,48,[[341,2,1,41,42],[350,1,1,42,43],[353,2,2,43,45],[354,1,1,45,46],[366,2,2,46,48]]],[13,5,5,48,53,[[372,1,1,48,49],[386,1,1,49,50],[396,1,1,50,51],[397,2,2,51,53]]],[15,2,2,53,55,[[420,1,1,53,54],[421,1,1,54,55]]],[17,1,1,55,56,[[477,1,1,55,56]]],[18,15,12,56,68,[[493,1,1,56,57],[505,1,1,57,58],[506,1,1,58,59],[580,3,3,59,62],[581,1,1,62,63],[592,2,1,63,64],[609,2,1,64,65],[611,1,1,65,66],[612,3,2,66,68]]]],[33,206,592,626,639,651,757,779,1154,1427,1430,1466,1467,2169,2976,3846,4427,4441,4447,4456,5147,5323,5581,5597,5623,5811,6035,6486,7260,7875,8168,8169,8175,8177,8209,8378,8583,8764,8999,9040,9051,10395,10774,10822,10863,10890,11174,11184,11285,11613,11854,11862,11864,12499,12516,13934,14099,14308,14319,15550,15551,15571,15572,15842,16166,16174,16194,16195]]],["Bless",[8,8,[[0,1,1,0,1,[[26,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[18,5,5,3,8,[[545,1,1,3,4],[580,3,3,4,7],[581,1,1,7,8]]]],[761,5821,6632,14926,15569,15570,15571,15606]]],["Blessed",[53,53,[[0,3,3,0,3,[[8,1,1,0,1],[13,1,1,1,2],[23,1,1,2,3]]],[1,1,1,3,4,[[67,1,1,3,4]]],[3,1,1,4,5,[[140,1,1,4,5]]],[4,6,6,5,11,[[180,4,4,5,9],[185,2,2,9,11]]],[6,2,2,11,13,[[215,1,1,11,12],[227,1,1,12,13]]],[7,3,3,13,16,[[233,1,1,13,14],[234,1,1,14,15],[235,1,1,15,16]]],[8,5,5,16,21,[[250,1,1,16,17],[258,1,1,17,18],[260,2,2,18,20],[261,1,1,20,21]]],[9,2,2,21,23,[[268,1,1,21,22],[284,1,1,22,23]]],[10,5,5,23,28,[[291,1,1,23,24],[295,1,1,24,25],[298,2,2,25,27],[300,1,1,27,28]]],[12,2,2,28,30,[[353,1,1,28,29],[366,1,1,29,30]]],[13,3,3,30,33,[[368,1,1,30,31],[372,1,1,31,32],[375,1,1,32,33]]],[14,1,1,33,34,[[409,1,1,33,34]]],[18,15,15,34,49,[[505,1,1,34,35],[508,1,1,35,36],[518,1,1,36,37],[543,1,1,37,38],[545,2,2,38,40],[549,1,1,40,41],[566,1,1,41,42],[583,1,1,42,43],[590,1,1,43,44],[595,1,1,44,45],[596,1,1,45,46],[601,1,1,46,47],[612,1,1,47,48],[621,1,1,48,49]]],[22,1,1,49,50,[[697,1,1,49,50]]],[23,1,1,50,51,[[761,1,1,50,51]]],[25,1,1,51,52,[[804,1,1,51,52]]],[37,1,1,52,53,[[921,1,1,52,53]]]],[231,355,618,2009,4455,5614,5615,5616,5617,5823,5830,6647,6982,7169,7182,7204,7573,7831,7893,7900,7930,8054,8506,8765,8885,9000,9041,9088,10856,11174,11223,11286,11372,12200,14305,14352,14555,14893,14919,14935,15018,15378,15699,15815,15895,15910,16108,16196,16306,18029,19364,20514,23033]]],["Praise",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6625]]],["blaspheme",[2,2,[[10,2,2,0,2,[[311,2,2,0,2]]]],[9461,9464]]],["bless",[71,68,[[0,20,18,0,18,[[11,3,2,0,2],[16,2,1,2,3],[21,1,1,3,4],[25,2,2,4,6],[26,7,7,6,13],[27,1,1,13,14],[31,1,1,14,15],[47,2,2,15,17],[48,1,1,17,18]]],[1,2,2,18,20,[[61,1,1,18,19],[69,1,1,19,20]]],[3,3,3,20,23,[[122,2,2,20,22],[139,1,1,22,23]]],[4,14,13,23,36,[[153,1,1,23,24],[159,2,1,24,25],[162,1,1,25,26],[166,1,1,26,27],[167,2,2,27,29],[168,1,1,29,30],[173,1,1,30,31],[175,1,1,31,32],[176,2,2,32,34],[180,1,1,34,35],[182,1,1,35,36]]],[7,1,1,36,37,[[233,1,1,36,37]]],[8,1,1,37,38,[[244,1,1,37,38]]],[9,1,1,38,39,[[274,1,1,38,39]]],[12,1,1,39,40,[[360,1,1,39,40]]],[18,24,24,40,64,[[482,1,1,40,41],[503,1,1,41,42],[511,1,1,42,43],[539,1,1,43,44],[540,1,1,44,45],[543,1,1,45,46],[544,3,3,46,49],[573,1,1,49,50],[577,1,1,50,51],[586,1,1,51,52],[592,3,3,52,55],[605,1,1,55,56],[606,1,1,56,57],[611,2,2,57,59],[612,1,1,59,60],[622,4,4,60,64]]],[19,1,1,64,65,[[657,1,1,64,65]]],[22,1,1,65,66,[[697,1,1,65,66]]],[23,1,1,66,67,[[775,1,1,66,67]]],[36,1,1,67,68,[[910,1,1,67,68]]]],[300,301,413,564,695,716,731,734,737,746,752,758,765,776,954,1460,1471,1498,1848,2075,3847,3850,4436,4903,5124,5194,5319,5329,5337,5357,5452,5520,5538,5544,5619,5724,7153,7404,8219,10996,13985,14285,14389,14831,14843,14881,14894,14899,14900,15467,15512,15783,15842,15843,15848,16131,16140,16173,16175,16194,16321,16322,16330,16341,17262,18029,19714,22874]]],["blessed",[90,86,[[0,33,30,0,30,[[0,2,2,0,2],[4,1,1,2,3],[11,1,1,3,4],[13,2,2,4,6],[16,1,1,6,7],[17,1,1,7,8],[21,1,1,8,9],[23,1,1,9,10],[24,1,1,10,11],[25,3,3,11,14],[26,7,5,14,19],[27,3,3,19,22],[29,2,2,22,24],[30,1,1,24,25],[31,1,1,25,26],[34,1,1,26,27],[47,2,2,27,29],[48,2,1,29,30]]],[1,2,2,30,32,[[69,1,1,30,31],[88,1,1,31,32]]],[2,1,1,32,33,[[98,1,1,32,33]]],[3,3,3,33,36,[[138,2,2,33,35],[139,1,1,35,36]]],[4,9,9,36,45,[[154,1,1,36,37],[159,1,1,37,38],[164,1,1,38,39],[166,1,1,39,40],[167,1,1,40,41],[168,1,1,41,42],[180,2,2,42,44],[185,1,1,44,45]]],[5,5,5,45,50,[[200,1,1,45,46],[203,1,1,46,47],[208,3,3,47,50]]],[6,2,2,50,52,[[215,1,1,50,51],[223,1,1,51,52]]],[7,1,1,52,53,[[233,1,1,52,53]]],[8,2,1,53,54,[[260,2,1,53,54]]],[9,4,4,54,58,[[273,1,1,54,55],[279,1,1,55,56],[285,1,1,56,57],[288,1,1,57,58]]],[10,1,1,58,59,[[292,1,1,58,59]]],[12,3,3,59,62,[[354,1,1,59,60],[363,1,1,60,61],[366,1,1,61,62]]],[15,2,2,62,64,[[421,1,1,62,63],[423,1,1,63,64]]],[17,3,3,64,67,[[436,2,2,64,66],[466,1,1,66,67]]],[18,11,11,67,78,[[495,1,1,67,68],[514,1,1,68,69],[522,1,1,69,70],[526,1,1,70,71],[549,2,2,71,73],[589,1,1,73,74],[592,1,1,74,75],[595,1,1,75,76],[605,1,1,76,77],[624,1,1,77,78]]],[19,3,3,78,81,[[632,1,1,78,79],[647,1,1,79,80],[649,1,1,80,81]]],[22,4,4,81,85,[[729,1,1,81,82],[739,1,1,82,83],[743,1,1,83,84],[744,1,1,84,85]]],[23,1,1,85,86,[[764,1,1,85,86]]]],[21,27,107,301,355,356,417,442,565,622,669,696,704,721,750,754,756,760,768,774,779,787,857,860,928,957,1020,1454,1471,1501,2062,2707,2975,4381,4387,4436,4945,5125,5247,5314,5333,5352,5614,5617,5834,6200,6289,6432,6433,6459,6647,6908,7168,7894,8209,8342,8550,8649,8815,10890,11082,11184,12516,12590,12879,12890,13608,14164,14472,14599,14666,15017,15019,15805,15845,15895,16130,16364,16535,16975,17024,18675,18852,18920,18925,19436]]],["blessest",[3,3,[[3,1,1,0,1,[[138,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]],[18,1,1,2,3,[[542,1,1,2,3]]]],[4381,10890,14870]]],["blesseth",[7,7,[[0,1,1,0,1,[[26,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[4,1,1,2,3,[[167,1,1,2,3]]],[18,2,2,3,5,[[487,1,1,3,4],[584,1,1,4,5]]],[19,2,2,5,7,[[630,1,1,5,6],[654,1,1,6,7]]]],[756,4455,5325,14044,15737,16488,17183]]],["blessing",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[564]]],["congratulate",[1,1,[[12,1,1,0,1,[[355,1,1,0,1]]]],[10900]]],["curse",[3,3,[[17,3,3,0,3,[[436,1,1,0,1],[437,2,2,1,3]]]],[12880,12896,12900]]],["cursed",[1,1,[[17,1,1,0,1,[[436,1,1,0,1]]]],[12874]]],["down",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]]],[602,11295]]],["himself",[3,2,[[4,1,1,0,1,[[181,1,1,0,1]]],[22,2,1,1,2,[[743,2,1,1,2]]]],[5698,18913]]],["kneel",[1,1,[[18,1,1,0,1,[[572,1,1,0,1]]]],[15460]]],["praised",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15015]]],["salute",[3,2,[[8,1,1,0,1,[[248,1,1,0,1]]],[11,2,1,1,2,[[316,2,1,1,2]]]],[7495,9632]]],["saluted",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9808]]],["themselves",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19029]]]]},{"k":"H1289","v":[["*",[5,5,[[26,5,5,0,5,[[851,2,2,0,2],[852,1,1,2,3],[853,1,1,3,4],[855,1,1,4,5]]]],[21777,21778,21835,21871,21915]]],["Blessed",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21778,21835]]],["blessed",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21777,21871]]],["kneeled",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21915]]]]},{"k":"H1290","v":[["*",[25,25,[[0,3,3,0,3,[[29,1,1,0,1],[47,1,1,1,2],[49,1,1,2,3]]],[4,1,1,3,4,[[180,1,1,3,4]]],[6,3,3,4,7,[[217,2,2,4,6],[226,1,1,6,7]]],[10,3,3,7,10,[[298,1,1,7,8],[308,1,1,8,9],[309,1,1,9,10]]],[11,2,2,10,12,[[313,1,1,10,11],[316,1,1,11,12]]],[13,1,1,12,13,[[372,1,1,12,13]]],[14,1,1,13,14,[[411,1,1,13,14]]],[17,2,2,14,16,[[438,1,1,14,15],[439,1,1,15,16]]],[18,1,1,16,17,[[586,1,1,16,17]]],[22,3,3,17,20,[[713,1,1,17,18],[723,1,1,18,19],[744,1,1,19,20]]],[25,3,3,20,23,[[808,1,1,20,21],[822,1,1,21,22],[848,1,1,22,23]]],[26,1,1,23,24,[[859,1,1,23,24]]],[33,1,1,24,25,[[901,1,1,24,25]]]],[833,1463,1529,5646,6699,6700,6968,9039,9383,9405,9546,9623,11295,12242,12916,12934,15779,18323,18584,18934,20594,20951,21683,22025,22709]]],["knee",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18584]]],["knees",[24,24,[[0,3,3,0,3,[[29,1,1,0,1],[47,1,1,1,2],[49,1,1,2,3]]],[4,1,1,3,4,[[180,1,1,3,4]]],[6,3,3,4,7,[[217,2,2,4,6],[226,1,1,6,7]]],[10,3,3,7,10,[[298,1,1,7,8],[308,1,1,8,9],[309,1,1,9,10]]],[11,2,2,10,12,[[313,1,1,10,11],[316,1,1,11,12]]],[13,1,1,12,13,[[372,1,1,12,13]]],[14,1,1,13,14,[[411,1,1,13,14]]],[17,2,2,14,16,[[438,1,1,14,15],[439,1,1,15,16]]],[18,1,1,16,17,[[586,1,1,16,17]]],[22,2,2,17,19,[[713,1,1,17,18],[744,1,1,18,19]]],[25,3,3,19,22,[[808,1,1,19,20],[822,1,1,20,21],[848,1,1,21,22]]],[26,1,1,22,23,[[859,1,1,22,23]]],[33,1,1,23,24,[[901,1,1,23,24]]]],[833,1463,1529,5646,6699,6700,6968,9039,9383,9405,9546,9623,11295,12242,12916,12934,15779,18323,18934,20594,20951,21683,22025,22709]]]]},{"k":"H1291","v":[["knees",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21915]]]]},{"k":"H1292","v":[["Barachel",[2,2,[[17,2,2,0,2,[[467,2,2,0,2]]]],[13630,13634]]]]},{"k":"H1293","v":[["*",[69,64,[[0,16,12,0,12,[[11,1,1,0,1],[26,6,5,1,6],[27,1,1,6,7],[32,1,1,7,8],[38,1,1,8,9],[48,6,3,9,12]]],[1,1,1,12,13,[[81,1,1,12,13]]],[2,1,1,13,14,[[114,1,1,13,14]]],[4,12,12,14,26,[[163,3,3,14,17],[164,1,1,17,18],[168,1,1,18,19],[175,1,1,19,20],[180,2,2,20,22],[182,2,2,22,24],[185,2,2,24,26]]],[5,2,2,26,28,[[194,1,1,26,27],[201,1,1,27,28]]],[6,1,1,28,29,[[211,1,1,28,29]]],[8,2,2,29,31,[[260,1,1,29,30],[265,1,1,30,31]]],[9,1,1,31,32,[[273,1,1,31,32]]],[11,2,2,32,34,[[317,1,1,32,33],[330,1,1,33,34]]],[15,2,2,34,36,[[421,1,1,34,35],[425,1,1,35,36]]],[17,1,1,36,37,[[464,1,1,36,37]]],[18,9,9,37,46,[[480,1,1,37,38],[498,2,2,38,40],[501,1,1,40,41],[514,1,1,41,42],[561,1,1,42,43],[586,1,1,43,44],[606,1,1,44,45],[610,1,1,45,46]]],[19,8,8,46,54,[[637,3,3,46,49],[638,3,3,49,52],[651,1,1,52,53],[655,1,1,53,54]]],[22,4,4,54,58,[[697,1,1,54,55],[714,1,1,55,56],[722,1,1,56,57],[743,1,1,57,58]]],[25,3,2,58,60,[[835,2,1,58,59],[845,1,1,59,60]]],[28,1,1,60,61,[[877,1,1,60,61]]],[37,1,1,61,62,[[918,1,1,61,62]]],[38,2,2,62,64,[[926,1,1,62,63],[927,1,1,63,64]]]],[300,739,762,763,765,768,777,971,1154,1498,1499,1501,2467,3490,5234,5235,5237,5255,5359,5505,5613,5619,5709,5727,5811,5833,6036,6221,6524,7888,8004,8209,9662,10055,12516,12673,13545,13965,14194,14197,14246,14476,15265,15772,16140,16172,16662,16663,16678,16699,16713,16714,17104,17216,18028,18346,18536,18905,21339,21629,22325,22989,23105,23130]]],["+",[1,1,[[9,1,1,0,1,[[273,1,1,0,1]]]],[8209]]],["Blessings",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16662]]],["blessed",[3,3,[[18,2,2,0,2,[[498,1,1,0,1],[514,1,1,1,2]]],[19,1,1,2,3,[[637,1,1,2,3]]]],[14197,14476,16663]]],["blessing",[49,47,[[0,11,10,0,10,[[11,1,1,0,1],[26,6,5,1,6],[27,1,1,6,7],[32,1,1,7,8],[38,1,1,8,9],[48,1,1,9,10]]],[1,1,1,10,11,[[81,1,1,10,11]]],[2,1,1,11,12,[[114,1,1,11,12]]],[4,11,11,12,23,[[163,3,3,12,15],[164,1,1,15,16],[168,1,1,16,17],[175,1,1,17,18],[180,1,1,18,19],[182,2,2,19,21],[185,2,2,21,23]]],[5,1,1,23,24,[[201,1,1,23,24]]],[6,1,1,24,25,[[211,1,1,24,25]]],[8,1,1,25,26,[[260,1,1,25,26]]],[11,1,1,26,27,[[317,1,1,26,27]]],[15,2,2,27,29,[[421,1,1,27,28],[425,1,1,28,29]]],[17,1,1,29,30,[[464,1,1,29,30]]],[18,5,5,30,35,[[480,1,1,30,31],[501,1,1,31,32],[586,1,1,32,33],[606,1,1,33,34],[610,1,1,34,35]]],[19,4,4,35,39,[[637,1,1,35,36],[638,2,2,36,38],[651,1,1,38,39]]],[22,3,3,39,42,[[697,1,1,39,40],[722,1,1,40,41],[743,1,1,41,42]]],[25,3,2,42,44,[[835,2,1,42,43],[845,1,1,43,44]]],[28,1,1,44,45,[[877,1,1,44,45]]],[37,1,1,45,46,[[918,1,1,45,46]]],[38,1,1,46,47,[[927,1,1,46,47]]]],[300,739,762,763,765,768,777,971,1154,1501,2467,3490,5234,5235,5237,5255,5359,5505,5619,5709,5727,5811,5833,6221,6524,7888,9662,12516,12673,13545,13965,14246,15772,16140,16172,16678,16699,16714,17104,18028,18536,18905,21339,21629,22325,22989,23130]]],["blessings",[10,7,[[0,5,2,0,2,[[48,5,2,0,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[5,1,1,3,4,[[194,1,1,3,4]]],[18,1,1,4,5,[[498,1,1,4,5]]],[19,1,1,5,6,[[655,1,1,5,6]]],[38,1,1,6,7,[[926,1,1,6,7]]]],[1498,1499,5613,6036,14194,17216,23105]]],["liberal",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16713]]],["pools",[1,1,[[18,1,1,0,1,[[561,1,1,0,1]]]],[15265]]],["present",[3,3,[[8,1,1,0,1,[[265,1,1,0,1]]],[11,1,1,1,2,[[330,1,1,1,2]]],[22,1,1,2,3,[[714,1,1,2,3]]]],[8004,10055,18346]]]]},{"k":"H1294","v":[["Berachah",[3,2,[[12,1,1,0,1,[[349,1,1,0,1]]],[13,2,1,1,2,[[386,2,1,1,2]]]],[10723,11613]]]]},{"k":"H1295","v":[["*",[17,15,[[9,4,2,0,2,[[268,3,1,0,1],[270,1,1,1,2]]],[10,1,1,2,3,[[312,1,1,2,3]]],[11,2,2,3,5,[[330,1,1,3,4],[332,1,1,4,5]]],[15,3,3,5,8,[[414,1,1,5,6],[415,2,2,6,8]]],[20,1,1,8,9,[[660,1,1,8,9]]],[21,1,1,9,10,[[677,1,1,9,10]]],[22,4,4,10,14,[[685,1,1,10,11],[700,2,2,11,13],[714,1,1,13,14]]],[33,1,1,14,15,[[901,1,1,14,15]]]],[8062,8132,9518,10041,10118,12321,12342,12343,17339,17631,17785,18061,18063,18332,22707]]],["fishpools",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17631]]],["pool",[15,13,[[9,4,2,0,2,[[268,3,1,0,1],[270,1,1,1,2]]],[10,1,1,2,3,[[312,1,1,2,3]]],[11,2,2,3,5,[[330,1,1,3,4],[332,1,1,4,5]]],[15,3,3,5,8,[[414,1,1,5,6],[415,2,2,6,8]]],[22,4,4,8,12,[[685,1,1,8,9],[700,2,2,9,11],[714,1,1,11,12]]],[33,1,1,12,13,[[901,1,1,12,13]]]],[8062,8132,9518,10041,10118,12321,12342,12343,17785,18061,18063,18332,22707]]],["pools",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17339]]]]},{"k":"H1296","v":[["*",[11,11,[[12,5,5,0,5,[[340,1,1,0,1],[343,1,1,1,2],[346,1,1,2,3],[352,2,2,3,5]]],[13,1,1,5,6,[[394,1,1,5,6]]],[15,3,3,6,9,[[415,2,2,6,8],[418,1,1,8,9]]],[37,2,2,9,11,[[911,2,2,9,11]]]],[10381,10493,10631,10808,10814,11776,12331,12357,12419,22879,22885]]],["Berachiah",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10493]]],["Berechiah",[10,10,[[12,4,4,0,4,[[340,1,1,0,1],[346,1,1,1,2],[352,2,2,2,4]]],[13,1,1,4,5,[[394,1,1,4,5]]],[15,3,3,5,8,[[415,2,2,5,7],[418,1,1,7,8]]],[37,2,2,8,10,[[911,2,2,8,10]]]],[10381,10631,10808,10814,11776,12331,12357,12419,22879,22885]]]]},{"k":"H1297","v":[["*",[5,5,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,4,4,1,5,[[851,1,1,1,2],[853,2,2,2,4],[854,1,1,4,5]]]],[12147,21786,21852,21860,21891]]],["But",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[851,1,1,1,2]]]],[12147,21786]]],["Nevertheless",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21852]]],["yet",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[854,1,1,1,2]]]],[21860,21891]]]]},{"k":"H1298","v":[["Bera",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[338]]]]},{"k":"H1299","v":[["forth",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16311]]]]},{"k":"H1300","v":[["*",[21,21,[[1,1,1,0,1,[[68,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[17,2,2,3,5,[[455,1,1,3,4],[473,1,1,4,5]]],[18,5,5,5,10,[[495,1,1,5,6],[554,1,1,6,7],[574,1,1,7,8],[612,1,1,8,9],[621,1,1,9,10]]],[23,2,2,10,12,[[754,1,1,10,11],[795,1,1,11,12]]],[25,4,4,12,16,[[802,1,1,12,13],[822,3,3,13,16]]],[26,1,1,16,17,[[859,1,1,16,17]]],[33,2,2,17,19,[[901,1,1,17,18],[902,1,1,18,19]]],[34,1,1,19,20,[[905,1,1,19,20]]],[37,1,1,20,21,[[919,1,1,20,21]]]],[2042,5799,8617,13351,13828,14132,15111,15482,16182,16311,19214,20228,20477,20954,20959,20972,22021,22703,22715,22779,23013]]],["+",[2,2,[[25,2,2,0,2,[[822,2,2,0,2]]]],[20954,20959]]],["glittering",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]],[33,1,1,2,3,[[902,1,1,2,3]]],[34,1,1,3,4,[[905,1,1,3,4]]]],[5799,20972,22715,22779]]],["lightning",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[621,1,1,1,2]]],[25,1,1,2,3,[[802,1,1,2,3]]],[26,1,1,3,4,[[859,1,1,3,4]]],[37,1,1,4,5,[[919,1,1,4,5]]]],[8617,16311,20477,22021,23013]]],["lightnings",[9,9,[[1,1,1,0,1,[[68,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]],[18,4,4,2,6,[[495,1,1,2,3],[554,1,1,3,4],[574,1,1,4,5],[612,1,1,5,6]]],[23,2,2,6,8,[[754,1,1,6,7],[795,1,1,7,8]]],[33,1,1,8,9,[[901,1,1,8,9]]]],[2042,13828,14132,15111,15482,16182,19214,20228,22703]]],["sword",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13351]]]]},{"k":"H1301","v":[["Barak",[13,12,[[6,13,12,0,12,[[214,10,9,0,9],[215,3,3,9,12]]]],[6605,6607,6608,6609,6611,6613,6614,6615,6621,6624,6635,6638]]]]},{"k":"H1302","v":[["Barkos",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12080,12475]]]]},{"k":"H1303","v":[["briers",[2,2,[[6,2,2,0,2,[[218,2,2,0,2]]]],[6726,6735]]]]},{"k":"H1304","v":[["carbuncle",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[25,1,1,2,3,[[829,1,1,2,3]]]],[2310,2674,21170]]]]},{"k":"H1305","v":[["*",[17,16,[[9,1,1,0,1,[[288,1,1,0,1]]],[12,3,3,1,4,[[344,1,1,1,2],[346,1,1,2,3],[353,1,1,3,4]]],[15,1,1,4,5,[[417,1,1,4,5]]],[17,1,1,5,6,[[468,1,1,5,6]]],[18,2,1,6,7,[[495,2,1,6,7]]],[20,1,1,7,8,[[661,1,1,7,8]]],[22,2,2,8,10,[[727,1,1,8,9],[730,1,1,9,10]]],[23,2,2,10,12,[[748,1,1,10,11],[795,1,1,11,12]]],[25,1,1,12,13,[[821,1,1,12,13]]],[26,2,2,13,15,[[860,1,1,13,14],[861,1,1,14,15]]],[35,1,1,15,16,[[908,1,1,15,16]]]],[8629,10575,10637,10861,12400,13653,14144,17377,18638,18707,19038,20223,20933,22071,22091,22829]]],["bright",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20223]]],["choice",[2,2,[[12,1,1,0,1,[[344,1,1,0,1]]],[15,1,1,1,2,[[417,1,1,1,2]]]],[10575,12400]]],["chosen",[2,2,[[12,2,2,0,2,[[346,1,1,0,1],[353,1,1,1,2]]]],[10637,10861]]],["clean",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18707]]],["cleanse",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19038]]],["clearly",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13653]]],["manifest",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17377]]],["out",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20933]]],["polished",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18638]]],["pure",[4,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,2,1,1,2,[[495,2,1,1,2]]],[35,1,1,2,3,[[908,1,1,2,3]]]],[8629,14144,22829]]],["purge",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22071]]],["purified",[1,1,[[26,1,1,0,1,[[861,1,1,0,1]]]],[22091]]]]},{"k":"H1306","v":[["Birsha",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[338]]]]},{"k":"H1307","v":[["Berothite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10712]]]]},{"k":"H1308","v":[["Besor",[3,3,[[8,3,3,0,3,[[265,3,3,0,3]]]],[7987,7988,7999]]]]},{"k":"H1309","v":[["*",[6,6,[[9,5,5,0,5,[[270,1,1,0,1],[284,4,4,1,5]]],[11,1,1,5,6,[[319,1,1,5,6]]]],[8130,8498,8500,8503,8505,9716]]],["+",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8498]]],["tidings",[5,5,[[9,4,4,0,4,[[270,1,1,0,1],[284,3,3,1,4]]],[11,1,1,4,5,[[319,1,1,4,5]]]],[8130,8500,8503,8505,9716]]]]},{"k":"H1310","v":[["*",[28,24,[[0,1,1,0,1,[[39,1,1,0,1]]],[1,6,5,1,6,[[61,1,1,1,2],[65,2,1,2,3],[72,1,1,3,4],[78,1,1,4,5],[83,1,1,5,6]]],[2,3,2,6,8,[[95,2,1,6,7],[97,1,1,7,8]]],[3,1,1,8,9,[[127,1,1,8,9]]],[4,2,2,9,11,[[166,1,1,9,10],[168,1,1,10,11]]],[8,2,2,11,13,[[237,2,2,11,13]]],[9,1,1,13,14,[[279,1,1,13,14]]],[10,1,1,14,15,[[309,1,1,14,15]]],[11,2,2,15,17,[[316,1,1,15,16],[318,1,1,16,17]]],[13,2,1,17,18,[[401,2,1,17,18]]],[24,1,1,18,19,[[800,1,1,18,19]]],[25,4,3,19,22,[[825,1,1,19,20],[847,3,2,20,22]]],[28,1,1,22,23,[[878,1,1,22,23]]],[37,1,1,23,24,[[924,1,1,23,24]]]],[1182,1825,1970,2163,2367,2522,2877,2948,4032,5311,5349,7253,7255,8325,9408,9641,9703,11979,20430,21061,21675,21679,22356,23089]]],["+",[8,8,[[1,2,2,0,2,[[61,1,1,0,1],[78,1,1,1,2]]],[2,1,1,2,3,[[97,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[9,1,1,4,5,[[279,1,1,4,5]]],[11,1,1,5,6,[[318,1,1,5,6]]],[25,2,2,6,8,[[847,2,2,6,8]]]],[1825,2367,2948,7255,8325,9703,21675,21679]]],["baked",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4032]]],["boil",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21679]]],["boiled",[1,1,[[10,1,1,0,1,[[309,1,1,0,1]]]],[9408]]],["forth",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1182]]],["ripe",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22356]]],["roast",[1,1,[[4,1,1,0,1,[[168,1,1,0,1]]]],[5349]]],["roasted",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11979]]],["seethe",[8,7,[[1,4,3,0,3,[[65,2,1,0,1],[72,1,1,1,2],[83,1,1,2,3]]],[4,1,1,3,4,[[166,1,1,3,4]]],[11,1,1,4,5,[[316,1,1,4,5]]],[25,1,1,5,6,[[825,1,1,5,6]]],[37,1,1,6,7,[[924,1,1,6,7]]]],[1970,2163,2522,5311,9641,21061,23089]]],["seething",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7253]]],["sod",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11979]]],["sodden",[3,2,[[2,2,1,0,1,[[95,2,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[2877,20430]]]]},{"k":"H1311","v":[["*",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[122,1,1,1,2]]]],[1825,3842]]],["+",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1825]]],["sodden",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3842]]]]},{"k":"H1312","v":[["Bishlam",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12117]]]]},{"k":"H1313","v":[["spice",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17599]]]]},{"k":"H1314","v":[["*",[29,25,[[1,6,4,0,4,[[74,1,1,0,1],[79,3,1,1,2],[84,2,2,2,4]]],[10,4,3,4,7,[[300,4,3,4,7]]],[11,1,1,7,8,[[332,1,1,7,8]]],[12,2,2,8,10,[[346,2,2,8,10]]],[13,6,5,10,15,[[375,4,3,10,13],[382,1,1,13,14],[398,1,1,14,15]]],[16,1,1,15,16,[[427,1,1,15,16]]],[21,6,6,16,22,[[674,3,3,16,19],[675,1,1,19,20],[676,1,1,20,21],[678,1,1,21,22]]],[22,2,2,22,24,[[681,1,1,22,23],[717,1,1,23,24]]],[25,1,1,24,25,[[828,1,1,24,25]]]],[2201,2405,2539,2559,9081,9089,9104,10111,10644,10645,11365,11373,11388,11523,11902,12736,17592,17596,17598,17611,17616,17654,17731,18414,21143]]],["odours",[2,2,[[13,1,1,0,1,[[382,1,1,0,1]]],[16,1,1,1,2,[[427,1,1,1,2]]]],[11523,12736]]],["smell",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17731]]],["spice",[2,2,[[1,1,1,0,1,[[84,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[2559,11373]]],["spices",[22,21,[[1,3,3,0,3,[[74,1,1,0,1],[79,1,1,1,2],[84,1,1,2,3]]],[10,4,3,3,6,[[300,4,3,3,6]]],[11,1,1,6,7,[[332,1,1,6,7]]],[12,2,2,7,9,[[346,2,2,7,9]]],[13,4,4,9,13,[[375,3,3,9,12],[398,1,1,12,13]]],[21,6,6,13,19,[[674,3,3,13,16],[675,1,1,16,17],[676,1,1,17,18],[678,1,1,18,19]]],[22,1,1,19,20,[[717,1,1,19,20]]],[25,1,1,20,21,[[828,1,1,20,21]]]],[2201,2405,2539,9081,9089,9104,10111,10644,10645,11365,11373,11388,11902,17592,17596,17598,17611,17616,17654,18414,21143]]],["sweet",[2,1,[[1,2,1,0,1,[[79,2,1,0,1]]]],[2405]]]]},{"k":"H1315","v":[["*",[7,7,[[0,6,6,0,6,[[25,1,1,0,1],[35,5,5,1,6]]],[10,1,1,6,7,[[294,1,1,6,7]]]],[726,1043,1044,1050,1053,1057,8859]]],["Bashemath",[6,6,[[0,6,6,0,6,[[25,1,1,0,1],[35,5,5,1,6]]]],[726,1043,1044,1050,1053,1057]]],["Basmath",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8859]]]]},{"k":"H1316","v":[["*",[60,53,[[3,3,2,0,2,[[137,2,1,0,1],[148,1,1,1,2]]],[4,16,13,2,15,[[153,1,1,2,3],[155,10,7,3,10],[156,2,2,10,12],[181,1,1,12,13],[184,1,1,13,14],[185,1,1,14,15]]],[5,15,13,15,28,[[195,1,1,15,16],[198,2,2,16,18],[199,6,4,18,22],[203,2,2,22,24],[206,1,1,24,25],[207,2,2,25,27],[208,1,1,27,28]]],[10,2,2,28,30,[[294,2,2,28,30]]],[11,1,1,30,31,[[322,1,1,30,31]]],[12,6,6,31,37,[[342,4,4,31,35],[343,2,2,35,37]]],[15,1,1,37,38,[[421,1,1,37,38]]],[18,6,5,38,43,[[499,1,1,38,39],[545,3,2,39,41],[612,1,1,41,42],[613,1,1,42,43]]],[22,2,2,43,45,[[680,1,1,43,44],[711,1,1,44,45]]],[23,2,2,45,47,[[766,1,1,45,46],[794,1,1,46,47]]],[25,2,2,47,49,[[828,1,1,47,48],[840,1,1,48,49]]],[29,1,1,49,50,[[882,1,1,49,50]]],[32,1,1,50,51,[[899,1,1,50,51]]],[33,1,1,51,52,[[900,1,1,51,52]]],[37,1,1,52,53,[[921,1,1,52,53]]]],[4373,4751,4896,4976,4978,4979,4985,4986,4988,4989,5047,5051,5686,5772,5832,6047,6134,6135,6165,6166,6184,6185,6276,6280,6380,6387,6408,6433,8857,8863,9826,10439,10440,10444,10451,10516,10525,12533,14216,14915,14922,16186,16216,17698,18288,19474,20185,21127,21466,22411,22678,22688,23030]]],["+",[4,4,[[4,1,1,0,1,[[155,1,1,0,1]]],[12,1,1,1,2,[[342,1,1,1,2]]],[18,1,1,2,3,[[545,1,1,2,3]]],[25,1,1,3,4,[[828,1,1,3,4]]]],[4989,10451,14922,21127]]],["Bashan",[56,49,[[3,3,2,0,2,[[137,2,1,0,1],[148,1,1,1,2]]],[4,15,12,2,14,[[153,1,1,2,3],[155,9,6,3,9],[156,2,2,9,11],[181,1,1,11,12],[184,1,1,12,13],[185,1,1,13,14]]],[5,15,13,14,27,[[195,1,1,14,15],[198,2,2,15,17],[199,6,4,17,21],[203,2,2,21,23],[206,1,1,23,24],[207,2,2,24,26],[208,1,1,26,27]]],[10,2,2,27,29,[[294,2,2,27,29]]],[11,1,1,29,30,[[322,1,1,29,30]]],[12,5,5,30,35,[[342,3,3,30,33],[343,2,2,33,35]]],[15,1,1,35,36,[[421,1,1,35,36]]],[18,5,4,36,40,[[499,1,1,36,37],[545,2,1,37,38],[612,1,1,38,39],[613,1,1,39,40]]],[22,2,2,40,42,[[680,1,1,40,41],[711,1,1,41,42]]],[23,2,2,42,44,[[766,1,1,42,43],[794,1,1,43,44]]],[25,1,1,44,45,[[840,1,1,44,45]]],[29,1,1,45,46,[[882,1,1,45,46]]],[32,1,1,46,47,[[899,1,1,46,47]]],[33,1,1,47,48,[[900,1,1,47,48]]],[37,1,1,48,49,[[921,1,1,48,49]]]],[4373,4751,4896,4976,4978,4979,4985,4986,4988,5047,5051,5686,5772,5832,6047,6134,6135,6165,6166,6184,6185,6276,6280,6380,6387,6408,6433,8857,8863,9826,10439,10440,10444,10516,10525,12533,14216,14915,16186,16216,17698,18288,19474,20185,21466,22411,22678,22688,23030]]]]},{"k":"H1317","v":[["shame",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22231]]]]},{"k":"H1318","v":[["treading",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22434]]]]},{"k":"H1319","v":[["*",[24,21,[[8,2,2,0,2,[[239,1,1,0,1],[266,1,1,1,2]]],[9,7,6,2,8,[[267,1,1,2,3],[270,1,1,3,4],[284,5,4,4,8]]],[10,1,1,8,9,[[291,1,1,8,9]]],[12,2,2,9,11,[[347,1,1,9,10],[353,1,1,10,11]]],[18,3,3,11,14,[[517,1,1,11,12],[545,1,1,12,13],[573,1,1,13,14]]],[22,7,5,14,19,[[718,2,1,14,15],[719,1,1,15,16],[730,2,1,16,17],[738,1,1,17,18],[739,1,1,18,19]]],[23,1,1,19,20,[[764,1,1,19,20]]],[33,1,1,20,21,[[900,1,1,20,21]]]],[7314,8018,8042,8130,8497,8498,8504,8509,8759,10668,10843,14534,14911,15467,18429,18478,18703,18827,18844,19437,22699]]],["+",[4,4,[[9,2,2,0,2,[[284,2,2,0,2]]],[10,1,1,2,3,[[291,1,1,2,3]]],[12,1,1,3,4,[[347,1,1,3,4]]]],[8497,8498,8759,10668]]],["Tidings",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8509]]],["forth",[3,3,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[573,1,1,1,2]]],[22,1,1,2,3,[[738,1,1,2,3]]]],[10843,15467,18827]]],["messenger",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7314]]],["preached",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14534]]],["publish",[2,2,[[8,1,1,0,1,[[266,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]]],[8018,8042]]],["published",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14911]]],["tidings",[11,9,[[9,3,3,0,3,[[270,1,1,0,1],[284,2,2,1,3]]],[22,6,4,3,7,[[718,2,1,3,4],[719,1,1,4,5],[730,2,1,5,6],[739,1,1,6,7]]],[23,1,1,7,8,[[764,1,1,7,8]]],[33,1,1,8,9,[[900,1,1,8,9]]]],[8130,8498,8504,18429,18478,18703,18844,19437,22699]]]]},{"k":"H1320","v":[["*",[270,241,[[0,33,31,0,31,[[1,4,3,0,3],[5,5,5,3,8],[6,3,3,8,11],[7,1,1,11,12],[8,6,5,12,17],[16,6,6,17,23],[28,1,1,23,24],[36,1,1,24,25],[39,1,1,25,26],[40,5,5,26,31]]],[1,14,14,31,45,[[53,1,1,31,32],[61,2,2,32,34],[65,3,3,34,37],[70,1,1,37,38],[71,1,1,38,39],[77,1,1,39,40],[78,4,4,40,44],[79,1,1,44,45]]],[2,61,51,45,96,[[93,1,1,45,46],[95,2,2,46,48],[96,8,6,48,54],[97,3,3,54,57],[98,1,1,57,58],[100,2,2,58,60],[101,1,1,60,61],[102,17,14,61,75],[103,1,1,75,76],[104,7,6,76,82],[105,6,5,82,87],[106,5,3,87,90],[107,1,1,90,91],[108,1,1,91,92],[110,1,1,92,93],[111,1,1,93,94],[114,1,1,94,95],[115,2,1,95,96]]],[3,17,14,96,110,[[124,1,1,96,97],[127,8,5,97,102],[128,1,1,102,103],[132,1,1,103,104],[134,2,2,104,106],[135,3,3,106,109],[143,1,1,109,110]]],[4,13,10,110,120,[[157,1,1,110,111],[164,7,4,111,115],[166,1,1,115,116],[168,1,1,116,117],[180,2,2,117,119],[184,1,1,119,120]]],[6,6,5,120,125,[[216,4,3,120,123],[218,1,1,123,124],[219,1,1,124,125]]],[8,4,3,125,128,[[237,3,2,125,127],[252,1,1,127,128]]],[9,3,3,128,131,[[271,1,1,128,129],[285,2,2,129,131]]],[10,4,3,131,134,[[307,2,1,131,132],[309,1,1,132,133],[311,1,1,133,134]]],[11,6,5,134,139,[[316,1,1,134,135],[317,3,2,135,137],[318,1,1,137,138],[321,1,1,138,139]]],[12,1,1,139,140,[[348,1,1,139,140]]],[13,1,1,140,141,[[398,1,1,140,141]]],[15,2,1,141,142,[[417,2,1,141,142]]],[17,18,18,142,160,[[437,1,1,142,143],[439,1,1,143,144],[441,1,1,144,145],[442,1,1,145,146],[445,2,2,146,148],[447,1,1,148,149],[448,1,1,149,150],[449,1,1,150,151],[454,3,3,151,154],[456,1,1,154,155],[466,1,1,155,156],[468,2,2,156,158],[469,1,1,158,159],[476,1,1,159,160]]],[18,16,16,160,176,[[493,1,1,160,161],[504,1,1,161,162],[515,2,2,162,164],[527,1,1,164,165],[533,1,1,165,166],[540,1,1,166,167],[542,1,1,167,168],[555,1,1,168,169],[556,1,1,169,170],[561,1,1,170,171],[579,1,1,171,172],[586,1,1,172,173],[596,1,1,173,174],[613,1,1,174,175],[622,1,1,175,176]]],[19,4,4,176,180,[[631,1,1,176,177],[632,1,1,177,178],[641,1,1,178,179],[650,1,1,179,180]]],[20,5,5,180,185,[[660,1,1,180,181],[662,1,1,181,182],[663,1,1,182,183],[669,1,1,183,184],[670,1,1,184,185]]],[22,17,16,185,201,[[687,1,1,185,186],[688,1,1,186,187],[695,1,1,187,188],[700,1,1,188,189],[709,1,1,189,190],[718,2,2,190,192],[722,2,2,192,194],[727,2,1,194,195],[736,1,1,195,196],[743,1,1,196,197],[744,4,4,197,201]]],[23,10,8,201,209,[[751,1,1,201,202],[755,1,1,202,203],[756,1,1,203,204],[761,1,1,204,205],[763,3,1,205,206],[769,1,1,206,207],[776,1,1,207,208],[789,1,1,208,209]]],[24,1,1,209,210,[[799,1,1,209,210]]],[25,24,21,210,231,[[805,1,1,210,211],[811,1,1,211,212],[812,5,4,212,216],[817,1,1,216,217],[821,1,1,217,218],[822,2,2,218,220],[824,2,1,220,221],[825,1,1,221,222],[833,1,1,222,223],[837,2,1,223,224],[838,2,2,224,226],[840,2,2,226,228],[841,1,1,228,229],[845,2,2,229,231]]],[26,2,2,231,233,[[850,1,1,231,232],[859,1,1,232,233]]],[27,1,1,233,234,[[869,1,1,233,234]]],[28,1,1,234,235,[[877,1,1,234,235]]],[32,1,1,235,236,[[895,1,1,235,236]]],[36,1,1,236,237,[[910,1,1,236,237]]],[37,4,4,237,241,[[912,1,1,237,238],[921,2,2,238,240],[924,1,1,240,241]]]],[51,53,54,140,149,150,154,156,174,175,180,200,209,216,220,221,222,408,410,411,420,421,422,809,1110,1191,1197,1198,1199,1213,1214,1608,1824,1862,1950,1955,1959,2105,2144,2335,2350,2367,2368,2370,2414,2806,2859,2876,2894,2896,2897,2898,2899,2900,2934,2948,2949,2964,3005,3008,3047,3054,3055,3056,3062,3063,3065,3066,3067,3068,3070,3076,3090,3091,3095,3120,3170,3171,3175,3181,3184,3187,3205,3225,3227,3228,3229,3246,3249,3251,3257,3309,3350,3375,3518,3553,3946,4028,4037,4042,4045,4057,4071,4216,4272,4275,4294,4296,4297,4570,5079,5255,5260,5263,5267,5298,5346,5664,5666,5800,6673,6674,6675,6726,6756,7253,7255,7662,8133,8523,8524,9323,9408,9478,9637,9657,9661,9704,9792,10674,11883,12387,12896,12945,12990,13013,13090,13097,13138,13167,13203,13317,13319,13323,13361,13619,13671,13675,13698,13911,14101,14287,14493,14497,14681,14759,14840,14862,15152,15187,15261,15526,15779,16018,16221,16341,16512,16528,16802,17064,17336,17386,17403,17523,17535,17849,17868,17987,18065,18253,18425,18426,18549,18552,18662,18793,18901,18938,18939,18945,18946,19140,19241,19261,19362,19416,19565,19758,20045,20358,20543,20645,20658,20662,20666,20674,20788,20943,20948,20949,21027,21066,21253,21385,21403,21405,21465,21466,21520,21606,21608,21752,22018,22207,22339,22611,22867,22912,23037,23044,23080]]],["+",[25,25,[[0,6,6,0,6,[[1,1,1,0,1],[40,5,5,1,6]]],[1,2,2,6,8,[[77,1,1,6,7],[78,1,1,7,8]]],[2,6,6,8,14,[[96,3,3,8,11],[100,2,2,11,13],[104,1,1,13,14]]],[4,2,2,14,16,[[166,1,1,14,15],[180,1,1,15,16]]],[8,1,1,16,17,[[237,1,1,16,17]]],[17,4,4,17,21,[[447,1,1,17,18],[454,2,2,18,20],[466,1,1,20,21]]],[20,1,1,21,22,[[669,1,1,21,22]]],[22,1,1,22,23,[[736,1,1,22,23]]],[25,2,2,23,25,[[812,1,1,23,24],[837,1,1,24,25]]]],[53,1197,1198,1199,1213,1214,2335,2370,2896,2897,2900,3005,3008,3170,5298,5666,7255,13138,13319,13323,13619,17523,18793,20674,21385]]],["body",[2,2,[[22,1,1,0,1,[[688,1,1,0,1]]],[25,1,1,1,2,[[811,1,1,1,2]]]],[17868,20645]]],["flesh",[238,214,[[0,27,26,0,26,[[1,3,3,0,3],[5,5,5,3,8],[6,3,3,8,11],[7,1,1,11,12],[8,6,5,12,17],[16,6,6,17,23],[28,1,1,23,24],[36,1,1,24,25],[39,1,1,25,26]]],[1,12,12,26,38,[[53,1,1,26,27],[61,2,2,27,29],[65,3,3,29,32],[70,1,1,32,33],[71,1,1,33,34],[78,3,3,34,37],[79,1,1,37,38]]],[2,52,43,38,81,[[93,1,1,38,39],[95,2,2,39,41],[96,4,3,41,44],[97,3,3,44,47],[98,1,1,47,48],[101,1,1,48,49],[102,17,14,49,63],[103,1,1,63,64],[104,6,5,64,69],[105,6,5,69,74],[106,5,3,74,77],[108,1,1,77,78],[110,1,1,78,79],[111,1,1,79,80],[115,2,1,80,81]]],[3,17,14,81,95,[[124,1,1,81,82],[127,8,5,82,87],[128,1,1,87,88],[132,1,1,88,89],[134,2,2,89,91],[135,3,3,91,94],[143,1,1,94,95]]],[4,11,8,95,103,[[157,1,1,95,96],[164,7,4,96,100],[168,1,1,100,101],[180,1,1,101,102],[184,1,1,102,103]]],[6,6,5,103,108,[[216,4,3,103,106],[218,1,1,106,107],[219,1,1,107,108]]],[8,3,3,108,111,[[237,2,2,108,110],[252,1,1,110,111]]],[9,3,3,111,114,[[271,1,1,111,112],[285,2,2,112,114]]],[10,4,3,114,117,[[307,2,1,114,115],[309,1,1,115,116],[311,1,1,116,117]]],[11,6,5,117,122,[[316,1,1,117,118],[317,3,2,118,120],[318,1,1,120,121],[321,1,1,121,122]]],[12,1,1,122,123,[[348,1,1,122,123]]],[13,1,1,123,124,[[398,1,1,123,124]]],[15,2,1,124,125,[[417,2,1,124,125]]],[17,14,14,125,139,[[437,1,1,125,126],[439,1,1,126,127],[441,1,1,127,128],[442,1,1,128,129],[445,2,2,129,131],[448,1,1,131,132],[449,1,1,132,133],[454,1,1,133,134],[456,1,1,134,135],[468,2,2,135,137],[469,1,1,137,138],[476,1,1,138,139]]],[18,15,15,139,154,[[493,1,1,139,140],[504,1,1,140,141],[515,2,2,141,143],[527,1,1,143,144],[533,1,1,144,145],[540,1,1,145,146],[542,1,1,146,147],[555,1,1,147,148],[556,1,1,148,149],[561,1,1,149,150],[586,1,1,150,151],[596,1,1,151,152],[613,1,1,152,153],[622,1,1,153,154]]],[19,4,4,154,158,[[631,1,1,154,155],[632,1,1,155,156],[641,1,1,156,157],[650,1,1,157,158]]],[20,3,3,158,161,[[662,1,1,158,159],[663,1,1,159,160],[670,1,1,160,161]]],[22,15,14,161,175,[[687,1,1,161,162],[695,1,1,162,163],[700,1,1,163,164],[709,1,1,164,165],[718,2,2,165,167],[722,2,2,167,169],[727,2,1,169,170],[743,1,1,170,171],[744,4,4,171,175]]],[23,10,8,175,183,[[751,1,1,175,176],[755,1,1,176,177],[756,1,1,177,178],[761,1,1,178,179],[763,3,1,179,180],[769,1,1,180,181],[776,1,1,181,182],[789,1,1,182,183]]],[24,1,1,183,184,[[799,1,1,183,184]]],[25,21,20,184,204,[[805,1,1,184,185],[812,4,4,185,189],[817,1,1,189,190],[821,1,1,190,191],[822,2,2,191,193],[824,2,1,193,194],[825,1,1,194,195],[833,1,1,195,196],[837,1,1,196,197],[838,2,2,197,199],[840,2,2,199,201],[841,1,1,201,202],[845,2,2,202,204]]],[26,2,2,204,206,[[850,1,1,204,205],[859,1,1,205,206]]],[27,1,1,206,207,[[869,1,1,206,207]]],[28,1,1,207,208,[[877,1,1,207,208]]],[32,1,1,208,209,[[895,1,1,208,209]]],[36,1,1,209,210,[[910,1,1,209,210]]],[37,4,4,210,214,[[912,1,1,210,211],[921,2,2,211,213],[924,1,1,213,214]]]],[51,53,54,140,149,150,154,156,174,175,180,200,209,216,220,221,222,408,410,411,420,421,422,809,1110,1191,1608,1824,1862,1950,1955,1959,2105,2144,2350,2367,2368,2414,2806,2859,2876,2894,2898,2899,2934,2948,2949,2964,3047,3054,3055,3056,3062,3063,3065,3066,3067,3068,3070,3076,3090,3091,3095,3120,3171,3175,3181,3184,3187,3205,3225,3227,3228,3229,3246,3249,3251,3309,3350,3375,3553,3946,4028,4037,4042,4045,4057,4071,4216,4272,4275,4294,4296,4297,4570,5079,5255,5260,5263,5267,5346,5664,5800,6673,6674,6675,6726,6756,7253,7255,7662,8133,8523,8524,9323,9408,9478,9637,9657,9661,9704,9792,10674,11883,12387,12896,12945,12990,13013,13090,13097,13167,13203,13317,13361,13671,13675,13698,13911,14101,14287,14493,14497,14681,14759,14840,14862,15152,15187,15261,15779,16018,16221,16341,16512,16528,16802,17064,17386,17403,17535,17849,17987,18065,18253,18425,18426,18549,18552,18662,18901,18938,18939,18945,18946,19140,19241,19261,19362,19416,19565,19758,20045,20358,20543,20658,20662,20666,20674,20788,20943,20948,20949,21027,21066,21253,21385,21403,21405,21465,21466,21520,21606,21608,21752,22018,22207,22339,22611,22867,22912,23037,23044,23080]]],["kin",[2,2,[[2,2,2,0,2,[[107,1,1,0,1],[114,1,1,1,2]]]],[3257,3518]]],["myself",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17336]]],["skin",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15526]]],["thereof",[1,1,[[2,1,1,0,1,[[96,1,1,0,1]]]],[2898]]]]},{"k":"H1321","v":[["flesh",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[853,1,1,1,2],[856,1,1,2,3]]]],[21769,21849,21938]]]]},{"k":"H1322","v":[["*",[30,29,[[8,2,1,0,1,[[255,2,1,0,1]]],[13,1,1,1,2,[[398,1,1,1,2]]],[14,1,1,2,3,[[411,1,1,2,3]]],[17,1,1,3,4,[[443,1,1,3,4]]],[18,7,7,4,11,[[512,1,1,4,5],[517,1,1,5,6],[521,1,1,6,7],[546,1,1,7,8],[547,1,1,8,9],[586,1,1,9,10],[609,1,1,10,11]]],[22,5,5,11,16,[[708,2,2,11,13],[720,1,1,13,14],[732,1,1,14,15],[739,1,1,15,16]]],[23,6,6,16,22,[[746,1,1,16,17],[747,2,2,17,19],[751,1,1,19,20],[755,1,1,20,21],[764,1,1,21,22]]],[26,2,2,22,24,[[858,2,2,22,24]]],[27,1,1,24,25,[[870,1,1,24,25]]],[32,1,1,25,26,[[893,1,1,25,26]]],[34,1,1,26,27,[[904,1,1,26,27]]],[35,2,2,27,29,[[908,2,2,27,29]]]],[7760,11896,12244,13051,14436,14540,14586,14954,14974,15784,16169,18220,18222,18497,18727,18850,18991,19026,19027,19138,19239,19440,21995,21996,22218,22590,22758,22825,22839]]],["+",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18497]]],["ashamed",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18991]]],["confusion",[7,6,[[8,2,1,0,1,[[255,2,1,0,1]]],[14,1,1,1,2,[[411,1,1,1,2]]],[18,1,1,2,3,[[586,1,1,2,3]]],[23,1,1,3,4,[[751,1,1,3,4]]],[26,2,2,4,6,[[858,2,2,4,6]]]],[7760,12244,15784,19138,21995,21996]]],["shame",[20,20,[[13,1,1,0,1,[[398,1,1,0,1]]],[17,1,1,1,2,[[443,1,1,1,2]]],[18,6,6,2,8,[[512,1,1,2,3],[517,1,1,3,4],[521,1,1,4,5],[546,1,1,5,6],[547,1,1,6,7],[609,1,1,7,8]]],[22,4,4,8,12,[[708,2,2,8,10],[732,1,1,10,11],[739,1,1,11,12]]],[23,3,3,12,15,[[747,2,2,12,14],[764,1,1,14,15]]],[27,1,1,15,16,[[870,1,1,15,16]]],[32,1,1,16,17,[[893,1,1,16,17]]],[34,1,1,17,18,[[904,1,1,17,18]]],[35,2,2,18,20,[[908,2,2,18,20]]]],[11896,13051,14436,14540,14586,14954,14974,16169,18220,18222,18727,18850,19026,19027,19440,22218,22590,22758,22825,22839]]],["thing",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19239]]]]},{"k":"H1323","v":[["*",[587,497,[[0,110,90,0,90,[[4,9,9,0,9],[5,3,3,9,12],[10,9,9,12,21],[16,1,1,21,22],[18,8,7,22,29],[19,2,1,29,30],[23,8,7,30,37],[24,1,1,37,38],[25,2,1,38,39],[26,3,1,39,40],[27,5,5,40,45],[28,8,8,45,53],[29,2,2,53,55],[30,10,7,55,62],[33,14,10,62,72],[35,12,7,72,79],[36,1,1,79,80],[37,2,2,80,82],[40,2,2,82,84],[45,7,5,84,89],[48,1,1,89,90]]],[1,23,22,90,112,[[50,2,2,90,92],[51,9,9,92,101],[52,1,1,101,102],[55,2,2,102,104],[59,1,1,104,105],[69,1,1,105,106],[70,4,4,106,110],[81,1,1,110,111],[83,2,1,111,112]]],[2,23,16,112,128,[[99,1,1,112,113],[100,1,1,113,114],[101,1,1,114,115],[103,1,1,115,116],[107,10,4,116,120],[108,1,1,120,121],[109,2,1,121,122],[110,2,2,122,124],[111,2,2,124,126],[113,1,1,126,127],[115,1,1,127,128]]],[3,26,24,128,152,[[122,1,1,128,129],[131,1,1,129,130],[134,2,2,130,132],[137,3,3,132,135],[141,3,3,135,138],[142,4,3,138,141],[143,5,4,141,145],[146,1,1,145,146],[148,1,1,146,147],[152,5,5,147,152]]],[4,22,19,152,171,[[157,1,1,152,153],[159,2,1,153,154],[164,3,3,154,157],[165,1,1,157,158],[166,1,1,158,159],[168,2,2,159,161],[170,1,1,161,162],[174,3,2,162,164],[175,1,1,164,165],[179,2,1,165,166],[180,4,4,166,170],[184,1,1,170,171]]],[5,16,9,171,180,[[193,1,1,171,172],[201,5,4,172,176],[203,10,4,176,180]]],[6,27,17,180,197,[[211,7,3,180,183],[213,2,1,183,184],[221,7,4,184,188],[222,2,1,188,189],[224,3,3,189,192],[229,1,1,192,193],[231,5,4,193,197]]],[7,11,11,197,208,[[232,3,3,197,200],[233,3,3,200,203],[234,5,5,203,208]]],[8,16,16,208,224,[[236,2,2,208,210],[237,1,1,210,211],[243,1,1,211,212],[249,2,2,212,214],[252,1,1,214,215],[253,5,5,215,220],[260,1,1,220,221],[265,3,3,221,224]]],[9,20,18,224,242,[[267,3,2,224,226],[269,3,3,226,229],[271,1,1,229,230],[272,3,3,230,233],[277,1,1,233,234],[278,1,1,234,235],[279,1,1,235,236],[280,1,1,236,237],[283,1,1,237,238],[285,1,1,238,239],[287,4,3,239,242]]],[10,11,11,242,253,[[293,1,1,242,243],[294,2,2,243,245],[297,1,1,245,246],[299,2,2,246,248],[301,1,1,248,249],[305,2,2,249,251],[306,1,1,251,252],[312,1,1,252,253]]],[11,17,16,253,269,[[320,2,2,253,255],[321,1,1,255,256],[323,1,1,256,257],[326,1,1,257,258],[327,1,1,258,259],[329,1,1,259,260],[330,1,1,260,261],[331,2,1,261,262],[333,1,1,262,263],[334,1,1,263,264],[335,3,3,264,267],[336,2,2,267,269]]],[12,29,22,269,291,[[338,2,1,269,270],[339,6,6,270,276],[340,2,2,276,278],[341,2,2,278,280],[342,1,1,280,281],[344,10,4,281,285],[345,1,1,285,286],[351,1,1,286,287],[352,1,1,287,288],[355,1,1,288,289],[360,1,1,289,290],[362,1,1,290,291]]],[13,27,20,291,311,[[368,1,1,291,292],[374,1,1,292,293],[377,5,3,293,296],[379,5,3,296,299],[386,1,1,299,300],[387,1,1,300,301],[388,3,2,301,303],[390,1,1,303,304],[391,1,1,304,305],[393,1,1,305,306],[394,4,2,306,308],[395,2,2,308,310],[397,1,1,310,311]]],[14,4,3,311,314,[[404,1,1,311,312],[411,3,2,312,314]]],[15,18,14,314,328,[[415,1,1,314,315],[416,1,1,315,316],[417,3,2,316,318],[418,1,1,318,319],[419,1,1,319,320],[422,3,2,320,322],[423,6,5,322,327],[425,2,1,327,328]]],[16,5,3,328,331,[[427,4,2,328,330],[434,1,1,330,331]]],[17,6,6,331,337,[[436,3,3,331,334],[465,1,1,334,335],[477,2,2,335,337]]],[18,12,12,337,349,[[486,1,1,337,338],[494,1,1,338,339],[522,4,4,339,343],[525,1,1,343,344],[574,1,1,344,345],[583,2,2,345,347],[614,1,1,347,348],[621,1,1,348,349]]],[19,2,2,349,351,[[657,1,1,349,350],[658,1,1,350,351]]],[20,1,1,351,352,[[670,1,1,351,352]]],[21,11,11,352,363,[[671,1,1,352,353],[672,2,2,353,355],[673,3,3,355,358],[675,2,2,358,360],[676,1,1,360,361],[677,1,1,361,362],[678,1,1,362,363]]],[22,25,23,363,386,[[679,1,1,363,364],[681,2,2,364,366],[682,1,1,366,367],[688,1,1,367,368],[691,1,1,368,369],[694,2,2,369,371],[700,1,1,371,372],[701,2,2,372,374],[710,1,1,374,375],[712,1,1,375,376],[715,2,1,376,377],[721,2,2,377,379],[725,3,2,379,381],[727,1,1,381,382],[730,1,1,382,383],[734,1,1,383,384],[738,1,1,384,385],[740,1,1,385,386]]],[23,41,39,386,425,[[747,1,1,386,387],[748,2,2,387,389],[749,1,1,389,390],[750,3,3,390,393],[751,1,1,393,394],[752,4,4,394,398],[753,3,3,398,401],[755,1,1,401,402],[758,2,2,402,404],[760,2,2,404,406],[763,1,1,406,407],[773,3,1,407,408],[775,1,1,408,409],[776,1,1,409,410],[779,1,1,410,411],[785,1,1,411,412],[787,1,1,412,413],[790,3,3,413,416],[792,2,2,416,418],[793,3,3,418,421],[794,2,2,421,423],[795,1,1,423,424],[796,1,1,424,425]]],[24,22,19,425,444,[[797,2,2,425,427],[798,12,10,427,437],[799,2,2,437,439],[800,6,5,439,444]]],[25,37,31,444,475,[[814,1,1,444,445],[815,4,4,445,449],[817,17,11,449,460],[823,1,1,460,461],[824,5,5,461,466],[825,2,2,466,468],[827,2,2,468,470],[828,1,1,470,471],[831,1,1,471,472],[833,2,2,472,474],[845,1,1,474,475]]],[26,2,2,475,477,[[860,2,2,475,477]]],[27,4,4,477,481,[[862,2,2,477,479],[865,2,2,479,481]]],[28,2,2,481,483,[[877,1,1,481,482],[878,1,1,482,483]]],[29,1,1,483,484,[[885,1,1,483,484]]],[32,8,7,484,491,[[893,2,2,484,486],[896,4,3,486,489],[897,1,1,489,490],[899,1,1,490,491]]],[35,3,2,491,493,[[908,3,2,491,493]]],[37,4,3,493,496,[[912,2,2,493,495],[919,2,1,495,496]]],[38,1,1,496,497,[[926,1,1,496,497]]]],[109,112,115,118,121,124,127,131,135,138,139,141,277,279,281,283,285,287,289,291,295,414,465,469,471,472,473,487,493,507,594,604,614,615,628,638,639,678,726,773,774,775,779,781,782,801,805,811,813,818,819,823,824,843,851,899,901,904,914,916,923,928,981,983,985,987,988,989,996,997,999,1001,1042,1043,1046,1054,1058,1065,1079,1118,1121,1131,1240,1245,1393,1401,1404,1406,1411,1495,1548,1554,1555,1559,1561,1562,1563,1564,1570,1574,1575,1601,1678,1680,1786,2061,2081,2084,2086,2108,2440,2512,2991,3013,3050,3121,3260,3261,3262,3268,3310,3335,3347,3354,3381,3382,3457,3553,3837,4180,4268,4276,4365,4369,4372,4472,4486,4489,4522,4535,4548,4555,4561,4562,4563,4664,4760,4881,4885,4887,4889,4890,5067,5114,5252,5258,5271,5278,5305,5353,5356,5394,5486,5487,5517,5607,5643,5652,5664,5667,5777,6000,6218,6219,6247,6249,6278,6281,6286,6291,6521,6522,6536,6574,6855,6863,6864,6869,6878,6910,6911,6912,7048,7103,7109,7120,7123,7138,7139,7140,7151,7157,7171,7173,7182,7183,7188,7190,7216,7228,7261,7382,7557,7558,7643,7693,7695,7696,7703,7704,7905,7981,7984,7997,8042,8046,8084,8088,8094,8145,8173,8177,8180,8262,8289,8335,8383,8474,8516,8588,8590,8591,8817,8855,8859,8942,9067,9075,9109,9251,9259,9314,9522,9745,9753,9790,9831,9905,9958,10000,10026,10082,10138,10146,10175,10196,10201,10210,10220,10302,10309,10327,10329,10340,10341,10355,10363,10366,10403,10412,10444,10550,10559,10563,10564,10587,10777,10820,10891,11005,11051,11225,11357,11432,11434,11435,11455,11472,11474,11618,11630,11646,11655,11680,11722,11756,11772,11782,11792,11800,11872,12088,12239,12249,12339,12373,12384,12387,12419,12483,12577,12579,12613,12615,12616,12618,12619,12696,12731,12739,12863,12871,12882,12887,13586,13935,13937,14035,14111,14606,14607,14609,14610,14645,15486,15688,15689,16230,16317,17266,17313,17527,17542,17556,17561,17576,17581,17582,17606,17614,17623,17628,17644,17662,17723,17724,17737,17880,17927,17970,17971,18056,18087,18089,18268,18316,18374,18511,18525,18600,18604,18658,18698,18758,18825,18865,19026,19038,19058,19075,19091,19112,19115,19150,19164,19172,19174,19175,19176,19182,19195,19248,19309,19310,19338,19339,19416,19641,19713,19766,19831,19967,20003,20056,20064,20069,20098,20126,20129,20130,20131,20205,20208,20245,20277,20316,20325,20333,20334,20336,20337,20340,20342,20343,20345,20347,20350,20402,20405,20423,20426,20430,20441,20442,20725,20747,20749,20751,20753,20782,20789,20806,20807,20808,20810,20811,20815,20817,20819,20823,20987,21009,21011,21017,21032,21054,21077,21081,21106,21108,21127,21222,21264,21266,21624,22042,22053,22097,22100,22146,22147,22339,22351,22481,22587,22592,22628,22630,22633,22634,22670,22830,22834,22906,22909,23008,23114]]],["+",[34,33,[[0,9,8,0,8,[[23,2,2,0,2],[26,2,1,2,3],[27,3,3,3,6],[28,1,1,6,7],[35,1,1,7,8]]],[1,2,2,8,10,[[55,1,1,8,9],[83,1,1,9,10]]],[2,1,1,10,11,[[100,1,1,10,11]]],[4,2,2,11,13,[[166,1,1,11,12],[175,1,1,12,13]]],[6,5,5,13,18,[[224,2,2,13,15],[231,3,3,15,18]]],[8,1,1,18,19,[[236,1,1,18,19]]],[12,1,1,19,20,[[339,1,1,19,20]]],[14,2,2,20,22,[[404,1,1,20,21],[411,1,1,21,22]]],[15,3,3,22,25,[[417,1,1,22,23],[419,1,1,23,24],[425,1,1,24,25]]],[17,1,1,25,26,[[465,1,1,25,26]]],[18,1,1,26,27,[[494,1,1,26,27]]],[22,4,4,27,31,[[691,1,1,27,28],[712,1,1,28,29],[721,1,1,29,30],[734,1,1,30,31]]],[23,1,1,31,32,[[794,1,1,31,32]]],[32,1,1,32,33,[[893,1,1,32,33]]]],[594,628,773,774,775,779,824,1042,1680,2512,3013,5305,5517,6910,6911,7109,7120,7123,7228,10309,12088,12239,12387,12483,12696,13586,14111,17927,18316,18525,18758,20205,22587]]],["apple",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20350]]],["branches",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1495]]],["company",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21127]]],["daughter",[276,247,[[0,44,37,0,37,[[10,1,1,0,1],[19,2,1,1,2],[23,5,4,2,6],[24,1,1,6,7],[25,2,1,7,8],[27,1,1,8,9],[28,6,6,9,15],[29,1,1,15,16],[33,7,7,16,23],[35,10,6,23,29],[37,2,2,29,31],[40,2,2,31,33],[45,4,4,33,37]]],[1,13,13,37,50,[[50,2,2,37,39],[51,7,7,39,46],[55,1,1,46,47],[69,1,1,47,48],[70,2,2,48,50]]],[2,17,12,50,62,[[101,1,1,50,51],[107,8,4,51,55],[108,1,1,55,56],[109,2,1,56,57],[110,2,2,57,59],[111,2,2,59,61],[113,1,1,61,62]]],[3,8,8,62,70,[[141,2,2,62,64],[142,2,2,64,66],[143,2,2,66,68],[146,1,1,68,69],[152,1,1,69,70]]],[4,13,11,70,81,[[157,1,1,70,71],[159,2,1,71,72],[164,1,1,72,73],[165,1,1,73,74],[168,2,2,74,76],[170,1,1,76,77],[174,2,2,77,79],[179,2,1,79,80],[180,1,1,80,81]]],[5,2,2,81,83,[[201,2,2,81,83]]],[6,8,7,83,90,[[211,2,2,83,85],[221,4,3,85,88],[229,1,1,88,89],[231,1,1,89,90]]],[7,8,8,90,98,[[233,3,3,90,93],[234,5,5,93,98]]],[8,8,8,98,106,[[249,1,1,98,99],[252,1,1,99,100],[253,5,5,100,105],[260,1,1,105,106]]],[9,14,13,106,119,[[269,3,3,106,109],[272,3,3,109,112],[277,1,1,112,113],[278,1,1,113,114],[280,1,1,114,115],[283,1,1,115,116],[287,4,3,116,119]]],[10,11,11,119,130,[[293,1,1,119,120],[294,2,2,120,122],[297,1,1,122,123],[299,2,2,123,125],[301,1,1,125,126],[305,2,2,126,128],[306,1,1,128,129],[312,1,1,129,130]]],[11,16,15,130,145,[[320,2,2,130,132],[321,1,1,132,133],[323,1,1,133,134],[326,1,1,134,135],[327,1,1,135,136],[330,1,1,136,137],[331,2,1,137,138],[333,1,1,138,139],[334,1,1,139,140],[335,3,3,140,143],[336,2,2,143,145]]],[12,10,9,145,154,[[338,2,1,145,146],[339,3,3,146,149],[340,2,2,149,151],[341,1,1,151,152],[344,1,1,152,153],[352,1,1,153,154]]],[13,14,12,154,166,[[374,1,1,154,155],[377,4,3,155,158],[379,1,1,158,159],[386,1,1,159,160],[387,1,1,160,161],[388,3,2,161,163],[391,1,1,163,164],[393,1,1,164,165],[395,1,1,165,166]]],[15,1,1,166,167,[[418,1,1,166,167]]],[16,5,3,167,170,[[427,4,2,167,169],[434,1,1,169,170]]],[18,5,5,170,175,[[486,1,1,170,171],[522,3,3,171,174],[614,1,1,174,175]]],[21,1,1,175,176,[[677,1,1,175,176]]],[22,13,11,176,187,[[679,1,1,176,177],[688,1,1,177,178],[694,1,1,178,179],[700,1,1,179,180],[701,2,2,180,182],[715,2,1,182,183],[725,3,2,183,185],[730,1,1,185,186],[740,1,1,186,187]]],[23,21,21,187,208,[[748,2,2,187,189],[750,3,3,189,192],[752,4,4,192,196],[753,2,2,196,198],[758,1,1,198,199],[775,1,1,199,200],[790,3,3,200,203],[792,1,1,203,204],[793,1,1,204,205],[794,1,1,205,206],[795,1,1,206,207],[796,1,1,207,208]]],[24,20,18,208,226,[[797,2,2,208,210],[798,11,10,210,220],[799,1,1,220,221],[800,6,5,221,226]]],[25,5,5,226,231,[[815,1,1,226,227],[817,2,2,227,229],[823,1,1,229,230],[845,1,1,230,231]]],[26,2,2,231,233,[[860,2,2,231,233]]],[27,2,2,233,235,[[862,2,2,233,235]]],[32,7,6,235,241,[[893,1,1,235,236],[896,4,3,236,239],[897,1,1,239,240],[899,1,1,240,241]]],[35,3,2,241,243,[[908,3,2,241,243]]],[37,4,3,243,246,[[912,2,2,243,245],[919,2,1,245,246]]],[38,1,1,246,247,[[926,1,1,246,247]]]],[295,507,614,615,638,639,678,726,782,801,805,813,818,819,823,851,981,983,985,987,988,997,999,1042,1043,1054,1058,1065,1079,1121,1131,1240,1245,1401,1404,1406,1411,1548,1554,1555,1559,1561,1562,1563,1564,1575,1678,2061,2084,2108,3050,3260,3261,3262,3268,3310,3335,3347,3354,3381,3382,3457,4486,4489,4535,4548,4562,4563,4664,4887,5067,5114,5258,5278,5353,5356,5394,5486,5487,5607,5667,6218,6219,6521,6522,6863,6864,6869,7048,7103,7151,7157,7171,7173,7182,7183,7188,7190,7558,7643,7693,7695,7696,7703,7704,7905,8084,8088,8094,8173,8177,8180,8262,8289,8383,8474,8588,8590,8591,8817,8855,8859,8942,9067,9075,9109,9251,9259,9314,9522,9745,9753,9790,9831,9905,9958,10026,10082,10138,10146,10175,10196,10201,10210,10220,10302,10327,10341,10355,10363,10366,10403,10559,10820,11357,11432,11434,11435,11455,11618,11630,11646,11655,11722,11756,11792,12419,12731,12739,12863,14035,14607,14609,14610,16230,17628,17662,17880,17970,18056,18087,18089,18374,18600,18604,18698,18865,19038,19058,19091,19112,19115,19164,19172,19174,19175,19176,19182,19310,19713,20056,20064,20069,20098,20131,20208,20245,20277,20316,20325,20333,20334,20336,20337,20340,20342,20343,20345,20347,20350,20402,20423,20426,20430,20441,20442,20751,20806,20807,20987,21624,22042,22053,22097,22100,22592,22628,22630,22633,22634,22670,22830,22834,22906,22909,23008,23114]]],["daughter's",[3,3,[[2,2,2,0,2,[[107,2,2,0,2]]],[4,1,1,2,3,[[174,1,1,2,3]]]],[3261,3268,5487]]],["daughters",[223,199,[[0,55,47,0,47,[[4,9,9,0,9],[5,3,3,9,12],[10,8,8,12,20],[18,8,7,20,27],[23,1,1,27,28],[26,1,1,28,29],[27,1,1,29,30],[28,1,1,30,31],[29,1,1,31,32],[30,10,7,32,39],[33,7,4,39,43],[35,1,1,43,44],[36,1,1,44,45],[45,3,2,45,47]]],[1,8,8,47,55,[[51,2,2,47,49],[52,1,1,49,50],[59,1,1,50,51],[70,2,2,51,53],[81,1,1,53,54],[83,1,1,54,55]]],[2,2,2,55,57,[[99,1,1,55,56],[115,1,1,56,57]]],[3,13,11,57,68,[[134,2,2,57,59],[137,1,1,59,60],[141,1,1,60,61],[142,2,1,61,62],[143,3,2,62,64],[152,4,4,64,68]]],[4,6,6,68,74,[[164,2,2,68,70],[180,3,3,70,73],[184,1,1,73,74]]],[5,4,3,74,77,[[193,1,1,74,75],[203,3,2,75,77]]],[6,7,5,77,82,[[213,2,1,77,78],[221,1,1,78,79],[222,2,1,79,80],[224,1,1,80,81],[231,1,1,81,82]]],[7,3,3,82,85,[[232,3,3,82,85]]],[8,7,7,85,92,[[236,1,1,85,86],[237,1,1,86,87],[243,1,1,87,88],[249,1,1,88,89],[265,3,3,89,92]]],[9,6,5,92,97,[[267,3,2,92,94],[271,1,1,94,95],[279,1,1,95,96],[285,1,1,96,97]]],[11,1,1,97,98,[[329,1,1,97,98]]],[12,6,6,98,104,[[339,1,1,98,99],[341,1,1,99,100],[344,1,1,100,101],[351,1,1,101,102],[360,1,1,102,103],[362,1,1,103,104]]],[13,7,7,104,111,[[368,1,1,104,105],[377,1,1,105,106],[379,1,1,106,107],[390,1,1,107,108],[394,1,1,108,109],[395,1,1,109,110],[397,1,1,110,111]]],[14,2,1,111,112,[[411,2,1,111,112]]],[15,8,7,112,119,[[415,1,1,112,113],[416,1,1,113,114],[417,2,2,114,116],[422,3,2,116,118],[425,1,1,118,119]]],[17,5,5,119,124,[[436,3,3,119,122],[477,2,2,122,124]]],[18,6,6,124,130,[[522,1,1,124,125],[525,1,1,125,126],[574,1,1,126,127],[583,2,2,127,129],[621,1,1,129,130]]],[19,2,2,130,132,[[657,1,1,130,131],[658,1,1,131,132]]],[20,1,1,132,133,[[670,1,1,132,133]]],[21,10,10,133,143,[[671,1,1,133,134],[672,2,2,134,136],[673,3,3,136,139],[675,2,2,139,141],[676,1,1,141,142],[678,1,1,142,143]]],[22,8,8,143,151,[[681,2,2,143,145],[682,1,1,145,146],[694,1,1,146,147],[710,1,1,147,148],[721,1,1,148,149],[727,1,1,149,150],[738,1,1,150,151]]],[23,19,17,151,168,[[747,1,1,151,152],[749,1,1,152,153],[751,1,1,153,154],[753,1,1,154,155],[755,1,1,155,156],[758,1,1,156,157],[760,2,2,157,159],[763,1,1,159,160],[773,3,1,160,161],[776,1,1,161,162],[779,1,1,162,163],[785,1,1,163,164],[787,1,1,164,165],[792,1,1,165,166],[793,2,2,166,168]]],[24,1,1,168,169,[[799,1,1,168,169]]],[25,31,25,169,194,[[814,1,1,169,170],[815,3,3,170,173],[817,15,9,173,182],[824,5,5,182,187],[825,2,2,187,189],[827,2,2,189,191],[831,1,1,191,192],[833,2,2,192,194]]],[27,2,2,194,196,[[865,2,2,194,196]]],[28,2,2,196,198,[[877,1,1,196,197],[878,1,1,197,198]]],[29,1,1,198,199,[[885,1,1,198,199]]]],[109,112,115,118,121,124,127,131,135,138,139,141,277,279,281,283,285,287,289,291,465,469,471,472,473,487,493,604,773,781,811,843,899,901,904,914,916,923,928,981,989,996,1001,1046,1118,1393,1401,1570,1574,1601,1786,2081,2086,2440,2512,2991,3553,4268,4276,4369,4472,4522,4555,4561,4881,4885,4889,4890,5252,5271,5643,5652,5664,5777,6000,6278,6281,6574,6869,6878,6912,7123,7138,7139,7140,7216,7261,7382,7557,7981,7984,7997,8042,8046,8145,8335,8516,10000,10340,10412,10550,10777,11005,11051,11225,11435,11474,11680,11772,11800,11872,12249,12339,12373,12384,12387,12577,12579,12696,12871,12882,12887,13935,13937,14606,14645,15486,15688,15689,16317,17266,17313,17527,17542,17556,17561,17576,17581,17582,17606,17614,17623,17644,17723,17724,17737,17971,18268,18511,18658,18825,19026,19075,19150,19195,19248,19309,19338,19339,19416,19641,19766,19831,19967,20003,20126,20129,20130,20405,20725,20747,20749,20753,20782,20789,20808,20810,20811,20815,20817,20819,20823,21009,21011,21017,21032,21054,21077,21081,21106,21108,21222,21264,21266,22146,22147,22339,22351,22481]]],["first",[3,3,[[2,1,1,0,1,[[103,1,1,0,1]]],[3,2,2,1,3,[[122,1,1,1,2],[131,1,1,2,3]]]],[3121,3837,4180]]],["old",[1,1,[[0,1,1,0,1,[[16,1,1,0,1]]]],[414]]],["towns",[32,13,[[5,10,4,0,4,[[201,3,2,0,2],[203,7,2,2,4]]],[6,7,2,4,6,[[211,5,1,4,5],[221,2,1,5,6]]],[12,12,6,6,12,[[339,1,1,6,7],[342,1,1,7,8],[344,8,2,8,10],[345,1,1,10,11],[355,1,1,11,12]]],[13,3,1,12,13,[[379,3,1,12,13]]]],[6247,6249,6286,6291,6536,6855,10329,10444,10563,10564,10587,10891,11472]]],["villages",[12,9,[[3,3,3,0,3,[[137,2,2,0,2],[148,1,1,2,3]]],[13,3,1,3,4,[[394,3,1,3,4]]],[15,6,5,4,9,[[423,6,5,4,9]]]],[4365,4372,4760,11782,12613,12615,12616,12618,12619]]]]},{"k":"H1324","v":[["*",[13,8,[[10,2,2,0,2,[[297,2,2,0,2]]],[13,3,2,2,4,[[368,2,1,2,3],[370,1,1,3,4]]],[22,1,1,4,5,[[683,1,1,4,5]]],[25,7,3,5,8,[[846,7,3,5,8]]]],[8960,8972,11221,11251,17749,21640,21641,21644]]],["bath",[6,4,[[22,1,1,0,1,[[683,1,1,0,1]]],[25,5,3,1,4,[[846,5,3,1,4]]]],[17749,21640,21641,21644]]],["baths",[7,5,[[10,2,2,0,2,[[297,2,2,0,2]]],[13,3,2,2,4,[[368,2,1,2,3],[370,1,1,3,4]]],[25,2,1,4,5,[[846,2,1,4,5]]]],[8960,8972,11221,11251,21644]]]]},{"k":"H1325","v":[["baths",[2,1,[[14,2,1,0,1,[[409,2,1,0,1]]]],[12195]]]]},{"k":"H1326","v":[["waste",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17745]]]]},{"k":"H1327","v":[["desolate",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17801]]]]},{"k":"H1328","v":[["Bethuel",[10,10,[[0,9,9,0,9,[[21,2,2,0,2],[23,4,4,2,6],[24,1,1,6,7],[27,2,2,7,9]]],[12,1,1,9,10,[[341,1,1,9,10]]]],[569,570,606,615,638,641,678,775,778,10415]]]]},{"k":"H1329","v":[["Bethul",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6325]]]]},{"k":"H1330","v":[["*",[50,50,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,2,2,1,3,[[71,2,2,1,3]]],[2,2,2,3,5,[[110,2,2,3,5]]],[4,4,4,5,9,[[174,3,3,5,8],[184,1,1,8,9]]],[6,2,2,9,11,[[229,1,1,9,10],[231,1,1,10,11]]],[9,2,2,11,13,[[279,2,2,11,13]]],[10,1,1,13,14,[[291,1,1,13,14]]],[11,1,1,14,15,[[331,1,1,14,15]]],[13,1,1,15,16,[[402,1,1,15,16]]],[16,4,4,16,20,[[427,4,4,16,20]]],[17,1,1,20,21,[[466,1,1,20,21]]],[18,3,3,21,24,[[522,1,1,21,22],[555,1,1,22,23],[625,1,1,23,24]]],[22,5,5,24,29,[[701,2,2,24,26],[715,1,1,26,27],[725,1,1,27,28],[740,1,1,28,29]]],[23,8,8,29,37,[[746,1,1,29,30],[758,1,1,30,31],[762,1,1,31,32],[775,3,3,32,35],[790,1,1,35,36],[795,1,1,36,37]]],[24,7,7,37,44,[[797,3,3,37,40],[798,3,3,40,43],[801,1,1,43,44]]],[25,2,2,44,46,[[810,1,1,44,45],[845,1,1,45,46]]],[28,1,1,46,47,[[876,1,1,46,47]]],[29,2,2,47,49,[[883,1,1,47,48],[886,1,1,48,49]]],[37,1,1,49,50,[[919,1,1,49,50]]]],[607,2129,2130,3348,3359,5489,5493,5498,5783,7048,7114,8319,8335,8719,10082,12010,12726,12727,12741,12743,13589,14611,15176,16383,18081,18089,18374,18600,18859,18997,19310,19397,19695,19704,19712,20056,20234,20314,20325,20328,20342,20345,20353,20453,20628,21621,22299,22425,22494,23016]]],["maid",[4,4,[[1,1,1,0,1,[[71,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]],[23,2,2,2,4,[[746,1,1,2,3],[795,1,1,3,4]]]],[2129,13589,18997,20234]]],["maiden",[2,2,[[6,1,1,0,1,[[229,1,1,0,1]]],[13,1,1,1,2,[[402,1,1,1,2]]]],[7048,12010]]],["maidens",[3,3,[[18,2,2,0,2,[[555,1,1,0,1],[625,1,1,1,2]]],[25,1,1,2,3,[[845,1,1,2,3]]]],[15176,16383,21621]]],["maids",[3,3,[[24,1,1,0,1,[[801,1,1,0,1]]],[25,1,1,1,2,[[810,1,1,1,2]]],[37,1,1,2,3,[[919,1,1,2,3]]]],[20453,20628,23016]]],["virgin",[24,24,[[0,1,1,0,1,[[23,1,1,0,1]]],[2,2,2,1,3,[[110,2,2,1,3]]],[4,4,4,3,7,[[174,3,3,3,6],[184,1,1,6,7]]],[9,1,1,7,8,[[279,1,1,7,8]]],[10,1,1,8,9,[[291,1,1,8,9]]],[11,1,1,9,10,[[331,1,1,9,10]]],[22,4,4,10,14,[[701,1,1,10,11],[715,1,1,11,12],[725,1,1,12,13],[740,1,1,13,14]]],[23,6,6,14,20,[[758,1,1,14,15],[762,1,1,15,16],[775,3,3,16,19],[790,1,1,19,20]]],[24,2,2,20,22,[[797,1,1,20,21],[798,1,1,21,22]]],[28,1,1,22,23,[[876,1,1,22,23]]],[29,1,1,23,24,[[883,1,1,23,24]]]],[607,3348,3359,5489,5493,5498,5783,8319,8719,10082,18089,18374,18600,18859,19310,19397,19695,19704,19712,20056,20325,20345,22299,22425]]],["virgins",[14,14,[[1,1,1,0,1,[[71,1,1,0,1]]],[6,1,1,1,2,[[231,1,1,1,2]]],[9,1,1,2,3,[[279,1,1,2,3]]],[16,4,4,3,7,[[427,4,4,3,7]]],[18,1,1,7,8,[[522,1,1,7,8]]],[22,1,1,8,9,[[701,1,1,8,9]]],[24,4,4,9,13,[[797,2,2,9,11],[798,2,2,11,13]]],[29,1,1,13,14,[[886,1,1,13,14]]]],[2130,7114,8335,12726,12727,12741,12743,14611,18081,20314,20328,20342,20353,22494]]]]},{"k":"H1331","v":[["*",[10,9,[[2,1,1,0,1,[[110,1,1,0,1]]],[4,5,4,1,5,[[174,5,4,1,5]]],[6,2,2,5,7,[[221,2,2,5,7]]],[25,2,2,7,9,[[824,2,2,7,9]]]],[3358,5484,5485,5487,5490,6866,6867,21010,21015]]],["maid",[2,2,[[4,2,2,0,2,[[174,2,2,0,2]]]],[5484,5487]]],["virginity",[8,8,[[2,1,1,0,1,[[110,1,1,0,1]]],[4,3,3,1,4,[[174,3,3,1,4]]],[6,2,2,4,6,[[221,2,2,4,6]]],[25,2,2,6,8,[[824,2,2,6,8]]]],[3358,5485,5487,5490,6866,6867,21010,21015]]]]},{"k":"H1332","v":[["Bithiah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10403]]]]},{"k":"H1333","v":[["through",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20802]]]]},{"k":"H1334","v":[["divided",[2,1,[[0,2,1,0,1,[[14,2,1,0,1]]]],[370]]]]},{"k":"H1335","v":[["*",[3,3,[[0,1,1,0,1,[[14,1,1,0,1]]],[23,2,2,1,3,[[778,2,2,1,3]]]],[370,19819,19820]]],["parts",[2,2,[[23,2,2,0,2,[[778,2,2,0,2]]]],[19819,19820]]],["piece",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[370]]]]},{"k":"H1336","v":[["Bether",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17571]]]]},{"k":"H1337","v":[["Bathrabbim",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17631]]]]},{"k":"H1338","v":[["Bithron",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8078]]]]},{"k":"H1339","v":[["Bathsheba",[10,10,[[9,2,2,0,2,[[277,1,1,0,1],[278,1,1,1,2]]],[10,8,8,2,10,[[291,5,5,2,7],[292,3,3,7,10]]]],[8262,8310,8728,8732,8733,8745,8748,8783,8788,8789]]]]},{"k":"H1340","v":[["Bathshua",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10366]]]]},{"k":"H1341","v":[["proud",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17975]]]]},{"k":"H1342","v":[["*",[7,5,[[1,4,2,0,2,[[64,4,2,0,2]]],[17,2,2,2,4,[[443,1,1,2,3],[445,1,1,3,4]]],[25,1,1,4,5,[[848,1,1,4,5]]]],[1921,1941,13040,13102,21684]]],["+",[4,2,[[1,4,2,0,2,[[64,4,2,0,2]]]],[1921,1941]]],["increaseth",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13102]]],["risen",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21684]]],["up",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13040]]]]},{"k":"H1343","v":[["proud",[8,8,[[17,2,2,0,2,[[475,2,2,0,2]]],[18,2,2,2,4,[[571,1,1,2,3],[617,1,1,3,4]]],[19,2,2,4,6,[[642,1,1,4,5],[643,1,1,5,6]]],[22,1,1,6,7,[[680,1,1,6,7]]],[23,1,1,7,8,[[792,1,1,7,8]]]],[13875,13876,15433,16268,16832,16859,17697,20109]]]]},{"k":"H1344","v":[["pride",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16615]]]]},{"k":"H1345","v":[["Geuel",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4090]]]]},{"k":"H1346","v":[["*",[19,19,[[4,2,2,0,2,[[185,2,2,0,2]]],[17,1,1,2,3,[[476,1,1,2,3]]],[18,7,7,3,10,[[487,1,1,3,4],[508,2,2,4,6],[513,1,1,6,7],[523,1,1,7,8],[545,1,1,8,9],[550,1,1,9,10]]],[19,2,2,10,12,[[641,1,1,10,11],[656,1,1,11,12]]],[22,5,5,12,17,[[687,1,1,12,13],[691,2,2,13,15],[694,1,1,15,16],[703,1,1,16,17]]],[23,1,1,17,18,[[792,1,1,17,18]]],[35,1,1,18,19,[[908,1,1,18,19]]]],[5836,5839,13903,14043,14349,14354,14449,14617,14934,15026,16775,17247,17838,17909,17917,17975,18129,20109,22831]]],["excellency",[3,3,[[4,2,2,0,2,[[185,2,2,0,2]]],[18,1,1,2,3,[[545,1,1,2,3]]]],[5836,5839,14934]]],["haughtiness",[2,2,[[22,2,2,0,2,[[691,1,1,0,1],[694,1,1,1,2]]]],[17917,17975]]],["highness",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17909]]],["pride",[10,10,[[17,1,1,0,1,[[476,1,1,0,1]]],[18,3,3,1,4,[[487,1,1,1,2],[513,1,1,2,3],[550,1,1,3,4]]],[19,2,2,4,6,[[641,1,1,4,5],[656,1,1,5,6]]],[22,2,2,6,8,[[687,1,1,6,7],[703,1,1,7,8]]],[23,1,1,8,9,[[792,1,1,8,9]]],[35,1,1,9,10,[[908,1,1,9,10]]]],[13903,14043,14449,15026,16775,17247,17838,18129,20109,22831]]],["proud",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14354]]],["proudly",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14349]]],["swelling",[1,1,[[18,1,1,0,1,[[523,1,1,0,1]]]],[14617]]]]},{"k":"H1347","v":[["*",[49,45,[[1,1,1,0,1,[[64,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[17,4,4,2,6,[[470,1,1,2,3],[472,1,1,3,4],[473,1,1,4,5],[475,1,1,5,6]]],[18,2,2,6,8,[[524,1,1,6,7],[536,1,1,7,8]]],[19,2,2,8,10,[[635,1,1,8,9],[643,1,1,9,10]]],[22,12,11,10,21,[[680,3,3,10,13],[682,1,1,13,14],[691,2,2,14,16],[692,1,1,16,17],[694,2,1,17,18],[701,1,1,18,19],[702,1,1,19,20],[738,1,1,20,21]]],[23,7,5,21,26,[[756,1,1,21,22],[757,2,1,22,23],[792,2,1,23,24],[793,1,1,24,25],[794,1,1,25,26]]],[25,9,9,26,35,[[808,2,2,26,28],[817,2,2,28,30],[825,1,1,30,31],[831,2,2,31,33],[833,1,1,33,34],[834,1,1,34,35]]],[27,2,2,35,37,[[866,1,1,35,36],[868,1,1,36,37]]],[29,2,2,37,39,[[884,1,1,37,38],[886,1,1,38,39]]],[32,1,1,39,40,[[897,1,1,39,40]]],[33,2,1,40,41,[[901,2,1,40,41]]],[35,1,1,41,42,[[907,1,1,41,42]]],[37,3,3,42,45,[[919,1,1,42,43],[920,1,1,43,44],[921,1,1,44,45]]]],[1927,3543,13732,13773,13804,13874,14629,14802,16615,16858,17695,17704,17706,17735,17917,17925,17939,17975,18086,18109,18836,19254,19275,20109,20146,20210,20597,20601,20811,20818,21077,21210,21222,21260,21308,22157,22188,22458,22488,22637,22701,22815,23005,23027,23031]]],["+",[2,2,[[23,2,2,0,2,[[793,1,1,0,1],[794,1,1,1,2]]]],[20146,20210]]],["Pride",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16858]]],["arrogancy",[3,3,[[19,1,1,0,1,[[635,1,1,0,1]]],[22,1,1,1,2,[[691,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[16615,17917,20109]]],["excellency",[10,9,[[1,1,1,0,1,[[64,1,1,0,1]]],[17,1,1,1,2,[[472,1,1,1,2]]],[18,1,1,2,3,[[524,1,1,2,3]]],[22,2,2,3,5,[[691,1,1,3,4],[738,1,1,4,5]]],[25,1,1,5,6,[[825,1,1,5,6]]],[29,2,2,6,8,[[884,1,1,6,7],[886,1,1,7,8]]],[33,2,1,8,9,[[901,2,1,8,9]]]],[1927,13773,14629,17925,18836,21077,22458,22488,22701]]],["excellent",[1,1,[[22,1,1,0,1,[[682,1,1,0,1]]]],[17735]]],["majesty",[7,7,[[17,1,1,0,1,[[475,1,1,0,1]]],[22,4,4,1,5,[[680,3,3,1,4],[702,1,1,4,5]]],[25,1,1,5,6,[[808,1,1,5,6]]],[32,1,1,6,7,[[897,1,1,6,7]]]],[13874,17695,17704,17706,18109,20597,22637]]],["pomp",[5,5,[[22,1,1,0,1,[[692,1,1,0,1]]],[25,4,4,1,5,[[808,1,1,1,2],[831,1,1,2,3],[833,1,1,3,4],[834,1,1,4,5]]]],[17939,20601,21222,21260,21308]]],["pride",[18,16,[[2,1,1,0,1,[[115,1,1,0,1]]],[17,1,1,1,2,[[470,1,1,1,2]]],[18,1,1,2,3,[[536,1,1,2,3]]],[22,3,2,3,5,[[694,2,1,3,4],[701,1,1,4,5]]],[23,3,2,5,7,[[757,2,1,5,6],[792,1,1,6,7]]],[25,3,3,7,10,[[817,2,2,7,9],[831,1,1,9,10]]],[27,2,2,10,12,[[866,1,1,10,11],[868,1,1,11,12]]],[35,1,1,12,13,[[907,1,1,12,13]]],[37,3,3,13,16,[[919,1,1,13,14],[920,1,1,14,15],[921,1,1,15,16]]]],[3543,13732,14802,17975,18086,19275,20109,20811,20818,21210,22157,22188,22815,23005,23027,23031]]],["proud",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13804]]],["swelling",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19254]]]]},{"k":"H1348","v":[["*",[8,8,[[18,3,3,0,3,[[494,1,1,0,1],[566,1,1,1,2],[570,1,1,2,3]]],[22,5,5,3,8,[[687,1,1,3,4],[690,1,1,4,5],[704,1,1,5,6],[706,2,2,6,8]]]],[14113,15335,15427,17847,17905,18140,18165,18167]]],["majesty",[2,2,[[18,1,1,0,1,[[570,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]]],[15427,18140]]],["pride",[2,2,[[22,2,2,0,2,[[706,2,2,0,2]]]],[18165,18167]]],["proudly",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14113]]],["raging",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15335]]],["things",[1,1,[[22,1,1,0,1,[[690,1,1,0,1]]]],[17905]]],["up",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17847]]]]},{"k":"H1349","v":[["proud",[1,1,[[18,1,1,0,1,[[600,1,1,0,1]]]],[16102]]]]},{"k":"H1350","v":[["*",[104,84,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,2,2,1,3,[[55,1,1,1,2],[64,1,1,2,3]]],[2,22,15,3,18,[[114,10,7,3,10],[116,12,8,10,18]]],[3,8,7,18,25,[[121,1,1,18,19],[151,7,6,19,25]]],[4,2,2,25,27,[[171,2,2,25,27]]],[5,3,3,27,30,[[206,3,3,27,30]]],[7,21,10,30,40,[[233,1,1,30,31],[234,7,3,31,34],[235,13,6,34,40]]],[9,1,1,40,41,[[280,1,1,40,41]]],[10,1,1,41,42,[[306,1,1,41,42]]],[17,2,2,42,44,[[438,1,1,42,43],[454,1,1,43,44]]],[18,11,10,44,54,[[496,1,1,44,45],[546,1,1,45,46],[549,1,1,46,47],[551,1,1,47,48],[554,1,1,48,49],[555,1,1,49,50],[580,1,1,50,51],[583,1,1,51,52],[584,2,1,52,53],[596,1,1,53,54]]],[19,1,1,54,55,[[650,1,1,54,55]]],[22,24,24,55,79,[[713,1,1,55,56],[719,1,1,56,57],[721,2,2,57,59],[722,4,4,59,63],[725,1,1,63,64],[726,2,2,64,66],[727,2,2,66,68],[729,1,1,68,69],[730,2,2,69,71],[732,2,2,71,73],[737,1,1,73,74],[738,1,1,74,75],[740,1,1,75,76],[741,3,3,76,79]]],[23,2,2,79,81,[[775,1,1,79,80],[794,1,1,80,81]]],[24,1,1,81,82,[[799,1,1,81,82]]],[27,1,1,82,83,[[874,1,1,82,83]]],[32,1,1,83,84,[[896,1,1,83,84]]]],[1467,1661,1933,3494,3495,3499,3502,3517,3518,3523,3583,3585,3589,3590,3597,3598,3601,3603,3800,4857,4864,4866,4869,4870,4872,5412,5418,6375,6377,6381,7169,7181,7184,7185,7191,7193,7194,7196,7198,7204,8367,9294,12909,13322,14182,14953,15014,15050,15108,15148,15553,15661,15701,16052,17055,18329,18465,18506,18519,18539,18555,18556,18557,18603,18631,18634,18643,18662,18683,18699,18705,18728,18731,18820,18837,18866,18870,18875,18882,19702,20200,20412,22280,22630]]],["+",[13,10,[[2,10,7,0,7,[[114,2,2,0,2],[116,8,5,2,7]]],[3,1,1,7,8,[[151,1,1,7,8]]],[5,1,1,8,9,[[206,1,1,8,9]]],[7,1,1,9,10,[[233,1,1,9,10]]]],[3494,3495,3583,3585,3589,3590,3601,4857,6375,7169]]],["Redeemer",[8,8,[[22,7,7,0,7,[[726,1,1,0,1],[727,2,2,1,3],[732,2,2,3,5],[737,1,1,5,6],[738,1,1,6,7]]],[23,1,1,7,8,[[794,1,1,7,8]]]],[18631,18643,18662,18728,18731,18820,18837,20200]]],["avenger",[4,4,[[4,2,2,0,2,[[171,2,2,0,2]]],[5,2,2,2,4,[[206,2,2,2,4]]]],[5412,5418,6377,6381]]],["deliver",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16052]]],["himself",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3518]]],["kinsfolks",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9294]]],["kinsman",[12,9,[[3,1,1,0,1,[[121,1,1,0,1]]],[7,11,8,1,9,[[234,6,3,1,4],[235,5,5,4,9]]]],[3800,7181,7184,7185,7191,7193,7196,7198,7204]]],["part",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7185]]],["purchase",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3502]]],["ransomed",[2,2,[[22,1,1,0,1,[[729,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[18683,19702]]],["redeem",[17,10,[[1,1,1,0,1,[[55,1,1,0,1]]],[2,4,3,1,4,[[114,4,3,1,4]]],[7,8,2,4,6,[[235,8,2,4,6]]],[18,2,2,6,8,[[546,1,1,6,7],[549,1,1,7,8]]],[27,1,1,8,9,[[874,1,1,8,9]]],[32,1,1,9,10,[[896,1,1,9,10]]]],[1661,3494,3517,3518,7194,7196,14953,15014,22280,22630]]],["redeemed",[24,23,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[2,6,6,2,8,[[114,2,2,2,4],[116,4,4,4,8]]],[18,5,4,8,12,[[551,1,1,8,9],[554,1,1,9,10],[583,1,1,10,11],[584,2,1,11,12]]],[22,10,10,12,22,[[713,1,1,12,13],[721,1,1,13,14],[722,2,2,14,16],[726,1,1,16,17],[730,2,2,17,19],[740,1,1,19,20],[741,2,2,20,22]]],[24,1,1,22,23,[[799,1,1,22,23]]]],[1467,1933,3499,3523,3590,3597,3598,3603,15050,15108,15661,15701,18329,18506,18555,18556,18634,18699,18705,18866,18870,18875,20412]]],["redeemer",[10,10,[[17,1,1,0,1,[[454,1,1,0,1]]],[18,2,2,1,3,[[496,1,1,1,2],[555,1,1,2,3]]],[19,1,1,3,4,[[650,1,1,3,4]]],[22,6,6,4,10,[[719,1,1,4,5],[721,1,1,5,6],[722,2,2,6,8],[725,1,1,8,9],[741,1,1,9,10]]]],[13322,14182,15148,17055,18465,18519,18539,18557,18603,18882]]],["redeemeth",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15553]]],["revenger",[6,5,[[3,6,5,0,5,[[151,6,5,0,5]]]],[4864,4866,4869,4870,4872]]],["revengers",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8367]]],["stain",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12909]]]]},{"k":"H1351","v":[["*",[11,9,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]],[22,2,2,2,4,[[737,1,1,2,3],[741,1,1,3,4]]],[24,1,1,4,5,[[800,1,1,4,5]]],[26,2,1,5,6,[[850,2,1,5,6]]],[35,1,1,6,7,[[908,1,1,6,7]]],[38,3,2,7,9,[[925,3,2,7,9]]]],[12089,12484,18803,18869,20434,21745,22821,23096,23101]]],["defiled",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18803]]],["himself",[2,1,[[26,2,1,0,1,[[850,2,1,0,1]]]],[21745]]],["polluted",[6,5,[[15,1,1,0,1,[[419,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]],[35,1,1,2,3,[[908,1,1,2,3]]],[38,3,2,3,5,[[925,3,2,3,5]]]],[12484,20434,22821,23096,23101]]],["put",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12089]]],["stain",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18869]]]]},{"k":"H1352","v":[["defiled",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12700]]]]},{"k":"H1353","v":[["*",[14,13,[[2,9,8,0,8,[[114,9,8,0,8]]],[7,2,2,8,10,[[235,2,2,8,10]]],[23,2,2,10,12,[[776,2,2,10,12]]],[25,1,1,12,13,[[812,1,1,12,13]]]],[3493,3495,3498,3500,3501,3517,3520,3521,7196,7197,19738,19739,20670]]],["+",[3,2,[[2,3,2,0,2,[[114,3,2,0,2]]]],[3498,3501]]],["again",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3517]]],["kindred",[1,1,[[25,1,1,0,1,[[812,1,1,0,1]]]],[20670]]],["redeem",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3495]]],["redeemed",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3500]]],["redeeming",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7197]]],["redemption",[5,5,[[2,3,3,0,3,[[114,3,3,0,3]]],[23,2,2,3,5,[[776,2,2,3,5]]]],[3493,3520,3521,19738,19739]]],["right",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7196]]]]},{"k":"H1354","v":[["*",[13,11,[[2,1,1,0,1,[[103,1,1,0,1]]],[10,1,1,1,2,[[297,1,1,1,2]]],[17,3,2,2,4,[[448,2,1,2,3],[450,1,1,3,4]]],[18,1,1,4,5,[[606,1,1,4,5]]],[25,7,6,5,11,[[802,2,1,5,6],[811,1,1,6,7],[817,3,3,7,10],[844,1,1,10,11]]]],[3120,8967,13165,13229,16135,20482,20645,20786,20793,20801,21585]]],["+",[1,1,[[2,1,1,0,1,[[103,1,1,0,1]]]],[3120]]],["back",[1,1,[[18,1,1,0,1,[[606,1,1,0,1]]]],[16135]]],["backs",[1,1,[[25,1,1,0,1,[[811,1,1,0,1]]]],[20645]]],["bodies",[2,1,[[17,2,1,0,1,[[448,2,1,0,1]]]],[13165]]],["bosses",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13229]]],["naves",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8967]]],["place",[4,4,[[25,4,4,0,4,[[817,3,3,0,3],[844,1,1,3,4]]]],[20786,20793,20801,21585]]],["rings",[2,1,[[25,2,1,0,1,[[802,2,1,0,1]]]],[20482]]]]},{"k":"H1355","v":[["back",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21939]]]]},{"k":"H1356","v":[["*",[4,3,[[10,1,1,0,1,[[296,1,1,0,1]]],[11,2,1,1,2,[[315,2,1,1,2]]],[23,1,1,2,3,[[758,1,1,2,3]]]],[8905,9592,19296]]],["+",[2,1,[[11,2,1,0,1,[[315,2,1,0,1]]]],[9592]]],["beams",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8905]]],["pits",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19296]]]]},{"k":"H1357","v":[["locusts",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18283]]]]},{"k":"H1358","v":[["den",[10,8,[[26,10,8,0,8,[[855,10,8,0,8]]]],[21912,21917,21921,21922,21924,21925,21928,21929]]]]},{"k":"H1359","v":[["Gob",[2,2,[[9,2,2,0,2,[[287,2,2,0,2]]]],[8598,8599]]]]},{"k":"H1360","v":[["*",[2,2,[[22,1,1,0,1,[[708,1,1,0,1]]],[25,1,1,1,2,[[848,1,1,1,2]]]],[18231,21690]]],["+",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18231]]],["marishes",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21690]]]]},{"k":"H1361","v":[["*",[34,33,[[8,1,1,0,1,[[245,1,1,0,1]]],[13,4,4,1,5,[[383,1,1,1,2],[392,1,1,2,3],[398,1,1,3,4],[399,1,1,4,5]]],[17,4,4,5,9,[[440,1,1,5,6],[470,1,1,6,7],[471,1,1,7,8],[474,1,1,8,9]]],[18,3,3,9,12,[[580,1,1,9,10],[590,1,1,10,11],[608,1,1,11,12]]],[19,2,2,12,14,[[644,1,1,12,13],[645,1,1,13,14]]],[22,6,5,14,19,[[681,1,1,14,15],[683,1,1,15,16],[685,1,1,16,17],[730,1,1,17,18],[733,2,1,18,19]]],[23,2,2,19,21,[[757,1,1,19,20],[793,1,1,20,21]]],[25,10,10,21,31,[[817,1,1,21,22],[818,1,1,22,23],[820,1,1,23,24],[822,1,1,24,25],[829,3,3,25,28],[832,3,3,28,31]]],[30,1,1,31,32,[[888,1,1,31,32]]],[35,1,1,32,33,[[908,1,1,32,33]]]],[7441,11529,11748,11900,11922,12958,13725,13743,13861,15560,15818,16149,16892,16913,17723,17755,17793,18709,18749,19281,20143,20812,20849,20892,20970,21159,21162,21174,21235,21240,21244,22514,22831]]],["+",[3,3,[[13,1,1,0,1,[[399,1,1,0,1]]],[22,2,2,1,3,[[730,1,1,1,2],[733,1,1,2,3]]]],[11922,18709,18749]]],["exalt",[2,2,[[25,1,1,0,1,[[822,1,1,0,1]]],[30,1,1,1,2,[[888,1,1,1,2]]]],[20970,22514]]],["exalted",[5,5,[[17,1,1,0,1,[[471,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]],[25,3,3,2,5,[[818,1,1,2,3],[820,1,1,3,4],[832,1,1,4,5]]]],[13743,17755,20849,20892,21235]]],["exalteth",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16892]]],["haughty",[5,5,[[18,1,1,0,1,[[608,1,1,0,1]]],[19,1,1,1,2,[[645,1,1,1,2]]],[22,1,1,2,3,[[681,1,1,2,3]]],[25,1,1,3,4,[[817,1,1,3,4]]],[35,1,1,4,5,[[908,1,1,4,5]]]],[16149,16913,17723,20812,22831]]],["height",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17793]]],["high",[3,3,[[18,2,2,0,2,[[580,1,1,0,1],[590,1,1,1,2]]],[23,1,1,2,3,[[793,1,1,2,3]]]],[15560,15818,20143]]],["higher",[3,3,[[8,1,1,0,1,[[245,1,1,0,1]]],[17,1,1,1,2,[[470,1,1,1,2]]],[22,1,1,2,3,[[733,1,1,2,3]]]],[7441,13725,18749]]],["proud",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19281]]],["themselves",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21244]]],["up",[8,8,[[13,3,3,0,3,[[383,1,1,0,1],[392,1,1,1,2],[398,1,1,2,3]]],[17,1,1,3,4,[[474,1,1,3,4]]],[25,4,4,4,8,[[829,3,3,4,7],[832,1,1,7,8]]]],[11529,11748,11900,13861,21159,21162,21174,21240]]],["upward",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12958]]]]},{"k":"H1362","v":[["*",[4,4,[[18,1,1,0,1,[[578,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]],[20,1,1,2,3,[[665,1,1,2,3]]],[25,1,1,3,4,[[832,1,1,3,4]]]],[15518,16845,17437,21233]]],["+",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17437]]],["high",[2,2,[[18,1,1,0,1,[[578,1,1,0,1]]],[25,1,1,1,2,[[832,1,1,1,2]]]],[15518,21233]]],["proud",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16845]]]]},{"k":"H1363","v":[["*",[17,16,[[8,1,1,0,1,[[252,1,1,0,1]]],[13,2,2,1,3,[[369,1,1,1,2],[398,1,1,2,3]]],[17,3,3,3,6,[[446,1,1,3,4],[457,1,1,4,5],[475,1,1,5,6]]],[18,1,1,6,7,[[487,1,1,6,7]]],[19,1,1,7,8,[[643,1,1,7,8]]],[23,1,1,8,9,[[792,1,1,8,9]]],[25,6,6,9,15,[[802,1,1,9,10],[820,1,1,10,11],[832,2,2,11,13],[841,1,1,13,14],[842,1,1,14,15]]],[29,2,1,15,16,[[880,2,1,15,16]]]],[7622,11233,11901,13116,13401,13874,14045,16858,20109,20482,20892,21240,21244,21519,21534,22388]]],["excellency",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13874]]],["haughty",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16858]]],["height",[9,8,[[8,1,1,0,1,[[252,1,1,0,1]]],[13,1,1,1,2,[[369,1,1,1,2]]],[17,1,1,2,3,[[457,1,1,2,3]]],[25,4,4,3,7,[[820,1,1,3,4],[832,2,2,4,6],[842,1,1,6,7]]],[29,2,1,7,8,[[880,2,1,7,8]]]],[7622,11233,13401,20892,21240,21244,21534,22388]]],["high",[3,3,[[17,1,1,0,1,[[446,1,1,0,1]]],[25,2,2,1,3,[[802,1,1,1,2],[841,1,1,2,3]]]],[13116,20482,21519]]],["loftiness",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20109]]],["pride",[2,2,[[13,1,1,0,1,[[398,1,1,0,1]]],[18,1,1,1,2,[[487,1,1,1,2]]]],[11901,14045]]]]},{"k":"H1364","v":[["*",[37,32,[[0,1,1,0,1,[[6,1,1,0,1]]],[4,2,2,1,3,[[155,1,1,1,2],[180,1,1,2,3]]],[8,4,3,3,6,[[237,2,1,3,4],[244,1,1,4,5],[251,1,1,5,6]]],[10,1,1,6,7,[[304,1,1,6,7]]],[11,1,1,7,8,[[329,1,1,7,8]]],[16,2,2,8,10,[[430,1,1,8,9],[432,1,1,9,10]]],[17,1,1,10,11,[[476,1,1,10,11]]],[18,2,2,11,13,[[581,1,1,11,12],[615,1,1,12,13]]],[20,4,2,13,15,[[663,3,1,13,14],[670,1,1,14,15]]],[22,6,6,15,21,[[680,1,1,15,16],[683,1,1,16,17],[688,1,1,17,18],[708,1,1,18,19],[718,1,1,19,20],[735,1,1,20,21]]],[23,4,4,21,25,[[746,1,1,21,22],[747,1,1,22,23],[761,1,1,23,24],[795,1,1,24,25]]],[25,5,5,25,30,[[818,2,2,25,27],[822,1,1,27,28],[841,1,1,28,29],[842,1,1,29,30]]],[26,3,1,30,31,[[857,3,1,30,31]]],[35,1,1,31,32,[[906,1,1,31,32]]]],[178,4980,5663,7243,7393,7602,9241,9993,12793,12816,13922,15589,16237,17405,17528,17700,17754,17883,18242,18429,18772,18985,19008,19359,20270,20847,20849,20970,21479,21548,21964,22803]]],["+",[3,2,[[8,2,1,0,1,[[237,2,1,0,1]]],[20,1,1,1,2,[[670,1,1,1,2]]]],[7243,17528]]],["haughty",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17883]]],["height",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7602]]],["high",[23,23,[[0,1,1,0,1,[[6,1,1,0,1]]],[4,2,2,1,3,[[155,1,1,1,2],[180,1,1,2,3]]],[10,1,1,3,4,[[304,1,1,3,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[16,2,2,5,7,[[430,1,1,5,6],[432,1,1,6,7]]],[17,1,1,7,8,[[476,1,1,7,8]]],[18,1,1,8,9,[[581,1,1,8,9]]],[22,3,3,9,12,[[680,1,1,9,10],[708,1,1,10,11],[718,1,1,11,12]]],[23,4,4,12,16,[[746,1,1,12,13],[747,1,1,13,14],[761,1,1,14,15],[795,1,1,15,16]]],[25,5,5,16,21,[[818,2,2,16,18],[822,1,1,18,19],[841,1,1,19,20],[842,1,1,20,21]]],[26,1,1,21,22,[[857,1,1,21,22]]],[35,1,1,22,23,[[906,1,1,22,23]]]],[178,4980,5663,9241,9993,12793,12816,13922,15589,17700,18242,18429,18985,19008,19359,20270,20847,20849,20970,21479,21548,21964,22803]]],["higher",[5,3,[[8,1,1,0,1,[[244,1,1,0,1]]],[20,2,1,1,2,[[663,2,1,1,2]]],[26,2,1,2,3,[[857,2,1,2,3]]]],[7393,17405,21964]]],["highest",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17405]]],["lofty",[2,2,[[22,2,2,0,2,[[683,1,1,0,1],[735,1,1,1,2]]]],[17754,18772]]],["proud",[1,1,[[18,1,1,0,1,[[615,1,1,0,1]]]],[16237]]]]},{"k":"H1365","v":[["*",[2,2,[[22,2,2,0,2,[[680,2,2,0,2]]]],[17696,17702]]],["loftiness",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17702]]],["lofty",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17696]]]]},{"k":"H1366","v":[["*",[240,196,[[0,3,3,0,3,[[9,1,1,0,1],[22,1,1,1,2],[46,1,1,2,3]]],[1,7,7,3,10,[[57,1,1,3,4],[59,3,3,4,7],[62,1,1,7,8],[72,1,1,8,9],[83,1,1,9,10]]],[3,29,23,10,33,[[136,4,4,10,14],[137,6,5,14,19],[138,2,1,19,20],[149,1,1,20,21],[150,14,10,21,31],[151,2,2,31,33]]],[4,14,13,33,46,[[154,2,2,33,35],[155,4,3,35,38],[163,1,1,38,39],[164,1,1,39,40],[168,1,1,40,41],[171,3,3,41,44],[179,1,1,44,45],[180,1,1,45,46]]],[5,83,59,46,105,[[187,1,1,46,47],[198,4,3,47,50],[199,11,10,50,60],[201,23,13,60,73],[202,8,5,73,78],[203,6,4,78,82],[204,13,8,82,90],[205,15,13,90,103],[208,1,1,103,104],[210,1,1,104,105]]],[6,10,7,105,112,[[211,4,2,105,107],[212,1,1,107,108],[221,4,3,108,111],[229,1,1,111,112]]],[8,10,10,112,122,[[240,1,1,112,113],[241,2,2,113,115],[242,2,2,115,117],[245,1,1,117,118],[246,2,2,118,120],[248,1,1,120,121],[262,1,1,121,122]]],[9,1,1,122,123,[[287,1,1,122,123]]],[10,2,2,123,125,[[291,1,1,123,124],[294,1,1,124,125]]],[11,5,5,125,130,[[315,1,1,125,126],[322,1,1,126,127],[326,1,1,127,128],[327,1,1,128,129],[330,1,1,129,130]]],[12,4,4,130,134,[[341,1,1,130,131],[343,2,2,131,133],[358,1,1,133,134]]],[13,2,2,134,136,[[375,1,1,134,135],[377,1,1,135,136]]],[17,1,1,136,137,[[473,1,1,136,137]]],[18,5,5,137,142,[[555,1,1,137,138],[581,1,1,138,139],[582,2,2,139,141],[624,1,1,141,142]]],[19,3,3,142,145,[[642,1,1,142,143],[649,1,1,143,144],[650,1,1,144,145]]],[22,4,4,145,149,[[693,1,1,145,146],[697,1,1,146,147],[732,1,1,147,148],[738,1,1,148,149]]],[23,4,4,149,153,[[749,1,1,149,150],[759,1,1,150,151],[761,1,1,151,152],[775,1,1,152,153]]],[25,43,34,153,187,[[812,2,2,153,155],[828,1,1,155,156],[830,1,1,156,157],[841,2,1,157,158],[844,4,4,158,162],[846,3,2,162,164],[848,10,6,164,170],[849,20,17,170,187]]],[27,1,1,187,188,[[866,1,1,187,188]]],[28,1,1,188,189,[[878,1,1,188,189]]],[29,3,2,189,191,[[879,1,1,189,190],[884,2,1,190,191]]],[30,1,1,191,192,[[888,1,1,191,192]]],[32,1,1,192,193,[[897,1,1,192,193]]],[35,1,1,193,194,[[907,1,1,193,194]]],[38,2,2,194,196,[[925,2,2,194,196]]]],[253,588,1441,1712,1781,1791,1796,1874,2175,2520,4327,4328,4332,4334,4353,4355,4362,4363,4364,4411,4804,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4871,4872,4942,4956,4989,4991,4992,5232,5260,5346,5409,5414,5420,5602,5651,5855,6132,6134,6135,6157,6158,6164,6165,6170,6177,6179,6180,6181,6184,6203,6204,6206,6207,6208,6209,6210,6211,6212,6213,6214,6223,6249,6267,6268,6270,6271,6273,6282,6283,6284,6285,6298,6304,6305,6306,6307,6308,6309,6312,6331,6332,6333,6335,6339,6343,6346,6350,6354,6355,6362,6367,6368,6451,6506,6527,6545,6554,6847,6849,6851,7053,7325,7340,7343,7365,7366,7420,7448,7452,7503,7931,8585,8720,8865,9597,9825,9921,9941,10032,10395,10508,10520,10946,11390,11427,13813,15167,15580,15637,15639,16365,16832,17043,17054,17968,18023,18735,18839,19080,19328,19360,19708,20665,20666,21125,21193,21489,21584,21585,21589,21592,21631,21637,21692,21694,21695,21696,21697,21699,21703,21704,21705,21706,21707,21708,21709,21710,21714,21715,21723,21724,21726,21727,21728,21729,21730,22162,22349,22377,22452,22517,22639,22813,23093,23094]]],["+",[5,5,[[3,1,1,0,1,[[137,1,1,0,1]]],[25,3,3,1,4,[[846,1,1,1,2],[848,2,2,2,4]]],[29,1,1,4,5,[[884,1,1,4,5]]]],[4353,21637,21697,21699,22452]]],["border",[134,109,[[0,1,1,0,1,[[9,1,1,0,1]]],[3,22,19,1,20,[[136,2,2,1,3],[137,4,4,3,7],[138,1,1,7,8],[149,1,1,8,9],[150,13,10,9,19],[151,1,1,19,20]]],[4,3,2,20,22,[[155,2,1,20,21],[164,1,1,21,22]]],[5,54,40,22,62,[[198,3,2,22,24],[199,6,5,24,29],[201,18,11,29,40],[202,5,3,40,43],[203,3,3,43,46],[204,9,6,46,52],[205,8,8,52,60],[208,1,1,60,61],[210,1,1,61,62]]],[6,3,2,62,64,[[212,1,1,62,63],[221,2,1,63,64]]],[8,3,3,64,67,[[241,1,1,64,65],[245,1,1,65,66],[248,1,1,66,67]]],[10,1,1,67,68,[[294,1,1,67,68]]],[11,1,1,68,69,[[315,1,1,68,69]]],[13,1,1,69,70,[[375,1,1,69,70]]],[18,1,1,70,71,[[555,1,1,70,71]]],[19,1,1,71,72,[[642,1,1,71,72]]],[22,1,1,72,73,[[697,1,1,72,73]]],[23,1,1,73,74,[[775,1,1,73,74]]],[25,34,28,74,102,[[812,2,2,74,76],[830,1,1,76,77],[844,3,3,77,80],[846,1,1,80,81],[848,7,4,81,85],[849,20,17,85,102]]],[28,1,1,102,103,[[878,1,1,102,103]]],[29,2,2,103,105,[[879,1,1,103,104],[884,1,1,104,105]]],[30,1,1,105,106,[[888,1,1,105,106]]],[35,1,1,106,107,[[907,1,1,106,107]]],[38,2,2,107,109,[[925,2,2,107,109]]]],[253,4327,4332,4353,4355,4363,4364,4411,4804,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4871,4991,5260,6132,6135,6164,6165,6177,6180,6181,6203,6204,6207,6208,6209,6210,6211,6212,6213,6214,6249,6270,6271,6273,6282,6283,6285,6305,6306,6307,6308,6309,6312,6331,6332,6333,6335,6339,6343,6346,6367,6451,6506,6554,6847,7343,7420,7503,8865,9597,11390,15167,16832,18023,19708,20665,20666,21193,21585,21589,21592,21637,21692,21694,21695,21696,21703,21704,21705,21706,21707,21708,21709,21710,21714,21715,21723,21724,21726,21727,21728,21729,21730,22349,22377,22452,22517,22813,23093,23094]]],["borders",[20,20,[[0,2,2,0,2,[[22,1,1,0,1],[46,1,1,1,2]]],[1,2,2,2,4,[[57,1,1,2,3],[83,1,1,3,4]]],[3,3,3,4,7,[[136,1,1,4,5],[137,1,1,5,6],[151,1,1,6,7]]],[5,3,3,7,10,[[199,2,2,7,9],[202,1,1,9,10]]],[11,1,1,10,11,[[330,1,1,10,11]]],[18,1,1,11,12,[[624,1,1,11,12]]],[22,3,3,12,15,[[693,1,1,12,13],[732,1,1,13,14],[738,1,1,14,15]]],[23,2,2,15,17,[[759,1,1,15,16],[761,1,1,16,17]]],[25,2,2,17,19,[[828,1,1,17,18],[846,1,1,18,19]]],[32,1,1,19,20,[[897,1,1,19,20]]]],[588,1441,1712,2520,4328,4362,4872,6157,6158,6267,10032,16365,17968,18735,18839,19328,19360,21125,21631,22639]]],["bound",[4,4,[[17,1,1,0,1,[[473,1,1,0,1]]],[18,1,1,1,2,[[581,1,1,1,2]]],[23,1,1,2,3,[[749,1,1,2,3]]],[27,1,1,3,4,[[866,1,1,3,4]]]],[13813,15580,19080,22162]]],["bounds",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2175]]],["coast",[46,39,[[1,1,1,0,1,[[59,1,1,0,1]]],[3,3,3,1,4,[[136,1,1,1,2],[138,1,1,2,3],[150,1,1,3,4]]],[4,6,6,4,10,[[154,2,2,4,6],[155,1,1,6,7],[163,1,1,7,8],[168,1,1,8,9],[171,1,1,9,10]]],[5,25,20,10,30,[[187,1,1,10,11],[198,1,1,11,12],[199,3,3,12,15],[201,5,3,15,18],[202,2,1,18,19],[203,3,2,19,21],[204,3,3,21,24],[205,7,6,24,30]]],[6,5,3,30,33,[[211,4,2,30,32],[221,1,1,32,33]]],[8,3,3,33,36,[[241,1,1,33,34],[242,1,1,34,35],[262,1,1,35,36]]],[11,1,1,36,37,[[326,1,1,36,37]]],[12,1,1,37,38,[[341,1,1,37,38]]],[25,1,1,38,39,[[848,1,1,38,39]]]],[1781,4334,4411,4827,4942,4956,4992,5232,5346,5414,5855,6134,6170,6179,6184,6206,6214,6223,6268,6282,6284,6298,6304,6312,6343,6350,6354,6355,6362,6368,6527,6545,6849,7340,7365,7931,9921,10395,21695]]],["coasts",[22,22,[[1,2,2,0,2,[[59,2,2,0,2]]],[4,3,3,2,5,[[155,1,1,2,3],[171,1,1,3,4],[180,1,1,4,5]]],[5,1,1,5,6,[[204,1,1,5,6]]],[6,2,2,6,8,[[221,1,1,6,7],[229,1,1,7,8]]],[8,4,4,8,12,[[240,1,1,8,9],[242,1,1,9,10],[246,2,2,10,12]]],[9,1,1,12,13,[[287,1,1,12,13]]],[10,1,1,13,14,[[291,1,1,13,14]]],[11,2,2,14,16,[[322,1,1,14,15],[327,1,1,15,16]]],[12,3,3,16,19,[[343,2,2,16,18],[358,1,1,18,19]]],[13,1,1,19,20,[[377,1,1,19,20]]],[18,2,2,20,22,[[582,2,2,20,22]]]],[1791,1796,4989,5409,5651,6298,6851,7053,7325,7366,7448,7452,8585,8720,9825,9941,10508,10520,10946,11427,15637,15639]]],["landmark",[4,4,[[4,2,2,0,2,[[171,1,1,0,1],[179,1,1,1,2]]],[19,2,2,2,4,[[649,1,1,2,3],[650,1,1,3,4]]]],[5420,5602,17043,17054]]],["limit",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21584]]],["quarters",[1,1,[[1,1,1,0,1,[[62,1,1,0,1]]]],[1874]]],["space",[2,1,[[25,2,1,0,1,[[841,2,1,0,1]]]],[21489]]]]},{"k":"H1367","v":[["*",[10,10,[[3,3,3,0,3,[[148,1,1,0,1],[150,2,2,1,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[5,2,2,4,6,[[204,1,1,4,5],[205,1,1,5,6]]],[17,1,1,6,7,[[459,1,1,6,7]]],[18,1,1,7,8,[[551,1,1,7,8]]],[22,2,2,8,10,[[688,1,1,8,9],[706,1,1,9,10]]]],[4751,4818,4828,5766,6313,6370,13438,15065,17863,18189]]],["borders",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15065]]],["bounds",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[5766,17863]]],["coasts",[5,5,[[3,3,3,0,3,[[148,1,1,0,1],[150,2,2,1,3]]],[5,2,2,3,5,[[204,1,1,3,4],[205,1,1,4,5]]]],[4751,4818,4828,6313,6370]]],["landmarks",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13438]]],["place",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18189]]]]},{"k":"H1368","v":[["*",[159,152,[[0,4,3,0,3,[[5,1,1,0,1],[9,3,2,1,3]]],[4,1,1,3,4,[[162,1,1,3,4]]],[5,5,5,4,9,[[187,1,1,4,5],[192,1,1,5,6],[194,1,1,6,7],[196,2,2,7,9]]],[6,4,4,9,13,[[215,2,2,9,11],[216,1,1,11,12],[221,1,1,12,13]]],[7,1,1,13,14,[[233,1,1,13,14]]],[8,5,5,14,19,[[237,1,1,14,15],[244,1,1,15,16],[249,1,1,16,17],[251,1,1,17,18],[252,1,1,18,19]]],[9,16,16,19,35,[[267,5,5,19,24],[276,1,1,24,25],[282,1,1,25,26],[283,2,2,26,28],[286,1,1,28,29],[288,1,1,29,30],[289,5,5,30,35]]],[10,3,3,35,38,[[291,2,2,35,37],[301,1,1,37,38]]],[11,4,4,38,42,[[317,1,1,38,39],[327,1,1,39,40],[336,2,2,40,42]]],[12,31,30,42,72,[[338,1,1,42,43],[342,1,1,43,44],[344,6,6,44,50],[345,1,1,50,51],[346,2,2,51,53],[348,6,6,53,59],[349,7,7,59,66],[356,1,1,66,67],[363,2,2,67,69],[364,1,1,69,70],[365,2,1,70,71],[366,1,1,71,72]]],[13,12,11,72,83,[[379,2,1,72,73],[380,1,1,73,74],[383,4,4,74,78],[391,1,1,78,79],[392,1,1,79,80],[394,1,1,80,81],[398,2,2,81,83]]],[14,1,1,83,84,[[409,1,1,83,84]]],[15,3,3,84,87,[[415,1,1,84,85],[421,1,1,85,86],[423,1,1,86,87]]],[17,1,1,87,88,[[451,1,1,87,88]]],[18,12,11,88,99,[[496,1,1,88,89],[501,2,1,89,90],[510,1,1,90,91],[522,1,1,91,92],[529,1,1,92,93],[555,1,1,93,94],[566,1,1,94,95],[580,1,1,95,96],[589,1,1,96,97],[597,1,1,97,98],[604,1,1,98,99]]],[19,3,3,99,102,[[643,1,1,99,100],[648,1,1,100,101],[657,1,1,101,102]]],[20,1,1,102,103,[[667,1,1,102,103]]],[21,3,2,103,105,[[673,2,1,103,104],[674,1,1,104,105]]],[22,9,9,105,114,[[681,1,1,105,106],[683,1,1,106,107],[687,1,1,107,108],[688,1,1,108,109],[691,1,1,109,110],[699,1,1,110,111],[720,1,1,111,112],[727,2,2,112,114]]],[23,19,18,114,132,[[749,1,1,114,115],[753,1,1,115,116],[758,1,1,116,117],[764,1,1,117,118],[770,1,1,118,119],[776,1,1,119,120],[790,5,4,120,124],[792,2,2,124,126],[793,1,1,126,127],[794,2,2,127,129],[795,3,3,129,132]]],[25,6,5,132,137,[[833,4,3,132,135],[840,2,2,135,137]]],[26,1,1,137,138,[[860,1,1,137,138]]],[27,1,1,138,139,[[871,1,1,138,139]]],[28,4,4,139,143,[[877,1,1,139,140],[878,3,3,140,143]]],[29,2,2,143,145,[[880,2,2,143,145]]],[30,1,1,145,146,[[888,1,1,145,146]]],[33,1,1,146,147,[[901,1,1,146,147]]],[35,2,2,147,149,[[906,1,1,147,148],[908,1,1,148,149]]],[37,3,3,149,152,[[919,1,1,149,150],[920,2,2,150,152]]]],[141,242,243,5203,5865,5951,6005,6066,6071,6636,6646,6666,6830,7150,7244,7392,7560,7613,7669,8041,8043,8044,8047,8049,8247,8432,8457,8459,8561,8628,8661,8662,8669,8670,8675,8725,8727,9136,9648,9945,10216,10218,10262,10452,10537,10540,10542,10544,10546,10575,10615,10628,10641,10683,10684,10685,10692,10697,10699,10721,10724,10728,10741,10745,10748,10750,10915,11083,11108,11115,11144,11188,11456,11483,11536,11537,11539,11540,11710,11744,11771,11878,11896,12201,12343,12543,12602,13252,14173,14249,14382,14600,14711,15178,15345,15569,15805,16078,16125,16872,17006,17281,17486,17578,17586,17709,17761,17835,17871,17909,18052,18493,18660,18661,19074,19198,19302,19433,19593,19749,20050,20051,20054,20057,20094,20121,20149,20175,20202,20242,20268,20269,21260,21269,21275,21466,21468,22039,22238,22318,22352,22353,22354,22393,22395,22519,22702,22801,22837,23012,23021,23023]]],["+",[4,4,[[12,1,1,0,1,[[346,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]],[21,1,1,2,3,[[673,1,1,2,3]]],[22,1,1,3,4,[[727,1,1,3,4]]]],[10628,16872,17578,18660]]],["Mighty",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19749]]],["champion",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7669]]],["chief",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10641]]],["excel",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15569]]],["giant",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13252]]],["man",[18,18,[[6,2,2,0,2,[[216,1,1,0,1],[221,1,1,1,2]]],[8,1,1,2,3,[[244,1,1,2,3]]],[9,2,2,3,5,[[283,1,1,3,4],[288,1,1,4,5]]],[12,1,1,5,6,[[349,1,1,5,6]]],[13,2,2,6,8,[[383,1,1,6,7],[394,1,1,7,8]]],[18,4,4,8,12,[[496,1,1,8,9],[510,1,1,9,10],[529,1,1,10,11],[555,1,1,11,12]]],[22,1,1,12,13,[[720,1,1,12,13]]],[23,3,3,13,16,[[758,1,1,13,14],[790,2,2,14,16]]],[35,1,1,16,17,[[906,1,1,16,17]]],[37,1,1,17,18,[[919,1,1,17,18]]]],[6666,6830,7392,8459,8628,10724,11540,11771,14173,14382,14711,15178,18493,19302,20051,20057,22801,23012]]],["men",[64,62,[[0,1,1,0,1,[[5,1,1,0,1]]],[5,2,2,1,3,[[187,1,1,1,2],[196,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[9,9,9,4,13,[[276,1,1,4,5],[282,1,1,5,6],[283,1,1,6,7],[286,1,1,7,8],[289,5,5,8,13]]],[10,2,2,13,15,[[291,2,2,13,15]]],[11,2,2,15,17,[[327,1,1,15,16],[336,1,1,16,17]]],[12,20,19,17,36,[[344,6,6,17,23],[348,3,3,23,26],[349,5,5,26,31],[356,1,1,31,32],[363,2,2,32,34],[365,2,1,34,35],[366,1,1,35,36]]],[13,10,9,36,45,[[379,2,1,36,37],[380,1,1,37,38],[383,3,3,38,41],[391,1,1,41,42],[392,1,1,42,43],[398,2,2,43,45]]],[15,1,1,45,46,[[423,1,1,45,46]]],[21,2,2,46,48,[[673,1,1,46,47],[674,1,1,47,48]]],[22,1,1,48,49,[[699,1,1,48,49]]],[23,8,8,49,57,[[749,1,1,49,50],[770,1,1,50,51],[790,1,1,51,52],[793,1,1,52,53],[794,1,1,53,54],[795,3,3,54,57]]],[25,1,1,57,58,[[840,1,1,57,58]]],[27,1,1,58,59,[[871,1,1,58,59]]],[28,2,2,59,61,[[877,1,1,59,60],[878,1,1,60,61]]],[33,1,1,61,62,[[901,1,1,61,62]]]],[141,5865,6071,7244,8247,8432,8457,8561,8661,8662,8669,8670,8675,8725,8727,9945,10216,10537,10540,10542,10544,10546,10575,10683,10684,10699,10721,10728,10741,10745,10750,10915,11083,11108,11144,11188,11456,11483,11536,11537,11539,11710,11744,11878,11896,12602,17578,17586,18052,19074,19593,20054,20149,20202,20242,20268,20269,21468,22238,22318,22352,22702]]],["men's",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20121]]],["mighties",[2,2,[[12,2,2,0,2,[[348,2,2,0,2]]]],[10685,10697]]],["mightiest",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10692]]],["mighty",[55,52,[[0,2,1,0,1,[[9,2,1,0,1]]],[4,1,1,1,2,[[162,1,1,1,2]]],[5,3,3,2,5,[[192,1,1,2,3],[194,1,1,3,4],[196,1,1,4,5]]],[6,2,2,5,7,[[215,2,2,5,7]]],[7,1,1,7,8,[[233,1,1,7,8]]],[8,1,1,8,9,[[251,1,1,8,9]]],[9,5,5,9,14,[[267,5,5,9,14]]],[10,1,1,14,15,[[301,1,1,14,15]]],[11,1,1,15,16,[[317,1,1,15,16]]],[12,5,5,16,21,[[338,1,1,16,17],[342,1,1,17,18],[345,1,1,18,19],[349,1,1,19,20],[364,1,1,20,21]]],[14,1,1,21,22,[[409,1,1,21,22]]],[15,2,2,22,24,[[415,1,1,22,23],[421,1,1,23,24]]],[18,7,6,24,30,[[501,2,1,24,25],[522,1,1,25,26],[566,1,1,26,27],[589,1,1,27,28],[597,1,1,28,29],[604,1,1,29,30]]],[19,1,1,30,31,[[648,1,1,30,31]]],[22,5,5,31,36,[[681,1,1,31,32],[683,1,1,32,33],[687,1,1,33,34],[688,1,1,34,35],[727,1,1,35,36]]],[23,5,5,36,41,[[753,1,1,36,37],[764,1,1,37,38],[790,1,1,38,39],[792,1,1,39,40],[794,1,1,40,41]]],[25,5,4,41,45,[[833,4,3,41,44],[840,1,1,44,45]]],[26,1,1,45,46,[[860,1,1,45,46]]],[29,2,2,46,48,[[880,2,2,46,48]]],[30,1,1,48,49,[[888,1,1,48,49]]],[35,1,1,49,50,[[908,1,1,49,50]]],[37,2,2,50,52,[[920,2,2,50,52]]]],[243,5203,5951,6005,6066,6636,6646,7150,7613,8041,8043,8044,8047,8049,9136,9648,10262,10452,10615,10748,11115,12201,12343,12543,14249,14600,15345,15805,16078,16125,17006,17709,17761,17835,17871,18661,19198,19433,20057,20094,20175,21260,21269,21275,21466,22039,22393,22395,22519,22837,23021,23023]]],["one",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[242]]],["ones",[3,3,[[22,1,1,0,1,[[691,1,1,0,1]]],[23,1,1,1,2,[[790,1,1,1,2]]],[28,1,1,2,3,[[878,1,1,2,3]]]],[17909,20050,22354]]],["strong",[4,4,[[8,1,1,0,1,[[249,1,1,0,1]]],[11,1,1,1,2,[[336,1,1,1,2]]],[20,1,1,2,3,[[667,1,1,2,3]]],[28,1,1,3,4,[[878,1,1,3,4]]]],[7560,10218,17486,22353]]],["strongest",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17281]]]]},{"k":"H1369","v":[["*",[61,61,[[1,1,1,0,1,[[81,1,1,0,1]]],[4,1,1,1,2,[[155,1,1,1,2]]],[6,2,2,2,4,[[215,1,1,2,3],[218,1,1,3,4]]],[10,4,4,4,8,[[305,1,1,4,5],[306,2,2,5,7],[312,1,1,7,8]]],[11,7,7,8,15,[[322,1,1,8,9],[325,2,2,9,11],[326,2,2,11,13],[330,1,1,13,14],[332,1,1,14,15]]],[12,3,3,15,18,[[366,3,3,15,18]]],[13,1,1,18,19,[[386,1,1,18,19]]],[16,1,1,19,20,[[435,1,1,19,20]]],[17,4,4,20,24,[[447,1,1,20,21],[461,1,1,21,22],[474,1,1,22,23],[476,1,1,23,24]]],[18,17,17,24,41,[[497,1,1,24,25],[498,1,1,25,26],[531,1,1,26,27],[542,1,1,27,28],[543,1,1,28,29],[548,2,2,29,31],[557,1,1,31,32],[566,1,1,32,33],[567,1,1,33,34],[583,2,2,34,36],[622,3,3,36,39],[624,1,1,39,40],[627,1,1,40,41]]],[19,1,1,41,42,[[635,1,1,41,42]]],[20,2,2,42,44,[[667,1,1,42,43],[668,1,1,43,44]]],[22,7,7,44,51,[[681,1,1,44,45],[689,1,1,45,46],[706,1,1,46,47],[708,1,1,47,48],[711,1,1,48,49],[714,1,1,49,50],[741,1,1,50,51]]],[23,6,6,51,57,[[753,1,1,51,52],[754,1,1,52,53],[760,1,1,53,54],[767,1,1,54,55],[793,1,1,55,56],[795,1,1,56,57]]],[25,2,2,57,59,[[833,2,2,57,59]]],[32,2,2,59,61,[[895,1,1,59,60],[899,1,1,60,61]]]],[2456,4999,6654,6740,9272,9288,9310,9525,9827,9879,9883,9911,9924,10044,10118,11175,11176,11194,11593,12868,13141,13481,13853,13900,14188,14204,14726,14866,14880,14992,14994,15200,15339,15388,15653,15659,16324,16331,16332,16361,16396,16616,17491,17510,17732,17886,18170,18232,18292,18335,18881,19198,19207,19357,19494,20162,20242,21277,21278,22616,22680]]],["+",[2,2,[[20,1,1,0,1,[[667,1,1,0,1]]],[25,1,1,1,2,[[833,1,1,1,2]]]],[17491,21278]]],["acts",[4,4,[[18,4,4,0,4,[[583,1,1,0,1],[622,2,2,1,3],[627,1,1,3,4]]]],[15653,16324,16332,16396]]],["force",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19494]]],["mastery",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2456]]],["might",[26,26,[[4,1,1,0,1,[[155,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[10,4,4,2,6,[[305,1,1,2,3],[306,2,2,3,5],[312,1,1,5,6]]],[11,6,6,6,12,[[322,1,1,6,7],[325,2,2,7,9],[326,2,2,9,11],[332,1,1,11,12]]],[12,2,2,12,14,[[366,2,2,12,14]]],[13,1,1,14,15,[[386,1,1,14,15]]],[16,1,1,15,16,[[435,1,1,15,16]]],[22,2,2,16,18,[[689,1,1,16,17],[711,1,1,17,18]]],[23,5,5,18,23,[[753,1,1,18,19],[754,1,1,19,20],[760,1,1,20,21],[793,1,1,21,22],[795,1,1,22,23]]],[25,1,1,23,24,[[833,1,1,23,24]]],[32,2,2,24,26,[[895,1,1,24,25],[899,1,1,25,26]]]],[4999,6654,9272,9288,9310,9525,9827,9879,9883,9911,9924,10118,11176,11194,11593,12868,17886,18292,19198,19207,19357,20162,20242,21277,22616,22680]]],["mighty",[2,2,[[18,1,1,0,1,[[566,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]]],[15339,17732]]],["power",[9,9,[[12,1,1,0,1,[[366,1,1,0,1]]],[17,2,2,1,3,[[461,1,1,1,2],[476,1,1,2,3]]],[18,6,6,3,9,[[498,1,1,3,4],[542,1,1,4,5],[543,1,1,5,6],[548,1,1,6,7],[583,1,1,7,8],[622,1,1,8,9]]]],[11175,13481,13900,14204,14866,14880,14994,15659,16331]]],["strength",[16,16,[[6,1,1,0,1,[[218,1,1,0,1]]],[11,1,1,1,2,[[330,1,1,1,2]]],[17,2,2,2,4,[[447,1,1,2,3],[474,1,1,3,4]]],[18,6,6,4,10,[[497,1,1,4,5],[531,1,1,5,6],[548,1,1,6,7],[557,1,1,7,8],[567,1,1,8,9],[624,1,1,9,10]]],[19,1,1,10,11,[[635,1,1,10,11]]],[20,1,1,11,12,[[668,1,1,11,12]]],[22,4,4,12,16,[[706,1,1,12,13],[708,1,1,13,14],[714,1,1,14,15],[741,1,1,15,16]]]],[6740,10044,13141,13853,14188,14726,14992,15200,15388,16361,16616,17510,18170,18232,18335,18881]]]]},{"k":"H1370","v":[["might",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21778,21781]]]]},{"k":"H1371","v":[["bald",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3093]]]]},{"k":"H1372","v":[["*",[4,3,[[2,4,3,0,3,[[102,4,3,0,3]]]],[3094,3095,3107]]],["forehead",[3,2,[[2,3,2,0,2,[[102,3,2,0,2]]]],[3094,3095]]],["without",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3107]]]]},{"k":"H1373","v":[["Gabbai",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12596]]]]},{"k":"H1374","v":[["Gebim",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17881]]]]},{"k":"H1375","v":[["*",[14,11,[[0,5,4,0,4,[[43,5,4,0,4]]],[1,8,6,4,10,[[74,4,3,4,7],[86,4,3,7,10]]],[23,1,1,10,11,[[779,1,1,10,11]]]],[1326,1336,1340,1341,2226,2228,2229,2621,2623,2624,19828]]],["bowls",[8,6,[[1,8,6,0,6,[[74,4,3,0,3],[86,4,3,3,6]]]],[2226,2228,2229,2621,2623,2624]]],["cup",[5,4,[[0,5,4,0,4,[[43,5,4,0,4]]]],[1326,1336,1340,1341]]],["pots",[1,1,[[23,1,1,0,1,[[779,1,1,0,1]]]],[19828]]]]},{"k":"H1376","v":[["lord",[2,2,[[0,2,2,0,2,[[26,2,2,0,2]]]],[756,764]]]]},{"k":"H1377","v":[["*",[6,6,[[10,2,2,0,2,[[301,1,1,0,1],[305,1,1,1,2]]],[11,1,1,2,3,[[322,1,1,2,3]]],[13,1,1,3,4,[[381,1,1,3,4]]],[23,2,2,4,6,[[757,1,1,4,5],[773,1,1,5,6]]]],[9127,9262,9806,11506,19284,19637]]],["+",[2,2,[[10,1,1,0,1,[[305,1,1,0,1]]],[13,1,1,1,2,[[381,1,1,1,2]]]],[9262,11506]]],["queen",[4,4,[[10,1,1,0,1,[[301,1,1,0,1]]],[11,1,1,1,2,[[322,1,1,1,2]]],[23,2,2,2,4,[[757,1,1,2,3],[773,1,1,3,4]]]],[9127,9806,19284,19637]]]]},{"k":"H1378","v":[["pearls",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13522]]]]},{"k":"H1379","v":[["*",[5,5,[[1,2,2,0,2,[[68,2,2,0,2]]],[4,1,1,2,3,[[171,1,1,2,3]]],[5,1,1,3,4,[[204,1,1,3,4]]],[37,1,1,4,5,[[919,1,1,4,5]]]],[2038,2049,5420,6313,23001]]],["+",[2,2,[[1,2,2,0,2,[[68,2,2,0,2]]]],[2038,2049]]],["border",[2,2,[[5,1,1,0,1,[[204,1,1,0,1]]],[37,1,1,1,2,[[919,1,1,1,2]]]],[6313,23001]]],["set",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5420]]]]},{"k":"H1380","v":[["Gebal",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21130]]]]},{"k":"H1381","v":[["Gebal",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15248]]]]},{"k":"H1382","v":[["*",[2,2,[[5,1,1,0,1,[[199,1,1,0,1]]],[10,1,1,1,2,[[295,1,1,1,2]]]],[6159,8896]]],["Giblites",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6159]]],["stonesquarers",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8896]]]]},{"k":"H1383","v":[["ends",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2315,2679]]]]},{"k":"H1384","v":[["crookbackt",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3365]]]]},{"k":"H1385","v":[["cheese",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13096]]]]},{"k":"H1386","v":[["high",[2,2,[[18,2,2,0,2,[[545,2,2,0,2]]]],[14915,14916]]]]},{"k":"H1387","v":[["*",[18,18,[[5,2,2,0,2,[[204,1,1,0,1],[207,1,1,1,2]]],[6,1,1,2,3,[[230,1,1,2,3]]],[8,3,3,3,6,[[248,2,2,3,5],[249,1,1,5,6]]],[9,1,1,6,7,[[271,1,1,6,7]]],[10,1,1,7,8,[[305,1,1,7,8]]],[11,1,1,8,9,[[335,1,1,8,9]]],[12,2,2,9,11,[[343,1,1,9,10],[345,1,1,10,11]]],[13,1,1,11,12,[[382,1,1,11,12]]],[14,1,1,12,13,[[404,1,1,12,13]]],[15,3,3,13,16,[[419,1,1,13,14],[423,1,1,14,15],[424,1,1,15,16]]],[22,1,1,16,17,[[688,1,1,16,17]]],[37,1,1,17,18,[[924,1,1,17,18]]]],[6317,6398,7064,7488,7501,7513,8157,9271,10173,10514,10581,11515,12053,12450,12619,12653,17879,23078]]],["+",[4,4,[[9,1,1,0,1,[[271,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]],[15,1,1,2,3,[[423,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[8157,10173,12619,23078]]],["Gaba",[2,2,[[5,1,1,0,1,[[204,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]]],[6317,12053]]],["Geba",[9,9,[[5,1,1,0,1,[[207,1,1,0,1]]],[8,1,1,1,2,[[248,1,1,1,2]]],[10,1,1,2,3,[[305,1,1,2,3]]],[12,2,2,3,5,[[343,1,1,3,4],[345,1,1,4,5]]],[13,1,1,5,6,[[382,1,1,5,6]]],[15,2,2,6,8,[[419,1,1,6,7],[424,1,1,7,8]]],[22,1,1,8,9,[[688,1,1,8,9]]]],[6398,7488,9271,10514,10581,11515,12450,12653,17879]]],["Gibeah",[3,3,[[6,1,1,0,1,[[230,1,1,0,1]]],[8,2,2,1,3,[[248,1,1,1,2],[249,1,1,2,3]]]],[7064,7501,7513]]]]},{"k":"H1388","v":[["Gibea",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10355]]]]},{"k":"H1389","v":[["*",[69,69,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[66,2,2,1,3]]],[3,1,1,3,4,[[139,1,1,3,4]]],[4,2,2,4,6,[[164,1,1,4,5],[185,1,1,5,6]]],[5,2,2,6,8,[[191,1,1,6,7],[210,1,1,7,8]]],[6,1,1,8,9,[[217,1,1,8,9]]],[8,6,6,9,15,[[242,1,1,9,10],[245,2,2,10,12],[258,1,1,12,13],[261,2,2,13,15]]],[9,2,2,15,17,[[268,2,2,15,17]]],[10,1,1,17,18,[[304,1,1,17,18]]],[11,2,2,18,20,[[328,1,1,18,19],[329,1,1,19,20]]],[13,1,1,20,21,[[394,1,1,20,21]]],[17,1,1,21,22,[[450,1,1,21,22]]],[18,5,5,22,27,[[542,1,1,22,23],[549,1,1,23,24],[591,2,2,24,26],[625,1,1,26,27]]],[19,1,1,27,28,[[635,1,1,27,28]]],[21,2,2,28,30,[[672,1,1,28,29],[674,1,1,29,30]]],[22,13,13,30,43,[[680,2,2,30,32],[688,1,1,32,33],[708,2,2,33,35],[709,1,1,35,36],[718,2,2,36,38],[719,1,1,38,39],[720,1,1,39,40],[732,1,1,40,41],[733,1,1,41,42],[743,1,1,42,43]]],[23,9,9,43,52,[[746,1,1,43,44],[747,1,1,44,45],[748,1,1,45,46],[757,1,1,46,47],[760,1,1,47,48],[761,1,1,48,49],[775,1,1,49,50],[793,1,1,50,51],[794,1,1,51,52]]],[25,8,8,52,60,[[807,2,2,52,54],[821,1,1,54,55],[835,2,2,55,57],[836,1,1,57,58],[837,2,2,58,60]]],[27,2,2,60,62,[[865,1,1,60,61],[871,1,1,61,62]]],[28,1,1,62,63,[[878,1,1,62,63]]],[29,1,1,63,64,[[887,1,1,63,64]]],[32,2,2,64,66,[[896,1,1,64,65],[898,1,1,65,66]]],[33,1,1,66,67,[[900,1,1,66,67]]],[34,1,1,67,68,[[905,1,1,67,68]]],[35,1,1,68,69,[[906,1,1,68,69]]]],[1499,1992,1993,4425,5242,5825,5937,6509,6695,7353,7423,7428,7829,7906,7908,8073,8074,9241,9967,9993,11768,13210,14872,15003,15826,15828,16380,16627,17562,17588,17687,17699,17882,18234,18242,18254,18424,18432,18466,18495,18733,18752,18904,18985,19025,19051,19293,19352,19359,19730,20143,20172,20566,20576,20923,21319,21339,21352,21363,21365,22146,22233,22361,22508,22621,22649,22689,22774,22797]]],["+",[6,6,[[3,1,1,0,1,[[139,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]],[22,1,1,2,3,[[680,1,1,2,3]]],[23,1,1,3,4,[[747,1,1,3,4]]],[32,1,1,4,5,[[896,1,1,4,5]]],[35,1,1,5,6,[[906,1,1,5,6]]]],[4425,6695,17687,19025,22621,22797]]],["hill",[29,29,[[1,2,2,0,2,[[66,2,2,0,2]]],[5,2,2,2,4,[[191,1,1,2,3],[210,1,1,3,4]]],[8,6,6,4,10,[[242,1,1,4,5],[245,2,2,5,7],[258,1,1,7,8],[261,2,2,8,10]]],[9,2,2,10,12,[[268,2,2,10,12]]],[10,1,1,12,13,[[304,1,1,12,13]]],[11,1,1,13,14,[[329,1,1,13,14]]],[21,1,1,14,15,[[674,1,1,14,15]]],[22,5,5,15,20,[[688,1,1,15,16],[708,2,2,16,18],[709,1,1,18,19],[718,1,1,19,20]]],[23,5,5,20,25,[[746,1,1,20,21],[760,1,1,21,22],[775,1,1,22,23],[793,1,1,23,24],[794,1,1,24,25]]],[25,4,4,25,29,[[807,1,1,25,26],[821,1,1,26,27],[835,2,2,27,29]]]],[1992,1993,5937,6509,7353,7423,7428,7829,7906,7908,8073,8074,9241,9993,17588,17882,18234,18242,18254,18424,18985,19352,19730,20143,20172,20576,20923,21319,21339]]],["hills",[34,34,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,2,2,1,3,[[164,1,1,1,2],[185,1,1,2,3]]],[11,1,1,3,4,[[328,1,1,3,4]]],[13,1,1,4,5,[[394,1,1,4,5]]],[17,1,1,5,6,[[450,1,1,5,6]]],[18,5,5,6,11,[[542,1,1,6,7],[549,1,1,7,8],[591,2,2,8,10],[625,1,1,10,11]]],[19,1,1,11,12,[[635,1,1,11,12]]],[21,1,1,12,13,[[672,1,1,12,13]]],[22,7,7,13,20,[[680,1,1,13,14],[718,1,1,14,15],[719,1,1,15,16],[720,1,1,16,17],[732,1,1,17,18],[733,1,1,18,19],[743,1,1,19,20]]],[23,3,3,20,23,[[748,1,1,20,21],[757,1,1,21,22],[761,1,1,22,23]]],[25,4,4,23,27,[[807,1,1,23,24],[836,1,1,24,25],[837,2,2,25,27]]],[27,2,2,27,29,[[865,1,1,27,28],[871,1,1,28,29]]],[28,1,1,29,30,[[878,1,1,29,30]]],[29,1,1,30,31,[[887,1,1,30,31]]],[32,1,1,31,32,[[898,1,1,31,32]]],[33,1,1,32,33,[[900,1,1,32,33]]],[34,1,1,33,34,[[905,1,1,33,34]]]],[1499,5242,5825,9967,11768,13210,14872,15003,15826,15828,16380,16627,17562,17699,18432,18466,18495,18733,18752,18904,19051,19293,19359,20566,21352,21363,21365,22146,22233,22361,22508,22649,22689,22774]]]]},{"k":"H1390","v":[["*",[45,44,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,23,23,1,24,[[229,5,5,1,6],[230,18,18,6,24]]],[8,10,10,24,34,[[245,1,1,24,25],[246,1,1,25,26],[248,2,2,26,28],[249,2,2,28,30],[250,1,1,30,31],[257,1,1,31,32],[258,1,1,32,33],[261,1,1,33,34]]],[9,4,4,34,38,[[272,2,2,34,36],[287,1,1,36,37],[289,1,1,37,38]]],[12,1,1,38,39,[[348,1,1,38,39]]],[13,1,1,39,40,[[379,1,1,39,40]]],[22,1,1,40,41,[[688,1,1,40,41]]],[27,4,3,41,44,[[866,1,1,41,42],[870,1,1,42,43],[871,2,1,43,44]]]],[6259,7036,7037,7038,7039,7040,7058,7059,7063,7067,7068,7069,7073,7074,7075,7079,7083,7084,7085,7087,7088,7090,7091,7097,7444,7449,7487,7500,7510,7524,7594,7793,7829,7906,8160,8161,8586,8682,10704,11455,17879,22160,22217,22234]]],["+",[3,3,[[6,1,1,0,1,[[230,1,1,0,1]]],[9,1,1,1,2,[[289,1,1,1,2]]],[12,1,1,2,3,[[348,1,1,2,3]]]],[7087,8682,10704]]],["Gibeah",[42,41,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,22,22,1,23,[[229,5,5,1,6],[230,17,17,6,23]]],[8,10,10,23,33,[[245,1,1,23,24],[246,1,1,24,25],[248,2,2,25,27],[249,2,2,27,29],[250,1,1,29,30],[257,1,1,30,31],[258,1,1,31,32],[261,1,1,32,33]]],[9,3,3,33,36,[[272,2,2,33,35],[287,1,1,35,36]]],[13,1,1,36,37,[[379,1,1,36,37]]],[22,1,1,37,38,[[688,1,1,37,38]]],[27,4,3,38,41,[[866,1,1,38,39],[870,1,1,39,40],[871,2,1,40,41]]]],[6259,7036,7037,7038,7039,7040,7058,7059,7063,7067,7068,7069,7073,7074,7075,7079,7083,7084,7085,7088,7090,7091,7097,7444,7449,7487,7500,7510,7524,7594,7793,7829,7906,8160,8161,8586,11455,17879,22160,22217,22234]]]]},{"k":"H1391","v":[["*",[37,35,[[5,13,13,0,13,[[195,2,2,0,2],[196,8,8,2,10],[197,1,1,10,11],[204,1,1,11,12],[207,1,1,12,13]]],[9,6,6,13,19,[[268,4,4,13,17],[269,1,1,17,18],[286,1,1,18,19]]],[10,3,3,19,22,[[293,2,2,19,21],[299,1,1,21,22]]],[12,7,5,22,27,[[345,2,1,22,23],[346,2,1,23,24],[351,1,1,24,25],[353,1,1,25,26],[358,1,1,26,27]]],[13,2,2,27,29,[[367,2,2,27,29]]],[15,2,2,29,31,[[415,1,1,29,30],[419,1,1,30,31]]],[22,1,1,31,32,[[706,1,1,31,32]]],[23,3,3,32,35,[[772,1,1,32,33],[785,2,2,33,35]]]],[6040,6054,6065,6066,6068,6069,6070,6074,6076,6105,6126,6318,6398,8061,8062,8065,8073,8111,8562,8820,8821,9053,10604,10650,10790,10859,10963,11197,11207,12334,12445,18185,19619,19969,19973]]],["+",[4,4,[[5,1,1,0,1,[[197,1,1,0,1]]],[12,1,1,1,2,[[351,1,1,1,2]]],[23,2,2,2,4,[[772,1,1,2,3],[785,1,1,3,4]]]],[6126,10790,19619,19973]]],["Gibeon",[33,31,[[5,12,12,0,12,[[195,2,2,0,2],[196,8,8,2,10],[204,1,1,10,11],[207,1,1,11,12]]],[9,6,6,12,18,[[268,4,4,12,16],[269,1,1,16,17],[286,1,1,17,18]]],[10,3,3,18,21,[[293,2,2,18,20],[299,1,1,20,21]]],[12,6,4,21,25,[[345,2,1,21,22],[346,2,1,22,23],[353,1,1,23,24],[358,1,1,24,25]]],[13,2,2,25,27,[[367,2,2,25,27]]],[15,2,2,27,29,[[415,1,1,27,28],[419,1,1,28,29]]],[22,1,1,29,30,[[706,1,1,29,30]]],[23,1,1,30,31,[[785,1,1,30,31]]]],[6040,6054,6065,6066,6068,6069,6070,6074,6076,6105,6318,6398,8061,8062,8065,8073,8111,8562,8820,8821,9053,10604,10650,10859,10963,11197,11207,12334,12445,18185,19969]]]]},{"k":"H1392","v":[["bolled",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1773]]]]},{"k":"H1393","v":[["*",[8,7,[[9,6,5,0,5,[[287,6,5,0,5]]],[12,1,1,5,6,[[349,1,1,5,6]]],[15,1,1,6,7,[[415,1,1,6,7]]]],[8581,8582,8583,8584,8589,10724,12334]]],["Gibeonite",[2,2,[[12,1,1,0,1,[[349,1,1,0,1]]],[15,1,1,1,2,[[415,1,1,1,2]]]],[10724,12334]]],["Gibeonites",[6,5,[[9,6,5,0,5,[[287,6,5,0,5]]]],[8581,8582,8583,8584,8589]]]]},{"k":"H1394","v":[["Gibeath",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6321]]]]},{"k":"H1395","v":[["Gibeathite",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10723]]]]},{"k":"H1396","v":[["*",[25,24,[[0,5,5,0,5,[[6,4,4,0,4],[48,1,1,4,5]]],[1,2,1,5,6,[[66,2,1,5,6]]],[8,1,1,6,7,[[237,1,1,6,7]]],[9,2,2,7,9,[[267,1,1,7,8],[277,1,1,8,9]]],[12,1,1,9,10,[[342,1,1,9,10]]],[17,3,3,10,13,[[450,1,1,10,11],[456,1,1,11,12],[471,1,1,12,13]]],[18,4,4,13,17,[[489,1,1,13,14],[542,1,1,14,15],[580,1,1,15,16],[594,1,1,16,17]]],[20,1,1,17,18,[[668,1,1,17,18]]],[22,1,1,18,19,[[720,1,1,18,19]]],[23,1,1,19,20,[[753,1,1,19,20]]],[24,1,1,20,21,[[797,1,1,20,21]]],[26,1,1,21,22,[[858,1,1,21,22]]],[37,2,2,22,24,[[920,2,2,22,24]]]],[177,178,179,183,1499,1994,7249,8045,8282,10430,13228,13362,13745,14070,14863,15560,15869,17503,18493,19178,20326,22015,23022,23028]]],["+",[1,1,[[37,1,1,0,1,[[920,1,1,0,1]]]],[23022]]],["confirm",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22015]]],["exceeded",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13745]]],["great",[2,2,[[18,2,2,0,2,[[580,1,1,0,1],[594,1,1,1,2]]]],[15560,15869]]],["himself",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13228]]],["mighty",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13362]]],["prevail",[5,5,[[0,1,1,0,1,[[6,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[18,2,2,2,4,[[489,1,1,2,3],[542,1,1,3,4]]],[22,1,1,4,5,[[720,1,1,4,5]]]],[179,7249,14070,14863,18493]]],["prevailed",[9,8,[[0,4,4,0,4,[[6,3,3,0,3],[48,1,1,3,4]]],[1,2,1,4,5,[[66,2,1,4,5]]],[9,1,1,5,6,[[277,1,1,5,6]]],[12,1,1,6,7,[[342,1,1,6,7]]],[24,1,1,7,8,[[797,1,1,7,8]]]],[177,178,183,1499,1994,8282,10430,20326]]],["strengthen",[1,1,[[37,1,1,0,1,[[920,1,1,0,1]]]],[23028]]],["stronger",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8045]]],["to",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17503]]],["valiant",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19178]]]]},{"k":"H1397","v":[["*",[65,64,[[1,2,2,0,2,[[59,1,1,0,1],[61,1,1,1,2]]],[3,2,2,2,4,[[140,2,2,2,4]]],[4,2,1,4,5,[[174,2,1,4,5]]],[5,3,3,5,8,[[193,3,3,5,8]]],[6,1,1,8,9,[[215,1,1,8,9]]],[9,1,1,9,10,[[289,1,1,9,10]]],[12,3,3,10,13,[[360,1,1,10,11],[361,1,1,11,12],[363,1,1,12,13]]],[17,15,15,13,28,[[438,2,2,13,15],[439,1,1,15,16],[445,1,1,16,17],[449,2,2,17,19],[451,1,1,19,20],[457,1,1,20,21],[468,2,2,21,23],[469,3,3,23,26],[473,1,1,26,27],[475,1,1,27,28]]],[18,9,9,28,37,[[511,1,1,28,29],[514,1,1,29,30],[517,1,1,30,31],[529,1,1,31,32],[565,1,1,32,33],[566,1,1,33,34],[571,1,1,34,35],[604,1,1,35,36],[605,1,1,36,37]]],[19,8,8,37,45,[[633,1,1,37,38],[647,1,1,38,39],[651,1,1,39,40],[655,2,2,40,42],[656,1,1,42,43],[657,2,2,43,45]]],[22,1,1,45,46,[[700,1,1,45,46]]],[23,9,9,46,55,[[761,2,2,46,48],[766,1,1,48,49],[767,1,1,49,50],[774,1,1,50,51],[775,1,1,51,52],[785,1,1,52,53],[787,1,1,53,54],[788,1,1,54,55]]],[24,4,4,55,59,[[799,4,4,55,59]]],[26,1,1,59,60,[[857,1,1,59,60]]],[28,1,1,60,61,[[877,1,1,60,61]]],[32,1,1,61,62,[[894,1,1,61,62]]],[34,1,1,62,63,[[904,1,1,62,63]]],[37,1,1,63,64,[[923,1,1,63,64]]]],[1788,1853,4449,4461,5475,5990,5993,5994,6653,8654,10986,11019,11089,12907,12927,12947,13091,13191,13195,13259,13391,13667,13679,13690,13692,13717,13796,13871,14396,14473,14529,14717,15312,15374,15443,16126,16130,16574,16978,17084,17199,17217,17229,17252,17270,18069,19362,19364,19484,19493,19673,19713,19973,20003,20030,20355,20381,20389,20393,21976,22319,22597,22753,23066]]],["+",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13667]]],["Man's",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16978]]],["child",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12907]]],["man",[52,51,[[3,2,2,0,2,[[140,2,2,0,2]]],[4,2,1,2,3,[[174,2,1,2,3]]],[5,3,3,3,6,[[193,3,3,3,6]]],[6,1,1,6,7,[[215,1,1,6,7]]],[9,1,1,7,8,[[289,1,1,7,8]]],[12,1,1,8,9,[[360,1,1,8,9]]],[17,12,12,9,21,[[438,1,1,9,10],[439,1,1,10,11],[449,2,2,11,13],[451,1,1,13,14],[457,1,1,14,15],[468,1,1,15,16],[469,3,3,16,19],[473,1,1,19,20],[475,1,1,20,21]]],[18,9,9,21,30,[[511,1,1,21,22],[514,1,1,22,23],[517,1,1,23,24],[529,1,1,24,25],[565,1,1,25,26],[566,1,1,26,27],[571,1,1,27,28],[604,1,1,28,29],[605,1,1,29,30]]],[19,7,7,30,37,[[633,1,1,30,31],[651,1,1,31,32],[655,2,2,32,34],[656,1,1,34,35],[657,2,2,35,37]]],[23,6,6,37,43,[[761,2,2,37,39],[766,1,1,39,40],[767,1,1,40,41],[774,1,1,41,42],[775,1,1,42,43]]],[24,4,4,43,47,[[799,4,4,43,47]]],[26,1,1,47,48,[[857,1,1,47,48]]],[32,1,1,48,49,[[894,1,1,48,49]]],[34,1,1,49,50,[[904,1,1,49,50]]],[37,1,1,50,51,[[923,1,1,50,51]]]],[4449,4461,5475,5990,5993,5994,6653,8654,10986,12927,12947,13191,13195,13259,13391,13679,13690,13692,13717,13796,13871,14396,14473,14529,14717,15312,15374,15443,16126,16130,16574,17084,17199,17217,17229,17252,17270,19362,19364,19484,19493,19673,19713,20355,20381,20389,20393,21976,22597,22753,23066]]],["man's",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13091]]],["men",[6,6,[[1,2,2,0,2,[[59,1,1,0,1],[61,1,1,1,2]]],[12,2,2,2,4,[[361,1,1,2,3],[363,1,1,3,4]]],[23,2,2,4,6,[[787,1,1,4,5],[788,1,1,5,6]]]],[1788,1853,11019,11089,20003,20030]]],["mighty",[2,2,[[22,1,1,0,1,[[700,1,1,0,1]]],[23,1,1,1,2,[[785,1,1,1,2]]]],[18069,19973]]],["one",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22319]]]]},{"k":"H1398","v":[["Geber",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8863]]]]},{"k":"H1399","v":[["man",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14143]]]]},{"k":"H1400","v":[["*",[21,20,[[14,4,4,0,4,[[406,1,1,0,1],[407,2,2,1,3],[408,1,1,3,4]]],[26,17,16,4,20,[[851,1,1,4,5],[852,11,10,5,15],[854,1,1,15,16],[855,4,4,16,20]]]],[12131,12138,12144,12159,21783,21815,21819,21820,21827,21828,21829,21830,21831,21832,21834,21885,21910,21916,21920,21929]]],["certain",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21815,21819]]],["man",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[854,1,1,1,2]]]],[21783,21885]]],["men",[17,17,[[14,4,4,0,4,[[406,1,1,0,1],[407,2,2,1,3],[408,1,1,3,4]]],[26,13,13,4,17,[[852,9,9,4,13],[855,4,4,13,17]]]],[12131,12138,12144,12159,21819,21820,21827,21828,21829,21830,21831,21832,21834,21910,21916,21920,21929]]]]},{"k":"H1401","v":[["+",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21827]]]]},{"k":"H1402","v":[["Gibbar",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12047]]]]},{"k":"H1403","v":[["Gabriel",[2,2,[[26,2,2,0,2,[[857,1,1,0,1],[858,1,1,1,2]]]],[21977,22009]]]]},{"k":"H1404","v":[["*",[9,9,[[0,3,3,0,3,[[15,3,3,0,3]]],[11,1,1,3,4,[[317,1,1,3,4]]],[18,1,1,4,5,[[600,1,1,4,5]]],[19,1,1,5,6,[[657,1,1,5,6]]],[22,3,3,6,9,[[702,1,1,6,7],[725,2,2,7,9]]]],[385,389,390,9650,16100,17274,18097,18604,18606]]],["lady",[2,2,[[22,2,2,0,2,[[725,2,2,0,2]]]],[18604,18606]]],["mistress",[7,7,[[0,3,3,0,3,[[15,3,3,0,3]]],[11,1,1,3,4,[[317,1,1,3,4]]],[18,1,1,4,5,[[600,1,1,4,5]]],[19,1,1,5,6,[[657,1,1,5,6]]],[22,1,1,6,7,[[702,1,1,6,7]]]],[385,389,390,9650,16100,17274,18097]]]]},{"k":"H1405","v":[["Gibbethon",[6,5,[[5,2,2,0,2,[[205,1,1,0,1],[207,1,1,1,2]]],[10,4,3,2,5,[[305,2,1,2,3],[306,2,2,3,5]]]],[6365,6404,9276,9298,9300]]]]},{"k":"H1406","v":[["*",[30,27,[[1,2,2,0,2,[[79,1,1,0,1],[86,1,1,1,2]]],[4,1,1,2,3,[[174,1,1,2,3]]],[5,3,2,3,5,[[188,3,2,3,5]]],[6,2,2,5,7,[[219,1,1,5,6],[226,1,1,6,7]]],[8,2,2,7,9,[[244,2,2,7,9]]],[9,4,3,9,12,[[277,2,1,9,10],[282,1,1,10,11],[284,1,1,11,12]]],[11,2,2,12,14,[[331,1,1,12,13],[335,1,1,13,14]]],[15,1,1,14,15,[[420,1,1,14,15]]],[18,2,2,15,17,[[579,1,1,15,16],[606,1,1,16,17]]],[19,2,2,17,19,[[648,1,1,17,18],[652,1,1,18,19]]],[22,3,3,19,22,[[693,1,1,19,20],[700,1,1,20,21],[715,1,1,21,22]]],[23,3,3,22,25,[[763,1,1,22,23],[776,1,1,23,24],[792,1,1,24,25]]],[25,2,1,25,26,[[841,2,1,25,26]]],[35,1,1,26,27,[[906,1,1,26,27]]]],[2385,2630,5478,5875,5877,6805,6976,7416,7417,8261,8448,8502,10087,10177,12509,15528,16138,16993,17137,17963,18053,18379,19420,19760,20118,21490,22792]]],["+",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21490]]],["house",[3,3,[[8,2,2,0,2,[[244,2,2,0,2]]],[15,1,1,2,3,[[420,1,1,2,3]]]],[7416,7417,12509]]],["houses",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17963]]],["housetop",[2,2,[[19,2,2,0,2,[[648,1,1,0,1],[652,1,1,1,2]]]],[16993,17137]]],["housetops",[6,6,[[11,1,1,0,1,[[331,1,1,0,1]]],[18,1,1,1,2,[[606,1,1,1,2]]],[22,2,2,2,4,[[700,1,1,2,3],[715,1,1,3,4]]],[23,1,1,4,5,[[792,1,1,4,5]]],[35,1,1,5,6,[[906,1,1,5,6]]]],[10087,16138,18053,18379,20118,22792]]],["roof",[9,7,[[4,1,1,0,1,[[174,1,1,0,1]]],[5,3,2,1,3,[[188,3,2,1,3]]],[6,1,1,3,4,[[226,1,1,3,4]]],[9,3,2,4,6,[[277,2,1,4,5],[284,1,1,5,6]]],[25,1,1,6,7,[[841,1,1,6,7]]]],[5478,5875,5877,6976,8261,8502,21490]]],["roofs",[2,2,[[23,2,2,0,2,[[763,1,1,0,1],[776,1,1,1,2]]]],[19420,19760]]],["top",[6,6,[[1,2,2,0,2,[[79,1,1,0,1],[86,1,1,1,2]]],[6,1,1,2,3,[[219,1,1,2,3]]],[9,1,1,3,4,[[282,1,1,3,4]]],[11,1,1,4,5,[[335,1,1,4,5]]],[18,1,1,5,6,[[579,1,1,5,6]]]],[2385,2630,6805,8448,10177,15528]]]]},{"k":"H1407","v":[["coriander",[2,2,[[1,1,1,0,1,[[65,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]]],[1978,4031]]]]},{"k":"H1408","v":[]},{"k":"H1409","v":[["troop",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18908]]]]},{"k":"H1410","v":[["*",[71,68,[[0,4,4,0,4,[[29,1,1,0,1],[34,1,1,1,2],[45,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[3,19,18,5,23,[[117,3,3,5,8],[118,2,1,8,9],[123,1,1,9,10],[126,1,1,10,11],[129,1,1,11,12],[142,2,2,12,14],[148,8,8,14,22],[150,1,1,22,23]]],[4,3,2,23,25,[[179,1,1,23,24],[185,2,1,24,25]]],[5,20,19,25,44,[[190,1,1,25,26],[199,3,2,26,28],[204,1,1,28,29],[206,1,1,29,30],[207,2,2,30,32],[208,12,12,32,44]]],[8,2,2,44,46,[[248,1,1,44,45],[257,1,1,45,46]]],[9,6,6,46,52,[[290,6,6,46,52]]],[12,11,11,52,63,[[339,1,1,52,53],[342,1,1,53,54],[343,2,2,54,56],[349,1,1,56,57],[358,5,5,57,62],[366,1,1,62,63]]],[13,1,1,63,64,[[395,1,1,63,64]]],[23,1,1,64,65,[[793,1,1,64,65]]],[25,3,3,65,68,[[849,3,3,65,68]]]],[841,1037,1402,1492,1536,3618,3628,3629,3672,3892,4008,4090,4504,4507,4719,4720,4724,4743,4747,4749,4751,4752,4830,5598,5830,5922,6178,6182,6300,6380,6388,6419,6435,6436,6437,6439,6441,6447,6451,6456,6457,6458,6459,6460,7492,7792,8697,8703,8705,8706,8710,8711,10308,10439,10517,10534,10734,10943,10945,10947,10952,10953,11193,11816,20128,21729,21730,21736]]],["+",[2,2,[[5,1,1,0,1,[[207,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]]],[6419,10534]]],["Gad",[69,66,[[0,4,4,0,4,[[29,1,1,0,1],[34,1,1,1,2],[45,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[3,19,18,5,23,[[117,3,3,5,8],[118,2,1,8,9],[123,1,1,9,10],[126,1,1,10,11],[129,1,1,11,12],[142,2,2,12,14],[148,8,8,14,22],[150,1,1,22,23]]],[4,3,2,23,25,[[179,1,1,23,24],[185,2,1,24,25]]],[5,19,18,25,43,[[190,1,1,25,26],[199,3,2,26,28],[204,1,1,28,29],[206,1,1,29,30],[207,1,1,30,31],[208,12,12,31,43]]],[8,2,2,43,45,[[248,1,1,43,44],[257,1,1,44,45]]],[9,6,6,45,51,[[290,6,6,45,51]]],[12,10,10,51,61,[[339,1,1,51,52],[342,1,1,52,53],[343,1,1,53,54],[349,1,1,54,55],[358,5,5,55,60],[366,1,1,60,61]]],[13,1,1,61,62,[[395,1,1,61,62]]],[23,1,1,62,63,[[793,1,1,62,63]]],[25,3,3,63,66,[[849,3,3,63,66]]]],[841,1037,1402,1492,1536,3618,3628,3629,3672,3892,4008,4090,4504,4507,4719,4720,4724,4743,4747,4749,4751,4752,4830,5598,5830,5922,6178,6182,6300,6380,6388,6435,6436,6437,6439,6441,6447,6451,6456,6457,6458,6459,6460,7492,7792,8697,8703,8705,8706,8710,8711,10308,10439,10517,10734,10943,10945,10947,10952,10953,11193,11816,20128,21729,21730,21736]]]]},{"k":"H1411","v":[["treasurers",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21809,21810]]]]},{"k":"H1412","v":[["Gudgodah",[2,1,[[4,2,1,0,1,[[162,2,1,0,1]]]],[5193]]]]},{"k":"H1413","v":[["*",[9,9,[[0,1,1,0,1,[[29,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[18,1,1,3,4,[[571,1,1,3,4]]],[23,4,4,4,8,[[749,1,1,4,5],[760,1,1,5,6],[785,1,1,6,7],[791,1,1,7,8]]],[32,1,1,8,9,[[897,1,1,8,9]]]],[841,5291,9369,15452,19065,19342,19962,20078,22634]]],["cometh",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[841]]],["themselves",[4,4,[[10,1,1,0,1,[[308,1,1,0,1]]],[23,3,3,1,4,[[749,1,1,1,2],[760,1,1,2,3],[785,1,1,3,4]]]],[9369,19065,19342,19962]]],["thyself",[1,1,[[23,1,1,0,1,[[791,1,1,0,1]]]],[20078]]],["together",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15452]]],["troops",[1,1,[[32,1,1,0,1,[[897,1,1,0,1]]]],[22634]]],["yourselves",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5291]]]]},{"k":"H1414","v":[["*",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21851,21860]]],["+",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21860]]],["down",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21851]]]]},{"k":"H1415","v":[["banks",[3,3,[[5,2,2,0,2,[[189,1,1,0,1],[190,1,1,1,2]]],[22,1,1,2,3,[[686,1,1,2,3]]]],[5908,5928,17814]]]]},{"k":"H1416","v":[["*",[33,29,[[0,1,1,0,1,[[48,1,1,0,1]]],[8,4,3,1,4,[[265,4,3,1,4]]],[9,3,3,4,7,[[269,1,1,4,5],[270,1,1,5,6],[288,1,1,6,7]]],[10,1,1,7,8,[[301,1,1,7,8]]],[11,8,5,8,13,[[317,1,1,8,9],[318,1,1,9,10],[325,2,2,10,12],[336,4,1,12,13]]],[12,3,3,13,16,[[344,1,1,13,14],[349,2,2,14,16]]],[13,5,5,16,21,[[388,1,1,16,17],[391,3,3,17,20],[392,1,1,20,21]]],[17,3,3,21,24,[[454,1,1,21,22],[460,1,1,22,23],[464,1,1,23,24]]],[18,1,1,24,25,[[495,1,1,24,25]]],[23,1,1,25,26,[[762,1,1,25,26]]],[27,2,2,26,28,[[867,1,1,26,27],[868,1,1,27,28]]],[32,1,1,28,29,[[897,1,1,28,29]]]],[1492,7986,7993,8001,8103,8122,8632,9132,9649,9697,9891,9892,10204,10539,10738,10741,11645,11713,11714,11717,11743,13309,13464,13557,14147,19406,22176,22179,22634]]],["+",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8103]]],["armies",[1,1,[[17,1,1,0,1,[[460,1,1,0,1]]]],[13464]]],["army",[4,4,[[13,3,3,0,3,[[391,3,3,0,3]]],[17,1,1,3,4,[[464,1,1,3,4]]]],[11713,11714,11717,13557]]],["band",[4,4,[[10,1,1,0,1,[[301,1,1,0,1]]],[11,1,1,1,2,[[325,1,1,1,2]]],[12,2,2,2,4,[[349,2,2,2,4]]]],[9132,9892,10738,10741]]],["bands",[9,6,[[9,1,1,0,1,[[270,1,1,0,1]]],[11,6,3,1,4,[[318,1,1,1,2],[325,1,1,2,3],[336,4,1,3,4]]],[12,1,1,4,5,[[344,1,1,4,5]]],[13,1,1,5,6,[[392,1,1,5,6]]]],[8122,9697,9891,10204,10539,11743]]],["companies",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9649]]],["company",[3,2,[[8,3,2,0,2,[[265,3,2,0,2]]]],[7993,8001]]],["men",[1,1,[[13,1,1,0,1,[[388,1,1,0,1]]]],[11645]]],["robbers",[2,2,[[27,2,2,0,2,[[867,1,1,0,1],[868,1,1,1,2]]]],[22176,22179]]],["troop",[5,5,[[0,1,1,0,1,[[48,1,1,0,1]]],[8,1,1,1,2,[[265,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]],[23,1,1,4,5,[[762,1,1,4,5]]]],[1492,7986,8632,14147,19406]]],["troops",[2,2,[[17,1,1,0,1,[[454,1,1,0,1]]],[32,1,1,1,2,[[897,1,1,1,2]]]],[13309,22634]]]]},{"k":"H1417","v":[["furrows",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14870]]]]},{"k":"H1418","v":[["cuttings",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20117]]]]},{"k":"H1419","v":[["*",[528,498,[[0,33,31,0,31,[[0,3,2,0,2],[3,1,1,2,3],[9,2,2,3,5],[11,2,2,5,7],[14,3,3,7,10],[16,1,1,10,11],[17,1,1,11,12],[18,1,1,12,13],[19,1,1,13,14],[20,2,2,14,16],[26,5,5,16,21],[28,3,3,21,24],[38,3,2,24,26],[40,1,1,26,27],[43,1,1,27,28],[44,1,1,28,29],[45,1,1,29,30],[49,1,1,30,31]]],[1,15,15,31,46,[[52,1,1,31,32],[55,1,1,32,33],[56,1,1,33,34],[60,2,2,34,36],[61,1,1,36,37],[63,1,1,37,38],[64,1,1,38,39],[67,2,2,39,41],[81,5,5,41,46]]],[2,2,2,46,48,[[108,1,1,46,47],[110,1,1,47,48]]],[3,8,7,48,55,[[129,1,1,48,49],[130,1,1,49,50],[138,1,1,50,51],[150,2,2,51,53],[151,3,2,53,55]]],[4,44,41,55,96,[[153,5,4,55,59],[154,3,3,59,62],[156,8,8,62,70],[157,2,2,70,72],[158,2,2,72,74],[159,3,3,74,77],[160,1,1,77,78],[161,4,3,78,81],[162,2,2,81,83],[163,2,2,83,85],[170,1,1,85,86],[177,2,2,86,88],[178,2,2,88,90],[179,1,1,90,91],[180,1,1,91,92],[181,4,3,92,95],[186,1,1,95,96]]],[5,26,24,96,120,[[187,2,1,96,97],[192,2,2,97,99],[193,2,2,99,101],[194,1,1,101,102],[195,1,1,102,103],[196,7,6,103,109],[200,2,2,109,111],[201,2,2,111,113],[203,1,1,113,114],[206,1,1,114,115],[208,1,1,115,116],[209,2,2,116,118],[210,2,2,118,120]]],[6,12,12,120,132,[[212,1,1,120,121],[215,2,2,121,123],[221,1,1,123,124],[225,2,2,124,126],[226,4,4,126,130],[231,2,2,130,132]]],[8,35,34,132,166,[[237,1,1,132,133],[239,4,4,133,137],[240,2,1,137,138],[241,5,5,138,143],[242,1,1,143,144],[247,2,2,144,146],[249,3,3,146,149],[252,4,4,149,153],[253,1,1,153,154],[254,3,3,154,157],[255,1,1,157,158],[257,1,1,158,159],[258,1,1,159,160],[260,2,2,160,162],[263,1,1,162,163],[265,3,3,163,166]]],[9,19,16,166,182,[[269,1,1,166,167],[271,1,1,167,168],[273,2,1,168,169],[279,4,3,169,172],[281,1,1,172,173],[284,5,4,173,177],[285,2,2,177,179],[286,1,1,179,180],[289,2,2,180,182]]],[10,22,21,182,203,[[291,1,1,182,183],[292,1,1,183,184],[293,3,2,184,186],[294,1,1,186,187],[295,1,1,187,188],[297,3,3,188,191],[298,3,3,191,194],[300,1,1,194,195],[308,3,3,195,198],[309,1,1,198,199],[310,3,3,199,202],[312,1,1,202,203]]],[11,29,28,203,231,[[315,1,1,203,204],[316,2,2,204,206],[317,2,2,206,208],[318,2,2,208,210],[319,1,1,210,211],[320,2,2,211,213],[322,3,3,213,216],[324,1,1,216,217],[328,1,1,217,218],[329,2,2,218,220],[330,3,2,220,222],[332,1,1,222,223],[334,3,3,223,226],[335,3,3,226,229],[337,2,2,229,231]]],[12,11,11,231,242,[[348,1,1,231,232],[349,2,2,232,234],[353,1,1,234,235],[354,1,1,235,236],[359,1,1,236,237],[362,1,1,237,238],[363,1,1,238,239],[366,3,3,239,242]]],[13,27,25,242,267,[[367,2,2,242,244],[368,3,2,244,246],[369,1,1,246,247],[370,1,1,247,248],[372,1,1,248,249],[373,1,1,249,250],[375,1,1,250,251],[381,2,2,251,253],[382,1,1,253,254],[384,1,1,254,255],[386,1,1,255,256],[387,1,1,256,257],[392,1,1,257,258],[394,2,1,258,259],[396,2,2,259,261],[397,1,1,261,262],[398,1,1,262,263],[400,3,3,263,266],[402,1,1,266,267]]],[14,6,6,267,273,[[405,3,3,267,270],[411,2,2,270,272],[412,1,1,272,273]]],[15,28,27,273,300,[[413,3,3,273,276],[414,1,1,276,277],[415,3,3,277,280],[416,1,1,280,281],[417,2,2,281,283],[418,1,1,283,284],[419,1,1,284,285],[420,3,3,285,288],[421,6,6,288,294],[423,1,1,294,295],[424,3,2,295,297],[425,3,3,297,300]]],[16,9,8,300,308,[[426,2,2,300,302],[427,1,1,302,303],[429,2,2,303,305],[433,1,1,305,306],[434,2,1,306,307],[435,1,1,307,308]]],[17,6,6,308,314,[[436,2,2,308,310],[438,1,1,310,311],[440,1,1,311,312],[444,1,1,312,313],[472,1,1,313,314]]],[18,30,28,314,342,[[489,1,1,314,315],[498,1,1,315,316],[524,1,1,316,317],[525,1,1,317,318],[534,1,1,318,319],[548,1,1,319,320],[553,1,1,320,321],[554,1,1,321,322],[563,2,2,322,324],[572,2,1,324,325],[573,1,1,325,326],[576,2,2,326,328],[581,2,1,328,329],[583,1,1,329,330],[585,1,1,330,331],[588,1,1,331,332],[592,1,1,332,333],[608,1,1,333,334],[612,1,1,334,335],[613,3,3,335,338],[615,1,1,338,339],[622,2,2,339,341],[624,1,1,341,342]]],[19,4,4,342,346,[[645,1,1,342,343],[646,1,1,343,344],[652,1,1,344,345],[654,1,1,345,346]]],[20,4,3,346,349,[[667,3,2,346,348],[668,1,1,348,349]]],[22,14,13,349,362,[[683,1,1,349,350],[686,1,1,350,351],[687,1,1,351,352],[690,1,1,352,353],[705,2,2,353,355],[707,1,1,355,356],[712,1,1,356,357],[714,3,2,357,359],[716,1,1,359,360],[732,1,1,360,361],[734,1,1,361,362]]],[23,48,47,362,409,[[748,1,1,362,363],[749,1,1,363,364],[750,3,3,364,367],[752,1,1,367,368],[754,3,2,368,370],[755,1,1,370,371],[758,1,1,371,372],[760,2,2,372,374],[765,2,2,374,376],[766,1,1,376,377],[769,2,2,377,379],[770,1,1,379,380],[771,2,2,380,382],[772,1,1,382,383],[774,1,1,383,384],[775,2,2,384,386],[776,6,6,386,392],[777,1,1,392,393],[780,1,1,393,394],[786,2,2,394,396],[787,1,1,396,397],[788,4,4,397,401],[789,1,1,401,402],[792,1,1,402,403],[794,3,3,403,406],[795,2,2,406,408],[796,1,1,408,409]]],[24,1,1,409,410,[[798,1,1,409,410]]],[25,36,33,410,443,[[802,1,1,410,411],[804,2,2,411,413],[809,5,4,413,417],[810,2,2,417,419],[812,1,1,419,420],[817,2,2,420,422],[818,6,4,422,426],[822,1,1,426,427],[824,1,1,427,428],[826,1,1,428,429],[830,2,2,429,431],[837,1,1,431,432],[838,1,1,432,433],[839,3,3,433,436],[840,1,1,436,437],[844,1,1,437,438],[848,4,4,438,442],[849,1,1,442,443]]],[26,15,14,443,457,[[857,2,2,443,445],[858,2,2,445,447],[859,4,4,447,451],[860,6,5,451,456],[861,1,1,456,457]]],[27,1,1,457,458,[[862,1,1,457,458]]],[28,3,3,458,461,[[877,3,3,458,461]]],[29,1,1,461,462,[[884,1,1,461,462]]],[31,14,13,462,475,[[889,7,6,462,468],[891,4,4,468,472],[892,3,3,472,475]]],[32,1,1,475,476,[[899,1,1,475,476]]],[33,2,2,476,478,[[900,1,1,476,477],[902,1,1,477,478]]],[35,2,2,478,480,[[906,2,2,478,480]]],[36,6,6,480,486,[[909,3,3,480,483],[910,3,3,483,486]]],[37,10,9,486,495,[[911,2,2,486,488],[913,2,2,488,490],[914,1,1,490,491],[916,1,1,491,492],[917,1,1,492,493],[918,2,1,493,494],[924,1,1,494,495]]],[38,4,3,495,498,[[925,3,2,495,497],[928,1,1,497,498]]]],[15,20,92,246,255,300,315,372,374,378,417,442,468,504,521,531,728,742,760,761,769,797,802,811,1158,1163,1224,1336,1365,1389,1516,1582,1661,1689,1809,1812,1846,1920,1936,2010,2021,2448,2449,2459,2468,2469,3296,3355,4103,4120,4393,4822,4823,4870,4873,4899,4909,4911,4920,4945,4948,4959,5010,5011,5012,5036,5038,5040,5041,5042,5075,5078,5096,5108,5130,5132,5134,5152,5158,5159,5186,5203,5207,5215,5231,5400,5560,5561,5571,5574,5587,5670,5682,5703,5707,5851,5855,5954,5969,5985,6002,6031,6038,6066,6074,6075,6082,6084,6091,6199,6202,6214,6249,6292,6378,6436,6464,6469,6493,6502,6552,6638,6639,6862,6937,6947,6954,6955,6964,6972,7104,7107,7257,7302,7303,7307,7314,7328,7340,7345,7346,7349,7350,7362,7476,7482,7528,7541,7553,7631,7632,7643,7646,7693,7711,7714,7728,7732,7802,7815,7863,7897,7954,7980,7994,7997,8119,8142,8189,8332,8333,8353,8412,8485,8487,8495,8507,8515,8543,8562,8663,8665,8757,8792,8820,8822,8857,8895,8943,8944,8946,9027,9040,9050,9097,9368,9369,9386,9398,9421,9429,9436,9511,9603,9611,9641,9648,9660,9697,9699,9713,9731,9740,9799,9804,9812,9860,9978,10004,10019,10043,10052,10101,10149,10153,10158,10167,10169,10191,10231,10248,10687,10734,10742,10845,10871,10972,11054,11090,11165,11173,11186,11202,11204,11216,11220,11234,11255,11314,11332,11381,11503,11504,11523,11572,11606,11638,11747,11769,11848,11853,11869,11893,11942,11954,11963,12011,12108,12109,12110,12244,12250,12264,12299,12301,12306,12317,12328,12347,12354,12373,12383,12389,12404,12424,12499,12505,12510,12515,12529,12536,12537,12543,12548,12602,12655,12667,12676,12698,12699,12707,12722,12742,12763,12765,12832,12838,12869,12872,12888,12923,12960,13061,13774,14069,14196,14627,14635,14778,14995,15082,15106,15294,15297,15457,15469,15501,15502,15596,15672,15746,15795,15843,16149,16180,16200,16203,16213,16236,16323,16328,16356,16917,16944,17119,17183,17488,17489,17497,17748,17808,17831,17906,18152,18164,18199,18309,18334,18343,18393,18730,18765,19033,19063,19090,19102,19111,19163,19207,19223,19242,19310,19342,19346,19445,19446,19462,19548,19566,19591,19601,19603,19626,19674,19699,19725,19748,19749,19750,19752,19768,19773,19778,19849,19976,19983,20006,20017,20022,20025,20036,20045,20083,20175,20188,20207,20266,20267,20289,20345,20468,20514,20515,20610,20617,20619,20622,20623,20631,20668,20808,20823,20828,20832,20834,20842,20958,21011,21100,21186,21201,21382,21407,21438,21440,21444,21465,21586,21689,21694,21698,21699,21730,21969,21982,21992,22000,22016,22019,22022,22023,22038,22049,22061,22064,22080,22082,22105,22322,22336,22342,22461,22533,22535,22541,22543,22547,22548,22560,22561,22563,22565,22569,22574,22579,22667,22687,22722,22797,22801,22841,22852,22854,22857,22859,22864,22892,22893,22913,22920,22929,22958,22974,22978,23072,23100,23103,23143]]],["+",[20,20,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,1,1,1,2,[[52,1,1,1,2]]],[5,1,1,2,3,[[210,1,1,2,3]]],[6,1,1,3,4,[[231,1,1,3,4]]],[8,1,1,4,5,[[237,1,1,4,5]]],[9,1,1,5,6,[[279,1,1,5,6]]],[10,2,2,6,8,[[308,2,2,6,8]]],[11,1,1,8,9,[[332,1,1,8,9]]],[13,2,2,9,11,[[372,1,1,9,10],[400,1,1,10,11]]],[15,1,1,11,12,[[414,1,1,11,12]]],[16,2,2,12,14,[[426,2,2,12,14]]],[22,2,2,14,16,[[716,1,1,14,15],[734,1,1,15,16]]],[26,1,1,16,17,[[860,1,1,16,17]]],[31,3,3,17,20,[[891,1,1,17,18],[892,2,2,18,20]]]],[760,1582,6493,7104,7257,8332,9368,9369,10101,11314,11963,12317,12707,12722,18393,18765,22038,22563,22569,22574]]],["Great",[5,5,[[18,3,3,0,3,[[525,1,1,0,1],[622,1,1,1,2],[624,1,1,2,3]]],[23,2,2,3,5,[[776,2,2,3,5]]]],[14635,16323,16356,19749,19750]]],["elder",[8,8,[[0,3,3,0,3,[[9,1,1,0,1],[26,1,1,1,2],[28,1,1,2,3]]],[8,1,1,3,4,[[253,1,1,3,4]]],[10,1,1,4,5,[[292,1,1,4,5]]],[25,3,3,5,8,[[817,2,2,5,7],[824,1,1,7,8]]]],[255,769,811,7693,8792,20808,20823,21011]]],["eldest",[6,6,[[0,3,3,0,3,[[26,2,2,0,2],[43,1,1,2,3]]],[8,3,3,3,6,[[252,3,3,3,6]]]],[728,742,1336,7631,7632,7646]]],["exceedingly",[2,2,[[31,2,2,0,2,[[889,2,2,0,2]]]],[22541,22547]]],["great",[389,371,[[0,21,21,0,21,[[0,2,2,0,2],[9,1,1,2,3],[11,2,2,3,5],[14,3,3,5,8],[16,1,1,8,9],[17,1,1,9,10],[18,1,1,10,11],[19,1,1,11,12],[20,2,2,12,14],[26,1,1,14,15],[28,1,1,15,16],[38,1,1,16,17],[40,1,1,17,18],[44,1,1,18,19],[45,1,1,19,20],[49,1,1,20,21]]],[1,12,12,21,33,[[55,1,1,21,22],[56,1,1,22,23],[60,2,2,23,25],[61,1,1,25,26],[63,1,1,26,27],[67,1,1,27,28],[81,5,5,28,33]]],[3,3,3,33,36,[[129,1,1,33,34],[150,2,2,34,36]]],[4,36,35,36,71,[[153,4,4,36,40],[154,3,3,40,43],[156,6,6,43,49],[157,2,2,49,51],[158,2,2,51,53],[159,1,1,53,54],[160,1,1,54,55],[161,2,2,55,57],[162,2,2,57,59],[163,1,1,59,60],[170,1,1,60,61],[177,2,2,61,63],[178,2,2,63,65],[179,1,1,65,66],[180,1,1,66,67],[181,4,3,67,70],[186,1,1,70,71]]],[5,23,22,71,93,[[187,2,1,71,72],[192,2,2,72,74],[193,2,2,74,76],[194,1,1,76,77],[195,1,1,77,78],[196,6,6,78,84],[200,2,2,84,86],[201,2,2,86,88],[203,1,1,88,89],[208,1,1,89,90],[209,2,2,90,92],[210,1,1,92,93]]],[6,11,11,93,104,[[212,1,1,93,94],[215,2,2,94,96],[221,1,1,96,97],[225,2,2,97,99],[226,4,4,99,103],[231,1,1,103,104]]],[8,27,26,104,130,[[239,4,4,104,108],[240,2,1,108,109],[241,5,5,109,114],[242,1,1,114,115],[247,2,2,115,117],[249,3,3,117,120],[252,1,1,120,121],[254,3,3,121,124],[255,1,1,124,125],[258,1,1,125,126],[260,1,1,126,127],[265,3,3,127,130]]],[9,12,10,130,140,[[271,1,1,130,131],[273,2,1,131,132],[284,5,4,132,136],[285,1,1,136,137],[286,1,1,137,138],[289,2,2,138,140]]],[10,18,17,140,157,[[291,1,1,140,141],[293,3,2,141,143],[294,1,1,143,144],[295,1,1,144,145],[297,3,3,145,148],[298,2,2,148,150],[300,1,1,150,151],[308,1,1,151,152],[309,1,1,152,153],[310,3,3,153,156],[312,1,1,156,157]]],[11,20,20,157,177,[[315,1,1,157,158],[316,2,2,158,160],[317,2,2,160,162],[318,2,2,162,164],[319,1,1,164,165],[320,1,1,165,166],[322,1,1,166,167],[328,1,1,167,168],[329,2,2,168,170],[330,2,2,170,172],[334,1,1,172,173],[335,2,2,173,175],[337,2,2,175,177]]],[12,9,9,177,186,[[348,1,1,177,178],[349,1,1,178,179],[353,1,1,179,180],[359,1,1,180,181],[362,1,1,181,182],[363,1,1,182,183],[366,3,3,183,186]]],[13,20,18,186,204,[[367,2,2,186,188],[368,3,2,188,190],[370,1,1,190,191],[373,1,1,191,192],[375,1,1,192,193],[381,1,1,193,194],[382,1,1,194,195],[384,1,1,195,196],[387,1,1,196,197],[392,1,1,197,198],[394,2,1,198,199],[396,2,2,199,201],[397,1,1,201,202],[400,1,1,202,203],[402,1,1,203,204]]],[14,3,3,204,207,[[405,1,1,204,205],[411,2,2,205,207]]],[15,23,22,207,229,[[413,3,3,207,210],[415,1,1,210,211],[416,1,1,211,212],[417,2,2,212,214],[418,1,1,214,215],[419,1,1,215,216],[420,3,3,216,219],[421,5,5,219,224],[423,1,1,224,225],[424,3,2,225,227],[425,2,2,227,229]]],[16,5,5,229,234,[[427,1,1,229,230],[429,1,1,230,231],[433,1,1,231,232],[434,1,1,232,233],[435,1,1,233,234]]],[17,2,2,234,236,[[436,1,1,234,235],[438,1,1,235,236]]],[18,23,21,236,257,[[498,1,1,236,237],[524,1,1,237,238],[534,1,1,238,239],[553,1,1,239,240],[554,1,1,240,241],[563,2,2,241,243],[572,2,1,243,244],[573,1,1,244,245],[576,2,2,245,247],[581,2,1,247,248],[585,1,1,248,249],[588,1,1,249,250],[592,1,1,250,251],[612,1,1,251,252],[613,3,3,252,255],[615,1,1,255,256],[622,1,1,256,257]]],[19,3,3,257,260,[[645,1,1,257,258],[646,1,1,258,259],[652,1,1,259,260]]],[20,4,3,260,263,[[667,3,2,260,262],[668,1,1,262,263]]],[22,11,11,263,274,[[683,1,1,263,264],[686,1,1,264,265],[687,1,1,265,266],[690,1,1,266,267],[705,2,2,267,269],[707,1,1,269,270],[712,1,1,270,271],[714,2,2,271,273],[732,1,1,273,274]]],[23,38,37,274,311,[[748,1,1,274,275],[750,2,2,275,277],[754,3,2,277,279],[755,1,1,279,280],[758,1,1,280,281],[760,2,2,281,283],[765,2,2,283,285],[766,1,1,285,286],[769,2,2,286,288],[770,1,1,288,289],[771,2,2,289,291],[772,1,1,291,292],[774,1,1,292,293],[775,1,1,293,294],[776,4,4,294,298],[777,1,1,298,299],[780,1,1,299,300],[787,1,1,300,301],[788,3,3,301,304],[792,1,1,304,305],[794,3,3,305,308],[795,2,2,308,310],[796,1,1,310,311]]],[24,1,1,311,312,[[798,1,1,311,312]]],[25,25,23,312,335,[[802,1,1,312,313],[804,2,2,313,315],[809,1,1,315,316],[810,1,1,316,317],[818,5,3,317,320],[822,1,1,320,321],[826,1,1,321,322],[830,2,2,322,324],[837,1,1,324,325],[838,1,1,325,326],[839,3,3,326,329],[840,1,1,329,330],[848,4,4,330,334],[849,1,1,334,335]]],[26,13,12,335,347,[[857,2,2,335,337],[858,2,2,337,339],[859,3,3,339,342],[860,5,4,342,346],[861,1,1,346,347]]],[27,1,1,347,348,[[862,1,1,347,348]]],[28,3,3,348,351,[[877,3,3,348,351]]],[29,1,1,351,352,[[884,1,1,351,352]]],[31,7,7,352,359,[[889,4,4,352,356],[891,2,2,356,358],[892,1,1,358,359]]],[32,1,1,359,360,[[899,1,1,359,360]]],[33,1,1,360,361,[[900,1,1,360,361]]],[35,2,2,361,363,[[906,2,2,361,363]]],[37,6,5,363,368,[[911,1,1,363,364],[914,1,1,364,365],[917,1,1,365,366],[918,2,1,366,367],[924,1,1,367,368]]],[38,4,3,368,371,[[925,3,2,368,370],[928,1,1,370,371]]]],[15,20,246,300,315,372,374,378,417,442,468,504,521,531,761,797,1158,1224,1365,1389,1516,1661,1689,1809,1812,1846,1920,2021,2448,2449,2459,2468,2469,4103,4822,4823,4899,4909,4911,4920,4945,4948,4959,5010,5011,5012,5036,5038,5040,5075,5078,5096,5108,5130,5152,5158,5159,5203,5207,5215,5400,5560,5561,5571,5574,5587,5670,5682,5703,5707,5851,5855,5954,5969,5985,6002,6031,6038,6066,6074,6075,6082,6084,6091,6199,6202,6214,6249,6292,6436,6464,6469,6502,6552,6638,6639,6862,6937,6947,6954,6955,6964,6972,7107,7302,7303,7307,7314,7328,7340,7345,7346,7349,7350,7362,7476,7482,7528,7541,7553,7643,7711,7714,7728,7732,7815,7863,7980,7994,7997,8142,8189,8485,8487,8495,8507,8543,8562,8663,8665,8757,8820,8822,8857,8895,8943,8944,8946,9027,9050,9097,9386,9398,9421,9429,9436,9511,9603,9611,9641,9648,9660,9697,9699,9713,9740,9812,9978,10004,10019,10043,10052,10158,10167,10191,10231,10248,10687,10742,10845,10972,11054,11090,11165,11173,11186,11202,11204,11216,11220,11255,11332,11381,11503,11523,11572,11638,11747,11769,11848,11853,11869,11954,12011,12108,12244,12250,12299,12301,12306,12354,12373,12383,12389,12404,12424,12499,12505,12510,12529,12536,12537,12543,12548,12602,12655,12667,12676,12698,12742,12765,12832,12838,12869,12888,12923,14196,14627,14778,15082,15106,15294,15297,15457,15469,15501,15502,15596,15746,15795,15843,16180,16200,16203,16213,16236,16328,16917,16944,17119,17488,17489,17497,17748,17808,17831,17906,18152,18164,18199,18309,18334,18343,18730,19033,19090,19111,19207,19223,19242,19310,19342,19346,19445,19446,19462,19548,19566,19591,19601,19603,19626,19674,19699,19748,19752,19768,19773,19778,19849,20006,20017,20025,20036,20083,20175,20188,20207,20266,20267,20289,20345,20468,20514,20515,20610,20631,20828,20832,20834,20958,21100,21186,21201,21382,21407,21438,21440,21444,21465,21689,21694,21698,21699,21730,21969,21982,21992,22000,22019,22022,22023,22049,22061,22064,22080,22082,22105,22322,22336,22342,22461,22533,22535,22543,22548,22560,22561,22579,22667,22687,22797,22801,22892,22929,22974,22978,23072,23100,23103,23143]]],["greater",[19,19,[[0,3,3,0,3,[[0,1,1,0,1],[3,1,1,1,2],[38,1,1,2,3]]],[1,1,1,3,4,[[67,1,1,3,4]]],[3,1,1,4,5,[[130,1,1,4,5]]],[4,4,4,5,9,[[153,1,1,5,6],[156,1,1,6,7],[161,1,1,7,8],[163,1,1,8,9]]],[5,1,1,9,10,[[196,1,1,9,10]]],[9,2,2,10,12,[[279,2,2,10,12]]],[13,1,1,12,13,[[369,1,1,12,13]]],[16,1,1,13,14,[[434,1,1,13,14]]],[25,4,4,14,18,[[809,3,3,14,17],[844,1,1,17,18]]],[36,1,1,18,19,[[910,1,1,18,19]]]],[15,92,1158,2010,4120,4920,5042,5158,5231,6066,8332,8333,11234,12838,20610,20617,20619,21586,22864]]],["greatest",[8,8,[[12,1,1,0,1,[[349,1,1,0,1]]],[17,1,1,1,2,[[436,1,1,1,2]]],[23,6,6,2,8,[[750,1,1,2,3],[752,1,1,3,4],[775,1,1,4,5],[786,2,2,5,7],[788,1,1,7,8]]]],[10734,12872,19102,19163,19725,19976,19983,20022]]],["greatness",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1936]]],["high",[22,21,[[0,1,1,0,1,[[28,1,1,0,1]]],[2,1,1,1,2,[[110,1,1,1,2]]],[3,3,2,2,4,[[151,3,2,2,4]]],[5,1,1,4,5,[[206,1,1,4,5]]],[11,4,4,5,9,[[324,1,1,5,6],[334,2,2,6,8],[335,1,1,8,9]]],[13,1,1,9,10,[[400,1,1,9,10]]],[15,3,3,10,13,[[415,2,2,10,12],[425,1,1,12,13]]],[36,5,5,13,18,[[909,3,3,13,16],[910,2,2,16,18]]],[37,3,3,18,21,[[913,2,2,18,20],[916,1,1,20,21]]]],[802,3355,4870,4873,6378,9860,10149,10153,10169,11942,12328,12347,12699,22841,22852,22854,22857,22859,22913,22920,22958]]],["long",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22016]]],["loud",[19,19,[[0,1,1,0,1,[[38,1,1,0,1]]],[8,1,1,1,2,[[263,1,1,1,2]]],[9,2,2,2,4,[[281,1,1,2,3],[285,1,1,3,4]]],[10,1,1,4,5,[[298,1,1,4,5]]],[11,1,1,5,6,[[330,1,1,5,6]]],[13,3,3,6,9,[[381,1,1,6,7],[386,1,1,7,8],[398,1,1,8,9]]],[14,3,3,9,12,[[405,2,2,9,11],[412,1,1,11,12]]],[15,1,1,12,13,[[421,1,1,12,13]]],[16,1,1,13,14,[[429,1,1,13,14]]],[19,1,1,14,15,[[654,1,1,14,15]]],[22,1,1,15,16,[[714,1,1,15,16]]],[25,3,3,16,19,[[809,1,1,16,17],[810,1,1,17,18],[812,1,1,18,19]]]],[1163,7954,8412,8515,9040,10052,11504,11606,11893,12109,12110,12264,12515,12763,17183,18343,20622,20623,20668]]],["man",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8119]]],["matters",[1,1,[[18,1,1,0,1,[[608,1,1,0,1]]]],[16149]]],["men",[5,5,[[11,2,2,0,2,[[322,2,2,0,2]]],[12,1,1,2,3,[[354,1,1,2,3]]],[23,1,1,3,4,[[749,1,1,3,4]]],[33,1,1,4,5,[[902,1,1,4,5]]]],[9799,9804,10871,19063,22722]]],["mighty",[7,7,[[2,1,1,0,1,[[108,1,1,0,1]]],[4,4,4,1,5,[[156,1,1,1,2],[159,2,2,2,4],[161,1,1,4,5]]],[25,1,1,5,6,[[818,1,1,5,6]]],[31,1,1,6,7,[[889,1,1,6,7]]]],[3296,5041,5132,5134,5186,20842,22535]]],["more",[3,3,[[3,1,1,0,1,[[138,1,1,0,1]]],[8,2,2,1,3,[[257,1,1,1,2],[260,1,1,2,3]]]],[4393,7802,7897]]],["nobles",[1,1,[[31,1,1,0,1,[[891,1,1,0,1]]]],[22565]]],["sore",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8353]]],["things",[8,8,[[11,1,1,0,1,[[320,1,1,0,1]]],[17,3,3,1,4,[[440,1,1,1,2],[444,1,1,2,3],[472,1,1,3,4]]],[18,3,3,4,7,[[489,1,1,4,5],[548,1,1,5,6],[583,1,1,6,7]]],[23,1,1,7,8,[[789,1,1,7,8]]]],[9731,12960,13061,13774,14069,14995,15672,20045]]],["very",[1,1,[[37,1,1,0,1,[[911,1,1,0,1]]]],[22893]]]]},{"k":"H1420","v":[["*",[12,11,[[9,2,2,0,2,[[273,2,2,0,2]]],[12,4,3,2,5,[[354,3,2,2,4],[366,1,1,4,5]]],[16,3,3,5,8,[[426,1,1,5,6],[431,1,1,6,7],[435,1,1,7,8]]],[18,3,3,8,11,[[548,1,1,8,9],[622,2,2,9,11]]]],[8201,8203,10882,10884,11175,12706,12796,12868,14997,16323,16326]]],["dignity",[1,1,[[16,1,1,0,1,[[431,1,1,0,1]]]],[12796]]],["great",[1,1,[[9,1,1,0,1,[[273,1,1,0,1]]]],[8203]]],["greatness",[7,7,[[12,3,3,0,3,[[354,2,2,0,2],[366,1,1,2,3]]],[16,1,1,3,4,[[435,1,1,3,4]]],[18,3,3,4,7,[[548,1,1,4,5],[622,2,2,5,7]]]],[10882,10884,11175,12868,14997,16323,16326]]],["majesty",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12706]]],["things",[2,2,[[9,1,1,0,1,[[273,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]]],[8201,10882]]]]},{"k":"H1421","v":[["*",[3,3,[[22,2,2,0,2,[[721,1,1,0,1],[729,1,1,1,2]]],[35,1,1,2,3,[[907,1,1,2,3]]]],[18533,18680,22813]]],["+",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18680]]],["reproaches",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18533]]],["revilings",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22813]]]]},{"k":"H1422","v":[["taunt",[1,1,[[25,1,1,0,1,[[806,1,1,0,1]]]],[20561]]]]},{"k":"H1423","v":[["*",[16,16,[[0,5,5,0,5,[[26,2,2,0,2],[37,3,3,2,5]]],[1,2,2,5,7,[[72,1,1,5,6],[83,1,1,6,7]]],[4,1,1,7,8,[[166,1,1,7,8]]],[6,5,5,8,13,[[216,1,1,8,9],[223,2,2,9,11],[224,1,1,11,12],[225,1,1,12,13]]],[8,2,2,13,15,[[245,1,1,13,14],[251,1,1,14,15]]],[22,1,1,15,16,[[689,1,1,15,16]]]],[736,743,1136,1139,1142,2163,2522,5311,6673,6899,6903,6915,6930,7421,7615,17890]]],["+",[7,7,[[0,2,2,0,2,[[37,2,2,0,2]]],[6,4,4,2,6,[[216,1,1,2,3],[223,2,2,3,5],[225,1,1,5,6]]],[8,1,1,6,7,[[251,1,1,6,7]]]],[1136,1139,6673,6899,6903,6930,7615]]],["kid",[6,6,[[0,1,1,0,1,[[37,1,1,0,1]]],[1,2,2,1,3,[[72,1,1,1,2],[83,1,1,2,3]]],[4,1,1,3,4,[[166,1,1,3,4]]],[6,1,1,4,5,[[224,1,1,4,5]]],[22,1,1,5,6,[[689,1,1,5,6]]]],[1142,2163,2522,5311,6915,17890]]],["kids",[3,3,[[0,2,2,0,2,[[26,2,2,0,2]]],[8,1,1,2,3,[[245,1,1,2,3]]]],[736,743,7421]]]]},{"k":"H1424","v":[["Gadi",[2,2,[[11,2,2,0,2,[[327,2,2,0,2]]]],[9939,9942]]]]},{"k":"H1425","v":[["*",[15,15,[[4,4,4,0,4,[[155,2,2,0,2],[156,1,1,2,3],[181,1,1,3,4]]],[5,4,4,4,8,[[187,1,1,4,5],[198,1,1,5,6],[199,1,1,6,7],[208,1,1,7,8]]],[9,1,1,8,9,[[289,1,1,8,9]]],[11,1,1,9,10,[[322,1,1,9,10]]],[12,5,5,10,15,[[342,2,2,10,12],[349,2,2,12,14],[363,1,1,14,15]]]],[4987,4991,5047,5687,5863,6136,6162,6427,8689,9826,10446,10454,10728,10757,11109]]],["Gadite",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8689]]],["Gadites",[14,14,[[4,4,4,0,4,[[155,2,2,0,2],[156,1,1,2,3],[181,1,1,3,4]]],[5,4,4,4,8,[[187,1,1,4,5],[198,1,1,5,6],[199,1,1,6,7],[208,1,1,7,8]]],[11,1,1,8,9,[[322,1,1,8,9]]],[12,5,5,9,14,[[342,2,2,9,11],[349,2,2,11,13],[363,1,1,13,14]]]],[4987,4991,5047,5687,5863,6136,6162,6427,9826,10446,10454,10728,10757,11109]]]]},{"k":"H1426","v":[["Gaddi",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4086]]]]},{"k":"H1427","v":[["Gaddiel",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4085]]]]},{"k":"H1428","v":[["banks",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10735]]]]},{"k":"H1429","v":[["kids",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17545]]]]},{"k":"H1430","v":[["*",[4,4,[[1,1,1,0,1,[[71,1,1,0,1]]],[6,1,1,1,2,[[225,1,1,1,2]]],[17,2,2,2,4,[[440,1,1,2,3],[456,1,1,3,4]]]],[2119,6934,12977,13387]]],["+",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6934]]],["corn",[2,2,[[1,1,1,0,1,[[71,1,1,0,1]]],[17,1,1,1,2,[[440,1,1,1,2]]]],[2119,12977]]],["tomb",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13387]]]]},{"k":"H1431","v":[["*",[115,112,[[0,14,12,0,12,[[11,1,1,0,1],[18,2,2,1,3],[20,2,2,3,5],[23,1,1,5,6],[24,1,1,6,7],[25,2,1,7,8],[37,2,2,8,10],[40,1,1,10,11],[47,2,1,11,12]]],[1,2,2,12,14,[[51,2,2,12,14]]],[3,2,2,14,16,[[122,1,1,14,15],[130,1,1,15,16]]],[5,2,2,16,18,[[189,1,1,16,17],[190,1,1,17,18]]],[6,2,2,18,20,[[221,1,1,18,19],[223,1,1,19,20]]],[7,1,1,20,21,[[232,1,1,20,21]]],[8,6,5,21,26,[[237,1,1,21,22],[238,1,1,22,23],[247,1,1,23,24],[255,1,1,24,25],[261,2,1,25,26]]],[9,3,3,26,29,[[273,2,2,26,28],[278,1,1,28,29]]],[10,5,5,29,34,[[291,2,2,29,31],[300,1,1,31,32],[302,2,2,32,34]]],[11,2,2,34,36,[[316,1,1,34,35],[322,1,1,35,36]]],[12,5,5,36,41,[[348,1,1,36,37],[354,1,1,37,38],[359,1,1,38,39],[366,2,2,39,41]]],[13,4,4,41,45,[[367,1,1,41,42],[375,1,1,42,43],[376,2,2,43,45]]],[14,1,1,45,46,[[411,1,1,45,46]]],[16,3,3,46,49,[[428,1,1,46,47],[430,1,1,47,48],[435,1,1,48,49]]],[17,4,4,49,53,[[437,1,1,49,50],[442,1,1,50,51],[454,1,1,51,52],[466,1,1,52,53]]],[18,16,16,53,69,[[495,1,1,53,54],[511,1,1,54,55],[512,2,2,55,57],[515,1,1,57,58],[517,1,1,58,59],[518,1,1,59,60],[532,1,1,60,61],[546,1,1,61,62],[547,1,1,62,63],[569,1,1,63,64],[581,1,1,64,65],[603,2,2,65,67],[615,1,1,67,68],[621,1,1,68,69]]],[20,3,3,69,72,[[659,1,1,69,70],[660,2,2,70,72]]],[22,9,9,72,81,[[679,1,1,72,73],[687,1,1,73,74],[688,1,1,74,75],[701,1,1,75,76],[706,1,1,76,77],[720,1,1,77,78],[722,1,1,78,79],[727,1,1,79,80],[729,1,1,80,81]]],[23,3,3,81,84,[[749,1,1,81,82],[792,2,2,82,84]]],[24,2,2,84,86,[[797,1,1,84,85],[800,1,1,85,86]]],[25,5,5,86,91,[[817,1,1,86,87],[825,1,1,87,88],[832,1,1,88,89],[836,1,1,89,90],[839,1,1,90,91]]],[26,9,9,91,100,[[850,1,1,91,92],[857,6,6,92,98],[860,2,2,98,100]]],[27,1,1,100,101,[[870,1,1,100,101]]],[28,2,2,101,103,[[877,2,2,101,103]]],[29,1,1,103,104,[[886,1,1,103,104]]],[30,1,1,104,105,[[888,1,1,104,105]]],[31,1,1,105,106,[[892,1,1,105,106]]],[32,1,1,106,107,[[897,1,1,106,107]]],[35,2,2,107,109,[[907,2,2,107,109]]],[37,2,2,109,111,[[922,2,2,109,111]]],[38,1,1,111,112,[[925,1,1,111,112]]]],[300,470,476,521,533,626,685,705,1130,1133,1235,1470,1564,1565,3828,4125,5900,5924,6831,6908,7140,7261,7295,7484,7771,7929,8202,8206,8289,8754,8764,9102,9159,9161,9621,9799,10682,10887,10969,11176,11189,11195,11386,11403,11405,12243,12748,12790,12868,12904,13025,13302,13606,14168,14391,14436,14437,14506,14541,14551,14744,14965,14975,15416,15572,16117,16118,16233,16317,17331,17337,17342,17656,17832,17865,18081,18193,18501,18547,18657,18691,19085,20106,20122,20319,20426,20769,21065,21234,21357,21448,21742,21965,21969,21970,21971,21972,21986,22072,22073,22220,22331,22332,22486,22522,22578,22637,22813,22815,23052,23056,23094]]],["+",[15,15,[[0,3,3,0,3,[[11,1,1,0,1],[18,1,1,1,2],[25,1,1,2,3]]],[5,1,1,3,4,[[190,1,1,3,4]]],[10,2,2,4,6,[[291,1,1,4,5],[300,1,1,5,6]]],[11,1,1,6,7,[[322,1,1,6,7]]],[12,2,2,7,9,[[348,1,1,7,8],[366,1,1,8,9]]],[16,1,1,9,10,[[428,1,1,9,10]]],[17,1,1,10,11,[[437,1,1,10,11]]],[26,2,2,11,13,[[857,2,2,11,13]]],[27,1,1,13,14,[[870,1,1,13,14]]],[30,1,1,14,15,[[888,1,1,14,15]]]],[300,470,705,5924,8754,9102,9799,10682,11189,12748,12904,21969,21970,22220,22522]]],["Great",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14168]]],["advanced",[1,1,[[16,1,1,0,1,[[435,1,1,0,1]]]],[12868]]],["boasted",[1,1,[[25,1,1,0,1,[[836,1,1,0,1]]]],[21357]]],["done",[1,1,[[8,1,1,0,1,[[247,1,1,0,1]]]],[7484]]],["estate",[1,1,[[20,1,1,0,1,[[659,1,1,0,1]]]],[17331]]],["exceeded",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7771]]],["excellent",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18193]]],["great",[19,19,[[0,3,3,0,3,[[23,1,1,0,1],[25,1,1,1,2],[47,1,1,2,3]]],[3,1,1,3,4,[[130,1,1,3,4]]],[9,1,1,4,5,[[273,1,1,4,5]]],[12,1,1,5,6,[[366,1,1,5,6]]],[18,2,2,6,8,[[569,1,1,6,7],[581,1,1,7,8]]],[20,2,2,8,10,[[660,2,2,8,10]]],[23,1,1,10,11,[[749,1,1,10,11]]],[25,3,3,11,14,[[817,1,1,11,12],[825,1,1,12,13],[832,1,1,13,14]]],[26,2,2,14,16,[[857,2,2,14,16]]],[29,1,1,16,17,[[886,1,1,16,17]]],[32,1,1,17,18,[[897,1,1,17,18]]],[37,1,1,18,19,[[922,1,1,18,19]]]],[626,705,1470,4125,8202,11176,15416,15572,17337,17342,19085,20769,21065,21234,21965,21971,22486,22637,23056]]],["greater",[4,4,[[0,2,2,0,2,[[40,1,1,0,1],[47,1,1,1,2]]],[10,1,1,2,3,[[291,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]]],[1235,1470,8764,20426]]],["grew",[7,7,[[0,3,3,0,3,[[20,2,2,0,2],[24,1,1,2,3]]],[1,1,1,3,4,[[51,1,1,3,4]]],[6,1,1,4,5,[[223,1,1,4,5]]],[8,2,2,5,7,[[237,1,1,5,6],[238,1,1,6,7]]]],[521,533,685,1564,6908,7261,7295]]],["grow",[2,2,[[3,1,1,0,1,[[122,1,1,0,1]]],[31,1,1,1,2,[[892,1,1,1,2]]]],[3828,22578]]],["grown",[5,5,[[0,2,2,0,2,[[37,2,2,0,2]]],[1,1,1,2,3,[[51,1,1,2,3]]],[7,1,1,3,4,[[232,1,1,3,4]]],[11,1,1,4,5,[[316,1,1,4,5]]]],[1130,1133,1565,7140,9621]]],["himself",[2,2,[[26,2,2,0,2,[[860,2,2,0,2]]]],[22072,22073]]],["increased",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17832]]],["itself",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17865]]],["magnifical",[1,1,[[12,1,1,0,1,[[359,1,1,0,1]]]],[10969]]],["magnified",[15,15,[[0,1,1,0,1,[[18,1,1,0,1]]],[9,1,1,1,2,[[273,1,1,1,2]]],[12,1,1,2,3,[[354,1,1,2,3]]],[13,1,1,3,4,[[367,1,1,3,4]]],[18,4,4,4,8,[[512,1,1,4,5],[517,1,1,5,6],[547,1,1,6,7],[615,1,1,7,8]]],[23,2,2,8,10,[[792,2,2,8,10]]],[24,1,1,10,11,[[797,1,1,10,11]]],[26,1,1,11,12,[[857,1,1,11,12]]],[35,2,2,12,14,[[907,2,2,12,14]]],[38,1,1,14,15,[[925,1,1,14,15]]]],[476,8206,10887,11195,14437,14541,14975,16233,20106,20122,20319,21972,22813,22815,23094]]],["magnify",[11,11,[[5,1,1,0,1,[[189,1,1,0,1]]],[17,2,2,1,3,[[442,1,1,1,2],[454,1,1,2,3]]],[18,5,5,3,8,[[511,1,1,3,4],[512,1,1,4,5],[515,1,1,5,6],[532,1,1,6,7],[546,1,1,7,8]]],[22,1,1,8,9,[[720,1,1,8,9]]],[26,1,1,9,10,[[857,1,1,9,10]]],[37,1,1,10,11,[[922,1,1,10,11]]]],[5900,13025,13302,14391,14436,14506,14744,14965,18501,21986,23052]]],["myself",[1,1,[[25,1,1,0,1,[[839,1,1,0,1]]]],[21448]]],["nourish",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18547]]],["nourished",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17656]]],["nourishing",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21742]]],["passed",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11386]]],["promoted",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12790]]],["set",[2,1,[[8,2,1,0,1,[[261,2,1,0,1]]]],[7929]]],["things",[4,4,[[18,2,2,0,2,[[603,2,2,0,2]]],[28,2,2,2,4,[[877,2,2,2,4]]]],[16117,16118,22331,22332]]],["up",[13,13,[[6,1,1,0,1,[[221,1,1,0,1]]],[9,1,1,1,2,[[278,1,1,1,2]]],[10,2,2,2,4,[[302,2,2,2,4]]],[13,2,2,4,6,[[376,2,2,4,6]]],[14,1,1,6,7,[[411,1,1,6,7]]],[17,1,1,7,8,[[466,1,1,7,8]]],[18,2,2,8,10,[[518,1,1,8,9],[621,1,1,9,10]]],[22,3,3,10,13,[[701,1,1,10,11],[727,1,1,11,12],[729,1,1,12,13]]]],[6831,8289,9159,9161,11403,11405,12243,13606,14551,16317,18081,18657,18691]]]]},{"k":"H1432","v":[["*",[4,4,[[0,1,1,0,1,[[25,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[13,1,1,2,3,[[383,1,1,2,3]]],[25,1,1,3,4,[[817,1,1,3,4]]]],[705,7266,11535,20788]]],["great",[2,2,[[13,1,1,0,1,[[383,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[11535,20788]]],["grew",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[705]]],["on",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7266]]]]},{"k":"H1433","v":[["*",[13,13,[[3,1,1,0,1,[[130,1,1,0,1]]],[4,5,5,1,6,[[155,1,1,1,2],[157,1,1,2,3],[161,1,1,3,4],[163,1,1,4,5],[184,1,1,5,6]]],[18,2,2,6,8,[[556,1,1,6,7],[627,1,1,7,8]]],[22,2,2,8,10,[[687,1,1,8,9],[688,1,1,9,10]]],[25,3,3,10,13,[[832,3,3,10,13]]]],[4127,4999,5077,5183,5210,5761,15196,16396,17838,17862,21232,21237,21248]]],["+",[1,1,[[4,1,1,0,1,[[163,1,1,0,1]]]],[5210]]],["greatness",[10,10,[[3,1,1,0,1,[[130,1,1,0,1]]],[4,4,4,1,5,[[155,1,1,1,2],[157,1,1,2,3],[161,1,1,3,4],[184,1,1,4,5]]],[18,2,2,5,7,[[556,1,1,5,6],[627,1,1,6,7]]],[25,3,3,7,10,[[832,3,3,7,10]]]],[4127,4999,5077,5183,5761,15196,16396,21232,21237,21248]]],["stout",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17862]]],["stoutness",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17838]]]]},{"k":"H1434","v":[["*",[2,2,[[4,1,1,0,1,[[174,1,1,0,1]]],[10,1,1,1,2,[[297,1,1,1,2]]]],[5482,8951]]],["fringes",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5482]]],["wreaths",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8951]]]]},{"k":"H1435","v":[["Giddel",[4,4,[[14,2,2,0,2,[[404,2,2,0,2]]],[15,2,2,2,4,[[419,2,2,2,4]]]],[12074,12083,12469,12478]]]]},{"k":"H1436","v":[["Gedaliah",[32,31,[[11,5,4,0,4,[[337,5,4,0,4]]],[12,2,2,4,6,[[362,2,2,4,6]]],[14,1,1,6,7,[[412,1,1,6,7]]],[23,23,23,7,30,[[782,1,1,7,8],[783,1,1,8,9],[784,11,11,9,20],[785,9,9,20,29],[787,1,1,29,30]]],[35,1,1,30,31,[[906,1,1,30,31]]]],[10244,10245,10246,10247,11049,11055,12270,19896,19937,19946,19947,19948,19949,19950,19952,19953,19954,19955,19956,19957,19958,19959,19960,19961,19963,19966,19967,19973,19975,20003,22788]]]]},{"k":"H1437","v":[["Giddalti",[2,2,[[12,2,2,0,2,[[362,2,2,0,2]]]],[11050,11075]]]]},{"k":"H1438","v":[["*",[22,22,[[4,2,2,0,2,[[159,1,1,0,1],[164,1,1,1,2]]],[6,1,1,2,3,[[231,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[13,4,4,4,8,[[380,1,1,4,5],[397,1,1,5,6],[400,2,2,6,8]]],[18,2,2,8,10,[[552,1,1,8,9],[584,1,1,9,10]]],[22,5,5,10,15,[[687,1,1,10,11],[688,1,1,11,12],[692,1,1,12,13],[700,1,1,13,14],[723,1,1,14,15]]],[23,2,2,15,17,[[792,1,1,15,16],[794,1,1,16,17]]],[24,1,1,17,18,[[798,1,1,17,18]]],[25,1,1,18,19,[[807,1,1,18,19]]],[29,1,1,19,20,[[881,1,1,19,20]]],[37,2,2,20,22,[[921,2,2,20,22]]]],[5116,5243,7108,7271,11478,11855,11937,11940,15081,15715,17839,17883,17940,18077,18563,20105,20189,20335,20569,22409,23038,23042]]],["+",[4,4,[[8,1,1,0,1,[[237,1,1,0,1]]],[13,1,1,1,2,[[380,1,1,1,2]]],[37,2,2,2,4,[[921,2,2,2,4]]]],[7271,11478,23038,23042]]],["asunder",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20189]]],["cut",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15715]]],["down",[10,10,[[4,2,2,0,2,[[159,1,1,0,1],[164,1,1,1,2]]],[13,3,3,2,5,[[397,1,1,2,3],[400,2,2,3,5]]],[22,4,4,5,9,[[687,1,1,5,6],[688,1,1,6,7],[692,1,1,7,8],[700,1,1,8,9]]],[25,1,1,9,10,[[807,1,1,9,10]]]],[5116,5243,11855,11937,11940,17839,17883,17940,18077,20569]]],["off",[5,5,[[6,1,1,0,1,[[231,1,1,0,1]]],[18,1,1,1,2,[[552,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]],[24,1,1,3,4,[[798,1,1,3,4]]],[29,1,1,4,5,[[881,1,1,4,5]]]],[7108,15081,20105,20335,22409]]],["sunder",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18563]]]]},{"k":"H1439","v":[["Gideon",[39,37,[[6,39,37,0,37,[[216,11,10,0,10],[217,13,13,10,23],[218,15,14,23,37]]]],[6665,6667,6673,6676,6678,6681,6683,6688,6690,6693,6695,6696,6698,6699,6701,6707,6708,6709,6712,6713,6714,6718,6719,6723,6726,6730,6732,6740,6741,6742,6743,6746,6747,6749,6751,6752,6754]]]]},{"k":"H1440","v":[["Gidom",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7099]]]]},{"k":"H1441","v":[["Gideoni",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3615,3680,3910,3915,4012]]]]},{"k":"H1442","v":[["*",[7,7,[[3,1,1,0,1,[[131,1,1,0,1]]],[11,2,2,1,3,[[331,2,2,1,3]]],[18,1,1,3,4,[[521,1,1,3,4]]],[22,2,2,4,6,[[715,2,2,4,6]]],[25,1,1,6,7,[[821,1,1,6,7]]]],[4183,10067,10083,14587,18358,18375,20922]]],["+",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4183]]],["blasphemed",[5,5,[[11,2,2,0,2,[[331,2,2,0,2]]],[22,2,2,2,4,[[715,2,2,2,4]]],[25,1,1,4,5,[[821,1,1,4,5]]]],[10067,10083,18358,18375,20922]]],["blasphemeth",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14587]]]]},{"k":"H1443","v":[["*",[10,10,[[11,2,2,0,2,[[324,1,1,0,1],[334,1,1,1,2]]],[17,1,1,2,3,[[454,1,1,2,3]]],[22,1,1,3,4,[[736,1,1,3,4]]],[24,2,2,4,6,[[799,2,2,4,6]]],[25,2,2,6,8,[[814,1,1,6,7],[823,1,1,7,8]]],[27,1,1,8,9,[[863,1,1,8,9]]],[29,1,1,9,10,[[887,1,1,9,10]]]],[9862,10151,13305,18798,20361,20363,20713,21006,22111,22506]]],["+",[2,2,[[27,1,1,0,1,[[863,1,1,0,1]]],[29,1,1,1,2,[[887,1,1,1,2]]]],[22111,22506]]],["hedged",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20361]]],["inclosed",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20363]]],["masons",[2,2,[[11,2,2,0,2,[[324,1,1,0,1],[334,1,1,1,2]]]],[9862,10151]]],["repairer",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18798]]],["up",[3,3,[[17,1,1,0,1,[[454,1,1,0,1]]],[25,2,2,1,3,[[814,1,1,1,2],[823,1,1,2,3]]]],[13305,20713,21006]]]]},{"k":"H1444","v":[["wall",[2,2,[[19,1,1,0,1,[[651,1,1,0,1]]],[25,1,1,1,2,[[843,1,1,1,2]]]],[17110,21562]]]]},{"k":"H1445","v":[["Geder",[1,1,[[5,1,1,0,1,[[198,1,1,0,1]]]],[6143]]]]},{"k":"H1446","v":[["Gedor",[7,7,[[5,1,1,0,1,[[201,1,1,0,1]]],[12,6,6,1,7,[[341,3,3,1,4],[345,1,1,4,5],[346,1,1,5,6],[349,1,1,6,7]]]],[6260,10389,10403,10424,10606,10652,10727]]]]},{"k":"H1447","v":[["*",[12,11,[[3,2,1,0,1,[[138,2,1,0,1]]],[14,1,1,1,2,[[411,1,1,1,2]]],[18,2,2,2,4,[[539,1,1,2,3],[557,1,1,3,4]]],[20,1,1,4,5,[[668,1,1,4,5]]],[22,1,1,5,6,[[683,1,1,5,6]]],[25,3,3,6,9,[[814,1,1,6,7],[823,1,1,7,8],[843,1,1,8,9]]],[27,1,1,9,10,[[863,1,1,9,10]]],[32,1,1,10,11,[[899,1,1,10,11]]]],[4399,12246,14830,15210,17501,17744,20713,21006,21559,22111,22675]]],["fence",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14830]]],["hedge",[3,3,[[20,1,1,0,1,[[668,1,1,0,1]]],[25,2,2,1,3,[[814,1,1,1,2],[823,1,1,2,3]]]],[17501,20713,21006]]],["hedges",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15210]]],["wall",[6,5,[[3,2,1,0,1,[[138,2,1,0,1]]],[14,1,1,1,2,[[411,1,1,1,2]]],[22,1,1,2,3,[[683,1,1,2,3]]],[25,1,1,3,4,[[843,1,1,3,4]]],[27,1,1,4,5,[[863,1,1,4,5]]]],[4399,12246,17744,21559,22111]]],["walls",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22675]]]]},{"k":"H1448","v":[["*",[10,10,[[3,3,3,0,3,[[148,3,3,0,3]]],[8,1,1,3,4,[[259,1,1,3,4]]],[12,1,1,4,5,[[341,1,1,4,5]]],[18,1,1,5,6,[[566,1,1,5,6]]],[23,1,1,6,7,[[793,1,1,6,7]]],[25,1,1,7,8,[[843,1,1,7,8]]],[33,1,1,8,9,[[902,1,1,8,9]]],[35,1,1,9,10,[[907,1,1,9,10]]]],[4734,4742,4754,7842,10408,15366,20130,21564,22729,22811]]],["+",[2,2,[[3,1,1,0,1,[[148,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]]],[4734,7842]]],["folds",[3,3,[[3,2,2,0,2,[[148,2,2,0,2]]],[35,1,1,2,3,[[907,1,1,2,3]]]],[4742,4754,22811]]],["hedges",[4,4,[[12,1,1,0,1,[[341,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]],[23,1,1,2,3,[[793,1,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[10408,15366,20130,22729]]],["wall",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21564]]]]},{"k":"H1449","v":[["Gederah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6238]]]]},{"k":"H1450","v":[["Gederoth",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[13,1,1,1,2,[[394,1,1,1,2]]]],[6243,11782]]]]},{"k":"H1451","v":[["Gederite",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11137]]]]},{"k":"H1452","v":[["Gederathite",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10724]]]]},{"k":"H1453","v":[["Gederothaim",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6238]]]]},{"k":"H1454","v":[["This",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21692]]]]},{"k":"H1455","v":[["+",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22165]]]]},{"k":"H1456","v":[["medicine",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16895]]]]},{"k":"H1457","v":[["*",[3,3,[[10,1,1,0,1,[[308,1,1,0,1]]],[11,2,2,1,3,[[316,2,2,1,3]]]],[9383,9637,9638]]],["down",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9383]]],["stretched",[2,2,[[11,2,2,0,2,[[316,2,2,0,2]]]],[9637,9638]]]]},{"k":"H1458","v":[["*",[3,3,[[10,1,1,0,1,[[304,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[25,1,1,2,3,[[824,1,1,2,3]]]],[9227,12537,21042]]],["back",[2,2,[[10,1,1,0,1,[[304,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[9227,21042]]],["backs",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12537]]]]},{"k":"H1459","v":[["*",[13,13,[[14,3,3,0,3,[[406,1,1,0,1],[407,1,1,1,2],[408,1,1,2,3]]],[26,10,10,3,13,[[852,8,8,3,11],[853,1,1,11,12],[856,1,1,12,13]]]],[12125,12141,12153,21813,21818,21822,21828,21830,21831,21832,21833,21847,21948]]],["midst",[10,10,[[26,10,10,0,10,[[852,8,8,0,8],[853,1,1,8,9],[856,1,1,9,10]]]],[21813,21818,21822,21828,21830,21831,21832,21833,21847,21948]]],["same",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12125]]],["therein",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12153]]],["wherein",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12141]]]]},{"k":"H1460","v":[["*",[7,7,[[17,1,1,0,1,[[465,1,1,0,1]]],[19,3,3,1,4,[[637,1,1,1,2],[646,1,1,2,3],[653,1,1,3,4]]],[22,3,3,4,7,[[716,1,1,4,5],[728,1,1,5,6],[729,1,1,6,7]]]],[13562,16669,16954,17144,18407,18668,18696]]],["among",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13562]]],["back",[5,5,[[19,3,3,0,3,[[637,1,1,0,1],[646,1,1,1,2],[653,1,1,2,3]]],[22,2,2,3,5,[[716,1,1,3,4],[728,1,1,4,5]]]],[16669,16954,17144,18407,18668]]],["body",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18696]]]]},{"k":"H1461","v":[["husbandmen",[1,1,[[11,1,1,0,1,[[337,1,1,0,1]]]],[10234]]]]},{"k":"H1462","v":[["*",[3,2,[[29,1,1,0,1,[[885,1,1,0,1]]],[33,2,1,1,2,[[902,2,1,1,2]]]],[22465,22729]]],["+",[2,1,[[33,2,1,0,1,[[902,2,1,0,1]]]],[22729]]],["grasshoppers",[1,1,[[29,1,1,0,1,[[885,1,1,0,1]]]],[22465]]]]},{"k":"H1463","v":[["Gog",[10,8,[[12,1,1,0,1,[[342,1,1,0,1]]],[25,9,7,1,8,[[839,5,5,1,6],[840,4,2,6,8]]]],[10432,21427,21428,21439,21441,21443,21449,21459]]]]},{"k":"H1464","v":[["*",[3,2,[[0,2,1,0,1,[[48,2,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[1492,22784]]],["invade",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22784]]],["overcome",[2,1,[[0,2,1,0,1,[[48,2,1,0,1]]]],[1492]]]]},{"k":"H1465","v":[["+",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13351]]]]},{"k":"H1466","v":[["*",[3,3,[[17,2,2,0,2,[[457,1,1,0,1],[468,1,1,1,2]]],[23,1,1,2,3,[[757,1,1,2,3]]]],[13418,13667,19283]]],["pride",[2,2,[[17,1,1,0,1,[[468,1,1,0,1]]],[23,1,1,1,2,[[757,1,1,1,2]]]],[13667,19283]]],["up",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13418]]]]},{"k":"H1467","v":[["pride",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21874]]]]},{"k":"H1468","v":[["*",[2,2,[[3,1,1,0,1,[[127,1,1,0,1]]],[18,1,1,1,2,[[567,1,1,1,2]]]],[4055,15388]]],["brought",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4055]]],["off",[1,1,[[18,1,1,0,1,[[567,1,1,0,1]]]],[15388]]]]},{"k":"H1469","v":[["*",[2,2,[[0,1,1,0,1,[[14,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]]],[369,5769]]],["pigeon",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[369]]],["young",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5769]]]]},{"k":"H1470","v":[["Gozan",[5,5,[[11,3,3,0,3,[[329,1,1,0,1],[330,1,1,1,2],[331,1,1,2,3]]],[12,1,1,3,4,[[342,1,1,3,4]]],[22,1,1,4,5,[[715,1,1,4,5]]]],[9989,10035,10073,10454,18364]]]]},{"k":"H1471","v":[["*",[559,509,[[0,27,23,0,23,[[9,6,4,0,4],[11,1,1,4,5],[13,2,2,5,7],[14,1,1,7,8],[16,5,5,8,13],[17,2,1,13,14],[19,1,1,14,15],[20,2,2,15,17],[21,1,1,17,18],[24,1,1,18,19],[25,1,1,19,20],[34,2,1,20,21],[45,1,1,21,22],[47,1,1,22,23]]],[1,6,6,23,29,[[58,1,1,23,24],[68,1,1,24,25],[81,1,1,25,26],[82,1,1,26,27],[83,2,2,27,29]]],[2,7,7,29,36,[[107,2,2,29,31],[109,1,1,31,32],[114,1,1,32,33],[115,3,3,33,36]]],[3,5,5,36,41,[[130,2,2,36,38],[139,1,1,38,39],[140,2,2,39,41]]],[4,46,41,41,82,[[156,7,6,41,47],[159,4,3,47,50],[160,1,1,50,51],[161,4,4,51,55],[163,2,1,55,56],[164,3,3,56,59],[167,2,1,59,60],[169,1,1,60,61],[170,2,2,61,63],[171,1,1,63,64],[172,1,1,64,65],[178,2,2,65,67],[180,7,6,67,73],[181,3,3,73,76],[182,1,1,76,77],[183,1,1,77,78],[184,4,4,78,82]]],[5,13,12,82,94,[[189,1,1,82,83],[190,1,1,83,84],[191,2,2,84,86],[196,1,1,86,87],[198,1,1,87,88],[209,7,6,88,94]]],[6,5,5,94,99,[[212,3,3,94,97],[213,1,1,97,98],[214,1,1,98,99]]],[8,2,2,99,101,[[243,2,2,99,101]]],[9,5,4,101,105,[[273,2,1,101,102],[274,1,1,102,103],[288,2,2,103,105]]],[10,5,4,105,109,[[294,1,1,105,106],[301,1,1,106,107],[304,1,1,107,108],[308,2,1,108,109]]],[11,17,14,109,123,[[318,1,1,109,110],[328,1,1,110,111],[329,10,7,111,118],[330,1,1,118,119],[331,2,2,119,121],[333,2,2,121,123]]],[12,9,7,123,130,[[351,1,1,123,124],[353,5,4,124,128],[354,2,1,128,129],[355,1,1,129,130]]],[13,12,11,130,141,[[381,2,1,130,131],[386,1,1,131,132],[394,1,1,132,133],[398,5,5,133,138],[399,2,2,138,140],[402,1,1,140,141]]],[14,1,1,141,142,[[408,1,1,141,142]]],[15,6,6,142,148,[[417,3,3,142,145],[418,2,2,145,147],[425,1,1,147,148]]],[17,3,2,148,150,[[447,2,1,148,149],[469,1,1,149,150]]],[18,60,58,150,208,[[479,2,2,150,152],[486,5,5,152,157],[487,1,1,157,158],[495,2,2,158,160],[499,2,2,160,162],[510,2,2,162,164],[520,1,1,164,165],[521,3,3,165,168],[523,2,2,168,170],[524,1,1,170,171],[536,2,2,171,173],[543,1,1,173,174],[544,1,1,174,175],[549,2,2,175,177],[555,1,1,177,178],[556,4,3,178,181],[557,1,1,181,182],[559,1,1,182,183],[560,1,1,183,184],[563,1,1,184,185],[571,1,1,185,186],[573,2,2,186,188],[575,1,1,188,189],[579,1,1,189,190],[582,3,2,190,192],[583,5,5,192,197],[587,1,1,197,198],[588,1,1,198,199],[590,1,1,199,200],[592,1,1,200,201],[594,1,1,201,202],[595,1,1,202,203],[603,1,1,203,204],[612,2,2,204,206],[624,1,1,206,207],[626,1,1,207,208]]],[19,1,1,208,209,[[641,1,1,208,209]]],[22,73,66,209,275,[[679,1,1,209,210],[680,4,2,210,212],[683,1,1,212,213],[687,2,2,213,215],[688,2,2,215,217],[689,2,2,217,219],[691,1,1,219,220],[692,6,6,220,226],[694,1,1,226,227],[696,3,2,227,229],[701,1,1,229,230],[703,2,2,230,232],[704,3,2,232,234],[707,2,2,234,236],[708,1,1,236,237],[711,1,1,237,238],[712,2,2,238,240],[714,1,1,240,241],[715,1,1,241,242],[718,2,2,242,244],[719,1,1,244,245],[720,2,2,245,247],[721,1,1,247,248],[723,2,2,248,250],[727,3,3,250,253],[730,2,2,253,255],[732,1,1,255,256],[733,2,1,256,257],[736,1,1,257,258],[738,7,6,258,264],[739,3,3,264,267],[740,1,1,267,268],[742,1,1,268,269],[743,1,1,269,270],[744,6,5,270,275]]],[23,87,77,275,352,[[745,2,2,275,277],[746,1,1,277,278],[747,2,2,278,280],[748,3,3,280,283],[749,6,3,283,286],[750,2,2,286,288],[751,1,1,288,289],[753,3,3,289,292],[754,6,4,292,296],[756,1,1,296,297],[758,1,1,297,298],[760,1,1,298,299],[762,4,4,299,303],[766,1,1,303,304],[769,10,9,304,313],[770,1,1,313,314],[771,6,4,314,318],[772,2,2,318,320],[773,2,2,320,322],[774,1,1,322,323],[775,3,3,323,326],[777,2,2,326,328],[780,1,1,328,329],[787,1,1,329,330],[788,1,1,330,331],[790,3,3,331,334],[792,1,1,334,335],[793,4,4,335,339],[794,7,7,339,346],[795,8,6,346,352]]],[24,7,7,352,359,[[797,3,3,352,355],[798,1,1,355,356],[800,3,3,356,359]]],[25,87,81,359,440,[[803,1,1,359,360],[805,1,1,360,361],[806,7,6,361,367],[807,2,2,367,369],[808,1,1,369,370],[812,2,2,370,372],[813,2,2,372,374],[817,1,1,374,375],[820,2,2,375,377],[821,6,6,377,383],[823,3,3,383,386],[824,1,1,386,387],[826,3,3,387,390],[827,2,2,390,392],[829,2,2,392,394],[830,3,2,394,396],[831,4,4,396,400],[832,5,5,400,405],[833,5,5,405,410],[835,2,2,410,412],[836,1,1,412,413],[837,18,16,413,429],[838,4,3,429,432],[839,3,3,432,435],[840,6,5,435,440]]],[26,3,3,440,443,[[857,1,1,440,441],[860,1,1,441,442],[861,1,1,442,443]]],[27,3,3,443,446,[[869,2,2,443,445],[870,1,1,445,446]]],[28,10,8,446,454,[[876,1,1,446,447],[877,2,2,447,449],[878,7,5,449,454]]],[29,4,4,454,458,[[884,2,2,454,456],[887,2,2,456,458]]],[30,4,4,458,462,[[888,4,4,458,462]]],[32,9,7,462,469,[[896,6,4,462,466],[897,2,2,466,468],[899,1,1,468,469]]],[33,2,2,469,471,[[902,2,2,469,471]]],[34,7,7,471,478,[[903,3,3,471,474],[904,2,2,474,476],[905,2,2,476,478]]],[35,7,7,478,485,[[907,5,5,478,483],[908,2,2,483,485]]],[36,4,3,485,488,[[910,4,3,485,488]]],[37,17,17,488,505,[[911,2,2,488,490],[912,2,2,490,492],[917,1,1,492,493],[918,3,3,493,496],[919,1,1,496,497],[922,2,2,497,499],[924,6,6,499,505]]],[38,5,4,505,509,[[925,3,2,505,507],[927,2,2,507,509]]]],[239,254,265,266,300,337,345,374,401,402,403,413,417,442,499,526,531,565,681,696,1022,1389,1470,1766,2032,2448,2486,2506,2520,3275,3279,3341,3513,3557,3562,3569,4120,4123,4425,4454,4466,5010,5011,5012,5031,5038,5042,5112,5128,5133,5157,5158,5161,5162,5171,5231,5242,5269,5270,5325,5378,5393,5398,5407,5442,5571,5585,5612,5623,5647,5660,5661,5676,5695,5697,5703,5709,5731,5766,5779,5786,5801,5910,5911,5940,5942,6077,6153,6463,6464,6467,6469,6472,6473,6565,6566,6568,6569,6601,7374,7389,8203,8220,8646,8652,8875,9110,9242,9351,9692,9966,9991,9994,9998,10009,10012,10016,10024,10057,10073,10078,10121,10128,10791,10840,10844,10851,10855,10884,10901,11496,11593,11767,11888,11889,11890,11892,11898,11910,11917,12007,12172,12390,12391,12399,12407,12417,12697,13151,13712,13946,13953,14026,14036,14038,14040,14041,14057,14161,14167,14231,14232,14376,14378,14567,14573,14582,14585,14620,14624,14633,14795,14798,14880,14895,15011,15017,15168,15186,15191,15195,15206,15241,15245,15293,15441,15468,15475,15492,15536,15619,15650,15656,15678,15686,15692,15698,15792,15799,15817,15832,15868,15879,16117,16185,16190,16371,16392,16806,17658,17687,17689,17765,17830,17832,17856,17857,17894,17896,17910,17934,17937,17940,17946,17954,17960,17977,17999,18004,18080,18121,18125,18132,18145,18200,18201,18245,18282,18304,18305,18348,18364,18435,18437,18453,18481,18486,18514,18562,18581,18642,18643,18658,18706,18711,18726,18745,18788,18824,18826,18832,18833,18837,18843,18849,18852,18854,18856,18887,18898,18930,18934,18940,18941,18942,18951,18956,18976,19019,19021,19029,19034,19043,19067,19073,19087,19107,19111,19147,19184,19191,19201,19203,19208,19211,19226,19266,19315,19355,19391,19392,19393,19397,19462,19543,19545,19546,19547,19548,19549,19551,19565,19566,19578,19603,19604,19607,19609,19629,19632,19649,19653,19678,19698,19701,19727,19784,19799,19844,20002,20018,20046,20057,20073,20082,20141,20142,20158,20163,20168,20169,20175,20178,20189,20207,20212,20219,20232,20239,20240,20253,20256,20311,20313,20320,20341,20435,20437,20440,20495,20542,20551,20552,20553,20554,20560,20561,20571,20572,20601,20667,20671,20695,20696,20776,20885,20889,20904,20909,20917,20918,20927,20936,20980,20991,20992,21037,21090,21091,21093,21103,21105,21164,21182,21195,21198,21207,21215,21227,21230,21236,21241,21242,21246,21247,21250,21257,21260,21264,21266,21341,21342,21354,21362,21363,21364,21365,21366,21372,21373,21374,21378,21379,21380,21381,21382,21383,21389,21395,21418,21419,21425,21437,21441,21448,21455,21469,21471,21475,21476,21983,22059,22082,22202,22204,22225,22297,22328,22330,22345,22351,22352,22354,22355,22451,22464,22504,22507,22511,22512,22525,22526,22622,22623,22627,22631,22641,22648,22680,22716,22717,22736,22737,22748,22753,22756,22774,22780,22806,22810,22814,22816,22819,22826,22828,22862,22869,22877,22893,22899,22907,22910,22976,22989,22998,22999,23009,23048,23054,23070,23071,23082,23084,23086,23087,23100,23103,23129,23132]]],["+",[13,10,[[6,1,1,0,1,[[214,1,1,0,1]]],[11,4,1,1,2,[[329,4,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[18,3,3,3,6,[[520,1,1,3,4],[560,1,1,4,5],[582,1,1,5,6]]],[23,2,2,6,8,[[769,1,1,6,7],[792,1,1,7,8]]],[25,1,1,8,9,[[839,1,1,8,9]]],[26,1,1,9,10,[[857,1,1,9,10]]]],[6601,10012,10840,14567,15245,15619,19566,20082,21437,21983]]],["Gentiles",[27,27,[[0,1,1,0,1,[[9,1,1,0,1]]],[22,15,15,1,16,[[689,1,1,1,2],[720,2,2,2,4],[727,2,2,4,6],[732,1,1,6,7],[738,4,4,7,11],[739,2,2,11,13],[740,1,1,13,14],[744,2,2,14,16]]],[23,4,4,16,20,[[748,1,1,16,17],[758,1,1,17,18],[760,1,1,18,19],[790,1,1,19,20]]],[24,1,1,20,21,[[798,1,1,20,21]]],[25,1,1,21,22,[[805,1,1,21,22]]],[27,1,1,22,23,[[869,1,1,22,23]]],[28,1,1,23,24,[[878,1,1,23,24]]],[32,1,1,24,25,[[897,1,1,24,25]]],[37,1,1,25,26,[[911,1,1,25,26]]],[38,1,1,26,27,[[925,1,1,26,27]]]],[239,17894,18481,18486,18642,18658,18726,18824,18826,18832,18837,18849,18852,18856,18934,18941,19034,19315,19355,20046,20341,20542,22202,22352,22641,22899,23100]]],["another",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15619]]],["heathen",[143,138,[[2,4,4,0,4,[[114,1,1,0,1],[115,3,3,1,4]]],[4,1,1,4,5,[[156,1,1,4,5]]],[9,2,2,5,7,[[288,2,2,5,7]]],[11,5,5,7,12,[[328,1,1,7,8],[329,3,3,8,11],[333,1,1,11,12]]],[12,2,2,12,14,[[353,2,2,12,14]]],[13,5,5,14,19,[[386,1,1,14,15],[394,1,1,15,16],[399,2,2,16,18],[402,1,1,18,19]]],[14,1,1,19,20,[[408,1,1,19,20]]],[15,5,5,20,25,[[417,3,3,20,23],[418,2,2,23,25]]],[18,38,37,25,62,[[479,2,2,25,27],[486,3,3,27,30],[487,1,1,30,31],[495,2,2,31,33],[510,1,1,33,34],[521,3,3,34,37],[523,2,2,37,39],[524,1,1,39,40],[536,2,2,40,42],[555,1,1,42,43],[556,4,3,43,46],[557,1,1,46,47],[571,1,1,47,48],[573,2,2,48,50],[575,1,1,50,51],[579,1,1,51,52],[582,1,1,52,53],[583,3,3,53,56],[587,1,1,56,57],[588,1,1,57,58],[592,1,1,58,59],[603,1,1,59,60],[612,1,1,60,61],[626,1,1,61,62]]],[22,1,1,62,63,[[694,1,1,62,63]]],[23,7,6,63,69,[[753,1,1,63,64],[754,3,2,64,66],[762,1,1,66,67],[793,2,2,67,69]]],[24,4,4,69,73,[[797,2,2,69,71],[800,2,2,71,73]]],[25,46,44,73,117,[[808,1,1,73,74],[812,2,2,74,76],[813,1,1,76,77],[817,1,1,77,78],[821,6,6,78,84],[823,3,3,84,87],[824,1,1,87,88],[826,2,2,88,90],[829,1,1,90,91],[831,1,1,91,92],[832,2,2,92,94],[835,2,2,94,96],[837,15,14,96,110],[838,2,2,110,112],[839,1,1,112,113],[840,5,4,113,117]]],[28,5,4,117,121,[[877,2,2,117,119],[878,3,2,119,121]]],[29,1,1,121,122,[[887,1,1,121,122]]],[30,4,4,122,126,[[888,4,4,122,126]]],[32,1,1,126,127,[[897,1,1,126,127]]],[34,2,2,127,129,[[903,1,1,127,128],[905,1,1,128,129]]],[35,1,1,129,130,[[907,1,1,129,130]]],[36,1,1,130,131,[[910,1,1,130,131]]],[37,5,5,131,136,[[911,1,1,131,132],[918,1,1,132,133],[919,1,1,133,134],[924,2,2,134,136]]],[38,2,2,136,138,[[925,2,2,136,138]]]],[3513,3557,3562,3569,5031,8646,8652,9966,9991,9994,9998,10121,10844,10855,11593,11767,11910,11917,12007,12172,12390,12391,12399,12407,12417,13946,13953,14026,14036,14040,14057,14161,14167,14376,14573,14582,14585,14620,14624,14633,14795,14798,15168,15186,15191,15195,15206,15441,15468,15475,15492,15536,15650,15686,15692,15698,15792,15799,15832,16117,16190,16392,17977,19191,19203,19226,19397,20141,20142,20313,20320,20435,20440,20601,20667,20671,20696,20776,20904,20909,20917,20918,20927,20936,20980,20991,20992,21037,21090,21091,21182,21207,21241,21247,21341,21342,21362,21363,21364,21365,21366,21374,21378,21379,21380,21381,21382,21383,21389,21395,21418,21425,21441,21455,21469,21471,21476,22328,22330,22354,22355,22507,22511,22512,22525,22526,22648,22736,22780,22816,22877,22893,22989,23009,23082,23086,23100,23103]]],["nation",[100,88,[[0,9,9,0,9,[[11,1,1,0,1],[14,1,1,1,2],[16,1,1,2,3],[17,1,1,3,4],[19,1,1,4,5],[20,2,2,5,7],[34,1,1,7,8],[45,1,1,8,9]]],[1,5,5,9,14,[[58,1,1,9,10],[68,1,1,10,11],[81,1,1,11,12],[82,1,1,12,13],[83,1,1,13,14]]],[2,1,1,14,15,[[109,1,1,14,15]]],[3,1,1,15,16,[[130,1,1,15,16]]],[4,13,11,16,27,[[156,5,4,16,20],[161,1,1,20,21],[178,1,1,21,22],[180,4,3,22,25],[184,2,2,25,27]]],[9,1,1,27,28,[[273,1,1,27,28]]],[10,2,1,28,29,[[308,2,1,28,29]]],[12,2,2,29,31,[[353,1,1,29,30],[354,1,1,30,31]]],[13,3,2,31,33,[[381,2,1,31,32],[398,1,1,32,33]]],[17,1,1,33,34,[[469,1,1,33,34]]],[18,3,3,34,37,[[510,1,1,34,35],[583,1,1,35,36],[624,1,1,36,37]]],[19,1,1,37,38,[[641,1,1,37,38]]],[22,19,16,38,54,[[679,1,1,38,39],[680,2,1,39,40],[687,1,1,40,41],[688,1,1,41,42],[692,1,1,42,43],[696,3,2,43,45],[704,3,2,45,47],[727,1,1,47,48],[733,1,1,48,49],[736,1,1,49,50],[738,2,2,50,52],[743,1,1,52,53],[744,1,1,53,54]]],[23,25,21,54,75,[[746,1,1,54,55],[749,6,3,55,58],[750,1,1,58,59],[751,1,1,59,60],[753,1,1,60,61],[756,1,1,61,62],[762,3,3,62,65],[769,2,2,65,67],[771,3,2,67,69],[775,1,1,69,70],[777,1,1,70,71],[793,2,2,71,73],[794,2,2,73,75]]],[24,1,1,75,76,[[800,1,1,75,76]]],[25,2,2,76,78,[[803,1,1,76,77],[838,1,1,77,78]]],[26,1,1,78,79,[[861,1,1,78,79]]],[28,1,1,79,80,[[876,1,1,79,80]]],[29,1,1,80,81,[[884,1,1,80,81]]],[32,3,2,81,83,[[896,3,2,81,83]]],[34,1,1,83,84,[[903,1,1,83,84]]],[35,2,2,84,86,[[907,2,2,84,86]]],[36,1,1,86,87,[[910,1,1,86,87]]],[38,1,1,87,88,[[927,1,1,87,88]]]],[300,374,417,442,499,526,531,1022,1389,1766,2032,2448,2486,2506,3341,4120,5010,5011,5012,5038,5171,5571,5647,5660,5661,5779,5786,8203,9351,10840,10884,11496,11890,13712,14378,15656,16371,16806,17658,17689,17832,17856,17960,17999,18004,18132,18145,18643,18745,18788,18833,18843,18898,18930,18976,19067,19073,19087,19111,19147,19184,19266,19391,19392,19393,19546,19566,19604,19609,19727,19799,20158,20163,20169,20207,20437,20495,21419,22082,22297,22464,22623,22627,22737,22806,22810,22869,23129]]],["nations",[264,250,[[0,17,16,0,16,[[9,5,4,0,4],[13,2,2,4,6],[16,4,4,6,10],[17,1,1,10,11],[21,1,1,11,12],[24,1,1,12,13],[25,1,1,13,14],[34,1,1,14,15],[47,1,1,15,16]]],[1,1,1,16,17,[[83,1,1,16,17]]],[2,2,2,17,19,[[107,2,2,17,19]]],[3,4,4,19,23,[[130,1,1,19,20],[139,1,1,20,21],[140,2,2,21,23]]],[4,32,29,23,52,[[156,1,1,23,24],[159,4,3,24,27],[160,1,1,27,28],[161,3,3,28,31],[163,2,1,31,32],[164,3,3,32,35],[167,2,1,35,36],[169,1,1,36,37],[170,2,2,37,39],[171,1,1,39,40],[172,1,1,40,41],[178,1,1,41,42],[180,3,3,42,45],[181,3,3,45,48],[182,1,1,48,49],[183,1,1,49,50],[184,2,2,50,52]]],[5,8,7,52,59,[[198,1,1,52,53],[209,7,6,53,59]]],[6,3,3,59,62,[[212,2,2,59,61],[213,1,1,61,62]]],[8,2,2,62,64,[[243,2,2,62,64]]],[9,2,2,64,66,[[273,1,1,64,65],[274,1,1,65,66]]],[10,3,3,66,69,[[294,1,1,66,67],[301,1,1,67,68],[304,1,1,68,69]]],[11,7,7,69,76,[[329,3,3,69,72],[330,1,1,72,73],[331,2,2,73,75],[333,1,1,75,76]]],[12,4,4,76,80,[[351,1,1,76,77],[353,1,1,77,78],[354,1,1,78,79],[355,1,1,79,80]]],[13,4,4,80,84,[[398,4,4,80,84]]],[15,1,1,84,85,[[425,1,1,84,85]]],[17,2,1,85,86,[[447,2,1,85,86]]],[18,15,15,86,101,[[486,2,2,86,88],[499,2,2,88,90],[543,1,1,90,91],[544,1,1,91,92],[549,2,2,92,94],[559,1,1,94,95],[563,1,1,95,96],[583,1,1,96,97],[590,1,1,97,98],[594,1,1,98,99],[595,1,1,99,100],[612,1,1,100,101]]],[22,38,38,101,139,[[680,2,2,101,103],[683,1,1,103,104],[687,1,1,104,105],[688,1,1,105,106],[689,1,1,106,107],[691,1,1,107,108],[692,5,5,108,113],[701,1,1,113,114],[703,2,2,114,116],[707,2,2,116,118],[708,1,1,118,119],[711,1,1,119,120],[712,2,2,120,122],[714,1,1,122,123],[715,1,1,123,124],[718,2,2,124,126],[719,1,1,126,127],[721,1,1,127,128],[723,2,2,128,130],[730,2,2,130,132],[733,1,1,132,133],[738,1,1,133,134],[739,1,1,134,135],[742,1,1,135,136],[744,3,3,136,139]]],[23,49,45,139,184,[[745,2,2,139,141],[747,2,2,141,143],[748,2,2,143,145],[750,1,1,145,146],[753,1,1,146,147],[754,3,2,147,149],[766,1,1,149,150],[769,7,7,150,157],[770,1,1,157,158],[771,3,2,158,160],[772,2,2,160,162],[773,2,2,162,164],[774,1,1,164,165],[775,2,2,165,167],[777,1,1,167,168],[780,1,1,168,169],[787,1,1,169,170],[788,1,1,170,171],[790,2,2,171,173],[794,5,5,173,178],[795,8,6,178,184]]],[24,1,1,184,185,[[797,1,1,184,185]]],[25,37,35,185,220,[[806,7,6,185,191],[807,2,2,191,193],[813,1,1,193,194],[820,2,2,194,196],[826,1,1,196,197],[827,2,2,197,199],[829,1,1,199,200],[830,3,2,200,202],[831,3,3,202,205],[832,3,3,205,208],[833,5,5,208,213],[836,1,1,213,214],[837,3,3,214,217],[838,1,1,217,218],[839,1,1,218,219],[840,1,1,219,220]]],[27,2,2,220,222,[[869,1,1,220,221],[870,1,1,221,222]]],[28,2,1,222,223,[[878,2,1,222,223]]],[29,2,2,223,225,[[884,1,1,223,224],[887,1,1,224,225]]],[32,4,4,225,229,[[896,3,3,225,228],[899,1,1,228,229]]],[33,2,2,229,231,[[902,2,2,229,231]]],[34,4,4,231,235,[[903,1,1,231,232],[904,2,2,232,234],[905,1,1,234,235]]],[35,3,3,235,238,[[907,1,1,235,236],[908,2,2,236,238]]],[36,2,1,238,239,[[910,2,1,238,239]]],[37,10,10,239,249,[[912,2,2,239,241],[917,1,1,241,242],[918,2,2,242,244],[922,1,1,244,245],[924,4,4,245,249]]],[38,1,1,249,250,[[927,1,1,249,250]]]],[239,254,265,266,337,345,401,402,403,413,442,565,681,696,1022,1470,2520,3275,3279,4123,4425,4454,4466,5042,5112,5128,5133,5157,5158,5161,5162,5231,5242,5269,5270,5325,5378,5393,5398,5407,5442,5585,5612,5623,5676,5695,5697,5703,5709,5731,5766,5801,6153,6463,6464,6467,6469,6472,6473,6566,6568,6569,7374,7389,8203,8220,8875,9110,9242,10009,10016,10024,10057,10073,10078,10128,10791,10851,10884,10901,11888,11889,11892,11898,12697,13151,14038,14041,14231,14232,14880,14895,15011,15017,15241,15293,15678,15817,15868,15879,16185,17687,17689,17765,17830,17857,17896,17910,17934,17937,17940,17946,17954,18080,18121,18125,18200,18201,18245,18282,18304,18305,18348,18364,18435,18437,18453,18514,18562,18581,18706,18711,18745,18833,18854,18887,18940,18941,18942,18951,18956,19019,19021,19029,19043,19107,19201,19208,19211,19462,19543,19545,19547,19548,19549,19551,19565,19578,19603,19607,19629,19632,19649,19653,19678,19698,19701,19784,19844,20002,20018,20057,20073,20168,20175,20178,20189,20212,20219,20232,20239,20240,20253,20256,20311,20551,20552,20553,20554,20560,20561,20571,20572,20695,20885,20889,21093,21103,21105,21164,21195,21198,21215,21227,21230,21236,21242,21246,21250,21257,21260,21264,21266,21354,21372,21373,21374,21419,21448,21475,22204,22225,22345,22451,22504,22622,22623,22631,22680,22716,22717,22748,22753,22756,22774,22819,22826,22828,22862,22907,22910,22976,22998,22999,23054,23070,23071,23084,23087,23132]]],["people",[11,11,[[5,5,5,0,5,[[189,1,1,0,1],[190,1,1,1,2],[191,2,2,2,4],[196,1,1,4,5]]],[6,1,1,5,6,[[212,1,1,5,6]]],[11,1,1,6,7,[[318,1,1,6,7]]],[26,1,1,7,8,[[860,1,1,7,8]]],[28,1,1,8,9,[[878,1,1,8,9]]],[35,1,1,9,10,[[907,1,1,9,10]]],[37,1,1,10,11,[[922,1,1,10,11]]]],[5910,5911,5940,5942,6077,6565,9692,22059,22351,22814,23048]]]]},{"k":"H1472","v":[["*",[13,11,[[0,1,1,0,1,[[46,1,1,0,1]]],[6,2,2,1,3,[[224,2,2,1,3]]],[8,3,2,3,5,[[266,3,2,3,5]]],[15,1,1,5,6,[[421,1,1,5,6]]],[18,1,1,6,7,[[587,1,1,6,7]]],[25,2,2,7,9,[[802,2,2,7,9]]],[26,1,1,9,10,[[859,1,1,9,10]]],[33,2,1,10,11,[[902,2,1,10,11]]]],[1438,6917,6918,8019,8021,12548,15792,20475,20487,22021,22715]]],["+",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6918]]],["bodies",[6,6,[[0,1,1,0,1,[[46,1,1,0,1]]],[8,1,1,1,2,[[266,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[18,1,1,3,4,[[587,1,1,3,4]]],[25,2,2,4,6,[[802,2,2,4,6]]]],[1438,8021,12548,15792,20475,20487]]],["body",[3,3,[[8,2,2,0,2,[[266,2,2,0,2]]],[26,1,1,2,3,[[859,1,1,2,3]]]],[8019,8021,22021]]],["carcase",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6917]]],["corpses",[2,1,[[33,2,1,0,1,[[902,2,1,0,1]]]],[22715]]]]},{"k":"H1473","v":[["*",[42,41,[[11,2,2,0,2,[[336,2,2,0,2]]],[12,1,1,2,3,[[342,1,1,2,3]]],[14,12,12,3,15,[[403,1,1,3,4],[404,1,1,4,5],[406,1,1,5,6],[408,3,3,6,9],[410,1,1,9,10],[411,1,1,10,11],[412,4,4,11,15]]],[15,1,1,15,16,[[419,1,1,15,16]]],[16,1,1,16,17,[[427,1,1,16,17]]],[23,10,10,17,27,[[772,1,1,17,18],[773,5,5,18,23],[790,1,1,23,24],[792,2,2,24,26],[793,1,1,26,27]]],[25,11,10,27,37,[[802,1,1,27,28],[804,2,2,28,30],[812,2,2,30,32],[813,5,4,32,36],[826,1,1,36,37]]],[29,1,1,37,38,[[879,1,1,37,38]]],[33,1,1,38,39,[[902,1,1,38,39]]],[37,2,2,39,41,[[916,1,1,39,40],[924,1,1,40,41]]]],[10217,10218,10450,12027,12028,12111,12170,12171,12172,12236,12241,12258,12259,12260,12268,12426,12730,19624,19636,19639,19651,19655,19666,20064,20087,20091,20130,20465,20513,20517,20679,20680,20683,20684,20687,20691,21086,22379,22722,22957,23070]]],["+",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[25,1,1,1,2,[[812,1,1,1,2]]]],[12172,20680]]],["away",[7,7,[[14,5,5,0,5,[[404,1,1,0,1],[410,1,1,1,2],[411,1,1,2,3],[412,2,2,3,5]]],[15,1,1,5,6,[[419,1,1,5,6]]],[33,1,1,6,7,[[902,1,1,6,7]]]],[12028,12236,12241,12258,12260,12426,22722]]],["captive",[2,2,[[11,1,1,0,1,[[336,1,1,0,1]]],[23,1,1,1,2,[[772,1,1,1,2]]]],[10218,19624]]],["captives",[3,3,[[23,2,2,0,2,[[773,2,2,0,2]]],[25,1,1,2,3,[[802,1,1,2,3]]]],[19636,19639,20465]]],["captivity",[25,25,[[11,1,1,0,1,[[336,1,1,0,1]]],[12,1,1,1,2,[[342,1,1,1,2]]],[14,6,6,2,8,[[403,1,1,2,3],[406,1,1,3,4],[408,2,2,4,6],[412,2,2,6,8]]],[16,1,1,8,9,[[427,1,1,8,9]]],[23,7,7,9,16,[[773,3,3,9,12],[790,1,1,12,13],[792,2,2,13,15],[793,1,1,15,16]]],[25,6,6,16,22,[[804,2,2,16,18],[812,1,1,18,19],[813,2,2,19,21],[826,1,1,21,22]]],[29,1,1,22,23,[[879,1,1,22,23]]],[37,2,2,23,25,[[916,1,1,23,24],[924,1,1,24,25]]]],[10217,10450,12027,12111,12170,12171,12259,12268,12730,19651,19655,19666,20064,20087,20091,20130,20513,20517,20679,20684,20687,21086,22379,22957,23070]]],["remove",[1,1,[[25,1,1,0,1,[[813,1,1,0,1]]]],[20691]]],["removing",[2,2,[[25,2,2,0,2,[[813,2,2,0,2]]]],[20683,20684]]]]},{"k":"H1474","v":[["Golan",[4,4,[[4,1,1,0,1,[[156,1,1,0,1]]],[5,2,2,1,3,[[206,1,1,1,2],[207,1,1,2,3]]],[12,1,1,3,4,[[343,1,1,3,4]]]],[5047,6380,6408,10525]]]]},{"k":"H1475","v":[["pit",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17501]]]]},{"k":"H1476","v":[["Guni",[4,4,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[12,2,2,2,4,[[342,1,1,2,3],[344,1,1,3,4]]]],[1410,4537,10443,10548]]]]},{"k":"H1477","v":[["Gunites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4537]]]]},{"k":"H1478","v":[["*",[24,23,[[0,6,6,0,6,[[5,1,1,0,1],[6,1,1,1,2],[24,2,2,2,4],[34,1,1,4,5],[48,1,1,5,6]]],[3,5,4,6,10,[[133,2,2,6,8],[136,3,2,8,10]]],[5,1,1,10,11,[[208,1,1,10,11]]],[17,8,8,11,19,[[438,1,1,11,12],[445,1,1,12,13],[448,1,1,13,14],[449,1,1,14,15],[462,1,1,15,16],[464,1,1,16,17],[469,1,1,17,18],[471,1,1,18,19]]],[18,2,2,19,21,[[565,1,1,19,20],[581,1,1,20,21]]],[24,1,1,21,22,[[797,1,1,21,22]]],[37,1,1,22,23,[[923,1,1,22,23]]]],[154,180,666,675,1040,1506,4256,4257,4314,4340,6446,12915,13104,13172,13191,13486,13550,13698,13748,15323,15600,20329,23067]]],["dead",[1,1,[[3,1,1,0,1,[[136,1,1,0,1]]]],[4340]]],["die",[8,8,[[0,1,1,0,1,[[5,1,1,0,1]]],[3,1,1,1,2,[[133,1,1,1,2]]],[17,3,3,2,5,[[462,1,1,2,3],[464,1,1,3,4],[471,1,1,4,5]]],[18,2,2,5,7,[[565,1,1,5,6],[581,1,1,6,7]]],[37,1,1,7,8,[[923,1,1,7,8]]]],[154,4256,13486,13550,13748,15323,15600,23067]]],["died",[3,2,[[0,1,1,0,1,[[6,1,1,0,1]]],[3,2,1,1,2,[[136,2,1,1,2]]]],[180,4314]]],["dying",[1,1,[[3,1,1,0,1,[[133,1,1,0,1]]]],[4257]]],["ghost",[9,9,[[0,4,4,0,4,[[24,2,2,0,2],[34,1,1,2,3],[48,1,1,3,4]]],[17,4,4,4,8,[[438,1,1,4,5],[445,1,1,5,6],[448,1,1,6,7],[449,1,1,7,8]]],[24,1,1,8,9,[[797,1,1,8,9]]]],[666,675,1040,1506,12915,13104,13172,13191,20329]]],["perish",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13698]]],["perished",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6446]]]]},{"k":"H1479","v":[["shut",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12423]]]]},{"k":"H1480","v":[["*",[2,1,[[12,2,1,0,1,[[347,2,1,0,1]]]],[10671]]],["bodies",[1,1,[[12,1,1,0,1,[[347,1,1,0,1]]]],[10671]]],["body",[1,1,[[12,1,1,0,1,[[347,1,1,0,1]]]],[10671]]]]},{"k":"H1481","v":[["*",[98,94,[[0,9,9,0,9,[[11,1,1,0,1],[18,1,1,1,2],[19,1,1,2,3],[20,2,2,3,5],[25,1,1,5,6],[31,1,1,6,7],[34,1,1,7,8],[46,1,1,8,9]]],[1,4,4,9,13,[[52,1,1,9,10],[55,1,1,10,11],[61,2,2,11,13]]],[2,11,11,13,24,[[105,1,1,13,14],[106,4,4,14,18],[107,1,1,18,19],[108,2,2,19,21],[109,1,1,21,22],[114,2,2,22,24]]],[3,8,8,24,32,[[125,1,1,24,25],[131,5,5,25,30],[135,1,1,30,31],[138,1,1,31,32]]],[4,5,5,32,37,[[153,1,1,32,33],[170,2,2,33,35],[178,1,1,35,36],[184,1,1,36,37]]],[5,1,1,37,38,[[206,1,1,37,38]]],[6,6,6,38,44,[[215,1,1,38,39],[227,3,3,39,42],[229,2,2,42,44]]],[7,1,1,44,45,[[232,1,1,44,45]]],[8,1,1,45,46,[[253,1,1,45,46]]],[9,1,1,46,47,[[270,1,1,46,47]]],[10,1,1,47,48,[[307,1,1,47,48]]],[11,3,2,48,50,[[320,3,2,48,50]]],[12,1,1,50,51,[[353,1,1,50,51]]],[13,1,1,51,52,[[381,1,1,51,52]]],[14,1,1,52,53,[[403,1,1,52,53]]],[17,4,4,53,57,[[454,2,2,53,55],[463,1,1,55,56],[476,1,1,56,57]]],[18,11,11,57,68,[[482,1,1,57,58],[492,1,1,58,59],[499,1,1,59,60],[510,1,1,60,61],[533,1,1,61,62],[536,1,1,62,63],[538,1,1,63,64],[582,2,2,64,66],[597,1,1,66,67],[617,1,1,67,68]]],[22,10,7,68,75,[[683,1,1,68,69],[689,1,1,69,70],[694,1,1,70,71],[701,1,1,71,72],[711,2,1,72,73],[730,1,1,73,74],[732,3,1,74,75]]],[23,13,13,75,88,[[779,1,1,75,76],[786,3,3,76,79],[787,2,2,79,81],[788,4,4,81,85],[793,2,2,85,87],[794,1,1,87,88]]],[24,1,1,88,89,[[800,1,1,88,89]]],[25,3,3,89,92,[[815,1,1,89,90],[848,2,2,90,92]]],[27,2,2,92,94,[[868,1,1,92,93],[871,1,1,93,94]]]],[308,466,496,536,547,695,932,1038,1424,1601,1659,1864,1865,3230,3243,3245,3247,3248,3277,3314,3315,3320,3475,3514,3979,4167,4168,4169,4179,4182,4299,4378,4909,5390,5406,5571,5785,6381,6640,6987,6988,6989,7025,7040,7128,7691,8123,9337,9728,9729,10839,11499,12020,13312,13326,13508,13913,13977,14088,14227,14374,14761,14793,14823,15618,15629,16079,16265,17756,17890,17973,18084,18293,18700,18738,19830,19990,19992,19997,19999,20002,20018,20022,20024,20038,20145,20160,20206,20435,20738,21701,21702,22192,22230]]],["+",[5,4,[[1,1,1,0,1,[[52,1,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]],[18,1,1,2,3,[[499,1,1,2,3]]],[22,2,1,3,4,[[732,2,1,3,4]]]],[1601,4378,14227,18738]]],["Sojourn",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[695]]],["abide",[2,2,[[18,2,2,0,2,[[492,1,1,0,1],[538,1,1,1,2]]]],[14088,14823]]],["afraid",[5,5,[[4,2,2,0,2,[[153,1,1,0,1],[170,1,1,1,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[17,2,2,3,5,[[454,1,1,3,4],[476,1,1,4,5]]]],[4909,5406,7691,13326,13913]]],["awe",[1,1,[[18,1,1,0,1,[[510,1,1,0,1]]]],[14374]]],["dwell",[11,10,[[17,1,1,0,1,[[454,1,1,0,1]]],[18,1,1,1,2,[[482,1,1,1,2]]],[22,4,3,2,5,[[689,1,1,2,3],[694,1,1,3,4],[711,2,1,4,5]]],[23,5,5,5,10,[[787,1,1,5,6],[788,1,1,6,7],[793,2,2,7,9],[794,1,1,9,10]]]],[13312,13977,17890,17973,18293,20002,20018,20145,20160,20206]]],["dwelleth",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3315]]],["fear",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22230]]],["feared",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5785]]],["gathered",[1,1,[[18,1,1,0,1,[[536,1,1,0,1]]]],[14793]]],["inhabitant",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13508]]],["remain",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6640]]],["sojourn",[30,29,[[0,3,3,0,3,[[11,1,1,0,1],[18,1,1,1,2],[46,1,1,2,3]]],[1,1,1,3,4,[[61,1,1,3,4]]],[2,6,6,4,10,[[106,3,3,4,7],[108,1,1,7,8],[109,1,1,8,9],[114,1,1,9,10]]],[3,2,2,10,12,[[125,1,1,10,11],[131,1,1,11,12]]],[6,2,2,12,14,[[227,2,2,12,14]]],[7,1,1,14,15,[[232,1,1,14,15]]],[10,1,1,15,16,[[307,1,1,15,16]]],[11,2,1,16,17,[[320,2,1,16,17]]],[18,1,1,17,18,[[597,1,1,17,18]]],[22,2,2,18,20,[[701,1,1,18,19],[730,1,1,19,20]]],[23,7,7,20,27,[[786,3,3,20,23],[787,1,1,23,24],[788,3,3,24,27]]],[24,1,1,27,28,[[800,1,1,27,28]]],[25,1,1,28,29,[[848,1,1,28,29]]]],[308,466,1424,1864,3243,3245,3248,3314,3320,3514,3979,4167,6988,6989,7128,9337,9728,16079,18084,18700,19990,19992,19997,19999,20022,20024,20038,20435,21701]]],["sojourned",[11,11,[[0,5,5,0,5,[[19,1,1,0,1],[20,2,2,1,3],[31,1,1,3,4],[34,1,1,4,5]]],[4,2,2,5,7,[[170,1,1,5,6],[178,1,1,6,7]]],[6,2,2,7,9,[[227,1,1,7,8],[229,1,1,8,9]]],[11,1,1,9,10,[[320,1,1,9,10]]],[18,1,1,10,11,[[582,1,1,10,11]]]],[496,536,547,932,1038,5390,5571,6987,7040,9729,15629]]],["sojourners",[1,1,[[9,1,1,0,1,[[270,1,1,0,1]]]],[8123]]],["sojourneth",[14,14,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,4,4,1,5,[[105,1,1,1,2],[106,1,1,2,3],[107,1,1,3,4],[114,1,1,4,5]]],[3,5,5,5,10,[[131,4,4,5,9],[135,1,1,9,10]]],[5,1,1,10,11,[[206,1,1,10,11]]],[14,1,1,11,12,[[403,1,1,11,12]]],[25,2,2,12,14,[[815,1,1,12,13],[848,1,1,13,14]]]],[1865,3230,3247,3277,3475,4168,4169,4179,4182,4299,6381,12020,20738,21702]]],["sojourning",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7025]]],["strangers",[6,6,[[1,1,1,0,1,[[55,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[13,1,1,2,3,[[381,1,1,2,3]]],[18,1,1,3,4,[[582,1,1,3,4]]],[22,1,1,4,5,[[683,1,1,4,5]]],[23,1,1,5,6,[[779,1,1,5,6]]]],[1659,10839,11499,15618,17756,19830]]],["themselves",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22192]]],["together",[3,3,[[18,2,2,0,2,[[533,1,1,0,1],[617,1,1,1,2]]],[22,1,1,2,3,[[732,1,1,2,3]]]],[14761,16265,18738]]]]},{"k":"H1482","v":[["*",[7,7,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[24,1,1,2,3,[[800,1,1,2,3]]],[25,3,3,3,6,[[820,3,3,3,6]]],[33,1,1,6,7,[[901,1,1,6,7]]]],[1482,5832,20423,20883,20884,20886,22710]]],["+",[2,2,[[25,2,2,0,2,[[820,2,2,0,2]]]],[20884,20886]]],["ones",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20423]]],["whelp",[3,3,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[33,1,1,2,3,[[901,1,1,2,3]]]],[1482,5832,22710]]],["whelps",[1,1,[[25,1,1,0,1,[[820,1,1,0,1]]]],[20883]]]]},{"k":"H1483","v":[["Gur",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9783]]]]},{"k":"H1484","v":[["whelps",[2,2,[[23,1,1,0,1,[[795,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[20250,22711]]]]},{"k":"H1485","v":[["Gurbaal",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11739]]]]},{"k":"H1486","v":[["*",[77,67,[[2,5,3,0,3,[[105,5,3,0,3]]],[3,7,6,3,9,[[142,2,2,3,5],[149,2,1,5,6],[150,1,1,6,7],[152,2,2,7,9]]],[5,26,24,9,33,[[200,1,1,9,10],[201,1,1,10,11],[202,1,1,11,12],[203,3,3,12,15],[204,5,4,15,19],[205,7,7,19,26],[207,8,7,26,33]]],[6,3,2,33,35,[[211,2,1,33,34],[230,1,1,34,35]]],[12,13,11,35,46,[[343,4,4,35,39],[361,3,3,39,42],[362,2,2,42,44],[363,4,2,44,46]]],[15,2,2,46,48,[[422,1,1,46,47],[423,1,1,47,48]]],[16,2,2,48,50,[[428,1,1,48,49],[434,1,1,49,50]]],[18,3,3,50,53,[[493,1,1,50,51],[499,1,1,51,52],[602,1,1,52,53]]],[19,3,3,53,56,[[628,1,1,53,54],[643,1,1,54,55],[645,1,1,55,56]]],[22,3,3,56,59,[[695,1,1,56,57],[712,1,1,57,58],[735,1,1,58,59]]],[23,1,1,59,60,[[757,1,1,59,60]]],[25,1,1,60,61,[[825,1,1,60,61]]],[26,1,1,61,62,[[861,1,1,61,62]]],[28,1,1,62,63,[[878,1,1,62,63]]],[30,1,1,63,64,[[888,1,1,63,64]]],[31,3,1,64,65,[[889,3,1,64,65]]],[32,1,1,65,66,[[894,1,1,65,66]]],[33,1,1,66,67,[[902,1,1,66,67]]]],[3209,3210,3211,4544,4545,4814,4829,4881,4882,6189,6203,6266,6276,6289,6292,6299,6301,6303,6304,6322,6331,6338,6345,6353,6361,6372,6385,6386,6387,6389,6391,6401,6421,6512,7063,10508,10515,10517,10519,11020,11022,11046,11054,11055,11090,11091,12583,12589,12754,12858,14097,14222,16113,16414,16873,16919,17997,18320,18771,19291,21062,22094,22346,22521,22538,22600,22722]]],["+",[2,2,[[3,1,1,0,1,[[152,1,1,0,1]]],[15,1,1,1,2,[[422,1,1,1,2]]]],[4882,12583]]],["lot",[60,54,[[2,4,3,0,3,[[105,4,3,0,3]]],[3,6,5,3,8,[[142,2,2,3,5],[149,2,1,5,6],[150,1,1,6,7],[152,1,1,7,8]]],[5,23,21,8,29,[[200,1,1,8,9],[201,1,1,9,10],[202,1,1,10,11],[203,3,3,11,14],[204,2,1,14,15],[205,7,7,15,22],[207,8,7,22,29]]],[6,3,2,29,31,[[211,2,1,29,30],[230,1,1,30,31]]],[12,9,8,31,39,[[343,4,4,31,35],[361,2,2,35,37],[362,1,1,37,38],[363,2,1,38,39]]],[16,2,2,39,41,[[428,1,1,39,40],[434,1,1,40,41]]],[18,2,2,41,43,[[493,1,1,41,42],[602,1,1,42,43]]],[19,3,3,43,46,[[628,1,1,43,44],[643,1,1,44,45],[645,1,1,45,46]]],[22,3,3,46,49,[[695,1,1,46,47],[712,1,1,47,48],[735,1,1,48,49]]],[23,1,1,49,50,[[757,1,1,49,50]]],[25,1,1,50,51,[[825,1,1,50,51]]],[26,1,1,51,52,[[861,1,1,51,52]]],[31,1,1,52,53,[[889,1,1,52,53]]],[32,1,1,53,54,[[894,1,1,53,54]]]],[3209,3210,3211,4544,4545,4814,4829,4881,6189,6203,6266,6276,6289,6292,6304,6322,6331,6338,6345,6353,6361,6372,6385,6386,6387,6389,6391,6401,6421,6512,7063,10508,10515,10517,10519,11020,11022,11055,11091,12754,12858,14097,16113,16414,16873,16919,17997,18320,18771,19291,21062,22094,22538,22600]]],["lots",[15,14,[[2,1,1,0,1,[[105,1,1,0,1]]],[5,3,3,1,4,[[204,3,3,1,4]]],[12,4,4,4,8,[[361,1,1,4,5],[362,1,1,5,6],[363,2,2,6,8]]],[15,1,1,8,9,[[423,1,1,8,9]]],[18,1,1,9,10,[[499,1,1,9,10]]],[28,1,1,10,11,[[878,1,1,10,11]]],[30,1,1,11,12,[[888,1,1,11,12]]],[31,2,1,12,13,[[889,2,1,12,13]]],[33,1,1,13,14,[[902,1,1,13,14]]]],[3209,6299,6301,6303,11046,11054,11090,11091,12589,14222,22346,22521,22538,22722]]]]},{"k":"H1487","v":[["clods",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13013]]]]},{"k":"H1488","v":[["*",[4,4,[[4,1,1,0,1,[[170,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]],[18,1,1,2,3,[[549,1,1,2,3]]],[29,1,1,3,4,[[885,1,1,3,4]]]],[5388,13608,15006,22465]]],["+",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13608]]],["fleece",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5388]]],["grass",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15006]]],["mowings",[1,1,[[29,1,1,0,1,[[885,1,1,0,1]]]],[22465]]]]},{"k":"H1489","v":[["treasurer",[1,1,[[14,1,1,0,1,[[403,1,1,0,1]]]],[12024]]]]},{"k":"H1490","v":[["treasurers",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12194]]]]},{"k":"H1491","v":[["took",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14982]]]]},{"k":"H1492","v":[["fleece",[7,4,[[6,7,4,0,4,[[216,7,4,0,4]]]],[6691,6692,6693,6694]]]]},{"k":"H1493","v":[["Gizonite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10707]]]]},{"k":"H1494","v":[["*",[15,15,[[0,3,3,0,3,[[30,1,1,0,1],[37,2,2,1,3]]],[4,1,1,3,4,[[167,1,1,3,4]]],[8,4,4,4,8,[[260,4,4,4,8]]],[9,2,2,8,10,[[279,2,2,8,10]]],[17,1,1,10,11,[[436,1,1,10,11]]],[22,1,1,11,12,[[731,1,1,11,12]]],[23,1,1,12,13,[[751,1,1,12,13]]],[32,1,1,13,14,[[893,1,1,13,14]]],[33,1,1,14,15,[[900,1,1,14,15]]]],[892,1131,1132,5338,7863,7865,7868,7872,8340,8341,12889,18718,19148,22595,22696]]],["+",[5,5,[[0,2,2,0,2,[[30,1,1,0,1],[37,1,1,1,2]]],[8,2,2,2,4,[[260,2,2,2,4]]],[17,1,1,4,5,[[436,1,1,4,5]]]],[892,1131,7863,7865,12889]]],["down",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22696]]],["off",[1,1,[[23,1,1,0,1,[[751,1,1,0,1]]]],[19148]]],["poll",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22595]]],["shear",[2,2,[[0,1,1,0,1,[[37,1,1,0,1]]],[4,1,1,1,2,[[167,1,1,1,2]]]],[1132,5338]]],["shearers",[3,3,[[8,2,2,0,2,[[260,2,2,0,2]]],[22,1,1,2,3,[[731,1,1,2,3]]]],[7868,7872,18718]]],["sheepshearers",[2,2,[[9,2,2,0,2,[[279,2,2,0,2]]]],[8340,8341]]]]},{"k":"H1495","v":[["Gazez",[2,1,[[12,2,1,0,1,[[339,2,1,0,1]]]],[10352]]]]},{"k":"H1496","v":[["*",[11,11,[[1,1,1,0,1,[[69,1,1,0,1]]],[10,5,5,1,6,[[295,1,1,1,2],[296,1,1,2,3],[297,3,3,3,6]]],[12,1,1,6,7,[[359,1,1,6,7]]],[22,1,1,7,8,[[687,1,1,7,8]]],[24,1,1,8,9,[[799,1,1,8,9]]],[25,1,1,9,10,[[841,1,1,9,10]]],[29,1,1,10,11,[[883,1,1,10,11]]]],[2076,8895,8932,8943,8945,8946,10966,17839,20363,21519,22434]]],["hewed",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8895]]],["hewn",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21519]]],["stone",[4,4,[[1,1,1,0,1,[[69,1,1,0,1]]],[10,1,1,1,2,[[296,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]],[29,1,1,3,4,[[883,1,1,3,4]]]],[2076,8932,20363,22434]]],["stones",[4,4,[[10,3,3,0,3,[[297,3,3,0,3]]],[22,1,1,3,4,[[687,1,1,3,4]]]],[8943,8945,8946,17839]]],["wrought",[1,1,[[12,1,1,0,1,[[359,1,1,0,1]]]],[10966]]]]},{"k":"H1497","v":[["*",[30,30,[[0,2,2,0,2,[[20,1,1,0,1],[30,1,1,1,2]]],[2,2,2,2,4,[[95,1,1,2,3],[108,1,1,3,4]]],[4,2,2,4,6,[[180,2,2,4,6]]],[6,2,2,6,8,[[219,1,1,6,7],[231,1,1,7,8]]],[9,1,1,8,9,[[289,1,1,8,9]]],[12,1,1,9,10,[[348,1,1,9,10]]],[17,4,4,10,14,[[455,1,1,10,11],[459,3,3,11,14]]],[18,2,2,14,16,[[512,1,1,14,15],[546,1,1,15,16]]],[19,3,3,16,19,[[631,1,1,16,17],[649,1,1,17,18],[655,1,1,18,19]]],[22,1,1,19,20,[[688,1,1,19,20]]],[23,2,2,20,22,[[765,1,1,20,21],[766,1,1,21,22]]],[25,5,5,22,27,[[819,4,4,22,26],[823,1,1,26,27]]],[32,2,2,27,29,[[894,1,1,27,28],[895,1,1,28,29]]],[38,1,1,29,30,[[925,1,1,29,30]]]],[538,904,2853,3294,5640,5642,6779,7125,8674,10696,13345,13438,13445,13455,14420,14939,16506,17037,17220,17852,19452,19457,20856,20861,20865,20867,21005,22597,22610,23102]]],["+",[6,6,[[0,1,1,0,1,[[30,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[12,1,1,3,4,[[348,1,1,3,4]]],[18,2,2,4,6,[[512,1,1,4,5],[546,1,1,5,6]]]],[904,6779,8674,10696,14420,14939]]],["Rob",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17037]]],["away",[7,7,[[0,1,1,0,1,[[20,1,1,0,1]]],[2,1,1,1,2,[[95,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[17,2,2,3,5,[[455,1,1,3,4],[459,1,1,4,5]]],[19,1,1,5,6,[[631,1,1,5,6]]],[22,1,1,6,7,[[688,1,1,6,7]]]],[538,2853,5642,13345,13438,16506,17852]]],["caught",[1,1,[[6,1,1,0,1,[[231,1,1,0,1]]]],[7125]]],["consume",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13455]]],["exercised",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[21005]]],["off",[1,1,[[32,1,1,0,1,[[895,1,1,0,1]]]],[22610]]],["pluck",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13445]]],["rob",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3294]]],["robbeth",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17220]]],["spoiled",[7,7,[[4,1,1,0,1,[[180,1,1,0,1]]],[23,2,2,1,3,[[765,1,1,1,2],[766,1,1,2,3]]],[25,4,4,3,7,[[819,4,4,3,7]]]],[5640,19452,19457,20856,20861,20865,20867]]],["torn",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23102]]],["violence",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22597]]]]},{"k":"H1498","v":[["*",[4,4,[[2,1,1,0,1,[[95,1,1,0,1]]],[18,1,1,1,2,[[539,1,1,1,2]]],[22,1,1,2,3,[[739,1,1,2,3]]],[25,1,1,3,4,[[823,1,1,3,4]]]],[2851,14837,18851,21005]]],["robbery",[3,3,[[18,1,1,0,1,[[539,1,1,0,1]]],[22,1,1,1,2,[[739,1,1,1,2]]],[25,1,1,2,3,[[823,1,1,2,3]]]],[14837,18851,21005]]],["violence",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2851]]]]},{"k":"H1499","v":[["*",[2,2,[[20,1,1,0,1,[[663,1,1,0,1]]],[25,1,1,1,2,[[819,1,1,1,2]]]],[17405,20867]]],["perverting",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17405]]],["violence",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20867]]]]},{"k":"H1500","v":[["*",[6,6,[[2,1,1,0,1,[[95,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]],[25,4,4,2,6,[[819,3,3,2,5],[834,1,1,5,6]]]],[2853,17721,20856,20861,20865,21295]]],["robbed",[1,1,[[25,1,1,0,1,[[834,1,1,0,1]]]],[21295]]],["spoil",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17721]]],["that",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2853]]],["violence",[3,3,[[25,3,3,0,3,[[819,3,3,0,3]]]],[20856,20861,20865]]]]},{"k":"H1501","v":[["palmerworm",[3,3,[[28,2,2,0,2,[[876,1,1,0,1],[877,1,1,1,2]]],[29,1,1,2,3,[[882,1,1,2,3]]]],[22295,22336,22419]]]]},{"k":"H1502","v":[["Gazzam",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12075,12471]]]]},{"k":"H1503","v":[["*",[3,3,[[17,1,1,0,1,[[449,1,1,0,1]]],[22,2,2,1,3,[[689,1,1,1,2],[718,1,1,2,3]]]],[13189,17885,18444]]],["+",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17885]]],["stock",[2,2,[[17,1,1,0,1,[[449,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[13189,18444]]]]},{"k":"H1504","v":[["*",[13,13,[[10,2,2,0,2,[[293,2,2,0,2]]],[11,1,1,2,3,[[318,1,1,2,3]]],[13,1,1,3,4,[[392,1,1,3,4]]],[16,1,1,4,5,[[427,1,1,4,5]]],[17,1,1,5,6,[[457,1,1,5,6]]],[18,2,2,6,8,[[565,1,1,6,7],[613,1,1,7,8]]],[22,2,2,8,10,[[687,1,1,8,9],[731,1,1,9,10]]],[24,1,1,10,11,[[799,1,1,10,11]]],[25,1,1,11,12,[[838,1,1,11,12]]],[34,1,1,12,13,[[905,1,1,12,13]]]],[8841,8842,9678,11753,12725,13417,15313,16209,17849,18719,20408,21408,22785]]],["+",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8841]]],["decree",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13417]]],["decreed",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12725]]],["divide",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8842]]],["divided",[1,1,[[18,1,1,0,1,[[613,1,1,0,1]]]],[16209]]],["down",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9678]]],["off",[6,6,[[13,1,1,0,1,[[392,1,1,0,1]]],[18,1,1,1,2,[[565,1,1,1,2]]],[22,1,1,2,3,[[731,1,1,2,3]]],[24,1,1,3,4,[[799,1,1,3,4]]],[25,1,1,4,5,[[838,1,1,4,5]]],[34,1,1,5,6,[[905,1,1,5,6]]]],[11753,15313,18719,20408,21408,22785]]],["snatch",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17849]]]]},{"k":"H1505","v":[["*",[6,6,[[26,6,6,0,6,[[851,3,3,0,3],[853,1,1,3,4],[854,2,2,4,6]]]],[21785,21792,21803,21844,21881,21885]]],["out",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21792,21803]]],["soothsayers",[4,4,[[26,4,4,0,4,[[851,1,1,0,1],[853,1,1,1,2],[854,2,2,2,4]]]],[21785,21844,21881,21885]]]]},{"k":"H1506","v":[["*",[2,2,[[0,1,1,0,1,[[14,1,1,0,1]]],[18,1,1,1,2,[[613,1,1,1,2]]]],[377,16209]]],["parts",[1,1,[[18,1,1,0,1,[[613,1,1,0,1]]]],[16209]]],["pieces",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[377]]]]},{"k":"H1507","v":[["*",[15,14,[[5,5,5,0,5,[[196,1,1,0,1],[198,1,1,1,2],[202,2,2,2,4],[207,1,1,4,5]]],[6,2,1,5,6,[[211,2,1,5,6]]],[9,1,1,6,7,[[271,1,1,6,7]]],[10,3,3,7,10,[[299,3,3,7,10]]],[12,4,4,10,14,[[343,1,1,10,11],[344,1,1,11,12],[351,1,1,12,13],[357,1,1,13,14]]]],[6097,6142,6268,6275,6402,6538,8157,9066,9067,9068,10521,10563,10790,10930]]],["Gazer",[2,2,[[9,1,1,0,1,[[271,1,1,0,1]]],[12,1,1,1,2,[[351,1,1,1,2]]]],[8157,10790]]],["Gezer",[13,12,[[5,5,5,0,5,[[196,1,1,0,1],[198,1,1,1,2],[202,2,2,2,4],[207,1,1,4,5]]],[6,2,1,5,6,[[211,2,1,5,6]]],[10,3,3,6,9,[[299,3,3,6,9]]],[12,3,3,9,12,[[343,1,1,9,10],[344,1,1,10,11],[357,1,1,11,12]]]],[6097,6142,6268,6275,6402,6538,9066,9067,9068,10521,10563,10930]]]]},{"k":"H1508","v":[["*",[8,8,[[24,1,1,0,1,[[800,1,1,0,1]]],[25,7,7,1,8,[[842,4,4,1,5],[843,3,3,5,8]]]],[20427,21538,21539,21540,21541,21553,21562,21565]]],["place",[7,7,[[25,7,7,0,7,[[842,4,4,0,4],[843,3,3,4,7]]]],[21538,21539,21540,21541,21553,21562,21565]]],["polishing",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20427]]]]},{"k":"H1509","v":[["inhabited",[1,1,[[2,1,1,0,1,[[105,1,1,0,1]]]],[3223]]]]},{"k":"H1510","v":[["decree",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21854,21861]]]]},{"k":"H1511","v":[["Gezrites",[1,1,[[8,1,1,0,1,[[262,1,1,0,1]]]],[7938]]]]},{"k":"H1512","v":[["belly",[2,2,[[0,1,1,0,1,[[2,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]]],[69,3039]]]]},{"k":"H1513","v":[["*",[18,18,[[2,1,1,0,1,[[105,1,1,0,1]]],[9,3,3,1,4,[[280,1,1,1,2],[288,2,2,2,4]]],[17,1,1,4,5,[[476,1,1,4,5]]],[18,5,5,5,10,[[495,3,3,5,8],[597,1,1,8,9],[617,1,1,9,10]]],[19,3,3,10,13,[[633,1,1,10,11],[652,1,1,11,12],[653,1,1,12,13]]],[22,2,2,13,15,[[722,1,1,13,14],[725,1,1,14,15]]],[25,3,3,15,18,[[802,1,1,15,16],[811,1,1,16,17],[825,1,1,17,18]]]],[3213,8363,8611,8615,13909,14126,14130,14131,16078,16273,16568,17135,17162,18552,18613,20477,20635,21067]]],["coal",[2,2,[[9,1,1,0,1,[[280,1,1,0,1]]],[22,1,1,1,2,[[725,1,1,1,2]]]],[8363,18613]]],["coals",[15,15,[[2,1,1,0,1,[[105,1,1,0,1]]],[9,2,2,1,3,[[288,2,2,1,3]]],[17,1,1,3,4,[[476,1,1,3,4]]],[18,5,5,4,9,[[495,3,3,4,7],[597,1,1,7,8],[617,1,1,8,9]]],[19,2,2,9,11,[[633,1,1,9,10],[653,1,1,10,11]]],[22,1,1,11,12,[[722,1,1,11,12]]],[25,3,3,12,15,[[802,1,1,12,13],[811,1,1,13,14],[825,1,1,14,15]]]],[3213,8611,8615,13909,14126,14130,14131,16078,16273,16568,17162,18552,20477,20635,21067]]],["fire",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17135]]]]},{"k":"H1514","v":[["Gaham",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[571]]]]},{"k":"H1515","v":[["Gahar",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12074,12469]]]]},{"k":"H1516","v":[["*",[59,53,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,3,3,1,4,[[155,1,1,1,2],[156,1,1,2,3],[186,1,1,3,4]]],[5,7,5,4,9,[[194,1,1,4,5],[201,2,1,5,6],[204,2,1,6,7],[205,2,2,7,9]]],[8,3,3,9,12,[[248,1,1,9,10],[252,2,2,10,12]]],[9,1,1,12,13,[[274,1,1,12,13]]],[11,3,3,13,16,[[314,1,1,13,14],[326,1,1,14,15],[335,1,1,15,16]]],[12,3,3,16,19,[[341,2,2,16,18],[355,1,1,18,19]]],[13,5,5,19,24,[[380,1,1,19,20],[391,1,1,20,21],[392,1,1,21,22],[394,1,1,22,23],[399,1,1,23,24]]],[15,5,5,24,29,[[414,2,2,24,26],[415,1,1,26,27],[423,2,2,27,29]]],[18,1,1,29,30,[[500,1,1,29,30]]],[22,5,5,30,35,[[700,2,2,30,32],[706,2,2,32,34],[718,1,1,34,35]]],[23,8,6,35,41,[[746,1,1,35,36],[751,3,2,36,38],[763,3,2,38,40],[776,1,1,40,41]]],[25,10,9,41,50,[[807,1,1,41,42],[808,1,1,42,43],[832,1,1,43,44],[833,1,1,44,45],[836,1,1,45,46],[837,2,2,46,48],[840,3,2,48,50]]],[32,1,1,50,51,[[893,1,1,50,51]]],[37,3,2,51,53,[[924,3,2,51,53]]]],[4360,5004,5050,5845,6013,6210,6309,6335,6348,7503,7621,7670,8222,9567,9903,10175,10399,10424,10902,11485,11715,11741,11767,11914,12320,12322,12340,12618,12623,14239,18053,18057,18165,18168,18424,18988,19150,19151,19409,19413,19766,20566,20593,21242,21253,21352,21363,21365,21459,21463,22585,23072,23073]]],["valley",[51,45,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,3,3,1,4,[[155,1,1,1,2],[156,1,1,2,3],[186,1,1,3,4]]],[5,7,5,4,9,[[194,1,1,4,5],[201,2,1,5,6],[204,2,1,6,7],[205,2,2,7,9]]],[8,3,3,9,12,[[248,1,1,9,10],[252,2,2,10,12]]],[9,1,1,12,13,[[274,1,1,12,13]]],[11,3,3,13,16,[[314,1,1,13,14],[326,1,1,14,15],[335,1,1,15,16]]],[12,3,3,16,19,[[341,2,2,16,18],[355,1,1,18,19]]],[13,5,5,19,24,[[380,1,1,19,20],[391,1,1,20,21],[392,1,1,21,22],[394,1,1,22,23],[399,1,1,23,24]]],[15,5,5,24,29,[[414,2,2,24,26],[415,1,1,26,27],[423,2,2,27,29]]],[18,1,1,29,30,[[500,1,1,29,30]]],[22,4,4,30,34,[[700,2,2,30,32],[706,1,1,32,33],[718,1,1,33,34]]],[23,8,6,34,40,[[746,1,1,34,35],[751,3,2,35,37],[763,3,2,37,39],[776,1,1,39,40]]],[25,3,2,40,42,[[840,3,2,40,42]]],[32,1,1,42,43,[[893,1,1,42,43]]],[37,3,2,43,45,[[924,3,2,43,45]]]],[4360,5004,5050,5845,6013,6210,6309,6335,6348,7503,7621,7670,8222,9567,9903,10175,10399,10424,10902,11485,11715,11741,11767,11914,12320,12322,12340,12618,12623,14239,18053,18057,18168,18424,18988,19150,19151,19409,19413,19766,21459,21463,22585,23072,23073]]],["valleys",[8,8,[[22,1,1,0,1,[[706,1,1,0,1]]],[25,7,7,1,8,[[807,1,1,1,2],[808,1,1,2,3],[832,1,1,3,4],[833,1,1,4,5],[836,1,1,5,6],[837,2,2,6,8]]]],[18165,20566,20593,21242,21253,21352,21363,21365]]]]},{"k":"H1517","v":[["*",[7,6,[[0,2,1,0,1,[[31,2,1,0,1]]],[17,2,2,1,3,[[445,1,1,1,2],[475,1,1,2,3]]],[22,1,1,3,4,[[726,1,1,3,4]]],[25,2,2,4,6,[[838,2,2,4,6]]]],[960,13097,13881,18618,21403,21405]]],["sinew",[3,2,[[0,2,1,0,1,[[31,2,1,0,1]]],[22,1,1,1,2,[[726,1,1,1,2]]]],[960,18618]]],["sinews",[4,4,[[17,2,2,0,2,[[445,1,1,0,1],[475,1,1,1,2]]],[25,2,2,2,4,[[838,2,2,2,4]]]],[13097,13881,21403,21405]]]]},{"k":"H1518","v":[["*",[6,6,[[6,1,1,0,1,[[230,1,1,0,1]]],[17,2,2,1,3,[[473,1,1,1,2],[475,1,1,2,3]]],[18,1,1,3,4,[[499,1,1,3,4]]],[25,1,1,4,5,[[833,1,1,4,5]]],[32,1,1,5,6,[[896,1,1,5,6]]]],[7087,13801,13887,14213,21250,22630]]],["forth",[4,4,[[6,1,1,0,1,[[230,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]],[25,1,1,2,3,[[833,1,1,2,3]]],[32,1,1,3,4,[[896,1,1,3,4]]]],[7087,13801,21250,22630]]],["took",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14213]]],["up",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13887]]]]},{"k":"H1519","v":[["strove",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21935]]]]},{"k":"H1520","v":[["Giah",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8073]]]]},{"k":"H1521","v":[["Gihon",[6,6,[[0,1,1,0,1,[[1,1,1,0,1]]],[10,3,3,1,4,[[291,3,3,1,4]]],[13,2,2,4,6,[[398,1,1,4,5],[399,1,1,5,6]]]],[43,8750,8755,8762,11905,11922]]]]},{"k":"H1522","v":[["Gehazi",[12,12,[[11,12,12,0,12,[[316,7,7,0,7],[317,3,3,7,10],[320,2,2,10,12]]]],[9615,9617,9628,9630,9632,9634,9639,9667,9668,9672,9731,9732]]]]},{"k":"H1523","v":[["*",[45,44,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,19,19,1,20,[[479,1,1,1,2],[486,1,1,2,3],[490,2,2,3,5],[491,1,1,5,6],[493,1,1,6,7],[498,1,1,7,8],[508,1,1,8,9],[509,1,1,9,10],[512,1,1,10,11],[525,1,1,11,12],[528,1,1,12,13],[530,1,1,13,14],[566,1,1,14,15],[573,1,1,15,16],[574,2,2,16,18],[595,1,1,18,19],[626,1,1,19,20]]],[19,5,4,20,24,[[629,1,1,20,21],[650,3,2,21,23],[651,1,1,23,24]]],[21,1,1,24,25,[[671,1,1,24,25]]],[22,11,11,25,36,[[687,1,1,25,26],[703,1,1,26,27],[707,1,1,27,28],[713,2,2,28,30],[719,1,1,30,31],[727,1,1,31,32],[739,1,1,32,33],[743,2,2,33,35],[744,1,1,35,36]]],[27,1,1,36,37,[[871,1,1,36,37]]],[28,2,2,37,39,[[877,2,2,37,39]]],[34,2,2,39,41,[[903,1,1,39,40],[905,1,1,40,41]]],[35,1,1,41,42,[[908,1,1,41,42]]],[37,2,2,42,44,[[919,1,1,42,43],[920,1,1,43,44]]]],[10851,13956,14035,14078,14079,14087,14101,14192,14338,14366,14419,14645,14699,14725,15342,15476,15479,15486,15893,16387,16447,17068,17069,17096,17541,17832,18127,18212,18321,18322,18467,18649,18853,18915,18916,18932,22230,22332,22334,22746,22786,22837,23008,23023]]],["+",[2,1,[[19,2,1,0,1,[[650,2,1,0,1]]]],[17068]]],["Rejoice",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23008]]],["glad",[10,10,[[18,3,3,0,3,[[508,1,1,0,1],[525,1,1,1,2],[573,1,1,2,3]]],[19,1,1,3,4,[[651,1,1,3,4]]],[21,1,1,4,5,[[671,1,1,4,5]]],[22,2,2,5,7,[[703,1,1,5,6],[744,1,1,6,7]]],[28,2,2,7,9,[[877,2,2,7,9]]],[34,1,1,9,10,[[903,1,1,9,10]]]],[14338,14645,15476,17096,17541,18127,18932,22332,22334,22746]]],["in",[1,1,[[19,1,1,0,1,[[629,1,1,0,1]]]],[16447]]],["joy",[2,2,[[34,1,1,0,1,[[905,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[22786,22837]]],["joyful",[4,4,[[18,2,2,0,2,[[512,1,1,0,1],[626,1,1,1,2]]],[22,2,2,2,4,[[727,1,1,2,3],[739,1,1,3,4]]]],[14419,16387,18649,18853]]],["rejoice",[22,22,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,12,12,1,13,[[479,1,1,1,2],[486,1,1,2,3],[490,2,2,3,5],[491,1,1,5,6],[498,1,1,6,7],[509,1,1,7,8],[528,1,1,8,9],[530,1,1,9,10],[566,1,1,10,11],[574,1,1,11,12],[595,1,1,12,13]]],[19,1,1,13,14,[[650,1,1,13,14]]],[22,7,7,14,21,[[687,1,1,14,15],[707,1,1,15,16],[713,2,2,16,18],[719,1,1,18,19],[743,2,2,19,21]]],[37,1,1,21,22,[[920,1,1,21,22]]]],[10851,13956,14035,14078,14079,14087,14192,14366,14699,14725,15342,15479,15893,17069,17832,18212,18321,18322,18467,18915,18916,23023]]],["rejoiced",[2,2,[[18,1,1,0,1,[[574,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]]],[15486,22230]]],["rejoiceth",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14101]]]]},{"k":"H1524","v":[["*",[9,9,[[17,1,1,0,1,[[438,1,1,0,1]]],[18,3,3,1,4,[[520,1,1,1,2],[522,1,1,2,3],[542,1,1,3,4]]],[22,1,1,4,5,[[694,1,1,4,5]]],[23,1,1,5,6,[[792,1,1,5,6]]],[26,1,1,6,7,[[850,1,1,6,7]]],[27,1,1,7,8,[[870,1,1,7,8]]],[28,1,1,8,9,[[876,1,1,8,9]]]],[12926,14570,14612,14872,17979,20113,21747,22209,22307]]],["+",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12926]]],["gladness",[2,2,[[23,1,1,0,1,[[792,1,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]]],[20113,22307]]],["joy",[3,3,[[18,1,1,0,1,[[520,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]],[27,1,1,2,3,[[870,1,1,2,3]]]],[14570,17979,22209]]],["rejoice",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14872]]],["rejoicing",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14612]]],["sort",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21747]]]]},{"k":"H1525","v":[["*",[2,2,[[22,2,2,0,2,[[713,1,1,0,1],[743,1,1,1,2]]]],[18322,18915]]],["joy",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18322]]],["rejoicing",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18915]]]]},{"k":"H1526","v":[["Gilonite",[2,2,[[9,2,2,0,2,[[281,1,1,0,1],[289,1,1,1,2]]]],[8401,8687]]]]},{"k":"H1527","v":[["Ginath",[2,2,[[10,2,2,0,2,[[306,2,2,0,2]]]],[9304,9305]]]]},{"k":"H1528","v":[["plaister",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21879]]]]},{"k":"H1529","v":[["Geshan",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10353]]]]},{"k":"H1530","v":[["*",[34,31,[[0,7,4,0,4,[[30,7,4,0,4]]],[5,2,2,4,6,[[193,1,1,4,5],[194,1,1,5,6]]],[9,1,1,6,7,[[284,1,1,6,7]]],[11,1,1,7,8,[[331,1,1,7,8]]],[17,3,3,8,11,[[443,1,1,8,9],[450,1,1,9,10],[473,1,1,10,11]]],[18,5,5,11,16,[[519,1,1,11,12],[542,1,1,12,13],[566,1,1,13,14],[584,2,2,14,16]]],[21,1,1,16,17,[[674,1,1,16,17]]],[22,4,4,17,21,[[703,1,1,17,18],[715,1,1,18,19],[726,1,1,19,20],[729,1,1,20,21]]],[23,6,6,21,27,[[749,1,1,21,22],[753,1,1,22,23],[775,1,1,23,24],[795,3,3,24,27]]],[25,1,1,27,28,[[827,1,1,27,28]]],[27,1,1,28,29,[[873,1,1,28,29]]],[31,1,1,29,30,[[890,1,1,29,30]]],[37,1,1,30,31,[[920,1,1,30,31]]]],[919,921,924,925,6002,6031,8495,10086,13046,13231,13804,14562,14867,15335,15724,15728,17594,18120,18378,18632,18688,19080,19186,19726,20249,20254,20267,21103,22263,22551,23027]]],["billows",[1,1,[[18,1,1,0,1,[[519,1,1,0,1]]]],[14562]]],["heap",[12,9,[[0,7,4,0,4,[[30,7,4,0,4]]],[5,2,2,4,6,[[193,1,1,4,5],[194,1,1,5,6]]],[9,1,1,6,7,[[284,1,1,6,7]]],[17,1,1,7,8,[[443,1,1,7,8]]],[22,1,1,8,9,[[703,1,1,8,9]]]],[919,921,924,925,6002,6031,8495,13046,18120]]],["heaps",[6,6,[[11,1,1,0,1,[[331,1,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]],[23,2,2,3,5,[[753,1,1,3,4],[795,1,1,4,5]]],[27,1,1,5,6,[[873,1,1,5,6]]]],[10086,13231,18378,19186,20249,22263]]],["spring",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17594]]],["waves",[14,14,[[17,1,1,0,1,[[473,1,1,0,1]]],[18,4,4,1,5,[[542,1,1,1,2],[566,1,1,2,3],[584,2,2,3,5]]],[22,2,2,5,7,[[726,1,1,5,6],[729,1,1,6,7]]],[23,4,4,7,11,[[749,1,1,7,8],[775,1,1,8,9],[795,2,2,9,11]]],[25,1,1,11,12,[[827,1,1,11,12]]],[31,1,1,12,13,[[890,1,1,12,13]]],[37,1,1,13,14,[[920,1,1,13,14]]]],[13804,14867,15335,15724,15728,18632,18688,19080,19726,20254,20267,21103,22551,23027]]]]},{"k":"H1531","v":[]},{"k":"H1532","v":[["barber's",[1,1,[[25,1,1,0,1,[[806,1,1,0,1]]]],[20547]]]]},{"k":"H1533","v":[["Gilboa",[8,8,[[8,3,3,0,3,[[263,1,1,0,1],[266,2,2,1,3]]],[9,3,3,3,6,[[267,2,2,3,5],[287,1,1,5,6]]],[12,2,2,6,8,[[347,2,2,6,8]]]],[7946,8010,8017,8028,8043,8592,10660,10667]]]]},{"k":"H1534","v":[["*",[11,11,[[18,2,2,0,2,[[554,1,1,0,1],[560,1,1,1,2]]],[20,1,1,2,3,[[670,1,1,2,3]]],[22,2,2,3,5,[[683,1,1,3,4],[695,1,1,4,5]]],[23,1,1,5,6,[[791,1,1,5,6]]],[25,5,5,6,11,[[811,3,3,6,9],[824,1,1,9,10],[827,1,1,10,11]]]],[15111,15254,17529,17767,17996,20076,20635,20639,20646,21031,21110]]],["heaven",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15111]]],["thing",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17996]]],["wheel",[3,3,[[18,1,1,0,1,[[560,1,1,0,1]]],[20,1,1,1,2,[[670,1,1,1,2]]],[25,1,1,2,3,[[811,1,1,2,3]]]],[15254,17529,20646]]],["wheels",[6,6,[[22,1,1,0,1,[[683,1,1,0,1]]],[23,1,1,1,2,[[791,1,1,1,2]]],[25,4,4,2,6,[[811,2,2,2,4],[824,1,1,4,5],[827,1,1,5,6]]]],[17767,20076,20635,20639,21031,21110]]]]},{"k":"H1535","v":[["wheels",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21942]]]]},{"k":"H1536","v":[["wheel",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18192]]]]},{"k":"H1537","v":[["Gilgal",[41,39,[[4,1,1,0,1,[[163,1,1,0,1]]],[5,13,13,1,14,[[190,2,2,1,3],[191,2,2,3,5],[195,1,1,5,6],[196,5,5,6,11],[198,1,1,11,12],[200,1,1,12,13],[201,1,1,13,14]]],[6,2,2,14,16,[[212,1,1,14,15],[213,1,1,15,16]]],[8,13,12,16,28,[[242,1,1,16,17],[245,1,1,17,18],[246,3,2,18,20],[248,5,5,20,25],[250,3,3,25,28]]],[9,2,2,28,30,[[285,2,2,28,30]]],[11,2,2,30,32,[[314,1,1,30,31],[316,1,1,31,32]]],[15,1,1,32,33,[[424,1,1,32,33]]],[27,3,3,33,36,[[865,1,1,33,34],[870,1,1,34,35],[873,1,1,35,36]]],[29,3,2,36,38,[[882,1,1,36,37],[883,2,1,37,38]]],[32,1,1,38,39,[[898,1,1,38,39]]]],[5238,5929,5930,5943,5944,6043,6070,6071,6073,6079,6107,6153,6193,6209,6546,6587,7368,7426,7459,7460,7489,7492,7493,7497,7500,7572,7581,7593,8526,8551,9552,9641,12653,22148,22223,22263,22414,22428,22653]]]]},{"k":"H1538","v":[["*",[12,12,[[1,2,2,0,2,[[65,1,1,0,1],[87,1,1,1,2]]],[3,5,5,2,7,[[117,4,4,2,6],[119,1,1,6,7]]],[6,1,1,7,8,[[219,1,1,7,8]]],[11,1,1,8,9,[[321,1,1,8,9]]],[12,3,3,9,12,[[347,1,1,9,10],[360,2,2,10,12]]]],[1963,2659,3606,3622,3624,3626,3739,6807,9791,10669,10986,11007]]],["head",[1,1,[[12,1,1,0,1,[[347,1,1,0,1]]]],[10669]]],["man",[2,2,[[1,2,2,0,2,[[65,1,1,0,1],[87,1,1,1,2]]]],[1963,2659]]],["poll",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3739]]],["polls",[6,6,[[3,4,4,0,4,[[117,4,4,0,4]]],[12,2,2,4,6,[[360,2,2,4,6]]]],[3606,3622,3624,3626,10986,11007]]],["skull",[2,2,[[6,1,1,0,1,[[219,1,1,0,1]]],[11,1,1,1,2,[[321,1,1,1,2]]]],[6807,9791]]]]},{"k":"H1539","v":[["skin",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13253]]]]},{"k":"H1540","v":[["*",[188,168,[[0,2,2,0,2,[[8,1,1,0,1],[34,1,1,1,2]]],[1,1,1,2,3,[[69,1,1,2,3]]],[2,24,20,3,23,[[107,17,14,3,17],[109,7,6,17,23]]],[3,3,3,23,26,[[138,1,1,23,24],[140,2,2,24,26]]],[4,3,3,26,29,[[174,1,1,26,27],[179,1,1,27,28],[181,1,1,28,29]]],[6,1,1,29,30,[[228,1,1,29,30]]],[7,3,3,30,33,[[234,2,2,30,32],[235,1,1,32,33]]],[8,15,13,33,46,[[237,2,1,33,34],[238,2,2,34,36],[239,2,2,36,38],[244,1,1,38,39],[249,2,2,39,41],[255,3,3,41,44],[257,3,2,44,46]]],[9,6,4,46,50,[[272,3,1,46,47],[273,1,1,47,48],[281,1,1,48,49],[288,1,1,49,50]]],[11,15,14,50,64,[[327,1,1,50,51],[328,1,1,51,52],[329,7,7,52,59],[330,1,1,59,60],[336,3,2,60,62],[337,2,2,62,64]]],[12,7,7,64,71,[[342,2,2,64,66],[343,1,1,66,67],[345,2,2,67,69],[346,1,1,69,70],[354,1,1,70,71]]],[13,1,1,71,72,[[402,1,1,71,72]]],[14,1,1,72,73,[[404,1,1,72,73]]],[15,1,1,73,74,[[419,1,1,73,74]]],[16,5,3,74,77,[[427,3,1,74,75],[428,1,1,75,76],[433,1,1,76,77]]],[17,8,8,77,85,[[447,1,1,77,78],[455,2,2,78,80],[468,1,1,80,81],[471,2,2,81,83],[473,1,1,83,84],[476,1,1,84,85]]],[18,3,3,85,88,[[495,1,1,85,86],[575,1,1,86,87],[596,1,1,87,88]]],[19,7,7,88,95,[[638,1,1,88,89],[645,1,1,89,90],[647,1,1,90,91],[652,1,1,91,92],[653,1,1,92,93],[654,2,2,93,95]]],[22,17,16,95,111,[[683,1,1,95,96],[694,1,1,96,97],[700,2,2,97,99],[701,1,1,99,100],[702,1,1,100,101],[704,1,1,101,102],[716,1,1,102,103],[718,1,1,103,104],[725,3,2,104,106],[727,2,2,106,108],[731,1,1,108,109],[734,1,1,109,110],[735,1,1,110,111]]],[23,27,26,111,137,[[745,1,1,111,112],[755,1,1,112,113],[757,3,2,113,115],[764,2,2,115,117],[766,1,1,117,118],[768,1,1,118,119],[771,1,1,119,120],[773,4,4,120,124],[776,2,2,124,126],[777,1,1,126,127],[783,1,1,127,128],[784,2,2,128,130],[787,1,1,130,131],[793,1,1,131,132],[796,5,5,132,137]]],[24,4,3,137,140,[[797,1,1,137,138],[798,1,1,138,139],[800,2,1,139,140]]],[25,14,12,140,152,[[813,2,1,140,141],[814,1,1,141,142],[817,3,3,142,145],[822,1,1,145,146],[823,1,1,146,147],[824,4,3,147,150],[840,2,2,150,152]]],[26,1,1,152,153,[[859,1,1,152,153]]],[27,3,3,153,156,[[863,1,1,153,154],[868,1,1,154,155],[871,1,1,155,156]]],[29,12,8,156,164,[[879,2,2,156,158],[881,1,1,158,159],[883,3,2,159,161],[884,2,1,161,162],[885,4,2,162,164]]],[32,2,2,164,166,[[893,2,2,164,166]]],[33,2,2,166,168,[[901,1,1,166,167],[902,1,1,167,168]]]],[226,1018,2077,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3329,3335,3336,3337,3338,3339,4406,4450,4462,5500,5605,5708,7023,7176,7179,7194,7267,7283,7297,7318,7319,7406,7516,7519,7732,7742,7743,7795,7804,8177,8207,8408,8618,9954,9972,9989,9994,10006,10009,10010,10011,10016,10035,10216,10217,10233,10243,10434,10454,10469,10581,10582,10616,10888,12013,12028,12426,12730,12761,12830,13150,13353,13354,13666,13746,13751,13810,13901,14133,15492,15916,16701,16903,16973,17122,17167,17174,17194,17752,17972,18060,18066,18078,18106,18151,18402,18425,18601,18602,18645,18657,18712,18754,18773,18949,19246,19285,19288,19426,19434,19466,19525,19616,19636,19639,19642,19649,19742,19745,19781,19932,19942,19948,20000,20137,20291,20303,20304,20305,20306,20313,20346,20442,20683,20722,20798,20799,20819,20968,20986,21017,21025,21036,21471,21476,22016,22115,22179,22230,22369,22370,22402,22428,22450,22457,22475,22481,22585,22595,22706,22717]]],["+",[40,33,[[2,2,1,0,1,[[109,2,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]],[7,1,1,2,3,[[235,1,1,2,3]]],[8,8,6,3,9,[[237,2,1,3,4],[255,3,3,4,7],[257,3,2,7,9]]],[9,3,2,9,11,[[272,2,1,9,10],[273,1,1,10,11]]],[11,4,4,11,15,[[329,1,1,11,12],[330,1,1,12,13],[336,2,2,13,15]]],[12,2,2,15,17,[[343,1,1,15,16],[354,1,1,16,17]]],[22,2,2,17,19,[[700,1,1,17,18],[704,1,1,18,19]]],[23,7,7,19,26,[[755,1,1,19,20],[764,1,1,20,21],[766,1,1,21,22],[768,1,1,22,23],[771,1,1,23,24],[787,1,1,24,25],[793,1,1,25,26]]],[24,2,2,26,28,[[798,1,1,26,27],[800,1,1,27,28]]],[25,1,1,28,29,[[824,1,1,28,29]]],[27,1,1,29,30,[[863,1,1,29,30]]],[29,6,3,30,33,[[883,2,1,30,31],[885,4,2,31,33]]]],[3336,4406,7194,7267,7732,7742,7743,7795,7804,8177,8207,9989,10035,10216,10217,10469,10888,18060,18151,19246,19434,19466,19525,19616,20000,20137,20346,20442,21025,22115,22428,22475,22481]]],["Open",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[19,1,1,1,2,[[654,1,1,1,2]]]],[15916,17174]]],["appeared",[1,1,[[0,1,1,0,1,[[34,1,1,0,1]]]],[1018]]],["appeareth",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17194]]],["away",[17,15,[[11,6,6,0,6,[[329,4,4,0,4],[337,2,2,4,6]]],[12,3,3,6,9,[[342,2,2,6,8],[346,1,1,8,9]]],[13,1,1,9,10,[[402,1,1,9,10]]],[14,1,1,10,11,[[404,1,1,10,11]]],[15,1,1,11,12,[[419,1,1,11,12]]],[16,3,1,12,13,[[427,3,1,12,13]]],[23,2,2,13,15,[[745,1,1,13,14],[773,1,1,14,15]]]],[9994,10006,10011,10016,10233,10243,10434,10454,10616,12013,12028,12426,12730,18949,19639]]],["bewray",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17972]]],["brought",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10010]]],["captive",[20,18,[[11,2,2,0,2,[[327,1,1,0,1],[328,1,1,1,2]]],[22,1,1,2,3,[[727,1,1,2,3]]],[23,13,12,3,15,[[757,2,1,3,4],[764,1,1,4,5],[773,2,2,5,7],[783,1,1,7,8],[784,2,2,8,10],[796,5,5,10,15]]],[29,3,2,15,17,[[879,1,1,15,16],[884,2,1,16,17]]],[33,1,1,17,18,[[901,1,1,17,18]]]],[9954,9972,18657,19285,19426,19636,19649,19932,19942,19948,20291,20303,20304,20305,20306,22370,22457,22706]]],["captives",[2,2,[[11,1,1,0,1,[[336,1,1,0,1]]],[23,1,1,1,2,[[773,1,1,1,2]]]],[10216,19642]]],["captivity",[9,9,[[6,1,1,0,1,[[228,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]],[24,2,2,2,4,[[797,1,1,2,3],[800,1,1,3,4]]],[25,2,2,4,6,[[840,2,2,4,6]]],[29,2,2,6,8,[[879,1,1,6,7],[883,1,1,7,8]]],[32,1,1,8,9,[[893,1,1,8,9]]]],[7023,17752,20313,20442,21471,21476,22369,22450,22595]]],["depart",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13354]]],["departed",[3,3,[[8,2,2,0,2,[[239,2,2,0,2]]],[27,1,1,2,3,[[871,1,1,2,3]]]],[7318,7319,22230]]],["discover",[6,6,[[4,1,1,0,1,[[174,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[19,1,1,2,3,[[652,1,1,2,3]]],[25,1,1,3,4,[[817,1,1,3,4]]],[32,1,1,4,5,[[893,1,1,4,5]]],[33,1,1,5,6,[[902,1,1,5,6]]]],[5500,13901,17122,20799,22585,22717]]],["discovered",[14,14,[[1,1,1,0,1,[[69,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]],[22,1,1,3,4,[[735,1,1,3,4]]],[23,1,1,4,5,[[757,1,1,4,5]]],[25,8,8,5,13,[[814,1,1,5,6],[817,2,2,6,8],[822,1,1,8,9],[823,1,1,9,10],[824,3,3,10,13]]],[27,1,1,13,14,[[868,1,1,13,14]]]],[2077,8618,14133,18773,19288,20722,20798,20819,20968,20986,21017,21025,21036,22179]]],["discovereth",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13150]]],["exile",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8408]]],["gone",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18106]]],["himself",[2,2,[[8,1,1,0,1,[[238,1,1,0,1]]],[9,1,1,1,2,[[272,1,1,1,2]]]],[7297,8177]]],["itself",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16903]]],["open",[4,4,[[3,2,2,0,2,[[140,2,2,0,2]]],[23,2,2,2,4,[[776,2,2,2,4]]]],[4450,4462,19742,19745]]],["opened",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13810]]],["openeth",[3,3,[[17,3,3,0,3,[[468,1,1,0,1],[471,2,2,1,3]]]],[13666,13746,13751]]],["ourselves",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7516]]],["published",[2,2,[[16,2,2,0,2,[[428,1,1,0,1],[433,1,1,1,2]]]],[12761,12830]]],["remove",[2,1,[[25,2,1,0,1,[[813,2,1,0,1]]]],[20683]]],["removed",[4,4,[[11,1,1,0,1,[[329,1,1,0,1]]],[12,2,2,1,3,[[345,2,2,1,3]]],[22,1,1,3,4,[[716,1,1,3,4]]]],[10009,10581,10582,18402]]],["reveal",[2,2,[[17,1,1,0,1,[[455,1,1,0,1]]],[23,1,1,1,2,[[777,1,1,1,2]]]],[13353,19781]]],["revealed",[8,8,[[4,1,1,0,1,[[181,1,1,0,1]]],[8,1,1,1,2,[[238,1,1,1,2]]],[22,5,5,2,7,[[700,1,1,2,3],[701,1,1,3,4],[718,1,1,4,5],[731,1,1,5,6],[734,1,1,6,7]]],[26,1,1,7,8,[[859,1,1,7,8]]]],[5708,7283,18066,18078,18425,18712,18754,22016]]],["revealeth",[3,3,[[19,2,2,0,2,[[638,1,1,0,1],[647,1,1,1,2]]],[29,1,1,2,3,[[881,1,1,2,3]]]],[16701,16973,22402]]],["shewed",[2,2,[[18,1,1,0,1,[[575,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]]],[15492,17167]]],["themselves",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7519]]],["told",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7406]]],["uncover",[21,17,[[2,18,15,0,15,[[107,17,14,0,14],[109,1,1,14,15]]],[7,1,1,15,16,[[234,1,1,15,16]]],[22,2,1,16,17,[[725,2,1,16,17]]]],[3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3337,7176,18601]]],["uncovered",[7,7,[[0,1,1,0,1,[[8,1,1,0,1]]],[2,4,4,1,5,[[109,4,4,1,5]]],[7,1,1,5,6,[[234,1,1,5,6]]],[22,1,1,6,7,[[725,1,1,6,7]]]],[226,3329,3335,3338,3339,7179,18602]]],["uncovereth",[1,1,[[4,1,1,0,1,[[179,1,1,0,1]]]],[5605]]],["yourselves",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18645]]]]},{"k":"H1541","v":[["*",[9,8,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,7,6,2,8,[[851,7,6,2,8]]]],[12120,12146,21777,21780,21786,21787,21788,21805]]],["+",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12146]]],["over",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12120]]],["reveal",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21805]]],["revealed",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21777,21788]]],["revealer",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21805]]],["revealeth",[3,3,[[26,3,3,0,3,[[851,3,3,0,3]]]],[21780,21786,21787]]]]},{"k":"H1542","v":[["*",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]]],[6253,8401]]],["+",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8401]]],["Giloh",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6253]]]]},{"k":"H1543","v":[["*",[15,9,[[5,3,1,0,1,[[201,3,1,0,1]]],[6,3,1,1,2,[[211,3,1,1,2]]],[10,3,2,2,4,[[297,3,2,2,4]]],[13,3,2,4,6,[[370,3,2,4,6]]],[20,1,1,6,7,[[670,1,1,6,7]]],[37,2,2,7,9,[[914,2,2,7,9]]]],[6221,6524,8975,8976,11258,11259,17529,22924,22925]]],["bowl",[3,3,[[20,1,1,0,1,[[670,1,1,0,1]]],[37,2,2,1,3,[[914,2,2,1,3]]]],[17529,22924,22925]]],["bowls",[3,2,[[10,3,2,0,2,[[297,3,2,0,2]]]],[8975,8976]]],["pommels",[3,2,[[13,3,2,0,2,[[370,3,2,0,2]]]],[11258,11259]]],["springs",[6,2,[[5,3,1,0,1,[[201,3,1,0,1]]],[6,3,1,1,2,[[211,3,1,1,2]]]],[6221,6524]]]]},{"k":"H1544","v":[["*",[48,45,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[10,2,2,2,4,[[305,1,1,2,3],[311,1,1,3,4]]],[11,4,4,4,8,[[329,1,1,4,5],[333,2,2,5,7],[335,1,1,7,8]]],[23,1,1,8,9,[[794,1,1,8,9]]],[25,39,36,9,45,[[807,6,5,9,14],[809,1,1,14,15],[815,6,5,15,20],[817,1,1,20,21],[819,3,3,21,24],[821,8,7,24,31],[823,2,2,31,33],[824,5,5,33,38],[831,1,1,38,39],[834,1,1,39,40],[837,2,2,40,42],[838,1,1,42,43],[845,2,2,43,45]]]],[3554,5696,9261,9477,9995,10130,10140,10189,20168,20567,20568,20569,20572,20576,20614,20734,20735,20736,20737,20738,20798,20855,20861,20864,20902,20903,20911,20913,20919,20926,20934,20979,20980,21014,21037,21044,21046,21056,21217,21305,21377,21384,21420,21609,21611]]],["idols",[47,44,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[10,2,2,2,4,[[305,1,1,2,3],[311,1,1,3,4]]],[11,4,4,4,8,[[329,1,1,4,5],[333,2,2,5,7],[335,1,1,7,8]]],[25,39,36,8,44,[[807,6,5,8,13],[809,1,1,13,14],[815,6,5,14,19],[817,1,1,19,20],[819,3,3,20,23],[821,8,7,23,30],[823,2,2,30,32],[824,5,5,32,37],[831,1,1,37,38],[834,1,1,38,39],[837,2,2,39,41],[838,1,1,41,42],[845,2,2,42,44]]]],[3554,5696,9261,9477,9995,10130,10140,10189,20567,20568,20569,20572,20576,20614,20734,20735,20736,20737,20738,20798,20855,20861,20864,20902,20903,20911,20913,20919,20926,20934,20979,20980,21014,21037,21044,21046,21056,21217,21305,21377,21384,21420,21609,21611]]],["images",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20168]]]]},{"k":"H1545","v":[["clothes",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21145]]]]},{"k":"H1546","v":[["*",[15,14,[[11,1,1,0,1,[[337,1,1,0,1]]],[22,2,2,1,3,[[698,1,1,1,2],[723,1,1,2,3]]],[23,5,5,3,8,[[768,1,1,3,4],[772,1,1,4,5],[773,1,1,5,6],[784,1,1,6,7],[796,1,1,7,8]]],[25,3,3,8,11,[[802,1,1,8,9],[834,1,1,9,10],[841,1,1,10,11]]],[29,2,2,11,13,[[879,2,2,11,13]]],[30,2,1,13,14,[[888,2,1,13,14]]]],[10249,18033,18574,19529,19622,19657,19942,20307,20466,21301,21478,22370,22373,22530]]],["captive",[2,2,[[23,2,2,0,2,[[768,1,1,0,1],[784,1,1,1,2]]]],[19529,19942]]],["captives",[3,3,[[22,2,2,0,2,[[698,1,1,0,1],[723,1,1,1,2]]],[23,1,1,2,3,[[772,1,1,2,3]]]],[18033,18574,19622]]],["captivity",[10,9,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,2,2,1,3,[[773,1,1,1,2],[796,1,1,2,3]]],[25,3,3,3,6,[[802,1,1,3,4],[834,1,1,4,5],[841,1,1,5,6]]],[29,2,2,6,8,[[879,2,2,6,8]]],[30,2,1,8,9,[[888,2,1,8,9]]]],[10249,19657,20307,20466,21301,21478,22370,22373,22530]]]]},{"k":"H1547","v":[["*",[4,4,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,3,3,1,4,[[851,1,1,1,2],[854,1,1,2,3],[855,1,1,3,4]]]],[12167,21783,21887,21918]]],["+",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21783]]],["captivity",[3,3,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,2,2,1,3,[[854,1,1,1,2],[855,1,1,2,3]]]],[12167,21887,21918]]]]},{"k":"H1548","v":[["*",[23,18,[[0,1,1,0,1,[[40,1,1,0,1]]],[2,6,4,1,5,[[102,2,1,1,2],[103,3,2,2,4],[110,1,1,4,5]]],[3,4,3,5,8,[[122,4,3,5,8]]],[4,1,1,8,9,[[173,1,1,8,9]]],[6,3,3,9,12,[[226,3,3,9,12]]],[9,4,2,12,14,[[276,1,1,12,13],[280,3,1,13,14]]],[12,1,1,14,15,[[356,1,1,14,15]]],[22,1,1,15,16,[[685,1,1,15,16]]],[23,1,1,16,17,[[785,1,1,16,17]]],[25,1,1,17,18,[[845,1,1,17,18]]]],[1209,3085,3119,3120,3350,3832,3841,3842,5459,6966,6968,6971,8244,8382,10911,17802,19962,21619]]],["+",[6,6,[[2,2,2,0,2,[[103,2,2,0,2]]],[3,1,1,2,3,[[122,1,1,2,3]]],[4,1,1,3,4,[[173,1,1,3,4]]],[6,1,1,4,5,[[226,1,1,4,5]]],[9,1,1,5,6,[[280,1,1,5,6]]]],[3119,3120,3841,5459,6968,8382]]],["off",[3,3,[[2,2,2,0,2,[[103,1,1,0,1],[110,1,1,1,2]]],[9,1,1,2,3,[[276,1,1,2,3]]]],[3120,3350,8244]]],["polled",[2,1,[[9,2,1,0,1,[[280,2,1,0,1]]]],[8382]]],["shave",[5,4,[[2,1,1,0,1,[[102,1,1,0,1]]],[3,2,1,1,2,[[122,2,1,1,2]]],[22,1,1,2,3,[[685,1,1,2,3]]],[25,1,1,3,4,[[845,1,1,3,4]]]],[3085,3832,17802,21619]]],["shaved",[2,2,[[0,1,1,0,1,[[40,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]]],[1209,10911]]],["shaven",[5,5,[[2,1,1,0,1,[[102,1,1,0,1]]],[3,1,1,1,2,[[122,1,1,1,2]]],[6,2,2,2,4,[[226,2,2,2,4]]],[23,1,1,4,5,[[785,1,1,4,5]]]],[3085,3842,6966,6971,19962]]]]},{"k":"H1549","v":[["*",[2,2,[[22,2,2,0,2,[[681,1,1,0,1],[686,1,1,1,2]]]],[17730,17808]]],["glasses",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17730]]],["roll",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17808]]]]},{"k":"H1550","v":[["*",[4,3,[[10,2,1,0,1,[[296,2,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]],[21,1,1,2,3,[[675,1,1,2,3]]]],[8930,12708,17612]]],["folding",[2,1,[[10,2,1,0,1,[[296,2,1,0,1]]]],[8930]]],["rings",[2,2,[[16,1,1,0,1,[[426,1,1,0,1]]],[21,1,1,1,2,[[675,1,1,1,2]]]],[12708,17612]]]]},{"k":"H1551","v":[["Galilee",[6,6,[[5,2,2,0,2,[[206,1,1,0,1],[207,1,1,1,2]]],[10,1,1,2,3,[[299,1,1,2,3]]],[11,1,1,3,4,[[327,1,1,3,4]]],[12,1,1,4,5,[[343,1,1,4,5]]],[22,1,1,5,6,[[687,1,1,5,6]]]],[6379,6413,9062,9954,10530,17830]]]]},{"k":"H1552","v":[["*",[6,5,[[5,4,3,0,3,[[199,1,1,0,1],[208,3,2,1,3]]],[25,1,1,3,4,[[848,1,1,3,4]]],[28,1,1,4,5,[[878,1,1,4,5]]]],[6156,6436,6437,21687,22347]]],["borders",[3,3,[[5,3,3,0,3,[[199,1,1,0,1],[208,2,2,1,3]]]],[6156,6436,6437]]],["coasts",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22347]]],["country",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21687]]],["passage",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6437]]]]},{"k":"H1553","v":[["Geliloth",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6310]]]]},{"k":"H1554","v":[["*",[2,2,[[8,1,1,0,1,[[260,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[7905,17880]]],["+",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7905]]],["Gallim",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17880]]]]},{"k":"H1555","v":[["Goliath",[6,6,[[8,4,4,0,4,[[252,2,2,0,2],[256,1,1,2,3],[257,1,1,3,4]]],[9,1,1,4,5,[[287,1,1,4,5]]],[12,1,1,5,6,[[357,1,1,5,6]]]],[7622,7641,7781,7797,8599,10931]]]]},{"k":"H1556","v":[["*",[18,18,[[0,4,4,0,4,[[28,3,3,0,3],[42,1,1,3,4]]],[5,2,2,4,6,[[191,1,1,4,5],[196,1,1,5,6]]],[8,1,1,6,7,[[249,1,1,6,7]]],[9,1,1,7,8,[[286,1,1,7,8]]],[17,1,1,8,9,[[465,1,1,8,9]]],[18,3,3,9,12,[[499,1,1,9,10],[514,1,1,10,11],[596,1,1,11,12]]],[19,2,2,12,14,[[643,1,1,12,13],[653,1,1,13,14]]],[22,2,2,14,16,[[687,1,1,14,15],[712,1,1,15,16]]],[23,1,1,16,17,[[795,1,1,16,17]]],[29,1,1,17,18,[[883,1,1,17,18]]]],[798,803,805,1308,5943,6082,7541,8566,13571,14212,14455,15920,16843,17168,17834,18307,20237,22447]]],["+",[4,4,[[0,3,3,0,3,[[28,3,3,0,3]]],[5,1,1,3,4,[[191,1,1,3,4]]]],[798,803,805,5943]]],["Commit",[2,2,[[18,1,1,0,1,[[514,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]]],[14455,16843]]],["Remove",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15920]]],["Roll",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6082]]],["down",[2,2,[[23,1,1,0,1,[[795,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[20237,22447]]],["occasion",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1308]]],["roll",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7541]]],["rolled",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17834]]],["rolleth",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17168]]],["themselves",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13571]]],["together",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18307]]],["trusted",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14212]]],["wallowed",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8566]]]]},{"k":"H1557","v":[["dung",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9228]]]]},{"k":"H1558","v":[["*",[10,10,[[0,3,3,0,3,[[11,1,1,0,1],[29,1,1,1,2],[38,1,1,2,3]]],[4,3,3,3,6,[[153,1,1,3,4],[167,1,1,4,5],[170,1,1,5,6]]],[10,1,1,6,7,[[304,1,1,6,7]]],[23,2,2,7,9,[[755,1,1,7,8],[759,1,1,8,9]]],[32,1,1,9,10,[[895,1,1,9,10]]]],[311,857,1154,4929,5329,5396,9234,19243,19319,22620]]],["+",[1,1,[[0,1,1,0,1,[[38,1,1,0,1]]]],[1154]]],["because",[2,2,[[4,1,1,0,1,[[170,1,1,0,1]]],[10,1,1,1,2,[[304,1,1,1,2]]]],[5396,9234]]],["for",[2,2,[[4,1,1,0,1,[[167,1,1,0,1]]],[23,1,1,1,2,[[755,1,1,1,2]]]],[5329,19243]]],["of",[2,2,[[0,1,1,0,1,[[11,1,1,0,1]]],[23,1,1,1,2,[[759,1,1,1,2]]]],[311,19319]]],["sake",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[32,1,1,1,2,[[895,1,1,1,2]]]],[857,22620]]],["sakes",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4929]]]]},{"k":"H1559","v":[["Galal",[3,3,[[12,2,2,0,2,[[346,2,2,0,2]]],[15,1,1,2,3,[[423,1,1,2,3]]]],[10630,10631,12605]]]]},{"k":"H1560","v":[["great",[2,2,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]]],[12142,12155]]]]},{"k":"H1561","v":[["dung",[4,4,[[17,1,1,0,1,[[455,1,1,0,1]]],[25,2,2,1,3,[[805,2,2,1,3]]],[35,1,1,3,4,[[906,1,1,3,4]]]],[13333,20541,20544,22804]]]]},{"k":"H1562","v":[["Gilalai",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12660]]]]},{"k":"H1563","v":[["together",[1,1,[[11,1,1,0,1,[[314,1,1,0,1]]]],[9559]]]]},{"k":"H1564","v":[["unperfect",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16255]]]]},{"k":"H1565","v":[["*",[4,4,[[17,3,3,0,3,[[438,1,1,0,1],[450,1,1,1,2],[465,1,1,2,3]]],[22,1,1,3,4,[[727,1,1,3,4]]]],[12911,13237,13560,18657]]],["desolate",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[22,1,1,1,2,[[727,1,1,1,2]]]],[13237,18657]]],["solitary",[2,2,[[17,2,2,0,2,[[438,1,1,0,1],[465,1,1,1,2]]]],[12911,13560]]]]},{"k":"H1566","v":[["*",[3,3,[[19,3,3,0,3,[[644,1,1,0,1],[645,1,1,1,2],[647,1,1,2,3]]]],[16887,16902,16957]]],["intermeddleth",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16902]]],["meddling",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16957]]],["with",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16887]]]]},{"k":"H1567","v":[["Galeed",[2,2,[[0,2,2,0,2,[[30,2,2,0,2]]]],[920,921]]]]},{"k":"H1568","v":[["*",[114,104,[[0,4,4,0,4,[[30,3,3,0,3],[36,1,1,3,4]]],[3,10,9,4,13,[[142,3,2,4,6],[143,1,1,6,7],[148,5,5,7,12],[152,1,1,12,13]]],[4,8,8,13,21,[[154,1,1,13,14],[155,5,5,14,19],[156,1,1,19,20],[186,1,1,20,21]]],[5,16,15,21,36,[[198,2,2,21,23],[199,3,3,23,26],[203,5,4,26,30],[206,1,1,30,31],[207,1,1,31,32],[208,4,4,32,36]]],[6,31,24,36,60,[[215,1,1,36,37],[217,1,1,37,38],[220,5,4,38,42],[221,12,9,42,51],[222,6,3,51,54],[230,1,1,54,55],[231,5,5,55,60]]],[8,4,4,60,64,[[246,2,2,60,62],[248,1,1,62,63],[266,1,1,63,64]]],[9,6,6,64,70,[[268,3,3,64,67],[283,1,1,67,68],[287,1,1,68,69],[290,1,1,69,70]]],[10,3,3,70,73,[[294,2,2,70,72],[307,1,1,72,73]]],[11,3,2,73,75,[[322,2,1,73,74],[327,1,1,74,75]]],[12,13,13,75,88,[[339,3,3,75,78],[342,4,4,78,82],[343,1,1,82,83],[344,2,2,83,85],[347,1,1,85,86],[363,1,1,86,87],[364,1,1,87,88]]],[18,2,2,88,90,[[537,1,1,88,89],[585,1,1,89,90]]],[21,2,2,90,92,[[674,1,1,90,91],[676,1,1,91,92]]],[23,4,4,92,96,[[752,1,1,92,93],[766,1,1,93,94],[790,1,1,94,95],[794,1,1,95,96]]],[25,1,1,96,97,[[848,1,1,96,97]]],[27,2,2,97,99,[[867,1,1,97,98],[873,1,1,98,99]]],[29,2,2,99,101,[[879,2,2,99,101]]],[30,1,1,101,102,[[888,1,1,101,102]]],[32,1,1,102,103,[[899,1,1,102,103]]],[37,1,1,103,104,[[920,1,1,103,104]]]],[894,896,898,1108,4518,4519,4555,4719,4744,4747,4757,4758,4880,4974,4985,4987,4988,4990,4991,5047,5840,6132,6135,6165,6179,6185,6276,6278,6280,6281,6380,6419,6435,6439,6441,6458,6640,6697,6815,6819,6828,6829,6830,6831,6834,6836,6837,6838,6839,6840,6858,6873,6874,6876,7055,7110,7111,7112,7114,7116,7446,7454,7492,8020,8053,8054,8058,8475,8592,8698,8857,8863,9318,9826,9954,10327,10328,10329,10437,10438,10442,10444,10534,10549,10552,10670,11108,11130,14814,15750,17583,17619,19175,19460,20056,20185,21697,22175,22263,22367,22377,22529,22678,23026]]],["+",[14,14,[[0,1,1,0,1,[[36,1,1,0,1]]],[5,1,1,1,2,[[208,1,1,1,2]]],[6,5,5,2,7,[[231,5,5,2,7]]],[8,3,3,7,10,[[246,2,2,7,9],[266,1,1,9,10]]],[9,3,3,10,13,[[268,2,2,10,12],[287,1,1,12,13]]],[12,1,1,13,14,[[347,1,1,13,14]]]],[1108,6439,7110,7111,7112,7114,7116,7446,7454,8020,8053,8054,8592,10670]]],["Gilead",[97,89,[[0,3,3,0,3,[[30,3,3,0,3]]],[3,10,9,3,12,[[142,3,2,3,5],[143,1,1,5,6],[148,5,5,6,11],[152,1,1,11,12]]],[4,8,8,12,20,[[154,1,1,12,13],[155,5,5,13,18],[156,1,1,18,19],[186,1,1,19,20]]],[5,15,14,20,34,[[198,2,2,20,22],[199,3,3,22,25],[203,5,4,25,29],[206,1,1,29,30],[207,1,1,30,31],[208,3,3,31,34]]],[6,23,18,34,52,[[215,1,1,34,35],[217,1,1,35,36],[220,5,4,36,40],[221,11,8,40,48],[222,4,3,48,51],[230,1,1,51,52]]],[8,1,1,52,53,[[248,1,1,52,53]]],[9,3,3,53,56,[[268,1,1,53,54],[283,1,1,54,55],[290,1,1,55,56]]],[10,3,3,56,59,[[294,2,2,56,58],[307,1,1,58,59]]],[11,3,2,59,61,[[322,2,1,59,60],[327,1,1,60,61]]],[12,12,12,61,73,[[339,3,3,61,64],[342,4,4,64,68],[343,1,1,68,69],[344,2,2,69,71],[363,1,1,71,72],[364,1,1,72,73]]],[18,2,2,73,75,[[537,1,1,73,74],[585,1,1,74,75]]],[21,2,2,75,77,[[674,1,1,75,76],[676,1,1,76,77]]],[23,4,4,77,81,[[752,1,1,77,78],[766,1,1,78,79],[790,1,1,79,80],[794,1,1,80,81]]],[25,1,1,81,82,[[848,1,1,81,82]]],[27,2,2,82,84,[[867,1,1,82,83],[873,1,1,83,84]]],[29,2,2,84,86,[[879,2,2,84,86]]],[30,1,1,86,87,[[888,1,1,86,87]]],[32,1,1,87,88,[[899,1,1,87,88]]],[37,1,1,88,89,[[920,1,1,88,89]]]],[894,896,898,4518,4519,4555,4719,4744,4747,4757,4758,4880,4974,4985,4987,4988,4990,4991,5047,5840,6132,6135,6165,6179,6185,6276,6278,6280,6281,6380,6419,6435,6441,6458,6640,6697,6815,6819,6828,6829,6830,6834,6836,6837,6838,6839,6840,6858,6873,6874,6876,7055,7492,8058,8475,8698,8857,8863,9318,9826,9954,10327,10328,10329,10437,10438,10442,10444,10534,10549,10552,11108,11130,14814,15750,17583,17619,19175,19460,20056,20185,21697,22175,22263,22367,22377,22529,22678,23026]]],["Gilead's",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6831]]],["Gileadites",[2,2,[[6,2,2,0,2,[[222,2,2,0,2]]]],[6873,6874]]]]},{"k":"H1569","v":[["*",[11,11,[[3,1,1,0,1,[[142,1,1,0,1]]],[6,4,4,1,5,[[220,1,1,1,2],[221,2,2,2,4],[222,1,1,4,5]]],[9,2,2,5,7,[[283,1,1,5,6],[285,1,1,6,7]]],[10,1,1,7,8,[[292,1,1,7,8]]],[11,1,1,8,9,[[327,1,1,8,9]]],[14,1,1,9,10,[[404,1,1,9,10]]],[15,1,1,10,11,[[419,1,1,10,11]]]],[4518,6814,6830,6869,6876,8476,8542,8777,9950,12088,12483]]],["+",[1,1,[[11,1,1,0,1,[[327,1,1,0,1]]]],[9950]]],["Gileadite",[9,9,[[6,4,4,0,4,[[220,1,1,0,1],[221,2,2,1,3],[222,1,1,3,4]]],[9,2,2,4,6,[[283,1,1,4,5],[285,1,1,5,6]]],[10,1,1,6,7,[[292,1,1,6,7]]],[14,1,1,7,8,[[404,1,1,7,8]]],[15,1,1,8,9,[[419,1,1,8,9]]]],[6814,6830,6869,6876,8476,8542,8777,12088,12483]]],["Gileadites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4518]]]]},{"k":"H1570","v":[["+",[2,2,[[21,2,2,0,2,[[674,1,1,0,1],[676,1,1,1,2]]]],[17583,17619]]]]},{"k":"H1571","v":[["*",[761,658,[[0,93,76,0,76,[[2,2,2,0,2],[3,3,3,2,5],[5,2,2,5,7],[6,1,1,7,8],[9,1,1,8,9],[12,2,2,9,11],[13,3,2,11,13],[14,1,1,13,14],[15,1,1,14,15],[16,1,1,15,16],[18,4,4,16,20],[19,5,4,20,24],[20,2,2,24,26],[21,2,2,26,28],[23,9,5,28,33],[25,1,1,33,34],[26,5,5,34,39],[28,4,3,39,42],[29,5,5,42,47],[30,1,1,47,48],[31,6,4,48,52],[32,1,1,52,53],[34,1,1,53,54],[36,1,1,54,55],[37,4,4,55,59],[39,1,1,59,60],[41,2,2,60,62],[42,3,1,62,63],[43,5,4,63,67],[45,3,2,67,69],[46,4,2,69,71],[47,3,2,71,73],[49,4,3,73,76]]],[1,39,30,76,106,[[50,1,1,76,77],[51,1,1,77,78],[52,1,1,78,79],[53,5,3,79,82],[54,3,2,82,84],[55,2,2,84,86],[56,3,2,86,88],[57,2,2,88,90],[59,3,3,90,93],[60,1,1,93,94],[61,7,4,94,98],[67,3,2,98,100],[68,1,1,100,101],[70,2,2,101,103],[82,2,2,103,105],[83,2,1,105,106]]],[2,3,3,106,109,[[114,1,1,106,107],[115,2,2,107,109]]],[3,19,17,109,126,[[120,1,1,109,110],[127,1,1,110,111],[128,1,1,111,112],[129,2,2,112,114],[132,2,2,114,116],[134,4,3,116,119],[138,2,2,119,121],[139,2,1,121,122],[140,3,3,122,125],[143,1,1,125,126]]],[4,21,19,126,145,[[153,3,2,126,128],[154,2,2,128,130],[155,2,2,130,132],[159,1,1,132,133],[161,2,2,133,135],[162,1,1,135,136],[164,2,2,136,138],[174,1,1,138,139],[175,3,3,139,142],[178,1,1,142,143],[180,1,1,143,144],[184,2,1,144,145]]],[5,11,7,145,152,[[187,1,1,145,146],[188,2,2,146,148],[193,5,1,148,149],[196,1,1,149,150],[208,1,1,150,151],[210,1,1,151,152]]],[6,28,21,152,173,[[211,2,2,152,154],[212,5,4,154,158],[213,2,2,158,160],[215,2,1,160,161],[216,1,1,161,162],[217,1,1,162,163],[218,5,3,163,166],[219,3,2,166,168],[220,1,1,168,169],[221,1,1,169,170],[227,1,1,170,171],[229,3,1,171,172],[230,1,1,172,173]]],[7,9,8,173,181,[[232,3,2,173,175],[233,4,4,175,179],[234,1,1,179,180],[235,1,1,180,181]]],[8,61,45,181,226,[[236,2,2,181,183],[237,3,2,183,185],[239,2,1,185,186],[243,2,2,186,188],[245,3,3,188,191],[247,6,4,191,195],[248,1,1,195,196],[249,3,3,196,199],[250,1,1,199,200],[251,2,2,200,202],[252,2,1,202,203],[253,1,1,203,204],[254,8,5,204,209],[255,2,1,209,210],[256,2,1,210,211],[257,1,1,211,212],[258,1,1,212,213],[259,1,1,213,214],[260,4,3,214,217],[261,2,1,217,218],[263,10,6,218,224],[266,2,2,224,226]]],[9,42,36,226,262,[[267,3,2,226,228],[268,3,3,228,231],[269,4,2,231,233],[270,1,1,233,234],[271,1,1,234,235],[273,1,1,235,236],[274,1,1,236,237],[277,4,4,237,241],[278,3,3,241,244],[279,1,1,244,245],[280,1,1,245,246],[281,3,2,246,248],[282,2,1,248,249],[283,6,5,249,254],[284,3,3,254,257],[285,3,3,257,260],[286,1,1,260,261],[287,1,1,261,262]]],[10,29,25,262,287,[[291,4,4,262,266],[292,1,1,266,267],[293,6,3,267,270],[294,1,1,270,271],[297,2,2,271,273],[298,1,1,273,274],[300,1,1,274,275],[303,1,1,275,276],[304,3,3,276,279],[305,1,1,279,280],[306,2,2,280,282],[307,1,1,282,283],[308,1,1,283,284],[311,3,2,284,286],[312,1,1,286,287]]],[11,17,16,287,303,[[314,2,2,287,289],[320,1,1,289,290],[321,1,1,290,291],[325,1,1,291,292],[328,1,1,292,293],[329,2,2,293,295],[333,2,2,295,297],[334,1,1,297,298],[335,5,4,298,302],[336,1,1,302,303]]],[12,14,12,303,315,[[347,2,2,303,305],[348,3,1,305,306],[349,2,2,306,308],[355,1,1,308,309],[356,1,1,309,310],[357,1,1,310,311],[360,1,1,311,312],[361,1,1,312,313],[366,2,2,313,315]]],[13,33,33,315,348,[[367,1,1,315,316],[372,1,1,316,317],[375,1,1,317,318],[378,1,1,318,319],[380,1,1,319,320],[381,1,1,320,321],[382,1,1,321,322],[383,1,1,322,323],[384,1,1,323,324],[385,1,1,324,325],[386,2,2,325,327],[387,4,4,327,331],[388,2,2,331,333],[390,2,2,333,335],[392,1,1,335,336],[394,3,3,336,339],[395,2,2,339,341],[396,2,2,341,343],[397,1,1,343,344],[400,1,1,344,345],[402,3,3,345,348]]],[14,1,1,348,349,[[403,1,1,348,349]]],[15,17,17,349,366,[[416,2,2,349,351],[417,6,6,351,357],[418,5,5,357,362],[424,1,1,362,363],[425,3,3,363,366]]],[16,8,8,366,374,[[426,1,1,366,367],[429,1,1,367,368],[430,1,1,368,369],[432,3,3,369,372],[434,2,2,372,374]]],[17,23,22,374,396,[[436,1,1,374,375],[437,2,2,375,377],[442,1,1,377,378],[447,1,1,378,379],[448,2,2,379,381],[450,2,1,381,382],[451,2,2,382,384],[453,1,1,384,385],[454,1,1,385,386],[456,1,1,386,387],[458,1,1,387,388],[459,1,1,388,389],[463,1,1,389,390],[465,2,2,390,392],[466,1,1,392,393],[468,1,1,393,394],[475,1,1,394,395],[476,1,1,395,396]]],[18,35,34,396,430,[[485,1,1,396,397],[491,1,1,397,398],[496,2,2,398,400],[500,1,1,400,401],[502,1,1,401,402],[514,1,1,402,403],[515,1,1,403,404],[518,1,1,404,405],[526,2,1,405,406],[529,1,1,406,407],[530,1,1,407,408],[548,3,3,408,411],[555,2,2,411,413],[560,1,1,413,414],[561,3,3,414,417],[562,1,1,417,418],[572,1,1,418,419],[584,1,1,419,420],[595,1,1,420,421],[596,2,2,421,423],[606,1,1,423,424],[609,1,1,424,425],[610,1,1,425,426],[614,1,1,426,427],[616,2,2,427,429],[625,1,1,429,430]]],[19,23,23,430,453,[[628,1,1,430,431],[638,1,1,431,432],[641,2,2,432,434],[643,2,2,434,436],[644,3,3,436,439],[645,2,2,439,441],[646,2,2,441,443],[647,3,3,443,446],[648,1,1,446,447],[649,1,1,447,448],[650,1,1,448,449],[651,1,1,449,450],[652,1,1,450,451],[653,1,1,451,452],[655,1,1,452,453]]],[20,57,47,453,500,[[659,2,2,453,455],[660,12,10,455,465],[661,2,2,465,467],[662,7,5,467,472],[663,4,4,472,476],[664,4,4,476,480],[665,6,5,480,485],[666,5,5,485,490],[667,11,6,490,496],[668,2,2,496,498],[669,1,1,498,499],[670,1,1,499,500]]],[21,2,2,500,502,[[677,1,1,500,501],[678,1,1,501,502]]],[22,31,29,502,531,[[679,1,1,502,503],[683,1,1,503,504],[685,2,2,504,506],[691,1,1,506,507],[692,2,2,507,509],[699,1,1,509,510],[701,1,1,510,511],[704,1,1,511,512],[706,2,2,512,514],[708,2,2,514,516],[709,1,1,516,517],[718,1,1,517,518],[721,1,1,518,519],[722,1,1,519,520],[723,1,1,520,521],[725,1,1,521,522],[726,3,1,522,523],[727,2,2,523,525],[735,2,2,525,527],[744,4,4,527,531]]],[23,57,47,531,578,[[746,5,5,531,536],[747,2,2,536,538],[748,1,1,538,539],[749,2,2,539,541],[750,2,2,541,543],[751,1,1,543,544],[752,2,2,544,546],[754,1,1,546,547],[756,5,2,547,549],[757,2,2,549,551],[758,3,2,551,553],[767,3,1,553,554],[769,1,1,554,555],[770,1,1,555,556],[771,2,2,556,558],[772,1,1,558,559],[775,3,3,559,562],[777,2,2,562,564],[780,2,2,564,566],[784,1,1,566,567],[790,3,2,567,569],[792,4,4,569,573],[794,2,1,573,574],[795,5,3,574,577],[796,1,1,577,578]]],[24,6,6,578,584,[[797,1,1,578,579],[798,1,1,579,580],[799,1,1,580,581],[800,3,3,581,584]]],[25,28,26,584,610,[[806,2,2,584,586],[809,1,1,586,587],[810,1,1,587,588],[811,1,1,588,589],[817,6,5,589,594],[819,1,1,594,595],[821,4,4,595,599],[822,4,4,599,603],[824,2,2,603,605],[825,4,3,605,608],[832,1,1,608,609],[840,1,1,609,610]]],[26,2,2,610,612,[[860,2,2,610,612]]],[27,12,12,612,624,[[864,1,1,612,613],[865,3,3,613,616],[866,1,1,616,617],[867,1,1,617,618],[868,1,1,618,619],[869,1,1,619,620],[870,2,2,620,622],[871,1,1,622,623],[873,1,1,623,624]]],[28,7,7,624,631,[[876,3,3,624,627],[877,3,3,627,630],[878,1,1,630,631]]],[29,3,3,631,634,[[882,2,2,631,633],[885,1,1,633,634]]],[30,2,2,634,636,[[888,2,2,634,636]]],[32,1,1,636,637,[[898,1,1,636,637]]],[33,4,2,637,639,[[902,4,2,637,639]]],[34,1,1,639,640,[[904,1,1,639,640]]],[35,5,3,640,643,[[906,2,1,640,641],[907,3,2,641,643]]],[37,12,11,643,654,[[913,2,1,643,644],[918,2,2,644,646],[919,4,4,646,650],[921,1,1,650,651],[922,1,1,651,652],[923,1,1,652,653],[924,1,1,653,654]]],[38,5,4,654,658,[[925,1,1,654,655],[926,2,2,655,657],[927,2,1,657,658]]]],[61,77,83,101,105,140,141,162,255,323,334,343,352,374,394,413,478,491,492,495,499,500,501,507,526,539,567,571,605,610,616,635,637,713,758,760,761,765,772,822,825,828,833,836,838,845,860,888,934,946,947,948,967,1028,1090,1129,1130,1141,1143,1187,1274,1280,1298,1333,1334,1340,1353,1390,1420,1423,1439,1462,1470,1515,1524,1529,1542,1573,1588,1610,1611,1615,1634,1646,1659,1660,1696,1708,1731,1742,1801,1802,1803,1809,1847,1848,1854,1855,2017,2022,2048,2106,2112,2485,2490,2499,3514,3548,3568,3765,4028,4061,4102,4103,4204,4207,4259,4260,4285,4394,4408,4441,4458,4470,4471,4567,4920,4929,4944,4953,4978,4995,5131,5176,5177,5196,5270,5271,5492,5502,5503,5518,5579,5672,5783,5866,5881,5893,5987,6094,6433,6494,6512,6531,6548,6555,6562,6566,6590,6599,6627,6689,6712,6728,6741,6750,6773,6803,6820,6846,6982,7043,7102,7132,7139,7157,7164,7165,7170,7184,7200,7218,7240,7255,7266,7314,7377,7389,7429,7430,7444,7474,7476,7483,7485,7489,7523,7529,7530,7589,7603,7604,7654,7681,7726,7727,7728,7729,7730,7757,7780,7804,7827,7850,7874,7877,7904,7930,7948,7957,7961,7962,7964,7965,8014,8015,8026,8033,8051,8055,8056,8098,8100,8122,8134,8199,8220,8271,8276,8280,8283,8299,8300,8313,8353,8363,8408,8413,8449,8454,8459,8461,8462,8465,8480,8500,8504,8541,8551,8554,8580,8600,8723,8763,8764,8765,8775,8829,8834,8842,8859,8954,8965,9026,9090,9202,9232,9241,9242,9262,9290,9299,9337,9376,9470,9474,9502,9554,9556,9728,9783,9877,9966,10002,10024,10130,10135,10164,10180,10184,10189,10192,10206,10664,10672,10675,10758,10760,10901,10922,10932,11009,11046,11173,11188,11205,11314,11374,11449,11490,11506,11521,11534,11563,11584,11591,11600,11628,11635,11637,11641,11647,11649,11684,11689,11752,11766,11769,11772,11798,11826,11828,11839,11860,11960,12006,12007,12015,12017,12362,12381,12390,12392,12395,12396,12397,12398,12402,12408,12415,12418,12420,12667,12693,12694,12697,12711,12778,12791,12809,12815,12816,12847,12849,12875,12892,12901,13019,13131,13155,13169,13213,13242,13257,13281,13315,13362,13421,13455,13531,13559,13565,13616,13656,13878,13897,14019,14083,14179,14181,14239,14254,14475,14500,14551,14650,14715,14722,14994,14998,15000,15133,15134,15249,15261,15262,15265,15283,15463,15704,15880,15921,15922,16134,16163,16170,16223,16249,16251,16383,16426,16713,16785,16792,16844,16847,16888,16899,16901,16904,16910,16927,16949,16964,16965,16966,16997,17021,17059,17102,17114,17145,17205,17326,17332,17334,17340,17341,17347,17348,17352,17354,17356,17357,17359,17370,17372,17385,17389,17392,17395,17397,17407,17413,17414,17416,17420,17422,17424,17426,17435,17443,17447,17450,17451,17468,17470,17472,17474,17475,17476,17478,17481,17486,17487,17488,17496,17513,17515,17528,17640,17641,17669,17741,17795,17802,17909,17936,17938,18047,18089,18142,18171,18193,18222,18250,18252,18444,18518,18545,18577,18602,18622,18651,18661,18771,18772,18925,18926,18930,18943,18981,18998,18999,19001,19002,19010,19012,19039,19076,19086,19100,19104,19130,19160,19165,19206,19251,19255,19289,19292,19298,19311,19495,19548,19592,19602,19603,19632,19710,19727,19728,19796,19801,19848,19867,19952,20061,20066,20082,20087,20106,20114,20190,20224,20256,20261,20286,20318,20341,20362,20423,20435,20441,20554,20557,20622,20632,20649,20790,20791,20803,20805,20814,20860,20907,20910,20918,20920,20953,20957,20961,20971,21042,21044,21059,21061,21065,21247,21464,22044,22058,22131,22136,22138,22139,22157,22178,22187,22204,22220,22224,22231,22263,22303,22309,22311,22314,22323,22340,22347,22416,22417,22470,22521,22523,22661,22722,22723,22764,22805,22817,22819,22919,22982,22997,23001,23006,23010,23011,23036,23047,23061,23082,23099,23105,23112,23135]]],["+",[47,42,[[0,11,10,0,10,[[5,1,1,0,1],[13,1,1,1,2],[14,1,1,2,3],[20,1,1,3,4],[21,1,1,4,5],[28,1,1,5,6],[30,1,1,6,7],[31,2,1,7,8],[43,1,1,8,9],[47,1,1,9,10]]],[1,5,4,10,14,[[53,1,1,10,11],[54,1,1,11,12],[61,1,1,12,13],[83,2,1,13,14]]],[2,1,1,14,15,[[115,1,1,14,15]]],[3,5,4,15,19,[[120,1,1,15,16],[132,1,1,16,17],[134,1,1,17,18],[139,2,1,18,19]]],[4,2,2,19,21,[[164,1,1,19,20],[174,1,1,20,21]]],[6,1,1,21,22,[[212,1,1,21,22]]],[7,2,2,22,24,[[233,1,1,22,23],[235,1,1,23,24]]],[8,4,4,24,28,[[251,2,2,24,26],[252,1,1,26,27],[256,1,1,27,28]]],[9,2,1,28,29,[[269,2,1,28,29]]],[10,2,2,29,31,[[293,1,1,29,30],[305,1,1,30,31]]],[11,3,2,31,33,[[335,3,2,31,33]]],[12,1,1,33,34,[[348,1,1,33,34]]],[13,1,1,34,35,[[394,1,1,34,35]]],[18,1,1,35,36,[[610,1,1,35,36]]],[20,4,4,36,40,[[659,2,2,36,38],[660,1,1,38,39],[666,1,1,39,40]]],[23,1,1,40,41,[[796,1,1,40,41]]],[35,1,1,41,42,[[906,1,1,41,42]]]],[140,343,374,526,571,825,888,947,1334,1462,1611,1634,1855,2499,3568,3765,4207,4260,4441,5271,5492,6555,7157,7200,7603,7604,7654,7780,8098,8842,9262,10180,10189,10675,11772,16170,17326,17332,17348,17472,20286,22805]]],["Again",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17392]]],["Also",[23,23,[[1,1,1,0,1,[[61,1,1,0,1]]],[4,2,2,1,3,[[153,1,1,1,2],[180,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[9,1,1,4,5,[[271,1,1,4,5]]],[11,1,1,5,6,[[329,1,1,5,6]]],[13,2,2,6,8,[[395,1,1,6,7],[396,1,1,7,8]]],[15,2,2,8,10,[[417,1,1,8,9],[418,1,1,9,10]]],[16,1,1,10,11,[[426,1,1,10,11]]],[17,1,1,11,12,[[451,1,1,11,12]]],[19,2,2,12,14,[[644,1,1,12,13],[646,1,1,13,14]]],[20,3,3,14,17,[[665,1,1,14,15],[667,1,1,15,16],[670,1,1,16,17]]],[23,4,4,17,21,[[746,2,2,17,19],[790,1,1,19,20],[792,1,1,20,21]]],[24,1,1,21,22,[[799,1,1,21,22]]],[27,1,1,22,23,[[867,1,1,22,23]]]],[1848,4929,5672,7255,8134,10002,11798,11839,12395,12420,12711,13257,16899,16927,17450,17481,17528,18981,18999,20066,20082,20362,22178]]],["As",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20261]]],["Both",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[18,1,1,1,2,[[526,1,1,1,2]]]],[635,14650]]],["But",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13131]]],["Even",[8,8,[[15,1,1,0,1,[[416,1,1,0,1]]],[17,1,1,1,2,[[458,1,1,1,2]]],[18,1,1,2,3,[[616,1,1,2,3]]],[19,3,3,3,6,[[641,1,1,3,4],[644,1,1,4,5],[647,1,1,5,6]]],[22,1,1,6,7,[[727,1,1,6,7]]],[24,1,1,7,8,[[800,1,1,7,8]]]],[12362,13421,16249,16785,16901,16965,18661,20423]]],["Likewise",[2,2,[[15,1,1,0,1,[[416,1,1,0,1]]],[23,1,1,1,2,[[784,1,1,1,2]]]],[12381,19952]]],["Moreover",[17,17,[[1,1,1,0,1,[[60,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[4,1,1,2,3,[[159,1,1,2,3]]],[8,2,2,3,5,[[247,1,1,3,4],[263,1,1,4,5]]],[10,2,2,5,7,[[292,1,1,5,6],[298,1,1,6,7]]],[11,1,1,7,8,[[333,1,1,7,8]]],[12,1,1,8,9,[[349,1,1,8,9]]],[13,4,4,9,13,[[372,1,1,9,10],[385,1,1,10,11],[387,1,1,11,12],[402,1,1,12,13]]],[15,2,2,13,15,[[417,1,1,13,14],[418,1,1,14,15]]],[18,1,1,15,16,[[496,1,1,15,16]]],[20,1,1,16,17,[[664,1,1,16,17]]]],[1809,3514,5131,7483,7961,8775,9026,10135,10760,11314,11584,11635,12007,12396,12418,14179,17422]]],["Nevertheless",[2,2,[[23,2,2,0,2,[[749,1,1,0,1],[780,1,1,1,2]]]],[19076,19867]]],["Then",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19801]]],["Therefore",[2,2,[[17,1,1,0,1,[[442,1,1,0,1]]],[23,1,1,1,2,[[757,1,1,1,2]]]],[13019,19292]]],["What",[1,1,[[17,1,1,0,1,[[437,1,1,0,1]]]],[12901]]],["Yea",[22,22,[[0,1,1,0,1,[[19,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]],[11,2,2,2,4,[[314,2,2,2,4]]],[17,3,3,4,7,[[453,1,1,4,5],[454,1,1,5,6],[465,1,1,6,7]]],[18,6,6,7,13,[[500,1,1,7,8],[502,1,1,8,9],[518,1,1,9,10],[561,1,1,10,11],[562,1,1,11,12],[616,1,1,12,13]]],[22,4,4,13,17,[[692,1,1,13,14],[721,1,1,14,15],[726,1,1,15,16],[744,1,1,16,17]]],[23,3,3,17,20,[[746,1,1,17,18],[752,1,1,18,19],[758,1,1,19,20]]],[27,1,1,20,21,[[869,1,1,20,21]]],[28,1,1,21,22,[[878,1,1,21,22]]]],[501,8541,9554,9556,13281,13315,13559,14239,14254,14551,15262,15283,16251,17936,18518,18622,18925,19002,19160,19298,22204,22347]]],["Yet",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22722]]],["again",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12809]]],["alike",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16964]]],["also",[409,392,[[0,59,56,0,56,[[2,2,2,0,2],[3,3,3,2,5],[5,1,1,5,6],[6,1,1,6,7],[12,2,2,7,9],[13,2,1,9,10],[15,1,1,10,11],[16,1,1,11,12],[18,4,4,12,16],[19,2,2,16,18],[21,1,1,18,19],[23,5,4,19,23],[25,1,1,23,24],[26,4,4,24,28],[28,3,3,28,31],[29,4,4,31,35],[31,2,2,35,37],[32,1,1,37,38],[34,1,1,38,39],[36,1,1,39,40],[37,4,4,40,44],[39,1,1,44,45],[41,1,1,45,46],[42,1,1,46,47],[43,3,3,47,50],[45,2,2,50,52],[46,1,1,52,53],[47,2,1,53,54],[49,2,2,54,56]]],[1,23,22,56,78,[[50,1,1,56,57],[51,1,1,57,58],[52,1,1,58,59],[53,2,2,59,61],[55,2,2,61,63],[56,3,2,63,65],[57,2,2,65,67],[59,3,3,67,70],[61,2,2,70,72],[67,1,1,72,73],[68,1,1,73,74],[70,2,2,74,76],[82,2,2,76,78]]],[3,12,12,78,90,[[127,1,1,78,79],[128,1,1,79,80],[132,1,1,80,81],[134,3,3,81,84],[138,2,2,84,86],[140,3,3,86,89],[143,1,1,89,90]]],[4,8,8,90,98,[[153,1,1,90,91],[154,1,1,91,92],[155,2,2,92,94],[161,2,2,94,96],[162,1,1,96,97],[178,1,1,97,98]]],[5,8,6,98,104,[[187,1,1,98,99],[188,1,1,99,100],[193,3,1,100,101],[196,1,1,101,102],[208,1,1,102,103],[210,1,1,103,104]]],[6,18,18,104,122,[[211,1,1,104,105],[212,3,3,105,108],[213,2,2,108,110],[215,1,1,110,111],[216,1,1,111,112],[217,1,1,112,113],[218,3,3,113,116],[219,2,2,116,118],[220,1,1,118,119],[227,1,1,119,120],[229,1,1,120,121],[230,1,1,121,122]]],[7,5,4,122,126,[[232,3,2,122,124],[233,2,2,124,126]]],[8,30,28,126,154,[[236,2,2,126,128],[237,1,1,128,129],[239,2,1,129,130],[243,2,2,130,132],[245,3,3,132,135],[247,1,1,135,136],[248,1,1,136,137],[249,3,3,137,140],[250,1,1,140,141],[253,1,1,141,142],[254,6,5,142,147],[257,1,1,147,148],[258,1,1,148,149],[260,2,2,149,151],[261,1,1,151,152],[263,2,2,152,154]]],[9,30,27,154,181,[[267,2,1,154,155],[268,3,3,155,158],[269,2,1,158,159],[270,1,1,159,160],[273,1,1,160,161],[274,1,1,161,162],[277,4,4,162,166],[278,2,2,166,168],[279,1,1,168,169],[280,1,1,169,170],[281,3,2,170,172],[283,2,2,172,174],[284,3,3,174,177],[285,2,2,177,179],[286,1,1,179,180],[287,1,1,180,181]]],[10,19,19,181,200,[[291,3,3,181,184],[293,2,2,184,186],[294,1,1,186,187],[297,2,2,187,189],[300,1,1,189,190],[303,1,1,190,191],[304,2,2,191,193],[306,2,2,193,195],[307,1,1,195,196],[308,1,1,196,197],[311,2,2,197,199],[312,1,1,199,200]]],[11,8,8,200,208,[[320,1,1,200,201],[321,1,1,201,202],[325,1,1,202,203],[333,1,1,203,204],[334,1,1,204,205],[335,2,2,205,207],[336,1,1,207,208]]],[12,6,6,208,214,[[347,1,1,208,209],[349,1,1,209,210],[355,1,1,210,211],[357,1,1,211,212],[360,1,1,212,213],[366,1,1,213,214]]],[13,21,21,214,235,[[375,1,1,214,215],[378,1,1,215,216],[380,1,1,216,217],[381,1,1,217,218],[384,1,1,218,219],[387,3,3,219,222],[388,2,2,222,224],[390,2,2,224,226],[392,1,1,226,227],[394,2,2,227,229],[395,1,1,229,230],[396,1,1,230,231],[397,1,1,231,232],[400,1,1,232,233],[402,2,2,233,235]]],[14,1,1,235,236,[[403,1,1,235,236]]],[15,5,5,236,241,[[417,1,1,236,237],[418,1,1,237,238],[424,1,1,238,239],[425,2,2,239,241]]],[16,6,6,241,247,[[429,1,1,241,242],[430,1,1,242,243],[432,2,2,243,245],[434,2,2,245,247]]],[17,8,8,247,255,[[436,1,1,247,248],[437,1,1,248,249],[448,2,2,249,251],[451,1,1,251,252],[466,1,1,252,253],[468,1,1,253,254],[475,1,1,254,255]]],[18,12,12,255,267,[[496,1,1,255,256],[515,1,1,256,257],[548,3,3,257,260],[555,2,2,260,262],[560,1,1,262,263],[561,1,1,263,264],[596,2,2,264,266],[609,1,1,266,267]]],[19,8,8,267,275,[[628,1,1,267,268],[638,1,1,268,269],[645,2,2,269,271],[648,1,1,271,272],[651,1,1,272,273],[652,1,1,273,274],[653,1,1,274,275]]],[20,33,32,275,307,[[660,9,9,275,284],[661,2,2,284,286],[662,5,4,286,290],[663,4,4,290,294],[664,2,2,294,296],[665,4,4,296,300],[666,2,2,300,302],[667,3,3,302,305],[668,1,1,305,306],[669,1,1,306,307]]],[22,16,16,307,323,[[683,1,1,307,308],[685,2,2,308,310],[691,1,1,310,311],[692,1,1,311,312],[699,1,1,312,313],[701,1,1,313,314],[704,1,1,314,315],[706,2,2,315,317],[708,1,1,317,318],[709,1,1,318,319],[718,1,1,319,320],[723,1,1,320,321],[744,2,2,321,323]]],[23,20,19,323,342,[[746,2,2,323,325],[747,1,1,325,326],[748,1,1,326,327],[754,1,1,327,328],[757,1,1,328,329],[769,1,1,329,330],[770,1,1,330,331],[771,1,1,331,332],[772,1,1,332,333],[775,2,2,333,335],[777,1,1,335,336],[780,1,1,336,337],[790,1,1,337,338],[792,3,3,338,341],[794,2,1,341,342]]],[24,2,2,342,344,[[798,1,1,342,343],[800,1,1,343,344]]],[25,19,18,344,362,[[809,1,1,344,345],[810,1,1,345,346],[811,1,1,346,347],[817,4,3,347,350],[821,4,4,350,354],[822,2,2,354,356],[824,2,2,356,358],[825,2,2,358,360],[832,1,1,360,361],[840,1,1,361,362]]],[26,2,2,362,364,[[860,2,2,362,364]]],[27,7,7,364,371,[[864,1,1,364,365],[865,3,3,365,368],[866,1,1,368,369],[870,1,1,369,370],[871,1,1,370,371]]],[28,4,4,371,375,[[876,2,2,371,373],[877,2,2,373,375]]],[29,3,3,375,378,[[882,2,2,375,377],[885,1,1,377,378]]],[32,1,1,378,379,[[898,1,1,378,379]]],[33,3,2,379,381,[[902,3,2,379,381]]],[34,1,1,381,382,[[904,1,1,381,382]]],[35,1,1,382,383,[[907,1,1,382,383]]],[37,9,8,383,391,[[913,2,1,383,384],[918,2,2,384,386],[919,2,2,386,388],[921,1,1,388,389],[923,1,1,389,390],[924,1,1,390,391]]],[38,1,1,391,392,[[926,1,1,391,392]]]],[61,77,83,101,105,141,162,323,334,352,394,413,478,491,492,495,499,501,567,605,610,635,637,713,758,761,765,772,822,825,828,833,836,845,860,934,946,967,1028,1090,1129,1130,1141,1143,1187,1274,1298,1333,1340,1353,1390,1420,1423,1470,1524,1529,1542,1573,1588,1610,1615,1659,1660,1696,1708,1731,1742,1801,1802,1803,1848,1854,2022,2048,2106,2112,2485,2490,4028,4061,4204,4259,4260,4285,4394,4408,4458,4470,4471,4567,4929,4944,4978,4995,5176,5177,5196,5579,5866,5881,5987,6094,6433,6494,6531,6548,6555,6566,6590,6599,6627,6689,6712,6728,6741,6750,6773,6803,6820,6982,7043,7102,7132,7139,7165,7170,7218,7240,7266,7314,7377,7389,7429,7430,7444,7474,7489,7523,7529,7530,7589,7681,7726,7727,7728,7729,7730,7804,7827,7874,7904,7930,7961,7964,8026,8051,8055,8056,8100,8122,8199,8220,8271,8276,8280,8283,8299,8300,8353,8363,8408,8413,8454,8459,8480,8500,8504,8551,8554,8580,8600,8723,8763,8765,8829,8834,8859,8954,8965,9090,9202,9241,9242,9290,9299,9337,9376,9470,9474,9502,9728,9783,9877,10130,10164,10184,10192,10206,10672,10758,10901,10932,11009,11173,11374,11449,11490,11506,11563,11628,11637,11641,11647,11649,11684,11689,11752,11766,11769,11826,11828,11860,11960,12006,12015,12017,12398,12408,12667,12693,12694,12778,12791,12815,12816,12847,12849,12875,12892,13155,13169,13242,13616,13656,13878,14181,14500,14994,14998,15000,15133,15134,15249,15265,15921,15922,16163,16426,16713,16904,16910,16997,17102,17114,17145,17334,17340,17341,17347,17352,17354,17356,17357,17359,17370,17372,17385,17389,17395,17397,17407,17413,17414,17416,17420,17426,17435,17443,17447,17451,17468,17474,17478,17487,17488,17496,17515,17741,17795,17802,17909,17938,18047,18089,18142,18171,18193,18222,18252,18444,18577,18926,18943,18998,19001,19010,19039,19206,19289,19548,19592,19602,19632,19727,19728,19796,19848,20066,20087,20106,20114,20190,20341,20441,20622,20632,20649,20803,20805,20814,20907,20910,20918,20920,20953,20961,21042,21044,21059,21061,21247,21464,22044,22058,22131,22136,22138,22139,22157,22220,22231,22303,22311,22323,22340,22416,22417,22470,22661,22722,22723,22764,22817,22919,22982,22997,23001,23010,23036,23061,23082,23112]]],["and",[42,40,[[0,6,5,0,5,[[23,2,1,0,1],[29,1,1,1,2],[42,1,1,2,3],[46,1,1,3,4],[49,1,1,4,5]]],[1,4,4,5,9,[[54,1,1,5,6],[61,2,2,6,8],[67,1,1,8,9]]],[4,1,1,9,10,[[184,1,1,9,10]]],[6,3,3,10,13,[[215,1,1,10,11],[218,1,1,11,12],[229,1,1,12,13]]],[8,5,5,13,18,[[247,1,1,13,14],[252,1,1,14,15],[260,1,1,15,16],[263,1,1,16,17],[266,1,1,17,18]]],[9,2,2,18,20,[[278,1,1,18,19],[282,1,1,19,20]]],[10,1,1,20,21,[[293,1,1,20,21]]],[13,1,1,21,22,[[383,1,1,21,22]]],[15,1,1,22,23,[[418,1,1,22,23]]],[17,2,2,23,25,[[450,1,1,23,24],[459,1,1,24,25]]],[18,5,5,25,30,[[514,1,1,25,26],[526,1,1,26,27],[572,1,1,27,28],[584,1,1,28,29],[625,1,1,29,30]]],[19,1,1,30,31,[[649,1,1,30,31]]],[20,2,1,31,32,[[667,2,1,31,32]]],[21,1,1,32,33,[[677,1,1,32,33]]],[23,3,3,33,36,[[758,1,1,33,34],[767,1,1,34,35],[795,1,1,35,36]]],[24,1,1,36,37,[[800,1,1,36,37]]],[25,2,2,37,39,[[822,1,1,37,38],[825,1,1,38,39]]],[35,1,1,39,40,[[907,1,1,39,40]]]],[616,838,1298,1439,1515,1646,1847,1848,2017,5783,6627,6741,7043,7485,7654,7877,7962,8015,8313,8449,8829,11534,12415,13213,13455,14475,14650,15463,15704,16383,17021,17481,17640,19311,19495,20224,20435,20971,21061,22819]]],["both",[27,27,[[0,7,7,0,7,[[23,1,1,0,1],[42,1,1,1,2],[43,1,1,2,3],[45,1,1,3,4],[46,2,2,4,6],[49,1,1,6,7]]],[1,3,3,7,10,[[54,1,1,7,8],[61,1,1,8,9],[67,1,1,9,10]]],[4,1,1,10,11,[[184,1,1,10,11]]],[6,2,2,11,13,[[218,1,1,11,12],[229,1,1,12,13]]],[8,5,5,13,18,[[237,1,1,13,14],[247,2,2,14,16],[260,1,1,16,17],[261,1,1,17,18]]],[9,1,1,18,19,[[282,1,1,18,19]]],[10,1,1,19,20,[[293,1,1,19,20]]],[11,1,1,20,21,[[329,1,1,20,21]]],[17,1,1,21,22,[[450,1,1,21,22]]],[23,3,3,22,25,[[758,1,1,22,23],[767,1,1,23,24],[795,1,1,24,25]]],[35,1,1,25,26,[[907,1,1,25,26]]],[37,1,1,26,27,[[922,1,1,26,27]]]],[616,1298,1340,1420,1423,1439,1515,1646,1847,2017,5783,6741,7043,7266,7474,7485,7877,7930,8449,8829,10024,13213,19311,19495,20224,22819,23047]]],["but",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8465]]],["either",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17476]]],["even",[40,38,[[0,3,3,0,3,[[9,1,1,0,1],[19,1,1,1,2],[41,1,1,2,3]]],[4,3,3,3,6,[[175,3,3,3,6]]],[5,3,2,6,8,[[188,1,1,6,7],[193,2,1,7,8]]],[7,1,1,8,9,[[233,1,1,8,9]]],[10,2,2,9,11,[[304,1,1,9,10],[311,1,1,10,11]]],[12,1,1,11,12,[[348,1,1,11,12]]],[13,1,1,12,13,[[386,1,1,12,13]]],[15,1,1,13,14,[[417,1,1,13,14]]],[17,1,1,14,15,[[476,1,1,14,15]]],[18,1,1,15,16,[[561,1,1,15,16]]],[19,7,7,16,23,[[641,1,1,16,17],[643,2,2,17,19],[644,1,1,19,20],[647,1,1,20,21],[650,1,1,21,22],[655,1,1,22,23]]],[20,1,1,23,24,[[660,1,1,23,24]]],[22,2,2,24,26,[[735,2,2,24,26]]],[23,5,4,26,30,[[750,1,1,26,27],[751,1,1,27,28],[756,2,1,28,29],[775,1,1,29,30]]],[25,4,4,30,34,[[806,1,1,30,31],[819,1,1,31,32],[822,1,1,32,33],[825,1,1,33,34]]],[30,1,1,34,35,[[888,1,1,34,35]]],[37,2,2,35,37,[[919,2,2,35,37]]],[38,1,1,37,38,[[925,1,1,37,38]]]],[255,500,1280,5502,5503,5518,5893,5987,7164,9232,9470,10675,11591,12390,13897,15261,16792,16844,16847,16888,16966,17059,17205,17348,18771,18772,19100,19130,19255,19710,20554,20860,20957,21065,22521,23006,23011,23099]]],["howbeit",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7184]]],["indeed",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4953]]],["likewise",[14,14,[[4,1,1,0,1,[[164,1,1,0,1]]],[6,2,2,1,3,[[211,1,1,1,2],[219,1,1,2,3]]],[8,2,2,3,5,[[254,1,1,3,4],[266,1,1,4,5]]],[9,2,2,5,7,[[267,1,1,5,6],[283,1,1,6,7]]],[12,4,4,7,11,[[347,1,1,7,8],[356,1,1,8,9],[361,1,1,9,10],[366,1,1,10,11]]],[15,1,1,11,12,[[417,1,1,11,12]]],[18,1,1,12,13,[[529,1,1,12,13]]],[20,1,1,13,14,[[665,1,1,13,14]]]],[5270,6512,6803,7727,8014,8033,8454,10664,10922,11046,11188,12392,14715,17451]]],["manner",[2,2,[[6,1,1,0,1,[[221,1,1,0,1]]],[8,1,1,1,2,[[254,1,1,1,2]]]],[6846,7730]]],["moreover",[5,5,[[0,1,1,0,1,[[31,1,1,0,1]]],[3,1,1,1,2,[[129,1,1,1,2]]],[4,1,1,2,3,[[153,1,1,2,3]]],[10,1,1,3,4,[[291,1,1,3,4]]],[12,1,1,4,5,[[348,1,1,4,5]]]],[948,4103,4920,8764,10675]]],["much",[2,2,[[9,1,1,0,1,[[283,1,1,0,1]]],[19,1,1,1,2,[[646,1,1,1,2]]]],[8461,16949]]],["nay",[2,2,[[23,2,2,0,2,[[750,1,1,0,1],[752,1,1,1,2]]]],[19104,19165]]],["neither",[4,4,[[1,1,1,0,1,[[53,1,1,0,1]]],[8,3,3,1,4,[[255,1,1,1,2],[263,2,2,2,4]]]],[1611,7757,7948,7957]]],["nevertheless",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12697]]],["no",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17513]]],["nor",[8,7,[[1,1,1,0,1,[[53,1,1,0,1]]],[8,5,4,1,5,[[255,1,1,1,2],[256,1,1,2,3],[263,3,2,3,5]]],[10,1,1,5,6,[[293,1,1,5,6]]],[35,1,1,6,7,[[906,1,1,6,7]]]],[1611,7757,7780,7948,7957,8842,22805]]],["not",[2,2,[[18,2,2,0,2,[[491,1,1,0,1],[530,1,1,1,2]]]],[14083,14722]]],["or",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17476]]],["small",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8462]]],["so",[2,2,[[0,1,1,0,1,[[31,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[947,20261]]],["soon",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18930]]],["surely",[2,2,[[3,1,1,0,1,[[129,1,1,0,1]]],[20,1,1,1,2,[[666,1,1,1,2]]]],[4102,17470]]],["then",[1,1,[[23,1,1,0,1,[[771,1,1,0,1]]]],[19603]]],["therefore",[2,2,[[8,1,1,0,1,[[247,1,1,0,1]]],[25,1,1,1,2,[[806,1,1,1,2]]]],[7476,20557]]],["though",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12402]]],["with",[2,2,[[8,1,1,0,1,[[263,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]]],[7965,11600]]],["yea",[38,35,[[0,1,1,0,1,[[26,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]],[11,1,1,2,3,[[328,1,1,2,3]]],[15,1,1,3,4,[[417,1,1,3,4]]],[17,3,3,4,7,[[456,1,1,4,5],[463,1,1,5,6],[465,1,1,6,7]]],[18,3,3,7,10,[[485,1,1,7,8],[595,1,1,8,9],[614,1,1,9,10]]],[20,3,3,10,13,[[660,1,1,10,11],[662,1,1,11,12],[666,1,1,12,13]]],[21,1,1,13,14,[[678,1,1,13,14]]],[22,7,6,14,20,[[679,1,1,14,15],[708,1,1,15,16],[722,1,1,16,17],[725,1,1,17,18],[726,2,1,18,19],[727,1,1,19,20]]],[23,7,6,20,26,[[749,1,1,20,21],[756,3,2,21,23],[767,1,1,23,24],[790,1,1,24,25],[795,1,1,25,26]]],[24,1,1,26,27,[[797,1,1,26,27]]],[27,3,3,27,30,[[868,1,1,27,28],[870,1,1,28,29],[873,1,1,29,30]]],[28,2,2,30,32,[[876,1,1,30,31],[877,1,1,31,32]]],[30,1,1,32,33,[[888,1,1,32,33]]],[38,3,2,33,35,[[926,1,1,33,34],[927,2,1,34,35]]]],[760,7850,9966,12397,13362,13531,13565,14019,15880,16223,17356,17389,17475,17641,17669,18250,18545,18602,18622,18651,19086,19251,19255,19495,20061,20256,20318,22187,22224,22263,22309,22314,22523,23105,23135]]],["yet",[14,12,[[0,2,2,0,2,[[19,1,1,0,1],[20,1,1,1,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[6,1,1,3,4,[[212,1,1,3,4]]],[13,2,2,4,6,[[367,1,1,4,5],[382,1,1,5,6]]],[18,1,1,6,7,[[606,1,1,6,7]]],[20,4,2,7,9,[[664,1,1,7,8],[667,3,1,8,9]]],[23,1,1,9,10,[[747,1,1,9,10]]],[25,2,2,10,12,[[817,2,2,10,12]]]],[507,539,3548,6562,11205,11521,16134,17424,17486,19012,20790,20791]]]]},{"k":"H1572","v":[["*",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]]],[608,13858]]],["drink",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[608]]],["swalloweth",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13858]]]]},{"k":"H1573","v":[["*",[4,4,[[1,1,1,0,1,[[51,1,1,0,1]]],[17,1,1,1,2,[[443,1,1,1,2]]],[22,2,2,2,4,[[696,1,1,2,3],[713,1,1,3,4]]]],[1557,13040,17999,18327]]],["bulrushes",[2,2,[[1,1,1,0,1,[[51,1,1,0,1]]],[22,1,1,1,2,[[696,1,1,1,2]]]],[1557,17999]]],["rush",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13040]]],["rushes",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18327]]]]},{"k":"H1574","v":[["cubit",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6584]]]]},{"k":"H1575","v":[["Gammadims",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21132]]]]},{"k":"H1576","v":[["*",[19,17,[[6,1,1,0,1,[[219,1,1,0,1]]],[13,1,1,1,2,[[398,1,1,1,2]]],[18,4,4,2,6,[[505,1,1,2,3],[571,1,1,3,4],[580,1,1,4,5],[614,1,1,5,6]]],[19,2,2,6,8,[[639,1,1,6,7],[646,1,1,7,8]]],[22,5,4,8,12,[[681,1,1,8,9],[713,1,1,9,10],[737,2,1,10,11],[744,1,1,11,12]]],[23,1,1,12,13,[[795,1,1,12,13]]],[24,1,1,13,14,[[799,1,1,13,14]]],[28,3,2,14,16,[[878,3,2,14,16]]],[30,1,1,16,17,[[888,1,1,16,17]]]],[6770,11900,14303,15433,15551,16230,16733,16942,17718,18324,18818,18928,20218,20418,22347,22350,22525]]],["+",[1,1,[[18,1,1,0,1,[[614,1,1,0,1]]]],[16230]]],["benefit",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11900]]],["benefits",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15551]]],["desert",[1,1,[[18,1,1,0,1,[[505,1,1,0,1]]]],[14303]]],["deserving",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6770]]],["given",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16942]]],["recompence",[10,8,[[19,1,1,0,1,[[639,1,1,0,1]]],[22,4,3,1,4,[[713,1,1,1,2],[737,2,1,2,3],[744,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]],[24,1,1,5,6,[[799,1,1,5,6]]],[28,3,2,6,8,[[878,3,2,6,8]]]],[16733,18324,18818,18928,20218,20418,22347,22350]]],["reward",[3,3,[[18,1,1,0,1,[[571,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]],[30,1,1,2,3,[[888,1,1,2,3]]]],[15433,17718,22525]]]]},{"k":"H1577","v":[["Gamul",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11032]]]]},{"k":"H1578","v":[["*",[3,3,[[9,1,1,0,1,[[285,1,1,0,1]]],[22,1,1,1,2,[[737,1,1,1,2]]],[23,1,1,2,3,[[795,1,1,2,3]]]],[8547,18818,20268]]],["deeds",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18818]]],["recompences",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20268]]],["reward",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8547]]]]},{"k":"H1579","v":[["Gimzo",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11782]]]]},{"k":"H1580","v":[["*",[37,32,[[0,4,3,0,3,[[20,2,1,0,1],[49,2,2,1,3]]],[3,1,1,3,4,[[133,1,1,3,4]]],[4,1,1,4,5,[[184,1,1,4,5]]],[8,6,4,5,9,[[236,4,3,5,8],[259,2,1,8,9]]],[9,2,2,9,11,[[285,1,1,9,10],[288,1,1,10,11]]],[10,1,1,11,12,[[301,1,1,11,12]]],[13,1,1,12,13,[[386,1,1,12,13]]],[18,10,9,13,22,[[484,1,1,13,14],[490,1,1,14,15],[495,1,1,15,16],[580,1,1,16,17],[593,1,1,17,18],[596,1,1,18,19],[608,2,1,19,20],[614,1,1,20,21],[619,1,1,21,22]]],[19,3,3,22,25,[[630,1,1,22,23],[638,1,1,23,24],[658,1,1,24,25]]],[22,6,5,25,30,[[681,1,1,25,26],[689,1,1,26,27],[696,1,1,27,28],[706,1,1,28,29],[741,2,1,29,30]]],[27,1,1,30,31,[[862,1,1,30,31]]],[28,1,1,31,32,[[878,1,1,31,32]]]],[521,1521,1523,4252,5764,7234,7235,7236,7856,8547,8623,9128,11598,13999,14080,14138,15559,15855,15915,16150,16230,16293,16485,16705,17296,17716,17892,18002,18173,18873,22102,22347]]],["+",[5,5,[[13,1,1,0,1,[[386,1,1,0,1]]],[18,2,2,1,3,[[580,1,1,1,2],[614,1,1,2,3]]],[27,1,1,3,4,[[862,1,1,3,4]]],[28,1,1,4,5,[[878,1,1,4,5]]]],[11598,15559,16230,22102,22347]]],["bestowed",[2,1,[[22,2,1,0,1,[[741,2,1,0,1]]]],[18873]]],["bountifully",[4,4,[[18,4,4,0,4,[[490,1,1,0,1],[593,1,1,1,2],[596,1,1,2,3],[619,1,1,3,4]]]],[14080,15855,15915,16293]]],["child",[2,2,[[18,1,1,0,1,[[608,1,1,0,1]]],[22,1,1,1,2,[[689,1,1,1,2]]]],[16150,17892]]],["did",[2,2,[[0,2,2,0,2,[[49,2,2,0,2]]]],[1521,1523]]],["do",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17296]]],["done",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16485]]],["good",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16705]]],["recompense",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8547]]],["requite",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5764]]],["rewarded",[6,5,[[8,2,1,0,1,[[259,2,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,2,2,2,4,[[484,1,1,2,3],[495,1,1,3,4]]],[22,1,1,4,5,[[681,1,1,4,5]]]],[7856,8623,13999,14138,17716]]],["ripening",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18002]]],["weaned",[9,7,[[0,2,1,0,1,[[20,2,1,0,1]]],[8,4,3,1,4,[[236,4,3,1,4]]],[10,1,1,4,5,[[301,1,1,4,5]]],[18,1,1,5,6,[[608,1,1,5,6]]],[22,1,1,6,7,[[706,1,1,6,7]]]],[521,7234,7235,7236,9128,16150,18173]]],["yielded",[1,1,[[3,1,1,0,1,[[133,1,1,0,1]]]],[4252]]]]},{"k":"H1581","v":[["*",[54,51,[[0,25,22,0,22,[[11,1,1,0,1],[23,18,15,1,16],[29,1,1,16,17],[30,2,2,17,19],[31,2,2,19,21],[36,1,1,21,22]]],[1,1,1,22,23,[[58,1,1,22,23]]],[2,1,1,23,24,[[100,1,1,23,24]]],[4,1,1,24,25,[[166,1,1,24,25]]],[6,4,4,25,29,[[216,1,1,25,26],[217,1,1,26,27],[218,2,2,27,29]]],[8,3,3,29,32,[[250,1,1,29,30],[262,1,1,30,31],[265,1,1,31,32]]],[10,1,1,32,33,[[300,1,1,32,33]]],[11,1,1,33,34,[[320,1,1,33,34]]],[12,3,3,34,37,[[342,1,1,34,35],[349,1,1,35,36],[364,1,1,36,37]]],[13,2,2,37,39,[[375,1,1,37,38],[380,1,1,38,39]]],[14,1,1,39,40,[[404,1,1,39,40]]],[15,1,1,40,41,[[419,1,1,40,41]]],[17,3,3,41,44,[[436,2,2,41,43],[477,1,1,43,44]]],[22,3,3,44,47,[[699,1,1,44,45],[708,1,1,45,46],[738,1,1,46,47]]],[23,2,2,47,49,[[793,2,2,47,49]]],[25,1,1,49,50,[[826,1,1,49,50]]],[37,1,1,50,51,[[924,1,1,50,51]]]],[314,601,602,605,610,611,613,621,622,623,626,635,637,652,654,655,873,890,907,935,943,1108,1745,3001,5297,6659,6706,6740,6745,7563,7939,7995,9081,9736,10449,10760,11139,11365,11490,12094,12489,12872,12886,13934,18042,18223,18827,20156,20159,21088,23083]]],["+",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]]],[601,7563]]],["camel",[4,4,[[0,1,1,0,1,[[23,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]],[4,1,1,2,3,[[166,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[655,3001,5297,23083]]],["camel's",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[907]]],["camels",[44,42,[[0,22,20,0,20,[[11,1,1,0,1],[23,16,14,1,15],[29,1,1,15,16],[30,1,1,16,17],[31,2,2,17,19],[36,1,1,19,20]]],[1,1,1,20,21,[[58,1,1,20,21]]],[6,2,2,21,23,[[216,1,1,21,22],[217,1,1,22,23]]],[8,2,2,23,25,[[262,1,1,23,24],[265,1,1,24,25]]],[10,1,1,25,26,[[300,1,1,25,26]]],[12,3,3,26,29,[[342,1,1,26,27],[349,1,1,27,28],[364,1,1,28,29]]],[13,2,2,29,31,[[375,1,1,29,30],[380,1,1,30,31]]],[14,1,1,31,32,[[404,1,1,31,32]]],[15,1,1,32,33,[[419,1,1,32,33]]],[17,3,3,33,36,[[436,2,2,33,35],[477,1,1,35,36]]],[22,3,3,36,39,[[699,1,1,36,37],[708,1,1,37,38],[738,1,1,38,39]]],[23,2,2,39,41,[[793,2,2,39,41]]],[25,1,1,41,42,[[826,1,1,41,42]]]],[314,601,602,605,610,611,613,621,622,623,626,635,637,652,654,873,890,935,943,1108,1745,6659,6706,7939,7995,9081,10449,10760,11139,11365,11490,12094,12489,12872,12886,13934,18042,18223,18827,20156,20159,21088]]],["camels'",[3,3,[[6,2,2,0,2,[[218,2,2,0,2]]],[11,1,1,2,3,[[320,1,1,2,3]]]],[6740,6745,9736]]]]},{"k":"H1582","v":[["Gemalli",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4087]]]]},{"k":"H1583","v":[["Gamaliel",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3614,3678,3904,3909,4011]]]]},{"k":"H1584","v":[["*",[5,5,[[18,5,5,0,5,[[484,1,1,0,1],[489,1,1,1,2],[534,1,1,2,3],[554,1,1,3,4],[615,1,1,4,5]]]],[14004,14067,14770,15101,16239]]],["ceaseth",[1,1,[[18,1,1,0,1,[[489,1,1,0,1]]]],[14067]]],["end",[1,1,[[18,1,1,0,1,[[484,1,1,0,1]]]],[14004]]],["fail",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15101]]],["perfect",[1,1,[[18,1,1,0,1,[[615,1,1,0,1]]]],[16239]]],["performeth",[1,1,[[18,1,1,0,1,[[534,1,1,0,1]]]],[14770]]]]},{"k":"H1585","v":[["perfect",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12185]]]]},{"k":"H1586","v":[["Gomer",[6,6,[[0,2,2,0,2,[[9,2,2,0,2]]],[12,2,2,2,4,[[338,2,2,2,4]]],[25,1,1,4,5,[[839,1,1,4,5]]],[27,1,1,5,6,[[862,1,1,5,6]]]],[236,237,10257,10258,21431,22097]]]]},{"k":"H1587","v":[["Gemariah",[5,5,[[23,5,5,0,5,[[773,1,1,0,1],[780,4,4,1,5]]]],[19638,19852,19853,19854,19867]]]]},{"k":"H1588","v":[["*",[42,37,[[0,14,13,0,13,[[1,5,5,0,5],[2,8,7,5,12],[12,1,1,12,13]]],[4,1,1,13,14,[[163,1,1,13,14]]],[10,1,1,14,15,[[311,1,1,14,15]]],[11,5,4,15,19,[[321,1,1,15,16],[333,3,2,16,18],[337,1,1,18,19]]],[15,1,1,19,20,[[415,1,1,19,20]]],[21,8,6,20,26,[[674,4,3,20,23],[675,1,1,23,24],[676,2,1,24,25],[678,1,1,25,26]]],[22,2,2,26,28,[[729,1,1,26,27],[736,1,1,27,28]]],[23,3,3,28,31,[[775,1,1,28,29],[783,1,1,29,30],[796,1,1,30,31]]],[24,1,1,31,32,[[798,1,1,31,32]]],[25,5,4,32,36,[[829,1,1,32,33],[832,3,2,33,35],[837,1,1,35,36]]],[28,1,1,36,37,[[877,1,1,36,37]]]],[38,39,40,45,46,56,57,58,63,65,78,79,328,5218,9453,9783,10137,10145,10226,12342,17594,17597,17598,17599,17616,17653,18676,18797,19703,19927,20283,20338,21170,21238,21239,21394,22314]]],["+",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[78]]],["garden",[38,34,[[0,13,12,0,12,[[1,5,5,0,5],[2,7,6,5,11],[12,1,1,11,12]]],[4,1,1,12,13,[[163,1,1,12,13]]],[10,1,1,13,14,[[311,1,1,13,14]]],[11,5,4,14,18,[[321,1,1,14,15],[333,3,2,15,17],[337,1,1,17,18]]],[15,1,1,18,19,[[415,1,1,18,19]]],[21,5,4,19,23,[[674,3,2,19,21],[675,1,1,21,22],[676,1,1,22,23]]],[22,2,2,23,25,[[729,1,1,23,24],[736,1,1,24,25]]],[23,3,3,25,28,[[775,1,1,25,26],[783,1,1,26,27],[796,1,1,27,28]]],[24,1,1,28,29,[[798,1,1,28,29]]],[25,5,4,29,33,[[829,1,1,29,30],[832,3,2,30,32],[837,1,1,32,33]]],[28,1,1,33,34,[[877,1,1,33,34]]]],[38,39,40,45,46,56,57,58,63,65,79,328,5218,9453,9783,10137,10145,10226,12342,17594,17598,17599,17616,18676,18797,19703,19927,20283,20338,21170,21238,21239,21394,22314]]],["gardens",[3,3,[[21,3,3,0,3,[[674,1,1,0,1],[676,1,1,1,2],[678,1,1,2,3]]]],[17597,17616,17653]]]]},{"k":"H1589","v":[["*",[40,36,[[0,12,10,0,10,[[29,1,1,0,1],[30,8,7,1,8],[39,2,1,8,9],[43,1,1,9,10]]],[1,6,5,10,15,[[69,1,1,10,11],[70,1,1,11,12],[71,4,3,12,15]]],[2,1,1,15,16,[[108,1,1,15,16]]],[4,2,2,16,18,[[157,1,1,16,17],[176,1,1,17,18]]],[5,1,1,18,19,[[193,1,1,18,19]]],[9,5,4,19,23,[[281,1,1,19,20],[285,3,2,20,22],[287,1,1,22,23]]],[11,1,1,23,24,[[323,1,1,23,24]]],[13,1,1,24,25,[[388,1,1,24,25]]],[17,3,3,25,28,[[439,1,1,25,26],[456,1,1,26,27],[462,1,1,27,28]]],[19,3,3,28,31,[[633,1,1,28,29],[636,1,1,29,30],[657,1,1,30,31]]],[23,2,2,31,33,[[751,1,1,31,32],[767,1,1,32,33]]],[27,1,1,33,34,[[865,1,1,33,34]]],[30,1,1,34,35,[[888,1,1,34,35]]],[37,1,1,35,36,[[915,1,1,35,36]]]],[863,892,893,899,900,903,905,912,1187,1332,2066,2093,2114,2120,2125,3292,5072,5532,5987,8395,8514,8552,8592,9831,11655,12942,13373,13501,16570,16655,17260,19128,19514,22135,22515,22939]]],["+",[9,7,[[0,6,5,0,5,[[30,4,4,0,4],[39,2,1,4,5]]],[1,2,1,5,6,[[71,2,1,5,6]]],[9,1,1,6,7,[[281,1,1,6,7]]]],[892,893,899,903,1187,2125,8395]]],["Stolen",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16655]]],["away",[5,5,[[0,1,1,0,1,[[30,1,1,0,1]]],[9,2,2,1,3,[[285,2,2,1,3]]],[17,2,2,3,5,[[456,1,1,3,4],[462,1,1,4,5]]]],[900,8514,8552,13373,13501]]],["brought",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12942]]],["steal",[9,9,[[0,1,1,0,1,[[43,1,1,0,1]]],[1,2,2,1,3,[[69,1,1,1,2],[71,1,1,2,3]]],[2,1,1,3,4,[[108,1,1,3,4]]],[4,1,1,4,5,[[157,1,1,4,5]]],[19,2,2,5,7,[[633,1,1,5,6],[657,1,1,6,7]]],[23,2,2,7,9,[[751,1,1,7,8],[767,1,1,8,9]]]],[1332,2066,2114,3292,5072,16570,17260,19128,19514]]],["stealeth",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[37,1,1,1,2,[[915,1,1,1,2]]]],[2093,22939]]],["stealing",[2,2,[[4,1,1,0,1,[[176,1,1,0,1]]],[27,1,1,1,2,[[865,1,1,1,2]]]],[5532,22135]]],["stealth",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8514]]],["stole",[2,2,[[11,1,1,0,1,[[323,1,1,0,1]]],[13,1,1,1,2,[[388,1,1,1,2]]]],[9831,11655]]],["stolen",[8,7,[[0,4,3,0,3,[[29,1,1,0,1],[30,3,2,1,3]]],[1,1,1,3,4,[[71,1,1,3,4]]],[5,1,1,4,5,[[193,1,1,4,5]]],[9,1,1,5,6,[[287,1,1,5,6]]],[30,1,1,6,7,[[888,1,1,6,7]]]],[863,905,912,2120,5987,8592,22515]]]]},{"k":"H1590","v":[["*",[17,17,[[1,3,3,0,3,[[71,3,3,0,3]]],[4,1,1,3,4,[[176,1,1,3,4]]],[17,2,2,4,6,[[459,1,1,4,5],[465,1,1,5,6]]],[18,1,1,6,7,[[527,1,1,6,7]]],[19,2,2,7,9,[[633,1,1,7,8],[656,1,1,8,9]]],[22,1,1,9,10,[[679,1,1,9,10]]],[23,3,3,10,13,[[746,1,1,10,11],[792,1,1,11,12],[793,1,1,12,13]]],[27,1,1,13,14,[[868,1,1,13,14]]],[28,1,1,14,15,[[877,1,1,14,15]]],[30,1,1,15,16,[[888,1,1,15,16]]],[37,1,1,16,17,[[915,1,1,16,17]]]],[2115,2120,2121,5532,13450,13562,14686,16570,17248,17677,18991,20107,20136,22179,22320,22515,22940]]],["thief",[13,13,[[1,3,3,0,3,[[71,3,3,0,3]]],[4,1,1,3,4,[[176,1,1,3,4]]],[17,2,2,4,6,[[459,1,1,4,5],[465,1,1,5,6]]],[18,1,1,6,7,[[527,1,1,6,7]]],[19,2,2,7,9,[[633,1,1,7,8],[656,1,1,8,9]]],[23,1,1,9,10,[[746,1,1,9,10]]],[27,1,1,10,11,[[868,1,1,10,11]]],[28,1,1,11,12,[[877,1,1,11,12]]],[37,1,1,12,13,[[915,1,1,12,13]]]],[2115,2120,2121,5532,13450,13562,14686,16570,17248,18991,22179,22320,22940]]],["thieves",[4,4,[[22,1,1,0,1,[[679,1,1,0,1]]],[23,2,2,1,3,[[792,1,1,1,2],[793,1,1,2,3]]],[30,1,1,3,4,[[888,1,1,3,4]]]],[17677,20107,20136,22515]]]]},{"k":"H1591","v":[["theft",[2,2,[[1,2,2,0,2,[[71,2,2,0,2]]]],[2116,2117]]]]},{"k":"H1592","v":[["Genubath",[2,1,[[10,2,1,0,1,[[301,2,1,0,1]]]],[9128]]]]},{"k":"H1593","v":[["*",[12,12,[[3,1,1,0,1,[[140,1,1,0,1]]],[17,1,1,1,2,[[443,1,1,1,2]]],[20,1,1,2,3,[[660,1,1,2,3]]],[22,5,5,3,8,[[679,2,2,3,5],[739,1,1,5,6],[743,1,1,6,7],[744,1,1,7,8]]],[23,2,2,8,10,[[773,2,2,8,10]]],[29,2,2,10,12,[[882,1,1,10,11],[887,1,1,11,12]]]],[4452,13045,17338,17683,17684,18854,18900,18939,19640,19663,22419,22509]]],["+",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17683]]],["garden",[3,3,[[17,1,1,0,1,[[443,1,1,0,1]]],[22,2,2,1,3,[[679,1,1,1,2],[739,1,1,2,3]]]],[13045,17684,18854]]],["gardens",[8,8,[[3,1,1,0,1,[[140,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]],[22,2,2,2,4,[[743,1,1,2,3],[744,1,1,3,4]]],[23,2,2,4,6,[[773,2,2,4,6]]],[29,2,2,6,8,[[882,1,1,6,7],[887,1,1,7,8]]]],[4452,17338,18900,18939,19640,19663,22419,22509]]]]},{"k":"H1594","v":[["*",[4,4,[[16,3,3,0,3,[[426,1,1,0,1],[432,2,2,1,3]]],[21,1,1,3,4,[[676,1,1,3,4]]]],[12707,12814,12815,17625]]],["+",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12815]]],["garden",[3,3,[[16,2,2,0,2,[[426,1,1,0,1],[432,1,1,1,2]]],[21,1,1,2,3,[[676,1,1,2,3]]]],[12707,12814,17625]]]]},{"k":"H1595","v":[["*",[3,3,[[16,2,2,0,2,[[428,1,1,0,1],[429,1,1,1,2]]],[25,1,1,2,3,[[828,1,1,2,3]]]],[12756,12769,21145]]],["chests",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21145]]],["treasuries",[2,2,[[16,2,2,0,2,[[428,1,1,0,1],[429,1,1,1,2]]]],[12756,12769]]]]},{"k":"H1596","v":[["*",[3,3,[[14,3,3,0,3,[[407,1,1,0,1],[408,1,1,1,2],[409,1,1,2,3]]]],[12151,12152,12193]]],["treasure",[2,2,[[14,2,2,0,2,[[407,1,1,0,1],[409,1,1,1,2]]]],[12151,12193]]],["treasures",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12152]]]]},{"k":"H1597","v":[["treasuries",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11154]]]]},{"k":"H1598","v":[["*",[8,7,[[11,2,2,0,2,[[331,1,1,0,1],[332,1,1,1,2]]],[22,4,3,2,5,[[709,2,1,2,3],[715,1,1,3,4],[716,1,1,4,5]]],[37,2,2,5,7,[[919,1,1,5,6],[922,1,1,6,7]]]],[10095,10104,18255,18387,18396,23014,23053]]],["+",[7,7,[[11,2,2,0,2,[[331,1,1,0,1],[332,1,1,1,2]]],[22,3,3,2,5,[[709,1,1,2,3],[715,1,1,3,4],[716,1,1,4,5]]],[37,2,2,5,7,[[919,1,1,5,6],[922,1,1,6,7]]]],[10095,10104,18255,18387,18396,23014,23053]]],["defending",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18255]]]]},{"k":"H1599","v":[["*",[3,3,[[15,3,3,0,3,[[422,1,1,0,1],[424,2,2,1,3]]]],[12555,12628,12640]]],["Ginnetho",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12628]]],["Ginnethon",[2,2,[[15,2,2,0,2,[[422,1,1,0,1],[424,1,1,1,2]]]],[12555,12640]]]]},{"k":"H1600","v":[["*",[2,2,[[8,1,1,0,1,[[241,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]]],[7343,12983]]],["loweth",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12983]]],["lowing",[1,1,[[8,1,1,0,1,[[241,1,1,0,1]]]],[7343]]]]},{"k":"H1601","v":[["Goath",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19730]]]]},{"k":"H1602","v":[["*",[10,9,[[2,5,5,0,5,[[115,5,5,0,5]]],[9,1,1,5,6,[[267,1,1,5,6]]],[17,1,1,6,7,[[456,1,1,6,7]]],[23,1,1,7,8,[[758,1,1,7,8]]],[25,2,1,8,9,[[817,2,1,8,9]]]],[3535,3539,3554,3567,3568,8043,13365,19312,20807]]],["+",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3539]]],["abhor",[3,3,[[2,3,3,0,3,[[115,3,3,0,3]]]],[3535,3554,3568]]],["abhorred",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3567]]],["away",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8043]]],["faileth",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13365]]],["lothed",[2,2,[[23,1,1,0,1,[[758,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[19312,20807]]],["lotheth",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20807]]]]},{"k":"H1603","v":[["Gaal",[9,9,[[6,9,9,0,9,[[219,9,9,0,9]]]],[6780,6782,6784,6785,6789,6790,6791,6793,6795]]]]},{"k":"H1604","v":[["lothing",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20767]]]]},{"k":"H1605","v":[["*",[14,13,[[0,1,1,0,1,[[36,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[18,4,4,2,6,[[486,1,1,2,3],[545,1,1,3,4],[583,1,1,4,5],[596,1,1,5,6]]],[22,2,2,6,8,[[695,1,1,6,7],[732,1,1,7,8]]],[23,1,1,8,9,[[773,1,1,8,9]]],[33,1,1,9,10,[[900,1,1,9,10]]],[37,2,1,10,11,[[913,2,1,10,11]]],[38,2,2,11,13,[[926,1,1,11,12],[927,1,1,12,13]]]],[1093,7165,14026,14930,15660,15919,17996,18732,19662,22688,22914,23106,23131]]],["+",[2,2,[[22,1,1,0,1,[[732,1,1,0,1]]],[38,1,1,1,2,[[926,1,1,1,2]]]],[18732,23106]]],["Rebuke",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14930]]],["rebuke",[5,4,[[7,1,1,0,1,[[233,1,1,0,1]]],[22,1,1,1,2,[[695,1,1,1,2]]],[37,2,1,2,3,[[913,2,1,2,3]]],[38,1,1,3,4,[[927,1,1,3,4]]]],[7165,17996,22914,23131]]],["rebuked",[4,4,[[0,1,1,0,1,[[36,1,1,0,1]]],[18,3,3,1,4,[[486,1,1,1,2],[583,1,1,2,3],[596,1,1,3,4]]]],[1093,14026,15660,15919]]],["rebuketh",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22688]]],["reproved",[1,1,[[23,1,1,0,1,[[773,1,1,0,1]]]],[19662]]]]},{"k":"H1606","v":[["*",[15,14,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[461,1,1,1,2]]],[18,4,4,2,6,[[495,1,1,2,3],[553,1,1,3,4],[557,1,1,4,5],[581,1,1,5,6]]],[19,3,3,6,9,[[640,2,2,6,8],[644,1,1,8,9]]],[20,1,1,9,10,[[665,1,1,9,10]]],[22,5,4,10,14,[[708,2,1,10,11],[728,1,1,11,12],[729,1,1,12,13],[744,1,1,13,14]]]],[8618,13478,14133,15087,15214,15578,16748,16755,16883,17434,18234,18664,18693,18937]]],["+",[4,4,[[17,1,1,0,1,[[461,1,1,0,1]]],[18,3,3,1,4,[[495,1,1,1,2],[553,1,1,2,3],[557,1,1,3,4]]]],[13478,14133,15087,15214]]],["rebuke",[9,8,[[18,1,1,0,1,[[581,1,1,0,1]]],[19,2,2,1,3,[[640,2,2,1,3]]],[20,1,1,3,4,[[665,1,1,3,4]]],[22,5,4,4,8,[[708,2,1,4,5],[728,1,1,5,6],[729,1,1,6,7],[744,1,1,7,8]]]],[15578,16748,16755,17434,18234,18664,18693,18937]]],["rebuking",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8618]]],["reproof",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16883]]]]},{"k":"H1607","v":[["*",[9,7,[[9,2,1,0,1,[[288,2,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[18,2,1,2,3,[[495,2,1,2,3]]],[23,4,4,3,7,[[749,1,1,3,4],[769,1,1,4,5],[790,2,2,5,7]]]],[8610,13703,14125,19080,19550,20052,20053]]],["moved",[3,3,[[23,3,3,0,3,[[769,1,1,0,1],[790,2,2,1,3]]]],[19550,20052,20053]]],["shaken",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14125]]],["shook",[3,2,[[9,2,1,0,1,[[288,2,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8610,14125]]],["themselves",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19080]]],["troubled",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13703]]]]},{"k":"H1608","v":[["Gaash",[4,4,[[5,1,1,0,1,[[210,1,1,0,1]]],[6,1,1,1,2,[[212,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[12,1,1,3,4,[[348,1,1,3,4]]]],[6506,6554,8683,10705]]]]},{"k":"H1609","v":[["Gatam",[3,3,[[0,2,2,0,2,[[35,2,2,0,2]]],[12,1,1,2,3,[[338,1,1,2,3]]]],[1051,1056,10288]]]]},{"k":"H1610","v":[["*",[4,3,[[1,3,2,0,2,[[70,3,2,0,2]]],[19,1,1,2,3,[[636,1,1,2,3]]]],[2080,2081,16641]]],["+",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16641]]],["himself",[3,2,[[1,3,2,0,2,[[70,3,2,0,2]]]],[2080,2081]]]]},{"k":"H1611","v":[["wings",[3,2,[[26,3,2,0,2,[[856,3,2,0,2]]]],[21937,21939]]]]},{"k":"H1612","v":[["*",[55,53,[[0,3,3,0,3,[[39,2,2,0,2],[48,1,1,2,3]]],[3,2,2,3,5,[[122,1,1,3,4],[136,1,1,4,5]]],[4,3,2,5,7,[[160,1,1,5,6],[184,2,1,6,7]]],[6,3,3,7,10,[[219,2,2,7,9],[223,1,1,9,10]]],[10,1,1,10,11,[[294,1,1,10,11]]],[11,2,2,11,13,[[316,1,1,11,12],[330,1,1,12,13]]],[17,1,1,13,14,[[450,1,1,13,14]]],[18,5,5,14,19,[[555,1,1,14,15],[557,2,2,15,17],[582,1,1,17,18],[605,1,1,18,19]]],[21,4,4,19,23,[[672,1,1,19,20],[676,1,1,20,21],[677,2,2,21,23]]],[22,7,7,23,30,[[685,1,1,23,24],[694,2,2,24,26],[702,1,1,26,27],[710,1,1,27,28],[712,1,1,28,29],[714,1,1,29,30]]],[23,5,5,30,35,[[746,1,1,30,31],[749,1,1,31,32],[750,1,1,32,33],[752,1,1,33,34],[792,1,1,34,35]]],[25,7,6,35,41,[[816,2,2,35,37],[818,4,3,37,40],[820,1,1,40,41]]],[27,3,3,41,44,[[863,1,1,41,42],[871,1,1,42,43],[875,1,1,43,44]]],[28,3,3,44,47,[[876,2,2,44,46],[877,1,1,46,47]]],[32,1,1,47,48,[[896,1,1,47,48]]],[34,1,1,48,49,[[905,1,1,48,49]]],[36,1,1,49,50,[[910,1,1,49,50]]],[37,2,2,50,52,[[913,1,1,50,51],[918,1,1,51,52]]],[38,1,1,52,53,[[927,1,1,52,53]]]],[1181,1182,1484,3827,4316,5145,5790,6766,6767,6898,8869,9642,10055,13236,15160,15206,15212,15639,16129,17567,17625,17635,17639,17805,17977,17978,18102,18271,18307,18346,18986,19075,19098,19166,20112,20756,20760,20831,20832,20833,20891,22117,22226,22289,22298,22303,22333,22624,22785,22874,22922,22988,23131]]],["+",[4,4,[[3,1,1,0,1,[[122,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[6,1,1,2,3,[[223,1,1,2,3]]],[22,1,1,3,4,[[712,1,1,3,4]]]],[3827,5790,6898,18307]]],["vine",[42,41,[[0,3,3,0,3,[[39,2,2,0,2],[48,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[6,2,2,4,6,[[219,2,2,4,6]]],[10,1,1,6,7,[[294,1,1,6,7]]],[11,2,2,7,9,[[316,1,1,7,8],[330,1,1,8,9]]],[17,1,1,9,10,[[450,1,1,9,10]]],[18,3,3,10,13,[[557,2,2,10,12],[605,1,1,12,13]]],[21,3,3,13,16,[[676,1,1,13,14],[677,2,2,14,16]]],[22,5,5,16,21,[[694,2,2,16,18],[702,1,1,18,19],[710,1,1,19,20],[714,1,1,20,21]]],[23,4,4,21,25,[[746,1,1,21,22],[750,1,1,22,23],[752,1,1,23,24],[792,1,1,24,25]]],[25,7,6,25,31,[[816,2,2,25,27],[818,4,3,27,30],[820,1,1,30,31]]],[27,2,2,31,33,[[871,1,1,31,32],[875,1,1,32,33]]],[28,3,3,33,36,[[876,2,2,33,35],[877,1,1,35,36]]],[32,1,1,36,37,[[896,1,1,36,37]]],[36,1,1,37,38,[[910,1,1,37,38]]],[37,2,2,38,40,[[913,1,1,38,39],[918,1,1,39,40]]],[38,1,1,40,41,[[927,1,1,40,41]]]],[1181,1182,1484,5790,6766,6767,8869,9642,10055,13236,15206,15212,16129,17625,17635,17639,17977,17978,18102,18271,18346,18986,19098,19166,20112,20756,20760,20831,20832,20833,20891,22226,22289,22298,22303,22333,22624,22874,22922,22988,23131]]],["vines",[9,9,[[3,1,1,0,1,[[136,1,1,0,1]]],[4,1,1,1,2,[[160,1,1,1,2]]],[18,2,2,2,4,[[555,1,1,2,3],[582,1,1,3,4]]],[21,1,1,4,5,[[672,1,1,4,5]]],[22,1,1,5,6,[[685,1,1,5,6]]],[23,1,1,6,7,[[749,1,1,6,7]]],[27,1,1,7,8,[[863,1,1,7,8]]],[34,1,1,8,9,[[905,1,1,8,9]]]],[4316,5145,15160,15639,17567,17805,19075,22117,22785]]]]},{"k":"H1613","v":[["gopher",[1,1,[[0,1,1,0,1,[[5,1,1,0,1]]]],[151]]]]},{"k":"H1614","v":[["brimstone",[7,7,[[0,1,1,0,1,[[18,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[17,1,1,2,3,[[453,1,1,2,3]]],[18,1,1,3,4,[[488,1,1,3,4]]],[22,2,2,4,6,[[708,1,1,4,5],[712,1,1,5,6]]],[25,1,1,6,7,[[839,1,1,6,7]]]],[481,5702,13291,14065,18250,18312,21447]]]]},{"k":"H1615","v":[["+",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18160]]]]},{"k":"H1616","v":[["*",[92,83,[[0,2,2,0,2,[[14,1,1,0,1],[22,1,1,1,2]]],[1,12,9,2,11,[[51,1,1,2,3],[61,3,3,3,6],[67,1,1,6,7],[69,1,1,7,8],[71,2,1,8,9],[72,4,2,9,11]]],[2,21,18,11,29,[[105,1,1,11,12],[106,5,5,12,17],[107,1,1,17,18],[108,4,3,18,21],[109,1,1,21,22],[111,1,1,22,23],[112,1,1,23,24],[113,2,2,24,26],[114,5,3,26,29]]],[3,11,9,29,38,[[125,2,1,29,30],[131,7,6,30,36],[135,1,1,36,37],[151,1,1,37,38]]],[4,22,21,38,59,[[153,1,1,38,39],[157,1,1,39,40],[162,3,2,40,42],[166,2,2,42,44],[168,2,2,44,46],[175,1,1,46,47],[176,5,5,47,52],[178,3,3,52,55],[179,1,1,55,56],[180,1,1,56,57],[181,1,1,57,58],[183,1,1,58,59]]],[5,3,3,59,62,[[194,2,2,59,61],[206,1,1,61,62]]],[9,1,1,62,63,[[267,1,1,62,63]]],[12,2,2,63,65,[[359,1,1,63,64],[366,1,1,64,65]]],[13,2,2,65,67,[[368,1,1,65,66],[396,1,1,66,67]]],[17,1,1,67,68,[[466,1,1,67,68]]],[18,4,4,68,72,[[516,1,1,68,69],[571,1,1,69,70],[596,1,1,70,71],[623,1,1,71,72]]],[22,1,1,72,73,[[692,1,1,72,73]]],[23,3,3,73,76,[[751,1,1,73,74],[758,1,1,74,75],[766,1,1,75,76]]],[25,5,5,76,81,[[815,1,1,76,77],[823,2,2,77,79],[848,2,2,79,81]]],[37,1,1,81,82,[[917,1,1,81,82]]],[38,1,1,82,83,[[927,1,1,82,83]]]],[373,575,1576,1835,1864,1865,2002,2061,2134,2153,2156,3230,3243,3245,3247,3248,3250,3277,3291,3314,3315,3320,3387,3424,3462,3468,3492,3504,3516,3979,4167,4168,4169,4179,4182,4183,4299,4860,4908,5067,5204,5205,5311,5319,5353,5356,5507,5539,5542,5544,5545,5546,5577,5578,5579,5604,5654,5690,5740,6035,6037,6381,8035,10966,11179,11228,11852,13620,14524,15437,15917,16350,17929,19125,19301,19457,20738,20983,21005,21701,21702,22972,23125]]],["+",[5,5,[[2,1,1,0,1,[[114,1,1,0,1]]],[4,1,1,1,2,[[176,1,1,1,2]]],[9,1,1,2,3,[[267,1,1,2,3]]],[13,1,1,3,4,[[368,1,1,3,4]]],[25,1,1,4,5,[[815,1,1,4,5]]]],[3516,5539,8035,11228,20738]]],["alien",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2002]]],["stranger",[68,65,[[0,2,2,0,2,[[14,1,1,0,1],[22,1,1,1,2]]],[1,9,8,2,10,[[51,1,1,2,3],[61,3,3,3,6],[69,1,1,6,7],[71,1,1,7,8],[72,3,2,8,10]]],[2,12,12,10,22,[[105,1,1,10,11],[106,2,2,11,13],[107,1,1,13,14],[108,3,3,14,17],[112,1,1,17,18],[113,2,2,18,20],[114,2,2,20,22]]],[3,11,9,22,31,[[125,2,1,22,23],[131,7,6,23,29],[135,1,1,29,30],[151,1,1,30,31]]],[4,20,20,31,51,[[153,1,1,31,32],[157,1,1,32,33],[162,2,2,33,35],[166,2,2,35,37],[168,2,2,37,39],[175,1,1,39,40],[176,4,4,40,44],[178,3,3,44,47],[179,1,1,47,48],[180,1,1,48,49],[181,1,1,49,50],[183,1,1,50,51]]],[5,2,2,51,53,[[194,1,1,51,52],[206,1,1,52,53]]],[17,1,1,53,54,[[466,1,1,53,54]]],[18,3,3,54,57,[[516,1,1,54,55],[571,1,1,55,56],[596,1,1,56,57]]],[23,3,3,57,60,[[751,1,1,57,58],[758,1,1,58,59],[766,1,1,59,60]]],[25,3,3,60,63,[[823,2,2,60,62],[848,1,1,62,63]]],[37,1,1,63,64,[[917,1,1,63,64]]],[38,1,1,64,65,[[927,1,1,64,65]]]],[373,575,1576,1835,1864,1865,2061,2134,2153,2156,3230,3247,3250,3277,3291,3314,3315,3424,3462,3468,3504,3516,3979,4167,4168,4169,4179,4182,4183,4299,4860,4908,5067,5204,5205,5311,5319,5353,5356,5507,5542,5544,5545,5546,5577,5578,5579,5604,5654,5690,5740,6035,6381,13620,14524,15437,15917,19125,19301,19457,20983,21005,21702,22972,23125]]],["stranger's",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3516]]],["strangers",[17,17,[[1,2,2,0,2,[[71,1,1,0,1],[72,1,1,1,2]]],[2,7,7,2,9,[[106,3,3,2,5],[108,1,1,5,6],[109,1,1,6,7],[111,1,1,7,8],[114,1,1,8,9]]],[4,1,1,9,10,[[162,1,1,9,10]]],[5,1,1,10,11,[[194,1,1,10,11]]],[12,2,2,11,13,[[359,1,1,11,12],[366,1,1,12,13]]],[13,1,1,13,14,[[396,1,1,13,14]]],[18,1,1,14,15,[[623,1,1,14,15]]],[22,1,1,15,16,[[692,1,1,15,16]]],[25,1,1,16,17,[[848,1,1,16,17]]]],[2134,2153,3243,3245,3248,3315,3320,3387,3492,5205,6037,10966,11179,11852,16350,17929,21701]]]]},{"k":"H1617","v":[["Gera",[9,9,[[0,1,1,0,1,[[45,1,1,0,1]]],[6,1,1,1,2,[[213,1,1,1,2]]],[9,3,3,2,5,[[282,1,1,2,3],[285,2,2,3,5]]],[10,1,1,5,6,[[292,1,1,5,6]]],[12,3,3,6,9,[[345,3,3,6,9]]]],[1407,6583,8431,8527,8529,8778,10578,10580,10582]]]]},{"k":"H1618","v":[["*",[3,3,[[2,2,2,0,2,[[110,1,1,0,1],[111,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]]],[3365,3391,5638]]],["scab",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5638]]],["scurvy",[2,2,[[2,2,2,0,2,[[110,1,1,0,1],[111,1,1,1,2]]]],[3365,3391]]]]},{"k":"H1619","v":[["Gareb",[3,3,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]]],[8691,10713,19730]]]]},{"k":"H1620","v":[["berries",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17989]]]]},{"k":"H1621","v":[["neck",[4,4,[[19,4,4,0,4,[[628,1,1,0,1],[630,2,2,1,3],[633,1,1,3,4]]]],[16409,16458,16477,16561]]]]},{"k":"H1622","v":[["*",[7,7,[[0,2,2,0,2,[[9,1,1,0,1],[14,1,1,1,2]]],[4,1,1,2,3,[[159,1,1,2,3]]],[5,2,2,3,5,[[189,1,1,3,4],[210,1,1,4,5]]],[12,1,1,5,6,[[338,1,1,5,6]]],[15,1,1,6,7,[[421,1,1,6,7]]]],[250,381,5112,5903,6487,10266,12519]]],["Girgashite",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10266]]],["Girgashites",[5,5,[[0,1,1,0,1,[[14,1,1,0,1]]],[4,1,1,1,2,[[159,1,1,1,2]]],[5,2,2,2,4,[[189,1,1,2,3],[210,1,1,3,4]]],[15,1,1,4,5,[[421,1,1,4,5]]]],[381,5112,5903,6487,12519]]],["Girgasite",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[250]]]]},{"k":"H1623","v":[["himself",[1,1,[[17,1,1,0,1,[[437,1,1,0,1]]]],[12899]]]]},{"k":"H1624","v":[["*",[14,13,[[4,4,4,0,4,[[154,4,4,0,4]]],[11,1,1,4,5,[[326,1,1,4,5]]],[13,1,1,5,6,[[391,1,1,5,6]]],[19,4,4,6,10,[[642,1,1,6,7],[655,2,2,7,9],[656,1,1,9,10]]],[23,1,1,10,11,[[794,1,1,10,11]]],[26,3,2,11,13,[[860,3,2,11,13]]]],[4943,4947,4957,4962,9906,11723,16825,17200,17221,17246,20190,22046,22061]]],["Meddle",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4943]]],["contend",[3,3,[[4,2,2,0,2,[[154,2,2,0,2]]],[19,1,1,2,3,[[655,1,1,2,3]]]],[4947,4962,17200]]],["meddle",[3,3,[[4,1,1,0,1,[[154,1,1,0,1]]],[11,1,1,1,2,[[326,1,1,1,2]]],[13,1,1,2,3,[[391,1,1,2,3]]]],[4957,9906,11723]]],["striven",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20190]]],["up",[6,5,[[19,3,3,0,3,[[642,1,1,0,1],[655,1,1,1,2],[656,1,1,2,3]]],[26,3,2,3,5,[[860,3,2,3,5]]]],[16825,17221,17246,22046,22061]]]]},{"k":"H1625","v":[["cud",[11,9,[[2,7,6,0,6,[[100,7,6,0,6]]],[4,4,3,6,9,[[166,4,3,6,9]]]],[3000,3001,3002,3003,3004,3023,5296,5297,5298]]]]},{"k":"H1626","v":[["gerahs",[5,5,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]],[3,2,2,2,4,[[119,1,1,2,3],[134,1,1,3,4]]],[25,1,1,4,5,[[846,1,1,4,5]]]],[2395,3595,3739,4273,21642]]]]},{"k":"H1627","v":[["*",[8,8,[[18,4,4,0,4,[[482,1,1,0,1],[546,1,1,1,2],[592,1,1,2,3],[626,1,1,3,4]]],[22,2,2,4,6,[[681,1,1,4,5],[736,1,1,5,6]]],[23,1,1,6,7,[[746,1,1,6,7]]],[25,1,1,7,8,[[817,1,1,7,8]]]],[13982,14938,15837,16391,17723,18787,18990,20773]]],["aloud",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18787]]],["mouth",[1,1,[[18,1,1,0,1,[[626,1,1,0,1]]]],[16391]]],["neck",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20773]]],["necks",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17723]]],["throat",[4,4,[[18,3,3,0,3,[[482,1,1,0,1],[546,1,1,1,2],[592,1,1,2,3]]],[23,1,1,3,4,[[746,1,1,3,4]]]],[13982,14938,15837,18990]]]]},{"k":"H1628","v":[["habitation",[1,1,[[23,1,1,0,1,[[785,1,1,0,1]]]],[19974]]]]},{"k":"H1629","v":[["off",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14353]]]]},{"k":"H1630","v":[["Gerizim",[4,4,[[4,2,2,0,2,[[163,1,1,0,1],[179,1,1,1,2]]],[5,1,1,2,3,[[194,1,1,2,3]]],[6,1,1,3,4,[[219,1,1,3,4]]]],[5237,5597,6035,6761]]]]},{"k":"H1631","v":[["axe",[4,4,[[4,2,2,0,2,[[171,1,1,0,1],[172,1,1,1,2]]],[10,1,1,2,3,[[296,1,1,2,3]]],[22,1,1,3,4,[[688,1,1,3,4]]]],[5411,5446,8903,17865]]]]},{"k":"H1632","v":[]},{"k":"H1633","v":[["*",[3,3,[[3,1,1,0,1,[[140,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]],[35,1,1,2,3,[[908,1,1,2,3]]]],[4454,21041,22823]]],["+",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22823]]],["break",[2,2,[[3,1,1,0,1,[[140,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[4454,21041]]]]},{"k":"H1634","v":[["*",[5,5,[[0,1,1,0,1,[[48,1,1,0,1]]],[11,1,1,1,2,[[321,1,1,1,2]]],[17,1,1,2,3,[[475,1,1,2,3]]],[19,2,2,3,5,[[644,1,1,3,4],[652,1,1,4,5]]]],[1487,9769,13882,16895,17128]]],["bone",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17128]]],["bones",[2,2,[[17,1,1,0,1,[[475,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]]],[13882,16895]]],["strong",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1487]]],["top",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9769]]]]},{"k":"H1635","v":[["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21929]]]]},{"k":"H1636","v":[["Garmite",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10404]]]]},{"k":"H1637","v":[["*",[36,36,[[0,2,2,0,2,[[49,2,2,0,2]]],[3,3,3,2,5,[[131,1,1,2,3],[134,2,2,3,5]]],[4,2,2,5,7,[[167,1,1,5,6],[168,1,1,6,7]]],[6,1,1,7,8,[[216,1,1,7,8]]],[7,4,4,8,12,[[234,4,4,8,12]]],[8,1,1,12,13,[[258,1,1,12,13]]],[9,5,5,13,18,[[272,1,1,13,14],[290,4,4,14,18]]],[10,1,1,18,19,[[312,1,1,18,19]]],[11,1,1,19,20,[[318,1,1,19,20]]],[12,6,6,20,26,[[350,1,1,20,21],[358,5,5,21,26]]],[13,2,2,26,28,[[369,1,1,26,27],[384,1,1,27,28]]],[17,1,1,28,29,[[474,1,1,28,29]]],[22,1,1,29,30,[[699,1,1,29,30]]],[23,1,1,30,31,[[795,1,1,30,31]]],[27,3,3,31,34,[[870,2,2,31,33],[874,1,1,33,34]]],[28,1,1,34,35,[[877,1,1,34,35]]],[32,1,1,35,36,[[896,1,1,35,36]]]],[1516,1517,4173,4284,4287,5333,5355,6691,7174,7175,7178,7186,7811,8163,8708,8710,8713,8716,9490,9701,10769,10949,10952,10955,10956,10962,11230,11551,13846,18045,20245,22209,22210,22269,22335,22632]]],["+",[4,4,[[4,2,2,0,2,[[167,1,1,0,1],[168,1,1,1,2]]],[27,2,2,2,4,[[870,1,1,2,3],[874,1,1,3,4]]]],[5333,5355,22209,22269]]],["barn",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13846]]],["barnfloor",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9701]]],["floor",[8,8,[[0,1,1,0,1,[[49,1,1,0,1]]],[6,1,1,1,2,[[216,1,1,1,2]]],[7,3,3,2,5,[[234,3,3,2,5]]],[22,1,1,5,6,[[699,1,1,5,6]]],[27,1,1,6,7,[[870,1,1,6,7]]],[32,1,1,7,8,[[896,1,1,7,8]]]],[1517,6691,7175,7178,7186,18045,22210,22632]]],["floors",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22335]]],["place",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[9490,11551]]],["threshingfloor",[17,17,[[0,1,1,0,1,[[49,1,1,0,1]]],[3,3,3,1,4,[[131,1,1,1,2],[134,2,2,2,4]]],[7,1,1,4,5,[[234,1,1,4,5]]],[9,4,4,5,9,[[272,1,1,5,6],[290,3,3,6,9]]],[12,6,6,9,15,[[350,1,1,9,10],[358,5,5,10,15]]],[13,1,1,15,16,[[369,1,1,15,16]]],[23,1,1,16,17,[[795,1,1,16,17]]]],[1516,4173,4284,4287,7174,8163,8710,8713,8716,10769,10949,10952,10955,10956,10962,11230,20245]]],["threshingfloors",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7811]]],["threshingplace",[1,1,[[9,1,1,0,1,[[290,1,1,0,1]]]],[8708]]]]},{"k":"H1638","v":[["*",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]]],[15918,20370]]],["breaketh",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15918]]],["broken",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20370]]]]},{"k":"H1639","v":[["*",[22,21,[[1,4,4,0,4,[[54,3,3,0,3],[70,1,1,3,4]]],[2,1,1,4,5,[[116,1,1,4,5]]],[3,5,4,5,9,[[125,1,1,5,6],[143,1,1,6,7],[152,3,2,7,9]]],[4,2,2,9,11,[[156,1,1,9,10],[164,1,1,10,11]]],[17,4,4,11,15,[[450,2,2,11,13],[471,2,2,13,15]]],[20,1,1,15,16,[[661,1,1,15,16]]],[22,1,1,16,17,[[693,1,1,16,17]]],[23,2,2,17,19,[[770,1,1,17,18],[792,1,1,18,19]]],[25,2,2,19,21,[[806,1,1,19,20],[817,1,1,20,21]]]],[1640,1643,1651,2087,3588,3972,4558,4882,4883,5006,5272,13207,13211,13743,13763,17373,17962,19574,20117,20557,20789]]],["abated",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3588]]],["away",[2,2,[[3,2,2,0,2,[[143,1,1,0,1],[152,1,1,1,2]]]],[4558,4883]]],["back",[1,1,[[3,1,1,0,1,[[125,1,1,0,1]]]],[3972]]],["clipped",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20117]]],["diminish",[6,6,[[1,2,2,0,2,[[54,1,1,0,1],[70,1,1,1,2]]],[4,2,2,2,4,[[156,1,1,2,3],[164,1,1,3,4]]],[23,1,1,4,5,[[770,1,1,4,5]]],[25,1,1,5,6,[[806,1,1,5,6]]]],[1640,2087,5006,5272,19574,20557]]],["diminished",[2,2,[[1,1,1,0,1,[[54,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[1643,20789]]],["minish",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1651]]],["off",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17962]]],["restrain",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13211]]],["restrainest",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13207]]],["small",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13763]]],["taken",[3,2,[[3,2,1,0,1,[[152,2,1,0,1]]],[20,1,1,1,2,[[661,1,1,1,2]]]],[4882,17373]]],["withdraweth",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13743]]]]},{"k":"H1640","v":[["away",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6644]]]]},{"k":"H1641","v":[["*",[5,5,[[2,1,1,0,1,[[100,1,1,0,1]]],[10,1,1,1,2,[[297,1,1,1,2]]],[19,1,1,2,3,[[648,1,1,2,3]]],[23,1,1,3,4,[[774,1,1,3,4]]],[34,1,1,4,5,[[903,1,1,4,5]]]],[3004,8943,16991,19690,22746]]],["catch",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22746]]],["cheweth",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3004]]],["continuing",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19690]]],["destroy",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16991]]],["sawed",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8943]]]]},{"k":"H1642","v":[["*",[10,10,[[0,8,8,0,8,[[9,1,1,0,1],[19,2,2,1,3],[25,5,5,3,8]]],[13,2,2,8,10,[[380,2,2,8,10]]]],[253,496,497,693,698,709,712,718,11488,11489]]],["+",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[718]]],["Gerar",[9,9,[[0,7,7,0,7,[[9,1,1,0,1],[19,2,2,1,3],[25,4,4,3,7]]],[13,2,2,7,9,[[380,2,2,7,9]]]],[253,496,497,693,698,709,712,11488,11489]]]]},{"k":"H1643","v":[["*",[2,2,[[2,2,2,0,2,[[91,2,2,0,2]]]],[2776,2778]]],["+",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2778]]],["beaten",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2776]]]]},{"k":"H1644","v":[["*",[47,45,[[0,3,3,0,3,[[2,1,1,0,1],[3,1,1,1,2],[20,1,1,2,3]]],[1,12,11,3,14,[[51,1,1,3,4],[55,1,1,4,5],[59,1,1,5,6],[60,2,1,6,7],[61,1,1,7,8],[72,4,4,8,12],[82,1,1,12,13],[83,1,1,13,14]]],[2,3,3,14,17,[[110,2,2,14,16],[111,1,1,16,17]]],[3,3,3,17,20,[[138,2,2,17,19],[146,1,1,19,20]]],[4,1,1,20,21,[[185,1,1,20,21]]],[5,2,2,21,23,[[210,2,2,21,23]]],[6,5,5,23,28,[[212,1,1,23,24],[216,1,1,24,25],[219,1,1,25,26],[221,2,2,26,28]]],[8,1,1,28,29,[[261,1,1,28,29]]],[10,1,1,29,30,[[292,1,1,29,30]]],[12,1,1,30,31,[[354,1,1,30,31]]],[13,1,1,31,32,[[386,1,1,31,32]]],[17,1,1,32,33,[[465,1,1,32,33]]],[18,2,2,33,35,[[555,1,1,33,34],[557,1,1,34,35]]],[19,1,1,35,36,[[649,1,1,35,36]]],[22,2,1,36,37,[[735,2,1,36,37]]],[25,3,3,37,40,[[832,1,1,37,38],[837,1,1,38,39],[845,1,1,39,40]]],[27,1,1,40,41,[[870,1,1,40,41]]],[29,1,1,41,42,[[886,1,1,41,42]]],[31,1,1,42,43,[[890,1,1,42,43]]],[32,1,1,43,44,[[894,1,1,43,44]]],[35,1,1,44,45,[[907,1,1,44,45]]]],[79,93,523,1571,1656,1788,1807,1855,2172,2173,2174,2175,2475,2507,3352,3359,3382,4381,4386,4657,5837,6488,6494,6548,6663,6795,6831,6836,7924,8797,10884,11598,13562,15168,15206,17025,18785,21241,21364,21621,22223,22489,22552,22604,22809]]],["+",[12,11,[[0,2,2,0,2,[[2,1,1,0,1],[3,1,1,1,2]]],[1,4,3,2,5,[[60,2,1,2,3],[72,1,1,3,4],[82,1,1,4,5]]],[5,1,1,5,6,[[210,1,1,5,6]]],[6,4,4,6,10,[[212,1,1,6,7],[216,1,1,7,8],[219,1,1,8,9],[221,1,1,9,10]]],[10,1,1,10,11,[[292,1,1,10,11]]]],[79,93,1807,2172,2475,6488,6548,6663,6795,6831,8797]]],["away",[3,3,[[1,1,1,0,1,[[51,1,1,0,1]]],[2,1,1,1,2,[[110,1,1,1,2]]],[25,1,1,2,3,[[845,1,1,2,3]]]],[1571,3352,21621]]],["divorced",[2,2,[[2,1,1,0,1,[[111,1,1,0,1]]],[3,1,1,1,2,[[146,1,1,1,2]]]],[3382,4657]]],["expel",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6836]]],["forth",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13562]]],["out",[25,25,[[0,1,1,0,1,[[20,1,1,0,1]]],[1,7,7,1,8,[[55,1,1,1,2],[59,1,1,2,3],[61,1,1,3,4],[72,3,3,4,7],[83,1,1,7,8]]],[3,2,2,8,10,[[138,2,2,8,10]]],[4,1,1,10,11,[[185,1,1,10,11]]],[5,1,1,11,12,[[210,1,1,11,12]]],[8,1,1,12,13,[[261,1,1,12,13]]],[12,1,1,13,14,[[354,1,1,13,14]]],[13,1,1,14,15,[[386,1,1,14,15]]],[18,2,2,15,17,[[555,1,1,15,16],[557,1,1,16,17]]],[19,1,1,17,18,[[649,1,1,17,18]]],[25,2,2,18,20,[[832,1,1,18,19],[837,1,1,19,20]]],[27,1,1,20,21,[[870,1,1,20,21]]],[29,1,1,21,22,[[886,1,1,21,22]]],[31,1,1,22,23,[[890,1,1,22,23]]],[32,1,1,23,24,[[894,1,1,23,24]]],[35,1,1,24,25,[[907,1,1,24,25]]]],[523,1656,1788,1855,2173,2174,2175,2507,4381,4386,5837,6494,7924,10884,11598,15168,15206,17025,21241,21364,22223,22489,22552,22604,22809]]],["troubled",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18785]]],["up",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18785]]],["woman",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3359]]]]},{"k":"H1645","v":[["forth",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5824]]]]},{"k":"H1646","v":[["exactions",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21639]]]]},{"k":"H1647","v":[["Gershon",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3717]]]]},{"k":"H1648","v":[["*",[30,30,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,4,4,1,5,[[51,1,1,1,2],[55,2,2,2,4],[67,1,1,4,5]]],[3,9,9,5,14,[[119,3,3,5,8],[120,3,3,8,11],[123,1,1,11,12],[126,1,1,12,13],[142,1,1,13,14]]],[5,2,2,14,16,[[207,2,2,14,16]]],[6,1,1,16,17,[[228,1,1,16,17]]],[12,12,12,17,29,[[343,7,7,17,24],[352,1,1,24,25],[360,3,3,25,28],[363,1,1,28,29]]],[14,1,1,29,30,[[410,1,1,29,30]]]],[1397,1576,1671,1672,2002,3709,3710,3713,3765,3781,3784,3857,4005,4546,6387,6408,7023,10455,10470,10471,10474,10497,10516,10525,10798,10989,10998,10999,11101,12203]]],["Gershom",[14,14,[[1,2,2,0,2,[[51,1,1,0,1],[67,1,1,1,2]]],[6,1,1,2,3,[[228,1,1,2,3]]],[12,10,10,3,13,[[343,6,6,3,9],[352,1,1,9,10],[360,2,2,10,12],[363,1,1,12,13]]],[14,1,1,13,14,[[410,1,1,13,14]]]],[1576,2002,7023,10470,10471,10474,10497,10516,10525,10798,10998,10999,11101,12203]]],["Gershon",[16,16,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,2,2,1,3,[[55,2,2,1,3]]],[3,9,9,3,12,[[119,3,3,3,6],[120,3,3,6,9],[123,1,1,9,10],[126,1,1,10,11],[142,1,1,11,12]]],[5,2,2,12,14,[[207,2,2,12,14]]],[12,2,2,14,16,[[343,1,1,14,15],[360,1,1,15,16]]]],[1397,1671,1672,3709,3710,3713,3765,3781,3784,3857,4005,4546,6387,6408,10455,10989]]]]},{"k":"H1649","v":[["*",[13,12,[[3,7,7,0,7,[[119,3,3,0,3],[120,3,3,3,6],[142,1,1,6,7]]],[5,1,1,7,8,[[207,1,1,7,8]]],[12,4,3,8,11,[[360,1,1,8,9],[363,2,1,9,10],[366,1,1,10,11]]],[13,1,1,11,12,[[395,1,1,11,12]]]],[3713,3715,3716,3767,3770,3771,4546,6414,10990,11098,11172,11803]]],["Gershon",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3771]]],["Gershonite",[3,2,[[12,3,2,0,2,[[363,2,1,0,1],[366,1,1,1,2]]]],[11098,11172]]],["Gershonites",[9,9,[[3,6,6,0,6,[[119,3,3,0,3],[120,2,2,3,5],[142,1,1,5,6]]],[5,1,1,6,7,[[207,1,1,6,7]]],[12,1,1,7,8,[[360,1,1,7,8]]],[13,1,1,8,9,[[395,1,1,8,9]]]],[3713,3715,3716,3767,3770,4546,6414,10990,11803]]]]},{"k":"H1650","v":[["*",[9,9,[[5,1,1,0,1,[[199,1,1,0,1]]],[9,6,6,1,7,[[269,1,1,1,2],[279,2,2,2,4],[280,2,2,4,6],[281,1,1,6,7]]],[12,2,2,7,9,[[339,1,1,7,8],[340,1,1,8,9]]]],[6167,8084,8354,8355,8379,8388,8397,10329,10363]]],["+",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8388]]],["Geshur",[7,7,[[9,5,5,0,5,[[269,1,1,0,1],[279,2,2,1,3],[280,1,1,3,4],[281,1,1,4,5]]],[12,2,2,5,7,[[339,1,1,5,6],[340,1,1,6,7]]]],[8084,8354,8355,8379,8397,10329,10363]]],["Geshurites",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6167]]]]},{"k":"H1651","v":[["*",[6,6,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,4,4,1,5,[[198,1,1,1,2],[199,3,3,2,5]]],[8,1,1,5,6,[[262,1,1,5,6]]]],[4989,6135,6156,6165,6167,7938]]],["Geshuri",[2,2,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]]],[4989,6156]]],["Geshurites",[4,4,[[5,3,3,0,3,[[198,1,1,0,1],[199,2,2,1,3]]],[8,1,1,3,4,[[262,1,1,3,4]]]],[6135,6165,6167,7938]]]]},{"k":"H1652","v":[["rain",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19315]]]]},{"k":"H1653","v":[["*",[35,33,[[0,2,2,0,2,[[6,1,1,0,1],[7,1,1,1,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[10,5,5,3,8,[[307,2,2,3,5],[308,3,3,5,8]]],[11,1,1,8,9,[[315,1,1,8,9]]],[14,2,2,9,11,[[412,2,2,9,11]]],[17,2,1,11,12,[[472,2,1,11,12]]],[18,2,2,12,14,[[545,1,1,12,13],[582,1,1,13,14]]],[19,2,2,14,16,[[652,2,2,14,16]]],[20,2,2,16,18,[[669,1,1,16,17],[670,1,1,17,18]]],[21,1,1,18,19,[[672,1,1,18,19]]],[22,2,2,19,21,[[722,1,1,19,20],[733,1,1,20,21]]],[23,2,2,21,23,[[749,1,1,21,22],[758,1,1,22,23]]],[25,6,5,23,28,[[802,1,1,23,24],[814,2,2,24,26],[835,2,1,26,27],[839,1,1,27,28]]],[27,1,1,28,29,[[867,1,1,28,29]]],[28,1,1,29,30,[[877,1,1,29,30]]],[29,1,1,30,31,[[882,1,1,30,31]]],[37,2,2,31,33,[[920,1,1,31,32],[924,1,1,32,33]]]],[171,185,3528,9324,9331,9382,9385,9386,9593,12261,12265,13775,14909,15638,17127,17136,17516,17525,17565,18547,18750,19082,19297,20492,20719,20721,21339,21447,22170,22334,22417,23017,23085]]],["+",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12261]]],["rain",[29,28,[[0,2,2,0,2,[[6,1,1,0,1],[7,1,1,1,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[10,5,5,3,8,[[307,2,2,3,5],[308,3,3,5,8]]],[11,1,1,8,9,[[315,1,1,8,9]]],[14,1,1,9,10,[[412,1,1,9,10]]],[17,2,1,10,11,[[472,2,1,10,11]]],[18,2,2,11,13,[[545,1,1,11,12],[582,1,1,12,13]]],[19,2,2,13,15,[[652,2,2,13,15]]],[20,2,2,15,17,[[669,1,1,15,16],[670,1,1,16,17]]],[21,1,1,17,18,[[672,1,1,17,18]]],[22,2,2,18,20,[[722,1,1,18,19],[733,1,1,19,20]]],[23,2,2,20,22,[[749,1,1,20,21],[758,1,1,21,22]]],[25,2,2,22,24,[[802,1,1,22,23],[839,1,1,23,24]]],[27,1,1,24,25,[[867,1,1,24,25]]],[28,1,1,25,26,[[877,1,1,25,26]]],[29,1,1,26,27,[[882,1,1,26,27]]],[37,1,1,27,28,[[924,1,1,27,28]]]],[171,185,3528,9324,9331,9382,9385,9386,9593,12265,13775,14909,15638,17127,17136,17516,17525,17565,18547,18750,19082,19297,20492,21447,22170,22334,22417,23085]]],["shower",[3,3,[[25,3,3,0,3,[[814,2,2,0,2],[835,1,1,2,3]]]],[20719,20721,21339]]],["showers",[2,2,[[25,1,1,0,1,[[835,1,1,0,1]]],[37,1,1,1,2,[[920,1,1,1,2]]]],[21339,23017]]]]},{"k":"H1654","v":[["*",[4,4,[[15,4,4,0,4,[[414,1,1,0,1],[418,3,3,1,4]]]],[12326,12402,12403,12407]]],["Gashmu",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12407]]],["Geshem",[3,3,[[15,3,3,0,3,[[414,1,1,0,1],[418,2,2,1,3]]]],[12326,12402,12403]]]]},{"k":"H1655","v":[["*",[5,5,[[26,5,5,0,5,[[852,2,2,0,2],[853,1,1,2,3],[854,1,1,3,4],[856,1,1,4,5]]]],[21834,21835,21870,21895,21944]]],["bodies",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21834,21835]]],["body",[3,3,[[26,3,3,0,3,[[853,1,1,0,1],[854,1,1,1,2],[856,1,1,2,3]]]],[21870,21895,21944]]]]},{"k":"H1656","v":[["upon",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[21000]]]]},{"k":"H1657","v":[["Goshen",[15,14,[[0,10,9,0,9,[[44,1,1,0,1],[45,4,3,1,4],[46,4,4,4,8],[49,1,1,8,9]]],[1,2,2,9,11,[[57,1,1,9,10],[58,1,1,10,11]]],[5,3,3,11,14,[[196,1,1,11,12],[197,1,1,12,13],[201,1,1,13,14]]]],[1368,1414,1415,1420,1421,1424,1426,1447,1514,1732,1768,6105,6123,6253]]]]},{"k":"H1658","v":[["Gispa",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12609]]]]},{"k":"H1659","v":[["grope",[2,1,[[22,2,1,0,1,[[737,2,1,0,1]]]],[18810]]]]},{"k":"H1660","v":[["*",[5,5,[[6,1,1,0,1,[[216,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]],[22,1,1,2,3,[[741,1,1,2,3]]],[24,1,1,3,4,[[797,1,1,3,4]]],[28,1,1,4,5,[[878,1,1,4,5]]]],[6665,12686,18868,20325,22356]]],["press",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22356]]],["presses",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12686]]],["winefat",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18868]]],["winepress",[2,2,[[6,1,1,0,1,[[216,1,1,0,1]]],[24,1,1,1,2,[[797,1,1,1,2]]]],[6665,20325]]]]},{"k":"H1661","v":[["*",[32,30,[[5,1,1,0,1,[[197,1,1,0,1]]],[8,12,12,1,13,[[240,1,1,1,2],[241,1,1,2,3],[242,1,1,3,4],[252,3,3,4,7],[256,2,2,7,9],[262,4,4,9,13]]],[9,4,4,13,17,[[267,1,1,13,14],[281,1,1,14,15],[287,2,2,15,17]]],[10,5,3,17,20,[[292,5,3,17,20]]],[11,1,1,20,21,[[324,1,1,20,21]]],[12,5,5,21,26,[[344,1,1,21,22],[345,1,1,22,23],[355,1,1,23,24],[357,2,2,24,26]]],[13,2,2,26,28,[[377,1,1,26,27],[392,1,1,27,28]]],[29,1,1,28,29,[[884,1,1,28,29]]],[32,1,1,29,30,[[893,1,1,29,30]]]],[6129,7327,7348,7366,7622,7641,7670,7782,7784,7932,7933,7934,7941,8042,8407,8600,8602,8809,8810,8811,9867,10556,10588,10891,10932,10934,11422,11738,22452,22589]]],["+",[4,4,[[8,2,2,0,2,[[252,2,2,0,2]]],[9,1,1,2,3,[[281,1,1,2,3]]],[10,1,1,3,4,[[292,1,1,3,4]]]],[7622,7641,8407,8810]]],["Gath",[28,27,[[5,1,1,0,1,[[197,1,1,0,1]]],[8,10,10,1,11,[[240,1,1,1,2],[241,1,1,2,3],[242,1,1,3,4],[252,1,1,4,5],[256,2,2,5,7],[262,4,4,7,11]]],[9,3,3,11,14,[[267,1,1,11,12],[287,2,2,12,14]]],[10,4,3,14,17,[[292,4,3,14,17]]],[11,1,1,17,18,[[324,1,1,17,18]]],[12,5,5,18,23,[[344,1,1,18,19],[345,1,1,19,20],[355,1,1,20,21],[357,2,2,21,23]]],[13,2,2,23,25,[[377,1,1,23,24],[392,1,1,24,25]]],[29,1,1,25,26,[[884,1,1,25,26]]],[32,1,1,26,27,[[893,1,1,26,27]]]],[6129,7327,7348,7366,7670,7782,7784,7932,7933,7934,7941,8042,8600,8602,8809,8810,8811,9867,10556,10588,10891,10932,10934,11422,11738,22452,22589]]]]},{"k":"H1662","v":[["*",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[11,1,1,1,2,[[326,1,1,1,2]]]],[6334,9921]]],["+",[1,1,[[11,1,1,0,1,[[326,1,1,0,1]]]],[9921]]],["Gittahhepher",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6334]]]]},{"k":"H1663","v":[["*",[10,10,[[5,1,1,0,1,[[199,1,1,0,1]]],[9,7,7,1,8,[[272,2,2,1,3],[281,3,3,3,6],[284,1,1,6,7],[287,1,1,7,8]]],[12,2,2,8,10,[[350,1,1,8,9],[357,1,1,9,10]]]],[6157,8167,8168,8407,8408,8411,8480,8599,10773,10931]]],["Gittite",[8,8,[[9,6,6,0,6,[[272,2,2,0,2],[281,2,2,2,4],[284,1,1,4,5],[287,1,1,5,6]]],[12,2,2,6,8,[[350,1,1,6,7],[357,1,1,7,8]]]],[8167,8168,8408,8411,8480,8599,10773,10931]]],["Gittites",[2,2,[[5,1,1,0,1,[[199,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]]],[6157,8407]]]]},{"k":"H1664","v":[["Gittaim",[2,2,[[9,1,1,0,1,[[270,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[8123,12621]]]]},{"k":"H1665","v":[]},{"k":"H1666","v":[["Gether",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[257,10269]]]]},{"k":"H1667","v":[["Gathrimmon",[4,4,[[5,3,3,0,3,[[205,1,1,0,1],[207,2,2,1,3]]],[12,1,1,3,4,[[343,1,1,3,4]]]],[6366,6405,6406,10523]]]]},{"k":"H1668","v":[["*",[6,4,[[26,6,4,0,4,[[853,1,1,0,1],[854,2,1,1,2],[856,3,2,2,4]]]],[21867,21880,21936,21941]]],["+",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21936]]],["another",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21880]]],["one",[2,2,[[26,2,2,0,2,[[854,1,1,0,1],[856,1,1,1,2]]]],[21880,21936]]],["this",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[856,1,1,1,2]]]],[21867,21941]]]]},{"k":"H1669","v":[["*",[3,3,[[18,1,1,0,1,[[565,1,1,0,1]]],[23,2,2,1,3,[[775,2,2,1,3]]]],[15317,19703,19716]]],["mourneth",[1,1,[[18,1,1,0,1,[[565,1,1,0,1]]]],[15317]]],["sorrow",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19703]]],["sorrowful",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19716]]]]},{"k":"H1670","v":[["sorrow",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13910]]]]},{"k":"H1671","v":[["sorrow",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5676]]]]},{"k":"H1672","v":[["*",[7,7,[[8,2,2,0,2,[[244,1,1,0,1],[245,1,1,1,2]]],[18,1,1,2,3,[[515,1,1,2,3]]],[22,1,1,3,4,[[735,1,1,3,4]]],[23,3,3,4,7,[[761,1,1,4,5],[782,1,1,5,6],[786,1,1,6,7]]]],[7396,7420,14508,18776,19365,19914,19991]]],["+",[2,2,[[23,2,2,0,2,[[782,1,1,0,1],[786,1,1,1,2]]]],[19914,19991]]],["afraid",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18776]]],["careful",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19365]]],["sorroweth",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7420]]],["sorry",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14508]]],["thought",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7396]]]]},{"k":"H1673","v":[["Doeg",[5,4,[[8,5,4,0,4,[[256,1,1,0,1],[257,4,3,1,4]]]],[7779,7796,7805,7809]]]]},{"k":"H1674","v":[["*",[6,6,[[5,1,1,0,1,[[208,1,1,0,1]]],[19,1,1,1,2,[[639,1,1,1,2]]],[23,1,1,2,3,[[793,1,1,2,3]]],[25,3,3,3,6,[[805,1,1,3,4],[813,2,2,4,6]]]],[6450,16744,20150,20545,20698,20699]]],["+",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6450]]],["Heaviness",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16744]]],["care",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20545]]],["carefulness",[2,2,[[25,2,2,0,2,[[813,2,2,0,2]]]],[20698,20699]]],["sorrow",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20150]]]]},{"k":"H1675","v":[["*",[4,4,[[4,1,1,0,1,[[180,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]],[23,2,2,2,4,[[792,1,1,2,3],[793,1,1,3,4]]]],[5660,14128,20120,20149]]],["flieth",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5660]]],["fly",[3,3,[[18,1,1,0,1,[[495,1,1,0,1]]],[23,2,2,1,3,[[792,1,1,1,2],[793,1,1,2,3]]]],[14128,20120,20149]]]]},{"k":"H1676","v":[["vulture",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3011]]]]},{"k":"H1677","v":[["*",[12,12,[[8,3,3,0,3,[[252,3,3,0,3]]],[9,1,1,3,4,[[283,1,1,3,4]]],[11,1,1,4,5,[[314,1,1,4,5]]],[19,2,2,5,7,[[644,1,1,5,6],[655,1,1,6,7]]],[22,2,2,7,9,[[689,1,1,7,8],[737,1,1,8,9]]],[24,1,1,9,10,[[799,1,1,9,10]]],[27,1,1,10,11,[[874,1,1,10,11]]],[29,1,1,11,12,[[883,1,1,11,12]]]],[7652,7654,7655,8457,9575,16885,17211,17891,18811,20364,22274,22442]]],["bear",[10,10,[[8,3,3,0,3,[[252,3,3,0,3]]],[9,1,1,3,4,[[283,1,1,3,4]]],[19,2,2,4,6,[[644,1,1,4,5],[655,1,1,5,6]]],[22,1,1,6,7,[[689,1,1,6,7]]],[24,1,1,7,8,[[799,1,1,7,8]]],[27,1,1,8,9,[[874,1,1,8,9]]],[29,1,1,9,10,[[883,1,1,9,10]]]],[7652,7654,7655,8457,16885,17211,17891,20364,22274,22442]]],["bears",[2,2,[[11,1,1,0,1,[[314,1,1,0,1]]],[22,1,1,1,2,[[737,1,1,1,2]]]],[9575,18811]]]]},{"k":"H1678","v":[["bear",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21938]]]]},{"k":"H1679","v":[["strength",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5835]]]]},{"k":"H1680","v":[["speak",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17636]]]]},{"k":"H1681","v":[["*",[9,9,[[0,1,1,0,1,[[36,1,1,0,1]]],[3,3,3,1,4,[[129,1,1,1,2],[130,2,2,2,4]]],[18,1,1,4,5,[[508,1,1,4,5]]],[19,2,2,5,7,[[637,1,1,5,6],[652,1,1,6,7]]],[23,1,1,7,8,[[764,1,1,7,8]]],[25,1,1,8,9,[[837,1,1,8,9]]]],[1085,4107,4144,4145,14344,16674,17123,19432,21362]]],["defaming",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19432]]],["infamy",[2,2,[[19,1,1,0,1,[[652,1,1,0,1]]],[25,1,1,1,2,[[837,1,1,1,2]]]],[17123,21362]]],["report",[3,3,[[0,1,1,0,1,[[36,1,1,0,1]]],[3,2,2,1,3,[[129,1,1,1,2],[130,1,1,2,3]]]],[1085,4107,4145]]],["slander",[3,3,[[3,1,1,0,1,[[130,1,1,0,1]]],[18,1,1,1,2,[[508,1,1,1,2]]],[19,1,1,2,3,[[637,1,1,2,3]]]],[4144,14344,16674]]]]},{"k":"H1682","v":[["*",[4,4,[[4,1,1,0,1,[[153,1,1,0,1]]],[6,1,1,1,2,[[224,1,1,1,2]]],[18,1,1,2,3,[[595,1,1,2,3]]],[22,1,1,3,4,[[685,1,1,3,4]]]],[4936,6917,15881,17800]]],["bee",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17800]]],["bees",[3,3,[[4,1,1,0,1,[[153,1,1,0,1]]],[6,1,1,1,2,[[224,1,1,1,2]]],[18,1,1,2,3,[[595,1,1,2,3]]]],[4936,6917,15881]]]]},{"k":"H1683","v":[["Deborah",[10,10,[[0,1,1,0,1,[[34,1,1,0,1]]],[6,9,9,1,10,[[214,5,5,1,6],[215,4,4,6,10]]]],[1019,6603,6604,6608,6609,6613,6624,6630,6635,6638]]]]},{"k":"H1684","v":[["offered",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12154]]]]},{"k":"H1685","v":[["sacrifices",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12154]]]]},{"k":"H1686","v":[]},{"k":"H1687","v":[["oracle",[16,16,[[10,11,11,0,11,[[296,8,8,0,8],[297,1,1,8,9],[298,2,2,9,11]]],[13,4,4,11,15,[[369,1,1,11,12],[370,1,1,12,13],[371,2,2,13,15]]],[18,1,1,15,16,[[505,1,1,15,16]]]],[8901,8912,8915,8916,8917,8918,8919,8927,8983,8991,8993,11245,11266,11275,11277,14301]]]]},{"k":"H1688","v":[["Debir",[14,12,[[5,11,10,0,10,[[196,3,3,0,3],[197,1,1,3,4],[198,1,1,4,5],[199,1,1,5,6],[201,4,3,6,9],[207,1,1,9,10]]],[6,2,1,10,11,[[211,2,1,10,11]]],[12,1,1,11,12,[[343,1,1,11,12]]]],[6067,6102,6103,6128,6143,6180,6209,6217,6251,6396,6520,10512]]]]},{"k":"H1689","v":[["Diblath",[1,1,[[25,1,1,0,1,[[807,1,1,0,1]]]],[20577]]]]},{"k":"H1690","v":[["*",[5,5,[[8,2,2,0,2,[[260,1,1,0,1],[265,1,1,1,2]]],[11,1,1,2,3,[[332,1,1,2,3]]],[12,1,1,3,4,[[349,1,1,3,4]]],[22,1,1,4,5,[[716,1,1,4,5]]]],[7879,7990,10105,10760,18411]]],["figs",[3,3,[[8,2,2,0,2,[[260,1,1,0,1],[265,1,1,1,2]]],[12,1,1,2,3,[[349,1,1,2,3]]]],[7879,7990,10760]]],["lump",[2,2,[[11,1,1,0,1,[[332,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]]],[10105,18411]]]]},{"k":"H1691","v":[["Diblaim",[1,1,[[27,1,1,0,1,[[862,1,1,0,1]]]],[22097]]]]},{"k":"H1692","v":[["*",[54,52,[[0,4,4,0,4,[[1,1,1,0,1],[18,1,1,1,2],[30,1,1,2,3],[33,1,1,3,4]]],[3,2,2,4,6,[[152,2,2,4,6]]],[4,7,7,6,13,[[162,1,1,6,7],[163,1,1,7,8],[165,2,2,8,10],[180,2,2,10,12],[182,1,1,12,13]]],[5,3,3,13,16,[[208,1,1,13,14],[209,2,2,14,16]]],[6,3,3,16,19,[[228,1,1,16,17],[230,2,2,17,19]]],[7,4,4,19,23,[[232,1,1,19,20],[233,3,3,20,23]]],[8,2,2,23,25,[[249,1,1,23,24],[266,1,1,24,25]]],[9,3,3,25,28,[[267,1,1,25,26],[286,1,1,26,27],[289,1,1,27,28]]],[10,1,1,28,29,[[301,1,1,28,29]]],[11,3,3,29,32,[[315,1,1,29,30],[317,1,1,30,31],[330,1,1,31,32]]],[12,1,1,32,33,[[347,1,1,32,33]]],[17,6,6,33,39,[[454,1,1,33,34],[464,1,1,34,35],[466,1,1,35,36],[473,1,1,36,37],[476,2,2,37,39]]],[18,8,8,39,47,[[499,1,1,39,40],[521,1,1,40,41],[540,1,1,41,42],[578,1,1,42,43],[579,1,1,43,44],[596,2,2,44,46],[614,1,1,46,47]]],[23,3,2,47,49,[[757,2,1,47,48],[786,1,1,48,49]]],[24,1,1,49,50,[[800,1,1,49,50]]],[25,3,2,50,52,[[804,1,1,50,51],[830,2,1,51,52]]]],[54,476,896,983,4886,4888,5206,5230,5276,5289,5632,5671,5728,6431,6468,6472,7015,7096,7099,7141,7157,7170,7172,7530,8011,8028,8556,8663,9110,9579,9674,10030,10661,13317,13542,13595,13831,13905,13911,14219,14596,14847,15516,15526,15923,15929,16228,19277,19991,20424,20528,21187]]],["+",[2,2,[[6,1,1,0,1,[[228,1,1,0,1]]],[8,1,1,1,2,[[266,1,1,1,2]]]],[7015,8011]]],["abide",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7157]]],["clave",[6,6,[[0,1,1,0,1,[[33,1,1,0,1]]],[7,1,1,1,2,[[232,1,1,1,2]]],[9,2,2,2,4,[[286,1,1,2,3],[289,1,1,3,4]]],[10,1,1,4,5,[[301,1,1,4,5]]],[11,1,1,5,6,[[330,1,1,5,6]]]],[983,7141,8556,8663,9110,10030]]],["cleave",[17,17,[[0,1,1,0,1,[[1,1,1,0,1]]],[4,7,7,1,8,[[162,1,1,1,2],[163,1,1,2,3],[165,2,2,3,5],[180,2,2,5,7],[182,1,1,7,8]]],[5,3,3,8,11,[[208,1,1,8,9],[209,2,2,9,11]]],[11,1,1,11,12,[[317,1,1,11,12]]],[18,3,3,12,15,[[578,1,1,12,13],[579,1,1,13,14],[614,1,1,14,15]]],[23,1,1,15,16,[[757,1,1,15,16]]],[25,1,1,16,17,[[804,1,1,16,17]]]],[54,5206,5230,5276,5289,5632,5671,5728,6431,6468,6472,9674,15516,15526,16228,19277,20528]]],["cleaved",[3,3,[[11,1,1,0,1,[[315,1,1,0,1]]],[17,2,2,1,3,[[464,1,1,1,2],[466,1,1,2,3]]]],[9579,13542,13595]]],["cleaveth",[6,6,[[17,1,1,0,1,[[454,1,1,0,1]]],[18,3,3,1,4,[[499,1,1,1,2],[521,1,1,2,3],[596,1,1,3,4]]],[23,1,1,4,5,[[757,1,1,4,5]]],[24,1,1,5,6,[[800,1,1,5,6]]]],[13317,14219,14596,15923,19277,20424]]],["close",[1,1,[[23,1,1,0,1,[[786,1,1,0,1]]]],[19991]]],["fast",[2,2,[[7,2,2,0,2,[[233,2,2,0,2]]]],[7170,7172]]],["hard",[5,5,[[6,1,1,0,1,[[230,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[9,1,1,2,3,[[267,1,1,2,3]]],[12,1,1,3,4,[[347,1,1,3,4]]],[18,1,1,4,5,[[540,1,1,4,5]]]],[7099,7530,8028,10661,14847]]],["joined",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13905]]],["keep",[2,2,[[3,2,2,0,2,[[152,2,2,0,2]]]],[4886,4888]]],["overtook",[2,2,[[0,1,1,0,1,[[30,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]]],[896,7096]]],["stick",[2,1,[[25,2,1,0,1,[[830,2,1,0,1]]]],[21187]]],["stuck",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15929]]],["take",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[476]]],["together",[2,2,[[17,2,2,0,2,[[473,1,1,0,1],[476,1,1,1,2]]]],[13831,13911]]]]},{"k":"H1693","v":[["cleave",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21801]]]]},{"k":"H1694","v":[["*",[3,3,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]],[22,1,1,2,3,[[719,1,1,2,3]]]],[9514,11575,18458]]],["joints",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[9514,11575]]],["sodering",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18458]]]]},{"k":"H1695","v":[["*",[3,3,[[4,1,1,0,1,[[156,1,1,0,1]]],[13,1,1,1,2,[[369,1,1,1,2]]],[19,1,1,2,3,[[645,1,1,2,3]]]],[5008,11241,16925]]],["cleave",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5008]]],["closer",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16925]]],["joining",[1,1,[[13,1,1,0,1,[[369,1,1,0,1]]]],[11241]]]]},{"k":"H1696","v":[["*",[1141,1048,[[0,73,70,0,70,[[7,1,1,0,1],[11,1,1,1,2],[15,1,1,2,3],[16,3,3,3,6],[17,8,8,6,14],[18,2,2,14,16],[19,1,1,16,17],[20,2,2,17,19],[22,4,4,19,23],[23,8,7,23,30],[26,3,3,30,33],[27,1,1,33,34],[28,1,1,34,35],[30,2,2,35,37],[31,1,1,37,38],[33,5,5,38,43],[34,3,3,43,46],[36,1,1,46,47],[38,3,3,47,50],[40,3,3,50,53],[41,4,4,53,57],[42,1,1,57,58],[43,5,5,58,63],[44,4,3,63,66],[48,1,1,66,67],[49,4,3,67,70]]],[1,87,79,70,149,[[50,1,1,70,71],[53,8,6,71,77],[54,1,1,77,78],[55,11,9,78,87],[56,6,5,87,92],[57,2,2,92,94],[58,3,3,94,97],[59,1,1,97,98],[60,1,1,98,99],[61,4,4,99,103],[62,1,1,103,104],[63,4,4,104,108],[65,4,4,108,112],[68,4,4,112,116],[69,4,3,116,119],[72,1,1,119,120],[73,2,2,120,122],[74,3,3,122,125],[77,1,1,125,126],[78,1,1,126,127],[79,4,4,127,131],[80,3,3,131,134],[81,4,4,134,138],[82,5,4,138,142],[83,7,6,142,148],[89,1,1,148,149]]],[2,66,66,149,215,[[90,2,2,149,151],[93,2,2,151,153],[94,1,1,153,154],[95,5,5,154,159],[96,4,4,159,163],[97,1,1,163,164],[98,1,1,164,165],[99,6,6,165,171],[100,2,2,171,173],[101,2,2,173,175],[102,1,1,175,176],[103,2,2,176,178],[104,2,2,178,180],[105,2,2,180,182],[106,2,2,182,184],[107,2,2,184,186],[108,2,2,186,188],[109,1,1,188,189],[110,3,3,189,192],[111,5,5,192,197],[112,10,10,197,207],[113,4,4,207,211],[114,2,2,211,213],[116,2,2,213,215]]],[3,119,111,215,326,[[117,2,2,215,217],[118,1,1,217,218],[119,5,5,218,223],[120,3,3,223,226],[121,6,6,226,232],[122,4,4,232,236],[123,3,1,236,237],[124,4,4,237,241],[125,4,4,241,245],[126,2,2,245,247],[127,3,3,247,250],[128,6,4,250,254],[129,1,1,254,255],[130,5,5,255,260],[131,6,6,260,266],[132,10,10,266,276],[133,3,3,276,279],[134,3,3,279,282],[135,2,2,282,284],[136,2,2,284,286],[137,2,2,286,288],[138,8,6,288,294],[139,8,7,294,301],[140,3,2,301,303],[141,2,2,303,305],[142,2,2,305,307],[143,4,4,307,311],[144,1,1,311,312],[146,1,1,312,313],[147,2,2,313,315],[148,2,2,315,317],[149,2,2,317,319],[150,2,2,319,321],[151,3,3,321,324],[152,2,2,324,326]]],[4,70,63,326,389,[[153,7,7,326,333],[154,2,2,333,335],[155,1,1,335,336],[156,4,4,336,340],[157,11,8,340,348],[158,3,3,348,351],[161,3,3,351,354],[162,2,2,354,356],[163,2,2,356,358],[164,1,1,358,359],[165,2,2,359,361],[167,1,1,361,362],[170,11,7,362,369],[171,1,1,369,370],[172,4,4,370,374],[175,1,1,374,375],[177,1,1,375,376],[178,2,2,376,378],[179,2,2,378,380],[181,1,1,380,381],[183,4,4,381,385],[184,4,4,385,389]]],[5,32,29,389,418,[[187,1,1,389,390],[190,3,3,390,393],[191,1,1,393,394],[195,2,2,394,396],[196,1,1,396,397],[197,1,1,397,398],[199,2,2,398,400],[200,5,3,400,403],[203,1,1,403,404],[206,4,3,404,407],[207,2,2,407,409],[208,4,4,409,413],[209,4,4,413,417],[210,1,1,417,418]]],[6,27,27,418,445,[[211,1,1,418,419],[212,2,2,419,421],[215,1,1,421,422],[216,5,5,422,427],[217,1,1,427,428],[218,2,2,428,430],[219,4,4,430,434],[221,1,1,434,435],[222,1,1,435,436],[223,1,1,436,437],[224,1,1,437,438],[225,1,1,438,439],[226,2,2,439,441],[229,2,2,441,443],[230,1,1,443,444],[231,1,1,444,445]]],[7,3,3,445,448,[[232,1,1,445,446],[233,1,1,446,447],[235,1,1,447,448]]],[8,41,38,448,486,[[236,2,2,448,450],[237,1,1,450,451],[238,5,4,451,455],[239,1,1,455,456],[243,1,1,456,457],[244,3,3,457,460],[245,1,1,460,461],[246,1,1,461,462],[249,1,1,462,463],[250,2,1,463,464],[251,1,1,464,465],[252,4,3,465,468],[253,4,4,468,472],[254,3,3,472,475],[255,2,2,475,477],[259,1,1,477,478],[260,6,6,478,484],[263,2,2,484,486]]],[9,38,32,486,518,[[268,1,1,486,487],[269,3,2,487,489],[273,8,7,489,496],[277,1,1,496,497],[278,1,1,497,498],[279,3,3,498,501],[280,9,7,501,508],[283,2,1,508,509],[285,3,3,509,512],[286,3,2,512,514],[288,1,1,514,515],[289,2,2,515,517],[290,1,1,517,518]]],[10,77,67,518,585,[[291,3,3,518,521],[292,11,11,521,532],[293,1,1,532,533],[294,3,2,533,535],[295,2,2,535,537],[296,1,1,537,538],[298,10,7,538,545],[299,1,1,545,546],[300,1,1,546,547],[302,10,7,547,554],[303,9,9,554,563],[304,4,4,563,567],[305,1,1,567,568],[306,2,2,568,570],[307,1,1,570,571],[310,1,1,571,572],[311,8,6,572,578],[312,8,7,578,585]]],[11,50,43,585,628,[[313,14,11,585,596],[314,2,2,596,598],[316,2,2,598,600],[317,3,2,600,602],[318,2,2,602,604],[319,3,2,604,606],[320,2,2,606,608],[321,1,1,608,609],[322,3,2,609,611],[326,2,2,611,613],[327,1,1,613,614],[329,1,1,614,615],[330,4,3,615,618],[331,1,1,618,619],[332,2,2,619,621],[333,1,1,621,622],[334,2,2,622,624],[336,2,2,624,626],[337,2,2,626,628]]],[12,10,9,628,637,[[354,6,5,628,633],[358,3,3,633,636],[359,1,1,636,637]]],[13,34,29,637,666,[[372,7,5,637,642],[375,1,1,642,643],[376,9,7,643,650],[384,7,6,650,656],[388,1,1,656,657],[389,1,1,657,658],[391,1,1,658,659],[396,1,1,659,660],[398,3,3,660,663],[399,2,2,663,665],[400,1,1,665,666]]],[14,1,1,666,667,[[410,1,1,666,667]]],[15,4,3,667,670,[[418,1,1,667,668],[421,1,1,668,669],[425,2,1,669,670]]],[16,7,6,670,676,[[426,1,1,670,671],[431,3,2,671,673],[432,1,1,673,674],[433,1,1,674,675],[435,1,1,675,676]]],[17,39,35,676,711,[[436,3,3,676,679],[437,3,2,679,681],[442,1,1,681,682],[444,1,1,682,683],[445,1,1,683,684],[446,1,1,684,685],[448,5,4,685,689],[451,2,2,689,691],[453,1,1,691,692],[454,1,1,692,693],[456,2,1,693,694],[462,1,1,694,695],[467,3,3,695,698],[468,4,4,698,702],[469,2,2,702,704],[472,1,1,704,705],[475,1,1,705,706],[476,1,1,706,707],[477,5,4,707,711]]],[18,58,54,711,765,[[479,1,1,711,712],[482,1,1,712,713],[489,3,2,713,715],[492,1,1,715,716],[494,1,1,716,717],[495,1,1,717,718],[505,1,1,718,719],[508,1,1,719,720],[511,1,1,720,721],[512,1,1,721,722],[514,1,1,722,723],[515,1,1,723,724],[516,1,1,724,725],[517,1,1,725,726],[518,2,1,726,727],[524,1,1,727,728],[526,1,1,728,729],[527,3,3,729,732],[528,1,1,732,733],[529,1,1,733,734],[535,2,2,734,736],[537,1,1,736,737],[539,1,1,737,738],[540,1,1,738,739],[543,1,1,739,740],[550,2,1,740,741],[552,1,1,741,742],[554,1,1,742,743],[555,1,1,743,744],[562,2,1,744,745],[564,1,1,745,746],[566,1,1,746,747],[571,1,1,747,748],[576,1,1,748,749],[578,1,1,749,750],[585,1,1,750,751],[586,2,2,751,753],[592,1,1,753,754],[593,1,1,754,755],[596,2,2,755,757],[597,1,1,757,758],[599,1,1,758,759],[604,1,1,759,760],[612,1,1,760,761],[621,2,2,761,763],[622,2,2,763,765]]],[19,10,10,765,775,[[629,1,1,765,766],[635,1,1,766,767],[643,1,1,767,768],[645,1,1,768,769],[648,1,1,769,770],[650,3,3,770,773],[651,1,1,773,774],[652,1,1,774,775]]],[20,5,5,775,780,[[659,2,2,775,777],[660,1,1,777,778],[661,1,1,778,779],[665,1,1,779,780]]],[21,2,2,780,782,[[675,1,1,780,781],[678,1,1,781,782]]],[22,49,46,782,828,[[679,2,2,782,784],[685,1,1,784,785],[686,2,2,785,787],[687,1,1,787,788],[694,2,2,788,790],[697,1,1,790,791],[698,1,1,791,792],[699,1,1,792,793],[700,1,1,793,794],[702,1,1,794,795],[703,1,1,795,796],[706,1,1,796,797],[707,1,1,797,798],[708,1,1,798,799],[710,4,3,799,802],[711,1,1,802,803],[714,3,2,803,805],[715,1,1,805,806],[716,2,2,806,808],[717,1,1,808,809],[718,3,3,809,812],[719,1,1,812,813],[723,2,1,813,814],[724,1,1,814,815],[726,2,2,815,817],[730,1,1,817,818],[736,3,3,818,821],[737,3,3,821,824],[741,1,1,824,825],[743,2,2,825,827],[744,1,1,827,828]]],[23,114,103,828,931,[[745,4,4,828,832],[747,1,1,832,833],[748,2,2,833,835],[749,3,3,835,838],[750,1,1,838,839],[751,4,3,839,842],[752,1,1,842,843],[753,6,4,843,847],[754,2,2,847,849],[755,2,2,849,851],[756,2,2,851,853],[757,1,1,853,854],[758,1,1,854,855],[760,1,1,855,856],[762,4,4,856,860],[763,3,3,860,863],[764,2,2,863,865],[766,2,2,865,867],[767,6,6,867,873],[769,4,3,873,876],[770,9,7,876,883],[771,3,3,883,886],[772,2,2,886,888],[773,2,2,888,890],[774,2,2,890,892],[775,1,1,892,893],[776,3,3,893,896],[777,2,2,896,898],[778,3,3,898,901],[779,5,3,901,904],[780,5,4,904,908],[781,1,1,908,909],[782,7,5,909,914],[783,2,2,914,916],[784,3,3,916,919],[786,1,1,919,920],[787,2,2,920,922],[788,2,2,922,924],[789,1,1,924,925],[790,1,1,925,926],[794,1,1,926,927],[795,2,2,927,929],[796,2,2,929,931]]],[25,67,63,931,994,[[802,1,1,931,932],[803,5,4,932,936],[804,8,8,936,944],[806,3,3,944,947],[807,1,1,947,948],[811,1,1,948,949],[812,1,1,949,950],[813,5,3,950,953],[814,2,2,953,955],[815,2,2,955,957],[818,2,2,957,959],[821,2,2,959,961],[822,2,2,961,963],[823,2,2,963,965],[824,1,1,965,966],[825,3,3,966,969],[827,2,2,969,971],[829,1,1,971,972],[830,1,1,972,973],[831,1,1,973,974],[833,1,1,974,975],[834,4,3,975,978],[835,1,1,978,979],[837,3,3,979,982],[838,3,3,982,985],[839,2,2,985,987],[840,2,2,987,989],[841,2,2,989,991],[842,1,1,991,992],[844,1,1,992,993],[845,1,1,993,994]]],[26,19,16,994,1010,[[850,1,1,994,995],[851,1,1,995,996],[857,3,2,996,998],[858,5,5,998,1003],[859,7,5,1003,1008],[860,2,2,1008,1010]]],[27,7,7,1010,1017,[[862,1,1,1010,1011],[863,1,1,1011,1012],[868,1,1,1012,1013],[871,1,1,1013,1014],[873,2,2,1014,1016],[874,1,1,1016,1017]]],[28,1,1,1017,1018,[[878,1,1,1017,1018]]],[29,3,3,1018,1021,[[881,2,2,1018,1020],[883,1,1,1020,1021]]],[30,1,1,1021,1022,[[888,1,1,1021,1022]]],[31,2,2,1022,1024,[[891,2,2,1022,1024]]],[32,3,3,1024,1027,[[896,1,1,1024,1025],[898,1,1,1025,1026],[899,1,1,1026,1027]]],[34,1,1,1027,1028,[[904,1,1,1027,1028]]],[35,1,1,1028,1029,[[908,1,1,1028,1029]]],[37,18,17,1029,1046,[[911,4,4,1029,1033],[912,2,2,1033,1035],[914,3,3,1035,1038],[915,2,2,1038,1040],[916,2,2,1040,1042],[918,1,1,1042,1043],[919,1,1,1043,1044],[920,2,1,1044,1045],[923,1,1,1045,1046]]],[38,2,2,1046,1048,[[927,2,2,1046,1048]]]],[198,302,394,400,419,420,429,443,451,453,454,455,456,457,471,478,503,514,515,574,579,584,587,598,606,621,624,636,641,642,732,733,746,788,804,897,902,947,983,986,988,993,1000,1024,1025,1026,1087,1159,1166,1168,1204,1212,1223,1259,1266,1276,1282,1309,1326,1330,1331,1340,1342,1370,1373,1385,1501,1510,1523,1527,1549,1611,1613,1615,1616,1617,1631,1655,1657,1664,1665,1666,1667,1668,1682,1683,1684,1687,1692,1694,1698,1707,1725,1729,1743,1754,1777,1806,1808,1819,1841,1847,1848,1868,1890,1891,1901,1904,1957,1958,1959,1970,2032,2034,2035,2045,2052,2070,2073,2166,2180,2184,2196,2197,2217,2296,2378,2393,2399,2404,2413,2421,2433,2438,2445,2451,2452,2472,2474,2482,2484,2490,2525,2527,2528,2529,2530,2531,2708,2746,2747,2796,2797,2844,2850,2857,2868,2873,2874,2901,2902,2907,2908,2918,2956,2980,2982,2985,2988,2989,2996,2998,2999,3045,3046,3053,3112,3144,3169,3170,3202,3203,3236,3237,3252,3253,3282,3283,3319,3361,3362,3369,3370,3371,3386,3387,3395,3403,3404,3411,3412,3425,3426,3428,3435,3436,3446,3447,3459,3461,3469,3470,3471,3571,3572,3605,3652,3659,3693,3697,3703,3706,3736,3744,3760,3764,3793,3796,3797,3798,3803,3804,3824,3825,3845,3846,3939,3940,3941,3944,3962,3966,3969,3974,3975,3989,4017,4041,4048,4049,4060,4061,4065,4067,4076,4125,4134,4136,4143,4147,4154,4155,4170,4171,4175,4191,4199,4214,4217,4218,4220,4225,4230,4234,4238,4241,4245,4246,4250,4265,4282,4283,4290,4291,4318,4319,4345,4347,4382,4383,4394,4395,4410,4413,4418,4421,4428,4432,4433,4435,4442,4458,4459,4481,4487,4492,4541,4561,4562,4569,4577,4578,4649,4665,4667,4745,4749,4810,4811,4817,4832,4846,4854,4855,4880,4884,4893,4895,4898,4903,4906,4913,4935,4939,4955,5001,5016,5019,5037,5049,5054,5057,5075,5077,5079,5080,5081,5084,5089,5093,5105,5160,5167,5185,5190,5195,5227,5233,5260,5274,5277,5325,5386,5401,5402,5403,5404,5405,5406,5414,5429,5432,5435,5436,5523,5555,5584,5585,5588,5594,5692,5729,5731,5756,5758,5759,5802,5803,5806,5854,5918,5920,5922,5948,6058,6059,6076,6130,6168,6187,6193,6197,6199,6289,6373,6374,6376,6383,6426,6430,6441,6447,6456,6465,6470,6474,6475,6503,6529,6549,6560,6635,6671,6681,6690,6691,6693,6705,6722,6727,6755,6756,6757,6791,6840,6875,6895,6916,6946,6959,6962,7027,7054,7057,7115,7145,7162,7191,7225,7228,7243,7285,7286,7288,7293,7317,7390,7397,7412,7416,7443,7449,7527,7576,7599,7641,7646,7649,7677,7698,7699,7700,7707,7709,7710,7753,7756,7855,7870,7878,7885,7891,7900,7901,7959,7963,8076,8100,8108,8187,8197,8199,8200,8205,8208,8209,8278,8304,8330,8339,8353,8359,8366,8368,8369,8371,8374,8375,8455,8518,8522,8540,8570,8572,8603,8655,8656,8704,8731,8739,8759,8774,8784,8786,8788,8789,8793,8794,8797,8800,8801,8808,8838,8876,8877,8883,8890,8908,9000,9005,9009,9010,9011,9038,9041,9056,9081,9154,9158,9160,9161,9163,9165,9166,9187,9191,9195,9196,9202,9206,9209,9210,9211,9220,9223,9229,9236,9278,9295,9317,9333,9419,9453,9455,9456,9457,9470,9474,9493,9494,9496,9503,9504,9508,9518,9536,9539,9540,9542,9543,9544,9545,9546,9548,9549,9550,9562,9573,9616,9620,9651,9660,9686,9707,9724,9725,9728,9731,9792,9803,9810,9921,9923,9937,10006,10050,10051,10052,10082,10107,10117,10129,10159,10164,10204,10215,10228,10250,10869,10878,10880,10886,10889,10943,10944,10953,10975,11286,11292,11297,11298,11299,11365,11398,11402,11404,11405,11407,11409,11410,11554,11555,11557,11564,11565,11569,11654,11659,11720,11849,11881,11891,11894,11918,11926,11955,12218,12413,12524,12695,12724,12803,12807,12816,12820,12869,12885,12886,12887,12901,12904,13019,13086,13087,13113,13156,13160,13166,13175,13242,13244,13278,13315,13358,13485,13635,13644,13648,13652,13664,13681,13682,13716,13718,13789,13869,13891,13926,13929,13930,13931,13950,13979,14068,14069,14089,14113,14165,14302,14349,14401,14430,14480,14502,14515,14530,14548,14628,14651,14669,14675,14688,14695,14713,14780,14782,14813,14838,14850,14887,15028,15076,15097,15132,15279,15304,15345,15435,15506,15520,15749,15757,15775,15835,15858,15921,15944,16081,16097,16126,16191,16313,16316,16331,16341,16445,16608,16853,16924,17012,17053,17060,17077,17081,17124,17323,17331,17348,17366,17450,17604,17648,17656,17674,17792,17812,17817,17846,17982,17983,18022,18031,18052,18077,18098,18126,18175,18197,18227,18263,18265,18266,18294,18341,18342,18374,18397,18405,18420,18422,18425,18447,18452,18580,18597,18629,18630,18702,18795,18799,18800,18803,18804,18813,18867,18909,18921,18926,18952,18953,18962,18963,19007,19039,19055,19063,19072,19073,19099,19132,19141,19146,19159,19180,19183,19187,19197,19202,19206,19228,19243,19250,19255,19281,19307,19346,19391,19392,19393,19404,19409,19412,19422,19430,19431,19455,19475,19500,19501,19505,19512,19519,19521,19536,19537,19547,19574,19579,19580,19585,19587,19588,19591,19608,19609,19612,19625,19634,19658,19667,19669,19671,19711,19735,19755,19773,19789,19799,19804,19806,19807,19825,19837,19840,19844,19846,19849,19873,19876,19896,19899,19903,19915,19920,19928,19935,19943,19944,19957,19994,19998,19999,20026,20035,20041,20058,20167,20224,20274,20285,20308,20492,20493,20494,20499,20500,20503,20506,20512,20513,20520,20524,20526,20529,20559,20561,20563,20573,20638,20680,20703,20705,20708,20715,20716,20735,20740,20846,20849,20898,20922,20961,20976,20990,21004,21041,21070,21074,21083,21105,21114,21167,21186,21216,21269,21282,21288,21310,21337,21364,21365,21395,21411,21416,21418,21442,21444,21453,21456,21481,21522,21548,21578,21604,21756,21762,21974,21979,21994,22000,22008,22009,22010,22026,22030,22031,22032,22034,22063,22072,22096,22119,22191,22229,22256,22262,22267,22351,22396,22403,22433,22528,22560,22568,22624,22660,22667,22749,22833,22887,22891,22892,22897,22902,22903,22923,22926,22927,22941,22946,22951,22955,22992,23009,23018,23062,23133,23136]]],["+",[65,64,[[0,4,4,0,4,[[19,1,1,0,1],[26,1,1,1,2],[30,1,1,2,3],[44,1,1,3,4]]],[1,9,8,4,12,[[50,1,1,4,5],[53,3,2,5,7],[56,1,1,7,8],[58,1,1,8,9],[63,1,1,9,10],[69,1,1,10,11],[83,1,1,11,12]]],[3,4,4,12,16,[[127,1,1,12,13],[130,1,1,13,14],[132,1,1,14,15],[139,1,1,15,16]]],[4,4,4,16,20,[[183,2,2,16,18],[184,2,2,18,20]]],[5,3,3,20,23,[[200,1,1,20,21],[206,1,1,21,22],[209,1,1,22,23]]],[6,4,4,23,27,[[212,1,1,23,24],[221,1,1,24,25],[226,2,2,25,27]]],[8,4,4,27,31,[[245,1,1,27,28],[253,1,1,28,29],[259,1,1,29,30],[260,1,1,30,31]]],[9,3,3,31,34,[[273,2,2,31,33],[280,1,1,33,34]]],[10,3,3,34,37,[[292,1,1,34,35],[304,1,1,35,36],[312,1,1,36,37]]],[11,3,3,37,40,[[313,1,1,37,38],[317,1,1,38,39],[330,1,1,39,40]]],[12,1,1,40,41,[[358,1,1,40,41]]],[13,2,2,41,43,[[376,1,1,41,42],[388,1,1,42,43]]],[17,2,2,43,45,[[477,2,2,43,45]]],[18,2,2,45,47,[[511,1,1,45,46],[529,1,1,46,47]]],[21,1,1,47,48,[[678,1,1,47,48]]],[22,2,2,48,50,[[702,1,1,48,49],[714,1,1,49,50]]],[23,10,10,50,60,[[749,1,1,50,51],[751,1,1,51,52],[760,1,1,52,53],[763,1,1,53,54],[770,3,3,54,57],[776,1,1,57,58],[778,1,1,58,59],[784,1,1,59,60]]],[25,2,2,60,62,[[803,1,1,60,61],[821,1,1,61,62]]],[26,1,1,62,63,[[859,1,1,62,63]]],[31,1,1,63,64,[[891,1,1,63,64]]]],[503,746,902,1385,1549,1615,1631,1687,1743,1901,2052,2529,4048,4147,4225,4442,5729,5756,5802,5803,6197,6376,6475,6549,6840,6959,6962,7443,7699,7855,7878,8200,8208,8369,8793,9220,9496,9540,9660,10051,10944,11409,11654,13929,13931,14401,14713,17648,18098,18342,19072,19146,19346,19409,19579,19580,19587,19773,19807,19943,20499,20898,22026,22560]]],["Commune",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7698]]],["Say",[1,1,[[25,1,1,0,1,[[838,1,1,0,1]]]],[21416]]],["Spake",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4458]]],["Speak",[53,53,[[1,6,6,0,6,[[60,1,1,0,1],[61,1,1,1,2],[63,1,1,2,3],[69,1,1,3,4],[74,1,1,4,5],[80,1,1,5,6]]],[2,21,21,6,27,[[90,1,1,6,7],[93,1,1,7,8],[95,1,1,8,9],[96,2,2,9,11],[100,1,1,11,12],[101,1,1,12,13],[104,1,1,13,14],[105,1,1,14,15],[106,1,1,15,16],[107,1,1,16,17],[108,1,1,17,18],[110,1,1,18,19],[111,2,2,19,21],[112,4,4,21,25],[114,1,1,25,26],[116,1,1,26,27]]],[3,14,14,27,41,[[121,2,2,27,29],[122,2,2,29,31],[124,1,1,31,32],[125,1,1,32,33],[131,3,3,33,36],[132,1,1,36,37],[133,1,1,37,38],[135,1,1,38,39],[149,1,1,39,40],[151,1,1,40,41]]],[5,1,1,41,42,[[206,1,1,41,42]]],[6,1,1,42,43,[[219,1,1,42,43]]],[8,2,2,43,45,[[238,2,2,43,45]]],[9,1,1,45,46,[[285,1,1,45,46]]],[11,1,1,46,47,[[330,1,1,46,47]]],[19,1,1,47,48,[[650,1,1,47,48]]],[22,2,2,48,50,[[714,1,1,48,49],[718,1,1,49,50]]],[23,1,1,50,51,[[753,1,1,50,51]]],[25,1,1,51,52,[[830,1,1,51,52]]],[37,1,1,52,53,[[918,1,1,52,53]]]],[1808,1819,1891,2070,2197,2433,2747,2797,2874,2902,2908,2999,3046,3170,3203,3237,3253,3283,3362,3371,3387,3404,3412,3426,3436,3471,3572,3798,3804,3825,3846,3941,3975,4155,4171,4191,4218,4246,4291,4811,4855,6374,6756,7285,7286,8522,10050,17053,18341,18422,19197,21186,22992]]],["Talk",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7243]]],["Tell",[2,2,[[6,1,1,0,1,[[230,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]]],[7057,9419]]],["appointed",[1,1,[[10,1,1,0,1,[[302,1,1,0,1]]]],[9163]]],["bade",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11407]]],["commanded",[2,2,[[3,2,2,0,2,[[132,1,1,0,1],[143,1,1,1,2]]]],[4241,4577]]],["commune",[3,3,[[0,1,1,0,1,[[33,1,1,0,1]]],[1,1,1,1,2,[[74,1,1,1,2]]],[8,1,1,2,3,[[254,1,1,2,3]]]],[986,2217,7709]]],["communed",[14,14,[[0,5,5,0,5,[[22,1,1,0,1],[33,2,2,1,3],[41,1,1,3,4],[42,1,1,4,5]]],[6,1,1,5,6,[[219,1,1,5,6]]],[8,2,2,6,8,[[244,1,1,6,7],[260,1,1,7,8]]],[10,1,1,8,9,[[300,1,1,8,9]]],[11,1,1,9,10,[[334,1,1,9,10]]],[13,1,1,10,11,[[375,1,1,10,11]]],[20,1,1,11,12,[[659,1,1,11,12]]],[26,1,1,12,13,[[850,1,1,12,13]]],[37,1,1,13,14,[[911,1,1,13,14]]]],[579,988,1000,1276,1309,6755,7416,7900,9081,10159,11365,17331,21756,22892]]],["communing",[2,2,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[80,1,1,1,2]]]],[457,2438]]],["declared",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3446]]],["gave",[3,3,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,2,2,1,3,[[783,1,1,1,2],[796,1,1,2,3]]]],[10228,19928,20285]]],["give",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19039]]],["named",[1,1,[[0,1,1,0,1,[[22,1,1,0,1]]]],[587]]],["on",[5,5,[[0,1,1,0,1,[[23,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]],[9,1,1,2,3,[[280,1,1,2,3]]],[10,2,2,3,5,[[292,2,2,3,5]]]],[624,7576,8368,8784,8786]]],["promised",[26,25,[[1,1,1,0,1,[[61,1,1,0,1]]],[4,10,10,1,11,[[153,1,1,1,2],[158,1,1,2,3],[161,1,1,3,4],[162,1,1,4,5],[164,1,1,5,6],[167,1,1,6,7],[171,1,1,7,8],[175,1,1,8,9],[178,1,1,9,10],[179,1,1,10,11]]],[5,4,4,11,15,[[195,1,1,11,12],[208,1,1,12,13],[209,2,2,13,15]]],[10,6,5,15,20,[[292,1,1,15,16],[295,1,1,16,17],[298,3,2,17,19],[299,1,1,19,20]]],[12,1,1,20,21,[[354,1,1,20,21]]],[13,3,3,21,24,[[372,3,3,21,24]]],[23,1,1,24,25,[[777,1,1,24,25]]]],[1841,4903,5089,5185,5195,5260,5325,5414,5523,5584,5588,6058,6430,6465,6470,8794,8890,9005,9041,9056,10889,11292,11297,11298,19789]]],["promisedst",[2,2,[[10,2,2,0,2,[[298,2,2,0,2]]]],[9009,9010]]],["pronounce",[1,1,[[6,1,1,0,1,[[222,1,1,0,1]]]],[6875]]],["pronounced",[11,11,[[15,1,1,0,1,[[418,1,1,0,1]]],[23,10,10,1,11,[[755,1,1,1,2],[762,1,1,2,3],[763,1,1,3,4],[769,1,1,4,5],[770,2,2,5,7],[778,1,1,7,8],[779,1,1,8,9],[780,2,2,9,11]]]],[12413,19243,19392,19422,19547,19585,19591,19806,19840,19849,19873]]],["published",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12724]]],["rehearsed",[1,1,[[8,1,1,0,1,[[243,1,1,0,1]]]],[7390]]],["said",[85,83,[[0,5,5,0,5,[[16,1,1,0,1],[17,1,1,1,2],[33,1,1,2,3],[40,1,1,3,4],[44,1,1,4,5]]],[1,11,11,5,16,[[56,2,2,5,7],[57,2,2,7,9],[61,2,2,9,11],[65,1,1,11,12],[73,2,2,12,14],[81,1,1,14,15],[82,1,1,15,16]]],[2,2,2,16,18,[[99,2,2,16,18]]],[3,4,4,18,22,[[130,1,1,18,19],[132,1,1,19,20],[148,1,1,20,21],[152,1,1,21,22]]],[4,6,6,22,28,[[153,1,1,22,23],[161,1,1,23,24],[163,1,1,24,25],[170,1,1,25,26],[181,1,1,26,27],[183,1,1,27,28]]],[5,8,8,28,36,[[187,1,1,28,29],[197,1,1,29,30],[199,2,2,30,32],[200,3,3,32,35],[208,1,1,35,36]]],[6,6,6,36,42,[[211,1,1,36,37],[212,1,1,37,38],[216,3,3,38,41],[218,1,1,41,42]]],[8,4,3,42,45,[[238,2,1,42,43],[239,1,1,43,44],[250,1,1,44,45]]],[9,1,1,45,46,[[273,1,1,45,46]]],[10,7,7,46,53,[[292,3,3,46,49],[303,2,2,49,51],[311,2,2,51,53]]],[11,15,15,53,68,[[313,9,9,53,62],[316,1,1,62,63],[317,1,1,63,64],[319,1,1,64,65],[326,1,1,65,66],[329,1,1,66,67],[336,1,1,67,68]]],[12,2,2,68,70,[[354,1,1,68,69],[359,1,1,69,70]]],[13,1,1,70,71,[[389,1,1,70,71]]],[16,1,1,71,72,[[431,1,1,71,72]]],[20,1,1,72,73,[[660,1,1,72,73]]],[23,5,4,73,77,[[767,1,1,73,74],[782,2,1,74,75],[784,1,1,75,76],[786,1,1,76,77]]],[25,5,5,77,82,[[807,1,1,77,78],[822,1,1,78,79],[841,2,2,79,81],[842,1,1,81,82]]],[31,1,1,82,83,[[891,1,1,82,83]]]],[420,429,993,1212,1385,1698,1707,1725,1729,1847,1848,1970,2180,2184,2445,2474,2982,2996,4143,4234,4749,4884,4913,5160,5233,5386,5692,5731,5854,6130,6168,6187,6193,6197,6199,6447,6529,6560,6681,6690,6691,6722,7293,7317,7576,8205,8800,8801,8808,9191,9196,9456,9457,9536,9540,9542,9543,9544,9545,9546,9548,9549,9620,9651,9724,9923,10006,10215,10886,10975,11659,12803,17348,19501,19920,19944,19994,20573,20961,21481,21522,21548,22568]]],["saidst",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2451]]],["saith",[7,7,[[0,1,1,0,1,[[43,1,1,0,1]]],[3,2,2,1,3,[[140,1,1,1,2],[148,1,1,2,3]]],[5,1,1,3,4,[[191,1,1,3,4]]],[8,1,1,4,5,[[244,1,1,4,5]]],[9,2,2,5,7,[[280,1,1,5,6],[290,1,1,6,7]]]],[1331,4459,4745,5948,7397,8366,8704]]],["say",[24,24,[[1,2,2,0,2,[[53,1,1,0,1],[55,1,1,1,2]]],[3,4,4,2,6,[[138,3,3,2,5],[139,1,1,5,6]]],[6,1,1,6,7,[[217,1,1,6,7]]],[10,3,3,7,10,[[302,1,1,7,8],[303,1,1,8,9],[304,1,1,9,10]]],[11,2,2,10,12,[[313,2,2,10,12]]],[13,1,1,12,13,[[384,1,1,12,13]]],[14,1,1,13,14,[[410,1,1,13,14]]],[18,1,1,14,15,[[599,1,1,14,15]]],[22,1,1,15,16,[[716,1,1,15,16]]],[23,2,2,16,18,[[749,1,1,16,17],[783,1,1,17,18]]],[25,5,5,18,23,[[803,1,1,18,19],[813,2,2,19,21],[838,1,1,21,22],[845,1,1,22,23]]],[34,1,1,23,24,[[904,1,1,23,24]]]],[1613,1684,4394,4395,4413,4432,6705,9161,9206,9223,9536,9539,11557,12218,16097,18405,19073,19935,20500,20703,20705,21418,21604,22749]]],["spake",[308,303,[[0,24,24,0,24,[[7,1,1,0,1],[15,1,1,1,2],[17,1,1,2,3],[18,1,1,3,4],[22,2,2,4,6],[23,2,2,6,8],[26,1,1,8,9],[28,1,1,9,10],[33,1,1,10,11],[34,1,1,11,12],[38,3,3,12,15],[40,1,1,15,16],[41,3,3,16,19],[43,1,1,19,20],[48,1,1,20,21],[49,3,3,21,24]]],[1,22,22,24,46,[[55,8,8,24,32],[56,1,1,32,33],[62,1,1,33,34],[63,1,1,34,35],[65,2,2,35,37],[68,1,1,37,38],[74,1,1,38,39],[79,3,3,39,42],[80,1,1,42,43],[82,1,1,43,44],[83,1,1,44,45],[89,1,1,45,46]]],[2,38,38,46,84,[[90,1,1,46,47],[93,1,1,47,48],[94,1,1,48,49],[95,4,4,49,53],[96,2,2,53,55],[97,1,1,55,56],[99,3,3,56,59],[100,1,1,59,60],[101,1,1,60,61],[102,1,1,61,62],[103,2,2,62,64],[104,1,1,64,65],[105,1,1,65,66],[106,1,1,66,67],[107,1,1,67,68],[108,1,1,68,69],[109,1,1,69,70],[110,1,1,70,71],[111,3,3,71,74],[112,5,5,74,79],[113,3,3,79,82],[114,1,1,82,83],[116,1,1,83,84]]],[3,59,59,84,143,[[117,1,1,84,85],[118,1,1,85,86],[119,5,5,86,91],[120,3,3,91,94],[121,4,4,94,98],[122,2,2,98,100],[123,1,1,100,101],[124,3,3,101,104],[125,3,3,104,107],[126,1,1,107,108],[127,1,1,108,109],[128,1,1,109,110],[129,1,1,110,111],[130,1,1,111,112],[131,2,2,112,114],[132,6,6,114,120],[133,2,2,120,122],[134,2,2,122,124],[135,1,1,124,125],[136,1,1,125,126],[137,1,1,126,127],[138,1,1,127,128],[141,2,2,128,130],[142,2,2,130,132],[143,1,1,132,133],[144,1,1,133,134],[146,1,1,134,135],[147,2,2,135,137],[149,1,1,137,138],[150,2,2,138,140],[151,2,2,140,142],[152,1,1,142,143]]],[4,17,17,143,160,[[153,4,4,143,147],[154,2,2,147,149],[156,3,3,149,152],[157,2,2,152,154],[161,1,1,154,155],[162,1,1,155,156],[165,1,1,156,157],[179,1,1,157,158],[183,1,1,158,159],[184,1,1,159,160]]],[5,13,13,160,173,[[190,2,2,160,162],[195,1,1,162,163],[196,1,1,163,164],[200,1,1,164,165],[203,1,1,165,166],[206,2,2,166,168],[207,1,1,168,169],[208,2,2,169,171],[209,1,1,171,172],[210,1,1,172,173]]],[6,3,3,173,176,[[218,1,1,173,174],[219,2,2,174,176]]],[7,1,1,176,177,[[235,1,1,176,177]]],[8,12,12,177,189,[[236,1,1,177,178],[251,1,1,178,179],[252,3,3,179,182],[253,1,1,182,183],[254,2,2,183,185],[255,1,1,185,186],[260,2,2,186,188],[263,1,1,188,189]]],[9,7,7,189,196,[[269,1,1,189,190],[273,1,1,190,191],[278,1,1,191,192],[279,1,1,192,193],[288,1,1,193,194],[289,2,2,194,196]]],[10,30,28,196,224,[[291,1,1,196,197],[292,2,2,197,199],[293,1,1,199,200],[294,3,2,200,202],[295,1,1,202,203],[296,1,1,203,204],[298,2,2,204,206],[302,6,5,206,211],[303,3,3,211,214],[304,1,1,214,215],[305,1,1,215,216],[306,2,2,216,218],[307,1,1,218,219],[311,3,3,219,222],[312,2,2,222,224]]],[11,16,15,224,239,[[313,1,1,224,225],[314,1,1,225,226],[317,1,1,226,227],[319,1,1,227,228],[320,1,1,228,229],[321,1,1,229,230],[322,3,2,230,232],[326,1,1,232,233],[327,1,1,233,234],[330,1,1,234,235],[333,1,1,235,236],[334,1,1,236,237],[336,1,1,237,238],[337,1,1,238,239]]],[12,3,3,239,242,[[354,1,1,239,240],[358,2,2,240,242]]],[13,14,13,242,255,[[372,1,1,242,243],[376,5,4,243,247],[384,1,1,247,248],[396,1,1,248,249],[398,3,3,249,252],[399,2,2,252,254],[400,1,1,254,255]]],[15,1,1,255,256,[[425,1,1,255,256]]],[16,1,1,256,257,[[433,1,1,256,257]]],[17,3,3,257,260,[[437,1,1,257,258],[454,1,1,258,259],[467,1,1,259,260]]],[18,3,3,260,263,[[516,1,1,260,261],[555,1,1,261,262],[576,1,1,262,263]]],[21,1,1,263,264,[[675,1,1,263,264]]],[22,5,5,264,269,[[685,1,1,264,265],[686,1,1,265,266],[698,1,1,266,267],[743,1,1,267,268],[744,1,1,268,269]]],[23,20,20,269,289,[[751,2,2,269,271],[752,1,1,271,272],[758,1,1,272,273],[763,1,1,273,274],[764,1,1,274,275],[766,1,1,275,276],[769,1,1,276,277],[771,2,2,277,279],[774,1,1,279,280],[775,1,1,280,281],[780,1,1,281,282],[781,1,1,282,283],[782,1,1,283,284],[789,1,1,284,285],[790,1,1,285,286],[794,1,1,286,287],[795,1,1,287,288],[796,1,1,288,289]]],[25,6,5,289,294,[[802,1,1,289,290],[803,2,1,290,291],[804,1,1,291,292],[812,1,1,292,293],[825,1,1,293,294]]],[26,5,5,294,299,[[851,1,1,294,295],[857,1,1,295,296],[858,2,2,296,298],[859,1,1,298,299]]],[27,2,2,299,301,[[873,1,1,299,300],[874,1,1,300,301]]],[37,1,1,301,302,[[916,1,1,301,302]]],[38,1,1,302,303,[[927,1,1,302,303]]]],[198,394,453,471,574,584,598,621,732,804,983,1026,1159,1166,1168,1204,1259,1266,1282,1330,1501,1510,1523,1527,1657,1664,1665,1667,1668,1682,1683,1684,1692,1868,1890,1957,1958,2045,2196,2393,2399,2404,2421,2484,2530,2708,2746,2796,2844,2850,2857,2868,2873,2901,2907,2918,2980,2985,2989,2998,3045,3053,3112,3144,3169,3202,3236,3252,3282,3319,3361,3370,3386,3395,3403,3411,3425,3428,3435,3447,3459,3469,3470,3571,3605,3659,3693,3697,3703,3706,3736,3744,3760,3764,3793,3796,3797,3803,3824,3845,3939,3940,3944,3962,3966,3969,3974,3989,4049,4060,4076,4134,4154,4170,4199,4214,4217,4220,4230,4238,4245,4250,4265,4282,4290,4318,4345,4382,4481,4487,4492,4541,4569,4578,4649,4665,4667,4810,4817,4832,4846,4854,4880,4893,4895,4898,4935,4939,4955,5016,5019,5049,5075,5081,5167,5190,5274,5594,5758,5806,5918,5922,6059,6076,6199,6289,6373,6374,6383,6441,6456,6474,6503,6727,6757,6791,7191,7225,7599,7641,7646,7649,7700,7707,7710,7756,7870,7901,7959,8100,8187,8304,8339,8603,8655,8656,8759,8774,8797,8838,8876,8877,8883,8908,9000,9005,9154,9158,9161,9165,9166,9202,9210,9211,9236,9278,9295,9317,9333,9453,9457,9474,9493,9518,9542,9573,9660,9724,9728,9792,9803,9810,9921,9937,10052,10129,10164,10204,10250,10869,10943,10953,11286,11398,11402,11405,11410,11554,11849,11881,11891,11894,11918,11926,11955,12695,12820,12904,13315,13644,14515,15132,15506,17604,17792,17812,18031,18909,18926,19132,19141,19159,19307,19412,19430,19475,19536,19608,19612,19671,19711,19844,19876,19903,20041,20058,20167,20224,20308,20492,20494,20526,20680,21074,21762,21974,21994,22000,22031,22256,22267,22955,23136]]],["spakest",[8,8,[[6,1,1,0,1,[[223,1,1,0,1]]],[8,1,1,1,2,[[263,1,1,1,2]]],[10,3,3,2,5,[[298,3,3,2,5]]],[13,1,1,5,6,[[372,1,1,5,6]]],[15,1,1,6,7,[[421,1,1,6,7]]],[18,1,1,7,8,[[566,1,1,7,8]]]],[6895,7963,9009,9011,9038,11297,12524,15345]]],["speak",[206,193,[[0,12,12,0,12,[[17,4,4,0,4],[23,1,1,4,5],[26,1,1,5,6],[30,1,1,6,7],[31,1,1,7,8],[36,1,1,8,9],[43,2,2,9,11],[49,1,1,11,12]]],[1,17,17,12,29,[[53,1,1,12,13],[54,1,1,13,14],[55,2,2,14,16],[56,2,2,16,18],[63,1,1,18,19],[65,1,1,19,20],[68,2,2,20,22],[69,1,1,22,23],[72,1,1,23,24],[77,1,1,24,25],[78,1,1,25,26],[79,1,1,26,27],[83,2,2,27,29]]],[2,2,2,29,31,[[98,1,1,29,30],[113,1,1,30,31]]],[3,15,13,31,44,[[123,1,1,31,32],[128,3,2,32,34],[134,1,1,34,35],[136,1,1,35,36],[138,4,3,36,39],[139,2,2,39,41],[140,1,1,41,42],[143,2,2,42,44]]],[4,15,12,44,56,[[155,1,1,44,45],[157,4,3,45,48],[170,5,3,48,51],[172,3,3,51,54],[177,1,1,54,55],[184,1,1,55,56]]],[5,1,1,56,57,[[190,1,1,56,57]]],[6,4,4,57,61,[[216,1,1,57,58],[229,2,2,58,60],[231,1,1,60,61]]],[8,1,1,61,62,[[260,1,1,61,62]]],[9,13,12,62,74,[[269,2,2,62,64],[273,1,1,64,65],[279,1,1,65,66],[280,5,4,66,70],[283,1,1,70,71],[285,1,1,71,72],[286,2,2,72,74]]],[10,8,7,74,81,[[292,2,2,74,76],[302,1,1,76,77],[311,2,1,77,78],[312,3,3,78,81]]],[12,1,1,81,82,[[354,1,1,81,82]]],[13,4,4,82,86,[[376,1,1,82,83],[384,3,3,83,86]]],[15,1,1,86,87,[[425,1,1,86,87]]],[17,21,21,87,108,[[442,1,1,87,88],[444,1,1,88,89],[445,1,1,89,90],[446,1,1,90,91],[448,4,4,91,95],[451,2,2,95,97],[453,1,1,97,98],[456,1,1,98,99],[462,1,1,99,100],[467,2,2,100,102],[468,2,2,102,104],[469,1,1,104,105],[472,1,1,105,106],[476,1,1,106,107],[477,1,1,107,108]]],[18,29,26,108,134,[[479,1,1,108,109],[482,1,1,109,110],[489,2,1,110,111],[494,1,1,111,112],[505,1,1,112,113],[508,1,1,113,114],[512,1,1,114,115],[515,1,1,115,116],[517,1,1,116,117],[526,1,1,117,118],[527,1,1,118,119],[535,1,1,119,120],[540,1,1,120,121],[550,2,1,121,122],[552,1,1,122,123],[554,1,1,123,124],[562,2,1,124,125],[571,1,1,125,126],[586,1,1,126,127],[592,1,1,127,128],[596,2,2,128,130],[597,1,1,130,131],[604,1,1,131,132],[612,1,1,132,133],[622,1,1,133,134]]],[19,2,2,134,136,[[635,1,1,134,135],[650,1,1,135,136]]],[20,1,1,136,137,[[661,1,1,136,137]]],[22,13,13,137,150,[[686,1,1,137,138],[697,1,1,138,139],[706,1,1,139,140],[707,1,1,140,141],[708,1,1,141,142],[710,2,2,142,144],[714,1,1,144,145],[719,1,1,145,146],[723,1,1,146,147],[730,1,1,147,148],[737,1,1,148,149],[741,1,1,149,150]]],[23,23,21,150,171,[[745,3,3,150,153],[750,1,1,153,154],[753,2,1,154,155],[754,1,1,155,156],[755,1,1,156,157],[756,1,1,157,158],[762,3,3,158,161],[764,1,1,161,162],[766,1,1,162,163],[767,2,2,163,165],[770,3,2,165,167],[772,1,1,167,168],[776,1,1,168,169],[778,1,1,169,170],[782,1,1,170,171]]],[25,15,14,171,185,[[803,1,1,171,172],[804,5,5,172,177],[813,2,1,177,178],[815,1,1,178,179],[821,1,1,179,180],[825,1,1,180,181],[833,1,1,181,182],[834,3,3,182,185]]],[26,4,4,185,189,[[859,2,2,185,187],[860,2,2,187,189]]],[27,1,1,189,190,[[863,1,1,189,190]]],[35,1,1,190,191,[[908,1,1,190,191]]],[37,2,2,191,193,[[912,1,1,191,192],[919,1,1,192,193]]]],[451,454,455,456,641,733,897,947,1087,1340,1342,1510,1616,1655,1666,1684,1687,1694,1904,1959,2032,2035,2070,2166,2296,2378,2413,2530,2531,2956,3461,3939,4065,4067,4283,4319,4383,4410,4413,4421,4428,4459,4561,4562,5001,5054,5080,5084,5402,5403,5404,5429,5432,5435,5555,5759,5920,6693,7027,7054,7115,7885,8100,8108,8197,8330,8359,8368,8371,8374,8455,8518,8570,8572,8788,8789,9158,9470,9493,9494,9504,10878,11402,11554,11555,11565,12695,13019,13086,13087,13113,13156,13160,13166,13175,13242,13244,13278,13358,13485,13635,13648,13681,13682,13716,13789,13891,13926,13950,13979,14068,14113,14302,14349,14430,14502,14530,14651,14675,14780,14850,15028,15076,15097,15279,15435,15775,15835,15921,15944,16081,16126,16191,16341,16608,17060,17366,17817,18022,18175,18197,18227,18263,18265,18341,18452,18580,18702,18804,18867,18952,18953,18963,19099,19180,19206,19228,19255,19391,19393,19404,19431,19455,19500,19512,19574,19580,19625,19735,19804,19915,20493,20503,20506,20512,20513,20529,20705,20735,20922,21083,21269,21282,21288,21310,22026,22034,22063,22072,22119,22833,22903,23009]]],["speakest",[11,11,[[8,1,1,0,1,[[244,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]],[11,1,1,2,3,[[318,1,1,2,3]]],[17,1,1,3,4,[[437,1,1,3,4]]],[18,2,2,4,6,[[527,1,1,4,5],[528,1,1,5,6]]],[22,1,1,6,7,[[718,1,1,6,7]]],[23,2,2,7,9,[[784,1,1,7,8],[787,1,1,8,9]]],[25,1,1,9,10,[[804,1,1,9,10]]],[37,1,1,10,11,[[923,1,1,10,11]]]],[7412,8540,9686,12901,14688,14695,18447,19957,19999,20520,23062]]],["speaketh",[22,21,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,1,1,1,2,[[82,1,1,1,2]]],[3,1,1,2,3,[[139,1,1,2,3]]],[4,1,1,3,4,[[170,1,1,3,4]]],[17,2,2,4,6,[[437,1,1,4,5],[468,1,1,5,6]]],[18,5,5,6,11,[[489,1,1,6,7],[492,1,1,7,8],[518,1,1,8,9],[621,2,2,9,11]]],[19,3,3,11,14,[[629,1,1,11,12],[643,1,1,12,13],[648,1,1,13,14]]],[22,3,3,14,17,[[687,1,1,14,15],[710,1,1,15,16],[711,1,1,16,17]]],[23,3,2,17,19,[[753,2,1,17,18],[754,1,1,18,19]]],[25,1,1,19,20,[[811,1,1,19,20]]],[29,1,1,20,21,[[883,1,1,20,21]]]],[1370,2484,4442,5406,12901,13664,14069,14089,14548,16313,16316,16445,16853,17012,17846,18266,18294,19183,19202,20638,22433]]],["speaking",[30,30,[[0,2,2,0,2,[[23,2,2,0,2]]],[3,1,1,2,3,[[123,1,1,2,3]]],[4,4,4,3,7,[[156,1,1,3,4],[157,1,1,4,5],[163,1,1,5,6],[172,1,1,6,7]]],[6,1,1,7,8,[[225,1,1,7,8]]],[7,1,1,8,9,[[232,1,1,8,9]]],[8,1,1,9,10,[[253,1,1,9,10]]],[9,1,1,10,11,[[279,1,1,10,11]]],[16,1,1,11,12,[[435,1,1,11,12]]],[17,3,3,12,15,[[436,3,3,12,15]]],[18,1,1,15,16,[[535,1,1,15,16]]],[22,4,4,16,20,[[736,2,2,16,18],[737,1,1,18,19],[743,1,1,19,20]]],[23,5,5,20,25,[[751,1,1,20,21],[769,1,1,21,22],[779,1,1,22,23],[782,1,1,23,24],[787,1,1,24,25]]],[25,1,1,25,26,[[844,1,1,25,26]]],[26,4,4,26,30,[[857,2,2,26,28],[858,2,2,28,30]]]],[606,636,3939,5037,5079,5227,5436,6946,7145,7677,8353,12869,12885,12886,12887,14782,18795,18799,18813,18921,19132,19537,19837,19899,19998,21578,21974,21979,22008,22009]]],["spoken",[169,166,[[0,9,9,0,9,[[11,1,1,0,1],[17,1,1,1,2],[18,1,1,2,3],[20,2,2,3,5],[23,1,1,5,6],[27,1,1,6,7],[40,1,1,7,8],[43,1,1,8,9]]],[1,9,9,9,18,[[53,2,2,9,11],[58,2,2,11,13],[59,1,1,13,14],[68,1,1,14,15],[81,1,1,15,16],[82,1,1,16,17],[83,1,1,17,18]]],[2,1,1,18,19,[[99,1,1,18,19]]],[3,11,10,19,29,[[117,1,1,19,20],[126,1,1,20,21],[128,2,1,21,22],[130,2,2,22,24],[131,1,1,24,25],[137,1,1,25,26],[139,3,3,26,29]]],[4,10,8,29,37,[[153,1,1,29,30],[157,2,1,30,31],[158,1,1,31,32],[165,1,1,32,33],[170,4,3,33,36],[178,1,1,36,37]]],[5,1,1,37,38,[[207,1,1,37,38]]],[7,1,1,38,39,[[233,1,1,38,39]]],[8,4,4,39,43,[[236,1,1,39,40],[238,1,1,40,41],[255,1,1,41,42],[260,1,1,42,43]]],[9,6,6,43,49,[[268,1,1,43,44],[273,3,3,44,47],[280,1,1,47,48],[283,1,1,48,49]]],[10,7,7,49,56,[[302,1,1,49,50],[303,2,2,50,52],[304,1,1,52,53],[311,1,1,53,54],[312,2,2,54,56]]],[11,6,6,56,62,[[313,1,1,56,57],[316,1,1,57,58],[319,1,1,58,59],[331,1,1,59,60],[332,2,2,60,62]]],[12,2,2,62,64,[[354,2,2,62,64]]],[13,5,5,64,69,[[372,2,2,64,66],[376,1,1,66,67],[384,2,2,67,69]]],[16,2,2,69,71,[[431,1,1,69,70],[432,1,1,70,71]]],[17,6,6,71,77,[[456,1,1,71,72],[468,1,1,72,73],[469,1,1,73,74],[475,1,1,74,75],[477,2,2,75,77]]],[18,8,8,77,85,[[527,1,1,77,78],[537,1,1,78,79],[539,1,1,79,80],[543,1,1,80,81],[564,1,1,81,82],[585,1,1,82,83],[586,1,1,83,84],[593,1,1,84,85]]],[19,1,1,85,86,[[652,1,1,85,86]]],[20,1,1,86,87,[[665,1,1,86,87]]],[22,17,17,87,104,[[679,2,2,87,89],[694,2,2,89,91],[699,1,1,91,92],[700,1,1,92,93],[703,1,1,93,94],[715,1,1,94,95],[716,1,1,95,96],[717,1,1,96,97],[718,1,1,97,98],[723,1,1,98,99],[724,1,1,99,100],[726,2,2,100,102],[736,1,1,102,103],[737,1,1,103,104]]],[23,22,22,104,126,[[747,1,1,104,105],[748,1,1,105,106],[753,1,1,106,107],[757,1,1,107,108],[767,3,3,108,111],[769,1,1,111,112],[770,1,1,112,113],[771,1,1,113,114],[773,1,1,114,115],[774,1,1,115,116],[776,1,1,116,117],[777,1,1,117,118],[779,2,2,118,120],[780,2,2,120,122],[782,1,1,122,123],[788,2,2,123,125],[795,1,1,125,126]]],[25,27,27,126,153,[[806,3,3,126,129],[813,1,1,129,130],[814,2,2,130,132],[815,1,1,132,133],[818,2,2,133,135],[822,1,1,135,136],[823,2,2,136,138],[824,1,1,138,139],[825,1,1,139,140],[827,2,2,140,142],[829,1,1,142,143],[831,1,1,143,144],[835,1,1,144,145],[837,3,3,145,148],[838,1,1,148,149],[839,2,2,149,151],[840,2,2,151,153]]],[26,2,2,153,155,[[859,2,2,153,155]]],[27,3,3,155,158,[[868,1,1,155,156],[871,1,1,156,157],[873,1,1,157,158]]],[28,1,1,158,159,[[878,1,1,158,159]]],[29,2,2,159,161,[[881,2,2,159,161]]],[30,1,1,161,162,[[888,1,1,161,162]]],[32,2,2,162,164,[[896,1,1,162,163],[898,1,1,163,164]]],[37,1,1,164,165,[[920,1,1,164,165]]],[38,1,1,165,166,[[927,1,1,165,166]]]],[302,443,478,514,515,642,788,1223,1326,1611,1631,1754,1777,1806,2034,2472,2490,2528,2988,3652,4017,4061,4125,4136,4175,4347,4418,4433,4435,4906,5081,5105,5277,5401,5405,5406,5585,6426,7162,7228,7288,7753,7891,8076,8199,8205,8209,8375,8455,9160,9187,9195,9229,9455,9503,9508,9550,9616,9725,10082,10107,10117,10880,10886,11292,11299,11404,11564,11569,12803,12816,13358,13652,13718,13869,13929,13930,14669,14813,14838,14887,15304,15749,15757,15858,17124,17450,17656,17674,17982,17983,18052,18077,18126,18374,18397,18420,18425,18580,18597,18629,18630,18800,18803,19007,19055,19187,19281,19505,19519,19521,19537,19588,19609,19658,19669,19755,19799,19837,19840,19844,19846,19896,20026,20035,20274,20559,20561,20563,20708,20715,20716,20740,20846,20849,20976,20990,21004,21041,21070,21105,21114,21167,21216,21337,21364,21365,21395,21411,21442,21444,21453,21456,22030,22034,22191,22229,22262,22351,22396,22403,22528,22624,22660,23018,23133]]],["spokesman",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1617]]],["subdue",[1,1,[[18,1,1,0,1,[[524,1,1,0,1]]]],[14628]]],["subdueth",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14165]]],["talk",[10,10,[[3,1,1,0,1,[[127,1,1,0,1]]],[4,2,2,1,3,[[157,1,1,1,2],[158,1,1,2,3]]],[11,1,1,3,4,[[330,1,1,3,4]]],[17,1,1,4,5,[[448,1,1,4,5]]],[18,1,1,5,6,[[622,1,1,5,6]]],[19,1,1,6,7,[[651,1,1,6,7]]],[23,1,1,7,8,[[756,1,1,7,8]]],[25,1,1,8,9,[[804,1,1,8,9]]],[26,1,1,9,10,[[859,1,1,9,10]]]],[4041,5077,5093,10050,13160,16331,17081,19250,20524,22032]]],["talked",[29,29,[[0,4,4,0,4,[[16,1,1,0,1],[34,2,2,1,3],[44,1,1,3,4]]],[1,4,4,4,8,[[69,1,1,4,5],[82,1,1,5,6],[83,2,2,6,8]]],[4,1,1,8,9,[[157,1,1,8,9]]],[6,1,1,9,10,[[224,1,1,9,10]]],[8,2,2,10,12,[[249,1,1,10,11],[252,1,1,11,12]]],[10,1,1,12,13,[[291,1,1,12,13]]],[11,3,3,13,16,[[314,1,1,13,14],[318,1,1,14,15],[320,1,1,15,16]]],[13,1,1,16,17,[[391,1,1,16,17]]],[23,1,1,17,18,[[782,1,1,17,18]]],[26,1,1,18,19,[[858,1,1,18,19]]],[37,10,10,19,29,[[911,3,3,19,22],[912,1,1,22,23],[914,3,3,23,26],[915,2,2,26,28],[916,1,1,28,29]]]],[400,1024,1025,1373,2073,2482,2525,2527,5057,6916,7527,7641,8739,9562,9707,9731,11720,19920,22010,22887,22891,22897,22902,22923,22926,22927,22941,22946,22951]]],["talkest",[2,2,[[6,1,1,0,1,[[216,1,1,0,1]]],[10,1,1,1,2,[[291,1,1,1,2]]]],[6671,8731]]],["talketh",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14480]]],["talking",[3,3,[[0,1,1,0,1,[[16,1,1,0,1]]],[16,1,1,1,2,[[431,1,1,1,2]]],[25,1,1,2,3,[[834,1,1,2,3]]]],[419,12807,21310]]],["taught",[2,2,[[23,2,2,0,2,[[772,1,1,0,1],[773,1,1,1,2]]]],[19634,19667]]],["telleth",[2,2,[[18,2,2,0,2,[[518,1,1,0,1],[578,1,1,1,2]]]],[14548,15520]]],["telling",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8278]]],["thought",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2452]]],["told",[5,5,[[0,1,1,0,1,[[23,1,1,0,1]]],[2,1,1,1,2,[[110,1,1,1,2]]],[8,1,1,2,3,[[246,1,1,2,3]]],[10,1,1,3,4,[[303,1,1,3,4]]],[37,1,1,4,5,[[920,1,1,4,5]]]],[624,3369,7449,9209,23018]]],["unto",[2,2,[[23,2,2,0,2,[[749,1,1,0,1],[779,1,1,1,2]]]],[19063,19825]]],["useth",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16924]]],["utter",[5,5,[[6,1,1,0,1,[[215,1,1,0,1]]],[19,1,1,1,2,[[650,1,1,1,2]]],[20,1,1,2,3,[[659,1,1,2,3]]],[22,1,1,3,4,[[710,1,1,3,4]]],[23,1,1,4,5,[[745,1,1,4,5]]]],[6635,17077,17323,18265,18962]]],["uttereth",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22667]]],["wont",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8572]]],["word",[1,1,[[27,1,1,0,1,[[862,1,1,0,1]]]],[22096]]]]},{"k":"H1697","v":[["*",[1436,1286,[[0,61,58,0,58,[[10,1,1,0,1],[11,1,1,1,2],[14,3,2,2,4],[17,2,2,4,6],[18,3,3,6,9],[19,4,4,9,13],[20,2,2,13,15],[21,3,3,15,18],[23,7,7,18,25],[26,2,2,25,27],[28,1,1,27,28],[29,2,2,28,30],[30,1,1,30,31],[31,1,1,31,32],[33,3,3,32,35],[36,3,3,35,38],[38,4,3,38,41],[39,1,1,41,42],[40,3,3,42,45],[41,2,2,45,47],[42,2,2,47,49],[43,7,6,49,55],[44,1,1,55,56],[46,1,1,56,57],[47,1,1,57,58]]],[1,62,56,58,114,[[50,1,1,58,59],[51,2,2,59,61],[53,4,4,61,65],[54,4,4,65,69],[57,4,4,69,73],[58,5,5,73,78],[61,2,2,78,80],[63,1,1,80,81],[65,3,3,81,84],[67,11,9,84,93],[68,4,4,93,97],[69,1,1,97,98],[71,2,1,98,99],[72,2,2,99,101],[73,5,4,101,105],[78,1,1,105,106],[81,1,1,106,107],[82,2,2,107,109],[83,5,3,109,112],[84,2,2,112,114]]],[2,8,8,114,122,[[93,1,1,114,115],[94,1,1,115,116],[97,2,2,116,118],[98,1,1,118,119],[99,1,1,119,120],[106,1,1,120,121],[112,1,1,121,122]]],[3,29,26,122,148,[[127,2,2,122,124],[128,1,1,124,125],[129,1,1,125,126],[130,2,2,126,128],[131,1,1,128,129],[132,2,2,129,131],[134,1,1,131,132],[136,1,1,132,133],[138,5,5,133,138],[139,3,3,138,141],[141,3,1,141,142],[146,2,2,142,144],[147,3,2,144,146],[148,1,1,146,147],[152,1,1,147,148]]],[4,96,89,148,237,[[153,9,9,148,157],[154,2,2,157,159],[155,1,1,159,160],[156,9,9,160,169],[157,4,3,169,172],[158,1,1,172,173],[161,2,2,173,175],[162,2,2,175,177],[163,1,1,177,178],[164,2,2,178,180],[165,3,3,180,183],[167,4,4,183,187],[168,1,1,187,188],[169,9,8,188,196],[170,6,5,196,201],[171,3,3,201,204],[174,7,5,204,209],[175,4,4,209,213],[176,4,4,213,217],[179,3,3,217,220],[180,2,2,220,222],[181,4,4,222,226],[182,2,2,226,228],[183,5,5,228,233],[184,6,4,233,237]]],[5,32,28,237,265,[[187,2,2,237,239],[188,3,3,239,242],[189,1,1,242,243],[190,1,1,243,244],[191,1,1,244,245],[192,1,1,245,246],[194,4,4,246,250],[195,1,1,250,251],[197,1,1,251,252],[200,3,3,252,255],[206,1,1,255,256],[207,2,1,256,257],[208,4,4,257,261],[209,5,2,261,263],[210,2,2,263,265]]],[6,23,21,265,286,[[212,1,1,265,266],[213,2,2,266,268],[216,2,1,268,269],[219,2,2,269,271],[221,4,4,271,275],[223,2,2,275,277],[226,1,1,277,278],[228,4,3,278,281],[229,2,2,281,283],[230,2,2,283,285],[231,1,1,285,286]]],[7,3,2,286,288,[[234,2,1,286,287],[235,1,1,287,288]]],[8,76,68,288,356,[[236,1,1,288,289],[237,2,1,289,290],[238,9,7,290,297],[239,2,2,297,299],[243,3,3,299,302],[244,3,3,302,305],[245,2,2,305,307],[246,3,3,307,310],[247,1,1,310,311],[249,1,1,311,312],[250,7,7,312,319],[251,1,1,319,320],[252,8,6,320,326],[253,6,5,326,331],[254,1,1,331,332],[255,5,4,332,336],[256,4,3,336,339],[257,1,1,339,340],[259,4,4,340,344],[260,5,5,344,349],[261,2,2,349,351],[263,4,4,351,355],[265,1,1,355,356]]],[9,68,62,356,418,[[267,1,1,356,357],[268,1,1,357,358],[269,4,4,358,362],[273,6,6,362,368],[277,5,5,368,373],[278,5,5,373,378],[279,5,5,378,383],[280,13,10,383,393],[281,6,6,393,399],[282,1,1,399,400],[283,4,3,400,403],[284,2,2,403,405],[285,6,4,405,409],[286,2,2,409,411],[288,1,1,411,412],[289,1,1,412,413],[290,5,5,413,418]]],[10,125,100,418,518,[[291,3,3,418,421],[292,7,7,421,428],[293,4,3,428,431],[294,1,1,431,432],[295,1,1,432,433],[296,3,3,433,436],[298,6,4,436,440],[299,1,1,440,441],[300,6,4,441,445],[301,4,3,445,448],[302,10,8,448,456],[303,15,13,456,469],[304,7,5,469,474],[305,8,5,474,479],[306,12,8,479,487],[307,9,9,487,496],[308,6,5,496,501],[309,1,1,501,502],[310,6,5,502,507],[311,5,5,507,512],[312,10,6,512,518]]],[11,108,82,518,600,[[313,5,4,518,522],[314,1,1,522,523],[315,1,1,523,524],[316,2,2,524,526],[317,4,3,526,529],[318,4,4,529,533],[319,4,4,533,537],[320,4,3,537,540],[321,3,3,540,543],[322,4,3,543,546],[323,1,1,546,547],[324,2,1,547,548],[325,4,2,548,550],[326,7,4,550,554],[327,15,8,554,562],[328,2,1,562,563],[329,3,3,563,566],[330,5,5,566,571],[331,5,4,571,575],[332,9,8,575,583],[333,4,2,583,585],[334,7,6,585,591],[335,8,6,591,597],[336,3,2,597,599],[337,1,1,599,600]]],[12,30,26,600,626,[[341,1,1,600,601],[347,1,1,601,602],[348,2,2,602,604],[350,1,1,604,605],[352,1,1,605,606],[353,2,2,606,608],[354,4,4,608,612],[358,6,6,612,618],[359,1,1,618,619],[360,1,1,619,620],[362,1,1,620,621],[363,2,1,621,622],[364,2,2,622,624],[365,1,1,624,625],[366,4,1,625,626]]],[13,78,66,626,692,[[367,1,1,626,627],[372,2,2,627,629],[374,3,3,629,632],[375,8,5,632,637],[376,4,4,637,641],[377,3,2,641,643],[378,4,3,643,646],[379,2,1,646,647],[381,1,1,647,648],[382,1,1,648,649],[384,4,3,649,652],[385,4,3,652,655],[386,2,1,655,656],[389,2,2,656,658],[390,1,1,658,659],[391,1,1,659,660],[392,1,1,660,661],[393,1,1,661,662],[394,1,1,662,663],[395,3,3,663,666],[396,3,3,666,669],[397,2,2,669,671],[398,3,3,671,674],[399,4,2,674,676],[400,9,8,676,684],[401,4,4,684,688],[402,4,4,688,692]]],[14,14,14,692,706,[[403,1,1,692,693],[405,1,1,693,694],[409,2,2,694,696],[410,1,1,696,697],[411,2,2,697,699],[412,7,7,699,706]]],[15,29,27,706,733,[[413,3,3,706,709],[414,3,3,709,712],[417,6,5,712,717],[418,7,6,717,723],[420,4,4,723,727],[421,1,1,727,728],[423,2,2,728,730],[424,2,2,730,732],[425,1,1,732,733]]],[16,37,35,733,768,[[426,7,6,733,739],[427,7,6,739,745],[428,3,3,745,748],[429,3,3,748,751],[430,3,3,751,754],[431,3,3,754,757],[432,1,1,757,758],[433,3,3,758,761],[434,6,6,761,767],[435,1,1,767,768]]],[17,20,20,768,788,[[437,1,1,768,769],[439,2,2,769,771],[441,1,1,771,772],[444,1,1,772,773],[446,1,1,773,774],[450,2,2,774,776],[451,1,1,776,777],[454,1,1,777,778],[461,1,1,778,779],[464,1,1,779,780],[466,1,1,780,781],[467,2,2,781,783],[468,2,2,783,785],[469,1,1,785,786],[476,1,1,786,787],[477,1,1,787,788]]],[18,67,64,788,852,[[494,1,1,788,789],[496,1,1,789,790],[499,1,1,790,791],[510,2,2,791,793],[512,1,1,793,794],[513,1,1,794,795],[518,1,1,795,796],[522,2,2,796,798],[527,1,1,798,799],[529,1,1,799,800],[532,1,1,800,801],[533,4,3,801,804],[536,1,1,804,805],[541,2,2,805,807],[542,1,1,807,808],[556,1,1,808,809],[578,1,1,809,810],[580,2,1,810,811],[582,5,5,811,816],[583,2,2,816,818],[584,1,1,818,819],[586,1,1,819,820],[589,1,1,820,821],[596,24,23,821,844],[607,1,1,844,845],[614,1,1,845,846],[618,1,1,846,847],[622,1,1,847,848],[624,3,3,848,851],[625,1,1,851,852]]],[19,36,35,852,887,[[628,2,2,852,854],[631,2,2,854,856],[637,1,1,856,857],[638,1,1,857,858],[639,2,2,858,860],[640,2,2,860,862],[641,2,2,862,864],[642,2,2,864,866],[643,1,1,866,867],[644,1,1,867,868],[645,3,3,868,871],[649,2,2,871,873],[650,1,1,873,874],[651,1,1,874,875],[652,3,2,875,877],[653,2,2,877,879],[654,1,1,879,880],[656,3,3,880,883],[657,3,3,883,886],[658,1,1,886,887]]],[20,24,22,887,909,[[659,3,3,887,890],[663,4,3,890,893],[664,1,1,893,894],[665,2,2,894,896],[666,4,4,896,900],[667,2,2,900,902],[668,4,4,902,906],[670,4,3,906,909]]],[22,47,45,909,954,[[679,1,1,909,910],[680,2,2,910,912],[686,2,2,912,914],[687,1,1,914,915],[694,1,1,915,916],[702,1,1,916,917],[706,2,2,917,919],[707,3,3,919,922],[708,2,2,922,924],[709,1,1,924,925],[714,5,5,925,930],[715,5,4,930,934],[716,2,2,934,936],[717,5,5,936,941],[718,1,1,941,942],[719,1,1,942,943],[720,1,1,943,944],[722,1,1,944,945],[723,1,1,945,946],[728,1,1,946,947],[729,1,1,947,948],[733,1,1,948,949],[736,1,1,949,950],[737,2,2,950,952],[744,3,2,952,954]]],[23,204,183,954,1137,[[745,7,7,954,961],[746,3,3,961,964],[747,1,1,964,965],[749,3,2,965,967],[750,2,2,967,969],[751,8,7,969,976],[752,1,1,976,977],[753,2,1,977,978],[754,1,1,978,979],[755,7,6,979,985],[757,5,5,985,990],[758,3,2,990,992],[759,2,1,992,993],[760,2,2,993,995],[761,2,2,995,997],[762,5,4,997,1001],[763,3,3,1001,1004],[764,2,2,1004,1006],[765,2,2,1006,1008],[766,5,5,1008,1013],[767,12,9,1013,1022],[768,1,1,1022,1023],[769,5,5,1023,1028],[770,10,9,1028,1037],[771,5,5,1037,1042],[772,4,4,1042,1046],[773,6,6,1046,1052],[774,3,3,1052,1055],[775,2,2,1055,1057],[776,7,6,1057,1063],[777,4,4,1063,1067],[778,7,7,1067,1074],[779,4,4,1074,1078],[780,19,16,1078,1094],[781,3,3,1094,1097],[782,9,7,1097,1104],[783,2,2,1104,1106],[784,3,3,1106,1109],[786,7,5,1109,1114],[787,3,2,1114,1116],[788,9,9,1116,1125],[789,2,1,1125,1126],[790,2,2,1126,1128],[791,1,1,1128,1129],[792,1,1,1129,1130],[793,1,1,1130,1131],[794,1,1,1131,1132],[795,4,4,1132,1136],[796,1,1,1136,1137]]],[25,82,79,1137,1216,[[802,1,1,1137,1138],[803,3,2,1138,1140],[804,5,5,1140,1145],[807,2,2,1145,1147],[808,1,1,1147,1148],[810,1,1,1148,1149],[812,2,2,1149,1151],[813,10,8,1151,1159],[814,3,3,1159,1162],[815,3,3,1162,1165],[816,1,1,1165,1166],[817,2,2,1166,1168],[818,2,2,1168,1170],[819,1,1,1170,1171],[821,3,3,1171,1174],[822,3,3,1174,1177],[823,3,3,1177,1180],[824,1,1,1180,1181],[825,3,3,1181,1184],[826,2,2,1184,1186],[827,1,1,1186,1187],[828,1,1,1187,1188],[829,3,3,1188,1191],[830,2,2,1191,1193],[831,2,2,1193,1195],[832,1,1,1195,1196],[833,2,2,1196,1198],[834,6,6,1198,1204],[835,3,3,1204,1207],[836,2,2,1207,1209],[837,3,3,1209,1212],[838,2,2,1212,1214],[839,2,2,1214,1216]]],[26,21,15,1216,1231,[[850,3,3,1216,1219],[858,5,4,1219,1223],[859,11,6,1223,1229],[861,2,2,1229,1231]]],[27,4,4,1231,1235,[[862,1,1,1231,1232],[865,1,1,1232,1233],[871,1,1,1233,1234],[875,1,1,1234,1235]]],[28,2,2,1235,1237,[[876,1,1,1235,1236],[877,1,1,1236,1237]]],[29,10,10,1237,1247,[[879,1,1,1237,1238],[881,2,2,1238,1240],[882,1,1,1240,1241],[883,1,1,1241,1242],[884,1,1,1242,1243],[885,2,2,1243,1245],[886,2,2,1245,1247]]],[31,5,5,1247,1252,[[889,1,1,1247,1248],[891,3,3,1248,1251],[892,1,1,1251,1252]]],[32,3,3,1252,1255,[[893,1,1,1252,1253],[894,1,1,1253,1254],[896,1,1,1254,1255]]],[35,2,2,1255,1257,[[906,1,1,1255,1256],[907,1,1,1256,1257]]],[36,7,7,1257,1264,[[909,3,3,1257,1260],[910,4,4,1260,1264]]],[37,20,19,1264,1283,[[911,5,4,1264,1268],[914,2,2,1268,1270],[916,1,1,1270,1271],[917,5,5,1271,1276],[918,4,4,1276,1280],[919,1,1,1280,1281],[921,1,1,1281,1282],[922,1,1,1282,1283]]],[38,3,3,1283,1286,[[925,1,1,1283,1284],[926,1,1,1284,1285],[927,1,1,1285,1286]]]],[267,315,361,364,438,449,465,478,479,503,505,506,513,524,539,548,563,567,600,619,621,624,641,643,657,761,769,808,861,864,874,947,994,998,999,1091,1094,1097,1156,1166,1168,1173,1223,1227,1232,1268,1272,1297,1308,1326,1330,1331,1334,1342,1348,1385,1450,1452,1550,1568,1569,1611,1616,1629,1631,1641,1643,1645,1651,1720,1722,1723,1741,1746,1747,1748,1762,1763,1840,1851,1901,1951,1963,1979,2010,2013,2015,2016,2017,2018,2021,2022,2025,2032,2033,2034,2035,2052,2122,2151,2152,2180,2181,2185,2191,2337,2466,2477,2490,2497,2523,2524,2532,2535,2808,2832,2922,2953,2959,2984,3237,3439,4047,4048,4065,4101,4128,4147,4184,4225,4243,4264,4330,4382,4383,4395,4410,4413,4419,4421,4432,4489,4649,4650,4680,4687,4738,4885,4893,4906,4909,4910,4914,4915,4917,4924,4926,4945,4964,5001,5006,5013,5014,5016,5017,5025,5034,5036,5040,5058,5075,5081,5092,5162,5167,5188,5190,5226,5268,5272,5275,5283,5286,5321,5328,5329,5334,5361,5365,5368,5369,5372,5373,5374,5375,5383,5402,5403,5404,5405,5406,5410,5421,5426,5484,5487,5490,5494,5496,5504,5509,5514,5519,5526,5530,5543,5547,5588,5593,5611,5625,5669,5680,5688,5698,5708,5709,5722,5729,5740,5752,5756,5758,5802,5803,5804,5805,5864,5869,5883,5889,5890,5902,5920,5938,5959,6010,6029,6036,6037,6061,6122,6193,6194,6197,6376,6426,6450,6456,6458,6459,6474,6475,6502,6505,6549,6587,6588,6683,6757,6784,6839,6840,6857,6866,6896,6901,6965,7000,7003,7021,7043,7048,7061,7063,7113,7190,7197,7235,7263,7277,7283,7287,7293,7294,7295,7297,7298,7313,7375,7379,7390,7401,7412,7418,7420,7434,7449,7450,7451,7476,7520,7561,7570,7571,7573,7583,7584,7586,7613,7629,7641,7645,7647,7648,7649,7684,7696,7699,7700,7702,7713,7732,7751,7753,7769,7774,7780,7784,7802,7845,7846,7848,7855,7870,7873,7885,7897,7898,7921,7924,7952,7960,7962,7963,8002,8026,8055,8089,8092,8094,8098,8184,8187,8197,8201,8205,8208,8270,8277,8278,8284,8286,8292,8295,8298,8300,8307,8337,8338,8339,8350,8352,8359,8368,8369,8371,8373,8374,8375,8376,8377,8378,8392,8395,8400,8417,8424,8425,8449,8453,8455,8468,8483,8491,8522,8540,8553,8554,8571,8575,8603,8654,8695,8696,8703,8705,8711,8724,8731,8744,8774,8784,8793,8797,8800,8808,8812,8826,8827,8828,8871,8885,8907,8908,8934,9005,9011,9041,9044,9066,9082,9085,9086,9104,9118,9135,9149,9157,9158,9160,9166,9167,9173,9175,9181,9185,9186,9188,9189,9193,9195,9201,9202,9204,9210,9216,9217,9218,9223,9231,9236,9237,9247,9254,9256,9272,9278,9280,9284,9288,9290,9295,9297,9303,9310,9317,9318,9319,9322,9325,9330,9332,9333,9334,9341,9342,9362,9365,9372,9377,9396,9412,9417,9420,9432,9443,9452,9455,9468,9478,9479,9485,9493,9499,9518,9519,9525,9540,9549,9550,9551,9573,9588,9644,9647,9660,9661,9665,9685,9686,9692,9704,9708,9709,9723,9726,9729,9740,9750,9761,9782,9792,9803,9810,9827,9834,9869,9879,9883,9911,9914,9921,9924,9931,9936,9937,9940,9946,9951,9956,9961,9982,9992,9994,9995,10044,10051,10052,10060,10061,10065,10067,10077,10082,10102,10107,10111,10113,10114,10115,10117,10118,10136,10144,10154,10156,10158,10161,10163,10165,10167,10168,10181,10182,10189,10193,10204,10207,10252,10407,10672,10676,10683,10764,10806,10835,10857,10866,10869,10878,10886,10938,10940,10941,10942,10946,10953,10972,11010,11051,11109,11110,11133,11164,11193,11203,11292,11299,11359,11360,11361,11366,11369,11370,11388,11393,11401,11402,11404,11410,11416,11418,11444,11449,11452,11475,11498,11520,11546,11554,11560,11579,11582,11587,11621,11660,11675,11682,11730,11754,11762,11790,11806,11821,11827,11831,11832,11839,11859,11870,11876,11883,11907,11926,11927,11949,11952,11954,11959,11960,11961,11963,11964,11972,11988,11992,11993,12001,12009,12014,12015,12017,12101,12174,12184,12218,12240,12241,12256,12257,12261,12264,12265,12266,12268,12297,12300,12304,12325,12326,12327,12388,12390,12391,12394,12395,12405,12406,12407,12408,12409,12420,12497,12502,12505,12506,12519,12611,12612,12647,12671,12688,12714,12715,12719,12720,12721,12723,12725,12728,12732,12739,12746,12747,12748,12751,12762,12765,12771,12774,12784,12787,12793,12794,12796,12803,12815,12822,12831,12834,12835,12854,12860,12864,12865,12866,12868,12904,12932,12942,12981,13065,13110,13206,13214,13241,13325,13481,13554,13628,13632,13639,13651,13663,13718,13900,13929,14107,14171,14205,14370,14372,14430,14441,14550,14598,14601,14685,14714,14753,14759,14760,14765,14802,14853,14855,14863,15194,15516,15569,15614,15625,15633,15634,15648,15663,15675,15719,15758,15808,15907,15914,15915,15923,15926,15940,15941,15947,15955,15963,15972,15979,15987,15999,16003,16005,16012,16028,16037,16045,16058,16059,16067,16145,16225,16280,16325,16366,16369,16370,16379,16406,16423,16494,16510,16675,16701,16725,16744,16752,16760,16787,16795,16808,16830,16860,16882,16905,16909,16914,17027,17032,17052,17105,17115,17124,17147,17163,17180,17236,17243,17244,17252,17257,17259,17285,17316,17323,17325,17399,17400,17404,17428,17437,17450,17459,17461,17462,17463,17491,17492,17505,17506,17507,17513,17533,17534,17536,17664,17686,17688,17817,17827,17837,17982,18098,18177,18178,18204,18211,18214,18229,18238,18252,18335,18342,18343,18351,18352,18356,18358,18369,18374,18394,18397,18414,18416,18417,18418,18420,18428,18479,18496,18559,18584,18666,18689,18751,18799,18813,18821,18924,18927,18947,18948,18950,18955,18957,18958,18959,18966,18969,18996,19014,19072,19086,19099,19108,19120,19121,19123,19127,19141,19142,19146,19162,19195,19202,19227,19228,19229,19232,19234,19236,19268,19269,19274,19276,19278,19294,19310,19331,19337,19346,19372,19377,19385,19386,19389,19402,19409,19410,19422,19423,19430,19441,19451,19455,19456,19458,19459,19483,19493,19500,19502,19506,19512,19513,19514,19520,19522,19528,19535,19537,19542,19547,19564,19573,19574,19577,19579,19582,19584,19587,19592,19593,19597,19608,19610,19612,19614,19624,19625,19627,19630,19636,19645,19654,19655,19658,19665,19668,19669,19671,19701,19714,19732,19737,19739,19748,19757,19758,19776,19789,19794,19798,19802,19805,19806,19807,19809,19813,19819,19824,19835,19836,19837,19843,19844,19846,19848,19850,19852,19853,19855,19858,19859,19860,19862,19866,19869,19870,19874,19876,19880,19891,19896,19899,19900,19909,19916,19919,19922,19938,19939,19942,19944,19957,19978,19979,19980,19982,19990,19998,20005,20011,20014,20026,20027,20030,20034,20036,20038,20039,20041,20046,20058,20074,20107,20161,20167,20271,20272,20273,20276,20310,20467,20498,20499,20506,20508,20512,20518,20519,20564,20566,20578,20633,20669,20680,20681,20688,20697,20701,20703,20705,20706,20708,20709,20710,20714,20733,20740,20743,20755,20763,20797,20826,20836,20850,20897,20940,20942,20945,20952,20962,20977,20993,20999,21008,21057,21071,21076,21084,21086,21101,21122,21158,21168,21177,21184,21200,21205,21224,21231,21249,21265,21281,21287,21303,21310,21311,21312,21314,21320,21322,21345,21357,21360,21363,21375,21401,21412,21426,21435,21742,21751,21757,21990,22000,22011,22013,22016,22021,22024,22026,22027,22030,22085,22090,22095,22134,22229,22284,22292,22322,22365,22396,22402,22411,22424,22463,22474,22480,22492,22493,22532,22559,22561,22564,22570,22580,22602,22622,22788,22810,22841,22843,22852,22856,22860,22865,22875,22879,22884,22885,22891,22928,22930,22956,22963,22966,22969,22970,22974,22977,22985,22992,22994,23000,23039,23046,23090,23120,23133]]],["+",[118,116,[[0,4,4,0,4,[[11,1,1,0,1],[18,1,1,1,2],[19,1,1,2,3],[42,1,1,3,4]]],[1,5,5,4,9,[[53,1,1,4,5],[57,1,1,5,6],[58,1,1,6,7],[65,1,1,7,8],[72,1,1,8,9]]],[3,2,2,9,11,[[139,1,1,9,10],[141,1,1,10,11]]],[4,9,8,11,19,[[154,1,1,11,12],[156,1,1,12,13],[164,1,1,13,14],[169,2,2,14,16],[174,3,2,16,18],[175,1,1,18,19]]],[5,4,4,19,23,[[190,1,1,19,20],[197,1,1,20,21],[208,2,2,21,23]]],[8,5,5,23,28,[[244,1,1,23,24],[253,1,1,24,25],[255,1,1,25,26],[260,1,1,26,27],[263,1,1,27,28]]],[9,5,5,28,33,[[273,1,1,28,29],[279,1,1,29,30],[284,2,2,30,32],[285,1,1,32,33]]],[10,15,15,33,48,[[294,1,1,33,34],[302,3,3,34,37],[304,2,2,37,39],[305,3,3,39,42],[306,4,4,42,46],[312,2,2,46,48]]],[11,28,28,48,76,[[313,1,1,48,49],[316,1,1,49,50],[320,1,1,50,51],[322,2,2,51,53],[324,1,1,53,54],[325,2,2,54,56],[326,3,3,56,59],[327,7,7,59,66],[328,1,1,66,67],[332,4,4,67,71],[333,2,2,71,73],[334,1,1,73,74],[335,1,1,74,75],[336,1,1,75,76]]],[12,2,2,76,78,[[353,1,1,76,77],[364,1,1,77,78]]],[13,3,3,78,81,[[375,1,1,78,79],[376,1,1,79,80],[385,1,1,80,81]]],[14,1,1,81,82,[[412,1,1,81,82]]],[15,3,3,82,85,[[414,1,1,82,83],[417,2,2,83,85]]],[16,5,5,85,90,[[427,1,1,85,86],[431,3,3,86,89],[435,1,1,89,90]]],[17,1,1,90,91,[[439,1,1,90,91]]],[18,6,6,91,97,[[522,1,1,91,92],[542,1,1,92,93],[556,1,1,93,94],[582,1,1,94,95],[596,1,1,95,96],[614,1,1,96,97]]],[19,5,5,97,102,[[640,1,1,97,98],[643,1,1,98,99],[654,1,1,99,100],[656,1,1,100,101],[657,1,1,101,102]]],[22,4,4,102,106,[[717,3,3,102,105],[728,1,1,105,106]]],[23,6,6,106,112,[[751,1,1,106,107],[758,1,1,107,108],[776,1,1,108,109],[782,1,1,109,110],[786,1,1,110,111],[788,1,1,111,112]]],[25,3,2,112,114,[[803,2,1,112,113],[813,1,1,113,114]]],[29,2,2,114,116,[[881,1,1,114,115],[884,1,1,115,116]]]],[315,465,513,1308,1611,1722,1746,1951,2151,4419,4489,4945,5025,5272,5365,5372,5494,5496,5504,5920,6122,6450,6458,7412,7702,7732,7897,7962,8201,8339,8483,8491,8554,8871,9157,9160,9167,9237,9247,9256,9272,9280,9288,9297,9303,9310,9519,9525,9551,9644,9750,9803,9827,9869,9879,9883,9911,9914,9924,9931,9936,9940,9946,9951,9956,9961,9982,10111,10113,10115,10118,10136,10144,10154,10193,10207,10857,11133,11366,11404,11582,12264,12327,12390,12391,12739,12794,12796,12803,12868,12932,14601,14863,15194,15633,16059,16225,16752,16860,17180,17236,17259,18414,18416,18418,18666,19141,19294,19748,19909,19979,20030,20498,20705,22402,22463]]],["acts",[50,49,[[10,14,13,0,13,[[300,1,1,0,1],[301,2,1,1,2],[304,2,2,2,4],[305,3,3,4,7],[306,4,4,7,11],[312,2,2,11,13]]],[11,22,22,13,35,[[313,1,1,13,14],[320,1,1,14,15],[322,1,1,15,16],[324,1,1,16,17],[325,2,2,17,19],[326,3,3,19,22],[327,7,7,22,29],[328,1,1,29,30],[332,1,1,30,31],[333,2,2,31,33],[335,1,1,33,34],[336,1,1,34,35]]],[12,1,1,35,36,[[366,1,1,35,36]]],[13,13,13,36,49,[[375,2,2,36,38],[378,1,1,38,39],[379,1,1,39,40],[382,1,1,40,41],[386,1,1,41,42],[391,1,1,42,43],[392,1,1,43,44],[393,1,1,44,45],[394,1,1,45,46],[398,1,1,46,47],[401,1,1,47,48],[402,1,1,48,49]]]],[9085,9149,9237,9247,9256,9272,9280,9288,9297,9303,9310,9519,9525,9551,9750,9827,9869,9879,9883,9911,9914,9924,9931,9936,9940,9946,9951,9956,9961,9982,10118,10136,10144,10193,10207,11193,11369,11393,11452,11475,11520,11621,11730,11754,11762,11790,11907,11992,12001]]],["advice",[2,2,[[6,1,1,0,1,[[230,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]]],[7061,8554]]],["affairs",[2,2,[[12,1,1,0,1,[[363,1,1,0,1]]],[18,1,1,1,2,[[589,1,1,1,2]]]],[11109,15808]]],["answer",[3,3,[[9,1,1,0,1,[[290,1,1,0,1]]],[13,1,1,1,2,[[376,1,1,1,2]]],[19,1,1,2,3,[[651,1,1,2,3]]]],[8705,11401,17105]]],["answered",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7648]]],["any",[2,2,[[4,2,2,0,2,[[165,1,1,0,1],[171,1,1,1,2]]]],[5283,5426]]],["book",[7,5,[[12,3,1,0,1,[[366,3,1,0,1]]],[13,4,4,1,5,[[375,1,1,1,2],[378,1,1,2,3],[386,1,1,3,4],[399,1,1,4,5]]]],[11193,11393,11452,11621,11926]]],["business",[8,7,[[4,1,1,0,1,[[176,1,1,0,1]]],[5,2,2,1,3,[[188,2,2,1,3]]],[6,2,2,3,5,[[228,2,2,3,5]]],[8,3,2,5,7,[[256,3,2,5,7]]]],[5530,5883,5889,7000,7021,7774,7780]]],["care",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7420]]],["case",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5410]]],["cause",[6,6,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[5,2,2,2,4,[[191,1,1,2,3],[206,1,1,3,4]]],[8,1,1,4,5,[[252,1,1,4,5]]],[10,1,1,5,6,[[301,1,1,5,6]]]],[2122,4909,5938,6376,7647,9135]]],["causes",[2,2,[[1,2,2,0,2,[[67,2,2,0,2]]]],[2018,2025]]],["chronicles",[2,2,[[15,1,1,0,1,[[424,1,1,0,1]]],[16,1,1,1,2,[[427,1,1,1,2]]]],[12647,12747]]],["commandment",[15,15,[[5,1,1,0,1,[[194,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]],[9,1,1,2,3,[[278,1,1,2,3]]],[12,1,1,3,4,[[365,1,1,3,4]]],[13,1,1,4,5,[[397,1,1,4,5]]],[16,8,8,5,13,[[426,2,2,5,7],[427,1,1,7,8],[428,1,1,8,9],[429,1,1,9,10],[433,2,2,10,12],[434,1,1,12,13]]],[26,2,2,13,15,[[858,2,2,13,15]]]],[6010,7573,8295,11164,11859,12714,12721,12732,12762,12765,12831,12834,12835,22011,22013]]],["commandments",[5,5,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[162,1,1,2,3]]],[8,1,1,3,4,[[250,1,1,3,4]]],[18,1,1,4,5,[[580,1,1,4,5]]]],[2524,5017,5190,7571,15569]]],["communication",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8098]]],["conferred",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8724]]],["counsel",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4680]]],["dealings",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7263]]],["decree",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11832]]],["deed",[3,3,[[9,1,1,0,1,[[278,1,1,0,1]]],[16,2,2,1,3,[[426,2,2,1,3]]]],[8300,12719,12720]]],["deeds",[2,2,[[13,1,1,0,1,[[401,1,1,0,1]]],[23,1,1,1,2,[[749,1,1,1,2]]]],[11993,19086]]],["disease",[1,1,[[18,1,1,0,1,[[518,1,1,0,1]]]],[14550]]],["done",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7313]]],["due",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12611]]],["duty",[2,2,[[13,1,1,0,1,[[374,1,1,0,1]]],[14,1,1,1,2,[[405,1,1,1,2]]]],[11360,12101]]],["effect",[1,1,[[25,1,1,0,1,[[813,1,1,0,1]]]],[20703]]],["errand",[3,3,[[0,1,1,0,1,[[23,1,1,0,1]]],[6,1,1,1,2,[[213,1,1,1,2]]],[11,1,1,2,3,[[321,1,1,2,3]]]],[624,6587,9761]]],["hurt",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7751]]],["language",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14171]]],["manner",[15,14,[[0,3,3,0,3,[[17,1,1,0,1],[31,1,1,1,2],[38,1,1,2,3]]],[1,1,1,3,4,[[71,1,1,3,4]]],[4,1,1,4,5,[[167,1,1,4,5]]],[8,4,3,5,8,[[252,3,2,5,7],[253,1,1,7,8]]],[9,3,3,8,11,[[280,1,1,8,9],[281,1,1,9,10],[283,1,1,10,11]]],[15,2,2,11,13,[[418,2,2,11,13]]],[16,1,1,13,14,[[426,1,1,13,14]]]],[449,947,1168,2122,5321,7645,7648,7700,8359,8395,8455,12405,12406,12715]]],["matter",[44,42,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,4,3,1,4,[[67,4,3,1,4]]],[3,4,3,4,7,[[132,1,1,4,5],[141,2,1,5,6],[147,1,1,6,7]]],[4,3,3,7,10,[[155,1,1,7,8],[171,1,1,8,9],[174,1,1,9,10]]],[7,1,1,10,11,[[234,1,1,10,11]]],[8,4,4,11,15,[[245,1,1,11,12],[255,2,2,12,14],[265,1,1,14,15]]],[9,3,3,15,18,[[267,1,1,15,16],[285,1,1,16,17],[286,1,1,17,18]]],[10,2,2,18,20,[[298,1,1,18,19],[305,1,1,19,20]]],[12,2,2,20,22,[[363,1,1,20,21],[364,1,1,21,22]]],[13,2,2,22,24,[[374,1,1,22,23],[390,1,1,23,24]]],[14,4,4,24,28,[[412,4,4,24,28]]],[16,1,1,28,29,[[427,1,1,28,29]]],[17,1,1,29,30,[[454,1,1,29,30]]],[18,2,2,30,32,[[522,1,1,30,31],[541,1,1,31,32]]],[19,4,4,32,36,[[638,1,1,32,33],[644,1,1,33,34],[645,1,1,34,35],[652,1,1,35,36]]],[20,2,2,36,38,[[668,1,1,36,37],[670,1,1,37,38]]],[23,1,1,38,39,[[782,1,1,38,39]]],[25,1,1,39,40,[[810,1,1,39,40]]],[26,2,2,40,42,[[850,1,1,40,41],[858,1,1,41,42]]]],[600,2015,2021,2025,4243,4489,4680,5001,5421,5496,7190,7434,7753,7769,8002,8026,8553,8575,9044,9254,11109,11110,11361,11682,12256,12261,12266,12268,12747,13325,14598,14855,16701,16882,16914,17115,17513,17536,19922,20633,21751,22011]]],["matters",[15,14,[[1,1,1,0,1,[[73,1,1,0,1]]],[4,1,1,1,2,[[169,1,1,1,2]]],[8,1,1,2,3,[[251,1,1,2,3]]],[9,3,3,3,6,[[277,1,1,3,4],[281,1,1,4,5],[285,1,1,5,6]]],[13,2,1,6,7,[[385,2,1,6,7]]],[15,1,1,7,8,[[423,1,1,7,8]]],[16,3,3,8,11,[[428,1,1,8,9],[434,2,2,9,11]]],[17,1,1,11,12,[[468,1,1,11,12]]],[18,1,1,12,13,[[512,1,1,12,13]]],[26,1,1,13,14,[[850,1,1,13,14]]]],[2191,5372,7613,8278,8392,8540,11587,12612,12751,12865,12866,13663,14430,21757]]],["message",[3,3,[[6,1,1,0,1,[[213,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[19,1,1,2,3,[[653,1,1,2,3]]]],[6588,9420,17147]]],["nor",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13900]]],["of",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11926]]],["oracle",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8449]]],["ought",[2,2,[[1,1,1,0,1,[[54,1,1,0,1]]],[5,1,1,1,2,[[207,1,1,1,2]]]],[1643,6426]]],["parts",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8934]]],["portion",[4,4,[[13,1,1,0,1,[[397,1,1,0,1]]],[15,1,1,1,2,[[424,1,1,1,2]]],[17,1,1,2,3,[[461,1,1,2,3]]],[23,1,1,3,4,[[796,1,1,3,4]]]],[11870,12671,13481,20310]]],["promise",[6,5,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[367,1,1,1,2]]],[15,3,2,2,4,[[417,3,2,2,4]]],[18,1,1,4,5,[[582,1,1,4,5]]]],[9041,11203,12394,12395,15648]]],["provision",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21742]]],["purpose",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12497]]],["questions",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9082,11366]]],["rate",[4,4,[[10,1,1,0,1,[[300,1,1,0,1]]],[11,1,1,1,2,[[337,1,1,1,2]]],[13,2,2,2,4,[[374,1,1,2,3],[375,1,1,3,4]]]],[9104,10252,11359,11388]]],["reason",[1,1,[[10,1,1,0,1,[[299,1,1,0,1]]]],[9066]]],["report",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9085,11369]]],["request",[2,2,[[9,2,2,0,2,[[280,2,2,0,2]]]],[8371,8378]]],["said",[7,7,[[0,1,1,0,1,[[46,1,1,0,1]]],[8,1,1,1,2,[[244,1,1,1,2]]],[9,1,1,2,3,[[279,1,1,2,3]]],[10,2,2,3,5,[[303,1,1,3,4],[307,1,1,4,5]]],[16,2,2,5,7,[[430,2,2,5,7]]]],[1450,7401,8352,9201,9330,12784,12787]]],["sake",[1,1,[[0,1,1,0,1,[[19,1,1,0,1]]]],[506]]],["say",[1,1,[[10,1,1,0,1,[[292,1,1,0,1]]]],[8784]]],["saying",[20,20,[[0,1,1,0,1,[[36,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[9,3,3,3,6,[[283,2,2,3,5],[290,1,1,5,6]]],[10,7,7,6,13,[[292,1,1,6,7],[302,1,1,7,8],[303,2,2,8,10],[305,1,1,10,11],[307,1,1,11,12],[310,1,1,12,13]]],[11,4,4,13,17,[[314,1,1,13,14],[317,1,1,14,15],[320,1,1,15,16],[322,1,1,16,17]]],[12,1,1,17,18,[[358,1,1,17,18]]],[16,1,1,18,19,[[426,1,1,18,19]]],[31,1,1,19,20,[[892,1,1,19,20]]]],[1094,4915,7684,8453,8455,8711,8808,9166,9188,9216,9278,9332,9412,9573,9661,9729,9810,10953,12723,22570]]],["sayings",[5,5,[[3,1,1,0,1,[[130,1,1,0,1]]],[6,1,1,1,2,[[223,1,1,1,2]]],[8,1,1,2,3,[[260,1,1,2,3]]],[13,2,2,3,5,[[379,1,1,3,4],[399,1,1,4,5]]]],[4147,6901,7873,11475,11927]]],["sentence",[3,3,[[4,3,3,0,3,[[169,3,3,0,3]]]],[5373,5374,5375]]],["some",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5526]]],["sort",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12405]]],["spakest",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20107]]],["speech",[7,7,[[0,1,1,0,1,[[10,1,1,0,1]]],[4,2,2,1,3,[[174,2,2,1,3]]],[9,2,2,3,5,[[280,1,1,3,4],[285,1,1,4,5]]],[10,1,1,5,6,[[293,1,1,5,6]]],[23,1,1,6,7,[[775,1,1,6,7]]]],[267,5484,5487,8376,8522,8826,19714]]],["spoken",[2,2,[[10,1,1,0,1,[[308,1,1,0,1]]],[17,1,1,1,2,[[467,1,1,1,2]]]],[9365,13632]]],["talk",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[19,1,1,1,2,[[641,1,1,1,2]]]],[13206,16795]]],["task",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1651]]],["tasks",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1645]]],["thing",[178,170,[[0,15,15,0,15,[[17,1,1,0,1],[18,2,2,1,3],[19,1,1,3,4],[20,2,2,4,6],[21,1,1,6,7],[23,1,1,7,8],[29,1,1,8,9],[33,2,2,9,11],[40,3,3,11,14],[43,1,1,14,15]]],[1,16,16,15,31,[[50,1,1,15,16],[51,2,2,16,18],[58,2,2,18,20],[61,1,1,20,21],[65,2,2,21,23],[67,5,5,23,28],[78,1,1,28,29],[82,1,1,29,30],[84,1,1,30,31]]],[2,6,6,31,37,[[93,1,1,31,32],[94,1,1,32,33],[97,1,1,33,34],[98,1,1,34,35],[106,1,1,35,36],[112,1,1,36,37]]],[3,6,6,37,43,[[134,1,1,37,38],[136,1,1,38,39],[146,1,1,39,40],[147,1,1,40,41],[148,1,1,41,42],[152,1,1,42,43]]],[4,18,16,43,59,[[153,2,2,43,45],[156,1,1,45,46],[165,1,1,46,47],[167,2,2,47,49],[169,2,2,49,51],[170,2,1,51,52],[174,1,1,52,53],[175,3,3,53,56],[176,2,2,56,58],[184,2,1,58,59]]],[5,6,5,59,64,[[195,1,1,59,60],[200,1,1,60,61],[207,1,1,61,62],[208,1,1,62,63],[209,2,1,63,64]]],[6,9,8,64,72,[[216,2,1,64,65],[221,1,1,65,66],[228,2,2,66,68],[229,2,2,68,70],[230,1,1,70,71],[231,1,1,71,72]]],[7,1,1,72,73,[[234,1,1,72,73]]],[8,13,12,73,85,[[238,3,2,73,75],[243,1,1,75,76],[247,1,1,76,77],[249,1,1,77,78],[253,1,1,78,79],[255,1,1,79,80],[257,1,1,80,81],[259,1,1,81,82],[261,1,1,82,83],[263,2,2,83,85]]],[9,20,20,85,105,[[268,1,1,85,86],[269,1,1,86,87],[277,3,3,87,90],[278,3,3,90,93],[279,2,2,93,95],[280,5,5,95,100],[281,3,3,100,103],[283,1,1,103,104],[290,1,1,104,105]]],[10,13,13,105,118,[[291,1,1,105,106],[293,2,2,106,108],[300,1,1,108,109],[301,1,1,109,110],[302,2,2,110,112],[303,2,2,112,114],[304,2,2,114,116],[310,2,2,116,118]]],[11,10,9,118,127,[[317,3,2,118,120],[318,1,1,120,121],[319,2,2,121,123],[320,1,1,123,124],[323,1,1,124,125],[329,1,1,125,126],[332,1,1,126,127]]],[12,4,4,127,131,[[350,1,1,127,128],[354,1,1,128,129],[358,2,2,129,131]]],[13,5,5,131,136,[[377,1,1,131,132],[389,2,2,132,134],[395,1,1,134,135],[396,1,1,135,136]]],[14,2,2,136,138,[[411,1,1,136,137],[412,1,1,137,138]]],[15,2,2,138,140,[[414,1,1,138,139],[425,1,1,139,140]]],[16,4,4,140,144,[[427,2,2,140,142],[430,1,1,142,143],[433,1,1,143,144]]],[17,2,2,144,146,[[439,1,1,144,145],[450,1,1,145,146]]],[18,2,2,146,148,[[578,1,1,146,147],[618,1,1,147,148]]],[19,1,1,148,149,[[652,1,1,148,149]]],[20,6,6,149,155,[[659,1,1,149,150],[663,1,1,150,151],[665,1,1,151,152],[666,3,3,152,155]]],[22,1,1,155,156,[[716,1,1,155,156]]],[23,12,12,156,168,[[751,1,1,156,157],[766,1,1,157,158],[776,1,1,158,159],[777,1,1,159,160],[782,2,2,160,162],[784,2,2,162,164],[786,2,2,164,166],[788,2,2,166,168]]],[25,1,1,168,169,[[815,1,1,168,169]]],[26,3,1,169,170,[[859,3,1,169,170]]]],[438,478,479,505,524,539,563,641,861,994,999,1223,1227,1232,1331,1550,1568,1569,1747,1748,1840,1963,1979,2010,2013,2016,2017,2022,2337,2490,2535,2808,2832,2922,2959,3237,3439,4264,4330,4649,4687,4738,4885,4906,4924,5036,5286,5329,5334,5368,5369,5406,5490,5509,5514,5519,5543,5547,5805,6061,6193,6426,6459,6474,6683,6866,7000,7003,7043,7048,7063,7113,7190,7287,7293,7375,7476,7520,7696,7732,7802,7845,7921,7952,7960,8055,8094,8270,8284,8286,8292,8298,8307,8337,8350,8369,8371,8374,8376,8377,8400,8424,8425,8468,8695,8744,8826,8827,9082,9118,9175,9181,9217,9218,9223,9231,9417,9432,9660,9665,9685,9709,9726,9740,9834,9995,10107,10764,10886,10941,10942,11418,11660,11675,11827,11831,12240,12265,12326,12688,12728,12746,12793,12822,12942,13214,15516,16280,17115,17325,17399,17437,17459,17461,17463,18397,19142,19458,19758,19789,19900,19909,19944,19957,19978,19979,20014,20027,20740,22016]]],["things",[50,49,[[0,10,10,0,10,[[14,1,1,0,1],[19,1,1,1,2],[21,2,2,2,4],[23,2,2,4,6],[28,1,1,6,7],[38,1,1,7,8],[39,1,1,8,9],[47,1,1,9,10]]],[2,1,1,10,11,[[97,1,1,10,11]]],[4,4,4,11,15,[[153,1,1,11,12],[156,2,2,12,14],[182,1,1,14,15]]],[5,4,3,15,18,[[209,3,2,15,17],[210,1,1,17,18]]],[7,1,1,18,19,[[235,1,1,18,19]]],[8,4,4,19,23,[[237,1,1,19,20],[238,1,1,20,21],[254,1,1,21,22],[260,1,1,22,23]]],[9,2,2,23,25,[[277,1,1,23,24],[279,1,1,24,25]]],[10,3,3,25,28,[[307,1,1,25,26],[308,1,1,26,27],[311,1,1,27,28]]],[11,3,3,28,31,[[329,2,2,28,30],[335,1,1,30,31]]],[12,1,1,31,32,[[341,1,1,31,32]]],[13,3,3,32,35,[[378,1,1,32,33],[385,1,1,33,34],[398,1,1,34,35]]],[14,1,1,35,36,[[409,1,1,35,36]]],[15,1,1,36,37,[[418,1,1,36,37]]],[16,3,3,37,40,[[427,1,1,37,38],[428,1,1,38,39],[434,1,1,39,40]]],[20,2,2,40,42,[[659,1,1,40,41],[664,1,1,41,42]]],[22,1,1,42,43,[[720,1,1,42,43]]],[23,3,3,43,46,[[764,1,1,43,44],[770,1,1,44,45],[786,1,1,45,46]]],[25,2,2,46,48,[[812,1,1,46,47],[839,1,1,47,48]]],[37,1,1,48,49,[[918,1,1,48,49]]]],[361,503,548,567,619,657,808,1156,1173,1452,2953,4910,5013,5034,5709,6474,6475,6505,7197,7263,7293,7713,7898,8277,8338,9334,9377,9452,9992,9994,10182,10407,11449,11579,11876,12174,12409,12725,12748,12854,17323,17428,18496,19423,19582,19980,20680,21435,22992]]],["thought",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5328]]],["tidings",[4,4,[[1,1,1,0,1,[[82,1,1,0,1]]],[8,3,3,1,4,[[246,3,3,1,4]]]],[2477,7449,7450,7451]]],["what",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12218]]],["wherewith",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15940]]],["whit",[1,1,[[8,1,1,0,1,[[238,1,1,0,1]]]],[7294]]],["word",[427,418,[[0,6,6,0,6,[[14,2,2,0,2],[29,1,1,2,3],[36,1,1,3,4],[43,2,2,4,6]]],[1,8,8,6,14,[[57,3,3,6,9],[58,2,2,9,11],[61,1,1,11,12],[63,1,1,12,13],[81,1,1,13,14]]],[2,1,1,14,15,[[99,1,1,14,15]]],[3,11,11,15,26,[[127,1,1,15,16],[129,1,1,16,17],[130,1,1,17,18],[131,1,1,18,19],[138,4,4,19,23],[139,2,2,23,25],[146,1,1,25,26]]],[4,8,8,26,34,[[153,2,2,26,28],[156,1,1,28,29],[157,1,1,29,30],[161,1,1,30,31],[170,2,2,31,33],[182,1,1,33,34]]],[5,6,6,34,40,[[187,1,1,34,35],[192,1,1,35,36],[194,2,2,36,38],[200,2,2,38,40]]],[8,9,9,40,49,[[236,1,1,40,41],[238,3,3,41,44],[239,1,1,44,45],[244,1,1,45,46],[250,3,3,46,49]]],[9,9,9,49,58,[[269,1,1,49,50],[273,3,3,50,53],[280,2,2,53,55],[281,1,1,55,56],[290,2,2,56,58]]],[10,48,46,58,104,[[292,5,5,58,63],[296,2,2,63,65],[298,3,3,65,68],[302,3,2,68,70],[303,9,9,70,79],[304,1,1,79,80],[306,4,4,80,84],[307,6,6,84,90],[308,4,4,90,94],[309,1,1,94,95],[310,2,2,95,97],[311,3,3,97,100],[312,5,4,100,104]]],[11,20,20,104,124,[[313,2,2,104,106],[315,1,1,106,107],[316,1,1,107,108],[318,1,1,108,109],[319,2,2,109,111],[321,2,2,111,113],[326,1,1,113,114],[327,1,1,114,115],[330,2,2,115,117],[331,1,1,117,118],[332,3,3,118,121],[334,1,1,121,122],[335,1,1,122,123],[336,1,1,123,124]]],[12,11,11,124,135,[[347,1,1,124,125],[348,2,2,125,127],[352,1,1,127,128],[353,1,1,128,129],[354,2,2,129,131],[358,3,3,131,134],[359,1,1,134,135]]],[13,15,15,135,150,[[372,2,2,135,137],[376,1,1,137,138],[377,1,1,138,139],[378,1,1,139,140],[384,3,3,140,143],[396,1,1,143,144],[400,3,3,144,147],[401,1,1,147,148],[402,2,2,148,150]]],[14,2,2,150,152,[[403,1,1,150,151],[412,1,1,151,152]]],[15,1,1,152,153,[[413,1,1,152,153]]],[16,2,2,153,155,[[426,1,1,153,154],[432,1,1,154,155]]],[17,1,1,155,156,[[437,1,1,155,156]]],[18,36,35,156,191,[[494,1,1,156,157],[510,2,2,157,159],[533,3,2,159,161],[580,1,1,161,162],[582,3,3,162,165],[583,1,1,165,166],[584,1,1,166,167],[596,19,19,167,186],[607,1,1,186,187],[624,3,3,187,190],[625,1,1,190,191]]],[19,5,5,191,196,[[639,1,1,191,192],[640,1,1,192,193],[641,1,1,193,194],[642,1,1,194,195],[652,1,1,195,196]]],[20,1,1,196,197,[[666,1,1,196,197]]],[22,26,25,197,222,[[679,1,1,197,198],[680,2,2,198,200],[686,2,2,200,202],[687,1,1,202,203],[694,1,1,203,204],[702,1,1,204,205],[706,2,2,205,207],[707,1,1,207,208],[708,2,2,208,210],[714,1,1,210,211],[715,1,1,211,212],[716,1,1,212,213],[717,2,2,213,215],[718,1,1,215,216],[719,1,1,216,217],[722,1,1,217,218],[723,1,1,218,219],[733,1,1,219,220],[744,3,2,220,222]]],[23,96,91,222,313,[[745,5,5,222,227],[746,3,3,227,230],[749,1,1,230,231],[750,1,1,231,232],[751,3,2,232,234],[752,1,1,234,235],[753,2,1,235,236],[754,1,1,236,237],[755,1,1,237,238],[757,4,4,238,242],[758,2,2,242,244],[759,1,1,244,245],[760,1,1,245,246],[761,2,2,246,248],[762,3,3,248,251],[763,1,1,251,252],[764,1,1,252,253],[765,2,2,253,255],[766,3,3,255,258],[767,7,5,258,263],[768,1,1,263,264],[769,2,2,264,266],[770,2,2,266,268],[771,2,2,268,270],[772,3,3,270,273],[773,3,3,273,276],[774,1,1,276,277],[775,1,1,277,278],[776,5,4,278,282],[777,3,3,282,285],[778,5,5,285,290],[779,2,2,290,292],[780,2,2,292,294],[781,2,2,294,296],[782,1,1,296,297],[783,1,1,297,298],[784,1,1,298,299],[786,2,2,299,301],[787,1,1,301,302],[788,4,4,302,306],[789,1,1,306,307],[790,2,2,307,309],[791,1,1,309,310],[793,1,1,310,311],[794,1,1,311,312],[795,1,1,312,313]]],[25,66,66,313,379,[[802,1,1,313,314],[804,2,2,314,316],[807,2,2,316,318],[808,1,1,318,319],[812,1,1,319,320],[813,7,7,320,327],[814,3,3,327,330],[815,2,2,330,332],[816,1,1,332,333],[817,2,2,333,335],[818,2,2,335,337],[819,1,1,337,338],[821,3,3,338,341],[822,3,3,341,344],[823,3,3,344,347],[824,1,1,347,348],[825,3,3,348,351],[826,2,2,351,353],[827,1,1,353,354],[828,1,1,354,355],[829,3,3,355,358],[830,2,2,358,360],[831,2,2,360,362],[832,1,1,362,363],[833,2,2,363,365],[834,4,4,365,369],[835,3,3,369,372],[836,1,1,372,373],[837,3,3,373,376],[838,2,2,376,378],[839,1,1,378,379]]],[26,2,2,379,381,[[858,1,1,379,380],[859,1,1,380,381]]],[27,2,2,381,383,[[862,1,1,381,382],[865,1,1,382,383]]],[28,2,2,383,385,[[876,1,1,383,384],[877,1,1,384,385]]],[29,5,5,385,390,[[881,1,1,385,386],[882,1,1,386,387],[883,1,1,387,388],[885,1,1,388,389],[886,1,1,389,390]]],[31,4,4,390,394,[[889,1,1,390,391],[891,3,3,391,394]]],[32,2,2,394,396,[[893,1,1,394,395],[896,1,1,395,396]]],[35,2,2,396,398,[[906,1,1,396,397],[907,1,1,397,398]]],[36,6,6,398,404,[[909,2,2,398,400],[910,4,4,400,404]]],[37,13,13,404,417,[[911,2,2,404,406],[914,2,2,406,408],[916,1,1,408,409],[917,3,3,409,412],[918,2,2,412,414],[919,1,1,414,415],[921,1,1,415,416],[922,1,1,416,417]]],[38,1,1,417,418,[[925,1,1,417,418]]]],[361,364,864,1097,1326,1342,1720,1723,1741,1762,1763,1851,1901,2466,2984,4047,4101,4128,4184,4383,4395,4410,4413,4421,4432,4650,4914,4917,5006,5058,5162,5404,5405,5722,5864,5959,6029,6037,6194,6197,7235,7277,7283,7297,7298,7418,7570,7583,7586,8092,8184,8187,8205,8368,8373,8417,8696,8703,8774,8793,8797,8800,8812,8907,8908,9005,9011,9041,9173,9175,9185,9186,9189,9193,9201,9202,9204,9210,9216,9236,9284,9290,9295,9317,9318,9319,9322,9325,9333,9341,9342,9362,9372,9377,9396,9417,9443,9455,9468,9479,9485,9493,9499,9518,9549,9550,9588,9647,9692,9708,9723,9782,9792,9921,9937,10052,10060,10082,10102,10114,10117,10165,10181,10204,10672,10676,10683,10806,10835,10866,10869,10938,10940,10946,10972,11292,11299,11410,11416,11444,11546,11554,11560,11839,11949,11954,11961,11972,12014,12015,12017,12257,12304,12723,12815,12904,14107,14370,14372,14759,14765,15569,15614,15625,15634,15675,15719,15907,15914,15915,15923,15926,15940,15941,15947,15963,15972,15979,15987,15999,16003,16005,16012,16045,16058,16067,16145,16366,16369,16370,16379,16744,16760,16787,16830,17124,17462,17664,17686,17688,17817,17827,17837,17982,18098,18177,18178,18214,18229,18238,18351,18374,18394,18417,18420,18428,18479,18559,18584,18751,18924,18927,18948,18950,18957,18958,18959,18966,18969,18996,19072,19099,19120,19121,19162,19195,19202,19227,19268,19269,19274,19278,19294,19310,19331,19337,19372,19377,19385,19389,19402,19410,19430,19441,19451,19455,19456,19483,19502,19512,19513,19520,19522,19528,19535,19537,19573,19574,19597,19614,19625,19627,19630,19645,19655,19665,19668,19701,19732,19737,19739,19757,19776,19794,19798,19802,19805,19806,19809,19813,19824,19835,19843,19869,19880,19891,19916,19938,19942,19982,19990,20005,20011,20026,20034,20036,20041,20046,20058,20074,20161,20167,20271,20467,20518,20519,20564,20566,20578,20669,20681,20688,20697,20701,20705,20706,20708,20709,20710,20714,20733,20743,20755,20763,20797,20826,20836,20850,20897,20940,20942,20945,20952,20962,20977,20993,20999,21008,21057,21071,21076,21084,21086,21101,21122,21158,21168,21177,21184,21200,21205,21224,21231,21249,21265,21281,21287,21303,21310,21314,21320,21322,21345,21360,21363,21375,21401,21412,21426,21990,22026,22095,22134,22292,22322,22396,22411,22424,22480,22493,22532,22559,22561,22564,22580,22622,22788,22810,22841,22843,22856,22860,22865,22875,22879,22885,22928,22930,22956,22963,22966,22970,22977,22994,23000,23039,23046,23090]]],["words",[367,352,[[0,17,17,0,17,[[23,2,2,0,2],[26,2,2,2,4],[30,1,1,4,5],[33,1,1,5,6],[36,1,1,6,7],[38,2,2,7,9],[41,2,2,9,11],[42,1,1,11,12],[43,4,4,12,16],[44,1,1,16,17]]],[1,19,17,17,34,[[53,3,3,17,20],[54,1,1,20,21],[68,4,4,21,25],[69,1,1,25,26],[72,1,1,26,27],[73,4,3,27,30],[83,4,3,30,33],[84,1,1,33,34]]],[3,4,4,34,38,[[127,1,1,34,35],[128,1,1,35,36],[132,1,1,36,37],[138,1,1,37,38]]],[4,37,35,38,73,[[153,2,2,38,40],[154,1,1,40,41],[156,3,3,41,44],[157,3,2,44,46],[158,1,1,46,47],[161,1,1,47,48],[162,1,1,48,49],[163,1,1,49,50],[164,1,1,50,51],[165,1,1,51,52],[168,1,1,52,53],[169,1,1,53,54],[170,2,2,54,56],[179,3,3,56,59],[180,2,2,59,61],[181,4,4,61,65],[183,5,5,65,70],[184,4,3,70,73]]],[5,6,6,73,79,[[187,1,1,73,74],[188,1,1,74,75],[189,1,1,75,76],[194,1,1,76,77],[208,1,1,77,78],[210,1,1,78,79]]],[6,8,8,79,87,[[212,1,1,79,80],[219,2,2,80,82],[221,3,3,82,85],[223,1,1,85,86],[226,1,1,86,87]]],[8,18,18,87,105,[[238,1,1,87,88],[243,2,2,88,90],[250,2,2,90,92],[252,3,3,92,95],[253,2,2,95,97],[256,1,1,97,98],[259,3,3,98,101],[260,2,2,101,103],[261,1,1,103,104],[263,1,1,104,105]]],[9,9,9,105,114,[[269,1,1,105,106],[273,2,2,106,108],[280,2,2,108,110],[285,1,1,110,111],[286,1,1,111,112],[288,1,1,112,113],[289,1,1,113,114]]],[10,9,9,114,123,[[291,1,1,114,115],[293,1,1,115,116],[295,1,1,116,117],[298,1,1,117,118],[300,1,1,118,119],[302,1,1,119,120],[303,1,1,120,121],[311,1,1,121,122],[312,1,1,122,123]]],[11,19,17,123,140,[[313,1,1,123,124],[318,2,2,124,126],[330,3,3,126,129],[331,4,3,129,132],[334,5,4,132,136],[335,4,4,136,140]]],[12,3,3,140,143,[[354,1,1,140,141],[360,1,1,141,142],[362,1,1,142,143]]],[13,17,17,143,160,[[375,1,1,143,144],[376,1,1,144,145],[377,1,1,145,146],[381,1,1,146,147],[384,1,1,147,148],[395,2,2,148,150],[398,1,1,150,151],[399,1,1,151,152],[400,6,6,152,158],[401,1,1,158,159],[402,1,1,159,160]]],[14,2,2,160,162,[[409,1,1,160,161],[411,1,1,161,162]]],[15,11,11,162,173,[[413,2,2,162,164],[414,1,1,164,165],[417,1,1,165,166],[418,3,3,166,169],[420,3,3,169,172],[421,1,1,172,173]]],[16,4,4,173,177,[[429,2,2,173,175],[434,2,2,175,177]]],[17,10,10,177,187,[[441,1,1,177,178],[444,1,1,178,179],[446,1,1,179,180],[451,1,1,180,181],[464,1,1,181,182],[466,1,1,182,183],[467,1,1,183,184],[468,1,1,184,185],[469,1,1,185,186],[477,1,1,186,187]]],[18,13,13,187,200,[[499,1,1,187,188],[513,1,1,188,189],[527,1,1,189,190],[529,1,1,190,191],[532,1,1,191,192],[533,1,1,192,193],[536,1,1,193,194],[541,1,1,194,195],[583,1,1,195,196],[586,1,1,196,197],[596,3,3,197,200]]],[19,18,18,200,218,[[628,2,2,200,202],[631,2,2,202,204],[637,1,1,204,205],[639,1,1,205,206],[642,1,1,206,207],[645,2,2,207,209],[649,2,2,209,211],[650,1,1,211,212],[653,1,1,212,213],[656,2,2,213,215],[657,2,2,215,217],[658,1,1,217,218]]],[20,13,12,218,230,[[659,1,1,218,219],[663,3,3,219,222],[665,1,1,222,223],[667,2,2,223,225],[668,3,3,225,228],[670,3,2,228,230]]],[22,15,14,230,244,[[707,2,2,230,232],[709,1,1,232,233],[714,4,4,233,237],[715,4,3,237,240],[729,1,1,240,241],[736,1,1,241,242],[737,2,2,242,244]]],[23,82,78,244,322,[[745,2,2,244,246],[747,1,1,246,247],[749,1,1,247,248],[750,1,1,248,249],[751,3,3,249,252],[755,6,5,252,257],[757,1,1,257,258],[759,1,1,258,259],[760,1,1,259,260],[762,2,2,260,262],[763,2,2,262,264],[766,1,1,264,265],[767,5,5,265,270],[769,3,3,270,273],[770,7,7,273,280],[771,3,3,280,283],[772,1,1,283,284],[773,3,3,284,287],[774,2,2,287,289],[778,2,2,289,291],[779,2,2,291,293],[780,17,15,293,308],[781,1,1,308,309],[782,4,4,309,313],[783,1,1,313,314],[786,1,1,314,315],[787,2,1,315,316],[788,2,2,316,318],[789,1,1,318,319],[795,3,3,319,322]]],[25,8,8,322,330,[[803,1,1,322,323],[804,3,3,323,326],[813,1,1,326,327],[834,2,2,327,329],[836,1,1,329,330]]],[26,10,8,330,338,[[858,1,1,330,331],[859,7,5,331,336],[861,2,2,336,338]]],[27,2,2,338,340,[[871,1,1,338,339],[875,1,1,339,340]]],[29,3,3,340,343,[[879,1,1,340,341],[885,1,1,341,342],[886,1,1,342,343]]],[32,1,1,343,344,[[894,1,1,343,344]]],[36,1,1,344,345,[[909,1,1,344,345]]],[37,6,5,345,350,[[911,3,2,345,347],[917,2,2,347,349],[918,1,1,349,350]]],[38,2,2,350,352,[[926,1,1,350,351],[927,1,1,351,352]]]],[621,643,761,769,874,998,1091,1166,1168,1268,1272,1297,1330,1331,1334,1348,1385,1616,1629,1631,1641,2032,2033,2034,2035,2052,2152,2180,2181,2185,2497,2523,2524,2532,4048,4065,4225,4382,4893,4926,4964,5014,5016,5040,5075,5081,5092,5167,5188,5226,5268,5275,5361,5383,5402,5403,5588,5593,5611,5625,5669,5680,5688,5698,5708,5729,5740,5752,5756,5758,5802,5803,5804,5869,5890,5902,6036,6456,6502,6549,6757,6784,6839,6840,6857,6896,6965,7295,7379,7390,7561,7584,7629,7641,7649,7699,7702,7784,7846,7848,7855,7870,7885,7924,7963,8089,8197,8208,8359,8375,8554,8571,8603,8654,8731,8828,8885,9044,9086,9158,9195,9478,9493,9540,9686,9704,10044,10051,10061,10065,10067,10077,10156,10158,10161,10163,10167,10168,10181,10189,10878,11010,11051,11370,11402,11418,11498,11554,11806,11821,11883,11926,11952,11954,11959,11960,11963,11964,11988,12009,12184,12241,12297,12300,12325,12388,12407,12408,12420,12502,12505,12506,12519,12771,12774,12860,12864,12981,13065,13110,13241,13554,13628,13639,13651,13718,13929,14205,14441,14685,14714,14753,14760,14802,14853,15663,15758,15955,16028,16037,16406,16423,16494,16510,16675,16725,16808,16905,16909,17027,17032,17052,17163,17243,17244,17252,17257,17285,17316,17399,17400,17404,17450,17491,17492,17505,17506,17507,17533,17534,18204,18211,18252,18335,18342,18343,18352,18356,18358,18369,18689,18799,18813,18821,18947,18955,19014,19072,19108,19123,19127,19146,19228,19229,19232,19234,19236,19276,19331,19346,19386,19402,19409,19422,19459,19493,19500,19506,19514,19520,19542,19547,19564,19574,19577,19579,19584,19587,19592,19593,19608,19610,19612,19624,19636,19654,19658,19669,19671,19807,19819,19836,19837,19844,19846,19848,19850,19852,19853,19855,19858,19859,19860,19862,19866,19869,19870,19874,19876,19896,19899,19919,19922,19939,19979,19998,20038,20039,20041,20272,20273,20276,20499,20506,20508,20512,20708,21311,21312,21357,22000,22021,22024,22026,22027,22030,22085,22090,22229,22284,22365,22474,22492,22602,22852,22884,22891,22969,22974,22985,23120,23133]]],["works",[1,1,[[18,1,1,0,1,[[622,1,1,0,1]]]],[16325]]]]},{"k":"H1698","v":[["*",[49,48,[[1,3,3,0,3,[[54,1,1,0,1],[58,2,2,1,3]]],[2,1,1,3,4,[[115,1,1,3,4]]],[3,1,1,4,5,[[130,1,1,4,5]]],[4,1,1,5,6,[[180,1,1,5,6]]],[9,2,2,6,8,[[290,2,2,6,8]]],[10,1,1,8,9,[[298,1,1,8,9]]],[12,2,2,9,11,[[358,2,2,9,11]]],[13,3,3,11,14,[[372,1,1,11,12],[373,1,1,12,13],[386,1,1,13,14]]],[18,3,3,14,17,[[555,1,1,14,15],[568,2,2,15,17]]],[23,17,17,17,34,[[758,1,1,17,18],[765,3,3,18,21],[768,1,1,21,22],[771,2,2,22,24],[772,1,1,24,25],[773,2,2,25,27],[776,2,2,27,29],[778,1,1,29,30],[782,1,1,30,31],[786,2,2,31,33],[788,1,1,33,34]]],[25,12,11,34,45,[[806,2,2,34,36],[807,2,2,36,38],[808,2,1,38,39],[813,1,1,39,40],[815,2,2,40,42],[829,1,1,42,43],[834,1,1,43,44],[839,1,1,44,45]]],[27,1,1,45,46,[[874,1,1,45,46]]],[29,1,1,46,47,[[882,1,1,46,47]]],[34,1,1,47,48,[[905,1,1,47,48]]]],[1635,1745,1757,3549,4120,5632,8705,8707,9022,10946,10948,11310,11337,11596,15163,15398,15401,19305,19446,19447,19449,19534,19604,19609,19626,19652,19653,19755,19767,19818,19897,19992,19997,20023,20558,20563,20574,20575,20592,20696,20750,20752,21180,21307,21447,22280,22420,22773]]],["+",[3,3,[[18,2,2,0,2,[[568,2,2,0,2]]],[25,1,1,2,3,[[813,1,1,2,3]]]],[15398,15401,20696]]],["murrain",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1745]]],["pestilence",[44,43,[[1,2,2,0,2,[[54,1,1,0,1],[58,1,1,1,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[3,1,1,3,4,[[130,1,1,3,4]]],[4,1,1,4,5,[[180,1,1,4,5]]],[9,2,2,5,7,[[290,2,2,5,7]]],[10,1,1,7,8,[[298,1,1,7,8]]],[12,2,2,8,10,[[358,2,2,8,10]]],[13,3,3,10,13,[[372,1,1,10,11],[373,1,1,11,12],[386,1,1,12,13]]],[18,1,1,13,14,[[555,1,1,13,14]]],[23,17,17,14,31,[[758,1,1,14,15],[765,3,3,15,18],[768,1,1,18,19],[771,2,2,19,21],[772,1,1,21,22],[773,2,2,22,24],[776,2,2,24,26],[778,1,1,26,27],[782,1,1,27,28],[786,2,2,28,30],[788,1,1,30,31]]],[25,11,10,31,41,[[806,2,2,31,33],[807,2,2,33,35],[808,2,1,35,36],[815,2,2,36,38],[829,1,1,38,39],[834,1,1,39,40],[839,1,1,40,41]]],[29,1,1,41,42,[[882,1,1,41,42]]],[34,1,1,42,43,[[905,1,1,42,43]]]],[1635,1757,3549,4120,5632,8705,8707,9022,10946,10948,11310,11337,11596,15163,19305,19446,19447,19449,19534,19604,19609,19626,19652,19653,19755,19767,19818,19897,19992,19997,20023,20558,20563,20574,20575,20592,20750,20752,21180,21307,21447,22420,22773]]],["plagues",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22280]]]]},{"k":"H1699","v":[["*",[3,3,[[22,1,1,0,1,[[683,1,1,0,1]]],[23,1,1,1,2,[[749,1,1,1,2]]],[32,1,1,2,3,[[894,1,1,2,3]]]],[17756,19071,22607]]],["fold",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22607]]],["manner",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17756]]],["word",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19071]]]]},{"k":"H1700","v":[["*",[5,5,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,1,1,1,2,[[587,1,1,1,2]]],[20,3,3,2,5,[[661,1,1,2,3],[665,1,1,3,4],[666,1,1,4,5]]]],[12959,15790,17377,17443,17460]]],["+",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17460]]],["cause",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12959]]],["end",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17443]]],["estate",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17377]]],["order",[1,1,[[18,1,1,0,1,[[587,1,1,0,1]]]],[15790]]]]},{"k":"H1701","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21788,21854]]],["+",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21788]]],["intent",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21854]]]]},{"k":"H1702","v":[["floats",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8887]]]]},{"k":"H1703","v":[["+",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5813]]]]},{"k":"H1704","v":[["Dibri",[1,1,[[2,1,1,0,1,[[113,1,1,0,1]]]],[3457]]]]},{"k":"H1705","v":[["*",[3,3,[[5,2,2,0,2,[[205,1,1,0,1],[207,1,1,1,2]]],[12,1,1,2,3,[[343,1,1,2,3]]]],[6333,6409,10526]]],["Dabareh",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6409]]],["Daberath",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]]],[6333,10526]]]]},{"k":"H1706","v":[["*",[54,54,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,5,5,1,6,[[52,2,2,1,3],[62,1,1,3,4],[65,1,1,4,5],[82,1,1,5,6]]],[2,2,2,6,8,[[91,1,1,6,7],[109,1,1,7,8]]],[3,4,4,8,12,[[129,1,1,8,9],[130,1,1,9,10],[132,2,2,10,12]]],[4,8,8,12,20,[[158,1,1,12,13],[160,1,1,13,14],[163,1,1,14,15],[178,2,2,15,17],[179,1,1,17,18],[183,1,1,18,19],[184,1,1,19,20]]],[5,1,1,20,21,[[191,1,1,20,21]]],[6,3,3,21,24,[[224,3,3,21,24]]],[8,5,5,24,29,[[249,5,5,24,29]]],[9,1,1,29,30,[[283,1,1,29,30]]],[10,1,1,30,31,[[304,1,1,30,31]]],[11,1,1,31,32,[[330,1,1,31,32]]],[13,1,1,32,33,[[397,1,1,32,33]]],[17,1,1,33,34,[[455,1,1,33,34]]],[18,3,3,34,37,[[496,1,1,34,35],[558,1,1,35,36],[596,1,1,36,37]]],[19,4,4,37,41,[[643,1,1,37,38],[651,1,1,38,39],[652,2,2,39,41]]],[21,2,2,41,43,[[674,1,1,41,42],[675,1,1,42,43]]],[22,2,2,43,45,[[685,2,2,43,45]]],[23,3,3,45,48,[[755,1,1,45,46],[776,1,1,46,47],[785,1,1,47,48]]],[25,6,6,48,54,[[804,1,1,48,49],[817,2,2,49,51],[821,2,2,51,53],[828,1,1,53,54]]]],[1301,1587,1596,1872,1978,2476,2773,3342,4102,4116,4207,4208,5089,5145,5217,5575,5581,5588,5748,5771,5940,6917,6918,6927,7533,7534,7535,7537,7551,8478,9221,10056,11859,13343,14178,15233,16001,16864,17092,17129,17140,17593,17599,17797,17804,19231,19753,19965,20505,20775,20781,20901,20910,21138]]],["+",[5,5,[[6,1,1,0,1,[[224,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[18,2,2,2,4,[[496,1,1,2,3],[596,1,1,3,4]]],[19,1,1,4,5,[[643,1,1,4,5]]]],[6927,7535,14178,16001,16864]]],["honey",[49,49,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,5,5,1,6,[[52,2,2,1,3],[62,1,1,3,4],[65,1,1,4,5],[82,1,1,5,6]]],[2,2,2,6,8,[[91,1,1,6,7],[109,1,1,7,8]]],[3,4,4,8,12,[[129,1,1,8,9],[130,1,1,9,10],[132,2,2,10,12]]],[4,8,8,12,20,[[158,1,1,12,13],[160,1,1,13,14],[163,1,1,14,15],[178,2,2,15,17],[179,1,1,17,18],[183,1,1,18,19],[184,1,1,19,20]]],[5,1,1,20,21,[[191,1,1,20,21]]],[6,2,2,21,23,[[224,2,2,21,23]]],[8,4,4,23,27,[[249,4,4,23,27]]],[9,1,1,27,28,[[283,1,1,27,28]]],[10,1,1,28,29,[[304,1,1,28,29]]],[11,1,1,29,30,[[330,1,1,29,30]]],[13,1,1,30,31,[[397,1,1,30,31]]],[17,1,1,31,32,[[455,1,1,31,32]]],[18,1,1,32,33,[[558,1,1,32,33]]],[19,3,3,33,36,[[651,1,1,33,34],[652,2,2,34,36]]],[21,2,2,36,38,[[674,1,1,36,37],[675,1,1,37,38]]],[22,2,2,38,40,[[685,2,2,38,40]]],[23,3,3,40,43,[[755,1,1,40,41],[776,1,1,41,42],[785,1,1,42,43]]],[25,6,6,43,49,[[804,1,1,43,44],[817,2,2,44,46],[821,2,2,46,48],[828,1,1,48,49]]]],[1301,1587,1596,1872,1978,2476,2773,3342,4102,4116,4207,4208,5089,5145,5217,5575,5581,5588,5748,5771,5940,6917,6918,7533,7534,7537,7551,8478,9221,10056,11859,13343,15233,17092,17129,17140,17593,17599,17797,17804,19231,19753,19965,20505,20775,20781,20901,20910,21138]]]]},{"k":"H1707","v":[["bunches",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18223]]]]},{"k":"H1708","v":[["Dabbasheth",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6332]]]]},{"k":"H1709","v":[["*",[19,18,[[0,1,1,0,1,[[8,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[10,1,1,2,3,[[294,1,1,2,3]]],[13,1,1,3,4,[[399,1,1,3,4]]],[15,3,3,4,7,[[415,1,1,4,5],[424,1,1,5,6],[425,1,1,6,7]]],[17,2,2,7,9,[[447,1,1,7,8],[476,1,1,8,9]]],[18,1,1,9,10,[[485,1,1,9,10]]],[20,1,1,10,11,[[667,1,1,10,11]]],[25,1,1,11,12,[[839,1,1,11,12]]],[27,1,1,12,13,[[865,1,1,12,13]]],[31,3,2,13,15,[[889,2,1,13,14],[890,1,1,14,15]]],[34,1,1,15,16,[[903,1,1,15,16]]],[35,2,2,16,18,[[906,2,2,16,18]]]],[207,4046,8877,11922,12330,12663,12687,13136,13895,14020,17487,21445,22136,22548,22558,22745,22790,22797]]],["fish",[11,10,[[3,1,1,0,1,[[127,1,1,0,1]]],[13,1,1,1,2,[[399,1,1,1,2]]],[15,3,3,2,5,[[415,1,1,2,3],[424,1,1,3,4],[425,1,1,4,5]]],[17,1,1,5,6,[[476,1,1,5,6]]],[18,1,1,6,7,[[485,1,1,6,7]]],[31,3,2,7,9,[[889,2,1,7,8],[890,1,1,8,9]]],[35,1,1,9,10,[[906,1,1,9,10]]]],[4046,11922,12330,12663,12687,13895,14020,22548,22558,22797]]],["fishes",[8,8,[[0,1,1,0,1,[[8,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]],[17,1,1,2,3,[[447,1,1,2,3]]],[20,1,1,3,4,[[667,1,1,3,4]]],[25,1,1,4,5,[[839,1,1,4,5]]],[27,1,1,5,6,[[865,1,1,5,6]]],[34,1,1,6,7,[[903,1,1,6,7]]],[35,1,1,7,8,[[906,1,1,7,8]]]],[207,8877,13136,17487,21445,22136,22745,22790]]]]},{"k":"H1710","v":[["*",[15,13,[[0,2,2,0,2,[[0,2,2,0,2]]],[1,2,2,2,4,[[56,2,2,2,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[4,1,1,5,6,[[156,1,1,5,6]]],[18,1,1,6,7,[[582,1,1,6,7]]],[22,1,1,7,8,[[728,1,1,7,8]]],[25,6,4,8,12,[[830,3,2,8,10],[848,3,2,10,12]]],[31,1,1,12,13,[[890,1,1,12,13]]]],[25,27,1703,1706,4029,5022,15635,18664,21187,21188,21688,21689,22549]]],["fish",[14,12,[[0,2,2,0,2,[[0,2,2,0,2]]],[1,2,2,2,4,[[56,2,2,2,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[4,1,1,5,6,[[156,1,1,5,6]]],[18,1,1,6,7,[[582,1,1,6,7]]],[22,1,1,7,8,[[728,1,1,7,8]]],[25,6,4,8,12,[[830,3,2,8,10],[848,3,2,10,12]]]],[25,27,1703,1706,4029,5022,15635,18664,21187,21188,21688,21689]]],["fish's",[1,1,[[31,1,1,0,1,[[890,1,1,0,1]]]],[22549]]]]},{"k":"H1711","v":[["grow",[1,1,[[0,1,1,0,1,[[47,1,1,0,1]]]],[1467]]]]},{"k":"H1712","v":[["*",[13,7,[[6,1,1,0,1,[[226,1,1,0,1]]],[8,11,5,1,6,[[240,11,5,1,6]]],[12,1,1,6,7,[[347,1,1,6,7]]]],[6972,7321,7322,7323,7324,7326,10669]]],["Dagon",[12,7,[[6,1,1,0,1,[[226,1,1,0,1]]],[8,10,5,1,6,[[240,10,5,1,6]]],[12,1,1,6,7,[[347,1,1,6,7]]]],[6972,7321,7322,7323,7324,7326,10669]]],["Dagon's",[1,1,[[8,1,1,0,1,[[240,1,1,0,1]]]],[7324]]]]},{"k":"H1713","v":[["*",[3,3,[[18,1,1,0,1,[[497,1,1,0,1]]],[21,2,2,1,3,[[675,1,1,1,2],[676,1,1,2,3]]]],[14187,17608,17624]]],["banners",[2,2,[[18,1,1,0,1,[[497,1,1,0,1]]],[21,1,1,1,2,[[676,1,1,1,2]]]],[14187,17624]]],["chiefest",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17608]]]]},{"k":"H1714","v":[["*",[15,15,[[3,13,13,0,13,[[117,1,1,0,1],[118,8,8,1,9],[126,4,4,9,13]]],[21,2,2,13,15,[[672,1,1,13,14],[676,1,1,14,15]]]],[3656,3660,3661,3668,3675,3676,3683,3689,3692,4002,4006,4010,4013,17558,17618]]],["banner",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17558]]],["banners",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17618]]],["standard",[10,10,[[3,10,10,0,10,[[117,1,1,0,1],[118,5,5,1,6],[126,4,4,6,10]]]],[3656,3660,3661,3668,3676,3683,4002,4006,4010,4013]]],["standards",[3,3,[[3,3,3,0,3,[[118,3,3,0,3]]]],[3675,3689,3692]]]]},{"k":"H1715","v":[["*",[40,40,[[0,2,2,0,2,[[26,2,2,0,2]]],[3,2,2,2,4,[[134,2,2,2,4]]],[4,7,7,4,11,[[159,1,1,4,5],[163,1,1,5,6],[164,1,1,6,7],[166,1,1,7,8],[170,1,1,8,9],[180,1,1,9,10],[185,1,1,10,11]]],[11,1,1,11,12,[[330,1,1,11,12]]],[13,2,2,12,14,[[397,1,1,12,13],[398,1,1,13,14]]],[15,7,7,14,21,[[417,4,4,14,18],[422,1,1,18,19],[425,2,2,19,21]]],[18,3,3,21,24,[[481,1,1,21,22],[542,1,1,22,23],[555,1,1,23,24]]],[22,2,2,24,26,[[714,1,1,24,25],[740,1,1,25,26]]],[23,1,1,26,27,[[775,1,1,26,27]]],[24,1,1,27,28,[[798,1,1,27,28]]],[25,1,1,28,29,[[837,1,1,28,29]]],[27,6,6,29,35,[[863,3,3,29,32],[868,1,1,32,33],[870,1,1,33,34],[875,1,1,34,35]]],[28,3,3,35,38,[[876,2,2,35,37],[877,1,1,37,38]]],[36,1,1,38,39,[[909,1,1,38,39]]],[37,1,1,39,40,[[919,1,1,39,40]]]],[755,764,4269,4284,5124,5222,5257,5313,5388,5662,5838,10056,11859,11903,12384,12385,12392,12393,12588,12676,12683,13972,14869,15137,18347,18862,19703,20344,21388,22113,22114,22127,22192,22209,22289,22301,22308,22330,22851,23016]]],["+",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22209]]],["corn",[37,37,[[0,2,2,0,2,[[26,2,2,0,2]]],[3,1,1,2,3,[[134,1,1,2,3]]],[4,7,7,3,10,[[159,1,1,3,4],[163,1,1,4,5],[164,1,1,5,6],[166,1,1,6,7],[170,1,1,7,8],[180,1,1,8,9],[185,1,1,9,10]]],[11,1,1,10,11,[[330,1,1,10,11]]],[13,2,2,11,13,[[397,1,1,11,12],[398,1,1,12,13]]],[15,7,7,13,20,[[417,4,4,13,17],[422,1,1,17,18],[425,2,2,18,20]]],[18,3,3,20,23,[[481,1,1,20,21],[542,1,1,21,22],[555,1,1,22,23]]],[22,2,2,23,25,[[714,1,1,23,24],[740,1,1,24,25]]],[24,1,1,25,26,[[798,1,1,25,26]]],[25,1,1,26,27,[[837,1,1,26,27]]],[27,5,5,27,32,[[863,3,3,27,30],[868,1,1,30,31],[875,1,1,31,32]]],[28,3,3,32,35,[[876,2,2,32,34],[877,1,1,34,35]]],[36,1,1,35,36,[[909,1,1,35,36]]],[37,1,1,36,37,[[919,1,1,36,37]]]],[755,764,4284,5124,5222,5257,5313,5388,5662,5838,10056,11859,11903,12384,12385,12392,12393,12588,12676,12683,13972,14869,15137,18347,18862,20344,21388,22113,22114,22127,22192,22289,22301,22308,22330,22851,23016]]],["wheat",[2,2,[[3,1,1,0,1,[[134,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[4269,19703]]]]},{"k":"H1716","v":[["*",[2,2,[[22,1,1,0,1,[[712,1,1,0,1]]],[23,1,1,1,2,[[761,1,1,1,2]]]],[18318,19368]]],["gather",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18318]]],["sitteth",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19368]]]]},{"k":"H1717","v":[["*",[4,4,[[19,1,1,0,1,[[632,1,1,0,1]]],[25,3,3,1,4,[[824,3,3,1,4]]]],[16536,21010,21015,21028]]],["breasts",[2,2,[[19,1,1,0,1,[[632,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[16536,21015]]],["teats",[2,2,[[25,2,2,0,2,[[824,2,2,0,2]]]],[21010,21028]]]]},{"k":"H1718","v":[["*",[2,2,[[18,1,1,0,1,[[519,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]]],[14559,18405]]],["softly",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18405]]],["went",[1,1,[[18,1,1,0,1,[[519,1,1,0,1]]]],[14559]]]]},{"k":"H1719","v":[["Dedan",[11,10,[[0,3,2,0,2,[[9,1,1,0,1],[24,2,1,1,2]]],[12,2,2,2,4,[[338,2,2,2,4]]],[23,2,2,4,6,[[769,1,1,4,5],[793,1,1,5,6]]],[25,4,4,6,10,[[826,1,1,6,7],[828,2,2,7,9],[839,1,1,9,10]]]],[241,661,10261,10284,19557,20135,21096,21136,21141,21438]]]]},{"k":"H1720","v":[["Dedanim",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18048]]]]},{"k":"H1721","v":[["Dodanim",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[238,10259]]]]},{"k":"H1722","v":[["*",[23,23,[[14,5,5,0,5,[[407,1,1,0,1],[408,1,1,1,2],[409,3,3,2,5]]],[26,18,18,5,23,[[851,4,4,5,9],[852,7,7,9,16],[854,7,7,16,23]]]],[12148,12156,12188,12189,12191,21790,21793,21796,21803,21808,21812,21814,21817,21819,21821,21825,21876,21877,21878,21881,21890,21897,21903]]],["gold",[14,14,[[14,4,4,0,4,[[407,1,1,0,1],[409,3,3,1,4]]],[26,10,10,4,14,[[851,4,4,4,8],[852,1,1,8,9],[854,5,5,9,14]]]],[12148,12188,12189,12191,21790,21793,21796,21803,21808,21878,21881,21890,21897,21903]]],["golden",[9,9,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,8,8,1,9,[[852,6,6,1,7],[854,2,2,7,9]]]],[12156,21812,21814,21817,21819,21821,21825,21876,21877]]]]},{"k":"H1723","v":[["Dehavites",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12119]]]]},{"k":"H1724","v":[["astonied",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19302]]]]},{"k":"H1725","v":[["pransing",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22714]]]]},{"k":"H1726","v":[["*",[2,1,[[6,2,1,0,1,[[215,2,1,0,1]]]],[6645]]],["+",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6645]]],["pransings",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6645]]]]},{"k":"H1727","v":[["sorrow",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3540]]]]},{"k":"H1728","v":[["fishers",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21689]]]]},{"k":"H1729","v":[["+",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22412]]]]},{"k":"H1730","v":[["*",[61,53,[[2,4,3,0,3,[[99,1,1,0,1],[109,1,1,1,2],[114,2,1,2,3]]],[3,1,1,3,4,[[152,1,1,3,4]]],[8,4,4,4,8,[[245,3,3,4,7],[249,1,1,7,8]]],[11,1,1,8,9,[[336,1,1,8,9]]],[12,1,1,9,10,[[364,1,1,9,10]]],[16,2,2,10,12,[[427,2,2,10,12]]],[19,1,1,12,13,[[634,1,1,12,13]]],[21,39,32,13,45,[[671,5,5,13,18],[672,6,6,18,24],[674,3,2,24,26],[675,13,9,26,35],[676,5,3,35,38],[677,5,5,38,43],[678,2,2,43,45]]],[22,1,1,45,46,[[683,1,1,45,46]]],[23,4,4,46,50,[[776,4,4,46,50]]],[25,2,2,50,52,[[817,1,1,50,51],[824,1,1,51,52]]],[29,1,1,52,53,[[884,1,1,52,53]]]],[2981,3338,3518,4890,7432,7433,7434,7558,10219,11141,12731,12739,16593,17539,17541,17550,17551,17553,17557,17562,17563,17564,17570,17571,17592,17598,17599,17600,17602,17603,17604,17606,17607,17608,17614,17615,17616,17617,17636,17637,17638,17639,17640,17645,17654,17740,19738,19739,19740,19743,20770,21024,22460]]],["+",[2,1,[[21,2,1,0,1,[[675,2,1,0,1]]]],[17607]]],["beloved",[30,27,[[21,29,26,0,26,[[671,2,2,0,2],[672,6,6,2,8],[674,1,1,8,9],[675,11,9,9,18],[676,4,3,18,21],[677,3,3,21,24],[678,2,2,24,26]]],[22,1,1,26,27,[[683,1,1,26,27]]]],[17551,17553,17557,17562,17563,17564,17570,17571,17598,17599,17600,17602,17603,17604,17606,17607,17608,17614,17615,17616,17617,17636,17638,17640,17645,17654,17740]]],["beloved's",[2,2,[[21,2,2,0,2,[[676,1,1,0,1],[677,1,1,1,2]]]],[17617,17637]]],["brother",[1,1,[[11,1,1,0,1,[[336,1,1,0,1]]]],[10219]]],["brothers'",[1,1,[[3,1,1,0,1,[[152,1,1,0,1]]]],[4890]]],["love",[7,6,[[19,1,1,0,1,[[634,1,1,0,1]]],[21,4,3,1,4,[[671,2,2,1,3],[674,2,1,3,4]]],[25,2,2,4,6,[[817,1,1,4,5],[824,1,1,5,6]]]],[16593,17539,17541,17592,20770,21024]]],["loves",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17639]]],["uncle",[10,10,[[2,2,2,0,2,[[99,1,1,0,1],[114,1,1,1,2]]],[8,4,4,2,6,[[245,3,3,2,5],[249,1,1,5,6]]],[12,1,1,6,7,[[364,1,1,6,7]]],[16,1,1,7,8,[[427,1,1,7,8]]],[23,1,1,8,9,[[776,1,1,8,9]]],[29,1,1,9,10,[[884,1,1,9,10]]]],[2981,3518,7432,7433,7434,7558,11141,12739,19738,22460]]],["uncle's",[6,6,[[2,2,2,0,2,[[109,1,1,0,1],[114,1,1,1,2]]],[16,1,1,2,3,[[427,1,1,2,3]]],[23,3,3,3,6,[[776,3,3,3,6]]]],[3338,3518,12731,19739,19740,19743]]],["wellbeloved",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17550]]]]},{"k":"H1731","v":[["*",[7,6,[[8,1,1,0,1,[[237,1,1,0,1]]],[11,1,1,1,2,[[322,1,1,1,2]]],[13,1,1,2,3,[[401,1,1,2,3]]],[17,1,1,3,4,[[476,1,1,3,4]]],[18,1,1,4,5,[[558,1,1,4,5]]],[23,2,1,5,6,[[768,2,1,5,6]]]],[7254,9800,11979,13908,15223,19526]]],["+",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15223]]],["basket",[2,1,[[23,2,1,0,1,[[768,2,1,0,1]]]],[19526]]],["baskets",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9800]]],["caldrons",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11979]]],["kettle",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7254]]],["pot",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13908]]]]},{"k":"H1732","v":[["*",[1001,837,[[7,2,2,0,2,[[235,2,2,0,2]]],[8,291,232,2,234,[[251,6,6,2,8],[252,36,30,8,38],[253,33,27,38,65],[254,21,16,65,81],[255,24,21,81,102],[256,11,9,102,111],[257,11,10,111,121],[258,29,22,121,143],[259,16,11,143,154],[260,28,20,154,174],[261,23,18,174,192],[262,13,11,192,203],[263,4,3,203,206],[264,8,7,206,213],[265,28,21,213,234]]],[9,286,225,234,459,[[267,12,11,234,245],[268,14,12,245,257],[269,28,19,257,276],[270,3,3,276,279],[271,29,17,279,296],[272,22,14,296,310],[273,6,6,310,316],[274,21,15,316,331],[275,6,5,331,336],[276,12,8,336,344],[277,23,19,344,363],[278,18,14,363,377],[279,8,7,377,384],[281,10,9,384,393],[282,9,8,393,401],[283,9,8,401,409],[284,5,5,409,414],[285,5,5,414,419],[286,7,7,419,426],[287,12,10,426,436],[288,2,2,436,438],[289,10,8,438,446],[290,15,13,446,459]]],[10,78,74,459,533,[[291,11,11,459,470],[292,11,10,470,480],[293,5,5,480,485],[295,4,4,485,489],[296,1,1,489,490],[297,1,1,490,491],[298,10,10,491,501],[299,3,3,501,504],[301,16,15,504,519],[302,5,4,519,523],[303,1,1,523,524],[304,3,2,524,526],[305,6,6,526,532],[312,1,1,532,533]]],[11,18,18,533,551,[[320,2,2,533,535],[321,1,1,535,536],[323,1,1,536,537],[324,1,1,537,538],[326,2,2,538,540],[327,2,2,540,542],[328,2,2,542,544],[329,1,1,544,545],[330,1,1,545,546],[331,1,1,546,547],[332,2,2,547,549],[333,1,1,549,550],[334,1,1,550,551]]],[12,187,157,551,708,[[339,1,1,551,552],[340,2,2,552,554],[341,1,1,554,555],[343,1,1,555,556],[344,1,1,556,557],[346,1,1,557,558],[347,1,1,558,559],[348,20,15,559,574],[349,14,12,574,586],[350,9,8,586,594],[351,14,10,594,604],[352,11,9,604,613],[353,4,4,613,617],[354,9,8,617,625],[355,18,14,625,639],[356,12,9,639,648],[357,7,5,648,653],[358,24,20,653,673],[359,8,7,673,680],[360,4,4,680,684],[361,2,2,684,686],[362,1,1,686,687],[363,3,3,687,690],[364,5,5,690,695],[365,4,4,695,699],[366,10,9,699,708]]],[13,74,66,708,774,[[367,5,4,708,712],[368,5,5,712,717],[369,2,1,717,718],[371,2,2,718,720],[372,9,9,720,729],[373,5,4,729,733],[374,4,2,733,735],[375,1,1,735,736],[376,3,2,736,738],[377,2,2,738,740],[378,1,1,740,741],[379,3,3,741,744],[380,1,1,744,745],[382,1,1,745,746],[383,1,1,746,747],[387,5,4,747,751],[389,4,3,751,754],[390,2,2,754,756],[393,1,1,756,757],[394,1,1,757,758],[395,5,5,758,763],[396,1,1,763,764],[398,3,3,764,767],[399,2,2,767,769],[400,2,2,769,771],[401,3,3,771,774]]],[14,3,3,774,777,[[405,1,1,774,775],[410,2,2,775,777]]],[15,8,7,777,784,[[415,2,2,777,779],[424,6,5,779,784]]],[18,13,13,784,797,[[495,1,1,784,785],[549,1,1,785,786],[555,1,1,786,787],[566,4,4,787,791],[599,1,1,791,792],[609,4,4,792,796],[621,1,1,796,797]]],[19,1,1,797,798,[[628,1,1,797,798]]],[20,1,1,798,799,[[659,1,1,798,799]]],[21,1,1,799,800,[[674,1,1,799,800]]],[22,10,10,800,810,[[685,2,2,800,802],[687,1,1,802,803],[694,1,1,803,804],[700,2,2,804,806],[707,1,1,806,807],[715,1,1,807,808],[716,1,1,808,809],[733,1,1,809,810]]],[23,15,15,810,825,[[757,1,1,810,811],[761,1,1,811,812],[765,1,1,812,813],[766,3,3,813,816],[767,1,1,816,817],[773,1,1,817,818],[774,1,1,818,819],[777,5,5,819,824],[780,1,1,824,825]]],[25,4,4,825,829,[[835,2,2,825,827],[838,2,2,827,829]]],[27,1,1,829,830,[[864,1,1,829,830]]],[29,2,2,830,832,[[884,1,1,830,831],[887,1,1,831,832]]],[37,6,5,832,837,[[922,5,4,832,836],[923,1,1,836,837]]]],[7207,7212,7608,7614,7615,7616,7617,7618,7630,7632,7633,7635,7638,7640,7641,7644,7646,7647,7649,7650,7651,7652,7655,7656,7657,7659,7660,7661,7662,7663,7666,7667,7668,7669,7672,7673,7675,7676,7677,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7690,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7710,7711,7713,7714,7715,7716,7717,7718,7720,7721,7724,7725,7726,7728,7731,7733,7734,7735,7736,7740,7741,7742,7745,7746,7747,7754,7755,7757,7758,7763,7764,7765,7769,7771,7772,7773,7774,7776,7777,7780,7781,7782,7783,7784,7788,7790,7791,7792,7793,7801,7804,7807,7808,7809,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7822,7823,7824,7825,7826,7828,7829,7834,7835,7836,7838,7839,7840,7841,7842,7843,7844,7846,7847,7848,7855,7856,7861,7862,7865,7866,7869,7870,7871,7873,7874,7875,7881,7882,7883,7884,7893,7896,7900,7901,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7917,7918,7919,7920,7922,7926,7927,7930,7931,7932,7933,7934,7935,7937,7938,7939,7940,7941,7942,7943,7944,7959,7969,7970,7972,7973,7975,7976,7978,7979,7981,7982,7983,7984,7985,7986,7987,7988,7989,7991,7993,7995,7996,7997,7998,7999,8000,8001,8004,8009,8023,8024,8025,8026,8027,8033,8035,8036,8037,8038,8039,8050,8051,8052,8053,8054,8059,8060,8062,8064,8066,8079,8080,8082,8083,8086,8087,8089,8090,8091,8093,8095,8098,8099,8100,8101,8102,8103,8107,8109,8112,8116,8128,8129,8132,8133,8135,8136,8138,8139,8140,8141,8142,8143,8144,8145,8149,8151,8152,8153,8155,8157,8158,8159,8162,8165,8166,8167,8169,8171,8172,8173,8174,8175,8177,8178,8185,8188,8197,8198,8200,8206,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8222,8223,8224,8227,8228,8229,8232,8233,8234,8242,8243,8244,8245,8246,8247,8257,8258,8260,8261,8262,8263,8264,8265,8266,8267,8269,8270,8271,8272,8273,8276,8277,8281,8282,8284,8286,8287,8291,8293,8299,8301,8302,8304,8305,8306,8310,8313,8315,8316,8317,8318,8320,8324,8338,8347,8349,8356,8401,8402,8403,8411,8419,8420,8421,8422,8426,8427,8431,8432,8436,8437,8439,8442,8449,8450,8465,8466,8470,8471,8473,8476,8478,8479,8480,8485,8487,8502,8522,8527,8533,8552,8554,8555,8556,8557,8560,8565,8575,8580,8581,8583,8587,8591,8592,8595,8596,8597,8601,8602,8603,8653,8654,8661,8662,8666,8667,8668,8669,8676,8693,8702,8703,8704,8705,8706,8709,8710,8711,8713,8714,8716,8717,8718,8725,8728,8730,8745,8748,8749,8754,8755,8760,8764,8771,8780,8781,8782,8794,8796,8802,8803,8814,8815,8817,8819,8822,8823,8830,8879,8881,8883,8885,8908,8985,8986,9000,9001,9002,9003,9005,9009,9010,9011,9051,9055,9056,9075,9112,9114,9120,9121,9123,9129,9132,9135,9140,9141,9142,9144,9146,9147,9151,9167,9170,9171,9177,9186,9226,9249,9252,9253,9254,9257,9260,9273,9530,9746,9751,9784,9839,9871,9899,9916,9932,9963,9965,9983,10004,10027,10095,10103,10104,10126,10147,10321,10362,10370,10416,10485,10537,10637,10673,10674,10676,10677,10678,10679,10680,10682,10683,10684,10686,10688,10689,10690,10691,10698,10721,10728,10736,10737,10738,10739,10741,10742,10743,10751,10758,10759,10761,10762,10765,10766,10768,10771,10772,10773,10775,10776,10777,10782,10784,10785,10786,10788,10790,10791,10792,10793,10794,10795,10802,10807,10816,10818,10820,10821,10822,10827,10863,10864,10865,10867,10870,10878,10879,10881,10887,10891,10892,10893,10894,10895,10896,10897,10898,10899,10900,10901,10903,10904,10907,10909,10910,10911,10912,10913,10915,10924,10925,10926,10927,10928,10929,10933,10934,10935,10936,10939,10942,10943,10944,10945,10947,10950,10951,10952,10953,10955,10956,10957,10958,10959,10960,10962,10964,10965,10966,10967,10968,10969,10971,10981,10984,10989,11008,11010,11018,11046,11047,11103,11108,11109,11127,11132,11133,11140,11141,11144,11145,11154,11163,11165,11173,11174,11184,11186,11187,11188,11190,11193,11195,11198,11202,11203,11214,11218,11223,11225,11228,11230,11269,11270,11286,11288,11289,11290,11292,11297,11298,11299,11324,11330,11334,11341,11342,11357,11360,11395,11411,11414,11431,11432,11453,11458,11459,11461,11476,11523,11526,11625,11631,11636,11644,11659,11665,11674,11693,11702,11764,11765,11793,11816,11817,11818,11821,11853,11880,11905,11908,11915,11922,11935,11936,11969,11970,11981,12107,12203,12221,12342,12343,12648,12660,12661,12669,12670,14168,15020,15183,15329,15346,15361,15375,16094,16152,16161,16162,16168,16315,16401,17316,17586,17784,17795,17836,17974,18061,18074,18194,18387,18395,18743,19279,19382,19452,19456,19458,19484,19489,19651,19676,19790,19792,19796,19797,19801,19872,21336,21337,21421,21422,22133,22455,22506,23052,23053,23055,23057,23060]]],["+",[16,15,[[8,2,2,0,2,[[253,1,1,0,1],[254,1,1,1,2]]],[9,6,6,2,8,[[268,1,1,2,3],[276,1,1,3,4],[277,2,2,4,6],[287,1,1,6,7],[289,1,1,7,8]]],[10,5,5,8,13,[[301,4,4,8,12],[305,1,1,12,13]]],[12,3,2,13,15,[[349,3,2,13,15]]]],[7702,7718,8079,8244,8277,8281,8591,8654,9120,9121,9140,9142,9253,10751,10758]]],["David",[937,792,[[7,2,2,0,2,[[235,2,2,0,2]]],[8,274,223,2,225,[[251,6,6,2,8],[252,36,30,8,38],[253,31,27,38,65],[254,18,14,65,79],[255,21,19,79,98],[256,11,9,98,107],[257,11,10,107,117],[258,28,21,117,138],[259,15,10,138,148],[260,24,18,148,166],[261,22,18,166,184],[262,13,11,184,195],[263,4,3,195,198],[264,8,7,198,205],[265,26,20,205,225]]],[9,264,210,225,435,[[267,12,11,225,236],[268,13,11,236,247],[269,27,19,247,266],[270,3,3,266,269],[271,28,17,269,286],[272,22,14,286,300],[273,6,6,300,306],[274,18,13,306,319],[275,6,5,319,324],[276,10,7,324,331],[277,21,17,331,348],[278,16,12,348,360],[279,6,5,360,365],[281,8,7,365,372],[282,8,7,372,379],[283,9,8,379,387],[284,5,5,387,392],[285,4,4,392,396],[286,7,7,396,403],[287,11,9,403,412],[288,2,2,412,414],[289,9,8,414,422],[290,13,13,422,435]]],[10,72,68,435,503,[[291,10,10,435,445],[292,11,10,445,455],[293,5,5,455,460],[295,4,4,460,464],[296,1,1,464,465],[297,1,1,465,466],[298,10,10,466,476],[299,3,3,476,479],[301,12,11,479,490],[302,5,4,490,494],[303,1,1,494,495],[304,3,2,495,497],[305,5,5,497,502],[312,1,1,502,503]]],[11,15,15,503,518,[[320,2,2,503,505],[321,1,1,505,506],[324,1,1,506,507],[326,2,2,507,509],[327,2,2,509,511],[328,2,2,511,513],[329,1,1,513,514],[330,1,1,514,515],[332,1,1,515,516],[333,1,1,516,517],[334,1,1,517,518]]],[12,175,149,518,667,[[339,1,1,518,519],[340,2,2,519,521],[341,1,1,521,522],[343,1,1,522,523],[344,1,1,523,524],[346,1,1,524,525],[347,1,1,525,526],[348,20,15,526,541],[349,11,10,541,551],[350,9,8,551,559],[351,14,10,559,569],[352,11,9,569,578],[353,4,4,578,582],[354,9,8,582,590],[355,15,13,590,603],[356,11,8,603,611],[357,5,4,611,615],[358,23,19,615,634],[359,8,7,634,641],[360,4,4,641,645],[361,2,2,645,647],[362,1,1,647,648],[363,3,3,648,651],[364,3,3,651,654],[365,4,4,654,658],[366,10,9,658,667]]],[13,73,65,667,732,[[367,5,4,667,671],[368,5,5,671,676],[369,2,1,676,677],[371,2,2,677,679],[372,9,9,679,688],[373,5,4,688,692],[374,4,2,692,694],[375,1,1,694,695],[376,3,2,695,697],[377,2,2,697,699],[378,1,1,699,700],[379,3,3,700,703],[380,1,1,703,704],[382,1,1,704,705],[383,1,1,705,706],[387,5,4,706,710],[389,3,2,710,712],[390,2,2,712,714],[393,1,1,714,715],[394,1,1,715,716],[395,5,5,716,721],[396,1,1,721,722],[398,3,3,722,725],[399,2,2,725,727],[400,2,2,727,729],[401,3,3,729,732]]],[14,3,3,732,735,[[405,1,1,732,733],[410,2,2,733,735]]],[15,8,7,735,742,[[415,2,2,735,737],[424,6,5,737,742]]],[18,12,12,742,754,[[495,1,1,742,743],[549,1,1,743,744],[555,1,1,744,745],[566,4,4,745,749],[599,1,1,749,750],[609,3,3,750,753],[621,1,1,753,754]]],[19,1,1,754,755,[[628,1,1,754,755]]],[20,1,1,755,756,[[659,1,1,755,756]]],[21,1,1,756,757,[[674,1,1,756,757]]],[22,9,9,757,766,[[685,2,2,757,759],[687,1,1,759,760],[694,1,1,760,761],[700,2,2,761,763],[707,1,1,763,764],[716,1,1,764,765],[733,1,1,765,766]]],[23,14,14,766,780,[[761,1,1,766,767],[765,1,1,767,768],[766,3,3,768,771],[767,1,1,771,772],[773,1,1,772,773],[774,1,1,773,774],[777,5,5,774,779],[780,1,1,779,780]]],[25,4,4,780,784,[[835,2,2,780,782],[838,2,2,782,784]]],[27,1,1,784,785,[[864,1,1,784,785]]],[29,2,2,785,787,[[884,1,1,785,786],[887,1,1,786,787]]],[37,6,5,787,792,[[922,5,4,787,791],[923,1,1,791,792]]]],[7207,7212,7608,7614,7615,7616,7617,7618,7630,7632,7633,7635,7638,7640,7641,7644,7646,7647,7649,7650,7651,7652,7655,7656,7657,7659,7660,7661,7662,7663,7666,7667,7668,7669,7672,7673,7675,7676,7677,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7690,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7710,7711,7713,7714,7715,7716,7720,7721,7724,7725,7726,7728,7731,7733,7734,7735,7736,7740,7741,7742,7745,7746,7747,7754,7758,7763,7764,7765,7769,7771,7772,7773,7774,7776,7777,7780,7781,7782,7783,7784,7788,7790,7791,7792,7793,7801,7804,7807,7808,7809,7811,7812,7814,7815,7816,7817,7818,7819,7820,7822,7823,7824,7825,7826,7828,7829,7834,7835,7836,7838,7839,7840,7841,7842,7843,7846,7847,7848,7855,7856,7861,7862,7865,7866,7869,7870,7871,7874,7875,7881,7882,7883,7884,7893,7896,7900,7901,7903,7904,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7917,7918,7919,7920,7922,7926,7927,7930,7931,7932,7933,7934,7935,7937,7938,7939,7940,7941,7942,7943,7944,7959,7969,7970,7972,7973,7975,7976,7978,7979,7981,7982,7984,7985,7986,7987,7988,7989,7991,7993,7995,7996,7997,7998,7999,8000,8001,8004,8009,8023,8024,8025,8026,8027,8033,8035,8036,8037,8038,8039,8050,8051,8052,8053,8054,8059,8060,8062,8064,8066,8080,8082,8083,8086,8087,8089,8090,8091,8093,8095,8098,8099,8100,8101,8102,8103,8107,8109,8112,8116,8128,8129,8132,8133,8135,8136,8138,8139,8140,8141,8142,8143,8144,8145,8149,8151,8152,8153,8155,8157,8158,8159,8162,8165,8166,8167,8169,8171,8172,8173,8174,8175,8177,8178,8185,8188,8197,8198,8200,8206,8210,8212,8213,8214,8215,8216,8217,8218,8219,8220,8222,8223,8224,8228,8229,8232,8233,8234,8242,8243,8245,8246,8247,8257,8258,8260,8261,8262,8263,8264,8265,8266,8267,8269,8270,8271,8272,8273,8276,8282,8284,8286,8287,8293,8299,8301,8302,8304,8305,8306,8310,8313,8315,8317,8318,8324,8338,8347,8356,8402,8403,8411,8419,8420,8421,8422,8427,8431,8432,8436,8437,8439,8449,8450,8465,8466,8470,8471,8473,8476,8478,8479,8480,8485,8487,8502,8522,8527,8533,8554,8555,8556,8557,8560,8565,8575,8580,8581,8583,8587,8592,8595,8596,8597,8601,8602,8603,8653,8654,8661,8662,8666,8667,8668,8669,8676,8693,8702,8703,8704,8705,8706,8709,8710,8711,8713,8714,8716,8717,8718,8725,8728,8730,8745,8748,8749,8754,8760,8764,8771,8780,8781,8782,8794,8796,8802,8803,8814,8815,8817,8819,8822,8823,8830,8879,8881,8883,8885,8908,8985,8986,9000,9001,9002,9003,9005,9009,9010,9011,9051,9055,9056,9075,9112,9114,9123,9129,9132,9135,9141,9144,9146,9147,9151,9167,9170,9171,9177,9186,9226,9249,9252,9254,9257,9260,9273,9530,9746,9751,9784,9871,9899,9916,9932,9963,9965,9983,10004,10027,10103,10126,10147,10321,10362,10370,10416,10485,10537,10637,10673,10674,10676,10677,10678,10679,10680,10682,10683,10684,10686,10688,10689,10690,10691,10698,10721,10728,10736,10737,10738,10739,10741,10742,10743,10759,10761,10762,10765,10766,10768,10771,10772,10773,10775,10776,10777,10782,10784,10785,10786,10788,10790,10791,10792,10793,10794,10795,10802,10807,10816,10818,10820,10821,10822,10827,10863,10864,10865,10867,10870,10878,10879,10881,10887,10891,10893,10894,10895,10896,10897,10898,10899,10900,10901,10903,10904,10907,10909,10910,10912,10913,10915,10924,10925,10926,10927,10928,10929,10934,10935,10936,10939,10942,10944,10945,10947,10950,10951,10952,10953,10955,10956,10957,10958,10959,10960,10962,10964,10965,10966,10967,10968,10969,10971,10981,10984,10989,11008,11010,11018,11046,11047,11103,11108,11109,11127,11132,11133,11144,11145,11154,11163,11165,11173,11174,11184,11186,11187,11188,11190,11193,11195,11198,11202,11203,11214,11218,11223,11225,11228,11230,11269,11270,11286,11288,11289,11290,11292,11297,11298,11299,11324,11330,11334,11341,11342,11357,11360,11395,11411,11414,11431,11432,11453,11458,11459,11461,11476,11523,11526,11625,11631,11636,11644,11659,11674,11693,11702,11764,11765,11793,11816,11817,11818,11821,11853,11880,11905,11908,11915,11922,11935,11936,11969,11970,11981,12107,12203,12221,12342,12343,12648,12660,12661,12669,12670,14168,15020,15183,15329,15346,15361,15375,16094,16152,16162,16168,16315,16401,17316,17586,17784,17795,17836,17974,18061,18074,18194,18395,18743,19382,19452,19456,19458,19484,19489,19651,19676,19790,19792,19796,19797,19801,19872,21336,21337,21421,21422,22133,22455,22506,23052,23053,23055,23057,23060]]],["David's",[48,47,[[8,15,14,0,14,[[253,1,1,0,1],[254,2,1,1,2],[255,3,3,2,5],[258,1,1,5,6],[259,1,1,6,7],[260,4,4,7,11],[261,1,1,11,12],[265,2,2,12,14]]],[9,16,16,14,30,[[269,1,1,14,15],[271,1,1,15,16],[274,3,3,16,19],[276,1,1,19,20],[278,2,2,20,22],[279,2,2,22,24],[281,2,2,24,26],[282,1,1,26,27],[285,1,1,27,28],[290,2,2,28,30]]],[10,1,1,30,31,[[291,1,1,30,31]]],[11,3,3,31,34,[[323,1,1,31,32],[331,1,1,32,33],[332,1,1,33,34]]],[12,9,9,34,43,[[355,3,3,34,37],[356,1,1,37,38],[357,2,2,38,40],[358,1,1,40,41],[364,2,2,41,43]]],[13,1,1,43,44,[[389,1,1,43,44]]],[18,1,1,44,45,[[609,1,1,44,45]]],[22,1,1,45,46,[[715,1,1,45,46]]],[23,1,1,46,47,[[757,1,1,46,47]]]],[7705,7717,7746,7755,7757,7813,7844,7870,7871,7873,7905,7922,7983,7998,8086,8140,8211,8223,8227,8242,8291,8316,8320,8349,8401,8426,8442,8552,8702,8703,8755,9839,10095,10104,10892,10896,10903,10911,10928,10933,10943,11140,11141,11665,16161,18387,19279]]]]},{"k":"H1733","v":[["*",[3,3,[[1,1,1,0,1,[[55,1,1,0,1]]],[2,2,2,1,3,[[107,1,1,1,2],[109,1,1,2,3]]]],[1675,3265,3338]]],["aunt",[1,1,[[2,1,1,0,1,[[107,1,1,0,1]]]],[3265]]],["sister",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1675]]],["wife",[1,1,[[2,1,1,0,1,[[109,1,1,0,1]]]],[3338]]]]},{"k":"H1734","v":[["Dodo",[5,5,[[6,1,1,0,1,[[220,1,1,0,1]]],[9,2,2,1,3,[[289,2,2,1,3]]],[12,2,2,3,5,[[348,2,2,3,5]]]],[6812,8662,8677,10685,10699]]]]},{"k":"H1735","v":[["Dodavah",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11624]]]]},{"k":"H1736","v":[["*",[7,5,[[0,5,3,0,3,[[29,5,3,0,3]]],[21,1,1,3,4,[[677,1,1,3,4]]],[23,1,1,4,5,[[768,1,1,4,5]]]],[844,845,846,17640,19525]]],["+",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[844]]],["baskets",[1,1,[[23,1,1,0,1,[[768,1,1,0,1]]]],[19525]]],["mandrakes",[5,4,[[0,4,3,0,3,[[29,4,3,0,3]]],[21,1,1,3,4,[[677,1,1,3,4]]]],[844,845,846,17640]]]]},{"k":"H1737","v":[["Dodai",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11113]]]]},{"k":"H1738","v":[["infirmity",[1,1,[[2,1,1,0,1,[[101,1,1,0,1]]]],[3046]]]]},{"k":"H1739","v":[["*",[5,5,[[2,2,2,0,2,[[104,1,1,0,1],[109,1,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]],[24,2,2,3,5,[[797,1,1,3,4],[801,1,1,4,5]]]],[3201,3336,18239,20323,20459]]],["cloth",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18239]]],["faint",[2,2,[[24,2,2,0,2,[[797,1,1,0,1],[801,1,1,1,2]]]],[20323,20459]]],["sick",[1,1,[[2,1,1,0,1,[[104,1,1,0,1]]]],[3201]]],["sickness",[1,1,[[2,1,1,0,1,[[109,1,1,0,1]]]],[3336]]]]},{"k":"H1740","v":[["*",[4,4,[[13,1,1,0,1,[[370,1,1,0,1]]],[22,1,1,1,2,[[682,1,1,1,2]]],[23,1,1,2,3,[[795,1,1,2,3]]],[25,1,1,3,4,[[841,1,1,3,4]]]],[11252,17737,20246,21515]]],["+",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21515]]],["out",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20246]]],["purged",[1,1,[[22,1,1,0,1,[[682,1,1,0,1]]]],[17737]]],["washed",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11252]]]]},{"k":"H1741","v":[["*",[2,2,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,1,1,1,2,[[518,1,1,1,2]]]],[12985,14545]]],["languishing",[1,1,[[18,1,1,0,1,[[518,1,1,0,1]]]],[14545]]],["sorrowful",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12985]]]]},{"k":"H1742","v":[["faint",[3,3,[[22,1,1,0,1,[[679,1,1,0,1]]],[23,1,1,1,2,[[752,1,1,1,2]]],[24,1,1,2,3,[[797,1,1,2,3]]]],[17659,19171,20332]]]]},{"k":"H1743","v":[["beat",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4032]]]]},{"k":"H1744","v":[["lapwing",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3016,5308]]]]},{"k":"H1745","v":[["silence",[2,2,[[18,2,2,0,2,[[571,1,1,0,1],[592,1,1,1,2]]]],[15448,15847]]]]},{"k":"H1746","v":[["Dumah",[4,4,[[0,1,1,0,1,[[24,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]],[12,1,1,2,3,[[338,1,1,2,3]]],[22,1,1,3,4,[[699,1,1,3,4]]]],[672,6254,10282,18046]]]]},{"k":"H1747","v":[["*",[4,4,[[18,4,4,0,4,[[499,1,1,0,1],[516,1,1,1,2],[539,1,1,2,3],[542,1,1,3,4]]]],[14206,14514,14828,14861]]],["silence",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14514]]],["silent",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14206]]],["waiteth",[2,2,[[18,2,2,0,2,[[539,1,1,0,1],[542,1,1,1,2]]]],[14828,14861]]]]},{"k":"H1748","v":[["*",[3,3,[[22,1,1,0,1,[[725,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[18604,20380,22767]]],["dumb",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22767]]],["silent",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18604]]],["wait",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20380]]]]},{"k":"H1749","v":[["wax",[4,4,[[18,3,3,0,3,[[499,1,1,0,1],[545,1,1,1,2],[574,1,1,2,3]]],[32,1,1,3,4,[[893,1,1,3,4]]]],[14218,14902,15483,22583]]]]},{"k":"H1750","v":[["joy",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13910]]]]},{"k":"H1751","v":[["pieces",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21793]]]]},{"k":"H1752","v":[["*",[2,2,[[18,1,1,0,1,[[561,1,1,0,1]]],[25,1,1,1,2,[[825,1,1,1,2]]]],[15269,21061]]],["+",[1,1,[[18,1,1,0,1,[[561,1,1,0,1]]]],[15269]]],["burn",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21061]]]]},{"k":"H1753","v":[["*",[7,6,[[26,7,6,0,6,[[851,1,1,0,1],[853,5,4,1,5],[855,1,1,5,6]]]],[21796,21838,21849,21858,21872,21930]]],["dwell",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[853,1,1,1,2],[855,1,1,2,3]]]],[21796,21838,21930]]],["dwelt",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21849,21858]]],["inhabitants",[2,1,[[26,2,1,0,1,[[853,2,1,0,1]]]],[21872]]]]},{"k":"H1754","v":[["*",[2,2,[[22,2,2,0,2,[[700,1,1,0,1],[707,1,1,1,2]]]],[18070,18196]]],["about",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18196]]],["ball",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18070]]]]},{"k":"H1755","v":[["*",[167,127,[[0,7,7,0,7,[[5,1,1,0,1],[6,1,1,1,2],[8,1,1,2,3],[14,1,1,3,4],[16,3,3,4,7]]],[1,19,17,7,24,[[50,1,1,7,8],[52,2,1,8,9],[61,3,3,9,12],[65,2,2,12,14],[66,2,1,14,15],[76,1,1,15,16],[78,1,1,16,17],[79,4,4,17,21],[80,2,2,21,23],[89,1,1,23,24]]],[2,14,14,24,38,[[92,1,1,24,25],[95,1,1,25,26],[96,1,1,26,27],[99,1,1,27,28],[106,1,1,28,29],[110,1,1,29,30],[111,1,1,30,31],[112,5,5,31,36],[113,1,1,36,37],[114,1,1,37,38]]],[3,10,10,38,48,[[125,1,1,38,39],[126,1,1,39,40],[131,5,5,40,45],[134,1,1,45,46],[148,1,1,46,47],[151,1,1,47,48]]],[4,11,10,48,58,[[153,1,1,48,49],[154,1,1,49,50],[159,1,1,50,51],[175,3,3,51,54],[181,1,1,54,55],[184,4,3,55,58]]],[5,2,2,58,60,[[208,2,2,58,60]]],[6,3,2,60,62,[[212,2,1,60,61],[213,1,1,61,62]]],[12,1,1,62,63,[[353,1,1,62,63]]],[16,2,1,63,64,[[434,2,1,63,64]]],[17,2,2,64,66,[[443,1,1,64,65],[477,1,1,65,66]]],[18,59,37,66,103,[[487,2,1,66,67],[489,1,1,67,68],[491,1,1,68,69],[499,1,1,69,70],[501,1,1,70,71],[510,2,1,71,72],[522,2,1,72,73],[525,1,1,73,74],[526,3,2,74,76],[538,2,1,76,77],[548,1,1,77,78],[549,2,1,78,79],[550,1,1,79,80],[554,2,1,80,81],[555,4,3,81,84],[556,2,1,84,85],[562,2,1,85,86],[566,4,2,86,88],[567,2,1,88,89],[572,1,1,89,90],[577,2,1,90,91],[579,5,3,91,94],[582,1,1,94,95],[583,2,1,95,96],[586,1,1,96,97],[589,1,1,97,98],[596,2,1,98,99],[612,2,1,99,100],[622,4,2,100,102],[623,2,1,102,103]]],[19,6,5,103,108,[[654,2,1,103,104],[657,4,4,104,108]]],[20,2,1,108,109,[[659,2,1,108,109]]],[22,18,11,109,120,[[691,2,1,109,110],[712,4,2,110,112],[716,1,1,112,113],[719,1,1,113,114],[729,3,2,114,116],[731,1,1,116,117],[736,2,1,117,118],[738,2,1,118,119],[739,2,1,119,120]]],[23,4,3,120,123,[[746,1,1,120,121],[751,1,1,121,122],[794,2,1,122,123]]],[24,2,1,123,124,[[801,2,1,123,124]]],[28,5,3,124,127,[[876,1,1,124,125],[877,2,1,125,126],[878,2,1,126,127]]]],[146,160,217,376,404,406,409,1538,1594,1830,1833,1858,1979,1980,1999,2293,2378,2390,2392,2403,2413,2433,2436,2722,2795,2867,2915,2986,3242,3362,3372,3416,3423,3433,3443,3445,3449,3499,3975,3996,4167,4168,4174,4176,4191,4280,4731,4874,4927,4952,5120,5502,5503,5508,5701,5763,5765,5778,6453,6454,6555,6570,10835,12862,13037,13938,14047,14073,14085,14234,14247,14377,14614,14647,14659,14667,14825,14994,15005,15035,15101,15117,15119,15121,15198,15276,15327,15330,15379,15464,15513,15533,15539,15545,15614,15682,15768,15805,15988,16188,16324,16333,16351,17193,17262,17263,17264,17265,17319,17926,18313,18320,18402,18455,18681,18682,18719,18798,18836,18847,18996,19148,20205,20461,22294,22313,22363]]],["+",[56,29,[[1,3,2,0,2,[[52,2,1,0,1],[66,1,1,1,2]]],[4,2,1,2,3,[[184,2,1,2,3]]],[16,2,1,3,4,[[434,2,1,3,4]]],[18,38,19,4,23,[[487,2,1,4,5],[522,2,1,5,6],[526,2,1,6,7],[538,2,1,7,8],[549,2,1,8,9],[554,2,1,9,10],[556,2,1,10,11],[562,2,1,11,12],[566,4,2,12,14],[567,2,1,14,15],[577,2,1,15,16],[579,4,2,16,18],[583,2,1,18,19],[596,2,1,19,20],[612,2,1,20,21],[622,2,1,21,22],[623,2,1,22,23]]],[19,2,1,23,24,[[654,2,1,23,24]]],[22,7,4,24,28,[[712,1,1,24,25],[736,2,1,25,26],[738,2,1,26,27],[739,2,1,27,28]]],[28,2,1,28,29,[[877,2,1,28,29]]]],[1594,1999,5765,12862,14047,14614,14659,14825,15005,15101,15198,15276,15327,15330,15379,15513,15533,15545,15682,15988,16188,16333,16351,17193,18313,18798,18836,18847,22313]]],["age",[2,2,[[17,1,1,0,1,[[443,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]]],[13037,18402]]],["all",[1,1,[[18,1,1,0,1,[[510,1,1,0,1]]]],[14377]]],["another",[1,1,[[18,1,1,0,1,[[622,1,1,0,1]]]],[16324]]],["generation",[55,46,[[0,2,2,0,2,[[6,1,1,0,1],[14,1,1,1,2]]],[1,2,2,2,4,[[50,1,1,2,3],[66,1,1,3,4]]],[3,1,1,4,5,[[148,1,1,4,5]]],[4,8,8,5,13,[[153,1,1,5,6],[154,1,1,6,7],[175,3,3,7,10],[181,1,1,10,11],[184,2,2,11,13]]],[6,2,1,13,14,[[212,2,1,13,14]]],[18,17,16,14,30,[[489,1,1,14,15],[491,1,1,15,16],[499,1,1,16,17],[501,1,1,17,18],[525,1,1,18,19],[526,1,1,19,20],[548,1,1,20,21],[550,1,1,21,22],[555,4,3,22,25],[572,1,1,25,26],[579,1,1,26,27],[586,1,1,27,28],[589,1,1,28,29],[622,1,1,29,30]]],[19,4,4,30,34,[[657,4,4,30,34]]],[20,2,1,34,35,[[659,2,1,34,35]]],[22,8,5,35,40,[[691,2,1,35,36],[712,3,2,36,38],[729,2,1,38,39],[731,1,1,39,40]]],[23,4,3,40,43,[[746,1,1,40,41],[751,1,1,41,42],[794,2,1,42,43]]],[24,2,1,43,44,[[801,2,1,43,44]]],[28,3,2,44,46,[[876,1,1,44,45],[878,2,1,45,46]]]],[160,376,1538,1999,4731,4927,4952,5502,5503,5508,5701,5763,5778,6555,14073,14085,14234,14247,14647,14667,14994,15035,15117,15119,15121,15464,15539,15768,15805,16324,17262,17263,17264,17265,17319,17926,18313,18320,18681,18719,18996,19148,20205,20461,22294,22363]]],["generations",[51,51,[[0,5,5,0,5,[[5,1,1,0,1],[8,1,1,1,2],[16,3,3,2,5]]],[1,14,14,5,19,[[61,3,3,5,8],[65,2,2,8,10],[76,1,1,10,11],[78,1,1,11,12],[79,4,4,12,16],[80,2,2,16,18],[89,1,1,18,19]]],[2,14,14,19,33,[[92,1,1,19,20],[95,1,1,20,21],[96,1,1,21,22],[99,1,1,22,23],[106,1,1,23,24],[110,1,1,24,25],[111,1,1,25,26],[112,5,5,26,31],[113,1,1,31,32],[114,1,1,32,33]]],[3,8,8,33,41,[[126,1,1,33,34],[131,5,5,34,39],[134,1,1,39,40],[151,1,1,40,41]]],[4,1,1,41,42,[[159,1,1,41,42]]],[5,2,2,42,44,[[208,2,2,42,44]]],[6,1,1,44,45,[[213,1,1,44,45]]],[12,1,1,45,46,[[353,1,1,45,46]]],[17,1,1,46,47,[[477,1,1,46,47]]],[18,2,2,47,49,[[510,1,1,47,48],[582,1,1,48,49]]],[22,2,2,49,51,[[719,1,1,49,50],[729,1,1,50,51]]]],[146,217,404,406,409,1830,1833,1858,1979,1980,2293,2378,2390,2392,2403,2413,2433,2436,2722,2795,2867,2915,2986,3242,3362,3372,3416,3423,3433,3443,3445,3449,3499,3996,4167,4168,4174,4176,4191,4280,4874,5120,6453,6454,6570,10835,13938,14377,15614,18455,18682]]],["posterity",[1,1,[[3,1,1,0,1,[[125,1,1,0,1]]]],[3975]]]]},{"k":"H1756","v":[["Dor",[7,6,[[5,4,3,0,3,[[197,1,1,0,1],[198,2,1,1,2],[203,1,1,2,3]]],[6,1,1,3,4,[[211,1,1,3,4]]],[10,1,1,4,5,[[294,1,1,4,5]]],[12,1,1,5,6,[[344,1,1,5,6]]]],[6109,6153,6286,6536,8855,10564]]]]},{"k":"H1757","v":[["Dura",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21808]]]]},{"k":"H1758","v":[["*",[14,13,[[4,1,1,0,1,[[177,1,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]],[11,1,1,2,3,[[325,1,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[17,1,1,4,5,[[474,1,1,4,5]]],[22,5,4,5,9,[[703,2,1,5,6],[706,2,2,6,8],[719,1,1,8,9]]],[27,1,1,9,10,[[871,1,1,9,10]]],[29,1,1,10,11,[[879,1,1,10,11]]],[32,1,1,11,12,[[896,1,1,11,12]]],[34,1,1,12,13,[[905,1,1,12,13]]]],[5551,6726,9878,10954,13849,18128,18191,18192,18466,22236,22367,22633,22780]]],["+",[2,2,[[6,1,1,0,1,[[218,1,1,0,1]]],[29,1,1,1,2,[[879,1,1,1,2]]]],[6726,22367]]],["break",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13849]]],["down",[2,1,[[22,2,1,0,1,[[703,2,1,0,1]]]],[18128]]],["out",[2,2,[[4,1,1,0,1,[[177,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]]],[5551,22236]]],["thresh",[3,3,[[22,1,1,0,1,[[719,1,1,0,1]]],[32,1,1,1,2,[[896,1,1,1,2]]],[34,1,1,2,3,[[905,1,1,2,3]]]],[18466,22633,22780]]],["threshed",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18191]]],["threshing",[3,3,[[11,1,1,0,1,[[325,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]],[22,1,1,2,3,[[706,1,1,2,3]]]],[9878,10954,18192]]]]},{"k":"H1759","v":[["down",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21956]]]]},{"k":"H1760","v":[["*",[10,9,[[18,7,6,0,6,[[512,1,1,0,1],[513,1,1,1,2],[539,1,1,2,3],[595,2,1,3,4],[617,1,1,4,5],[624,1,1,5,6]]],[19,1,1,6,7,[[641,1,1,6,7]]],[22,1,1,7,8,[[734,1,1,7,8]]],[23,1,1,8,9,[[767,1,1,8,9]]]],[14415,14450,14830,15882,16267,16353,16804,18761,19496]]],["+",[2,1,[[18,2,1,0,1,[[595,2,1,0,1]]]],[15882]]],["away",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16804]]],["chase",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14415]]],["down",[1,1,[[18,1,1,0,1,[[513,1,1,0,1]]]],[14450]]],["on",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19496]]],["outcasts",[2,2,[[18,1,1,0,1,[[624,1,1,0,1]]],[22,1,1,1,2,[[734,1,1,1,2]]]],[16353,18761]]],["overthrow",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16267]]],["tottering",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14830]]]]},{"k":"H1761","v":[["musick",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21923]]]]},{"k":"H1762","v":[["+",[2,2,[[18,2,2,0,2,[[533,1,1,0,1],[593,1,1,1,2]]]],[14768,15856]]]]},{"k":"H1763","v":[["*",[6,6,[[26,6,6,0,6,[[851,1,1,0,1],[853,1,1,1,2],[854,1,1,2,3],[855,1,1,3,4],[856,2,2,4,6]]]],[21789,21842,21893,21931,21940,21952]]],["afraid",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21842]]],["dreadful",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21940,21952]]],["fear",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21931]]],["feared",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21893]]],["terrible",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21789]]]]},{"k":"H1764","v":[["millet",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20538]]]]},{"k":"H1765","v":[["*",[4,4,[[13,1,1,0,1,[[392,1,1,0,1]]],[16,3,3,1,4,[[428,1,1,1,2],[431,1,1,2,3],[433,1,1,3,4]]]],[11752,12762,12805,12831]]],["hasted",[2,2,[[13,1,1,0,1,[[392,1,1,0,1]]],[16,1,1,1,2,[[431,1,1,1,2]]]],[11752,12805]]],["hastened",[1,1,[[16,1,1,0,1,[[428,1,1,0,1]]]],[12762]]],["on",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12831]]]]},{"k":"H1766","v":[["*",[2,2,[[6,1,1,0,1,[[212,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[6563,22319]]],["thrust",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22319]]],["vexed",[1,1,[[6,1,1,0,1,[[212,1,1,0,1]]]],[6563]]]]},{"k":"H1767","v":[["*",[34,31,[[1,2,2,0,2,[[85,2,2,0,2]]],[2,4,4,2,6,[[94,1,1,2,3],[101,1,1,3,4],[114,2,2,4,6]]],[4,2,2,6,8,[[167,1,1,6,7],[177,1,1,7,8]]],[8,2,2,8,10,[[236,1,1,8,9],[242,1,1,9,10]]],[10,1,1,10,11,[[304,1,1,10,11]]],[11,1,1,11,12,[[316,1,1,11,12]]],[13,2,2,12,14,[[378,1,1,12,13],[390,1,1,13,14]]],[15,1,1,14,15,[[417,1,1,14,15]]],[16,1,1,15,16,[[426,1,1,15,16]]],[17,1,1,16,17,[[474,1,1,16,17]]],[19,2,2,17,19,[[652,1,1,17,18],[654,1,1,18,19]]],[22,5,3,19,22,[[706,1,1,19,20],[718,2,1,20,21],[744,2,1,21,22]]],[23,4,4,22,26,[[764,1,1,22,23],[775,1,1,23,24],[792,1,1,24,25],[793,1,1,25,26]]],[30,1,1,26,27,[[888,1,1,26,27]]],[33,1,1,27,28,[[901,1,1,27,28]]],[34,2,1,28,29,[[904,2,1,28,29]]],[37,1,1,29,30,[[924,1,1,29,30]]],[38,1,1,30,31,[[927,1,1,30,31]]]],[2571,2573,2837,3052,3495,3497,5327,5549,7219,7368,9246,9611,11448,11682,12390,12720,13859,17129,17196,18183,18436,18945,19430,19711,20107,20136,22515,22711,22761,23084,23130]]],["+",[18,17,[[1,1,1,0,1,[[85,1,1,0,1]]],[2,4,4,1,5,[[94,1,1,1,2],[101,1,1,2,3],[114,2,2,3,5]]],[8,2,2,5,7,[[236,1,1,5,6],[242,1,1,6,7]]],[10,1,1,7,8,[[304,1,1,7,8]]],[11,1,1,8,9,[[316,1,1,8,9]]],[13,2,2,9,11,[[378,1,1,9,10],[390,1,1,10,11]]],[22,3,2,11,13,[[706,1,1,11,12],[744,2,1,12,13]]],[23,3,3,13,16,[[764,1,1,13,14],[775,1,1,14,15],[792,1,1,15,16]]],[37,1,1,16,17,[[924,1,1,16,17]]]],[2571,2837,3052,3495,3497,7219,7368,9246,9611,11448,11682,18183,18945,19430,19711,20107,23084]]],["ability",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12390]]],["among",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13859]]],["enough",[5,5,[[19,1,1,0,1,[[654,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]],[30,1,1,2,3,[[888,1,1,2,3]]],[33,1,1,3,4,[[901,1,1,3,4]]],[38,1,1,4,5,[[927,1,1,4,5]]]],[17196,20136,22515,22711,23130]]],["much",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12720]]],["sufficient",[5,4,[[1,1,1,0,1,[[85,1,1,0,1]]],[4,1,1,1,2,[[167,1,1,1,2]]],[19,1,1,2,3,[[652,1,1,2,3]]],[22,2,1,3,4,[[718,2,1,3,4]]]],[2573,5327,17129,18436]]],["to",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5549]]],["very",[2,1,[[34,2,1,0,1,[[904,2,1,0,1]]]],[22761]]]]},{"k":"H1768","v":[["*",[335,183,[[14,91,54,0,54,[[406,15,12,0,12],[407,25,13,12,25],[408,23,14,25,39],[409,28,15,39,54]]],[23,1,1,54,55,[[754,1,1,54,55]]],[26,243,128,55,183,[[851,65,32,55,87],[852,40,22,87,109],[853,40,21,109,130],[854,38,18,130,148],[855,39,21,148,169],[856,21,14,169,183]]]],[12120,12121,12122,12123,12124,12125,12126,12127,12128,12129,12133,12134,12135,12136,12138,12140,12142,12144,12145,12146,12147,12148,12149,12150,12151,12152,12153,12154,12155,12156,12157,12159,12160,12161,12162,12163,12164,12166,12169,12185,12186,12187,12188,12189,12190,12191,12192,12193,12194,12195,12196,12197,12198,12199,19212,21766,21767,21768,21769,21772,21773,21774,21776,21777,21778,21781,21782,21783,21784,21785,21786,21787,21788,21790,21791,21792,21793,21795,21796,21797,21798,21799,21801,21802,21803,21805,21807,21808,21809,21810,21812,21813,21814,21815,21817,21818,21819,21821,21822,21824,21825,21826,21827,21829,21832,21833,21834,21835,21836,21838,21839,21843,21845,21846,21852,21854,21855,21856,21857,21859,21860,21861,21862,21863,21866,21867,21869,21870,21871,21874,21876,21877,21879,21881,21885,21886,21887,21888,21889,21890,21893,21894,21895,21896,21897,21898,21899,21903,21906,21907,21908,21909,21912,21913,21915,21917,21918,21919,21920,21921,21922,21924,21925,21927,21928,21929,21930,21931,21932,21937,21939,21940,21942,21943,21944,21947,21950,21952,21953,21955,21956,21960,21961]]],["+",[64,54,[[14,12,12,0,12,[[406,2,2,0,2],[408,4,4,2,6],[409,6,6,6,12]]],[26,52,42,12,54,[[851,17,13,12,25],[852,5,5,25,30],[853,9,7,30,37],[854,5,4,37,41],[855,8,7,41,48],[856,8,6,48,54]]]],[12124,12133,12152,12159,12160,12162,12187,12191,12194,12195,12196,12199,21766,21767,21768,21773,21777,21786,21787,21792,21796,21798,21799,21801,21803,21813,21815,21818,21829,21836,21854,21855,21860,21862,21863,21869,21870,21881,21886,21895,21896,21907,21908,21909,21912,21915,21927,21929,21937,21940,21942,21943,21944,21955]]],["But",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21767]]],["That",[6,6,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]],[26,4,4,2,6,[[852,1,1,2,3],[855,3,3,3,6]]]],[12125,12161,21836,21918,21920,21931]]],["because",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[855,1,1,1,2]]]],[21846,21928]]],["for",[6,6,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,5,5,1,6,[[851,3,3,1,4],[853,1,1,4,5],[855,1,1,5,6]]]],[12196,21778,21781,21795,21855,21931]]],["of",[63,49,[[14,18,13,0,13,[[406,2,2,0,2],[407,8,5,2,7],[408,3,2,7,9],[409,5,4,9,13]]],[26,45,36,13,49,[[851,16,11,13,24],[852,6,6,24,30],[853,6,4,30,34],[854,10,8,34,42],[855,4,4,42,46],[856,3,3,46,49]]]],[12120,12125,12136,12145,12147,12148,12150,12155,12159,12185,12190,12194,12199,21772,21778,21783,21790,21791,21792,21796,21797,21799,21802,21807,21808,21829,21832,21833,21835,21836,21852,21860,21863,21866,21877,21879,21881,21887,21890,21897,21898,21903,21918,21921,21924,21931,21939,21960,21961]]],["seeing",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21805]]],["than",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21826]]],["that",[94,81,[[14,30,26,0,26,[[406,6,6,0,6],[407,11,10,6,16],[408,5,4,16,20],[409,8,6,20,26]]],[23,1,1,26,27,[[754,1,1,26,27]]],[26,63,54,27,81,[[851,15,13,27,40],[852,14,10,40,50],[853,13,11,50,61],[854,9,9,61,70],[855,10,9,70,79],[856,2,2,79,81]]]],[12121,12123,12125,12126,12127,12129,12135,12138,12140,12142,12144,12145,12146,12148,12149,12151,12153,12159,12162,12163,12186,12189,12192,12194,12197,12198,19212,21766,21767,21768,21769,21774,21776,21783,21788,21792,21793,21798,21803,21805,21810,21812,21814,21817,21822,21825,21827,21829,21835,21836,21838,21839,21843,21846,21854,21857,21859,21862,21863,21867,21869,21877,21879,21888,21889,21890,21893,21895,21899,21903,21907,21912,21913,21915,21917,21918,21920,21922,21930,21940,21953]]],["those",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21874]]],["what",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[852,2,2,1,3]]]],[21781,21812,21822]]],["when",[4,4,[[26,4,4,0,4,[[852,1,1,0,1],[854,1,1,1,2],[855,2,2,2,4]]]],[21814,21894,21915,21919]]],["where",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12154]]],["whereas",[4,4,[[26,4,4,0,4,[[851,2,2,0,2],[853,2,2,2,4]]]],[21799,21801,21860,21863]]],["which",[56,52,[[14,24,22,0,22,[[406,3,3,0,3],[407,5,5,3,8],[408,9,7,8,15],[409,7,7,15,22]]],[26,32,30,22,52,[[851,5,5,22,27],[852,6,6,27,33],[853,2,2,33,35],[854,5,4,35,39],[855,7,7,39,46],[856,7,6,46,52]]]],[12122,12128,12134,12136,12140,12148,12150,12151,12156,12157,12160,12163,12164,12166,12169,12187,12188,12189,12190,12193,12194,12198,21772,21784,21785,21797,21802,21809,21819,21821,21822,21825,21836,21857,21861,21876,21877,21887,21897,21906,21913,21917,21918,21920,21929,21931,21944,21947,21950,21952,21953,21956]]],["who",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[852,1,1,1,2],[855,1,1,2,3]]]],[21781,21835,21932]]],["whom",[15,12,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,13,10,2,12,[[851,1,1,2,3],[852,2,2,3,5],[853,1,1,5,6],[854,7,4,6,10],[855,2,2,10,12]]]],[12120,12148,21782,21819,21824,21845,21885,21886,21887,21893,21921,21925]]],["whose",[10,10,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,9,9,1,10,[[851,2,2,1,3],[852,1,1,3,4],[853,4,4,4,8],[854,1,1,8,9],[856,1,1,9,10]]]],[12188,21769,21784,21834,21845,21856,21871,21874,21897,21952]]]]},{"k":"H1769","v":[["*",[11,11,[[3,5,5,0,5,[[137,1,1,0,1],[148,2,2,1,3],[149,2,2,3,5]]],[5,2,2,5,7,[[199,2,2,5,7]]],[15,1,1,7,8,[[423,1,1,7,8]]],[22,1,1,8,9,[[693,1,1,8,9]]],[23,2,2,9,11,[[792,2,2,9,11]]]],[4370,4721,4752,4805,4806,6163,6171,12613,17962,20098,20102]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4806]]],["Dibon",[9,9,[[3,3,3,0,3,[[137,1,1,0,1],[148,2,2,1,3]]],[5,2,2,3,5,[[199,2,2,3,5]]],[15,1,1,5,6,[[423,1,1,5,6]]],[22,1,1,6,7,[[693,1,1,6,7]]],[23,2,2,7,9,[[792,2,2,7,9]]]],[4370,4721,4752,6163,6171,12613,17962,20098,20102]]],["Dibongad",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4805]]]]},{"k":"H1770","v":[["fish",[1,1,[[23,1,1,0,1,[[760,1,1,0,1]]]],[19352]]]]},{"k":"H1771","v":[["fishers",[2,2,[[22,1,1,0,1,[[697,1,1,0,1]]],[23,1,1,1,2,[[760,1,1,1,2]]]],[18012,19352]]]]},{"k":"H1772","v":[["*",[2,2,[[4,1,1,0,1,[[166,1,1,0,1]]],[22,1,1,1,2,[[712,1,1,1,2]]]],[5303,18318]]],["vulture",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5303]]],["vultures",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18318]]]]},{"k":"H1773","v":[["ink",[1,1,[[23,1,1,0,1,[[780,1,1,0,1]]]],[19860]]]]},{"k":"H1774","v":[["Dizahab",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4893]]]]},{"k":"H1775","v":[["Dimon",[2,1,[[22,2,1,0,1,[[693,2,1,0,1]]]],[17969]]]]},{"k":"H1776","v":[["Dimonah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6224]]]]},{"k":"H1777","v":[["*",[24,24,[[0,4,4,0,4,[[5,1,1,0,1],[14,1,1,1,2],[29,1,1,2,3],[48,1,1,3,4]]],[4,1,1,4,5,[[184,1,1,4,5]]],[8,1,1,5,6,[[237,1,1,5,6]]],[9,1,1,6,7,[[285,1,1,6,7]]],[17,1,1,7,8,[[471,1,1,7,8]]],[18,8,8,8,16,[[484,1,1,8,9],[486,1,1,9,10],[527,1,1,10,11],[531,1,1,11,12],[549,1,1,12,13],[573,1,1,13,14],[587,1,1,14,15],[612,1,1,15,16]]],[19,1,1,16,17,[[658,1,1,16,17]]],[20,1,1,17,18,[[664,1,1,17,18]]],[22,1,1,18,19,[[681,1,1,18,19]]],[23,4,4,19,23,[[749,1,1,19,20],[765,1,1,20,21],[766,1,1,21,22],[774,1,1,22,23]]],[37,1,1,23,24,[[913,1,1,23,24]]]],[140,374,836,1489,5794,7250,8520,13767,14003,14029,14672,14726,15002,15475,15792,16189,17293,17427,17720,19086,19452,19470,19680,22919]]],["+",[1,1,[[37,1,1,0,1,[[913,1,1,0,1]]]],[22919]]],["Execute",[1,1,[[23,1,1,0,1,[[765,1,1,0,1]]]],[19452]]],["cause",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17293]]],["contend",[1,1,[[20,1,1,0,1,[[664,1,1,0,1]]]],[17427]]],["judge",[13,13,[[0,2,2,0,2,[[14,1,1,0,1],[48,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[18,7,7,4,11,[[484,1,1,4,5],[527,1,1,5,6],[531,1,1,6,7],[549,1,1,7,8],[573,1,1,8,9],[587,1,1,9,10],[612,1,1,10,11]]],[22,1,1,11,12,[[681,1,1,11,12]]],[23,1,1,12,13,[[749,1,1,12,13]]]],[374,1489,5794,7250,14003,14672,14726,15002,15475,15792,16189,17720,19086]]],["judged",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[23,1,1,1,2,[[766,1,1,1,2]]]],[836,19470]]],["judgeth",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13767]]],["judgment",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14029]]],["plead",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19680]]],["strife",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8520]]],["strive",[1,1,[[0,1,1,0,1,[[5,1,1,0,1]]]],[140]]]]},{"k":"H1778","v":[["judge",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12198]]]]},{"k":"H1779","v":[["*",[20,17,[[4,2,1,0,1,[[169,2,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]],[17,4,3,2,5,[[454,1,1,2,3],[470,1,1,3,4],[471,2,1,4,5]]],[18,3,3,5,8,[[486,1,1,5,6],[553,1,1,6,7],[617,1,1,7,8]]],[19,5,5,8,13,[[647,1,1,8,9],[649,1,1,9,10],[656,1,1,10,11],[658,2,2,11,13]]],[22,1,1,13,14,[[688,1,1,13,14]]],[23,4,3,14,17,[[749,2,1,14,15],[766,1,1,15,16],[774,1,1,16,17]]]],[5372,12715,13326,13734,13753,14025,15089,16275,16962,17025,17231,17289,17292,17852,19086,19470,19680]]],["+",[2,2,[[17,1,1,0,1,[[454,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[13326,17852]]],["cause",[8,7,[[18,2,2,0,2,[[486,1,1,0,1],[617,1,1,1,2]]],[19,2,2,2,4,[[656,1,1,2,3],[658,1,1,3,4]]],[23,4,3,4,7,[[749,2,1,4,5],[766,1,1,5,6],[774,1,1,6,7]]]],[14025,16275,17231,17292,19086,19470,19680]]],["judgment",[7,6,[[16,1,1,0,1,[[426,1,1,0,1]]],[17,3,2,1,3,[[470,1,1,1,2],[471,2,1,2,3]]],[18,1,1,3,4,[[553,1,1,3,4]]],[19,2,2,4,6,[[647,1,1,4,5],[658,1,1,5,6]]]],[12715,13734,13753,15089,16962,17289]]],["plea",[2,1,[[4,2,1,0,1,[[169,2,1,0,1]]]],[5372]]],["strife",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17025]]]]},{"k":"H1780","v":[["judgment",[5,5,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,4,4,1,5,[[853,1,1,1,2],[856,3,3,2,5]]]],[12199,21874,21943,21955,21959]]]]},{"k":"H1781","v":[["judge",[2,2,[[8,1,1,0,1,[[259,1,1,0,1]]],[18,1,1,1,2,[[545,1,1,1,2]]]],[7854,14905]]]]},{"k":"H1782","v":[["judges",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12198]]]]},{"k":"H1783","v":[["*",[8,8,[[0,8,8,0,8,[[29,1,1,0,1],[33,6,6,1,7],[45,1,1,7,8]]]],[851,981,983,985,993,1005,1006,1401]]],["Dinah",[7,7,[[0,7,7,0,7,[[29,1,1,0,1],[33,5,5,1,6],[45,1,1,6,7]]]],[851,981,983,985,993,1006,1401]]],["Dinah's",[1,1,[[0,1,1,0,1,[[33,1,1,0,1]]]],[1005]]]]},{"k":"H1784","v":[["Dinaites",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12119]]]]},{"k":"H1785","v":[["*",[6,6,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,1,1,1,2,[[796,1,1,1,2]]],[25,4,4,2,6,[[805,1,1,2,3],[818,1,1,3,4],[822,1,1,4,5],[827,1,1,5,6]]]],[10223,20280,20531,20842,20966,21108]]],["fort",[3,3,[[25,3,3,0,3,[[805,1,1,0,1],[822,1,1,1,2],[827,1,1,2,3]]]],[20531,20966,21108]]],["forts",[3,3,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,1,1,1,2,[[796,1,1,1,2]]],[25,1,1,2,3,[[818,1,1,2,3]]]],[10223,20280,20842]]]]},{"k":"H1786","v":[["threshing",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3529]]]]},{"k":"H1787","v":[["Dishon",[7,6,[[0,4,4,0,4,[[35,4,4,0,4]]],[12,3,2,4,6,[[338,3,2,4,6]]]],[1061,1065,1066,1070,10290,10293]]]]},{"k":"H1788","v":[["pygarg",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5295]]]]},{"k":"H1789","v":[["Dishan",[5,5,[[0,3,3,0,3,[[35,3,3,0,3]]],[12,2,2,3,5,[[338,2,2,3,5]]]],[1061,1068,1070,10290,10294]]]]},{"k":"H1790","v":[["*",[4,4,[[18,3,3,0,3,[[486,1,1,0,1],[487,1,1,1,2],[551,1,1,2,3]]],[19,1,1,3,4,[[653,1,1,3,4]]]],[14030,14059,15069,17169]]],["afflicted",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17169]]],["oppressed",[3,3,[[18,3,3,0,3,[[486,1,1,0,1],[487,1,1,1,2],[551,1,1,2,3]]]],[14030,14059,15069]]]]},{"k":"H1791","v":[["*",[13,11,[[14,13,11,0,11,[[406,6,5,0,5],[407,3,3,5,8],[408,4,3,8,11]]]],[12123,12125,12126,12129,12131,12142,12150,12151,12158,12159,12163]]],["same",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12150]]],["this",[12,10,[[14,12,10,0,10,[[406,6,5,0,5],[407,2,2,5,7],[408,4,3,7,10]]]],[12123,12125,12126,12129,12131,12142,12151,12158,12159,12163]]]]},{"k":"H1792","v":[["*",[18,18,[[17,6,6,0,6,[[439,1,1,0,1],[440,1,1,1,2],[441,1,1,2,3],[454,1,1,3,4],[457,1,1,4,5],[469,1,1,5,6]]],[18,4,4,6,10,[[549,1,1,6,7],[566,1,1,7,8],[571,1,1,8,9],[620,1,1,9,10]]],[19,1,1,10,11,[[649,1,1,10,11]]],[22,5,5,11,16,[[681,1,1,11,12],[697,1,1,12,13],[731,2,2,13,15],[735,1,1,15,16]]],[23,1,1,16,17,[[788,1,1,16,17]]],[24,1,1,17,18,[[799,1,1,17,18]]]],[12949,12955,12987,13299,13398,13708,15004,15336,15436,16296,17037,17722,18014,18716,18721,18780,20020,20388]]],["+",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17722]]],["broken",[3,3,[[17,1,1,0,1,[[457,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]],[22,1,1,2,3,[[697,1,1,2,3]]]],[13398,15336,18014]]],["bruise",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18721]]],["bruised",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18716]]],["crush",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20388]]],["crushed",[2,2,[[17,2,2,0,2,[[439,1,1,0,1],[440,1,1,1,2]]]],[12949,12955]]],["destroy",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12987]]],["destroyed",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13708]]],["humbled",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20020]]],["ones",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18780]]],["oppress",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17037]]],["pieces",[3,3,[[17,1,1,0,1,[[454,1,1,0,1]]],[18,2,2,1,3,[[549,1,1,1,2],[571,1,1,2,3]]]],[13299,15004,15436]]],["smitten",[1,1,[[18,1,1,0,1,[[620,1,1,0,1]]]],[16296]]]]},{"k":"H1793","v":[["*",[3,3,[[18,2,2,0,2,[[511,1,1,0,1],[567,1,1,1,2]]],[22,1,1,2,3,[[735,1,1,2,3]]]],[14406,15381,18780]]],["contrite",[2,2,[[18,1,1,0,1,[[511,1,1,0,1]]],[22,1,1,1,2,[[735,1,1,1,2]]]],[14406,18780]]],["destruction",[1,1,[[18,1,1,0,1,[[567,1,1,0,1]]]],[15381]]]]},{"k":"H1794","v":[["*",[5,5,[[18,5,5,0,5,[[487,1,1,0,1],[515,1,1,1,2],[521,1,1,2,3],[528,2,2,3,5]]]],[14051,14498,14590,14699,14708]]],["broken",[3,3,[[18,3,3,0,3,[[515,1,1,0,1],[521,1,1,1,2],[528,1,1,2,3]]]],[14498,14590,14699]]],["contrite",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14708]]],["croucheth",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14051]]]]},{"k":"H1795","v":[["+",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5501]]]]},{"k":"H1796","v":[["waves",[1,1,[[18,1,1,0,1,[[570,1,1,0,1]]]],[15429]]]]},{"k":"H1797","v":[["*",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[856,2,2,1,3]]]],[21789,21953,21954]]],["This",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21789]]],["same",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21954]]],["that",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21953]]]]},{"k":"H1798","v":[["rams",[3,3,[[14,3,3,0,3,[[408,2,2,0,2],[409,1,1,2,3]]]],[12160,12168,12190]]]]},{"k":"H1799","v":[["*",[3,2,[[14,3,2,0,2,[[406,2,1,0,1],[408,1,1,1,2]]]],[12125,12153]]],["record",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12153]]],["records",[2,1,[[14,2,1,0,1,[[406,2,1,0,1]]]],[12125]]]]},{"k":"H1800","v":[["*",[48,47,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,2,2,1,3,[[72,1,1,1,2],[79,1,1,2,3]]],[2,2,2,3,5,[[103,1,1,3,4],[108,1,1,4,5]]],[6,1,1,5,6,[[216,1,1,5,6]]],[7,1,1,6,7,[[234,1,1,6,7]]],[8,1,1,7,8,[[237,1,1,7,8]]],[9,2,2,8,10,[[269,1,1,8,9],[279,1,1,9,10]]],[17,6,6,10,16,[[440,1,1,10,11],[455,2,2,11,13],[466,1,1,13,14],[469,2,2,14,16]]],[18,5,5,16,21,[[518,1,1,16,17],[549,1,1,17,18],[559,2,2,18,20],[590,1,1,20,21]]],[19,15,14,21,35,[[637,1,1,21,22],[641,1,1,22,23],[646,2,2,23,25],[648,1,1,25,26],[649,4,3,26,29],[655,4,4,29,33],[656,2,2,33,35]]],[22,5,5,35,40,[[688,1,1,35,36],[689,1,1,36,37],[692,1,1,37,38],[703,1,1,38,39],[704,1,1,39,40]]],[23,2,2,40,42,[[749,1,1,40,41],[783,1,1,41,42]]],[29,4,4,42,46,[[880,1,1,42,43],[882,1,1,43,44],[883,1,1,44,45],[886,1,1,45,46]]],[35,1,1,46,47,[[908,1,1,46,47]]]],[1214,2147,2397,3132,3296,6669,7182,7248,8082,8321,12967,13336,13345,13604,13702,13711,14543,15013,15236,15237,15820,16671,16803,16929,16942,16997,17024,17031,17037,17199,17204,17207,17211,17231,17238,17852,17888,17958,18122,18136,19062,19933,22386,22411,22434,22487,22832]]],["+",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8321]]],["man",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2147]]],["needy",[2,2,[[22,2,2,0,2,[[688,1,1,0,1],[704,1,1,1,2]]]],[17852,18136]]],["poor",[43,42,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,1,1,1,2,[[79,1,1,1,2]]],[2,2,2,2,4,[[103,1,1,2,3],[108,1,1,3,4]]],[6,1,1,4,5,[[216,1,1,4,5]]],[7,1,1,5,6,[[234,1,1,5,6]]],[8,1,1,6,7,[[237,1,1,6,7]]],[17,6,6,7,13,[[440,1,1,7,8],[455,2,2,8,10],[466,1,1,10,11],[469,2,2,11,13]]],[18,5,5,13,18,[[518,1,1,13,14],[549,1,1,14,15],[559,2,2,15,17],[590,1,1,17,18]]],[19,15,14,18,32,[[637,1,1,18,19],[641,1,1,19,20],[646,2,2,20,22],[648,1,1,22,23],[649,4,3,23,26],[655,4,4,26,30],[656,2,2,30,32]]],[22,3,3,32,35,[[689,1,1,32,33],[692,1,1,33,34],[703,1,1,34,35]]],[23,2,2,35,37,[[749,1,1,35,36],[783,1,1,36,37]]],[29,4,4,37,41,[[880,1,1,37,38],[882,1,1,38,39],[883,1,1,39,40],[886,1,1,40,41]]],[35,1,1,41,42,[[908,1,1,41,42]]]],[1214,2397,3132,3296,6669,7182,7248,12967,13336,13345,13604,13702,13711,14543,15013,15236,15237,15820,16671,16803,16929,16942,16997,17024,17031,17037,17199,17204,17207,17211,17231,17238,17888,17958,18122,19062,19933,22386,22411,22434,22487,22832]]],["weaker",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8082]]]]},{"k":"H1801","v":[["*",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]],[21,1,1,2,3,[[672,1,1,2,3]]],[22,1,1,3,4,[[713,1,1,3,4]]],[35,1,1,4,5,[[906,1,1,4,5]]]],[8632,14147,17562,18326,22796]]],["leap",[2,2,[[22,1,1,0,1,[[713,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]]],[18326,22796]]],["leaped",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8632]]],["leaping",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17562]]],["over",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14147]]]]},{"k":"H1802","v":[["*",[5,4,[[1,3,2,0,2,[[51,3,2,0,2]]],[18,1,1,2,3,[[507,1,1,2,3]]],[19,1,1,3,4,[[647,1,1,3,4]]]],[1570,1573,14320,16959]]],["+",[2,1,[[1,2,1,0,1,[[51,2,1,0,1]]]],[1573]]],["drew",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1570]]],["out",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16959]]],["up",[1,1,[[18,1,1,0,1,[[507,1,1,0,1]]]],[14320]]]]},{"k":"H1803","v":[["*",[7,7,[[11,2,2,0,2,[[336,1,1,0,1],[337,1,1,1,2]]],[21,1,1,2,3,[[677,1,1,2,3]]],[22,1,1,3,4,[[716,1,1,3,4]]],[23,3,3,4,7,[[784,1,1,4,5],[796,2,2,5,7]]]],[10216,10234,17632,18402,19948,20291,20292]]],["+",[5,5,[[11,1,1,0,1,[[337,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]],[23,3,3,2,5,[[784,1,1,2,3],[796,2,2,3,5]]]],[10234,18402,19948,20291,20292]]],["hair",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17632]]],["sort",[1,1,[[11,1,1,0,1,[[336,1,1,0,1]]]],[10216]]]]},{"k":"H1804","v":[["*",[3,2,[[25,3,2,0,2,[[833,3,2,0,2]]]],[21250,21261]]],["trouble",[2,1,[[25,2,1,0,1,[[833,2,1,0,1]]]],[21261]]],["troubledst",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21250]]]]},{"k":"H1805","v":[["+",[2,2,[[3,1,1,0,1,[[140,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[4453,18435]]]]},{"k":"H1806","v":[["*",[7,7,[[12,2,2,0,2,[[340,1,1,0,1],[361,1,1,1,2]]],[14,1,1,2,3,[[404,1,1,2,3]]],[15,2,2,3,5,[[418,1,1,3,4],[419,1,1,4,5]]],[23,2,2,5,7,[[780,2,2,5,7]]]],[10385,11033,12087,12411,12482,19854,19867]]],["Dalaiah",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10385]]],["Delaiah",[6,6,[[12,1,1,0,1,[[361,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,2,2,2,4,[[418,1,1,2,3],[419,1,1,3,4]]],[23,2,2,4,6,[[780,2,2,4,6]]]],[11033,12087,12411,12482,19854,19867]]]]},{"k":"H1807","v":[["Delilah",[6,6,[[6,6,6,0,6,[[226,6,6,0,6]]]],[6953,6955,6959,6961,6962,6967]]]]},{"k":"H1808","v":[["branches",[8,8,[[23,1,1,0,1,[[755,1,1,0,1]]],[25,7,7,1,8,[[818,3,3,1,4],[820,1,1,4,5],[832,3,3,5,8]]]],[19242,20831,20832,20848,20892,21237,21239,21242]]]]},{"k":"H1809","v":[["*",[9,9,[[6,1,1,0,1,[[216,1,1,0,1]]],[17,1,1,1,2,[[463,1,1,1,2]]],[18,3,3,2,5,[[556,1,1,2,3],[593,1,1,3,4],[619,1,1,4,5]]],[19,1,1,5,6,[[653,1,1,5,6]]],[22,3,3,6,9,[[695,1,1,6,7],[697,1,1,7,8],[716,1,1,8,9]]]],[6660,13508,15193,15854,16292,17148,17987,18010,18404]]],["+",[2,2,[[18,2,2,0,2,[[556,1,1,0,1],[619,1,1,1,2]]]],[15193,16292]]],["emptied",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18010]]],["equal",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17148]]],["fail",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18404]]],["impoverished",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6660]]],["low",[1,1,[[18,1,1,0,1,[[593,1,1,0,1]]]],[15854]]],["thin",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17987]]],["up",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13508]]]]},{"k":"H1810","v":[["Dilean",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6240]]]]},{"k":"H1811","v":[["*",[3,3,[[17,1,1,0,1,[[451,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[20,1,1,2,3,[[668,1,1,2,3]]]],[13258,15926,17511]]],["melteth",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15926]]],["out",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13258]]],["through",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17511]]]]},{"k":"H1812","v":[["dropping",[2,2,[[19,2,2,0,2,[[646,1,1,0,1],[654,1,1,1,2]]]],[16938,17184]]]]},{"k":"H1813","v":[["Dalphon",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12841]]]]},{"k":"H1814","v":[["*",[9,9,[[0,1,1,0,1,[[30,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[18,2,2,2,4,[[484,1,1,2,3],[487,1,1,3,4]]],[19,1,1,4,5,[[653,1,1,4,5]]],[22,1,1,5,6,[[683,1,1,5,6]]],[24,1,1,6,7,[[800,1,1,6,7]]],[25,1,1,7,8,[[825,1,1,7,8]]],[30,1,1,8,9,[[888,1,1,8,9]]]],[909,7671,14008,14043,17164,17750,20439,21066,22528]]],["+",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7671]]],["Burning",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17164]]],["inflame",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17750]]],["kindle",[2,2,[[25,1,1,0,1,[[825,1,1,0,1]]],[30,1,1,1,2,[[888,1,1,1,2]]]],[21066,22528]]],["persecute",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14043]]],["persecutors",[1,1,[[18,1,1,0,1,[[484,1,1,0,1]]]],[14008]]],["pursued",[2,2,[[0,1,1,0,1,[[30,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[909,20439]]]]},{"k":"H1815","v":[["burning",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21942]]]]},{"k":"H1816","v":[["inflammation",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5633]]]]},{"k":"H1817","v":[["*",[88,78,[[0,3,3,0,3,[[18,3,3,0,3]]],[1,1,1,3,4,[[70,1,1,3,4]]],[4,2,2,4,6,[[155,1,1,4,5],[167,1,1,5,6]]],[5,2,2,6,8,[[188,1,1,6,7],[192,1,1,7,8]]],[6,7,7,8,15,[[213,3,3,8,11],[221,1,1,11,12],[226,1,1,12,13],[229,2,2,13,15]]],[8,3,3,15,18,[[238,1,1,15,16],[256,1,1,16,17],[258,1,1,17,18]]],[9,2,2,18,20,[[279,2,2,18,20]]],[10,8,5,20,25,[[296,5,3,20,23],[297,2,1,23,24],[306,1,1,24,25]]],[11,9,8,25,33,[[316,3,3,25,28],[318,2,1,28,29],[321,2,2,29,31],[324,1,1,31,32],[330,1,1,32,33]]],[12,1,1,33,34,[[359,1,1,33,34]]],[13,10,8,34,42,[[369,1,1,34,35],[370,4,2,35,37],[374,1,1,37,38],[380,1,1,38,39],[394,1,1,39,40],[395,2,2,40,42]]],[15,11,11,42,53,[[415,6,6,42,48],[418,2,2,48,50],[419,2,2,50,52],[425,1,1,52,53]]],[17,5,5,53,58,[[438,1,1,53,54],[466,1,1,54,55],[473,2,2,55,57],[476,1,1,57,58]]],[18,3,3,58,61,[[555,1,1,58,59],[584,1,1,59,60],[618,1,1,60,61]]],[19,2,2,61,63,[[635,1,1,61,62],[653,1,1,62,63]]],[20,1,1,63,64,[[670,1,1,63,64]]],[21,1,1,64,65,[[678,1,1,64,65]]],[22,4,4,65,69,[[704,1,1,65,66],[723,2,2,66,68],[735,1,1,68,69]]],[23,2,2,69,71,[[780,1,1,69,70],[793,1,1,70,71]]],[25,9,5,71,76,[[827,1,1,71,72],[839,1,1,72,73],[842,7,3,73,76]]],[37,1,1,76,77,[[921,1,1,76,77]]],[38,1,1,77,78,[[925,1,1,77,78]]]],[463,466,467,2083,4980,5336,5888,5975,6591,6592,6593,6860,6952,7046,7051,7291,7785,7817,8334,8335,8927,8928,8930,8984,9317,9607,9608,9636,9706,9759,9766,9859,10040,10967,11236,11255,11268,11351,11482,11788,11794,11798,12328,12330,12333,12340,12341,12342,12402,12411,12421,12423,12690,12914,13620,13801,13803,13902,15136,15715,16279,16636,17155,17527,17649,18150,18562,18563,18773,19865,20158,21102,21436,21549,21550,21551,23029,23099]]],["+",[2,2,[[5,1,1,0,1,[[188,1,1,0,1]]],[6,1,1,1,2,[[221,1,1,1,2]]]],[5888,6860]]],["door",[21,19,[[0,3,3,0,3,[[18,3,3,0,3]]],[1,1,1,3,4,[[70,1,1,3,4]]],[4,1,1,4,5,[[167,1,1,4,5]]],[6,1,1,5,6,[[229,1,1,5,6]]],[9,2,2,6,8,[[279,2,2,6,8]]],[10,2,1,8,9,[[296,2,1,8,9]]],[11,7,6,9,15,[[316,3,3,9,12],[318,2,1,12,13],[321,2,2,13,15]]],[18,1,1,15,16,[[618,1,1,15,16]]],[19,1,1,16,17,[[653,1,1,16,17]]],[21,1,1,17,18,[[678,1,1,17,18]]],[25,1,1,18,19,[[842,1,1,18,19]]]],[463,466,467,2083,5336,7046,8334,8335,8930,9607,9608,9636,9706,9759,9766,16279,17155,17649,21550]]],["doors",[46,43,[[6,5,5,0,5,[[213,3,3,0,3],[226,1,1,3,4],[229,1,1,4,5]]],[8,2,2,5,7,[[238,1,1,5,6],[256,1,1,6,7]]],[10,5,4,7,11,[[296,3,3,7,10],[297,2,1,10,11]]],[11,1,1,11,12,[[330,1,1,11,12]]],[12,1,1,12,13,[[359,1,1,12,13]]],[13,8,6,13,19,[[369,1,1,13,14],[370,4,2,14,16],[394,1,1,16,17],[395,2,2,17,19]]],[15,10,10,19,29,[[415,6,6,19,25],[418,2,2,25,27],[419,2,2,27,29]]],[17,5,5,29,34,[[438,1,1,29,30],[466,1,1,30,31],[473,2,2,31,33],[476,1,1,33,34]]],[18,1,1,34,35,[[555,1,1,34,35]]],[20,1,1,35,36,[[670,1,1,35,36]]],[22,2,2,36,38,[[704,1,1,36,37],[735,1,1,37,38]]],[25,3,3,38,41,[[842,3,3,38,41]]],[37,1,1,41,42,[[921,1,1,41,42]]],[38,1,1,42,43,[[925,1,1,42,43]]]],[6591,6592,6593,6952,7051,7291,7785,8927,8928,8930,8984,10040,10967,11236,11255,11268,11788,11794,11798,12328,12330,12333,12340,12341,12342,12402,12411,12421,12423,12914,13620,13801,13803,13902,15136,17527,18150,18773,21549,21550,21551,23029,23099]]],["gates",[14,14,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,1,1,1,2,[[192,1,1,1,2]]],[8,1,1,2,3,[[258,1,1,2,3]]],[10,1,1,3,4,[[306,1,1,3,4]]],[13,2,2,4,6,[[374,1,1,4,5],[380,1,1,5,6]]],[15,1,1,6,7,[[425,1,1,6,7]]],[18,1,1,7,8,[[584,1,1,7,8]]],[19,1,1,8,9,[[635,1,1,8,9]]],[22,2,2,9,11,[[723,2,2,9,11]]],[23,1,1,11,12,[[793,1,1,11,12]]],[25,2,2,12,14,[[827,1,1,12,13],[839,1,1,13,14]]]],[4980,5975,7817,9317,11351,11482,12690,15715,16636,18562,18563,20158,21102,21436]]],["leaves",[4,2,[[23,1,1,0,1,[[780,1,1,0,1]]],[25,3,1,1,2,[[842,3,1,1,2]]]],[19865,21550]]],["lid",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9859]]]]},{"k":"H1818","v":[["*",[359,294,[[0,11,10,0,10,[[3,2,2,0,2],[8,4,3,2,5],[36,3,3,5,8],[41,1,1,8,9],[48,1,1,9,10]]],[1,29,22,10,32,[[53,3,3,10,13],[56,5,4,13,17],[61,6,4,17,21],[71,2,2,21,23],[72,1,1,23,24],[73,4,2,24,26],[78,6,4,26,30],[79,1,1,30,31],[83,1,1,31,32]]],[2,88,66,32,98,[[90,4,3,32,35],[92,4,4,35,39],[93,15,9,39,48],[94,2,1,48,49],[95,2,2,49,51],[96,5,5,51,56],[97,7,5,56,61],[98,5,3,61,64],[99,1,1,64,65],[101,3,3,65,68],[103,7,7,68,75],[104,2,2,75,77],[105,9,5,77,82],[106,13,7,82,89],[108,2,2,89,91],[109,7,7,91,98]]],[3,15,10,98,108,[[134,1,1,98,99],[135,3,2,99,101],[139,1,1,101,102],[151,10,6,102,108]]],[4,22,16,108,124,[[164,5,3,108,111],[167,1,1,111,112],[169,2,1,112,113],[171,5,4,113,117],[173,4,3,117,120],[174,1,1,120,121],[184,4,3,121,124]]],[5,5,4,124,128,[[188,2,1,124,125],[206,3,3,125,128]]],[6,1,1,128,129,[[219,1,1,128,129]]],[8,8,8,129,137,[[249,3,3,129,132],[254,1,1,132,133],[260,3,3,133,136],[261,1,1,136,137]]],[9,12,11,137,148,[[267,2,2,137,139],[269,2,2,139,141],[270,1,1,141,142],[280,1,1,142,143],[282,3,2,143,145],[286,1,1,145,146],[287,1,1,146,147],[289,1,1,147,148]]],[10,12,10,148,158,[[292,7,6,148,154],[308,1,1,154,155],[311,2,1,155,156],[312,2,2,156,158]]],[11,13,9,158,167,[[315,2,2,158,160],[321,5,3,160,163],[328,3,2,163,165],[333,1,1,165,166],[336,2,1,166,167]]],[12,4,3,167,170,[[348,1,1,167,168],[359,2,1,168,169],[365,1,1,169,170]]],[13,8,5,170,175,[[385,2,1,170,171],[390,1,1,171,172],[395,4,2,172,174],[396,1,1,174,175]]],[17,2,2,175,177,[[451,1,1,175,176],[474,1,1,176,177]]],[18,21,19,177,196,[[482,1,1,177,178],[486,1,1,178,179],[493,1,1,179,180],[503,1,1,180,181],[507,1,1,181,182],[527,1,1,182,183],[528,1,1,183,184],[532,1,1,184,185],[535,1,1,185,186],[536,1,1,186,187],[545,1,1,187,188],[549,1,1,188,189],[555,1,1,189,190],[556,2,2,190,192],[571,1,1,192,193],[582,1,1,193,194],[583,3,1,194,195],[616,1,1,195,196]]],[19,8,8,196,204,[[628,3,3,196,199],[633,1,1,199,200],[639,1,1,200,201],[655,1,1,201,202],[656,1,1,202,203],[657,1,1,203,204]]],[22,15,14,204,218,[[679,2,2,204,206],[682,1,1,206,207],[687,1,1,207,208],[693,1,1,208,209],[704,1,1,209,210],[711,1,1,210,211],[712,4,3,211,214],[727,1,1,214,215],[737,2,2,215,217],[744,1,1,217,218]]],[23,9,9,218,227,[[746,1,1,218,219],[751,1,1,219,220],[763,1,1,220,221],[766,2,2,221,223],[770,1,1,223,224],[790,1,1,224,225],[792,1,1,225,226],[795,1,1,226,227]]],[24,2,2,227,229,[[800,2,2,227,229]]],[25,55,47,229,276,[[804,2,2,229,231],[806,1,1,231,232],[808,1,1,232,233],[810,1,1,233,234],[815,1,1,234,235],[817,8,5,235,240],[819,2,2,240,242],[820,1,1,242,243],[822,1,1,243,244],[823,8,8,244,252],[824,3,2,252,254],[825,4,4,254,258],[829,1,1,258,259],[833,1,1,259,260],[834,6,5,260,265],[836,4,1,265,266],[837,1,1,266,267],[839,1,1,267,268],[840,3,3,268,271],[844,2,2,271,273],[845,2,2,273,275],[846,1,1,275,276]]],[27,5,4,276,280,[[862,1,1,276,277],[865,2,1,277,278],[867,1,1,278,279],[873,1,1,279,280]]],[28,4,4,280,284,[[877,2,2,280,282],[878,2,2,282,284]]],[31,1,1,284,285,[[889,1,1,284,285]]],[32,2,2,285,287,[[895,1,1,285,286],[899,1,1,286,287]]],[33,1,1,287,288,[[902,1,1,287,288]]],[34,3,3,288,291,[[904,3,3,288,291]]],[35,1,1,291,292,[[906,1,1,291,292]]],[37,2,2,292,294,[[919,2,2,292,294]]]],[89,90,209,210,211,1105,1109,1114,1274,1484,1610,1626,1627,1702,1704,1705,1706,1823,1829,1838,1839,2115,2116,2162,2183,2185,2348,2352,2356,2357,2392,2521,2750,2756,2760,2780,2786,2791,2795,2800,2801,2802,2811,2812,2813,2820,2825,2829,2839,2876,2879,2881,2893,2905,2906,2912,2932,2936,2940,2941,2947,2962,2965,2971,2995,3048,3049,3051,3117,3125,3128,3136,3139,3162,3163,3187,3193,3215,3216,3219,3220,3228,3239,3241,3245,3246,3247,3248,3249,3297,3307,3327,3329,3330,3331,3334,3336,3345,4274,4293,4294,4440,4864,4866,4869,4870,4872,4878,5256,5263,5267,5342,5372,5412,5416,5418,5419,5454,5455,5456,5478,5772,5800,5801,5888,6375,6377,6381,6778,7540,7541,7542,7711,7887,7892,7894,7925,8038,8044,8108,8109,8131,8367,8433,8434,8566,8581,8670,8775,8779,8801,8802,8803,8807,9369,9470,9515,9518,9598,9599,9763,9782,9789,9976,9978,10135,10206,10692,10972,11146,11586,11702,11813,11815,11843,13256,13864,13979,14033,14096,14282,14328,14681,14705,14755,14789,14792,14923,15014,15157,15188,15195,15452,15635,15689,16258,16411,16416,16418,16557,16725,17213,17234,17284,17665,17669,17737,17834,17969,18151,18294,18306,18309,18310,18662,18803,18807,18925,18999,19125,19411,19457,19471,19587,20055,20090,20247,20433,20434,20520,20522,20563,20600,20631,20750,20768,20771,20784,20798,20800,20859,20862,20891,20976,20978,20979,20980,20982,20985,20988,20989,21003,21044,21052,21062,21063,21064,21065,21180,21254,21284,21285,21286,21288,21305,21350,21377,21447,21465,21466,21467,21590,21592,21606,21614,21649,22098,22135,22175,22266,22341,22342,22362,22364,22545,22618,22666,22713,22756,22760,22765,22804,23006,23010]]],["+",[37,34,[[1,3,3,0,3,[[78,2,2,0,2],[79,1,1,2,3]]],[2,13,12,3,15,[[93,4,4,3,7],[94,1,1,7,8],[95,2,2,8,10],[97,1,1,10,11],[103,2,2,11,13],[105,3,2,13,15]]],[3,2,1,15,16,[[135,2,1,15,16]]],[4,2,1,16,17,[[184,2,1,16,17]]],[9,2,2,17,19,[[267,1,1,17,18],[269,1,1,18,19]]],[11,1,1,19,20,[[321,1,1,19,20]]],[18,2,2,20,22,[[493,1,1,20,21],[528,1,1,21,22]]],[19,1,1,22,23,[[656,1,1,22,23]]],[22,3,3,23,26,[[712,3,3,23,26]]],[23,2,2,26,28,[[790,1,1,26,27],[792,1,1,27,28]]],[25,3,3,28,31,[[833,1,1,28,29],[844,1,1,29,30],[846,1,1,30,31]]],[27,1,1,31,32,[[867,1,1,31,32]]],[34,2,2,32,34,[[904,2,2,32,34]]]],[2348,2356,2392,2800,2811,2825,2829,2839,2876,2879,2940,3125,3136,3215,3219,4293,5800,8044,8109,9789,14096,14705,17234,18306,18309,18310,20055,20090,21254,21592,21649,22175,22756,22765]]],["blood",[307,253,[[0,11,10,0,10,[[3,2,2,0,2],[8,4,3,2,5],[36,3,3,5,8],[41,1,1,8,9],[48,1,1,9,10]]],[1,24,19,10,29,[[53,1,1,10,11],[56,5,4,11,15],[61,6,4,15,19],[71,2,2,19,21],[72,1,1,21,22],[73,4,2,22,24],[78,4,4,24,28],[83,1,1,28,29]]],[2,75,58,29,87,[[90,4,3,29,32],[92,4,4,32,36],[93,11,7,36,43],[94,1,1,43,44],[96,5,5,44,49],[97,6,4,49,53],[98,5,3,53,56],[99,1,1,56,57],[101,3,3,57,60],[103,5,5,60,65],[104,2,2,65,67],[105,6,4,67,71],[106,13,7,71,78],[108,2,2,78,80],[109,7,7,80,87]]],[3,13,9,87,96,[[134,1,1,87,88],[135,1,1,88,89],[139,1,1,89,90],[151,10,6,90,96]]],[4,20,15,96,111,[[164,5,3,96,99],[167,1,1,99,100],[169,2,1,100,101],[171,5,4,101,105],[173,4,3,105,108],[174,1,1,108,109],[184,2,2,109,111]]],[5,5,4,111,115,[[188,2,1,111,112],[206,3,3,112,115]]],[6,1,1,115,116,[[219,1,1,115,116]]],[8,8,8,116,124,[[249,3,3,116,119],[254,1,1,119,120],[260,3,3,120,123],[261,1,1,123,124]]],[9,7,7,124,131,[[267,1,1,124,125],[269,1,1,125,126],[270,1,1,126,127],[280,1,1,127,128],[282,1,1,128,129],[286,1,1,129,130],[289,1,1,130,131]]],[10,12,10,131,141,[[292,7,6,131,137],[308,1,1,137,138],[311,2,1,138,139],[312,2,2,139,141]]],[11,12,8,141,149,[[315,2,2,141,143],[321,4,2,143,145],[328,3,2,145,147],[333,1,1,147,148],[336,2,1,148,149]]],[12,4,3,149,152,[[348,1,1,149,150],[359,2,1,150,151],[365,1,1,151,152]]],[13,8,5,152,157,[[385,2,1,152,153],[390,1,1,153,154],[395,4,2,154,156],[396,1,1,156,157]]],[17,2,2,157,159,[[451,1,1,157,158],[474,1,1,158,159]]],[18,14,12,159,171,[[486,1,1,159,160],[507,1,1,160,161],[527,1,1,161,162],[535,1,1,162,163],[545,1,1,163,164],[549,1,1,164,165],[555,1,1,165,166],[556,2,2,166,168],[571,1,1,168,169],[582,1,1,169,170],[583,3,1,170,171]]],[19,7,7,171,178,[[628,3,3,171,174],[633,1,1,174,175],[639,1,1,175,176],[655,1,1,176,177],[657,1,1,177,178]]],[22,12,12,178,190,[[679,2,2,178,180],[682,1,1,180,181],[687,1,1,181,182],[693,1,1,182,183],[704,1,1,183,184],[711,1,1,184,185],[712,1,1,185,186],[727,1,1,186,187],[737,2,2,187,189],[744,1,1,189,190]]],[23,7,7,190,197,[[746,1,1,190,191],[751,1,1,191,192],[763,1,1,192,193],[766,2,2,193,195],[770,1,1,195,196],[795,1,1,196,197]]],[24,2,2,197,199,[[800,2,2,197,199]]],[25,48,40,199,239,[[804,2,2,199,201],[806,1,1,201,202],[810,1,1,202,203],[815,1,1,203,204],[817,8,5,204,209],[819,2,2,209,211],[820,1,1,211,212],[822,1,1,212,213],[823,7,7,213,220],[824,3,2,220,222],[825,2,2,222,224],[829,1,1,224,225],[834,6,5,225,230],[836,4,1,230,231],[837,1,1,231,232],[839,1,1,232,233],[840,3,3,233,236],[844,1,1,236,237],[845,2,2,237,239]]],[27,4,3,239,242,[[862,1,1,239,240],[865,2,1,240,241],[873,1,1,241,242]]],[28,4,4,242,246,[[877,2,2,242,244],[878,2,2,244,246]]],[31,1,1,246,247,[[889,1,1,246,247]]],[32,2,2,247,249,[[895,1,1,247,248],[899,1,1,248,249]]],[34,1,1,249,250,[[904,1,1,249,250]]],[35,1,1,250,251,[[906,1,1,250,251]]],[37,2,2,251,253,[[919,2,2,251,253]]]],[89,90,209,210,211,1105,1109,1114,1274,1484,1610,1702,1704,1705,1706,1823,1829,1838,1839,2115,2116,2162,2183,2185,2348,2352,2356,2357,2521,2750,2756,2760,2780,2786,2791,2795,2801,2802,2812,2813,2820,2825,2829,2839,2881,2893,2905,2906,2912,2932,2936,2941,2947,2962,2965,2971,2995,3048,3049,3051,3117,3128,3139,3162,3163,3187,3193,3215,3216,3220,3228,3239,3241,3245,3246,3247,3248,3249,3297,3307,3327,3329,3330,3331,3334,3336,3345,4274,4294,4440,4864,4866,4869,4870,4872,4878,5256,5263,5267,5342,5372,5412,5416,5418,5419,5454,5455,5456,5478,5772,5801,5888,6375,6377,6381,6778,7540,7541,7542,7711,7887,7892,7894,7925,8038,8108,8131,8367,8434,8566,8670,8775,8779,8801,8802,8803,8807,9369,9470,9515,9518,9598,9599,9763,9782,9976,9978,10135,10206,10692,10972,11146,11586,11702,11813,11815,11843,13256,13864,14033,14328,14681,14789,14923,15014,15157,15188,15195,15452,15635,15689,16411,16416,16418,16557,16725,17213,17284,17665,17669,17737,17834,17969,18151,18294,18309,18662,18803,18807,18925,18999,19125,19411,19457,19471,19587,20247,20433,20434,20520,20522,20563,20631,20750,20768,20771,20784,20798,20800,20859,20862,20891,20976,20979,20980,20982,20985,20988,20989,21003,21044,21052,21063,21064,21180,21284,21285,21286,21288,21305,21350,21377,21447,21465,21466,21467,21590,21606,21614,22098,22135,22266,22341,22342,22362,22364,22545,22618,22666,22760,22804,23006,23010]]],["bloody",[15,15,[[1,2,2,0,2,[[53,2,2,0,2]]],[9,3,3,2,5,[[282,2,2,2,4],[287,1,1,4,5]]],[18,5,5,5,10,[[482,1,1,5,6],[503,1,1,6,7],[532,1,1,7,8],[536,1,1,8,9],[616,1,1,9,10]]],[25,4,4,10,14,[[808,1,1,10,11],[823,1,1,11,12],[825,2,2,12,14]]],[33,1,1,14,15,[[902,1,1,14,15]]]],[1626,1627,8433,8434,8581,13979,14282,14755,14792,16258,20600,20978,21062,21065,22713]]]]},{"k":"H1819","v":[["*",[30,28,[[3,1,1,0,1,[[149,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[9,1,1,2,3,[[287,1,1,2,3]]],[16,1,1,3,4,[[429,1,1,3,4]]],[18,5,5,4,9,[[525,1,1,4,5],[527,1,1,5,6],[566,1,1,6,7],[579,1,1,7,8],[621,1,1,8,9]]],[21,5,5,9,14,[[671,1,1,9,10],[672,2,2,10,12],[677,1,1,12,13],[678,1,1,13,14]]],[22,8,7,14,21,[[679,1,1,14,15],[688,1,1,15,16],[692,2,2,16,18],[718,2,2,18,20],[724,2,1,20,21]]],[23,1,1,21,22,[[750,1,1,21,22]]],[24,1,1,22,23,[[798,1,1,22,23]]],[25,5,4,23,27,[[832,4,3,23,26],[833,1,1,26,27]]],[27,1,1,27,28,[[873,1,1,27,28]]]],[4816,7059,8585,12775,14643,14689,15332,15527,16309,17546,17563,17571,17634,17654,17663,17857,17942,17952,18438,18445,18591,19091,20345,21232,21238,21248,21250,22262]]],["+",[2,2,[[25,2,2,0,2,[[832,2,2,0,2]]]],[21238,21248]]],["Think",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12775]]],["compared",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17546]]],["devised",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8585]]],["like",[12,12,[[18,2,2,0,2,[[579,1,1,0,1],[621,1,1,1,2]]],[21,4,4,2,6,[[672,2,2,2,4],[677,1,1,4,5],[678,1,1,5,6]]],[22,3,3,6,9,[[679,1,1,6,7],[692,1,1,7,8],[724,1,1,8,9]]],[25,3,3,9,12,[[832,2,2,9,11],[833,1,1,11,12]]]],[15527,16309,17563,17571,17634,17654,17663,17942,18591,21232,21238,21250]]],["liken",[4,4,[[22,3,3,0,3,[[718,2,2,0,2],[724,1,1,2,3]]],[24,1,1,3,4,[[798,1,1,3,4]]]],[18438,18445,18591,20345]]],["likened",[2,2,[[18,1,1,0,1,[[566,1,1,0,1]]],[23,1,1,1,2,[[750,1,1,1,2]]]],[15332,19091]]],["meaneth",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17857]]],["similitudes",[1,1,[[27,1,1,0,1,[[873,1,1,0,1]]]],[22262]]],["thought",[4,4,[[3,1,1,0,1,[[149,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[18,1,1,2,3,[[525,1,1,2,3]]],[22,1,1,3,4,[[692,1,1,3,4]]]],[4816,7059,14643,17952]]],["thoughtest",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14689]]]]},{"k":"H1820","v":[["*",[15,13,[[18,2,2,0,2,[[526,2,2,0,2]]],[22,3,2,2,4,[[684,1,1,2,3],[693,2,1,3,4]]],[23,2,2,4,6,[[758,1,1,4,5],[791,1,1,5,6]]],[24,1,1,6,7,[[799,1,1,6,7]]],[27,5,4,7,11,[[865,2,2,7,9],[871,3,2,9,11]]],[30,1,1,11,12,[[888,1,1,11,12]]],[35,1,1,12,13,[[906,1,1,12,13]]]],[14660,14668,17774,17961,19310,20078,20403,22138,22139,22232,22240,22515,22798]]],["+",[2,1,[[27,2,1,0,1,[[871,2,1,0,1]]]],[22240]]],["cease",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19310]]],["ceaseth",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20403]]],["destroy",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22138]]],["destroyed",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22139]]],["down",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22798]]],["off",[3,3,[[23,1,1,0,1,[[791,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]],[30,1,1,2,3,[[888,1,1,2,3]]]],[20078,22232,22515]]],["perish",[2,2,[[18,2,2,0,2,[[526,2,2,0,2]]]],[14660,14668]]],["silence",[2,1,[[22,2,1,0,1,[[693,2,1,0,1]]]],[17961]]],["undone",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17774]]]]},{"k":"H1821","v":[["like",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[856,1,1,1,2]]]],[21832,21938]]]]},{"k":"H1822","v":[["destroyed",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21153]]]]},{"k":"H1823","v":[["*",[25,22,[[0,3,3,0,3,[[0,1,1,0,1],[4,2,2,1,3]]],[11,1,1,3,4,[[328,1,1,3,4]]],[13,1,1,4,5,[[370,1,1,4,5]]],[18,1,1,5,6,[[535,1,1,5,6]]],[22,2,2,6,8,[[691,1,1,6,7],[718,1,1,7,8]]],[25,16,13,8,21,[[802,10,7,8,15],[809,1,1,15,16],[811,4,4,16,20],[824,1,1,20,21]]],[26,1,1,21,22,[[859,1,1,21,22]]]],[25,106,108,9973,11249,14783,17910,18438,20469,20474,20477,20480,20486,20490,20492,20606,20634,20643,20654,20655,21022,22031]]],["fashion",[1,1,[[11,1,1,0,1,[[328,1,1,0,1]]]],[9973]]],["like",[2,2,[[18,1,1,0,1,[[535,1,1,0,1]]],[22,1,1,1,2,[[691,1,1,1,2]]]],[14783,17910]]],["likeness",[19,16,[[0,3,3,0,3,[[0,1,1,0,1],[4,2,2,1,3]]],[22,1,1,3,4,[[718,1,1,3,4]]],[25,15,12,4,16,[[802,10,7,4,11],[809,1,1,11,12],[811,4,4,12,16]]]],[25,106,108,18438,20469,20474,20477,20480,20486,20490,20492,20606,20634,20643,20654,20655]]],["manner",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21022]]],["similitude",[2,2,[[13,1,1,0,1,[[370,1,1,0,1]]],[26,1,1,1,2,[[859,1,1,1,2]]]],[11249,22031]]]]},{"k":"H1824","v":[["*",[4,4,[[18,1,1,0,1,[[560,1,1,0,1]]],[22,3,3,1,4,[[716,1,1,1,2],[740,2,2,2,4]]]],[15242,18400,18860,18861]]],["+",[2,2,[[18,1,1,0,1,[[560,1,1,0,1]]],[22,1,1,1,2,[[740,1,1,1,2]]]],[15242,18860]]],["off",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18400]]],["rest",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18861]]]]},{"k":"H1825","v":[["Like",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14115]]]]},{"k":"H1826","v":[["*",[30,29,[[1,1,1,0,1,[[64,1,1,0,1]]],[2,1,1,1,2,[[99,1,1,1,2]]],[5,2,2,2,4,[[196,2,2,2,4]]],[8,2,2,4,6,[[237,1,1,4,5],[249,1,1,5,6]]],[17,3,3,6,9,[[464,1,1,6,7],[465,1,1,7,8],[466,1,1,8,9]]],[18,7,7,9,16,[[481,1,1,9,10],[507,1,1,10,11],[508,1,1,11,12],[512,1,1,12,13],[514,1,1,13,14],[539,1,1,14,15],[608,1,1,15,16]]],[22,1,1,16,17,[[701,1,1,16,17]]],[23,8,7,17,24,[[752,2,1,17,18],[769,1,1,18,19],[791,1,1,19,20],[792,1,1,20,21],[793,1,1,21,22],[794,1,1,22,23],[795,1,1,23,24]]],[24,3,3,24,27,[[798,2,2,24,26],[799,1,1,26,27]]],[25,1,1,27,28,[[825,1,1,27,28]]],[29,1,1,28,29,[[883,1,1,28,29]]]],[1936,2980,6076,6077,7249,7517,13553,13584,13622,13969,14331,14348,14425,14457,14832,16150,18079,19167,19571,20079,20082,20153,20196,20218,20342,20350,20382,21073,22436]]],["Forbear",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21073]]],["Rest",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14457]]],["Tarry",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7517]]],["cease",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20350]]],["ceased",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14425]]],["down",[2,2,[[23,2,2,0,2,[[769,1,1,0,1],[792,1,1,1,2]]]],[19571,20082]]],["off",[3,3,[[23,3,3,0,3,[[793,1,1,0,1],[794,1,1,1,2],[795,1,1,2,3]]]],[20153,20196,20218]]],["peace",[1,1,[[2,1,1,0,1,[[99,1,1,0,1]]]],[2980]]],["quieted",[1,1,[[18,1,1,0,1,[[608,1,1,0,1]]]],[16150]]],["rested",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13584]]],["silence",[6,6,[[17,2,2,0,2,[[464,1,1,0,1],[466,1,1,1,2]]],[23,1,1,2,3,[[752,1,1,2,3]]],[24,2,2,3,5,[[798,1,1,3,4],[799,1,1,4,5]]],[29,1,1,5,6,[[883,1,1,5,6]]]],[13553,13622,19167,20342,20382,22436]]],["silent",[4,4,[[8,1,1,0,1,[[237,1,1,0,1]]],[18,2,2,1,3,[[507,1,1,1,2],[508,1,1,2,3]]],[23,1,1,3,4,[[752,1,1,3,4]]]],[7249,14331,14348,19167]]],["still",[6,6,[[1,1,1,0,1,[[64,1,1,0,1]]],[5,2,2,1,3,[[196,2,2,1,3]]],[18,1,1,3,4,[[481,1,1,3,4]]],[22,1,1,4,5,[[701,1,1,4,5]]],[23,1,1,5,6,[[791,1,1,5,6]]]],[1936,6076,6077,13969,18079,20079]]],["wait",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14832]]]]},{"k":"H1827","v":[["*",[3,3,[[10,1,1,0,1,[[309,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]],[18,1,1,2,3,[[584,1,1,2,3]]]],[9399,12946,15728]]],["calm",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15728]]],["silence",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12946]]],["still",[1,1,[[10,1,1,0,1,[[309,1,1,0,1]]]],[9399]]]]},{"k":"H1828","v":[["dung",[6,6,[[11,1,1,0,1,[[321,1,1,0,1]]],[18,1,1,1,2,[[560,1,1,1,2]]],[23,4,4,2,6,[[752,1,1,2,3],[753,1,1,3,4],[760,1,1,4,5],[769,1,1,5,6]]]],[9793,15251,19155,19197,19340,19567]]]]},{"k":"H1829","v":[["Dimnah",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6416]]]]},{"k":"H1830","v":[["+",[2,1,[[23,2,1,0,1,[[757,2,1,0,1]]]],[19283]]]]},{"k":"H1831","v":[["liquors",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2142]]]]},{"k":"H1832","v":[["*",[23,22,[[11,1,1,0,1,[[332,1,1,0,1]]],[18,8,7,1,8,[[483,1,1,1,2],[516,1,1,2,3],[519,1,1,3,4],[533,1,1,4,5],[557,2,1,5,6],[593,1,1,6,7],[603,1,1,7,8]]],[20,1,1,8,9,[[662,1,1,8,9]]],[22,3,3,9,12,[[694,1,1,9,10],[703,1,1,10,11],[716,1,1,11,12]]],[23,5,5,12,17,[[753,2,2,12,14],[757,1,1,14,15],[758,1,1,15,16],[775,1,1,16,17]]],[24,3,3,17,20,[[797,1,1,17,18],[798,2,2,18,20]]],[25,1,1,20,21,[[825,1,1,20,21]]],[38,1,1,21,22,[[926,1,1,21,22]]]],[10103,13991,14524,14558,14763,15203,15856,16120,17382,17978,18126,18395,19176,19193,19283,19310,19707,20312,20343,20350,21072,23116]]],["+",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19707]]],["tears",[22,21,[[11,1,1,0,1,[[332,1,1,0,1]]],[18,8,7,1,8,[[483,1,1,1,2],[516,1,1,2,3],[519,1,1,3,4],[533,1,1,4,5],[557,2,1,5,6],[593,1,1,6,7],[603,1,1,7,8]]],[20,1,1,8,9,[[662,1,1,8,9]]],[22,3,3,9,12,[[694,1,1,9,10],[703,1,1,10,11],[716,1,1,11,12]]],[23,4,4,12,16,[[753,2,2,12,14],[757,1,1,14,15],[758,1,1,15,16]]],[24,3,3,16,19,[[797,1,1,16,17],[798,2,2,17,19]]],[25,1,1,19,20,[[825,1,1,19,20]]],[38,1,1,20,21,[[926,1,1,20,21]]]],[10103,13991,14524,14558,14763,15203,15856,16120,17382,17978,18126,18395,19176,19193,19283,19310,20312,20343,20350,21072,23116]]]]},{"k":"H1833","v":[["Damascus",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22407]]]]},{"k":"H1834","v":[["*",[45,40,[[0,2,2,0,2,[[13,1,1,0,1],[14,1,1,1,2]]],[9,2,2,2,4,[[274,2,2,2,4]]],[10,5,4,4,8,[[301,2,1,4,5],[305,1,1,5,6],[309,1,1,6,7],[310,1,1,7,8]]],[11,10,8,8,16,[[317,1,1,8,9],[320,2,2,9,11],[326,1,1,11,12],[328,6,4,12,16]]],[12,2,2,16,18,[[355,2,2,16,18]]],[13,4,4,18,22,[[382,1,1,18,19],[390,1,1,19,20],[394,2,2,20,22]]],[21,1,1,22,23,[[677,1,1,22,23]]],[22,7,5,23,28,[[685,2,1,23,24],[686,1,1,24,25],[688,1,1,25,26],[695,3,2,26,28]]],[23,3,3,28,31,[[793,3,3,28,31]]],[25,5,5,31,36,[[828,1,1,31,32],[848,3,3,32,35],[849,1,1,35,36]]],[29,3,3,36,39,[[879,2,2,36,38],[883,1,1,38,39]]],[37,1,1,39,40,[[919,1,1,39,40]]]],[351,362,8214,8215,9132,9267,9402,9442,9659,9734,9736,9924,9972,9973,9974,9975,10895,10896,11511,11700,11769,11787,17631,17790,17811,17859,17984,17986,20150,20151,20154,21139,21695,21696,21697,21703,22367,22369,22450,23000]]],["+",[5,4,[[11,3,2,0,2,[[328,3,2,0,2]]],[12,1,1,2,3,[[355,1,1,2,3]]],[22,1,1,3,4,[[695,1,1,3,4]]]],[9974,9975,10896,17986]]],["Damascus",[40,36,[[0,2,2,0,2,[[13,1,1,0,1],[14,1,1,1,2]]],[9,2,2,2,4,[[274,2,2,2,4]]],[10,5,4,4,8,[[301,2,1,4,5],[305,1,1,5,6],[309,1,1,6,7],[310,1,1,7,8]]],[11,7,6,8,14,[[317,1,1,8,9],[320,2,2,9,11],[326,1,1,11,12],[328,3,2,12,14]]],[12,1,1,14,15,[[355,1,1,14,15]]],[13,4,4,15,19,[[382,1,1,15,16],[390,1,1,16,17],[394,2,2,17,19]]],[21,1,1,19,20,[[677,1,1,19,20]]],[22,6,4,20,24,[[685,2,1,20,21],[686,1,1,21,22],[688,1,1,22,23],[695,2,1,23,24]]],[23,3,3,24,27,[[793,3,3,24,27]]],[25,5,5,27,32,[[828,1,1,27,28],[848,3,3,28,31],[849,1,1,31,32]]],[29,3,3,32,35,[[879,2,2,32,34],[883,1,1,34,35]]],[37,1,1,35,36,[[919,1,1,35,36]]]],[351,362,8214,8215,9132,9267,9402,9442,9659,9734,9736,9924,9972,9973,10895,11511,11700,11769,11787,17631,17790,17811,17859,17984,20150,20151,20154,21139,21695,21696,21697,21703,22367,22369,22450,23000]]]]},{"k":"H1835","v":[["*",[70,63,[[0,6,6,0,6,[[13,1,1,0,1],[29,1,1,1,2],[34,1,1,2,3],[45,1,1,3,4],[48,2,2,4,6]]],[1,4,4,6,10,[[50,1,1,6,7],[80,1,1,7,8],[84,1,1,8,9],[87,1,1,9,10]]],[2,1,1,10,11,[[113,1,1,10,11]]],[3,12,10,11,21,[[117,3,3,11,14],[118,3,2,14,16],[123,1,1,16,17],[126,1,1,17,18],[129,1,1,18,19],[142,2,1,19,20],[150,1,1,20,21]]],[4,4,3,21,24,[[179,1,1,21,22],[185,2,1,22,23],[186,1,1,23,24]]],[5,8,5,24,29,[[205,6,3,24,27],[207,2,2,27,29]]],[6,13,12,29,41,[[211,1,1,29,30],[215,1,1,30,31],[223,1,1,31,32],[228,9,8,32,40],[230,1,1,40,41]]],[8,1,1,41,42,[[238,1,1,41,42]]],[9,4,4,42,46,[[269,1,1,42,43],[283,1,1,43,44],[290,2,2,44,46]]],[10,4,4,46,50,[[294,1,1,46,47],[302,2,2,47,49],[305,1,1,49,50]]],[11,1,1,50,51,[[322,1,1,50,51]]],[12,3,3,51,54,[[339,1,1,51,52],[358,1,1,52,53],[364,1,1,53,54]]],[13,3,3,54,57,[[368,1,1,54,55],[382,1,1,55,56],[396,1,1,56,57]]],[23,2,2,57,59,[[748,1,1,57,58],[752,1,1,58,59]]],[25,3,3,59,62,[[849,3,3,59,62]]],[29,1,1,62,63,[[886,1,1,62,63]]]],[350,836,1036,1409,1489,1490,1536,2426,2565,2656,3457,3616,3642,3643,3683,3689,3916,4013,4087,4531,4838,5598,5832,5840,6361,6368,6369,6386,6404,6543,6640,6909,6995,7009,7015,7016,7018,7019,7022,7023,7055,7296,8091,8460,8694,8707,8869,9180,9181,9269,9822,10308,10936,11131,11225,11513,11832,19042,19169,21703,21704,21734,22495]]],["+",[10,10,[[5,1,1,0,1,[[207,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[8,1,1,2,3,[[238,1,1,2,3]]],[9,4,4,3,7,[[269,1,1,3,4],[283,1,1,4,5],[290,2,2,5,7]]],[10,1,1,7,8,[[294,1,1,7,8]]],[23,2,2,8,10,[[748,1,1,8,9],[752,1,1,9,10]]]],[6404,7055,7296,8091,8460,8694,8707,8869,19042,19169]]],["Dan",[60,53,[[0,6,6,0,6,[[13,1,1,0,1],[29,1,1,1,2],[34,1,1,2,3],[45,1,1,3,4],[48,2,2,4,6]]],[1,4,4,6,10,[[50,1,1,6,7],[80,1,1,7,8],[84,1,1,8,9],[87,1,1,9,10]]],[2,1,1,10,11,[[113,1,1,10,11]]],[3,12,10,11,21,[[117,3,3,11,14],[118,3,2,14,16],[123,1,1,16,17],[126,1,1,17,18],[129,1,1,18,19],[142,2,1,19,20],[150,1,1,20,21]]],[4,4,3,21,24,[[179,1,1,21,22],[185,2,1,22,23],[186,1,1,23,24]]],[5,7,4,24,28,[[205,6,3,24,27],[207,1,1,27,28]]],[6,12,11,28,39,[[211,1,1,28,29],[215,1,1,29,30],[223,1,1,30,31],[228,9,8,31,39]]],[10,3,3,39,42,[[302,2,2,39,41],[305,1,1,41,42]]],[11,1,1,42,43,[[322,1,1,42,43]]],[12,3,3,43,46,[[339,1,1,43,44],[358,1,1,44,45],[364,1,1,45,46]]],[13,3,3,46,49,[[368,1,1,46,47],[382,1,1,47,48],[396,1,1,48,49]]],[25,3,3,49,52,[[849,3,3,49,52]]],[29,1,1,52,53,[[886,1,1,52,53]]]],[350,836,1036,1409,1489,1490,1536,2426,2565,2656,3457,3616,3642,3643,3683,3689,3916,4013,4087,4531,4838,5598,5832,5840,6361,6368,6369,6386,6543,6640,6909,6995,7009,7015,7016,7018,7019,7022,7023,9180,9181,9269,9822,10308,10936,11131,11225,11513,11832,21703,21704,21734,22495]]]]},{"k":"H1836","v":[["*",[58,53,[[14,24,20,0,20,[[406,5,5,0,5],[407,11,9,5,14],[408,5,4,14,18],[409,3,2,18,20]]],[23,1,1,20,21,[[754,1,1,20,21]]],[26,33,32,21,53,[[851,12,11,21,32],[852,5,5,32,37],[853,2,2,37,39],[854,6,6,39,45],[855,5,5,45,50],[856,3,3,50,53]]]],[12121,12124,12125,12126,12132,12137,12138,12139,12141,12143,12145,12146,12147,12151,12162,12166,12167,12168,12190,12197,19212,21768,21770,21776,21782,21786,21787,21788,21794,21801,21803,21805,21814,21815,21823,21829,21836,21855,21861,21881,21889,21896,21898,21899,21900,21908,21910,21914,21915,21933,21939,21940,21949]]],["+",[12,12,[[14,3,3,0,3,[[406,2,2,0,2],[409,1,1,2,3]]],[26,9,9,3,12,[[851,4,4,3,7],[852,3,3,7,10],[855,2,2,10,12]]]],[12124,12132,12190,21770,21782,21787,21803,21814,21815,21829,21914,21915]]],["This",[5,5,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,4,4,1,5,[[851,1,1,1,2],[853,2,2,2,4],[854,1,1,4,5]]]],[12121,21794,21855,21861,21900]]],["Thus",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19212]]],["another",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21801]]],["cause",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12125]]],["matter",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12151]]],["one",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21801]]],["sort",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21836]]],["these",[3,3,[[14,2,2,0,2,[[407,2,2,0,2]]],[26,1,1,2,3,[[851,1,1,2,3]]]],[12143,12145,21786]]],["things",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21768]]],["this",[30,28,[[14,15,13,0,13,[[406,1,1,0,1],[407,7,6,1,7],[408,5,4,7,11],[409,2,2,11,13]]],[26,15,15,13,28,[[851,3,3,13,16],[852,1,1,16,17],[854,5,5,17,22],[855,3,3,22,25],[856,3,3,25,28]]]],[12126,12137,12138,12139,12143,12146,12147,12162,12166,12167,12168,12190,12197,21776,21788,21805,21823,21881,21889,21896,21898,21899,21908,21910,21933,21939,21940,21949]]],["thus",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12141]]]]},{"k":"H1837","v":[["Dannah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6251]]]]},{"k":"H1838","v":[["Dinhabah",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1072,10295]]]]},{"k":"H1839","v":[["*",[5,5,[[6,4,4,0,4,[[223,1,1,0,1],[228,3,3,1,4]]],[12,1,1,4,5,[[349,1,1,4,5]]]],[6886,6994,7004,7023,10755]]],["Dan",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7023]]],["Danites",[4,4,[[6,3,3,0,3,[[223,1,1,0,1],[228,2,2,1,3]]],[12,1,1,3,4,[[349,1,1,3,4]]]],[6886,6994,7004,10755]]]]},{"k":"H1840","v":[["*",[29,28,[[12,1,1,0,1,[[340,1,1,0,1]]],[14,1,1,1,2,[[410,1,1,1,2]]],[15,1,1,2,3,[[422,1,1,2,3]]],[25,3,3,3,6,[[815,2,2,3,5],[829,1,1,5,6]]],[26,23,22,6,28,[[850,10,9,6,15],[857,3,3,15,18],[858,2,2,18,20],[859,5,5,20,25],[861,3,3,25,28]]]],[10362,12203,12555,20745,20751,21160,21743,21744,21745,21746,21747,21748,21754,21756,21758,21962,21976,21988,21990,22010,22016,22017,22022,22026,22027,22085,22086,22090]]],["+",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21160]]],["Daniel",[28,27,[[12,1,1,0,1,[[340,1,1,0,1]]],[14,1,1,1,2,[[410,1,1,1,2]]],[15,1,1,2,3,[[422,1,1,2,3]]],[25,2,2,3,5,[[815,2,2,3,5]]],[26,23,22,5,27,[[850,10,9,5,14],[857,3,3,14,17],[858,2,2,17,19],[859,5,5,19,24],[861,3,3,24,27]]]],[10362,12203,12555,20745,20751,21743,21744,21745,21746,21747,21748,21754,21756,21758,21962,21976,21988,21990,22010,22016,22017,22022,22026,22027,22085,22086,22090]]]]},{"k":"H1841","v":[["*",[52,43,[[26,52,43,0,43,[[851,18,16,0,16],[853,2,2,16,18],[854,7,4,18,22],[855,21,17,22,39],[856,4,4,39,43]]]],[21771,21772,21773,21774,21775,21776,21777,21778,21782,21783,21784,21785,21804,21805,21806,21807,21845,21856,21886,21887,21891,21903,21907,21908,21909,21910,21915,21916,21918,21919,21921,21922,21925,21926,21928,21929,21931,21932,21933,21934,21935,21948,21961]]],["+",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[855,2,2,1,3]]]],[21806,21928,21929]]],["Daniel",[49,41,[[26,49,41,0,41,[[851,17,15,0,15],[853,2,2,15,17],[854,7,4,17,21],[855,19,16,21,37],[856,4,4,37,41]]]],[21771,21772,21773,21774,21775,21776,21777,21778,21782,21783,21784,21785,21804,21805,21807,21845,21856,21886,21887,21891,21903,21907,21908,21909,21910,21915,21916,21918,21919,21921,21922,21925,21926,21928,21931,21932,21933,21934,21935,21948,21961]]]]},{"k":"H1842","v":[["Danjaan",[1,1,[[9,1,1,0,1,[[290,1,1,0,1]]]],[8698]]]]},{"k":"H1843","v":[["*",[5,5,[[17,5,5,0,5,[[467,3,3,0,3],[471,1,1,3,4],[472,1,1,4,5]]]],[13634,13638,13645,13739,13785]]],["knowledge",[2,2,[[17,2,2,0,2,[[471,1,1,0,1],[472,1,1,1,2]]]],[13739,13785]]],["opinion",[3,3,[[17,3,3,0,3,[[467,3,3,0,3]]]],[13634,13638,13645]]]]},{"k":"H1844","v":[["knowledge",[6,6,[[8,1,1,0,1,[[237,1,1,0,1]]],[17,1,1,1,2,[[471,1,1,1,2]]],[18,1,1,2,3,[[550,1,1,2,3]]],[22,2,2,3,5,[[689,1,1,3,4],[706,1,1,4,5]]],[23,1,1,5,6,[[747,1,1,5,6]]]],[7243,13740,15031,17893,18173,19017]]]]},{"k":"H1845","v":[["Deuel",[4,4,[[3,4,4,0,4,[[117,1,1,0,1],[123,2,2,1,3],[126,1,1,3,4]]]],[3618,3892,3897,4008]]]]},{"k":"H1846","v":[["*",[9,9,[[17,4,4,0,4,[[441,1,1,0,1],[453,2,2,1,3],[456,1,1,3,4]]],[18,1,1,4,5,[[595,1,1,4,5]]],[19,3,3,5,8,[[640,1,1,5,6],[647,1,1,6,7],[651,1,1,7,8]]],[22,1,1,8,9,[[721,1,1,8,9]]]],[12995,13281,13282,13372,15881,16756,16974,17099,18522]]],["consumed",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12995]]],["extinct",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18522]]],["out",[6,6,[[17,3,3,0,3,[[453,2,2,0,2],[456,1,1,2,3]]],[19,3,3,3,6,[[640,1,1,3,4],[647,1,1,4,5],[651,1,1,5,6]]]],[13281,13282,13372,16756,16974,17099]]],["quenched",[1,1,[[18,1,1,0,1,[[595,1,1,0,1]]]],[15881]]]]},{"k":"H1847","v":[["*",[92,90,[[0,2,2,0,2,[[1,2,2,0,2]]],[1,2,2,2,4,[[80,1,1,2,3],[84,1,1,3,4]]],[3,1,1,4,5,[[140,1,1,4,5]]],[4,2,2,5,7,[[156,1,1,5,6],[171,1,1,6,7]]],[5,2,2,7,9,[[206,2,2,7,9]]],[10,1,1,9,10,[[297,1,1,9,10]]],[17,11,11,10,21,[[445,1,1,10,11],[448,1,1,11,12],[450,1,1,12,13],[456,2,2,13,15],[468,1,1,15,16],[469,1,1,16,17],[470,1,1,17,18],[471,1,1,18,19],[473,1,1,19,20],[477,1,1,20,21]]],[18,4,4,21,25,[[496,1,1,21,22],[571,1,1,22,23],[596,1,1,23,24],[616,1,1,24,25]]],[19,40,39,25,64,[[628,4,4,25,29],[629,3,3,29,32],[630,1,1,32,33],[632,1,1,33,34],[635,3,3,34,37],[636,1,1,37,38],[637,1,1,38,39],[638,1,1,39,40],[639,2,2,40,42],[640,1,1,42,43],[641,3,3,43,46],[642,3,3,46,49],[644,1,1,49,50],[645,2,1,50,51],[646,3,3,51,54],[647,1,1,54,55],[648,1,1,55,56],[649,3,3,56,59],[650,1,1,59,60],[651,2,2,60,62],[656,1,1,62,63],[657,1,1,63,64]]],[20,7,7,64,71,[[659,2,2,64,66],[660,2,2,66,68],[665,1,1,68,69],[667,1,1,69,70],[670,1,1,70,71]]],[22,9,9,71,80,[[683,1,1,71,72],[689,1,1,72,73],[711,1,1,73,74],[718,1,1,74,75],[722,2,2,75,77],[725,1,1,77,78],[731,1,1,78,79],[736,1,1,79,80]]],[23,3,3,80,83,[[754,1,1,80,81],[766,1,1,81,82],[795,1,1,82,83]]],[26,2,2,83,85,[[850,1,1,83,84],[861,1,1,84,85]]],[27,4,3,85,88,[[865,3,2,85,87],[867,1,1,87,88]]],[34,1,1,88,89,[[904,1,1,88,89]]],[38,1,1,89,90,[[926,1,1,89,90]]]],[39,47,2423,2562,4462,5046,5410,6375,6377,8948,13093,13155,13205,13369,13377,13653,13718,13736,13748,13795,13925,14170,15441,15964,16245,16404,16407,16422,16429,16438,16439,16443,16475,16519,16611,16612,16614,16648,16670,16697,16720,16742,16763,16778,16779,16790,16809,16814,16821,16900,16916,16927,16950,16952,16969,16995,17027,17032,17035,17056,17083,17084,17231,17254,17331,17333,17354,17359,17441,17485,17532,17752,17886,18285,18434,18552,18558,18609,18722,18788,19215,19470,20229,21741,22085,22134,22139,22173,22762,23110]]],["+",[8,8,[[4,2,2,0,2,[[156,1,1,0,1],[171,1,1,1,2]]],[5,2,2,2,4,[[206,2,2,2,4]]],[19,1,1,4,5,[[644,1,1,4,5]]],[22,1,1,5,6,[[722,1,1,5,6]]],[23,2,2,6,8,[[754,1,1,6,7],[795,1,1,7,8]]]],[5046,5410,6375,6377,16900,18558,19215,20229]]],["cunning",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8948]]],["know",[4,4,[[17,1,1,0,1,[[448,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]],[22,1,1,2,3,[[736,1,1,2,3]]],[23,1,1,3,4,[[766,1,1,3,4]]]],[13155,17231,18788,19470]]],["knowest",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13093]]],["knowledge",[78,76,[[0,2,2,0,2,[[1,2,2,0,2]]],[1,2,2,2,4,[[80,1,1,2,3],[84,1,1,3,4]]],[3,1,1,4,5,[[140,1,1,4,5]]],[17,9,9,5,14,[[450,1,1,5,6],[456,2,2,6,8],[468,1,1,8,9],[469,1,1,9,10],[470,1,1,10,11],[471,1,1,11,12],[473,1,1,12,13],[477,1,1,13,14]]],[18,4,4,14,18,[[496,1,1,14,15],[571,1,1,15,16],[596,1,1,16,17],[616,1,1,17,18]]],[19,38,37,18,55,[[628,4,4,18,22],[629,3,3,22,25],[630,1,1,25,26],[632,1,1,26,27],[635,3,3,27,30],[636,1,1,30,31],[637,1,1,31,32],[638,1,1,32,33],[639,2,2,33,35],[640,1,1,35,36],[641,3,3,36,39],[642,3,3,39,42],[645,2,1,42,43],[646,3,3,43,46],[647,1,1,46,47],[648,1,1,47,48],[649,3,3,48,51],[650,1,1,51,52],[651,2,2,52,54],[657,1,1,54,55]]],[20,7,7,55,62,[[659,2,2,55,57],[660,2,2,57,59],[665,1,1,59,60],[667,1,1,60,61],[670,1,1,61,62]]],[22,7,7,62,69,[[683,1,1,62,63],[689,1,1,63,64],[711,1,1,64,65],[718,1,1,65,66],[722,1,1,66,67],[725,1,1,67,68],[731,1,1,68,69]]],[26,2,2,69,71,[[850,1,1,69,70],[861,1,1,70,71]]],[27,4,3,71,74,[[865,3,2,71,73],[867,1,1,73,74]]],[34,1,1,74,75,[[904,1,1,74,75]]],[38,1,1,75,76,[[926,1,1,75,76]]]],[39,47,2423,2562,4462,13205,13369,13377,13653,13718,13736,13748,13795,13925,14170,15441,15964,16245,16404,16407,16422,16429,16438,16439,16443,16475,16519,16611,16612,16614,16648,16670,16697,16720,16742,16763,16778,16779,16790,16809,16814,16821,16916,16927,16950,16952,16969,16995,17027,17032,17035,17056,17083,17084,17254,17331,17333,17354,17359,17441,17485,17532,17752,17886,18285,18434,18552,18609,18722,21741,22085,22134,22139,22173,22762,23110]]]]},{"k":"H1848","v":[["+",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14688]]]]},{"k":"H1849","v":[["*",[3,3,[[0,1,1,0,1,[[32,1,1,0,1]]],[6,1,1,1,2,[[229,1,1,1,2]]],[21,1,1,2,3,[[675,1,1,2,3]]]],[973,7046,17600]]],["beat",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7046]]],["knocketh",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17600]]],["overdrive",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[973]]]]},{"k":"H1850","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4772,4773]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4773]]],["Dophkah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4772]]]]},{"k":"H1851","v":[["*",[14,13,[[0,6,6,0,6,[[40,6,6,0,6]]],[1,2,1,6,7,[[65,2,1,6,7]]],[2,3,3,7,10,[[102,1,1,7,8],[105,1,1,8,9],[110,1,1,9,10]]],[10,1,1,10,11,[[309,1,1,10,11]]],[22,2,2,11,13,[[707,1,1,11,12],[718,1,1,12,13]]]],[1198,1199,1201,1202,1218,1219,1961,3082,3213,3365,9399,18198,18435]]],["+",[2,2,[[0,2,2,0,2,[[40,2,2,0,2]]]],[1198,1199]]],["dwarf",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3365]]],["small",[5,4,[[1,2,1,0,1,[[65,2,1,0,1]]],[2,1,1,1,2,[[105,1,1,1,2]]],[10,1,1,2,3,[[309,1,1,2,3]]],[22,1,1,3,4,[[707,1,1,3,4]]]],[1961,3213,9399,18198]]],["thin",[5,5,[[0,4,4,0,4,[[40,4,4,0,4]]],[2,1,1,4,5,[[102,1,1,4,5]]]],[1201,1202,1218,1219,3082]]],["thing",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18435]]]]},{"k":"H1852","v":[["curtain",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18442]]]]},{"k":"H1853","v":[["Diklah",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[261,10273]]]]},{"k":"H1854","v":[["*",[13,12,[[1,2,2,0,2,[[79,1,1,0,1],[81,1,1,1,2]]],[4,1,1,2,3,[[161,1,1,2,3]]],[9,1,1,3,4,[[288,1,1,3,4]]],[11,2,2,4,6,[[335,2,2,4,6]]],[13,3,3,6,9,[[381,1,1,6,7],[400,2,2,7,9]]],[22,3,2,9,11,[[706,2,1,9,10],[719,1,1,10,11]]],[32,1,1,11,12,[[896,1,1,11,12]]]],[2418,2458,5178,8645,10171,10180,11506,11937,11940,18192,18466,22633]]],["+",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2458]]],["bruise",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18192]]],["bruised",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18192]]],["dust",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11937]]],["pieces",[1,1,[[32,1,1,0,1,[[896,1,1,0,1]]]],[22633]]],["powder",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11940]]],["small",[5,5,[[1,1,1,0,1,[[79,1,1,0,1]]],[4,1,1,1,2,[[161,1,1,1,2]]],[11,2,2,2,4,[[335,2,2,2,4]]],[22,1,1,4,5,[[719,1,1,4,5]]]],[2418,5178,10171,10180,18466]]],["stamp",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8645]]],["stamped",[1,1,[[13,1,1,0,1,[[381,1,1,0,1]]]],[11506]]]]},{"k":"H1855","v":[["*",[9,8,[[26,9,8,0,8,[[851,5,4,0,4],[855,1,1,4,5],[856,3,3,5,8]]]],[21792,21798,21802,21803,21929,21940,21952,21956]]],["+",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[855,1,1,1,2]]]],[21792,21929]]],["pieces",[7,6,[[26,7,6,0,6,[[851,4,3,0,3],[856,3,3,3,6]]]],[21798,21802,21803,21940,21952,21956]]]]},{"k":"H1856","v":[["*",[11,10,[[3,1,1,0,1,[[141,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[8,2,1,2,3,[[266,2,1,2,3]]],[12,1,1,3,4,[[347,1,1,3,4]]],[22,1,1,4,5,[[691,1,1,4,5]]],[23,2,2,5,7,[[781,1,1,5,6],[795,1,1,6,7]]],[24,1,1,7,8,[[800,1,1,7,8]]],[37,2,2,8,10,[[922,1,1,8,9],[923,1,1,9,10]]]],[4479,6808,8013,10663,17921,19884,20216,20429,23055,23062]]],["+",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4479]]],["pierced",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23055]]],["through",[8,7,[[6,1,1,0,1,[[219,1,1,0,1]]],[8,2,1,1,2,[[266,2,1,1,2]]],[12,1,1,2,3,[[347,1,1,2,3]]],[22,1,1,3,4,[[691,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]],[24,1,1,5,6,[[800,1,1,5,6]]],[37,1,1,6,7,[[923,1,1,6,7]]]],[6808,8013,10663,17921,20216,20429,23062]]],["wounded",[1,1,[[23,1,1,0,1,[[781,1,1,0,1]]]],[19884]]]]},{"k":"H1857","v":[]},{"k":"H1858","v":[["white",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12708]]]]},{"k":"H1859","v":[["generation",[4,2,[[26,4,2,0,2,[[853,4,2,0,2]]]],[21840,21871]]]]},{"k":"H1860","v":[["*",[2,2,[[22,1,1,0,1,[[744,1,1,0,1]]],[26,1,1,1,2,[[861,1,1,1,2]]]],[18946,22083]]],["abhorring",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18946]]],["contempt",[1,1,[[26,1,1,0,1,[[861,1,1,0,1]]]],[22083]]]]},{"k":"H1861","v":[["*",[3,3,[[8,1,1,0,1,[[248,1,1,0,1]]],[17,1,1,1,2,[[442,1,1,1,2]]],[20,1,1,2,3,[[670,1,1,2,3]]]],[7506,13028,17534]]],["am",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13028]]],["goads",[2,2,[[8,1,1,0,1,[[248,1,1,0,1]]],[20,1,1,1,2,[[670,1,1,1,2]]]],[7506,17534]]]]},{"k":"H1862","v":[["Darda",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8875]]]]},{"k":"H1863","v":[["*",[2,2,[[0,1,1,0,1,[[2,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]]],[73,22233]]],["thistle",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22233]]],["thistles",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[73]]]]},{"k":"H1864","v":[["*",[17,14,[[4,1,1,0,1,[[185,1,1,0,1]]],[17,1,1,1,2,[[472,1,1,1,2]]],[20,2,2,2,4,[[659,1,1,2,3],[669,1,1,3,4]]],[25,13,10,4,14,[[821,1,1,4,5],[841,8,5,5,10],[842,1,1,10,11],[843,3,3,11,14]]]],[5833,13786,17321,17516,20941,21501,21504,21505,21521,21522,21537,21564,21565,21570]]],["+",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13786]]],["south",[16,13,[[4,1,1,0,1,[[185,1,1,0,1]]],[20,2,2,1,3,[[659,1,1,1,2],[669,1,1,2,3]]],[25,13,10,3,13,[[821,1,1,3,4],[841,8,5,4,9],[842,1,1,9,10],[843,3,3,10,13]]]],[5833,17321,17516,20941,21501,21504,21505,21521,21522,21537,21564,21565,21570]]]]},{"k":"H1865","v":[["*",[8,7,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[22,1,1,2,3,[[739,1,1,2,3]]],[23,4,3,3,6,[[778,4,3,3,6]]],[25,1,1,6,7,[[847,1,1,6,7]]]],[2405,3479,18844,19809,19816,19818,21672]]],["liberty",[7,6,[[2,1,1,0,1,[[114,1,1,0,1]]],[22,1,1,1,2,[[739,1,1,1,2]]],[23,4,3,2,5,[[778,4,3,2,5]]],[25,1,1,5,6,[[847,1,1,5,6]]]],[3479,18844,19809,19816,19818,21672]]],["pure",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2405]]]]},{"k":"H1866","v":[["swallow",[2,2,[[18,1,1,0,1,[[561,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]]],[15262,17143]]]]},{"k":"H1867","v":[["Darius",[10,10,[[14,1,1,0,1,[[406,1,1,0,1]]],[15,1,1,1,2,[[424,1,1,1,2]]],[26,2,2,2,4,[[858,1,1,2,3],[860,1,1,3,4]]],[36,3,3,4,7,[[909,2,2,4,6],[910,1,1,6,7]]],[37,3,3,7,10,[[911,2,2,7,9],[917,1,1,9,10]]]],[12115,12646,21989,22037,22841,22855,22865,22879,22885,22963]]]]},{"k":"H1868","v":[["Darius",[15,15,[[14,9,9,0,9,[[406,1,1,0,1],[407,3,3,1,4],[408,5,5,4,9]]],[26,6,6,9,15,[[854,1,1,9,10],[855,5,5,10,15]]]],[12134,12139,12140,12141,12152,12163,12164,12165,12166,21905,21906,21911,21914,21930,21933]]]]},{"k":"H1869","v":[["*",[63,59,[[3,1,1,0,1,[[140,1,1,0,1]]],[4,4,4,1,5,[[153,1,1,1,2],[163,2,2,2,4],[185,1,1,4,5]]],[5,2,2,5,7,[[187,1,1,5,6],[200,1,1,6,7]]],[6,3,3,7,10,[[215,1,1,7,8],[219,1,1,8,9],[230,1,1,9,10]]],[8,1,1,10,11,[[240,1,1,10,11]]],[12,2,2,11,13,[[342,1,1,11,12],[345,1,1,12,13]]],[13,1,1,13,14,[[380,1,1,13,14]]],[15,1,1,14,15,[[425,1,1,14,15]]],[17,4,4,15,19,[[444,1,1,15,16],[457,1,1,16,17],[459,1,1,17,18],[463,1,1,18,19]]],[18,10,10,19,29,[[484,1,1,19,20],[488,1,1,20,21],[502,2,2,21,23],[514,1,1,23,24],[535,1,1,24,25],[541,1,1,25,26],[568,1,1,26,27],[584,1,1,27,28],[596,1,1,28,29]]],[19,1,1,29,30,[[631,1,1,29,30]]],[22,11,9,30,39,[[683,1,1,30,31],[689,1,1,31,32],[694,2,1,32,33],[699,1,1,33,34],[720,1,1,34,35],[726,1,1,35,36],[737,1,1,36,37],[741,3,2,37,39]]],[23,10,8,39,47,[[753,1,1,39,40],[769,1,1,40,41],[790,1,1,41,42],[792,1,1,42,43],[794,2,2,43,45],[795,4,2,45,47]]],[24,3,3,47,50,[[797,1,1,47,48],[798,1,1,48,49],[799,1,1,49,50]]],[29,2,2,50,52,[[882,1,1,50,51],[887,1,1,51,52]]],[32,4,4,52,56,[[893,1,1,52,53],[897,2,2,53,55],[898,1,1,55,56]]],[34,2,2,56,58,[[905,2,2,56,58]]],[37,1,1,58,59,[[919,1,1,58,59]]]],[4463,4928,5232,5233,5839,5854,6196,6644,6781,7097,7324,10446,10615,11483,12686,13059,13404,13447,13512,14007,14061,14256,14260,14464,14786,14853,15408,15706,15933,16501,17767,17899,17979,18050,18496,18631,18808,18868,18869,19178,19564,20054,20113,20180,20195,20215,20245,20325,20336,20366,22423,22508,22582,22638,22639,22663,22783,22787,23012]]],["+",[2,2,[[12,1,1,0,1,[[345,1,1,0,1]]],[23,1,1,1,2,[[753,1,1,1,2]]]],[10615,19178]]],["Lead",[1,1,[[18,1,1,0,1,[[502,1,1,0,1]]]],[14256]]],["archer",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20215]]],["bend",[6,6,[[18,2,2,0,2,[[488,1,1,0,1],[541,1,1,1,2]]],[23,4,4,2,6,[[790,1,1,2,3],[794,2,2,3,5],[795,1,1,5,6]]]],[14061,14853,20054,20180,20195,20215]]],["bendeth",[2,2,[[18,1,1,0,1,[[535,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[14786,20215]]],["bent",[7,7,[[18,2,2,0,2,[[484,1,1,0,1],[514,1,1,1,2]]],[22,2,2,2,4,[[683,1,1,2,3],[699,1,1,3,4]]],[24,2,2,4,6,[[798,1,1,4,5],[799,1,1,5,6]]],[37,1,1,6,7,[[919,1,1,6,7]]]],[14007,14464,17767,18050,20336,20366,23012]]],["come",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4463]]],["down",[2,2,[[6,2,2,0,2,[[215,1,1,0,1],[230,1,1,1,2]]]],[6644,7097]]],["drew",[1,1,[[13,1,1,0,1,[[380,1,1,0,1]]]],[11483]]],["forth",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15706]]],["go",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15933]]],["goeth",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18808]]],["guide",[1,1,[[18,1,1,0,1,[[502,1,1,0,1]]]],[14260]]],["leadeth",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18631]]],["led",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16501]]],["over",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17899]]],["shoot",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10446]]],["them",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18496]]],["thresh",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20245]]],["tread",[14,14,[[4,3,3,0,3,[[163,2,2,0,2],[185,1,1,2,3]]],[5,1,1,3,4,[[187,1,1,3,4]]],[8,1,1,4,5,[[240,1,1,4,5]]],[17,1,1,5,6,[[459,1,1,5,6]]],[18,1,1,6,7,[[568,1,1,6,7]]],[22,2,2,7,9,[[694,1,1,7,8],[741,1,1,8,9]]],[23,2,2,9,11,[[769,1,1,9,10],[792,1,1,10,11]]],[32,3,3,11,14,[[893,1,1,11,12],[897,1,1,12,13],[898,1,1,13,14]]]],[5232,5233,5839,5854,7324,13447,15408,17979,18869,19564,20113,22582,22638,22663]]],["treader",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22508]]],["treaders",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17979]]],["treadeth",[4,4,[[17,1,1,0,1,[[444,1,1,0,1]]],[22,1,1,1,2,[[741,1,1,1,2]]],[29,1,1,2,3,[[882,1,1,2,3]]],[32,1,1,3,4,[[897,1,1,3,4]]]],[13059,18868,22423,22639]]],["treading",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12686]]],["trodden",[6,6,[[4,1,1,0,1,[[153,1,1,0,1]]],[5,1,1,1,2,[[200,1,1,1,2]]],[17,2,2,2,4,[[457,1,1,2,3],[463,1,1,3,4]]],[22,1,1,4,5,[[741,1,1,4,5]]],[24,1,1,5,6,[[797,1,1,5,6]]]],[4928,6196,13404,13512,18869,20325]]],["trode",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6781]]],["walk",[2,2,[[34,2,2,0,2,[[905,2,2,0,2]]]],[22783,22787]]]]},{"k":"H1870","v":[["*",[704,624,[[0,31,30,0,30,[[2,1,1,0,1],[5,1,1,1,2],[15,1,1,2,3],[17,1,1,3,4],[18,2,2,4,6],[23,6,6,6,12],[27,1,1,12,13],[29,1,1,13,14],[30,2,2,14,16],[31,1,1,16,17],[32,1,1,17,18],[34,2,2,18,20],[37,3,3,20,23],[41,2,2,23,25],[44,3,3,25,28],[47,2,1,28,29],[48,1,1,29,30]]],[1,13,13,30,43,[[52,1,1,30,31],[53,1,1,31,32],[54,1,1,32,33],[57,1,1,33,34],[62,3,3,34,37],[67,2,2,37,39],[72,1,1,39,40],[81,1,1,40,41],[82,2,2,41,43]]],[2,1,1,43,44,[[115,1,1,43,44]]],[3,23,18,44,62,[[125,2,2,44,46],[126,2,1,46,47],[127,2,1,47,48],[130,1,1,48,49],[136,1,1,49,50],[137,5,4,50,54],[138,8,6,54,60],[140,1,1,60,61],[149,1,1,61,62]]],[4,48,43,62,105,[[153,7,6,62,68],[154,5,3,68,71],[155,1,1,71,72],[157,1,1,72,73],[158,1,1,73,74],[160,2,2,74,76],[161,2,2,76,78],[162,1,1,78,79],[163,4,4,79,83],[165,1,1,83,84],[166,1,1,84,85],[169,1,1,85,86],[171,3,3,86,89],[174,2,2,89,91],[175,1,1,91,92],[176,1,1,92,93],[177,2,2,93,95],[178,1,1,95,96],[179,1,1,96,97],[180,7,5,97,102],[182,1,1,102,103],[183,1,1,103,104],[184,1,1,104,105]]],[5,17,16,105,121,[[187,1,1,105,106],[188,3,3,106,109],[189,2,1,109,110],[191,3,3,110,113],[194,1,1,113,114],[195,2,2,114,116],[196,1,1,116,117],[198,1,1,117,118],[208,1,1,118,119],[209,1,1,119,120],[210,1,1,120,121]]],[6,14,14,121,135,[[212,3,3,121,124],[214,1,1,124,125],[215,1,1,125,126],[218,1,1,126,127],[219,1,1,127,128],[227,1,1,128,129],[228,3,3,129,132],[229,2,2,132,134],[230,1,1,134,135]]],[7,1,1,135,136,[[232,1,1,135,136]]],[8,27,25,136,161,[[236,1,1,136,137],[239,1,1,137,138],[241,3,2,138,140],[243,2,2,140,142],[244,2,2,142,144],[247,1,1,144,145],[248,3,2,145,147],[250,3,3,147,150],[252,1,1,150,151],[253,1,1,151,152],[256,1,1,152,153],[259,3,3,153,156],[260,1,1,156,157],[261,2,2,157,159],[263,1,1,159,160],[265,1,1,160,161]]],[9,12,12,161,173,[[268,1,1,161,162],[270,1,1,162,163],[277,1,1,163,164],[279,2,2,164,166],[281,2,2,166,168],[282,1,1,168,169],[284,1,1,169,170],[288,3,3,170,173]]],[10,46,39,173,212,[[291,1,1,173,174],[292,3,3,174,177],[293,1,1,177,178],[298,8,7,178,185],[301,3,3,185,188],[303,12,9,188,197],[305,2,2,197,199],[306,3,3,199,202],[308,5,4,202,206],[309,3,3,206,209],[310,1,1,209,210],[312,4,2,210,212]]],[11,22,20,212,232,[[314,1,1,212,213],[315,4,3,213,216],[318,1,1,216,217],[319,1,1,217,218],[320,2,2,218,220],[321,1,1,220,221],[322,1,1,221,222],[323,2,2,222,224],[328,1,1,224,225],[329,1,1,225,226],[331,2,2,226,228],[333,2,2,228,230],[334,1,1,230,231],[337,2,1,231,232]]],[13,25,23,232,255,[[372,8,7,232,239],[373,1,1,239,240],[377,1,1,240,241],[379,1,1,241,242],[383,2,2,242,244],[384,1,1,244,245],[386,1,1,245,246],[387,4,3,246,249],[388,1,1,249,250],[393,2,2,250,252],[394,2,2,252,254],[400,1,1,254,255]]],[14,3,3,255,258,[[410,3,3,255,258]]],[15,3,2,258,260,[[421,3,2,258,260]]],[17,32,32,260,292,[[438,1,1,260,261],[439,1,1,261,262],[441,1,1,262,263],[443,1,1,263,264],[447,1,1,264,265],[448,1,1,265,266],[452,1,1,266,267],[454,1,1,267,268],[456,3,3,268,271],[457,2,2,271,273],[458,2,2,273,275],[459,4,4,275,279],[461,1,1,279,280],[463,2,2,280,282],[464,1,1,282,283],[466,2,2,283,285],[469,2,2,285,287],[471,1,1,287,288],[473,3,3,288,291],[475,1,1,291,292]]],[18,66,64,292,356,[[478,3,2,292,294],[479,1,1,294,295],[482,1,1,295,296],[487,1,1,296,297],[495,3,3,297,300],[502,4,4,300,304],[504,1,1,304,305],[509,1,1,305,306],[512,1,1,306,307],[513,1,1,307,308],[514,5,5,308,313],[516,1,1,313,314],[526,1,1,314,315],[527,1,1,315,316],[528,1,1,316,317],[544,1,1,317,318],[554,2,2,318,320],[557,1,1,320,321],[558,1,1,321,322],[562,1,1,322,323],[563,1,1,323,324],[566,1,1,324,325],[568,1,1,325,326],[572,1,1,326,327],[578,2,2,327,329],[579,1,1,329,330],[580,1,1,330,331],[584,4,4,331,335],[587,1,1,335,336],[596,13,13,336,349],[605,1,1,349,350],[615,1,1,350,351],[616,3,2,351,353],[620,1,1,353,354],[622,1,1,354,355],[623,1,1,355,356]]],[19,75,69,356,425,[[628,2,2,356,358],[629,4,4,358,362],[630,5,4,362,366],[631,4,4,366,370],[632,2,2,370,372],[633,2,2,372,374],[634,4,4,374,378],[635,4,4,378,382],[636,2,2,382,384],[637,2,2,384,386],[638,2,2,386,388],[639,3,3,388,391],[640,2,2,391,393],[641,5,4,393,397],[642,2,2,397,399],[643,8,7,399,406],[646,2,2,406,408],[647,1,1,408,409],[648,4,4,409,413],[649,2,2,413,415],[650,2,2,415,417],[653,1,1,417,418],[655,3,3,418,421],[656,1,1,421,422],[657,5,2,422,424],[658,1,1,424,425]]],[20,4,4,425,429,[[668,1,1,425,426],[669,2,2,426,428],[670,1,1,428,429]]],[22,47,42,429,471,[[680,1,1,429,430],[681,1,1,430,431],[686,1,1,431,432],[687,1,1,432,433],[688,2,2,433,435],[693,1,1,435,436],[708,2,2,436,438],[713,3,1,438,439],[715,2,2,439,441],[718,3,3,441,444],[720,2,2,444,446],[721,2,2,446,448],[723,1,1,448,449],[726,2,2,449,451],[727,2,2,451,453],[729,1,1,453,454],[731,1,1,454,455],[733,5,3,455,458],[734,1,1,458,459],[735,5,4,459,463],[736,2,2,463,465],[737,1,1,465,466],[740,1,1,466,467],[741,1,1,467,468],[742,1,1,468,469],[743,1,1,469,470],[744,1,1,470,471]]],[23,56,46,471,517,[[746,8,5,471,476],[747,3,3,476,479],[748,1,1,479,480],[749,2,2,480,482],[750,4,3,482,485],[751,3,3,485,488],[754,2,2,488,490],[756,2,2,490,492],[759,1,1,492,493],[760,1,1,493,494],[761,1,1,494,495],[762,4,2,495,497],[765,2,1,497,498],[766,1,1,498,499],[767,2,2,499,501],[769,1,1,501,502],[770,2,2,502,504],[772,1,1,504,505],[775,2,2,505,507],[776,3,2,507,509],[779,1,1,509,510],[780,2,2,510,512],[783,2,1,512,513],[786,1,1,513,514],[792,1,1,514,515],[794,1,1,515,516],[796,2,1,516,517]]],[24,6,6,517,523,[[797,2,2,517,519],[798,1,1,519,520],[799,3,3,520,523]]],[25,107,76,523,599,[[804,2,2,523,525],[808,5,5,525,530],[809,2,1,530,531],[810,2,2,531,533],[812,1,1,533,534],[814,1,1,534,535],[815,2,2,535,537],[817,7,6,537,543],[819,8,4,543,547],[821,4,4,547,551],[822,5,3,551,554],[823,1,1,554,555],[824,2,2,555,557],[825,1,1,557,558],[829,1,1,558,559],[834,9,5,559,564],[837,5,4,564,568],[841,13,10,568,578],[842,2,2,578,580],[843,13,7,580,587],[844,4,3,587,590],[845,4,3,590,593],[847,8,3,593,596],[848,4,2,596,598],[849,1,1,598,599]]],[27,8,8,599,607,[[863,1,1,599,600],[865,1,1,600,601],[867,1,1,601,602],[870,1,1,602,603],[871,1,1,603,604],[873,1,1,604,605],[874,1,1,605,606],[875,1,1,606,607]]],[28,1,1,607,608,[[877,1,1,607,608]]],[29,3,3,608,611,[[880,1,1,608,609],[882,1,1,609,610],[886,1,1,610,611]]],[31,2,2,611,613,[[891,2,2,611,613]]],[32,1,1,613,614,[[896,1,1,613,614]]],[33,2,2,614,616,[[900,1,1,614,615],[901,1,1,615,616]]],[36,2,2,616,618,[[909,2,2,616,618]]],[37,3,3,618,621,[[911,2,2,618,620],[913,1,1,620,621]]],[38,3,3,621,624,[[926,2,2,621,623],[927,1,1,623,624]]]],[79,149,388,443,459,488,612,618,631,633,639,647,793,866,896,908,929,976,1014,1030,1133,1135,1140,1277,1290,1379,1381,1382,1458,1490,1597,1625,1635,1737,1884,1885,1888,2007,2019,2164,2446,2476,2486,3546,3975,3978,4021,4055,4133,4328,4341,4344,4362,4373,4397,4398,4401,4406,4407,4409,4471,4768,4894,4911,4914,4923,4925,4932,4939,4946,4965,4976,5086,5093,5139,5143,5169,5173,5198,5227,5230,5236,5238,5277,5314,5380,5409,5412,5415,5474,5476,5504,5534,5564,5565,5583,5603,5618,5620,5636,5640,5679,5724,5757,5762,5859,5876,5885,5891,5897,5938,5939,5941,6017,6048,6050,6074,6133,6431,6474,6493,6562,6564,6567,6608,6633,6730,6779,6988,6998,6999,7019,7033,7051,7096,7134,7230,7310,7340,7343,7372,7374,7397,7399,7483,7502,7503,7562,7578,7580,7670,7690,7777,7842,7846,7858,7873,7908,7930,7964,7980,8073,8127,8269,8347,8351,8391,8412,8439,8501,8624,8633,8635,8766,8772,8773,8774,8830,9010,9017,9021,9024,9029,9033,9043,9137,9141,9146,9193,9194,9196,9201,9208,9209,9210,9212,9217,9275,9283,9285,9302,9309,9347,9348,9368,9384,9391,9394,9402,9446,9523,9532,9574,9584,9585,9596,9693,9722,9745,9754,9783,9805,9845,9848,9966,9996,10089,10094,10140,10141,10147,10226,11298,11305,11309,11312,11313,11316,11320,11338,11431,11475,11526,11529,11565,11619,11630,11636,11637,11647,11761,11762,11766,11790,11935,12222,12223,12232,12523,12530,12927,12936,12996,13048,13152,13168,13269,13309,13369,13384,13386,13392,13417,13429,13430,13440,13449,13454,13459,13481,13527,13530,13557,13592,13595,13704,13710,13759,13812,13817,13818,13883,13940,13945,13957,13981,14046,14139,14148,14150,14255,14259,14260,14263,14296,14363,14416,14442,14455,14457,14464,14473,14484,14513,14661,14691,14704,14895,15106,15112,15210,15230,15284,15295,15367,15406,15464,15515,15519,15544,15556,15703,15706,15716,15739,15793,15899,15901,15903,15912,15924,15925,15927,15928,15930,15931,15935,15957,16066,16127,16236,16242,16263,16301,16337,16350,16415,16431,16441,16445,16446,16453,16461,16472,16478,16486,16501,16504,16509,16516,16525,16538,16546,16563,16583,16594,16600,16602,16604,16615,16624,16634,16644,16653,16665,16685,16693,16708,16734,16745,16747,16753,16762,16774,16780,16784,16786,16816,16826,16842,16847,16849,16857,16865,16869,16871,16928,16941,16978,16986,16992,17000,17013,17020,17021,17063,17070,17154,17202,17206,17214,17251,17270,17271,17287,17496,17518,17522,17528,17688,17719,17818,17830,17874,17876,17965,18228,18238,18328,18381,18386,18423,18434,18447,18496,18504,18521,18524,18574,18629,18631,18645,18647,18683,18717,18747,18748,18749,18764,18775,18779,18782,18783,18788,18799,18808,18864,18883,18890,18899,18925,18982,18983,18988,18998,19001,19004,19015,19023,19045,19062,19063,19105,19114,19116,19122,19124,19142,19203,19224,19250,19265,19322,19353,19367,19395,19399,19448,19475,19496,19506,19539,19575,19585,19629,19700,19712,19750,19770,19838,19845,19849,19927,19978,20099,20171,20283,20314,20322,20347,20363,20365,20394,20520,20521,20580,20581,20585,20586,20604,20609,20624,20632,20676,20730,20753,20754,20787,20789,20793,20805,20809,20823,20872,20874,20878,20879,20925,20938,20939,20941,20963,20964,20965,21007,21020,21038,21070,21172,21288,21289,21291,21297,21300,21376,21378,21390,21391,21483,21487,21497,21499,21501,21504,21509,21521,21522,21523,21537,21538,21553,21556,21559,21562,21563,21564,21567,21573,21574,21576,21600,21602,21603,21657,21663,21664,21681,21694,21703,22111,22142,22176,22216,22238,22254,22273,22291,22318,22386,22420,22495,22566,22568,22622,22687,22700,22845,22847,22882,22884,22919,23111,23112,23121]]],["+",[60,55,[[4,3,2,0,2,[[154,3,2,0,2]]],[6,2,2,2,4,[[212,1,1,2,3],[227,1,1,3,4]]],[8,1,1,4,5,[[239,1,1,4,5]]],[9,2,2,5,7,[[277,1,1,5,6],[279,1,1,6,7]]],[10,2,2,7,9,[[298,1,1,7,8],[303,1,1,8,9]]],[11,2,2,9,11,[[315,1,1,9,10],[329,1,1,10,11]]],[13,2,2,11,13,[[372,1,1,11,12],[373,1,1,12,13]]],[17,2,2,13,15,[[457,1,1,13,14],[459,1,1,14,15]]],[18,1,1,15,16,[[584,1,1,15,16]]],[19,6,6,16,22,[[629,1,1,16,17],[632,1,1,17,18],[636,1,1,18,19],[639,1,1,19,20],[641,1,1,20,21],[648,1,1,21,22]]],[22,6,5,22,27,[[680,1,1,22,23],[713,1,1,23,24],[733,2,1,24,25],[735,1,1,25,26],[741,1,1,26,27]]],[23,8,8,27,35,[[759,1,1,27,28],[762,1,1,28,29],[767,1,1,29,30],[769,1,1,30,31],[770,1,1,31,32],[779,1,1,32,33],[780,2,2,33,35]]],[24,2,2,35,37,[[797,1,1,35,36],[798,1,1,36,37]]],[25,17,14,37,51,[[804,2,2,37,39],[808,1,1,39,40],[810,1,1,40,41],[814,1,1,41,42],[817,1,1,42,43],[819,1,1,43,44],[834,5,3,44,47],[837,1,1,47,48],[841,1,1,48,49],[844,1,1,49,50],[845,2,1,50,51]]],[31,2,2,51,53,[[891,2,2,51,53]]],[32,1,1,53,54,[[896,1,1,53,54]]],[37,1,1,54,55,[[911,1,1,54,55]]]],[4946,4965,6564,6988,7310,8269,8351,9029,9217,9596,9996,11312,11338,13392,13440,15716,16445,16525,16653,16747,16786,17000,17688,18328,18749,18779,18883,19322,19395,19506,19539,19575,19838,19845,19849,20322,20347,20520,20521,20604,20624,20730,20789,20872,21288,21289,21291,21391,21487,21574,21602,22566,22568,22622,22882]]],["away",[1,1,[[8,1,1,0,1,[[259,1,1,0,1]]]],[7858]]],["conversation",[2,2,[[18,2,2,0,2,[[514,1,1,0,1],[527,1,1,1,2]]]],[14464,14691]]],["custom",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[908]]],["journey",[22,20,[[0,3,3,0,3,[[23,1,1,0,1],[29,1,1,1,2],[30,1,1,2,3]]],[1,3,3,3,6,[[52,1,1,3,4],[54,1,1,4,5],[57,1,1,5,6]]],[3,7,5,6,11,[[125,2,2,6,8],[126,2,1,8,9],[127,2,1,9,10],[149,1,1,10,11]]],[5,2,2,11,13,[[195,2,2,11,13]]],[6,1,1,13,14,[[214,1,1,13,14]]],[8,1,1,14,15,[[250,1,1,14,15]]],[10,3,3,15,18,[[308,1,1,15,16],[309,2,2,16,18]]],[11,1,1,18,19,[[315,1,1,18,19]]],[19,1,1,19,20,[[634,1,1,19,20]]]],[612,866,896,1597,1635,1737,3975,3978,4021,4055,4768,6048,6050,6608,7578,9368,9391,9394,9585,16594]]],["manner",[8,8,[[0,1,1,0,1,[[18,1,1,0,1]]],[8,1,1,1,2,[[256,1,1,1,2]]],[22,2,2,2,4,[[688,2,2,2,4]]],[23,1,1,4,5,[[766,1,1,4,5]]],[25,1,1,5,6,[[821,1,1,5,6]]],[29,2,2,6,8,[[882,1,1,6,7],[886,1,1,7,8]]]],[488,7777,17874,17876,19475,20925,22420,22495]]],["side",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1140]]],["through",[1,1,[[9,1,1,0,1,[[270,1,1,0,1]]]],[8127]]],["toward",[30,25,[[10,3,3,0,3,[[298,2,2,0,2],[308,1,1,2,3]]],[13,2,2,3,5,[[372,2,2,3,5]]],[25,25,20,5,25,[[821,1,1,5,6],[841,12,9,6,15],[842,2,2,15,17],[843,8,6,17,23],[844,2,2,23,25]]]],[9029,9033,9384,11316,11320,20941,21483,21497,21499,21501,21504,21509,21521,21522,21523,21537,21538,21553,21559,21562,21563,21564,21567,21573,21576]]],["way",[429,390,[[0,24,23,0,23,[[2,1,1,0,1],[5,1,1,1,2],[15,1,1,2,3],[17,1,1,3,4],[23,5,5,4,9],[27,1,1,9,10],[31,1,1,10,11],[32,1,1,11,12],[34,2,2,12,14],[37,2,2,14,16],[41,2,2,16,18],[44,3,3,18,21],[47,2,1,21,22],[48,1,1,22,23]]],[1,10,10,23,33,[[53,1,1,23,24],[62,3,3,24,27],[67,2,2,27,29],[72,1,1,29,30],[81,1,1,30,31],[82,2,2,31,33]]],[3,16,13,33,46,[[130,1,1,33,34],[136,1,1,34,35],[137,5,4,35,39],[138,8,6,39,45],[140,1,1,45,46]]],[4,33,32,46,78,[[153,7,6,46,52],[154,2,2,52,54],[155,1,1,54,55],[158,1,1,55,56],[160,1,1,56,57],[161,2,2,57,59],[163,3,3,59,62],[165,1,1,62,63],[166,1,1,63,64],[169,1,1,64,65],[171,2,2,65,67],[174,2,2,67,69],[175,1,1,69,70],[176,1,1,70,71],[177,2,2,71,73],[179,1,1,73,74],[180,3,3,74,77],[183,1,1,77,78]]],[5,14,13,78,91,[[187,1,1,78,79],[188,3,3,79,82],[189,2,1,82,83],[191,3,3,83,86],[194,1,1,86,87],[196,1,1,87,88],[198,1,1,88,89],[209,1,1,89,90],[210,1,1,90,91]]],[6,11,11,91,102,[[212,2,2,91,93],[215,1,1,93,94],[218,1,1,94,95],[219,1,1,95,96],[228,3,3,96,99],[229,2,2,99,101],[230,1,1,101,102]]],[7,1,1,102,103,[[232,1,1,102,103]]],[8,20,18,103,121,[[236,1,1,103,104],[241,3,2,104,106],[244,2,2,106,108],[247,1,1,108,109],[248,3,2,109,111],[250,2,2,111,113],[252,1,1,113,114],[259,2,2,114,116],[260,1,1,116,117],[261,2,2,117,119],[263,1,1,119,120],[265,1,1,120,121]]],[9,8,8,121,129,[[268,1,1,121,122],[279,1,1,122,123],[281,2,2,123,125],[282,1,1,125,126],[284,1,1,126,127],[288,2,2,127,129]]],[10,31,25,129,154,[[291,1,1,129,130],[292,2,2,130,132],[298,3,3,132,135],[301,1,1,135,136],[303,11,8,136,144],[305,2,2,144,146],[306,3,3,146,149],[308,3,2,149,151],[309,1,1,151,152],[310,1,1,152,153],[312,3,1,153,154]]],[11,19,17,154,171,[[314,1,1,154,155],[315,2,1,155,156],[318,1,1,156,157],[319,1,1,157,158],[320,2,2,158,160],[321,1,1,160,161],[322,1,1,161,162],[323,2,2,162,164],[328,1,1,164,165],[331,2,2,165,167],[333,2,2,167,169],[334,1,1,169,170],[337,2,1,170,171]]],[13,9,9,171,180,[[372,4,4,171,175],[377,1,1,175,176],[384,1,1,176,177],[386,1,1,177,178],[387,2,2,178,180]]],[14,3,3,180,183,[[410,3,3,180,183]]],[15,3,2,183,185,[[421,3,2,183,185]]],[17,19,19,185,204,[[438,1,1,185,186],[441,1,1,186,187],[443,1,1,187,188],[447,1,1,188,189],[452,1,1,189,190],[454,1,1,190,191],[456,2,2,191,193],[458,2,2,193,195],[459,1,1,195,196],[463,2,2,196,198],[464,1,1,198,199],[466,1,1,199,200],[471,1,1,200,201],[473,3,3,201,204]]],[18,45,43,204,247,[[478,3,2,204,206],[479,1,1,206,207],[482,1,1,207,208],[495,2,2,208,210],[502,3,3,210,213],[504,1,1,213,214],[509,1,1,214,215],[512,1,1,215,216],[513,1,1,216,217],[514,4,4,217,221],[526,1,1,221,222],[544,1,1,222,223],[554,2,2,223,225],[557,1,1,225,226],[562,1,1,226,227],[563,1,1,227,228],[566,1,1,228,229],[578,2,2,229,231],[579,1,1,231,232],[584,3,3,232,235],[587,1,1,235,236],[596,8,8,236,244],[616,2,1,244,245],[620,1,1,245,246],[623,1,1,246,247]]],[19,47,44,247,291,[[628,2,2,247,249],[629,2,2,249,251],[630,1,1,251,252],[631,3,3,252,255],[633,1,1,255,256],[634,2,2,256,258],[635,3,3,258,261],[636,1,1,261,262],[637,1,1,262,263],[638,2,2,263,265],[639,2,2,265,267],[640,2,2,267,269],[641,2,2,269,271],[642,2,2,271,273],[643,5,5,273,278],[646,1,1,278,279],[647,1,1,279,280],[648,3,3,280,283],[649,2,2,283,285],[650,1,1,285,286],[653,1,1,286,287],[655,1,1,287,288],[656,1,1,288,289],[657,5,2,289,291]]],[20,3,3,291,294,[[668,1,1,291,292],[669,1,1,292,293],[670,1,1,293,294]]],[22,29,28,294,322,[[681,1,1,294,295],[686,1,1,295,296],[687,1,1,296,297],[693,1,1,297,298],[708,2,2,298,300],[713,2,1,300,301],[715,2,2,301,303],[718,3,3,303,306],[720,1,1,306,307],[721,2,2,307,309],[726,2,2,309,311],[727,1,1,311,312],[729,1,1,312,313],[731,1,1,313,314],[733,1,1,314,315],[734,1,1,315,316],[735,3,3,316,319],[737,1,1,319,320],[740,1,1,320,321],[743,1,1,321,322]]],[23,31,27,322,349,[[746,6,5,322,327],[747,1,1,327,328],[748,1,1,328,329],[749,2,2,329,331],[750,3,3,331,334],[754,2,2,334,336],[756,1,1,336,337],[762,1,1,337,338],[765,2,1,338,339],[767,1,1,339,340],[772,1,1,340,341],[775,2,2,341,343],[776,1,1,343,344],[783,2,1,344,345],[786,1,1,345,346],[792,1,1,346,347],[794,1,1,347,348],[796,2,1,348,349]]],[25,44,32,349,381,[[809,2,1,349,350],[810,1,1,350,351],[812,1,1,351,352],[815,1,1,352,353],[817,3,3,353,356],[819,3,2,356,358],[822,3,3,358,361],[823,1,1,361,362],[824,2,2,362,364],[834,3,2,364,366],[837,3,2,366,368],[843,5,4,368,372],[844,1,1,372,373],[845,2,2,373,375],[847,8,3,375,378],[848,4,2,378,380],[849,1,1,380,381]]],[27,4,4,381,385,[[863,1,1,381,382],[867,1,1,382,383],[871,1,1,383,384],[874,1,1,384,385]]],[29,1,1,385,386,[[880,1,1,385,386]]],[33,2,2,386,388,[[900,1,1,386,387],[901,1,1,387,388]]],[38,2,2,388,390,[[926,1,1,388,389],[927,1,1,389,390]]]],[79,149,388,443,618,631,633,639,647,793,929,976,1014,1030,1133,1135,1277,1290,1379,1381,1382,1458,1490,1625,1884,1885,1888,2007,2019,2164,2446,2476,2486,4133,4328,4341,4344,4362,4373,4397,4398,4401,4406,4407,4409,4471,4894,4911,4914,4923,4925,4932,4939,4946,4976,5093,5139,5169,5173,5227,5236,5238,5277,5314,5380,5409,5412,5474,5476,5504,5534,5564,5565,5603,5618,5636,5679,5757,5859,5876,5885,5891,5897,5938,5939,5941,6017,6074,6133,6474,6493,6562,6567,6633,6730,6779,6998,6999,7019,7033,7051,7096,7134,7230,7340,7343,7397,7399,7483,7502,7503,7562,7580,7670,7842,7846,7873,7908,7930,7964,7980,8073,8347,8391,8412,8439,8501,8633,8635,8766,8772,8774,9010,9017,9021,9137,9193,9194,9196,9201,9208,9209,9210,9212,9275,9283,9285,9302,9309,9347,9348,9402,9446,9532,9574,9584,9693,9722,9745,9754,9783,9805,9845,9848,9966,10089,10094,10140,10141,10147,10226,11298,11305,11309,11316,11431,11565,11619,11630,11637,12222,12223,12232,12523,12530,12927,12996,13048,13152,13269,13309,13384,13386,13429,13430,13454,13527,13530,13557,13595,13759,13812,13817,13818,13940,13945,13957,13981,14148,14150,14259,14260,14263,14296,14363,14416,14442,14455,14457,14473,14484,14661,14895,15106,15112,15210,15284,15295,15367,15515,15519,15544,15703,15706,15739,15793,15899,15912,15925,15927,15928,15930,15931,15935,16263,16301,16350,16415,16431,16441,16453,16478,16501,16504,16509,16563,16583,16602,16604,16615,16624,16644,16685,16693,16708,16734,16745,16753,16762,16780,16784,16816,16826,16849,16857,16865,16869,16871,16928,16978,16986,16992,17013,17020,17021,17063,17154,17206,17251,17270,17271,17496,17518,17528,17719,17818,17830,17965,18228,18238,18328,18381,18386,18423,18434,18447,18496,18521,18524,18629,18631,18647,18683,18717,18747,18764,18775,18779,18782,18808,18864,18899,18982,18983,18988,18998,19001,19023,19045,19062,19063,19105,19114,19116,19203,19224,19250,19399,19448,19496,19629,19700,19712,19770,19927,19978,20099,20171,20283,20609,20632,20676,20753,20787,20793,20805,20874,20878,20963,20964,20965,21007,21020,21038,21297,21300,21376,21378,21553,21556,21563,21564,21576,21600,21603,21657,21663,21664,21681,21694,21703,22111,22176,22238,22273,22386,22687,22700,23111,23121]]],["ways",[149,143,[[0,1,1,0,1,[[18,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[4,12,12,2,14,[[157,1,1,2,3],[160,1,1,3,4],[162,1,1,4,5],[163,1,1,5,6],[171,1,1,6,7],[178,1,1,7,8],[180,4,4,8,12],[182,1,1,12,13],[184,1,1,13,14]]],[5,1,1,14,15,[[208,1,1,14,15]]],[8,3,3,15,18,[[243,2,2,15,17],[253,1,1,17,18]]],[9,1,1,18,19,[[288,1,1,18,19]]],[10,7,7,19,26,[[292,1,1,19,20],[293,1,1,20,21],[298,2,2,21,23],[301,2,2,23,25],[312,1,1,25,26]]],[13,12,11,26,37,[[372,1,1,26,27],[379,1,1,27,28],[383,2,2,28,30],[387,2,1,30,31],[388,1,1,31,32],[393,2,2,32,34],[394,2,2,34,36],[400,1,1,36,37]]],[17,11,11,37,48,[[439,1,1,37,38],[448,1,1,38,39],[456,1,1,39,40],[457,1,1,40,41],[459,2,2,41,43],[461,1,1,43,44],[466,1,1,44,45],[469,2,2,45,47],[475,1,1,47,48]]],[18,18,18,48,66,[[487,1,1,48,49],[495,1,1,49,50],[502,1,1,50,51],[516,1,1,51,52],[528,1,1,52,53],[558,1,1,53,54],[568,1,1,54,55],[572,1,1,55,56],[580,1,1,56,57],[596,5,5,57,62],[605,1,1,62,63],[615,1,1,63,64],[616,1,1,64,65],[622,1,1,65,66]]],[19,21,20,66,86,[[629,1,1,66,67],[630,4,3,67,70],[631,1,1,70,71],[632,1,1,71,72],[633,1,1,72,73],[634,1,1,73,74],[635,1,1,74,75],[637,1,1,75,76],[641,2,2,76,78],[643,3,3,78,81],[646,1,1,81,82],[650,1,1,82,83],[655,2,2,83,85],[658,1,1,85,86]]],[20,1,1,86,87,[[669,1,1,86,87]]],[22,10,9,87,96,[[720,1,1,87,88],[723,1,1,88,89],[727,1,1,89,90],[733,2,1,90,91],[735,1,1,91,92],[736,2,2,92,94],[742,1,1,94,95],[744,1,1,95,96]]],[23,16,15,96,111,[[746,2,2,96,98],[747,2,2,98,100],[750,1,1,100,101],[751,3,3,101,104],[756,1,1,104,105],[760,1,1,105,106],[761,1,1,106,107],[762,2,2,107,109],[770,1,1,109,110],[776,2,1,110,111]]],[24,4,4,111,115,[[797,1,1,111,112],[799,3,3,112,115]]],[25,20,18,115,133,[[808,4,4,115,119],[815,1,1,119,120],[817,3,2,120,122],[819,4,3,122,125],[821,2,2,125,127],[822,2,2,127,129],[825,1,1,129,130],[829,1,1,130,131],[834,1,1,131,132],[837,1,1,132,133]]],[27,4,4,133,137,[[865,1,1,133,134],[870,1,1,134,135],[873,1,1,135,136],[875,1,1,136,137]]],[28,1,1,137,138,[[877,1,1,137,138]]],[36,2,2,138,140,[[909,2,2,138,140]]],[37,2,2,140,142,[[911,1,1,140,141],[913,1,1,141,142]]],[38,1,1,142,143,[[926,1,1,142,143]]]],[459,3546,5086,5143,5198,5230,5415,5583,5618,5620,5636,5640,5724,5762,6431,7372,7374,7690,8624,8773,8830,9024,9043,9141,9146,9523,11313,11475,11526,11529,11636,11647,11761,11762,11766,11790,11935,12936,13168,13369,13417,13449,13459,13481,13592,13704,13710,13883,14046,14139,14255,14513,14704,15230,15406,15464,15556,15901,15903,15924,15957,16066,16127,16236,16242,16337,16446,16461,16472,16486,16516,16538,16546,16600,16634,16665,16774,16784,16842,16847,16865,16941,17070,17202,17214,17287,17522,18504,18574,18645,18748,18783,18788,18799,18890,18925,18988,18998,19004,19015,19105,19122,19124,19142,19265,19353,19367,19395,19399,19585,19750,20314,20363,20365,20394,20580,20581,20585,20586,20754,20809,20823,20874,20878,20879,20938,20939,20963,20965,21070,21172,21300,21390,22142,22216,22254,22291,22318,22845,22847,22884,22919,23112]]]]},{"k":"H1871","v":[["drams",[4,4,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,3,3,1,4,[[419,3,3,1,4]]]],[12096,12490,12491,12492]]]]},{"k":"H1872","v":[["arms",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21790]]]]},{"k":"H1873","v":[["Dara",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10312]]]]},{"k":"H1874","v":[["Darkon",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12083,12478]]]]},{"k":"H1875","v":[["*",[164,152,[[0,5,3,0,3,[[8,3,1,0,1],[24,1,1,1,2],[41,1,1,2,3]]],[1,1,1,3,4,[[67,1,1,3,4]]],[2,2,1,4,5,[[99,2,1,4,5]]],[4,14,13,5,18,[[156,1,1,5,6],[163,1,1,6,7],[164,2,2,7,9],[165,1,1,9,10],[169,2,2,10,12],[170,2,2,12,14],[171,1,1,14,15],[174,1,1,15,16],[175,3,2,16,18]]],[6,1,1,18,19,[[216,1,1,18,19]]],[8,2,2,19,21,[[244,1,1,19,20],[263,1,1,20,21]]],[9,1,1,21,22,[[277,1,1,21,22]]],[10,4,4,22,26,[[304,1,1,22,23],[312,3,3,23,26]]],[11,9,8,26,34,[[313,5,4,26,30],[315,1,1,30,31],[320,1,1,31,32],[334,2,2,32,34]]],[12,11,10,34,44,[[347,2,2,34,36],[350,1,1,36,37],[352,1,1,37,38],[353,1,1,38,39],[358,1,1,39,40],[359,1,1,40,41],[363,1,1,41,42],[365,3,2,42,44]]],[13,30,28,44,72,[[367,1,1,44,45],[378,1,1,45,46],[380,3,2,46,48],[381,3,3,48,51],[382,1,1,51,52],[383,2,2,52,54],[384,3,3,54,57],[385,1,1,57,58],[386,1,1,58,59],[388,1,1,59,60],[390,2,2,60,62],[391,2,2,62,64],[392,2,1,64,65],[396,1,1,65,66],[397,2,2,66,68],[398,1,1,68,69],[400,3,3,69,72]]],[14,5,5,72,77,[[406,1,1,72,73],[408,1,1,73,74],[409,1,1,74,75],[411,1,1,75,76],[412,1,1,76,77]]],[16,1,1,77,78,[[435,1,1,77,78]]],[17,4,4,78,82,[[438,1,1,78,79],[440,1,1,79,80],[445,1,1,80,81],[474,1,1,81,82]]],[18,24,24,82,106,[[486,2,2,82,84],[487,3,3,84,87],[491,1,1,87,88],[499,1,1,88,89],[501,1,1,89,90],[511,2,2,90,92],[515,1,1,92,93],[530,1,1,93,94],[546,1,1,94,95],[554,1,1,95,96],[555,1,1,96,97],[582,1,1,97,98],[586,1,1,98,99],[588,1,1,99,100],[596,5,5,100,105],[619,1,1,105,106]]],[19,2,2,106,108,[[638,1,1,106,107],[658,1,1,107,108]]],[20,1,1,108,109,[[659,1,1,108,109]]],[22,14,13,109,122,[[679,1,1,109,110],[686,2,1,110,111],[687,1,1,111,112],[689,1,1,112,113],[694,1,1,113,114],[697,1,1,114,115],[709,1,1,115,116],[712,1,1,116,117],[733,1,1,117,118],[736,1,1,118,119],[740,1,1,119,120],[743,2,2,120,122]]],[23,9,9,122,131,[[752,1,1,122,123],[754,1,1,123,124],[765,1,1,124,125],[773,2,2,125,127],[774,2,2,127,129],[781,1,1,129,130],[782,1,1,130,131]]],[24,1,1,131,132,[[799,1,1,131,132]]],[25,16,13,132,145,[[815,4,3,132,135],[821,6,4,135,139],[834,1,1,139,140],[835,4,4,140,144],[837,1,1,144,145]]],[27,1,1,145,146,[[871,1,1,145,146]]],[29,4,4,146,150,[[883,4,4,146,150]]],[32,1,1,150,151,[[898,1,1,150,151]]],[35,1,1,151,152,[[906,1,1,151,152]]]],[210,680,1274,2014,2993,5033,5220,5245,5270,5286,5368,5373,5395,5403,5424,5472,5506,5521,6683,7400,7949,8262,9223,9485,9487,9488,9535,9536,9539,9549,9587,9735,10158,10163,10672,10673,10763,10804,10831,10964,10983,11108,11151,11152,11199,11451,11479,11482,11492,11502,11503,11521,11526,11527,11546,11548,11549,11579,11590,11653,11683,11699,11719,11724,11737,11846,11863,11875,11906,11936,11954,11959,12112,12172,12183,12249,12268,12869,12908,12959,13092,13842,14031,14033,14045,14054,14056,14082,14230,14247,14392,14398,14502,14721,14967,15095,15147,15610,15765,15795,15900,15908,15943,15992,16053,16290,16715,17297,17328,17671,17826,17842,17894,17974,18007,18251,18319,18746,18788,18866,18898,18907,19155,19222,19442,19642,19648,19681,19684,19881,19899,20379,20734,20738,20741,20896,20898,20926,20935,21286,21319,21321,21323,21324,21396,22237,22427,22428,22429,22437,22656,22793]]],["+",[32,28,[[0,1,1,0,1,[[8,1,1,0,1]]],[2,2,1,1,2,[[99,2,1,1,2]]],[4,4,3,2,5,[[170,1,1,2,3],[171,1,1,3,4],[175,2,1,4,5]]],[11,1,1,5,6,[[320,1,1,5,6]]],[13,10,9,6,15,[[378,1,1,6,7],[380,2,2,7,9],[381,1,1,9,10],[388,1,1,10,11],[391,2,2,11,13],[392,2,1,13,14],[400,1,1,14,15]]],[14,1,1,15,16,[[409,1,1,15,16]]],[18,3,3,16,19,[[491,1,1,16,17],[511,1,1,17,18],[530,1,1,18,19]]],[23,1,1,19,20,[[773,1,1,19,20]]],[25,7,6,20,26,[[815,2,1,20,21],[821,2,2,21,23],[835,3,3,23,26]]],[27,1,1,26,27,[[871,1,1,26,27]]],[29,1,1,27,28,[[883,1,1,27,28]]]],[210,2993,5395,5424,5521,9735,11451,11479,11482,11502,11653,11719,11724,11737,11954,12183,14082,14392,14721,19642,20734,20896,20935,21321,21323,21324,22237,22429]]],["Enquire",[3,3,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]],[23,1,1,2,3,[[765,1,1,2,3]]]],[9485,11546,19442]]],["Seek",[7,7,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]],[22,3,3,2,5,[[686,1,1,2,3],[712,1,1,3,4],[733,1,1,4,5]]],[29,2,2,5,7,[[883,2,2,5,7]]]],[10831,15610,17826,18319,18746,22427,22437]]],["after",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5472]]],["ask",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9223]]],["cared",[1,1,[[18,1,1,0,1,[[619,1,1,0,1]]]],[16290]]],["careth",[1,1,[[4,1,1,0,1,[[163,1,1,0,1]]]],[5220]]],["enquire",[25,24,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,1,1,1,2,[[67,1,1,1,2]]],[4,3,3,2,5,[[164,1,1,2,3],[165,1,1,3,4],[169,1,1,4,5]]],[8,2,2,5,7,[[244,1,1,5,6],[263,1,1,6,7]]],[10,2,2,7,9,[[312,2,2,7,9]]],[11,8,7,9,16,[[313,5,4,9,13],[315,1,1,13,14],[334,2,2,14,16]]],[12,2,2,16,18,[[347,1,1,16,17],[358,1,1,17,18]]],[13,3,3,18,21,[[384,2,2,18,20],[400,1,1,20,21]]],[23,1,1,21,22,[[781,1,1,21,22]]],[25,2,2,22,24,[[815,1,1,22,23],[821,1,1,23,24]]]],[680,2014,5270,5286,5373,7400,7949,9487,9488,9535,9536,9539,9549,9587,10158,10163,10672,10964,11548,11549,11959,19881,20738,20898]]],["enquired",[7,7,[[4,1,1,0,1,[[169,1,1,0,1]]],[6,1,1,1,2,[[216,1,1,1,2]]],[9,1,1,2,3,[[277,1,1,2,3]]],[12,2,2,3,5,[[347,1,1,3,4],[350,1,1,4,5]]],[25,1,1,5,6,[[821,1,1,5,6]]],[35,1,1,6,7,[[906,1,1,6,7]]]],[5368,6683,8262,10673,10763,20898,22793]]],["examine",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12268]]],["for",[2,2,[[12,1,1,0,1,[[363,1,1,0,1]]],[23,1,1,1,2,[[773,1,1,1,2]]]],[11108,19648]]],["inquisition",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14033]]],["of",[4,3,[[13,1,1,0,1,[[398,1,1,0,1]]],[25,3,2,1,3,[[821,2,1,1,2],[837,1,1,2,3]]]],[11906,20926,21396]]],["out",[3,3,[[18,2,2,0,2,[[487,1,1,0,1],[588,1,1,1,2]]],[22,1,1,2,3,[[740,1,1,2,3]]]],[14056,15795,18866]]],["questioned",[1,1,[[13,1,1,0,1,[[397,1,1,0,1]]]],[11863]]],["regard",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12908]]],["require",[7,6,[[0,2,1,0,1,[[8,2,1,0,1]]],[4,1,1,1,2,[[170,1,1,1,2]]],[13,1,1,2,3,[[390,1,1,2,3]]],[18,1,1,3,4,[[487,1,1,3,4]]],[25,1,1,4,5,[[834,1,1,4,5]]],[32,1,1,5,6,[[898,1,1,5,6]]]],[210,5403,11699,14054,21286,22656]]],["required",[2,2,[[0,1,1,0,1,[[41,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]]],[1274,11683]]],["search",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21319]]],["searchest",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13092]]],["searcheth",[2,2,[[12,1,1,0,1,[[365,1,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]]],[11152,13842]]],["seek",[38,38,[[4,3,3,0,3,[[156,1,1,0,1],[164,1,1,1,2],[175,1,1,2,3]]],[12,3,3,3,6,[[359,1,1,3,4],[365,2,2,4,6]]],[13,7,7,6,13,[[381,2,2,6,8],[385,1,1,8,9],[386,1,1,9,10],[396,1,1,10,11],[397,1,1,11,12],[400,1,1,12,13]]],[14,3,3,13,16,[[406,1,1,13,14],[408,1,1,14,15],[411,1,1,15,16]]],[17,1,1,16,17,[[440,1,1,16,17]]],[18,11,11,17,28,[[486,1,1,17,18],[487,1,1,18,19],[499,1,1,19,20],[501,1,1,20,21],[511,1,1,21,22],[515,1,1,22,23],[546,1,1,23,24],[586,1,1,24,25],[596,3,3,25,28]]],[20,1,1,28,29,[[659,1,1,28,29]]],[22,7,7,29,36,[[679,1,1,29,30],[686,1,1,30,31],[687,1,1,31,32],[689,1,1,32,33],[697,1,1,33,34],[709,1,1,34,35],[736,1,1,35,36]]],[23,1,1,36,37,[[774,1,1,36,37]]],[29,1,1,37,38,[[883,1,1,37,38]]]],[5033,5245,5506,10983,11151,11152,11492,11503,11579,11590,11846,11875,11936,12112,12172,12249,12959,14031,14045,14230,14247,14398,14502,14967,15765,15900,15943,16053,17328,17671,17826,17842,17894,18007,18251,18788,19681,22428]]],["seeketh",[6,6,[[19,2,2,0,2,[[638,1,1,0,1],[658,1,1,1,2]]],[23,2,2,2,4,[[774,1,1,2,3],[782,1,1,3,4]]],[24,1,1,4,5,[[799,1,1,4,5]]],[25,1,1,5,6,[[815,1,1,5,6]]]],[16715,17297,19684,19899,20379,20741]]],["seeking",[2,2,[[16,1,1,0,1,[[435,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]]],[12869,17974]]],["sought",[14,14,[[12,1,1,0,1,[[352,1,1,0,1]]],[13,5,5,1,6,[[367,1,1,1,2],[380,1,1,2,3],[382,1,1,3,4],[383,2,2,4,6]]],[18,4,4,6,10,[[554,1,1,6,7],[555,1,1,7,8],[596,2,2,8,10]]],[22,2,2,10,12,[[743,2,2,10,12]]],[23,2,2,12,14,[[752,1,1,12,13],[754,1,1,13,14]]]],[10804,11199,11482,11521,11526,11527,15095,15147,15908,15992,18898,18907,19155,19222]]]]},{"k":"H1876","v":[["*",[2,2,[[0,1,1,0,1,[[0,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[10,22333]]],["forth",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[10]]],["spring",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22333]]]]},{"k":"H1877","v":[["*",[15,15,[[0,2,2,0,2,[[0,2,2,0,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[9,1,1,3,4,[[289,1,1,3,4]]],[11,1,1,4,5,[[331,1,1,4,5]]],[17,2,2,5,7,[[441,1,1,5,6],[473,1,1,6,7]]],[18,2,2,7,9,[[500,1,1,7,8],[514,1,1,8,9]]],[19,1,1,9,10,[[654,1,1,9,10]]],[22,3,3,10,13,[[693,1,1,10,11],[715,1,1,11,12],[744,1,1,12,13]]],[23,2,2,13,15,[[758,1,1,13,14],[794,1,1,14,15]]]],[10,11,5760,8657,10087,12983,13820,14237,14452,17194,17966,18379,18936,19298,20177]]],["grass",[8,8,[[0,2,2,0,2,[[0,2,2,0,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[17,1,1,3,4,[[441,1,1,3,4]]],[19,1,1,4,5,[[654,1,1,4,5]]],[22,1,1,5,6,[[693,1,1,5,6]]],[23,2,2,6,8,[[758,1,1,6,7],[794,1,1,7,8]]]],[10,11,8657,12983,17194,17966,19298,20177]]],["green",[1,1,[[18,1,1,0,1,[[500,1,1,0,1]]]],[14237]]],["herb",[6,6,[[4,1,1,0,1,[[184,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[17,1,1,2,3,[[473,1,1,2,3]]],[18,1,1,3,4,[[514,1,1,3,4]]],[22,2,2,4,6,[[715,1,1,4,5],[744,1,1,5,6]]]],[5760,10087,13820,14452,18379,18936]]]]},{"k":"H1878","v":[["*",[11,11,[[1,1,1,0,1,[[76,1,1,0,1]]],[3,1,1,1,2,[[120,1,1,1,2]]],[4,1,1,2,3,[[183,1,1,2,3]]],[18,2,2,3,5,[[497,1,1,3,4],[500,1,1,4,5]]],[19,4,4,5,9,[[638,1,1,5,6],[640,1,1,6,7],[642,1,1,7,8],[655,1,1,8,9]]],[22,2,2,9,11,[[712,2,2,9,11]]]],[2275,3756,5748,14185,14240,16713,16751,16837,17221,18309,18310]]],["+",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3756]]],["accept",[1,1,[[18,1,1,0,1,[[497,1,1,0,1]]]],[14185]]],["anointest",[1,1,[[18,1,1,0,1,[[500,1,1,0,1]]]],[14240]]],["ashes",[1,1,[[1,1,1,0,1,[[76,1,1,0,1]]]],[2275]]],["fat",[7,7,[[4,1,1,0,1,[[183,1,1,0,1]]],[19,4,4,1,5,[[638,1,1,1,2],[640,1,1,2,3],[642,1,1,3,4],[655,1,1,4,5]]],[22,2,2,5,7,[[712,2,2,5,7]]]],[5748,16713,16751,16837,17221,18309,18310]]]]},{"k":"H1879","v":[["fat",[3,3,[[18,2,2,0,2,[[499,1,1,0,1],[569,1,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]]],[14233,15425,18240]]]]},{"k":"H1880","v":[["*",[15,14,[[2,5,4,0,4,[[90,1,1,0,1],[93,2,1,1,2],[95,2,2,2,4]]],[6,1,1,4,5,[[219,1,1,4,5]]],[10,2,2,5,7,[[303,2,2,5,7]]],[17,1,1,7,8,[[471,1,1,7,8]]],[18,3,3,8,11,[[513,1,1,8,9],[540,1,1,9,10],[542,1,1,10,11]]],[22,1,1,11,12,[[733,1,1,11,12]]],[23,2,2,12,14,[[775,2,2,12,14]]]],[2761,2807,2859,2860,6763,9187,9189,13752,14446,14844,14871,18742,19705,19731]]],["+",[1,1,[[18,1,1,0,1,[[513,1,1,0,1]]]],[14446]]],["ashes",[8,7,[[2,5,4,0,4,[[90,1,1,0,1],[93,2,1,1,2],[95,2,2,2,4]]],[10,2,2,4,6,[[303,2,2,4,6]]],[23,1,1,6,7,[[775,1,1,6,7]]]],[2761,2807,2859,2860,9187,9189,19731]]],["fatness",[6,6,[[6,1,1,0,1,[[219,1,1,0,1]]],[17,1,1,1,2,[[471,1,1,1,2]]],[18,2,2,2,4,[[540,1,1,2,3],[542,1,1,3,4]]],[22,1,1,4,5,[[733,1,1,4,5]]],[23,1,1,5,6,[[775,1,1,5,6]]]],[6763,13752,14844,14871,18742,19705]]]]},{"k":"H1881","v":[["*",[21,20,[[14,1,1,0,1,[[410,1,1,0,1]]],[16,20,19,1,20,[[426,4,4,1,5],[427,2,2,5,7],[428,4,3,7,10],[429,4,4,10,14],[433,3,3,14,17],[434,3,3,17,20]]]],[12237,12710,12715,12717,12721,12732,12736,12755,12761,12762,12765,12770,12773,12778,12830,12831,12834,12835,12847,12848]]],["commandment",[2,2,[[16,2,2,0,2,[[428,1,1,0,1],[433,1,1,1,2]]]],[12761,12830]]],["commissions",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12237]]],["decree",[9,9,[[16,9,9,0,9,[[427,1,1,0,1],[428,1,1,1,2],[429,2,2,2,4],[433,2,2,4,6],[434,3,3,6,9]]]],[12732,12762,12765,12770,12831,12834,12835,12847,12848]]],["law",[5,5,[[16,5,5,0,5,[[426,3,3,0,3],[429,2,2,3,5]]]],[12710,12715,12717,12773,12778]]],["laws",[3,2,[[16,3,2,0,2,[[426,1,1,0,1],[428,2,1,1,2]]]],[12721,12755]]],["manner",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12736]]]]},{"k":"H1882","v":[["*",[14,13,[[14,6,5,0,5,[[409,6,5,0,5]]],[26,8,8,5,13,[[851,3,3,5,8],[855,4,4,8,12],[856,1,1,12,13]]]],[12185,12187,12194,12198,12199,21767,21771,21773,21910,21913,21917,21920,21958]]],["decree",[3,3,[[26,3,3,0,3,[[851,3,3,0,3]]]],[21767,21771,21773]]],["law",[9,8,[[14,5,4,0,4,[[409,5,4,0,4]]],[26,4,4,4,8,[[855,4,4,4,8]]]],[12185,12187,12194,12199,21910,21913,21917,21920]]],["laws",[2,2,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,1,1,1,2,[[856,1,1,1,2]]]],[12198,21958]]]]},{"k":"H1883","v":[["grass",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21852,21860]]]]},{"k":"H1884","v":[["counsellors",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21809,21810]]]]},{"k":"H1885","v":[["Dathan",[10,8,[[3,8,6,0,6,[[132,6,5,0,5],[142,2,1,5,6]]],[4,1,1,6,7,[[163,1,1,6,7]]],[18,1,1,7,8,[[583,1,1,7,8]]]],[4195,4206,4218,4219,4221,4498,5214,15668]]]]},{"k":"H1886","v":[["Dothan",[3,2,[[0,2,1,0,1,[[36,2,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]]],[1100,9687]]]]},{"k":"H1887","v":[["*",[2,2,[[0,1,1,0,1,[[46,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[1443,20805]]],["behold",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20805]]],["lo",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1443]]]]},{"k":"H1888","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21801,21832]]],["+",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21801]]],["Lo",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21832]]]]},{"k":"H1889","v":[["*",[12,9,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,7,4,1,5,[[512,3,2,1,3],[517,2,1,3,4],[547,2,1,4,5]]],[22,1,1,5,6,[[722,1,1,5,6]]],[25,3,3,6,9,[[826,1,1,6,7],[827,1,1,7,8],[837,1,1,8,9]]]],[13859,14431,14435,14540,14974,18549,21086,21102,21361]]],["Ah",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14435]]],["Aha",[7,7,[[18,3,3,0,3,[[512,1,1,0,1],[517,1,1,1,2],[547,1,1,2,3]]],[22,1,1,3,4,[[722,1,1,3,4]]],[25,3,3,4,7,[[826,1,1,4,5],[827,1,1,5,6],[837,1,1,6,7]]]],[14431,14540,14974,18549,21086,21102,21361]]],["aha",[3,3,[[18,3,3,0,3,[[512,1,1,0,1],[517,1,1,1,2],[547,1,1,2,3]]]],[14431,14540,14974]]],["ha",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13859]]]]},{"k":"H1890","v":[["offerings",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22207]]]]},{"k":"H1891","v":[["*",[5,5,[[11,1,1,0,1,[[329,1,1,0,1]]],[17,1,1,1,2,[[462,1,1,1,2]]],[18,1,1,2,3,[[539,1,1,2,3]]],[23,2,2,3,5,[[746,1,1,3,4],[767,1,1,4,5]]]],[9998,13493,14837,18970,19500]]],["+",[2,2,[[18,1,1,0,1,[[539,1,1,0,1]]],[23,1,1,1,2,[[767,1,1,1,2]]]],[14837,19500]]],["vain",[3,3,[[11,1,1,0,1,[[329,1,1,0,1]]],[17,1,1,1,2,[[462,1,1,1,2]]],[23,1,1,2,3,[[746,1,1,2,3]]]],[9998,13493,18970]]]]},{"k":"H1892","v":[["*",[73,64,[[4,1,1,0,1,[[184,1,1,0,1]]],[10,2,2,1,3,[[306,2,2,1,3]]],[11,1,1,3,4,[[329,1,1,3,4]]],[17,5,5,4,9,[[442,1,1,4,5],[444,1,1,5,6],[456,1,1,6,7],[462,1,1,7,8],[470,1,1,8,9]]],[18,9,8,9,17,[[508,1,1,9,10],[516,3,3,10,13],[539,2,1,13,14],[555,1,1,14,15],[571,1,1,15,16],[621,1,1,16,17]]],[19,3,3,17,20,[[640,1,1,17,18],[648,1,1,18,19],[658,1,1,19,20]]],[20,38,30,20,50,[[659,6,2,20,22],[660,8,8,22,30],[661,1,1,30,31],[662,4,4,31,35],[663,2,2,35,37],[664,5,5,37,42],[665,2,2,42,44],[666,3,2,44,46],[667,2,1,46,47],[669,2,2,47,49],[670,3,1,49,50]]],[22,3,3,50,53,[[708,1,1,50,51],[727,1,1,51,52],[735,1,1,52,53]]],[23,8,8,53,61,[[746,1,1,53,54],[752,1,1,54,55],[754,3,3,55,58],[758,1,1,58,59],[760,1,1,59,60],[795,1,1,60,61]]],[24,1,1,61,62,[[800,1,1,61,62]]],[31,1,1,62,63,[[890,1,1,62,63]]],[37,1,1,63,64,[[920,1,1,63,64]]]],[5779,9296,9309,9998,13024,13080,13389,13493,13736,14337,14517,14518,14523,14836,15146,15442,16309,16758,16990,17314,17317,17329,17334,17344,17348,17350,17352,17354,17356,17359,17378,17385,17388,17389,17397,17404,17407,17419,17421,17426,17428,17429,17435,17444,17468,17472,17484,17521,17523,17531,18224,18640,18778,18970,19172,19204,19209,19216,19315,19355,20230,20437,22556,23018]]],["+",[2,2,[[18,1,1,0,1,[[539,1,1,0,1]]],[19,1,1,1,2,[[640,1,1,1,2]]]],[14836,16758]]],["Vanity",[2,2,[[20,2,2,0,2,[[659,1,1,0,1],[670,1,1,1,2]]]],[17317,17531]]],["altogether",[1,1,[[17,1,1,0,1,[[462,1,1,0,1]]]],[13493]]],["vain",[11,11,[[17,3,3,0,3,[[444,1,1,0,1],[456,1,1,1,2],[470,1,1,2,3]]],[18,1,1,3,4,[[516,1,1,3,4]]],[19,1,1,4,5,[[658,1,1,4,5]]],[20,1,1,5,6,[[664,1,1,5,6]]],[22,2,2,6,8,[[708,1,1,6,7],[727,1,1,7,8]]],[23,1,1,8,9,[[754,1,1,8,9]]],[24,1,1,9,10,[[800,1,1,9,10]]],[37,1,1,10,11,[[920,1,1,10,11]]]],[13080,13389,13736,14518,17314,17429,18224,18640,19204,20437,23018]]],["vanities",[12,11,[[4,1,1,0,1,[[184,1,1,0,1]]],[10,2,2,1,3,[[306,2,2,1,3]]],[18,1,1,3,4,[[508,1,1,3,4]]],[20,4,3,4,7,[[659,2,1,4,5],[663,1,1,5,6],[670,1,1,6,7]]],[23,3,3,7,10,[[752,1,1,7,8],[754,1,1,8,9],[758,1,1,9,10]]],[31,1,1,10,11,[[890,1,1,10,11]]]],[5779,9296,9309,14337,17317,17404,17531,19172,19209,19315,22556]]],["vanity",[45,42,[[11,1,1,0,1,[[329,1,1,0,1]]],[17,1,1,1,2,[[442,1,1,1,2]]],[18,6,6,2,8,[[516,2,2,2,4],[539,1,1,4,5],[555,1,1,5,6],[571,1,1,6,7],[621,1,1,7,8]]],[19,1,1,8,9,[[648,1,1,8,9]]],[20,31,28,9,37,[[659,3,2,9,11],[660,8,8,11,19],[661,1,1,19,20],[662,4,4,20,24],[663,1,1,24,25],[664,4,4,25,29],[665,2,2,29,31],[666,3,2,31,33],[667,2,1,33,34],[669,2,2,34,36],[670,1,1,36,37]]],[22,1,1,37,38,[[735,1,1,37,38]]],[23,4,4,38,42,[[746,1,1,38,39],[754,1,1,39,40],[760,1,1,40,41],[795,1,1,41,42]]]],[9998,13024,14517,14523,14836,15146,15442,16309,16990,17317,17329,17334,17344,17348,17350,17352,17354,17356,17359,17378,17385,17388,17389,17397,17407,17419,17421,17426,17428,17435,17444,17468,17472,17484,17521,17523,17531,18778,18970,19216,19355,20230]]]]},{"k":"H1893","v":[["Abel",[8,5,[[0,8,5,0,5,[[3,8,5,0,5]]]],[81,83,87,88,104]]]]},{"k":"H1894","v":[["ebony",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21136]]]]},{"k":"H1895","v":[["+",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18612]]]]},{"k":"H1896","v":[["*",[4,3,[[16,4,3,0,3,[[427,4,3,0,3]]]],[12727,12732,12739]]],["Hegai",[3,2,[[16,3,2,0,2,[[427,3,2,0,2]]]],[12732,12739]]],["Hege",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12727]]]]},{"k":"H1897","v":[["*",[25,24,[[5,1,1,0,1,[[187,1,1,0,1]]],[17,1,1,1,2,[[462,1,1,1,2]]],[18,10,10,2,12,[[478,1,1,2,3],[479,1,1,3,4],[512,1,1,4,5],[514,1,1,5,6],[515,1,1,6,7],[540,1,1,7,8],[548,1,1,8,9],[554,1,1,9,10],[592,1,1,10,11],[620,1,1,11,12]]],[19,3,3,12,15,[[635,1,1,12,13],[642,1,1,13,14],[651,1,1,14,15]]],[22,9,8,15,23,[[686,1,1,15,16],[694,1,1,16,17],[709,1,1,17,18],[711,1,1,18,19],[716,1,1,19,20],[737,4,3,20,23]]],[23,1,1,23,24,[[792,1,1,23,24]]]],[5859,13485,13941,13946,14438,14480,14502,14845,15000,15105,15837,16298,16609,16835,17081,17826,17976,18254,18297,18404,18803,18811,18813,20111]]],["+",[2,1,[[22,2,1,0,1,[[737,2,1,0,1]]]],[18811]]],["imagine",[2,2,[[18,2,2,0,2,[[479,1,1,0,1],[515,1,1,1,2]]]],[13946,14502]]],["meditate",[6,6,[[5,1,1,0,1,[[187,1,1,0,1]]],[18,4,4,1,5,[[478,1,1,1,2],[540,1,1,2,3],[554,1,1,3,4],[620,1,1,4,5]]],[22,1,1,5,6,[[711,1,1,5,6]]]],[5859,13941,14845,15105,16298,18297]]],["mourn",[3,3,[[22,2,2,0,2,[[694,1,1,0,1],[716,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[17976,18404,20111]]],["mutter",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17826]]],["muttered",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18803]]],["roaring",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18254]]],["speak",[3,3,[[18,2,2,0,2,[[512,1,1,0,1],[592,1,1,1,2]]],[19,1,1,2,3,[[635,1,1,2,3]]]],[14438,15837,16609]]],["speaketh",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14480]]],["studieth",[2,2,[[19,2,2,0,2,[[642,1,1,0,1],[651,1,1,1,2]]]],[16835,17081]]],["talk",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[15000]]],["utter",[1,1,[[17,1,1,0,1,[[462,1,1,0,1]]]],[13485]]],["uttering",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18813]]]]},{"k":"H1898","v":[["*",[3,3,[[19,2,2,0,2,[[652,2,2,0,2]]],[22,1,1,2,3,[[705,1,1,2,3]]]],[17117,17118,18159]]],["away",[2,2,[[19,2,2,0,2,[[652,2,2,0,2]]]],[17117,17118]]],["stayeth",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18159]]]]},{"k":"H1899","v":[["*",[3,3,[[17,1,1,0,1,[[472,1,1,0,1]]],[18,1,1,1,2,[[567,1,1,1,2]]],[25,1,1,2,3,[[803,1,1,2,3]]]],[13771,15387,20502]]],["mourning",[1,1,[[25,1,1,0,1,[[803,1,1,0,1]]]],[20502]]],["sound",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13771]]],["tale",[1,1,[[18,1,1,0,1,[[567,1,1,0,1]]]],[15387]]]]},{"k":"H1900","v":[["meditation",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14651]]]]},{"k":"H1901","v":[["*",[2,2,[[18,2,2,0,2,[[482,1,1,0,1],[516,1,1,1,2]]]],[13974,14515]]],["meditation",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13974]]],["musing",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14515]]]]},{"k":"H1902","v":[["*",[4,4,[[18,3,3,0,3,[[486,1,1,0,1],[496,1,1,1,2],[569,1,1,2,3]]],[24,1,1,3,4,[[799,1,1,3,4]]]],[14037,14182,15414,20416]]],["Higgaion",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14037]]],["device",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20416]]],["meditation",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14182]]],["sound",[1,1,[[18,1,1,0,1,[[569,1,1,0,1]]]],[15414]]]]},{"k":"H1903","v":[["directly",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21564]]]]},{"k":"H1904","v":[["Hagar",[12,10,[[0,12,10,0,10,[[15,7,6,0,6],[20,4,3,6,9],[24,1,1,9,10]]]],[382,384,385,389,396,397,522,527,530,670]]]]},{"k":"H1905","v":[["*",[6,6,[[12,5,5,0,5,[[342,3,3,0,3],[348,1,1,3,4],[364,1,1,4,5]]],[18,1,1,5,6,[[560,1,1,5,6]]]],[10438,10447,10448,10711,11140,15247]]],["Hagarenes",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15247]]],["Hagarites",[3,3,[[12,3,3,0,3,[[342,3,3,0,3]]]],[10438,10447,10448]]],["Hagerite",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11140]]],["Haggeri",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10711]]]]},{"k":"H1906","v":[["again",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20584]]]]},{"k":"H1907","v":[["counsellors",[4,4,[[26,4,4,0,4,[[852,2,2,0,2],[853,1,1,2,3],[855,1,1,3,4]]]],[21831,21834,21873,21912]]]]},{"k":"H1908","v":[["Hadad",[12,11,[[0,2,2,0,2,[[35,2,2,0,2]]],[10,6,5,2,7,[[301,6,5,2,7]]],[12,4,4,7,11,[[338,4,4,7,11]]]],[1075,1076,9122,9125,9127,9129,9133,10298,10299,10302,10303]]]]},{"k":"H1909","v":[["Hadadezer",[9,8,[[9,8,7,0,7,[[274,8,7,0,7]]],[10,1,1,7,8,[[301,1,1,7,8]]]],[8212,8214,8216,8217,8218,8219,8221,9131]]]]},{"k":"H1910","v":[["Hadadrimmon",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23056]]]]},{"k":"H1911","v":[["put",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17892]]]]},{"k":"H1912","v":[["+",[2,2,[[16,2,2,0,2,[[426,1,1,0,1],[433,1,1,1,2]]]],[12703,12826]]]]},{"k":"H1913","v":[["Hadoram",[4,4,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,2,2,1,3,[[338,1,1,1,2],[355,1,1,2,3]]],[13,1,1,3,4,[[376,1,1,3,4]]]],[261,10273,10900,11413]]]]},{"k":"H1914","v":[["Hiddai",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8683]]]]},{"k":"H1915","v":[["down",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13876]]]]},{"k":"H1916","v":[["+",[6,6,[[12,1,1,0,1,[[365,1,1,0,1]]],[18,3,3,1,4,[[576,1,1,1,2],[587,1,1,2,3],[609,1,1,3,4]]],[22,1,1,4,5,[[744,1,1,4,5]]],[24,1,1,5,6,[[798,1,1,5,6]]]],[11145,15504,15787,16158,18923,20333]]]]},{"k":"H1917","v":[["pieces",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21763,21836]]]]},{"k":"H1918","v":[["*",[6,6,[[15,1,1,0,1,[[420,1,1,0,1]]],[22,2,2,1,3,[[719,1,1,1,2],[733,1,1,2,3]]],[37,3,3,3,6,[[911,3,3,3,6]]]],[12508,18470,18753,22886,22888,22889]]],["myrtle",[2,2,[[15,1,1,0,1,[[420,1,1,0,1]]],[22,1,1,1,2,[[719,1,1,1,2]]]],[12508,18470]]],["tree",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18753]]],["trees",[3,3,[[37,3,3,0,3,[[911,3,3,0,3]]]],[22886,22888,22889]]]]},{"k":"H1919","v":[["Hadassah",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12731]]]]},{"k":"H1920","v":[["*",[11,11,[[3,2,2,0,2,[[151,2,2,0,2]]],[4,2,2,2,4,[[158,1,1,2,3],[161,1,1,3,4]]],[5,1,1,4,5,[[209,1,1,4,5]]],[11,1,1,5,6,[[316,1,1,5,6]]],[17,1,1,6,7,[[453,1,1,6,7]]],[19,1,1,7,8,[[637,1,1,7,8]]],[22,1,1,8,9,[[700,1,1,8,9]]],[23,1,1,9,10,[[790,1,1,9,10]]],[25,1,1,10,11,[[835,1,1,10,11]]]],[4865,4867,5105,5161,6465,9630,13294,16659,18071,20060,21334]]],["+",[2,2,[[4,2,2,0,2,[[158,1,1,0,1],[161,1,1,1,2]]]],[5105,5161]]],["away",[2,2,[[11,1,1,0,1,[[316,1,1,0,1]]],[19,1,1,1,2,[[637,1,1,1,2]]]],[9630,16659]]],["drive",[2,2,[[22,1,1,0,1,[[700,1,1,0,1]]],[23,1,1,1,2,[[790,1,1,1,2]]]],[18071,20060]]],["driven",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13294]]],["expel",[1,1,[[5,1,1,0,1,[[209,1,1,0,1]]]],[6465]]],["thrust",[3,3,[[3,2,2,0,2,[[151,2,2,0,2]]],[25,1,1,2,3,[[835,1,1,2,3]]]],[4865,4867,21334]]]]},{"k":"H1921","v":[["*",[7,7,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,2,2,1,3,[[108,2,2,1,3]]],[19,1,1,3,4,[[652,1,1,3,4]]],[22,2,2,4,6,[[723,1,1,4,5],[741,1,1,5,6]]],[24,1,1,6,7,[[801,1,1,6,7]]]],[2147,3296,3313,17119,18563,18867,20454]]],["+",[2,2,[[19,1,1,0,1,[[652,1,1,0,1]]],[22,1,1,1,2,[[723,1,1,1,2]]]],[17119,18563]]],["countenance",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2147]]],["glorious",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18867]]],["honour",[2,2,[[2,2,2,0,2,[[108,2,2,0,2]]]],[3296,3313]]],["honoured",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20454]]]]},{"k":"H1922","v":[["*",[3,3,[[26,3,3,0,3,[[853,2,2,0,2],[854,1,1,2,3]]]],[21871,21874,21897]]],["glorified",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21897]]],["honour",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21874]]],["honoured",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21871]]]]},{"k":"H1923","v":[["*",[3,3,[[26,3,3,0,3,[[853,2,2,0,2],[854,1,1,2,3]]]],[21867,21873,21892]]],["honour",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[854,1,1,1,2]]]],[21873,21892]]],["majesty",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21867]]]]},{"k":"H1924","v":[["Hadar",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1079]]]]},{"k":"H1925","v":[["glory",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22056]]]]},{"k":"H1926","v":[["*",[30,29,[[2,1,1,0,1,[[112,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[17,1,1,3,4,[[475,1,1,3,4]]],[18,13,13,4,17,[[485,1,1,4,5],[498,1,1,5,6],[506,1,1,6,7],[522,2,2,7,9],[567,1,1,9,10],[573,1,1,10,11],[581,1,1,11,12],[587,1,1,12,13],[588,1,1,13,14],[622,2,2,14,16],[626,1,1,16,17]]],[19,2,2,17,19,[[647,1,1,17,18],[658,1,1,18,19]]],[22,7,6,19,25,[[680,3,3,19,22],[683,1,1,22,23],[713,2,1,23,24],[731,1,1,24,25]]],[24,1,1,25,26,[[797,1,1,25,26]]],[25,2,2,26,28,[[817,1,1,26,27],[828,1,1,27,28]]],[32,1,1,28,29,[[894,1,1,28,29]]]],[3442,5827,10847,13874,14017,14196,14312,14600,14601,15394,15471,15572,15789,15796,16325,16332,16394,16983,17309,17695,17704,17706,17753,18322,18713,20316,20776,21131,22604]]],["+",[3,3,[[22,3,3,0,3,[[680,3,3,0,3]]]],[17695,17704,17706]]],["beauties",[1,1,[[18,1,1,0,1,[[587,1,1,0,1]]]],[15789]]],["beauty",[3,3,[[17,1,1,0,1,[[475,1,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]],[24,1,1,2,3,[[797,1,1,2,3]]]],[13874,16983,20316]]],["comeliness",[3,3,[[22,1,1,0,1,[[731,1,1,0,1]]],[25,2,2,1,3,[[817,1,1,1,2],[828,1,1,2,3]]]],[18713,20776,21131]]],["excellency",[2,1,[[22,2,1,0,1,[[713,2,1,0,1]]]],[18322]]],["glorious",[1,1,[[18,1,1,0,1,[[588,1,1,0,1]]]],[15796]]],["glory",[4,4,[[4,1,1,0,1,[[185,1,1,0,1]]],[18,1,1,1,2,[[567,1,1,1,2]]],[22,1,1,2,3,[[683,1,1,2,3]]],[32,1,1,3,4,[[894,1,1,3,4]]]],[5827,15394,17753,22604]]],["goodly",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3442]]],["honour",[5,5,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,3,3,1,4,[[485,1,1,1,2],[622,1,1,2,3],[626,1,1,3,4]]],[19,1,1,4,5,[[658,1,1,4,5]]]],[10847,14017,16325,16394,17309]]],["majesty",[7,7,[[18,7,7,0,7,[[498,1,1,0,1],[506,1,1,1,2],[522,2,2,2,4],[573,1,1,4,5],[581,1,1,5,6],[622,1,1,6,7]]]],[14196,14312,14600,14601,15471,15572,16332]]]]},{"k":"H1927","v":[["*",[5,5,[[12,1,1,0,1,[[353,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]],[18,2,2,2,4,[[506,1,1,2,3],[573,1,1,3,4]]],[19,1,1,4,5,[[641,1,1,4,5]]]],[10849,11608,14310,15474,16800]]],["beauty",[4,4,[[12,1,1,0,1,[[353,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]],[18,2,2,2,4,[[506,1,1,2,3],[573,1,1,3,4]]]],[10849,11608,14310,15474]]],["honour",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16800]]]]},{"k":"H1928","v":[["Hadarezer",[12,10,[[9,3,2,0,2,[[276,3,2,0,2]]],[12,9,8,2,10,[[355,7,6,2,8],[356,2,2,8,10]]]],[8256,8259,10893,10895,10897,10898,10899,10900,10923,10926]]]]},{"k":"H1929","v":[["Woe",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21206]]]]},{"k":"H1930","v":[["*",[2,1,[[29,2,1,0,1,[[883,2,1,0,1]]]],[22439]]],["Alas",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22439]]],["alas",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22439]]]]},{"k":"H1931","v":[["*",[1716,1553,[[0,167,151,0,151,[[1,5,5,0,5],[2,5,5,5,10],[3,5,5,10,15],[5,1,1,15,16],[9,5,5,16,21],[11,3,3,21,24],[12,1,1,24,25],[13,9,9,25,34],[14,2,2,34,36],[15,1,1,36,37],[16,1,1,37,38],[17,3,3,38,41],[18,8,6,41,47],[19,11,7,47,54],[20,4,4,54,58],[21,3,3,58,61],[22,3,3,61,64],[23,6,6,64,70],[24,2,2,70,72],[25,8,5,72,77],[26,2,2,77,79],[27,2,2,79,81],[28,5,4,81,85],[29,3,3,85,88],[30,3,3,88,91],[31,8,6,91,97],[32,2,2,97,99],[33,2,2,99,101],[34,6,5,101,106],[35,4,4,106,110],[36,3,3,110,113],[37,8,7,113,120],[38,4,4,120,124],[39,1,1,124,125],[40,4,3,125,128],[41,4,4,128,132],[42,2,2,132,134],[43,5,5,134,139],[44,1,1,139,140],[46,2,2,140,142],[47,5,4,142,146],[48,3,3,146,149],[49,2,2,149,151]]],[1,67,59,151,210,[[50,4,3,151,154],[51,1,1,154,155],[52,1,1,155,156],[53,4,2,156,158],[54,1,1,158,159],[55,2,2,159,161],[57,2,2,161,163],[58,1,1,163,164],[59,1,1,164,165],[61,10,9,165,174],[62,3,3,174,177],[63,1,1,177,178],[65,6,4,178,182],[67,2,2,182,184],[70,3,3,184,187],[71,4,3,187,190],[78,7,7,190,197],[79,2,2,197,199],[80,4,3,199,202],[81,3,3,202,205],[83,3,3,205,208],[84,1,1,208,209],[88,1,1,209,210]]],[2,146,128,210,338,[[90,2,2,210,212],[91,2,2,212,214],[92,2,2,214,216],[93,2,2,216,218],[94,7,7,218,225],[95,5,5,225,230],[96,6,6,230,236],[97,2,2,236,238],[99,3,3,238,241],[100,12,7,241,248],[102,37,28,248,276],[103,4,3,276,279],[104,5,4,279,283],[105,1,1,283,284],[106,4,3,284,287],[107,11,11,287,298],[108,3,3,298,301],[109,9,8,301,309],[110,4,4,309,313],[111,5,5,313,318],[112,5,5,318,323],[113,2,2,323,325],[114,7,7,325,332],[116,6,6,332,338]]],[3,73,62,338,400,[[121,8,6,338,344],[122,3,3,344,347],[125,4,2,347,349],[127,3,3,349,352],[128,1,1,352,353],[129,9,6,353,359],[130,3,3,359,362],[131,4,3,362,365],[132,2,2,365,367],[134,3,3,367,370],[135,6,5,370,375],[137,3,3,375,378],[138,7,6,378,384],[139,2,2,384,386],[140,1,1,386,387],[141,1,1,387,388],[142,1,1,388,389],[143,2,2,389,391],[148,1,1,391,392],[149,2,2,392,394],[151,7,6,394,400]]],[4,116,98,400,498,[[153,9,8,400,408],[154,3,3,408,411],[155,12,11,411,422],[156,5,5,422,427],[157,1,1,427,428],[159,4,4,428,432],[160,1,1,432,433],[161,6,4,433,437],[162,5,4,437,441],[164,1,1,441,442],[165,5,3,442,445],[166,4,3,445,448],[169,6,5,448,453],[170,4,4,453,457],[171,3,3,457,460],[172,2,1,460,461],[173,5,5,461,466],[174,3,3,466,469],[175,1,1,469,470],[176,4,4,470,474],[179,1,1,474,475],[180,2,1,475,476],[181,4,4,476,480],[182,5,4,480,484],[183,12,8,484,492],[184,8,6,492,498]]],[5,73,64,498,562,[[188,5,5,498,503],[189,1,1,503,504],[190,2,2,504,506],[191,2,2,506,508],[192,3,2,508,510],[193,2,2,510,512],[194,7,6,512,518],[195,1,1,518,519],[196,7,6,519,525],[197,2,2,525,527],[199,1,1,527,528],[200,3,2,528,530],[201,9,9,530,539],[203,5,2,539,541],[204,3,3,541,544],[206,3,3,544,547],[207,1,1,547,548],[208,7,6,548,554],[209,3,3,554,557],[210,6,5,557,562]]],[6,79,72,562,634,[[211,1,1,562,563],[212,2,2,563,565],[213,8,7,565,572],[214,7,6,572,578],[215,2,2,578,580],[216,6,6,580,586],[217,4,3,586,589],[218,2,2,589,591],[219,6,6,591,597],[220,2,2,597,599],[221,6,6,599,605],[222,1,1,605,606],[223,6,6,606,612],[224,4,2,612,614],[225,2,2,614,616],[226,2,2,616,618],[227,2,1,618,619],[228,5,4,619,623],[229,3,3,623,626],[230,6,6,626,632],[231,2,2,632,634]]],[7,10,9,634,643,[[232,4,4,634,638],[233,3,2,638,640],[234,2,2,640,642],[235,1,1,642,643]]],[8,90,83,643,726,[[236,4,4,643,647],[238,3,3,647,650],[239,2,2,650,652],[241,4,3,652,655],[242,2,2,655,657],[243,2,1,657,658],[244,3,3,658,661],[245,3,3,661,664],[247,1,1,664,665],[249,5,5,665,670],[250,1,1,670,671],[251,3,2,671,673],[252,4,4,673,677],[253,6,6,677,683],[254,9,8,683,691],[255,6,5,691,696],[256,3,3,696,699],[257,5,4,699,703],[258,2,2,703,705],[259,2,2,705,707],[260,6,6,707,713],[262,3,3,713,716],[263,4,3,716,719],[265,5,5,719,724],[266,2,2,724,726]]],[9,54,49,726,775,[[268,3,3,726,729],[269,1,1,729,730],[270,2,2,730,732],[271,3,3,732,735],[272,2,2,735,737],[273,4,4,737,741],[275,3,2,741,743],[277,2,2,743,745],[278,1,1,745,746],[279,3,3,746,749],[280,3,2,749,751],[281,1,1,751,752],[283,6,6,752,758],[284,2,2,758,760],[285,5,4,760,764],[286,1,1,764,765],[287,2,2,765,767],[288,1,1,767,768],[289,7,5,768,773],[290,2,2,773,775]]],[10,69,60,775,835,[[291,7,7,775,782],[292,3,2,782,784],[293,4,3,784,787],[294,2,2,787,789],[295,1,1,789,790],[296,3,3,790,793],[297,1,1,793,794],[298,5,5,794,799],[300,2,2,799,801],[301,5,4,801,805],[302,1,1,805,806],[303,2,2,806,808],[304,6,5,808,813],[306,2,2,813,815],[307,3,2,815,817],[308,5,3,817,820],[309,4,3,820,823],[310,8,7,823,830],[311,1,1,830,831],[312,4,4,831,835]]],[11,53,53,835,888,[[313,1,1,835,836],[314,4,4,836,840],[315,2,2,840,842],[316,2,2,842,844],[317,4,4,844,848],[318,4,4,848,852],[319,1,1,852,853],[320,6,6,853,859],[321,3,3,859,862],[322,1,1,862,863],[326,5,5,863,868],[327,2,2,868,870],[328,1,1,870,871],[329,1,1,871,872],[330,6,6,872,878],[331,2,2,878,880],[332,1,1,880,881],[334,1,1,881,882],[335,1,1,882,883],[336,2,2,883,885],[337,3,3,885,888]]],[12,52,48,888,936,[[338,2,2,888,890],[339,4,3,890,893],[341,1,1,893,894],[342,3,3,894,897],[343,1,1,897,898],[344,1,1,898,899],[345,2,2,899,901],[346,1,1,901,902],[347,1,1,902,903],[348,11,9,903,912],[349,1,1,912,913],[350,2,2,913,915],[351,1,1,915,916],[352,1,1,916,917],[353,3,3,917,920],[354,3,3,920,923],[357,1,1,923,924],[358,3,3,924,927],[359,3,2,927,929],[360,1,1,929,930],[362,1,1,930,931],[363,1,1,931,932],[364,1,1,932,933],[365,1,1,933,934],[366,2,2,934,936]]],[13,55,52,936,988,[[367,1,1,936,937],[370,1,1,937,938],[371,2,2,938,940],[372,1,1,940,941],[373,1,1,941,942],[375,2,2,942,944],[376,1,1,944,945],[379,1,1,945,946],[381,1,1,946,947],[382,2,2,947,949],[384,4,4,949,953],[386,4,4,953,957],[387,3,3,957,960],[388,5,4,960,964],[391,2,2,964,966],[392,5,4,966,970],[393,3,2,970,972],[394,3,3,972,975],[395,1,1,975,976],[396,1,1,976,977],[398,4,4,977,981],[399,2,2,981,983],[400,2,2,983,985],[401,2,2,985,987],[402,1,1,987,988]]],[14,11,10,988,998,[[403,3,3,988,991],[409,4,3,991,994],[410,1,1,994,995],[412,3,3,995,998]]],[15,22,21,998,1019,[[413,1,1,998,999],[414,2,2,999,1001],[415,3,3,1001,1004],[416,2,2,1004,1006],[418,4,4,1006,1010],[419,1,1,1010,1011],[420,3,2,1011,1013],[421,1,1,1013,1014],[424,3,3,1014,1017],[425,2,2,1017,1019]]],[16,25,18,1019,1037,[[426,3,3,1019,1022],[427,4,3,1022,1025],[428,5,3,1025,1028],[430,1,1,1028,1029],[431,1,1,1029,1030],[432,2,1,1030,1031],[433,5,3,1031,1034],[434,4,3,1034,1037]]],[17,45,43,1037,1080,[[436,2,2,1037,1039],[437,1,1,1039,1040],[438,3,3,1040,1043],[440,2,2,1043,1045],[443,2,2,1045,1047],[444,3,2,1047,1049],[446,1,1,1049,1050],[448,3,3,1050,1053],[450,3,3,1053,1056],[452,1,1,1056,1057],[456,3,3,1057,1060],[457,1,1,1060,1061],[458,2,2,1061,1063],[459,1,1,1063,1064],[463,5,5,1064,1069],[466,5,4,1069,1073],[467,1,1,1073,1074],[469,1,1,1074,1075],[472,2,2,1075,1077],[474,1,1,1077,1078],[475,1,1,1078,1079],[476,1,1,1079,1080]]],[18,54,51,1080,1131,[[486,1,1,1080,1081],[495,1,1,1081,1082],[496,1,1,1082,1083],[501,3,2,1083,1085],[502,2,2,1085,1087],[505,1,1,1087,1088],[510,3,2,1088,1090],[514,1,1,1090,1091],[516,1,1,1091,1092],[521,1,1,1092,1093],[522,1,1,1093,1094],[525,1,1,1094,1095],[527,1,1,1095,1096],[532,1,1,1096,1097],[537,1,1,1097,1098],[539,2,2,1098,1100],[545,1,1,1100,1101],[550,1,1,1101,1102],[554,1,1,1102,1103],[555,1,1,1103,1104],[558,1,1,1104,1105],[564,1,1,1105,1106],[566,1,1,1106,1107],[568,1,1,1107,1108],[572,2,2,1108,1110],[573,1,1,1110,1111],[576,4,4,1111,1115],[577,2,1,1115,1116],[578,1,1,1116,1117],[579,1,1,1117,1118],[580,1,1,1118,1119],[582,1,1,1119,1120],[585,1,1,1120,1121],[592,3,3,1121,1124],[595,1,1,1124,1125],[596,2,2,1125,1127],[607,1,1,1127,1128],[623,1,1,1128,1129],[625,1,1,1129,1130],[626,1,1,1130,1131]]],[19,35,34,1131,1165,[[630,5,5,1131,1136],[631,1,1,1136,1137],[632,1,1,1137,1138],[633,2,2,1138,1140],[634,2,2,1140,1142],[637,2,2,1142,1144],[638,2,2,1144,1146],[640,1,1,1146,1147],[645,2,2,1147,1149],[646,1,1,1149,1150],[648,2,2,1150,1152],[649,2,2,1152,1154],[650,4,4,1154,1158],[651,1,1,1158,1159],[655,5,4,1159,1163],[657,1,1,1163,1164],[658,1,1,1164,1165]]],[20,33,30,1165,1195,[[659,5,4,1165,1169],[660,3,3,1169,1172],[661,7,6,1172,1178],[662,2,2,1178,1180],[663,3,3,1180,1183],[664,3,3,1183,1186],[665,3,3,1186,1189],[666,1,1,1189,1190],[667,4,3,1190,1193],[668,2,2,1193,1195]]],[21,4,2,1195,1197,[[676,2,1,1195,1196],[678,2,1,1196,1197]]],[22,104,97,1197,1294,[[680,4,4,1197,1201],[681,2,2,1201,1203],[682,2,2,1203,1205],[683,1,1,1205,1206],[685,5,5,1206,1211],[686,2,1,1211,1212],[687,2,1,1212,1213],[688,3,3,1213,1216],[689,2,2,1216,1218],[690,2,2,1218,1220],[692,1,1,1220,1221],[695,3,3,1221,1224],[696,3,2,1224,1226],[697,8,7,1226,1233],[698,2,2,1233,1235],[700,4,4,1235,1239],[701,1,1,1239,1240],[702,1,1,1240,1241],[703,1,1,1241,1242],[704,1,1,1242,1243],[705,5,5,1243,1248],[706,1,1,1248,1249],[707,2,2,1249,1251],[708,3,3,1251,1254],[709,2,2,1254,1256],[710,1,1,1256,1257],[711,2,2,1257,1259],[712,3,2,1259,1261],[713,2,2,1261,1263],[714,1,1,1263,1264],[715,1,1,1264,1265],[716,2,2,1265,1267],[717,1,1,1267,1268],[719,2,2,1268,1270],[720,2,2,1270,1272],[721,3,3,1272,1275],[723,3,2,1275,1277],[724,1,1,1277,1278],[725,1,1,1278,1279],[726,1,1,1279,1280],[728,1,1,1280,1281],[729,3,3,1281,1284],[730,2,1,1284,1285],[731,5,5,1285,1290],[737,1,1,1290,1291],[741,3,3,1291,1294]]],[23,75,73,1294,1367,[[746,1,1,1294,1295],[747,3,3,1295,1298],[748,2,2,1298,1300],[749,3,2,1300,1302],[750,2,2,1302,1304],[752,1,1,1304,1305],[754,2,2,1305,1307],[756,1,1,1307,1308],[758,1,1,1308,1309],[762,2,2,1309,1311],[764,2,2,1311,1313],[766,3,3,1313,1316],[767,1,1,1316,1317],[769,5,5,1317,1322],[771,2,2,1322,1324],[772,2,2,1324,1326],[773,1,1,1326,1327],[774,5,4,1327,1331],[775,1,1,1331,1332],[776,3,3,1332,1335],[777,2,2,1335,1337],[781,2,2,1337,1339],[782,3,3,1339,1342],[783,3,3,1342,1345],[785,2,2,1345,1347],[789,1,1,1347,1348],[790,1,1,1348,1349],[792,3,3,1349,1352],[793,3,3,1352,1355],[794,7,7,1355,1362],[795,3,3,1362,1365],[796,2,2,1365,1367]]],[24,4,4,1367,1371,[[797,3,3,1367,1370],[799,1,1,1370,1371]]],[25,84,80,1371,1451,[[802,3,3,1371,1374],[803,1,1,1374,1375],[804,4,4,1375,1379],[805,2,2,1379,1381],[811,2,2,1381,1383],[812,4,4,1383,1387],[813,3,2,1387,1389],[814,1,1,1389,1390],[815,4,4,1390,1394],[817,3,3,1394,1397],[818,1,1,1397,1398],[819,6,6,1398,1404],[820,1,1,1404,1405],[821,3,3,1405,1408],[822,6,4,1408,1412],[823,1,1,1412,1413],[824,3,3,1413,1416],[825,2,2,1416,1418],[827,1,1,1418,1419],[829,1,1,1419,1420],[830,1,1,1420,1421],[831,3,3,1421,1424],[832,1,1,1424,1425],[833,1,1,1425,1426],[834,6,6,1426,1432],[835,1,1,1432,1433],[838,1,1,1433,1434],[839,6,6,1434,1440],[840,4,3,1440,1443],[841,1,1,1443,1444],[845,2,2,1444,1446],[846,3,3,1446,1449],[847,2,2,1449,1451]]],[26,6,4,1451,1455,[[859,1,1,1451,1452],[860,2,2,1452,1454],[861,3,1,1454,1455]]],[27,21,18,1455,1473,[[862,1,1,1455,1456],[863,6,6,1456,1462],[866,1,1,1462,1463],[867,1,1,1463,1464],[868,4,3,1464,1467],[869,2,1,1467,1468],[871,1,1,1468,1469],[872,1,1,1469,1470],[874,4,3,1470,1473]]],[28,3,3,1473,1476,[[877,1,1,1473,1474],[878,2,2,1474,1476]]],[29,14,12,1476,1488,[[879,1,1,1476,1477],[880,2,2,1477,1479],[883,2,1,1479,1480],[885,5,4,1480,1484],[886,3,3,1484,1487],[887,1,1,1487,1488]]],[30,1,1,1488,1489,[[888,1,1,1488,1489]]],[31,1,1,1489,1490,[[889,1,1,1489,1490]]],[32,11,11,1490,1501,[[893,1,1,1490,1491],[894,2,2,1491,1493],[895,1,1,1493,1494],[896,2,2,1494,1496],[897,1,1,1496,1497],[899,4,4,1497,1501]]],[33,3,3,1501,1504,[[900,2,2,1501,1503],[902,1,1,1503,1504]]],[34,5,3,1504,1507,[[903,3,2,1504,1506],[904,2,1,1506,1507]]],[35,8,8,1507,1515,[[906,4,4,1507,1511],[908,4,4,1511,1515]]],[36,2,2,1515,1517,[[910,2,2,1515,1517]]],[37,37,32,1517,1549,[[911,2,2,1517,1519],[912,1,1,1519,1520],[913,2,2,1520,1522],[915,1,1,1522,1523],[916,3,2,1523,1525],[919,4,4,1525,1529],[921,2,1,1529,1530],[922,7,6,1530,1536],[923,6,4,1536,1540],[924,9,9,1540,1549]]],[38,4,4,1549,1553,[[926,3,3,1549,1552],[927,1,1,1552,1553]]]],[41,42,43,44,49,61,67,70,71,75,83,99,100,101,105,140,242,243,245,246,255,312,316,317,319,338,339,343,344,348,349,351,353,354,362,378,393,411,425,432,434,477,487,490,492,494,495,497,498,500,502,507,508,511,526,530,535,544,561,567,571,573,586,590,598,606,635,645,653,656,679,687,699,701,704,716,724,758,760,784,792,797,804,807,820,846,863,865,889,893,894,930,941,946,949,950,959,963,976,994,999,1017,1030,1031,1033,1038,1041,1059,1064,1083,1086,1110,1115,1120,1130,1131,1133,1135,1140,1144,1152,1155,1171,1172,1182,1206,1223,1226,1258,1266,1279,1290,1302,1322,1329,1334,1338,1341,1344,1384,1437,1438,1458,1465,1470,1471,1486,1492,1493,1520,1528,1538,1542,1548,1556,1587,1615,1617,1638,1681,1682,1729,1732,1776,1790,1818,1820,1827,1831,1832,1835,1843,1846,1858,1869,1875,1884,1919,1962,1970,1976,1978,2004,2013,2080,2081,2098,2122,2128,2140,2350,2354,2357,2358,2361,2364,2370,2392,2414,2433,2434,2437,2447,2460,2466,2499,2505,2506,2565,2669,2758,2762,2768,2777,2779,2785,2816,2819,2832,2833,2834,2839,2841,2842,2849,2854,2858,2866,2874,2878,2880,2884,2885,2899,2900,2906,2938,2945,2980,2989,2994,3001,3002,3003,3004,3009,3034,3035,3055,3058,3060,3062,3063,3065,3067,3069,3072,3074,3075,3077,3079,3080,3082,3088,3089,3091,3092,3093,3094,3096,3098,3101,3103,3104,3107,3109,3124,3132,3155,3170,3171,3191,3193,3232,3239,3244,3246,3258,3259,3262,3263,3264,3265,3266,3267,3268,3273,3274,3288,3289,3301,3321,3322,3323,3324,3332,3335,3336,3339,3352,3353,3354,3358,3372,3376,3380,3381,3399,3405,3430,3432,3434,3438,3455,3456,3479,3480,3481,3485,3503,3510,3523,3574,3578,3580,3593,3596,3603,3798,3805,3806,3807,3810,3823,3831,3834,3843,3971,3978,4054,4056,4058,4066,4093,4094,4095,4102,4106,4107,4109,4149,4153,4178,4183,4184,4201,4234,4273,4276,4288,4298,4301,4302,4304,4309,4356,4366,4373,4378,4379,4380,4381,4387,4397,4422,4435,4470,4486,4498,4557,4575,4728,4796,4800,4861,4862,4863,4864,4866,4878,4901,4908,4910,4911,4922,4928,4930,4936,4958,4970,4972,4976,4979,4983,4986,4987,4988,4993,4996,4997,4998,5003,5010,5018,5039,5043,5052,5058,5120,5127,5136,5137,5155,5160,5170,5176,5177,5187,5194,5196,5207,5243,5275,5277,5287,5298,5300,5318,5365,5369,5374,5376,5384,5389,5390,5404,5406,5410,5411,5412,5447,5450,5451,5453,5464,5470,5487,5488,5494,5507,5529,5531,5532,5540,5596,5655,5692,5699,5701,5706,5719,5720,5721,5728,5731,5734,5736,5744,5745,5746,5749,5750,5762,5764,5792,5797,5802,5805,5875,5877,5880,5884,5890,5894,5924,5934,5936,5946,5966,5975,5982,6002,6011,6012,6015,6016,6027,6029,6064,6066,6071,6077,6078,6092,6099,6117,6128,6166,6196,6199,6210,6211,6212,6213,6215,6227,6251,6256,6262,6276,6293,6306,6307,6321,6376,6378,6379,6392,6446,6448,6449,6453,6454,6460,6463,6465,6470,6493,6494,6495,6501,6503,6535,6550,6555,6587,6588,6592,6595,6597,6598,6599,6601,6602,6603,6604,6620,6622,6624,6652,6676,6679,6685,6686,6689,6694,6695,6698,6703,6723,6750,6757,6772,6773,6787,6799,6802,6812,6819,6830,6850,6855,6863,6867,6868,6875,6889,6890,6893,6900,6902,6905,6912,6913,6943,6946,6969,6980,6987,6994,7005,7021,7023,7033,7034,7040,7069,7075,7080,7089,7093,7100,7116,7126,7128,7130,7133,7145,7155,7169,7174,7176,7207,7215,7222,7225,7240,7278,7288,7294,7309,7315,7340,7346,7347,7358,7362,7387,7404,7415,7417,7427,7437,7440,7478,7526,7531,7532,7539,7545,7589,7607,7608,7623,7641,7651,7655,7678,7685,7691,7692,7695,7703,7715,7716,7720,7723,7724,7728,7729,7730,7756,7759,7761,7763,7766,7779,7781,7782,7796,7804,7805,7809,7832,7838,7845,7849,7864,7878,7881,7886,7897,7898,7932,7933,7936,7950,7956,7967,7987,7988,7998,8003,8009,8014,8015,8065,8066,8078,8118,8125,8127,8139,8140,8152,8165,8166,8184,8193,8194,8208,8231,8240,8263,8271,8309,8319,8325,8337,8375,8383,8419,8451,8454,8458,8459,8462,8473,8485,8486,8513,8514,8520,8543,8562,8596,8600,8633,8661,8663,8671,8673,8674,8705,8710,8723,8730,8734,8741,8747,8752,8762,8778,8792,8819,8820,8843,8859,8868,8883,8897,8913,8934,8948,8986,8987,9004,9049,9050,9089,9092,9122,9125,9136,9137,9153,9187,9210,9219,9220,9221,9223,9235,9292,9299,9332,9336,9365,9368,9380,9391,9395,9406,9420,9424,9436,9440,9447,9448,9449,9453,9505,9512,9513,9515,9541,9563,9565,9569,9574,9582,9593,9608,9612,9654,9662,9665,9672,9679,9687,9704,9706,9714,9729,9732,9748,9749,9754,9756,9770,9790,9792,9805,9903,9907,9917,9918,9921,9937,9960,9969,10022,10028,10032,10033,10034,10040,10046,10096,10098,10110,10159,10180,10212,10214,10223,10230,10241,10262,10279,10327,10332,10348,10396,10429,10434,10436,10464,10566,10582,10587,10646,10664,10677,10678,10684,10685,10686,10693,10695,10696,10698,10735,10771,10772,10785,10813,10827,10834,10845,10866,10875,10876,10932,10951,10962,10963,10973,10974,10996,11055,11103,11115,11149,11185,11186,11201,11267,11270,11271,11291,11332,11373,11376,11397,11471,11501,11516,11519,11549,11566,11573,11576,11589,11612,11613,11622,11627,11634,11635,11647,11650,11653,11655,11724,11725,11733,11734,11752,11755,11758,11760,11767,11780,11786,11794,11830,11884,11887,11901,11905,11914,11921,11936,11955,11982,11983,12016,12018,12019,12020,12179,12181,12182,12235,12260,12261,12275,12298,12325,12327,12339,12341,12342,12375,12381,12402,12411,12414,12419,12422,12502,12510,12517,12632,12667,12668,12672,12692,12703,12713,12722,12731,12738,12740,12751,12754,12760,12788,12794,12812,12818,12826,12829,12835,12845,12858,12870,12872,12899,12908,12910,12911,12969,12978,13045,13048,13073,13075,13119,13169,13172,13181,13212,13225,13226,13263,13377,13386,13387,13407,13425,13432,13454,13507,13518,13527,13528,13532,13592,13599,13600,13616,13629,13712,13781,13790,13864,13883,13922,14029,14148,14173,14243,14251,14262,14266,14307,14375,14386,14455,14516,14592,14608,14648,14674,14754,14819,14829,14833,14935,15036,15103,15151,15221,15306,15352,15398,15459,15461,15469,15501,15502,15504,15505,15511,15519,15548,15563,15613,15755,15839,15840,15841,15892,15995,15996,16148,16345,16376,16394,16461,16470,16473,16484,16489,16503,16540,16562,16572,16586,16598,16678,16680,16713,16716,16760,16910,16914,16946,16997,17013,17024,17037,17047,17051,17055,17072,17091,17202,17206,17220,17222,17256,17314,17320,17324,17325,17328,17334,17355,17357,17368,17372,17373,17374,17380,17381,17385,17389,17403,17411,17415,17418,17419,17427,17431,17452,17455,17473,17484,17488,17490,17496,17503,17623,17649,17696,17702,17705,17707,17714,17725,17734,17735,17769,17796,17800,17802,17803,17805,17820,17844,17857,17870,17877,17894,17895,17901,17904,17952,17987,17990,17992,17999,18004,18020,18021,18022,18023,18025,18027,18028,18031,18035,18060,18064,18072,18077,18092,18116,18127,18131,18152,18153,18162,18163,18164,18169,18204,18211,18226,18240,18250,18252,18257,18266,18295,18301,18319,18320,18324,18328,18337,18390,18405,18409,18413,18455,18458,18488,18502,18515,18518,18530,18574,18579,18590,18609,18626,18671,18682,18683,18685,18702,18715,18716,18718,18722,18723,18816,18871,18875,18876,18979,19003,19008,19019,19036,19038,19070,19073,19095,19112,19154,19211,19217,19266,19315,19388,19392,19423,19438,19458,19470,19482,19518,19535,19546,19547,19565,19567,19603,19604,19619,19635,19663,19674,19675,19684,19688,19692,19732,19739,19774,19776,19790,19876,19887,19899,19900,19902,19933,19939,19940,19964,19966,20044,20055,20091,20106,20121,20139,20149,20153,20169,20170,20181,20186,20191,20196,20204,20218,20223,20231,20280,20288,20313,20314,20318,20364,20466,20477,20492,20502,20520,20521,20522,20523,20532,20541,20648,20653,20658,20662,20666,20670,20692,20707,20718,20739,20740,20748,20750,20776,20808,20810,20833,20853,20858,20860,20866,20869,20876,20895,20901,20910,20944,20955,20956,20958,20967,21000,21045,21046,21050,21082,21083,21117,21175,21204,21213,21215,21222,21248,21264,21285,21286,21288,21289,21293,21299,21336,21398,21433,21435,21439,21442,21443,21444,21456,21459,21470,21480,21600,21602,21631,21647,21652,21658,21671,22019,22042,22044,22082,22099,22107,22113,22121,22123,22126,22128,22165,22168,22184,22186,22187,22200,22227,22250,22267,22279,22281,22324,22344,22361,22379,22388,22395,22436,22466,22469,22470,22477,22484,22490,22494,22506,22518,22541,22592,22598,22599,22612,22621,22626,22643,22667,22675,22676,22682,22686,22693,22722,22738,22741,22767,22796,22797,22799,22802,22831,22836,22839,22840,22861,22878,22885,22886,22910,22921,22922,22942,22957,22960,23003,23006,23008,23015,23039,23048,23049,23051,23053,23054,23056,23060,23061,23063,23068,23072,23074,23075,23076,23077,23080,23081,23088,23089,23110,23117,23120,23122]]],["+",[15,14,[[0,1,1,0,1,[[43,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[2,1,1,2,3,[[109,1,1,2,3]]],[4,1,1,3,4,[[172,1,1,3,4]]],[8,3,3,4,7,[[251,1,1,4,5],[253,1,1,5,6],[265,1,1,6,7]]],[11,1,1,7,8,[[337,1,1,7,8]]],[15,1,1,8,9,[[414,1,1,8,9]]],[16,2,1,9,10,[[432,2,1,9,10]]],[17,1,1,10,11,[[463,1,1,10,11]]],[20,2,2,11,13,[[660,1,1,11,12],[665,1,1,12,13]]],[22,1,1,13,14,[[714,1,1,13,14]]]],[1329,2122,3322,5447,7608,7685,8003,10241,12325,12812,13507,17355,17455,18337]]],["He",[47,47,[[0,3,3,0,3,[[9,1,1,0,1],[19,2,2,1,3]]],[2,1,1,3,4,[[102,1,1,3,4]]],[3,1,1,4,5,[[135,1,1,4,5]]],[4,2,2,5,7,[[162,1,1,5,6],[180,1,1,6,7]]],[6,1,1,7,8,[[219,1,1,7,8]]],[8,2,2,8,10,[[254,2,2,8,10]]],[9,2,2,10,12,[[273,1,1,10,11],[289,1,1,11,12]]],[10,1,1,12,13,[[297,1,1,12,13]]],[11,6,6,13,19,[[326,3,3,13,16],[327,1,1,16,17],[330,2,2,17,19]]],[12,4,4,19,23,[[348,1,1,19,20],[353,1,1,20,21],[354,1,1,21,22],[359,1,1,22,23]]],[13,6,6,23,29,[[388,1,1,23,24],[392,2,2,24,26],[393,2,2,26,28],[395,1,1,28,29]]],[17,6,6,29,35,[[443,1,1,29,30],[444,1,1,30,31],[448,1,1,31,32],[450,1,1,32,33],[459,1,1,33,34],[475,1,1,34,35]]],[18,4,4,35,39,[[539,2,2,35,37],[566,1,1,37,38],[582,1,1,38,39]]],[19,5,5,39,44,[[632,1,1,39,40],[638,1,1,40,41],[645,1,1,41,42],[649,1,1,42,43],[655,1,1,43,44]]],[22,1,1,44,45,[[711,1,1,44,45]]],[24,1,1,45,46,[[799,1,1,45,46]]],[25,1,1,46,47,[[831,1,1,46,47]]]],[243,500,508,3096,4301,5207,5655,6757,7720,7723,8193,8663,8948,9903,9918,9921,9960,10028,10032,10686,10834,10875,10974,11647,11734,11755,11758,11760,11794,13045,13073,13169,13226,13454,13883,14829,14833,15352,15613,16540,16716,16910,17024,17222,18295,20364,21215]]],["It",[22,22,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,4,4,1,5,[[61,2,2,1,3],[65,1,1,3,4],[80,1,1,4,5]]],[2,5,5,5,10,[[94,1,1,5,6],[95,1,1,6,7],[102,1,1,7,8],[105,1,1,8,9],[112,1,1,9,10]]],[4,1,1,10,11,[[182,1,1,10,11]]],[7,1,1,11,12,[[233,1,1,11,12]]],[8,1,1,12,13,[[238,1,1,12,13]]],[10,1,1,13,14,[[303,1,1,13,14]]],[11,1,1,14,15,[[313,1,1,14,15]]],[13,1,1,15,16,[[384,1,1,15,16]]],[14,1,1,16,17,[[412,1,1,16,17]]],[17,1,1,17,18,[[463,1,1,17,18]]],[22,1,1,18,19,[[719,1,1,18,19]]],[23,1,1,19,20,[[776,1,1,19,20]]],[25,1,1,20,21,[[818,1,1,20,21]]],[37,1,1,21,22,[[923,1,1,21,22]]]],[656,1843,1858,1962,2437,2849,2858,3063,3232,3434,5720,7155,7294,9210,9541,11573,12261,13518,18458,19774,20833,23068]]],["She",[9,9,[[0,5,5,0,5,[[11,1,1,0,1],[19,2,2,1,3],[25,2,2,3,5]]],[19,4,4,5,9,[[630,2,2,5,7],[634,1,1,7,8],[650,1,1,8,9]]]],[317,497,500,699,701,16470,16473,16586,17072]]],["That",[3,3,[[0,1,1,0,1,[[41,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]],[35,1,1,2,3,[[906,1,1,2,3]]]],[1266,4958,22802]]],["These",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1681]]],["They",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22738]]],["This",[27,27,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,3,3,1,4,[[57,1,1,1,2],[65,2,2,2,4]]],[2,1,1,4,5,[[99,1,1,4,5]]],[3,1,1,5,6,[[142,1,1,5,6]]],[10,1,1,6,7,[[291,1,1,6,7]]],[11,2,2,7,9,[[321,1,1,7,8],[327,1,1,8,9]]],[12,1,1,9,10,[[364,1,1,9,10]]],[14,1,1,10,11,[[409,1,1,10,11]]],[15,1,1,11,12,[[420,1,1,11,12]]],[17,2,2,12,14,[[444,1,1,12,13],[466,1,1,13,14]]],[18,1,1,14,15,[[554,1,1,14,15]]],[23,2,2,15,17,[[773,1,1,15,16],[774,1,1,16,17]]],[25,9,9,17,26,[[802,1,1,17,18],[805,1,1,18,19],[811,2,2,19,21],[812,1,1,21,22],[820,1,1,22,23],[832,1,1,23,24],[833,1,1,24,25],[846,1,1,25,26]]],[29,1,1,26,27,[[885,1,1,26,27]]]],[1223,1729,1962,1970,2980,4498,8762,9792,9937,11115,12179,12502,13073,13616,15103,19663,19684,20492,20532,20648,20653,20666,20895,21248,21264,21631,22470]]],["Which",[2,2,[[12,1,1,0,1,[[363,1,1,0,1]]],[18,1,1,1,2,[[496,1,1,1,2]]]],[11103,14173]]],["be",[1,1,[[5,1,1,0,1,[[203,1,1,0,1]]]],[6293]]],["beginning",[2,2,[[22,2,2,0,2,[[696,2,2,0,2]]]],[17999,18004]]],["he",[574,529,[[0,58,56,0,56,[[2,1,1,0,1],[3,3,3,1,4],[5,1,1,4,5],[9,1,1,5,6],[12,1,1,6,7],[13,3,3,7,10],[15,1,1,10,11],[17,2,2,11,13],[18,1,1,13,14],[19,3,3,14,17],[20,2,2,17,19],[23,4,4,19,23],[24,1,1,23,24],[26,2,2,24,26],[28,2,1,26,27],[30,2,2,27,29],[31,2,2,29,31],[32,1,1,31,32],[33,1,1,32,33],[34,1,1,33,34],[35,1,1,34,35],[36,2,2,35,37],[37,2,2,37,39],[38,4,4,39,43],[40,1,1,43,44],[41,2,2,44,46],[43,3,3,46,49],[44,1,1,49,50],[47,2,1,50,51],[48,3,3,51,54],[49,2,2,54,56]]],[1,15,13,56,69,[[51,1,1,56,57],[53,4,2,57,59],[58,1,1,59,60],[61,1,1,60,61],[65,1,1,61,62],[67,2,2,62,64],[70,3,3,64,67],[78,1,1,67,68],[84,1,1,68,69]]],[2,36,29,69,98,[[92,2,2,69,71],[94,3,3,71,74],[100,9,4,74,78],[102,12,10,78,88],[103,1,1,88,89],[104,1,1,89,90],[110,3,3,90,93],[111,1,1,93,94],[114,3,3,94,97],[116,1,1,97,98]]],[3,18,17,98,115,[[122,1,1,98,99],[127,1,1,99,100],[132,1,1,100,101],[135,1,1,101,102],[137,1,1,102,103],[138,2,1,103,104],[139,2,2,104,106],[140,1,1,106,107],[141,1,1,107,108],[143,2,2,108,110],[151,5,5,110,115]]],[4,41,33,115,148,[[153,4,3,115,118],[154,1,1,118,119],[155,4,3,119,122],[156,2,2,122,124],[159,1,1,124,125],[160,1,1,125,126],[161,3,1,126,127],[162,1,1,127,128],[169,1,1,128,129],[170,1,1,129,130],[171,3,3,130,133],[173,1,1,133,134],[174,1,1,134,135],[175,1,1,135,136],[176,2,2,136,138],[180,1,1,138,139],[181,1,1,139,140],[182,1,1,140,141],[183,6,3,141,144],[184,5,4,144,148]]],[5,18,14,148,162,[[188,1,1,148,149],[189,1,1,149,150],[193,1,1,150,151],[194,3,2,151,153],[196,1,1,153,154],[203,2,1,154,155],[208,2,1,155,156],[209,3,3,156,159],[210,4,3,159,162]]],[6,28,27,162,189,[[213,6,5,162,167],[214,2,2,167,169],[216,2,2,169,171],[218,1,1,171,172],[219,3,3,172,175],[220,1,1,175,176],[221,1,1,176,177],[223,4,4,177,181],[224,1,1,181,182],[225,1,1,182,183],[226,2,2,183,185],[227,1,1,185,186],[228,1,1,186,187],[229,2,2,187,189]]],[7,5,5,189,194,[[232,1,1,189,190],[233,1,1,190,191],[234,2,2,191,193],[235,1,1,193,194]]],[8,42,40,194,234,[[236,1,1,194,195],[239,1,1,195,196],[241,1,1,196,197],[244,2,2,197,199],[245,1,1,199,200],[250,1,1,200,201],[251,2,1,201,202],[252,4,4,202,206],[253,3,3,206,209],[254,4,4,209,213],[255,4,4,213,217],[257,2,2,217,219],[258,1,1,219,220],[259,2,2,220,222],[260,5,5,222,227],[262,2,2,227,229],[263,3,2,229,231],[265,2,2,231,233],[266,1,1,233,234]]],[9,27,23,234,257,[[270,1,1,234,235],[273,1,1,235,236],[275,3,2,236,238],[278,1,1,238,239],[279,2,2,239,241],[280,2,1,241,242],[281,1,1,242,243],[283,5,5,243,248],[285,3,2,248,250],[286,1,1,250,251],[287,2,2,251,253],[288,1,1,253,254],[289,4,3,254,257]]],[10,35,32,257,289,[[291,6,6,257,263],[292,2,2,263,265],[293,1,1,265,266],[294,2,2,266,268],[295,1,1,268,269],[298,1,1,269,270],[301,4,4,270,274],[304,2,2,274,276],[306,1,1,276,277],[307,2,2,277,279],[308,4,2,279,281],[309,1,1,281,282],[310,8,7,282,289]]],[11,23,23,289,312,[[314,4,4,289,293],[317,4,4,293,297],[318,3,3,297,300],[320,4,4,300,304],[321,1,1,304,305],[322,1,1,305,306],[326,1,1,306,307],[329,1,1,307,308],[330,1,1,308,309],[331,1,1,309,310],[336,1,1,310,311],[337,1,1,311,312]]],[12,22,19,312,331,[[338,1,1,312,313],[339,2,1,313,314],[342,2,2,314,316],[343,1,1,316,317],[345,1,1,317,318],[347,1,1,318,319],[348,7,5,319,324],[352,1,1,324,325],[353,1,1,325,326],[354,1,1,326,327],[357,1,1,327,328],[359,1,1,328,329],[360,1,1,329,330],[365,1,1,330,331]]],[13,15,14,331,345,[[372,1,1,331,332],[387,2,2,332,334],[388,3,2,334,336],[391,1,1,336,337],[392,1,1,337,338],[394,1,1,338,339],[398,2,2,339,341],[399,2,2,341,343],[400,1,1,343,344],[402,1,1,344,345]]],[14,5,5,345,350,[[403,3,3,345,348],[409,2,2,348,350]]],[15,9,9,350,359,[[413,1,1,350,351],[414,1,1,351,352],[415,3,3,352,355],[418,2,2,355,357],[419,1,1,357,358],[424,1,1,358,359]]],[16,2,2,359,361,[[428,1,1,359,360],[433,1,1,360,361]]],[17,20,20,361,381,[[437,1,1,361,362],[440,1,1,362,363],[444,1,1,363,364],[446,1,1,364,365],[448,2,2,365,367],[450,1,1,367,368],[452,1,1,368,369],[456,3,3,369,372],[457,1,1,372,373],[458,2,2,373,375],[463,2,2,375,377],[466,1,1,377,378],[467,1,1,378,379],[469,1,1,379,380],[476,1,1,380,381]]],[18,34,32,381,413,[[486,1,1,381,382],[495,1,1,382,383],[501,2,2,383,385],[502,1,1,385,386],[505,1,1,386,387],[510,3,2,387,389],[514,1,1,389,390],[521,1,1,390,391],[522,1,1,391,392],[525,1,1,392,393],[532,1,1,393,394],[537,1,1,394,395],[545,1,1,395,396],[555,1,1,396,397],[568,1,1,397,398],[572,2,2,398,400],[573,1,1,400,401],[576,3,3,401,404],[577,2,1,404,405],[578,1,1,405,406],[580,1,1,406,407],[585,1,1,407,408],[592,3,3,408,411],[607,1,1,411,412],[625,1,1,412,413]]],[19,13,13,413,426,[[630,3,3,413,416],[633,1,1,416,417],[640,1,1,417,418],[648,1,1,418,419],[649,1,1,419,420],[650,2,2,420,422],[651,1,1,422,423],[655,2,2,423,425],[657,1,1,425,426]]],[20,5,5,426,431,[[659,1,1,426,427],[661,1,1,427,428],[667,1,1,428,429],[668,2,2,429,431]]],[22,32,31,431,462,[[680,1,1,431,432],[687,2,1,432,433],[688,1,1,433,434],[697,2,2,434,436],[705,1,1,436,437],[709,1,1,437,438],[710,1,1,438,439],[711,1,1,439,440],[712,1,1,440,441],[713,1,1,441,442],[715,1,1,442,443],[716,1,1,443,444],[719,1,1,444,445],[721,3,3,445,448],[723,2,2,448,450],[724,1,1,450,451],[726,1,1,451,452],[728,1,1,452,453],[729,1,1,453,454],[730,1,1,454,455],[731,5,5,455,460],[741,2,2,460,462]]],[23,20,20,462,482,[[746,1,1,462,463],[749,1,1,463,464],[754,2,2,464,466],[758,1,1,466,467],[762,1,1,467,468],[766,2,2,468,470],[769,1,1,470,471],[777,1,1,471,472],[781,2,2,472,474],[782,2,2,474,476],[785,1,1,476,477],[792,2,2,477,479],[793,1,1,479,480],[795,1,1,480,481],[796,1,1,481,482]]],[25,21,20,482,502,[[804,3,3,482,485],[813,3,2,485,487],[819,3,3,487,490],[821,1,1,490,491],[822,1,1,491,492],[834,5,5,492,497],[835,1,1,497,498],[839,1,1,498,499],[841,1,1,499,500],[845,1,1,500,501],[846,1,1,501,502]]],[26,1,1,502,503,[[860,1,1,502,503]]],[27,11,9,503,512,[[866,1,1,503,504],[867,1,1,504,505],[868,3,2,505,507],[871,1,1,507,508],[872,1,1,508,509],[874,4,3,509,512]]],[28,1,1,512,513,[[877,1,1,512,513]]],[29,4,4,513,517,[[879,1,1,513,514],[880,1,1,514,515],[885,2,2,515,517]]],[31,1,1,517,518,[[889,1,1,517,518]]],[32,2,2,518,520,[[899,2,2,518,520]]],[33,2,2,520,522,[[900,2,2,520,522]]],[37,5,4,522,526,[[911,1,1,522,523],[916,2,1,523,524],[919,2,2,524,526]]],[38,3,3,526,529,[[926,2,2,526,528],[927,1,1,528,529]]]],[71,83,99,100,140,242,319,349,351,354,393,425,432,487,500,502,511,526,530,598,606,645,653,687,758,760,807,893,894,946,959,963,999,1017,1083,1086,1110,1130,1131,1152,1155,1171,1172,1206,1258,1290,1338,1341,1344,1384,1470,1486,1492,1493,1520,1528,1556,1615,1617,1776,1846,1976,2004,2013,2080,2081,2098,2357,2565,2779,2785,2832,2833,2834,3001,3002,3003,3004,3063,3065,3069,3088,3089,3091,3092,3093,3096,3098,3132,3170,3352,3353,3358,3380,3485,3510,3523,3578,3831,4054,4201,4309,4373,4397,4422,4435,4470,4486,4557,4575,4861,4862,4863,4864,4866,4922,4928,4930,4970,4976,4997,5003,5039,5043,5120,5155,5160,5207,5384,5390,5410,5411,5412,5464,5487,5507,5531,5540,5655,5692,5728,5731,5734,5736,5762,5764,5797,5802,5880,5894,5982,6012,6016,6071,6276,6448,6463,6465,6470,6493,6494,6495,6587,6588,6592,6595,6599,6602,6620,6676,6685,6723,6772,6787,6802,6812,6830,6889,6890,6900,6905,6913,6943,6969,6980,6987,7023,7033,7040,7128,7169,7174,7176,7207,7240,7315,7340,7404,7417,7440,7589,7607,7623,7641,7651,7655,7691,7692,7703,7715,7724,7728,7730,7756,7759,7761,7766,7804,7805,7832,7845,7849,7864,7878,7886,7897,7898,7932,7933,7950,7956,7987,7988,8014,8127,8194,8231,8240,8309,8325,8337,8375,8419,8451,8454,8458,8459,8473,8520,8543,8562,8596,8600,8633,8671,8673,8674,8723,8730,8734,8741,8747,8752,8778,8792,8819,8859,8868,8883,9004,9122,9125,9136,9137,9221,9223,9292,9332,9336,9368,9380,9406,9420,9424,9436,9440,9447,9448,9449,9563,9565,9569,9574,9654,9662,9665,9672,9687,9704,9706,9732,9748,9754,9756,9770,9805,9907,10022,10046,10098,10214,10223,10262,10327,10429,10434,10464,10582,10664,10684,10693,10695,10696,10698,10813,10845,10876,10932,10974,10996,11149,11291,11627,11635,11650,11653,11725,11752,11767,11884,11901,11914,11921,11936,12016,12018,12019,12020,12179,12182,12298,12327,12339,12341,12342,12414,12419,12422,12632,12751,12818,12899,12969,13075,13119,13172,13181,13225,13263,13377,13386,13387,13407,13425,13432,13527,13528,13592,13629,13712,13922,14029,14148,14243,14251,14266,14307,14375,14386,14455,14592,14608,14648,14754,14819,14935,15151,15398,15459,15461,15469,15501,15504,15505,15511,15519,15563,15755,15839,15840,15841,16148,16376,16461,16484,16489,16572,16760,17013,17037,17051,17055,17091,17202,17222,17256,17320,17368,17490,17496,17503,17707,17844,17857,18020,18021,18162,18252,18266,18301,18320,18324,18390,18409,18455,18515,18518,18530,18574,18579,18590,18626,18671,18685,18702,18715,18716,18718,18722,18723,18875,18876,18979,19070,19211,19217,19315,19388,19458,19482,19565,19776,19876,19887,19899,19900,19964,20091,20106,20139,20231,20280,20521,20522,20523,20692,20707,20858,20866,20876,20944,20967,21285,21286,21289,21293,21299,21336,21442,21480,21602,21647,22044,22165,22168,22186,22187,22227,22250,22267,22279,22281,22324,22379,22388,22466,22469,22541,22667,22682,22686,22693,22886,22960,23006,23008,23110,23120,23122]]],["her",[2,2,[[0,1,1,0,1,[[39,1,1,0,1]]],[25,1,1,1,2,[[831,1,1,1,2]]]],[1182,21222]]],["herself",[1,1,[[0,1,1,0,1,[[19,1,1,0,1]]]],[500]]],["him",[10,9,[[0,2,2,0,2,[[3,1,1,0,1],[9,1,1,1,2]]],[1,1,1,2,3,[[61,1,1,2,3]]],[4,1,1,3,4,[[170,1,1,3,4]]],[6,1,1,4,5,[[219,1,1,4,5]]],[8,1,1,5,6,[[254,1,1,5,6]]],[10,1,1,6,7,[[308,1,1,6,7]]],[22,2,1,7,8,[[686,2,1,7,8]]],[23,1,1,8,9,[[771,1,1,8,9]]]],[105,255,1820,5389,6773,7729,9365,17820,19603]]],["himself",[16,16,[[0,1,1,0,1,[[31,1,1,0,1]]],[3,1,1,1,2,[[151,1,1,1,2]]],[5,1,1,2,3,[[208,1,1,2,3]]],[8,2,2,3,5,[[245,1,1,3,4],[265,1,1,4,5]]],[10,1,1,5,6,[[309,1,1,5,6]]],[13,1,1,6,7,[[392,1,1,6,7]]],[14,1,1,7,8,[[412,1,1,7,8]]],[18,2,2,8,10,[[527,1,1,8,9],[564,1,1,9,10]]],[19,3,3,10,13,[[638,1,1,10,11],[648,1,1,11,12],[655,1,1,12,13]]],[22,3,3,13,16,[[685,1,1,13,14],[716,1,1,14,15],[723,1,1,15,16]]]],[949,4864,6449,7437,8009,9391,11752,12260,14674,15306,16713,16997,17206,17796,18405,18579]]],["is",[1,1,[[18,1,1,0,1,[[501,1,1,0,1]]]],[14251]]],["it",[230,213,[[0,13,12,0,12,[[1,2,2,0,2],[2,2,2,2,4],[18,2,1,4,5],[28,1,1,5,6],[31,1,1,6,7],[36,1,1,7,8],[40,1,1,8,9],[41,1,1,9,10],[42,1,1,10,11],[43,1,1,11,12]]],[1,22,21,12,33,[[50,2,1,12,13],[61,2,2,13,15],[62,1,1,15,16],[65,2,2,16,18],[71,2,2,18,20],[78,6,6,20,26],[79,2,2,26,28],[80,2,2,28,30],[81,1,1,30,31],[83,2,2,31,33]]],[2,72,67,33,100,[[90,2,2,33,35],[91,2,2,35,37],[93,2,2,37,39],[94,3,3,39,42],[95,4,4,42,46],[96,3,3,46,49],[97,2,2,49,51],[99,2,2,51,53],[100,2,2,53,55],[102,23,19,55,74],[103,3,2,74,76],[104,2,2,76,78],[106,1,1,78,79],[107,5,5,79,84],[108,1,1,84,85],[109,3,3,85,88],[111,1,1,88,89],[112,3,3,89,92],[113,1,1,92,93],[114,3,3,93,96],[116,4,4,96,100]]],[3,12,12,100,112,[[121,1,1,100,101],[129,4,4,101,105],[130,1,1,105,106],[131,1,1,106,107],[134,2,2,107,109],[135,2,2,109,111],[151,1,1,111,112]]],[4,12,9,112,121,[[155,1,1,112,113],[159,2,2,113,115],[161,1,1,115,116],[166,3,2,116,118],[182,3,2,118,120],[184,2,1,120,121]]],[5,9,9,121,130,[[188,1,1,121,122],[190,1,1,122,123],[192,1,1,123,124],[196,1,1,124,125],[203,1,1,125,126],[208,3,3,126,129],[210,1,1,129,130]]],[6,4,3,130,133,[[223,1,1,130,131],[224,1,1,131,132],[228,2,1,132,133]]],[8,3,3,133,136,[[241,1,1,133,134],[255,1,1,134,135],[256,1,1,135,136]]],[10,3,3,136,139,[[311,1,1,136,137],[312,2,2,137,139]]],[11,2,2,139,141,[[318,1,1,139,140],[319,1,1,140,141]]],[12,2,2,141,143,[[349,1,1,141,142],[358,1,1,142,143]]],[13,2,2,143,145,[[386,1,1,143,144],[391,1,1,144,145]]],[16,2,2,145,147,[[426,1,1,145,146],[434,1,1,146,147]]],[17,4,4,147,151,[[440,1,1,147,148],[466,2,2,148,150],[472,1,1,150,151]]],[18,6,6,151,157,[[502,1,1,151,152],[516,1,1,152,153],[550,1,1,153,154],[576,1,1,154,155],[595,1,1,155,156],[596,1,1,156,157]]],[19,5,5,157,162,[[633,1,1,157,158],[634,1,1,158,159],[637,2,2,159,161],[645,1,1,161,162]]],[20,13,13,162,175,[[659,2,2,162,164],[660,1,1,164,165],[661,2,2,165,167],[662,1,1,167,168],[663,2,2,168,170],[664,3,3,170,173],[665,1,1,173,174],[667,1,1,174,175]]],[22,11,10,175,185,[[692,1,1,175,176],[707,1,1,176,177],[708,1,1,177,178],[712,2,1,178,179],[713,1,1,179,180],[725,1,1,180,181],[729,2,2,181,183],[737,1,1,183,184],[741,1,1,184,185]]],[23,6,5,185,190,[[749,2,1,185,186],[774,1,1,186,187],[785,1,1,187,188],[794,1,1,188,189],[795,1,1,189,190]]],[25,15,14,190,204,[[802,1,1,190,191],[803,1,1,191,192],[805,1,1,192,193],[817,1,1,193,194],[819,2,2,194,196],[822,4,3,196,199],[829,1,1,199,200],[839,1,1,200,201],[840,1,1,201,202],[845,1,1,202,203],[847,1,1,203,204]]],[27,3,2,204,206,[[868,1,1,204,205],[869,2,1,205,206]]],[29,3,2,206,208,[[883,1,1,206,207],[885,2,1,207,208]]],[32,1,1,208,209,[[896,1,1,208,209]]],[34,2,1,209,210,[[904,2,1,209,210]]],[36,1,1,210,211,[[910,1,1,210,211]]],[37,2,2,211,213,[[915,1,1,211,212],[921,1,1,212,213]]]],[41,44,61,70,477,820,946,1115,1226,1279,1302,1334,1548,1818,1827,1869,1962,1978,2128,2140,2350,2354,2358,2361,2364,2370,2392,2414,2433,2434,2447,2505,2506,2758,2762,2768,2777,2816,2819,2839,2841,2842,2854,2866,2874,2878,2880,2884,2885,2938,2945,2989,2994,3034,3035,3055,3058,3060,3062,3067,3072,3074,3075,3077,3079,3080,3082,3091,3094,3101,3103,3104,3107,3109,3124,3155,3171,3191,3246,3259,3267,3268,3273,3274,3288,3332,3335,3339,3376,3405,3430,3438,3455,3479,3481,3503,3574,3580,3596,3603,3807,4093,4094,4095,4102,4149,4178,4276,4288,4298,4304,4878,4986,5136,5137,5170,5298,5300,5719,5721,5805,5890,5934,5966,6066,6293,6453,6454,6460,6503,6902,6913,7021,7340,7763,7781,9453,9512,9513,9679,9714,10735,10951,11612,11724,12722,12835,12978,13599,13600,13781,14262,14516,15036,15502,15892,15995,16562,16598,16678,16680,16914,17324,17325,17357,17372,17373,17389,17403,17415,17418,17419,17427,17452,17488,17952,18204,18250,18319,18328,18609,18682,18683,18816,18871,19073,19674,19966,20181,20223,20477,20502,20541,20776,20853,20869,20955,20956,20958,21175,21433,21459,21600,21671,22184,22200,22436,22477,22621,22767,22861,22942,23039]]],["one",[2,2,[[7,1,1,0,1,[[233,1,1,0,1]]],[25,1,1,1,2,[[814,1,1,1,2]]]],[7169,20718]]],["same",[72,71,[[0,14,14,0,14,[[1,1,1,0,1],[9,1,1,1,2],[13,1,1,2,3],[14,1,1,3,4],[18,2,2,4,6],[22,2,2,6,8],[23,1,1,8,9],[25,3,3,9,12],[31,1,1,12,13],[47,1,1,13,14]]],[1,2,2,14,16,[[54,1,1,14,15],[88,1,1,15,16]]],[2,2,2,16,18,[[111,1,1,16,17],[112,1,1,17,18]]],[3,4,4,18,22,[[122,1,1,18,19],[125,1,1,19,20],[131,1,1,20,21],[148,1,1,21,22]]],[4,4,4,22,26,[[161,1,1,22,23],[166,1,1,23,24],[179,1,1,24,25],[183,1,1,25,26]]],[5,1,1,26,27,[[201,1,1,26,27]]],[6,4,3,27,30,[[216,1,1,27,28],[217,3,2,28,30]]],[8,4,4,30,34,[[239,1,1,30,31],[241,2,2,31,33],[266,1,1,33,34]]],[9,2,2,34,36,[[271,1,1,34,35],[289,1,1,35,36]]],[10,2,2,36,38,[[298,1,1,36,37],[303,1,1,37,38]]],[11,2,2,38,40,[[315,1,1,38,39],[320,1,1,39,40]]],[12,2,2,40,42,[[338,1,1,40,41],[354,1,1,41,42]]],[13,10,10,42,52,[[373,1,1,42,43],[381,1,1,43,44],[382,1,1,44,45],[384,1,1,45,46],[386,1,1,46,47],[387,1,1,47,48],[393,1,1,48,49],[398,2,2,49,51],[401,1,1,51,52]]],[14,1,1,52,53,[[412,1,1,52,53]]],[15,1,1,53,54,[[416,1,1,53,54]]],[18,1,1,54,55,[[579,1,1,54,55]]],[19,1,1,55,56,[[655,1,1,55,56]]],[20,1,1,56,57,[[667,1,1,56,57]]],[22,2,2,57,59,[[685,1,1,57,58],[698,1,1,58,59]]],[23,4,4,59,63,[[772,2,2,59,61],[775,1,1,61,62],[783,1,1,62,63]]],[25,5,5,63,68,[[804,1,1,63,64],[824,2,2,64,66],[839,2,2,66,68]]],[26,1,1,68,69,[[861,1,1,68,69]]],[35,1,1,69,70,[[906,1,1,69,70]]],[37,1,1,70,71,[[916,1,1,70,71]]]],[43,246,344,378,494,495,573,590,635,704,716,724,941,1458,1638,2669,3399,3432,3834,3978,4183,4728,5177,5318,5596,5750,6210,6679,6698,6703,7309,7346,7347,8015,8139,8661,9049,9187,9582,9749,10279,10866,11332,11501,11519,11549,11613,11634,11760,11887,11905,11982,12275,12381,15548,17220,17490,17802,18031,19619,19635,19692,19933,20520,21045,21046,21435,21443,22082,22796,22957]]],["she",[96,90,[[0,19,18,0,18,[[2,2,2,0,2],[3,1,1,2,3],[11,2,2,3,5],[18,1,1,5,6],[19,3,3,6,9],[21,2,2,9,11],[24,1,1,11,12],[25,2,2,12,14],[28,1,1,14,15],[37,4,3,15,18]]],[2,12,12,18,30,[[104,2,2,18,20],[107,6,6,20,26],[109,2,2,26,28],[110,1,1,28,29],[111,1,1,29,30]]],[3,4,2,30,32,[[121,4,2,30,32]]],[5,4,4,32,36,[[188,3,3,32,35],[192,1,1,35,36]]],[6,9,9,36,45,[[214,2,2,36,38],[215,1,1,38,39],[218,1,1,39,40],[221,3,3,40,43],[223,1,1,43,44],[224,1,1,44,45]]],[7,3,3,45,48,[[232,3,3,45,48]]],[8,4,4,48,52,[[236,2,2,48,50],[253,1,1,50,51],[260,1,1,51,52]]],[9,3,3,52,55,[[277,1,1,52,53],[279,1,1,53,54],[280,1,1,54,55]]],[10,5,5,55,60,[[293,1,1,55,56],[300,1,1,56,57],[304,2,2,57,59],[307,1,1,59,60]]],[11,4,4,60,64,[[316,1,1,60,61],[320,1,1,61,62],[321,1,1,62,63],[334,1,1,63,64]]],[12,1,1,64,65,[[339,1,1,64,65]]],[13,3,3,65,68,[[375,1,1,65,66],[388,1,1,66,67],[400,1,1,67,68]]],[16,3,2,68,70,[[426,1,1,68,69],[427,2,1,69,70]]],[17,1,1,70,71,[[474,1,1,70,71]]],[19,2,2,71,73,[[631,1,1,71,72],[658,1,1,72,73]]],[21,4,2,73,75,[[676,2,1,73,74],[678,2,1,74,75]]],[23,1,1,75,76,[[747,1,1,75,76]]],[24,3,3,76,79,[[797,3,3,76,79]]],[25,4,4,79,83,[[817,2,2,79,81],[824,1,1,81,82],[827,1,1,82,83]]],[26,1,1,83,84,[[860,1,1,83,84]]],[27,2,2,84,86,[[863,2,2,84,86]]],[32,1,1,86,87,[[893,1,1,86,87]]],[33,1,1,87,88,[[902,1,1,87,88]]],[37,1,1,88,89,[[919,1,1,88,89]]],[38,1,1,89,90,[[926,1,1,89,90]]]],[67,75,101,312,316,495,498,500,507,567,571,679,699,701,804,1133,1135,1144,3191,3193,3258,3262,3263,3264,3265,3266,3335,3336,3354,3381,3805,3806,5875,5877,5884,5966,6603,6604,6652,6750,6863,6867,6868,6893,6912,7130,7133,7145,7222,7225,7695,7881,8263,8319,8383,8843,9092,9223,9235,9332,9608,9729,9790,10159,10332,11376,11655,11955,12713,12738,13864,16503,17314,17623,17649,19008,20313,20314,20318,20808,20810,21050,21117,22042,22107,22113,22592,22722,23003,23117]]],["such",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9089,11373]]],["that",[421,405,[[0,33,33,0,33,[[1,2,2,0,2],[9,1,1,2,3],[16,1,1,3,4],[18,2,2,4,6],[20,2,2,6,8],[21,1,1,8,9],[22,1,1,9,10],[25,1,1,10,11],[27,2,2,11,13],[28,1,1,13,14],[29,3,3,14,17],[30,1,1,17,18],[31,3,3,18,21],[32,1,1,21,22],[33,1,1,22,23],[34,3,3,23,26],[37,2,2,26,28],[40,1,1,28,29],[42,1,1,29,30],[46,2,2,30,32],[47,1,1,32,33]]],[1,16,16,33,49,[[50,1,1,33,34],[52,1,1,34,35],[55,1,1,35,36],[57,1,1,36,37],[59,1,1,37,38],[61,4,4,38,42],[62,2,2,42,44],[63,1,1,44,45],[71,1,1,45,46],[80,1,1,46,47],[81,1,1,47,48],[83,1,1,48,49]]],[2,15,14,49,63,[[96,3,3,49,52],[100,1,1,52,53],[106,3,2,53,55],[108,2,2,55,57],[109,3,3,57,60],[111,1,1,60,61],[114,1,1,61,62],[116,1,1,62,63]]],[3,15,14,63,77,[[121,1,1,63,64],[125,3,2,64,66],[127,2,2,66,68],[129,1,1,68,69],[130,2,2,69,71],[131,2,2,71,73],[135,2,2,73,75],[137,1,1,75,76],[138,1,1,76,77]]],[4,45,41,77,118,[[153,5,5,77,82],[154,1,1,82,83],[155,6,6,83,89],[156,1,1,89,90],[157,1,1,90,91],[159,1,1,91,92],[161,1,1,92,93],[162,3,3,93,96],[164,1,1,96,97],[165,5,3,97,100],[169,5,4,100,104],[170,2,2,104,106],[173,4,4,106,110],[174,2,2,110,112],[176,2,2,112,114],[181,2,2,114,116],[183,3,2,116,118]]],[5,23,21,118,139,[[190,1,1,118,119],[191,2,2,119,121],[192,1,1,121,122],[193,1,1,122,123],[194,4,4,123,127],[195,1,1,127,128],[196,4,3,128,131],[197,2,2,131,133],[200,3,2,133,135],[206,2,2,135,137],[208,1,1,137,138],[210,1,1,138,139]]],[6,25,25,139,164,[[212,2,2,139,141],[213,2,2,141,143],[214,2,2,143,145],[215,1,1,145,146],[216,2,2,146,148],[219,1,1,148,149],[220,1,1,149,150],[221,2,2,150,152],[222,1,1,152,153],[224,1,1,153,154],[225,1,1,154,155],[228,2,2,155,157],[230,5,5,157,162],[231,2,2,162,164]]],[8,24,23,164,187,[[238,1,1,164,165],[242,2,2,165,167],[243,2,1,167,168],[244,1,1,168,169],[245,1,1,169,170],[247,1,1,170,171],[249,5,5,171,176],[253,1,1,176,177],[254,2,2,177,179],[255,1,1,179,180],[256,2,2,180,182],[257,2,2,182,184],[258,1,1,184,185],[262,1,1,185,186],[263,1,1,186,187]]],[9,17,17,187,204,[[268,3,3,187,190],[269,1,1,190,191],[271,2,2,191,193],[272,1,1,193,194],[273,2,2,194,196],[277,1,1,196,197],[283,1,1,197,198],[284,2,2,198,200],[285,2,2,200,202],[289,1,1,202,203],[290,1,1,203,204]]],[10,10,9,204,213,[[293,2,1,204,205],[296,1,1,205,206],[298,1,1,206,207],[301,1,1,207,208],[304,1,1,208,209],[306,1,1,209,210],[309,1,1,210,211],[312,2,2,211,213]]],[11,8,8,213,221,[[315,1,1,213,214],[328,1,1,214,215],[330,2,2,215,217],[331,1,1,217,218],[332,1,1,218,219],[335,1,1,219,220],[336,1,1,220,221]]],[12,8,8,221,229,[[350,2,2,221,223],[351,1,1,223,224],[353,1,1,224,225],[358,2,2,225,227],[366,2,2,227,229]]],[13,9,9,229,238,[[367,1,1,229,230],[370,1,1,230,231],[379,1,1,231,232],[382,1,1,232,233],[384,2,2,233,235],[394,1,1,235,236],[396,1,1,236,237],[401,1,1,237,238]]],[14,1,1,238,239,[[410,1,1,238,239]]],[15,7,7,239,246,[[416,1,1,239,240],[418,1,1,240,241],[420,1,1,241,242],[424,2,2,242,244],[425,2,2,244,246]]],[16,12,9,246,255,[[427,1,1,246,247],[428,3,1,247,248],[430,1,1,248,249],[431,1,1,249,250],[433,3,2,250,252],[434,3,3,252,255]]],[17,5,5,255,260,[[436,1,1,255,256],[438,3,3,256,259],[463,1,1,259,260]]],[19,1,1,260,261,[[646,1,1,260,261]]],[20,8,7,261,268,[[659,1,1,261,262],[661,4,3,262,265],[665,1,1,265,266],[666,1,1,266,267],[667,1,1,267,268]]],[22,47,47,268,315,[[680,3,3,268,271],[681,2,2,271,273],[682,2,2,273,275],[683,1,1,275,276],[685,3,3,276,279],[688,2,2,279,281],[689,2,2,281,283],[690,2,2,283,285],[695,3,3,285,288],[696,1,1,288,289],[697,6,6,289,295],[698,1,1,295,296],[700,4,4,296,300],[701,1,1,300,301],[702,1,1,301,302],[703,1,1,302,303],[704,1,1,303,304],[705,4,4,304,308],[706,1,1,308,309],[707,1,1,309,310],[708,1,1,310,311],[709,1,1,311,312],[717,1,1,312,313],[720,1,1,313,314],[730,1,1,314,315]]],[23,26,26,315,341,[[747,2,2,315,317],[748,2,2,317,319],[752,1,1,319,320],[756,1,1,320,321],[762,1,1,321,322],[764,1,1,322,323],[767,1,1,323,324],[769,4,4,324,328],[771,1,1,328,329],[774,3,3,329,332],[777,1,1,332,333],[783,2,2,333,335],[792,1,1,335,336],[793,2,2,336,338],[794,3,3,338,341]]],[25,16,16,341,357,[[815,4,4,341,345],[819,1,1,345,346],[823,1,1,346,347],[825,2,2,347,349],[830,1,1,349,350],[831,1,1,350,351],[834,1,1,351,352],[839,2,2,352,354],[840,2,2,354,356],[846,1,1,356,357]]],[26,2,1,357,358,[[861,2,1,357,358]]],[27,4,4,358,362,[[862,1,1,358,359],[863,3,3,359,362]]],[28,2,2,362,364,[[878,2,2,362,364]]],[29,6,6,364,370,[[880,1,1,364,365],[883,1,1,365,366],[886,3,3,366,369],[887,1,1,369,370]]],[30,1,1,370,371,[[888,1,1,370,371]]],[32,6,6,371,377,[[894,1,1,371,372],[895,1,1,372,373],[896,1,1,373,374],[897,1,1,374,375],[899,2,2,375,377]]],[35,6,6,377,383,[[906,2,2,377,379],[908,4,4,379,383]]],[36,1,1,383,384,[[910,1,1,383,384]]],[37,22,21,384,405,[[912,1,1,384,385],[913,2,2,385,387],[919,1,1,387,388],[921,1,1,388,389],[922,7,6,389,395],[923,3,3,395,398],[924,7,7,398,405]]]],[42,49,245,411,490,492,535,544,561,586,704,784,792,797,846,863,865,889,930,949,950,976,994,1017,1031,1033,1120,1140,1226,1322,1437,1438,1471,1538,1587,1682,1732,1790,1831,1832,1835,1858,1875,1884,1919,2140,2434,2466,2499,2899,2900,2906,3009,3239,3244,3289,3301,3321,3323,3324,3372,3480,3593,3798,3971,3978,4056,4058,4107,4109,4153,4183,4184,4302,4309,4356,4379,4901,4908,4910,4911,4936,4972,4979,4983,4987,4993,4996,4998,5018,5058,5127,5176,5187,5194,5196,5243,5275,5277,5287,5365,5369,5374,5376,5404,5406,5450,5451,5453,5470,5488,5494,5529,5532,5699,5701,5745,5746,5924,5936,5946,5975,6002,6011,6015,6027,6029,6064,6078,6092,6099,6117,6128,6196,6199,6376,6378,6446,6501,6550,6555,6597,6598,6603,6622,6624,6686,6694,6799,6819,6850,6855,6875,6913,6946,6994,7005,7069,7075,7080,7089,7100,7116,7126,7288,7358,7362,7387,7415,7427,7478,7526,7531,7532,7539,7545,7678,7716,7730,7756,7779,7782,7805,7809,7838,7936,7967,8065,8066,8078,8118,8140,8152,8166,8184,8208,8271,8462,8485,8486,8513,8514,8663,8710,8820,8913,9050,9137,9219,9299,9395,9505,9515,9593,9969,10034,10040,10096,10110,10180,10212,10771,10772,10785,10827,10962,10963,11185,11186,11201,11267,11471,11516,11566,11576,11780,11830,11983,12235,12375,12402,12510,12667,12668,12672,12692,12731,12754,12788,12794,12818,12826,12835,12845,12858,12870,12908,12910,12911,13532,16946,17324,17374,17380,17381,17431,17473,17484,17696,17702,17705,17714,17725,17734,17735,17769,17800,17803,17805,17870,17877,17894,17895,17901,17904,17987,17990,17992,18004,18020,18022,18023,18025,18027,18028,18035,18060,18064,18072,18077,18092,18116,18127,18131,18152,18153,18163,18164,18169,18211,18240,18257,18413,18488,18702,19003,19019,19036,19038,19154,19266,19392,19438,19518,19535,19546,19547,19567,19604,19674,19675,19688,19790,19939,19940,20121,20149,20153,20170,20186,20196,20739,20740,20748,20750,20860,21000,21082,21083,21204,21213,21288,21439,21444,21459,21470,21652,22082,22099,22121,22123,22126,22344,22361,22395,22436,22484,22490,22494,22506,22518,22599,22612,22626,22643,22675,22676,22797,22799,22831,22836,22839,22840,22878,22910,22921,22922,23015,23039,23048,23049,23051,23053,23054,23056,23060,23061,23063,23072,23074,23076,23077,23081,23088,23089]]],["the",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8165]]],["they",[26,23,[[1,2,2,0,2,[[50,1,1,0,1],[81,1,1,1,2]]],[3,8,7,2,9,[[129,4,3,2,5],[138,4,4,5,9]]],[4,3,3,9,12,[[172,1,1,9,10],[183,2,2,10,12]]],[5,1,1,12,13,[[203,1,1,12,13]]],[6,1,1,13,14,[[230,1,1,13,14]]],[9,1,1,14,15,[[290,1,1,14,15]]],[18,1,1,15,16,[[596,1,1,15,16]]],[19,1,1,16,17,[[650,1,1,16,17]]],[23,2,2,17,19,[[750,1,1,17,18],[794,1,1,18,19]]],[27,1,1,19,20,[[863,1,1,19,20]]],[34,2,1,20,21,[[903,2,1,20,21]]],[37,3,2,21,23,[[923,2,1,21,22],[924,1,1,22,23]]]],[1542,2460,4093,4094,4106,4378,4380,4381,4387,5447,5744,5749,6293,7093,8705,15996,17047,19112,20204,22128,22741,23068,23080]]],["this",[36,36,[[0,2,2,0,2,[[14,1,1,0,1],[35,1,1,1,2]]],[3,2,2,2,4,[[121,1,1,2,3],[122,1,1,3,4]]],[4,3,3,4,7,[[156,1,1,4,5],[181,1,1,5,6],[184,1,1,6,7]]],[5,1,1,7,8,[[196,1,1,7,8]]],[8,1,1,8,9,[[236,1,1,8,9]]],[11,1,1,9,10,[[316,1,1,9,10]]],[13,1,1,10,11,[[394,1,1,10,11]]],[16,1,1,11,12,[[426,1,1,11,12]]],[17,3,3,12,15,[[436,1,1,12,13],[443,1,1,13,14],[466,1,1,14,15]]],[18,2,2,15,17,[[558,1,1,15,16],[626,1,1,16,17]]],[20,3,3,17,20,[[659,1,1,17,18],[660,1,1,18,19],[662,1,1,19,20]]],[22,2,2,20,22,[[708,1,1,20,21],[720,1,1,21,22]]],[23,7,7,22,29,[[750,1,1,22,23],[766,1,1,23,24],[776,1,1,24,25],[789,1,1,25,26],[790,1,1,26,27],[794,1,1,27,28],[795,1,1,28,29]]],[25,6,6,29,35,[[812,3,3,29,32],[822,1,1,32,33],[840,1,1,33,34],[847,1,1,34,35]]],[32,1,1,35,36,[[894,1,1,35,36]]]],[362,1064,3823,3843,5010,5706,5792,6077,7215,9612,11786,12703,12872,13048,13599,15221,16394,17328,17334,17385,18226,18502,19095,19470,19739,20044,20055,20191,20218,20658,20662,20670,20955,21456,21658,22598]]],["those",[2,2,[[8,1,1,0,1,[[265,1,1,0,1]]],[20,1,1,1,2,[[663,1,1,1,2]]]],[7998,17411]]],["thou",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12517]]],["very",[1,1,[[18,1,1,0,1,[[623,1,1,0,1]]]],[16345]]],["were",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6213]]],["when",[1,1,[[8,1,1,0,1,[[238,1,1,0,1]]]],[7278]]],["which",[64,64,[[0,7,7,0,7,[[13,4,4,0,4],[17,1,1,4,5],[34,2,2,5,7]]],[3,5,5,7,12,[[121,1,1,7,8],[132,1,1,8,9],[134,1,1,9,10],[149,2,2,10,12]]],[4,2,2,12,14,[[155,1,1,12,13],[156,1,1,13,14]]],[5,12,12,14,26,[[201,7,7,14,21],[204,3,3,21,24],[206,1,1,24,25],[207,1,1,25,26]]],[6,3,3,26,29,[[211,1,1,26,27],[214,1,1,27,28],[229,1,1,28,29]]],[8,1,1,29,30,[[257,1,1,29,30]]],[10,6,6,30,36,[[292,1,1,30,31],[296,2,2,31,33],[298,2,2,33,35],[304,1,1,35,36]]],[11,3,3,36,39,[[326,1,1,36,37],[330,1,1,37,38],[337,1,1,38,39]]],[12,4,4,39,43,[[339,1,1,39,40],[341,1,1,40,41],[348,2,2,41,43]]],[13,3,3,43,46,[[371,2,2,43,45],[386,1,1,45,46]]],[14,1,1,46,47,[[409,1,1,46,47]]],[15,1,1,47,48,[[420,1,1,47,48]]],[16,3,3,48,51,[[427,1,1,48,49],[428,1,1,49,50],[433,1,1,50,51]]],[17,2,2,51,53,[[450,1,1,51,52],[472,1,1,52,53]]],[23,4,4,53,57,[[776,1,1,53,54],[782,1,1,54,55],[794,1,1,55,56],[796,1,1,56,57]]],[25,4,4,57,61,[[802,1,1,57,58],[821,2,2,58,60],[838,1,1,60,61]]],[26,1,1,61,62,[[859,1,1,61,62]]],[37,2,2,62,64,[[911,1,1,62,63],[924,1,1,63,64]]]],[338,339,343,353,434,1030,1038,3810,4234,4273,4796,4800,4988,5052,6211,6212,6215,6227,6251,6256,6262,6306,6307,6321,6379,6392,6535,6601,7034,7796,8778,8897,8934,8986,8987,9220,9917,10033,10230,10348,10396,10677,10678,11270,11271,11589,12181,12502,12740,12760,12829,13212,13790,19732,19902,20169,20288,20466,20901,20910,21398,22019,22885,23075]]],["who",[25,25,[[0,4,4,0,4,[[13,1,1,0,1],[35,2,2,1,3],[47,1,1,3,4]]],[3,2,2,4,6,[[128,1,1,4,5],[137,1,1,5,6]]],[5,1,1,6,7,[[199,1,1,6,7]]],[6,3,3,7,10,[[216,1,1,7,8],[217,1,1,8,9],[227,1,1,9,10]]],[9,1,1,10,11,[[270,1,1,10,11]]],[10,2,2,11,13,[[302,1,1,11,12],[309,1,1,12,13]]],[12,7,7,13,20,[[342,1,1,13,14],[344,1,1,14,15],[345,1,1,15,16],[346,1,1,16,17],[348,1,1,17,18],[359,1,1,18,19],[362,1,1,19,20]]],[13,3,3,20,23,[[376,1,1,20,21],[386,1,1,21,22],[392,1,1,22,23]]],[15,1,1,23,24,[[418,1,1,23,24]]],[23,1,1,24,25,[[764,1,1,24,25]]]],[348,1041,1059,1465,4066,4366,6166,6689,6695,6987,8125,9153,9406,10436,10566,10587,10646,10685,10973,11055,11397,11622,11733,12411,19423]]],["whose",[1,1,[[2,1,1,0,1,[[113,1,1,0,1]]]],[3456]]]]},{"k":"H1932","v":[["*",[16,16,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,15,15,1,16,[[851,5,5,1,6],[852,1,1,6,7],[853,2,2,7,9],[854,1,1,9,10],[855,4,4,10,14],[856,2,2,14,16]]]],[12142,21779,21780,21790,21796,21802,21822,21859,21861,21887,21909,21915,21921,21931,21940,21957]]],["He",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21780]]],["It",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21859]]],["This",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21790]]],["he",[6,6,[[26,6,6,0,6,[[851,1,1,0,1],[855,4,4,1,5],[856,1,1,5,6]]]],[21779,21909,21915,21921,21931,21957]]],["it",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[856,1,1,1,2]]]],[21802,21940]]],["that",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[854,1,1,1,2]]]],[21822,21887]]],["this",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21796,21861]]],["which",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12142]]]]},{"k":"H1933","v":[["*",[6,6,[[0,1,1,0,1,[[26,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]],[17,1,1,2,3,[[472,1,1,2,3]]],[20,2,2,3,5,[[660,1,1,3,4],[669,1,1,4,5]]],[22,1,1,5,6,[[694,1,1,5,6]]]],[756,12407,13775,17355,17516,17973]]],["Be",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13775]]],["be",[3,3,[[0,1,1,0,1,[[26,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]],[22,1,1,2,3,[[694,1,1,2,3]]]],[756,12407,17973]]],["hath",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17355]]],["it",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17516]]]]},{"k":"H1934","v":[["*",[70,54,[[14,16,15,0,15,[[406,5,5,0,5],[407,3,3,5,8],[408,4,4,8,12],[409,4,3,12,15]]],[26,54,39,15,54,[[851,15,11,15,26],[852,1,1,26,27],[853,6,6,27,33],[854,11,3,33,36],[855,8,7,36,43],[856,13,11,43,54]]]],[12122,12123,12130,12132,12134,12139,12142,12145,12157,12159,12160,12161,12196,12198,12199,21778,21786,21787,21789,21792,21793,21798,21799,21800,21801,21803,21825,21841,21847,21850,21862,21864,21866,21891,21893,21903,21906,21907,21908,21909,21915,21919,21931,21935,21937,21939,21940,21941,21942,21944,21946,21952,21954,21956]]],["+",[30,20,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,29,19,1,20,[[851,2,2,1,3],[853,3,3,3,6],[854,9,1,6,7],[855,4,4,7,11],[856,11,9,11,20]]]],[12132,21789,21792,21847,21850,21866,21893,21909,21915,21919,21931,21935,21937,21939,21940,21941,21942,21944,21946,21954]]],["Be",[3,3,[[14,3,3,0,3,[[406,2,2,0,2],[407,1,1,2,3]]]],[12122,12123,12142]]],["So",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12134]]],["be",[17,16,[[14,4,4,0,4,[[408,3,3,0,3],[409,1,1,3,4]]],[26,13,12,4,16,[[851,6,5,4,9],[852,1,1,9,10],[853,2,2,10,12],[854,2,2,12,14],[855,1,1,14,15],[856,1,1,15,16]]]],[12157,12159,12160,12196,21778,21786,21798,21799,21800,21825,21862,21864,21891,21903,21906,21956]]],["became",[2,1,[[26,2,1,0,1,[[851,2,1,0,1]]]],[21793]]],["been",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12130]]],["have",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21907]]],["let",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12199]]],["may",[2,2,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]]],[12161,12198]]],["might",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21907]]],["pass",[3,2,[[26,3,2,0,2,[[851,3,2,0,2]]]],[21787,21803]]],["shall",[2,1,[[26,2,1,0,1,[[851,2,1,0,1]]]],[21801]]],["was",[5,5,[[14,2,2,0,2,[[407,2,2,0,2]]],[26,3,3,2,5,[[853,1,1,2,3],[855,1,1,3,4],[856,1,1,4,5]]]],[12139,12145,21841,21908,21952]]],["will",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12199]]]]},{"k":"H1935","v":[["*",[24,24,[[3,1,1,0,1,[[143,1,1,0,1]]],[12,3,3,1,4,[[353,1,1,1,2],[366,2,2,2,4]]],[17,3,3,4,7,[[472,1,1,4,5],[474,1,1,5,6],[475,1,1,6,7]]],[18,8,8,7,15,[[485,1,1,7,8],[498,1,1,8,9],[522,1,1,9,10],[573,1,1,10,11],[581,1,1,11,12],[588,1,1,12,13],[622,1,1,13,14],[625,1,1,14,15]]],[19,1,1,15,16,[[632,1,1,15,16]]],[22,1,1,16,17,[[708,1,1,16,17]]],[23,1,1,17,18,[[766,1,1,17,18]]],[26,2,2,18,20,[[859,1,1,18,19],[860,1,1,19,20]]],[27,1,1,20,21,[[875,1,1,20,21]]],[34,1,1,21,22,[[905,1,1,21,22]]],[37,2,2,22,24,[[916,1,1,22,23],[920,1,1,23,24]]]],[4574,10847,11175,11189,13791,13854,13874,14013,14196,14600,15471,15572,15796,16325,16384,16526,18247,19472,22023,22057,22288,22771,22960,23019]]],["+",[1,1,[[3,1,1,0,1,[[143,1,1,0,1]]]],[4574]]],["Glory",[1,1,[[12,1,1,0,1,[[353,1,1,0,1]]]],[10847]]],["Honour",[1,1,[[18,1,1,0,1,[[573,1,1,0,1]]]],[15471]]],["beauty",[1,1,[[27,1,1,0,1,[[875,1,1,0,1]]]],[22288]]],["comeliness",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22023]]],["glorious",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18247]]],["glory",[8,8,[[17,2,2,0,2,[[474,1,1,0,1],[475,1,1,1,2]]],[18,3,3,2,5,[[485,1,1,2,3],[522,1,1,3,4],[625,1,1,4,5]]],[23,1,1,5,6,[[766,1,1,5,6]]],[34,1,1,6,7,[[905,1,1,6,7]]],[37,1,1,7,8,[[916,1,1,7,8]]]],[13854,13874,14013,14600,16384,19472,22771,22960]]],["goodly",[1,1,[[37,1,1,0,1,[[920,1,1,0,1]]]],[23019]]],["honour",[4,4,[[18,2,2,0,2,[[498,1,1,0,1],[581,1,1,1,2]]],[19,1,1,2,3,[[632,1,1,2,3]]],[26,1,1,3,4,[[860,1,1,3,4]]]],[14196,15572,16526,22057]]],["honourable",[1,1,[[18,1,1,0,1,[[588,1,1,0,1]]]],[15796]]],["majesty",[4,4,[[12,2,2,0,2,[[366,2,2,0,2]]],[17,1,1,2,3,[[472,1,1,2,3]]],[18,1,1,3,4,[[622,1,1,3,4]]]],[11175,11189,13791,16325]]]]},{"k":"H1936","v":[["Hod",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10572]]]]},{"k":"H1937","v":[["Hodevah",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12463]]]]},{"k":"H1938","v":[["Hodaviah",[3,3,[[12,2,2,0,2,[[342,1,1,0,1],[346,1,1,1,2]]],[14,1,1,2,3,[[404,1,1,2,3]]]],[10452,10622,12067]]]]},{"k":"H1939","v":[["Hodaiah",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10385]]]]},{"k":"H1940","v":[["Hodiah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10404]]]]},{"k":"H1941","v":[["Hodijah",[5,5,[[15,5,5,0,5,[[420,1,1,0,1],[421,1,1,1,2],[422,3,3,2,5]]]],[12500,12516,12559,12562,12567]]]]},{"k":"H1942","v":[["*",[16,16,[[17,3,3,0,3,[[441,2,2,0,2],[465,1,1,2,3]]],[18,8,8,3,11,[[482,1,1,3,4],[515,1,1,4,5],[529,2,2,5,7],[532,1,1,7,8],[534,1,1,8,9],[568,1,1,9,10],[571,1,1,10,11]]],[19,4,4,11,15,[[637,1,1,11,12],[638,1,1,12,13],[644,1,1,13,14],[646,1,1,14,15]]],[32,1,1,15,16,[[899,1,1,15,16]]]],[12980,13008,13570,13982,14502,14712,14717,14743,14769,15398,15451,16659,16694,16877,16938,22667]]],["+",[1,1,[[18,1,1,0,1,[[568,1,1,0,1]]]],[15398]]],["Wickedness",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14743]]],["calamities",[1,1,[[18,1,1,0,1,[[534,1,1,0,1]]]],[14769]]],["calamity",[3,3,[[17,2,2,0,2,[[441,1,1,0,1],[465,1,1,1,2]]],[19,1,1,2,3,[[646,1,1,2,3]]]],[12980,13570,16938]]],["iniquity",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15451]]],["mischiefs",[1,1,[[18,1,1,0,1,[[529,1,1,0,1]]]],[14712]]],["mischievous",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22667]]],["naughtiness",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16694]]],["naughty",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16877]]],["substance",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16659]]],["things",[2,2,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,1,1,1,2,[[515,1,1,1,2]]]],[13008,14502]]],["wickedness",[2,2,[[18,2,2,0,2,[[482,1,1,0,1],[529,1,1,1,2]]]],[13982,14717]]]]},{"k":"H1943","v":[["*",[3,2,[[22,1,1,0,1,[[725,1,1,0,1]]],[25,2,1,1,2,[[808,2,1,1,2]]]],[18610,20603]]],["Mischief",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20603]]],["mischief",[2,2,[[22,1,1,0,1,[[725,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]]],[18610,20603]]]]},{"k":"H1944","v":[["Hoham",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6067]]]]},{"k":"H1945","v":[["*",[50,46,[[10,1,1,0,1,[[303,1,1,0,1]]],[22,20,20,1,21,[[679,2,2,1,3],[683,6,6,3,9],[688,1,1,9,10],[695,1,1,10,11],[696,1,1,11,12],[706,1,1,12,13],[707,2,2,13,15],[708,1,1,15,16],[709,1,1,16,17],[711,1,1,17,18],[723,2,2,18,20],[733,1,1,20,21]]],[23,11,8,21,29,[[766,5,2,21,23],[767,1,1,23,24],[774,1,1,24,25],[778,1,1,25,26],[791,1,1,26,27],[792,1,1,27,28],[794,1,1,28,29]]],[25,3,3,29,32,[[814,2,2,29,31],[835,1,1,31,32]]],[29,2,2,32,34,[[883,1,1,32,33],[884,1,1,33,34]]],[32,1,1,34,35,[[894,1,1,34,35]]],[33,1,1,35,36,[[902,1,1,35,36]]],[34,5,5,36,41,[[904,5,5,36,41]]],[35,2,2,41,43,[[907,1,1,41,42],[908,1,1,42,43]]],[37,4,3,43,46,[[912,3,2,43,45],[921,1,1,45,46]]]],[9214,17658,17678,17747,17750,17757,17759,17760,17761,17851,17995,17998,18165,18194,18208,18218,18251,18280,18570,18571,18741,19467,19472,19485,19674,19806,20079,20081,20193,20711,20726,21315,22441,22451,22596,22713,22754,22757,22760,22763,22767,22810,22821,22905,22906,23045]]],["Ah",[7,4,[[22,2,2,0,2,[[679,2,2,0,2]]],[23,5,2,2,4,[[766,4,1,2,3],[778,1,1,3,4]]]],[17658,17678,19472,19806]]],["Alas",[2,2,[[10,1,1,0,1,[[303,1,1,0,1]]],[23,1,1,1,2,[[774,1,1,1,2]]]],[9214,19674]]],["Ho",[2,2,[[22,1,1,0,1,[[733,1,1,0,1]]],[37,1,1,1,2,[[912,1,1,1,2]]]],[18741,22905]]],["O",[2,2,[[23,1,1,0,1,[[791,1,1,0,1]]],[37,1,1,1,2,[[912,1,1,1,2]]]],[20079,22906]]],["Woe",[35,35,[[22,17,17,0,17,[[683,6,6,0,6],[688,1,1,6,7],[695,1,1,7,8],[696,1,1,8,9],[706,1,1,9,10],[707,2,2,10,12],[708,1,1,12,13],[709,1,1,13,14],[711,1,1,14,15],[723,2,2,15,17]]],[23,3,3,17,20,[[766,1,1,17,18],[767,1,1,18,19],[792,1,1,19,20]]],[25,3,3,20,23,[[814,2,2,20,22],[835,1,1,22,23]]],[29,2,2,23,25,[[883,1,1,23,24],[884,1,1,24,25]]],[32,1,1,25,26,[[894,1,1,25,26]]],[33,1,1,26,27,[[902,1,1,26,27]]],[34,5,5,27,32,[[904,5,5,27,32]]],[35,2,2,32,34,[[907,1,1,32,33],[908,1,1,33,34]]],[37,1,1,34,35,[[921,1,1,34,35]]]],[17747,17750,17757,17759,17760,17761,17851,17995,17998,18165,18194,18208,18218,18251,18280,18570,18571,19467,19485,20081,20711,20726,21315,22441,22451,22596,22713,22754,22757,22760,22763,22767,22810,22821,23045]]],["ho",[1,1,[[37,1,1,0,1,[[912,1,1,0,1]]]],[22905]]],["woe",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20193]]]]},{"k":"H1946","v":[["*",[4,3,[[14,4,3,0,3,[[407,1,1,0,1],[408,1,1,1,2],[409,2,1,2,3]]]],[12139,12156,12186]]],["again",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12156]]],["came",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12139]]],["go",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12186]]],["up",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12186]]]]},{"k":"H1947","v":[["madness",[4,4,[[20,4,4,0,4,[[659,1,1,0,1],[660,1,1,1,2],[665,1,1,2,3],[667,1,1,3,4]]]],[17332,17345,17454,17478]]]]},{"k":"H1948","v":[["madness",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17506]]]]},{"k":"H1949","v":[["*",[6,6,[[4,1,1,0,1,[[159,1,1,0,1]]],[7,1,1,1,2,[[232,1,1,1,2]]],[8,1,1,2,3,[[239,1,1,2,3]]],[10,1,1,3,4,[[291,1,1,3,4]]],[18,1,1,4,5,[[532,1,1,4,5]]],[32,1,1,5,6,[[894,1,1,5,6]]]],[5134,7146,7302,8762,14734,22607]]],["destroy",[1,1,[[4,1,1,0,1,[[159,1,1,0,1]]]],[5134]]],["moved",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7146]]],["noise",[2,2,[[18,1,1,0,1,[[532,1,1,0,1]]],[32,1,1,1,2,[[894,1,1,1,2]]]],[14734,22607]]],["rang",[2,2,[[8,1,1,0,1,[[239,1,1,0,1]]],[10,1,1,1,2,[[291,1,1,1,2]]]],[7302,8762]]]]},{"k":"H1950","v":[["Homam",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10291]]]]},{"k":"H1951","v":[["ready",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4933]]]]},{"k":"H1952","v":[["*",[26,26,[[18,3,3,0,3,[[521,1,1,0,1],[589,1,1,1,2],[596,1,1,2,3]]],[19,18,18,3,21,[[628,1,1,3,4],[630,1,1,4,5],[633,1,1,5,6],[635,1,1,6,7],[637,1,1,7,8],[638,1,1,8,9],[639,1,1,9,10],[640,2,2,10,12],[645,1,1,12,13],[646,2,2,13,15],[651,1,1,15,16],[655,2,2,16,18],[656,1,1,18,19],[657,2,2,19,21]]],[21,1,1,21,22,[[678,1,1,21,22]]],[25,4,4,22,26,[[828,4,4,22,26]]]],[14583,15806,15912,16413,16464,16571,16620,16671,16692,16746,16754,16758,16912,16929,16939,17083,17204,17218,17227,17266,17267,17647,21133,21139,21148,21154]]],["+",[2,2,[[18,1,1,0,1,[[521,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]]],[14583,16464]]],["Riches",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16692]]],["Wealth",[3,3,[[18,1,1,0,1,[[589,1,1,0,1]]],[19,2,2,1,3,[[640,1,1,1,2],[646,1,1,2,3]]]],[15806,16758,16929]]],["enough",[2,2,[[19,2,2,0,2,[[657,2,2,0,2]]]],[17266,17267]]],["rich",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17218]]],["riches",[9,9,[[18,1,1,0,1,[[596,1,1,0,1]]],[19,4,4,1,5,[[635,1,1,1,2],[640,1,1,2,3],[646,1,1,3,4],[651,1,1,4,5]]],[25,4,4,5,9,[[828,4,4,5,9]]]],[15912,16620,16754,16939,17083,21133,21139,21148,21154]]],["substance",[6,6,[[19,5,5,0,5,[[628,1,1,0,1],[633,1,1,1,2],[639,1,1,2,3],[655,1,1,3,4],[656,1,1,4,5]]],[21,1,1,5,6,[[678,1,1,5,6]]]],[16413,16571,16746,17204,17227,17647]]],["wealth",[2,2,[[19,2,2,0,2,[[637,1,1,0,1],[645,1,1,1,2]]]],[16671,16912]]]]},{"k":"H1953","v":[["Hoshama",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10379]]]]},{"k":"H1954","v":[["*",[16,15,[[3,2,2,0,2,[[129,2,2,0,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[11,8,8,3,11,[[327,1,1,3,4],[329,4,4,4,8],[330,3,3,8,11]]],[12,1,1,11,12,[[364,1,1,11,12]]],[15,1,1,12,13,[[422,1,1,12,13]]],[27,3,2,13,15,[[862,3,2,13,15]]]],[4083,4091,5802,9955,9984,9986,9987,9989,10025,10033,10034,11129,12572,22095,22096]]],["Hosea",[3,2,[[27,3,2,0,2,[[862,3,2,0,2]]]],[22095,22096]]],["Hoshea",[11,11,[[4,1,1,0,1,[[184,1,1,0,1]]],[11,8,8,1,9,[[327,1,1,1,2],[329,4,4,2,6],[330,3,3,6,9]]],[12,1,1,9,10,[[364,1,1,9,10]]],[15,1,1,10,11,[[422,1,1,10,11]]]],[5802,9955,9984,9986,9987,9989,10025,10033,10034,11129,12572]]],["Oshea",[2,2,[[3,2,2,0,2,[[129,2,2,0,2]]]],[4083,4091]]]]},{"k":"H1955","v":[["Hoshaiah",[3,3,[[15,1,1,0,1,[[424,1,1,0,1]]],[23,2,2,1,3,[[786,1,1,1,2],[787,1,1,2,3]]]],[12656,19976,19999]]]]},{"k":"H1956","v":[["Hothir",[2,2,[[12,2,2,0,2,[[362,2,2,0,2]]]],[11050,11074]]]]},{"k":"H1957","v":[["sleeping",[1,1,[[22,1,1,0,1,[[734,1,1,0,1]]]],[18763]]]]},{"k":"H1958","v":[["woe",[1,1,[[25,1,1,0,1,[[803,1,1,0,1]]]],[20502]]]]},{"k":"H1959","v":[["*",[7,5,[[22,2,2,0,2,[[694,2,2,0,2]]],[23,5,3,2,5,[[769,1,1,2,3],[792,3,1,3,4],[795,1,1,4,5]]]],[17978,17979,19564,20113,20226]]],["shout",[2,2,[[23,2,2,0,2,[[769,1,1,0,1],[795,1,1,1,2]]]],[19564,20226]]],["shouting",[5,3,[[22,2,2,0,2,[[694,2,2,0,2]]],[23,3,1,2,3,[[792,3,1,2,3]]]],[17978,17979,20113]]]]},{"k":"H1960","v":[["thanksgiving",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12632]]]]},{"k":"H1961","v":[["*",[3500,3093,[[0,308,277,0,277,[[0,21,17,0,17],[1,6,6,17,23],[2,4,4,23,27],[3,11,8,27,35],[4,11,11,35,46],[5,6,6,46,52],[6,5,4,52,56],[7,3,3,56,59],[8,12,12,59,71],[9,5,5,71,76],[10,6,5,76,81],[11,6,6,81,87],[12,5,5,87,92],[13,1,1,92,93],[14,5,4,93,97],[15,1,1,97,98],[16,10,8,98,106],[17,5,4,106,110],[18,5,5,110,115],[19,2,2,115,117],[20,4,3,117,120],[21,2,2,120,122],[22,1,1,122,123],[23,10,10,123,133],[24,4,4,133,137],[25,10,8,137,145],[26,8,7,145,152],[27,5,5,152,157],[28,6,6,157,163],[29,8,8,163,171],[30,8,7,171,178],[31,2,2,178,180],[32,1,1,180,181],[33,7,6,181,187],[34,10,9,187,196],[35,6,6,196,202],[36,4,4,202,206],[37,12,11,206,217],[38,17,13,217,230],[39,4,4,230,234],[40,13,10,234,244],[41,5,5,244,249],[42,2,2,249,251],[43,6,5,251,256],[44,1,1,256,257],[45,4,4,257,261],[46,8,7,261,268],[47,6,5,268,273],[48,3,3,273,276],[49,1,1,276,277]]],[1,232,200,277,477,[[50,4,3,277,280],[51,4,4,280,284],[52,6,4,284,288],[53,11,8,288,296],[54,1,1,296,297],[55,2,2,297,299],[56,7,6,299,305],[57,7,6,305,311],[58,13,10,311,321],[59,9,8,321,329],[60,2,1,329,330],[61,16,14,330,344],[62,9,8,344,352],[63,2,2,352,354],[64,1,1,354,355],[65,9,7,355,362],[66,2,2,362,364],[67,6,5,364,369],[68,7,6,369,375],[69,2,2,375,377],[70,5,5,377,382],[71,7,7,382,389],[72,6,6,389,395],[73,2,2,395,397],[74,6,5,397,402],[75,9,6,402,408],[76,4,4,408,412],[77,18,13,412,425],[78,7,6,425,431],[79,12,12,431,443],[81,4,4,443,447],[82,4,4,447,451],[83,5,5,451,456],[84,1,1,456,457],[85,6,5,457,462],[86,5,5,462,467],[87,3,3,467,470],[88,2,2,470,472],[89,6,5,472,477]]],[2,143,126,477,603,[[91,2,2,477,479],[94,2,2,479,481],[95,2,2,481,483],[96,8,8,483,491],[97,1,1,491,492],[98,1,1,492,493],[99,1,1,493,494],[100,6,5,494,499],[102,15,13,499,512],[103,3,3,512,515],[104,11,8,515,523],[105,4,4,523,527],[106,1,1,527,528],[108,7,6,528,534],[109,6,5,534,539],[110,6,5,539,544],[111,7,6,544,550],[112,9,9,550,559],[113,5,4,559,563],[114,22,20,563,583],[115,7,6,583,589],[116,17,14,589,603]]],[3,178,157,603,760,[[117,5,5,603,608],[119,6,6,608,614],[120,6,6,614,620],[121,7,5,620,625],[122,1,1,625,626],[123,3,3,626,629],[124,3,3,629,632],[125,9,8,632,640],[126,8,7,640,647],[127,4,4,647,651],[128,2,2,651,653],[129,2,1,653,654],[130,5,5,654,659],[131,9,9,659,668],[132,7,7,668,675],[133,2,2,675,677],[134,9,8,677,685],[135,5,5,685,690],[136,1,1,690,691],[137,2,2,691,693],[138,1,1,693,694],[139,1,1,694,695],[140,4,3,695,698],[141,2,2,698,700],[142,9,9,700,709],[143,4,3,709,712],[144,5,5,712,717],[145,7,6,717,723],[146,2,1,723,724],[147,8,7,724,731],[148,4,3,731,734],[149,4,4,734,738],[150,12,8,738,746],[151,9,8,746,754],[152,10,6,754,760]]],[4,169,154,760,914,[[153,2,2,760,762],[154,3,3,762,765],[155,1,1,765,766],[156,3,2,766,768],[157,4,4,768,772],[158,5,5,772,777],[159,5,4,777,781],[160,1,1,781,782],[161,3,3,782,785],[162,4,4,785,789],[163,6,5,789,794],[164,2,2,794,796],[165,2,2,796,798],[166,1,1,798,799],[167,9,8,799,807],[168,2,2,807,809],[169,5,5,809,814],[170,6,6,814,820],[171,4,4,820,824],[172,6,4,824,828],[173,10,8,828,836],[174,6,6,836,842],[175,11,9,842,851],[176,11,11,851,862],[177,9,8,862,870],[178,6,6,870,876],[179,3,3,876,879],[180,21,18,879,897],[181,3,2,897,899],[182,2,2,899,901],[183,8,8,901,909],[184,1,1,909,910],[185,4,4,910,914]]],[5,141,122,914,1036,[[187,6,4,914,918],[188,6,4,918,922],[189,6,5,922,927],[190,6,6,927,933],[191,8,6,933,939],[192,8,7,939,946],[193,5,4,946,950],[194,9,9,950,959],[195,5,5,959,964],[196,8,7,964,971],[197,4,3,971,974],[199,5,5,974,979],[200,3,3,979,982],[201,7,6,982,988],[202,4,3,988,991],[203,14,12,991,1003],[204,5,4,1003,1007],[205,12,11,1007,1018],[206,3,3,1018,1021],[207,6,5,1021,1026],[208,4,4,1026,1030],[209,3,3,1030,1033],[210,4,3,1033,1036]]],[6,119,105,1036,1141,[[211,7,7,1036,1043],[212,6,5,1043,1048],[213,4,4,1048,1052],[214,2,2,1052,1054],[216,11,9,1054,1063],[217,7,7,1063,1070],[218,6,5,1070,1075],[219,3,3,1075,1078],[220,2,2,1078,1080],[221,14,11,1080,1091],[222,4,4,1091,1095],[223,5,5,1095,1100],[224,6,4,1100,1104],[225,4,4,1104,1108],[226,8,8,1108,1116],[227,9,8,1116,1124],[228,7,5,1124,1129],[229,6,4,1129,1133],[230,4,4,1133,1137],[231,4,4,1137,1141]]],[7,21,19,1141,1160,[[232,9,7,1141,1148],[233,4,4,1148,1152],[234,4,4,1152,1156],[235,4,4,1156,1160]]],[8,163,142,1160,1302,[[236,7,7,1160,1167],[237,6,6,1167,1173],[238,4,4,1173,1177],[239,8,7,1177,1184],[240,4,3,1184,1187],[241,2,2,1187,1189],[242,5,4,1189,1193],[243,6,6,1193,1199],[244,3,3,1199,1202],[245,6,5,1202,1207],[246,4,3,1207,1210],[247,2,2,1210,1212],[248,5,4,1212,1216],[249,15,12,1216,1228],[250,2,2,1228,1230],[251,6,4,1230,1234],[252,8,7,1234,1241],[253,13,10,1241,1251],[254,5,5,1251,1256],[255,6,5,1256,1261],[256,2,2,1261,1263],[257,3,2,1263,1265],[258,6,5,1265,1270],[259,6,6,1270,1276],[260,16,13,1276,1289],[262,3,3,1289,1292],[263,4,4,1292,1296],[264,3,3,1296,1299],[265,2,2,1299,1301],[266,1,1,1301,1302]]],[9,151,131,1302,1433,[[267,4,3,1302,1305],[268,10,9,1305,1314],[269,7,5,1314,1319],[270,5,4,1319,1323],[271,4,2,1323,1325],[272,4,4,1325,1329],[273,13,11,1329,1340],[274,8,7,1340,1347],[275,2,2,1347,1349],[276,4,4,1349,1353],[277,7,7,1353,1360],[278,8,6,1360,1366],[279,11,10,1366,1376],[280,7,5,1376,1381],[281,15,13,1381,1394],[282,3,3,1394,1397],[283,5,4,1397,1401],[284,6,6,1401,1407],[285,10,10,1407,1417],[286,2,2,1417,1419],[287,7,5,1419,1424],[288,2,2,1424,1426],[289,2,2,1426,1428],[290,5,5,1428,1433]]],[10,189,163,1433,1596,[[291,8,6,1433,1439],[292,11,8,1439,1447],[293,5,5,1447,1452],[294,7,7,1452,1459],[295,7,7,1459,1466],[296,3,3,1466,1469],[297,1,1,1469,1470],[298,20,14,1470,1484],[299,6,6,1484,1490],[300,7,7,1490,1497],[301,16,13,1497,1510],[302,11,9,1510,1519],[303,11,9,1519,1528],[304,9,9,1528,1537],[305,8,8,1537,1545],[306,8,7,1545,1552],[307,8,6,1552,1558],[308,17,14,1558,1572],[309,2,2,1572,1574],[310,9,8,1574,1582],[311,9,8,1582,1590],[312,6,6,1590,1596]]],[11,113,102,1596,1698,[[313,1,1,1596,1597],[314,7,5,1597,1602],[315,7,6,1602,1608],[316,10,9,1608,1617],[317,5,4,1617,1621],[318,7,6,1621,1627],[319,7,6,1627,1633],[320,5,5,1633,1638],[321,3,3,1638,1641],[322,3,3,1641,1644],[323,3,3,1644,1647],[324,3,3,1647,1650],[325,1,1,1650,1651],[326,2,2,1651,1653],[327,5,5,1653,1658],[328,1,1,1658,1659],[329,8,7,1659,1666],[330,7,6,1666,1672],[331,5,5,1672,1677],[332,6,5,1677,1682],[333,2,2,1682,1684],[334,3,3,1684,1687],[335,2,2,1687,1689],[336,4,4,1689,1693],[337,6,5,1693,1698]]],[12,104,94,1698,1792,[[338,2,2,1698,1700],[339,10,10,1700,1710],[340,1,1,1710,1711],[341,4,4,1711,1715],[343,3,3,1715,1718],[344,3,3,1718,1721],[345,2,2,1721,1723],[346,3,3,1723,1726],[347,1,1,1726,1727],[348,8,5,1727,1732],[349,3,3,1732,1735],[351,2,2,1735,1737],[352,3,3,1737,1740],[353,1,1,1740,1741],[354,14,10,1741,1751],[355,7,7,1751,1758],[356,4,4,1758,1762],[357,6,5,1762,1767],[358,3,3,1767,1770],[359,8,7,1770,1777],[360,5,4,1777,1781],[361,3,3,1781,1784],[362,2,2,1784,1786],[363,1,1,1786,1787],[364,1,1,1787,1788],[365,3,3,1788,1791],[366,1,1,1791,1792]]],[13,133,119,1792,1911,[[367,5,4,1792,1796],[371,4,4,1796,1800],[372,14,9,1800,1809],[373,5,4,1809,1813],[374,2,2,1813,1815],[375,7,7,1815,1822],[376,6,4,1822,1826],[377,3,3,1826,1829],[378,6,6,1829,1835],[379,5,5,1835,1840],[380,3,2,1840,1842],[381,4,4,1842,1846],[382,2,2,1846,1848],[383,5,5,1848,1853],[384,7,6,1853,1859],[385,3,3,1859,1862],[386,4,4,1862,1866],[387,4,4,1866,1870],[388,6,6,1870,1876],[389,2,2,1876,1878],[390,7,6,1878,1884],[391,3,3,1884,1887],[392,6,5,1887,1892],[393,1,1,1892,1893],[394,2,2,1893,1895],[395,5,5,1895,1900],[396,5,4,1900,1904],[398,3,3,1904,1907],[399,1,1,1907,1908],[400,1,1,1908,1909],[402,2,2,1909,1911]]],[14,4,4,1911,1915,[[403,1,1,1911,1912],[410,1,1,1912,1913],[411,2,2,1913,1915]]],[15,48,41,1915,1956,[[413,8,5,1915,1920],[414,8,6,1920,1926],[415,1,1,1926,1927],[416,8,8,1927,1935],[417,4,4,1935,1939],[418,7,6,1939,1945],[419,1,1,1945,1946],[420,2,2,1946,1948],[422,1,1,1948,1949],[424,1,1,1949,1950],[425,7,6,1950,1956]]],[16,16,16,1956,1972,[[426,2,2,1956,1958],[427,6,6,1958,1964],[428,2,2,1964,1966],[430,2,2,1966,1968],[431,1,1,1968,1969],[433,2,2,1969,1971],[434,1,1,1971,1972]]],[17,49,45,1972,2017,[[436,9,7,1972,1979],[437,1,1,1979,1980],[438,3,3,1980,1983],[440,1,1,1983,1984],[441,3,3,1984,1987],[443,1,1,1987,1988],[445,2,1,1988,1989],[446,3,3,1989,1992],[447,1,1,1992,1993],[448,1,1,1993,1994],[450,1,1,1994,1995],[451,3,3,1995,1998],[452,1,1,1998,1999],[453,1,1,1999,2000],[454,1,1,2000,2001],[455,1,1,2001,2002],[456,2,2,2002,2004],[457,1,1,2004,2005],[459,2,2,2005,2007],[462,1,1,2007,2008],[464,2,2,2008,2010],[465,4,3,2010,2013],[473,1,1,2013,2014],[477,3,3,2014,2017]]],[18,102,99,2017,2116,[[478,1,1,2017,2018],[486,1,1,2018,2019],[487,1,1,2019,2020],[495,2,2,2020,2022],[496,1,1,2022,2023],[499,1,1,2023,2024],[504,1,1,2024,2025],[507,2,2,2025,2027],[508,3,3,2027,2030],[509,1,1,2030,2031],[510,2,2,2031,2033],[512,2,2,2033,2035],[514,2,2,2035,2037],[515,1,1,2037,2038],[519,1,1,2038,2039],[522,1,1,2039,2040],[527,2,1,2040,2041],[530,1,1,2041,2042],[532,1,1,2042,2043],[536,1,1,2043,2044],[538,1,1,2044,2045],[540,2,2,2045,2047],[541,1,1,2047,2048],[546,6,5,2048,2053],[548,2,2,2053,2055],[549,2,2,2055,2057],[550,3,3,2057,2060],[553,1,1,2060,2061],[555,1,1,2061,2062],[556,1,1,2062,2063],[557,1,1,2063,2064],[558,2,2,2064,2066],[560,2,2,2066,2068],[565,1,1,2068,2069],[566,2,2,2069,2071],[567,3,3,2071,2074],[569,1,1,2074,2075],[571,1,1,2075,2076],[576,1,1,2076,2077],[579,2,2,2077,2079],[581,2,2,2079,2081],[582,1,1,2081,2082],[583,1,1,2082,2083],[586,9,8,2083,2091],[589,2,2,2091,2093],[590,1,1,2093,2094],[591,1,1,2094,2095],[592,1,1,2095,2096],[595,4,4,2096,2100],[596,6,6,2100,2106],[599,2,2,2106,2108],[601,2,2,2108,2110],[603,2,2,2110,2112],[606,1,1,2112,2113],[607,1,1,2113,2114],[612,1,1,2114,2115],[616,1,1,2115,2116]]],[19,28,27,2116,2143,[[628,1,1,2116,2117],[630,5,5,2117,2122],[631,1,1,2122,2123],[632,3,3,2123,2126],[635,2,1,2126,2127],[639,2,2,2127,2129],[640,1,1,2129,2130],[641,3,3,2130,2133],[649,2,2,2133,2135],[650,2,2,2135,2137],[651,3,3,2137,2140],[653,1,1,2140,2141],[656,1,1,2141,2142],[658,1,1,2142,2143]]],[20,47,35,2143,2178,[[659,9,5,2143,2148],[660,7,5,2148,2153],[661,6,4,2153,2157],[662,2,2,2157,2159],[663,1,1,2159,2160],[664,4,3,2160,2163],[665,7,6,2163,2169],[666,4,3,2169,2172],[667,1,1,2172,2173],[668,2,1,2173,2174],[669,2,2,2174,2176],[670,2,2,2176,2178]]],[21,4,4,2178,2182,[[671,1,1,2178,2179],[677,1,1,2179,2180],[678,2,2,2180,2182]]],[22,208,186,2182,2368,[[679,8,7,2182,2189],[680,2,1,2189,2190],[681,4,3,2190,2193],[682,3,3,2193,2196],[683,7,6,2196,2202],[684,1,1,2202,2203],[685,11,8,2203,2211],[686,2,2,2211,2213],[687,3,3,2213,2216],[688,9,9,2216,2225],[689,6,4,2225,2229],[690,1,1,2229,2230],[691,2,2,2230,2232],[692,4,4,2232,2236],[693,2,1,2236,2237],[694,3,2,2237,2239],[695,8,6,2239,2245],[696,1,1,2245,2246],[697,9,9,2246,2255],[700,4,4,2255,2259],[701,6,5,2259,2264],[702,4,4,2264,2268],[703,1,1,2268,2269],[704,1,1,2269,2270],[705,2,2,2270,2272],[706,5,5,2272,2277],[707,11,8,2277,2285],[708,12,11,2285,2296],[709,1,1,2296,2297],[710,4,4,2297,2301],[711,4,4,2301,2305],[712,3,3,2305,2308],[713,3,3,2308,2311],[714,1,1,2311,2312],[715,4,4,2312,2316],[716,1,1,2316,2317],[717,4,4,2317,2321],[718,1,1,2321,2322],[719,2,2,2322,2324],[720,1,1,2324,2325],[721,1,1,2325,2326],[722,1,1,2326,2327],[723,1,1,2327,2328],[724,1,1,2328,2329],[725,3,3,2329,2332],[726,3,3,2332,2335],[727,4,3,2335,2338],[728,1,1,2338,2339],[729,2,2,2339,2341],[733,3,3,2341,2344],[734,2,2,2344,2346],[736,2,2,2346,2348],[737,3,3,2348,2351],[738,5,4,2351,2355],[739,1,1,2355,2356],[740,1,1,2356,2357],[741,2,2,2357,2359],[742,5,3,2359,2362],[743,3,3,2362,2365],[744,3,3,2365,2368]]],[23,262,242,2368,2610,[[745,5,5,2368,2373],[746,5,5,2373,2378],[747,4,4,2378,2382],[748,4,4,2382,2386],[749,5,5,2386,2391],[750,1,1,2391,2392],[751,7,6,2392,2398],[752,1,1,2398,2399],[755,5,4,2399,2403],[756,3,3,2403,2406],[757,5,5,2406,2411],[758,8,8,2411,2419],[759,6,4,2419,2423],[760,4,4,2423,2427],[761,8,7,2427,2434],[762,5,4,2434,2438],[763,1,1,2438,2439],[764,7,7,2439,2446],[765,2,2,2446,2448],[766,2,2,2448,2450],[767,6,6,2450,2456],[768,3,2,2456,2458],[769,8,7,2458,2465],[770,7,6,2465,2471],[771,4,4,2471,2475],[772,3,3,2475,2478],[773,4,4,2478,2482],[774,7,6,2482,2488],[775,8,6,2488,2494],[776,10,9,2494,2503],[777,8,8,2503,2511],[778,6,6,2511,2517],[779,5,5,2517,2522],[780,9,7,2522,2529],[781,3,3,2529,2532],[782,2,2,2532,2534],[783,5,4,2534,2538],[784,2,2,2538,2540],[785,7,7,2540,2547],[786,8,6,2547,2553],[787,2,2,2553,2555],[788,8,8,2555,2563],[790,3,3,2563,2566],[791,2,2,2566,2568],[792,9,9,2568,2577],[793,10,9,2577,2586],[794,9,9,2586,2595],[795,9,8,2595,2603],[796,7,7,2603,2610]]],[24,23,22,2610,2632,[[797,11,10,2610,2620],[798,2,2,2620,2622],[799,3,3,2622,2625],[800,4,4,2625,2629],[801,3,3,2629,2632]]],[25,336,282,2632,2914,[[802,9,7,2632,2639],[803,2,2,2639,2641],[804,5,4,2641,2645],[805,1,1,2645,2646],[806,2,2,2646,2648],[807,3,3,2648,2651],[808,7,6,2651,2657],[809,1,1,2657,2658],[810,2,2,2658,2660],[811,2,2,2660,2662],[812,7,5,2662,2667],[813,7,7,2667,2674],[814,7,6,2674,2680],[815,8,7,2680,2687],[816,4,3,2687,2690],[817,14,11,2690,2701],[818,9,7,2701,2708],[819,7,6,2708,2714],[820,6,5,2714,2719],[821,9,7,2719,2726],[822,14,11,2726,2737],[823,9,8,2737,2745],[824,5,5,2745,2750],[825,6,6,2750,2756],[826,1,1,2756,2757],[827,6,4,2757,2761],[828,12,8,2761,2769],[829,7,7,2769,2776],[830,11,10,2776,2786],[831,9,8,2786,2794],[832,6,5,2794,2799],[833,6,4,2799,2803],[834,8,8,2803,2811],[835,15,14,2811,2825],[836,6,5,2825,2830],[837,12,11,2830,2841],[838,16,12,2841,2853],[839,9,9,2853,2862],[840,3,3,2862,2865],[841,2,2,2865,2867],[842,2,1,2867,2868],[844,2,2,2868,2870],[845,13,11,2870,2881],[846,14,12,2881,2893],[847,6,5,2893,2898],[848,10,6,2898,2904],[849,14,10,2904,2914]]],[26,22,18,2914,2932,[[850,2,2,2914,2916],[851,1,1,2916,2917],[857,8,6,2917,2923],[858,1,1,2923,2924],[859,4,4,2924,2928],[860,3,3,2928,2931],[861,3,1,2931,2932]]],[27,27,26,2932,2958,[[862,5,4,2932,2936],[863,2,2,2936,2938],[864,1,1,2938,2939],[865,1,1,2939,2940],[866,3,3,2940,2943],[868,4,4,2943,2947],[869,3,3,2947,2950],[870,2,2,2950,2952],[872,1,1,2952,2953],[873,1,1,2953,2954],[874,2,2,2954,2956],[875,2,2,2956,2958]]],[28,11,9,2958,2967,[[876,2,2,2958,2960],[877,5,4,2960,2964],[878,4,3,2964,2967]]],[29,10,10,2967,2977,[[879,1,1,2967,2968],[881,1,1,2968,2969],[882,1,1,2969,2970],[883,2,2,2970,2972],[884,1,1,2972,2973],[885,3,3,2973,2976],[886,1,1,2976,2977]]],[30,7,4,2977,2981,[[888,7,4,2977,2981]]],[31,10,10,2981,2991,[[889,3,3,2981,2984],[891,2,2,2984,2986],[892,5,5,2986,2991]]],[32,19,17,2991,3008,[[893,2,2,2991,2993],[894,3,3,2993,2996],[895,1,1,2996,2997],[896,2,1,2997,2998],[897,7,6,2998,3004],[899,4,4,3004,3008]]],[33,3,3,3008,3011,[[902,3,3,3008,3011]]],[34,3,3,3011,3014,[[903,1,1,3011,3012],[904,1,1,3012,3013],[905,1,1,3013,3014]]],[35,11,11,3014,3025,[[906,5,5,3014,3019],[907,5,5,3019,3024],[908,1,1,3024,3025]]],[36,9,7,3025,3032,[[909,2,2,3025,3027],[910,7,5,3027,3032]]],[37,66,50,3032,3082,[[911,3,3,3032,3035],[912,4,3,3035,3038],[913,1,1,3038,3039],[914,1,1,3039,3040],[916,5,4,3040,3044],[917,7,6,3044,3050],[918,9,6,3050,3056],[919,1,1,3056,3057],[920,3,3,3057,3060],[922,3,3,3060,3063],[923,5,5,3063,3068],[924,24,14,3068,3082]]],[38,11,11,3082,3093,[[925,1,1,3082,3083],[926,3,3,3083,3086],[927,5,5,3086,3091],[928,2,2,3091,3093]]]],[1,2,4,5,6,7,8,10,12,13,14,18,22,23,28,29,30,35,37,40,48,54,55,56,60,75,77,81,82,87,91,93,96,99,100,109,110,113,116,119,122,125,128,132,136,137,138,140,141,146,156,158,165,169,171,176,188,189,196,207,208,216,218,219,220,221,223,230,231,232,234,242,243,244,253,264,267,268,269,296,298,300,308,309,310,312,314,321,323,324,325,326,337,361,365,373,377,393,398,401,402,404,405,408,410,413,435,436,442,449,471,474,483,486,491,507,508,533,535,543,548,567,572,605,606,613,621,632,634,642,643,651,658,661,669,678,685,693,695,700,706,720,724,726,727,728,739,750,757,760,766,767,776,787,793,794,795,805,808,812,815,818,820,855,859,860,862,864,871,872,873,876,878,881,883,913,915,917,933,938,969,985,990,995,996,1002,1005,1014,1016,1021,1022,1027,1028,1029,1033,1039,1047,1051,1052,1053,1054,1062,1085,1103,1106,1110,1120,1124,1126,1128,1140,1141,1142,1143,1146,1147,1148,1151,1154,1155,1156,1159,1160,1162,1164,1167,1168,1169,1170,1171,1173,1176,1185,1192,1196,1203,1208,1222,1231,1235,1243,1248,1249,1251,1257,1263,1283,1287,1288,1292,1311,1333,1334,1341,1348,1355,1368,1398,1418,1419,1420,1429,1439,1440,1444,1445,1446,1448,1452,1456,1457,1470,1472,1488,1490,1499,1515,1537,1542,1553,1564,1565,1576,1577,1580,1591,1593,1600,1604,1605,1609,1610,1613,1616,1617,1625,1645,1662,1683,1686,1694,1695,1697,1704,1706,1725,1726,1727,1728,1732,1733,1745,1751,1752,1753,1760,1764,1766,1768,1770,1771,1783,1784,1787,1790,1791,1798,1799,1800,1812,1820,1821,1822,1829,1830,1832,1841,1842,1845,1846,1857,1864,1865,1867,1872,1876,1878,1879,1881,1882,1883,1884,1909,1913,1922,1952,1957,1960,1969,1971,1973,1974,1994,1995,2002,2012,2015,2018,2021,2031,2032,2037,2041,2042,2045,2054,2071,2081,2099,2100,2111,2113,2124,2134,2137,2138,2140,2143,2144,2145,2146,2153,2170,2173,2177,2189,2195,2210,2215,2222,2226,2231,2238,2241,2246,2248,2259,2260,2273,2274,2277,2279,2300,2301,2309,2313,2314,2321,2323,2325,2328,2330,2331,2335,2336,2345,2362,2364,2365,2373,2381,2384,2386,2394,2398,2403,2407,2411,2413,2414,2416,2418,2419,2439,2457,2461,2468,2480,2481,2482,2495,2497,2498,2508,2524,2525,2533,2573,2579,2584,2595,2596,2613,2618,2621,2626,2629,2635,2657,2660,2673,2685,2716,2717,2722,2724,2745,2763,2767,2835,2843,2853,2872,2886,2887,2888,2889,2893,2897,2910,2912,2946,2954,2992,3008,3032,3033,3041,3042,3054,3061,3070,3071,3076,3081,3084,3090,3094,3097,3099,3101,3104,3113,3120,3133,3170,3171,3178,3185,3187,3192,3193,3194,3205,3218,3230,3235,3242,3283,3301,3304,3305,3315,3317,3325,3332,3339,3344,3345,3348,3351,3353,3362,3364,3381,3382,3389,3390,3396,3402,3409,3417,3419,3420,3422,3423,3426,3429,3438,3451,3453,3455,3468,3473,3474,3475,3476,3477,3479,3480,3481,3495,3497,3498,3500,3501,3507,3509,3513,3514,3517,3519,3522,3536,3537,3557,3561,3568,3569,3573,3574,3575,3576,3577,3579,3580,3582,3585,3586,3591,3595,3602,3603,3608,3648,3649,3650,3657,3696,3704,3705,3709,3735,3737,3750,3770,3779,3783,3787,3791,3801,3802,3809,3810,3819,3828,3851,3855,3862,3950,3953,3958,3971,3975,3978,3979,3980,3981,3985,3986,3990,3996,3998,3999,4019,4020,4023,4032,4044,4049,4059,4065,4071,4108,4111,4132,4139,4141,4151,4168,4169,4172,4177,4182,4185,4192,4193,4194,4201,4210,4225,4232,4234,4236,4243,4249,4252,4262,4266,4267,4270,4271,4272,4275,4277,4298,4299,4302,4307,4310,4313,4348,4349,4416,4426,4448,4464,4468,4480,4484,4490,4496,4499,4509,4510,4522,4529,4551,4553,4557,4565,4571,4591,4596,4602,4603,4608,4609,4615,4616,4620,4621,4643,4654,4667,4680,4696,4700,4701,4707,4716,4719,4740,4744,4774,4814,4815,4816,4819,4820,4821,4822,4823,4824,4825,4828,4848,4850,4856,4857,4858,4859,4860,4874,4882,4883,4885,4887,4890,4891,4895,4931,4953,4954,4974,4979,5024,5036,5060,5068,5076,5082,5092,5094,5096,5107,5111,5117,5123,5125,5137,5156,5164,5168,5181,5188,5191,5195,5205,5221,5225,5226,5232,5237,5251,5266,5281,5288,5292,5322,5323,5326,5328,5334,5335,5336,5340,5354,5357,5365,5371,5373,5382,5383,5385,5386,5387,5397,5403,5406,5409,5416,5417,5423,5429,5436,5438,5441,5450,5452,5460,5461,5462,5463,5465,5469,5472,5475,5489,5490,5493,5499,5507,5510,5511,5512,5513,5514,5517,5521,5522,5526,5527,5529,5530,5538,5540,5543,5544,5545,5546,5547,5548,5549,5552,5553,5560,5561,5562,5566,5567,5569,5571,5583,5584,5585,5587,5589,5594,5612,5624,5626,5634,5636,5637,5640,5644,5645,5648,5651,5652,5655,5657,5673,5674,5676,5677,5692,5698,5709,5712,5736,5745,5747,5749,5751,5752,5754,5755,5796,5815,5816,5817,5834,5852,5855,5856,5868,5874,5883,5888,5889,5895,5897,5900,5906,5907,5911,5916,5917,5919,5921,5928,5935,5939,5941,5942,5946,5947,5954,5957,5964,5965,5966,5969,5976,5981,5988,5990,5991,6006,6007,6010,6016,6022,6024,6026,6027,6037,6038,6049,6053,6057,6058,6065,6075,6078,6084,6088,6090,6091,6108,6126,6127,6170,6177,6179,6183,6184,6191,6196,6201,6203,6204,6206,6209,6220,6223,6268,6270,6273,6276,6277,6278,6281,6282,6283,6284,6285,6286,6288,6292,6293,6305,6307,6312,6314,6322,6323,6330,6331,6335,6339,6343,6346,6350,6354,6362,6375,6378,6381,6385,6391,6401,6421,6423,6443,6444,6446,6454,6461,6473,6475,6503,6505,6508,6510,6523,6528,6537,6539,6542,6544,6548,6549,6560,6563,6564,6572,6578,6595,6599,6608,6619,6657,6661,6670,6679,6681,6691,6692,6693,6694,6695,6698,6700,6702,6703,6709,6711,6730,6745,6746,6749,6752,6787,6796,6805,6815,6829,6830,6833,6834,6835,6837,6838,6839,6858,6860,6864,6868,6871,6874,6878,6883,6886,6889,6891,6896,6904,6920,6924,6926,6929,6930,6931,6943,6946,6953,6956,6960,6965,6966,6970,6974,6979,6981,6984,6985,6987,6990,6991,6992,6993,6997,7012,7020,7023,7024,7025,7026,7029,7054,7057,7066,7092,7100,7105,7106,7107,7124,7128,7129,7134,7138,7139,7140,7146,7161,7162,7166,7168,7174,7176,7180,7185,7202,7203,7205,7206,7213,7214,7216,7224,7230,7232,7240,7251,7257,7267,7271,7272,7276,7277,7278,7285,7295,7298,7304,7306,7307,7313,7314,7315,7328,7329,7330,7332,7340,7354,7362,7365,7366,7370,7371,7380,7386,7388,7389,7392,7393,7417,7423,7425,7427,7429,7430,7453,7454,7456,7474,7475,7487,7495,7506,7507,7509,7522,7523,7526,7527,7528,7529,7533,7546,7548,7557,7560,7570,7586,7601,7611,7616,7618,7627,7643,7652,7654,7655,7660,7666,7677,7682,7686,7688,7693,7694,7695,7697,7705,7706,7713,7714,7715,7726,7729,7743,7754,7757,7765,7772,7778,7780,7789,7791,7816,7827,7832,7833,7836,7840,7844,7851,7852,7854,7855,7863,7868,7876,7877,7881,7887,7890,7891,7892,7898,7899,7903,7904,7936,7937,7942,7943,7958,7962,7964,7970,7971,7975,7979,8003,8017,8023,8024,8026,8050,8056,8059,8060,8066,8067,8072,8074,8075,8082,8083,8087,8098,8118,8122,8123,8124,8130,8134,8156,8170,8173,8179,8180,8181,8184,8186,8188,8189,8194,8196,8204,8206,8208,8209,8210,8211,8215,8216,8219,8223,8227,8236,8237,8241,8245,8249,8251,8260,8261,8273,8275,8279,8282,8286,8287,8288,8289,8296,8304,8316,8318,8330,8337,8340,8345,8347,8349,8352,8353,8355,8358,8373,8381,8382,8383,8390,8391,8393,8394,8396,8401,8402,8403,8410,8421,8422,8423,8424,8442,8444,8445,8452,8458,8470,8476,8484,8485,8486,8500,8501,8510,8513,8520,8522,8523,8524,8533,8536,8539,8546,8554,8557,8580,8581,8595,8598,8599,8600,8621,8626,8664,8672,8701,8703,8705,8708,8709,8725,8738,8744,8752,8754,8769,8772,8777,8785,8797,8803,8807,8809,8815,8828,8829,8834,8837,8842,8845,8866,8868,8870,8872,8875,8876,8879,8884,8885,8890,8891,8892,8893,8897,8907,8913,8942,8993,8995,9001,9002,9003,9014,9020,9022,9023,9037,9039,9042,9044,9046,9052,9054,9058,9059,9061,9070,9081,9082,9084,9085,9088,9093,9105,9111,9112,9119,9123,9128,9132,9133,9137,9140,9144,9145,9146,9148,9153,9157,9158,9166,9171,9173,9175,9181,9182,9188,9190,9204,9207,9208,9215,9216,9217,9218,9221,9223,9224,9226,9227,9242,9243,9246,9248,9252,9255,9256,9263,9265,9270,9278,9281,9284,9290,9294,9301,9304,9314,9316,9318,9319,9321,9324,9325,9334,9342,9344,9345,9348,9353,9358,9365,9368,9370,9372,9377,9385,9386,9387,9400,9404,9414,9420,9423,9434,9437,9447,9448,9450,9452,9453,9466,9467,9468,9476,9478,9479,9482,9493,9502,9512,9513,9515,9550,9552,9560,9561,9562,9572,9580,9581,9585,9591,9596,9603,9604,9609,9611,9613,9614,9621,9628,9643,9644,9648,9649,9654,9655,9679,9694,9698,9699,9700,9704,9709,9710,9723,9725,9726,9727,9730,9732,9742,9744,9745,9770,9778,9793,9800,9802,9818,9832,9837,9846,9856,9860,9866,9892,9898,9901,9927,9930,9937,9944,9958,9978,9985,9986,9990,10008,10015,10016,10024,10025,10026,10028,10029,10031,10033,10062,10086,10087,10096,10098,10102,10111,10113,10116,10117,10133,10134,10148,10156,10164,10190,10192,10203,10205,10209,10222,10223,10225,10238,10247,10249,10262,10303,10309,10328,10331,10332,10333,10334,10339,10340,10356,10358,10362,10390,10394,10395,10399,10486,10508,10520,10550,10554,10558,10578,10615,10635,10639,10641,10667,10675,10679,10686,10693,10694,10737,10741,10759,10778,10789,10816,10817,10820,10839,10864,10866,10868,10870,10871,10874,10876,10877,10885,10890,10891,10892,10896,10897,10900,10903,10904,10908,10912,10917,10919,10927,10928,10930,10931,10932,10937,10939,10951,10971,10972,10973,10974,10975,10978,10980,10986,10994,11000,11005,11017,11020,11043,11047,11053,11087,11133,11147,11149,11155,11189,11197,11205,11206,11208,11276,11277,11279,11281,11287,11288,11289,11290,11302,11308,11310,11311,11322,11337,11339,11340,11345,11347,11352,11365,11368,11372,11373,11377,11389,11390,11397,11401,11402,11410,11416,11418,11426,11438,11439,11444,11445,11448,11449,11455,11460,11462,11466,11468,11483,11489,11491,11492,11507,11509,11514,11517,11526,11528,11533,11535,11536,11543,11554,11563,11573,11574,11576,11583,11586,11587,11588,11601,11612,11616,11630,11633,11643,11644,11647,11648,11651,11652,11655,11656,11663,11672,11681,11688,11689,11691,11695,11700,11707,11718,11720,11737,11742,11743,11747,11753,11763,11773,11787,11799,11802,11823,11825,11827,11834,11837,11839,11853,11900,11902,11906,11912,11952,12009,12013,12019,12232,12239,12245,12297,12300,12302,12305,12307,12308,12313,12318,12320,12322,12324,12353,12360,12363,12365,12366,12371,12374,12375,12381,12383,12395,12396,12400,12402,12409,12414,12415,12417,12420,12421,12498,12510,12587,12636,12674,12676,12677,12690,12693,12697,12703,12724,12729,12731,12732,12736,12739,12744,12751,12761,12780,12781,12794,12830,12833,12855,12870,12872,12874,12875,12882,12883,12890,12892,12908,12911,12920,12967,12988,12999,13007,13036,13105,13112,13123,13125,13132,13158,13234,13246,13250,13256,13266,13288,13312,13349,13357,13373,13414,13449,13450,13488,13536,13547,13566,13586,13588,13797,13929,13934,13935,13942,14030,14055,14136,14141,14182,14218,14294,14326,14329,14333,14342,14343,14364,14375,14388,14415,14416,14468,14475,14504,14558,14613,14689,14724,14750,14806,14822,14846,14849,14857,14943,14945,14946,14957,14960,14979,14983,15016,15017,15034,15039,15042,15083,15121,15189,15215,15226,15232,15249,15251,15312,15362,15367,15379,15383,15395,15425,15453,15507,15527,15528,15591,15602,15618,15687,15762,15763,15764,15767,15768,15770,15774,15780,15805,15809,15815,15824,15838,15883,15890,15891,15892,15952,15954,15974,15978,15981,16071,16091,16096,16103,16104,16116,16118,16138,16142,16193,16261,16414,16462,16463,16477,16481,16482,16493,16531,16534,16535,16632,16727,16743,16766,16795,16798,16807,17034,17041,17064,17078,17080,17099,17107,17146,17245,17298,17324,17325,17326,17327,17331,17340,17342,17343,17351,17352,17373,17374,17379,17381,17384,17397,17399,17420,17427,17429,17439,17443,17445,17446,17448,17453,17465,17470,17471,17483,17507,17515,17521,17530,17532,17544,17635,17650,17651,17663,17668,17672,17675,17676,17684,17685,17687,17713,17714,17731,17735,17736,17739,17740,17744,17748,17751,17763,17764,17782,17783,17789,17800,17803,17804,17805,17806,17807,17821,17828,17834,17835,17848,17852,17862,17864,17867,17868,17869,17870,17872,17877,17889,17894,17895,17900,17902,17920,17925,17930,17931,17952,17956,17966,17971,17981,17984,17985,17986,17987,17988,17992,18002,18014,18019,18020,18021,18022,18023,18024,18027,18028,18059,18072,18073,18075,18080,18090,18092,18094,18095,18097,18108,18113,18116,18122,18147,18163,18164,18168,18169,18177,18182,18183,18195,18197,18198,18200,18201,18204,18206,18208,18220,18221,18225,18230,18232,18237,18240,18242,18243,18246,18249,18258,18261,18273,18274,18276,18281,18285,18288,18291,18312,18315,18316,18327,18328,18329,18331,18353,18378,18379,18390,18394,18414,18416,18419,18420,18424,18462,18463,18502,18515,18548,18575,18587,18606,18613,18614,18630,18632,18633,18641,18642,18659,18673,18679,18681,18746,18751,18753,18759,18765,18791,18797,18802,18806,18815,18836,18840,18841,18843,18850,18857,18874,18885,18891,18895,18896,18907,18917,18921,18924,18945,18946,18948,18949,18950,18957,18959,18966,18975,18979,18993,18996,19003,19005,19011,19018,19036,19037,19044,19054,19066,19071,19077,19081,19088,19099,19120,19130,19142,19143,19152,19153,19155,19227,19230,19239,19249,19257,19264,19265,19269,19272,19274,19276,19277,19294,19297,19298,19301,19302,19306,19308,19309,19317,19331,19333,19334,19337,19338,19340,19346,19363,19364,19365,19368,19373,19374,19381,19385,19389,19405,19407,19420,19425,19429,19430,19431,19436,19438,19439,19441,19449,19459,19478,19493,19494,19496,19498,19501,19520,19528,19531,19535,19537,19545,19546,19562,19567,19572,19573,19580,19581,19590,19592,19596,19597,19604,19613,19618,19619,19626,19630,19642,19661,19665,19667,19668,19675,19683,19687,19688,19689,19692,19700,19703,19719,19724,19727,19732,19733,19736,19737,19755,19757,19761,19762,19769,19776,19784,19787,19794,19795,19796,19798,19799,19802,19806,19809,19813,19817,19821,19824,19830,19832,19834,19835,19843,19851,19858,19865,19869,19870,19872,19880,19885,19887,19897,19923,19927,19938,19939,19941,19942,19944,19958,19959,19960,19961,19963,19964,19970,19979,19980,19982,19991,19992,19993,19998,20005,20011,20016,20018,20022,20024,20027,20032,20036,20046,20047,20064,20074,20075,20086,20089,20099,20106,20107,20108,20114,20119,20121,20129,20140,20144,20149,20159,20160,20161,20163,20166,20169,20172,20174,20176,20179,20189,20192,20195,20203,20214,20238,20242,20249,20253,20255,20274,20275,20279,20280,20282,20296,20299,20301,20307,20311,20312,20315,20316,20317,20318,20321,20326,20327,20331,20337,20354,20368,20391,20401,20428,20429,20430,20439,20443,20445,20459,20465,20467,20476,20480,20484,20489,20492,20497,20500,20505,20518,20524,20528,20532,20561,20562,20564,20571,20576,20578,20581,20586,20593,20596,20603,20605,20625,20630,20639,20643,20666,20668,20669,20671,20675,20681,20688,20697,20700,20701,20704,20706,20709,20712,20717,20719,20721,20729,20733,20741,20742,20743,20745,20746,20747,20755,20756,20759,20763,20770,20777,20778,20781,20784,20785,20793,20796,20811,20818,20826,20831,20832,20833,20836,20839,20848,20850,20852,20854,20862,20869,20879,20884,20887,20891,20892,20895,20896,20897,20907,20915,20919,20927,20940,20945,20951,20952,20954,20956,20957,20962,20966,20967,20971,20976,20977,20982,20985,20989,20993,20994,20995,20999,21008,21009,21011,21017,21039,21057,21063,21071,21076,21080,21083,21084,21101,21105,21114,21117,21122,21128,21129,21130,21131,21132,21140,21157,21158,21168,21170,21171,21176,21177,21181,21184,21189,21192,21195,21197,21198,21199,21200,21201,21202,21205,21207,21208,21211,21213,21217,21220,21224,21231,21233,21237,21238,21243,21249,21265,21271,21275,21281,21284,21285,21301,21302,21303,21304,21313,21314,21315,21318,21321,21323,21325,21327,21335,21336,21337,21339,21340,21341,21342,21345,21348,21349,21354,21359,21361,21362,21363,21371,21372,21375,21376,21387,21393,21394,21397,21398,21404,21412,21414,21416,21417,21419,21420,21421,21423,21424,21425,21426,21432,21433,21434,21435,21441,21443,21444,21446,21456,21459,21461,21478,21498,21532,21578,21599,21601,21606,21610,21611,21616,21617,21621,21624,21627,21628,21629,21632,21633,21634,21635,21636,21638,21640,21641,21642,21646,21647,21651,21656,21661,21666,21671,21672,21688,21689,21691,21696,21701,21702,21703,21710,21712,21714,21717,21719,21720,21723,21724,21730,21743,21758,21759,21963,21966,21968,21976,21980,21988,21990,22017,22019,22022,22024,22053,22065,22078,22082,22095,22099,22103,22104,22121,22126,22131,22142,22153,22161,22162,22180,22186,22189,22194,22200,22202,22205,22218,22225,22244,22263,22269,22273,22287,22288,22292,22293,22313,22314,22339,22343,22360,22361,22362,22365,22401,22421,22428,22437,22459,22466,22467,22470,22490,22526,22527,22528,22531,22532,22535,22548,22559,22561,22570,22573,22574,22576,22578,22580,22581,22599,22600,22606,22620,22621,22635,22638,22640,22641,22643,22645,22665,22668,22674,22677,22719,22721,22723,22734,22755,22772,22788,22795,22797,22799,22800,22809,22811,22812,22814,22820,22838,22841,22843,22856,22864,22865,22871,22875,22879,22882,22885,22904,22908,22910,22915,22930,22956,22960,22961,22962,22963,22966,22969,22970,22974,22975,22977,22984,22986,22989,22994,22995,23006,23021,23022,23023,23047,23053,23054,23060,23061,23062,23063,23067,23074,23075,23076,23077,23079,23080,23081,23083,23084,23085,23086,23087,23088,23089,23098,23107,23108,23109,23123,23125,23130,23132,23137,23139,23141]]],["+",[124,109,[[0,5,4,0,4,[[3,1,1,0,1],[7,1,1,1,2],[17,2,1,2,3],[28,1,1,3,4]]],[1,10,9,4,13,[[52,1,1,4,5],[58,1,1,5,6],[61,2,2,6,8],[65,1,1,8,9],[72,2,2,9,11],[85,1,1,11,12],[89,2,1,12,13]]],[2,5,4,13,17,[[102,1,1,13,14],[114,3,2,14,16],[115,1,1,16,17]]],[3,9,7,17,24,[[124,1,1,17,18],[130,1,1,18,19],[146,2,1,19,20],[152,5,4,20,24]]],[4,2,2,24,26,[[171,1,1,24,25],[184,1,1,25,26]]],[6,1,1,26,27,[[223,1,1,26,27]]],[7,1,1,27,28,[[232,1,1,27,28]]],[8,6,6,28,34,[[237,1,1,28,29],[250,1,1,29,30],[252,1,1,30,31],[253,1,1,31,32],[258,2,2,32,34]]],[9,4,4,34,38,[[268,1,1,34,35],[269,1,1,35,36],[284,2,2,36,38]]],[10,5,4,38,42,[[292,1,1,38,39],[303,2,1,39,40],[306,1,1,40,41],[308,1,1,41,42]]],[11,5,4,42,46,[[317,1,1,42,43],[329,4,3,43,46]]],[12,4,4,46,50,[[343,1,1,46,47],[355,2,2,47,49],[356,1,1,49,50]]],[13,15,14,50,64,[[371,1,1,50,51],[375,1,1,51,52],[376,1,1,52,53],[378,1,1,53,54],[383,1,1,54,55],[384,1,1,55,56],[387,1,1,56,57],[390,2,2,57,59],[392,2,2,59,61],[395,1,1,61,62],[396,2,1,62,63],[402,1,1,63,64]]],[15,8,6,64,70,[[413,1,1,64,65],[414,3,2,65,67],[415,1,1,67,68],[418,2,1,68,69],[425,1,1,69,70]]],[16,2,2,70,72,[[427,2,2,70,72]]],[18,2,2,72,74,[[601,2,2,72,74]]],[20,16,14,74,88,[[659,4,2,74,76],[660,3,3,76,79],[661,2,2,79,81],[664,2,2,81,83],[665,1,1,83,84],[666,1,1,84,85],[668,1,1,85,86],[670,2,2,86,88]]],[22,3,3,88,91,[[683,1,1,88,89],[727,1,1,89,90],[737,1,1,90,91]]],[23,6,5,91,96,[[759,2,1,91,92],[770,1,1,92,93],[775,1,1,93,94],[777,2,2,94,96]]],[24,1,1,96,97,[[798,1,1,96,97]]],[25,9,7,97,104,[[802,2,1,97,98],[821,2,1,98,99],[822,1,1,99,100],[835,1,1,100,101],[837,1,1,101,102],[844,1,1,102,103],[846,1,1,103,104]]],[26,2,2,104,106,[[860,1,1,104,105],[861,1,1,105,106]]],[28,1,1,106,107,[[877,1,1,106,107]]],[36,1,1,107,108,[[910,1,1,107,108]]],[38,1,1,108,109,[[927,1,1,108,109]]]],[96,188,442,815,1580,1770,1820,1822,1960,2146,2170,2595,2722,3070,3498,3501,3537,3950,4141,4654,4882,4885,4890,4891,5417,5796,6896,7139,7271,7586,7652,7705,7833,7836,8059,8098,8500,8501,8797,9216,9304,9344,9649,10015,10016,10024,10486,10900,10904,10919,11276,11390,11401,11448,11535,11576,11633,11689,11691,11737,11742,11802,11837,12009,12300,12320,12322,12353,12420,12676,12731,12739,16103,16104,17324,17326,17340,17342,17351,17374,17381,17420,17427,17453,17465,17507,17530,17532,17764,18642,18815,19333,19590,19727,19796,19799,20354,20467,20927,20954,21315,21372,21578,21646,22078,22082,22314,22871,23123]]],["AM",[3,1,[[1,3,1,0,1,[[52,3,1,0,1]]]],[1593]]],["Be",[14,14,[[1,2,2,0,2,[[67,1,1,0,1],[68,1,1,1,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[8,1,1,3,4,[[249,1,1,3,4]]],[18,2,2,4,6,[[509,1,1,4,5],[548,1,1,5,6]]],[19,4,4,6,10,[[630,1,1,6,7],[649,1,1,7,8],[650,1,1,8,9],[651,1,1,9,10]]],[20,1,1,10,11,[[665,1,1,10,11]]],[23,1,1,11,12,[[761,1,1,11,12]]],[25,1,1,12,13,[[803,1,1,12,13]]],[37,1,1,13,14,[[911,1,1,13,14]]]],[2018,2041,4210,7548,14364,14979,16462,17041,17064,17107,17445,19374,20500,22882]]],["Is",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18791]]],["Let",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16071]]],["So",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10816]]],["Were",[1,1,[[13,1,1,0,1,[[382,1,1,0,1]]]],[11517]]],["abode",[2,2,[[3,2,2,0,2,[[125,1,1,0,1],[127,1,1,1,2]]]],[3986,4059]]],["accomplished",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16766]]],["altogether",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14689]]],["am",[16,15,[[6,1,1,0,1,[[228,1,1,0,1]]],[17,6,5,1,6,[[446,1,1,1,2],[447,1,1,2,3],[454,1,1,3,4],[465,3,2,4,6]]],[18,5,5,6,11,[[508,1,1,6,7],[548,1,1,7,8],[565,1,1,8,9],[579,2,2,9,11]]],[23,3,3,11,14,[[764,1,1,11,12],[767,1,1,12,13],[775,1,1,13,14]]],[32,1,1,14,15,[[899,1,1,14,15]]]],[6997,13112,13132,13312,13566,13586,14343,14983,15312,15527,15528,19429,19493,19700,22665]]],["are",[53,53,[[0,3,3,0,3,[[41,3,3,0,3]]],[3,1,1,3,4,[[134,1,1,3,4]]],[5,4,4,4,8,[[190,1,1,4,5],[202,1,1,5,6],[205,2,2,6,8]]],[9,3,3,8,11,[[281,1,1,8,9],[285,2,2,9,11]]],[10,1,1,11,12,[[298,1,1,11,12]]],[15,2,2,12,14,[[416,1,1,12,13],[418,1,1,13,14]]],[17,3,3,14,17,[[441,1,1,14,15],[456,1,1,15,16],[459,1,1,16,17]]],[18,5,5,17,22,[[550,1,1,17,18],[567,1,1,18,19],[592,1,1,19,20],[603,1,1,20,21],[612,1,1,21,22]]],[20,2,2,22,24,[[661,1,1,22,23],[665,1,1,23,24]]],[22,8,8,24,32,[[679,1,1,24,25],[683,1,1,25,26],[707,1,1,26,27],[720,1,1,27,28],[741,1,1,28,29],[742,3,3,29,32]]],[23,5,5,32,37,[[746,1,1,32,33],[748,1,1,33,34],[767,1,1,34,35],[788,1,1,35,36],[795,1,1,36,37]]],[24,5,5,37,42,[[797,2,2,37,39],[800,2,2,39,41],[801,1,1,41,42]]],[25,6,6,42,48,[[808,1,1,42,43],[814,1,1,43,44],[823,2,2,44,46],[837,1,1,46,47],[849,1,1,47,48]]],[27,3,3,48,51,[[868,2,2,48,50],[873,1,1,50,51]]],[34,1,1,51,52,[[903,1,1,51,52]]],[35,1,1,52,53,[[908,1,1,52,53]]]],[1263,1283,1288,4275,5919,6268,6335,6350,8402,8522,8523,8993,12363,12409,12999,13373,13449,15039,15383,15838,16118,16193,17379,17448,17668,17751,18208,18502,18885,18891,18895,18896,18993,19044,19498,20016,20255,20315,20326,20429,20439,20445,20586,20712,20985,20994,21361,21703,22180,22194,22263,22734,22838]]],["art",[3,3,[[6,1,1,0,1,[[221,1,1,0,1]]],[18,1,1,1,2,[[487,1,1,1,2]]],[25,1,1,2,3,[[817,1,1,2,3]]]],[6864,14055,20796]]],["as",[2,2,[[9,1,1,0,1,[[272,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]]],[8173,9447]]],["be",[1255,1124,[[0,84,79,0,79,[[0,6,5,0,5],[1,2,2,5,7],[2,1,1,7,8],[3,2,2,8,10],[5,3,3,10,13],[8,8,8,13,21],[9,1,1,21,22],[11,1,1,22,23],[12,1,1,23,24],[14,2,2,24,26],[15,1,1,26,27],[16,9,8,27,35],[17,2,2,35,37],[20,1,1,37,38],[23,3,3,38,41],[25,2,2,41,43],[26,2,2,43,45],[27,5,5,45,50],[29,2,2,50,52],[30,4,3,52,55],[33,3,3,55,58],[34,2,2,58,60],[36,1,1,60,61],[37,2,2,61,63],[38,1,1,63,64],[40,4,3,64,67],[43,4,3,67,70],[44,1,1,70,71],[46,3,3,71,74],[47,3,3,74,77],[48,2,2,77,79]]],[1,109,97,79,176,[[52,1,1,79,80],[53,5,3,80,83],[55,1,1,83,84],[56,2,2,84,86],[57,2,2,86,88],[58,3,3,88,91],[59,4,4,91,95],[60,1,1,95,96],[61,7,6,96,102],[62,6,5,102,107],[65,2,2,107,109],[67,2,2,109,111],[68,3,3,111,114],[69,1,1,114,115],[70,3,3,115,118],[71,5,5,118,123],[72,2,2,123,125],[73,1,1,125,126],[74,5,5,126,131],[75,8,5,131,136],[76,4,4,136,140],[77,15,11,140,151],[78,7,6,151,157],[79,12,12,157,169],[83,2,2,169,171],[84,1,1,171,172],[85,1,1,172,173],[88,1,1,173,174],[89,2,2,174,176]]],[2,105,94,176,270,[[91,2,2,176,178],[94,2,2,178,180],[95,2,2,180,182],[96,4,4,182,186],[99,1,1,186,187],[100,6,5,187,192],[102,7,7,192,199],[103,3,3,199,202],[104,7,5,202,207],[105,3,3,207,210],[106,1,1,210,211],[108,5,5,211,216],[109,5,4,216,220],[110,3,2,220,222],[111,7,6,222,228],[112,7,7,228,235],[113,3,3,235,238],[114,15,14,238,252],[115,5,4,252,256],[116,17,14,256,270]]],[3,83,76,270,346,[[117,2,2,270,272],[119,3,3,272,275],[120,2,2,275,277],[121,4,3,277,280],[122,1,1,280,281],[123,1,1,281,282],[124,2,2,282,284],[125,1,1,284,285],[126,5,4,285,289],[127,1,1,289,290],[128,2,2,290,292],[130,3,3,292,295],[131,7,7,295,302],[132,3,3,302,305],[134,7,7,305,312],[135,4,4,312,316],[139,1,1,316,317],[140,3,2,317,319],[143,2,2,319,321],[144,3,3,321,324],[145,2,2,324,326],[148,3,2,326,328],[149,1,1,328,329],[150,11,8,329,337],[151,7,7,337,344],[152,2,2,344,346]]],[4,98,91,346,437,[[153,1,1,346,347],[156,1,1,347,348],[158,4,4,348,352],[159,4,3,352,355],[160,1,1,355,356],[162,1,1,356,357],[163,4,3,357,360],[164,1,1,360,361],[165,2,2,361,363],[166,1,1,363,364],[167,7,6,364,370],[169,4,4,370,374],[170,2,2,374,376],[171,2,2,376,378],[172,5,3,378,381],[173,6,6,381,387],[174,5,5,387,392],[175,7,7,392,399],[176,8,8,399,407],[177,4,4,407,411],[178,5,5,411,416],[179,2,2,416,418],[180,11,9,418,427],[181,1,1,427,428],[182,1,1,428,429],[183,5,5,429,434],[185,3,3,434,437]]],[5,30,27,437,464,[[187,3,3,437,440],[188,5,3,440,443],[189,2,2,443,445],[190,2,2,445,447],[192,1,1,447,448],[193,3,3,448,451],[194,2,2,451,453],[195,2,2,453,455],[200,1,1,455,456],[201,1,1,456,457],[203,1,1,457,458],[206,2,2,458,460],[208,2,2,460,462],[209,1,1,462,463],[210,2,1,463,464]]],[6,29,24,464,488,[[212,2,1,464,465],[214,2,2,465,467],[216,4,3,467,470],[217,2,2,470,472],[219,1,1,472,473],[220,1,1,473,474],[221,6,5,474,479],[223,2,2,479,481],[224,1,1,481,482],[226,3,3,482,485],[227,1,1,485,486],[228,3,1,486,487],[231,1,1,487,488]]],[7,7,7,488,495,[[232,1,1,488,489],[233,2,2,489,491],[234,2,2,491,493],[235,2,2,493,495]]],[8,32,28,495,523,[[236,1,1,495,496],[237,1,1,496,497],[238,1,1,497,498],[243,3,3,498,501],[245,1,1,501,502],[247,1,1,502,503],[249,2,2,503,505],[252,5,4,505,509],[253,6,3,509,512],[255,2,2,512,514],[258,1,1,514,515],[259,3,3,515,518],[260,3,3,518,521],[262,1,1,521,522],[264,1,1,522,523]]],[9,33,30,523,553,[[268,2,2,523,525],[271,2,2,525,527],[272,1,1,527,528],[273,6,5,528,533],[277,1,1,533,534],[278,1,1,534,535],[279,2,2,535,537],[280,3,2,537,539],[281,5,4,539,543],[282,2,2,543,545],[283,1,1,545,546],[284,1,1,546,547],[285,4,4,547,551],[290,2,2,551,553]]],[10,39,32,553,585,[[291,2,2,553,555],[292,5,4,555,559],[293,2,2,559,561],[295,1,1,561,562],[298,12,8,562,570],[299,2,2,570,572],[300,1,1,572,573],[301,3,2,573,575],[302,2,1,575,576],[304,1,1,576,577],[307,2,2,577,579],[308,2,2,579,581],[310,2,2,581,583],[312,2,2,583,585]]],[11,17,16,585,601,[[314,4,3,585,588],[316,1,1,588,589],[319,3,3,589,592],[321,1,1,592,593],[323,2,2,593,595],[327,1,1,595,596],[328,1,1,596,597],[331,1,1,597,598],[332,2,2,598,600],[335,1,1,600,601]]],[12,21,19,601,620,[[338,1,1,601,602],[341,1,1,602,603],[348,2,2,603,605],[349,1,1,605,606],[351,1,1,606,607],[354,6,5,607,612],[358,2,2,612,614],[359,5,4,614,618],[365,2,2,618,620]]],[13,28,22,620,642,[[372,9,5,620,625],[373,4,3,625,628],[375,1,1,628,629],[376,2,1,629,630],[378,1,1,630,631],[379,1,1,631,632],[381,1,1,632,633],[384,2,2,633,635],[385,2,2,635,637],[389,2,2,637,639],[392,1,1,639,640],[396,1,1,640,641],[399,1,1,641,642]]],[14,1,1,642,643,[[403,1,1,642,643]]],[15,8,8,643,651,[[413,2,2,643,645],[414,2,2,645,647],[416,1,1,647,648],[417,2,2,648,650],[422,1,1,650,651]]],[16,2,2,651,653,[[428,1,1,651,652],[433,1,1,652,653]]],[17,12,12,653,665,[[436,1,1,653,654],[438,2,2,654,656],[441,1,1,656,657],[446,2,2,657,659],[448,1,1,659,660],[450,1,1,660,661],[453,1,1,661,662],[456,1,1,662,663],[457,1,1,663,664],[462,1,1,664,665]]],[18,34,33,665,698,[[478,1,1,665,666],[486,1,1,666,667],[496,1,1,667,668],[507,1,1,668,669],[508,1,1,669,670],[510,1,1,670,671],[512,2,2,671,673],[514,1,1,673,674],[522,1,1,674,675],[540,1,1,675,676],[541,1,1,676,677],[546,1,1,677,678],[549,1,1,678,679],[555,1,1,679,680],[557,1,1,680,681],[558,1,1,681,682],[567,1,1,682,683],[569,1,1,683,684],[586,7,6,684,690],[589,2,2,690,692],[590,1,1,692,693],[596,2,2,693,695],[599,1,1,695,696],[606,1,1,696,697],[607,1,1,697,698]]],[19,12,12,698,710,[[630,3,3,698,701],[632,2,2,701,703],[639,2,2,703,705],[649,1,1,705,706],[650,1,1,706,707],[651,2,2,707,709],[653,1,1,709,710]]],[20,15,15,710,725,[[659,1,1,710,711],[660,1,1,711,712],[661,2,2,712,714],[663,1,1,714,715],[664,1,1,715,716],[665,2,2,716,718],[666,3,3,718,721],[667,1,1,721,722],[668,1,1,722,723],[669,2,2,723,725]]],[21,2,2,725,727,[[671,1,1,725,726],[677,1,1,726,727]]],[22,119,106,727,833,[[679,4,3,727,730],[680,1,1,730,731],[681,3,3,731,734],[682,2,2,734,736],[683,4,3,736,739],[684,1,1,739,740],[685,3,2,740,742],[686,1,1,742,743],[687,3,3,743,746],[688,5,5,746,751],[689,4,3,751,754],[691,2,2,754,756],[693,1,1,756,757],[694,2,1,757,758],[695,7,5,758,763],[697,8,8,763,771],[700,2,2,771,773],[701,2,1,773,774],[702,2,2,774,776],[706,4,4,776,780],[707,8,5,780,785],[708,9,8,785,793],[709,1,1,793,794],[710,4,4,794,798],[711,3,3,798,801],[712,2,2,801,803],[713,2,2,803,805],[715,1,1,805,806],[717,2,2,806,808],[719,2,2,808,810],[721,1,1,810,811],[722,1,1,811,812],[723,1,1,812,813],[725,3,3,813,816],[727,3,3,816,819],[729,2,2,819,821],[733,2,2,821,823],[734,2,2,823,825],[736,1,1,825,826],[738,3,2,826,828],[739,1,1,828,829],[740,1,1,829,830],[743,2,2,830,832],[744,1,1,832,833]]],[23,91,81,833,914,[[746,1,1,833,834],[748,1,1,834,835],[751,4,3,835,838],[752,1,1,838,839],[755,3,2,839,841],[757,2,2,841,843],[758,4,4,843,847],[759,1,1,847,848],[760,1,1,848,849],[761,4,3,849,852],[762,3,2,852,854],[763,1,1,854,855],[764,2,2,855,857],[765,1,1,857,858],[767,2,2,858,860],[768,2,1,860,861],[769,4,3,861,864],[770,1,1,864,865],[771,2,2,865,867],[773,1,1,867,868],[774,5,4,868,872],[775,5,3,872,875],[776,3,2,875,877],[777,3,3,877,880],[778,2,2,880,882],[780,1,1,882,883],[783,2,2,883,885],[786,2,2,885,887],[788,3,3,887,890],[790,1,1,890,891],[791,1,1,891,892],[792,7,7,892,899],[793,7,7,899,906],[794,4,4,906,910],[795,4,4,910,914]]],[24,1,1,914,915,[[797,1,1,914,915]]],[25,146,126,915,1041,[[804,1,1,915,916],[805,1,1,916,917],[806,2,2,917,919],[807,1,1,919,920],[808,4,4,920,924],[812,5,3,924,927],[813,2,2,927,929],[814,5,4,929,933],[815,5,4,933,937],[817,1,1,937,938],[818,3,3,938,941],[819,5,4,941,945],[820,1,1,945,946],[821,3,3,946,949],[822,8,6,949,955],[824,1,1,955,956],[825,1,1,956,957],[827,2,2,957,959],[828,2,2,959,961],[829,2,2,961,963],[830,6,6,963,969],[831,5,5,969,974],[832,1,1,974,975],[833,1,1,975,976],[834,2,2,976,978],[835,9,9,978,987],[836,3,3,987,990],[837,5,4,990,994],[838,11,7,994,1001],[839,5,5,1001,1006],[840,1,1,1006,1007],[844,1,1,1007,1008],[845,7,6,1008,1014],[846,10,8,1014,1022],[847,6,5,1022,1027],[848,6,5,1027,1032],[849,12,9,1032,1041]]],[26,4,4,1041,1045,[[857,1,1,1041,1042],[860,2,2,1042,1044],[861,1,1,1044,1045]]],[27,14,14,1045,1059,[[862,2,2,1045,1047],[863,1,1,1047,1048],[864,1,1,1048,1049],[865,1,1,1049,1050],[866,1,1,1050,1051],[869,3,3,1051,1054],[870,1,1,1054,1055],[874,2,2,1055,1057],[875,2,2,1057,1059]]],[28,4,3,1059,1062,[[877,1,1,1059,1060],[878,3,2,1060,1062]]],[29,4,4,1062,1066,[[881,1,1,1062,1063],[883,1,1,1063,1064],[885,2,2,1064,1066]]],[30,6,4,1066,1070,[[888,6,4,1066,1070]]],[31,1,1,1070,1071,[[892,1,1,1070,1071]]],[32,12,11,1071,1082,[[893,1,1,1071,1072],[894,2,2,1072,1074],[896,1,1,1074,1075],[897,5,4,1075,1079],[899,3,3,1079,1082]]],[33,1,1,1082,1083,[[902,1,1,1082,1083]]],[34,1,1,1083,1084,[[904,1,1,1083,1084]]],[35,4,4,1084,1088,[[907,4,4,1084,1088]]],[36,1,1,1088,1089,[[910,1,1,1088,1089]]],[37,38,28,1089,1117,[[912,4,3,1089,1092],[916,3,2,1092,1094],[918,4,3,1094,1097],[919,1,1,1097,1098],[920,3,3,1098,1101],[922,2,2,1101,1103],[923,1,1,1103,1104],[924,20,13,1104,1117]]],[38,7,7,1117,1124,[[926,1,1,1117,1118],[927,4,4,1118,1122],[928,2,2,1122,1124]]]],[2,5,13,14,28,48,54,60,91,93,140,156,158,207,208,216,218,221,230,231,232,242,300,326,365,373,393,398,401,402,404,405,408,410,413,435,449,543,632,642,651,695,720,760,766,776,787,793,794,795,862,864,876,881,917,990,995,1002,1021,1022,1110,1128,1142,1159,1222,1231,1235,1333,1334,1341,1368,1439,1444,1445,1456,1457,1472,1490,1499,1591,1613,1616,1617,1662,1686,1704,1732,1733,1751,1764,1771,1784,1787,1791,1798,1812,1821,1829,1830,1832,1864,1865,1872,1876,1878,1881,1883,1952,1973,2018,2021,2031,2032,2037,2071,2081,2111,2113,2124,2137,2138,2143,2144,2145,2177,2189,2210,2215,2222,2226,2231,2238,2241,2246,2259,2260,2273,2274,2277,2279,2301,2309,2313,2314,2321,2323,2325,2328,2330,2331,2336,2345,2362,2364,2365,2373,2381,2384,2386,2394,2398,2403,2407,2411,2413,2414,2416,2418,2419,2498,2508,2533,2584,2685,2716,2717,2763,2767,2835,2843,2853,2872,2888,2893,2897,2910,2992,3008,3032,3033,3041,3042,3054,3071,3076,3084,3094,3097,3101,3113,3120,3133,3171,3187,3192,3193,3194,3218,3230,3235,3242,3283,3301,3304,3305,3315,3325,3332,3339,3344,3351,3353,3381,3382,3389,3390,3396,3402,3417,3419,3420,3422,3423,3429,3438,3451,3453,3455,3473,3475,3476,3477,3479,3480,3481,3500,3507,3509,3514,3517,3519,3522,3536,3557,3568,3569,3573,3574,3575,3576,3577,3579,3580,3582,3585,3586,3591,3595,3602,3603,3608,3657,3704,3705,3737,3750,3770,3801,3802,3819,3828,3855,3953,3958,3975,3996,3998,4019,4020,4044,4065,4071,4111,4139,4151,4168,4169,4172,4177,4192,4193,4194,4201,4232,4234,4262,4266,4267,4270,4271,4272,4275,4298,4299,4302,4310,4426,4464,4468,4565,4571,4591,4596,4608,4616,4621,4740,4744,4814,4819,4820,4821,4822,4823,4824,4825,4828,4848,4850,4856,4857,4859,4860,4874,4883,4887,4931,5024,5092,5094,5096,5111,5117,5125,5137,5156,5191,5225,5226,5232,5251,5281,5288,5292,5323,5326,5328,5335,5336,5340,5371,5373,5382,5383,5387,5397,5416,5423,5429,5436,5438,5450,5452,5460,5461,5462,5463,5472,5489,5490,5493,5499,5510,5511,5513,5514,5517,5521,5522,5527,5529,5530,5538,5540,5544,5545,5546,5548,5549,5553,5566,5567,5569,5583,5584,5585,5587,5589,5624,5634,5636,5637,5640,5644,5645,5655,5657,5692,5712,5736,5745,5747,5751,5754,5816,5817,5834,5855,5856,5868,5883,5888,5889,5897,5900,5916,5917,5966,5988,5990,5991,6006,6010,6057,6058,6196,6206,6293,6375,6378,6444,6454,6473,6503,6548,6608,6619,6670,6691,6693,6698,6711,6787,6829,6835,6837,6838,6839,6860,6889,6891,6920,6956,6960,6966,6990,7012,7124,7138,7162,7168,7176,7185,7202,7205,7240,7272,7285,7380,7386,7389,7425,7475,7529,7548,7627,7643,7654,7655,7693,7694,7697,7743,7772,7827,7851,7852,7854,7887,7890,7892,7942,7971,8056,8075,8134,8156,8179,8188,8194,8196,8206,8208,8279,8296,8330,8345,8358,8373,8410,8422,8423,8424,8444,8445,8452,8510,8524,8533,8546,8554,8705,8709,8752,8754,8777,8803,8807,8815,8829,8842,8884,9001,9014,9022,9023,9037,9042,9044,9046,9054,9058,9088,9145,9146,9158,9223,9318,9321,9365,9372,9414,9447,9493,9502,9560,9561,9572,9613,9709,9725,9726,9793,9837,9846,9944,9978,10086,10116,10117,10192,10262,10395,10675,10679,10737,10789,10870,10874,10876,10877,10890,10937,10951,10973,10974,10975,10980,11147,11149,11287,11288,11302,11310,11322,11337,11339,11340,11372,11402,11445,11462,11492,11554,11563,11583,11587,11663,11672,11747,11834,11912,12019,12302,12307,12313,12324,12381,12395,12396,12587,12761,12830,12890,12908,12911,13007,13123,13125,13158,13234,13288,13357,13414,13488,13942,14030,14182,14329,14333,14388,14415,14416,14468,14613,14849,14857,14960,15016,15121,15215,15226,15395,15425,15763,15764,15767,15768,15770,15774,15805,15809,15815,15974,15978,16096,16138,16142,16463,16477,16481,16534,16535,16727,16743,17034,17078,17080,17099,17146,17326,17352,17373,17374,17399,17429,17443,17446,17465,17470,17471,17483,17507,17515,17521,17544,17635,17672,17684,17685,17687,17713,17714,17731,17735,17739,17744,17748,17763,17782,17805,17807,17821,17834,17835,17848,17852,17867,17868,17869,17872,17889,17894,17900,17920,17925,17966,17971,17984,17985,17986,17988,17992,18014,18019,18020,18021,18023,18024,18027,18028,18073,18075,18095,18097,18108,18168,18169,18182,18183,18195,18197,18198,18200,18201,18220,18225,18230,18232,18240,18242,18243,18249,18258,18261,18273,18274,18276,18281,18285,18291,18315,18316,18328,18329,18378,18419,18420,18462,18463,18515,18548,18575,18606,18613,18614,18641,18642,18659,18679,18681,18751,18753,18759,18765,18797,18840,18841,18850,18857,18907,18917,18946,18975,19054,19142,19152,19153,19155,19230,19249,19276,19277,19301,19302,19308,19309,19334,19340,19363,19365,19368,19405,19407,19420,19436,19438,19449,19496,19520,19531,19545,19562,19567,19581,19613,19618,19661,19683,19687,19688,19689,19692,19703,19724,19736,19769,19784,19787,19795,19817,19821,19872,19939,19941,19980,19992,20018,20022,20036,20064,20075,20086,20089,20106,20108,20114,20119,20121,20129,20140,20144,20149,20159,20160,20163,20174,20176,20179,20192,20214,20238,20274,20275,20331,20528,20532,20561,20562,20576,20581,20593,20596,20603,20666,20671,20675,20700,20704,20717,20719,20721,20729,20741,20742,20746,20747,20778,20833,20839,20848,20854,20862,20869,20879,20895,20907,20915,20927,20951,20956,20957,20967,20971,20976,21039,21083,21105,21114,21128,21157,21176,21181,21192,21195,21197,21198,21199,21202,21207,21208,21211,21217,21220,21243,21275,21284,21285,21323,21327,21335,21336,21337,21339,21340,21341,21342,21348,21354,21359,21362,21371,21387,21397,21416,21417,21419,21420,21423,21424,21425,21432,21434,21441,21444,21446,21461,21599,21601,21606,21610,21627,21628,21629,21632,21633,21634,21636,21638,21641,21642,21647,21656,21661,21666,21671,21672,21688,21689,21691,21696,21701,21710,21712,21714,21717,21719,21720,21723,21724,21730,21980,22053,22065,22082,22103,22104,22121,22131,22142,22161,22200,22202,22205,22225,22269,22273,22287,22288,22343,22360,22362,22401,22437,22467,22470,22526,22527,22528,22531,22574,22581,22599,22606,22621,22635,22638,22640,22641,22668,22674,22677,22723,22755,22809,22811,22812,22814,22864,22904,22908,22910,22960,22961,22984,22989,22995,23006,23021,23022,23023,23047,23053,23060,23074,23075,23076,23077,23079,23080,23081,23083,23085,23086,23087,23088,23089,23107,23125,23130,23132,23137,23139,23141]]],["became",[65,62,[[0,9,9,0,9,[[1,2,2,0,2],[18,1,1,2,3],[19,1,1,3,4],[20,1,1,4,5],[23,1,1,5,6],[46,2,2,6,8],[48,1,1,8,9]]],[1,10,9,9,18,[[51,1,1,9,10],[53,2,2,10,12],[56,2,2,12,14],[57,2,1,14,15],[58,2,2,15,17],[85,1,1,17,18]]],[3,1,1,18,19,[[142,1,1,18,19]]],[4,1,1,19,20,[[178,1,1,19,20]]],[5,3,3,20,23,[[193,1,1,20,21],[200,1,1,21,22],[210,1,1,22,23]]],[6,7,7,23,30,[[211,3,3,23,26],[218,1,1,26,27],[225,1,1,27,28],[227,2,2,28,30]]],[7,1,1,30,31,[[235,1,1,30,31]]],[8,5,5,31,36,[[245,1,1,31,32],[251,1,1,32,33],[257,1,1,33,34],[260,2,2,34,36]]],[9,5,5,36,41,[[268,1,1,36,37],[274,3,3,37,40],[277,1,1,40,41]]],[10,5,5,41,46,[[301,1,1,41,42],[302,1,1,42,43],[303,3,3,43,46]]],[11,2,2,46,48,[[329,1,1,46,47],[336,1,1,47,48]]],[12,3,3,48,51,[[355,3,3,48,51]]],[18,3,3,51,54,[[546,1,1,51,52],[560,1,1,52,53],[586,1,1,53,54]]],[23,1,1,54,55,[[795,1,1,54,55]]],[25,9,7,55,62,[[818,2,1,55,56],[820,2,2,56,58],[824,1,1,58,59],[835,3,2,59,61],[837,1,1,61,62]]]],[37,40,483,507,533,658,1440,1446,1488,1564,1604,1605,1695,1697,1727,1752,1766,2579,4499,5571,5981,6201,6508,6539,6542,6544,6746,6943,6985,6992,7206,7430,7616,7789,7898,7903,8074,8211,8215,8223,8286,9132,9181,9190,9217,9218,9986,10203,10892,10896,10903,14946,15251,15780,20242,20831,20884,20887,21017,21318,21321,21363]]],["becamest",[2,2,[[12,1,1,0,1,[[354,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[10885,20770]]],["become",[67,65,[[0,7,6,0,6,[[2,1,1,0,1],[8,1,1,1,2],[31,1,1,2,3],[33,1,1,3,4],[36,1,1,4,5],[47,2,1,5,6]]],[1,9,9,6,15,[[53,1,1,6,7],[56,2,2,7,9],[57,1,1,9,10],[58,1,1,10,11],[64,1,1,11,12],[72,1,1,12,13],[81,2,2,13,15]]],[4,2,2,15,17,[[179,1,1,15,16],[180,1,1,16,17]]],[8,1,1,17,18,[[263,1,1,17,18]]],[9,1,1,18,19,[[273,1,1,18,19]]],[10,2,2,19,21,[[292,1,1,19,20],[304,1,1,20,21]]],[11,2,2,21,23,[[333,1,1,21,22],[334,1,1,22,23]]],[18,8,8,23,31,[[546,2,2,23,25],[556,1,1,25,26],[586,1,1,26,27],[595,3,3,27,30],[596,1,1,30,31]]],[19,1,1,31,32,[[656,1,1,31,32]]],[22,9,9,32,41,[[679,2,2,32,34],[685,1,1,34,35],[690,1,1,35,36],[707,1,1,36,37],[712,1,1,37,38],[713,1,1,38,39],[737,1,1,39,40],[738,1,1,40,41]]],[23,10,10,41,51,[[747,1,1,41,42],[749,1,1,42,43],[751,1,1,43,44],[766,1,1,44,45],[770,1,1,45,46],[793,1,1,46,47],[794,2,2,47,49],[795,2,2,49,51]]],[24,6,5,51,56,[[797,5,4,51,55],[800,1,1,55,56]]],[25,5,5,56,61,[[823,2,2,56,58],[827,1,1,58,59],[837,1,1,59,60],[838,1,1,60,61]]],[31,1,1,61,62,[[892,1,1,61,62]]],[32,1,1,62,63,[[895,1,1,62,63]]],[35,2,2,63,65,[[906,1,1,63,64],[907,1,1,64,65]]]],[77,220,938,996,1103,1470,1610,1694,1704,1726,1751,1922,2173,2439,2461,5594,5648,7958,8204,8785,9221,10133,10164,14943,14957,15189,15762,15883,15890,15891,15981,17245,17675,17676,17806,17902,18204,18312,18327,18806,18843,19003,19071,19130,19459,19590,20140,20189,20203,20249,20253,20311,20312,20316,20321,20428,20994,20995,21105,21394,21414,22573,22620,22800,22820]]],["been",[73,72,[[0,6,6,0,6,[[12,1,1,0,1],[30,2,2,1,3],[45,2,2,3,5],[46,1,1,5,6]]],[1,3,3,6,9,[[51,1,1,6,7],[58,1,1,7,8],[67,1,1,8,9]]],[4,4,4,9,13,[[156,1,1,9,10],[161,2,2,10,12],[183,1,1,12,13]]],[8,6,6,13,19,[[239,2,2,13,15],[249,1,1,15,16],[255,1,1,16,17],[264,2,2,17,19]]],[9,2,2,19,21,[[279,2,2,19,21]]],[10,3,3,21,24,[[291,1,1,21,22],[304,1,1,22,23],[307,1,1,23,24]]],[12,2,2,24,26,[[354,1,1,24,25],[366,1,1,25,26]]],[14,2,2,26,28,[[411,2,2,26,28]]],[15,1,1,28,29,[[414,1,1,28,29]]],[16,1,1,29,30,[[427,1,1,29,30]]],[17,3,2,30,32,[[438,1,1,30,31],[445,2,1,31,32]]],[18,9,9,32,41,[[504,1,1,32,33],[514,1,1,33,34],[519,1,1,34,35],[536,1,1,35,36],[538,1,1,36,37],[540,1,1,37,38],[550,1,1,38,39],[567,1,1,39,40],[596,1,1,40,41]]],[20,5,5,41,46,[[659,2,2,41,43],[661,1,1,43,44],[662,2,2,44,46]]],[22,7,7,46,53,[[679,1,1,46,47],[703,1,1,47,48],[704,1,1,48,49],[726,2,2,49,51],[738,1,1,51,52],[744,1,1,52,53]]],[23,6,6,53,59,[[746,1,1,53,54],[747,1,1,54,55],[764,1,1,55,56],[772,1,1,56,57],[776,1,1,57,58],[794,1,1,58,59]]],[25,8,8,59,67,[[803,1,1,59,60],[811,1,1,60,61],[817,1,1,61,62],[823,1,1,62,63],[829,1,1,63,64],[830,1,1,64,65],[834,1,1,65,66],[839,1,1,66,67]]],[27,1,1,67,68,[[866,1,1,67,68]]],[28,2,2,68,70,[[876,1,1,68,69],[877,1,1,69,70]]],[30,1,1,70,71,[[888,1,1,70,71]]],[38,1,1,71,72,[[925,1,1,71,72]]]],[321,878,915,1418,1420,1429,1576,1760,2002,5036,5164,5181,5755,7304,7314,7546,7743,7970,7975,8337,8349,8754,9226,9324,10871,11189,12239,12245,12308,12736,12920,13105,14294,14475,14558,14806,14822,14846,15034,15379,15952,17325,17331,17374,17384,17397,17663,18122,18147,18632,18633,18836,18924,18996,19005,19439,19626,19762,20172,20497,20643,20793,20989,21170,21189,21313,21433,22153,22293,22313,22526,23098]]],["being",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9290]]],["brake",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21759]]],["brought",[1,1,[[9,1,1,0,1,[[274,1,1,0,1]]]],[8219]]],["came",[146,146,[[0,1,1,0,1,[[14,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[6,2,2,2,4,[[213,1,1,2,3],[221,1,1,3,4]]],[8,2,2,4,6,[[239,1,1,4,5],[250,1,1,5,6]]],[9,2,2,6,8,[[273,1,1,6,7],[290,1,1,7,8]]],[10,11,11,8,19,[[296,1,1,8,9],[302,1,1,9,10],[303,1,1,10,11],[306,2,2,11,13],[307,2,2,13,15],[308,2,2,15,17],[311,2,2,17,19]]],[11,3,3,19,22,[[315,1,1,19,20],[332,1,1,20,21],[336,1,1,21,22]]],[12,2,2,22,24,[[354,1,1,22,23],[359,1,1,23,24]]],[13,6,6,24,30,[[377,1,1,24,25],[378,1,1,25,26],[380,1,1,26,27],[381,1,1,27,28],[386,1,1,28,29],[390,1,1,29,30]]],[22,1,1,30,31,[[716,1,1,30,31]]],[23,44,44,31,75,[[745,5,5,31,36],[746,1,1,36,37],[751,1,1,37,38],[755,1,1,38,39],[757,2,2,39,41],[758,1,1,41,42],[760,1,1,42,43],[762,2,2,43,45],[765,1,1,45,46],[768,1,1,46,47],[769,1,1,47,48],[770,1,1,48,49],[771,1,1,49,50],[772,1,1,50,51],[773,1,1,51,52],[774,1,1,52,53],[776,3,3,53,56],[777,3,3,56,59],[778,3,3,59,62],[779,2,2,62,64],[780,2,2,64,66],[781,1,1,66,67],[783,1,1,67,68],[784,1,1,68,69],[786,1,1,69,70],[787,1,1,70,71],[788,1,1,71,72],[790,1,1,72,73],[791,1,1,73,74],[793,1,1,74,75]]],[25,49,49,75,124,[[804,1,1,75,76],[807,1,1,76,77],[808,1,1,77,78],[812,1,1,78,79],[813,5,5,79,84],[814,1,1,84,85],[815,2,2,85,87],[816,1,1,87,88],[817,1,1,88,89],[818,2,2,89,91],[819,1,1,91,92],[821,2,2,92,94],[822,3,3,94,97],[823,3,3,97,100],[824,1,1,100,101],[825,3,3,101,104],[826,1,1,104,105],[827,1,1,105,106],[828,1,1,106,107],[829,3,3,107,110],[830,2,2,110,112],[831,2,2,112,114],[832,1,1,114,115],[833,2,2,115,117],[834,2,2,117,119],[835,1,1,119,120],[836,1,1,120,121],[837,1,1,121,122],[838,1,1,122,123],[839,1,1,123,124]]],[26,1,1,124,125,[[858,1,1,124,125]]],[27,1,1,125,126,[[862,1,1,125,126]]],[28,1,1,126,127,[[876,1,1,126,127]]],[31,2,2,127,129,[[889,1,1,127,128],[891,1,1,128,129]]],[32,1,1,129,130,[[893,1,1,129,130]]],[35,1,1,130,131,[[906,1,1,130,131]]],[36,5,5,131,136,[[909,2,2,131,133],[910,3,3,133,136]]],[37,10,10,136,146,[[911,2,2,136,138],[914,1,1,138,139],[916,1,1,139,140],[917,4,4,140,144],[918,2,2,144,146]]]],[361,4448,6578,6858,7298,7570,8184,8703,8907,9173,9204,9284,9290,9319,9325,9342,9372,9468,9479,9591,10102,10205,10866,10972,11416,11444,11489,11491,11601,11695,18394,18948,18949,18950,18957,18959,18966,19120,19227,19269,19274,19294,19337,19385,19389,19441,19528,19535,19573,19597,19630,19665,19668,19732,19737,19757,19776,19794,19798,19802,19809,19813,19824,19835,19843,19869,19880,19938,19942,19982,20005,20011,20046,20074,20161,20518,20564,20578,20669,20681,20688,20697,20701,20706,20709,20733,20743,20755,20763,20826,20836,20850,20897,20940,20945,20952,20962,20977,20993,20999,21008,21057,21071,21076,21084,21101,21122,21158,21168,21177,21184,21200,21205,21224,21231,21249,21265,21281,21303,21314,21345,21375,21412,21426,21990,22095,22292,22532,22559,22580,22788,22841,22843,22856,22865,22875,22879,22885,22930,22956,22963,22966,22970,22974,22977,22994]]],["caused",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[25,1,1,1,2,[[845,1,1,1,2]]]],[4680,21611]]],["come",[9,9,[[8,2,2,0,2,[[245,1,1,0,1],[255,1,1,1,2]]],[13,1,1,2,3,[[385,1,1,2,3]]],[23,2,2,3,5,[[769,1,1,3,4],[784,1,1,4,5]]],[24,2,2,5,7,[[799,1,1,5,6],[801,1,1,6,7]]],[25,1,1,7,8,[[831,1,1,7,8]]],[29,1,1,8,9,[[883,1,1,8,9]]]],[7429,7754,11586,19537,19944,20401,20443,21213,22428]]],["committed",[2,2,[[4,1,1,0,1,[[173,1,1,0,1]]],[23,1,1,1,2,[[749,1,1,1,2]]]],[5469,19088]]],["continue",[2,2,[[8,1,1,0,1,[[247,1,1,0,1]]],[9,1,1,1,2,[[273,1,1,1,2]]]],[7474,8209]]],["continued",[3,3,[[0,1,1,0,1,[[39,1,1,0,1]]],[7,1,1,1,2,[[232,1,1,1,2]]],[26,1,1,2,3,[[850,1,1,2,3]]]],[1176,7129,21758]]],["count",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16261]]],["counted",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8738]]],["did",[4,4,[[6,1,1,0,1,[[226,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[11,2,2,2,4,[[316,1,1,2,3],[330,1,1,3,4]]]],[6970,7251,9604,10028]]],["done",[5,5,[[6,2,2,0,2,[[229,1,1,0,1],[230,1,1,1,2]]],[10,1,1,2,3,[[291,1,1,2,3]]],[13,1,1,3,4,[[377,1,1,3,4]]],[25,1,1,4,5,[[840,1,1,4,5]]]],[7054,7066,8744,11418,21456]]],["endure",[3,3,[[18,3,3,0,3,[[549,1,1,0,1],[566,1,1,1,2],[581,1,1,2,3]]]],[15017,15362,15602]]],["endured",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15232]]],["enjoy",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5652]]],["fainted",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21988]]],["fell",[6,6,[[5,1,1,0,1,[[208,1,1,0,1]]],[11,3,3,1,4,[[316,3,3,1,4]]],[12,1,1,4,5,[[364,1,1,4,5]]],[13,1,1,5,6,[[383,1,1,5,6]]]],[6446,9611,9614,9621,11133,11533]]],["follow",[3,3,[[1,2,2,0,2,[[70,2,2,0,2]]],[4,1,1,2,3,[[170,1,1,2,3]]]],[2099,2100,5406]]],["given",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7161]]],["go",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]]],[4667,9450]]],["gone",[1,1,[[12,1,1,0,1,[[354,1,1,0,1]]]],[10868]]],["had",[94,91,[[0,6,5,0,5,[[10,2,1,0,1],[11,1,1,1,2],[12,1,1,2,3],[25,1,1,3,4],[29,1,1,4,5]]],[1,2,2,5,7,[[59,1,1,5,6],[85,1,1,6,7]]],[2,1,1,7,8,[[110,1,1,7,8]]],[3,5,5,8,13,[[119,1,1,8,9],[130,1,1,9,10],[142,1,1,10,11],[143,1,1,11,12],[148,1,1,12,13]]],[5,11,11,13,24,[[191,1,1,13,14],[194,1,1,14,15],[203,5,5,15,20],[205,1,1,20,21],[207,3,3,21,24]]],[6,6,5,24,29,[[218,2,1,24,25],[220,1,1,25,26],[222,2,2,26,28],[228,1,1,28,29]]],[8,3,3,29,32,[[236,1,1,29,30],[244,1,1,30,31],[248,1,1,31,32]]],[9,9,9,32,41,[[269,1,1,32,33],[270,1,1,33,34],[272,1,1,34,35],[274,1,1,35,36],[278,2,2,36,38],[279,1,1,38,39],[281,1,1,39,40],[287,1,1,40,41]]],[10,7,7,41,48,[[294,2,2,41,43],[295,1,1,43,44],[299,1,1,44,45],[300,1,1,45,46],[301,1,1,46,47],[311,1,1,47,48]]],[11,2,2,48,50,[[313,1,1,48,49],[321,1,1,49,50]]],[12,13,13,50,63,[[339,4,4,50,54],[341,1,1,54,55],[343,1,1,55,56],[344,1,1,56,57],[351,1,1,57,58],[360,2,2,58,60],[361,2,2,60,62],[365,1,1,62,63]]],[13,13,13,63,76,[[367,2,2,63,65],[374,1,1,65,66],[375,1,1,66,67],[376,1,1,67,68],[380,1,1,68,69],[383,2,2,69,71],[384,1,1,71,72],[387,1,1,72,73],[392,2,2,73,75],[398,1,1,75,76]]],[15,1,1,76,77,[[416,1,1,76,77]]],[16,1,1,77,78,[[433,1,1,77,78]]],[17,2,2,78,80,[[477,2,2,78,80]]],[18,1,1,80,81,[[596,1,1,80,81]]],[20,2,1,81,82,[[660,2,1,81,82]]],[21,1,1,82,83,[[678,1,1,82,83]]],[23,1,1,83,84,[[796,1,1,83,84]]],[24,1,1,84,85,[[797,1,1,84,85]]],[25,6,6,85,91,[[820,1,1,85,86],[830,1,1,86,87],[836,1,1,87,88],[842,1,1,88,89],[845,2,2,89,91]]]],[269,314,323,706,873,1800,2573,3348,3696,4132,4522,4557,4719,5946,6022,6276,6278,6281,6283,6286,6323,6385,6391,6401,6749,6815,6878,6883,7020,7214,7393,7506,8098,8122,8180,8219,8288,8289,8340,8391,8595,8868,8870,8893,9070,9105,9111,9452,9550,9770,10328,10332,10340,10358,10390,10520,10550,10778,11000,11005,11017,11043,11155,11206,11208,11352,11389,11401,11483,11528,11536,11543,11630,11742,11743,11902,12365,12833,13934,13935,15954,17340,17651,20301,20317,20892,21201,21349,21532,21621,21624]]],["hadst",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[860]]],["hang",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5677]]],["happened",[1,1,[[8,1,1,0,1,[[241,1,1,0,1]]]],[7340]]],["hast",[2,2,[[1,1,1,0,1,[[62,1,1,0,1]]],[4,1,1,1,2,[[164,1,1,1,2]]]],[1879,5266]]],["hath",[10,10,[[2,3,3,0,3,[[104,1,1,0,1],[109,1,1,1,2],[110,1,1,2,3]]],[4,2,2,3,5,[[162,1,1,3,4],[173,1,1,4,5]]],[9,1,1,5,6,[[281,1,1,5,6]]],[17,1,1,6,7,[[440,1,1,6,7]]],[22,1,1,7,8,[[683,1,1,7,8]]],[23,1,1,8,9,[[749,1,1,8,9]]],[25,1,1,9,10,[[820,1,1,9,10]]]],[3170,3345,3362,5195,5463,8393,12967,17740,19081,20895]]],["have",[99,97,[[0,2,2,0,2,[[17,1,1,0,1],[31,1,1,1,2]]],[1,4,4,2,6,[[67,1,1,2,3],[69,1,1,3,4],[77,2,2,4,6]]],[2,17,17,6,23,[[96,4,4,6,10],[102,4,4,10,14],[104,1,1,14,15],[105,1,1,15,16],[108,1,1,16,17],[112,2,2,17,19],[113,1,1,19,20],[114,2,2,20,22],[115,1,1,22,23]]],[3,14,14,23,37,[[121,1,1,23,24],[125,1,1,24,25],[131,1,1,25,26],[134,1,1,26,27],[141,1,1,27,28],[144,2,2,28,30],[145,4,4,30,34],[150,1,1,34,35],[151,2,2,35,37]]],[4,14,13,37,50,[[157,1,1,37,38],[170,2,2,38,40],[173,2,2,40,42],[175,2,2,42,44],[177,4,3,44,47],[180,2,2,47,49],[181,1,1,49,50]]],[5,2,2,50,52,[[197,1,1,50,51],[203,1,1,51,52]]],[6,1,1,52,53,[[227,1,1,52,53]]],[7,1,1,53,54,[[232,1,1,53,54]]],[8,3,3,54,57,[[243,1,1,54,55],[246,1,1,55,56],[263,1,1,56,57]]],[9,3,3,57,60,[[270,1,1,57,58],[273,1,1,58,59],[275,1,1,59,60]]],[10,3,3,60,63,[[301,2,2,60,62],[311,1,1,62,63]]],[11,1,1,63,64,[[333,1,1,63,64]]],[13,1,1,64,65,[[367,1,1,64,65]]],[15,2,2,65,67,[[418,2,2,65,67]]],[17,2,2,67,69,[[441,1,1,67,68],[451,1,1,68,69]]],[18,1,1,69,70,[[560,1,1,69,70]]],[19,2,2,70,72,[[628,1,1,70,71],[641,1,1,71,72]]],[20,1,1,72,73,[[664,1,1,72,73]]],[22,3,3,73,76,[[708,1,1,73,74],[728,1,1,74,75],[737,1,1,75,76]]],[23,11,11,76,87,[[748,1,1,76,77],[758,1,1,77,78],[760,1,1,78,79],[767,1,1,79,80],[773,2,2,80,82],[776,1,1,82,83],[779,2,2,83,85],[780,1,1,85,86],[782,1,1,86,87]]],[25,9,8,87,95,[[807,1,1,87,88],[819,1,1,88,89],[838,1,1,89,90],[842,1,1,90,91],[845,2,1,91,92],[846,3,3,92,95]]],[32,2,2,95,97,[[894,1,1,95,96],[897,1,1,96,97]]]],[436,933,2015,2054,2300,2325,2886,2887,2889,2912,3054,3076,3081,3090,3187,3205,3317,3409,3426,3468,3495,3513,3561,3810,3979,4182,4277,4484,4602,4603,4609,4615,4620,4643,4822,4848,4858,5060,5385,5386,5462,5465,5512,5513,5560,5561,5562,5651,5676,5698,6127,6292,6993,7139,7388,7454,7964,8130,8186,8237,9140,9144,9453,10134,11206,12414,12415,12988,13256,15249,16414,16798,17420,18246,18673,18802,19037,19306,19338,19501,19642,19667,19761,19830,19832,19872,19897,20571,20852,21421,21532,21617,21635,21640,21651,22600,22645]]],["having",[2,2,[[7,1,1,0,1,[[232,1,1,0,1]]],[13,1,1,1,2,[[377,1,1,1,2]]]],[7140,11426]]],["he",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13349]]],["is",[76,75,[[1,1,1,0,1,[[58,1,1,0,1]]],[2,6,6,1,7,[[102,3,3,1,4],[104,1,1,4,5],[110,1,1,5,6],[114,1,1,6,7]]],[3,3,3,7,10,[[121,1,1,7,8],[125,1,1,8,9],[145,1,1,9,10]]],[4,4,4,10,14,[[167,1,1,10,11],[169,1,1,11,12],[172,1,1,12,13],[175,1,1,13,14]]],[5,2,2,14,16,[[195,1,1,14,15],[203,1,1,15,16]]],[8,2,2,16,18,[[239,1,1,16,17],[258,1,1,17,18]]],[9,2,2,18,20,[[279,1,1,18,19],[283,1,1,19,20]]],[10,4,4,20,24,[[298,1,1,20,21],[299,1,1,21,22],[301,1,1,22,23],[302,1,1,23,24]]],[11,1,1,24,25,[[332,1,1,24,25]]],[12,1,1,25,26,[[359,1,1,25,26]]],[13,3,3,26,29,[[371,1,1,26,27],[372,1,1,27,28],[373,1,1,28,29]]],[17,3,3,29,32,[[451,1,1,29,30],[459,1,1,30,31],[465,1,1,31,32]]],[18,6,6,32,38,[[499,1,1,32,33],[553,1,1,33,34],[566,1,1,34,35],[571,1,1,35,36],[581,1,1,36,37],[595,1,1,37,38]]],[19,4,4,38,42,[[630,1,1,38,39],[641,2,2,39,41],[658,1,1,41,42]]],[20,1,1,42,43,[[665,1,1,42,43]]],[22,9,9,43,52,[[693,1,1,43,44],[696,1,1,44,45],[701,1,1,45,46],[707,1,1,46,47],[711,1,1,47,48],[717,1,1,48,49],[733,1,1,49,50],[742,2,2,50,52]]],[23,9,9,52,61,[[746,1,1,52,53],[750,1,1,53,54],[756,1,1,54,55],[759,1,1,55,56],[761,1,1,56,57],[767,1,1,57,58],[769,1,1,58,59],[788,1,1,59,60],[792,1,1,60,61]]],[24,3,3,61,64,[[797,2,2,61,63],[801,1,1,63,64]]],[25,10,9,64,73,[[802,1,1,64,65],[808,1,1,65,66],[816,2,1,66,67],[817,1,1,67,68],[825,2,2,68,70],[833,1,1,70,71],[835,1,1,71,72],[849,1,1,72,73]]],[27,2,2,73,75,[[868,2,2,73,75]]]],[1745,3061,3099,3104,3185,3364,3474,3809,3978,4609,5322,5365,5441,5510,6049,6285,7313,7832,8352,8458,9020,9059,9119,9175,10113,10978,11277,11308,11345,13246,13450,13588,14218,15083,15367,15453,15591,15892,16482,16795,16807,17298,17439,17966,18002,18080,18206,18288,18416,18746,18895,18896,18979,19099,19257,19333,19364,19494,19572,20032,20099,20318,20327,20459,20492,20596,20756,20796,21063,21080,21271,21325,21724,22186,22189]]],["keep",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[969]]],["lasted",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6926]]],["lay",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21393]]],["let",[3,3,[[0,1,1,0,1,[[0,1,1,0,1]]],[18,1,1,1,2,[[546,1,1,1,2]]],[23,1,1,2,3,[[794,1,1,2,3]]]],[5,14960,20195]]],["made",[4,4,[[6,1,1,0,1,[[231,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]],[23,1,1,3,4,[[764,1,1,3,4]]]],[7107,11311,18424,19430]]],["marry",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5552]]],["may",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5409]]],["out",[1,1,[[11,1,1,0,1,[[319,1,1,0,1]]]],[9727]]],["pass",[517,516,[[0,72,72,0,72,[[3,3,3,0,3],[5,1,1,3,4],[6,1,1,4,5],[7,2,2,5,7],[8,1,1,7,8],[10,1,1,8,9],[11,3,3,9,12],[13,1,1,12,13],[14,1,1,13,14],[18,3,3,14,17],[19,1,1,17,18],[20,1,1,18,19],[21,2,2,19,21],[23,6,6,21,27],[24,1,1,27,28],[25,2,2,28,30],[26,3,3,30,33],[28,4,4,33,37],[29,2,2,37,39],[30,1,1,39,40],[33,1,1,40,41],[34,3,3,41,44],[36,1,1,44,45],[37,6,6,45,51],[38,8,8,51,59],[39,2,2,59,61],[40,3,3,61,64],[41,1,1,64,65],[42,2,2,65,67],[43,2,2,67,69],[45,1,1,69,70],[46,1,1,70,71],[47,1,1,71,72]]],[1,35,34,72,106,[[50,2,2,72,74],[51,2,2,74,76],[52,1,1,76,77],[53,3,3,77,80],[55,1,1,80,81],[61,6,5,81,86],[62,2,2,86,88],[63,1,1,88,89],[65,5,5,89,94],[66,1,1,94,95],[67,1,1,95,96],[68,1,1,96,97],[71,1,1,97,98],[81,2,2,98,100],[82,4,4,100,104],[83,1,1,104,105],[89,1,1,105,106]]],[2,1,1,106,107,[[98,1,1,106,107]]],[3,15,15,107,122,[[121,1,1,107,108],[123,1,1,108,109],[126,2,2,109,111],[127,1,1,111,112],[132,2,2,112,114],[133,2,2,114,116],[137,2,2,116,118],[138,1,1,118,119],[142,1,1,119,120],[149,2,2,120,122]]],[4,16,16,122,138,[[153,1,1,122,123],[154,1,1,123,124],[157,1,1,124,125],[159,1,1,125,126],[161,1,1,126,127],[163,2,2,127,129],[170,1,1,129,130],[176,1,1,130,131],[180,3,3,131,134],[181,1,1,134,135],[182,1,1,135,136],[183,2,2,136,138]]],[5,32,32,138,170,[[187,1,1,138,139],[188,1,1,139,140],[189,3,3,140,143],[190,3,3,143,146],[191,3,3,146,149],[192,5,5,149,154],[194,3,3,154,157],[195,2,2,157,159],[196,5,5,159,164],[197,1,1,164,165],[201,1,1,165,166],[203,1,1,166,167],[209,2,2,167,169],[210,1,1,169,170]]],[6,27,27,170,197,[[211,3,3,170,173],[212,2,2,173,175],[213,1,1,175,176],[216,2,2,176,178],[217,1,1,178,179],[218,1,1,179,180],[219,1,1,180,181],[221,3,3,181,184],[223,1,1,184,185],[224,3,3,185,188],[225,2,2,188,190],[226,3,3,190,193],[229,2,2,193,195],[231,2,2,195,197]]],[7,3,3,197,200,[[232,2,2,197,199],[234,1,1,199,200]]],[8,38,38,200,238,[[236,2,2,200,202],[237,1,1,202,203],[238,1,1,203,204],[239,1,1,204,205],[240,1,1,205,206],[242,1,1,206,207],[243,1,1,207,208],[244,1,1,208,209],[245,2,2,209,211],[246,1,1,211,212],[248,2,2,212,214],[249,2,2,214,216],[251,3,3,216,219],[252,1,1,219,220],[253,5,5,220,225],[255,2,2,225,227],[258,2,2,227,229],[259,3,3,229,232],[260,3,3,232,235],[263,1,1,235,236],[265,1,1,236,237],[266,1,1,237,238]]],[9,28,28,238,266,[[267,2,2,238,240],[268,2,2,240,242],[269,1,1,242,243],[270,1,1,243,244],[273,2,2,244,246],[274,1,1,246,247],[276,1,1,247,248],[277,4,4,248,252],[278,1,1,252,253],[279,4,4,253,257],[281,3,3,257,260],[282,1,1,260,261],[283,3,3,261,264],[285,1,1,264,265],[287,1,1,265,266]]],[10,43,43,266,309,[[291,1,1,266,267],[292,1,1,267,268],[293,1,1,268,269],[295,1,1,269,270],[296,1,1,270,271],[298,1,1,271,272],[299,2,2,272,274],[301,3,3,274,277],[302,2,2,277,279],[303,4,4,279,283],[304,1,1,283,284],[305,2,2,284,286],[306,3,3,286,289],[307,2,2,289,291],[308,8,8,291,299],[309,1,1,299,300],[310,2,2,300,302],[311,4,4,302,306],[312,3,3,306,309]]],[11,36,36,309,345,[[314,3,3,309,312],[315,3,3,312,315],[316,3,3,315,318],[317,1,1,318,319],[318,3,3,319,322],[319,1,1,322,323],[320,3,3,323,326],[321,1,1,326,327],[322,3,3,327,330],[325,1,1,330,331],[326,1,1,331,332],[327,1,1,332,333],[330,2,2,333,335],[331,3,3,335,338],[332,1,1,338,339],[334,2,2,339,341],[336,1,1,341,342],[337,3,3,342,345]]],[12,10,10,345,355,[[347,1,1,345,346],[352,2,2,346,348],[354,3,3,348,351],[355,1,1,351,352],[356,1,1,352,353],[357,2,2,353,355]]],[13,20,20,355,375,[[371,2,2,355,357],[374,1,1,357,358],[376,1,1,358,359],[378,2,2,359,361],[379,1,1,361,362],[382,1,1,362,363],[384,2,2,363,365],[386,1,1,365,366],[387,1,1,366,367],[388,1,1,367,368],[390,3,3,368,371],[391,3,3,371,374],[400,1,1,374,375]]],[15,13,13,375,388,[[413,2,2,375,377],[414,1,1,377,378],[416,5,5,378,383],[418,2,2,383,385],[419,1,1,385,386],[425,2,2,386,388]]],[16,4,4,388,392,[[426,1,1,388,389],[427,1,1,389,390],[428,1,1,390,391],[430,1,1,391,392]]],[22,31,31,392,423,[[680,1,1,392,393],[681,1,1,393,394],[682,1,1,394,395],[685,6,6,395,401],[686,1,1,401,402],[688,3,3,402,405],[689,1,1,405,406],[692,2,2,406,408],[694,1,1,408,409],[695,1,1,409,410],[700,2,2,410,412],[701,2,2,412,414],[702,2,2,414,416],[705,2,2,416,418],[714,1,1,418,419],[715,2,2,419,421],[743,1,1,421,422],[744,1,1,422,423]]],[23,37,37,423,460,[[747,2,2,423,425],[748,1,1,425,426],[749,1,1,426,427],[756,2,2,427,429],[757,1,1,429,430],[759,1,1,430,431],[760,1,1,431,432],[761,1,1,432,433],[764,1,1,433,434],[769,1,1,434,435],[770,1,1,435,436],[771,1,1,436,437],[772,1,1,437,438],[774,1,1,438,439],[775,1,1,439,440],[776,1,1,440,441],[779,1,1,441,442],[780,4,4,442,446],[781,1,1,446,447],[783,1,1,447,448],[785,4,4,448,452],[786,3,3,452,455],[787,1,1,455,456],[793,1,1,456,457],[796,3,3,457,460]]],[24,1,1,460,461,[[799,1,1,460,461]]],[25,24,24,461,485,[[802,1,1,461,462],[804,1,1,462,463],[809,1,1,463,464],[810,1,1,464,465],[811,1,1,465,466],[812,1,1,466,467],[817,1,1,467,468],[821,1,1,468,469],[822,1,1,469,470],[827,1,1,470,471],[830,1,1,471,472],[831,1,1,472,473],[832,1,1,473,474],[833,2,2,474,476],[834,1,1,476,477],[839,2,2,477,479],[840,1,1,479,480],[845,1,1,480,481],[848,4,4,481,485]]],[26,2,2,485,487,[[857,2,2,485,487]]],[27,3,3,487,490,[[862,2,2,487,489],[863,1,1,489,490]]],[28,3,3,490,493,[[877,2,2,490,492],[878,1,1,492,493]]],[29,3,3,493,496,[[884,1,1,493,494],[885,1,1,494,495],[886,1,1,495,496]]],[31,1,1,496,497,[[892,1,1,496,497]]],[32,2,2,497,499,[[896,1,1,497,498],[897,1,1,498,499]]],[33,1,1,499,500,[[902,1,1,499,500]]],[35,3,3,500,503,[[906,3,3,500,503]]],[37,13,13,503,516,[[916,1,1,503,504],[917,2,2,504,506],[918,1,1,506,507],[922,1,1,507,508],[923,4,4,508,512],[924,4,4,512,516]]]],[82,87,93,138,169,189,196,219,268,309,310,312,337,377,474,486,491,508,535,548,567,605,606,613,621,634,643,669,700,724,728,757,767,805,808,818,820,855,871,883,1005,1028,1029,1033,1106,1120,1128,1143,1146,1147,1148,1154,1156,1159,1160,1162,1164,1167,1168,1173,1192,1196,1203,1208,1287,1292,1311,1348,1355,1419,1444,1452,1542,1553,1565,1577,1600,1609,1610,1625,1683,1841,1842,1845,1857,1867,1882,1884,1913,1952,1957,1960,1969,1974,1994,2012,2042,2140,2457,2468,2480,2481,2482,2495,2525,2724,2954,3819,3851,3999,4023,4049,4225,4236,4249,4252,4348,4349,4416,4490,4815,4816,4895,4954,5076,5123,5168,5221,5237,5403,5526,5612,5626,5674,5698,5709,5749,5752,5852,5874,5895,5906,5907,5911,5921,5928,5935,5942,5947,5954,5957,5964,5965,5969,6007,6016,6026,6038,6053,6065,6075,6084,6088,6091,6108,6220,6288,6461,6475,6505,6510,6523,6537,6549,6564,6595,6661,6679,6703,6752,6796,6833,6864,6868,6904,6920,6924,6926,6930,6946,6953,6965,6974,7025,7029,7105,7106,7128,7146,7180,7224,7232,7276,7278,7315,7329,7354,7370,7417,7423,7429,7456,7495,7507,7509,7527,7601,7611,7618,7666,7677,7682,7686,7695,7706,7757,7765,7816,7833,7840,7844,7855,7891,7898,7899,7943,7979,8017,8023,8024,8050,8072,8087,8124,8181,8184,8210,8241,8260,8261,8273,8275,8304,8318,8340,8347,8353,8390,8396,8421,8442,8458,8470,8476,8536,8598,8738,8809,8834,8885,8897,8995,9052,9061,9112,9123,9137,9153,9171,9188,9204,9207,9215,9243,9270,9278,9294,9301,9314,9324,9334,9342,9353,9358,9368,9370,9377,9385,9386,9404,9420,9434,9452,9466,9467,9478,9482,9512,9513,9552,9560,9562,9581,9591,9596,9609,9628,9643,9654,9694,9698,9704,9725,9730,9732,9742,9778,9800,9802,9818,9892,9901,9937,10025,10033,10062,10096,10098,10102,10148,10156,10222,10223,10247,10249,10667,10817,10820,10864,10866,10874,10891,10908,10927,10930,11279,11281,11347,11397,11438,11439,11468,11514,11573,11574,11588,11643,11652,11681,11688,11700,11707,11718,11720,11952,12297,12300,12308,12360,12366,12371,12374,12375,12402,12417,12421,12674,12690,12703,12732,12751,12780,17687,17731,17736,17783,17789,17800,17803,17804,17805,17828,17862,17870,17877,17895,17931,17952,17981,17987,18059,18072,18092,18094,18113,18116,18163,18164,18331,18353,18390,18921,18945,19011,19018,19036,19077,19264,19265,19272,19317,19346,19381,19425,19546,19580,19604,19619,19675,19719,19755,19834,19843,19851,19858,19865,19885,19927,19958,19961,19963,19970,19979,19982,19991,19998,20166,20279,20280,20307,20391,20465,20518,20605,20630,20639,20668,20785,20896,20951,21101,21200,21224,21231,21249,21265,21301,21435,21443,21459,21616,21688,21689,21701,21702,21963,21976,22099,22104,22126,22339,22343,22361,22459,22466,22490,22576,22621,22643,22719,22795,22797,22799,22962,22963,22975,22989,23054,23061,23062,23063,23067,23074,23075,23081,23084]]],["pertained",[2,2,[[9,1,1,0,1,[[275,1,1,0,1]]],[11,1,1,1,2,[[336,1,1,1,2]]]],[8236,10209]]],["pertaineth",[1,1,[[8,1,1,0,1,[[262,1,1,0,1]]]],[7936]]],["quit",[2,1,[[8,2,1,0,1,[[239,2,1,0,1]]]],[7306]]],["reach",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2335]]],["received",[2,2,[[3,2,2,0,2,[[152,2,2,0,2]]]],[4882,4883]]],["remain",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3497]]],["remained",[1,1,[[3,1,1,0,1,[[152,1,1,0,1]]]],[4891]]],["required",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7780]]],["seem",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[739]]],["seemed",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[471]]],["set",[2,2,[[12,2,2,0,2,[[356,1,1,0,1],[357,1,1,1,2]]]],[10917,10928]]],["shall",[11,11,[[1,2,2,0,2,[[74,1,1,0,1],[75,1,1,1,2]]],[9,1,1,2,3,[[281,1,1,2,3]]],[18,1,1,3,4,[[599,1,1,3,4]]],[22,2,2,4,6,[[697,1,1,4,5],[708,1,1,5,6]]],[23,5,5,6,11,[[786,2,2,6,8],[788,1,1,8,9],[794,1,1,9,10],[795,1,1,10,11]]]],[2215,2248,8403,16091,18022,18237,19992,19993,20024,20169,20274]]],["shalt",[3,3,[[4,2,2,0,2,[[168,1,1,0,1],[180,1,1,1,2]]],[9,1,1,2,3,[[276,1,1,2,3]]]],[5357,5640,8251]]],["shew",[2,2,[[10,2,2,0,2,[[291,1,1,0,1],[292,1,1,1,2]]]],[8769,8772]]],["should",[3,3,[[15,1,1,0,1,[[425,1,1,0,1]]],[16,2,2,1,3,[[426,1,1,1,2],[434,1,1,2,3]]]],[12693,12724,12855]]],["take",[2,2,[[6,1,1,0,1,[[225,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]]],[6931,17930]]],["that",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8513]]],["up",[1,1,[[31,1,1,0,1,[[892,1,1,0,1]]]],[22578]]],["use",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[3990]]],["was",[511,482,[[0,68,63,0,63,[[0,8,8,0,8],[1,1,1,8,9],[2,2,2,9,11],[3,4,3,11,14],[4,1,1,14,15],[5,1,1,15,16],[6,3,3,16,19],[9,4,4,19,23],[10,2,2,23,25],[11,1,1,25,26],[12,2,2,26,28],[14,1,1,28,29],[16,1,1,29,30],[20,1,1,30,31],[22,1,1,31,32],[24,2,2,32,34],[25,4,3,34,37],[26,1,1,37,38],[28,1,1,38,39],[29,1,1,39,40],[30,1,1,40,41],[34,3,3,41,44],[35,1,1,44,45],[36,1,1,45,46],[37,4,4,46,50],[38,8,6,50,56],[40,5,4,56,60],[41,1,1,60,61],[46,1,1,61,62],[49,1,1,62,63]]],[1,19,18,63,81,[[50,1,1,63,64],[54,1,1,64,65],[56,1,1,65,66],[57,1,1,66,67],[58,4,3,67,70],[59,2,2,70,72],[60,1,1,72,73],[61,1,1,73,74],[63,1,1,74,75],[65,1,1,75,76],[73,1,1,76,77],[83,1,1,77,78],[87,1,1,78,79],[88,1,1,79,80],[89,1,1,80,81]]],[2,2,2,81,83,[[97,1,1,81,82],[104,1,1,82,83]]],[3,16,16,83,99,[[117,1,1,83,84],[123,1,1,84,85],[125,3,3,85,88],[127,1,1,88,89],[136,1,1,89,90],[142,1,1,90,91],[143,1,1,91,92],[147,6,6,92,98],[149,1,1,98,99]]],[4,4,4,99,103,[[154,2,2,99,101],[155,1,1,101,102],[185,1,1,102,103]]],[5,35,32,103,135,[[187,2,2,103,105],[189,1,1,105,106],[191,2,2,106,108],[192,2,1,108,109],[194,2,2,109,111],[196,1,1,111,112],[197,2,2,112,114],[199,5,5,114,119],[201,2,2,119,121],[202,2,1,121,122],[203,4,3,122,125],[204,1,1,125,126],[205,7,7,126,133],[207,1,1,133,134],[208,1,1,134,135]]],[6,30,29,135,164,[[211,1,1,135,136],[212,2,2,136,138],[213,1,1,138,139],[216,5,4,139,143],[217,2,2,143,145],[218,2,2,145,147],[219,1,1,147,148],[221,3,3,148,151],[222,1,1,151,152],[223,1,1,152,153],[224,1,1,153,154],[227,4,4,154,158],[228,1,1,158,159],[229,3,3,159,162],[230,2,2,162,164]]],[7,4,4,164,168,[[232,2,2,164,166],[233,1,1,166,167],[235,1,1,167,168]]],[8,40,38,168,206,[[236,3,3,168,171],[237,1,1,171,172],[238,2,2,172,174],[239,1,1,174,175],[240,3,2,175,177],[241,1,1,177,178],[242,4,4,178,182],[243,1,1,182,183],[244,1,1,183,184],[245,1,1,184,185],[246,1,1,185,186],[249,7,6,186,192],[252,1,1,192,193],[253,1,1,193,194],[254,5,5,194,199],[256,1,1,199,200],[257,1,1,200,201],[260,2,2,201,203],[262,1,1,203,204],[263,1,1,204,205],[265,1,1,205,206]]],[9,38,35,206,241,[[267,1,1,206,207],[268,3,2,207,209],[269,4,4,209,213],[270,1,1,213,214],[271,1,1,214,215],[272,1,1,215,216],[273,1,1,216,217],[276,1,1,217,218],[278,3,3,218,221],[279,1,1,221,222],[280,4,3,222,225],[281,3,3,225,228],[284,3,3,228,231],[286,1,1,231,232],[287,5,4,232,236],[288,2,2,236,238],[289,2,2,238,240],[290,1,1,240,241]]],[10,49,47,241,288,[[292,2,1,241,242],[293,2,2,242,244],[294,3,3,244,247],[295,3,3,247,250],[296,1,1,250,251],[297,1,1,251,252],[298,5,4,252,256],[300,5,5,256,261],[301,5,5,261,266],[302,2,2,266,268],[303,1,1,268,269],[304,3,3,269,272],[305,6,6,272,278],[307,1,1,278,279],[308,4,4,279,283],[309,1,1,283,284],[310,2,2,284,286],[311,1,1,286,287],[312,1,1,287,288]]],[11,32,30,288,318,[[315,3,3,288,291],[316,2,2,291,293],[317,3,2,293,295],[318,4,3,295,298],[319,1,1,298,299],[320,2,2,299,301],[323,1,1,301,302],[324,3,3,302,305],[326,1,1,305,306],[327,3,3,306,309],[329,2,2,309,311],[330,3,3,311,314],[332,1,1,314,315],[335,1,1,315,316],[337,2,2,316,318]]],[12,20,18,318,336,[[339,1,1,318,319],[341,1,1,319,320],[343,1,1,320,321],[346,1,1,321,322],[348,6,5,322,327],[354,1,1,327,328],[357,3,2,328,330],[359,1,1,330,331],[360,2,2,331,333],[362,2,2,333,335],[363,1,1,335,336]]],[13,34,33,336,369,[[367,2,2,336,338],[372,3,2,338,340],[375,4,4,340,344],[376,1,1,344,345],[379,2,2,345,347],[380,1,1,347,348],[381,2,2,348,350],[383,1,1,350,351],[384,1,1,351,352],[386,1,1,352,353],[387,1,1,353,354],[388,4,4,354,358],[390,1,1,358,359],[392,1,1,359,360],[393,1,1,360,361],[394,1,1,361,362],[395,3,3,362,365],[396,2,2,365,367],[398,2,2,367,369]]],[14,1,1,369,370,[[410,1,1,369,370]]],[15,10,9,370,379,[[413,2,2,370,372],[414,1,1,372,373],[417,2,2,373,375],[420,2,2,375,377],[425,3,2,377,379]]],[16,3,3,379,382,[[427,2,2,379,381],[430,1,1,381,382]]],[17,14,12,382,394,[[436,7,5,382,387],[437,1,1,387,388],[443,1,1,388,389],[451,1,1,389,390],[452,1,1,390,391],[464,2,2,391,393],[477,1,1,393,394]]],[18,11,11,394,405,[[495,2,2,394,396],[507,1,1,396,397],[508,1,1,397,398],[510,1,1,398,399],[515,1,1,399,400],[527,1,1,400,401],[530,1,1,401,402],[546,1,1,402,403],[550,1,1,403,404],[591,1,1,404,405]]],[19,4,3,405,408,[[631,1,1,405,406],[632,1,1,406,407],[635,2,1,407,408]]],[20,3,3,408,411,[[659,2,2,408,410],[660,1,1,410,411]]],[21,1,1,411,412,[[678,1,1,411,412]]],[22,8,8,412,420,[[688,1,1,412,413],[689,1,1,413,414],[692,1,1,414,415],[701,1,1,415,416],[706,1,1,416,417],[717,1,1,417,418],[726,1,1,418,419],[741,1,1,419,420]]],[23,16,16,420,436,[[758,2,2,420,422],[759,1,1,422,423],[761,1,1,423,424],[764,1,1,424,425],[770,2,2,425,427],[776,1,1,427,428],[781,1,1,428,429],[782,1,1,429,430],[783,1,1,430,431],[785,1,1,431,432],[790,1,1,432,433],[792,1,1,433,434],[796,2,2,434,436]]],[24,2,2,436,438,[[798,1,1,436,437],[799,1,1,437,438]]],[25,27,25,438,463,[[802,4,4,438,442],[804,2,2,442,444],[810,1,1,444,445],[816,1,1,445,446],[817,5,4,446,450],[818,1,1,450,451],[820,1,1,451,452],[822,1,1,452,453],[828,2,1,453,454],[832,2,2,454,456],[834,2,2,456,458],[836,1,1,458,459],[837,1,1,459,460],[838,2,2,460,462],[841,1,1,462,463]]],[26,8,7,463,470,[[857,4,3,463,466],[859,3,3,466,469],[861,1,1,469,470]]],[27,1,1,470,471,[[872,1,1,470,471]]],[29,1,1,471,472,[[879,1,1,471,472]]],[31,4,4,472,476,[[889,2,2,472,474],[891,1,1,474,475],[892,1,1,475,476]]],[34,1,1,476,477,[[905,1,1,476,477]]],[37,3,3,477,480,[[913,1,1,477,478],[917,1,1,478,479],[918,1,1,479,480]]],[38,2,2,480,482,[[926,2,2,480,482]]]],[1,2,6,8,10,14,23,29,35,56,75,81,99,100,137,146,165,171,176,243,244,253,264,267,296,308,324,325,377,398,533,572,678,685,693,720,726,757,812,859,913,1014,1016,1027,1052,1085,1124,1126,1140,1141,1151,1154,1155,1169,1170,1171,1208,1248,1249,1251,1257,1448,1515,1537,1645,1706,1725,1753,1766,1768,1790,1799,1812,1846,1909,1971,2195,2524,2657,2673,2745,2946,3178,3648,3862,3980,3981,3985,4032,4313,4553,4557,4680,4696,4700,4701,4707,4716,4774,4953,4974,4979,5815,5856,5868,5900,5935,5947,5976,6027,6037,6078,6126,6127,6170,6177,6179,6183,6184,6203,6204,6270,6276,6277,6282,6305,6322,6330,6331,6339,6346,6354,6362,6391,6443,6528,6560,6563,6599,6657,6681,6692,6694,6702,6709,6730,6745,6805,6830,6834,6868,6874,6886,6929,6981,6987,6991,6992,7024,7025,7026,7054,7057,7092,7128,7134,7166,7203,7213,7216,7230,7257,7277,7295,7307,7328,7330,7332,7354,7362,7365,7366,7371,7392,7427,7456,7522,7523,7526,7528,7533,7560,7660,7688,7713,7714,7715,7726,7729,7778,7791,7863,7881,7937,7962,8003,8024,8060,8066,8082,8083,8087,8118,8124,8134,8170,8189,8249,8289,8304,8316,8355,8381,8382,8383,8391,8394,8401,8484,8485,8486,8580,8581,8598,8599,8600,8621,8626,8664,8672,8708,8785,8828,8837,8845,8866,8875,8879,8890,8891,8913,8942,9002,9003,9039,9042,9081,9082,9084,9085,9093,9112,9123,9128,9133,9148,9166,9171,9208,9224,9246,9248,9252,9255,9256,9263,9265,9281,9334,9345,9348,9386,9387,9400,9437,9448,9476,9515,9580,9585,9603,9611,9644,9648,9655,9679,9699,9700,9723,9744,9745,9832,9856,9860,9866,9898,9927,9930,9958,9990,10008,10026,10029,10031,10111,10190,10225,10238,10309,10394,10508,10635,10675,10679,10686,10693,10694,10876,10931,10932,10971,10986,10994,11047,11053,11087,11197,11205,11289,11290,11365,11368,11373,11377,11410,11455,11460,11489,11507,11509,11526,11574,11616,11644,11647,11651,11655,11656,11681,11753,11763,11773,11799,11823,11827,11839,11853,11900,11906,12232,12297,12307,12318,12383,12400,12498,12510,12677,12697,12729,12744,12781,12870,12872,12874,12875,12882,12892,13036,13250,13266,13536,13547,13929,14136,14141,14326,14342,14375,14504,14689,14724,14945,15042,15824,16493,16531,16632,17325,17327,17343,17650,17864,17900,17956,18090,18177,18414,18630,18874,19297,19298,19331,19373,19431,19592,19596,19733,19887,19923,19938,19964,20047,20107,20282,20296,20337,20368,20467,20476,20484,20489,20505,20524,20625,20759,20777,20781,20811,20818,20832,20891,20966,21128,21233,21237,21302,21304,21354,21376,21398,21404,21478,21963,21966,21968,22017,22019,22024,22082,22244,22365,22535,22548,22561,22570,22772,22915,22969,22986,23108,23109]]],["wast",[15,14,[[0,1,1,0,1,[[39,1,1,0,1]]],[4,6,6,1,7,[[157,1,1,1,2],[167,1,1,2,3],[168,1,1,3,4],[175,1,1,4,5],[176,2,2,5,7]]],[7,1,1,7,8,[[234,1,1,7,8]]],[9,1,1,8,9,[[271,1,1,8,9]]],[17,1,1,9,10,[[473,1,1,9,10]]],[18,1,1,10,11,[[576,1,1,10,11]]],[25,4,3,11,14,[[817,2,1,11,12],[827,1,1,12,13],[829,1,1,13,14]]]],[1185,5068,5334,5354,5507,5543,5547,7174,8134,13797,15507,20784,21117,21171]]],["wear",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5475]]],["well",[1,1,[[2,1,1,0,1,[[113,1,1,0,1]]]],[3468]]],["went",[4,4,[[9,1,1,0,1,[[267,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]],[13,1,1,2,3,[[378,1,1,2,3]]],[23,1,1,3,4,[[751,1,1,3,4]]]],[8026,10558,11449,19143]]],["were",[226,218,[[0,38,38,0,38,[[0,6,6,0,6],[1,1,1,6,7],[3,1,1,7,8],[4,10,10,8,18],[5,1,1,18,19],[6,1,1,19,20],[8,2,2,20,22],[10,1,1,22,23],[24,1,1,23,24],[25,1,1,24,25],[26,1,1,25,26],[29,1,1,26,27],[33,2,2,27,29],[34,2,2,29,31],[35,5,5,31,36],[40,1,1,36,37],[45,1,1,37,38]]],[1,18,18,38,56,[[50,1,1,38,39],[57,1,1,39,40],[59,2,2,40,42],[66,1,1,42,43],[68,1,1,43,44],[71,1,1,44,45],[72,1,1,45,46],[83,1,1,46,47],[85,2,2,47,49],[86,5,5,49,54],[87,2,2,54,56]]],[2,1,1,56,57,[[108,1,1,56,57]]],[3,21,19,57,76,[[117,2,2,57,59],[119,2,2,59,61],[120,4,4,61,65],[125,2,1,65,66],[129,2,1,66,67],[131,1,1,67,68],[132,1,1,68,69],[135,1,1,69,70],[141,1,1,70,71],[142,5,5,71,76]]],[4,6,6,76,82,[[156,1,1,76,77],[157,1,1,77,78],[158,1,1,78,79],[162,2,2,79,81],[180,1,1,81,82]]],[5,21,21,82,103,[[191,2,2,82,84],[193,1,1,84,85],[194,1,1,85,86],[196,2,2,86,88],[200,1,1,88,89],[201,3,3,89,92],[202,1,1,92,93],[203,1,1,93,94],[204,4,4,94,98],[205,2,2,98,100],[206,1,1,100,101],[207,2,2,101,103]]],[6,8,8,103,111,[[213,1,1,103,104],[217,2,2,104,106],[222,1,1,106,107],[226,1,1,107,108],[227,1,1,108,109],[228,1,1,109,110],[230,1,1,110,111]]],[8,13,10,111,121,[[237,1,1,111,112],[246,1,1,112,113],[248,2,1,113,114],[249,2,2,114,116],[257,1,1,116,117],[260,6,4,117,121]]],[9,11,11,121,132,[[268,1,1,121,122],[270,1,1,122,123],[274,2,2,123,125],[276,1,1,125,126],[277,1,1,126,127],[278,1,1,127,128],[285,2,2,128,130],[286,1,1,130,131],[290,1,1,131,132]]],[10,9,9,132,141,[[291,1,1,132,133],[294,2,2,133,135],[295,1,1,135,136],[302,1,1,136,137],[304,2,2,137,139],[306,1,1,139,140],[310,1,1,140,141]]],[11,5,5,141,146,[[319,1,1,141,142],[329,1,1,142,143],[330,1,1,143,144],[331,1,1,144,145],[337,1,1,145,146]]],[12,21,21,146,167,[[338,1,1,146,147],[339,5,5,147,152],[340,1,1,152,153],[341,1,1,153,154],[344,1,1,154,155],[345,2,2,155,157],[346,2,2,157,159],[349,2,2,159,161],[353,1,1,161,162],[355,1,1,162,163],[356,1,1,163,164],[358,1,1,164,165],[360,1,1,165,166],[361,1,1,166,167]]],[13,6,6,167,173,[[379,1,1,167,168],[386,1,1,168,169],[388,1,1,169,170],[394,1,1,170,171],[395,1,1,171,172],[402,1,1,172,173]]],[15,2,2,173,175,[[413,1,1,173,174],[424,1,1,174,175]]],[16,1,1,175,176,[[431,1,1,175,176]]],[17,1,1,176,177,[[436,1,1,176,177]]],[18,4,4,177,181,[[532,1,1,177,178],[582,1,1,178,179],[583,1,1,179,180],[603,1,1,180,181]]],[20,1,1,181,182,[[665,1,1,181,182]]],[22,4,4,182,186,[[685,1,1,182,183],[708,1,1,183,184],[715,1,1,184,185],[724,1,1,185,186]]],[23,9,9,186,195,[[749,1,1,186,187],[755,1,1,187,188],[766,1,1,188,189],[778,1,1,189,190],[780,1,1,190,191],[785,2,2,191,193],[788,1,1,193,194],[796,1,1,194,195]]],[24,1,1,195,196,[[800,1,1,195,196]]],[25,16,14,196,210,[[802,1,1,196,197],[815,1,1,197,198],[818,1,1,198,199],[821,1,1,199,200],[823,1,1,200,201],[824,2,2,201,203],[828,7,5,203,208],[832,1,1,208,209],[841,1,1,209,210]]],[26,2,2,210,212,[[850,1,1,210,211],[859,1,1,211,212]]],[27,2,2,212,214,[[866,1,1,212,213],[870,1,1,213,214]]],[29,1,1,214,215,[[882,1,1,214,215]]],[33,1,1,215,216,[[902,1,1,215,216]]],[36,2,1,216,217,[[910,2,1,216,217]]],[37,1,1,217,218,[[918,1,1,217,218]]]],[4,7,12,18,22,30,55,87,109,110,113,116,119,122,125,128,132,136,141,169,223,234,298,661,727,750,872,985,1005,1033,1039,1047,1051,1053,1054,1062,1243,1398,1537,1728,1783,1791,1995,2042,2134,2153,2497,2595,2596,2613,2618,2621,2626,2629,2635,2660,3315,3649,3650,3709,3735,3779,3783,3787,3791,3971,4108,4185,4243,4307,4480,4496,4509,4510,4529,4551,5036,5082,5107,5188,5205,5673,5939,5941,5988,6024,6065,6090,6191,6206,6209,6223,6273,6284,6305,6307,6312,6314,6343,6354,6381,6421,6423,6572,6695,6700,6871,6979,6984,7023,7100,7267,7453,7487,7529,7557,7789,7868,7876,7877,7904,8067,8123,8216,8227,8245,8282,8287,8520,8539,8557,8701,8725,8872,8876,8892,9182,9227,9242,9316,9423,9710,9985,10029,10087,10247,10303,10331,10333,10334,10339,10356,10362,10399,10554,10578,10615,10639,10641,10741,10759,10839,10897,10912,10939,10994,11020,11466,11612,11648,11787,11825,12013,12305,12636,12794,12883,14750,15618,15687,16116,17439,17805,18221,18379,18587,19066,19239,19478,19806,19870,19959,19960,20027,20299,20430,20480,20745,20831,20919,20982,21009,21011,21129,21130,21131,21132,21140,21238,21498,21743,22022,22162,22218,22421,22721,22871,22989]]],["when",[3,3,[[1,1,1,0,1,[[68,1,1,0,1]]],[8,2,2,1,3,[[251,2,2,1,3]]]],[2045,7611,7618]]],["while",[1,1,[[10,1,1,0,1,[[302,1,1,0,1]]]],[9157]]]]},{"k":"H1962","v":[]},{"k":"H1963","v":[["*",[2,2,[[12,1,1,0,1,[[350,1,1,0,1]]],[26,1,1,1,2,[[859,1,1,1,2]]]],[10772,22032]]],["How",[1,1,[[12,1,1,0,1,[[350,1,1,0,1]]]],[10772]]],["how",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22032]]]]},{"k":"H1964","v":[["*",[80,76,[[8,2,2,0,2,[[236,1,1,0,1],[238,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[10,7,7,3,10,[[296,4,4,3,7],[297,2,2,7,9],[311,1,1,9,10]]],[11,4,4,10,14,[[330,1,1,10,11],[332,1,1,11,12],[335,1,1,12,13],[336,1,1,13,14]]],[13,8,8,14,22,[[369,1,1,14,15],[370,3,3,15,18],[392,1,1,18,19],[393,1,1,19,20],[395,1,1,20,21],[402,1,1,21,22]]],[14,3,3,22,25,[[405,2,2,22,24],[406,1,1,24,25]]],[15,3,2,25,27,[[418,3,2,25,27]]],[18,13,13,27,40,[[482,1,1,27,28],[488,1,1,28,29],[495,1,1,29,30],[504,1,1,30,31],[506,1,1,31,32],[522,2,2,32,34],[525,1,1,34,35],[542,1,1,35,36],[545,1,1,36,37],[556,1,1,37,38],[615,1,1,38,39],[621,1,1,39,40]]],[19,1,1,40,41,[[657,1,1,40,41]]],[22,5,5,41,46,[[684,1,1,41,42],[691,1,1,42,43],[717,1,1,43,44],[722,1,1,44,45],[744,1,1,45,46]]],[23,6,4,46,50,[[751,3,1,46,47],[768,1,1,47,48],[794,1,1,48,49],[795,1,1,49,50]]],[25,10,9,50,59,[[809,2,1,50,51],[842,7,7,51,58],[843,1,1,58,59]]],[26,1,1,59,60,[[850,1,1,59,60]]],[27,1,1,60,61,[[869,1,1,60,61]]],[28,1,1,61,62,[[878,1,1,61,62]]],[29,1,1,62,63,[[886,1,1,62,63]]],[31,2,2,63,65,[[890,2,2,63,65]]],[32,1,1,65,66,[[893,1,1,65,66]]],[33,1,1,66,67,[[901,1,1,66,67]]],[34,1,1,67,68,[[904,1,1,67,68]]],[36,2,2,68,70,[[910,2,2,68,70]]],[37,5,5,70,75,[[916,4,4,70,74],[918,1,1,74,75]]],[38,1,1,75,76,[[927,1,1,75,76]]]],[7221,7279,8609,8899,8901,8913,8929,8955,8984,9452,10040,10116,10169,10215,11246,11253,11254,11268,11748,11757,11807,12000,12103,12107,12111,12411,12412,13980,14063,14124,14289,14317,14605,14612,14643,14864,14929,15186,16233,16317,17279,17770,17928,18419,18561,18928,19123,19525,20194,20223,20620,21527,21530,21541,21546,21547,21549,21551,21560,21741,22208,22348,22484,22552,22555,22581,22705,22768,22870,22873,22959,22960,22961,22962,22985,23121]]],["+",[7,7,[[9,1,1,0,1,[[288,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]],[18,2,2,2,4,[[495,1,1,2,3],[545,1,1,3,4]]],[22,1,1,4,5,[[744,1,1,4,5]]],[32,1,1,5,6,[[893,1,1,5,6]]],[36,1,1,6,7,[[910,1,1,6,7]]]],[8609,10169,14124,14929,18928,22581,22873]]],["palace",[7,7,[[10,1,1,0,1,[[311,1,1,0,1]]],[11,1,1,1,2,[[332,1,1,1,2]]],[18,2,2,2,4,[[522,1,1,2,3],[621,1,1,3,4]]],[22,1,1,4,5,[[717,1,1,4,5]]],[26,1,1,5,6,[[850,1,1,5,6]]],[33,1,1,6,7,[[901,1,1,6,7]]]],[9452,10116,14612,16317,18419,21741,22705]]],["palaces",[3,3,[[18,1,1,0,1,[[522,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]],[22,1,1,2,3,[[691,1,1,2,3]]]],[14605,17279,17928]]],["temple",[61,57,[[8,2,2,0,2,[[236,1,1,0,1],[238,1,1,1,2]]],[10,6,6,2,8,[[296,4,4,2,6],[297,2,2,6,8]]],[11,2,2,8,10,[[330,1,1,8,9],[336,1,1,9,10]]],[13,8,8,10,18,[[369,1,1,10,11],[370,3,3,11,14],[392,1,1,14,15],[393,1,1,15,16],[395,1,1,16,17],[402,1,1,17,18]]],[14,3,3,18,21,[[405,2,2,18,20],[406,1,1,20,21]]],[15,3,2,21,23,[[418,3,2,21,23]]],[18,8,8,23,31,[[482,1,1,23,24],[488,1,1,24,25],[504,1,1,25,26],[506,1,1,26,27],[525,1,1,27,28],[542,1,1,28,29],[556,1,1,29,30],[615,1,1,30,31]]],[22,2,2,31,33,[[684,1,1,31,32],[722,1,1,32,33]]],[23,6,4,33,37,[[751,3,1,33,34],[768,1,1,34,35],[794,1,1,35,36],[795,1,1,36,37]]],[25,10,9,37,46,[[809,2,1,37,38],[842,7,7,38,45],[843,1,1,45,46]]],[29,1,1,46,47,[[886,1,1,46,47]]],[31,2,2,47,49,[[890,2,2,47,49]]],[34,1,1,49,50,[[904,1,1,49,50]]],[36,1,1,50,51,[[910,1,1,50,51]]],[37,5,5,51,56,[[916,4,4,51,55],[918,1,1,55,56]]],[38,1,1,56,57,[[927,1,1,56,57]]]],[7221,7279,8899,8901,8913,8929,8955,8984,10040,10215,11246,11253,11254,11268,11748,11757,11807,12000,12103,12107,12111,12411,12412,13980,14063,14289,14317,14643,14864,15186,16233,17770,18561,19123,19525,20194,20223,20620,21527,21530,21541,21546,21547,21549,21551,21560,22484,22552,22555,22768,22870,22959,22960,22961,22962,22985,23121]]],["temples",[2,2,[[27,1,1,0,1,[[869,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]]],[22208,22348]]]]},{"k":"H1965","v":[["*",[13,10,[[14,7,4,0,4,[[406,1,1,0,1],[407,4,2,1,3],[408,2,1,3,4]]],[26,6,6,4,10,[[853,2,2,4,6],[854,3,3,6,9],[855,1,1,9,10]]]],[12124,12148,12149,12156,21841,21866,21876,21877,21879,21923]]],["palace",[5,5,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,4,4,1,5,[[853,2,2,1,3],[854,1,1,3,4],[855,1,1,4,5]]]],[12124,21841,21866,21879,21923]]],["temple",[8,5,[[14,6,3,0,3,[[407,4,2,0,2],[408,2,1,2,3]]],[26,2,2,3,5,[[854,2,2,3,5]]]],[12148,12149,12156,21876,21877]]]]},{"k":"H1966","v":[["Lucifer",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17940]]]]},{"k":"H1967","v":[["Hemam",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1062]]]]},{"k":"H1968","v":[["Heman",[16,14,[[10,1,1,0,1,[[294,1,1,0,1]]],[12,12,10,1,11,[[339,1,1,1,2],[343,1,1,2,3],[352,2,2,3,5],[353,2,2,5,7],[362,6,4,7,11]]],[13,3,3,11,14,[[371,1,1,11,12],[395,1,1,12,13],[401,1,1,13,14]]]],[8875,10312,10487,10808,10810,10861,10862,11047,11050,11051,11052,11280,11805,11981]]]]},{"k":"H1969","v":[["hin",[22,19,[[1,3,2,0,2,[[78,2,1,0,1],[79,1,1,1,2]]],[2,2,2,2,4,[[108,1,1,2,3],[112,1,1,3,4]]],[3,11,9,4,13,[[131,6,6,4,10],[144,5,3,10,13]]],[25,6,6,13,19,[[805,1,1,13,14],[846,1,1,14,15],[847,4,4,15,19]]]],[2376,2406,3317,3415,4157,4158,4159,4160,4162,4163,4582,4584,4591,20540,21654,21660,21662,21666,21669]]]]},{"k":"H1970","v":[["strange",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13300]]]]},{"k":"H1971","v":[["shew",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17716]]]]},{"k":"H1972","v":[["off",[1,1,[[32,1,1,0,1,[[896,1,1,0,1]]]],[22627]]]]},{"k":"H1973","v":[["*",[16,16,[[0,2,2,0,2,[[18,1,1,0,1],[34,1,1,1,2]]],[2,1,1,2,3,[[111,1,1,2,3]]],[3,3,3,3,6,[[131,1,1,3,4],[132,1,1,4,5],[148,1,1,5,6]]],[8,4,4,6,10,[[245,1,1,6,7],[253,1,1,7,8],[255,2,2,8,10]]],[22,2,2,10,12,[[696,2,2,10,12]]],[23,1,1,12,13,[[766,1,1,12,13]]],[25,2,2,13,15,[[840,1,1,13,14],[844,1,1,14,15]]],[29,1,1,15,16,[[883,1,1,15,16]]]],[466,1032,3396,4176,4231,4737,7421,7685,7752,7767,17999,18004,19473,21470,21599,22450]]],["+",[5,5,[[0,1,1,0,1,[[34,1,1,0,1]]],[8,2,2,1,3,[[255,2,2,1,3]]],[23,1,1,3,4,[[766,1,1,3,4]]],[29,1,1,4,5,[[883,1,1,4,5]]]],[1032,7752,7767,19473,22450]]],["back",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[466]]],["forward",[5,5,[[3,1,1,0,1,[[148,1,1,0,1]]],[8,2,2,1,3,[[245,1,1,1,2],[253,1,1,2,3]]],[25,2,2,3,5,[[840,1,1,3,4],[844,1,1,4,5]]]],[4737,7421,7685,21470,21599]]],["henceforward",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4176]]],["hitherto",[2,2,[[22,2,2,0,2,[[696,2,2,0,2]]]],[17999,18004]]],["thenceforth",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3396]]],["yonder",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4231]]]]},{"k":"H1974","v":[["*",[2,2,[[2,1,1,0,1,[[108,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]]],[3305,6781]]],["merry",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6781]]],["praise",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3305]]]]},{"k":"H1975","v":[["*",[7,7,[[6,1,1,0,1,[[216,1,1,0,1]]],[8,2,2,1,3,[[249,1,1,1,2],[252,1,1,2,3]]],[11,2,2,3,5,[[316,1,1,3,4],[335,1,1,4,5]]],[26,1,1,5,6,[[857,1,1,5,6]]],[37,1,1,6,7,[[912,1,1,6,7]]]],[6674,7509,7644,9628,10182,21977,22903]]],["+",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7509]]],["that",[2,2,[[11,2,2,0,2,[[316,1,1,0,1],[335,1,1,1,2]]]],[9628,10182]]],["this",[4,4,[[6,1,1,0,1,[[216,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[26,1,1,2,3,[[857,1,1,2,3]]],[37,1,1,3,4,[[912,1,1,3,4]]]],[6674,7644,21977,22903]]]]},{"k":"H1976","v":[["this",[2,2,[[0,2,2,0,2,[[23,1,1,0,1],[36,1,1,1,2]]]],[656,1102]]]]},{"k":"H1977","v":[["This",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21394]]]]},{"k":"H1978","v":[["steps",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13538]]]]},{"k":"H1979","v":[["*",[6,5,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,2,1,1,2,[[545,2,1,1,2]]],[19,1,1,2,3,[[658,1,1,2,3]]],[33,1,1,3,4,[[901,1,1,3,4]]],[34,1,1,4,5,[[905,1,1,4,5]]]],[12997,14924,17311,22704,22774]]],["companies",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12997]]],["goings",[2,1,[[18,2,1,0,1,[[545,2,1,0,1]]]],[14924]]],["walk",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22704]]],["ways",[2,2,[[19,1,1,0,1,[[658,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[17311,22774]]]]},{"k":"H1980","v":[["*",[1544,1345,[[0,121,113,0,113,[[1,1,1,0,1],[2,2,2,1,3],[4,2,2,3,5],[5,1,1,5,6],[6,1,1,6,7],[7,2,2,7,9],[8,1,1,9,10],[10,1,1,10,11],[11,6,5,11,16],[12,3,3,16,19],[13,3,3,19,22],[14,1,1,22,23],[15,1,1,23,24],[16,1,1,24,25],[17,3,3,25,28],[18,2,2,28,30],[20,3,3,30,33],[21,7,7,33,40],[23,17,14,40,54],[24,3,3,54,57],[25,7,6,57,63],[26,4,4,63,67],[27,7,7,67,74],[28,2,2,74,76],[29,3,3,76,79],[30,5,4,79,83],[31,5,5,83,88],[32,2,1,88,89],[33,1,1,89,90],[34,2,2,90,92],[35,1,1,92,93],[36,8,7,93,100],[37,2,2,100,102],[40,1,1,102,103],[41,4,4,103,107],[42,1,1,107,108],[44,3,3,108,111],[47,1,1,111,112],[49,1,1,112,113]]],[1,73,62,113,175,[[51,6,5,113,118],[52,7,6,118,124],[53,9,6,124,130],[54,7,7,130,137],[56,1,1,137,138],[57,3,3,138,141],[58,1,1,141,142],[59,9,6,142,148],[61,3,3,148,151],[62,2,1,151,152],[63,4,3,152,155],[64,2,2,155,157],[65,1,1,157,158],[66,1,1,158,159],[67,2,2,159,161],[68,3,3,161,164],[70,1,1,164,165],[72,1,1,165,166],[81,5,4,166,170],[82,4,4,170,174],[83,1,1,174,175]]],[2,20,18,175,193,[[100,6,4,175,179],[107,2,2,179,181],[108,1,1,181,182],[109,1,1,182,183],[115,10,10,183,193]]],[3,45,37,193,230,[[126,4,3,193,196],[128,1,1,196,197],[129,1,1,197,198],[130,2,2,198,200],[132,3,2,200,202],[136,1,1,202,203],[137,1,1,203,204],[138,17,15,204,219],[139,6,4,219,223],[140,5,3,223,226],[148,3,3,226,229],[149,1,1,229,230]]],[4,53,52,230,282,[[153,5,4,230,234],[154,3,3,234,237],[156,1,1,237,238],[157,2,2,238,240],[158,2,2,240,242],[160,4,4,242,246],[162,2,2,246,248],[163,3,3,248,251],[165,5,5,251,256],[166,1,1,256,257],[168,1,1,257,258],[169,1,1,258,259],[171,1,1,259,260],[172,5,5,260,265],[175,1,1,265,266],[176,1,1,266,267],[178,2,2,267,269],[180,4,4,269,273],[181,4,4,273,277],[182,1,1,277,278],[183,4,4,278,282]]],[5,51,39,282,321,[[187,3,3,282,285],[188,7,5,285,290],[189,3,3,290,293],[190,1,1,293,294],[191,2,2,294,296],[192,9,3,296,299],[194,3,3,299,302],[195,4,4,302,306],[196,1,1,306,307],[200,1,1,307,308],[202,1,1,308,309],[203,1,1,309,310],[204,6,3,310,313],[208,5,4,313,317],[209,2,2,317,319],[210,2,2,319,321]]],[6,110,89,321,410,[[211,7,6,321,327],[212,5,5,327,332],[213,1,1,332,333],[214,12,5,333,338],[215,3,2,338,340],[216,2,2,340,342],[217,5,2,342,344],[218,2,2,344,346],[219,16,15,346,361],[220,1,1,361,362],[221,10,9,362,371],[222,1,1,371,372],[223,1,1,372,373],[224,4,2,373,375],[225,1,1,375,376],[226,1,1,376,377],[227,3,3,377,380],[228,11,10,380,390],[229,18,14,390,404],[230,1,1,404,405],[231,5,5,405,410]]],[7,18,15,410,425,[[232,10,9,410,419],[233,7,5,419,424],[234,1,1,424,425]]],[8,138,111,425,536,[[236,2,2,425,427],[237,5,5,427,432],[238,5,4,432,436],[241,5,3,436,439],[242,1,1,439,440],[243,3,3,440,443],[244,11,6,443,449],[245,6,4,449,453],[246,3,2,453,455],[247,2,1,455,456],[249,8,7,456,463],[250,7,7,463,470],[251,3,3,470,473],[252,16,12,473,485],[253,1,1,485,486],[254,6,4,486,490],[255,7,6,490,496],[257,4,3,496,499],[258,16,13,499,512],[259,3,3,512,515],[260,4,3,515,518],[261,4,4,518,522],[263,4,4,522,526],[264,4,4,526,530],[265,7,5,530,535],[266,1,1,535,536]]],[9,96,78,536,614,[[268,4,3,536,539],[269,11,7,539,546],[270,2,2,546,548],[271,3,2,548,550],[272,4,4,550,554],[273,6,6,554,560],[274,3,3,560,563],[276,1,1,563,564],[277,2,2,564,566],[278,3,3,566,569],[279,14,11,569,580],[280,4,4,580,584],[281,13,9,584,593],[282,4,2,593,595],[283,7,5,595,600],[284,5,4,600,604],[285,4,4,604,608],[286,2,2,608,610],[287,1,1,610,611],[289,1,1,611,612],[290,2,2,612,614]]],[10,122,106,614,720,[[291,6,6,614,620],[292,10,9,620,629],[293,5,4,629,633],[296,2,1,633,634],[298,7,6,634,640],[299,3,2,640,642],[300,1,1,642,643],[301,7,7,643,650],[302,6,5,650,655],[303,10,8,655,663],[304,7,7,663,670],[305,4,4,670,674],[306,5,4,674,678],[307,7,6,678,684],[308,16,13,684,697],[309,8,7,697,704],[310,7,6,704,710],[311,2,2,710,712],[312,9,8,712,720]]],[11,98,88,720,808,[[313,4,4,720,724],[314,7,7,724,731],[315,4,3,731,734],[316,9,9,734,743],[317,10,8,743,751],[318,11,7,751,758],[319,6,5,758,763],[320,9,9,763,772],[321,6,6,772,778],[322,5,5,778,783],[325,4,4,783,787],[326,1,1,787,788],[328,2,2,788,790],[329,6,5,790,795],[331,1,1,795,796],[332,2,2,796,798],[333,3,2,798,800],[334,3,3,800,803],[335,2,2,803,805],[336,1,1,805,806],[337,2,2,806,808]]],[12,23,22,808,830,[[341,2,2,808,810],[343,1,1,810,811],[348,3,2,811,813],[349,1,1,813,814],[352,1,1,814,815],[353,2,2,815,817],[354,5,5,817,822],[355,3,3,822,825],[356,1,1,825,826],[358,4,4,826,830]]],[13,52,49,830,879,[[367,1,1,830,831],[372,5,4,831,835],[373,3,2,835,837],[374,2,2,837,839],[375,2,2,839,841],[376,3,3,841,844],[377,3,3,844,847],[382,1,1,847,848],[383,3,3,848,851],[384,4,4,851,855],[386,3,3,855,858],[387,4,4,858,862],[388,3,2,862,864],[390,1,1,864,865],[391,4,4,865,869],[392,1,1,869,870],[394,1,1,870,871],[396,1,1,871,872],[399,1,1,872,873],[400,4,4,873,877],[401,1,1,877,878],[402,1,1,878,879]]],[14,3,2,879,881,[[410,1,1,879,880],[412,2,1,880,881]]],[15,14,14,881,895,[[414,2,2,881,883],[417,1,1,883,884],[418,3,3,884,887],[420,2,2,887,889],[421,2,2,889,891],[422,1,1,891,892],[424,3,3,892,895]]],[16,4,3,895,898,[[427,1,1,895,896],[429,1,1,896,897],[434,2,1,897,898]]],[17,29,29,898,927,[[436,2,2,898,900],[437,1,1,900,901],[442,1,1,901,902],[445,1,1,902,903],[447,2,2,903,905],[449,1,1,905,906],[451,2,2,906,908],[453,1,1,908,909],[454,1,1,909,910],[455,1,1,910,911],[457,1,1,911,912],[458,1,1,912,913],[459,1,1,913,914],[462,1,1,914,915],[464,1,1,915,916],[465,1,1,916,917],[466,3,3,917,920],[469,2,2,920,922],[473,2,2,922,924],[476,1,1,924,925],[477,2,2,925,927]]],[18,67,66,927,993,[[478,1,1,927,928],[489,1,1,928,929],[492,1,1,929,930],[500,1,1,930,931],[503,3,3,931,934],[509,1,1,934,935],[511,1,1,935,936],[512,1,1,936,937],[515,1,1,937,938],[516,2,2,938,940],[519,1,1,940,941],[520,1,1,941,942],[523,1,1,942,943],[532,1,1,943,944],[533,1,1,944,945],[535,2,2,945,947],[543,2,2,947,949],[545,1,1,949,950],[550,1,1,950,951],[554,1,1,951,952],[555,2,2,952,954],[557,1,1,954,955],[558,2,2,955,957],[559,1,1,957,958],[560,1,1,958,959],[561,2,2,959,961],[562,1,1,961,962],[563,1,1,962,963],[566,2,2,963,965],[568,1,1,965,966],[572,1,1,966,967],[574,1,1,967,968],[578,2,2,968,970],[581,3,3,970,973],[582,2,2,973,975],[583,1,1,975,976],[584,1,1,976,977],[586,1,1,977,978],[592,1,1,978,979],[593,1,1,979,980],[596,3,3,980,983],[599,1,1,983,984],[602,1,1,984,985],[603,2,1,985,986],[605,1,1,986,987],[608,1,1,987,988],[613,1,1,988,989],[615,1,1,989,990],[616,1,1,990,991],[619,1,1,991,992],[620,1,1,992,993]]],[19,38,37,993,1030,[[628,2,2,993,995],[629,3,3,995,998],[630,2,2,998,1000],[631,2,2,1000,1002],[633,6,6,1002,1008],[634,3,3,1008,1011],[635,1,1,1011,1012],[636,1,1,1012,1013],[637,2,1,1013,1014],[638,1,1,1014,1015],[640,1,1,1015,1016],[641,2,2,1016,1018],[642,2,2,1018,1020],[643,1,1,1020,1021],[646,1,1,1021,1022],[647,2,2,1022,1024],[650,1,1,1024,1025],[651,1,1,1025,1026],[655,3,3,1026,1029],[657,1,1,1029,1030]]],[20,30,25,1030,1055,[[659,6,3,1030,1033],[660,2,2,1033,1035],[661,1,1,1035,1036],[662,1,1,1036,1037],[663,4,3,1037,1040],[664,4,4,1040,1044],[665,2,1,1044,1045],[666,2,2,1045,1047],[667,2,2,1047,1049],[668,4,4,1049,1053],[669,1,1,1053,1054],[670,1,1,1054,1055]]],[21,7,7,1055,1062,[[672,3,3,1055,1058],[674,1,1,1058,1059],[676,1,1,1059,1060],[677,2,2,1060,1062]]],[22,62,53,1062,1115,[[679,1,1,1062,1063],[680,5,2,1063,1065],[681,3,1,1065,1066],[684,2,2,1066,1068],[686,3,3,1068,1071],[687,1,1,1071,1072],[696,1,1,1072,1073],[698,3,2,1073,1075],[699,1,1,1075,1076],[700,1,1,1076,1077],[704,1,1,1077,1078],[706,1,1,1078,1079],[708,3,3,1079,1082],[711,2,2,1082,1084],[713,2,2,1084,1086],[715,1,1,1086,1087],[716,3,3,1087,1090],[718,1,1,1090,1091],[720,3,3,1091,1094],[721,1,1,1094,1095],[723,3,3,1095,1098],[724,1,1,1098,1099],[726,2,2,1099,1101],[728,2,2,1101,1103],[730,2,1,1103,1104],[733,4,2,1104,1106],[735,2,2,1106,1108],[736,1,1,1108,1109],[737,1,1,1109,1110],[738,2,2,1110,1112],[741,2,2,1112,1114],[743,1,1,1114,1115]]],[23,116,103,1115,1218,[[745,1,1,1115,1116],[746,8,7,1116,1123],[747,6,6,1123,1129],[749,2,2,1129,1131],[750,4,3,1131,1134],[751,5,5,1134,1139],[752,1,1,1139,1140],[753,5,5,1140,1145],[754,1,1,1145,1146],[755,3,3,1146,1149],[756,2,2,1149,1151],[757,7,6,1151,1157],[759,1,1,1157,1158],[760,3,3,1158,1161],[761,1,1,1161,1162],[762,4,3,1162,1165],[763,2,2,1165,1167],[764,1,1,1167,1168],[766,2,2,1168,1170],[767,2,2,1170,1172],[769,1,1,1172,1173],[770,1,1,1173,1174],[772,2,2,1174,1176],[773,1,1,1176,1177],[774,1,1,1177,1178],[775,3,3,1178,1181],[776,2,2,1181,1183],[778,1,1,1183,1184],[779,3,3,1184,1187],[780,2,2,1187,1189],[781,4,2,1189,1191],[783,1,1,1191,1192],[784,5,3,1192,1195],[785,8,6,1195,1201],[786,1,1,1201,1202],[788,3,3,1202,1205],[789,1,1,1205,1206],[790,2,1,1206,1207],[792,3,2,1207,1209],[793,1,1,1209,1210],[794,4,3,1210,1213],[795,3,3,1213,1216],[796,2,2,1216,1218]]],[24,6,6,1218,1224,[[797,3,3,1218,1221],[799,1,1,1221,1222],[800,1,1,1222,1223],[801,1,1,1223,1224]]],[25,67,51,1224,1275,[[802,18,8,1224,1232],[804,4,4,1232,1236],[806,2,2,1236,1238],[808,2,2,1238,1240],[811,8,3,1240,1243],[812,3,3,1243,1246],[813,1,1,1246,1247],[814,1,1,1247,1248],[817,1,1,1248,1249],[819,2,2,1249,1251],[820,1,1,1251,1252],[821,7,6,1252,1258],[822,1,1,1258,1259],[824,1,1,1259,1260],[826,1,1,1260,1261],[829,1,1,1261,1262],[831,2,2,1262,1264],[832,1,1,1264,1265],[833,1,1,1265,1266],[834,2,2,1266,1268],[837,2,2,1268,1270],[838,2,2,1270,1272],[841,1,1,1272,1273],[844,1,1,1273,1274],[848,1,1,1274,1275]]],[26,3,3,1275,1278,[[858,1,1,1275,1276],[861,2,2,1276,1278]]],[27,22,22,1278,1300,[[862,2,2,1278,1280],[863,4,4,1280,1284],[864,1,1,1284,1285],[866,5,5,1285,1290],[867,2,2,1290,1292],[868,2,2,1292,1294],[870,1,1,1294,1295],[872,2,2,1295,1297],[874,1,1,1297,1298],[875,2,2,1298,1300]]],[28,4,3,1300,1303,[[877,2,2,1300,1302],[878,2,1,1302,1303]]],[29,9,9,1303,1312,[[879,1,1,1303,1304],[880,3,3,1304,1307],[881,1,1,1307,1308],[884,1,1,1308,1309],[885,2,2,1309,1311],[887,1,1,1311,1312]]],[31,6,6,1312,1318,[[889,4,4,1312,1316],[891,2,2,1316,1318]]],[32,12,9,1318,1327,[[893,1,1,1318,1319],[894,4,4,1319,1323],[896,5,2,1323,1325],[898,2,2,1325,1327]]],[33,2,2,1327,1329,[[901,1,1,1327,1328],[902,1,1,1328,1329]]],[34,3,3,1329,1332,[[903,1,1,1329,1330],[905,2,2,1330,1332]]],[35,1,1,1332,1333,[[906,1,1,1332,1333]]],[37,17,10,1333,1343,[[911,2,2,1333,1335],[912,1,1,1335,1336],[913,1,1,1336,1337],[915,1,1,1337,1338],[916,5,1,1338,1339],[918,5,2,1339,1341],[919,1,1,1341,1342],[920,1,1,1342,1343]]],[38,2,2,1343,1345,[[926,1,1,1343,1344],[927,1,1,1344,1345]]]],[44,63,69,127,129,146,177,186,188,228,297,299,302,303,307,317,321,323,335,347,348,360,362,389,398,440,446,457,459,489,527,529,532,549,550,552,553,555,560,566,595,596,599,601,629,630,631,633,642,646,647,649,652,656,680,690,692,693,705,708,709,718,723,732,736,740,741,775,778,780,782,783,788,793,796,802,844,855,856,892,903,917,928,929,934,945,947,948,972,997,1014,1033,1046,1095,1096,1097,1100,1103,1108,1110,1130,1138,1250,1271,1278,1285,1290,1298,1375,1382,1386,1466,1524,1555,1559,1561,1562,1563,1589,1590,1595,1597,1598,1600,1613,1619,1620,1622,1628,1630,1635,1636,1639,1640,1643,1649,1650,1700,1735,1737,1738,1765,1785,1786,1788,1801,1803,1805,1844,1847,1848,1888,1908,1910,1918,1939,1942,1951,1988,2019,2026,2036,2045,2050,2096,2167,2439,2445,2461,2472,2474,2487,2488,2489,2505,3017,3018,3024,3039,3254,3255,3297,3341,3527,3536,3537,3545,3547,3548,3551,3552,3564,3565,4017,4018,4020,4068,4101,4122,4146,4219,4240,4328,4362,4381,4382,4386,4387,4388,4389,4391,4392,4395,4396,4397,4398,4410,4412,4414,4419,4423,4429,4443,4447,4460,4471,4757,4759,4760,4768,4911,4922,4923,4925,4945,4952,4965,5007,5083,5086,5093,5100,5139,5143,5152,5156,5197,5198,5227,5230,5236,5274,5276,5277,5278,5285,5315,5349,5367,5415,5431,5432,5433,5434,5435,5514,5527,5568,5583,5620,5625,5647,5652,5684,5697,5698,5705,5724,5729,5734,5736,5742,5858,5860,5867,5870,5874,5885,5890,5891,5896,5897,5899,5928,5940,5947,5957,5958,5962,6011,6015,6037,6041,6043,6048,6049,6088,6197,6273,6282,6297,6301,6302,6430,6431,6432,6435,6474,6476,6479,6493,6512,6519,6520,6525,6526,6535,6551,6557,6562,6564,6567,6581,6605,6607,6608,6621,6623,6629,6633,6668,6675,6698,6701,6720,6748,6755,6758,6760,6761,6762,6763,6764,6765,6766,6767,6768,6775,6803,6804,6809,6825,6834,6835,6837,6840,6845,6847,6866,6867,6869,6870,6895,6912,6918,6933,6950,6988,6989,6990,6995,6998,6999,7000,7002,7007,7012,7014,7017,7019,7026,7027,7029,7031,7032,7033,7034,7035,7037,7038,7041,7042,7051,7052,7062,7112,7122,7123,7125,7126,7128,7134,7135,7138,7139,7143,7145,7146,7148,7151,7152,7157,7158,7160,7182,7229,7230,7251,7260,7266,7270,7275,7281,7282,7284,7285,7337,7339,7343,7368,7372,7374,7391,7394,7396,7397,7398,7400,7401,7420,7427,7432,7444,7459,7460,7462,7509,7511,7514,7524,7525,7527,7554,7563,7566,7578,7580,7587,7592,7594,7596,7597,7608,7625,7631,7632,7633,7638,7650,7651,7655,7657,7659,7662,7666,7703,7718,7724,7728,7729,7741,7743,7751,7752,7770,7772,7788,7790,7792,7812,7813,7815,7823,7826,7828,7832,7833,7834,7835,7836,7837,7838,7841,7846,7861,7876,7888,7903,7916,7917,7924,7930,7949,7950,7964,7967,7974,7975,7977,7978,7980,7987,7999,8000,8009,8021,8068,8078,8081,8082,8097,8100,8102,8103,8104,8105,8125,8127,8138,8142,8159,8161,8169,8176,8183,8185,8186,8187,8189,8203,8212,8215,8223,8251,8261,8281,8301,8309,8315,8324,8325,8330,8332,8336,8341,8342,8343,8351,8354,8355,8364,8377,8379,8386,8396,8398,8400,8401,8403,8408,8409,8411,8419,8439,8443,8460,8466,8467,8470,8472,8499,8502,8503,8511,8526,8535,8536,8537,8559,8575,8592,8670,8693,8704,8729,8730,8755,8766,8767,8770,8772,8773,8774,8778,8796,8799,8810,8811,8812,8819,8820,8822,8830,8908,9008,9010,9021,9043,9046,9051,9055,9057,9092,9113,9118,9129,9130,9132,9141,9146,9152,9156,9167,9175,9181,9193,9194,9196,9198,9199,9201,9208,9212,9220,9222,9225,9226,9227,9230,9235,9252,9268,9275,9283,9285,9302,9309,9314,9320,9322,9326,9327,9328,9332,9342,9343,9346,9347,9349,9352,9353,9355,9357,9359,9362,9376,9386,9390,9391,9395,9402,9406,9407,9408,9417,9430,9435,9444,9446,9451,9477,9478,9484,9486,9493,9495,9523,9528,9529,9532,9535,9536,9537,9539,9552,9557,9558,9562,9567,9569,9576,9583,9585,9589,9606,9608,9610,9626,9627,9628,9632,9633,9638,9652,9657,9658,9659,9666,9671,9672,9673,9676,9677,9678,9687,9693,9696,9697,9711,9715,9716,9721,9722,9728,9729,9735,9736,9737,9741,9745,9754,9755,9757,9760,9771,9772,9774,9791,9805,9808,9809,9818,9824,9873,9877,9882,9892,9904,9966,9973,9991,9998,10002,10005,10010,10097,10101,10107,10140,10141,10147,10158,10159,10168,10194,10217,10226,10242,10424,10427,10469,10677,10682,10740,10816,10840,10863,10867,10869,10871,10874,10884,10893,10896,10903,10912,10936,10938,10944,10964,11197,11296,11298,11309,11313,11341,11343,11349,11363,11376,11385,11396,11400,11411,11418,11428,11431,11512,11526,11527,11535,11545,11547,11554,11556,11619,11623,11624,11630,11636,11637,11644,11647,11649,11702,11714,11715,11717,11721,11740,11766,11833,11919,11935,11954,11955,11964,11990,11999,12232,12258,12323,12324,12391,12403,12408,12418,12503,12505,12523,12530,12578,12655,12656,12662,12735,12778,12838,12873,12876,12893,13017,13107,13145,13147,13201,13244,13260,13284,13307,13351,13403,13427,13446,13502,13535,13585,13593,13595,13614,13691,13706,13809,13828,13907,13930,13931,13940,14074,14089,14239,14274,14276,14284,14363,14399,14424,14496,14518,14525,14564,14568,14622,14746,14768,14786,14787,14878,14889,14921,15029,15110,15123,15152,15200,15229,15230,15238,15245,15266,15270,15284,15295,15341,15356,15401,15455,15481,15515,15519,15574,15581,15597,15619,15647,15660,15706,15778,15837,15857,15899,15901,15943,16090,16115,16121,16127,16149,16212,16238,16246,16289,16301,16411,16415,16440,16446,16453,16478,16483,16502,16508,16543,16546,16551,16552,16562,16568,16593,16594,16597,16622,16643,16665,16701,16767,16774,16779,16819,16828,16869,16926,16961,16973,17075,17113,17202,17214,17222,17280,17319,17321,17322,17334,17347,17379,17396,17398,17412,17413,17421,17423,17425,17426,17431,17461,17468,17482,17485,17496,17500,17508,17513,17522,17528,17564,17565,17567,17588,17615,17636,17638,17672,17688,17690,17723,17777,17778,17813,17814,17818,17831,17999,18031,18032,18041,18067,18150,18177,18219,18238,18246,18294,18300,18328,18329,18389,18393,18395,18400,18451,18485,18496,18504,18507,18563,18575,18577,18588,18631,18635,18672,18673,18708,18741,18743,18767,18782,18794,18809,18824,18835,18878,18879,18899,18953,18967,18970,18971,18973,18982,18988,18990,19003,19008,19010,19014,19019,19020,19063,19081,19105,19114,19117,19125,19128,19131,19142,19143,19155,19177,19179,19185,19188,19189,19224,19234,19236,19238,19251,19258,19267,19270,19271,19272,19273,19276,19321,19341,19347,19348,19376,19396,19399,19402,19408,19417,19428,19464,19476,19498,19501,19540,19576,19629,19631,19647,19683,19693,19700,19712,19736,19754,19803,19825,19836,19838,19856,19861,19883,19886,19939,19945,19946,19956,19963,19967,19969,19971,19972,19974,19978,20013,20020,20033,20045,20067,20082,20091,20130,20169,20170,20172,20221,20262,20271,20283,20302,20315,20316,20328,20356,20438,20460,20473,20476,20477,20481,20483,20484,20485,20488,20503,20506,20513,20516,20552,20553,20591,20594,20644,20649,20655,20667,20675,20676,20691,20711,20809,20858,20866,20887,20908,20911,20913,20914,20916,20934,20951,21038,21086,21171,21221,21222,21234,21262,21295,21311,21371,21386,21418,21421,21501,21573,21685,21998,22090,22094,22096,22097,22110,22112,22118,22119,22129,22158,22163,22165,22166,22167,22168,22171,22189,22190,22214,22242,22250,22269,22288,22291,22318,22319,22361,22379,22383,22386,22389,22398,22452,22476,22479,22499,22533,22538,22542,22544,22560,22561,22587,22598,22602,22605,22606,22622,22625,22656,22664,22710,22722,22737,22773,22779,22804,22888,22889,22901,22919,22946,22954,22997,22999,23013,23028,23109,23134]]],["+",[84,70,[[0,9,8,0,8,[[7,2,2,0,2],[23,4,4,2,6],[30,2,1,6,7],[31,1,1,7,8]]],[1,1,1,8,9,[[51,1,1,8,9]]],[2,1,1,9,10,[[115,1,1,9,10]]],[3,2,2,10,12,[[132,1,1,10,11],[138,1,1,11,12]]],[4,3,3,12,15,[[153,1,1,12,13],[154,1,1,13,14],[156,1,1,14,15]]],[5,3,2,15,17,[[192,3,2,15,17]]],[6,12,9,17,26,[[212,2,2,17,19],[214,3,2,19,21],[215,1,1,21,22],[219,4,3,22,25],[224,2,1,25,26]]],[7,1,1,26,27,[[234,1,1,26,27]]],[8,8,7,27,34,[[249,1,1,27,28],[252,2,2,28,30],[254,2,1,30,31],[259,1,1,31,32],[260,1,1,32,33],[265,1,1,33,34]]],[9,5,3,34,37,[[269,1,1,34,35],[271,2,1,35,36],[279,2,1,36,37]]],[10,6,5,37,42,[[304,1,1,37,38],[308,3,2,38,40],[309,1,1,40,41],[311,1,1,41,42]]],[11,4,4,42,46,[[316,1,1,42,43],[318,1,1,43,44],[325,1,1,44,45],[329,1,1,45,46]]],[12,2,1,46,47,[[348,2,1,46,47]]],[13,3,3,47,50,[[377,1,1,47,48],[383,1,1,48,49],[391,1,1,49,50]]],[17,2,2,50,52,[[436,1,1,50,51],[437,1,1,51,52]]],[18,2,1,52,53,[[603,2,1,52,53]]],[19,1,1,53,54,[[638,1,1,53,54]]],[20,4,4,54,58,[[663,1,1,54,55],[664,1,1,55,56],[665,1,1,56,57],[668,1,1,57,58]]],[22,2,2,58,60,[[686,1,1,58,59],[713,1,1,59,60]]],[23,6,4,60,64,[[776,1,1,60,61],[781,2,1,61,62],[785,2,1,62,63],[792,1,1,63,64]]],[24,1,1,64,65,[[800,1,1,64,65]]],[25,2,2,65,67,[[811,1,1,65,66],[814,1,1,66,67]]],[26,1,1,67,68,[[861,1,1,67,68]]],[37,3,2,68,70,[[915,1,1,68,69],[918,2,1,69,70]]]],[186,188,596,599,630,652,903,947,1563,3537,4219,4391,4911,4945,5007,5957,5962,6557,6564,6608,6623,6629,6758,6762,6803,6918,7182,7527,7631,7632,7729,7861,7888,7999,8082,8142,8336,9226,9359,9362,9407,9477,9633,9693,9873,9998,10682,11418,11535,11717,12876,12893,16121,16701,17412,17426,17431,17513,17818,18328,19736,19883,19963,20082,20438,20644,20711,22094,22946,22997]]],["Away",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2050]]],["Carry",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10010]]],["Come",[45,44,[[0,3,3,0,3,[[18,1,1,0,1],[36,2,2,1,3]]],[1,1,1,3,4,[[52,1,1,3,4]]],[3,4,4,4,8,[[138,1,1,4,5],[139,3,3,5,8]]],[6,7,7,8,15,[[214,1,1,8,9],[219,3,3,9,12],[221,1,1,12,13],[229,2,2,13,15]]],[8,7,7,15,22,[[244,2,2,15,17],[246,1,1,17,18],[249,2,2,18,20],[252,1,1,20,21],[255,1,1,21,22]]],[10,1,1,22,23,[[303,1,1,22,23]]],[11,2,2,23,25,[[322,1,1,23,24],[326,1,1,24,25]]],[13,1,1,25,26,[[391,1,1,25,26]]],[15,2,2,26,28,[[418,2,2,26,28]]],[18,5,5,28,33,[[511,1,1,28,29],[523,1,1,29,30],[543,2,2,30,32],[560,1,1,32,33]]],[19,3,3,33,36,[[628,1,1,33,34],[634,1,1,34,35],[636,1,1,35,36]]],[21,1,1,36,37,[[677,1,1,36,37]]],[22,3,3,37,40,[[679,1,1,37,38],[680,1,1,38,39],[704,1,1,39,40]]],[23,2,1,40,41,[[762,2,1,40,41]]],[27,1,1,41,42,[[867,1,1,41,42]]],[31,1,1,42,43,[[889,1,1,42,43]]],[32,1,1,43,44,[[896,1,1,43,44]]]],[489,1103,1110,1589,4381,4423,4429,4443,6621,6764,6766,6768,6835,7035,7037,7396,7400,7459,7509,7514,7662,7741,9199,9809,9904,11721,12403,12408,14399,14622,14878,14889,15245,16411,16593,16643,17638,17672,17688,18150,19402,22168,22538,22622]]],["Depart",[2,2,[[1,1,1,0,1,[[82,1,1,0,1]]],[10,1,1,1,2,[[302,1,1,1,2]]]],[2474,9156]]],["Get",[6,6,[[1,2,2,0,2,[[56,1,1,0,1],[59,1,1,1,2]]],[3,1,1,2,3,[[138,1,1,2,3]]],[5,1,1,3,4,[[188,1,1,3,4]]],[10,2,2,4,6,[[292,1,1,4,5],[307,1,1,5,6]]]],[1700,1805,4388,5885,8796,9320]]],["Go",[106,106,[[0,4,4,0,4,[[25,1,1,0,1],[26,1,1,1,2],[36,1,1,2,3],[40,1,1,3,4]]],[1,12,12,4,16,[[51,1,1,4,5],[52,1,1,5,6],[53,3,3,6,9],[54,2,2,9,11],[57,1,1,11,12],[59,2,2,12,14],[68,1,1,14,15],[81,1,1,15,16]]],[3,1,1,16,17,[[138,1,1,16,17]]],[4,1,1,17,18,[[157,1,1,17,18]]],[5,2,2,18,20,[[188,1,1,18,19],[204,1,1,19,20]]],[6,7,7,20,27,[[214,1,1,20,21],[220,1,1,21,22],[221,1,1,22,23],[228,2,2,23,25],[231,2,2,25,27]]],[7,3,3,27,30,[[232,1,1,27,28],[233,2,2,28,30]]],[8,12,12,30,42,[[236,1,1,30,31],[238,1,1,31,32],[243,1,1,32,33],[250,2,2,33,35],[252,1,1,35,36],[255,3,3,36,39],[258,2,2,39,41],[261,1,1,41,42]]],[9,10,10,42,52,[[269,1,1,42,43],[273,2,2,43,45],[279,1,1,45,46],[280,1,1,46,47],[281,2,2,47,49],[284,1,1,49,50],[290,2,2,50,52]]],[10,11,11,52,63,[[291,2,2,52,54],[292,1,1,54,55],[304,1,1,55,56],[308,4,4,56,60],[309,2,2,60,62],[310,1,1,62,63]]],[11,12,12,63,75,[[313,2,2,63,65],[314,1,1,65,66],[316,2,2,66,68],[317,2,2,68,70],[318,2,2,70,72],[319,1,1,72,73],[320,1,1,73,74],[334,1,1,74,75]]],[12,3,3,75,78,[[354,1,1,75,76],[358,2,2,76,78]]],[13,1,1,78,79,[[400,1,1,78,79]]],[15,1,1,79,80,[[420,1,1,79,80]]],[16,1,1,80,81,[[429,1,1,80,81]]],[19,3,3,81,84,[[630,1,1,81,82],[633,1,1,82,83],[641,1,1,83,84]]],[20,1,1,84,85,[[667,1,1,84,85]]],[22,6,6,85,91,[[684,1,1,85,86],[696,1,1,86,87],[698,1,1,87,88],[699,1,1,88,89],[700,1,1,89,90],[716,1,1,90,91]]],[23,11,11,91,102,[[746,1,1,91,92],[747,1,1,92,93],[757,1,1,93,94],[761,1,1,94,95],[763,1,1,95,96],[772,1,1,96,97],[778,1,1,97,98],[779,2,2,98,100],[780,1,1,100,101],[783,1,1,101,102]]],[25,1,1,102,103,[[821,1,1,102,103]]],[27,2,2,103,105,[[862,1,1,103,104],[864,1,1,104,105]]],[29,1,1,105,106,[[885,1,1,105,106]]]],[708,736,1097,1250,1562,1595,1619,1620,1628,1643,1650,1735,1785,1801,2036,2445,4410,5083,5870,6301,6605,6825,6867,6995,6999,7112,7122,7135,7151,7157,7229,7285,7391,7566,7578,7655,7751,7770,7772,7812,7832,7924,8097,8183,8185,8324,8364,8398,8411,8499,8693,8704,8730,8770,8799,9225,9342,9346,9352,9355,9402,9407,9430,9535,9539,9569,9606,9610,9657,9666,9676,9687,9721,9737,10158,10867,10936,10944,11954,12503,12778,16483,16546,16779,17482,17778,17999,18031,18041,18067,18395,18967,19014,19267,19376,19408,19631,19803,19825,19836,19861,19939,20934,22096,22129,22479]]],["Walk",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20913]]],["Went",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9673]]],["about",[2,2,[[19,1,1,0,1,[[647,1,1,0,1]]],[20,1,1,1,2,[[659,1,1,1,2]]]],[16973,17321]]],["abroad",[3,3,[[10,1,1,0,1,[[292,1,1,0,1]]],[13,1,1,1,2,[[392,1,1,1,2]]],[18,1,1,2,3,[[554,1,1,2,3]]]],[8812,11740,15110]]],["again",[1,1,[[20,1,1,0,1,[[659,1,1,0,1]]]],[17322]]],["along",[8,8,[[1,2,2,0,2,[[51,1,1,0,1],[58,1,1,1,2]]],[3,1,1,2,3,[[137,1,1,2,3]]],[5,1,1,3,4,[[203,1,1,3,4]]],[6,1,1,4,5,[[221,1,1,4,5]]],[8,1,1,5,6,[[241,1,1,5,6]]],[9,2,2,6,8,[[269,1,1,6,7],[282,1,1,7,8]]]],[1559,1765,4362,6282,6847,7343,8097,8439]]],["apace",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8503]]],["away",[24,24,[[0,1,1,0,1,[[37,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[5,1,1,2,3,[[204,1,1,2,3]]],[6,2,2,3,5,[[228,1,1,3,4],[229,1,1,4,5]]],[8,4,4,5,9,[[250,1,1,5,6],[258,1,1,6,7],[261,1,1,7,8],[263,1,1,8,9]]],[9,1,1,9,10,[[270,1,1,9,10]]],[11,2,2,10,12,[[317,2,2,10,12]]],[13,1,1,12,13,[[375,1,1,12,13]]],[17,1,1,13,14,[[442,1,1,13,14]]],[18,2,2,14,16,[[535,1,1,14,15],[555,1,1,15,16]]],[20,1,1,16,17,[[659,1,1,16,17]]],[21,2,2,17,19,[[672,2,2,17,19]]],[23,2,2,19,21,[[766,1,1,19,20],[795,1,1,20,21]]],[27,3,3,21,24,[[866,1,1,21,22],[867,1,1,22,23],[874,1,1,23,24]]]],[1138,1844,6301,7017,7026,7587,7836,7917,7967,8127,9658,9659,11376,13017,14787,15152,17319,17564,17567,19464,20262,22166,22171,22269]]],["bring",[4,4,[[4,1,1,0,1,[[180,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]],[22,1,1,2,3,[[720,1,1,2,3]]],[27,1,1,3,4,[[863,1,1,3,4]]]],[5647,9693,18496,22119]]],["brought",[8,8,[[10,1,1,0,1,[[291,1,1,0,1]]],[11,1,1,1,2,[[337,1,1,1,2]]],[13,1,1,2,3,[[401,1,1,2,3]]],[23,1,1,3,4,[[796,1,1,3,4]]],[24,1,1,4,5,[[799,1,1,4,5]]],[25,3,3,5,8,[[841,1,1,5,6],[844,1,1,6,7],[848,1,1,7,8]]]],[8755,10242,11990,20302,20356,21501,21573,21685]]],["came",[13,13,[[0,1,1,0,1,[[28,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]],[5,2,2,2,4,[[192,2,2,2,4]]],[6,1,1,4,5,[[224,1,1,4,5]]],[8,3,3,5,8,[[250,1,1,5,6],[252,2,2,6,8]]],[9,2,2,8,10,[[279,1,1,8,9],[284,1,1,9,10]]],[11,1,1,10,11,[[322,1,1,10,11]]],[13,1,1,11,12,[[377,1,1,11,12]]],[14,1,1,12,13,[[412,1,1,12,13]]]],[796,4952,5958,5962,6918,7592,7659,7666,8351,8503,9805,11428,12258]]],["camest",[3,3,[[3,1,1,0,1,[[138,1,1,0,1]]],[10,2,2,1,3,[[303,2,2,1,3]]]],[4412,9193,9201]]],["carried",[2,2,[[11,1,1,0,1,[[336,1,1,0,1]]],[13,1,1,1,2,[[399,1,1,1,2]]]],[10217,11919]]],["carry",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[11999]]],["come",[33,31,[[0,2,2,0,2,[[30,1,1,0,1],[36,1,1,1,2]]],[3,6,6,2,8,[[126,1,1,2,3],[138,3,3,3,6],[139,1,1,6,7],[140,1,1,7,8]]],[7,1,1,8,9,[[233,1,1,8,9]]],[8,3,3,9,12,[[244,1,1,9,10],[258,2,2,10,12]]],[9,1,1,12,13,[[276,1,1,12,13]]],[10,2,2,13,15,[[291,1,1,13,14],[305,1,1,14,15]]],[11,2,2,15,17,[[319,2,2,15,17]]],[15,1,1,17,18,[[414,1,1,17,18]]],[18,2,2,18,20,[[557,1,1,18,19],[572,1,1,19,20]]],[20,1,1,20,21,[[659,1,1,20,21]]],[22,8,6,21,27,[[680,1,1,21,22],[723,1,1,22,23],[733,4,2,23,25],[738,2,2,25,27]]],[23,3,3,27,30,[[756,1,1,27,28],[780,1,1,28,29],[792,1,1,29,30]]],[32,1,1,30,31,[[896,1,1,30,31]]]],[917,1096,4017,4386,4389,4392,4423,4460,7160,7401,7813,7837,8251,8729,9268,9711,9716,12324,15200,15455,17322,17690,18575,18741,18743,18824,18835,19258,19856,20082,22622]]],["cometh",[2,2,[[0,1,1,0,1,[[31,1,1,0,1]]],[17,1,1,1,2,[[455,1,1,1,2]]]],[934,13351]]],["continually",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8401]]],["conversant",[2,2,[[5,1,1,0,1,[[194,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]]],[6037,7876]]],["depart",[15,15,[[3,1,1,0,1,[[126,1,1,0,1]]],[6,4,4,1,5,[[229,4,4,1,5]]],[8,4,4,5,9,[[257,1,1,5,6],[264,2,2,6,8],[265,1,1,8,9]]],[9,2,2,9,11,[[281,1,1,9,10],[286,1,1,10,11]]],[10,1,1,11,12,[[302,1,1,11,12]]],[23,2,2,12,14,[[781,1,1,12,13],[794,1,1,13,14]]],[32,1,1,14,15,[[894,1,1,14,15]]]],[4018,7029,7031,7032,7033,7792,7977,7978,8000,8403,8575,9175,19883,20169,22605]]],["departed",[49,48,[[0,9,9,0,9,[[11,1,1,0,1],[13,1,1,1,2],[20,1,1,2,3],[23,1,1,3,4],[25,2,2,4,6],[30,1,1,6,7],[41,1,1,7,8],[44,1,1,8,9]]],[3,2,2,9,11,[[128,1,1,9,10],[138,1,1,10,11]]],[5,2,2,11,13,[[188,1,1,11,12],[208,1,1,12,13]]],[6,7,7,13,20,[[216,1,1,13,14],[219,1,1,14,15],[227,1,1,15,16],[228,2,2,16,18],[229,1,1,18,19],[231,1,1,19,20]]],[8,5,5,20,25,[[241,1,1,20,21],[245,1,1,21,22],[255,1,1,22,23],[257,2,2,23,25]]],[9,4,4,25,29,[[272,1,1,25,26],[278,1,1,26,27],[283,1,1,27,28],[285,1,1,28,29]]],[10,8,7,29,36,[[302,2,2,29,31],[304,1,1,31,32],[309,1,1,32,33],[310,4,3,33,36]]],[11,6,6,36,42,[[313,1,1,36,37],[317,3,3,37,40],[320,1,1,40,41],[322,1,1,41,42]]],[12,1,1,42,43,[[353,1,1,42,43]]],[13,3,3,43,46,[[376,1,1,43,44],[387,1,1,44,45],[390,1,1,45,46]]],[23,2,2,46,48,[[785,2,2,46,48]]]],[302,348,527,601,709,723,928,1278,1382,4068,4382,5890,6435,6675,6809,6988,7000,7014,7034,7126,7337,7420,7772,7788,7792,8176,8301,8470,8535,9156,9167,9235,9406,9417,9444,9446,9537,9652,9666,9671,9741,9808,10863,11400,11644,11702,19967,19974]]],["departeth",[2,2,[[17,1,1,0,1,[[462,1,1,0,1]]],[20,1,1,1,2,[[664,1,1,1,2]]]],[13502,17421]]],["down",[6,6,[[2,1,1,0,1,[[108,1,1,0,1]]],[11,1,1,1,2,[[325,1,1,1,2]]],[25,3,3,2,5,[[802,1,1,2,3],[820,1,1,3,4],[829,1,1,4,5]]],[37,1,1,5,6,[[920,1,1,5,6]]]],[3297,9892,20477,20887,21171,23028]]],["eased",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13244]]],["enter",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13706]]],["exercise",[1,1,[[18,1,1,0,1,[[608,1,1,0,1]]]],[16149]]],["flow",[2,1,[[28,2,1,0,1,[[878,2,1,0,1]]]],[22361]]],["flowed",[1,1,[[5,1,1,0,1,[[190,1,1,0,1]]]],[5928]]],["forth",[1,1,[[18,1,1,0,1,[[602,1,1,0,1]]]],[16115]]],["forward",[3,3,[[0,1,1,0,1,[[25,1,1,0,1]]],[11,2,2,1,3,[[316,1,1,1,2],[332,1,1,2,3]]]],[705,9627,10107]]],["fro",[5,3,[[37,5,3,0,3,[[911,2,2,0,2],[916,3,1,2,3]]]],[22888,22889,22954]]],["gat",[2,2,[[6,1,1,0,1,[[229,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]]],[7052,8472]]],["get",[9,9,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,1,1,1,2,[[54,1,1,1,2]]],[5,1,1,2,3,[[208,1,1,2,3]]],[10,3,3,3,6,[[304,2,2,3,5],[307,1,1,5,6]]],[11,1,1,6,7,[[315,1,1,6,7]]],[21,1,1,7,8,[[674,1,1,7,8]]],[23,1,1,8,9,[[749,1,1,8,9]]]],[549,1636,6430,9220,9230,9326,9589,17588,19063]]],["go",[304,282,[[0,29,27,0,27,[[2,1,1,0,1],[10,1,1,1,2],[11,1,1,2,3],[14,1,1,3,4],[15,1,1,4,5],[18,1,1,5,6],[21,1,1,6,7],[23,8,7,7,14],[26,1,1,14,15],[27,2,2,15,17],[28,1,1,17,18],[29,2,2,18,20],[32,2,1,20,21],[36,1,1,21,22],[41,2,2,22,24],[42,1,1,24,25],[44,2,2,25,27]]],[1,32,29,27,56,[[51,1,1,27,28],[52,5,4,28,32],[53,2,2,32,34],[54,4,4,34,38],[57,2,2,38,40],[59,6,5,40,45],[61,1,1,45,46],[62,1,1,46,47],[63,1,1,47,48],[66,1,1,48,49],[72,1,1,49,50],[81,4,3,50,53],[82,2,2,53,55],[83,1,1,55,56]]],[2,1,1,56,57,[[100,1,1,56,57]]],[3,9,9,57,66,[[126,2,2,57,59],[132,1,1,59,60],[136,1,1,60,61],[138,3,3,61,64],[139,1,1,64,65],[140,1,1,65,66]]],[4,20,20,66,86,[[153,1,1,66,67],[154,1,1,67,68],[158,1,1,68,69],[163,1,1,69,70],[165,3,3,70,73],[166,1,1,73,74],[168,1,1,74,75],[172,4,4,75,79],[176,1,1,79,80],[178,1,1,80,81],[180,2,2,81,83],[181,1,1,83,84],[183,2,2,84,86]]],[5,8,8,86,94,[[187,1,1,86,87],[188,1,1,87,88],[189,2,2,88,90],[195,2,2,90,92],[204,1,1,92,93],[208,1,1,93,94]]],[6,24,18,94,112,[[211,1,1,94,95],[214,4,1,95,96],[217,5,2,96,98],[219,3,3,98,101],[221,1,1,101,102],[222,1,1,102,103],[227,1,1,103,104],[228,4,4,104,108],[229,2,2,108,110],[230,1,1,110,111],[231,1,1,111,112]]],[7,7,6,112,118,[[232,4,4,112,116],[233,3,2,116,118]]],[8,24,22,118,140,[[241,1,1,118,119],[244,6,5,119,124],[245,1,1,124,125],[246,1,1,125,126],[250,1,1,126,127],[251,2,2,127,129],[252,4,3,129,132],[255,1,1,132,133],[258,3,3,133,136],[261,1,1,136,137],[263,1,1,137,138],[264,2,2,138,140]]],[9,15,13,140,153,[[269,1,1,140,141],[278,1,1,141,142],[279,6,4,142,146],[280,2,2,146,148],[281,2,2,148,150],[283,1,1,150,151],[285,2,2,151,153]]],[10,12,12,153,165,[[292,1,1,153,154],[299,1,1,154,155],[301,3,3,155,158],[303,1,1,158,159],[308,1,1,159,160],[312,5,5,160,165]]],[11,13,12,165,177,[[313,1,1,165,166],[314,1,1,166,167],[315,1,1,167,168],[316,1,1,168,169],[318,4,3,169,172],[320,2,2,172,174],[321,2,2,174,176],[329,1,1,176,177]]],[12,2,2,177,179,[[354,1,1,177,178],[358,1,1,178,179]]],[13,8,8,179,187,[[373,1,1,179,180],[382,1,1,180,181],[384,3,3,181,184],[386,2,2,184,186],[391,1,1,186,187]]],[14,1,1,187,188,[[410,1,1,187,188]]],[15,2,2,188,190,[[421,2,2,188,190]]],[17,7,7,190,197,[[445,1,1,190,191],[451,1,1,191,192],[458,1,1,192,193],[459,1,1,193,194],[473,1,1,194,195],[476,1,1,195,196],[477,1,1,196,197]]],[18,11,11,197,208,[[509,1,1,197,198],[515,1,1,198,199],[516,1,1,199,200],[519,1,1,200,201],[520,1,1,201,202],[561,1,1,202,203],[562,1,1,203,204],[581,1,1,204,205],[584,1,1,205,206],[599,1,1,206,207],[616,1,1,207,208]]],[19,3,3,208,211,[[633,2,2,208,210],[642,1,1,210,211]]],[20,7,7,211,218,[[661,1,1,211,212],[663,2,2,212,214],[664,1,1,214,215],[665,1,1,215,216],[666,1,1,216,217],[668,1,1,217,218]]],[22,14,13,218,231,[[680,1,1,218,219],[681,1,1,219,220],[684,1,1,220,221],[686,2,2,221,223],[706,1,1,223,224],[711,1,1,224,225],[716,1,1,225,226],[723,2,2,226,228],[726,1,1,228,229],[730,2,1,229,230],[736,1,1,230,231]]],[23,27,25,231,256,[[745,1,1,231,232],[746,1,1,232,233],[747,1,1,233,234],[751,1,1,234,235],[753,1,1,235,236],[755,1,1,236,237],[757,2,2,237,239],[760,1,1,239,240],[763,1,1,240,241],[764,1,1,241,242],[766,1,1,242,243],[769,1,1,243,244],[773,1,1,244,245],[774,1,1,245,246],[779,1,1,246,247],[781,1,1,247,248],[784,5,3,248,251],[785,1,1,251,252],[790,1,1,252,253],[793,1,1,253,254],[794,1,1,254,255],[795,1,1,255,256]]],[25,9,8,256,264,[[802,3,2,256,258],[804,3,3,258,261],[813,1,1,261,262],[831,2,2,262,264]]],[27,6,6,264,270,[[863,2,2,264,266],[866,2,2,266,268],[868,2,2,268,270]]],[29,4,4,270,274,[[879,1,1,270,271],[884,1,1,271,272],[885,1,1,272,273],[887,1,1,273,274]]],[31,2,2,274,276,[[889,1,1,274,275],[891,1,1,275,276]]],[32,2,2,276,278,[[893,1,1,276,277],[894,1,1,277,278]]],[37,5,4,278,282,[[916,1,1,278,279],[918,3,2,279,281],[919,1,1,281,282]]]],[69,297,303,362,389,459,552,595,629,633,642,646,647,649,740,775,793,802,855,856,972,1100,1271,1290,1298,1375,1386,1561,1590,1597,1598,1600,1613,1619,1635,1639,1640,1649,1737,1738,1785,1786,1788,1801,1803,1847,1888,1910,1988,2167,2439,2461,2472,2487,2488,2505,3024,4018,4020,4240,4328,4387,4388,4395,4419,4460,4925,4965,5100,5236,5274,5278,5285,5315,5349,5432,5433,5434,5435,5527,5568,5625,5652,5697,5734,5736,5867,5885,5896,5897,6048,6049,6297,6435,6512,6607,6698,6701,6763,6765,6767,6837,6870,6989,6998,6999,7002,7012,7033,7051,7062,7123,7138,7139,7143,7145,7151,7158,7339,7394,7397,7398,7400,7401,7427,7459,7563,7596,7597,7650,7651,7657,7743,7812,7823,7833,7916,7949,7974,7975,8102,8309,8330,8341,8342,8343,8377,8386,8396,8409,8460,8526,8537,8772,9057,9118,9129,9130,9201,9349,9484,9486,9495,9528,9529,9536,9567,9583,9626,9676,9677,9696,9728,9735,9757,9771,10010,10874,10964,11343,11512,11545,11547,11556,11623,11624,11714,12232,12523,12530,13107,13260,13427,13446,13828,13907,13930,14363,14496,14525,14564,14568,15266,15284,15597,15706,16090,16246,16543,16568,16819,17379,17412,17413,17423,17431,17461,17508,17688,17723,17777,17813,17814,18177,18300,18400,18563,18577,18631,18708,18794,18953,18990,19003,19131,19177,19238,19270,19272,19341,19417,19428,19476,19540,19647,19683,19838,19886,19945,19946,19956,19974,20067,20130,20170,20221,20476,20484,20503,20506,20513,20691,21221,21222,22110,22112,22158,22167,22189,22190,22379,22452,22476,22499,22533,22560,22587,22598,22954,22997,22999,23013]]],["goest",[18,18,[[0,2,2,0,2,[[27,1,1,0,1],[31,1,1,1,2]]],[1,2,2,2,4,[[53,1,1,2,3],[82,1,1,3,4]]],[3,1,1,4,5,[[130,1,1,4,5]]],[5,2,2,5,7,[[187,2,2,5,7]]],[6,2,2,7,9,[[224,1,1,7,8],[229,1,1,8,9]]],[7,1,1,9,10,[[232,1,1,9,10]]],[8,1,1,10,11,[[263,1,1,10,11]]],[9,1,1,11,12,[[281,1,1,11,12]]],[19,2,2,12,14,[[631,1,1,12,13],[633,1,1,13,14]]],[20,2,2,14,16,[[663,1,1,14,15],[667,1,1,15,16]]],[23,1,1,16,17,[[789,1,1,16,17]]],[37,1,1,17,18,[[912,1,1,17,18]]]],[788,945,1622,2489,4122,5858,5860,6912,7041,7143,7964,8408,16502,16562,17398,17485,20045,22901]]],["goeth",[16,15,[[0,2,2,0,2,[[1,1,1,0,1],[31,1,1,1,2]]],[2,4,3,2,5,[[100,4,3,2,5]]],[4,2,2,5,7,[[153,1,1,5,6],[172,1,1,6,7]]],[18,1,1,7,8,[[574,1,1,7,8]]],[19,1,1,8,9,[[634,1,1,8,9]]],[20,2,2,9,11,[[659,1,1,9,10],[670,1,1,10,11]]],[21,1,1,11,12,[[677,1,1,11,12]]],[22,1,1,12,13,[[708,1,1,12,13]]],[25,2,2,13,15,[[808,1,1,13,14],[834,1,1,14,15]]]],[44,948,3018,3024,3039,4922,5431,15481,16597,17321,17528,17636,18246,20591,21311]]],["going",[9,9,[[0,1,1,0,1,[[36,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]],[5,1,1,2,3,[[209,1,1,2,3]]],[6,2,2,3,5,[[229,2,2,3,5]]],[9,1,1,5,6,[[268,1,1,5,6]]],[10,1,1,6,7,[[307,1,1,6,7]]],[19,1,1,7,8,[[657,1,1,7,8]]],[23,1,1,8,9,[[794,1,1,8,9]]]],[1108,3017,6474,7042,7052,8068,9328,17280,20170]]],["gone",[36,36,[[0,3,3,0,3,[[27,1,1,0,1],[33,1,1,1,2],[41,1,1,2,3]]],[1,1,1,3,4,[[61,1,1,3,4]]],[4,1,1,4,5,[[169,1,1,4,5]]],[5,1,1,5,6,[[209,1,1,5,6]]],[8,3,3,6,9,[[249,2,2,6,8],[250,1,1,8,9]]],[9,4,4,9,13,[[269,3,3,9,12],[279,1,1,12,13]]],[10,5,5,13,18,[[292,1,1,13,14],[303,1,1,14,15],[304,1,1,15,16],[308,1,1,16,17],[312,1,1,17,18]]],[17,1,1,18,19,[[454,1,1,18,19]]],[18,1,1,19,20,[[586,1,1,19,20]]],[19,1,1,20,21,[[634,1,1,20,21]]],[20,1,1,21,22,[[666,1,1,21,22]]],[21,2,2,22,24,[[672,1,1,22,23],[676,1,1,23,24]]],[22,1,1,24,25,[[724,1,1,24,25]]],[23,6,6,25,31,[[746,1,1,25,26],[749,1,1,26,27],[753,1,1,27,28],[759,1,1,28,29],[792,1,1,29,30],[794,1,1,30,31]]],[24,3,3,31,34,[[797,3,3,31,34]]],[25,1,1,34,35,[[838,1,1,34,35]]],[27,1,1,35,36,[[870,1,1,35,36]]]],[780,997,1285,1848,5367,6476,7511,7525,7580,8103,8104,8105,8332,8811,9208,9227,9353,9493,13307,15778,16594,17468,17565,17615,18588,18988,19081,19185,19321,20091,20172,20315,20316,20328,21418,22214]]],["grew",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7266]]],["grow",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19251]]],["haunt",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[8009]]],["hence",[1,1,[[37,1,1,0,1,[[916,1,1,0,1]]]],[22954]]],["in",[4,4,[[6,2,2,0,2,[[216,1,1,0,1],[227,1,1,1,2]]],[11,1,1,2,3,[[333,1,1,2,3]]],[29,1,1,3,4,[[880,1,1,3,4]]]],[6668,6990,10140,22386]]],["itself",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17075]]],["lead",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16622]]],["leadeth",[3,3,[[17,2,2,0,2,[[447,2,2,0,2]]],[19,1,1,2,3,[[643,1,1,2,3]]]],[13145,13147,16869]]],["led",[13,13,[[4,3,3,0,3,[[160,2,2,0,2],[181,1,1,2,3]]],[5,1,1,3,4,[[210,1,1,3,4]]],[11,1,1,4,5,[[318,1,1,4,5]]],[18,2,2,5,7,[[583,1,1,5,6],[613,1,1,6,7]]],[22,3,3,7,10,[[726,1,1,7,8],[741,2,2,8,10]]],[23,2,2,10,12,[[746,2,2,10,12]]],[29,1,1,12,13,[[880,1,1,12,13]]]],[5139,5152,5684,6479,9693,15660,16212,18635,18878,18879,18971,18982,22389]]],["long",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2045]]],["march",[3,3,[[23,1,1,0,1,[[790,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]],[34,1,1,2,3,[[903,1,1,2,3]]]],[20067,22318,22737]]],["may",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8409]]],["more",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16508]]],["myself",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14424]]],["on",[8,8,[[0,1,1,0,1,[[11,1,1,0,1]]],[5,2,2,1,3,[[192,2,2,1,3]]],[8,2,2,3,5,[[249,1,1,3,4],[252,1,1,4,5]]],[11,2,2,5,7,[[314,2,2,5,7]]],[18,1,1,7,8,[[559,1,1,7,8]]]],[307,5958,5962,7527,7659,9557,9562,15238]]],["out",[4,4,[[0,1,1,0,1,[[11,1,1,0,1]]],[5,1,1,1,2,[[202,1,1,1,2]]],[7,1,1,2,3,[[232,1,1,2,3]]],[16,1,1,3,4,[[434,1,1,3,4]]]],[299,6273,7148,12838]]],["passeth",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13201]]],["point",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[690]]],["prospered",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6623]]],["ran",[2,2,[[10,1,1,0,1,[[308,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[9376,15647]]],["run",[4,4,[[18,2,2,0,2,[[535,1,1,0,1],[581,1,1,1,2]]],[20,1,1,2,3,[[659,1,1,2,3]]],[25,1,1,3,4,[[833,1,1,3,4]]]],[14786,15581,17322,21262]]],["running",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21234]]],["sent",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12418]]],["spread",[1,1,[[27,1,1,0,1,[[875,1,1,0,1]]]],[22288]]],["still",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14921]]],["take",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5197]]],["takest",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6608]]],["through",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8078]]],["to",[2,2,[[11,1,1,0,1,[[317,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[9652,17334]]],["travelleth",[2,2,[[19,2,2,0,2,[[633,1,1,0,1],[651,1,1,1,2]]]],[16551,17113]]],["up",[4,4,[[6,1,1,0,1,[[221,1,1,0,1]]],[9,2,2,1,3,[[281,1,1,1,2],[284,1,1,2,3]]],[23,1,1,3,4,[[747,1,1,3,4]]]],[6866,8409,8502,19008]]],["walk",[133,128,[[0,4,4,0,4,[[12,1,1,0,1],[16,1,1,1,2],[23,1,1,2,3],[47,1,1,3,4]]],[1,3,3,4,7,[[65,1,1,4,5],[67,1,1,5,6],[70,1,1,6,7]]],[2,10,10,7,17,[[107,2,2,7,9],[109,1,1,9,10],[115,7,7,10,17]]],[4,12,12,17,29,[[157,1,1,17,18],[160,2,2,18,20],[162,1,1,20,21],[163,1,1,21,22],[165,2,2,22,24],[171,1,1,24,25],[178,1,1,25,26],[180,1,1,26,27],[181,1,1,27,28],[182,1,1,28,29]]],[5,2,2,29,31,[[204,1,1,29,30],[208,1,1,30,31]]],[6,2,2,31,33,[[212,1,1,31,32],[215,1,1,32,33]]],[8,3,3,33,36,[[237,2,2,33,35],[243,1,1,35,36]]],[10,14,12,36,48,[[292,2,2,36,38],[293,2,1,38,39],[296,2,1,39,40],[298,5,5,40,45],[299,1,1,45,46],[301,1,1,46,47],[306,1,1,47,48]]],[11,2,2,48,50,[[322,1,1,48,49],[335,1,1,49,50]]],[13,6,6,50,56,[[372,4,4,50,54],[373,1,1,54,55],[400,1,1,55,56]]],[15,2,2,56,58,[[417,1,1,56,57],[422,1,1,57,58]]],[18,17,17,58,75,[[489,1,1,58,59],[500,1,1,59,60],[503,1,1,60,61],[533,1,1,61,62],[555,1,1,62,63],[561,1,1,63,64],[563,1,1,64,65],[566,2,2,65,67],[578,1,1,67,68],[592,1,1,68,69],[593,1,1,69,70],[596,3,3,70,73],[615,1,1,73,74],[620,1,1,74,75]]],[19,5,5,75,80,[[628,1,1,75,76],[629,3,3,76,79],[630,1,1,79,80]]],[20,3,3,80,83,[[662,1,1,80,81],[664,1,1,81,82],[669,1,1,82,83]]],[22,11,11,83,94,[[680,2,2,83,85],[681,1,1,85,86],[708,2,2,86,88],[713,1,1,88,89],[718,1,1,89,90],[720,2,2,90,92],[728,1,1,92,93],[737,1,1,93,94]]],[23,18,16,94,110,[[747,2,2,94,96],[750,3,2,96,98],[751,3,3,98,101],[753,1,1,101,102],[757,2,1,102,103],[760,1,1,103,104],[762,2,2,104,106],[767,1,1,106,107],[770,1,1,107,108],[775,1,1,108,109],[786,1,1,109,110]]],[24,1,1,110,111,[[801,1,1,110,111]]],[25,6,6,111,117,[[812,1,1,111,112],[821,1,1,112,113],[834,1,1,113,114],[837,2,2,114,116],[838,1,1,116,117]]],[26,1,1,117,118,[[858,1,1,117,118]]],[27,2,2,118,120,[[872,1,1,118,119],[875,1,1,119,120]]],[28,1,1,120,121,[[877,1,1,120,121]]],[29,1,1,121,122,[[881,1,1,121,122]]],[32,5,4,122,126,[[896,3,2,122,124],[898,2,2,124,126]]],[35,1,1,126,127,[[906,1,1,126,127]]],[37,1,1,127,128,[[913,1,1,127,128]]]],[335,398,631,1466,1951,2019,2096,3254,3255,3341,3527,3536,3545,3547,3548,3551,3552,5086,5143,5156,5198,5230,5276,5277,5415,5583,5620,5698,5724,6301,6431,6567,6633,7270,7275,7374,8773,8774,8830,8908,9008,9010,9021,9043,9046,9055,9146,9314,9824,10168,11296,11298,11309,11313,11341,11964,12391,12578,14074,14239,14284,14768,15123,15270,15295,15341,15356,15515,15837,15857,15899,15901,15943,16238,16301,16415,16440,16446,16453,16478,17396,17425,17522,17688,17690,17723,18219,18238,18329,18451,18485,18504,18673,18809,19019,19020,19105,19114,19125,19128,19142,19179,19276,19348,19396,19399,19498,19576,19700,19978,20460,20675,20914,21295,21371,21386,21421,21998,22250,22291,22319,22398,22622,22625,22656,22664,22804,22919]]],["walked",[95,95,[[0,3,3,0,3,[[4,2,2,0,2],[5,1,1,2,3]]],[1,1,1,3,4,[[63,1,1,3,4]]],[2,2,2,4,6,[[115,2,2,4,6]]],[5,1,1,6,7,[[191,1,1,6,7]]],[6,3,3,7,10,[[212,1,1,7,8],[215,1,1,8,9],[221,1,1,9,10]]],[8,2,2,10,12,[[243,1,1,10,11],[247,1,1,11,12]]],[9,4,4,12,16,[[268,1,1,12,13],[273,2,2,13,15],[277,1,1,15,16]]],[10,11,11,16,27,[[293,1,1,16,17],[298,1,1,17,18],[299,1,1,18,19],[301,1,1,19,20],[305,3,3,20,23],[306,2,2,23,25],[312,2,2,25,27]]],[11,13,13,27,40,[[316,1,1,27,28],[320,2,2,28,30],[325,2,2,30,32],[328,1,1,32,33],[329,3,3,33,36],[332,1,1,36,37],[333,2,2,37,39],[334,1,1,39,40]]],[12,2,2,40,42,[[354,2,2,40,42]]],[13,13,13,42,55,[[372,1,1,42,43],[373,1,1,43,44],[377,1,1,44,45],[383,2,2,45,47],[386,1,1,47,48],[387,3,3,48,51],[388,2,2,51,53],[394,1,1,53,54],[400,1,1,54,55]]],[16,1,1,55,56,[[427,1,1,55,56]]],[17,4,4,56,60,[[464,1,1,56,57],[466,2,2,57,59],[473,1,1,59,60]]],[18,6,6,60,66,[[503,2,2,60,62],[532,1,1,62,63],[558,2,2,63,65],[619,1,1,65,66]]],[22,3,3,66,69,[[687,1,1,66,67],[698,1,1,67,68],[716,1,1,68,69]]],[23,11,11,69,80,[[746,2,2,69,71],[751,1,1,71,72],[752,1,1,72,73],[753,2,2,73,75],[755,1,1,75,76],[760,1,1,76,77],[776,1,1,77,78],[788,2,2,78,80]]],[25,10,10,80,90,[[806,2,2,80,82],[812,1,1,82,83],[817,1,1,83,84],[819,2,2,84,86],[821,3,3,86,89],[824,1,1,89,90]]],[27,1,1,90,91,[[866,1,1,90,91]]],[29,1,1,91,92,[[880,1,1,91,92]]],[33,1,1,92,93,[[901,1,1,92,93]]],[38,2,2,93,95,[[926,1,1,93,94],[927,1,1,94,95]]]],[127,129,146,1918,3564,3565,5940,6562,6629,6845,7372,7462,8078,8186,8187,8261,8822,9010,9055,9141,9252,9275,9283,9285,9309,9523,9532,9638,9745,9754,9877,9882,9966,9991,10002,10005,10101,10140,10141,10147,10869,10871,11298,11341,11431,11526,11527,11619,11630,11636,11637,11647,11649,11766,11935,12735,13535,13593,13595,13809,14274,14276,14746,15229,15230,16289,17831,18032,18393,18970,18973,19143,19155,19188,19189,19234,19347,19754,20020,20033,20552,20553,20667,20809,20858,20866,20908,20911,20916,21038,22163,22383,22710,23109,23134]]],["walkest",[3,3,[[4,2,2,0,2,[[158,1,1,0,1],[163,1,1,1,2]]],[22,1,1,2,3,[[721,1,1,2,3]]]],[5093,5227,18507]]],["walketh",[34,33,[[0,1,1,0,1,[[23,1,1,0,1]]],[4,1,1,1,2,[[175,1,1,1,2]]],[8,1,1,2,3,[[247,1,1,2,3]]],[17,3,3,3,6,[[453,1,1,3,4],[457,1,1,4,5],[469,1,1,5,6]]],[18,8,8,6,14,[[478,1,1,6,7],[492,1,1,7,8],[516,1,1,8,9],[550,1,1,9,10],[568,1,1,10,11],[578,1,1,11,12],[581,1,1,12,13],[605,1,1,13,14]]],[19,11,10,14,24,[[633,1,1,14,15],[637,2,1,15,16],[640,1,1,16,17],[641,1,1,17,18],[642,1,1,18,19],[646,1,1,19,20],[647,1,1,20,21],[655,3,3,21,24]]],[20,2,2,24,26,[[660,1,1,24,25],[668,1,1,25,26]]],[22,3,3,26,29,[[711,1,1,26,27],[728,1,1,27,28],[743,1,1,28,29]]],[23,2,2,29,31,[[754,1,1,29,30],[767,1,1,30,31]]],[25,1,1,31,32,[[812,1,1,31,32]]],[32,1,1,32,33,[[894,1,1,32,33]]]],[656,5514,7462,13284,13403,13691,13940,14089,14518,15029,15401,15519,15574,16127,16552,16665,16767,16774,16828,16926,16961,17202,17214,17222,17347,17496,18294,18672,18899,19224,19501,20676,22602]]],["walking",[10,10,[[0,1,1,0,1,[[2,1,1,0,1]]],[10,2,2,1,3,[[293,1,1,1,2],[306,1,1,2,3]]],[17,1,1,3,4,[[466,1,1,3,4]]],[20,1,1,4,5,[[668,1,1,4,5]]],[22,3,3,5,8,[[681,1,1,5,6],[698,1,1,6,7],[735,1,1,7,8]]],[23,1,1,8,9,[[750,1,1,8,9]]],[32,1,1,9,10,[[894,1,1,9,10]]]],[63,8819,9302,13614,17500,17723,18031,18767,19117,22606]]],["wandered",[1,1,[[5,1,1,0,1,[[200,1,1,0,1]]]],[6197]]],["waxed",[2,2,[[9,1,1,0,1,[[269,1,1,0,1]]],[16,1,1,1,2,[[434,1,1,1,2]]]],[8082,12838]]],["way",[11,11,[[0,5,5,0,5,[[11,1,1,0,1],[13,1,1,1,2],[17,1,1,2,3],[23,1,1,3,4],[24,1,1,4,5]]],[1,1,1,5,6,[[67,1,1,5,6]]],[6,2,2,6,8,[[229,2,2,6,8]]],[8,1,1,8,9,[[255,1,1,8,9]]],[11,1,1,9,10,[[316,1,1,9,10]]],[26,1,1,10,11,[[861,1,1,10,11]]]],[317,347,457,652,692,2026,7029,7038,7752,9632,22090]]],["weak",[2,2,[[25,2,2,0,2,[[808,1,1,0,1],[822,1,1,1,2]]]],[20594,20951]]],["went",[339,312,[[0,35,35,0,35,[[6,1,1,0,1],[8,1,1,1,2],[11,1,1,2,3],[12,2,2,3,5],[13,1,1,5,6],[17,2,2,6,8],[20,2,2,8,10],[21,5,5,10,15],[23,1,1,15,16],[24,1,1,16,17],[25,3,3,17,20],[26,2,2,20,22],[27,3,3,22,25],[29,1,1,25,26],[30,1,1,26,27],[31,1,1,27,28],[34,2,2,28,30],[35,1,1,30,31],[36,2,2,31,33],[37,1,1,33,34],[49,1,1,34,35]]],[1,10,9,35,44,[[51,2,2,35,37],[53,3,3,37,40],[62,1,1,40,41],[63,2,1,41,42],[64,2,2,42,44]]],[3,16,15,44,59,[[129,1,1,44,45],[130,1,1,45,46],[132,1,1,46,47],[138,5,5,47,52],[139,1,1,52,53],[140,3,2,53,55],[148,3,3,55,58],[149,1,1,58,59]]],[4,5,5,59,64,[[153,2,2,59,61],[181,1,1,61,62],[183,2,2,62,64]]],[5,16,16,64,80,[[188,3,3,64,67],[189,1,1,67,68],[191,1,1,68,69],[192,2,2,69,71],[194,2,2,71,73],[195,2,2,73,75],[196,1,1,75,76],[204,2,2,76,78],[208,1,1,78,79],[210,1,1,79,80]]],[6,27,27,80,107,[[211,6,6,80,86],[212,1,1,86,87],[213,1,1,87,88],[214,1,1,88,89],[218,1,1,89,90],[219,5,5,90,95],[221,4,4,95,99],[223,1,1,99,100],[225,1,1,100,101],[226,1,1,101,102],[228,2,2,102,104],[229,2,2,104,106],[231,1,1,106,107]]],[7,4,4,107,111,[[232,3,3,107,110],[233,1,1,110,111]]],[8,50,45,111,156,[[236,1,1,111,112],[237,2,2,112,114],[238,4,4,114,118],[241,2,1,118,119],[242,1,1,119,120],[244,2,2,120,122],[245,3,2,122,124],[246,1,1,124,125],[249,2,2,125,127],[250,1,1,127,128],[251,1,1,128,129],[252,5,4,129,133],[253,1,1,133,134],[254,4,4,134,138],[257,1,1,138,139],[258,8,8,139,147],[259,2,2,147,149],[260,2,1,149,150],[261,1,1,150,151],[263,1,1,151,152],[265,4,3,152,155],[266,1,1,155,156]]],[9,33,30,156,186,[[268,1,1,156,157],[269,3,3,157,160],[270,1,1,160,161],[271,1,1,161,162],[272,3,3,162,165],[273,1,1,165,166],[274,3,3,166,169],[277,1,1,169,170],[278,1,1,170,171],[279,3,3,171,174],[280,1,1,174,175],[281,4,3,175,178],[282,2,1,178,179],[283,4,3,179,182],[284,1,1,182,183],[286,1,1,183,184],[287,1,1,184,185],[289,1,1,185,186]]],[10,37,32,186,218,[[291,2,2,186,188],[292,3,2,188,190],[293,1,1,190,191],[298,1,1,191,192],[300,1,1,192,193],[301,2,2,193,195],[302,2,2,195,197],[303,5,4,197,201],[304,1,1,201,202],[306,1,1,202,203],[307,4,3,203,206],[308,6,4,206,210],[309,4,4,210,214],[310,2,2,214,216],[311,1,1,216,217],[312,1,1,217,218]]],[11,26,25,218,243,[[314,3,3,218,221],[315,2,2,221,223],[316,2,2,223,225],[317,1,1,225,226],[318,2,2,226,228],[319,3,2,228,230],[320,3,3,230,233],[321,4,4,233,237],[322,1,1,237,238],[328,1,1,238,239],[331,1,1,239,240],[334,1,1,240,241],[335,1,1,241,242],[337,1,1,242,243]]],[12,13,13,243,256,[[341,2,2,243,245],[343,1,1,245,246],[348,1,1,246,247],[349,1,1,247,248],[352,1,1,248,249],[353,1,1,249,250],[354,1,1,250,251],[355,3,3,251,254],[356,1,1,254,255],[358,1,1,255,256]]],[13,11,11,256,267,[[367,1,1,256,257],[374,2,2,257,259],[375,1,1,259,260],[376,2,2,260,262],[384,1,1,262,263],[388,1,1,263,264],[391,1,1,264,265],[396,1,1,265,266],[400,1,1,266,267]]],[14,1,1,267,268,[[412,1,1,267,268]]],[15,5,5,268,273,[[414,1,1,268,269],[420,1,1,269,270],[424,3,3,270,273]]],[17,3,3,273,276,[[436,1,1,273,274],[465,1,1,274,275],[477,1,1,275,276]]],[18,1,1,276,277,[[582,1,1,276,277]]],[22,2,2,277,279,[[715,1,1,277,278],[735,1,1,278,279]]],[23,12,12,279,291,[[747,1,1,279,280],[755,1,1,280,281],[757,2,2,281,283],[772,1,1,283,284],[775,1,1,284,285],[785,3,3,285,288],[788,1,1,288,289],[795,1,1,289,290],[796,1,1,290,291]]],[25,24,13,291,304,[[802,14,7,291,298],[804,1,1,298,299],[811,7,3,299,302],[821,1,1,302,303],[826,1,1,303,304]]],[27,4,4,304,308,[[862,1,1,304,305],[863,1,1,305,306],[866,1,1,306,307],[872,1,1,307,308]]],[31,1,1,308,309,[[891,1,1,308,309]]],[33,1,1,309,310,[[902,1,1,309,310]]],[34,2,2,310,312,[[905,2,2,310,312]]]],[177,228,302,321,323,360,440,446,529,532,550,553,555,560,566,601,680,693,705,718,732,741,778,782,783,844,892,929,1014,1033,1046,1095,1100,1130,1524,1555,1562,1619,1628,1630,1888,1908,1939,1942,4101,4146,4219,4396,4397,4398,4410,4414,4419,4447,4471,4757,4759,4760,4768,4923,4925,5705,5729,5742,5870,5874,5891,5899,5947,5958,5962,6011,6015,6041,6043,6088,6301,6302,6432,6493,6512,6519,6520,6525,6526,6535,6551,6581,6608,6748,6755,6760,6761,6775,6804,6834,6840,6867,6869,6895,6933,6950,7007,7019,7027,7042,7125,7128,7134,7146,7152,7230,7251,7260,7281,7282,7284,7285,7343,7368,7400,7401,7432,7444,7460,7524,7554,7594,7608,7625,7631,7633,7638,7703,7718,7724,7728,7729,7790,7815,7823,7826,7828,7834,7835,7836,7838,7841,7846,7903,7930,7950,7980,7987,8000,8021,8081,8097,8100,8102,8125,8138,8159,8161,8169,8203,8212,8215,8223,8281,8315,8325,8354,8355,8379,8398,8400,8419,8439,8466,8467,8470,8511,8559,8592,8670,8766,8767,8778,8810,8820,9051,9092,9113,9132,9152,9181,9194,9196,9198,9212,9222,9314,9322,9327,9332,9343,9347,9357,9386,9390,9391,9395,9408,9435,9451,9478,9528,9552,9558,9576,9583,9585,9608,9628,9672,9678,9697,9715,9722,9729,9736,9755,9760,9772,9774,9791,9818,9973,10097,10159,10194,10226,10424,10427,10469,10677,10740,10816,10840,10884,10893,10896,10903,10912,10938,11197,11349,11363,11385,11396,11411,11554,11649,11715,11833,11955,12258,12323,12505,12655,12656,12662,12873,13585,13931,15619,18389,18782,19010,19236,19271,19273,19629,19693,19969,19971,19972,20013,20271,20283,20473,20476,20481,20483,20484,20485,20488,20516,20644,20649,20655,20911,21086,22097,22118,22165,22242,22561,22722,22773,22779]]],["wentest",[7,7,[[6,1,1,0,1,[[218,1,1,0,1]]],[8,1,1,1,2,[[245,1,1,1,2]]],[9,3,3,2,5,[[273,1,1,2,3],[282,1,1,3,4],[285,1,1,4,5]]],[23,2,2,5,7,[[746,1,1,5,6],[775,1,1,6,7]]]],[6720,7420,8189,8443,8536,18967,19712]]],["wrought",[2,2,[[31,2,2,0,2,[[889,2,2,0,2]]]],[22542,22544]]]]},{"k":"H1981","v":[["*",[3,3,[[26,3,3,0,3,[[852,1,1,0,1],[853,2,2,1,3]]]],[21832,21866,21874]]],["+",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21866]]],["walk",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21874]]],["walking",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21832]]]]},{"k":"H1982","v":[["*",[2,2,[[8,1,1,0,1,[[249,1,1,0,1]]],[9,1,1,1,2,[[278,1,1,1,2]]]],[7534,8290]]],["dropped",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7534]]],["traveller",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8290]]]]},{"k":"H1983","v":[["custom",[3,3,[[14,3,3,0,3,[[406,2,2,0,2],[409,1,1,2,3]]]],[12123,12130,12197]]]]},{"k":"H1984","v":[["*",[165,140,[[0,1,1,0,1,[[11,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[8,1,1,2,3,[[256,1,1,2,3]]],[9,2,2,3,5,[[280,1,1,3,4],[288,1,1,4,5]]],[10,1,1,5,6,[[310,1,1,5,6]]],[12,9,8,6,14,[[353,4,4,6,10],[360,3,2,10,12],[362,1,1,12,13],[366,1,1,13,14]]],[13,12,10,14,24,[[371,2,1,14,15],[373,1,1,15,16],[374,1,1,16,17],[386,2,2,17,19],[389,2,2,19,21],[395,2,1,21,22],[396,1,1,22,23],[397,1,1,23,24]]],[14,3,2,24,26,[[405,3,2,24,26]]],[15,2,2,26,28,[[417,1,1,26,27],[424,1,1,27,28]]],[17,4,4,28,32,[[447,1,1,28,29],[464,1,1,29,30],[466,1,1,30,31],[476,1,1,31,32]]],[18,94,76,32,108,[[482,1,1,32,33],[487,1,1,33,34],[495,1,1,34,35],[499,3,3,35,38],[511,1,1,38,39],[512,1,1,39,40],[521,1,1,40,41],[525,1,1,41,42],[526,1,1,42,43],[529,1,1,43,44],[533,3,2,44,46],[540,2,2,46,48],[541,1,1,48,49],[546,2,2,49,51],[550,1,1,51,52],[551,1,1,52,53],[552,2,1,53,54],[555,1,1,54,55],[561,1,1,55,56],[573,1,1,56,57],[574,1,1,57,58],[579,2,2,58,60],[581,1,1,60,61],[582,2,2,61,63],[583,3,3,63,66],[584,1,1,66,67],[586,1,1,67,68],[588,1,1,68,69],[589,1,1,69,70],[590,5,3,70,73],[592,2,2,73,75],[593,1,1,75,76],[594,2,2,76,78],[596,2,2,78,80],[612,5,3,80,83],[622,2,2,83,85],[623,4,3,85,88],[624,3,3,88,91],[625,12,8,91,99],[626,3,3,99,102],[627,13,6,102,108]]],[19,9,9,108,117,[[639,1,1,108,109],[647,1,1,109,110],[652,1,1,110,111],[654,2,2,111,113],[655,1,1,113,114],[658,3,3,114,117]]],[20,2,2,117,119,[[660,1,1,117,118],[665,1,1,118,119]]],[21,1,1,119,120,[[676,1,1,119,120]]],[22,7,7,120,127,[[691,1,1,120,121],[716,1,1,121,122],[719,1,1,122,123],[722,1,1,123,124],[723,1,1,124,125],[740,1,1,125,126],[742,1,1,126,127]]],[23,13,10,127,137,[[748,1,1,127,128],[753,5,2,128,130],[764,1,1,130,131],[769,1,1,131,132],[775,1,1,132,133],[790,1,1,133,134],[793,1,1,134,135],[794,1,1,135,136],[795,1,1,136,137]]],[25,1,1,137,138,[[827,1,1,137,138]]],[28,1,1,138,139,[[877,1,1,138,139]]],[33,1,1,139,140,[[901,1,1,139,140]]]],[313,6973,7785,8381,8606,9419,10824,10830,10845,10856,10988,11013,11049,11177,11281,11330,11360,11606,11608,11668,11669,11821,11848,11856,12107,12108,12395,12648,13145,13535,13614,13906,13978,14044,14121,14226,14227,14230,14390,14428,14579,14635,14654,14711,14759,14765,14844,14850,14860,14965,14969,15023,15069,15075,15176,15263,15469,15485,15529,15539,15606,15609,15651,15652,15656,15699,15731,15785,15794,15804,15814,15816,15822,15847,15848,15867,15868,15869,16062,16073,16176,16178,16196,16322,16323,16342,16343,16351,16352,16363,16371,16372,16373,16374,16375,16376,16378,16384,16385,16386,16388,16394,16395,16396,16397,16398,16399,16400,16727,16968,17127,17170,17171,17200,17312,17314,17315,17335,17436,17623,17916,18408,18467,18558,18586,18863,18896,19029,19198,19199,19435,19550,19698,20054,20131,20204,20219,21117,22337,22703]]],["+",[15,15,[[6,1,1,0,1,[[226,1,1,0,1]]],[13,1,1,1,2,[[389,1,1,1,2]]],[14,1,1,2,3,[[405,1,1,2,3]]],[15,1,1,3,4,[[417,1,1,3,4]]],[18,7,7,4,11,[[552,1,1,4,5],[590,1,1,5,6],[594,1,1,6,7],[623,1,1,7,8],[625,3,3,8,11]]],[19,1,1,11,12,[[654,1,1,11,12]]],[22,2,2,12,14,[[722,1,1,12,13],[740,1,1,13,14]]],[28,1,1,14,15,[[877,1,1,14,15]]]],[6973,11668,12107,12395,15075,15814,15868,16342,16376,16378,16384,17170,18558,18863,22337]]],["Glory",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[10830,15609]]],["Praise",[35,31,[[18,35,31,0,31,[[581,1,1,0,1],[582,1,1,1,2],[583,2,2,2,4],[588,1,1,4,5],[589,1,1,5,6],[590,3,2,6,8],[592,1,1,8,9],[593,1,1,9,10],[594,1,1,10,11],[612,4,3,11,14],[623,2,2,14,16],[624,2,2,16,18],[625,6,5,18,23],[626,2,2,23,25],[627,7,6,25,31]]]],[15606,15651,15652,15699,15794,15804,15814,15822,15848,15867,15869,16176,16178,16196,16342,16351,16352,16371,16372,16373,16374,16375,16385,16386,16394,16395,16396,16397,16398,16399,16400]]],["boast",[2,2,[[18,2,2,0,2,[[511,1,1,0,1],[521,1,1,1,2]]]],[14390,14579]]],["boasteth",[2,2,[[18,1,1,0,1,[[487,1,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]]],[14044,16968]]],["celebrate",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18408]]],["commended",[2,2,[[0,1,1,0,1,[[11,1,1,0,1]]],[19,1,1,1,2,[[639,1,1,1,2]]]],[313,16727]]],["foolish",[2,2,[[18,2,2,0,2,[[482,1,1,0,1],[550,1,1,1,2]]]],[13978,15023]]],["fools",[2,2,[[17,1,1,0,1,[[447,1,1,0,1]]],[18,1,1,1,2,[[552,1,1,1,2]]]],[13145,15075]]],["give",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17916]]],["gloriest",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20131]]],["glorieth",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19199]]],["glory",[10,8,[[18,3,3,0,3,[[540,1,1,0,1],[541,1,1,1,2],[583,1,1,2,3]]],[22,2,2,3,5,[[719,1,1,3,4],[723,1,1,4,5]]],[23,5,3,5,8,[[748,1,1,5,6],[753,4,2,6,8]]]],[14850,14860,15656,18467,18586,19029,19198,19199]]],["himself",[2,2,[[10,1,1,0,1,[[310,1,1,0,1]]],[19,1,1,1,2,[[652,1,1,1,2]]]],[9419,17127]]],["mad",[7,7,[[8,1,1,0,1,[[256,1,1,0,1]]],[18,1,1,1,2,[[579,1,1,1,2]]],[20,2,2,2,4,[[660,1,1,2,3],[665,1,1,3,4]]],[23,3,3,4,7,[[769,1,1,4,5],[794,1,1,5,6],[795,1,1,6,7]]]],[7785,15529,17335,17436,19550,20204,20219]]],["marriage",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15176]]],["praise",[48,47,[[12,5,5,0,5,[[353,1,1,0,1],[360,2,2,1,3],[362,1,1,3,4],[366,1,1,4,5]]],[13,6,6,5,11,[[374,1,1,5,6],[386,2,2,6,8],[389,1,1,8,9],[395,1,1,9,10],[397,1,1,10,11]]],[15,1,1,11,12,[[424,1,1,11,12]]],[18,31,30,12,42,[[499,3,3,12,15],[512,1,1,15,16],[533,3,2,16,18],[540,1,1,18,19],[546,2,2,19,21],[551,1,1,21,22],[579,1,1,22,23],[584,1,1,23,24],[586,1,1,24,25],[592,1,1,25,26],[596,2,2,26,28],[612,1,1,28,29],[622,1,1,29,30],[623,1,1,30,31],[624,1,1,31,32],[625,3,3,32,35],[626,1,1,35,36],[627,6,6,36,42]]],[19,3,3,42,45,[[654,1,1,42,43],[655,1,1,43,44],[658,1,1,44,45]]],[23,2,2,45,47,[[764,1,1,45,46],[775,1,1,46,47]]]],[10824,10988,11013,11049,11177,11360,11606,11608,11669,11821,11856,12648,14226,14227,14230,14428,14759,14765,14844,14965,14969,15069,15539,15731,15785,15847,16062,16073,16176,16322,16343,16363,16372,16373,16374,16388,16395,16396,16397,16398,16399,16400,17171,17200,17315,19435,19698]]],["praised",[17,17,[[9,2,2,0,2,[[280,1,1,0,1],[288,1,1,1,2]]],[12,3,3,2,5,[[353,2,2,2,4],[360,1,1,4,5]]],[13,3,3,5,8,[[371,1,1,5,6],[373,1,1,6,7],[396,1,1,7,8]]],[14,1,1,8,9,[[405,1,1,8,9]]],[18,5,5,9,14,[[495,1,1,9,10],[525,1,1,10,11],[573,1,1,11,12],[590,1,1,12,13],[622,1,1,13,14]]],[19,1,1,14,15,[[658,1,1,14,15]]],[21,1,1,15,16,[[676,1,1,15,16]]],[22,1,1,16,17,[[742,1,1,16,17]]]],[8381,8606,10845,10856,10988,11281,11330,11848,12108,14121,14635,15469,15816,16323,17314,17623,18896]]],["praises",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11821]]],["praiseth",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17312]]],["praising",[3,3,[[13,1,1,0,1,[[371,1,1,0,1]]],[14,1,1,1,2,[[405,1,1,1,2]]],[18,1,1,2,3,[[561,1,1,2,3]]]],[11281,12108,15263]]],["rage",[2,2,[[23,1,1,0,1,[[790,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[20054,22703]]],["renowned",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21117]]],["shine",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13906]]],["shined",[2,2,[[17,2,2,0,2,[[464,1,1,0,1],[466,1,1,1,2]]]],[13535,13614]]],["themselves",[2,2,[[18,2,2,0,2,[[526,1,1,0,1],[574,1,1,1,2]]]],[14654,15485]]],["thyself",[1,1,[[18,1,1,0,1,[[529,1,1,0,1]]]],[14711]]]]},{"k":"H1985","v":[["Hillel",[2,2,[[6,2,2,0,2,[[222,2,2,0,2]]]],[6882,6884]]]]},{"k":"H1986","v":[["*",[9,9,[[6,2,2,0,2,[[215,2,2,0,2]]],[8,1,1,2,3,[[249,1,1,2,3]]],[18,2,2,3,5,[[551,1,1,3,4],[618,1,1,4,5]]],[19,1,1,5,6,[[650,1,1,5,6]]],[22,3,3,6,9,[[694,1,1,6,7],[706,1,1,7,8],[719,1,1,8,9]]]],[6645,6649,7524,15054,16281,17079,17977,18165,18458]]],["beaten",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17079]]],["broken",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6645]]],["down",[3,3,[[8,1,1,0,1,[[249,1,1,0,1]]],[18,1,1,1,2,[[551,1,1,1,2]]],[22,1,1,2,3,[[694,1,1,2,3]]]],[7524,15054,17977]]],["overcome",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18165]]],["smite",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16281]]],["smote",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[22,1,1,1,2,[[719,1,1,1,2]]]],[6649,18458]]]]},{"k":"H1987","v":[["Helem",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10570]]]]},{"k":"H1988","v":[["*",[11,11,[[0,1,1,0,1,[[15,1,1,0,1]]],[1,1,1,1,2,[[52,1,1,1,2]]],[6,2,2,2,4,[[228,1,1,2,3],[230,1,1,3,4]]],[7,1,1,4,5,[[233,1,1,4,5]]],[8,3,3,5,8,[[245,1,1,5,6],[249,2,2,6,8]]],[9,1,1,8,9,[[273,1,1,8,9]]],[12,1,1,9,10,[[354,1,1,9,10]]],[18,1,1,10,11,[[550,1,1,10,11]]]],[394,1584,6996,7061,7163,7440,7544,7546,8198,10879,15030]]],["+",[2,2,[[9,1,1,0,1,[[273,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]]],[8198,10879]]],["here",[2,2,[[0,1,1,0,1,[[15,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]]],[394,7061]]],["hither",[6,6,[[1,1,1,0,1,[[52,1,1,0,1]]],[6,1,1,1,2,[[228,1,1,1,2]]],[7,1,1,2,3,[[233,1,1,2,3]]],[8,2,2,3,5,[[249,2,2,3,5]]],[18,1,1,5,6,[[550,1,1,5,6]]]],[1584,6996,7163,7544,7546,15030]]],["thither",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7440]]]]},{"k":"H1989","v":[["hammer",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6649]]]]},{"k":"H1990","v":[["Ham",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[341]]]]},{"k":"H1991","v":[["+",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20588]]]]},{"k":"H1992","v":[["*",[517,480,[[0,16,14,0,14,[[2,1,1,0,1],[5,2,1,1,2],[6,1,1,2,3],[13,2,2,3,5],[33,1,1,5,6],[36,1,1,6,7],[41,4,3,7,10],[43,2,2,10,12],[46,1,1,12,13],[47,1,1,13,14]]],[1,22,20,14,34,[[51,2,2,14,16],[54,4,2,16,18],[55,1,1,18,19],[56,1,1,19,20],[57,1,1,20,21],[63,1,1,21,22],[64,1,1,22,23],[67,2,2,23,25],[68,1,1,25,26],[73,1,1,26,27],[77,1,1,27,28],[78,1,1,28,29],[79,1,1,29,30],[81,1,1,30,31],[85,3,3,31,34]]],[2,17,17,34,51,[[97,1,1,34,35],[100,7,7,35,42],[105,1,1,42,43],[106,2,2,43,45],[110,1,1,45,46],[111,2,2,46,48],[114,2,2,48,50],[115,1,1,50,51]]],[3,24,22,51,73,[[117,2,1,51,52],[119,1,1,52,53],[123,2,1,53,54],[124,1,1,54,55],[125,1,1,55,56],[127,1,1,56,57],[129,1,1,57,58],[130,2,2,58,60],[131,1,1,60,61],[132,3,3,61,64],[133,1,1,64,65],[134,4,4,65,69],[136,1,1,69,70],[141,2,2,70,72],[143,1,1,72,73]]],[4,22,19,73,92,[[153,2,1,73,74],[154,1,1,74,75],[155,1,1,75,76],[156,1,1,76,77],[161,1,1,77,78],[163,1,1,78,79],[166,2,1,79,80],[169,1,1,80,81],[170,1,1,81,82],[171,1,1,82,83],[178,1,1,83,84],[180,1,1,84,85],[181,2,2,85,87],[184,3,3,87,90],[185,3,2,90,92]]],[5,11,10,92,102,[[187,1,1,92,93],[188,2,2,93,95],[193,1,1,95,96],[195,3,2,96,98],[196,1,1,98,99],[197,1,1,99,100],[206,1,1,100,101],[209,1,1,101,102]]],[6,26,22,102,124,[[211,1,1,102,103],[212,1,1,103,104],[216,3,1,104,105],[218,3,3,105,108],[220,1,1,108,109],[227,1,1,109,110],[228,8,6,110,116],[229,3,3,116,119],[230,4,4,119,123],[231,1,1,123,124]]],[7,1,1,124,125,[[232,1,1,124,125]]],[8,22,20,125,145,[[238,1,1,125,126],[243,1,1,126,127],[244,6,5,127,132],[245,1,1,132,133],[247,1,1,133,134],[249,3,3,134,137],[252,1,1,137,138],[254,3,2,138,140],[258,1,1,140,141],[260,1,1,141,142],[261,1,1,142,143],[263,1,1,143,144],[264,1,1,144,145]]],[9,9,7,145,152,[[268,1,1,145,146],[279,1,1,146,147],[282,1,1,147,148],[283,3,2,148,150],[286,1,1,150,151],[290,2,1,151,152]]],[10,21,21,152,173,[[291,1,1,152,153],[293,1,1,153,154],[298,2,2,154,156],[299,1,1,156,157],[300,1,1,157,158],[301,2,2,158,160],[303,1,1,160,161],[304,2,2,161,163],[305,3,3,163,166],[306,4,4,166,170],[312,3,3,170,173]]],[11,39,38,173,211,[[313,1,1,173,174],[314,1,1,174,175],[316,2,2,175,177],[319,1,1,177,178],[320,1,1,178,179],[321,1,1,179,180],[322,2,2,180,182],[324,3,3,182,185],[325,3,3,185,188],[326,3,3,188,191],[327,4,4,191,195],[328,1,1,195,196],[329,4,4,196,200],[330,1,1,200,201],[331,2,2,201,203],[332,2,2,203,205],[333,2,2,205,207],[334,1,1,207,208],[335,1,1,208,209],[336,1,1,209,210],[337,2,1,210,211]]],[12,21,20,211,231,[[339,1,1,211,212],[341,1,1,212,213],[342,1,1,213,214],[345,3,2,214,216],[346,6,6,216,222],[349,3,3,222,225],[356,1,1,225,226],[358,2,2,226,228],[361,1,1,228,229],[363,2,2,229,231]]],[13,17,16,231,247,[[369,1,1,231,232],[372,1,1,232,233],[374,1,1,233,234],[375,3,3,234,237],[378,1,1,237,238],[381,1,1,238,239],[384,1,1,239,240],[386,1,1,240,241],[388,1,1,241,242],[389,2,1,242,243],[394,1,1,243,244],[397,1,1,244,245],[398,1,1,245,246],[400,1,1,246,247]]],[14,1,1,247,248,[[404,1,1,247,248]]],[15,17,17,248,265,[[413,1,1,248,249],[415,4,4,249,253],[416,2,2,253,255],[418,2,2,255,257],[419,2,2,257,259],[421,3,3,259,262],[422,1,1,262,263],[425,2,2,263,265]]],[16,4,4,265,269,[[426,1,1,265,266],[427,1,1,266,267],[434,1,1,267,268],[435,1,1,268,269]]],[17,4,4,269,273,[[441,1,1,269,270],[443,1,1,270,271],[459,1,1,271,272],[467,1,1,272,273]]],[18,27,26,273,299,[[486,2,2,273,275],[497,1,1,275,276],[499,1,1,276,277],[500,1,1,277,278],[502,1,1,278,279],[504,1,1,279,280],[514,1,1,280,281],[515,1,1,281,282],[520,1,1,282,283],[525,1,1,283,284],[532,1,1,284,285],[533,1,1,285,286],[536,1,1,286,287],[539,1,1,287,288],[540,1,1,288,289],[555,1,1,289,290],[565,1,1,290,291],[571,1,1,291,292],[572,2,1,292,293],[579,1,1,293,294],[583,1,1,294,295],[584,1,1,295,296],[586,1,1,296,297],[596,1,1,297,298],[597,1,1,298,299]]],[19,7,7,299,306,[[628,2,2,299,301],[631,1,1,301,302],[645,1,1,302,303],[646,1,1,303,304],[653,1,1,304,305],[657,1,1,305,306]]],[20,5,5,306,311,[[659,1,1,306,307],[661,1,1,307,308],[662,1,1,308,309],[665,1,1,309,310],[670,1,1,310,311]]],[21,2,2,311,313,[[676,2,2,311,313]]],[22,20,19,313,332,[[679,1,1,313,314],[687,1,1,314,315],[702,1,1,315,316],[713,1,1,316,317],[715,2,2,317,319],[716,1,1,319,320],[722,2,2,320,322],[727,1,1,322,323],[734,1,1,323,324],[735,2,1,324,325],[739,1,1,325,326],[741,2,2,326,328],[743,2,2,328,330],[744,2,2,330,332]]],[23,68,58,332,390,[[746,2,2,332,334],[747,2,2,334,336],[748,3,1,336,337],[749,5,4,337,341],[750,1,1,341,342],[751,3,3,342,345],[753,1,1,345,346],[754,3,3,346,349],[755,2,2,349,351],[756,2,1,351,352],[758,6,3,352,355],[760,1,1,355,356],[761,3,3,356,359],[763,1,1,359,360],[766,1,1,360,361],[767,3,2,361,363],[769,1,1,363,364],[771,6,6,364,370],[773,1,1,370,371],[775,5,4,371,375],[776,1,1,375,376],[777,2,2,376,378],[780,1,1,378,379],[784,2,2,379,381],[786,1,1,381,382],[788,2,2,382,384],[790,2,2,384,386],[794,4,3,386,389],[795,1,1,389,390]]],[24,2,2,390,392,[[797,1,1,390,391],[800,1,1,391,392]]],[25,59,55,392,447,[[803,5,4,392,396],[804,5,5,396,401],[809,4,4,401,405],[811,3,3,405,408],[812,1,1,408,409],[813,2,2,409,411],[815,4,4,411,415],[821,2,2,415,417],[824,4,4,417,421],[826,2,1,421,422],[828,7,7,422,429],[832,1,1,429,430],[833,1,1,430,431],[834,2,2,431,433],[835,1,1,433,434],[837,1,1,434,435],[838,2,2,435,437],[839,1,1,437,438],[841,1,1,438,439],[844,1,1,439,440],[845,8,6,440,446],[848,1,1,446,447]]],[26,2,2,447,449,[[859,1,1,447,448],[860,1,1,448,449]]],[27,13,13,449,462,[[863,4,4,449,453],[864,1,1,453,454],[865,1,1,454,455],[867,1,1,455,456],[868,1,1,456,457],[869,3,3,457,460],[870,1,1,460,461],[874,1,1,461,462]]],[28,2,2,462,464,[[877,1,1,462,463],[878,1,1,463,464]]],[32,1,1,464,465,[[896,1,1,464,465]]],[33,1,1,465,466,[[901,1,1,465,466]]],[34,1,1,466,467,[[903,1,1,466,467]]],[35,2,2,467,469,[[907,1,1,467,468],[908,1,1,468,469]]],[37,10,10,469,479,[[911,2,2,469,471],[913,1,1,471,472],[914,1,1,472,473],[915,1,1,473,474],[918,3,3,474,477],[924,2,2,477,479]]],[38,1,1,479,480,[[925,1,1,479,480]]]],[62,141,173,349,360,1002,1099,1260,1275,1287,1327,1328,1434,1460,1565,1577,1639,1640,1682,1696,1731,1892,1943,2021,2025,2039,2179,2298,2369,2386,2453,2567,2569,2570,2945,3005,3007,3010,3024,3025,3032,3039,3205,3240,3242,3351,3371,3380,3511,3524,3567,3654,3701,3852,3955,3972,4050,4078,4117,4135,4178,4208,4210,4227,4249,4260,4274,4278,4280,4324,4477,4489,4568,4931,4949,4995,5014,5186,5238,5297,5373,5393,5423,5569,5676,5682,5697,5778,5779,5786,5813,5827,5866,5873,5877,5979,6041,6053,6069,6111,6378,6472,6531,6567,6659,6724,6738,6743,6825,6986,6994,6996,7000,7015,7019,7020,7025,7035,7046,7081,7082,7086,7088,7127,7149,7277,7377,7396,7402,7405,7413,7418,7423,7481,7523,7529,7530,7637,7726,7727,7811,7872,7924,7943,7971,8073,8347,8449,8457,8466,8562,8695,8758,8818,9025,9036,9073,9104,9110,9149,9204,9241,9247,9256,9272,9280,9288,9297,9303,9310,9512,9519,9525,9551,9562,9608,9643,9717,9750,9774,9825,9827,9855,9865,9869,9879,9883,9892,9911,9914,9924,9931,9946,9961,9962,9982,10012,10017,10023,10024,10028,10079,10098,10099,10118,10136,10144,10152,10193,10207,10245,10361,10408,10451,10588,10607,10633,10637,10638,10641,10642,10653,10721,10735,10741,10922,10937,10944,11046,11083,11085,11242,11313,11355,11375,11388,11393,11452,11495,11573,11598,11648,11662,11787,11860,11899,11949,12086,12306,12328,12330,12333,12340,12361,12362,12403,12418,12423,12481,12527,12540,12546,12586,12686,12694,12704,12745,12835,12868,12985,13039,13449,13632,14027,14041,14190,14221,14239,14257,14287,14459,14500,14569,14639,14753,14761,14805,14836,14848,15152,15313,15442,15464,15547,15694,15723,15783,16009,16081,16409,16418,16512,16909,16932,17163,17275,17322,17377,17383,17458,17535,17619,17622,17656,17850,18109,18322,18371,18390,18391,18542,18544,18657,18764,18771,18852,18874,18876,18920,18921,18925,18927,18976,18991,19018,19020,19049,19062,19063,19068,19076,19117,19123,19136,19138,19191,19203,19206,19216,19236,19238,19255,19307,19308,19309,19356,19372,19375,19382,19411,19481,19500,19505,19548,19605,19606,19610,19611,19612,19614,19644,19692,19720,19723,19724,19763,19790,19791,19874,19948,19949,19980,20013,20024,20050,20066,20170,20186,20208,20230,20329,20429,20495,20497,20498,20499,20508,20511,20517,20528,20529,20610,20613,20617,20620,20649,20653,20655,20662,20682,20683,20745,20747,20749,20751,20904,20944,21015,21017,21032,21052,21087,21131,21132,21134,21138,21142,21143,21145,21247,21277,21297,21311,21343,21366,21422,21424,21442,21523,21579,21610,21614,21615,21618,21623,21628,21691,22017,22050,22109,22117,22126,22127,22129,22147,22174,22191,22198,22203,22207,22218,22268,22340,22344,22632,22707,22747,22817,22833,22883,22893,22920,22932,22946,22982,22986,22999,23071,23083,23093]]],["+",[11,10,[[1,2,2,0,2,[[51,1,1,0,1],[85,1,1,1,2]]],[9,2,1,2,3,[[290,2,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[20,2,2,4,6,[[662,1,1,4,5],[670,1,1,5,6]]],[21,1,1,6,7,[[676,1,1,6,7]]],[23,2,2,7,9,[[754,1,1,7,8],[771,1,1,8,9]]],[24,1,1,9,10,[[800,1,1,9,10]]]],[1577,2567,8695,10944,17383,17535,17619,19203,19605,20429]]],["It",[1,1,[[18,1,1,0,1,[[572,1,1,0,1]]]],[15464]]],["There",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17622]]],["These",[9,9,[[1,1,1,0,1,[[55,1,1,0,1]]],[12,4,4,1,5,[[339,1,1,1,2],[341,1,1,2,3],[346,1,1,3,4],[361,1,1,4,5]]],[18,1,1,5,6,[[584,1,1,5,6]]],[25,2,2,6,8,[[824,1,1,6,7],[828,1,1,7,8]]],[27,1,1,8,9,[[863,1,1,8,9]]]],[1682,10361,10408,10637,11046,15723,21017,21145,22117]]],["They",[21,21,[[0,2,2,0,2,[[6,1,1,0,1],[47,1,1,1,2]]],[1,1,1,2,3,[[63,1,1,2,3]]],[3,1,1,3,4,[[132,1,1,3,4]]],[4,1,1,4,5,[[184,1,1,4,5]]],[5,1,1,5,6,[[195,1,1,5,6]]],[6,2,2,6,8,[[218,1,1,6,7],[230,1,1,7,8]]],[17,1,1,8,9,[[459,1,1,8,9]]],[18,3,3,9,12,[[497,1,1,9,10],[525,1,1,10,11],[579,1,1,11,12]]],[22,1,1,12,13,[[702,1,1,12,13]]],[23,3,3,13,16,[[754,2,2,13,15],[795,1,1,15,16]]],[25,3,3,16,19,[[832,1,1,16,17],[845,2,2,17,19]]],[27,1,1,19,20,[[869,1,1,19,20]]],[38,1,1,20,21,[[925,1,1,20,21]]]],[173,1460,1892,4227,5779,6041,6738,7086,13449,14190,14639,15547,18109,19206,19216,20230,21247,21615,21628,22198,23093]]],["This",[1,1,[[3,1,1,0,1,[[136,1,1,0,1]]]],[4324]]],["Which",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4949]]],["as",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6659]]],["it",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14500]]],["like",[1,1,[[23,1,1,0,1,[[780,1,1,0,1]]]],[19874]]],["same",[4,4,[[0,1,1,0,1,[[5,1,1,0,1]]],[15,1,1,1,2,[[422,1,1,1,2]]],[25,2,2,2,4,[[811,2,2,2,4]]]],[141,12586,20649,20655]]],["such",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11375]]],["that",[1,1,[[3,1,1,0,1,[[143,1,1,0,1]]]],[4568]]],["them",[18,17,[[0,1,1,0,1,[[13,1,1,0,1]]],[1,1,1,1,2,[[54,1,1,1,2]]],[3,1,1,2,3,[[123,1,1,2,3]]],[6,1,1,3,4,[[220,1,1,3,4]]],[11,2,2,4,6,[[321,1,1,4,5],[324,1,1,5,6]]],[12,1,1,6,7,[[346,1,1,6,7]]],[16,1,1,7,8,[[434,1,1,7,8]]],[18,4,4,8,12,[[486,1,1,8,9],[520,1,1,9,10],[536,1,1,10,11],[586,1,1,11,12]]],[23,4,3,12,15,[[758,2,1,12,13],[761,1,1,13,14],[790,1,1,14,15]]],[25,1,1,15,16,[[834,1,1,15,16]]],[34,1,1,16,17,[[903,1,1,16,17]]]],[360,1639,3852,6825,9774,9855,10642,12835,14027,14569,14805,15783,19309,19375,20050,21297,22747]]],["themselves",[4,4,[[1,1,1,0,1,[[67,1,1,0,1]]],[18,1,1,1,2,[[486,1,1,1,2]]],[23,1,1,2,3,[[769,1,1,2,3]]],[27,1,1,3,4,[[865,1,1,3,4]]]],[2025,14041,19548,22147]]],["these",[17,17,[[0,1,1,0,1,[[13,1,1,0,1]]],[2,1,1,1,2,[[105,1,1,1,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[4,2,2,3,5,[[180,1,1,3,4],[181,1,1,4,5]]],[8,1,1,5,6,[[264,1,1,5,6]]],[12,2,2,6,8,[[345,1,1,6,7],[346,1,1,7,8]]],[15,1,1,8,9,[[413,1,1,8,9]]],[23,3,3,9,12,[[749,2,2,9,11],[751,1,1,11,12]]],[25,1,1,12,13,[[841,1,1,12,13]]],[37,4,4,13,17,[[915,1,1,13,14],[918,2,2,14,16],[924,1,1,16,17]]]],[349,3205,4208,5676,5697,7971,10607,10641,12306,19062,19063,19123,21523,22946,22982,22986,23083]]],["they",[359,336,[[0,10,9,0,9,[[2,1,1,0,1],[33,1,1,1,2],[36,1,1,2,3],[41,4,3,3,6],[43,2,2,6,8],[46,1,1,8,9]]],[1,14,12,9,21,[[54,3,1,9,10],[56,1,1,10,11],[57,1,1,11,12],[64,1,1,12,13],[67,1,1,13,14],[68,1,1,14,15],[73,1,1,15,16],[77,1,1,16,17],[78,1,1,17,18],[81,1,1,18,19],[85,2,2,19,21]]],[2,15,15,21,36,[[97,1,1,21,22],[100,6,6,22,28],[106,2,2,28,30],[110,1,1,30,31],[111,2,2,31,33],[114,2,2,33,35],[115,1,1,35,36]]],[3,15,14,36,50,[[117,2,1,36,37],[119,1,1,37,38],[124,1,1,38,39],[127,1,1,39,40],[130,2,2,40,42],[131,1,1,42,43],[132,1,1,43,44],[133,1,1,44,45],[134,4,4,45,49],[141,1,1,49,50]]],[4,13,10,50,60,[[153,2,1,50,51],[155,1,1,51,52],[156,1,1,52,53],[161,1,1,53,54],[163,1,1,54,55],[166,2,1,55,56],[184,2,2,56,58],[185,3,2,58,60]]],[5,9,8,60,68,[[187,1,1,60,61],[188,2,2,61,63],[193,1,1,63,64],[195,2,1,64,65],[196,1,1,65,66],[197,1,1,66,67],[209,1,1,67,68]]],[6,15,13,68,81,[[211,1,1,68,69],[212,1,1,69,70],[216,2,1,70,71],[218,2,2,71,73],[228,6,5,73,78],[229,2,2,78,80],[230,1,1,80,81]]],[7,1,1,81,82,[[232,1,1,81,82]]],[8,18,16,82,98,[[243,1,1,82,83],[244,5,4,83,87],[245,1,1,87,88],[247,1,1,88,89],[249,3,3,89,92],[252,1,1,92,93],[254,3,2,93,95],[258,1,1,95,96],[260,1,1,96,97],[261,1,1,97,98]]],[9,6,5,98,103,[[268,1,1,98,99],[279,1,1,99,100],[283,3,2,100,102],[286,1,1,102,103]]],[10,20,20,103,123,[[291,1,1,103,104],[298,2,2,104,106],[299,1,1,106,107],[300,1,1,107,108],[301,2,2,108,110],[303,1,1,110,111],[304,2,2,111,113],[305,3,3,113,116],[306,4,4,116,120],[312,3,3,120,123]]],[11,32,31,123,154,[[313,1,1,123,124],[314,1,1,124,125],[316,1,1,125,126],[319,1,1,126,127],[320,1,1,127,128],[322,1,1,128,129],[324,2,2,129,131],[325,3,3,131,134],[326,3,3,134,137],[327,3,3,137,140],[328,1,1,140,141],[329,4,4,141,145],[331,2,2,145,147],[332,1,1,147,148],[333,2,2,148,150],[334,1,1,150,151],[335,1,1,151,152],[336,1,1,152,153],[337,2,1,153,154]]],[12,11,11,154,165,[[342,1,1,154,155],[346,3,3,155,158],[349,3,3,158,161],[356,1,1,161,162],[358,1,1,162,163],[363,2,2,163,165]]],[13,14,13,165,178,[[369,1,1,165,166],[372,1,1,166,167],[374,1,1,167,168],[375,2,2,168,170],[378,1,1,170,171],[384,1,1,171,172],[386,1,1,172,173],[388,1,1,173,174],[389,2,1,174,175],[394,1,1,175,176],[397,1,1,176,177],[400,1,1,177,178]]],[14,1,1,178,179,[[404,1,1,178,179]]],[15,10,10,179,189,[[415,3,3,179,182],[416,1,1,182,183],[418,1,1,183,184],[419,2,2,184,186],[421,3,3,186,189]]],[16,1,1,189,190,[[435,1,1,189,190]]],[17,2,2,190,192,[[443,1,1,190,191],[467,1,1,191,192]]],[18,15,15,192,207,[[499,1,1,192,193],[500,1,1,193,194],[502,1,1,194,195],[504,1,1,195,196],[514,1,1,196,197],[532,1,1,197,198],[533,1,1,198,199],[539,1,1,199,200],[555,1,1,200,201],[565,1,1,201,202],[571,1,1,202,203],[572,1,1,203,204],[583,1,1,204,205],[596,1,1,205,206],[597,1,1,206,207]]],[19,7,7,207,214,[[628,2,2,207,209],[631,1,1,209,210],[645,1,1,210,211],[646,1,1,211,212],[653,1,1,212,213],[657,1,1,213,214]]],[20,3,3,214,217,[[659,1,1,214,215],[661,1,1,215,216],[665,1,1,216,217]]],[22,18,17,217,234,[[679,1,1,217,218],[687,1,1,218,219],[713,1,1,219,220],[715,2,2,220,222],[722,2,2,222,224],[727,1,1,224,225],[734,1,1,225,226],[735,2,1,226,227],[739,1,1,227,228],[741,2,2,228,230],[743,2,2,230,232],[744,2,2,232,234]]],[23,43,39,234,273,[[746,1,1,234,235],[748,3,1,235,236],[749,2,2,236,238],[750,1,1,238,239],[751,2,2,239,241],[753,1,1,241,242],[755,2,2,242,244],[756,2,1,244,245],[758,3,3,245,248],[760,1,1,248,249],[761,2,2,249,251],[763,1,1,251,252],[766,1,1,252,253],[767,3,2,253,255],[771,5,5,255,260],[773,1,1,260,261],[775,3,3,261,264],[776,1,1,264,265],[784,2,2,265,267],[786,1,1,267,268],[788,2,2,268,270],[790,1,1,270,271],[794,2,2,271,273]]],[24,1,1,273,274,[[797,1,1,273,274]]],[25,49,46,274,320,[[803,5,4,274,278],[804,5,5,278,283],[809,4,4,283,287],[811,1,1,287,288],[812,1,1,288,289],[813,2,2,289,291],[815,4,4,291,295],[821,2,2,295,297],[824,3,3,297,300],[826,2,1,300,301],[828,6,6,301,307],[833,1,1,307,308],[834,1,1,308,309],[835,1,1,309,310],[837,1,1,310,311],[838,2,2,311,313],[844,1,1,313,314],[845,6,5,314,319],[848,1,1,319,320]]],[27,9,9,320,329,[[863,3,3,320,323],[867,1,1,323,324],[868,1,1,324,325],[869,2,2,325,327],[870,1,1,327,328],[874,1,1,328,329]]],[32,1,1,329,330,[[896,1,1,329,330]]],[33,1,1,330,331,[[901,1,1,330,331]]],[35,1,1,331,332,[[908,1,1,331,332]]],[37,4,4,332,336,[[911,2,2,332,334],[913,1,1,334,335],[914,1,1,335,336]]]],[62,1002,1099,1260,1275,1287,1327,1328,1434,1640,1696,1731,1943,2021,2039,2179,2298,2369,2453,2569,2570,2945,3005,3007,3010,3025,3032,3039,3240,3242,3351,3371,3380,3511,3524,3567,3654,3701,3955,4050,4117,4135,4178,4210,4249,4260,4274,4278,4280,4489,4931,4995,5014,5186,5238,5297,5778,5786,5813,5827,5866,5873,5877,5979,6053,6069,6111,6472,6531,6567,6659,6724,6743,6996,7000,7015,7019,7020,7035,7046,7088,7149,7377,7396,7402,7405,7418,7423,7481,7523,7529,7530,7637,7726,7727,7811,7872,7924,8073,8347,8457,8466,8562,8758,9025,9036,9073,9104,9110,9149,9204,9241,9247,9256,9272,9280,9288,9297,9303,9310,9512,9519,9525,9551,9562,9643,9717,9750,9827,9865,9869,9879,9883,9892,9911,9914,9924,9931,9946,9961,9982,10012,10017,10023,10024,10079,10098,10118,10136,10144,10152,10193,10207,10245,10451,10633,10638,10653,10721,10735,10741,10922,10937,11083,11085,11242,11313,11355,11388,11393,11452,11573,11598,11648,11662,11787,11860,11949,12086,12328,12333,12340,12362,12403,12423,12481,12527,12540,12546,12868,13039,13632,14221,14239,14257,14287,14459,14753,14761,14836,15152,15313,15442,15464,15694,16009,16081,16409,16418,16512,16909,16932,17163,17275,17322,17377,17458,17656,17850,18322,18371,18390,18542,18544,18657,18764,18771,18852,18874,18876,18920,18921,18925,18927,18991,19049,19063,19068,19117,19136,19138,19191,19236,19238,19255,19307,19308,19309,19356,19372,19382,19411,19481,19500,19505,19606,19610,19611,19612,19614,19644,19692,19723,19724,19763,19948,19949,19980,20013,20024,20066,20170,20208,20329,20495,20497,20498,20499,20508,20511,20517,20528,20529,20610,20613,20617,20620,20653,20662,20682,20683,20745,20747,20749,20751,20904,20944,21015,21032,21052,21087,21131,21132,21134,21138,21142,21143,21277,21311,21343,21366,21422,21424,21579,21610,21614,21615,21618,21623,21691,22109,22126,22127,22174,22191,22203,22207,22218,22268,22632,22707,22833,22883,22893,22920,22932]]],["things",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12985]]],["those",[52,51,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]],[2,1,1,2,3,[[100,1,1,2,3]]],[3,2,2,3,5,[[125,1,1,3,4],[129,1,1,4,5]]],[4,5,5,5,10,[[169,1,1,5,6],[170,1,1,6,7],[171,1,1,7,8],[178,1,1,8,9],[181,1,1,9,10]]],[5,1,1,10,11,[[206,1,1,10,11]]],[6,7,6,11,17,[[227,1,1,11,12],[228,2,1,12,13],[229,1,1,13,14],[230,2,2,14,16],[231,1,1,16,17]]],[8,2,2,17,19,[[238,1,1,17,18],[263,1,1,18,19]]],[9,1,1,19,20,[[282,1,1,19,20]]],[10,1,1,20,21,[[293,1,1,20,21]]],[11,4,4,21,25,[[322,1,1,21,22],[327,1,1,22,23],[330,1,1,23,24],[332,1,1,24,25]]],[13,2,2,25,27,[[381,1,1,25,26],[398,1,1,26,27]]],[15,3,3,27,30,[[418,1,1,27,28],[425,2,2,28,30]]],[16,2,2,30,32,[[426,1,1,30,31],[427,1,1,31,32]]],[18,1,1,32,33,[[540,1,1,32,33]]],[22,1,1,33,34,[[716,1,1,33,34]]],[23,10,10,34,44,[[747,2,2,34,36],[749,1,1,36,37],[758,1,1,37,38],[775,2,2,38,40],[777,2,2,40,42],[794,2,2,42,44]]],[25,1,1,44,45,[[839,1,1,44,45]]],[26,2,2,45,47,[[859,1,1,45,46],[860,1,1,46,47]]],[28,2,2,47,49,[[877,1,1,47,48],[878,1,1,48,49]]],[37,2,2,49,51,[[918,1,1,49,50],[924,1,1,50,51]]]],[141,1565,3024,3972,4078,5373,5393,5423,5569,5682,6378,6986,6994,7025,7081,7082,7127,7277,7943,8449,8818,9825,9962,10028,10099,11495,11899,12418,12686,12694,12704,12745,14848,18391,19018,19020,19076,19308,19720,19724,19790,19791,20170,20186,21442,22017,22050,22340,22344,22999,23071]]],["which",[3,3,[[8,1,1,0,1,[[244,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]],[23,1,1,2,3,[[746,1,1,2,3]]]],[7413,12361,18976]]],["who",[7,6,[[3,2,2,0,2,[[123,1,1,0,1],[141,1,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]],[12,2,1,3,4,[[345,2,1,3,4]]],[15,1,1,4,5,[[415,1,1,4,5]]],[27,1,1,5,6,[[864,1,1,5,6]]]],[3852,4477,9608,10588,12330,22129]]],["withal",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2386]]],["ye",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22817]]]]},{"k":"H1993","v":[["*",[34,32,[[10,1,1,0,1,[[291,1,1,0,1]]],[18,11,11,1,12,[[516,1,1,1,2],[519,2,2,2,4],[520,1,1,4,5],[523,2,2,5,7],[532,1,1,7,8],[536,2,2,8,10],[554,1,1,10,11],[560,1,1,11,12]]],[19,4,4,12,16,[[628,1,1,12,13],[634,1,1,13,14],[636,1,1,14,15],[647,1,1,15,16]]],[21,1,1,16,17,[[675,1,1,16,17]]],[22,6,5,17,22,[[694,1,1,17,18],[695,2,1,18,19],[700,1,1,19,20],[729,1,1,20,21],[737,1,1,21,22]]],[23,9,8,22,30,[[748,1,1,22,23],[749,1,1,23,24],[750,1,1,24,25],[775,2,2,25,27],[792,2,1,27,28],[794,1,1,28,29],[795,1,1,29,30]]],[25,1,1,30,31,[[808,1,1,30,31]]],[37,1,1,31,32,[[919,1,1,31,32]]]],[8758,14518,14560,14566,14571,14617,14620,14749,14796,14804,15096,15243,16421,16586,16651,16955,17602,17980,17995,18054,18688,18811,19046,19080,19112,19711,19726,20116,20208,20267,20593,23014]]],["aloud",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14749]]],["clamorous",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16651]]],["concourse",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16421]]],["disquieted",[4,4,[[18,4,4,0,4,[[516,1,1,0,1],[519,2,2,1,3],[520,1,1,3,4]]]],[14518,14560,14566,14571]]],["loud",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16586]]],["mourning",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20593]]],["moved",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17602]]],["noise",[6,5,[[18,2,2,0,2,[[536,2,2,0,2]]],[22,2,1,2,3,[[695,2,1,2,3]]],[23,1,1,3,4,[[748,1,1,3,4]]],[37,1,1,4,5,[[919,1,1,4,5]]]],[14796,14804,17995,19046,23014]]],["raged",[1,1,[[18,1,1,0,1,[[523,1,1,0,1]]]],[14620]]],["raging",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16955]]],["roar",[6,6,[[18,1,1,0,1,[[523,1,1,0,1]]],[22,1,1,1,2,[[737,1,1,1,2]]],[23,4,4,2,6,[[749,1,1,2,3],[775,1,1,3,4],[794,1,1,4,5],[795,1,1,5,6]]]],[14617,18811,19080,19726,20208,20267]]],["roared",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18688]]],["roareth",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19112]]],["sound",[3,2,[[22,1,1,0,1,[[694,1,1,0,1]]],[23,2,1,1,2,[[792,2,1,1,2]]]],[17980,20116]]],["troubled",[2,2,[[18,1,1,0,1,[[554,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[15096,19711]]],["tumult",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15243]]],["tumultuous",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18054]]],["uproar",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8758]]]]},{"k":"H1994","v":[["*",[9,8,[[14,7,6,0,6,[[406,1,1,0,1],[407,5,4,1,5],[409,1,1,5,6]]],[26,2,2,6,8,[[851,2,2,6,8]]]],[12133,12139,12146,12148,12149,12190,21792,21793]]],["+",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21792,21793]]],["them",[6,6,[[14,6,6,0,6,[[406,1,1,0,1],[407,4,4,1,5],[409,1,1,5,6]]]],[12133,12139,12146,12148,12149,12190]]],["those",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12148]]]]},{"k":"H1995","v":[["*",[83,78,[[0,2,2,0,2,[[16,2,2,0,2]]],[6,1,1,2,3,[[214,1,1,2,3]]],[8,3,3,3,6,[[239,1,1,3,4],[249,2,2,4,6]]],[9,2,2,6,8,[[272,1,1,6,7],[284,1,1,7,8]]],[10,3,3,8,11,[[308,1,1,8,9],[310,2,2,9,11]]],[11,3,2,11,13,[[319,2,1,11,12],[337,1,1,12,13]]],[12,1,1,13,14,[[366,1,1,13,14]]],[13,9,9,14,23,[[377,1,1,14,15],[379,1,1,15,16],[380,1,1,16,17],[386,4,4,17,21],[397,1,1,21,22],[398,1,1,22,23]]],[17,2,2,23,25,[[466,1,1,23,24],[474,1,1,24,25]]],[18,3,3,25,28,[[514,1,1,25,26],[519,1,1,26,27],[542,1,1,27,28]]],[20,1,1,28,29,[[663,1,1,28,29]]],[22,14,13,29,42,[[683,2,2,29,31],[691,1,1,31,32],[694,1,1,32,33],[695,1,1,33,34],[707,4,3,34,37],[709,1,1,37,38],[710,1,1,38,39],[711,1,1,39,40],[738,1,1,40,41],[741,1,1,41,42]]],[23,6,6,42,48,[[747,1,1,42,43],[754,1,1,43,44],[791,1,1,44,45],[793,1,1,45,46],[795,2,2,46,48]]],[25,24,23,48,71,[[806,1,1,48,49],[808,4,4,49,53],[824,1,1,53,54],[827,1,1,54,55],[830,1,1,55,56],[831,3,3,56,59],[832,2,2,59,61],[833,10,9,61,70],[840,1,1,70,71]]],[26,6,5,71,76,[[859,1,1,71,72],[860,5,4,72,76]]],[28,2,1,76,77,[[878,2,1,76,77]]],[29,1,1,77,78,[[883,1,1,77,78]]]],[401,402,6606,7311,7524,7527,8176,8507,9382,9421,9436,9720,10233,11180,11437,11461,11486,11589,11599,11602,11611,11864,11882,13622,13841,14466,14559,14867,17407,17752,17753,17910,17983,17995,18198,18200,18201,18254,18273,18282,18826,18881,19025,19214,20076,20159,20228,20254,20553,20588,20589,20590,20591,21049,21113,21202,21208,21214,21219,21232,21248,21260,21264,21266,21268,21272,21273,21274,21279,21280,21459,22021,22046,22047,22048,22049,22357,22446]]],["+",[3,3,[[18,1,1,0,1,[[514,1,1,0,1]]],[22,1,1,1,2,[[709,1,1,1,2]]],[25,1,1,2,3,[[808,1,1,2,3]]]],[14466,18254,20588]]],["Multitudes",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22357]]],["abundance",[3,3,[[10,1,1,0,1,[[308,1,1,0,1]]],[20,1,1,1,2,[[663,1,1,1,2]]],[22,1,1,2,3,[[738,1,1,2,3]]]],[9382,17407,18826]]],["company",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11599]]],["many",[3,3,[[0,2,2,0,2,[[16,2,2,0,2]]],[13,1,1,2,3,[[377,1,1,2,3]]]],[401,402,11437]]],["multiplied",[1,1,[[25,1,1,0,1,[[806,1,1,0,1]]]],[20553]]],["multitude",[58,54,[[6,1,1,0,1,[[214,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[9,1,1,2,3,[[272,1,1,2,3]]],[10,2,2,3,5,[[310,2,2,3,5]]],[11,3,2,5,7,[[319,2,1,5,6],[337,1,1,6,7]]],[13,6,6,7,13,[[379,1,1,7,8],[380,1,1,8,9],[386,3,3,9,12],[398,1,1,12,13]]],[17,2,2,13,15,[[466,1,1,13,14],[474,1,1,14,15]]],[18,1,1,15,16,[[519,1,1,15,16]]],[22,10,9,16,25,[[683,2,2,16,18],[691,1,1,18,19],[694,1,1,19,20],[695,1,1,20,21],[707,4,3,21,24],[710,1,1,24,25]]],[23,5,5,25,30,[[747,1,1,25,26],[754,1,1,26,27],[793,1,1,27,28],[795,2,2,28,30]]],[25,20,19,30,49,[[808,3,3,30,33],[824,1,1,33,34],[830,1,1,34,35],[831,3,3,35,38],[832,2,2,38,40],[833,9,8,40,48],[840,1,1,48,49]]],[26,6,5,49,54,[[859,1,1,49,50],[860,5,4,50,54]]]],[6606,7524,8176,9421,9436,9720,10233,11461,11486,11589,11602,11611,11882,13622,13841,14559,17752,17753,17910,17983,17995,18198,18200,18201,18273,19025,19214,20159,20228,20254,20589,20590,20591,21049,21202,21208,21214,21219,21232,21248,21260,21264,21266,21272,21273,21274,21279,21280,21459,22021,22046,22047,22048,22049]]],["multitudes",[2,2,[[25,1,1,0,1,[[833,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]]],[21268,22357]]],["noise",[3,3,[[8,1,1,0,1,[[249,1,1,0,1]]],[25,1,1,1,2,[[827,1,1,1,2]]],[29,1,1,2,3,[[883,1,1,2,3]]]],[7527,21113,22446]]],["rumbling",[1,1,[[23,1,1,0,1,[[791,1,1,0,1]]]],[20076]]],["sounding",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18881]]],["store",[2,2,[[12,1,1,0,1,[[366,1,1,0,1]]],[13,1,1,1,2,[[397,1,1,1,2]]]],[11180,11864]]],["tumult",[4,4,[[8,1,1,0,1,[[239,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[18,1,1,2,3,[[542,1,1,2,3]]],[22,1,1,3,4,[[711,1,1,3,4]]]],[7311,8507,14867,18282]]]]},{"k":"H1996","v":[["Hamongog",[2,2,[[25,2,2,0,2,[[840,2,2,0,2]]]],[21459,21463]]]]},{"k":"H1997","v":[["Hamonah",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21464]]]]},{"k":"H1998","v":[["noise",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17939]]]]},{"k":"H1999","v":[["*",[2,2,[[23,1,1,0,1,[[755,1,1,0,1]]],[25,1,1,1,2,[[802,1,1,1,2]]]],[19242,20488]]],["speech",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20488]]],["tumult",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19242]]]]},{"k":"H2000","v":[["*",[13,13,[[1,2,2,0,2,[[63,1,1,0,1],[72,1,1,1,2]]],[4,1,1,2,3,[[154,1,1,2,3]]],[5,1,1,3,4,[[196,1,1,3,4]]],[6,1,1,4,5,[[214,1,1,4,5]]],[8,1,1,5,6,[[242,1,1,5,6]]],[9,1,1,6,7,[[288,1,1,6,7]]],[13,1,1,7,8,[[381,1,1,7,8]]],[16,1,1,8,9,[[434,1,1,8,9]]],[18,2,2,9,11,[[495,1,1,9,10],[621,1,1,10,11]]],[22,1,1,11,12,[[706,1,1,11,12]]],[23,1,1,12,13,[[795,1,1,12,13]]]],[1913,2171,4953,6074,6614,7362,8617,11496,12858,14132,16311,18192,20246]]],["+",[3,3,[[1,2,2,0,2,[[63,1,1,0,1],[72,1,1,1,2]]],[6,1,1,2,3,[[214,1,1,2,3]]]],[1913,2171,6614]]],["break",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18192]]],["consume",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12858]]],["crushed",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20246]]],["destroy",[2,2,[[4,1,1,0,1,[[154,1,1,0,1]]],[18,1,1,1,2,[[621,1,1,1,2]]]],[4953,16311]]],["discomfited",[4,4,[[5,1,1,0,1,[[196,1,1,0,1]]],[8,1,1,1,2,[[242,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]]],[6074,7362,8617,14132]]],["vex",[1,1,[[13,1,1,0,1,[[381,1,1,0,1]]]],[11496]]]]},{"k":"H2001","v":[["*",[55,45,[[16,55,45,0,45,[[428,12,11,0,11],[429,1,1,11,12],[430,12,8,12,20],[431,10,9,20,29],[432,9,6,29,35],[433,6,5,35,40],[434,5,5,40,45]]]],[12748,12749,12751,12752,12753,12754,12755,12757,12758,12759,12762,12769,12783,12784,12787,12788,12789,12790,12791,12793,12797,12798,12799,12800,12803,12804,12805,12806,12807,12808,12813,12814,12815,12816,12817,12818,12819,12820,12822,12824,12844,12846,12847,12848,12858]]],["+",[3,3,[[16,3,3,0,3,[[430,1,1,0,1],[431,1,1,1,2],[433,1,1,2,3]]]],[12788,12804,12819]]],["Haman",[47,42,[[16,47,42,0,42,[[428,12,11,0,11],[429,1,1,11,12],[430,9,8,12,20],[431,9,8,20,28],[432,8,6,28,34],[433,5,5,34,39],[434,3,3,39,42]]]],[12748,12749,12751,12752,12753,12754,12755,12757,12758,12759,12762,12769,12783,12784,12787,12788,12789,12790,12791,12793,12797,12798,12799,12800,12803,12805,12806,12807,12808,12813,12814,12815,12816,12817,12818,12819,12820,12822,12824,12844,12846,12858]]],["Haman's",[3,3,[[16,3,3,0,3,[[432,1,1,0,1],[434,2,2,1,3]]]],[12815,12847,12848]]],["he",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12788]]],["him",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12788]]]]},{"k":"H2002","v":[["chain",[3,3,[[26,3,3,0,3,[[854,3,3,0,3]]]],[21881,21890,21903]]]]},{"k":"H2003","v":[["melting",[1,1,[[22,1,1,0,1,[[742,1,1,0,1]]]],[18887]]]]},{"k":"H2004","v":[["*",[16,14,[[0,3,3,0,3,[[18,1,1,0,1],[29,2,2,1,3]]],[1,2,2,3,5,[[74,1,1,3,4],[86,1,1,4,5]]],[2,3,3,5,8,[[99,1,1,5,6],[100,1,1,6,7],[103,1,1,7,8]]],[7,2,1,8,9,[[232,2,1,8,9]]],[8,1,1,9,10,[[266,1,1,9,10]]],[22,1,1,10,11,[[716,1,1,10,11]]],[23,4,3,11,14,[[748,1,1,11,12],[792,1,1,12,13],[795,2,1,13,14]]]],[486,856,867,2224,2620,2978,3018,3151,7140,8016,18406,19056,20089,20255]]],["+",[4,4,[[0,2,2,0,2,[[18,1,1,0,1],[29,1,1,1,2]]],[1,1,1,2,3,[[74,1,1,2,3]]],[2,1,1,3,4,[[103,1,1,3,4]]]],[486,856,2224,3151]]],["them",[4,3,[[0,1,1,0,1,[[29,1,1,0,1]]],[7,2,1,1,2,[[232,2,1,1,2]]],[8,1,1,2,3,[[266,1,1,2,3]]]],[867,7140,8016]]],["thereby",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20255]]],["therein",[3,3,[[2,1,1,0,1,[[99,1,1,0,1]]],[23,2,2,1,3,[[748,1,1,1,2],[792,1,1,2,3]]]],[2978,19056,20089]]],["these",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18406]]],["wherein",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20255]]],["withal",[2,2,[[1,1,1,0,1,[[86,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]]],[2620,3018]]]]},{"k":"H2005","v":[["*",[99,96,[[0,12,12,0,12,[[2,1,1,0,1],[3,1,1,1,2],[10,1,1,2,3],[14,1,1,3,4],[18,1,1,4,5],[26,2,2,5,7],[28,1,1,7,8],[29,1,1,8,9],[38,1,1,9,10],[43,1,1,10,11],[46,1,1,11,12]]],[1,5,5,12,17,[[53,1,1,12,13],[54,1,1,13,14],[55,2,2,14,16],[57,1,1,16,17]]],[2,3,3,17,20,[[99,2,2,17,19],[114,1,1,19,20]]],[3,4,4,20,24,[[133,1,1,20,21],[139,2,2,21,23],[147,1,1,23,24]]],[4,4,4,24,28,[[157,1,1,24,25],[162,1,1,25,26],[183,2,2,26,28]]],[8,1,1,28,29,[[260,1,1,28,29]]],[13,2,1,29,30,[[373,2,1,29,30]]],[17,32,32,30,62,[[439,1,1,30,31],[443,2,2,31,33],[444,2,2,33,35],[447,2,2,35,37],[448,2,2,37,39],[450,1,1,39,40],[454,1,1,40,41],[456,2,2,41,43],[458,1,1,43,44],[459,1,1,44,45],[460,1,1,45,46],[461,1,1,46,47],[462,1,1,47,48],[463,1,1,48,49],[466,1,1,49,50],[467,1,1,50,51],[468,4,4,51,55],[471,4,4,55,59],[475,2,2,59,61],[476,1,1,61,62]]],[18,5,5,62,67,[[528,2,2,62,64],[545,1,1,64,65],[555,1,1,65,66],[616,1,1,66,67]]],[19,2,2,67,69,[[638,1,1,67,68],[651,1,1,68,69]]],[22,26,24,69,93,[[701,1,1,69,70],[710,1,1,70,71],[711,1,1,71,72],[718,2,1,72,73],[719,3,3,73,76],[720,1,1,76,77],[722,1,1,77,78],[727,2,2,78,80],[728,5,4,80,84],[732,1,1,84,85],[733,2,2,85,87],[734,1,1,87,88],[736,2,2,88,90],[737,1,1,90,91],[742,2,2,91,93]]],[23,1,1,93,94,[[747,1,1,93,94]]],[25,1,1,94,95,[[819,1,1,94,95]]],[36,1,1,95,96,[[910,1,1,95,96]]]],[77,93,272,363,491,738,764,802,864,1157,1332,1443,1602,1637,1667,1685,1736,2995,2996,3489,4256,4425,4440,4680,5077,5200,5742,5755,7880,11337,12948,13048,13049,13062,13063,13142,13143,13154,13168,13218,13304,13371,13382,13427,13441,13466,13481,13493,13532,13623,13639,13656,13660,13662,13679,13741,13758,13762,13766,13868,13887,13897,14696,14697,14933,15133,16243,16719,17091,18090,18260,18286,18435,18462,18475,18480,18481,18544,18652,18657,18663,18664,18671,18673,18738,18744,18745,18756,18789,18790,18801,18890,18894,19003,20853,22867]]],["+",[1,1,[[2,1,1,0,1,[[99,1,1,0,1]]]],[2995]]],["Behold",[73,73,[[0,11,11,0,11,[[2,1,1,0,1],[3,1,1,1,2],[10,1,1,2,3],[14,1,1,3,4],[18,1,1,4,5],[26,2,2,5,7],[29,1,1,7,8],[38,1,1,8,9],[43,1,1,9,10],[46,1,1,10,11]]],[1,3,3,11,14,[[54,1,1,11,12],[55,2,2,12,14]]],[2,1,1,14,15,[[99,1,1,14,15]]],[3,3,3,15,18,[[133,1,1,15,16],[139,1,1,16,17],[147,1,1,17,18]]],[4,3,3,18,21,[[157,1,1,18,19],[162,1,1,19,20],[183,1,1,20,21]]],[17,25,25,21,46,[[439,1,1,21,22],[443,2,2,22,24],[444,1,1,24,25],[447,2,2,25,27],[450,1,1,27,28],[454,1,1,28,29],[456,1,1,29,30],[458,1,1,30,31],[459,1,1,31,32],[460,1,1,32,33],[462,1,1,33,34],[463,1,1,34,35],[467,1,1,35,36],[468,3,3,36,39],[471,4,4,39,43],[475,2,2,43,45],[476,1,1,45,46]]],[18,3,3,46,49,[[528,2,2,46,48],[555,1,1,48,49]]],[19,2,2,49,51,[[638,1,1,49,50],[651,1,1,50,51]]],[22,21,21,51,72,[[701,1,1,51,52],[710,1,1,52,53],[711,1,1,53,54],[718,1,1,54,55],[719,3,3,55,58],[720,1,1,58,59],[722,1,1,59,60],[727,2,2,60,62],[728,3,3,62,65],[732,1,1,65,66],[733,2,2,66,68],[734,1,1,68,69],[736,2,2,69,71],[737,1,1,71,72]]],[25,1,1,72,73,[[819,1,1,72,73]]]],[77,93,272,363,491,738,764,864,1157,1332,1443,1637,1667,1685,2996,4256,4440,4680,5077,5200,5742,12948,13048,13049,13063,13142,13143,13218,13304,13382,13427,13441,13466,13493,13532,13639,13656,13660,13662,13741,13758,13762,13766,13868,13887,13897,14696,14697,15133,16719,17091,18090,18260,18286,18435,18462,18475,18480,18481,18544,18652,18657,18663,18671,18673,18738,18744,18745,18756,18789,18790,18801,20853]]],["If",[3,3,[[13,1,1,0,1,[[373,1,1,0,1]]],[23,1,1,1,2,[[747,1,1,1,2]]],[36,1,1,2,3,[[910,1,1,2,3]]]],[11337,19003,22867]]],["Lo",[6,6,[[0,1,1,0,1,[[28,1,1,0,1]]],[17,5,5,1,6,[[444,1,1,1,2],[448,1,1,2,3],[456,1,1,3,4],[461,1,1,4,5],[468,1,1,5,6]]]],[802,13062,13154,13371,13481,13679]]],["Though",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13168]]],["behold",[9,9,[[1,1,1,0,1,[[53,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[4,1,1,2,3,[[183,1,1,2,3]]],[8,1,1,3,4,[[260,1,1,3,4]]],[17,1,1,4,5,[[466,1,1,4,5]]],[22,4,4,5,9,[[718,1,1,5,6],[728,1,1,6,7],[742,2,2,7,9]]]],[1602,3489,5755,7880,13623,18435,18664,18890,18894]]],["if",[1,1,[[13,1,1,0,1,[[373,1,1,0,1]]]],[11337]]],["lo",[5,5,[[1,1,1,0,1,[[57,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[18,2,2,2,4,[[545,1,1,2,3],[616,1,1,3,4]]],[22,1,1,4,5,[[728,1,1,4,5]]]],[1736,4425,14933,16243,18671]]]]},{"k":"H2006","v":[["*",[16,12,[[14,7,4,0,4,[[406,2,2,0,2],[407,2,1,2,3],[409,3,1,3,4]]],[26,9,8,4,12,[[851,3,3,4,7],[852,4,3,7,10],[853,1,1,10,11],[854,1,1,11,12]]]],[12123,12126,12151,12199,21763,21764,21767,21822,21824,21825,21864,21890]]],["If",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21824]]],["if",[11,10,[[14,3,3,0,3,[[406,2,2,0,2],[407,1,1,2,3]]],[26,8,7,3,10,[[851,3,3,3,6],[852,3,2,6,8],[853,1,1,8,9],[854,1,1,9,10]]]],[12123,12126,12151,21763,21764,21767,21822,21825,21864,21890]]],["or",[2,1,[[14,2,1,0,1,[[409,2,1,0,1]]]],[12199]]],["whether",[2,2,[[14,2,2,0,2,[[407,1,1,0,1],[409,1,1,1,2]]]],[12151,12199]]]]},{"k":"H2007","v":[["*",[36,34,[[0,3,3,0,3,[[5,1,1,0,1],[32,1,1,1,2],[40,1,1,2,3]]],[1,2,2,3,5,[[50,1,1,3,4],[58,1,1,4,5]]],[2,4,4,5,9,[[93,1,1,5,6],[95,1,1,6,7],[107,2,2,7,9]]],[3,2,2,9,11,[[129,1,1,9,10],[147,1,1,10,11]]],[8,2,2,11,13,[[252,1,1,11,12],[262,1,1,12,13]]],[9,2,1,13,14,[[278,2,1,13,14]]],[17,1,1,14,15,[[458,1,1,14,15]]],[18,1,1,15,16,[[511,1,1,15,16]]],[19,2,2,16,18,[[633,1,1,16,17],[657,1,1,17,18]]],[22,3,3,18,21,[[712,1,1,18,19],[719,1,1,19,20],[729,1,1,20,21]]],[23,3,3,21,24,[[749,1,1,21,22],[778,1,1,22,23],[782,1,1,23,24]]],[25,10,9,24,33,[[802,3,2,24,26],[824,1,1,26,27],[831,1,1,27,28],[843,5,5,28,33]]],[37,1,1,33,34,[[915,1,1,33,34]]]],[139,966,1214,1551,1774,2797,2852,3261,3268,4094,4680,7646,7938,8294,13433,14408,16556,17266,18319,18473,18692,19064,19808,19917,20469,20487,21052,21221,21557,21558,21561,21565,21566,22945]]],["+",[7,7,[[2,1,1,0,1,[[93,1,1,0,1]]],[18,1,1,1,2,[[511,1,1,1,2]]],[19,1,1,2,3,[[657,1,1,2,3]]],[22,1,1,3,4,[[712,1,1,3,4]]],[23,1,1,4,5,[[749,1,1,4,5]]],[25,2,2,5,7,[[802,1,1,5,6],[843,1,1,6,7]]]],[2797,14408,17266,18319,19064,20487,21557]]],["These",[2,2,[[19,1,1,0,1,[[633,1,1,0,1]]],[22,1,1,1,2,[[729,1,1,1,2]]]],[16556,18692]]],["in",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4094]]],["side",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20487]]],["such",[4,3,[[0,1,1,0,1,[[40,1,1,0,1]]],[9,2,1,1,2,[[278,2,1,1,2]]],[17,1,1,2,3,[[458,1,1,2,3]]]],[1214,8294,13433]]],["theirs",[1,1,[[2,1,1,0,1,[[107,1,1,0,1]]]],[3261]]],["them",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21561]]],["therein",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2852]]],["these",[3,3,[[3,1,1,0,1,[[147,1,1,0,1]]],[23,1,1,1,2,[[778,1,1,1,2]]],[25,1,1,2,3,[[831,1,1,2,3]]]],[4680,19808,21221]]],["they",[12,12,[[0,2,2,0,2,[[5,1,1,0,1],[32,1,1,1,2]]],[1,2,2,2,4,[[50,1,1,2,3],[58,1,1,3,4]]],[2,1,1,4,5,[[107,1,1,4,5]]],[22,1,1,5,6,[[719,1,1,5,6]]],[25,5,5,6,11,[[802,1,1,6,7],[824,1,1,7,8],[843,3,3,8,11]]],[37,1,1,11,12,[[915,1,1,11,12]]]],[139,966,1551,1774,3268,18473,20469,21052,21558,21565,21566,22945]]],["those",[3,3,[[8,2,2,0,2,[[252,1,1,0,1],[262,1,1,1,2]]],[23,1,1,2,3,[[782,1,1,2,3]]]],[7646,7938,19917]]]]},{"k":"H2008","v":[["*",[55,46,[[0,8,7,0,7,[[14,2,1,0,1],[20,1,1,1,2],[41,1,1,2,3],[43,1,1,3,4],[44,3,3,4,7]]],[3,1,1,7,8,[[130,1,1,7,8]]],[5,5,4,8,12,[[188,1,1,8,9],[189,1,1,9,10],[194,2,1,10,11],[204,1,1,11,12]]],[6,2,2,12,14,[[226,2,2,12,14]]],[8,1,1,14,15,[[255,1,1,14,15]]],[9,6,5,15,20,[[267,1,1,15,16],[270,1,1,16,17],[271,2,1,17,18],[280,1,1,18,19],[286,1,1,19,20]]],[10,2,1,20,21,[[310,2,1,20,21]]],[11,7,4,21,25,[[314,4,2,21,23],[316,2,1,23,24],[320,1,1,24,25]]],[12,3,3,25,28,[[346,1,1,25,26],[348,1,1,26,27],[349,1,1,27,28]]],[13,1,1,28,29,[[394,1,1,28,29]]],[18,1,1,29,30,[[548,1,1,29,30]]],[19,3,3,30,33,[[636,2,2,30,32],[652,1,1,32,33]]],[22,1,1,33,34,[[735,1,1,33,34]]],[23,11,10,34,44,[[771,1,1,34,35],[772,6,5,35,40],[775,1,1,40,41],[792,1,1,41,42],[794,1,1,42,43],[795,1,1,43,44]]],[25,1,1,44,45,[[841,1,1,44,45]]],[26,2,1,45,46,[[861,2,1,45,46]]]],[376,536,1267,1352,1363,1366,1371,4127,5871,5902,6022,6299,6951,6962,7751,8032,8126,8138,8388,8570,9448,9559,9565,9638,9734,10633,10678,10749,11777,14993,16642,16654,17120,18768,19618,19621,19622,19624,19625,19633,19699,20127,20171,20276,21481,22086]]],["+",[12,10,[[0,3,2,0,2,[[14,2,1,0,1],[43,1,1,1,2]]],[6,1,1,2,3,[[226,1,1,2,3]]],[8,1,1,3,4,[[255,1,1,3,4]]],[9,1,1,4,5,[[286,1,1,4,5]]],[11,3,2,5,7,[[316,2,1,5,6],[320,1,1,6,7]]],[12,2,2,7,9,[[346,1,1,7,8],[349,1,1,8,9]]],[18,1,1,9,10,[[548,1,1,9,10]]]],[376,1352,6962,7751,8570,9638,9734,10633,10749,14993]]],["Thus",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20127]]],["far",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20276]]],["here",[2,2,[[0,1,1,0,1,[[20,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]]],[536,9448]]],["hither",[21,20,[[0,4,4,0,4,[[41,1,1,0,1],[44,3,3,1,4]]],[5,3,3,4,7,[[188,1,1,4,5],[189,1,1,5,6],[204,1,1,6,7]]],[6,1,1,7,8,[[226,1,1,7,8]]],[9,4,3,8,11,[[267,1,1,8,9],[271,2,1,9,10],[280,1,1,10,11]]],[11,2,2,11,13,[[314,2,2,11,13]]],[12,1,1,13,14,[[348,1,1,13,14]]],[13,1,1,14,15,[[394,1,1,14,15]]],[19,3,3,15,18,[[636,2,2,15,17],[652,1,1,17,18]]],[22,1,1,18,19,[[735,1,1,18,19]]],[25,1,1,19,20,[[841,1,1,19,20]]]],[1267,1363,1366,1371,5871,5902,6299,6951,8032,8138,8388,9559,9565,10678,11777,16642,16654,17120,18768,21481]]],["now",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4127]]],["side",[2,1,[[26,2,1,0,1,[[861,2,1,0,1]]]],[22086]]],["there",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9448]]],["this",[7,6,[[23,7,6,0,6,[[771,1,1,0,1],[772,6,5,1,6]]]],[19618,19621,19622,19624,19625,19633]]],["thither",[4,4,[[9,1,1,0,1,[[270,1,1,0,1]]],[11,2,2,1,3,[[314,2,2,1,3]]],[23,1,1,3,4,[[775,1,1,3,4]]]],[8126,9559,9565,19699]]],["thitherward",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20171]]],["way",[2,1,[[5,2,1,0,1,[[194,2,1,0,1]]]],[6022]]]]},{"k":"H2009","v":[["*",[1060,1004,[[0,125,117,0,117,[[0,2,2,0,2],[5,3,3,2,5],[7,2,2,5,7],[8,1,1,7,8],[11,2,2,8,10],[14,4,4,10,14],[15,4,4,14,18],[16,2,2,18,20],[17,5,5,20,25],[18,6,6,25,31],[19,4,3,31,34],[21,6,5,34,39],[23,7,7,39,46],[24,2,2,46,48],[25,2,2,48,50],[26,7,7,50,57],[27,4,3,57,60],[28,4,3,60,63],[29,1,1,63,64],[30,5,4,64,68],[31,2,2,68,70],[32,1,1,70,71],[33,1,1,71,72],[36,10,7,72,79],[37,5,5,79,84],[39,3,3,84,87],[40,12,12,87,99],[41,6,6,99,105],[42,1,1,105,106],[43,1,1,106,107],[44,1,1,107,108],[45,1,1,108,109],[46,1,1,109,110],[47,5,5,110,115],[49,2,2,115,117]]],[1,41,41,117,158,[[50,1,1,117,118],[51,2,2,118,120],[52,4,4,120,124],[53,4,4,124,128],[54,1,1,128,129],[56,3,3,129,132],[57,4,4,132,136],[58,3,3,136,139],[59,1,1,139,140],[63,2,2,140,142],[65,3,3,142,145],[66,1,1,145,146],[68,1,1,146,147],[72,1,1,147,148],[73,2,2,148,150],[80,1,1,150,151],[81,2,2,151,153],[82,1,1,153,154],[83,3,3,154,157],[88,1,1,157,158]]],[2,26,26,158,184,[[99,1,1,158,159],[102,20,20,159,179],[103,5,5,179,184]]],[3,28,26,184,210,[[119,1,1,184,185],[128,2,1,185,186],[130,1,1,186,187],[132,2,2,187,189],[133,1,1,189,190],[134,3,3,190,193],[136,1,1,193,194],[138,5,4,194,198],[139,4,4,198,202],[140,3,3,202,205],[141,2,2,205,207],[148,3,3,207,210]]],[4,10,10,210,220,[[153,1,1,210,211],[155,1,1,211,212],[161,2,2,212,214],[165,1,1,214,215],[169,1,1,215,216],[171,1,1,216,217],[174,1,1,217,218],[178,1,1,218,219],[183,1,1,219,220]]],[5,15,14,220,234,[[188,2,2,220,222],[189,1,1,222,223],[191,1,1,223,224],[193,2,2,224,226],[194,1,1,226,227],[195,3,3,227,230],[200,2,1,230,231],[208,1,1,231,232],[209,1,1,232,233],[210,1,1,233,234]]],[6,44,38,234,272,[[211,1,1,234,235],[213,3,2,235,237],[214,2,1,237,238],[216,3,3,238,241],[217,4,2,241,243],[218,1,1,243,244],[219,6,5,244,249],[221,1,1,249,250],[223,4,4,250,254],[224,3,3,254,257],[226,1,1,257,258],[227,1,1,258,259],[228,2,2,259,261],[229,6,5,261,266],[230,2,2,266,268],[231,4,4,268,272]]],[7,5,5,272,277,[[232,1,1,272,273],[233,1,1,273,274],[234,2,2,274,276],[235,1,1,276,277]]],[8,84,80,277,357,[[237,1,1,277,278],[238,6,6,278,284],[239,1,1,284,285],[240,2,2,285,287],[242,1,1,287,288],[243,1,1,288,289],[244,7,7,289,296],[245,5,5,296,301],[246,1,1,301,302],[247,6,4,302,306],[248,1,1,306,307],[249,9,9,307,316],[250,2,2,316,318],[251,3,3,318,321],[252,1,1,321,322],[253,2,2,322,324],[254,3,3,324,327],[255,7,6,327,333],[256,2,2,333,335],[257,1,1,335,336],[258,2,2,336,338],[259,6,5,338,343],[260,4,4,343,347],[261,4,4,347,351],[263,3,3,351,354],[265,3,3,354,357]]],[9,46,45,357,402,[[267,5,4,357,361],[269,3,3,361,364],[270,2,2,364,366],[271,1,1,366,367],[275,2,2,367,369],[278,2,2,369,371],[279,4,4,371,375],[280,3,3,375,378],[281,5,5,378,383],[282,6,6,383,389],[283,1,1,389,390],[284,5,5,390,395],[285,5,5,395,400],[286,1,1,400,401],[290,1,1,401,402]]],[10,55,51,402,453,[[291,8,7,402,409],[292,3,3,409,412],[293,5,3,412,415],[295,1,1,415,416],[298,1,1,416,417],[300,1,1,417,418],[301,2,2,418,420],[302,1,1,420,421],[303,4,4,421,425],[304,4,4,425,429],[305,1,1,429,430],[306,1,1,430,431],[307,3,3,431,434],[308,5,5,434,439],[309,5,5,439,444],[310,5,4,444,448],[311,2,2,448,450],[312,3,3,450,453]]],[11,55,51,453,504,[[313,2,2,453,455],[314,3,3,455,458],[315,1,1,458,459],[316,4,4,459,463],[317,5,5,463,468],[318,9,8,468,476],[319,10,7,476,483],[320,1,1,483,484],[321,1,1,484,485],[322,2,2,485,487],[323,1,1,487,488],[325,1,1,488,489],[327,4,4,489,493],[329,1,1,493,494],[330,1,1,494,495],[331,4,4,495,499],[332,2,2,499,501],[333,1,1,501,502],[334,2,2,502,504]]],[12,8,8,504,512,[[346,1,1,504,505],[348,2,2,505,507],[354,1,1,507,508],[359,2,2,508,510],[365,1,1,510,511],[366,1,1,511,512]]],[13,40,39,512,551,[[368,3,3,512,515],[372,1,1,515,516],[375,1,1,516,517],[379,2,2,517,519],[382,3,2,519,521],[384,3,3,521,524],[385,1,1,524,525],[386,6,6,525,531],[387,1,1,531,532],[389,2,2,532,534],[390,1,1,534,535],[391,2,2,535,537],[392,1,1,537,538],[393,1,1,538,539],[394,2,2,539,541],[395,2,2,541,543],[398,1,1,543,544],[399,2,2,544,546],[400,2,2,546,548],[401,2,2,548,550],[402,1,1,550,551]]],[14,1,1,551,552,[[411,1,1,551,552]]],[15,4,3,552,555,[[417,1,1,552,553],[418,1,1,553,554],[421,2,1,554,555]]],[16,3,3,555,558,[[431,1,1,555,556],[432,1,1,556,557],[433,1,1,557,558]]],[17,17,17,558,575,[[436,2,2,558,560],[437,1,1,560,561],[438,1,1,561,562],[439,1,1,562,563],[440,2,2,563,565],[444,1,1,565,566],[448,1,1,566,567],[451,1,1,567,568],[467,2,2,568,570],[468,2,2,570,572],[473,1,1,572,573],[475,2,2,573,575]]],[18,29,28,575,603,[[484,1,1,575,576],[488,1,1,576,577],[510,1,1,577,578],[514,1,1,578,579],[516,1,1,579,580],[517,2,2,580,582],[525,1,1,582,583],[529,1,1,583,584],[531,1,1,584,585],[532,1,1,585,586],[536,2,2,586,588],[550,3,3,588,591],[560,1,1,591,592],[564,1,1,592,593],[569,2,1,593,594],[596,1,1,594,595],[598,1,1,595,596],[600,1,1,596,597],[604,1,1,597,598],[605,1,1,598,599],[609,1,1,599,600],[610,1,1,600,601],[611,1,1,601,602],[616,1,1,602,603]]],[19,3,3,603,606,[[628,1,1,603,604],[634,1,1,604,605],[651,1,1,605,606]]],[20,6,6,606,612,[[659,2,2,606,608],[660,2,2,608,610],[662,1,1,610,611],[663,1,1,611,612]]],[21,9,7,612,619,[[671,3,2,612,614],[672,3,3,614,617],[673,1,1,617,618],[674,2,1,618,619]]],[22,78,67,619,686,[[681,1,1,619,620],[683,4,3,620,623],[684,2,2,623,625],[685,1,1,625,626],[686,3,3,626,629],[688,1,1,629,630],[690,1,1,630,631],[691,2,2,631,633],[695,2,2,633,635],[697,1,1,635,636],[698,1,1,636,637],[699,1,1,637,638],[700,2,2,638,640],[702,1,1,640,641],[703,1,1,641,642],[704,1,1,642,643],[706,2,2,643,645],[707,4,2,645,647],[708,1,1,647,648],[712,1,1,648,649],[713,1,1,649,650],[714,1,1,650,651],[715,3,3,651,654],[716,3,3,654,657],[717,1,1,657,658],[718,3,2,658,660],[719,3,2,660,662],[720,1,1,662,663],[721,1,1,663,664],[725,1,1,664,665],[726,2,2,665,667],[727,3,2,667,669],[729,1,1,669,670],[730,2,2,670,672],[732,2,2,672,674],[736,1,1,674,675],[737,1,1,675,676],[738,1,1,676,677],[740,3,1,677,678],[743,9,6,678,684],[744,2,2,684,686]]],[23,139,136,686,822,[[745,4,4,686,690],[746,1,1,690,691],[747,2,2,691,693],[748,6,6,693,699],[749,2,2,699,701],[750,5,4,701,705],[751,4,4,705,709],[752,5,5,709,714],[753,3,3,714,717],[754,2,2,717,719],[755,2,2,719,721],[756,1,1,721,722],[757,2,2,722,724],[758,4,3,724,727],[760,5,5,727,732],[761,1,1,732,733],[762,3,3,733,736],[763,3,3,736,739],[764,1,1,739,740],[765,3,3,740,743],[767,9,9,743,752],[768,1,1,752,753],[769,3,3,753,756],[770,1,1,756,757],[771,1,1,757,758],[772,1,1,758,759],[773,3,3,759,762],[774,4,4,762,766],[775,4,4,766,770],[776,8,7,770,777],[777,2,2,777,779],[778,3,3,779,782],[779,1,1,782,783],[780,1,1,783,784],[781,1,1,784,785],[782,2,2,785,787],[783,1,1,787,788],[784,2,2,788,790],[786,1,1,790,791],[787,1,1,791,792],[788,5,5,792,797],[789,2,2,797,799],[790,2,2,799,801],[791,1,1,801,802],[792,2,2,802,804],[793,7,7,804,811],[794,6,6,811,817],[795,5,5,817,822]]],[25,115,111,822,933,[[802,2,2,822,824],[803,2,1,824,825],[804,3,3,825,828],[805,3,3,828,831],[806,1,1,831,832],[807,1,1,832,833],[808,4,3,833,836],[809,9,9,836,845],[810,2,2,845,847],[811,2,2,847,849],[812,1,1,849,850],[813,1,1,850,851],[814,4,4,851,855],[815,2,1,855,856],[816,2,2,856,858],[817,5,5,858,863],[818,4,4,863,867],[819,2,2,867,869],[821,1,1,869,870],[822,2,2,870,872],[823,3,3,872,875],[824,4,4,875,879],[825,2,2,879,881],[826,5,5,881,886],[827,2,2,886,888],[829,3,3,888,891],[830,4,4,891,895],[831,3,3,895,898],[832,1,1,898,899],[834,2,2,899,901],[835,4,4,901,905],[836,1,1,905,906],[837,2,2,906,908],[838,9,8,908,916],[839,1,1,916,917],[840,2,2,917,919],[841,4,4,919,923],[843,1,1,923,924],[844,3,3,924,927],[845,1,1,927,928],[847,2,2,928,930],[848,3,3,930,933]]],[26,11,11,933,944,[[857,4,4,933,937],[859,5,5,937,942],[860,1,1,942,943],[861,1,1,943,944]]],[27,3,3,944,947,[[863,2,2,944,946],[870,1,1,946,947]]],[28,3,3,947,950,[[877,1,1,947,948],[878,2,2,948,950]]],[29,15,14,950,964,[[880,1,1,950,951],[882,2,2,951,953],[884,2,2,953,955],[885,5,4,955,959],[886,2,2,959,961],[887,3,3,961,964]]],[30,1,1,964,965,[[888,1,1,964,965]]],[32,2,2,965,967,[[893,1,1,965,966],[894,1,1,966,967]]],[33,4,4,967,971,[[900,1,1,967,968],[901,1,1,968,969],[902,2,2,969,971]]],[34,4,4,971,975,[[903,1,1,971,972],[904,3,3,972,975]]],[35,1,1,975,976,[[908,1,1,975,976]]],[36,1,1,976,977,[[909,1,1,976,977]]],[37,23,22,977,999,[[911,3,3,977,980],[912,4,4,980,984],[913,3,2,984,986],[914,1,1,986,987],[915,3,3,987,990],[916,2,2,990,992],[918,1,1,992,993],[919,2,2,993,995],[921,2,2,995,997],[922,1,1,997,998],[924,1,1,998,999]]],[38,6,5,999,1004,[[925,1,1,999,1000],[926,1,1,1000,1001],[927,2,1,1001,1002],[928,2,2,1002,1004]]]],[28,30,149,150,154,194,196,214,309,317,363,364,372,377,383,387,392,395,401,417,426,433,434,451,455,459,465,476,477,478,485,498,510,511,548,554,558,560,567,604,606,621,634,636,642,654,682,690,700,701,728,729,733,745,763,766,769,785,786,788,797,801,820,833,875,883,884,924,946,948,961,1001,1090,1092,1096,1098,1102,1108,1112,1132,1142,1143,1146,1148,1178,1181,1188,1196,1197,1198,1200,1201,1202,1212,1213,1214,1217,1218,1224,1254,1265,1274,1279,1280,1287,1311,1340,1370,1388,1421,1452,1453,1455,1462,1472,1511,1524,1541,1560,1567,1581,1583,1588,1592,1607,1608,1615,1624,1648,1700,1701,1702,1712,1730,1731,1739,1745,1749,1760,1781,1899,1906,1951,1957,1961,1989,2035,2164,2185,2191,2426,2447,2472,2494,2506,2507,2526,2707,2993,3057,3058,3060,3062,3065,3069,3072,3073,3077,3078,3082,3083,3084,3086,3088,3091,3095,3105,3107,3108,3114,3148,3150,3155,3159,3704,4069,4148,4236,4241,4252,4263,4265,4278,4327,4380,4386,4407,4413,4422,4427,4433,4436,4456,4457,4460,4477,4483,4719,4732,4741,4902,4986,5170,5173,5286,5368,5424,5487,5576,5744,5871,5887,5904,5947,5997,5998,6022,6049,6050,6062,6197,6437,6474,6503,6511,6592,6593,6621,6669,6682,6691,6707,6711,6734,6785,6787,6790,6791,6797,6863,6887,6889,6891,6894,6914,6917,6925,6959,6982,7002,7005,7033,7040,7046,7048,7051,7061,7094,7110,7111,7121,7123,7142,7153,7174,7180,7191,7271,7280,7281,7282,7284,7287,7292,7310,7322,7323,7364,7374,7397,7398,7399,7403,7405,7408,7415,7420,7426,7428,7429,7440,7450,7461,7462,7463,7473,7495,7515,7516,7519,7524,7525,7528,7534,7541,7551,7572,7582,7606,7610,7613,7641,7693,7698,7722,7725,7728,7732,7735,7742,7751,7752,7753,7781,7786,7799,7811,7813,7840,7843,7848,7849,7859,7875,7881,7897,7902,7912,7926,7927,7929,7949,7951,7963,7981,7994,8004,8024,8028,8029,8040,8093,8103,8105,8128,8130,8133,8231,8233,8297,8304,8341,8351,8352,8353,8363,8377,8388,8404,8413,8415,8421,8425,8427,8429,8430,8431,8434,8437,8458,8488,8489,8502,8504,8509,8512,8519,8531,8548,8552,8575,8709,8731,8735,8739,8740,8742,8759,8768,8778,8799,8809,8828,8831,8837,8883,9012,9086,9130,9139,9179,9185,9186,9187,9209,9220,9223,9228,9237,9268,9286,9326,9327,9329,9348,9349,9352,9355,9385,9392,9393,9396,9398,9400,9421,9439,9444,9447,9469,9472,9493,9503,9505,9542,9547,9562,9567,9570,9596,9612,9616,9628,9635,9653,9658,9662,9667,9669,9675,9687,9689,9691,9694,9699,9704,9707,9709,9712,9713,9717,9720,9722,9726,9732,9761,9797,9802,9843,9892,9936,9940,9951,9956,10009,10045,10068,10070,10072,10096,10103,10115,10131,10161,10165,10616,10674,10698,10864,10973,10978,11164,11193,11215,11219,11221,11300,11370,11465,11467,11512,11520,11554,11564,11566,11587,11589,11597,11598,11603,11611,11621,11638,11659,11669,11704,11723,11730,11752,11762,11773,11790,11800,11810,11907,11926,11927,11957,11961,11991,11993,12001,12252,12387,12413,12547,12798,12816,12824,12881,12888,12897,12911,12933,12968,12978,13070,13171,13257,13640,13647,13652,13657,13828,13879,13880,14009,14061,14384,14486,14517,14532,14534,14638,14717,14729,14739,14793,14797,15032,15035,15047,15243,15305,15420,15938,16085,16100,16124,16130,16157,16170,16173,16247,16423,16585,17110,17329,17331,17334,17344,17382,17415,17552,17553,17562,17563,17565,17578,17583,17708,17746,17765,17769,17776,17777,17796,17814,17825,17829,17883,17902,17915,17923,17984,17997,18005,18035,18044,18065,18069,18096,18127,18151,18166,18180,18201,18207,18244,18308,18324,18336,18359,18363,18388,18395,18398,18407,18418,18429,18430,18466,18478,18489,18524,18613,18621,18624,18648,18658,18695,18702,18709,18734,18739,18795,18809,18823,18865,18898,18903,18910,18911,18914,18915,18934,18937,18952,18955,18961,18964,19000,19007,19024,19040,19043,19050,19051,19052,19053,19072,19073,19099,19108,19110,19111,19127,19130,19139,19151,19161,19162,19168,19170,19172,19182,19190,19200,19219,19223,19237,19248,19263,19273,19279,19306,19311,19312,19345,19348,19350,19352,19357,19372,19387,19390,19395,19410,19413,19422,19426,19444,19448,19453,19486,19489,19491,19499,19503,19514,19515,19516,19523,19525,19543,19563,19566,19586,19612,19634,19652,19656,19667,19670,19677,19685,19690,19699,19718,19722,19729,19734,19738,19748,19755,19758,19759,19768,19781,19789,19803,19818,19823,19840,19854,19881,19900,19917,19939,19945,19951,19979,20007,20012,20021,20036,20037,20040,20044,20045,20070,20072,20075,20092,20120,20129,20132,20139,20142,20146,20149,20162,20175,20178,20184,20197,20207,20210,20213,20237,20248,20259,20264,20468,20479,20501,20510,20525,20527,20537,20543,20545,20554,20566,20582,20583,20587,20606,20608,20609,20611,20612,20614,20618,20620,20621,20624,20633,20634,20642,20656,20707,20716,20718,20720,20728,20753,20758,20759,20770,20789,20799,20806,20811,20832,20835,20837,20843,20863,20867,20942,20947,20951,20982,20989,20995,21029,21035,21046,21047,21072,21077,21087,21090,21091,21092,21099,21103,21107,21160,21164,21179,21186,21191,21193,21202,21213,21225,21226,21233,21312,21313,21323,21324,21330,21333,21347,21365,21368,21399,21402,21404,21405,21408,21409,21416,21418,21428,21449,21456,21480,21482,21494,21501,21560,21574,21577,21584,21603,21674,21676,21680,21681,21686,21964,21966,21976,21980,22020,22025,22028,22031,22035,22038,22086,22111,22119,22214,22330,22344,22350,22392,22412,22423,22461,22464,22465,22468,22471,22472,22482,22492,22503,22504,22508,22512,22582,22598,22699,22712,22717,22725,22737,22752,22761,22767,22839,22849,22886,22889,22896,22900,22902,22908,22909,22920,22921,22924,22937,22943,22945,22948,22959,22983,23003,23008,23034,23044,23047,23069,23102,23106,23121,23139,23143]]],["+",[1,1,[[8,1,1,0,1,[[242,1,1,0,1]]]],[7364]]],["Behold",[423,420,[[0,42,42,0,42,[[0,1,1,0,1],[11,1,1,1,2],[15,3,3,2,5],[16,1,1,5,6],[17,3,3,6,9],[18,4,4,9,13],[19,3,3,13,16],[21,3,3,16,19],[23,3,3,19,22],[24,1,1,22,23],[25,1,1,23,24],[26,5,5,24,29],[29,1,1,29,30],[30,1,1,30,31],[31,1,1,31,32],[36,2,2,32,34],[37,1,1,34,35],[40,1,1,35,36],[41,1,1,36,37],[47,4,4,37,41],[49,1,1,41,42]]],[1,11,11,42,53,[[50,1,1,42,43],[52,1,1,43,44],[57,1,1,44,45],[58,2,2,45,47],[65,1,1,47,48],[66,1,1,48,49],[72,1,1,49,50],[73,1,1,50,51],[82,1,1,51,52],[83,1,1,52,53]]],[3,5,5,53,58,[[134,1,1,53,54],[138,2,2,54,56],[139,1,1,56,57],[141,1,1,57,58]]],[4,1,1,58,59,[[183,1,1,58,59]]],[5,5,5,59,64,[[188,2,2,59,61],[189,1,1,61,62],[208,1,1,62,63],[210,1,1,63,64]]],[6,14,14,64,78,[[216,1,1,64,65],[217,1,1,65,66],[218,1,1,66,67],[219,2,2,67,69],[223,3,3,69,72],[224,1,1,72,73],[226,1,1,73,74],[229,2,2,74,76],[230,1,1,76,77],[231,1,1,77,78]]],[7,2,2,78,80,[[232,1,1,78,79],[234,1,1,79,80]]],[8,37,36,80,116,[[237,1,1,80,81],[238,1,1,81,82],[243,1,1,82,83],[244,4,4,83,87],[245,1,1,87,88],[247,2,2,88,90],[249,3,3,90,93],[250,1,1,93,94],[251,2,2,94,96],[253,2,2,96,98],[254,2,2,98,100],[255,3,3,100,103],[258,2,2,103,105],[259,5,4,105,109],[260,2,2,109,111],[261,1,1,111,112],[263,3,3,112,115],[265,1,1,115,116]]],[9,22,22,116,138,[[270,2,2,116,118],[271,1,1,118,119],[275,2,2,119,121],[278,2,2,121,123],[279,2,2,123,125],[280,2,2,125,127],[281,2,2,127,129],[282,3,3,129,132],[283,1,1,132,133],[284,2,2,133,135],[285,2,2,135,137],[286,1,1,137,138]]],[10,18,18,138,156,[[291,3,3,138,141],[292,1,1,141,142],[293,1,1,142,143],[301,1,1,143,144],[303,2,2,144,146],[304,1,1,146,147],[306,1,1,147,148],[308,4,4,148,152],[310,1,1,152,153],[311,1,1,153,154],[312,2,2,154,156]]],[11,24,23,156,179,[[313,1,1,156,157],[314,2,2,157,159],[316,3,3,159,162],[317,4,4,162,166],[318,3,3,166,169],[319,3,2,169,171],[322,1,1,171,172],[331,3,3,172,175],[332,1,1,175,176],[333,1,1,176,177],[334,2,2,177,179]]],[12,3,3,179,182,[[348,2,2,179,181],[359,1,1,181,182]]],[13,9,9,182,191,[[368,1,1,182,183],[384,2,2,183,185],[386,1,1,185,186],[387,1,1,186,187],[389,1,1,187,188],[394,1,1,188,189],[400,2,2,189,191]]],[15,1,1,191,192,[[421,1,1,191,192]]],[16,3,3,192,195,[[431,1,1,192,193],[432,1,1,193,194],[433,1,1,194,195]]],[17,9,9,195,204,[[436,1,1,195,196],[437,1,1,196,197],[439,1,1,197,198],[440,1,1,198,199],[448,1,1,199,200],[467,1,1,200,201],[468,2,2,201,203],[475,1,1,203,204]]],[18,12,12,204,216,[[484,1,1,204,205],[510,1,1,205,206],[516,1,1,206,207],[531,1,1,207,208],[536,1,1,208,209],[550,1,1,209,210],[596,1,1,210,211],[598,1,1,211,212],[600,1,1,212,213],[605,1,1,213,214],[610,1,1,214,215],[611,1,1,215,216]]],[20,1,1,216,217,[[663,1,1,216,217]]],[21,4,4,217,221,[[671,2,2,217,219],[673,1,1,219,220],[674,1,1,220,221]]],[22,40,39,221,260,[[685,1,1,221,222],[686,1,1,222,223],[688,1,1,223,224],[690,1,1,224,225],[691,2,2,225,227],[695,1,1,227,228],[697,1,1,228,229],[698,1,1,229,230],[700,1,1,230,231],[702,1,1,231,232],[706,2,2,232,234],[708,1,1,234,235],[715,2,2,235,237],[716,2,2,237,239],[717,1,1,239,240],[718,2,2,240,242],[719,2,2,242,244],[720,1,1,244,245],[721,1,1,245,246],[725,1,1,246,247],[726,2,2,247,249],[727,2,2,249,251],[729,1,1,251,252],[730,1,1,252,253],[732,1,1,253,254],[740,2,1,254,255],[743,4,4,255,259],[744,1,1,259,260]]],[23,84,84,260,344,[[745,1,1,260,261],[746,1,1,261,262],[747,2,2,262,264],[748,1,1,264,265],[750,2,2,265,267],[751,3,3,267,270],[752,1,1,270,271],[753,3,3,271,274],[754,2,2,274,276],[755,2,2,276,278],[756,1,1,278,279],[757,1,1,279,280],[760,2,2,280,282],[761,1,1,282,283],[762,2,2,283,285],[763,2,2,285,287],[764,1,1,287,288],[765,3,3,288,291],[767,5,5,291,296],[769,2,2,296,298],[771,1,1,298,299],[772,1,1,299,300],[773,3,3,300,303],[774,2,2,303,305],[775,4,4,305,309],[776,6,6,309,315],[777,2,2,315,317],[778,2,2,317,319],[779,1,1,319,320],[781,1,1,320,321],[782,1,1,321,322],[783,1,1,322,323],[787,1,1,323,324],[788,4,4,324,328],[789,1,1,328,329],[790,1,1,329,330],[791,1,1,330,331],[792,1,1,331,332],[793,5,5,332,337],[794,4,4,337,341],[795,3,3,341,344]]],[25,48,48,344,392,[[804,1,1,344,345],[806,1,1,345,346],[807,1,1,346,347],[808,1,1,347,348],[814,1,1,348,349],[816,2,2,349,351],[817,4,4,351,355],[818,1,1,355,356],[821,1,1,356,357],[822,1,1,357,358],[823,2,2,358,360],[824,2,2,360,362],[825,1,1,362,363],[826,4,4,363,367],[827,2,2,367,369],[829,3,3,369,372],[830,4,4,372,376],[831,1,1,376,377],[832,1,1,377,378],[835,4,4,378,382],[836,1,1,382,383],[837,1,1,383,384],[838,4,4,384,388],[839,1,1,388,389],[840,2,2,389,391],[844,1,1,391,392]]],[26,2,2,392,394,[[857,1,1,392,393],[860,1,1,393,394]]],[28,2,2,394,396,[[877,1,1,394,395],[878,1,1,395,396]]],[29,5,5,396,401,[[880,1,1,396,397],[885,1,1,397,398],[886,1,1,398,399],[887,2,2,399,401]]],[30,1,1,401,402,[[888,1,1,401,402]]],[32,1,1,402,403,[[894,1,1,402,403]]],[33,4,4,403,407,[[900,1,1,403,404],[901,1,1,404,405],[902,2,2,405,407]]],[34,3,3,407,410,[[904,3,3,407,410]]],[35,1,1,410,411,[[908,1,1,410,411]]],[37,5,5,411,416,[[916,1,1,411,412],[918,1,1,412,413],[919,1,1,413,414],[922,1,1,414,415],[924,1,1,415,416]]],[38,4,4,416,420,[[925,1,1,416,417],[926,1,1,417,418],[927,1,1,418,419],[928,1,1,419,420]]]],[28,309,383,387,392,417,433,451,455,459,465,476,477,498,510,511,548,554,567,604,634,642,690,701,728,729,733,766,769,833,924,948,1092,1102,1132,1224,1254,1452,1453,1455,1472,1524,1541,1592,1739,1745,1760,1951,1989,2164,2185,2494,2506,4265,4380,4386,4436,4483,5744,5871,5887,5904,6437,6503,6691,6707,6734,6785,6790,6887,6891,6894,6925,6959,7033,7048,7061,7121,7142,7174,7271,7287,7374,7397,7399,7408,7415,7440,7461,7463,7516,7519,7541,7582,7610,7613,7693,7698,7725,7728,7735,7751,7752,7811,7813,7840,7843,7848,7849,7875,7902,7927,7949,7951,7963,8004,8128,8130,8133,8231,8233,8297,8304,8341,8352,8377,8388,8404,8425,8429,8430,8437,8458,8488,8504,8512,8519,8575,8731,8740,8768,8809,8828,9139,9186,9187,9223,9286,9349,9352,9355,9385,9439,9472,9493,9505,9547,9567,9570,9612,9616,9628,9658,9662,9667,9669,9675,9687,9707,9709,9726,9797,10068,10070,10072,10115,10131,10161,10165,10674,10698,10973,11215,11554,11566,11598,11638,11659,11773,11957,11961,12547,12798,12816,12824,12881,12897,12933,12968,13171,13647,13652,13657,13879,14009,14384,14517,14729,14797,15032,15938,16085,16100,16130,16170,16173,17415,17552,17553,17578,17583,17796,17825,17883,17902,17915,17923,17984,18005,18035,18069,18096,18166,18180,18244,18359,18363,18398,18407,18418,18429,18430,18466,18478,18489,18524,18613,18621,18624,18648,18658,18695,18709,18739,18865,18898,18903,18910,18911,18934,18955,19000,19007,19024,19040,19110,19111,19127,19130,19139,19172,19182,19190,19200,19219,19223,19237,19248,19263,19279,19345,19352,19372,19390,19395,19410,19422,19426,19444,19448,19453,19489,19499,19503,19515,19516,19543,19566,19612,19634,19652,19656,19667,19685,19690,19699,19718,19722,19729,19734,19738,19755,19758,19759,19768,19781,19789,19803,19823,19840,19881,19900,19939,20007,20021,20036,20037,20040,20044,20070,20075,20120,20132,20139,20146,20149,20162,20184,20197,20207,20210,20213,20237,20248,20510,20554,20566,20587,20728,20758,20759,20789,20799,20806,20811,20837,20942,20947,20982,20989,21029,21035,21077,21087,21090,21091,21099,21103,21107,21160,21164,21179,21186,21191,21193,21202,21226,21233,21323,21324,21330,21333,21347,21365,21402,21409,21416,21418,21428,21449,21456,21584,21980,22038,22330,22350,22392,22472,22492,22503,22508,22512,22598,22699,22712,22717,22725,22752,22761,22767,22839,22959,22983,23003,23047,23069,23102,23106,23121,23143]]],["Here",[16,16,[[0,6,6,0,6,[[21,2,2,0,2],[26,1,1,2,3],[30,1,1,3,4],[36,1,1,4,5],[45,1,1,5,6]]],[1,1,1,6,7,[[52,1,1,6,7]]],[8,6,6,7,13,[[238,5,5,7,12],[257,1,1,12,13]]],[9,1,1,13,14,[[267,1,1,13,14]]],[17,1,1,14,15,[[473,1,1,14,15]]],[22,1,1,15,16,[[736,1,1,15,16]]]],[554,558,745,884,1096,1388,1583,7280,7281,7282,7284,7292,7799,8029,13828,18795]]],["I",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17777]]],["Lo",[24,24,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,1,1,1,2,[[68,1,1,1,2]]],[3,2,2,2,4,[[130,1,1,2,3],[138,1,1,3,4]]],[8,1,1,4,5,[[256,1,1,4,5]]],[9,1,1,5,6,[[290,1,1,5,6]]],[11,1,1,6,7,[[319,1,1,6,7]]],[12,1,1,7,8,[[354,1,1,7,8]]],[13,1,1,8,9,[[391,1,1,8,9]]],[17,3,3,9,12,[[438,1,1,9,10],[440,1,1,10,11],[475,1,1,11,12]]],[18,5,5,12,17,[[517,1,1,12,13],[529,1,1,13,14],[532,1,1,14,15],[604,1,1,15,16],[609,1,1,16,17]]],[20,1,1,17,18,[[659,1,1,17,18]]],[22,3,3,18,21,[[684,1,1,18,19],[703,1,1,19,20],[714,1,1,20,21]]],[23,2,2,21,23,[[749,1,1,21,22],[752,1,1,22,23]]],[25,1,1,23,24,[[814,1,1,23,24]]]],[1511,2035,4148,4413,7786,8709,9713,10864,11723,12911,12978,13880,14532,14717,14739,16124,16157,17331,17776,18127,18336,19073,19161,20720]]],["See",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]]],[478,6791]]],["behold",[507,489,[[0,65,63,0,63,[[0,1,1,0,1],[5,3,3,1,4],[7,1,1,4,5],[8,1,1,5,6],[11,1,1,6,7],[14,2,2,7,9],[15,1,1,9,10],[16,1,1,10,11],[19,1,1,11,12],[21,1,1,12,13],[23,4,4,13,17],[24,1,1,17,18],[25,1,1,18,19],[26,1,1,19,20],[27,4,3,20,23],[28,3,3,23,26],[30,3,3,26,29],[31,1,1,29,30],[32,1,1,30,31],[33,1,1,31,32],[36,6,5,32,37],[37,4,4,37,41],[39,3,3,41,44],[40,11,11,44,55],[41,4,4,55,59],[42,1,1,59,60],[43,1,1,60,61],[44,1,1,61,62],[46,1,1,62,63]]],[1,26,26,63,89,[[51,2,2,63,65],[52,2,2,65,67],[53,4,4,67,71],[54,1,1,71,72],[56,2,2,72,74],[57,2,2,74,76],[58,1,1,76,77],[59,1,1,77,78],[63,2,2,78,80],[65,2,2,80,82],[73,1,1,82,83],[80,1,1,83,84],[81,2,2,84,86],[83,2,2,86,88],[88,1,1,88,89]]],[2,26,26,89,115,[[99,1,1,89,90],[102,20,20,90,110],[103,5,5,110,115]]],[3,19,18,115,133,[[119,1,1,115,116],[128,2,1,116,117],[132,2,2,117,119],[133,1,1,119,120],[134,2,2,120,122],[136,1,1,122,123],[138,2,2,123,125],[139,2,2,125,127],[140,2,2,127,129],[141,1,1,129,130],[148,3,3,130,133]]],[4,8,8,133,141,[[153,1,1,133,134],[155,1,1,134,135],[161,2,2,135,137],[165,1,1,137,138],[169,1,1,138,139],[171,1,1,139,140],[178,1,1,140,141]]],[5,9,9,141,150,[[191,1,1,141,142],[193,2,2,142,144],[194,1,1,144,145],[195,3,3,145,148],[200,1,1,148,149],[209,1,1,149,150]]],[6,27,25,150,175,[[211,1,1,150,151],[213,3,2,151,153],[214,2,1,153,154],[216,2,2,154,156],[217,2,2,156,158],[219,3,3,158,161],[221,1,1,161,162],[224,2,2,162,164],[227,1,1,164,165],[228,2,2,165,167],[229,4,4,167,171],[230,1,1,171,172],[231,3,3,172,175]]],[7,3,3,175,178,[[233,1,1,175,176],[234,1,1,176,177],[235,1,1,177,178]]],[8,36,34,178,212,[[240,2,2,178,180],[244,3,3,180,183],[245,3,3,183,186],[246,1,1,186,187],[247,4,2,187,189],[248,1,1,189,190],[249,5,5,190,195],[250,1,1,195,196],[251,1,1,196,197],[252,1,1,197,198],[254,1,1,198,199],[255,4,4,199,203],[256,1,1,203,204],[259,1,1,204,205],[260,2,2,205,207],[261,3,3,207,210],[265,2,2,210,212]]],[9,20,20,212,232,[[267,3,3,212,215],[269,3,3,215,218],[279,2,2,218,220],[280,1,1,220,221],[281,2,2,221,223],[282,3,3,223,226],[284,3,3,226,229],[285,3,3,229,232]]],[10,34,32,232,264,[[291,3,3,232,235],[292,2,2,235,237],[293,3,2,237,239],[295,1,1,239,240],[298,1,1,240,241],[300,1,1,241,242],[301,1,1,242,243],[302,1,1,243,244],[303,2,2,244,246],[304,3,3,246,249],[305,1,1,249,250],[307,3,3,250,253],[308,1,1,253,254],[309,5,5,254,259],[310,4,3,259,262],[311,1,1,262,263],[312,1,1,263,264]]],[11,29,28,264,292,[[313,1,1,264,265],[314,1,1,265,266],[315,1,1,266,267],[316,1,1,267,268],[317,1,1,268,269],[318,6,6,269,275],[319,5,4,275,279],[320,1,1,279,280],[321,1,1,280,281],[322,1,1,281,282],[323,1,1,282,283],[325,1,1,283,284],[327,4,4,284,288],[329,1,1,288,289],[330,1,1,289,290],[331,1,1,290,291],[332,1,1,291,292]]],[12,4,4,292,296,[[346,1,1,292,293],[359,1,1,293,294],[365,1,1,294,295],[366,1,1,295,296]]],[13,27,27,296,323,[[368,2,2,296,298],[372,1,1,298,299],[375,1,1,299,300],[379,2,2,300,302],[382,2,2,302,304],[384,1,1,304,305],[385,1,1,305,306],[386,5,5,306,311],[389,1,1,311,312],[390,1,1,312,313],[391,1,1,313,314],[392,1,1,314,315],[394,1,1,315,316],[395,1,1,316,317],[398,1,1,317,318],[399,2,2,318,320],[401,2,2,320,322],[402,1,1,322,323]]],[14,1,1,323,324,[[411,1,1,323,324]]],[15,1,1,324,325,[[421,1,1,324,325]]],[17,3,3,325,328,[[436,1,1,325,326],[451,1,1,326,327],[467,1,1,327,328]]],[18,3,3,328,331,[[550,1,1,328,329],[564,1,1,329,330],[616,1,1,330,331]]],[19,2,2,331,333,[[628,1,1,331,332],[634,1,1,332,333]]],[20,4,4,333,337,[[659,1,1,333,334],[660,2,2,334,336],[662,1,1,336,337]]],[21,4,4,337,341,[[671,1,1,337,338],[672,2,2,338,340],[674,1,1,340,341]]],[22,32,28,341,369,[[681,1,1,341,342],[683,4,3,342,345],[686,2,2,345,347],[695,1,1,347,348],[699,1,1,348,349],[700,1,1,349,350],[704,1,1,350,351],[707,4,2,351,353],[712,1,1,353,354],[713,1,1,354,355],[715,1,1,355,356],[716,1,1,356,357],[718,1,1,357,358],[719,1,1,358,359],[730,1,1,359,360],[732,1,1,360,361],[737,1,1,361,362],[738,1,1,362,363],[740,1,1,363,364],[743,5,4,364,368],[744,1,1,368,369]]],[23,41,39,369,408,[[745,2,2,369,371],[748,1,1,371,372],[749,1,1,372,373],[750,3,2,373,375],[751,1,1,375,376],[752,2,2,376,378],[757,1,1,378,379],[758,4,3,379,382],[760,3,3,382,385],[762,1,1,385,386],[763,1,1,386,387],[767,4,4,387,391],[768,1,1,391,392],[770,1,1,392,393],[776,2,2,393,395],[778,1,1,395,396],[782,1,1,396,397],[784,2,2,397,399],[786,1,1,399,400],[788,1,1,400,401],[789,1,1,401,402],[790,1,1,402,403],[792,1,1,403,404],[793,1,1,404,405],[794,1,1,405,406],[795,2,2,406,408]]],[25,49,48,408,456,[[802,2,2,408,410],[803,1,1,410,411],[804,2,2,411,413],[805,3,3,413,416],[808,3,3,416,419],[809,7,7,419,426],[810,2,2,426,428],[811,2,2,428,430],[812,1,1,430,431],[813,1,1,431,432],[814,1,1,432,433],[815,2,1,433,434],[817,1,1,434,435],[818,2,2,435,437],[822,1,1,437,438],[823,1,1,438,439],[825,1,1,439,440],[826,1,1,440,441],[837,1,1,441,442],[838,3,3,442,445],[841,3,3,445,448],[844,2,2,448,450],[845,1,1,450,451],[847,2,2,451,453],[848,3,3,453,456]]],[26,7,7,456,463,[[857,3,3,456,459],[859,3,3,459,462],[861,1,1,462,463]]],[27,2,2,463,465,[[863,2,2,463,465]]],[28,1,1,465,466,[[878,1,1,465,466]]],[29,6,6,466,472,[[884,2,2,466,468],[885,3,3,468,471],[886,1,1,471,472]]],[32,1,1,472,473,[[893,1,1,472,473]]],[37,15,14,473,487,[[911,3,3,473,476],[912,3,3,476,479],[913,3,2,479,481],[914,1,1,481,482],[915,3,3,482,485],[916,1,1,485,486],[919,1,1,486,487]]],[38,2,2,487,489,[[927,1,1,487,488],[928,1,1,488,489]]]],[30,149,150,154,196,214,317,364,377,395,401,511,560,606,621,636,654,682,700,763,785,786,788,797,801,820,875,883,924,946,961,1001,1090,1092,1098,1108,1112,1142,1143,1146,1148,1178,1181,1188,1196,1197,1198,1200,1201,1202,1212,1213,1214,1217,1218,1265,1274,1279,1287,1311,1340,1370,1421,1560,1567,1581,1588,1607,1608,1615,1624,1648,1701,1702,1712,1731,1749,1781,1899,1906,1957,1961,2191,2426,2447,2472,2507,2526,2707,2993,3057,3058,3060,3062,3065,3069,3072,3073,3077,3078,3082,3083,3084,3086,3088,3091,3095,3105,3107,3108,3114,3148,3150,3155,3159,3704,4069,4236,4241,4252,4263,4278,4327,4380,4407,4427,4433,4456,4460,4477,4719,4732,4741,4902,4986,5170,5173,5286,5368,5424,5576,5947,5997,5998,6022,6049,6050,6062,6197,6474,6511,6592,6593,6621,6669,6682,6707,6711,6785,6787,6797,6863,6914,6917,6982,7002,7005,7033,7040,7046,7051,7094,7110,7111,7123,7153,7180,7191,7322,7323,7398,7403,7405,7426,7428,7429,7450,7462,7473,7495,7515,7524,7525,7528,7534,7572,7606,7641,7722,7732,7742,7751,7753,7781,7859,7881,7897,7912,7926,7929,7981,7994,8024,8028,8040,8093,8103,8105,8351,8353,8363,8415,8421,8427,8431,8434,8489,8502,8509,8531,8548,8552,8735,8742,8759,8778,8799,8831,8837,8883,9012,9086,9130,9179,9185,9209,9220,9228,9237,9268,9326,9327,9329,9348,9392,9393,9396,9398,9400,9421,9444,9447,9469,9503,9542,9562,9596,9635,9653,9689,9691,9694,9699,9704,9707,9712,9717,9720,9726,9732,9761,9802,9843,9892,9936,9940,9951,9956,10009,10045,10096,10103,10616,10978,11164,11193,11219,11221,11300,11370,11465,11467,11512,11520,11564,11587,11589,11597,11603,11611,11621,11669,11704,11730,11752,11790,11810,11907,11926,11927,11991,11993,12001,12252,12547,12888,13257,13640,15035,15305,16247,16423,16585,17329,17334,17344,17382,17552,17562,17563,17583,17708,17746,17765,17769,17814,17829,17997,18044,18065,18151,18201,18207,18308,18324,18388,18395,18430,18478,18702,18734,18809,18823,18865,18898,18910,18914,18915,18937,18952,18964,19043,19072,19099,19108,19151,19168,19170,19273,19306,19311,19312,19348,19350,19357,19387,19413,19486,19491,19514,19523,19525,19586,19748,19755,19818,19917,19945,19951,19979,20012,20045,20072,20092,20129,20178,20259,20264,20468,20479,20501,20525,20527,20537,20543,20545,20582,20583,20587,20608,20609,20611,20612,20614,20618,20620,20624,20633,20634,20642,20656,20707,20716,20753,20770,20832,20835,20951,20995,21072,21092,21368,21399,21404,21408,21480,21482,21501,21574,21577,21603,21674,21676,21680,21681,21686,21964,21966,21976,22020,22025,22031,22086,22111,22119,22344,22461,22464,22465,22468,22471,22482,22582,22886,22889,22896,22900,22902,22908,22920,22921,22924,22937,22943,22945,22948,23008,23121,23139]]],["lo",[86,85,[[0,10,10,0,10,[[7,1,1,0,1],[14,2,2,1,3],[17,2,2,3,5],[18,1,1,5,6],[28,1,1,6,7],[36,1,1,7,8],[41,1,1,8,9],[47,1,1,9,10]]],[1,2,2,10,12,[[56,1,1,10,11],[57,1,1,11,12]]],[3,2,2,12,14,[[139,1,1,12,13],[140,1,1,13,14]]],[4,1,1,14,15,[[174,1,1,14,15]]],[5,1,1,15,16,[[200,1,1,15,16]]],[6,2,2,16,18,[[217,1,1,16,17],[223,1,1,17,18]]],[8,3,3,18,21,[[239,1,1,18,19],[245,1,1,19,20],[249,1,1,20,21]]],[9,2,2,21,23,[[267,1,1,21,22],[281,1,1,22,23]]],[10,3,3,23,26,[[291,2,2,23,25],[293,1,1,25,26]]],[11,1,1,26,27,[[319,1,1,26,27]]],[13,3,3,27,30,[[382,1,1,27,28],[393,1,1,28,29],[395,1,1,29,30]]],[15,2,2,30,32,[[417,1,1,30,31],[418,1,1,31,32]]],[17,1,1,32,33,[[444,1,1,32,33]]],[18,9,8,33,41,[[488,1,1,33,34],[514,1,1,34,35],[517,1,1,35,36],[525,1,1,36,37],[536,1,1,37,38],[550,1,1,38,39],[560,1,1,39,40],[569,2,1,40,41]]],[19,1,1,41,42,[[651,1,1,41,42]]],[21,1,1,42,43,[[672,1,1,42,43]]],[22,1,1,43,44,[[727,1,1,43,44]]],[23,12,12,44,56,[[745,1,1,44,45],[748,4,4,45,49],[752,1,1,49,50],[769,1,1,50,51],[774,2,2,51,53],[780,1,1,53,54],[793,1,1,54,55],[794,1,1,55,56]]],[25,17,17,56,73,[[803,1,1,56,57],[809,2,2,57,59],[814,1,1,59,60],[818,1,1,60,61],[819,2,2,61,63],[824,2,2,63,65],[831,2,2,65,67],[834,2,2,67,69],[838,2,2,69,71],[841,1,1,71,72],[843,1,1,72,73]]],[26,2,2,73,75,[[859,2,2,73,75]]],[27,1,1,75,76,[[870,1,1,75,76]]],[29,4,4,76,80,[[882,2,2,76,78],[885,1,1,78,79],[887,1,1,79,80]]],[34,1,1,80,81,[[903,1,1,80,81]]],[36,1,1,81,82,[[909,1,1,81,82]]],[37,3,3,82,85,[[912,1,1,82,83],[921,2,2,83,85]]]],[194,363,372,426,434,485,797,1090,1280,1462,1700,1730,4422,4457,5487,6197,6707,6889,7310,7420,7551,8028,8413,8739,8768,8828,9722,11520,11762,11800,12387,12413,13070,14061,14486,14534,14638,14793,15047,15243,15420,17110,17565,18648,18961,19050,19051,19052,19053,19162,19563,19670,19677,19854,20142,20175,20501,20606,20621,20718,20843,20863,20867,21046,21047,21213,21225,21312,21313,21399,21405,21494,21560,22028,22035,22214,22412,22423,22465,22504,22737,22849,22909,23034,23044]]]]},{"k":"H2010","v":[["release",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12742]]]]},{"k":"H2011","v":[["Hinnom",[13,11,[[5,4,2,0,2,[[201,2,1,0,1],[204,2,1,1,2]]],[11,1,1,2,3,[[335,1,1,2,3]]],[13,2,2,3,5,[[394,1,1,3,4],[399,1,1,4,5]]],[15,1,1,5,6,[[423,1,1,5,6]]],[23,5,5,6,11,[[751,2,2,6,8],[763,2,2,8,10],[776,1,1,10,11]]]],[6210,6309,10175,11767,11914,12618,19150,19151,19409,19413,19766]]]]},{"k":"H2012","v":[["Hena",[3,3,[[11,2,2,0,2,[[330,1,1,0,1],[331,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]]],[10058,10074,18365]]]]},{"k":"H2013","v":[["*",[8,8,[[3,1,1,0,1,[[129,1,1,0,1]]],[6,1,1,1,2,[[213,1,1,1,2]]],[15,1,1,2,3,[[420,1,1,2,3]]],[29,2,2,3,5,[[884,1,1,3,4],[886,1,1,4,5]]],[34,1,1,5,6,[[904,1,1,5,6]]],[35,1,1,6,7,[[906,1,1,6,7]]],[37,1,1,7,8,[[912,1,1,7,8]]]],[4105,6587,12504,22460,22484,22768,22794,22912]]],["+",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4105]]],["peace",[2,2,[[15,1,1,0,1,[[420,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]]],[12504,22794]]],["silence",[3,3,[[6,1,1,0,1,[[213,1,1,0,1]]],[29,1,1,1,2,[[886,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[6587,22484,22768]]],["silent",[1,1,[[37,1,1,0,1,[[912,1,1,0,1]]]],[22912]]],["tongue",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22460]]]]},{"k":"H2014","v":[["intermission",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20403]]]]},{"k":"H2015","v":[["*",[94,92,[[0,4,4,0,4,[[2,1,1,0,1],[18,3,3,1,4]]],[1,5,5,4,9,[[56,3,3,4,7],[59,1,1,7,8],[63,1,1,8,9]]],[2,9,9,9,18,[[102,9,9,9,18]]],[4,2,2,18,20,[[175,1,1,18,19],[181,1,1,19,20]]],[5,2,2,20,22,[[193,1,1,20,21],[194,1,1,21,22]]],[6,4,3,22,25,[[217,2,1,22,23],[230,2,2,23,25]]],[8,4,4,25,29,[[239,1,1,25,26],[245,2,2,26,28],[260,1,1,28,29]]],[9,1,1,29,30,[[276,1,1,29,30]]],[10,1,1,30,31,[[312,1,1,30,31]]],[11,3,3,31,34,[[317,1,1,31,32],[321,1,1,32,33],[333,1,1,33,34]]],[12,1,1,34,35,[[356,1,1,34,35]]],[13,2,2,35,37,[[375,1,1,35,36],[384,1,1,36,37]]],[15,1,1,37,38,[[425,1,1,37,38]]],[16,2,2,38,40,[[434,2,2,38,40]]],[17,12,12,40,52,[[444,1,1,40,41],[447,1,1,41,42],[454,1,1,42,43],[455,1,1,43,44],[463,2,2,44,46],[465,2,2,46,48],[469,1,1,48,49],[472,1,1,49,50],[473,1,1,50,51],[476,1,1,51,52]]],[18,10,10,52,62,[[507,1,1,52,53],[509,1,1,53,54],[518,1,1,54,55],[543,1,1,55,56],[555,3,3,56,59],[582,2,2,59,61],[591,1,1,61,62]]],[19,2,2,62,64,[[639,1,1,62,63],[644,1,1,63,64]]],[22,3,3,64,67,[[712,1,1,64,65],[738,1,1,65,66],[741,1,1,66,67]]],[23,6,6,67,73,[[746,1,1,67,68],[757,1,1,68,69],[764,1,1,69,70],[767,1,1,70,71],[774,1,1,71,72],[775,1,1,72,73]]],[24,5,5,73,78,[[797,1,1,73,74],[799,1,1,74,75],[800,1,1,75,76],[801,2,2,76,78]]],[25,1,1,78,79,[[805,1,1,78,79]]],[26,2,2,79,81,[[859,2,2,79,81]]],[27,2,2,81,83,[[868,1,1,81,82],[872,1,1,82,83]]],[28,1,1,83,84,[[877,1,1,83,84]]],[29,5,5,84,89,[[882,1,1,84,85],[883,2,2,85,87],[884,1,1,87,88],[886,1,1,88,89]]],[31,1,1,89,90,[[891,1,1,89,90]]],[35,1,1,90,91,[[908,1,1,90,91]]],[36,2,1,91,92,[[910,2,1,91,92]]]],[79,478,482,486,1700,1702,1705,1796,1894,3055,3056,3062,3065,3068,3069,3072,3077,3107,5505,5702,5984,6022,6707,7093,7095,7316,7424,7427,7873,8243,9514,9673,9779,10132,10910,11376,11575,12673,12835,12856,13056,13143,13316,13340,13509,13513,13572,13578,13708,13781,13807,13916,14330,14359,14545,14879,15122,15157,15170,15631,15635,15830,16726,16893,18312,18826,18876,18986,19289,19438,19520,19673,19704,20330,20357,20426,20444,20457,20537,22023,22031,22186,22248,22342,22421,22430,22431,22462,22491,22562,22829,22877]]],["+",[8,8,[[0,3,3,0,3,[[18,3,3,0,3]]],[2,1,1,3,4,[[102,1,1,3,4]]],[4,1,1,4,5,[[175,1,1,4,5]]],[6,1,1,5,6,[[217,1,1,5,6]]],[18,1,1,6,7,[[582,1,1,6,7]]],[23,1,1,7,8,[[767,1,1,7,8]]]],[478,482,486,3107,5505,6707,15635,19520]]],["Turn",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[9514,11575]]],["again",[2,2,[[6,1,1,0,1,[[230,1,1,0,1]]],[11,1,1,1,2,[[317,1,1,1,2]]]],[7095,9673]]],["aside",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15170]]],["back",[2,2,[[5,1,1,0,1,[[194,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[6022,15122]]],["become",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13578]]],["came",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7316]]],["change",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19289]]],["changed",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3068]]],["contrary",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12835]]],["converted",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18826]]],["gave",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7427]]],["make",[1,1,[[18,1,1,0,1,[[518,1,1,0,1]]]],[14545]]],["overthrew",[2,2,[[4,1,1,0,1,[[181,1,1,0,1]]],[23,1,1,1,2,[[764,1,1,1,2]]]],[5702,19438]]],["overthrow",[4,3,[[9,1,1,0,1,[[276,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]],[36,2,1,2,3,[[910,2,1,2,3]]]],[8243,10910,22877]]],["overthrown",[4,4,[[19,1,1,0,1,[[639,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]],[29,1,1,2,3,[[882,1,1,2,3]]],[31,1,1,3,4,[[891,1,1,3,4]]]],[16726,20426,22421,22562]]],["overturn",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13143]]],["overturneth",[3,3,[[17,3,3,0,3,[[444,1,1,0,1],[463,1,1,1,2],[469,1,1,2,3]]]],[13056,13513,13708]]],["perverse",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16893]]],["retired",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7093]]],["tumbled",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6707]]],["turn",[5,5,[[23,1,1,0,1,[[775,1,1,0,1]]],[25,1,1,1,2,[[805,1,1,1,2]]],[29,2,2,2,4,[[883,1,1,2,3],[886,1,1,3,4]]],[35,1,1,4,5,[[908,1,1,4,5]]]],[19704,20537,22430,22491,22829]]],["turned",[43,43,[[1,5,5,0,5,[[56,3,3,0,3],[59,1,1,3,4],[63,1,1,4,5]]],[2,7,7,5,12,[[102,7,7,5,12]]],[8,2,2,12,14,[[245,1,1,12,13],[260,1,1,13,14]]],[11,1,1,14,15,[[321,1,1,14,15]]],[13,1,1,15,16,[[375,1,1,15,16]]],[15,1,1,16,17,[[425,1,1,16,17]]],[16,1,1,17,18,[[434,1,1,17,18]]],[17,6,6,18,24,[[454,1,1,18,19],[455,1,1,19,20],[465,1,1,20,21],[472,1,1,21,22],[473,1,1,22,23],[476,1,1,23,24]]],[18,6,6,24,30,[[507,1,1,24,25],[509,1,1,25,26],[543,1,1,26,27],[555,1,1,27,28],[582,1,1,28,29],[591,1,1,29,30]]],[22,2,2,30,32,[[712,1,1,30,31],[741,1,1,31,32]]],[23,2,2,32,34,[[746,1,1,32,33],[774,1,1,33,34]]],[24,3,3,34,37,[[797,1,1,34,35],[801,2,2,35,37]]],[26,2,2,37,39,[[859,2,2,37,39]]],[27,2,2,39,41,[[868,1,1,39,40],[872,1,1,40,41]]],[28,1,1,41,42,[[877,1,1,41,42]]],[29,1,1,42,43,[[884,1,1,42,43]]]],[1700,1702,1705,1796,1894,3055,3056,3062,3065,3069,3072,3077,7424,7873,9779,11376,12673,12856,13316,13340,13572,13781,13807,13916,14330,14359,14879,15157,15631,15830,18312,18876,18986,19673,20330,20444,20457,22023,22031,22186,22248,22342,22462]]],["turneth",[3,3,[[5,1,1,0,1,[[193,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]],[29,1,1,2,3,[[883,1,1,2,3]]]],[5984,20357,22431]]],["turning",[1,1,[[11,1,1,0,1,[[333,1,1,0,1]]]],[10132]]],["up",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13509]]],["way",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[79]]]]},{"k":"H2016","v":[["contrary",[2,1,[[25,2,1,0,1,[[817,2,1,0,1]]]],[20796]]]]},{"k":"H2017","v":[["down",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18209]]]]},{"k":"H2018","v":[["overthrow",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[486]]]]},{"k":"H2019","v":[["froward",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16992]]]]},{"k":"H2020","v":[["deliverance",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12776]]]]},{"k":"H2021","v":[["chariots",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21031]]]]},{"k":"H2022","v":[["*",[545,484,[[0,20,18,0,18,[[6,2,2,0,2],[7,2,2,2,4],[9,1,1,4,5],[11,1,1,5,6],[13,1,1,6,7],[18,3,3,7,10],[21,2,2,10,12],[30,6,4,12,16],[35,2,2,16,18]]],[1,48,38,18,56,[[52,2,2,18,20],[53,1,1,20,21],[64,1,1,21,22],[67,1,1,22,23],[68,16,11,23,34],[69,1,1,34,35],[73,9,7,35,42],[74,1,1,42,43],[75,1,1,43,44],[76,1,1,44,45],[80,1,1,45,46],[81,4,4,46,50],[82,1,1,50,51],[83,8,5,51,56]]],[2,4,4,56,60,[[96,1,1,56,57],[114,1,1,57,58],[115,1,1,58,59],[116,1,1,59,60]]],[3,26,25,60,85,[[119,1,1,60,61],[126,1,1,61,62],[129,2,2,62,64],[130,3,3,64,67],[136,6,5,67,72],[137,1,1,72,73],[143,1,1,73,74],[144,1,1,74,75],[149,8,8,75,83],[150,2,2,83,85]]],[4,51,44,85,129,[[153,10,9,85,94],[154,4,4,94,98],[155,3,3,98,101],[156,3,2,101,103],[157,4,4,103,107],[160,1,1,107,108],[161,6,4,108,112],[162,5,5,112,117],[163,3,2,117,119],[164,1,1,119,120],[179,3,3,120,123],[184,5,3,123,126],[185,2,2,126,128],[186,1,1,128,129]]],[5,52,42,129,171,[[188,3,3,129,132],[194,3,2,132,134],[195,1,1,134,135],[196,2,2,135,137],[197,9,5,137,142],[198,4,4,142,146],[199,4,4,146,150],[200,1,1,150,151],[201,7,5,151,156],[202,1,1,156,157],[203,3,3,157,160],[204,4,4,160,164],[205,1,1,164,165],[206,3,1,165,166],[207,2,2,166,168],[210,4,3,168,171]]],[6,35,31,171,202,[[211,4,4,171,175],[212,2,1,175,176],[213,4,2,176,178],[214,4,4,178,182],[215,1,1,182,183],[216,1,1,183,184],[217,2,2,184,186],[219,5,4,186,190],[220,1,1,190,191],[221,2,2,191,193],[222,1,1,193,194],[226,1,1,194,195],[227,2,2,195,197],[228,2,2,197,199],[229,3,3,199,202]]],[8,14,12,202,214,[[236,1,1,202,203],[244,1,1,203,204],[248,1,1,204,205],[249,1,1,205,206],[252,2,1,206,207],[258,3,2,207,209],[260,1,1,209,210],[261,2,2,210,212],[266,2,2,212,214]]],[9,6,6,214,220,[[267,2,2,214,216],[279,1,1,216,217],[282,1,1,217,218],[286,1,1,218,219],[287,1,1,219,220]]],[10,15,12,220,232,[[294,1,1,220,221],[295,1,1,221,222],[301,1,1,222,223],[302,1,1,223,224],[306,3,1,224,225],[308,2,2,225,227],[309,3,2,227,229],[310,2,2,229,231],[312,1,1,231,232]]],[11,11,11,232,243,[[313,1,1,232,233],[314,2,2,233,235],[316,2,2,235,237],[317,1,1,237,238],[318,1,1,238,239],[331,2,2,239,241],[335,2,2,241,243]]],[12,6,6,243,249,[[341,1,1,243,244],[342,1,1,244,245],[343,1,1,245,246],[347,2,2,246,248],[349,1,1,248,249]]],[13,15,14,249,263,[[368,2,2,249,251],[369,1,1,251,252],[379,2,1,252,253],[381,1,1,253,254],[384,1,1,254,255],[385,1,1,255,256],[386,3,3,256,259],[387,1,1,259,260],[392,1,1,260,261],[393,1,1,261,262],[399,1,1,262,263]]],[15,2,2,263,265,[[420,1,1,263,264],[421,1,1,264,265]]],[17,6,6,265,271,[[444,1,1,265,266],[449,1,1,266,267],[459,1,1,267,268],[463,1,1,268,269],[474,1,1,269,270],[475,1,1,270,271]]],[18,47,43,271,314,[[479,1,1,271,272],[480,1,1,272,273],[488,1,1,273,274],[492,1,1,274,275],[495,1,1,275,276],[501,1,1,276,277],[519,1,1,277,278],[520,1,1,278,279],[523,2,2,279,281],[525,3,3,281,284],[527,1,1,284,285],[542,1,1,285,286],[545,6,2,286,288],[549,2,2,288,290],[551,1,1,290,291],[555,2,2,291,293],[557,1,1,293,294],[560,1,1,294,295],[567,1,1,295,296],[572,1,1,296,297],[574,1,1,297,298],[575,1,1,298,299],[576,1,1,299,300],[581,6,6,300,306],[591,2,2,306,308],[598,1,1,308,309],[602,2,2,309,311],[621,1,1,311,312],[624,1,1,312,313],[625,1,1,313,314]]],[19,2,2,314,316,[[635,1,1,314,315],[654,1,1,315,316]]],[21,5,5,316,321,[[672,2,2,316,318],[674,2,2,318,320],[678,1,1,320,321]]],[22,57,56,321,377,[[680,4,3,321,324],[682,1,1,324,325],[683,1,1,325,326],[685,1,1,326,327],[686,1,1,327,328],[688,2,2,328,330],[689,1,1,330,331],[691,2,2,331,333],[692,2,2,333,335],[694,1,1,335,336],[695,1,1,336,337],[696,3,3,337,340],[700,1,1,340,341],[702,1,1,341,342],[703,3,3,342,345],[705,1,1,345,346],[706,1,1,346,347],[707,1,1,347,348],[708,3,3,348,351],[709,1,1,351,352],[712,1,1,352,353],[715,2,2,353,355],[718,3,3,355,358],[719,1,1,358,359],[720,2,2,359,361],[722,1,1,361,362],[727,2,2,362,364],[730,1,1,364,365],[732,1,1,365,366],[733,1,1,366,367],[734,1,1,367,368],[735,2,2,368,370],[742,2,2,370,372],[743,4,4,372,376],[744,1,1,376,377]]],[23,20,18,377,395,[[747,2,2,377,379],[748,2,2,379,381],[753,1,1,381,382],[757,1,1,382,383],[760,1,1,383,384],[761,1,1,384,385],[770,1,1,385,386],[775,3,3,386,389],[776,1,1,389,390],[777,1,1,390,391],[790,1,1,391,392],[794,3,2,392,394],[795,2,1,394,395]]],[24,2,2,395,397,[[800,1,1,395,396],[801,1,1,396,397]]],[25,47,42,397,439,[[807,4,3,397,400],[808,2,2,400,402],[812,1,1,402,403],[818,2,2,403,405],[819,3,3,405,408],[820,1,1,408,409],[821,2,1,409,410],[823,1,1,410,411],[829,2,2,411,413],[832,1,1,413,414],[833,2,2,414,416],[834,1,1,416,417],[835,4,3,417,420],[836,6,6,420,426],[837,6,4,426,430],[838,1,1,430,431],[839,3,3,431,434],[840,3,3,434,437],[841,1,1,437,438],[844,1,1,438,439]]],[26,3,3,439,442,[[858,2,2,439,441],[860,1,1,441,442]]],[27,2,2,442,444,[[865,1,1,442,443],[871,1,1,443,444]]],[28,6,6,444,450,[[877,4,4,444,448],[878,2,2,448,450]]],[29,5,5,450,455,[[881,1,1,450,451],[882,2,2,451,453],[884,1,1,453,454],[887,1,1,454,455]]],[30,7,6,455,461,[[888,7,6,455,461]]],[31,1,1,461,462,[[890,1,1,461,462]]],[32,10,8,462,470,[[893,1,1,462,463],[895,1,1,463,464],[896,4,3,464,467],[898,2,2,467,469],[899,2,1,469,470]]],[33,3,3,470,473,[[900,2,2,470,472],[902,1,1,472,473]]],[34,2,2,473,475,[[905,2,2,473,475]]],[35,1,1,475,476,[[908,1,1,475,476]]],[36,2,2,476,478,[[909,2,2,476,478]]],[37,11,5,478,483,[[914,1,1,478,479],[916,3,1,479,480],[918,2,1,480,481],[924,5,2,481,483]]],[38,1,1,483,484,[[925,1,1,483,484]]]],[178,179,187,188,264,306,346,474,476,487,549,561,894,896,898,927,1048,1049,1580,1591,1628,1937,2004,2028,2029,2037,2038,2039,2040,2042,2043,2044,2046,2049,2069,2181,2189,2190,2192,2193,2194,2195,2235,2265,2280,2438,2439,2450,2453,2457,2479,2498,2499,2500,2525,2528,2917,3470,3570,3604,3693,4021,4092,4104,4148,4152,4153,4333,4334,4336,4338,4339,4344,4566,4583,4783,4784,4797,4798,4799,4801,4807,4808,4823,4824,4894,4898,4899,4911,4912,4916,4933,4935,4936,4939,4941,4943,4975,4983,4987,5000,5015,5052,5057,5058,5075,5076,5144,5166,5167,5172,5178,5187,5189,5190,5191,5196,5219,5237,5242,5589,5597,5598,5780,5807,5808,5812,5829,5840,5885,5891,5892,6032,6035,6038,6070,6104,6109,6110,6123,6124,6128,6131,6135,6137,6138,6159,6160,6165,6173,6199,6210,6211,6212,6213,6250,6266,6290,6291,6293,6305,6306,6307,6309,6371,6379,6392,6402,6480,6506,6509,6518,6528,6543,6544,6554,6571,6595,6604,6605,6611,6613,6628,6656,6697,6718,6761,6779,6790,6802,6812,6866,6867,6884,6952,6981,6988,6995,7006,7025,7040,7042,7213,7395,7487,7530,7621,7824,7836,7881,7918,7925,8010,8017,8028,8043,8351,8439,8575,8589,8852,8893,9115,9176,9307,9360,9361,9395,9398,9431,9436,9497,9542,9567,9576,9628,9630,9669,9691,10084,10092,10178,10181,10427,10451,10521,10660,10667,10728,11213,11229,11230,11457,11498,11558,11580,11597,11609,11610,11635,11742,11759,11923,12508,12524,13056,13199,13444,13513,13842,13884,13951,13961,14060,14088,14125,14244,14561,14569,14616,14617,14635,14636,14645,14679,14866,14915,14916,15003,15016,15050,15167,15181,15208,15255,15380,15458,15483,15498,15508,15577,15579,15581,15584,15589,15603,15826,15828,16082,16111,16112,16310,16359,16380,16627,17194,17562,17571,17583,17588,17654,17687,17688,17699,17738,17764,17807,17825,17862,17882,17893,17908,17910,17941,17953,17970,17996,18000,18003,18004,18057,18118,18124,18125,18128,18164,18185,18201,18234,18242,18246,18254,18306,18376,18384,18424,18429,18432,18466,18491,18495,18556,18647,18649,18703,18733,18752,18760,18772,18778,18886,18888,18904,18906,18908,18922,18942,19008,19025,19042,19051,19185,19282,19352,19383,19590,19696,19697,19714,19775,19788,20063,20172,20185,20237,20439,20460,20565,20566,20576,20584,20593,20678,20847,20848,20855,20860,20864,20890,20935,20985,21171,21173,21242,21253,21254,21308,21319,21326,21327,21346,21347,21351,21352,21356,21359,21360,21363,21365,21367,21419,21433,21445,21446,21450,21452,21465,21479,21584,22004,22008,22081,22146,22233,22312,22313,22316,22343,22360,22361,22404,22411,22423,22451,22508,22518,22519,22526,22527,22529,22531,22554,22583,22620,22621,22622,22627,22649,22650,22676,22689,22699,22730,22771,22778,22831,22848,22851,22929,22948,22979,23072,23073,23092]]],["+",[30,30,[[1,2,2,0,2,[[82,1,1,0,1],[83,1,1,1,2]]],[3,3,3,2,5,[[126,1,1,2,3],[149,2,2,3,5]]],[4,1,1,5,6,[[185,1,1,5,6]]],[5,1,1,6,7,[[188,1,1,6,7]]],[6,5,5,7,12,[[213,1,1,7,8],[214,1,1,8,9],[217,1,1,9,10],[227,1,1,10,11],[229,1,1,11,12]]],[8,1,1,12,13,[[236,1,1,12,13]]],[9,2,2,13,15,[[279,1,1,13,14],[286,1,1,14,15]]],[11,2,2,15,17,[[317,1,1,15,16],[331,1,1,16,17]]],[13,1,1,17,18,[[381,1,1,17,18]]],[18,3,3,18,21,[[480,1,1,18,19],[519,1,1,19,20],[560,1,1,20,21]]],[21,1,1,21,22,[[674,1,1,21,22]]],[22,1,1,22,23,[[715,1,1,22,23]]],[23,2,2,23,25,[[748,1,1,23,24],[794,1,1,24,25]]],[25,1,1,25,26,[[829,1,1,25,26]]],[30,2,2,26,28,[[888,2,2,26,28]]],[32,1,1,28,29,[[898,1,1,28,29]]],[34,1,1,29,30,[[905,1,1,29,30]]]],[2479,2525,4021,4784,4808,5812,5892,6571,6613,6697,6981,7040,7213,8351,8575,9669,10092,11498,13961,14561,15255,17583,18384,19042,20172,21173,22518,22519,22650,22771]]],["Mountains",[1,1,[[18,1,1,0,1,[[625,1,1,0,1]]]],[16380]]],["country",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6160]]],["hill",[32,27,[[1,1,1,0,1,[[73,1,1,0,1]]],[3,2,2,1,3,[[130,2,2,1,3]]],[4,2,2,3,5,[[153,2,2,3,5]]],[5,6,6,5,11,[[201,1,1,5,6],[203,1,1,6,7],[204,2,2,7,9],[207,1,1,9,10],[210,1,1,10,11]]],[6,2,2,11,13,[[212,1,1,11,12],[226,1,1,12,13]]],[8,2,2,13,15,[[260,1,1,13,14],[261,1,1,14,15]]],[9,1,1,15,16,[[287,1,1,15,16]]],[10,4,2,16,18,[[301,1,1,16,17],[306,3,1,17,18]]],[11,2,2,18,20,[[313,1,1,18,19],[316,1,1,19,20]]],[18,10,7,20,27,[[479,1,1,20,21],[492,1,1,21,22],[501,1,1,22,23],[520,1,1,23,24],[545,5,2,24,26],[576,1,1,26,27]]]],[2181,4152,4153,4933,4935,6211,6291,6306,6307,6392,6506,6554,6952,7881,7918,8589,9115,9307,9542,9630,13951,14088,14244,14569,14915,14916,15508]]],["hill's",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8439]]],["hills",[23,23,[[0,1,1,0,1,[[6,1,1,0,1]]],[4,3,3,1,4,[[153,1,1,1,2],[160,1,1,2,3],[163,1,1,3,4]]],[5,3,3,4,7,[[195,1,1,4,5],[196,1,1,5,6],[197,1,1,6,7]]],[10,3,3,7,10,[[310,2,2,7,9],[312,1,1,9,10]]],[18,11,11,10,21,[[495,1,1,10,11],[545,1,1,11,12],[557,1,1,12,13],[572,1,1,13,14],[574,1,1,14,15],[575,1,1,15,16],[581,4,4,16,20],[598,1,1,20,21]]],[22,2,2,21,23,[[683,1,1,21,22],[685,1,1,22,23]]]],[178,4899,5144,5219,6038,6104,6123,9431,9436,9497,14125,14916,15208,15458,15483,15498,15581,15584,15589,15603,16082,17764,17807]]],["mount",[203,180,[[0,10,8,0,8,[[9,1,1,0,1],[21,1,1,1,2],[30,6,4,2,6],[35,2,2,6,8]]],[1,39,30,8,38,[[53,1,1,8,9],[67,1,1,9,10],[68,15,10,10,20],[73,8,6,20,26],[74,1,1,26,27],[75,1,1,27,28],[76,1,1,28,29],[80,1,1,29,30],[81,3,3,30,33],[83,7,5,33,38]]],[2,4,4,38,42,[[96,1,1,38,39],[114,1,1,39,40],[115,1,1,40,41],[116,1,1,41,42]]],[3,17,16,42,58,[[119,1,1,42,43],[136,6,5,43,48],[137,1,1,48,49],[143,1,1,49,50],[144,1,1,50,51],[149,5,5,51,56],[150,2,2,56,58]]],[4,30,26,58,84,[[153,3,3,58,61],[154,2,2,61,63],[155,2,2,63,65],[156,1,1,65,66],[157,3,3,66,69],[161,6,4,69,73],[162,5,5,73,78],[163,2,1,78,79],[179,3,3,79,82],[184,3,2,82,84]]],[5,24,20,84,104,[[194,3,2,84,86],[197,2,1,86,87],[198,3,3,87,90],[199,3,3,90,93],[201,4,3,93,96],[202,1,1,96,97],[203,1,1,97,98],[205,1,1,98,99],[206,2,1,99,100],[207,1,1,100,101],[210,3,3,101,104]]],[6,17,17,104,121,[[211,1,1,104,105],[212,1,1,105,106],[213,2,2,106,108],[214,3,3,108,111],[217,1,1,111,112],[219,2,2,112,114],[220,1,1,114,115],[222,1,1,115,116],[227,1,1,116,117],[228,2,2,117,119],[229,2,2,119,121]]],[8,5,5,121,126,[[244,1,1,121,122],[248,1,1,122,123],[249,1,1,123,124],[266,2,2,124,126]]],[9,1,1,126,127,[[267,1,1,126,127]]],[10,6,6,127,133,[[294,1,1,127,128],[302,1,1,128,129],[308,2,2,129,131],[309,2,2,131,133]]],[11,4,4,133,137,[[314,1,1,133,134],[316,1,1,134,135],[335,2,2,135,137]]],[12,5,5,137,142,[[341,1,1,137,138],[342,1,1,138,139],[343,1,1,139,140],[347,2,2,140,142]]],[13,8,7,142,149,[[369,1,1,142,143],[379,2,1,143,144],[385,1,1,144,145],[386,3,3,145,148],[399,1,1,148,149]]],[15,2,2,149,151,[[420,1,1,149,150],[421,1,1,150,151]]],[18,5,5,151,156,[[525,2,2,151,153],[551,1,1,153,154],[555,1,1,154,155],[602,1,1,155,156]]],[22,12,12,156,168,[[682,1,1,156,157],[686,1,1,157,158],[688,2,2,158,160],[692,1,1,160,161],[694,1,1,161,162],[696,1,1,162,163],[702,1,1,163,164],[705,1,1,164,165],[706,1,1,165,166],[707,1,1,166,167],[709,1,1,167,168]]],[23,2,2,168,170,[[775,1,1,168,169],[794,1,1,169,170]]],[25,4,4,170,174,[[836,4,4,170,174]]],[28,1,1,174,175,[[877,1,1,174,175]]],[30,4,3,175,178,[[888,4,3,175,178]]],[32,1,1,178,179,[[896,1,1,178,179]]],[37,2,1,179,180,[[924,2,1,179,180]]]],[264,561,894,896,898,927,1048,1049,1628,2004,2028,2037,2038,2039,2040,2042,2043,2044,2046,2049,2189,2190,2192,2193,2194,2195,2235,2265,2280,2438,2439,2453,2457,2498,2499,2500,2525,2528,2917,3470,3570,3604,3693,4333,4334,4336,4338,4339,4344,4566,4583,4783,4797,4798,4799,4801,4823,4824,4894,4898,4899,4939,4943,4983,4987,5052,5057,5058,5075,5166,5167,5172,5178,5187,5189,5190,5191,5196,5237,5589,5597,5598,5807,5808,6032,6035,6124,6131,6135,6137,6159,6165,6173,6211,6212,6213,6266,6290,6371,6379,6402,6480,6506,6509,6544,6554,6571,6595,6604,6605,6611,6718,6761,6802,6812,6884,6988,6995,7006,7025,7042,7395,7487,7530,8010,8017,8028,8852,9176,9360,9361,9395,9398,9576,9628,10178,10181,10427,10451,10521,10660,10667,11230,11457,11580,11597,11609,11610,11923,12508,12524,14636,14645,15050,15181,16111,17738,17825,17862,17882,17941,17970,18004,18118,18164,18185,18201,18254,19697,20185,21346,21347,21351,21359,22343,22527,22529,22531,22627,23072]]],["mountain",[102,95,[[0,5,5,0,5,[[11,1,1,0,1],[13,1,1,1,2],[18,3,3,2,5]]],[1,5,5,5,10,[[52,2,2,5,7],[64,1,1,7,8],[68,1,1,8,9],[69,1,1,9,10]]],[3,2,2,10,12,[[129,1,1,10,11],[130,1,1,11,12]]],[4,12,11,12,23,[[153,4,4,12,16],[154,1,1,16,17],[155,1,1,17,18],[156,2,1,18,19],[157,1,1,19,20],[184,1,1,20,21],[185,1,1,21,22],[186,1,1,22,23]]],[5,8,8,23,31,[[188,2,2,23,25],[197,1,1,25,26],[200,1,1,26,27],[201,1,1,27,28],[203,1,1,28,29],[204,1,1,29,30],[206,1,1,30,31]]],[6,4,4,31,35,[[211,3,3,31,34],[213,1,1,34,35]]],[8,5,3,35,38,[[252,2,1,35,36],[258,3,2,36,38]]],[11,2,2,38,40,[[314,1,1,38,39],[318,1,1,39,40]]],[13,2,2,40,42,[[368,2,2,40,42]]],[17,1,1,42,43,[[449,1,1,42,43]]],[18,3,3,43,46,[[488,1,1,43,44],[525,1,1,44,45],[555,1,1,45,46]]],[21,1,1,46,47,[[674,1,1,46,47]]],[22,18,18,47,65,[[680,2,2,47,49],[689,1,1,49,50],[691,1,1,50,51],[703,3,3,51,54],[708,3,3,54,57],[718,2,2,57,59],[734,1,1,59,60],[735,2,2,60,62],[743,2,2,62,64],[744,1,1,64,65]]],[23,6,5,65,70,[[747,1,1,65,66],[760,1,1,66,67],[770,1,1,67,68],[775,1,1,68,69],[795,2,1,69,70]]],[24,1,1,70,71,[[801,1,1,70,71]]],[25,8,7,71,78,[[812,1,1,71,72],[818,2,2,72,74],[821,2,1,74,75],[829,1,1,75,76],[841,1,1,76,77],[844,1,1,77,78]]],[26,3,3,78,81,[[858,2,2,78,80],[860,1,1,80,81]]],[28,2,2,81,83,[[877,1,1,81,82],[878,1,1,82,83]]],[29,2,2,83,85,[[882,1,1,83,84],[884,1,1,84,85]]],[30,1,1,85,86,[[888,1,1,85,86]]],[32,5,4,86,90,[[895,1,1,86,87],[896,2,2,87,89],[899,2,1,89,90]]],[35,1,1,90,91,[[908,1,1,90,91]]],[36,1,1,91,92,[[909,1,1,91,92]]],[37,4,3,92,95,[[914,1,1,92,93],[918,2,1,93,94],[924,1,1,94,95]]]],[306,346,474,476,487,1580,1591,1937,2029,2069,4092,4148,4911,4912,4916,4936,4941,5000,5015,5076,5807,5829,5840,5885,5891,6123,6199,6210,6293,6309,6379,6518,6528,6543,6595,7621,7824,7836,9567,9691,11213,11229,13199,14060,14635,15167,17588,17687,17688,17893,17908,18124,18125,18128,18234,18242,18246,18424,18429,18760,18772,18778,18908,18922,18942,19008,19352,19590,19714,20237,20460,20678,20847,20848,20935,21171,21479,21584,22004,22008,22081,22312,22360,22411,22451,22526,22620,22621,22622,22676,22831,22848,22929,22979,23072]]],["mountains",[152,142,[[0,4,4,0,4,[[6,1,1,0,1],[7,2,2,1,3],[21,1,1,3,4]]],[1,1,1,4,5,[[81,1,1,4,5]]],[3,2,2,5,7,[[129,1,1,5,6],[149,1,1,6,7]]],[4,3,3,7,10,[[154,1,1,7,8],[164,1,1,8,9],[184,1,1,9,10]]],[5,9,7,10,17,[[196,1,1,10,11],[197,5,3,11,14],[198,1,1,14,15],[201,1,1,15,16],[204,1,1,16,17]]],[6,7,6,17,23,[[215,1,1,17,18],[216,1,1,18,19],[219,3,2,19,21],[221,2,2,21,23]]],[8,1,1,23,24,[[261,1,1,23,24]]],[9,1,1,24,25,[[267,1,1,24,25]]],[10,2,2,25,27,[[295,1,1,25,26],[309,1,1,26,27]]],[11,1,1,27,28,[[331,1,1,27,28]]],[12,1,1,28,29,[[349,1,1,28,29]]],[13,4,4,29,33,[[384,1,1,29,30],[387,1,1,30,31],[392,1,1,31,32],[393,1,1,32,33]]],[17,5,5,33,38,[[444,1,1,33,34],[459,1,1,34,35],[463,1,1,35,36],[474,1,1,36,37],[475,1,1,37,38]]],[18,14,14,38,52,[[523,2,2,38,40],[527,1,1,40,41],[542,1,1,41,42],[549,2,2,42,44],[567,1,1,44,45],[581,2,2,45,47],[591,2,2,47,49],[602,1,1,49,50],[621,1,1,50,51],[624,1,1,51,52]]],[19,2,2,52,54,[[635,1,1,52,53],[654,1,1,53,54]]],[21,3,3,54,57,[[672,2,2,54,56],[678,1,1,56,57]]],[22,24,24,57,81,[[680,2,2,57,59],[691,1,1,59,60],[692,1,1,60,61],[695,1,1,61,62],[696,2,2,62,64],[700,1,1,64,65],[712,1,1,65,66],[715,1,1,66,67],[718,1,1,67,68],[719,1,1,68,69],[720,2,2,69,71],[722,1,1,71,72],[727,2,2,72,74],[730,1,1,74,75],[732,1,1,75,76],[733,1,1,76,77],[742,2,2,77,79],[743,2,2,79,81]]],[23,10,10,81,91,[[747,1,1,81,82],[748,1,1,82,83],[753,1,1,83,84],[757,1,1,84,85],[761,1,1,85,86],[775,1,1,86,87],[776,1,1,87,88],[777,1,1,88,89],[790,1,1,89,90],[794,1,1,90,91]]],[24,1,1,91,92,[[800,1,1,91,92]]],[25,34,30,92,122,[[807,4,3,92,95],[808,2,2,95,97],[819,3,3,97,100],[820,1,1,100,101],[823,1,1,101,102],[832,1,1,102,103],[833,2,2,103,105],[834,1,1,105,106],[835,4,3,106,109],[836,2,2,109,111],[837,6,4,111,115],[838,1,1,115,116],[839,3,3,116,119],[840,3,3,119,122]]],[27,2,2,122,124,[[865,1,1,122,123],[871,1,1,123,124]]],[28,3,3,124,127,[[877,2,2,124,126],[878,1,1,126,127]]],[29,3,3,127,130,[[881,1,1,127,128],[882,1,1,128,129],[887,1,1,129,130]]],[31,1,1,130,131,[[890,1,1,130,131]]],[32,3,3,131,134,[[893,1,1,131,132],[896,1,1,132,133],[898,1,1,133,134]]],[33,3,3,134,137,[[900,2,2,134,136],[902,1,1,136,137]]],[34,1,1,137,138,[[905,1,1,137,138]]],[36,1,1,138,139,[[909,1,1,138,139]]],[37,5,2,139,141,[[916,3,1,139,140],[924,2,1,140,141]]],[38,1,1,141,142,[[925,1,1,141,142]]]],[179,187,188,549,2450,4104,4807,4975,5242,5780,6070,6109,6110,6128,6138,6250,6305,6628,6656,6779,6790,6866,6867,7925,8043,8893,9398,10084,10728,11558,11635,11742,11759,13056,13444,13513,13842,13884,14616,14617,14679,14866,15003,15016,15380,15577,15579,15826,15828,16112,16310,16359,16627,17194,17562,17571,17654,17687,17699,17910,17953,17996,18000,18003,18057,18306,18376,18432,18466,18491,18495,18556,18647,18649,18703,18733,18752,18886,18888,18904,18906,19025,19051,19185,19282,19383,19696,19775,19788,20063,20172,20439,20565,20566,20576,20584,20593,20855,20860,20864,20890,20985,21242,21253,21254,21308,21319,21326,21327,21352,21356,21360,21363,21365,21367,21419,21433,21445,21446,21450,21452,21465,22146,22233,22313,22316,22361,22404,22423,22508,22554,22583,22621,22649,22689,22699,22730,22778,22851,22948,23073,23092]]]]},{"k":"H2023","v":[["*",[12,12,[[3,11,11,0,11,[[136,4,4,0,4],[137,1,1,4,5],[149,4,4,5,9],[150,2,2,9,11]]],[4,1,1,11,12,[[184,1,1,11,12]]]],[4333,4334,4336,4338,4344,4797,4798,4799,4801,4823,4824,5808]]],["+",[3,3,[[3,3,3,0,3,[[137,1,1,0,1],[149,1,1,1,2],[150,1,1,2,3]]]],[4344,4801,4824]]],["Hor",[9,9,[[3,8,8,0,8,[[136,4,4,0,4],[149,3,3,4,7],[150,1,1,7,8]]],[4,1,1,8,9,[[184,1,1,8,9]]]],[4333,4334,4336,4338,4797,4798,4799,4823,5808]]]]},{"k":"H2024","v":[["Hara",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10454]]]]},{"k":"H2025","v":[["altar",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21587]]]]},{"k":"H2026","v":[["*",[166,157,[[0,16,16,0,16,[[3,5,5,0,5],[11,1,1,5,6],[19,2,2,6,8],[25,1,1,8,9],[26,2,2,9,11],[33,2,2,11,13],[36,2,2,13,15],[48,1,1,15,16]]],[1,11,10,16,26,[[51,3,2,16,18],[53,1,1,18,19],[54,1,1,19,20],[62,1,1,20,21],[70,1,1,21,22],[71,1,1,22,23],[72,1,1,23,24],[81,2,2,24,26]]],[2,2,2,26,28,[[109,2,2,26,28]]],[3,11,8,28,36,[[127,2,1,28,29],[138,2,2,29,31],[141,1,1,31,32],[147,6,4,32,36]]],[4,2,1,36,37,[[165,2,1,36,37]]],[5,4,4,37,41,[[194,1,1,37,38],[195,1,1,38,39],[196,1,1,39,40],[199,1,1,40,41]]],[6,16,14,41,55,[[217,2,1,41,42],[218,5,5,42,47],[219,7,6,47,53],[226,1,1,53,54],[230,1,1,54,55]]],[8,5,5,55,60,[[251,1,1,55,56],[257,1,1,56,57],[259,3,3,57,60]]],[9,7,7,60,67,[[269,1,1,60,61],[270,3,3,61,64],[276,1,1,64,65],[278,1,1,65,66],[280,1,1,66,67]]],[10,11,11,67,78,[[292,2,2,67,69],[299,1,1,69,70],[301,1,1,70,71],[302,1,1,71,72],[308,3,3,72,75],[309,3,3,75,78]]],[11,5,5,78,83,[[320,1,1,78,79],[321,1,1,79,80],[322,1,1,80,81],[323,1,1,81,82],[329,1,1,82,83]]],[12,3,3,83,86,[[344,1,1,83,84],[348,1,1,84,85],[356,1,1,85,86]]],[13,12,12,86,98,[[387,2,2,86,88],[388,2,2,88,90],[389,1,1,90,91],[390,2,2,91,93],[391,1,1,93,94],[394,3,3,94,97],[402,1,1,97,98]]],[15,4,3,98,101,[[416,1,1,98,99],[418,2,1,99,100],[421,1,1,100,101]]],[16,9,9,101,110,[[428,1,1,101,102],[432,1,1,102,103],[433,1,1,103,104],[434,6,6,104,110]]],[17,2,2,110,112,[[440,1,1,110,111],[455,1,1,111,112]]],[18,9,9,112,121,[[487,1,1,112,113],[521,1,1,113,114],[536,1,1,114,115],[555,3,3,115,118],[571,1,1,118,119],[612,1,1,119,120],[613,1,1,120,121]]],[19,2,2,121,123,[[628,1,1,121,122],[634,1,1,122,123]]],[20,1,1,123,124,[[661,1,1,123,124]]],[22,9,8,124,132,[[688,1,1,124,125],[692,3,3,125,128],[700,1,1,128,129],[704,1,1,129,130],[705,3,2,130,132]]],[23,3,3,132,135,[[748,1,1,132,133],[759,1,1,133,134],[762,1,1,134,135]]],[24,4,4,135,139,[[798,3,3,135,138],[799,1,1,138,139]]],[25,10,10,139,149,[[810,1,1,139,140],[822,1,1,140,141],[824,2,2,141,143],[827,4,4,143,147],[829,1,1,147,148],[838,1,1,148,149]]],[27,2,2,149,151,[[867,1,1,149,150],[870,1,1,150,151]]],[29,4,4,151,155,[[880,1,1,151,152],[882,1,1,152,153],[887,2,2,153,155]]],[34,1,1,155,156,[[903,1,1,155,156]]],[37,1,1,156,157,[[921,1,1,156,157]]]],[87,93,94,102,104,310,499,506,699,768,769,1005,1006,1103,1109,1479,1568,1569,1624,1653,1882,2091,2137,2151,2450,2465,3333,3334,4039,4404,4408,4476,4671,4672,4681,4683,5281,6026,6063,6075,6176,6719,6736,6737,6738,6739,6740,6759,6772,6778,6799,6808,6810,6951,7059,7597,7808,7849,7850,7857,8111,8130,8131,8132,8258,8295,8363,8775,8802,9067,9132,9178,9353,9354,9355,9388,9397,9401,9739,9787,9802,9847,10008,10556,10696,10925,11628,11637,11645,11652,11673,11699,11702,11707,11770,11771,11773,12010,12370,12411,12537,12760,12811,12828,12840,12844,12845,12846,12849,12850,12953,13342,14049,14593,14801,15144,15147,15160,15437,16185,16214,16432,16601,17362,17854,17947,17948,17958,18065,18151,18152,18158,19058,19318,19405,20336,20352,20353,20397,20628,20955,21017,21054,21106,21108,21111,21115,21166,21406,22172,22221,22382,22420,22496,22499,22748,23033]]],["+",[26,25,[[0,2,2,0,2,[[26,1,1,0,1],[36,1,1,1,2]]],[1,3,3,2,5,[[51,2,2,2,4],[53,1,1,4,5]]],[2,1,1,5,6,[[109,1,1,5,6]]],[4,2,1,6,7,[[165,2,1,6,7]]],[5,1,1,7,8,[[194,1,1,7,8]]],[6,6,6,8,14,[[217,1,1,8,9],[218,2,2,9,11],[219,3,3,11,14]]],[8,1,1,14,15,[[257,1,1,14,15]]],[9,1,1,15,16,[[270,1,1,15,16]]],[10,2,2,16,18,[[308,1,1,16,17],[309,1,1,17,18]]],[11,1,1,18,19,[[323,1,1,18,19]]],[13,5,5,19,24,[[387,2,2,19,21],[390,1,1,21,22],[391,1,1,22,23],[394,1,1,23,24]]],[22,1,1,24,25,[[705,1,1,24,25]]]],[768,1109,1568,1569,1624,3334,5281,6026,6719,6736,6740,6759,6772,6810,7808,8131,9354,9388,9847,11628,11637,11699,11707,11771,18152]]],["Slay",[3,3,[[3,1,1,0,1,[[141,1,1,0,1]]],[18,1,1,1,2,[[536,1,1,1,2]]],[25,1,1,2,3,[[810,1,1,2,3]]]],[4476,14801,20628]]],["destroyed",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15160]]],["hand",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4039]]],["kill",[15,14,[[0,3,3,0,3,[[11,1,1,0,1],[25,1,1,1,2],[26,1,1,2,3]]],[1,2,2,3,5,[[51,1,1,3,4],[71,1,1,4,5]]],[3,4,3,5,8,[[127,1,1,5,6],[138,1,1,6,7],[147,2,1,7,8]]],[6,1,1,8,9,[[226,1,1,8,9]]],[8,2,2,9,11,[[251,1,1,9,10],[259,1,1,10,11]]],[10,1,1,11,12,[[302,1,1,11,12]]],[16,1,1,12,13,[[428,1,1,12,13]]],[20,1,1,13,14,[[661,1,1,13,14]]]],[310,699,769,1568,2137,4039,4404,4681,6951,7597,7849,9178,12760,17362]]],["killed",[3,3,[[3,1,1,0,1,[[147,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]],[18,1,1,2,3,[[521,1,1,2,3]]]],[4683,7850,14593]]],["killedst",[1,1,[[8,1,1,0,1,[[259,1,1,0,1]]]],[7857]]],["killeth",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12953]]],["killing",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6778]]],["made",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21115]]],["murder",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14049]]],["murderer",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22221]]],["murderers",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19058]]],["put",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19405]]],["slain",[26,25,[[0,1,1,0,1,[[3,1,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]],[6,1,1,2,3,[[230,1,1,2,3]]],[9,1,1,3,4,[[278,1,1,3,4]]],[10,3,3,4,7,[[299,1,1,4,5],[309,2,2,5,7]]],[13,2,2,7,9,[[388,1,1,7,8],[394,1,1,8,9]]],[16,3,3,9,12,[[432,1,1,9,10],[434,2,2,10,12]]],[19,1,1,12,13,[[634,1,1,12,13]]],[22,6,5,13,18,[[688,1,1,13,14],[692,2,2,14,16],[704,1,1,16,17],[705,2,1,17,18]]],[24,3,3,18,21,[[798,2,2,18,20],[799,1,1,20,21]]],[25,2,2,21,23,[[827,1,1,21,22],[838,1,1,22,23]]],[27,1,1,23,24,[[867,1,1,23,24]]],[29,1,1,24,25,[[882,1,1,24,25]]]],[102,4408,7059,8295,9067,9397,9401,11645,11773,12811,12845,12846,16601,17854,17947,17948,18151,18158,20352,20353,20397,21106,21406,22172,22420]]],["slay",[33,32,[[0,4,4,0,4,[[3,1,1,0,1],[19,2,2,1,3],[36,1,1,3,4]]],[1,5,5,4,9,[[54,1,1,4,5],[70,1,1,5,6],[72,1,1,6,7],[81,2,2,7,9]]],[2,1,1,9,10,[[109,1,1,9,10]]],[5,1,1,10,11,[[199,1,1,10,11]]],[6,2,2,11,13,[[218,2,2,11,13]]],[10,2,2,13,15,[[308,2,2,13,15]]],[11,1,1,15,16,[[320,1,1,15,16]]],[15,3,2,16,18,[[416,1,1,16,17],[418,2,1,17,18]]],[16,1,1,18,19,[[433,1,1,18,19]]],[17,1,1,19,20,[[455,1,1,19,20]]],[18,1,1,20,21,[[571,1,1,20,21]]],[19,1,1,21,22,[[628,1,1,21,22]]],[22,1,1,22,23,[[692,1,1,22,23]]],[23,1,1,23,24,[[759,1,1,23,24]]],[25,3,3,24,27,[[824,1,1,24,25],[827,2,2,25,27]]],[29,3,3,27,30,[[880,1,1,27,28],[887,2,2,28,30]]],[34,1,1,30,31,[[903,1,1,30,31]]],[37,1,1,31,32,[[921,1,1,31,32]]]],[93,499,506,1103,1653,2091,2151,2450,2465,3333,6176,6738,6739,9353,9355,9739,12370,12411,12828,13342,15437,16432,17958,19318,21054,21108,21111,22382,22496,22499,22748,23033]]],["slayer",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20955]]],["slayeth",[2,2,[[0,1,1,0,1,[[3,1,1,0,1]]],[25,1,1,1,2,[[829,1,1,1,2]]]],[94,21166]]],["slaying",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18065]]],["slew",[46,45,[[0,5,5,0,5,[[3,2,2,0,2],[33,2,2,2,4],[48,1,1,4,5]]],[1,1,1,5,6,[[62,1,1,5,6]]],[3,3,2,6,8,[[147,3,2,6,8]]],[5,2,2,8,10,[[195,1,1,8,9],[196,1,1,9,10]]],[6,5,5,10,15,[[217,1,1,10,11],[218,1,1,11,12],[219,3,3,12,15]]],[9,5,5,15,20,[[269,1,1,15,16],[270,2,2,16,18],[276,1,1,18,19],[280,1,1,19,20]]],[10,3,3,20,23,[[292,2,2,20,22],[301,1,1,22,23]]],[11,3,3,23,26,[[321,1,1,23,24],[322,1,1,24,25],[329,1,1,25,26]]],[12,3,3,26,29,[[344,1,1,26,27],[348,1,1,27,28],[356,1,1,28,29]]],[13,5,5,29,34,[[388,1,1,29,30],[389,1,1,30,31],[390,1,1,31,32],[394,1,1,32,33],[402,1,1,33,34]]],[15,1,1,34,35,[[421,1,1,34,35]]],[16,4,4,35,39,[[434,4,4,35,39]]],[18,4,4,39,43,[[555,2,2,39,41],[612,1,1,41,42],[613,1,1,42,43]]],[24,1,1,43,44,[[798,1,1,43,44]]],[25,1,1,44,45,[[824,1,1,44,45]]]],[87,104,1005,1006,1479,1882,4671,4672,6063,6075,6719,6737,6778,6799,6808,8111,8130,8132,8258,8363,8775,8802,9132,9787,9802,10008,10556,10696,10925,11652,11673,11702,11770,12010,12537,12840,12844,12849,12850,15144,15147,16185,16214,20336,21017]]]]},{"k":"H2027","v":[["*",[5,5,[[16,1,1,0,1,[[434,1,1,0,1]]],[19,1,1,1,2,[[651,1,1,1,2]]],[22,2,2,2,4,[[705,1,1,2,3],[708,1,1,3,4]]],[25,1,1,4,5,[[827,1,1,4,5]]]],[12839,17090,18158,18242,21115]]],["slain",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17090]]],["slaughter",[4,4,[[16,1,1,0,1,[[434,1,1,0,1]]],[22,2,2,1,3,[[705,1,1,1,2],[708,1,1,2,3]]],[25,1,1,3,4,[[827,1,1,3,4]]]],[12839,18158,18242,21115]]]]},{"k":"H2028","v":[["slaughter",[5,5,[[23,3,3,0,3,[[751,1,1,0,1],[756,1,1,1,2],[763,1,1,2,3]]],[37,2,2,3,5,[[921,2,2,3,5]]]],[19151,19252,19413,23032,23035]]]]},{"k":"H2029","v":[["*",[45,44,[[0,21,20,0,20,[[3,2,2,0,2],[15,3,2,2,4],[18,1,1,4,5],[20,1,1,5,6],[24,1,1,6,7],[28,4,4,7,11],[29,5,5,11,16],[37,3,3,16,19],[48,1,1,19,20]]],[1,1,1,20,21,[[51,1,1,20,21]]],[6,3,3,21,24,[[223,3,3,21,24]]],[8,2,2,24,26,[[236,1,1,24,25],[237,1,1,25,26]]],[9,1,1,26,27,[[277,1,1,26,27]]],[11,1,1,27,28,[[316,1,1,27,28]]],[12,1,1,28,29,[[341,1,1,28,29]]],[17,2,2,29,31,[[438,1,1,29,30],[450,1,1,30,31]]],[18,1,1,31,32,[[484,1,1,31,32]]],[21,1,1,32,33,[[673,1,1,32,33]]],[22,6,6,33,39,[[685,1,1,33,34],[686,1,1,34,35],[704,1,1,35,36],[711,1,1,36,37],[737,2,2,37,39]]],[23,1,1,39,40,[[775,1,1,39,40]]],[27,4,4,40,44,[[862,3,3,40,43],[863,1,1,43,44]]]],[80,96,385,386,493,515,679,827,828,829,830,835,837,847,849,853,1122,1123,1137,1499,1556,6887,6889,6891,7232,7261,8264,9620,10402,12907,13238,14009,17575,17796,17810,18148,18290,18804,18813,19699,22097,22100,22102,22110]]],["+",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10402]]],["child",[3,3,[[0,1,1,0,1,[[18,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]]],[493,18148,19699]]],["conceive",[7,7,[[6,3,3,0,3,[[223,3,3,0,3]]],[17,1,1,3,4,[[450,1,1,3,4]]],[22,3,3,4,7,[[685,1,1,4,5],[711,1,1,5,6],[737,1,1,6,7]]]],[6887,6889,6891,13238,17796,18290,18804]]],["conceived",[32,31,[[0,19,18,0,18,[[3,2,2,0,2],[15,3,2,2,4],[20,1,1,4,5],[24,1,1,5,6],[28,4,4,6,10],[29,5,5,10,15],[37,3,3,15,18]]],[1,1,1,18,19,[[51,1,1,18,19]]],[8,2,2,19,21,[[236,1,1,19,20],[237,1,1,20,21]]],[9,1,1,21,22,[[277,1,1,21,22]]],[11,1,1,22,23,[[316,1,1,22,23]]],[17,1,1,23,24,[[438,1,1,23,24]]],[18,1,1,24,25,[[484,1,1,24,25]]],[21,1,1,25,26,[[673,1,1,25,26]]],[22,1,1,26,27,[[686,1,1,26,27]]],[27,4,4,27,31,[[862,3,3,27,30],[863,1,1,30,31]]]],[80,96,385,386,515,679,827,828,829,830,835,837,847,849,853,1122,1123,1137,1556,7232,7261,8264,9620,12907,14009,17575,17810,22097,22100,22102,22110]]],["conceiving",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18813]]],["progenitors",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1499]]]]},{"k":"H2030","v":[["*",[14,14,[[0,3,3,0,3,[[15,1,1,0,1],[37,2,2,1,3]]],[1,1,1,3,4,[[70,1,1,3,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[8,1,1,5,6,[[239,1,1,5,6]]],[9,1,1,6,7,[[277,1,1,6,7]]],[11,2,2,7,9,[[320,1,1,7,8],[327,1,1,8,9]]],[12,1,1,9,10,[[344,1,1,9,10]]],[22,1,1,10,11,[[704,1,1,10,11]]],[23,1,1,11,12,[[764,1,1,11,12]]],[27,1,1,12,13,[[874,1,1,12,13]]],[29,1,1,13,14,[[879,1,1,13,14]]]],[392,1143,1144,2099,4036,7316,8264,9739,9941,10558,18147,19439,22282,22377]]],["+",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4036]]],["child",[11,11,[[0,3,3,0,3,[[15,1,1,0,1],[37,2,2,1,3]]],[1,1,1,3,4,[[70,1,1,3,4]]],[8,1,1,4,5,[[239,1,1,4,5]]],[9,1,1,5,6,[[277,1,1,5,6]]],[11,2,2,6,8,[[320,1,1,6,7],[327,1,1,7,8]]],[22,1,1,8,9,[[704,1,1,8,9]]],[27,1,1,9,10,[[874,1,1,9,10]]],[29,1,1,10,11,[[879,1,1,10,11]]]],[392,1143,1144,2099,7316,8264,9739,9941,18147,22282,22377]]],["conceived",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10558]]],["great",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19439]]]]},{"k":"H2031","v":[["thoughts",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21842]]]]},{"k":"H2032","v":[["*",[3,3,[[0,1,1,0,1,[[2,1,1,0,1]]],[7,1,1,1,2,[[235,1,1,1,2]]],[27,1,1,2,3,[[870,1,1,2,3]]]],[71,7203,22219]]],["+",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22219]]],["conception",[2,2,[[0,1,1,0,1,[[2,1,1,0,1]]],[7,1,1,1,2,[[235,1,1,1,2]]]],[71,7203]]]]},{"k":"H2033","v":[["Harorite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10700]]]]},{"k":"H2034","v":[["ruins",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22506]]]]},{"k":"H2035","v":[["destruction",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18655]]]]},{"k":"H2036","v":[["Horam",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6097]]]]},{"k":"H2037","v":[["Harum",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10393]]]]},{"k":"H2038","v":[["palace",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22413]]]]},{"k":"H2039","v":[["Haran",[7,6,[[0,6,5,0,5,[[10,6,5,0,5]]],[12,1,1,5,6,[[360,1,1,5,6]]]],[292,293,294,295,297,10992]]]]},{"k":"H2040","v":[["*",[43,42,[[1,5,4,0,4,[[64,1,1,0,1],[68,2,2,1,3],[72,2,1,3,4]]],[6,1,1,4,5,[[216,1,1,4,5]]],[9,1,1,5,6,[[277,1,1,5,6]]],[10,3,3,6,9,[[308,1,1,6,7],[309,2,2,7,9]]],[11,1,1,9,10,[[315,1,1,9,10]]],[12,1,1,10,11,[[357,1,1,10,11]]],[17,1,1,11,12,[[447,1,1,11,12]]],[18,3,3,12,15,[[488,1,1,12,13],[505,1,1,13,14],[535,1,1,14,15]]],[19,4,4,15,19,[[638,1,1,15,16],[641,1,1,16,17],[651,1,1,17,18],[656,1,1,18,19]]],[22,3,3,19,22,[[692,1,1,19,20],[700,1,1,20,21],[727,1,1,21,22]]],[23,7,7,22,29,[[745,1,1,22,23],[768,1,1,23,24],[775,2,2,24,26],[786,1,1,26,27],[789,1,1,27,28],[794,1,1,28,29]]],[24,2,2,29,31,[[798,2,2,29,31]]],[25,8,8,31,39,[[814,1,1,31,32],[817,1,1,32,33],[827,2,2,33,35],[831,1,1,35,36],[837,2,2,36,38],[839,1,1,38,39]]],[28,1,1,39,40,[[876,1,1,39,40]]],[32,1,1,40,41,[[897,1,1,40,41]]],[38,1,1,41,42,[[925,1,1,41,42]]]],[1927,2047,2050,2168,6679,8284,9371,9397,9401,9601,10927,13142,14062,14304,14785,16699,16773,17110,17228,17945,18071,18653,18956,19530,19719,19731,19985,20044,20181,20334,20349,20722,20801,21104,21112,21208,21394,21395,21445,22308,22644,23093]]],["+",[6,5,[[1,2,1,0,1,[[72,2,1,0,1]]],[6,1,1,1,2,[[216,1,1,1,2]]],[10,2,2,2,4,[[309,2,2,2,4]]],[25,1,1,4,5,[[814,1,1,4,5]]]],[2168,6679,9397,9401,20722]]],["Break",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14785]]],["destroy",[1,1,[[18,1,1,0,1,[[505,1,1,0,1]]]],[14304]]],["destroyed",[3,3,[[12,1,1,0,1,[[357,1,1,0,1]]],[18,1,1,1,2,[[488,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]]],[10927,14062,17945]]],["destroyers",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18653]]],["down",[23,23,[[10,1,1,0,1,[[308,1,1,0,1]]],[11,1,1,1,2,[[315,1,1,1,2]]],[17,1,1,2,3,[[447,1,1,2,3]]],[19,2,2,3,5,[[641,1,1,3,4],[651,1,1,4,5]]],[22,1,1,5,6,[[700,1,1,5,6]]],[23,7,7,6,13,[[745,1,1,6,7],[768,1,1,7,8],[775,2,2,8,10],[786,1,1,10,11],[789,1,1,11,12],[794,1,1,12,13]]],[24,2,2,13,15,[[798,2,2,13,15]]],[25,5,5,15,20,[[817,1,1,15,16],[827,2,2,16,18],[831,1,1,18,19],[839,1,1,19,20]]],[28,1,1,20,21,[[876,1,1,20,21]]],[32,1,1,21,22,[[897,1,1,21,22]]],[38,1,1,22,23,[[925,1,1,22,23]]]],[9371,9601,13142,16773,17110,18071,18956,19530,19719,19731,19985,20044,20181,20334,20349,20801,21104,21112,21208,21445,22308,22644,23093]]],["overthrow",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8284]]],["overthroweth",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17228]]],["overthrown",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[19,1,1,1,2,[[638,1,1,1,2]]]],[1927,16699]]],["ruined",[2,2,[[25,2,2,0,2,[[837,2,2,0,2]]]],[21394,21395]]],["through",[2,2,[[1,2,2,0,2,[[68,2,2,0,2]]]],[2047,2050]]]]},{"k":"H2041","v":[["destruction",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18022]]]]},{"k":"H2042","v":[["*",[13,13,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[4,2,2,2,4,[[160,1,1,2,3],[185,1,1,3,4]]],[18,6,6,4,10,[[507,1,1,4,5],[513,1,1,5,6],[527,1,1,6,7],[553,1,1,7,8],[564,1,1,8,9],[610,1,1,9,10]]],[21,1,1,10,11,[[674,1,1,10,11]]],[23,1,1,11,12,[[761,1,1,11,12]]],[34,1,1,12,13,[[905,1,1,12,13]]]],[342,4423,5146,5825,14326,14444,14678,15085,15302,16172,17590,19360,22774]]],["+",[4,4,[[3,1,1,0,1,[[139,1,1,0,1]]],[4,1,1,1,2,[[160,1,1,1,2]]],[18,1,1,2,3,[[553,1,1,2,3]]],[21,1,1,3,4,[[674,1,1,3,4]]]],[4423,5146,15085,17590]]],["hills",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14678]]],["mount",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[342]]],["mountain",[2,2,[[18,1,1,0,1,[[507,1,1,0,1]]],[23,1,1,1,2,[[761,1,1,1,2]]]],[14326,19360]]],["mountains",[5,5,[[4,1,1,0,1,[[185,1,1,0,1]]],[18,3,3,1,4,[[513,1,1,1,2],[564,1,1,2,3],[610,1,1,3,4]]],[34,1,1,4,5,[[905,1,1,4,5]]]],[5825,14444,15302,16172,22774]]]]},{"k":"H2043","v":[["Hararite",[5,4,[[9,3,2,0,2,[[289,3,2,0,2]]],[12,2,2,2,4,[[348,2,2,2,4]]]],[8664,8686,10707,10708]]]]},{"k":"H2044","v":[["Hashem",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10707]]]]},{"k":"H2045","v":[["hear",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21082]]]]},{"k":"H2046","v":[["melted",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[20998]]]]},{"k":"H2047","v":[["Hatach",[4,4,[[16,4,4,0,4,[[429,4,4,0,4]]]],[12767,12768,12771,12772]]]]},{"k":"H2048","v":[["*",[10,9,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,1,1,1,2,[[57,1,1,1,2]]],[6,3,3,2,5,[[226,3,3,2,5]]],[10,1,1,5,6,[[308,1,1,5,6]]],[17,2,1,6,7,[[448,2,1,6,7]]],[22,1,1,7,8,[[722,1,1,7,8]]],[23,1,1,8,9,[[753,1,1,8,9]]]],[880,1739,6959,6962,6964,9368,13162,18553,19180]]],["deceitfully",[1,1,[[1,1,1,0,1,[[57,1,1,0,1]]]],[1739]]],["deceive",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19180]]],["deceived",[2,2,[[0,1,1,0,1,[[30,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[880,18553]]],["mock",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13162]]],["mocked",[4,4,[[6,3,3,0,3,[[226,3,3,0,3]]],[10,1,1,3,4,[[308,1,1,3,4]]]],[6959,6962,6964,9368]]],["mocketh",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13162]]]]},{"k":"H2049","v":[["mockers",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13262]]]]},{"k":"H2050","v":[["mischief",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14830]]]]},{"k":"H2051","v":[["Dan",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21140]]]]},{"k":"H2052","v":[["did",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4354]]]]},{"k":"H2053","v":[["hooks",[13,13,[[1,13,13,0,13,[[75,2,2,0,2],[76,3,3,2,5],[85,2,2,5,7],[87,6,6,7,13]]]],[2267,2272,2282,2283,2289,2602,2604,2643,2644,2645,2650,2652,2661]]]]},{"k":"H2054","v":[["strange",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16992]]]]},{"k":"H2055","v":[["Vajezatha",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12843]]]]},{"k":"H2056","v":[["child",[1,1,[[0,1,1,0,1,[[10,1,1,0,1]]]],[296]]]]},{"k":"H2057","v":[["Vaniah",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12288]]]]},{"k":"H2058","v":[["Vophsi",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4089]]]]},{"k":"H2059","v":[["Vashni",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10482]]]]},{"k":"H2060","v":[["Vashti",[10,10,[[16,10,10,0,10,[[426,7,7,0,7],[427,3,3,7,10]]]],[12711,12713,12714,12717,12718,12719,12721,12725,12728,12741]]]]},{"k":"H2061","v":[["*",[7,7,[[0,1,1,0,1,[[48,1,1,0,1]]],[22,2,2,1,3,[[689,1,1,1,2],[743,1,1,2,3]]],[23,1,1,3,4,[[749,1,1,3,4]]],[25,1,1,4,5,[[823,1,1,4,5]]],[34,1,1,5,6,[[903,1,1,5,6]]],[35,1,1,6,7,[[908,1,1,6,7]]]],[1500,17890,18922,19064,21003,22739,22823]]],["+",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22739]]],["wolf",[4,4,[[0,1,1,0,1,[[48,1,1,0,1]]],[22,2,2,1,3,[[689,1,1,1,2],[743,1,1,2,3]]],[23,1,1,3,4,[[749,1,1,3,4]]]],[1500,17890,18922,19064]]],["wolves",[2,2,[[25,1,1,0,1,[[823,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[21003,22823]]]]},{"k":"H2062","v":[["Zeeb",[6,3,[[6,5,2,0,2,[[217,4,1,0,1],[218,1,1,1,2]]],[18,1,1,2,3,[[560,1,1,2,3]]]],[6719,6722,15252]]]]},{"k":"H2063","v":[["*",[601,567,[[0,51,47,0,47,[[1,3,1,0,1],[2,2,2,1,3],[8,2,2,3,5],[11,3,3,5,8],[14,2,2,8,10],[16,1,1,10,11],[18,1,1,11,12],[19,2,2,12,14],[20,2,1,14,15],[23,3,3,15,18],[25,2,2,18,20],[27,2,2,20,22],[28,4,3,22,25],[30,2,2,25,27],[33,3,3,27,30],[36,1,1,30,31],[38,1,1,31,32],[40,1,1,32,33],[41,5,5,33,38],[42,2,2,38,40],[43,1,1,40,41],[44,3,3,41,44],[47,1,1,44,45],[48,1,1,45,46],[49,1,1,46,47]]],[1,17,17,47,64,[[56,2,2,47,49],[57,1,1,49,50],[58,2,2,50,52],[61,3,3,52,55],[62,3,3,55,58],[63,2,2,58,60],[64,1,1,60,61],[66,1,1,61,62],[74,1,1,62,63],[81,1,1,63,64]]],[2,24,24,64,88,[[95,3,3,64,67],[96,4,4,67,71],[100,2,2,71,73],[101,1,1,73,74],[102,1,1,74,75],[103,4,4,75,79],[104,2,2,79,81],[105,2,2,81,83],[106,1,1,83,84],[114,1,1,84,85],[115,3,3,85,88]]],[3,33,32,88,120,[[120,6,6,88,94],[121,2,2,94,96],[122,2,2,96,98],[123,2,2,98,100],[124,1,1,100,101],[130,6,5,101,106],[132,4,4,106,110],[135,2,2,110,112],[137,1,1,112,113],[144,1,1,113,114],[147,1,1,114,115],[148,2,2,115,117],[150,3,3,117,120]]],[4,53,50,120,170,[[153,1,1,120,121],[155,2,2,121,123],[156,4,3,123,126],[157,2,2,126,128],[158,2,2,128,130],[161,2,2,130,132],[163,1,1,132,133],[165,1,1,133,134],[166,1,1,134,135],[167,1,1,135,136],[169,3,3,136,139],[170,1,1,139,140],[171,1,1,140,141],[174,1,1,141,142],[178,1,1,142,143],[179,3,3,143,146],[180,2,2,146,148],[181,6,5,148,153],[182,1,1,153,154],[183,9,8,154,162],[184,5,5,162,167],[185,2,2,167,169],[186,1,1,169,170]]],[5,28,27,170,197,[[187,1,1,170,171],[189,1,1,171,172],[190,1,1,172,173],[192,1,1,173,174],[193,2,1,174,175],[195,1,1,175,176],[197,2,2,176,178],[199,4,4,178,182],[201,1,1,182,183],[202,1,1,183,184],[204,3,3,184,187],[205,6,6,187,193],[208,1,1,193,194],[209,2,2,194,196],[210,1,1,196,197]]],[6,18,17,197,214,[[211,1,1,197,198],[212,2,1,198,199],[216,1,1,199,200],[217,1,1,200,201],[218,1,1,201,202],[223,1,1,202,203],[225,4,4,203,207],[229,4,4,207,211],[230,2,2,211,213],[231,1,1,213,214]]],[7,5,4,214,218,[[232,1,1,214,215],[233,1,1,215,216],[235,3,2,216,218]]],[8,14,14,218,232,[[237,1,1,218,219],[239,2,2,219,221],[241,1,1,221,222],[244,1,1,222,223],[246,1,1,223,224],[247,1,1,224,225],[249,2,2,225,227],[255,2,2,227,229],[257,1,1,229,230],[260,2,2,230,232]]],[9,26,22,232,254,[[267,1,1,232,233],[268,1,1,233,234],[272,1,1,234,235],[273,5,4,235,239],[277,1,1,239,240],[278,2,2,240,242],[279,3,3,242,245],[280,2,2,245,247],[283,5,2,247,249],[285,3,3,249,252],[288,1,1,252,253],[289,1,1,253,254]]],[10,15,14,254,268,[[293,7,6,254,260],[297,1,1,260,261],[298,1,1,261,262],[299,3,3,262,265],[301,2,2,265,267],[304,1,1,267,268]]],[11,24,21,268,289,[[315,1,1,268,269],[316,3,3,269,272],[317,2,1,272,273],[318,2,2,273,275],[320,1,1,275,276],[321,5,4,276,280],[330,2,2,280,282],[331,4,4,282,286],[332,2,1,286,287],[335,2,2,287,289]]],[12,9,9,289,298,[[341,1,1,289,290],[348,1,1,290,291],[354,3,3,291,294],[358,1,1,294,295],[364,1,1,295,296],[366,2,2,296,298]]],[13,23,23,298,321,[[367,1,1,298,299],[368,1,1,299,300],[372,1,1,300,301],[373,2,2,301,303],[382,2,2,303,305],[385,1,1,305,306],[386,2,2,306,308],[387,1,1,308,309],[390,1,1,309,310],[391,1,1,310,311],[393,1,1,311,312],[395,1,1,312,313],[396,2,2,313,315],[397,2,2,315,317],[398,2,2,317,319],[400,1,1,319,320],[401,1,1,320,321]]],[14,7,7,321,328,[[409,1,1,321,322],[410,1,1,322,323],[411,3,3,323,326],[412,2,2,326,328]]],[15,8,7,328,335,[[417,1,1,328,329],[418,1,1,329,330],[421,1,1,330,331],[425,5,4,331,335]]],[16,4,3,335,338,[[429,2,1,335,336],[434,2,2,336,338]]],[17,16,16,338,354,[[436,1,1,338,339],[437,2,2,339,341],[440,1,1,341,342],[445,1,1,342,343],[447,1,1,343,344],[452,1,1,344,345],[454,1,1,345,346],[455,1,1,346,347],[456,1,1,347,348],[468,1,1,348,349],[469,1,1,349,350],[470,1,1,350,351],[472,2,2,351,353],[477,1,1,353,354]]],[18,20,20,354,374,[[484,1,1,354,355],[504,1,1,355,356],[509,1,1,356,357],[518,1,1,357,358],[521,2,2,358,360],[526,1,1,360,361],[527,1,1,361,362],[550,1,1,362,363],[551,1,1,363,364],[555,1,1,364,365],[557,1,1,365,366],[569,1,1,366,367],[579,1,1,367,368],[586,2,2,368,370],[595,1,1,370,371],[596,2,2,371,373],[609,1,1,373,374]]],[19,1,1,374,375,[[633,1,1,374,375]]],[21,4,4,375,379,[[673,1,1,375,376],[676,1,1,376,377],[677,1,1,377,378],[678,1,1,378,379]]],[22,43,39,379,418,[[679,1,1,379,380],[681,1,1,380,381],[683,1,1,381,382],[687,4,4,382,386],[688,1,1,386,387],[690,1,1,387,388],[692,2,1,388,389],[701,2,2,389,391],[705,1,1,391,392],[706,3,2,392,394],[708,1,1,394,395],[714,3,2,395,397],[715,4,4,397,401],[716,2,1,401,402],[719,1,1,402,403],[720,1,1,403,404],[721,1,1,404,405],[723,1,1,405,406],[724,1,1,406,407],[725,1,1,407,408],[726,3,3,408,411],[728,1,1,411,412],[729,1,1,412,413],[732,2,2,413,415],[734,1,1,415,416],[737,1,1,416,417],[744,1,1,417,418]]],[23,94,89,418,507,[[746,3,3,418,421],[747,1,1,421,422],[748,3,3,422,425],[749,3,3,425,428],[752,1,1,428,429],[753,2,2,429,431],[754,1,1,431,432],[755,4,4,432,436],[757,1,1,436,437],[758,1,1,437,438],[760,4,4,438,442],[761,3,2,442,444],[763,4,4,444,448],[764,1,1,448,449],[765,5,5,449,454],[766,3,2,454,456],[768,2,2,456,458],[769,3,3,458,461],[770,7,6,461,467],[771,2,2,467,469],[773,1,1,469,470],[775,2,2,470,472],[776,13,12,472,484],[777,2,2,484,486],[778,2,2,486,488],[780,2,1,488,489],[781,3,3,489,492],[782,7,7,492,499],[783,1,1,499,500],[784,1,1,500,501],[786,3,3,501,504],[788,3,3,504,507]]],[24,2,2,507,509,[[798,1,1,507,508],[799,1,1,508,509]]],[25,24,22,509,531,[[804,3,3,509,512],[806,1,1,512,513],[807,1,1,513,514],[812,2,2,514,516],[817,1,1,516,517],[818,1,1,517,518],[821,1,1,518,519],[822,3,2,519,521],[824,1,1,521,522],[837,1,1,522,523],[844,2,1,523,524],[846,3,3,524,527],[848,3,3,527,530],[849,1,1,530,531]]],[26,2,2,531,533,[[858,1,1,531,532],[859,1,1,532,533]]],[27,2,2,533,535,[[866,1,1,533,534],[868,1,1,534,535]]],[28,3,2,535,537,[[876,2,1,535,536],[878,1,1,536,537]]],[29,7,7,537,544,[[880,1,1,537,538],[882,1,1,538,539],[885,2,2,539,541],[886,2,2,541,543],[887,1,1,543,544]]],[31,3,3,544,547,[[889,3,3,544,547]]],[32,5,5,547,552,[[893,2,2,547,549],[894,2,2,549,551],[895,1,1,551,552]]],[35,2,2,552,554,[[907,2,2,552,554]]],[37,9,8,554,562,[[915,6,5,554,559],[924,3,3,559,562]]],[38,5,5,562,567,[[925,1,1,562,563],[926,3,3,563,566],[927,1,1,566,567]]]],[53,68,69,217,222,305,310,316,367,378,407,477,500,501,523,596,598,599,695,702,788,795,820,822,823,886,925,984,995,1002,1115,1158,1234,1267,1270,1273,1280,1285,1301,1305,1341,1375,1377,1381,1455,1501,1530,1702,1708,1742,1756,1758,1841,1842,1859,1872,1877,1881,1894,1900,1921,1997,2198,2451,2858,2863,2874,2880,2890,2914,2916,2999,3043,3051,3111,3113,3143,3165,3168,3171,3200,3204,3235,3242,3482,3540,3551,3568,3747,3762,3767,3771,3774,3776,3821,3822,3836,3844,3934,3938,3963,4111,4116,4122,4135,4143,4200,4215,4222,4239,4291,4303,4357,4591,4685,4723,4740,4818,4828,4829,4897,4987,4993,5012,5026,5048,5056,5078,5087,5111,5161,5163,5230,5286,5294,5324,5368,5382,5383,5400,5415,5484,5575,5588,5593,5611,5669,5672,5688,5693,5698,5703,5708,5719,5737,5739,5740,5747,5749,5750,5752,5758,5764,5785,5787,5802,5804,5811,5817,5843,5864,5903,5916,5975,5996,6057,6113,6123,6156,6161,6177,6182,6222,6273,6307,6313,6321,6329,6337,6344,6352,6360,6369,6450,6473,6475,6503,6536,6547,6667,6708,6727,6907,6935,6936,6940,6947,7035,7047,7048,7054,7057,7066,7105,7146,7154,7197,7202,7260,7303,7304,7340,7397,7447,7480,7546,7553,7732,7733,7802,7888,7892,8039,8055,8179,8199,8201,8207,8208,8262,8291,8297,8329,8333,8334,8369,8375,8456,8464,8518,8532,8547,8603,8670,8833,8834,8835,8838,8839,8842,8971,9039,9054,9059,9060,9119,9147,9233,9594,9615,9616,9639,9651,9702,9707,9732,9768,9782,9790,9793,10049,10054,10092,10093,10094,10095,10104,10168,10192,10418,10692,10880,10882,10889,10937,11133,11178,11182,11205,11215,11316,11345,11346,11518,11519,11578,11594,11604,11642,11695,11720,11760,11800,11836,11853,11855,11874,11890,11895,11955,11986,12200,12224,12247,12250,12252,12254,12267,12398,12417,12549,12685,12689,12693,12698,12776,12860,12863,12891,12901,12902,12978,13099,13137,13268,13323,13330,13357,13662,13699,13722,13770,13783,13938,13998,14288,14361,14553,14588,14592,14649,14690,15036,15066,15145,15212,15417,15539,15775,15782,15892,15948,15954,16165,16543,17577,17624,17634,17645,17666,17713,17764,17836,17841,17846,17850,17854,17905,17954,18084,18085,18160,18176,18193,18224,18340,18345,18384,18385,18386,18387,18396,18471,18503,18514,18582,18594,18607,18615,18630,18634,18673,18694,18732,18740,18755,18821,18930,18975,18977,18982,19012,19035,19045,19055,19065,19078,19079,19156,19187,19199,19219,19228,19229,19232,19234,19279,19308,19342,19346,19349,19357,19381,19382,19415,19418,19419,19422,19427,19444,19446,19447,19449,19450,19462,19466,19530,19532,19543,19545,19549,19578,19581,19583,19584,19587,19592,19613,19615,19651,19717,19724,19734,19746,19753,19754,19759,19760,19762,19766,19767,19772,19773,19774,19779,19780,19803,19823,19871,19882,19884,19893,19897,19898,19899,19911,19912,19913,19918,19939,19943,19977,19985,19988,20014,20033,20039,20347,20375,20503,20504,20505,20551,20573,20657,20661,20791,20832,20922,20970,20971,21045,21396,21584,21633,21643,21646,21693,21699,21700,21731,22001,22023,22153,22188,22293,22352,22390,22422,22467,22470,22485,22489,22507,22538,22539,22541,22584,22587,22598,22605,22617,22815,22820,22939,22941,22942,22943,22944,23080,23083,23087,23098,23104,23107,23116,23130]]],["+",[9,9,[[0,2,2,0,2,[[14,1,1,0,1],[23,1,1,1,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[9,1,1,3,4,[[272,1,1,3,4]]],[13,1,1,4,5,[[382,1,1,4,5]]],[22,1,1,5,6,[[701,1,1,5,6]]],[25,1,1,6,7,[[804,1,1,6,7]]],[32,1,1,7,8,[[893,1,1,7,8]]],[38,1,1,8,9,[[926,1,1,8,9]]]],[378,599,3568,8179,11518,18085,20503,22587,23107]]],["Hereby",[4,4,[[0,2,2,0,2,[[41,2,2,0,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[5,1,1,3,4,[[189,1,1,3,4]]]],[1267,1285,4222,5903]]],["These",[3,3,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[12,1,1,2,3,[[341,1,1,2,3]]]],[2999,5294,10418]]],["This",[79,78,[[0,8,8,0,8,[[1,1,1,0,1],[8,2,2,1,3],[11,1,1,3,4],[16,1,1,4,5],[36,1,1,5,6],[41,1,1,6,7],[44,1,1,7,8]]],[1,1,1,8,9,[[61,1,1,8,9]]],[2,12,12,9,21,[[95,2,2,9,11],[96,2,2,11,13],[100,1,1,13,14],[101,1,1,14,15],[102,1,1,15,16],[103,3,3,16,19],[104,1,1,19,20],[106,1,1,20,21]]],[3,14,14,21,35,[[120,4,4,21,25],[121,1,1,25,26],[122,1,1,26,27],[123,2,2,27,29],[124,1,1,29,30],[132,1,1,30,31],[135,2,2,31,33],[147,1,1,33,34],[150,1,1,34,35]]],[4,1,1,35,36,[[186,1,1,35,36]]],[5,14,14,36,50,[[195,1,1,36,37],[199,3,3,37,40],[201,1,1,40,41],[202,1,1,41,42],[204,2,2,42,44],[205,6,6,44,50]]],[6,1,1,50,51,[[217,1,1,50,51]]],[11,2,2,51,53,[[318,1,1,51,52],[321,1,1,52,53]]],[13,1,1,53,54,[[368,1,1,53,54]]],[18,5,5,54,59,[[579,1,1,54,55],[595,1,1,55,56],[596,2,2,56,58],[609,1,1,58,59]]],[21,1,1,59,60,[[677,1,1,59,60]]],[22,5,5,60,65,[[692,1,1,60,61],[706,2,2,61,63],[728,1,1,63,64],[732,1,1,64,65]]],[23,1,1,65,66,[[782,1,1,65,66]]],[24,1,1,66,67,[[799,1,1,66,67]]],[25,5,5,67,72,[[806,1,1,67,68],[844,1,1,68,69],[846,1,1,69,70],[848,1,1,70,71],[849,1,1,71,72]]],[35,2,2,72,74,[[907,2,2,72,74]]],[37,5,4,74,78,[[915,4,3,74,77],[924,1,1,77,78]]]],[53,217,222,310,407,1115,1270,1375,1859,2858,2874,2914,2916,3043,3051,3111,3113,3143,3165,3200,3242,3747,3767,3771,3776,3821,3844,3934,3938,3963,4200,4291,4303,4685,4829,5843,6057,6156,6177,6182,6222,6273,6313,6321,6329,6337,6344,6352,6360,6369,6708,9702,9793,11215,15539,15892,15948,15954,16165,17634,17954,18176,18193,18673,18740,19898,20375,20551,21584,21643,21699,21731,22815,22820,22939,22942,22944,23087]]],["Thus",[4,4,[[2,1,1,0,1,[[105,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[11,2,2,2,4,[[317,1,1,2,3],[321,1,1,3,4]]]],[3204,8464,9651,9768]]],["her",[2,2,[[0,2,2,0,2,[[28,2,2,0,2]]]],[822,823]]],["herein",[1,1,[[0,1,1,0,1,[[33,1,1,0,1]]]],[1002]]],["herewith",[2,2,[[25,1,1,0,1,[[817,1,1,0,1]]],[38,1,1,1,2,[[927,1,1,1,2]]]],[20791,23130]]],["it",[5,5,[[3,1,1,0,1,[[130,1,1,0,1]]],[5,1,1,1,2,[[208,1,1,1,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[12,1,1,3,4,[[364,1,1,3,4]]],[25,1,1,4,5,[[822,1,1,4,5]]]],[4143,6450,7732,11133,20971]]],["like",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11853]]],["likewise",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6727]]],["made",[1,1,[[10,1,1,0,1,[[299,1,1,0,1]]]],[9054]]],["manner",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11890]]],["much",[1,1,[[13,1,1,0,1,[[393,1,1,0,1]]]],[11760]]],["one",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8839]]],["other",[2,2,[[10,2,2,0,2,[[293,2,2,0,2]]]],[8839,8842]]],["same",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20970]]],["she",[3,2,[[0,2,1,0,1,[[1,2,1,0,1]]],[21,1,1,1,2,[[676,1,1,1,2]]]],[53,17624]]],["so",[2,2,[[0,1,1,0,1,[[43,1,1,0,1]]],[6,1,1,1,2,[[229,1,1,1,2]]]],[1341,7048]]],["sort",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11178]]],["such",[6,6,[[4,2,2,0,2,[[165,1,1,0,1],[169,1,1,1,2]]],[6,1,1,2,3,[[229,1,1,2,3]]],[9,2,2,3,5,[[280,1,1,3,4],[285,1,1,4,5]]],[23,1,1,5,6,[[746,1,1,5,6]]]],[5286,5368,7054,8369,8547,18975]]],["that",[7,7,[[0,1,1,0,1,[[42,1,1,0,1]]],[4,1,1,1,2,[[156,1,1,1,2]]],[5,1,1,2,3,[[197,1,1,2,3]]],[6,1,1,3,4,[[211,1,1,3,4]]],[9,1,1,4,5,[[285,1,1,4,5]]],[13,1,1,5,6,[[400,1,1,5,6]]],[25,1,1,6,7,[[804,1,1,6,7]]]],[1305,5026,6123,6536,8518,11955,20504]]],["therefore",[1,1,[[13,1,1,0,1,[[385,1,1,0,1]]]],[11578]]],["these",[7,7,[[4,5,5,0,5,[[158,2,2,0,2],[163,1,1,2,3],[167,1,1,3,4],[171,1,1,4,5]]],[6,1,1,5,6,[[223,1,1,5,6]]],[9,1,1,6,7,[[273,1,1,6,7]]]],[5087,5111,5230,5324,5415,6907,8201]]],["thing",[4,4,[[8,1,1,0,1,[[239,1,1,0,1]]],[12,2,2,1,3,[[348,1,1,1,2],[358,1,1,2,3]]],[22,1,1,3,4,[[744,1,1,3,4]]]],[7304,10692,10937,18930]]],["this",[440,423,[[0,32,31,0,31,[[2,2,2,0,2],[11,2,2,2,4],[14,1,1,4,5],[18,1,1,5,6],[19,2,2,6,8],[20,2,1,8,9],[23,2,2,9,11],[25,2,2,11,13],[27,2,2,13,15],[28,2,2,15,17],[30,2,2,17,19],[33,2,2,19,21],[38,1,1,21,22],[40,1,1,22,23],[41,2,2,23,25],[42,1,1,25,26],[44,2,2,26,28],[47,1,1,28,29],[48,1,1,29,30],[49,1,1,30,31]]],[1,15,15,31,46,[[56,2,2,31,33],[57,1,1,33,34],[58,2,2,34,36],[61,2,2,36,38],[62,3,3,38,41],[63,1,1,41,42],[64,1,1,42,43],[66,1,1,43,44],[74,1,1,44,45],[81,1,1,45,46]]],[2,9,9,46,55,[[95,1,1,46,47],[96,2,2,47,49],[103,1,1,49,50],[104,1,1,50,51],[105,1,1,51,52],[114,1,1,52,53],[115,2,2,53,55]]],[3,16,16,55,71,[[120,1,1,55,56],[121,1,1,56,57],[122,1,1,57,58],[130,5,5,58,63],[132,2,2,63,65],[137,1,1,65,66],[144,1,1,66,67],[148,2,2,67,69],[150,2,2,69,71]]],[4,42,40,71,111,[[153,1,1,71,72],[155,2,2,72,74],[156,3,3,74,77],[157,2,2,77,79],[161,2,2,79,81],[169,2,2,81,83],[170,1,1,83,84],[174,1,1,84,85],[178,1,1,85,86],[179,3,3,86,89],[180,2,2,89,91],[181,6,5,91,96],[182,1,1,96,97],[183,9,8,97,105],[184,4,4,105,109],[185,2,2,109,111]]],[5,9,9,111,120,[[187,1,1,111,112],[190,1,1,112,113],[192,1,1,113,114],[197,1,1,114,115],[199,1,1,115,116],[204,1,1,116,117],[209,2,2,117,119],[210,1,1,119,120]]],[6,12,11,120,131,[[212,2,1,120,121],[216,1,1,121,122],[225,4,4,122,126],[229,2,2,126,128],[230,2,2,128,130],[231,1,1,130,131]]],[7,5,4,131,135,[[232,1,1,131,132],[233,1,1,132,133],[235,3,2,133,135]]],[8,12,12,135,147,[[237,1,1,135,136],[239,1,1,136,137],[241,1,1,137,138],[244,1,1,138,139],[246,1,1,139,140],[247,1,1,140,141],[249,2,2,141,143],[255,1,1,143,144],[257,1,1,144,145],[260,2,2,145,147]]],[9,17,16,147,163,[[267,1,1,147,148],[268,1,1,148,149],[273,4,3,149,152],[277,1,1,152,153],[278,2,2,153,155],[279,3,3,155,158],[280,1,1,158,159],[283,1,1,159,160],[285,1,1,160,161],[288,1,1,161,162],[289,1,1,162,163]]],[10,11,11,163,174,[[293,4,4,163,167],[297,1,1,167,168],[298,1,1,168,169],[299,2,2,169,171],[301,2,2,171,173],[304,1,1,173,174]]],[11,18,17,174,191,[[315,1,1,174,175],[316,3,3,175,178],[318,1,1,178,179],[320,1,1,179,180],[321,2,2,180,182],[330,2,2,182,184],[331,4,4,184,188],[332,2,1,188,189],[335,2,2,189,191]]],[12,4,4,191,195,[[354,3,3,191,194],[366,1,1,194,195]]],[13,15,15,195,210,[[367,1,1,195,196],[372,1,1,196,197],[373,2,2,197,199],[382,1,1,199,200],[386,2,2,200,202],[387,1,1,202,203],[390,1,1,203,204],[391,1,1,204,205],[395,1,1,205,206],[396,1,1,206,207],[397,1,1,207,208],[398,1,1,208,209],[401,1,1,209,210]]],[14,7,7,210,217,[[409,1,1,210,211],[410,1,1,211,212],[411,3,3,212,215],[412,2,2,215,217]]],[15,8,7,217,224,[[417,1,1,217,218],[418,1,1,218,219],[421,1,1,219,220],[425,5,4,220,224]]],[16,4,3,224,227,[[429,2,1,224,225],[434,2,2,225,227]]],[17,16,16,227,243,[[436,1,1,227,228],[437,2,2,228,230],[440,1,1,230,231],[445,1,1,231,232],[447,1,1,232,233],[452,1,1,233,234],[454,1,1,234,235],[455,1,1,235,236],[456,1,1,236,237],[468,1,1,237,238],[469,1,1,238,239],[470,1,1,239,240],[472,2,2,240,242],[477,1,1,242,243]]],[18,15,15,243,258,[[484,1,1,243,244],[504,1,1,244,245],[509,1,1,245,246],[518,1,1,246,247],[521,2,2,247,249],[526,1,1,249,250],[527,1,1,250,251],[550,1,1,251,252],[551,1,1,252,253],[555,1,1,253,254],[557,1,1,254,255],[569,1,1,255,256],[586,2,2,256,258]]],[19,1,1,258,259,[[633,1,1,258,259]]],[21,2,2,259,261,[[673,1,1,259,260],[678,1,1,260,261]]],[22,36,34,261,295,[[679,1,1,261,262],[681,1,1,262,263],[683,1,1,263,264],[687,4,4,264,268],[688,1,1,268,269],[690,1,1,269,270],[692,1,1,270,271],[701,1,1,271,272],[705,1,1,272,273],[706,1,1,273,274],[708,1,1,274,275],[714,3,2,275,277],[715,4,4,277,281],[716,2,1,281,282],[719,1,1,282,283],[720,1,1,283,284],[721,1,1,284,285],[723,1,1,285,286],[724,1,1,286,287],[725,1,1,287,288],[726,3,3,288,291],[729,1,1,291,292],[732,1,1,292,293],[734,1,1,293,294],[737,1,1,294,295]]],[23,92,87,295,382,[[746,2,2,295,297],[747,1,1,297,298],[748,3,3,298,301],[749,3,3,301,304],[752,1,1,304,305],[753,2,2,305,307],[754,1,1,307,308],[755,4,4,308,312],[757,1,1,312,313],[758,1,1,313,314],[760,4,4,314,318],[761,3,2,318,320],[763,4,4,320,324],[764,1,1,324,325],[765,5,5,325,330],[766,3,2,330,332],[768,2,2,332,334],[769,3,3,334,337],[770,7,6,337,343],[771,2,2,343,345],[773,1,1,345,346],[775,2,2,346,348],[776,13,12,348,360],[777,2,2,360,362],[778,2,2,362,364],[780,2,1,364,365],[781,3,3,365,368],[782,6,6,368,374],[783,1,1,374,375],[784,1,1,375,376],[786,3,3,376,379],[788,3,3,379,382]]],[24,1,1,382,383,[[798,1,1,382,383]]],[25,14,14,383,397,[[804,1,1,383,384],[807,1,1,384,385],[812,2,2,385,387],[818,1,1,387,388],[821,1,1,388,389],[822,1,1,389,390],[824,1,1,390,391],[837,1,1,391,392],[844,1,1,392,393],[846,2,2,393,395],[848,2,2,395,397]]],[26,2,2,397,399,[[858,1,1,397,398],[859,1,1,398,399]]],[27,2,2,399,401,[[866,1,1,399,400],[868,1,1,400,401]]],[28,3,2,401,403,[[876,2,1,401,402],[878,1,1,402,403]]],[29,6,6,403,409,[[882,1,1,403,404],[885,2,2,404,406],[886,2,2,406,408],[887,1,1,408,409]]],[31,3,3,409,412,[[889,3,3,409,412]]],[32,4,4,412,416,[[893,1,1,412,413],[894,2,2,413,415],[895,1,1,415,416]]],[37,4,4,416,420,[[915,2,2,416,418],[924,2,2,418,420]]],[38,3,3,420,423,[[925,1,1,420,421],[926,2,2,421,423]]]],[68,69,305,316,367,477,500,501,523,596,598,695,702,788,795,820,822,886,925,984,995,1158,1234,1273,1280,1301,1377,1381,1455,1501,1530,1702,1708,1742,1756,1758,1841,1842,1872,1877,1881,1894,1921,1997,2198,2451,2863,2880,2890,3168,3171,3235,3482,3540,3551,3774,3822,3836,4111,4116,4122,4135,4143,4215,4239,4357,4591,4723,4740,4818,4828,4897,4987,4993,5012,5026,5048,5056,5078,5161,5163,5382,5383,5400,5484,5575,5588,5593,5611,5669,5672,5688,5693,5698,5703,5708,5719,5737,5739,5740,5747,5749,5750,5752,5758,5785,5787,5802,5804,5811,5817,5864,5916,5975,6113,6161,6307,6473,6475,6503,6547,6667,6935,6936,6940,6947,7035,7047,7057,7066,7105,7146,7154,7197,7202,7260,7303,7340,7397,7447,7480,7546,7553,7733,7802,7888,7892,8039,8055,8199,8207,8208,8262,8291,8297,8329,8333,8334,8375,8456,8532,8603,8670,8833,8834,8835,8838,8971,9039,9059,9060,9119,9147,9233,9594,9615,9616,9639,9707,9732,9782,9790,10049,10054,10092,10093,10094,10095,10104,10168,10192,10880,10882,10889,11182,11205,11316,11345,11346,11519,11594,11604,11642,11695,11720,11800,11836,11855,11895,11986,12200,12224,12247,12250,12252,12254,12267,12398,12417,12549,12685,12689,12693,12698,12776,12860,12863,12891,12901,12902,12978,13099,13137,13268,13323,13330,13357,13662,13699,13722,13770,13783,13938,13998,14288,14361,14553,14588,14592,14649,14690,15036,15066,15145,15212,15417,15775,15782,16543,17577,17645,17666,17713,17764,17836,17841,17846,17850,17854,17905,17954,18084,18160,18176,18224,18340,18345,18384,18385,18386,18387,18396,18471,18503,18514,18582,18594,18607,18615,18630,18634,18694,18732,18755,18821,18977,18982,19012,19035,19045,19055,19065,19078,19079,19156,19187,19199,19219,19228,19229,19232,19234,19279,19308,19342,19346,19349,19357,19381,19382,19415,19418,19419,19422,19427,19444,19446,19447,19449,19450,19462,19466,19530,19532,19543,19545,19549,19578,19581,19583,19584,19587,19592,19613,19615,19651,19717,19724,19734,19746,19753,19754,19759,19760,19762,19766,19767,19772,19773,19774,19779,19780,19803,19823,19871,19882,19884,19893,19897,19899,19911,19912,19913,19918,19939,19943,19977,19985,19988,20014,20033,20039,20347,20505,20573,20657,20661,20832,20922,20970,21045,21396,21584,21633,21646,21693,21700,22001,22023,22153,22188,22293,22352,22422,22467,22470,22485,22489,22507,22538,22539,22541,22584,22598,22605,22617,22941,22943,23080,23083,23098,23104,23116]]],["thus",[12,9,[[1,1,1,0,1,[[63,1,1,0,1]]],[3,1,1,1,2,[[120,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[5,2,1,3,4,[[193,2,1,3,4]]],[9,3,1,4,5,[[283,3,1,4,5]]],[11,2,2,5,7,[[317,1,1,5,6],[321,1,1,6,7]]],[13,1,1,7,8,[[397,1,1,7,8]]],[29,1,1,8,9,[[880,1,1,8,9]]]],[1900,3762,5764,5996,8464,9651,9768,11874,22390]]]]},{"k":"H2064","v":[["endued",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[850]]]]},{"k":"H2065","v":[["dowry",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[850]]]]},{"k":"H2066","v":[["Zabad",[8,8,[[12,4,4,0,4,[[339,2,2,0,2],[344,1,1,2,3],[348,1,1,3,4]]],[13,1,1,4,5,[[390,1,1,4,5]]],[14,3,3,5,8,[[412,3,3,5,8]]]],[10342,10343,10556,10714,11703,12279,12285,12295]]]]},{"k":"H2067","v":[["Zabdi",[6,6,[[5,3,3,0,3,[[193,3,3,0,3]]],[12,2,2,3,5,[[345,1,1,3,4],[364,1,1,4,5]]],[15,1,1,5,6,[[423,1,1,5,6]]]],[5977,5993,5994,10594,11136,12605]]]]},{"k":"H2068","v":[["Zabdiel",[2,2,[[12,1,1,0,1,[[364,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[11111,12602]]]]},{"k":"H2069","v":[["Zebadiah",[9,9,[[12,5,5,0,5,[[345,2,2,0,2],[349,1,1,2,3],[363,1,1,3,4],[364,1,1,4,5]]],[13,2,2,5,7,[[383,1,1,5,6],[385,1,1,6,7]]],[14,2,2,7,9,[[410,1,1,7,8],[412,1,1,8,9]]]],[10590,10592,10727,11079,11116,11531,11587,12209,12272]]]]},{"k":"H2070","v":[["*",[2,2,[[20,1,1,0,1,[[668,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]]],[17494,17800]]],["flies",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17494]]],["fly",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17800]]]]},{"k":"H2071","v":[["Zabud",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8849]]]]},{"k":"H2072","v":[["Zabbud",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12215]]]]},{"k":"H2073","v":[["*",[5,5,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[18,1,1,2,3,[[526,1,1,2,3]]],[22,1,1,3,4,[[741,1,1,3,4]]],[34,1,1,4,5,[[905,1,1,4,5]]]],[8998,11284,14662,18881,22779]]],["+",[2,2,[[18,1,1,0,1,[[526,1,1,0,1]]],[22,1,1,1,2,[[741,1,1,1,2]]]],[14662,18881]]],["habitation",[2,2,[[13,1,1,0,1,[[372,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[11284,22779]]],["in",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[8998]]]]},{"k":"H2074","v":[["*",[44,42,[[0,4,4,0,4,[[29,1,1,0,1],[34,1,1,1,2],[45,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[3,10,9,5,14,[[117,3,3,5,8],[118,2,1,8,9],[123,1,1,9,10],[126,1,1,10,11],[129,1,1,11,12],[142,1,1,12,13],[150,1,1,13,14]]],[4,3,2,14,16,[[179,1,1,14,15],[185,2,1,15,16]]],[5,6,6,16,22,[[205,4,4,16,20],[207,2,2,20,22]]],[6,6,6,22,28,[[211,1,1,22,23],[214,2,2,23,25],[215,2,2,25,27],[216,1,1,27,28]]],[12,6,6,28,34,[[339,1,1,28,29],[343,2,2,29,31],[349,2,2,31,33],[364,1,1,33,34]]],[13,3,3,34,37,[[396,3,3,34,37]]],[18,1,1,37,38,[[545,1,1,37,38]]],[22,1,1,38,39,[[687,1,1,38,39]]],[25,3,3,39,42,[[849,3,3,39,42]]]],[850,1034,1400,1486,1535,3613,3634,3635,3665,3874,4004,4085,4515,4841,5598,5828,6331,6337,6348,6355,6388,6415,6539,6605,6609,6637,6641,6689,10307,10517,10531,10753,10760,11128,11837,11838,11845,14927,17830,21728,21729,21735]]],["+",[5,5,[[5,1,1,0,1,[[207,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[12,2,2,2,4,[[343,1,1,2,3],[349,1,1,3,4]]],[13,1,1,4,5,[[396,1,1,4,5]]]],[6415,6637,10531,10753,11838]]],["Zebulun",[39,37,[[0,4,4,0,4,[[29,1,1,0,1],[34,1,1,1,2],[45,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[3,10,9,5,14,[[117,3,3,5,8],[118,2,1,8,9],[123,1,1,9,10],[126,1,1,10,11],[129,1,1,11,12],[142,1,1,12,13],[150,1,1,13,14]]],[4,3,2,14,16,[[179,1,1,14,15],[185,2,1,15,16]]],[5,5,5,16,21,[[205,4,4,16,20],[207,1,1,20,21]]],[6,5,5,21,26,[[211,1,1,21,22],[214,2,2,22,24],[215,1,1,24,25],[216,1,1,25,26]]],[12,4,4,26,30,[[339,1,1,26,27],[343,1,1,27,28],[349,1,1,28,29],[364,1,1,29,30]]],[13,2,2,30,32,[[396,2,2,30,32]]],[18,1,1,32,33,[[545,1,1,32,33]]],[22,1,1,33,34,[[687,1,1,33,34]]],[25,3,3,34,37,[[849,3,3,34,37]]]],[850,1034,1400,1486,1535,3613,3634,3635,3665,3874,4004,4085,4515,4841,5598,5828,6331,6337,6348,6355,6388,6539,6605,6609,6641,6689,10307,10517,10760,11128,11837,11845,14927,17830,21728,21729,21735]]]]},{"k":"H2075","v":[["*",[4,3,[[3,1,1,0,1,[[142,1,1,0,1]]],[6,3,2,1,3,[[222,3,2,1,3]]]],[4516,6880,6881]]],["Zebulonite",[2,2,[[6,2,2,0,2,[[222,2,2,0,2]]]],[6880,6881]]],["Zebulun",[1,1,[[6,1,1,0,1,[[222,1,1,0,1]]]],[6881]]],["Zebulunites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4516]]]]},{"k":"H2076","v":[["*",[134,127,[[0,2,2,0,2,[[30,1,1,0,1],[45,1,1,1,2]]],[1,18,17,2,19,[[52,1,1,2,3],[54,3,3,3,6],[57,7,6,6,12],[62,1,1,12,13],[69,1,1,13,14],[71,1,1,14,15],[72,1,1,15,16],[73,1,1,16,17],[81,1,1,17,18],[83,1,1,18,19]]],[2,8,5,19,24,[[98,1,1,19,20],[106,3,2,20,22],[108,2,1,22,23],[111,2,1,23,24]]],[3,1,1,24,25,[[138,1,1,24,25]]],[4,12,12,25,37,[[164,2,2,25,27],[167,1,1,27,28],[168,4,4,28,32],[169,1,1,32,33],[170,1,1,33,34],[179,1,1,34,35],[184,1,1,35,36],[185,1,1,36,37]]],[5,1,1,37,38,[[194,1,1,37,38]]],[6,2,2,38,40,[[212,1,1,38,39],[226,1,1,39,40]]],[8,14,14,40,54,[[236,3,3,40,43],[237,3,3,43,46],[241,1,1,46,47],[245,1,1,47,48],[246,1,1,48,49],[250,2,2,49,51],[251,2,2,51,53],[263,1,1,53,54]]],[9,2,2,54,56,[[272,1,1,54,55],[281,1,1,55,56]]],[10,15,14,56,70,[[291,3,3,56,59],[293,3,3,59,62],[298,4,3,62,65],[301,1,1,65,66],[302,1,1,66,67],[303,1,1,67,68],[309,1,1,68,69],[312,1,1,69,70]]],[11,8,8,70,78,[[324,1,1,70,71],[326,1,1,71,72],[327,2,2,72,74],[328,1,1,74,75],[329,2,2,75,77],[335,1,1,77,78]]],[12,3,3,78,81,[[352,1,1,78,79],[358,1,1,79,80],[366,1,1,80,81]]],[13,14,13,81,94,[[371,1,1,81,82],[373,2,2,82,84],[377,1,1,84,85],[381,1,1,85,86],[384,1,1,86,87],[394,3,2,87,89],[396,1,1,89,90],[399,3,3,90,93],[400,1,1,93,94]]],[14,1,1,94,95,[[406,1,1,94,95]]],[15,2,2,95,97,[[416,1,1,95,96],[424,1,1,96,97]]],[18,9,9,97,106,[[481,1,1,97,98],[504,1,1,98,99],[527,2,2,99,101],[531,1,1,101,102],[583,2,2,102,104],[584,1,1,104,105],[593,1,1,105,106]]],[20,2,1,106,107,[[667,2,1,106,107]]],[22,3,3,107,110,[[735,1,1,107,108],[743,1,1,108,109],[744,1,1,109,110]]],[25,5,5,110,115,[[817,1,1,110,111],[821,1,1,111,112],[835,1,1,112,113],[840,2,2,113,115]]],[27,6,6,115,121,[[865,2,2,115,117],[869,1,1,117,118],[872,1,1,118,119],[873,1,1,119,120],[874,1,1,120,121]]],[31,2,2,121,123,[[889,1,1,121,122],[890,1,1,122,123]]],[34,1,1,123,124,[[903,1,1,123,124]]],[37,1,1,124,125,[[924,1,1,124,125]]],[38,2,2,125,127,[[925,2,2,125,127]]]],[927,1387,1597,1635,1640,1649,1718,1735,1736,1737,1738,1739,1882,2075,2133,2162,2182,2446,2511,2957,3240,3242,3286,3398,4415,5255,5261,5340,5344,5346,5347,5348,5365,5387,5592,5775,5829,6033,6550,6972,7215,7216,7233,7253,7255,7259,7346,7426,7460,7575,7581,7597,7600,7966,8170,8401,8726,8736,8742,8818,8819,8820,8990,9047,9048,9116,9183,9186,9408,9523,9853,9900,9929,9960,9967,10018,10019,10185,10817,10962,11185,11274,11328,11329,11430,11501,11544,11768,11787,11849,11924,11925,11930,11937,12112,12361,12667,13970,14291,14682,14691,14731,15688,15689,15721,15865,17477,18772,18900,18925,20782,20923,21316,21465,21467,22146,22147,22207,22242,22263,22268,22547,22557,22747,23089,23097,23103]]],["+",[13,13,[[1,1,1,0,1,[[57,1,1,0,1]]],[2,1,1,1,2,[[106,1,1,1,2]]],[4,2,2,2,4,[[168,2,2,2,4]]],[8,2,2,4,6,[[237,1,1,4,5],[250,1,1,5,6]]],[9,1,1,6,7,[[281,1,1,6,7]]],[10,2,2,7,9,[[298,1,1,7,8],[303,1,1,8,9]]],[11,1,1,9,10,[[335,1,1,9,10]]],[13,1,1,10,11,[[373,1,1,10,11]]],[18,1,1,11,12,[[583,1,1,11,12]]],[20,1,1,12,13,[[667,1,1,12,13]]]],[1736,3242,5347,5348,7259,7575,8401,9048,9186,10185,11329,15688,17477]]],["Offer",[2,2,[[18,2,2,0,2,[[481,1,1,0,1],[527,1,1,1,2]]]],[13970,14682]]],["kill",[3,3,[[4,2,2,0,2,[[164,2,2,0,2]]],[25,1,1,2,3,[[835,1,1,2,3]]]],[5255,5261,21316]]],["killed",[2,2,[[8,1,1,0,1,[[263,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[7966,11544]]],["offer",[15,12,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,6,3,1,4,[[106,2,1,1,2],[108,2,1,2,3],[111,2,1,3,4]]],[4,3,3,4,7,[[170,1,1,4,5],[179,1,1,5,6],[185,1,1,6,7]]],[6,1,1,7,8,[[226,1,1,7,8]]],[8,1,1,8,9,[[236,1,1,8,9]]],[18,2,2,9,11,[[504,1,1,9,10],[593,1,1,10,11]]],[22,1,1,11,12,[[735,1,1,11,12]]]],[2162,3240,3286,3398,5387,5592,5829,6972,7233,14291,15865,18772]]],["offered",[14,14,[[0,2,2,0,2,[[30,1,1,0,1],[45,1,1,1,2]]],[3,1,1,2,3,[[138,1,1,2,3]]],[8,2,2,3,5,[[236,1,1,3,4],[237,1,1,4,5]]],[10,3,3,5,8,[[298,2,2,5,7],[312,1,1,7,8]]],[12,1,1,8,9,[[352,1,1,8,9]]],[13,2,2,9,11,[[373,1,1,9,10],[381,1,1,10,11]]],[15,1,1,11,12,[[424,1,1,11,12]]],[25,1,1,12,13,[[821,1,1,12,13]]],[31,1,1,13,14,[[889,1,1,13,14]]]],[927,1387,4415,7216,7253,9047,9048,9523,10817,11328,11501,12667,20923,22547]]],["offereth",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14691]]],["offering",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11849]]],["sacrifice",[43,43,[[1,13,13,0,13,[[52,1,1,0,1],[54,3,3,1,4],[57,6,6,4,10],[62,1,1,10,11],[69,1,1,11,12],[83,1,1,12,13]]],[2,1,1,13,14,[[98,1,1,13,14]]],[4,3,3,14,17,[[167,1,1,14,15],[168,1,1,15,16],[169,1,1,16,17]]],[8,5,5,17,22,[[236,1,1,17,18],[245,1,1,18,19],[250,1,1,19,20],[251,2,2,20,22]]],[10,1,1,22,23,[[293,1,1,22,23]]],[11,3,3,23,26,[[326,1,1,23,24],[329,2,2,24,26]]],[13,3,3,26,29,[[377,1,1,26,27],[394,1,1,27,28],[399,1,1,28,29]]],[14,1,1,29,30,[[406,1,1,29,30]]],[15,1,1,30,31,[[416,1,1,30,31]]],[18,2,2,31,33,[[531,1,1,31,32],[584,1,1,32,33]]],[25,1,1,33,34,[[840,1,1,33,34]]],[27,5,5,34,39,[[865,2,2,34,36],[869,1,1,36,37],[873,1,1,37,38],[874,1,1,38,39]]],[31,1,1,39,40,[[890,1,1,39,40]]],[34,1,1,40,41,[[903,1,1,40,41]]],[37,1,1,41,42,[[924,1,1,41,42]]],[38,1,1,42,43,[[925,1,1,42,43]]]],[1597,1635,1640,1649,1718,1735,1736,1737,1738,1739,1882,2075,2511,2957,5340,5344,5365,7215,7426,7581,7597,7600,8820,9900,10018,10019,11430,11787,11925,12112,12361,14731,15721,21465,22146,22147,22207,22263,22268,22557,22747,23089,23097]]],["sacrificed",[28,28,[[1,2,2,0,2,[[73,1,1,0,1],[81,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[5,1,1,3,4,[[194,1,1,3,4]]],[6,1,1,4,5,[[212,1,1,4,5]]],[8,3,3,5,8,[[237,1,1,5,6],[241,1,1,6,7],[246,1,1,7,8]]],[9,1,1,8,9,[[272,1,1,8,9]]],[10,3,3,9,12,[[293,2,2,9,11],[301,1,1,11,12]]],[11,4,4,12,16,[[324,1,1,12,13],[327,2,2,13,15],[328,1,1,15,16]]],[12,2,2,16,18,[[358,1,1,16,17],[366,1,1,17,18]]],[13,6,6,18,24,[[371,1,1,18,19],[394,2,2,19,21],[399,2,2,21,23],[400,1,1,23,24]]],[18,1,1,24,25,[[583,1,1,24,25]]],[25,2,2,25,27,[[817,1,1,25,26],[840,1,1,26,27]]],[27,1,1,27,28,[[872,1,1,27,28]]]],[2182,2446,5775,6033,6550,7255,7346,7460,8170,8818,8819,9116,9853,9929,9960,9967,10962,11185,11274,11768,11787,11924,11930,11937,15689,20782,21467,22242]]],["sacrificedst",[1,1,[[4,1,1,0,1,[[168,1,1,0,1]]]],[5346]]],["sacrificeth",[5,5,[[1,1,1,0,1,[[71,1,1,0,1]]],[20,1,1,1,2,[[667,1,1,1,2]]],[22,2,2,2,4,[[743,1,1,2,3],[744,1,1,3,4]]],[38,1,1,4,5,[[925,1,1,4,5]]]],[2133,17477,18900,18925,23103]]],["sacrificing",[2,2,[[10,2,2,0,2,[[298,1,1,0,1],[302,1,1,1,2]]]],[8990,9183]]],["slain",[2,2,[[10,2,2,0,2,[[291,2,2,0,2]]]],[8736,8742]]],["slew",[2,2,[[10,2,2,0,2,[[291,1,1,0,1],[309,1,1,1,2]]]],[8726,9408]]]]},{"k":"H2077","v":[["*",[162,153,[[0,2,2,0,2,[[30,1,1,0,1],[45,1,1,1,2]]],[1,9,8,2,10,[[59,1,1,2,3],[61,1,1,3,4],[67,1,1,4,5],[72,1,1,5,6],[73,1,1,6,7],[78,1,1,7,8],[83,3,2,8,10]]],[2,35,32,10,42,[[92,4,4,10,14],[93,4,4,14,18],[96,15,13,18,31],[98,1,1,31,32],[99,1,1,32,33],[106,4,3,33,36],[108,2,2,36,38],[111,2,2,38,40],[112,2,2,40,42]]],[3,20,20,42,62,[[122,2,2,42,44],[123,13,13,44,57],[126,1,1,57,58],[131,3,3,58,61],[141,1,1,61,62]]],[4,6,6,62,68,[[164,3,3,62,65],[170,1,1,65,66],[184,1,1,66,67],[185,1,1,67,68]]],[5,5,5,68,73,[[208,5,5,68,73]]],[6,1,1,73,74,[[226,1,1,73,74]]],[8,17,15,74,89,[[236,1,1,74,75],[237,3,3,75,78],[238,1,1,78,79],[241,1,1,79,80],[244,2,2,80,82],[245,1,1,82,83],[246,1,1,83,84],[250,2,1,84,85],[251,3,2,85,87],[255,2,2,87,89]]],[9,1,1,89,90,[[281,1,1,89,90]]],[10,3,3,90,93,[[298,2,2,90,92],[302,1,1,92,93]]],[11,4,4,93,97,[[317,1,1,93,94],[322,2,2,94,96],[328,1,1,96,97]]],[12,2,1,97,98,[[366,2,1,97,98]]],[13,8,7,98,105,[[373,4,4,98,102],[395,2,1,102,103],[396,1,1,103,104],[399,1,1,104,105]]],[15,1,1,105,106,[[424,1,1,105,106]]],[18,11,11,106,117,[[481,1,1,106,107],[504,1,1,107,108],[517,1,1,108,109],[527,2,2,109,111],[528,3,3,111,114],[583,1,1,114,115],[584,1,1,115,116],[593,1,1,116,117]]],[19,5,5,117,122,[[634,1,1,117,118],[642,1,1,118,119],[644,1,1,119,120],[648,2,2,120,122]]],[20,1,1,122,123,[[663,1,1,122,123]]],[22,7,7,123,130,[[679,1,1,123,124],[697,1,1,124,125],[712,1,1,125,126],[721,2,2,126,128],[734,1,1,128,129],[735,1,1,129,130]]],[23,6,6,130,136,[[750,1,1,130,131],[751,2,2,131,133],[761,1,1,133,134],[777,1,1,134,135],[790,1,1,135,136]]],[25,7,6,136,142,[[821,1,1,136,137],[840,3,2,137,139],[841,1,1,139,140],[845,1,1,140,141],[847,1,1,141,142]]],[26,1,1,142,143,[[858,1,1,142,143]]],[27,5,5,143,148,[[864,1,1,143,144],[865,1,1,144,145],[867,1,1,145,146],[869,1,1,146,147],[870,1,1,147,148]]],[29,2,2,148,150,[[882,1,1,148,149],[883,1,1,149,150]]],[31,1,1,150,151,[[889,1,1,150,151]]],[35,2,2,151,153,[[906,2,2,151,153]]]],[927,1387,1802,1843,2011,2162,2182,2364,2511,2521,2779,2781,2784,2787,2805,2821,2826,2830,2890,2891,2892,2894,2895,2896,2897,2899,2900,2908,2911,2913,2916,2971,2991,3240,3242,3243,3286,3287,3390,3398,3421,3439,3840,3841,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3938,3998,4156,4158,4161,4473,5246,5251,5267,5387,5796,5829,6449,6452,6453,6454,6455,6972,7233,7253,7259,7269,7290,7346,7403,7404,7426,7460,7582,7598,7600,7736,7759,8401,9047,9048,9178,9664,9812,9817,9978,11185,11325,11328,11329,11336,11822,11849,11924,12667,13970,14291,14531,14673,14676,14707,14708,14710,15679,15721,15865,16589,16815,16874,16987,17011,17398,17665,18025,18309,18528,18529,18760,18772,19109,19140,19141,19383,19793,20055,20923,21465,21467,21519,21610,21679,22015,22132,22152,22173,22207,22212,22414,22448,22547,22794,22795]]],["+",[15,15,[[1,2,2,0,2,[[78,1,1,0,1],[83,1,1,1,2]]],[2,8,8,2,10,[[92,2,2,2,4],[93,1,1,4,5],[96,4,4,5,9],[99,1,1,9,10]]],[8,1,1,10,11,[[250,1,1,10,11]]],[19,2,2,11,13,[[634,1,1,11,12],[648,1,1,12,13]]],[25,1,1,13,14,[[840,1,1,13,14]]],[27,1,1,14,15,[[865,1,1,14,15]]]],[2364,2511,2781,2787,2830,2899,2908,2911,2913,2991,7582,16589,16987,21467,22152]]],["Sacrifice",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14531]]],["offer",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3287]]],["offerings",[5,5,[[1,1,1,0,1,[[73,1,1,0,1]]],[2,1,1,1,2,[[106,1,1,1,2]]],[5,1,1,2,3,[[208,1,1,2,3]]],[13,2,2,3,5,[[396,1,1,3,4],[399,1,1,4,5]]]],[2182,3240,6449,11849,11924]]],["sacrifice",[91,87,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,4,3,1,4,[[61,1,1,1,2],[72,1,1,2,3],[83,2,1,3,4]]],[2,23,22,4,26,[[92,2,2,4,6],[93,3,3,6,9],[96,11,10,9,19],[98,1,1,19,20],[106,1,1,20,21],[108,1,1,21,22],[111,2,2,22,24],[112,2,2,24,26]]],[3,18,18,26,44,[[122,2,2,26,28],[123,13,13,28,41],[131,3,3,41,44]]],[4,1,1,44,45,[[170,1,1,44,45]]],[5,1,1,45,46,[[208,1,1,45,46]]],[6,1,1,46,47,[[226,1,1,46,47]]],[8,12,11,47,58,[[236,1,1,47,48],[237,3,3,48,51],[238,1,1,51,52],[244,2,2,52,54],[251,3,2,54,56],[255,2,2,56,58]]],[10,3,3,58,61,[[298,2,2,58,60],[302,1,1,60,61]]],[11,3,3,61,64,[[317,1,1,61,62],[322,1,1,62,63],[328,1,1,63,64]]],[13,2,2,64,66,[[373,2,2,64,66]]],[18,3,3,66,69,[[527,1,1,66,67],[528,1,1,67,68],[593,1,1,68,69]]],[19,2,2,69,71,[[642,1,1,69,70],[648,1,1,70,71]]],[20,1,1,71,72,[[663,1,1,71,72]]],[22,3,3,72,75,[[697,1,1,72,73],[712,1,1,73,74],[735,1,1,74,75]]],[23,2,2,75,77,[[777,1,1,75,76],[790,1,1,76,77]]],[25,5,4,77,81,[[840,2,1,77,78],[841,1,1,78,79],[845,1,1,79,80],[847,1,1,80,81]]],[26,1,1,81,82,[[858,1,1,81,82]]],[27,2,2,82,84,[[864,1,1,82,83],[867,1,1,83,84]]],[31,1,1,84,85,[[889,1,1,84,85]]],[35,2,2,85,87,[[906,2,2,85,87]]]],[927,1843,2162,2521,2779,2784,2805,2821,2826,2890,2891,2892,2894,2895,2896,2897,2900,2908,2916,2971,3243,3286,3390,3398,3421,3439,3840,3841,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3938,4156,4158,4161,5387,6452,6972,7233,7253,7259,7269,7290,7403,7404,7598,7600,7736,7759,9047,9048,9178,9664,9812,9978,11329,11336,14673,14707,15865,16815,17011,17398,18025,18309,18772,19793,20055,21465,21519,21610,21679,22015,22132,22173,22547,22794,22795]]],["sacrifices",[49,47,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,2,2,1,3,[[59,1,1,1,2],[67,1,1,2,3]]],[2,2,2,3,5,[[106,2,2,3,5]]],[3,2,2,5,7,[[126,1,1,5,6],[141,1,1,6,7]]],[4,5,5,7,12,[[164,3,3,7,10],[184,1,1,10,11],[185,1,1,11,12]]],[5,3,3,12,15,[[208,3,3,12,15]]],[8,4,4,15,19,[[241,1,1,15,16],[245,1,1,16,17],[246,1,1,17,18],[250,1,1,18,19]]],[9,1,1,19,20,[[281,1,1,19,20]]],[11,1,1,20,21,[[322,1,1,20,21]]],[12,2,1,21,22,[[366,2,1,21,22]]],[13,4,3,22,25,[[373,2,2,22,24],[395,2,1,24,25]]],[15,1,1,25,26,[[424,1,1,25,26]]],[18,7,7,26,33,[[481,1,1,26,27],[504,1,1,27,28],[527,1,1,28,29],[528,2,2,29,31],[583,1,1,31,32],[584,1,1,32,33]]],[19,1,1,33,34,[[644,1,1,33,34]]],[22,4,4,34,38,[[679,1,1,34,35],[721,2,2,35,37],[734,1,1,37,38]]],[23,4,4,38,42,[[750,1,1,38,39],[751,2,2,39,41],[761,1,1,41,42]]],[25,1,1,42,43,[[821,1,1,42,43]]],[27,2,2,43,45,[[869,1,1,43,44],[870,1,1,44,45]]],[29,2,2,45,47,[[882,1,1,45,46],[883,1,1,46,47]]]],[1387,1802,2011,3240,3242,3998,4473,5246,5251,5267,5796,5829,6453,6454,6455,7346,7426,7460,7582,8401,9817,11185,11325,11328,11822,12667,13970,14291,14676,14708,14710,15679,15721,16874,17665,18528,18529,18760,19109,19140,19141,19383,20923,22207,22212,22414,22448]]]]},{"k":"H2078","v":[["Zebah",[12,9,[[6,11,8,0,8,[[218,11,8,0,8]]],[18,1,1,8,9,[[560,1,1,8,9]]]],[6724,6725,6726,6729,6731,6734,6737,6740,15252]]]]},{"k":"H2079","v":[["Zabbai",[2,2,[[14,1,1,0,1,[[412,1,1,0,1]]],[15,1,1,1,2,[[415,1,1,1,2]]]],[12280,12347]]]]},{"k":"H2080","v":[["Zebudah",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10201]]]]},{"k":"H2081","v":[["Zebina",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12295]]]]},{"k":"H2082","v":[["with",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[850]]]]},{"k":"H2083","v":[["Zebul",[6,5,[[6,6,5,0,5,[[219,6,5,0,5]]]],[6782,6784,6790,6792,6795]]]]},{"k":"H2084","v":[["gain",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21766]]]]},{"k":"H2085","v":[["husk",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3827]]]]},{"k":"H2086","v":[["*",[13,13,[[18,8,8,0,8,[[496,1,1,0,1],[563,1,1,1,2],[596,6,6,2,8]]],[19,1,1,8,9,[[648,1,1,8,9]]],[22,1,1,9,10,[[691,1,1,9,10]]],[23,1,1,10,11,[[787,1,1,10,11]]],[38,2,2,11,13,[[927,1,1,11,12],[928,1,1,12,13]]]],[14181,15298,15919,15949,15967,15976,15983,16020,17008,17917,19999,23135,23139]]],["+",[2,2,[[18,1,1,0,1,[[496,1,1,0,1]]],[38,1,1,1,2,[[927,1,1,1,2]]]],[14181,23135]]],["Proud",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17008]]],["proud",[10,10,[[18,7,7,0,7,[[563,1,1,0,1],[596,6,6,1,7]]],[22,1,1,7,8,[[691,1,1,7,8]]],[23,1,1,8,9,[[787,1,1,8,9]]],[38,1,1,9,10,[[928,1,1,9,10]]]],[15298,15919,15949,15967,15976,15983,16020,17917,19999,23139]]]]},{"k":"H2087","v":[["*",[11,11,[[4,2,2,0,2,[[169,1,1,0,1],[170,1,1,1,2]]],[8,1,1,2,3,[[252,1,1,2,3]]],[19,3,3,3,6,[[638,1,1,3,4],[640,1,1,4,5],[648,1,1,5,6]]],[23,3,3,6,9,[[793,1,1,6,7],[794,2,2,7,9]]],[25,1,1,9,10,[[808,1,1,9,10]]],[30,1,1,10,11,[[888,1,1,10,11]]]],[5376,5406,7646,16690,16757,17008,20143,20197,20198,20587,22513]]],["presumptuously",[2,2,[[4,2,2,0,2,[[169,1,1,0,1],[170,1,1,1,2]]]],[5376,5406]]],["pride",[6,6,[[8,1,1,0,1,[[252,1,1,0,1]]],[19,2,2,1,3,[[638,1,1,1,2],[640,1,1,2,3]]],[23,1,1,3,4,[[793,1,1,3,4]]],[25,1,1,4,5,[[808,1,1,4,5]]],[30,1,1,5,6,[[888,1,1,5,6]]]],[7646,16690,16757,20143,20587,22513]]],["proud",[3,3,[[19,1,1,0,1,[[648,1,1,0,1]]],[23,2,2,1,3,[[794,2,2,1,3]]]],[17008,20197,20198]]]]},{"k":"H2088","v":[["*",[1162,1046,[[0,86,82,0,82,[[4,2,2,0,2],[5,1,1,2,3],[6,2,2,3,5],[10,1,1,5,6],[14,1,1,6,7],[15,1,1,7,8],[16,3,3,8,11],[17,2,2,11,13],[18,3,3,13,16],[19,3,3,16,19],[20,2,2,19,21],[21,1,1,21,22],[23,2,2,22,24],[24,3,3,24,27],[25,2,2,27,29],[26,4,4,29,33],[27,5,3,33,36],[28,1,1,36,37],[29,1,1,37,38],[30,8,6,38,44],[31,5,5,44,49],[32,2,2,49,51],[33,1,1,51,52],[34,1,1,52,53],[36,4,4,53,57],[37,4,4,57,61],[38,2,2,61,63],[39,3,3,63,66],[40,1,1,66,67],[41,1,1,67,68],[42,2,2,68,70],[43,4,4,70,74],[44,1,1,74,75],[46,1,1,75,76],[47,3,3,76,79],[49,3,3,79,82]]],[1,90,73,82,155,[[50,1,1,82,83],[51,4,4,83,87],[52,6,4,87,91],[53,2,2,91,93],[54,3,2,93,95],[57,1,1,95,96],[58,2,2,96,98],[59,3,3,98,101],[60,2,1,101,102],[61,12,11,102,113],[62,5,4,113,117],[63,3,2,117,119],[64,1,1,119,120],[65,4,3,120,123],[66,4,3,123,126],[67,4,3,126,129],[68,1,1,129,130],[70,1,1,130,131],[71,1,1,131,132],[73,1,1,132,133],[74,2,1,133,134],[75,4,1,134,135],[78,2,2,135,137],[79,2,2,137,139],[81,8,7,139,146],[82,6,6,146,152],[84,1,1,152,153],[86,2,1,153,154],[87,2,1,154,155]]],[2,18,18,155,173,[[95,1,1,155,156],[97,2,2,156,158],[98,1,1,158,159],[100,4,4,159,163],[105,1,1,163,164],[106,1,1,164,165],[112,8,8,165,173]]],[3,68,64,173,237,[[123,12,12,173,185],[124,1,1,185,186],[125,1,1,186,187],[127,5,5,187,192],[129,2,2,192,194],[130,13,12,194,206],[134,2,2,206,208],[136,4,4,208,212],[137,1,1,212,213],[138,9,8,213,221],[139,4,2,221,223],[140,2,2,223,225],[143,1,1,225,226],[144,2,2,226,228],[145,1,1,228,229],[146,1,1,229,230],[148,2,2,230,232],[150,3,3,232,235],[151,1,1,235,236],[152,1,1,236,237]]],[4,75,73,237,310,[[153,4,4,237,241],[154,6,5,241,246],[155,5,5,246,251],[156,4,4,251,255],[157,3,3,255,258],[158,1,1,258,259],[160,4,4,259,263],[161,4,4,263,267],[162,2,2,267,269],[163,2,2,269,271],[165,1,1,271,272],[166,3,3,272,275],[167,3,3,275,278],[169,2,2,278,280],[170,1,1,280,281],[171,2,2,281,283],[173,2,2,283,285],[174,3,3,285,288],[176,2,2,288,290],[178,2,2,290,292],[179,1,1,292,293],[180,2,1,293,294],[181,7,7,294,301],[182,1,1,301,302],[183,4,4,302,306],[184,3,3,306,309],[186,1,1,309,310]]],[5,54,47,310,357,[[187,6,5,310,315],[188,4,4,315,319],[189,1,1,319,320],[190,3,3,320,323],[191,3,3,323,326],[192,3,2,326,328],[193,5,4,328,332],[194,6,4,332,336],[195,3,3,336,339],[196,1,1,339,340],[199,1,1,340,341],[200,4,3,341,344],[201,3,3,344,347],[202,1,1,347,348],[203,1,1,348,349],[204,1,1,349,350],[208,6,5,350,355],[209,2,2,355,357]]],[6,38,35,357,392,[[211,2,2,357,359],[212,1,1,359,360],[214,1,1,360,361],[215,1,1,361,362],[216,6,5,362,367],[217,2,1,367,368],[218,3,3,368,371],[219,3,3,371,374],[220,2,2,374,376],[221,1,1,376,377],[222,1,1,377,378],[223,2,2,378,380],[225,1,1,380,381],[226,1,1,381,382],[228,3,3,382,385],[229,3,3,385,388],[230,4,3,388,391],[231,1,1,391,392]]],[7,2,2,392,394,[[233,2,2,392,394]]],[8,92,80,394,474,[[236,2,2,394,396],[237,1,1,396,397],[239,1,1,397,398],[240,1,1,398,399],[241,2,2,399,401],[243,2,2,401,403],[244,4,4,403,407],[245,2,2,407,409],[246,1,1,409,410],[247,4,4,410,414],[249,6,5,414,419],[250,1,1,419,420],[251,3,3,420,423],[252,18,15,423,438],[253,1,1,438,439],[255,1,1,439,440],[256,5,3,440,443],[257,2,2,443,445],[258,2,1,445,446],[259,4,4,446,450],[260,5,5,450,455],[261,5,5,455,460],[262,1,1,460,461],[263,3,2,461,463],[264,8,5,463,468],[265,7,6,468,474]]],[9,43,39,474,513,[[267,1,1,474,475],[268,4,3,475,478],[269,1,1,478,479],[270,2,2,479,481],[272,1,1,481,482],[273,2,2,482,484],[277,4,3,484,487],[278,5,5,487,492],[279,1,1,492,493],[280,6,6,493,499],[281,2,2,499,501],[282,4,4,501,505],[283,1,1,505,506],[284,6,5,506,511],[285,2,1,511,512],[290,1,1,512,513]]],[10,81,73,513,586,[[291,2,2,513,515],[292,2,2,515,517],[293,6,5,517,522],[295,1,1,522,523],[296,1,1,523,524],[297,3,2,524,526],[298,13,12,526,538],[299,6,5,538,543],[300,5,3,543,546],[301,2,2,546,548],[302,9,8,548,556],[303,6,6,556,562],[304,5,5,562,567],[307,3,3,567,570],[308,3,3,570,573],[309,1,1,573,574],[310,7,7,574,581],[311,2,2,581,583],[312,4,3,583,586]]],[11,60,58,586,644,[[313,2,2,586,588],[314,1,1,588,589],[315,3,3,589,592],[316,3,3,592,595],[317,6,5,595,600],[318,5,5,600,605],[319,3,3,605,608],[320,5,5,608,613],[321,3,3,613,616],[322,1,1,616,617],[323,1,1,617,618],[326,1,1,618,619],[328,1,1,619,620],[329,4,4,620,624],[330,4,4,624,628],[331,3,3,628,631],[332,2,2,631,633],[333,2,2,633,635],[334,6,5,635,640],[335,4,4,640,644]]],[12,12,11,644,655,[[341,2,2,644,646],[342,1,1,646,647],[350,1,1,647,648],[354,2,2,648,650],[358,2,2,650,652],[359,2,1,652,653],[365,1,1,653,654],[366,1,1,654,655]]],[13,53,46,655,701,[[367,2,1,655,656],[371,1,1,656,657],[372,12,11,657,668],[373,6,5,668,673],[374,1,1,673,674],[375,4,2,674,676],[376,4,4,676,680],[377,1,1,680,681],[380,1,1,681,682],[384,4,3,682,685],[386,4,3,685,688],[387,1,1,688,689],[389,1,1,689,690],[391,1,1,690,691],[397,1,1,691,692],[398,1,1,692,693],[399,1,1,693,694],[400,6,6,694,700],[401,1,1,700,701]]],[14,10,9,701,710,[[405,1,1,701,702],[409,1,1,702,703],[411,5,4,703,707],[412,3,3,707,710]]],[15,21,18,710,728,[[413,1,1,710,711],[414,3,3,711,714],[417,7,5,714,719],[418,3,2,719,721],[421,4,4,721,725],[425,3,3,725,728]]],[16,12,10,728,738,[[426,1,1,728,729],[427,1,1,729,730],[428,1,1,730,731],[429,3,2,731,733],[430,1,1,733,734],[431,1,1,734,735],[432,3,2,735,737],[433,1,1,737,738]]],[17,26,22,738,760,[[436,6,3,738,741],[437,1,1,741,742],[444,1,1,742,743],[449,1,1,743,744],[450,1,1,744,745],[453,1,1,745,746],[454,2,2,746,748],[455,1,1,748,749],[456,2,2,749,751],[462,2,2,751,753],[463,2,2,753,755],[471,1,1,755,756],[473,4,3,756,759],[477,1,1,759,760]]],[18,21,20,760,780,[[501,3,3,760,763],[502,1,1,763,764],[511,1,1,764,765],[525,1,1,765,766],[526,1,1,766,767],[533,1,1,767,768],[545,1,1,768,769],[551,1,1,769,770],[552,3,2,770,772],[555,1,1,772,773],[564,2,2,773,775],[581,3,3,775,778],[595,2,2,778,780]]],[19,3,3,780,783,[[644,1,1,780,781],[650,1,1,781,782],[651,1,1,782,783]]],[20,37,30,783,813,[[659,2,2,783,785],[660,7,7,785,792],[661,2,1,792,793],[662,3,3,793,796],[663,1,1,796,797],[664,4,3,797,800],[665,8,6,800,806],[666,3,3,806,809],[667,3,2,809,811],[669,3,1,811,812],[670,1,1,812,813]]],[21,4,3,813,816,[[672,2,2,813,815],[675,2,1,815,816]]],[22,57,50,816,866,[[684,5,4,816,820],[686,4,4,820,824],[687,1,1,824,825],[692,3,3,825,828],[694,1,1,828,829],[695,1,1,829,830],[698,1,1,830,831],[699,1,1,831,832],[700,2,2,832,834],[701,1,1,834,835],[702,1,1,835,836],[703,5,4,836,840],[704,1,1,840,841],[705,1,1,841,842],[706,2,2,842,844],[707,4,4,844,848],[708,3,3,848,851],[714,3,3,851,854],[715,3,3,854,857],[716,2,1,857,858],[717,1,1,858,859],[722,3,1,859,860],[734,1,1,860,861],[736,3,2,861,863],[741,2,1,863,864],[744,2,2,864,866]]],[23,128,118,866,984,[[745,1,1,866,867],[746,1,1,867,868],[747,1,1,868,869],[748,2,2,869,871],[749,5,4,871,875],[750,4,4,875,879],[751,12,12,879,891],[752,1,1,891,892],[753,2,2,892,894],[754,1,1,894,895],[755,3,3,895,898],[757,4,3,898,901],[758,4,4,901,905],[759,2,2,905,907],[760,6,5,907,912],[762,1,1,912,913],[763,7,6,913,919],[765,1,1,919,920],[766,9,8,920,928],[767,4,4,928,932],[768,1,1,932,933],[769,4,3,933,936],[770,6,6,936,942],[771,2,2,942,944],[773,3,3,944,947],[774,1,1,947,948],[775,1,1,948,949],[776,7,5,949,954],[777,4,4,954,958],[779,2,2,958,960],[780,3,3,960,963],[781,1,1,963,964],[782,5,3,964,967],[784,3,3,967,970],[786,1,1,970,971],[788,6,6,971,977],[790,1,1,977,978],[793,1,1,978,979],[794,2,2,979,981],[795,2,2,981,983],[796,1,1,983,984]]],[24,3,3,984,987,[[798,1,1,984,985],[799,1,1,985,986],[801,1,1,986,987]]],[25,28,23,987,1010,[[802,1,1,987,988],[803,1,1,988,989],[809,1,1,989,990],[813,3,3,990,993],[817,1,1,993,994],[819,2,2,994,996],[821,1,1,996,997],[825,2,1,997,998],[841,1,1,998,999],[842,2,2,999,1001],[844,1,1,1001,1002],[845,1,1,1002,1003],[846,3,2,1003,1005],[847,1,1,1005,1006],[848,5,3,1006,1009],[849,2,1,1009,1010]]],[26,6,5,1010,1015,[[850,1,1,1010,1011],[858,2,2,1011,1013],[859,3,2,1013,1015]]],[29,4,4,1015,1019,[[881,1,1,1015,1016],[882,1,1,1016,1017],[883,2,2,1017,1019]]],[30,1,1,1019,1020,[[888,1,1,1019,1020]]],[31,4,4,1020,1024,[[889,3,3,1020,1023],[892,1,1,1023,1024]]],[32,2,2,1024,1026,[[894,1,1,1024,1025],[897,1,1,1025,1026]]],[35,1,1,1026,1027,[[906,1,1,1026,1027]]],[36,11,9,1027,1036,[[909,2,2,1027,1029],[910,9,7,1029,1036]]],[37,11,10,1036,1046,[[911,1,1,1036,1037],[913,1,1,1037,1038],[914,2,2,1038,1040],[915,2,1,1040,1041],[917,2,2,1041,1043],[918,3,3,1043,1046]]]],[106,134,152,160,172,272,364,389,418,420,423,437,449,470,471,478,505,506,508,539,543,563,600,649,680,688,690,703,725,747,748,751,763,789,790,793,828,861,874,911,914,921,924,925,930,938,947,957,960,968,975,994,1028,1089,1093,1100,1105,1140,1141,1142,1147,1158,1160,1184,1186,1190,1233,1267,1300,1319,1329,1331,1339,1353,1364,1446,1460,1466,1469,1517,1526,1531,1550,1560,1563,1569,1574,1582,1591,1594,1600,1603,1618,1654,1655,1733,1747,1748,1783,1784,1794,1807,1818,1819,1822,1824,1828,1830,1833,1840,1857,1858,1867,1870,1872,1875,1886,1901,1909,1922,1950,1963,1979,1986,1987,1995,2013,2017,2022,2027,2108,2122,2191,2214,2248,2337,2374,2395,2413,2439,2447,2453,2459,2461,2462,2469,2474,2477,2485,2486,2488,2490,2535,2612,2648,2869,2922,2951,2959,3001,3006,3018,3026,3231,3237,3408,3416,3423,3429,3430,3431,3432,3436,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3943,3968,4035,4036,4037,4038,4044,4092,4102,4110,4119,4121,4122,4123,4124,4127,4130,4137,4140,4143,4149,4266,4268,4315,4316,4321,4323,4342,4381,4392,4394,4399,4403,4405,4407,4408,4417,4445,4456,4460,4566,4580,4594,4615,4649,4733,4738,4822,4823,4825,4850,4885,4898,4923,4924,4927,4941,4945,4960,4963,4968,4989,5000,5001,5002,5003,5010,5024,5036,5042,5077,5081,5082,5110,5139,5141,5154,5155,5164,5169,5170,5184,5194,5201,5212,5213,5283,5297,5299,5302,5321,5329,5334,5369,5380,5387,5410,5426,5454,5467,5486,5490,5496,5543,5547,5575,5582,5594,5669,5683,5686,5699,5700,5703,5706,5707,5718,5730,5735,5744,5754,5805,5806,5807,5845,5853,5855,5857,5859,5862,5883,5886,5887,5889,5900,5913,5919,5932,5938,5943,5945,5964,5974,5983,5986,6001,6002,6024,6030,6031,6035,6049,6061,6064,6091,6167,6197,6199,6201,6206,6214,6265,6275,6287,6312,6429,6442,6443,6448,6457,6468,6469,6530,6535,6565,6613,6628,6668,6672,6678,6680,6683,6698,6720,6722,6728,6773,6783,6792,6815,6826,6866,6872,6890,6902,6948,6977,6996,7005,7017,7047,7048,7054,7063,7070,7071,7113,7156,7157,7238,7239,7274,7311,7324,7349,7351,7377,7380,7402,7408,7409,7412,7429,7445,7458,7462,7465,7468,7476,7512,7518,7537,7542,7553,7574,7603,7604,7607,7621,7628,7630,7635,7643,7644,7645,7648,7650,7651,7654,7655,7664,7665,7673,7684,7732,7781,7783,7787,7795,7800,7836,7845,7849,7855,7858,7872,7882,7886,7893,7894,7921,7922,7923,7926,7929,7936,7952,7960,7970,7971,7972,7973,7975,7986,7991,7993,7998,8002,8003,8025,8054,8055,8062,8119,8123,8128,8165,8186,8197,8270,8271,8284,8292,8298,8300,8307,8309,8337,8358,8359,8369,8371,8376,8377,8391,8395,8435,8438,8443,8444,8455,8496,8498,8500,8504,8505,8553,8695,8744,8747,8793,8796,8822,8825,8826,8827,8839,8885,8908,8942,8962,8993,9009,9012,9014,9015,9016,9018,9020,9023,9027,9028,9046,9054,9059,9064,9066,9072,9091,9098,9099,9118,9135,9157,9158,9160,9161,9170,9175,9178,9181,9187,9192,9196,9200,9217,9218,9220,9223,9224,9231,9232,9320,9338,9341,9348,9358,9378,9392,9415,9417,9420,9421,9432,9436,9447,9453,9456,9500,9504,9507,9535,9538,9573,9584,9592,9599,9619,9620,9646,9653,9654,9665,9667,9669,9683,9685,9692,9693,9706,9709,9716,9726,9732,9735,9736,9740,9749,9757,9767,9781,9795,9834,9903,9969,9995,10006,10017,10024,10043,10045,10046,10049,10064,10082,10090,10107,10115,10126,10134,10158,10161,10162,10164,10165,10168,10186,10187,10188,10426,10428,10454,10771,10868,10878,10941,10942,10965,11150,11180,11204,11277,11297,11300,11302,11303,11304,11306,11308,11311,11314,11315,11322,11336,11339,11340,11344,11345,11354,11382,11383,11401,11402,11404,11414,11418,11486,11561,11565,11568,11596,11599,11602,11634,11660,11713,11864,11884,11915,11954,11957,11958,11960,11961,11964,11985,12109,12184,12239,12240,12244,12252,12257,12265,12266,12307,12309,12311,12326,12392,12394,12395,12400,12401,12405,12406,12512,12521,12529,12543,12675,12677,12688,12720,12737,12761,12767,12773,12792,12796,12812,12813,12830,12885,12886,12887,12893,13080,13184,13220,13297,13300,13316,13355,13378,13380,13493,13494,13516,13524,13757,13795,13812,13817,13925,14247,14249,14251,14263,14394,14648,14661,14764,14908,15050,15078,15079,15167,15305,15307,15579,15596,15597,15889,15893,16889,17066,17091,17325,17332,17336,17343,17348,17352,17354,17356,17359,17378,17385,17389,17397,17407,17419,17422,17426,17435,17439,17443,17447,17456,17458,17467,17468,17472,17476,17478,17519,17536,17562,17563,17614,17772,17776,17778,17779,17813,17818,17819,17827,17845,17932,17944,17956,17982,17997,18035,18044,18066,18067,18090,18098,18124,18125,18127,18128,18131,18160,18175,18178,18204,18205,18206,18207,18229,18230,18238,18334,18336,18337,18355,18374,18382,18397,18418,18538,18765,18791,18792,18867,18923,18924,18956,19002,19027,19037,19038,19067,19072,19081,19087,19105,19108,19109,19110,19121,19122,19125,19126,19129,19130,19135,19139,19142,19144,19147,19152,19158,19184,19190,19220,19231,19233,19240,19276,19278,19291,19303,19304,19306,19310,19316,19335,19338,19339,19341,19345,19346,19390,19410,19411,19413,19414,19418,19419,19448,19455,19457,19458,19459,19465,19475,19482,19484,19490,19516,19517,19522,19529,19537,19547,19552,19573,19578,19581,19583,19584,19588,19597,19612,19645,19664,19667,19688,19714,19745,19751,19762,19768,19773,19785,19787,19791,19799,19837,19839,19843,19844,19849,19892,19899,19905,19916,19943,19944,19957,19993,20012,20016,20020,20032,20033,20039,20052,20146,20183,20210,20274,20275,20304,20348,20391,20459,20469,20495,20609,20690,20702,20703,20811,20851,20852,20924,21058,21478,21530,21548,21585,21601,21632,21637,21675,21686,21691,21694,21723,21751,21995,22003,22026,22032,22396,22411,22424,22441,22530,22539,22543,22545,22570,22606,22638,22791,22842,22844,22858,22862,22864,22869,22870,22873,22874,22890,22914,22928,22931,22939,22965,22967,22982,22987,22988]]],["+",[125,98,[[0,8,8,0,8,[[6,1,1,0,1],[15,1,1,1,2],[16,2,2,2,4],[17,1,1,4,5],[36,1,1,5,6],[41,1,1,6,7],[49,1,1,7,8]]],[1,27,18,8,26,[[51,2,2,8,10],[53,1,1,10,11],[59,1,1,11,12],[60,2,1,12,13],[61,2,2,13,15],[62,2,2,15,17],[66,2,1,17,18],[71,1,1,18,19],[74,2,1,19,20],[75,4,1,20,21],[81,2,1,21,22],[82,2,2,22,24],[86,2,1,24,25],[87,2,1,25,26]]],[2,2,2,26,28,[[112,2,2,26,28]]],[3,3,2,28,30,[[127,1,1,28,29],[138,2,1,29,30]]],[4,1,1,30,31,[[161,1,1,30,31]]],[5,7,5,31,36,[[188,1,1,31,32],[190,1,1,32,33],[191,1,1,33,34],[194,4,2,34,36]]],[6,3,3,36,39,[[216,1,1,36,37],[223,1,1,37,38],[230,1,1,38,39]]],[7,1,1,39,40,[[233,1,1,39,40]]],[8,10,7,40,47,[[244,2,2,40,42],[249,2,1,42,43],[252,2,1,43,44],[258,2,1,44,45],[260,1,1,45,46],[265,1,1,46,47]]],[9,7,6,47,53,[[267,1,1,47,48],[268,2,1,48,49],[278,1,1,49,50],[281,1,1,50,51],[284,1,1,51,52],[285,1,1,52,53]]],[10,9,7,53,60,[[300,4,2,53,55],[303,1,1,55,56],[304,2,2,56,58],[307,1,1,58,59],[311,1,1,59,60]]],[11,5,5,60,65,[[313,1,1,60,61],[315,1,1,61,62],[317,1,1,62,63],[320,2,2,63,65]]],[13,7,5,65,70,[[367,1,1,65,66],[375,4,2,66,68],[384,1,1,68,69],[391,1,1,69,70]]],[14,1,1,70,71,[[405,1,1,70,71]]],[15,2,2,71,73,[[414,1,1,71,72],[425,1,1,72,73]]],[16,2,1,73,74,[[432,2,1,73,74]]],[17,6,5,74,79,[[437,1,1,74,75],[463,2,2,75,77],[473,3,2,77,79]]],[18,1,1,79,80,[[552,1,1,79,80]]],[19,1,1,80,81,[[644,1,1,80,81]]],[20,4,4,81,85,[[664,1,1,81,82],[665,1,1,82,83],[666,1,1,83,84],[669,1,1,84,85]]],[22,1,1,85,86,[[684,1,1,85,86]]],[23,3,3,86,89,[[750,1,1,86,87],[767,1,1,87,88],[782,1,1,88,89]]],[25,11,7,89,96,[[819,1,1,89,90],[841,1,1,90,91],[846,3,2,91,93],[848,4,2,93,95],[849,2,1,95,96]]],[31,1,1,96,97,[[889,1,1,96,97]]],[37,2,1,97,98,[[915,2,1,97,98]]]],[172,389,420,423,437,1100,1267,1531,1563,1569,1603,1794,1807,1857,1867,1870,1886,1995,2122,2214,2248,2453,2474,2488,2612,2648,3416,3423,4044,4399,5169,5886,5913,5945,6024,6035,6672,6890,7070,7157,7409,7412,7512,7621,7836,7872,7991,8025,8062,8309,8391,8500,8553,9098,9099,9196,9224,9231,9320,9456,9535,9584,9669,9735,9736,11204,11382,11383,11565,11713,12109,12311,12675,12812,12893,13516,13524,13812,13817,15079,16889,17422,17447,17472,17519,17772,19105,19516,19905,20851,21478,21632,21637,21686,21691,21723,22539,22939]]],["He",[2,2,[[9,2,2,0,2,[[284,2,2,0,2]]]],[8504,8505]]],["One",[2,2,[[17,1,1,0,1,[[456,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[13378,18538]]],["These",[4,4,[[2,2,2,0,2,[[100,2,2,0,2]]],[4,1,1,2,3,[[166,1,1,2,3]]],[17,1,1,3,4,[[454,1,1,3,4]]]],[3006,3026,5299,13300]]],["This",[86,85,[[0,12,12,0,12,[[4,2,2,0,2],[14,1,1,2,3],[19,1,1,3,4],[30,3,3,4,7],[31,1,1,7,8],[37,1,1,8,9],[39,2,2,9,11],[49,1,1,11,12]]],[1,7,7,12,19,[[51,1,1,12,13],[61,1,1,13,14],[65,2,2,14,16],[79,2,2,16,18],[84,1,1,18,19]]],[2,4,4,19,23,[[95,1,1,19,20],[97,1,1,20,21],[98,1,1,21,22],[106,1,1,22,23]]],[3,4,4,23,27,[[134,1,1,23,24],[144,1,1,24,25],[146,1,1,25,26],[152,1,1,26,27]]],[4,3,3,27,30,[[154,1,1,27,28],[173,1,1,28,29],[178,1,1,29,30]]],[5,4,4,30,34,[[187,1,1,30,31],[189,1,1,31,32],[195,1,1,32,33],[201,1,1,33,34]]],[6,2,1,34,35,[[217,2,1,34,35]]],[8,4,4,35,39,[[243,1,1,35,36],[252,1,1,36,37],[261,1,1,37,38],[265,1,1,38,39]]],[10,2,2,39,41,[[293,1,1,39,40],[303,1,1,40,41]]],[11,6,6,41,47,[[315,1,1,41,42],[318,1,1,42,43],[323,1,1,43,44],[331,2,2,44,46],[332,1,1,46,47]]],[12,1,1,47,48,[[359,1,1,47,48]]],[13,1,1,48,49,[[389,1,1,48,49]]],[15,1,1,49,50,[[421,1,1,49,50]]],[17,2,2,50,52,[[455,1,1,50,51],[462,1,1,51,52]]],[18,5,5,52,57,[[501,1,1,52,53],[511,1,1,53,54],[526,1,1,54,55],[595,2,2,55,57]]],[20,7,7,57,64,[[660,4,4,57,61],[662,2,2,61,63],[667,1,1,63,64]]],[21,1,1,64,65,[[675,1,1,64,65]]],[22,5,5,65,70,[[694,1,1,65,66],[695,1,1,66,67],[708,1,1,67,68],[715,2,2,68,70]]],[23,8,8,70,78,[[751,1,1,70,71],[757,2,2,71,73],[766,1,1,73,74],[770,3,3,74,77],[796,1,1,77,78]]],[25,5,5,78,83,[[813,1,1,78,79],[842,2,2,79,81],[845,1,1,81,82],[847,1,1,82,83]]],[36,1,1,83,84,[[909,1,1,83,84]]],[37,1,1,84,85,[[914,1,1,84,85]]]],[106,134,364,508,911,921,925,930,1147,1184,1190,1517,1560,1818,1963,1979,2395,2413,2535,2869,2922,2959,3237,4266,4580,4649,4885,4963,5467,5582,5859,5900,6049,6214,6698,7380,7664,7921,7998,8839,9187,9599,9693,9834,10064,10082,10107,10965,11660,12529,13355,13494,14247,14394,14661,15889,15893,17352,17354,17356,17359,17385,17389,17478,17614,17982,17997,18238,18355,18374,19147,19276,19291,19475,19581,19583,19588,20304,20690,21530,21548,21601,21675,22842,22928]]],["Thus",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[914]]],["another",[10,9,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]],[17,4,4,2,6,[[436,3,3,2,5],[456,1,1,5,6]]],[18,1,1,6,7,[[552,1,1,6,7]]],[22,3,2,7,9,[[684,1,1,7,8],[722,2,1,8,9]]]],[9500,11561,12885,12886,12887,13380,15078,17772,18538]]],["he",[8,8,[[1,1,1,0,1,[[64,1,1,0,1]]],[17,4,4,1,5,[[436,3,3,1,4],[477,1,1,4,5]]],[21,2,2,5,7,[[672,2,2,5,7]]],[24,1,1,7,8,[[799,1,1,7,8]]]],[1922,12885,12886,12887,13925,17562,17563,20391]]],["here",[12,10,[[1,1,1,0,1,[[73,1,1,0,1]]],[3,5,3,1,4,[[138,1,1,1,2],[139,4,2,2,4]]],[8,4,4,4,8,[[236,1,1,4,5],[244,1,1,5,6],[249,1,1,6,7],[256,1,1,7,8]]],[9,1,1,8,9,[[277,1,1,8,9]]],[22,1,1,9,10,[[699,1,1,9,10]]]],[2191,4394,4417,4445,7238,7402,7542,7781,8271,18044]]],["him",[2,2,[[8,1,1,0,1,[[256,1,1,0,1]]],[23,1,1,1,2,[[746,1,1,1,2]]]],[7783,19002]]],["himself",[1,1,[[8,1,1,0,1,[[264,1,1,0,1]]]],[7971]]],["it",[9,8,[[0,2,2,0,2,[[31,1,1,0,1],[32,1,1,1,2]]],[1,2,2,2,4,[[51,1,1,2,3],[54,1,1,3,4]]],[10,1,1,4,5,[[311,1,1,4,5]]],[16,2,1,5,6,[[429,2,1,5,6]]],[19,1,1,6,7,[[651,1,1,6,7]]],[29,1,1,7,8,[[883,1,1,7,8]]]],[957,975,1574,1654,9453,12767,17091,22441]]],["itself",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14908]]],["like",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]]],[8942,12406]]],["man",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1784]]],["now",[2,2,[[3,1,1,0,1,[[130,1,1,0,1]]],[11,1,1,1,2,[[313,1,1,1,2]]]],[4149,9538]]],["one",[8,8,[[1,1,1,0,1,[[63,1,1,0,1]]],[9,1,1,1,2,[[277,1,1,1,2]]],[10,1,1,2,3,[[312,1,1,2,3]]],[13,1,1,3,4,[[384,1,1,3,4]]],[17,1,1,4,5,[[449,1,1,4,5]]],[18,1,1,5,6,[[552,1,1,5,6]]],[20,2,2,6,8,[[661,1,1,6,7],[665,1,1,7,8]]]],[1909,8284,9500,11561,13184,15078,17378,17443]]],["other",[3,3,[[1,1,1,0,1,[[63,1,1,0,1]]],[20,2,2,1,3,[[661,1,1,1,2],[665,1,1,2,3]]]],[1909,17378,17443]]],["purpose",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19109]]],["same",[8,8,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,2,2,1,3,[[61,1,1,1,2],[68,1,1,2,3]]],[2,1,1,3,4,[[112,1,1,3,4]]],[5,1,1,4,5,[[192,1,1,4,5]]],[8,2,2,5,7,[[244,1,1,5,6],[252,1,1,6,7]]],[15,1,1,7,8,[[418,1,1,7,8]]]],[688,1822,2027,3408,5964,7408,7648,12405]]],["such",[6,6,[[4,2,2,0,2,[[157,1,1,0,1],[171,1,1,1,2]]],[11,3,3,2,5,[[318,1,1,2,3],[319,1,1,3,4],[335,1,1,4,5]]],[22,1,1,5,6,[[736,1,1,5,6]]]],[5082,5426,9683,9726,10187,18791]]],["that",[35,35,[[0,2,2,0,2,[[23,1,1,0,1],[26,1,1,1,2]]],[1,3,3,2,5,[[58,1,1,2,3],[61,1,1,3,4],[62,1,1,4,5]]],[2,4,4,5,9,[[105,1,1,5,6],[112,3,3,6,9]]],[4,4,4,9,13,[[155,1,1,9,10],[169,2,2,10,12],[184,1,1,12,13]]],[5,2,2,13,15,[[192,1,1,13,14],[203,1,1,14,15]]],[6,2,2,15,17,[[215,1,1,15,16],[218,1,1,16,17]]],[7,1,1,17,18,[[233,1,1,17,18]]],[8,1,1,18,19,[[252,1,1,18,19]]],[9,1,1,19,20,[[280,1,1,19,20]]],[10,3,3,20,23,[[304,1,1,20,21],[308,2,2,21,23]]],[11,1,1,23,24,[[316,1,1,23,24]]],[16,2,2,24,26,[[428,1,1,24,25],[433,1,1,25,26]]],[17,1,1,26,27,[[450,1,1,26,27]]],[18,1,1,27,28,[[502,1,1,27,28]]],[19,1,1,28,29,[[650,1,1,28,29]]],[20,2,2,29,31,[[660,1,1,29,30],[669,1,1,30,31]]],[23,3,3,31,34,[[769,1,1,31,32],[793,1,1,32,33],[794,1,1,33,34]]],[25,1,1,34,35,[[813,1,1,34,35]]]],[600,747,1748,1824,1875,3231,3430,3431,3432,5000,5369,5380,5806,5964,6287,6628,6722,7156,7630,8358,9232,9348,9358,9620,12761,12830,13220,14263,17066,17336,17519,19537,20146,20210,20702]]],["the",[2,2,[[8,1,1,0,1,[[253,1,1,0,1]]],[22,1,1,1,2,[[744,1,1,1,2]]]],[7684,18923]]],["then",[2,2,[[10,1,1,0,1,[[309,1,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]]],[9392,13080]]],["these",[24,23,[[0,2,2,0,2,[[26,1,1,0,1],[44,1,1,1,2]]],[1,1,1,2,3,[[82,1,1,2,3]]],[2,2,2,3,5,[[100,2,2,3,5]]],[3,5,5,5,10,[[130,1,1,5,6],[138,3,3,6,9],[140,1,1,9,10]]],[4,5,5,10,15,[[154,1,1,10,11],[160,2,2,11,13],[166,2,2,13,15]]],[5,2,2,15,17,[[200,1,1,15,16],[208,1,1,16,17]]],[6,1,1,17,18,[[230,1,1,17,18]]],[8,3,2,18,20,[[252,1,1,18,19],[264,2,1,19,20]]],[16,1,1,20,21,[[429,1,1,20,21]]],[37,2,2,21,23,[[911,1,1,21,22],[917,1,1,22,23]]]],[763,1364,2477,3001,3018,4130,4403,4407,4408,4456,4945,5139,5141,5297,5302,6197,6429,7071,7635,7970,12773,22890,22965]]],["this",[790,744,[[0,55,52,0,52,[[5,1,1,0,1],[6,1,1,1,2],[10,1,1,2,3],[16,1,1,3,4],[17,1,1,4,5],[18,3,3,5,8],[19,2,2,8,10],[20,2,2,10,12],[21,1,1,12,13],[23,1,1,13,14],[24,1,1,14,15],[25,2,2,15,17],[27,5,3,17,20],[28,1,1,20,21],[29,1,1,21,22],[30,4,3,22,25],[31,3,3,25,28],[32,1,1,28,29],[33,1,1,29,30],[34,1,1,30,31],[36,3,3,31,34],[37,3,3,34,37],[38,2,2,37,39],[39,1,1,39,40],[40,1,1,40,41],[42,2,2,41,43],[43,4,4,43,47],[46,1,1,47,48],[47,3,3,48,51],[49,1,1,51,52]]],[1,43,38,52,90,[[50,1,1,52,53],[52,6,4,53,57],[53,1,1,57,58],[54,2,2,58,60],[57,1,1,60,61],[58,1,1,61,62],[59,1,1,62,63],[61,7,6,63,69],[62,2,2,69,71],[63,1,1,71,72],[65,2,1,72,73],[66,2,2,73,75],[67,4,3,75,78],[70,1,1,78,79],[78,2,2,79,81],[81,6,6,81,87],[82,3,3,87,90]]],[2,3,3,90,93,[[97,1,1,90,91],[112,2,2,91,93]]],[3,50,49,93,142,[[123,12,12,93,105],[124,1,1,105,106],[125,1,1,106,107],[127,4,4,107,111],[129,2,2,111,113],[130,11,10,113,123],[134,1,1,123,124],[136,4,4,124,128],[137,1,1,128,129],[138,3,3,129,132],[140,1,1,132,133],[143,1,1,133,134],[144,1,1,134,135],[145,1,1,135,136],[148,2,2,136,138],[150,3,3,138,141],[151,1,1,141,142]]],[4,59,58,142,200,[[153,4,4,142,146],[154,4,4,146,150],[155,4,4,150,154],[156,4,4,154,158],[157,2,2,158,160],[158,1,1,160,161],[160,2,2,161,163],[161,3,3,163,166],[162,2,2,166,168],[163,2,2,168,170],[165,1,1,170,171],[167,3,3,171,174],[170,1,1,174,175],[171,1,1,175,176],[173,1,1,176,177],[174,3,3,177,180],[176,2,2,180,182],[178,1,1,182,183],[179,1,1,183,184],[180,2,1,184,185],[181,7,7,185,192],[182,1,1,192,193],[183,4,4,193,197],[184,2,2,197,199],[186,1,1,199,200]]],[5,37,35,200,235,[[187,5,4,200,204],[188,3,3,204,207],[190,2,2,207,209],[191,2,2,209,211],[192,1,1,211,212],[193,4,3,212,215],[194,2,2,215,217],[195,2,2,217,219],[196,1,1,219,220],[199,1,1,220,221],[200,3,3,221,224],[201,2,2,224,226],[202,1,1,226,227],[204,1,1,227,228],[208,5,5,228,233],[209,2,2,233,235]]],[6,28,27,235,262,[[211,2,2,235,237],[212,1,1,237,238],[214,1,1,238,239],[216,5,4,239,243],[218,1,1,243,244],[219,3,3,244,247],[220,2,2,247,249],[221,1,1,249,250],[222,1,1,250,251],[225,1,1,251,252],[226,1,1,252,253],[228,3,3,253,256],[229,3,3,256,259],[230,2,2,259,261],[231,1,1,261,262]]],[8,64,60,262,322,[[236,1,1,262,263],[237,1,1,263,264],[239,1,1,264,265],[240,1,1,265,266],[241,2,2,266,268],[243,1,1,268,269],[245,2,2,269,271],[246,1,1,271,272],[247,4,4,272,276],[249,3,3,276,279],[250,1,1,279,280],[251,3,3,280,283],[252,12,12,283,295],[255,1,1,295,296],[256,3,2,296,298],[257,2,2,298,300],[259,4,4,300,304],[260,4,4,304,308],[261,3,3,308,311],[262,1,1,311,312],[263,3,2,312,314],[264,5,4,314,318],[265,5,4,318,322]]],[9,31,30,322,352,[[268,2,2,322,324],[269,1,1,324,325],[270,2,2,325,327],[272,1,1,327,328],[273,2,2,328,330],[277,2,2,330,332],[278,4,4,332,336],[279,1,1,336,337],[280,5,5,337,342],[281,1,1,342,343],[282,4,4,343,347],[283,1,1,347,348],[284,3,2,348,350],[285,1,1,350,351],[290,1,1,351,352]]],[10,60,56,352,408,[[291,2,2,352,354],[292,2,2,354,356],[293,5,4,356,360],[295,1,1,360,361],[296,1,1,361,362],[297,2,2,362,364],[298,13,12,364,376],[299,6,5,376,381],[300,1,1,381,382],[301,2,2,382,384],[302,9,8,384,392],[303,4,4,392,396],[304,1,1,396,397],[307,2,2,397,399],[308,1,1,399,400],[310,7,7,400,407],[312,1,1,407,408]]],[11,44,42,408,450,[[314,1,1,408,409],[315,1,1,409,410],[316,2,2,410,412],[317,5,4,412,416],[318,3,3,416,419],[319,2,2,419,421],[320,3,3,421,424],[321,3,3,424,427],[322,1,1,427,428],[326,1,1,428,429],[328,1,1,429,430],[329,4,4,430,434],[330,4,4,434,438],[331,1,1,438,439],[332,1,1,439,440],[333,2,2,440,442],[334,6,5,442,447],[335,3,3,447,450]]],[12,11,11,450,461,[[341,2,2,450,452],[342,1,1,452,453],[350,1,1,453,454],[354,2,2,454,456],[358,2,2,456,458],[359,1,1,458,459],[365,1,1,459,460],[366,1,1,460,461]]],[13,43,40,461,501,[[367,1,1,461,462],[371,1,1,462,463],[372,12,11,463,474],[373,6,5,474,479],[374,1,1,479,480],[376,4,4,480,484],[377,1,1,484,485],[380,1,1,485,486],[384,1,1,486,487],[386,4,3,487,490],[387,1,1,490,491],[397,1,1,491,492],[398,1,1,492,493],[399,1,1,493,494],[400,6,6,494,500],[401,1,1,500,501]]],[14,9,8,501,509,[[409,1,1,501,502],[411,5,4,502,506],[412,3,3,506,509]]],[15,16,14,509,523,[[413,1,1,509,510],[414,2,2,510,512],[417,7,5,512,517],[418,1,1,517,518],[421,3,3,518,521],[425,2,2,521,523]]],[16,4,4,523,527,[[426,1,1,523,524],[430,1,1,524,525],[431,1,1,525,526],[432,1,1,526,527]]],[17,3,3,527,530,[[453,1,1,527,528],[471,1,1,528,529],[473,1,1,529,530]]],[18,9,9,530,539,[[501,2,2,530,532],[525,1,1,532,533],[533,1,1,533,534],[551,1,1,534,535],[555,1,1,535,536],[564,2,2,536,538],[581,1,1,538,539]]],[20,20,19,539,558,[[659,2,2,539,541],[660,2,2,541,543],[662,1,1,543,544],[663,1,1,544,545],[664,3,3,545,548],[665,5,5,548,553],[666,2,2,553,555],[667,2,1,555,556],[669,1,1,556,557],[670,1,1,557,558]]],[21,1,1,558,559,[[675,1,1,558,559]]],[22,44,41,559,600,[[684,3,3,559,562],[686,4,4,562,566],[687,1,1,566,567],[692,3,3,567,570],[698,1,1,570,571],[700,2,2,571,573],[701,1,1,573,574],[702,1,1,574,575],[703,5,4,575,579],[704,1,1,579,580],[705,1,1,580,581],[706,2,2,581,583],[707,4,4,583,587],[708,2,2,587,589],[714,3,3,589,592],[715,1,1,592,593],[716,2,1,593,594],[717,1,1,594,595],[734,1,1,595,596],[736,2,2,596,598],[741,2,1,598,599],[744,1,1,599,600]]],[23,112,104,600,704,[[745,1,1,600,601],[747,1,1,601,602],[748,2,2,602,604],[749,5,4,604,608],[750,2,2,608,610],[751,11,11,610,621],[752,1,1,621,622],[753,2,2,622,624],[754,1,1,624,625],[755,3,3,625,628],[757,2,2,628,630],[758,4,4,630,634],[759,2,2,634,636],[760,6,5,636,641],[762,1,1,641,642],[763,7,6,642,648],[765,1,1,648,649],[766,8,7,649,656],[767,3,3,656,659],[768,1,1,659,660],[769,3,3,660,663],[770,3,3,663,666],[771,2,2,666,668],[773,3,3,668,671],[774,1,1,671,672],[775,1,1,672,673],[776,7,5,673,678],[777,4,4,678,682],[779,2,2,682,684],[780,3,3,684,687],[781,1,1,687,688],[782,4,2,688,690],[784,3,3,690,693],[786,1,1,693,694],[788,6,6,694,700],[790,1,1,700,701],[794,1,1,701,702],[795,2,2,702,704]]],[24,2,2,704,706,[[798,1,1,704,705],[801,1,1,705,706]]],[25,11,10,706,716,[[802,1,1,706,707],[803,1,1,707,708],[809,1,1,708,709],[813,1,1,709,710],[817,1,1,710,711],[819,1,1,711,712],[821,1,1,712,713],[825,2,1,713,714],[844,1,1,714,715],[848,1,1,715,716]]],[26,6,5,716,721,[[850,1,1,716,717],[858,2,2,717,719],[859,3,2,719,721]]],[29,3,3,721,724,[[881,1,1,721,722],[882,1,1,722,723],[883,1,1,723,724]]],[30,1,1,724,725,[[888,1,1,724,725]]],[31,3,3,725,728,[[889,2,2,725,727],[892,1,1,727,728]]],[32,2,2,728,730,[[894,1,1,728,729],[897,1,1,729,730]]],[35,1,1,730,731,[[906,1,1,730,731]]],[36,10,8,731,739,[[909,1,1,731,732],[910,9,7,732,739]]],[37,5,5,739,744,[[913,1,1,739,740],[914,1,1,740,741],[918,3,3,741,744]]]],[152,160,272,418,449,470,471,478,505,506,539,543,563,649,690,703,725,789,790,793,828,861,874,924,925,938,947,960,968,994,1028,1089,1093,1105,1140,1141,1142,1158,1160,1186,1233,1300,1319,1329,1331,1339,1353,1446,1460,1466,1469,1526,1550,1582,1591,1594,1600,1618,1654,1655,1733,1747,1783,1819,1828,1830,1833,1840,1858,1870,1872,1901,1950,1986,1987,2013,2017,2022,2108,2337,2374,2439,2447,2459,2461,2462,2469,2485,2486,2490,2951,3429,3436,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3943,3968,4035,4036,4037,4038,4092,4102,4110,4119,4121,4122,4123,4124,4127,4137,4140,4143,4268,4315,4316,4321,4323,4342,4381,4392,4405,4460,4566,4594,4615,4733,4738,4822,4823,4825,4850,4898,4923,4924,4927,4941,4945,4960,4968,4989,5001,5002,5003,5010,5024,5036,5042,5077,5081,5110,5154,5155,5164,5170,5184,5194,5201,5212,5213,5283,5321,5329,5334,5387,5410,5454,5486,5490,5496,5543,5547,5575,5594,5669,5683,5686,5699,5700,5703,5706,5707,5718,5730,5735,5744,5754,5805,5807,5845,5853,5855,5857,5862,5883,5887,5889,5919,5932,5938,5943,5974,5983,6001,6002,6030,6031,6061,6064,6091,6167,6197,6199,6201,6206,6265,6275,6312,6429,6442,6443,6448,6457,6468,6469,6530,6535,6565,6613,6668,6678,6680,6683,6728,6773,6783,6792,6815,6826,6866,6872,6948,6977,6996,7005,7017,7047,7048,7054,7063,7070,7113,7239,7274,7311,7324,7349,7351,7377,7429,7445,7458,7462,7465,7468,7476,7518,7537,7553,7574,7603,7604,7607,7628,7635,7643,7644,7645,7650,7651,7654,7655,7664,7665,7673,7732,7783,7787,7795,7800,7845,7849,7855,7858,7882,7886,7893,7894,7922,7926,7929,7936,7952,7960,7970,7972,7973,7975,7986,7993,8002,8003,8054,8055,8119,8123,8128,8165,8186,8197,8270,8284,8292,8298,8300,8307,8337,8359,8369,8371,8376,8377,8395,8435,8438,8443,8444,8455,8496,8498,8553,8695,8744,8747,8793,8796,8822,8825,8826,8827,8885,8908,8942,8962,8993,9009,9012,9014,9015,9016,9018,9020,9023,9027,9028,9046,9054,9059,9064,9066,9072,9091,9118,9135,9157,9158,9160,9161,9170,9175,9178,9181,9192,9200,9217,9218,9220,9338,9341,9378,9415,9417,9420,9421,9432,9436,9447,9507,9573,9592,9619,9646,9653,9654,9665,9667,9685,9692,9706,9709,9716,9732,9740,9749,9757,9767,9781,9795,9903,9969,9995,10006,10017,10024,10043,10045,10046,10049,10090,10115,10126,10134,10158,10161,10162,10164,10165,10168,10186,10188,10426,10428,10454,10771,10868,10878,10941,10942,10965,11150,11180,11204,11277,11297,11300,11302,11303,11304,11306,11308,11311,11314,11315,11322,11336,11339,11340,11344,11345,11354,11401,11402,11404,11414,11418,11486,11568,11596,11599,11602,11634,11864,11884,11915,11954,11957,11958,11960,11961,11964,11985,12184,12239,12240,12244,12252,12257,12265,12266,12307,12309,12326,12392,12394,12395,12400,12401,12405,12512,12521,12543,12677,12688,12720,12792,12796,12813,13297,13757,13795,14249,14251,14648,14764,15050,15167,15305,15307,15596,17325,17332,17343,17348,17397,17407,17419,17422,17426,17435,17439,17447,17456,17458,17467,17468,17476,17519,17536,17614,17776,17778,17779,17813,17818,17819,17827,17845,17932,17944,17956,18035,18066,18067,18090,18098,18124,18125,18127,18128,18131,18160,18175,18178,18204,18205,18206,18207,18229,18230,18334,18336,18337,18382,18397,18418,18765,18791,18792,18867,18924,18956,19027,19037,19038,19067,19072,19081,19087,19108,19110,19121,19122,19125,19126,19129,19130,19135,19139,19142,19144,19152,19158,19184,19190,19220,19231,19233,19240,19276,19278,19303,19304,19306,19310,19316,19335,19338,19339,19341,19345,19346,19390,19410,19411,19413,19414,19418,19419,19448,19455,19457,19458,19459,19465,19482,19484,19490,19517,19522,19529,19537,19547,19552,19573,19578,19584,19597,19612,19645,19664,19667,19688,19714,19745,19751,19762,19768,19773,19785,19787,19791,19799,19837,19839,19843,19844,19849,19892,19899,19916,19943,19944,19957,19993,20012,20016,20020,20032,20033,20039,20052,20183,20274,20275,20348,20459,20469,20495,20609,20703,20811,20852,20924,21058,21585,21694,21751,21995,22003,22026,22032,22396,22411,22424,22530,22543,22545,22570,22606,22638,22791,22844,22858,22862,22864,22869,22870,22873,22874,22914,22931,22982,22987,22988]]],["those",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22967]]],["thou",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15597]]],["thus",[8,8,[[0,1,1,0,1,[[24,1,1,0,1]]],[5,1,1,1,2,[[193,1,1,1,2]]],[6,2,2,2,4,[[218,1,1,2,3],[223,1,1,3,4]]],[8,1,1,4,5,[[261,1,1,4,5]]],[10,1,1,5,6,[[304,1,1,5,6]]],[16,1,1,6,7,[[427,1,1,6,7]]],[17,1,1,7,8,[[462,1,1,7,8]]]],[680,5986,6720,6902,7923,9223,12737,13493]]],["very",[2,2,[[0,2,2,0,2,[[26,2,2,0,2]]]],[748,751]]],["way",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9504]]],["which",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15579]]],["whom",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13316]]]]},{"k":"H2089","v":[]},{"k":"H2090","v":[["*",[12,11,[[6,2,1,0,1,[[228,2,1,0,1]]],[9,1,1,1,2,[[277,1,1,1,2]]],[10,1,1,2,3,[[304,1,1,2,3]]],[11,1,1,3,4,[[318,1,1,3,4]]],[20,6,6,4,10,[[660,2,2,4,6],[663,2,2,6,8],[665,1,1,8,9],[667,1,1,9,10]]],[25,1,1,10,11,[[841,1,1,10,11]]]],[6997,8284,9223,9693,17335,17357,17413,17416,17452,17488,21522]]],["This",[3,3,[[20,2,2,0,2,[[660,1,1,0,1],[667,1,1,1,2]]],[25,1,1,2,3,[[841,1,1,2,3]]]],[17357,17488,21522]]],["Thus",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[6997]]],["another",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8284]]],["it",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17335]]],["this",[4,4,[[11,1,1,0,1,[[318,1,1,0,1]]],[20,3,3,1,4,[[663,2,2,1,3],[665,1,1,3,4]]]],[9693,17413,17416,17452]]],["thus",[2,2,[[6,1,1,0,1,[[228,1,1,0,1]]],[10,1,1,1,2,[[304,1,1,1,2]]]],[6997,9223]]]]},{"k":"H2091","v":[["*",[390,337,[[0,9,8,0,8,[[1,2,2,0,2],[12,1,1,2,3],[23,4,3,3,6],[40,1,1,6,7],[43,1,1,7,8]]],[1,105,88,8,96,[[52,1,1,8,9],[60,1,1,9,10],[61,1,1,10,11],[69,1,1,11,12],[74,17,15,12,27],[75,8,4,27,31],[77,17,16,31,47],[79,4,3,47,50],[80,1,1,50,51],[81,4,4,51,55],[84,4,3,55,58],[85,7,4,58,62],[86,20,17,62,79],[87,2,1,79,80],[88,15,14,80,94],[89,2,2,94,96]]],[2,1,1,96,97,[[97,1,1,96,97]]],[3,24,23,97,120,[[120,1,1,97,98],[123,15,14,98,112],[124,1,1,112,113],[138,1,1,113,114],[140,1,1,114,115],[147,5,5,115,120]]],[4,4,4,120,124,[[159,1,1,120,121],[160,1,1,121,122],[169,1,1,122,123],[181,1,1,123,124]]],[5,5,5,124,129,[[192,2,2,124,126],[193,2,2,126,128],[208,1,1,128,129]]],[6,3,2,129,131,[[218,3,2,129,131]]],[8,7,6,131,137,[[241,7,6,131,137]]],[9,6,6,137,143,[[267,1,1,137,138],[274,3,3,138,141],[278,1,1,141,142],[287,1,1,142,143]]],[10,44,33,143,176,[[296,11,7,143,150],[297,7,4,150,154],[299,3,3,154,157],[300,14,10,157,167],[302,1,1,167,168],[304,1,1,168,169],[305,3,3,169,172],[310,3,3,172,175],[312,1,1,175,176]]],[11,15,13,176,189,[[317,1,1,176,177],[319,1,1,177,178],[322,1,1,178,179],[324,2,2,179,181],[326,1,1,181,182],[328,1,1,182,183],[330,1,1,183,184],[332,1,1,184,185],[335,3,2,185,187],[336,1,1,187,188],[337,2,1,188,189]]],[12,24,17,189,206,[[355,3,3,189,192],[357,1,1,192,193],[358,1,1,193,194],[359,2,2,194,196],[365,9,5,196,201],[366,8,5,201,206]]],[13,49,41,206,247,[[367,1,1,206,207],[368,2,2,207,209],[369,9,7,209,216],[370,8,6,216,222],[371,1,1,222,223],[374,1,1,223,224],[375,16,12,224,236],[378,1,1,236,237],[379,2,2,237,239],[381,1,1,239,240],[382,2,2,240,242],[387,1,1,242,243],[390,1,1,243,244],[391,1,1,244,245],[398,1,1,245,246],[402,1,1,246,247]]],[14,13,12,247,259,[[403,5,5,247,252],[404,1,1,252,253],[410,7,6,253,259]]],[15,3,3,259,262,[[419,3,3,259,262]]],[16,6,6,262,268,[[426,2,2,262,264],[429,1,1,264,265],[430,1,1,265,266],[433,2,2,266,268]]],[17,9,9,268,277,[[438,1,1,268,269],[458,1,1,269,270],[463,4,4,270,274],[466,1,1,274,275],[472,1,1,275,276],[477,1,1,276,277]]],[18,8,8,277,285,[[496,1,1,277,278],[522,1,1,278,279],[549,1,1,279,280],[582,1,1,280,281],[592,1,1,281,282],[596,2,2,282,284],[612,1,1,284,285]]],[19,7,7,285,292,[[638,1,1,285,286],[644,1,1,286,287],[647,1,1,287,288],[649,1,1,288,289],[652,2,2,289,291],[654,1,1,291,292]]],[20,2,2,292,294,[[660,1,1,292,293],[670,1,1,293,294]]],[21,3,3,294,297,[[671,1,1,294,295],[673,1,1,295,296],[675,1,1,296,297]]],[22,11,11,297,308,[[680,2,2,297,299],[691,1,1,299,300],[708,1,1,300,301],[709,1,1,301,302],[717,1,1,302,303],[718,1,1,303,304],[724,1,1,304,305],[738,3,3,305,308]]],[23,6,5,308,313,[[748,1,1,308,309],[754,2,2,309,311],[795,1,1,311,312],[796,2,1,312,313]]],[24,1,1,313,314,[[800,1,1,313,314]]],[25,8,7,314,321,[[808,2,1,314,315],[817,2,2,315,317],[828,1,1,317,318],[829,2,2,318,320],[839,1,1,320,321]]],[26,3,3,321,324,[[860,3,3,321,324]]],[27,2,2,324,326,[[863,1,1,324,325],[869,1,1,325,326]]],[28,1,1,326,327,[[878,1,1,326,327]]],[33,1,1,327,328,[[901,1,1,327,328]]],[34,1,1,328,329,[[904,1,1,328,329]]],[35,1,1,329,330,[[906,1,1,329,330]]],[36,1,1,330,331,[[910,1,1,330,331]]],[37,6,5,331,336,[[914,3,2,331,333],[916,1,1,333,334],[923,1,1,334,335],[924,1,1,335,336]]],[38,1,1,336,337,[[927,1,1,336,337]]]],[41,42,320,613,626,644,1237,1332,1601,1808,1851,2074,2198,2206,2207,2208,2212,2213,2219,2220,2221,2223,2224,2226,2231,2233,2234,2241,2264,2267,2272,2298,2299,2301,2304,2306,2307,2308,2313,2315,2316,2317,2319,2320,2326,2327,2329,2385,2386,2387,2424,2440,2441,2462,2469,2536,2553,2563,2579,2600,2602,2604,2606,2607,2608,2610,2611,2615,2616,2617,2619,2620,2621,2626,2627,2628,2630,2631,2632,2657,2666,2667,2669,2670,2672,2677,2679,2680,2681,2683,2684,2689,2694,2702,2712,2733,2926,3754,3864,3870,3876,3882,3888,3894,3900,3906,3912,3918,3924,3930,3934,3936,3943,4393,4459,4686,4714,4715,4716,4718,5136,5150,5381,5696,5968,5973,5997,6000,6434,6743,6745,7335,7339,7342,7346,7348,7349,8046,8216,8219,8220,8316,8584,8916,8917,8918,8924,8926,8928,8931,8982,8983,8984,8985,9062,9065,9079,9081,9089,9090,9093,9095,9096,9097,9100,9101,9104,9179,9244,9264,9267,9268,9411,9413,9415,9528,9652,9715,9822,9863,9868,9910,9971,10038,10111,10198,10200,10215,10237,10897,10900,10901,10928,10959,10978,10980,11157,11158,11159,11160,11161,11166,11167,11168,11169,11171,11209,11218,11225,11233,11234,11235,11236,11237,11238,11239,11253,11254,11265,11266,11267,11268,11269,11364,11365,11373,11374,11377,11378,11379,11380,11381,11382,11384,11385,11388,11446,11461,11464,11508,11511,11512,11627,11691,11728,11902,11996,12020,12022,12025,12026,12027,12096,12226,12227,12228,12229,12231,12234,12490,12491,12492,12708,12709,12773,12781,12821,12832,12919,13429,13505,13510,13519,13521,13612,13791,13933,14178,14610,15015,15643,15834,15970,16025,16190,16710,16876,16969,17016,17124,17125,17190,17341,17529,17548,17581,17612,17692,17705,17923,18239,18257,18414,18439,18592,18827,18830,18838,19057,19205,19210,20219,20295,20421,20596,20775,20779,21143,21161,21170,21438,22044,22074,22079,22113,22198,22348,22708,22767,22805,22863,22924,22934,22958,23068,23082,23123]]],["+",[9,9,[[1,2,2,0,2,[[79,1,1,0,1],[86,1,1,1,2]]],[12,1,1,2,3,[[366,1,1,2,3]]],[17,1,1,3,4,[[463,1,1,3,4]]],[18,3,3,4,7,[[496,1,1,4,5],[549,1,1,5,6],[596,1,1,6,7]]],[19,1,1,7,8,[[649,1,1,7,8]]],[25,1,1,8,9,[[817,1,1,8,9]]]],[2385,2630,11168,13519,14178,15015,16025,17016,20779]]],["gold",[340,297,[[0,8,8,0,8,[[1,2,2,0,2],[12,1,1,2,3],[23,3,3,3,6],[40,1,1,6,7],[43,1,1,7,8]]],[1,94,80,8,88,[[52,1,1,8,9],[60,1,1,9,10],[61,1,1,10,11],[69,1,1,11,12],[74,16,14,12,26],[75,8,4,26,30],[77,15,15,30,45],[79,2,2,45,47],[80,1,1,47,48],[81,2,2,48,50],[84,4,3,50,53],[85,7,4,53,57],[86,19,17,57,74],[87,2,1,74,75],[88,13,12,75,87],[89,1,1,87,88]]],[3,12,12,88,100,[[123,4,4,88,92],[124,1,1,92,93],[138,1,1,93,94],[140,1,1,94,95],[147,5,5,95,100]]],[4,4,4,100,104,[[159,1,1,100,101],[160,1,1,101,102],[169,1,1,102,103],[181,1,1,103,104]]],[5,5,5,104,109,[[192,2,2,104,106],[193,2,2,106,108],[208,1,1,108,109]]],[6,1,1,109,110,[[218,1,1,109,110]]],[8,3,3,110,113,[[241,3,3,110,113]]],[9,6,6,113,119,[[267,1,1,113,114],[274,3,3,114,117],[278,1,1,117,118],[287,1,1,118,119]]],[10,44,33,119,152,[[296,11,7,119,126],[297,7,4,126,130],[299,3,3,130,133],[300,14,10,133,143],[302,1,1,143,144],[304,1,1,144,145],[305,3,3,145,148],[310,3,3,148,151],[312,1,1,151,152]]],[11,14,12,152,164,[[317,1,1,152,153],[319,1,1,153,154],[324,2,2,154,156],[326,1,1,156,157],[328,1,1,157,158],[330,1,1,158,159],[332,1,1,159,160],[335,3,2,160,162],[336,1,1,162,163],[337,2,1,163,164]]],[12,22,17,164,181,[[355,3,3,164,167],[357,1,1,167,168],[358,1,1,168,169],[359,2,2,169,171],[365,8,5,171,176],[366,7,5,176,181]]],[13,47,39,181,220,[[367,1,1,181,182],[368,2,2,182,184],[369,9,7,184,191],[370,7,5,191,196],[371,1,1,196,197],[374,1,1,197,198],[375,16,12,198,210],[378,1,1,210,211],[379,1,1,211,212],[381,1,1,212,213],[382,2,2,213,215],[387,1,1,215,216],[390,1,1,216,217],[391,1,1,217,218],[398,1,1,218,219],[402,1,1,219,220]]],[14,13,12,220,232,[[403,5,5,220,225],[404,1,1,225,226],[410,7,6,226,232]]],[15,3,3,232,235,[[419,3,3,232,235]]],[16,3,3,235,238,[[426,2,2,235,237],[433,1,1,237,238]]],[17,7,7,238,245,[[438,1,1,238,239],[458,1,1,239,240],[463,3,3,240,243],[466,1,1,243,244],[477,1,1,244,245]]],[18,5,5,245,250,[[522,1,1,245,246],[582,1,1,246,247],[592,1,1,247,248],[596,1,1,248,249],[612,1,1,249,250]]],[19,6,6,250,256,[[638,1,1,250,251],[644,1,1,251,252],[647,1,1,252,253],[652,2,2,253,255],[654,1,1,255,256]]],[20,1,1,256,257,[[660,1,1,256,257]]],[21,3,3,257,260,[[671,1,1,257,258],[673,1,1,258,259],[675,1,1,259,260]]],[22,11,11,260,271,[[680,2,2,260,262],[691,1,1,262,263],[708,1,1,263,264],[709,1,1,264,265],[717,1,1,265,266],[718,1,1,266,267],[724,1,1,267,268],[738,3,3,268,271]]],[23,5,4,271,275,[[748,1,1,271,272],[754,2,2,272,274],[796,2,1,274,275]]],[24,1,1,275,276,[[800,1,1,275,276]]],[25,7,6,276,282,[[808,2,1,276,277],[817,1,1,277,278],[828,1,1,278,279],[829,2,2,279,281],[839,1,1,281,282]]],[26,3,3,282,285,[[860,3,3,282,285]]],[27,2,2,285,287,[[863,1,1,285,286],[869,1,1,286,287]]],[28,1,1,287,288,[[878,1,1,287,288]]],[33,1,1,288,289,[[901,1,1,288,289]]],[34,1,1,289,290,[[904,1,1,289,290]]],[35,1,1,290,291,[[906,1,1,290,291]]],[36,1,1,291,292,[[910,1,1,291,292]]],[37,4,4,292,296,[[914,1,1,292,293],[916,1,1,293,294],[923,1,1,294,295],[924,1,1,295,296]]],[38,1,1,296,297,[[927,1,1,296,297]]]],[41,42,320,613,626,644,1237,1332,1601,1808,1851,2074,2198,2206,2207,2208,2212,2213,2219,2221,2223,2224,2226,2231,2233,2234,2241,2264,2267,2272,2298,2299,2301,2304,2306,2307,2308,2313,2315,2316,2317,2319,2320,2326,2329,2385,2387,2424,2462,2469,2536,2553,2563,2579,2600,2602,2604,2606,2607,2608,2610,2611,2615,2616,2617,2619,2620,2621,2626,2627,2628,2630,2631,2632,2657,2666,2667,2669,2670,2672,2677,2679,2680,2681,2683,2689,2694,2712,3864,3870,3934,3936,3943,4393,4459,4686,4714,4715,4716,4718,5136,5150,5381,5696,5968,5973,5997,6000,6434,6745,7339,7342,7346,8046,8216,8219,8220,8316,8584,8916,8917,8918,8924,8926,8928,8931,8982,8983,8984,8985,9062,9065,9079,9081,9089,9090,9093,9095,9096,9097,9100,9101,9104,9179,9244,9264,9267,9268,9411,9413,9415,9528,9652,9715,9863,9868,9910,9971,10038,10111,10198,10200,10215,10237,10897,10900,10901,10928,10959,10978,10980,11157,11158,11159,11160,11161,11166,11167,11168,11169,11171,11209,11218,11225,11233,11234,11235,11236,11237,11238,11239,11253,11254,11266,11267,11268,11269,11364,11365,11373,11374,11377,11378,11379,11380,11381,11382,11384,11385,11388,11446,11464,11508,11511,11512,11627,11691,11728,11902,11996,12020,12022,12025,12026,12027,12096,12226,12227,12228,12229,12231,12234,12490,12491,12492,12708,12709,12832,12919,13429,13505,13510,13521,13612,13933,14610,15643,15834,15970,16190,16710,16876,16969,17124,17125,17190,17341,17548,17581,17612,17692,17705,17923,18239,18257,18414,18439,18592,18827,18830,18838,19057,19205,19210,20295,20421,20596,20775,21143,21161,21170,21438,22044,22074,22079,22113,22198,22348,22708,22767,22805,22863,22924,22958,23068,23082,23123]]],["golden",[40,37,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,9,8,1,9,[[74,1,1,1,2],[77,2,1,2,3],[79,1,1,3,4],[81,2,2,4,6],[88,2,2,6,8],[89,1,1,8,9]]],[2,1,1,9,10,[[97,1,1,9,10]]],[3,12,12,10,22,[[120,1,1,10,11],[123,11,11,11,22]]],[6,2,2,22,24,[[218,2,2,22,24]]],[8,4,3,24,27,[[241,4,3,24,27]]],[11,1,1,27,28,[[322,1,1,27,28]]],[12,1,1,28,29,[[365,1,1,28,29]]],[13,2,2,29,31,[[370,1,1,29,30],[379,1,1,30,31]]],[16,3,3,31,34,[[429,1,1,31,32],[430,1,1,32,33],[433,1,1,33,34]]],[20,1,1,34,35,[[670,1,1,34,35]]],[23,1,1,35,36,[[795,1,1,35,36]]],[37,2,1,36,37,[[914,2,1,36,37]]]],[613,2220,2327,2386,2440,2441,2684,2702,2733,2926,3754,3876,3882,3888,3894,3900,3906,3912,3918,3924,3930,3936,6743,6745,7335,7348,7349,9822,11160,11265,11461,12773,12781,12821,17529,20219,22934]]],["weather",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13791]]]]},{"k":"H2092","v":[["abhorreth",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13670]]]]},{"k":"H2093","v":[["Zaham",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11433]]]]},{"k":"H2094","v":[["*",[22,19,[[1,1,1,0,1,[[67,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]],[13,1,1,2,3,[[385,1,1,2,3]]],[18,1,1,3,4,[[496,1,1,3,4]]],[20,2,2,4,6,[[662,1,1,4,5],[670,1,1,5,6]]],[25,15,12,6,18,[[804,7,5,6,11],[834,8,7,11,18]]],[26,1,1,18,19,[[861,1,1,18,19]]]],[2019,9684,11586,14179,17394,17535,20519,20520,20521,20522,20523,21283,21284,21285,21286,21287,21288,21289,22084]]],["+",[5,5,[[25,5,5,0,5,[[804,2,2,0,2],[834,3,3,2,5]]]],[20519,20520,21283,21284,21285]]],["admonished",[2,2,[[20,2,2,0,2,[[662,1,1,0,1],[670,1,1,1,2]]]],[17394,17535]]],["shine",[1,1,[[26,1,1,0,1,[[861,1,1,0,1]]]],[22084]]],["teach",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2019]]],["warn",[7,7,[[13,1,1,0,1,[[385,1,1,0,1]]],[25,6,6,1,7,[[804,3,3,1,4],[834,3,3,4,7]]]],[11586,20520,20521,20523,21287,21288,21289]]],["warned",[4,4,[[11,1,1,0,1,[[318,1,1,0,1]]],[18,1,1,1,2,[[496,1,1,1,2]]],[25,2,2,2,4,[[804,1,1,2,3],[834,1,1,3,4]]]],[9684,14179,20523,21286]]],["warning",[2,2,[[25,2,2,0,2,[[804,1,1,0,1],[834,1,1,1,2]]]],[20522,21285]]]]},{"k":"H2095","v":[["+",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12132]]]]},{"k":"H2096","v":[["brightness",[2,2,[[25,1,1,0,1,[[809,1,1,0,1]]],[26,1,1,1,2,[[861,1,1,1,2]]]],[20606,22084]]]]},{"k":"H2097","v":[["*",[2,2,[[18,1,1,0,1,[[609,1,1,0,1]]],[27,1,1,1,2,[[868,1,1,1,2]]]],[16163,22194]]],["that",[1,1,[[18,1,1,0,1,[[609,1,1,0,1]]]],[16163]]],["this",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22194]]]]},{"k":"H2098","v":[["*",[15,15,[[1,2,2,0,2,[[64,2,2,0,2]]],[18,10,10,2,12,[[486,1,1,2,3],[487,1,1,3,4],[489,1,1,4,5],[494,1,1,5,6],[508,1,1,6,7],[509,1,1,7,8],[539,1,1,8,9],[545,1,1,9,10],[619,1,1,10,11],[620,1,1,11,12]]],[22,2,2,12,14,[[720,1,1,12,13],[721,1,1,13,14]]],[34,1,1,14,15,[[903,1,1,14,15]]]],[1933,1936,14036,14043,14073,14112,14335,14363,14838,14928,16289,16301,18504,18526,22742]]],["This",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18526]]],["that",[3,3,[[18,3,3,0,3,[[487,1,1,0,1],[494,1,1,1,2],[508,1,1,2,3]]]],[14043,14112,14335]]],["this",[3,3,[[18,2,2,0,2,[[489,1,1,0,1],[539,1,1,1,2]]],[34,1,1,2,3,[[903,1,1,2,3]]]],[14073,14838,22742]]],["wherein",[2,2,[[18,2,2,0,2,[[619,1,1,0,1],[620,1,1,1,2]]]],[16289,16301]]],["which",[5,5,[[1,2,2,0,2,[[64,2,2,0,2]]],[18,3,3,2,5,[[486,1,1,2,3],[509,1,1,3,4],[545,1,1,4,5]]]],[1933,1936,14036,14363,14928]]],["whom",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18504]]]]},{"k":"H2099","v":[["Zif",[2,2,[[10,2,2,0,2,[[296,2,2,0,2]]]],[8897,8933]]]]},{"k":"H2100","v":[["*",[42,41,[[1,4,4,0,4,[[52,2,2,0,2],[62,1,1,2,3],[82,1,1,3,4]]],[2,16,15,4,19,[[104,14,13,4,17],[109,1,1,17,18],[111,1,1,18,19]]],[3,5,5,19,24,[[121,1,1,19,20],[129,1,1,20,21],[130,1,1,21,22],[132,2,2,22,24]]],[4,6,6,24,30,[[158,1,1,24,25],[163,1,1,25,26],[178,2,2,26,28],[179,1,1,28,29],[183,1,1,29,30]]],[5,1,1,30,31,[[191,1,1,30,31]]],[9,1,1,31,32,[[269,1,1,31,32]]],[18,2,2,32,34,[[555,1,1,32,33],[582,1,1,33,34]]],[22,1,1,34,35,[[726,1,1,34,35]]],[23,3,3,35,38,[[755,1,1,35,36],[776,1,1,36,37],[793,1,1,37,38]]],[24,1,1,38,39,[[800,1,1,38,39]]],[25,2,2,39,41,[[821,2,2,39,41]]]],[1587,1596,1872,2476,3170,3172,3174,3175,3176,3177,3179,3180,3181,3187,3193,3200,3201,3342,3373,3794,4102,4116,4207,4208,5089,5217,5575,5581,5588,5748,5940,8110,15133,15647,18635,19231,19753,20131,20429,20901,20910]]],["+",[2,2,[[2,2,2,0,2,[[104,2,2,0,2]]]],[3193,3201]]],["away",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20429]]],["floweth",[12,12,[[2,1,1,0,1,[[109,1,1,0,1]]],[3,4,4,1,5,[[129,1,1,1,2],[130,1,1,2,3],[132,2,2,3,5]]],[4,6,6,5,11,[[158,1,1,5,6],[163,1,1,6,7],[178,2,2,7,9],[179,1,1,9,10],[183,1,1,10,11]]],[5,1,1,11,12,[[191,1,1,11,12]]]],[3342,4102,4116,4207,4208,5089,5217,5575,5581,5588,5748,5940]]],["flowing",[9,9,[[1,4,4,0,4,[[52,2,2,0,2],[62,1,1,2,3],[82,1,1,3,4]]],[23,3,3,4,7,[[755,1,1,4,5],[776,1,1,5,6],[793,1,1,6,7]]],[25,2,2,7,9,[[821,2,2,7,9]]]],[1587,1596,1872,2476,19231,19753,20131,20901,20910]]],["issue",[14,14,[[2,12,12,0,12,[[104,11,11,0,11],[111,1,1,11,12]]],[3,1,1,12,13,[[121,1,1,12,13]]],[9,1,1,13,14,[[269,1,1,13,14]]]],[3170,3172,3174,3175,3176,3177,3179,3180,3181,3187,3200,3373,3794,8110]]],["out",[3,3,[[18,2,2,0,2,[[555,1,1,0,1],[582,1,1,1,2]]],[22,1,1,2,3,[[726,1,1,2,3]]]],[15133,15647,18635]]],["run",[1,1,[[2,1,1,0,1,[[104,1,1,0,1]]]],[3193]]]]},{"k":"H2101","v":[["*",[13,10,[[2,13,10,0,10,[[104,13,10,0,10]]]],[3170,3171,3181,3183,3187,3193,3194,3196,3198,3201]]],["+",[7,7,[[2,7,7,0,7,[[104,7,7,0,7]]]],[3171,3181,3183,3193,3196,3198,3201]]],["issue",[6,5,[[2,6,5,0,5,[[104,6,5,0,5]]]],[3170,3171,3187,3193,3194]]]]},{"k":"H2102","v":[["*",[10,10,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,2,2,1,3,[[67,1,1,1,2],[70,1,1,2,3]]],[4,3,3,3,6,[[153,1,1,3,4],[169,1,1,4,5],[170,1,1,5,6]]],[15,3,3,6,9,[[421,3,3,6,9]]],[23,1,1,9,10,[[794,1,1,9,10]]]],[687,2010,2091,4935,5377,5404,12521,12527,12540,20195]]],["+",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4935]]],["presume",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5404]]],["presumptuously",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[4,1,1,1,2,[[169,1,1,1,2]]]],[2091,5377]]],["proud",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20195]]],["proudly",[4,4,[[1,1,1,0,1,[[67,1,1,0,1]]],[15,3,3,1,4,[[421,3,3,1,4]]]],[2010,12521,12527,12540]]],["sod",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[687]]]]},{"k":"H2103","v":[["pride",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21894]]]]},{"k":"H2104","v":[["Zuzims",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[341]]]]},{"k":"H2105","v":[["Zoheth",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10405]]]]},{"k":"H2106","v":[["*",[2,2,[[18,1,1,0,1,[[621,1,1,0,1]]],[37,1,1,1,2,[[919,1,1,1,2]]]],[16317,23014]]],["corners",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23014]]],["stones",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16317]]]]},{"k":"H2107","v":[["lavish",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18592]]]]},{"k":"H2108","v":[["*",[16,16,[[4,2,2,0,2,[[153,1,1,0,1],[156,1,1,1,2]]],[5,1,1,2,3,[[197,1,1,2,3]]],[7,1,1,3,4,[[235,1,1,3,4]]],[8,1,1,4,5,[[256,1,1,4,5]]],[9,1,1,5,6,[[273,1,1,5,6]]],[10,2,2,6,8,[[293,1,1,6,7],[302,1,1,7,8]]],[11,1,1,8,9,[[336,1,1,8,9]]],[12,1,1,9,10,[[354,1,1,9,10]]],[18,1,1,10,11,[[495,1,1,10,11]]],[22,4,4,11,15,[[704,1,1,11,12],[723,2,2,12,14],[742,1,1,14,15]]],[27,1,1,15,16,[[874,1,1,15,16]]]],[4928,5016,6120,7194,7781,8202,8834,9171,10216,10883,14149,18143,18566,18582,18889,22270]]],["+",[1,1,[[5,1,1,0,1,[[197,1,1,0,1]]]],[6120]]],["Save",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4928]]],["beside",[7,7,[[7,1,1,0,1,[[235,1,1,0,1]]],[9,1,1,1,2,[[273,1,1,1,2]]],[12,1,1,2,3,[[354,1,1,2,3]]],[22,4,4,3,7,[[704,1,1,3,4],[723,2,2,4,6],[742,1,1,6,7]]]],[7194,8202,10883,18143,18566,18582,18889]]],["but",[2,2,[[10,1,1,0,1,[[302,1,1,0,1]]],[27,1,1,1,2,[[874,1,1,1,2]]]],[9171,22270]]],["only",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5016]]],["save",[4,4,[[8,1,1,0,1,[[256,1,1,0,1]]],[10,1,1,1,2,[[293,1,1,1,2]]],[11,1,1,2,3,[[336,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]]],[7781,8834,10216,14149]]]]},{"k":"H2109","v":[["fed",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19066]]]]},{"k":"H2110","v":[["fed",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21849]]]]},{"k":"H2111","v":[["*",[3,3,[[16,1,1,0,1,[[430,1,1,0,1]]],[20,1,1,1,2,[[670,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[12788,17526,22755]]],["+",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17526]]],["moved",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12788]]],["vex",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22755]]]]},{"k":"H2112","v":[["+",[2,2,[[26,2,2,0,2,[[854,1,1,0,1],[855,1,1,1,2]]]],[21893,21931]]]]},{"k":"H2113","v":[["vexation",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18183]]]]},{"k":"H2114","v":[["*",[77,76,[[1,3,3,0,3,[[78,1,1,0,1],[79,2,2,1,3]]],[2,4,4,3,7,[[99,1,1,3,4],[111,3,3,4,7]]],[3,8,8,7,15,[[117,1,1,7,8],[119,3,3,8,11],[132,1,1,11,12],[134,2,2,12,14],[142,1,1,14,15]]],[4,2,2,15,17,[[177,1,1,15,16],[184,1,1,16,17]]],[10,1,1,17,18,[[293,1,1,17,18]]],[11,1,1,18,19,[[331,1,1,18,19]]],[17,5,5,19,24,[[450,1,1,19,20],[454,4,4,20,24]]],[18,7,7,24,31,[[521,1,1,24,25],[531,1,1,25,26],[535,1,1,26,27],[546,1,1,27,28],[555,1,1,28,29],[558,1,1,29,30],[586,1,1,30,31]]],[19,14,14,31,45,[[629,1,1,31,32],[632,4,4,32,36],[633,1,1,36,37],[634,1,1,37,38],[638,1,1,38,39],[641,1,1,39,40],[647,1,1,40,41],[649,1,1,41,42],[650,1,1,42,43],[654,2,2,43,45]]],[22,10,9,45,54,[[679,3,2,45,47],[695,1,1,47,48],[703,2,2,48,50],[706,1,1,50,51],[707,1,1,51,52],[721,1,1,52,53],[739,1,1,53,54]]],[23,7,7,54,61,[[746,1,1,54,55],[747,1,1,55,56],[749,1,1,56,57],[762,1,1,57,58],[774,1,1,58,59],[795,2,2,59,61]]],[24,1,1,61,62,[[801,1,1,61,62]]],[25,8,8,62,70,[[808,1,1,62,63],[812,1,1,63,64],[815,1,1,64,65],[817,1,1,65,66],[829,2,2,66,68],[831,1,1,68,69],[832,1,1,69,70]]],[27,4,4,70,74,[[866,1,1,70,71],[868,1,1,71,72],[869,2,2,72,74]]],[28,1,1,74,75,[[878,1,1,74,75]]],[30,1,1,75,76,[[888,1,1,75,76]]]],[2369,2391,2415,2978,3379,3381,3382,3655,3696,3702,3730,4234,4261,4264,4550,5552,5774,8834,10085,13222,13310,13312,13314,13324,14591,14728,14782,14943,15143,15226,15766,16449,16520,16527,16534,16537,16541,16580,16703,16782,16970,17029,17077,17171,17182,17658,17661,17993,18120,18123,18185,18198,18517,18848,18990,19015,19077,19398,19675,20214,20263,20444,20598,20664,20736,20794,21164,21167,21216,21242,22159,22187,22201,22206,22360,22521]]],["+",[4,4,[[2,1,1,0,1,[[111,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[4,1,1,2,3,[[177,1,1,2,3]]],[19,1,1,3,4,[[629,1,1,3,4]]]],[3381,4234,5552,16449]]],["Strangers",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22187]]],["another",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13324]]],["away",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17658]]],["estranged",[4,4,[[17,1,1,0,1,[[454,1,1,0,1]]],[18,2,2,1,3,[[535,1,1,1,2],[555,1,1,2,3]]],[25,1,1,3,4,[[815,1,1,3,4]]]],[13310,14782,15143,20736]]],["fanners",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20214]]],["man",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17171]]],["place",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19398]]],["strange",[14,14,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,1,1,1,2,[[99,1,1,1,2]]],[3,2,2,2,4,[[119,1,1,2,3],[142,1,1,3,4]]],[4,1,1,4,5,[[184,1,1,4,5]]],[11,1,1,5,6,[[331,1,1,5,6]]],[17,1,1,6,7,[[454,1,1,6,7]]],[18,2,2,7,9,[[521,1,1,7,8],[558,1,1,8,9]]],[19,1,1,9,10,[[634,1,1,9,10]]],[22,3,3,10,13,[[695,1,1,10,11],[706,1,1,11,12],[721,1,1,12,13]]],[27,1,1,13,14,[[866,1,1,13,14]]]],[2391,2978,3696,4550,5774,10085,13314,14591,15226,16580,17993,18185,18517,22159]]],["stranger",[18,18,[[1,2,2,0,2,[[78,1,1,0,1],[79,1,1,1,2]]],[2,2,2,2,4,[[111,2,2,2,4]]],[3,5,5,4,9,[[117,1,1,4,5],[119,2,2,5,7],[134,2,2,7,9]]],[10,1,1,9,10,[[293,1,1,9,10]]],[17,2,2,10,12,[[450,1,1,10,11],[454,1,1,11,12]]],[18,1,1,12,13,[[546,1,1,12,13]]],[19,5,5,13,18,[[633,1,1,13,14],[638,1,1,14,15],[641,1,1,15,16],[647,1,1,16,17],[654,1,1,17,18]]]],[2369,2415,3379,3382,3655,3702,3730,4261,4264,8834,13222,13312,14943,16541,16703,16782,16970,17182]]],["strangers",[25,24,[[18,2,2,0,2,[[531,1,1,0,1],[586,1,1,1,2]]],[19,1,1,2,3,[[632,1,1,2,3]]],[22,6,5,3,8,[[679,2,1,3,4],[703,2,2,4,6],[707,1,1,6,7],[739,1,1,7,8]]],[23,5,5,8,13,[[746,1,1,8,9],[747,1,1,9,10],[749,1,1,10,11],[774,1,1,11,12],[795,1,1,12,13]]],[24,1,1,13,14,[[801,1,1,13,14]]],[25,7,7,14,21,[[808,1,1,14,15],[812,1,1,15,16],[817,1,1,16,17],[829,2,2,17,19],[831,1,1,19,20],[832,1,1,20,21]]],[27,1,1,21,22,[[869,1,1,21,22]]],[28,1,1,22,23,[[878,1,1,22,23]]],[30,1,1,23,24,[[888,1,1,23,24]]]],[14728,15766,16527,17661,18120,18123,18198,18848,18990,19015,19077,19675,20263,20444,20598,20664,20794,21164,21167,21216,21242,22201,22360,22521]]],["strangers'",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16534]]],["thing",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22206]]],["woman",[2,2,[[19,2,2,0,2,[[632,2,2,0,2]]]],[16520,16537]]],["women",[2,2,[[19,2,2,0,2,[[649,1,1,0,1],[650,1,1,1,2]]]],[17029,17077]]]]},{"k":"H2115","v":[["*",[4,3,[[6,2,1,0,1,[[216,2,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]],[22,1,1,2,3,[[679,1,1,2,3]]]],[6692,13849,17660]]],["+",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6692]]],["closed",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17660]]],["crush",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13849]]],["together",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6692]]]]},{"k":"H2116","v":[["crushed",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18805]]]]},{"k":"H2117","v":[["Zaza",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10339]]]]},{"k":"H2118","v":[["loosed",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2321,2685]]]]},{"k":"H2119","v":[["*",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[467,1,1,1,2]]],[32,1,1,2,3,[[899,1,1,2,3]]]],[5782,13634,22681]]],["afraid",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13634]]],["serpents",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5782]]],["worms",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22681]]]]},{"k":"H2120","v":[["Zoheleth",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8726]]]]},{"k":"H2121","v":[["proud",[1,1,[[18,1,1,0,1,[[601,1,1,0,1]]]],[16107]]]]},{"k":"H2122","v":[["*",[6,6,[[26,6,6,0,6,[[851,1,1,0,1],[853,1,1,1,2],[854,3,3,2,5],[856,1,1,5,6]]]],[21789,21873,21880,21883,21884,21961]]],["brightness",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21789,21873]]],["countenance",[4,4,[[26,4,4,0,4,[[854,3,3,0,3],[856,1,1,3,4]]]],[21880,21883,21884,21961]]]]},{"k":"H2123","v":[["*",[3,3,[[18,2,2,0,2,[[527,1,1,0,1],[557,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]]],[14679,15211,18933]]],["+",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18933]]],["beast",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15211]]],["beasts",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14679]]]]},{"k":"H2124","v":[["Ziza",[2,2,[[12,1,1,0,1,[[341,1,1,0,1]]],[13,1,1,1,2,[[377,1,1,1,2]]]],[10422,11434]]]]},{"k":"H2125","v":[["Zizah",[1,1,[[12,1,1,0,1,[[360,1,1,0,1]]]],[10994]]]]},{"k":"H2126","v":[["Zina",[1,1,[[12,1,1,0,1,[[360,1,1,0,1]]]],[10993]]]]},{"k":"H2127","v":[["Zia",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10441]]]]},{"k":"H2128","v":[["Ziph",[10,9,[[5,2,2,0,2,[[201,2,2,0,2]]],[8,5,4,2,6,[[258,3,3,2,5],[261,2,1,5,6]]],[12,2,2,6,8,[[339,1,1,6,7],[341,1,1,7,8]]],[13,1,1,8,9,[[377,1,1,8,9]]]],[6226,6257,7824,7825,7834,7907,10348,10401,11422]]]]},{"k":"H2129","v":[["Ziphah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10401]]]]},{"k":"H2130","v":[["Ziphites",[2,2,[[8,2,2,0,2,[[258,1,1,0,1],[261,1,1,1,2]]]],[7829,7906]]]]},{"k":"H2131","v":[["*",[7,6,[[17,1,1,0,1,[[471,1,1,0,1]]],[18,1,1,1,2,[[626,1,1,1,2]]],[19,1,1,2,3,[[653,1,1,2,3]]],[22,3,2,3,5,[[723,1,1,3,4],[728,2,1,4,5]]],[33,1,1,5,6,[[902,1,1,5,6]]]],[13744,16393,17159,18575,18673,22722]]],["chains",[3,3,[[18,1,1,0,1,[[626,1,1,0,1]]],[22,1,1,1,2,[[723,1,1,1,2]]],[33,1,1,2,3,[[902,1,1,2,3]]]],[16393,18575,22722]]],["fetters",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13744]]],["firebrands",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17159]]],["sparks",[2,1,[[22,2,1,0,1,[[728,2,1,0,1]]]],[18673]]]]},{"k":"H2132","v":[["*",[38,36,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,3,3,1,4,[[72,1,1,1,2],[76,1,1,2,3],[79,1,1,3,4]]],[2,1,1,4,5,[[113,1,1,4,5]]],[4,5,4,5,9,[[158,1,1,5,6],[160,1,1,6,7],[176,1,1,7,8],[180,2,1,8,9]]],[5,1,1,9,10,[[210,1,1,9,10]]],[6,3,3,10,13,[[219,2,2,10,12],[225,1,1,12,13]]],[8,1,1,13,14,[[243,1,1,13,14]]],[9,1,1,14,15,[[281,1,1,14,15]]],[11,2,2,15,17,[[317,1,1,15,16],[330,1,1,16,17]]],[12,1,1,17,18,[[364,1,1,17,18]]],[15,3,3,18,21,[[417,1,1,18,19],[420,1,1,19,20],[421,1,1,20,21]]],[17,1,1,21,22,[[450,1,1,21,22]]],[18,2,2,22,24,[[529,1,1,22,23],[605,1,1,23,24]]],[22,2,2,24,26,[[695,1,1,24,25],[702,1,1,25,26]]],[23,1,1,26,27,[[755,1,1,26,27]]],[27,1,1,27,28,[[875,1,1,27,28]]],[29,1,1,28,29,[[882,1,1,28,29]]],[32,1,1,29,30,[[898,1,1,29,30]]],[34,1,1,30,31,[[905,1,1,30,31]]],[36,1,1,31,32,[[910,1,1,31,32]]],[37,5,4,32,36,[[914,3,3,32,35],[924,2,1,35,36]]]],[194,2155,2292,2406,3448,5097,5145,5545,5651,6489,6762,6763,6934,7383,8419,9673,10056,11137,12393,12508,12536,13236,14718,16129,17989,18108,19242,22288,22419,22663,22785,22874,22925,22933,22934,23072]]],["Olives",[2,1,[[37,2,1,0,1,[[924,2,1,0,1]]]],[23072]]],["Olivet",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8419]]],["olive",[13,13,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,2,2,1,3,[[76,1,1,1,2],[79,1,1,2,3]]],[2,1,1,3,4,[[113,1,1,3,4]]],[4,2,2,4,6,[[160,1,1,4,5],[180,1,1,5,6]]],[11,1,1,6,7,[[330,1,1,6,7]]],[15,1,1,7,8,[[420,1,1,7,8]]],[17,1,1,8,9,[[450,1,1,8,9]]],[18,1,1,9,10,[[605,1,1,9,10]]],[34,1,1,10,11,[[905,1,1,10,11]]],[36,1,1,11,12,[[910,1,1,11,12]]],[37,1,1,12,13,[[914,1,1,12,13]]]],[194,2292,2406,3448,5145,5651,10056,12508,13236,16129,22785,22874,22934]]],["olives",[2,2,[[6,1,1,0,1,[[225,1,1,0,1]]],[32,1,1,1,2,[[898,1,1,1,2]]]],[6934,22663]]],["oliveyard",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2155]]],["oliveyards",[5,5,[[5,1,1,0,1,[[210,1,1,0,1]]],[8,1,1,1,2,[[243,1,1,1,2]]],[11,1,1,2,3,[[317,1,1,2,3]]],[15,2,2,3,5,[[417,1,1,3,4],[421,1,1,4,5]]]],[6489,7383,9673,12393,12536]]],["tree",[8,8,[[4,1,1,0,1,[[176,1,1,0,1]]],[6,2,2,1,3,[[219,2,2,1,3]]],[18,1,1,3,4,[[529,1,1,3,4]]],[22,2,2,4,6,[[695,1,1,4,5],[702,1,1,5,6]]],[23,1,1,6,7,[[755,1,1,6,7]]],[27,1,1,7,8,[[875,1,1,7,8]]]],[5545,6762,6763,14718,17989,18108,19242,22288]]],["trees",[6,6,[[4,2,2,0,2,[[158,1,1,0,1],[180,1,1,1,2]]],[12,1,1,2,3,[[364,1,1,2,3]]],[29,1,1,3,4,[[882,1,1,3,4]]],[37,2,2,4,6,[[914,2,2,4,6]]]],[5097,5651,11137,22419,22925,22933]]]]},{"k":"H2133","v":[["Zethan",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10545]]]]},{"k":"H2134","v":[["*",[11,11,[[1,2,2,0,2,[[76,1,1,0,1],[79,1,1,1,2]]],[2,2,2,2,4,[[113,2,2,2,4]]],[17,4,4,4,8,[[443,1,1,4,5],[446,1,1,5,6],[451,1,1,6,7],[468,1,1,7,8]]],[19,3,3,8,11,[[643,1,1,8,9],[647,1,1,9,10],[648,1,1,10,11]]]],[2292,2416,3448,3453,13035,13112,13255,13659,16842,16965,16992]]],["clean",[2,2,[[17,1,1,0,1,[[468,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]]],[13659,16842]]],["pure",[9,9,[[1,2,2,0,2,[[76,1,1,0,1],[79,1,1,1,2]]],[2,2,2,2,4,[[113,2,2,2,4]]],[17,3,3,4,7,[[443,1,1,4,5],[446,1,1,5,6],[451,1,1,6,7]]],[19,2,2,7,9,[[647,1,1,7,8],[648,1,1,8,9]]]],[2292,2416,3448,3453,13035,13112,13255,16965,16992]]]]},{"k":"H2135","v":[["*",[8,8,[[17,2,2,0,2,[[450,1,1,0,1],[460,1,1,1,2]]],[18,3,3,2,5,[[528,1,1,2,3],[550,1,1,3,4],[596,1,1,4,5]]],[19,1,1,5,6,[[647,1,1,5,6]]],[22,1,1,6,7,[[679,1,1,6,7]]],[32,1,1,7,8,[[898,1,1,7,8]]]],[13217,13465,14695,15033,15907,16963,17670,22659]]],["+",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15907]]],["clean",[4,4,[[17,2,2,0,2,[[450,1,1,0,1],[460,1,1,1,2]]],[19,1,1,2,3,[[647,1,1,2,3]]],[22,1,1,3,4,[[679,1,1,3,4]]]],[13217,13465,16963,17670]]],["cleansed",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15033]]],["clear",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14695]]],["pure",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22659]]]]},{"k":"H2136","v":[["innocency",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21927]]]]},{"k":"H2137","v":[["crystal",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13521]]]]},{"k":"H2138","v":[["*",[4,4,[[1,2,2,0,2,[[72,1,1,0,1],[83,1,1,1,2]]],[4,2,2,2,4,[[168,1,1,2,3],[172,1,1,3,4]]]],[2161,2519,5358,5440]]],["children",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2519]]],["male",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5440]]],["males",[2,2,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,1,1,1,2,[[168,1,1,1,2]]]],[2161,5358]]]]},{"k":"H2139","v":[["*",[9,9,[[3,1,1,0,1,[[129,1,1,0,1]]],[12,4,4,1,5,[[341,1,1,1,2],[361,1,1,2,3],[362,2,2,3,5]]],[15,4,4,5,9,[[415,1,1,5,6],[422,1,1,6,7],[424,1,1,7,8],[425,1,1,8,9]]]],[4079,10411,11042,11048,11056,12329,12561,12659,12684]]],["Zacchur",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10411]]],["Zaccur",[8,8,[[3,1,1,0,1,[[129,1,1,0,1]]],[12,3,3,1,4,[[361,1,1,1,2],[362,2,2,2,4]]],[15,4,4,4,8,[[415,1,1,4,5],[422,1,1,5,6],[424,1,1,6,7],[425,1,1,7,8]]]],[4079,11042,11048,11056,12329,12561,12659,12684]]]]},{"k":"H2140","v":[["Zaccai",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12036,12434]]]]},{"k":"H2141","v":[["*",[4,4,[[17,3,3,0,3,[[444,1,1,0,1],[450,1,1,1,2],[460,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]]],[13081,13218,13466,20427]]],["+",[1,1,[[17,1,1,0,1,[[460,1,1,0,1]]]],[13466]]],["clean",[2,2,[[17,2,2,0,2,[[444,1,1,0,1],[450,1,1,1,2]]]],[13081,13218]]],["purer",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20427]]]]},{"k":"H2142","v":[["*",[229,220,[[0,10,9,0,9,[[7,1,1,0,1],[8,2,2,1,3],[18,1,1,3,4],[29,1,1,4,5],[39,3,2,5,7],[40,1,1,7,8],[41,1,1,8,9]]],[1,7,7,9,16,[[51,1,1,9,10],[55,1,1,10,11],[62,1,1,11,12],[69,2,2,12,14],[72,1,1,14,15],[81,1,1,15,16]]],[2,4,2,16,18,[[115,4,2,16,18]]],[3,5,5,18,23,[[121,1,1,18,19],[126,1,1,19,20],[127,1,1,20,21],[131,2,2,21,23]]],[4,15,14,23,37,[[157,1,1,23,24],[159,2,1,24,25],[160,2,2,25,27],[161,2,2,27,29],[167,1,1,29,30],[168,2,2,30,32],[176,3,3,32,35],[177,1,1,35,36],[184,1,1,36,37]]],[5,2,2,37,39,[[187,1,1,37,38],[209,1,1,38,39]]],[6,3,3,39,42,[[218,1,1,39,40],[219,1,1,40,41],[226,1,1,41,42]]],[8,4,4,42,46,[[236,2,2,42,44],[239,1,1,44,45],[260,1,1,45,46]]],[9,5,5,46,51,[[274,1,1,46,47],[280,1,1,47,48],[284,1,1,48,49],[285,1,1,49,50],[286,1,1,50,51]]],[10,2,2,51,53,[[294,1,1,51,52],[307,1,1,52,53]]],[11,4,4,53,57,[[321,1,1,53,54],[330,2,2,54,56],[332,1,1,56,57]]],[12,4,4,57,61,[[353,3,3,57,60],[355,1,1,60,61]]],[13,3,3,61,64,[[372,1,1,61,62],[390,1,1,62,63],[400,1,1,63,64]]],[15,9,9,64,73,[[413,1,1,64,65],[416,1,1,65,66],[417,1,1,66,67],[418,1,1,67,68],[421,1,1,68,69],[425,4,4,69,73]]],[16,2,2,73,75,[[427,1,1,73,74],[434,1,1,74,75]]],[17,10,10,75,85,[[439,1,1,75,76],[442,1,1,76,77],[445,1,1,77,78],[446,1,1,78,79],[449,1,1,79,80],[456,1,1,80,81],[459,1,1,81,82],[463,1,1,82,83],[471,1,1,83,84],[476,1,1,84,85]]],[18,51,49,85,134,[[485,1,1,85,86],[486,1,1,86,87],[497,2,2,87,89],[499,1,1,89,90],[502,3,2,90,92],[519,2,2,92,94],[522,1,1,94,95],[540,1,1,95,96],[548,1,1,96,97],[551,3,3,97,100],[554,4,3,100,103],[555,3,3,103,106],[556,1,1,106,107],[560,1,1,107,108],[564,1,1,108,109],[565,1,1,109,110],[566,2,2,110,112],[575,1,1,112,113],[580,2,2,113,115],[582,3,3,115,118],[583,3,3,118,121],[586,2,2,121,123],[588,1,1,123,124],[592,1,1,124,125],[596,3,3,125,128],[609,1,1,128,129],[613,1,1,129,130],[614,3,3,130,133],[620,1,1,133,134]]],[19,1,1,134,135,[[658,1,1,134,135]]],[20,4,4,135,139,[[663,1,1,135,136],[667,1,1,136,137],[669,1,1,137,138],[670,1,1,138,139]]],[21,1,1,139,140,[[671,1,1,139,140]]],[22,26,26,140,166,[[690,1,1,140,141],[695,1,1,141,142],[697,1,1,142,143],[701,1,1,143,144],[704,1,1,144,145],[714,2,2,145,147],[716,1,1,147,148],[721,3,3,148,151],[722,1,1,151,152],[724,2,2,152,154],[725,1,1,154,155],[726,1,1,155,156],[727,1,1,156,157],[732,1,1,157,158],[735,1,1,158,159],[740,1,1,159,160],[741,2,2,160,162],[742,2,2,162,164],[743,1,1,164,165],[744,1,1,165,166]]],[23,16,15,166,181,[[746,1,1,166,167],[747,1,1,167,168],[748,1,1,168,169],[755,1,1,169,170],[758,2,2,170,172],[759,1,1,172,173],[761,1,1,173,174],[762,1,1,174,175],[764,1,1,175,176],[767,1,1,176,177],[775,3,2,177,179],[788,1,1,179,180],[795,1,1,180,181]]],[24,7,6,181,187,[[797,2,2,181,183],[798,1,1,183,184],[799,3,2,184,186],[801,1,1,186,187]]],[25,21,20,187,207,[[804,1,1,187,188],[807,1,1,188,189],[817,5,5,189,194],[819,2,2,194,196],[821,1,1,196,197],[822,4,3,197,200],[824,2,2,200,202],[826,1,1,202,203],[830,1,1,203,204],[834,2,2,204,206],[837,1,1,206,207]]],[27,4,4,207,211,[[863,1,1,207,208],[868,1,1,208,209],[869,1,1,209,210],[870,1,1,210,211]]],[29,2,2,211,213,[[879,1,1,211,212],[884,1,1,212,213]]],[31,1,1,213,214,[[890,1,1,213,214]]],[32,1,1,214,215,[[898,1,1,214,215]]],[33,1,1,215,216,[[901,1,1,215,216]]],[34,1,1,216,217,[[905,1,1,216,217]]],[37,2,2,217,219,[[920,1,1,217,218],[923,1,1,218,219]]],[38,1,1,219,220,[[928,1,1,219,220]]]],[184,220,221,486,852,1186,1195,1204,1261,1578,1660,1870,2059,2075,2157,2451,3566,3569,3807,3997,4029,4192,4193,5068,5129,5139,5155,5164,5184,5334,5345,5354,5534,5543,5547,5564,5765,5864,6467,6753,6756,6977,7223,7231,7315,7892,8225,8367,8496,8530,8578,8847,9335,9781,10042,10061,10101,10824,10832,10835,10905,11324,11699,11941,12304,12373,12401,12415,12528,12685,12693,12700,12702,12725,12862,12937,13015,13095,13124,13194,13361,13456,13522,13760,13896,14016,14033,14185,14189,14231,14257,14258,14559,14561,14614,14845,14992,15050,15066,15070,15096,15099,15104,15148,15152,15155,15193,15245,15305,15313,15373,15376,15493,15563,15567,15611,15614,15648,15655,15658,15696,15769,15771,15798,15842,15947,15950,15953,16152,16219,16223,16228,16229,16298,17291,17417,17490,17521,17524,17541,17904,17993,18021,18093,18143,18333,18352,18393,18523,18530,18531,18554,18594,18595,18606,18615,18637,18727,18776,18860,18873,18877,18890,18894,18914,18925,18967,19018,19043,19245,19303,19314,19330,19359,19404,19431,19520,19711,19725,20031,20262,20317,20319,20333,20373,20374,20443,20522,20572,20784,20805,20822,20823,20825,20871,20873,20938,20967,20968,20976,21026,21034,21093,21199,21293,21296,21390,22122,22180,22207,22217,22373,22460,22555,22653,22704,22770,23025,23061,23142]]],["+",[49,46,[[0,7,7,0,7,[[7,1,1,0,1],[8,1,1,1,2],[18,1,1,2,3],[29,1,1,3,4],[39,1,1,4,5],[40,1,1,5,6],[41,1,1,6,7]]],[1,5,5,7,12,[[51,1,1,7,8],[55,1,1,8,9],[62,1,1,9,10],[69,1,1,10,11],[72,1,1,11,12]]],[2,1,1,12,13,[[115,1,1,12,13]]],[3,3,3,13,16,[[121,1,1,13,14],[127,1,1,14,15],[131,1,1,15,16]]],[4,7,6,16,22,[[159,2,1,16,17],[160,2,2,17,19],[168,1,1,19,20],[176,1,1,20,21],[177,1,1,21,22]]],[5,1,1,22,23,[[187,1,1,22,23]]],[8,1,1,23,24,[[260,1,1,23,24]]],[9,3,3,24,27,[[280,1,1,24,25],[284,1,1,25,26],[285,1,1,26,27]]],[15,1,1,27,28,[[416,1,1,27,28]]],[16,1,1,28,29,[[427,1,1,28,29]]],[18,2,2,29,31,[[582,1,1,29,30],[614,1,1,30,31]]],[20,3,3,31,34,[[663,1,1,31,32],[667,1,1,32,33],[669,1,1,33,34]]],[23,3,2,34,36,[[775,2,1,34,35],[795,1,1,35,36]]],[24,2,1,36,37,[[799,2,1,36,37]]],[25,8,8,37,45,[[817,4,4,37,41],[821,1,1,41,42],[824,1,1,42,43],[830,1,1,43,44],[837,1,1,44,45]]],[31,1,1,45,46,[[890,1,1,45,46]]]],[184,220,486,852,1195,1204,1261,1578,1660,1870,2075,2157,3566,3807,4029,4192,5129,5139,5155,5345,5534,5564,5864,7892,8367,8496,8530,12373,12725,15648,16223,17417,17490,17521,19711,20262,20374,20784,20805,20822,20823,20938,21026,21199,21390,22555]]],["Remember",[34,34,[[1,2,2,0,2,[[69,1,1,0,1],[81,1,1,1,2]]],[4,3,3,2,5,[[161,2,2,2,4],[184,1,1,4,5]]],[12,1,1,5,6,[[353,1,1,5,6]]],[15,5,5,6,11,[[413,1,1,6,7],[425,4,4,7,11]]],[17,3,3,11,14,[[439,1,1,11,12],[445,1,1,12,13],[471,1,1,13,14]]],[18,11,11,14,25,[[497,1,1,14,15],[502,2,2,15,17],[551,2,2,17,19],[566,2,2,19,21],[582,1,1,21,22],[583,1,1,22,23],[596,1,1,23,24],[614,1,1,24,25]]],[20,1,1,25,26,[[670,1,1,25,26]]],[22,5,5,26,31,[[716,1,1,26,27],[721,1,1,27,28],[722,1,1,28,29],[724,2,2,29,31]]],[23,1,1,31,32,[[762,1,1,31,32]]],[24,1,1,32,33,[[801,1,1,32,33]]],[38,1,1,33,34,[[928,1,1,33,34]]]],[2059,2451,5164,5184,5765,10832,12304,12685,12693,12700,12702,12937,13095,13760,14185,14257,14258,15050,15066,15373,15376,15611,15655,15947,16229,17524,18393,18523,18554,18594,18595,19404,20443,23142]]],["Remembering",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20373]]],["Think",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12401]]],["burneth",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18925]]],["made",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13522]]],["mention",[16,16,[[0,1,1,0,1,[[39,1,1,0,1]]],[5,1,1,1,2,[[209,1,1,1,2]]],[8,1,1,2,3,[[239,1,1,2,3]]],[18,2,2,3,5,[[548,1,1,3,4],[564,1,1,4,5]]],[22,7,7,5,12,[[690,1,1,5,6],[697,1,1,6,7],[704,1,1,7,8],[726,1,1,8,9],[727,1,1,9,10],[740,1,1,10,11],[741,1,1,11,12]]],[23,3,3,12,15,[[748,1,1,12,13],[764,1,1,13,14],[767,1,1,14,15]]],[29,1,1,15,16,[[884,1,1,15,16]]]],[1186,6467,7315,14992,15305,17904,18021,18143,18615,18637,18860,18873,19043,19431,19520,22460]]],["mentioned",[3,3,[[25,3,3,0,3,[[819,2,2,0,2],[834,1,1,2,3]]]],[20871,20873,21296]]],["mindful",[6,6,[[12,1,1,0,1,[[353,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[18,3,3,2,5,[[485,1,1,2,3],[588,1,1,3,4],[592,1,1,4,5]]],[22,1,1,5,6,[[695,1,1,5,6]]]],[10835,12528,14016,15798,15842,17993]]],["on",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1186]]],["record",[1,1,[[12,1,1,0,1,[[353,1,1,0,1]]]],[10824]]],["recorder",[9,9,[[9,2,2,0,2,[[274,1,1,0,1],[286,1,1,1,2]]],[10,1,1,2,3,[[294,1,1,2,3]]],[11,2,2,3,5,[[330,2,2,3,5]]],[12,1,1,5,6,[[355,1,1,5,6]]],[13,1,1,6,7,[[400,1,1,6,7]]],[22,2,2,7,9,[[714,2,2,7,9]]]],[8225,8578,8847,10042,10061,10905,11941,18333,18352]]],["recount",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22704]]],["remember",[59,57,[[0,1,1,0,1,[[8,1,1,0,1]]],[2,3,2,1,3,[[115,3,2,1,3]]],[3,1,1,3,4,[[131,1,1,3,4]]],[4,5,5,4,9,[[157,1,1,4,5],[167,1,1,5,6],[168,1,1,6,7],[176,2,2,7,9]]],[6,2,2,9,11,[[219,1,1,9,10],[226,1,1,10,11]]],[8,1,1,11,12,[[236,1,1,11,12]]],[11,2,2,12,14,[[321,1,1,12,13],[332,1,1,13,14]]],[13,1,1,14,15,[[372,1,1,14,15]]],[17,5,5,15,20,[[442,1,1,15,16],[446,1,1,16,17],[449,1,1,17,18],[456,1,1,18,19],[476,1,1,19,20]]],[18,14,13,20,33,[[497,1,1,20,21],[499,1,1,21,22],[502,1,1,22,23],[519,2,2,23,25],[540,1,1,25,26],[551,1,1,26,27],[554,2,1,27,28],[556,1,1,28,29],[580,1,1,29,30],[609,1,1,30,31],[614,1,1,31,32],[620,1,1,32,33]]],[19,1,1,33,34,[[658,1,1,33,34]]],[21,1,1,34,35,[[671,1,1,34,35]]],[22,5,5,35,40,[[721,1,1,35,36],[725,1,1,36,37],[732,1,1,37,38],[742,2,2,38,40]]],[23,8,8,40,48,[[746,1,1,40,41],[747,1,1,41,42],[758,2,2,42,44],[759,1,1,44,45],[761,1,1,45,46],[775,1,1,46,47],[788,1,1,47,48]]],[25,3,3,48,51,[[807,1,1,48,49],[817,1,1,49,50],[824,1,1,50,51]]],[27,3,3,51,54,[[868,1,1,51,52],[869,1,1,52,53],[870,1,1,53,54]]],[32,1,1,54,55,[[898,1,1,54,55]]],[34,1,1,55,56,[[905,1,1,55,56]]],[37,1,1,56,57,[[920,1,1,56,57]]]],[221,3566,3569,4193,5068,5334,5354,5543,5547,6756,6977,7223,9781,10101,11324,13015,13124,13194,13361,13896,14189,14231,14258,14559,14561,14845,15070,15104,15193,15567,16152,16228,16298,17291,17541,18530,18606,18727,18890,18894,18967,19018,19303,19314,19330,19359,19725,20031,20572,20825,21034,22180,22207,22217,22653,22770,23025]]],["remembered",[35,35,[[3,1,1,0,1,[[126,1,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]],[8,1,1,2,3,[[236,1,1,2,3]]],[13,1,1,3,4,[[390,1,1,3,4]]],[16,1,1,4,5,[[434,1,1,4,5]]],[17,1,1,5,6,[[459,1,1,5,6]]],[18,14,14,6,20,[[522,1,1,6,7],[554,1,1,7,8],[555,3,3,8,11],[575,1,1,11,12],[582,1,1,12,13],[583,2,2,13,15],[586,2,2,15,17],[596,2,2,17,19],[613,1,1,19,20]]],[22,4,4,20,24,[[701,1,1,20,21],[735,1,1,21,22],[741,1,1,22,23],[743,1,1,23,24]]],[23,1,1,24,25,[[755,1,1,24,25]]],[24,2,2,25,27,[[797,1,1,25,26],[798,1,1,26,27]]],[25,5,5,27,32,[[804,1,1,27,28],[822,2,2,28,30],[826,1,1,30,31],[834,1,1,31,32]]],[27,1,1,32,33,[[863,1,1,32,33]]],[29,1,1,33,34,[[879,1,1,33,34]]],[37,1,1,34,35,[[923,1,1,34,35]]]],[3997,6753,7231,11699,12862,13456,14614,15096,15148,15152,15155,15493,15614,15658,15696,15769,15771,15950,15953,16219,18093,18776,18877,18914,19245,20317,20333,20522,20968,20976,21093,21293,22122,22373,23061]]],["rememberest",[1,1,[[18,1,1,0,1,[[565,1,1,0,1]]]],[15313]]],["remembereth",[3,3,[[18,2,2,0,2,[[486,1,1,0,1],[580,1,1,1,2]]],[24,1,1,2,3,[[797,1,1,2,3]]]],[14033,15563,20319]]],["remembrance",[6,6,[[10,1,1,0,1,[[307,1,1,0,1]]],[18,2,2,1,3,[[554,1,1,1,2],[560,1,1,2,3]]],[22,1,1,3,4,[[721,1,1,3,4]]],[25,2,2,4,6,[[822,2,2,4,6]]]],[9335,15099,15245,18531,20967,20968]]],["think",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12415]]]]},{"k":"H2143","v":[["*",[23,23,[[1,2,2,0,2,[[52,1,1,0,1],[66,1,1,1,2]]],[4,2,2,2,4,[[177,1,1,2,3],[184,1,1,3,4]]],[16,1,1,4,5,[[434,1,1,4,5]]],[17,1,1,5,6,[[453,1,1,5,6]]],[18,11,11,6,17,[[483,1,1,6,7],[486,1,1,7,8],[507,1,1,8,9],[511,1,1,9,10],[574,1,1,10,11],[579,1,1,11,12],[586,1,1,12,13],[588,1,1,13,14],[589,1,1,14,15],[612,1,1,15,16],[622,1,1,16,17]]],[19,1,1,17,18,[[637,1,1,17,18]]],[20,1,1,18,19,[[667,1,1,18,19]]],[22,2,2,19,21,[[704,2,2,19,21]]],[27,2,2,21,23,[[873,1,1,21,22],[875,1,1,22,23]]]],[1594,1997,5566,5784,12862,13293,13990,14027,14323,14404,15490,15533,15770,15797,15809,16188,16327,16663,17480,18138,18144,22257,22289]]],["memorial",[5,5,[[1,1,1,0,1,[[52,1,1,0,1]]],[16,1,1,1,2,[[434,1,1,1,2]]],[18,2,2,2,4,[[486,1,1,2,3],[612,1,1,3,4]]],[27,1,1,4,5,[[873,1,1,4,5]]]],[1594,12862,14027,16188,22257]]],["memory",[5,5,[[18,2,2,0,2,[[586,1,1,0,1],[622,1,1,1,2]]],[19,1,1,2,3,[[637,1,1,2,3]]],[20,1,1,3,4,[[667,1,1,3,4]]],[22,1,1,4,5,[[704,1,1,4,5]]]],[15770,16327,16663,17480,18144]]],["remembered",[1,1,[[18,1,1,0,1,[[588,1,1,0,1]]]],[15797]]],["remembrance",[11,11,[[1,1,1,0,1,[[66,1,1,0,1]]],[4,2,2,1,3,[[177,1,1,1,2],[184,1,1,2,3]]],[17,1,1,3,4,[[453,1,1,3,4]]],[18,6,6,4,10,[[483,1,1,4,5],[507,1,1,5,6],[511,1,1,6,7],[574,1,1,7,8],[579,1,1,8,9],[589,1,1,9,10]]],[22,1,1,10,11,[[704,1,1,10,11]]]],[1997,5566,5784,13293,13990,14323,14404,15490,15533,15809,18138]]],["scent",[1,1,[[27,1,1,0,1,[[875,1,1,0,1]]]],[22289]]]]},{"k":"H2144","v":[["Zacher",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10606]]]]},{"k":"H2145","v":[["*",[82,80,[[0,14,14,0,14,[[0,1,1,0,1],[4,1,1,1,2],[5,1,1,2,3],[6,3,3,3,6],[16,4,4,6,10],[33,4,4,10,14]]],[1,4,4,14,18,[[61,2,2,14,16],[62,2,2,16,18]]],[2,18,18,18,36,[[90,2,2,18,20],[92,2,2,20,22],[93,1,1,22,23],[95,2,2,23,25],[96,1,1,25,26],[101,2,2,26,28],[104,1,1,28,29],[107,1,1,29,30],[109,1,1,30,31],[111,1,1,31,32],[116,4,4,32,36]]],[3,18,17,36,53,[[117,3,3,36,39],[119,7,7,39,46],[121,1,1,46,47],[134,1,1,47,48],[142,1,1,48,49],[147,5,4,49,53]]],[4,2,2,53,55,[[156,1,1,53,54],[167,1,1,54,55]]],[5,2,2,55,57,[[191,1,1,55,56],[203,1,1,56,57]]],[6,3,2,57,59,[[231,3,2,57,59]]],[10,2,2,59,61,[[301,2,2,59,61]]],[13,2,2,61,63,[[397,2,2,61,63]]],[14,12,12,63,75,[[410,12,12,63,75]]],[22,1,1,75,76,[[744,1,1,75,76]]],[23,2,2,76,78,[[764,1,1,76,77],[774,1,1,77,78]]],[25,1,1,78,79,[[817,1,1,78,79]]],[38,1,1,79,80,[[925,1,1,79,80]]]],[26,107,156,162,168,175,407,409,411,420,995,1002,1004,1005,1821,1864,1879,1882,2748,2755,2779,2784,2818,2867,2878,2885,3046,3051,3201,3273,3331,3388,3573,3575,3576,3577,3606,3624,3626,3707,3714,3720,3726,3731,3732,3735,3795,4267,4551,4671,4681,4682,4699,5020,5338,5938,6277,7113,7114,9123,9124,11870,11873,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,18929,19437,19673,20779,23103]]],["+",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3795]]],["Male",[1,1,[[0,1,1,0,1,[[4,1,1,0,1]]]],[107]]],["child",[5,5,[[0,3,3,0,3,[[16,3,3,0,3]]],[2,1,1,3,4,[[101,1,1,3,4]]],[22,1,1,4,5,[[744,1,1,4,5]]]],[407,409,411,3046,18929]]],["him",[2,2,[[3,2,2,0,2,[[147,2,2,0,2]]]],[4681,4699]]],["male",[35,35,[[0,9,9,0,9,[[0,1,1,0,1],[5,1,1,1,2],[6,3,3,2,5],[16,1,1,5,6],[33,3,3,6,9]]],[1,1,1,9,10,[[61,1,1,9,10]]],[2,12,12,10,22,[[90,2,2,10,12],[92,2,2,12,14],[93,1,1,14,15],[96,1,1,15,16],[101,1,1,16,17],[111,1,1,17,18],[116,4,4,18,22]]],[3,6,6,22,28,[[117,3,3,22,25],[119,1,1,25,26],[134,1,1,26,27],[147,1,1,27,28]]],[4,1,1,28,29,[[156,1,1,28,29]]],[5,1,1,29,30,[[203,1,1,29,30]]],[6,2,2,30,32,[[231,2,2,30,32]]],[10,2,2,32,34,[[301,2,2,32,34]]],[38,1,1,34,35,[[925,1,1,34,35]]]],[26,156,162,168,175,420,995,1002,1004,1821,2748,2755,2779,2784,2818,2885,3051,3388,3573,3575,3576,3577,3606,3624,3626,3707,4267,4681,5020,6277,7113,7114,9123,9124,23103]]],["males",[30,30,[[0,1,1,0,1,[[33,1,1,0,1]]],[1,3,3,1,4,[[61,1,1,1,2],[62,2,2,2,4]]],[2,2,2,4,6,[[95,2,2,4,6]]],[3,8,8,6,14,[[119,6,6,6,12],[142,1,1,12,13],[147,1,1,13,14]]],[4,1,1,14,15,[[167,1,1,14,15]]],[5,1,1,15,16,[[191,1,1,15,16]]],[13,2,2,16,18,[[397,2,2,16,18]]],[14,12,12,18,30,[[410,12,12,18,30]]]],[1005,1864,1879,1882,2867,2878,3714,3720,3726,3731,3732,3735,4551,4671,5338,5938,11870,11873,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215]]],["man",[5,5,[[2,1,1,0,1,[[104,1,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]],[6,1,1,2,3,[[231,1,1,2,3]]],[23,2,2,3,5,[[764,1,1,3,4],[774,1,1,4,5]]]],[3201,4682,7113,19437,19673]]],["mankind",[2,2,[[2,2,2,0,2,[[107,1,1,0,1],[109,1,1,1,2]]]],[3273,3331]]],["men",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20779]]]]},{"k":"H2146","v":[["*",[24,22,[[1,8,7,0,7,[[61,1,1,0,1],[62,1,1,1,2],[66,1,1,2,3],[77,3,2,3,5],[79,1,1,5,6],[88,1,1,6,7]]],[2,1,1,7,8,[[112,1,1,7,8]]],[3,5,5,8,13,[[121,2,2,8,10],[126,1,1,10,11],[132,1,1,11,12],[147,1,1,12,13]]],[5,1,1,13,14,[[190,1,1,13,14]]],[15,1,1,14,15,[[414,1,1,14,15]]],[16,1,1,15,16,[[431,1,1,15,16]]],[17,1,1,16,17,[[448,1,1,16,17]]],[20,3,2,17,19,[[659,2,1,17,18],[660,1,1,18,19]]],[22,1,1,19,20,[[735,1,1,19,20]]],[37,1,1,20,21,[[916,1,1,20,21]]],[38,1,1,21,22,[[927,1,1,21,22]]]],[1830,1876,1997,2305,2322,2398,2671,3426,3807,3810,3998,4234,4718,5917,12327,12794,13165,17326,17349,18773,22961,23136]]],["memorial",[17,16,[[1,8,7,0,7,[[61,1,1,0,1],[62,1,1,1,2],[66,1,1,2,3],[77,3,2,3,5],[79,1,1,5,6],[88,1,1,6,7]]],[2,1,1,7,8,[[112,1,1,7,8]]],[3,5,5,8,13,[[121,2,2,8,10],[126,1,1,10,11],[132,1,1,11,12],[147,1,1,12,13]]],[5,1,1,13,14,[[190,1,1,13,14]]],[15,1,1,14,15,[[414,1,1,14,15]]],[37,1,1,15,16,[[916,1,1,15,16]]]],[1830,1876,1997,2305,2322,2398,2671,3426,3807,3810,3998,4234,4718,5917,12327,22961]]],["records",[1,1,[[16,1,1,0,1,[[431,1,1,0,1]]]],[12794]]],["remembrance",[5,4,[[20,3,2,0,2,[[659,2,1,0,1],[660,1,1,1,2]]],[22,1,1,2,3,[[735,1,1,2,3]]],[38,1,1,3,4,[[927,1,1,3,4]]]],[17326,17349,18773,23136]]],["remembrances",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13165]]]]},{"k":"H2147","v":[["Zichri",[12,12,[[1,1,1,0,1,[[55,1,1,0,1]]],[12,6,6,1,7,[[345,3,3,1,4],[346,1,1,4,5],[363,1,1,5,6],[364,1,1,6,7]]],[13,3,3,7,10,[[383,1,1,7,8],[389,1,1,8,9],[394,1,1,9,10]]],[15,2,2,10,12,[[423,1,1,10,11],[424,1,1,11,12]]]],[1676,10594,10598,10602,10630,11102,11125,11539,11657,11771,12597,12641]]]]},{"k":"H2148","v":[["*",[43,43,[[11,4,4,0,4,[[326,1,1,0,1],[327,2,2,1,3],[330,1,1,3,4]]],[12,12,12,4,16,[[342,1,1,4,5],[346,2,2,5,7],[352,3,3,7,10],[353,1,1,10,11],[361,1,1,11,12],[363,3,3,12,15],[364,1,1,15,16]]],[13,9,9,16,25,[[383,1,1,16,17],[386,1,1,17,18],[387,1,1,18,19],[390,1,1,19,20],[392,1,1,20,21],[395,2,2,21,23],[400,1,1,23,24],[401,1,1,24,25]]],[14,6,6,25,31,[[407,1,1,25,26],[408,1,1,26,27],[410,3,3,27,30],[412,1,1,30,31]]],[15,7,7,31,38,[[420,1,1,31,32],[423,3,3,32,35],[424,3,3,35,38]]],[22,1,1,38,39,[[686,1,1,38,39]]],[37,4,4,39,43,[[911,2,2,39,41],[917,2,2,41,43]]]],[9925,9933,9936,10026,10435,10636,10652,10809,10811,10815,10825,11040,11079,11088,11091,11130,11530,11601,11626,11697,11737,11792,11804,11945,11974,12135,12165,12204,12212,12217,12278,12497,12592,12593,12600,12640,12659,12665,17809,22879,22885,22963,22970]]],["Zachariah",[4,4,[[11,4,4,0,4,[[326,1,1,0,1],[327,2,2,1,3],[330,1,1,3,4]]]],[9925,9933,9936,10026]]],["Zechariah",[39,39,[[12,12,12,0,12,[[342,1,1,0,1],[346,2,2,1,3],[352,3,3,3,6],[353,1,1,6,7],[361,1,1,7,8],[363,3,3,8,11],[364,1,1,11,12]]],[13,9,9,12,21,[[383,1,1,12,13],[386,1,1,13,14],[387,1,1,14,15],[390,1,1,15,16],[392,1,1,16,17],[395,2,2,17,19],[400,1,1,19,20],[401,1,1,20,21]]],[14,6,6,21,27,[[407,1,1,21,22],[408,1,1,22,23],[410,3,3,23,26],[412,1,1,26,27]]],[15,7,7,27,34,[[420,1,1,27,28],[423,3,3,28,31],[424,3,3,31,34]]],[22,1,1,34,35,[[686,1,1,34,35]]],[37,4,4,35,39,[[911,2,2,35,37],[917,2,2,37,39]]]],[10435,10636,10652,10809,10811,10815,10825,11040,11079,11088,11091,11130,11530,11601,11626,11697,11737,11792,11804,11945,11974,12135,12165,12204,12212,12217,12278,12497,12592,12593,12600,12640,12659,12665,17809,22879,22885,22963,22970]]]]},{"k":"H2149","v":[["vilest",[1,1,[[18,1,1,0,1,[[489,1,1,0,1]]]],[14074]]]]},{"k":"H2150","v":[["sprigs",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18002]]]]},{"k":"H2151","v":[["*",[9,9,[[4,1,1,0,1,[[173,1,1,0,1]]],[19,3,3,1,4,[[650,2,2,1,3],[655,1,1,3,4]]],[22,2,2,4,6,[[742,2,2,4,6]]],[23,1,1,6,7,[[759,1,1,6,7]]],[24,2,2,7,9,[[797,2,2,7,9]]]],[5467,17064,17065,17203,18886,18888,19334,20318,20321]]],["+",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19334]]],["despise",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20318]]],["down",[2,2,[[22,2,2,0,2,[[742,2,2,0,2]]]],[18886,18888]]],["eaters",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17064]]],["glutton",[2,2,[[4,1,1,0,1,[[173,1,1,0,1]]],[19,1,1,1,2,[[650,1,1,1,2]]]],[5467,17065]]],["riotous",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17203]]],["vile",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20321]]]]},{"k":"H2152","v":[["*",[3,3,[[18,2,2,0,2,[[488,1,1,0,1],[596,1,1,1,2]]],[24,1,1,2,3,[[801,1,1,2,3]]]],[14065,15951,20452]]],["Horror",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15951]]],["horrible",[1,1,[[18,1,1,0,1,[[488,1,1,0,1]]]],[14065]]],["terrible",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20452]]]]},{"k":"H2153","v":[["Zilpah",[7,7,[[0,7,7,0,7,[[28,1,1,0,1],[29,3,3,1,4],[34,1,1,4,5],[36,1,1,5,6],[45,1,1,6,7]]]],[819,839,840,842,1037,1085,1404]]]]},{"k":"H2154","v":[["*",[29,27,[[2,4,3,0,3,[[107,1,1,0,1],[108,1,1,1,2],[109,2,1,2,3]]],[6,1,1,3,4,[[230,1,1,3,4]]],[17,2,2,4,6,[[452,1,1,4,5],[466,1,1,5,6]]],[18,2,2,6,8,[[503,1,1,6,7],[596,1,1,7,8]]],[19,3,3,8,11,[[637,1,1,8,9],[648,1,1,9,10],[651,1,1,10,11]]],[22,1,1,11,12,[[710,1,1,11,12]]],[23,1,1,12,13,[[757,1,1,12,13]]],[25,14,13,13,26,[[817,3,3,13,16],[823,2,2,16,18],[824,8,7,18,25],[825,1,1,25,26]]],[27,1,1,26,27,[[867,1,1,26,27]]]],[3268,3310,3332,7060,13271,13599,14283,16048,16679,17011,17088,18266,19293,20789,20805,20820,20985,20987,21028,21034,21036,21042,21051,21055,21056,21069,22176]]],["crime",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13599]]],["devices",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18266]]],["lewd",[2,2,[[25,2,2,0,2,[[817,1,1,0,1],[824,1,1,1,2]]]],[20789,21051]]],["lewdly",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[20987]]],["lewdness",[14,13,[[6,1,1,0,1,[[230,1,1,0,1]]],[23,1,1,1,2,[[757,1,1,1,2]]],[25,11,10,2,12,[[817,2,2,2,4],[823,1,1,4,5],[824,7,6,5,11],[825,1,1,11,12]]],[27,1,1,12,13,[[867,1,1,12,13]]]],[7060,19293,20805,20820,20985,21028,21034,21036,21042,21055,21056,21069,22176]]],["mind",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17011]]],["mischief",[3,3,[[18,2,2,0,2,[[503,1,1,0,1],[596,1,1,1,2]]],[19,1,1,2,3,[[637,1,1,2,3]]]],[14283,16048,16679]]],["purposes",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13271]]],["thought",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17088]]],["wickedness",[4,3,[[2,4,3,0,3,[[107,1,1,0,1],[108,1,1,1,2],[109,2,1,2,3]]]],[3268,3310,3332]]]]},{"k":"H2155","v":[["Zimmah",[3,3,[[12,2,2,0,2,[[343,2,2,0,2]]],[13,1,1,2,3,[[395,1,1,2,3]]]],[10474,10496,11803]]]]},{"k":"H2156","v":[["*",[5,5,[[3,1,1,0,1,[[129,1,1,0,1]]],[22,1,1,1,2,[[695,1,1,1,2]]],[25,2,2,2,4,[[809,1,1,2,3],[816,1,1,3,4]]],[33,1,1,4,5,[[901,1,1,4,5]]]],[4098,17993,20621,20756,22701]]],["branch",[3,3,[[3,1,1,0,1,[[129,1,1,0,1]]],[25,2,2,1,3,[[809,1,1,1,2],[816,1,1,2,3]]]],[4098,20621,20756]]],["branches",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22701]]],["slips",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17993]]]]},{"k":"H2157","v":[["Zamzummims",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4958]]]]},{"k":"H2158","v":[["*",[6,6,[[9,1,1,0,1,[[289,1,1,0,1]]],[17,1,1,1,2,[[470,1,1,1,2]]],[18,2,2,2,4,[[572,1,1,2,3],[596,1,1,3,4]]],[21,1,1,4,5,[[672,1,1,4,5]]],[22,1,1,5,6,[[702,1,1,5,6]]]],[8654,13730,15456,15952,17566,18111]]],["psalmist",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8654]]],["psalms",[1,1,[[18,1,1,0,1,[[572,1,1,0,1]]]],[15456]]],["singing",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17566]]],["songs",[3,3,[[17,1,1,0,1,[[470,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[22,1,1,2,3,[[702,1,1,2,3]]]],[13730,15952,18111]]]]},{"k":"H2159","v":[["branch",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18123]]]]},{"k":"H2160","v":[["Zemira",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10543]]]]},{"k":"H2161","v":[["*",[13,13,[[0,1,1,0,1,[[10,1,1,0,1]]],[4,1,1,1,2,[[171,1,1,1,2]]],[18,3,3,2,5,[[494,1,1,2,3],[508,1,1,3,4],[514,1,1,4,5]]],[19,2,2,5,7,[[657,1,1,5,6],[658,1,1,6,7]]],[23,2,2,7,9,[[748,1,1,7,8],[795,1,1,8,9]]],[24,1,1,9,10,[[798,1,1,9,10]]],[37,3,3,10,13,[[911,1,1,10,11],[918,2,2,11,13]]]],[272,5425,14106,14344,14462,17283,17300,19055,20224,20349,22884,22990,22991]]],["considereth",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17300]]],["devised",[3,3,[[18,1,1,0,1,[[508,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]]],[14344,20224,20349]]],["evil",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17283]]],["imagined",[1,1,[[0,1,1,0,1,[[10,1,1,0,1]]]],[272]]],["plotteth",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14462]]],["purposed",[2,2,[[18,1,1,0,1,[[494,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]]],[14106,19055]]],["thought",[4,4,[[4,1,1,0,1,[[171,1,1,0,1]]],[37,3,3,1,4,[[911,1,1,1,2],[918,2,2,2,4]]]],[5425,22884,22990,22991]]]]},{"k":"H2162","v":[["device",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16271]]]]},{"k":"H2163","v":[["appointed",[3,3,[[14,1,1,0,1,[[412,1,1,0,1]]],[15,2,2,1,3,[[422,1,1,1,2],[425,1,1,2,3]]]],[12266,12583,12702]]]]},{"k":"H2164","v":[["prepared",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21767]]]]},{"k":"H2165","v":[["*",[4,4,[[15,1,1,0,1,[[414,1,1,0,1]]],[16,2,2,1,3,[[434,2,2,1,3]]],[20,1,1,3,4,[[661,1,1,3,4]]]],[12313,12861,12865,17360]]],["season",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17360]]],["time",[2,2,[[15,1,1,0,1,[[414,1,1,0,1]]],[16,1,1,1,2,[[434,1,1,1,2]]]],[12313,12861]]],["times",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12865]]]]},{"k":"H2166","v":[["*",[11,11,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,10,10,1,11,[[851,2,2,1,3],[852,2,2,3,5],[853,1,1,5,6],[855,2,2,6,8],[856,3,3,8,11]]]],[12137,21774,21779,21814,21815,21873,21915,21918,21945,21955,21958]]],["season",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21945]]],["seasons",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21779]]],["time",[6,6,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,5,5,1,6,[[851,1,1,1,2],[852,2,2,2,4],[853,1,1,4,5],[856,1,1,5,6]]]],[12137,21774,21814,21815,21873,21955]]],["times",[3,3,[[26,3,3,0,3,[[855,2,2,0,2],[856,1,1,2,3]]]],[21915,21918,21958]]]]},{"k":"H2167","v":[["*",[46,42,[[6,1,1,0,1,[[215,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[18,41,37,3,40,[[484,1,1,3,4],[486,2,2,4,6],[495,1,1,6,7],[498,1,1,7,8],[504,1,1,8,9],[507,2,2,9,11],[510,1,1,11,12],[524,5,2,12,14],[534,2,2,14,16],[536,1,1,16,17],[538,1,1,17,18],[543,3,2,18,20],[545,2,2,20,22],[548,2,2,22,24],[552,1,1,24,25],[569,1,1,25,26],[575,2,2,26,28],[578,1,1,28,29],[581,1,1,29,30],[582,1,1,30,31],[585,2,2,31,33],[612,1,1,33,34],[615,1,1,34,35],[621,1,1,35,36],[623,1,1,36,37],[624,2,2,37,39],[626,1,1,39,40]]],[22,2,2,40,42,[[683,1,1,40,41],[690,1,1,41,42]]]],[6626,8652,10829,14012,14023,14032,14167,14204,14291,14323,14331,14368,14631,14632,14775,14777,14807,14827,14875,14877,14904,14932,14998,14999,15080,15412,15494,15495,15514,15604,15608,15743,15745,16178,16232,16314,16343,16352,16358,16388,17745,17905]]],["Sing",[3,3,[[18,2,2,0,2,[[507,1,1,0,1],[575,1,1,1,2]]],[22,1,1,2,3,[[690,1,1,2,3]]]],[14323,15495,17905]]],["forth",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14875]]],["praise",[11,11,[[18,11,11,0,11,[[484,1,1,0,1],[486,1,1,1,2],[498,1,1,2,3],[507,1,1,3,4],[534,1,1,4,5],[538,1,1,5,6],[575,1,1,6,7],[581,1,1,7,8],[585,1,1,8,9],[615,1,1,9,10],[624,1,1,10,11]]]],[14012,14023,14204,14331,14775,14827,15494,15604,15743,16232,16358]]],["praises",[19,16,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,18,15,1,16,[[486,1,1,1,2],[495,1,1,2,3],[504,1,1,3,4],[524,5,2,4,6],[545,2,2,6,8],[552,1,1,8,9],[569,1,1,9,10],[585,1,1,10,11],[612,1,1,11,12],[621,1,1,12,13],[623,1,1,13,14],[624,1,1,14,15],[626,1,1,15,16]]]],[8652,14032,14167,14291,14631,14632,14904,14932,15080,15412,15745,16178,16314,16343,16352,16388]]],["pruned",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17745]]],["psalms",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[10829,15608]]],["sing",[9,8,[[6,1,1,0,1,[[215,1,1,0,1]]],[18,8,7,1,8,[[510,1,1,1,2],[534,1,1,2,3],[536,1,1,3,4],[543,2,1,4,5],[548,2,2,5,7],[578,1,1,7,8]]]],[6626,14368,14777,14807,14877,14998,14999,15514]]]]},{"k":"H2168","v":[["prune",[2,2,[[2,2,2,0,2,[[114,2,2,0,2]]]],[3472,3473]]]]},{"k":"H2169","v":[["chamois",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5295]]]]},{"k":"H2170","v":[["musick",[4,4,[[26,4,4,0,4,[[852,4,4,0,4]]]],[21812,21814,21817,21822]]]]},{"k":"H2171","v":[["singers",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12197]]]]},{"k":"H2172","v":[["*",[4,4,[[18,2,2,0,2,[[558,1,1,0,1],[575,1,1,1,2]]],[22,1,1,2,3,[[729,1,1,2,3]]],[29,1,1,3,4,[[883,1,1,3,4]]]],[15219,15495,18676,22446]]],["melody",[2,2,[[22,1,1,0,1,[[729,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[18676,22446]]],["psalm",[2,2,[[18,2,2,0,2,[[558,1,1,0,1],[575,1,1,1,2]]]],[15219,15495]]]]},{"k":"H2173","v":[["+",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1301]]]]},{"k":"H2174","v":[["Zimri",[15,13,[[3,1,1,0,1,[[141,1,1,0,1]]],[10,7,7,1,8,[[306,7,7,1,8]]],[11,1,1,8,9,[[321,1,1,8,9]]],[12,5,3,9,12,[[339,1,1,9,10],[345,2,1,10,11],[346,2,1,11,12]]],[23,1,1,12,13,[[769,1,1,12,13]]]],[4485,9292,9293,9295,9298,9299,9301,9303,9787,10312,10611,10657,19559]]]]},{"k":"H2175","v":[["Zimran",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[660,10284]]]]},{"k":"H2176","v":[["song",[3,3,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,1,1,1,2,[[595,1,1,1,2]]],[22,1,1,2,3,[[690,1,1,2,3]]]],[1922,15883,17902]]]]},{"k":"H2177","v":[["*",[3,2,[[13,1,1,0,1,[[382,1,1,0,1]]],[18,2,1,1,2,[[621,2,1,1,2]]]],[11523,16318]]],["+",[2,1,[[18,2,1,0,1,[[621,2,1,0,1]]]],[16318]]],["kinds",[1,1,[[13,1,1,0,1,[[382,1,1,0,1]]]],[11523]]]]},{"k":"H2178","v":[["kinds",[4,4,[[26,4,4,0,4,[[852,4,4,0,4]]]],[21812,21814,21817,21822]]]]},{"k":"H2179","v":[["hindmost",[2,2,[[4,1,1,0,1,[[177,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]]],[5565,6083]]]]},{"k":"H2180","v":[["*",[11,9,[[1,1,1,0,1,[[53,1,1,0,1]]],[4,2,2,1,3,[[180,2,2,1,3]]],[6,3,1,3,4,[[225,3,1,3,4]]],[17,1,1,4,5,[[475,1,1,4,5]]],[22,4,4,5,9,[[685,1,1,5,6],[687,2,2,6,8],[697,1,1,8,9]]]],[1605,5624,5655,6933,13881,17786,17843,17844,18019]]],["tail",[9,8,[[1,1,1,0,1,[[53,1,1,0,1]]],[4,2,2,1,3,[[180,2,2,1,3]]],[6,2,1,3,4,[[225,2,1,3,4]]],[17,1,1,4,5,[[475,1,1,4,5]]],[22,3,3,5,8,[[687,2,2,5,7],[697,1,1,7,8]]]],[1605,5624,5655,6933,13881,17843,17844,18019]]],["tails",[2,2,[[6,1,1,0,1,[[225,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]]],[6933,17786]]]]},{"k":"H2181","v":[["*",[93,82,[[0,3,3,0,3,[[33,1,1,0,1],[37,2,2,1,3]]],[1,3,2,3,5,[[83,3,2,3,5]]],[2,9,7,5,12,[[106,1,1,5,6],[108,2,1,6,7],[109,3,2,7,9],[110,3,3,9,12]]],[3,2,2,12,14,[[131,1,1,12,13],[141,1,1,13,14]]],[4,3,3,14,17,[[174,1,1,14,15],[175,1,1,15,16],[183,1,1,16,17]]],[5,4,4,17,21,[[188,1,1,17,18],[192,3,3,18,21]]],[6,6,6,21,27,[[212,1,1,21,22],[218,2,2,22,24],[221,1,1,24,25],[226,1,1,25,26],[229,1,1,26,27]]],[10,1,1,27,28,[[293,1,1,27,28]]],[12,1,1,28,29,[[342,1,1,28,29]]],[13,3,2,29,31,[[387,3,2,29,31]]],[18,2,2,31,33,[[550,1,1,31,32],[583,1,1,32,33]]],[19,4,4,33,37,[[633,1,1,33,34],[634,1,1,34,35],[650,1,1,35,36],[656,1,1,36,37]]],[22,5,5,37,42,[[679,1,1,37,38],[701,3,3,38,41],[735,1,1,41,42]]],[23,6,6,42,48,[[746,1,1,42,43],[747,4,4,43,47],[749,1,1,47,48]]],[25,22,19,48,67,[[807,2,1,48,49],[817,12,11,49,60],[821,1,1,60,61],[824,7,6,61,67]]],[27,14,11,67,78,[[862,2,1,67,68],[863,1,1,68,69],[864,1,1,69,70],[865,8,6,70,76],[866,1,1,76,77],[870,1,1,77,78]]],[28,1,1,78,79,[[878,1,1,78,79]]],[29,1,1,79,80,[[885,1,1,79,80]]],[32,2,1,80,81,[[893,2,1,80,81]]],[33,1,1,81,82,[[902,1,1,81,82]]]],[1011,1134,1143,2511,2512,3242,3310,3323,3324,3352,3354,3359,4192,4472,5491,5518,5744,5870,5966,5971,5974,6562,6746,6752,6830,6950,7026,8832,10453,11635,11637,15047,15690,16566,16585,17071,17227,17675,18092,18093,18094,18768,18985,19003,19005,19008,19010,19065,20572,20777,20778,20779,20788,20790,20792,20793,20795,20796,20797,20803,20925,21010,21012,21026,21037,21050,21051,22096,22110,22131,22143,22145,22146,22147,22148,22151,22155,22209,22346,22481,22586,22716]]],["+",[13,11,[[2,1,1,0,1,[[110,1,1,0,1]]],[5,2,2,1,3,[[188,1,1,1,2],[192,1,1,2,3]]],[6,3,3,3,6,[[218,1,1,3,4],[221,1,1,4,5],[226,1,1,5,6]]],[23,1,1,6,7,[[747,1,1,6,7]]],[25,2,2,7,9,[[817,1,1,7,8],[821,1,1,8,9]]],[27,4,2,9,11,[[862,2,1,9,10],[865,2,1,10,11]]]],[3359,5870,5971,6746,6830,6950,19005,20803,20925,22096,22151]]],["commit",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21050]]],["fornication",[3,3,[[13,1,1,0,1,[[387,1,1,0,1]]],[22,1,1,1,2,[[701,1,1,1,2]]],[25,1,1,2,3,[[817,1,1,2,3]]]],[11635,18094,20788]]],["harlot",[29,28,[[0,3,3,0,3,[[33,1,1,0,1],[37,2,2,1,3]]],[5,2,2,3,5,[[192,2,2,3,5]]],[19,1,1,5,6,[[634,1,1,5,6]]],[22,3,3,6,9,[[679,1,1,6,7],[701,2,2,7,9]]],[23,4,4,9,13,[[746,1,1,9,10],[747,3,3,10,13]]],[25,8,8,13,21,[[817,5,5,13,18],[824,3,3,18,21]]],[27,3,3,21,24,[[863,1,1,21,22],[864,1,1,22,23],[865,1,1,23,24]]],[28,1,1,24,25,[[878,1,1,24,25]]],[29,1,1,25,26,[[885,1,1,25,26]]],[32,2,1,26,27,[[893,2,1,26,27]]],[33,1,1,27,28,[[902,1,1,27,28]]]],[1011,1134,1143,5966,5974,16585,17675,18092,18093,18985,19003,19008,19010,20777,20778,20790,20793,20797,21012,21026,21051,22110,22131,22148,22346,22481,22586,22716]]],["harlots",[2,2,[[10,1,1,0,1,[[293,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]]],[8832,17227]]],["harlots'",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19065]]],["whore",[9,9,[[2,3,3,0,3,[[108,1,1,0,1],[110,2,2,1,3]]],[4,2,2,3,5,[[174,1,1,3,4],[175,1,1,4,5]]],[6,1,1,5,6,[[229,1,1,5,6]]],[19,1,1,6,7,[[650,1,1,6,7]]],[22,1,1,7,8,[[735,1,1,7,8]]],[25,1,1,8,9,[[817,1,1,8,9]]]],[3310,3352,3354,5491,5518,7026,17071,18768,20790]]],["whoredom",[8,8,[[2,2,2,0,2,[[108,1,1,0,1],[109,1,1,1,2]]],[3,1,1,2,3,[[141,1,1,2,3]]],[25,1,1,3,4,[[817,1,1,3,4]]],[27,4,4,4,8,[[865,3,3,4,7],[866,1,1,7,8]]]],[3310,3323,4472,20779,22143,22146,22147,22155]]],["whoredoms",[4,3,[[13,1,1,0,1,[[387,1,1,0,1]]],[25,3,2,1,3,[[817,1,1,1,2],[824,2,1,2,3]]]],[11637,20796,21010]]],["whores",[2,2,[[25,1,1,0,1,[[817,1,1,0,1]]],[27,1,1,1,2,[[865,1,1,1,2]]]],[20795,22147]]],["whoring",[18,17,[[1,3,2,0,2,[[83,3,2,0,2]]],[2,3,3,2,5,[[106,1,1,2,3],[109,2,2,3,5]]],[3,1,1,5,6,[[131,1,1,5,6]]],[4,1,1,6,7,[[183,1,1,6,7]]],[6,2,2,7,9,[[212,1,1,7,8],[218,1,1,8,9]]],[12,1,1,9,10,[[342,1,1,9,10]]],[13,1,1,10,11,[[387,1,1,10,11]]],[18,2,2,11,13,[[550,1,1,11,12],[583,1,1,12,13]]],[25,2,2,13,15,[[807,1,1,13,14],[824,1,1,14,15]]],[27,2,2,15,17,[[865,1,1,15,16],[870,1,1,16,17]]]],[2511,2512,3242,3323,3324,4192,5744,6562,6752,10453,11637,15047,15690,20572,21037,22145,22209]]],["whorish",[3,3,[[19,1,1,0,1,[[633,1,1,0,1]]],[25,2,2,1,3,[[807,1,1,1,2],[817,1,1,2,3]]]],[16566,20572,20792]]]]},{"k":"H2182","v":[["Zanoah",[5,5,[[5,2,2,0,2,[[201,2,2,0,2]]],[12,1,1,2,3,[[341,1,1,2,3]]],[15,2,2,3,5,[[415,1,1,3,4],[423,1,1,4,5]]]],[6236,6258,10403,12340,12618]]]]},{"k":"H2183","v":[["*",[12,10,[[0,1,1,0,1,[[37,1,1,0,1]]],[11,1,1,1,2,[[321,1,1,1,2]]],[25,2,2,2,4,[[824,2,2,2,4]]],[27,6,5,4,9,[[862,2,1,4,5],[863,2,2,5,7],[865,1,1,7,8],[866,1,1,8,9]]],[33,2,1,9,10,[[902,2,1,9,10]]]],[1143,9778,21018,21036,22096,22107,22109,22145,22156,22716]]],["+",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21018]]],["whoredom",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1143]]],["whoredoms",[10,8,[[11,1,1,0,1,[[321,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]],[27,6,5,2,7,[[862,2,1,2,3],[863,2,2,3,5],[865,1,1,5,6],[866,1,1,6,7]]],[33,2,1,7,8,[[902,2,1,7,8]]]],[9778,21036,22096,22107,22109,22145,22156,22716]]]]},{"k":"H2184","v":[["*",[9,9,[[3,1,1,0,1,[[130,1,1,0,1]]],[23,3,3,1,4,[[747,2,2,1,3],[757,1,1,3,4]]],[25,3,3,4,7,[[824,1,1,4,5],[844,2,2,5,7]]],[27,2,2,7,9,[[865,1,1,7,8],[867,1,1,8,9]]]],[4141,19004,19011,19293,21034,21579,21581,22144,22177]]],["Whoredom",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22144]]],["whoredom",[6,6,[[23,2,2,0,2,[[747,1,1,0,1],[757,1,1,1,2]]],[25,3,3,2,5,[[824,1,1,2,3],[844,2,2,3,5]]],[27,1,1,5,6,[[867,1,1,5,6]]]],[19011,19293,21034,21579,21581,22177]]],["whoredoms",[2,2,[[3,1,1,0,1,[[130,1,1,0,1]]],[23,1,1,1,2,[[747,1,1,1,2]]]],[4141,19004]]]]},{"k":"H2185","v":[["armour",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9518]]]]},{"k":"H2186","v":[["*",[20,20,[[12,1,1,0,1,[[365,1,1,0,1]]],[13,2,2,1,3,[[377,1,1,1,2],[395,1,1,2,3]]],[18,10,10,3,13,[[520,1,1,3,4],[521,2,2,4,6],[537,2,2,6,8],[551,1,1,8,9],[554,1,1,9,10],[565,1,1,10,11],[566,1,1,11,12],[585,1,1,12,13]]],[22,1,1,13,14,[[697,1,1,13,14]]],[24,3,3,14,17,[[798,1,1,14,15],[799,2,2,15,17]]],[27,2,2,17,19,[[869,2,2,17,19]]],[37,1,1,19,20,[[920,1,1,19,20]]]],[11152,11428,11810,14568,14580,14594,14808,14817,15049,15100,15322,15364,15753,18010,20339,20371,20385,22197,22199,23022]]],["+",[2,2,[[22,1,1,0,1,[[697,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]]],[18010,20371]]],["away",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11810]]],["cast",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14594]]],["off",[16,16,[[12,1,1,0,1,[[365,1,1,0,1]]],[13,1,1,1,2,[[377,1,1,1,2]]],[18,9,9,2,11,[[520,1,1,2,3],[521,1,1,3,4],[537,2,2,4,6],[551,1,1,6,7],[554,1,1,7,8],[565,1,1,8,9],[566,1,1,9,10],[585,1,1,10,11]]],[24,2,2,11,13,[[798,1,1,11,12],[799,1,1,12,13]]],[27,2,2,13,15,[[869,2,2,13,15]]],[37,1,1,15,16,[[920,1,1,15,16]]]],[11152,11428,14568,14580,14808,14817,15049,15100,15322,15364,15753,20339,20385,22197,22199,23022]]]]},{"k":"H2187","v":[["leap",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5832]]]]},{"k":"H2188","v":[["sweat",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[74]]]]},{"k":"H2189","v":[["*",[7,7,[[4,1,1,0,1,[[180,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]],[23,4,4,2,6,[[759,1,1,2,3],[768,1,1,3,4],[773,1,1,4,5],[778,1,1,5,6]]],[25,1,1,6,7,[[824,1,1,6,7]]]],[5636,11799,19319,19533,19653,19818,21053]]],["removed",[6,6,[[4,1,1,0,1,[[180,1,1,0,1]]],[23,4,4,1,5,[[759,1,1,1,2],[768,1,1,2,3],[773,1,1,3,4],[778,1,1,4,5]]],[25,1,1,5,6,[[824,1,1,5,6]]]],[5636,19319,19533,19653,19818,21053]]],["trouble",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11799]]]]},{"k":"H2190","v":[["*",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1067,10294]]],["Zaavan",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1067]]],["Zavan",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10294]]]]},{"k":"H2191","v":[["little",[5,3,[[17,1,1,0,1,[[471,1,1,0,1]]],[22,4,2,1,3,[[706,4,2,1,3]]]],[13738,18174,18177]]]]},{"k":"H2192","v":[["little",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21941]]]]},{"k":"H2193","v":[["extinct",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13261]]]]},{"k":"H2194","v":[["*",[12,11,[[3,3,2,0,2,[[139,3,2,0,2]]],[18,1,1,2,3,[[484,1,1,2,3]]],[19,3,3,3,6,[[649,1,1,3,4],[651,1,1,4,5],[652,1,1,5,6]]],[22,1,1,6,7,[[744,1,1,6,7]]],[26,1,1,7,8,[[860,1,1,7,8]]],[32,1,1,8,9,[[898,1,1,8,9]]],[37,1,1,9,10,[[911,1,1,9,10]]],[38,1,1,10,11,[[925,1,1,10,11]]]],[4423,4424,14006,17029,17103,17136,18936,22066,22658,22890,23093]]],["abhor",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17103]]],["abhorred",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17029]]],["abominable",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22658]]],["angry",[2,2,[[18,1,1,0,1,[[484,1,1,0,1]]],[19,1,1,1,2,[[652,1,1,1,2]]]],[14006,17136]]],["defied",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4424]]],["defy",[2,2,[[3,2,2,0,2,[[139,2,2,0,2]]]],[4423,4424]]],["indignation",[4,4,[[22,1,1,0,1,[[744,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]],[37,1,1,2,3,[[911,1,1,2,3]]],[38,1,1,3,4,[[925,1,1,3,4]]]],[18936,22066,22890,23093]]]]},{"k":"H2195","v":[["*",[22,22,[[18,4,4,0,4,[[515,1,1,0,1],[546,1,1,1,2],[555,1,1,2,3],[579,1,1,3,4]]],[22,5,5,4,9,[[688,2,2,4,6],[691,1,1,6,7],[704,1,1,7,8],[708,1,1,8,9]]],[23,3,3,9,12,[[754,1,1,9,10],[759,1,1,10,11],[794,1,1,11,12]]],[24,1,1,12,13,[[798,1,1,12,13]]],[25,3,3,13,16,[[822,1,1,13,14],[823,2,2,14,16]]],[26,2,2,16,18,[[857,1,1,16,17],[860,1,1,17,18]]],[27,1,1,18,19,[[868,1,1,18,19]]],[33,1,1,19,20,[[900,1,1,19,20]]],[34,1,1,20,21,[[905,1,1,20,21]]],[35,1,1,21,22,[[908,1,1,21,22]]]],[14493,14959,15162,15531,17855,17875,17911,18150,18244,19211,19332,20191,20338,20975,21000,21007,21980,22072,22194,22690,22780,22828]]],["+",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22194]]],["anger",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14493]]],["indignation",[20,20,[[18,3,3,0,3,[[546,1,1,0,1],[555,1,1,1,2],[579,1,1,2,3]]],[22,5,5,3,8,[[688,2,2,3,5],[691,1,1,5,6],[704,1,1,6,7],[708,1,1,7,8]]],[23,3,3,8,11,[[754,1,1,8,9],[759,1,1,9,10],[794,1,1,10,11]]],[24,1,1,11,12,[[798,1,1,11,12]]],[25,3,3,12,15,[[822,1,1,12,13],[823,2,2,13,15]]],[26,2,2,15,17,[[857,1,1,15,16],[860,1,1,16,17]]],[33,1,1,17,18,[[900,1,1,17,18]]],[34,1,1,18,19,[[905,1,1,18,19]]],[35,1,1,19,20,[[908,1,1,19,20]]]],[14959,15162,15531,17855,17875,17911,18150,18244,19211,19332,20191,20338,20975,21000,21007,21980,22072,22690,22780,22828]]]]},{"k":"H2196","v":[["*",[5,4,[[0,1,1,0,1,[[39,1,1,0,1]]],[13,2,1,1,2,[[392,2,1,1,2]]],[19,1,1,2,3,[[646,1,1,2,3]]],[26,1,1,3,4,[[850,1,1,3,4]]]],[1178,11751,16928,21747]]],["fretteth",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16928]]],["liking",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21747]]],["sad",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1178]]],["wroth",[2,1,[[13,2,1,0,1,[[392,2,1,0,1]]]],[11751]]]]},{"k":"H2197","v":[["*",[6,6,[[13,2,2,0,2,[[382,1,1,0,1],[394,1,1,1,2]]],[19,1,1,2,3,[[646,1,1,2,3]]],[22,1,1,3,4,[[708,1,1,3,4]]],[31,1,1,4,5,[[889,1,1,4,5]]],[32,1,1,5,6,[[899,1,1,5,6]]]],[11519,11773,16937,18247,22546,22673]]],["+",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22546]]],["indignation",[2,2,[[22,1,1,0,1,[[708,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]]],[18247,22673]]],["rage",[2,2,[[13,2,2,0,2,[[382,1,1,0,1],[394,1,1,1,2]]]],[11519,11773]]],["wrath",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16937]]]]},{"k":"H2198","v":[["displeased",[2,2,[[10,2,2,0,2,[[310,1,1,0,1],[311,1,1,1,2]]]],[9451,9455]]]]},{"k":"H2199","v":[["*",[73,73,[[1,1,1,0,1,[[51,1,1,0,1]]],[5,1,1,1,2,[[194,1,1,1,2]]],[6,13,13,2,15,[[213,2,2,2,4],[214,2,2,4,6],[216,4,4,6,10],[220,2,2,10,12],[222,1,1,12,13],[228,2,2,13,15]]],[8,10,10,15,25,[[239,1,1,15,16],[240,1,1,16,17],[242,2,2,17,19],[243,1,1,19,20],[247,2,2,20,22],[249,1,1,22,23],[250,1,1,23,24],[263,1,1,24,25]]],[9,5,5,25,30,[[279,1,1,25,26],[285,2,2,26,28],[286,2,2,28,30]]],[10,1,1,30,31,[[312,1,1,30,31]]],[12,1,1,31,32,[[342,1,1,31,32]]],[13,3,3,32,35,[[384,1,1,32,33],[386,1,1,33,34],[398,1,1,34,35]]],[15,2,2,35,37,[[421,2,2,35,37]]],[16,1,1,37,38,[[429,1,1,37,38]]],[17,2,2,38,40,[[466,1,1,38,39],[470,1,1,39,40]]],[18,5,5,40,45,[[499,1,1,40,41],[584,2,2,41,43],[619,2,2,43,45]]],[22,6,6,45,51,[[692,1,1,45,46],[693,2,2,46,48],[704,1,1,48,49],[708,1,1,49,50],[735,1,1,50,51]]],[23,8,8,51,59,[[755,2,2,51,53],[764,1,1,53,54],[769,1,1,54,55],[774,1,1,55,56],[791,1,1,56,57],[792,2,2,57,59]]],[24,1,1,59,60,[[799,1,1,59,60]]],[25,4,4,60,64,[[810,1,1,60,61],[812,1,1,61,62],[822,1,1,62,63],[828,1,1,63,64]]],[27,2,2,64,66,[[868,1,1,64,65],[869,1,1,65,66]]],[28,1,1,66,67,[[876,1,1,66,67]]],[31,2,2,67,69,[[889,1,1,67,68],[891,1,1,68,69]]],[32,1,1,69,70,[[895,1,1,69,70]]],[34,2,2,70,72,[[903,1,1,70,71],[904,1,1,71,72]]],[37,1,1,72,73,[[916,1,1,72,73]]]],[1577,6018,6577,6583,6609,6612,6660,6661,6688,6689,6821,6825,6871,7015,7016,7310,7329,7360,7361,7387,7468,7470,7528,7571,7954,8336,8515,8539,8558,8559,9512,10448,11573,11596,11895,12515,12539,12763,13626,13729,14209,15712,15718,16287,16291,17959,17964,17965,18147,18236,18778,19237,19238,19430,19568,19682,20075,20100,20111,20362,20630,20668,20956,21151,22192,22196,22305,22536,22565,22612,22733,22759,22955]]],["+",[3,3,[[6,2,2,0,2,[[214,2,2,0,2]]],[8,1,1,2,3,[[242,1,1,2,3]]]],[6609,6612,7360]]],["Assemble",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8558]]],["Cry",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20956]]],["assemble",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8559]]],["called",[1,1,[[6,1,1,0,1,[[222,1,1,0,1]]]],[6871]]],["company",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7016]]],["cried",[26,26,[[1,1,1,0,1,[[51,1,1,0,1]]],[6,5,5,1,6,[[213,2,2,1,3],[216,2,2,3,5],[220,1,1,5,6]]],[8,5,5,6,11,[[242,1,1,6,7],[247,2,2,7,9],[250,1,1,9,10],[263,1,1,10,11]]],[9,1,1,11,12,[[285,1,1,11,12]]],[12,1,1,12,13,[[342,1,1,12,13]]],[13,1,1,13,14,[[398,1,1,13,14]]],[15,2,2,14,16,[[421,2,2,14,16]]],[16,1,1,16,17,[[429,1,1,16,17]]],[18,4,4,17,21,[[499,1,1,17,18],[584,1,1,18,19],[619,2,2,19,21]]],[25,2,2,21,23,[[810,1,1,21,22],[812,1,1,22,23]]],[27,1,1,23,24,[[868,1,1,23,24]]],[31,1,1,24,25,[[889,1,1,24,25]]],[37,1,1,25,26,[[916,1,1,25,26]]]],[1577,6577,6583,6660,6661,6821,7361,7468,7470,7571,7954,8515,10448,11895,12515,12539,12763,14209,15712,16287,16291,20630,20668,22192,22536,22955]]],["criest",[2,2,[[22,1,1,0,1,[[735,1,1,0,1]]],[23,1,1,1,2,[[774,1,1,1,2]]]],[18778,19682]]],["cry",[20,20,[[6,1,1,0,1,[[220,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]],[13,1,1,2,3,[[386,1,1,2,3]]],[17,2,2,3,5,[[466,1,1,3,4],[470,1,1,4,5]]],[18,1,1,5,6,[[584,1,1,5,6]]],[22,4,4,6,10,[[692,1,1,6,7],[693,2,2,7,9],[708,1,1,9,10]]],[23,5,5,10,15,[[755,2,2,10,12],[769,1,1,12,13],[791,1,1,13,14],[792,1,1,14,15]]],[24,1,1,15,16,[[799,1,1,15,16]]],[25,1,1,16,17,[[828,1,1,16,17]]],[27,1,1,17,18,[[869,1,1,17,18]]],[28,1,1,18,19,[[876,1,1,18,19]]],[32,1,1,19,20,[[895,1,1,19,20]]]],[6825,8539,11596,13626,13729,15718,17959,17964,17965,18236,19237,19238,19568,20075,20100,20362,21151,22196,22305,22612]]],["crying",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8336]]],["gathered",[2,2,[[6,2,2,0,2,[[216,2,2,0,2]]]],[6688,6689]]],["out",[10,10,[[8,3,3,0,3,[[239,1,1,0,1],[240,1,1,1,2],[243,1,1,2,3]]],[10,1,1,3,4,[[312,1,1,3,4]]],[13,1,1,4,5,[[384,1,1,4,5]]],[22,1,1,5,6,[[704,1,1,5,6]]],[23,2,2,6,8,[[764,1,1,6,7],[792,1,1,7,8]]],[34,2,2,8,10,[[903,1,1,8,9],[904,1,1,9,10]]]],[7310,7329,7387,9512,11573,18147,19430,20111,22733,22759]]],["proclaimed",[1,1,[[31,1,1,0,1,[[891,1,1,0,1]]]],[22565]]],["themselves",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7528]]],["together",[2,2,[[5,1,1,0,1,[[194,1,1,0,1]]],[6,1,1,1,2,[[228,1,1,1,2]]]],[6018,7015]]]]},{"k":"H2200","v":[["cried",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21925]]]]},{"k":"H2201","v":[["*",[18,18,[[0,1,1,0,1,[[17,1,1,0,1]]],[15,2,2,1,3,[[417,1,1,1,2],[421,1,1,2,3]]],[16,2,2,3,5,[[429,1,1,3,4],[434,1,1,4,5]]],[17,1,1,5,6,[[451,1,1,5,6]]],[19,1,1,6,7,[[648,1,1,6,7]]],[20,1,1,7,8,[[667,1,1,7,8]]],[22,3,3,8,11,[[693,2,2,8,10],[743,1,1,10,11]]],[23,6,6,11,17,[[762,1,1,11,12],[764,1,1,12,13],[792,2,2,13,15],[794,1,1,15,16],[795,1,1,16,17]]],[25,1,1,17,18,[[828,1,1,17,18]]]],[444,12388,12520,12763,12865,13256,16997,17492,17965,17968,18916,19406,19438,20084,20114,20212,20266,21149]]],["+",[3,3,[[19,1,1,0,1,[[648,1,1,0,1]]],[20,1,1,1,2,[[667,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[16997,17492,20114]]],["cry",[14,14,[[0,1,1,0,1,[[17,1,1,0,1]]],[15,2,2,1,3,[[417,1,1,1,2],[421,1,1,2,3]]],[16,2,2,3,5,[[429,1,1,3,4],[434,1,1,4,5]]],[17,1,1,5,6,[[451,1,1,5,6]]],[22,2,2,6,8,[[693,2,2,6,8]]],[23,5,5,8,13,[[762,1,1,8,9],[764,1,1,9,10],[792,1,1,10,11],[794,1,1,11,12],[795,1,1,12,13]]],[25,1,1,13,14,[[828,1,1,13,14]]]],[444,12388,12520,12763,12865,13256,17965,17968,19406,19438,20084,20212,20266,21149]]],["crying",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18916]]]]},{"k":"H2202","v":[["Ziphron",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4825]]]]},{"k":"H2203","v":[["pitch",[3,2,[[1,1,1,0,1,[[51,1,1,0,1]]],[22,2,1,1,2,[[712,2,1,1,2]]]],[1557,18312]]]]},{"k":"H2204","v":[["*",[27,26,[[0,6,6,0,6,[[17,2,2,0,2],[18,1,1,2,3],[23,1,1,3,4],[26,2,2,4,6]]],[5,4,3,6,9,[[199,2,1,6,7],[209,2,2,7,9]]],[7,1,1,9,10,[[232,1,1,9,10]]],[8,6,6,10,16,[[237,1,1,10,11],[239,1,1,11,12],[243,2,2,12,14],[247,1,1,14,15],[252,1,1,15,16]]],[9,1,1,16,17,[[285,1,1,16,17]]],[10,2,2,17,19,[[291,2,2,17,19]]],[11,1,1,19,20,[[316,1,1,19,20]]],[12,1,1,20,21,[[360,1,1,20,21]]],[13,1,1,21,22,[[390,1,1,21,22]]],[17,1,1,22,23,[[449,1,1,22,23]]],[18,1,1,23,24,[[514,1,1,23,24]]],[19,2,2,24,26,[[649,1,1,24,25],[650,1,1,25,26]]]],[436,437,488,592,728,729,6155,6461,6462,7139,7262,7315,7370,7374,7462,7630,8543,8718,8732,9617,10984,11692,13189,14475,17021,17066]]],["aged",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8543]]],["old",[26,25,[[0,6,6,0,6,[[17,2,2,0,2],[18,1,1,2,3],[23,1,1,3,4],[26,2,2,4,6]]],[5,4,3,6,9,[[199,2,1,6,7],[209,2,2,7,9]]],[7,1,1,9,10,[[232,1,1,9,10]]],[8,6,6,10,16,[[237,1,1,10,11],[239,1,1,11,12],[243,2,2,12,14],[247,1,1,14,15],[252,1,1,15,16]]],[10,2,2,16,18,[[291,2,2,16,18]]],[11,1,1,18,19,[[316,1,1,18,19]]],[12,1,1,19,20,[[360,1,1,19,20]]],[13,1,1,20,21,[[390,1,1,20,21]]],[17,1,1,21,22,[[449,1,1,21,22]]],[18,1,1,22,23,[[514,1,1,22,23]]],[19,2,2,23,25,[[649,1,1,23,24],[650,1,1,24,25]]]],[436,437,488,592,728,729,6155,6461,6462,7139,7262,7315,7370,7374,7462,7630,8718,8732,9617,10984,11692,13189,14475,17021,17066]]]]},{"k":"H2205","v":[["*",[178,171,[[0,9,8,0,8,[[17,1,1,0,1],[18,1,1,1,2],[23,1,1,2,3],[24,1,1,3,4],[34,1,1,4,5],[42,1,1,5,6],[43,1,1,6,7],[49,2,1,7,8]]],[1,12,12,8,20,[[52,2,2,8,10],[53,1,1,10,11],[59,1,1,11,12],[61,1,1,12,13],[66,2,2,13,15],[67,1,1,15,16],[68,1,1,16,17],[73,3,3,17,20]]],[2,3,3,20,23,[[93,1,1,20,21],[98,1,1,21,22],[108,1,1,22,23]]],[3,9,7,23,30,[[127,5,4,23,27],[132,1,1,27,28],[138,3,2,28,30]]],[4,21,21,30,51,[[157,1,1,30,31],[171,1,1,31,32],[173,6,6,32,38],[174,4,4,38,42],[177,3,3,42,45],[179,1,1,45,46],[180,1,1,46,47],[181,1,1,47,48],[183,2,2,48,50],[184,1,1,50,51]]],[5,9,9,51,60,[[192,1,1,51,52],[193,1,1,52,53],[194,2,2,53,55],[195,1,1,55,56],[206,1,1,56,57],[209,1,1,57,58],[210,2,2,58,60]]],[6,14,14,60,74,[[212,1,1,60,61],[218,2,2,61,63],[221,6,6,63,69],[229,4,4,69,73],[231,1,1,73,74]]],[7,4,4,74,78,[[235,4,4,74,78]]],[8,9,9,78,87,[[237,2,2,78,80],[239,1,1,80,81],[243,1,1,81,82],[246,1,1,82,83],[250,1,1,83,84],[251,1,1,84,85],[263,1,1,85,86],[265,1,1,86,87]]],[9,6,6,87,93,[[269,1,1,87,88],[271,1,1,88,89],[278,1,1,89,90],[283,2,2,90,92],[285,1,1,92,93]]],[10,12,12,93,105,[[298,2,2,93,95],[302,3,3,95,98],[303,3,3,98,101],[310,2,2,101,103],[311,2,2,103,105]]],[11,6,5,105,110,[[318,2,1,105,106],[322,2,2,106,108],[331,1,1,108,109],[335,1,1,109,110]]],[12,3,3,110,113,[[348,1,1,110,111],[352,1,1,111,112],[358,1,1,112,113]]],[13,7,7,113,120,[[371,2,2,113,115],[376,3,3,115,118],[400,1,1,118,119],[402,1,1,119,120]]],[14,3,3,120,123,[[405,1,1,120,121],[412,2,2,121,123]]],[16,1,1,123,124,[[428,1,1,123,124]]],[17,4,4,124,128,[[447,1,1,124,125],[467,2,2,125,127],[477,1,1,127,128]]],[18,4,4,128,132,[[582,1,1,128,129],[584,1,1,129,130],[596,1,1,130,131],[625,1,1,131,132]]],[19,3,3,132,135,[[644,1,1,132,133],[647,1,1,133,134],[658,1,1,134,135]]],[20,1,1,135,136,[[662,1,1,135,136]]],[22,9,9,136,145,[[681,3,3,136,139],[687,1,1,139,140],[698,1,1,140,141],[702,1,1,141,142],[715,1,1,142,143],[725,1,1,143,144],[743,1,1,144,145]]],[23,7,6,145,151,[[750,1,1,145,146],[763,2,1,146,147],[770,1,1,147,148],[773,1,1,148,149],[775,1,1,149,150],[795,1,1,150,151]]],[24,6,6,151,157,[[797,1,1,151,152],[798,2,2,152,154],[800,1,1,154,155],[801,2,2,155,157]]],[25,10,9,157,166,[[808,1,1,157,158],[809,3,3,158,161],[810,2,1,161,162],[815,1,1,162,163],[821,2,2,163,165],[828,1,1,165,166]]],[28,4,4,166,170,[[876,2,2,166,168],[877,2,2,168,170]]],[37,2,1,170,171,[[918,2,1,170,171]]]],[435,461,593,666,1040,1317,1344,1513,1595,1597,1630,1786,1837,1988,1989,2011,2033,2178,2186,2191,2810,2954,3313,4040,4048,4049,4054,4219,4379,4382,5076,5418,5449,5450,5451,5453,5466,5467,5485,5486,5487,5488,5554,5555,5556,5586,5661,5689,5737,5756,5765,5970,5982,6012,6035,6048,6376,6462,6477,6507,6552,6733,6735,6834,6836,6837,6838,6839,6840,7040,7041,7044,7046,7118,7192,7194,7199,7201,7271,7272,7300,7373,7448,7590,7599,7956,8004,8098,8135,8303,8453,8464,8522,8986,8988,9157,9159,9164,9195,9209,9213,9415,9416,9459,9462,9706,9794,9798,10063,10166,10676,10816,10950,11270,11272,11401,11403,11408,11962,12010,12109,12260,12266,12760,13148,13632,13637,13939,15628,15731,15998,16383,16879,16983,17307,17394,17709,17712,17721,17844,18033,18118,18354,18605,18917,19100,19408,19589,19636,19704,20234,20329,20342,20353,20436,20454,20456,20603,20605,20615,20616,20628,20732,20896,20898,21130,22293,22305,22327,22339,22980]]],["+",[17,16,[[1,3,3,0,3,[[66,1,1,0,1],[73,2,2,1,3]]],[3,3,3,3,6,[[127,3,3,3,6]]],[7,1,1,6,7,[[235,1,1,6,7]]],[10,1,1,7,8,[[303,1,1,7,8]]],[17,1,1,8,9,[[467,1,1,8,9]]],[18,1,1,9,10,[[596,1,1,9,10]]],[23,3,2,10,12,[[763,2,1,10,11],[770,1,1,11,12]]],[25,4,4,12,16,[[808,1,1,12,13],[809,1,1,13,14],[815,1,1,14,15],[821,1,1,15,16]]]],[1988,2178,2186,4040,4048,4049,7192,9195,13632,15998,19408,19589,20603,20615,20732,20896]]],["aged",[3,3,[[17,2,2,0,2,[[447,1,1,0,1],[467,1,1,1,2]]],[23,1,1,2,3,[[750,1,1,2,3]]]],[13148,13637,19100]]],["ancient",[5,5,[[22,4,4,0,4,[[681,2,2,0,2],[687,1,1,2,3],[725,1,1,3,4]]],[25,1,1,4,5,[[810,1,1,4,5]]]],[17709,17712,17844,18605,20628]]],["ancients",[4,4,[[22,2,2,0,2,[[681,1,1,0,1],[702,1,1,1,2]]],[25,2,2,2,4,[[809,1,1,2,3],[828,1,1,3,4]]]],[17721,18118,20616,21130]]],["elders",[104,101,[[0,2,1,0,1,[[49,2,1,0,1]]],[1,8,8,1,9,[[52,2,2,1,3],[53,1,1,3,4],[61,1,1,4,5],[66,1,1,5,6],[67,1,1,6,7],[68,1,1,7,8],[73,1,1,8,9]]],[2,2,2,9,11,[[93,1,1,9,10],[98,1,1,10,11]]],[3,6,5,11,16,[[127,2,2,11,13],[132,1,1,13,14],[138,3,2,14,16]]],[4,20,20,16,36,[[157,1,1,16,17],[171,1,1,17,18],[173,6,6,18,24],[174,4,4,24,28],[177,3,3,28,31],[179,1,1,31,32],[181,1,1,32,33],[183,2,2,33,35],[184,1,1,35,36]]],[5,8,8,36,44,[[193,1,1,36,37],[194,2,2,37,39],[195,1,1,39,40],[206,1,1,40,41],[209,1,1,41,42],[210,2,2,42,44]]],[6,10,10,44,54,[[212,1,1,44,45],[218,2,2,45,47],[221,6,6,47,53],[231,1,1,53,54]]],[7,3,3,54,57,[[235,3,3,54,57]]],[8,6,6,57,63,[[239,1,1,57,58],[243,1,1,58,59],[246,1,1,59,60],[250,1,1,60,61],[251,1,1,61,62],[265,1,1,62,63]]],[9,6,6,63,69,[[269,1,1,63,64],[271,1,1,64,65],[278,1,1,65,66],[283,2,2,66,68],[285,1,1,68,69]]],[10,6,6,69,75,[[298,2,2,69,71],[310,2,2,71,73],[311,2,2,73,75]]],[11,6,5,75,80,[[318,2,1,75,76],[322,2,2,76,78],[331,1,1,78,79],[335,1,1,79,80]]],[12,3,3,80,83,[[348,1,1,80,81],[352,1,1,81,82],[358,1,1,82,83]]],[13,3,3,83,86,[[371,2,2,83,85],[400,1,1,85,86]]],[14,2,2,86,88,[[412,2,2,86,88]]],[18,1,1,88,89,[[584,1,1,88,89]]],[19,1,1,89,90,[[658,1,1,89,90]]],[22,1,1,90,91,[[715,1,1,90,91]]],[23,1,1,91,92,[[773,1,1,91,92]]],[24,5,5,92,97,[[797,1,1,92,93],[798,1,1,93,94],[800,1,1,94,95],[801,2,2,95,97]]],[25,2,2,97,99,[[809,1,1,97,98],[821,1,1,98,99]]],[28,2,2,99,101,[[876,1,1,99,100],[877,1,1,100,101]]]],[1513,1595,1597,1630,1837,1989,2011,2033,2191,2810,2954,4040,4054,4219,4379,4382,5076,5418,5449,5450,5451,5453,5466,5467,5485,5486,5487,5488,5554,5555,5556,5586,5689,5737,5756,5765,5982,6012,6035,6048,6376,6462,6477,6507,6552,6733,6735,6834,6836,6837,6838,6839,6840,7118,7194,7199,7201,7300,7373,7448,7590,7599,8004,8098,8135,8303,8453,8464,8522,8986,8988,9415,9416,9459,9462,9706,9794,9798,10063,10166,10676,10816,10950,11270,11272,11962,12260,12266,15731,17307,18354,19636,20329,20342,20436,20454,20456,20605,20898,22305,22327]]],["eldest",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[593]]],["man",[9,9,[[0,3,3,0,3,[[24,1,1,0,1],[42,1,1,1,2],[43,1,1,2,3]]],[2,1,1,3,4,[[108,1,1,3,4]]],[6,1,1,4,5,[[229,1,1,4,5]]],[8,2,2,5,7,[[237,2,2,5,7]]],[13,1,1,7,8,[[402,1,1,7,8]]],[22,1,1,8,9,[[743,1,1,8,9]]]],[666,1317,1344,3313,7046,7271,7272,12010,18917]]],["men",[12,12,[[10,2,2,0,2,[[302,2,2,0,2]]],[13,3,3,2,5,[[376,3,3,2,5]]],[14,1,1,5,6,[[405,1,1,5,6]]],[18,1,1,6,7,[[625,1,1,6,7]]],[19,2,2,7,9,[[644,1,1,7,8],[647,1,1,8,9]]],[28,2,2,9,11,[[876,1,1,9,10],[877,1,1,10,11]]],[37,1,1,11,12,[[918,1,1,11,12]]]],[9157,9159,11401,11403,11408,12109,16383,16879,16983,22293,22339,22980]]],["men's",[1,1,[[10,1,1,0,1,[[302,1,1,0,1]]]],[9164]]],["old",[20,20,[[0,3,3,0,3,[[17,1,1,0,1],[18,1,1,1,2],[34,1,1,2,3]]],[1,1,1,3,4,[[59,1,1,3,4]]],[4,1,1,4,5,[[180,1,1,4,5]]],[5,1,1,5,6,[[192,1,1,5,6]]],[6,3,3,6,9,[[229,3,3,6,9]]],[8,1,1,9,10,[[263,1,1,9,10]]],[10,2,2,10,12,[[303,2,2,10,12]]],[16,1,1,12,13,[[428,1,1,12,13]]],[17,1,1,13,14,[[477,1,1,13,14]]],[20,1,1,14,15,[[662,1,1,14,15]]],[22,1,1,15,16,[[698,1,1,15,16]]],[23,2,2,16,18,[[775,1,1,16,17],[795,1,1,17,18]]],[24,1,1,18,19,[[798,1,1,18,19]]],[25,1,1,19,20,[[810,1,1,19,20]]]],[435,461,1040,1786,5661,5970,7040,7041,7044,7956,9209,9213,12760,13939,17394,18033,19704,20234,20353,20628]]],["senators",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15628]]],["women",[1,1,[[37,1,1,0,1,[[918,1,1,0,1]]]],[22980]]]]},{"k":"H2206","v":[["*",[19,18,[[2,5,5,0,5,[[102,2,2,0,2],[103,1,1,2,3],[108,1,1,3,4],[110,1,1,4,5]]],[8,2,2,5,7,[[252,1,1,5,6],[256,1,1,6,7]]],[9,3,3,7,10,[[276,2,2,7,9],[286,1,1,9,10]]],[12,1,1,10,11,[[356,1,1,10,11]]],[14,1,1,11,12,[[411,1,1,11,12]]],[18,2,1,12,13,[[610,2,1,12,13]]],[22,2,2,13,15,[[685,1,1,13,14],[693,1,1,14,15]]],[23,2,2,15,17,[[785,1,1,15,16],[792,1,1,16,17]]],[25,1,1,17,18,[[806,1,1,17,18]]]],[3081,3082,3120,3308,3350,7653,7785,8244,8245,8563,10912,12240,16171,17802,17962,19962,20117,20547]]],["beard",[15,14,[[2,5,5,0,5,[[102,2,2,0,2],[103,1,1,2,3],[108,1,1,3,4],[110,1,1,4,5]]],[8,2,2,5,7,[[252,1,1,5,6],[256,1,1,6,7]]],[9,1,1,7,8,[[286,1,1,7,8]]],[14,1,1,8,9,[[411,1,1,8,9]]],[18,2,1,9,10,[[610,2,1,9,10]]],[22,2,2,10,12,[[685,1,1,10,11],[693,1,1,11,12]]],[23,1,1,12,13,[[792,1,1,12,13]]],[25,1,1,13,14,[[806,1,1,13,14]]]],[3081,3082,3120,3308,3350,7653,7785,8563,12240,16171,17802,17962,20117,20547]]],["beards",[4,4,[[9,2,2,0,2,[[276,2,2,0,2]]],[12,1,1,2,3,[[356,1,1,2,3]]],[23,1,1,3,4,[[785,1,1,3,4]]]],[8244,8245,10912,19962]]]]},{"k":"H2207","v":[["+",[1,1,[[0,1,1,0,1,[[47,1,1,0,1]]]],[1461]]]]},{"k":"H2208","v":[["age",[4,4,[[0,4,4,0,4,[[20,2,2,0,2],[36,1,1,2,3],[43,1,1,3,4]]]],[515,520,1086,1344]]]]},{"k":"H2209","v":[["*",[6,6,[[0,1,1,0,1,[[23,1,1,0,1]]],[10,2,2,1,3,[[301,1,1,1,2],[305,1,1,2,3]]],[18,2,2,3,5,[[548,2,2,3,5]]],[22,1,1,5,6,[[724,1,1,5,6]]]],[627,9112,9272,14985,14994,18590]]],["age",[3,3,[[10,1,1,0,1,[[305,1,1,0,1]]],[18,1,1,1,2,[[548,1,1,1,2]]],[22,1,1,2,3,[[724,1,1,2,3]]]],[9272,14985,18590]]],["old",[3,3,[[0,1,1,0,1,[[23,1,1,0,1]]],[10,1,1,1,2,[[301,1,1,1,2]]],[18,1,1,2,3,[[548,1,1,2,3]]]],[627,9112,14994]]]]},{"k":"H2210","v":[["*",[2,2,[[18,2,2,0,2,[[622,1,1,0,1],[623,1,1,1,2]]]],[16334,16349]]],["raiseth",[1,1,[[18,1,1,0,1,[[623,1,1,0,1]]]],[16349]]],["up",[1,1,[[18,1,1,0,1,[[622,1,1,0,1]]]],[16334]]]]},{"k":"H2211","v":[["up",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12162]]]]},{"k":"H2212","v":[["*",[7,7,[[12,2,2,0,2,[[365,1,1,0,1],[366,1,1,1,2]]],[17,2,2,2,4,[[463,1,1,2,3],[471,1,1,3,4]]],[18,1,1,4,5,[[489,1,1,4,5]]],[22,1,1,5,6,[[703,1,1,5,6]]],[38,1,1,6,7,[[927,1,1,6,7]]]],[11161,11168,13505,13763,14072,18124,23123]]],["down",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13763]]],["fine",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13505]]],["purge",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23123]]],["purified",[1,1,[[18,1,1,0,1,[[489,1,1,0,1]]]],[14072]]],["refined",[3,3,[[12,2,2,0,2,[[365,1,1,0,1],[366,1,1,1,2]]],[22,1,1,2,3,[[703,1,1,2,3]]]],[11161,11168,18124]]]]},{"k":"H2213","v":[["crown",[10,10,[[1,10,10,0,10,[[74,3,3,0,3],[79,2,2,3,5],[86,5,5,5,10]]]],[2206,2219,2220,2385,2386,2606,2615,2616,2630,2631]]]]},{"k":"H2214","v":[["loathsome",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4044]]]]},{"k":"H2215","v":[["warm",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12995]]]]},{"k":"H2216","v":[["Zerubbabel",[21,20,[[12,2,1,0,1,[[340,2,1,0,1]]],[14,5,5,1,6,[[404,1,1,1,2],[405,2,2,2,4],[406,2,2,4,6]]],[15,3,3,6,9,[[419,1,1,6,7],[424,2,2,7,9]]],[36,7,7,9,16,[[909,3,3,9,12],[910,4,4,12,16]]],[37,4,4,16,20,[[914,4,4,16,20]]]],[10380,12029,12099,12105,12112,12113,12427,12625,12671,22841,22852,22854,22857,22859,22876,22878,22928,22929,22931,22932]]]]},{"k":"H2217","v":[["Zerubbabel",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12136]]]]},{"k":"H2218","v":[["*",[4,3,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,3,2,1,3,[[154,3,2,1,3]]]],[4352,4951,4952]]],["Zared",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4352]]],["Zered",[3,2,[[4,3,2,0,2,[[154,3,2,0,2]]]],[4951,4952]]]]},{"k":"H2219","v":[["*",[39,38,[[1,1,1,0,1,[[81,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[7,1,1,3,4,[[234,1,1,3,4]]],[10,1,1,4,5,[[304,1,1,4,5]]],[17,1,1,5,6,[[453,1,1,5,6]]],[18,3,3,6,9,[[521,1,1,6,7],[583,1,1,7,8],[616,1,1,8,9]]],[19,4,4,9,13,[[628,1,1,9,10],[642,1,1,10,11],[647,2,2,11,13]]],[22,3,3,13,16,[[708,2,2,13,15],[719,1,1,15,16]]],[23,6,6,16,22,[[748,1,1,16,17],[759,1,1,17,18],[775,1,1,18,19],[793,2,2,19,21],[795,1,1,21,22]]],[25,13,13,22,35,[[806,3,3,22,25],[807,2,2,25,27],[813,2,2,27,29],[821,1,1,29,30],[823,1,1,30,31],[830,1,1,31,32],[831,2,2,32,34],[837,1,1,34,35]]],[37,3,2,35,37,[[911,3,2,35,37]]],[38,1,1,37,38,[[926,1,1,37,38]]]],[2458,3557,4231,7174,9233,13291,14582,15678,16242,16417,16814,16962,16980,18239,18241,18467,19038,19322,19701,20159,20163,20214,20548,20556,20558,20568,20571,20694,20695,20918,20991,21195,21227,21230,21378,22897,22899,23106]]],["+",[3,3,[[25,1,1,0,1,[[807,1,1,0,1]]],[37,2,2,1,3,[[911,2,2,1,3]]]],[20568,22897,22899]]],["away",[2,2,[[19,1,1,0,1,[[647,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]]],[16962,18239]]],["compassest",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16242]]],["disperse",[7,7,[[19,1,1,0,1,[[642,1,1,0,1]]],[25,6,6,1,7,[[813,1,1,1,2],[821,1,1,2,3],[823,1,1,3,4],[830,1,1,4,5],[831,2,2,5,7]]]],[16814,20695,20918,20991,21195,21227,21230]]],["dispersed",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21378]]],["fan",[4,4,[[22,1,1,0,1,[[719,1,1,0,1]]],[23,3,3,1,4,[[748,1,1,1,2],[759,1,1,2,3],[795,1,1,3,4]]]],[18467,19038,19322,20214]]],["scatter",[11,11,[[2,1,1,0,1,[[115,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[10,1,1,2,3,[[304,1,1,2,3]]],[18,1,1,3,4,[[583,1,1,3,4]]],[23,2,2,4,6,[[793,2,2,4,6]]],[25,4,4,6,10,[[806,3,3,6,9],[813,1,1,9,10]]],[37,1,1,10,11,[[911,1,1,10,11]]]],[3557,4231,9233,15678,20159,20163,20548,20556,20558,20694,22899]]],["scattered",[4,4,[[17,1,1,0,1,[[453,1,1,0,1]]],[18,1,1,1,2,[[521,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]],[25,1,1,3,4,[[807,1,1,3,4]]]],[13291,14582,19701,20571]]],["scattereth",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16980]]],["spread",[2,2,[[19,1,1,0,1,[[628,1,1,0,1]]],[38,1,1,1,2,[[926,1,1,1,2]]]],[16417,23106]]],["strawed",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2458]]],["winnowed",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18241]]],["winnoweth",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7174]]]]},{"k":"H2220","v":[["*",[91,84,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[55,1,1,1,2],[64,1,1,2,3]]],[3,1,1,3,4,[[122,1,1,3,4]]],[4,9,9,4,13,[[156,1,1,4,5],[157,1,1,5,6],[159,1,1,6,7],[161,1,1,7,8],[163,1,1,8,9],[170,1,1,9,10],[178,1,1,10,11],[185,2,2,11,13]]],[6,2,2,13,15,[[225,1,1,13,14],[226,1,1,14,15]]],[8,2,1,15,16,[[237,2,1,15,16]]],[9,2,2,16,18,[[267,1,1,16,17],[288,1,1,17,18]]],[10,1,1,18,19,[[298,1,1,18,19]]],[11,2,2,19,21,[[321,1,1,19,20],[329,1,1,20,21]]],[13,2,2,21,23,[[372,1,1,21,22],[398,1,1,22,23]]],[17,6,6,23,29,[[457,2,2,23,25],[461,1,1,25,26],[470,1,1,26,27],[473,1,1,27,28],[475,1,1,28,29]]],[18,14,13,29,42,[[487,1,1,29,30],[495,1,1,30,31],[514,1,1,31,32],[521,2,1,32,33],[548,1,1,33,34],[554,1,1,34,35],[556,1,1,35,36],[560,1,1,36,37],[566,3,3,37,40],[575,1,1,40,41],[613,1,1,41,42]]],[19,1,1,42,43,[[658,1,1,42,43]]],[21,1,1,43,44,[[678,1,1,43,44]]],[22,17,16,44,60,[[687,1,1,44,45],[695,1,1,45,46],[708,1,1,46,47],[711,1,1,47,48],[718,2,2,48,50],[722,1,1,50,51],[726,1,1,51,52],[729,3,2,52,54],[730,1,1,54,55],[731,1,1,55,56],[737,1,1,56,57],[740,1,1,57,58],[741,2,2,58,60]]],[23,5,5,60,65,[[761,1,1,60,61],[765,1,1,61,62],[771,1,1,62,63],[776,1,1,63,64],[792,1,1,64,65]]],[25,13,11,65,76,[[805,1,1,65,66],[814,1,1,66,67],[818,1,1,67,68],[821,2,2,68,70],[823,1,1,70,71],[831,6,4,71,75],[832,1,1,75,76]]],[26,6,5,76,81,[[859,1,1,76,77],[860,5,4,77,81]]],[27,2,2,81,83,[[868,1,1,81,82],[872,1,1,82,83]]],[37,2,1,83,84,[[921,2,1,83,84]]]],[1497,1661,1936,3842,5038,5068,5130,5186,5210,5387,5574,5830,5837,6943,6961,7271,8032,8637,9027,9780,10019,11314,11883,13397,13398,13469,13729,13808,13873,14056,14152,14467,14574,14994,15108,15196,15249,15336,15339,15347,15491,16208,17301,17646,17849,17988,18247,18281,18430,18431,18545,18628,18678,18682,18706,18712,18816,18862,18871,18878,19362,19445,19601,19748,20105,20536,20728,20834,20928,20929,20982,21225,21226,21228,21229,21247,22021,22042,22051,22058,22067,22193,22243,23045]]],["+",[2,2,[[17,1,1,0,1,[[470,1,1,0,1]]],[25,1,1,1,2,[[831,1,1,1,2]]]],[13729,21226]]],["arm",[58,54,[[1,2,2,0,2,[[55,1,1,0,1],[64,1,1,1,2]]],[4,7,7,2,9,[[156,1,1,2,3],[157,1,1,3,4],[159,1,1,4,5],[161,1,1,5,6],[163,1,1,6,7],[178,1,1,7,8],[185,1,1,8,9]]],[8,2,1,9,10,[[237,2,1,9,10]]],[9,1,1,10,11,[[267,1,1,10,11]]],[10,1,1,11,12,[[298,1,1,11,12]]],[11,1,1,12,13,[[329,1,1,12,13]]],[13,2,2,13,15,[[372,1,1,13,14],[398,1,1,14,15]]],[17,3,3,15,18,[[461,1,1,15,16],[473,1,1,16,17],[475,1,1,17,18]]],[18,9,8,18,26,[[487,1,1,18,19],[521,2,1,19,20],[554,1,1,20,21],[566,3,3,21,24],[575,1,1,24,25],[613,1,1,25,26]]],[21,1,1,26,27,[[678,1,1,26,27]]],[22,15,15,27,42,[[687,1,1,27,28],[695,1,1,28,29],[708,1,1,29,30],[711,1,1,30,31],[718,2,2,31,33],[726,1,1,33,34],[729,2,2,34,36],[730,1,1,36,37],[731,1,1,37,38],[737,1,1,38,39],[740,1,1,39,40],[741,2,2,40,42]]],[23,5,5,42,47,[[761,1,1,42,43],[765,1,1,43,44],[771,1,1,44,45],[776,1,1,45,46],[792,1,1,46,47]]],[25,5,5,47,52,[[805,1,1,47,48],[821,2,2,48,50],[831,1,1,50,51],[832,1,1,51,52]]],[26,2,1,52,53,[[860,2,1,52,53]]],[37,2,1,53,54,[[921,2,1,53,54]]]],[1661,1936,5038,5068,5130,5186,5210,5574,5830,7271,8032,9027,10019,11314,11883,13469,13808,13873,14056,14574,15108,15336,15339,15347,15491,16208,17646,17849,17988,18247,18281,18430,18431,18628,18678,18682,18706,18712,18816,18862,18871,18878,19362,19445,19601,19748,20105,20536,20928,20929,21225,21247,22042,23045]]],["arms",[23,21,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[6,2,2,2,4,[[225,1,1,2,3],[226,1,1,3,4]]],[9,1,1,4,5,[[288,1,1,4,5]]],[11,1,1,5,6,[[321,1,1,5,6]]],[17,1,1,6,7,[[457,1,1,6,7]]],[18,2,2,7,9,[[495,1,1,7,8],[514,1,1,8,9]]],[19,1,1,9,10,[[658,1,1,9,10]]],[22,2,2,10,12,[[722,1,1,10,11],[729,1,1,11,12]]],[25,5,3,12,15,[[814,1,1,12,13],[831,4,2,13,15]]],[26,4,4,15,19,[[859,1,1,15,16],[860,3,3,16,19]]],[27,2,2,19,21,[[868,1,1,19,20],[872,1,1,20,21]]]],[1497,5837,6943,6961,8637,9780,13398,14152,14467,17301,18545,18678,20728,21228,21229,22021,22051,22058,22067,22193,22243]]],["holpen",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15249]]],["mighty",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13397]]],["power",[3,3,[[18,1,1,0,1,[[556,1,1,0,1]]],[25,2,2,1,3,[[818,1,1,1,2],[823,1,1,2,3]]]],[15196,20834,20982]]],["shoulder",[2,2,[[3,1,1,0,1,[[122,1,1,0,1]]],[4,1,1,1,2,[[170,1,1,1,2]]]],[3842,5387]]],["strength",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14994]]]]},{"k":"H2221","v":[["*",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[22,1,1,1,2,[[739,1,1,1,2]]]],[3034,18854]]],["sowing",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3034]]],["sown",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18854]]]]},{"k":"H2222","v":[["water",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15006]]]]},{"k":"H2223","v":[["+",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17282]]]]},{"k":"H2224","v":[["*",[18,17,[[0,1,1,0,1,[[31,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[6,1,1,3,4,[[219,1,1,3,4]]],[9,1,1,4,5,[[289,1,1,4,5]]],[11,1,1,5,6,[[315,1,1,5,6]]],[13,1,1,6,7,[[392,1,1,6,7]]],[17,1,1,7,8,[[444,1,1,7,8]]],[18,2,2,8,10,[[581,1,1,8,9],[589,1,1,9,10]]],[20,2,1,10,11,[[659,2,1,10,11]]],[22,3,3,11,14,[[736,1,1,11,12],[738,2,2,12,14]]],[31,1,1,14,15,[[892,1,1,14,15]]],[33,1,1,15,16,[[902,1,1,15,16]]],[38,1,1,16,17,[[928,1,1,16,17]]]],[959,2116,5812,6787,8657,9598,11751,13058,15593,15807,17320,18796,18822,18823,22576,22729,23140]]],["arise",[3,3,[[22,1,1,0,1,[[738,1,1,0,1]]],[31,1,1,1,2,[[892,1,1,1,2]]],[38,1,1,2,3,[[928,1,1,2,3]]]],[18823,22576,23140]]],["ariseth",[4,4,[[18,2,2,0,2,[[581,1,1,0,1],[589,1,1,1,2]]],[20,1,1,2,3,[[659,1,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[15593,15807,17320,22729]]],["arose",[1,1,[[20,1,1,0,1,[[659,1,1,0,1]]]],[17320]]],["rise",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18796]]],["risen",[2,2,[[1,1,1,0,1,[[71,1,1,0,1]]],[22,1,1,1,2,[[738,1,1,1,2]]]],[2116,18822]]],["riseth",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]]],[8657,13058]]],["rose",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[959]]],["shone",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9598]]],["up",[3,3,[[4,1,1,0,1,[[185,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[13,1,1,2,3,[[392,1,1,2,3]]]],[5812,6787,11751]]]]},{"k":"H2225","v":[["rising",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18824]]]]},{"k":"H2226","v":[["*",[21,21,[[0,5,5,0,5,[[35,3,3,0,3],[37,1,1,3,4],[45,1,1,4,5]]],[3,2,2,5,7,[[142,2,2,5,7]]],[5,4,4,7,11,[[193,3,3,7,10],[208,1,1,10,11]]],[12,8,8,11,19,[[338,2,2,11,13],[339,2,2,13,15],[341,1,1,15,16],[343,2,2,16,18],[346,1,1,18,19]]],[13,1,1,19,20,[[380,1,1,19,20]]],[15,1,1,20,21,[[423,1,1,20,21]]]],[1053,1057,1073,1149,1398,4502,4509,5977,5994,6000,6446,10289,10296,10310,10312,10409,10475,10495,10621,11484,12612]]],["Zarah",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1149]]],["Zerah",[20,20,[[0,4,4,0,4,[[35,3,3,0,3],[45,1,1,3,4]]],[3,2,2,4,6,[[142,2,2,4,6]]],[5,4,4,6,10,[[193,3,3,6,9],[208,1,1,9,10]]],[12,8,8,10,18,[[338,2,2,10,12],[339,2,2,12,14],[341,1,1,14,15],[343,2,2,15,17],[346,1,1,17,18]]],[13,1,1,18,19,[[380,1,1,18,19]]],[15,1,1,19,20,[[423,1,1,19,20]]]],[1053,1057,1073,1398,4502,4509,5977,5994,6000,6446,10289,10296,10310,10312,10409,10475,10495,10621,11484,12612]]]]},{"k":"H2227","v":[["Zarhites",[6,5,[[3,2,2,0,2,[[142,2,2,0,2]]],[5,2,1,2,3,[[193,2,1,2,3]]],[12,2,2,3,5,[[364,2,2,3,5]]]],[4502,4509,5993,11120,11122]]]]},{"k":"H2228","v":[["Zerahiah",[5,4,[[12,3,2,0,2,[[343,3,2,0,2]]],[14,2,2,2,4,[[409,1,1,2,3],[410,1,1,3,4]]]],[10460,10505,12177,12205]]]]},{"k":"H2229","v":[["*",[2,2,[[18,2,2,0,2,[[554,1,1,0,1],[567,1,1,1,2]]]],[15110,15383]]],["flood",[1,1,[[18,1,1,0,1,[[567,1,1,0,1]]]],[15383]]],["out",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15110]]]]},{"k":"H2230","v":[["*",[9,7,[[17,1,1,0,1,[[459,1,1,0,1]]],[22,7,5,1,6,[[682,1,1,1,2],[703,2,1,2,3],[706,2,1,3,4],[708,1,1,4,5],[710,1,1,5,6]]],[34,1,1,6,7,[[905,1,1,6,7]]]],[13444,17739,18122,18166,18247,18261,22778]]],["+",[3,3,[[17,1,1,0,1,[[459,1,1,0,1]]],[22,2,2,1,3,[[682,1,1,1,2],[703,1,1,2,3]]]],[13444,17739,18122]]],["flood",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18166]]],["overflowing",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22778]]],["storm",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18122]]],["tempest",[3,3,[[22,3,3,0,3,[[706,1,1,0,1],[708,1,1,1,2],[710,1,1,2,3]]]],[18166,18247,18261]]]]},{"k":"H2231","v":[["issue",[2,1,[[25,2,1,0,1,[[824,2,1,0,1]]]],[21027]]]]},{"k":"H2232","v":[["*",[56,54,[[0,6,5,0,5,[[0,4,3,0,3],[25,1,1,3,4],[46,1,1,4,5]]],[1,2,2,5,7,[[72,2,2,5,7]]],[2,9,9,7,16,[[100,1,1,7,8],[101,1,1,8,9],[108,1,1,9,10],[114,5,5,10,15],[115,1,1,15,16]]],[3,1,1,16,17,[[121,1,1,16,17]]],[4,5,4,17,21,[[163,1,1,17,18],[173,1,1,18,19],[174,2,1,19,20],[181,1,1,20,21]]],[6,2,2,21,23,[[216,1,1,21,22],[219,1,1,22,23]]],[11,1,1,23,24,[[331,1,1,23,24]]],[17,2,2,24,26,[[439,1,1,24,25],[466,1,1,25,26]]],[18,3,3,26,29,[[574,1,1,26,27],[584,1,1,27,28],[603,1,1,28,29]]],[19,2,2,29,31,[[638,1,1,29,30],[649,1,1,30,31]]],[20,2,2,31,33,[[669,2,2,31,33]]],[22,7,7,33,40,[[695,1,1,33,34],[706,1,1,34,35],[708,1,1,35,36],[710,1,1,36,37],[715,1,1,37,38],[718,1,1,38,39],[733,1,1,39,40]]],[23,6,6,40,46,[[746,1,1,40,41],[748,1,1,41,42],[756,1,1,42,43],[775,1,1,43,44],[779,1,1,44,45],[794,1,1,45,46]]],[25,1,1,46,47,[[837,1,1,46,47]]],[27,3,3,47,50,[[863,1,1,47,48],[869,1,1,48,49],[871,1,1,49,50]]],[32,1,1,50,51,[[898,1,1,50,51]]],[33,1,1,51,52,[[900,1,1,51,52]]],[36,1,1,52,53,[[909,1,1,52,53]]],[37,1,1,53,54,[[920,1,1,53,54]]]],[10,11,28,704,1443,2154,2160,3034,3046,3300,3472,3473,3480,3489,3491,3540,3820,5218,5451,5479,5702,6657,6799,10090,12938,13596,15489,15736,16120,16706,17023,17517,17519,17993,18188,18240,18279,18382,18444,18750,18967,19030,19262,19718,19830,20182,21368,22128,22201,22237,22663,22698,22846,23025]]],["+",[6,6,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,1,1,1,2,[[72,1,1,1,2]]],[4,1,1,2,3,[[163,1,1,2,3]]],[20,1,1,3,4,[[669,1,1,3,4]]],[22,1,1,4,5,[[708,1,1,4,5]]],[23,1,1,5,6,[[775,1,1,5,6]]]],[1443,2154,5218,17519,18240,19718]]],["Sow",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22237]]],["bearing",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[28]]],["conceive",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3820]]],["seed",[1,1,[[2,1,1,0,1,[[101,1,1,0,1]]]],[3046]]],["set",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17993]]],["sow",[22,22,[[2,7,7,0,7,[[108,1,1,0,1],[114,5,5,1,6],[115,1,1,6,7]]],[4,1,1,7,8,[[174,1,1,7,8]]],[11,1,1,8,9,[[331,1,1,8,9]]],[17,2,2,9,11,[[439,1,1,9,10],[466,1,1,10,11]]],[18,2,2,11,13,[[584,1,1,11,12],[603,1,1,12,13]]],[20,1,1,13,14,[[669,1,1,13,14]]],[22,3,3,14,17,[[706,1,1,14,15],[710,1,1,15,16],[715,1,1,16,17]]],[23,2,2,17,19,[[748,1,1,17,18],[779,1,1,18,19]]],[27,1,1,19,20,[[863,1,1,19,20]]],[32,1,1,20,21,[[898,1,1,20,21]]],[37,1,1,21,22,[[920,1,1,21,22]]]],[3300,3472,3473,3480,3489,3491,3540,5479,10090,12938,13596,15736,16120,17517,18188,18279,18382,19030,19830,22128,22663,23025]]],["sowed",[2,2,[[0,1,1,0,1,[[25,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]]],[704,6799]]],["sower",[2,2,[[22,1,1,0,1,[[733,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]]],[18750,20182]]],["soweth",[2,2,[[19,2,2,0,2,[[638,1,1,0,1],[649,1,1,1,2]]]],[16706,17023]]],["sown",[14,14,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]],[4,3,3,2,5,[[173,1,1,2,3],[174,1,1,3,4],[181,1,1,4,5]]],[6,1,1,5,6,[[216,1,1,5,6]]],[18,1,1,6,7,[[574,1,1,6,7]]],[22,1,1,7,8,[[718,1,1,7,8]]],[23,2,2,8,10,[[746,1,1,8,9],[756,1,1,9,10]]],[25,1,1,10,11,[[837,1,1,10,11]]],[27,1,1,11,12,[[869,1,1,11,12]]],[33,1,1,12,13,[[900,1,1,12,13]]],[36,1,1,13,14,[[909,1,1,13,14]]]],[2160,3034,5451,5479,5702,6657,15489,18444,18967,19262,21368,22201,22698,22846]]],["yielding",[3,3,[[0,3,3,0,3,[[0,3,3,0,3]]]],[10,11,28]]]]},{"k":"H2233","v":[["*",[229,205,[[0,59,48,0,48,[[0,6,3,0,3],[2,2,1,3,4],[3,1,1,4,5],[6,1,1,5,6],[7,1,1,6,7],[8,1,1,7,8],[11,1,1,8,9],[12,3,2,9,11],[14,4,4,11,15],[15,1,1,15,16],[16,7,6,16,22],[18,2,2,22,24],[20,2,2,24,26],[21,3,2,26,28],[23,2,2,28,30],[25,5,3,30,33],[27,4,3,33,36],[31,1,1,36,37],[34,1,1,37,38],[37,3,2,38,40],[45,2,2,40,42],[46,3,3,42,45],[47,3,3,45,48]]],[1,6,5,48,53,[[65,1,1,48,49],[77,1,1,49,50],[79,1,1,50,51],[81,2,1,51,52],[82,1,1,52,53]]],[2,24,22,53,75,[[100,2,2,53,55],[104,4,4,55,59],[107,2,2,59,61],[108,1,1,61,62],[109,3,3,62,65],[110,3,3,65,68],[111,4,3,68,71],[115,2,2,71,73],[116,3,2,73,75]]],[3,9,9,75,84,[[121,2,2,75,77],[127,1,1,77,78],[130,1,1,78,79],[132,1,1,79,80],[134,1,1,80,81],[136,1,1,81,82],[140,1,1,82,83],[141,1,1,83,84]]],[4,14,14,84,98,[[153,1,1,84,85],[156,1,1,85,86],[162,1,1,86,87],[163,2,2,87,89],[166,1,1,89,90],[174,1,1,90,91],[180,3,3,91,94],[182,2,2,94,96],[183,1,1,96,97],[186,1,1,97,98]]],[5,1,1,98,99,[[210,1,1,98,99]]],[7,1,1,99,100,[[235,1,1,99,100]]],[8,6,5,100,105,[[236,1,1,100,101],[237,1,1,101,102],[243,1,1,102,103],[255,2,1,103,104],[259,1,1,104,105]]],[9,3,3,105,108,[[270,1,1,105,106],[273,1,1,106,107],[288,1,1,107,108]]],[10,5,4,108,112,[[292,2,1,108,109],[301,2,2,109,111],[308,1,1,111,112]]],[11,4,4,112,116,[[317,1,1,112,113],[323,1,1,113,114],[329,1,1,114,115],[337,1,1,115,116]]],[12,2,2,116,118,[[353,1,1,116,117],[354,1,1,117,118]]],[13,2,2,118,120,[[386,1,1,118,119],[388,1,1,119,120]]],[14,2,2,120,122,[[404,1,1,120,121],[411,1,1,121,122]]],[15,3,3,122,125,[[419,1,1,122,123],[421,2,2,123,125]]],[16,5,5,125,130,[[431,1,1,125,126],[434,3,3,126,129],[435,1,1,129,130]]],[17,3,3,130,133,[[440,1,1,130,131],[456,1,1,131,132],[474,1,1,132,133]]],[18,18,17,133,150,[[495,1,1,133,134],[498,1,1,134,135],[499,3,2,135,137],[502,1,1,137,138],[514,3,3,138,141],[546,1,1,141,142],[566,3,3,142,145],[579,1,1,145,146],[582,1,1,146,147],[583,1,1,147,148],[589,1,1,148,149],[603,1,1,149,150]]],[19,1,1,150,151,[[638,1,1,150,151]]],[20,1,1,151,152,[[669,1,1,151,152]]],[22,26,23,152,175,[[679,1,1,152,153],[683,1,1,153,154],[684,1,1,154,155],[692,1,1,155,156],[695,1,1,156,157],[701,1,1,157,158],[708,1,1,158,159],[719,1,1,159,160],[721,1,1,160,161],[722,1,1,161,162],[723,2,2,162,164],[726,1,1,164,165],[731,1,1,165,166],[732,1,1,166,167],[733,1,1,167,168],[735,2,2,168,170],[737,3,1,170,171],[739,2,1,171,172],[743,2,2,172,174],[744,1,1,174,175]]],[23,21,18,175,193,[[746,1,1,175,176],[751,1,1,176,177],[766,2,2,177,179],[767,1,1,179,180],[773,1,1,180,181],[774,1,1,181,182],[775,4,3,182,185],[777,4,2,185,187],[779,2,2,187,189],[780,1,1,189,190],[785,1,1,190,191],[790,1,1,191,192],[793,1,1,192,193]]],[25,6,5,193,198,[[818,3,2,193,195],[821,1,1,195,196],[844,1,1,196,197],[845,1,1,197,198]]],[26,2,2,198,200,[[850,1,1,198,199],[858,1,1,199,200]]],[29,1,1,200,201,[[887,1,1,200,201]]],[36,1,1,201,202,[[910,1,1,201,202]]],[37,1,1,202,203,[[918,1,1,202,203]]],[38,2,2,203,205,[[926,2,2,203,205]]]],[10,11,28,70,104,162,205,214,305,333,334,363,365,373,378,391,404,405,406,407,409,416,489,491,525,526,564,565,598,651,695,696,716,777,786,787,940,1023,1127,1128,1392,1393,1439,1443,1444,1455,1462,1470,1978,2336,2403,2451,2474,3034,3035,3184,3185,3186,3200,3271,3272,3301,3320,3321,3322,3360,3362,3366,3372,3373,3382,3529,3540,3586,3600,3805,3820,4031,4132,4234,4276,4316,4453,4484,4900,5041,5201,5217,5218,5312,5479,5649,5657,5670,5714,5727,5749,5843,6479,7202,7223,7260,7384,7772,7860,8128,8192,8653,8803,9122,9147,9373,9674,9830,10003,10247,10833,10874,11594,11654,12086,12239,12481,12513,12519,12806,12861,12862,12865,12869,12976,13363,13846,14168,14201,14227,14234,14264,14475,14476,14478,14971,15330,15355,15362,15549,15612,15678,15805,16121,16709,17519,17658,17749,17782,17948,17994,18080,18240,18459,18510,18536,18580,18586,18633,18721,18726,18750,18768,18769,18821,18852,18906,18920,18944,18986,19134,19482,19484,19492,19667,19677,19718,19727,19728,19797,19801,19830,19832,19873,19958,20072,20137,20830,20838,20900,21591,21621,21740,21989,22508,22874,22988,23106,23118]]],["+",[32,31,[[0,3,3,0,3,[[15,1,1,0,1],[16,1,1,1,2],[25,1,1,2,3]]],[2,12,11,3,14,[[104,1,1,3,4],[107,2,2,4,6],[108,1,1,6,7],[109,3,3,7,10],[110,2,2,10,12],[111,2,1,12,13],[116,1,1,13,14]]],[3,2,2,14,16,[[121,1,1,14,15],[132,1,1,15,16]]],[4,1,1,16,17,[[180,1,1,16,17]]],[9,1,1,17,18,[[270,1,1,17,18]]],[10,1,1,18,19,[[301,1,1,18,19]]],[11,1,1,19,20,[[337,1,1,19,20]]],[16,2,2,20,22,[[431,1,1,20,21],[434,1,1,21,22]]],[23,3,3,22,25,[[766,1,1,22,23],[777,1,1,23,24],[785,1,1,24,25]]],[25,4,4,25,29,[[818,2,2,25,27],[844,1,1,27,28],[845,1,1,28,29]]],[26,2,2,29,31,[[850,1,1,29,30],[858,1,1,30,31]]]],[391,409,696,3200,3271,3272,3301,3320,3321,3322,3362,3366,3373,3600,3805,4234,5649,8128,9122,10247,12806,12862,19484,19801,19958,20830,20838,21591,21621,21740,21989]]],["child",[2,2,[[2,1,1,0,1,[[111,1,1,0,1]]],[8,1,1,1,2,[[236,1,1,1,2]]]],[3382,7223]]],["fruitful",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20830]]],["seed",[191,172,[[0,55,45,0,45,[[0,6,3,0,3],[2,2,1,3,4],[3,1,1,4,5],[6,1,1,5,6],[8,1,1,6,7],[11,1,1,7,8],[12,3,2,8,10],[14,4,4,10,14],[16,6,5,14,19],[18,2,2,19,21],[20,2,2,21,23],[21,3,2,23,25],[23,2,2,25,27],[25,4,3,27,30],[27,4,3,30,33],[31,1,1,33,34],[34,1,1,34,35],[37,3,2,35,37],[45,2,2,37,39],[46,3,3,39,42],[47,3,3,42,45]]],[1,6,5,45,50,[[65,1,1,45,46],[77,1,1,46,47],[79,1,1,47,48],[81,2,1,48,49],[82,1,1,49,50]]],[2,10,9,50,59,[[100,2,2,50,52],[104,3,3,52,55],[110,1,1,55,56],[111,1,1,56,57],[115,1,1,57,58],[116,2,1,58,59]]],[3,7,7,59,66,[[121,1,1,59,60],[127,1,1,60,61],[130,1,1,61,62],[134,1,1,62,63],[136,1,1,63,64],[140,1,1,64,65],[141,1,1,65,66]]],[4,13,13,66,79,[[153,1,1,66,67],[156,1,1,67,68],[162,1,1,68,69],[163,2,2,69,71],[166,1,1,71,72],[174,1,1,72,73],[180,2,2,73,75],[182,2,2,75,77],[183,1,1,77,78],[186,1,1,78,79]]],[5,1,1,79,80,[[210,1,1,79,80]]],[7,1,1,80,81,[[235,1,1,80,81]]],[8,5,4,81,85,[[237,1,1,81,82],[243,1,1,82,83],[255,2,1,83,84],[259,1,1,84,85]]],[9,2,2,85,87,[[273,1,1,85,86],[288,1,1,86,87]]],[10,4,3,87,90,[[292,2,1,87,88],[301,1,1,88,89],[308,1,1,89,90]]],[11,3,3,90,93,[[317,1,1,90,91],[323,1,1,91,92],[329,1,1,92,93]]],[12,2,2,93,95,[[353,1,1,93,94],[354,1,1,94,95]]],[13,2,2,95,97,[[386,1,1,95,96],[388,1,1,96,97]]],[14,2,2,97,99,[[404,1,1,97,98],[411,1,1,98,99]]],[15,3,3,99,102,[[419,1,1,99,100],[421,2,2,100,102]]],[16,3,3,102,105,[[434,2,2,102,104],[435,1,1,104,105]]],[17,3,3,105,108,[[440,1,1,105,106],[456,1,1,106,107],[474,1,1,107,108]]],[18,18,17,108,125,[[495,1,1,108,109],[498,1,1,109,110],[499,3,2,110,112],[502,1,1,112,113],[514,3,3,113,116],[546,1,1,116,117],[566,3,3,117,120],[579,1,1,120,121],[582,1,1,121,122],[583,1,1,122,123],[589,1,1,123,124],[603,1,1,124,125]]],[19,1,1,125,126,[[638,1,1,125,126]]],[20,1,1,126,127,[[669,1,1,126,127]]],[22,25,23,127,150,[[679,1,1,127,128],[683,1,1,128,129],[684,1,1,129,130],[692,1,1,130,131],[695,1,1,131,132],[701,1,1,132,133],[708,1,1,133,134],[719,1,1,134,135],[721,1,1,135,136],[722,1,1,136,137],[723,2,2,137,139],[726,1,1,139,140],[731,1,1,140,141],[732,1,1,141,142],[733,1,1,142,143],[735,2,2,143,145],[737,2,1,145,146],[739,2,1,146,147],[743,2,2,147,149],[744,1,1,149,150]]],[23,18,16,150,166,[[746,1,1,150,151],[751,1,1,151,152],[766,1,1,152,153],[767,1,1,153,154],[773,1,1,154,155],[774,1,1,155,156],[775,4,3,156,159],[777,3,2,159,161],[779,2,2,161,163],[780,1,1,163,164],[790,1,1,164,165],[793,1,1,165,166]]],[25,1,1,166,167,[[821,1,1,166,167]]],[29,1,1,167,168,[[887,1,1,167,168]]],[36,1,1,168,169,[[910,1,1,168,169]]],[37,1,1,169,170,[[918,1,1,169,170]]],[38,2,2,170,172,[[926,2,2,170,172]]]],[10,11,28,70,104,162,214,305,333,334,363,365,373,378,404,405,406,407,416,489,491,525,526,564,565,598,651,695,696,716,777,786,787,940,1023,1127,1128,1392,1393,1439,1443,1444,1455,1462,1470,1978,2336,2403,2451,2474,3034,3035,3184,3185,3186,3360,3372,3540,3586,3820,4031,4132,4276,4316,4453,4484,4900,5041,5201,5217,5218,5312,5479,5657,5670,5714,5727,5749,5843,6479,7202,7260,7384,7772,7860,8192,8653,8803,9147,9373,9674,9830,10003,10833,10874,11594,11654,12086,12239,12481,12513,12519,12861,12865,12869,12976,13363,13846,14168,14201,14227,14234,14264,14475,14476,14478,14971,15330,15355,15362,15549,15612,15678,15805,16121,16709,17519,17658,17749,17782,17948,17994,18080,18240,18459,18510,18536,18580,18586,18633,18721,18726,18750,18768,18769,18821,18852,18906,18920,18944,18986,19134,19482,19492,19667,19677,19718,19727,19728,19797,19801,19830,19832,19873,20072,20137,20900,22508,22874,22988,23106,23118]]],["seed's",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18821]]],["seedtime",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[205]]],["time",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3529]]]]},{"k":"H2234","v":[["seed",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21801]]]]},{"k":"H2235","v":[["pulse",[2,2,[[26,2,2,0,2,[[850,2,2,0,2]]]],[21749,21753]]]]},{"k":"H2236","v":[["*",[35,33,[[1,6,6,0,6,[[58,2,2,0,2],[73,2,2,2,4],[78,2,2,4,6]]],[2,12,12,6,18,[[90,2,2,6,8],[92,3,3,8,11],[96,2,2,11,13],[97,2,2,13,15],[98,2,2,15,17],[106,1,1,17,18]]],[3,3,3,18,21,[[134,1,1,18,19],[135,2,2,19,21]]],[11,2,2,21,23,[[328,2,2,21,23]]],[13,6,4,23,27,[[395,3,1,23,24],[396,1,1,24,25],[400,1,1,25,26],[401,1,1,26,27]]],[17,1,1,27,28,[[437,1,1,27,28]]],[22,1,1,28,29,[[706,1,1,28,29]]],[25,3,3,29,32,[[811,1,1,29,30],[837,1,1,30,31],[844,1,1,31,32]]],[27,1,1,32,33,[[868,1,1,32,33]]]],[1750,1752,2183,2185,2352,2356,2750,2756,2780,2786,2791,2881,2893,2936,2941,2965,2971,3241,4274,4302,4309,9976,9978,11813,11843,11937,11977,12903,18189,20635,21384,21590,22187]]],["+",[13,13,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,9,9,1,10,[[90,2,2,1,3],[92,3,3,3,6],[96,1,1,6,7],[97,2,2,7,9],[106,1,1,9,10]]],[3,1,1,10,11,[[134,1,1,10,11]]],[11,1,1,11,12,[[328,1,1,11,12]]],[13,1,1,12,13,[[396,1,1,12,13]]]],[2356,2750,2756,2780,2786,2791,2893,2936,2941,3241,4274,9976,11843]]],["scatter",[2,2,[[22,1,1,0,1,[[706,1,1,0,1]]],[25,1,1,1,2,[[811,1,1,1,2]]]],[18189,20635]]],["sprinkle",[6,6,[[1,2,2,0,2,[[58,1,1,0,1],[78,1,1,1,2]]],[2,1,1,2,3,[[96,1,1,2,3]]],[11,1,1,3,4,[[328,1,1,3,4]]],[25,2,2,4,6,[[837,1,1,4,5],[844,1,1,5,6]]]],[1750,2352,2881,9978,21384,21590]]],["sprinkled",[12,10,[[1,3,3,0,3,[[58,1,1,0,1],[73,2,2,1,3]]],[2,2,2,3,5,[[98,2,2,3,5]]],[3,2,2,5,7,[[135,2,2,5,7]]],[13,4,2,7,9,[[395,3,1,7,8],[401,1,1,8,9]]],[17,1,1,9,10,[[437,1,1,9,10]]]],[1752,2183,2185,2965,2971,4302,4309,11813,11977,12903]]],["strowed",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11937]]],["there",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22187]]]]},{"k":"H2237","v":[["+",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9638]]]]},{"k":"H2238","v":[["Zeresh",[4,3,[[16,4,3,0,3,[[430,2,2,0,2],[431,2,1,2,3]]]],[12789,12793,12806]]]]},{"k":"H2239","v":[["span",[7,5,[[1,4,2,0,2,[[77,2,1,0,1],[88,2,1,1,2]]],[8,1,1,2,3,[[252,1,1,2,3]]],[22,1,1,3,4,[[718,1,1,3,4]]],[25,1,1,4,5,[[844,1,1,4,5]]]],[2309,2673,7622,18432,21585]]]]},{"k":"H2240","v":[["*",[4,4,[[14,2,2,0,2,[[404,1,1,0,1],[412,1,1,1,2]]],[15,2,2,2,4,[[419,1,1,2,3],[422,1,1,3,4]]]],[12035,12279,12433,12563]]],["Zatthu",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12563]]],["Zattu",[3,3,[[14,2,2,0,2,[[404,1,1,0,1],[412,1,1,1,2]]],[15,1,1,2,3,[[419,1,1,2,3]]]],[12035,12279,12433]]]]},{"k":"H2241","v":[["Zetham",[2,2,[[12,2,2,0,2,[[360,1,1,0,1],[363,1,1,1,2]]]],[10991,11099]]]]},{"k":"H2242","v":[["Zethar",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12712]]]]},{"k":"H2243","v":[["bosom",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13621]]]]},{"k":"H2244","v":[["*",[33,33,[[0,3,3,0,3,[[2,2,2,0,2],[30,1,1,2,3]]],[5,5,5,3,8,[[192,2,2,3,5],[196,3,3,5,8]]],[6,1,1,8,9,[[219,1,1,8,9]]],[8,6,6,9,15,[[245,1,1,9,10],[248,1,1,10,11],[249,2,2,11,13],[254,1,1,13,14],[258,1,1,14,15]]],[9,1,1,15,16,[[283,1,1,15,16]]],[10,2,2,16,18,[[308,2,2,16,18]]],[11,2,2,18,20,[[318,1,1,18,19],[323,1,1,19,20]]],[12,1,1,20,21,[[358,1,1,20,21]]],[13,3,3,21,24,[[384,1,1,21,22],[388,2,2,22,24]]],[17,5,5,24,29,[[440,1,1,24,25],[459,1,1,25,26],[464,2,2,26,28],[473,1,1,28,29]]],[22,2,2,29,31,[[720,1,1,29,30],[727,1,1,30,31]]],[26,1,1,31,32,[[859,1,1,31,32]]],[29,1,1,32,33,[[887,1,1,32,33]]]],[63,65,900,5966,5974,6080,6081,6091,6759,7440,7491,7519,7530,7708,7833,8458,9345,9354,9703,9832,10954,11566,11653,11656,12972,13440,13540,13542,13823,18502,18638,22022,22498]]],["+",[3,3,[[5,2,2,0,2,[[192,2,2,0,2]]],[11,1,1,2,3,[[318,1,1,2,3]]]],[5966,5974,9703]]],["held",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13542]]],["hid",[12,12,[[5,2,2,0,2,[[196,2,2,0,2]]],[9,1,1,2,3,[[283,1,1,2,3]]],[10,2,2,3,5,[[308,2,2,3,5]]],[11,1,1,5,6,[[323,1,1,5,6]]],[13,2,2,6,8,[[388,2,2,6,8]]],[17,2,2,8,10,[[440,1,1,8,9],[473,1,1,9,10]]],[22,2,2,10,12,[[720,1,1,10,11],[727,1,1,11,12]]]],[6081,6091,8458,9345,9354,9832,11653,11656,12972,13823,18502,18638]]],["hide",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13440]]],["himself",[3,3,[[6,1,1,0,1,[[219,1,1,0,1]]],[8,2,2,1,3,[[245,1,1,1,2],[258,1,1,2,3]]]],[6759,7440,7833]]],["myself",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[65]]],["secretly",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[900]]],["themselves",[9,9,[[0,1,1,0,1,[[2,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[8,3,3,2,5,[[248,1,1,2,3],[249,2,2,3,5]]],[12,1,1,5,6,[[358,1,1,5,6]]],[17,1,1,6,7,[[464,1,1,6,7]]],[26,1,1,7,8,[[859,1,1,7,8]]],[29,1,1,8,9,[[887,1,1,8,9]]]],[63,6080,7491,7519,7530,10954,13540,22022,22498]]],["thyself",[2,2,[[8,1,1,0,1,[[254,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[7708,11566]]]]},{"k":"H2245","v":[["loved",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5813]]]]},{"k":"H2246","v":[["Hobab",[2,2,[[3,1,1,0,1,[[126,1,1,0,1]]],[6,1,1,1,2,[[214,1,1,1,2]]]],[4017,6610]]]]},{"k":"H2247","v":[["*",[5,5,[[5,1,1,0,1,[[188,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]],[11,1,1,2,3,[[319,1,1,2,3]]],[22,1,1,3,4,[[704,1,1,3,4]]],[23,1,1,4,5,[[793,1,1,4,5]]]],[5885,9505,9719,18150,20137]]],["hide",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18150]]],["himself",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20137]]],["themselves",[1,1,[[11,1,1,0,1,[[319,1,1,0,1]]]],[9719]]],["thyself",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9505]]],["yourselves",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5885]]]]},{"k":"H2248","v":[["hurt",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21927]]]]},{"k":"H2249","v":[["Habor",[3,3,[[11,2,2,0,2,[[329,1,1,0,1],[330,1,1,1,2]]],[12,1,1,2,3,[[342,1,1,2,3]]]],[9989,10035,10454]]]]},{"k":"H2250","v":[["*",[7,6,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,2,1,1,2,[[70,2,1,1,2]]],[18,1,1,2,3,[[515,1,1,2,3]]],[19,1,1,3,4,[[647,1,1,3,4]]],[22,2,2,4,6,[[679,1,1,4,5],[731,1,1,5,6]]]],[102,2102,14495,16984,17660,18716]]],["blueness",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16984]]],["bruises",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17660]]],["hurt",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[102]]],["stripe",[2,1,[[1,2,1,0,1,[[70,2,1,0,1]]]],[2102]]],["stripes",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18716]]],["wounds",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14495]]]]},{"k":"H2251","v":[["*",[5,5,[[4,1,1,0,1,[[176,1,1,0,1]]],[6,1,1,1,2,[[216,1,1,1,2]]],[7,1,1,2,3,[[233,1,1,2,3]]],[22,2,2,3,5,[[705,1,1,3,4],[706,1,1,4,5]]]],[5545,6665,7166,18163,18191]]],["+",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7166]]],["beatest",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5545]]],["off",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18163]]],["out",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18191]]],["threshed",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6665]]]]},{"k":"H2252","v":[["Habaiah",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12088,12483]]]]},{"k":"H2253","v":[["hiding",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22772]]]]},{"k":"H2254","v":[["*",[30,23,[[1,2,1,0,1,[[71,2,1,0,1]]],[4,6,2,1,3,[[176,6,2,1,3]]],[15,2,1,3,4,[[413,2,1,3,4]]],[17,5,5,4,9,[[452,1,1,4,5],[457,1,1,5,6],[459,2,2,6,8],[469,1,1,8,9]]],[18,1,1,9,10,[[484,1,1,9,10]]],[19,3,3,10,13,[[640,1,1,10,11],[647,1,1,11,12],[654,1,1,12,13]]],[20,1,1,13,14,[[663,1,1,13,14]]],[21,3,2,14,16,[[672,1,1,14,15],[678,2,1,15,16]]],[22,4,4,16,20,[[688,1,1,16,17],[691,1,1,17,18],[710,1,1,18,19],[732,1,1,19,20]]],[25,1,1,20,21,[[819,1,1,20,21]]],[29,1,1,21,22,[[880,1,1,21,22]]],[32,1,1,22,23,[[894,1,1,22,23]]]],[2139,5531,5542,12303,13261,13395,13439,13445,13714,14009,16760,16970,17182,17403,17569,17645,17877,17911,18266,18739,20865,22387,22605]]],["+",[6,4,[[1,2,1,0,1,[[71,2,1,0,1]]],[15,2,1,1,2,[[413,2,1,1,2]]],[17,1,1,2,3,[[459,1,1,2,3]]],[20,1,1,3,4,[[663,1,1,3,4]]]],[2139,12303,13439,17403]]],["corrupt",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13261]]],["destroy",[4,4,[[22,3,3,0,3,[[691,1,1,0,1],[710,1,1,1,2],[732,1,1,2,3]]],[32,1,1,3,4,[[894,1,1,3,4]]]],[17911,18266,18739,22605]]],["destroyed",[2,2,[[19,1,1,0,1,[[640,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[16760,17877]]],["forth",[2,1,[[21,2,1,0,1,[[678,2,1,0,1]]]],[17645]]],["offend",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13714]]],["pledge",[8,7,[[4,3,2,0,2,[[176,3,2,0,2]]],[17,2,2,2,4,[[457,1,1,2,3],[459,1,1,3,4]]],[19,2,2,4,6,[[647,1,1,4,5],[654,1,1,5,6]]],[29,1,1,6,7,[[880,1,1,6,7]]]],[5531,5542,13395,13445,16970,17182,22387]]],["spoil",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17569]]],["take",[2,2,[[4,2,2,0,2,[[176,2,2,0,2]]]],[5531,5542]]],["taketh",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5531]]],["travaileth",[1,1,[[18,1,1,0,1,[[484,1,1,0,1]]]],[14009]]],["withholden",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20865]]]]},{"k":"H2255","v":[["*",[6,6,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,5,5,1,6,[[851,1,1,1,2],[853,1,1,2,3],[855,2,2,3,5],[856,1,1,5,6]]]],[12163,21802,21860,21927,21931,21947]]],["destroy",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[12163,21860]]],["destroyed",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[855,1,1,1,2],[856,1,1,2,3]]]],[21802,21931,21947]]],["hurt",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21927]]]]},{"k":"H2256","v":[["*",[62,60,[[4,4,4,0,4,[[155,3,3,0,3],[184,1,1,3,4]]],[5,5,5,4,9,[[188,1,1,4,5],[203,2,2,5,7],[205,2,2,7,9]]],[8,2,2,9,11,[[245,2,2,9,11]]],[9,5,3,11,14,[[274,3,1,11,12],[283,1,1,12,13],[288,1,1,13,14]]],[10,3,3,14,17,[[294,1,1,14,15],[310,2,2,15,17]]],[12,1,1,17,18,[[353,1,1,17,18]]],[16,1,1,18,19,[[426,1,1,18,19]]],[17,5,5,19,24,[[453,1,1,19,20],[456,1,1,20,21],[471,1,1,21,22],[474,1,1,22,23],[476,1,1,23,24]]],[18,8,8,24,32,[[493,1,1,24,25],[495,2,2,25,27],[555,1,1,27,28],[582,1,1,28,29],[593,1,1,29,30],[596,1,1,30,31],[617,1,1,31,32]]],[19,1,1,32,33,[[632,1,1,32,33]]],[20,1,1,33,34,[[670,1,1,33,34]]],[22,6,6,34,40,[[683,1,1,34,35],[691,1,1,35,36],[704,1,1,36,37],[711,2,2,37,39],[744,1,1,39,40]]],[23,7,7,40,47,[[757,1,1,40,41],[766,1,1,41,42],[782,4,4,42,46],[793,1,1,46,47]]],[25,2,2,47,49,[[828,1,1,47,48],[848,1,1,48,49]]],[27,2,2,49,51,[[872,1,1,49,50],[874,1,1,50,51]]],[29,1,1,51,52,[[885,1,1,51,52]]],[32,2,2,52,54,[[894,2,2,52,54]]],[35,3,3,54,57,[[907,3,3,54,57]]],[37,3,3,57,60,[[912,1,1,57,58],[921,2,2,58,60]]]],[4979,4988,4989,5767,5884,6280,6289,6330,6350,7423,7428,8211,8462,8608,8857,9439,9440,10838,12708,13286,13372,13744,13837,13889,14098,14122,14123,15168,15617,15851,15959,16268,16539,17529,17757,17914,18147,18299,18302,18929,19287,19477,19901,19906,19907,19908,20151,21145,21692,22244,22279,22481,22600,22605,22810,22811,22812,22900,23035,23042]]],["+",[2,2,[[5,2,2,0,2,[[205,2,2,0,2]]]],[6330,6350]]],["Bands",[2,2,[[37,2,2,0,2,[[921,2,2,0,2]]]],[23035,23042]]],["bands",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15959]]],["coast",[3,3,[[35,3,3,0,3,[[907,3,3,0,3]]]],[22810,22811,22812]]],["company",[2,2,[[8,2,2,0,2,[[245,2,2,0,2]]]],[7423,7428]]],["cord",[4,4,[[5,1,1,0,1,[[188,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[20,1,1,2,3,[[670,1,1,2,3]]],[32,1,1,3,4,[[894,1,1,3,4]]]],[5884,13889,17529,22600]]],["cords",[12,12,[[16,1,1,0,1,[[426,1,1,0,1]]],[17,1,1,1,2,[[471,1,1,1,2]]],[18,1,1,2,3,[[617,1,1,2,3]]],[19,1,1,3,4,[[632,1,1,3,4]]],[22,2,2,4,6,[[683,1,1,4,5],[711,1,1,5,6]]],[23,4,4,6,10,[[782,4,4,6,10]]],[25,1,1,10,11,[[828,1,1,10,11]]],[27,1,1,11,12,[[872,1,1,11,12]]]],[12708,13744,16268,16539,17757,18299,19901,19906,19907,19908,21145,22244]]],["country",[1,1,[[4,1,1,0,1,[[155,1,1,0,1]]]],[4989]]],["destruction",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22605]]],["line",[5,4,[[9,2,1,0,1,[[274,2,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]],[29,1,1,2,3,[[885,1,1,2,3]]],[37,1,1,3,4,[[912,1,1,3,4]]]],[8211,15168,22481,22900]]],["lines",[2,2,[[9,1,1,0,1,[[274,1,1,0,1]]],[18,1,1,1,2,[[493,1,1,1,2]]]],[8211,14098]]],["lot",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[18,1,1,2,3,[[582,1,1,2,3]]]],[5767,10838,15617]]],["pain",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18929]]],["pangs",[2,2,[[22,1,1,0,1,[[704,1,1,0,1]]],[23,1,1,1,2,[[766,1,1,1,2]]]],[18147,19477]]],["portion",[1,1,[[5,1,1,0,1,[[203,1,1,0,1]]]],[6289]]],["portions",[2,2,[[5,1,1,0,1,[[203,1,1,0,1]]],[25,1,1,1,2,[[848,1,1,1,2]]]],[6280,21692]]],["region",[3,3,[[4,2,2,0,2,[[155,2,2,0,2]]],[10,1,1,2,3,[[294,1,1,2,3]]]],[4979,4988,8857]]],["ropes",[3,3,[[9,1,1,0,1,[[283,1,1,0,1]]],[10,2,2,1,3,[[310,2,2,1,3]]]],[8462,9439,9440]]],["snare",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13286]]],["sorrows",[10,10,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,2,2,1,3,[[456,1,1,1,2],[474,1,1,2,3]]],[18,3,3,3,6,[[495,2,2,3,5],[593,1,1,5,6]]],[22,1,1,6,7,[[691,1,1,6,7]]],[23,2,2,7,9,[[757,1,1,7,8],[793,1,1,8,9]]],[27,1,1,9,10,[[874,1,1,9,10]]]],[8608,13372,13837,14122,14123,15851,17914,19287,20151,22279]]],["tacklings",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18302]]]]},{"k":"H2257","v":[["*",[3,3,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,2,2,1,3,[[852,1,1,1,2],[855,1,1,2,3]]]],[12132,21832,21928]]],["damage",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12132]]],["hurt",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[855,1,1,1,2]]]],[21832,21928]]]]},{"k":"H2258","v":[["pledge",[4,4,[[25,4,4,0,4,[[819,3,3,0,3],[834,1,1,3,4]]]],[20856,20861,20865,21295]]]]},{"k":"H2259","v":[["*",[5,5,[[25,4,4,0,4,[[828,4,4,0,4]]],[31,1,1,4,5,[[889,1,1,4,5]]]],[21129,21148,21149,21150,22537]]],["+",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22537]]],["pilots",[4,4,[[25,4,4,0,4,[[828,4,4,0,4]]]],[21129,21148,21149,21150]]]]},{"k":"H2260","v":[["mast",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17078]]]]},{"k":"H2261","v":[["rose",[2,2,[[21,1,1,0,1,[[672,1,1,0,1]]],[22,1,1,1,2,[[713,1,1,1,2]]]],[17555,18321]]]]},{"k":"H2262","v":[["Habaziniah",[1,1,[[23,1,1,0,1,[[779,1,1,0,1]]]],[19826]]]]},{"k":"H2263","v":[["*",[13,12,[[0,3,3,0,3,[[28,1,1,0,1],[32,1,1,1,2],[47,1,1,2,3]]],[11,1,1,3,4,[[316,1,1,3,4]]],[17,1,1,4,5,[[459,1,1,4,5]]],[19,2,2,5,7,[[631,1,1,5,6],[632,1,1,6,7]]],[20,3,2,7,9,[[661,2,1,7,8],[662,1,1,8,9]]],[21,2,2,9,11,[[672,1,1,9,10],[678,1,1,10,11]]],[24,1,1,11,12,[[800,1,1,11,12]]]],[808,964,1461,9619,13444,16498,16537,17364,17386,17560,17643,20425]]],["+",[2,2,[[20,2,2,0,2,[[661,1,1,0,1],[662,1,1,1,2]]]],[17364,17386]]],["embrace",[8,8,[[11,1,1,0,1,[[316,1,1,0,1]]],[17,1,1,1,2,[[459,1,1,1,2]]],[19,2,2,2,4,[[631,1,1,2,3],[632,1,1,3,4]]],[20,1,1,4,5,[[661,1,1,4,5]]],[21,2,2,5,7,[[672,1,1,5,6],[678,1,1,6,7]]],[24,1,1,7,8,[[800,1,1,7,8]]]],[9619,13444,16498,16537,17364,17560,17643,20425]]],["embraced",[3,3,[[0,3,3,0,3,[[28,1,1,0,1],[32,1,1,1,2],[47,1,1,2,3]]]],[808,964,1461]]]]},{"k":"H2264","v":[["folding",[2,2,[[19,2,2,0,2,[[633,1,1,0,1],[651,1,1,1,2]]]],[16550,17112]]]]},{"k":"H2265","v":[["Habakkuk",[2,2,[[34,2,2,0,2,[[903,1,1,0,1],[905,1,1,1,2]]]],[22732,22769]]]]},{"k":"H2266","v":[["*",[29,25,[[0,1,1,0,1,[[13,1,1,0,1]]],[1,14,10,1,11,[[75,5,4,1,5],[77,2,1,5,6],[85,5,4,6,10],[88,2,1,10,11]]],[4,1,1,11,12,[[170,1,1,11,12]]],[13,3,3,12,15,[[386,3,3,12,15]]],[17,1,1,15,16,[[451,1,1,15,16]]],[18,3,3,16,19,[[535,1,1,16,17],[571,1,1,17,18],[599,1,1,18,19]]],[20,1,1,19,20,[[667,1,1,19,20]]],[25,2,2,20,22,[[802,2,2,20,22]]],[26,2,2,22,24,[[860,2,2,22,24]]],[27,1,1,24,25,[[865,1,1,24,25]]]],[339,2238,2241,2244,2246,2300,2576,2579,2582,2584,2668,5395,11622,11623,11624,13242,14784,15451,16092,17479,20473,20475,22042,22059,22150]]],["+",[10,10,[[1,7,7,0,7,[[75,3,3,0,3],[85,4,4,3,7]]],[4,1,1,7,8,[[170,1,1,7,8]]],[18,2,2,8,10,[[535,1,1,8,9],[599,1,1,9,10]]]],[2241,2244,2246,2576,2579,2582,2584,5395,14784,16092]]],["coupled",[2,2,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]]],[2238,2576]]],["fellowship",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15451]]],["himself",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11622]]],["joined",[6,6,[[1,1,1,0,1,[[77,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]],[20,1,1,2,3,[[667,1,1,2,3]]],[25,2,2,3,5,[[802,2,2,3,5]]],[27,1,1,5,6,[[865,1,1,5,6]]]],[2300,11623,17479,20473,20475,22150]]],["league",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22059]]],["thyself",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11624]]],["together",[6,5,[[0,1,1,0,1,[[13,1,1,0,1]]],[1,4,3,1,4,[[75,1,1,1,2],[77,1,1,2,3],[88,2,1,3,4]]],[26,1,1,4,5,[[860,1,1,4,5]]]],[339,2238,2300,2668,22042]]],["up",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13242]]]]},{"k":"H2267","v":[["*",[7,7,[[4,1,1,0,1,[[170,1,1,0,1]]],[18,1,1,1,2,[[535,1,1,1,2]]],[19,2,2,2,4,[[648,1,1,2,3],[652,1,1,3,4]]],[22,2,2,4,6,[[725,2,2,4,6]]],[27,1,1,6,7,[[867,1,1,6,7]]]],[5395,14784,16993,17137,18608,18611,22176]]],["+",[2,2,[[4,1,1,0,1,[[170,1,1,0,1]]],[18,1,1,1,2,[[535,1,1,1,2]]]],[5395,14784]]],["company",[1,1,[[27,1,1,0,1,[[867,1,1,0,1]]]],[22176]]],["enchantments",[2,2,[[22,2,2,0,2,[[725,2,2,0,2]]]],[18608,18611]]],["wide",[2,2,[[19,2,2,0,2,[[648,1,1,0,1],[652,1,1,1,2]]]],[16993,17137]]]]},{"k":"H2268","v":[["*",[11,10,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[6,5,4,2,6,[[214,4,3,2,5],[215,1,1,5,6]]],[12,4,4,6,10,[[341,1,1,6,7],[344,2,2,7,9],[345,1,1,9,10]]]],[1403,4534,6610,6616,6620,6647,10403,10566,10567,10592]]],["Heber",[10,9,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[6,4,3,2,5,[[214,3,2,2,4],[215,1,1,4,5]]],[12,4,4,5,9,[[341,1,1,5,6],[344,2,2,6,8],[345,1,1,8,9]]]],[1403,4534,6610,6616,6647,10403,10566,10567,10592]]],["Heber's",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6620]]]]},{"k":"H2269","v":[["*",[3,3,[[26,3,3,0,3,[[851,3,3,0,3]]]],[21771,21775,21776]]],["companions",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21775]]],["fellows",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21771,21776]]]]},{"k":"H2270","v":[["*",[12,11,[[6,1,1,0,1,[[230,1,1,0,1]]],[18,2,2,1,3,[[522,1,1,1,2],[596,1,1,2,3]]],[19,1,1,3,4,[[655,1,1,3,4]]],[20,1,1,4,5,[[662,1,1,4,5]]],[21,2,2,5,7,[[671,1,1,5,6],[678,1,1,6,7]]],[22,2,2,7,9,[[679,1,1,7,8],[722,1,1,8,9]]],[25,3,2,9,11,[[838,3,2,9,11]]]],[7065,14604,15961,17220,17391,17544,17653,17677,18544,21413,21416]]],["+",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14604]]],["companion",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[19,1,1,1,2,[[655,1,1,1,2]]]],[15961,17220]]],["companions",[5,4,[[21,2,2,0,2,[[671,1,1,0,1],[678,1,1,1,2]]],[22,1,1,2,3,[[679,1,1,2,3]]],[25,2,1,3,4,[[838,2,1,3,4]]]],[17544,17653,17677,21413]]],["fellow",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17391]]],["fellows",[2,2,[[22,1,1,0,1,[[722,1,1,0,1]]],[25,1,1,1,2,[[838,1,1,1,2]]]],[18544,21416]]],["together",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7065]]]]},{"k":"H2271","v":[["companions",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13894]]]]},{"k":"H2272","v":[["spots",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19289]]]]},{"k":"H2273","v":[["fellows",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21953]]]]},{"k":"H2274","v":[["company",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13691]]]]},{"k":"H2275","v":[["*",[71,66,[[0,5,5,0,5,[[12,1,1,0,1],[22,2,2,1,3],[34,1,1,3,4],[36,1,1,4,5]]],[1,1,1,5,6,[[55,1,1,5,6]]],[3,3,2,6,8,[[119,1,1,6,7],[129,2,1,7,8]]],[5,15,15,8,23,[[196,5,5,8,13],[197,1,1,13,14],[198,1,1,14,15],[200,3,3,15,18],[201,2,2,18,20],[206,1,1,20,21],[207,2,2,21,23]]],[6,4,3,23,26,[[211,3,2,23,25],[226,1,1,25,26]]],[8,1,1,26,27,[[265,1,1,26,27]]],[9,23,21,27,48,[[268,4,4,27,31],[269,7,7,31,38],[270,4,3,38,41],[271,5,4,41,45],[281,3,3,45,48]]],[10,1,1,48,49,[[292,1,1,48,49]]],[12,17,16,49,65,[[339,2,2,49,51],[340,2,2,51,53],[343,4,4,53,57],[348,3,2,57,59],[349,2,2,59,61],[352,1,1,61,62],[360,2,2,62,64],[366,1,1,64,65]]],[13,1,1,65,66,[[377,1,1,65,66]]]],[336,573,590,1038,1097,1673,3711,4097,6067,6069,6087,6100,6103,6128,6140,6200,6201,6202,6215,6256,6379,6392,6394,6519,6529,6952,8009,8050,8052,8060,8081,8083,8086,8100,8101,8103,8108,8113,8121,8128,8132,8133,8135,8137,8145,8396,8398,8399,8781,10348,10349,10362,10365,10456,10472,10509,10511,10674,10676,10743,10758,10800,10995,11002,11191,11424]]],["+",[3,3,[[5,1,1,0,1,[[196,1,1,0,1]]],[9,2,2,1,3,[[269,1,1,1,2],[271,1,1,2,3]]]],[6087,8100,8145]]],["Hebron",[68,63,[[0,5,5,0,5,[[12,1,1,0,1],[22,2,2,1,3],[34,1,1,3,4],[36,1,1,4,5]]],[1,1,1,5,6,[[55,1,1,5,6]]],[3,3,2,6,8,[[119,1,1,6,7],[129,2,1,7,8]]],[5,14,14,8,22,[[196,4,4,8,12],[197,1,1,12,13],[198,1,1,13,14],[200,3,3,14,17],[201,2,2,17,19],[206,1,1,19,20],[207,2,2,20,22]]],[6,4,3,22,25,[[211,3,2,22,24],[226,1,1,24,25]]],[8,1,1,25,26,[[265,1,1,25,26]]],[9,21,19,26,45,[[268,4,4,26,30],[269,6,6,30,36],[270,4,3,36,39],[271,4,3,39,42],[281,3,3,42,45]]],[10,1,1,45,46,[[292,1,1,45,46]]],[12,17,16,46,62,[[339,2,2,46,48],[340,2,2,48,50],[343,4,4,50,54],[348,3,2,54,56],[349,2,2,56,58],[352,1,1,58,59],[360,2,2,59,61],[366,1,1,61,62]]],[13,1,1,62,63,[[377,1,1,62,63]]]],[336,573,590,1038,1097,1673,3711,4097,6067,6069,6100,6103,6128,6140,6200,6201,6202,6215,6256,6379,6392,6394,6519,6529,6952,8009,8050,8052,8060,8081,8083,8086,8101,8103,8108,8113,8121,8128,8132,8133,8135,8137,8396,8398,8399,8781,10348,10349,10362,10365,10456,10472,10509,10511,10674,10676,10743,10758,10800,10995,11002,11191,11424]]]]},{"k":"H2276","v":[["Hebronites",[6,5,[[3,2,2,0,2,[[119,1,1,0,1],[142,1,1,1,2]]],[12,4,3,2,5,[[363,4,3,2,5]]]],[3719,4547,11100,11107,11108]]]]},{"k":"H2277","v":[["Heberites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4534]]]]},{"k":"H2278","v":[["companion",[1,1,[[38,1,1,0,1,[[926,1,1,0,1]]]],[23117]]]]},{"k":"H2279","v":[["*",[4,3,[[1,4,3,0,3,[[75,3,2,0,2],[85,1,1,2,3]]]],[2239,2245,2583]]],["coupleth",[2,2,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]]],[2245,2583]]],["coupling",[2,2,[[1,2,2,0,2,[[75,2,2,0,2]]]],[2239,2245]]]]},{"k":"H2280","v":[["*",[33,30,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,1,1,1,2,[[78,1,1,1,2]]],[2,1,1,2,3,[[97,1,1,2,3]]],[3,1,1,3,4,[[138,1,1,3,4]]],[6,1,1,4,5,[[229,1,1,4,5]]],[9,3,3,5,8,[[282,1,1,5,6],[283,1,1,6,7],[285,1,1,7,8]]],[10,6,4,8,12,[[292,1,1,8,9],[303,5,3,9,12]]],[11,1,1,12,13,[[316,1,1,12,13]]],[17,4,4,13,17,[[440,1,1,13,14],[463,1,1,14,15],[469,1,1,15,16],[475,1,1,16,17]]],[18,1,1,17,18,[[624,1,1,17,18]]],[22,4,4,18,22,[[679,1,1,18,19],[681,1,1,19,20],[708,1,1,20,21],[739,1,1,21,22]]],[25,7,6,22,28,[[817,1,1,22,23],[825,1,1,23,24],[828,1,1,24,25],[831,2,1,25,26],[835,2,2,26,28]]],[27,1,1,28,29,[[867,1,1,28,29]]],[31,1,1,29,30,[[890,1,1,29,30]]]],[550,2345,2930,4396,7034,8427,8472,8537,8810,9197,9207,9211,9627,12969,13515,13700,13877,16354,17660,17714,18243,18844,20772,21073,21145,21225,21317,21329,22168,22553]]],["+",[4,4,[[0,1,1,0,1,[[21,1,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]],[10,1,1,2,3,[[292,1,1,2,3]]],[22,1,1,3,4,[[708,1,1,3,4]]]],[550,4396,8810,18243]]],["Saddle",[2,2,[[10,2,2,0,2,[[303,2,2,0,2]]]],[9197,9211]]],["about",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20772]]],["bind",[3,3,[[17,1,1,0,1,[[475,1,1,0,1]]],[25,2,2,1,3,[[825,1,1,1,2],[831,1,1,2,3]]]],[13877,21073,21225]]],["bindeth",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13515]]],["bound",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21145]]],["govern",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13700]]],["healer",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17714]]],["put",[2,2,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]]],[2345,2930]]],["saddle",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8537]]],["saddled",[7,7,[[6,1,1,0,1,[[229,1,1,0,1]]],[9,2,2,1,3,[[282,1,1,1,2],[283,1,1,2,3]]],[10,3,3,3,6,[[303,3,3,3,6]]],[11,1,1,6,7,[[316,1,1,6,7]]]],[7034,8427,8472,9197,9207,9211,9627]]],["up",[8,8,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,1,1,1,2,[[624,1,1,1,2]]],[22,2,2,2,4,[[679,1,1,2,3],[739,1,1,3,4]]],[25,3,3,4,7,[[831,1,1,4,5],[835,2,2,5,7]]],[27,1,1,7,8,[[867,1,1,7,8]]]],[12969,16354,17660,18844,21225,21317,21329,22168]]],["wrapped",[1,1,[[31,1,1,0,1,[[890,1,1,0,1]]]],[22553]]]]},{"k":"H2281","v":[["pans",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10646]]]]},{"k":"H2282","v":[["*",[62,55,[[1,12,10,0,10,[[59,1,1,0,1],[61,1,1,1,2],[62,1,1,2,3],[72,4,3,3,6],[81,1,1,6,7],[83,4,3,7,10]]],[2,4,4,10,14,[[112,4,4,10,14]]],[3,2,2,14,16,[[144,1,1,14,15],[145,1,1,15,16]]],[4,7,5,16,21,[[168,6,4,16,20],[183,1,1,20,21]]],[6,1,1,21,22,[[231,1,1,21,22]]],[10,5,4,22,26,[[298,2,2,22,24],[302,3,2,24,26]]],[13,9,7,26,33,[[371,1,1,26,27],[373,2,2,27,29],[374,3,1,29,30],[396,2,2,30,32],[401,1,1,32,33]]],[14,2,2,33,35,[[405,1,1,33,34],[408,1,1,34,35]]],[15,2,2,35,37,[[420,2,2,35,37]]],[18,2,2,37,39,[[558,1,1,37,38],[595,1,1,38,39]]],[22,2,2,39,41,[[707,1,1,39,40],[708,1,1,40,41]]],[25,5,5,41,46,[[846,4,4,41,45],[847,1,1,45,46]]],[27,2,2,46,48,[[863,1,1,46,47],[870,1,1,47,48]]],[29,2,2,48,50,[[883,1,1,48,49],[886,1,1,49,50]]],[33,1,1,50,51,[[900,1,1,50,51]]],[37,3,3,51,54,[[924,3,3,51,54]]],[38,1,1,54,55,[[926,1,1,54,55]]]],[1786,1830,1873,2159,2160,2162,2443,2514,2518,2521,3408,3436,3441,3443,4594,4620,5352,5355,5356,5358,5738,7121,8987,9050,9183,9184,11271,11332,11333,11359,11840,11848,11983,12101,12173,12507,12511,15220,15896,18194,18246,21647,21651,21653,21655,21666,22116,22213,22444,22491,22699,23084,23086,23087,23106]]],["+",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18246]]],["days",[2,2,[[27,1,1,0,1,[[863,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[22116,22444]]],["feast",[51,44,[[1,11,9,0,9,[[59,1,1,0,1],[61,1,1,1,2],[62,1,1,2,3],[72,3,2,3,5],[81,1,1,5,6],[83,4,3,6,9]]],[2,4,4,9,13,[[112,4,4,9,13]]],[3,2,2,13,15,[[144,1,1,13,14],[145,1,1,14,15]]],[4,7,5,15,20,[[168,6,4,15,19],[183,1,1,19,20]]],[6,1,1,20,21,[[231,1,1,20,21]]],[10,5,4,21,25,[[298,2,2,21,23],[302,3,2,23,25]]],[13,9,7,25,32,[[371,1,1,25,26],[373,2,2,26,28],[374,3,1,28,29],[396,2,2,29,31],[401,1,1,31,32]]],[14,2,2,32,34,[[405,1,1,32,33],[408,1,1,33,34]]],[15,2,2,34,36,[[420,2,2,34,36]]],[18,1,1,36,37,[[558,1,1,36,37]]],[25,3,3,37,40,[[846,3,3,37,40]]],[27,1,1,40,41,[[870,1,1,40,41]]],[37,3,3,41,44,[[924,3,3,41,44]]]],[1786,1830,1873,2159,2160,2443,2514,2518,2521,3408,3436,3441,3443,4594,4620,5352,5355,5356,5358,5738,7121,8987,9050,9183,9184,11271,11332,11333,11359,11840,11848,11983,12101,12173,12507,12511,15220,21651,21653,21655,22213,23084,23086,23087]]],["feasts",[5,5,[[25,2,2,0,2,[[846,1,1,0,1],[847,1,1,1,2]]],[29,1,1,2,3,[[886,1,1,2,3]]],[33,1,1,3,4,[[900,1,1,3,4]]],[38,1,1,4,5,[[926,1,1,4,5]]]],[21647,21666,22491,22699,23106]]],["sacrifice",[2,2,[[1,1,1,0,1,[[72,1,1,0,1]]],[18,1,1,1,2,[[595,1,1,1,2]]]],[2162,15896]]],["sacrifices",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18194]]]]},{"k":"H2283","v":[["terror",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18021]]]]},{"k":"H2284","v":[["*",[5,5,[[2,1,1,0,1,[[100,1,1,0,1]]],[3,1,1,1,2,[[129,1,1,1,2]]],[13,1,1,2,3,[[373,1,1,2,3]]],[20,1,1,3,4,[[670,1,1,3,4]]],[22,1,1,4,5,[[718,1,1,4,5]]]],[3019,4108,11337,17528,18442]]],["grasshopper",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[20,1,1,1,2,[[670,1,1,1,2]]]],[3019,17528]]],["grasshoppers",[2,2,[[3,1,1,0,1,[[129,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[4108,18442]]],["locusts",[1,1,[[13,1,1,0,1,[[373,1,1,0,1]]]],[11337]]]]},{"k":"H2285","v":[["Hagab",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12073]]]]},{"k":"H2286","v":[["*",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12072,12468]]],["Hagaba",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12468]]],["Hagabah",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12072]]]]},{"k":"H2287","v":[["*",[16,14,[[1,4,3,0,3,[[54,1,1,0,1],[61,2,1,1,2],[72,1,1,2,3]]],[2,3,2,3,5,[[112,3,2,3,5]]],[3,1,1,5,6,[[145,1,1,5,6]]],[4,1,1,6,7,[[168,1,1,6,7]]],[8,1,1,7,8,[[265,1,1,7,8]]],[18,2,2,8,10,[[519,1,1,8,9],[584,1,1,9,10]]],[33,1,1,10,11,[[900,1,1,10,11]]],[37,3,3,11,14,[[924,3,3,11,14]]]],[1633,1830,2158,3441,3443,4620,5357,7994,14559,15726,22699,23084,23086,23087]]],["+",[4,4,[[2,1,1,0,1,[[112,1,1,0,1]]],[37,3,3,1,4,[[924,3,3,1,4]]]],[3441,23084,23086,23087]]],["celebrate",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3443]]],["dancing",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7994]]],["feast",[4,4,[[1,3,3,0,3,[[54,1,1,0,1],[61,1,1,1,2],[72,1,1,2,3]]],[4,1,1,3,4,[[168,1,1,3,4]]]],[1633,1830,2158,5357]]],["fro",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15726]]],["holyday",[1,1,[[18,1,1,0,1,[[519,1,1,0,1]]]],[14559]]],["keep",[4,4,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[3,1,1,2,3,[[145,1,1,2,3]]],[33,1,1,3,4,[[900,1,1,3,4]]]],[1830,3443,4620,22699]]]]},{"k":"H2288","v":[["clefts",[3,3,[[21,1,1,0,1,[[672,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]],[30,1,1,2,3,[[888,1,1,2,3]]]],[17568,20143,22513]]]]},{"k":"H2289","v":[["*",[3,3,[[9,1,1,0,1,[[286,1,1,0,1]]],[19,1,1,1,2,[[658,1,1,1,2]]],[25,1,1,2,3,[[824,1,1,2,3]]]],[8562,17308,21022]]],["Girded",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21022]]],["girdle",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8562]]],["girdles",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17308]]]]},{"k":"H2290","v":[["*",[7,7,[[0,1,1,0,1,[[2,1,1,0,1]]],[8,1,1,1,2,[[253,1,1,1,2]]],[9,1,1,2,3,[[284,1,1,2,3]]],[10,1,1,3,4,[[292,1,1,3,4]]],[11,1,1,4,5,[[315,1,1,4,5]]],[22,2,2,5,7,[[681,1,1,5,6],[710,1,1,6,7]]]],[62,7680,8489,8775,9597,17731,18270]]],["aprons",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[62]]],["armour",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9597]]],["gird",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18270]]],["girdle",[4,4,[[8,1,1,0,1,[[253,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[10,1,1,2,3,[[292,1,1,2,3]]],[22,1,1,3,4,[[681,1,1,3,4]]]],[7680,8489,8775,17731]]]]},{"k":"H2291","v":[["*",[3,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,2,1,1,2,[[142,2,1,1,2]]]],[1402,4504]]],["Haggi",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1402,4504]]],["Haggites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4504]]]]},{"k":"H2292","v":[["Haggai",[11,11,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]],[36,9,9,2,11,[[909,4,4,2,6],[910,5,5,6,11]]]],[12135,12165,22841,22843,22852,22853,22856,22865,22868,22869,22875]]]]},{"k":"H2293","v":[["Haggiah",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10484]]]]},{"k":"H2294","v":[["Haggith",[5,5,[[9,1,1,0,1,[[269,1,1,0,1]]],[10,3,3,1,4,[[291,2,2,1,3],[292,1,1,3,4]]],[12,1,1,4,5,[[340,1,1,4,5]]]],[8085,8722,8728,8783,10363]]]]},{"k":"H2295","v":[["Hoglah",[4,4,[[3,3,3,0,3,[[142,1,1,0,1],[143,1,1,1,2],[152,1,1,2,3]]],[5,1,1,3,4,[[203,1,1,3,4]]]],[4522,4555,4890,6278]]]]},{"k":"H2296","v":[["*",[43,40,[[1,2,2,0,2,[[61,1,1,0,1],[78,1,1,1,2]]],[2,4,3,2,5,[[97,3,2,2,4],[105,1,1,4,5]]],[4,1,1,5,6,[[153,1,1,5,6]]],[6,4,4,6,10,[[213,1,1,6,7],[228,3,3,7,10]]],[8,5,3,10,13,[[237,1,1,10,11],[252,1,1,11,12],[260,3,1,12,13]]],[9,5,5,13,18,[[269,1,1,13,14],[272,1,1,14,15],[286,1,1,15,16],[287,1,1,16,17],[288,1,1,17,18]]],[10,2,2,18,20,[[310,2,2,18,20]]],[11,3,3,20,23,[[315,1,1,20,21],[316,1,1,21,22],[321,1,1,22,23]]],[18,4,4,23,27,[[522,1,1,23,24],[542,1,1,24,25],[553,1,1,25,26],[586,1,1,26,27]]],[19,1,1,27,28,[[658,1,1,27,28]]],[22,2,2,28,30,[[693,1,1,28,29],[700,1,1,29,30]]],[23,3,3,30,33,[[748,1,1,30,31],[750,1,1,31,32],[793,1,1,32,33]]],[24,1,1,33,34,[[798,1,1,33,34]]],[25,3,3,34,37,[[808,1,1,34,35],[828,1,1,35,36],[845,1,1,36,37]]],[26,1,1,37,38,[[859,1,1,37,38]]],[28,2,2,38,40,[[876,2,2,38,40]]]],[1827,2345,2924,2930,3205,4933,6584,7004,7009,7010,7258,7657,7874,8112,8171,8562,8596,8648,9419,9440,9597,9632,9757,14600,14872,15091,15774,17301,17963,18064,19035,19115,20130,20342,20595,21152,21617,22020,22299,22304]]],["+",[2,2,[[8,2,2,0,2,[[252,1,1,0,1],[260,1,1,1,2]]]],[7657,7874]]],["Gird",[2,2,[[18,1,1,0,1,[[522,1,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]]],[14600,22304]]],["afraid",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8648]]],["appointed",[3,3,[[6,3,3,0,3,[[228,3,3,0,3]]]],[7004,7009,7010]]],["gird",[10,10,[[1,1,1,0,1,[[78,1,1,0,1]]],[6,1,1,1,2,[[213,1,1,1,2]]],[9,1,1,2,3,[[269,1,1,2,3]]],[22,1,1,3,4,[[693,1,1,3,4]]],[23,3,3,4,7,[[748,1,1,4,5],[750,1,1,5,6],[793,1,1,6,7]]],[25,3,3,7,10,[[808,1,1,7,8],[828,1,1,8,9],[845,1,1,9,10]]]],[2345,6584,8112,17963,19035,19115,20130,20595,21152,21617]]],["girded",[14,13,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,4,3,1,4,[[97,3,2,1,3],[105,1,1,3,4]]],[8,1,1,4,5,[[237,1,1,4,5]]],[9,3,3,5,8,[[272,1,1,5,6],[286,1,1,6,7],[287,1,1,7,8]]],[10,1,1,8,9,[[310,1,1,8,9]]],[18,1,1,9,10,[[586,1,1,9,10]]],[24,1,1,10,11,[[798,1,1,10,11]]],[26,1,1,11,12,[[859,1,1,11,12]]],[28,1,1,12,13,[[876,1,1,12,13]]]],[1827,2924,2930,3205,7258,8171,8562,8596,9440,15774,20342,22020,22299]]],["girdeth",[2,2,[[10,1,1,0,1,[[310,1,1,0,1]]],[19,1,1,1,2,[[658,1,1,1,2]]]],[9419,17301]]],["girding",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18064]]],["on",[4,3,[[4,1,1,0,1,[[153,1,1,0,1]]],[8,2,1,1,2,[[260,2,1,1,2]]],[11,1,1,2,3,[[315,1,1,2,3]]]],[4933,7874,9597]]],["restrain",[1,1,[[18,1,1,0,1,[[553,1,1,0,1]]]],[15091]]],["side",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14872]]],["up",[2,2,[[11,2,2,0,2,[[316,1,1,0,1],[321,1,1,1,2]]]],[9632,9757]]]]},{"k":"H2297","v":[["one",[1,1,[[25,1,1,0,1,[[834,1,1,0,1]]]],[21310]]]]},{"k":"H2298","v":[["*",[14,14,[[14,4,4,0,4,[[406,1,1,0,1],[407,1,1,1,2],[408,2,2,2,4]]],[26,10,10,4,14,[[851,3,3,4,7],[852,1,1,7,8],[853,1,1,8,9],[855,2,2,9,11],[856,3,3,11,14]]]],[12118,12147,12153,12154,21767,21789,21793,21826,21856,21907,21922,21934,21938,21949]]],["a",[4,4,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]],[26,2,2,2,4,[[851,1,1,2,3],[855,1,1,3,4]]]],[12118,12153,21789,21922]]],["first",[4,4,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]],[26,2,2,2,4,[[855,1,1,2,3],[856,1,1,3,4]]]],[12147,12154,21907,21934]]],["one",[5,5,[[26,5,5,0,5,[[851,1,1,0,1],[852,1,1,1,2],[853,1,1,2,3],[856,2,2,3,5]]]],[21767,21826,21856,21938,21949]]],["together",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21793]]]]},{"k":"H2299","v":[["sharp",[4,4,[[18,1,1,0,1,[[534,1,1,0,1]]],[19,1,1,1,2,[[632,1,1,1,2]]],[22,1,1,2,3,[[727,1,1,2,3]]],[25,1,1,3,4,[[806,1,1,3,4]]]],[14772,16521,18638,20547]]]]},{"k":"H2300","v":[["*",[6,5,[[19,2,1,0,1,[[654,2,1,0,1]]],[25,3,3,1,4,[[822,3,3,1,4]]],[34,1,1,4,5,[[903,1,1,4,5]]]],[17186,20953,20954,20955,22739]]],["fierce",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22739]]],["sharpened",[3,3,[[25,3,3,0,3,[[822,3,3,0,3]]]],[20953,20954,20955]]],["sharpeneth",[2,1,[[19,2,1,0,1,[[654,2,1,0,1]]]],[17186]]]]},{"k":"H2301","v":[["Hadad",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10282]]]]},{"k":"H2302","v":[["*",[3,3,[[1,1,1,0,1,[[67,1,1,0,1]]],[17,1,1,1,2,[[438,1,1,1,2]]],[18,1,1,2,3,[[498,1,1,2,3]]]],[2008,12910,14197]]],["+",[1,1,[[18,1,1,0,1,[[498,1,1,0,1]]]],[14197]]],["joined",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12910]]],["rejoiced",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2008]]]]},{"k":"H2303","v":[["Sharp",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13918]]]]},{"k":"H2304","v":[["*",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[15,1,1,1,2,[[420,1,1,1,2]]]],[10847,12503]]],["gladness",[1,1,[[12,1,1,0,1,[[353,1,1,0,1]]]],[10847]]],["joy",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12503]]]]},{"k":"H2305","v":[["joy",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12167]]]]},{"k":"H2306","v":[["breast",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21790]]]]},{"k":"H2307","v":[["Hadid",[3,3,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,2,2,1,3,[[419,1,1,1,2],[423,1,1,2,3]]]],[12060,12457,12622]]]]},{"k":"H2308","v":[["*",[58,56,[[0,3,3,0,3,[[10,1,1,0,1],[17,1,1,1,2],[40,1,1,2,3]]],[1,5,5,3,8,[[58,3,3,3,6],[63,1,1,6,7],[72,1,1,7,8]]],[3,1,1,8,9,[[125,1,1,8,9]]],[4,2,2,9,11,[[167,1,1,9,10],[175,1,1,10,11]]],[6,8,7,11,18,[[215,3,2,11,13],[219,3,3,13,16],[225,1,1,16,17],[230,1,1,17,18]]],[7,1,1,18,19,[[232,1,1,18,19]]],[8,4,4,19,23,[[237,1,1,19,20],[244,1,1,20,21],[247,1,1,21,22],[258,1,1,22,23]]],[10,3,3,23,26,[[305,1,1,23,24],[312,2,2,24,26]]],[13,6,5,26,31,[[382,1,1,26,27],[384,2,2,27,29],[391,2,1,29,30],[401,1,1,30,31]]],[17,7,7,31,38,[[438,1,1,31,32],[442,1,1,32,33],[445,1,1,33,34],[449,2,2,34,36],[451,1,1,36,37],[454,1,1,37,38]]],[18,2,2,38,40,[[513,1,1,38,39],[526,1,1,39,40]]],[19,3,3,40,43,[[637,1,1,40,41],[646,1,1,41,42],[650,1,1,42,43]]],[22,3,3,43,46,[[679,1,1,43,44],[680,1,1,44,45],[702,1,1,45,46]]],[23,4,4,46,50,[[784,1,1,46,47],[785,1,1,47,48],[788,1,1,48,49],[795,1,1,49,50]]],[25,4,4,50,54,[[803,2,2,50,52],[804,2,2,52,54]]],[29,1,1,54,55,[[885,1,1,54,55]]],[37,1,1,55,56,[[921,1,1,55,56]]]],[274,435,1244,1771,1775,1776,1901,2149,3978,5330,5522,6629,6630,6763,6765,6767,6936,7082,7145,7245,7396,7483,7823,9270,9486,9495,11514,11547,11556,11720,11987,12921,13024,13106,13187,13188,13244,13311,14441,14656,16675,16952,17048,17670,17707,18103,19945,19965,20028,20242,20497,20499,20513,20529,22469,23040]]],["+",[6,6,[[1,1,1,0,1,[[63,1,1,0,1]]],[6,3,3,1,4,[[219,3,3,1,4]]],[8,1,1,4,5,[[247,1,1,4,5]]],[17,1,1,5,6,[[442,1,1,5,6]]]],[1901,6763,6765,6767,7483,13024]]],["Cease",[2,2,[[19,1,1,0,1,[[646,1,1,0,1]]],[22,1,1,1,2,[[680,1,1,1,2]]]],[16952,17707]]],["cease",[10,10,[[1,1,1,0,1,[[58,1,1,0,1]]],[4,1,1,1,2,[[167,1,1,1,2]]],[6,2,2,2,4,[[225,1,1,2,3],[230,1,1,3,4]]],[17,3,3,4,7,[[438,1,1,4,5],[445,1,1,5,6],[449,1,1,6,7]]],[19,1,1,7,8,[[650,1,1,7,8]]],[22,1,1,8,9,[[679,1,1,8,9]]],[29,1,1,9,10,[[885,1,1,9,10]]]],[1771,5330,6936,7082,12921,13106,13188,17048,17670,22469]]],["ceased",[6,5,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,2,2,1,3,[[58,2,2,1,3]]],[6,2,1,3,4,[[215,2,1,3,4]]],[8,1,1,4,5,[[237,1,1,4,5]]]],[435,1775,1776,6630,7245]]],["ceaseth",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14656]]],["endeth",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18103]]],["failed",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13311]]],["forbare",[3,3,[[8,1,1,0,1,[[258,1,1,0,1]]],[13,1,1,1,2,[[391,1,1,1,2]]],[23,1,1,2,3,[[785,1,1,2,3]]]],[7823,11720,19965]]],["forbear",[15,15,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,1,1,1,2,[[175,1,1,1,2]]],[10,2,2,2,4,[[312,2,2,2,4]]],[13,4,4,4,8,[[384,2,2,4,6],[391,1,1,6,7],[401,1,1,7,8]]],[17,1,1,8,9,[[451,1,1,8,9]]],[23,1,1,9,10,[[784,1,1,9,10]]],[25,4,4,10,14,[[803,2,2,10,12],[804,2,2,12,14]]],[37,1,1,14,15,[[921,1,1,14,15]]]],[2149,5522,9486,9495,11547,11556,11720,11987,13244,19945,20497,20499,20513,20529,23040]]],["forbeareth",[1,1,[[3,1,1,0,1,[[125,1,1,0,1]]]],[3978]]],["forborn",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20242]]],["leave",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7396]]],["left",[2,2,[[0,1,1,0,1,[[40,1,1,0,1]]],[7,1,1,1,2,[[232,1,1,1,2]]]],[1244,7145]]],["off",[5,5,[[0,1,1,0,1,[[10,1,1,0,1]]],[10,1,1,1,2,[[305,1,1,1,2]]],[13,1,1,2,3,[[382,1,1,2,3]]],[18,1,1,3,4,[[513,1,1,3,4]]],[23,1,1,4,5,[[788,1,1,4,5]]]],[274,9270,11514,14441,20028]]],["rest",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13187]]],["unoccupied",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6629]]],["wanteth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16675]]]]},{"k":"H2309","v":[["world",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18401]]]]},{"k":"H2310","v":[["*",[3,3,[[18,1,1,0,1,[[516,1,1,0,1]]],[22,1,1,1,2,[[731,1,1,1,2]]],[25,1,1,2,3,[[804,1,1,2,3]]]],[14516,18714,20529]]],["forbeareth",[1,1,[[25,1,1,0,1,[[804,1,1,0,1]]]],[20529]]],["frail",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14516]]],["rejected",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18714]]]]},{"k":"H2311","v":[["Hadlai",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11776]]]]},{"k":"H2312","v":[["*",[2,2,[[19,1,1,0,1,[[642,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]]],[16826,22668]]],["brier",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22668]]],["thorns",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16826]]]]},{"k":"H2313","v":[["Hiddekel",[2,2,[[0,1,1,0,1,[[1,1,1,0,1]]],[26,1,1,1,2,[[859,1,1,1,2]]]],[44,22019]]]]},{"k":"H2314","v":[["chambers",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20958]]]]},{"k":"H2315","v":[["*",[38,33,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,1,1,1,2,[[57,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[6,4,4,3,7,[[213,1,1,3,4],[225,1,1,4,5],[226,2,2,5,7]]],[9,3,2,7,9,[[270,1,1,7,8],[279,2,1,8,9]]],[10,5,3,9,12,[[291,1,1,9,10],[310,2,1,10,11],[312,2,1,11,12]]],[11,4,3,12,15,[[318,1,1,12,13],[321,2,1,13,14],[323,1,1,14,15]]],[12,1,1,15,16,[[365,1,1,15,16]]],[13,3,2,16,18,[[384,2,1,16,17],[388,1,1,17,18]]],[17,2,2,18,20,[[444,1,1,18,19],[472,1,1,19,20]]],[18,1,1,20,21,[[582,1,1,20,21]]],[19,6,6,21,27,[[634,1,1,21,22],[645,1,1,22,23],[647,2,2,23,25],[651,1,1,25,26],[653,1,1,26,27]]],[20,1,1,27,28,[[668,1,1,27,28]]],[21,2,2,28,30,[[671,1,1,28,29],[673,1,1,29,30]]],[22,1,1,30,31,[[704,1,1,30,31]]],[25,1,1,31,32,[[809,1,1,31,32]]],[28,1,1,32,33,[[877,1,1,32,33]]]],[1320,1713,5783,6592,6930,6958,6961,8127,8327,8732,9438,9505,9686,9758,9831,11154,11566,11655,13060,13778,15636,16602,16909,16981,16984,17083,17163,17513,17541,17575,18150,20616,22327]]],["+",[12,10,[[1,1,1,0,1,[[57,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[9,1,1,2,3,[[270,1,1,2,3]]],[10,2,1,3,4,[[310,2,1,3,4]]],[11,2,2,4,6,[[318,1,1,4,5],[323,1,1,5,6]]],[13,3,2,6,8,[[384,2,1,6,7],[388,1,1,7,8]]],[20,1,1,8,9,[[668,1,1,8,9]]],[28,1,1,9,10,[[877,1,1,9,10]]]],[1713,5783,8127,9438,9686,9831,11566,11655,17513,22327]]],["chamber",[11,10,[[0,1,1,0,1,[[42,1,1,0,1]]],[6,4,4,1,5,[[213,1,1,1,2],[225,1,1,2,3],[226,2,2,3,5]]],[9,2,1,5,6,[[279,2,1,5,6]]],[10,2,2,6,8,[[291,1,1,6,7],[312,1,1,7,8]]],[11,1,1,8,9,[[321,1,1,8,9]]],[21,1,1,9,10,[[673,1,1,9,10]]]],[1320,6592,6930,6958,6961,8327,8732,9505,9758,17575]]],["chambers",[7,7,[[17,1,1,0,1,[[444,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]],[19,2,2,2,4,[[634,1,1,2,3],[651,1,1,3,4]]],[21,1,1,4,5,[[671,1,1,4,5]]],[22,1,1,5,6,[[704,1,1,5,6]]],[25,1,1,6,7,[[809,1,1,6,7]]]],[13060,15636,16602,17083,17541,18150,20616]]],["inner",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[11,1,1,1,2,[[321,1,1,1,2]]]],[9505,9758]]],["parlours",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11154]]],["parts",[4,4,[[19,4,4,0,4,[[645,1,1,0,1],[647,2,2,1,3],[653,1,1,3,4]]]],[16909,16981,16984,17163]]],["south",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13778]]]]},{"k":"H2316","v":[["Hadar",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[673]]]]},{"k":"H2317","v":[["Hadrach",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23000]]]]},{"k":"H2318","v":[["*",[10,10,[[8,1,1,0,1,[[246,1,1,0,1]]],[13,3,3,1,4,[[381,1,1,1,2],[390,2,2,2,4]]],[17,1,1,4,5,[[445,1,1,4,5]]],[18,3,3,5,8,[[528,1,1,5,6],[580,1,1,6,7],[581,1,1,7,8]]],[22,1,1,8,9,[[739,1,1,8,9]]],[24,1,1,9,10,[[801,1,1,9,10]]]],[7459,11498,11681,11689,13103,14701,15554,15601,18847,20463]]],["+",[2,2,[[13,2,2,0,2,[[381,1,1,0,1],[390,1,1,1,2]]]],[11498,11681]]],["renew",[3,3,[[8,1,1,0,1,[[246,1,1,0,1]]],[18,1,1,1,2,[[528,1,1,1,2]]],[24,1,1,2,3,[[801,1,1,2,3]]]],[7459,14701,20463]]],["renewed",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15554]]],["renewest",[2,2,[[17,1,1,0,1,[[445,1,1,0,1]]],[18,1,1,1,2,[[581,1,1,1,2]]]],[13103,15601]]],["repair",[2,2,[[13,1,1,0,1,[[390,1,1,0,1]]],[22,1,1,1,2,[[739,1,1,1,2]]]],[11689,18847]]]]},{"k":"H2319","v":[["*",[53,48,[[1,1,1,0,1,[[50,1,1,0,1]]],[2,2,2,1,3,[[112,1,1,1,2],[115,1,1,2,3]]],[3,1,1,3,4,[[144,1,1,3,4]]],[4,4,4,4,8,[[172,1,1,4,5],[174,1,1,5,6],[176,1,1,6,7],[184,1,1,7,8]]],[5,1,1,8,9,[[195,1,1,8,9]]],[6,4,4,9,13,[[215,1,1,9,10],[225,1,1,10,11],[226,2,2,11,13]]],[8,1,1,13,14,[[241,1,1,13,14]]],[9,3,2,14,16,[[272,2,1,14,15],[287,1,1,15,16]]],[10,2,2,16,18,[[301,2,2,16,18]]],[11,1,1,18,19,[[314,1,1,18,19]]],[12,1,1,19,20,[[350,1,1,19,20]]],[13,1,1,20,21,[[386,1,1,20,21]]],[17,2,2,21,23,[[464,1,1,21,22],[467,1,1,22,23]]],[18,6,6,23,29,[[510,1,1,23,24],[517,1,1,24,25],[573,1,1,25,26],[575,1,1,26,27],[621,1,1,27,28],[626,1,1,28,29]]],[20,2,2,29,31,[[659,2,2,29,31]]],[21,1,1,31,32,[[677,1,1,31,32]]],[22,10,8,32,40,[[719,1,1,32,33],[720,2,2,33,35],[721,1,1,35,36],[726,1,1,36,37],[740,1,1,37,38],[743,2,1,38,39],[744,2,1,39,40]]],[23,4,4,40,44,[[770,1,1,40,41],[775,2,2,41,43],[780,1,1,43,44]]],[24,1,1,44,45,[[799,1,1,44,45]]],[25,5,3,45,48,[[812,1,1,45,46],[819,2,1,46,47],[837,2,1,47,48]]]],[1540,3418,3534,4603,5432,5478,5530,5775,6050,6631,6942,6960,6961,7338,8160,8596,9137,9138,9571,10767,11592,13552,13647,14369,14528,15466,15491,16314,16386,17324,17325,17640,18466,18489,18490,18524,18620,18856,18914,18944,19582,19713,19722,19852,20377,20674,20880,21385]]],["fresh",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13552]]],["new",[48,43,[[1,1,1,0,1,[[50,1,1,0,1]]],[2,2,2,1,3,[[112,1,1,1,2],[115,1,1,2,3]]],[3,1,1,3,4,[[144,1,1,3,4]]],[4,4,4,4,8,[[172,1,1,4,5],[174,1,1,5,6],[176,1,1,6,7],[184,1,1,7,8]]],[5,1,1,8,9,[[195,1,1,8,9]]],[6,4,4,9,13,[[215,1,1,9,10],[225,1,1,10,11],[226,2,2,11,13]]],[8,1,1,13,14,[[241,1,1,13,14]]],[9,3,2,14,16,[[272,2,1,14,15],[287,1,1,15,16]]],[10,2,2,16,18,[[301,2,2,16,18]]],[11,1,1,18,19,[[314,1,1,18,19]]],[12,1,1,19,20,[[350,1,1,19,20]]],[13,1,1,20,21,[[386,1,1,20,21]]],[17,1,1,21,22,[[467,1,1,21,22]]],[18,6,6,22,28,[[510,1,1,22,23],[517,1,1,23,24],[573,1,1,24,25],[575,1,1,25,26],[621,1,1,26,27],[626,1,1,27,28]]],[20,2,2,28,30,[[659,2,2,28,30]]],[21,1,1,30,31,[[677,1,1,30,31]]],[22,7,5,31,36,[[719,1,1,31,32],[720,1,1,32,33],[740,1,1,33,34],[743,2,1,34,35],[744,2,1,35,36]]],[23,3,3,36,39,[[770,1,1,36,37],[775,1,1,37,38],[780,1,1,38,39]]],[24,1,1,39,40,[[799,1,1,39,40]]],[25,5,3,40,43,[[812,1,1,40,41],[819,2,1,41,42],[837,2,1,42,43]]]],[1540,3418,3534,4603,5432,5478,5530,5775,6050,6631,6942,6960,6961,7338,8160,8596,9137,9138,9571,10767,11592,13647,14369,14528,15466,15491,16314,16386,17324,17325,17640,18466,18490,18856,18914,18944,19582,19722,19852,20377,20674,20880,21385]]],["thing",[2,2,[[22,1,1,0,1,[[721,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[18524,19713]]],["things",[2,2,[[22,2,2,0,2,[[720,1,1,0,1],[726,1,1,1,2]]]],[18489,18620]]]]},{"k":"H2320","v":[["*",[279,224,[[0,12,7,0,7,[[6,3,1,0,1],[7,7,4,1,5],[28,1,1,5,6],[37,1,1,6,7]]],[1,18,12,7,19,[[61,7,4,7,11],[62,2,2,11,13],[65,1,1,13,14],[68,1,1,14,15],[72,1,1,15,16],[83,2,1,16,17],[89,4,2,17,19]]],[2,13,11,19,30,[[105,2,1,19,20],[112,9,8,20,28],[114,1,1,28,29],[116,1,1,29,30]]],[3,35,31,30,61,[[117,2,2,30,32],[119,7,7,32,39],[125,5,5,39,44],[126,2,2,44,46],[127,2,2,46,48],[134,1,1,48,49],[136,1,1,49,50],[142,1,1,50,51],[144,6,4,51,55],[145,5,4,55,59],[149,3,2,59,61]]],[4,4,2,61,63,[[153,2,1,61,62],[168,2,1,62,63]]],[5,2,2,63,65,[[190,1,1,63,64],[191,1,1,64,65]]],[6,5,5,65,70,[[221,3,3,65,68],[229,1,1,68,69],[230,1,1,69,70]]],[8,7,7,70,77,[[241,1,1,70,71],[255,5,5,71,76],[262,1,1,76,77]]],[9,5,5,77,82,[[268,1,1,77,78],[271,1,1,78,79],[272,1,1,79,80],[290,2,2,80,82]]],[10,14,9,82,91,[[294,2,2,82,84],[295,3,1,84,85],[296,3,2,85,87],[298,1,1,87,88],[301,1,1,88,89],[302,4,2,89,91]]],[11,12,9,91,100,[[316,1,1,91,92],[327,1,1,92,93],[335,1,1,93,94],[336,1,1,94,95],[337,8,5,95,100]]],[12,21,19,100,119,[[340,1,1,100,101],[349,1,1,101,102],[350,1,1,102,103],[358,1,1,103,104],[360,1,1,104,105],[364,16,14,105,119]]],[13,19,16,119,135,[[368,1,1,119,120],[369,1,1,120,121],[371,1,1,121,122],[373,1,1,122,123],[374,1,1,123,124],[381,1,1,124,125],[395,4,2,125,127],[396,3,3,127,130],[397,3,2,130,132],[401,1,1,132,133],[402,2,2,133,135]]],[14,13,11,135,146,[[405,4,4,135,139],[408,1,1,139,140],[409,3,2,140,142],[410,1,1,142,143],[412,4,3,143,146]]],[15,7,7,146,153,[[413,1,1,146,147],[414,1,1,147,148],[419,1,1,148,149],[420,2,2,149,151],[421,1,1,151,152],[422,1,1,152,153]]],[16,24,13,153,166,[[427,5,2,153,155],[428,8,3,155,158],[433,4,2,158,160],[434,7,6,160,166]]],[17,2,2,166,168,[[449,1,1,166,167],[456,1,1,167,168]]],[18,1,1,168,169,[[558,1,1,168,169]]],[22,5,4,169,173,[[679,2,2,169,171],[725,1,1,171,172],[744,2,1,172,173]]],[23,18,13,173,186,[[745,1,1,173,174],[746,1,1,174,175],[772,2,2,175,177],[780,2,2,177,179],[783,3,2,179,181],[785,1,1,181,182],[796,8,4,182,186]]],[25,27,25,186,211,[[802,2,2,186,188],[809,1,1,188,189],[821,1,1,189,190],[825,2,1,190,191],[827,1,1,191,192],[830,2,2,192,194],[831,1,1,194,195],[832,1,1,195,196],[833,3,2,196,198],[834,1,1,198,199],[840,2,2,199,201],[841,1,1,201,202],[846,5,5,202,207],[847,3,3,207,210],[848,1,1,210,211]]],[26,1,1,211,212,[[859,1,1,211,212]]],[27,2,2,212,214,[[863,1,1,212,213],[866,1,1,213,214]]],[29,2,2,214,216,[[882,1,1,214,215],[886,1,1,215,216]]],[36,5,4,216,220,[[909,3,2,216,218],[910,2,2,218,220]]],[37,5,4,220,224,[[911,3,2,220,222],[917,2,2,222,224]]]],[170,187,188,196,197,809,1143,1818,1819,1822,1834,1871,1872,1948,2027,2159,2514,2709,2724,3230,3407,3408,3426,3429,3434,3436,3441,3443,3478,3576,3605,3622,3707,3714,3720,3726,3731,3732,3735,3966,3968,3970,3976,3987,3998,3999,4044,4045,4273,4312,4551,4588,4591,4593,4594,4609,4614,4615,4620,4763,4798,4895,5343,5929,5944,6866,6867,6868,7026,7101,7332,7735,7748,7754,7757,7764,7937,8060,8137,8168,8700,8705,8851,8871,8892,8897,8934,8987,9124,9183,9184,9626,9933,10196,10210,10223,10225,10230,10247,10249,10365,10735,10774,10946,11014,11110,11111,11112,11113,11114,11116,11117,11118,11119,11120,11121,11122,11123,11124,11215,11231,11271,11334,11359,11500,11794,11808,11829,11840,11842,11857,11861,11967,11995,12002,12098,12102,12103,12105,12170,12181,12182,12232,12261,12268,12269,12297,12308,12493,12495,12507,12512,12582,12736,12740,12754,12759,12760,12826,12829,12835,12849,12851,12853,12855,12856,13186,13376,15220,17667,17668,18612,18945,18949,18989,19619,19635,19851,19864,19924,19925,19958,20280,20282,20288,20307,20465,20466,20605,20896,21057,21101,21184,21200,21224,21231,21249,21265,21301,21460,21462,21478,21647,21648,21650,21651,21655,21656,21658,21661,21691,22019,22116,22159,22417,22486,22841,22855,22856,22875,22879,22885,22963,22965]]],["+",[7,5,[[1,1,1,0,1,[[89,1,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]],[3,2,1,2,3,[[144,2,1,2,3]]],[12,2,1,3,4,[[364,2,1,3,4]]],[16,1,1,4,5,[[428,1,1,4,5]]]],[2709,3576,4591,11110,12754]]],["another",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18945]]],["month",[212,169,[[0,10,6,0,6,[[6,2,1,0,1],[7,7,4,1,5],[28,1,1,5,6]]],[1,16,12,6,18,[[61,6,4,6,10],[62,2,2,10,12],[65,1,1,12,13],[68,1,1,13,14],[72,1,1,14,15],[83,2,1,15,16],[89,3,2,16,18]]],[2,12,10,18,28,[[105,2,1,18,19],[112,9,8,19,27],[114,1,1,27,28]]],[3,30,28,28,56,[[117,2,2,28,30],[119,7,7,30,37],[125,5,5,37,42],[126,1,1,42,43],[127,2,2,43,45],[134,1,1,45,46],[136,1,1,46,47],[142,1,1,47,48],[144,2,2,48,50],[145,5,4,50,54],[149,3,2,54,56]]],[4,4,2,56,58,[[153,2,1,56,57],[168,2,1,57,58]]],[5,2,2,58,60,[[190,1,1,58,59],[191,1,1,59,60]]],[8,2,2,60,62,[[255,2,2,60,62]]],[10,12,8,62,70,[[294,2,2,62,64],[295,2,1,64,65],[296,3,2,65,67],[298,1,1,67,68],[302,4,2,68,70]]],[11,8,5,70,75,[[337,8,5,70,75]]],[12,14,14,75,89,[[349,1,1,75,76],[364,13,13,76,89]]],[13,14,11,89,100,[[369,1,1,89,90],[371,1,1,90,91],[373,1,1,91,92],[381,1,1,92,93],[395,4,2,93,95],[396,3,3,95,98],[397,2,1,98,99],[401,1,1,99,100]]],[14,12,10,100,110,[[405,3,3,100,103],[408,1,1,103,104],[409,3,2,104,106],[410,1,1,106,107],[412,4,3,107,110]]],[15,6,6,110,116,[[413,1,1,110,111],[414,1,1,111,112],[419,1,1,112,113],[420,2,2,113,115],[421,1,1,115,116]]],[16,20,12,116,128,[[427,2,1,116,117],[428,7,3,117,120],[433,4,2,120,122],[434,7,6,122,128]]],[23,18,13,128,141,[[745,1,1,128,129],[746,1,1,129,130],[772,2,2,130,132],[780,2,2,132,134],[783,3,2,134,136],[785,1,1,136,137],[796,8,4,137,141]]],[25,20,18,141,159,[[802,2,2,141,143],[809,1,1,143,144],[821,1,1,144,145],[825,2,1,145,146],[827,1,1,146,147],[830,2,2,147,149],[831,1,1,149,150],[832,1,1,150,151],[833,3,2,151,153],[834,1,1,153,154],[841,1,1,154,155],[846,4,4,155,159]]],[26,1,1,159,160,[[859,1,1,159,160]]],[27,1,1,160,161,[[866,1,1,160,161]]],[36,5,4,161,165,[[909,3,2,161,163],[910,2,2,163,165]]],[37,5,4,165,169,[[911,3,2,165,167],[917,2,2,167,169]]]],[170,187,188,196,197,809,1818,1819,1822,1834,1871,1872,1948,2027,2159,2514,2709,2724,3230,3407,3408,3426,3429,3434,3436,3441,3443,3478,3605,3622,3707,3714,3720,3726,3731,3732,3735,3966,3968,3970,3976,3987,3999,4044,4045,4273,4312,4551,4593,4594,4609,4614,4615,4620,4763,4798,4895,5343,5929,5944,7757,7764,8851,8871,8892,8897,8934,8987,9183,9184,10223,10225,10230,10247,10249,10735,11111,11112,11113,11114,11116,11117,11118,11119,11120,11121,11122,11123,11124,11231,11271,11334,11500,11794,11808,11829,11840,11842,11861,11967,12098,12103,12105,12170,12181,12182,12232,12261,12268,12269,12297,12308,12493,12495,12507,12512,12740,12754,12759,12760,12826,12829,12835,12849,12851,12853,12855,12856,18949,18989,19619,19635,19851,19864,19924,19925,19958,20280,20282,20288,20307,20465,20466,20605,20896,21057,21101,21184,21200,21224,21231,21249,21265,21301,21478,21648,21650,21651,21655,22019,22159,22841,22855,22856,22875,22879,22885,22963,22965]]],["monthly",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18612]]],["months",[37,35,[[0,1,1,0,1,[[37,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[3,3,3,2,5,[[126,1,1,2,3],[144,2,2,3,5]]],[6,5,5,5,10,[[221,3,3,5,8],[229,1,1,8,9],[230,1,1,9,10]]],[8,2,2,10,12,[[241,1,1,10,11],[262,1,1,11,12]]],[9,5,5,12,17,[[268,1,1,12,13],[271,1,1,13,14],[272,1,1,14,15],[290,2,2,15,17]]],[10,2,2,17,19,[[295,1,1,17,18],[301,1,1,18,19]]],[11,3,3,19,22,[[327,1,1,19,20],[335,1,1,20,21],[336,1,1,21,22]]],[12,4,4,22,26,[[340,1,1,22,23],[350,1,1,23,24],[358,1,1,24,25],[364,1,1,25,26]]],[13,2,2,26,28,[[402,2,2,26,28]]],[16,3,1,28,29,[[427,3,1,28,29]]],[17,2,2,29,31,[[449,1,1,29,30],[456,1,1,30,31]]],[25,3,3,31,34,[[840,2,2,31,33],[848,1,1,33,34]]],[29,1,1,34,35,[[882,1,1,34,35]]]],[1143,1818,3998,4588,4591,6866,6867,6868,7026,7101,7332,7937,8060,8137,8168,8700,8705,8892,9124,9933,10196,10210,10365,10774,10946,11110,11995,12002,12736,13186,13376,21460,21462,21691,22417]]],["moon",[9,9,[[8,3,3,0,3,[[255,3,3,0,3]]],[11,1,1,3,4,[[316,1,1,3,4]]],[18,1,1,4,5,[[558,1,1,4,5]]],[22,1,1,5,6,[[744,1,1,5,6]]],[25,2,2,6,8,[[847,2,2,6,8]]],[29,1,1,8,9,[[886,1,1,8,9]]]],[7735,7748,7754,9626,15220,18945,21656,21661,22486]]],["moons",[11,11,[[12,1,1,0,1,[[360,1,1,0,1]]],[13,3,3,1,4,[[368,1,1,1,2],[374,1,1,2,3],[397,1,1,3,4]]],[14,1,1,4,5,[[405,1,1,4,5]]],[15,1,1,5,6,[[422,1,1,5,6]]],[22,2,2,6,8,[[679,2,2,6,8]]],[25,2,2,8,10,[[846,1,1,8,9],[847,1,1,9,10]]],[27,1,1,10,11,[[863,1,1,10,11]]]],[11014,11215,11359,11857,12102,12582,17667,17668,21647,21658,22116]]],["same",[1,1,[[0,1,1,0,1,[[6,1,1,0,1]]]],[170]]]]},{"k":"H2321","v":[["Hodesh",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10584]]]]},{"k":"H2322","v":[["Hadashah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6239]]]]},{"k":"H2323","v":[["new",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12155]]]]},{"k":"H2324","v":[["shew",[14,13,[[26,14,13,0,13,[[851,10,9,0,9],[853,1,1,9,10],[854,3,3,10,13]]]],[21762,21764,21765,21767,21768,21769,21774,21782,21785,21839,21881,21886,21889]]]]},{"k":"H2325","v":[["+",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21747]]]]},{"k":"H2326","v":[["debtor",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20856]]]]},{"k":"H2327","v":[["Hobah",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[351]]]]},{"k":"H2328","v":[["+",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13477]]]]},{"k":"H2329","v":[["*",[3,3,[[17,1,1,0,1,[[457,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]]],[13403,16629,18442]]],["circle",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18442]]],["circuit",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13403]]],["compass",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16629]]]]},{"k":"H2330","v":[["forth",[4,4,[[6,3,3,0,3,[[224,3,3,0,3]]],[25,1,1,3,4,[[818,1,1,3,4]]]],[6921,6922,6925,20827]]]]},{"k":"H2331","v":[["*",[6,6,[[17,5,5,0,5,[[450,1,1,0,1],[467,3,3,1,4],[471,1,1,4,5]]],[18,1,1,5,6,[[496,1,1,5,6]]]],[13220,13634,13638,13645,13738,14170]]],["+",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13634]]],["shew",[4,4,[[17,4,4,0,4,[[450,1,1,0,1],[467,2,2,1,3],[471,1,1,3,4]]]],[13220,13638,13645,13738]]],["sheweth",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14170]]]]},{"k":"H2332","v":[["Eve",[2,2,[[0,2,2,0,2,[[2,1,1,0,1],[3,1,1,1,2]]]],[75,80]]]]},{"k":"H2333","v":[["towns",[4,4,[[3,1,1,0,1,[[148,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]],[10,1,1,2,3,[[294,1,1,2,3]]],[12,1,1,3,4,[[339,1,1,3,4]]]],[4759,6184,8857,10329]]]]},{"k":"H2334","v":[["*",[3,3,[[3,1,1,0,1,[[148,1,1,0,1]]],[4,1,1,1,2,[[155,1,1,1,2]]],[6,1,1,2,3,[[220,1,1,2,3]]]],[4759,4989,6815]]],["+",[1,1,[[4,1,1,0,1,[[155,1,1,0,1]]]],[4989]]],["Havothjair",[2,2,[[3,1,1,0,1,[[148,1,1,0,1]]],[6,1,1,1,2,[[220,1,1,1,2]]]],[4759,6815]]]]},{"k":"H2335","v":[["seers",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11927]]]]},{"k":"H2336","v":[["*",[11,9,[[11,2,1,0,1,[[326,2,1,0,1]]],[13,3,2,1,3,[[391,2,1,1,2],[399,1,1,2,3]]],[17,2,2,3,5,[[466,1,1,3,4],[476,1,1,4,5]]],[19,1,1,5,6,[[653,1,1,5,6]]],[21,1,1,6,7,[[672,1,1,6,7]]],[22,1,1,7,8,[[712,1,1,7,8]]],[27,1,1,8,9,[[870,1,1,8,9]]]],[9905,11722,11919,13628,13890,17150,17556,18316,22214]]],["brambles",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18316]]],["thistle",[4,2,[[11,2,1,0,1,[[326,2,1,0,1]]],[13,2,1,1,2,[[391,2,1,1,2]]]],[9905,11722]]],["thistles",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13628]]],["thorn",[2,2,[[17,1,1,0,1,[[476,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]]],[13890,17150]]],["thorns",[3,3,[[13,1,1,0,1,[[399,1,1,0,1]]],[21,1,1,1,2,[[672,1,1,1,2]]],[27,1,1,2,3,[[870,1,1,2,3]]]],[11919,17556,22214]]]]},{"k":"H2337","v":[["thickets",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7491]]]]},{"k":"H2338","v":[["joined",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12122]]]]},{"k":"H2339","v":[["*",[7,7,[[0,1,1,0,1,[[13,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]],[6,1,1,2,3,[[226,1,1,2,3]]],[10,1,1,3,4,[[297,1,1,3,4]]],[20,1,1,4,5,[[662,1,1,4,5]]],[21,1,1,5,6,[[674,1,1,5,6]]],[23,1,1,6,7,[[796,1,1,6,7]]]],[359,5887,6961,8949,17393,17585,20297]]],["+",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[359]]],["cord",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17393]]],["fillet",[1,1,[[23,1,1,0,1,[[796,1,1,0,1]]]],[20297]]],["line",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8949]]],["thread",[3,3,[[5,1,1,0,1,[[188,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[21,1,1,2,3,[[674,1,1,2,3]]]],[5887,6961,17585]]]]},{"k":"H2340","v":[["*",[25,25,[[0,3,3,0,3,[[9,1,1,0,1],[33,1,1,1,2],[35,1,1,2,3]]],[1,7,7,3,10,[[52,2,2,3,5],[62,1,1,5,6],[72,2,2,6,8],[82,1,1,8,9],[83,1,1,9,10]]],[4,2,2,10,12,[[159,1,1,10,11],[172,1,1,11,12]]],[5,7,7,12,19,[[189,1,1,12,13],[195,2,2,13,15],[197,2,2,15,17],[198,1,1,17,18],[210,1,1,18,19]]],[6,2,2,19,21,[[213,2,2,19,21]]],[9,1,1,21,22,[[290,1,1,21,22]]],[10,1,1,22,23,[[299,1,1,22,23]]],[12,1,1,23,24,[[338,1,1,23,24]]],[13,1,1,24,25,[[374,1,1,24,25]]]],[251,982,1042,1587,1596,1872,2167,2172,2475,2507,5112,5444,5903,6038,6044,6110,6126,6138,6487,6571,6573,8699,9071,10267,11353]]],["+",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2172]]],["Hivite",[8,8,[[0,3,3,0,3,[[9,1,1,0,1],[33,1,1,1,2],[35,1,1,2,3]]],[1,2,2,3,5,[[82,1,1,3,4],[83,1,1,4,5]]],[5,2,2,5,7,[[195,1,1,5,6],[197,1,1,6,7]]],[12,1,1,7,8,[[338,1,1,7,8]]]],[251,982,1042,2475,2507,6038,6110,10267]]],["Hivites",[16,16,[[1,4,4,0,4,[[52,2,2,0,2],[62,1,1,2,3],[72,1,1,3,4]]],[4,2,2,4,6,[[159,1,1,4,5],[172,1,1,5,6]]],[5,5,5,6,11,[[189,1,1,6,7],[195,1,1,7,8],[197,1,1,8,9],[198,1,1,9,10],[210,1,1,10,11]]],[6,2,2,11,13,[[213,2,2,11,13]]],[9,1,1,13,14,[[290,1,1,13,14]]],[10,1,1,14,15,[[299,1,1,14,15]]],[13,1,1,15,16,[[374,1,1,15,16]]]],[1587,1596,1872,2167,5112,5444,5903,6044,6126,6138,6487,6571,6573,8699,9071,11353]]]]},{"k":"H2341","v":[["*",[7,7,[[0,4,4,0,4,[[1,1,1,0,1],[9,2,2,1,3],[24,1,1,3,4]]],[8,1,1,4,5,[[250,1,1,4,5]]],[12,2,2,5,7,[[338,2,2,5,7]]]],[41,241,263,676,7567,10261,10275]]],["+",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]]],[676,7567]]],["Havilah",[5,5,[[0,3,3,0,3,[[1,1,1,0,1],[9,2,2,1,3]]],[12,2,2,3,5,[[338,2,2,3,5]]]],[41,241,263,10261,10275]]]]},{"k":"H2342","v":[["*",[58,54,[[0,1,1,0,1,[[7,1,1,0,1]]],[4,2,2,1,3,[[154,1,1,1,2],[184,1,1,2,3]]],[6,3,3,3,6,[[213,1,1,3,4],[231,2,2,4,6]]],[8,1,1,6,7,[[266,1,1,6,7]]],[9,1,1,7,8,[[269,1,1,7,8]]],[12,2,2,8,10,[[347,1,1,8,9],[353,1,1,9,10]]],[16,1,1,10,11,[[429,1,1,10,11]]],[17,6,6,11,17,[[450,2,2,11,13],[455,1,1,13,14],[461,1,1,14,15],[470,1,1,15,16],[474,1,1,16,17]]],[18,12,11,17,28,[[487,1,1,17,18],[506,3,2,18,20],[514,1,1,20,21],[528,1,1,21,22],[532,1,1,22,23],[554,1,1,23,24],[567,1,1,24,25],[573,1,1,25,26],[574,1,1,26,27],[591,1,1,27,28]]],[19,4,4,28,32,[[635,2,2,28,30],[652,1,1,30,31],[653,1,1,31,32]]],[22,11,10,32,42,[[691,1,1,32,33],[701,2,2,33,35],[704,2,2,35,37],[723,1,1,37,38],[729,1,1,38,39],[732,1,1,39,40],[744,3,2,40,42]]],[23,6,5,42,47,[[749,2,2,42,44],[767,2,1,44,45],[774,1,1,45,46],[795,1,1,46,47]]],[24,1,1,47,48,[[800,1,1,47,48]]],[25,2,1,48,49,[[831,2,1,48,49]]],[27,1,1,49,50,[[872,1,1,49,50]]],[28,1,1,50,51,[[877,1,1,50,51]]],[32,1,1,51,52,[[896,1,1,51,52]]],[34,1,1,52,53,[[905,1,1,52,53]]],[37,1,1,53,54,[[919,1,1,53,54]]]],[193,4963,5776,6593,7123,7125,8012,8110,10662,10850,12766,13210,13223,13347,13472,13734,13835,14046,14316,14317,14457,14696,14736,15109,15380,15474,15482,15829,16626,16627,17136,17151,17914,18081,18082,18147,18148,18571,18675,18724,18929,18930,19061,19080,19503,19690,20241,20426,21220,22246,22317,22630,22778,23004]]],["+",[3,2,[[25,2,1,0,1,[[831,2,1,0,1]]],[37,1,1,1,2,[[919,1,1,1,2]]]],[21220,23004]]],["Fear",[1,1,[[12,1,1,0,1,[[353,1,1,0,1]]]],[10850]]],["Tremble",[1,1,[[18,1,1,0,1,[[591,1,1,0,1]]]],[15829]]],["abide",[1,1,[[27,1,1,0,1,[[872,1,1,0,1]]]],[22246]]],["afraid",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15109]]],["anguish",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4963]]],["away",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17136]]],["bare",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18675]]],["calve",[2,2,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,1,1,1,2,[[506,1,1,1,2]]]],[13835,14317]]],["child",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18724]]],["dance",[1,1,[[6,1,1,0,1,[[231,1,1,0,1]]]],[7123]]],["danced",[1,1,[[6,1,1,0,1,[[231,1,1,0,1]]]],[7125]]],["fear",[1,1,[[18,1,1,0,1,[[573,1,1,0,1]]]],[15474]]],["formed",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[461,1,1,1,2]]],[18,1,1,2,3,[[567,1,1,2,3]]],[19,1,1,3,4,[[653,1,1,3,4]]]],[5776,13472,15380,17151]]],["forth",[4,4,[[19,2,2,0,2,[[635,2,2,0,2]]],[22,2,2,2,4,[[723,1,1,2,3],[744,1,1,3,4]]]],[16626,16627,18571,18930]]],["grieved",[2,2,[[16,1,1,0,1,[[429,1,1,0,1]]],[23,1,1,1,2,[[749,1,1,1,2]]]],[12766,19061]]],["grievous",[2,2,[[18,1,1,0,1,[[487,1,1,0,1]]],[23,1,1,1,2,[[767,1,1,1,2]]]],[14046,19503]]],["grievously",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19503]]],["look",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13347]]],["made",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13210]]],["pain",[6,6,[[17,1,1,0,1,[[450,1,1,0,1]]],[22,3,3,1,4,[[691,1,1,1,2],[704,2,2,2,4]]],[23,1,1,4,5,[[774,1,1,4,5]]],[32,1,1,5,6,[[896,1,1,5,6]]]],[13223,17914,18147,18148,19690,22630]]],["pained",[3,3,[[18,1,1,0,1,[[532,1,1,0,1]]],[22,1,1,1,2,[[701,1,1,1,2]]],[28,1,1,2,3,[[877,1,1,2,3]]]],[14736,18082,22317]]],["patiently",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14457]]],["rest",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8110]]],["shaketh",[2,1,[[18,2,1,0,1,[[506,2,1,0,1]]]],[14316]]],["shapen",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14696]]],["sorrow",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20241]]],["stayed",[2,2,[[0,1,1,0,1,[[7,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[193,20426]]],["tarried",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6593]]],["travail",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18081]]],["travailed",[2,2,[[22,2,2,0,2,[[744,2,2,0,2]]]],[18929,18930]]],["tremble",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19080]]],["trembled",[2,2,[[18,1,1,0,1,[[574,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[15482,22778]]],["trust",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13734]]],["wounded",[2,2,[[8,1,1,0,1,[[266,1,1,0,1]]],[12,1,1,1,2,[[347,1,1,1,2]]]],[8012,10662]]]]},{"k":"H2343","v":[["Hul",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[257,10269]]]]},{"k":"H2344","v":[["*",[23,23,[[0,3,3,0,3,[[21,1,1,0,1],[31,1,1,1,2],[40,1,1,2,3]]],[1,1,1,3,4,[[51,1,1,3,4]]],[4,1,1,4,5,[[185,1,1,4,5]]],[5,1,1,5,6,[[197,1,1,5,6]]],[6,1,1,6,7,[[217,1,1,6,7]]],[8,1,1,7,8,[[248,1,1,7,8]]],[9,1,1,8,9,[[283,1,1,8,9]]],[10,2,2,9,11,[[294,2,2,9,11]]],[17,2,2,11,13,[[441,1,1,11,12],[464,1,1,12,13]]],[18,2,2,13,15,[[555,1,1,13,14],[616,1,1,14,15]]],[19,1,1,15,16,[[654,1,1,15,16]]],[22,2,2,16,18,[[688,1,1,16,17],[726,1,1,17,18]]],[23,3,3,18,21,[[749,1,1,18,19],[759,1,1,19,20],[777,1,1,20,21]]],[27,1,1,21,22,[[862,1,1,21,22]]],[34,1,1,22,23,[[903,1,1,22,23]]]],[564,940,1244,1566,5829,6111,6706,7490,8460,8864,8873,12981,13550,15140,16257,17172,17872,18633,19080,19323,19797,22104,22740]]],["+",[3,3,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]],[23,1,1,2,3,[[759,1,1,2,3]]]],[12981,16257,19323]]],["sand",[20,20,[[0,3,3,0,3,[[21,1,1,0,1],[31,1,1,1,2],[40,1,1,2,3]]],[1,1,1,3,4,[[51,1,1,3,4]]],[4,1,1,4,5,[[185,1,1,4,5]]],[5,1,1,5,6,[[197,1,1,5,6]]],[6,1,1,6,7,[[217,1,1,6,7]]],[8,1,1,7,8,[[248,1,1,7,8]]],[9,1,1,8,9,[[283,1,1,8,9]]],[10,2,2,9,11,[[294,2,2,9,11]]],[17,1,1,11,12,[[464,1,1,11,12]]],[18,1,1,12,13,[[555,1,1,12,13]]],[19,1,1,13,14,[[654,1,1,13,14]]],[22,2,2,14,16,[[688,1,1,14,15],[726,1,1,15,16]]],[23,2,2,16,18,[[749,1,1,16,17],[777,1,1,17,18]]],[27,1,1,18,19,[[862,1,1,18,19]]],[34,1,1,19,20,[[903,1,1,19,20]]]],[564,940,1244,1566,5829,6111,6706,7490,8460,8864,8873,13550,15140,17172,17872,18633,19080,19797,22104,22740]]]]},{"k":"H2345","v":[["brown",[4,4,[[0,4,4,0,4,[[29,4,4,0,4]]]],[862,863,865,870]]]]},{"k":"H2346","v":[["*",[133,123,[[1,2,2,0,2,[[63,2,2,0,2]]],[2,3,3,2,5,[[114,3,3,2,5]]],[4,2,2,5,7,[[155,1,1,5,6],[180,1,1,6,7]]],[5,4,3,7,10,[[188,2,1,7,8],[192,2,2,8,10]]],[8,3,3,10,13,[[260,1,1,10,11],[266,2,2,11,13]]],[9,7,6,13,19,[[277,4,3,13,16],[284,1,1,16,17],[286,2,2,17,19]]],[10,4,4,19,23,[[293,1,1,19,20],[294,1,1,20,21],[299,1,1,21,22],[310,1,1,22,23]]],[11,8,8,23,31,[[315,1,1,23,24],[318,2,2,24,26],[326,1,1,26,27],[330,2,2,27,29],[337,2,2,29,31]]],[13,12,9,31,40,[[374,1,1,31,32],[380,1,1,32,33],[391,1,1,33,34],[392,3,1,34,35],[393,1,1,35,36],[398,3,2,36,38],[399,1,1,38,39],[402,1,1,39,40]]],[15,32,29,40,69,[[413,1,1,40,41],[414,4,4,41,45],[415,4,4,45,49],[416,10,9,49,58],[417,1,1,58,59],[418,3,3,59,62],[419,1,1,62,63],[424,7,5,63,68],[425,1,1,68,69]]],[18,2,2,69,71,[[528,1,1,69,70],[532,1,1,70,71]]],[19,2,2,71,73,[[645,1,1,71,72],[652,1,1,72,73]]],[21,3,3,73,76,[[675,1,1,73,74],[678,2,2,74,76]]],[22,13,13,76,89,[[680,1,1,76,77],[700,2,2,77,79],[703,1,1,79,80],[704,1,1,80,81],[708,1,1,81,82],[714,2,2,82,84],[727,1,1,84,85],[734,1,1,85,86],[738,2,2,86,88],[740,1,1,88,89]]],[23,13,13,89,102,[[745,2,2,89,91],[759,1,1,91,92],[765,1,1,92,93],[783,2,2,93,95],[793,1,1,95,96],[794,1,1,96,97],[795,3,3,97,100],[796,2,2,100,102]]],[24,4,3,102,105,[[798,4,3,102,105]]],[25,10,9,105,114,[[827,4,4,105,109],[828,2,1,109,110],[839,2,2,110,112],[841,1,1,112,113],[843,1,1,113,114]]],[28,2,2,114,116,[[877,2,2,114,116]]],[29,4,4,116,120,[[879,3,3,116,119],[885,1,1,119,120]]],[33,2,2,120,122,[[901,1,1,120,121],[902,1,1,121,122]]],[37,1,1,122,123,[[912,1,1,122,123]]]],[1911,1918,3498,3499,3500,4980,5663,5884,5954,5969,7877,8019,8021,8279,8280,8283,8502,8569,8575,8817,8857,9066,9438,9603,9700,9704,9909,10050,10051,10226,10232,11351,11482,11727,11738,11758,11880,11893,11922,12012,12299,12315,12320,12322,12324,12335,12340,12342,12354,12360,12362,12365,12366,12369,12372,12374,12376,12378,12398,12402,12407,12416,12421,12651,12654,12655,12661,12662,12692,14709,14742,16912,17141,17605,17649,17650,17700,18062,18063,18130,18131,18230,18341,18342,18652,18758,18831,18839,18860,18961,18964,19335,19444,19927,19931,20154,20181,20224,20256,20270,20283,20290,20339,20340,20350,21104,21109,21110,21112,21132,21436,21445,21482,21572,22318,22320,22371,22374,22378,22471,22704,22720,22904]]],["+",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[8,1,1,1,2,[[266,1,1,1,2]]]],[3499,8021]]],["town",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5884]]],["wall",[90,82,[[1,2,2,0,2,[[63,2,2,0,2]]],[2,1,1,2,3,[[114,1,1,2,3]]],[5,3,3,3,6,[[188,1,1,3,4],[192,2,2,4,6]]],[8,2,2,6,8,[[260,1,1,6,7],[266,1,1,7,8]]],[9,7,6,8,14,[[277,4,3,8,11],[284,1,1,11,12],[286,2,2,12,14]]],[10,3,3,14,17,[[293,1,1,14,15],[299,1,1,15,16],[310,1,1,16,17]]],[11,6,6,17,23,[[315,1,1,17,18],[318,2,2,18,20],[326,1,1,20,21],[330,2,2,21,23]]],[13,10,7,23,30,[[391,1,1,23,24],[392,3,1,24,25],[393,1,1,25,26],[398,3,2,26,28],[399,1,1,28,29],[402,1,1,29,30]]],[15,30,27,30,57,[[413,1,1,30,31],[414,3,3,31,34],[415,4,4,34,38],[416,9,8,38,46],[417,1,1,46,47],[418,3,3,47,50],[419,1,1,50,51],[424,7,5,51,56],[425,1,1,56,57]]],[19,1,1,57,58,[[645,1,1,57,58]]],[21,2,2,58,60,[[678,2,2,58,60]]],[22,5,5,60,65,[[680,1,1,60,61],[700,1,1,61,62],[708,1,1,62,63],[714,2,2,63,65]]],[23,3,3,65,68,[[759,1,1,65,66],[793,1,1,66,67],[795,1,1,67,68]]],[24,3,2,68,70,[[798,3,2,68,70]]],[25,3,3,70,73,[[839,1,1,70,71],[841,1,1,71,72],[843,1,1,72,73]]],[28,2,2,73,75,[[877,2,2,73,75]]],[29,4,4,75,79,[[879,3,3,75,78],[885,1,1,78,79]]],[33,2,2,79,81,[[901,1,1,79,80],[902,1,1,80,81]]],[37,1,1,81,82,[[912,1,1,81,82]]]],[1911,1918,3500,5884,5954,5969,7877,8019,8279,8280,8283,8502,8569,8575,8817,9066,9438,9603,9700,9704,9909,10050,10051,11727,11738,11758,11880,11893,11922,12012,12299,12315,12322,12324,12335,12340,12342,12354,12360,12362,12365,12369,12372,12374,12376,12378,12398,12402,12407,12416,12421,12651,12654,12655,12661,12662,12692,16912,17649,17650,17700,18062,18230,18341,18342,19335,20154,20256,20340,20350,21445,21482,21572,22318,22320,22371,22374,22378,22471,22704,22720,22904]]],["walled",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3498]]],["walls",[39,38,[[4,2,2,0,2,[[155,1,1,0,1],[180,1,1,1,2]]],[10,1,1,2,3,[[294,1,1,2,3]]],[11,2,2,3,5,[[337,2,2,3,5]]],[13,2,2,5,7,[[374,1,1,5,6],[380,1,1,6,7]]],[15,2,2,7,9,[[414,1,1,7,8],[416,1,1,8,9]]],[18,2,2,9,11,[[528,1,1,9,10],[532,1,1,10,11]]],[19,1,1,11,12,[[652,1,1,11,12]]],[21,1,1,12,13,[[675,1,1,12,13]]],[22,8,8,13,21,[[700,1,1,13,14],[703,1,1,14,15],[704,1,1,15,16],[727,1,1,16,17],[734,1,1,17,18],[738,2,2,18,20],[740,1,1,20,21]]],[23,10,10,21,31,[[745,2,2,21,23],[765,1,1,23,24],[783,2,2,24,26],[794,1,1,26,27],[795,2,2,27,29],[796,2,2,29,31]]],[24,1,1,31,32,[[798,1,1,31,32]]],[25,7,6,32,38,[[827,4,4,32,36],[828,2,1,36,37],[839,1,1,37,38]]]],[4980,5663,8857,10226,10232,11351,11482,12320,12366,14709,14742,17141,17605,18063,18130,18131,18652,18758,18831,18839,18860,18961,18964,19444,19927,19931,20181,20224,20270,20283,20290,20339,21104,21109,21110,21112,21132,21436]]]]},{"k":"H2347","v":[["*",[24,24,[[0,1,1,0,1,[[44,1,1,0,1]]],[4,5,5,1,6,[[159,1,1,1,2],[165,1,1,2,3],[171,2,2,3,5],[177,1,1,5,6]]],[8,1,1,6,7,[[259,1,1,6,7]]],[15,1,1,7,8,[[425,1,1,7,8]]],[18,1,1,8,9,[[549,1,1,8,9]]],[22,1,1,9,10,[[691,1,1,9,10]]],[23,2,2,10,12,[[757,1,1,10,11],[765,1,1,11,12]]],[25,9,9,12,21,[[806,1,1,12,13],[808,2,2,13,15],[809,1,1,15,16],[810,2,2,16,18],[817,1,1,18,19],[821,1,1,19,20],[825,1,1,20,21]]],[28,1,1,21,22,[[877,1,1,21,22]]],[31,2,2,22,24,[[892,2,2,22,24]]]],[1378,5127,5280,5419,5427,5559,7849,12693,15013,17924,19280,19447,20557,20581,20586,20622,20627,20632,20767,20912,21070,22328,22578,22579]]],["+",[14,14,[[0,1,1,0,1,[[44,1,1,0,1]]],[4,3,3,1,4,[[159,1,1,1,2],[165,1,1,2,3],[171,1,1,3,4]]],[8,1,1,4,5,[[259,1,1,4,5]]],[15,1,1,5,6,[[425,1,1,5,6]]],[18,1,1,6,7,[[549,1,1,6,7]]],[22,1,1,7,8,[[691,1,1,7,8]]],[23,1,1,8,9,[[765,1,1,8,9]]],[25,3,3,9,12,[[808,1,1,9,10],[817,1,1,10,11],[821,1,1,11,12]]],[28,1,1,12,13,[[877,1,1,12,13]]],[31,1,1,13,14,[[892,1,1,13,14]]]],[1378,5127,5280,5419,7849,12693,15013,17924,19447,20581,20767,20912,22328,22579]]],["pity",[3,3,[[4,2,2,0,2,[[171,1,1,0,1],[177,1,1,1,2]]],[31,1,1,2,3,[[892,1,1,2,3]]]],[5427,5559,22578]]],["spare",[7,7,[[23,1,1,0,1,[[757,1,1,0,1]]],[25,6,6,1,7,[[806,1,1,1,2],[808,1,1,2,3],[809,1,1,3,4],[810,2,2,4,6],[825,1,1,6,7]]]],[19280,20557,20586,20622,20627,20632,21070]]]]},{"k":"H2348","v":[["*",[7,6,[[0,2,1,0,1,[[48,2,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[5,1,1,2,3,[[195,1,1,2,3]]],[6,1,1,3,4,[[215,1,1,3,4]]],[23,1,1,4,5,[[791,1,1,4,5]]],[25,1,1,5,6,[[826,1,1,5,6]]]],[1486,4899,6038,6640,20080,21099]]],["coast",[1,1,[[25,1,1,0,1,[[826,1,1,0,1]]]],[21099]]],["coasts",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6038]]],["haven",[2,1,[[0,2,1,0,1,[[48,2,1,0,1]]]],[1486]]],["shore",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[23,1,1,1,2,[[791,1,1,1,2]]]],[6640,20080]]],["side",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4899]]]]},{"k":"H2349","v":[["Hupham",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4528]]]]},{"k":"H2350","v":[["Huphamites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4528]]]]},{"k":"H2351","v":[["*",[164,158,[[0,12,12,0,12,[[5,1,1,0,1],[8,1,1,1,2],[14,1,1,2,3],[18,2,2,3,5],[23,3,3,5,8],[38,4,4,8,12]]],[1,10,9,12,21,[[61,1,1,12,13],[70,1,1,13,14],[74,1,1,14,15],[75,1,1,15,16],[76,1,1,16,17],[78,1,1,17,18],[82,2,1,18,19],[86,1,1,19,20],[89,1,1,20,21]]],[2,20,20,21,41,[[93,2,2,21,23],[95,1,1,23,24],[97,1,1,24,25],[98,1,1,25,26],[99,2,2,26,28],[102,1,1,28,29],[103,6,6,29,35],[105,1,1,35,36],[106,1,1,36,37],[107,1,1,37,38],[113,3,3,38,41]]],[3,13,13,41,54,[[121,2,2,41,43],[128,2,2,43,45],[131,2,2,45,47],[135,2,2,47,49],[147,2,2,49,51],[151,3,3,51,54]]],[4,8,6,54,60,[[175,4,3,54,57],[176,2,1,57,58],[177,1,1,58,59],[184,1,1,59,60]]],[5,2,2,60,62,[[188,1,1,60,61],[192,1,1,61,62]]],[6,3,2,62,64,[[222,2,1,62,63],[229,1,1,63,64]]],[8,1,1,64,65,[[244,1,1,64,65]]],[9,4,4,65,69,[[267,1,1,65,66],[279,2,2,66,68],[288,1,1,68,69]]],[10,6,5,69,74,[[296,1,1,69,70],[297,2,1,70,71],[298,1,1,71,72],[310,1,1,72,73],[311,1,1,73,74]]],[11,4,4,74,78,[[316,1,1,74,75],[322,1,1,75,76],[335,2,2,76,78]]],[13,6,6,78,84,[[371,1,1,78,79],[390,1,1,79,80],[395,1,1,80,81],[398,2,2,81,83],[399,1,1,83,84]]],[14,1,1,84,85,[[412,1,1,84,85]]],[15,2,2,85,87,[[425,2,2,85,87]]],[17,3,3,87,90,[[440,1,1,87,88],[453,1,1,88,89],[466,1,1,89,90]]],[18,4,4,90,94,[[495,1,1,90,91],[508,1,1,91,92],[518,1,1,92,93],[621,1,1,93,94]]],[19,6,6,94,100,[[628,1,1,94,95],[632,1,1,95,96],[634,1,1,96,97],[635,1,1,97,98],[649,1,1,98,99],[651,1,1,99,100]]],[20,1,1,100,101,[[660,1,1,100,101]]],[21,1,1,101,102,[[678,1,1,101,102]]],[22,8,8,102,110,[[683,1,1,102,103],[688,1,1,103,104],[693,1,1,104,105],[702,1,1,105,106],[711,1,1,106,107],[720,1,1,107,108],[729,2,2,108,110]]],[23,16,16,110,126,[[749,1,1,110,111],[750,1,1,111,112],[751,2,2,112,114],[753,1,1,114,115],[755,2,2,115,117],[758,1,1,117,118],[765,1,1,118,119],[777,1,1,119,120],[781,1,1,120,121],[788,4,4,121,125],[795,1,1,125,126]]],[24,7,7,126,133,[[797,1,1,126,127],[798,2,2,127,129],[800,4,4,129,133]]],[25,18,17,133,150,[[808,2,2,133,135],[812,1,1,135,136],[827,1,1,136,137],[829,1,1,137,138],[835,1,1,138,139],[841,4,4,139,143],[842,3,3,143,146],[843,1,1,146,147],[844,1,1,147,148],[847,1,1,148,149],[848,2,1,149,150]]],[27,1,1,150,151,[[868,1,1,150,151]]],[29,1,1,151,152,[[883,1,1,151,152]]],[32,1,1,152,153,[[899,1,1,152,153]]],[33,2,2,153,155,[[901,1,1,153,154],[902,1,1,154,155]]],[35,1,1,155,156,[[908,1,1,155,156]]],[37,2,2,156,158,[[919,1,1,156,157],[920,1,1,157,158]]]],[151,227,365,473,474,602,620,622,1161,1162,1164,1167,1862,2096,2206,2270,2293,2350,2480,2606,2729,2807,2816,2860,2934,2964,2981,2982,3098,3114,3119,3151,3152,3156,3164,3228,3238,3260,3449,3460,3469,3795,3796,4073,4074,4188,4189,4292,4298,4677,4683,4849,4850,4872,5510,5512,5513,5536,5552,5783,5888,5972,6878,7049,7417,8042,8334,8335,8645,8902,8943,8993,9442,9464,9606,9817,10169,10171,11277,11685,11807,11878,11880,11923,12265,12679,12691,12961,13293,13620,14160,14342,14548,16318,16420,16533,16587,16628,17028,17106,17358,17641,17764,17856,17963,18106,18286,18482,18693,18696,19059,19100,19136,19153,19196,19232,19239,19309,19444,19785,19895,20016,20019,20027,20031,20216,20330,20351,20353,20421,20425,20428,20434,20592,20596,20661,21111,21180,21334,21482,21496,21517,21521,21535,21543,21551,21559,21593,21657,21681,22179,22439,22674,22703,22722,22826,23002,23021]]],["+",[70,68,[[0,3,3,0,3,[[5,1,1,0,1],[18,1,1,1,2],[23,1,1,2,3]]],[1,8,7,3,10,[[74,1,1,3,4],[75,1,1,4,5],[76,1,1,5,6],[78,1,1,6,7],[82,2,1,7,8],[86,1,1,8,9],[89,1,1,9,10]]],[2,19,19,10,29,[[93,2,2,10,12],[95,1,1,12,13],[97,1,1,13,14],[98,1,1,14,15],[99,2,2,15,17],[102,1,1,17,18],[103,6,6,18,24],[105,1,1,24,25],[106,1,1,25,26],[113,3,3,26,29]]],[3,12,12,29,41,[[121,2,2,29,31],[128,2,2,31,33],[131,2,2,33,35],[135,2,2,35,37],[147,2,2,37,39],[151,2,2,39,41]]],[4,3,3,41,44,[[175,2,2,41,43],[184,1,1,43,44]]],[5,1,1,44,45,[[192,1,1,44,45]]],[6,1,1,45,46,[[229,1,1,45,46]]],[9,1,1,46,47,[[279,1,1,46,47]]],[10,3,2,47,49,[[297,2,1,47,48],[311,1,1,48,49]]],[11,3,3,49,52,[[316,1,1,49,50],[335,2,2,50,52]]],[13,1,1,52,53,[[398,1,1,52,53]]],[15,1,1,53,54,[[425,1,1,53,54]]],[17,1,1,54,55,[[453,1,1,54,55]]],[23,4,4,55,59,[[751,1,1,55,56],[753,1,1,56,57],[765,1,1,57,58],[781,1,1,58,59]]],[24,1,1,59,60,[[797,1,1,59,60]]],[25,7,7,60,67,[[835,1,1,60,61],[841,4,4,61,65],[844,1,1,65,66],[847,1,1,66,67]]],[35,1,1,67,68,[[908,1,1,67,68]]]],[151,473,602,2206,2270,2293,2350,2480,2606,2729,2807,2816,2860,2934,2964,2981,2982,3098,3114,3119,3151,3152,3156,3164,3228,3238,3449,3460,3469,3795,3796,4073,4074,4188,4189,4292,4298,4677,4683,4850,4872,5510,5512,5783,5972,7049,8334,8943,9464,9606,10169,10171,11878,12691,13293,19153,19196,19444,19895,20330,21334,21482,21496,21517,21521,21593,21657,22826]]],["abroad",[16,14,[[0,2,2,0,2,[[14,1,1,0,1],[18,1,1,1,2]]],[1,2,2,2,4,[[61,1,1,2,3],[70,1,1,3,4]]],[2,1,1,4,5,[[107,1,1,4,5]]],[4,4,3,5,8,[[175,2,2,5,7],[176,2,1,7,8]]],[6,2,1,8,9,[[222,2,1,8,9]]],[8,1,1,9,10,[[244,1,1,9,10]]],[13,1,1,10,11,[[395,1,1,10,11]]],[18,1,1,11,12,[[518,1,1,11,12]]],[19,1,1,12,13,[[632,1,1,12,13]]],[23,1,1,13,14,[[750,1,1,13,14]]]],[365,474,1862,2096,3260,5512,5513,5536,6878,7417,11807,14548,16533,19100]]],["fields",[2,2,[[17,1,1,0,1,[[440,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]]],[12961,16628]]],["forth",[1,1,[[0,1,1,0,1,[[38,1,1,0,1]]]],[1162]]],["highways",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22439]]],["more",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17358]]],["of",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11923]]],["out",[6,6,[[0,4,4,0,4,[[23,1,1,0,1],[38,3,3,1,4]]],[9,1,1,4,5,[[279,1,1,4,5]]],[15,1,1,5,6,[[425,1,1,5,6]]]],[620,1161,1164,1167,8335,12679]]],["outward",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4849]]],["street",[7,7,[[5,1,1,0,1,[[188,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,1,1,2,3,[[466,1,1,2,3]]],[22,2,2,3,5,[[720,1,1,3,4],[729,1,1,4,5]]],[24,2,2,5,7,[[798,1,1,5,6],[800,1,1,6,7]]]],[5888,8645,13620,18482,18696,20351,20421]]],["streets",[33,33,[[9,1,1,0,1,[[267,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[18,2,2,2,4,[[495,1,1,2,3],[621,1,1,3,4]]],[22,5,5,4,9,[[683,1,1,4,5],[688,1,1,5,6],[693,1,1,6,7],[702,1,1,7,8],[729,1,1,8,9]]],[23,11,11,9,20,[[749,1,1,9,10],[751,1,1,10,11],[755,2,2,11,13],[758,1,1,13,14],[777,1,1,14,15],[788,4,4,15,19],[795,1,1,19,20]]],[24,4,4,20,24,[[798,1,1,20,21],[800,3,3,21,24]]],[25,4,4,24,28,[[808,1,1,24,25],[812,1,1,25,26],[827,1,1,26,27],[829,1,1,27,28]]],[32,1,1,28,29,[[899,1,1,28,29]]],[33,2,2,29,31,[[901,1,1,29,30],[902,1,1,30,31]]],[37,2,2,31,33,[[919,1,1,31,32],[920,1,1,32,33]]]],[8042,9442,14160,16318,17764,17856,17963,18106,18693,19059,19136,19232,19239,19309,19785,20016,20019,20027,20031,20216,20353,20425,20428,20434,20596,20661,21111,21180,22674,22703,22722,23002,23021]]],["utter",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21681]]],["without",[24,24,[[0,2,2,0,2,[[8,1,1,0,1],[23,1,1,1,2]]],[4,1,1,2,3,[[177,1,1,2,3]]],[10,2,2,3,5,[[296,1,1,3,4],[298,1,1,4,5]]],[11,1,1,5,6,[[322,1,1,5,6]]],[13,3,3,6,9,[[371,1,1,6,7],[390,1,1,7,8],[398,1,1,8,9]]],[14,1,1,9,10,[[412,1,1,9,10]]],[18,1,1,10,11,[[508,1,1,10,11]]],[19,4,4,11,15,[[628,1,1,11,12],[634,1,1,12,13],[649,1,1,13,14],[651,1,1,14,15]]],[21,1,1,15,16,[[678,1,1,15,16]]],[22,1,1,16,17,[[711,1,1,16,17]]],[25,6,6,17,23,[[808,1,1,17,18],[842,3,3,18,21],[843,1,1,21,22],[848,1,1,22,23]]],[27,1,1,23,24,[[868,1,1,23,24]]]],[227,622,5552,8902,8993,9817,11277,11685,11880,12265,14342,16420,16587,17028,17106,17641,18286,20592,21535,21543,21551,21559,21681,22179]]]]},{"k":"H2352","v":[["*",[2,2,[[22,2,2,0,2,[[689,1,1,0,1],[720,1,1,1,2]]]],[17892,18502]]],["hole",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17892]]],["holes",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18502]]]]},{"k":"H2353","v":[["white",[2,2,[[16,2,2,0,2,[[426,1,1,0,1],[433,1,1,1,2]]]],[12708,12832]]]]},{"k":"H2354","v":[["Hur",[15,15,[[1,6,6,0,6,[[66,2,2,0,2],[73,1,1,2,3],[80,1,1,3,4],[84,1,1,4,5],[87,1,1,5,6]]],[3,1,1,6,7,[[147,1,1,6,7]]],[5,1,1,7,8,[[199,1,1,7,8]]],[12,5,5,8,13,[[339,3,3,8,11],[341,2,2,11,13]]],[13,1,1,13,14,[[367,1,1,13,14]]],[15,1,1,14,15,[[415,1,1,14,15]]]],[1993,1995,2191,2422,2561,2655,4672,6175,10325,10326,10356,10386,10389,11199,12336]]]]},{"k":"H2355","v":[["networks",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18013]]]]},{"k":"H2356","v":[["*",[7,7,[[8,1,1,0,1,[[249,1,1,0,1]]],[11,1,1,1,2,[[324,1,1,1,2]]],[17,1,1,2,3,[[465,1,1,2,3]]],[21,1,1,3,4,[[675,1,1,3,4]]],[25,1,1,4,5,[[809,1,1,4,5]]],[33,1,1,5,6,[[901,1,1,5,6]]],[37,1,1,6,7,[[924,1,1,6,7]]]],[7519,9859,13563,17602,20611,22711,23080]]],["caves",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13563]]],["hole",[3,3,[[11,1,1,0,1,[[324,1,1,0,1]]],[21,1,1,1,2,[[675,1,1,1,2]]],[25,1,1,2,3,[[809,1,1,2,3]]]],[9859,17602,20611]]],["holes",[3,3,[[8,1,1,0,1,[[249,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]],[37,1,1,2,3,[[924,1,1,2,3]]]],[7519,22711,23080]]]]},{"k":"H2357","v":[["pale",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18215]]]]},{"k":"H2358","v":[["white",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21942]]]]},{"k":"H2359","v":[["Huri",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10442]]]]},{"k":"H2360","v":[["Hurai",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10705]]]]},{"k":"H2361","v":[["Huram",[10,9,[[12,1,1,0,1,[[345,1,1,0,1]]],[13,9,8,1,9,[[368,4,4,1,5],[370,3,2,5,7],[374,1,1,7,8],[375,1,1,8,9]]]],[10580,11214,11222,11223,11224,11257,11262,11364,11385]]]]},{"k":"H2362","v":[["Hauran",[2,2,[[25,2,2,0,2,[[848,2,2,0,2]]]],[21695,21697]]]]},{"k":"H2363","v":[["*",[19,19,[[3,1,1,0,1,[[148,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[6,1,1,2,3,[[230,1,1,2,3]]],[8,1,1,3,4,[[255,1,1,3,4]]],[17,2,2,4,6,[[455,1,1,4,5],[466,1,1,5,6]]],[18,8,8,6,14,[[499,1,1,6,7],[515,1,1,7,8],[517,1,1,8,9],[532,1,1,9,10],[547,2,2,10,12],[596,1,1,12,13],[618,1,1,13,14]]],[20,1,1,14,15,[[660,1,1,14,15]]],[22,3,3,15,18,[[683,1,1,15,16],[706,1,1,16,17],[738,1,1,17,18]]],[34,1,1,18,19,[[903,1,1,18,19]]]],[4735,5793,7091,7768,13328,13593,14223,14512,14538,14740,14972,14976,15958,16277,17358,17758,18180,18843,22739]]],["+",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4735]]],["haste",[10,10,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[455,1,1,1,2]]],[18,7,7,2,9,[[499,1,1,2,3],[515,1,1,3,4],[517,1,1,4,5],[547,2,2,5,7],[596,1,1,7,8],[618,1,1,8,9]]],[22,1,1,9,10,[[706,1,1,9,10]]]],[5793,13328,14223,14512,14538,14972,14976,15958,16277,18180]]],["hasted",[2,2,[[6,1,1,0,1,[[230,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]]],[7091,13593]]],["hasten",[4,4,[[18,1,1,0,1,[[532,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]],[22,2,2,2,4,[[683,1,1,2,3],[738,1,1,3,4]]]],[14740,17358,17758,18843]]],["hasteth",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22739]]],["speed",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7768]]]]},{"k":"H2364","v":[["Hushah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10389]]]]},{"k":"H2365","v":[["Hushai",[14,13,[[9,12,11,0,11,[[281,2,2,0,2],[282,4,3,2,5],[283,6,6,5,11]]],[10,1,1,11,12,[[294,1,1,11,12]]],[12,1,1,12,13,[[364,1,1,12,13]]]],[8421,8426,8442,8443,8444,8454,8455,8456,8457,8463,8464,8860,11142]]]]},{"k":"H2366","v":[["*",[4,4,[[0,1,1,0,1,[[45,1,1,0,1]]],[12,3,3,1,4,[[344,1,1,1,2],[345,2,2,2,4]]]],[1409,10547,10583,10586]]],["+",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10586]]],["Hushim",[3,3,[[0,1,1,0,1,[[45,1,1,0,1]]],[12,2,2,1,3,[[344,1,1,1,2],[345,1,1,2,3]]]],[1409,10547,10583]]]]},{"k":"H2367","v":[["Husham",[4,4,[[0,2,2,0,2,[[35,2,2,0,2]]],[12,2,2,2,4,[[338,2,2,2,4]]]],[1074,1075,10297,10298]]]]},{"k":"H2368","v":[["*",[14,13,[[0,1,1,0,1,[[37,1,1,0,1]]],[1,6,6,1,7,[[77,3,3,1,4],[88,3,3,4,7]]],[10,1,1,7,8,[[311,1,1,7,8]]],[17,2,2,8,10,[[473,1,1,8,9],[476,1,1,9,10]]],[21,2,1,10,11,[[678,2,1,10,11]]],[23,1,1,11,12,[[766,1,1,11,12]]],[36,1,1,12,13,[[910,1,1,12,13]]]],[1137,2304,2314,2329,2670,2678,2694,9459,13807,13903,17646,19478,22878]]],["seal",[5,4,[[10,1,1,0,1,[[311,1,1,0,1]]],[17,2,2,1,3,[[473,1,1,1,2],[476,1,1,2,3]]],[21,2,1,3,4,[[678,2,1,3,4]]]],[9459,13807,13903,17646]]],["signet",[8,8,[[0,1,1,0,1,[[37,1,1,0,1]]],[1,5,5,1,6,[[77,3,3,1,4],[88,2,2,4,6]]],[23,1,1,6,7,[[766,1,1,6,7]]],[36,1,1,7,8,[[910,1,1,7,8]]]],[1137,2304,2314,2329,2678,2694,19478,22878]]],["signets",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2670]]]]},{"k":"H2369","v":[["*",[2,2,[[12,2,2,0,2,[[344,1,1,0,1],[348,1,1,1,2]]]],[10567,10717]]],["Hotham",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10567]]],["Hothan",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10717]]]]},{"k":"H2370","v":[["*",[31,29,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,30,28,1,29,[[851,8,7,1,8],[852,3,3,8,11],[853,7,7,11,18],[854,2,2,18,20],[856,10,9,20,29]]]],[12124,21766,21784,21789,21792,21799,21801,21803,21826,21832,21834,21842,21846,21847,21850,21855,21857,21860,21879,21897,21934,21935,21937,21939,21940,21942,21944,21946,21954]]],["+",[14,13,[[26,14,13,0,13,[[851,3,3,0,3],[853,2,2,3,5],[856,9,8,5,13]]]],[21766,21789,21792,21847,21850,21935,21937,21939,21940,21942,21944,21946,21954]]],["had",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21934]]],["saw",[4,4,[[26,4,4,0,4,[[852,1,1,0,1],[853,2,2,1,3],[854,1,1,3,4]]]],[21834,21842,21860,21879]]],["sawest",[5,4,[[26,5,4,0,4,[[851,4,3,0,3],[853,1,1,3,4]]]],[21799,21801,21803,21857]]],["see",[3,3,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,2,2,1,3,[[852,1,1,1,2],[854,1,1,2,3]]]],[12124,21832,21897]]],["seen",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[853,2,2,1,3]]]],[21784,21846,21855]]],["wont",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21826]]]]},{"k":"H2371","v":[["*",[23,21,[[10,2,2,0,2,[[309,2,2,0,2]]],[11,18,16,2,18,[[320,7,7,2,9],[321,2,2,9,11],[322,1,1,11,12],[324,3,2,12,14],[325,5,4,14,18]]],[13,2,2,18,20,[[388,2,2,18,20]]],[29,1,1,20,21,[[879,1,1,20,21]]]],[9402,9404,9735,9736,9739,9740,9742,9755,9756,9770,9771,9825,9867,9868,9874,9893,9895,9896,11649,11650,22368]]],["+",[1,1,[[11,1,1,0,1,[[325,1,1,0,1]]]],[9896]]],["Hazael",[22,20,[[10,2,2,0,2,[[309,2,2,0,2]]],[11,17,15,2,17,[[320,7,7,2,9],[321,2,2,9,11],[322,1,1,11,12],[324,3,2,12,14],[325,4,3,14,17]]],[13,2,2,17,19,[[388,2,2,17,19]]],[29,1,1,19,20,[[879,1,1,19,20]]]],[9402,9404,9735,9736,9739,9740,9742,9755,9756,9770,9771,9825,9867,9868,9874,9893,9895,11649,11650,22368]]]]},{"k":"H2372","v":[["*",[54,50,[[1,2,2,0,2,[[67,1,1,0,1],[73,1,1,1,2]]],[3,2,2,2,4,[[140,2,2,2,4]]],[17,9,9,4,13,[[443,1,1,4,5],[450,1,1,5,6],[454,2,2,6,8],[458,1,1,8,9],[459,1,1,9,10],[462,1,1,10,11],[469,1,1,11,12],[471,1,1,12,13]]],[18,9,9,13,22,[[488,2,2,13,15],[494,2,2,15,17],[504,1,1,17,18],[523,1,1,18,19],[535,2,2,19,21],[540,1,1,21,22]]],[19,3,3,22,25,[[649,1,1,22,23],[651,1,1,23,24],[656,1,1,24,25]]],[21,2,1,25,26,[[676,2,1,25,26]]],[22,12,10,26,36,[[679,1,1,26,27],[680,1,1,27,28],[691,1,1,28,29],[704,2,1,29,30],[708,2,1,30,31],[711,2,2,31,33],[725,1,1,33,34],[726,1,1,34,35],[735,1,1,35,36]]],[24,2,1,36,37,[[798,2,1,36,37]]],[25,8,8,37,45,[[813,1,1,37,38],[814,6,6,38,44],[822,1,1,44,45]]],[29,1,1,45,46,[[879,1,1,45,46]]],[32,2,2,46,48,[[893,1,1,46,47],[896,1,1,47,48]]],[34,1,1,48,49,[[903,1,1,48,49]]],[37,1,1,49,50,[[920,1,1,49,50]]]],[2020,2188,4450,4462,13046,13220,13323,13324,13428,13437,13493,13715,13761,14063,14066,14105,14118,14289,14622,14787,14789,14841,17044,17111,17244,17627,17655,17686,17907,18141,18227,18296,18299,18612,18620,18773,20346,20707,20714,20715,20716,20717,20724,20731,20973,22365,22580,22631,22732,23018]]],["+",[2,2,[[1,1,1,0,1,[[73,1,1,0,1]]],[22,1,1,1,2,[[725,1,1,1,2]]]],[2188,18612]]],["Look",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18299]]],["Prophesy",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18227]]],["Seest",[2,2,[[19,2,2,0,2,[[649,1,1,0,1],[656,1,1,1,2]]]],[17044,17244]]],["behold",[7,7,[[17,1,1,0,1,[[458,1,1,0,1]]],[18,6,6,1,7,[[488,2,2,1,3],[494,2,2,3,5],[504,1,1,5,6],[523,1,1,6,7]]]],[13428,14063,14066,14105,14118,14289,14622]]],["look",[2,2,[[21,1,1,0,1,[[676,1,1,0,1]]],[32,1,1,1,2,[[896,1,1,1,2]]]],[17627,22631]]],["prophesy",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18227]]],["provide",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2020]]],["saw",[7,7,[[3,2,2,0,2,[[140,2,2,0,2]]],[19,1,1,2,3,[[651,1,1,2,3]]],[22,2,2,3,5,[[679,1,1,3,4],[680,1,1,4,5]]],[29,1,1,5,6,[[879,1,1,5,6]]],[32,1,1,6,7,[[893,1,1,6,7]]]],[4450,4462,17111,17655,17686,22365,22580]]],["sawest",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18773]]],["see",[17,16,[[17,5,5,0,5,[[454,2,2,0,2],[459,1,1,2,3],[469,1,1,3,4],[471,1,1,4,5]]],[18,1,1,5,6,[[535,1,1,5,6]]],[21,1,1,6,7,[[676,1,1,6,7]]],[22,5,4,7,11,[[691,1,1,7,8],[704,2,1,8,9],[711,1,1,9,10],[726,1,1,10,11]]],[25,4,4,11,15,[[814,3,3,11,14],[822,1,1,14,15]]],[34,1,1,15,16,[[903,1,1,15,16]]]],[13323,13324,13437,13715,13761,14787,17627,17907,18141,18296,18620,20717,20724,20731,20973,22732]]],["seen",[9,8,[[17,2,2,0,2,[[450,1,1,0,1],[462,1,1,1,2]]],[18,1,1,2,3,[[540,1,1,2,3]]],[24,2,1,3,4,[[798,2,1,3,4]]],[25,3,3,4,7,[[814,3,3,4,7]]],[37,1,1,7,8,[[920,1,1,7,8]]]],[13220,13493,14841,20346,20714,20715,20716,23018]]],["seeth",[3,3,[[17,1,1,0,1,[[443,1,1,0,1]]],[18,1,1,1,2,[[535,1,1,1,2]]],[25,1,1,2,3,[[813,1,1,2,3]]]],[13046,14789,20707]]]]},{"k":"H2373","v":[["*",[13,12,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,9,8,2,10,[[96,4,3,2,5],[97,1,1,5,6],[98,2,2,6,8],[99,2,2,8,10]]],[3,2,2,10,12,[[122,1,1,10,11],[134,1,1,11,12]]]],[2362,2363,2909,2910,2913,2946,2973,2974,2991,2992,3843,4275]]],["breast",[11,10,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,7,6,2,8,[[96,4,3,2,5],[97,1,1,5,6],[99,2,2,6,8]]],[3,2,2,8,10,[[122,1,1,8,9],[134,1,1,9,10]]]],[2362,2363,2909,2910,2913,2946,2991,2992,3843,4275]]],["breasts",[2,2,[[2,2,2,0,2,[[98,2,2,0,2]]]],[2973,2974]]]]},{"k":"H2374","v":[["*",[18,18,[[9,1,1,0,1,[[290,1,1,0,1]]],[11,1,1,1,2,[[329,1,1,1,2]]],[12,3,3,2,5,[[358,1,1,2,3],[362,1,1,3,4],[366,1,1,4,5]]],[13,7,7,5,12,[[375,1,1,5,6],[378,1,1,6,7],[385,1,1,7,8],[395,2,2,8,10],[399,1,1,10,11],[401,1,1,11,12]]],[22,3,3,12,15,[[706,1,1,12,13],[707,1,1,13,14],[708,1,1,14,15]]],[25,1,1,15,16,[[823,1,1,15,16]]],[29,1,1,16,17,[[885,1,1,16,17]]],[32,1,1,17,18,[[895,1,1,17,18]]]],[8703,9996,10943,11051,11193,11393,11452,11578,11816,11821,11926,11981,18179,18203,18227,21004,22476,22615]]],["agreement",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18179]]],["prophets",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18227]]],["seeing",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[21004]]],["seer",[11,11,[[9,1,1,0,1,[[290,1,1,0,1]]],[12,3,3,1,4,[[358,1,1,1,2],[362,1,1,2,3],[366,1,1,3,4]]],[13,6,6,4,10,[[375,1,1,4,5],[378,1,1,5,6],[385,1,1,6,7],[395,2,2,7,9],[401,1,1,9,10]]],[29,1,1,10,11,[[885,1,1,10,11]]]],[8703,10943,11051,11193,11393,11452,11578,11816,11821,11981,22476]]],["seers",[4,4,[[11,1,1,0,1,[[329,1,1,0,1]]],[13,1,1,1,2,[[399,1,1,1,2]]],[22,1,1,2,3,[[707,1,1,2,3]]],[32,1,1,3,4,[[895,1,1,3,4]]]],[9996,11926,18203,22615]]]]},{"k":"H2375","v":[["Hazo",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[569]]]]},{"k":"H2376","v":[["*",[12,12,[[26,12,12,0,12,[[851,2,2,0,2],[853,4,4,2,6],[856,6,6,6,12]]]],[21777,21786,21842,21846,21847,21850,21934,21935,21940,21946,21948,21953]]],["look",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21953]]],["vision",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[856,1,1,1,2]]]],[21777,21935]]],["visions",[9,9,[[26,9,9,0,9,[[851,1,1,0,1],[853,4,4,1,5],[856,4,4,5,9]]]],[21786,21842,21846,21847,21850,21934,21940,21946,21948]]]]},{"k":"H2377","v":[["*",[35,34,[[8,1,1,0,1,[[238,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]],[13,1,1,2,3,[[398,1,1,2,3]]],[18,1,1,3,4,[[566,1,1,3,4]]],[19,1,1,4,5,[[656,1,1,4,5]]],[22,2,2,5,7,[[679,1,1,5,6],[707,1,1,6,7]]],[23,2,2,7,9,[[758,1,1,7,8],[767,1,1,8,9]]],[24,1,1,9,10,[[798,1,1,9,10]]],[25,7,7,10,17,[[808,2,2,10,12],[813,4,4,12,16],[814,1,1,16,17]]],[26,12,11,17,28,[[850,1,1,17,18],[857,7,6,18,24],[858,2,2,24,26],[859,1,1,26,27],[860,1,1,27,28]]],[27,1,1,28,29,[[873,1,1,28,29]]],[30,1,1,29,30,[[888,1,1,29,30]]],[32,1,1,30,31,[[895,1,1,30,31]]],[33,1,1,31,32,[[900,1,1,31,32]]],[34,2,2,32,34,[[904,2,2,32,34]]]],[7277,10878,11907,15345,17242,17655,18200,19307,19500,20341,20590,20603,20702,20703,20704,20707,20724,21754,21962,21963,21974,21976,21978,21987,22009,22012,22029,22050,22262,22511,22614,22685,22750,22751]]],["+",[1,1,[[32,1,1,0,1,[[895,1,1,0,1]]]],[22614]]],["vision",[31,30,[[8,1,1,0,1,[[238,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]],[13,1,1,2,3,[[398,1,1,2,3]]],[18,1,1,3,4,[[566,1,1,3,4]]],[19,1,1,4,5,[[656,1,1,4,5]]],[22,2,2,5,7,[[679,1,1,5,6],[707,1,1,6,7]]],[23,2,2,7,9,[[758,1,1,7,8],[767,1,1,8,9]]],[24,1,1,9,10,[[798,1,1,9,10]]],[25,6,6,10,16,[[808,2,2,10,12],[813,4,4,12,16]]],[26,11,10,16,26,[[857,7,6,16,22],[858,2,2,22,24],[859,1,1,24,25],[860,1,1,25,26]]],[30,1,1,26,27,[[888,1,1,26,27]]],[33,1,1,27,28,[[900,1,1,27,28]]],[34,2,2,28,30,[[904,2,2,28,30]]]],[7277,10878,11907,15345,17242,17655,18200,19307,19500,20341,20590,20603,20702,20703,20704,20707,21962,21963,21974,21976,21978,21987,22009,22012,22029,22050,22511,22685,22750,22751]]],["visions",[3,3,[[25,1,1,0,1,[[814,1,1,0,1]]],[26,1,1,1,2,[[850,1,1,1,2]]],[27,1,1,2,3,[[873,1,1,2,3]]]],[20724,21754,22262]]]]},{"k":"H2378","v":[["visions",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11393]]]]},{"k":"H2379","v":[["sight",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21848,21857]]]]},{"k":"H2380","v":[["*",[5,5,[[22,3,3,0,3,[[699,1,1,0,1],[706,1,1,1,2],[707,1,1,2,3]]],[26,2,2,3,5,[[857,2,2,3,5]]]],[18037,18182,18204,21966,21969]]],["agreement",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18182]]],["notable",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21966]]],["ones",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21969]]],["vision",[2,2,[[22,2,2,0,2,[[699,1,1,0,1],[707,1,1,1,2]]]],[18037,18204]]]]},{"k":"H2381","v":[["Haziel",[1,1,[[12,1,1,0,1,[[360,1,1,0,1]]]],[10992]]]]},{"k":"H2382","v":[["Hazaiah",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12593]]]]},{"k":"H2383","v":[["Hezion",[1,1,[[10,1,1,0,1,[[305,1,1,0,1]]]],[9267]]]]},{"k":"H2384","v":[["*",[9,9,[[9,1,1,0,1,[[273,1,1,0,1]]],[17,4,4,1,5,[[439,1,1,1,2],[442,1,1,2,3],[455,1,1,3,4],[468,1,1,4,5]]],[22,2,2,5,7,[[700,2,2,5,7]]],[28,1,1,7,8,[[877,1,1,7,8]]],[37,1,1,8,9,[[923,1,1,8,9]]]],[8197,12943,13022,13334,13665,18053,18057,22339,23063]]],["+",[3,3,[[17,2,2,0,2,[[439,1,1,0,1],[442,1,1,1,2]]],[37,1,1,2,3,[[923,1,1,2,3]]]],[12943,13022,23063]]],["vision",[5,5,[[9,1,1,0,1,[[273,1,1,0,1]]],[17,2,2,1,3,[[455,1,1,1,2],[468,1,1,2,3]]],[22,2,2,3,5,[[700,2,2,3,5]]]],[8197,13334,13665,18053,18057]]],["visions",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22339]]]]},{"k":"H2385","v":[["*",[3,3,[[17,2,2,0,2,[[463,1,1,0,1],[473,1,1,1,2]]],[37,1,1,2,3,[[920,1,1,2,3]]]],[13530,13818,23017]]],["clouds",[1,1,[[37,1,1,0,1,[[920,1,1,0,1]]]],[23017]]],["lightning",[2,2,[[17,2,2,0,2,[[463,1,1,0,1],[473,1,1,1,2]]]],[13530,13818]]]]},{"k":"H2386","v":[["*",[7,7,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[18,1,1,2,3,[[557,1,1,2,3]]],[19,1,1,3,4,[[638,1,1,3,4]]],[22,3,3,4,7,[[743,1,1,4,5],[744,2,2,5,7]]]],[3004,5298,15211,16710,18901,18925,18939]]],["boar",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15211]]],["swine",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3004,5298]]],["swine's",[4,4,[[19,1,1,0,1,[[638,1,1,0,1]]],[22,3,3,1,4,[[743,1,1,1,2],[744,2,2,2,4]]]],[16710,18901,18925,18939]]]]},{"k":"H2387","v":[["Hezir",[2,2,[[12,1,1,0,1,[[361,1,1,0,1]]],[15,1,1,1,2,[[422,1,1,1,2]]]],[11030,12569]]]]},{"k":"H2388","v":[["*",[290,266,[[0,6,6,0,6,[[18,1,1,0,1],[20,1,1,1,2],[40,2,2,2,4],[46,1,1,4,5],[47,1,1,5,6]]],[1,16,16,6,22,[[53,2,2,6,8],[56,2,2,8,10],[57,1,1,10,11],[58,3,3,11,14],[59,2,2,14,16],[60,1,1,16,17],[61,1,1,17,18],[63,3,3,18,21],[68,1,1,21,22]]],[2,1,1,22,23,[[114,1,1,22,23]]],[3,1,1,23,24,[[129,1,1,23,24]]],[4,9,9,24,33,[[153,1,1,24,25],[155,1,1,25,26],[163,1,1,26,27],[164,1,1,27,28],[174,1,1,28,29],[177,1,1,29,30],[183,3,3,30,33]]],[5,8,8,33,41,[[187,4,4,33,37],[196,1,1,37,38],[197,1,1,38,39],[203,1,1,39,40],[209,1,1,40,41]]],[6,12,12,41,53,[[211,1,1,41,42],[213,1,1,42,43],[217,3,3,43,46],[219,1,1,46,47],[226,2,2,47,49],[229,3,3,49,52],[230,1,1,52,53]]],[8,6,6,53,59,[[239,1,1,53,54],[250,1,1,54,55],[252,2,2,55,57],[258,1,1,57,58],[265,1,1,58,59]]],[9,18,15,59,74,[[267,1,1,59,60],[268,2,2,60,62],[269,2,2,62,64],[276,4,2,64,66],[277,2,1,66,67],[279,3,3,67,70],[281,1,1,70,71],[282,1,1,71,72],[284,1,1,72,73],[290,1,1,73,74]]],[10,9,8,74,82,[[291,1,1,74,75],[292,2,2,75,77],[299,1,1,77,78],[306,1,1,78,79],[310,4,3,79,82]]],[11,15,15,82,97,[[314,1,1,82,83],[315,1,1,83,84],[316,2,2,84,86],[324,6,6,86,92],[326,1,1,92,93],[327,1,1,93,94],[334,2,2,94,96],[337,1,1,96,97]]],[12,12,10,97,107,[[348,1,1,97,98],[356,4,2,98,100],[358,1,1,100,101],[359,1,1,101,102],[363,1,1,102,103],[365,3,3,103,106],[366,1,1,106,107]]],[13,39,38,107,145,[[367,1,1,107,108],[370,1,1,108,109],[373,1,1,109,110],[374,1,1,110,111],[377,3,3,111,114],[378,1,1,114,115],[379,3,3,115,118],[381,2,2,118,120],[382,1,1,120,121],[383,1,1,121,122],[385,1,1,122,123],[387,1,1,123,124],[389,1,1,124,125],[390,2,2,125,127],[391,3,3,127,130],[392,3,3,130,133],[393,2,2,133,135],[394,2,2,135,137],[395,2,2,137,139],[397,1,1,139,140],[398,3,2,140,142],[400,2,2,142,144],[401,1,1,144,145]]],[14,5,5,145,150,[[403,1,1,145,146],[408,1,1,146,147],[409,1,1,147,148],[411,1,1,148,149],[412,1,1,149,150]]],[15,42,34,150,184,[[414,1,1,150,151],[415,35,27,151,178],[416,3,3,178,181],[417,1,1,181,182],[418,1,1,182,183],[422,1,1,183,184]]],[17,7,7,184,191,[[437,2,2,184,186],[439,1,1,186,187],[443,2,2,187,189],[453,1,1,189,190],[462,1,1,190,191]]],[18,5,5,191,196,[[504,1,1,191,192],[508,1,1,192,193],[512,1,1,193,194],[541,1,1,194,195],[624,1,1,195,196]]],[19,4,4,196,200,[[630,1,1,196,197],[631,1,1,197,198],[634,1,1,198,199],[653,1,1,199,200]]],[22,21,20,200,220,[[682,1,1,200,201],[700,1,1,201,202],[705,1,1,202,203],[706,1,1,203,204],[711,1,1,204,205],[713,2,2,205,207],[717,1,1,207,208],[719,5,4,208,212],[720,1,1,212,213],[723,1,1,213,214],[729,1,1,214,215],[732,1,1,215,216],[734,3,3,216,219],[742,1,1,219,220]]],[23,15,15,220,235,[[749,1,1,220,221],[750,2,2,221,223],[752,2,2,223,225],[754,1,1,225,226],[764,1,1,226,227],[767,1,1,227,228],[775,1,1,228,229],[793,1,1,229,230],[794,3,3,230,233],[795,1,1,233,234],[796,1,1,234,235]]],[25,11,11,235,246,[[808,1,1,235,236],[814,1,1,236,237],[817,1,1,237,238],[823,1,1,238,239],[828,2,2,239,241],[831,3,3,241,244],[835,2,2,244,246]]],[26,13,9,246,255,[[859,6,3,246,249],[860,7,6,249,255]]],[27,1,1,255,256,[[868,1,1,255,256]]],[32,2,2,256,258,[[896,1,1,256,257],[899,1,1,257,258]]],[33,3,2,258,260,[[901,1,1,258,259],[902,2,1,259,260]]],[36,3,1,260,261,[[910,3,1,260,261]]],[37,5,4,261,265,[[918,4,3,261,264],[924,1,1,264,265]]],[38,1,1,265,266,[[927,1,1,265,266]]]],[473,531,1251,1252,1440,1453,1605,1622,1698,1707,1729,1744,1754,1777,1797,1804,1816,1849,1893,1897,1906,2045,3504,4095,4930,5003,5216,5263,5495,5558,5734,5735,5751,5857,5858,5860,5869,6089,6127,6288,6466,6537,6580,6702,6705,6714,6778,6975,6977,7028,7049,7053,7076,7306,7587,7653,7668,7826,7984,8033,8056,8065,8087,8110,8251,8252,8284,8328,8331,8345,8394,8447,8487,8696,8767,8772,8798,9060,9305,9430,9431,9433,9563,9602,9611,9630,9855,9856,9857,9858,9862,9864,9901,9944,10150,10151,10225,10683,10919,10920,10938,10977,11104,11150,11153,11163,11176,11195,11251,11346,11349,11425,11426,11431,11450,11460,11461,11474,11497,11498,11518,11524,11587,11628,11657,11682,11689,11707,11712,11715,11740,11741,11747,11760,11761,11779,11784,11794,11825,11858,11880,11882,11941,11943,11968,12022,12173,12201,12249,12256,12325,12331,12332,12333,12334,12335,12336,12337,12338,12339,12340,12341,12342,12343,12344,12345,12346,12347,12348,12349,12350,12351,12354,12355,12356,12357,12358,12359,12375,12376,12380,12398,12410,12578,12894,12900,12933,13044,13049,13285,13487,14299,14355,14412,14855,16364,16473,16503,16588,17158,17734,18073,18156,18186,18302,18323,18324,18413,18457,18458,18460,18464,18486,18562,18691,18725,18755,18757,18759,18892,19061,19112,19113,19158,19174,19205,19429,19498,19723,20151,20199,20208,20209,20224,20282,20590,20730,20811,20990,21130,21148,21225,21228,21229,21317,21329,22033,22034,22036,22037,22041,22042,22043,22057,22068,22193,22629,22682,22700,22726,22859,22985,22989,22999,23081,23133]]],["+",[37,37,[[1,9,9,0,9,[[53,1,1,0,1],[58,1,1,1,2],[59,2,2,2,4],[60,1,1,4,5],[63,3,3,5,8],[68,1,1,8,9]]],[5,1,1,9,10,[[197,1,1,9,10]]],[6,2,2,10,12,[[213,1,1,10,11],[219,1,1,11,12]]],[8,1,1,12,13,[[258,1,1,12,13]]],[10,2,2,13,15,[[306,1,1,13,14],[310,1,1,14,15]]],[11,5,5,15,20,[[324,4,4,15,19],[334,1,1,19,20]]],[13,9,9,20,29,[[377,3,3,20,23],[379,1,1,23,24],[381,1,1,24,25],[390,2,2,25,27],[398,1,1,27,28],[400,1,1,28,29]]],[15,1,1,29,30,[[418,1,1,29,30]]],[17,1,1,30,31,[[443,1,1,30,31]]],[22,1,1,31,32,[[719,1,1,31,32]]],[25,4,4,32,36,[[828,2,2,32,34],[831,2,2,34,36]]],[33,1,1,36,37,[[901,1,1,36,37]]]],[1622,1754,1797,1804,1816,1893,1897,1906,2045,6127,6580,6778,7826,9305,9431,9855,9856,9858,9862,10151,11425,11426,11431,11460,11497,11682,11689,11880,11941,12410,13049,18458,21130,21148,21228,21229,22700]]],["Strengthen",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18323]]],["amend",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11943]]],["caught",[5,5,[[1,1,1,0,1,[[53,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[9,1,1,2,3,[[268,1,1,2,3]]],[11,1,1,3,4,[[316,1,1,3,4]]],[19,1,1,4,5,[[634,1,1,4,5]]]],[1605,7653,8065,9630,16588]]],["clave",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12578]]],["confirm",[2,2,[[11,1,1,0,1,[[327,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[9944,22037]]],["confirmed",[1,1,[[11,1,1,0,1,[[326,1,1,0,1]]]],[9901]]],["constant",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11150]]],["constrained",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9611]]],["continued",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12398]]],["courage",[8,8,[[3,1,1,0,1,[[129,1,1,0,1]]],[9,1,1,1,2,[[276,1,1,1,2]]],[12,1,1,2,3,[[356,1,1,2,3]]],[13,1,1,3,4,[[381,1,1,3,4]]],[14,1,1,4,5,[[412,1,1,4,5]]],[18,2,2,5,7,[[504,1,1,5,6],[508,1,1,6,7]]],[22,1,1,7,8,[[719,1,1,7,8]]]],[4095,8252,10920,11498,12256,14299,14355,18457]]],["courageous",[2,2,[[5,1,1,0,1,[[209,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]]],[6466,8345]]],["courageously",[1,1,[[13,1,1,0,1,[[385,1,1,0,1]]]],[11587]]],["encourage",[4,4,[[4,2,2,0,2,[[153,1,1,0,1],[155,1,1,1,2]]],[9,1,1,2,3,[[277,1,1,2,3]]],[18,1,1,3,4,[[541,1,1,3,4]]]],[4930,5003,8284,14855]]],["encouraged",[2,2,[[13,2,2,0,2,[[397,1,1,0,1],[401,1,1,1,2]]]],[11858,11968]]],["established",[1,1,[[13,1,1,0,1,[[391,1,1,0,1]]]],[11707]]],["fast",[5,5,[[17,3,3,0,3,[[437,1,1,0,1],[443,1,1,1,2],[462,1,1,2,3]]],[23,2,2,3,5,[[752,1,1,3,4],[794,1,1,4,5]]]],[12894,13044,13487,19158,20199]]],["fasten",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19205]]],["fastened",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18458]]],["force",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5495]]],["fortified",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11741]]],["fortify",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22726]]],["hardened",[4,4,[[1,4,4,0,4,[[56,2,2,0,2],[57,1,1,2,3],[58,1,1,3,4]]]],[1698,1707,1729,1777]]],["harder",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19061]]],["held",[5,5,[[6,2,2,0,2,[[217,1,1,0,1],[226,1,1,1,2]]],[15,3,3,2,5,[[416,3,3,2,5]]]],[6714,6975,12375,12376,12380]]],["help",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11825]]],["himself",[9,9,[[0,1,1,0,1,[[47,1,1,0,1]]],[8,1,1,1,2,[[265,1,1,1,2]]],[13,6,6,2,8,[[378,1,1,2,3],[383,1,1,3,4],[387,1,1,4,5],[389,1,1,5,6],[391,1,1,6,7],[398,1,1,7,8]]],[25,1,1,8,9,[[808,1,1,8,9]]]],[1453,7984,11450,11524,11628,11657,11715,11880,20590]]],["hold",[32,31,[[0,2,2,0,2,[[18,1,1,0,1],[20,1,1,1,2]]],[1,1,1,2,3,[[58,1,1,2,3]]],[6,1,1,3,4,[[229,1,1,3,4]]],[8,1,1,4,5,[[250,1,1,4,5]]],[9,3,3,5,8,[[267,1,1,5,6],[279,1,1,6,7],[284,1,1,7,8]]],[10,3,3,8,11,[[291,1,1,8,9],[292,1,1,9,10],[299,1,1,10,11]]],[11,1,1,11,12,[[314,1,1,11,12]]],[13,1,1,12,13,[[373,1,1,12,13]]],[18,1,1,13,14,[[512,1,1,13,14]]],[19,2,2,14,16,[[630,1,1,14,15],[631,1,1,15,16]]],[22,8,8,16,24,[[682,1,1,16,17],[705,1,1,17,18],[719,1,1,18,19],[720,1,1,19,20],[734,3,3,20,23],[742,1,1,23,24]]],[23,5,5,24,29,[[750,2,2,24,26],[752,1,1,26,27],[794,2,2,27,29]]],[37,3,2,29,31,[[918,2,1,29,30],[924,1,1,30,31]]]],[473,531,1744,7053,7587,8033,8328,8487,8767,8798,9060,9563,11346,14412,16473,16503,17734,18156,18464,18486,18755,18757,18759,18892,19112,19113,19174,20208,20209,22999,23081]]],["holden",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18562]]],["holdeth",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22036]]],["leaneth",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8110]]],["maintain",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11104]]],["men",[1,1,[[9,1,1,0,1,[[276,1,1,0,1]]]],[8252]]],["mighty",[2,2,[[13,2,2,0,2,[[379,1,1,0,1],[393,1,1,1,2]]]],[11474,11761]]],["obtain",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22057]]],["prevail",[2,2,[[17,1,1,0,1,[[453,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[13285,22043]]],["prevailed",[7,7,[[0,1,1,0,1,[[46,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[9,1,1,2,3,[[290,1,1,2,3]]],[11,1,1,3,4,[[337,1,1,3,4]]],[12,1,1,4,5,[[358,1,1,4,5]]],[13,2,2,5,7,[[374,1,1,5,6],[393,1,1,6,7]]]],[1440,7668,8696,10225,10938,11349,11760]]],["received",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11251]]],["recovered",[1,1,[[22,1,1,0,1,[[717,1,1,0,1]]]],[18413]]],["relieve",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3504]]],["repair",[2,2,[[11,2,2,0,2,[[324,1,1,0,1],[334,1,1,1,2]]]],[9857,10150]]],["repaired",[37,29,[[11,1,1,0,1,[[324,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]],[15,35,27,2,29,[[415,35,27,2,29]]]],[9864,11794,12331,12332,12333,12334,12335,12336,12337,12338,12339,12340,12341,12342,12343,12344,12345,12346,12347,12348,12349,12350,12351,12354,12355,12356,12357,12358,12359]]],["retain",[1,1,[[17,1,1,0,1,[[437,1,1,0,1]]]],[12900]]],["retained",[2,2,[[6,2,2,0,2,[[217,1,1,0,1],[229,1,1,1,2]]]],[6702,7028]]],["retaineth",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22682]]],["seized",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20151]]],["sore",[4,4,[[0,2,2,0,2,[[40,2,2,0,2]]],[11,1,1,2,3,[[315,1,1,2,3]]],[23,1,1,3,4,[[796,1,1,3,4]]]],[1251,1252,9602,20282]]],["stout",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23133]]],["strength",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11176]]],["strengthen",[8,8,[[6,1,1,0,1,[[226,1,1,0,1]]],[14,1,1,1,2,[[408,1,1,1,2]]],[22,3,3,2,5,[[700,1,1,2,3],[711,1,1,3,4],[732,1,1,4,5]]],[23,1,1,5,6,[[767,1,1,5,6]]],[25,2,2,6,8,[[817,1,1,6,7],[835,1,1,7,8]]]],[6977,12173,18073,18302,18725,19498,20811,21329]]],["strengthened",[17,16,[[6,1,1,0,1,[[217,1,1,0,1]]],[9,1,1,1,2,[[268,1,1,1,2]]],[13,3,3,2,5,[[367,1,1,2,3],[392,1,1,3,4],[394,1,1,4,5]]],[14,2,2,5,7,[[403,1,1,5,6],[409,1,1,6,7]]],[15,1,1,7,8,[[414,1,1,7,8]]],[17,1,1,8,9,[[439,1,1,8,9]]],[18,1,1,9,10,[[624,1,1,9,10]]],[25,2,2,10,12,[[814,1,1,10,11],[835,1,1,11,12]]],[26,4,3,12,15,[[859,3,2,12,14],[860,1,1,14,15]]],[27,1,1,15,16,[[868,1,1,15,16]]]],[6705,8056,11195,11740,11784,12022,12201,12325,12933,16364,20730,21317,22033,22034,22042,22193]]],["strong",[44,38,[[4,4,4,0,4,[[163,1,1,0,1],[183,3,3,1,4]]],[5,6,6,4,10,[[187,4,4,4,8],[196,1,1,8,9],[203,1,1,9,10]]],[6,1,1,10,11,[[211,1,1,10,11]]],[8,1,1,11,12,[[239,1,1,11,12]]],[9,5,4,12,16,[[269,1,1,12,13],[276,2,1,13,14],[277,1,1,14,15],[282,1,1,15,16]]],[10,1,1,16,17,[[292,1,1,16,17]]],[12,5,4,17,21,[[356,2,1,17,18],[359,1,1,18,19],[365,2,2,19,21]]],[13,4,4,21,25,[[382,1,1,21,22],[391,1,1,22,23],[392,1,1,23,24],[398,1,1,24,25]]],[14,1,1,25,26,[[411,1,1,25,26]]],[22,2,2,26,28,[[706,1,1,26,27],[713,1,1,27,28]]],[23,1,1,28,29,[[795,1,1,28,29]]],[25,2,2,29,31,[[823,1,1,29,30],[831,1,1,30,31]]],[26,5,3,31,34,[[859,2,1,31,32],[860,3,2,32,34]]],[33,1,1,34,35,[[902,1,1,34,35]]],[36,3,1,35,36,[[910,3,1,35,36]]],[37,2,2,36,38,[[918,2,2,36,38]]]],[5216,5734,5735,5751,5857,5858,5860,5869,6089,6288,6537,7306,8087,8251,8284,8447,8772,10919,10977,11153,11163,11518,11712,11747,11882,12249,18186,18324,20224,20990,21225,22034,22041,22068,22726,22859,22985,22989]]],["stronger",[4,4,[[9,1,1,0,1,[[279,1,1,0,1]]],[10,2,2,1,3,[[310,2,2,1,3]]],[23,1,1,3,4,[[764,1,1,3,4]]]],[8331,9431,9433,19429]]],["sure",[1,1,[[4,1,1,0,1,[[164,1,1,0,1]]]],[5263]]],["taken",[2,2,[[22,1,1,0,1,[[719,1,1,0,1]]],[32,1,1,1,2,[[896,1,1,1,2]]]],[18460,22629]]],["taketh",[3,3,[[4,1,1,0,1,[[177,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]],[22,1,1,2,3,[[729,1,1,2,3]]]],[5558,17158,18691]]],["themselves",[2,2,[[6,1,1,0,1,[[230,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[7076,10683]]],["thyself",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9430]]],["took",[4,4,[[6,1,1,0,1,[[229,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]],[13,1,1,2,3,[[394,1,1,2,3]]],[23,1,1,3,4,[[775,1,1,3,4]]]],[7049,8394,11779,19723]]],["urgent",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1849]]],["valiantly",[1,1,[[12,1,1,0,1,[[356,1,1,0,1]]]],[10920]]],["withstand",[1,1,[[13,1,1,0,1,[[379,1,1,0,1]]]],[11461]]]]},{"k":"H2389","v":[["*",[57,55,[[1,7,6,0,6,[[52,1,1,0,1],[55,2,1,1,2],[59,1,1,2,3],[62,1,1,3,4],[68,1,1,4,5],[81,1,1,5,6]]],[3,3,3,6,9,[[129,2,2,6,8],[136,1,1,8,9]]],[4,10,10,9,19,[[155,1,1,9,10],[156,1,1,10,11],[157,1,1,11,12],[158,1,1,12,13],[159,2,2,13,15],[161,1,1,15,16],[163,1,1,16,17],[178,1,1,17,18],[186,1,1,18,19]]],[5,3,3,19,22,[[190,1,1,19,20],[200,1,1,20,21],[203,1,1,21,22]]],[6,1,1,22,23,[[228,1,1,22,23]]],[8,1,1,23,24,[[249,1,1,23,24]]],[9,1,1,24,25,[[277,1,1,24,25]]],[10,4,4,25,29,[[298,1,1,25,26],[307,1,1,26,27],[308,1,1,27,28],[309,1,1,28,29]]],[13,1,1,29,30,[[372,1,1,29,30]]],[15,1,1,30,31,[[413,1,1,30,31]]],[17,2,2,31,33,[[440,1,1,31,32],[472,1,1,32,33]]],[18,2,2,33,35,[[512,1,1,33,34],[613,1,1,34,35]]],[19,1,1,35,36,[[650,1,1,35,36]]],[22,3,3,36,39,[[705,1,1,36,37],[706,1,1,37,38],[718,1,1,38,39]]],[23,4,4,39,43,[[765,1,1,39,40],[775,1,1,40,41],[776,1,1,41,42],[794,1,1,42,43]]],[25,11,10,43,53,[[803,1,1,43,44],[804,5,4,44,48],[821,2,2,48,50],[827,1,1,50,51],[831,1,1,51,52],[835,1,1,52,53]]],[26,1,1,53,54,[[858,1,1,53,54]]],[29,1,1,54,55,[[880,1,1,54,55]]]],[1598,1656,1796,1876,2042,2449,4093,4106,4331,4999,5038,5068,5107,5119,5130,5183,5210,5574,5851,5934,6198,6293,7019,7560,8274,9027,9334,9343,9398,11314,12306,12966,13787,14420,16208,17055,18152,18166,18430,19445,19702,19752,20200,20496,20509,20510,20511,20516,20928,20929,21117,21226,21329,22003,22393]]],["+",[3,3,[[18,1,1,0,1,[[512,1,1,0,1]]],[25,2,2,1,3,[[803,1,1,1,2],[804,1,1,2,3]]]],[14420,20496,20509]]],["harder",[1,1,[[25,1,1,0,1,[[804,1,1,0,1]]]],[20511]]],["hottest",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8274]]],["loud",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2042]]],["mighty",[20,20,[[1,2,2,0,2,[[52,1,1,0,1],[81,1,1,1,2]]],[4,10,10,2,12,[[155,1,1,2,3],[156,1,1,3,4],[157,1,1,4,5],[158,1,1,5,6],[159,2,2,6,8],[161,1,1,8,9],[163,1,1,9,10],[178,1,1,10,11],[186,1,1,11,12]]],[5,1,1,12,13,[[190,1,1,12,13]]],[13,1,1,13,14,[[372,1,1,13,14]]],[17,1,1,14,15,[[440,1,1,14,15]]],[19,1,1,15,16,[[650,1,1,15,16]]],[22,1,1,16,17,[[706,1,1,16,17]]],[25,2,2,17,19,[[821,2,2,17,19]]],[26,1,1,19,20,[[858,1,1,19,20]]]],[1598,2449,4999,5038,5068,5107,5119,5130,5183,5210,5574,5851,5934,11314,12966,17055,18166,20928,20929,22003]]],["sore",[3,3,[[8,1,1,0,1,[[249,1,1,0,1]]],[10,2,2,1,3,[[307,1,1,1,2],[308,1,1,2,3]]]],[7560,9334,9343]]],["strong",[26,24,[[1,4,3,0,3,[[55,2,1,0,1],[59,1,1,1,2],[62,1,1,2,3]]],[3,2,2,3,5,[[129,1,1,3,4],[136,1,1,4,5]]],[5,2,2,5,7,[[200,1,1,5,6],[203,1,1,6,7]]],[6,1,1,7,8,[[228,1,1,7,8]]],[10,2,2,8,10,[[298,1,1,8,9],[309,1,1,9,10]]],[15,1,1,10,11,[[413,1,1,10,11]]],[17,1,1,11,12,[[472,1,1,11,12]]],[18,1,1,12,13,[[613,1,1,12,13]]],[22,2,2,13,15,[[705,1,1,13,14],[718,1,1,14,15]]],[23,3,3,15,18,[[765,1,1,15,16],[776,1,1,16,17],[794,1,1,17,18]]],[25,6,5,18,23,[[804,3,2,18,20],[827,1,1,20,21],[831,1,1,21,22],[835,1,1,22,23]]],[29,1,1,23,24,[[880,1,1,23,24]]]],[1656,1796,1876,4093,4331,6198,6293,7019,9027,9398,12306,13787,16208,18152,18430,19445,19752,20200,20510,20516,21117,21226,21329,22393]]],["stronger",[2,2,[[3,1,1,0,1,[[129,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[4106,19702]]]]},{"k":"H2390","v":[["+",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8082]]]]},{"k":"H2391","v":[["strength",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14119]]]]},{"k":"H2392","v":[["strength",[5,5,[[1,3,3,0,3,[[62,3,3,0,3]]],[29,1,1,3,4,[[884,1,1,3,4]]],[36,1,1,4,5,[[910,1,1,4,5]]]],[1870,1881,1883,22463,22877]]]]},{"k":"H2393","v":[["*",[3,3,[[6,1,1,0,1,[[214,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[6602,17818,22038]]],["mightily",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6602]]],["strength",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22038]]],["strong",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17818]]]]},{"k":"H2394","v":[["*",[7,7,[[6,1,1,0,1,[[218,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[11,1,1,2,3,[[324,1,1,2,3]]],[13,2,2,3,5,[[378,1,1,3,4],[392,1,1,4,5]]],[25,1,1,5,6,[[835,1,1,5,6]]],[31,1,1,6,7,[[891,1,1,6,7]]]],[6720,7256,9862,11438,11748,21317,22566]]],["force",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[25,1,1,1,2,[[835,1,1,1,2]]]],[7256,21317]]],["mightily",[1,1,[[31,1,1,0,1,[[891,1,1,0,1]]]],[22566]]],["repair",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9862]]],["sharply",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6720]]],["strengthened",[1,1,[[13,1,1,0,1,[[378,1,1,0,1]]]],[11438]]],["strong",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11748]]]]},{"k":"H2395","v":[["Hezeki",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10592]]]]},{"k":"H2396","v":[["*",[87,78,[[11,43,37,0,37,[[328,1,1,0,1],[330,17,15,1,16],[331,9,8,16,24],[332,15,12,24,36],[333,1,1,36,37]]],[12,2,2,37,39,[[340,2,2,37,39]]],[13,4,4,39,43,[[395,2,2,39,41],[396,1,1,41,42],[398,1,1,42,43]]],[15,2,2,43,45,[[419,1,1,43,44],[422,1,1,44,45]]],[19,1,1,45,46,[[652,1,1,45,46]]],[22,32,29,46,75,[[714,9,9,46,55],[715,9,8,55,63],[716,6,6,63,69],[717,8,6,69,75]]],[23,2,2,75,77,[[770,2,2,75,77]]],[35,1,1,77,78,[[906,1,1,77,78]]]],[9983,10025,10033,10034,10037,10038,10039,10040,10041,10043,10046,10053,10054,10055,10056,10061,10062,10064,10066,10070,10071,10075,10076,10081,10099,10101,10103,10106,10110,10111,10112,10113,10114,10117,10118,10119,10122,10374,10384,11809,11818,11851,11890,12441,12566,17114,18331,18332,18334,18337,18344,18345,18346,18348,18352,18353,18355,18357,18361,18362,18366,18367,18373,18391,18392,18393,18395,18399,18412,18413,18414,18415,18416,18417,18420,19590,19591,22788]]],["+",[2,2,[[11,1,1,0,1,[[332,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]]],[10099,18391]]],["Hezekiah",[83,74,[[11,42,36,0,36,[[328,1,1,0,1],[330,17,15,1,16],[331,9,8,16,24],[332,14,11,24,35],[333,1,1,35,36]]],[12,2,2,36,38,[[340,2,2,36,38]]],[13,4,4,38,42,[[395,2,2,38,40],[396,1,1,40,41],[398,1,1,41,42]]],[15,1,1,42,43,[[419,1,1,42,43]]],[19,1,1,43,44,[[652,1,1,43,44]]],[22,31,28,44,72,[[714,9,9,44,53],[715,9,8,53,61],[716,5,5,61,66],[717,8,6,66,72]]],[23,2,2,72,74,[[770,2,2,72,74]]]],[9983,10025,10033,10034,10037,10038,10039,10040,10041,10043,10046,10053,10054,10055,10056,10061,10062,10064,10066,10070,10071,10075,10076,10081,10101,10103,10106,10110,10111,10112,10113,10114,10117,10118,10119,10122,10374,10384,11809,11818,11851,11890,12441,17114,18331,18332,18334,18337,18344,18345,18346,18348,18352,18353,18355,18357,18361,18362,18366,18367,18373,18392,18393,18395,18399,18412,18413,18414,18415,18416,18417,18420,19590,19591]]],["Hizkiah",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22788]]],["Hizkijah",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12566]]]]},{"k":"H2397","v":[["*",[7,7,[[1,1,1,0,1,[[84,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]],[25,4,4,3,7,[[820,2,2,3,5],[830,1,1,5,6],[839,1,1,6,7]]]],[2553,10089,18381,20885,20890,21187,21429]]],["bracelets",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2553]]],["chains",[2,2,[[25,2,2,0,2,[[820,2,2,0,2]]]],[20885,20890]]],["hook",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10089,18381]]],["hooks",[2,2,[[25,2,2,0,2,[[830,1,1,0,1],[839,1,1,1,2]]]],[21187,21429]]]]},{"k":"H2398","v":[["*",[238,220,[[0,8,8,0,8,[[19,2,2,0,2],[30,1,1,2,3],[38,1,1,3,4],[39,1,1,4,5],[41,1,1,5,6],[42,1,1,6,7],[43,1,1,7,8]]],[1,10,10,8,18,[[54,1,1,8,9],[58,2,2,9,11],[59,1,1,11,12],[69,1,1,12,13],[72,1,1,13,14],[78,1,1,14,15],[81,3,3,15,18]]],[2,30,27,18,45,[[93,10,8,18,26],[94,10,10,26,36],[95,4,4,36,40],[97,1,1,40,41],[98,1,1,41,42],[103,2,2,42,44],[108,2,1,44,45]]],[3,18,17,45,62,[[122,1,1,45,46],[124,1,1,46,47],[128,1,1,47,48],[130,1,1,48,49],[131,2,2,49,51],[132,1,1,51,52],[135,5,4,52,56],[137,1,1,56,57],[138,1,1,57,58],[147,3,3,58,61],[148,1,1,61,62]]],[4,6,6,62,68,[[153,1,1,62,63],[161,2,2,63,65],[171,1,1,65,66],[172,1,1,66,67],[176,1,1,67,68]]],[5,2,2,68,70,[[193,2,2,68,70]]],[6,4,4,70,74,[[220,2,2,70,72],[221,1,1,72,73],[230,1,1,73,74]]],[8,14,12,74,86,[[237,2,1,74,75],[242,1,1,75,76],[247,2,2,76,78],[249,2,2,78,80],[250,2,2,80,82],[254,3,2,82,84],[259,1,1,84,85],[261,1,1,85,86]]],[9,4,4,86,90,[[278,1,1,86,87],[285,1,1,87,88],[290,2,2,88,90]]],[10,23,18,90,108,[[298,7,6,90,96],[304,3,2,96,98],[305,4,3,98,101],[306,6,4,101,105],[308,1,1,105,106],[311,1,1,106,107],[312,1,1,107,108]]],[11,18,18,108,126,[[315,1,1,108,109],[322,2,2,109,111],[325,3,3,111,114],[326,1,1,114,115],[327,4,4,115,119],[329,2,2,119,121],[330,1,1,121,122],[333,3,3,122,125],[335,1,1,125,126]]],[12,2,2,126,128,[[358,2,2,126,128]]],[13,8,7,128,135,[[372,7,6,128,134],[395,1,1,134,135]]],[15,6,4,135,139,[[413,2,1,135,136],[418,1,1,136,137],[421,1,1,137,138],[425,2,1,138,139]]],[17,12,12,139,151,[[436,2,2,139,141],[437,1,1,141,142],[440,1,1,142,143],[442,1,1,143,144],[443,1,1,144,145],[445,1,1,145,146],[459,1,1,146,147],[466,1,1,147,148],[468,1,1,148,149],[470,1,1,149,150],[476,1,1,150,151]]],[18,9,9,151,160,[[481,1,1,151,152],[516,1,1,152,153],[518,1,1,153,154],[528,2,2,154,156],[555,2,2,156,158],[583,1,1,158,159],[596,1,1,159,160]]],[19,6,6,160,166,[[635,1,1,160,161],[638,1,1,161,162],[640,1,1,162,163],[641,1,1,163,164],[646,1,1,164,165],[647,1,1,165,166]]],[20,7,7,166,173,[[660,1,1,166,167],[663,1,1,167,168],[665,2,2,168,170],[666,1,1,170,171],[667,2,2,171,173]]],[22,6,6,173,179,[[679,1,1,173,174],[707,1,1,174,175],[720,1,1,175,176],[721,1,1,176,177],[742,1,1,177,178],[743,1,1,178,179]]],[23,14,13,179,192,[[746,1,1,179,180],[747,1,1,180,181],[752,1,1,181,182],[758,2,2,182,184],[760,1,1,184,185],[776,1,1,185,186],[777,2,1,186,187],[781,1,1,187,188],[784,1,1,188,189],[788,1,1,189,190],[794,2,2,190,192]]],[24,3,3,192,195,[[797,1,1,192,193],[801,2,2,193,195]]],[25,16,14,195,209,[[804,2,1,195,196],[815,1,1,196,197],[817,1,1,197,198],[819,3,3,198,201],[829,1,1,201,202],[834,2,2,202,204],[838,1,1,204,205],[844,4,3,205,208],[846,1,1,208,209]]],[26,4,4,209,213,[[858,4,4,209,213]]],[27,5,4,213,217,[[865,1,1,213,214],[869,2,1,214,215],[871,1,1,215,216],[874,1,1,216,217]]],[32,1,1,217,218,[[899,1,1,217,218]]],[34,1,1,218,219,[[904,1,1,218,219]]],[35,1,1,219,220,[[906,1,1,219,220]]]],[501,504,912,1158,1173,1274,1299,1356,1648,1769,1776,1793,2071,2177,2372,2468,2469,2471,2797,2798,2809,2817,2818,2822,2823,2830,2831,2835,2836,2837,2840,2841,2843,2845,2846,2847,2851,2852,2853,2875,2932,2968,3160,3163,3303,3834,3960,4070,4148,4180,4181,4216,4301,4302,4308,4309,4347,4409,4683,4684,4687,4741,4933,5173,5175,5421,5445,5529,5987,5996,6821,6826,6856,7070,7265,7358,7470,7483,7541,7542,7584,7590,7710,7711,7850,7926,8299,8531,8702,8709,9016,9018,9020,9031,9032,9035,9234,9240,9275,9279,9283,9285,9296,9302,9309,9350,9473,9532,9579,9822,9824,9873,9877,9882,9920,9934,9943,9949,9953,9990,10004,10038,10130,10135,10136,10180,10942,10951,11304,11306,11308,11318,11319,11321,11815,12302,12414,12540,12697,12874,12891,12901,12975,13028,13033,13100,13455,13618,13677,13726,13913,13969,14513,14546,14695,14698,15130,15145,15657,15909,16638,16719,16769,16793,16927,16956,17359,17403,17449,17455,17470,17477,17493,17658,18214,18504,18532,18890,18917,19000,19027,19167,19300,19313,19346,19766,19783,19892,19944,20033,20173,20180,20318,20449,20458,20523,20744,20813,20853,20869,20873,21173,21292,21296,21420,21592,21594,21595,21648,21993,21996,21999,22003,22140,22205,22234,22268,22673,22758,22804]]],["+",[28,28,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,2,2,1,3,[[72,1,1,1,2],[78,1,1,2,3]]],[2,5,5,3,8,[[94,1,1,3,4],[95,1,1,4,5],[97,1,1,5,6],[103,2,2,6,8]]],[3,2,2,8,10,[[135,2,2,8,10]]],[8,1,1,10,11,[[247,1,1,10,11]]],[10,9,9,11,20,[[304,1,1,11,12],[305,3,3,12,15],[306,3,3,15,18],[311,1,1,18,19],[312,1,1,19,20]]],[11,1,1,20,21,[[333,1,1,20,21]]],[17,1,1,21,22,[[440,1,1,21,22]]],[18,1,1,22,23,[[516,1,1,22,23]]],[22,1,1,23,24,[[707,1,1,23,24]]],[24,1,1,24,25,[[797,1,1,24,25]]],[25,3,3,25,28,[[844,2,2,25,27],[846,1,1,27,28]]]],[501,2177,2372,2846,2875,2932,3160,3163,4301,4302,7483,9234,9275,9279,9283,9296,9302,9309,9473,9532,10135,12975,14513,18214,20318,21594,21595,21648]]],["Purge",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14698]]],["against",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16638]]],["blame",[2,2,[[0,2,2,0,2,[[42,1,1,0,1],[43,1,1,1,2]]]],[1299,1356]]],["cleanse",[2,2,[[25,2,2,0,2,[[844,2,2,0,2]]]],[21592,21594]]],["committed",[6,6,[[2,2,2,0,2,[[93,1,1,0,1],[94,1,1,1,2]]],[10,1,1,2,3,[[304,1,1,2,3]]],[23,1,1,3,4,[[760,1,1,3,4]]],[25,2,2,4,6,[[817,1,1,4,5],[834,1,1,5,6]]]],[2830,2837,9240,19346,20813,21296]]],["done",[2,1,[[2,2,1,0,1,[[108,2,1,0,1]]]],[3303]]],["fault",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1648]]],["himself",[2,2,[[3,2,2,0,2,[[135,2,2,0,2]]]],[4301,4309]]],["loss",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[912]]],["miss",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7070]]],["offended",[4,4,[[0,2,2,0,2,[[19,1,1,0,1],[39,1,1,1,2]]],[11,1,1,2,3,[[330,1,1,2,3]]],[23,1,1,3,4,[[781,1,1,3,4]]]],[504,1173,10038,19892]]],["purified",[2,2,[[3,2,2,0,2,[[124,1,1,0,1],[147,1,1,1,2]]]],[3960,4687]]],["purify",[3,3,[[3,3,3,0,3,[[135,1,1,0,1],[147,2,2,1,3]]]],[4308,4683,4684]]],["reconciliation",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11815]]],["sin",[55,51,[[0,2,2,0,2,[[38,1,1,0,1],[41,1,1,1,2]]],[1,1,1,2,3,[[69,1,1,2,3]]],[2,8,8,3,11,[[93,3,3,3,6],[94,3,3,6,9],[95,1,1,9,10],[98,1,1,10,11]]],[3,2,2,11,13,[[131,1,1,11,12],[132,1,1,12,13]]],[4,2,2,13,15,[[172,1,1,13,14],[176,1,1,14,15]]],[8,6,5,15,20,[[237,2,1,15,16],[249,2,2,16,18],[254,2,2,18,20]]],[10,3,3,20,23,[[298,1,1,20,21],[304,1,1,21,22],[306,1,1,22,23]]],[11,14,14,23,37,[[315,1,1,23,24],[322,2,2,24,26],[325,3,3,26,29],[326,1,1,29,30],[327,4,4,30,34],[329,1,1,34,35],[333,1,1,35,36],[335,1,1,36,37]]],[13,2,2,37,39,[[372,2,2,37,39]]],[15,3,2,39,41,[[418,1,1,39,40],[425,2,1,40,41]]],[17,3,3,41,44,[[437,1,1,41,42],[445,1,1,42,43],[466,1,1,43,44]]],[18,2,2,44,46,[[481,1,1,44,45],[596,1,1,45,46]]],[20,1,1,46,47,[[663,1,1,46,47]]],[23,1,1,47,48,[[776,1,1,47,48]]],[25,2,1,48,49,[[804,2,1,48,49]]],[27,3,2,49,51,[[869,2,1,49,50],[874,1,1,50,51]]]],[1158,1274,2071,2797,2798,2822,2831,2845,2847,2851,2968,4180,4216,5445,5529,7265,7541,7542,7710,7711,9031,9234,9285,9579,9822,9824,9873,9877,9882,9920,9934,9943,9949,9953,10004,10130,10180,11304,11318,12414,12697,12901,13100,13618,13969,15909,17403,19766,20523,22205,22268]]],["sinful",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17658]]],["sinned",[101,98,[[1,6,6,0,6,[[58,2,2,0,2],[59,1,1,2,3],[81,3,3,3,6]]],[2,12,11,6,17,[[93,6,5,6,11],[94,5,5,11,16],[95,1,1,16,17]]],[3,6,6,17,23,[[122,1,1,17,18],[128,1,1,18,19],[130,1,1,19,20],[137,1,1,20,21],[138,1,1,21,22],[148,1,1,22,23]]],[4,3,3,23,26,[[153,1,1,23,24],[161,2,2,24,26]]],[5,2,2,26,28,[[193,2,2,26,28]]],[6,3,3,28,31,[[220,2,2,28,30],[221,1,1,30,31]]],[8,7,7,31,38,[[242,1,1,31,32],[247,1,1,32,33],[250,2,2,33,35],[254,1,1,35,36],[259,1,1,36,37],[261,1,1,37,38]]],[9,4,4,38,42,[[278,1,1,38,39],[285,1,1,39,40],[290,2,2,40,42]]],[10,8,8,42,50,[[298,4,4,42,46],[305,1,1,46,47],[306,2,2,47,49],[308,1,1,49,50]]],[11,2,2,50,52,[[329,1,1,50,51],[333,1,1,51,52]]],[12,2,2,52,54,[[358,2,2,52,54]]],[13,4,4,54,58,[[372,4,4,54,58]]],[15,3,2,58,60,[[413,2,1,58,59],[421,1,1,59,60]]],[17,6,6,60,66,[[436,2,2,60,62],[442,1,1,62,63],[443,1,1,63,64],[459,1,1,64,65],[468,1,1,65,66]]],[18,5,5,66,71,[[518,1,1,66,67],[528,1,1,67,68],[555,2,2,68,70],[583,1,1,70,71]]],[22,3,3,71,74,[[720,1,1,71,72],[721,1,1,72,73],[742,1,1,73,74]]],[23,11,10,74,84,[[746,1,1,74,75],[747,1,1,75,76],[752,1,1,76,77],[758,2,2,77,79],[777,2,1,79,80],[784,1,1,80,81],[788,1,1,81,82],[794,2,2,82,84]]],[24,2,2,84,86,[[801,2,2,84,86]]],[25,3,3,86,89,[[819,1,1,86,87],[829,1,1,87,88],[838,1,1,88,89]]],[26,4,4,89,93,[[858,4,4,89,93]]],[27,2,2,93,95,[[865,1,1,93,94],[871,1,1,94,95]]],[32,1,1,95,96,[[899,1,1,95,96]]],[34,1,1,96,97,[[904,1,1,96,97]]],[35,1,1,97,98,[[906,1,1,97,98]]]],[1769,1776,1793,2468,2469,2471,2798,2809,2817,2818,2823,2835,2836,2840,2841,2843,2853,3834,4070,4148,4347,4409,4741,4933,5173,5175,5987,5996,6821,6826,6856,7358,7470,7584,7590,7710,7850,7926,8299,8531,8702,8709,9018,9020,9032,9035,9279,9296,9302,9350,9990,10136,10942,10951,11306,11308,11319,11321,12302,12540,12874,12891,13028,13033,13455,13677,14546,14695,15130,15145,15657,18504,18532,18890,19000,19027,19167,19300,19313,19783,19944,20033,20173,20180,20449,20458,20873,21173,21420,21993,21996,21999,22003,22140,22234,22673,22758,22804]]],["sinner",[8,8,[[19,2,2,0,2,[[638,1,1,0,1],[640,1,1,1,2]]],[20,5,5,2,7,[[660,1,1,2,3],[665,1,1,3,4],[666,1,1,4,5],[667,2,2,5,7]]],[22,1,1,7,8,[[743,1,1,7,8]]]],[16719,16769,17359,17455,17470,17477,17493,18917]]],["sinnest",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13726]]],["sinneth",[12,12,[[3,1,1,0,1,[[131,1,1,0,1]]],[4,1,1,1,2,[[171,1,1,1,2]]],[10,1,1,2,3,[[298,1,1,2,3]]],[13,1,1,3,4,[[372,1,1,3,4]]],[19,3,3,4,7,[[641,1,1,4,5],[646,1,1,5,6],[647,1,1,6,7]]],[20,1,1,7,8,[[665,1,1,7,8]]],[25,4,4,8,12,[[815,1,1,8,9],[819,2,2,9,11],[834,1,1,11,12]]]],[4181,5421,9031,11318,16793,16927,16956,17449,20744,20853,20869,21292]]],["sinning",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2852]]],["themselves",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13913]]],["trespass",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9016]]]]},{"k":"H2399","v":[["*",[33,33,[[0,1,1,0,1,[[40,1,1,0,1]]],[2,4,4,1,5,[[108,1,1,1,2],[109,1,1,2,3],[111,1,1,3,4],[113,1,1,4,5]]],[3,4,4,5,9,[[125,1,1,5,6],[134,2,2,6,8],[143,1,1,8,9]]],[4,8,8,9,17,[[167,1,1,9,10],[171,1,1,10,11],[173,1,1,11,12],[174,1,1,12,13],[175,2,2,13,15],[176,2,2,15,17]]],[11,2,2,17,19,[[322,1,1,17,18],[326,1,1,18,19]]],[13,1,1,19,20,[[391,1,1,19,20]]],[18,3,3,20,23,[[528,2,2,20,22],[580,1,1,22,23]]],[20,1,1,23,24,[[668,1,1,23,24]]],[22,4,4,24,28,[[679,1,1,24,25],[709,1,1,25,26],[716,1,1,26,27],[731,1,1,27,28]]],[24,2,2,28,30,[[797,1,1,28,29],[799,1,1,29,30]]],[25,1,1,30,31,[[824,1,1,30,31]]],[26,1,1,31,32,[[858,1,1,31,32]]],[27,1,1,32,33,[[873,1,1,32,33]]]],[1204,3298,3338,3378,3461,3978,4279,4289,4557,5328,5421,5469,5496,5521,5522,5540,5541,9822,9902,11708,14696,14700,15559,17497,17672,18257,18407,18723,20318,20393,21056,22004,22260]]],["+",[2,2,[[18,1,1,0,1,[[528,1,1,0,1]]],[24,1,1,1,2,[[797,1,1,1,2]]]],[14700,20318]]],["faults",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1204]]],["offences",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17497]]],["sin",[22,22,[[2,4,4,0,4,[[108,1,1,0,1],[109,1,1,1,2],[111,1,1,2,3],[113,1,1,3,4]]],[3,4,4,4,8,[[125,1,1,4,5],[134,2,2,5,7],[143,1,1,7,8]]],[4,8,8,8,16,[[167,1,1,8,9],[171,1,1,9,10],[173,1,1,10,11],[174,1,1,11,12],[175,2,2,12,14],[176,2,2,14,16]]],[11,1,1,16,17,[[326,1,1,16,17]]],[13,1,1,17,18,[[391,1,1,17,18]]],[18,1,1,18,19,[[528,1,1,18,19]]],[22,2,2,19,21,[[709,1,1,19,20],[731,1,1,20,21]]],[27,1,1,21,22,[[873,1,1,21,22]]]],[3298,3338,3378,3461,3978,4279,4289,4557,5328,5421,5469,5496,5521,5522,5540,5541,9902,11708,14696,18257,18723,22260]]],["sins",[7,7,[[11,1,1,0,1,[[322,1,1,0,1]]],[18,1,1,1,2,[[580,1,1,1,2]]],[22,2,2,2,4,[[679,1,1,2,3],[716,1,1,3,4]]],[24,1,1,4,5,[[799,1,1,4,5]]],[25,1,1,5,6,[[824,1,1,5,6]]],[26,1,1,6,7,[[858,1,1,6,7]]]],[9822,15559,17672,18407,20393,21056,22004]]]]},{"k":"H2400","v":[["*",[19,19,[[0,1,1,0,1,[[12,1,1,0,1]]],[3,2,2,1,3,[[132,1,1,1,2],[148,1,1,2,3]]],[8,1,1,3,4,[[250,1,1,3,4]]],[10,1,1,4,5,[[291,1,1,4,5]]],[18,6,6,5,11,[[478,2,2,5,7],[502,1,1,7,8],[503,1,1,8,9],[528,1,1,9,10],[581,1,1,10,11]]],[19,3,3,11,14,[[628,1,1,11,12],[640,1,1,12,13],[650,1,1,13,14]]],[22,3,3,14,17,[[679,1,1,14,15],[691,1,1,15,16],[711,1,1,16,17]]],[29,2,2,17,19,[[887,2,2,17,19]]]],[331,4232,4732,7578,8738,13940,13944,14259,14282,14704,15606,16410,16768,17061,17682,17915,18293,22503,22505]]],["+",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7578]]],["offenders",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8738]]],["sinful",[2,2,[[3,1,1,0,1,[[148,1,1,0,1]]],[29,1,1,1,2,[[887,1,1,1,2]]]],[4732,22503]]],["sinners",[15,15,[[0,1,1,0,1,[[12,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[18,6,6,2,8,[[478,2,2,2,4],[502,1,1,4,5],[503,1,1,5,6],[528,1,1,6,7],[581,1,1,7,8]]],[19,3,3,8,11,[[628,1,1,8,9],[640,1,1,9,10],[650,1,1,10,11]]],[22,3,3,11,14,[[679,1,1,11,12],[691,1,1,12,13],[711,1,1,13,14]]],[29,1,1,14,15,[[887,1,1,14,15]]]],[331,4232,13940,13944,14259,14282,14704,15606,16410,16768,17061,17682,17915,18293,22505]]]]},{"k":"H2401","v":[["*",[8,8,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,3,3,1,4,[[81,3,3,1,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[18,3,3,5,8,[[509,1,1,5,6],[517,1,1,6,7],[586,1,1,7,8]]]],[504,2459,2468,2469,10004,14356,14531,15762]]],["offering",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14531]]],["sin",[7,7,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,3,3,1,4,[[81,3,3,1,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[18,2,2,5,7,[[509,1,1,5,6],[586,1,1,6,7]]]],[504,2459,2468,2469,10004,14356,15762]]]]},{"k":"H2402","v":[["sin",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17757]]]]},{"k":"H2403","v":[["*",[294,270,[[0,4,4,0,4,[[3,1,1,0,1],[17,1,1,1,2],[30,1,1,2,3],[49,1,1,3,4]]],[1,9,9,4,13,[[59,1,1,4,5],[78,2,2,5,7],[79,1,1,7,8],[81,3,3,8,11],[83,2,2,11,13]]],[2,82,66,13,79,[[93,20,15,13,28],[94,12,8,28,36],[95,4,3,36,39],[96,2,2,39,41],[97,3,2,41,43],[98,7,7,43,50],[99,4,3,50,53],[101,2,2,53,55],[103,5,4,55,59],[104,2,2,59,61],[105,14,12,61,73],[108,2,1,73,74],[112,1,1,74,75],[115,4,4,75,79]]],[3,43,42,79,121,[[121,2,2,79,81],[122,3,3,81,84],[123,13,13,84,97],[124,3,3,97,100],[128,1,1,100,101],[131,3,3,101,104],[132,1,1,104,105],[134,1,1,105,106],[135,2,2,106,108],[144,2,2,108,110],[145,11,10,110,120],[148,1,1,120,121]]],[4,4,4,121,125,[[161,3,3,121,124],[171,1,1,124,125]]],[5,1,1,125,126,[[210,1,1,125,126]]],[8,6,6,126,132,[[237,1,1,126,127],[247,1,1,127,128],[249,1,1,128,129],[250,2,2,129,131],[255,1,1,131,132]]],[9,1,1,132,133,[[278,1,1,132,133]]],[10,18,16,133,149,[[298,3,3,133,136],[302,1,1,136,137],[303,1,1,137,138],[304,2,2,138,140],[305,4,4,140,144],[306,7,5,144,149]]],[11,15,15,149,164,[[315,1,1,149,150],[322,1,1,150,151],[324,1,1,151,152],[325,3,3,152,155],[326,1,1,155,156],[327,4,4,156,160],[329,1,1,160,161],[333,2,2,161,163],[336,1,1,163,164]]],[13,9,9,164,173,[[372,3,3,164,167],[373,1,1,167,168],[394,1,1,168,169],[395,3,3,169,172],[399,1,1,172,173]]],[14,1,1,173,174,[[410,1,1,173,174]]],[15,5,5,174,179,[[413,1,1,174,175],[416,1,1,175,176],[421,2,2,176,178],[422,1,1,178,179]]],[17,6,5,179,184,[[445,1,1,179,180],[448,2,1,180,181],[449,1,1,181,182],[469,1,1,182,183],[470,1,1,183,184]]],[18,13,12,184,196,[[502,2,2,184,186],[509,2,1,186,187],[515,2,2,187,189],[528,2,2,189,191],[536,2,2,191,193],[556,1,1,193,194],[562,1,1,194,195],[586,1,1,195,196]]],[19,7,7,196,203,[[632,1,1,196,197],[637,1,1,197,198],[640,1,1,198,199],[641,1,1,199,200],[647,1,1,200,201],[648,1,1,201,202],[651,1,1,202,203]]],[22,12,11,203,214,[[681,1,1,203,204],[684,1,1,204,205],[705,1,1,205,206],[708,2,1,206,207],[718,1,1,207,208],[721,2,2,208,210],[722,1,1,210,211],[736,1,1,211,212],[737,2,2,212,214]]],[23,13,13,214,227,[[749,1,1,214,215],[758,1,1,215,216],[759,1,1,216,217],[760,2,2,217,219],[761,2,2,219,221],[762,1,1,221,222],[774,2,2,222,224],[775,1,1,224,225],[780,1,1,225,226],[794,1,1,226,227]]],[24,3,3,227,230,[[800,3,3,227,230]]],[25,24,24,230,254,[[804,1,1,230,231],[817,2,2,231,233],[819,3,3,233,236],[822,1,1,236,237],[834,3,3,237,240],[841,1,1,240,241],[843,1,1,241,242],[844,4,4,242,246],[845,2,2,246,248],[846,5,5,248,253],[847,1,1,253,254]]],[26,3,2,254,256,[[858,3,2,254,256]]],[27,5,5,256,261,[[865,1,1,256,257],[869,1,1,257,258],[870,1,1,258,259],[871,1,1,259,260],[874,1,1,260,261]]],[29,1,1,261,262,[[883,1,1,261,262]]],[32,6,6,262,268,[[893,2,2,262,264],[895,1,1,264,265],[898,2,2,265,267],[899,1,1,267,268]]],[37,3,2,268,270,[[923,1,1,268,269],[924,2,1,269,270]]]],[86,444,909,1523,1794,2350,2372,2392,2468,2470,2472,2503,2505,2798,2803,2809,2815,2816,2818,2819,2820,2821,2823,2824,2827,2828,2829,2830,2836,2837,2838,2839,2840,2841,2842,2843,2866,2874,2879,2886,2916,2919,2931,2955,2956,2960,2961,2963,2968,2975,2993,2994,2996,3050,3052,3124,3130,3133,3142,3183,3198,3204,3206,3207,3210,3212,3216,3217,3222,3226,3228,3231,3235,3303,3421,3542,3545,3548,3552,3798,3799,3834,3837,3839,3866,3872,3878,3884,3890,3896,3902,3908,3914,3920,3926,3932,3937,3946,3947,3951,4070,4177,4178,4180,4220,4266,4298,4306,4592,4599,4613,4619,4624,4627,4630,4633,4636,4639,4642,4646,4741,5175,5178,5184,5421,6495,7257,7479,7546,7583,7585,7731,8299,9019,9020,9021,9181,9218,9234,9240,9252,9275,9279,9283,9285,9296,9302,9309,9314,9579,9824,9866,9873,9877,9882,9920,9934,9943,9949,9953,10005,10135,10136,10205,11307,11308,11309,11338,11777,11812,11814,11815,11927,12236,12302,12364,12513,12548,12582,13092,13176,13197,13720,13723,14258,14269,14360,14493,14508,14693,14694,14793,14802,15194,15273,15769,16539,16672,16753,16806,16963,16988,17088,17716,17776,18160,18218,18422,18529,18530,18555,18787,18802,18812,19083,19303,19328,19346,19354,19358,19360,19407,19681,19682,19725,19845,20186,20426,20433,20442,20522,20813,20814,20863,20870,20873,20968,21290,21294,21296,21516,21565,21591,21593,21594,21597,21626,21628,21647,21649,21652,21653,21655,21675,22008,22012,22141,22207,22217,22233,22278,22435,22584,22592,22616,22655,22661,22683,23060,23087]]],["+",[20,20,[[2,6,6,0,6,[[93,2,2,0,2],[94,2,2,2,4],[105,1,1,4,5],[108,1,1,5,6]]],[4,1,1,6,7,[[161,1,1,6,7]]],[10,1,1,7,8,[[298,1,1,7,8]]],[11,4,4,8,12,[[325,1,1,8,9],[327,2,2,9,11],[333,1,1,11,12]]],[13,1,1,12,13,[[372,1,1,12,13]]],[17,1,1,13,14,[[470,1,1,13,14]]],[18,2,2,14,16,[[515,1,1,14,15],[528,1,1,15,16]]],[19,1,1,16,17,[[647,1,1,16,17]]],[24,2,2,17,19,[[800,2,2,17,19]]],[25,1,1,19,20,[[834,1,1,19,20]]]],[2803,2821,2836,2840,3228,3303,5178,9020,9877,9934,9949,10135,11308,13723,14508,14693,16963,20426,20433,21294]]],["offering",[113,103,[[1,3,3,0,3,[[78,2,2,0,2],[79,1,1,2,3]]],[2,57,48,3,51,[[93,10,8,3,11],[94,8,6,11,17],[95,4,3,17,20],[96,2,2,20,22],[97,3,2,22,24],[98,7,7,24,31],[99,4,3,31,34],[101,2,2,34,36],[103,5,4,36,40],[104,2,2,40,42],[105,9,8,42,50],[112,1,1,50,51]]],[3,35,34,51,85,[[122,3,3,51,54],[123,13,13,54,67],[124,2,2,67,69],[131,3,3,69,72],[134,1,1,72,73],[144,2,2,73,75],[145,11,10,75,85]]],[13,3,3,85,88,[[395,3,3,85,88]]],[14,1,1,88,89,[[410,1,1,88,89]]],[25,14,14,89,103,[[841,1,1,89,90],[843,1,1,90,91],[844,4,4,91,95],[845,2,2,95,97],[846,5,5,97,102],[847,1,1,102,103]]]],[2350,2372,2392,2798,2815,2816,2819,2820,2824,2828,2829,2836,2837,2838,2839,2841,2842,2866,2874,2879,2886,2916,2919,2931,2955,2956,2960,2961,2963,2968,2975,2993,2994,2996,3050,3052,3124,3130,3133,3142,3183,3198,3204,3206,3207,3210,3212,3216,3226,3228,3421,3834,3837,3839,3866,3872,3878,3884,3890,3896,3902,3908,3914,3920,3926,3932,3937,3947,3951,4177,4178,4180,4266,4592,4599,4613,4619,4624,4627,4630,4633,4636,4639,4642,4646,11812,11814,11815,12236,21516,21565,21591,21593,21594,21597,21626,21628,21647,21649,21652,21653,21655,21675]]],["offerings",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12582]]],["punishment",[2,1,[[37,2,1,0,1,[[924,2,1,0,1]]]],[23087]]],["purifying",[1,1,[[3,1,1,0,1,[[124,1,1,0,1]]]],[3946]]],["sin",[89,84,[[0,4,4,0,4,[[3,1,1,0,1],[17,1,1,1,2],[30,1,1,2,3],[49,1,1,3,4]]],[1,6,6,4,10,[[59,1,1,4,5],[81,3,3,5,8],[83,2,2,8,10]]],[2,11,9,10,19,[[93,8,6,10,16],[94,2,2,16,18],[108,1,1,18,19]]],[3,6,6,19,25,[[121,2,2,19,21],[128,1,1,21,22],[135,2,2,22,24],[148,1,1,24,25]]],[4,2,2,25,27,[[161,1,1,25,26],[171,1,1,26,27]]],[8,5,5,27,32,[[237,1,1,27,28],[249,1,1,28,29],[250,2,2,29,31],[255,1,1,31,32]]],[9,1,1,32,33,[[278,1,1,32,33]]],[10,8,8,33,41,[[298,2,2,33,35],[302,1,1,35,36],[303,1,1,36,37],[305,2,2,37,39],[306,2,2,39,41]]],[11,2,2,41,43,[[324,1,1,41,42],[333,1,1,42,43]]],[13,4,4,43,47,[[372,2,2,43,45],[373,1,1,45,46],[399,1,1,46,47]]],[15,1,1,47,48,[[416,1,1,47,48]]],[17,4,4,48,52,[[445,1,1,48,49],[448,1,1,49,50],[449,1,1,50,51],[469,1,1,51,52]]],[18,8,7,52,59,[[509,2,1,52,53],[515,1,1,53,54],[528,1,1,54,55],[536,2,2,55,57],[562,1,1,57,58],[586,1,1,58,59]]],[19,4,4,59,63,[[637,1,1,59,60],[641,1,1,60,61],[648,1,1,61,62],[651,1,1,62,63]]],[22,5,4,63,67,[[681,1,1,63,64],[684,1,1,64,65],[705,1,1,65,66],[708,2,1,66,67]]],[23,7,7,67,74,[[760,2,2,67,69],[761,2,2,69,71],[762,1,1,71,72],[775,1,1,72,73],[780,1,1,73,74]]],[25,2,2,74,76,[[804,1,1,74,75],[819,1,1,75,76]]],[26,2,1,76,77,[[858,2,1,76,77]]],[27,3,3,77,80,[[865,1,1,77,78],[871,1,1,78,79],[874,1,1,79,80]]],[32,3,3,80,83,[[893,1,1,80,81],[895,1,1,81,82],[898,1,1,82,83]]],[37,1,1,83,84,[[923,1,1,83,84]]]],[86,444,909,1523,1794,2468,2470,2472,2503,2505,2798,2809,2818,2823,2827,2830,2836,2843,3303,3798,3799,4070,4298,4306,4741,5184,5421,7257,7546,7583,7585,7731,8299,9019,9021,9181,9218,9275,9283,9302,9309,9866,10136,11307,11309,11338,11927,12364,13092,13176,13197,13720,14360,14493,14694,14793,14802,15273,15769,16672,16806,16988,17088,17716,17776,18160,18218,19346,19354,19358,19360,19407,19725,19845,20522,20873,22008,22141,22233,22278,22592,22616,22655,23060]]],["sinner",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16753]]],["sins",[67,66,[[2,8,8,0,8,[[105,4,4,0,4],[115,4,4,4,8]]],[3,1,1,8,9,[[132,1,1,8,9]]],[4,1,1,9,10,[[161,1,1,9,10]]],[5,1,1,10,11,[[210,1,1,10,11]]],[8,1,1,11,12,[[247,1,1,11,12]]],[10,9,8,12,20,[[304,2,2,12,14],[305,2,2,14,16],[306,5,4,16,20]]],[11,9,9,20,29,[[315,1,1,20,21],[322,1,1,21,22],[325,2,2,22,24],[326,1,1,24,25],[327,2,2,25,27],[329,1,1,27,28],[336,1,1,28,29]]],[13,1,1,29,30,[[394,1,1,29,30]]],[15,3,3,30,33,[[413,1,1,30,31],[421,2,2,31,33]]],[17,1,1,33,34,[[448,1,1,33,34]]],[18,3,3,34,37,[[502,2,2,34,36],[556,1,1,36,37]]],[19,1,1,37,38,[[632,1,1,37,38]]],[22,7,7,38,45,[[718,1,1,38,39],[721,2,2,39,41],[722,1,1,41,42],[736,1,1,42,43],[737,2,2,43,45]]],[23,6,6,45,51,[[749,1,1,45,46],[758,1,1,46,47],[759,1,1,47,48],[774,2,2,48,50],[794,1,1,50,51]]],[24,1,1,51,52,[[800,1,1,51,52]]],[25,7,7,52,59,[[817,2,2,52,54],[819,2,2,54,56],[822,1,1,56,57],[834,2,2,57,59]]],[26,1,1,59,60,[[858,1,1,59,60]]],[27,2,2,60,62,[[869,1,1,60,61],[870,1,1,61,62]]],[29,1,1,62,63,[[883,1,1,62,63]]],[32,3,3,63,66,[[893,1,1,63,64],[898,1,1,64,65],[899,1,1,65,66]]]],[3217,3222,3231,3235,3542,3545,3548,3552,4220,5175,6495,7479,9234,9240,9252,9279,9285,9296,9302,9314,9579,9824,9873,9882,9920,9943,9953,10005,10205,11777,12302,12513,12548,13176,14258,14269,15194,16539,18422,18529,18530,18555,18787,18802,18812,19083,19303,19328,19681,19682,20186,20442,20813,20814,20863,20870,20968,21290,21296,22012,22207,22217,22435,22584,22661,22683]]]]},{"k":"H2404","v":[["*",[9,9,[[4,2,2,0,2,[[171,1,1,0,1],[181,1,1,1,2]]],[5,3,3,2,5,[[195,3,3,2,5]]],[13,1,1,5,6,[[368,1,1,5,6]]],[18,1,1,6,7,[[621,1,1,6,7]]],[23,1,1,7,8,[[790,1,1,7,8]]],[25,1,1,8,9,[[840,1,1,8,9]]]],[5411,5690,6058,6060,6064,11221,16317,20067,21458]]],["+",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5690]]],["down",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21458]]],["hew",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5411]]],["hewers",[5,5,[[5,3,3,0,3,[[195,3,3,0,3]]],[13,1,1,3,4,[[368,1,1,3,4]]],[23,1,1,4,5,[[790,1,1,4,5]]]],[6058,6060,6064,11221,20067]]],["polished",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16317]]]]},{"k":"H2405","v":[["carved",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16591]]]]},{"k":"H2406","v":[["*",[30,30,[[0,1,1,0,1,[[29,1,1,0,1]]],[1,3,3,1,4,[[58,1,1,1,2],[78,1,1,2,3],[83,1,1,3,4]]],[4,2,2,4,6,[[160,1,1,4,5],[184,1,1,5,6]]],[6,2,2,6,8,[[216,1,1,6,7],[225,1,1,7,8]]],[7,1,1,8,9,[[233,1,1,8,9]]],[8,2,2,9,11,[[241,1,1,9,10],[247,1,1,10,11]]],[9,2,2,11,13,[[270,1,1,11,12],[283,1,1,12,13]]],[10,1,1,13,14,[[295,1,1,13,14]]],[12,2,2,14,16,[[358,2,2,14,16]]],[13,3,3,16,19,[[368,2,2,16,18],[393,1,1,18,19]]],[17,1,1,19,20,[[466,1,1,19,20]]],[18,2,2,20,22,[[558,1,1,20,21],[624,1,1,21,22]]],[21,1,1,22,23,[[677,1,1,22,23]]],[22,1,1,23,24,[[706,1,1,23,24]]],[23,2,2,24,26,[[756,1,1,24,25],[785,1,1,25,26]]],[25,3,3,26,29,[[805,1,1,26,27],[828,1,1,27,28],[846,1,1,28,29]]],[28,1,1,29,30,[[876,1,1,29,30]]]],[844,1774,2338,2518,5145,5772,6665,6930,7172,7344,7477,8126,8477,8889,10954,10957,11221,11226,11760,13628,15233,16365,17629,18189,19262,19965,20538,21138,21643,22302]]],["wheat",[29,29,[[0,1,1,0,1,[[29,1,1,0,1]]],[1,2,2,1,3,[[58,1,1,1,2],[83,1,1,2,3]]],[4,2,2,3,5,[[160,1,1,3,4],[184,1,1,4,5]]],[6,2,2,5,7,[[216,1,1,5,6],[225,1,1,6,7]]],[7,1,1,7,8,[[233,1,1,7,8]]],[8,2,2,8,10,[[241,1,1,8,9],[247,1,1,9,10]]],[9,2,2,10,12,[[270,1,1,10,11],[283,1,1,11,12]]],[10,1,1,12,13,[[295,1,1,12,13]]],[12,2,2,13,15,[[358,2,2,13,15]]],[13,3,3,15,18,[[368,2,2,15,17],[393,1,1,17,18]]],[17,1,1,18,19,[[466,1,1,18,19]]],[18,2,2,19,21,[[558,1,1,19,20],[624,1,1,20,21]]],[21,1,1,21,22,[[677,1,1,21,22]]],[22,1,1,22,23,[[706,1,1,22,23]]],[23,2,2,23,25,[[756,1,1,23,24],[785,1,1,24,25]]],[25,3,3,25,28,[[805,1,1,25,26],[828,1,1,26,27],[846,1,1,27,28]]],[28,1,1,28,29,[[876,1,1,28,29]]]],[844,1774,2518,5145,5772,6665,6930,7172,7344,7477,8126,8477,8889,10954,10957,11221,11226,11760,13628,15233,16365,17629,18189,19262,19965,20538,21138,21643,22302]]],["wheaten",[1,1,[[1,1,1,0,1,[[78,1,1,0,1]]]],[2338]]]]},{"k":"H2407","v":[["Hattush",[5,5,[[12,1,1,0,1,[[340,1,1,0,1]]],[14,1,1,1,2,[[410,1,1,1,2]]],[15,3,3,2,5,[[415,1,1,2,3],[422,1,1,3,4],[424,1,1,4,5]]]],[10383,12203,12337,12553,12626]]]]},{"k":"H2408","v":[["sins",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]]]},{"k":"H2409","v":[["offering",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12168]]]]},{"k":"H2410","v":[["Hatita",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12069,12465]]]]},{"k":"H2411","v":[["Hattil",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12084,12479]]]]},{"k":"H2412","v":[["Hatipha",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12081,12476]]]]},{"k":"H2413","v":[["refrain",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18623]]]]},{"k":"H2414","v":[["catch",[3,2,[[6,1,1,0,1,[[231,1,1,0,1]]],[18,2,1,1,2,[[487,2,1,1,2]]]],[7123,14050]]]]},{"k":"H2415","v":[["rod",[2,2,[[19,1,1,0,1,[[641,1,1,0,1]]],[22,1,1,1,2,[[689,1,1,1,2]]]],[16775,17885]]]]},{"k":"H2416","v":[["*",[502,450,[[0,67,56,0,56,[[0,8,6,0,6],[1,6,4,6,10],[2,7,6,10,16],[5,2,2,16,18],[6,5,5,18,23],[7,4,4,23,27],[8,9,7,27,34],[17,2,2,34,36],[22,2,1,36,37],[24,4,3,37,40],[25,1,1,40,41],[26,2,1,41,42],[36,2,2,42,44],[41,2,2,44,46],[42,3,3,46,49],[44,3,3,49,52],[45,1,1,52,53],[46,4,3,53,56]]],[1,9,9,56,65,[[50,1,1,56,57],[53,1,1,57,58],[55,3,3,58,61],[70,1,1,61,62],[71,1,1,62,63],[72,2,2,63,65]]],[2,33,27,65,92,[[94,1,1,65,66],[100,6,5,66,71],[102,5,4,71,75],[103,12,8,75,83],[104,1,1,83,84],[105,3,3,84,87],[106,1,1,87,88],[107,1,1,88,89],[114,1,1,89,90],[115,2,2,90,92]]],[3,7,7,92,99,[[130,2,2,92,94],[132,3,3,94,97],[135,1,1,97,98],[151,1,1,98,99]]],[4,21,19,99,118,[[156,3,3,99,102],[157,2,2,102,104],[158,1,1,104,105],[159,1,1,105,106],[164,1,1,106,107],[168,1,1,107,108],[169,1,1,108,109],[180,2,1,109,110],[182,5,4,110,114],[183,2,2,114,116],[184,2,2,116,118]]],[5,4,4,118,122,[[187,1,1,118,119],[189,1,1,119,120],[190,1,1,120,121],[194,1,1,121,122]]],[6,2,2,122,124,[[218,1,1,122,123],[226,1,1,123,124]]],[7,2,2,124,126,[[233,1,1,124,125],[234,1,1,125,126]]],[8,27,25,126,151,[[236,2,2,126,128],[237,1,1,128,129],[242,1,1,129,130],[249,2,2,130,132],[250,1,1,132,133],[252,4,4,133,137],[253,1,1,137,138],[254,1,1,138,139],[255,5,4,139,143],[260,5,4,143,147],[261,2,2,147,149],[263,1,1,149,150],[264,1,1,150,151]]],[9,23,19,151,170,[[267,1,1,151,152],[268,1,1,152,153],[270,1,1,153,154],[277,2,1,154,155],[278,5,4,155,159],[280,2,2,159,161],[281,3,1,161,162],[284,2,2,162,164],[285,2,2,164,166],[287,1,1,166,167],[288,1,1,167,168],[289,2,2,168,170]]],[10,26,22,170,192,[[291,1,1,170,171],[292,1,1,171,172],[293,8,5,172,177],[294,1,1,177,178],[298,1,1,178,179],[301,1,1,179,180],[302,1,1,180,181],[305,2,2,181,183],[307,3,3,183,186],[308,2,2,186,188],[310,3,2,188,190],[311,1,1,190,191],[312,1,1,191,192]]],[11,21,16,192,208,[[314,6,3,192,195],[315,1,1,195,196],[316,4,3,196,199],[317,2,2,199,201],[319,1,1,201,202],[322,2,1,202,203],[326,1,1,203,204],[331,2,2,204,206],[337,2,2,206,208]]],[13,5,5,208,213,[[372,1,1,208,209],[376,1,1,209,210],[384,1,1,210,211],[391,2,2,211,213]]],[17,24,24,213,237,[[438,1,1,213,214],[440,2,2,214,216],[442,1,1,216,217],[444,1,1,217,218],[445,2,2,218,220],[447,1,1,220,221],[454,1,1,221,222],[459,1,1,222,223],[462,1,1,223,224],[463,2,2,224,226],[465,1,1,226,227],[468,5,5,227,232],[471,1,1,232,233],[472,1,1,233,234],[473,1,1,234,235],[474,1,1,235,236],[475,1,1,236,237]]],[18,51,50,237,287,[[484,1,1,237,238],[493,1,1,238,239],[494,1,1,239,240],[495,1,1,240,241],[498,1,1,241,242],[500,1,1,242,243],[503,1,1,243,244],[504,3,3,244,247],[507,1,1,247,248],[508,1,1,248,249],[511,1,1,249,250],[513,1,1,250,251],[515,1,1,251,252],[519,2,2,252,254],[526,1,1,254,255],[527,1,1,255,256],[529,1,1,256,257],[532,1,1,257,258],[533,1,1,258,259],[535,1,1,259,260],[540,2,2,260,262],[541,1,1,262,263],[543,1,1,263,264],[545,2,2,264,266],[546,1,1,266,267],[551,2,1,267,268],[555,1,1,268,269],[556,1,1,269,270],[561,1,1,270,271],[565,1,1,271,272],[580,1,1,272,273],[581,4,4,273,277],[593,1,1,277,278],[601,1,1,278,279],[605,1,1,279,280],[610,1,1,280,281],[619,1,1,281,282],[620,2,2,282,284],[622,1,1,284,285],[623,1,1,285,286],[625,1,1,286,287]]],[19,34,34,287,321,[[628,1,1,287,288],[629,1,1,288,289],[630,3,3,289,292],[631,4,4,292,296],[632,1,1,296,297],[633,1,1,297,298],[635,1,1,298,299],[636,1,1,299,300],[637,3,3,300,303],[638,2,2,303,305],[639,1,1,305,306],[640,2,2,306,308],[641,2,2,308,310],[642,3,3,310,313],[643,2,2,313,315],[645,1,1,315,316],[646,1,1,316,317],[648,1,1,317,318],[649,1,1,318,319],[654,1,1,319,320],[658,1,1,320,321]]],[20,21,16,321,337,[[660,2,2,321,323],[661,1,1,323,324],[662,3,2,324,326],[663,2,2,326,328],[664,3,2,328,330],[665,1,1,330,331],[666,1,1,331,332],[667,7,4,332,336],[668,1,1,336,337]]],[21,1,1,337,338,[[674,1,1,337,338]]],[22,19,17,338,355,[[682,1,1,338,339],[686,1,1,339,340],[713,1,1,340,341],[715,2,2,341,343],[716,6,5,343,348],[718,1,1,348,349],[721,1,1,349,350],[724,1,1,350,351],[727,1,1,351,352],[731,1,1,352,353],[734,2,1,353,354],[735,1,1,354,355]]],[23,23,23,355,378,[[746,1,1,355,356],[748,1,1,356,357],[749,1,1,357,358],[752,1,1,358,359],[754,1,1,359,360],[755,1,1,360,361],[756,2,2,361,363],[760,2,2,363,365],[761,1,1,365,366],[765,1,1,366,367],[766,1,1,367,368],[767,3,3,368,371],[771,1,1,371,372],[772,1,1,372,373],[782,1,1,373,374],[788,1,1,374,375],[790,1,1,375,376],[796,2,2,376,378]]],[24,3,3,378,381,[[799,3,3,378,381]]],[25,60,51,381,432,[[802,11,8,381,389],[804,1,1,389,390],[806,2,2,390,392],[808,3,1,392,393],[811,3,3,393,396],[815,6,5,396,401],[817,1,1,401,402],[818,2,2,402,404],[819,1,1,404,405],[821,3,3,405,408],[827,1,1,408,409],[830,1,1,409,410],[832,2,2,410,412],[833,7,7,412,419],[834,4,3,419,422],[835,5,4,422,426],[836,2,2,426,428],[839,1,1,428,429],[840,2,2,429,431],[848,2,1,431,432]]],[26,3,3,432,435,[[857,1,1,432,433],[861,2,2,433,435]]],[27,6,6,435,441,[[862,1,1,435,436],[863,2,2,436,438],[865,2,2,438,440],[874,1,1,440,441]]],[29,2,1,441,442,[[886,2,1,441,442]]],[31,3,3,442,445,[[890,1,1,442,443],[892,2,2,443,445]]],[35,3,3,445,448,[[907,3,3,445,448]]],[37,1,1,448,449,[[924,1,1,448,449]]],[38,1,1,449,450,[[926,1,1,449,450]]]],[19,20,23,24,27,29,37,39,49,50,56,69,72,75,77,79,154,156,170,173,174,180,181,184,200,202,204,207,208,210,215,217,220,221,434,438,572,664,665,675,711,773,1103,1116,1267,1268,1297,1317,1318,1361,1384,1386,1416,1428,1429,1448,1546,1619,1671,1673,1675,2112,2117,2155,2173,2832,2999,3007,3024,3043,3044,3062,3066,3067,3068,3115,3116,3117,3118,3161,3162,3163,3164,3181,3211,3221,3222,3248,3269,3476,3530,3546,4129,4136,4224,4227,4242,4306,4848,5008,5013,5014,5056,5079,5088,5133,5241,5345,5383,5677,5714,5723,5727,5728,5741,5755,5798,5805,5856,5903,5924,6025,6738,6979,7169,7185,7223,7238,7255,7367,7547,7553,7568,7644,7654,7664,7673,7694,7712,7733,7744,7751,7761,7867,7887,7890,7895,7915,7921,7952,7973,8045,8076,8129,8270,8291,8304,8307,8308,8367,8375,8410,8492,8496,8517,8545,8590,8649,8664,8666,8746,8794,8838,8839,8841,8842,8843,8865,9025,9142,9157,9254,9255,9318,9329,9340,9351,9356,9426,9440,9466,9494,9553,9555,9557,9590,9619,9620,9633,9663,9667,9719,9807,9905,10065,10077,10251,10252,11313,11401,11555,11716,11722,12924,12973,12974,13015,13072,13087,13098,13138,13322,13458,13483,13517,13525,13580,13668,13670,13672,13678,13680,13750,13777,13832,13849,13884,14000,14103,14117,14164,14195,14241,14282,14286,14289,14298,14324,14341,14400,14447,14509,14557,14563,14666,14678,14715,14747,14768,14788,14842,14843,14851,14882,14910,14930,14963,15067,15163,15187,15261,15311,15553,15582,15591,15596,15604,15857,16105,16131,16172,16291,16295,16296,16336,16343,16381,16412,16452,16457,16473,16477,16500,16503,16512,16513,16523,16563,16637,16649,16667,16672,16673,16707,16718,16747,16759,16761,16799,16802,16811,16831,16838,16855,16862,16922,16948,17005,17019,17196,17296,17336,17350,17371,17383,17396,17415,17417,17425,17429,17431,17473,17478,17479,17480,17484,17512,17597,17736,17826,18329,18356,18369,18401,18402,18406,18409,18410,18436,18525,18587,18654,18719,18762,18775,18978,19029,19060,19156,19211,19245,19258,19265,19350,19351,19370,19448,19478,19491,19492,19520,19602,19632,19911,20036,20063,20309,20310,20393,20407,20412,20469,20477,20478,20479,20483,20484,20485,20486,20515,20557,20563,20590,20648,20650,20653,20746,20747,20749,20751,20752,20810,20841,20844,20852,20898,20926,20928,21120,21188,21236,21243,21252,21271,21272,21273,21274,21275,21280,21291,21295,21307,21318,21321,21338,21341,21350,21355,21445,21452,21465,21688,21965,22083,22088,22104,22117,22123,22136,22148,22274,22495,22554,22571,22576,22814,22819,22820,23076,23108]]],["+",[16,15,[[0,4,4,0,4,[[0,2,2,0,2],[46,2,2,2,4]]],[3,1,1,4,5,[[130,1,1,4,5]]],[13,1,1,5,6,[[376,1,1,5,6]]],[17,1,1,6,7,[[440,1,1,6,7]]],[18,1,1,7,8,[[540,1,1,7,8]]],[20,2,2,8,10,[[667,1,1,8,9],[668,1,1,9,10]]],[23,2,2,10,12,[[752,1,1,10,11],[782,1,1,11,12]]],[25,2,1,12,13,[[808,2,1,12,13]]],[31,2,2,13,15,[[892,2,2,13,15]]]],[19,29,1428,1448,4129,11401,12973,14842,17484,17512,19156,19911,20590,22571,22576]]],["Beasts",[1,1,[[18,1,1,0,1,[[625,1,1,0,1]]]],[16381]]],["alive",[30,28,[[0,6,6,0,6,[[42,3,3,0,3],[44,2,2,3,5],[45,1,1,5,6]]],[1,2,2,6,8,[[53,1,1,6,7],[71,1,1,7,8]]],[2,2,2,8,10,[[103,1,1,8,9],[105,1,1,9,10]]],[3,1,1,10,11,[[132,1,1,10,11]]],[4,3,3,11,14,[[156,1,1,11,12],[157,1,1,12,13],[183,1,1,13,14]]],[5,1,1,14,15,[[194,1,1,14,15]]],[8,1,1,15,16,[[250,1,1,15,16]]],[9,4,4,16,20,[[278,3,3,16,19],[284,1,1,19,20]]],[10,4,3,20,23,[[310,3,2,20,22],[311,1,1,22,23]]],[11,3,2,23,25,[[319,1,1,23,24],[322,2,1,24,25]]],[13,1,1,25,26,[[391,1,1,25,26]]],[19,1,1,26,27,[[628,1,1,26,27]]],[20,1,1,27,28,[[662,1,1,27,28]]]],[1297,1317,1318,1384,1386,1416,1619,2117,3115,3211,4227,5008,5056,5755,6025,7568,8304,8307,8308,8492,9426,9440,9466,9719,9807,11716,16412,17383]]],["appetite",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13832]]],["beast",[34,32,[[0,16,15,0,15,[[0,3,3,0,3],[1,2,2,3,5],[2,2,2,5,7],[6,2,2,7,9],[7,1,1,9,10],[8,4,3,10,13],[36,2,2,13,15]]],[1,1,1,15,16,[[72,1,1,15,16]]],[2,5,4,16,20,[[94,1,1,16,17],[100,2,1,17,18],[106,1,1,18,19],[114,1,1,19,20]]],[11,1,1,20,21,[[326,1,1,20,21]]],[13,1,1,21,22,[[391,1,1,21,22]]],[17,1,1,22,23,[[474,1,1,22,23]]],[18,2,2,23,25,[[527,1,1,23,24],[581,1,1,24,25]]],[22,2,2,25,27,[[713,1,1,25,26],[721,1,1,26,27]]],[25,4,4,27,31,[[815,1,1,27,28],[835,2,2,28,30],[840,1,1,30,31]]],[27,1,1,31,32,[[874,1,1,31,32]]]],[23,24,29,49,50,56,69,173,180,202,207,210,215,1103,1116,2173,2832,3044,3248,3476,9905,11722,13849,14678,15582,18329,18525,20752,21321,21341,21465,22274]]],["beasts",[40,38,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,4,4,1,5,[[100,2,2,1,3],[115,2,2,3,5]]],[3,1,1,5,6,[[151,1,1,5,6]]],[4,1,1,6,7,[[159,1,1,6,7]]],[8,1,1,7,8,[[252,1,1,7,8]]],[9,1,1,8,9,[[287,1,1,8,9]]],[17,3,3,9,12,[[440,1,1,9,10],[472,1,1,10,11],[475,1,1,11,12]]],[18,3,3,12,15,[[556,1,1,12,13],[581,2,2,13,15]]],[22,4,3,15,18,[[718,1,1,15,16],[724,1,1,16,17],[734,2,1,17,18]]],[23,3,3,18,21,[[756,1,1,18,19],[771,1,1,19,20],[772,1,1,20,21]]],[25,12,11,21,32,[[806,1,1,21,22],[815,2,1,22,23],[830,1,1,23,24],[832,2,2,24,26],[833,1,1,26,27],[834,1,1,27,28],[835,2,2,28,30],[839,1,1,30,31],[840,1,1,31,32]]],[26,1,1,32,33,[[857,1,1,32,33]]],[27,3,3,33,36,[[863,2,2,33,35],[865,1,1,35,36]]],[35,2,2,36,38,[[907,2,2,36,38]]]],[2155,2999,3024,3530,3546,4848,5133,7664,8590,12974,13777,13884,15187,15591,15596,18436,18587,18762,19258,19602,19632,20563,20746,21188,21236,21243,21252,21307,21318,21338,21445,21452,21965,22117,22123,22136,22819,22820]]],["company",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14930]]],["congregation",[2,2,[[18,2,2,0,2,[[545,1,1,0,1],[551,1,1,1,2]]]],[14910,15067]]],["creature",[6,6,[[25,6,6,0,6,[[802,3,3,0,3],[811,3,3,3,6]]]],[20484,20485,20486,20648,20650,20653]]],["creatures",[9,6,[[25,9,6,0,6,[[802,8,5,0,5],[804,1,1,5,6]]]],[20469,20477,20478,20479,20483,20515]]],["life",[140,134,[[0,21,19,0,19,[[1,2,2,0,2],[2,4,4,2,6],[5,1,1,6,7],[6,3,3,7,10],[17,2,2,10,12],[22,1,1,12,13],[24,2,2,13,15],[26,2,1,15,16],[41,2,2,16,18],[46,2,1,18,19]]],[1,3,3,19,22,[[55,3,3,19,22]]],[2,1,1,22,23,[[107,1,1,22,23]]],[4,11,9,23,32,[[156,1,1,23,24],[158,1,1,24,25],[168,1,1,25,26],[169,1,1,26,27],[180,2,1,27,28],[182,4,3,28,31],[184,1,1,31,32]]],[5,2,2,32,34,[[187,1,1,32,33],[190,1,1,33,34]]],[6,1,1,34,35,[[226,1,1,34,35]]],[8,4,4,35,39,[[236,1,1,35,36],[242,1,1,36,37],[253,1,1,37,38],[260,1,1,38,39]]],[9,1,1,39,40,[[281,1,1,39,40]]],[10,4,4,40,44,[[294,1,1,40,41],[301,1,1,41,42],[305,2,2,42,44]]],[11,4,4,44,48,[[316,2,2,44,46],[337,2,2,46,48]]],[17,11,11,48,59,[[438,1,1,48,49],[442,1,1,49,50],[444,1,1,50,51],[445,2,2,51,53],[459,1,1,53,54],[468,4,4,54,58],[471,1,1,58,59]]],[18,21,21,59,80,[[484,1,1,59,60],[493,1,1,60,61],[494,1,1,61,62],[498,1,1,62,63],[500,1,1,63,64],[503,1,1,64,65],[504,2,2,65,67],[507,1,1,67,68],[508,1,1,68,69],[511,1,1,69,70],[513,1,1,70,71],[519,1,1,71,72],[541,1,1,72,73],[543,1,1,73,74],[555,1,1,74,75],[565,1,1,75,76],[580,1,1,76,77],[605,1,1,77,78],[610,1,1,78,79],[620,1,1,79,80]]],[19,32,32,80,112,[[629,1,1,80,81],[630,3,3,81,84],[631,4,4,84,88],[632,1,1,88,89],[633,1,1,89,90],[635,1,1,90,91],[636,1,1,91,92],[637,3,3,92,95],[638,2,2,95,97],[639,1,1,97,98],[640,2,2,98,100],[641,2,2,100,102],[642,3,3,102,105],[643,2,2,105,107],[645,1,1,107,108],[646,1,1,108,109],[648,1,1,109,110],[649,1,1,110,111],[658,1,1,111,112]]],[20,10,8,112,120,[[660,2,2,112,114],[661,1,1,114,115],[663,2,2,115,117],[664,2,1,117,118],[666,1,1,118,119],[667,2,1,119,120]]],[22,4,4,120,124,[[716,3,3,120,123],[735,1,1,123,124]]],[23,3,3,124,127,[[765,1,1,124,125],[796,2,2,125,127]]],[24,2,2,127,129,[[799,2,2,127,129]]],[25,2,2,129,131,[[808,1,1,129,130],[834,1,1,130,131]]],[26,1,1,131,132,[[861,1,1,131,132]]],[31,1,1,132,133,[[890,1,1,132,133]]],[38,1,1,133,134,[[926,1,1,133,134]]]],[37,39,69,72,77,79,154,170,174,181,434,438,572,665,675,773,1267,1268,1429,1671,1673,1675,3269,5013,5088,5345,5383,5677,5723,5727,5728,5805,5856,5924,6979,7223,7367,7694,7890,8410,8865,9142,9254,9255,9619,9620,10251,10252,12924,13015,13072,13087,13098,13458,13668,13670,13672,13678,13750,14000,14103,14117,14195,14241,14282,14286,14289,14324,14341,14400,14447,14563,14851,14882,15163,15311,15553,16131,16172,16296,16452,16457,16473,16477,16500,16503,16512,16513,16523,16563,16637,16649,16667,16672,16673,16707,16718,16747,16759,16761,16799,16802,16811,16831,16838,16855,16862,16922,16948,17005,17019,17296,17336,17350,17371,17415,17417,17429,17473,17484,18402,18406,18410,18775,19448,20309,20310,20407,20412,20590,21295,22083,22554,23108]]],["lifetime",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8496]]],["live",[40,40,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,1,1,1,2,[[70,1,1,1,2]]],[2,2,2,2,4,[[105,2,2,2,4]]],[3,1,1,4,5,[[130,1,1,4,5]]],[4,5,5,5,10,[[156,1,1,5,6],[164,1,1,6,7],[182,1,1,7,8],[183,1,1,8,9],[184,1,1,9,10]]],[8,1,1,10,11,[[255,1,1,10,11]]],[9,2,2,11,13,[[278,1,1,11,12],[285,1,1,12,13]]],[10,1,1,13,14,[[298,1,1,13,14]]],[13,1,1,14,15,[[372,1,1,14,15]]],[18,3,3,15,18,[[540,1,1,15,16],[581,1,1,16,17],[623,1,1,17,18]]],[20,1,1,18,19,[[667,1,1,18,19]]],[22,1,1,19,20,[[727,1,1,19,20]]],[23,2,2,20,22,[[766,1,1,20,21],[790,1,1,21,22]]],[25,17,17,22,39,[[806,1,1,22,23],[815,3,3,23,26],[817,1,1,26,27],[818,2,2,27,29],[819,1,1,29,30],[821,3,3,30,33],[834,2,2,33,35],[835,1,1,35,36],[836,2,2,36,38],[848,1,1,38,39]]],[35,1,1,39,40,[[907,1,1,39,40]]]],[1361,2112,3221,3222,4136,5014,5241,5714,5741,5798,7744,8308,8545,9025,11313,14843,15604,16343,17478,18654,19478,20063,20557,20747,20749,20751,20810,20841,20844,20852,20898,20926,20928,21291,21307,21321,21350,21355,21688,22814]]],["lived",[5,5,[[0,2,2,0,2,[[24,2,2,0,2]]],[9,1,1,2,3,[[285,1,1,2,3]]],[10,1,1,3,4,[[302,1,1,3,4]]],[18,1,1,4,5,[[526,1,1,4,5]]]],[664,665,8517,9157,14666]]],["lively",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14509]]],["lives",[2,2,[[1,1,1,0,1,[[50,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]]],[1546,8045]]],["livest",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8270]]],["liveth",[66,58,[[0,1,1,0,1,[[8,1,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[8,17,15,3,18,[[236,1,1,3,4],[249,2,2,4,6],[252,1,1,6,7],[254,1,1,7,8],[255,4,3,8,11],[260,4,3,11,14],[261,2,2,14,16],[263,1,1,16,17],[264,1,1,17,18]]],[9,9,8,18,26,[[268,1,1,18,19],[270,1,1,19,20],[277,1,1,20,21],[278,1,1,21,22],[280,2,2,22,24],[281,2,1,24,25],[288,1,1,25,26]]],[10,9,9,26,35,[[291,1,1,26,27],[292,1,1,27,28],[293,1,1,28,29],[307,3,3,29,32],[308,2,2,32,34],[312,1,1,34,35]]],[11,11,7,35,42,[[314,6,3,35,38],[315,1,1,38,39],[316,2,1,39,40],[317,2,2,40,42]]],[13,1,1,42,43,[[384,1,1,42,43]]],[17,2,2,43,45,[[454,1,1,43,44],[462,1,1,44,45]]],[18,1,1,45,46,[[495,1,1,45,46]]],[23,8,8,46,54,[[748,1,1,46,47],[749,1,1,47,48],[756,1,1,48,49],[760,2,2,49,51],[767,2,2,51,53],[788,1,1,53,54]]],[25,1,1,54,55,[[848,1,1,54,55]]],[26,1,1,55,56,[[861,1,1,55,56]]],[27,1,1,56,57,[[865,1,1,56,57]]],[29,2,1,57,58,[[886,2,1,57,58]]]],[208,6738,7185,7238,7547,7553,7673,7712,7733,7751,7761,7867,7887,7895,7915,7921,7952,7973,8076,8129,8270,8291,8367,8375,8410,8649,8746,8794,8839,9318,9329,9340,9351,9356,9494,9553,9555,9557,9590,9633,9663,9667,11555,13322,13483,14164,19029,19060,19265,19350,19351,19491,19492,20036,21688,22088,22148,22495]]],["living",[78,73,[[0,10,10,0,10,[[0,2,2,0,2],[1,2,2,2,4],[2,1,1,4,5],[7,1,1,5,6],[8,4,4,6,10]]],[2,8,7,10,17,[[100,2,2,10,12],[103,6,5,12,17]]],[3,1,1,17,18,[[132,1,1,17,18]]],[4,1,1,18,19,[[157,1,1,18,19]]],[5,1,1,19,20,[[189,1,1,19,20]]],[7,1,1,20,21,[[233,1,1,20,21]]],[8,2,2,21,23,[[252,2,2,21,23]]],[10,7,5,23,28,[[293,7,5,23,28]]],[11,2,2,28,30,[[331,2,2,28,30]]],[17,4,4,30,34,[[463,2,2,30,32],[465,1,1,32,33],[468,1,1,33,34]]],[18,10,10,34,44,[[504,1,1,34,35],[519,1,1,35,36],[529,1,1,36,37],[533,1,1,37,38],[535,1,1,38,39],[546,1,1,39,40],[561,1,1,40,41],[593,1,1,41,42],[619,1,1,42,43],[620,1,1,43,44]]],[20,7,6,44,50,[[662,2,2,44,46],[664,1,1,46,47],[665,1,1,47,48],[667,3,2,48,50]]],[21,1,1,50,51,[[674,1,1,50,51]]],[22,8,7,51,58,[[682,1,1,51,52],[686,1,1,52,53],[715,2,2,53,55],[716,3,2,55,57],[731,1,1,57,58]]],[23,5,5,58,63,[[746,1,1,58,59],[754,1,1,59,60],[755,1,1,60,61],[761,1,1,61,62],[767,1,1,62,63]]],[24,1,1,63,64,[[799,1,1,63,64]]],[25,7,7,64,71,[[827,1,1,64,65],[833,6,6,65,71]]],[27,1,1,71,72,[[862,1,1,71,72]]],[37,1,1,72,73,[[924,1,1,72,73]]]],[20,23,37,49,75,204,215,217,220,221,3007,3043,3117,3118,3162,3163,3164,4242,5079,5903,7169,7644,7654,8838,8839,8841,8842,8843,10065,10077,13517,13525,13580,13680,14298,14557,14715,14768,14788,14963,15261,15857,16291,16295,17383,17396,17425,17431,17479,17480,17597,17736,17826,18356,18369,18401,18409,18719,18978,19211,19245,19370,19520,20393,21120,21271,21272,21273,21274,21275,21280,22104,23076]]],["maintenance",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17196]]],["multitude",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15067]]],["old",[1,1,[[0,1,1,0,1,[[22,1,1,0,1]]]],[572]]],["quick",[3,3,[[3,1,1,0,1,[[132,1,1,0,1]]],[18,2,2,1,3,[[532,1,1,1,2],[601,1,1,2,3]]]],[4224,14747,16105]]],["raw",[6,5,[[2,5,4,0,4,[[102,5,4,0,4]]],[8,1,1,4,5,[[237,1,1,4,5]]]],[3062,3066,3067,3068,7255]]],["running",[7,7,[[2,6,6,0,6,[[103,5,5,0,5],[104,1,1,5,6]]],[3,1,1,6,7,[[135,1,1,6,7]]]],[3116,3117,3161,3162,3163,3181,4306]]],["springing",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[711]]],["thing",[6,6,[[0,4,4,0,4,[[0,1,1,0,1],[5,1,1,1,2],[7,2,2,2,4]]],[17,1,1,4,5,[[447,1,1,4,5]]],[18,1,1,5,6,[[622,1,1,5,6]]]],[27,156,184,200,13138,16336]]],["troop",[2,2,[[9,2,2,0,2,[[289,2,2,0,2]]]],[8664,8666]]]]},{"k":"H2417","v":[["*",[7,7,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,6,6,1,7,[[851,1,1,1,2],[853,2,2,2,4],[855,2,2,4,6],[856,1,1,6,7]]]],[12161,21788,21854,21871,21925,21931,21945]]],["life",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12161]]],["lives",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21945]]],["liveth",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21871]]],["living",[4,4,[[26,4,4,0,4,[[851,1,1,0,1],[853,1,1,1,2],[855,2,2,2,4]]]],[21788,21854,21925,21931]]]]},{"k":"H2418","v":[["*",[6,6,[[26,6,6,0,6,[[851,1,1,0,1],[852,1,1,1,2],[854,2,2,2,4],[855,2,2,4,6]]]],[21762,21816,21884,21893,21911,21926]]],["+",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21893]]],["live",[5,5,[[26,5,5,0,5,[[851,1,1,0,1],[852,1,1,1,2],[854,1,1,2,3],[855,2,2,3,5]]]],[21762,21816,21884,21911,21926]]]]},{"k":"H2419","v":[["Hiel",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9317]]]]},{"k":"H2420","v":[["*",[17,17,[[3,1,1,0,1,[[128,1,1,0,1]]],[6,8,8,1,9,[[224,8,8,1,9]]],[10,1,1,9,10,[[300,1,1,9,10]]],[13,1,1,10,11,[[375,1,1,10,11]]],[18,2,2,11,13,[[526,1,1,11,12],[555,1,1,12,13]]],[19,1,1,13,14,[[628,1,1,13,14]]],[25,1,1,14,15,[[818,1,1,14,15]]],[26,1,1,15,16,[[857,1,1,15,16]]],[34,1,1,16,17,[[904,1,1,16,17]]]],[4067,6921,6922,6923,6924,6925,6926,6927,6928,9080,11365,14652,15115,16406,20827,21984,22754]]],["proverb",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22754]]],["questions",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9080,11365]]],["riddle",[9,9,[[6,8,8,0,8,[[224,8,8,0,8]]],[25,1,1,8,9,[[818,1,1,8,9]]]],[6921,6922,6923,6924,6925,6926,6927,6928,20827]]],["saying",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14652]]],["sayings",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[19,1,1,1,2,[[628,1,1,1,2]]]],[15115,16406]]],["sentences",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21984]]],["speeches",[1,1,[[3,1,1,0,1,[[128,1,1,0,1]]]],[4067]]]]},{"k":"H2421","v":[["*",[264,241,[[0,54,54,0,54,[[4,16,16,0,16],[5,2,2,16,18],[6,1,1,18,19],[8,1,1,19,20],[10,14,14,20,34],[11,2,2,34,36],[16,1,1,36,37],[18,4,4,37,41],[19,1,1,41,42],[26,1,1,42,43],[30,1,1,43,44],[41,2,2,44,46],[42,1,1,46,47],[44,2,2,47,49],[46,3,3,49,52],[49,2,2,52,54]]],[1,5,5,54,59,[[50,3,3,54,57],[68,1,1,57,58],[71,1,1,58,59]]],[2,2,2,59,61,[[114,2,2,59,61]]],[3,6,6,61,67,[[120,1,1,61,62],[130,1,1,62,63],[138,1,1,63,64],[140,1,1,64,65],[147,2,2,65,67]]],[4,14,13,67,80,[[156,2,2,67,69],[157,2,2,69,71],[158,1,1,71,72],[160,3,2,72,74],[168,1,1,74,75],[172,1,1,75,76],[182,2,2,76,78],[184,1,1,78,79],[185,1,1,79,80]]],[5,8,8,80,88,[[188,1,1,80,81],[191,1,1,81,82],[192,2,2,82,84],[195,3,3,84,87],[200,1,1,87,88]]],[6,3,3,88,91,[[218,1,1,88,89],[225,1,1,89,90],[231,1,1,90,91]]],[8,4,4,91,95,[[237,1,1,91,92],[245,1,1,92,93],[262,2,2,93,95]]],[9,5,4,95,99,[[267,1,1,95,96],[274,1,1,96,97],[278,1,1,97,98],[282,2,1,98,99]]],[10,8,8,99,107,[[291,4,4,99,103],[307,1,1,103,104],[308,1,1,104,105],[310,2,2,105,107]]],[11,22,17,107,124,[[313,1,1,107,108],[316,1,1,108,109],[317,1,1,109,110],[319,2,1,110,111],[320,10,6,111,117],[322,1,1,117,118],[323,1,1,118,119],[325,1,1,119,120],[326,1,1,120,121],[330,1,1,121,122],[332,2,2,122,124]]],[12,1,1,124,125,[[348,1,1,124,125]]],[13,2,2,125,127,[[389,1,1,125,126],[391,1,1,126,127]]],[15,5,5,127,132,[[414,1,1,127,128],[416,1,1,128,129],[417,1,1,129,130],[421,2,2,130,132]]],[16,1,1,132,133,[[429,1,1,132,133]]],[17,6,6,133,139,[[442,1,1,133,134],[449,1,1,134,135],[456,1,1,135,136],[468,1,1,136,137],[471,1,1,137,138],[477,1,1,138,139]]],[18,31,31,139,170,[[499,2,2,139,141],[507,1,1,141,142],[510,1,1,142,143],[518,1,1,143,144],[526,1,1,144,145],[546,1,1,145,146],[548,1,1,146,147],[549,1,1,147,148],[557,1,1,148,149],[562,1,1,149,150],[566,1,1,150,151],[595,1,1,151,152],[596,16,16,152,168],[615,1,1,168,169],[620,1,1,169,170]]],[19,4,4,170,174,[[631,1,1,170,171],[634,1,1,171,172],[636,1,1,172,173],[642,1,1,173,174]]],[20,4,4,174,178,[[664,2,2,174,176],[665,1,1,176,177],[669,1,1,177,178]]],[22,11,9,178,187,[[685,1,1,178,179],[704,2,2,179,181],[716,5,4,181,185],[733,1,1,185,186],[735,2,1,186,187]]],[23,9,8,187,195,[[765,1,1,187,188],[771,2,2,188,190],[779,1,1,190,191],[782,4,3,191,194],[793,1,1,194,195]]],[24,1,1,195,196,[[800,1,1,195,196]]],[25,47,35,196,231,[[804,3,2,196,198],[814,4,3,198,201],[817,2,1,201,202],[819,17,11,202,213],[821,4,4,213,217],[834,10,7,217,224],[838,6,6,224,230],[848,1,1,230,231]]],[27,3,2,231,233,[[867,2,1,231,232],[875,1,1,232,233]]],[29,3,3,233,236,[[883,3,3,233,236]]],[34,2,2,236,238,[[904,1,1,236,237],[905,1,1,237,238]]],[37,3,3,238,241,[[911,1,1,238,239],[920,1,1,239,240],[923,1,1,240,241]]]],[108,111,112,114,115,117,118,120,121,123,124,126,130,131,133,135,156,157,162,233,277,279,281,282,283,284,285,286,287,288,289,290,291,292,310,311,415,476,477,489,491,502,767,905,1254,1270,1298,1365,1385,1439,1445,1448,1526,1528,1549,1550,1554,2039,2131,3504,3505,3762,4146,4408,4469,4679,4682,5005,5037,5079,5086,5110,5138,5140,5362,5443,5724,5727,5797,5816,5882,5942,5966,5974,6052,6057,6058,6197,6738,6948,7116,7246,7442,7939,7941,8032,8211,8289,8442,8742,8748,8751,8756,9339,9346,9439,9440,9535,9610,9654,9711,9728,9732,9735,9736,9737,9741,9812,9841,9892,9913,10056,10099,10105,10681,11667,11729,12310,12361,12384,12517,12540,12773,13024,13195,13362,13654,13742,13938,14230,14233,14322,14385,14544,14657,14967,14996,15015,15216,15277,15374,15886,15915,15923,15935,15938,15948,15975,15986,15991,16005,16014,16042,16047,16052,16054,16057,16073,16238,16304,16494,16577,16644,16834,17420,17423,17441,17521,17803,18144,18149,18391,18399,18406,18411,18743,18780,19449,19608,19613,19830,19897,19912,19915,20138,20440,20520,20523,20726,20727,20730,20768,20858,20862,20866,20868,20870,20871,20872,20873,20876,20877,20881,20906,20908,20916,20920,21290,21291,21292,21293,21295,21296,21299,21400,21402,21403,21406,21407,21411,21688,22169,22289,22427,22429,22437,22752,22770,22883,23025,23062]]],["+",[43,32,[[0,2,2,0,2,[[18,1,1,0,1],[49,1,1,1,2]]],[1,3,3,2,5,[[50,2,2,2,4],[71,1,1,4,5]]],[3,2,2,5,7,[[138,1,1,5,6],[147,1,1,6,7]]],[5,3,3,7,10,[[188,1,1,7,8],[195,1,1,8,9],[200,1,1,9,10]]],[6,1,1,10,11,[[218,1,1,10,11]]],[10,2,2,11,13,[[308,1,1,11,12],[310,1,1,12,13]]],[11,5,3,13,16,[[320,5,3,13,16]]],[12,1,1,16,17,[[348,1,1,16,17]]],[15,2,2,17,19,[[416,1,1,17,18],[421,1,1,18,19]]],[17,1,1,19,20,[[471,1,1,19,20]]],[25,21,12,20,32,[[804,2,1,20,21],[814,2,2,21,23],[819,11,6,23,29],[834,6,3,29,32]]]],[476,1526,1549,1550,2131,4408,4679,5882,6057,6197,6738,9346,9439,9732,9737,9741,10681,12361,12517,13742,20523,20726,20727,20858,20866,20868,20870,20876,20877,21293,21295,21296]]],["Live",[2,1,[[25,2,1,0,1,[[817,2,1,0,1]]]],[20768]]],["Quicken",[2,2,[[18,2,2,0,2,[[596,1,1,0,1],[620,1,1,1,2]]]],[15986,16304]]],["alive",[19,19,[[0,4,4,0,4,[[5,2,2,0,2],[6,1,1,2,3],[11,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[3,1,1,5,6,[[147,1,1,5,6]]],[4,3,3,6,9,[[158,1,1,6,7],[172,1,1,7,8],[184,1,1,8,9]]],[6,1,1,9,10,[[231,1,1,9,10]]],[8,1,1,10,11,[[237,1,1,10,11]]],[9,1,1,11,12,[[274,1,1,11,12]]],[11,2,2,12,14,[[317,1,1,12,13],[319,1,1,13,14]]],[18,4,4,14,18,[[499,1,1,14,15],[507,1,1,15,16],[510,1,1,16,17],[518,1,1,17,18]]],[23,1,1,18,19,[[793,1,1,18,19]]]],[156,157,162,310,1554,4682,5110,5443,5797,7116,7246,8211,9654,9711,14233,14322,14385,14544,20138]]],["left",[1,1,[[8,1,1,0,1,[[262,1,1,0,1]]]],[7939]]],["life",[7,6,[[11,3,2,0,2,[[320,3,2,0,2]]],[17,1,1,2,3,[[468,1,1,2,3]]],[20,1,1,3,4,[[665,1,1,3,4]]],[25,2,2,4,6,[[804,1,1,4,5],[814,1,1,5,6]]]],[9728,9732,13654,17441,20520,20730]]],["live",[104,100,[[0,10,10,0,10,[[11,1,1,0,1],[16,1,1,1,2],[18,1,1,2,3],[19,1,1,3,4],[26,1,1,4,5],[30,1,1,5,6],[41,2,2,6,8],[42,1,1,8,9],[46,1,1,9,10]]],[1,1,1,10,11,[[68,1,1,10,11]]],[2,2,2,11,13,[[114,2,2,11,13]]],[3,2,2,13,15,[[120,1,1,13,14],[140,1,1,14,15]]],[4,10,9,15,24,[[156,2,2,15,17],[157,1,1,17,18],[160,3,2,18,20],[168,1,1,20,21],[182,2,2,21,23],[185,1,1,23,24]]],[5,3,3,24,27,[[192,1,1,24,25],[195,2,2,25,27]]],[9,1,1,27,28,[[267,1,1,27,28]]],[10,2,2,28,30,[[291,1,1,28,29],[310,1,1,29,30]]],[11,5,5,30,35,[[316,1,1,30,31],[319,1,1,31,32],[322,1,1,32,33],[330,1,1,33,34],[332,1,1,34,35]]],[15,3,3,35,38,[[414,1,1,35,36],[417,1,1,36,37],[421,1,1,37,38]]],[16,1,1,38,39,[[429,1,1,38,39]]],[17,3,3,39,42,[[442,1,1,39,40],[449,1,1,40,41],[456,1,1,41,42]]],[18,10,10,42,52,[[499,1,1,42,43],[526,1,1,43,44],[546,1,1,44,45],[549,1,1,45,46],[595,1,1,46,47],[596,5,5,47,52]]],[19,4,4,52,56,[[631,1,1,52,53],[634,1,1,53,54],[636,1,1,54,55],[642,1,1,55,56]]],[20,3,3,56,59,[[664,2,2,56,58],[669,1,1,58,59]]],[22,6,5,59,64,[[704,2,2,59,61],[716,3,2,61,63],[733,1,1,63,64]]],[23,8,7,64,71,[[765,1,1,64,65],[771,2,2,65,67],[779,1,1,67,68],[782,4,3,68,71]]],[24,1,1,71,72,[[800,1,1,71,72]]],[25,21,20,72,92,[[814,1,1,72,73],[819,6,5,73,78],[821,4,4,78,82],[834,4,4,82,86],[838,5,5,86,91],[848,1,1,91,92]]],[27,1,1,92,93,[[867,1,1,92,93]]],[29,3,3,93,96,[[883,3,3,93,96]]],[34,1,1,96,97,[[904,1,1,96,97]]],[37,3,3,97,100,[[911,1,1,97,98],[920,1,1,98,99],[923,1,1,99,100]]]],[311,415,477,502,767,905,1254,1270,1298,1439,2039,3504,3505,3762,4469,5005,5037,5086,5138,5140,5362,5724,5727,5816,5966,6052,6058,8032,8748,9440,9610,9711,9812,10056,10099,12310,12384,12540,12773,13024,13195,13362,14230,14657,14967,15015,15886,15915,15975,16014,16042,16073,16494,16577,16644,16834,17420,17423,17521,18144,18149,18391,18406,18743,19449,19608,19613,19830,19897,19912,19915,20440,20727,20862,20871,20872,20873,20881,20906,20908,20916,20920,21290,21291,21292,21299,21400,21402,21403,21406,21411,21688,22169,22427,22429,22437,22752,22883,23025,23062]]],["lived",[39,39,[[0,33,33,0,33,[[4,16,16,0,16],[8,1,1,16,17],[10,14,14,17,31],[46,1,1,31,32],[49,1,1,32,33]]],[3,1,1,33,34,[[130,1,1,33,34]]],[4,1,1,34,35,[[157,1,1,34,35]]],[11,1,1,35,36,[[326,1,1,35,36]]],[13,1,1,36,37,[[391,1,1,36,37]]],[17,1,1,37,38,[[477,1,1,37,38]]],[25,1,1,38,39,[[838,1,1,38,39]]]],[108,111,112,114,115,117,118,120,121,123,124,126,130,131,133,135,233,277,279,281,282,283,284,285,286,287,288,289,290,291,292,1448,1528,4146,5079,9913,11729,13938,21407]]],["lives",[2,2,[[0,2,2,0,2,[[44,1,1,0,1],[46,1,1,1,2]]]],[1365,1445]]],["liveth",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15374]]],["nourish",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17803]]],["preserve",[2,2,[[0,2,2,0,2,[[18,2,2,0,2]]]],[489,491]]],["quicken",[10,10,[[18,10,10,0,10,[[548,1,1,0,1],[557,1,1,1,2],[596,8,8,2,10]]]],[14996,15216,15923,15935,15938,16005,16047,16052,16054,16057]]],["quickened",[2,2,[[18,2,2,0,2,[[596,2,2,0,2]]]],[15948,15991]]],["recover",[4,4,[[11,3,3,0,3,[[313,1,1,0,1],[320,2,2,1,3]]],[22,1,1,3,4,[[716,1,1,3,4]]]],[9535,9735,9736,18411]]],["recovered",[2,2,[[11,1,1,0,1,[[332,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]]],[10105,18399]]],["revive",[7,6,[[18,2,2,0,2,[[562,1,1,0,1],[615,1,1,1,2]]],[22,2,1,2,3,[[735,2,1,2,3]]],[27,2,2,3,5,[[867,1,1,3,4],[875,1,1,4,5]]],[34,1,1,5,6,[[905,1,1,5,6]]]],[15277,16238,18780,22169,22289,22770]]],["revived",[4,4,[[0,1,1,0,1,[[44,1,1,0,1]]],[6,1,1,1,2,[[225,1,1,1,2]]],[10,1,1,2,3,[[307,1,1,2,3]]],[11,1,1,3,4,[[325,1,1,3,4]]]],[1385,6948,9339,9892]]],["save",[8,7,[[8,1,1,0,1,[[245,1,1,0,1]]],[9,2,1,1,2,[[282,2,1,1,2]]],[10,3,3,2,5,[[291,3,3,2,5]]],[11,1,1,5,6,[[323,1,1,5,6]]],[13,1,1,6,7,[[389,1,1,6,7]]]],[7442,8442,8742,8751,8756,9841,11667]]],["saved",[2,2,[[5,1,1,0,1,[[192,1,1,0,1]]],[8,1,1,1,2,[[262,1,1,1,2]]]],[5974,7941]]],["up",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8289]]],["whole",[1,1,[[5,1,1,0,1,[[191,1,1,0,1]]]],[5942]]]]},{"k":"H2422","v":[["lively",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1551]]]]},{"k":"H2423","v":[["*",[20,19,[[26,20,19,0,19,[[851,1,1,0,1],[853,8,8,1,9],[854,1,1,9,10],[856,10,9,10,19]]]],[21796,21849,21851,21852,21853,21858,21860,21862,21869,21895,21936,21938,21939,21940,21944,21945,21950,21952,21956]]],["beast",[6,6,[[26,6,6,0,6,[[856,6,6,0,6]]]],[21938,21939,21940,21944,21952,21956]]],["beast's",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21853]]],["beasts",[13,13,[[26,13,13,0,13,[[851,1,1,0,1],[853,7,7,1,8],[854,1,1,8,9],[856,4,4,9,13]]]],[21796,21849,21851,21852,21858,21860,21862,21869,21895,21936,21940,21945,21950]]]]},{"k":"H2424","v":[["living",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8557]]]]},{"k":"H2425","v":[["*",[15,15,[[0,4,4,0,4,[[2,1,1,0,1],[4,1,1,1,2],[10,2,2,2,4]]],[1,2,2,4,6,[[50,1,1,4,5],[82,1,1,5,6]]],[2,1,1,6,7,[[107,1,1,6,7]]],[3,2,2,7,9,[[137,2,2,7,9]]],[4,4,4,9,13,[[156,1,1,9,10],[157,1,1,10,11],[171,2,2,11,13]]],[15,1,1,13,14,[[418,1,1,13,14]]],[23,1,1,14,15,[[782,1,1,14,15]]]],[77,110,278,280,1548,2493,3256,4348,4349,5046,5077,5410,5411,12412,19897]]],["life",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12412]]],["live",[9,9,[[0,1,1,0,1,[[2,1,1,0,1]]],[1,2,2,1,3,[[50,1,1,1,2],[82,1,1,2,3]]],[2,1,1,3,4,[[107,1,1,3,4]]],[3,1,1,4,5,[[137,1,1,4,5]]],[4,3,3,5,8,[[156,1,1,5,6],[171,2,2,6,8]]],[23,1,1,8,9,[[782,1,1,8,9]]]],[77,1548,2493,3256,4348,5046,5410,5411,19897]]],["lived",[4,4,[[0,3,3,0,3,[[4,1,1,0,1],[10,2,2,1,3]]],[3,1,1,3,4,[[137,1,1,3,4]]]],[110,278,280,4349]]],["liveth",[1,1,[[4,1,1,0,1,[[157,1,1,0,1]]]],[5077]]]]},{"k":"H2426","v":[["*",[8,8,[[9,1,1,0,1,[[286,1,1,0,1]]],[10,1,1,1,2,[[311,1,1,1,2]]],[11,1,1,2,3,[[330,1,1,2,3]]],[18,1,1,3,4,[[599,1,1,3,4]]],[22,1,1,4,5,[[704,1,1,4,5]]],[24,1,1,5,6,[[798,1,1,5,6]]],[30,1,1,6,7,[[888,1,1,6,7]]],[33,1,1,7,8,[[902,1,1,7,8]]]],[8569,9474,10041,16096,18131,20340,22530,22720]]],["bulwarks",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18131]]],["host",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[30,1,1,1,2,[[888,1,1,1,2]]]],[10041,22530]]],["rampart",[2,2,[[24,1,1,0,1,[[798,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[20340,22720]]],["trench",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8569]]],["wall",[1,1,[[10,1,1,0,1,[[311,1,1,0,1]]]],[9474]]],["walls",[1,1,[[18,1,1,0,1,[[599,1,1,0,1]]]],[16096]]]]},{"k":"H2427","v":[["*",[7,7,[[1,1,1,0,1,[[64,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]],[18,1,1,2,3,[[525,1,1,2,3]]],[23,3,3,3,6,[[750,1,1,3,4],[766,1,1,4,5],[794,1,1,5,6]]],[32,1,1,6,7,[[896,1,1,6,7]]]],[1934,12988,14640,19113,19477,20209,22629]]],["pain",[3,3,[[18,1,1,0,1,[[525,1,1,0,1]]],[23,2,2,1,3,[[750,1,1,1,2],[766,1,1,2,3]]]],[14640,19113,19477]]],["pangs",[2,2,[[23,1,1,0,1,[[794,1,1,0,1]]],[32,1,1,1,2,[[896,1,1,1,2]]]],[20209,22629]]],["sorrow",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]]],[1934,12988]]]]},{"k":"H2428","v":[["*",[244,229,[[0,2,2,0,2,[[33,1,1,0,1],[46,1,1,1,2]]],[1,7,7,2,9,[[63,4,4,2,6],[64,1,1,6,7],[67,2,2,7,9]]],[3,3,3,9,12,[[140,1,1,9,10],[147,2,2,10,12]]],[4,5,5,12,17,[[155,1,1,12,13],[160,2,2,13,15],[163,1,1,15,16],[185,1,1,16,17]]],[5,4,4,17,21,[[187,1,1,17,18],[192,1,1,18,19],[194,1,1,19,20],[196,1,1,20,21]]],[6,7,7,21,28,[[213,1,1,21,22],[216,1,1,22,23],[221,1,1,23,24],[228,1,1,24,25],[230,2,2,25,27],[231,1,1,27,28]]],[7,3,3,28,31,[[233,1,1,28,29],[234,1,1,29,30],[235,1,1,30,31]]],[8,9,9,31,40,[[237,1,1,31,32],[244,1,1,32,33],[245,1,1,33,34],[249,2,2,34,36],[251,1,1,36,37],[252,1,1,37,38],[253,1,1,38,39],[266,1,1,39,40]]],[9,13,11,40,51,[[268,1,1,40,41],[274,1,1,41,42],[277,1,1,42,43],[279,1,1,43,44],[283,2,1,44,45],[288,2,2,45,47],[289,1,1,47,48],[290,4,3,48,51]]],[10,9,8,51,59,[[291,2,2,51,53],[300,1,1,53,54],[301,1,1,54,55],[305,1,1,55,56],[310,4,3,56,59]]],[11,16,15,59,74,[[314,1,1,59,60],[317,1,1,60,61],[318,2,2,61,63],[319,1,1,63,64],[321,1,1,64,65],[323,1,1,65,66],[327,1,1,66,67],[336,2,2,67,69],[337,6,5,69,74]]],[12,28,28,74,102,[[342,2,2,74,76],[344,6,6,76,82],[345,1,1,82,83],[346,1,1,83,84],[347,1,1,84,85],[348,2,2,85,87],[349,5,5,87,92],[355,1,1,92,93],[357,1,1,93,94],[363,7,7,94,101],[365,1,1,101,102]]],[13,27,23,102,125,[[375,1,1,102,103],[379,2,1,103,104],[380,3,2,104,106],[382,3,3,106,109],[383,5,5,109,114],[389,1,1,114,115],[390,3,2,115,117],[391,1,1,117,118],[392,5,4,118,122],[394,1,1,122,123],[398,1,1,123,124],[399,1,1,124,125]]],[14,1,1,125,126,[[410,1,1,125,126]]],[15,4,4,126,130,[[414,1,1,126,127],[416,1,1,127,128],[423,2,2,128,130]]],[16,2,2,130,132,[[426,1,1,130,131],[433,1,1,131,132]]],[17,6,6,132,138,[[440,1,1,132,133],[450,1,1,133,134],[455,2,2,134,136],[456,1,1,136,137],[466,1,1,137,138]]],[18,18,17,138,155,[[495,2,2,138,140],[510,2,2,140,142],[526,2,2,142,144],[536,1,1,144,145],[537,1,1,145,146],[539,1,1,146,147],[550,1,1,147,148],[553,1,1,148,149],[561,2,1,149,150],[585,1,1,150,151],[587,1,1,151,152],[595,2,2,152,154],[613,1,1,154,155]]],[19,5,5,155,160,[[639,1,1,155,156],[640,1,1,156,157],[658,3,3,157,160]]],[20,2,2,160,162,[[668,1,1,160,161],[670,1,1,161,162]]],[22,9,9,162,171,[[683,1,1,162,163],[686,1,1,163,164],[688,1,1,164,165],[708,1,1,165,166],[714,1,1,166,167],[721,1,1,167,168],[738,2,2,168,170],[739,1,1,170,171]]],[23,32,29,171,200,[[759,1,1,171,172],[761,1,1,172,173],[776,1,1,173,174],[778,3,3,174,177],[779,2,1,177,178],[781,5,4,178,182],[782,1,1,182,183],[783,2,2,183,185],[784,2,2,185,187],[785,3,3,187,190],[786,2,2,190,192],[787,2,2,192,194],[790,2,2,194,196],[792,1,1,196,197],[796,4,3,197,200]]],[25,14,12,200,212,[[818,1,1,200,201],[827,1,1,201,202],[828,2,2,202,204],[829,3,2,204,206],[830,3,2,206,208],[833,1,1,208,209],[838,1,1,209,210],[839,2,2,210,212]]],[26,6,5,212,217,[[860,6,5,212,217]]],[28,3,3,217,220,[[877,3,3,217,220]]],[30,2,2,220,222,[[888,2,2,220,222]]],[32,1,1,222,223,[[896,1,1,222,223]]],[33,1,1,223,224,[[901,1,1,223,224]]],[34,1,1,224,225,[[905,1,1,224,225]]],[35,1,1,225,226,[[906,1,1,225,226]]],[37,3,3,226,229,[[914,1,1,226,227],[919,1,1,227,228],[924,1,1,228,229]]]],[1009,1426,1893,1898,1906,1917,1924,2020,2024,4464,4673,4678,4993,5154,5155,5212,5821,5865,5951,6005,6071,6597,6666,6830,6995,7098,7100,7112,7150,7183,7201,7244,7392,7444,7556,7560,7613,7638,7693,8021,8056,8218,8275,8345,8459,8635,8642,8673,8694,8696,8701,8759,8769,9081,9136,9269,9409,9427,9433,9567,9648,9688,9689,9713,9761,9844,9945,10216,10218,10223,10227,10232,10245,10248,10446,10452,10537,10540,10542,10544,10546,10575,10615,10628,10671,10695,10699,10728,10741,10745,10748,10750,10899,10927,11083,11084,11085,11086,11107,11108,11109,11144,11365,11456,11483,11484,11513,11516,11517,11525,11536,11537,11539,11540,11670,11700,11701,11710,11743,11744,11745,11749,11770,11896,11922,12223,12316,12361,12594,12602,12705,12828,12956,13232,13341,13344,13362,13613,14150,14157,14382,14383,14654,14658,14801,14819,14837,15032,15086,15266,15755,15789,15884,15885,16211,16723,16769,17287,17294,17313,17503,17526,17761,17811,17864,18223,18332,18522,18826,18832,18849,19328,19360,19733,19802,19808,19822,19834,19879,19881,19884,19885,19898,19924,19928,19948,19954,19968,19970,19973,19976,19983,20001,20002,20047,20067,20094,20280,20284,20290,20842,21112,21131,21132,21161,21162,21201,21202,21279,21407,21429,21440,22043,22046,22049,22061,22062,22322,22333,22336,22521,22523,22633,22702,22787,22800,22928,23003,23082]]],["+",[17,17,[[4,1,1,0,1,[[155,1,1,0,1]]],[6,1,1,1,2,[[231,1,1,1,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[9,3,3,3,6,[[268,1,1,3,4],[279,1,1,4,5],[283,1,1,5,6]]],[10,1,1,6,7,[[310,1,1,6,7]]],[11,1,1,7,8,[[314,1,1,7,8]]],[12,5,5,8,13,[[342,1,1,8,9],[346,1,1,9,10],[363,3,3,10,13]]],[13,3,3,13,16,[[392,2,2,13,15],[394,1,1,15,16]]],[18,1,1,16,17,[[561,1,1,16,17]]]],[4993,7112,7693,8056,8345,8459,9409,9567,10446,10628,11084,11086,11107,11745,11749,11770,15266]]],["able",[3,3,[[1,2,2,0,2,[[67,2,2,0,2]]],[12,1,1,2,3,[[363,1,1,2,3]]]],[2020,2024,11085]]],["activity",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1426]]],["armies",[4,4,[[11,2,2,0,2,[[337,2,2,0,2]]],[12,1,1,2,3,[[348,1,1,2,3]]],[13,1,1,3,4,[[382,1,1,3,4]]]],[10245,10248,10699,11513]]],["army",[52,45,[[1,1,1,0,1,[[63,1,1,0,1]]],[4,1,1,1,2,[[163,1,1,1,2]]],[10,3,2,2,4,[[310,3,2,2,4]]],[11,3,2,4,6,[[337,3,2,4,6]]],[13,3,3,6,9,[[379,1,1,6,7],[380,1,1,7,8],[390,1,1,8,9]]],[15,2,2,9,11,[[414,1,1,9,10],[416,1,1,10,11]]],[22,2,2,11,13,[[714,1,1,11,12],[721,1,1,12,13]]],[23,20,17,13,30,[[776,1,1,13,14],[778,3,3,14,17],[779,2,1,17,18],[781,5,4,18,22],[782,1,1,22,23],[783,2,2,23,25],[790,2,2,25,27],[796,4,3,27,30]]],[25,10,9,30,39,[[818,1,1,30,31],[828,2,2,31,33],[830,3,2,33,35],[833,1,1,35,36],[838,1,1,36,37],[839,2,2,37,39]]],[26,5,4,39,43,[[860,5,4,39,43]]],[28,2,2,43,45,[[877,2,2,43,45]]]],[1898,5212,9427,9433,10227,10232,11456,11483,11701,12316,12361,18332,18522,19733,19802,19808,19822,19834,19879,19881,19884,19885,19898,19924,19928,20047,20067,20280,20284,20290,20842,21131,21132,21201,21202,21279,21407,21429,21440,22043,22049,22061,22062,22322,22336]]],["company",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11365]]],["forces",[14,14,[[13,1,1,0,1,[[383,1,1,0,1]]],[22,2,2,1,3,[[738,2,2,1,3]]],[23,9,9,3,12,[[784,2,2,3,5],[785,3,3,5,8],[786,2,2,8,10],[787,2,2,10,12]]],[26,1,1,12,13,[[860,1,1,12,13]]],[30,1,1,13,14,[[888,1,1,13,14]]]],[11525,18826,18832,19948,19954,19968,19970,19973,19976,19983,20001,20002,22046,22521]]],["goods",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]]],[4673,22800]]],["host",[27,26,[[1,4,4,0,4,[[63,3,3,0,3],[64,1,1,3,4]]],[3,1,1,4,5,[[147,1,1,4,5]]],[8,2,2,5,7,[[249,1,1,5,6],[252,1,1,6,7]]],[9,4,3,7,10,[[274,1,1,7,8],[290,3,2,8,10]]],[11,6,6,10,16,[[318,2,2,10,12],[319,1,1,12,13],[321,1,1,13,14],[323,1,1,14,15],[337,1,1,15,16]]],[12,1,1,16,17,[[355,1,1,16,17]]],[13,7,7,17,24,[[380,1,1,17,18],[382,2,2,18,20],[389,1,1,20,21],[390,2,2,21,23],[392,1,1,23,24]]],[18,2,2,24,26,[[510,1,1,24,25],[613,1,1,25,26]]]],[1893,1906,1917,1924,4678,7556,7638,8218,8694,8696,9688,9689,9713,9761,9844,10223,10899,11484,11516,11517,11670,11700,11701,11743,14382,16211]]],["hosts",[1,1,[[10,1,1,0,1,[[305,1,1,0,1]]]],[9269]]],["man",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7613]]],["men",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7444]]],["might",[6,6,[[11,1,1,0,1,[[336,1,1,0,1]]],[12,3,3,1,4,[[344,2,2,1,3],[349,1,1,3,4]]],[18,1,1,4,5,[[553,1,1,4,5]]],[37,1,1,5,6,[[914,1,1,5,6]]]],[10218,10537,10540,10728,15086,22928]]],["mighty",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11745]]],["power",[9,9,[[8,1,1,0,1,[[244,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[12,1,1,2,3,[[357,1,1,2,3]]],[16,2,2,3,5,[[426,1,1,3,4],[433,1,1,4,5]]],[17,1,1,5,6,[[456,1,1,5,6]]],[18,2,2,6,8,[[536,1,1,6,7],[587,1,1,7,8]]],[37,1,1,8,9,[[919,1,1,8,9]]]],[7392,8635,10927,12705,12828,13362,14801,15789,23003]]],["riches",[11,10,[[17,1,1,0,1,[[455,1,1,0,1]]],[18,2,2,1,3,[[539,1,1,1,2],[550,1,1,2,3]]],[22,4,4,3,7,[[686,1,1,3,4],[688,1,1,4,5],[708,1,1,5,6],[739,1,1,6,7]]],[25,4,3,7,10,[[827,1,1,7,8],[829,3,2,8,10]]]],[13341,14837,15032,17811,17864,18223,18849,21112,21161,21162]]],["soldiers",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12223]]],["strength",[11,11,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,4,4,2,6,[[495,2,2,2,4],[510,1,1,4,5],[561,1,1,5,6]]],[19,1,1,6,7,[[658,1,1,6,7]]],[20,1,1,7,8,[[668,1,1,7,8]]],[22,1,1,8,9,[[683,1,1,8,9]]],[28,1,1,9,10,[[877,1,1,9,10]]],[34,1,1,10,11,[[905,1,1,10,11]]]],[7244,8642,14150,14157,14383,15266,17287,17503,17761,22333,22787]]],["strong",[2,2,[[20,1,1,0,1,[[670,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[17526,20094]]],["substance",[8,8,[[4,1,1,0,1,[[185,1,1,0,1]]],[17,3,3,1,4,[[440,1,1,1,2],[450,1,1,2,3],[455,1,1,3,4]]],[23,2,2,4,6,[[759,1,1,4,5],[761,1,1,5,6]]],[30,1,1,6,7,[[888,1,1,6,7]]],[32,1,1,7,8,[[896,1,1,7,8]]]],[5821,12956,13232,13344,19328,19360,22523,22633]]],["train",[1,1,[[10,1,1,0,1,[[300,1,1,0,1]]]],[9081]]],["valiant",[12,12,[[8,2,2,0,2,[[249,1,1,0,1],[266,1,1,1,2]]],[9,4,4,2,6,[[277,1,1,2,3],[283,1,1,3,4],[289,1,1,4,5],[290,1,1,5,6]]],[10,1,1,6,7,[[291,1,1,6,7]]],[12,3,3,7,10,[[347,1,1,7,8],[348,1,1,8,9],[365,1,1,9,10]]],[15,1,1,10,11,[[423,1,1,10,11]]],[33,1,1,11,12,[[901,1,1,11,12]]]],[7560,8021,8275,8459,8673,8701,8759,10671,10695,11144,12594,22702]]],["valiantly",[5,5,[[3,1,1,0,1,[[140,1,1,0,1]]],[18,4,4,1,5,[[537,1,1,1,2],[585,1,1,2,3],[595,2,2,3,5]]]],[4464,14819,15755,15884,15885]]],["valour",[36,36,[[5,4,4,0,4,[[187,1,1,0,1],[192,1,1,1,2],[194,1,1,2,3],[196,1,1,3,4]]],[6,6,6,4,10,[[213,1,1,4,5],[216,1,1,5,6],[221,1,1,6,7],[228,1,1,7,8],[230,2,2,8,10]]],[10,1,1,10,11,[[301,1,1,10,11]]],[11,2,2,11,13,[[317,1,1,11,12],[336,1,1,12,13]]],[12,13,13,13,26,[[342,1,1,13,14],[344,4,4,14,18],[345,1,1,18,19],[349,4,4,19,23],[363,3,3,23,26]]],[13,9,9,26,35,[[379,1,1,26,27],[380,1,1,27,28],[383,4,4,28,32],[391,1,1,32,33],[392,1,1,33,34],[398,1,1,34,35]]],[15,1,1,35,36,[[423,1,1,35,36]]]],[5865,5951,6005,6071,6597,6666,6830,6995,7098,7100,9136,9648,10216,10452,10542,10544,10546,10575,10615,10741,10745,10748,10750,11083,11108,11109,11456,11483,11536,11537,11539,11540,11710,11744,11896,12602]]],["virtuous",[3,3,[[7,1,1,0,1,[[234,1,1,0,1]]],[19,2,2,1,3,[[639,1,1,1,2],[658,1,1,2,3]]]],[7183,16723,17294]]],["virtuously",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17313]]],["war",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11922]]],["wealth",[10,10,[[0,1,1,0,1,[[33,1,1,0,1]]],[4,2,2,1,3,[[160,2,2,1,3]]],[7,1,1,3,4,[[233,1,1,3,4]]],[11,1,1,4,5,[[327,1,1,4,5]]],[17,1,1,5,6,[[466,1,1,5,6]]],[18,2,2,6,8,[[526,2,2,6,8]]],[19,1,1,8,9,[[640,1,1,8,9]]],[37,1,1,9,10,[[924,1,1,9,10]]]],[1009,5154,5155,7150,9945,13613,14654,14658,16769,23082]]],["worthily",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7201]]],["worthy",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8769]]]]},{"k":"H2429","v":[["*",[7,6,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,6,5,1,6,[[852,3,2,1,3],[853,2,2,3,5],[854,1,1,5,6]]]],[12133,21811,21827,21851,21872,21881]]],["+",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21827]]],["aloud",[3,3,[[26,3,3,0,3,[[852,1,1,0,1],[853,1,1,1,2],[854,1,1,2,3]]]],[21811,21851,21881]]],["army",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[853,1,1,1,2]]]],[21827,21872]]],["power",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12133]]]]},{"k":"H2430","v":[["bulwarks",[1,1,[[18,1,1,0,1,[[525,1,1,0,1]]]],[14647]]]]},{"k":"H2431","v":[["Helam",[2,2,[[9,2,2,0,2,[[276,2,2,0,2]]]],[8256,8257]]]]},{"k":"H2432","v":[["Hilen",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10512]]]]},{"k":"H2433","v":[["comely",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13900]]]]},{"k":"H2434","v":[["wall",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20718]]]]},{"k":"H2435","v":[["*",[25,24,[[10,2,2,0,2,[[296,2,2,0,2]]],[11,1,1,2,3,[[328,1,1,2,3]]],[12,1,1,3,4,[[363,1,1,3,4]]],[13,1,1,4,5,[[399,1,1,4,5]]],[15,1,1,5,6,[[423,1,1,5,6]]],[16,1,1,6,7,[[431,1,1,6,7]]],[25,18,17,7,24,[[811,1,1,7,8],[841,5,5,8,13],[842,1,1,13,14],[843,6,6,14,20],[845,3,2,20,22],[847,2,2,22,24]]]],[8925,8926,9981,11106,11922,12604,12797,20638,21494,21497,21508,21511,21514,21543,21553,21555,21559,21560,21561,21566,21600,21618,21675,21676]]],["+",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21561]]],["outer",[1,1,[[25,1,1,0,1,[[811,1,1,0,1]]]],[20638]]],["outward",[7,7,[[12,1,1,0,1,[[363,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]],[16,1,1,2,3,[[431,1,1,2,3]]],[25,4,4,3,7,[[841,3,3,3,6],[845,1,1,6,7]]]],[11106,12604,12797,21494,21497,21511,21600]]],["utter",[11,10,[[25,11,10,0,10,[[841,2,2,0,2],[843,5,5,2,7],[845,2,1,7,8],[847,2,2,8,10]]]],[21508,21514,21553,21555,21559,21560,21566,21618,21675,21676]]],["without",[5,5,[[10,2,2,0,2,[[296,2,2,0,2]]],[11,1,1,2,3,[[328,1,1,2,3]]],[13,1,1,3,4,[[399,1,1,3,4]]],[25,1,1,4,5,[[842,1,1,4,5]]]],[8925,8926,9981,11922,21543]]]]},{"k":"H2436","v":[["*",[38,34,[[0,1,1,0,1,[[15,1,1,0,1]]],[1,5,2,1,3,[[53,5,2,1,3]]],[3,1,1,3,4,[[127,1,1,3,4]]],[4,3,3,4,7,[[165,1,1,4,5],[180,2,2,5,7]]],[7,1,1,7,8,[[235,1,1,7,8]]],[9,2,2,8,10,[[278,2,2,8,10]]],[10,5,4,10,14,[[291,1,1,10,11],[293,2,1,11,12],[307,1,1,12,13],[312,1,1,13,14]]],[17,1,1,14,15,[[454,1,1,14,15]]],[18,4,4,15,19,[[512,1,1,15,16],[551,1,1,16,17],[556,1,1,17,18],[566,1,1,18,19]]],[19,5,5,19,24,[[632,1,1,19,20],[633,1,1,20,21],[643,1,1,21,22],[644,1,1,22,23],[648,1,1,23,24]]],[20,1,1,24,25,[[665,1,1,24,25]]],[22,3,3,25,28,[[718,1,1,25,26],[743,2,2,26,28]]],[23,1,1,28,29,[[776,1,1,28,29]]],[24,1,1,29,30,[[798,1,1,29,30]]],[25,3,3,30,33,[[844,3,3,30,33]]],[32,1,1,33,34,[[899,1,1,33,34]]]],[386,1607,1608,4036,5278,5665,5667,7206,8289,8294,8719,8836,9336,9515,13324,14423,15059,15197,15376,16537,16567,16873,16896,16998,17438,18431,18903,18904,19749,20344,21585,21586,21589,22669]]],["+",[4,4,[[1,1,1,0,1,[[53,1,1,0,1]]],[10,1,1,1,2,[[307,1,1,1,2]]],[19,1,1,2,3,[[644,1,1,2,3]]],[25,1,1,3,4,[[844,1,1,3,4]]]],[1608,9336,16896,21586]]],["bosom",[29,26,[[0,1,1,0,1,[[15,1,1,0,1]]],[1,4,2,1,3,[[53,4,2,1,3]]],[3,1,1,3,4,[[127,1,1,3,4]]],[4,3,3,4,7,[[165,1,1,4,5],[180,2,2,5,7]]],[7,1,1,7,8,[[235,1,1,7,8]]],[9,2,2,8,10,[[278,2,2,8,10]]],[10,3,2,10,12,[[291,1,1,10,11],[293,2,1,11,12]]],[18,4,4,12,16,[[512,1,1,12,13],[551,1,1,13,14],[556,1,1,14,15],[566,1,1,15,16]]],[19,3,3,16,19,[[632,1,1,16,17],[633,1,1,17,18],[648,1,1,18,19]]],[20,1,1,19,20,[[665,1,1,19,20]]],[22,3,3,20,23,[[718,1,1,20,21],[743,2,2,21,23]]],[23,1,1,23,24,[[776,1,1,23,24]]],[24,1,1,24,25,[[798,1,1,24,25]]],[32,1,1,25,26,[[899,1,1,25,26]]]],[386,1607,1608,4036,5278,5665,5667,7206,8289,8294,8719,8836,14423,15059,15197,15376,16537,16567,16998,17438,18431,18903,18904,19749,20344,22669]]],["bottom",[2,2,[[25,2,2,0,2,[[844,2,2,0,2]]]],[21585,21589]]],["lap",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16873]]],["midst",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9515]]],["within",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13324]]]]},{"k":"H2437","v":[["Hirah",[2,2,[[0,2,2,0,2,[[37,2,2,0,2]]]],[1120,1131]]]]},{"k":"H2438","v":[["*",[25,21,[[9,1,1,0,1,[[271,1,1,0,1]]],[10,21,17,1,18,[[295,10,8,1,9],[297,4,3,9,12],[299,5,4,12,16],[300,2,2,16,18]]],[12,1,1,18,19,[[351,1,1,18,19]]],[13,2,2,19,21,[[374,1,1,19,20],[375,1,1,20,21]]]],[8143,8879,8880,8885,8886,8888,8889,8890,8896,8947,8974,8979,9062,9063,9065,9078,9090,9101,10775,11348,11374]]],["Hiram",[22,18,[[9,1,1,0,1,[[271,1,1,0,1]]],[10,20,16,1,17,[[295,9,7,1,8],[297,4,3,8,11],[299,5,4,11,15],[300,2,2,15,17]]],[12,1,1,17,18,[[351,1,1,17,18]]]],[8143,8879,8880,8885,8886,8888,8889,8890,8947,8974,8979,9062,9063,9065,9078,9090,9101,10775]]],["Hiram's",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8896]]],["Huram",[2,2,[[13,2,2,0,2,[[374,1,1,0,1],[375,1,1,1,2]]]],[11348,11374]]]]},{"k":"H2439","v":[["haste",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14988]]]]},{"k":"H2440","v":[["soon",[1,1,[[18,1,1,0,1,[[567,1,1,0,1]]]],[15388]]]]},{"k":"H2441","v":[["*",[18,18,[[17,7,7,0,7,[[441,1,1,0,1],[447,1,1,1,2],[455,1,1,2,3],[464,1,1,3,4],[466,1,1,4,5],[468,1,1,5,6],[469,1,1,6,7]]],[18,2,2,7,9,[[596,1,1,7,8],[614,1,1,8,9]]],[19,3,3,9,12,[[632,1,1,9,10],[635,1,1,10,11],[651,1,1,11,12]]],[21,3,3,12,15,[[672,1,1,12,13],[675,1,1,13,14],[677,1,1,14,15]]],[24,1,1,15,16,[[800,1,1,15,16]]],[25,1,1,16,17,[[804,1,1,16,17]]],[27,1,1,17,18,[[869,1,1,17,18]]]],[13008,13139,13339,13542,13618,13652,13686,16001,16228,16520,16609,17092,17557,17614,17636,20424,20528,22195]]],["mouth",[14,14,[[17,6,6,0,6,[[447,1,1,0,1],[455,1,1,1,2],[464,1,1,2,3],[466,1,1,3,4],[468,1,1,4,5],[469,1,1,5,6]]],[18,1,1,6,7,[[614,1,1,6,7]]],[19,2,2,7,9,[[632,1,1,7,8],[635,1,1,8,9]]],[21,2,2,9,11,[[675,1,1,9,10],[677,1,1,10,11]]],[24,1,1,11,12,[[800,1,1,11,12]]],[25,1,1,12,13,[[804,1,1,12,13]]],[27,1,1,13,14,[[869,1,1,13,14]]]],[13139,13339,13542,13618,13652,13686,16228,16520,16609,17614,17636,20424,20528,22195]]],["taste",[4,4,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[19,1,1,2,3,[[651,1,1,2,3]]],[21,1,1,3,4,[[672,1,1,3,4]]]],[13008,16001,17092,17557]]]]},{"k":"H2442","v":[["*",[14,13,[[11,2,2,0,2,[[319,1,1,0,1],[321,1,1,1,2]]],[17,2,2,2,4,[[438,1,1,2,3],[467,1,1,3,4]]],[18,2,2,4,6,[[510,1,1,4,5],[583,1,1,5,6]]],[22,4,3,6,9,[[686,1,1,6,7],[708,2,1,7,8],[742,1,1,8,9]]],[26,1,1,9,10,[[861,1,1,9,10]]],[27,1,1,10,11,[[867,1,1,10,11]]],[34,1,1,11,12,[[904,1,1,11,12]]],[35,1,1,12,13,[[908,1,1,12,13]]]],[9716,9759,12925,13632,14386,15664,17824,18235,18889,22093,22176,22751,22828]]],["long",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12925]]],["tarry",[2,2,[[11,2,2,0,2,[[319,1,1,0,1],[321,1,1,1,2]]]],[9716,9759]]],["wait",[6,5,[[22,3,2,0,2,[[686,1,1,0,1],[708,2,1,1,2]]],[27,1,1,2,3,[[867,1,1,2,3]]],[34,1,1,3,4,[[904,1,1,3,4]]],[35,1,1,4,5,[[908,1,1,4,5]]]],[17824,18235,22176,22751,22828]]],["waited",[2,2,[[17,1,1,0,1,[[467,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]]],[13632,15664]]],["waiteth",[3,3,[[18,1,1,0,1,[[510,1,1,0,1]]],[22,1,1,1,2,[[742,1,1,1,2]]],[26,1,1,2,3,[[861,1,1,2,3]]]],[14386,18889,22093]]]]},{"k":"H2443","v":[["*",[3,3,[[17,1,1,0,1,[[476,1,1,0,1]]],[22,1,1,1,2,[[697,1,1,1,2]]],[34,1,1,2,3,[[903,1,1,2,3]]]],[13889,18012,22746]]],["angle",[2,2,[[22,1,1,0,1,[[697,1,1,0,1]]],[34,1,1,1,2,[[903,1,1,1,2]]]],[18012,22746]]],["hook",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13889]]]]},{"k":"H2444","v":[["Hachilah",[3,3,[[8,3,3,0,3,[[258,1,1,0,1],[261,2,2,1,3]]]],[7829,7906,7908]]]]},{"k":"H2445","v":[["wise",[14,13,[[26,14,13,0,13,[[851,9,8,0,8],[853,2,2,8,10],[854,3,3,10,13]]]],[21770,21771,21772,21776,21779,21782,21785,21806,21843,21855,21881,21882,21889]]]]},{"k":"H2446","v":[["Hachaliah",[2,2,[[15,2,2,0,2,[[413,1,1,0,1],[422,1,1,1,2]]]],[12297,12550]]]]},{"k":"H2447","v":[["red",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1485]]]]},{"k":"H2448","v":[["redness",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17073]]]]},{"k":"H2449","v":[["*",[27,26,[[1,1,1,0,1,[[50,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[10,1,1,2,3,[[294,1,1,2,3]]],[17,2,2,3,5,[[467,1,1,3,4],[470,1,1,4,5]]],[18,4,4,5,9,[[496,1,1,5,6],[535,1,1,6,7],[582,1,1,7,8],[596,1,1,8,9]]],[19,13,12,9,21,[[633,1,1,9,10],[635,1,1,10,11],[636,3,2,11,13],[640,1,1,13,14],[646,1,1,14,15],[647,1,1,15,16],[648,1,1,16,17],[650,2,2,17,19],[654,1,1,19,20],[657,1,1,20,21]]],[20,4,4,21,25,[[660,2,2,21,23],[665,2,2,23,25]]],[37,1,1,25,26,[[919,1,1,25,26]]]],[1542,5787,8875,13637,13731,14175,14784,15628,15996,16546,16635,16647,16650,16767,16945,16955,16995,17059,17063,17180,17275,17348,17352,17445,17452,23001]]],["+",[3,3,[[19,1,1,0,1,[[657,1,1,0,1]]],[20,2,2,1,3,[[660,1,1,1,2],[665,1,1,2,3]]]],[17275,17352,17445]]],["wisdom",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15628]]],["wise",[17,16,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[467,1,1,1,2]]],[18,1,1,2,3,[[496,1,1,2,3]]],[19,11,10,3,13,[[633,1,1,3,4],[635,1,1,4,5],[636,2,1,5,6],[640,1,1,6,7],[646,1,1,7,8],[647,1,1,8,9],[648,1,1,9,10],[650,2,2,10,12],[654,1,1,12,13]]],[20,2,2,13,15,[[660,1,1,13,14],[665,1,1,14,15]]],[37,1,1,15,16,[[919,1,1,15,16]]]],[5787,13637,14175,16546,16635,16650,16767,16945,16955,16995,17059,17063,17180,17348,17452,23001]]],["wisely",[2,2,[[1,1,1,0,1,[[50,1,1,0,1]]],[18,1,1,1,2,[[535,1,1,1,2]]]],[1542,14784]]],["wiser",[4,4,[[10,1,1,0,1,[[294,1,1,0,1]]],[17,1,1,1,2,[[470,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[19,1,1,3,4,[[636,1,1,3,4]]]],[8875,13731,15996,16647]]]]},{"k":"H2450","v":[["*",[137,133,[[0,3,3,0,3,[[40,3,3,0,3]]],[1,9,9,3,12,[[56,1,1,3,4],[77,1,1,4,5],[80,1,1,5,6],[84,2,2,6,8],[85,4,4,8,12]]],[4,5,5,12,17,[[153,2,2,12,14],[156,1,1,14,15],[168,1,1,15,16],[184,1,1,16,17]]],[6,1,1,17,18,[[215,1,1,17,18]]],[9,4,4,18,22,[[279,1,1,18,19],[280,2,2,19,21],[286,1,1,21,22]]],[10,3,3,22,25,[[292,1,1,22,23],[293,1,1,23,24],[295,1,1,24,25]]],[12,1,1,25,26,[[359,1,1,25,26]]],[13,6,4,26,30,[[368,6,4,26,30]]],[16,2,2,30,32,[[426,1,1,30,31],[431,1,1,31,32]]],[17,8,8,32,40,[[440,1,1,32,33],[444,1,1,33,34],[450,2,2,34,36],[452,1,1,36,37],[469,2,2,37,39],[472,1,1,39,40]]],[18,2,2,40,42,[[526,1,1,40,41],[584,1,1,41,42]]],[19,46,46,42,88,[[628,2,2,42,44],[630,2,2,44,46],[636,2,2,46,48],[637,3,3,48,51],[638,2,2,51,53],[639,2,2,53,55],[640,3,3,55,58],[641,3,3,58,61],[642,5,5,61,66],[643,3,3,66,69],[644,1,1,69,70],[645,1,1,70,71],[647,1,1,71,72],[648,3,3,72,75],[649,1,1,75,76],[650,1,1,76,77],[651,2,2,77,79],[652,1,1,79,80],[653,3,3,80,83],[655,1,1,83,84],[656,3,3,84,87],[657,1,1,87,88]]],[20,21,20,88,108,[[660,4,3,88,91],[662,1,1,91,92],[664,1,1,92,93],[665,4,4,93,97],[666,3,3,97,100],[667,4,4,100,104],[668,2,2,104,106],[670,2,2,106,108]]],[22,9,8,108,116,[[681,1,1,108,109],[683,1,1,109,110],[697,3,2,110,112],[707,1,1,112,113],[709,1,1,113,114],[718,1,1,114,115],[722,1,1,115,116]]],[23,11,11,116,127,[[748,1,1,116,117],[752,2,2,117,119],[753,3,3,119,122],[754,2,2,122,124],[762,1,1,124,125],[794,1,1,125,126],[795,1,1,126,127]]],[25,3,3,127,130,[[828,2,2,127,129],[829,1,1,129,130]]],[27,2,2,130,132,[[874,1,1,130,131],[875,1,1,131,132]]],[30,1,1,132,133,[[888,1,1,132,133]]]],[1203,1228,1234,1696,2296,2426,2541,2556,2567,2568,2570,2574,4905,4907,5010,5361,5764,6652,8320,8358,8376,8570,8779,8828,8885,10979,11218,11223,11224,11225,12715,12806,12964,13055,13205,13221,13270,13685,13717,13793,14658,15742,16405,16406,16462,16490,16646,16647,16657,16664,16670,16717,16718,16734,16737,16748,16761,16767,16775,16788,16796,16809,16814,16819,16827,16838,16854,16861,16863,16901,16916,16980,16995,17004,17006,17032,17068,17084,17102,17125,17146,17153,17157,17207,17232,17233,17235,17275,17347,17349,17352,17394,17425,17433,17434,17436,17448,17459,17463,17475,17476,17486,17490,17492,17495,17505,17532,17534,17710,17760,18015,18016,18207,18252,18440,18558,19049,19161,19162,19187,19192,19198,19208,19210,19402,20201,20269,21129,21130,21160,22279,22291,22518]]],["+",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]],[23,1,1,2,3,[[762,1,1,2,3]]],[27,1,1,3,4,[[874,1,1,3,4]]]],[5764,17275,19402,22279]]],["Wise",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16670]]],["cunning",[6,6,[[13,2,2,0,2,[[368,2,2,0,2]]],[22,2,2,2,4,[[681,1,1,2,3],[718,1,1,3,4]]],[23,2,2,4,6,[[753,1,1,4,5],[754,1,1,5,6]]]],[11218,11224,17710,18440,19192,19210]]],["man",[2,2,[[19,1,1,0,1,[[636,1,1,0,1]]],[20,1,1,1,2,[[665,1,1,1,2]]]],[16646,17436]]],["man's",[4,4,[[20,4,4,0,4,[[660,1,1,0,1],[666,1,1,1,2],[668,2,2,2,4]]]],[17347,17463,17495,17505]]],["men",[10,9,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,2,2,1,3,[[56,1,1,1,2],[85,1,1,2,3]]],[12,1,1,3,4,[[359,1,1,3,4]]],[13,3,2,4,6,[[368,3,2,4,6]]],[16,2,2,6,8,[[426,1,1,6,7],[431,1,1,7,8]]],[18,1,1,8,9,[[526,1,1,8,9]]]],[1203,1696,2570,10979,11218,11225,12715,12806,14658]]],["subtil",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8320]]],["wise",[107,105,[[0,2,2,0,2,[[40,2,2,0,2]]],[1,7,7,2,9,[[77,1,1,2,3],[80,1,1,3,4],[84,2,2,4,6],[85,3,3,6,9]]],[4,4,4,9,13,[[153,2,2,9,11],[156,1,1,11,12],[168,1,1,12,13]]],[6,1,1,13,14,[[215,1,1,13,14]]],[9,3,3,14,17,[[280,2,2,14,16],[286,1,1,16,17]]],[10,3,3,17,20,[[292,1,1,17,18],[293,1,1,18,19],[295,1,1,19,20]]],[13,1,1,20,21,[[368,1,1,20,21]]],[17,8,8,21,29,[[440,1,1,21,22],[444,1,1,22,23],[450,2,2,23,25],[452,1,1,25,26],[469,2,2,26,28],[472,1,1,28,29]]],[18,1,1,29,30,[[584,1,1,29,30]]],[19,42,42,30,72,[[628,2,2,30,32],[630,2,2,32,34],[636,1,1,34,35],[637,2,2,35,37],[638,2,2,37,39],[639,2,2,39,41],[640,3,3,41,44],[641,3,3,44,47],[642,5,5,47,52],[643,3,3,52,55],[644,1,1,55,56],[645,1,1,56,57],[647,1,1,57,58],[648,3,3,58,61],[649,1,1,61,62],[650,1,1,62,63],[651,2,2,63,65],[652,1,1,65,66],[653,2,2,66,68],[655,1,1,68,69],[656,3,3,69,72]]],[20,16,15,72,87,[[660,3,2,72,74],[662,1,1,74,75],[664,1,1,75,76],[665,3,3,76,79],[666,2,2,79,81],[667,4,4,81,85],[670,2,2,85,87]]],[22,7,6,87,93,[[683,1,1,87,88],[697,3,2,88,90],[707,1,1,90,91],[709,1,1,91,92],[722,1,1,92,93]]],[23,8,8,93,101,[[748,1,1,93,94],[752,2,2,94,96],[753,2,2,96,98],[754,1,1,98,99],[794,1,1,99,100],[795,1,1,100,101]]],[25,2,2,101,103,[[828,2,2,101,103]]],[27,1,1,103,104,[[875,1,1,103,104]]],[30,1,1,104,105,[[888,1,1,104,105]]]],[1228,1234,2296,2426,2541,2556,2567,2568,2574,4905,4907,5010,5361,6652,8358,8376,8570,8779,8828,8885,11223,12964,13055,13205,13221,13270,13685,13717,13793,15742,16405,16406,16462,16490,16647,16657,16664,16717,16718,16734,16737,16748,16761,16767,16775,16788,16796,16809,16814,16819,16827,16838,16854,16861,16863,16901,16916,16980,16995,17004,17006,17032,17068,17084,17102,17125,17146,17153,17207,17232,17233,17235,17349,17352,17394,17425,17433,17434,17448,17459,17475,17476,17486,17490,17492,17532,17534,17760,18015,18016,18207,18252,18558,19049,19161,19162,19187,19198,19208,20201,20269,21129,21130,22291,22518]]],["wiser",[2,2,[[19,1,1,0,1,[[653,1,1,0,1]]],[25,1,1,1,2,[[829,1,1,1,2]]]],[17157,21160]]]]},{"k":"H2451","v":[["*",[149,141,[[1,8,8,0,8,[[77,1,1,0,1],[80,2,2,1,3],[84,3,3,3,6],[85,2,2,6,8]]],[4,2,2,8,10,[[156,1,1,8,9],[186,1,1,9,10]]],[9,2,2,10,12,[[280,1,1,10,11],[286,1,1,11,12]]],[10,17,14,12,26,[[292,1,1,12,13],[293,1,1,13,14],[294,6,3,14,17],[295,1,1,17,18],[297,1,1,18,19],[300,6,6,19,25],[301,1,1,25,26]]],[12,1,1,26,27,[[365,1,1,26,27]]],[13,9,9,27,36,[[367,3,3,27,30],[375,6,6,30,36]]],[17,18,18,36,54,[[439,1,1,36,37],[446,1,1,37,38],[447,3,3,38,41],[448,1,1,41,42],[450,1,1,42,43],[461,1,1,43,44],[463,4,4,44,48],[467,2,2,48,50],[468,1,1,50,51],[473,2,2,51,53],[474,1,1,53,54]]],[18,6,6,54,60,[[514,1,1,54,55],[528,1,1,55,56],[567,1,1,56,57],[581,1,1,57,58],[584,1,1,58,59],[588,1,1,59,60]]],[19,39,38,60,98,[[628,2,2,60,62],[629,3,3,62,65],[630,2,2,65,67],[631,4,3,67,70],[632,1,1,70,71],[634,1,1,71,72],[635,3,3,72,75],[636,1,1,75,76],[637,3,3,76,79],[638,1,1,79,80],[640,1,1,80,81],[641,3,3,81,84],[642,1,1,84,85],[643,1,1,85,86],[644,2,2,86,88],[645,1,1,88,89],[648,1,1,89,90],[650,1,1,90,91],[651,2,2,91,93],[655,1,1,93,94],[656,2,2,94,96],[657,1,1,96,97],[658,1,1,97,98]]],[20,28,25,98,123,[[659,5,4,98,102],[660,6,6,102,108],[665,7,6,108,114],[666,2,2,114,116],[667,6,5,116,121],[668,2,2,121,123]]],[22,5,5,123,128,[[688,1,1,123,124],[689,1,1,124,125],[707,1,1,125,126],[711,1,1,126,127],[725,1,1,127,128]]],[23,6,5,128,133,[[752,1,1,128,129],[753,1,1,129,130],[754,1,1,130,131],[793,2,1,131,132],[795,1,1,132,133]]],[25,5,5,133,138,[[829,5,5,133,138]]],[26,3,3,138,141,[[850,3,3,138,141]]]],[2296,2423,2426,2557,2562,2566,2567,2568,5010,5848,8376,8576,8776,8844,8873,8874,8878,8890,8948,9083,9085,9086,9087,9102,9103,9149,11164,11204,11205,11206,11367,11369,11370,11371,11386,11387,12951,13114,13130,13140,13141,13158,13211,13470,13516,13522,13524,13532,13635,13641,13683,13829,13830,13851,14480,14697,15390,15595,15726,15803,16402,16407,16435,16439,16443,16468,16474,16495,16497,16501,16518,16579,16603,16613,16614,16648,16669,16679,16687,16690,16757,16778,16780,16805,16840,16856,16889,16897,16905,17014,17067,17082,17093,17222,17227,17239,17254,17310,17328,17331,17332,17333,17336,17342,17345,17346,17354,17359,17439,17440,17441,17448,17452,17454,17459,17474,17485,17488,17490,17491,17493,17494,17503,17863,17886,18207,18285,18609,19162,19198,19213,20134,20227,21161,21162,21164,21169,21174,21741,21754,21757]]],["+",[4,4,[[10,1,1,0,1,[[294,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]],[20,2,2,2,4,[[665,1,1,2,3],[668,1,1,3,4]]]],[8874,15726,17439,17494]]],["Wisdom",[8,8,[[13,1,1,0,1,[[367,1,1,0,1]]],[19,3,3,1,4,[[631,1,1,1,2],[641,1,1,2,3],[644,1,1,3,4]]],[20,4,4,4,8,[[665,2,2,4,6],[667,2,2,6,8]]]],[11206,16497,16805,16897,17440,17448,17491,17493]]],["man",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11164]]],["wisdom",[135,130,[[1,8,8,0,8,[[77,1,1,0,1],[80,2,2,1,3],[84,3,3,3,6],[85,2,2,6,8]]],[4,2,2,8,10,[[156,1,1,8,9],[186,1,1,9,10]]],[9,2,2,10,12,[[280,1,1,10,11],[286,1,1,11,12]]],[10,16,14,12,26,[[292,1,1,12,13],[293,1,1,13,14],[294,5,3,14,17],[295,1,1,17,18],[297,1,1,18,19],[300,6,6,19,25],[301,1,1,25,26]]],[13,8,8,26,34,[[367,2,2,26,28],[375,6,6,28,34]]],[17,18,18,34,52,[[439,1,1,34,35],[446,1,1,35,36],[447,3,3,36,39],[448,1,1,39,40],[450,1,1,40,41],[461,1,1,41,42],[463,4,4,42,46],[467,2,2,46,48],[468,1,1,48,49],[473,2,2,49,51],[474,1,1,51,52]]],[18,5,5,52,57,[[514,1,1,52,53],[528,1,1,53,54],[567,1,1,54,55],[581,1,1,55,56],[588,1,1,56,57]]],[19,35,35,57,92,[[628,2,2,57,59],[629,3,3,59,62],[630,2,2,62,64],[631,3,3,64,67],[632,1,1,67,68],[634,1,1,68,69],[635,3,3,69,72],[636,1,1,72,73],[637,3,3,73,76],[638,1,1,76,77],[640,1,1,77,78],[641,2,2,78,80],[642,1,1,80,81],[643,1,1,81,82],[644,1,1,82,83],[645,1,1,83,84],[648,1,1,84,85],[650,1,1,85,86],[651,2,2,86,88],[656,2,2,88,90],[657,1,1,90,91],[658,1,1,91,92]]],[20,22,20,92,112,[[659,5,4,92,96],[660,6,6,96,102],[665,4,3,102,105],[666,2,2,105,107],[667,4,4,107,111],[668,1,1,111,112]]],[22,5,5,112,117,[[688,1,1,112,113],[689,1,1,113,114],[707,1,1,114,115],[711,1,1,115,116],[725,1,1,116,117]]],[23,6,5,117,122,[[752,1,1,117,118],[753,1,1,118,119],[754,1,1,119,120],[793,2,1,120,121],[795,1,1,121,122]]],[25,5,5,122,127,[[829,5,5,122,127]]],[26,3,3,127,130,[[850,3,3,127,130]]]],[2296,2423,2426,2557,2562,2566,2567,2568,5010,5848,8376,8576,8776,8844,8873,8874,8878,8890,8948,9083,9085,9086,9087,9102,9103,9149,11204,11205,11367,11369,11370,11371,11386,11387,12951,13114,13130,13140,13141,13158,13211,13470,13516,13522,13524,13532,13635,13641,13683,13829,13830,13851,14480,14697,15390,15595,15803,16402,16407,16435,16439,16443,16468,16474,16495,16497,16501,16518,16579,16603,16613,16614,16648,16669,16679,16687,16690,16757,16778,16780,16840,16856,16889,16905,17014,17067,17082,17093,17227,17239,17254,17310,17328,17331,17332,17333,17336,17342,17345,17346,17354,17359,17441,17452,17454,17459,17474,17485,17488,17490,17491,17503,17863,17886,18207,18285,18609,19162,19198,19213,20134,20227,21161,21162,21164,21169,21174,21741,21754,21757]]],["wisely",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17222]]]]},{"k":"H2452","v":[["wisdom",[8,7,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,7,6,1,7,[[851,4,4,1,5],[854,3,2,5,7]]]],[12198,21778,21779,21781,21788,21885,21888]]]]},{"k":"H2453","v":[["*",[2,2,[[12,2,2,0,2,[[348,1,1,0,1],[364,1,1,1,2]]]],[10684,11141]]],["+",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10684]]],["Hachmoni",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11141]]]]},{"k":"H2454","v":[["*",[5,5,[[18,1,1,0,1,[[526,1,1,0,1]]],[19,4,4,1,5,[[628,1,1,1,2],[636,1,1,2,3],[641,1,1,3,4],[651,1,1,4,5]]]],[14651,16420,16639,16773,17086]]],["Wisdom",[3,3,[[19,3,3,0,3,[[628,1,1,0,1],[636,1,1,1,2],[651,1,1,2,3]]]],[16420,16639,17086]]],["wisdom",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14651]]],["wise",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16773]]]]},{"k":"H2455","v":[["*",[7,7,[[2,1,1,0,1,[[99,1,1,0,1]]],[8,2,2,1,3,[[256,2,2,1,3]]],[25,4,4,3,7,[[823,1,1,3,4],[843,1,1,4,5],[845,1,1,5,6],[849,1,1,6,7]]]],[2987,7776,7777,21002,21572,21622,21717]]],["common",[2,2,[[8,2,2,0,2,[[256,2,2,0,2]]]],[7776,7777]]],["place",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21572]]],["profane",[3,3,[[25,3,3,0,3,[[823,1,1,0,1],[845,1,1,1,2],[849,1,1,2,3]]]],[21002,21622,21717]]],["unholy",[1,1,[[2,1,1,0,1,[[99,1,1,0,1]]]],[2987]]]]},{"k":"H2456","v":[["diseased",[1,1,[[13,1,1,0,1,[[382,1,1,0,1]]]],[11521]]]]},{"k":"H2457","v":[["scum",[5,3,[[25,5,3,0,3,[[825,5,3,0,3]]]],[21062,21067,21068]]]]},{"k":"H2458","v":[["Helah",[2,2,[[12,2,2,0,2,[[341,2,2,0,2]]]],[10390,10392]]]]},{"k":"H2459","v":[["*",[92,69,[[0,2,2,0,2,[[3,1,1,0,1],[44,1,1,1,2]]],[1,6,3,2,5,[[72,1,1,2,3],[78,5,2,3,5]]],[2,48,33,5,38,[[92,12,8,5,13],[93,11,6,13,19],[95,1,1,19,20],[96,10,8,20,28],[97,6,3,28,31],[98,5,4,31,35],[99,1,1,35,36],[105,1,1,36,37],[106,1,1,37,38]]],[3,6,5,38,43,[[134,6,5,38,43]]],[4,3,2,43,45,[[184,3,2,43,45]]],[6,1,1,45,46,[[213,1,1,45,46]]],[8,3,3,46,49,[[237,2,2,46,48],[250,1,1,48,49]]],[9,1,1,49,50,[[267,1,1,49,50]]],[10,2,1,50,51,[[298,2,1,50,51]]],[13,4,3,51,54,[[373,2,1,51,52],[395,1,1,52,53],[401,1,1,53,54]]],[17,1,1,54,55,[[450,1,1,54,55]]],[18,6,6,55,61,[[494,1,1,55,56],[540,1,1,56,57],[550,1,1,57,58],[558,1,1,58,59],[596,1,1,59,60],[624,1,1,60,61]]],[22,5,4,61,65,[[679,1,1,61,62],[712,3,2,62,64],[721,1,1,64,65]]],[25,4,4,65,69,[[835,1,1,65,66],[840,1,1,66,67],[845,2,2,67,69]]]],[83,1376,2162,2349,2358,2781,2782,2787,2788,2792,2793,2794,2795,2803,2804,2814,2821,2826,2830,2861,2882,2883,2902,2903,2904,2909,2910,2912,2933,2942,2943,2963,2972,2973,2977,2992,3226,3241,4269,4274,4286,4287,4289,5772,5796,6590,7255,7256,7582,8044,9049,11331,11826,11980,13230,14113,14844,15027,15233,15968,16365,17665,18309,18310,18529,21316,21467,21606,21614]]],["+",[8,7,[[0,1,1,0,1,[[3,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]],[9,1,1,2,3,[[267,1,1,2,3]]],[18,2,2,3,5,[[550,1,1,3,4],[558,1,1,4,5]]],[22,3,2,5,7,[[712,3,2,5,7]]]],[83,7582,8044,15027,15233,18309,18310]]],["best",[5,4,[[3,5,4,0,4,[[134,5,4,0,4]]]],[4269,4286,4287,4289]]],["fat",[75,54,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,6,3,1,4,[[72,1,1,1,2],[78,5,2,2,4]]],[2,48,33,4,37,[[92,12,8,4,12],[93,11,6,12,18],[95,1,1,18,19],[96,10,8,19,27],[97,6,3,27,30],[98,5,4,30,34],[99,1,1,34,35],[105,1,1,35,36],[106,1,1,36,37]]],[3,1,1,37,38,[[134,1,1,37,38]]],[4,3,2,38,40,[[184,3,2,38,40]]],[6,1,1,40,41,[[213,1,1,40,41]]],[8,2,2,41,43,[[237,2,2,41,43]]],[10,2,1,43,44,[[298,2,1,43,44]]],[13,4,3,44,47,[[373,2,1,44,45],[395,1,1,45,46],[401,1,1,46,47]]],[18,1,1,47,48,[[494,1,1,47,48]]],[22,2,2,48,50,[[679,1,1,48,49],[721,1,1,49,50]]],[25,4,4,50,54,[[835,1,1,50,51],[840,1,1,51,52],[845,2,2,52,54]]]],[1376,2162,2349,2358,2781,2782,2787,2788,2792,2793,2794,2795,2803,2804,2814,2821,2826,2830,2861,2882,2883,2902,2903,2904,2909,2910,2912,2933,2942,2943,2963,2972,2973,2977,2992,3226,3241,4274,5772,5796,6590,7255,7256,9049,11331,11826,11980,14113,17665,18529,21316,21467,21606,21614]]],["fatness",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13230]]],["finest",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16365]]],["grease",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15968]]],["marrow",[1,1,[[18,1,1,0,1,[[540,1,1,0,1]]]],[14844]]]]},{"k":"H2460","v":[["Heleb",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8682]]]]},{"k":"H2461","v":[["*",[44,44,[[0,2,2,0,2,[[17,1,1,0,1],[48,1,1,1,2]]],[1,6,6,2,8,[[52,2,2,2,4],[62,1,1,4,5],[72,1,1,5,6],[82,1,1,6,7],[83,1,1,7,8]]],[2,1,1,8,9,[[109,1,1,8,9]]],[3,4,4,9,13,[[129,1,1,9,10],[130,1,1,10,11],[132,2,2,11,13]]],[4,8,8,13,21,[[158,1,1,13,14],[163,1,1,14,15],[166,1,1,15,16],[178,2,2,16,18],[179,1,1,18,19],[183,1,1,19,20],[184,1,1,20,21]]],[5,1,1,21,22,[[191,1,1,21,22]]],[6,2,2,22,24,[[214,1,1,22,23],[215,1,1,23,24]]],[8,2,2,24,26,[[242,1,1,24,25],[252,1,1,25,26]]],[17,2,2,26,28,[[445,1,1,26,27],[456,1,1,27,28]]],[19,2,2,28,30,[[654,1,1,28,29],[657,1,1,29,30]]],[21,3,3,30,33,[[674,1,1,30,31],[675,2,2,31,33]]],[22,4,4,33,37,[[685,1,1,33,34],[706,1,1,34,35],[733,1,1,35,36],[738,1,1,36,37]]],[23,2,2,37,39,[[755,1,1,37,38],[776,1,1,38,39]]],[24,1,1,39,40,[[800,1,1,39,40]]],[25,3,3,40,43,[[821,2,2,40,42],[826,1,1,42,43]]],[28,1,1,43,44,[[878,1,1,43,44]]]],[432,1485,1587,1596,1872,2163,2476,2522,3342,4102,4116,4207,4208,5089,5217,5311,5575,5581,5588,5748,5772,5940,6618,6648,7361,7636,13096,13379,17196,17284,17593,17599,17610,17804,18173,18741,18837,19231,19753,20427,20901,20910,21087,22361]]],["+",[4,4,[[0,1,1,0,1,[[48,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[22,1,1,2,3,[[706,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]]],[1485,7636,18173,20427]]],["milk",[39,39,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,6,6,1,7,[[52,2,2,1,3],[62,1,1,3,4],[72,1,1,4,5],[82,1,1,5,6],[83,1,1,6,7]]],[2,1,1,7,8,[[109,1,1,7,8]]],[3,4,4,8,12,[[129,1,1,8,9],[130,1,1,9,10],[132,2,2,10,12]]],[4,8,8,12,20,[[158,1,1,12,13],[163,1,1,13,14],[166,1,1,14,15],[178,2,2,15,17],[179,1,1,17,18],[183,1,1,18,19],[184,1,1,19,20]]],[5,1,1,20,21,[[191,1,1,20,21]]],[6,2,2,21,23,[[214,1,1,21,22],[215,1,1,22,23]]],[17,2,2,23,25,[[445,1,1,23,24],[456,1,1,24,25]]],[19,2,2,25,27,[[654,1,1,25,26],[657,1,1,26,27]]],[21,3,3,27,30,[[674,1,1,27,28],[675,2,2,28,30]]],[22,3,3,30,33,[[685,1,1,30,31],[733,1,1,31,32],[738,1,1,32,33]]],[23,2,2,33,35,[[755,1,1,33,34],[776,1,1,34,35]]],[25,3,3,35,38,[[821,2,2,35,37],[826,1,1,37,38]]],[28,1,1,38,39,[[878,1,1,38,39]]]],[432,1587,1596,1872,2163,2476,2522,3342,4102,4116,4207,4208,5089,5217,5311,5575,5581,5588,5748,5772,5940,6618,6648,13096,13379,17196,17284,17593,17599,17610,17804,18741,18837,19231,19753,20901,20910,21087,22361]]],["sucking",[1,1,[[8,1,1,0,1,[[242,1,1,0,1]]]],[7361]]]]},{"k":"H2462","v":[["Helbah",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6540]]]]},{"k":"H2463","v":[["Helbon",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21139]]]]},{"k":"H2464","v":[["galbanum",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2416]]]]},{"k":"H2465","v":[["*",[5,5,[[17,1,1,0,1,[[446,1,1,0,1]]],[18,4,4,1,5,[[494,1,1,1,2],[516,1,1,2,3],[526,1,1,3,4],[566,1,1,4,5]]]],[13125,14117,14517,14649,15373]]],["+",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14117]]],["age",[2,2,[[17,1,1,0,1,[[446,1,1,0,1]]],[18,1,1,1,2,[[516,1,1,1,2]]]],[13125,14517]]],["short",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15373]]],["world",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14649]]]]},{"k":"H2466","v":[["Heled",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10703]]]]},{"k":"H2467","v":[["weasel",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3026]]]]},{"k":"H2468","v":[["Huldah",[2,2,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]]],[10159,11955]]]]},{"k":"H2469","v":[["*",[2,2,[[12,1,1,0,1,[[364,1,1,0,1]]],[37,1,1,1,2,[[916,1,1,1,2]]]],[11124,22957]]],["+",[1,1,[[37,1,1,0,1,[[916,1,1,0,1]]]],[22957]]],["Heldai",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11124]]]]},{"k":"H2470","v":[["*",[76,74,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,1,1,1,2,[[81,1,1,1,2]]],[4,1,1,2,3,[[181,1,1,2,3]]],[6,3,3,3,6,[[226,3,3,3,6]]],[8,4,4,6,10,[[248,1,1,6,7],[254,1,1,7,8],[257,1,1,8,9],[265,1,1,9,10]]],[9,3,3,10,13,[[279,3,3,10,13]]],[10,7,6,13,19,[[303,2,1,13,14],[304,2,2,14,16],[305,1,1,16,17],[307,1,1,17,18],[312,1,1,18,19]]],[11,7,7,19,26,[[313,1,1,19,20],[320,2,2,20,22],[325,2,2,22,24],[332,2,2,24,26]]],[13,5,5,26,31,[[384,1,1,26,27],[388,1,1,27,28],[398,1,1,28,29],[399,1,1,29,30],[401,1,1,30,31]]],[15,1,1,31,32,[[414,1,1,31,32]]],[17,1,1,32,33,[[446,1,1,32,33]]],[18,4,4,33,37,[[512,1,1,33,34],[522,1,1,34,35],[554,1,1,35,36],[596,1,1,36,37]]],[19,3,3,37,40,[[640,1,1,37,38],[646,1,1,38,39],[650,1,1,39,40]]],[20,2,2,40,42,[[663,2,2,40,42]]],[21,2,2,42,44,[[672,1,1,42,43],[675,1,1,43,44]]],[22,8,8,44,52,[[692,1,1,44,45],[695,1,1,45,46],[711,1,1,46,47],[716,2,2,47,49],[717,1,1,49,50],[731,1,1,50,51],[735,1,1,51,52]]],[23,6,6,52,58,[[748,1,1,52,53],[754,1,1,53,54],[756,1,1,54,55],[758,1,1,55,56],[770,1,1,56,57],[774,1,1,57,58]]],[25,4,3,58,61,[[835,4,3,58,61]]],[26,2,2,61,63,[[857,1,1,61,62],[858,1,1,62,63]]],[27,1,1,63,64,[[868,1,1,63,64]]],[29,1,1,64,65,[[884,1,1,64,65]]],[32,2,2,65,67,[[893,1,1,65,66],[898,1,1,66,67]]],[33,1,1,67,68,[[902,1,1,67,68]]],[37,3,3,68,71,[[917,1,1,68,69],[918,2,2,69,71]]],[38,3,3,71,74,[[925,3,3,71,74]]]],[1452,2449,5701,6956,6960,6966,7497,7720,7795,7991,8319,8322,8323,9190,9219,9223,9272,9334,9514,9535,9734,9756,9875,9885,10099,10110,11575,11650,11899,11920,11989,12309,13127,14423,14609,15103,15956,16759,16931,17079,17410,17413,17559,17606,17938,17994,18303,18391,18399,18413,18721,18775,19058,19220,19262,19310,19591,19679,21317,21329,21334,21988,22001,22183,22456,22591,22661,22731,22964,22997,22998,23097,23098,23102]]],["+",[13,13,[[1,1,1,0,1,[[81,1,1,0,1]]],[10,1,1,1,2,[[303,1,1,1,2]]],[11,2,2,2,4,[[325,1,1,2,3],[332,1,1,3,4]]],[13,2,2,4,6,[[399,1,1,4,5],[401,1,1,5,6]]],[21,1,1,6,7,[[675,1,1,6,7]]],[22,1,1,7,8,[[716,1,1,7,8]]],[23,1,1,8,9,[[770,1,1,8,9]]],[26,1,1,9,10,[[858,1,1,9,10]]],[37,3,3,10,13,[[917,1,1,10,11],[918,2,2,11,13]]]],[2449,9190,9875,10099,11920,11989,17606,18391,19591,22001,22964,22997,22998]]],["Intreat",[1,1,[[10,1,1,0,1,[[303,1,1,0,1]]]],[9190]]],["beseech",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23098]]],["carefully",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22591]]],["diseased",[3,3,[[10,1,1,0,1,[[305,1,1,0,1]]],[25,2,2,1,3,[[835,2,2,1,3]]]],[9272,21317,21334]]],["grief",[2,2,[[22,2,2,0,2,[[695,1,1,0,1],[731,1,1,1,2]]]],[17994,18721]]],["grieved",[2,2,[[22,1,1,0,1,[[735,1,1,0,1]]],[29,1,1,1,2,[[884,1,1,1,2]]]],[18775,22456]]],["grievous",[4,4,[[23,3,3,0,3,[[754,1,1,0,1],[758,1,1,1,2],[774,1,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[19220,19310,19679,22731]]],["infirmity",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15103]]],["intreat",[2,2,[[18,1,1,0,1,[[522,1,1,0,1]]],[19,1,1,1,2,[[646,1,1,1,2]]]],[14609,16931]]],["intreated",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15956]]],["laid",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5701]]],["pain",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19262]]],["sick",[31,31,[[0,1,1,0,1,[[47,1,1,0,1]]],[8,2,2,1,3,[[254,1,1,1,2],[265,1,1,2,3]]],[9,3,3,3,6,[[279,3,3,3,6]]],[10,3,3,6,9,[[304,2,2,6,8],[307,1,1,8,9]]],[11,5,5,9,14,[[313,1,1,9,10],[320,2,2,10,12],[325,1,1,12,13],[332,1,1,13,14]]],[13,2,2,14,16,[[388,1,1,14,15],[398,1,1,15,16]]],[15,1,1,16,17,[[414,1,1,16,17]]],[18,1,1,17,18,[[512,1,1,17,18]]],[19,2,2,18,20,[[640,1,1,18,19],[650,1,1,19,20]]],[21,1,1,20,21,[[672,1,1,20,21]]],[22,3,3,21,24,[[711,1,1,21,22],[716,1,1,22,23],[717,1,1,23,24]]],[25,2,2,24,26,[[835,2,2,24,26]]],[26,1,1,26,27,[[857,1,1,26,27]]],[27,1,1,27,28,[[868,1,1,27,28]]],[32,1,1,28,29,[[898,1,1,28,29]]],[38,2,2,29,31,[[925,2,2,29,31]]]],[1452,7720,7991,8319,8322,8323,9219,9223,9334,9535,9734,9756,9885,10110,11650,11899,12309,14423,16759,17079,17559,18303,18399,18413,21317,21329,21988,22183,22661,23097,23102]]],["sore",[2,2,[[20,2,2,0,2,[[663,2,2,0,2]]]],[17410,17413]]],["sorry",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7795]]],["suit",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13127]]],["supplication",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7497]]],["travail",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19058]]],["weak",[4,4,[[6,3,3,0,3,[[226,3,3,0,3]]],[22,1,1,3,4,[[692,1,1,3,4]]]],[6956,6960,6966,17938]]],["wounded",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[9514,11575]]]]},{"k":"H2471","v":[["*",[14,11,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,8,5,2,7,[[91,1,1,2,3],[96,3,2,3,5],[97,2,1,5,6],[113,2,1,6,7]]],[3,3,3,7,10,[[122,2,2,7,9],[131,1,1,9,10]]],[9,1,1,10,11,[[272,1,1,10,11]]]],[2338,2359,2766,2891,2892,2943,3451,3838,3842,4173,8176]]],["cake",[7,6,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,3,2,1,3,[[97,2,1,1,2],[113,1,1,2,3]]],[3,2,2,3,5,[[122,1,1,3,4],[131,1,1,4,5]]],[9,1,1,5,6,[[272,1,1,5,6]]]],[2359,2943,3451,3842,4173,8176]]],["cakes",[7,6,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,5,4,1,5,[[91,1,1,1,2],[96,3,2,2,4],[113,1,1,4,5]]],[3,1,1,5,6,[[122,1,1,5,6]]]],[2338,2766,2891,2892,3451,3838]]]]},{"k":"H2472","v":[["*",[65,55,[[0,34,27,0,27,[[19,2,2,0,2],[30,3,3,2,5],[36,8,7,5,12],[39,7,4,12,16],[40,13,10,16,26],[41,1,1,26,27]]],[3,1,1,27,28,[[128,1,1,27,28]]],[4,3,3,28,31,[[165,3,3,28,31]]],[6,3,2,31,33,[[217,3,2,31,33]]],[8,2,2,33,35,[[263,2,2,33,35]]],[10,2,2,35,37,[[293,2,2,35,37]]],[17,3,3,37,40,[[442,1,1,37,38],[455,1,1,38,39],[468,1,1,39,40]]],[18,1,1,40,41,[[550,1,1,40,41]]],[20,2,2,41,43,[[663,2,2,41,43]]],[22,1,1,43,44,[[707,1,1,43,44]]],[23,6,5,44,49,[[767,4,3,44,47],[771,1,1,47,48],[773,1,1,48,49]]],[26,5,4,49,53,[[850,1,1,49,50],[851,4,3,50,53]]],[28,1,1,53,54,[[877,1,1,53,54]]],[37,1,1,54,55,[[920,1,1,54,55]]]],[498,501,883,884,897,1088,1089,1091,1092,1093,1102,1103,1177,1180,1181,1188,1202,1203,1206,1207,1210,1212,1217,1220,1221,1227,1261,4065,5273,5275,5277,6707,6709,7948,7957,8821,8831,13022,13334,13665,15040,17400,17404,18200,19511,19512,19516,19605,19643,21754,21759,21760,21761,22339,23018]]],["+",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1102]]],["dream",[44,35,[[0,29,23,0,23,[[19,2,2,0,2],[30,3,3,2,5],[36,5,4,5,9],[39,7,4,9,13],[40,12,10,13,23]]],[3,1,1,23,24,[[128,1,1,23,24]]],[6,3,2,24,26,[[217,3,2,24,26]]],[10,2,2,26,28,[[293,2,2,26,28]]],[17,2,2,28,30,[[455,1,1,28,29],[468,1,1,29,30]]],[18,1,1,30,31,[[550,1,1,30,31]]],[20,1,1,31,32,[[663,1,1,31,32]]],[22,1,1,32,33,[[707,1,1,32,33]]],[23,2,1,33,34,[[767,2,1,33,34]]],[26,2,1,34,35,[[851,2,1,34,35]]]],[498,501,883,884,897,1088,1089,1092,1093,1177,1180,1181,1188,1202,1203,1206,1207,1210,1212,1217,1220,1221,1227,4065,6707,6709,8821,8831,13334,13665,15040,17400,18200,19512,21761]]],["dreamers",[1,1,[[23,1,1,0,1,[[771,1,1,0,1]]]],[19605]]],["dreams",[19,19,[[0,4,4,0,4,[[36,2,2,0,2],[40,1,1,2,3],[41,1,1,3,4]]],[4,3,3,4,7,[[165,3,3,4,7]]],[8,2,2,7,9,[[263,2,2,7,9]]],[17,1,1,9,10,[[442,1,1,9,10]]],[20,1,1,10,11,[[663,1,1,10,11]]],[23,3,3,11,14,[[767,2,2,11,13],[773,1,1,13,14]]],[26,3,3,14,17,[[850,1,1,14,15],[851,2,2,15,17]]],[28,1,1,17,18,[[877,1,1,17,18]]],[37,1,1,18,19,[[920,1,1,18,19]]]],[1091,1103,1207,1261,5273,5275,5277,7948,7957,13022,17404,19511,19516,19643,21754,21759,21760,22339,23018]]]]},{"k":"H2473","v":[["Holon",[3,3,[[5,2,2,0,2,[[201,1,1,0,1],[207,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[6253,6396,20101]]]]},{"k":"H2474","v":[["*",[31,27,[[0,2,2,0,2,[[7,1,1,0,1],[25,1,1,1,2]]],[5,3,3,2,5,[[188,3,3,2,5]]],[6,1,1,5,6,[[215,1,1,5,6]]],[8,1,1,6,7,[[254,1,1,6,7]]],[9,1,1,7,8,[[272,1,1,7,8]]],[10,1,1,8,9,[[296,1,1,8,9]]],[11,3,3,9,12,[[321,2,2,9,11],[325,1,1,11,12]]],[12,1,1,12,13,[[352,1,1,12,13]]],[19,1,1,13,14,[[634,1,1,13,14]]],[21,1,1,14,15,[[672,1,1,14,15]]],[23,2,2,15,17,[[753,1,1,15,16],[766,1,1,16,17]]],[25,12,8,17,25,[[841,8,6,17,23],[842,4,2,23,25]]],[28,1,1,25,26,[[877,1,1,25,26]]],[35,1,1,26,27,[[907,1,1,26,27]]]],[189,700,5884,5887,5890,6651,7718,8173,8900,9786,9788,9888,10820,16581,17563,19196,19468,21493,21499,21502,21506,21510,21513,21542,21552,22320,22819]]],["window",[13,13,[[0,2,2,0,2,[[7,1,1,0,1],[25,1,1,1,2]]],[5,3,3,2,5,[[188,3,3,2,5]]],[6,1,1,5,6,[[215,1,1,5,6]]],[8,1,1,6,7,[[254,1,1,6,7]]],[9,1,1,7,8,[[272,1,1,7,8]]],[11,3,3,8,11,[[321,2,2,8,10],[325,1,1,10,11]]],[12,1,1,11,12,[[352,1,1,11,12]]],[19,1,1,12,13,[[634,1,1,12,13]]]],[189,700,5884,5887,5890,6651,7718,8173,9786,9788,9888,10820,16581]]],["windows",[18,14,[[10,1,1,0,1,[[296,1,1,0,1]]],[21,1,1,1,2,[[672,1,1,1,2]]],[23,2,2,2,4,[[753,1,1,2,3],[766,1,1,3,4]]],[25,12,8,4,12,[[841,8,6,4,10],[842,4,2,10,12]]],[28,1,1,12,13,[[877,1,1,12,13]]],[35,1,1,13,14,[[907,1,1,13,14]]]],[8900,17563,19196,19468,21493,21499,21502,21506,21510,21513,21542,21552,22320,22819]]]]},{"k":"H2475","v":[["destruction",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17292]]]]},{"k":"H2476","v":[["overcome",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2456]]]]},{"k":"H2477","v":[["Halah",[3,3,[[11,2,2,0,2,[[329,1,1,0,1],[330,1,1,1,2]]],[12,1,1,2,3,[[342,1,1,2,3]]]],[9989,10035,10454]]]]},{"k":"H2478","v":[["Halhul",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6260]]]]},{"k":"H2479","v":[["pain",[4,4,[[22,1,1,0,1,[[699,1,1,0,1]]],[25,2,2,1,3,[[831,2,2,1,3]]],[33,1,1,3,4,[[901,1,1,3,4]]]],[18038,21208,21213,22709]]]]},{"k":"H2480","v":[["catch",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9441]]]]},{"k":"H2481","v":[["*",[2,2,[[19,1,1,0,1,[[652,1,1,0,1]]],[21,1,1,1,2,[[677,1,1,1,2]]]],[17125,17628]]],["jewels",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17628]]],["ornament",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17125]]]]},{"k":"H2482","v":[["Hali",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6346]]]]},{"k":"H2483","v":[["*",[24,22,[[4,3,3,0,3,[[159,1,1,0,1],[180,2,2,1,3]]],[10,1,1,3,4,[[307,1,1,3,4]]],[11,4,4,4,8,[[313,1,1,4,5],[320,2,2,5,7],[325,1,1,7,8]]],[13,6,4,8,12,[[382,2,1,8,9],[387,4,3,9,12]]],[18,1,1,12,13,[[518,1,1,12,13]]],[20,2,2,13,15,[[663,1,1,13,14],[664,1,1,14,15]]],[22,4,4,15,19,[[679,1,1,15,16],[716,1,1,16,17],[731,2,2,17,19]]],[23,2,2,19,21,[[750,1,1,19,20],[754,1,1,20,21]]],[27,1,1,21,22,[[866,1,1,21,22]]]],[5126,5670,5672,9334,9535,9735,9736,9885,11521,11639,11642,11643,14545,17414,17419,17659,18399,18714,18715,19096,19220,22165]]],["+",[4,4,[[11,3,3,0,3,[[313,1,1,0,1],[320,2,2,1,3]]],[22,1,1,3,4,[[716,1,1,3,4]]]],[9535,9735,9736,18399]]],["disease",[4,3,[[13,3,2,0,2,[[382,2,1,0,1],[387,1,1,1,2]]],[20,1,1,2,3,[[664,1,1,2,3]]]],[11521,11642,17419]]],["grief",[3,3,[[22,1,1,0,1,[[731,1,1,0,1]]],[23,2,2,1,3,[[750,1,1,1,2],[754,1,1,2,3]]]],[18714,19096,19220]]],["griefs",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18715]]],["sick",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17659]]],["sickness",[10,9,[[4,2,2,0,2,[[159,1,1,0,1],[180,1,1,1,2]]],[10,1,1,2,3,[[307,1,1,2,3]]],[11,1,1,3,4,[[325,1,1,3,4]]],[13,3,2,4,6,[[387,3,2,4,6]]],[18,1,1,6,7,[[518,1,1,6,7]]],[20,1,1,7,8,[[663,1,1,7,8]]],[27,1,1,8,9,[[866,1,1,8,9]]]],[5126,5672,9334,9885,11639,11643,14545,17414,22165]]],["sicknesses",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5670]]]]},{"k":"H2484","v":[["jewels",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22118]]]]},{"k":"H2485","v":[["*",[6,5,[[8,1,1,0,1,[[245,1,1,0,1]]],[10,1,1,1,2,[[291,1,1,1,2]]],[22,2,2,2,4,[[683,1,1,2,3],[708,1,1,3,4]]],[23,2,1,4,5,[[792,2,1,4,5]]]],[7423,8757,17751,18246,20116]]],["pipe",[3,3,[[8,1,1,0,1,[[245,1,1,0,1]]],[22,2,2,1,3,[[683,1,1,1,2],[708,1,1,2,3]]]],[7423,17751,18246]]],["pipes",[3,2,[[10,1,1,0,1,[[291,1,1,0,1]]],[23,2,1,1,2,[[792,2,1,1,2]]]],[8757,20116]]]]},{"k":"H2486","v":[["*",[21,19,[[0,4,3,0,3,[[17,2,1,0,1],[43,2,2,1,3]]],[5,2,2,3,5,[[208,1,1,3,4],[210,1,1,4,5]]],[8,8,8,5,13,[[237,1,1,5,6],[247,1,1,6,7],[249,1,1,7,8],[255,2,2,8,10],[257,1,1,10,11],[259,1,1,11,12],[261,1,1,12,13]]],[9,3,2,13,15,[[286,2,1,13,14],[289,1,1,14,15]]],[10,1,1,15,16,[[311,1,1,15,16]]],[12,1,1,16,17,[[348,1,1,16,17]]],[17,2,2,17,19,[[462,1,1,17,18],[469,1,1,18,19]]]],[449,1331,1341,6455,6492,7270,7483,7553,7732,7739,7802,7845,7916,8574,8670,9454,10692,13486,13693]]],["far",[5,4,[[0,2,1,0,1,[[17,2,1,0,1]]],[8,2,2,1,3,[[237,1,1,1,2],[257,1,1,2,3]]],[9,1,1,3,4,[[289,1,1,3,4]]]],[449,7270,7802,8670]]],["forbid",[11,11,[[0,2,2,0,2,[[43,2,2,0,2]]],[5,2,2,2,4,[[208,1,1,2,3],[210,1,1,3,4]]],[8,5,5,4,9,[[247,1,1,4,5],[249,1,1,5,6],[255,1,1,6,7],[259,1,1,7,8],[261,1,1,8,9]]],[10,1,1,9,10,[[311,1,1,9,10]]],[17,1,1,10,11,[[462,1,1,10,11]]]],[1331,1341,6455,6492,7483,7553,7732,7845,7916,9454,13486]]],["it",[5,4,[[8,1,1,0,1,[[255,1,1,0,1]]],[9,2,1,1,2,[[286,2,1,1,2]]],[12,1,1,2,3,[[348,1,1,2,3]]],[17,1,1,3,4,[[469,1,1,3,4]]]],[7739,8574,10692,13693]]]]},{"k":"H2487","v":[["*",[12,11,[[0,2,1,0,1,[[44,2,1,0,1]]],[6,3,3,1,4,[[224,3,3,1,4]]],[10,1,1,4,5,[[295,1,1,4,5]]],[11,3,3,5,8,[[317,3,3,5,8]]],[17,2,2,8,10,[[445,1,1,8,9],[449,1,1,9,10]]],[18,1,1,10,11,[[532,1,1,10,11]]]],[1380,6921,6922,6928,8892,9652,9669,9670,13103,13195,14751]]],["change",[3,3,[[6,2,2,0,2,[[224,2,2,0,2]]],[17,1,1,2,3,[[449,1,1,2,3]]]],[6921,6922,13195]]],["changes",[7,6,[[0,2,1,0,1,[[44,2,1,0,1]]],[11,3,3,1,4,[[317,3,3,1,4]]],[17,1,1,4,5,[[445,1,1,4,5]]],[18,1,1,5,6,[[532,1,1,5,6]]]],[1380,9652,9669,9670,13103,14751]]],["courses",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8892]]],["garments",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6928]]]]},{"k":"H2488","v":[["*",[2,2,[[6,1,1,0,1,[[224,1,1,0,1]]],[9,1,1,1,2,[[268,1,1,1,2]]]],[6928,8070]]],["armour",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8070]]],["spoil",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6928]]]]},{"k":"H2489","v":[["poor",[3,3,[[18,3,3,0,3,[[487,3,3,0,3]]]],[14049,14051,14055]]]]},{"k":"H2490","v":[["*",[142,132,[[0,8,8,0,8,[[3,1,1,0,1],[5,1,1,1,2],[8,1,1,2,3],[9,1,1,3,4],[10,1,1,4,5],[40,1,1,5,6],[43,1,1,6,7],[48,1,1,7,8]]],[1,2,2,8,10,[[69,1,1,8,9],[80,1,1,9,10]]],[2,16,15,10,25,[[107,1,1,10,11],[108,3,3,11,14],[109,1,1,14,15],[110,7,6,15,21],[111,4,4,21,25]]],[3,5,5,25,30,[[132,2,2,25,27],[134,1,1,27,28],[141,1,1,28,29],[146,1,1,29,30]]],[4,10,7,30,37,[[154,4,3,30,33],[155,1,1,33,34],[168,2,1,34,35],[172,2,1,35,36],[180,1,1,36,37]]],[5,1,1,37,38,[[189,1,1,37,38]]],[6,8,8,38,46,[[220,1,1,38,39],[223,2,2,39,41],[226,2,2,41,43],[230,3,3,43,46]]],[8,4,4,46,50,[[238,2,2,46,48],[249,1,1,48,49],[257,1,1,49,50]]],[10,1,1,50,51,[[291,1,1,50,51]]],[11,2,2,51,53,[[322,1,1,51,52],[327,1,1,52,53]]],[12,3,3,53,56,[[338,1,1,53,54],[342,1,1,54,55],[364,1,1,55,56]]],[13,11,9,56,65,[[369,2,2,56,58],[386,1,1,58,59],[395,3,2,59,61],[397,3,3,61,64],[400,2,1,64,65]]],[14,2,2,65,67,[[405,2,2,65,67]]],[15,3,3,67,70,[[416,1,1,67,68],[425,2,2,68,70]]],[16,2,2,70,72,[[431,1,1,70,71],[434,1,1,71,72]]],[17,1,1,72,73,[[461,1,1,72,73]]],[18,7,7,73,80,[[532,1,1,73,74],[551,1,1,74,75],[564,1,1,75,76],[566,3,3,76,79],[586,1,1,79,80]]],[22,8,8,80,88,[[701,1,1,80,81],[721,1,1,81,82],[725,1,1,82,83],[726,1,1,83,84],[729,1,1,84,85],[731,1,1,85,86],[734,2,2,86,88]]],[23,4,4,88,92,[[760,1,1,88,89],[769,1,1,89,90],[775,1,1,90,91],[778,1,1,91,92]]],[24,1,1,92,93,[[798,1,1,92,93]]],[25,35,31,93,124,[[808,4,3,93,96],[810,2,1,96,97],[814,1,1,97,98],[821,8,8,98,106],[823,4,3,106,109],[824,2,2,109,111],[825,1,1,111,112],[826,1,1,112,113],[829,4,4,113,117],[833,1,1,117,118],[837,5,4,118,122],[840,1,1,122,123],[845,1,1,123,124]]],[26,1,1,124,125,[[860,1,1,124,125]]],[27,1,1,125,126,[[869,1,1,125,126]]],[29,1,1,126,127,[[880,1,1,126,127]]],[31,1,1,127,128,[[891,1,1,127,128]]],[35,1,1,128,129,[[908,1,1,128,129]]],[38,3,3,129,132,[[925,1,1,129,130],[926,2,2,130,132]]]],[105,138,225,242,272,1249,1336,1477,2076,2434,3272,3289,3293,3310,3321,3349,3351,3354,3357,3360,3368,3371,3378,3384,3401,4240,4241,4289,4472,4650,4962,4963,4969,4999,5351,5433,5641,5900,6829,6889,6909,6968,6971,7085,7093,7094,7278,7288,7543,7802,8757,9825,9962,10262,10429,11133,11230,11231,11609,11808,11818,11861,11864,11875,11936,12103,12105,12366,12688,12689,12806,12857,13480,14752,15055,15308,15357,15360,15365,15777,18086,18533,18605,18625,18682,18716,18755,18759,19354,19563,19696,19817,20334,20598,20599,20601,20628,20727,20904,20908,20909,20911,20916,20917,20919,20934,20984,20992,21002,21045,21046,21077,21086,21164,21166,21173,21175,21274,21379,21380,21381,21382,21455,21606,22067,22204,22386,22562,22824,23101,23113,23114]]],["+",[23,23,[[2,9,9,0,9,[[107,1,1,0,1],[108,3,3,1,4],[109,1,1,4,5],[110,2,2,5,7],[111,2,2,7,9]]],[4,1,1,9,10,[[168,1,1,9,10]]],[13,1,1,10,11,[[397,1,1,10,11]]],[15,2,2,11,13,[[425,2,2,11,13]]],[22,2,2,13,15,[[734,2,2,13,15]]],[23,2,2,15,17,[[760,1,1,15,16],[778,1,1,16,17]]],[25,5,5,17,22,[[808,1,1,17,18],[821,1,1,18,19],[825,1,1,19,20],[837,1,1,20,21],[840,1,1,21,22]]],[29,1,1,22,23,[[880,1,1,22,23]]]],[3272,3289,3293,3310,3321,3354,3357,3384,3401,5351,11864,12688,12689,18755,18759,19354,19817,20599,20916,21077,21379,21455,22386]]],["began",[33,31,[[0,6,6,0,6,[[3,1,1,0,1],[5,1,1,1,2],[8,1,1,2,3],[9,1,1,3,4],[40,1,1,4,5],[43,1,1,5,6]]],[3,1,1,6,7,[[141,1,1,6,7]]],[6,6,6,7,13,[[223,1,1,7,8],[226,2,2,8,10],[230,3,3,10,13]]],[8,1,1,13,14,[[238,1,1,13,14]]],[11,2,2,14,16,[[322,1,1,14,15],[327,1,1,15,16]]],[12,2,2,16,18,[[338,1,1,16,17],[364,1,1,17,18]]],[13,10,8,18,26,[[369,2,2,18,20],[386,1,1,20,21],[395,3,2,21,23],[397,2,2,23,25],[400,2,1,25,26]]],[14,2,2,26,28,[[405,2,2,26,28]]],[15,1,1,28,29,[[416,1,1,28,29]]],[25,1,1,29,30,[[810,1,1,29,30]]],[31,1,1,30,31,[[891,1,1,30,31]]]],[105,138,225,242,1249,1336,4472,6909,6968,6971,7085,7093,7094,7278,9825,9962,10262,11133,11230,11231,11609,11808,11818,11861,11875,11936,12103,12105,12366,20628,22562]]],["begin",[12,12,[[0,1,1,0,1,[[10,1,1,0,1]]],[4,4,4,1,5,[[154,3,3,1,4],[168,1,1,4,5]]],[5,1,1,5,6,[[189,1,1,5,6]]],[6,2,2,6,8,[[220,1,1,6,7],[223,1,1,7,8]]],[8,2,2,8,10,[[238,1,1,8,9],[257,1,1,9,10]]],[23,1,1,10,11,[[769,1,1,10,11]]],[25,1,1,11,12,[[810,1,1,11,12]]]],[272,4962,4963,4969,5351,5900,6829,6889,7288,7802,19563,20628]]],["begun",[6,6,[[3,2,2,0,2,[[132,2,2,0,2]]],[4,2,2,2,4,[[154,1,1,2,3],[155,1,1,3,4]]],[16,2,2,4,6,[[431,1,1,4,5],[434,1,1,5,6]]]],[4240,4241,4969,4999,12806,12857]]],["break",[3,3,[[3,1,1,0,1,[[146,1,1,0,1]]],[18,2,2,1,3,[[566,2,2,1,3]]]],[4650,15357,15360]]],["broken",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14752]]],["defile",[2,2,[[25,2,2,0,2,[[808,1,1,0,1],[829,1,1,1,2]]]],[20599,21164]]],["defiled",[4,4,[[12,1,1,0,1,[[342,1,1,0,1]]],[18,1,1,1,2,[[551,1,1,1,2]]],[25,2,2,2,4,[[808,1,1,2,3],[829,1,1,3,4]]]],[10429,15055,20601,21175]]],["defiledst",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1477]]],["defileth",[1,1,[[1,1,1,0,1,[[80,1,1,0,1]]]],[2434]]],["eat",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5433]]],["eaten",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5433]]],["first",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7543]]],["formed",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13480]]],["grapes",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5641]]],["herself",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3354]]],["himself",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3349]]],["inheritance",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[20992]]],["instruments",[1,1,[[18,1,1,0,1,[[564,1,1,0,1]]]],[15308]]],["piped",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8757]]],["pollute",[6,6,[[3,1,1,0,1,[[134,1,1,0,1]]],[25,4,4,1,5,[[808,1,1,1,2],[814,1,1,2,3],[821,1,1,3,4],[845,1,1,4,5]]],[26,1,1,5,6,[[860,1,1,5,6]]]],[4289,20598,20727,20934,21606,22067]]],["polluted",[11,11,[[1,1,1,0,1,[[69,1,1,0,1]]],[22,2,2,1,3,[[725,1,1,1,2],[726,1,1,2,3]]],[24,1,1,3,4,[[798,1,1,3,4]]],[25,6,6,4,10,[[821,6,6,4,10]]],[35,1,1,10,11,[[908,1,1,10,11]]]],[2076,18605,18625,20334,20904,20908,20909,20911,20917,20919,22824]]],["profane",[7,7,[[2,5,5,0,5,[[110,3,3,0,3],[111,2,2,3,5]]],[25,2,2,5,7,[[824,1,1,5,6],[829,1,1,6,7]]]],[3351,3360,3368,3371,3378,21046,21173]]],["profaned",[13,11,[[18,1,1,0,1,[[566,1,1,0,1]]],[22,1,1,1,2,[[721,1,1,1,2]]],[25,9,7,2,9,[[823,3,2,2,4],[824,1,1,4,5],[826,1,1,5,6],[837,4,3,6,9]]],[38,2,2,9,11,[[925,1,1,9,10],[926,1,1,10,11]]]],[15365,18533,20984,21002,21045,21086,21380,21381,21382,23101,23114]]],["profaning",[1,1,[[38,1,1,0,1,[[926,1,1,0,1]]]],[23113]]],["slain",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21274]]],["slayeth",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21166]]],["sorrow",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22204]]],["stain",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18086]]],["things",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19696]]],["wounded",[3,3,[[18,1,1,0,1,[[586,1,1,0,1]]],[22,2,2,1,3,[[729,1,1,1,2],[731,1,1,2,3]]]],[15777,18682,18716]]]]},{"k":"H2491","v":[["*",[94,85,[[0,1,1,0,1,[[33,1,1,0,1]]],[2,2,2,1,3,[[110,2,2,1,3]]],[3,5,5,3,8,[[135,2,2,3,5],[139,1,1,5,6],[147,2,2,6,8]]],[4,5,5,8,13,[[173,4,4,8,12],[184,1,1,12,13]]],[5,2,2,13,15,[[197,1,1,13,14],[199,1,1,14,15]]],[6,4,4,15,19,[[219,1,1,15,16],[226,1,1,16,17],[230,2,2,17,19]]],[8,3,3,19,22,[[252,1,1,19,20],[266,2,2,20,22]]],[9,5,5,22,27,[[267,3,3,22,25],[289,2,2,25,27]]],[10,1,1,27,28,[[301,1,1,27,28]]],[12,5,5,28,33,[[342,1,1,28,29],[347,2,2,29,31],[348,2,2,31,33]]],[13,1,1,33,34,[[379,1,1,33,34]]],[17,2,2,34,36,[[459,1,1,34,35],[474,1,1,35,36]]],[18,3,3,36,39,[[546,1,1,36,37],[565,1,1,37,38],[566,1,1,38,39]]],[19,1,1,39,40,[[634,1,1,39,40]]],[22,4,3,40,43,[[700,2,1,40,41],[712,1,1,41,42],[744,1,1,42,43]]],[23,9,8,43,51,[[753,1,1,43,44],[758,1,1,44,45],[769,1,1,45,46],[785,1,1,46,47],[795,5,4,47,51]]],[24,3,2,51,53,[[798,1,1,51,52],[800,2,1,52,53]]],[25,35,29,53,82,[[807,3,3,53,56],[810,1,1,56,57],[812,3,2,57,59],[822,4,3,59,62],[827,1,1,62,63],[829,2,2,63,65],[831,3,3,65,68],[832,2,2,68,70],[833,14,11,70,81],[836,2,1,81,82]]],[26,1,1,82,83,[[860,1,1,82,83]]],[33,1,1,83,84,[[902,1,1,83,84]]],[35,1,1,84,85,[[907,1,1,84,85]]]],[1007,3352,3359,4305,4307,4440,4672,4683,5448,5449,5450,5453,5800,6113,6176,6794,6973,7085,7093,7670,8010,8017,8041,8044,8047,8661,8671,9123,10450,10660,10667,10684,10693,11470,13448,13864,14961,15313,15336,16601,18054,18306,18938,19176,19311,19567,19966,20216,20259,20261,20264,20344,20429,20567,20570,20576,20629,20661,20662,20958,20969,20973,21115,21165,21180,21208,21215,21228,21247,21248,21268,21269,21270,21271,21272,21273,21276,21277,21278,21279,21280,21352,22062,22715,22817]]],["+",[2,2,[[6,1,1,0,1,[[226,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[6973,20429]]],["kill",[2,2,[[6,2,2,0,2,[[230,2,2,0,2]]]],[7085,7093]]],["man",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5450]]],["profane",[3,3,[[2,2,2,0,2,[[110,2,2,0,2]]],[25,1,1,2,3,[[822,1,1,2,3]]]],[3352,3359,20969]]],["slain",[73,65,[[0,1,1,0,1,[[33,1,1,0,1]]],[3,5,5,1,6,[[135,2,2,1,3],[139,1,1,3,4],[147,2,2,4,6]]],[4,4,4,6,10,[[173,3,3,6,9],[184,1,1,9,10]]],[5,2,2,10,12,[[197,1,1,10,11],[199,1,1,11,12]]],[8,2,2,12,14,[[266,2,2,12,14]]],[9,3,3,14,17,[[267,3,3,14,17]]],[10,1,1,17,18,[[301,1,1,17,18]]],[12,4,4,18,22,[[342,1,1,18,19],[347,2,2,19,21],[348,1,1,21,22]]],[13,1,1,22,23,[[379,1,1,22,23]]],[17,1,1,23,24,[[474,1,1,23,24]]],[18,2,2,24,26,[[565,1,1,24,25],[566,1,1,25,26]]],[22,4,3,26,29,[[700,2,1,26,27],[712,1,1,27,28],[744,1,1,28,29]]],[23,8,7,29,36,[[753,1,1,29,30],[758,1,1,30,31],[769,1,1,31,32],[785,1,1,32,33],[795,4,3,33,36]]],[24,1,1,36,37,[[800,1,1,36,37]]],[25,31,25,37,62,[[807,3,3,37,40],[810,1,1,40,41],[812,3,2,41,43],[822,3,2,43,45],[829,1,1,45,46],[831,2,2,46,48],[832,2,2,48,50],[833,14,11,50,61],[836,2,1,61,62]]],[26,1,1,62,63,[[860,1,1,62,63]]],[33,1,1,63,64,[[902,1,1,63,64]]],[35,1,1,64,65,[[907,1,1,64,65]]]],[1007,4305,4307,4440,4672,4683,5448,5449,5453,5800,6113,6176,8010,8017,8041,8044,8047,9123,10450,10660,10667,10684,11470,13864,15313,15336,18054,18306,18938,19176,19311,19567,19966,20216,20259,20261,20429,20567,20570,20576,20629,20661,20662,20958,20973,21165,21208,21215,21247,21248,21268,21269,21270,21271,21272,21273,21276,21277,21278,21279,21280,21352,22062,22715,22817]]],["slew",[3,3,[[9,2,2,0,2,[[289,2,2,0,2]]],[12,1,1,2,3,[[348,1,1,2,3]]]],[8661,8671,10693]]],["wounded",[10,10,[[6,1,1,0,1,[[219,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[17,1,1,2,3,[[459,1,1,2,3]]],[18,1,1,3,4,[[546,1,1,3,4]]],[19,1,1,4,5,[[634,1,1,4,5]]],[23,1,1,5,6,[[795,1,1,5,6]]],[24,1,1,6,7,[[798,1,1,6,7]]],[25,3,3,7,10,[[827,1,1,7,8],[829,1,1,8,9],[831,1,1,9,10]]]],[6794,7670,13448,14961,16601,20264,20344,21115,21180,21228]]]]},{"k":"H2492","v":[["*",[29,25,[[0,14,12,0,12,[[27,1,1,0,1],[36,5,4,1,5],[39,2,2,5,7],[40,5,4,7,11],[41,1,1,11,12]]],[4,3,3,12,15,[[165,3,3,12,15]]],[6,1,1,15,16,[[217,1,1,15,16]]],[17,1,1,16,17,[[474,1,1,16,17]]],[18,1,1,17,18,[[603,1,1,17,18]]],[22,3,2,18,20,[[707,2,1,18,19],[716,1,1,19,20]]],[23,3,2,20,22,[[767,2,1,20,21],[773,1,1,21,22]]],[26,2,2,22,24,[[851,2,2,22,24]]],[28,1,1,24,25,[[877,1,1,24,25]]]],[785,1088,1089,1092,1093,1177,1180,1196,1200,1206,1210,1261,5273,5275,5277,6707,13838,16116,18201,18406,19509,19643,21759,21761,22339]]],["dream",[2,2,[[18,1,1,0,1,[[603,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[16116,22339]]],["dreamed",[20,17,[[0,14,12,0,12,[[27,1,1,0,1],[36,5,4,1,5],[39,2,2,5,7],[40,5,4,7,11],[41,1,1,11,12]]],[6,1,1,12,13,[[217,1,1,12,13]]],[23,3,2,13,15,[[767,2,1,13,14],[773,1,1,14,15]]],[26,2,2,15,17,[[851,2,2,15,17]]]],[785,1088,1089,1092,1093,1177,1180,1196,1200,1206,1210,1261,6707,19509,19643,21759,21761]]],["dreamer",[3,3,[[4,3,3,0,3,[[165,3,3,0,3]]]],[5273,5275,5277]]],["dreameth",[2,1,[[22,2,1,0,1,[[707,2,1,0,1]]]],[18201]]],["liking",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13838]]],["recover",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18406]]]]},{"k":"H2493","v":[["*",[22,18,[[26,22,18,0,18,[[851,11,9,0,9],[853,8,7,9,16],[854,1,1,16,17],[856,2,1,17,18]]]],[21762,21763,21764,21765,21767,21784,21786,21794,21803,21842,21843,21844,21845,21846,21855,21856,21886,21934]]],["dream",[21,17,[[26,21,17,0,17,[[851,11,9,0,9],[853,8,7,9,16],[856,2,1,16,17]]]],[21762,21763,21764,21765,21767,21784,21786,21794,21803,21842,21843,21844,21845,21846,21855,21856,21934]]],["dreams",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21886]]]]},{"k":"H2494","v":[["Helem",[1,1,[[37,1,1,0,1,[[916,1,1,0,1]]]],[22961]]]]},{"k":"H2495","v":[["egg",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12984]]]]},{"k":"H2496","v":[["*",[5,5,[[4,2,2,0,2,[[160,1,1,0,1],[184,1,1,1,2]]],[17,1,1,2,3,[[463,1,1,2,3]]],[18,1,1,3,4,[[591,1,1,3,4]]],[22,1,1,4,5,[[728,1,1,4,5]]]],[5152,5771,13513,15830,18669]]],["+",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5771]]],["flint",[3,3,[[4,1,1,0,1,[[160,1,1,0,1]]],[18,1,1,1,2,[[591,1,1,1,2]]],[22,1,1,2,3,[[728,1,1,2,3]]]],[5152,15830,18669]]],["rock",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13513]]]]},{"k":"H2497","v":[["Helon",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3613,3665,3874,3879,4004]]]]},{"k":"H2498","v":[["*",[28,27,[[0,4,4,0,4,[[30,2,2,0,2],[34,1,1,2,3],[40,1,1,3,4]]],[2,1,1,4,5,[[116,1,1,4,5]]],[6,1,1,5,6,[[215,1,1,5,6]]],[8,1,1,6,7,[[245,1,1,6,7]]],[9,1,1,7,8,[[278,1,1,7,8]]],[17,7,7,8,15,[[439,1,1,8,9],[444,2,2,9,11],[446,1,1,11,12],[449,1,1,12,13],[455,1,1,13,14],[464,1,1,14,15]]],[18,4,3,15,18,[[567,2,2,15,17],[579,2,1,17,18]]],[21,1,1,18,19,[[672,1,1,18,19]]],[22,7,7,19,26,[[680,1,1,19,20],[686,1,1,20,21],[687,1,1,21,22],[699,1,1,22,23],[702,1,1,23,24],[718,1,1,24,25],[719,1,1,25,26]]],[34,1,1,26,27,[[903,1,1,26,27]]]],[880,914,1013,1209,3580,6649,7421,8306,12945,13062,13077,13118,13188,13350,13552,15383,15384,15547,17565,17703,17815,17839,18036,18100,18451,18452,22742]]],["+",[2,2,[[0,2,2,0,2,[[30,2,2,0,2]]]],[880,914]]],["abolish",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17703]]],["alter",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3580]]],["away",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13077]]],["change",[4,4,[[0,1,1,0,1,[[34,1,1,0,1]]],[18,1,1,1,2,[[579,1,1,1,2]]],[22,1,1,2,3,[[687,1,1,2,3]]],[34,1,1,3,4,[[903,1,1,3,4]]]],[1013,15547,17839,22742]]],["changed",[4,4,[[0,1,1,0,1,[[40,1,1,0,1]]],[9,1,1,1,2,[[278,1,1,1,2]]],[18,1,1,2,3,[[579,1,1,2,3]]],[22,1,1,3,4,[[702,1,1,3,4]]]],[1209,8306,15547,18100]]],["off",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13118]]],["on",[2,2,[[8,1,1,0,1,[[245,1,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]]],[7421,13062]]],["over",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17565]]],["pass",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17815]]],["passed",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12945]]],["renew",[2,2,[[22,2,2,0,2,[[718,1,1,0,1],[719,1,1,1,2]]]],[18451,18452]]],["renewed",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13552]]],["sprout",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13188]]],["through",[3,3,[[6,1,1,0,1,[[215,1,1,0,1]]],[17,1,1,1,2,[[455,1,1,1,2]]],[22,1,1,2,3,[[699,1,1,2,3]]]],[6649,13350,18036]]],["up",[2,2,[[18,2,2,0,2,[[567,2,2,0,2]]]],[15383,15384]]]]},{"k":"H2499","v":[["pass",[4,4,[[26,4,4,0,4,[[853,4,4,0,4]]]],[21853,21860,21862,21869]]]]},{"k":"H2500","v":[["for",[2,2,[[3,2,2,0,2,[[134,2,2,0,2]]]],[4278,4288]]]]},{"k":"H2501","v":[["+",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6354]]]]},{"k":"H2502","v":[["*",[44,44,[[2,2,2,0,2,[[103,2,2,0,2]]],[3,9,9,2,11,[[147,2,2,2,4],[148,7,7,4,11]]],[4,3,3,11,14,[[155,1,1,11,12],[177,2,2,12,14]]],[5,4,4,14,18,[[190,1,1,14,15],[192,3,3,15,18]]],[9,1,1,18,19,[[288,1,1,18,19]]],[12,2,2,19,21,[[349,2,2,19,21]]],[13,3,3,21,24,[[383,1,1,21,22],[386,1,1,22,23],[394,1,1,23,24]]],[17,1,1,24,25,[[471,1,1,24,25]]],[18,12,12,25,37,[[483,1,1,25,26],[484,1,1,26,27],[495,1,1,27,28],[511,1,1,28,29],[527,1,1,29,30],[537,1,1,30,31],[558,1,1,31,32],[568,1,1,32,33],[585,1,1,33,34],[593,1,1,34,35],[596,1,1,35,36],[617,1,1,36,37]]],[19,2,2,37,39,[[638,2,2,37,39]]],[22,3,3,39,42,[[693,1,1,39,40],[698,1,1,40,41],[736,1,1,41,42]]],[24,1,1,42,43,[[800,1,1,42,43]]],[27,1,1,43,44,[[866,1,1,43,44]]]],[3151,3154,4667,4669,4735,4738,4739,4745,4747,4748,4750,4993,5556,5557,5923,5956,5958,5962,8622,10743,10744,11541,11608,11778,13751,13989,13999,14137,14395,14683,14812,15224,15410,15748,15856,16051,16264,16696,16697,17964,18031,18797,20423,22158]]],["+",[3,3,[[2,2,2,0,2,[[103,2,2,0,2]]],[3,1,1,2,3,[[148,1,1,2,3]]]],[3151,3154,4735]]],["Arm",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4667]]],["Deliver",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16264]]],["armed",[11,11,[[3,7,7,0,7,[[147,1,1,0,1],[148,6,6,1,7]]],[4,1,1,7,8,[[155,1,1,7,8]]],[5,1,1,8,9,[[192,1,1,8,9]]],[12,2,2,9,11,[[349,2,2,9,11]]]],[4669,4738,4739,4745,4747,4748,4750,4993,5956,10743,10744]]],["army",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11608]]],["deliver",[4,4,[[18,4,4,0,4,[[483,1,1,0,1],[527,1,1,1,2],[568,1,1,2,3],[596,1,1,3,4]]]],[13989,14683,15410,16051]]],["delivered",[9,9,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,6,6,1,7,[[484,1,1,1,2],[495,1,1,2,3],[537,1,1,3,4],[558,1,1,4,5],[585,1,1,5,6],[593,1,1,6,7]]],[19,2,2,7,9,[[638,2,2,7,9]]]],[8622,13999,14137,14812,15224,15748,15856,16696,16697]]],["delivereth",[2,2,[[17,1,1,0,1,[[471,1,1,0,1]]],[18,1,1,1,2,[[511,1,1,1,2]]]],[13751,14395]]],["fat",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18797]]],["loose",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5556]]],["loosed",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5557]]],["men",[3,3,[[5,2,2,0,2,[[192,2,2,0,2]]],[13,1,1,2,3,[[394,1,1,2,3]]]],[5958,5962,11778]]],["off",[1,1,[[22,1,1,0,1,[[698,1,1,0,1]]]],[18031]]],["out",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20423]]],["prepared",[2,2,[[5,1,1,0,1,[[190,1,1,0,1]]],[13,1,1,1,2,[[383,1,1,1,2]]]],[5923,11541]]],["soldiers",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17964]]],["withdrawn",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22158]]]]},{"k":"H2503","v":[["Helez",[5,4,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,4,3,1,4,[[339,2,1,1,2],[348,1,1,2,3],[364,1,1,3,4]]]],[8679,10345,10700,11119]]]]},{"k":"H2504","v":[["*",[10,10,[[0,1,1,0,1,[[34,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[13,1,1,2,3,[[372,1,1,2,3]]],[17,3,3,3,6,[[466,1,1,3,4],[473,1,1,4,5],[475,1,1,5,6]]],[22,3,3,6,9,[[683,1,1,6,7],[689,1,1,7,8],[710,1,1,8,9]]],[23,1,1,9,10,[[774,1,1,9,10]]]],[1022,9004,11291,13608,13796,13871,17766,17889,18270,19673]]],["+",[2,2,[[0,1,1,0,1,[[34,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]]],[1022,9004]]],["loins",[7,7,[[13,1,1,0,1,[[372,1,1,0,1]]],[17,3,3,1,4,[[466,1,1,1,2],[473,1,1,2,3],[475,1,1,3,4]]],[22,2,2,4,6,[[683,1,1,4,5],[710,1,1,5,6]]],[23,1,1,6,7,[[774,1,1,6,7]]]],[11291,13608,13796,13871,17766,18270,19673]]],["reins",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17889]]]]},{"k":"H2505","v":[["*",[65,64,[[0,3,3,0,3,[[13,1,1,0,1],[48,2,2,1,3]]],[1,1,1,3,4,[[64,1,1,3,4]]],[3,3,3,4,7,[[142,3,3,4,7]]],[4,2,2,7,9,[[156,1,1,7,8],[181,1,1,8,9]]],[5,7,7,9,16,[[199,1,1,9,10],[200,1,1,10,11],[204,3,3,11,14],[205,1,1,14,15],[208,1,1,15,16]]],[6,1,1,16,17,[[215,1,1,16,17]]],[8,1,1,17,18,[[265,1,1,17,18]]],[9,2,2,18,20,[[272,1,1,18,19],[285,1,1,19,20]]],[10,2,2,20,22,[[306,1,1,20,21],[308,1,1,21,22]]],[12,5,5,22,27,[[353,1,1,22,23],[360,1,1,23,24],[361,3,3,24,27]]],[13,2,2,27,29,[[389,1,1,27,28],[394,1,1,28,29]]],[15,2,2,29,31,[[421,1,1,29,30],[425,1,1,30,31]]],[17,4,4,31,35,[[456,1,1,31,32],[462,1,1,32,33],[473,1,1,33,34],[474,1,1,34,35]]],[18,7,7,35,42,[[482,1,1,35,36],[499,1,1,36,37],[513,1,1,37,38],[532,1,1,38,39],[537,1,1,39,40],[545,1,1,40,41],[585,1,1,41,42]]],[19,7,7,42,49,[[629,1,1,42,43],[634,1,1,43,44],[643,1,1,44,45],[644,1,1,45,46],[655,1,1,46,47],[656,2,2,47,49]]],[22,6,5,49,54,[[687,1,1,49,50],[711,1,1,50,51],[712,1,1,51,52],[719,1,1,52,53],[731,2,1,53,54]]],[23,1,1,54,55,[[781,1,1,54,55]]],[24,1,1,55,56,[[800,1,1,55,56]]],[25,2,2,56,58,[[806,1,1,56,57],[848,1,1,57,58]]],[26,1,1,58,59,[[860,1,1,58,59]]],[27,1,1,59,60,[[871,1,1,59,60]]],[28,1,1,60,61,[[878,1,1,60,61]]],[29,1,1,61,62,[[885,1,1,61,62]]],[32,1,1,62,63,[[894,1,1,62,63]]],[37,1,1,63,64,[[924,1,1,63,64]]]],[351,1480,1500,1929,4542,4544,4545,5023,5705,6161,6192,6295,6298,6303,6372,6434,6653,8002,8176,8540,9304,9347,10823,10989,11018,11019,11020,11674,11785,12533,12684,13372,13498,13817,13851,13982,14222,14440,14753,14813,14912,15749,16449,16580,16859,16875,17219,17229,17248,17832,18302,18320,18458,18723,19886,20436,20547,21700,22075,22227,22345,22481,22599,23069]]],["+",[13,13,[[4,1,1,0,1,[[156,1,1,0,1]]],[5,5,5,1,6,[[199,1,1,1,2],[200,1,1,2,3],[204,2,2,3,5],[205,1,1,5,6]]],[9,1,1,6,7,[[285,1,1,6,7]]],[10,1,1,7,8,[[308,1,1,7,8]]],[18,1,1,8,9,[[513,1,1,8,9]]],[19,3,3,9,12,[[643,1,1,9,10],[655,1,1,10,11],[656,1,1,11,12]]],[25,1,1,12,13,[[848,1,1,12,13]]]],[5023,6161,6192,6295,6303,6372,8540,9347,14440,16859,17219,17229,21700]]],["dealt",[2,2,[[9,1,1,0,1,[[272,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]]],[8176,10823]]],["distribute",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12684]]],["distributed",[2,2,[[12,1,1,0,1,[[361,1,1,0,1]]],[13,1,1,1,2,[[389,1,1,1,2]]]],[11018,11674]]],["distributeth",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13372]]],["divide",[14,13,[[0,2,2,0,2,[[48,2,2,0,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[5,2,2,3,5,[[204,1,1,3,4],[208,1,1,4,5]]],[15,1,1,5,6,[[421,1,1,5,6]]],[17,1,1,6,7,[[462,1,1,6,7]]],[18,2,2,7,9,[[537,1,1,7,8],[585,1,1,8,9]]],[22,3,2,9,11,[[687,1,1,9,10],[731,2,1,10,11]]],[25,1,1,11,12,[[806,1,1,11,12]]],[26,1,1,12,13,[[860,1,1,12,13]]]],[1480,1500,1929,6298,6434,12533,13498,14813,15749,17832,18723,20547,22075]]],["divided",[16,16,[[3,3,3,0,3,[[142,3,3,0,3]]],[6,1,1,3,4,[[215,1,1,3,4]]],[10,1,1,4,5,[[306,1,1,4,5]]],[12,3,3,5,8,[[360,1,1,5,6],[361,2,2,6,8]]],[18,1,1,8,9,[[545,1,1,8,9]]],[22,2,2,9,11,[[711,1,1,9,10],[712,1,1,10,11]]],[24,1,1,11,12,[[800,1,1,11,12]]],[27,1,1,12,13,[[871,1,1,12,13]]],[29,1,1,13,14,[[885,1,1,13,14]]],[32,1,1,14,15,[[894,1,1,14,15]]],[37,1,1,15,16,[[924,1,1,15,16]]]],[4542,4544,4545,6653,9304,10989,11019,11020,14912,18302,18320,20436,22227,22481,22599,23069]]],["flatter",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13982]]],["flattereth",[2,2,[[19,2,2,0,2,[[629,1,1,0,1],[634,1,1,1,2]]]],[16449,16580]]],["given",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5705]]],["himself",[2,2,[[0,1,1,0,1,[[13,1,1,0,1]]],[23,1,1,1,2,[[781,1,1,1,2]]]],[351,19886]]],["imparted",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13851]]],["part",[3,3,[[8,1,1,0,1,[[265,1,1,0,1]]],[18,1,1,1,2,[[499,1,1,1,2]]],[19,1,1,2,3,[[644,1,1,2,3]]]],[8002,14222,16875]]],["parted",[2,2,[[17,1,1,0,1,[[473,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]]],[13817,22345]]],["partner",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17248]]],["portion",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11785]]],["smoother",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14753]]],["smootheth",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18458]]]]},{"k":"H2506","v":[["*",[67,63,[[0,3,2,0,2,[[13,2,1,0,1],[30,1,1,1,2]]],[2,1,1,2,3,[[95,1,1,2,3]]],[3,3,2,3,5,[[134,2,1,3,4],[147,1,1,4,5]]],[4,8,7,5,12,[[162,1,1,5,6],[164,1,1,6,7],[166,2,2,7,9],[170,3,2,9,11],[184,1,1,11,12]]],[5,9,9,12,21,[[200,1,1,12,13],[201,1,1,13,14],[204,4,4,14,18],[205,1,1,18,19],[208,2,2,19,21]]],[8,2,1,21,22,[[265,2,1,21,22]]],[9,1,1,22,23,[[286,1,1,22,23]]],[10,1,1,23,24,[[302,1,1,23,24]]],[11,3,3,24,27,[[321,3,3,24,27]]],[13,1,1,27,28,[[376,1,1,27,28]]],[15,1,1,28,29,[[414,1,1,28,29]]],[17,5,5,29,34,[[452,1,1,29,30],[455,1,1,30,31],[462,1,1,31,32],[466,1,1,32,33],[467,1,1,33,34]]],[18,6,6,34,40,[[493,1,1,34,35],[494,1,1,35,36],[527,1,1,36,37],[550,1,1,37,38],[596,1,1,38,39],[619,1,1,39,40]]],[19,1,1,40,41,[[634,1,1,40,41]]],[20,8,8,41,49,[[660,2,2,41,43],[661,1,1,43,44],[663,2,2,44,46],[667,2,2,46,48],[669,1,1,48,49]]],[22,3,3,49,52,[[695,1,1,49,50],[735,1,1,50,51],[739,1,1,51,52]]],[23,2,2,52,54,[[754,1,1,52,53],[795,1,1,53,54]]],[24,1,1,54,55,[[799,1,1,54,55]]],[25,3,3,55,58,[[846,1,1,55,56],[849,2,2,56,58]]],[27,1,1,58,59,[[866,1,1,58,59]]],[29,1,1,59,60,[[885,1,1,59,60]]],[32,1,1,60,61,[[894,1,1,60,61]]],[34,1,1,61,62,[[903,1,1,61,62]]],[37,1,1,62,63,[[912,1,1,62,63]]]],[360,887,2866,4277,4700,5195,5252,5317,5319,5385,5392,5767,6191,6215,6298,6299,6300,6302,6330,6451,6453,8002,8555,9167,9766,9792,9793,11411,12327,13265,13355,13494,13590,13645,14097,14117,14686,15046,15955,16291,16596,17343,17354,17381,17415,17416,17481,17484,17515,17997,18771,18850,19217,20231,20378,21637,21710,21723,22159,22468,22599,22747,22911]]],["+",[2,1,[[4,2,1,0,1,[[170,2,1,0,1]]]],[5392]]],["flattering",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16596]]],["flattery",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13265]]],["inheritance",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14097]]],["part",[18,16,[[3,2,1,0,1,[[134,2,1,0,1]]],[4,5,5,1,6,[[162,1,1,1,2],[164,1,1,2,3],[166,2,2,3,5],[170,1,1,5,6]]],[5,6,6,6,12,[[200,1,1,6,7],[201,1,1,7,8],[204,1,1,8,9],[205,1,1,9,10],[208,2,2,10,12]]],[8,2,1,12,13,[[265,2,1,12,13]]],[9,1,1,13,14,[[286,1,1,13,14]]],[17,1,1,14,15,[[467,1,1,14,15]]],[29,1,1,15,16,[[885,1,1,15,16]]]],[4277,5195,5252,5317,5319,5385,6191,6215,6300,6330,6451,6453,8002,8555,13645,22468]]],["partaker",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14686]]],["parts",[4,4,[[5,3,3,0,3,[[204,3,3,0,3]]],[25,1,1,3,4,[[849,1,1,3,4]]]],[6298,6299,6302,21710]]],["portion",[36,35,[[0,3,2,0,2,[[13,2,1,0,1],[30,1,1,1,2]]],[2,1,1,2,3,[[95,1,1,2,3]]],[3,1,1,3,4,[[147,1,1,3,4]]],[4,1,1,4,5,[[184,1,1,4,5]]],[10,1,1,5,6,[[302,1,1,5,6]]],[11,3,3,6,9,[[321,3,3,6,9]]],[13,1,1,9,10,[[376,1,1,9,10]]],[15,1,1,10,11,[[414,1,1,10,11]]],[17,3,3,11,14,[[455,1,1,11,12],[462,1,1,12,13],[466,1,1,13,14]]],[18,4,4,14,18,[[494,1,1,14,15],[550,1,1,15,16],[596,1,1,16,17],[619,1,1,17,18]]],[20,8,8,18,26,[[660,2,2,18,20],[661,1,1,20,21],[663,2,2,21,23],[667,2,2,23,25],[669,1,1,25,26]]],[22,3,3,26,29,[[695,1,1,26,27],[735,1,1,27,28],[739,1,1,28,29]]],[23,2,2,29,31,[[754,1,1,29,30],[795,1,1,30,31]]],[24,1,1,31,32,[[799,1,1,31,32]]],[32,1,1,32,33,[[894,1,1,32,33]]],[34,1,1,33,34,[[903,1,1,33,34]]],[37,1,1,34,35,[[912,1,1,34,35]]]],[360,887,2866,4700,5767,9167,9766,9792,9793,11411,12327,13355,13494,13590,14117,15046,15955,16291,17343,17354,17381,17415,17416,17481,17484,17515,17997,18771,18850,19217,20231,20378,22599,22747,22911]]],["portions",[3,3,[[25,2,2,0,2,[[846,1,1,0,1],[849,1,1,1,2]]],[27,1,1,2,3,[[866,1,1,2,3]]]],[21637,21723,22159]]]]},{"k":"H2507","v":[["Helek",[2,2,[[3,1,1,0,1,[[142,1,1,0,1]]],[5,1,1,1,2,[[203,1,1,1,2]]]],[4519,6277]]]]},{"k":"H2508","v":[["portion",[3,3,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,2,2,1,3,[[853,2,2,1,3]]]],[12126,21852,21860]]]]},{"k":"H2509","v":[["*",[4,4,[[0,1,1,0,1,[[26,1,1,0,1]]],[19,2,2,1,3,[[632,1,1,1,2],[653,1,1,2,3]]],[25,1,1,3,4,[[813,1,1,3,4]]]],[738,16520,17169,20704]]],["flattering",[2,2,[[19,1,1,0,1,[[653,1,1,0,1]]],[25,1,1,1,2,[[813,1,1,1,2]]]],[17169,20704]]],["smooth",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[738]]],["smoother",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16520]]]]},{"k":"H2510","v":[["Halak",[2,2,[[5,2,2,0,2,[[197,1,1,0,1],[198,1,1,1,2]]]],[6124,6137]]]]},{"k":"H2511","v":[["smooth",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18771]]]]},{"k":"H2512","v":[["smooth",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7658]]]]},{"k":"H2513","v":[["*",[29,25,[[0,2,2,0,2,[[26,1,1,0,1],[32,1,1,1,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[5,1,1,3,4,[[210,1,1,3,4]]],[7,2,2,4,6,[[233,1,1,4,5],[235,1,1,5,6]]],[9,5,4,6,10,[[280,3,2,6,8],[289,2,2,8,10]]],[11,6,5,10,15,[[315,2,2,10,12],[321,4,3,12,15]]],[12,2,2,15,17,[[348,2,2,15,17]]],[17,1,1,17,18,[[459,1,1,17,18]]],[18,3,3,18,21,[[489,2,2,18,20],[550,1,1,20,21]]],[19,1,1,21,22,[[633,1,1,21,22]]],[22,1,1,22,23,[[708,1,1,22,23]]],[23,2,1,23,24,[[756,2,1,23,24]]],[29,2,1,24,25,[[882,2,1,24,25]]]],[743,979,5831,6508,7152,7193,8386,8387,8664,8665,9595,9601,9777,9781,9782,10686,10687,13454,14068,14069,15038,16564,18227,19259,22417]]],["+",[2,2,[[19,1,1,0,1,[[633,1,1,0,1]]],[23,1,1,1,2,[[756,1,1,1,2]]]],[16564,19259]]],["field",[3,2,[[9,3,2,0,2,[[280,3,2,0,2]]]],[8386,8387]]],["flattering",[2,2,[[18,2,2,0,2,[[489,2,2,0,2]]]],[14068,14069]]],["ground",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8665]]],["land",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9595]]],["parcel",[5,5,[[0,1,1,0,1,[[32,1,1,0,1]]],[5,1,1,1,2,[[210,1,1,1,2]]],[7,1,1,2,3,[[235,1,1,2,3]]],[12,2,2,3,5,[[348,2,2,3,5]]]],[979,6508,7193,10686,10687]]],["part",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7152]]],["piece",[4,3,[[9,1,1,0,1,[[289,1,1,0,1]]],[11,1,1,1,2,[[315,1,1,1,2]]],[29,2,1,2,3,[[882,2,1,2,3]]]],[8664,9601,22417]]],["places",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15038]]],["plat",[2,1,[[11,2,1,0,1,[[321,2,1,0,1]]]],[9782]]],["portion",[5,5,[[4,1,1,0,1,[[185,1,1,0,1]]],[11,2,2,1,3,[[321,2,2,1,3]]],[17,1,1,3,4,[[459,1,1,3,4]]],[23,1,1,4,5,[[756,1,1,4,5]]]],[5831,9777,9781,13454,19259]]],["smooth",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[743]]],["things",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18227]]]]},{"k":"H2514","v":[["flatteries",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22068]]]]},{"k":"H2515","v":[["division",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11971]]]]},{"k":"H2516","v":[["Helekites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4519]]]]},{"k":"H2517","v":[["Helkai",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12639]]]]},{"k":"H2518","v":[["*",[34,31,[[11,11,10,0,10,[[330,3,3,0,3],[334,6,5,3,8],[335,2,2,8,10]]],[12,5,4,10,14,[[343,3,2,10,12],[346,1,1,12,13],[363,1,1,13,14]]],[13,8,7,14,21,[[400,7,6,14,20],[401,1,1,20,21]]],[14,1,1,21,22,[[409,1,1,21,22]]],[15,4,4,22,26,[[420,1,1,22,23],[423,1,1,23,24],[424,2,2,24,26]]],[22,3,3,26,29,[[700,1,1,26,27],[714,2,2,27,29]]],[23,2,2,29,31,[[745,1,1,29,30],[773,1,1,30,31]]]],[10042,10050,10061,10149,10153,10155,10157,10159,10169,10189,10467,10499,10626,11088,11942,11947,11948,11951,11953,11955,11974,12174,12497,12599,12631,12645,18072,18333,18352,18947,19638]]],["Hilkiah",[33,30,[[11,11,10,0,10,[[330,3,3,0,3],[334,6,5,3,8],[335,2,2,8,10]]],[12,5,4,10,14,[[343,3,2,10,12],[346,1,1,12,13],[363,1,1,13,14]]],[13,8,7,14,21,[[400,7,6,14,20],[401,1,1,20,21]]],[14,1,1,21,22,[[409,1,1,21,22]]],[15,4,4,22,26,[[420,1,1,22,23],[423,1,1,23,24],[424,2,2,24,26]]],[22,2,2,26,28,[[700,1,1,26,27],[714,1,1,27,28]]],[23,2,2,28,30,[[745,1,1,28,29],[773,1,1,29,30]]]],[10042,10050,10061,10149,10153,10155,10157,10159,10169,10189,10467,10499,10626,11088,11942,11947,11948,11951,11953,11955,11974,12174,12497,12599,12631,12645,18072,18352,18947,19638]]],["Hilkiah's",[1,1,[[22,1,1,0,1,[[714,1,1,0,1]]]],[18333]]]]},{"k":"H2519","v":[["*",[4,4,[[18,1,1,0,1,[[512,1,1,0,1]]],[23,1,1,1,2,[[767,1,1,1,2]]],[26,2,2,2,4,[[860,2,2,2,4]]]],[14416,19496,22057,22070]]],["flatteries",[2,2,[[26,2,2,0,2,[[860,2,2,0,2]]]],[22057,22070]]],["slippery",[2,2,[[18,1,1,0,1,[[512,1,1,0,1]]],[23,1,1,1,2,[[767,1,1,1,2]]]],[14416,19496]]]]},{"k":"H2520","v":[["Helkath",[2,2,[[5,2,2,0,2,[[205,1,1,0,1],[207,1,1,1,2]]]],[6346,6412]]]]},{"k":"H2521","v":[["Helkathhazzurim",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8065]]]]},{"k":"H2522","v":[["*",[3,3,[[1,1,1,0,1,[[66,1,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]]],[1996,13191,17940]]],["+",[2,2,[[1,1,1,0,1,[[66,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]]],[1996,17940]]],["away",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13191]]]]},{"k":"H2523","v":[["weak",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22353]]]]},{"k":"H2524","v":[["law",[4,4,[[0,2,2,0,2,[[37,2,2,0,2]]],[8,2,2,2,4,[[239,2,2,2,4]]]],[1132,1144,7316,7318]]]]},{"k":"H2525","v":[["*",[2,2,[[5,1,1,0,1,[[195,1,1,0,1]]],[17,1,1,1,2,[[472,1,1,1,2]]]],[6049,13786]]],["hot",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6049]]],["warm",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13786]]]]},{"k":"H2526","v":[["Ham",[16,15,[[0,9,8,0,8,[[4,1,1,0,1],[5,1,1,1,2],[6,1,1,2,3],[8,3,2,3,5],[9,3,3,5,8]]],[12,3,3,8,11,[[338,2,2,8,10],[341,1,1,10,11]]],[18,4,4,11,15,[[555,1,1,11,12],[582,2,2,12,14],[583,1,1,14,15]]]],[137,147,172,223,227,235,240,254,10256,10260,10425,15164,15629,15633,15673]]]]},{"k":"H2527","v":[["*",[12,11,[[0,2,2,0,2,[[7,1,1,0,1],[17,1,1,1,2]]],[8,3,3,2,5,[[246,2,2,2,4],[256,1,1,4,5]]],[9,1,1,5,6,[[270,1,1,5,6]]],[17,2,2,6,8,[[441,1,1,6,7],[459,1,1,7,8]]],[22,2,1,8,9,[[696,2,1,8,9]]],[23,2,2,9,11,[[761,1,1,9,10],[795,1,1,10,11]]]],[205,425,7454,7456,7778,8125,12995,13455,18001,19365,20251]]],["heat",[9,8,[[0,2,2,0,2,[[7,1,1,0,1],[17,1,1,1,2]]],[8,1,1,2,3,[[246,1,1,2,3]]],[9,1,1,3,4,[[270,1,1,3,4]]],[17,1,1,4,5,[[459,1,1,4,5]]],[22,2,1,5,6,[[696,2,1,5,6]]],[23,2,2,6,8,[[761,1,1,6,7],[795,1,1,7,8]]]],[205,425,7456,8125,13455,18001,19365,20251]]],["hot",[3,3,[[8,2,2,0,2,[[246,1,1,0,1],[256,1,1,1,2]]],[17,1,1,2,3,[[441,1,1,2,3]]]],[7454,7778,12995]]]]},{"k":"H2528","v":[["fury",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21820,21826]]]]},{"k":"H2529","v":[["*",[10,9,[[0,1,1,0,1,[[17,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[9,1,1,3,4,[[283,1,1,3,4]]],[17,2,2,4,6,[[455,1,1,4,5],[464,1,1,5,6]]],[19,1,1,6,7,[[657,1,1,6,7]]],[22,3,2,7,9,[[685,3,2,7,9]]]],[432,5772,6648,8478,13343,13538,17284,17797,17804]]],["Butter",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]]],[5772,17797]]],["butter",[8,7,[[0,1,1,0,1,[[17,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[9,1,1,2,3,[[283,1,1,2,3]]],[17,2,2,3,5,[[455,1,1,3,4],[464,1,1,4,5]]],[19,1,1,5,6,[[657,1,1,5,6]]],[22,2,1,6,7,[[685,2,1,6,7]]]],[432,6648,8478,13343,13538,17284,17804]]]]},{"k":"H2530","v":[["*",[30,29,[[0,3,3,0,3,[[1,1,1,0,1],[2,1,1,1,2],[26,1,1,2,3]]],[1,3,2,3,5,[[69,2,1,3,4],[83,1,1,4,5]]],[4,2,2,5,7,[[157,1,1,5,6],[159,1,1,6,7]]],[5,1,1,7,8,[[193,1,1,7,8]]],[13,1,1,8,9,[[386,1,1,8,9]]],[14,1,1,9,10,[[410,1,1,9,10]]],[17,1,1,10,11,[[455,1,1,10,11]]],[18,3,3,11,14,[[496,1,1,11,12],[516,1,1,12,13],[545,1,1,13,14]]],[19,4,4,14,18,[[628,1,1,14,15],[633,1,1,15,16],[639,1,1,16,17],[648,1,1,17,18]]],[21,1,1,18,19,[[672,1,1,18,19]]],[22,3,3,19,22,[[679,1,1,19,20],[722,1,1,20,21],[731,1,1,21,22]]],[26,6,6,22,28,[[858,1,1,22,23],[859,3,3,23,26],[860,2,2,26,28]]],[32,1,1,28,29,[[894,1,1,28,29]]]],[39,61,742,2068,2520,5074,5136,5997,11612,12228,13346,14178,14523,14916,16422,16565,16731,17004,17557,17683,18542,18713,22011,22018,22026,22034,22074,22079,22597]]],["+",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2520]]],["Lust",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16565]]],["beauty",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14523]]],["beloved",[3,3,[[26,3,3,0,3,[[858,1,1,0,1],[859,2,2,1,3]]]],[22011,22026,22034]]],["covet",[3,2,[[1,2,1,0,1,[[69,2,1,0,1]]],[32,1,1,1,2,[[894,1,1,1,2]]]],[2068,22597]]],["coveted",[1,1,[[5,1,1,0,1,[[193,1,1,0,1]]]],[5997]]],["delight",[2,2,[[19,1,1,0,1,[[628,1,1,0,1]]],[21,1,1,1,2,[[672,1,1,1,2]]]],[16422,17557]]],["desire",[3,3,[[4,2,2,0,2,[[157,1,1,0,1],[159,1,1,1,2]]],[22,1,1,2,3,[[731,1,1,2,3]]]],[5074,5136,18713]]],["desired",[5,5,[[0,1,1,0,1,[[2,1,1,0,1]]],[17,1,1,1,2,[[455,1,1,1,2]]],[18,1,1,2,3,[[496,1,1,2,3]]],[19,1,1,3,4,[[648,1,1,3,4]]],[22,1,1,4,5,[[679,1,1,4,5]]]],[61,13346,14178,17004,17683]]],["desireth",[2,2,[[18,1,1,0,1,[[545,1,1,0,1]]],[19,1,1,1,2,[[639,1,1,1,2]]]],[14916,16731]]],["goodly",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[742]]],["pleasant",[2,2,[[0,1,1,0,1,[[1,1,1,0,1]]],[26,1,1,1,2,[[859,1,1,1,2]]]],[39,22018]]],["precious",[2,2,[[13,1,1,0,1,[[386,1,1,0,1]]],[14,1,1,1,2,[[410,1,1,1,2]]]],[11612,12228]]],["things",[3,3,[[22,1,1,0,1,[[722,1,1,0,1]]],[26,2,2,1,3,[[860,2,2,1,3]]]],[18542,22074,22079]]]]},{"k":"H2531","v":[["*",[6,6,[[22,2,2,0,2,[[705,1,1,0,1],[710,1,1,1,2]]],[25,3,3,2,5,[[824,3,3,2,5]]],[29,1,1,5,6,[[883,1,1,5,6]]]],[18153,18271,21013,21019,21030,22434]]],["desirable",[3,3,[[25,3,3,0,3,[[824,3,3,0,3]]]],[21013,21019,21030]]],["pleasant",[2,2,[[22,1,1,0,1,[[710,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[18271,22434]]],["wine",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18153]]]]},{"k":"H2532","v":[["*",[16,16,[[8,1,1,0,1,[[244,1,1,0,1]]],[13,3,3,1,4,[[387,1,1,1,2],[398,1,1,2,3],[402,1,1,3,4]]],[18,1,1,4,5,[[583,1,1,4,5]]],[22,1,1,5,6,[[680,1,1,5,6]]],[23,3,3,6,9,[[747,1,1,6,7],[756,1,1,7,8],[769,1,1,8,9]]],[25,1,1,9,10,[[827,1,1,9,10]]],[26,2,2,10,12,[[860,2,2,10,12]]],[27,1,1,12,13,[[874,1,1,12,13]]],[33,1,1,13,14,[[901,1,1,13,14]]],[36,1,1,14,15,[[910,1,1,14,15]]],[37,1,1,15,16,[[917,1,1,15,16]]]],[7411,11644,11902,12003,15675,17701,19021,19259,19568,21112,22044,22073,22281,22708,22862,22976]]],["desire",[3,3,[[8,1,1,0,1,[[244,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]],[36,1,1,2,3,[[910,1,1,2,3]]]],[7411,22073,22862]]],["desired",[1,1,[[13,1,1,0,1,[[387,1,1,0,1]]]],[11644]]],["goodly",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[12003]]],["pleasant",[10,10,[[13,1,1,0,1,[[398,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]],[22,1,1,2,3,[[680,1,1,2,3]]],[23,3,3,3,6,[[747,1,1,3,4],[756,1,1,4,5],[769,1,1,5,6]]],[25,1,1,6,7,[[827,1,1,6,7]]],[27,1,1,7,8,[[874,1,1,7,8]]],[33,1,1,8,9,[[901,1,1,8,9]]],[37,1,1,9,10,[[917,1,1,9,10]]]],[11902,15675,17701,19021,19259,19568,21112,22281,22708,22976]]],["precious",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22044]]]]},{"k":"H2533","v":[["Hemdan",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1066]]]]},{"k":"H2534","v":[["*",[124,117,[[0,1,1,0,1,[[26,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,1,1,2,3,[[141,1,1,2,3]]],[4,5,5,3,8,[[161,1,1,3,4],[181,2,2,4,6],[184,2,2,6,8]]],[9,1,1,8,9,[[277,1,1,8,9]]],[11,3,3,9,12,[[317,1,1,9,10],[334,2,2,10,12]]],[13,5,5,12,17,[[378,1,1,12,13],[394,1,1,13,14],[400,2,2,14,16],[402,1,1,16,17]]],[16,6,6,17,23,[[426,1,1,17,18],[427,1,1,18,19],[428,1,1,19,20],[430,1,1,20,21],[432,2,2,21,23]]],[17,4,4,23,27,[[441,1,1,23,24],[454,1,1,24,25],[456,1,1,25,26],[471,1,1,26,27]]],[18,15,13,27,40,[[483,1,1,27,28],[514,1,1,28,29],[515,1,1,29,30],[535,2,1,30,31],[536,1,1,31,32],[553,2,1,32,33],[555,1,1,33,34],[556,1,1,34,35],[565,1,1,35,36],[566,1,1,36,37],[567,1,1,37,38],[583,1,1,38,39],[617,1,1,39,40]]],[19,9,9,40,49,[[633,1,1,40,41],[642,2,2,41,43],[643,1,1,43,44],[646,1,1,44,45],[648,1,1,45,46],[649,1,1,46,47],[654,1,1,47,48],[656,1,1,48,49]]],[22,13,12,49,61,[[705,1,1,49,50],[712,1,1,50,51],[720,1,1,51,52],[729,5,4,52,56],[737,1,1,56,57],[741,3,3,57,60],[744,1,1,60,61]]],[23,17,16,61,77,[[748,1,1,61,62],[750,1,1,62,63],[751,1,1,63,64],[754,1,1,64,65],[762,1,1,65,66],[765,2,2,66,68],[767,1,1,68,69],[769,1,1,69,70],[774,1,1,70,71],[776,2,2,71,73],[777,1,1,73,74],[780,1,1,74,75],[786,2,1,75,76],[788,1,1,76,77]]],[24,2,2,77,79,[[798,1,1,77,78],[800,1,1,78,79]]],[25,33,30,79,109,[[804,1,1,79,80],[806,4,2,80,82],[807,1,1,82,83],[808,1,1,83,84],[809,1,1,84,85],[810,1,1,85,86],[814,3,2,86,88],[815,1,1,88,89],[817,2,2,89,91],[820,1,1,91,92],[821,5,5,92,97],[822,1,1,97,98],[823,2,2,98,100],[824,1,1,100,101],[825,2,2,101,103],[826,2,2,103,105],[831,1,1,105,106],[837,2,2,106,108],[839,1,1,108,109]]],[26,3,3,109,112,[[857,1,1,109,110],[858,1,1,110,111],[860,1,1,111,112]]],[27,1,1,112,113,[[868,1,1,112,113]]],[32,1,1,113,114,[[897,1,1,113,114]]],[33,2,2,114,116,[[900,2,2,114,116]]],[37,1,1,116,117,[[918,1,1,116,117]]]],[771,3552,4482,5176,5702,5707,5782,5791,8279,9659,10158,10162,11444,11773,11954,11958,12009,12714,12725,12752,12788,12814,12817,12982,13326,13375,13754,13986,14458,14491,14783,14803,15091,15151,15191,15315,15372,15385,15674,16266,16574,16808,16825,16854,16944,16998,17039,17173,17246,18155,18305,18505,18686,18690,18693,18695,18818,18869,18871,18872,18937,19031,19100,19139,19226,19404,19445,19452,19503,19549,19690,19762,19768,19780,19849,19993,20016,20336,20431,20516,20559,20561,20575,20585,20622,20630,20721,20723,20750,20800,20804,20893,20903,20908,20916,20928,20929,20961,20996,20998,21032,21064,21069,21097,21100,21219,21365,21377,21443,21967,22004,22080,22183,22648,22686,22690,22978]]],["+",[3,3,[[3,1,1,0,1,[[141,1,1,0,1]]],[17,1,1,1,2,[[456,1,1,1,2]]],[33,1,1,2,3,[[900,1,1,2,3]]]],[4482,13375,22686]]],["Fury",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18155]]],["Wrath",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17173]]],["anger",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12714]]],["bottles",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22183]]],["displeasure",[3,3,[[4,1,1,0,1,[[161,1,1,0,1]]],[18,2,2,1,3,[[483,1,1,1,2],[515,1,1,2,3]]]],[5176,13986,14491]]],["furious",[4,4,[[19,2,2,0,2,[[649,1,1,0,1],[656,1,1,1,2]]],[25,2,2,2,4,[[806,1,1,2,3],[826,1,1,3,4]]]],[17039,17246,20561,21100]]],["furiously",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21032]]],["fury",[66,62,[[0,1,1,0,1,[[26,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[22,12,11,2,13,[[712,1,1,2,3],[720,1,1,3,4],[729,5,4,4,8],[737,1,1,8,9],[741,3,3,9,12],[744,1,1,12,13]]],[23,16,15,13,28,[[748,1,1,13,14],[750,1,1,14,15],[751,1,1,15,16],[754,1,1,16,17],[765,2,2,17,19],[767,1,1,19,20],[769,1,1,20,21],[774,1,1,21,22],[776,2,2,22,24],[777,1,1,24,25],[780,1,1,25,26],[786,2,1,26,27],[788,1,1,27,28]]],[24,2,2,28,30,[[798,1,1,28,29],[800,1,1,29,30]]],[25,28,26,30,56,[[806,3,2,30,32],[807,1,1,32,33],[808,1,1,33,34],[809,1,1,34,35],[810,1,1,35,36],[814,2,1,36,37],[815,1,1,37,38],[817,2,2,38,40],[820,1,1,40,41],[821,5,5,41,46],[822,1,1,46,47],[823,2,2,47,49],[825,2,2,49,51],[826,1,1,51,52],[831,1,1,52,53],[837,2,2,53,55],[839,1,1,55,56]]],[26,3,3,56,59,[[857,1,1,56,57],[858,1,1,57,58],[860,1,1,58,59]]],[32,1,1,59,60,[[897,1,1,59,60]]],[33,1,1,60,61,[[900,1,1,60,61]]],[37,1,1,61,62,[[918,1,1,61,62]]]],[771,3552,18305,18505,18686,18690,18693,18695,18818,18869,18871,18872,18937,19031,19100,19139,19226,19445,19452,19503,19549,19690,19762,19768,19780,19849,19993,20016,20336,20431,20559,20561,20575,20585,20622,20630,20721,20750,20800,20804,20893,20903,20908,20916,20928,20929,20961,20996,20998,21064,21069,21097,21219,21365,21377,21443,21967,22004,22080,22648,22690,22978]]],["heat",[1,1,[[25,1,1,0,1,[[804,1,1,0,1]]]],[20516]]],["indignation",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12788]]],["poison",[6,5,[[4,2,2,0,2,[[184,2,2,0,2]]],[17,1,1,2,3,[[441,1,1,2,3]]],[18,3,2,3,5,[[535,2,1,3,4],[617,1,1,4,5]]]],[5782,5791,12982,14783,16266]]],["rage",[2,2,[[11,1,1,0,1,[[317,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]]],[9659,16574]]],["wrath",[31,30,[[4,2,2,0,2,[[181,2,2,0,2]]],[9,1,1,2,3,[[277,1,1,2,3]]],[11,2,2,3,5,[[334,2,2,3,5]]],[13,4,4,5,9,[[378,1,1,5,6],[400,2,2,6,8],[402,1,1,8,9]]],[16,4,4,9,13,[[427,1,1,9,10],[428,1,1,10,11],[432,2,2,11,13]]],[17,2,2,13,15,[[454,1,1,13,14],[471,1,1,14,15]]],[18,10,9,15,24,[[514,1,1,15,16],[536,1,1,16,17],[553,2,1,17,18],[555,1,1,18,19],[556,1,1,19,20],[565,1,1,20,21],[566,1,1,21,22],[567,1,1,22,23],[583,1,1,23,24]]],[19,4,4,24,28,[[642,1,1,24,25],[643,1,1,25,26],[646,1,1,26,27],[648,1,1,27,28]]],[23,1,1,28,29,[[762,1,1,28,29]]],[25,1,1,29,30,[[814,1,1,29,30]]]],[5702,5707,8279,10158,10162,11444,11954,11958,12009,12725,12752,12814,12817,13326,13754,14458,14803,15091,15151,15191,15315,15372,15385,15674,16808,16854,16944,16998,19404,20723]]],["wrathful",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16825]]],["wroth",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11773]]]]},{"k":"H2535","v":[["*",[6,5,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,1,1,1,2,[[496,1,1,1,2]]],[21,1,1,2,3,[[676,1,1,2,3]]],[22,3,2,3,5,[[702,1,1,3,4],[708,2,1,4,5]]]],[13585,14174,17624,18118,18243]]],["+",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14174]]],["sun",[5,4,[[17,1,1,0,1,[[465,1,1,0,1]]],[21,1,1,1,2,[[676,1,1,1,2]]],[22,3,2,2,4,[[702,1,1,2,3],[708,2,1,3,4]]]],[13585,17624,18118,18243]]]]},{"k":"H2536","v":[["Hamuel",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10411]]]]},{"k":"H2537","v":[["Hamutal",[3,3,[[11,2,2,0,2,[[335,1,1,0,1],[336,1,1,1,2]]],[23,1,1,2,3,[[796,1,1,2,3]]]],[10196,10220,20277]]]]},{"k":"H2538","v":[["Hamul",[3,3,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[12,1,1,2,3,[[339,1,1,2,3]]]],[1398,4510,10311]]]]},{"k":"H2539","v":[["Hamulites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4510]]]]},{"k":"H2540","v":[["Hammon",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]]],[6349,10530]]]]},{"k":"H2541","v":[["oppressed",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17671]]]]},{"k":"H2542","v":[["joints",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17628]]]]},{"k":"H2543","v":[["*",[96,93,[[0,17,17,0,17,[[11,1,1,0,1],[21,2,2,1,3],[23,1,1,3,4],[29,1,1,4,5],[31,1,1,5,6],[33,1,1,6,7],[35,1,1,7,8],[41,2,2,8,10],[42,2,2,10,12],[43,2,2,12,14],[44,1,1,14,15],[46,1,1,15,16],[48,1,1,16,17]]],[1,12,12,17,29,[[53,1,1,17,18],[58,1,1,18,19],[62,1,1,19,20],[69,1,1,20,21],[70,1,1,21,22],[71,3,3,22,25],[72,3,3,25,28],[83,1,1,28,29]]],[3,6,6,29,35,[[132,1,1,29,30],[147,5,5,30,35]]],[4,6,6,35,41,[[157,2,2,35,37],[174,3,3,37,40],[180,1,1,40,41]]],[5,4,4,41,45,[[192,1,1,41,42],[193,1,1,42,43],[195,1,1,43,44],[201,1,1,44,45]]],[6,10,9,45,54,[[211,1,1,45,46],[216,1,1,46,47],[225,3,2,47,49],[229,5,5,49,54]]],[8,10,10,54,64,[[243,1,1,54,55],[247,1,1,55,56],[250,1,1,56,57],[251,1,1,57,58],[257,1,1,58,59],[260,4,4,59,63],[262,1,1,63,64]]],[9,4,4,64,68,[[282,2,2,64,66],[283,1,1,66,67],[285,1,1,67,68]]],[10,9,7,68,75,[[292,1,1,68,69],[303,8,6,69,75]]],[11,3,3,75,78,[[318,1,1,75,76],[319,2,2,76,78]]],[12,2,2,78,80,[[342,1,1,78,79],[349,1,1,79,80]]],[13,1,1,80,81,[[394,1,1,80,81]]],[14,1,1,81,82,[[404,1,1,81,82]]],[15,2,2,82,84,[[419,1,1,82,83],[425,1,1,83,84]]],[17,1,1,84,85,[[459,1,1,84,85]]],[19,1,1,85,86,[[653,1,1,85,86]]],[22,3,3,86,89,[[679,1,1,86,87],[699,1,1,87,88],[710,1,1,88,89]]],[23,1,1,89,90,[[766,1,1,89,90]]],[25,1,1,90,91,[[824,1,1,90,91]]],[37,2,2,91,93,[[919,1,1,91,92],[924,1,1,92,93]]]],[314,550,552,626,873,933,1008,1064,1278,1279,1308,1314,1327,1337,1381,1437,1487,1621,1745,1880,2068,2110,2117,2122,2123,2148,2149,2156,2516,4209,4692,4694,4698,4703,4709,5067,5074,5473,5474,5480,5642,5970,6000,6041,6220,6523,6658,6944,6945,7027,7034,7043,7045,7052,7385,7463,7563,7615,7806,7879,7881,7884,7903,7939,8427,8428,8472,8537,8810,9197,9207,9208,9211,9212,9213,9699,9714,9717,10449,10760,11779,12094,12489,12686,13439,17144,17657,18042,18279,19473,21027,23008,23083]]],["ass",[55,52,[[0,5,5,0,5,[[21,2,2,0,2],[41,1,1,2,3],[43,1,1,3,4],[48,1,1,4,5]]],[1,11,11,5,16,[[53,1,1,5,6],[62,1,1,6,7],[69,1,1,7,8],[70,1,1,8,9],[71,3,3,9,12],[72,3,3,12,15],[83,1,1,15,16]]],[3,1,1,16,17,[[132,1,1,16,17]]],[4,6,6,17,23,[[157,2,2,17,19],[174,3,3,19,22],[180,1,1,22,23]]],[5,2,2,23,25,[[192,1,1,23,24],[201,1,1,24,25]]],[6,6,5,25,30,[[211,1,1,25,26],[216,1,1,26,27],[225,3,2,27,29],[229,1,1,29,30]]],[8,6,6,30,36,[[247,1,1,30,31],[250,1,1,31,32],[251,1,1,32,33],[260,3,3,33,36]]],[9,2,2,36,38,[[283,1,1,36,37],[285,1,1,37,38]]],[10,9,7,38,45,[[292,1,1,38,39],[303,8,6,39,45]]],[17,1,1,45,46,[[459,1,1,45,46]]],[19,1,1,46,47,[[653,1,1,46,47]]],[22,2,2,47,49,[[679,1,1,47,48],[710,1,1,48,49]]],[23,1,1,49,50,[[766,1,1,49,50]]],[37,2,2,50,52,[[919,1,1,50,51],[924,1,1,51,52]]]],[550,552,1279,1337,1487,1621,1880,2068,2110,2117,2122,2123,2148,2149,2156,2516,4209,5067,5074,5473,5474,5480,5642,5970,6220,6523,6658,6944,6945,7052,7463,7563,7615,7881,7884,7903,8472,8537,8810,9197,9207,9208,9211,9212,9213,13439,17144,17657,18279,19473,23008,23083]]],["ass's",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9699]]],["asses",[40,40,[[0,12,12,0,12,[[11,1,1,0,1],[23,1,1,1,2],[29,1,1,2,3],[31,1,1,3,4],[33,1,1,4,5],[35,1,1,5,6],[41,1,1,6,7],[42,2,2,7,9],[43,1,1,9,10],[44,1,1,10,11],[46,1,1,11,12]]],[1,1,1,12,13,[[58,1,1,12,13]]],[3,5,5,13,18,[[147,5,5,13,18]]],[5,2,2,18,20,[[193,1,1,18,19],[195,1,1,19,20]]],[6,4,4,20,24,[[229,4,4,20,24]]],[8,4,4,24,28,[[243,1,1,24,25],[257,1,1,25,26],[260,1,1,26,27],[262,1,1,27,28]]],[9,2,2,28,30,[[282,2,2,28,30]]],[11,2,2,30,32,[[319,2,2,30,32]]],[12,2,2,32,34,[[342,1,1,32,33],[349,1,1,33,34]]],[13,1,1,34,35,[[394,1,1,34,35]]],[14,1,1,35,36,[[404,1,1,35,36]]],[15,2,2,36,38,[[419,1,1,36,37],[425,1,1,37,38]]],[22,1,1,38,39,[[699,1,1,38,39]]],[25,1,1,39,40,[[824,1,1,39,40]]]],[314,626,873,933,1008,1064,1278,1308,1314,1327,1381,1437,1745,4692,4694,4698,4703,4709,6000,6041,7027,7034,7043,7045,7385,7806,7879,7939,8427,8428,9714,9717,10449,10760,11779,12094,12489,12686,18042,21027]]]]},{"k":"H2544","v":[["*",[13,12,[[0,11,10,0,10,[[32,1,1,0,1],[33,10,9,1,10]]],[5,1,1,10,11,[[210,1,1,10,11]]],[6,1,1,11,12,[[219,1,1,11,12]]]],[979,982,984,986,988,993,998,1000,1004,1006,6508,6782]]],["Hamor",[12,12,[[0,10,10,0,10,[[32,1,1,0,1],[33,9,9,1,10]]],[5,1,1,10,11,[[210,1,1,10,11]]],[6,1,1,11,12,[[219,1,1,11,12]]]],[979,982,984,986,988,993,998,1000,1004,1006,6508,6782]]],["Hamor's",[1,1,[[0,1,1,0,1,[[33,1,1,0,1]]]],[998]]]]},{"k":"H2545","v":[["*",[11,10,[[7,10,9,0,9,[[232,1,1,0,1],[233,5,4,1,5],[234,4,4,5,9]]],[32,1,1,9,10,[[899,1,1,9,10]]]],[7141,7160,7167,7168,7172,7173,7178,7188,7189,22670]]],["+",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7168]]],["law",[10,10,[[7,9,9,0,9,[[232,1,1,0,1],[233,4,4,1,5],[234,4,4,5,9]]],[32,1,1,9,10,[[899,1,1,9,10]]]],[7141,7160,7167,7168,7172,7173,7178,7188,7189,22670]]]]},{"k":"H2546","v":[["snail",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3027]]]]},{"k":"H2547","v":[["Humtah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6256]]]]},{"k":"H2548","v":[["clean",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18241]]]]},{"k":"H2549","v":[["*",[45,44,[[0,3,3,0,3,[[0,1,1,0,1],[29,1,1,1,2],[46,1,1,2,3]]],[2,9,9,3,12,[[94,1,1,3,4],[95,1,1,4,5],[108,1,1,5,6],[111,1,1,6,7],[116,5,5,7,12]]],[3,4,4,12,16,[[121,1,1,12,13],[123,1,1,13,14],[145,1,1,14,15],[149,1,1,15,16]]],[5,1,1,16,17,[[205,1,1,16,17]]],[6,1,1,17,18,[[229,1,1,17,18]]],[9,1,1,18,19,[[269,1,1,18,19]]],[10,2,2,19,21,[[296,1,1,19,20],[304,1,1,20,21]]],[11,1,1,21,22,[[337,1,1,21,22]]],[12,10,9,22,31,[[339,1,1,22,23],[340,1,1,23,24],[345,1,1,24,25],[349,1,1,25,26],[361,1,1,26,27],[362,1,1,27,28],[363,2,2,28,30],[364,2,1,30,31]]],[13,1,1,31,32,[[378,1,1,31,32]]],[14,2,2,32,34,[[409,2,2,32,34]]],[15,1,1,34,35,[[418,1,1,34,35]]],[23,4,4,35,39,[[745,1,1,35,36],[772,1,1,36,37],[780,1,1,37,38],[796,1,1,38,39]]],[25,2,2,39,41,[[802,1,1,39,40],[821,1,1,40,41]]],[37,3,3,41,44,[[917,2,2,41,43],[918,1,1,43,44]]]],[22,847,1444,2846,2854,3306,3383,3583,3585,3589,3597,3601,3799,3886,4634,4798,6345,7032,8085,8927,9243,10230,10320,10364,10577,10730,11024,11058,11080,11081,11117,11439,12181,12182,12406,18949,19619,19851,20288,20466,20896,22965,22967,22995]]],["fifth",[42,41,[[0,3,3,0,3,[[0,1,1,0,1],[29,1,1,1,2],[46,1,1,2,3]]],[2,7,7,3,10,[[108,1,1,3,4],[111,1,1,4,5],[116,5,5,5,10]]],[3,4,4,10,14,[[121,1,1,10,11],[123,1,1,11,12],[145,1,1,12,13],[149,1,1,13,14]]],[5,1,1,14,15,[[205,1,1,14,15]]],[6,1,1,15,16,[[229,1,1,15,16]]],[9,1,1,16,17,[[269,1,1,16,17]]],[10,1,1,17,18,[[304,1,1,17,18]]],[11,1,1,18,19,[[337,1,1,18,19]]],[12,10,9,19,28,[[339,1,1,19,20],[340,1,1,20,21],[345,1,1,21,22],[349,1,1,22,23],[361,1,1,23,24],[362,1,1,24,25],[363,2,2,25,27],[364,2,1,27,28]]],[13,1,1,28,29,[[378,1,1,28,29]]],[14,2,2,29,31,[[409,2,2,29,31]]],[15,1,1,31,32,[[418,1,1,31,32]]],[23,4,4,32,36,[[745,1,1,32,33],[772,1,1,33,34],[780,1,1,34,35],[796,1,1,35,36]]],[25,2,2,36,38,[[802,1,1,36,37],[821,1,1,37,38]]],[37,3,3,38,41,[[917,2,2,38,40],[918,1,1,40,41]]]],[22,847,1444,3306,3383,3583,3585,3589,3597,3601,3799,3886,4634,4798,6345,7032,8085,9243,10230,10320,10364,10577,10730,11024,11058,11080,11081,11117,11439,12181,12182,12406,18949,19619,19851,20288,20466,20896,22965,22967,22995]]],["part",[3,3,[[2,2,2,0,2,[[94,1,1,0,1],[95,1,1,1,2]]],[10,1,1,2,3,[[296,1,1,2,3]]]],[2846,2854,8927]]]]},{"k":"H2550","v":[["*",[41,40,[[1,1,1,0,1,[[51,1,1,0,1]]],[4,1,1,1,2,[[165,1,1,1,2]]],[8,4,4,2,6,[[250,3,3,2,5],[258,1,1,5,6]]],[9,3,3,6,9,[[278,2,2,6,8],[287,1,1,8,9]]],[13,2,2,9,11,[[402,2,2,9,11]]],[17,4,4,11,15,[[441,1,1,11,12],[451,1,1,12,13],[455,1,1,13,14],[462,1,1,14,15]]],[19,1,1,15,16,[[633,1,1,15,16]]],[22,2,2,16,18,[[687,1,1,16,17],[708,1,1,17,18]]],[23,5,5,18,23,[[757,1,1,18,19],[759,1,1,19,20],[765,1,1,20,21],[794,1,1,21,22],[795,1,1,22,23]]],[24,4,4,23,27,[[798,3,3,23,26],[799,1,1,26,27]]],[25,8,8,27,35,[[806,1,1,27,28],[808,2,2,28,30],[809,1,1,30,31],[810,2,2,31,33],[817,1,1,33,34],[837,1,1,34,35]]],[28,1,1,35,36,[[877,1,1,35,36]]],[34,1,1,36,37,[[903,1,1,36,37]]],[37,2,2,37,39,[[921,2,2,37,39]]],[38,2,1,39,40,[[927,2,1,39,40]]]],[1560,5280,7563,7569,7575,7831,8290,8292,8587,12008,12010,12988,13251,13339,13503,16574,17848,18231,19280,19320,19447,20180,20215,20334,20349,20353,20397,20557,20581,20586,20622,20627,20632,20767,21380,22329,22748,23033,23034,23137]]],["+",[12,11,[[8,3,3,0,3,[[250,3,3,0,3]]],[9,1,1,3,4,[[287,1,1,3,4]]],[13,1,1,4,5,[[402,1,1,4,5]]],[17,1,1,5,6,[[455,1,1,5,6]]],[22,1,1,6,7,[[687,1,1,6,7]]],[28,1,1,7,8,[[877,1,1,7,8]]],[37,2,2,8,10,[[921,2,2,8,10]]],[38,2,1,10,11,[[927,2,1,10,11]]]],[7563,7569,7575,8587,12010,13339,17848,22329,23033,23034,23137]]],["compassion",[4,4,[[1,1,1,0,1,[[51,1,1,0,1]]],[8,1,1,1,2,[[258,1,1,1,2]]],[13,1,1,2,3,[[402,1,1,2,3]]],[25,1,1,3,4,[[817,1,1,3,4]]]],[1560,7831,12008,20767]]],["pitied",[4,4,[[24,4,4,0,4,[[798,3,3,0,3],[799,1,1,3,4]]]],[20334,20349,20353,20397]]],["pity",[11,11,[[9,1,1,0,1,[[278,1,1,0,1]]],[23,3,3,1,4,[[757,1,1,1,2],[759,1,1,2,3],[765,1,1,3,4]]],[25,7,7,4,11,[[806,1,1,4,5],[808,2,2,5,7],[809,1,1,7,8],[810,2,2,8,10],[837,1,1,10,11]]]],[8292,19280,19320,19447,20557,20581,20586,20622,20627,20632,21380]]],["spare",[9,9,[[4,1,1,0,1,[[165,1,1,0,1]]],[17,3,3,1,4,[[441,1,1,1,2],[451,1,1,2,3],[462,1,1,3,4]]],[19,1,1,4,5,[[633,1,1,4,5]]],[22,1,1,5,6,[[708,1,1,5,6]]],[23,2,2,6,8,[[794,1,1,6,7],[795,1,1,7,8]]],[34,1,1,8,9,[[903,1,1,8,9]]]],[5280,12988,13251,13503,16574,18231,20180,20215,22748]]],["spared",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8290]]]]},{"k":"H2551","v":[["*",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[22,1,1,1,2,[[741,1,1,1,2]]]],[473,18875]]],["merciful",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[473]]],["pity",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18875]]]]},{"k":"H2552","v":[["*",[16,15,[[1,1,1,0,1,[[65,1,1,0,1]]],[10,1,1,1,2,[[291,1,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]],[15,1,1,3,4,[[419,1,1,3,4]]],[17,2,2,4,6,[[466,1,1,4,5],[474,1,1,5,6]]],[18,1,1,6,7,[[516,1,1,6,7]]],[20,1,1,7,8,[[662,1,1,7,8]]],[22,5,4,8,12,[[722,3,2,8,10],[725,1,1,10,11],[735,1,1,11,12]]],[25,1,1,12,13,[[825,1,1,12,13]]],[27,1,1,13,14,[[868,1,1,13,14]]],[36,1,1,14,15,[[909,1,1,14,15]]]],[1968,8719,9637,12423,13608,13848,14515,17392,18548,18549,18613,18770,21067,22185,22846]]],["+",[2,2,[[27,1,1,0,1,[[868,1,1,0,1]]],[36,1,1,1,2,[[909,1,1,1,2]]]],[22185,22846]]],["heat",[2,2,[[10,1,1,0,1,[[291,1,1,0,1]]],[20,1,1,1,2,[[662,1,1,1,2]]]],[8719,17392]]],["hot",[4,4,[[1,1,1,0,1,[[65,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]],[18,1,1,2,3,[[516,1,1,2,3]]],[25,1,1,3,4,[[825,1,1,3,4]]]],[1968,12423,14515,21067]]],["warm",[4,4,[[11,1,1,0,1,[[316,1,1,0,1]]],[22,3,3,1,4,[[722,2,2,1,3],[725,1,1,3,4]]]],[9637,18548,18549,18613]]],["warmed",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13608]]],["warmeth",[2,2,[[17,1,1,0,1,[[474,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[13848,18549]]],["yourselves",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18770]]]]},{"k":"H2553","v":[["*",[8,8,[[2,1,1,0,1,[[115,1,1,0,1]]],[13,3,3,1,4,[[380,1,1,1,2],[400,2,2,2,4]]],[22,2,2,4,6,[[695,1,1,4,5],[705,1,1,5,6]]],[25,2,2,6,8,[[807,2,2,6,8]]]],[3554,11480,11937,11940,17991,18160,20567,20569]]],["idols",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11940]]],["images",[7,7,[[2,1,1,0,1,[[115,1,1,0,1]]],[13,2,2,1,3,[[380,1,1,1,2],[400,1,1,2,3]]],[22,2,2,3,5,[[695,1,1,3,4],[705,1,1,4,5]]],[25,2,2,5,7,[[807,2,2,5,7]]]],[3554,11480,11937,17991,18160,20567,20569]]]]},{"k":"H2554","v":[["*",[8,8,[[17,2,2,0,2,[[450,1,1,0,1],[456,1,1,1,2]]],[19,1,1,2,3,[[635,1,1,2,3]]],[23,2,2,3,5,[[757,1,1,3,4],[766,1,1,4,5]]],[24,1,1,5,6,[[798,1,1,5,6]]],[25,1,1,6,7,[[823,1,1,6,7]]],[35,1,1,7,8,[[908,1,1,7,8]]]],[13236,13382,16638,19288,19457,20338,21002,22824]]],["away",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20338]]],["bare",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19288]]],["imagine",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13382]]],["off",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13236]]],["violated",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[21002]]],["violence",[2,2,[[23,1,1,0,1,[[766,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[19457,22824]]],["wrongeth",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16638]]]]},{"k":"H2555","v":[["*",[60,59,[[0,4,4,0,4,[[5,2,2,0,2],[15,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[72,1,1,4,5]]],[4,1,1,5,6,[[171,1,1,5,6]]],[6,1,1,6,7,[[219,1,1,6,7]]],[9,2,2,7,9,[[288,2,2,7,9]]],[12,1,1,9,10,[[349,1,1,9,10]]],[17,2,2,10,12,[[451,1,1,10,11],[454,1,1,11,12]]],[18,14,14,12,26,[[484,1,1,12,13],[488,1,1,13,14],[495,1,1,14,15],[502,1,1,15,16],[504,1,1,16,17],[512,1,1,17,18],[532,1,1,18,19],[535,1,1,19,20],[549,1,1,20,21],[550,1,1,21,22],[551,1,1,22,23],[617,3,3,23,26]]],[19,7,7,26,33,[[630,1,1,26,27],[631,1,1,27,28],[637,2,2,28,30],[640,1,1,30,31],[643,1,1,31,32],[653,1,1,32,33]]],[22,3,3,33,36,[[731,1,1,33,34],[737,1,1,34,35],[738,1,1,35,36]]],[23,4,4,36,40,[[750,1,1,36,37],[764,1,1,37,38],[795,2,2,38,40]]],[25,6,6,40,46,[[808,2,2,40,42],[809,1,1,42,43],[813,1,1,43,44],[829,1,1,44,45],[846,1,1,45,46]]],[28,1,1,46,47,[[878,1,1,46,47]]],[29,2,2,47,49,[[881,1,1,47,48],[884,1,1,48,49]]],[30,1,1,49,50,[[888,1,1,49,50]]],[31,1,1,50,51,[[891,1,1,50,51]]],[32,1,1,51,52,[[898,1,1,51,52]]],[34,6,5,52,57,[[903,3,3,52,55],[904,3,2,55,57]]],[35,1,1,57,58,[[906,1,1,57,58]]],[38,1,1,58,59,[[926,1,1,58,59]]]],[148,150,386,1478,2145,5422,6778,8605,8651,10737,13255,13304,14011,14064,14166,14270,14297,14421,14741,14781,15014,15026,15068,16264,16267,16274,16486,16507,16662,16667,16749,16869,17147,18720,18806,18839,19096,19430,20247,20258,20588,20600,20621,20699,21173,21639,22362,22405,22453,22520,22566,22660,22733,22734,22740,22756,22765,22796,23119]]],["+",[7,7,[[9,2,2,0,2,[[288,2,2,0,2]]],[18,2,2,2,4,[[549,1,1,2,3],[617,1,1,3,4]]],[19,1,1,4,5,[[630,1,1,4,5]]],[25,1,1,5,6,[[813,1,1,5,6]]],[30,1,1,6,7,[[888,1,1,6,7]]]],[8605,8651,15014,16267,16486,20699,22520]]],["False",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14421]]],["Violence",[2,2,[[22,1,1,0,1,[[738,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]]],[18839,20588]]],["cruel",[1,1,[[18,1,1,0,1,[[502,1,1,0,1]]]],[14270]]],["cruelty",[4,4,[[0,1,1,0,1,[[48,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[18,2,2,2,4,[[504,1,1,2,3],[551,1,1,3,4]]]],[1478,6778,14297,15068]]],["damage",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17147]]],["dealing",[1,1,[[18,1,1,0,1,[[484,1,1,0,1]]]],[14011]]],["false",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5422]]],["injustice",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13255]]],["unrighteous",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2145]]],["violence",[33,32,[[0,2,2,0,2,[[5,2,2,0,2]]],[18,4,4,2,6,[[488,1,1,2,3],[532,1,1,3,4],[535,1,1,4,5],[550,1,1,5,6]]],[19,4,4,6,10,[[631,1,1,6,7],[637,2,2,7,9],[640,1,1,9,10]]],[22,2,2,10,12,[[731,1,1,10,11],[737,1,1,11,12]]],[23,4,4,12,16,[[750,1,1,12,13],[764,1,1,13,14],[795,2,2,14,16]]],[25,4,4,16,20,[[808,1,1,16,17],[809,1,1,17,18],[829,1,1,18,19],[846,1,1,19,20]]],[28,1,1,20,21,[[878,1,1,20,21]]],[29,2,2,21,23,[[881,1,1,21,22],[884,1,1,22,23]]],[31,1,1,23,24,[[891,1,1,23,24]]],[32,1,1,24,25,[[898,1,1,24,25]]],[34,6,5,25,30,[[903,3,3,25,28],[904,3,2,28,30]]],[35,1,1,30,31,[[906,1,1,30,31]]],[38,1,1,31,32,[[926,1,1,31,32]]]],[148,150,14064,14741,14781,15026,16507,16662,16667,16749,18720,18806,19096,19430,20247,20258,20600,20621,21173,21639,22362,22405,22453,22566,22660,22733,22734,22740,22756,22765,22796,23119]]],["violent",[4,4,[[18,3,3,0,3,[[495,1,1,0,1],[617,2,2,1,3]]],[19,1,1,3,4,[[643,1,1,3,4]]]],[14166,16264,16274,16869]]],["wrong",[3,3,[[0,1,1,0,1,[[15,1,1,0,1]]],[12,1,1,1,2,[[349,1,1,1,2]]],[17,1,1,2,3,[[454,1,1,2,3]]]],[386,10737,13304]]]]},{"k":"H2556","v":[["*",[6,6,[[1,2,2,0,2,[[61,2,2,0,2]]],[18,2,2,2,4,[[548,1,1,2,3],[550,1,1,3,4]]],[22,1,1,4,5,[[741,1,1,4,5]]],[27,1,1,5,6,[[868,1,1,5,6]]]],[1850,1855,14980,15041,18867,22182]]],["+",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1855]]],["cruel",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14980]]],["dyed",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18867]]],["grieved",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15041]]],["leavened",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[27,1,1,1,2,[[868,1,1,1,2]]]],[1850,22182]]]]},{"k":"H2557","v":[["*",[13,13,[[1,7,7,0,7,[[61,3,3,0,3],[62,2,2,3,5],[72,1,1,5,6],[83,1,1,6,7]]],[2,4,4,7,11,[[91,1,1,7,8],[95,1,1,8,9],[96,1,1,9,10],[112,1,1,10,11]]],[4,1,1,11,12,[[168,1,1,11,12]]],[29,1,1,12,13,[[882,1,1,12,13]]]],[1831,1835,1836,1870,1874,2162,2521,2773,2866,2892,3419,5345,22415]]],["bread",[5,5,[[1,4,4,0,4,[[61,1,1,0,1],[62,2,2,1,3],[72,1,1,3,4]]],[4,1,1,4,5,[[168,1,1,4,5]]]],[1831,1870,1874,2162,5345]]],["leaven",[5,5,[[1,1,1,0,1,[[83,1,1,0,1]]],[2,3,3,1,4,[[91,1,1,1,2],[95,1,1,2,3],[112,1,1,3,4]]],[29,1,1,4,5,[[882,1,1,4,5]]]],[2521,2773,2866,3419,22415]]],["leavened",[3,3,[[1,2,2,0,2,[[61,2,2,0,2]]],[2,1,1,2,3,[[96,1,1,2,3]]]],[1835,1836,2892]]]]},{"k":"H2558","v":[["vinegar",[6,5,[[3,2,1,0,1,[[122,2,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[18,1,1,2,3,[[546,1,1,2,3]]],[19,2,2,3,5,[[637,1,1,3,4],[652,1,1,4,5]]]],[3826,7163,14956,16682,17133]]]]},{"k":"H2559","v":[["*",[2,2,[[21,1,1,0,1,[[675,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[17604,19713]]],["about",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19713]]],["withdrawn",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17604]]]]},{"k":"H2560","v":[["*",[6,6,[[1,1,1,0,1,[[51,1,1,0,1]]],[17,1,1,1,2,[[451,1,1,1,2]]],[18,2,2,2,4,[[523,1,1,2,3],[552,1,1,3,4]]],[24,2,2,4,6,[[797,1,1,4,5],[798,1,1,5,6]]]],[1557,13254,14617,15079,20330,20343]]],["daubed",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1557]]],["foul",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13254]]],["red",[1,1,[[18,1,1,0,1,[[552,1,1,0,1]]]],[15079]]],["troubled",[3,3,[[18,1,1,0,1,[[523,1,1,0,1]]],[24,2,2,1,3,[[797,1,1,1,2],[798,1,1,2,3]]]],[14617,20330,20343]]]]},{"k":"H2561","v":[["pure",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5772]]]]},{"k":"H2562","v":[["wine",[6,6,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]],[26,4,4,2,6,[[854,4,4,2,6]]]],[12160,12195,21875,21876,21878,21897]]]]},{"k":"H2563","v":[["*",[31,26,[[0,1,1,0,1,[[10,1,1,0,1]]],[1,3,2,1,3,[[50,1,1,1,2],[57,2,1,2,3]]],[2,1,1,3,4,[[116,1,1,3,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[17,7,7,5,12,[[439,1,1,5,6],[445,1,1,6,7],[448,1,1,7,8],[462,1,1,8,9],[465,1,1,9,10],[468,1,1,10,11],[473,1,1,11,12]]],[22,6,6,12,18,[[683,1,1,12,13],[688,1,1,13,14],[707,1,1,14,15],[719,1,1,15,16],[723,1,1,16,17],[742,1,1,17,18]]],[23,2,2,18,20,[[762,2,2,18,20]]],[25,7,3,20,23,[[846,7,3,20,23]]],[27,1,1,23,24,[[864,1,1,23,24]]],[33,1,1,24,25,[[902,1,1,24,25]]],[34,1,1,25,26,[[905,1,1,25,26]]]],[269,1546,1724,3586,4056,12949,13095,13165,13497,13576,13656,13807,17749,17856,18209,18476,18570,18893,19388,19390,21641,21643,21644,22130,22726,22783]]],["+",[5,3,[[1,2,1,0,1,[[57,2,1,0,1]]],[17,1,1,1,2,[[468,1,1,1,2]]],[25,2,1,2,3,[[846,2,1,2,3]]]],[1724,13656,21643]]],["clay",[10,10,[[17,5,5,0,5,[[439,1,1,0,1],[445,1,1,1,2],[448,1,1,2,3],[462,1,1,3,4],[473,1,1,4,5]]],[22,3,3,5,8,[[707,1,1,5,6],[723,1,1,6,7],[742,1,1,7,8]]],[23,2,2,8,10,[[762,2,2,8,10]]]],[12949,13095,13165,13497,13807,18209,18570,18893,19388,19390]]],["heap",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22783]]],["homer",[8,5,[[2,1,1,0,1,[[116,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]],[25,5,2,2,4,[[846,5,2,2,4]]],[27,1,1,4,5,[[864,1,1,4,5]]]],[3586,17749,21641,21644,22130]]],["homers",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4056]]],["mire",[2,2,[[17,1,1,0,1,[[465,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[13576,17856]]],["morter",[4,4,[[0,1,1,0,1,[[10,1,1,0,1]]],[1,1,1,1,2,[[50,1,1,1,2]]],[22,1,1,2,3,[[719,1,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[269,1546,18476,22726]]]]},{"k":"H2564","v":[["*",[3,3,[[0,2,2,0,2,[[10,1,1,0,1],[13,1,1,1,2]]],[1,1,1,2,3,[[51,1,1,2,3]]]],[269,346,1557]]],["+",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[346]]],["slime",[2,2,[[0,1,1,0,1,[[10,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]]],[269,1557]]]]},{"k":"H2565","v":[["+",[2,1,[[6,2,1,0,1,[[225,2,1,0,1]]]],[6945]]]]},{"k":"H2566","v":[["Amram",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10293]]]]},{"k":"H2567","v":[["part",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1229]]]]},{"k":"H2568","v":[["*",[344,273,[[0,25,22,0,22,[[4,10,9,0,9],[6,1,1,9,10],[10,3,3,10,13],[11,1,1,13,14],[13,1,1,14,15],[17,3,1,15,16],[24,1,1,16,17],[42,1,1,17,18],[44,3,3,18,21],[46,1,1,21,22]]],[1,33,25,22,47,[[65,1,1,22,23],[71,1,1,23,24],[75,8,5,24,29],[76,5,4,29,33],[79,2,2,33,35],[85,8,5,35,40],[87,8,7,40,47]]],[2,8,7,47,54,[[112,3,3,47,50],[115,1,1,50,51],[116,4,3,51,54]]],[3,73,48,54,102,[[117,6,6,54,60],[118,6,6,60,66],[119,4,3,66,69],[120,1,1,69,70],[123,36,12,70,82],[124,1,1,82,83],[127,1,1,83,84],[134,1,1,84,85],[142,6,6,85,91],[144,1,1,91,92],[145,1,1,92,93],[147,8,8,93,101],[149,1,1,101,102]]],[5,10,9,102,111,[[194,1,1,102,103],[196,6,6,103,109],[199,1,1,109,110],[200,2,1,110,111]]],[6,9,9,111,120,[[213,1,1,111,112],[218,1,1,112,113],[228,4,4,113,117],[230,3,3,117,120]]],[8,11,9,120,129,[[241,4,3,120,123],[252,2,2,123,125],[256,1,1,125,126],[257,1,1,126,127],[260,3,2,127,129]]],[9,5,5,129,134,[[270,1,1,129,130],[275,1,1,130,131],[285,1,1,131,132],[287,1,1,132,133],[290,1,1,133,134]]],[10,19,13,134,147,[[294,1,1,134,135],[296,4,3,135,138],[297,9,5,138,143],[299,1,1,143,144],[302,2,2,144,146],[312,2,1,146,147]]],[11,14,14,147,161,[[318,1,1,147,148],[319,1,1,148,149],[320,1,1,149,150],[325,1,1,150,151],[326,3,3,151,154],[327,1,1,154,155],[330,1,1,155,156],[331,1,1,156,157],[332,1,1,157,158],[333,1,1,158,159],[335,1,1,159,160],[337,1,1,160,161]]],[12,11,11,161,172,[[339,2,2,161,163],[340,1,1,163,164],[341,2,2,164,166],[344,2,2,166,168],[348,1,1,168,169],[361,1,1,169,170],[362,1,1,170,171],[366,1,1,171,172]]],[13,30,21,172,193,[[369,6,3,172,175],[370,7,4,175,179],[372,2,1,179,180],[379,1,1,180,181],[381,2,2,181,183],[386,2,1,183,184],[391,2,2,184,186],[392,1,1,186,187],[393,2,2,187,189],[395,1,1,189,190],[399,1,1,190,191],[401,2,1,191,192],[402,1,1,192,193]]],[14,9,9,193,202,[[403,1,1,193,194],[404,8,8,194,202]]],[15,9,9,202,211,[[418,1,1,202,203],[419,8,8,203,211]]],[16,5,5,211,216,[[434,5,5,211,216]]],[17,2,1,216,217,[[436,2,1,216,217]]],[22,6,6,217,223,[[685,1,1,217,218],[695,1,1,218,219],[697,1,1,219,220],[708,1,1,220,221],[715,1,1,221,222],[716,1,1,222,223]]],[23,3,3,223,226,[[796,3,3,223,226]]],[25,60,45,226,271,[[802,2,2,226,228],[809,2,2,228,230],[812,1,1,230,231],[833,1,1,231,232],[834,1,1,232,233],[841,12,10,233,243],[842,5,4,243,247],[843,6,5,247,252],[846,10,7,252,259],[849,20,12,259,271]]],[26,1,1,271,272,[[861,1,1,271,272]]],[27,1,1,272,273,[[864,1,1,272,273]]]],[111,115,116,120,122,126,128,135,137,179,277,278,298,302,345,452,665,1324,1364,1369,1380,1422,1948,2114,2238,2244,2261,2262,2272,2273,2286,2287,2290,2405,2406,2576,2582,2597,2598,2604,2634,2647,2648,2651,2658,2659,2661,3408,3436,3441,3532,3575,3576,3577,3625,3629,3637,3641,3645,3650,3669,3673,3677,3681,3686,3690,3714,3739,3742,3791,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3963,4043,4273,4507,4511,4516,4526,4530,4539,4594,4620,4672,4692,4696,4700,4701,4703,4707,4709,4763,6014,6069,6080,6081,6086,6087,6090,6157,6197,6571,6729,6995,7000,7007,7010,7089,7099,7100,7335,7347,7349,7623,7658,7775,7805,7879,7903,8124,8237,8528,8588,8701,8876,8902,8906,8920,8937,8950,8957,8973,8983,9074,9183,9184,9522,9699,9720,9743,9890,9898,9913,9919,9958,10026,10096,10104,10120,10201,10241,10310,10312,10381,10417,10427,10538,10542,10696,11029,11068,11171,11240,11241,11244,11248,11252,11253,11254,11295,11470,11500,11509,11618,11705,11729,11745,11756,11763,11792,11909,11975,11998,12027,12032,12035,12047,12060,12061,12093,12094,12096,12416,12433,12440,12445,12456,12487,12488,12489,12490,12840,12846,12850,12852,12855,12872,17790,17989,18022,18234,18388,18395,20298,20306,20307,20465,20466,20605,20620,20656,21265,21301,21478,21484,21490,21498,21502,21506,21507,21510,21513,21525,21528,21535,21537,21538,21568,21569,21570,21571,21572,21631,21632,21633,21635,21636,21642,21655,21710,21711,21712,21715,21717,21718,21722,21723,21732,21734,21735,21736,22093,22130]]],["+",[42,41,[[0,4,4,0,4,[[4,1,1,0,1],[6,1,1,1,2],[24,1,1,2,3],[42,1,1,3,4]]],[1,6,6,4,10,[[65,1,1,4,5],[76,2,2,5,7],[87,3,3,7,10]]],[2,5,5,10,15,[[112,3,3,10,13],[116,2,2,13,15]]],[3,7,6,15,21,[[119,2,1,15,16],[144,1,1,16,17],[145,1,1,17,18],[147,2,2,18,20],[149,1,1,20,21]]],[6,1,1,21,22,[[218,1,1,21,22]]],[9,2,2,22,24,[[275,1,1,22,23],[285,1,1,23,24]]],[10,3,3,24,27,[[297,1,1,24,25],[302,2,2,25,27]]],[11,3,3,27,30,[[326,2,2,27,29],[332,1,1,29,30]]],[12,2,2,30,32,[[361,1,1,30,31],[362,1,1,31,32]]],[13,2,2,32,34,[[381,1,1,32,33],[391,1,1,33,34]]],[16,2,2,34,36,[[434,2,2,34,36]]],[22,1,1,36,37,[[716,1,1,36,37]]],[25,3,3,37,40,[[833,1,1,37,38],[846,2,2,38,40]]],[27,1,1,40,41,[[864,1,1,40,41]]]],[115,179,665,1324,1948,2286,2287,2647,2648,2658,3408,3436,3441,3575,3577,3739,4594,4620,4692,4701,4763,6729,8237,8528,8937,9183,9184,9913,9919,10104,11029,11068,11500,11729,12852,12855,18395,21265,21642,21655,22130]]],["Five",[2,2,[[8,1,1,0,1,[[241,1,1,0,1]]],[11,1,1,1,2,[[327,1,1,1,2]]]],[7335,9958]]],["fifth",[6,6,[[11,1,1,0,1,[[320,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]],[25,4,4,2,6,[[802,2,2,2,4],[809,1,1,4,5],[834,1,1,5,6]]]],[9743,12416,20465,20466,20605,21301]]],["five",[294,227,[[0,21,18,0,18,[[4,9,8,0,8],[10,3,3,8,11],[11,1,1,11,12],[13,1,1,12,13],[17,3,1,13,14],[44,3,3,14,17],[46,1,1,17,18]]],[1,27,19,18,37,[[71,1,1,18,19],[75,8,5,19,24],[76,3,2,24,26],[79,2,2,26,28],[85,8,5,28,33],[87,5,4,33,37]]],[2,3,2,37,39,[[115,1,1,37,38],[116,2,1,38,39]]],[3,66,42,39,81,[[117,6,6,39,45],[118,6,6,45,51],[119,2,2,51,53],[120,1,1,53,54],[123,36,12,54,66],[124,1,1,66,67],[127,1,1,67,68],[134,1,1,68,69],[142,6,6,69,75],[147,6,6,75,81]]],[5,10,9,81,90,[[194,1,1,81,82],[196,6,6,82,88],[199,1,1,88,89],[200,2,1,89,90]]],[6,8,8,90,98,[[213,1,1,90,91],[228,4,4,91,95],[230,3,3,95,98]]],[8,10,9,98,107,[[241,3,3,98,101],[252,2,2,101,103],[256,1,1,103,104],[257,1,1,104,105],[260,3,2,105,107]]],[9,3,3,107,110,[[270,1,1,107,108],[287,1,1,108,109],[290,1,1,109,110]]],[10,16,11,110,121,[[294,1,1,110,111],[296,4,3,111,114],[297,8,5,114,119],[299,1,1,119,120],[312,2,1,120,121]]],[11,9,9,121,130,[[318,1,1,121,122],[319,1,1,122,123],[325,1,1,123,124],[326,1,1,124,125],[330,1,1,125,126],[331,1,1,126,127],[333,1,1,127,128],[335,1,1,128,129],[337,1,1,129,130]]],[12,9,9,130,139,[[339,2,2,130,132],[340,1,1,132,133],[341,2,2,133,135],[344,2,2,135,137],[348,1,1,137,138],[366,1,1,138,139]]],[13,28,19,139,158,[[369,6,3,139,142],[370,7,4,142,146],[372,2,1,146,147],[379,1,1,147,148],[381,1,1,148,149],[386,2,1,149,150],[391,1,1,150,151],[392,1,1,151,152],[393,2,2,152,154],[395,1,1,154,155],[399,1,1,155,156],[401,2,1,156,157],[402,1,1,157,158]]],[14,9,9,158,167,[[403,1,1,158,159],[404,8,8,159,167]]],[15,8,8,167,175,[[419,8,8,167,175]]],[16,3,3,175,178,[[434,3,3,175,178]]],[17,2,1,178,179,[[436,2,1,178,179]]],[22,5,5,179,184,[[685,1,1,179,180],[695,1,1,180,181],[697,1,1,181,182],[708,1,1,182,183],[715,1,1,183,184]]],[23,3,3,184,187,[[796,3,3,184,187]]],[25,53,39,187,226,[[809,1,1,187,188],[812,1,1,188,189],[841,12,10,189,199],[842,5,4,199,203],[843,6,5,203,208],[846,8,6,208,214],[849,20,12,214,226]]],[26,1,1,226,227,[[861,1,1,226,227]]]],[111,116,120,122,126,128,135,137,277,278,298,302,345,452,1364,1369,1380,1422,2114,2238,2244,2261,2262,2272,2273,2290,2405,2406,2576,2582,2597,2598,2604,2634,2651,2659,2661,3532,3576,3625,3629,3637,3641,3645,3650,3669,3673,3677,3681,3686,3690,3714,3742,3791,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3963,4043,4273,4507,4511,4516,4526,4530,4539,4672,4696,4700,4703,4707,4709,6014,6069,6080,6081,6086,6087,6090,6157,6197,6571,6995,7000,7007,7010,7089,7099,7100,7335,7347,7349,7623,7658,7775,7805,7879,7903,8124,8588,8701,8876,8902,8906,8920,8937,8950,8957,8973,8983,9074,9522,9699,9720,9890,9898,10026,10096,10120,10201,10241,10310,10312,10381,10417,10427,10538,10542,10696,11171,11240,11241,11244,11248,11252,11253,11254,11295,11470,11509,11618,11705,11745,11756,11763,11792,11909,11975,11998,12027,12032,12035,12047,12060,12061,12093,12094,12096,12433,12440,12445,12456,12487,12488,12489,12490,12840,12846,12850,12872,17790,17989,18022,18234,18388,20298,20306,20307,20620,20656,21478,21484,21490,21498,21502,21506,21507,21510,21513,21525,21528,21535,21537,21538,21568,21569,21570,21571,21572,21631,21632,21633,21635,21636,21642,21710,21711,21712,21715,21717,21718,21722,21723,21732,21734,21735,21736,22093]]]]},{"k":"H2569","v":[["fifth",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1446]]]]},{"k":"H2570","v":[["fifth",[4,4,[[9,4,4,0,4,[[268,1,1,0,1],[269,1,1,1,2],[270,1,1,2,3],[286,1,1,3,4]]]],[8072,8108,8126,8564]]]]},{"k":"H2571","v":[["*",[4,4,[[1,1,1,0,1,[[62,1,1,0,1]]],[5,2,2,1,3,[[187,1,1,1,2],[190,1,1,2,3]]],[6,1,1,3,4,[[217,1,1,3,4]]]],[1885,5865,5922,6705]]],["armed",[2,2,[[5,2,2,0,2,[[187,1,1,0,1],[190,1,1,1,2]]]],[5865,5922]]],["harnessed",[1,1,[[1,1,1,0,1,[[62,1,1,0,1]]]],[1885]]],["men",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6705]]]]},{"k":"H2572","v":[["*",[163,141,[[0,9,8,0,8,[[5,1,1,0,1],[6,1,1,1,2],[7,1,1,2,3],[8,2,2,3,5],[17,4,3,5,8]]],[1,23,17,8,25,[[67,2,2,8,10],[75,6,4,10,14],[76,4,3,14,17],[79,2,1,17,18],[85,6,4,18,22],[87,3,3,22,25]]],[2,5,5,25,30,[[112,1,1,25,26],[114,2,2,26,28],[116,2,2,28,30]]],[3,33,32,30,62,[[117,6,6,30,36],[118,9,8,36,44],[120,8,8,44,52],[124,1,1,52,53],[132,3,3,53,56],[142,3,3,56,59],[147,3,3,59,62]]],[4,2,2,62,64,[[153,1,1,62,63],[174,1,1,63,64]]],[5,1,1,64,65,[[193,1,1,64,65]]],[8,2,2,65,67,[[241,1,1,65,66],[243,1,1,66,67]]],[9,2,2,67,69,[[281,1,1,67,68],[290,1,1,68,69]]],[10,10,9,69,78,[[291,1,1,69,70],[297,2,2,70,72],[299,1,1,72,73],[300,1,1,73,74],[308,5,4,74,78]]],[11,25,16,78,94,[[313,15,6,78,84],[314,3,3,84,87],[325,1,1,87,88],[327,5,5,88,93],[333,1,1,93,94]]],[12,5,4,94,98,[[342,2,1,94,95],[345,1,1,95,96],[346,1,1,96,97],[349,1,1,97,98]]],[13,7,7,98,105,[[367,1,1,98,99],[368,1,1,99,100],[369,1,1,100,101],[374,2,2,101,103],[392,1,1,103,104],[399,1,1,104,105]]],[14,12,12,105,117,[[404,9,9,105,114],[410,3,3,114,117]]],[15,9,9,117,126,[[417,1,1,117,118],[418,1,1,118,119],[419,7,7,119,126]]],[16,2,2,126,128,[[430,1,1,126,127],[432,1,1,127,128]]],[22,1,1,128,129,[[681,1,1,128,129]]],[25,14,11,129,140,[[841,6,6,129,135],[843,3,3,135,138],[846,1,1,138,139],[849,4,1,139,140]]],[36,1,1,140,141,[[910,1,1,140,141]]]],[152,183,186,233,234,448,450,452,2020,2024,2240,2241,2245,2246,2284,2285,2290,2405,2578,2579,2583,2584,2645,2646,2659,3418,3479,3480,3573,3586,3627,3629,3633,3635,3647,3650,3664,3666,3671,3673,3674,3688,3689,3690,3746,3766,3773,3778,3779,3782,3786,3790,3964,4196,4211,4229,4499,4523,4536,4694,4711,4716,4907,5499,5997,7350,7381,8390,8716,8722,8936,8940,9074,9108,9345,9354,9360,9363,9542,9543,9544,9545,9546,9547,9558,9567,9568,9878,9927,9945,9948,9950,9952,10120,10449,10615,10624,10753,11211,11228,11238,11356,11364,11735,11909,12034,12041,12042,12049,12056,12057,12058,12064,12087,12204,12207,12227,12399,12416,12430,12432,12440,12453,12454,12460,12490,12793,12816,17710,21492,21498,21502,21506,21510,21513,21554,21559,21560,21632,21719,22871]]],["+",[6,4,[[1,2,1,0,1,[[76,2,1,0,1]]],[10,3,2,1,3,[[308,3,2,1,3]]],[15,1,1,3,4,[[417,1,1,3,4]]]],[2290,9345,9354,12399]]],["Fifty",[2,2,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]]],[2240,2578]]],["fifties",[6,5,[[1,2,2,0,2,[[67,2,2,0,2]]],[4,1,1,2,3,[[153,1,1,2,3]]],[8,1,1,3,4,[[243,1,1,3,4]]],[11,2,1,4,5,[[313,2,1,4,5]]]],[2020,2024,4907,7381,9547]]],["fiftieth",[4,4,[[2,2,2,0,2,[[114,2,2,0,2]]],[11,2,2,2,4,[[327,2,2,2,4]]]],[3479,3480,9948,9952]]],["fifty",[145,128,[[0,9,8,0,8,[[5,1,1,0,1],[6,1,1,1,2],[7,1,1,2,3],[8,2,2,3,5],[17,4,3,5,8]]],[1,17,14,8,22,[[75,5,4,8,12],[76,2,2,12,14],[79,2,1,14,15],[85,5,4,15,19],[87,3,3,19,22]]],[2,3,3,22,25,[[112,1,1,22,23],[116,2,2,23,25]]],[3,33,32,25,57,[[117,6,6,25,31],[118,9,8,31,39],[120,8,8,39,47],[124,1,1,47,48],[132,3,3,48,51],[142,3,3,51,54],[147,3,3,54,57]]],[4,1,1,57,58,[[174,1,1,57,58]]],[5,1,1,58,59,[[193,1,1,58,59]]],[8,1,1,59,60,[[241,1,1,59,60]]],[9,2,2,60,62,[[281,1,1,60,61],[290,1,1,61,62]]],[10,7,7,62,69,[[291,1,1,62,63],[297,2,2,63,65],[299,1,1,65,66],[300,1,1,66,67],[308,2,2,67,69]]],[11,21,13,69,82,[[313,13,5,69,74],[314,3,3,74,77],[325,1,1,77,78],[327,3,3,78,81],[333,1,1,81,82]]],[12,5,4,82,86,[[342,2,1,82,83],[345,1,1,83,84],[346,1,1,84,85],[349,1,1,85,86]]],[13,7,7,86,93,[[367,1,1,86,87],[368,1,1,87,88],[369,1,1,88,89],[374,2,2,89,91],[392,1,1,91,92],[399,1,1,92,93]]],[14,12,12,93,105,[[404,9,9,93,102],[410,3,3,102,105]]],[15,8,8,105,113,[[418,1,1,105,106],[419,7,7,106,113]]],[16,2,2,113,115,[[430,1,1,113,114],[432,1,1,114,115]]],[22,1,1,115,116,[[681,1,1,115,116]]],[25,14,11,116,127,[[841,6,6,116,122],[843,3,3,122,125],[846,1,1,125,126],[849,4,1,126,127]]],[36,1,1,127,128,[[910,1,1,127,128]]]],[152,183,186,233,234,448,450,452,2240,2241,2245,2246,2284,2285,2405,2578,2579,2583,2584,2645,2646,2659,3418,3573,3586,3627,3629,3633,3635,3647,3650,3664,3666,3671,3673,3674,3688,3689,3690,3746,3766,3773,3778,3779,3782,3786,3790,3964,4196,4211,4229,4499,4523,4536,4694,4711,4716,5499,5997,7350,8390,8716,8722,8936,8940,9074,9108,9360,9363,9542,9543,9544,9545,9546,9558,9567,9568,9878,9927,9945,9950,10120,10449,10615,10624,10753,11211,11228,11238,11356,11364,11735,11909,12034,12041,12042,12049,12056,12057,12058,12064,12087,12204,12207,12227,12416,12430,12432,12440,12453,12454,12460,12490,12793,12816,17710,21492,21498,21502,21506,21510,21513,21554,21559,21560,21632,21719,22871]]]]},{"k":"H2573","v":[["bottle",[4,4,[[0,3,3,0,3,[[20,3,3,0,3]]],[34,1,1,3,4,[[904,1,1,3,4]]]],[527,528,532,22763]]]]},{"k":"H2574","v":[["*",[36,34,[[3,2,2,0,2,[[129,1,1,0,1],[150,1,1,1,2]]],[5,1,1,2,3,[[199,1,1,2,3]]],[6,1,1,3,4,[[213,1,1,3,4]]],[9,1,1,4,5,[[274,1,1,4,5]]],[10,1,1,5,6,[[298,1,1,5,6]]],[11,8,8,6,14,[[326,2,2,6,8],[329,2,2,8,10],[330,1,1,10,11],[331,1,1,11,12],[335,1,1,12,13],[337,1,1,13,14]]],[12,3,3,14,17,[[350,1,1,14,15],[355,2,2,15,17]]],[13,2,2,17,19,[[373,1,1,17,18],[374,1,1,18,19]]],[22,4,4,19,23,[[688,1,1,19,20],[689,1,1,20,21],[714,1,1,21,22],[715,1,1,22,23]]],[23,4,4,23,27,[[783,1,1,23,24],[793,1,1,24,25],[796,2,2,25,27]]],[25,6,4,27,31,[[848,4,3,27,30],[849,2,1,30,31]]],[29,2,2,31,33,[[884,2,2,31,33]]],[37,1,1,33,34,[[919,1,1,33,34]]]],[4096,4824,6159,6571,8218,9050,9921,9924,10007,10013,10058,10074,10198,10243,10765,10893,10899,11332,11350,17859,17895,18349,18365,19928,20150,20285,20303,21695,21696,21699,21703,22452,22464,23001]]],["+",[2,2,[[11,1,1,0,1,[[329,1,1,0,1]]],[22,1,1,1,2,[[689,1,1,1,2]]]],[10007,17895]]],["Hamath",[32,30,[[3,2,2,0,2,[[129,1,1,0,1],[150,1,1,1,2]]],[5,1,1,2,3,[[199,1,1,2,3]]],[6,1,1,3,4,[[213,1,1,3,4]]],[9,1,1,4,5,[[274,1,1,4,5]]],[10,1,1,5,6,[[298,1,1,5,6]]],[11,7,7,6,13,[[326,2,2,6,8],[329,1,1,8,9],[330,1,1,9,10],[331,1,1,10,11],[335,1,1,11,12],[337,1,1,12,13]]],[12,2,2,13,15,[[355,2,2,13,15]]],[13,2,2,15,17,[[373,1,1,15,16],[374,1,1,16,17]]],[22,3,3,17,20,[[688,1,1,17,18],[714,1,1,18,19],[715,1,1,19,20]]],[23,4,4,20,24,[[783,1,1,20,21],[793,1,1,21,22],[796,2,2,22,24]]],[25,6,4,24,28,[[848,4,3,24,27],[849,2,1,27,28]]],[29,1,1,28,29,[[884,1,1,28,29]]],[37,1,1,29,30,[[919,1,1,29,30]]]],[4096,4824,6159,6571,8218,9050,9921,9924,10013,10058,10074,10198,10243,10893,10899,11332,11350,17859,18349,18365,19928,20150,20285,20303,21695,21696,21699,21703,22452,23001]]],["Hemath",[2,2,[[12,1,1,0,1,[[350,1,1,0,1]]],[29,1,1,1,2,[[884,1,1,1,2]]]],[10765,22464]]]]},{"k":"H2575","v":[["*",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[12,1,1,1,2,[[339,1,1,1,2]]]],[6356,10361]]],["+",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10361]]],["Hammath",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6356]]]]},{"k":"H2576","v":[["Hammothdor",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6413]]]]},{"k":"H2577","v":[["Hamathite",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[252,10268]]]]},{"k":"H2578","v":[["Hamathzobah",[1,1,[[13,1,1,0,1,[[374,1,1,0,1]]]],[11349]]]]},{"k":"H2579","v":[]},{"k":"H2580","v":[["*",[69,67,[[0,14,14,0,14,[[5,1,1,0,1],[17,1,1,1,2],[18,1,1,2,3],[29,1,1,3,4],[31,1,1,4,5],[32,3,3,5,8],[33,1,1,8,9],[38,2,2,9,11],[46,2,2,11,13],[49,1,1,13,14]]],[1,9,8,14,22,[[52,1,1,14,15],[60,1,1,15,16],[61,1,1,16,17],[82,5,4,17,21],[83,1,1,21,22]]],[3,3,3,22,25,[[127,2,2,22,24],[148,1,1,24,25]]],[4,1,1,25,26,[[176,1,1,25,26]]],[6,1,1,26,27,[[216,1,1,26,27]]],[7,3,3,27,30,[[233,3,3,27,30]]],[8,6,6,30,36,[[236,1,1,30,31],[251,1,1,31,32],[255,2,2,32,34],[260,1,1,34,35],[262,1,1,35,36]]],[9,3,3,36,39,[[280,1,1,36,37],[281,1,1,37,38],[282,1,1,38,39]]],[10,1,1,39,40,[[301,1,1,39,40]]],[16,6,6,40,46,[[427,2,2,40,42],[430,2,2,42,44],[432,1,1,44,45],[433,1,1,45,46]]],[18,2,2,46,48,[[522,1,1,46,47],[561,1,1,47,48]]],[19,13,13,48,61,[[628,1,1,48,49],[630,3,3,49,52],[631,1,1,52,53],[632,1,1,53,54],[638,1,1,54,55],[640,1,1,55,56],[644,1,1,56,57],[649,2,2,57,59],[655,1,1,59,60],[658,1,1,60,61]]],[20,2,2,61,63,[[667,1,1,61,62],[668,1,1,62,63]]],[23,1,1,63,64,[[775,1,1,63,64]]],[33,1,1,64,65,[[902,1,1,64,65]]],[37,3,2,65,67,[[914,2,1,65,66],[922,1,1,66,67]]]],[145,427,476,857,933,968,970,975,991,1153,1170,1445,1449,1510,1600,1809,1852,2485,2486,2489,2490,2505,4035,4039,4723,5526,6671,7151,7159,7162,7230,7617,7733,7759,7869,7935,8378,8414,8430,9127,12739,12741,12781,12787,12810,12822,14599,15270,16409,16459,16477,16489,16499,16536,16704,16762,16881,17016,17026,17219,17314,17486,17505,19693,22716,22929,23055]]],["+",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22716]]],["Favour",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17314]]],["Grace",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22929]]],["favour",[25,25,[[0,3,3,0,3,[[17,1,1,0,1],[29,1,1,1,2],[38,1,1,2,3]]],[1,3,3,3,6,[[52,1,1,3,4],[60,1,1,4,5],[61,1,1,5,6]]],[3,2,2,6,8,[[127,2,2,6,8]]],[4,1,1,8,9,[[176,1,1,8,9]]],[7,1,1,9,10,[[233,1,1,9,10]]],[8,3,3,10,13,[[251,1,1,10,11],[255,1,1,11,12],[260,1,1,12,13]]],[9,1,1,13,14,[[281,1,1,13,14]]],[10,1,1,14,15,[[301,1,1,14,15]]],[16,5,5,15,20,[[427,1,1,15,16],[430,2,2,16,18],[432,1,1,18,19],[433,1,1,19,20]]],[19,4,4,20,24,[[630,1,1,20,21],[640,1,1,21,22],[649,1,1,22,23],[655,1,1,23,24]]],[20,1,1,24,25,[[667,1,1,24,25]]]],[427,857,1170,1600,1809,1852,4035,4039,5526,7162,7617,7759,7869,8414,9127,12739,12781,12787,12810,12822,16459,16762,17016,17219,17486]]],["grace",[37,36,[[0,11,11,0,11,[[5,1,1,0,1],[18,1,1,1,2],[31,1,1,2,3],[32,3,3,3,6],[33,1,1,6,7],[38,1,1,7,8],[46,2,2,8,10],[49,1,1,10,11]]],[1,6,5,11,16,[[82,5,4,11,15],[83,1,1,15,16]]],[3,1,1,16,17,[[148,1,1,16,17]]],[6,1,1,17,18,[[216,1,1,17,18]]],[7,2,2,18,20,[[233,2,2,18,20]]],[8,3,3,20,23,[[236,1,1,20,21],[255,1,1,21,22],[262,1,1,22,23]]],[9,2,2,23,25,[[280,1,1,23,24],[282,1,1,24,25]]],[16,1,1,25,26,[[427,1,1,25,26]]],[18,2,2,26,28,[[522,1,1,26,27],[561,1,1,27,28]]],[19,5,5,28,33,[[628,1,1,28,29],[630,2,2,29,31],[631,1,1,31,32],[649,1,1,32,33]]],[23,1,1,33,34,[[775,1,1,33,34]]],[37,2,2,34,36,[[914,1,1,34,35],[922,1,1,35,36]]]],[145,476,933,968,970,975,991,1153,1445,1449,1510,2485,2486,2489,2490,2505,4723,6671,7151,7159,7230,7733,7935,8378,8430,12741,14599,15270,16409,16477,16489,16499,17026,19693,22929,23055]]],["gracious",[2,2,[[19,1,1,0,1,[[638,1,1,0,1]]],[20,1,1,1,2,[[668,1,1,1,2]]]],[16704,17505]]],["pleasant",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16536]]],["precious",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16881]]]]},{"k":"H2581","v":[["Hen",[1,1,[[37,1,1,0,1,[[916,1,1,0,1]]]],[22961]]]]},{"k":"H2582","v":[["Henadad",[4,4,[[14,1,1,0,1,[[405,1,1,0,1]]],[15,3,3,1,4,[[415,2,2,1,3],[422,1,1,3,4]]]],[12106,12345,12351,12558]]]]},{"k":"H2583","v":[["*",[143,135,[[0,2,2,0,2,[[25,1,1,0,1],[32,1,1,1,2]]],[1,9,7,2,9,[[62,1,1,2,3],[63,3,2,3,5],[64,1,1,5,6],[66,1,1,6,7],[67,1,1,7,8],[68,2,1,8,9]]],[3,74,72,9,81,[[117,4,4,9,13],[118,8,7,13,20],[119,4,4,20,24],[125,6,5,24,29],[126,3,3,29,32],[128,1,1,32,33],[137,4,4,33,37],[138,1,1,37,38],[147,1,1,38,39],[149,42,42,39,81]]],[4,1,1,81,82,[[153,1,1,81,82]]],[5,7,7,82,89,[[190,1,1,82,83],[191,1,1,83,84],[194,1,1,84,85],[196,3,3,85,88],[197,1,1,88,89]]],[6,12,11,89,100,[[216,2,2,89,91],[217,1,1,91,92],[219,1,1,92,93],[220,2,1,93,94],[221,2,2,94,96],[225,1,1,96,97],[228,1,1,97,98],[229,1,1,98,99],[230,1,1,99,100]]],[8,13,10,100,110,[[239,2,1,100,101],[246,1,1,101,102],[248,2,2,102,104],[252,2,2,104,106],[261,3,2,106,108],[263,2,1,108,109],[264,1,1,109,110]]],[9,5,5,110,115,[[277,1,1,110,111],[278,1,1,111,112],[283,1,1,112,113],[289,1,1,113,114],[290,1,1,114,115]]],[10,4,4,115,119,[[306,2,2,115,117],[310,2,2,117,119]]],[11,1,1,119,120,[[337,1,1,119,120]]],[12,2,2,120,122,[[348,1,1,120,121],[356,1,1,121,122]]],[13,1,1,122,123,[[398,1,1,122,123]]],[14,1,1,123,124,[[410,1,1,123,124]]],[15,1,1,124,125,[[423,1,1,124,125]]],[17,1,1,125,126,[[454,1,1,125,126]]],[18,3,3,126,129,[[504,1,1,126,127],[511,1,1,127,128],[530,1,1,128,129]]],[22,2,2,129,131,[[707,2,2,129,131]]],[23,2,2,131,133,[[794,1,1,131,132],[796,1,1,132,133]]],[33,1,1,133,134,[[902,1,1,133,134]]],[37,1,1,134,135,[[919,1,1,134,135]]]],[709,978,1887,1891,1898,1947,1984,2004,2028,3654,3655,3656,3657,3660,3661,3663,3670,3675,3685,3692,3715,3721,3727,3730,3982,3983,3985,3987,3988,3993,3994,4019,4075,4350,4351,4352,4353,4376,4683,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4801,4802,4803,4804,4805,4806,4807,4808,4809,4925,5929,5944,6013,6069,6095,6098,6112,6658,6687,6695,6804,6828,6847,6849,6938,7005,7033,7073,7298,7446,7490,7501,7619,7620,7908,7910,7946,7968,8270,8314,8475,8666,8697,9298,9299,9435,9437,10223,10688,10914,11876,12216,12618,13309,14288,14395,14724,18194,18196,20195,20280,22729,23007]]],["+",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[978]]],["abide",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4683]]],["camp",[3,3,[[22,1,1,0,1,[[707,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]],[33,1,1,2,3,[[902,1,1,2,3]]]],[18196,20195,22729]]],["camped",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2028]]],["dwelt",[2,2,[[15,1,1,0,1,[[423,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]]],[12618,18194]]],["encamp",[11,10,[[1,2,1,0,1,[[63,2,1,0,1]]],[3,5,5,1,6,[[117,1,1,1,2],[118,2,2,2,4],[119,1,1,4,5],[126,1,1,5,6]]],[9,1,1,6,7,[[278,1,1,6,7]]],[17,1,1,7,8,[[454,1,1,7,8]]],[18,1,1,8,9,[[504,1,1,8,9]]],[37,1,1,9,10,[[919,1,1,9,10]]]],[1891,3654,3675,3685,3730,4019,8314,13309,14288,23007]]],["encamped",[33,32,[[1,3,3,0,3,[[62,1,1,0,1],[64,1,1,1,2],[67,1,1,2,3]]],[3,13,13,3,16,[[149,13,13,3,16]]],[5,5,5,16,21,[[190,1,1,16,17],[191,1,1,17,18],[196,3,3,18,21]]],[6,5,4,21,25,[[216,1,1,21,22],[219,1,1,22,23],[220,2,1,23,24],[230,1,1,24,25]]],[8,2,2,25,27,[[246,1,1,25,26],[248,1,1,26,27]]],[9,1,1,27,28,[[277,1,1,27,28]]],[10,2,2,28,30,[[306,2,2,28,30]]],[12,1,1,30,31,[[348,1,1,30,31]]],[13,1,1,31,32,[[398,1,1,31,32]]]],[1887,1947,2004,4770,4771,4772,4773,4774,4777,4784,4786,4790,4792,4794,4795,4806,5929,5944,6069,6095,6098,6658,6804,6828,7073,7446,7501,8270,9298,9299,10688,11876]]],["encampeth",[2,2,[[18,2,2,0,2,[[511,1,1,0,1],[530,1,1,1,2]]]],[14395,14724]]],["encamping",[1,1,[[1,1,1,0,1,[[63,1,1,0,1]]]],[1898]]],["end",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7033]]],["lie",[2,2,[[3,2,2,0,2,[[126,2,2,0,2]]]],[3993,3994]]],["pitch",[9,8,[[3,9,8,0,8,[[117,1,1,0,1],[118,5,4,1,5],[119,3,3,5,8]]]],[3657,3660,3661,3663,3670,3715,3721,3727]]],["pitched",[67,64,[[1,2,2,0,2,[[66,1,1,0,1],[68,1,1,1,2]]],[3,38,38,2,40,[[117,1,1,2,3],[118,1,1,3,4],[125,1,1,4,5],[128,1,1,5,6],[137,4,4,6,10],[138,1,1,10,11],[149,29,29,11,40]]],[5,2,2,40,42,[[194,1,1,40,41],[197,1,1,41,42]]],[6,6,6,42,48,[[216,1,1,42,43],[217,1,1,43,44],[221,2,2,44,46],[225,1,1,46,47],[228,1,1,47,48]]],[8,11,8,48,56,[[239,2,1,48,49],[248,1,1,49,50],[252,2,2,50,52],[261,3,2,52,54],[263,2,1,54,55],[264,1,1,55,56]]],[9,3,3,56,59,[[283,1,1,56,57],[289,1,1,57,58],[290,1,1,58,59]]],[10,2,2,59,61,[[310,2,2,59,61]]],[11,1,1,61,62,[[337,1,1,61,62]]],[12,1,1,62,63,[[356,1,1,62,63]]],[23,1,1,63,64,[[796,1,1,63,64]]]],[1984,2028,3655,3692,3983,4075,4350,4351,4352,4353,4376,4765,4766,4767,4768,4769,4775,4776,4778,4779,4780,4781,4782,4783,4785,4787,4788,4789,4791,4793,4796,4797,4801,4802,4803,4804,4805,4807,4808,4809,6013,6112,6687,6695,6847,6849,6938,7005,7298,7490,7619,7620,7908,7910,7946,7968,8475,8666,8697,9435,9437,10223,10914,20280]]],["tent",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[709]]],["tents",[8,8,[[3,6,6,0,6,[[117,1,1,0,1],[125,5,5,1,6]]],[4,1,1,6,7,[[153,1,1,6,7]]],[14,1,1,7,8,[[410,1,1,7,8]]]],[3656,3982,3983,3985,3987,3988,4925,12216]]]]},{"k":"H2584","v":[["Hannah",[13,11,[[8,13,11,0,11,[[236,11,9,0,9],[237,2,2,9,11]]]],[7214,7217,7220,7221,7225,7227,7231,7232,7234,7241,7261]]]]},{"k":"H2585","v":[["*",[16,15,[[0,11,10,0,10,[[3,3,2,0,2],[4,6,6,2,8],[24,1,1,8,9],[45,1,1,9,10]]],[1,1,1,10,11,[[55,1,1,10,11]]],[3,1,1,11,12,[[142,1,1,11,12]]],[12,3,3,12,15,[[338,2,2,12,14],[342,1,1,14,15]]]],[96,97,123,124,126,127,128,129,662,1395,1669,4494,10255,10285,10431]]],["Enoch",[9,8,[[0,9,8,0,8,[[3,3,2,0,2],[4,6,6,2,8]]]],[96,97,123,124,126,127,128,129]]],["Hanoch",[5,5,[[0,2,2,0,2,[[24,1,1,0,1],[45,1,1,1,2]]],[1,1,1,2,3,[[55,1,1,2,3]]],[3,1,1,3,4,[[142,1,1,3,4]]],[12,1,1,4,5,[[342,1,1,4,5]]]],[662,1395,1669,4494,10431]]],["Henoch",[2,2,[[12,2,2,0,2,[[338,2,2,0,2]]]],[10255,10285]]]]},{"k":"H2586","v":[["Hanun",[11,10,[[9,4,4,0,4,[[276,4,4,0,4]]],[12,5,4,4,8,[[356,5,4,4,8]]],[15,2,2,8,10,[[415,2,2,8,10]]]],[8241,8242,8243,8244,10909,10910,10911,10913,12340,12357]]]]},{"k":"H2587","v":[["*",[13,13,[[1,2,2,0,2,[[71,1,1,0,1],[83,1,1,1,2]]],[13,1,1,2,3,[[396,1,1,2,3]]],[15,2,2,3,5,[[421,2,2,3,5]]],[18,6,6,5,11,[[563,1,1,5,6],[580,1,1,6,7],[588,1,1,7,8],[589,1,1,8,9],[593,1,1,9,10],[622,1,1,10,11]]],[28,1,1,11,12,[[877,1,1,11,12]]],[31,1,1,12,13,[[892,1,1,12,13]]]],[2140,2502,11836,12528,12542,15299,15557,15797,15807,15853,16328,22324,22570]]],["Gracious",[1,1,[[18,1,1,0,1,[[593,1,1,0,1]]]],[15853]]],["gracious",[12,12,[[1,2,2,0,2,[[71,1,1,0,1],[83,1,1,1,2]]],[13,1,1,2,3,[[396,1,1,2,3]]],[15,2,2,3,5,[[421,2,2,3,5]]],[18,5,5,5,10,[[563,1,1,5,6],[580,1,1,6,7],[588,1,1,7,8],[589,1,1,8,9],[622,1,1,9,10]]],[28,1,1,10,11,[[877,1,1,10,11]]],[31,1,1,11,12,[[892,1,1,11,12]]]],[2140,2502,11836,12528,12542,15299,15557,15797,15807,16328,22324,22570]]]]},{"k":"H2588","v":[["cabins",[1,1,[[23,1,1,0,1,[[781,1,1,0,1]]]],[19890]]]]},{"k":"H2589","v":[["gracious",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15102]]]]},{"k":"H2590","v":[["*",[5,4,[[0,4,3,0,3,[[49,4,3,0,3]]],[21,1,1,3,4,[[672,1,1,3,4]]]],[1508,1509,1532,17567]]],["+",[2,1,[[0,2,1,0,1,[[49,2,1,0,1]]]],[1508]]],["embalmed",[2,2,[[0,2,2,0,2,[[49,2,2,0,2]]]],[1509,1532]]],["forth",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17567]]]]},{"k":"H2591","v":[["wheat",[2,2,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]]],[12160,12195]]]]},{"k":"H2592","v":[["*",[2,2,[[3,1,1,0,1,[[150,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]]],[4839,10574]]],["Haniel",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10574]]],["Hanniel",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4839]]]]},{"k":"H2593","v":[["trained",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[350]]]]},{"k":"H2594","v":[["favour",[1,1,[[23,1,1,0,1,[[760,1,1,0,1]]]],[19349]]]]},{"k":"H2595","v":[["*",[47,40,[[8,20,18,0,18,[[248,2,2,0,2],[252,4,3,2,5],[253,2,2,5,7],[254,3,2,7,9],[255,1,1,9,10],[256,1,1,10,11],[257,1,1,11,12],[261,6,6,12,18]]],[9,9,6,18,24,[[267,1,1,18,19],[268,2,1,19,20],[287,1,1,20,21],[289,5,3,21,24]]],[11,1,1,24,25,[[323,1,1,24,25]]],[12,7,5,25,30,[[348,5,3,25,28],[349,1,1,28,29],[357,1,1,29,30]]],[13,1,1,30,31,[[389,1,1,30,31]]],[17,2,2,31,33,[[474,1,1,31,32],[476,1,1,32,33]]],[18,3,3,33,36,[[512,1,1,33,34],[523,1,1,34,35],[534,1,1,35,36]]],[22,1,1,36,37,[[680,1,1,36,37]]],[32,1,1,37,38,[[896,1,1,37,38]]],[33,1,1,38,39,[[902,1,1,38,39]]],[34,1,1,39,40,[[905,1,1,39,40]]]],[7504,7507,7625,7663,7665,7686,7687,7715,7716,7763,7780,7793,7912,7913,7916,7917,7921,7927,8028,8072,8599,8660,8671,8674,9839,10684,10693,10696,10754,10931,11665,13857,13914,14413,14623,14772,17689,22623,22715,22779]]],["javelin",[6,5,[[8,6,5,0,5,[[253,2,2,0,2],[254,3,2,2,4],[255,1,1,4,5]]]],[7686,7687,7715,7716,7763]]],["spear",[34,29,[[8,12,12,0,12,[[248,1,1,0,1],[252,3,3,1,4],[256,1,1,4,5],[257,1,1,5,6],[261,6,6,6,12]]],[9,9,6,12,18,[[267,1,1,12,13],[268,2,1,13,14],[287,1,1,14,15],[289,5,3,15,18]]],[12,7,5,18,23,[[348,5,3,18,21],[349,1,1,21,22],[357,1,1,22,23]]],[17,2,2,23,25,[[474,1,1,23,24],[476,1,1,24,25]]],[18,2,2,25,27,[[512,1,1,25,26],[523,1,1,26,27]]],[33,1,1,27,28,[[902,1,1,27,28]]],[34,1,1,28,29,[[905,1,1,28,29]]]],[7507,7625,7663,7665,7780,7793,7912,7913,7916,7917,7921,7927,8028,8072,8599,8660,8671,8674,10684,10693,10696,10754,10931,13857,13914,14413,14623,22715,22779]]],["spear's",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7625]]],["spears",[6,6,[[8,1,1,0,1,[[248,1,1,0,1]]],[11,1,1,1,2,[[323,1,1,1,2]]],[13,1,1,2,3,[[389,1,1,2,3]]],[18,1,1,3,4,[[534,1,1,3,4]]],[22,1,1,4,5,[[680,1,1,4,5]]],[32,1,1,5,6,[[896,1,1,5,6]]]],[7504,9839,11665,14772,17689,22623]]]]},{"k":"H2596","v":[["*",[5,4,[[4,2,1,0,1,[[172,2,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[13,1,1,2,3,[[373,1,1,2,3]]],[19,1,1,3,4,[[649,1,1,3,4]]]],[5432,9048,11329,17021]]],["+",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[373,1,1,1,2]]]],[9048,11329]]],["dedicate",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5432]]],["dedicated",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5432]]],["up",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17021]]]]},{"k":"H2597","v":[["dedication",[4,4,[[14,2,2,0,2,[[408,2,2,0,2]]],[26,2,2,2,4,[[852,2,2,2,4]]]],[12167,12168,21809,21810]]]]},{"k":"H2598","v":[["*",[7,6,[[3,4,4,0,4,[[123,4,4,0,4]]],[13,1,1,4,5,[[373,1,1,4,5]]],[15,2,1,5,6,[[424,2,1,5,6]]]],[3860,3861,3934,3938,11333,12651]]],["dedicating",[2,2,[[3,2,2,0,2,[[123,2,2,0,2]]]],[3860,3861]]],["dedication",[5,4,[[3,2,2,0,2,[[123,2,2,0,2]]],[13,1,1,2,3,[[373,1,1,2,3]]],[15,2,1,3,4,[[424,2,1,3,4]]]],[3934,3938,11333,12651]]]]},{"k":"H2599","v":[["Hanochites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4494]]]]},{"k":"H2600","v":[["*",[32,31,[[0,1,1,0,1,[[28,1,1,0,1]]],[1,2,2,1,3,[[70,2,2,1,3]]],[3,1,1,3,4,[[127,1,1,3,4]]],[8,2,2,4,6,[[254,1,1,4,5],[260,1,1,5,6]]],[9,1,1,6,7,[[290,1,1,6,7]]],[10,1,1,7,8,[[292,1,1,7,8]]],[12,1,1,8,9,[[358,1,1,8,9]]],[17,4,4,9,13,[[436,1,1,9,10],[437,1,1,10,11],[444,1,1,11,12],[457,1,1,12,13]]],[18,6,5,13,18,[[512,3,2,13,15],[546,1,1,15,16],[586,1,1,16,17],[596,1,1,17,18]]],[19,6,6,18,24,[[628,2,2,18,20],[630,1,1,20,21],[650,1,1,21,22],[651,1,1,22,23],[653,1,1,23,24]]],[22,2,2,24,26,[[730,2,2,24,26]]],[23,1,1,26,27,[[766,1,1,26,27]]],[24,1,1,27,28,[[799,1,1,27,28]]],[25,2,2,28,30,[[807,1,1,28,29],[815,1,1,29,30]]],[38,1,1,30,31,[[925,1,1,30,31]]]],[810,2079,2088,4029,7711,7892,8716,8801,10958,12878,12894,13068,13395,14417,14429,14939,15758,16059,16411,16417,16485,17073,17107,17143,18699,18701,19467,20406,20573,20754,23099]]],["+",[3,3,[[3,1,1,0,1,[[127,1,1,0,1]]],[25,2,2,1,3,[[807,1,1,1,2],[815,1,1,2,3]]]],[4029,20573,20754]]],["cause",[14,13,[[8,1,1,0,1,[[254,1,1,0,1]]],[17,2,2,1,3,[[437,1,1,1,2],[444,1,1,2,3]]],[18,6,5,3,8,[[512,3,2,3,5],[546,1,1,5,6],[586,1,1,6,7],[596,1,1,7,8]]],[19,4,4,8,12,[[628,1,1,8,9],[630,1,1,9,10],[650,1,1,10,11],[651,1,1,11,12]]],[24,1,1,12,13,[[799,1,1,12,13]]]],[7711,12894,13068,14417,14429,14939,15758,16059,16411,16485,17073,17107,20406]]],["causeless",[2,2,[[8,1,1,0,1,[[260,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]]],[7892,17143]]],["cost",[1,1,[[12,1,1,0,1,[[358,1,1,0,1]]]],[10958]]],["free",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2088]]],["innocent",[1,1,[[10,1,1,0,1,[[292,1,1,0,1]]]],[8801]]],["nothing",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[9,1,1,1,2,[[290,1,1,1,2]]]],[2079,8716]]],["nought",[6,6,[[0,1,1,0,1,[[28,1,1,0,1]]],[17,2,2,1,3,[[436,1,1,1,2],[457,1,1,2,3]]],[22,2,2,3,5,[[730,2,2,3,5]]],[38,1,1,5,6,[[925,1,1,5,6]]]],[810,12878,13395,18699,18701,23099]]],["vain",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16417]]],["wages",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19467]]]]},{"k":"H2601","v":[["Hanameel",[4,4,[[23,4,4,0,4,[[776,4,4,0,4]]]],[19738,19739,19740,19743]]]]},{"k":"H2602","v":[["frost",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15160]]]]},{"k":"H2603","v":[["*",[77,72,[[0,4,4,0,4,[[32,2,2,0,2],[41,1,1,2,3],[42,1,1,3,4]]],[1,2,1,4,5,[[82,2,1,4,5]]],[3,1,1,5,6,[[122,1,1,5,6]]],[4,3,3,6,9,[[155,1,1,6,7],[159,1,1,7,8],[180,1,1,8,9]]],[6,1,1,9,10,[[231,1,1,9,10]]],[9,1,1,10,11,[[278,1,1,10,11]]],[10,3,3,11,14,[[298,3,3,11,14]]],[11,2,2,14,16,[[313,1,1,14,15],[325,1,1,15,16]]],[13,2,2,16,18,[[372,2,2,16,18]]],[16,2,2,18,20,[[429,1,1,18,19],[433,1,1,19,20]]],[17,7,6,20,26,[[443,1,1,20,21],[444,1,1,21,22],[454,4,3,22,25],[468,1,1,25,26]]],[18,32,30,26,56,[[481,1,1,26,27],[483,1,1,27,28],[486,1,1,28,29],[502,1,1,29,30],[503,1,1,30,31],[504,1,1,31,32],[507,2,2,32,34],[508,1,1,34,35],[514,2,2,35,37],[518,2,2,37,39],[528,1,1,39,40],[533,1,1,40,41],[534,2,1,41,42],[536,1,1,42,43],[544,1,1,43,44],[563,2,2,44,46],[579,2,2,46,48],[586,1,1,48,49],[589,1,1,49,50],[596,3,3,50,53],[600,3,2,53,55],[619,1,1,55,56]]],[19,6,6,56,62,[[641,2,2,56,58],[646,1,1,58,59],[648,1,1,59,60],[653,1,1,60,61],[655,1,1,61,62]]],[22,6,5,62,67,[[704,1,1,62,63],[705,1,1,63,64],[708,3,2,64,66],[711,1,1,66,67]]],[23,1,1,67,68,[[766,1,1,67,68]]],[24,1,1,68,69,[[800,1,1,68,69]]],[27,1,1,69,70,[[873,1,1,69,70]]],[29,1,1,70,71,[[883,1,1,70,71]]],[38,1,1,71,72,[[925,1,1,71,72]]]],[965,971,1273,1319,2492,3848,4998,5113,5661,7124,8308,9018,9032,9044,9546,9894,11306,11319,12770,12820,13034,13066,13313,13314,13318,13674,13966,13987,14034,14267,14284,14292,14327,14329,14340,14471,14476,14546,14552,14692,14756,14769,14795,14894,15287,15300,15534,15535,15767,15808,15927,15956,16030,16100,16101,16287,16793,16803,16942,16994,17166,17204,18140,18162,18235,18236,18281,19477,20436,22256,22438,23098]]],["+",[9,8,[[0,2,2,0,2,[[32,1,1,0,1],[41,1,1,1,2]]],[1,1,1,2,3,[[82,1,1,2,3]]],[4,1,1,3,4,[[155,1,1,3,4]]],[11,1,1,4,5,[[313,1,1,4,5]]],[18,1,1,5,6,[[600,1,1,5,6]]],[22,3,2,6,8,[[705,1,1,6,7],[708,2,1,7,8]]]],[965,1273,2492,4998,9546,16100,18162,18236]]],["besought",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12820]]],["fair",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17166]]],["favour",[6,6,[[4,1,1,0,1,[[180,1,1,0,1]]],[18,4,4,1,5,[[579,2,2,1,3],[586,1,1,3,4],[589,1,1,4,5]]],[19,1,1,5,6,[[648,1,1,5,6]]]],[5661,15534,15535,15767,15808,16994]]],["favourable",[1,1,[[6,1,1,0,1,[[231,1,1,0,1]]]],[7124]]],["favoured",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20436]]],["gracious",[11,11,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,1,1,1,2,[[82,1,1,1,2]]],[3,1,1,2,3,[[122,1,1,2,3]]],[9,1,1,3,4,[[278,1,1,3,4]]],[11,1,1,4,5,[[325,1,1,4,5]]],[17,1,1,5,6,[[468,1,1,5,6]]],[22,2,2,6,8,[[708,1,1,6,7],[711,1,1,7,8]]],[23,1,1,8,9,[[766,1,1,8,9]]],[29,1,1,9,10,[[883,1,1,9,10]]],[38,1,1,10,11,[[925,1,1,10,11]]]],[1319,2492,3848,8308,9894,13674,18235,18281,19477,22438,23098]]],["graciously",[2,2,[[0,1,1,0,1,[[32,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[971,15927]]],["intreated",[2,2,[[17,2,2,0,2,[[454,2,2,0,2]]]],[13313,13314]]],["merciful",[12,11,[[18,12,11,0,11,[[503,1,1,0,1],[514,1,1,1,2],[518,2,2,2,4],[533,1,1,4,5],[534,2,1,5,6],[536,1,1,6,7],[544,1,1,7,8],[563,1,1,8,9],[596,2,2,9,11]]]],[14284,14476,14546,14552,14756,14769,14795,14894,15287,15956,16030]]],["mercy",[12,12,[[4,1,1,0,1,[[159,1,1,0,1]]],[18,10,10,1,11,[[481,1,1,1,2],[483,1,1,2,3],[486,1,1,3,4],[502,1,1,4,5],[504,1,1,5,6],[507,1,1,6,7],[508,1,1,7,8],[514,1,1,8,9],[528,1,1,9,10],[563,1,1,10,11]]],[19,1,1,11,12,[[641,1,1,11,12]]]],[5113,13966,13987,14034,14267,14292,14329,14340,14471,14692,15300,16803]]],["on",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16793]]],["pity",[2,2,[[19,2,2,0,2,[[646,1,1,0,1],[655,1,1,1,2]]]],[16942,17204]]],["pray",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11319]]],["shewed",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18140]]],["supplication",[10,10,[[10,3,3,0,3,[[298,3,3,0,3]]],[13,1,1,3,4,[[372,1,1,3,4]]],[16,1,1,4,5,[[429,1,1,4,5]]],[17,2,2,5,7,[[443,1,1,5,6],[444,1,1,6,7]]],[18,2,2,7,9,[[507,1,1,7,8],[619,1,1,8,9]]],[27,1,1,9,10,[[873,1,1,9,10]]]],[9018,9032,9044,11306,12770,13034,13066,14327,16287,22256]]],["upon",[4,2,[[17,2,1,0,1,[[454,2,1,0,1]]],[18,2,1,1,2,[[600,2,1,1,2]]]],[13318,16101]]]]},{"k":"H2604","v":[["*",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[855,1,1,1,2]]]],[21864,21916]]],["mercy",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]],["supplication",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21916]]]]},{"k":"H2605","v":[["Hanan",[12,12,[[12,4,4,0,4,[[345,2,2,0,2],[346,1,1,2,3],[348,1,1,3,4]]],[14,1,1,4,5,[[404,1,1,4,5]]],[15,6,6,5,11,[[419,1,1,5,6],[420,1,1,6,7],[422,3,3,7,10],[425,1,1,10,11]]],[23,1,1,11,12,[[779,1,1,11,12]]]],[10598,10613,10659,10716,12073,12469,12500,12559,12571,12575,12684,19827]]]]},{"k":"H2606","v":[["Hananeel",[4,4,[[15,2,2,0,2,[[415,1,1,0,1],[424,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[12328,12663,19729,23078]]]]},{"k":"H2607","v":[["Hanani",[11,11,[[10,2,2,0,2,[[306,2,2,0,2]]],[12,2,2,2,4,[[362,2,2,2,4]]],[13,3,3,4,7,[[382,1,1,4,5],[385,1,1,5,6],[386,1,1,6,7]]],[14,1,1,7,8,[[412,1,1,7,8]]],[15,3,3,8,11,[[413,1,1,8,9],[419,1,1,9,10],[424,1,1,10,11]]]],[9284,9290,11050,11071,11516,11578,11621,12272,12298,12422,12660]]]]},{"k":"H2608","v":[["Hananiah",[29,28,[[12,5,5,0,5,[[340,2,2,0,2],[345,1,1,2,3],[362,2,2,3,5]]],[13,1,1,5,6,[[392,1,1,5,6]]],[14,1,1,6,7,[[412,1,1,6,7]]],[15,6,6,7,13,[[415,2,2,7,9],[419,1,1,9,10],[422,1,1,10,11],[424,2,2,11,13]]],[23,11,10,13,23,[[772,9,8,13,21],[780,1,1,21,22],[781,1,1,22,23]]],[26,5,5,23,28,[[850,4,4,23,27],[851,1,1,27,28]]]],[10380,10382,10599,11050,11069,11743,12280,12335,12357,12422,12572,12636,12665,19619,19623,19628,19629,19630,19631,19633,19635,19854,19887,21743,21744,21748,21756,21775]]]]},{"k":"H2609","v":[["Hanes",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18221]]]]},{"k":"H2610","v":[["*",[11,9,[[3,2,1,0,1,[[151,2,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]],[22,1,1,2,3,[[702,1,1,2,3]]],[23,5,4,3,7,[[747,4,3,3,6],[767,1,1,6,7]]],[26,1,1,7,8,[[860,1,1,7,8]]],[32,1,1,8,9,[[896,1,1,8,9]]]],[4878,15689,18100,19003,19004,19011,19495,22068,22631]]],["+",[5,3,[[3,2,1,0,1,[[151,2,1,0,1]]],[23,3,2,1,3,[[747,3,2,1,3]]]],[4878,19003,19011]]],["corrupt",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22068]]],["defiled",[2,2,[[22,1,1,0,1,[[702,1,1,0,1]]],[32,1,1,1,2,[[896,1,1,1,2]]]],[18100,22631]]],["polluted",[2,2,[[18,1,1,0,1,[[583,1,1,0,1]]],[23,1,1,1,2,[[747,1,1,1,2]]]],[15689,19004]]],["profane",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19495]]]]},{"k":"H2611","v":[["*",[13,13,[[17,8,8,0,8,[[443,1,1,0,1],[448,1,1,1,2],[450,1,1,2,3],[452,1,1,3,4],[455,1,1,4,5],[462,1,1,5,6],[469,1,1,6,7],[471,1,1,7,8]]],[18,1,1,8,9,[[512,1,1,8,9]]],[19,1,1,9,10,[[638,1,1,9,10]]],[22,3,3,10,13,[[687,1,1,10,11],[688,1,1,11,12],[711,1,1,12,13]]]],[13042,13169,13237,13268,13331,13489,13713,13749,14426,16697,17846,17856,18293]]],["+",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13713]]],["hypocrite",[6,6,[[17,4,4,0,4,[[448,1,1,0,1],[452,1,1,1,2],[455,1,1,2,3],[462,1,1,3,4]]],[19,1,1,4,5,[[638,1,1,4,5]]],[22,1,1,5,6,[[687,1,1,5,6]]]],[13169,13268,13331,13489,16697,17846]]],["hypocrite's",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13042]]],["hypocrites",[3,3,[[17,2,2,0,2,[[450,1,1,0,1],[471,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]]],[13237,13749,18293]]],["hypocritical",[2,2,[[18,1,1,0,1,[[512,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[14426,17856]]]]},{"k":"H2612","v":[["hypocrisy",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18265]]]]},{"k":"H2613","v":[["profaneness",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19499]]]]},{"k":"H2614","v":[["*",[2,2,[[9,1,1,0,1,[[283,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[8472,22711]]],["himself",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8472]]],["strangled",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22711]]]]},{"k":"H2615","v":[["Hannathon",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6335]]]]},{"k":"H2616","v":[["*",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]],[19,1,1,2,3,[[652,1,1,2,3]]]],[8628,14143,17123]]],["merciful",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8628,14143]]],["shame",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17123]]]]},{"k":"H2617","v":[["*",[247,241,[[0,11,11,0,11,[[18,1,1,0,1],[19,1,1,1,2],[20,1,1,2,3],[23,4,4,3,7],[31,1,1,7,8],[38,1,1,8,9],[39,1,1,9,10],[46,1,1,10,11]]],[1,4,4,11,15,[[64,1,1,11,12],[69,1,1,12,13],[83,2,2,13,15]]],[2,1,1,15,16,[[109,1,1,15,16]]],[3,2,2,16,18,[[130,2,2,16,18]]],[4,3,3,18,21,[[157,1,1,18,19],[159,2,2,19,21]]],[5,3,2,21,23,[[188,3,2,21,23]]],[6,2,2,23,25,[[211,1,1,23,24],[218,1,1,24,25]]],[7,3,3,25,28,[[232,1,1,25,26],[233,1,1,26,27],[234,1,1,27,28]]],[8,4,4,28,32,[[250,1,1,28,29],[255,3,3,29,32]]],[9,12,11,32,43,[[268,2,2,32,34],[269,1,1,34,35],[273,1,1,35,36],[275,3,3,36,39],[276,2,1,39,40],[281,1,1,40,41],[282,1,1,41,42],[288,1,1,42,43]]],[10,5,4,43,47,[[292,1,1,43,44],[293,2,1,44,45],[298,1,1,45,46],[310,1,1,46,47]]],[12,5,4,47,51,[[353,2,2,47,49],[354,1,1,49,50],[356,2,1,50,51]]],[13,10,10,51,61,[[367,1,1,51,52],[371,1,1,52,53],[372,2,2,53,55],[373,2,2,55,57],[386,1,1,57,58],[390,1,1,58,59],[398,1,1,59,60],[401,1,1,60,61]]],[14,3,3,61,64,[[405,1,1,61,62],[409,1,1,62,63],[411,1,1,63,64]]],[15,5,5,64,69,[[413,1,1,64,65],[421,2,2,65,67],[425,2,2,67,69]]],[16,2,2,69,71,[[427,2,2,69,71]]],[17,3,3,71,74,[[441,1,1,71,72],[445,1,1,72,73],[472,1,1,73,74]]],[18,127,127,74,201,[[482,1,1,74,75],[483,1,1,75,76],[490,1,1,76,77],[494,1,1,77,78],[495,1,1,78,79],[498,1,1,79,80],[500,1,1,80,81],[502,3,3,81,84],[503,1,1,84,85],[508,3,3,85,88],[509,1,1,88,89],[510,3,3,89,92],[513,3,3,92,95],[517,2,2,95,97],[519,1,1,97,98],[521,1,1,98,99],[525,1,1,99,100],[528,1,1,100,101],[529,2,2,101,103],[534,2,2,103,105],[536,3,3,105,108],[538,1,1,108,109],[539,1,1,109,110],[540,1,1,110,111],[543,1,1,111,112],[546,2,2,112,114],[554,1,1,114,115],[562,2,2,115,117],[563,3,3,117,120],[565,1,1,120,121],[566,7,7,121,128],[567,1,1,128,129],[569,1,1,129,130],[571,1,1,130,131],[575,1,1,131,132],[577,1,1,132,133],[578,1,1,133,134],[580,4,4,134,138],[583,3,3,138,141],[584,6,6,141,147],[585,1,1,147,148],[586,4,4,148,152],[592,1,1,152,153],[594,1,1,153,154],[595,5,5,154,159],[596,7,7,159,166],[607,1,1,166,167],[613,26,26,167,193],[615,2,2,193,195],[618,1,1,195,196],[620,2,2,196,198],[621,1,1,198,199],[622,1,1,199,200],[624,1,1,200,201]]],[19,11,10,201,211,[[630,1,1,201,202],[638,1,1,202,203],[641,2,2,203,205],[643,1,1,205,206],[646,1,1,206,207],[647,3,2,207,209],[648,1,1,209,210],[658,1,1,210,211]]],[22,8,7,211,218,[[694,1,1,211,212],[718,1,1,212,213],[732,2,2,213,215],[733,1,1,215,216],[735,1,1,216,217],[741,2,1,217,218]]],[23,6,6,218,224,[[746,1,1,218,219],[753,1,1,219,220],[760,1,1,220,221],[775,1,1,221,222],[776,1,1,222,223],[777,1,1,223,224]]],[24,2,2,224,226,[[799,2,2,224,226]]],[26,2,2,226,228,[[850,1,1,226,227],[858,1,1,227,228]]],[27,6,6,228,234,[[863,1,1,228,229],[865,1,1,229,230],[867,2,2,230,232],[871,1,1,232,233],[873,1,1,233,234]]],[28,1,1,234,235,[[877,1,1,234,235]]],[31,2,2,235,237,[[890,1,1,235,236],[892,1,1,236,237]]],[32,3,3,237,240,[[898,1,1,237,238],[899,2,2,238,240]]],[37,1,1,240,241,[[917,1,1,240,241]]]],[476,508,536,603,605,618,640,938,1170,1186,1449,1933,2057,2502,2503,3335,4126,4127,5063,5120,5123,5881,5883,6533,6754,7135,7169,7182,7566,7738,7744,7745,8054,8055,8089,8195,8228,8230,8234,8242,8409,8443,8653,8777,8822,9008,9439,10854,10861,10876,10909,11202,11281,11296,11324,11327,11330,11608,11699,11907,11992,12108,12201,12246,12301,12528,12543,12685,12693,12733,12741,12992,13098,13782,13980,13989,14079,14110,14168,14198,14241,14257,14258,14261,14276,14338,14347,14352,14365,14371,14384,14388,14443,14445,14448,14535,14536,14563,14597,14643,14692,14711,14718,14771,14778,14800,14806,14807,14826,14839,14842,14893,14948,14951,15101,15278,15281,15289,15297,15299,15319,15327,15328,15340,15350,15354,15359,15375,15392,15413,15449,15493,15513,15514,15553,15557,15560,15566,15652,15658,15696,15700,15707,15714,15720,15730,15742,15746,15767,15771,15776,15781,15831,15869,15870,15871,15872,15873,15898,15939,15962,15974,15986,16022,16047,16057,16147,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,16215,16216,16217,16218,16219,16220,16221,16222,16233,16239,16281,16301,16305,16307,16328,16362,16458,16705,16794,16806,16846,16947,16960,16982,17005,17310,17974,18426,18731,18733,18743,18766,18873,18967,19199,19341,19694,19749,19786,20376,20386,21746,21992,22124,22134,22171,22173,22237,22258,22324,22556,22570,22656,22682,22684,22971]]],["+",[6,6,[[5,1,1,0,1,[[188,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]],[18,4,4,2,6,[[483,1,1,2,3],[494,1,1,3,4],[508,1,1,4,5],[521,1,1,5,6]]]],[5881,10876,13989,14110,14352,14597]]],["Mercy",[3,3,[[18,2,2,0,2,[[562,1,1,0,1],[566,1,1,1,2]]],[19,1,1,2,3,[[647,1,1,2,3]]]],[15281,15328,16982]]],["deeds",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12685]]],["favour",[3,3,[[16,1,1,0,1,[[427,1,1,0,1]]],[17,1,1,1,2,[[445,1,1,1,2]]],[26,1,1,2,3,[[850,1,1,2,3]]]],[12741,13098,21746]]],["goodliness",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18426]]],["goodness",[12,12,[[1,1,1,0,1,[[83,1,1,0,1]]],[13,2,2,1,3,[[398,1,1,1,2],[401,1,1,2,3]]],[18,7,7,3,10,[[510,1,1,3,4],[529,1,1,4,5],[584,4,4,5,9],[621,1,1,9,10]]],[19,1,1,10,11,[[647,1,1,10,11]]],[27,1,1,11,12,[[867,1,1,11,12]]]],[2502,11907,11992,14371,14711,15707,15714,15720,15730,16307,16960,22171]]],["kindly",[5,5,[[0,2,2,0,2,[[23,1,1,0,1],[46,1,1,1,2]]],[5,1,1,2,3,[[188,1,1,2,3]]],[7,1,1,3,4,[[232,1,1,3,4]]],[8,1,1,4,5,[[255,1,1,4,5]]]],[640,1449,5883,7135,7738]]],["kindness",[38,36,[[0,5,5,0,5,[[19,1,1,0,1],[20,1,1,1,2],[23,2,2,2,4],[39,1,1,4,5]]],[5,1,1,5,6,[[188,1,1,5,6]]],[6,1,1,6,7,[[218,1,1,6,7]]],[7,2,2,7,9,[[233,1,1,7,8],[234,1,1,8,9]]],[8,3,3,9,12,[[250,1,1,9,10],[255,2,2,10,12]]],[9,9,8,12,20,[[268,2,2,12,14],[269,1,1,14,15],[275,3,3,15,18],[276,2,1,18,19],[282,1,1,19,20]]],[10,2,2,20,22,[[292,1,1,20,21],[293,1,1,21,22]]],[12,2,1,22,23,[[356,2,1,22,23]]],[13,1,1,23,24,[[390,1,1,23,24]]],[15,1,1,24,25,[[421,1,1,24,25]]],[16,1,1,25,26,[[427,1,1,25,26]]],[18,3,3,26,29,[[594,1,1,26,27],[596,1,1,27,28],[618,1,1,28,29]]],[19,2,2,29,31,[[646,1,1,29,30],[658,1,1,30,31]]],[22,2,2,31,33,[[732,2,2,31,33]]],[23,1,1,33,34,[[746,1,1,33,34]]],[28,1,1,34,35,[[877,1,1,34,35]]],[31,1,1,35,36,[[892,1,1,35,36]]]],[508,536,603,605,1186,5881,6754,7169,7182,7566,7744,7745,8054,8055,8089,8228,8230,8234,8242,8443,8777,8822,10909,11699,12528,12733,15869,15974,16281,16947,17310,18731,18733,18967,22324,22570]]],["lovingkindness",[25,25,[[18,20,20,0,20,[[503,1,1,0,1],[513,2,2,1,3],[517,2,2,3,5],[519,1,1,5,6],[525,1,1,6,7],[528,1,1,7,8],[540,1,1,8,9],[546,1,1,9,10],[565,1,1,10,11],[566,1,1,11,12],[569,1,1,12,13],[580,1,1,13,14],[584,1,1,14,15],[596,3,3,15,18],[615,1,1,18,19],[620,1,1,19,20]]],[23,4,4,20,24,[[753,1,1,20,21],[760,1,1,21,22],[775,1,1,22,23],[776,1,1,23,24]]],[27,1,1,24,25,[[863,1,1,24,25]]]],[14276,14445,14448,14535,14536,14563,14643,14692,14842,14951,15319,15359,15413,15553,15742,15986,16047,16057,16233,16301,19199,19341,19694,19749,22124]]],["lovingkindnesses",[4,3,[[18,2,2,0,2,[[502,1,1,0,1],[566,1,1,1,2]]],[22,2,1,2,3,[[741,2,1,2,3]]]],[14257,15375,18873]]],["mercies",[9,9,[[0,1,1,0,1,[[31,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[18,4,4,2,6,[[566,1,1,2,3],[583,2,2,3,5],[596,1,1,5,6]]],[22,1,1,6,7,[[733,1,1,6,7]]],[24,2,2,7,9,[[799,2,2,7,9]]]],[938,11324,15327,15658,15696,15939,18743,20376,20386]]],["mercies'",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14347]]],["merciful",[3,3,[[10,1,1,0,1,[[310,1,1,0,1]]],[19,1,1,1,2,[[638,1,1,1,2]]],[22,1,1,2,3,[[735,1,1,2,3]]]],[9439,16705,18766]]],["mercy",[133,133,[[0,3,3,0,3,[[18,1,1,0,1],[23,1,1,1,2],[38,1,1,2,3]]],[1,3,3,3,6,[[64,1,1,3,4],[69,1,1,4,5],[83,1,1,5,6]]],[3,2,2,6,8,[[130,2,2,6,8]]],[4,3,3,8,11,[[157,1,1,8,9],[159,2,2,9,11]]],[6,1,1,11,12,[[211,1,1,11,12]]],[9,3,3,12,15,[[273,1,1,12,13],[281,1,1,13,14],[288,1,1,14,15]]],[10,2,2,15,17,[[293,1,1,15,16],[298,1,1,16,17]]],[12,2,2,17,19,[[353,2,2,17,19]]],[13,6,6,19,25,[[367,1,1,19,20],[371,1,1,20,21],[372,1,1,21,22],[373,2,2,22,24],[386,1,1,24,25]]],[14,3,3,25,28,[[405,1,1,25,26],[409,1,1,26,27],[411,1,1,27,28]]],[15,3,3,28,31,[[413,1,1,28,29],[421,1,1,29,30],[425,1,1,30,31]]],[17,1,1,31,32,[[472,1,1,31,32]]],[18,84,84,32,116,[[482,1,1,32,33],[490,1,1,33,34],[495,1,1,34,35],[498,1,1,35,36],[500,1,1,36,37],[502,2,2,37,39],[508,1,1,39,40],[509,1,1,40,41],[510,2,2,41,43],[513,1,1,43,44],[529,1,1,44,45],[534,2,2,45,47],[536,3,3,47,50],[538,1,1,50,51],[539,1,1,51,52],[543,1,1,52,53],[546,1,1,53,54],[554,1,1,54,55],[562,1,1,55,56],[563,3,3,56,59],[566,3,3,59,62],[567,1,1,62,63],[571,1,1,63,64],[575,1,1,64,65],[577,1,1,65,66],[578,1,1,66,67],[580,3,3,67,70],[583,1,1,70,71],[584,1,1,71,72],[585,1,1,72,73],[586,4,4,73,77],[592,1,1,77,78],[595,5,5,78,83],[596,2,2,83,85],[607,1,1,85,86],[613,26,26,86,112],[615,1,1,112,113],[620,1,1,113,114],[622,1,1,114,115],[624,1,1,115,116]]],[19,5,5,116,121,[[630,1,1,116,117],[641,1,1,117,118],[643,1,1,118,119],[647,1,1,119,120],[648,1,1,120,121]]],[22,1,1,121,122,[[694,1,1,121,122]]],[23,1,1,122,123,[[777,1,1,122,123]]],[26,1,1,123,124,[[858,1,1,123,124]]],[27,4,4,124,128,[[865,1,1,124,125],[867,1,1,125,126],[871,1,1,126,127],[873,1,1,127,128]]],[31,1,1,128,129,[[890,1,1,128,129]]],[32,3,3,129,132,[[898,1,1,129,130],[899,2,2,130,132]]],[37,1,1,132,133,[[917,1,1,132,133]]]],[476,618,1170,1933,2057,2503,4126,4127,5063,5120,5123,6533,8195,8409,8653,8822,9008,10854,10861,11202,11281,11296,11327,11330,11608,12108,12201,12246,12301,12543,12693,13782,13980,14079,14168,14198,14241,14258,14261,14338,14365,14384,14388,14443,14718,14771,14778,14800,14806,14807,14826,14839,14893,14948,15101,15278,15289,15297,15299,15340,15350,15354,15392,15449,15493,15513,15514,15557,15560,15566,15652,15700,15746,15767,15771,15776,15781,15831,15870,15871,15872,15873,15898,15962,16022,16147,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,16215,16216,16217,16218,16219,16220,16221,16222,16239,16305,16328,16362,16458,16794,16846,16982,17005,17974,19786,21992,22134,22173,22237,22258,22556,22656,22682,22684,22971]]],["pity",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12992]]],["reproach",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16806]]],["thing",[1,1,[[2,1,1,0,1,[[109,1,1,0,1]]]],[3335]]]]},{"k":"H2618","v":[]},{"k":"H2619","v":[["Hasadiah",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10381]]]]},{"k":"H2620","v":[["*",[37,36,[[4,1,1,0,1,[[184,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[7,1,1,2,3,[[233,1,1,2,3]]],[9,2,2,3,5,[[288,2,2,3,5]]],[18,25,24,5,29,[[479,1,1,5,6],[482,1,1,6,7],[484,1,1,7,8],[488,1,1,8,9],[493,1,1,9,10],[494,1,1,10,11],[495,2,2,11,13],[502,1,1,13,14],[508,2,2,14,16],[511,2,2,16,18],[513,1,1,18,19],[514,1,1,19,20],[534,2,1,20,21],[538,1,1,21,22],[541,1,1,22,23],[548,1,1,23,24],[568,1,1,24,25],[595,2,2,25,27],[618,1,1,27,28],[621,1,1,28,29]]],[19,2,2,29,31,[[641,1,1,29,30],[657,1,1,30,31]]],[22,3,3,31,34,[[692,1,1,31,32],[708,1,1,32,33],[735,1,1,33,34]]],[33,1,1,34,35,[[900,1,1,34,35]]],[35,1,1,35,36,[[908,1,1,35,36]]]],[5795,6769,7161,8605,8633,13957,13984,13996,14060,14093,14110,14120,14148,14271,14332,14350,14396,14410,14445,14490,14769,14823,14860,14977,15399,15877,15878,16284,16307,16804,17256,17960,18219,18778,22691,22832]]],["hope",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16804]]],["refuge",[1,1,[[18,1,1,0,1,[[534,1,1,0,1]]]],[14769]]],["trust",[32,32,[[6,1,1,0,1,[[219,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[9,2,2,2,4,[[288,2,2,2,4]]],[18,22,22,4,26,[[479,1,1,4,5],[482,1,1,5,6],[484,1,1,6,7],[488,1,1,7,8],[493,1,1,8,9],[494,1,1,9,10],[495,2,2,10,12],[502,1,1,12,13],[508,2,2,13,15],[511,1,1,15,16],[513,1,1,16,17],[514,1,1,17,18],[538,1,1,18,19],[541,1,1,19,20],[548,1,1,20,21],[568,1,1,21,22],[595,2,2,22,24],[618,1,1,24,25],[621,1,1,25,26]]],[19,1,1,26,27,[[657,1,1,26,27]]],[22,3,3,27,30,[[692,1,1,27,28],[708,1,1,28,29],[735,1,1,29,30]]],[33,1,1,30,31,[[900,1,1,30,31]]],[35,1,1,31,32,[[908,1,1,31,32]]]],[6769,7161,8605,8633,13957,13984,13996,14060,14093,14110,14120,14148,14271,14332,14350,14410,14445,14490,14823,14860,14977,15399,15877,15878,16284,16307,17256,17960,18219,18778,22691,22832]]],["trusted",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5795]]],["trusteth",[2,2,[[18,2,2,0,2,[[511,1,1,0,1],[534,1,1,1,2]]]],[14396,14769]]]]},{"k":"H2621","v":[["Hosah",[5,5,[[5,1,1,0,1,[[205,1,1,0,1]]],[12,4,4,1,5,[[353,1,1,1,2],[363,3,3,2,5]]]],[6350,10858,11087,11088,11093]]]]},{"k":"H2622","v":[["trust",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18220]]]]},{"k":"H2623","v":[["*",[32,32,[[4,1,1,0,1,[[185,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[13,1,1,3,4,[[372,1,1,3,4]]],[18,25,25,4,29,[[481,1,1,4,5],[489,1,1,5,6],[493,1,1,6,7],[495,1,1,7,8],[507,1,1,8,9],[508,1,1,9,10],[509,1,1,10,11],[514,1,1,11,12],[520,1,1,12,13],[527,1,1,13,14],[529,1,1,14,15],[556,1,1,15,16],[562,1,1,16,17],[563,1,1,17,18],[566,1,1,18,19],[574,1,1,19,20],[593,1,1,20,21],[609,2,2,21,23],[622,2,2,23,25],[625,1,1,25,26],[626,3,3,26,29]]],[19,1,1,29,30,[[629,1,1,29,30]]],[23,1,1,30,31,[[747,1,1,30,31]]],[32,1,1,31,32,[[899,1,1,31,32]]]],[5818,7249,8628,11323,13968,14067,14102,14143,14323,14354,14361,14478,14567,14673,14719,15187,15279,15286,15345,15488,15863,16160,16167,16330,16337,16385,16386,16390,16394,16441,19014,22666]]],["+",[2,2,[[18,2,2,0,2,[[520,1,1,0,1],[527,1,1,1,2]]]],[14567,14673]]],["One",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14102]]],["godly",[2,2,[[18,2,2,0,2,[[481,1,1,0,1],[509,1,1,1,2]]]],[13968,14361]]],["good",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22666]]],["holy",[3,3,[[4,1,1,0,1,[[185,1,1,0,1]]],[18,2,2,1,3,[[563,1,1,1,2],[622,1,1,2,3]]]],[5818,15286,16337]]],["man",[1,1,[[18,1,1,0,1,[[489,1,1,0,1]]]],[14067]]],["merciful",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]],[23,1,1,2,3,[[747,1,1,2,3]]]],[8628,14143,19014]]],["one",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15345]]],["saints",[18,18,[[8,1,1,0,1,[[237,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[18,15,15,2,17,[[507,1,1,2,3],[508,1,1,3,4],[514,1,1,4,5],[529,1,1,5,6],[556,1,1,6,7],[562,1,1,7,8],[574,1,1,8,9],[593,1,1,9,10],[609,2,2,10,12],[622,1,1,12,13],[625,1,1,13,14],[626,3,3,14,17]]],[19,1,1,17,18,[[629,1,1,17,18]]]],[7249,11323,14323,14354,14478,14719,15187,15279,15488,15863,16160,16167,16330,16385,16386,16390,16394,16441]]]]},{"k":"H2624","v":[["*",[6,6,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[17,1,1,2,3,[[474,1,1,2,3]]],[18,1,1,3,4,[[581,1,1,3,4]]],[23,1,1,4,5,[[752,1,1,4,5]]],[37,1,1,5,6,[[915,1,1,5,6]]]],[3016,5308,13847,15588,19160,22945]]],["feathers",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13847]]],["stork",[5,5,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[23,1,1,3,4,[[752,1,1,3,4]]],[37,1,1,4,5,[[915,1,1,4,5]]]],[3016,5308,15588,19160,22945]]]]},{"k":"H2625","v":[["*",[6,6,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[18,1,1,2,3,[[555,1,1,2,3]]],[22,1,1,3,4,[[711,1,1,3,4]]],[28,2,2,4,6,[[876,1,1,4,5],[877,1,1,5,6]]]],[9022,11310,15159,18283,22295,22336]]],["caterpiller",[5,5,[[10,1,1,0,1,[[298,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]],[28,2,2,3,5,[[876,1,1,3,4],[877,1,1,4,5]]]],[9022,15159,18283,22295,22336]]],["caterpillers",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11310]]]]},{"k":"H2626","v":[["strong",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15334]]]]},{"k":"H2627","v":[["wanting",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21901]]]]},{"k":"H2628","v":[["consume",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5649]]]]},{"k":"H2629","v":[["*",[2,2,[[4,1,1,0,1,[[177,1,1,0,1]]],[25,1,1,1,2,[[840,1,1,1,2]]]],[5551,21459]]],["+",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21459]]],["muzzle",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5551]]]]},{"k":"H2630","v":[["up",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18095]]]]},{"k":"H2631","v":[["*",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21951,21955]]],["possess",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21951]]],["possessed",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21955]]]]},{"k":"H2632","v":[["power",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21795,21867]]]]},{"k":"H2633","v":[["*",[5,5,[[19,2,2,0,2,[[642,1,1,0,1],[654,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]],[23,1,1,3,4,[[764,1,1,3,4]]],[25,1,1,4,5,[[823,1,1,4,5]]]],[16813,17193,18285,19427,21001]]],["riches",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17193]]],["strength",[2,2,[[22,1,1,0,1,[[711,1,1,0,1]]],[23,1,1,1,2,[[764,1,1,1,2]]]],[18285,19427]]],["treasure",[2,2,[[19,1,1,0,1,[[642,1,1,0,1]]],[25,1,1,1,2,[[823,1,1,1,2]]]],[16813,21001]]]]},{"k":"H2634","v":[["strong",[2,2,[[22,1,1,0,1,[[679,1,1,0,1]]],[29,1,1,1,2,[[880,1,1,1,2]]]],[17685,22388]]]]},{"k":"H2635","v":[["clay",[9,7,[[26,9,7,0,7,[[851,9,7,0,7]]]],[21791,21792,21793,21799,21800,21801,21803]]]]},{"k":"H2636","v":[["thing",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1961]]]]},{"k":"H2637","v":[["*",[22,22,[[0,3,3,0,3,[[7,2,2,0,2],[17,1,1,2,3]]],[1,1,1,3,4,[[65,1,1,3,4]]],[4,3,3,4,7,[[154,1,1,4,5],[160,1,1,5,6],[167,1,1,6,7]]],[10,2,2,7,9,[[307,2,2,7,9]]],[15,1,1,9,10,[[421,1,1,9,10]]],[18,3,3,10,13,[[485,1,1,10,11],[500,1,1,11,12],[511,1,1,12,13]]],[19,2,2,13,15,[[640,1,1,13,14],[658,1,1,14,15]]],[20,2,2,15,17,[[662,1,1,15,16],[667,1,1,16,17]]],[21,1,1,17,18,[[677,1,1,17,18]]],[22,2,2,18,20,[[710,1,1,18,19],[729,1,1,19,20]]],[23,1,1,20,21,[[788,1,1,20,21]]],[25,1,1,21,22,[[805,1,1,21,22]]]],[186,188,452,1965,4945,5146,5327,9331,9333,12532,14017,14236,14398,16772,17295,17389,17483,17629,18265,18687,20028,20546]]],["+",[2,2,[[18,1,1,0,1,[[485,1,1,0,1]]],[20,1,1,1,2,[[662,1,1,1,2]]]],[14017,17389]]],["abated",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[186]]],["decreased",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[188]]],["fail",[4,4,[[10,2,2,0,2,[[307,2,2,0,2]]],[22,2,2,2,4,[[710,1,1,2,3],[729,1,1,3,4]]]],[9331,9333,18265,18687]]],["lack",[4,4,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[65,1,1,1,2]]],[4,1,1,2,3,[[160,1,1,2,3]]],[20,1,1,3,4,[[667,1,1,3,4]]]],[452,1965,5146,17483]]],["lacked",[2,2,[[4,1,1,0,1,[[154,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]]],[4945,12532]]],["need",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17295]]],["want",[4,4,[[18,2,2,0,2,[[500,1,1,0,1],[511,1,1,1,2]]],[19,1,1,2,3,[[640,1,1,2,3]]],[25,1,1,3,4,[[805,1,1,3,4]]]],[14236,14398,16772,20546]]],["wanted",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20028]]],["wanteth",[2,2,[[4,1,1,0,1,[[167,1,1,0,1]]],[21,1,1,1,2,[[677,1,1,1,2]]]],[5327,17629]]]]},{"k":"H2638","v":[["*",[18,18,[[8,1,1,0,1,[[256,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]],[10,1,1,2,3,[[301,1,1,2,3]]],[19,13,13,3,16,[[633,1,1,3,4],[634,1,1,4,5],[636,2,2,5,7],[637,2,2,7,9],[638,1,1,9,10],[639,2,2,10,12],[642,1,1,12,13],[644,1,1,13,14],[651,1,1,14,15],[655,1,1,15,16]]],[20,2,2,16,18,[[664,1,1,16,17],[668,1,1,17,18]]]],[7787,8110,9130,16572,16582,16642,16654,16669,16677,16700,16728,16730,16828,16891,17109,17212,17419,17496]]],["destitute",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16828]]],["faileth",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17496]]],["lacked",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9130]]],["lacketh",[3,3,[[9,1,1,0,1,[[269,1,1,0,1]]],[19,2,2,1,3,[[633,1,1,1,2],[639,1,1,2,3]]]],[8110,16572,16728]]],["need",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7787]]],["void",[6,6,[[19,6,6,0,6,[[634,1,1,0,1],[637,1,1,1,2],[638,1,1,2,3],[639,1,1,3,4],[644,1,1,4,5],[651,1,1,5,6]]]],[16582,16669,16700,16730,16891,17109]]],["want",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16677]]],["wanteth",[4,4,[[19,3,3,0,3,[[636,2,2,0,2],[655,1,1,2,3]]],[20,1,1,3,4,[[664,1,1,3,4]]]],[16642,16654,17212,17419]]]]},{"k":"H2639","v":[["*",[2,2,[[17,1,1,0,1,[[465,1,1,0,1]]],[19,1,1,1,2,[[655,1,1,1,2]]]],[13560,17218]]],["poverty",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17218]]],["want",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13560]]]]},{"k":"H2640","v":[["want",[3,3,[[4,2,2,0,2,[[180,2,2,0,2]]],[29,1,1,2,3,[[882,1,1,2,3]]]],[5659,5668,22416]]]]},{"k":"H2641","v":[["Hasrah",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11955]]]]},{"k":"H2642","v":[["wanting",[1,1,[[20,1,1,0,1,[[659,1,1,0,1]]]],[17330]]]]},{"k":"H2643","v":[["innocent",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13659]]]]},{"k":"H2644","v":[["secretly",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[9992]]]]},{"k":"H2645","v":[["*",[12,10,[[9,2,1,0,1,[[281,2,1,0,1]]],[13,5,4,1,5,[[369,5,4,1,5]]],[16,2,2,5,7,[[431,1,1,5,6],[432,1,1,6,7]]],[18,1,1,7,8,[[545,1,1,7,8]]],[23,2,2,8,10,[[758,2,2,8,10]]]],[8419,11234,11236,11237,11238,12805,12815,14913,19296,19297]]],["cieled",[1,1,[[13,1,1,0,1,[[369,1,1,0,1]]]],[11234]]],["covered",[7,6,[[9,2,1,0,1,[[281,2,1,0,1]]],[16,2,2,1,3,[[431,1,1,1,2],[432,1,1,2,3]]],[18,1,1,3,4,[[545,1,1,3,4]]],[23,2,2,4,6,[[758,2,2,4,6]]]],[8419,12805,12815,14913,19296,19297]]],["overlaid",[4,4,[[13,4,4,0,4,[[369,4,4,0,4]]]],[11234,11236,11237,11238]]]]},{"k":"H2646","v":[["*",[3,3,[[18,1,1,0,1,[[496,1,1,0,1]]],[22,1,1,1,2,[[682,1,1,1,2]]],[28,1,1,2,3,[[877,1,1,2,3]]]],[14173,17738,22327]]],["+",[2,2,[[18,1,1,0,1,[[496,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[14173,22327]]],["defence",[1,1,[[22,1,1,0,1,[[682,1,1,0,1]]]],[17738]]]]},{"k":"H2647","v":[["Huppah",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11028]]]]},{"k":"H2648","v":[["*",[9,9,[[4,1,1,0,1,[[172,1,1,0,1]]],[8,1,1,1,2,[[258,1,1,1,2]]],[9,1,1,2,3,[[270,1,1,2,3]]],[11,1,1,3,4,[[319,1,1,3,4]]],[17,1,1,4,5,[[475,1,1,4,5]]],[18,4,4,5,9,[[508,1,1,5,6],[525,1,1,6,7],[581,1,1,7,8],[593,1,1,8,9]]]],[5430,7836,8124,9722,13887,14353,14639,15578,15859]]],["+",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7836]]],["away",[2,2,[[18,2,2,0,2,[[525,1,1,0,1],[581,1,1,1,2]]]],[14639,15578]]],["haste",[4,4,[[9,1,1,0,1,[[270,1,1,0,1]]],[11,1,1,1,2,[[319,1,1,1,2]]],[18,2,2,2,4,[[508,1,1,2,3],[593,1,1,3,4]]]],[8124,9722,14353,15859]]],["hasteth",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13887]]],["tremble",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5430]]]]},{"k":"H2649","v":[["haste",[3,3,[[1,1,1,0,1,[[61,1,1,0,1]]],[4,1,1,1,2,[[168,1,1,1,2]]],[22,1,1,2,3,[[730,1,1,2,3]]]],[1827,5345,18708]]]]},{"k":"H2650","v":[["Huppim",[3,3,[[0,1,1,0,1,[[45,1,1,0,1]]],[12,2,2,1,3,[[344,2,2,1,3]]]],[1407,10547,10550]]]]},{"k":"H2651","v":[["*",[6,6,[[1,1,1,0,1,[[58,1,1,0,1]]],[2,1,1,1,2,[[105,1,1,1,2]]],[19,1,1,2,3,[[657,1,1,2,3]]],[20,1,1,3,4,[[662,1,1,3,4]]],[25,2,2,4,6,[[811,2,2,4,6]]]],[1750,3213,17255,17387,20635,20640]]],["+",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1750]]],["fists",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17255]]],["hand",[1,1,[[25,1,1,0,1,[[811,1,1,0,1]]]],[20635]]],["hands",[3,3,[[2,1,1,0,1,[[105,1,1,0,1]]],[20,1,1,1,2,[[662,1,1,1,2]]],[25,1,1,2,3,[[811,1,1,2,3]]]],[3213,17387,20640]]]]},{"k":"H2652","v":[["Hophni",[5,5,[[8,5,5,0,5,[[236,1,1,0,1],[237,1,1,1,2],[239,3,3,2,5]]]],[7215,7274,7301,7308,7314]]]]},{"k":"H2653","v":[["+",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5822]]]]},{"k":"H2654","v":[["*",[76,72,[[0,1,1,0,1,[[33,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[4,3,3,2,5,[[173,1,1,2,3],[177,2,2,3,5]]],[6,1,1,5,6,[[223,1,1,5,6]]],[7,1,1,6,7,[[234,1,1,6,7]]],[8,3,3,7,10,[[237,1,1,7,8],[253,1,1,8,9],[254,1,1,9,10]]],[9,4,4,10,14,[[281,1,1,10,11],[286,1,1,11,12],[288,1,1,12,13],[290,1,1,13,14]]],[10,3,3,14,17,[[299,1,1,14,15],[300,1,1,15,16],[311,1,1,16,17]]],[13,1,1,17,18,[[375,1,1,17,18]]],[16,7,5,18,23,[[427,1,1,18,19],[431,6,4,19,23]]],[17,5,5,23,28,[[444,1,1,23,24],[448,1,1,24,25],[456,1,1,25,26],[468,1,1,26,27],[475,1,1,27,28]]],[18,17,17,28,45,[[495,1,1,28,29],[499,1,1,29,30],[514,1,1,30,31],[517,2,2,31,33],[518,1,1,33,34],[528,3,3,34,37],[545,1,1,37,38],[550,1,1,38,39],[586,1,1,39,40],[589,1,1,40,41],[592,1,1,41,42],[596,1,1,42,43],[612,1,1,43,44],[624,1,1,44,45]]],[19,2,2,45,47,[[645,1,1,45,46],[648,1,1,46,47]]],[20,1,1,47,48,[[666,1,1,47,48]]],[21,3,3,48,51,[[672,1,1,48,49],[673,1,1,49,50],[678,1,1,50,51]]],[22,12,11,51,62,[[679,1,1,51,52],[691,1,1,52,53],[720,1,1,53,54],[731,1,1,54,55],[733,1,1,55,56],[734,1,1,56,57],[736,2,1,57,58],[740,1,1,58,59],[743,1,1,59,60],[744,2,2,60,62]]],[23,3,3,62,65,[[750,1,1,62,63],[753,1,1,63,64],[786,1,1,64,65]]],[25,4,3,65,68,[[819,3,2,65,67],[834,1,1,67,68]]],[27,1,1,68,69,[[867,1,1,68,69]]],[31,1,1,69,70,[[889,1,1,69,70]]],[32,1,1,70,71,[[899,1,1,70,71]]],[38,1,1,71,72,[[926,1,1,71,72]]]],[999,4116,5461,5554,5555,6907,7185,7265,7698,7708,8415,8565,8622,8695,9052,9088,9457,11372,12738,12799,12800,12802,12804,13054,13156,13369,13682,13881,14137,14212,14473,14531,14533,14553,14697,14707,14710,14930,15045,15772,15804,15833,15933,16181,16361,16903,16985,17461,17561,17576,17644,17665,17923,18501,18721,18751,18757,18788,18858,18909,18925,18926,19099,19199,19997,20872,20881,21291,22173,22545,22682,23120]]],["+",[8,7,[[4,1,1,0,1,[[173,1,1,0,1]]],[21,3,3,1,4,[[672,1,1,1,2],[673,1,1,2,3],[678,1,1,3,4]]],[25,4,3,4,7,[[819,3,2,4,6],[834,1,1,6,7]]]],[5461,17561,17576,17644,20872,20881,21291]]],["delight",[16,15,[[0,1,1,0,1,[[33,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[9,2,2,3,5,[[281,1,1,3,4],[290,1,1,4,5]]],[16,1,1,5,6,[[431,1,1,5,6]]],[18,3,3,6,9,[[517,1,1,6,7],[545,1,1,7,8],[596,1,1,8,9]]],[19,1,1,9,10,[[645,1,1,9,10]]],[22,4,3,10,13,[[679,1,1,10,11],[691,1,1,11,12],[736,2,1,12,13]]],[23,2,2,13,15,[[750,1,1,13,14],[753,1,1,14,15]]]],[999,4116,7698,8415,8695,12799,14533,14930,15933,16903,17665,17923,18788,19099,19199]]],["delighted",[10,10,[[8,1,1,0,1,[[254,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[10,1,1,2,3,[[300,1,1,2,3]]],[13,1,1,3,4,[[375,1,1,3,4]]],[16,1,1,4,5,[[427,1,1,4,5]]],[18,3,3,5,8,[[495,1,1,5,6],[499,1,1,6,7],[586,1,1,7,8]]],[22,2,2,8,10,[[743,1,1,8,9],[744,1,1,9,10]]]],[7708,8622,9088,11372,12738,14137,14212,15772,18909,18926]]],["delighteth",[12,11,[[16,5,4,0,4,[[431,5,4,0,4]]],[18,3,3,4,7,[[514,1,1,4,5],[589,1,1,5,6],[624,1,1,6,7]]],[22,2,2,7,9,[[740,1,1,7,8],[744,1,1,8,9]]],[32,1,1,9,10,[[899,1,1,9,10]]],[38,1,1,10,11,[[926,1,1,10,11]]]],[12799,12800,12802,12804,14473,15804,16361,18858,18925,22682,23120]]],["desire",[6,6,[[17,3,3,0,3,[[448,1,1,0,1],[456,1,1,1,2],[468,1,1,2,3]]],[18,2,2,3,5,[[517,1,1,3,4],[550,1,1,4,5]]],[23,1,1,5,6,[[786,1,1,5,6]]]],[13156,13369,13682,14531,15045,19997]]],["desired",[1,1,[[27,1,1,0,1,[[867,1,1,0,1]]]],[22173]]],["desirest",[2,2,[[18,2,2,0,2,[[528,2,2,0,2]]]],[14697,14707]]],["favourest",[1,1,[[18,1,1,0,1,[[518,1,1,0,1]]]],[14553]]],["favoureth",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8565]]],["like",[2,2,[[4,2,2,0,2,[[177,2,2,0,2]]]],[5554,5555]]],["moveth",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13881]]],["please",[3,3,[[10,1,1,0,1,[[311,1,1,0,1]]],[22,2,2,1,3,[[733,1,1,1,2],[734,1,1,2,3]]]],[9457,18751,18757]]],["pleased",[8,8,[[6,1,1,0,1,[[223,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[18,3,3,2,5,[[528,1,1,2,3],[592,1,1,3,4],[612,1,1,4,5]]],[22,2,2,5,7,[[720,1,1,5,6],[731,1,1,6,7]]],[31,1,1,7,8,[[889,1,1,7,8]]]],[6907,9052,14710,15833,16181,18501,18721,22545]]],["pleaseth",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17461]]],["will",[3,3,[[7,1,1,0,1,[[234,1,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]],[19,1,1,2,3,[[648,1,1,2,3]]]],[7185,13054,16985]]],["would",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7265]]]]},{"k":"H2655","v":[["*",[10,9,[[10,1,1,0,1,[[303,1,1,0,1]]],[12,1,1,1,2,[[365,1,1,1,2]]],[15,1,1,2,3,[[413,1,1,2,3]]],[18,6,5,3,8,[[482,1,1,3,4],[511,1,1,4,5],[512,2,1,5,6],[517,1,1,6,7],[547,1,1,7,8]]],[38,1,1,8,9,[[927,1,1,8,9]]]],[9217,11152,12307,13977,14400,14437,14539,14973,23121]]],["delight",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23121]]],["desire",[2,2,[[15,1,1,0,1,[[413,1,1,0,1]]],[18,1,1,1,2,[[547,1,1,1,2]]]],[12307,14973]]],["desireth",[1,1,[[18,1,1,0,1,[[511,1,1,0,1]]]],[14400]]],["favour",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14437]]],["pleasure",[2,2,[[18,2,2,0,2,[[482,1,1,0,1],[512,1,1,1,2]]]],[13977,14437]]],["willing",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11152]]],["wish",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14539]]],["would",[1,1,[[10,1,1,0,1,[[303,1,1,0,1]]]],[9217]]]]},{"k":"H2656","v":[["*",[39,38,[[8,2,2,0,2,[[250,1,1,0,1],[253,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[10,5,5,3,8,[[295,3,3,3,6],[299,1,1,6,7],[300,1,1,7,8]]],[13,1,1,8,9,[[375,1,1,8,9]]],[17,3,3,9,12,[[456,1,1,9,10],[457,1,1,10,11],[466,1,1,11,12]]],[18,4,4,12,16,[[478,1,1,12,13],[493,1,1,13,14],[584,1,1,14,15],[588,1,1,15,16]]],[19,3,3,16,19,[[630,1,1,16,17],[635,1,1,17,18],[658,1,1,18,19]]],[20,7,7,19,26,[[661,2,2,19,21],[663,2,2,21,23],[666,1,1,23,24],[670,2,2,24,26]]],[22,8,7,26,33,[[722,1,1,26,27],[724,1,1,27,28],[726,1,1,28,29],[731,1,1,29,30],[732,1,1,30,31],[736,3,2,31,33]]],[23,2,2,33,35,[[766,1,1,33,34],[792,1,1,34,35]]],[27,1,1,35,36,[[869,1,1,35,36]]],[38,2,2,36,38,[[925,1,1,36,37],[927,1,1,37,38]]]],[7582,7701,8658,8886,8887,8888,9062,9092,11376,13376,13392,13604,13941,14095,15729,15795,16470,16613,17297,17360,17376,17401,17405,17464,17524,17533,18561,18596,18628,18721,18735,18789,18799,19482,20118,22202,23099,23132]]],["+",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13604]]],["acceptable",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17533]]],["delight",[3,3,[[8,1,1,0,1,[[250,1,1,0,1]]],[18,2,2,1,3,[[478,1,1,1,2],[493,1,1,2,3]]]],[7582,13941,14095]]],["delightsome",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23132]]],["desire",[8,8,[[9,1,1,0,1,[[289,1,1,0,1]]],[10,5,5,1,6,[[295,3,3,1,4],[299,1,1,4,5],[300,1,1,5,6]]],[13,1,1,6,7,[[375,1,1,6,7]]],[19,1,1,7,8,[[630,1,1,7,8]]]],[8658,8886,8887,8888,9062,9092,11376,16470]]],["desired",[2,2,[[18,1,1,0,1,[[584,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]]],[15729,16613]]],["desireth",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7701]]],["matter",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17405]]],["pleasant",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18735]]],["pleasure",[16,15,[[17,2,2,0,2,[[456,1,1,0,1],[457,1,1,1,2]]],[18,1,1,2,3,[[588,1,1,2,3]]],[20,2,2,3,5,[[663,1,1,3,4],[670,1,1,4,5]]],[22,7,6,5,11,[[722,1,1,5,6],[724,1,1,6,7],[726,1,1,7,8],[731,1,1,8,9],[736,3,2,9,11]]],[23,2,2,11,13,[[766,1,1,11,12],[792,1,1,12,13]]],[27,1,1,13,14,[[869,1,1,13,14]]],[38,1,1,14,15,[[925,1,1,14,15]]]],[13376,13392,15795,17401,17524,18561,18596,18628,18721,18789,18799,19482,20118,22202,23099]]],["purpose",[3,3,[[20,3,3,0,3,[[661,2,2,0,2],[666,1,1,2,3]]]],[17360,17376,17464]]],["willingly",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17297]]]]},{"k":"H2657","v":[["Hephzibah",[2,2,[[11,1,1,0,1,[[333,1,1,0,1]]],[22,1,1,1,2,[[740,1,1,1,2]]]],[10120,18858]]]]},{"k":"H2658","v":[["*",[22,21,[[0,8,7,0,7,[[20,1,1,0,1],[25,7,6,1,7]]],[1,1,1,7,8,[[56,1,1,7,8]]],[3,1,1,8,9,[[137,1,1,8,9]]],[4,2,2,9,11,[[153,1,1,9,10],[175,1,1,10,11]]],[5,2,2,11,13,[[188,2,2,11,13]]],[17,4,4,13,17,[[438,1,1,13,14],[446,1,1,14,15],[474,2,2,15,17]]],[18,2,2,17,19,[[484,1,1,17,18],[512,1,1,18,19]]],[20,1,1,19,20,[[668,1,1,19,20]]],[23,1,1,20,21,[[757,1,1,20,21]]]],[543,707,710,711,713,714,724,1709,4358,4914,5513,5871,5872,12925,13126,13855,13863,14010,14417,17501,19273]]],["+",[4,4,[[0,1,1,0,1,[[20,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[5,2,2,2,4,[[188,2,2,2,4]]]],[543,4914,5871,5872]]],["dig",[3,3,[[4,1,1,0,1,[[175,1,1,0,1]]],[17,2,2,1,3,[[438,1,1,1,2],[446,1,1,2,3]]]],[5513,12925,13126]]],["digged",[12,11,[[0,7,6,0,6,[[25,7,6,0,6]]],[1,1,1,6,7,[[56,1,1,6,7]]],[3,1,1,7,8,[[137,1,1,7,8]]],[18,2,2,8,10,[[484,1,1,8,9],[512,1,1,9,10]]],[23,1,1,10,11,[[757,1,1,10,11]]]],[707,710,711,713,714,724,1709,4358,14010,14417,19273]]],["diggeth",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17501]]],["paweth",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13855]]],["seeketh",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13863]]]]},{"k":"H2659","v":[["*",[17,17,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,7,7,1,8,[[511,1,1,1,2],[512,2,2,2,4],[517,1,1,4,5],[547,1,1,5,6],[548,1,1,6,7],[560,1,1,7,8]]],[19,2,2,8,10,[[640,1,1,8,9],[646,1,1,9,10]]],[22,4,4,10,14,[[679,1,1,10,11],[702,1,1,11,12],[711,1,1,12,13],[732,1,1,13,14]]],[23,2,2,14,16,[[759,1,1,14,15],[794,1,1,15,16]]],[32,1,1,16,17,[[895,1,1,16,17]]]],[12998,14393,14414,14436,14539,14973,15000,15258,16752,16951,17683,18118,18288,18727,19324,20178,22615]]],["ashamed",[4,4,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,1,1,1,2,[[511,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]],[23,1,1,3,4,[[794,1,1,3,4]]]],[12998,14393,18288,20178]]],["confounded",[6,6,[[18,2,2,0,2,[[517,1,1,0,1],[547,1,1,1,2]]],[22,2,2,2,4,[[679,1,1,2,3],[702,1,1,3,4]]],[23,1,1,4,5,[[759,1,1,4,5]]],[32,1,1,5,6,[[895,1,1,5,6]]]],[14539,14973,17683,18118,19324,22615]]],["confusion",[2,2,[[18,2,2,0,2,[[512,2,2,0,2]]]],[14414,14436]]],["reproach",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16951]]],["shame",[4,4,[[18,2,2,0,2,[[548,1,1,0,1],[560,1,1,1,2]]],[19,1,1,2,3,[[640,1,1,2,3]]],[22,1,1,3,4,[[732,1,1,3,4]]]],[15000,15258,16752,18727]]]]},{"k":"H2660","v":[["Hepher",[9,9,[[3,3,3,0,3,[[142,2,2,0,2],[143,1,1,2,3]]],[5,3,3,3,6,[[198,1,1,3,4],[203,2,2,4,6]]],[10,1,1,6,7,[[294,1,1,6,7]]],[12,2,2,7,9,[[341,1,1,7,8],[348,1,1,8,9]]]],[4521,4522,4555,6147,6277,6278,8854,10391,10709]]]]},{"k":"H2661","v":[["+",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17705]]]]},{"k":"H2662","v":[["Hepherites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4521]]]]},{"k":"H2663","v":[["Hapharaim",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6340]]]]},{"k":"H2664","v":[["*",[23,20,[[0,2,2,0,2,[[30,1,1,0,1],[43,1,1,1,2]]],[8,2,2,2,4,[[258,1,1,2,3],[263,1,1,3,4]]],[10,4,3,4,7,[[310,2,2,4,6],[312,2,1,6,7]]],[11,1,1,7,8,[[322,1,1,7,8]]],[13,3,2,8,10,[[384,2,1,8,9],[401,1,1,9,10]]],[17,1,1,10,11,[[465,1,1,10,11]]],[18,3,2,11,13,[[541,2,1,11,12],[554,1,1,12,13]]],[19,3,3,13,16,[[629,1,1,13,14],[647,1,1,14,15],[655,1,1,15,16]]],[24,1,1,16,17,[[799,1,1,16,17]]],[29,1,1,17,18,[[887,1,1,17,18]]],[30,1,1,18,19,[[888,1,1,18,19]]],[35,1,1,19,20,[[906,1,1,19,20]]]],[908,1336,7833,7950,9414,9446,9510,9816,11571,11988,13575,14856,15099,16437,16981,17208,20394,22498,22516,22799]]],["+",[4,4,[[8,1,1,0,1,[[258,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[18,1,1,2,3,[[541,1,1,2,3]]],[35,1,1,3,4,[[906,1,1,3,4]]]],[7833,9414,14856,22799]]],["Search",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9816]]],["changed",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13575]]],["hidden",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17208]]],["himself",[5,5,[[8,1,1,0,1,[[263,1,1,0,1]]],[10,2,2,1,3,[[310,1,1,1,2],[312,1,1,2,3]]],[13,2,2,3,5,[[384,1,1,3,4],[401,1,1,4,5]]]],[7950,9446,9510,11571,11988]]],["myself",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[9510,11571]]],["out",[2,2,[[18,1,1,0,1,[[541,1,1,0,1]]],[30,1,1,1,2,[[888,1,1,1,2]]]],[14856,22516]]],["search",[3,3,[[18,1,1,0,1,[[554,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]],[29,1,1,2,3,[[887,1,1,2,3]]]],[15099,20394,22498]]],["searched",[2,2,[[0,2,2,0,2,[[30,1,1,0,1],[43,1,1,1,2]]]],[908,1336]]],["searchest",[1,1,[[19,1,1,0,1,[[629,1,1,0,1]]]],[16437]]],["searching",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16981]]]]},{"k":"H2665","v":[["+",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14856]]]]},{"k":"H2666","v":[["+",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3301]]]]},{"k":"H2667","v":[["precious",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21141]]]]},{"k":"H2668","v":[["freedom",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3301]]]]},{"k":"H2669","v":[["several",[2,2,[[11,1,1,0,1,[[327,1,1,0,1]]],[13,1,1,1,2,[[392,1,1,1,2]]]],[9930,11753]]]]},{"k":"H2670","v":[["*",[17,17,[[1,4,4,0,4,[[70,4,4,0,4]]],[4,3,3,4,7,[[167,3,3,4,7]]],[8,1,1,7,8,[[252,1,1,7,8]]],[17,2,2,8,10,[[438,1,1,8,9],[474,1,1,9,10]]],[18,1,1,10,11,[[565,1,1,10,11]]],[22,1,1,11,12,[[736,1,1,11,12]]],[23,5,5,12,17,[[778,5,5,12,17]]]],[2079,2082,2103,2104,5331,5332,5337,7643,12923,13839,15313,18792,19810,19811,19812,19815,19817]]],["Free",[1,1,[[18,1,1,0,1,[[565,1,1,0,1]]]],[15313]]],["free",[15,15,[[1,4,4,0,4,[[70,4,4,0,4]]],[4,3,3,4,7,[[167,3,3,4,7]]],[8,1,1,7,8,[[252,1,1,7,8]]],[17,2,2,8,10,[[438,1,1,8,9],[474,1,1,9,10]]],[22,1,1,10,11,[[736,1,1,10,11]]],[23,4,4,11,15,[[778,4,4,11,15]]]],[2079,2082,2103,2104,5331,5332,5337,7643,12923,13839,18792,19810,19811,19812,19815]]],["liberty",[1,1,[[23,1,1,0,1,[[778,1,1,0,1]]]],[19817]]]]},{"k":"H2671","v":[["*",[53,50,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[4,2,2,2,4,[[184,2,2,2,4]]],[8,6,5,4,9,[[252,1,1,4,5],[255,5,4,5,9]]],[9,1,1,9,10,[[288,1,1,9,10]]],[11,6,4,10,14,[[325,5,3,10,13],[331,1,1,13,14]]],[12,1,1,14,15,[[349,1,1,14,15]]],[13,1,1,15,16,[[392,1,1,15,16]]],[17,2,2,16,18,[[441,1,1,16,17],[469,1,1,17,18]]],[18,14,14,18,32,[[484,1,1,18,19],[488,1,1,19,20],[495,1,1,20,21],[515,1,1,21,22],[522,1,1,22,23],[534,1,1,23,24],[535,1,1,24,25],[541,2,2,25,27],[554,1,1,27,28],[568,1,1,28,29],[597,1,1,29,30],[604,1,1,30,31],[621,1,1,31,32]]],[19,3,3,32,35,[[634,1,1,32,33],[652,1,1,33,34],[653,1,1,34,35]]],[22,4,4,35,39,[[683,1,1,35,36],[685,1,1,36,37],[715,1,1,37,38],[727,1,1,38,39]]],[23,4,4,39,43,[[753,1,1,39,40],[794,2,2,40,42],[795,1,1,42,43]]],[24,1,1,43,44,[[799,1,1,43,44]]],[25,4,4,44,48,[[806,1,1,44,45],[822,1,1,45,46],[840,2,2,46,48]]],[34,1,1,48,49,[[905,1,1,48,49]]],[37,1,1,49,50,[[919,1,1,49,50]]]],[1496,4454,5781,5800,7625,7750,7751,7752,7766,8617,9886,9888,9889,10093,10722,11747,12982,13689,14008,14061,14132,14492,14602,14772,14786,14853,14857,15110,15400,16078,16125,16311,16598,17131,17159,17767,17806,18385,18638,19183,20175,20180,20223,20366,20562,20965,21451,21457,22779,23013]]],["+",[3,3,[[0,1,1,0,1,[[48,1,1,0,1]]],[18,1,1,1,2,[[568,1,1,1,2]]],[25,1,1,2,3,[[822,1,1,2,3]]]],[1496,15400,20965]]],["arrow",[10,9,[[11,3,2,0,2,[[325,2,1,0,1],[331,1,1,1,2]]],[18,2,2,2,4,[[488,1,1,2,3],[541,1,1,3,4]]],[19,1,1,4,5,[[652,1,1,4,5]]],[22,1,1,5,6,[[715,1,1,5,6]]],[23,1,1,6,7,[[753,1,1,6,7]]],[24,1,1,7,8,[[799,1,1,7,8]]],[37,1,1,8,9,[[919,1,1,8,9]]]],[9888,10093,14061,14857,17131,18385,19183,20366,23013]]],["arrows",[36,34,[[3,1,1,0,1,[[140,1,1,0,1]]],[4,2,2,1,3,[[184,2,2,1,3]]],[8,5,4,3,7,[[255,5,4,3,7]]],[9,1,1,7,8,[[288,1,1,7,8]]],[11,3,2,8,10,[[325,3,2,8,10]]],[12,1,1,10,11,[[349,1,1,10,11]]],[13,1,1,11,12,[[392,1,1,11,12]]],[17,1,1,12,13,[[441,1,1,12,13]]],[18,11,11,13,24,[[484,1,1,13,14],[495,1,1,14,15],[515,1,1,15,16],[522,1,1,16,17],[534,1,1,17,18],[535,1,1,18,19],[541,1,1,19,20],[554,1,1,20,21],[597,1,1,21,22],[604,1,1,22,23],[621,1,1,23,24]]],[19,1,1,24,25,[[653,1,1,24,25]]],[22,2,2,25,27,[[683,1,1,25,26],[685,1,1,26,27]]],[23,3,3,27,30,[[794,2,2,27,29],[795,1,1,29,30]]],[25,3,3,30,33,[[806,1,1,30,31],[840,2,2,31,33]]],[34,1,1,33,34,[[905,1,1,33,34]]]],[4454,5781,5800,7750,7751,7752,7766,8617,9886,9889,10722,11747,12982,14008,14132,14492,14602,14772,14786,14853,15110,16078,16125,16311,17159,17767,17806,20175,20180,20223,20562,21451,21457,22779]]],["dart",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16598]]],["shaft",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18638]]],["staff",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7625]]],["wound",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13689]]]]},{"k":"H2672","v":[["*",[25,22,[[4,3,2,0,2,[[158,2,1,0,1],[160,1,1,1,2]]],[10,1,1,2,3,[[295,1,1,2,3]]],[11,1,1,3,4,[[324,1,1,3,4]]],[12,3,2,4,6,[[359,3,2,4,6]]],[13,4,4,6,10,[[368,2,2,6,8],[390,1,1,8,9],[392,1,1,9,10]]],[14,1,1,10,11,[[405,1,1,10,11]]],[15,1,1,11,12,[[421,1,1,11,12]]],[17,1,1,12,13,[[454,1,1,12,13]]],[18,1,1,13,14,[[506,1,1,13,14]]],[19,1,1,14,15,[[636,1,1,14,15]]],[22,6,5,15,20,[[683,1,1,15,16],[688,1,1,16,17],[700,2,1,17,18],[729,2,2,18,20]]],[23,1,1,20,21,[[746,1,1,20,21]]],[27,1,1,21,22,[[867,1,1,21,22]]]],[5097,5146,8893,9862,10966,10979,11213,11229,11689,11742,12104,12536,13321,14315,16639,17741,17865,18068,18674,18682,18978,22172]]],["cut",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18682]]],["dig",[1,1,[[4,1,1,0,1,[[160,1,1,0,1]]]],[5146]]],["digged",[3,3,[[4,1,1,0,1,[[158,1,1,0,1]]],[13,1,1,1,2,[[392,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]]],[5097,11742,12536]]],["diggedst",[1,1,[[4,1,1,0,1,[[158,1,1,0,1]]]],[5097]]],["divideth",[1,1,[[18,1,1,0,1,[[506,1,1,0,1]]]],[14315]]],["graven",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13321]]],["hew",[2,2,[[12,1,1,0,1,[[359,1,1,0,1]]],[13,1,1,1,2,[[368,1,1,1,2]]]],[10966,11213]]],["hewed",[1,1,[[27,1,1,0,1,[[867,1,1,0,1]]]],[22172]]],["hewers",[4,4,[[10,1,1,0,1,[[295,1,1,0,1]]],[11,1,1,1,2,[[324,1,1,1,2]]],[12,1,1,2,3,[[359,1,1,2,3]]],[13,1,1,3,4,[[368,1,1,3,4]]]],[8893,9862,10979,11229]]],["heweth",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17865]]],["hewn",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18674]]],["made",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17741]]],["masons",[3,3,[[12,1,1,0,1,[[359,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]],[14,1,1,2,3,[[405,1,1,2,3]]]],[10966,11689,12104]]],["out",[4,3,[[19,1,1,0,1,[[636,1,1,0,1]]],[22,2,1,1,2,[[700,2,1,1,2]]],[23,1,1,2,3,[[746,1,1,2,3]]]],[16639,18068,18978]]]]},{"k":"H2673","v":[["*",[15,14,[[0,2,2,0,2,[[31,1,1,0,1],[32,1,1,1,2]]],[1,2,1,2,3,[[70,2,1,2,3]]],[3,2,2,3,5,[[147,2,2,3,5]]],[6,2,2,5,7,[[217,1,1,5,6],[219,1,1,6,7]]],[11,2,2,7,9,[[314,2,2,7,9]]],[17,1,1,9,10,[[476,1,1,9,10]]],[18,1,1,10,11,[[532,1,1,10,11]]],[22,1,1,11,12,[[708,1,1,11,12]]],[25,1,1,12,13,[[838,1,1,12,13]]],[26,1,1,13,14,[[860,1,1,13,14]]]],[935,961,2112,4691,4706,6710,6797,9559,9565,13894,14755,18245,21419,22040]]],["+",[5,5,[[0,2,2,0,2,[[31,1,1,0,1],[32,1,1,1,2]]],[1,1,1,2,3,[[70,1,1,2,3]]],[3,1,1,3,4,[[147,1,1,3,4]]],[6,1,1,4,5,[[217,1,1,4,5]]]],[935,961,2112,4691,6710]]],["divide",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2112]]],["divided",[5,5,[[3,1,1,0,1,[[147,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[11,1,1,2,3,[[314,1,1,2,3]]],[25,1,1,3,4,[[838,1,1,3,4]]],[26,1,1,4,5,[[860,1,1,4,5]]]],[4706,6797,9559,21419,22040]]],["half",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14755]]],["midst",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18245]]],["part",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13894]]],["parted",[1,1,[[11,1,1,0,1,[[314,1,1,0,1]]]],[9565]]]]},{"k":"H2674","v":[["Hazor",[19,17,[[5,10,8,0,8,[[197,5,4,0,4],[198,1,1,4,5],[201,3,2,5,7],[205,1,1,7,8]]],[6,2,2,8,10,[[214,2,2,8,10]]],[8,1,1,10,11,[[247,1,1,10,11]]],[10,1,1,11,12,[[299,1,1,11,12]]],[11,1,1,12,13,[[327,1,1,12,13]]],[15,1,1,13,14,[[423,1,1,13,14]]],[23,3,3,14,17,[[793,3,3,14,17]]]],[6108,6117,6118,6120,6149,6225,6227,6357,6601,6616,7469,9066,9954,12621,20155,20157,20160]]]]},{"k":"H2675","v":[["Hadattah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6227]]]]},{"k":"H2676","v":[["+",[3,3,[[1,1,1,0,1,[[60,1,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]]],[1810,13703,15960]]]]},{"k":"H2677","v":[["*",[125,103,[[1,20,13,0,13,[[61,1,1,0,1],[73,2,1,1,2],[74,6,3,2,5],[75,2,2,5,7],[76,1,1,7,8],[85,1,1,8,9],[86,6,3,9,12],[87,1,1,12,13]]],[3,8,8,13,21,[[128,1,1,13,14],[131,2,2,14,16],[144,1,1,16,17],[148,1,1,17,18],[150,3,3,18,21]]],[4,3,3,21,24,[[155,2,2,21,23],[181,1,1,23,24]]],[5,29,25,24,49,[[187,1,1,24,25],[190,1,1,25,26],[194,2,1,26,27],[196,1,1,27,28],[198,3,3,28,31],[199,6,4,31,35],[200,2,2,35,37],[204,1,1,37,38],[207,3,3,38,41],[208,9,8,41,49]]],[6,2,1,49,50,[[226,2,1,49,50]]],[7,1,1,50,51,[[234,1,1,50,51]]],[8,1,1,51,52,[[249,1,1,51,52]]],[9,4,3,52,55,[[276,2,1,52,53],[284,1,1,53,54],[285,1,1,54,55]]],[10,10,7,55,62,[[293,2,1,55,56],[297,3,3,56,59],[300,1,1,59,60],[303,1,1,60,61],[306,3,1,61,62]]],[12,13,13,62,75,[[339,2,2,62,64],[342,3,3,64,67],[343,2,2,67,69],[349,2,2,69,71],[356,1,1,71,72],[363,1,1,72,73],[364,2,2,73,75]]],[13,1,1,75,76,[[375,1,1,75,76]]],[15,13,12,76,88,[[415,5,5,76,81],[416,4,3,81,84],[424,3,3,84,87],[425,1,1,87,88]]],[16,3,3,88,91,[[430,2,2,88,90],[432,1,1,90,91]]],[18,1,1,91,92,[[579,1,1,91,92]]],[22,3,2,92,94,[[722,3,2,92,94]]],[23,1,1,94,95,[[761,1,1,94,95]]],[25,4,3,95,98,[[817,1,1,95,96],[841,2,1,96,97],[844,1,1,97,98]]],[26,2,2,98,100,[[858,1,1,98,99],[861,1,1,99,100]]],[37,6,3,100,103,[[924,6,3,100,103]]]],[1845,2183,2205,2212,2218,2247,2251,2277,2587,2605,2610,2614,2637,4071,4162,4163,4591,4751,4829,4830,4831,4987,4988,5687,5863,5922,6035,6077,6132,6135,6136,6161,6179,6183,6185,6189,6190,6300,6386,6387,6408,6427,6433,6435,6436,6437,6439,6441,6447,6952,7180,7522,8244,8481,8551,8841,8965,8966,8969,9086,9192,9304,10358,10360,10446,10451,10454,10515,10525,10751,10757,10911,11109,11129,11130,11370,12336,12339,12343,12344,12345,12365,12375,12380,12656,12662,12664,12695,12782,12785,12809,15545,18549,18552,19368,20813,21519,21589,22015,22088,23070,23072,23076]]],["+",[11,10,[[1,1,1,0,1,[[61,1,1,0,1]]],[5,3,3,1,4,[[207,3,3,1,4]]],[6,2,1,4,5,[[226,2,1,4,5]]],[7,1,1,5,6,[[234,1,1,5,6]]],[10,1,1,6,7,[[297,1,1,6,7]]],[12,2,2,7,9,[[343,1,1,7,8],[349,1,1,8,9]]],[37,1,1,9,10,[[924,1,1,9,10]]]],[1845,6386,6387,6408,6952,7180,8965,10515,10751,23072]]],["half",[102,85,[[1,17,10,0,10,[[73,2,1,0,1],[74,6,3,1,4],[75,2,2,4,6],[85,1,1,6,7],[86,6,3,7,10]]],[3,8,8,10,18,[[128,1,1,10,11],[131,2,2,11,13],[144,1,1,13,14],[148,1,1,14,15],[150,3,3,15,18]]],[4,3,3,18,21,[[155,2,2,18,20],[181,1,1,20,21]]],[5,25,21,21,42,[[187,1,1,21,22],[190,1,1,22,23],[194,2,1,23,24],[198,3,3,24,27],[199,6,4,27,31],[200,2,2,31,33],[204,1,1,33,34],[208,9,8,34,42]]],[8,1,1,42,43,[[249,1,1,42,43]]],[9,3,3,43,46,[[276,1,1,43,44],[284,1,1,44,45],[285,1,1,45,46]]],[10,8,6,46,52,[[293,2,1,46,47],[297,2,2,47,49],[300,1,1,49,50],[303,1,1,50,51],[306,2,1,51,52]]],[12,10,10,52,62,[[339,2,2,52,54],[342,3,3,54,57],[343,1,1,57,58],[349,1,1,58,59],[363,1,1,59,60],[364,2,2,60,62]]],[13,1,1,62,63,[[375,1,1,62,63]]],[15,13,12,63,75,[[415,5,5,63,68],[416,4,3,68,71],[424,3,3,71,74],[425,1,1,74,75]]],[16,3,3,75,78,[[430,2,2,75,77],[432,1,1,77,78]]],[25,4,3,78,81,[[817,1,1,78,79],[841,2,1,79,80],[844,1,1,80,81]]],[26,1,1,81,82,[[861,1,1,81,82]]],[37,5,3,82,85,[[924,5,3,82,85]]]],[2183,2205,2212,2218,2247,2251,2587,2605,2610,2614,4071,4162,4163,4591,4751,4829,4830,4831,4987,4988,5687,5863,5922,6035,6132,6135,6136,6161,6179,6183,6185,6189,6190,6300,6427,6433,6435,6436,6437,6439,6441,6447,7522,8244,8481,8551,8841,8966,8969,9086,9192,9304,10358,10360,10446,10451,10454,10525,10757,11109,11129,11130,11370,12336,12339,12343,12344,12345,12365,12375,12380,12656,12662,12664,12695,12782,12785,12809,20813,21519,21589,22088,23070,23072,23076]]],["middle",[1,1,[[9,1,1,0,1,[[276,1,1,0,1]]]],[8244]]],["midst",[7,7,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[5,1,1,2,3,[[196,1,1,2,3]]],[12,1,1,3,4,[[356,1,1,3,4]]],[18,1,1,4,5,[[579,1,1,4,5]]],[23,1,1,5,6,[[761,1,1,5,6]]],[26,1,1,6,7,[[858,1,1,6,7]]]],[2277,2637,6077,10911,15545,19368,22015]]],["part",[3,2,[[22,3,2,0,2,[[722,3,2,0,2]]]],[18549,18552]]],["parts",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9304]]]]},{"k":"H2678","v":[["*",[5,4,[[8,4,3,0,3,[[255,4,3,0,3]]],[11,1,1,3,4,[[321,1,1,3,4]]]],[7766,7767,7768,9780]]],["arrow",[4,3,[[8,3,2,0,2,[[255,3,2,0,2]]],[11,1,1,2,3,[[321,1,1,2,3]]]],[7766,7767,9780]]],["arrows",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7768]]]]},{"k":"H2679","v":[]},{"k":"H2680","v":[["Manahethites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10360]]]]},{"k":"H2681","v":[["court",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18316]]]]},{"k":"H2682","v":[["*",[21,20,[[3,1,1,0,1,[[127,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[17,2,2,3,5,[[443,1,1,3,4],[475,1,1,4,5]]],[18,6,6,5,11,[[514,1,1,5,6],[567,1,1,6,7],[580,1,1,7,8],[581,1,1,8,9],[606,1,1,9,10],[624,1,1,10,11]]],[19,1,1,11,12,[[654,1,1,11,12]]],[22,9,8,12,20,[[693,1,1,12,13],[713,1,1,13,14],[715,1,1,14,15],[718,4,3,15,18],[722,1,1,18,19],[729,1,1,19,20]]]],[4029,9346,10087,13041,13879,14452,15383,15564,15585,16138,16359,17194,17966,18327,18379,18426,18427,18428,18537,18685]]],["grass",[17,16,[[10,1,1,0,1,[[308,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[17,1,1,2,3,[[475,1,1,2,3]]],[18,6,6,3,9,[[514,1,1,3,4],[567,1,1,4,5],[580,1,1,5,6],[581,1,1,6,7],[606,1,1,7,8],[624,1,1,8,9]]],[22,8,7,9,16,[[713,1,1,9,10],[715,1,1,10,11],[718,4,3,11,14],[722,1,1,14,15],[729,1,1,15,16]]]],[9346,10087,13879,14452,15383,15564,15585,16138,16359,18327,18379,18426,18427,18428,18537,18685]]],["hay",[2,2,[[19,1,1,0,1,[[654,1,1,0,1]]],[22,1,1,1,2,[[693,1,1,1,2]]]],[17194,17966]]],["herb",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13041]]],["leeks",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4029]]]]},{"k":"H2683","v":[["bosom",[1,1,[[18,1,1,0,1,[[606,1,1,0,1]]]],[16139]]]]},{"k":"H2684","v":[["*",[2,2,[[15,1,1,0,1,[[417,1,1,0,1]]],[22,1,1,1,2,[[727,1,1,1,2]]]],[12395,18658]]],["arms",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18658]]],["lap",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12395]]]]},{"k":"H2685","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21773,21829]]],["hasty",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21773]]],["urgent",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21829]]]]},{"k":"H2686","v":[["*",[3,3,[[6,1,1,0,1,[[215,1,1,0,1]]],[17,1,1,1,2,[[456,1,1,1,2]]],[19,1,1,2,3,[[657,1,1,2,3]]]],[6634,13376,17278]]],["archers",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6634]]],["bands",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17278]]],["midst",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13376]]]]},{"k":"H2687","v":[["*",[2,2,[[19,1,1,0,1,[[647,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]]],[16971,20370]]],["gravel",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16971]]],["stones",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20370]]]]},{"k":"H2688","v":[["*",[2,2,[[0,1,1,0,1,[[13,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]]],[343,11589]]],["Hazazontamar",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11589]]],["Hazezontamar",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[343]]]]},{"k":"H2689","v":[["*",[29,27,[[3,5,5,0,5,[[126,4,4,0,4],[147,1,1,4,5]]],[11,3,2,5,7,[[323,2,1,5,6],[324,1,1,6,7]]],[12,5,5,7,12,[[350,1,1,7,8],[352,2,2,8,10],[353,2,2,10,12]]],[13,11,10,12,22,[[371,2,2,12,14],[379,2,2,14,16],[381,1,1,16,17],[386,1,1,17,18],[389,2,1,18,19],[395,3,3,19,22]]],[14,1,1,22,23,[[405,1,1,22,23]]],[15,2,2,23,25,[[424,2,2,23,25]]],[18,1,1,25,26,[[575,1,1,25,26]]],[27,1,1,26,27,[[866,1,1,26,27]]]],[3990,3996,3997,3998,4670,9843,9863,10768,10815,10819,10826,10862,11280,11281,11465,11467,11504,11615,11669,11817,11818,11819,12107,12659,12665,15496,22160]]],["trumpet",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22160]]],["trumpeters",[2,2,[[11,1,1,0,1,[[323,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]]],[9843,11819]]],["trumpets",[26,25,[[3,5,5,0,5,[[126,4,4,0,4],[147,1,1,4,5]]],[11,2,2,5,7,[[323,1,1,5,6],[324,1,1,6,7]]],[12,5,5,7,12,[[350,1,1,7,8],[352,2,2,8,10],[353,2,2,10,12]]],[13,10,9,12,21,[[371,2,2,12,14],[379,2,2,14,16],[381,1,1,16,17],[386,1,1,17,18],[389,2,1,18,19],[395,2,2,19,21]]],[14,1,1,21,22,[[405,1,1,21,22]]],[15,2,2,22,24,[[424,2,2,22,24]]],[18,1,1,24,25,[[575,1,1,24,25]]]],[3990,3996,3997,3998,4670,9843,9863,10768,10815,10819,10826,10862,11280,11281,11465,11467,11504,11615,11669,11817,11818,12107,12659,12665,15496]]]]},{"k":"H2690","v":[["*",[6,6,[[12,1,1,0,1,[[352,1,1,0,1]]],[13,5,5,1,6,[[371,2,2,1,3],[373,1,1,3,4],[379,1,1,4,5],[395,1,1,5,6]]]],[10815,11280,11281,11330,11467,11819]]],["blow",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10815]]],["sounded",[3,3,[[13,3,3,0,3,[[373,1,1,0,1],[379,1,1,1,2],[395,1,1,2,3]]]],[11330,11467,11819]]],["sounding",[1,1,[[13,1,1,0,1,[[371,1,1,0,1]]]],[11280]]],["trumpeters",[1,1,[[13,1,1,0,1,[[371,1,1,0,1]]]],[11281]]]]},{"k":"H2691","v":[["*",[190,163,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,29,20,1,21,[[57,1,1,1,2],[76,8,7,2,9],[84,3,2,9,11],[87,11,7,11,18],[88,2,1,18,19],[89,4,2,19,21]]],[2,3,3,21,24,[[95,2,2,21,23],[114,1,1,23,24]]],[3,6,4,24,28,[[119,3,2,24,26],[120,3,2,26,28]]],[5,32,31,28,59,[[199,2,2,28,30],[201,14,13,30,43],[202,1,1,43,44],[204,2,2,44,46],[205,12,12,46,58],[207,1,1,58,59]]],[9,1,1,59,60,[[283,1,1,59,60]]],[10,6,5,60,65,[[296,1,1,60,61],[297,4,3,61,64],[298,1,1,64,65]]],[11,3,3,65,68,[[332,1,1,65,66],[333,1,1,66,67],[335,1,1,67,68]]],[12,9,9,68,77,[[341,2,2,68,70],[343,1,1,70,71],[346,3,3,71,74],[360,1,1,74,75],[365,2,2,75,77]]],[13,7,7,77,84,[[370,1,1,77,78],[373,1,1,78,79],[386,1,1,79,80],[389,1,1,80,81],[390,1,1,81,82],[395,1,1,82,83],[399,1,1,83,84]]],[15,9,7,84,91,[[415,1,1,84,85],[420,2,1,85,86],[423,3,2,86,88],[424,2,2,88,90],[425,1,1,90,91]]],[16,8,7,91,98,[[426,1,1,91,92],[427,1,1,92,93],[429,1,1,93,94],[430,2,2,94,96],[431,3,2,96,98]]],[18,9,9,98,107,[[487,1,1,98,99],[542,1,1,99,100],[561,2,2,100,102],[569,1,1,102,103],[573,1,1,103,104],[577,1,1,104,105],[593,1,1,105,106],[612,1,1,106,107]]],[22,3,3,107,110,[[679,1,1,107,108],[720,1,1,108,109],[740,1,1,109,110]]],[23,15,14,110,124,[[763,1,1,110,111],[770,1,1,111,112],[776,3,3,112,115],[777,1,1,115,116],[780,2,2,116,118],[781,2,1,118,119],[782,3,3,119,122],[783,2,2,122,124]]],[25,48,38,124,162,[[809,2,2,124,126],[810,1,1,126,127],[811,3,3,127,130],[841,14,13,130,143],[842,1,1,143,144],[843,9,8,144,152],[844,1,1,152,153],[845,6,4,153,157],[846,1,1,157,158],[847,10,4,158,162]]],[37,1,1,162,163,[[913,1,1,162,163]]]],[674,1723,2281,2284,2285,2288,2289,2290,2291,2548,2549,2642,2648,2649,2650,2651,2653,2664,2704,2715,2740,2865,2875,3500,3718,3729,3769,3775,6177,6182,6234,6238,6243,6246,6247,6248,6249,6253,6256,6259,6261,6262,6264,6274,6317,6321,6327,6328,6329,6336,6337,6343,6344,6351,6352,6359,6360,6369,6393,8467,8932,8942,8943,8946,9049,10102,10124,10177,10417,10418,10510,10631,10637,10640,11011,11149,11155,11255,11331,11592,11661,11698,11807,11913,12352,12509,12613,12618,12652,12653,12678,12707,12735,12773,12780,12781,12797,12798,14049,14864,15261,15269,15424,15473,15512,15867,16177,17666,18491,18863,19421,19574,19733,19739,19743,19776,19852,19862,19895,19901,19908,19923,19937,19938,20611,20620,20629,20636,20637,20638,21491,21494,21496,21497,21500,21504,21505,21508,21509,21511,21514,21521,21524,21541,21553,21555,21558,21559,21560,21561,21562,21566,21577,21616,21618,21620,21626,21649,21656,21675,21676,21677,22919]]],["+",[7,5,[[1,2,2,0,2,[[84,1,1,0,1],[88,1,1,1,2]]],[23,1,1,2,3,[[783,1,1,2,3]]],[25,4,2,3,5,[[843,1,1,3,4],[847,3,1,4,5]]]],[2548,2704,19937,21561,21676]]],["court",[111,93,[[1,26,19,0,19,[[76,8,7,0,7],[84,2,2,7,9],[87,11,7,9,16],[88,1,1,16,17],[89,4,2,17,19]]],[2,2,2,19,21,[[95,2,2,19,21]]],[3,6,4,21,25,[[119,3,2,21,23],[120,3,2,23,25]]],[9,1,1,25,26,[[283,1,1,25,26]]],[10,6,5,26,31,[[296,1,1,26,27],[297,4,3,27,30],[298,1,1,30,31]]],[11,1,1,31,32,[[332,1,1,31,32]]],[13,5,5,32,37,[[370,1,1,32,33],[373,1,1,33,34],[386,1,1,34,35],[390,1,1,35,36],[395,1,1,36,37]]],[15,1,1,37,38,[[415,1,1,37,38]]],[16,8,7,38,45,[[426,1,1,38,39],[427,1,1,39,40],[429,1,1,40,41],[430,2,2,41,43],[431,3,2,43,45]]],[23,14,13,45,58,[[763,1,1,45,46],[770,1,1,46,47],[776,3,3,47,50],[777,1,1,50,51],[780,2,2,51,53],[781,2,1,53,54],[782,3,3,54,57],[783,1,1,57,58]]],[25,41,35,58,93,[[809,2,2,58,60],[811,3,3,60,63],[841,14,13,63,76],[842,1,1,76,77],[843,7,6,77,83],[844,1,1,83,84],[845,6,4,84,88],[846,1,1,88,89],[847,6,4,89,93]]]],[2281,2284,2285,2288,2289,2290,2291,2548,2549,2642,2648,2649,2650,2651,2653,2664,2704,2715,2740,2865,2875,3718,3729,3769,3775,8467,8932,8942,8943,8946,9049,10102,11255,11331,11592,11698,11807,12352,12707,12735,12773,12780,12781,12797,12798,19421,19574,19733,19739,19743,19776,19852,19862,19895,19901,19908,19923,19938,20611,20620,20636,20637,20638,21491,21494,21496,21497,21500,21504,21505,21508,21509,21511,21514,21521,21524,21541,21553,21555,21559,21560,21562,21566,21577,21616,21618,21620,21626,21649,21656,21675,21676,21677]]],["courts",[24,23,[[11,2,2,0,2,[[333,1,1,0,1],[335,1,1,1,2]]],[12,3,3,2,5,[[360,1,1,2,3],[365,2,2,3,5]]],[13,2,2,5,7,[[389,1,1,5,6],[399,1,1,6,7]]],[15,3,2,7,9,[[420,2,1,7,8],[425,1,1,8,9]]],[18,8,8,9,17,[[542,1,1,9,10],[561,2,2,10,12],[569,1,1,12,13],[573,1,1,13,14],[577,1,1,14,15],[593,1,1,15,16],[612,1,1,16,17]]],[22,2,2,17,19,[[679,1,1,17,18],[740,1,1,18,19]]],[25,3,3,19,22,[[810,1,1,19,20],[843,1,1,20,21],[847,1,1,21,22]]],[37,1,1,22,23,[[913,1,1,22,23]]]],[10124,10177,11011,11149,11155,11661,11913,12509,12678,14864,15261,15269,15424,15473,15512,15867,16177,17666,18863,20629,21558,21677,22919]]],["towns",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[674]]],["villages",[47,45,[[1,1,1,0,1,[[57,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[5,32,31,2,33,[[199,2,2,2,4],[201,14,13,4,17],[202,1,1,17,18],[204,2,2,18,20],[205,12,12,20,32],[207,1,1,32,33]]],[12,6,6,33,39,[[341,2,2,33,35],[343,1,1,35,36],[346,3,3,36,39]]],[15,5,4,39,43,[[423,3,2,39,41],[424,2,2,41,43]]],[18,1,1,43,44,[[487,1,1,43,44]]],[22,1,1,44,45,[[720,1,1,44,45]]]],[1723,3500,6177,6182,6234,6238,6243,6246,6247,6248,6249,6253,6256,6259,6261,6262,6264,6274,6317,6321,6327,6328,6329,6336,6337,6343,6344,6351,6352,6359,6360,6369,6393,10417,10418,10510,10631,10637,10640,12613,12618,12652,12653,14049,18491]]]]},{"k":"H2692","v":[["Hazaraddar",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4820]]]]},{"k":"H2693","v":[["Hazargaddah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6229]]]]},{"k":"H2694","v":[["Hazarhatticon",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21695]]]]},{"k":"H2695","v":[["*",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8688,10710]]],["Hezrai",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8688]]],["Hezro",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10710]]]]},{"k":"H2696","v":[["*",[18,17,[[0,2,2,0,2,[[45,2,2,0,2]]],[1,1,1,2,3,[[55,1,1,2,3]]],[3,2,2,3,5,[[142,2,2,3,5]]],[5,2,2,5,7,[[201,2,2,5,7]]],[7,2,2,7,9,[[235,2,2,7,9]]],[12,9,8,9,17,[[339,7,6,9,15],[341,1,1,15,16],[342,1,1,16,17]]]],[1395,1398,1669,4495,4510,6205,6227,7208,7209,10311,10315,10324,10327,10330,10331,10386,10431]]],["Hezron",[17,17,[[0,2,2,0,2,[[45,2,2,0,2]]],[1,1,1,2,3,[[55,1,1,2,3]]],[3,2,2,3,5,[[142,2,2,3,5]]],[5,2,2,5,7,[[201,2,2,5,7]]],[7,2,2,7,9,[[235,2,2,7,9]]],[12,8,8,9,17,[[339,6,6,9,15],[341,1,1,15,16],[342,1,1,16,17]]]],[1395,1398,1669,4495,4510,6205,6227,7208,7209,10311,10315,10324,10327,10330,10331,10386,10431]]],["Hezron's",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10330]]]]},{"k":"H2697","v":[["Hezronites",[2,2,[[3,2,2,0,2,[[142,2,2,0,2]]]],[4495,4510]]]]},{"k":"H2698","v":[["*",[6,5,[[3,5,4,0,4,[[127,2,1,0,1],[128,1,1,1,2],[149,2,2,2,4]]],[4,1,1,4,5,[[153,1,1,4,5]]]],[4059,4075,4777,4778,4893]]],["+",[2,2,[[3,2,2,0,2,[[128,1,1,0,1],[149,1,1,1,2]]]],[4075,4778]]],["Hazeroth",[4,3,[[3,3,2,0,2,[[127,2,1,0,1],[149,1,1,1,2]]],[4,1,1,2,3,[[153,1,1,2,3]]]],[4059,4777,4893]]]]},{"k":"H2699","v":[["Hazerim",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4961]]]]},{"k":"H2700","v":[["Hazarmaveth",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[260,10272]]]]},{"k":"H2701","v":[["Hazarsusah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6326]]]]},{"k":"H2702","v":[["Hazarsusim",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10416]]]]},{"k":"H2703","v":[["Hazarenan",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21696]]]]},{"k":"H2704","v":[["*",[3,3,[[3,2,2,0,2,[[150,2,2,0,2]]],[25,1,1,2,3,[[849,1,1,2,3]]]],[4825,4826,21703]]],["+",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4826]]],["Hazarenan",[2,2,[[3,1,1,0,1,[[150,1,1,0,1]]],[25,1,1,1,2,[[849,1,1,1,2]]]],[4825,21703]]]]},{"k":"H2705","v":[["Hazarshual",[4,4,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]],[12,1,1,2,3,[[341,1,1,2,3]]],[15,1,1,3,4,[[423,1,1,3,4]]]],[6230,6324,10413,12615]]]]},{"k":"H2706","v":[["*",[127,124,[[0,3,2,0,2,[[46,3,2,0,2]]],[1,8,8,2,10,[[54,1,1,2,3],[61,1,1,3,4],[64,2,2,4,6],[67,2,2,6,8],[78,1,1,8,9],[79,1,1,9,10]]],[2,11,9,10,19,[[95,2,2,10,12],[96,1,1,12,13],[99,6,4,13,17],[113,1,1,17,18],[115,1,1,18,19]]],[3,4,4,19,23,[[134,3,3,19,22],[146,1,1,22,23]]],[4,21,21,23,44,[[156,7,7,23,30],[157,2,2,30,32],[158,4,4,32,36],[159,1,1,36,37],[163,1,1,37,38],[164,1,1,38,39],[168,1,1,39,40],[169,1,1,40,41],[178,2,2,41,43],[179,1,1,43,44]]],[5,1,1,44,45,[[210,1,1,44,45]]],[6,1,1,45,46,[[221,1,1,45,46]]],[8,1,1,46,47,[[265,1,1,46,47]]],[10,4,4,47,51,[[293,1,1,47,48],[298,2,2,48,50],[299,1,1,50,51]]],[11,2,2,51,53,[[329,2,2,51,53]]],[12,3,3,53,56,[[353,1,1,53,54],[359,1,1,54,55],[366,1,1,55,56]]],[13,5,5,56,61,[[373,1,1,56,57],[385,1,1,57,58],[399,1,1,58,59],[400,1,1,59,60],[401,1,1,60,61]]],[14,2,2,61,63,[[409,2,2,61,63]]],[15,4,4,63,67,[[413,1,1,63,64],[421,2,2,64,66],[422,1,1,66,67]]],[17,7,7,67,74,[[449,2,2,67,69],[458,2,2,69,71],[461,1,1,71,72],[463,1,1,72,73],[473,1,1,73,74]]],[18,30,30,74,104,[[479,1,1,74,75],[527,1,1,75,76],[558,1,1,76,77],[571,1,1,77,78],[576,1,1,78,79],[582,2,2,79,81],[596,21,21,81,102],[624,1,1,102,103],[625,1,1,103,104]]],[19,3,3,104,107,[[635,1,1,104,105],[657,1,1,105,106],[658,1,1,106,107]]],[22,2,2,107,109,[[683,1,1,107,108],[702,1,1,108,109]]],[23,3,3,109,112,[[749,1,1,109,110],[775,1,1,110,111],[776,1,1,111,112]]],[25,6,6,112,118,[[812,1,1,112,113],[817,1,1,113,114],[821,2,2,114,116],[837,1,1,116,117],[846,1,1,117,118]]],[29,1,1,118,119,[[880,1,1,118,119]]],[32,1,1,119,120,[[899,1,1,119,120]]],[35,1,1,120,121,[[907,1,1,120,121]]],[37,1,1,121,122,[[911,1,1,121,122]]],[38,2,2,122,124,[[927,1,1,122,123],[928,1,1,123,124]]]],[1442,1446,1646,1840,1945,1946,2015,2019,2364,2403,2867,2871,2913,2988,2990,2991,2992,3455,3570,4265,4268,4276,4664,5005,5009,5010,5012,5018,5044,5049,5054,5084,5087,5103,5106,5110,5122,5240,5241,5354,5383,5582,5583,5595,6501,6868,8003,8830,9043,9046,9055,9998,10020,10837,10977,11183,11341,11586,11916,11964,11991,12183,12184,12303,12524,12525,12578,13186,13194,13431,13433,13477,13530,13803,13952,14684,15221,15451,15506,15616,15651,15903,15906,15910,15921,15924,15931,15946,15952,15962,15966,15969,15978,15981,16010,16015,16016,16022,16033,16043,16053,16069,16370,16377,16631,17259,17299,17753,18100,19080,19727,19742,20667,20789,20913,20920,21386,21644,22383,22675,22807,22884,23127,23142]]],["+",[3,3,[[17,1,1,0,1,[[458,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[38,1,1,2,3,[[927,1,1,2,3]]]],[13431,16016,23127]]],["appointed",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13433]]],["bounds",[2,2,[[17,2,2,0,2,[[449,1,1,0,1],[461,1,1,1,2]]]],[13186,13477]]],["commandments",[1,1,[[29,1,1,0,1,[[880,1,1,0,1]]]],[22383]]],["convenient",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17259]]],["custom",[2,2,[[6,1,1,0,1,[[221,1,1,0,1]]],[23,1,1,1,2,[[776,1,1,1,2]]]],[6868,19742]]],["decree",[7,7,[[17,1,1,0,1,[[463,1,1,0,1]]],[18,2,2,1,3,[[479,1,1,1,2],[625,1,1,2,3]]],[19,1,1,3,4,[[635,1,1,3,4]]],[23,1,1,4,5,[[749,1,1,4,5]]],[32,1,1,5,6,[[899,1,1,5,6]]],[35,1,1,6,7,[[907,1,1,6,7]]]],[13530,13952,16377,16631,19080,22675,22807]]],["decreed",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13803]]],["due",[4,2,[[2,4,2,0,2,[[99,4,2,0,2]]]],[2990,2991]]],["law",[4,4,[[0,1,1,0,1,[[46,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[18,2,2,2,4,[[571,1,1,2,3],[582,1,1,3,4]]]],[1446,10837,15451,15616]]],["measure",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17753]]],["ordinance",[6,6,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[134,1,1,1,2]]],[13,1,1,2,3,[[401,1,1,2,3]]],[18,1,1,3,4,[[576,1,1,3,4]]],[22,1,1,4,5,[[702,1,1,4,5]]],[25,1,1,5,6,[[846,1,1,5,6]]]],[1840,4265,11991,15506,18100,21644]]],["ordinances",[2,2,[[1,1,1,0,1,[[67,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[2019,19727]]],["ordinary",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20789]]],["portion",[3,2,[[0,2,1,0,1,[[46,2,1,0,1]]],[19,1,1,1,2,[[658,1,1,1,2]]]],[1442,17299]]],["statute",[13,13,[[1,3,3,0,3,[[64,1,1,0,1],[78,1,1,1,2],[79,1,1,2,3]]],[2,5,5,3,8,[[95,2,2,3,5],[96,1,1,5,6],[99,1,1,6,7],[113,1,1,7,8]]],[3,2,2,8,10,[[134,2,2,8,10]]],[5,1,1,10,11,[[210,1,1,10,11]]],[8,1,1,11,12,[[265,1,1,11,12]]],[18,1,1,12,13,[[558,1,1,12,13]]]],[1945,2364,2403,2867,2871,2913,2992,3455,4268,4276,6501,8003,15221]]],["statutes",[73,73,[[1,2,2,0,2,[[64,1,1,0,1],[67,1,1,1,2]]],[2,2,2,2,4,[[99,1,1,2,3],[115,1,1,3,4]]],[3,1,1,4,5,[[146,1,1,4,5]]],[4,21,21,5,26,[[156,7,7,5,12],[157,2,2,12,14],[158,4,4,14,18],[159,1,1,18,19],[163,1,1,19,20],[164,1,1,20,21],[168,1,1,21,22],[169,1,1,22,23],[178,2,2,23,25],[179,1,1,25,26]]],[10,4,4,26,30,[[293,1,1,26,27],[298,2,2,27,29],[299,1,1,29,30]]],[11,2,2,30,32,[[329,2,2,30,32]]],[12,2,2,32,34,[[359,1,1,32,33],[366,1,1,33,34]]],[13,4,4,34,38,[[373,1,1,34,35],[385,1,1,35,36],[399,1,1,36,37],[400,1,1,37,38]]],[14,2,2,38,40,[[409,2,2,38,40]]],[15,4,4,40,44,[[413,1,1,40,41],[421,2,2,41,43],[422,1,1,43,44]]],[18,23,23,44,67,[[527,1,1,44,45],[582,1,1,45,46],[596,20,20,46,66],[624,1,1,66,67]]],[25,4,4,67,71,[[812,1,1,67,68],[821,2,2,68,70],[837,1,1,70,71]]],[37,1,1,71,72,[[911,1,1,71,72]]],[38,1,1,72,73,[[928,1,1,72,73]]]],[1946,2015,2988,3570,4664,5005,5009,5010,5012,5018,5044,5049,5054,5084,5087,5103,5106,5110,5122,5240,5241,5354,5383,5582,5583,5595,8830,9043,9046,9055,9998,10020,10977,11183,11341,11586,11916,11964,12183,12184,12303,12524,12525,12578,14684,15651,15903,15906,15910,15921,15924,15931,15946,15952,15962,15966,15969,15978,15981,16010,16015,16022,16033,16043,16053,16069,16370,20667,20913,20920,21386,22884,23142]]],["task",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1646]]],["time",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13194]]]]},{"k":"H2707","v":[["*",[4,4,[[10,1,1,0,1,[[296,1,1,0,1]]],[17,1,1,1,2,[[448,1,1,1,2]]],[25,2,2,2,4,[[809,1,1,2,3],[824,1,1,3,4]]]],[8931,13180,20614,21021]]],["pourtrayed",[2,2,[[25,2,2,0,2,[[809,1,1,0,1],[824,1,1,1,2]]]],[20614,21021]]],["print",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13180]]],["work",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8931]]]]},{"k":"H2708","v":[["*",[104,100,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,7,7,1,8,[[61,3,3,1,4],[62,1,1,4,5],[76,1,1,5,6],[77,1,1,6,7],[78,1,1,7,8]]],[2,26,26,8,34,[[92,1,1,8,9],[96,1,1,9,10],[99,1,1,10,11],[105,3,3,11,14],[106,1,1,14,15],[107,5,5,15,20],[108,2,2,20,22],[109,3,3,22,25],[112,4,4,25,29],[113,1,1,29,30],[114,1,1,30,31],[115,3,3,31,34]]],[3,14,12,34,46,[[125,4,3,34,37],[126,1,1,37,38],[131,2,1,38,39],[134,1,1,39,40],[135,3,3,40,43],[143,1,1,43,44],[147,1,1,44,45],[151,1,1,45,46]]],[4,8,8,46,54,[[158,1,1,46,47],[160,1,1,47,48],[162,1,1,48,49],[163,1,1,49,50],[180,2,2,50,52],[182,2,2,52,54]]],[9,1,1,54,55,[[288,1,1,54,55]]],[10,8,8,55,63,[[292,1,1,55,56],[293,1,1,56,57],[296,1,1,57,58],[299,1,1,58,59],[301,4,4,59,63]]],[11,5,5,63,68,[[329,4,4,63,67],[335,1,1,67,68]]],[13,1,1,68,69,[[373,1,1,68,69]]],[17,1,1,69,70,[[473,1,1,69,70]]],[18,3,3,70,73,[[495,1,1,70,71],[566,1,1,71,72],[596,1,1,72,73]]],[23,6,6,73,79,[[749,1,1,73,74],[754,1,1,74,75],[775,1,1,75,76],[777,1,1,76,77],[788,2,2,77,79]]],[25,22,20,79,99,[[806,3,2,79,81],[812,1,1,81,82],[819,4,4,82,86],[821,6,6,86,92],[834,1,1,92,93],[838,1,1,93,94],[844,3,2,94,96],[845,2,2,96,98],[847,1,1,98,99]]],[32,1,1,99,100,[[898,1,1,99,100]]]],[697,1830,1833,1859,1877,2293,2336,2345,2795,2915,2986,3230,3232,3235,3242,3254,3255,3256,3277,3281,3300,3318,3326,3340,3341,3416,3423,3433,3443,3449,3487,3527,3539,3567,3968,3977,3979,3996,4168,4280,4291,4299,4310,4565,4685,4874,5088,5148,5199,5209,5626,5656,5718,5724,8625,8773,8819,8908,9057,9119,9141,9142,9146,9991,9996,10002,10017,10168,11343,13826,14140,15357,15914,19082,19204,19726,19800,20020,20033,20552,20553,20675,20858,20866,20868,20870,20906,20908,20911,20914,20916,20919,21295,21421,21583,21590,21604,21623,21669,22664]]],["+",[1,1,[[2,1,1,0,1,[[107,1,1,0,1]]]],[3281]]],["appointed",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19082]]],["customs",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19204]]],["manners",[1,1,[[2,1,1,0,1,[[109,1,1,0,1]]]],[3341]]],["ordinance",[12,10,[[1,4,4,0,4,[[61,3,3,0,3],[62,1,1,3,4]]],[3,7,5,4,9,[[125,2,1,4,5],[126,1,1,5,6],[131,2,1,6,7],[135,1,1,7,8],[147,1,1,8,9]]],[25,1,1,9,10,[[847,1,1,9,10]]]],[1830,1833,1859,1877,3979,3996,4168,4291,4685,21669]]],["ordinances",[10,9,[[2,2,2,0,2,[[107,2,2,0,2]]],[3,1,1,2,3,[[125,1,1,2,3]]],[17,1,1,3,4,[[473,1,1,3,4]]],[23,2,2,4,6,[[775,1,1,4,5],[777,1,1,5,6]]],[25,4,3,6,9,[[844,3,2,6,8],[845,1,1,8,9]]]],[3254,3255,3977,13826,19726,19800,21583,21590,21604]]],["rites",[1,1,[[3,1,1,0,1,[[125,1,1,0,1]]]],[3968]]],["statute",[20,20,[[1,3,3,0,3,[[76,1,1,0,1],[77,1,1,1,2],[78,1,1,2,3]]],[2,12,12,3,15,[[92,1,1,3,4],[96,1,1,4,5],[99,1,1,5,6],[105,3,3,6,9],[106,1,1,9,10],[112,4,4,10,14],[113,1,1,14,15]]],[3,5,5,15,20,[[134,1,1,15,16],[135,2,2,16,18],[143,1,1,18,19],[151,1,1,19,20]]]],[2293,2336,2345,2795,2915,2986,3230,3232,3235,3242,3416,3423,3433,3443,3449,4280,4299,4310,4565,4874]]],["statutes",[57,56,[[0,1,1,0,1,[[25,1,1,0,1]]],[2,10,10,1,11,[[107,2,2,1,3],[108,2,2,3,5],[109,2,2,5,7],[114,1,1,7,8],[115,3,3,8,11]]],[4,8,8,11,19,[[158,1,1,11,12],[160,1,1,12,13],[162,1,1,13,14],[163,1,1,14,15],[180,2,2,15,17],[182,2,2,17,19]]],[9,1,1,19,20,[[288,1,1,19,20]]],[10,8,8,20,28,[[292,1,1,20,21],[293,1,1,21,22],[296,1,1,22,23],[299,1,1,23,24],[301,4,4,24,28]]],[11,5,5,28,33,[[329,4,4,28,32],[335,1,1,32,33]]],[13,1,1,33,34,[[373,1,1,33,34]]],[18,3,3,34,37,[[495,1,1,34,35],[566,1,1,35,36],[596,1,1,36,37]]],[23,2,2,37,39,[[788,2,2,37,39]]],[25,17,16,39,55,[[806,3,2,39,41],[812,1,1,41,42],[819,4,4,42,46],[821,6,6,46,52],[834,1,1,52,53],[838,1,1,53,54],[845,1,1,54,55]]],[32,1,1,55,56,[[898,1,1,55,56]]]],[697,3256,3277,3300,3318,3326,3340,3487,3527,3539,3567,5088,5148,5199,5209,5626,5656,5718,5724,8625,8773,8819,8908,9057,9119,9141,9142,9146,9991,9996,10002,10017,10168,11343,14140,15357,15914,20020,20033,20552,20553,20675,20858,20866,20868,20870,20906,20908,20911,20914,20916,20919,21295,21421,21623,22664]]]]},{"k":"H2709","v":[["Hakupha",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12078,12473]]]]},{"k":"H2710","v":[["*",[19,19,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[6,2,2,3,5,[[215,2,2,3,5]]],[17,1,1,5,6,[[454,1,1,5,6]]],[18,2,2,6,8,[[537,1,1,6,7],[585,1,1,7,8]]],[19,4,4,8,12,[[635,3,3,8,11],[658,1,1,11,12]]],[22,5,5,12,17,[[688,1,1,12,13],[700,1,1,13,14],[708,1,1,14,15],[711,1,1,15,16],[727,1,1,16,17]]],[25,2,2,17,19,[[805,1,1,17,18],[824,1,1,18,19]]]],[1483,4358,5831,6632,6637,13320,14814,15750,16617,16629,16631,17289,17851,18068,18225,18301,18652,20530,21021]]],["appointed",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16631]]],["decree",[2,2,[[19,1,1,0,1,[[635,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[16617,17851]]],["governors",[2,2,[[6,2,2,0,2,[[215,2,2,0,2]]]],[6632,6637]]],["graven",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18652]]],["graveth",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18068]]],["law",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17289]]],["lawgiver",[6,6,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[18,2,2,3,5,[[537,1,1,3,4],[585,1,1,4,5]]],[22,1,1,5,6,[[711,1,1,5,6]]]],[1483,4358,5831,14814,15750,18301]]],["note",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18225]]],["pourtray",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20530]]],["pourtrayed",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21021]]],["printed",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13320]]],["set",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16629]]]]},{"k":"H2711","v":[["*",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[6638,17851]]],["decrees",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17851]]],["thoughts",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6638]]]]},{"k":"H2712","v":[["*",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]]],[6355,10529]]],["Hukkok",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6355]]],["Hukok",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10529]]]]},{"k":"H2713","v":[["*",[27,26,[[4,1,1,0,1,[[165,1,1,0,1]]],[6,2,1,1,2,[[228,2,1,1,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[9,1,1,3,4,[[276,1,1,3,4]]],[10,1,1,4,5,[[297,1,1,4,5]]],[12,1,1,5,6,[[356,1,1,5,6]]],[13,1,1,6,7,[[370,1,1,6,7]]],[17,6,6,7,13,[[440,1,1,7,8],[448,1,1,8,9],[463,2,2,9,11],[464,1,1,11,12],[467,1,1,12,13]]],[18,3,3,13,16,[[521,1,1,13,14],[616,2,2,14,16]]],[19,4,4,16,20,[[645,1,1,16,17],[650,1,1,17,18],[652,1,1,18,19],[655,1,1,19,20]]],[20,1,1,20,21,[[670,1,1,20,21]]],[23,3,3,21,24,[[761,1,1,21,22],[775,1,1,22,23],[790,1,1,23,24]]],[24,1,1,24,25,[[799,1,1,24,25]]],[25,1,1,25,26,[[840,1,1,25,26]]]],[5286,6995,7742,8243,8981,10910,11264,12978,13162,13507,13531,13548,13639,14592,16240,16262,16918,17074,17115,17207,17532,19367,19728,20068,20394,21462]]],["+",[5,5,[[6,1,1,0,1,[[228,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[9,1,1,2,3,[[276,1,1,2,3]]],[17,2,2,3,5,[[448,1,1,3,4],[463,1,1,4,5]]]],[6995,7742,8243,13162,13507]]],["Search",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16262]]],["out",[9,9,[[10,1,1,0,1,[[297,1,1,0,1]]],[13,1,1,1,2,[[370,1,1,1,2]]],[17,3,3,2,5,[[463,1,1,2,3],[464,1,1,3,4],[467,1,1,4,5]]],[19,2,2,5,7,[[652,1,1,5,6],[655,1,1,6,7]]],[20,1,1,7,8,[[670,1,1,7,8]]],[23,1,1,8,9,[[775,1,1,8,9]]]],[8981,11264,13531,13548,13639,17115,17207,17532,19728]]],["search",[6,6,[[4,1,1,0,1,[[165,1,1,0,1]]],[6,1,1,1,2,[[228,1,1,1,2]]],[12,1,1,2,3,[[356,1,1,2,3]]],[18,1,1,3,4,[[521,1,1,3,4]]],[23,1,1,4,5,[[761,1,1,4,5]]],[25,1,1,5,6,[[840,1,1,5,6]]]],[5286,6995,10910,14592,19367,21462]]],["searched",[3,3,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]],[23,1,1,2,3,[[790,1,1,2,3]]]],[12978,16240,20068]]],["searcheth",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16918]]],["seek",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17074]]],["try",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20394]]]]},{"k":"H2714","v":[["*",[12,12,[[6,1,1,0,1,[[215,1,1,0,1]]],[17,7,7,1,8,[[440,1,1,1,2],[443,1,1,2,3],[444,1,1,3,4],[446,1,1,4,5],[469,1,1,5,6],[471,1,1,6,7],[473,1,1,7,8]]],[18,1,1,8,9,[[622,1,1,8,9]]],[19,2,2,9,11,[[652,2,2,9,11]]],[22,1,1,11,12,[[718,1,1,11,12]]]],[6639,12960,13037,13061,13115,13707,13762,13809,16323,17116,17140,18448]]],["+",[3,3,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,1,1,1,2,[[622,1,1,1,2]]],[19,1,1,2,3,[[652,1,1,2,3]]]],[12960,16323,17116]]],["number",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13707]]],["out",[2,2,[[17,2,2,0,2,[[444,1,1,0,1],[471,1,1,1,2]]]],[13061,13762]]],["search",[3,3,[[17,2,2,0,2,[[443,1,1,0,1],[473,1,1,1,2]]],[19,1,1,2,3,[[652,1,1,2,3]]]],[13037,13809,17140]]],["searching",[2,2,[[17,1,1,0,1,[[446,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[13115,18448]]],["searchings",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6639]]]]},{"k":"H2715","v":[["nobles",[13,13,[[10,2,2,0,2,[[311,2,2,0,2]]],[15,7,7,2,9,[[414,1,1,2,3],[416,2,2,3,5],[417,1,1,5,6],[418,1,1,6,7],[419,1,1,7,8],[425,1,1,8,9]]],[20,1,1,9,10,[[668,1,1,9,10]]],[22,1,1,10,11,[[712,1,1,10,11]]],[23,2,2,11,13,[[771,1,1,11,12],[783,1,1,12,13]]]],[9459,9462,12323,12373,12378,12389,12418,12425,12688,17510,18315,19616,19929]]]]},{"k":"H2716","v":[["dung",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]]],[10051,18342]]]]},{"k":"H2717","v":[["*",[40,36,[[0,2,1,0,1,[[7,2,1,0,1]]],[6,3,3,1,4,[[226,3,3,1,4]]],[11,4,3,4,7,[[315,2,1,4,5],[331,2,2,5,7]]],[17,1,1,7,8,[[449,1,1,7,8]]],[18,1,1,8,9,[[583,1,1,8,9]]],[22,12,11,9,20,[[697,2,2,9,11],[712,1,1,11,12],[715,2,2,12,14],[720,1,1,14,15],[722,1,1,15,16],[727,1,1,16,17],[728,1,1,17,18],[729,1,1,18,19],[738,2,1,19,20]]],[23,5,5,20,25,[[746,1,1,20,21],[770,1,1,21,22],[794,2,2,22,24],[795,1,1,24,25]]],[25,8,7,25,32,[[807,2,1,25,26],[813,1,1,26,27],[820,1,1,27,28],[827,2,2,28,30],[830,1,1,30,31],[831,1,1,31,32]]],[27,1,1,32,33,[[874,1,1,32,33]]],[29,1,1,33,34,[[885,1,1,33,34]]],[33,1,1,34,35,[[900,1,1,34,35]]],[35,1,1,35,36,[[908,1,1,35,36]]]],[196,6956,6957,6973,9599,10078,10085,13192,15660,18009,18010,18313,18370,18377,18495,18560,18653,18664,18683,18833,18977,19581,20187,20193,20248,20569,20700,20888,21102,21119,21195,21211,22281,22473,22688,22826]]],["+",[7,5,[[11,2,1,0,1,[[315,2,1,0,1]]],[22,3,2,1,3,[[715,1,1,1,2],[738,2,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]],[35,1,1,4,5,[[908,1,1,4,5]]]],[9599,18370,18833,20248,22826]]],["Slay",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20193]]],["decayeth",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13192]]],["desolate",[3,3,[[23,2,2,0,2,[[746,1,1,0,1],[770,1,1,1,2]]],[25,1,1,2,3,[[827,1,1,2,3]]]],[18977,19581,21119]]],["destroyed",[1,1,[[11,1,1,0,1,[[331,1,1,0,1]]]],[10078]]],["destroyer",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6973]]],["dried",[3,3,[[6,2,2,0,2,[[226,2,2,0,2]]],[22,1,1,2,3,[[729,1,1,2,3]]]],[6956,6957,18683]]],["dry",[2,2,[[0,1,1,0,1,[[7,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[196,18560]]],["up",[8,8,[[0,1,1,0,1,[[7,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[18,1,1,2,3,[[583,1,1,2,3]]],[22,3,3,3,6,[[697,1,1,3,4],[715,1,1,4,5],[728,1,1,5,6]]],[27,1,1,6,7,[[874,1,1,6,7]]],[33,1,1,7,8,[[900,1,1,7,8]]]],[196,10085,15660,18010,18377,18664,22281,22688]]],["waste",[11,10,[[22,3,3,0,3,[[712,1,1,0,1],[720,1,1,1,2],[727,1,1,2,3]]],[23,1,1,3,4,[[794,1,1,3,4]]],[25,6,5,4,9,[[807,2,1,4,5],[813,1,1,5,6],[820,1,1,6,7],[827,1,1,7,8],[830,1,1,8,9]]],[29,1,1,9,10,[[885,1,1,9,10]]]],[18313,18495,18653,20187,20569,20700,20888,21102,21195,22473]]],["wasted",[2,2,[[22,1,1,0,1,[[697,1,1,0,1]]],[25,1,1,1,2,[[831,1,1,1,2]]]],[18009,21211]]]]},{"k":"H2718","v":[["destroyed",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12125]]]]},{"k":"H2719","v":[["*",[413,372,[[0,6,6,0,6,[[2,1,1,0,1],[26,1,1,1,2],[30,1,1,2,3],[33,2,2,3,5],[47,1,1,5,6]]],[1,8,8,6,14,[[54,2,2,6,8],[64,1,1,8,9],[66,1,1,9,10],[67,1,1,10,11],[69,1,1,11,12],[71,1,1,12,13],[81,1,1,13,14]]],[2,7,7,14,21,[[115,7,7,14,21]]],[3,9,9,21,30,[[130,2,2,21,23],[135,1,1,23,24],[136,1,1,24,25],[137,1,1,25,26],[138,3,3,26,29],[147,1,1,29,30]]],[4,8,7,30,37,[[165,2,1,30,31],[172,1,1,31,32],[180,1,1,32,33],[184,3,3,33,36],[185,1,1,36,37]]],[5,20,19,37,56,[[191,3,3,37,40],[192,1,1,40,41],[194,2,1,41,42],[196,7,7,42,49],[197,4,4,49,53],[199,1,1,53,54],[205,1,1,54,55],[210,1,1,55,56]]],[6,23,23,56,79,[[211,2,2,56,58],[213,3,3,58,61],[214,2,2,61,63],[217,3,3,63,66],[218,2,2,66,68],[219,1,1,68,69],[228,1,1,69,70],[230,8,8,70,78],[231,1,1,78,79]]],[8,24,19,79,98,[[248,2,2,79,81],[249,1,1,81,82],[250,2,2,82,84],[252,5,5,84,89],[253,1,1,89,90],[256,3,2,90,92],[257,4,3,92,95],[260,3,1,95,96],[266,3,2,96,98]]],[9,15,14,98,112,[[267,2,2,98,100],[268,2,2,100,102],[269,1,1,102,103],[277,1,1,103,104],[278,3,2,104,106],[281,1,1,106,107],[284,1,1,107,108],[286,2,2,108,110],[289,1,1,110,111],[290,1,1,111,112]]],[10,11,9,112,121,[[291,1,1,112,113],[292,2,2,113,115],[293,2,1,115,116],[308,1,1,116,117],[309,5,4,117,121]]],[11,8,8,121,129,[[315,1,1,121,122],[318,1,1,122,123],[320,1,1,123,124],[322,1,1,124,125],[323,2,2,125,127],[331,2,2,127,129]]],[12,11,8,129,137,[[342,1,1,129,130],[347,3,2,130,132],[358,7,5,132,137]]],[13,9,9,137,146,[[386,1,1,137,138],[387,1,1,138,139],[389,2,2,139,141],[395,1,1,141,142],[398,1,1,142,143],[400,1,1,143,144],[402,2,2,144,146]]],[14,1,1,146,147,[[411,1,1,146,147]]],[15,2,2,147,149,[[416,2,2,147,149]]],[16,1,1,149,150,[[434,1,1,149,150]]],[17,11,10,150,160,[[436,2,2,150,152],[440,2,2,152,154],[450,1,1,154,155],[454,2,1,155,156],[462,1,1,156,157],[474,1,1,157,158],[475,1,1,158,159],[476,1,1,159,160]]],[18,18,18,160,178,[[484,1,1,160,161],[494,1,1,161,162],[499,1,1,162,163],[514,2,2,163,165],[521,2,2,165,167],[522,1,1,167,168],[534,1,1,168,169],[536,1,1,169,170],[540,1,1,170,171],[541,1,1,171,172],[553,1,1,172,173],[555,2,2,173,175],[566,1,1,175,176],[621,1,1,176,177],[626,1,1,177,178]]],[19,4,4,178,182,[[632,1,1,178,179],[639,1,1,179,180],[652,1,1,180,181],[657,1,1,181,182]]],[21,2,1,182,183,[[673,2,1,182,183]]],[22,22,18,183,201,[[679,1,1,183,184],[680,2,1,184,185],[681,1,1,185,186],[691,1,1,186,187],[692,1,1,187,188],[699,2,1,188,189],[700,1,1,189,190],[705,1,1,190,191],[709,3,1,191,192],[712,2,2,192,194],[715,2,2,194,196],[719,1,1,196,197],[727,1,1,197,198],[729,1,1,198,199],[743,1,1,199,200],[744,1,1,200,201]]],[23,71,62,201,263,[[746,1,1,201,202],[748,1,1,202,203],[749,2,2,203,205],[750,1,1,205,206],[753,1,1,206,207],[755,1,1,207,208],[756,1,1,208,209],[758,6,5,209,214],[759,4,3,214,217],[760,1,1,217,218],[762,2,1,218,219],[763,1,1,219,220],[764,2,1,220,221],[765,3,2,221,223],[768,1,1,223,224],[769,4,4,224,228],[770,1,1,228,229],[771,2,2,229,231],[773,2,2,231,233],[775,1,1,233,234],[776,2,2,234,236],[777,1,1,236,237],[778,2,2,237,239],[782,1,1,239,240],[783,1,1,240,241],[785,1,1,241,242],[786,3,3,242,245],[787,2,1,245,246],[788,6,5,246,251],[790,3,3,251,254],[791,1,1,254,255],[792,2,2,255,257],[793,1,1,257,258],[794,6,4,258,262],[795,1,1,262,263]]],[24,4,4,263,267,[[797,1,1,263,264],[798,1,1,264,265],[800,1,1,265,266],[801,1,1,266,267]]],[25,91,79,267,346,[[806,6,4,267,271],[807,4,4,271,275],[808,2,1,275,276],[812,3,2,276,278],[813,2,2,278,280],[815,3,2,280,282],[817,1,1,282,283],[818,1,1,283,284],[822,15,11,284,295],[824,3,3,295,298],[825,1,1,298,299],[826,1,1,299,300],[827,4,4,300,304],[829,2,2,304,306],[830,1,1,306,307],[831,9,9,307,316],[832,2,2,316,318],[833,17,16,318,334],[834,7,6,334,340],[836,2,2,340,342],[839,4,3,342,345],[840,1,1,345,346]]],[26,1,1,346,347,[[860,1,1,346,347]]],[27,5,5,347,352,[[862,1,1,347,348],[863,1,1,348,349],[868,1,1,349,350],[872,1,1,350,351],[874,1,1,351,352]]],[28,1,1,352,353,[[878,1,1,352,353]]],[29,8,8,353,361,[[879,1,1,353,354],[882,1,1,354,355],[885,3,3,355,358],[887,3,3,358,361]]],[32,4,3,361,364,[[896,2,1,361,362],[897,1,1,362,363],[898,1,1,363,364]]],[33,3,3,364,367,[[901,1,1,364,365],[902,2,2,365,367]]],[35,1,1,367,368,[[907,1,1,367,368]]],[36,1,1,368,369,[[910,1,1,368,369]]],[37,3,3,369,372,[[919,1,1,369,370],[921,1,1,370,371],[923,1,1,371,372]]]],[79,767,899,1005,1006,1473,1635,1653,1929,1996,2003,2076,2137,2465,3530,3531,3532,3549,3557,3560,3561,4111,4151,4305,4329,4364,4398,4404,4406,4672,5287,5440,5633,5783,5799,5800,5839,5936,5937,5947,5970,6026,6075,6092,6094,6096,6099,6101,6103,6117,6118,6119,6121,6176,6368,6488,6517,6534,6584,6589,6590,6614,6615,6708,6714,6716,6729,6739,6808,7020,7056,7069,7071,7079,7089,7091,7100,7102,7112,7504,7507,7528,7568,7593,7657,7663,7665,7668,7669,7680,7780,7781,7797,7800,7806,7874,8013,8014,8034,8044,8065,8075,8110,8284,8295,8296,8403,8486,8562,8564,8663,8701,8768,8778,8802,8840,9369,9388,9397,9401,9404,9602,9696,9739,9818,9844,9849,10068,10098,10446,10663,10664,10939,10946,10950,10961,10964,11596,11628,11670,11677,11800,11896,11939,12010,12013,12244,12372,12377,12839,12884,12886,12966,12971,13225,13326,13495,13856,13883,13914,14007,14116,14224,14464,14465,14574,14577,14600,14772,14797,14849,14853,15084,15175,15177,15369,16315,16391,16521,16737,17131,17265,17579,17674,17689,17732,17921,17947,18050,18054,18152,18258,18308,18309,18359,18390,18453,18638,18692,18909,18938,18995,19037,19070,19075,19114,19191,19248,19261,19305,19306,19308,19309,19311,19317,19318,19324,19340,19405,19414,19426,19447,19449,19534,19550,19561,19563,19565,19595,19604,19609,19652,19653,19693,19755,19767,19779,19805,19818,19897,19941,19959,19991,19992,19997,20008,20022,20023,20028,20037,20038,20055,20059,20061,20079,20082,20090,20164,20182,20201,20202,20203,20262,20330,20353,20429,20451,20547,20548,20558,20563,20566,20571,20574,20575,20592,20663,20665,20694,20696,20748,20752,20802,20846,20947,20948,20949,20953,20955,20956,20958,20959,20963,20964,20972,21017,21032,21054,21077,21096,21106,21108,21109,21111,21164,21180,21191,21208,21209,21210,21215,21221,21225,21226,21228,21229,21247,21248,21258,21259,21260,21268,21269,21270,21271,21272,21273,21274,21275,21276,21277,21278,21279,21280,21282,21283,21284,21286,21306,21307,21349,21352,21429,21433,21446,21471,22069,22101,22123,22194,22246,22282,22353,22375,22420,22473,22475,22481,22496,22499,22505,22623,22639,22662,22712,22715,22727,22817,22877,23012,23045,23066]]],["+",[13,12,[[1,1,1,0,1,[[67,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[10,2,1,2,3,[[309,2,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[17,1,1,4,5,[[440,1,1,4,5]]],[18,2,2,5,7,[[499,1,1,5,6],[621,1,1,6,7]]],[23,3,3,7,10,[[768,1,1,7,8],[773,1,1,8,9],[795,1,1,9,10]]],[25,2,2,10,12,[[813,1,1,10,11],[839,1,1,11,12]]]],[2003,7100,9404,10961,12966,14224,16315,19534,19652,20262,20696,21433]]],["Sword",[2,2,[[23,1,1,0,1,[[758,1,1,0,1]]],[25,1,1,1,2,[[815,1,1,1,2]]]],[19308,20748]]],["axes",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21109]]],["dagger",[3,3,[[6,3,3,0,3,[[213,3,3,0,3]]]],[6584,6589,6590]]],["knife",[2,2,[[25,2,2,0,2,[[806,2,2,0,2]]]],[20547,20548]]],["knives",[3,3,[[5,2,2,0,2,[[191,2,2,0,2]]],[10,1,1,2,3,[[308,1,1,2,3]]]],[5936,5937,9369]]],["mattocks",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11939]]],["sword",[370,337,[[0,6,6,0,6,[[2,1,1,0,1],[26,1,1,1,2],[30,1,1,2,3],[33,2,2,3,5],[47,1,1,5,6]]],[1,6,6,6,12,[[54,2,2,6,8],[64,1,1,8,9],[66,1,1,9,10],[71,1,1,10,11],[81,1,1,11,12]]],[2,7,7,12,19,[[115,7,7,12,19]]],[3,9,9,19,28,[[130,2,2,19,21],[135,1,1,21,22],[136,1,1,22,23],[137,1,1,23,24],[138,3,3,24,27],[147,1,1,27,28]]],[4,8,7,28,35,[[165,2,1,28,29],[172,1,1,29,30],[180,1,1,30,31],[184,3,3,31,34],[185,1,1,34,35]]],[5,18,17,35,52,[[191,1,1,35,36],[192,1,1,36,37],[194,2,1,37,38],[196,7,7,38,45],[197,4,4,45,49],[199,1,1,49,50],[205,1,1,50,51],[210,1,1,51,52]]],[6,19,19,52,71,[[211,2,2,52,54],[214,2,2,54,56],[217,3,3,56,59],[218,2,2,59,61],[219,1,1,61,62],[228,1,1,62,63],[230,7,7,63,70],[231,1,1,70,71]]],[8,23,18,71,89,[[248,1,1,71,72],[249,1,1,72,73],[250,2,2,73,75],[252,5,5,75,80],[253,1,1,80,81],[256,3,2,81,83],[257,4,3,83,86],[260,3,1,86,87],[266,3,2,87,89]]],[9,15,14,89,103,[[267,2,2,89,91],[268,2,2,91,93],[269,1,1,93,94],[277,1,1,94,95],[278,3,2,95,97],[281,1,1,97,98],[284,1,1,98,99],[286,2,2,99,101],[289,1,1,101,102],[290,1,1,102,103]]],[10,8,7,103,110,[[291,1,1,103,104],[292,2,2,104,106],[293,2,1,106,107],[309,3,3,107,110]]],[11,7,7,110,117,[[318,1,1,110,111],[320,1,1,111,112],[322,1,1,112,113],[323,2,2,113,115],[331,2,2,115,117]]],[12,10,7,117,124,[[342,1,1,117,118],[347,3,2,118,120],[358,6,4,120,124]]],[13,8,8,124,132,[[386,1,1,124,125],[387,1,1,125,126],[389,2,2,126,128],[395,1,1,128,129],[398,1,1,129,130],[402,2,2,130,132]]],[14,1,1,132,133,[[411,1,1,132,133]]],[15,1,1,133,134,[[416,1,1,133,134]]],[16,1,1,134,135,[[434,1,1,134,135]]],[17,10,9,135,144,[[436,2,2,135,137],[440,1,1,137,138],[450,1,1,138,139],[454,2,1,139,140],[462,1,1,140,141],[474,1,1,141,142],[475,1,1,142,143],[476,1,1,143,144]]],[18,15,15,144,159,[[484,1,1,144,145],[494,1,1,145,146],[514,2,2,146,148],[521,2,2,148,150],[522,1,1,150,151],[534,1,1,151,152],[540,1,1,152,153],[541,1,1,153,154],[553,1,1,154,155],[555,2,2,155,157],[566,1,1,157,158],[626,1,1,158,159]]],[19,3,3,159,162,[[632,1,1,159,160],[639,1,1,160,161],[652,1,1,161,162]]],[21,1,1,162,163,[[673,1,1,162,163]]],[22,20,18,163,181,[[679,1,1,163,164],[680,1,1,164,165],[681,1,1,165,166],[691,1,1,166,167],[692,1,1,167,168],[699,1,1,168,169],[700,1,1,169,170],[705,1,1,170,171],[709,3,1,171,172],[712,2,2,172,174],[715,2,2,174,176],[719,1,1,176,177],[727,1,1,177,178],[729,1,1,178,179],[743,1,1,179,180],[744,1,1,180,181]]],[23,67,59,181,240,[[746,1,1,181,182],[748,1,1,182,183],[749,2,2,183,185],[750,1,1,185,186],[753,1,1,186,187],[755,1,1,187,188],[756,1,1,188,189],[758,5,5,189,194],[759,4,3,194,197],[760,1,1,197,198],[762,2,1,198,199],[763,1,1,199,200],[764,2,1,200,201],[765,3,2,201,203],[769,4,4,203,207],[770,1,1,207,208],[771,2,2,208,210],[773,1,1,210,211],[775,1,1,211,212],[776,2,2,212,214],[777,1,1,214,215],[778,2,2,215,217],[782,1,1,217,218],[783,1,1,218,219],[785,1,1,219,220],[786,3,3,220,223],[787,2,1,223,224],[788,6,5,224,229],[790,3,3,229,232],[791,1,1,232,233],[792,2,2,233,235],[793,1,1,235,236],[794,6,4,236,240]]],[24,4,4,240,244,[[797,1,1,240,241],[798,1,1,241,242],[800,1,1,242,243],[801,1,1,243,244]]],[25,78,68,244,312,[[806,4,3,244,247],[807,4,4,247,251],[808,2,1,251,252],[812,3,2,252,254],[813,1,1,254,255],[815,2,2,255,257],[818,1,1,257,258],[822,15,11,258,269],[824,2,2,269,271],[825,1,1,271,272],[826,1,1,272,273],[827,3,3,273,276],[829,1,1,276,277],[830,1,1,277,278],[831,8,8,278,286],[832,2,2,286,288],[833,15,14,288,302],[834,7,6,302,308],[836,2,2,308,310],[839,2,1,310,311],[840,1,1,311,312]]],[26,1,1,312,313,[[860,1,1,312,313]]],[27,5,5,313,318,[[862,1,1,313,314],[863,1,1,314,315],[868,1,1,315,316],[872,1,1,316,317],[874,1,1,317,318]]],[29,8,8,318,326,[[879,1,1,318,319],[882,1,1,319,320],[885,3,3,320,323],[887,3,3,323,326]]],[32,3,3,326,329,[[896,1,1,326,327],[897,1,1,327,328],[898,1,1,328,329]]],[33,3,3,329,332,[[901,1,1,329,330],[902,2,2,330,332]]],[35,1,1,332,333,[[907,1,1,332,333]]],[36,1,1,333,334,[[910,1,1,333,334]]],[37,3,3,334,337,[[919,1,1,334,335],[921,1,1,335,336],[923,1,1,336,337]]]],[79,767,899,1005,1006,1473,1635,1653,1929,1996,2137,2465,3530,3531,3532,3549,3557,3560,3561,4111,4151,4305,4329,4364,4398,4404,4406,4672,5287,5440,5633,5783,5799,5800,5839,5947,5970,6026,6075,6092,6094,6096,6099,6101,6103,6117,6118,6119,6121,6176,6368,6488,6517,6534,6614,6615,6708,6714,6716,6729,6739,6808,7020,7056,7069,7071,7079,7089,7091,7102,7112,7507,7528,7568,7593,7657,7663,7665,7668,7669,7680,7780,7781,7797,7800,7806,7874,8013,8014,8034,8044,8065,8075,8110,8284,8295,8296,8403,8486,8562,8564,8663,8701,8768,8778,8802,8840,9388,9397,9401,9696,9739,9818,9844,9849,10068,10098,10446,10663,10664,10939,10946,10950,10964,11596,11628,11670,11677,11800,11896,12010,12013,12244,12377,12839,12884,12886,12971,13225,13326,13495,13856,13883,13914,14007,14116,14464,14465,14574,14577,14600,14772,14849,14853,15084,15175,15177,15369,16391,16521,16737,17131,17579,17674,17689,17732,17921,17947,18050,18054,18152,18258,18308,18309,18359,18390,18453,18638,18692,18909,18938,18995,19037,19070,19075,19114,19191,19248,19261,19305,19306,19308,19309,19311,19317,19318,19324,19340,19405,19414,19426,19447,19449,19550,19561,19563,19565,19595,19604,19609,19653,19693,19755,19767,19779,19805,19818,19897,19941,19959,19991,19992,19997,20008,20022,20023,20028,20037,20038,20055,20059,20061,20079,20082,20090,20164,20182,20201,20202,20203,20330,20353,20429,20451,20548,20558,20563,20566,20571,20574,20575,20592,20663,20665,20694,20748,20752,20846,20947,20948,20949,20953,20955,20956,20958,20959,20963,20964,20972,21017,21032,21077,21096,21106,21108,21111,21180,21191,21208,21209,21210,21221,21225,21226,21228,21229,21247,21248,21258,21259,21268,21269,21270,21271,21272,21273,21274,21276,21277,21278,21279,21280,21282,21283,21284,21286,21306,21307,21349,21352,21446,21471,22069,22101,22123,22194,22246,22282,22375,22420,22473,22475,22481,22496,22499,22505,22623,22639,22662,22712,22715,22727,22817,22877,23012,23045,23066]]],["swords",[17,17,[[8,1,1,0,1,[[248,1,1,0,1]]],[11,1,1,1,2,[[315,1,1,1,2]]],[15,1,1,2,3,[[416,1,1,2,3]]],[18,1,1,3,4,[[536,1,1,3,4]]],[19,1,1,4,5,[[657,1,1,4,5]]],[21,1,1,5,6,[[673,1,1,5,6]]],[22,2,2,6,8,[[680,1,1,6,7],[699,1,1,7,8]]],[25,7,7,8,15,[[817,1,1,8,9],[824,1,1,9,10],[829,1,1,10,11],[831,1,1,11,12],[833,2,2,12,14],[839,1,1,14,15]]],[28,1,1,15,16,[[878,1,1,15,16]]],[32,1,1,16,17,[[896,1,1,16,17]]]],[7504,9602,12372,14797,17265,17579,17689,18050,20802,21054,21164,21215,21260,21275,21429,22353,22623]]],["tool",[1,1,[[1,1,1,0,1,[[69,1,1,0,1]]]],[2076]]]]},{"k":"H2720","v":[["*",[10,10,[[2,1,1,0,1,[[96,1,1,0,1]]],[15,2,2,1,3,[[414,2,2,1,3]]],[19,1,1,3,4,[[644,1,1,3,4]]],[23,2,2,4,6,[[777,2,2,4,6]]],[25,2,2,6,8,[[837,2,2,6,8]]],[36,2,2,8,10,[[909,2,2,8,10]]]],[2889,12310,12324,16874,19785,19787,21394,21397,22844,22849]]],["desolate",[2,2,[[23,2,2,0,2,[[777,2,2,0,2]]]],[19785,19787]]],["dry",[2,2,[[2,1,1,0,1,[[96,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]]],[2889,16874]]],["waste",[6,6,[[15,2,2,0,2,[[414,2,2,0,2]]],[25,2,2,2,4,[[837,2,2,2,4]]],[36,2,2,4,6,[[909,2,2,4,6]]]],[12310,12324,21394,21397,22844,22849]]]]},{"k":"H2721","v":[["*",[16,15,[[0,1,1,0,1,[[30,1,1,0,1]]],[6,3,3,1,4,[[216,3,3,1,4]]],[17,1,1,4,5,[[465,1,1,4,5]]],[22,5,4,5,9,[[682,1,1,5,6],[703,3,2,6,8],[739,1,1,8,9]]],[23,3,3,9,12,[[780,1,1,9,10],[793,1,1,10,11],[794,1,1,11,12]]],[25,1,1,12,13,[[830,1,1,12,13]]],[35,1,1,13,14,[[907,1,1,13,14]]],[36,1,1,14,15,[[909,1,1,14,15]]]],[913,6691,6693,6694,13587,17739,18122,18123,18847,19872,20140,20204,21193,22819,22851]]],["+",[3,3,[[22,2,2,0,2,[[682,1,1,0,1],[703,1,1,1,2]]],[25,1,1,2,3,[[830,1,1,2,3]]]],[17739,18122,21193]]],["desolation",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22819]]],["drought",[3,3,[[0,1,1,0,1,[[30,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]],[36,1,1,2,3,[[909,1,1,2,3]]]],[913,20204,22851]]],["dry",[3,3,[[6,3,3,0,3,[[216,3,3,0,3]]]],[6691,6693,6694]]],["heat",[4,3,[[17,1,1,0,1,[[465,1,1,0,1]]],[22,2,1,1,2,[[703,2,1,1,2]]],[23,1,1,2,3,[[780,1,1,2,3]]]],[13587,18123,19872]]],["waste",[2,2,[[22,1,1,0,1,[[739,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]]],[18847,20140]]]]},{"k":"H2722","v":[["*",[17,17,[[1,3,3,0,3,[[52,1,1,0,1],[66,1,1,1,2],[82,1,1,2,3]]],[4,9,9,3,12,[[153,3,3,3,6],[156,2,2,6,8],[157,1,1,8,9],[161,1,1,9,10],[170,1,1,10,11],[181,1,1,11,12]]],[10,2,2,12,14,[[298,1,1,12,13],[309,1,1,13,14]]],[13,1,1,14,15,[[371,1,1,14,15]]],[18,1,1,15,16,[[583,1,1,15,16]]],[38,1,1,16,17,[[928,1,1,16,17]]]],[1580,1989,2479,4894,4898,4911,5014,5019,5055,5165,5400,5680,8994,9395,11278,15670,23142]]],["+",[2,2,[[4,2,2,0,2,[[153,2,2,0,2]]]],[4894,4911]]],["Horeb",[15,15,[[1,3,3,0,3,[[52,1,1,0,1],[66,1,1,1,2],[82,1,1,2,3]]],[4,7,7,3,10,[[153,1,1,3,4],[156,2,2,4,6],[157,1,1,6,7],[161,1,1,7,8],[170,1,1,8,9],[181,1,1,9,10]]],[10,2,2,10,12,[[298,1,1,10,11],[309,1,1,11,12]]],[13,1,1,12,13,[[371,1,1,12,13]]],[18,1,1,13,14,[[583,1,1,13,14]]],[38,1,1,14,15,[[928,1,1,14,15]]]],[1580,1989,2479,4898,5014,5019,5055,5165,5400,5680,8994,9395,11278,15670,23142]]]]},{"k":"H2723","v":[["*",[42,42,[[2,2,2,0,2,[[115,2,2,0,2]]],[14,1,1,2,3,[[411,1,1,2,3]]],[17,1,1,3,4,[[438,1,1,3,4]]],[18,3,3,4,7,[[486,1,1,4,5],[579,1,1,5,6],[586,1,1,6,7]]],[22,9,9,7,16,[[683,1,1,7,8],[722,1,1,8,9],[726,1,1,9,10],[727,1,1,10,11],[729,1,1,11,12],[730,1,1,12,13],[736,1,1,13,14],[739,1,1,14,15],[742,1,1,15,16]]],[23,10,10,16,26,[[751,1,1,16,17],[766,1,1,17,18],[769,3,3,18,21],[771,1,1,21,22],[788,3,3,22,25],[793,1,1,25,26]]],[25,14,14,26,40,[[806,1,1,26,27],[814,1,1,27,28],[826,1,1,28,29],[827,1,1,29,30],[830,2,2,30,32],[834,2,2,32,34],[836,1,1,34,35],[837,3,3,35,38],[839,2,2,38,40]]],[26,1,1,40,41,[[858,1,1,40,41]]],[38,1,1,41,42,[[925,1,1,41,42]]]],[3555,3557,12246,12918,14027,15527,15765,17756,18559,18635,18655,18676,18705,18798,18847,18896,19153,19459,19543,19545,19552,19613,20012,20016,20032,20140,20560,20712,21096,21120,21192,21193,21304,21307,21348,21363,21369,21392,21433,21437,21990,23093]]],["+",[2,2,[[18,1,1,0,1,[[586,1,1,0,1]]],[25,1,1,1,2,[[830,1,1,1,2]]]],[15765,21193]]],["desert",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15527]]],["deserts",[2,2,[[22,1,1,0,1,[[726,1,1,0,1]]],[25,1,1,1,2,[[814,1,1,1,2]]]],[18635,20712]]],["desolate",[3,3,[[23,1,1,0,1,[[751,1,1,0,1]]],[25,2,2,1,3,[[826,1,1,1,2],[827,1,1,2,3]]]],[19153,21096,21120]]],["desolation",[5,5,[[23,5,5,0,5,[[766,1,1,0,1],[769,2,2,1,3],[788,2,2,3,5]]]],[19459,19545,19552,20012,20032]]],["desolations",[3,3,[[14,1,1,0,1,[[411,1,1,0,1]]],[23,1,1,1,2,[[769,1,1,1,2]]],[26,1,1,2,3,[[858,1,1,2,3]]]],[12246,19543,21990]]],["destructions",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14027]]],["places",[8,8,[[17,1,1,0,1,[[438,1,1,0,1]]],[22,5,5,1,6,[[683,1,1,1,2],[722,1,1,2,3],[729,1,1,3,4],[730,1,1,4,5],[736,1,1,5,6]]],[25,1,1,6,7,[[839,1,1,6,7]]],[38,1,1,7,8,[[925,1,1,7,8]]]],[12918,17756,18559,18676,18705,18798,21437,23093]]],["waste",[9,9,[[2,2,2,0,2,[[115,2,2,0,2]]],[22,2,2,2,4,[[727,1,1,2,3],[742,1,1,3,4]]],[23,1,1,4,5,[[771,1,1,4,5]]],[25,4,4,5,9,[[806,1,1,5,6],[830,1,1,6,7],[836,1,1,7,8],[839,1,1,8,9]]]],[3555,3557,18655,18896,19613,20560,21192,21348,21433]]],["wasted",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20016]]],["wastes",[7,7,[[22,1,1,0,1,[[739,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]],[25,5,5,2,7,[[834,2,2,2,4],[837,3,3,4,7]]]],[18847,20140,21304,21307,21363,21369,21392]]]]},{"k":"H2724","v":[["*",[8,7,[[0,1,1,0,1,[[6,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[5,3,2,2,4,[[189,2,1,2,3],[190,1,1,3,4]]],[11,1,1,4,5,[[314,1,1,4,5]]],[25,1,1,5,6,[[831,1,1,5,6]]],[36,1,1,6,7,[[910,1,1,6,7]]]],[181,1910,5910,5928,9559,21216,22861]]],["dry",[4,4,[[0,1,1,0,1,[[6,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[25,1,1,2,3,[[831,1,1,2,3]]],[36,1,1,3,4,[[910,1,1,3,4]]]],[181,1910,21216,22861]]],["ground",[3,2,[[5,2,1,0,1,[[189,2,1,0,1]]],[11,1,1,1,2,[[314,1,1,1,2]]]],[5910,9559]]],["land",[1,1,[[5,1,1,0,1,[[190,1,1,0,1]]]],[5928]]]]},{"k":"H2725","v":[["drought",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14359]]]]},{"k":"H2726","v":[["*",[2,2,[[16,2,2,0,2,[[426,1,1,0,1],[432,1,1,1,2]]]],[12712,12816]]],["Harbona",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12712]]],["Harbonah",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12816]]]]},{"k":"H2727","v":[["afraid",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14163]]]]},{"k":"H2728","v":[["beetle",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3019]]]]},{"k":"H2729","v":[["*",[39,39,[[0,2,2,0,2,[[26,1,1,0,1],[41,1,1,1,2]]],[1,2,2,2,4,[[68,2,2,2,4]]],[2,1,1,4,5,[[115,1,1,4,5]]],[4,1,1,5,6,[[180,1,1,5,6]]],[6,1,1,6,7,[[218,1,1,6,7]]],[7,1,1,7,8,[[234,1,1,7,8]]],[8,5,5,8,13,[[248,1,1,8,9],[249,1,1,9,10],[251,1,1,10,11],[256,1,1,11,12],[263,1,1,12,13]]],[9,1,1,13,14,[[283,1,1,13,14]]],[10,1,1,14,15,[[291,1,1,14,15]]],[11,1,1,15,16,[[316,1,1,15,16]]],[17,2,2,16,18,[[446,1,1,16,17],[472,1,1,17,18]]],[22,5,5,18,23,[[688,1,1,18,19],[695,1,1,19,20],[697,1,1,20,21],[710,1,1,21,22],[719,1,1,22,23]]],[23,3,3,23,26,[[751,1,1,23,24],[774,1,1,24,25],[790,1,1,25,26]]],[25,6,6,26,32,[[827,2,2,26,28],[831,1,1,28,29],[833,1,1,29,30],[835,1,1,30,31],[840,1,1,31,32]]],[27,2,2,32,34,[[872,2,2,32,34]]],[29,1,1,34,35,[[881,1,1,34,35]]],[32,1,1,35,36,[[896,1,1,35,36]]],[33,1,1,36,37,[[901,1,1,36,37]]],[35,1,1,37,38,[[908,1,1,37,38]]],[37,1,1,38,39,[[911,1,1,38,39]]]],[760,1280,2042,2044,3530,5637,6731,7180,7492,7523,7599,7773,7947,8451,8766,9616,13127,13770,17879,17985,18020,18270,18456,19152,19677,20072,21116,21118,21213,21258,21341,21474,22250,22251,22401,22624,22710,22833,22899]]],["+",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8451]]],["Tremble",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18270]]],["afraid",[19,19,[[0,1,1,0,1,[[41,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[8,1,1,3,4,[[256,1,1,3,4]]],[10,1,1,4,5,[[291,1,1,4,5]]],[17,1,1,5,6,[[446,1,1,5,6]]],[22,4,4,6,10,[[688,1,1,6,7],[695,1,1,7,8],[697,1,1,8,9],[719,1,1,9,10]]],[23,2,2,10,12,[[774,1,1,10,11],[790,1,1,11,12]]],[25,3,3,12,15,[[831,1,1,12,13],[835,1,1,13,14],[840,1,1,14,15]]],[29,1,1,15,16,[[881,1,1,15,16]]],[32,1,1,16,17,[[896,1,1,16,17]]],[33,1,1,17,18,[[901,1,1,17,18]]],[35,1,1,18,19,[[908,1,1,18,19]]]],[1280,3530,7180,7773,8766,13127,17879,17985,18020,18456,19677,20072,21213,21341,21474,22401,22624,22710,22833]]],["away",[2,2,[[4,1,1,0,1,[[180,1,1,0,1]]],[23,1,1,1,2,[[751,1,1,1,2]]]],[5637,19152]]],["careful",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9616]]],["discomfited",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6731]]],["fray",[1,1,[[37,1,1,0,1,[[911,1,1,0,1]]]],[22899]]],["quaked",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2044]]],["tremble",[5,5,[[25,3,3,0,3,[[827,2,2,0,2],[833,1,1,2,3]]],[27,2,2,3,5,[[872,2,2,3,5]]]],[21116,21118,21258,22250,22251]]],["trembled",[5,5,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,1,1,1,2,[[68,1,1,1,2]]],[8,3,3,2,5,[[249,1,1,2,3],[251,1,1,3,4],[263,1,1,4,5]]]],[760,2042,7523,7599,7947]]],["trembleth",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13770]]],["trembling",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7492]]]]},{"k":"H2730","v":[["*",[6,6,[[6,1,1,0,1,[[217,1,1,0,1]]],[8,1,1,1,2,[[239,1,1,1,2]]],[14,2,2,2,4,[[411,1,1,2,3],[412,1,1,3,4]]],[22,2,2,4,6,[[744,2,2,4,6]]]],[6697,7310,12241,12255,18924,18927]]],["afraid",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6697]]],["tremble",[2,2,[[14,1,1,0,1,[[412,1,1,0,1]]],[22,1,1,1,2,[[744,1,1,1,2]]]],[12255,18927]]],["trembled",[2,2,[[8,1,1,0,1,[[239,1,1,0,1]]],[14,1,1,1,2,[[411,1,1,1,2]]]],[7310,12241]]],["trembleth",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18924]]]]},{"k":"H2731","v":[["*",[9,8,[[0,1,1,0,1,[[26,1,1,0,1]]],[8,2,1,1,2,[[249,2,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]],[19,1,1,3,4,[[656,1,1,3,4]]],[22,1,1,4,5,[[699,1,1,4,5]]],[23,1,1,5,6,[[774,1,1,5,6]]],[25,1,1,6,7,[[827,1,1,6,7]]],[26,1,1,7,8,[[859,1,1,7,8]]]],[760,7523,9616,17249,18039,19672,21116,22022]]],["+",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[760]]],["care",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9616]]],["fear",[2,2,[[19,1,1,0,1,[[656,1,1,0,1]]],[22,1,1,1,2,[[699,1,1,1,2]]]],[17249,18039]]],["quaking",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22022]]],["trembling",[4,3,[[8,2,1,0,1,[[249,2,1,0,1]]],[23,1,1,1,2,[[774,1,1,1,2]]],[25,1,1,2,3,[[827,1,1,2,3]]]],[7523,19672,21116]]]]},{"k":"H2732","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4784,4785]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4785]]],["Haradah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4784]]]]},{"k":"H2733","v":[["Harodite",[2,1,[[9,2,1,0,1,[[289,2,1,0,1]]]],[8678]]]]},{"k":"H2734","v":[["*",[91,88,[[0,11,11,0,11,[[3,2,2,0,2],[17,2,2,2,4],[29,1,1,4,5],[30,2,2,5,7],[33,1,1,7,8],[38,1,1,8,9],[43,1,1,9,10],[44,1,1,10,11]]],[1,6,6,11,17,[[53,1,1,11,12],[71,1,1,12,13],[81,4,4,13,17]]],[3,11,11,17,28,[[127,3,3,17,20],[128,1,1,20,21],[132,1,1,21,22],[138,2,2,22,24],[140,1,1,24,25],[141,1,1,25,26],[148,2,2,26,28]]],[4,5,5,28,33,[[158,1,1,28,29],[159,1,1,29,30],[163,1,1,30,31],[181,1,1,31,32],[183,1,1,32,33]]],[5,2,2,33,35,[[193,1,1,33,34],[209,1,1,34,35]]],[6,7,7,35,42,[[212,2,2,35,37],[213,1,1,37,38],[216,1,1,38,39],[219,1,1,39,40],[220,1,1,40,41],[224,1,1,41,42]]],[8,7,6,42,48,[[246,1,1,42,43],[250,1,1,43,44],[252,1,1,44,45],[253,1,1,45,46],[255,3,2,46,48]]],[9,8,8,48,56,[[269,1,1,48,49],[272,2,2,49,51],[278,1,1,51,52],[279,1,1,52,53],[285,1,1,53,54],[288,1,1,54,55],[290,1,1,55,56]]],[11,2,2,56,58,[[325,1,1,56,57],[335,1,1,57,58]]],[12,2,2,58,60,[[350,2,2,58,60]]],[13,2,2,60,62,[[391,2,2,60,62]]],[15,4,4,62,66,[[415,1,1,62,63],[416,2,2,63,65],[417,1,1,65,66]]],[17,6,5,66,71,[[454,1,1,66,67],[467,4,3,67,70],[477,1,1,70,71]]],[18,6,6,71,77,[[495,1,1,71,72],[514,3,3,72,75],[583,1,1,75,76],[601,1,1,76,77]]],[19,1,1,77,78,[[651,1,1,77,78]]],[21,1,1,78,79,[[671,1,1,78,79]]],[22,3,3,79,82,[[683,1,1,79,80],[719,1,1,80,81],[723,1,1,81,82]]],[27,1,1,82,83,[[869,1,1,82,83]]],[31,4,3,83,86,[[892,4,3,83,86]]],[34,1,1,86,87,[[905,1,1,86,87]]],[37,1,1,87,88,[[920,1,1,87,88]]]],[84,85,454,456,832,908,909,987,1168,1342,1363,1615,2137,2448,2449,2457,2460,4025,4034,4057,4068,4209,4397,4402,4456,4474,4728,4731,5101,5115,5225,5706,5745,5977,6476,6559,6565,6576,6693,6784,6818,6928,7451,7571,7646,7684,7737,7760,8089,8164,8165,8291,8338,8553,8610,8693,9874,10191,10770,10771,11714,11719,12347,12360,12366,12388,13308,13630,13631,13633,13929,14125,14451,14457,14458,15691,16105,17098,17543,17764,18462,18585,22199,22569,22572,22577,22776,23019]]],["+",[9,8,[[0,2,2,0,2,[[30,1,1,0,1],[33,1,1,1,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[8,2,1,3,4,[[255,2,1,3,4]]],[18,3,3,4,7,[[514,3,3,4,7]]],[19,1,1,7,8,[[651,1,1,7,8]]]],[908,987,4209,7737,14451,14457,14458,17098]]],["angry",[10,9,[[0,3,3,0,3,[[17,2,2,0,2],[44,1,1,2,3]]],[9,1,1,3,4,[[285,1,1,3,4]]],[15,1,1,4,5,[[417,1,1,4,5]]],[21,1,1,5,6,[[671,1,1,5,6]]],[31,4,3,6,9,[[892,4,3,6,9]]]],[454,456,1363,8553,12388,17543,22569,22572,22577]]],["burn",[1,1,[[0,1,1,0,1,[[43,1,1,0,1]]]],[1342]]],["displeased",[3,3,[[9,1,1,0,1,[[272,1,1,0,1]]],[12,1,1,1,2,[[350,1,1,1,2]]],[34,1,1,2,3,[[905,1,1,2,3]]]],[8165,10771,22776]]],["earnestly",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12347]]],["grieved",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7571]]],["hot",[10,10,[[1,5,5,0,5,[[71,1,1,0,1],[81,4,4,1,5]]],[6,5,5,5,10,[[212,2,2,5,7],[213,1,1,7,8],[216,1,1,8,9],[220,1,1,9,10]]]],[2137,2448,2449,2457,2460,6559,6565,6576,6693,6818]]],["incensed",[2,2,[[22,2,2,0,2,[[719,1,1,0,1],[723,1,1,1,2]]]],[18462,18585]]],["kindled",[44,43,[[0,2,2,0,2,[[29,1,1,0,1],[38,1,1,1,2]]],[1,1,1,2,3,[[53,1,1,2,3]]],[3,10,10,3,13,[[127,3,3,3,6],[128,1,1,6,7],[138,2,2,7,9],[140,1,1,9,10],[141,1,1,10,11],[148,2,2,11,13]]],[4,5,5,13,18,[[158,1,1,13,14],[159,1,1,14,15],[163,1,1,15,16],[181,1,1,16,17],[183,1,1,17,18]]],[5,2,2,18,20,[[193,1,1,18,19],[209,1,1,19,20]]],[6,2,2,20,22,[[219,1,1,20,21],[224,1,1,21,22]]],[8,3,3,22,25,[[246,1,1,22,23],[252,1,1,23,24],[255,1,1,24,25]]],[9,3,3,25,28,[[272,1,1,25,26],[278,1,1,26,27],[290,1,1,27,28]]],[11,2,2,28,30,[[325,1,1,28,29],[335,1,1,29,30]]],[12,1,1,30,31,[[350,1,1,30,31]]],[13,2,2,31,33,[[391,2,2,31,33]]],[17,6,5,33,38,[[454,1,1,33,34],[467,4,3,34,37],[477,1,1,37,38]]],[18,2,2,38,40,[[583,1,1,38,39],[601,1,1,39,40]]],[22,1,1,40,41,[[683,1,1,40,41]]],[27,1,1,41,42,[[869,1,1,41,42]]],[37,1,1,42,43,[[920,1,1,42,43]]]],[832,1168,1615,4025,4034,4057,4068,4397,4402,4456,4474,4728,4731,5101,5115,5225,5706,5745,5977,6476,6784,6928,7451,7646,7760,8164,8291,8693,9874,10191,10770,11714,11719,13308,13630,13631,13633,13929,15691,16105,17764,22199,23019]]],["wroth",[10,10,[[0,3,3,0,3,[[3,2,2,0,2],[30,1,1,2,3]]],[8,1,1,3,4,[[253,1,1,3,4]]],[9,3,3,4,7,[[269,1,1,4,5],[279,1,1,5,6],[288,1,1,6,7]]],[15,2,2,7,9,[[416,2,2,7,9]]],[18,1,1,9,10,[[495,1,1,9,10]]]],[84,85,909,7684,8089,8338,8610,12360,12366,14125]]]]},{"k":"H2735","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4792,4793]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4793]]],["Horhagidgad",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4792]]]]},{"k":"H2736","v":[["Harhaiah",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12335]]]]},{"k":"H2737","v":[["chains",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17547]]]]},{"k":"H2738","v":[["nettles",[3,3,[[17,1,1,0,1,[[465,1,1,0,1]]],[19,1,1,1,2,[[651,1,1,1,2]]],[35,1,1,2,3,[[907,1,1,2,3]]]],[13564,17110,22814]]]]},{"k":"H2739","v":[["Harumaph",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12337]]]]},{"k":"H2740","v":[["*",[41,40,[[1,2,2,0,2,[[64,1,1,0,1],[81,1,1,1,2]]],[3,2,2,2,4,[[141,1,1,2,3],[148,1,1,3,4]]],[4,1,1,4,5,[[165,1,1,4,5]]],[5,1,1,5,6,[[193,1,1,5,6]]],[8,1,1,6,7,[[263,1,1,6,7]]],[11,1,1,7,8,[[335,1,1,7,8]]],[13,4,4,8,12,[[394,2,2,8,10],[395,1,1,10,11],[396,1,1,11,12]]],[14,1,1,12,13,[[412,1,1,12,13]]],[15,1,1,13,14,[[425,1,1,13,14]]],[17,1,1,14,15,[[455,1,1,14,15]]],[18,6,6,15,21,[[479,1,1,15,16],[535,1,1,16,17],[546,1,1,17,18],[555,1,1,18,19],[562,1,1,19,20],[565,1,1,20,21]]],[22,2,2,21,23,[[691,2,2,21,23]]],[23,9,8,23,31,[[748,2,2,23,25],[756,1,1,25,26],[769,3,2,26,28],[774,1,1,28,29],[793,1,1,29,30],[795,1,1,30,31]]],[24,2,2,31,33,[[797,1,1,31,32],[800,1,1,32,33]]],[25,2,2,33,35,[[808,2,2,33,35]]],[27,1,1,35,36,[[872,1,1,35,36]]],[31,1,1,36,37,[[891,1,1,36,37]]],[33,1,1,37,38,[[900,1,1,37,38]]],[35,2,2,38,40,[[907,1,1,38,39],[908,1,1,39,40]]]],[1927,2450,4475,4732,5289,6002,7960,10191,11775,11777,11801,11835,12266,12689,13349,13950,14788,14959,15162,15274,15324,17915,17919,19035,19053,19262,19571,19572,19691,20164,20257,20322,20431,20589,20591,22249,22567,22690,22807,22828]]],["+",[8,8,[[1,1,1,0,1,[[81,1,1,0,1]]],[4,1,1,1,2,[[165,1,1,1,2]]],[5,1,1,2,3,[[193,1,1,2,3]]],[11,1,1,3,4,[[335,1,1,3,4]]],[18,1,1,4,5,[[562,1,1,4,5]]],[23,2,2,5,7,[[756,1,1,5,6],[795,1,1,6,7]]],[31,1,1,7,8,[[891,1,1,7,8]]]],[2450,5289,6002,10191,15274,19262,20257,22567]]],["displeasure",[1,1,[[18,1,1,0,1,[[479,1,1,0,1]]]],[13950]]],["fierce",[19,19,[[3,2,2,0,2,[[141,1,1,0,1],[148,1,1,1,2]]],[8,1,1,2,3,[[263,1,1,2,3]]],[13,3,3,3,6,[[394,2,2,3,5],[395,1,1,5,6]]],[14,1,1,6,7,[[412,1,1,6,7]]],[22,2,2,7,9,[[691,2,2,7,9]]],[23,6,6,9,15,[[748,2,2,9,11],[769,2,2,11,13],[774,1,1,13,14],[793,1,1,14,15]]],[24,2,2,15,17,[[797,1,1,15,16],[800,1,1,16,17]]],[35,2,2,17,19,[[907,1,1,17,18],[908,1,1,18,19]]]],[4475,4732,7960,11775,11777,11801,12266,17915,17919,19035,19053,19571,19572,19691,20164,20322,20431,22807,22828]]],["fierceness",[5,5,[[13,1,1,0,1,[[396,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]],[23,1,1,2,3,[[769,1,1,2,3]]],[27,1,1,3,4,[[872,1,1,3,4]]],[33,1,1,4,5,[[900,1,1,4,5]]]],[11835,15162,19572,22249,22690]]],["fury",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13349]]],["wrath",[6,6,[[1,1,1,0,1,[[64,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]],[18,2,2,2,4,[[535,1,1,2,3],[565,1,1,3,4]]],[25,2,2,4,6,[[808,2,2,4,6]]]],[1927,12689,14788,15324,20589,20591]]],["wrathful",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14959]]]]},{"k":"H2741","v":[["Haruphite",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10725]]]]},{"k":"H2742","v":[["*",[18,17,[[17,1,1,0,1,[[476,1,1,0,1]]],[18,1,1,1,2,[[545,1,1,1,2]]],[19,9,9,2,11,[[630,1,1,2,3],[635,2,2,3,5],[637,1,1,5,6],[639,2,2,6,8],[640,1,1,8,9],[643,1,1,9,10],[648,1,1,10,11]]],[22,2,2,11,13,[[706,1,1,11,12],[719,1,1,12,13]]],[26,1,1,13,14,[[858,1,1,13,14]]],[28,2,1,14,15,[[878,2,1,14,15]]],[29,1,1,15,16,[[879,1,1,15,16]]],[37,1,1,16,17,[[919,1,1,16,17]]]],[13918,14913,16469,16612,16621,16660,16743,16746,16751,16856,16989,18191,18466,22013,22357,22367,23002]]],["+",[4,4,[[19,4,4,0,4,[[630,1,1,0,1],[635,2,2,1,3],[643,1,1,3,4]]]],[16469,16612,16621,16856]]],["decision",[2,1,[[28,2,1,0,1,[[878,2,1,0,1]]]],[22357]]],["diligent",[5,5,[[19,5,5,0,5,[[637,1,1,0,1],[639,2,2,1,3],[640,1,1,3,4],[648,1,1,4,5]]]],[16660,16743,16746,16751,16989]]],["gold",[2,2,[[18,1,1,0,1,[[545,1,1,0,1]]],[37,1,1,1,2,[[919,1,1,1,2]]]],[14913,23002]]],["instrument",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18191]]],["instruments",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22367]]],["sharp",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18466]]],["things",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13918]]],["wall",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22013]]]]},{"k":"H2743","v":[["Haruz",[1,1,[[11,1,1,0,1,[[333,1,1,0,1]]]],[10138]]]]},{"k":"H2744","v":[["Harhur",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12078,12473]]]]},{"k":"H2745","v":[["Harhas",[1,1,[[11,1,1,0,1,[[334,1,1,0,1]]]],[10159]]]]},{"k":"H2746","v":[["burning",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5633]]]]},{"k":"H2747","v":[["*",[2,2,[[1,1,1,0,1,[[81,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]]],[2442,17808]]],["pen",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17808]]],["tool",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2442]]]]},{"k":"H2748","v":[["magicians",[11,10,[[0,2,2,0,2,[[40,2,2,0,2]]],[1,7,6,2,8,[[56,2,2,2,4],[57,3,3,4,7],[58,2,1,7,8]]],[26,2,2,8,10,[[850,1,1,8,9],[851,1,1,9,10]]]],[1203,1219,1696,1707,1717,1728,1729,1753,21757,21760]]]]},{"k":"H2749","v":[["*",[5,5,[[26,5,5,0,5,[[851,2,2,0,2],[853,2,2,2,4],[854,1,1,4,5]]]],[21768,21785,21844,21846,21885]]],["magician",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21768]]],["magicians",[4,4,[[26,4,4,0,4,[[851,1,1,0,1],[853,2,2,1,3],[854,1,1,3,4]]]],[21785,21844,21846,21885]]]]},{"k":"H2750","v":[["*",[6,6,[[1,1,1,0,1,[[60,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[13,1,1,3,4,[[391,1,1,3,4]]],[22,1,1,4,5,[[685,1,1,4,5]]],[24,1,1,5,6,[[798,1,1,5,6]]]],[1814,5703,7764,11714,17786,20335]]],["fierce",[3,3,[[8,1,1,0,1,[[255,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]]],[7764,17786,20335]]],["great",[2,2,[[1,1,1,0,1,[[60,1,1,0,1]]],[13,1,1,1,2,[[391,1,1,1,2]]]],[1814,11714]]],["heat",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5703]]]]},{"k":"H2751","v":[["white",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1188]]]]},{"k":"H2752","v":[["*",[6,6,[[0,4,4,0,4,[[13,1,1,0,1],[35,3,3,1,4]]],[4,2,2,4,6,[[154,2,2,4,6]]]],[342,1060,1061,1069,4950,4960]]],["Horims",[2,2,[[4,2,2,0,2,[[154,2,2,0,2]]]],[4950,4960]]],["Horite",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1060]]],["Horites",[3,3,[[0,3,3,0,3,[[13,1,1,0,1],[35,2,2,1,3]]]],[342,1061,1069]]]]},{"k":"H2753","v":[["Hori",[4,4,[[0,2,2,0,2,[[35,2,2,0,2]]],[3,1,1,2,3,[[129,1,1,2,3]]],[12,1,1,3,4,[[338,1,1,3,4]]]],[1062,1070,4080,10291]]]]},{"k":"H2754","v":[["*",[2,2,[[11,1,1,0,1,[[317,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]]],[9670,17729]]],["bags",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9670]]],["pins",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17729]]]]},{"k":"H2755","v":[["dung",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9699]]]]},{"k":"H2756","v":[["Hariph",[2,2,[[15,2,2,0,2,[[419,1,1,0,1],[422,1,1,1,2]]]],[12444,12568]]]]},{"k":"H2757","v":[["*",[3,3,[[8,1,1,0,1,[[252,1,1,0,1]]],[9,1,1,1,2,[[278,1,1,1,2]]],[12,1,1,2,3,[[357,1,1,2,3]]]],[7636,8317,10929]]],["+",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7636]]],["harrows",[2,2,[[9,1,1,0,1,[[278,1,1,0,1]]],[12,1,1,1,2,[[357,1,1,1,2]]]],[8317,10929]]]]},{"k":"H2758","v":[["*",[3,3,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,1,1,1,2,[[83,1,1,1,2]]],[8,1,1,2,3,[[243,1,1,2,3]]]],[1364,2517,7381]]],["earing",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1364]]],["ground",[1,1,[[8,1,1,0,1,[[243,1,1,0,1]]]],[7381]]],["time",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2517]]]]},{"k":"H2759","v":[["vehement",[1,1,[[31,1,1,0,1,[[892,1,1,0,1]]]],[22576]]]]},{"k":"H2760","v":[["roasteth",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16746]]]]},{"k":"H2761","v":[["singed",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21834]]]]},{"k":"H2762","v":[["lattice",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17563]]]]},{"k":"H2763","v":[["*",[52,48,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,3,3,1,4,[[110,1,1,1,2],[116,2,2,2,4]]],[3,2,2,4,6,[[137,2,2,4,6]]],[4,8,5,6,11,[[154,1,1,6,7],[155,2,1,7,8],[159,2,1,8,9],[165,1,1,9,10],[172,2,1,10,11]]],[5,14,14,11,25,[[188,1,1,11,12],[192,2,2,12,14],[194,1,1,14,15],[196,6,6,15,21],[197,4,4,21,25]]],[6,2,2,25,27,[[211,1,1,25,26],[231,1,1,26,27]]],[8,7,6,27,33,[[250,7,6,27,33]]],[10,1,1,33,34,[[299,1,1,33,34]]],[11,1,1,34,35,[[331,1,1,34,35]]],[12,1,1,35,36,[[341,1,1,35,36]]],[13,2,2,36,38,[[386,1,1,36,37],[398,1,1,37,38]]],[14,1,1,38,39,[[412,1,1,38,39]]],[22,3,3,39,42,[[689,1,1,39,40],[712,1,1,40,41],[715,1,1,41,42]]],[23,4,4,42,46,[[769,1,1,42,43],[794,2,2,43,45],[795,1,1,45,46]]],[26,1,1,46,47,[[860,1,1,46,47]]],[32,1,1,47,48,[[896,1,1,47,48]]]],[2133,3363,3598,3599,4342,4343,4972,4981,5113,5287,5444,5879,5967,5970,6028,6065,6092,6099,6101,6103,6104,6118,6119,6127,6128,6526,7113,7563,7568,7569,7575,7578,7580,9072,10072,10426,11610,11889,12260,17899,18305,18363,19543,20187,20192,20215,22080,22633]]],["+",[13,11,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,5,3,1,4,[[159,2,1,1,2],[165,1,1,2,3],[172,2,1,3,4]]],[5,4,4,4,8,[[188,1,1,4,5],[192,1,1,5,6],[194,1,1,6,7],[196,1,1,7,8]]],[8,2,2,8,10,[[250,2,2,8,10]]],[22,1,1,10,11,[[689,1,1,10,11]]]],[4342,5113,5287,5444,5879,5970,6028,6103,7563,7578,17899]]],["accursed",[1,1,[[5,1,1,0,1,[[192,1,1,0,1]]]],[5967]]],["away",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22080]]],["consecrate",[1,1,[[32,1,1,0,1,[[896,1,1,0,1]]]],[22633]]],["destroy",[7,7,[[5,1,1,0,1,[[197,1,1,0,1]]],[6,1,1,1,2,[[231,1,1,1,2]]],[8,1,1,2,3,[[250,1,1,2,3]]],[10,1,1,3,4,[[299,1,1,3,4]]],[23,3,3,4,7,[[769,1,1,4,5],[794,2,2,5,7]]]],[6127,7113,7569,9072,19543,20187,20192]]],["destroyed",[17,17,[[1,1,1,0,1,[[71,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[4,2,2,2,4,[[154,1,1,2,3],[155,1,1,3,4]]],[5,7,7,4,11,[[196,5,5,4,9],[197,2,2,9,11]]],[6,1,1,11,12,[[211,1,1,11,12]]],[8,3,3,12,15,[[250,3,3,12,15]]],[13,1,1,15,16,[[398,1,1,15,16]]],[22,1,1,16,17,[[712,1,1,16,17]]]],[2133,4343,4972,4981,6065,6092,6099,6101,6104,6119,6128,6526,7568,7575,7580,11889,18305]]],["destroying",[2,2,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,1,1,1,2,[[197,1,1,1,2]]]],[4981,6118]]],["devote",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3598]]],["devoted",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3599]]],["forfeited",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12260]]],["nose",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3363]]],["slay",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11610]]],["utterly",[5,5,[[8,1,1,0,1,[[250,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[12,1,1,2,3,[[341,1,1,2,3]]],[22,1,1,3,4,[[715,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]]],[7569,10072,10426,18363,20215]]]]},{"k":"H2764","v":[["*",[38,31,[[2,4,3,0,3,[[116,4,3,0,3]]],[3,1,1,3,4,[[134,1,1,3,4]]],[4,3,2,4,6,[[159,2,1,4,5],[165,1,1,5,6]]],[5,13,8,6,14,[[192,4,2,6,8],[193,8,5,8,13],[208,1,1,13,14]]],[8,1,1,14,15,[[250,1,1,14,15]]],[10,1,1,15,16,[[310,1,1,15,16]]],[12,1,1,16,17,[[339,1,1,16,17]]],[20,1,1,17,18,[[665,1,1,17,18]]],[22,2,2,18,20,[[712,1,1,18,19],[721,1,1,19,20]]],[25,5,5,20,25,[[827,2,2,20,22],[833,1,1,22,23],[845,1,1,23,24],[848,1,1,24,25]]],[32,1,1,25,26,[[899,1,1,25,26]]],[34,3,3,26,29,[[903,3,3,26,29]]],[37,1,1,29,30,[[924,1,1,29,30]]],[38,1,1,30,31,[[928,1,1,30,31]]]],[3591,3598,3599,4271,5137,5289,5966,5967,5977,5987,5988,5989,5991,6446,7581,9450,10313,17455,18308,18533,21105,21114,21251,21628,21689,22666,22746,22747,22748,23079,23144]]],["+",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21114]]],["accursed",[4,3,[[5,3,2,0,2,[[192,1,1,0,1],[193,2,1,1,2]]],[12,1,1,2,3,[[339,1,1,2,3]]]],[5966,5988,10313]]],["curse",[4,4,[[5,1,1,0,1,[[192,1,1,0,1]]],[22,2,2,1,3,[[712,1,1,1,2],[721,1,1,2,3]]],[38,1,1,3,4,[[928,1,1,3,4]]]],[5967,18308,18533,23144]]],["destroyed",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7581]]],["destruction",[2,2,[[10,1,1,0,1,[[310,1,1,0,1]]],[37,1,1,1,2,[[924,1,1,1,2]]]],[9450,23079]]],["devoted",[3,3,[[2,2,2,0,2,[[116,2,2,0,2]]],[3,1,1,2,3,[[134,1,1,2,3]]]],[3591,3599,4271]]],["net",[5,5,[[25,1,1,0,1,[[833,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]],[34,3,3,2,5,[[903,3,3,2,5]]]],[21251,22666,22746,22747,22748]]],["nets",[3,3,[[20,1,1,0,1,[[665,1,1,0,1]]],[25,2,2,1,3,[[827,1,1,1,2],[848,1,1,2,3]]]],[17455,21105,21689]]],["thing",[15,10,[[2,2,1,0,1,[[116,2,1,0,1]]],[4,3,2,1,3,[[159,2,1,1,2],[165,1,1,2,3]]],[5,9,6,3,9,[[192,2,1,3,4],[193,6,4,4,8],[208,1,1,8,9]]],[25,1,1,9,10,[[845,1,1,9,10]]]],[3598,5137,5289,5967,5977,5987,5989,5991,6446,21628]]]]},{"k":"H2765","v":[["Horem",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6359]]]]},{"k":"H2766","v":[["Harim",[11,11,[[12,1,1,0,1,[[361,1,1,0,1]]],[14,4,4,1,5,[[404,2,2,1,3],[412,2,2,3,5]]],[15,6,6,5,11,[[415,1,1,5,6],[419,2,2,6,8],[422,2,2,8,10],[424,1,1,10,11]]]],[11023,12059,12066,12273,12283,12338,12455,12462,12554,12576,12639]]]]},{"k":"H2767","v":[["Hormah",[9,9,[[3,2,2,0,2,[[130,1,1,0,1],[137,1,1,1,2]]],[4,1,1,2,3,[[153,1,1,2,3]]],[5,3,3,3,6,[[198,1,1,3,4],[201,1,1,4,5],[205,1,1,5,6]]],[6,1,1,6,7,[[211,1,1,6,7]]],[8,1,1,7,8,[[265,1,1,7,8]]],[12,1,1,8,9,[[341,1,1,8,9]]]],[4153,4343,4936,6144,6232,6325,6526,8008,10415]]]]},{"k":"H2768","v":[["Hermon",[13,13,[[4,3,3,0,3,[[155,2,2,0,2],[156,1,1,2,3]]],[5,6,6,3,9,[[197,2,2,3,5],[198,2,2,5,7],[199,2,2,7,9]]],[12,1,1,9,10,[[342,1,1,9,10]]],[18,2,2,10,12,[[566,1,1,10,11],[610,1,1,11,12]]],[21,1,1,12,13,[[674,1,1,12,13]]]],[4983,4984,5052,6110,6124,6131,6135,6159,6165,10451,15338,16172,17590]]]]},{"k":"H2769","v":[["Hermonites",[1,1,[[18,1,1,0,1,[[519,1,1,0,1]]]],[14561]]]]},{"k":"H2770","v":[["sickle",[2,2,[[4,2,2,0,2,[[168,1,1,0,1],[175,1,1,1,2]]]],[5351,5525]]]]},{"k":"H2771","v":[["*",[12,11,[[0,7,7,0,7,[[10,2,2,0,2],[11,2,2,2,4],[26,1,1,4,5],[27,1,1,5,6],[28,1,1,6,7]]],[11,1,1,7,8,[[331,1,1,7,8]]],[12,2,1,8,9,[[339,2,1,8,9]]],[22,1,1,9,10,[[715,1,1,9,10]]],[25,1,1,10,11,[[828,1,1,10,11]]]],[297,298,302,303,770,783,799,10073,10352,18364,21144]]],["+",[2,2,[[0,2,2,0,2,[[11,1,1,0,1],[28,1,1,1,2]]]],[302,799]]],["Haran",[10,9,[[0,5,5,0,5,[[10,2,2,0,2],[11,1,1,2,3],[26,1,1,3,4],[27,1,1,4,5]]],[11,1,1,5,6,[[331,1,1,5,6]]],[12,2,1,6,7,[[339,2,1,6,7]]],[22,1,1,7,8,[[715,1,1,7,8]]],[25,1,1,8,9,[[828,1,1,8,9]]]],[297,298,303,770,783,10073,10352,18364,21144]]]]},{"k":"H2772","v":[["Horonite",[3,3,[[15,3,3,0,3,[[414,2,2,0,2],[425,1,1,2,3]]]],[12317,12326,12699]]]]},{"k":"H2773","v":[["*",[4,4,[[22,1,1,0,1,[[693,1,1,0,1]]],[23,3,3,1,4,[[792,3,3,1,4]]]],[17965,20083,20085,20114]]],["+",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20083]]],["Horonaim",[3,3,[[22,1,1,0,1,[[693,1,1,0,1]]],[23,2,2,1,3,[[792,2,2,1,3]]]],[17965,20085,20114]]]]},{"k":"H2774","v":[["Harnepher",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10571]]]]},{"k":"H2775","v":[["*",[4,4,[[4,1,1,0,1,[[180,1,1,0,1]]],[6,2,2,1,3,[[218,1,1,1,2],[224,1,1,2,3]]],[17,1,1,3,4,[[444,1,1,3,4]]]],[5638,6732,6927,13058]]],["itch",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5638]]],["sun",[3,3,[[6,2,2,0,2,[[218,1,1,0,1],[224,1,1,1,2]]],[17,1,1,2,3,[[444,1,1,2,3]]]],[6732,6927,13058]]]]},{"k":"H2776","v":[["Heres",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6544]]]]},{"k":"H2777","v":[["east",[1,1,[[23,1,1,0,1,[[763,1,1,0,1]]]],[19409]]]]},{"k":"H2778","v":[["*",[41,40,[[2,1,1,0,1,[[108,1,1,0,1]]],[6,2,2,1,3,[[215,1,1,1,2],[218,1,1,2,3]]],[8,5,5,3,8,[[252,5,5,3,8]]],[9,2,2,8,10,[[287,1,1,8,9],[289,1,1,9,10]]],[11,4,4,10,14,[[331,4,4,10,14]]],[12,1,1,14,15,[[357,1,1,14,15]]],[13,1,1,15,16,[[398,1,1,15,16]]],[15,1,1,16,17,[[418,1,1,16,17]]],[17,1,1,17,18,[[462,1,1,17,18]]],[18,12,11,18,29,[[519,1,1,18,19],[521,1,1,19,20],[532,1,1,20,21],[534,1,1,21,22],[546,1,1,22,23],[551,2,2,23,25],[556,1,1,25,26],[566,2,1,26,27],[579,1,1,27,28],[596,1,1,28,29]]],[19,3,3,29,32,[[641,1,1,29,30],[644,1,1,30,31],[654,1,1,31,32]]],[22,6,6,32,38,[[696,1,1,32,33],[715,4,4,33,37],[743,1,1,37,38]]],[35,2,2,38,40,[[907,2,2,38,40]]]],[3301,6641,6734,7628,7643,7644,7654,7663,8601,8662,10065,10077,10083,10084,10933,11892,12414,13487,14565,14587,14744,14771,14944,15058,15066,15197,15377,15529,15940,16803,16878,17180,18003,18356,18369,18375,18376,18904,22813,22815]]],["+",[5,5,[[8,2,2,0,2,[[252,2,2,0,2]]],[9,1,1,2,3,[[287,1,1,2,3]]],[12,1,1,3,4,[[357,1,1,3,4]]],[35,1,1,4,5,[[907,1,1,4,5]]]],[7628,7643,8601,10933,22813]]],["betrothed",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3301]]],["blasphemed",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18904]]],["defied",[3,3,[[8,2,2,0,2,[[252,2,2,0,2]]],[9,1,1,2,3,[[289,1,1,2,3]]]],[7654,7663,8662]]],["defy",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7644]]],["jeoparded",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6641]]],["rail",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11892]]],["reproach",[10,10,[[11,2,2,0,2,[[331,2,2,0,2]]],[15,1,1,2,3,[[418,1,1,2,3]]],[17,1,1,3,4,[[462,1,1,3,4]]],[18,4,4,4,8,[[519,1,1,4,5],[534,1,1,5,6],[551,1,1,6,7],[579,1,1,7,8]]],[22,2,2,8,10,[[715,2,2,8,10]]]],[10065,10077,12414,13487,14565,14771,15058,15529,18356,18369]]],["reproached",[11,10,[[11,2,2,0,2,[[331,2,2,0,2]]],[18,6,5,2,7,[[532,1,1,2,3],[546,1,1,3,4],[551,1,1,4,5],[556,1,1,5,6],[566,2,1,6,7]]],[22,2,2,7,9,[[715,2,2,7,9]]],[35,1,1,9,10,[[907,1,1,9,10]]]],[10083,10084,14744,14944,15066,15197,15377,18375,18376,22815]]],["reproacheth",[5,5,[[18,2,2,0,2,[[521,1,1,0,1],[596,1,1,1,2]]],[19,3,3,2,5,[[641,1,1,2,3],[644,1,1,3,4],[654,1,1,4,5]]]],[14587,15940,16803,16878,17180]]],["upbraid",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6734]]],["winter",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18003]]]]},{"k":"H2779","v":[["*",[7,7,[[0,1,1,0,1,[[7,1,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]],[18,1,1,2,3,[[551,1,1,2,3]]],[19,1,1,3,4,[[647,1,1,3,4]]],[23,1,1,4,5,[[780,1,1,4,5]]],[29,1,1,5,6,[[881,1,1,5,6]]],[37,1,1,6,7,[[924,1,1,6,7]]]],[205,13536,15065,16958,19864,22410,23076]]],["+",[2,2,[[19,1,1,0,1,[[647,1,1,0,1]]],[23,1,1,1,2,[[780,1,1,1,2]]]],[16958,19864]]],["winter",[4,4,[[0,1,1,0,1,[[7,1,1,0,1]]],[18,1,1,1,2,[[551,1,1,1,2]]],[29,1,1,2,3,[[881,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[205,15065,22410,23076]]],["youth",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13536]]]]},{"k":"H2780","v":[["Hareph",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10357]]]]},{"k":"H2781","v":[["*",[73,72,[[0,2,2,0,2,[[29,1,1,0,1],[33,1,1,1,2]]],[5,1,1,2,3,[[191,1,1,2,3]]],[8,3,3,3,6,[[246,1,1,3,4],[252,1,1,4,5],[260,1,1,5,6]]],[9,1,1,6,7,[[279,1,1,6,7]]],[15,4,4,7,11,[[413,1,1,7,8],[414,1,1,8,9],[416,1,1,9,10],[417,1,1,10,11]]],[17,2,2,11,13,[[451,1,1,11,12],[454,1,1,12,13]]],[18,20,20,13,33,[[492,1,1,13,14],[499,1,1,14,15],[508,1,1,15,16],[516,1,1,16,17],[521,1,1,17,18],[546,5,5,18,23],[548,1,1,23,24],[551,1,1,24,25],[555,1,1,25,26],[556,2,2,26,28],[566,2,2,28,30],[586,1,1,30,31],[596,2,2,31,33]]],[19,2,2,33,35,[[633,1,1,33,34],[645,1,1,34,35]]],[22,6,6,35,41,[[682,1,1,35,36],[703,1,1,36,37],[708,1,1,37,38],[725,1,1,38,39],[729,1,1,39,40],[732,1,1,40,41]]],[23,12,12,41,53,[[750,1,1,41,42],[759,1,1,42,43],[764,1,1,43,44],[767,1,1,44,45],[768,1,1,45,46],[773,1,1,46,47],[775,1,1,47,48],[786,1,1,48,49],[788,2,2,49,51],[793,1,1,51,52],[795,1,1,52,53]]],[24,3,3,53,56,[[799,2,2,53,55],[801,1,1,55,56]]],[25,7,7,56,63,[[806,2,2,56,58],[817,1,1,58,59],[822,1,1,59,60],[823,1,1,60,61],[837,2,2,61,63]]],[26,4,3,63,66,[[858,1,1,63,64],[860,2,1,64,65],[861,1,1,65,66]]],[27,1,1,66,67,[[873,1,1,66,67]]],[28,2,2,67,69,[[877,2,2,67,69]]],[32,1,1,69,70,[[898,1,1,69,70]]],[35,2,2,70,72,[[907,1,1,70,71],[908,1,1,71,72]]]],[853,994,5943,7447,7644,7900,8330,12299,12324,12363,12391,13248,13302,14090,14210,14342,14520,14584,14942,14944,14945,14954,14955,14989,15070,15179,15189,15197,15367,15376,15780,15920,15937,16573,16904,17734,18126,18222,18602,18680,18727,19099,19330,19430,19524,19533,19653,19710,19993,20018,20022,20140,20263,20384,20415,20443,20560,20561,20819,20972,20980,21374,21389,22004,22054,22083,22266,22328,22330,22664,22813,22838]]],["+",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12391]]],["Reproach",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14955]]],["rebuke",[2,2,[[22,1,1,0,1,[[703,1,1,0,1]]],[23,1,1,1,2,[[759,1,1,1,2]]]],[18126,19330]]],["reproach",[63,62,[[0,2,2,0,2,[[29,1,1,0,1],[33,1,1,1,2]]],[5,1,1,2,3,[[191,1,1,2,3]]],[8,3,3,3,6,[[246,1,1,3,4],[252,1,1,4,5],[260,1,1,5,6]]],[15,3,3,6,9,[[413,1,1,6,7],[414,1,1,7,8],[416,1,1,8,9]]],[17,1,1,9,10,[[454,1,1,9,10]]],[18,17,17,10,27,[[492,1,1,10,11],[499,1,1,11,12],[508,1,1,12,13],[516,1,1,13,14],[521,1,1,14,15],[546,3,3,15,18],[548,1,1,18,19],[555,1,1,19,20],[556,2,2,20,22],[566,2,2,22,24],[586,1,1,24,25],[596,2,2,25,27]]],[19,2,2,27,29,[[633,1,1,27,28],[645,1,1,28,29]]],[22,4,4,29,33,[[682,1,1,29,30],[708,1,1,30,31],[729,1,1,31,32],[732,1,1,32,33]]],[23,11,11,33,44,[[750,1,1,33,34],[764,1,1,34,35],[767,1,1,35,36],[768,1,1,36,37],[773,1,1,37,38],[775,1,1,38,39],[786,1,1,39,40],[788,2,2,40,42],[793,1,1,42,43],[795,1,1,43,44]]],[24,3,3,44,47,[[799,2,2,44,46],[801,1,1,46,47]]],[25,7,7,47,54,[[806,2,2,47,49],[817,1,1,49,50],[822,1,1,50,51],[823,1,1,51,52],[837,2,2,52,54]]],[26,3,2,54,56,[[858,1,1,54,55],[860,2,1,55,56]]],[27,1,1,56,57,[[873,1,1,56,57]]],[28,2,2,57,59,[[877,2,2,57,59]]],[32,1,1,59,60,[[898,1,1,59,60]]],[35,2,2,60,62,[[907,1,1,60,61],[908,1,1,61,62]]]],[853,994,5943,7447,7644,7900,12299,12324,12363,13302,14090,14210,14342,14520,14584,14942,14945,14954,14989,15179,15189,15197,15367,15376,15780,15920,15937,16573,16904,17734,18222,18680,18727,19099,19430,19524,19533,19653,19710,19993,20018,20022,20140,20263,20384,20415,20443,20560,20561,20819,20972,20980,21374,21389,22004,22054,22266,22328,22330,22664,22813,22838]]],["reproaches",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14944]]],["reproacheth",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15070]]],["reproachfully",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13248]]],["shame",[3,3,[[9,1,1,0,1,[[279,1,1,0,1]]],[22,1,1,1,2,[[725,1,1,1,2]]],[26,1,1,2,3,[[861,1,1,2,3]]]],[8330,18602,22083]]]]},{"k":"H2782","v":[["*",[12,12,[[1,1,1,0,1,[[60,1,1,0,1]]],[2,1,1,1,2,[[111,1,1,1,2]]],[5,1,1,2,3,[[196,1,1,2,3]]],[9,1,1,3,4,[[271,1,1,3,4]]],[10,1,1,4,5,[[310,1,1,4,5]]],[17,1,1,5,6,[[449,1,1,5,6]]],[22,3,3,6,9,[[688,2,2,6,8],[706,1,1,8,9]]],[26,3,3,9,12,[[858,2,2,9,11],[860,1,1,11,12]]]],[1813,3391,6085,8156,9448,13186,17872,17873,18186,22014,22015,22072]]],["+",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6085]]],["bestir",[1,1,[[9,1,1,0,1,[[271,1,1,0,1]]]],[8156]]],["decided",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9448]]],["decreed",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17872]]],["determined",[6,6,[[17,1,1,0,1,[[449,1,1,0,1]]],[22,2,2,1,3,[[688,1,1,1,2],[706,1,1,2,3]]],[26,3,3,3,6,[[858,2,2,3,5],[860,1,1,5,6]]]],[13186,17873,18186,22014,22015,22072]]],["maimed",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3391]]],["move",[1,1,[[1,1,1,0,1,[[60,1,1,0,1]]]],[1813]]]]},{"k":"H2783","v":[["loins",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21880]]]]},{"k":"H2784","v":[["bands",[2,2,[[18,1,1,0,1,[[550,1,1,0,1]]],[22,1,1,1,2,[[736,1,1,1,2]]]],[15024,18792]]]]},{"k":"H2785","v":[["+",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3827]]]]},{"k":"H2786","v":[["*",[5,5,[[17,1,1,0,1,[[451,1,1,0,1]]],[18,3,3,1,4,[[512,1,1,1,2],[514,1,1,2,3],[589,1,1,3,4]]],[24,1,1,4,5,[[798,1,1,4,5]]]],[13247,14426,14462,15813,20348]]],["gnash",[2,2,[[18,1,1,0,1,[[589,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]]],[15813,20348]]],["gnashed",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14426]]],["gnasheth",[2,2,[[17,1,1,0,1,[[451,1,1,0,1]]],[18,1,1,1,2,[[514,1,1,1,2]]]],[13247,14462]]]]},{"k":"H2787","v":[["*",[10,10,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,2,2,1,3,[[546,1,1,1,2],[579,1,1,2,3]]],[19,1,1,3,4,[[653,1,1,3,4]]],[22,1,1,4,5,[[702,1,1,4,5]]],[23,1,1,5,6,[[750,1,1,5,6]]],[25,4,4,6,10,[[816,2,2,6,8],[825,2,2,8,10]]]],[13587,14938,15524,17162,18101,19118,20758,20759,21066,21067]]],["burn",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21067]]],["burned",[7,7,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,1,1,1,2,[[579,1,1,1,2]]],[22,1,1,2,3,[[702,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]],[25,3,3,4,7,[[816,2,2,4,6],[825,1,1,6,7]]]],[13587,15524,18101,19118,20758,20759,21066]]],["dried",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14938]]],["kindle",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17162]]]]},{"k":"H2788","v":[["places",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19363]]]]},{"k":"H2789","v":[["*",[17,16,[[2,5,5,0,5,[[95,1,1,0,1],[100,1,1,1,2],[103,2,2,2,4],[104,1,1,4,5]]],[3,1,1,5,6,[[121,1,1,5,6]]],[17,2,2,6,8,[[437,1,1,6,7],[476,1,1,7,8]]],[18,1,1,8,9,[[499,1,1,8,9]]],[19,1,1,9,10,[[653,1,1,9,10]]],[22,3,2,10,12,[[708,1,1,10,11],[723,2,1,11,12]]],[23,2,2,12,14,[[763,1,1,12,13],[776,1,1,13,14]]],[24,1,1,14,15,[[800,1,1,14,15]]],[25,1,1,15,16,[[824,1,1,15,16]]]],[2877,3030,3116,3161,3180,3809,12899,13918,14219,17164,18231,18570,19408,19745,20422,21041]]],["earth",[1,1,[[2,1,1,0,1,[[104,1,1,0,1]]]],[3180]]],["earthen",[8,8,[[2,4,4,0,4,[[95,1,1,0,1],[100,1,1,1,2],[103,2,2,2,4]]],[3,1,1,4,5,[[121,1,1,4,5]]],[23,2,2,5,7,[[763,1,1,5,6],[776,1,1,6,7]]],[24,1,1,7,8,[[800,1,1,7,8]]]],[2877,3030,3116,3161,3809,19408,19745,20422]]],["potsherd",[4,4,[[17,1,1,0,1,[[437,1,1,0,1]]],[18,1,1,1,2,[[499,1,1,1,2]]],[19,1,1,2,3,[[653,1,1,2,3]]],[22,1,1,3,4,[[723,1,1,3,4]]]],[12899,14219,17164,18570]]],["potsherds",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18570]]],["sherd",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18231]]],["sherds",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21041]]],["stones",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13918]]]]},{"k":"H2790","v":[["*",[74,66,[[0,2,2,0,2,[[23,1,1,0,1],[33,1,1,1,2]]],[1,1,1,2,3,[[63,1,1,2,3]]],[3,6,4,3,7,[[146,6,4,3,7]]],[4,1,1,7,8,[[174,1,1,7,8]]],[6,3,3,8,11,[[224,1,1,8,9],[226,1,1,9,10],[228,1,1,10,11]]],[8,4,4,11,15,[[242,1,1,11,12],[243,1,1,12,13],[245,1,1,13,14],[258,1,1,14,15]]],[9,2,2,15,17,[[279,1,1,15,16],[285,1,1,16,17]]],[10,2,2,17,19,[[297,1,1,17,18],[309,1,1,18,19]]],[11,1,1,19,20,[[330,1,1,19,20]]],[15,1,1,20,21,[[417,1,1,20,21]]],[16,3,2,21,23,[[429,2,1,21,22],[432,1,1,22,23]]],[17,11,10,23,33,[[436,1,1,23,24],[439,1,1,24,25],[441,1,1,25,26],[446,1,1,26,27],[448,4,3,27,30],[468,2,2,30,32],[476,1,1,32,33]]],[18,11,9,33,42,[[505,2,1,33,34],[509,1,1,34,35],[512,1,1,35,36],[516,1,1,36,37],[527,2,2,37,39],[560,1,1,39,40],[586,1,1,40,41],[606,2,1,41,42]]],[19,9,8,42,50,[[630,1,1,42,43],[633,2,2,43,45],[638,1,1,45,46],[639,1,1,46,47],[641,2,1,47,48],[644,1,1,48,49],[647,1,1,49,50]]],[22,5,4,50,54,[[706,2,1,50,51],[714,1,1,51,52],[719,1,1,52,53],[720,1,1,53,54]]],[23,4,4,54,58,[[748,1,1,54,55],[761,1,1,55,56],[770,1,1,56,57],[782,1,1,57,58]]],[27,2,2,58,60,[[871,2,2,58,60]]],[29,2,2,60,62,[[884,1,1,60,61],[887,1,1,61,62]]],[32,2,2,62,64,[[895,1,1,62,63],[899,1,1,63,64]]],[34,1,1,64,65,[[903,1,1,64,65]]],[35,1,1,65,66,[[908,1,1,65,66]]]],[612,985,1903,4652,4655,4659,4662,5480,6927,6951,7012,7360,7381,7445,7819,8337,8521,8948,9406,10060,12390,12776,12811,12883,12938,13002,13111,13158,13166,13172,13681,13683,13900,14300,14358,14432,14524,14671,14689,15242,15756,16135,16484,16554,16558,16700,16739,16794,16901,16958,18188,18351,18452,18494,19046,19358,19590,19922,22236,22238,22462,22508,22620,22680,22744,22837]]],["+",[8,5,[[3,2,1,0,1,[[146,2,1,0,1]]],[16,2,1,1,2,[[429,2,1,1,2]]],[17,2,1,2,3,[[448,2,1,2,3]]],[18,2,2,3,5,[[516,1,1,3,4],[560,1,1,4,5]]]],[4662,12776,13158,14524,15242]]],["Cease",[1,1,[[8,1,1,0,1,[[242,1,1,0,1]]]],[7360]]],["Devise",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16484]]],["Hold",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15756]]],["conceal",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13900]]],["deaf",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22680]]],["devise",[2,1,[[19,2,1,0,1,[[641,2,1,0,1]]]],[16794]]],["deviseth",[2,2,[[19,2,2,0,2,[[633,2,2,0,2]]]],[16554,16558]]],["ear",[1,1,[[8,1,1,0,1,[[243,1,1,0,1]]]],[7381]]],["graven",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19358]]],["hold",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8337]]],["imagine",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16739]]],["peace",[19,19,[[0,2,2,0,2,[[23,1,1,0,1],[33,1,1,1,2]]],[1,1,1,2,3,[[63,1,1,2,3]]],[3,4,4,3,7,[[146,4,4,3,7]]],[6,1,1,7,8,[[228,1,1,7,8]]],[8,1,1,8,9,[[245,1,1,8,9]]],[11,1,1,9,10,[[330,1,1,9,10]]],[15,1,1,10,11,[[417,1,1,10,11]]],[17,4,4,11,15,[[446,1,1,11,12],[448,1,1,12,13],[468,2,2,13,15]]],[19,2,2,15,17,[[638,1,1,15,16],[644,1,1,16,17]]],[22,1,1,17,18,[[714,1,1,17,18]]],[23,1,1,18,19,[[748,1,1,18,19]]]],[612,985,1903,4652,4655,4659,4662,7012,7445,10060,12390,13111,13166,13681,13683,16700,16901,18351,19046]]],["plow",[6,6,[[4,1,1,0,1,[[174,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]],[19,1,1,2,3,[[647,1,1,2,3]]],[22,1,1,3,4,[[706,1,1,3,4]]],[27,1,1,4,5,[[871,1,1,4,5]]],[29,1,1,5,6,[[884,1,1,5,6]]]],[5480,12938,16958,18188,22236,22462]]],["plowed",[5,5,[[6,1,1,0,1,[[224,1,1,0,1]]],[18,1,1,1,2,[[606,1,1,1,2]]],[23,1,1,2,3,[[770,1,1,2,3]]],[27,1,1,3,4,[[871,1,1,3,4]]],[32,1,1,4,5,[[895,1,1,4,5]]]],[6927,16135,19590,22238,22620]]],["plowers",[1,1,[[18,1,1,0,1,[[606,1,1,0,1]]]],[16135]]],["plowing",[2,2,[[10,1,1,0,1,[[309,1,1,0,1]]],[17,1,1,1,2,[[436,1,1,1,2]]]],[9406,12883]]],["plowman",[2,2,[[22,1,1,0,1,[[706,1,1,0,1]]],[29,1,1,1,2,[[887,1,1,1,2]]]],[18188,22508]]],["practised",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7819]]],["quiet",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6951]]],["rest",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22837]]],["silence",[5,5,[[18,4,4,0,4,[[509,1,1,0,1],[512,1,1,1,2],[527,2,2,2,4]]],[22,1,1,4,5,[[719,1,1,4,5]]]],[14358,14432,14671,14689,18452]]],["silent",[2,1,[[18,2,1,0,1,[[505,2,1,0,1]]]],[14300]]],["speak",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8521]]],["speaking",[1,1,[[23,1,1,0,1,[[782,1,1,0,1]]]],[19922]]],["still",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18494]]],["tongue",[4,4,[[16,1,1,0,1,[[432,1,1,0,1]]],[17,2,2,1,3,[[441,1,1,1,2],[448,1,1,2,3]]],[34,1,1,3,4,[[903,1,1,3,4]]]],[12811,13002,13172,22744]]],["worker",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8948]]]]},{"k":"H2791","v":[["secretly",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5870]]]]},{"k":"H2792","v":[["Heresh",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10630]]]]},{"k":"H2793","v":[["*",[7,7,[[8,4,4,0,4,[[258,4,4,0,4]]],[13,1,1,4,5,[[393,1,1,4,5]]],[22,1,1,5,6,[[695,1,1,5,6]]],[25,1,1,6,7,[[832,1,1,6,7]]]],[7825,7826,7828,7829,11759,17992,21233]]],["bough",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17992]]],["forests",[1,1,[[13,1,1,0,1,[[393,1,1,0,1]]]],[11759]]],["shroud",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21233]]],["wood",[4,4,[[8,4,4,0,4,[[258,4,4,0,4]]]],[7825,7826,7828,7829]]]]},{"k":"H2794","v":[["artificer",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[101]]]]},{"k":"H2795","v":[["deaf",[9,9,[[1,1,1,0,1,[[53,1,1,0,1]]],[2,1,1,1,2,[[108,1,1,1,2]]],[18,2,2,2,4,[[515,1,1,2,3],[535,1,1,3,4]]],[22,5,5,4,9,[[707,1,1,4,5],[713,1,1,5,6],[720,2,2,6,8],[721,1,1,8,9]]]],[1612,3295,14503,14783,18211,18325,18498,18499,18513]]]]},{"k":"H2796","v":[["*",[37,34,[[1,3,3,0,3,[[77,1,1,0,1],[84,1,1,1,2],[87,1,1,2,3]]],[4,1,1,3,4,[[179,1,1,3,4]]],[8,1,1,4,5,[[248,1,1,4,5]]],[9,2,1,5,6,[[271,2,1,5,6]]],[11,4,4,6,10,[[324,1,1,6,7],[334,1,1,7,8],[336,2,2,8,10]]],[12,5,4,10,14,[[341,1,1,10,11],[351,2,1,11,12],[359,1,1,12,13],[366,1,1,13,14]]],[13,3,2,14,16,[[390,2,1,14,15],[400,1,1,15,16]]],[14,1,1,16,17,[[405,1,1,16,17]]],[22,9,9,17,26,[[681,1,1,17,18],[718,2,2,18,20],[719,1,1,20,21],[722,3,3,21,24],[723,1,1,24,25],[732,1,1,25,26]]],[23,4,4,26,30,[[754,2,2,26,28],[768,1,1,28,29],[773,1,1,29,30]]],[25,1,1,30,31,[[822,1,1,30,31]]],[27,2,2,31,33,[[869,1,1,31,32],[874,1,1,32,33]]],[37,1,1,33,34,[[911,1,1,33,34]]]],[2304,2566,2656,5600,7504,8143,9861,10151,10216,10218,10399,10775,10979,11169,11689,11944,12104,17710,18439,18440,18458,18544,18545,18546,18577,18739,19204,19210,19525,19637,20975,22200,22268,22898]]],["+",[7,5,[[9,2,1,0,1,[[271,2,1,0,1]]],[11,1,1,1,2,[[324,1,1,1,2]]],[12,2,1,2,3,[[351,2,1,2,3]]],[22,2,2,3,5,[[722,2,2,3,5]]]],[8143,9861,10775,18545,18546]]],["artificer",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17710]]],["artificers",[2,2,[[12,1,1,0,1,[[366,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]]],[11169,11944]]],["carpenter",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18458]]],["carpenters",[6,6,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]],[14,1,1,2,3,[[405,1,1,2,3]]],[23,2,2,3,5,[[768,1,1,3,4],[773,1,1,4,5]]],[37,1,1,5,6,[[911,1,1,5,6]]]],[10151,11689,12104,19525,19637,22898]]],["craftsman",[1,1,[[4,1,1,0,1,[[179,1,1,0,1]]]],[5600]]],["craftsmen",[4,4,[[11,2,2,0,2,[[336,2,2,0,2]]],[12,1,1,2,3,[[341,1,1,2,3]]],[27,1,1,3,4,[[874,1,1,3,4]]]],[10216,10218,10399,22268]]],["engraver",[3,3,[[1,3,3,0,3,[[77,1,1,0,1],[84,1,1,1,2],[87,1,1,2,3]]]],[2304,2566,2656]]],["makers",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18577]]],["skilful",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20975]]],["smith",[2,2,[[8,1,1,0,1,[[248,1,1,0,1]]],[22,1,1,1,2,[[732,1,1,1,2]]]],[7504,18739]]],["workers",[1,1,[[12,1,1,0,1,[[359,1,1,0,1]]]],[10979]]],["workman",[5,5,[[22,2,2,0,2,[[718,2,2,0,2]]],[23,2,2,2,4,[[754,2,2,2,4]]],[27,1,1,4,5,[[869,1,1,4,5]]]],[18439,18440,19204,19210,22200]]],["workmen",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18544]]],["wrought",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11689]]]]},{"k":"H2797","v":[["Harsha",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12079,12474]]]]},{"k":"H2798","v":[["*",[2,2,[[12,1,1,0,1,[[341,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[10399,12623]]],["Charashim",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10399]]],["craftsmen",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12623]]]]},{"k":"H2799","v":[["*",[4,2,[[1,4,2,0,2,[[80,2,1,0,1],[84,2,1,1,2]]]],[2425,2564]]],["carving",[2,2,[[1,2,2,0,2,[[80,1,1,0,1],[84,1,1,1,2]]]],[2425,2564]]],["cutting",[2,2,[[1,2,2,0,2,[[80,1,1,0,1],[84,1,1,1,2]]]],[2425,2564]]]]},{"k":"H2800","v":[["*",[3,3,[[6,3,3,0,3,[[214,3,3,0,3]]]],[6601,6612,6615]]],["+",[2,2,[[6,2,2,0,2,[[214,2,2,0,2]]]],[6601,6612]]],["Gentiles",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6615]]]]},{"k":"H2801","v":[["graven",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2454]]]]},{"k":"H2802","v":[["Hareth",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7792]]]]},{"k":"H2803","v":[["*",[124,122,[[0,5,4,0,4,[[14,1,1,0,1],[30,1,1,1,2],[37,1,1,2,3],[49,2,1,3,4]]],[1,13,12,4,16,[[75,2,2,4,6],[77,2,2,6,8],[80,1,1,8,9],[84,3,2,9,11],[85,2,2,11,13],[87,1,1,13,14],[88,2,2,14,16]]],[2,8,8,16,24,[[96,1,1,16,17],[106,1,1,17,18],[114,4,4,18,22],[116,2,2,22,24]]],[3,3,3,24,27,[[134,2,2,24,26],[139,1,1,26,27]]],[4,2,2,27,29,[[154,2,2,27,29]]],[5,1,1,29,30,[[199,1,1,29,30]]],[8,2,2,30,32,[[236,1,1,30,31],[253,1,1,31,32]]],[9,4,4,32,36,[[270,1,1,32,33],[280,2,2,33,35],[285,1,1,35,36]]],[10,1,1,36,37,[[300,1,1,36,37]]],[11,2,2,37,39,[[324,1,1,37,38],[334,1,1,38,39]]],[13,3,3,39,42,[[368,1,1,39,40],[375,1,1,40,41],[392,1,1,41,42]]],[15,3,3,42,45,[[418,2,2,42,44],[425,1,1,44,45]]],[16,3,3,45,48,[[433,1,1,45,46],[434,2,2,46,48]]],[17,10,10,48,58,[[441,1,1,48,49],[448,1,1,49,50],[453,1,1,50,51],[454,2,2,51,53],[468,1,1,53,54],[470,1,1,54,55],[476,3,3,55,58]]],[18,18,18,58,76,[[487,1,1,58,59],[498,1,1,59,60],[509,1,1,60,61],[512,2,2,61,63],[513,1,1,63,64],[517,1,1,64,65],[518,1,1,65,66],[521,1,1,66,67],[529,1,1,67,68],[550,1,1,68,69],[554,1,1,69,70],[565,1,1,70,71],[583,1,1,71,72],[596,1,1,72,73],[617,2,2,73,75],[621,1,1,75,76]]],[19,5,5,76,81,[[643,2,2,76,78],[644,1,1,78,79],[651,1,1,79,80],[654,1,1,80,81]]],[22,12,12,81,93,[[680,1,1,81,82],[683,1,1,82,83],[688,1,1,83,84],[691,1,1,84,85],[707,2,2,85,87],[710,1,1,87,88],[711,1,1,88,89],[718,2,2,89,91],[731,2,2,91,93]]],[23,12,12,93,105,[[755,1,1,93,94],[762,3,3,94,97],[767,1,1,97,98],[770,1,1,98,99],[773,1,1,99,100],[780,1,1,100,101],[792,1,1,101,102],[793,2,2,102,104],[794,1,1,104,105]]],[24,2,2,105,107,[[798,1,1,105,106],[800,1,1,106,107]]],[25,2,2,107,109,[[812,1,1,107,108],[839,1,1,108,109]]],[26,2,2,109,111,[[860,2,2,109,111]]],[27,2,2,111,113,[[868,1,1,111,112],[869,1,1,112,113]]],[29,1,1,113,114,[[884,1,1,113,114]]],[31,1,1,114,115,[[889,1,1,114,115]]],[32,2,2,115,117,[[894,2,2,115,117]]],[33,2,2,117,119,[[900,2,2,117,119]]],[37,2,2,119,121,[[917,1,1,119,120],[918,1,1,120,121]]],[38,1,1,121,122,[[927,1,1,121,122]]]],[366,888,1134,1526,2236,2266,2299,2308,2424,2563,2566,2574,2601,2656,2667,2672,2897,3239,3496,3500,3519,3521,3588,3593,4284,4287,4425,4949,4958,6157,7225,7701,8122,8369,8370,8530,9100,9865,10152,11225,11384,11747,12403,12407,12684,12820,12858,12859,13004,13177,13279,13308,13312,13660,13722,13915,13917,13920,14043,14202,14357,14414,14430,14442,14542,14549,14593,14712,15036,15098,15312,15682,15957,16265,16267,16308,16849,16870,16901,17087,17183,17707,17767,17857,17923,18209,18210,18274,18287,18435,18437,18714,18715,19245,19392,19395,19402,19511,19575,19646,19845,20082,20147,20157,20211,20340,20422,20657,21435,22060,22061,22193,22206,22455,22535,22596,22598,22693,22695,22972,22993,23136]]],["+",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[37,1,1,1,2,[[918,1,1,1,2]]]],[3496,22993]]],["Thinkest",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13722]]],["account",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16308]]],["accounted",[5,5,[[4,2,2,0,2,[[154,2,2,0,2]]],[10,1,1,2,3,[[300,1,1,2,3]]],[13,1,1,3,4,[[375,1,1,3,4]]],[22,1,1,4,5,[[680,1,1,4,5]]]],[4949,4958,9100,11384,17707]]],["conceived",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20157]]],["considered",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15098]]],["count",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[17,1,1,1,2,[[454,1,1,1,2]]]],[3521,13312]]],["counted",[18,18,[[0,2,2,0,2,[[14,1,1,0,1],[30,1,1,1,2]]],[2,1,1,2,3,[[114,1,1,2,3]]],[3,1,1,3,4,[[134,1,1,3,4]]],[5,1,1,4,5,[[199,1,1,4,5]]],[15,1,1,5,6,[[425,1,1,5,6]]],[17,2,2,6,8,[[453,1,1,6,7],[476,1,1,7,8]]],[18,3,3,8,11,[[521,1,1,8,9],[565,1,1,9,10],[583,1,1,10,11]]],[19,2,2,11,13,[[644,1,1,11,12],[654,1,1,12,13]]],[22,4,4,13,17,[[683,1,1,13,14],[710,1,1,14,15],[718,2,2,15,17]]],[27,1,1,17,18,[[869,1,1,17,18]]]],[366,888,3500,4287,6157,12684,13279,13917,14593,15312,15682,16901,17183,17767,18274,18435,18437,22206]]],["counteth",[2,2,[[17,2,2,0,2,[[454,1,1,0,1],[468,1,1,1,2]]]],[13308,13660]]],["cunning",[8,8,[[1,8,8,0,8,[[75,2,2,0,2],[77,2,2,2,4],[85,2,2,4,6],[88,2,2,6,8]]]],[2236,2266,2299,2308,2574,2601,2667,2672]]],["devise",[13,13,[[1,3,3,0,3,[[80,1,1,0,1],[84,2,2,1,3]]],[9,1,1,3,4,[[280,1,1,3,4]]],[18,3,3,4,7,[[512,2,2,4,6],[518,1,1,6,7]]],[19,1,1,7,8,[[643,1,1,7,8]]],[23,2,2,8,10,[[762,2,2,8,10]]],[25,1,1,10,11,[[812,1,1,10,11]]],[32,2,2,11,13,[[894,2,2,11,13]]]],[2424,2563,2566,8370,14414,14430,14549,16870,19395,19402,20657,22596,22598]]],["devised",[5,5,[[16,3,3,0,3,[[433,1,1,0,1],[434,2,2,1,3]]],[23,2,2,3,5,[[755,1,1,3,4],[792,1,1,4,5]]]],[12820,12858,12859,19245,20082]]],["deviseth",[4,4,[[18,2,2,0,2,[[513,1,1,0,1],[529,1,1,1,2]]],[19,2,2,2,4,[[643,1,1,2,3],[651,1,1,3,4]]]],[14442,14712,16849,17087]]],["esteem",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18715]]],["esteemed",[4,4,[[22,3,3,0,3,[[707,2,2,0,2],[731,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]]],[18209,18210,18714,20422]]],["esteemeth",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13915]]],["forecast",[2,2,[[26,2,2,0,2,[[860,2,2,0,2]]]],[22060,22061]]],["holdest",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13177]]],["imagine",[5,5,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,1,1,1,2,[[617,1,1,1,2]]],[27,1,1,2,3,[[868,1,1,2,3]]],[33,1,1,3,4,[[900,1,1,3,4]]],[37,1,1,4,5,[[917,1,1,4,5]]]],[13004,16265,22193,22693,22972]]],["imagined",[2,2,[[18,2,2,0,2,[[487,1,1,0,1],[498,1,1,1,2]]]],[14043,14202]]],["imagineth",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22695]]],["impute",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8530]]],["imputed",[2,2,[[2,2,2,0,2,[[96,1,1,0,1],[106,1,1,1,2]]]],[2897,3239]]],["imputeth",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14357]]],["invent",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22455]]],["like",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22535]]],["meant",[1,1,[[0,1,1,0,1,[[49,1,1,0,1]]]],[1526]]],["men",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11747]]],["out",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11225]]],["purpose",[2,2,[[23,2,2,0,2,[[770,1,1,0,1],[780,1,1,1,2]]]],[19575,19845]]],["purposed",[4,4,[[18,1,1,0,1,[[617,1,1,0,1]]],[23,2,2,1,3,[[793,1,1,1,2],[794,1,1,2,3]]],[24,1,1,3,4,[[798,1,1,3,4]]]],[16267,20147,20211,20340]]],["reckon",[3,3,[[2,3,3,0,3,[[114,1,1,0,1],[116,2,2,1,3]]]],[3519,3588,3593]]],["reckoned",[4,4,[[3,2,2,0,2,[[134,1,1,0,1],[139,1,1,1,2]]],[9,1,1,2,3,[[270,1,1,2,3]]],[11,1,1,3,4,[[324,1,1,3,4]]]],[4284,4425,8122,9865]]],["reckoning",[1,1,[[11,1,1,0,1,[[334,1,1,0,1]]]],[10152]]],["regard",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17923]]],["regardeth",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18287]]],["think",[6,6,[[15,1,1,0,1,[[418,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[22,1,1,2,3,[[688,1,1,2,3]]],[23,2,2,3,5,[[767,1,1,3,4],[773,1,1,4,5]]],[25,1,1,5,6,[[839,1,1,5,6]]]],[12407,13920,17857,19511,19646,21435]]],["thinketh",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14542]]],["thought",[10,10,[[0,2,2,0,2,[[37,1,1,0,1],[49,1,1,1,2]]],[8,2,2,2,4,[[236,1,1,2,3],[253,1,1,3,4]]],[9,1,1,4,5,[[280,1,1,4,5]]],[15,1,1,5,6,[[418,1,1,5,6]]],[18,2,2,6,8,[[550,1,1,6,7],[596,1,1,7,8]]],[23,1,1,8,9,[[762,1,1,8,9]]],[38,1,1,9,10,[[927,1,1,9,10]]]],[1134,1526,7225,7701,8369,12403,15036,15957,19392,23136]]],["workman",[2,2,[[1,2,2,0,2,[[84,1,1,0,1],[87,1,1,1,2]]]],[2566,2656]]]]},{"k":"H2804","v":[["reputed",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21872]]]]},{"k":"H2805","v":[["girdle",[8,8,[[1,7,7,0,7,[[77,3,3,0,3],[78,1,1,3,4],[88,3,3,4,7]]],[2,1,1,7,8,[[97,1,1,7,8]]]],[2301,2320,2321,2341,2669,2684,2685,2924]]]]},{"k":"H2806","v":[["Hashbadana",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12497]]]]},{"k":"H2807","v":[["Hashubah",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10381]]]]},{"k":"H2808","v":[["*",[3,3,[[20,3,3,0,3,[[665,2,2,0,2],[667,1,1,2,3]]]],[17454,17456,17485]]],["account",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17456]]],["device",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17485]]],["reason",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17454]]]]},{"k":"H2809","v":[["*",[38,37,[[3,8,8,0,8,[[137,6,6,0,6],[148,2,2,6,8]]],[4,8,8,8,16,[[153,1,1,8,9],[154,3,3,9,12],[155,2,2,12,14],[156,1,1,14,15],[181,1,1,15,16]]],[5,9,9,16,25,[[195,1,1,16,17],[198,2,2,17,19],[199,5,5,19,24],[207,1,1,24,25]]],[6,2,2,25,27,[[221,2,2,25,27]]],[12,1,1,27,28,[[343,1,1,27,28]]],[15,1,1,28,29,[[421,1,1,28,29]]],[21,1,1,29,30,[[677,1,1,29,30]]],[22,3,3,30,33,[[693,1,1,30,31],[694,2,2,31,33]]],[23,5,4,33,37,[[792,4,3,33,36],[793,1,1,36,37]]]],[4365,4366,4367,4368,4370,4374,4721,4755,4896,4962,4964,4968,4977,4981,5050,5686,6047,6132,6135,6164,6171,6175,6180,6181,6420,6848,6855,10535,12533,17631,17964,17977,17978,20082,20114,20125,20130]]],["+",[3,3,[[3,1,1,0,1,[[137,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[4368,6180,20125]]],["Heshbon",[35,35,[[3,7,7,0,7,[[137,5,5,0,5],[148,2,2,5,7]]],[4,8,8,7,15,[[153,1,1,7,8],[154,3,3,8,11],[155,2,2,11,13],[156,1,1,13,14],[181,1,1,14,15]]],[5,8,8,15,23,[[195,1,1,15,16],[198,2,2,16,18],[199,4,4,18,22],[207,1,1,22,23]]],[6,2,2,23,25,[[221,2,2,23,25]]],[12,1,1,25,26,[[343,1,1,25,26]]],[15,1,1,26,27,[[421,1,1,26,27]]],[21,1,1,27,28,[[677,1,1,27,28]]],[22,3,3,28,31,[[693,1,1,28,29],[694,2,2,29,31]]],[23,4,4,31,35,[[792,3,3,31,34],[793,1,1,34,35]]]],[4365,4366,4367,4370,4374,4721,4755,4896,4962,4964,4968,4977,4981,5050,5686,6047,6132,6135,6164,6171,6175,6181,6420,6848,6855,10535,12533,17631,17964,17977,17978,20082,20114,20125,20130]]]]},{"k":"H2810","v":[["*",[2,2,[[13,1,1,0,1,[[392,1,1,0,1]]],[20,1,1,1,2,[[665,1,1,1,2]]]],[11747,17458]]],["engines",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11747]]],["inventions",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17458]]]]},{"k":"H2811","v":[["Hashabiah",[15,15,[[12,6,6,0,6,[[343,1,1,0,1],[346,1,1,1,2],[362,2,2,2,4],[363,1,1,4,5],[364,1,1,5,6]]],[13,1,1,6,7,[[401,1,1,6,7]]],[14,2,2,7,9,[[410,2,2,7,9]]],[15,6,6,9,15,[[415,1,1,9,10],[422,1,1,10,11],[423,2,2,11,13],[424,2,2,13,15]]]],[10499,10629,11049,11065,11107,11126,11975,12220,12225,12344,12560,12603,12610,12645,12648]]]]},{"k":"H2812","v":[["Hashabnah",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12574]]]]},{"k":"H2813","v":[["Hashabniah",[2,2,[[15,2,2,0,2,[[415,1,1,0,1],[421,1,1,1,2]]]],[12337,12516]]]]},{"k":"H2814","v":[["*",[15,15,[[6,1,1,0,1,[[228,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]],[11,3,3,2,5,[[314,2,2,2,4],[319,1,1,4,5]]],[15,1,1,5,6,[[420,1,1,5,6]]],[18,2,2,6,8,[[516,1,1,6,7],[584,1,1,7,8]]],[20,1,1,8,9,[[661,1,1,8,9]]],[22,6,6,9,15,[[720,1,1,9,10],[735,1,1,10,11],[740,2,2,11,13],[742,1,1,13,14],[743,1,1,14,15]]]],[7002,9483,9554,9556,9716,12504,14514,15728,17366,18494,18776,18855,18860,18897,18903]]],["peace",[9,9,[[11,3,3,0,3,[[314,2,2,0,2],[319,1,1,2,3]]],[18,1,1,3,4,[[516,1,1,3,4]]],[22,5,5,4,9,[[720,1,1,4,5],[735,1,1,5,6],[740,2,2,6,8],[742,1,1,8,9]]]],[9554,9556,9716,14514,18494,18776,18855,18860,18897]]],["silence",[2,2,[[20,1,1,0,1,[[661,1,1,0,1]]],[22,1,1,1,2,[[743,1,1,1,2]]]],[17366,18903]]],["still",[3,3,[[6,1,1,0,1,[[228,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]],[18,1,1,2,3,[[584,1,1,2,3]]]],[7002,9483,15728]]],["stilled",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12504]]]]},{"k":"H2815","v":[["*",[5,5,[[12,1,1,0,1,[[346,1,1,0,1]]],[15,4,4,1,5,[[415,2,2,1,3],[422,1,1,3,4],[423,1,1,4,5]]]],[10629,12338,12350,12572,12603]]],["Hashub",[4,4,[[15,4,4,0,4,[[415,2,2,0,2],[422,1,1,2,3],[423,1,1,3,4]]]],[12338,12350,12572,12603]]],["Hasshub",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10629]]]]},{"k":"H2816","v":[["darkness",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21780]]]]},{"k":"H2817","v":[["*",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12070,12466]]],["Hashupha",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12466]]],["Hasupha",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12070]]]]},{"k":"H2818","v":[["*",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[852,1,1,1,2]]]],[12160,21823]]],["careful",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21823]]],["of",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12160]]]]},{"k":"H2819","v":[["needful",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12193]]]]},{"k":"H2820","v":[["*",[28,28,[[0,4,4,0,4,[[19,1,1,0,1],[21,2,2,1,3],[38,1,1,3,4]]],[8,1,1,4,5,[[260,1,1,4,5]]],[9,1,1,5,6,[[284,1,1,5,6]]],[11,1,1,6,7,[[317,1,1,6,7]]],[14,1,1,7,8,[[411,1,1,7,8]]],[17,7,7,8,15,[[442,1,1,8,9],[451,2,2,9,11],[456,1,1,11,12],[465,1,1,12,13],[468,1,1,13,14],[473,1,1,14,15]]],[18,2,2,15,17,[[496,1,1,15,16],[555,1,1,16,17]]],[19,6,6,17,23,[[637,1,1,17,18],[638,1,1,18,19],[640,1,1,19,20],[644,1,1,20,21],[648,1,1,21,22],[651,1,1,22,23]]],[22,3,3,23,26,[[692,1,1,23,24],[732,1,1,24,25],[736,1,1,25,26]]],[23,1,1,26,27,[[758,1,1,26,27]]],[25,1,1,27,28,[[831,1,1,27,28]]]],[501,559,563,1158,7900,8494,9667,12250,13019,13243,13244,13385,13567,13668,13816,14181,15163,16675,16712,16771,16900,17010,17090,17934,18725,18787,19303,21222]]],["+",[4,4,[[0,2,2,0,2,[[21,2,2,0,2]]],[9,1,1,2,3,[[284,1,1,2,3]]],[11,1,1,3,4,[[317,1,1,3,4]]]],[559,563,8494,9667]]],["asswage",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13243]]],["asswaged",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13244]]],["back",[3,3,[[0,1,1,0,1,[[38,1,1,0,1]]],[17,1,1,1,2,[[468,1,1,1,2]]],[18,1,1,2,3,[[496,1,1,2,3]]]],[1158,13668,14181]]],["darkened",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21222]]],["forbear",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17090]]],["hindereth",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17934]]],["kept",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7900]]],["punished",[1,1,[[14,1,1,0,1,[[411,1,1,0,1]]]],[12250]]],["refrain",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13019]]],["refrained",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19303]]],["refraineth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16675]]],["reserved",[2,2,[[17,2,2,0,2,[[456,1,1,0,1],[473,1,1,1,2]]]],[13385,13816]]],["spare",[3,3,[[17,1,1,0,1,[[465,1,1,0,1]]],[22,2,2,1,3,[[732,1,1,1,2],[736,1,1,2,3]]]],[13567,18725,18787]]],["spared",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15163]]],["spareth",[3,3,[[19,3,3,0,3,[[640,1,1,0,1],[644,1,1,1,2],[648,1,1,2,3]]]],[16771,16900,17010]]],["withheld",[1,1,[[0,1,1,0,1,[[19,1,1,0,1]]]],[501]]],["withholdeth",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16712]]]]},{"k":"H2821","v":[["*",[17,17,[[1,1,1,0,1,[[59,1,1,0,1]]],[17,3,3,1,4,[[438,1,1,1,2],[453,1,1,2,3],[473,1,1,3,4]]],[18,3,3,4,7,[[546,1,1,4,5],[582,1,1,5,6],[616,1,1,6,7]]],[20,2,2,7,9,[[670,2,2,7,9]]],[22,2,2,9,11,[[683,1,1,9,10],[691,1,1,10,11]]],[23,1,1,11,12,[[757,1,1,11,12]]],[24,2,2,12,14,[[800,1,1,12,13],[801,1,1,13,14]]],[29,2,2,14,16,[[883,1,1,14,15],[886,1,1,15,16]]],[32,1,1,16,17,[[895,1,1,16,17]]]],[1792,12913,13282,13795,14958,15634,16251,17525,17526,17769,17916,19282,20428,20459,22431,22490,22614]]],["+",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22431]]],["blacker",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20428]]],["dark",[4,4,[[17,2,2,0,2,[[438,1,1,0,1],[453,1,1,1,2]]],[18,1,1,2,3,[[582,1,1,2,3]]],[32,1,1,3,4,[[895,1,1,3,4]]]],[12913,13282,15634,22614]]],["darken",[1,1,[[29,1,1,0,1,[[886,1,1,0,1]]]],[22490]]],["darkened",[6,6,[[1,1,1,0,1,[[59,1,1,0,1]]],[18,1,1,1,2,[[546,1,1,1,2]]],[20,2,2,2,4,[[670,2,2,2,4]]],[22,2,2,4,6,[[683,1,1,4,5],[691,1,1,5,6]]]],[1792,14958,17525,17526,17769,17916]]],["darkeneth",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13795]]],["darkness",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19282]]],["dim",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20459]]],["hideth",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16251]]]]},{"k":"H2822","v":[["*",[79,76,[[0,4,4,0,4,[[0,4,4,0,4]]],[1,4,3,4,7,[[59,3,2,4,6],[63,1,1,6,7]]],[4,2,2,7,9,[[156,1,1,7,8],[157,1,1,8,9]]],[5,1,1,9,10,[[188,1,1,9,10]]],[8,1,1,10,11,[[237,1,1,10,11]]],[9,2,2,11,13,[[288,2,2,11,13]]],[17,23,23,13,36,[[438,2,2,13,15],[440,1,1,15,16],[445,1,1,16,17],[447,2,2,17,19],[450,3,3,19,22],[452,2,2,22,24],[453,1,1,24,25],[454,1,1,25,26],[455,1,1,26,27],[457,1,1,27,28],[458,1,1,28,29],[459,1,1,29,30],[461,1,1,30,31],[463,1,1,31,32],[464,1,1,32,33],[469,1,1,33,34],[472,1,1,34,35],[473,1,1,35,36]]],[18,10,10,36,46,[[495,1,1,36,37],[512,1,1,37,38],[565,1,1,38,39],[581,1,1,39,40],[582,1,1,40,41],[584,2,2,41,43],[589,1,1,43,44],[616,2,2,44,46]]],[19,2,2,46,48,[[629,1,1,46,47],[647,1,1,47,48]]],[20,6,5,48,53,[[660,2,2,48,50],[663,1,1,50,51],[664,2,1,51,52],[669,1,1,52,53]]],[22,14,13,53,66,[[683,3,2,53,55],[687,1,1,55,56],[707,1,1,56,57],[720,1,1,57,58],[723,3,3,58,61],[725,1,1,61,62],[727,1,1,62,63],[736,1,1,63,64],[737,1,1,64,65],[738,1,1,65,66]]],[24,1,1,66,67,[[799,1,1,66,67]]],[25,2,2,67,69,[[809,1,1,67,68],[833,1,1,68,69]]],[28,2,2,69,71,[[877,2,2,69,71]]],[29,2,2,71,73,[[883,2,2,71,73]]],[32,1,1,73,74,[[899,1,1,73,74]]],[33,1,1,74,75,[[900,1,1,74,75]]],[35,1,1,75,76,[[906,1,1,75,76]]]],[1,3,4,17,1798,1799,1909,5015,5076,5874,7249,8614,8631,12908,12909,12965,13107,13150,13153,13225,13226,13233,13272,13273,13294,13305,13352,13400,13436,13452,13477,13507,13535,13705,13788,13812,14146,14416,15320,15591,15634,15709,15713,15807,16250,16251,16446,16974,17346,17347,17414,17421,17521,17759,17769,17831,18211,18487,18564,18568,18580,18604,18645,18796,18809,18823,20356,20616,21256,22313,22342,22441,22443,22672,22692,22802]]],["+",[3,3,[[18,1,1,0,1,[[584,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]],[22,1,1,2,3,[[707,1,1,2,3]]]],[15713,17346,18211]]],["dark",[7,7,[[5,1,1,0,1,[[188,1,1,0,1]]],[17,2,2,1,3,[[447,1,1,1,2],[459,1,1,2,3]]],[18,2,2,3,5,[[512,1,1,3,4],[565,1,1,4,5]]],[22,1,1,5,6,[[723,1,1,5,6]]],[25,1,1,6,7,[[809,1,1,6,7]]]],[5874,13153,13452,14416,15320,18580,20616]]],["darkness",[66,63,[[0,4,4,0,4,[[0,4,4,0,4]]],[1,4,3,4,7,[[59,3,2,4,6],[63,1,1,6,7]]],[4,2,2,7,9,[[156,1,1,7,8],[157,1,1,8,9]]],[8,1,1,9,10,[[237,1,1,9,10]]],[9,2,2,10,12,[[288,2,2,10,12]]],[17,20,20,12,32,[[438,2,2,12,14],[440,1,1,14,15],[445,1,1,15,16],[447,1,1,16,17],[450,3,3,17,20],[452,2,2,20,22],[453,1,1,22,23],[454,1,1,23,24],[455,1,1,24,25],[457,1,1,25,26],[458,1,1,26,27],[463,1,1,27,28],[464,1,1,28,29],[469,1,1,29,30],[472,1,1,30,31],[473,1,1,31,32]]],[18,7,7,32,39,[[495,1,1,32,33],[581,1,1,33,34],[582,1,1,34,35],[584,1,1,35,36],[589,1,1,36,37],[616,2,2,37,39]]],[19,2,2,39,41,[[629,1,1,39,40],[647,1,1,40,41]]],[20,5,4,41,45,[[660,1,1,41,42],[663,1,1,42,43],[664,2,1,43,44],[669,1,1,44,45]]],[22,10,9,45,54,[[683,3,2,45,47],[687,1,1,47,48],[720,1,1,48,49],[723,2,2,49,51],[725,1,1,51,52],[727,1,1,52,53],[738,1,1,53,54]]],[24,1,1,54,55,[[799,1,1,54,55]]],[25,1,1,55,56,[[833,1,1,55,56]]],[28,2,2,56,58,[[877,2,2,56,58]]],[29,2,2,58,60,[[883,2,2,58,60]]],[32,1,1,60,61,[[899,1,1,60,61]]],[33,1,1,61,62,[[900,1,1,61,62]]],[35,1,1,62,63,[[906,1,1,62,63]]]],[1,3,4,17,1798,1799,1909,5015,5076,7249,8614,8631,12908,12909,12965,13107,13150,13225,13226,13233,13272,13273,13294,13305,13352,13400,13436,13507,13535,13705,13788,13812,14146,15591,15634,15709,15807,16250,16251,16446,16974,17347,17414,17421,17521,17759,17769,17831,18487,18564,18568,18604,18645,18823,20356,21256,22313,22342,22441,22443,22672,22692,22802]]],["night",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13477]]],["obscurity",[2,2,[[22,2,2,0,2,[[736,1,1,0,1],[737,1,1,1,2]]]],[18796,18809]]]]},{"k":"H2823","v":[["mean",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17044]]]]},{"k":"H2824","v":[["*",[2,1,[[18,2,1,0,1,[[495,2,1,0,1]]]],[14129]]],["dark",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14129]]],["darkness",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14129]]]]},{"k":"H2825","v":[["darkness",[5,5,[[0,1,1,0,1,[[14,1,1,0,1]]],[18,2,2,1,3,[[559,1,1,1,2],[616,1,1,2,3]]],[22,2,2,3,5,[[686,1,1,3,4],[728,1,1,4,5]]]],[372,15238,16251,17829,18672]]]]},{"k":"H2826","v":[["feeble",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5565]]]]},{"k":"H2827","v":[["subdueth",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21798]]]]},{"k":"H2828","v":[["Hashum",[5,5,[[14,2,2,0,2,[[404,1,1,0,1],[412,1,1,1,2]]],[15,3,3,2,5,[[419,1,1,2,3],[420,1,1,3,4],[422,1,1,4,5]]]],[12046,12285,12442,12497,12567]]]]},{"k":"H2829","v":[["Heshmon",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6229]]]]},{"k":"H2830","v":[["amber",[3,3,[[25,3,3,0,3,[[802,2,2,0,2],[809,1,1,2,3]]]],[20468,20491,20606]]]]},{"k":"H2831","v":[["Princes",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14931]]]]},{"k":"H2832","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4789,4790]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4790]]],["Hashmonah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4789]]]]},{"k":"H2833","v":[["*",[25,21,[[1,23,20,0,20,[[74,1,1,0,1],[77,11,9,1,10],[78,1,1,10,11],[84,2,2,11,13],[88,8,7,13,20]]],[2,2,1,20,21,[[97,2,1,20,21]]]],[2202,2297,2308,2315,2316,2317,2319,2321,2322,2323,2341,2540,2558,2672,2673,2679,2680,2681,2683,2685,2925]]],["+",[1,1,[[2,1,1,0,1,[[97,1,1,0,1]]]],[2925]]],["breastplate",[24,21,[[1,23,20,0,20,[[74,1,1,0,1],[77,11,9,1,10],[78,1,1,10,11],[84,2,2,11,13],[88,8,7,13,20]]],[2,1,1,20,21,[[97,1,1,20,21]]]],[2202,2297,2308,2315,2316,2317,2319,2321,2322,2323,2341,2540,2558,2672,2673,2679,2680,2681,2683,2685,2925]]]]},{"k":"H2834","v":[["*",[11,10,[[18,1,1,0,1,[[506,1,1,0,1]]],[22,4,4,1,5,[[698,1,1,1,2],[708,1,1,2,3],[725,1,1,3,4],[730,1,1,4,5]]],[23,2,2,5,7,[[757,1,1,5,6],[793,1,1,6,7]]],[25,1,1,7,8,[[805,1,1,7,8]]],[28,2,1,8,9,[[876,2,1,8,9]]],[36,1,1,9,10,[[910,1,1,9,10]]]],[14317,18033,18231,18601,18706,19292,20137,20536,22298,22871]]],["+",[3,2,[[22,1,1,0,1,[[730,1,1,0,1]]],[28,2,1,1,2,[[876,2,1,1,2]]]],[18706,22298]]],["bare",[2,2,[[22,1,1,0,1,[[725,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]]],[18601,20137]]],["discover",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19292]]],["discovereth",[1,1,[[18,1,1,0,1,[[506,1,1,0,1]]]],[14317]]],["out",[1,1,[[36,1,1,0,1,[[910,1,1,0,1]]]],[22871]]],["take",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18231]]],["uncovered",[2,2,[[22,1,1,0,1,[[698,1,1,0,1]]],[25,1,1,1,2,[[805,1,1,1,2]]]],[18033,20536]]]]},{"k":"H2835","v":[["flocks",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9435]]]]},{"k":"H2836","v":[["*",[11,11,[[0,1,1,0,1,[[33,1,1,0,1]]],[1,3,3,1,4,[[76,1,1,1,2],[87,2,2,2,4]]],[4,3,3,4,7,[[159,1,1,4,5],[162,1,1,5,6],[173,1,1,6,7]]],[10,1,1,7,8,[[299,1,1,7,8]]],[13,1,1,8,9,[[374,1,1,8,9]]],[18,1,1,9,10,[[568,1,1,9,10]]],[22,1,1,10,11,[[716,1,1,10,11]]]],[988,2289,2650,2661,5118,5201,5458,9070,11352,15409,18407]]],["+",[1,1,[[13,1,1,0,1,[[374,1,1,0,1]]]],[11352]]],["delight",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5201]]],["desire",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5458]]],["desired",[1,1,[[10,1,1,0,1,[[299,1,1,0,1]]]],[9070]]],["filleted",[3,3,[[1,3,3,0,3,[[76,1,1,0,1],[87,2,2,1,3]]]],[2289,2650,2661]]],["longeth",[1,1,[[0,1,1,0,1,[[33,1,1,0,1]]]],[988]]],["love",[3,3,[[4,1,1,0,1,[[159,1,1,0,1]]],[18,1,1,1,2,[[568,1,1,1,2]]],[22,1,1,2,3,[[716,1,1,2,3]]]],[5118,15409,18407]]]]},{"k":"H2837","v":[["*",[3,3,[[10,1,1,0,1,[[299,1,1,0,1]]],[13,1,1,1,2,[[374,1,1,1,2]]],[22,1,1,2,3,[[699,1,1,2,3]]]],[9052,11352,18039]]],["+",[1,1,[[13,1,1,0,1,[[374,1,1,0,1]]]],[11352]]],["desire",[1,1,[[10,1,1,0,1,[[299,1,1,0,1]]]],[9052]]],["pleasure",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18039]]]]},{"k":"H2838","v":[["fillets",[8,8,[[1,8,8,0,8,[[76,2,2,0,2],[85,1,1,2,3],[87,5,5,3,8]]]],[2282,2283,2604,2643,2644,2645,2650,2652]]]]},{"k":"H2839","v":[["felloes",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8967]]]]},{"k":"H2840","v":[["spokes",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8967]]]]},{"k":"H2841","v":[["dark",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8614]]]]},{"k":"H2842","v":[["chaff",[2,2,[[22,2,2,0,2,[[683,1,1,0,1],[711,1,1,1,2]]]],[17763,18290]]]]},{"k":"H2843","v":[["Hushathite",[5,5,[[9,2,2,0,2,[[287,1,1,0,1],[289,1,1,1,2]]],[12,3,3,2,5,[[348,1,1,2,3],[357,1,1,3,4],[364,1,1,4,5]]]],[8598,8680,10702,10930,11120]]]]},{"k":"H2844","v":[["*",[9,7,[[0,1,1,0,1,[[8,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[17,1,1,2,3,[[476,1,1,2,3]]],[22,4,2,3,5,[[685,1,1,3,4],[686,3,1,4,5]]],[23,2,2,5,7,[[790,1,1,5,6],[794,1,1,6,7]]]],[207,7244,13921,17790,17816,20050,20168]]],["broken",[5,3,[[8,1,1,0,1,[[237,1,1,0,1]]],[22,4,2,1,3,[[685,1,1,1,2],[686,3,1,2,3]]]],[7244,17790,17816]]],["dismayed",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20050]]],["dread",[1,1,[[0,1,1,0,1,[[8,1,1,0,1]]]],[207]]],["fear",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13921]]],["pieces",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20168]]]]},{"k":"H2845","v":[["Heth",[14,12,[[0,13,11,0,11,[[9,1,1,0,1],[22,8,7,1,8],[24,1,1,8,9],[26,2,1,9,10],[48,1,1,10,11]]],[12,1,1,11,12,[[338,1,1,11,12]]]],[249,574,576,578,581,587,589,591,668,773,1505,10265]]]]},{"k":"H2846","v":[["*",[4,4,[[18,1,1,0,1,[[529,1,1,0,1]]],[19,2,2,1,3,[[633,1,1,1,2],[652,1,1,2,3]]],[22,1,1,3,4,[[708,1,1,3,4]]]],[14715,16567,17135,18231]]],["away",[1,1,[[18,1,1,0,1,[[529,1,1,0,1]]]],[14715]]],["heap",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17135]]],["take",[2,2,[[19,1,1,0,1,[[633,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]]],[16567,18231]]]]},{"k":"H2847","v":[["terror",[1,1,[[0,1,1,0,1,[[34,1,1,0,1]]]],[1016]]]]},{"k":"H2848","v":[["roller",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21225]]]]},{"k":"H2849","v":[["fears",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17528]]]]},{"k":"H2850","v":[["*",[46,45,[[0,9,8,0,8,[[14,1,1,0,1],[22,1,1,1,2],[24,1,1,2,3],[25,2,1,3,4],[35,1,1,4,5],[48,2,2,5,7],[49,1,1,7,8]]],[1,7,7,8,15,[[52,2,2,8,10],[62,1,1,10,11],[72,2,2,11,13],[82,1,1,13,14],[83,1,1,14,15]]],[3,1,1,15,16,[[129,1,1,15,16]]],[4,2,2,16,18,[[159,1,1,16,17],[172,1,1,17,18]]],[5,6,6,18,24,[[187,1,1,18,19],[189,1,1,19,20],[195,1,1,20,21],[197,1,1,21,22],[198,1,1,22,23],[210,1,1,23,24]]],[6,2,2,24,26,[[211,1,1,24,25],[213,1,1,25,26]]],[8,1,1,26,27,[[261,1,1,26,27]]],[9,8,8,27,35,[[277,5,5,27,32],[278,2,2,32,34],[289,1,1,34,35]]],[10,4,4,35,39,[[299,1,1,35,36],[300,1,1,36,37],[301,1,1,37,38],[305,1,1,38,39]]],[11,1,1,39,40,[[319,1,1,39,40]]],[12,1,1,40,41,[[348,1,1,40,41]]],[13,2,2,41,43,[[367,1,1,41,42],[374,1,1,42,43]]],[14,1,1,43,44,[[411,1,1,43,44]]],[15,1,1,44,45,[[421,1,1,44,45]]]],[380,581,667,726,1042,1502,1503,1519,1587,1596,1872,2167,2172,2475,2507,4104,5112,5444,5855,5903,6038,6110,6138,6487,6535,6573,7911,8262,8265,8276,8280,8283,8295,8296,8692,9071,9108,9109,9254,9713,10714,11211,11353,12238,12519]]],["Hittite",[24,23,[[0,8,7,0,7,[[22,1,1,0,1],[24,1,1,1,2],[25,2,1,2,3],[35,1,1,3,4],[48,2,2,4,6],[49,1,1,6,7]]],[1,3,3,7,10,[[72,1,1,7,8],[82,1,1,8,9],[83,1,1,9,10]]],[5,2,2,10,12,[[195,1,1,10,11],[197,1,1,11,12]]],[8,1,1,12,13,[[261,1,1,12,13]]],[9,8,8,13,21,[[277,5,5,13,18],[278,2,2,18,20],[289,1,1,20,21]]],[10,1,1,21,22,[[305,1,1,21,22]]],[12,1,1,22,23,[[348,1,1,22,23]]]],[581,667,726,1042,1502,1503,1519,2172,2475,2507,6038,6110,7911,8262,8265,8276,8280,8283,8295,8296,8692,9254,10714]]],["Hittites",[22,22,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,4,4,1,5,[[52,2,2,1,3],[62,1,1,3,4],[72,1,1,4,5]]],[3,1,1,5,6,[[129,1,1,5,6]]],[4,2,2,6,8,[[159,1,1,6,7],[172,1,1,7,8]]],[5,4,4,8,12,[[187,1,1,8,9],[189,1,1,9,10],[198,1,1,10,11],[210,1,1,11,12]]],[6,2,2,12,14,[[211,1,1,12,13],[213,1,1,13,14]]],[10,3,3,14,17,[[299,1,1,14,15],[300,1,1,15,16],[301,1,1,16,17]]],[11,1,1,17,18,[[319,1,1,17,18]]],[13,2,2,18,20,[[367,1,1,18,19],[374,1,1,19,20]]],[14,1,1,20,21,[[411,1,1,20,21]]],[15,1,1,21,22,[[421,1,1,21,22]]]],[380,1587,1596,1872,2167,4104,5112,5444,5855,5903,6138,6487,6535,6573,9071,9108,9109,9713,11211,11353,12238,12519]]]]},{"k":"H2851","v":[["*",[10,10,[[25,10,10,0,10,[[817,2,2,0,2],[827,1,1,2,3],[833,7,7,3,10]]]],[20765,20807,21117,21271,21272,21273,21274,21275,21278,21280]]],["Hittite",[2,2,[[25,2,2,0,2,[[817,2,2,0,2]]]],[20765,20807]]],["terror",[8,8,[[25,8,8,0,8,[[827,1,1,0,1],[833,7,7,1,8]]]],[21117,21271,21272,21273,21274,21275,21278,21280]]]]},{"k":"H2852","v":[["determined",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22012]]]]},{"k":"H2853","v":[["+",[2,1,[[25,2,1,0,1,[[817,2,1,0,1]]]],[20766]]]]},{"k":"H2854","v":[["swaddlingband",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13802]]]]},{"k":"H2855","v":[["Hethlon",[2,2,[[25,2,2,0,2,[[848,1,1,0,1],[849,1,1,1,2]]]],[21694,21703]]]]},{"k":"H2856","v":[["*",[27,24,[[2,1,1,0,1,[[104,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[10,1,1,2,3,[[311,1,1,2,3]]],[15,2,2,3,5,[[421,1,1,3,4],[422,1,1,4,5]]],[16,4,3,5,8,[[428,1,1,5,6],[433,3,2,6,8]]],[17,5,5,8,13,[[444,1,1,8,9],[449,1,1,9,10],[459,1,1,10,11],[468,1,1,11,12],[472,1,1,12,13]]],[21,1,1,13,14,[[674,1,1,13,14]]],[22,3,2,14,16,[[686,1,1,14,15],[707,2,1,15,16]]],[23,4,4,16,20,[[776,4,4,16,20]]],[25,1,1,20,21,[[829,1,1,20,21]]],[26,4,3,21,24,[[858,2,1,21,22],[861,2,2,22,24]]]],[3171,5792,9459,12549,12550,12759,12825,12827,13058,13198,13452,13666,13776,17594,17823,18204,19741,19742,19745,19775,21169,22012,22085,22090]]],["+",[2,2,[[15,2,2,0,2,[[421,1,1,0,1],[422,1,1,1,2]]]],[12549,12550]]],["end",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22012]]],["marked",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13452]]],["seal",[4,4,[[16,1,1,0,1,[[433,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]],[23,1,1,2,3,[[776,1,1,2,3]]],[26,1,1,3,4,[[861,1,1,3,4]]]],[12825,17823,19775,22085]]],["sealed",[11,10,[[10,1,1,0,1,[[311,1,1,0,1]]],[16,3,3,1,4,[[428,1,1,1,2],[433,2,2,2,4]]],[21,1,1,4,5,[[674,1,1,4,5]]],[22,2,1,5,6,[[707,2,1,5,6]]],[23,3,3,6,9,[[776,3,3,6,9]]],[26,1,1,9,10,[[861,1,1,9,10]]]],[9459,12759,12825,12827,17594,18204,19741,19742,19745,22090]]],["sealeth",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13666]]],["stopped",[1,1,[[2,1,1,0,1,[[104,1,1,0,1]]]],[3171]]],["up",[6,6,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,3,3,1,4,[[444,1,1,1,2],[449,1,1,2,3],[472,1,1,3,4]]],[25,1,1,4,5,[[829,1,1,4,5]]],[26,1,1,5,6,[[858,1,1,5,6]]]],[5792,13058,13198,13776,21169,22012]]]]},{"k":"H2857","v":[["sealed",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21922]]]]},{"k":"H2858","v":[["signet",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1144]]]]},{"k":"H2859","v":[["*",[28,27,[[0,1,1,0,1,[[33,1,1,0,1]]],[1,15,14,1,15,[[52,1,1,1,2],[53,1,1,2,3],[67,13,12,3,15]]],[3,1,1,15,16,[[126,1,1,15,16]]],[4,2,2,16,18,[[159,1,1,16,17],[179,1,1,17,18]]],[5,1,1,18,19,[[209,1,1,18,19]]],[6,5,5,19,24,[[211,1,1,19,20],[214,1,1,20,21],[229,3,3,21,24]]],[10,1,1,24,25,[[293,1,1,24,25]]],[13,1,1,25,26,[[384,1,1,25,26]]],[14,1,1,26,27,[[411,1,1,26,27]]]],[989,1580,1619,2000,2001,2004,2005,2006,2007,2011,2013,2014,2016,2023,2026,4017,5114,5608,6472,6525,6610,7028,7031,7033,8817,11543,12251]]],["+",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2007]]],["affinity",[3,3,[[10,1,1,0,1,[[293,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]],[14,1,1,2,3,[[411,1,1,2,3]]]],[8817,11543,12251]]],["law",[21,20,[[1,14,13,0,13,[[52,1,1,0,1],[53,1,1,1,2],[67,12,11,2,13]]],[3,1,1,13,14,[[126,1,1,13,14]]],[4,1,1,14,15,[[179,1,1,14,15]]],[6,5,5,15,20,[[211,1,1,15,16],[214,1,1,16,17],[229,3,3,17,20]]]],[1580,1619,2000,2001,2004,2005,2006,2011,2013,2014,2016,2023,2026,4017,5608,6525,6610,7028,7031,7033]]],["marriages",[3,3,[[0,1,1,0,1,[[33,1,1,0,1]]],[4,1,1,1,2,[[159,1,1,1,2]]],[5,1,1,2,3,[[209,1,1,2,3]]]],[989,5114,6472]]]]},{"k":"H2860","v":[["*",[25,24,[[0,3,2,0,2,[[18,3,2,0,2]]],[1,2,2,2,4,[[53,2,2,2,4]]],[6,2,2,4,6,[[225,1,1,4,5],[229,1,1,5,6]]],[8,7,7,6,13,[[253,6,6,6,12],[257,1,1,12,13]]],[11,1,1,13,14,[[320,1,1,13,14]]],[15,2,2,14,16,[[418,1,1,14,15],[425,1,1,15,16]]],[18,1,1,16,17,[[496,1,1,16,17]]],[22,2,2,17,19,[[739,1,1,17,18],[740,1,1,18,19]]],[23,4,4,19,23,[[751,1,1,19,20],[760,1,1,20,21],[769,1,1,21,22],[777,1,1,22,23]]],[28,1,1,23,24,[[877,1,1,23,24]]]],[469,471,1626,1627,6935,7029,7694,7697,7698,7699,7702,7703,7801,9754,12419,12699,14173,18853,18859,19153,19345,19544,19786,22327]]],["bridegroom",[8,8,[[18,1,1,0,1,[[496,1,1,0,1]]],[22,2,2,1,3,[[739,1,1,1,2],[740,1,1,2,3]]],[23,4,4,3,7,[[751,1,1,3,4],[760,1,1,4,5],[769,1,1,5,6],[777,1,1,6,7]]],[28,1,1,7,8,[[877,1,1,7,8]]]],[14173,18853,18859,19153,19345,19544,19786,22327]]],["husband",[2,2,[[1,2,2,0,2,[[53,2,2,0,2]]]],[1626,1627]]],["law",[15,14,[[0,3,2,0,2,[[18,3,2,0,2]]],[6,2,2,2,4,[[225,1,1,2,3],[229,1,1,3,4]]],[8,7,7,4,11,[[253,6,6,4,10],[257,1,1,10,11]]],[11,1,1,11,12,[[320,1,1,11,12]]],[15,2,2,12,14,[[418,1,1,12,13],[425,1,1,13,14]]]],[469,471,6935,7029,7694,7697,7698,7699,7702,7703,7801,9754,12419,12699]]]]},{"k":"H2861","v":[["espousals",[1,1,[[21,1,1,0,1,[[673,1,1,0,1]]]],[17582]]]]},{"k":"H2862","v":[["away",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13063]]]]},{"k":"H2863","v":[["prey",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17072]]]]},{"k":"H2864","v":[["*",[8,7,[[17,1,1,0,1,[[459,1,1,0,1]]],[25,5,4,1,5,[[809,2,1,1,2],[813,3,3,2,5]]],[29,1,1,5,6,[[887,1,1,5,6]]],[31,1,1,6,7,[[889,1,1,6,7]]]],[13452,20612,20685,20687,20692,22497,22544]]],["Dig",[1,1,[[25,1,1,0,1,[[813,1,1,0,1]]]],[20685]]],["dig",[3,3,[[25,2,2,0,2,[[809,1,1,0,1],[813,1,1,1,2]]],[29,1,1,2,3,[[887,1,1,2,3]]]],[20612,20692,22497]]],["digged",[2,2,[[25,2,2,0,2,[[809,1,1,0,1],[813,1,1,1,2]]]],[20612,20687]]],["rowed",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22544]]],["through",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13452]]]]},{"k":"H2865","v":[["*",[48,45,[[4,2,2,0,2,[[153,1,1,0,1],[183,1,1,1,2]]],[5,3,3,2,5,[[187,1,1,2,3],[194,1,1,3,4],[196,1,1,4,5]]],[8,2,2,5,7,[[237,1,1,5,6],[252,1,1,6,7]]],[11,1,1,7,8,[[331,1,1,7,8]]],[12,2,2,8,10,[[359,1,1,8,9],[365,1,1,9,10]]],[13,3,3,10,13,[[386,2,2,10,12],[398,1,1,12,13]]],[17,4,4,13,17,[[442,1,1,13,14],[466,1,1,14,15],[467,1,1,15,16],[474,1,1,16,17]]],[22,8,8,17,25,[[687,1,1,17,18],[698,1,1,18,19],[708,1,1,19,20],[709,2,2,20,22],[715,1,1,22,23],[729,2,2,23,25]]],[23,18,15,25,40,[[745,2,1,25,26],[752,1,1,26,27],[754,2,1,27,28],[758,1,1,28,29],[761,2,1,29,30],[767,1,1,30,31],[774,1,1,31,32],[790,1,1,32,33],[792,3,3,33,36],[793,1,1,36,37],[794,2,2,37,39],[795,1,1,39,40]]],[25,2,2,40,42,[[803,1,1,40,41],[804,1,1,41,42]]],[30,1,1,42,43,[[888,1,1,42,43]]],[34,1,1,43,44,[[904,1,1,43,44]]],[38,1,1,44,45,[[926,1,1,44,45]]]],[4913,5736,5860,6003,6089,7250,7629,10087,10977,11163,11602,11604,11882,13022,13622,13643,13856,17833,18034,18248,18254,18259,18379,18679,18680,18963,19162,19203,19297,19375,19488,19677,20072,20081,20100,20119,20164,20168,20202,20268,20498,20511,22519,22765,23108]]],["+",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17833]]],["abolished",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18679]]],["affrighted",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13856]]],["afraid",[6,6,[[22,4,4,0,4,[[698,1,1,0,1],[709,2,2,1,3],[729,1,1,3,4]]],[34,1,1,4,5,[[904,1,1,4,5]]],[38,1,1,5,6,[[926,1,1,5,6]]]],[18034,18254,18259,18680,22765,23108]]],["amazed",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13643]]],["broken",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20268]]],["chapt",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19297]]],["confound",[1,1,[[23,1,1,0,1,[[745,1,1,0,1]]]],[18963]]],["discouraged",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4913]]],["dismayed",[27,25,[[4,1,1,0,1,[[183,1,1,0,1]]],[5,3,3,1,4,[[187,1,1,1,2],[194,1,1,2,3],[196,1,1,3,4]]],[8,1,1,4,5,[[252,1,1,4,5]]],[11,1,1,5,6,[[331,1,1,5,6]]],[12,2,2,6,8,[[359,1,1,6,7],[365,1,1,7,8]]],[13,3,3,8,11,[[386,2,2,8,10],[398,1,1,10,11]]],[22,1,1,11,12,[[715,1,1,11,12]]],[23,12,10,12,22,[[745,1,1,12,13],[752,1,1,13,14],[754,2,1,14,15],[761,2,1,15,16],[767,1,1,16,17],[774,1,1,17,18],[790,1,1,18,19],[792,1,1,19,20],[793,1,1,20,21],[794,1,1,21,22]]],[25,2,2,22,24,[[803,1,1,22,23],[804,1,1,23,24]]],[30,1,1,24,25,[[888,1,1,24,25]]]],[5736,5860,6003,6089,7629,10087,10977,11163,11602,11604,11882,18379,18963,19162,19203,19375,19488,19677,20072,20081,20164,20202,20498,20511,22519]]],["down",[3,3,[[22,1,1,0,1,[[708,1,1,0,1]]],[23,2,2,1,3,[[792,2,2,1,3]]]],[18248,20100,20119]]],["pieces",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]]],[7250,20168]]],["scarest",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13022]]],["terrify",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13622]]]]},{"k":"H2866","v":[["down",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12999]]]]},{"k":"H2867","v":[["Hathath",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10398]]]]},{"k":"H2868","v":[["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21928]]]]},{"k":"H2869","v":[["*",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[851,1,1,1,2]]]],[12151,21790]]],["fine",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21790]]],["good",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12151]]]]},{"k":"H2870","v":[["*",[2,2,[[14,1,1,0,1,[[406,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]]],[12117,17788]]],["Tabeal",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17788]]],["Tabeel",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12117]]]]},{"k":"H2871","v":[["attire",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21022]]]]},{"k":"H2872","v":[["*",[2,2,[[6,1,1,0,1,[[219,1,1,0,1]]],[25,1,1,1,2,[[839,1,1,1,2]]]],[6791,21437]]],["middle",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6791]]],["midst",[1,1,[[25,1,1,0,1,[[839,1,1,0,1]]]],[21437]]]]},{"k":"H2873","v":[["*",[11,11,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[8,1,1,3,4,[[260,1,1,3,4]]],[18,1,1,4,5,[[514,1,1,4,5]]],[19,1,1,5,6,[[636,1,1,5,6]]],[23,3,3,6,9,[[755,1,1,6,7],[769,1,1,7,8],[795,1,1,8,9]]],[24,1,1,9,10,[[798,1,1,9,10]]],[25,1,1,10,11,[[822,1,1,10,11]]]],[1306,2114,5642,7872,14464,16640,19245,19568,20252,20353,20954]]],["+",[2,2,[[0,1,1,0,1,[[42,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[1306,20954]]],["kill",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2114]]],["killed",[3,3,[[8,1,1,0,1,[[260,1,1,0,1]]],[19,1,1,1,2,[[636,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]]],[7872,16640,20353]]],["slain",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5642]]],["slaughter",[3,3,[[23,3,3,0,3,[[755,1,1,0,1],[769,1,1,1,2],[795,1,1,2,3]]]],[19245,19568,20252]]],["slay",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14464]]]]},{"k":"H2874","v":[["*",[12,12,[[0,1,1,0,1,[[42,1,1,0,1]]],[19,2,2,1,3,[[634,1,1,1,2],[636,1,1,2,3]]],[22,4,4,3,7,[[712,2,2,3,5],[731,1,1,5,6],[743,1,1,6,7]]],[23,2,2,7,9,[[792,1,1,7,8],[794,1,1,8,9]]],[25,3,3,9,12,[[822,3,3,9,12]]]],[1306,16597,16640,18305,18309,18718,18909,20095,20193,20954,20959,20972]]],["+",[2,2,[[0,1,1,0,1,[[42,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[1306,20954]]],["beasts",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16640]]],["slaughter",[9,9,[[19,1,1,0,1,[[634,1,1,0,1]]],[22,4,4,1,5,[[712,2,2,1,3],[731,1,1,3,4],[743,1,1,4,5]]],[23,2,2,5,7,[[792,1,1,5,6],[794,1,1,6,7]]],[25,2,2,7,9,[[822,2,2,7,9]]]],[16597,18305,18309,18718,18909,20095,20193,20959,20972]]]]},{"k":"H2875","v":[["Tebah",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[571]]]]},{"k":"H2876","v":[["*",[32,32,[[0,6,6,0,6,[[36,1,1,0,1],[38,1,1,1,2],[39,2,2,2,4],[40,2,2,4,6]]],[8,2,2,6,8,[[244,2,2,6,8]]],[11,7,7,8,15,[[337,7,7,8,15]]],[23,17,17,15,32,[[783,4,4,15,19],[784,3,3,19,22],[785,1,1,22,23],[787,1,1,23,24],[796,8,8,24,32]]]],[1119,1150,1175,1176,1205,1207,7414,7415,10230,10232,10233,10234,10237,10240,10242,19932,19933,19934,19936,19942,19943,19946,19967,20003,20288,20290,20291,20292,20295,20300,20302,20306]]],["cook",[2,2,[[8,2,2,0,2,[[244,2,2,0,2]]]],[7414,7415]]],["guard",[29,29,[[0,5,5,0,5,[[36,1,1,0,1],[38,1,1,1,2],[39,2,2,2,4],[40,1,1,4,5]]],[11,7,7,5,12,[[337,7,7,5,12]]],[23,17,17,12,29,[[783,4,4,12,16],[784,3,3,16,19],[785,1,1,19,20],[787,1,1,20,21],[796,8,8,21,29]]]],[1119,1150,1175,1176,1207,10230,10232,10233,10234,10237,10240,10242,19932,19933,19934,19936,19942,19943,19946,19967,20003,20288,20290,20291,20292,20295,20300,20302,20306]]],["guard's",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1205]]]]},{"k":"H2877","v":[["guard",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21772]]]]},{"k":"H2878","v":[["*",[3,3,[[8,1,1,0,1,[[260,1,1,0,1]]],[18,1,1,1,2,[[521,1,1,1,2]]],[23,1,1,2,3,[[756,1,1,2,3]]]],[7872,14593,19252]]],["flesh",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7872]]],["slaughter",[2,2,[[18,1,1,0,1,[[521,1,1,0,1]]],[23,1,1,1,2,[[756,1,1,1,2]]]],[14593,19252]]]]},{"k":"H2879","v":[["cooks",[1,1,[[8,1,1,0,1,[[243,1,1,0,1]]]],[7382]]]]},{"k":"H2880","v":[["+",[1,1,[[12,1,1,0,1,[[355,1,1,0,1]]]],[10898]]]]},{"k":"H2881","v":[["*",[16,16,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[2,6,6,2,8,[[93,2,2,2,4],[98,1,1,4,5],[103,3,3,5,8]]],[3,1,1,8,9,[[135,1,1,8,9]]],[4,1,1,9,10,[[185,1,1,9,10]]],[5,1,1,10,11,[[189,1,1,10,11]]],[7,1,1,11,12,[[233,1,1,11,12]]],[8,1,1,12,13,[[249,1,1,12,13]]],[11,2,2,13,15,[[317,1,1,13,14],[320,1,1,14,15]]],[17,1,1,15,16,[[444,1,1,15,16]]]],[1114,1838,2801,2812,2962,3117,3127,3162,4307,5834,5908,7163,7535,9661,9742,13082]]],["+",[3,3,[[0,1,1,0,1,[[36,1,1,0,1]]],[2,2,2,1,3,[[93,1,1,1,2],[103,1,1,2,3]]]],[1114,2801,3127]]],["dip",[7,7,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,3,3,1,4,[[93,1,1,1,2],[103,2,2,2,4]]],[3,1,1,4,5,[[135,1,1,4,5]]],[4,1,1,5,6,[[185,1,1,5,6]]],[7,1,1,6,7,[[233,1,1,6,7]]]],[1838,2812,3117,3162,4307,5834,7163]]],["dipped",[5,5,[[2,1,1,0,1,[[98,1,1,0,1]]],[5,1,1,1,2,[[189,1,1,1,2]]],[8,1,1,2,3,[[249,1,1,2,3]]],[11,2,2,3,5,[[317,1,1,3,4],[320,1,1,4,5]]]],[2962,5908,7535,9661,9742]]],["plunge",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13082]]]]},{"k":"H2882","v":[["Tebaliah",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11088]]]]},{"k":"H2883","v":[["*",[10,10,[[1,1,1,0,1,[[64,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[17,1,1,2,3,[[473,1,1,2,3]]],[18,3,3,3,6,[[486,1,1,3,4],[546,2,2,4,6]]],[19,1,1,6,7,[[635,1,1,6,7]]],[23,2,2,7,9,[[782,2,2,7,9]]],[24,1,1,9,10,[[798,1,1,9,10]]]],[1924,7667,13799,14036,14937,14949,16627,19901,19917,20341]]],["down",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14036]]],["drowned",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1924]]],["fastened",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13799]]],["settled",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16627]]],["sink",[2,2,[[18,2,2,0,2,[[546,2,2,0,2]]]],[14937,14949]]],["sunk",[4,4,[[8,1,1,0,1,[[252,1,1,0,1]]],[23,2,2,1,3,[[782,2,2,1,3]]],[24,1,1,3,4,[[798,1,1,3,4]]]],[7667,19901,19917,20341]]]]},{"k":"H2884","v":[["Tabbaoth",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12070,12466]]]]},{"k":"H2885","v":[["*",[49,38,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,40,30,1,31,[[74,8,5,1,6],[75,2,2,6,8],[76,2,2,8,10],[77,7,5,10,15],[79,1,1,15,16],[84,1,1,16,17],[85,2,2,17,19],[86,8,5,19,24],[87,2,2,24,26],[88,7,5,26,31]]],[3,1,1,31,32,[[147,1,1,31,32]]],[16,6,5,32,37,[[428,2,2,32,34],[433,4,3,34,37]]],[22,1,1,37,38,[[681,1,1,37,38]]]],[1237,2207,2209,2210,2221,2222,2259,2264,2276,2279,2316,2317,2319,2320,2321,2386,2553,2595,2600,2607,2609,2617,2618,2631,2638,2640,2680,2681,2683,2684,2685,4714,12757,12759,12819,12825,12827,17728]]],["+",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2321,2685]]],["ring",[9,8,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,2,2,1,3,[[75,1,1,1,2],[85,1,1,2,3]]],[16,6,5,3,8,[[428,2,2,3,5],[433,4,3,5,8]]]],[1237,2259,2595,12757,12759,12819,12825,12827]]],["rings",[38,30,[[1,36,28,0,28,[[74,8,5,0,5],[75,1,1,5,6],[76,2,2,6,8],[77,6,5,8,13],[79,1,1,13,14],[84,1,1,14,15],[85,1,1,15,16],[86,8,5,16,21],[87,2,2,21,23],[88,6,5,23,28]]],[3,1,1,28,29,[[147,1,1,28,29]]],[22,1,1,29,30,[[681,1,1,29,30]]]],[2207,2209,2210,2221,2222,2264,2276,2279,2316,2317,2319,2320,2321,2386,2553,2600,2607,2609,2617,2618,2631,2638,2640,2680,2681,2683,2684,2685,4714,17728]]]]},{"k":"H2886","v":[["Tabrimon",[1,1,[[10,1,1,0,1,[[305,1,1,0,1]]]],[9267]]]]},{"k":"H2887","v":[["Tebeth",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12740]]]]},{"k":"H2888","v":[["Tabbath",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6716]]]]},{"k":"H2889","v":[["*",[95,88,[[0,6,3,0,3,[[6,4,2,0,2],[7,2,1,2,3]]],[1,28,28,3,31,[[74,8,8,3,11],[77,3,3,11,14],[79,2,2,14,16],[80,1,1,16,17],[86,10,10,17,27],[88,4,4,27,31]]],[2,21,20,31,51,[[93,1,1,31,32],[95,1,1,32,33],[96,1,1,33,34],[99,2,2,34,36],[100,3,3,36,39],[102,6,6,39,45],[103,2,2,45,47],[104,1,1,47,48],[109,2,1,48,49],[113,2,2,49,51]]],[3,8,7,51,58,[[121,1,1,51,52],[125,1,1,52,53],[134,2,2,53,55],[135,4,3,55,58]]],[4,6,6,58,64,[[164,2,2,58,60],[166,2,2,60,62],[167,1,1,62,63],[175,1,1,63,64]]],[8,2,1,64,65,[[255,2,1,64,65]]],[9,1,1,65,66,[[288,1,1,65,66]]],[12,1,1,66,67,[[365,1,1,66,67]]],[13,4,4,67,71,[[369,1,1,67,68],[375,1,1,68,69],[379,1,1,69,70],[396,1,1,70,71]]],[14,1,1,71,72,[[408,1,1,71,72]]],[17,3,3,72,75,[[449,1,1,72,73],[452,1,1,73,74],[463,1,1,74,75]]],[18,3,3,75,78,[[489,1,1,75,76],[496,1,1,76,77],[528,1,1,77,78]]],[19,2,2,78,80,[[642,1,1,78,79],[657,1,1,79,80]]],[20,1,1,80,81,[[667,1,1,80,81]]],[22,1,1,81,82,[[744,1,1,81,82]]],[25,3,3,82,85,[[823,1,1,82,83],[837,1,1,83,84],[845,1,1,84,85]]],[34,1,1,85,86,[[903,1,1,85,86]]],[37,2,1,86,87,[[913,2,1,86,87]]],[38,1,1,87,88,[[925,1,1,87,88]]]],[161,167,203,2206,2212,2219,2224,2226,2231,2233,2234,2307,2315,2329,2385,2417,2428,2606,2610,2615,2620,2621,2626,2627,2628,2630,2633,2679,2689,2694,2701,2807,2860,2898,2987,2991,3033,3034,3044,3065,3069,3089,3091,3092,3093,3115,3168,3176,3343,3450,3452,3820,3978,4268,4270,4298,4307,4308,5255,5262,5301,5310,5341,5510,7756,8629,11160,11233,11381,11464,11844,12171,13185,13269,13523,14072,14177,14701,16833,17263,17477,18942,21002,21384,21622,22744,22917,23100]]],["clean",[51,45,[[0,6,3,0,3,[[6,4,2,0,2],[7,2,1,2,3]]],[2,19,18,3,21,[[93,1,1,3,4],[95,1,1,4,5],[96,1,1,5,6],[99,2,2,6,8],[100,3,3,8,11],[102,6,6,11,17],[103,2,2,17,19],[104,1,1,19,20],[109,2,1,20,21]]],[3,8,7,21,28,[[121,1,1,21,22],[125,1,1,22,23],[134,2,2,23,25],[135,4,3,25,28]]],[4,6,6,28,34,[[164,2,2,28,30],[166,2,2,30,32],[167,1,1,32,33],[175,1,1,33,34]]],[8,2,1,34,35,[[255,2,1,34,35]]],[13,1,1,35,36,[[396,1,1,35,36]]],[17,2,2,36,38,[[449,1,1,36,37],[452,1,1,37,38]]],[18,2,2,38,40,[[496,1,1,38,39],[528,1,1,39,40]]],[20,1,1,40,41,[[667,1,1,40,41]]],[22,1,1,41,42,[[744,1,1,41,42]]],[25,3,3,42,45,[[823,1,1,42,43],[837,1,1,43,44],[845,1,1,44,45]]]],[161,167,203,2807,2860,2898,2987,2991,3033,3034,3044,3065,3069,3089,3091,3092,3093,3115,3168,3176,3343,3820,3978,4268,4270,4298,4307,4308,5255,5262,5301,5310,5341,5510,7756,11844,13185,13269,14177,14701,17477,18942,21002,21384,21622]]],["fair",[2,1,[[37,2,1,0,1,[[913,2,1,0,1]]]],[22917]]],["pure",[41,41,[[1,28,28,0,28,[[74,8,8,0,8],[77,3,3,8,11],[79,2,2,11,13],[80,1,1,13,14],[86,10,10,14,24],[88,4,4,24,28]]],[2,2,2,28,30,[[113,2,2,28,30]]],[9,1,1,30,31,[[288,1,1,30,31]]],[12,1,1,31,32,[[365,1,1,31,32]]],[13,3,3,32,35,[[369,1,1,32,33],[375,1,1,33,34],[379,1,1,34,35]]],[14,1,1,35,36,[[408,1,1,35,36]]],[17,1,1,36,37,[[463,1,1,36,37]]],[18,1,1,37,38,[[489,1,1,37,38]]],[19,2,2,38,40,[[642,1,1,38,39],[657,1,1,39,40]]],[38,1,1,40,41,[[925,1,1,40,41]]]],[2206,2212,2219,2224,2226,2231,2233,2234,2307,2315,2329,2385,2417,2428,2606,2610,2615,2620,2621,2626,2627,2628,2630,2633,2679,2689,2694,2701,3450,3452,8629,11160,11233,11381,11464,12171,13523,14072,16833,17263,23100]]],["purer",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22744]]]]},{"k":"H2890","v":[["pureness",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17026]]]]},{"k":"H2891","v":[["*",[94,79,[[0,1,1,0,1,[[34,1,1,0,1]]],[2,43,35,1,36,[[100,1,1,1,2],[101,2,2,2,4],[102,11,9,4,13],[103,19,16,13,29],[104,4,2,29,31],[105,3,2,31,33],[106,1,1,33,34],[111,2,2,34,36]]],[3,10,8,36,44,[[124,5,4,36,40],[135,3,2,40,42],[147,2,2,42,44]]],[5,1,1,44,45,[[208,1,1,44,45]]],[11,4,4,45,49,[[317,4,4,45,49]]],[13,7,7,49,56,[[395,3,3,49,52],[396,1,1,52,53],[400,3,3,53,56]]],[14,1,1,56,57,[[408,1,1,56,57]]],[15,5,4,57,61,[[424,2,1,57,58],[425,3,3,58,61]]],[17,2,2,61,63,[[439,1,1,61,62],[472,1,1,62,63]]],[18,2,2,63,65,[[528,2,2,63,65]]],[19,1,1,65,66,[[647,1,1,65,66]]],[22,1,1,66,67,[[744,1,1,66,67]]],[23,2,2,67,69,[[757,1,1,67,68],[777,1,1,68,69]]],[25,12,9,69,78,[[823,1,1,69,70],[825,3,1,70,71],[837,3,2,71,73],[838,1,1,73,74],[840,3,3,74,77],[844,1,1,77,78]]],[38,2,1,78,79,[[927,2,1,78,79]]]],[1013,3029,3051,3052,3058,3065,3069,3075,3080,3086,3089,3110,3111,3115,3118,3119,3120,3122,3125,3128,3129,3130,3131,3136,3139,3140,3142,3159,3164,3181,3196,3220,3231,3250,3373,3376,3945,3946,3954,3960,4301,4308,4687,4688,6443,9657,9659,9660,9661,11806,11807,11809,11845,11936,11938,11941,12171,12654,12680,12693,12701,12947,13790,14693,14698,16963,18939,19293,19783,21000,21069,21384,21392,21420,21460,21462,21464,21598,23123]]],["+",[8,8,[[2,2,2,0,2,[[102,1,1,0,1],[103,1,1,1,2]]],[13,3,3,2,5,[[395,1,1,2,3],[400,2,2,3,5]]],[15,1,1,5,6,[[424,1,1,5,6]]],[25,1,1,6,7,[[840,1,1,6,7]]],[38,1,1,7,8,[[927,1,1,7,8]]]],[3086,3159,11809,11936,11938,12654,21460,23123]]],["clean",[38,35,[[0,1,1,0,1,[[34,1,1,0,1]]],[2,24,22,1,23,[[101,1,1,1,2],[102,10,9,2,11],[103,7,6,11,17],[104,2,2,17,19],[105,1,1,19,20],[106,1,1,20,21],[111,2,2,21,23]]],[3,6,5,23,28,[[124,1,1,23,24],[135,3,2,24,26],[147,2,2,26,28]]],[11,4,4,28,32,[[317,4,4,28,32]]],[18,1,1,32,33,[[528,1,1,32,33]]],[23,1,1,33,34,[[757,1,1,33,34]]],[25,1,1,34,35,[[837,1,1,34,35]]]],[1013,3052,3058,3065,3069,3075,3080,3086,3089,3110,3111,3118,3119,3120,3122,3131,3164,3181,3196,3231,3250,3373,3376,3946,4301,4308,4687,4688,9657,9659,9660,9661,14698,19293,21384]]],["cleanse",[14,14,[[2,2,2,0,2,[[105,2,2,0,2]]],[3,4,4,2,6,[[124,4,4,2,6]]],[13,2,2,6,8,[[395,2,2,6,8]]],[18,1,1,8,9,[[528,1,1,8,9]]],[23,1,1,9,10,[[777,1,1,9,10]]],[25,4,4,10,14,[[837,1,1,10,11],[838,1,1,11,12],[840,2,2,12,14]]]],[3220,3231,3945,3946,3954,3960,11806,11807,14693,19783,21384,21420,21462,21464]]],["cleansed",[20,20,[[2,15,15,0,15,[[100,1,1,0,1],[101,1,1,1,2],[103,11,11,2,13],[104,2,2,13,15]]],[5,1,1,15,16,[[208,1,1,15,16]]],[15,2,2,16,18,[[425,2,2,16,18]]],[25,2,2,18,20,[[823,1,1,18,19],[837,1,1,19,20]]]],[3029,3051,3115,3118,3119,3125,3128,3129,3130,3136,3139,3140,3142,3181,3196,6443,12680,12701,21000,21392]]],["cleanseth",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13790]]],["pure",[2,2,[[17,1,1,0,1,[[439,1,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]]],[12947,16963]]],["purged",[4,2,[[13,1,1,0,1,[[400,1,1,0,1]]],[25,3,1,1,2,[[825,3,1,1,2]]]],[11941,21069]]],["purified",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12171]]],["purifier",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23123]]],["purify",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21598]]],["themselves",[4,4,[[13,1,1,0,1,[[396,1,1,0,1]]],[15,2,2,1,3,[[424,1,1,1,2],[425,1,1,2,3]]],[22,1,1,3,4,[[744,1,1,3,4]]]],[11845,12654,12693,18939]]]]},{"k":"H2892","v":[["*",[4,4,[[1,1,1,0,1,[[73,1,1,0,1]]],[2,2,2,1,3,[[101,2,2,1,3]]],[18,1,1,3,4,[[566,1,1,3,4]]]],[2187,3048,3050,15370]]],["+",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15370]]],["clearness",[1,1,[[1,1,1,0,1,[[73,1,1,0,1]]]],[2187]]],["purifying",[2,2,[[2,2,2,0,2,[[101,2,2,0,2]]]],[3048,3050]]]]},{"k":"H2893","v":[["*",[13,13,[[2,8,8,0,8,[[101,2,2,0,2],[102,2,2,2,4],[103,3,3,4,7],[104,1,1,7,8]]],[3,1,1,8,9,[[122,1,1,8,9]]],[12,1,1,9,10,[[360,1,1,9,10]]],[13,1,1,10,11,[[396,1,1,10,11]]],[15,1,1,11,12,[[424,1,1,11,12]]],[25,1,1,12,13,[[845,1,1,12,13]]]],[3048,3049,3059,3087,3113,3134,3143,3181,3832,11011,11846,12669,21625]]],["cleansed",[1,1,[[25,1,1,0,1,[[845,1,1,0,1]]]],[21625]]],["cleansing",[7,7,[[2,6,6,0,6,[[102,2,2,0,2],[103,3,3,2,5],[104,1,1,5,6]]],[3,1,1,6,7,[[122,1,1,6,7]]]],[3059,3087,3113,3134,3143,3181,3832]]],["purification",[2,2,[[13,1,1,0,1,[[396,1,1,0,1]]],[15,1,1,1,2,[[424,1,1,1,2]]]],[11846,12669]]],["purifying",[3,3,[[2,2,2,0,2,[[101,2,2,0,2]]],[12,1,1,2,3,[[360,1,1,2,3]]]],[3048,3049,11011]]]]},{"k":"H2894","v":[["sweep",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17951]]]]},{"k":"H2895","v":[["*",[31,30,[[3,3,3,0,3,[[127,1,1,0,1],[140,2,2,1,3]]],[4,2,2,3,5,[[157,1,1,3,4],[171,1,1,4,5]]],[8,2,2,5,7,[[251,2,2,5,7]]],[9,2,2,7,9,[[269,1,1,7,8],[279,1,1,8,9]]],[10,2,2,9,11,[[298,1,1,9,10],[311,1,1,10,11]]],[11,1,1,11,12,[[322,1,1,11,12]]],[12,1,1,12,13,[[350,1,1,12,13]]],[13,1,1,13,14,[[372,1,1,13,14]]],[15,2,2,14,16,[[414,2,2,14,16]]],[16,9,8,16,24,[[426,2,2,16,18],[428,1,1,18,19],[430,2,2,19,21],[432,1,1,21,22],[433,2,1,22,23],[434,1,1,23,24]]],[18,1,1,24,25,[[596,1,1,24,25]]],[21,1,1,25,26,[[674,1,1,25,26]]],[22,1,1,26,27,[[681,1,1,26,27]]],[23,1,1,27,28,[[776,1,1,27,28]]],[27,1,1,28,29,[[875,1,1,28,29]]],[37,1,1,29,30,[[921,1,1,29,30]]]],[4042,4447,4451,5086,5419,7611,7618,8117,8345,9003,9453,9823,10762,11290,12312,12314,12712,12721,12756,12783,12787,12810,12822,12847,15966,17592,17717,19772,22284,23040]]],["+",[13,13,[[3,1,1,0,1,[[140,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]],[10,1,1,2,3,[[311,1,1,2,3]]],[15,2,2,3,5,[[414,2,2,3,5]]],[16,6,6,5,11,[[426,1,1,5,6],[428,1,1,6,7],[430,1,1,7,8],[432,1,1,8,9],[433,1,1,9,10],[434,1,1,10,11]]],[23,1,1,11,12,[[776,1,1,11,12]]],[37,1,1,12,13,[[921,1,1,12,13]]]],[4447,8117,9453,12312,12314,12721,12756,12787,12810,12822,12847,19772,23040]]],["better",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17592]]],["good",[3,3,[[12,1,1,0,1,[[350,1,1,0,1]]],[16,1,1,1,2,[[430,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]]],[10762,12783,15966]]],["goodly",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4451]]],["graciously",[1,1,[[27,1,1,0,1,[[875,1,1,0,1]]]],[22284]]],["merry",[2,2,[[9,1,1,0,1,[[279,1,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]]],[8345,12712]]],["pleasing",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12822]]],["well",[9,9,[[3,1,1,0,1,[[127,1,1,0,1]]],[4,2,2,1,3,[[157,1,1,1,2],[171,1,1,2,3]]],[8,2,2,3,5,[[251,2,2,3,5]]],[10,1,1,5,6,[[298,1,1,5,6]]],[11,1,1,6,7,[[322,1,1,6,7]]],[13,1,1,7,8,[[372,1,1,7,8]]],[22,1,1,8,9,[[681,1,1,8,9]]]],[4042,5086,5419,7611,7618,9003,9823,11290,17717]]]]},{"k":"H2896","v":[["*",[554,513,[[0,41,39,0,39,[[0,7,7,0,7],[1,5,4,7,11],[2,3,3,11,14],[5,1,1,14,15],[14,1,1,15,16],[15,1,1,16,17],[17,1,1,17,18],[18,1,1,18,19],[19,1,1,19,20],[23,2,2,20,22],[24,1,1,22,23],[25,2,2,23,25],[26,1,1,25,26],[28,1,1,26,27],[29,1,1,27,28],[30,2,2,28,30],[39,1,1,30,31],[40,6,5,31,36],[43,1,1,36,37],[48,1,1,37,38],[49,1,1,38,39]]],[1,5,5,39,44,[[51,1,1,39,40],[52,1,1,40,41],[63,1,1,41,42],[67,2,2,42,44]]],[2,5,4,44,48,[[116,5,4,44,48]]],[3,7,7,48,55,[[126,2,2,48,50],[129,1,1,50,51],[130,2,2,51,53],[140,1,1,53,54],[152,1,1,54,55]]],[4,28,25,55,80,[[153,4,4,55,59],[155,2,1,59,60],[156,2,2,60,62],[158,4,3,62,65],[160,3,3,65,68],[161,1,1,68,69],[162,1,1,69,70],[163,1,1,70,71],[164,1,1,71,72],[167,1,1,72,73],[175,2,2,73,75],[178,1,1,75,76],[180,2,2,76,78],[182,3,2,78,80]]],[5,8,7,80,87,[[193,1,1,80,81],[195,1,1,81,82],[207,1,1,82,83],[209,5,4,83,87]]],[6,14,13,87,100,[[218,3,3,87,90],[219,3,3,90,93],[220,1,1,93,94],[221,2,1,94,95],[225,1,1,95,96],[226,1,1,96,97],[228,2,2,97,99],[229,1,1,99,100]]],[7,3,3,100,103,[[233,1,1,100,101],[234,1,1,101,102],[235,1,1,102,103]]],[8,37,33,103,136,[[236,2,2,103,105],[237,2,2,105,107],[238,1,1,107,108],[243,2,2,108,110],[244,3,2,110,112],[246,1,1,112,113],[247,1,1,113,114],[249,2,2,114,116],[250,3,3,116,119],[251,1,1,119,120],[254,2,1,120,121],[255,2,2,121,123],[259,4,3,123,126],[260,6,6,126,132],[261,1,1,132,133],[262,1,1,133,134],[264,3,2,134,136]]],[9,24,22,136,158,[[268,1,1,136,137],[269,2,2,137,139],[273,1,1,139,140],[276,1,1,140,141],[277,1,1,141,142],[279,1,1,142,143],[280,2,2,143,145],[281,2,2,145,147],[282,1,1,147,148],[283,3,2,148,150],[284,3,2,150,152],[285,5,5,152,157],[290,1,1,157,158]]],[10,23,21,158,179,[[291,2,2,158,160],[292,4,4,160,164],[293,1,1,164,165],[298,4,3,165,168],[300,1,1,168,169],[302,1,1,169,170],[304,2,2,170,172],[308,1,1,172,173],[309,1,1,173,174],[310,1,1,174,175],[311,1,1,175,176],[312,4,3,176,179]]],[11,12,10,179,189,[[314,1,1,179,180],[315,4,2,180,182],[317,1,1,182,183],[322,2,2,183,185],[332,3,3,185,188],[337,1,1,188,189]]],[12,7,7,189,196,[[341,1,1,189,190],[353,1,1,190,191],[354,1,1,191,192],[356,1,1,192,193],[358,1,1,193,194],[365,1,1,194,195],[366,1,1,195,196]]],[13,23,20,196,216,[[369,2,2,196,198],[371,1,1,198,199],[372,2,2,199,201],[373,3,2,201,203],[376,2,1,203,204],[378,1,1,204,205],[380,1,1,205,206],[384,4,3,206,209],[385,2,2,209,211],[387,1,1,211,212],[390,1,1,212,213],[396,2,2,213,215],[397,1,1,215,216]]],[14,6,6,216,222,[[405,1,1,216,217],[409,1,1,217,218],[410,3,3,218,221],[411,1,1,221,222]]],[15,10,9,222,231,[[414,4,3,222,225],[417,2,2,225,227],[418,1,1,227,228],[421,2,2,228,230],[425,1,1,230,231]]],[16,14,14,231,245,[[426,2,2,231,233],[427,4,4,233,237],[428,1,1,237,238],[430,1,1,238,239],[432,1,1,239,240],[433,2,2,240,242],[434,2,2,242,244],[435,1,1,244,245]]],[17,12,12,245,257,[[437,1,1,245,246],[442,1,1,246,247],[444,1,1,247,248],[445,1,1,248,249],[448,1,1,249,250],[456,2,2,250,252],[457,2,2,252,254],[465,1,1,254,255],[469,1,1,255,256],[471,1,1,256,257]]],[18,69,68,257,325,[[481,1,1,257,258],[491,2,2,258,260],[493,1,1,260,261],[498,1,1,261,262],[500,1,1,262,263],[502,2,2,263,265],[511,4,4,265,269],[512,1,1,269,270],[513,1,1,270,271],[514,3,3,271,274],[515,2,1,274,275],[516,1,1,275,276],[522,1,1,276,277],[529,2,2,277,279],[530,2,2,279,281],[531,1,1,281,282],[540,1,1,282,283],[542,1,1,283,284],[545,1,1,284,285],[546,1,1,285,286],[550,2,2,286,288],[561,2,2,288,290],[562,1,1,290,291],[563,2,2,291,293],[569,1,1,293,294],[577,1,1,294,295],[580,1,1,295,296],[581,1,1,296,297],[583,2,2,297,299],[584,2,2,299,301],[586,2,2,301,303],[588,1,1,303,304],[589,1,1,304,305],[595,4,4,305,309],[596,6,6,309,315],[599,1,1,315,316],[602,1,1,316,317],[605,1,1,317,318],[610,2,2,318,320],[612,1,1,320,321],[613,1,1,321,322],[620,1,1,322,323],[622,1,1,323,324],[624,1,1,324,325]]],[19,62,62,325,387,[[629,2,2,325,327],[630,3,3,327,330],[631,1,1,330,331],[635,2,2,331,333],[638,2,2,333,335],[639,4,4,335,339],[640,4,4,339,343],[641,3,3,343,346],[642,6,6,346,352],[643,6,6,352,358],[644,4,4,358,362],[645,2,2,362,364],[646,4,4,364,368],[647,1,1,368,369],[648,2,2,369,371],[649,2,2,371,373],[651,3,3,373,376],[652,4,4,376,380],[654,2,2,380,382],[655,3,3,382,385],[658,2,2,385,387]]],[20,52,41,387,428,[[660,6,4,387,391],[661,4,3,391,394],[662,6,5,394,399],[663,4,3,399,402],[664,5,4,402,406],[665,14,11,406,417],[666,3,3,417,420],[667,7,5,420,425],[669,2,2,425,427],[670,1,1,427,428]]],[21,3,3,428,431,[[671,2,2,428,430],[677,1,1,430,431]]],[22,13,12,431,443,[[683,3,2,431,433],[685,2,2,433,435],[716,1,1,435,436],[717,2,2,436,438],[719,1,1,438,439],[730,1,1,439,440],[733,1,1,440,441],[734,1,1,441,442],[743,1,1,442,443]]],[23,37,32,443,475,[[749,1,1,443,444],[750,2,2,444,446],[752,1,1,446,447],[756,1,1,447,448],[758,2,2,448,450],[759,1,1,450,451],[761,1,1,451,452],[762,3,2,452,454],[765,1,1,454,455],[766,2,2,455,457],[768,6,4,457,461],[770,1,1,461,462],[773,2,2,462,464],[776,2,2,464,466],[777,4,3,466,469],[783,1,1,469,470],[784,2,1,470,471],[786,1,1,471,472],[788,2,2,472,474],[796,1,1,474,475]]],[24,7,7,475,482,[[799,5,5,475,480],[800,2,2,480,482]]],[25,9,8,482,490,[[818,1,1,482,483],[819,1,1,483,484],[821,1,1,484,485],[825,1,1,485,486],[832,1,1,486,487],[835,3,2,487,489],[837,1,1,489,490]]],[26,2,2,490,492,[[850,2,2,490,492]]],[27,4,4,492,496,[[863,1,1,492,493],[865,1,1,493,494],[869,1,1,494,495],[871,1,1,495,496]]],[28,1,1,496,497,[[878,1,1,496,497]]],[29,4,4,497,501,[[883,2,2,497,499],[884,1,1,499,500],[887,1,1,500,501]]],[31,2,2,501,503,[[892,2,2,501,503]]],[32,4,4,503,507,[[893,1,1,503,504],[895,1,1,504,505],[898,1,1,505,506],[899,1,1,506,507]]],[33,2,2,507,509,[[900,1,1,507,508],[902,1,1,508,509]]],[37,3,3,509,512,[[911,2,2,509,511],[918,1,1,511,512]]],[38,1,1,512,513,[[926,1,1,512,513]]]],[3,9,11,17,20,24,30,39,42,47,48,60,61,77,139,375,387,431,465,510,607,641,666,699,721,736,814,850,897,902,1188,1200,1217,1219,1221,1230,1328,1488,1526,1556,1587,1901,2008,2016,3580,3582,3584,3603,4017,4020,4094,4111,4115,4459,4885,4906,4917,4927,4931,5000,5025,5026,5096,5104,5110,5144,5147,5149,5163,5199,5225,5268,5335,5506,5516,5577,5622,5623,5717,5723,5997,6062,6426,6473,6474,6475,6476,6721,6751,6754,6756,6765,6770,6826,6854,6931,6974,7002,7012,7048,7171,7185,7205,7220,7235,7264,7266,7294,7383,7385,7393,7401,7455,7483,7544,7548,7569,7582,7588,7607,7710,7737,7742,7856,7857,7858,7864,7869,7876,7882,7891,7897,7921,7931,7973,7976,8055,8094,8100,8208,8252,8261,8339,8373,8388,8392,8415,8438,8456,8463,8481,8505,8529,8538,8546,8548,8549,8714,8723,8759,8788,8802,8808,8812,8825,9021,9041,9051,9086,9158,9231,9233,9365,9391,9411,9453,9488,9493,9498,9570,9595,9601,9659,9796,9798,10101,10111,10117,10250,10425,10854,10889,10920,10957,11151,11192,11234,11237,11281,11309,11323,11327,11334,11402,11449,11477,11549,11554,11559,11579,11587,11637,11693,11845,11849,11874,12108,12182,12219,12223,12228,12249,12315,12317,12325,12391,12401,12420,12524,12531,12702,12713,12721,12726,12727,12731,12733,12758,12788,12816,12825,12834,12853,12856,12869,12901,13015,13076,13089,13162,13368,13380,13407,13410,13583,13687,13747,13971,14081,14083,14094,14194,14241,14259,14264,14396,14398,14400,14402,14422,14442,14453,14466,14477,14510,14514,14598,14713,14719,14720,14722,14731,14842,14871,14910,14951,15021,15048,15269,15270,15283,15289,15301,15412,15513,15554,15599,15652,15656,15700,15708,15760,15776,15803,15808,15870,15877,15878,15898,15937,15963,15966,15969,15970,16020,16098,16114,16128,16170,16171,16178,16197,16303,16329,16352,16442,16453,16459,16469,16482,16492,16613,16621,16711,16715,16721,16728,16733,16744,16749,16762,16768,16769,16786,16791,16794,16810,16822,16823,16824,16830,16837,16848,16856,16859,16860,16869,16872,16874,16886,16893,16899,16906,16923,16926,16927,16933,16947,16977,16993,17003,17016,17024,17092,17102,17104,17120,17137,17138,17140,17174,17179,17202,17206,17217,17296,17302,17334,17336,17357,17359,17371,17372,17381,17384,17387,17389,17390,17394,17402,17408,17415,17420,17423,17426,17429,17430,17431,17432,17434,17437,17439,17440,17443,17447,17449,17455,17470,17471,17473,17477,17479,17482,17491,17493,17519,17520,17537,17539,17540,17636,17748,17759,17797,17798,18393,18414,18420,18458,18703,18742,18758,18899,19083,19105,19109,19168,19255,19304,19312,19326,19363,19394,19404,19450,19469,19470,19526,19527,19529,19530,19586,19645,19667,19770,19773,19784,19786,19789,19939,19945,19981,20027,20037,20308,20371,20379,20380,20381,20392,20421,20429,20833,20867,20920,21060,21246,21327,21331,21390,21741,21752,22112,22146,22197,22226,22348,22437,22438,22452,22499,22571,22576,22591,22610,22656,22668,22691,22716,22891,22895,22995,23120]]],["+",[27,26,[[0,4,4,0,4,[[15,1,1,0,1],[19,1,1,1,2],[30,2,2,2,4]]],[3,1,1,4,5,[[152,1,1,4,5]]],[6,2,1,5,6,[[221,2,1,5,6]]],[9,1,1,6,7,[[269,1,1,6,7]]],[10,2,2,7,9,[[291,2,2,7,9]]],[12,1,1,9,10,[[366,1,1,9,10]]],[14,1,1,10,11,[[410,1,1,10,11]]],[15,1,1,11,12,[[417,1,1,11,12]]],[16,5,5,12,17,[[427,3,3,12,15],[428,1,1,15,16],[433,1,1,16,17]]],[18,2,2,17,19,[[516,1,1,17,18],[529,1,1,18,19]]],[20,3,3,19,22,[[660,1,1,19,20],[662,1,1,20,21],[665,1,1,21,22]]],[23,1,1,22,23,[[784,1,1,22,23]]],[26,1,1,23,24,[[850,1,1,23,24]]],[33,1,1,24,25,[[902,1,1,24,25]]],[37,1,1,25,26,[[911,1,1,25,26]]]],[387,510,897,902,4885,6854,8100,8723,8759,11192,12228,12391,12726,12727,12731,12758,12825,14514,14713,17359,17389,17455,19945,21741,22716,22895]]],["Better",[12,12,[[19,7,7,0,7,[[642,2,2,0,2],[643,2,2,2,4],[644,1,1,4,5],[646,1,1,5,6],[655,1,1,6,7]]],[20,5,5,7,12,[[662,2,2,7,9],[663,1,1,9,10],[664,1,1,10,11],[665,1,1,11,12]]]],[16823,16824,16848,16859,16874,16926,17202,17387,17394,17402,17426,17437]]],["Good",[4,4,[[11,1,1,0,1,[[332,1,1,0,1]]],[18,1,1,1,2,[[502,1,1,1,2]]],[19,1,1,2,3,[[640,1,1,2,3]]],[22,1,1,3,4,[[717,1,1,3,4]]]],[10117,14259,16762,18420]]],["Well",[3,3,[[8,1,1,0,1,[[244,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]],[10,1,1,2,3,[[292,1,1,2,3]]]],[7401,8094,8788]]],["beautiful",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8261]]],["best",[7,7,[[4,1,1,0,1,[[175,1,1,0,1]]],[8,1,1,1,2,[[243,1,1,1,2]]],[11,1,1,2,3,[[322,1,1,2,3]]],[16,1,1,3,4,[[427,1,1,3,4]]],[21,1,1,4,5,[[677,1,1,4,5]]],[25,1,1,5,6,[[832,1,1,5,6]]],[32,1,1,6,7,[[899,1,1,6,7]]]],[5516,7383,9796,12733,17636,21246,22668]]],["better",[60,60,[[0,1,1,0,1,[[28,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[6,3,3,3,6,[[218,1,1,3,4],[219,1,1,4,5],[228,1,1,5,6]]],[7,1,1,6,7,[[235,1,1,6,7]]],[8,4,4,7,11,[[236,1,1,7,8],[250,2,2,8,10],[262,1,1,10,11]]],[9,2,2,11,13,[[283,1,1,11,12],[284,1,1,12,13]]],[10,3,3,13,16,[[292,1,1,13,14],[309,1,1,14,15],[311,1,1,15,16]]],[11,1,1,16,17,[[317,1,1,16,17]]],[13,1,1,17,18,[[387,1,1,17,18]]],[16,1,1,18,19,[[426,1,1,18,19]]],[18,6,6,19,25,[[514,1,1,19,20],[540,1,1,20,21],[561,1,1,21,22],[595,2,2,22,24],[596,1,1,24,25]]],[19,13,13,25,38,[[630,1,1,25,26],[635,2,2,26,28],[639,1,1,28,29],[643,2,2,29,31],[646,1,1,31,32],[648,2,2,32,34],[652,2,2,34,36],[654,2,2,36,38]]],[20,15,15,38,53,[[660,1,1,38,39],[661,1,1,39,40],[662,2,2,40,42],[664,1,1,42,43],[665,6,6,43,49],[666,1,1,49,50],[667,3,3,50,53]]],[21,1,1,53,54,[[671,1,1,53,54]]],[22,1,1,54,55,[[734,1,1,54,55]]],[24,1,1,55,56,[[800,1,1,55,56]]],[27,1,1,56,57,[[863,1,1,56,57]]],[29,1,1,57,58,[[884,1,1,57,58]]],[31,2,2,58,60,[[892,2,2,58,60]]]],[814,1901,4111,6721,6756,7012,7205,7220,7582,7588,7931,8463,8481,8802,9391,9453,9659,11637,12721,14466,14842,15269,15877,15878,15970,16469,16613,16621,16728,16856,16872,16947,16993,17003,17120,17137,17174,17179,17357,17381,17384,17390,17420,17430,17431,17432,17434,17437,17439,17473,17479,17491,17493,17539,18758,20429,22112,22452,22571,22576]]],["bountiful",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17024]]],["cheerful",[1,1,[[37,1,1,0,1,[[918,1,1,0,1]]]],[22995]]],["deeds",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12420]]],["ease",[1,1,[[18,1,1,0,1,[[502,1,1,0,1]]]],[14264]]],["fair",[5,5,[[0,3,3,0,3,[[5,1,1,0,1],[23,1,1,1,2],[25,1,1,2,3]]],[16,1,1,3,4,[[426,1,1,3,4]]],[22,1,1,4,5,[[683,1,1,4,5]]]],[139,607,699,12713,17748]]],["fairer",[2,2,[[6,1,1,0,1,[[225,1,1,0,1]]],[26,1,1,1,2,[[850,1,1,1,2]]]],[6931,21752]]],["favour",[2,2,[[8,2,2,0,2,[[237,1,1,0,1],[264,1,1,1,2]]]],[7266,7973]]],["fine",[2,2,[[13,2,2,0,2,[[369,2,2,0,2]]]],[11234,11237]]],["glad",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[16,1,1,1,2,[[430,1,1,1,2]]]],[9051,12788]]],["good",[346,324,[[0,33,31,0,31,[[0,7,7,0,7],[1,5,4,7,11],[2,3,3,11,14],[14,1,1,14,15],[17,1,1,15,16],[18,1,1,16,17],[23,1,1,17,18],[24,1,1,18,19],[25,1,1,19,20],[26,1,1,20,21],[29,1,1,21,22],[39,1,1,22,23],[40,6,5,23,28],[43,1,1,28,29],[48,1,1,29,30],[49,1,1,30,31]]],[1,2,2,31,33,[[52,1,1,31,32],[67,1,1,32,33]]],[2,5,4,33,37,[[116,5,4,33,37]]],[3,4,4,37,41,[[126,1,1,37,38],[129,1,1,38,39],[130,1,1,39,40],[140,1,1,40,41]]],[4,21,19,41,60,[[153,4,4,41,45],[155,1,1,45,46],[156,2,2,46,48],[158,3,2,48,50],[160,2,2,50,52],[161,1,1,52,53],[162,1,1,53,54],[163,1,1,54,55],[164,1,1,55,56],[178,1,1,56,57],[180,1,1,57,58],[182,3,2,58,60]]],[5,7,6,60,66,[[195,1,1,60,61],[207,1,1,61,62],[209,5,4,62,66]]],[6,5,5,66,71,[[218,1,1,66,67],[219,1,1,67,68],[220,1,1,68,69],[228,1,1,69,70],[229,1,1,70,71]]],[7,1,1,71,72,[[233,1,1,71,72]]],[8,21,20,72,92,[[236,1,1,72,73],[237,1,1,73,74],[238,1,1,74,75],[246,1,1,75,76],[247,1,1,76,77],[249,2,2,77,79],[250,1,1,79,80],[254,2,1,80,81],[255,1,1,81,82],[259,2,2,82,84],[260,5,5,84,89],[261,1,1,89,90],[264,2,2,90,92]]],[9,17,16,92,108,[[276,1,1,92,93],[279,1,1,93,94],[280,2,2,94,96],[281,2,2,96,98],[282,1,1,98,99],[283,2,2,99,101],[284,2,1,101,102],[285,5,5,102,107],[290,1,1,107,108]]],[10,12,11,108,119,[[292,2,2,108,110],[293,1,1,110,111],[298,2,2,111,113],[302,1,1,113,114],[304,2,2,114,116],[312,4,3,116,119]]],[11,6,4,119,123,[[315,4,2,119,121],[322,1,1,121,122],[332,1,1,122,123]]],[12,5,5,123,128,[[341,1,1,123,124],[353,1,1,124,125],[356,1,1,125,126],[358,1,1,126,127],[365,1,1,127,128]]],[13,15,14,128,142,[[371,1,1,128,129],[372,1,1,129,130],[373,1,1,130,131],[376,1,1,131,132],[380,1,1,132,133],[384,4,3,133,136],[385,2,2,136,138],[390,1,1,138,139],[396,2,2,139,141],[397,1,1,141,142]]],[14,4,4,142,146,[[405,1,1,142,143],[409,1,1,143,144],[410,2,2,144,146]]],[15,7,6,146,152,[[414,3,2,146,148],[417,1,1,148,149],[421,2,2,149,151],[425,1,1,151,152]]],[16,4,4,152,156,[[432,1,1,152,153],[433,1,1,153,154],[434,2,2,154,156]]],[17,9,9,156,165,[[437,1,1,156,157],[442,1,1,157,158],[444,1,1,158,159],[445,1,1,159,160],[448,1,1,160,161],[457,2,2,161,163],[465,1,1,163,164],[469,1,1,164,165]]],[18,50,49,165,214,[[481,1,1,165,166],[491,2,2,166,168],[511,4,4,168,172],[512,1,1,172,173],[513,1,1,173,174],[514,2,2,174,176],[515,2,1,176,177],[522,1,1,177,178],[529,1,1,178,179],[530,2,2,179,181],[531,1,1,181,182],[546,1,1,182,183],[550,2,2,183,185],[561,1,1,185,186],[562,1,1,186,187],[563,2,2,187,189],[569,1,1,189,190],[577,1,1,190,191],[580,1,1,191,192],[581,1,1,192,193],[583,2,2,193,195],[584,1,1,195,196],[586,2,2,196,198],[588,1,1,198,199],[589,1,1,199,200],[595,2,2,200,202],[596,4,4,202,206],[599,1,1,206,207],[602,1,1,207,208],[610,1,1,208,209],[612,1,1,209,210],[613,1,1,210,211],[620,1,1,211,212],[622,1,1,212,213],[624,1,1,213,214]]],[19,38,38,214,252,[[629,2,2,214,216],[630,2,2,216,218],[631,1,1,218,219],[638,2,2,219,221],[639,3,3,221,224],[640,3,3,224,227],[641,3,3,227,230],[642,3,3,230,233],[643,2,2,233,235],[644,3,3,235,238],[645,2,2,238,240],[646,2,2,240,242],[647,1,1,242,243],[651,3,3,243,246],[652,2,2,246,248],[655,2,2,248,250],[658,2,2,250,252]]],[20,20,17,252,269,[[660,3,3,252,255],[661,3,2,255,257],[662,1,1,257,258],[663,2,1,258,259],[664,3,3,259,262],[665,3,3,262,265],[667,3,2,265,267],[669,1,1,267,268],[670,1,1,268,269]]],[21,1,1,269,270,[[671,1,1,269,270]]],[22,8,7,270,277,[[683,2,1,270,271],[685,2,2,271,273],[716,1,1,273,274],[730,1,1,274,275],[733,1,1,275,276],[743,1,1,276,277]]],[23,28,25,277,302,[[749,1,1,277,278],[750,1,1,278,279],[752,1,1,279,280],[758,2,2,280,282],[761,1,1,282,283],[762,3,2,283,285],[765,1,1,285,286],[768,6,4,286,290],[770,1,1,290,291],[773,2,2,291,293],[776,2,2,293,295],[777,3,3,295,298],[783,1,1,298,299],[784,1,1,299,300],[786,1,1,300,301],[788,1,1,301,302]]],[24,4,4,302,306,[[799,4,4,302,306]]],[25,8,7,306,313,[[818,1,1,306,307],[819,1,1,307,308],[821,1,1,308,309],[825,1,1,309,310],[835,3,2,310,312],[837,1,1,312,313]]],[27,2,2,313,315,[[865,1,1,313,314],[869,1,1,314,315]]],[29,3,3,315,318,[[883,2,2,315,317],[887,1,1,317,318]]],[32,3,3,318,321,[[893,1,1,318,319],[895,1,1,319,320],[898,1,1,320,321]]],[33,1,1,321,322,[[900,1,1,321,322]]],[37,1,1,322,323,[[911,1,1,322,323]]],[38,1,1,323,324,[[926,1,1,323,324]]]],[3,9,11,17,20,24,30,39,42,47,48,60,61,77,375,431,465,641,666,721,736,850,1188,1200,1217,1219,1221,1230,1328,1488,1526,1587,2016,3580,3582,3584,3603,4017,4094,4115,4459,4906,4917,4927,4931,5000,5025,5026,5104,5110,5144,5147,5163,5199,5225,5268,5577,5623,5717,5723,6062,6426,6473,6474,6475,6476,6751,6765,6826,7002,7048,7171,7235,7264,7294,7455,7483,7544,7548,7569,7710,7742,7856,7858,7864,7869,7876,7882,7891,7921,7973,7976,8252,8339,8373,8388,8392,8415,8438,8456,8463,8505,8529,8538,8546,8548,8549,8714,8808,8812,8825,9021,9041,9158,9231,9233,9488,9493,9498,9595,9601,9798,10101,10425,10854,10920,10957,11151,11281,11309,11327,11402,11477,11549,11554,11559,11579,11587,11693,11845,11849,11874,12108,12182,12219,12223,12315,12325,12401,12524,12531,12702,12816,12834,12853,12856,12901,13015,13076,13089,13162,13407,13410,13583,13687,13971,14081,14083,14396,14398,14400,14402,14422,14442,14453,14477,14510,14598,14719,14720,14722,14731,14951,15021,15048,15270,15283,15289,15301,15412,15513,15554,15599,15652,15656,15700,15760,15776,15803,15808,15870,15898,15937,15966,15969,16020,16098,16114,16170,16178,16197,16303,16329,16352,16442,16453,16459,16482,16492,16711,16715,16721,16733,16744,16749,16768,16769,16786,16791,16794,16810,16830,16837,16860,16869,16886,16893,16899,16906,16923,16927,16933,16977,17092,17102,17104,17138,17140,17206,17217,17296,17302,17336,17357,17359,17371,17372,17390,17415,17420,17423,17429,17440,17447,17449,17477,17493,17519,17537,17540,17759,17797,17798,18393,18703,18742,18899,19083,19105,19168,19304,19312,19363,19394,19404,19450,19526,19527,19529,19530,19586,19645,19667,19770,19773,19784,19786,19789,19939,19945,19981,20037,20379,20380,20381,20392,20833,20867,20920,21060,21327,21331,21390,22146,22197,22437,22438,22499,22591,22610,22656,22691,22891,23120]]],["goodlier",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7393]]],["goodliest",[2,2,[[8,1,1,0,1,[[243,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]]],[7385,9411]]],["goodly",[8,8,[[1,1,1,0,1,[[51,1,1,0,1]]],[4,3,3,1,4,[[155,1,1,1,2],[158,1,1,2,3],[160,1,1,3,4]]],[5,1,1,4,5,[[193,1,1,4,5]]],[8,2,2,5,7,[[244,1,1,5,6],[251,1,1,6,7]]],[28,1,1,7,8,[[878,1,1,7,8]]]],[1556,5000,5096,5149,5997,7393,7607,22348]]],["goodness",[16,16,[[1,1,1,0,1,[[67,1,1,0,1]]],[3,1,1,1,2,[[126,1,1,1,2]]],[6,1,1,2,3,[[218,1,1,2,3]]],[9,1,1,3,4,[[273,1,1,3,4]]],[10,1,1,4,5,[[298,1,1,4,5]]],[12,1,1,5,6,[[354,1,1,5,6]]],[13,2,2,6,8,[[372,1,1,6,7],[373,1,1,7,8]]],[18,6,6,8,14,[[493,1,1,8,9],[498,1,1,9,10],[500,1,1,10,11],[542,1,1,11,12],[545,1,1,12,13],[584,1,1,13,14]]],[23,1,1,14,15,[[777,1,1,14,15]]],[27,1,1,15,16,[[871,1,1,15,16]]]],[2008,4020,6754,8208,9051,10889,11323,11334,14094,14194,14241,14871,14910,15708,19784,22226]]],["goods",[2,2,[[4,1,1,0,1,[[180,1,1,0,1]]],[20,1,1,1,2,[[663,1,1,1,2]]]],[5622,17408]]],["joyful",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17443]]],["kind",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11402]]],["kindly",[2,2,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,1,1,1,2,[[796,1,1,1,2]]]],[10250,20308]]],["kindness",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8055]]],["loving",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17016]]],["merry",[5,5,[[6,1,1,0,1,[[226,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]],[13,1,1,2,3,[[373,1,1,2,3]]],[19,1,1,3,4,[[642,1,1,3,4]]],[20,1,1,4,5,[[667,1,1,4,5]]]],[6974,7897,11334,16822,17482]]],["most",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20421]]],["pleasant",[2,2,[[11,1,1,0,1,[[314,1,1,0,1]]],[20,1,1,1,2,[[669,1,1,1,2]]]],[9570,17520]]],["pleasure",[2,2,[[17,1,1,0,1,[[456,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[13380,17334]]],["precious",[4,4,[[11,1,1,0,1,[[332,1,1,0,1]]],[18,1,1,1,2,[[610,1,1,1,2]]],[20,1,1,2,3,[[665,1,1,2,3]]],[22,1,1,3,4,[[717,1,1,3,4]]]],[10111,16171,17430,18414]]],["prosperity",[5,5,[[4,1,1,0,1,[[175,1,1,0,1]]],[10,1,1,1,2,[[300,1,1,1,2]]],[17,1,1,2,3,[[471,1,1,2,3]]],[20,1,1,3,4,[[665,1,1,3,4]]],[24,1,1,4,5,[[799,1,1,4,5]]]],[5506,9086,13747,17443,20371]]],["ready",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18458]]],["sweet",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19109]]],["wealth",[3,3,[[14,1,1,0,1,[[411,1,1,0,1]]],[16,1,1,1,2,[[435,1,1,1,2]]],[17,1,1,2,3,[[456,1,1,2,3]]]],[12249,12869,13368]]],["welfare",[1,1,[[15,1,1,0,1,[[414,1,1,0,1]]]],[12317]]],["well",[16,16,[[4,1,1,0,1,[[167,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[8,3,3,3,6,[[255,1,1,3,4],[259,2,2,4,6]]],[10,1,1,6,7,[[308,1,1,6,7]]],[13,1,1,7,8,[[378,1,1,7,8]]],[18,2,2,8,10,[[596,1,1,8,9],[605,1,1,9,10]]],[20,2,2,10,12,[[666,2,2,10,12]]],[23,4,4,12,16,[[759,1,1,12,13],[766,2,2,13,15],[788,1,1,15,16]]]],[5335,6770,7185,7737,7857,7858,9365,11449,15963,16128,17470,17471,19326,19469,19470,20027]]],["words",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19255]]]]},{"k":"H2897","v":[["Tob",[2,2,[[6,2,2,0,2,[[221,2,2,0,2]]]],[6832,6834]]]]},{"k":"H2898","v":[["*",[32,31,[[0,4,4,0,4,[[23,1,1,0,1],[44,3,3,1,4]]],[1,1,1,4,5,[[82,1,1,4,5]]],[4,2,2,5,7,[[158,1,1,5,6],[180,1,1,6,7]]],[11,1,1,7,8,[[320,1,1,7,8]]],[14,1,1,8,9,[[411,1,1,8,9]]],[15,4,3,9,12,[[421,4,3,9,12]]],[17,2,2,12,14,[[455,1,1,12,13],[456,1,1,13,14]]],[18,7,7,14,21,[[502,1,1,14,15],[504,1,1,15,16],[508,1,1,16,17],[542,1,1,17,18],[596,1,1,18,19],[605,1,1,19,20],[622,1,1,20,21]]],[19,1,1,21,22,[[638,1,1,21,22]]],[22,3,3,22,25,[[679,1,1,22,23],[741,1,1,23,24],[743,1,1,24,25]]],[23,3,3,25,28,[[746,1,1,25,26],[775,2,2,26,28]]],[27,2,2,28,30,[[864,1,1,28,29],[871,1,1,29,30]]],[37,1,1,30,31,[[919,1,1,30,31]]]],[601,1376,1378,1381,2492,5097,5658,9736,12249,12536,12546,12547,13347,13371,14258,14298,14350,14864,15964,16131,16327,16698,17673,18873,18911,18972,19703,19705,22133,22236,23016]]],["+",[3,3,[[0,1,1,0,1,[[44,1,1,0,1]]],[18,1,1,1,2,[[502,1,1,1,2]]],[22,1,1,2,3,[[743,1,1,2,3]]]],[1381,14258,18911]]],["fair",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22236]]],["gladness",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5658]]],["good",[9,9,[[0,2,2,0,2,[[44,2,2,0,2]]],[4,1,1,2,3,[[158,1,1,2,3]]],[14,1,1,3,4,[[411,1,1,3,4]]],[15,1,1,4,5,[[421,1,1,4,5]]],[17,1,1,5,6,[[456,1,1,5,6]]],[18,2,2,6,8,[[596,1,1,6,7],[605,1,1,7,8]]],[22,1,1,8,9,[[679,1,1,8,9]]]],[1376,1378,5097,12249,12547,13371,15964,16131,17673]]],["goodness",[13,13,[[1,1,1,0,1,[[82,1,1,0,1]]],[15,2,2,1,3,[[421,2,2,1,3]]],[18,4,4,3,7,[[504,1,1,3,4],[508,1,1,4,5],[542,1,1,5,6],[622,1,1,6,7]]],[22,1,1,7,8,[[741,1,1,7,8]]],[23,3,3,8,11,[[746,1,1,8,9],[775,2,2,9,11]]],[27,1,1,11,12,[[864,1,1,11,12]]],[37,1,1,12,13,[[919,1,1,12,13]]]],[2492,12536,12546,14298,14350,14864,16327,18873,18972,19703,19705,22133,23016]]],["goods",[3,3,[[0,1,1,0,1,[[23,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[17,1,1,2,3,[[455,1,1,2,3]]]],[601,12536,13347]]],["thing",[1,1,[[11,1,1,0,1,[[320,1,1,0,1]]]],[9736]]],["well",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16698]]]]},{"k":"H2899","v":[["Tobadonijah",[1,1,[[13,1,1,0,1,[[383,1,1,0,1]]]],[11531]]]]},{"k":"H2900","v":[["*",[18,17,[[13,1,1,0,1,[[383,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,14,13,2,15,[[414,2,2,2,4],[416,2,2,4,6],[418,6,5,6,11],[419,1,1,11,12],[425,3,3,12,15]]],[37,2,2,15,17,[[916,2,2,15,17]]]],[11531,12087,12317,12326,12362,12366,12402,12413,12415,12418,12420,12482,12675,12678,12679,22957,22961]]],["Tobiah",[15,14,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,14,13,1,14,[[414,2,2,1,3],[416,2,2,3,5],[418,6,5,5,10],[419,1,1,10,11],[425,3,3,11,14]]]],[12087,12317,12326,12362,12366,12402,12413,12415,12418,12420,12482,12675,12678,12679]]],["Tobijah",[3,3,[[13,1,1,0,1,[[383,1,1,0,1]]],[37,2,2,1,3,[[916,2,2,1,3]]]],[11531,22957,22961]]]]},{"k":"H2901","v":[["*",[2,2,[[1,2,2,0,2,[[84,2,2,0,2]]]],[2556,2557]]],["+",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2557]]],["spin",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2556]]]]},{"k":"H2902","v":[["*",[12,11,[[2,3,3,0,3,[[103,3,3,0,3]]],[12,1,1,3,4,[[366,1,1,3,4]]],[22,1,1,4,5,[[722,1,1,4,5]]],[25,7,6,5,11,[[814,6,5,5,10],[823,1,1,10,11]]]],[3153,3154,3159,11168,18551,20718,20719,20720,20722,20723,21004]]],["+",[1,1,[[2,1,1,0,1,[[103,1,1,0,1]]]],[3153]]],["daub",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20719]]],["daubed",[6,5,[[25,6,5,0,5,[[814,5,4,0,4],[823,1,1,4,5]]]],[20718,20720,20722,20723,21004]]],["overlay",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11168]]],["plaistered",[2,2,[[2,2,2,0,2,[[103,2,2,0,2]]]],[3154,3159]]],["shut",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18551]]]]},{"k":"H2903","v":[["frontlets",[3,3,[[1,1,1,0,1,[[62,1,1,0,1]]],[4,2,2,1,3,[[158,1,1,1,2],[163,1,1,2,3]]]],[1883,5094,5226]]]]},{"k":"H2904","v":[["*",[14,14,[[8,2,2,0,2,[[253,1,1,0,1],[255,1,1,1,2]]],[17,1,1,2,3,[[476,1,1,2,3]]],[18,1,1,3,4,[[514,1,1,3,4]]],[19,1,1,4,5,[[643,1,1,4,5]]],[22,1,1,5,6,[[700,1,1,5,6]]],[23,3,3,6,9,[[760,1,1,6,7],[766,2,2,7,9]]],[25,1,1,9,10,[[833,1,1,9,10]]],[31,4,4,10,14,[[889,4,4,10,14]]]],[7687,7763,13897,14474,16873,18069,19349,19480,19482,21252,22535,22536,22543,22546]]],["+",[4,4,[[8,2,2,0,2,[[253,1,1,0,1],[255,1,1,1,2]]],[23,1,1,2,3,[[766,1,1,2,3]]],[31,1,1,3,4,[[889,1,1,3,4]]]],[7687,7763,19480,22536]]],["away",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18069]]],["cast",[2,2,[[19,1,1,0,1,[[643,1,1,0,1]]],[23,1,1,1,2,[[760,1,1,1,2]]]],[16873,19349]]],["down",[2,2,[[17,1,1,0,1,[[476,1,1,0,1]]],[18,1,1,1,2,[[514,1,1,1,2]]]],[13897,14474]]],["forth",[3,3,[[25,1,1,0,1,[[833,1,1,0,1]]],[31,2,2,1,3,[[889,2,2,1,3]]]],[21252,22543,22546]]],["out",[2,2,[[23,1,1,0,1,[[766,1,1,0,1]]],[31,1,1,1,2,[[889,1,1,1,2]]]],[19482,22535]]]]},{"k":"H2905","v":[["*",[26,20,[[1,12,8,0,8,[[77,6,4,0,4],[88,6,4,4,8]]],[10,11,9,8,17,[[296,2,1,8,9],[297,9,8,9,17]]],[13,2,2,17,19,[[370,2,2,17,19]]],[25,1,1,19,20,[[847,1,1,19,20]]]],[2310,2311,2312,2313,2674,2675,2676,2677,8932,8936,8937,8938,8946,8952,8954,8958,8976,11249,11259,21678]]],["row",[14,12,[[1,10,8,0,8,[[77,5,4,0,4],[88,5,4,4,8]]],[10,3,3,8,11,[[296,1,1,8,9],[297,2,2,9,11]]],[25,1,1,11,12,[[847,1,1,11,12]]]],[2310,2311,2312,2313,2674,2675,2676,2677,8932,8937,8946,21678]]],["rows",[12,12,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[10,8,8,2,10,[[296,1,1,2,3],[297,7,7,3,10]]],[13,2,2,10,12,[[370,2,2,10,12]]]],[2310,2674,8932,8936,8938,8946,8952,8954,8958,8976,11249,11259]]]]},{"k":"H2906","v":[["*",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21793,21803]]],["+",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21803]]],["mountain",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21793]]]]},{"k":"H2907","v":[["hasteth",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13077]]]]},{"k":"H2908","v":[["fasting",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21923]]]]},{"k":"H2909","v":[["+",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[529]]]]},{"k":"H2910","v":[["parts",[2,2,[[17,1,1,0,1,[[473,1,1,0,1]]],[18,1,1,1,2,[[528,1,1,1,2]]]],[13829,14697]]]]},{"k":"H2911","v":[["grind",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20455]]]]},{"k":"H2912","v":[["*",[8,8,[[1,1,1,0,1,[[81,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[4,1,1,2,3,[[161,1,1,2,3]]],[6,1,1,3,4,[[226,1,1,3,4]]],[17,1,1,4,5,[[466,1,1,4,5]]],[20,1,1,5,6,[[670,1,1,5,6]]],[22,2,2,6,8,[[681,1,1,6,7],[725,1,1,7,8]]]],[2458,4032,5178,6970,13598,17526,17722,18601]]],["grind",[4,4,[[6,1,1,0,1,[[226,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]],[22,2,2,2,4,[[681,1,1,2,3],[725,1,1,3,4]]]],[6970,13598,17722,18601]]],["grinders",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17526]]],["ground",[3,3,[[1,1,1,0,1,[[81,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[4,1,1,2,3,[[161,1,1,2,3]]]],[2458,4032,5178]]]]},{"k":"H2913","v":[["grinding",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17527]]]]},{"k":"H2914","v":[["emerods",[2,2,[[8,2,2,0,2,[[241,2,2,0,2]]]],[7342,7348]]]]},{"k":"H2915","v":[["daubing",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20720]]]]},{"k":"H2916","v":[["*",[13,12,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[18,3,3,2,5,[[495,1,1,2,3],[517,1,1,3,4],[546,1,1,4,5]]],[22,2,2,5,7,[[719,1,1,5,6],[735,1,1,6,7]]],[23,2,1,7,8,[[782,2,1,7,8]]],[32,1,1,8,9,[[899,1,1,8,9]]],[33,1,1,9,10,[[902,1,1,9,10]]],[37,2,2,10,12,[[919,1,1,10,11],[920,1,1,11,12]]]],[8645,13918,14160,14527,14949,18476,18785,19901,22674,22726,23002,23021]]],["+",[2,2,[[18,2,2,0,2,[[517,1,1,0,1],[546,1,1,1,2]]]],[14527,14949]]],["clay",[2,2,[[22,1,1,0,1,[[719,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[18476,22726]]],["dirt",[2,2,[[18,1,1,0,1,[[495,1,1,0,1]]],[22,1,1,1,2,[[735,1,1,1,2]]]],[14160,18785]]],["mire",[7,6,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[23,2,1,2,3,[[782,2,1,2,3]]],[32,1,1,3,4,[[899,1,1,3,4]]],[37,2,2,4,6,[[919,1,1,4,5],[920,1,1,5,6]]]],[8645,13918,19901,22674,23002,23021]]]]},{"k":"H2917","v":[["miry",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21799,21801]]]]},{"k":"H2918","v":[["*",[7,7,[[0,1,1,0,1,[[24,1,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]],[12,1,1,2,3,[[343,1,1,2,3]]],[18,1,1,3,4,[[546,1,1,3,4]]],[21,1,1,4,5,[[678,1,1,4,5]]],[25,2,2,5,7,[[826,1,1,5,6],[847,1,1,6,7]]]],[674,4674,10508,14960,17649,21087,21678]]],["castles",[3,3,[[0,1,1,0,1,[[24,1,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]],[12,1,1,2,3,[[343,1,1,2,3]]]],[674,4674,10508]]],["habitation",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14960]]],["palace",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17649]]],["palaces",[1,1,[[25,1,1,0,1,[[826,1,1,0,1]]]],[21087]]],["rows",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21678]]]]},{"k":"H2919","v":[["*",[31,30,[[0,2,2,0,2,[[26,2,2,0,2]]],[1,2,2,2,4,[[65,2,2,2,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[4,3,3,5,8,[[184,1,1,5,6],[185,2,2,6,8]]],[6,4,4,8,12,[[216,4,4,8,12]]],[9,2,2,12,14,[[267,1,1,12,13],[283,1,1,13,14]]],[10,1,1,14,15,[[307,1,1,14,15]]],[17,2,2,15,17,[[464,1,1,15,16],[473,1,1,16,17]]],[18,2,2,17,19,[[587,1,1,17,18],[610,1,1,18,19]]],[19,2,2,19,21,[[630,1,1,19,20],[646,1,1,20,21]]],[21,1,1,21,22,[[675,1,1,21,22]]],[22,3,2,22,24,[[696,1,1,22,23],[704,2,1,23,24]]],[27,3,3,24,27,[[867,1,1,24,25],[874,1,1,25,26],[875,1,1,26,27]]],[32,1,1,27,28,[[897,1,1,27,28]]],[36,1,1,28,29,[[909,1,1,28,29]]],[37,1,1,29,30,[[918,1,1,29,30]]]],[755,766,1960,1961,4033,5760,5823,5838,6691,6692,6693,6694,8043,8461,9318,13551,13821,15789,16172,16475,16937,17600,18001,18149,22171,22269,22287,22640,22850,22988]]],["+",[4,4,[[0,2,2,0,2,[[26,2,2,0,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[36,1,1,3,4,[[909,1,1,3,4]]]],[755,766,5823,22850]]],["dew",[27,26,[[1,2,2,0,2,[[65,2,2,0,2]]],[3,1,1,2,3,[[127,1,1,2,3]]],[4,2,2,3,5,[[184,1,1,3,4],[185,1,1,4,5]]],[6,4,4,5,9,[[216,4,4,5,9]]],[9,2,2,9,11,[[267,1,1,9,10],[283,1,1,10,11]]],[10,1,1,11,12,[[307,1,1,11,12]]],[17,2,2,12,14,[[464,1,1,12,13],[473,1,1,13,14]]],[18,2,2,14,16,[[587,1,1,14,15],[610,1,1,15,16]]],[19,2,2,16,18,[[630,1,1,16,17],[646,1,1,17,18]]],[21,1,1,18,19,[[675,1,1,18,19]]],[22,3,2,19,21,[[696,1,1,19,20],[704,2,1,20,21]]],[27,3,3,21,24,[[867,1,1,21,22],[874,1,1,22,23],[875,1,1,23,24]]],[32,1,1,24,25,[[897,1,1,24,25]]],[37,1,1,25,26,[[918,1,1,25,26]]]],[1960,1961,4033,5760,5838,6691,6692,6693,6694,8043,8461,9318,13551,13821,15789,16172,16475,16937,17600,18001,18149,22171,22269,22287,22640,22988]]]]},{"k":"H2920","v":[["*",[5,5,[[26,5,5,0,5,[[853,4,4,0,4],[854,1,1,4,5]]]],[21852,21860,21862,21870,21895]]],["+",[3,3,[[26,3,3,0,3,[[853,2,2,0,2],[854,1,1,2,3]]]],[21862,21870,21895]]],["dew",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21852,21860]]]]},{"k":"H2921","v":[["*",[8,6,[[0,6,4,0,4,[[29,6,4,0,4]]],[5,1,1,4,5,[[195,1,1,4,5]]],[25,1,1,5,6,[[817,1,1,5,6]]]],[862,863,865,869,6042,20778]]],["clouted",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6042]]],["colours",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20778]]],["spotted",[6,4,[[0,6,4,0,4,[[29,6,4,0,4]]]],[862,863,865,869]]]]},{"k":"H2922","v":[["lambs",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18431]]]]},{"k":"H2923","v":[["Telaim",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7564]]]]},{"k":"H2924","v":[["lamb",[2,2,[[8,1,1,0,1,[[242,1,1,0,1]]],[22,1,1,1,2,[[743,1,1,1,2]]]],[7361,18922]]]]},{"k":"H2925","v":[["captivity",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18069]]]]},{"k":"H2926","v":[["covered",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12342]]]]},{"k":"H2927","v":[["shadow",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21849]]]]},{"k":"H2928","v":[["Telem",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]]],[6226,12276]]]]},{"k":"H2929","v":[["Talmon",[5,5,[[12,1,1,0,1,[[346,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,3,3,2,5,[[419,1,1,2,3],[423,1,1,3,4],[424,1,1,4,5]]]],[10632,12069,12465,12607,12649]]]]},{"k":"H2930","v":[["*",[162,142,[[0,3,3,0,3,[[33,3,3,0,3]]],[2,85,71,3,74,[[94,1,1,3,4],[100,20,15,4,19],[101,3,2,19,21],[102,14,13,21,34],[103,2,2,34,36],[104,25,20,36,56],[106,1,1,56,57],[107,8,7,57,64],[108,1,1,64,65],[109,2,2,65,67],[110,4,4,67,71],[111,4,3,71,74]]],[3,24,21,74,95,[[121,8,7,74,81],[122,3,3,81,84],[135,12,10,84,94],[151,1,1,94,95]]],[4,2,2,95,97,[[173,1,1,95,96],[176,1,1,96,97]]],[11,4,4,97,101,[[335,4,4,97,101]]],[13,1,1,101,102,[[402,1,1,101,102]]],[18,2,2,102,104,[[556,1,1,102,103],[583,1,1,103,104]]],[22,1,1,104,105,[[708,1,1,104,105]]],[23,4,4,105,109,[[746,2,2,105,107],[751,1,1,107,108],[776,1,1,108,109]]],[25,30,28,109,137,[[805,1,1,109,110],[806,1,1,110,111],[810,1,1,111,112],[815,1,1,112,113],[819,3,3,113,116],[821,6,6,116,122],[823,3,3,122,125],[824,6,5,125,130],[834,1,1,130,131],[837,2,2,131,133],[838,1,1,133,134],[844,2,2,134,136],[845,2,1,136,137]]],[27,3,3,137,140,[[866,1,1,137,138],[867,1,1,138,139],[870,1,1,139,140]]],[32,1,1,140,141,[[894,1,1,140,141]]],[36,2,1,141,142,[[910,2,1,141,142]]]],[985,993,1007,2833,3021,3022,3023,3024,3025,3028,3029,3030,3031,3032,3033,3036,3037,3040,3041,3046,3049,3055,3060,3063,3066,3067,3072,3074,3077,3079,3082,3096,3098,3111,3147,3157,3172,3173,3174,3175,3176,3177,3178,3179,3184,3185,3186,3187,3188,3189,3190,3191,3192,3195,3199,3200,3250,3271,3274,3275,3276,3278,3279,3281,3312,3321,3343,3346,3348,3349,3356,3374,3375,3377,3795,3805,3806,3812,3819,3820,3821,3830,3832,3835,4296,4297,4299,4300,4302,4303,4305,4309,4310,4311,4879,5470,5529,10173,10175,10178,10181,12007,15186,15690,18239,18972,18988,19149,19765,20543,20557,20629,20742,20855,20860,20864,20902,20913,20921,20925,20926,20938,20979,20980,20987,21014,21020,21024,21037,21045,21306,21376,21377,21420,21579,21580,21624,22155,22177,22212,22605,22868]]],["+",[26,25,[[0,2,2,0,2,[[33,2,2,0,2]]],[2,12,11,2,13,[[100,1,1,2,3],[102,7,6,3,9],[104,1,1,9,10],[107,2,2,10,12],[109,1,1,12,13]]],[3,2,2,13,15,[[135,2,2,13,15]]],[11,2,2,15,17,[[335,2,2,15,17]]],[13,1,1,17,18,[[402,1,1,17,18]]],[23,1,1,18,19,[[746,1,1,18,19]]],[25,6,6,19,25,[[806,1,1,19,20],[810,1,1,20,21],[821,1,1,21,22],[823,1,1,22,23],[824,1,1,23,24],[844,1,1,24,25]]]],[985,993,3041,3055,3074,3077,3079,3082,3096,3199,3275,3281,3321,4302,4309,10173,10175,12007,18972,20557,20629,20902,20987,21045,21580]]],["Defile",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4879]]],["defile",[13,13,[[2,4,4,0,4,[[107,3,3,0,3],[111,1,1,3,4]]],[3,1,1,4,5,[[121,1,1,4,5]]],[11,1,1,5,6,[[335,1,1,5,6]]],[22,1,1,6,7,[[708,1,1,6,7]]],[23,1,1,7,8,[[776,1,1,7,8]]],[25,5,5,8,13,[[823,1,1,8,9],[834,1,1,9,10],[838,1,1,10,11],[844,1,1,11,12],[845,1,1,12,13]]]],[3271,3274,3279,3377,3795,10178,18239,19765,20979,21306,21420,21579,21624]]],["defiled",[34,33,[[0,1,1,0,1,[[33,1,1,0,1]]],[2,10,10,1,11,[[94,1,1,1,2],[100,1,1,2,3],[102,1,1,3,4],[104,1,1,4,5],[107,3,3,5,8],[108,1,1,8,9],[110,2,2,9,11]]],[3,9,8,11,19,[[121,7,6,11,17],[122,2,2,17,19]]],[4,2,2,19,21,[[173,1,1,19,20],[176,1,1,20,21]]],[18,2,2,21,23,[[556,1,1,21,22],[583,1,1,22,23]]],[25,8,8,23,31,[[819,3,3,23,26],[821,1,1,26,27],[823,1,1,27,28],[824,2,2,28,30],[837,1,1,30,31]]],[27,2,2,31,33,[[866,1,1,31,32],[867,1,1,32,33]]]],[1007,2833,3040,3098,3200,3275,3276,3278,3312,3346,3348,3805,3806,3812,3819,3820,3821,3832,3835,5470,5529,15186,15690,20855,20860,20864,20938,20980,21020,21024,21376,22155,22177]]],["herself",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21014]]],["himself",[2,2,[[2,2,2,0,2,[[110,2,2,0,2]]]],[3349,3356]]],["pollute",[1,1,[[23,1,1,0,1,[[751,1,1,0,1]]]],[19149]]],["polluted",[11,11,[[11,1,1,0,1,[[335,1,1,0,1]]],[23,1,1,1,2,[[746,1,1,1,2]]],[25,7,7,2,9,[[805,1,1,2,3],[815,1,1,3,4],[821,2,2,4,6],[824,2,2,6,8],[837,1,1,8,9]]],[27,1,1,9,10,[[870,1,1,9,10]]],[32,1,1,10,11,[[894,1,1,10,11]]]],[10181,18988,20543,20742,20921,20925,21024,21037,21377,22212,22605]]],["themselves",[1,1,[[25,1,1,0,1,[[845,1,1,0,1]]]],[21624]]],["unclean",[69,57,[[2,56,46,0,46,[[100,18,14,0,14],[101,3,2,14,16],[102,6,6,16,22],[103,2,2,22,24],[104,23,18,24,42],[106,1,1,42,43],[109,1,1,43,44],[111,2,2,44,46]]],[3,11,10,46,56,[[122,1,1,46,47],[135,10,9,47,56]]],[36,2,1,56,57,[[910,2,1,56,57]]]],[3021,3022,3023,3024,3025,3028,3029,3030,3031,3032,3033,3036,3037,3040,3046,3049,3060,3063,3066,3067,3072,3111,3147,3157,3172,3173,3174,3175,3176,3177,3178,3179,3184,3185,3186,3187,3188,3189,3190,3191,3192,3195,3250,3343,3374,3375,3830,4296,4297,4299,4300,4303,4305,4309,4310,4311,22868]]],["uncleanness",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3374]]],["yourselves",[2,2,[[25,2,2,0,2,[[821,2,2,0,2]]]],[20913,20926]]]]},{"k":"H2931","v":[["*",[88,78,[[2,47,38,0,38,[[94,5,1,0,1],[96,4,2,1,3],[99,1,1,3,4],[100,14,13,4,17],[102,9,8,17,25],[103,5,5,25,30],[104,4,4,30,34],[109,2,1,34,35],[111,1,1,35,36],[116,2,2,36,38]]],[3,11,11,38,49,[[121,1,1,38,39],[125,3,3,39,42],[134,1,1,42,43],[135,6,6,43,49]]],[4,8,8,49,57,[[164,2,2,49,51],[166,4,4,51,55],[167,1,1,55,56],[178,1,1,56,57]]],[5,1,1,57,58,[[208,1,1,57,58]]],[6,1,1,58,59,[[223,1,1,58,59]]],[13,1,1,59,60,[[389,1,1,59,60]]],[17,1,1,60,61,[[449,1,1,60,61]]],[20,1,1,61,62,[[667,1,1,61,62]]],[22,6,5,62,67,[[684,2,1,62,63],[713,1,1,63,64],[730,2,2,64,66],[742,1,1,66,67]]],[23,1,1,67,68,[[763,1,1,67,68]]],[24,1,1,68,69,[[800,1,1,68,69]]],[25,5,5,69,74,[[805,1,1,69,70],[823,3,3,70,73],[845,1,1,73,74]]],[27,1,1,74,75,[[870,1,1,74,75]]],[29,1,1,75,76,[[885,1,1,75,76]]],[36,2,2,76,78,[[910,2,2,76,78]]]],[2832,2898,2900,2987,3001,3002,3003,3004,3005,3023,3024,3025,3026,3028,3032,3035,3044,3063,3067,3088,3096,3097,3098,3103,3107,3151,3152,3155,3156,3168,3170,3193,3194,3201,3343,3373,3581,3597,3794,3971,3972,3975,4272,4302,4304,4306,4308,4309,4311,5255,5262,5297,5298,5300,5309,5341,5580,6445,6888,11675,13185,17477,17774,18328,18697,18707,18891,19420,20435,20542,20981,20986,21002,21622,22211,22481,22868,22869]]],["+",[3,3,[[17,1,1,0,1,[[449,1,1,0,1]]],[25,2,2,1,3,[[805,1,1,1,2],[823,1,1,2,3]]]],[13185,20542,20981]]],["Unclean",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3097]]],["defiled",[4,4,[[3,3,3,0,3,[[121,1,1,0,1],[125,2,2,1,3]]],[23,1,1,3,4,[[763,1,1,3,4]]]],[3794,3971,3972,19420]]],["polluted",[1,1,[[29,1,1,0,1,[[885,1,1,0,1]]]],[22481]]],["pollution",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[20986]]],["unclean",[78,69,[[2,46,38,0,38,[[94,5,1,0,1],[96,4,2,1,3],[99,1,1,3,4],[100,14,13,4,17],[102,8,8,17,25],[103,5,5,25,30],[104,4,4,30,34],[109,2,1,34,35],[111,1,1,35,36],[116,2,2,36,38]]],[3,8,8,38,46,[[125,1,1,38,39],[134,1,1,39,40],[135,6,6,40,46]]],[4,8,8,46,54,[[164,2,2,46,48],[166,4,4,48,52],[167,1,1,52,53],[178,1,1,53,54]]],[5,1,1,54,55,[[208,1,1,54,55]]],[6,1,1,55,56,[[223,1,1,55,56]]],[13,1,1,56,57,[[389,1,1,56,57]]],[20,1,1,57,58,[[667,1,1,57,58]]],[22,6,5,58,63,[[684,2,1,58,59],[713,1,1,59,60],[730,2,2,60,62],[742,1,1,62,63]]],[24,1,1,63,64,[[800,1,1,63,64]]],[25,2,2,64,66,[[823,1,1,64,65],[845,1,1,65,66]]],[27,1,1,66,67,[[870,1,1,66,67]]],[36,2,2,67,69,[[910,2,2,67,69]]]],[2832,2898,2900,2987,3001,3002,3003,3004,3005,3023,3024,3025,3026,3028,3032,3035,3044,3063,3067,3088,3096,3097,3098,3103,3107,3151,3152,3155,3156,3168,3170,3193,3194,3201,3343,3373,3581,3597,3975,4272,4302,4304,4306,4308,4309,4311,5255,5262,5297,5298,5300,5309,5341,5580,6445,6888,11675,17477,17774,18328,18697,18707,18891,20435,21002,21622,22211,22868,22869]]]]},{"k":"H2932","v":[["*",[36,31,[[2,18,14,0,14,[[94,2,1,0,1],[96,2,2,1,3],[103,1,1,3,4],[104,7,5,4,9],[105,3,2,9,11],[107,1,1,11,12],[111,2,2,12,14]]],[3,2,2,14,16,[[121,1,1,14,15],[135,1,1,15,16]]],[6,2,2,16,18,[[223,2,2,16,18]]],[9,1,1,18,19,[[277,1,1,18,19]]],[13,1,1,19,20,[[395,1,1,19,20]]],[14,2,2,20,22,[[408,1,1,20,21],[411,1,1,21,22]]],[24,1,1,22,23,[[797,1,1,22,23]]],[25,8,7,23,30,[[823,1,1,23,24],[825,3,2,24,26],[837,3,3,26,29],[840,1,1,29,30]]],[37,1,1,30,31,[[923,1,1,30,31]]]],[2833,2899,2900,3130,3171,3193,3194,3198,3199,3217,3220,3270,3372,3374,3811,4302,6891,6898,8263,11807,12172,12248,20319,20991,21067,21069,21376,21384,21388,21472,23061]]],["+",[7,7,[[2,4,4,0,4,[[103,1,1,0,1],[104,1,1,1,2],[105,2,2,2,4]]],[9,1,1,4,5,[[277,1,1,4,5]]],[14,1,1,5,6,[[408,1,1,5,6]]],[25,1,1,6,7,[[825,1,1,6,7]]]],[3130,3199,3217,3220,8263,12172,21069]]],["filthiness",[5,5,[[24,1,1,0,1,[[797,1,1,0,1]]],[25,4,4,1,5,[[823,1,1,1,2],[825,2,2,2,4],[837,1,1,4,5]]]],[20319,20991,21067,21069,21384]]],["unclean",[3,3,[[6,2,2,0,2,[[223,2,2,0,2]]],[37,1,1,2,3,[[923,1,1,2,3]]]],[6891,6898,23061]]],["uncleanness",[20,18,[[2,14,12,0,12,[[94,2,1,0,1],[96,2,2,1,3],[104,6,5,3,8],[105,1,1,8,9],[107,1,1,9,10],[111,2,2,10,12]]],[3,2,2,12,14,[[121,1,1,12,13],[135,1,1,13,14]]],[13,1,1,14,15,[[395,1,1,14,15]]],[14,1,1,15,16,[[411,1,1,15,16]]],[25,2,2,16,18,[[837,1,1,16,17],[840,1,1,17,18]]]],[2833,2899,2900,3171,3193,3194,3198,3199,3217,3270,3372,3374,3811,4302,11807,12248,21376,21472]]],["uncleannesses",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21388]]]]},{"k":"H2933","v":[["vile",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13279]]]]},{"k":"H2934","v":[["*",[31,29,[[0,1,1,0,1,[[34,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[5,3,3,3,6,[[188,1,1,3,4],[193,2,2,4,6]]],[11,2,1,6,7,[[319,2,1,6,7]]],[17,6,5,7,12,[[438,1,1,7,8],[453,1,1,8,9],[455,1,1,9,10],[466,1,1,10,11],[475,2,1,11,12]]],[18,7,7,12,19,[[486,1,1,12,13],[508,1,1,13,14],[512,2,2,14,16],[541,1,1,16,17],[617,1,1,17,18],[619,1,1,18,19]]],[19,2,2,19,21,[[646,1,1,19,20],[653,1,1,20,21]]],[22,1,1,21,22,[[680,1,1,21,22]]],[23,7,7,22,29,[[757,4,4,22,26],[762,1,1,26,27],[787,2,2,27,29]]]],[1015,1566,5829,5875,5997,5998,9715,12920,13286,13352,13621,13877,14036,14335,14417,14418,14855,16268,16289,16949,17156,17695,19270,19271,19272,19273,19406,20006,20007]]],["+",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14855]]],["Hide",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13877]]],["hid",[17,16,[[0,1,1,0,1,[[34,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[5,3,3,3,6,[[188,1,1,3,4],[193,2,2,4,6]]],[11,2,1,6,7,[[319,2,1,6,7]]],[17,1,1,7,8,[[455,1,1,7,8]]],[18,4,4,8,12,[[486,1,1,8,9],[512,2,2,9,11],[617,1,1,11,12]]],[23,4,4,12,16,[[757,2,2,12,14],[762,1,1,14,15],[787,1,1,15,16]]]],[1015,1566,5829,5875,5997,5998,9715,13352,14036,14417,14418,16268,19271,19273,19406,20007]]],["hidden",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12920]]],["hide",[4,4,[[22,1,1,0,1,[[680,1,1,0,1]]],[23,3,3,1,4,[[757,2,2,1,3],[787,1,1,3,4]]]],[17695,19270,19272,20006]]],["hideth",[2,2,[[19,2,2,0,2,[[646,1,1,0,1],[653,1,1,1,2]]]],[16949,17156]]],["hiding",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13621]]],["laid",[2,2,[[17,1,1,0,1,[[453,1,1,0,1]]],[18,1,1,1,2,[[619,1,1,1,2]]]],[13286,16289]]],["privily",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14335]]],["secret",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13877]]]]},{"k":"H2935","v":[["basket",[4,4,[[4,4,4,0,4,[[178,2,2,0,2],[180,2,2,2,4]]]],[5568,5570,5616,5628]]]]},{"k":"H2936","v":[["defile",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17601]]]]},{"k":"H2937","v":[["+",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20718]]]]},{"k":"H2938","v":[["*",[11,10,[[8,4,3,0,3,[[249,4,3,0,3]]],[9,2,2,3,5,[[269,1,1,3,4],[285,1,1,4,5]]],[17,2,2,5,7,[[447,1,1,5,6],[469,1,1,6,7]]],[18,1,1,7,8,[[511,1,1,7,8]]],[19,1,1,8,9,[[658,1,1,8,9]]],[31,1,1,9,10,[[891,1,1,9,10]]]],[7532,7537,7551,8116,8546,13139,13686,14396,17302,22565]]],["+",[3,2,[[8,2,1,0,1,[[249,2,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]]],[7551,8546]]],["perceiveth",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17302]]],["taste",[4,4,[[9,1,1,0,1,[[269,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[18,1,1,2,3,[[511,1,1,2,3]]],[31,1,1,3,4,[[891,1,1,3,4]]]],[8116,13139,14396,22565]]],["tasted",[2,2,[[8,2,2,0,2,[[249,2,2,0,2]]]],[7532,7537]]],["tasteth",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13686]]]]},{"k":"H2939","v":[["*",[3,3,[[26,3,3,0,3,[[853,2,2,0,2],[854,1,1,2,3]]]],[21862,21869,21895]]],["eat",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21862,21869]]],["fed",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21895]]]]},{"k":"H2940","v":[["*",[12,11,[[1,1,1,0,1,[[65,1,1,0,1]]],[3,2,1,1,2,[[127,2,1,1,2]]],[8,2,2,2,4,[[256,1,1,2,3],[260,1,1,3,4]]],[17,2,2,4,6,[[441,1,1,4,5],[447,1,1,5,6]]],[18,1,1,6,7,[[596,1,1,6,7]]],[19,2,2,7,9,[[638,1,1,7,8],[653,1,1,8,9]]],[23,1,1,9,10,[[792,1,1,9,10]]],[31,1,1,10,11,[[891,1,1,10,11]]]],[1978,4032,7785,7894,12984,13148,15964,16710,17157,20091,22565]]],["+",[1,1,[[31,1,1,0,1,[[891,1,1,0,1]]]],[22565]]],["advice",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7894]]],["behaviour",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7785]]],["discretion",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16710]]],["judgment",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15964]]],["reason",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17157]]],["taste",[5,4,[[1,1,1,0,1,[[65,1,1,0,1]]],[3,2,1,1,2,[[127,2,1,1,2]]],[17,1,1,2,3,[[441,1,1,2,3]]],[23,1,1,3,4,[[792,1,1,3,4]]]],[1978,4032,12984,20091]]],["understanding",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13148]]]]},{"k":"H2941","v":[["*",[5,5,[[14,4,4,0,4,[[406,1,1,0,1],[407,1,1,1,2],[408,1,1,2,3],[409,1,1,3,4]]],[26,1,1,4,5,[[855,1,1,4,5]]]],[12131,12139,12165,12196,21907]]],["accounts",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21907]]],["commanded",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12196]]],["commandment",[2,2,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]]],[12131,12165]]],["matter",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12139]]]]},{"k":"H2942","v":[["*",[25,25,[[14,17,17,0,17,[[406,5,5,0,5],[407,4,4,5,9],[408,6,6,9,15],[409,2,2,15,17]]],[26,8,8,17,25,[[851,1,1,17,18],[852,3,3,18,21],[853,1,1,21,22],[854,1,1,22,23],[855,2,2,23,25]]]],[12118,12119,12127,12129,12131,12137,12143,12147,12151,12152,12154,12159,12162,12163,12165,12186,12194,21772,21817,21819,21836,21843,21876,21918,21931]]],["+",[8,8,[[14,6,6,0,6,[[406,4,4,0,4],[407,2,2,4,6]]],[26,2,2,6,8,[[852,1,1,6,7],[855,1,1,7,8]]]],[12118,12119,12127,12129,12137,12143,21819,21918]]],["commandment",[2,2,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]]],[12131,12165]]],["decree",[13,13,[[14,9,9,0,9,[[407,2,2,0,2],[408,5,5,2,7],[409,2,2,7,9]]],[26,4,4,9,13,[[852,2,2,9,11],[853,1,1,11,12],[855,1,1,12,13]]]],[12147,12151,12152,12154,12159,12162,12163,12186,12194,21817,21836,21843,21931]]],["tasted",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21876]]],["wisdom",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21772]]]]},{"k":"H2943","v":[["+",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1375]]]]},{"k":"H2944","v":[["through",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17947]]]]},{"k":"H2945","v":[["*",[42,42,[[0,8,8,0,8,[[33,1,1,0,1],[42,1,1,1,2],[44,1,1,2,3],[45,1,1,3,4],[46,2,2,4,6],[49,2,2,6,8]]],[1,3,3,8,11,[[59,2,2,8,10],[61,1,1,10,11]]],[3,10,10,11,21,[[130,2,2,11,13],[132,1,1,13,14],[147,3,3,14,17],[148,4,4,17,21]]],[4,7,7,21,28,[[153,1,1,21,22],[154,1,1,22,23],[155,2,2,23,25],[172,1,1,25,26],[181,1,1,26,27],[183,1,1,27,28]]],[5,2,2,28,30,[[187,1,1,28,29],[194,1,1,29,30]]],[6,2,2,30,32,[[228,1,1,30,31],[231,1,1,31,32]]],[9,1,1,32,33,[[281,1,1,32,33]]],[13,2,2,33,35,[[386,1,1,33,34],[397,1,1,34,35]]],[14,1,1,35,36,[[410,1,1,35,36]]],[16,2,2,36,38,[[428,1,1,36,37],[433,1,1,37,38]]],[23,3,3,38,41,[[784,1,1,38,39],[785,1,1,39,40],[787,1,1,40,41]]],[25,1,1,41,42,[[810,1,1,41,42]]]],[1009,1298,1377,1391,1432,1444,1514,1527,1787,1801,1853,4111,4139,4221,4673,4681,4682,4734,4735,4742,4744,4931,4972,4981,4994,5441,5690,5740,5865,6037,7014,7112,8411,11600,11872,12222,12760,12828,19948,19973,20003,20628]]],["+",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]]],[1853,4972]]],["children",[11,11,[[3,3,3,0,3,[[130,1,1,0,1],[132,1,1,1,2],[147,1,1,2,3]]],[4,2,2,3,5,[[155,1,1,3,4],[183,1,1,4,5]]],[6,1,1,5,6,[[231,1,1,5,6]]],[16,1,1,6,7,[[428,1,1,6,7]]],[23,3,3,7,10,[[784,1,1,7,8],[785,1,1,8,9],[787,1,1,9,10]]],[25,1,1,10,11,[[810,1,1,10,11]]]],[4111,4221,4682,4981,5740,7112,12760,19948,19973,20003,20628]]],["families",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1432]]],["little",[1,1,[[5,1,1,0,1,[[194,1,1,0,1]]]],[6037]]],["ones",[27,27,[[0,7,7,0,7,[[33,1,1,0,1],[42,1,1,1,2],[44,1,1,2,3],[45,1,1,3,4],[46,1,1,4,5],[49,2,2,5,7]]],[1,2,2,7,9,[[59,2,2,7,9]]],[3,7,7,9,16,[[130,1,1,9,10],[147,2,2,10,12],[148,4,4,12,16]]],[4,4,4,16,20,[[153,1,1,16,17],[155,1,1,17,18],[172,1,1,18,19],[181,1,1,19,20]]],[5,1,1,20,21,[[187,1,1,20,21]]],[6,1,1,21,22,[[228,1,1,21,22]]],[9,1,1,22,23,[[281,1,1,22,23]]],[13,2,2,23,25,[[386,1,1,23,24],[397,1,1,24,25]]],[14,1,1,25,26,[[410,1,1,25,26]]],[16,1,1,26,27,[[433,1,1,26,27]]]],[1009,1298,1377,1391,1444,1514,1527,1787,1801,4139,4673,4681,4734,4735,4742,4744,4931,4994,5441,5690,5865,7014,8411,11600,11872,12222,12828]]]]},{"k":"H2946","v":[["*",[2,2,[[22,1,1,0,1,[[726,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]]],[18627,20354]]],["spanned",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18627]]],["swaddled",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20354]]]]},{"k":"H2947","v":[["*",[3,3,[[10,1,1,0,1,[[297,1,1,0,1]]],[13,1,1,1,2,[[370,1,1,1,2]]],[18,1,1,2,3,[[516,1,1,2,3]]]],[8960,11251,14517]]],["breadth",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8960]]],["handbreadth",[2,2,[[13,1,1,0,1,[[370,1,1,0,1]]],[18,1,1,1,2,[[516,1,1,1,2]]]],[11251,14517]]]]},{"k":"H2948","v":[["*",[6,6,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[25,3,3,3,6,[[841,2,2,3,5],[844,1,1,5,6]]]],[2220,2616,8943,21482,21520,21585]]],["breadth",[3,3,[[1,1,1,0,1,[[74,1,1,0,1]]],[25,2,2,1,3,[[841,1,1,1,2],[844,1,1,2,3]]]],[2220,21482,21585]]],["broad",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21520]]],["coping",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8943]]],["handbreadth",[1,1,[[1,1,1,0,1,[[86,1,1,0,1]]]],[2616]]]]},{"k":"H2949","v":[["long",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20352]]]]},{"k":"H2950","v":[["*",[3,3,[[17,2,2,0,2,[[448,1,1,0,1],[449,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]]],[13157,13198,15967]]],["+",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13198]]],["forged",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15967]]],["forgers",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13157]]]]},{"k":"H2951","v":[["*",[2,2,[[23,1,1,0,1,[[795,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[20239,22729]]],["captain",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20239]]],["captains",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22729]]]]},{"k":"H2952","v":[["mincing",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17723]]]]},{"k":"H2953","v":[["*",[3,2,[[26,3,2,0,2,[[853,1,1,0,1],[856,2,1,1,2]]]],[21870,21952]]],["nails",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[856,1,1,1,2]]]],[21870,21952]]],["of",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21952]]]]},{"k":"H2954","v":[["fat",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15968]]]]},{"k":"H2955","v":[["Taphath",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8855]]]]},{"k":"H2956","v":[["continual",[2,2,[[19,2,2,0,2,[[646,1,1,0,1],[654,1,1,1,2]]]],[16938,17184]]]]},{"k":"H2957","v":[["*",[4,4,[[26,4,4,0,4,[[853,3,3,0,3],[854,1,1,3,4]]]],[21862,21869,21870,21895]]],["drive",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21862,21869]]],["driven",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[854,1,1,1,2]]]],[21870,21895]]]]},{"k":"H2958","v":[["before",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7186]]]]},{"k":"H2959","v":[["wearieth",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13780]]]]},{"k":"H2960","v":[["*",[2,2,[[4,1,1,0,1,[[153,1,1,0,1]]],[22,1,1,1,2,[[679,1,1,1,2]]]],[4904,17668]]],["cumbrance",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4904]]],["trouble",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17668]]]]},{"k":"H2961","v":[["*",[2,2,[[6,1,1,0,1,[[225,1,1,0,1]]],[22,1,1,1,2,[[679,1,1,1,2]]]],[6944,17660]]],["new",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6944]]],["putrifying",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17660]]]]},{"k":"H2962","v":[["*",[55,48,[[0,10,9,0,9,[[1,2,1,0,1],[18,1,1,1,2],[23,2,2,2,4],[26,2,2,4,6],[36,1,1,6,7],[40,1,1,7,8],[44,1,1,8,9]]],[1,4,4,9,13,[[50,1,1,9,10],[58,1,1,10,11],[59,1,1,11,12],[61,1,1,12,13]]],[2,1,1,13,14,[[103,1,1,13,14]]],[3,1,1,14,15,[[127,1,1,14,15]]],[4,1,1,15,16,[[183,1,1,15,16]]],[5,2,2,16,18,[[188,1,1,16,17],[189,1,1,17,18]]],[6,1,1,18,19,[[224,1,1,18,19]]],[8,5,4,19,23,[[237,1,1,19,20],[238,3,2,20,22],[244,1,1,22,23]]],[11,2,2,23,25,[[314,1,1,23,24],[318,1,1,24,25]]],[17,1,1,25,26,[[445,1,1,25,26]]],[18,4,4,26,30,[[516,1,1,26,27],[535,1,1,27,28],[567,1,1,28,29],[596,1,1,29,30]]],[19,3,3,30,33,[[635,1,1,30,31],[645,1,1,31,32],[657,1,1,32,33]]],[22,9,8,33,41,[[685,1,1,33,34],[686,1,1,34,35],[695,1,1,35,36],[706,1,1,36,37],[720,1,1,37,38],[726,1,1,38,39],[743,1,1,39,40],[744,2,1,40,41]]],[23,6,4,41,45,[[745,2,1,41,42],[757,2,1,42,43],[782,1,1,43,44],[791,1,1,44,45]]],[25,1,1,45,46,[[817,1,1,45,46]]],[35,3,1,46,47,[[907,3,1,46,47]]],[36,1,1,47,48,[[910,1,1,47,48]]]],[35,461,606,636,731,760,1101,1245,1386,1551,1772,1784,1850,3147,4057,5749,5877,5894,6927,7255,7279,7283,7404,9560,9706,13107,14525,14788,15380,15965,16627,16914,17258,17798,17811,17997,18168,18489,18619,18921,18929,18951,19282,19905,20074,20819,22807,22870]]],["+",[1,1,[[36,1,1,0,1,[[910,1,1,0,1]]]],[22870]]],["Before",[9,9,[[17,1,1,0,1,[[445,1,1,0,1]]],[18,3,3,1,4,[[535,1,1,1,2],[567,1,1,2,3],[596,1,1,3,4]]],[19,1,1,4,5,[[635,1,1,4,5]]],[22,1,1,5,6,[[744,1,1,5,6]]],[23,1,1,6,7,[[745,1,1,6,7]]],[25,1,1,7,8,[[817,1,1,7,8]]],[35,1,1,8,9,[[907,1,1,8,9]]]],[13107,14788,15380,15965,16627,18929,18951,20819,22807]]],["before",[37,34,[[0,10,9,0,9,[[1,2,1,0,1],[18,1,1,1,2],[23,2,2,2,4],[26,2,2,4,6],[36,1,1,6,7],[40,1,1,7,8],[44,1,1,8,9]]],[1,1,1,9,10,[[61,1,1,9,10]]],[2,1,1,10,11,[[103,1,1,10,11]]],[4,1,1,11,12,[[183,1,1,11,12]]],[5,2,2,12,14,[[188,1,1,12,13],[189,1,1,13,14]]],[6,1,1,14,15,[[224,1,1,14,15]]],[8,2,2,15,17,[[237,1,1,15,16],[244,1,1,16,17]]],[11,1,1,17,18,[[314,1,1,17,18]]],[18,1,1,18,19,[[516,1,1,18,19]]],[19,2,2,19,21,[[645,1,1,19,20],[657,1,1,20,21]]],[22,8,8,21,29,[[685,1,1,21,22],[686,1,1,22,23],[695,1,1,23,24],[706,1,1,24,25],[720,1,1,25,26],[726,1,1,26,27],[743,1,1,27,28],[744,1,1,28,29]]],[23,5,4,29,33,[[745,1,1,29,30],[757,2,1,30,31],[782,1,1,31,32],[791,1,1,32,33]]],[35,2,1,33,34,[[907,2,1,33,34]]]],[35,461,606,636,731,760,1101,1245,1386,1850,3147,5749,5877,5894,6927,7255,7404,9560,14525,16914,17258,17798,17811,17997,18168,18489,18619,18921,18929,18951,19282,19905,20074,22807]]],["ere",[4,4,[[1,1,1,0,1,[[50,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[8,1,1,2,3,[[238,1,1,2,3]]],[11,1,1,3,4,[[318,1,1,3,4]]]],[1551,4057,7279,9706]]],["yet",[4,3,[[1,2,2,0,2,[[58,1,1,0,1],[59,1,1,1,2]]],[8,2,1,2,3,[[238,2,1,2,3]]]],[1772,1784,7283]]]]},{"k":"H2963","v":[["*",[25,22,[[0,5,3,0,3,[[36,2,1,0,1],[43,2,1,1,2],[48,1,1,2,3]]],[1,2,1,3,4,[[71,2,1,3,4]]],[4,1,1,4,5,[[185,1,1,4,5]]],[17,2,2,5,7,[[451,1,1,5,6],[453,1,1,6,7]]],[18,4,4,7,11,[[484,1,1,7,8],[494,1,1,8,9],[499,1,1,9,10],[527,1,1,10,11]]],[19,1,1,11,12,[[657,1,1,11,12]]],[23,1,1,12,13,[[749,1,1,12,13]]],[25,4,4,13,17,[[820,2,2,13,15],[823,2,2,15,17]]],[27,2,2,17,19,[[866,1,1,17,18],[867,1,1,18,19]]],[29,1,1,19,20,[[879,1,1,19,20]]],[32,1,1,20,21,[[897,1,1,20,21]]],[33,1,1,21,22,[[901,1,1,21,22]]]],[1116,1352,1500,2126,5830,13247,13280,13997,14115,14217,14690,17259,19064,20884,20887,21001,21003,22166,22168,22375,22641,22711]]],["+",[6,3,[[0,4,2,0,2,[[36,2,1,0,1],[43,2,1,1,2]]],[1,2,1,2,3,[[71,2,1,2,3]]]],[1116,1352,2126]]],["catch",[2,2,[[25,2,2,0,2,[[820,2,2,0,2]]]],[20884,20887]]],["feed",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17259]]],["pieces",[4,4,[[18,1,1,0,1,[[527,1,1,0,1]]],[23,1,1,1,2,[[749,1,1,1,2]]],[32,1,1,2,3,[[897,1,1,2,3]]],[33,1,1,3,4,[[901,1,1,3,4]]]],[14690,19064,22641,22711]]],["prey",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14115]]],["ravening",[3,3,[[18,1,1,0,1,[[499,1,1,0,1]]],[25,2,2,1,3,[[823,2,2,1,3]]]],[14217,21001,21003]]],["ravin",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1500]]],["tear",[3,3,[[18,1,1,0,1,[[484,1,1,0,1]]],[27,1,1,1,2,[[866,1,1,1,2]]],[29,1,1,2,3,[[879,1,1,2,3]]]],[13997,22166,22375]]],["teareth",[3,3,[[4,1,1,0,1,[[185,1,1,0,1]]],[17,2,2,1,3,[[451,1,1,1,2],[453,1,1,2,3]]]],[5830,13247,13280]]],["torn",[1,1,[[27,1,1,0,1,[[867,1,1,0,1]]]],[22168]]]]},{"k":"H2964","v":[["*",[22,22,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[17,4,4,2,6,[[439,1,1,2,3],[459,1,1,3,4],[464,1,1,4,5],[473,1,1,5,6]]],[18,4,4,6,10,[[553,1,1,6,7],[581,1,1,7,8],[588,1,1,8,9],[601,1,1,9,10]]],[19,1,1,10,11,[[658,1,1,10,11]]],[22,2,2,11,13,[[683,1,1,11,12],[709,1,1,12,13]]],[25,4,4,13,17,[[820,2,2,13,15],[823,2,2,15,17]]],[29,1,1,17,18,[[881,1,1,17,18]]],[33,3,3,18,21,[[901,2,2,18,20],[902,1,1,20,21]]],[38,1,1,21,22,[[927,1,1,21,22]]]],[1482,4440,12941,13441,13549,13832,15085,15592,15798,16108,17299,17768,18254,20884,20887,21001,21003,22399,22711,22712,22713,23130]]],["+",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1482]]],["meat",[3,3,[[18,1,1,0,1,[[588,1,1,0,1]]],[19,1,1,1,2,[[658,1,1,1,2]]],[38,1,1,2,3,[[927,1,1,2,3]]]],[15798,17299,23130]]],["prey",[17,17,[[3,1,1,0,1,[[139,1,1,0,1]]],[17,3,3,1,4,[[439,1,1,1,2],[459,1,1,2,3],[473,1,1,3,4]]],[18,3,3,4,7,[[553,1,1,4,5],[581,1,1,5,6],[601,1,1,6,7]]],[22,2,2,7,9,[[683,1,1,7,8],[709,1,1,8,9]]],[25,4,4,9,13,[[820,2,2,9,11],[823,2,2,11,13]]],[29,1,1,13,14,[[881,1,1,13,14]]],[33,3,3,14,17,[[901,2,2,14,16],[902,1,1,16,17]]]],[4440,12941,13441,13832,15085,15592,16108,17768,18254,20884,20887,21001,21003,22399,22711,22712,22713]]],["spoil",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13549]]]]},{"k":"H2965","v":[["*",[2,2,[[0,1,1,0,1,[[7,1,1,0,1]]],[25,1,1,1,2,[[818,1,1,1,2]]]],[194,20834]]],["leaves",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20834]]],["off",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[194]]]]},{"k":"H2966","v":[["*",[9,9,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,2,2,1,3,[[71,2,2,1,3]]],[2,3,3,3,6,[[96,1,1,3,4],[106,1,1,4,5],[111,1,1,5,6]]],[25,2,2,6,8,[[805,1,1,6,7],[845,1,1,7,8]]],[33,1,1,8,9,[[901,1,1,8,9]]]],[912,2126,2144,2903,3250,3377,20543,21630,22711]]],["beasts",[2,2,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,1,1,1,2,[[96,1,1,1,2]]]],[2144,2903]]],["pieces",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20543]]],["ravin",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22711]]],["torn",[5,5,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[2,2,2,2,4,[[106,1,1,2,3],[111,1,1,3,4]]],[25,1,1,4,5,[[845,1,1,4,5]]]],[912,2126,3250,3377,21630]]]]},{"k":"H2967","v":[["Tarpelites",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12119]]]]},{"k":"H2968","v":[["longed",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16029]]]]},{"k":"H2969","v":[["appertain",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19208]]]]},{"k":"H2970","v":[["Jaazaniah",[4,4,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,1,1,1,2,[[779,1,1,1,2]]],[25,2,2,2,4,[[809,1,1,2,3],[812,1,1,3,4]]]],[10245,19826,20615,20656]]]]},{"k":"H2971","v":[["Jair",[9,9,[[3,1,1,0,1,[[148,1,1,0,1]]],[4,1,1,1,2,[[155,1,1,1,2]]],[5,1,1,2,3,[[199,1,1,2,3]]],[6,2,2,3,5,[[220,2,2,3,5]]],[10,1,1,5,6,[[294,1,1,5,6]]],[12,2,2,6,8,[[339,2,2,6,8]]],[16,1,1,8,9,[[427,1,1,8,9]]]],[4759,4989,6184,6814,6816,8857,10328,10329,12729]]]]},{"k":"H2972","v":[["Jairite",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8580]]]]},{"k":"H2973","v":[["*",[4,4,[[3,1,1,0,1,[[128,1,1,0,1]]],[22,1,1,1,2,[[697,1,1,1,2]]],[23,2,2,2,4,[[749,1,1,2,3],[794,1,1,3,4]]]],[4070,18017,19062,20202]]],["dote",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20202]]],["foolish",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19062]]],["foolishly",[1,1,[[3,1,1,0,1,[[128,1,1,0,1]]]],[4070]]],["fools",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18017]]]]},{"k":"H2974","v":[["*",[19,19,[[0,2,2,0,2,[[17,2,2,0,2]]],[1,1,1,2,3,[[51,1,1,2,3]]],[4,1,1,3,4,[[153,1,1,3,4]]],[5,2,2,4,6,[[193,1,1,4,5],[203,1,1,5,6]]],[6,4,4,6,10,[[211,2,2,6,8],[227,1,1,8,9],[229,1,1,9,10]]],[8,2,2,10,12,[[247,1,1,10,11],[252,1,1,11,12]]],[9,1,1,12,13,[[273,1,1,12,13]]],[11,2,2,13,15,[[317,1,1,13,14],[318,1,1,14,15]]],[12,1,1,15,16,[[354,1,1,15,16]]],[17,2,2,16,18,[[441,2,2,16,18]]],[27,1,1,18,19,[[866,1,1,18,19]]]],[451,455,1575,4897,5983,6287,6536,6544,6991,7030,7482,7657,8209,9670,9677,10890,12987,13006,22163]]],["assayed",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7657]]],["began",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4897]]],["content",[7,7,[[1,1,1,0,1,[[51,1,1,0,1]]],[5,1,1,1,2,[[193,1,1,1,2]]],[6,2,2,2,4,[[227,1,1,2,3],[229,1,1,3,4]]],[11,2,2,4,6,[[317,1,1,4,5],[318,1,1,5,6]]],[17,1,1,6,7,[[441,1,1,6,7]]]],[1575,5983,6991,7030,9670,9677,13006]]],["please",[3,3,[[9,1,1,0,1,[[273,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]],[17,1,1,2,3,[[441,1,1,2,3]]]],[8209,10890,12987]]],["pleased",[1,1,[[8,1,1,0,1,[[247,1,1,0,1]]]],[7482]]],["upon",[2,2,[[0,2,2,0,2,[[17,2,2,0,2]]]],[451,455]]],["willingly",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22163]]],["would",[3,3,[[5,1,1,0,1,[[203,1,1,0,1]]],[6,2,2,1,3,[[211,2,2,1,3]]]],[6287,6536,6544]]]]},{"k":"H2975","v":[["*",[65,48,[[0,6,5,0,5,[[40,6,5,0,5]]],[1,25,17,5,22,[[50,1,1,5,6],[51,3,2,6,8],[53,2,1,8,9],[56,14,8,9,17],[57,4,4,17,21],[66,1,1,21,22]]],[11,1,1,22,23,[[331,1,1,22,23]]],[17,1,1,23,24,[[463,1,1,23,24]]],[18,1,1,24,25,[[555,1,1,24,25]]],[22,10,8,25,33,[[685,1,1,25,26],[697,5,3,26,29],[701,2,2,29,31],[711,1,1,31,32],[715,1,1,32,33]]],[23,2,2,33,35,[[790,2,2,33,35]]],[25,9,6,35,41,[[830,8,5,35,40],[831,1,1,40,41]]],[26,4,3,41,44,[[861,4,3,41,44]]],[29,4,2,44,46,[[886,2,1,44,45],[887,2,1,45,46]]],[33,1,1,46,47,[[902,1,1,46,47]]],[37,1,1,47,48,[[920,1,1,47,48]]]],[1196,1197,1198,1212,1213,1554,1557,1559,1610,1700,1702,1703,1704,1705,1706,1709,1710,1713,1715,1719,1721,1988,10085,13514,15157,17800,18010,18011,18012,18080,18087,18300,18377,20052,20053,21186,21187,21188,21192,21193,21216,22086,22087,22088,22489,22500,22720,23027]]],["brooks",[5,3,[[22,5,3,0,3,[[697,5,3,0,3]]]],[18010,18011,18012]]],["flood",[6,4,[[23,2,2,0,2,[[790,2,2,0,2]]],[29,4,2,2,4,[[886,2,1,2,3],[887,2,1,3,4]]]],[20052,20053,22489,22500]]],["river",[35,26,[[0,6,5,0,5,[[40,6,5,0,5]]],[1,20,13,5,18,[[50,1,1,5,6],[51,1,1,6,7],[53,2,1,7,8],[56,12,6,8,14],[57,3,3,14,17],[66,1,1,17,18]]],[22,2,2,18,20,[[701,2,2,18,20]]],[25,2,2,20,22,[[830,2,2,20,22]]],[26,4,3,22,25,[[861,4,3,22,25]]],[37,1,1,25,26,[[920,1,1,25,26]]]],[1196,1197,1198,1212,1213,1554,1559,1610,1702,1703,1705,1706,1709,1710,1713,1719,1721,1988,18080,18087,21186,21192,22086,22087,22088,23027]]],["river's",[3,3,[[1,3,3,0,3,[[51,2,2,0,2],[56,1,1,2,3]]]],[1557,1559,1700]]],["rivers",[15,13,[[1,2,2,0,2,[[56,1,1,0,1],[57,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[17,1,1,3,4,[[463,1,1,3,4]]],[18,1,1,4,5,[[555,1,1,4,5]]],[22,2,2,5,7,[[685,1,1,5,6],[715,1,1,6,7]]],[25,7,5,7,12,[[830,6,4,7,11],[831,1,1,11,12]]],[33,1,1,12,13,[[902,1,1,12,13]]]],[1704,1715,10085,13514,15157,17800,18377,21186,21187,21188,21193,21216,22720]]],["streams",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18300]]]]},{"k":"H2976","v":[["*",[6,6,[[8,1,1,0,1,[[262,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]],[20,1,1,2,3,[[660,1,1,2,3]]],[22,1,1,3,4,[[735,1,1,3,4]]],[23,2,2,4,6,[[746,1,1,4,5],[762,1,1,5,6]]]],[7931,13004,17353,18775,18990,19396]]],["despair",[2,2,[[8,1,1,0,1,[[262,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[7931,17353]]],["desperate",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[13004]]],["hope",[3,3,[[22,1,1,0,1,[[735,1,1,0,1]]],[23,2,2,1,3,[[746,1,1,1,2],[762,1,1,2,3]]]],[18775,18990,19396]]]]},{"k":"H2977","v":[["*",[53,48,[[10,1,1,0,1,[[303,1,1,0,1]]],[11,13,12,1,13,[[333,2,2,1,3],[334,2,2,3,5],[335,9,8,5,13]]],[12,2,2,13,15,[[340,2,2,13,15]]],[13,17,15,15,30,[[399,1,1,15,16],[400,2,2,16,18],[401,13,11,18,29],[402,1,1,29,30]]],[23,18,16,30,46,[[745,3,2,30,32],[747,1,1,32,33],[766,3,2,33,35],[769,2,2,35,37],[770,1,1,37,38],[771,1,1,38,39],[779,1,1,39,40],[780,3,3,40,43],[781,1,1,43,44],[789,1,1,44,45],[790,1,1,45,46]]],[35,1,1,46,47,[[906,1,1,46,47]]],[37,1,1,47,48,[[916,1,1,47,48]]]],[9186,10143,10145,10146,10148,10181,10184,10188,10189,10193,10194,10195,10199,10375,10376,11933,11934,11966,11967,11973,11982,11984,11985,11986,11988,11989,11990,11991,11992,11994,18948,18949,19008,19465,19472,19535,19537,19573,19597,19824,19843,19844,19851,19875,20041,20047,22788,22957]]],["+",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11933]]],["Josiah",[52,47,[[10,1,1,0,1,[[303,1,1,0,1]]],[11,13,12,1,13,[[333,2,2,1,3],[334,2,2,3,5],[335,9,8,5,13]]],[12,2,2,13,15,[[340,2,2,13,15]]],[13,16,14,15,29,[[400,2,2,15,17],[401,13,11,17,28],[402,1,1,28,29]]],[23,18,16,29,45,[[745,3,2,29,31],[747,1,1,31,32],[766,3,2,32,34],[769,2,2,34,36],[770,1,1,36,37],[771,1,1,37,38],[779,1,1,38,39],[780,3,3,39,42],[781,1,1,42,43],[789,1,1,43,44],[790,1,1,44,45]]],[35,1,1,45,46,[[906,1,1,45,46]]],[37,1,1,46,47,[[916,1,1,46,47]]]],[9186,10143,10145,10146,10148,10181,10184,10188,10189,10193,10194,10195,10199,10375,10376,11934,11966,11967,11973,11982,11984,11985,11986,11988,11989,11990,11991,11992,11994,18948,18949,19008,19465,19472,19535,19537,19573,19597,19824,19843,19844,19851,19875,20041,20047,22788,22957]]]]},{"k":"H2978","v":[["entrance",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21492]]]]},{"k":"H2979","v":[["Jeaterai",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10475]]]]},{"k":"H2980","v":[["cried",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6651]]]]},{"k":"H2981","v":[["*",[13,13,[[2,2,2,0,2,[[115,2,2,0,2]]],[4,2,2,2,4,[[163,1,1,2,3],[184,1,1,3,4]]],[6,1,1,4,5,[[216,1,1,4,5]]],[17,1,1,5,6,[[455,1,1,5,6]]],[18,3,3,6,9,[[544,1,1,6,7],[555,1,1,7,8],[562,1,1,8,9]]],[25,1,1,9,10,[[835,1,1,9,10]]],[34,1,1,10,11,[[905,1,1,10,11]]],[36,1,1,11,12,[[909,1,1,11,12]]],[37,1,1,12,13,[[918,1,1,12,13]]]],[3528,3544,5225,5780,6658,13354,14899,15159,15283,21340,22785,22850,22988]]],["fruit",[3,3,[[4,1,1,0,1,[[163,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]],[36,1,1,2,3,[[909,1,1,2,3]]]],[5225,22785,22850]]],["increase",[10,10,[[2,2,2,0,2,[[115,2,2,0,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[6,1,1,3,4,[[216,1,1,3,4]]],[17,1,1,4,5,[[455,1,1,4,5]]],[18,3,3,5,8,[[544,1,1,5,6],[555,1,1,6,7],[562,1,1,7,8]]],[25,1,1,8,9,[[835,1,1,8,9]]],[37,1,1,9,10,[[918,1,1,9,10]]]],[3528,3544,5780,6658,13354,14899,15159,15283,21340,22988]]]]},{"k":"H2982","v":[["Jebus",[4,4,[[6,2,2,0,2,[[229,2,2,0,2]]],[12,2,2,2,4,[[348,2,2,2,4]]]],[7034,7035,10677,10678]]]]},{"k":"H2983","v":[["*",[41,39,[[0,2,2,0,2,[[9,1,1,0,1],[14,1,1,1,2]]],[1,6,6,2,8,[[52,2,2,2,4],[62,1,1,4,5],[72,1,1,5,6],[82,1,1,6,7],[83,1,1,7,8]]],[3,1,1,8,9,[[129,1,1,8,9]]],[4,2,2,9,11,[[159,1,1,9,10],[172,1,1,10,11]]],[5,10,9,11,20,[[189,1,1,11,12],[195,1,1,12,13],[197,1,1,13,14],[198,1,1,14,15],[201,3,2,15,17],[204,2,2,17,19],[210,1,1,19,20]]],[6,4,3,20,23,[[211,2,1,20,21],[213,1,1,21,22],[229,1,1,22,23]]],[9,4,4,23,27,[[271,2,2,23,25],[290,2,2,25,27]]],[10,1,1,27,28,[[299,1,1,27,28]]],[12,6,6,28,34,[[338,1,1,28,29],[348,2,2,29,31],[358,3,3,31,34]]],[13,2,2,34,36,[[369,1,1,34,35],[374,1,1,35,36]]],[14,1,1,36,37,[[411,1,1,36,37]]],[15,1,1,37,38,[[421,1,1,37,38]]],[37,1,1,38,39,[[919,1,1,38,39]]]],[250,381,1587,1596,1872,2167,2475,2507,4104,5112,5444,5903,6038,6110,6138,6210,6265,6309,6321,6487,6530,6573,7035,8138,8140,8708,8710,9071,10266,10677,10679,10949,10952,10962,11230,11353,12238,12519,23006]]],["Jebusi",[2,2,[[5,2,2,0,2,[[204,2,2,0,2]]]],[6309,6321]]],["Jebusite",[14,14,[[0,1,1,0,1,[[9,1,1,0,1]]],[1,2,2,1,3,[[82,1,1,1,2],[83,1,1,2,3]]],[5,3,3,3,6,[[195,1,1,3,4],[197,1,1,4,5],[201,1,1,5,6]]],[9,2,2,6,8,[[290,2,2,6,8]]],[12,4,4,8,12,[[338,1,1,8,9],[358,3,3,9,12]]],[13,1,1,12,13,[[369,1,1,12,13]]],[37,1,1,13,14,[[919,1,1,13,14]]]],[250,2475,2507,6038,6110,6210,8708,8710,10266,10949,10952,10962,11230,23006]]],["Jebusites",[25,23,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,4,4,1,5,[[52,2,2,1,3],[62,1,1,3,4],[72,1,1,4,5]]],[3,1,1,5,6,[[129,1,1,5,6]]],[4,2,2,6,8,[[159,1,1,6,7],[172,1,1,7,8]]],[5,5,4,8,12,[[189,1,1,8,9],[198,1,1,9,10],[201,2,1,10,11],[210,1,1,11,12]]],[6,4,3,12,15,[[211,2,1,12,13],[213,1,1,13,14],[229,1,1,14,15]]],[9,2,2,15,17,[[271,2,2,15,17]]],[10,1,1,17,18,[[299,1,1,17,18]]],[12,2,2,18,20,[[348,2,2,18,20]]],[13,1,1,20,21,[[374,1,1,20,21]]],[14,1,1,21,22,[[411,1,1,21,22]]],[15,1,1,22,23,[[421,1,1,22,23]]]],[381,1587,1596,1872,2167,4104,5112,5444,5903,6138,6265,6487,6530,6573,7035,8138,8140,9071,10677,10679,11353,12238,12519]]]]},{"k":"H2984","v":[["Ibhar",[3,3,[[9,1,1,0,1,[[271,1,1,0,1]]],[12,2,2,1,3,[[340,1,1,1,2],[351,1,1,2,3]]]],[8147,10367,10779]]]]},{"k":"H2985","v":[["*",[8,7,[[5,1,1,0,1,[[197,1,1,0,1]]],[6,6,5,1,6,[[214,6,5,1,6]]],[18,1,1,6,7,[[560,1,1,6,7]]]],[6108,6601,6606,6616,6622,6623,15250]]],["Jabin",[7,6,[[5,1,1,0,1,[[197,1,1,0,1]]],[6,5,4,1,5,[[214,5,4,1,5]]],[18,1,1,5,6,[[560,1,1,5,6]]]],[6108,6601,6616,6622,6623,15250]]],["Jabin's",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6606]]]]},{"k":"H2986","v":[["*",[18,18,[[17,3,3,0,3,[[445,1,1,0,1],[456,2,2,1,3]]],[18,6,6,3,9,[[522,2,2,3,5],[537,1,1,5,6],[545,1,1,6,7],[553,1,1,7,8],[585,1,1,8,9]]],[22,4,4,9,13,[[696,1,1,9,10],[701,1,1,10,11],[731,1,1,11,12],[733,1,1,12,13]]],[23,2,2,13,15,[[755,1,1,13,14],[775,1,1,14,15]]],[27,2,2,15,17,[[871,1,1,15,16],[873,1,1,16,17]]],[35,1,1,17,18,[[908,1,1,17,18]]]],[13105,13385,13387,14611,14612,14816,14929,15092,15752,18004,18084,18718,18752,19245,19700,22231,22253,22830]]],["bring",[5,5,[[18,4,4,0,4,[[537,1,1,0,1],[545,1,1,1,2],[553,1,1,2,3],[585,1,1,3,4]]],[35,1,1,4,5,[[908,1,1,4,5]]]],[14816,14929,15092,15752,22830]]],["brought",[6,6,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,2,2,1,3,[[522,2,2,1,3]]],[22,2,2,3,5,[[696,1,1,3,4],[731,1,1,4,5]]],[23,1,1,5,6,[[755,1,1,5,6]]]],[13387,14611,14612,18004,18718,19245]]],["carried",[3,3,[[17,1,1,0,1,[[445,1,1,0,1]]],[27,2,2,1,3,[[871,1,1,1,2],[873,1,1,2,3]]]],[13105,22231,22253]]],["carry",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18084]]],["forth",[2,2,[[17,1,1,0,1,[[456,1,1,0,1]]],[22,1,1,1,2,[[733,1,1,1,2]]]],[13385,18752]]],["lead",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19700]]]]},{"k":"H2987","v":[["*",[3,3,[[14,3,3,0,3,[[407,1,1,0,1],[408,1,1,1,2],[409,1,1,2,3]]]],[12148,12156,12188]]],["brought",[2,2,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]]],[12148,12156]]],["carry",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12188]]]]},{"k":"H2988","v":[["*",[2,2,[[22,2,2,0,2,[[708,1,1,0,1],[722,1,1,1,2]]]],[18242,18537]]],["courses",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18537]]],["streams",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18242]]]]},{"k":"H2989","v":[["Jabal",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[99]]]]},{"k":"H2990","v":[["wen",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3391]]]]},{"k":"H2991","v":[["Ibleam",[3,3,[[5,1,1,0,1,[[203,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]],[11,1,1,2,3,[[321,1,1,2,3]]]],[6286,6536,9783]]]]},{"k":"H2992","v":[["*",[3,3,[[0,1,1,0,1,[[37,1,1,0,1]]],[4,2,2,1,3,[[177,2,2,1,3]]]],[1127,5552,5554]]],["brother",[2,2,[[4,2,2,0,2,[[177,2,2,0,2]]]],[5552,5554]]],["marry",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1127]]]]},{"k":"H2993","v":[["brother",[2,2,[[4,2,2,0,2,[[177,2,2,0,2]]]],[5552,5554]]]]},{"k":"H2994","v":[["*",[5,3,[[4,3,2,0,2,[[177,3,2,0,2]]],[7,2,1,2,3,[[232,2,1,2,3]]]],[5554,5556,7142]]],["law",[2,1,[[7,2,1,0,1,[[232,2,1,0,1]]]],[7142]]],["wife",[3,2,[[4,3,2,0,2,[[177,3,2,0,2]]]],[5554,5556]]]]},{"k":"H2995","v":[["Jabneel",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]]],[6213,6354]]]]},{"k":"H2996","v":[["Jabneh",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11738]]]]},{"k":"H2997","v":[["Ibneiah",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10623]]]]},{"k":"H2998","v":[["Ibnijah",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10623]]]]},{"k":"H2999","v":[["Jabbok",[7,7,[[0,1,1,0,1,[[31,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[4,2,2,2,4,[[154,1,1,2,3],[155,1,1,3,4]]],[5,1,1,4,5,[[198,1,1,4,5]]],[6,2,2,5,7,[[221,2,2,5,7]]]],[950,4364,4975,4991,6132,6842,6851]]]]},{"k":"H3000","v":[["Jeberechiah",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17809]]]]},{"k":"H3001","v":[["*",[69,58,[[0,2,2,0,2,[[7,2,2,0,2]]],[5,6,5,2,7,[[188,1,1,2,3],[190,2,1,3,4],[191,1,1,4,5],[195,2,2,5,7]]],[9,1,1,7,8,[[285,1,1,7,8]]],[10,2,2,8,10,[[303,1,1,8,9],[307,1,1,9,10]]],[17,5,5,10,15,[[443,1,1,10,11],[447,1,1,11,12],[449,1,1,12,13],[450,1,1,13,14],[453,1,1,14,15]]],[18,6,6,15,21,[[499,1,1,15,16],[551,1,1,16,17],[567,1,1,17,18],[579,2,2,18,20],[606,1,1,20,21]]],[19,1,1,21,22,[[644,1,1,21,22]]],[22,10,9,22,31,[[693,1,1,22,23],[697,2,2,23,25],[705,1,1,25,26],[718,3,3,26,29],[720,2,1,29,30],[722,1,1,30,31]]],[23,12,10,31,41,[[754,1,1,31,32],[756,1,1,32,33],[767,1,1,33,34],[790,1,1,34,35],[792,3,2,35,37],[794,3,2,37,39],[795,2,2,39,41]]],[24,1,1,41,42,[[800,1,1,41,42]]],[25,9,5,42,47,[[818,6,3,42,45],[820,2,1,45,46],[838,1,1,46,47]]],[27,1,1,47,48,[[870,1,1,47,48]]],[28,6,4,48,52,[[876,6,4,48,52]]],[29,2,2,52,54,[[879,1,1,52,53],[882,1,1,53,54]]],[31,1,1,54,55,[[892,1,1,54,55]]],[33,1,1,55,56,[[900,1,1,55,56]]],[37,3,2,56,58,[[920,1,1,56,57],[921,2,1,57,58]]]],[190,197,5879,5933,5935,6042,6049,8516,9188,9324,13041,13143,13192,13233,13292,14219,15063,15384,15525,15532,16138,16895,17966,18009,18011,18162,18427,18428,18444,18495,18560,19215,19253,19494,20069,20081,20100,20168,20204,20229,20248,20428,20834,20835,20849,20893,21408,22224,22301,22303,22308,22311,22366,22417,22575,22688,23027,23045]]],["+",[7,5,[[5,3,3,0,3,[[188,1,1,0,1],[190,1,1,1,2],[191,1,1,2,3]]],[25,2,1,3,4,[[818,2,1,3,4]]],[37,2,1,4,5,[[921,2,1,4,5]]]],[5879,5933,5935,20835,23045]]],["away",[2,2,[[22,1,1,0,1,[[693,1,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]]],[17966,22303]]],["confounded",[8,6,[[23,8,6,0,6,[[754,1,1,0,1],[790,1,1,1,2],[792,3,2,2,4],[794,2,1,4,5],[795,1,1,5,6]]]],[19215,20069,20081,20100,20168,20229]]],["dried",[2,2,[[0,1,1,0,1,[[7,1,1,0,1]]],[25,1,1,1,2,[[838,1,1,1,2]]]],[197,21408]]],["drieth",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16895]]],["dry",[4,4,[[5,2,2,0,2,[[195,2,2,0,2]]],[23,1,1,2,3,[[795,1,1,2,3]]],[33,1,1,3,4,[[900,1,1,3,4]]]],[6042,6049,20248,22688]]],["shamed",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8516]]],["up",[23,22,[[0,1,1,0,1,[[7,1,1,0,1]]],[5,1,1,1,2,[[190,1,1,1,2]]],[10,2,2,2,4,[[303,1,1,2,3],[307,1,1,3,4]]],[17,4,4,4,8,[[447,1,1,4,5],[449,1,1,5,6],[450,1,1,6,7],[453,1,1,7,8]]],[18,2,2,8,10,[[499,1,1,8,9],[551,1,1,9,10]]],[22,4,3,10,13,[[697,1,1,10,11],[720,2,1,11,12],[722,1,1,12,13]]],[23,2,2,13,15,[[767,1,1,13,14],[794,1,1,14,15]]],[25,2,2,15,17,[[818,1,1,15,16],[820,1,1,16,17]]],[27,1,1,17,18,[[870,1,1,17,18]]],[28,3,3,18,21,[[876,3,3,18,21]]],[37,1,1,21,22,[[920,1,1,21,22]]]],[190,5933,9188,9324,13143,13192,13233,13292,14219,15063,18009,18495,18560,19494,20204,20849,20893,22224,22301,22303,22311,23027]]],["wither",[7,6,[[22,2,2,0,2,[[697,1,1,0,1],[718,1,1,1,2]]],[23,1,1,2,3,[[756,1,1,2,3]]],[25,3,2,3,5,[[818,3,2,3,5]]],[29,1,1,5,6,[[879,1,1,5,6]]]],[18011,18444,19253,20834,20835,22366]]],["withered",[9,9,[[18,2,2,0,2,[[579,2,2,0,2]]],[22,1,1,2,3,[[705,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]],[25,1,1,4,5,[[820,1,1,4,5]]],[28,2,2,5,7,[[876,2,2,5,7]]],[29,1,1,7,8,[[882,1,1,7,8]]],[31,1,1,8,9,[[892,1,1,8,9]]]],[15525,15532,18162,20428,20893,22303,22308,22417,22575]]],["withereth",[5,5,[[17,1,1,0,1,[[443,1,1,0,1]]],[18,2,2,1,3,[[567,1,1,1,2],[606,1,1,2,3]]],[22,2,2,3,5,[[718,2,2,3,5]]]],[13041,15384,16138,18427,18428]]]]},{"k":"H3002","v":[["*",[9,9,[[3,2,2,0,2,[[122,1,1,0,1],[127,1,1,1,2]]],[17,1,1,2,3,[[448,1,1,2,3]]],[22,1,1,3,4,[[734,1,1,3,4]]],[25,4,4,4,8,[[818,1,1,4,5],[821,1,1,5,6],[838,2,2,6,8]]],[33,1,1,8,9,[[900,1,1,8,9]]]],[3826,4030,13178,18756,20849,20942,21399,21401,22694]]],["away",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4030]]],["dried",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3826]]],["dry",[7,7,[[17,1,1,0,1,[[448,1,1,0,1]]],[22,1,1,1,2,[[734,1,1,1,2]]],[25,4,4,2,6,[[818,1,1,2,3],[821,1,1,3,4],[838,2,2,4,6]]],[33,1,1,6,7,[[900,1,1,6,7]]]],[13178,18756,20849,20942,21399,21401,22694]]]]},{"k":"H3003","v":[["*",[24,21,[[6,5,5,0,5,[[231,5,5,0,5]]],[8,10,8,5,13,[[246,7,5,5,10],[266,3,3,10,13]]],[9,3,3,13,16,[[268,2,2,13,15],[287,1,1,15,16]]],[11,3,3,16,19,[[327,3,3,16,19]]],[12,3,2,19,21,[[347,3,2,19,21]]]],[7110,7111,7112,7114,7116,7446,7448,7450,7454,7455,8020,8021,8022,8053,8054,8592,9935,9938,9939,10670,10671]]],["+",[12,12,[[6,5,5,0,5,[[231,5,5,0,5]]],[8,3,3,5,8,[[246,2,2,5,7],[266,1,1,7,8]]],[9,3,3,8,11,[[268,2,2,8,10],[287,1,1,10,11]]],[12,1,1,11,12,[[347,1,1,11,12]]]],[7110,7111,7112,7114,7116,7446,7454,8020,8053,8054,8592,10670]]],["Jabesh",[12,11,[[8,7,7,0,7,[[246,5,5,0,5],[266,2,2,5,7]]],[11,3,3,7,10,[[327,3,3,7,10]]],[12,2,1,10,11,[[347,2,1,10,11]]]],[7446,7448,7450,7454,7455,8021,8022,9935,9938,9939,10671]]]]},{"k":"H3004","v":[["*",[14,14,[[0,2,2,0,2,[[0,2,2,0,2]]],[1,5,5,2,7,[[53,1,1,2,3],[63,3,3,3,6],[64,1,1,6,7]]],[5,1,1,7,8,[[190,1,1,7,8]]],[15,1,1,8,9,[[421,1,1,8,9]]],[18,1,1,9,10,[[543,1,1,9,10]]],[22,1,1,10,11,[[722,1,1,10,11]]],[31,3,3,11,14,[[889,2,2,11,13],[890,1,1,13,14]]]],[8,9,1610,1905,1911,1918,1939,5932,12522,14879,18536,22540,22544,22558]]],["dry",[10,10,[[0,2,2,0,2,[[0,2,2,0,2]]],[1,5,5,2,7,[[53,1,1,2,3],[63,3,3,3,6],[64,1,1,6,7]]],[18,1,1,7,8,[[543,1,1,7,8]]],[31,2,2,8,10,[[889,1,1,8,9],[890,1,1,9,10]]]],[8,9,1610,1905,1911,1918,1939,14879,22540,22558]]],["ground",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18536]]],["land",[3,3,[[5,1,1,0,1,[[190,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[31,1,1,2,3,[[889,1,1,2,3]]]],[5932,12522,22544]]]]},{"k":"H3005","v":[["Jibsam",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10537]]]]},{"k":"H3006","v":[["dry",[2,2,[[1,1,1,0,1,[[53,1,1,0,1]]],[18,1,1,1,2,[[572,1,1,1,2]]]],[1610,15459]]]]},{"k":"H3007","v":[["earth",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21768]]]]},{"k":"H3008","v":[["*",[3,3,[[3,1,1,0,1,[[129,1,1,0,1]]],[9,1,1,1,2,[[289,1,1,1,2]]],[12,1,1,2,3,[[340,1,1,2,3]]]],[4082,8689,10383]]],["Igal",[2,2,[[3,1,1,0,1,[[129,1,1,0,1]]],[9,1,1,1,2,[[289,1,1,1,2]]]],[4082,8689]]],["Igeal",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10383]]]]},{"k":"H3009","v":[["husbandmen",[1,1,[[23,1,1,0,1,[[796,1,1,0,1]]]],[20292]]]]},{"k":"H3010","v":[["fields",[1,1,[[23,1,1,0,1,[[783,1,1,0,1]]]],[19933]]]]},{"k":"H3011","v":[["Jogbehah",[2,2,[[3,1,1,0,1,[[148,1,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]]],[4753,6730]]]]},{"k":"H3012","v":[["Igdaliah",[1,1,[[23,1,1,0,1,[[779,1,1,0,1]]]],[19827]]]]},{"k":"H3013","v":[["*",[8,8,[[17,1,1,0,1,[[454,1,1,0,1]]],[22,1,1,1,2,[[729,1,1,1,2]]],[24,5,5,2,7,[[797,3,3,2,5],[799,2,2,5,7]]],[35,1,1,7,8,[[908,1,1,7,8]]]],[13299,18696,20314,20315,20322,20386,20387,22838]]],["afflict",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18696]]],["afflicted",[3,3,[[24,3,3,0,3,[[797,3,3,0,3]]]],[20314,20315,20322]]],["grief",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20386]]],["grieve",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20387]]],["sorrowful",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22838]]],["vex",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13299]]]]},{"k":"H3014","v":[["removed",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8567]]]]},{"k":"H3015","v":[["*",[14,14,[[0,2,2,0,2,[[41,1,1,0,1],[43,1,1,1,2]]],[16,1,1,2,3,[[434,1,1,2,3]]],[18,4,4,3,7,[[490,1,1,3,4],[508,1,1,4,5],[584,1,1,5,6],[593,1,1,6,7]]],[22,2,2,7,9,[[713,1,1,7,8],[729,1,1,8,9]]],[23,4,4,9,13,[[752,1,1,9,10],[764,1,1,10,11],[775,1,1,11,12],[789,1,1,12,13]]],[25,1,1,13,14,[[824,1,1,13,14]]]],[1290,1355,12856,14076,14341,15738,15851,18330,18684,19171,19440,19704,20043,21040]]],["+",[2,2,[[16,1,1,0,1,[[434,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[12856,19704]]],["grief",[2,2,[[18,1,1,0,1,[[508,1,1,0,1]]],[23,1,1,1,2,[[789,1,1,1,2]]]],[14341,20043]]],["sorrow",[10,10,[[0,2,2,0,2,[[41,1,1,0,1],[43,1,1,1,2]]],[18,3,3,2,5,[[490,1,1,2,3],[584,1,1,3,4],[593,1,1,4,5]]],[22,2,2,5,7,[[713,1,1,5,6],[729,1,1,6,7]]],[23,2,2,7,9,[[752,1,1,7,8],[764,1,1,8,9]]],[25,1,1,9,10,[[824,1,1,9,10]]]],[1290,1355,14076,15738,15851,18330,18684,19171,19440,21040]]]]},{"k":"H3016","v":[["*",[2,2,[[23,2,2,0,2,[[766,1,1,0,1],[783,1,1,1,2]]]],[19479,19940]]],["+",[1,1,[[23,1,1,0,1,[[783,1,1,0,1]]]],[19940]]],["fearest",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19479]]]]},{"k":"H3017","v":[["Jagur",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6223]]]]},{"k":"H3018","v":[["*",[16,16,[[0,1,1,0,1,[[30,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[15,1,1,2,3,[[417,1,1,2,3]]],[17,3,3,3,6,[[445,1,1,3,4],[474,2,2,4,6]]],[18,3,3,6,9,[[555,1,1,6,7],[586,1,1,7,8],[605,1,1,8,9]]],[22,2,2,9,11,[[723,1,1,9,10],[733,1,1,10,11]]],[23,2,2,11,13,[[747,1,1,11,12],[764,1,1,12,13]]],[25,1,1,13,14,[[824,1,1,13,14]]],[27,1,1,14,15,[[873,1,1,14,15]]],[36,1,1,15,16,[[909,1,1,15,16]]]],[915,5644,12395,13089,13845,13850,15159,15766,16128,18575,18742,19026,19427,21036,22260,22851]]],["+",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12395]]],["labour",[11,11,[[0,1,1,0,1,[[30,1,1,0,1]]],[17,2,2,1,3,[[474,2,2,1,3]]],[18,3,3,3,6,[[555,1,1,3,4],[586,1,1,4,5],[605,1,1,5,6]]],[22,2,2,6,8,[[723,1,1,6,7],[733,1,1,7,8]]],[23,1,1,8,9,[[747,1,1,8,9]]],[25,1,1,9,10,[[824,1,1,9,10]]],[36,1,1,10,11,[[909,1,1,10,11]]]],[915,13845,13850,15159,15766,16128,18575,18742,19026,21036,22851]]],["labours",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[23,1,1,1,2,[[764,1,1,1,2]]],[27,1,1,2,3,[[873,1,1,2,3]]]],[5644,19427,22260]]],["work",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13089]]]]},{"k":"H3019","v":[["+",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12921]]]]},{"k":"H3020","v":[["Jogli",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4838]]]]},{"k":"H3021","v":[["*",[26,25,[[5,2,2,0,2,[[193,1,1,0,1],[210,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[17,1,1,3,4,[[444,1,1,3,4]]],[18,2,2,4,6,[[483,1,1,4,5],[546,1,1,5,6]]],[19,1,1,6,7,[[650,1,1,6,7]]],[20,1,1,7,8,[[668,1,1,7,8]]],[22,12,12,8,20,[[718,3,3,8,11],[721,3,3,11,14],[725,2,2,14,16],[727,1,1,16,17],[735,1,1,17,18],[740,1,1,18,19],[743,1,1,19,20]]],[23,2,2,20,22,[[789,1,1,20,21],[795,1,1,21,22]]],[24,1,1,22,23,[[801,1,1,22,23]]],[34,1,1,23,24,[[904,1,1,23,24]]],[38,2,1,24,25,[[926,2,1,24,25]]]],[5979,6489,8663,13080,13991,14938,17048,17508,18448,18450,18451,18527,18528,18529,18611,18614,18640,18775,18862,18920,20043,20270,20447,22761,23120]]],["Labour",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17048]]],["fainted",[1,1,[[23,1,1,0,1,[[789,1,1,0,1]]]],[20043]]],["labour",[7,7,[[5,2,2,0,2,[[193,1,1,0,1],[210,1,1,1,2]]],[17,1,1,2,3,[[444,1,1,2,3]]],[22,1,1,3,4,[[743,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]],[24,1,1,5,6,[[801,1,1,5,6]]],[34,1,1,6,7,[[904,1,1,6,7]]]],[5979,6489,13080,18920,20270,20447,22761]]],["laboured",[4,4,[[22,4,4,0,4,[[725,2,2,0,2],[727,1,1,2,3],[740,1,1,3,4]]]],[18611,18614,18640,18862]]],["wearied",[5,4,[[22,3,3,0,3,[[721,2,2,0,2],[735,1,1,2,3]]],[38,2,1,3,4,[[926,2,1,3,4]]]],[18528,18529,18775,23120]]],["wearieth",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17508]]],["weary",[7,7,[[9,1,1,0,1,[[289,1,1,0,1]]],[18,2,2,1,3,[[483,1,1,1,2],[546,1,1,2,3]]],[22,4,4,3,7,[[718,3,3,3,6],[721,1,1,6,7]]]],[8663,13991,14938,18448,18450,18451,18527]]]]},{"k":"H3022","v":[["for",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13344]]]]},{"k":"H3023","v":[["*",[3,3,[[4,1,1,0,1,[[177,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[20,1,1,2,3,[[659,1,1,2,3]]]],[5565,8451,17323]]],["labour",[1,1,[[20,1,1,0,1,[[659,1,1,0,1]]]],[17323]]],["weary",[2,2,[[4,1,1,0,1,[[177,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]]],[5565,8451]]]]},{"k":"H3024","v":[["weariness",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17535]]]]},{"k":"H3025","v":[["*",[5,5,[[4,2,2,0,2,[[161,1,1,0,1],[180,1,1,1,2]]],[17,2,2,2,4,[[438,1,1,2,3],[444,1,1,3,4]]],[18,1,1,4,5,[[596,1,1,4,5]]]],[5176,5671,12929,13079,15937]]],["afraid",[3,3,[[4,2,2,0,2,[[161,1,1,0,1],[180,1,1,1,2]]],[17,1,1,2,3,[[444,1,1,2,3]]]],[5176,5671,13079]]],["fear",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15937]]],["of",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12929]]]]},{"k":"H3026","v":[["Jegarsahadutha",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[920]]]]},{"k":"H3027","v":[["*",[1611,1442,[[0,95,80,0,80,[[2,1,1,0,1],[3,1,1,1,2],[4,1,1,2,3],[7,1,1,3,4],[8,4,2,4,6],[13,2,2,6,8],[15,4,3,8,11],[18,4,2,11,13],[20,2,2,13,15],[21,3,3,15,18],[23,7,7,18,25],[24,1,1,25,26],[26,6,4,26,30],[29,1,1,30,31],[30,2,2,31,33],[31,4,3,33,36],[32,2,2,36,38],[33,1,1,38,39],[34,1,1,39,40],[36,4,3,40,43],[37,7,5,43,48],[38,9,9,48,57],[39,2,2,57,59],[40,4,3,59,62],[41,1,1,62,63],[42,8,7,63,70],[43,2,2,70,72],[45,1,1,72,73],[46,2,2,73,75],[47,4,3,75,78],[48,3,2,78,80]]],[1,108,93,80,173,[[51,2,2,80,82],[52,3,3,82,85],[53,12,8,85,93],[54,1,1,93,94],[55,3,2,94,96],[56,5,5,96,101],[57,3,3,101,104],[58,4,4,104,108],[59,4,4,108,112],[61,1,1,112,113],[62,6,4,113,117],[63,7,7,117,124],[64,3,3,124,127],[65,1,1,127,128],[66,8,5,128,133],[67,4,2,133,135],[68,1,1,135,136],[70,5,4,136,140],[71,3,3,140,143],[72,2,2,143,145],[73,1,1,145,146],[75,3,2,146,148],[77,1,1,148,149],[78,9,9,149,158],[79,2,2,158,160],[81,5,5,160,165],[83,2,2,165,167],[84,2,2,167,169],[85,3,2,169,171],[87,1,1,171,172],[89,1,1,172,173]]],[2,50,48,173,221,[[90,1,1,173,174],[92,3,3,174,177],[93,5,5,177,182],[94,2,2,182,184],[95,1,1,184,185],[96,1,1,185,186],[97,7,7,186,193],[98,1,1,193,194],[99,1,1,194,195],[101,1,1,195,196],[103,9,9,196,205],[104,1,1,205,206],[105,3,2,206,208],[110,2,2,208,210],[111,1,1,210,211],[113,1,1,211,212],[114,7,6,212,218],[115,2,2,218,220],[116,1,1,220,221]]],[3,45,44,221,265,[[118,1,1,221,222],[119,1,1,222,223],[120,5,5,223,228],[121,2,2,228,230],[122,1,1,230,231],[123,1,1,231,232],[124,2,2,232,234],[125,1,1,234,235],[126,1,1,235,236],[127,1,1,236,237],[129,1,1,237,238],[130,1,1,238,239],[131,2,2,239,241],[132,1,1,241,242],[136,2,2,242,244],[137,3,3,244,247],[138,4,4,247,251],[140,1,1,251,252],[141,1,1,252,253],[143,3,2,253,255],[147,2,2,255,257],[149,2,2,257,259],[150,1,1,259,260],[151,4,4,260,264],[152,1,1,264,265]]],[4,83,78,265,343,[[153,2,2,265,267],[154,5,5,267,272],[155,4,4,272,276],[156,2,2,276,278],[157,1,1,278,279],[158,2,2,279,281],[159,4,3,281,284],[160,1,1,284,285],[161,3,3,285,288],[162,1,1,288,289],[163,2,2,289,291],[164,5,5,291,296],[165,3,2,296,298],[166,2,2,298,300],[167,6,6,300,306],[168,3,3,306,309],[169,2,1,309,310],[171,4,3,310,313],[172,1,1,313,314],[173,3,3,314,317],[175,3,3,317,320],[176,3,3,320,323],[177,2,1,323,324],[178,2,2,324,326],[179,1,1,326,327],[180,4,4,327,331],[182,1,1,331,332],[183,1,1,332,333],[184,5,5,333,338],[185,3,3,338,341],[186,2,2,341,343]]],[5,36,34,343,377,[[188,2,2,343,345],[190,1,1,345,346],[191,1,1,346,347],[192,1,1,347,348],[193,1,1,348,349],[194,8,6,349,355],[195,3,3,355,358],[196,5,5,358,363],[197,1,1,363,364],[200,1,1,364,365],[201,1,1,365,366],[206,3,3,366,369],[207,3,3,369,372],[208,2,2,372,374],[210,3,3,374,377]]],[6,91,83,377,460,[[211,5,5,377,382],[212,6,5,382,387],[213,9,7,387,394],[214,6,6,394,400],[215,1,1,400,401],[216,7,6,401,407],[217,13,11,407,418],[218,6,6,418,424],[219,6,6,424,430],[220,3,2,430,432],[221,4,4,432,436],[222,2,2,436,438],[223,3,3,438,441],[224,1,1,441,442],[225,7,6,442,448],[226,4,4,448,452],[227,3,3,452,455],[228,2,2,455,457],[229,1,1,457,458],[230,2,2,458,460]]],[7,3,3,460,463,[[232,1,1,460,461],[235,2,2,461,463]]],[8,118,99,463,562,[[237,1,1,463,464],[239,2,2,464,466],[240,5,5,466,471],[241,3,3,471,474],[242,4,4,474,478],[244,2,2,478,480],[245,4,3,480,483],[246,1,1,483,484],[247,9,7,484,491],[248,1,1,491,492],[249,11,10,492,502],[250,1,1,502,503],[251,4,4,503,507],[252,11,8,507,515],[253,6,4,515,519],[254,3,2,519,521],[255,1,1,521,522],[256,6,4,522,526],[257,3,2,526,528],[258,9,9,528,537],[259,11,9,537,546],[260,5,5,546,551],[261,6,5,551,556],[262,2,1,556,557],[263,5,3,557,560],[265,2,2,560,562]]],[9,62,52,562,614,[[267,1,1,562,563],[268,1,1,563,564],[269,6,4,564,568],[270,3,3,568,571],[271,2,1,571,572],[274,3,3,572,575],[276,2,2,575,577],[277,1,1,577,578],[278,2,2,578,580],[279,4,4,580,584],[280,2,2,584,586],[281,4,4,586,590],[282,2,2,590,592],[283,1,1,592,593],[284,8,6,593,599],[285,1,1,599,600],[286,3,3,600,603],[287,4,3,603,606],[288,2,2,606,608],[289,5,3,608,611],[290,5,3,611,614]]],[10,49,45,614,659,[[292,2,2,614,616],[297,4,4,616,620],[298,5,5,620,625],[300,4,3,625,628],[301,6,6,628,634],[302,1,1,634,635],[303,5,3,635,638],[304,3,3,638,641],[305,2,2,641,643],[306,4,3,643,646],[307,2,2,646,648],[308,2,2,648,650],[310,4,4,650,654],[312,5,5,654,659]]],[11,73,64,659,723,[[315,5,5,659,664],[316,1,1,664,665],[317,5,5,665,670],[318,1,1,670,671],[319,2,2,671,673],[320,4,4,673,677],[321,6,6,677,683],[322,4,3,683,686],[323,4,4,686,690],[324,2,2,690,692],[325,9,4,692,696],[326,3,3,696,699],[327,2,1,699,700],[329,6,5,700,705],[330,6,5,705,710],[331,6,6,710,716],[333,2,2,716,718],[334,4,4,718,722],[336,1,1,722,723]]],[12,45,37,723,760,[[341,2,2,723,725],[342,2,2,725,727],[343,2,2,727,729],[344,1,1,729,730],[348,3,2,730,732],[350,2,2,732,734],[351,3,2,734,736],[353,1,1,736,737],[355,3,3,737,740],[356,1,1,740,741],[357,2,1,741,742],[358,5,4,742,746],[359,1,1,746,747],[360,1,1,747,748],[361,1,1,748,749],[362,5,3,749,752],[363,1,1,752,753],[365,1,1,753,754],[366,8,6,754,760]]],[13,81,70,760,830,[[367,1,1,760,761],[372,3,3,761,764],[373,1,1,764,765],[374,1,1,765,766],[375,2,1,766,767],[376,1,1,767,768],[378,3,3,768,771],[379,3,3,771,774],[381,1,1,774,775],[382,2,2,775,777],[383,4,4,777,781],[384,4,4,781,785],[386,1,1,785,786],[387,4,3,786,789],[389,5,4,789,793],[390,3,3,793,796],[391,2,2,796,798],[392,4,3,798,801],[394,3,2,801,803],[395,4,4,803,807],[396,4,4,807,811],[397,2,2,811,813],[398,11,6,813,819],[399,1,1,819,820],[400,7,6,820,826],[401,2,2,826,828],[402,2,2,828,830]]],[14,17,17,830,847,[[403,2,2,830,832],[405,1,1,832,833],[406,1,1,833,834],[408,1,1,834,835],[409,3,3,835,838],[410,5,5,838,843],[411,3,3,843,846],[412,1,1,846,847]]],[15,41,32,847,879,[[413,1,1,847,848],[414,3,2,848,850],[415,15,10,850,860],[416,1,1,860,861],[417,1,1,861,862],[418,3,2,862,864],[419,1,1,864,865],[420,2,2,865,867],[421,8,6,867,873],[422,2,2,873,875],[423,2,2,875,877],[425,2,2,877,879]]],[16,22,21,879,900,[[426,3,3,879,882],[427,6,5,882,887],[428,4,4,887,891],[430,1,1,891,892],[431,2,2,892,894],[433,2,2,894,896],[434,4,4,896,900]]],[17,53,51,900,951,[[436,5,4,900,904],[437,2,2,904,906],[439,1,1,906,907],[440,4,4,907,911],[441,3,2,911,913],[443,2,2,913,915],[444,2,2,915,917],[445,2,2,917,919],[446,1,1,919,920],[447,3,3,920,923],[449,1,1,923,924],[450,2,2,924,926],[451,1,1,926,927],[452,2,2,927,929],[454,1,1,929,930],[455,2,2,930,932],[456,2,2,932,934],[458,1,1,934,935],[461,1,1,935,936],[462,2,2,936,938],[463,1,1,938,939],[464,1,1,939,940],[465,3,3,940,943],[466,3,3,943,946],[469,2,2,946,948],[470,1,1,948,949],[472,1,1,949,950],[475,1,1,950,951]]],[18,93,88,951,1039,[[485,1,1,951,952],[487,2,2,952,954],[494,1,1,954,955],[495,3,3,955,958],[496,1,1,958,959],[498,1,1,959,960],[499,2,2,960,962],[503,1,1,962,963],[505,3,3,963,966],[508,4,3,966,969],[509,1,1,969,970],[513,1,1,970,971],[514,2,2,971,973],[515,1,1,973,974],[516,1,1,974,975],[521,1,1,975,976],[526,1,1,976,977],[532,1,1,977,978],[535,1,1,978,979],[540,1,1,979,980],[545,1,1,980,981],[548,1,1,981,982],[550,1,1,982,983],[551,1,1,983,984],[552,1,1,984,985],[553,1,1,985,986],[554,2,2,986,988],[555,2,2,988,990],[557,1,1,990,991],[558,1,1,991,992],[559,1,1,992,993],[565,1,1,993,994],[566,4,4,994,998],[567,2,1,998,999],[569,1,1,999,1000],[572,3,3,1000,1003],[574,1,1,1003,1004],[579,1,1,1004,1005],[581,2,2,1005,1007],[583,5,4,1007,1011],[584,1,1,1011,1012],[586,1,1,1012,1013],[588,1,1,1013,1014],[592,2,2,1014,1016],[596,2,2,1016,1018],[598,1,1,1018,1019],[600,2,1,1019,1020],[602,1,1,1020,1021],[604,1,1,1021,1022],[611,1,1,1022,1023],[612,1,1,1023,1024],[613,1,1,1024,1025],[615,2,2,1025,1027],[616,1,1,1027,1028],[617,2,2,1028,1030],[618,2,2,1030,1032],[620,2,2,1032,1034],[621,4,3,1034,1037],[622,1,1,1037,1038],[626,1,1,1038,1039]]],[19,31,28,1039,1067,[[628,1,1,1039,1040],[630,1,1,1040,1041],[633,4,3,1041,1044],[634,1,1,1044,1045],[635,1,1,1045,1046],[637,1,1,1046,1047],[638,2,1,1047,1048],[639,2,2,1048,1050],[640,1,1,1050,1051],[641,1,1,1051,1052],[643,2,1,1052,1053],[644,1,1,1053,1054],[645,1,1,1054,1055],[646,1,1,1055,1056],[648,2,2,1056,1058],[651,1,1,1058,1059],[653,3,3,1059,1062],[657,2,2,1062,1064],[658,3,3,1064,1067]]],[20,13,13,1067,1080,[[660,2,2,1067,1069],[662,2,2,1069,1071],[663,3,3,1071,1074],[665,2,2,1074,1076],[667,2,2,1076,1078],[668,1,1,1078,1079],[669,1,1,1079,1080]]],[21,4,4,1080,1084,[[675,3,3,1080,1083],[677,1,1,1083,1084]]],[22,91,88,1084,1172,[[679,3,3,1084,1087],[680,1,1,1087,1088],[681,2,2,1088,1090],[683,3,2,1090,1092],[684,1,1,1092,1093],[686,1,1,1093,1094],[687,3,3,1094,1097],[688,6,6,1097,1103],[689,4,4,1103,1107],[691,2,2,1107,1109],[692,2,2,1109,1111],[695,1,1,1111,1112],[697,3,3,1112,1115],[698,1,1,1115,1116],[700,2,2,1116,1118],[701,1,1,1118,1119],[703,3,2,1119,1121],[704,1,1,1121,1122],[706,1,1,1122,1123],[707,1,1,1123,1124],[709,2,2,1124,1126],[712,1,1,1126,1127],[713,1,1,1127,1128],[714,5,4,1128,1132],[715,6,6,1132,1138],[718,1,1,1138,1139],[719,1,1,1139,1140],[720,1,1,1140,1141],[721,1,1,1141,1142],[722,1,1,1142,1143],[723,3,3,1143,1146],[725,2,2,1146,1148],[726,1,1,1148,1149],[727,2,2,1149,1151],[728,2,2,1151,1153],[729,5,5,1153,1158],[731,1,1,1158,1159],[734,2,2,1159,1161],[735,2,2,1161,1163],[737,1,1,1163,1164],[738,1,1,1164,1165],[740,1,1,1165,1166],[742,2,2,1166,1168],[743,2,2,1168,1170],[744,2,2,1170,1172]]],[23,117,96,1172,1268,[[745,2,2,1172,1174],[746,1,1,1174,1175],[749,1,1,1175,1176],[750,4,4,1176,1180],[754,2,2,1180,1182],[755,1,1,1182,1183],[759,3,3,1183,1186],[760,1,1,1186,1187],[762,4,3,1187,1190],[763,1,1,1190,1191],[764,3,3,1191,1194],[765,7,5,1194,1199],[766,6,3,1199,1202],[767,1,1,1202,1203],[769,6,6,1203,1209],[770,3,2,1209,1211],[771,3,3,1211,1214],[773,2,2,1214,1216],[774,1,1,1216,1217],[775,2,2,1217,1219],[776,11,9,1219,1228],[777,1,1,1228,1229],[778,9,5,1229,1234],[780,2,1,1234,1235],[781,2,2,1235,1237],[782,13,10,1237,1247],[783,2,2,1247,1249],[784,1,1,1249,1250],[785,2,2,1250,1252],[786,1,1,1252,1253],[787,2,2,1253,1255],[788,5,3,1255,1258],[790,5,3,1258,1261],[791,1,1,1261,1262],[792,1,1,1262,1263],[794,3,3,1263,1266],[795,2,2,1266,1268]]],[24,15,14,1268,1282,[[797,5,4,1268,1272],[798,2,2,1272,1274],[799,2,2,1274,1276],[800,3,3,1276,1279],[801,3,3,1279,1282]]],[25,108,100,1282,1382,[[802,2,2,1282,1284],[803,1,1,1284,1285],[804,4,4,1285,1289],[807,1,1,1289,1290],[808,3,3,1290,1293],[809,3,3,1293,1296],[810,2,2,1296,1298],[811,4,4,1298,1302],[812,1,1,1302,1303],[813,1,1,1303,1304],[814,6,5,1304,1309],[815,2,2,1309,1311],[817,4,4,1311,1315],[818,1,1,1315,1316],[819,2,2,1316,1318],[821,10,9,1318,1327],[822,4,4,1327,1331],[823,1,1,1331,1332],[824,8,6,1332,1338],[826,5,5,1338,1343],[828,2,2,1343,1345],[829,2,2,1345,1347],[831,6,5,1347,1352],[832,1,1,1352,1353],[834,3,3,1353,1356],[835,2,2,1356,1358],[836,2,2,1358,1360],[837,1,1,1360,1361],[838,5,4,1361,1365],[839,2,2,1365,1367],[840,5,4,1367,1371],[841,3,3,1371,1374],[844,1,1,1374,1375],[845,1,1,1375,1376],[847,3,3,1376,1379],[848,2,2,1379,1381],[849,2,1,1381,1382]]],[26,16,14,1382,1396,[[850,2,2,1382,1384],[857,4,3,1384,1387],[858,2,2,1387,1389],[859,3,2,1389,1391],[860,4,4,1391,1395],[861,1,1,1395,1396]]],[27,6,6,1396,1402,[[863,1,1,1396,1397],[868,1,1,1397,1398],[873,2,2,1398,1400],[874,1,1,1400,1401],[875,1,1,1401,1402]]],[28,1,1,1402,1403,[[878,1,1,1402,1403]]],[29,4,4,1403,1407,[[879,1,1,1403,1404],[883,1,1,1404,1405],[885,1,1,1405,1406],[887,1,1,1406,1407]]],[32,5,5,1407,1412,[[894,1,1,1407,1408],[897,3,3,1408,1411],[899,1,1,1411,1412]]],[34,2,2,1412,1414,[[905,2,2,1412,1414]]],[35,4,4,1414,1418,[[906,1,1,1414,1415],[907,2,2,1415,1417],[908,1,1,1417,1418]]],[36,5,5,1418,1423,[[909,2,2,1418,1420],[910,3,3,1420,1423]]],[37,19,14,1423,1437,[[912,2,2,1423,1425],[914,4,3,1425,1428],[917,2,2,1428,1430],[918,3,3,1430,1433],[921,3,1,1433,1434],[923,2,2,1434,1436],[924,3,1,1436,1437]]],[38,5,5,1437,1442,[[925,4,4,1437,1441],[926,1,1,1441,1442]]]],[77,90,134,192,207,210,356,358,387,390,393,467,473,531,543,553,557,559,593,600,601,609,613,621,638,684,743,744,749,750,865,902,912,939,941,944,970,979,1001,1015,1104,1105,1110,1137,1139,1147,1148,1149,1150,1152,1153,1155,1157,1161,1162,1171,1172,1183,1185,1230,1237,1239,1289,1299,1302,1305,1311,1312,1316,1324,1340,1341,1390,1444,1449,1465,1468,1473,1481,1497,1559,1573,1587,1598,1599,1603,1605,1607,1608,1614,1618,1621,1622,1653,1656,1663,1689,1690,1700,1702,1704,1715,1716,1727,1745,1757,1764,1777,1789,1798,1799,1802,1827,1870,1876,1881,1883,1897,1905,1910,1915,1916,1919,1920,1929,1937,1940,1950,1988,1992,1994,1995,1999,2008,2009,2039,2090,2093,2097,2101,2117,2121,2124,2145,2175,2188,2252,2254,2334,2345,2346,2351,2355,2356,2361,2365,2369,2371,2401,2403,2442,2449,2453,2457,2467,2500,2525,2556,2560,2588,2590,2654,2738,2749,2780,2786,2791,2799,2810,2819,2824,2828,2837,2841,2851,2909,2931,2935,2939,2940,2941,2950,2953,2975,2988,3052,3125,3128,3132,3133,3136,3139,3141,3142,3143,3179,3222,3233,3355,3364,3394,3460,3483,3495,3497,3504,3516,3518,3549,3570,3578,3675,3695,3771,3776,3780,3788,3792,3810,3817,3844,3858,3949,3951,3988,4001,4047,4104,4138,4176,4183,4234,4322,4331,4342,4366,4374,4382,4398,4404,4406,4470,4478,4572,4577,4670,4713,4761,4763,4819,4862,4863,4866,4870,4892,4917,4919,4945,4953,4962,4968,4975,4977,4978,4983,4999,5032,5038,5068,5094,5107,5119,5130,5135,5154,5172,5174,5183,5189,5210,5226,5246,5247,5251,5257,5258,5281,5289,5315,5319,5321,5322,5326,5327,5329,5330,5352,5357,5359,5371,5411,5418,5427,5440,5453,5454,5457,5512,5520,5525,5526,5528,5544,5558,5570,5574,5600,5619,5623,5631,5643,5717,5757,5785,5794,5797,5798,5799,5813,5817,5821,5848,5851,5888,5893,5934,5947,5951,5983,6003,6009,6020,6021,6022,6028,6048,6062,6063,6070,6072,6083,6094,6096,6115,6189,6248,6374,6377,6381,6383,6389,6425,6435,6457,6484,6486,6487,6511,6513,6515,6516,6544,6559,6560,6561,6563,6568,6572,6576,6578,6583,6589,6596,6598,6601,6606,6608,6613,6620,6623,6649,6655,6656,6663,6675,6690,6691,6696,6700,6701,6702,6703,6705,6708,6709,6710,6713,6714,6722,6725,6726,6734,6741,6753,6770,6771,6778,6783,6787,6802,6818,6823,6850,6855,6859,6861,6871,6872,6885,6889,6907,6915,6941,6942,6943,6944,6946,6947,6967,6972,6973,6975,6983,6985,6992,7003,7012,7051,7070,7082,7140,7195,7199,7253,7305,7315,7323,7325,7326,7328,7330,7334,7336,7340,7355,7360,7365,7366,7399,7407,7422,7425,7436,7452,7463,7464,7465,7469,7470,7471,7475,7507,7518,7520,7521,7527,7534,7535,7542,7545,7551,7556,7572,7597,7611,7615,7618,7640,7655,7658,7664,7665,7667,7668,7675,7686,7693,7697,7701,7709,7715,7746,7775,7776,7780,7785,7793,7804,7814,7816,7817,7821,7822,7824,7826,7827,7830,7843,7845,7849,7850,7851,7852,7854,7857,7859,7869,7887,7894,7896,7900,7913,7914,7916,7923,7928,7931,7957,7959,7961,7993,8001,8036,8056,8089,8093,8099,8115,8121,8131,8132,8151,8210,8212,8219,8242,8250,8273,8293,8311,8322,8323,8327,8336,8375,8386,8391,8394,8407,8425,8434,8447,8451,8480,8482,8490,8496,8506,8509,8554,8563,8564,8575,8589,8600,8602,8623,8637,8659,8663,8674,8706,8708,8709,8795,8816,8966,8967,8969,8970,9000,9009,9027,9038,9041,9092,9098,9108,9120,9134,9135,9139,9142,9143,9166,9188,9190,9217,9221,9236,9245,9267,9278,9290,9295,9317,9328,9333,9350,9387,9414,9421,9436,9450,9483,9486,9492,9495,9514,9586,9587,9589,9591,9594,9632,9652,9658,9665,9667,9671,9681,9709,9724,9735,9736,9747,9749,9757,9763,9779,9780,9791,9792,9803,9808,9817,9836,9837,9840,9845,9861,9865,9874,9876,9887,9896,9901,9921,9923,9944,9990,9996,10003,10006,10022,10053,10054,10057,10058,10059,10071,10075,10079,10080,10084,10087,10129,10133,10150,10152,10154,10162,10204,10395,10425,10438,10448,10469,10485,10564,10676,10696,10769,10770,10784,10785,10827,10891,10893,10907,10918,10934,10947,10949,10950,10951,10982,11011,11034,11048,11049,11052,11105,11162,11169,11172,11176,11178,11180,11188,11211,11286,11297,11314,11330,11364,11382,11410,11442,11444,11447,11461,11462,11469,11497,11516,11517,11528,11538,11539,11541,11547,11553,11556,11575,11593,11632,11634,11640,11663,11666,11671,11674,11688,11690,11701,11719,11724,11743,11745,11751,11769,11773,11814,11816,11818,11822,11833,11835,11839,11843,11867,11869,11888,11889,11890,11892,11894,11897,11916,11942,11943,11947,11949,11950,11958,11972,11977,12008,12010,12022,12024,12107,12114,12173,12179,12182,12201,12219,12223,12227,12232,12234,12239,12244,12248,12271,12306,12315,12325,12329,12331,12332,12334,12335,12336,12337,12339,12344,12346,12376,12387,12406,12410,12424,12499,12507,12525,12526,12535,12538,12539,12541,12578,12580,12589,12612,12684,12692,12709,12714,12717,12727,12732,12738,12742,12745,12753,12756,12757,12760,12781,12795,12802,12824,12827,12836,12844,12849,12850,12879,12880,12881,12883,12896,12897,12933,12963,12966,12969,12971,12987,13001,13033,13049,13075,13084,13093,13094,13122,13134,13137,13138,13196,13226,13228,13249,13263,13269,13318,13336,13348,13360,13371,13421,13480,13492,13503,13513,13552,13559,13578,13581,13609,13613,13615,13702,13703,13727,13776,13868,14018,14053,14055,14117,14138,14142,14152,14169,14199,14220,14224,14283,14301,14303,14304,14336,14339,14346,14359,14449,14474,14483,14492,14522,14573,14663,14752,14781,14849,14931,14980,15043,15059,15079,15086,15095,15113,15155,15174,15215,15231,15237,15313,15339,15347,15351,15374,15395,15415,15458,15459,15461,15488,15546,15596,15599,15661,15677,15692,15693,15701,15782,15800,15834,15837,15971,16071,16086,16100,16113,16125,16174,16190,16208,16238,16239,16249,16267,16268,16282,16285,16298,16299,16306,16312,16316,16336,16391,16424,16482,16545,16550,16557,16595,16605,16660,16709,16733,16743,16758,16773,16845,16889,16922,16949,16985,17009,17112,17147,17150,17156,17279,17283,17303,17304,17315,17344,17357,17382,17386,17403,17411,17412,17447,17455,17476,17485,17511,17519,17602,17603,17612,17628,17666,17669,17679,17693,17713,17718,17751,17764,17775,17818,17841,17846,17850,17854,17855,17860,17863,17864,17882,17892,17895,17898,17899,17908,17913,17954,17955,17991,18008,18020,18029,18031,18070,18073,18088,18128,18129,18141,18166,18216,18253,18257,18320,18323,18345,18348,18349,18350,18362,18366,18371,18372,18376,18379,18422,18471,18486,18518,18538,18570,18572,18573,18605,18613,18627,18638,18658,18664,18673,18689,18690,18691,18695,18696,18721,18755,18758,18773,18775,18801,18842,18857,18892,18893,18899,18919,18924,18936,18955,18962,19002,19089,19092,19098,19101,19113,19204,19210,19247,19321,19332,19336,19357,19388,19390,19405,19414,19426,19427,19435,19444,19445,19447,19450,19452,19457,19478,19479,19498,19540,19541,19548,19549,19551,19562,19586,19596,19599,19602,19604,19638,19656,19673,19702,19723,19734,19735,19752,19755,19756,19759,19761,19767,19774,19788,19802,19803,19804,19821,19822,19856,19876,19891,19898,19899,19900,19905,19906,19907,19911,19913,19914,19918,19934,19940,19945,19962,19966,19986,20000,20006,20018,20035,20040,20051,20069,20071,20076,20117,20167,20181,20209,20219,20237,20317,20320,20324,20327,20339,20340,20357,20418,20422,20426,20430,20448,20450,20454,20467,20472,20501,20516,20520,20522,20524,20577,20594,20598,20604,20605,20607,20615,20623,20624,20640,20641,20645,20654,20664,20687,20717,20726,20729,20730,20731,20740,20744,20773,20789,20801,20811,20843,20857,20866,20900,20901,20910,20917,20918,20923,20928,20929,20937,20951,20955,20963,20975,20990,21016,21035,21038,21044,21049,21052,21089,21090,21096,21097,21099,21136,21142,21166,21167,21214,21216,21226,21228,21229,21241,21286,21288,21302,21323,21340,21347,21349,21366,21398,21414,21416,21417,21437,21442,21451,21457,21469,21471,21478,21480,21482,21598,21611,21660,21662,21666,21682,21693,21703,21739,21757,21965,21968,21986,21998,22003,22019,22025,22047,22052,22077,22078,22088,22115,22183,22259,22262,22280,22285,22351,22372,22442,22471,22497,22596,22642,22645,22646,22680,22772,22778,22791,22818,22820,22836,22841,22843,22856,22869,22872,22900,22908,22931,22932,22934,22969,22974,22980,22985,22989,23034,23065,23066,23081,23090,23098,23099,23102,23116]]],["+",[298,277,[[0,22,19,0,19,[[3,1,1,0,1],[8,3,1,1,2],[20,1,1,2,3],[30,1,1,3,4],[31,2,1,4,5],[32,2,2,5,7],[33,1,1,7,8],[36,2,2,8,10],[37,1,1,10,11],[38,2,2,11,13],[42,2,2,13,15],[43,1,1,15,16],[47,2,2,16,18],[48,1,1,18,19]]],[1,17,16,19,35,[[51,1,1,19,20],[52,1,1,20,21],[55,1,1,21,22],[63,1,1,22,23],[66,1,1,23,24],[67,3,2,24,26],[77,1,1,26,27],[78,5,5,27,32],[81,3,3,32,35]]],[2,19,19,35,54,[[94,2,2,35,37],[95,1,1,37,38],[97,1,1,38,39],[101,1,1,39,40],[103,4,4,40,44],[105,1,1,44,45],[110,2,2,45,47],[111,1,1,47,48],[114,5,5,48,53],[116,1,1,53,54]]],[3,7,7,54,61,[[119,1,1,54,55],[121,1,1,55,56],[130,1,1,56,57],[131,1,1,57,58],[137,1,1,58,59],[140,1,1,59,60],[151,1,1,60,61]]],[4,9,9,61,70,[[154,1,1,61,62],[155,2,2,62,64],[159,1,1,64,65],[167,1,1,65,66],[168,1,1,66,67],[177,1,1,67,68],[178,1,1,68,69],[184,1,1,69,70]]],[5,7,7,70,77,[[188,1,1,70,71],[192,1,1,71,72],[194,1,1,72,73],[195,1,1,73,74],[201,1,1,74,75],[208,1,1,75,76],[210,1,1,76,77]]],[6,23,22,77,99,[[211,2,2,77,79],[212,2,2,79,81],[213,1,1,81,82],[216,2,1,82,83],[217,1,1,83,84],[218,3,3,84,87],[219,2,2,87,89],[220,1,1,89,90],[222,1,1,90,91],[223,2,2,91,93],[225,1,1,93,94],[226,1,1,94,95],[227,3,3,95,98],[230,1,1,98,99]]],[7,2,2,99,101,[[235,2,2,99,101]]],[8,23,20,101,121,[[239,1,1,101,102],[242,3,3,102,105],[244,1,1,105,106],[245,4,3,106,109],[247,4,4,109,113],[249,1,1,113,114],[252,3,1,114,115],[255,1,1,115,116],[259,1,1,116,117],[260,2,2,117,119],[262,1,1,119,120],[263,1,1,120,121]]],[9,12,11,121,132,[[269,2,1,121,122],[270,1,1,122,123],[274,1,1,123,124],[278,1,1,124,125],[279,3,3,125,128],[281,2,2,128,130],[284,1,1,130,131],[289,1,1,131,132]]],[10,8,8,132,140,[[300,1,1,132,133],[301,4,4,133,137],[303,1,1,137,138],[310,1,1,138,139],[312,1,1,139,140]]],[11,13,11,140,151,[[317,2,2,140,142],[321,1,1,142,143],[325,2,1,143,144],[329,1,1,144,145],[330,5,4,145,149],[331,2,2,149,151]]],[12,8,8,151,159,[[341,1,1,151,152],[348,1,1,152,153],[355,1,1,153,154],[365,1,1,154,155],[366,4,4,155,159]]],[13,28,23,159,182,[[379,1,1,159,160],[382,1,1,160,161],[383,3,3,161,164],[387,1,1,164,165],[389,1,1,165,166],[391,1,1,166,167],[395,2,2,167,169],[396,3,3,169,172],[397,2,2,172,174],[398,10,5,174,179],[400,2,2,179,181],[401,1,1,181,182]]],[15,5,5,182,187,[[417,1,1,182,183],[419,1,1,183,184],[421,2,2,184,186],[425,1,1,186,187]]],[16,1,1,187,188,[[426,1,1,187,188]]],[17,9,8,188,196,[[436,1,1,188,189],[440,2,2,189,191],[441,2,1,191,192],[443,1,1,192,193],[445,1,1,193,194],[462,1,1,194,195],[470,1,1,195,196]]],[18,19,18,196,214,[[496,1,1,196,197],[499,1,1,197,198],[508,1,1,198,199],[526,1,1,199,200],[540,1,1,200,201],[548,1,1,201,202],[559,1,1,202,203],[565,1,1,203,204],[566,1,1,204,205],[574,1,1,205,206],[581,1,1,206,207],[583,2,1,207,208],[584,1,1,208,209],[617,2,2,209,211],[618,1,1,211,212],[621,2,2,212,214]]],[19,2,1,214,215,[[633,2,1,214,215]]],[20,4,4,215,219,[[660,2,2,215,217],[662,2,2,217,219]]],[22,14,13,219,232,[[679,1,1,219,220],[700,1,1,220,221],[714,4,3,221,224],[715,2,2,224,226],[718,1,1,226,227],[721,1,1,227,228],[725,1,1,228,229],[728,1,1,229,230],[729,2,2,230,232]]],[23,16,16,232,248,[[759,1,1,232,233],[764,1,1,233,234],[765,1,1,234,235],[766,1,1,235,236],[769,3,3,236,239],[775,1,1,239,240],[776,1,1,240,241],[778,2,2,241,243],[782,3,3,243,246],[786,1,1,246,247],[790,1,1,247,248]]],[24,1,1,248,249,[[801,1,1,248,249]]],[25,17,16,249,265,[[804,2,2,249,251],[814,3,3,251,254],[828,1,1,254,255],[831,1,1,255,256],[834,2,2,256,258],[835,2,2,258,260],[840,3,2,260,262],[844,1,1,262,263],[847,2,2,263,265]]],[26,3,3,265,268,[[857,2,2,265,267],[860,1,1,267,268]]],[27,2,2,268,270,[[863,1,1,268,269],[874,1,1,269,270]]],[32,1,1,270,271,[[897,1,1,270,271]]],[34,1,1,271,272,[[905,1,1,271,272]]],[37,1,1,272,273,[[921,1,1,272,273]]],[38,4,4,273,277,[[925,3,3,273,276],[926,1,1,276,277]]]],[90,210,543,912,939,970,979,1001,1104,1105,1139,1150,1171,1299,1324,1340,1465,1473,1497,1573,1587,1663,1919,1999,2008,2009,2334,2345,2361,2365,2369,2371,2442,2457,2467,2837,2841,2851,2950,3052,3132,3133,3141,3142,3233,3355,3364,3394,3483,3495,3504,3516,3518,3578,3695,3817,4138,4183,4366,4470,4870,4962,4978,4983,5119,5321,5359,5558,5570,5797,5893,5951,6003,6063,6248,6457,6486,6515,6516,6561,6563,6583,6663,6709,6722,6741,6753,6771,6778,6823,6871,6889,6907,6946,6973,6983,6985,6992,7070,7195,7199,7305,7355,7360,7366,7407,7422,7425,7436,7463,7464,7470,7471,7556,7655,7746,7854,7896,7900,7931,7959,8099,8131,8210,8293,8322,8323,8327,8391,8407,8509,8674,9092,9120,9139,9142,9143,9217,9450,9483,9667,9671,9763,9896,10022,10053,10057,10058,10059,10075,10080,10425,10696,10891,11162,11169,11178,11180,11188,11462,11516,11538,11539,11541,11640,11674,11719,11818,11822,11833,11835,11843,11867,11869,11888,11889,11890,11892,11897,11942,11949,11977,12387,12424,12526,12538,12684,12714,12883,12966,12971,13001,13049,13093,13503,13727,14169,14224,14346,14663,14849,14980,15237,15313,15374,15488,15596,15661,15701,16267,16268,16285,16312,16316,16545,17344,17357,17382,17386,17666,18070,18348,18349,18350,18366,18372,18422,18518,18613,18673,18690,18695,19336,19435,19452,19457,19549,19551,19562,19702,19735,19802,19804,19907,19913,19918,19986,20051,20450,20520,20522,20726,20729,20731,21142,21226,21286,21288,21323,21340,21451,21457,21598,21660,21666,21965,21968,22077,22115,22280,22645,22772,23034,23098,23099,23102,23116]]],["By",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10084,18376]]],["Next",[3,2,[[15,3,2,0,2,[[415,3,2,0,2]]]],[12335,12344]]],["about",[1,1,[[12,1,1,0,1,[[355,1,1,0,1]]]],[10907]]],["at",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16605]]],["axletrees",[2,2,[[10,2,2,0,2,[[297,2,2,0,2]]]],[8966,8967]]],["because",[2,2,[[22,1,1,0,1,[[742,1,1,0,1]]],[23,1,1,1,2,[[785,1,1,1,2]]]],[18892,19966]]],["beside",[1,1,[[8,1,1,0,1,[[254,1,1,0,1]]]],[7709]]],["border",[1,1,[[9,1,1,0,1,[[274,1,1,0,1]]]],[8212]]],["borders",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10564]]],["by",[39,38,[[1,1,1,0,1,[[58,1,1,0,1]]],[8,3,3,1,4,[[251,1,1,1,2],[263,2,2,2,4]]],[9,1,1,4,5,[[281,1,1,4,5]]],[10,5,5,5,10,[[302,1,1,5,6],[305,1,1,6,7],[306,2,2,7,9],[307,1,1,9,10]]],[11,7,6,10,16,[[321,1,1,10,11],[322,1,1,11,12],[329,3,2,12,14],[333,1,1,14,15],[336,1,1,15,16]]],[12,1,1,16,17,[[348,1,1,16,17]]],[13,4,4,17,21,[[390,1,1,17,18],[395,1,1,18,19],[400,1,1,19,20],[402,1,1,20,21]]],[14,1,1,21,22,[[411,1,1,21,22]]],[15,2,2,22,24,[[420,1,1,22,23],[422,1,1,23,24]]],[16,3,3,24,27,[[426,1,1,24,25],[428,1,1,25,26],[433,1,1,26,27]]],[22,1,1,27,28,[[698,1,1,27,28]]],[23,2,2,28,30,[[781,1,1,28,29],[794,1,1,29,30]]],[25,1,1,30,31,[[839,1,1,30,31]]],[26,1,1,31,32,[[858,1,1,31,32]]],[36,3,3,32,35,[[909,2,2,32,34],[910,1,1,34,35]]],[37,2,2,35,37,[[917,2,2,35,37]]],[38,1,1,37,38,[[925,1,1,37,38]]]],[1777,7615,7957,7959,8425,9166,9278,9295,9317,9333,9792,9803,9996,10006,10129,10204,10676,11690,11816,11947,12008,12248,12507,12578,12717,12760,12827,18031,19876,20167,21442,21998,22841,22843,22856,22969,22974,23090]]],["charge",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4713]]],["coast",[4,3,[[3,2,2,0,2,[[129,1,1,0,1],[150,1,1,1,2]]],[25,2,1,2,3,[[849,2,1,2,3]]]],[4104,4819,21703]]],["coasts",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6855]]],["custody",[4,3,[[16,4,3,0,3,[[427,4,3,0,3]]]],[12727,12732,12738]]],["debt",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12580]]],["dominion",[2,2,[[12,1,1,0,1,[[355,1,1,0,1]]],[13,1,1,1,2,[[387,1,1,1,2]]]],[10893,11632]]],["for",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13033]]],["force",[2,2,[[23,1,1,0,1,[[762,1,1,0,1]]],[25,1,1,1,2,[[836,1,1,1,2]]]],[19405,21349]]],["hand",[905,820,[[0,60,53,0,53,[[2,1,1,0,1],[7,1,1,1,2],[8,1,1,2,3],[13,2,2,3,5],[15,3,2,5,7],[18,4,2,7,9],[20,1,1,9,10],[21,3,3,10,13],[23,4,4,13,17],[24,1,1,17,18],[26,1,1,18,19],[29,1,1,19,20],[30,1,1,20,21],[31,2,2,21,23],[34,1,1,23,24],[36,2,2,24,26],[37,6,5,26,31],[38,7,7,31,38],[39,2,2,38,40],[40,4,3,40,43],[41,1,1,43,44],[42,5,4,44,48],[43,1,1,48,49],[45,1,1,49,50],[46,1,1,50,51],[47,2,1,51,52],[48,1,1,52,53]]],[1,70,61,53,114,[[52,2,2,53,55],[53,12,8,55,63],[54,1,1,63,64],[55,2,1,64,65],[56,5,5,65,70],[57,3,3,70,73],[58,3,3,73,76],[59,3,3,76,79],[61,1,1,79,80],[62,6,4,80,84],[63,5,5,84,89],[64,2,2,89,91],[65,1,1,91,92],[66,4,3,92,95],[67,1,1,95,96],[68,1,1,96,97],[70,5,4,97,101],[71,3,3,101,104],[72,2,2,104,106],[73,1,1,106,107],[78,1,1,107,108],[81,2,2,108,110],[83,2,2,110,112],[84,1,1,112,113],[87,1,1,113,114]]],[2,21,21,114,135,[[90,1,1,114,115],[92,3,3,115,118],[93,4,4,118,122],[97,2,2,122,124],[98,1,1,124,125],[99,1,1,125,126],[103,5,5,126,131],[105,1,1,131,132],[114,1,1,132,133],[115,2,2,133,135]]],[3,30,30,135,165,[[120,5,5,135,140],[121,1,1,140,141],[122,1,1,141,142],[123,1,1,142,143],[125,1,1,143,144],[126,1,1,144,145],[127,1,1,145,146],[131,1,1,146,147],[132,1,1,147,148],[136,2,2,148,150],[137,2,2,150,152],[138,4,4,152,156],[141,1,1,156,157],[143,2,2,157,159],[147,1,1,159,160],[149,2,2,160,162],[151,2,2,162,164],[152,1,1,164,165]]],[4,53,51,165,216,[[153,1,1,165,166],[154,3,3,166,169],[155,2,2,169,171],[156,1,1,171,172],[157,1,1,172,173],[158,2,2,173,175],[159,3,3,175,178],[160,1,1,178,179],[161,1,1,179,180],[162,1,1,180,181],[163,2,2,181,183],[164,4,4,183,187],[165,3,2,187,189],[166,2,2,189,191],[167,5,5,191,196],[168,1,1,196,197],[171,4,3,197,200],[175,2,2,200,202],[176,2,2,202,204],[177,1,1,204,205],[178,1,1,205,206],[180,4,4,206,210],[182,1,1,210,211],[184,3,3,211,214],[185,1,1,214,215],[186,1,1,215,216]]],[5,27,25,216,241,[[188,1,1,216,217],[190,1,1,217,218],[191,1,1,218,219],[193,1,1,219,220],[194,6,4,220,224],[195,1,1,224,225],[196,5,5,225,230],[197,1,1,230,231],[200,1,1,231,232],[206,3,3,232,235],[207,3,3,235,238],[208,1,1,238,239],[210,2,2,239,241]]],[6,50,48,241,289,[[211,3,3,241,244],[212,2,2,244,246],[213,7,6,246,252],[214,6,6,252,258],[215,1,1,258,259],[216,5,5,259,264],[217,7,7,264,271],[218,3,3,271,274],[219,2,2,274,276],[221,1,1,276,277],[222,1,1,277,278],[223,1,1,278,279],[224,1,1,279,280],[225,5,4,280,284],[226,3,3,284,287],[228,1,1,287,288],[230,1,1,288,289]]],[7,1,1,289,290,[[232,1,1,289,290]]],[8,80,67,290,357,[[237,1,1,290,291],[240,4,4,291,295],[241,3,3,295,298],[242,1,1,298,299],[244,1,1,299,300],[247,5,3,300,303],[248,1,1,303,304],[249,8,7,304,311],[251,2,2,311,313],[252,7,6,313,319],[253,6,4,319,323],[254,2,1,323,324],[256,4,3,324,327],[257,3,2,327,329],[258,9,9,329,338],[259,10,8,338,346],[260,3,3,346,349],[261,6,5,349,354],[262,1,1,354,355],[263,2,1,355,356],[265,1,1,356,357]]],[9,33,26,357,383,[[267,1,1,357,358],[269,3,3,358,361],[271,2,1,361,362],[276,2,2,362,364],[277,1,1,364,365],[278,1,1,365,366],[279,1,1,366,367],[280,1,1,367,368],[281,1,1,368,369],[282,1,1,369,370],[284,5,3,370,373],[286,3,3,373,376],[287,3,2,376,378],[289,3,2,378,380],[290,5,3,380,383]]],[10,26,24,383,407,[[292,2,2,383,385],[298,5,5,385,390],[301,2,2,390,392],[303,4,2,392,394],[304,1,1,394,395],[305,1,1,395,396],[306,1,1,396,397],[307,1,1,397,398],[308,2,2,398,400],[310,3,3,400,403],[312,4,4,403,407]]],[11,37,33,407,440,[[315,4,4,407,411],[316,1,1,411,412],[317,2,2,412,414],[318,1,1,414,415],[319,2,2,415,417],[320,3,3,417,420],[321,1,1,420,421],[322,2,1,421,422],[323,2,2,422,424],[324,1,1,424,425],[325,5,3,425,428],[326,3,3,428,431],[327,2,1,431,432],[329,2,2,432,434],[330,1,1,434,435],[331,1,1,435,436],[333,1,1,436,437],[334,3,3,437,440]]],[12,24,20,440,460,[[341,1,1,440,441],[342,2,2,441,443],[343,1,1,443,444],[348,1,1,444,445],[350,2,2,445,447],[351,3,2,447,449],[353,1,1,449,450],[356,1,1,450,451],[357,2,1,451,452],[358,5,4,452,456],[359,1,1,456,457],[363,1,1,457,458],[366,3,2,458,460]]],[13,36,32,460,492,[[372,2,2,460,462],[376,1,1,462,463],[378,2,2,463,465],[379,2,2,465,467],[382,1,1,467,468],[383,1,1,468,469],[384,4,4,469,473],[386,1,1,473,474],[387,2,1,474,475],[389,3,3,475,478],[390,2,2,478,480],[391,1,1,480,481],[392,4,3,481,484],[394,3,2,484,486],[396,1,1,486,487],[399,1,1,487,488],[400,3,2,488,490],[401,1,1,490,491],[402,1,1,491,492]]],[14,11,11,492,503,[[403,1,1,492,493],[409,3,3,493,496],[410,5,5,496,501],[411,2,2,501,503]]],[15,9,9,503,512,[[413,1,1,503,504],[414,2,2,504,506],[418,1,1,506,507],[421,4,4,507,511],[423,1,1,511,512]]],[16,9,9,512,521,[[427,1,1,512,513],[428,1,1,513,514],[430,1,1,514,515],[431,2,2,515,517],[433,1,1,517,518],[434,3,3,518,521]]],[17,29,29,521,550,[[436,2,2,521,523],[437,2,2,523,525],[441,1,1,525,526],[444,2,2,526,528],[446,1,1,528,529],[447,3,3,529,532],[450,2,2,532,534],[454,1,1,534,535],[455,1,1,535,536],[456,2,2,536,538],[461,1,1,538,539],[462,1,1,539,540],[463,1,1,540,541],[464,1,1,541,542],[465,2,2,542,544],[466,3,3,544,547],[469,1,1,547,548],[472,1,1,548,549],[475,1,1,549,550]]],[18,43,42,550,592,[[487,2,2,550,552],[494,1,1,552,553],[498,1,1,553,554],[508,3,3,554,557],[509,1,1,557,558],[513,1,1,558,559],[514,2,2,559,561],[515,1,1,561,562],[516,1,1,562,563],[521,1,1,563,564],[550,1,1,564,565],[551,1,1,565,566],[552,1,1,566,567],[554,1,1,567,568],[555,2,2,568,570],[557,1,1,570,571],[558,1,1,571,572],[566,3,3,572,575],[572,2,2,575,577],[581,1,1,577,578],[583,3,3,578,581],[586,1,1,581,582],[596,1,1,582,583],[598,1,1,583,584],[600,2,1,584,585],[604,1,1,585,586],[613,1,1,586,587],[615,1,1,587,588],[616,1,1,588,589],[621,1,1,589,590],[622,1,1,590,591],[626,1,1,591,592]]],[19,15,13,592,605,[[628,1,1,592,593],[630,1,1,593,594],[637,1,1,594,595],[638,2,1,595,596],[639,1,1,596,597],[643,2,1,597,598],[644,1,1,598,599],[646,1,1,599,600],[648,1,1,600,601],[653,3,3,601,604],[657,1,1,604,605]]],[20,6,6,605,611,[[663,2,2,605,607],[665,1,1,607,608],[667,2,2,608,610],[669,1,1,610,611]]],[21,1,1,611,612,[[675,1,1,611,612]]],[22,52,51,612,663,[[679,1,1,612,613],[681,1,1,613,614],[683,2,1,614,615],[684,1,1,615,616],[686,1,1,616,617],[687,3,3,617,620],[688,6,6,620,626],[689,4,4,626,630],[691,1,1,630,631],[692,2,2,631,633],[697,2,2,633,635],[700,1,1,635,636],[701,1,1,636,637],[703,1,1,637,638],[704,1,1,638,639],[706,1,1,639,640],[709,1,1,640,641],[712,1,1,641,642],[714,1,1,642,643],[715,1,1,643,644],[719,1,1,644,645],[720,1,1,645,646],[722,1,1,646,647],[725,1,1,647,648],[726,1,1,648,649],[727,2,2,649,651],[728,1,1,651,652],[729,3,3,652,655],[731,1,1,655,656],[734,1,1,656,657],[735,1,1,657,658],[737,1,1,658,659],[740,1,1,659,660],[742,1,1,660,661],[744,2,2,661,663]]],[23,72,56,663,719,[[745,1,1,663,664],[750,2,2,664,666],[755,1,1,666,667],[759,2,2,667,669],[760,1,1,669,670],[762,3,2,670,672],[764,2,2,672,674],[765,5,3,674,677],[766,5,2,677,679],[770,3,2,679,681],[771,3,3,681,684],[773,2,2,684,686],[775,1,1,686,687],[776,9,8,687,695],[778,7,4,695,699],[780,2,1,699,700],[781,1,1,700,701],[782,6,6,701,707],[783,1,1,707,708],[784,1,1,708,709],[785,1,1,709,710],[787,2,2,710,712],[788,4,2,712,714],[790,4,2,714,716],[794,1,1,716,717],[795,2,2,717,719]]],[24,8,8,719,727,[[797,3,3,719,722],[798,2,2,722,724],[799,1,1,724,725],[801,2,2,725,727]]],[25,71,66,727,793,[[802,1,1,727,728],[803,1,1,728,729],[804,2,2,729,731],[807,1,1,731,732],[809,3,3,732,735],[810,2,2,735,737],[811,2,2,737,739],[813,1,1,739,740],[814,2,2,740,742],[815,2,2,742,744],[817,3,3,744,747],[818,1,1,747,748],[819,2,2,748,750],[821,10,9,750,759],[822,2,2,759,761],[824,5,3,761,764],[826,4,4,764,768],[828,1,1,768,769],[829,2,2,769,771],[831,5,4,771,775],[832,1,1,775,776],[834,1,1,776,777],[836,1,1,777,778],[837,1,1,778,779],[838,5,4,779,783],[839,1,1,783,784],[840,2,2,784,786],[841,3,3,786,789],[845,1,1,789,790],[847,1,1,790,791],[848,2,2,791,793]]],[26,8,7,793,800,[[850,1,1,793,794],[857,2,1,794,795],[858,1,1,795,796],[859,1,1,796,797],[860,3,3,797,800]]],[27,2,2,800,802,[[868,1,1,800,801],[873,1,1,801,802]]],[28,1,1,802,803,[[878,1,1,802,803]]],[29,4,4,803,807,[[879,1,1,803,804],[883,1,1,804,805],[885,1,1,805,806],[887,1,1,806,807]]],[32,3,3,807,810,[[894,1,1,807,808],[897,1,1,808,809],[899,1,1,809,810]]],[35,3,3,810,813,[[906,1,1,810,811],[907,2,2,811,813]]],[37,10,7,813,820,[[912,2,2,813,815],[914,1,1,815,816],[918,1,1,816,817],[921,2,1,817,818],[923,1,1,818,819],[924,3,1,819,820]]]],[77,192,207,356,358,387,393,467,473,531,553,557,559,593,600,601,609,684,744,865,902,941,944,1015,1105,1110,1137,1139,1147,1148,1149,1152,1153,1155,1157,1161,1162,1172,1183,1185,1230,1237,1239,1289,1302,1305,1311,1316,1341,1390,1449,1468,1481,1598,1599,1603,1605,1607,1608,1614,1618,1621,1622,1653,1656,1689,1690,1700,1702,1704,1715,1716,1727,1745,1757,1764,1789,1798,1799,1827,1870,1876,1881,1883,1897,1905,1910,1915,1916,1929,1940,1950,1988,1992,1994,2009,2039,2090,2093,2097,2101,2117,2121,2124,2145,2175,2188,2356,2449,2453,2500,2525,2560,2654,2749,2780,2786,2791,2799,2819,2824,2828,2940,2953,2975,2988,3125,3128,3136,3139,3143,3222,3497,3549,3570,3771,3776,3780,3788,3792,3810,3844,3858,3988,4001,4047,4176,4234,4322,4331,4342,4374,4382,4398,4404,4406,4478,4572,4577,4670,4761,4763,4863,4866,4892,4919,4945,4953,4968,4977,4999,5038,5068,5094,5107,5119,5130,5135,5154,5183,5189,5210,5226,5246,5247,5251,5257,5281,5289,5315,5319,5322,5326,5327,5329,5330,5352,5411,5418,5427,5520,5525,5526,5528,5558,5574,5619,5623,5631,5643,5717,5785,5798,5799,5813,5851,5888,5934,5947,5983,6009,6020,6021,6028,6062,6070,6072,6083,6094,6096,6115,6189,6374,6377,6381,6383,6389,6425,6435,6484,6487,6511,6513,6544,6560,6568,6572,6576,6578,6589,6596,6598,6601,6606,6608,6613,6620,6623,6649,6655,6656,6675,6690,6691,6696,6700,6701,6702,6703,6708,6710,6725,6726,6734,6783,6802,6850,6872,6885,6915,6941,6942,6944,6947,6967,6972,6975,7012,7082,7140,7253,7325,7326,7328,7330,7334,7336,7340,7365,7399,7465,7469,7475,7507,7518,7520,7527,7534,7535,7545,7551,7611,7618,7640,7658,7664,7667,7668,7675,7686,7693,7697,7701,7715,7775,7776,7780,7793,7804,7814,7816,7817,7821,7822,7824,7826,7827,7830,7843,7845,7849,7850,7851,7852,7857,7859,7869,7887,7894,7913,7914,7916,7923,7928,7931,7961,8001,8036,8089,8093,8099,8151,8242,8250,8273,8311,8336,8375,8394,8434,8480,8490,8506,8563,8564,8575,8600,8602,8663,8674,8706,8708,8709,8795,8816,9000,9009,9027,9038,9041,9134,9135,9188,9190,9236,9267,9290,9328,9350,9387,9414,9421,9436,9486,9492,9495,9514,9586,9589,9591,9594,9632,9658,9665,9681,9709,9724,9735,9747,9749,9757,9808,9837,9840,9865,9874,9876,9887,9901,9921,9923,9944,9990,10003,10054,10071,10133,10150,10152,10154,10395,10438,10448,10469,10696,10769,10770,10784,10785,10827,10918,10934,10947,10949,10950,10951,10982,11105,11172,11176,11297,11314,11410,11442,11444,11461,11469,11517,11528,11547,11553,11556,11575,11593,11634,11663,11666,11674,11688,11701,11724,11743,11745,11751,11769,11773,11839,11916,11943,11950,11972,12010,12024,12179,12182,12201,12219,12223,12227,12232,12234,12239,12244,12306,12315,12325,12406,12525,12538,12539,12541,12612,12745,12757,12781,12795,12802,12824,12836,12844,12849,12880,12881,12896,12897,12987,13075,13084,13122,13134,13137,13138,13226,13228,13318,13348,13360,13371,13480,13492,13513,13552,13578,13581,13609,13613,13615,13703,13776,13868,14053,14055,14117,14199,14336,14339,14346,14359,14449,14474,14483,14492,14522,14573,15043,15059,15079,15113,15155,15174,15215,15231,15339,15347,15351,15458,15461,15599,15677,15692,15693,15782,16071,16086,16100,16125,16208,16238,16249,16312,16336,16391,16424,16482,16660,16709,16743,16845,16889,16949,16985,17147,17150,17156,17283,17411,17412,17447,17476,17485,17519,17602,17679,17713,17764,17775,17818,17841,17846,17850,17854,17855,17860,17863,17864,17882,17892,17895,17898,17899,17908,17954,17955,18008,18020,18073,18088,18128,18141,18166,18253,18320,18345,18362,18471,18486,18538,18605,18627,18638,18658,18664,18689,18691,18696,18721,18755,18775,18801,18857,18893,18924,18936,18955,19098,19101,19247,19321,19332,19357,19388,19390,19426,19427,19445,19447,19450,19478,19479,19586,19596,19599,19602,19604,19638,19656,19723,19734,19735,19752,19755,19756,19759,19767,19774,19803,19804,19821,19822,19856,19891,19898,19900,19911,19913,19914,19918,19940,19945,19962,20000,20006,20035,20040,20069,20071,20181,20219,20237,20317,20320,20324,20339,20340,20357,20448,20454,20467,20501,20516,20524,20577,20605,20607,20615,20623,20624,20640,20641,20687,20717,20729,20740,20744,20789,20801,20811,20843,20857,20866,20900,20901,20910,20917,20918,20923,20928,20929,20937,20955,20975,21016,21035,21038,21090,21096,21097,21099,21136,21166,21167,21214,21216,21228,21229,21241,21302,21347,21366,21398,21414,21416,21417,21437,21469,21471,21478,21480,21482,21611,21662,21682,21693,21739,21986,22003,22025,22047,22052,22078,22183,22259,22351,22372,22442,22471,22497,22596,22642,22680,22791,22818,22820,22900,22908,22932,22980,23034,23066,23081]]],["handed",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8451]]],["hands",[250,236,[[0,12,10,0,10,[[4,1,1,0,1],[15,1,1,1,2],[23,3,3,2,5],[26,5,3,5,8],[42,1,1,8,9],[48,1,1,9,10]]],[1,11,9,10,19,[[64,1,1,10,11],[66,3,1,11,12],[78,3,3,12,15],[79,2,2,15,17],[84,1,1,17,18],[89,1,1,18,19]]],[2,9,9,19,28,[[93,1,1,19,20],[96,1,1,20,21],[97,4,4,21,25],[104,1,1,25,26],[105,1,1,26,27],[113,1,1,27,28]]],[3,3,3,28,31,[[124,2,2,28,30],[143,1,1,30,31]]],[4,18,17,31,48,[[153,1,1,31,32],[156,1,1,32,33],[161,2,2,33,35],[164,1,1,35,36],[168,1,1,36,37],[169,2,1,37,38],[172,1,1,38,39],[173,3,3,39,42],[176,1,1,42,43],[179,1,1,43,44],[183,1,1,44,45],[185,2,2,45,47],[186,1,1,47,48]]],[6,15,12,48,60,[[212,2,1,48,49],[217,5,4,49,53],[219,1,1,53,54],[220,2,1,54,55],[221,2,2,55,57],[225,1,1,57,58],[228,1,1,58,59],[229,1,1,59,60]]],[8,6,6,60,66,[[240,1,1,60,61],[246,1,1,61,62],[249,1,1,62,63],[252,1,1,63,64],[256,1,1,64,65],[265,1,1,65,66]]],[9,9,9,66,75,[[268,1,1,66,67],[269,1,1,67,68],[270,2,2,68,70],[282,1,1,70,71],[287,1,1,71,72],[288,2,2,72,74],[289,1,1,74,75]]],[10,2,2,75,77,[[304,1,1,75,76],[306,1,1,76,77]]],[11,10,9,77,86,[[315,1,1,77,78],[321,2,2,78,80],[322,1,1,80,81],[323,1,1,81,82],[324,1,1,82,83],[325,2,1,83,84],[331,1,1,84,85],[334,1,1,85,86]]],[12,4,4,86,90,[[362,3,3,86,89],[366,1,1,89,90]]],[13,8,8,90,98,[[372,1,1,90,91],[374,1,1,91,92],[378,1,1,92,93],[381,1,1,93,94],[389,1,1,94,95],[395,1,1,95,96],[398,1,1,96,97],[400,1,1,97,98]]],[14,4,4,98,102,[[403,1,1,98,99],[406,1,1,99,100],[408,1,1,100,101],[412,1,1,101,102]]],[15,7,6,102,108,[[414,1,1,102,103],[416,1,1,103,104],[418,2,1,104,105],[420,1,1,105,106],[421,1,1,106,107],[425,1,1,107,108]]],[16,3,3,108,111,[[428,2,2,108,110],[434,1,1,110,111]]],[17,12,12,111,123,[[436,1,1,111,112],[439,1,1,112,113],[440,2,2,113,115],[445,1,1,115,116],[449,1,1,116,117],[451,1,1,117,118],[452,2,2,118,120],[455,1,1,120,121],[465,1,1,121,122],[469,1,1,122,123]]],[18,29,28,123,151,[[485,1,1,123,124],[495,3,3,124,127],[499,1,1,127,128],[503,1,1,128,129],[505,3,3,129,132],[532,1,1,132,133],[535,1,1,133,134],[545,1,1,134,135],[553,1,1,135,136],[567,2,1,136,137],[569,1,1,137,138],[572,1,1,138,139],[579,1,1,139,140],[588,1,1,140,141],[592,2,2,141,143],[596,1,1,143,144],[602,1,1,144,145],[611,1,1,145,146],[612,1,1,146,147],[615,1,1,147,148],[620,2,2,148,150],[621,1,1,150,151]]],[19,10,10,151,161,[[633,2,2,151,153],[639,1,1,153,154],[641,1,1,154,155],[648,1,1,155,156],[651,1,1,156,157],[657,1,1,157,158],[658,3,3,158,161]]],[20,3,3,161,164,[[663,1,1,161,162],[665,1,1,162,163],[668,1,1,163,164]]],[21,3,3,164,167,[[675,2,2,164,166],[677,1,1,166,167]]],[22,19,18,167,185,[[679,1,1,167,168],[680,1,1,168,169],[681,1,1,169,170],[683,1,1,170,171],[691,1,1,171,172],[695,1,1,172,173],[697,1,1,173,174],[703,2,1,174,175],[707,1,1,175,176],[709,1,1,176,177],[713,1,1,177,178],[715,1,1,178,179],[723,3,3,179,182],[738,1,1,182,183],[743,2,2,183,185]]],[23,20,19,185,204,[[745,1,1,185,186],[746,1,1,186,187],[750,1,1,187,188],[754,2,2,188,190],[763,1,1,190,191],[765,1,1,191,192],[767,1,1,192,193],[769,3,3,193,196],[774,1,1,196,197],[776,1,1,197,198],[777,1,1,198,199],[782,2,1,199,200],[788,1,1,200,201],[791,1,1,201,202],[792,1,1,202,203],[794,1,1,203,204]]],[24,6,6,204,210,[[797,2,2,204,206],[799,1,1,206,207],[800,3,3,207,210]]],[25,15,15,210,225,[[802,1,1,210,211],[808,3,3,211,214],[811,2,2,214,216],[812,1,1,216,217],[814,1,1,217,218],[817,1,1,218,219],[822,1,1,219,220],[823,1,1,220,221],[824,3,3,221,224],[826,1,1,224,225]]],[26,1,1,225,226,[[859,1,1,225,226]]],[27,1,1,226,227,[[875,1,1,226,227]]],[32,1,1,227,228,[[897,1,1,227,228]]],[34,1,1,228,229,[[905,1,1,228,229]]],[35,1,1,229,230,[[908,1,1,229,230]]],[36,2,2,230,232,[[910,2,2,230,232]]],[37,5,4,232,236,[[914,2,1,232,233],[918,2,2,233,235],[923,1,1,235,236]]]],[134,390,613,621,638,743,749,750,1312,1497,1937,1995,2346,2351,2355,2401,2403,2556,2738,2810,2909,2931,2935,2939,2941,3179,3222,3460,3949,3951,4577,4917,5032,5172,5174,5258,5357,5371,5440,5453,5454,5457,5544,5600,5757,5817,5821,5848,6559,6696,6705,6713,6714,6770,6818,6859,6861,6943,7003,7051,7323,7452,7521,7665,7785,7993,8056,8115,8121,8132,8447,8589,8623,8637,8659,9245,9290,9587,9779,9791,9817,9845,9861,9887,10079,10162,11048,11049,11052,11169,11286,11364,11447,11497,11671,11814,11894,11958,12022,12114,12173,12271,12325,12376,12410,12499,12535,12692,12753,12756,12850,12879,12933,12963,12969,13094,13196,13249,13263,13269,13336,13559,13702,14018,14138,14142,14152,14220,14283,14301,14303,14304,14752,14781,14931,15086,15395,15415,15459,15546,15800,15834,15837,15971,16113,16174,16190,16239,16298,16299,16306,16550,16557,16733,16773,17009,17112,17279,17303,17304,17315,17403,17455,17511,17603,17612,17628,17669,17693,17718,17751,17913,17991,18029,18129,18216,18257,18323,18371,18570,18572,18573,18842,18899,18919,18962,19002,19113,19204,19210,19414,19444,19498,19540,19541,19548,19673,19761,19788,19899,20018,20076,20117,20209,20324,20327,20418,20422,20426,20430,20472,20594,20598,20604,20645,20654,20664,20730,20773,20951,20990,21044,21049,21052,21089,22025,22285,22646,22778,22836,22869,22872,22931,22985,22989,23065]]],["he",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3497]]],["him",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6583]]],["in",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12541]]],["labour",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16758]]],["ledges",[2,2,[[10,2,2,0,2,[[297,2,2,0,2]]]],[8969,8970]]],["means",[3,3,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[367,1,1,1,2]]],[23,1,1,2,3,[[749,1,1,2,3]]]],[9108,11211,19089]]],["mine",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8386]]],["ministry",[2,2,[[13,1,1,0,1,[[373,1,1,0,1]]],[27,1,1,1,2,[[873,1,1,1,2]]]],[11330,22262]]],["next",[12,8,[[15,12,8,0,8,[[415,12,8,0,8]]]],[12329,12331,12332,12334,12336,12337,12339,12346]]],["occasion",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6787]]],["on",[1,1,[[12,1,1,0,1,[[360,1,1,0,1]]]],[11011]]],["order",[2,2,[[12,2,2,0,2,[[362,2,2,0,2]]]],[11048,11052]]],["ordinance",[1,1,[[14,1,1,0,1,[[405,1,1,0,1]]]],[12107]]],["parts",[4,4,[[0,1,1,0,1,[[46,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]],[11,1,1,2,3,[[323,1,1,2,3]]],[15,1,1,3,4,[[423,1,1,3,4]]]],[1444,8554,9836,12589]]],["place",[8,8,[[3,1,1,0,1,[[118,1,1,0,1]]],[4,2,2,1,3,[[154,1,1,1,2],[175,1,1,2,3]]],[8,1,1,3,4,[[250,1,1,3,4]]],[9,1,1,4,5,[[284,1,1,4,5]]],[22,1,1,5,6,[[734,1,1,5,6]]],[23,1,1,6,7,[[750,1,1,6,7]]],[25,1,1,7,8,[[822,1,1,7,8]]]],[3675,4975,5512,7572,8496,18758,19092,20963]]],["places",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16282]]],["power",[7,7,[[4,1,1,0,1,[[184,1,1,0,1]]],[5,1,1,1,2,[[194,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[17,1,1,3,4,[[436,1,1,3,4]]],[19,1,1,4,5,[[645,1,1,4,5]]],[22,1,1,5,6,[[715,1,1,5,6]]],[26,1,1,6,7,[[861,1,1,6,7]]]],[5794,6022,10087,12881,16922,18379,22088]]],["service",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10485]]],["side",[4,4,[[1,1,1,0,1,[[51,1,1,0,1]]],[8,1,1,1,2,[[239,1,1,1,2]]],[9,1,1,2,3,[[284,1,1,2,3]]],[26,1,1,3,4,[[859,1,1,3,4]]]],[1559,7315,8482,22019]]],["sore",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15095]]],["state",[2,2,[[16,2,2,0,2,[[426,1,1,0,1],[427,1,1,1,2]]]],[12709,12742]]],["stays",[4,2,[[10,2,1,0,1,[[300,2,1,0,1]]],[13,2,1,1,2,[[375,2,1,1,2]]]],[9098,11382]]],["strength",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9780]]],["stroke",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13421]]],["tenons",[6,4,[[1,6,4,0,4,[[75,3,2,0,2],[85,3,2,2,4]]]],[2252,2254,2588,2590]]],["through",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22934]]],["throwing",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4862]]],["times",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21757]]],["to",[1,1,[[23,1,1,0,1,[[783,1,1,0,1]]]],[19934]]],["under",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11034]]],["us",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1802]]],["where",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18773]]],["with",[10,10,[[8,3,3,0,3,[[249,1,1,0,1],[251,1,1,1,2],[256,1,1,2,3]]],[9,1,1,3,4,[[274,1,1,3,4]]],[10,1,1,4,5,[[304,1,1,4,5]]],[11,2,2,5,7,[[317,1,1,5,6],[320,1,1,6,7]]],[19,1,1,7,8,[[634,1,1,7,8]]],[23,2,2,8,10,[[782,2,2,8,10]]]],[7542,7597,7780,8219,9221,9652,9736,16595,19905,19906]]],["work",[1,1,[[1,1,1,0,1,[[63,1,1,0,1]]]],[1920]]],["you",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6048]]]]},{"k":"H3028","v":[["*",[17,16,[[14,5,5,0,5,[[407,2,2,0,2],[408,1,1,2,3],[409,2,2,3,5]]],[26,12,11,5,16,[[851,3,3,5,8],[852,2,2,8,10],[853,1,1,10,11],[854,4,3,11,14],[855,1,1,14,15],[856,1,1,15,16]]]],[12142,12146,12163,12187,12198,21792,21796,21803,21822,21824,21872,21879,21897,21898,21932,21958]]],["hand",[12,11,[[14,4,4,0,4,[[407,1,1,0,1],[408,1,1,1,2],[409,2,2,2,4]]],[26,8,7,4,11,[[851,1,1,4,5],[852,1,1,5,6],[853,1,1,6,7],[854,4,3,7,10],[856,1,1,10,11]]]],[12146,12163,12187,12198,21796,21824,21872,21879,21897,21898,21958]]],["hands",[4,4,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,3,3,1,4,[[851,2,2,1,3],[852,1,1,3,4]]]],[12142,21792,21803,21822]]],["power",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21932]]]]},{"k":"H3029","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[855,1,1,1,2]]]],[21781,21915]]],["thank",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21781]]],["thanks",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21915]]]]},{"k":"H3030","v":[["Idalah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6336]]]]},{"k":"H3031","v":[["Idbash",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10388]]]]},{"k":"H3032","v":[["cast",[3,3,[[28,1,1,0,1,[[878,1,1,0,1]]],[30,1,1,1,2,[[888,1,1,1,2]]],[33,1,1,2,3,[[902,1,1,2,3]]]],[22346,22521,22722]]]]},{"k":"H3033","v":[["beloved",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19256]]]]},{"k":"H3034","v":[["*",[114,111,[[0,2,2,0,2,[[28,1,1,0,1],[48,1,1,1,2]]],[2,3,3,2,5,[[94,1,1,2,3],[105,1,1,3,4],[115,1,1,4,5]]],[3,1,1,5,6,[[121,1,1,5,6]]],[9,1,1,6,7,[[288,1,1,6,7]]],[10,2,2,7,9,[[298,2,2,7,9]]],[12,9,9,9,18,[[353,6,6,9,15],[360,1,1,15,16],[362,1,1,16,17],[366,1,1,17,18]]],[13,8,8,18,26,[[371,1,1,18,19],[372,2,2,19,21],[373,2,2,21,23],[386,1,1,23,24],[396,1,1,24,25],[397,1,1,25,26]]],[14,2,2,26,28,[[405,1,1,26,27],[412,1,1,27,28]]],[15,6,6,28,34,[[413,1,1,28,29],[421,2,2,29,31],[423,1,1,31,32],[424,2,2,32,34]]],[17,1,1,34,35,[[475,1,1,34,35]]],[18,67,64,35,99,[[483,1,1,35,36],[484,1,1,36,37],[486,1,1,37,38],[495,1,1,38,39],[505,1,1,39,40],[507,3,3,40,43],[509,1,1,43,44],[510,1,1,44,45],[512,1,1,45,46],[519,2,2,46,48],[520,2,2,48,50],[521,1,1,50,51],[522,1,1,51,52],[526,1,1,52,53],[529,1,1,53,54],[531,1,1,54,55],[534,1,1,55,56],[544,4,2,56,58],[548,1,1,58,59],[552,2,1,59,60],[553,1,1,60,61],[556,1,1,61,62],[563,1,1,62,63],[565,1,1,63,64],[566,1,1,64,65],[569,1,1,65,66],[574,1,1,66,67],[576,1,1,67,68],[577,1,1,68,69],[582,1,1,69,70],[583,2,2,70,72],[584,5,5,72,77],[585,1,1,77,78],[586,1,1,78,79],[588,1,1,79,80],[595,5,5,80,85],[596,2,2,85,87],[599,1,1,87,88],[613,4,4,88,92],[615,3,3,92,95],[616,1,1,95,96],[617,1,1,96,97],[619,1,1,97,98],[622,1,1,98,99]]],[19,1,1,99,100,[[655,1,1,99,100]]],[22,5,5,100,105,[[690,2,2,100,102],[703,1,1,102,103],[716,2,2,103,105]]],[23,2,2,105,107,[[777,1,1,105,106],[794,1,1,106,107]]],[24,1,1,107,108,[[799,1,1,107,108]]],[26,2,2,108,110,[[858,2,2,108,110]]],[37,1,1,110,111,[[911,1,1,110,111]]]],[830,1481,2835,3222,3564,3799,8652,9018,9020,10824,10827,10828,10854,10855,10861,11013,11049,11177,11281,11306,11308,11327,11330,11608,11849,11856,12108,12253,12302,12513,12514,12605,12648,12670,13878,13990,14012,14022,14167,14306,14323,14328,14331,14360,14368,14428,14560,14566,14570,14571,14579,14614,14666,14719,14731,14777,14896,14898,14998,15072,15091,15198,15296,15318,15331,15412,15490,15502,15512,15607,15652,15698,15700,15707,15714,15720,15730,15745,15785,15794,15870,15888,15890,15897,15898,15905,15960,16093,16197,16198,16199,16222,16232,16233,16235,16253,16276,16293,16330,17209,17901,17904,18119,18408,18409,19786,20180,20407,21992,22008,22899]]],["+",[13,13,[[0,1,1,0,1,[[28,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,1,1,2,3,[[121,1,1,2,3]]],[10,2,2,3,5,[[298,2,2,3,5]]],[13,2,2,5,7,[[372,2,2,5,7]]],[15,2,2,7,9,[[413,1,1,7,8],[421,1,1,8,9]]],[18,2,2,9,11,[[615,1,1,9,10],[619,1,1,10,11]]],[23,1,1,11,12,[[777,1,1,11,12]]],[37,1,1,12,13,[[911,1,1,12,13]]]],[830,3564,3799,9018,9020,11306,11308,12302,12513,16233,16293,19786,22899]]],["Praise",[3,3,[[13,1,1,0,1,[[386,1,1,0,1]]],[18,1,1,1,2,[[510,1,1,1,2]]],[22,1,1,2,3,[[690,1,1,2,3]]]],[11608,14368,17904]]],["cast",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20407]]],["confess",[4,4,[[2,2,2,0,2,[[94,1,1,0,1],[105,1,1,1,2]]],[17,1,1,2,3,[[475,1,1,2,3]]],[18,1,1,3,4,[[509,1,1,3,4]]]],[2835,3222,13878,14360]]],["confessed",[2,2,[[14,1,1,0,1,[[412,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]]],[12253,12514]]],["confesseth",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17209]]],["confessing",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22008]]],["confession",[2,2,[[13,1,1,0,1,[[396,1,1,0,1]]],[26,1,1,1,2,[[858,1,1,1,2]]]],[11849,21992]]],["praise",[45,43,[[0,1,1,0,1,[[48,1,1,0,1]]],[13,1,1,1,2,[[373,1,1,1,2]]],[18,39,37,2,39,[[484,1,1,2,3],[486,1,1,3,4],[505,1,1,4,5],[507,1,1,5,6],[519,2,2,6,8],[520,2,2,8,10],[521,1,1,10,11],[522,1,1,11,12],[526,1,1,12,13],[529,1,1,13,14],[531,1,1,14,15],[534,1,1,15,16],[544,4,2,16,18],[548,1,1,18,19],[553,1,1,19,20],[563,1,1,20,21],[565,1,1,21,22],[566,1,1,22,23],[576,1,1,23,24],[584,4,4,24,28],[585,1,1,28,29],[586,1,1,29,30],[588,1,1,30,31],[595,3,3,31,34],[596,1,1,34,35],[615,2,2,35,37],[616,1,1,37,38],[622,1,1,38,39]]],[22,4,4,39,43,[[690,1,1,39,40],[703,1,1,40,41],[716,2,2,41,43]]]],[1481,11330,14012,14022,14306,14328,14560,14566,14570,14571,14579,14614,14666,14719,14731,14777,14896,14898,14998,15091,15296,15318,15331,15502,15707,15714,15720,15730,15745,15785,15794,15888,15890,15897,15905,16232,16235,16253,16330,17901,18119,18408,18409]]],["praised",[1,1,[[13,1,1,0,1,[[373,1,1,0,1]]]],[11327]]],["shoot",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20180]]],["thank",[4,4,[[12,4,4,0,4,[[353,2,2,0,2],[360,1,1,2,3],[366,1,1,3,4]]]],[10824,10827,11013,11177]]],["thankful",[1,1,[[18,1,1,0,1,[[577,1,1,0,1]]]],[15512]]],["thanking",[1,1,[[13,1,1,0,1,[[371,1,1,0,1]]]],[11281]]],["thanks",[32,31,[[9,1,1,0,1,[[288,1,1,0,1]]],[12,5,5,1,6,[[353,4,4,1,5],[362,1,1,5,6]]],[13,1,1,6,7,[[397,1,1,6,7]]],[14,1,1,7,8,[[405,1,1,7,8]]],[15,1,1,8,9,[[424,1,1,8,9]]],[18,23,22,9,31,[[483,1,1,9,10],[495,1,1,10,11],[507,2,2,11,13],[512,1,1,13,14],[552,2,1,14,15],[556,1,1,15,16],[569,1,1,16,17],[574,1,1,17,18],[582,1,1,18,19],[583,2,2,19,21],[584,1,1,21,22],[595,2,2,22,24],[596,1,1,24,25],[599,1,1,25,26],[613,4,4,26,30],[617,1,1,30,31]]]],[8652,10828,10854,10855,10861,11049,11856,12108,12648,13990,14167,14323,14331,14428,15072,15198,15412,15490,15607,15652,15698,15700,15870,15898,15960,16093,16197,16198,16199,16222,16276]]],["thanksgiving",[2,2,[[15,2,2,0,2,[[423,1,1,0,1],[424,1,1,1,2]]]],[12605,12670]]]]},{"k":"H3035","v":[["*",[2,2,[[12,1,1,0,1,[[364,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]]],[11130,12295]]],["Iddo",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11130]]],["Jadau",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12295]]]]},{"k":"H3036","v":[["Jadon",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12334]]]]},{"k":"H3037","v":[["Jaddua",[3,3,[[15,3,3,0,3,[[422,1,1,0,1],[424,2,2,1,3]]]],[12570,12635,12646]]]]},{"k":"H3038","v":[["Jeduthun",[14,11,[[12,10,7,0,7,[[346,1,1,0,1],[353,4,3,1,4],[362,5,3,4,7]]],[13,3,3,7,10,[[371,1,1,7,8],[395,1,1,8,9],[401,1,1,9,10]]],[15,1,1,10,11,[[423,1,1,10,11]]]],[10631,10858,10861,10862,11047,11049,11052,11280,11805,11981,12605]]]]},{"k":"H3039","v":[["*",[8,7,[[4,1,1,0,1,[[185,1,1,0,1]]],[18,4,4,1,5,[[537,1,1,1,2],[561,1,1,2,3],[585,1,1,3,4],[604,1,1,4,5]]],[22,2,1,5,6,[[683,2,1,5,6]]],[23,1,1,6,7,[[755,1,1,6,7]]]],[5822,14812,15260,15748,16123,17740,19241]]],["amiable",[1,1,[[18,1,1,0,1,[[561,1,1,0,1]]]],[15260]]],["beloved",[5,5,[[4,1,1,0,1,[[185,1,1,0,1]]],[18,3,3,1,4,[[537,1,1,1,2],[585,1,1,2,3],[604,1,1,3,4]]],[23,1,1,4,5,[[755,1,1,4,5]]]],[5822,14812,15748,16123,19241]]],["wellbeloved",[2,1,[[22,2,1,0,1,[[683,2,1,0,1]]]],[17740]]]]},{"k":"H3040","v":[["Jedidah",[1,1,[[11,1,1,0,1,[[334,1,1,0,1]]]],[10146]]]]},{"k":"H3041","v":[["Jedidiah",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8311]]]]},{"k":"H3042","v":[["Jedaiah",[2,2,[[12,1,1,0,1,[[341,1,1,0,1]]],[15,1,1,1,2,[[415,1,1,1,2]]]],[10422,12337]]]]},{"k":"H3043","v":[["Jediael",[6,6,[[12,6,6,0,6,[[344,3,3,0,3],[348,1,1,3,4],[349,1,1,4,5],[363,1,1,5,6]]]],[10541,10545,10546,10718,10740,11079]]]]},{"k":"H3044","v":[["Jidlaph",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[569]]]]},{"k":"H3045","v":[["*",[946,873,[[0,57,52,0,52,[[2,4,3,0,3],[3,4,4,3,7],[7,1,1,7,8],[8,1,1,8,9],[11,1,1,9,10],[14,3,2,10,12],[17,2,2,12,14],[18,4,4,14,18],[19,2,2,18,20],[20,1,1,20,21],[21,1,1,21,22],[23,3,3,22,25],[24,1,1,25,26],[26,1,1,26,27],[27,1,1,27,28],[28,2,1,28,29],[29,2,2,29,31],[30,2,2,31,33],[32,1,1,33,34],[37,3,3,34,37],[38,2,2,37,39],[40,3,3,39,42],[41,3,3,42,45],[42,3,2,45,47],[43,2,2,47,49],[44,1,1,49,50],[46,1,1,50,51],[47,2,1,51,52]]],[1,45,43,52,95,[[50,1,1,52,53],[51,3,3,53,56],[52,2,2,56,58],[53,1,1,58,59],[54,1,1,59,60],[55,2,2,60,62],[56,2,2,62,64],[57,2,2,64,66],[58,3,3,66,69],[59,3,3,69,72],[60,1,1,72,73],[63,2,2,73,75],[65,3,3,75,78],[67,3,3,78,81],[70,1,1,81,82],[72,1,1,82,83],[78,1,1,83,84],[80,1,1,84,85],[81,3,3,85,88],[82,7,5,88,93],[83,1,1,93,94],[85,1,1,94,95]]],[2,9,9,95,104,[[93,3,3,95,98],[94,5,5,98,103],[112,1,1,103,104]]],[3,17,17,104,121,[[126,1,1,104,105],[127,1,1,105,106],[128,1,1,106,107],[130,2,2,107,109],[132,3,3,109,112],[136,1,1,112,113],[138,3,3,113,116],[140,1,1,116,117],[147,3,3,117,120],[148,1,1,120,121]]],[4,46,43,121,164,[[153,3,3,121,124],[154,1,1,124,125],[155,1,1,125,126],[156,3,3,126,129],[159,2,2,129,131],[160,6,4,131,135],[161,4,4,135,139],[163,3,2,139,141],[165,4,4,141,145],[170,1,1,145,146],[172,1,1,146,147],[173,1,1,147,148],[174,1,1,148,149],[180,3,3,149,152],[181,4,4,152,156],[183,4,4,156,160],[184,1,1,160,161],[185,1,1,161,162],[186,2,2,162,164]]],[5,17,15,164,179,[[188,3,3,164,167],[189,3,3,167,170],[190,2,2,170,172],[194,1,1,172,173],[200,1,1,173,174],[208,3,2,174,176],[209,3,2,176,178],[210,1,1,178,179]]],[6,23,21,179,200,[[212,1,1,179,180],[213,4,3,180,183],[216,1,1,183,184],[218,1,1,184,185],[221,1,1,185,186],[223,2,2,186,188],[224,1,1,188,189],[225,1,1,189,190],[226,2,2,190,192],[227,1,1,192,193],[228,3,2,193,195],[229,2,2,195,197],[230,1,1,197,198],[231,2,2,198,200]]],[7,7,7,200,207,[[233,1,1,200,201],[234,5,5,201,206],[235,1,1,206,207]]],[8,57,51,207,258,[[236,1,1,207,208],[237,1,1,208,209],[238,3,3,209,212],[239,1,1,212,213],[241,3,3,213,216],[245,2,2,216,218],[247,1,1,218,219],[249,3,3,219,222],[251,3,3,222,225],[252,4,4,225,229],[253,1,1,229,230],[255,10,6,230,236],[256,2,1,236,237],[257,5,5,237,242],[258,4,4,242,246],[259,2,2,246,248],[260,2,2,248,250],[261,2,2,250,252],[263,6,5,252,257],[264,1,1,257,258]]],[9,30,28,258,286,[[267,2,2,258,260],[268,1,1,260,261],[269,6,4,261,265],[271,1,1,265,266],[273,2,2,266,268],[277,2,2,268,270],[278,1,1,270,271],[280,3,3,271,274],[281,1,1,274,275],[283,3,3,275,278],[284,1,1,278,279],[285,4,4,279,283],[288,1,1,283,284],[290,2,2,284,286]]],[10,35,29,286,315,[[291,4,4,286,290],[292,10,7,290,297],[293,1,1,297,298],[295,3,2,298,300],[298,6,4,300,304],[299,1,1,304,305],[304,1,1,305,306],[307,1,1,306,307],[308,3,3,307,310],[310,4,4,310,314],[312,1,1,314,315]]],[11,19,16,315,331,[[314,4,2,315,317],[316,3,3,317,320],[317,3,3,320,323],[319,1,1,323,324],[320,1,1,324,325],[321,1,1,325,326],[322,2,2,326,328],[329,2,1,328,329],[331,2,2,329,331]]],[12,9,8,331,339,[[349,2,1,331,332],[351,1,1,332,333],[353,1,1,333,334],[354,2,2,334,336],[358,1,1,336,337],[365,1,1,337,338],[366,1,1,338,339]]],[13,20,17,339,356,[[368,6,5,339,344],[372,5,3,344,347],[374,1,1,347,348],[378,1,1,348,349],[379,1,1,349,350],[386,1,1,350,351],[389,1,1,351,352],[391,1,1,352,353],[398,2,2,353,355],[399,1,1,355,356]]],[15,9,9,356,365,[[414,1,1,356,357],[416,2,2,357,359],[418,1,1,359,360],[420,1,1,360,361],[421,2,2,361,363],[422,1,1,363,364],[425,1,1,364,365]]],[16,8,7,365,372,[[426,2,1,365,366],[427,2,2,366,368],[429,4,4,368,372]]],[17,70,69,372,441,[[440,3,3,372,375],[443,1,1,375,376],[444,4,4,376,380],[445,2,2,380,382],[446,3,3,382,385],[447,1,1,385,386],[448,3,3,386,389],[449,1,1,389,390],[450,3,2,390,392],[453,1,1,392,393],[454,5,5,393,398],[455,2,2,398,400],[456,2,2,400,402],[457,1,1,402,403],[458,3,3,403,406],[459,2,2,406,408],[461,1,1,408,409],[463,3,3,409,412],[464,1,1,412,413],[465,1,1,413,414],[466,1,1,414,415],[467,2,2,415,417],[469,3,3,417,420],[470,1,1,420,421],[471,1,1,421,422],[472,5,5,422,427],[473,7,7,427,434],[474,2,2,434,436],[475,1,1,436,437],[477,4,4,437,441]]],[18,93,91,441,532,[[478,1,1,441,442],[481,1,1,442,443],[486,3,3,443,446],[491,1,1,446,447],[493,1,1,447,448],[495,1,1,448,449],[497,1,1,449,450],[502,2,2,450,452],[508,2,2,452,454],[509,1,1,454,455],[512,3,3,455,458],[513,1,1,458,459],[514,1,1,459,460],[516,3,2,460,462],[517,1,1,462,463],[518,1,1,463,464],[521,1,1,464,465],[523,1,1,465,466],[525,1,1,466,467],[527,1,1,467,468],[528,2,2,468,470],[530,1,1,470,471],[532,1,1,471,472],[533,1,1,472,473],[536,1,1,473,474],[544,1,1,474,475],[546,2,2,475,477],[548,1,1,477,478],[550,3,3,478,481],[551,2,2,481,483],[553,1,1,483,484],[554,2,2,484,486],[555,3,3,486,489],[556,2,2,489,491],[558,1,1,491,492],[559,1,1,492,493],[560,1,1,493,494],[564,1,1,494,495],[565,3,3,495,498],[566,2,2,498,500],[567,2,2,500,502],[568,1,1,502,503],[569,1,1,503,504],[571,1,1,504,505],[572,1,1,505,506],[575,1,1,506,507],[577,1,1,507,508],[578,1,1,508,509],[580,2,2,509,511],[581,1,1,511,512],[582,1,1,512,513],[583,1,1,513,514],[586,1,1,514,515],[596,4,4,515,519],[612,1,1,519,520],[615,1,1,520,521],[616,6,5,521,526],[617,1,1,526,527],[619,1,1,527,528],[620,1,1,528,529],[621,1,1,529,530],[622,1,1,530,531],[624,1,1,531,532]]],[19,35,33,532,565,[[628,2,2,532,534],[630,1,1,534,535],[631,2,2,535,537],[632,1,1,537,538],[634,1,1,538,539],[636,3,3,539,542],[637,2,2,542,544],[639,2,2,544,546],[641,3,3,546,549],[644,1,1,549,550],[649,2,2,550,552],[650,1,1,552,553],[651,4,3,553,556],[654,3,2,556,558],[655,2,2,558,560],[656,1,1,560,561],[657,3,3,561,564],[658,1,1,564,565]]],[20,36,30,565,595,[[659,3,1,565,566],[660,2,2,566,568],[661,3,3,568,571],[662,1,1,571,572],[663,1,1,572,573],[664,4,4,573,577],[665,3,2,577,579],[666,7,6,579,585],[667,5,4,585,589],[668,2,2,589,591],[669,5,4,591,595]]],[21,2,2,595,597,[[671,1,1,595,596],[676,1,1,596,597]]],[22,75,66,597,663,[[679,2,1,597,598],[683,2,2,598,600],[684,1,1,600,601],[685,2,2,601,603],[686,1,1,603,604],[687,1,1,604,605],[690,2,2,605,607],[697,3,2,607,609],[707,5,4,609,613],[710,1,1,613,614],[711,1,1,614,615],[715,2,2,615,617],[716,1,1,617,618],[718,4,4,618,622],[719,4,4,622,626],[720,3,2,626,628],[721,2,2,628,630],[722,3,3,630,633],[723,5,5,633,638],[725,4,3,638,641],[726,5,4,641,645],[727,2,2,645,647],[728,2,2,647,649],[729,1,1,649,650],[730,1,1,650,651],[731,1,1,651,652],[733,2,1,652,653],[734,3,2,653,655],[736,1,1,655,656],[737,3,2,656,658],[738,1,1,658,659],[739,1,1,659,660],[741,1,1,660,661],[742,1,1,661,662],[744,1,1,662,663]]],[23,74,62,663,725,[[745,2,2,663,665],[746,3,3,665,668],[747,1,1,668,669],[748,2,1,669,670],[749,4,4,670,674],[750,3,3,674,677],[751,1,1,677,678],[752,3,2,678,680],[753,4,4,680,684],[754,2,2,684,686],[755,3,2,686,688],[756,1,1,688,689],[757,2,1,689,690],[758,2,2,690,692],[759,3,2,692,694],[760,4,2,694,696],[761,3,3,696,699],[762,1,1,699,700],[763,1,1,700,701],[766,1,1,701,702],[768,1,1,702,703],[770,2,1,703,704],[772,1,1,704,705],[773,2,2,705,707],[775,3,2,707,709],[776,1,1,709,710],[777,1,1,710,711],[780,1,1,711,712],[782,1,1,712,713],[784,3,2,713,715],[785,1,1,715,716],[786,4,2,716,718],[788,4,4,718,722],[792,2,2,722,724],[794,1,1,724,725]]],[25,100,97,725,822,[[803,1,1,725,726],[806,1,1,726,727],[807,4,4,727,731],[808,3,3,731,734],[811,1,1,734,735],[812,3,3,735,738],[813,3,3,738,741],[814,4,4,741,745],[815,2,2,745,747],[816,1,1,747,748],[817,2,2,748,750],[818,3,3,750,753],[820,1,1,753,754],[821,10,10,754,764],[822,1,1,764,765],[823,4,4,765,769],[824,1,1,769,770],[825,2,2,770,772],[826,5,5,772,777],[827,1,1,777,778],[829,5,5,778,783],[830,4,4,783,787],[831,4,4,787,791],[833,2,2,791,793],[834,2,2,793,795],[835,2,2,795,797],[836,5,5,797,802],[837,5,5,802,807],[838,5,5,807,812],[839,4,3,812,815],[840,7,5,815,820],[844,1,1,820,821],[845,1,1,821,822]]],[26,7,7,822,829,[[850,1,1,822,823],[851,1,1,823,824],[857,1,1,824,825],[858,1,1,825,826],[859,1,1,826,827],[860,2,2,827,829]]],[27,16,14,829,843,[[863,2,2,829,831],[866,3,3,831,834],[867,2,1,834,835],[868,2,1,835,836],[869,2,2,836,838],[870,1,1,838,839],[872,1,1,839,840],[874,2,2,840,842],[875,1,1,842,843]]],[28,3,3,843,846,[[877,2,2,843,845],[878,1,1,845,846]]],[29,4,4,846,850,[[881,2,2,846,848],[883,2,2,848,850]]],[31,6,6,850,856,[[889,3,3,850,853],[891,1,1,853,854],[892,2,2,854,856]]],[32,3,3,856,859,[[895,1,1,856,857],[896,1,1,857,858],[898,1,1,858,859]]],[33,2,2,859,861,[[900,1,1,859,860],[902,1,1,860,861]]],[34,1,1,861,862,[[905,1,1,861,862]]],[35,1,1,862,863,[[908,1,1,862,863]]],[37,9,9,863,872,[[912,2,2,863,865],[914,3,3,865,868],[916,1,1,868,869],[917,1,1,869,870],[921,1,1,870,871],[924,1,1,871,872]]],[38,1,1,872,873,[[926,1,1,872,873]]]],[60,62,77,80,88,96,104,194,229,309,368,373,443,445,462,465,490,492,501,502,539,559,605,607,612,685,729,789,800,856,859,879,905,973,1128,1135,1145,1155,1157,1216,1226,1234,1275,1285,1286,1297,1312,1339,1351,1359,1426,1470,1540,1558,1568,1579,1586,1598,1615,1634,1658,1662,1690,1702,1720,1732,1756,1771,1772,1779,1784,1803,1813,1893,1907,1953,1959,1962,2010,2015,2019,2113,2153,2382,2433,2439,2460,2461,2478,2485,2486,2489,2490,2525,2567,2809,2818,2823,2831,2833,2834,2847,2848,3445,4019,4040,4065,4139,4142,4199,4222,4224,4325,4381,4394,4409,4462,4681,4682,4699,4741,4905,4907,4931,4945,4994,5013,5039,5043,5120,5126,5139,5140,5142,5153,5159,5160,5163,5181,5210,5236,5274,5275,5278,5285,5405,5447,5448,5472,5644,5647,5675,5683,5685,5695,5705,5741,5749,5755,5757,5775,5819,5845,5849,5873,5874,5878,5897,5900,5903,5932,5934,6016,6193,6448,6457,6473,6474,6507,6555,6569,6570,6572,6691,6735,6868,6900,6905,6913,6940,6958,6969,6993,6998,7007,7046,7049,7088,7113,7114,7160,7175,7176,7183,7186,7190,7194,7231,7252,7283,7289,7296,7303,7333,7334,7340,7426,7429,7477,7511,7520,7546,7598,7611,7613,7646,7664,7665,7673,7704,7733,7737,7739,7760,7763,7769,7774,7790,7793,7802,7804,7809,7819,7827,7832,7833,7850,7859,7872,7878,7909,7917,7943,7944,7951,7956,7957,7976,8027,8032,8075,8106,8107,8118,8119,8144,8200,8201,8275,8279,8308,8357,8376,8378,8400,8457,8459,8468,8507,8517,8531,8533,8546,8646,8694,8705,8721,8728,8735,8744,8775,8779,8785,8802,8807,8812,8814,8823,8881,8884,9023,9024,9028,9045,9078,9220,9341,9353,9377,9378,9415,9421,9430,9436,9483,9554,9556,9604,9612,9642,9654,9655,9662,9719,9739,9767,9803,9804,10009,10080,10088,10752,10776,10828,10881,10882,10936,11152,11181,11218,11219,11223,11224,11225,11311,11312,11315,11364,11445,11458,11599,11669,11720,11888,11906,11921,12323,12370,12374,12417,12505,12521,12525,12577,12681,12715,12735,12746,12763,12767,12773,12776,12975,12976,12978,13038,13053,13056,13072,13079,13088,13099,13114,13116,13119,13137,13155,13171,13176,13202,13212,13226,13297,13303,13310,13311,13322,13326,13330,13346,13374,13382,13402,13422,13424,13429,13437,13452,13470,13511,13517,13527,13548,13580,13594,13635,13650,13685,13687,13716,13735,13762,13774,13776,13784,13785,13788,13796,13797,13798,13805,13811,13814,13826,13835,13836,13871,13924,13925,13926,13933,13945,13968,14031,14037,14041,14084,14103,14161,14188,14255,14265,14338,14342,14360,14418,14421,14425,14448,14468,14516,14518,14534,14553,14592,14624,14637,14679,14694,14697,14723,14745,14764,14803,14895,14940,14954,14991,15031,15036,15042,15053,15057,15082,15107,15112,15116,15118,15119,15191,15195,15222,15238,15259,15305,15316,15320,15326,15327,15341,15389,15390,15409,15417,15442,15464,15492,15511,15517,15556,15563,15590,15607,15659,15782,15973,15977,16023,16050,16180,16237,16240,16241,16243,16253,16262,16275,16289,16301,16308,16332,16371,16402,16423,16461,16491,16509,16523,16598,16647,16651,16656,16665,16688,16729,16735,16779,16782,16805,16900,17034,17036,17079,17091,17093,17101,17170,17192,17198,17218,17231,17254,17255,17269,17307,17332,17347,17352,17371,17373,17380,17394,17398,17422,17425,17427,17429,17451,17454,17459,17463,17465,17470,17474,17475,17476,17480,17486,17487,17507,17508,17515,17518,17519,17522,17545,17626,17657,17744,17758,17778,17797,17798,17811,17838,17904,17905,18016,18025,18204,18205,18208,18217,18263,18292,18372,18380,18409,18433,18434,18441,18448,18471,18473,18474,18477,18496,18505,18515,18524,18541,18542,18551,18564,18565,18566,18567,18581,18607,18610,18612,18618,18620,18621,18622,18659,18662,18666,18669,18680,18702,18714,18745,18763,18764,18789,18808,18812,18837,18852,18882,18887,18936,18951,18952,18973,18984,18988,19015,19049,19059,19062,19063,19073,19104,19107,19116,19128,19160,19165,19178,19181,19191,19199,19224,19226,19244,19245,19252,19278,19311,19313,19329,19330,19349,19357,19361,19366,19373,19407,19411,19482,19531,19587,19627,19646,19658,19710,19725,19739,19778,19861,19919,19955,19956,19961,19994,19997,20013,20025,20038,20039,20097,20110,20190,20497,20559,20570,20573,20576,20577,20581,20586,20604,20653,20660,20665,20667,20695,20696,20700,20717,20722,20729,20731,20739,20754,20761,20764,20824,20837,20846,20849,20888,20899,20900,20904,20906,20907,20915,20921,20933,20937,20939,20949,20978,20992,20998,21002,21056,21080,21083,21088,21090,21094,21097,21100,21106,21176,21179,21180,21181,21183,21189,21192,21199,21204,21212,21223,21229,21230,21257,21263,21309,21313,21340,21343,21348,21353,21355,21356,21359,21370,21382,21391,21395,21397,21400,21403,21410,21411,21425,21439,21441,21448,21454,21455,21470,21471,21476,21583,21622,21741,21761,21980,22013,22035,22068,22074,22113,22125,22155,22156,22161,22170,22187,22196,22198,22215,22243,22270,22271,22291,22325,22338,22360,22397,22405,22435,22439,22538,22541,22543,22567,22570,22579,22609,22632,22653,22691,22729,22770,22825,22908,22910,22927,22931,22935,22962,22976,23039,23075,23107]]],["+",[116,100,[[0,10,8,0,8,[[3,3,3,0,3],[8,1,1,3,4],[14,2,1,4,5],[29,2,2,5,7],[42,2,1,7,8]]],[1,5,5,8,13,[[52,1,1,8,9],[67,1,1,9,10],[72,1,1,10,11],[81,1,1,11,12],[82,1,1,12,13]]],[2,2,2,13,15,[[93,2,2,13,15]]],[3,5,5,15,20,[[130,2,2,15,17],[132,1,1,17,18],[136,1,1,18,19],[138,1,1,19,20]]],[4,6,6,20,26,[[153,1,1,20,21],[160,1,1,21,22],[170,1,1,22,23],[181,1,1,23,24],[183,2,2,24,26]]],[5,6,5,26,31,[[189,1,1,26,27],[190,1,1,27,28],[200,1,1,28,29],[209,2,1,29,30],[210,1,1,30,31]]],[6,3,3,31,34,[[213,1,1,31,32],[218,1,1,32,33],[231,1,1,33,34]]],[7,2,2,34,36,[[234,2,2,34,36]]],[8,12,9,36,45,[[236,1,1,36,37],[238,1,1,37,38],[252,1,1,38,39],[255,5,3,39,42],[263,4,3,42,45]]],[9,7,5,45,50,[[269,3,1,45,46],[273,1,1,46,47],[280,1,1,47,48],[283,1,1,48,49],[290,1,1,49,50]]],[10,7,6,50,56,[[291,1,1,50,51],[292,4,3,51,54],[298,2,2,54,56]]],[11,1,1,56,57,[[320,1,1,56,57]]],[12,2,2,57,59,[[354,2,2,57,59]]],[13,2,2,59,61,[[372,2,2,59,61]]],[16,2,2,61,63,[[427,1,1,61,62],[429,1,1,62,63]]],[17,3,3,63,66,[[463,1,1,63,64],[472,1,1,64,65],[473,1,1,65,66]]],[18,2,2,66,68,[[512,1,1,66,67],[550,1,1,67,68]]],[19,3,2,68,70,[[644,1,1,68,69],[654,2,1,69,70]]],[22,12,11,70,81,[[683,1,1,70,71],[697,1,1,71,72],[707,3,2,72,74],[716,1,1,74,75],[723,1,1,75,76],[726,1,1,76,77],[734,2,2,77,79],[736,1,1,79,80],[741,1,1,80,81]]],[23,15,10,81,91,[[745,1,1,81,82],[757,2,1,82,83],[760,1,1,83,84],[762,1,1,84,85],[770,2,1,85,86],[773,1,1,86,87],[775,1,1,87,88],[784,2,1,88,89],[786,4,2,89,91]]],[25,3,3,91,94,[[817,1,1,91,92],[821,1,1,92,93],[826,1,1,93,94]]],[26,2,2,94,96,[[851,1,1,94,95],[857,1,1,95,96]]],[27,2,2,96,98,[[863,1,1,96,97],[867,1,1,97,98]]],[32,1,1,98,99,[[895,1,1,98,99]]],[33,1,1,99,100,[[902,1,1,99,100]]]],[80,96,104,229,373,856,859,1297,1586,2015,2153,2460,2485,2818,2823,4139,4142,4199,4325,4381,4931,5139,5405,5695,5749,5755,5897,5934,6193,6473,6507,6569,6735,7113,7175,7176,7231,7283,7646,7733,7739,7769,7943,7944,7951,8106,8200,8376,8457,8694,8744,8779,8812,8814,9024,9028,9739,10881,10882,11312,11315,12735,12763,13527,13785,13797,14418,15042,16900,17192,17744,18025,18204,18205,18409,18581,18618,18763,18764,18789,18882,18952,19278,19357,19407,19587,19646,19725,19955,19994,19997,20764,20899,21097,21761,21980,22125,22170,22609,22729]]],["Know",[12,12,[[0,1,1,0,1,[[28,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[159,1,1,2,3]]],[9,1,1,3,4,[[269,1,1,3,4]]],[10,1,1,4,5,[[312,1,1,4,5]]],[11,1,1,5,6,[[322,1,1,5,6]]],[13,1,1,6,7,[[398,1,1,6,7]]],[17,2,2,7,9,[[446,1,1,7,8],[454,1,1,8,9]]],[18,1,1,9,10,[[577,1,1,9,10]]],[25,1,1,10,11,[[818,1,1,10,11]]],[26,1,1,11,12,[[858,1,1,11,12]]]],[800,5043,5120,8119,9483,9803,11888,13114,13303,15511,20837,22013]]],["Knowest",[10,10,[[6,1,1,0,1,[[225,1,1,0,1]]],[11,2,2,1,3,[[314,2,2,1,3]]],[17,4,4,3,7,[[455,1,1,3,4],[473,2,2,4,6],[474,1,1,6,7]]],[26,1,1,7,8,[[859,1,1,7,8]]],[37,2,2,8,10,[[914,2,2,8,10]]]],[6940,9554,9556,13330,13814,13826,13835,22035,22927,22935]]],["Mark",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9415]]],["Shew",[1,1,[[18,1,1,0,1,[[502,1,1,0,1]]]],[14255]]],["Teach",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13788]]],["Understand",[2,2,[[4,2,2,0,2,[[161,2,2,0,2]]]],[5160,5163]]],["acknowledge",[5,5,[[18,1,1,0,1,[[528,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]],[23,2,2,3,5,[[747,1,1,3,4],[758,1,1,4,5]]]],[14694,16461,18292,19015,19313]]],["acknowledged",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14360]]],["acquaintance",[6,6,[[17,2,2,0,2,[[454,1,1,0,1],[477,1,1,1,2]]],[18,4,4,2,6,[[508,1,1,2,3],[532,1,1,3,4],[565,2,2,4,6]]]],[13310,13933,14342,14745,15316,15326]]],["acquainted",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18714]]],["advise",[1,1,[[9,1,1,0,1,[[290,1,1,0,1]]]],[8705]]],["answer",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13796]]],["appointed",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7774]]],["aware",[2,2,[[21,1,1,0,1,[[676,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]]],[17626,20190]]],["certain",[1,1,[[10,1,1,0,1,[[292,1,1,0,1]]]],[8807]]],["come",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18217]]],["comprehend",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13774]]],["consider",[4,4,[[4,1,1,0,1,[[160,1,1,0,1]]],[6,1,1,1,2,[[228,1,1,1,2]]],[11,1,1,2,3,[[317,1,1,2,3]]],[20,1,1,3,4,[[663,1,1,3,4]]]],[5142,7007,9654,17398]]],["considereth",[2,2,[[19,2,2,0,2,[[655,1,1,0,1],[656,1,1,1,2]]]],[17218,17231]]],["could",[2,2,[[23,2,2,0,2,[[750,1,1,0,1],[752,1,1,1,2]]]],[19104,19165]]],["cunning",[4,4,[[0,1,1,0,1,[[24,1,1,0,1]]],[8,2,2,1,3,[[251,2,2,1,3]]],[26,1,1,3,4,[[850,1,1,3,4]]]],[685,7611,7613,21741]]],["declare",[3,3,[[17,2,2,0,2,[[475,1,1,0,1],[477,1,1,1,2]]],[22,1,1,2,3,[[690,1,1,2,3]]]],[13871,13926,17904]]],["declared",[3,3,[[15,1,1,0,1,[[420,1,1,0,1]]],[17,1,1,1,2,[[461,1,1,1,2]]],[18,1,1,2,3,[[554,1,1,2,3]]]],[12505,13470,15107]]],["discern",[3,3,[[9,1,1,0,1,[[285,1,1,0,1]]],[25,1,1,1,2,[[845,1,1,1,2]]],[31,1,1,2,3,[[892,1,1,2,3]]]],[8546,21622,22579]]],["discerneth",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17463]]],["discovered",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7793]]],["endued",[2,2,[[13,2,2,0,2,[[368,2,2,0,2]]]],[11223,11224]]],["famous",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15053]]],["feel",[2,2,[[17,1,1,0,1,[[455,1,1,0,1]]],[20,1,1,1,2,[[666,1,1,1,2]]]],[13346,17463]]],["felt",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17079]]],["friends",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13311]]],["had",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10752]]],["have",[2,2,[[19,1,1,0,1,[[657,1,1,0,1]]],[22,1,1,1,2,[[734,1,1,1,2]]]],[17254,18764]]],["instructed",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19710]]],["kinsfolks",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9804]]],["knew",[77,76,[[0,9,9,0,9,[[2,1,1,0,1],[7,1,1,1,2],[27,1,1,2,3],[30,1,1,3,4],[37,3,3,4,7],[38,1,1,7,8],[41,1,1,8,9]]],[1,1,1,9,10,[[50,1,1,9,10]]],[3,2,2,10,12,[[138,1,1,10,11],[140,1,1,11,12]]],[4,6,6,12,18,[[160,1,1,12,13],[161,1,1,13,14],[181,1,1,14,15],[184,1,1,15,16],[185,1,1,16,17],[186,1,1,17,18]]],[6,8,8,18,26,[[212,1,1,18,19],[213,1,1,19,20],[221,1,1,20,21],[223,2,2,21,23],[224,1,1,23,24],[229,1,1,24,25],[230,1,1,25,26]]],[8,12,12,26,38,[[237,1,1,26,27],[238,1,1,27,28],[245,1,1,28,29],[249,1,1,29,30],[253,1,1,30,31],[255,2,2,31,33],[257,3,3,33,36],[258,1,1,36,37],[261,1,1,37,38]]],[9,6,6,38,44,[[269,1,1,38,39],[277,2,2,39,41],[281,1,1,41,42],[284,1,1,42,43],[288,1,1,43,44]]],[10,1,1,44,45,[[291,1,1,44,45]]],[11,1,1,45,46,[[316,1,1,45,46]]],[13,1,1,46,47,[[399,1,1,46,47]]],[15,1,1,47,48,[[414,1,1,47,48]]],[16,2,1,48,49,[[426,2,1,48,49]]],[17,3,3,49,52,[[458,1,1,49,50],[464,1,1,50,51],[477,1,1,51,52]]],[18,2,2,52,54,[[512,2,2,52,54]]],[19,1,1,54,55,[[651,1,1,54,55]]],[22,5,5,55,60,[[720,2,2,55,57],[726,2,2,57,59],[733,1,1,59,60]]],[23,7,7,60,67,[[745,1,1,60,61],[746,1,1,61,62],[755,1,1,62,63],[776,1,1,63,64],[785,1,1,64,65],[788,2,2,65,67]]],[25,2,2,67,69,[[811,1,1,67,68],[820,1,1,68,69]]],[26,1,1,69,70,[[860,1,1,69,70]]],[27,2,2,70,72,[[869,1,1,70,71],[872,1,1,71,72]]],[31,2,2,72,74,[[889,1,1,72,73],[892,1,1,73,74]]],[37,2,2,74,76,[[917,1,1,74,75],[921,1,1,75,76]]]],[62,194,789,905,1128,1135,1145,1155,1275,1540,4409,4462,5153,5181,5705,5775,5819,5849,6555,6570,6868,6900,6905,6913,7049,7088,7252,7296,7429,7511,7704,7763,7769,7802,7804,7809,7819,7917,8107,8275,8279,8400,8507,8646,8721,9642,11921,12323,12715,13422,13548,13925,14421,14425,17091,18496,18505,18621,18622,18745,18951,18973,19245,19739,19961,20013,20025,20653,20888,22074,22198,22243,22541,22570,22976,23039]]],["knewest",[5,5,[[4,1,1,0,1,[[160,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[18,1,1,3,4,[[619,1,1,3,4]]],[22,1,1,4,5,[[726,1,1,4,5]]]],[5140,7160,12521,16289,18622]]],["know",[370,359,[[0,20,19,0,19,[[2,2,2,0,2],[3,1,1,2,3],[11,1,1,3,4],[14,1,1,4,5],[17,2,2,5,7],[18,1,1,7,8],[19,2,2,8,10],[21,1,1,10,11],[23,1,1,11,12],[26,1,1,12,13],[28,1,1,13,14],[30,1,1,14,15],[41,2,2,15,17],[43,1,1,17,18],[47,2,1,18,19]]],[1,25,25,19,44,[[53,1,1,19,20],[54,1,1,20,21],[55,1,1,21,22],[56,2,2,22,24],[57,2,2,24,26],[58,3,3,26,29],[59,2,2,29,31],[60,1,1,31,32],[63,2,2,32,34],[65,2,2,34,36],[67,1,1,36,37],[78,1,1,37,38],[80,1,1,38,39],[82,4,4,39,43],[85,1,1,43,44]]],[2,1,1,44,45,[[112,1,1,44,45]]],[3,2,2,45,47,[[132,1,1,45,46],[138,1,1,46,47]]],[4,9,8,47,55,[[155,1,1,47,48],[156,1,1,48,49],[160,2,1,49,50],[163,1,1,50,51],[165,1,1,51,52],[174,1,1,52,53],[181,1,1,53,54],[183,1,1,54,55]]],[5,6,6,55,61,[[188,1,1,55,56],[189,2,2,56,58],[190,1,1,58,59],[208,1,1,59,60],[209,1,1,60,61]]],[6,7,7,61,68,[[213,2,2,61,63],[216,1,1,63,64],[227,1,1,64,65],[228,2,2,65,67],[229,1,1,67,68]]],[7,3,3,68,71,[[234,2,2,68,70],[235,1,1,70,71]]],[8,13,13,71,84,[[241,1,1,71,72],[249,1,1,72,73],[252,2,2,73,75],[255,2,2,75,77],[256,1,1,77,78],[257,1,1,78,79],[258,1,1,79,80],[259,1,1,80,81],[260,2,2,81,83],[264,1,1,83,84]]],[9,3,3,84,87,[[273,1,1,84,85],[285,2,2,85,87]]],[10,10,10,87,97,[[292,1,1,87,88],[293,1,1,88,89],[298,3,3,89,92],[307,1,1,92,93],[308,2,2,93,95],[310,2,2,95,97]]],[11,10,9,97,106,[[314,2,2,97,99],[317,2,2,99,101],[319,1,1,101,102],[321,1,1,102,103],[329,2,1,103,104],[331,2,2,104,106]]],[12,4,4,106,110,[[349,1,1,106,107],[358,1,1,107,108],[365,1,1,108,109],[366,1,1,109,110]]],[13,8,8,110,118,[[368,1,1,110,111],[372,2,2,111,113],[378,1,1,113,114],[379,1,1,114,115],[386,1,1,115,116],[391,1,1,116,117],[398,1,1,117,118]]],[15,1,1,118,119,[[416,1,1,118,119]]],[16,2,2,119,121,[[429,2,2,119,121]]],[17,31,31,121,152,[[440,3,3,121,124],[443,1,1,124,125],[444,4,4,125,129],[445,1,1,129,130],[446,1,1,130,131],[448,3,3,131,134],[450,1,1,134,135],[454,2,2,135,137],[456,2,2,137,139],[457,1,1,139,140],[458,1,1,140,141],[459,2,2,141,143],[465,1,1,143,144],[466,1,1,144,145],[467,1,1,145,146],[469,1,1,146,147],[471,1,1,147,148],[472,2,2,148,150],[473,1,1,150,151],[477,1,1,151,152]]],[18,30,28,152,180,[[481,1,1,152,153],[486,2,2,153,155],[497,1,1,155,156],[513,1,1,156,157],[516,2,1,157,158],[518,1,1,158,159],[523,1,1,159,160],[527,1,1,160,161],[528,1,1,161,162],[533,1,1,162,163],[536,1,1,163,164],[548,1,1,164,165],[550,2,2,165,167],[555,1,1,167,168],[559,1,1,168,169],[560,1,1,169,170],[564,1,1,170,171],[566,1,1,171,172],[578,1,1,172,173],[586,1,1,173,174],[596,2,2,174,176],[612,1,1,176,177],[616,2,1,177,178],[617,1,1,178,179],[620,1,1,179,180]]],[19,8,8,180,188,[[628,1,1,180,181],[631,2,2,181,183],[632,1,1,183,184],[637,1,1,184,185],[649,1,1,185,186],[651,1,1,186,187],[657,1,1,187,188]]],[20,12,9,188,197,[[659,2,1,188,189],[661,2,2,189,191],[665,2,1,191,192],[666,3,3,192,195],[667,2,1,195,196],[669,1,1,196,197]]],[21,1,1,197,198,[[671,1,1,197,198]]],[22,32,30,198,228,[[679,1,1,198,199],[683,1,1,199,200],[685,2,2,200,202],[687,1,1,202,203],[697,1,1,203,204],[715,2,2,204,206],[719,4,4,206,210],[721,2,2,210,212],[722,2,2,212,214],[723,2,2,214,216],[725,3,2,216,218],[726,1,1,218,219],[727,2,2,219,221],[728,2,2,221,223],[729,1,1,223,224],[730,1,1,224,225],[737,3,2,225,227],[738,1,1,227,228]]],[23,30,29,228,257,[[746,2,2,228,230],[749,2,2,230,232],[750,2,2,232,234],[751,1,1,234,235],[752,1,1,235,236],[753,2,2,236,238],[754,2,2,238,240],[755,1,1,240,241],[758,1,1,241,242],[759,1,1,242,243],[760,3,2,243,245],[761,1,1,245,246],[766,1,1,246,247],[768,1,1,247,248],[773,1,1,248,249],[775,1,1,249,250],[780,1,1,250,251],[782,1,1,251,252],[784,1,1,252,253],[788,2,2,253,255],[792,2,2,255,257]]],[25,80,80,257,337,[[803,1,1,257,258],[806,1,1,258,259],[807,4,4,259,263],[808,3,3,263,266],[812,3,3,266,269],[813,3,3,269,272],[814,4,4,272,276],[815,2,2,276,278],[816,1,1,278,279],[817,1,1,279,280],[818,2,2,280,282],[821,6,6,282,288],[822,1,1,288,289],[823,2,2,289,291],[824,1,1,291,292],[825,2,2,292,294],[826,4,4,294,298],[827,1,1,298,299],[829,5,5,299,304],[830,4,4,304,308],[831,4,4,308,312],[833,1,1,312,313],[834,2,2,313,315],[835,2,2,315,317],[836,4,4,317,321],[837,4,4,321,325],[838,4,4,325,329],[839,3,3,329,332],[840,5,5,332,337]]],[26,1,1,337,338,[[860,1,1,337,338]]],[27,8,8,338,346,[[863,1,1,338,339],[866,1,1,339,340],[867,1,1,340,341],[869,1,1,341,342],[870,1,1,342,343],[874,2,2,343,345],[875,1,1,345,346]]],[28,2,2,346,348,[[877,1,1,346,347],[878,1,1,347,348]]],[29,2,2,348,350,[[881,1,1,348,349],[883,1,1,349,350]]],[31,2,2,350,352,[[889,2,2,350,352]]],[32,2,2,352,354,[[896,1,1,352,353],[898,1,1,353,354]]],[37,4,4,354,358,[[912,2,2,354,356],[914,1,1,356,357],[916,1,1,357,358]]],[38,1,1,358,359,[[926,1,1,358,359]]]],[60,77,88,309,368,443,445,462,501,502,559,605,729,800,879,1285,1286,1351,1470,1615,1634,1662,1690,1702,1720,1732,1756,1771,1772,1779,1803,1813,1893,1907,1953,1959,2010,2382,2433,2478,2485,2486,2490,2567,3445,4222,4394,4994,5039,5140,5210,5275,5472,5685,5757,5878,5900,5903,5932,6448,6474,6570,6572,6691,6993,6998,7007,7046,7183,7190,7194,7340,7546,7664,7665,7733,7760,7774,7790,7832,7850,7872,7878,7976,8201,8531,8533,8807,8823,9023,9028,9045,9341,9353,9378,9421,9436,9554,9556,9655,9662,9719,9767,10009,10080,10088,10752,10936,11152,11181,11219,11311,11315,11445,11458,11599,11720,11906,12370,12767,12773,12975,12976,12978,13038,13053,13056,13072,13079,13099,13116,13155,13171,13176,13212,13322,13326,13374,13382,13402,13424,13437,13452,13580,13594,13650,13687,13762,13776,13784,13805,13924,13968,14031,14041,14188,14448,14516,14553,14624,14679,14697,14764,14803,14991,15031,15036,15119,15238,15259,15305,15341,15517,15782,15973,16023,16180,16262,16275,16301,16402,16491,16509,16523,16688,17036,17091,17269,17332,17371,17373,17454,17470,17474,17475,17480,17522,17545,17657,17758,17797,17798,17838,18016,18372,18380,18471,18473,18474,18477,18515,18524,18541,18542,18564,18567,18607,18610,18620,18659,18662,18666,18669,18680,18702,18808,18812,18837,18984,18988,19059,19062,19107,19116,19128,19160,19178,19181,19224,19226,19244,19311,19330,19349,19357,19366,19482,19531,19658,19725,19861,19919,19956,20038,20039,20097,20110,20497,20559,20570,20573,20576,20577,20581,20586,20604,20660,20665,20667,20695,20696,20700,20717,20722,20729,20731,20739,20754,20761,20824,20846,20849,20907,20915,20921,20933,20937,20939,20949,20992,20998,21056,21080,21083,21088,21090,21094,21100,21106,21176,21179,21180,21181,21183,21189,21192,21199,21204,21212,21223,21229,21230,21263,21309,21313,21340,21343,21348,21353,21356,21359,21370,21382,21395,21397,21403,21410,21411,21425,21439,21441,21448,21454,21455,21470,21471,21476,22068,22113,22155,22170,22196,22215,22270,22271,22291,22338,22360,22405,22435,22538,22543,22632,22653,22908,22910,22931,22962,23107]]],["knowest",[41,40,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,1,1,1,2,[[59,1,1,1,2]]],[3,2,2,2,4,[[126,1,1,2,3],[127,1,1,3,4]]],[4,4,4,4,8,[[159,1,1,4,5],[161,1,1,5,6],[172,1,1,6,7],[180,1,1,7,8]]],[9,2,2,8,10,[[267,1,1,8,9],[268,1,1,9,10]]],[10,6,6,10,16,[[291,1,1,10,11],[292,2,2,11,13],[295,2,2,13,15],[298,1,1,15,16]]],[11,1,1,16,17,[[316,1,1,16,17]]],[13,1,1,17,18,[[372,1,1,17,18]]],[17,5,5,18,23,[[450,1,1,18,19],[469,1,1,19,20],[473,2,2,20,22],[474,1,1,22,23]]],[18,4,4,23,27,[[517,1,1,23,24],[546,1,1,24,25],[616,2,2,25,27]]],[19,1,1,27,28,[[654,1,1,27,28]]],[20,4,3,28,31,[[669,4,3,28,31]]],[22,1,1,31,32,[[733,1,1,31,32]]],[23,7,7,32,39,[[749,1,1,32,33],[756,1,1,33,34],[759,2,2,34,36],[761,2,2,36,38],[777,1,1,38,39]]],[25,1,1,39,40,[[838,1,1,39,40]]]],[1426,1784,4019,4040,5126,5159,5447,5644,8027,8075,8735,8775,8785,8881,8884,9024,9604,11312,13212,13716,13798,13811,13836,14534,14940,16241,16243,17170,17515,17518,17519,18745,19073,19252,19329,19330,19361,19373,19778,21400]]],["knoweth",[57,56,[[0,1,1,0,1,[[32,1,1,0,1]]],[2,2,2,1,3,[[94,2,2,1,3]]],[4,2,2,3,5,[[154,1,1,3,4],[186,1,1,4,5]]],[5,1,1,5,6,[[208,1,1,5,6]]],[8,2,2,6,8,[[238,1,1,6,7],[258,1,1,7,8]]],[9,2,2,8,10,[[280,1,1,8,9],[283,1,1,9,10]]],[10,1,1,10,11,[[291,1,1,10,11]]],[16,1,1,11,12,[[429,1,1,11,12]]],[17,9,9,12,21,[[446,1,1,12,13],[447,1,1,13,14],[449,1,1,14,15],[450,1,1,15,16],[453,1,1,16,17],[458,1,1,17,18],[463,2,2,18,20],[470,1,1,20,21]]],[18,12,12,21,33,[[478,1,1,21,22],[514,1,1,22,23],[516,1,1,23,24],[521,1,1,24,25],[551,1,1,25,26],[567,1,1,26,27],[569,1,1,27,28],[571,1,1,28,29],[580,1,1,29,30],[581,1,1,30,31],[615,1,1,31,32],[616,1,1,32,33]]],[19,5,5,33,38,[[634,1,1,33,34],[636,2,2,34,36],[641,1,1,36,37],[651,1,1,37,38]]],[20,10,10,38,48,[[660,1,1,38,39],[661,1,1,39,40],[664,2,2,40,42],[665,1,1,42,43],[666,2,2,43,45],[667,2,2,45,47],[668,1,1,47,48]]],[22,2,2,48,50,[[679,1,1,48,49],[707,1,1,49,50]]],[23,2,2,50,52,[[752,1,1,50,51],[753,1,1,51,52]]],[27,2,1,52,53,[[868,2,1,52,53]]],[28,1,1,53,54,[[877,1,1,53,54]]],[33,1,1,54,55,[[900,1,1,54,55]]],[35,1,1,55,56,[[908,1,1,55,56]]]],[973,2833,2834,4945,5845,6448,7289,7827,8378,8459,8728,12776,13119,13137,13202,13226,13297,13429,13511,13517,13735,13945,14468,14518,14592,15057,15389,15417,15442,15563,15590,16237,16253,16598,16651,16656,16782,17101,17352,17380,17425,17429,17451,17459,17465,17476,17487,17508,17657,18208,19160,19199,22187,22325,22691,22825]]],["knowing",[2,2,[[0,1,1,0,1,[[2,1,1,0,1]]],[10,1,1,1,2,[[292,1,1,1,2]]]],[60,8802]]],["knowledge",[14,14,[[8,1,1,0,1,[[258,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[13,1,1,2,3,[[374,1,1,2,3]]],[15,1,1,3,4,[[422,1,1,3,4]]],[17,1,1,4,5,[[469,1,1,4,5]]],[18,3,3,5,8,[[491,1,1,5,6],[530,1,1,6,7],[621,1,1,7,8]]],[19,2,2,8,10,[[651,1,1,8,9],[655,1,1,9,10]]],[22,2,2,10,12,[[686,1,1,10,11],[710,1,1,11,12]]],[23,2,2,12,14,[[748,1,1,12,13],[755,1,1,13,14]]]],[7833,9078,11364,12577,13685,14084,14723,16308,17093,17198,17811,18263,19049,19244]]],["known",[99,99,[[0,5,5,0,5,[[18,1,1,0,1],[23,1,1,1,2],[40,2,2,2,4],[44,1,1,4,5]]],[1,4,4,5,9,[[51,1,1,5,6],[55,1,1,6,7],[70,1,1,7,8],[82,1,1,8,9]]],[2,2,2,9,11,[[93,1,1,9,10],[94,1,1,10,11]]],[3,4,4,11,15,[[128,1,1,11,12],[147,3,3,12,15]]],[4,11,11,15,26,[[153,2,2,15,17],[163,2,2,17,19],[165,3,3,19,22],[173,1,1,22,23],[180,2,2,23,25],[183,1,1,25,26]]],[6,2,2,26,28,[[226,1,1,26,27],[231,1,1,27,28]]],[7,1,1,28,29,[[234,1,1,28,29]]],[8,2,2,29,31,[[241,1,1,29,30],[263,1,1,30,31]]],[9,1,1,31,32,[[283,1,1,31,32]]],[10,2,2,32,34,[[304,1,1,32,33],[308,1,1,33,34]]],[12,1,1,34,35,[[353,1,1,34,35]]],[15,2,2,35,37,[[416,1,1,35,36],[421,1,1,36,37]]],[16,1,1,37,38,[[427,1,1,37,38]]],[18,25,25,38,63,[[486,1,1,38,39],[495,1,1,39,40],[508,1,1,40,41],[525,1,1,41,42],[544,1,1,42,43],[546,1,1,43,44],[553,1,1,44,45],[554,1,1,45,46],[555,2,2,46,48],[556,2,2,48,50],[565,1,1,50,51],[566,1,1,51,52],[568,1,1,52,53],[572,1,1,53,54],[575,1,1,54,55],[580,1,1,55,56],[582,1,1,56,57],[583,1,1,57,58],[596,2,2,58,60],[616,1,1,60,61],[622,1,1,61,62],[624,1,1,62,63]]],[19,6,6,63,69,[[628,1,1,63,64],[637,1,1,64,65],[639,1,1,65,66],[641,1,1,66,67],[649,1,1,67,68],[658,1,1,68,69]]],[20,2,2,69,71,[[664,2,2,69,71]]],[22,11,11,71,82,[[690,1,1,71,72],[697,1,1,72,73],[718,2,2,73,75],[720,1,1,75,76],[722,1,1,76,77],[723,2,2,77,79],[739,1,1,79,80],[742,1,1,80,81],[744,1,1,81,82]]],[23,5,5,82,87,[[748,1,1,82,83],[749,1,1,83,84],[753,1,1,84,85],[763,1,1,85,86],[772,1,1,86,87]]],[25,7,7,87,94,[[821,2,2,87,89],[833,1,1,89,90],[836,1,1,90,91],[837,1,1,91,92],[839,1,1,92,93],[840,1,1,93,94]]],[27,2,2,94,96,[[866,2,2,94,96]]],[29,1,1,96,97,[[881,1,1,96,97]]],[34,1,1,97,98,[[905,1,1,97,98]]],[37,1,1,98,99,[[924,1,1,98,99]]]],[465,607,1216,1226,1359,1568,1658,2113,2489,2809,2831,4065,4681,4682,4699,4905,4907,5210,5236,5274,5278,5285,5448,5647,5675,5741,6958,7114,7186,7334,7957,8468,9220,9377,10828,12374,12525,12746,14037,14161,14338,14637,14895,14954,15082,15112,15116,15118,15191,15195,15320,15327,15409,15464,15492,15556,15607,15659,15977,16050,16240,16332,16371,16423,16665,16735,16805,17034,17307,17422,17427,17905,18025,18441,18448,18496,18551,18565,18566,18852,18887,18936,19049,19063,19191,19411,19627,20900,20904,21257,21355,21391,21448,21455,22156,22161,22397,22770,23075]]],["make",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21455]]],["mark",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9430]]],["perceive",[6,6,[[4,1,1,0,1,[[181,1,1,0,1]]],[5,1,1,1,2,[[208,1,1,1,2]]],[8,1,1,2,3,[[247,1,1,2,3]]],[9,1,1,3,4,[[285,1,1,3,4]]],[11,1,1,4,5,[[316,1,1,4,5]]],[22,1,1,5,6,[[684,1,1,5,6]]]],[5683,6457,7477,8517,9612,17778]]],["perceived",[10,10,[[0,2,2,0,2,[[18,2,2,0,2]]],[8,1,1,2,3,[[263,1,1,2,3]]],[9,2,2,3,5,[[271,1,1,3,4],[280,1,1,4,5]]],[12,1,1,5,6,[[351,1,1,5,6]]],[15,2,2,6,8,[[418,1,1,6,7],[425,1,1,7,8]]],[20,2,2,8,10,[[659,1,1,8,9],[660,1,1,9,10]]]],[490,492,7956,8144,8357,10776,12417,12681,17332,17347]]],["perceivest",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16779]]],["prognosticators",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18612]]],["regardeth",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16729]]],["respect",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1579]]],["shew",[10,10,[[1,2,2,0,2,[[67,1,1,0,1],[82,1,1,1,2]]],[8,3,3,2,5,[[245,1,1,2,3],[249,1,1,3,4],[251,1,1,4,5]]],[17,1,1,5,6,[[445,1,1,5,6]]],[18,2,2,6,8,[[493,1,1,6,7],[502,1,1,7,8]]],[25,2,2,8,10,[[823,1,1,8,9],[844,1,1,9,10]]]],[2019,2486,7426,7520,7598,13088,14103,14265,20978,21583]]],["shewed",[4,4,[[0,1,1,0,1,[[40,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]],[25,2,2,2,4,[[821,1,1,2,3],[823,1,1,3,4]]]],[1234,18434,20906,21002]]],["skilful",[2,2,[[13,1,1,0,1,[[368,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[11225,22439]]],["skill",[4,4,[[10,1,1,0,1,[[295,1,1,0,1]]],[13,2,2,1,3,[[368,2,2,1,3]]],[20,1,1,3,4,[[667,1,1,3,4]]]],[8884,11218,11219,17486]]],["sure",[4,4,[[1,1,1,0,1,[[52,1,1,0,1]]],[3,1,1,1,2,[[148,1,1,1,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[9,1,1,3,4,[[267,1,1,3,4]]]],[1598,4741,7737,8032]]],["taught",[2,2,[[13,1,1,0,1,[[389,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[11669,18433]]],["teach",[4,4,[[4,1,1,0,1,[[156,1,1,0,1]]],[17,1,1,1,2,[[467,1,1,1,2]]],[18,1,1,2,3,[[567,1,1,2,3]]],[19,1,1,3,4,[[636,1,1,3,4]]]],[5013,13635,15390,16647]]],["tell",[7,7,[[0,1,1,0,1,[[42,1,1,0,1]]],[8,2,2,1,3,[[241,1,1,1,2],[252,1,1,2,3]]],[9,1,1,3,4,[[278,1,1,3,4]]],[19,1,1,4,5,[[657,1,1,4,5]]],[20,1,1,5,6,[[668,1,1,5,6]]],[31,1,1,6,7,[[891,1,1,6,7]]]],[1312,7333,7673,8308,17255,17507,22567]]],["to",[1,1,[[10,1,1,0,1,[[292,1,1,0,1]]]],[8814]]],["understand",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4224]]],["understood",[4,4,[[8,2,2,0,2,[[239,1,1,0,1],[261,1,1,1,2]]],[9,1,1,2,3,[[269,1,1,2,3]]],[18,1,1,3,4,[[558,1,1,3,4]]]],[7303,7909,8118,15222]]],["well",[1,1,[[8,1,1,0,1,[[259,1,1,0,1]]]],[7859]]],["will",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17394]]],["wist",[7,7,[[1,2,2,0,2,[[65,1,1,0,1],[83,1,1,1,2]]],[2,2,2,2,4,[[94,2,2,2,4]]],[5,2,2,4,6,[[188,1,1,4,5],[194,1,1,5,6]]],[6,1,1,6,7,[[226,1,1,6,7]]]],[1962,2525,2847,2848,5873,6016,6969]]],["wit",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]]],[612,1558]]],["wot",[5,5,[[0,2,2,0,2,[[20,1,1,0,1],[43,1,1,1,2]]],[1,2,2,2,4,[[81,2,2,2,4]]],[5,1,1,4,5,[[188,1,1,4,5]]]],[539,1339,2439,2461,5874]]],["wotteth",[1,1,[[0,1,1,0,1,[[38,1,1,0,1]]]],[1157]]]]},{"k":"H3046","v":[["*",[48,43,[[14,11,9,0,9,[[406,5,5,0,5],[407,2,2,5,7],[409,4,2,7,9]]],[26,37,34,9,43,[[851,17,14,9,23],[852,1,1,23,24],[853,8,8,24,32],[854,7,7,32,39],[855,2,2,39,41],[856,2,2,41,43]]]],[12122,12123,12124,12125,12126,12142,12144,12197,12198,21763,21766,21767,21773,21775,21779,21780,21781,21783,21784,21786,21787,21788,21803,21825,21843,21844,21846,21854,21855,21862,21863,21869,21882,21889,21890,21891,21895,21896,21897,21915,21920,21949,21952]]],["+",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21773,21775]]],["Know",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21920]]],["certified",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12124]]],["certify",[3,3,[[14,3,3,0,3,[[406,1,1,0,1],[407,1,1,1,2],[409,1,1,2,3]]]],[12126,12144,12197]]],["knew",[2,2,[[26,2,2,0,2,[[854,1,1,0,1],[855,1,1,1,2]]]],[21895,21915]]],["knewest",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21896]]],["know",[14,13,[[14,3,2,0,2,[[406,1,1,0,1],[409,2,1,1,2]]],[26,11,11,2,13,[[851,4,4,2,6],[853,4,4,6,10],[854,1,1,10,11],[856,2,2,11,13]]]],[12125,12198,21766,21767,21779,21788,21846,21854,21862,21869,21897,21949,21952]]],["knoweth",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21780]]],["known",[22,21,[[14,3,3,0,3,[[406,2,2,0,2],[407,1,1,2,3]]],[26,19,18,3,21,[[851,10,9,3,12],[852,1,1,12,13],[853,4,4,13,17],[854,4,4,17,21]]]],[12122,12123,12142,21763,21767,21781,21783,21784,21786,21787,21788,21803,21825,21843,21844,21855,21863,21882,21889,21890,21891]]],["teach",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12198]]]]},{"k":"H3047","v":[["Jada",[2,2,[[12,2,2,0,2,[[339,2,2,0,2]]]],[10334,10338]]]]},{"k":"H3048","v":[["Jedaiah",[11,11,[[12,2,2,0,2,[[346,1,1,0,1],[361,1,1,1,2]]],[14,1,1,2,3,[[404,1,1,2,3]]],[15,6,6,3,9,[[419,1,1,3,4],[423,1,1,4,5],[424,4,4,5,9]]],[37,2,2,9,11,[[916,2,2,9,11]]]],[10625,11022,12063,12459,12598,12630,12631,12643,12645,22957,22961]]]]},{"k":"H3049","v":[["*",[11,11,[[2,3,3,0,3,[[108,1,1,0,1],[109,2,2,1,3]]],[4,1,1,3,4,[[170,1,1,3,4]]],[8,2,2,4,6,[[263,2,2,4,6]]],[11,2,2,6,8,[[333,1,1,6,7],[335,1,1,7,8]]],[13,1,1,8,9,[[399,1,1,8,9]]],[22,2,2,9,11,[[686,1,1,9,10],[697,1,1,10,11]]]],[3312,3324,3345,5395,7945,7951,10125,10189,11914,17826,18007]]],["wizard",[2,2,[[2,1,1,0,1,[[109,1,1,0,1]]],[4,1,1,1,2,[[170,1,1,1,2]]]],[3345,5395]]],["wizards",[9,9,[[2,2,2,0,2,[[108,1,1,0,1],[109,1,1,1,2]]],[8,2,2,2,4,[[263,2,2,2,4]]],[11,2,2,4,6,[[333,1,1,4,5],[335,1,1,5,6]]],[13,1,1,6,7,[[399,1,1,6,7]]],[22,2,2,7,9,[[686,1,1,7,8],[697,1,1,8,9]]]],[3312,3324,7945,7951,10125,10189,11914,17826,18007]]]]},{"k":"H3050","v":[["*",[49,45,[[1,2,2,0,2,[[64,1,1,0,1],[66,1,1,1,2]]],[18,43,40,2,42,[[545,2,2,2,4],[554,1,1,4,5],[566,1,1,5,6],[571,2,2,6,8],[579,1,1,8,9],[581,1,1,9,10],[582,1,1,10,11],[583,2,2,11,13],[588,1,1,13,14],[589,1,1,14,15],[590,2,2,15,17],[592,3,2,17,19],[593,1,1,19,20],[594,1,1,20,21],[595,6,5,21,26],[599,1,1,26,27],[607,1,1,27,28],[612,4,4,28,32],[623,2,2,32,34],[624,2,2,34,36],[625,2,2,36,38],[626,2,2,38,40],[627,3,2,40,42]]],[22,4,3,42,45,[[690,1,1,42,43],[704,1,1,43,44],[716,2,1,44,45]]]],[1922,1999,14904,14918,15104,15334,15438,15443,15539,15606,15651,15652,15699,15794,15804,15814,15822,15847,15848,15867,15869,15874,15883,15886,15887,15888,16093,16143,16176,16178,16179,16196,16342,16351,16352,16371,16372,16385,16386,16394,16395,16400,17902,18134,18401]]],["JAH",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14904]]],["LORD",[48,44,[[1,2,2,0,2,[[64,1,1,0,1],[66,1,1,1,2]]],[18,42,39,2,41,[[545,1,1,2,3],[554,1,1,3,4],[566,1,1,4,5],[571,2,2,5,7],[579,1,1,7,8],[581,1,1,8,9],[582,1,1,9,10],[583,2,2,10,12],[588,1,1,12,13],[589,1,1,13,14],[590,2,2,14,16],[592,3,2,16,18],[593,1,1,18,19],[594,1,1,19,20],[595,6,5,20,25],[599,1,1,25,26],[607,1,1,26,27],[612,4,4,27,31],[623,2,2,31,33],[624,2,2,33,35],[625,2,2,35,37],[626,2,2,37,39],[627,3,2,39,41]]],[22,4,3,41,44,[[690,1,1,41,42],[704,1,1,42,43],[716,2,1,43,44]]]],[1922,1999,14918,15104,15334,15438,15443,15539,15606,15651,15652,15699,15794,15804,15814,15822,15847,15848,15867,15869,15874,15883,15886,15887,15888,16093,16143,16176,16178,16179,16196,16342,16351,16352,16371,16372,16385,16386,16394,16395,16400,17902,18134,18401]]]]},{"k":"H3051","v":[["*",[34,30,[[0,8,8,0,8,[[10,3,3,0,3],[28,1,1,3,4],[29,1,1,4,5],[37,1,1,5,6],[46,2,2,6,8]]],[1,1,1,8,9,[[50,1,1,8,9]]],[4,2,2,9,11,[[153,1,1,9,10],[184,1,1,10,11]]],[5,1,1,11,12,[[204,1,1,11,12]]],[6,2,2,12,14,[[211,1,1,12,13],[230,1,1,13,14]]],[7,1,1,14,15,[[234,1,1,14,15]]],[8,1,1,15,16,[[249,1,1,15,16]]],[9,2,2,16,18,[[277,1,1,16,17],[282,1,1,17,18]]],[12,3,2,18,20,[[353,3,2,18,20]]],[17,1,1,20,21,[[441,1,1,20,21]]],[18,8,6,21,27,[[506,3,2,21,23],[537,1,1,23,24],[573,3,2,24,26],[585,1,1,26,27]]],[19,2,1,27,28,[[657,2,1,27,28]]],[27,1,1,28,29,[[865,1,1,28,29]]],[37,1,1,29,30,[[921,1,1,29,30]]]],[269,270,273,816,831,1135,1435,1436,1542,4905,5761,6297,6524,7061,7187,7549,8274,8446,10848,10849,13000,14309,14310,14818,15472,15473,15754,17266,22151,23040]]],["Bring",[2,2,[[7,1,1,0,1,[[234,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]]],[7187,13000]]],["Come",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1542]]],["Give",[18,18,[[0,4,4,0,4,[[28,1,1,0,1],[29,1,1,1,2],[46,2,2,2,4]]],[5,1,1,4,5,[[204,1,1,4,5]]],[6,1,1,5,6,[[211,1,1,5,6]]],[8,1,1,6,7,[[249,1,1,6,7]]],[9,1,1,7,8,[[282,1,1,7,8]]],[12,2,2,8,10,[[353,2,2,8,10]]],[18,6,6,10,16,[[506,2,2,10,12],[537,1,1,12,13],[573,2,2,13,15],[585,1,1,15,16]]],[19,1,1,16,17,[[657,1,1,16,17]]],[27,1,1,17,18,[[865,1,1,17,18]]]],[816,831,1435,1436,6297,6524,7549,8446,10848,10849,14309,14310,14818,15472,15473,15754,17266,22151]]],["Set",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8274]]],["Take",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4905]]],["ascribe",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5761]]],["give",[6,6,[[6,1,1,0,1,[[230,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[18,2,2,2,4,[[506,1,1,2,3],[573,1,1,3,4]]],[19,1,1,4,5,[[657,1,1,4,5]]],[37,1,1,5,6,[[921,1,1,5,6]]]],[7061,10848,14309,15472,17266,23040]]],["to",[4,4,[[0,4,4,0,4,[[10,3,3,0,3],[37,1,1,3,4]]]],[269,270,273,1135]]]]},{"k":"H3052","v":[["*",[28,28,[[14,8,8,0,8,[[406,1,1,0,1],[407,3,3,1,4],[408,3,3,4,7],[409,1,1,7,8]]],[26,20,20,8,28,[[851,5,5,8,13],[852,1,1,13,14],[853,1,1,14,15],[854,4,4,15,19],[855,1,1,19,20],[856,8,8,20,28]]]],[12130,12146,12148,12150,12155,12159,12160,12192,21779,21781,21795,21796,21806,21835,21853,21891,21892,21893,21902,21907,21937,21939,21944,21945,21947,21955,21958,21960]]],["+",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21945]]],["delivered",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12148]]],["gave",[4,4,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,3,3,1,4,[[851,1,1,1,2],[854,2,2,2,4]]]],[12146,21806,21892,21893]]],["give",[2,2,[[26,2,2,0,2,[[854,1,1,0,1],[855,1,1,1,2]]]],[21891,21907]]],["given",[16,16,[[14,4,4,0,4,[[408,3,3,0,3],[409,1,1,3,4]]],[26,12,12,4,16,[[851,3,3,4,7],[853,1,1,7,8],[854,1,1,8,9],[856,7,7,9,16]]]],[12155,12159,12160,12192,21781,21795,21796,21853,21902,21937,21939,21944,21947,21955,21958,21960]]],["giveth",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21779]]],["laid",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12150]]],["paid",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12130]]],["yielded",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21835]]]]},{"k":"H3053","v":[["burden",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14754]]]]},{"k":"H3054","v":[["Jews",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12834]]]]},{"k":"H3055","v":[["Jehud",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6366]]]]},{"k":"H3056","v":[["Jahdai",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10353]]]]},{"k":"H3057","v":[["Jehudijah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10403]]]]},{"k":"H3058","v":[["Jehu",[58,54,[[10,6,5,0,5,[[306,3,3,0,3],[309,3,2,3,5]]],[11,41,39,5,44,[[321,18,17,5,22],[322,19,18,22,40],[324,1,1,40,41],[325,1,1,41,42],[326,1,1,42,43],[327,1,1,43,44]]],[12,4,3,44,47,[[339,2,1,44,45],[341,1,1,45,46],[349,1,1,46,47]]],[13,6,6,47,53,[[385,1,1,47,48],[386,1,1,48,49],[388,3,3,49,52],[391,1,1,52,53]]],[27,1,1,53,54,[[862,1,1,53,54]]]],[9284,9290,9295,9403,9404,9758,9761,9767,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9780,9783,9786,9787,9794,9798,9804,9806,9811,9812,9813,9814,9816,9817,9818,9821,9822,9823,9824,9827,9828,9829,9851,9872,9904,9937,10344,10420,10723,11578,11621,11651,11652,11653,11721,22098]]]]},{"k":"H3059","v":[["Jehoahaz",[23,22,[[11,16,15,0,15,[[322,1,1,0,1],[325,9,8,1,9],[326,3,3,9,12],[335,3,3,12,15]]],[13,7,7,15,22,[[387,1,1,15,16],[391,3,3,16,19],[402,3,3,19,22]]]],[9828,9872,9875,9878,9879,9880,9881,9893,9896,9897,9904,9913,10195,10196,10199,11641,11721,11727,11729,11994,11995,11997]]]]},{"k":"H3060","v":[["Jehoash",[17,16,[[11,17,16,0,16,[[323,1,1,0,1],[324,6,6,1,7],[325,2,2,7,9],[326,8,7,9,16]]]],[9850,9851,9852,9854,9856,9857,9868,9881,9896,9904,9905,9907,9909,9911,9912,9913]]]]},{"k":"H3061","v":[["*",[7,6,[[14,3,3,0,3,[[407,2,2,0,2],[409,1,1,2,3]]],[26,4,3,3,6,[[851,1,1,3,4],[854,2,1,4,5],[855,1,1,5,6]]]],[12135,12142,12187,21783,21887,21918]]],["Jewry",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21887]]],["Judah",[5,5,[[14,2,2,0,2,[[407,1,1,0,1],[409,1,1,1,2]]],[26,3,3,2,5,[[851,1,1,2,3],[854,1,1,3,4],[855,1,1,4,5]]]],[12135,12187,21783,21887,21918]]],["Judea",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12142]]]]},{"k":"H3062","v":[["*",[10,9,[[14,8,7,0,7,[[406,2,2,0,2],[407,2,2,2,4],[408,4,3,4,7]]],[26,2,2,7,9,[[852,2,2,7,9]]]],[12122,12133,12135,12139,12158,12159,12165,21815,21819]]],["+",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21815]]],["Jews",[9,8,[[14,8,7,0,7,[[406,2,2,0,2],[407,2,2,2,4],[408,4,3,4,7]]],[26,1,1,7,8,[[852,1,1,7,8]]]],[12122,12133,12135,12139,12158,12159,12165,21819]]]]},{"k":"H3063","v":[["*",[819,754,[[0,28,26,0,26,[[28,1,1,0,1],[34,1,1,1,2],[36,1,1,2,3],[37,15,13,3,16],[42,2,2,16,18],[43,3,3,18,21],[45,2,2,21,23],[48,3,3,23,26]]],[1,4,4,26,30,[[50,1,1,26,27],[80,1,1,27,28],[84,1,1,28,29],[87,1,1,29,30]]],[3,13,12,30,42,[[117,3,3,30,33],[118,3,2,33,35],[123,1,1,35,36],[126,1,1,36,37],[129,1,1,37,38],[142,3,3,38,41],[150,1,1,41,42]]],[4,4,3,42,45,[[179,1,1,42,43],[185,2,1,43,44],[186,1,1,44,45]]],[5,24,22,45,67,[[193,4,4,45,49],[197,1,1,49,50],[200,1,1,50,51],[201,7,6,51,57],[204,3,3,57,60],[205,4,3,60,63],[206,1,1,63,64],[207,3,3,64,67]]],[6,25,22,67,89,[[211,11,10,67,77],[220,1,1,77,78],[225,3,3,78,81],[227,4,3,81,84],[228,1,1,84,85],[229,4,3,85,88],[230,1,1,88,89]]],[7,4,4,89,93,[[232,3,3,89,92],[235,1,1,92,93]]],[8,13,13,93,106,[[246,1,1,93,94],[250,1,1,94,95],[252,2,2,95,97],[253,1,1,97,98],[257,1,1,98,99],[258,2,2,99,101],[262,2,2,101,103],[265,3,3,103,106]]],[9,30,27,106,133,[[267,1,1,106,107],[268,6,5,107,112],[269,2,2,112,114],[271,2,1,114,115],[272,1,1,115,116],[277,1,1,116,117],[278,1,1,117,118],[285,9,8,118,126],[286,3,3,126,129],[287,1,1,129,130],[290,3,3,130,133]]],[10,42,39,133,172,[[291,2,2,133,135],[292,1,1,135,136],[294,2,2,136,138],[302,8,6,138,144],[303,4,4,144,148],[304,3,3,148,151],[305,10,9,151,160],[306,5,5,160,165],[309,1,1,165,166],[312,6,6,166,172]]],[11,95,88,172,260,[[313,1,1,172,173],[315,4,4,173,177],[320,8,7,177,184],[321,4,4,184,188],[322,1,1,188,189],[324,3,2,189,191],[325,3,3,191,194],[326,14,13,194,207],[327,10,10,207,217],[328,2,2,217,219],[329,4,4,219,223],[330,7,6,223,229],[331,2,2,229,231],[332,1,1,231,232],[333,6,5,232,237],[334,3,3,237,240],[335,13,12,240,252],[336,5,5,252,257],[337,4,3,257,260]]],[12,25,23,260,283,[[339,5,4,260,264],[341,4,4,264,268],[342,2,2,268,270],[343,4,4,270,274],[346,3,3,274,277],[349,2,2,277,279],[350,1,1,279,280],[358,1,1,280,281],[364,1,1,281,282],[365,2,1,282,283]]],[13,161,145,283,428,[[368,1,1,283,284],[375,1,1,284,285],[376,1,1,285,286],[377,9,8,286,294],[378,3,3,294,297],[379,8,6,297,303],[380,6,6,303,309],[381,4,4,309,313],[382,5,4,313,317],[383,12,10,317,327],[384,3,3,327,330],[385,3,3,330,333],[386,14,13,333,346],[387,8,7,346,353],[388,4,4,353,357],[389,3,2,357,359],[390,6,6,359,365],[391,15,13,365,378],[392,2,2,378,380],[393,2,2,380,382],[394,9,8,382,390],[395,2,2,390,392],[396,6,5,392,397],[397,5,3,397,400],[398,9,8,400,408],[399,3,3,408,411],[400,9,9,411,420],[401,4,4,420,424],[402,4,4,424,428]]],[14,13,13,428,441,[[403,4,4,428,432],[404,1,1,432,433],[405,1,1,433,434],[406,3,3,434,437],[411,1,1,437,438],[412,3,3,438,441]]],[15,28,27,441,468,[[413,1,1,441,442],[414,2,2,442,444],[416,2,2,444,446],[417,1,1,446,447],[418,3,3,447,450],[419,1,1,450,451],[423,8,7,451,458],[424,6,6,458,464],[425,4,4,464,468]]],[16,1,1,468,469,[[427,1,1,468,469]]],[18,9,9,469,478,[[525,1,1,469,470],[537,1,1,470,471],[545,1,1,471,472],[546,1,1,472,473],[553,1,1,473,474],[555,1,1,474,475],[574,1,1,475,476],[585,1,1,476,477],[591,1,1,477,478]]],[19,1,1,478,479,[[652,1,1,478,479]]],[22,29,26,479,505,[[679,2,1,479,480],[680,1,1,480,481],[681,2,2,481,483],[683,2,2,483,485],[685,3,3,485,488],[686,1,1,488,489],[687,1,1,489,490],[689,4,2,490,492],[697,1,1,492,493],[700,2,2,493,495],[704,1,1,495,496],[714,2,2,496,498],[715,2,2,498,500],[716,1,1,500,501],[718,1,1,501,502],[722,1,1,502,503],[726,1,1,503,504],[743,1,1,504,505]]],[23,183,165,505,670,[[745,5,4,505,509],[746,1,1,509,510],[747,5,5,510,515],[748,4,4,515,519],[749,2,2,519,521],[751,4,4,521,525],[752,1,1,525,526],[753,2,2,526,528],[754,1,1,528,529],[755,7,7,529,536],[756,1,1,536,537],[757,3,3,537,540],[758,2,2,540,542],[759,1,1,542,543],[761,6,5,543,548],[762,1,1,548,549],[763,4,4,549,553],[764,2,2,553,555],[765,2,2,555,557],[766,7,7,557,564],[767,1,1,564,565],[768,4,3,565,568],[769,5,4,568,572],[770,7,5,572,577],[771,7,6,577,583],[772,3,2,583,585],[773,3,3,585,588],[774,2,2,588,590],[775,4,4,590,594],[776,9,8,594,602],[777,6,6,602,608],[778,8,7,608,615],[779,3,3,615,618],[780,11,10,618,628],[781,2,2,628,630],[782,1,1,630,631],[783,4,4,631,635],[784,6,5,635,640],[786,2,2,640,642],[787,3,2,642,644],[788,18,14,644,658],[789,1,1,658,659],[790,1,1,659,660],[793,1,1,660,661],[794,3,3,661,664],[795,2,2,664,666],[796,5,4,666,670]]],[24,5,5,670,675,[[797,2,2,670,672],[798,2,2,672,674],[801,1,1,674,675]]],[25,15,15,675,690,[[805,1,1,675,676],[809,2,2,676,678],[810,1,1,678,679],[822,1,1,679,680],[826,3,3,680,683],[828,1,1,683,684],[838,2,2,684,686],[849,4,4,686,690]]],[26,4,4,690,694,[[850,3,3,690,693],[858,1,1,693,694]]],[27,15,15,694,709,[[862,3,3,694,697],[865,1,1,697,698],[866,5,5,698,703],[867,2,2,703,705],[869,1,1,705,706],[871,1,1,706,707],[872,1,1,707,708],[873,1,1,708,709]]],[28,6,6,709,715,[[878,6,6,709,715]]],[29,4,4,715,719,[[879,1,1,715,716],[880,2,2,716,718],[885,1,1,718,719]]],[30,1,1,719,720,[[888,1,1,719,720]]],[32,4,4,720,724,[[893,3,3,720,723],[897,1,1,723,724]]],[33,1,1,724,725,[[900,1,1,724,725]]],[35,3,3,725,728,[[906,2,2,725,727],[907,1,1,727,728]]],[36,4,4,728,732,[[909,2,2,728,730],[910,2,2,730,732]]],[37,22,20,732,752,[[911,4,3,732,735],[912,1,1,735,736],[918,3,3,736,739],[919,2,2,739,741],[920,2,2,741,743],[921,1,1,743,744],[922,6,5,744,749],[924,3,3,749,752]]],[38,3,2,752,754,[[926,2,1,752,753],[927,1,1,753,754]]]],[830,1034,1109,1120,1121,1125,1126,1127,1130,1131,1134,1139,1141,1142,1143,1145,1293,1298,1338,1340,1342,1398,1414,1481,1482,1483,1534,2422,2561,2655,3611,3630,3631,3661,3667,3862,4002,4081,4508,4509,4511,4835,5597,5817,5841,5977,5992,5993,5994,6128,6193,6203,6214,6215,6222,6223,6265,6298,6304,6307,6322,6330,6355,6379,6385,6390,6392,6511,6512,6513,6517,6518,6519,6525,6526,6527,6528,6820,6938,6939,6940,6987,6988,6989,7005,7025,7026,7042,7072,7128,7129,7134,7202,7453,7564,7619,7670,7692,7792,7813,7833,7936,7940,7992,7994,8004,8040,8050,8053,8056,8059,8060,8089,8091,8137,8159,8270,8294,8522,8525,8526,8527,8551,8552,8553,8554,8556,8558,8559,8582,8693,8699,8701,8726,8752,8802,8864,8869,9168,9171,9172,9174,9178,9183,9185,9196,9198,9205,9239,9240,9247,9250,9256,9258,9266,9271,9272,9274,9277,9282,9291,9293,9298,9306,9312,9390,9482,9490,9509,9521,9525,9531,9550,9577,9583,9585,9590,9743,9746,9747,9749,9750,9752,9756,9772,9777,9783,9785,9806,9868,9869,9872,9881,9883,9897,9905,9906,9907,9908,9909,9911,9913,9914,9917,9918,9919,9924,9926,9931,9933,9938,9942,9948,9952,9957,9961,9962,9964,9982,9984,9996,10001,10002,10025,10029,10037,10038,10040,10046,10071,10091,10118,10130,10131,10135,10136,10144,10158,10161,10163,10166,10167,10170,10173,10176,10177,10182,10187,10189,10191,10192,10193,10204,10205,10207,10214,10222,10243,10244,10249,10307,10309,10310,10316,10386,10406,10412,10426,10430,10445,10469,10509,10511,10519,10616,10618,10619,10736,10744,10766,10939,11127,11147,11218,11375,11412,11415,11417,11419,11424,11426,11428,11431,11437,11441,11442,11449,11454,11466,11467,11468,11469,11471,11479,11480,11481,11482,11483,11487,11492,11498,11499,11505,11510,11515,11516,11520,11525,11528,11529,11530,11532,11533,11535,11536,11537,11542,11545,11551,11570,11577,11581,11587,11590,11591,11592,11600,11602,11604,11605,11607,11609,11611,11614,11618,11622,11627,11632,11634,11635,11636,11637,11641,11645,11650,11652,11654,11658,11664,11682,11683,11686,11694,11695,11700,11709,11714,11716,11717,11721,11722,11723,11725,11726,11727,11729,11730,11732,11733,11734,11759,11762,11770,11773,11774,11781,11782,11783,11789,11790,11799,11812,11828,11833,11839,11851,11852,11855,11860,11874,11876,11883,11884,11887,11898,11900,11907,11908,11917,11922,11924,11936,11938,11942,11944,11954,11957,11959,11962,11963,11984,11987,11990,11993,11997,12001,12003,12016,12018,12019,12021,12024,12028,12106,12111,12114,12116,12246,12259,12261,12275,12298,12312,12314,12369,12375,12396,12408,12418,12419,12426,12591,12592,12597,12608,12612,12613,12624,12632,12655,12656,12658,12660,12668,12683,12686,12687,12688,12730,14645,14814,14927,14970,15082,15181,15486,15750,15824,17114,17655,17686,17708,17715,17742,17746,17783,17788,17799,17815,17850,17896,17897,18021,18060,18073,18131,18331,18337,18362,18383,18399,18429,18559,18615,18906,18948,18949,18961,18964,18993,19009,19010,19012,19013,19020,19030,19031,19032,19043,19069,19078,19121,19136,19149,19153,19154,19186,19201,19223,19228,19232,19235,19236,19238,19239,19243,19263,19275,19277,19285,19295,19312,19319,19358,19376,19377,19382,19383,19395,19410,19411,19414,19420,19426,19427,19447,19451,19455,19456,19460,19465,19472,19478,19484,19490,19525,19529,19532,19535,19536,19537,19552,19573,19574,19582,19590,19591,19597,19599,19608,19614,19616,19617,19619,19622,19637,19638,19657,19670,19671,19714,19715,19718,19722,19732,19733,19734,19735,19761,19763,19766,19775,19779,19782,19785,19788,19789,19791,19803,19805,19807,19808,19820,19822,19823,19824,19836,19840,19843,19844,19845,19848,19851,19870,19871,19872,19873,19874,19875,19881,19917,19924,19927,19929,19933,19942,19946,19952,19953,19956,19990,19994,20001,20002,20012,20016,20017,20019,20021,20022,20024,20027,20031,20034,20036,20037,20038,20040,20041,20047,20161,20170,20186,20199,20217,20271,20279,20286,20303,20307,20313,20325,20334,20337,20453,20535,20605,20621,20631,20964,21086,21091,21095,21138,21413,21416,21709,21710,21724,21733,21738,21739,21743,21995,22095,22101,22105,22148,22157,22162,22164,22165,22166,22171,22178,22208,22236,22252,22254,22344,22349,22351,22361,22362,22363,22365,22383,22384,22476,22522,22580,22584,22588,22635,22699,22788,22791,22812,22841,22854,22857,22876,22890,22897,22899,22911,22989,22991,22995,23006,23012,23019,23022,23042,23047,23049,23050,23051,23052,23073,23082,23089,23114,23124]]],["+",[26,25,[[0,1,1,0,1,[[48,1,1,0,1]]],[6,8,7,1,8,[[225,1,1,1,2],[227,3,3,2,5],[229,4,3,5,8]]],[7,2,2,8,10,[[232,2,2,8,10]]],[10,2,2,10,12,[[303,2,2,10,12]]],[11,2,2,12,14,[[333,1,1,12,13],[335,1,1,13,14]]],[13,5,5,14,19,[[380,1,1,14,15],[383,1,1,15,16],[390,1,1,16,17],[391,1,1,17,18],[394,1,1,18,19]]],[15,1,1,19,20,[[413,1,1,19,20]]],[18,1,1,20,21,[[555,1,1,20,21]]],[22,2,2,21,23,[[681,1,1,21,22],[743,1,1,22,23]]],[23,1,1,23,24,[[780,1,1,23,24]]],[37,1,1,24,25,[[911,1,1,24,25]]]],[1483,6940,6987,6988,6989,7025,7026,7042,7128,7129,9185,9196,10135,10182,11480,11529,11683,11709,11783,12298,15181,17708,18906,19873,22897]]],["Jews",[1,1,[[23,1,1,0,1,[[784,1,1,0,1]]]],[19956]]],["Judah",[788,729,[[0,25,24,0,24,[[28,1,1,0,1],[34,1,1,1,2],[36,1,1,2,3],[37,13,12,3,15],[42,2,2,15,17],[43,3,3,17,20],[45,2,2,20,22],[48,2,2,22,24]]],[1,4,4,24,28,[[50,1,1,24,25],[80,1,1,25,26],[84,1,1,26,27],[87,1,1,27,28]]],[3,13,12,28,40,[[117,3,3,28,31],[118,3,2,31,33],[123,1,1,33,34],[126,1,1,34,35],[129,1,1,35,36],[142,3,3,36,39],[150,1,1,39,40]]],[4,4,3,40,43,[[179,1,1,40,41],[185,2,1,41,42],[186,1,1,42,43]]],[5,24,22,43,65,[[193,4,4,43,47],[197,1,1,47,48],[200,1,1,48,49],[201,7,6,49,55],[204,3,3,55,58],[205,4,3,58,61],[206,1,1,61,62],[207,3,3,62,65]]],[6,17,16,65,81,[[211,11,10,65,75],[220,1,1,75,76],[225,2,2,76,78],[227,1,1,78,79],[228,1,1,79,80],[230,1,1,80,81]]],[7,2,2,81,83,[[232,1,1,81,82],[235,1,1,82,83]]],[8,13,13,83,96,[[246,1,1,83,84],[250,1,1,84,85],[252,2,2,85,87],[253,1,1,87,88],[257,1,1,88,89],[258,2,2,89,91],[262,2,2,91,93],[265,3,3,93,96]]],[9,30,27,96,123,[[267,1,1,96,97],[268,6,5,97,102],[269,2,2,102,104],[271,2,1,104,105],[272,1,1,105,106],[277,1,1,106,107],[278,1,1,107,108],[285,9,8,108,116],[286,3,3,116,119],[287,1,1,119,120],[290,3,3,120,123]]],[10,40,37,123,160,[[291,2,2,123,125],[292,1,1,125,126],[294,2,2,126,128],[302,8,6,128,134],[303,2,2,134,136],[304,3,3,136,139],[305,10,9,139,148],[306,5,5,148,153],[309,1,1,153,154],[312,6,6,154,160]]],[11,93,86,160,246,[[313,1,1,160,161],[315,4,4,161,165],[320,8,7,165,172],[321,4,4,172,176],[322,1,1,176,177],[324,3,2,177,179],[325,3,3,179,182],[326,14,13,182,195],[327,10,10,195,205],[328,2,2,205,207],[329,4,4,207,211],[330,7,6,211,217],[331,2,2,217,219],[332,1,1,219,220],[333,5,4,220,224],[334,3,3,224,227],[335,12,11,227,238],[336,5,5,238,243],[337,4,3,243,246]]],[12,25,23,246,269,[[339,5,4,246,250],[341,4,4,250,254],[342,2,2,254,256],[343,4,4,256,260],[346,3,3,260,263],[349,2,2,263,265],[350,1,1,265,266],[358,1,1,266,267],[364,1,1,267,268],[365,2,1,268,269]]],[13,156,142,269,411,[[368,1,1,269,270],[375,1,1,270,271],[376,1,1,271,272],[377,9,8,272,280],[378,3,3,280,283],[379,8,6,283,289],[380,5,5,289,294],[381,4,4,294,298],[382,5,4,298,302],[383,11,9,302,311],[384,3,3,311,314],[385,3,3,314,317],[386,14,13,317,330],[387,8,7,330,337],[388,4,4,337,341],[389,3,2,341,343],[390,5,5,343,348],[391,14,13,348,361],[392,2,2,361,363],[393,2,2,363,365],[394,8,8,365,373],[395,2,2,373,375],[396,6,5,375,380],[397,5,3,380,383],[398,9,8,383,391],[399,3,3,391,394],[400,9,9,394,403],[401,4,4,403,407],[402,4,4,407,411]]],[14,13,13,411,424,[[403,4,4,411,415],[404,1,1,415,416],[405,1,1,416,417],[406,3,3,417,420],[411,1,1,420,421],[412,3,3,421,424]]],[15,27,26,424,450,[[414,2,2,424,426],[416,2,2,426,428],[417,1,1,428,429],[418,3,3,429,432],[419,1,1,432,433],[423,8,7,433,440],[424,6,6,440,446],[425,4,4,446,450]]],[16,1,1,450,451,[[427,1,1,450,451]]],[18,8,8,451,459,[[525,1,1,451,452],[537,1,1,452,453],[545,1,1,453,454],[546,1,1,454,455],[553,1,1,455,456],[574,1,1,456,457],[585,1,1,457,458],[591,1,1,458,459]]],[19,1,1,459,460,[[652,1,1,459,460]]],[22,27,24,460,484,[[679,2,1,460,461],[680,1,1,461,462],[681,1,1,462,463],[683,2,2,463,465],[685,3,3,465,468],[686,1,1,468,469],[687,1,1,469,470],[689,4,2,470,472],[697,1,1,472,473],[700,2,2,473,475],[704,1,1,475,476],[714,2,2,476,478],[715,2,2,478,480],[716,1,1,480,481],[718,1,1,481,482],[722,1,1,482,483],[726,1,1,483,484]]],[23,179,162,484,646,[[745,5,4,484,488],[746,1,1,488,489],[747,5,5,489,494],[748,4,4,494,498],[749,2,2,498,500],[751,4,4,500,504],[752,1,1,504,505],[753,2,2,505,507],[754,1,1,507,508],[755,7,7,508,515],[756,1,1,515,516],[757,3,3,516,519],[758,2,2,519,521],[759,1,1,521,522],[761,6,5,522,527],[762,1,1,527,528],[763,4,4,528,532],[764,2,2,532,534],[765,2,2,534,536],[766,7,7,536,543],[767,1,1,543,544],[768,4,3,544,547],[769,5,4,547,551],[770,7,5,551,556],[771,7,6,556,562],[772,3,2,562,564],[773,3,3,564,567],[774,2,2,567,569],[775,4,4,569,573],[776,8,7,573,580],[777,6,6,580,586],[778,8,7,586,593],[779,3,3,593,596],[780,10,9,596,605],[781,2,2,605,607],[783,4,4,607,611],[784,5,5,611,616],[786,2,2,616,618],[787,3,2,618,620],[788,18,14,620,634],[789,1,1,634,635],[790,1,1,635,636],[793,1,1,636,637],[794,3,3,637,640],[795,2,2,640,642],[796,5,4,642,646]]],[24,5,5,646,651,[[797,2,2,646,648],[798,2,2,648,650],[801,1,1,650,651]]],[25,15,15,651,666,[[805,1,1,651,652],[809,2,2,652,654],[810,1,1,654,655],[822,1,1,655,656],[826,3,3,656,659],[828,1,1,659,660],[838,2,2,660,662],[849,4,4,662,666]]],[26,4,4,666,670,[[850,3,3,666,669],[858,1,1,669,670]]],[27,15,15,670,685,[[862,3,3,670,673],[865,1,1,673,674],[866,5,5,674,679],[867,2,2,679,681],[869,1,1,681,682],[871,1,1,682,683],[872,1,1,683,684],[873,1,1,684,685]]],[28,6,6,685,691,[[878,6,6,685,691]]],[29,4,4,691,695,[[879,1,1,691,692],[880,2,2,692,694],[885,1,1,694,695]]],[30,1,1,695,696,[[888,1,1,695,696]]],[32,4,4,696,700,[[893,3,3,696,699],[897,1,1,699,700]]],[33,1,1,700,701,[[900,1,1,700,701]]],[35,3,3,701,704,[[906,2,2,701,703],[907,1,1,703,704]]],[36,4,4,704,708,[[909,2,2,704,706],[910,2,2,706,708]]],[37,21,19,708,727,[[911,3,2,708,710],[912,1,1,710,711],[918,3,3,711,714],[919,2,2,714,716],[920,2,2,716,718],[921,1,1,718,719],[922,6,5,719,724],[924,3,3,724,727]]],[38,3,2,727,729,[[926,2,1,727,728],[927,1,1,728,729]]]],[830,1034,1109,1120,1121,1125,1127,1130,1131,1134,1139,1141,1142,1143,1145,1293,1298,1338,1340,1342,1398,1414,1481,1482,1534,2422,2561,2655,3611,3630,3631,3661,3667,3862,4002,4081,4508,4509,4511,4835,5597,5817,5841,5977,5992,5993,5994,6128,6193,6203,6214,6215,6222,6223,6265,6298,6304,6307,6322,6330,6355,6379,6385,6390,6392,6511,6512,6513,6517,6518,6519,6525,6526,6527,6528,6820,6938,6939,6987,7005,7072,7134,7202,7453,7564,7619,7670,7692,7792,7813,7833,7936,7940,7992,7994,8004,8040,8050,8053,8056,8059,8060,8089,8091,8137,8159,8270,8294,8522,8525,8526,8527,8551,8552,8553,8554,8556,8558,8559,8582,8693,8699,8701,8726,8752,8802,8864,8869,9168,9171,9172,9174,9178,9183,9198,9205,9239,9240,9247,9250,9256,9258,9266,9271,9272,9274,9277,9282,9291,9293,9298,9306,9312,9390,9482,9490,9509,9521,9525,9531,9550,9577,9583,9585,9590,9743,9746,9747,9749,9750,9752,9756,9772,9777,9783,9785,9806,9868,9869,9872,9881,9883,9897,9905,9906,9907,9908,9909,9911,9913,9914,9917,9918,9919,9924,9926,9931,9933,9938,9942,9948,9952,9957,9961,9962,9964,9982,9984,9996,10001,10002,10025,10029,10037,10038,10040,10046,10071,10091,10118,10130,10131,10136,10144,10158,10161,10163,10166,10167,10170,10173,10176,10177,10187,10189,10191,10192,10193,10204,10205,10207,10214,10222,10243,10244,10249,10307,10309,10310,10316,10386,10406,10412,10426,10430,10445,10469,10509,10511,10519,10616,10618,10619,10736,10744,10766,10939,11127,11147,11218,11375,11412,11415,11417,11419,11424,11426,11428,11431,11437,11441,11442,11449,11454,11466,11467,11468,11469,11471,11479,11481,11482,11483,11487,11492,11498,11499,11505,11510,11515,11516,11520,11525,11528,11530,11532,11533,11535,11536,11537,11542,11545,11551,11570,11577,11581,11587,11590,11591,11592,11600,11602,11604,11605,11607,11609,11611,11614,11618,11622,11627,11632,11634,11635,11636,11637,11641,11645,11650,11652,11654,11658,11664,11682,11686,11694,11695,11700,11709,11714,11716,11717,11721,11722,11723,11725,11726,11727,11729,11730,11732,11733,11734,11759,11762,11770,11773,11774,11781,11782,11783,11789,11790,11799,11812,11828,11833,11839,11851,11852,11855,11860,11874,11876,11883,11884,11887,11898,11900,11907,11908,11917,11922,11924,11936,11938,11942,11944,11954,11957,11959,11962,11963,11984,11987,11990,11993,11997,12001,12003,12016,12018,12019,12021,12024,12028,12106,12111,12114,12116,12246,12259,12261,12275,12312,12314,12369,12375,12396,12408,12418,12419,12426,12591,12592,12597,12608,12612,12613,12624,12632,12655,12656,12658,12660,12668,12683,12686,12687,12688,12730,14645,14814,14927,14970,15082,15486,15750,15824,17114,17655,17686,17715,17742,17746,17783,17788,17799,17815,17850,17896,17897,18021,18060,18073,18131,18331,18337,18362,18383,18399,18429,18559,18615,18948,18949,18961,18964,18993,19009,19010,19012,19013,19020,19030,19031,19032,19043,19069,19078,19121,19136,19149,19153,19154,19186,19201,19223,19228,19232,19235,19236,19238,19239,19243,19263,19275,19277,19285,19295,19312,19319,19358,19376,19377,19382,19383,19395,19410,19411,19414,19420,19426,19427,19447,19451,19455,19456,19460,19465,19472,19478,19484,19490,19525,19529,19532,19535,19536,19537,19552,19573,19574,19582,19590,19591,19597,19599,19608,19614,19616,19617,19619,19622,19637,19638,19657,19670,19671,19714,19715,19718,19722,19732,19734,19735,19761,19763,19766,19775,19779,19782,19785,19788,19789,19791,19803,19805,19807,19808,19820,19822,19823,19824,19836,19840,19843,19844,19845,19848,19851,19870,19871,19872,19874,19875,19881,19924,19927,19929,19933,19942,19946,19952,19953,19956,19990,19994,20001,20002,20012,20016,20017,20019,20021,20022,20024,20027,20031,20034,20036,20037,20038,20040,20041,20047,20161,20170,20186,20199,20217,20271,20279,20286,20303,20307,20313,20325,20334,20337,20453,20535,20605,20621,20631,20964,21086,21091,21095,21138,21413,21416,21709,21710,21724,21733,21738,21739,21743,21995,22095,22101,22105,22148,22157,22162,22164,22165,22166,22171,22178,22208,22236,22252,22254,22344,22349,22351,22361,22362,22363,22365,22383,22384,22476,22522,22580,22584,22588,22635,22699,22788,22791,22812,22841,22854,22857,22876,22890,22899,22911,22989,22991,22995,23006,23012,23019,23022,23042,23047,23049,23050,23051,23052,23073,23082,23089,23114,23124]]],["Judah's",[4,4,[[0,2,2,0,2,[[37,2,2,0,2]]],[23,2,2,2,4,[[776,1,1,2,3],[782,1,1,3,4]]]],[1126,1131,19733,19917]]]]},{"k":"H3064","v":[["*",[75,69,[[11,2,2,0,2,[[328,1,1,0,1],[337,1,1,1,2]]],[15,10,10,2,12,[[413,1,1,2,3],[414,1,1,3,4],[416,3,3,4,7],[417,3,3,7,10],[418,1,1,10,11],[425,1,1,11,12]]],[16,52,46,12,58,[[427,1,1,12,13],[428,4,4,13,17],[429,5,5,17,22],[430,1,1,22,23],[431,2,2,23,25],[433,13,10,25,35],[434,24,22,35,57],[435,2,1,57,58]]],[23,10,10,58,68,[[776,1,1,58,59],[778,1,1,59,60],[782,1,1,60,61],[784,2,2,61,63],[785,1,1,63,64],[787,1,1,64,65],[788,1,1,65,66],[796,2,2,66,68]]],[37,1,1,68,69,[[918,1,1,68,69]]]],[9969,10247,12298,12323,12360,12361,12371,12383,12390,12399,12407,12694,12729,12751,12753,12757,12760,12765,12769,12775,12776,12778,12792,12803,12806,12818,12820,12822,12824,12825,12826,12828,12830,12833,12834,12835,12836,12837,12839,12840,12844,12846,12847,12849,12850,12852,12853,12854,12856,12857,12858,12859,12861,12862,12863,12864,12865,12869,19743,19810,19914,19952,19953,19960,20006,20011,20304,20306,22999]]],["Jew",[10,10,[[16,8,8,0,8,[[427,1,1,0,1],[428,1,1,1,2],[430,1,1,2,3],[431,1,1,3,4],[433,1,1,4,5],[434,2,2,5,7],[435,1,1,7,8]]],[23,1,1,8,9,[[778,1,1,8,9]]],[37,1,1,9,10,[[918,1,1,9,10]]]],[12729,12751,12792,12803,12824,12863,12865,12869,19810,22999]]],["Jews",[62,58,[[11,2,2,0,2,[[328,1,1,0,1],[337,1,1,1,2]]],[15,10,10,2,12,[[413,1,1,2,3],[414,1,1,3,4],[416,3,3,4,7],[417,3,3,7,10],[418,1,1,10,11],[425,1,1,11,12]]],[16,42,38,12,50,[[428,2,2,12,14],[429,5,5,14,19],[431,1,1,19,20],[433,11,9,20,29],[434,22,20,29,49],[435,1,1,49,50]]],[23,8,8,50,58,[[776,1,1,50,51],[782,1,1,51,52],[784,2,2,52,54],[785,1,1,54,55],[788,1,1,55,56],[796,2,2,56,58]]]],[9969,10247,12298,12323,12360,12361,12371,12383,12390,12399,12407,12694,12753,12760,12765,12769,12775,12776,12778,12806,12820,12822,12824,12825,12826,12828,12830,12833,12834,12835,12836,12837,12839,12840,12844,12846,12847,12849,12850,12852,12853,12854,12856,12857,12858,12859,12861,12862,12864,12869,19743,19914,19952,19953,19960,20011,20304,20306]]],["Jews'",[2,2,[[16,2,2,0,2,[[428,1,1,0,1],[433,1,1,1,2]]]],[12757,12818]]],["Judah",[1,1,[[23,1,1,0,1,[[787,1,1,0,1]]]],[20006]]]]},{"k":"H3065","v":[["Jehudi",[4,3,[[23,4,3,0,3,[[780,4,3,0,3]]]],[19856,19863,19865]]]]},{"k":"H3066","v":[["*",[6,6,[[11,2,2,0,2,[[330,2,2,0,2]]],[13,1,1,2,3,[[398,1,1,2,3]]],[15,1,1,3,4,[[425,1,1,3,4]]],[22,2,2,4,6,[[714,2,2,4,6]]]],[10050,10052,11893,12695,18341,18343]]],["language",[5,5,[[11,2,2,0,2,[[330,2,2,0,2]]],[15,1,1,2,3,[[425,1,1,2,3]]],[22,2,2,3,5,[[714,2,2,3,5]]]],[10050,10052,12695,18341,18343]]],["speech",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11893]]]]},{"k":"H3067","v":[["Judith",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[726]]]]},{"k":"H3068","v":[["*",[6515,5523,[[0,162,141,0,141,[[1,11,11,0,11],[2,9,8,11,19],[3,10,9,19,28],[4,1,1,28,29],[5,5,5,29,34],[6,3,3,34,37],[7,3,2,37,39],[8,1,1,39,40],[9,2,1,40,41],[10,5,4,41,45],[11,7,5,45,50],[12,6,5,50,55],[13,1,1,55,56],[14,5,5,56,61],[15,8,7,61,68],[16,1,1,68,69],[17,10,9,69,78],[18,7,5,78,83],[19,1,1,83,84],[20,3,2,84,86],[21,4,4,86,90],[23,19,17,90,107],[24,4,3,107,110],[25,7,7,110,117],[26,3,3,117,120],[27,4,3,120,123],[28,4,4,123,127],[29,3,3,127,130],[30,2,2,130,132],[31,1,1,132,133],[37,3,2,133,135],[38,8,5,135,140],[48,1,1,140,141]]],[1,397,341,141,482,[[52,7,6,141,147],[53,17,16,147,163],[54,7,6,163,169],[55,14,13,169,182],[56,14,13,182,195],[57,22,18,195,213],[58,24,18,213,231],[59,21,20,231,251],[60,6,6,251,257],[61,19,17,257,274],[62,15,12,274,286],[63,17,15,286,301],[64,16,11,301,312],[65,22,18,312,330],[66,8,7,330,337],[67,6,5,337,342],[68,18,12,342,354],[69,9,7,354,361],[71,2,2,361,363],[72,3,3,363,366],[73,11,10,366,376],[74,1,1,376,377],[76,1,1,377,378],[77,7,6,378,384],[78,13,10,384,394],[79,13,13,394,407],[80,5,5,407,412],[81,13,12,412,424],[82,8,8,424,432],[83,16,13,432,445],[84,12,10,445,455],[85,4,3,455,458],[87,1,1,458,459],[88,11,11,459,470],[89,14,12,470,482]]],[2,311,281,482,763,[[90,9,9,482,491],[91,11,10,491,501],[92,10,10,501,511],[93,17,15,511,526],[94,8,7,526,533],[95,14,14,533,547],[96,17,13,547,560],[97,16,14,560,574],[98,11,9,574,583],[99,15,12,583,595],[100,3,3,595,598],[101,2,2,598,600],[102,1,1,600,601],[103,11,11,601,612],[104,4,4,612,616],[105,12,11,616,627],[106,9,6,627,633],[107,7,7,633,640],[108,22,22,640,662],[109,5,5,662,667],[110,8,8,667,675],[111,21,19,675,694],[112,36,31,694,725],[113,12,12,725,737],[114,6,6,737,743],[115,6,6,743,749],[116,18,14,749,763]]],[3,396,350,763,1113,[[117,4,4,763,767],[118,3,3,767,770],[119,16,14,770,784],[120,8,7,784,791],[121,12,11,791,802],[122,15,15,802,817],[123,3,3,817,820],[124,13,12,820,832],[125,17,12,832,844],[126,12,10,844,854],[127,20,14,854,868],[128,9,8,868,876],[129,2,2,876,878],[130,23,20,878,898],[131,28,24,898,922],[132,26,22,922,944],[133,6,6,944,950],[134,16,14,950,964],[135,4,4,964,968],[136,10,10,968,978],[137,9,8,978,986],[138,16,15,986,1001],[139,8,8,1001,1009],[140,5,4,1009,1013],[141,6,4,1013,1017],[142,6,6,1017,1023],[143,12,12,1023,1035],[144,13,13,1035,1048],[145,8,8,1048,1056],[146,7,7,1056,1063],[147,23,19,1063,1082],[148,18,15,1082,1097],[149,5,4,1097,1101],[150,4,4,1101,1105],[151,3,3,1105,1108],[152,6,5,1108,1113]]],[4,548,438,1113,1551,[[153,24,21,1113,1134],[154,16,15,1134,1149],[155,11,8,1149,1157],[156,29,24,1157,1181],[157,24,18,1181,1199],[158,22,18,1199,1217],[159,20,17,1217,1234],[160,13,12,1234,1246],[161,33,21,1246,1267],[162,21,14,1267,1281],[163,18,16,1281,1297],[164,26,19,1297,1316],[165,11,8,1316,1324],[166,11,8,1324,1332],[167,15,13,1332,1345],[168,22,15,1345,1360],[169,11,9,1360,1369],[170,19,14,1369,1383],[171,9,8,1383,1391],[172,7,7,1391,1398],[173,7,6,1398,1404],[174,1,1,1404,1405],[175,16,10,1405,1415],[176,7,6,1415,1421],[177,4,3,1421,1424],[178,20,15,1424,1439],[179,10,8,1439,1447],[180,40,34,1447,1481],[181,20,17,1481,1498],[182,18,12,1498,1510],[183,19,18,1510,1528],[184,9,9,1528,1537],[185,8,8,1537,1545],[186,7,6,1545,1551]]],[5,223,169,1551,1720,[[187,10,6,1551,1557],[188,6,6,1557,1563],[189,6,6,1563,1569],[190,14,12,1569,1581],[191,8,6,1581,1587],[192,16,13,1587,1600],[193,13,11,1600,1611],[194,10,8,1611,1619],[195,6,6,1619,1625],[196,13,11,1625,1636],[197,9,7,1636,1643],[198,2,1,1643,1644],[199,4,4,1644,1648],[200,12,9,1648,1657],[201,1,1,1657,1658],[203,3,2,1658,1660],[204,6,5,1660,1665],[205,2,2,1665,1667],[206,1,1,1667,1668],[207,7,6,1668,1674],[208,36,18,1674,1692],[209,17,11,1692,1703],[210,21,17,1703,1720]]],[6,172,137,1720,1857,[[211,5,5,1720,1725],[212,23,17,1725,1742],[213,15,9,1742,1751],[214,8,7,1751,1758],[215,14,9,1758,1767],[216,25,18,1767,1785],[217,9,9,1785,1794],[218,4,4,1794,1798],[220,7,6,1798,1804],[221,14,13,1804,1817],[222,1,1,1817,1818],[223,18,14,1818,1832],[224,3,3,1832,1835],[225,2,2,1835,1837],[226,2,2,1837,1839],[227,3,3,1839,1842],[228,1,1,1842,1843],[229,1,1,1843,1844],[230,10,7,1844,1851],[231,7,6,1851,1857]]],[7,18,15,1857,1872,[[232,7,6,1857,1863],[233,5,3,1863,1866],[234,2,2,1866,1868],[235,4,4,1868,1872]]],[8,320,240,1872,2112,[[236,23,18,1872,1890],[237,25,18,1890,1908],[238,19,14,1908,1922],[239,5,4,1922,1926],[240,4,4,1926,1930],[241,13,11,1930,1941],[242,17,12,1941,1953],[243,6,6,1953,1959],[244,2,2,1959,1961],[245,9,8,1961,1969],[246,4,3,1969,1972],[247,32,20,1972,1992],[248,6,3,1992,1995],[249,13,11,1995,2006],[250,28,22,2006,2028],[251,16,13,2028,2041],[252,6,4,2041,2045],[253,4,4,2045,2049],[254,3,3,2049,2052],[255,13,11,2052,2063],[256,2,2,2063,2065],[257,4,3,2065,2068],[258,10,7,2068,2075],[259,12,8,2075,2083],[260,12,9,2083,2092],[261,16,9,2092,2101],[263,11,6,2101,2107],[264,1,1,2107,2108],[265,4,4,2108,2112]]],[9,145,124,2112,2236,[[267,3,3,2112,2115],[268,4,3,2115,2118],[269,4,4,2118,2122],[270,2,2,2122,2124],[271,10,9,2124,2133],[272,21,15,2133,2148],[273,11,11,2148,2159],[274,3,3,2159,2162],[276,1,1,2162,2163],[277,1,1,2163,2164],[278,13,12,2164,2176],[280,3,2,2176,2178],[281,6,5,2178,2183],[282,7,5,2183,2188],[283,2,1,2188,2189],[284,3,3,2189,2192],[285,2,2,2192,2194],[286,1,1,2194,2195],[287,7,5,2195,2200],[288,18,16,2200,2216],[289,5,5,2216,2221],[290,18,15,2221,2236]]],[10,257,212,2236,2448,[[291,6,6,2236,2242],[292,18,17,2242,2259],[293,5,5,2259,2264],[295,7,5,2264,2269],[296,5,5,2269,2274],[297,6,5,2274,2279],[298,36,29,2279,2308],[299,10,8,2308,2316],[300,5,4,2316,2320],[301,10,8,2320,2328],[302,6,3,2328,2331],[303,18,12,2331,2343],[304,13,12,2343,2355],[305,11,11,2355,2366],[306,11,10,2366,2376],[307,14,11,2376,2387],[308,23,19,2387,2406],[309,12,8,2406,2414],[310,9,6,2414,2420],[311,9,8,2420,2428],[312,23,20,2428,2448]]],[11,277,227,2448,2675,[[313,6,6,2448,2454],[314,13,10,2454,2464],[315,11,10,2464,2474],[316,6,6,2474,2480],[317,7,6,2480,2486],[318,8,5,2486,2491],[319,5,4,2491,2495],[320,7,7,2495,2502],[321,10,7,2502,2509],[322,9,7,2509,2516],[323,11,9,2516,2525],[324,14,10,2525,2535],[325,8,7,2535,2542],[326,7,7,2542,2549],[327,10,10,2549,2559],[328,6,5,2559,2564],[329,28,25,2564,2589],[330,16,12,2589,2601],[331,19,14,2601,2615],[332,14,11,2615,2626],[333,14,11,2626,2637],[334,15,11,2637,2648],[335,19,17,2648,2665],[336,10,7,2665,2672],[337,4,3,2672,2675]]],[12,174,144,2675,2819,[[339,1,1,2675,2676],[343,3,3,2676,2679],[346,3,3,2679,2682],[347,3,2,2682,2684],[348,7,6,2684,2690],[349,1,1,2690,2691],[350,5,5,2691,2696],[351,3,3,2696,2699],[352,10,10,2699,2709],[353,25,20,2709,2729],[354,14,13,2729,2742],[355,3,3,2742,2745],[356,1,1,2745,2746],[358,23,19,2746,2765],[359,18,12,2765,2777],[360,10,9,2777,2786],[361,2,1,2786,2787],[362,3,3,2787,2790],[363,4,4,2790,2794],[364,1,1,2794,2795],[365,15,11,2795,2806],[366,19,13,2806,2819]]],[13,384,307,2819,3126,[[367,5,5,2819,2824],[368,6,4,2824,2828],[369,1,1,2828,2829],[370,1,1,2829,2830],[371,8,6,2830,2836],[372,16,13,2836,2849],[373,16,11,2849,2860],[374,6,4,2860,2864],[375,4,3,2864,2867],[376,1,1,2867,2868],[377,6,4,2868,2872],[378,11,10,2872,2882],[379,11,9,2882,2891],[380,11,8,2891,2899],[381,10,9,2899,2908],[382,5,5,2908,2913],[383,6,6,2913,2919],[384,18,15,2919,2934],[385,11,8,2934,2942],[386,23,19,2942,2961],[387,7,7,2961,2968],[388,3,3,2968,2971],[389,12,9,2971,2980],[390,19,14,2980,2994],[391,6,6,2994,3000],[392,10,8,3000,3008],[393,4,3,3008,3011],[394,15,13,3011,3024],[395,27,20,3024,3044],[396,19,14,3044,3058],[397,11,10,3058,3068],[398,9,9,3068,3077],[399,19,15,3077,3092],[400,22,14,3092,3106],[401,9,7,3106,3113],[402,16,13,3113,3126]]],[14,37,28,3126,3154,[[403,6,5,3126,3131],[404,1,1,3131,3132],[405,11,6,3132,3138],[406,2,2,3138,3140],[408,2,2,3140,3142],[409,7,5,3142,3147],[410,4,3,3147,3150],[411,3,3,3150,3153],[412,1,1,3153,3154]]],[15,17,15,3154,3169,[[413,1,1,3154,3155],[417,1,1,3155,3156],[420,6,5,3156,3161],[421,6,5,3161,3166],[422,3,3,3166,3169]]],[17,32,23,3169,3192,[[436,10,6,3169,3175],[437,8,6,3175,3181],[447,1,1,3181,3182],[473,1,1,3182,3183],[475,3,3,3183,3186],[477,9,6,3186,3192]]],[18,681,623,3192,3815,[[478,2,2,3192,3194],[479,3,3,3194,3197],[480,6,6,3197,3203],[481,5,4,3203,3207],[482,5,5,3207,3212],[483,8,6,3212,3218],[484,7,5,3218,3223],[485,2,2,3223,3225],[486,9,9,3225,3234],[487,5,5,3234,3239],[488,5,4,3239,3243],[489,5,5,3243,3248],[490,3,3,3248,3251],[491,4,4,3251,3255],[492,2,2,3255,3257],[493,4,4,3257,3261],[494,3,3,3261,3264],[495,16,16,3264,3280],[496,7,4,3280,3284],[497,5,5,3284,3289],[498,4,4,3289,3293],[499,6,6,3293,3299],[500,2,2,3299,3301],[501,6,5,3301,3306],[502,10,10,3306,3316],[503,6,5,3316,3321],[504,13,9,3321,3330],[505,5,5,3330,3335],[506,18,10,3335,3345],[507,9,8,3345,3353],[508,10,9,3353,3362],[509,4,4,3362,3366],[510,13,13,3366,3379],[511,16,16,3379,3395],[512,8,8,3395,3403],[513,2,2,3403,3405],[514,15,15,3405,3420],[515,3,3,3420,3423],[516,2,2,3423,3425],[517,9,8,3425,3433],[518,6,6,3433,3439],[519,1,1,3439,3440],[523,3,3,3440,3443],[524,2,2,3443,3445],[525,2,2,3445,3447],[527,1,1,3447,3448],[531,1,1,3448,3449],[532,2,2,3449,3451],[533,1,1,3451,3452],[535,1,1,3452,3453],[536,3,3,3453,3456],[541,1,1,3456,3457],[545,2,2,3457,3459],[546,4,4,3459,3463],[547,2,2,3463,3465],[548,1,1,3465,3466],[549,1,1,3466,3467],[551,1,1,3467,3468],[552,1,1,3468,3469],[553,1,1,3469,3470],[555,2,2,3470,3472],[556,1,1,3472,3473],[557,2,2,3473,3475],[558,2,2,3475,3477],[560,2,2,3477,3479],[561,7,6,3479,3485],[562,4,4,3485,3489],[563,4,4,3489,3493],[564,2,2,3493,3495],[565,4,4,3495,3499],[566,10,9,3499,3508],[567,1,1,3508,3509],[568,2,2,3509,3511],[569,7,7,3511,3518],[570,5,4,3518,3522],[571,9,9,3522,3531],[572,3,3,3531,3534],[573,11,9,3534,3543],[574,6,6,3543,3549],[575,6,6,3549,3555],[576,7,6,3555,3561],[577,4,4,3561,3565],[578,2,2,3565,3567],[579,7,7,3567,3574],[580,11,10,3574,3584],[581,9,7,3584,3591],[582,5,5,3591,3596],[583,9,9,3596,3605],[584,12,12,3605,3617],[585,1,1,3617,3618],[586,6,6,3618,3624],[587,3,3,3624,3627],[588,4,4,3627,3631],[589,2,2,3631,3633],[590,6,5,3633,3638],[592,10,9,3638,3647],[593,15,14,3647,3661],[594,2,2,3661,3663],[595,22,19,3663,3682],[596,24,24,3682,3706],[597,2,2,3706,3708],[598,5,4,3708,3712],[599,3,3,3712,3715],[600,2,2,3715,3717],[601,4,4,3717,3721],[602,4,4,3721,3725],[603,4,4,3725,3729],[604,3,2,3729,3731],[605,3,3,3731,3734],[606,3,2,3734,3736],[607,4,3,3736,3739],[608,2,2,3739,3741],[609,6,6,3741,3747],[610,1,1,3747,3748],[611,5,3,3748,3751],[612,15,10,3751,3761],[613,1,1,3761,3762],[614,2,2,3762,3764],[615,6,4,3764,3768],[616,3,3,3768,3771],[617,6,5,3771,3776],[618,2,2,3776,3778],[619,3,2,3778,3780],[620,4,4,3780,3784],[621,4,4,3784,3788],[622,9,9,3788,3797],[623,9,7,3797,3804],[624,5,5,3804,3809],[625,4,4,3809,3813],[626,2,2,3813,3815]]],[19,87,87,3815,3902,[[628,2,2,3815,3817],[629,2,2,3817,3819],[630,9,9,3819,3828],[632,1,1,3828,3829],[633,1,1,3829,3830],[635,3,3,3830,3833],[636,1,1,3833,3834],[637,4,4,3834,3838],[638,2,2,3838,3840],[639,2,2,3840,3842],[641,3,3,3842,3845],[642,9,9,3845,3854],[643,11,11,3854,3865],[644,2,2,3865,3867],[645,2,2,3867,3869],[646,5,5,3869,3874],[647,6,6,3874,3880],[648,5,5,3880,3885],[649,6,6,3885,3891],[650,1,1,3891,3892],[651,2,2,3892,3894],[652,1,1,3894,3895],[655,2,2,3895,3897],[656,3,3,3897,3900],[657,1,1,3900,3901],[658,1,1,3901,3902]]],[22,426,373,3902,4275,[[679,9,9,3902,3911],[680,10,9,3911,3920],[681,7,7,3920,3927],[682,2,2,3927,3929],[683,6,6,3929,3935],[684,3,3,3935,3938],[685,6,6,3938,3944],[686,8,7,3944,3951],[687,5,5,3951,3956],[688,4,4,3956,3960],[689,5,4,3960,3964],[690,4,4,3964,3968],[691,5,5,3968,3973],[692,10,9,3973,3982],[694,2,2,3982,3984],[695,2,2,3984,3986],[696,3,2,3986,3988],[697,17,12,3988,4000],[698,2,2,4000,4002],[699,2,2,4002,4004],[700,4,3,4004,4007],[701,5,4,4007,4011],[702,7,6,4011,4017],[703,5,5,4017,4022],[704,11,10,4022,4032],[705,4,4,4032,4036],[706,5,5,4036,4041],[707,5,5,4041,4046],[708,11,10,4046,4056],[709,6,5,4056,4061],[710,1,1,4061,4062],[711,8,6,4062,4068],[712,5,4,4068,4072],[713,2,2,4072,4074],[714,7,5,4074,4079],[715,19,15,4079,4094],[716,10,8,4094,4102],[717,3,3,4102,4105],[718,9,8,4105,4113],[719,7,7,4113,4120],[720,9,9,4120,4129],[721,8,8,4129,4137],[722,9,5,4137,4142],[723,16,15,4142,4157],[725,1,1,4157,4158],[726,7,6,4158,4164],[727,13,11,4164,4175],[728,3,2,4175,4177],[729,11,9,4177,4186],[730,8,7,4186,4193],[731,4,3,4193,4196],[732,8,7,4196,4203],[733,5,5,4203,4208],[734,6,4,4208,4212],[735,1,1,4212,4213],[736,7,6,4213,4219],[737,8,6,4219,4225],[738,9,9,4225,4234],[739,7,7,4234,4241],[740,8,8,4241,4249],[741,6,4,4249,4253],[742,3,3,4253,4256],[743,5,5,4256,4261],[744,18,14,4261,4275]]],[23,712,614,4275,4889,[[745,12,11,4275,4286],[746,15,14,4286,4300],[747,19,14,4300,4314],[748,9,9,4314,4323],[749,15,15,4323,4338],[750,10,10,4338,4348],[751,16,12,4348,4360],[752,12,11,4360,4371],[753,14,13,4371,4384],[754,9,9,4384,4393],[755,13,12,4393,4405],[756,7,7,4405,4412],[757,15,15,4412,4427],[758,10,9,4427,4436],[759,10,10,4436,4446],[760,14,11,4446,4457],[761,14,11,4457,4468],[762,7,7,4468,4475],[763,9,7,4475,4482],[764,11,10,4482,4492],[765,11,10,4492,4502],[766,13,13,4502,4515],[767,41,29,4515,4544],[768,7,6,4544,4550],[769,20,18,4550,4568],[770,21,14,4568,4582],[771,16,12,4582,4594],[772,16,13,4594,4607],[773,25,20,4607,4627],[774,16,15,4627,4642],[775,34,27,4642,4669],[776,17,16,4669,4685],[777,20,15,4685,4700],[778,13,9,4700,4709],[779,9,8,4709,4717],[780,17,13,4717,4730],[781,6,6,4730,4736],[782,7,7,4736,4743],[783,4,4,4743,4747],[784,4,3,4747,4750],[785,1,1,4750,4751],[786,20,14,4751,4765],[787,7,6,4765,4771],[788,14,12,4771,4783],[789,4,4,4783,4787],[790,9,9,4787,4796],[791,5,5,4796,4801],[792,15,15,4801,4816],[793,21,20,4816,4836],[794,23,21,4836,4857],[795,29,27,4857,4884],[796,6,5,4884,4889]]],[24,32,32,4889,4921,[[797,7,7,4889,4896],[798,7,7,4896,4903],[799,12,12,4903,4915],[800,3,3,4915,4918],[801,3,3,4918,4921]]],[25,217,200,4921,5121,[[802,3,2,4921,4923],[804,5,5,4923,4928],[805,1,1,4928,4929],[806,3,3,4929,4932],[807,5,5,4932,4937],[808,5,5,4937,4942],[809,6,3,4942,4945],[810,3,2,4945,4947],[811,4,3,4947,4950],[812,9,8,4950,4958],[813,9,9,4958,4967],[814,9,8,4967,4975],[815,6,6,4975,4981],[816,2,2,4981,4983],[817,4,4,4983,4987],[818,5,4,4987,4991],[819,1,1,4991,4992],[821,14,14,4992,5006],[822,7,7,5006,5013],[823,7,7,5013,5020],[824,2,2,5020,5022],[825,5,5,5022,5027],[826,5,5,5027,5032],[827,3,3,5032,5035],[828,1,1,5035,5036],[829,6,6,5036,5042],[830,5,5,5042,5047],[831,9,9,5047,5056],[832,1,1,5056,5057],[833,3,3,5057,5060],[834,5,5,5060,5065],[835,7,6,5065,5071],[836,6,6,5071,5077],[837,8,7,5077,5084],[838,9,7,5084,5091],[839,2,2,5091,5093],[840,4,4,5093,5097],[841,2,2,5097,5099],[842,1,1,5099,5100],[843,1,1,5100,5101],[844,4,3,5101,5104],[845,7,4,5104,5108],[846,3,3,5108,5111],[847,6,6,5111,5117],[849,4,4,5117,5121]]],[26,8,7,5121,5128,[[858,8,7,5121,5128]]],[27,46,39,5128,5167,[[862,6,4,5128,5132],[863,4,4,5132,5136],[864,4,2,5136,5138],[865,5,4,5138,5142],[866,3,3,5142,5145],[867,2,2,5145,5147],[868,1,1,5147,5148],[869,2,2,5148,5150],[870,5,4,5150,5154],[871,2,2,5154,5156],[872,2,2,5156,5158],[873,5,4,5158,5162],[874,2,2,5162,5164],[875,3,3,5164,5167]]],[28,33,26,5167,5193,[[876,7,5,5167,5172],[877,18,14,5172,5186],[878,8,7,5186,5193]]],[29,60,56,5193,5249,[[879,8,8,5193,5201],[880,7,6,5201,5207],[881,5,5,5207,5212],[882,7,7,5212,5219],[883,11,10,5219,5229],[884,4,4,5229,5233],[885,8,6,5233,5239],[886,4,4,5239,5243],[887,6,6,5243,5249]]],[30,6,6,5249,5255,[[888,6,6,5249,5255]]],[31,26,21,5255,5276,[[889,12,8,5255,5263],[890,6,6,5263,5269],[891,2,2,5269,5271],[892,6,5,5271,5276]]],[32,39,35,5276,5311,[[893,3,3,5276,5279],[894,4,4,5279,5283],[895,5,4,5283,5287],[896,10,9,5287,5296],[897,4,3,5296,5299],[898,8,7,5299,5306],[899,5,5,5306,5311]]],[33,13,10,5311,5321,[[900,10,7,5311,5318],[901,2,2,5318,5320],[902,1,1,5320,5321]]],[34,13,11,5321,5332,[[903,3,2,5321,5323],[904,5,5,5323,5328],[905,5,4,5328,5332]]],[35,33,27,5332,5359,[[906,15,12,5332,5344],[907,9,7,5344,5351],[908,9,8,5351,5359]]],[36,35,24,5359,5383,[[909,16,10,5359,5369],[910,19,14,5369,5383]]],[37,132,102,5383,5485,[[911,20,14,5383,5397],[912,10,8,5397,5405],[913,9,7,5405,5412],[914,5,4,5412,5416],[915,1,1,5416,5417],[916,8,5,5417,5422],[917,10,9,5422,5431],[918,22,16,5431,5447],[919,5,4,5447,5451],[920,8,6,5451,5457],[921,7,6,5457,5463],[922,7,5,5463,5468],[923,5,5,5468,5473],[924,15,12,5473,5485]]],[38,46,38,5485,5523,[[925,15,12,5485,5497],[926,13,10,5497,5507],[927,15,13,5507,5520],[928,3,3,5520,5523]]]],[34,35,37,38,39,45,46,48,49,51,52,56,63,64,68,69,76,77,78,80,82,83,85,88,92,94,95,105,134,140,142,143,144,145,160,164,175,203,204,231,243,271,272,274,275,299,302,305,306,315,322,328,331,332,336,358,361,364,366,367,378,383,386,388,390,391,392,394,398,425,437,438,441,443,444,446,450,457,470,471,473,481,484,513,514,546,558,561,562,563,592,594,598,603,612,617,618,622,626,631,633,635,639,641,642,643,647,679,680,681,694,704,714,716,717,720,721,734,747,754,786,789,794,826,827,828,830,854,857,860,876,922,937,1126,1129,1151,1152,1154,1170,1172,1491,1581,1583,1586,1594,1595,1597,1602,1603,1605,1606,1607,1611,1612,1615,1620,1622,1623,1625,1628,1629,1631,1632,1633,1634,1635,1649,1653,1654,1656,1657,1658,1661,1662,1663,1665,1667,1668,1681,1683,1684,1685,1686,1690,1691,1693,1695,1698,1699,1701,1702,1704,1705,1707,1710,1711,1715,1718,1720,1722,1723,1725,1726,1729,1730,1732,1734,1736,1737,1738,1739,1740,1741,1743,1745,1746,1747,1748,1750,1754,1755,1762,1763,1764,1765,1769,1770,1771,1772,1775,1777,1778,1779,1780,1784,1785,1786,1787,1788,1789,1790,1793,1794,1795,1796,1797,1798,1801,1802,1803,1804,1807,1809,1810,1813,1815,1816,1817,1827,1828,1830,1839,1841,1843,1844,1845,1847,1852,1857,1858,1859,1864,1866,1867,1868,1870,1872,1873,1875,1876,1878,1879,1881,1882,1883,1888,1890,1893,1897,1899,1902,1903,1904,1907,1910,1913,1914,1915,1916,1919,1920,1921,1923,1926,1931,1936,1937,1938,1939,1941,1945,1946,1950,1951,1953,1954,1955,1956,1957,1958,1959,1962,1963,1970,1972,1975,1976,1979,1980,1981,1984,1985,1987,1988,1990,1997,1999,2000,2007,2008,2009,2010,2029,2033,2034,2035,2036,2037,2044,2046,2047,2048,2049,2050,2053,2056,2058,2061,2062,2063,2073,2124,2133,2161,2163,2169,2178,2179,2180,2181,2182,2184,2185,2189,2193,2194,2196,2293,2305,2322,2323,2328,2329,2331,2347,2354,2359,2360,2361,2362,2364,2377,2378,2382,2390,2392,2393,2394,2395,2396,2397,2398,2399,2402,2404,2416,2419,2421,2432,2433,2435,2437,2443,2445,2447,2449,2452,2464,2465,2467,2468,2469,2471,2473,2474,2478,2480,2484,2485,2490,2492,2494,2497,2500,2501,2502,2506,2510,2519,2520,2522,2523,2524,2528,2530,2532,2533,2535,2536,2541,2552,2553,2555,2560,2561,2567,2568,2571,2655,2665,2669,2671,2685,2690,2693,2694,2695,2696,2706,2707,2708,2723,2726,2728,2730,2732,2734,2736,2739,2741,2742,2745,2746,2747,2748,2750,2754,2756,2758,2759,2762,2763,2764,2765,2770,2771,2772,2773,2774,2776,2778,2779,2781,2783,2784,2785,2787,2789,2790,2792,2794,2796,2797,2798,2799,2801,2802,2808,2810,2812,2813,2817,2819,2822,2826,2830,2836,2837,2842,2844,2845,2847,2849,2850,2851,2855,2856,2857,2863,2864,2867,2868,2869,2870,2871,2873,2874,2884,2890,2893,2899,2900,2901,2904,2907,2908,2909,2914,2915,2917,2918,2921,2922,2926,2930,2934,2938,2943,2944,2945,2946,2951,2952,2953,2955,2957,2958,2959,2960,2963,2974,2976,2977,2978,2979,2980,2983,2984,2985,2988,2989,2990,2992,2994,2996,2998,3041,3042,3045,3051,3053,3112,3122,3123,3127,3129,3134,3135,3138,3140,3142,3144,3169,3182,3183,3198,3202,3203,3208,3209,3210,3211,3213,3214,3219,3231,3235,3236,3237,3239,3240,3241,3244,3252,3253,3255,3256,3257,3272,3281,3282,3283,3284,3285,3286,3289,3291,3293,3295,3297,3299,3302,3303,3305,3306,3309,3311,3312,3313,3315,3317,3318,3319,3325,3326,3342,3344,3346,3351,3353,3357,3360,3361,3366,3368,3370,3371,3372,3377,3378,3384,3385,3386,3387,3390,3391,3393,3395,3396,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3410,3411,3413,3414,3415,3418,3419,3420,3422,3424,3425,3427,3428,3429,3430,3435,3436,3438,3439,3440,3441,3442,3443,3445,3446,3447,3449,3450,3452,3453,3454,3455,3458,3459,3462,3468,3469,3470,3471,3473,3486,3507,3524,3525,3526,3537,3568,3569,3570,3571,3572,3579,3581,3584,3586,3591,3592,3593,3596,3598,3600,3602,3604,3605,3623,3652,3658,3659,3691,3692,3693,3696,3697,3703,3705,3706,3708,3731,3732,3733,3734,3736,3737,3743,3744,3760,3764,3780,3784,3788,3792,3793,3796,3797,3798,3800,3803,3808,3810,3813,3817,3822,3824,3825,3828,3829,3831,3835,3837,3839,3840,3843,3844,3845,3847,3848,3849,3853,3854,3861,3940,3942,3943,3944,3949,3950,3951,3952,3959,3960,3961,3962,3966,3970,3972,3973,3974,3975,3978,3979,3983,3984,3985,3988,3989,3997,3998,4001,4017,4020,4021,4022,4023,4024,4025,4026,4027,4034,4035,4040,4042,4044,4047,4048,4049,4053,4055,4057,4061,4063,4064,4065,4067,4068,4072,4073,4076,4078,4111,4116,4117,4118,4119,4121,4122,4124,4126,4128,4129,4134,4136,4143,4145,4148,4149,4150,4151,4152,4154,4156,4157,4160,4161,4163,4166,4167,4168,4170,4172,4174,4175,4176,4177,4178,4181,4183,4184,4188,4189,4190,4192,4194,4197,4199,4201,4203,4205,4209,4210,4211,4213,4214,4217,4222,4223,4224,4229,4230,4232,4234,4235,4236,4238,4240,4245,4251,4253,4254,4255,4257,4258,4263,4265,4269,4270,4272,4274,4276,4277,4281,4282,4283,4285,4286,4290,4291,4302,4309,4314,4315,4317,4318,4320,4323,4324,4327,4334,4338,4342,4343,4346,4347,4348,4354,4356,4374,4383,4388,4393,4394,4397,4398,4399,4400,4401,4402,4403,4406,4407,4409,4410,4419,4421,4424,4428,4432,4433,4437,4442,4447,4452,4457,4459,4474,4475,4481,4487,4490,4493,4498,4541,4550,4554,4557,4559,4560,4565,4566,4569,4570,4571,4572,4575,4576,4577,4578,4580,4583,4584,4585,4588,4590,4592,4593,4596,4601,4603,4604,4610,4614,4616,4620,4621,4644,4647,4648,4649,4650,4651,4653,4656,4660,4664,4665,4667,4671,4680,4685,4689,4692,4693,4694,4695,4701,4702,4703,4704,4705,4711,4714,4716,4718,4722,4725,4727,4728,4730,4731,4732,4738,4739,4740,4741,4745,4747,4749,4750,4762,4764,4798,4810,4817,4829,4832,4845,4846,4854,4879,4881,4884,4885,4889,4892,4895,4898,4900,4902,4903,4911,4912,4913,4917,4918,4919,4922,4923,4924,4926,4928,4929,4933,4934,4935,4937,4939,4940,4945,4947,4950,4952,4953,4955,4959,4967,4968,4969,4971,4974,4975,4977,4978,4993,4995,4996,4997,4998,5001,5005,5006,5007,5008,5009,5011,5014,5016,5018,5019,5023,5024,5025,5027,5028,5029,5031,5033,5034,5035,5038,5039,5043,5044,5055,5056,5057,5058,5059,5062,5064,5065,5067,5068,5069,5075,5077,5078,5080,5081,5085,5086,5087,5088,5089,5090,5091,5096,5098,5099,5101,5102,5103,5104,5105,5106,5107,5108,5110,5111,5112,5113,5115,5117,5118,5119,5120,5123,5126,5127,5129,5130,5131,5132,5133,5134,5136,5138,5139,5140,5142,5143,5144,5147,5148,5151,5155,5156,5157,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5173,5175,5176,5177,5179,5180,5181,5182,5183,5185,5187,5190,5191,5194,5195,5196,5197,5198,5199,5200,5201,5203,5206,5208,5209,5210,5212,5215,5217,5220,5221,5225,5229,5230,5231,5233,5235,5236,5237,5239,5241,5244,5245,5247,5249,5250,5251,5252,5254,5255,5258,5260,5261,5265,5266,5267,5268,5269,5271,5275,5276,5277,5282,5284,5288,5289,5290,5291,5292,5311,5313,5314,5315,5316,5319,5321,5323,5324,5325,5326,5328,5329,5333,5334,5337,5338,5339,5340,5343,5344,5347,5348,5349,5350,5352,5353,5357,5358,5359,5360,5362,5363,5364,5365,5366,5372,5374,5376,5378,5379,5380,5383,5385,5386,5389,5390,5391,5393,5396,5397,5398,5399,5400,5401,5405,5406,5407,5408,5409,5414,5415,5416,5420,5423,5428,5431,5440,5441,5443,5444,5445,5448,5452,5455,5456,5457,5470,5475,5501,5502,5503,5505,5508,5514,5518,5520,5521,5523,5529,5534,5538,5540,5543,5544,5562,5563,5566,5567,5568,5569,5570,5571,5573,5574,5576,5577,5579,5580,5582,5583,5584,5585,5587,5588,5590,5591,5592,5594,5595,5600,5612,5613,5618,5619,5620,5621,5622,5623,5624,5626,5631,5632,5633,5635,5636,5638,5639,5646,5647,5648,5656,5658,5659,5660,5663,5664,5669,5670,5672,5673,5674,5675,5676,5679,5680,5681,5683,5685,5689,5691,5694,5697,5699,5700,5701,5702,5703,5704,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5724,5728,5730,5731,5732,5733,5734,5735,5736,5737,5739,5740,5741,5742,5743,5744,5753,5754,5755,5757,5761,5764,5767,5770,5777,5785,5788,5794,5806,5812,5817,5821,5822,5823,5831,5833,5839,5840,5843,5844,5848,5849,5850,5852,5860,5862,5864,5866,5868,5878,5879,5880,5881,5883,5893,5896,5898,5900,5902,5906,5910,5911,5915,5917,5918,5920,5921,5923,5924,5925,5928,5933,5934,5935,5936,5940,5943,5948,5949,5951,5955,5956,5957,5960,5961,5962,5965,5966,5968,5973,5975,5976,5977,5982,5986,5989,5990,5991,5995,5996,5999,6001,6002,6003,6009,6010,6020,6029,6032,6033,6035,6046,6051,6055,6056,6061,6064,6072,6074,6075,6076,6078,6083,6089,6094,6096,6104,6106,6113,6115,6116,6119,6122,6127,6130,6136,6155,6162,6168,6187,6189,6192,6193,6194,6195,6196,6197,6199,6201,6215,6279,6289,6296,6299,6300,6301,6303,6371,6372,6373,6383,6384,6389,6424,6425,6426,6428,6429,6430,6431,6435,6442,6443,6444,6445,6448,6449,6450,6451,6453,6454,6455,6457,6460,6461,6463,6465,6468,6469,6470,6471,6473,6474,6475,6476,6478,6483,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6502,6503,6505,6507,6510,6511,6513,6528,6531,6546,6549,6550,6552,6553,6555,6556,6557,6558,6559,6560,6561,6562,6563,6565,6567,6568,6569,6572,6575,6576,6577,6578,6580,6583,6596,6600,6601,6602,6605,6608,6613,6614,6625,6626,6627,6628,6632,6634,6636,6646,6654,6655,6660,6661,6662,6664,6665,6666,6667,6668,6670,6675,6676,6677,6678,6679,6680,6681,6688,6696,6698,6699,6701,6703,6709,6712,6714,6716,6726,6738,6742,6753,6817,6818,6821,6822,6826,6827,6838,6839,6840,6850,6852,6853,6856,6858,6859,6860,6861,6864,6865,6872,6885,6887,6892,6897,6899,6900,6901,6902,6903,6904,6905,6907,6908,6909,6913,6915,6928,6943,6947,6969,6977,6982,6983,6993,6999,7042,7055,7072,7077,7080,7081,7082,7089,7105,7107,7109,7110,7117,7121,7133,7135,7136,7140,7144,7148,7153,7161,7169,7182,7185,7201,7202,7203,7204,7215,7217,7218,7219,7221,7222,7223,7224,7227,7231,7232,7233,7234,7235,7236,7238,7239,7240,7241,7242,7243,7246,7247,7248,7250,7251,7252,7257,7258,7260,7261,7264,7265,7266,7267,7270,7277,7279,7280,7282,7283,7284,7285,7286,7287,7291,7294,7295,7296,7297,7300,7301,7302,7303,7322,7323,7325,7328,7332,7333,7339,7342,7345,7346,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7360,7361,7362,7364,7365,7369,7375,7376,7379,7387,7390,7391,7406,7408,7419,7424,7435,7436,7437,7440,7442,7443,7452,7458,7460,7463,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7482,7483,7484,7497,7498,7499,7511,7514,7518,7520,7531,7541,7542,7543,7547,7549,7553,7561,7562,7570,7571,7573,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7588,7590,7591,7593,7595,7596,7597,7599,7600,7601,7602,7603,7604,7605,7607,7608,7609,7613,7655,7663,7664,7665,7688,7690,7693,7704,7711,7712,7715,7733,7738,7742,7743,7744,7745,7746,7751,7752,7753,7772,7778,7779,7797,7804,7808,7812,7814,7820,7821,7822,7828,7831,7843,7845,7849,7851,7854,7857,7858,7860,7887,7889,7890,7891,7892,7893,7895,7899,7900,7914,7915,7916,7917,7921,7924,7925,7928,7929,7948,7952,7958,7959,7960,7961,7973,7984,7986,8001,8004,8034,8036,8038,8050,8054,8055,8090,8099,8109,8120,8128,8129,8134,8135,8142,8144,8151,8152,8155,8156,8157,8159,8162,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8178,8181,8183,8184,8185,8188,8191,8202,8204,8205,8206,8207,8215,8220,8223,8252,8286,8287,8291,8293,8295,8297,8299,8300,8301,8306,8308,8310,8311,8367,8373,8396,8397,8410,8414,8420,8434,8436,8437,8438,8444,8463,8497,8506,8509,8518,8532,8573,8581,8583,8586,8587,8589,8603,8604,8606,8609,8616,8618,8621,8623,8624,8627,8631,8633,8634,8644,8649,8652,8655,8663,8665,8669,8670,8693,8695,8702,8703,8704,8706,8707,8708,8709,8710,8711,8713,8715,8716,8717,8734,8746,8747,8753,8754,8765,8773,8774,8778,8785,8793,8794,8796,8797,8798,8799,8800,8802,8803,8812,8813,8814,8815,8817,8818,8819,8821,8823,8881,8882,8883,8885,8890,8897,8898,8907,8915,8933,8946,8974,8979,8982,8985,8986,8989,8991,8994,8995,8996,8997,9000,9002,9003,9005,9006,9007,9008,9010,9013,9029,9038,9039,9041,9042,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9059,9060,9061,9066,9076,9080,9084,9088,9091,9110,9112,9114,9117,9118,9119,9122,9139,9166,9175,9178,9185,9186,9187,9189,9190,9193,9201,9202,9204,9205,9210,9216,9223,9225,9229,9231,9232,9233,9236,9239,9240,9242,9244,9246,9252,9253,9254,9260,9263,9264,9267,9275,9278,9279,9283,9284,9290,9295,9296,9302,9308,9309,9313,9316,9317,9318,9319,9322,9325,9329,9331,9333,9337,9338,9339,9341,9342,9344,9345,9351,9353,9354,9356,9359,9362,9363,9365,9371,9372,9373,9377,9378,9379,9380,9387,9391,9394,9396,9397,9398,9399,9401,9402,9421,9422,9436,9443,9444,9450,9454,9468,9470,9471,9474,9476,9477,9479,9485,9487,9488,9491,9492,9494,9495,9496,9497,9499,9500,9501,9502,9503,9504,9508,9518,9523,9532,9533,9536,9537,9539,9548,9549,9550,9552,9553,9554,9555,9556,9557,9565,9567,9572,9575,9578,9586,9587,9588,9589,9590,9591,9592,9593,9594,9604,9630,9633,9636,9646,9647,9648,9658,9663,9664,9665,9667,9691,9692,9694,9701,9707,9708,9709,9723,9726,9728,9735,9737,9740,9745,9746,9754,9759,9762,9763,9768,9781,9782,9792,9803,9809,9810,9816,9823,9824,9825,9832,9833,9836,9839,9842,9844,9846,9847,9848,9852,9854,9859,9860,9861,9862,9863,9864,9866,9868,9873,9874,9875,9876,9882,9888,9894,9899,9902,9910,9920,9921,9922,9923,9928,9930,9934,9937,9943,9949,9953,9959,9960,9962,9965,9966,9971,9977,9981,9985,9990,9991,9992,9994,9995,9996,9997,9998,9999,10000,10001,10002,10003,10004,10006,10008,10011,10015,10016,10017,10018,10019,10022,10024,10027,10029,10030,10031,10036,10039,10040,10046,10049,10054,10056,10059,10062,10065,10067,10075,10076,10077,10078,10080,10081,10082,10092,10093,10094,10096,10099,10100,10101,10102,10103,10106,10107,10109,10114,10115,10117,10121,10123,10124,10125,10126,10128,10129,10131,10135,10139,10141,10147,10148,10149,10150,10153,10154,10158,10160,10161,10163,10164,10167,10168,10169,10171,10172,10174,10176,10177,10181,10186,10188,10189,10190,10191,10192,10197,10202,10204,10205,10206,10211,10215,10221,10222,10231,10235,10238,10309,10469,10485,10486,10634,10635,10638,10672,10673,10675,10676,10682,10683,10687,10691,10743,10762,10766,10770,10771,10774,10776,10784,10791,10793,10794,10803,10804,10805,10806,10816,10817,10819,10820,10822,10824,10827,10828,10830,10831,10834,10843,10845,10846,10848,10849,10851,10853,10854,10856,10857,10859,10860,10861,10864,10867,10870,10873,10879,10880,10882,10883,10885,10886,10887,10889,10890,10896,10901,10903,10920,10937,10943,10944,10945,10946,10947,10948,10949,10950,10951,10952,10953,10956,10958,10960,10961,10962,10963,10964,10965,10969,10970,10971,10972,10975,10976,10977,10978,10980,10982,10983,10987,10988,10996,11007,11008,11011,11013,11014,11015,11034,11049,11052,11053,11089,11099,11104,11107,11132,11145,11147,11148,11151,11152,11153,11155,11156,11161,11162,11163,11165,11169,11172,11173,11174,11175,11180,11182,11184,11185,11186,11187,11189,11195,11197,11199,11200,11203,11212,11215,11222,11223,11230,11262,11269,11270,11275,11278,11281,11282,11283,11286,11289,11290,11292,11293,11294,11296,11298,11299,11301,11323,11324,11325,11326,11327,11328,11330,11331,11334,11335,11336,11345,11346,11347,11357,11358,11362,11368,11372,11375,11410,11416,11418,11428,11430,11438,11439,11442,11443,11444,11446,11448,11449,11450,11451,11458,11461,11462,11463,11464,11465,11467,11471,11473,11477,11479,11481,11482,11486,11487,11488,11489,11492,11494,11498,11499,11501,11502,11503,11504,11505,11511,11516,11517,11518,11521,11526,11528,11529,11532,11533,11539,11546,11548,11549,11552,11553,11555,11557,11558,11560,11561,11562,11564,11565,11569,11573,11578,11580,11582,11583,11584,11585,11586,11587,11590,11591,11592,11593,11600,11601,11602,11604,11605,11606,11607,11608,11609,11613,11614,11615,11616,11619,11624,11630,11631,11634,11636,11638,11640,11642,11648,11651,11653,11659,11661,11662,11668,11670,11672,11674,11675,11676,11679,11681,11683,11684,11685,11686,11689,11691,11695,11696,11697,11698,11699,11701,11706,11708,11711,11713,11719,11731,11736,11737,11748,11749,11750,11751,11752,11753,11757,11758,11761,11765,11767,11769,11770,11773,11774,11775,11777,11783,11785,11786,11788,11789,11793,11794,11796,11797,11799,11801,11802,11806,11807,11808,11809,11810,11811,11812,11816,11818,11821,11822,11823,11826,11828,11832,11833,11834,11835,11836,11839,11842,11844,11845,11846,11847,11848,11849,11856,11857,11858,11860,11862,11864,11865,11868,11870,11874,11883,11886,11891,11892,11896,11897,11898,11899,11901,11910,11912,11913,11914,11917,11918,11919,11920,11921,11923,11924,11925,11926,11930,11931,11935,11941,11943,11947,11948,11950,11954,11956,11957,11959,11960,11963,11964,11966,11967,11968,11969,11972,11978,11982,11992,11998,12000,12002,12003,12005,12006,12007,12008,12009,12011,12014,12015,12016,12017,12018,12019,12021,12023,12095,12100,12102,12103,12105,12107,12108,12111,12113,12172,12173,12179,12183,12184,12200,12201,12229,12230,12236,12242,12245,12252,12263,12301,12395,12494,12499,12502,12503,12507,12514,12515,12516,12517,12518,12578,12583,12584,12875,12876,12877,12878,12881,12890,12892,12893,12894,12895,12897,12898,13137,13794,13865,13867,13870,13923,13929,13931,13932,13933,13934,13941,13945,13947,13952,13956,13958,13960,13961,13962,13964,13965,13968,13970,13971,13973,13974,13976,13979,13981,13985,13986,13987,13988,13989,13993,13994,13996,13998,14001,14003,14012,14013,14021,14022,14028,14030,14031,14032,14034,14037,14040,14041,14042,14044,14053,14057,14058,14060,14063,14064,14066,14067,14069,14071,14072,14073,14075,14077,14080,14082,14084,14086,14087,14088,14091,14094,14097,14099,14100,14104,14116,14117,14119,14120,14121,14124,14131,14133,14136,14138,14139,14142,14146,14148,14149,14159,14164,14167,14175,14176,14177,14182,14183,14187,14188,14189,14191,14192,14198,14200,14204,14212,14223,14227,14230,14231,14232,14236,14241,14242,14244,14246,14249,14251,14252,14255,14257,14258,14259,14261,14262,14263,14265,14266,14274,14275,14279,14281,14285,14286,14289,14291,14292,14293,14295,14296,14298,14299,14300,14304,14305,14306,14307,14309,14310,14311,14312,14313,14315,14316,14317,14318,14319,14320,14321,14322,14323,14326,14327,14329,14331,14332,14336,14337,14340,14345,14348,14352,14354,14355,14357,14360,14365,14366,14367,14368,14370,14371,14372,14374,14376,14377,14378,14379,14384,14386,14388,14389,14390,14391,14392,14394,14395,14396,14397,14398,14399,14403,14404,14405,14406,14407,14410,14411,14415,14416,14419,14420,14432,14434,14437,14443,14444,14453,14454,14455,14457,14459,14467,14468,14470,14473,14474,14478,14483,14484,14489,14490,14491,14505,14511,14516,14524,14526,14528,14529,14530,14534,14536,14538,14541,14543,14544,14545,14546,14552,14555,14563,14621,14622,14625,14627,14630,14635,14642,14669,14731,14748,14754,14765,14785,14793,14795,14798,14860,14916,14926,14948,14951,14966,14968,14972,14976,14977,15018,15066,15079,15092,15117,15134,15190,15202,15217,15227,15232,15257,15259,15260,15261,15262,15267,15270,15271,15272,15278,15279,15283,15285,15290,15295,15301,15303,15307,15309,15317,15321,15322,15327,15331,15332,15334,15341,15344,15372,15377,15378,15391,15397,15404,15412,15415,15416,15419,15420,15424,15426,15427,15429,15430,15431,15432,15434,15436,15442,15445,15448,15449,15453,15454,15455,15457,15460,15466,15467,15469,15470,15472,15473,15474,15475,15478,15479,15483,15486,15487,15488,15490,15491,15492,15494,15495,15496,15499,15500,15501,15504,15505,15507,15508,15509,15510,15511,15513,15514,15521,15522,15533,15536,15537,15540,15542,15543,15550,15551,15555,15557,15562,15566,15568,15569,15570,15571,15572,15587,15595,15602,15604,15605,15606,15607,15609,15610,15613,15625,15652,15653,15655,15667,15676,15685,15691,15698,15699,15700,15701,15705,15707,15712,15714,15718,15720,15723,15727,15730,15742,15745,15769,15770,15775,15781,15782,15785,15787,15788,15790,15794,15795,15797,15803,15804,15810,15814,15815,15816,15817,15818,15831,15839,15840,15841,15842,15843,15844,15845,15846,15849,15852,15853,15854,15855,15857,15860,15861,15862,15863,15864,15865,15866,15867,15868,15869,15870,15873,15875,15876,15877,15878,15879,15880,15881,15882,15884,15885,15889,15892,15893,15894,15895,15896,15898,15899,15910,15929,15931,15939,15950,15953,15955,15962,15963,15973,15987,16005,16006,16024,16035,16043,16047,16049,16054,16057,16064,16067,16072,16075,16076,16083,16086,16088,16089,16090,16093,16098,16100,16101,16103,16104,16108,16110,16111,16112,16114,16115,16116,16117,16118,16119,16122,16124,16127,16130,16131,16136,16140,16141,16145,16147,16149,16151,16152,16153,16156,16159,16162,16164,16172,16173,16174,16175,16176,16177,16178,16180,16181,16188,16189,16194,16195,16196,16197,16226,16229,16235,16236,16237,16239,16240,16243,16260,16264,16267,16269,16271,16275,16277,16279,16287,16291,16294,16300,16302,16304,16306,16308,16310,16320,16323,16328,16329,16330,16334,16337,16338,16340,16341,16342,16343,16346,16348,16349,16350,16351,16353,16357,16358,16362,16363,16372,16376,16378,16384,16386,16389,16407,16429,16438,16439,16460,16462,16464,16466,16467,16474,16481,16487,16488,16538,16556,16615,16624,16637,16648,16659,16678,16683,16685,16689,16708,16721,16741,16774,16798,16799,16810,16815,16816,16818,16823,16832,16833,16836,16840,16841,16842,16843,16844,16845,16846,16847,16849,16851,16860,16873,16876,16888,16911,16923,16928,16939,16942,16946,16948,16964,16966,16976,16977,16978,16981,16985,16986,16987,17014,17015,17017,17019,17027,17029,17034,17038,17061,17097,17100,17135,17201,17221,17237,17249,17250,17260,17314,17656,17658,17663,17664,17665,17672,17674,17678,17682,17687,17688,17690,17695,17696,17697,17702,17704,17706,17708,17715,17720,17721,17722,17723,17724,17735,17738,17746,17748,17751,17755,17763,17764,17772,17774,17781,17785,17792,17793,17794,17799,17800,17808,17810,17812,17818,17820,17824,17825,17836,17840,17842,17843,17848,17866,17870,17876,17883,17886,17887,17893,17899,17901,17902,17904,17905,17910,17911,17912,17915,17919,17929,17930,17931,17933,17950,17951,17952,17955,17960,17982,17983,17986,17989,18001,18004,18005,18008,18016,18018,18020,18021,18022,18023,18024,18025,18026,18029,18031,18032,18045,18052,18066,18069,18077,18086,18088,18094,18095,18096,18098,18109,18110,18116,18118,18119,18124,18126,18127,18128,18134,18138,18140,18141,18142,18143,18145,18146,18147,18151,18152,18154,18163,18164,18169,18177,18178,18185,18193,18199,18203,18208,18212,18215,18218,18226,18235,18243,18244,18246,18247,18248,18249,18250,18251,18253,18254,18255,18259,18265,18281,18284,18285,18289,18300,18301,18305,18309,18311,18319,18322,18330,18337,18340,18345,18348,18350,18353,18356,18358,18366,18367,18368,18369,18370,18372,18373,18374,18384,18385,18386,18388,18391,18392,18393,18394,18395,18397,18410,18412,18417,18418,18420,18422,18423,18425,18427,18433,18447,18448,18451,18455,18464,18465,18467,18468,18471,18472,18485,18486,18488,18490,18492,18493,18499,18501,18504,18506,18508,18515,18516,18517,18519,18520,18521,18535,18538,18539,18556,18557,18562,18564,18566,18567,18568,18569,18572,18574,18575,18578,18579,18580,18582,18585,18586,18603,18615,18616,18628,18631,18634,18636,18637,18640,18641,18643,18644,18649,18650,18654,18659,18661,18662,18663,18672,18674,18676,18682,18684,18686,18688,18690,18693,18695,18699,18701,18704,18705,18706,18707,18708,18712,18717,18721,18724,18728,18729,18731,18733,18736,18740,18745,18746,18747,18748,18753,18754,18756,18757,18759,18784,18791,18794,18795,18797,18799,18800,18801,18813,18815,18819,18820,18821,18822,18823,18827,18830,18835,18837,18840,18841,18843,18844,18845,18846,18849,18851,18852,18853,18856,18857,18858,18860,18862,18863,18865,18866,18873,18880,18882,18883,18893,18894,18897,18904,18905,18908,18920,18922,18923,18924,18927,18928,18931,18934,18936,18937,18938,18939,18942,18943,18944,18945,18948,18950,18953,18954,18955,18957,18958,18959,18960,18961,18965,18966,18967,18968,18969,18970,18971,18973,18974,18977,18982,18984,18994,18996,19002,19003,19008,19012,19013,19014,19015,19016,19018,19019,19022,19023,19024,19025,19027,19028,19029,19030,19031,19035,19036,19044,19053,19054,19060,19061,19062,19063,19067,19068,19069,19070,19072,19073,19076,19077,19080,19082,19087,19095,19098,19099,19100,19101,19104,19105,19110,19111,19119,19120,19121,19122,19123,19130,19132,19138,19140,19147,19148,19149,19151,19154,19156,19157,19160,19161,19162,19165,19166,19167,19170,19172,19178,19181,19182,19184,19187,19188,19190,19192,19195,19197,19198,19199,19200,19202,19203,19207,19211,19217,19219,19222,19224,19225,19227,19229,19231,19232,19235,19237,19242,19243,19244,19246,19247,19248,19250,19252,19261,19262,19263,19265,19266,19267,19268,19269,19271,19272,19274,19275,19277,19278,19279,19280,19281,19282,19283,19291,19294,19300,19302,19303,19304,19307,19308,19313,19315,19316,19317,19318,19321,19324,19326,19330,19331,19334,19335,19337,19339,19341,19345,19346,19347,19350,19351,19352,19355,19357,19362,19364,19367,19370,19371,19372,19376,19377,19378,19381,19383,19385,19389,19390,19395,19397,19403,19407,19408,19410,19413,19418,19419,19421,19422,19423,19424,19425,19426,19429,19430,19433,19434,19435,19438,19441,19442,19444,19447,19448,19450,19451,19452,19453,19454,19455,19456,19457,19459,19460,19462,19463,19465,19470,19472,19478,19483,19484,19485,19486,19488,19489,19490,19491,19492,19493,19495,19496,19499,19500,19501,19502,19503,19504,19507,19508,19512,19513,19514,19515,19516,19517,19518,19519,19520,19521,19522,19525,19527,19528,19529,19531,19532,19537,19538,19539,19541,19542,19543,19546,19549,19551,19561,19562,19563,19564,19565,19566,19567,19570,19571,19573,19574,19576,19579,19580,19581,19582,19584,19585,19587,19588,19590,19591,19592,19597,19598,19600,19604,19607,19609,19611,19612,19614,19615,19617,19618,19619,19620,19621,19622,19623,19624,19627,19629,19630,19631,19632,19633,19634,19639,19642,19643,19644,19645,19646,19649,19650,19651,19652,19654,19655,19656,19657,19658,19660,19661,19665,19666,19667,19668,19669,19670,19671,19672,19675,19676,19677,19678,19679,19684,19685,19688,19690,19691,19692,19693,19694,19697,19698,19701,19702,19703,19705,19706,19707,19708,19709,19711,19713,19714,19718,19719,19722,19723,19724,19725,19726,19727,19728,19729,19731,19732,19734,19736,19737,19739,19745,19746,19747,19749,19757,19758,19759,19761,19767,19773,19775,19776,19777,19779,19785,19786,19787,19788,19789,19791,19792,19794,19795,19798,19799,19800,19802,19803,19805,19806,19809,19813,19814,19818,19823,19824,19825,19827,19835,19836,19840,19841,19842,19843,19846,19847,19848,19849,19850,19851,19852,19853,19868,19869,19871,19872,19876,19877,19880,19881,19883,19891,19897,19898,19909,19911,19912,19915,19916,19938,19939,19940,19941,19942,19943,19944,19962,19977,19978,19979,19980,19981,19982,19984,19986,19988,19990,19993,19994,19995,19996,19998,19999,20001,20004,20005,20007,20012,20017,20021,20026,20031,20032,20033,20034,20035,20036,20039,20040,20042,20043,20044,20045,20046,20050,20058,20060,20063,20068,20070,20071,20073,20074,20075,20077,20079,20080,20081,20088,20090,20092,20095,20105,20106,20110,20115,20118,20120,20122,20123,20124,20127,20128,20129,20133,20134,20139,20140,20141,20143,20145,20147,20153,20155,20157,20158,20159,20161,20162,20164,20165,20166,20167,20170,20171,20173,20176,20179,20180,20181,20184,20186,20187,20190,20191,20194,20195,20196,20199,20200,20201,20206,20211,20213,20217,20218,20219,20222,20223,20224,20226,20231,20236,20237,20238,20241,20245,20248,20251,20257,20260,20262,20263,20264,20265,20267,20268,20269,20270,20274,20278,20279,20289,20293,20296,20315,20319,20321,20322,20327,20328,20330,20338,20339,20340,20341,20349,20352,20354,20372,20376,20378,20379,20380,20394,20404,20409,20413,20415,20418,20420,20431,20436,20440,20443,20461,20463,20467,20492,20514,20516,20518,20524,20525,20542,20559,20561,20563,20564,20570,20573,20576,20577,20578,20581,20586,20596,20604,20616,20618,20620,20626,20631,20637,20651,20652,20656,20660,20665,20667,20669,20670,20678,20680,20681,20688,20695,20696,20697,20700,20701,20705,20706,20709,20710,20713,20714,20715,20722,20729,20731,20733,20735,20738,20739,20740,20743,20755,20761,20763,20797,20820,20824,20826,20836,20846,20849,20850,20896,20897,20900,20902,20907,20914,20915,20921,20933,20937,20939,20940,20942,20943,20945,20947,20949,20952,20961,20962,20976,20977,20990,20992,20993,20998,20999,21004,21008,21043,21057,21070,21071,21076,21083,21084,21088,21090,21094,21100,21101,21106,21114,21122,21158,21168,21177,21179,21180,21183,21184,21189,21192,21200,21204,21205,21207,21210,21212,21216,21223,21224,21229,21230,21231,21249,21263,21265,21281,21302,21303,21309,21310,21314,21320,21322,21337,21340,21343,21345,21348,21353,21354,21356,21359,21360,21370,21375,21379,21382,21395,21397,21398,21401,21403,21410,21411,21412,21425,21426,21448,21454,21455,21470,21476,21478,21523,21548,21565,21576,21577,21596,21601,21602,21603,21604,21631,21634,21653,21658,21659,21664,21667,21668,21669,21711,21712,21716,21737,21990,21992,21996,21998,22001,22002,22008,22095,22096,22098,22101,22118,22121,22125,22126,22129,22133,22134,22143,22148,22149,22156,22158,22159,22168,22170,22188,22195,22207,22211,22212,22213,22222,22228,22237,22250,22251,22254,22257,22261,22265,22270,22281,22283,22284,22291,22292,22300,22305,22306,22310,22312,22322,22323,22324,22325,22328,22329,22330,22332,22334,22337,22338,22342,22343,22351,22354,22357,22359,22360,22361,22364,22366,22367,22369,22370,22373,22375,22377,22379,22380,22382,22383,22385,22390,22395,22396,22401,22405,22407,22410,22413,22416,22418,22419,22420,22421,22423,22427,22429,22431,22437,22438,22439,22440,22441,22443,22450,22458,22460,22461,22464,22467,22470,22472,22479,22480,22481,22483,22488,22492,22493,22501,22502,22503,22507,22508,22510,22511,22514,22518,22525,22528,22531,22532,22534,22535,22540,22541,22545,22547,22548,22549,22550,22554,22555,22557,22558,22559,22561,22570,22571,22572,22574,22578,22580,22582,22591,22598,22600,22602,22608,22612,22613,22616,22619,22621,22622,22624,22625,22626,22627,22630,22632,22633,22637,22640,22643,22649,22650,22653,22654,22655,22656,22657,22671,22672,22673,22674,22681,22686,22687,22691,22693,22695,22696,22698,22701,22712,22717,22733,22743,22750,22761,22762,22764,22768,22770,22776,22786,22787,22788,22789,22790,22792,22793,22794,22795,22797,22799,22801,22804,22805,22807,22808,22810,22812,22814,22815,22816,22822,22825,22828,22829,22832,22835,22837,22840,22841,22842,22843,22845,22847,22848,22849,22852,22853,22854,22856,22859,22861,22862,22863,22864,22865,22866,22869,22870,22872,22873,22875,22878,22879,22880,22881,22882,22884,22885,22888,22889,22890,22891,22892,22894,22895,22898,22904,22905,22907,22908,22909,22910,22911,22912,22913,22914,22917,22918,22919,22921,22922,22928,22930,22931,22932,22940,22956,22959,22960,22961,22962,22963,22964,22965,22966,22969,22970,22971,22974,22975,22977,22978,22979,22980,22982,22983,22985,22987,22990,22993,22994,22995,22996,22997,22998,22999,23000,23013,23014,23015,23017,23019,23021,23022,23023,23028,23032,23033,23034,23039,23041,23043,23046,23049,23050,23052,23053,23061,23062,23066,23067,23068,23069,23071,23073,23075,23077,23080,23081,23084,23085,23086,23088,23089,23090,23091,23093,23094,23095,23096,23097,23098,23099,23100,23102,23103,23105,23107,23110,23111,23114,23115,23116,23117,23119,23120,23121,23123,23124,23125,23126,23127,23130,23131,23132,23133,23134,23136,23137,23139,23141,23143]]],["+",[66,65,[[0,2,2,0,2,[[17,1,1,0,1],[23,1,1,1,2]]],[2,16,15,2,17,[[91,3,3,2,5],[92,2,2,5,7],[93,1,1,7,8],[95,1,1,8,9],[96,3,2,9,11],[99,2,2,11,13],[110,2,2,13,15],[113,1,1,15,16],[116,1,1,16,17]]],[3,3,3,17,20,[[122,1,1,17,18],[137,1,1,18,19],[148,1,1,19,20]]],[4,2,2,20,22,[[161,1,1,20,21],[170,1,1,21,22]]],[5,2,2,22,24,[[199,1,1,22,23],[207,1,1,23,24]]],[6,1,1,24,25,[[224,1,1,24,25]]],[8,5,5,25,30,[[236,2,2,25,27],[237,1,1,27,28],[259,1,1,28,29],[261,1,1,29,30]]],[9,1,1,30,31,[[288,1,1,30,31]]],[10,6,6,31,37,[[292,1,1,31,32],[297,1,1,32,33],[303,1,1,33,34],[304,1,1,34,35],[308,1,1,35,36],[311,1,1,36,37]]],[11,2,2,37,39,[[325,1,1,37,38],[335,1,1,38,39]]],[13,3,3,39,42,[[379,1,1,39,40],[392,1,1,40,41],[399,1,1,41,42]]],[14,1,1,42,43,[[405,1,1,42,43]]],[18,4,4,43,47,[[510,1,1,43,44],[514,2,2,44,46],[621,1,1,46,47]]],[19,8,8,47,55,[[635,1,1,47,48],[639,1,1,48,49],[643,2,2,49,51],[645,1,1,51,52],[646,1,1,52,53],[647,1,1,53,54],[656,1,1,54,55]]],[22,3,3,55,58,[[707,1,1,55,56],[718,1,1,56,57],[729,1,1,57,58]]],[23,3,3,58,61,[[759,1,1,58,59],[794,1,1,59,60],[795,1,1,60,61]]],[24,2,2,61,63,[[798,1,1,61,62],[799,1,1,62,63]]],[36,1,1,63,64,[[910,1,1,63,64]]],[37,1,1,64,65,[[920,1,1,64,65]]]],[438,641,2765,2772,2773,2781,2792,2801,2867,2909,2914,2989,2990,3351,3366,3455,3592,3835,4354,4740,5182,5385,6168,6384,6913,7232,7233,7251,7845,7916,8603,8785,8982,9190,9233,9354,9454,9875,10169,11462,11750,11920,12108,14374,14473,14489,16320,16637,16721,16841,16873,16923,16939,16978,17250,18208,18447,18690,19318,20186,20217,20341,20372,22873,23017]]],["GOD",[7,7,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,2,2,1,3,[[72,1,1,1,2],[83,1,1,2,3]]],[9,1,1,3,4,[[278,1,1,3,4]]],[10,2,2,4,6,[[292,1,1,4,5],[298,1,1,5,6]]],[22,1,1,6,7,[[681,1,1,6,7]]]],[142,2161,2519,8308,8796,9038,17722]]],["JEHOVAH",[4,4,[[1,1,1,0,1,[[55,1,1,0,1]]],[18,1,1,1,2,[[560,1,1,1,2]]],[22,2,2,2,4,[[690,1,1,2,3],[704,1,1,3,4]]]],[1658,15259,17902,18134]]],["LORD",[6329,5396,[[0,159,138,0,138,[[1,11,11,0,11],[2,9,8,11,19],[3,10,9,19,28],[4,1,1,28,29],[5,4,4,29,33],[6,3,3,33,36],[7,3,2,36,38],[8,1,1,38,39],[9,2,1,39,40],[10,5,4,40,44],[11,7,5,44,49],[12,6,5,49,54],[13,1,1,54,55],[14,5,5,55,60],[15,8,7,60,67],[16,1,1,67,68],[17,9,8,68,76],[18,7,5,76,81],[19,1,1,81,82],[20,3,2,82,84],[21,4,4,84,88],[23,18,16,88,104],[24,4,3,104,107],[25,7,7,107,114],[26,3,3,114,117],[27,4,3,117,120],[28,4,4,120,124],[29,3,3,124,127],[30,2,2,127,129],[31,1,1,129,130],[37,3,2,130,132],[38,8,5,132,137],[48,1,1,137,138]]],[1,386,333,138,471,[[52,7,6,138,144],[53,17,16,144,160],[54,7,6,160,166],[55,13,12,166,178],[56,14,13,178,191],[57,22,18,191,209],[58,23,18,209,227],[59,21,20,227,247],[60,6,6,247,253],[61,17,15,253,268],[62,13,12,268,280],[63,17,15,280,295],[64,16,11,295,306],[65,22,18,306,324],[66,8,7,324,331],[67,6,5,331,336],[68,18,12,336,348],[69,9,7,348,355],[71,2,2,355,357],[72,2,2,357,359],[73,11,10,359,369],[74,1,1,369,370],[76,1,1,370,371],[77,7,6,371,377],[78,13,10,377,387],[79,13,13,387,400],[80,5,5,400,405],[81,12,11,405,416],[82,8,8,416,424],[83,15,12,424,436],[84,10,8,436,444],[85,4,3,444,447],[87,1,1,447,448],[88,11,11,448,459],[89,14,12,459,471]]],[2,289,264,471,735,[[90,9,9,471,480],[91,8,8,480,488],[92,7,7,488,495],[93,16,14,495,509],[94,8,7,509,516],[95,13,13,516,529],[96,14,12,529,541],[97,16,14,541,555],[98,11,9,555,564],[99,13,10,564,574],[100,3,3,574,577],[101,2,2,577,579],[102,1,1,579,580],[103,11,11,580,591],[104,4,4,591,595],[105,11,10,595,605],[106,9,6,605,611],[107,7,7,611,618],[108,22,22,618,640],[109,5,5,640,645],[110,6,6,645,651],[111,21,19,651,670],[112,35,30,670,700],[113,11,11,700,711],[114,6,6,711,717],[115,6,6,717,723],[116,14,12,723,735]]],[3,383,343,735,1078,[[117,4,4,735,739],[118,3,3,739,742],[119,16,14,742,756],[120,8,7,756,763],[121,12,11,763,774],[122,14,14,774,788],[123,3,3,788,791],[124,13,12,791,803],[125,17,12,803,815],[126,12,10,815,825],[127,18,14,825,839],[128,9,8,839,847],[129,2,2,847,849],[130,23,20,849,869],[131,28,24,869,893],[132,26,22,893,915],[133,6,6,915,921],[134,15,14,921,935],[135,4,4,935,939],[136,10,10,939,949],[137,8,7,949,956],[138,16,15,956,971],[139,8,8,971,979],[140,5,4,979,983],[141,6,4,983,987],[142,6,6,987,993],[143,12,12,993,1005],[144,13,13,1005,1018],[145,8,8,1018,1026],[146,7,7,1026,1033],[147,18,15,1033,1048],[148,15,14,1048,1062],[149,5,4,1062,1066],[150,4,4,1066,1070],[151,3,3,1070,1073],[152,6,5,1073,1078]]],[4,542,434,1078,1512,[[153,24,21,1078,1099],[154,16,15,1099,1114],[155,11,8,1114,1122],[156,29,24,1122,1146],[157,24,18,1146,1164],[158,22,18,1164,1182],[159,20,17,1182,1199],[160,13,12,1199,1211],[161,32,21,1211,1232],[162,20,13,1232,1245],[163,17,16,1245,1261],[164,26,19,1261,1280],[165,11,8,1280,1288],[166,11,8,1288,1296],[167,14,12,1296,1308],[168,22,15,1308,1323],[169,11,9,1323,1332],[170,18,13,1332,1345],[171,9,8,1345,1353],[172,7,7,1353,1360],[173,7,6,1360,1366],[174,1,1,1366,1367],[175,16,10,1367,1377],[176,7,6,1377,1383],[177,4,3,1383,1386],[178,20,15,1386,1401],[179,10,8,1401,1409],[180,40,34,1409,1443],[181,20,17,1443,1460],[182,18,12,1460,1472],[183,19,18,1472,1490],[184,8,8,1490,1498],[185,8,8,1498,1506],[186,7,6,1506,1512]]],[5,218,166,1512,1678,[[187,9,6,1512,1518],[188,6,6,1518,1524],[189,6,6,1524,1530],[190,14,12,1530,1542],[191,7,5,1542,1547],[192,16,13,1547,1560],[193,13,11,1560,1571],[194,10,8,1571,1579],[195,6,6,1579,1585],[196,13,11,1585,1596],[197,9,7,1596,1603],[198,2,1,1603,1604],[199,3,3,1604,1607],[200,12,9,1607,1616],[201,1,1,1616,1617],[203,3,2,1617,1619],[204,6,5,1619,1624],[205,2,2,1624,1626],[206,1,1,1626,1627],[207,6,5,1627,1632],[208,35,18,1632,1650],[209,17,11,1650,1661],[210,21,17,1661,1678]]],[6,170,135,1678,1813,[[211,5,5,1678,1683],[212,23,17,1683,1700],[213,15,9,1700,1709],[214,8,7,1709,1716],[215,14,9,1716,1725],[216,25,18,1725,1743],[217,9,9,1743,1752],[218,4,4,1752,1756],[220,7,6,1756,1762],[221,13,12,1762,1774],[222,1,1,1774,1775],[223,18,14,1775,1789],[224,2,2,1789,1791],[225,2,2,1791,1793],[226,2,2,1793,1795],[227,3,3,1795,1798],[228,1,1,1798,1799],[229,1,1,1799,1800],[230,10,7,1800,1807],[231,7,6,1807,1813]]],[7,18,15,1813,1828,[[232,7,6,1813,1819],[233,5,3,1819,1822],[234,2,2,1822,1824],[235,4,4,1824,1828]]],[8,302,229,1828,2057,[[236,21,16,1828,1844],[237,22,15,1844,1859],[238,19,14,1859,1873],[239,5,4,1873,1877],[240,4,4,1877,1881],[241,13,11,1881,1892],[242,17,12,1892,1904],[243,6,6,1904,1910],[244,2,2,1910,1912],[245,9,8,1912,1920],[246,4,3,1920,1923],[247,32,20,1923,1943],[248,6,3,1943,1946],[249,12,10,1946,1956],[250,28,22,1956,1978],[251,15,12,1978,1990],[252,5,4,1990,1994],[253,3,3,1994,1997],[254,3,3,1997,2000],[255,13,11,2000,2011],[256,2,2,2011,2013],[257,3,2,2013,2015],[258,10,7,2015,2022],[259,9,8,2022,2030],[260,12,9,2030,2039],[261,11,7,2039,2046],[263,11,6,2046,2052],[264,1,1,2052,2053],[265,4,4,2053,2057]]],[9,139,119,2057,2176,[[267,1,1,2057,2058],[268,4,3,2058,2061],[269,4,4,2061,2065],[270,2,2,2065,2067],[271,10,9,2067,2076],[272,21,15,2076,2091],[273,11,11,2091,2102],[274,3,3,2102,2105],[276,1,1,2105,2106],[277,1,1,2106,2107],[278,12,11,2107,2118],[280,3,2,2118,2120],[281,6,5,2120,2125],[282,7,5,2125,2130],[283,2,1,2130,2131],[284,3,3,2131,2134],[285,1,1,2134,2135],[286,1,1,2135,2136],[287,6,4,2136,2140],[288,17,16,2140,2156],[289,5,5,2156,2161],[290,18,15,2161,2176]]],[10,249,207,2176,2383,[[291,6,6,2176,2182],[292,16,15,2182,2197],[293,5,5,2197,2202],[295,7,5,2202,2207],[296,5,5,2207,2212],[297,5,4,2212,2216],[298,35,28,2216,2244],[299,10,8,2244,2252],[300,5,4,2252,2256],[301,10,8,2256,2264],[302,6,3,2264,2267],[303,17,12,2267,2279],[304,12,12,2279,2291],[305,11,11,2291,2302],[306,11,10,2302,2312],[307,14,11,2312,2323],[308,22,19,2323,2342],[309,12,8,2342,2350],[310,9,6,2350,2356],[311,8,7,2356,2363],[312,23,20,2363,2383]]],[11,273,225,2383,2608,[[313,6,6,2383,2389],[314,13,10,2389,2399],[315,11,10,2399,2409],[316,6,6,2409,2415],[317,7,6,2415,2421],[318,8,5,2421,2426],[319,5,4,2426,2430],[320,7,7,2430,2437],[321,10,7,2437,2444],[322,9,7,2444,2451],[323,10,9,2451,2460],[324,14,10,2460,2470],[325,6,6,2470,2476],[326,7,7,2476,2483],[327,10,10,2483,2493],[328,6,5,2493,2498],[329,28,25,2498,2523],[330,16,12,2523,2535],[331,19,14,2535,2549],[332,14,11,2549,2560],[333,14,11,2560,2571],[334,15,11,2571,2582],[335,18,16,2582,2598],[336,10,7,2598,2605],[337,4,3,2605,2608]]],[12,174,144,2608,2752,[[339,1,1,2608,2609],[343,3,3,2609,2612],[346,3,3,2612,2615],[347,3,2,2615,2617],[348,7,6,2617,2623],[349,1,1,2623,2624],[350,5,5,2624,2629],[351,3,3,2629,2632],[352,10,10,2632,2642],[353,25,20,2642,2662],[354,14,13,2662,2675],[355,3,3,2675,2678],[356,1,1,2678,2679],[358,23,19,2679,2698],[359,18,12,2698,2710],[360,10,9,2710,2719],[361,2,1,2719,2720],[362,3,3,2720,2723],[363,4,4,2723,2727],[364,1,1,2727,2728],[365,15,11,2728,2739],[366,19,13,2739,2752]]],[13,379,304,2752,3056,[[367,5,5,2752,2757],[368,6,4,2757,2761],[369,1,1,2761,2762],[370,1,1,2762,2763],[371,8,6,2763,2769],[372,16,13,2769,2782],[373,15,11,2782,2793],[374,6,4,2793,2797],[375,4,3,2797,2800],[376,1,1,2800,2801],[377,6,4,2801,2805],[378,11,10,2805,2815],[379,10,8,2815,2823],[380,11,8,2823,2831],[381,10,9,2831,2840],[382,5,5,2840,2845],[383,6,6,2845,2851],[384,18,15,2851,2866],[385,11,8,2866,2874],[386,23,19,2874,2893],[387,7,7,2893,2900],[388,3,3,2900,2903],[389,11,8,2903,2911],[390,19,14,2911,2925],[391,6,6,2925,2931],[392,9,8,2931,2939],[393,4,3,2939,2942],[394,15,13,2942,2955],[395,27,20,2955,2975],[396,19,14,2975,2989],[397,11,10,2989,2999],[398,9,9,2999,3008],[399,18,14,3008,3022],[400,22,14,3022,3036],[401,9,7,3036,3043],[402,16,13,3043,3056]]],[14,36,28,3056,3084,[[403,6,5,3056,3061],[404,1,1,3061,3062],[405,10,6,3062,3068],[406,2,2,3068,3070],[408,2,2,3070,3072],[409,7,5,3072,3077],[410,4,3,3077,3080],[411,3,3,3080,3083],[412,1,1,3083,3084]]],[15,17,15,3084,3099,[[413,1,1,3084,3085],[417,1,1,3085,3086],[420,6,5,3086,3091],[421,6,5,3091,3096],[422,3,3,3096,3099]]],[17,32,23,3099,3122,[[436,10,6,3099,3105],[437,8,6,3105,3111],[447,1,1,3111,3112],[473,1,1,3112,3113],[475,3,3,3113,3116],[477,9,6,3116,3122]]],[18,667,610,3122,3732,[[478,2,2,3122,3124],[479,3,3,3124,3127],[480,6,6,3127,3133],[481,5,4,3133,3137],[482,5,5,3137,3142],[483,8,6,3142,3148],[484,7,5,3148,3153],[485,2,2,3153,3155],[486,9,9,3155,3164],[487,5,5,3164,3169],[488,4,4,3169,3173],[489,5,5,3173,3178],[490,3,3,3178,3181],[491,4,4,3181,3185],[492,2,2,3185,3187],[493,4,4,3187,3191],[494,3,3,3191,3194],[495,16,16,3194,3210],[496,7,4,3210,3214],[497,5,5,3214,3219],[498,4,4,3219,3223],[499,5,5,3223,3228],[500,2,2,3228,3230],[501,5,4,3230,3234],[502,10,10,3234,3244],[503,6,5,3244,3249],[504,13,9,3249,3258],[505,5,5,3258,3263],[506,18,10,3263,3273],[507,9,8,3273,3281],[508,10,9,3281,3290],[509,4,4,3290,3294],[510,12,12,3294,3306],[511,16,16,3306,3322],[512,8,8,3322,3330],[513,2,2,3330,3332],[514,13,13,3332,3345],[515,3,3,3345,3348],[516,2,2,3348,3350],[517,9,8,3350,3358],[518,6,6,3358,3364],[519,1,1,3364,3365],[523,3,3,3365,3368],[524,2,2,3368,3370],[525,2,2,3370,3372],[527,1,1,3372,3373],[531,1,1,3373,3374],[532,2,2,3374,3376],[533,1,1,3376,3377],[535,1,1,3377,3378],[536,3,3,3378,3381],[541,1,1,3381,3382],[545,1,1,3382,3383],[546,4,4,3383,3387],[547,2,2,3387,3389],[548,1,1,3389,3390],[549,1,1,3390,3391],[551,1,1,3391,3392],[552,1,1,3392,3393],[553,1,1,3393,3394],[555,2,2,3394,3396],[556,1,1,3396,3397],[557,2,2,3397,3399],[558,2,2,3399,3401],[560,1,1,3401,3402],[561,7,6,3402,3408],[562,4,4,3408,3412],[563,4,4,3412,3416],[564,2,2,3416,3418],[565,4,4,3418,3422],[566,10,9,3422,3431],[567,1,1,3431,3432],[568,2,2,3432,3434],[569,7,7,3434,3441],[570,5,4,3441,3445],[571,9,9,3445,3454],[572,3,3,3454,3457],[573,11,9,3457,3466],[574,6,6,3466,3472],[575,6,6,3472,3478],[576,7,6,3478,3484],[577,4,4,3484,3488],[578,2,2,3488,3490],[579,7,7,3490,3497],[580,11,10,3497,3507],[581,9,7,3507,3514],[582,5,5,3514,3519],[583,9,9,3519,3528],[584,12,12,3528,3540],[585,1,1,3540,3541],[586,6,6,3541,3547],[587,3,3,3547,3550],[588,4,4,3550,3554],[589,2,2,3554,3556],[590,5,4,3556,3560],[592,9,8,3560,3568],[593,14,13,3568,3581],[594,2,2,3581,3583],[595,21,18,3583,3601],[596,24,24,3601,3625],[597,2,2,3625,3627],[598,5,4,3627,3631],[599,3,3,3631,3634],[600,2,2,3634,3636],[601,4,4,3636,3640],[602,4,4,3640,3644],[603,4,4,3644,3648],[604,3,2,3648,3650],[605,3,3,3650,3653],[606,3,2,3653,3655],[607,4,3,3655,3658],[608,2,2,3658,3660],[609,6,6,3660,3666],[610,1,1,3666,3667],[611,5,3,3667,3670],[612,15,10,3670,3680],[613,1,1,3680,3681],[614,1,1,3681,3682],[615,6,4,3682,3686],[616,3,3,3686,3689],[617,6,5,3689,3694],[618,2,2,3694,3696],[619,3,2,3696,3698],[620,4,4,3698,3702],[621,3,3,3702,3705],[622,9,9,3705,3714],[623,9,7,3714,3721],[624,5,5,3721,3726],[625,4,4,3726,3730],[626,2,2,3730,3732]]],[19,78,78,3732,3810,[[628,2,2,3732,3734],[629,2,2,3734,3736],[630,9,9,3736,3745],[632,1,1,3745,3746],[633,1,1,3746,3747],[635,2,2,3747,3749],[636,1,1,3749,3750],[637,4,4,3750,3754],[638,2,2,3754,3756],[639,1,1,3756,3757],[641,3,3,3757,3760],[642,9,9,3760,3769],[643,8,8,3769,3777],[644,2,2,3777,3779],[645,1,1,3779,3780],[646,4,4,3780,3784],[647,5,5,3784,3789],[648,5,5,3789,3794],[649,6,6,3794,3800],[650,1,1,3800,3801],[651,2,2,3801,3803],[652,1,1,3803,3804],[655,2,2,3804,3806],[656,2,2,3806,3808],[657,1,1,3808,3809],[658,1,1,3809,3810]]],[22,413,362,3810,4172,[[679,9,9,3810,3819],[680,9,8,3819,3827],[681,6,6,3827,3833],[682,2,2,3833,3835],[683,6,6,3835,3841],[684,3,3,3841,3844],[685,6,6,3844,3850],[686,8,7,3850,3857],[687,5,5,3857,3862],[688,3,3,3862,3865],[689,5,4,3865,3869],[690,3,3,3869,3872],[691,5,5,3872,3877],[692,10,9,3877,3886],[694,2,2,3886,3888],[695,2,2,3888,3890],[696,3,2,3890,3892],[697,17,12,3892,3904],[698,2,2,3904,3906],[699,2,2,3906,3908],[700,4,3,3908,3911],[701,5,4,3911,3915],[702,7,6,3915,3921],[703,5,5,3921,3926],[704,10,10,3926,3936],[705,4,4,3936,3940],[706,5,5,3940,3945],[707,4,4,3945,3949],[708,11,10,3949,3959],[709,6,5,3959,3964],[710,1,1,3964,3965],[711,8,6,3965,3971],[712,4,3,3971,3974],[713,2,2,3974,3976],[714,7,5,3976,3981],[715,19,15,3981,3996],[716,10,8,3996,4004],[717,3,3,4004,4007],[718,7,6,4007,4013],[719,7,7,4013,4020],[720,8,8,4020,4028],[721,8,8,4028,4036],[722,8,5,4036,4041],[723,16,15,4041,4056],[725,1,1,4056,4057],[726,7,6,4057,4063],[727,13,11,4063,4074],[728,3,2,4074,4076],[729,10,8,4076,4084],[730,8,7,4084,4091],[731,4,3,4091,4094],[732,8,7,4094,4101],[733,5,5,4101,4106],[734,6,4,4106,4110],[735,1,1,4110,4111],[736,7,6,4111,4117],[737,7,5,4117,4122],[738,9,9,4122,4131],[739,7,7,4131,4138],[740,8,8,4138,4146],[741,6,4,4146,4150],[742,3,3,4150,4153],[743,5,5,4153,4158],[744,18,14,4158,4172]]],[23,692,605,4172,4777,[[745,12,11,4172,4183],[746,15,14,4183,4197],[747,19,14,4197,4211],[748,9,9,4211,4220],[749,14,14,4220,4234],[750,10,10,4234,4244],[751,15,12,4244,4256],[752,12,11,4256,4267],[753,14,13,4267,4280],[754,9,9,4280,4289],[755,13,12,4289,4301],[756,7,7,4301,4308],[757,14,14,4308,4322],[758,10,9,4322,4331],[759,9,9,4331,4340],[760,14,11,4340,4351],[761,14,11,4351,4362],[762,7,7,4362,4369],[763,8,7,4369,4376],[764,11,10,4376,4386],[765,11,10,4386,4396],[766,13,13,4396,4409],[767,41,29,4409,4438],[768,7,6,4438,4444],[769,19,18,4444,4462],[770,18,14,4462,4476],[771,15,12,4476,4488],[772,14,12,4488,4500],[773,25,20,4500,4520],[774,16,15,4520,4535],[775,34,27,4535,4562],[776,17,16,4562,4578],[777,20,15,4578,4593],[778,13,9,4593,4602],[779,9,8,4602,4610],[780,14,13,4610,4623],[781,6,6,4623,4629],[782,7,7,4629,4636],[783,4,4,4636,4640],[784,4,3,4640,4643],[785,1,1,4643,4644],[786,20,14,4644,4658],[787,7,6,4658,4664],[788,14,12,4664,4676],[789,4,4,4676,4680],[790,9,9,4680,4689],[791,5,5,4689,4694],[792,15,15,4694,4709],[793,21,20,4709,4729],[794,22,20,4729,4749],[795,25,23,4749,4772],[796,6,5,4772,4777]]],[24,28,28,4777,4805,[[797,7,7,4777,4784],[798,5,5,4784,4789],[799,10,10,4789,4799],[800,3,3,4799,4802],[801,3,3,4802,4805]]],[25,212,197,4805,5002,[[802,3,2,4805,4807],[804,5,5,4807,4812],[805,1,1,4812,4813],[806,3,3,4813,4816],[807,5,5,4816,4821],[808,5,5,4821,4826],[809,4,2,4826,4828],[810,3,2,4828,4830],[811,2,2,4830,4832],[812,8,7,4832,4839],[813,9,9,4839,4848],[814,9,8,4848,4856],[815,6,6,4856,4862],[816,2,2,4862,4864],[817,4,4,4864,4868],[818,5,4,4868,4872],[819,1,1,4872,4873],[821,14,14,4873,4887],[822,7,7,4887,4894],[823,7,7,4894,4901],[824,2,2,4901,4903],[825,5,5,4903,4908],[826,5,5,4908,4913],[827,3,3,4913,4916],[828,1,1,4916,4917],[829,6,6,4917,4923],[830,5,5,4923,4928],[831,9,9,4928,4937],[832,1,1,4937,4938],[833,3,3,4938,4941],[834,5,5,4941,4946],[835,7,6,4946,4952],[836,6,6,4952,4958],[837,8,7,4958,4965],[838,9,7,4965,4972],[839,2,2,4972,4974],[840,4,4,4974,4978],[841,2,2,4978,4980],[842,1,1,4980,4981],[843,1,1,4981,4982],[844,4,3,4982,4985],[845,7,4,4985,4989],[846,3,3,4989,4992],[847,6,6,4992,4998],[849,4,4,4998,5002]]],[26,7,6,5002,5008,[[858,7,6,5002,5008]]],[27,45,38,5008,5046,[[862,6,4,5008,5012],[863,4,4,5012,5016],[864,4,2,5016,5018],[865,5,4,5018,5022],[866,3,3,5022,5025],[867,2,2,5025,5027],[868,1,1,5027,5028],[869,2,2,5028,5030],[870,4,3,5030,5033],[871,2,2,5033,5035],[872,2,2,5035,5037],[873,5,4,5037,5041],[874,2,2,5041,5043],[875,3,3,5043,5046]]],[28,32,26,5046,5072,[[876,6,5,5046,5051],[877,18,14,5051,5065],[878,8,7,5065,5072]]],[29,60,56,5072,5128,[[879,8,8,5072,5080],[880,7,6,5080,5086],[881,5,5,5086,5091],[882,7,7,5091,5098],[883,11,10,5098,5108],[884,4,4,5108,5112],[885,8,6,5112,5118],[886,4,4,5118,5122],[887,6,6,5122,5128]]],[30,5,5,5128,5133,[[888,5,5,5128,5133]]],[31,26,21,5133,5154,[[889,12,8,5133,5141],[890,6,6,5141,5147],[891,2,2,5147,5149],[892,6,5,5149,5154]]],[32,37,34,5154,5188,[[893,3,3,5154,5157],[894,4,4,5157,5161],[895,5,4,5161,5165],[896,10,9,5165,5174],[897,4,3,5174,5177],[898,6,6,5177,5183],[899,5,5,5183,5188]]],[33,13,10,5188,5198,[[900,10,7,5188,5195],[901,2,2,5195,5197],[902,1,1,5197,5198]]],[34,12,10,5198,5208,[[903,3,2,5198,5200],[904,4,4,5200,5204],[905,5,4,5204,5208]]],[35,29,25,5208,5233,[[906,13,10,5208,5218],[907,7,7,5218,5225],[908,9,8,5225,5233]]],[36,31,23,5233,5256,[[909,13,10,5233,5243],[910,18,13,5243,5256]]],[37,130,102,5256,5358,[[911,20,14,5256,5270],[912,10,8,5270,5278],[913,9,7,5278,5285],[914,5,4,5285,5289],[915,1,1,5289,5290],[916,8,5,5290,5295],[917,10,9,5295,5304],[918,22,16,5304,5320],[919,5,4,5320,5324],[920,7,6,5324,5330],[921,7,6,5330,5336],[922,7,5,5336,5341],[923,5,5,5341,5346],[924,14,12,5346,5358]]],[38,46,38,5358,5396,[[925,15,12,5358,5370],[926,13,10,5370,5380],[927,15,13,5380,5393],[928,3,3,5393,5396]]]],[34,35,37,38,39,45,46,48,49,51,52,56,63,64,68,69,76,77,78,80,82,83,85,88,92,94,95,105,134,140,143,144,145,160,164,175,203,204,231,243,271,272,274,275,299,302,305,306,315,322,328,331,332,336,358,361,364,366,367,378,383,386,388,390,391,392,394,398,425,437,441,443,444,446,450,457,470,471,473,481,484,513,514,546,558,561,562,563,592,594,598,603,612,617,618,622,626,631,633,635,639,642,643,647,679,680,681,694,704,714,716,717,720,721,734,747,754,786,789,794,826,827,828,830,854,857,860,876,922,937,1126,1129,1151,1152,1154,1170,1172,1491,1581,1583,1586,1594,1595,1597,1602,1603,1605,1606,1607,1611,1612,1615,1620,1622,1623,1625,1628,1629,1631,1632,1633,1634,1635,1649,1653,1654,1656,1657,1661,1662,1663,1665,1667,1668,1681,1683,1684,1685,1686,1690,1691,1693,1695,1698,1699,1701,1702,1704,1705,1707,1710,1711,1715,1718,1720,1722,1723,1725,1726,1729,1730,1732,1734,1736,1737,1738,1739,1740,1741,1743,1745,1746,1747,1748,1750,1754,1755,1762,1763,1764,1765,1769,1770,1771,1772,1775,1777,1778,1779,1780,1784,1785,1786,1787,1788,1789,1790,1793,1794,1795,1796,1797,1798,1801,1802,1803,1804,1807,1809,1810,1813,1815,1816,1817,1828,1830,1839,1841,1844,1845,1847,1852,1857,1858,1859,1864,1866,1867,1868,1870,1872,1873,1875,1876,1878,1879,1881,1882,1883,1888,1890,1893,1897,1899,1902,1903,1904,1907,1910,1913,1914,1915,1916,1919,1920,1921,1923,1926,1931,1936,1937,1938,1939,1941,1945,1946,1950,1951,1953,1954,1955,1956,1957,1958,1959,1962,1963,1970,1972,1975,1976,1979,1980,1981,1984,1985,1987,1988,1990,1997,1999,2000,2007,2008,2009,2010,2029,2033,2034,2035,2036,2037,2044,2046,2047,2048,2049,2050,2053,2056,2058,2061,2062,2063,2073,2124,2133,2163,2169,2178,2179,2180,2181,2182,2184,2185,2189,2193,2194,2196,2293,2305,2322,2323,2328,2329,2331,2347,2354,2359,2360,2361,2362,2364,2377,2378,2382,2390,2392,2393,2394,2395,2396,2397,2398,2399,2402,2404,2416,2419,2421,2432,2433,2435,2437,2443,2445,2447,2449,2452,2465,2467,2468,2469,2471,2473,2474,2478,2480,2484,2485,2490,2492,2494,2497,2500,2501,2502,2506,2510,2520,2522,2523,2524,2528,2530,2532,2533,2535,2536,2541,2553,2560,2561,2567,2568,2571,2655,2665,2669,2671,2685,2690,2693,2694,2695,2696,2706,2707,2708,2723,2726,2728,2730,2732,2734,2736,2739,2741,2742,2745,2746,2747,2748,2750,2754,2756,2758,2759,2762,2763,2764,2770,2771,2773,2774,2776,2778,2779,2783,2784,2785,2787,2789,2790,2796,2797,2798,2799,2802,2808,2810,2812,2813,2817,2819,2822,2826,2830,2836,2837,2842,2844,2845,2847,2849,2850,2851,2855,2856,2857,2863,2864,2868,2869,2870,2871,2873,2874,2884,2890,2893,2899,2900,2901,2904,2907,2908,2909,2915,2917,2918,2921,2922,2926,2930,2934,2938,2943,2944,2945,2946,2951,2952,2953,2955,2957,2958,2959,2960,2963,2974,2976,2977,2978,2979,2980,2983,2984,2985,2988,2992,2994,2996,2998,3041,3042,3045,3051,3053,3112,3122,3123,3127,3129,3134,3135,3138,3140,3142,3144,3169,3182,3183,3198,3202,3203,3208,3209,3211,3213,3214,3219,3231,3235,3236,3237,3239,3240,3241,3244,3252,3253,3255,3256,3257,3272,3281,3282,3283,3284,3285,3286,3289,3291,3293,3295,3297,3299,3302,3303,3305,3306,3309,3311,3312,3313,3315,3317,3318,3319,3325,3326,3342,3344,3346,3353,3357,3360,3361,3368,3370,3371,3372,3377,3378,3384,3385,3386,3387,3390,3391,3393,3395,3396,3398,3399,3400,3401,3402,3403,3404,3405,3406,3408,3410,3411,3413,3414,3415,3418,3419,3420,3422,3424,3425,3427,3428,3429,3430,3435,3436,3438,3439,3440,3441,3442,3443,3445,3446,3447,3449,3450,3452,3453,3454,3458,3459,3462,3468,3469,3470,3471,3473,3486,3507,3524,3525,3526,3537,3568,3569,3570,3571,3572,3579,3581,3584,3586,3591,3593,3598,3600,3602,3604,3605,3623,3652,3658,3659,3691,3692,3693,3696,3697,3703,3705,3706,3708,3731,3732,3733,3734,3736,3737,3743,3744,3760,3764,3780,3784,3788,3792,3793,3796,3797,3798,3800,3803,3808,3810,3813,3817,3822,3824,3825,3828,3829,3831,3837,3839,3840,3843,3844,3845,3847,3848,3849,3853,3854,3861,3940,3942,3943,3944,3949,3950,3951,3952,3959,3960,3961,3962,3966,3970,3972,3973,3974,3975,3978,3979,3983,3984,3985,3988,3989,3997,3998,4001,4017,4020,4021,4022,4023,4024,4025,4026,4027,4034,4035,4040,4042,4044,4047,4048,4049,4053,4055,4057,4061,4063,4064,4065,4067,4068,4072,4073,4076,4078,4111,4116,4117,4118,4119,4121,4122,4124,4126,4128,4129,4134,4136,4143,4145,4148,4149,4150,4151,4152,4154,4156,4157,4160,4161,4163,4166,4167,4168,4170,4172,4174,4175,4176,4177,4178,4181,4183,4184,4188,4189,4190,4192,4194,4197,4199,4201,4203,4205,4209,4210,4211,4213,4214,4217,4222,4223,4224,4229,4230,4232,4234,4235,4236,4238,4240,4245,4251,4253,4254,4255,4257,4258,4263,4265,4269,4270,4272,4274,4276,4277,4281,4282,4283,4285,4286,4290,4291,4302,4309,4314,4315,4317,4318,4320,4323,4324,4327,4334,4338,4342,4343,4346,4347,4348,4356,4374,4383,4388,4393,4394,4397,4398,4399,4400,4401,4402,4403,4406,4407,4409,4410,4419,4421,4424,4428,4432,4433,4437,4442,4447,4452,4457,4459,4474,4475,4481,4487,4490,4493,4498,4541,4550,4554,4557,4559,4560,4565,4566,4569,4570,4571,4572,4575,4576,4577,4578,4580,4583,4584,4585,4588,4590,4592,4593,4596,4601,4603,4604,4610,4614,4616,4620,4621,4644,4647,4648,4649,4650,4651,4653,4656,4660,4664,4665,4667,4671,4680,4685,4689,4692,4693,4694,4695,4705,4711,4714,4716,4718,4722,4725,4727,4730,4731,4732,4738,4739,4740,4741,4745,4747,4749,4750,4762,4764,4798,4810,4817,4829,4832,4845,4846,4854,4879,4881,4884,4885,4889,4892,4895,4898,4900,4902,4903,4911,4912,4913,4917,4918,4919,4922,4923,4924,4926,4928,4929,4933,4934,4935,4937,4939,4940,4945,4947,4950,4952,4953,4955,4959,4967,4968,4969,4971,4974,4975,4977,4978,4993,4995,4996,4997,4998,5001,5005,5006,5007,5008,5009,5011,5014,5016,5018,5019,5023,5024,5025,5027,5028,5029,5031,5033,5034,5035,5038,5039,5043,5044,5055,5056,5057,5058,5059,5062,5064,5065,5067,5068,5069,5075,5077,5078,5080,5081,5085,5086,5087,5088,5089,5090,5091,5096,5098,5099,5101,5102,5103,5104,5105,5106,5107,5108,5110,5111,5112,5113,5115,5117,5118,5119,5120,5123,5126,5127,5129,5130,5131,5132,5133,5134,5136,5138,5139,5140,5142,5143,5144,5147,5148,5151,5155,5156,5157,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5173,5175,5176,5177,5179,5180,5181,5182,5183,5185,5187,5190,5191,5194,5195,5196,5197,5198,5199,5201,5203,5206,5208,5209,5210,5212,5215,5217,5220,5221,5225,5229,5230,5231,5233,5235,5236,5237,5239,5241,5244,5245,5247,5249,5250,5251,5252,5254,5255,5258,5260,5261,5265,5266,5267,5268,5269,5271,5275,5276,5277,5282,5284,5288,5289,5290,5291,5292,5311,5313,5314,5315,5316,5319,5323,5324,5325,5326,5328,5329,5333,5334,5337,5338,5339,5340,5343,5344,5347,5348,5349,5350,5352,5353,5357,5358,5359,5360,5362,5363,5364,5365,5366,5372,5374,5376,5378,5379,5380,5383,5386,5389,5390,5391,5393,5396,5397,5398,5399,5400,5401,5405,5406,5407,5408,5409,5414,5415,5416,5420,5423,5428,5431,5440,5441,5443,5444,5445,5448,5452,5455,5456,5457,5470,5475,5501,5502,5503,5505,5508,5514,5518,5520,5521,5523,5529,5534,5538,5540,5543,5544,5562,5563,5566,5567,5568,5569,5570,5571,5573,5574,5576,5577,5579,5580,5582,5583,5584,5585,5587,5588,5590,5591,5592,5594,5595,5600,5612,5613,5618,5619,5620,5621,5622,5623,5624,5626,5631,5632,5633,5635,5636,5638,5639,5646,5647,5648,5656,5658,5659,5660,5663,5664,5669,5670,5672,5673,5674,5675,5676,5679,5680,5681,5683,5685,5689,5691,5694,5697,5699,5700,5701,5702,5703,5704,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5724,5728,5730,5731,5732,5733,5734,5735,5736,5737,5739,5740,5741,5742,5743,5744,5753,5754,5755,5757,5761,5764,5770,5777,5785,5788,5794,5806,5812,5817,5821,5822,5823,5831,5833,5839,5840,5843,5844,5848,5849,5850,5852,5860,5862,5864,5866,5868,5878,5879,5880,5881,5883,5893,5896,5898,5900,5902,5906,5910,5911,5915,5917,5918,5920,5921,5923,5924,5925,5928,5933,5934,5935,5936,5940,5943,5948,5951,5955,5956,5957,5960,5961,5962,5965,5966,5968,5973,5975,5976,5977,5982,5986,5989,5990,5991,5995,5996,5999,6001,6002,6003,6009,6010,6020,6029,6032,6033,6035,6046,6051,6055,6056,6061,6064,6072,6074,6075,6076,6078,6083,6089,6094,6096,6104,6106,6113,6115,6116,6119,6122,6127,6130,6136,6155,6162,6187,6189,6192,6193,6194,6195,6196,6197,6199,6201,6215,6279,6289,6296,6299,6300,6301,6303,6371,6372,6373,6383,6389,6424,6425,6426,6428,6429,6430,6431,6435,6442,6443,6444,6445,6448,6449,6450,6451,6453,6454,6455,6457,6460,6461,6463,6465,6468,6469,6470,6471,6473,6474,6475,6476,6478,6483,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6502,6503,6505,6507,6510,6511,6513,6528,6531,6546,6549,6550,6552,6553,6555,6556,6557,6558,6559,6560,6561,6562,6563,6565,6567,6568,6569,6572,6575,6576,6577,6578,6580,6583,6596,6600,6601,6602,6605,6608,6613,6614,6625,6626,6627,6628,6632,6634,6636,6646,6654,6655,6660,6661,6662,6664,6665,6666,6667,6668,6670,6675,6676,6677,6678,6679,6680,6681,6688,6696,6698,6699,6701,6703,6709,6712,6714,6716,6726,6738,6742,6753,6817,6818,6821,6822,6826,6827,6838,6839,6840,6850,6852,6853,6856,6858,6859,6861,6864,6865,6872,6885,6887,6892,6897,6899,6900,6901,6902,6903,6904,6905,6907,6908,6909,6915,6928,6943,6947,6969,6977,6982,6983,6993,6999,7042,7055,7072,7077,7080,7081,7082,7089,7105,7107,7109,7110,7117,7121,7133,7135,7136,7140,7144,7148,7153,7161,7169,7182,7185,7201,7202,7203,7204,7215,7217,7218,7219,7221,7222,7223,7224,7227,7231,7234,7235,7236,7238,7239,7240,7241,7242,7243,7246,7247,7250,7252,7257,7258,7260,7261,7265,7266,7267,7270,7277,7279,7280,7282,7283,7284,7285,7286,7287,7291,7294,7295,7296,7297,7300,7301,7302,7303,7322,7323,7325,7328,7332,7333,7339,7342,7345,7346,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7360,7361,7362,7364,7365,7369,7375,7376,7379,7387,7390,7391,7406,7408,7419,7424,7435,7436,7437,7440,7442,7443,7452,7458,7460,7463,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7482,7483,7484,7497,7498,7499,7514,7518,7520,7531,7541,7542,7543,7547,7549,7553,7561,7562,7570,7571,7573,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7588,7590,7591,7593,7595,7596,7597,7599,7600,7602,7603,7604,7605,7607,7608,7609,7613,7655,7663,7664,7665,7688,7690,7704,7711,7712,7715,7733,7738,7742,7743,7744,7745,7746,7751,7752,7753,7772,7778,7779,7797,7804,7812,7814,7820,7821,7822,7828,7831,7843,7845,7849,7851,7854,7857,7858,7860,7887,7889,7890,7891,7892,7893,7895,7899,7900,7915,7917,7921,7924,7925,7928,7929,7948,7952,7958,7959,7960,7961,7973,7984,7986,8001,8004,8034,8050,8054,8055,8090,8099,8109,8120,8128,8129,8134,8135,8142,8144,8151,8152,8155,8156,8157,8159,8162,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8178,8181,8183,8184,8185,8188,8191,8202,8204,8205,8206,8207,8215,8220,8223,8252,8286,8287,8291,8293,8295,8297,8299,8300,8301,8306,8310,8311,8367,8373,8396,8397,8410,8414,8420,8434,8436,8437,8438,8444,8463,8497,8506,8509,8518,8573,8581,8583,8586,8589,8603,8604,8606,8609,8616,8618,8621,8623,8624,8627,8631,8633,8634,8644,8649,8652,8655,8663,8665,8669,8670,8693,8695,8702,8703,8704,8706,8707,8708,8709,8710,8711,8713,8715,8716,8717,8734,8746,8747,8753,8754,8765,8773,8774,8778,8793,8794,8797,8798,8799,8800,8802,8803,8812,8813,8814,8815,8817,8818,8819,8821,8823,8881,8882,8883,8885,8890,8897,8898,8907,8915,8933,8946,8974,8979,8985,8986,8989,8991,8994,8995,8996,8997,9000,9002,9003,9005,9006,9007,9008,9010,9013,9029,9039,9041,9042,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9059,9060,9061,9066,9076,9080,9084,9088,9091,9110,9112,9114,9117,9118,9119,9122,9139,9166,9175,9178,9185,9186,9187,9189,9190,9193,9201,9202,9204,9205,9210,9216,9223,9225,9229,9231,9232,9233,9236,9239,9240,9242,9244,9246,9252,9253,9254,9260,9263,9264,9267,9275,9278,9279,9283,9284,9290,9295,9296,9302,9308,9309,9313,9316,9317,9318,9319,9322,9325,9329,9331,9333,9337,9338,9339,9341,9342,9344,9345,9351,9353,9354,9356,9359,9362,9363,9365,9371,9372,9373,9377,9378,9379,9380,9387,9391,9394,9396,9397,9398,9399,9401,9402,9421,9422,9436,9443,9444,9450,9468,9470,9471,9474,9476,9477,9479,9485,9487,9488,9491,9492,9494,9495,9496,9497,9499,9500,9501,9502,9503,9504,9508,9518,9523,9532,9533,9536,9537,9539,9548,9549,9550,9552,9553,9554,9555,9556,9557,9565,9567,9572,9575,9578,9586,9587,9588,9589,9590,9591,9592,9593,9594,9604,9630,9633,9636,9646,9647,9648,9658,9663,9664,9665,9667,9691,9692,9694,9701,9707,9708,9709,9723,9726,9728,9735,9737,9740,9745,9746,9754,9759,9762,9763,9768,9781,9782,9792,9803,9809,9810,9816,9823,9824,9825,9832,9833,9836,9839,9842,9844,9846,9847,9848,9852,9854,9859,9860,9861,9862,9863,9864,9866,9868,9873,9874,9875,9876,9882,9894,9899,9902,9910,9920,9921,9922,9923,9928,9930,9934,9937,9943,9949,9953,9959,9960,9962,9965,9966,9971,9977,9981,9985,9990,9991,9992,9994,9995,9996,9997,9998,9999,10000,10001,10002,10003,10004,10006,10008,10011,10015,10016,10017,10018,10019,10022,10024,10027,10029,10030,10031,10036,10039,10040,10046,10049,10054,10056,10059,10062,10065,10067,10075,10076,10077,10078,10080,10081,10082,10092,10093,10094,10096,10099,10100,10101,10102,10103,10106,10107,10109,10114,10115,10117,10121,10123,10124,10125,10126,10128,10129,10131,10135,10139,10141,10147,10148,10149,10150,10153,10154,10158,10160,10161,10163,10164,10167,10168,10171,10172,10174,10176,10177,10181,10186,10188,10189,10190,10191,10192,10197,10202,10204,10205,10206,10211,10215,10221,10222,10231,10235,10238,10309,10469,10485,10486,10634,10635,10638,10672,10673,10675,10676,10682,10683,10687,10691,10743,10762,10766,10770,10771,10774,10776,10784,10791,10793,10794,10803,10804,10805,10806,10816,10817,10819,10820,10822,10824,10827,10828,10830,10831,10834,10843,10845,10846,10848,10849,10851,10853,10854,10856,10857,10859,10860,10861,10864,10867,10870,10873,10879,10880,10882,10883,10885,10886,10887,10889,10890,10896,10901,10903,10920,10937,10943,10944,10945,10946,10947,10948,10949,10950,10951,10952,10953,10956,10958,10960,10961,10962,10963,10964,10965,10969,10970,10971,10972,10975,10976,10977,10978,10980,10982,10983,10987,10988,10996,11007,11008,11011,11013,11014,11015,11034,11049,11052,11053,11089,11099,11104,11107,11132,11145,11147,11148,11151,11152,11153,11155,11156,11161,11162,11163,11165,11169,11172,11173,11174,11175,11180,11182,11184,11185,11186,11187,11189,11195,11197,11199,11200,11203,11212,11215,11222,11223,11230,11262,11269,11270,11275,11278,11281,11282,11283,11286,11289,11290,11292,11293,11294,11296,11298,11299,11301,11323,11324,11325,11326,11327,11328,11330,11331,11334,11335,11336,11345,11346,11347,11357,11358,11362,11368,11372,11375,11410,11416,11418,11428,11430,11438,11439,11442,11443,11444,11446,11448,11449,11450,11451,11458,11461,11463,11464,11465,11467,11471,11473,11477,11479,11481,11482,11486,11487,11488,11489,11492,11494,11498,11499,11501,11502,11503,11504,11505,11511,11516,11517,11518,11521,11526,11528,11529,11532,11533,11539,11546,11548,11549,11552,11553,11555,11557,11558,11560,11561,11562,11564,11565,11569,11573,11578,11580,11582,11583,11584,11585,11586,11587,11590,11591,11592,11593,11600,11601,11602,11604,11605,11606,11607,11608,11609,11613,11614,11615,11616,11619,11624,11630,11631,11634,11636,11638,11640,11642,11648,11651,11653,11659,11661,11662,11668,11670,11674,11675,11676,11679,11681,11683,11684,11685,11686,11689,11691,11695,11696,11697,11698,11699,11701,11706,11708,11711,11713,11719,11731,11736,11737,11748,11749,11750,11751,11752,11753,11757,11758,11761,11765,11767,11769,11770,11773,11774,11775,11777,11783,11785,11786,11788,11789,11793,11794,11796,11797,11799,11801,11802,11806,11807,11808,11809,11810,11811,11812,11816,11818,11821,11822,11823,11826,11828,11832,11833,11834,11835,11836,11839,11842,11844,11845,11846,11847,11848,11849,11856,11857,11858,11860,11862,11864,11865,11868,11870,11874,11883,11886,11891,11892,11896,11897,11898,11899,11901,11910,11912,11913,11914,11917,11918,11919,11921,11923,11924,11925,11926,11930,11931,11935,11941,11943,11947,11948,11950,11954,11956,11957,11959,11960,11963,11964,11966,11967,11968,11969,11972,11978,11982,11992,11998,12000,12002,12003,12005,12006,12007,12008,12009,12011,12014,12015,12016,12017,12018,12019,12021,12023,12095,12100,12102,12103,12105,12107,12108,12111,12113,12172,12173,12179,12183,12184,12200,12201,12229,12230,12236,12242,12245,12252,12263,12301,12395,12494,12499,12502,12503,12507,12514,12515,12516,12517,12518,12578,12583,12584,12875,12876,12877,12878,12881,12890,12892,12893,12894,12895,12897,12898,13137,13794,13865,13867,13870,13923,13929,13931,13932,13933,13934,13941,13945,13947,13952,13956,13958,13960,13961,13962,13964,13965,13968,13970,13971,13973,13974,13976,13979,13981,13985,13986,13987,13988,13989,13993,13994,13996,13998,14001,14003,14012,14013,14021,14022,14028,14030,14031,14032,14034,14037,14040,14041,14042,14044,14053,14057,14058,14060,14063,14064,14066,14067,14069,14071,14072,14073,14075,14077,14080,14082,14084,14086,14087,14088,14091,14094,14097,14099,14100,14104,14116,14117,14119,14120,14121,14124,14131,14133,14136,14138,14139,14142,14146,14148,14149,14159,14164,14167,14175,14176,14177,14182,14183,14187,14188,14189,14191,14192,14198,14200,14204,14212,14223,14227,14230,14231,14236,14241,14244,14246,14249,14251,14252,14255,14257,14258,14259,14261,14262,14263,14265,14266,14274,14275,14279,14281,14285,14286,14289,14291,14292,14293,14295,14296,14298,14299,14300,14304,14305,14306,14307,14309,14310,14311,14312,14313,14315,14316,14317,14318,14319,14320,14321,14322,14323,14326,14327,14329,14331,14332,14336,14337,14340,14345,14348,14352,14354,14355,14357,14360,14365,14366,14367,14368,14370,14371,14372,14376,14377,14378,14379,14384,14386,14388,14389,14390,14391,14392,14394,14395,14396,14397,14398,14399,14403,14404,14405,14406,14407,14410,14411,14415,14416,14419,14420,14432,14434,14437,14443,14444,14453,14454,14455,14457,14459,14467,14468,14470,14474,14478,14483,14484,14490,14491,14505,14511,14516,14524,14526,14528,14529,14530,14534,14536,14538,14541,14543,14544,14545,14546,14552,14555,14563,14621,14622,14625,14627,14630,14635,14642,14669,14731,14748,14754,14765,14785,14793,14795,14798,14860,14916,14948,14951,14966,14968,14972,14976,14977,15018,15066,15079,15092,15117,15134,15190,15202,15217,15227,15232,15257,15260,15261,15262,15267,15270,15271,15272,15278,15279,15283,15285,15290,15295,15301,15303,15307,15309,15317,15321,15322,15327,15331,15332,15334,15341,15344,15372,15377,15378,15391,15397,15404,15412,15415,15416,15419,15420,15424,15426,15427,15429,15430,15431,15432,15434,15436,15442,15445,15448,15449,15453,15454,15455,15457,15460,15466,15467,15469,15470,15472,15473,15474,15475,15478,15479,15483,15486,15487,15488,15490,15491,15492,15494,15495,15496,15499,15500,15501,15504,15505,15507,15508,15509,15510,15511,15513,15514,15521,15522,15533,15536,15537,15540,15542,15543,15550,15551,15555,15557,15562,15566,15568,15569,15570,15571,15572,15587,15595,15602,15604,15605,15606,15607,15609,15610,15613,15625,15652,15653,15655,15667,15676,15685,15691,15698,15699,15700,15701,15705,15707,15712,15714,15718,15720,15723,15727,15730,15742,15745,15769,15770,15775,15781,15782,15785,15787,15788,15790,15794,15795,15797,15803,15804,15810,15814,15815,15817,15818,15831,15839,15840,15841,15842,15843,15844,15845,15849,15852,15853,15854,15855,15857,15860,15861,15862,15863,15864,15865,15866,15868,15869,15870,15873,15875,15876,15877,15878,15879,15880,15881,15882,15884,15885,15889,15893,15894,15895,15896,15898,15899,15910,15929,15931,15939,15950,15953,15955,15962,15963,15973,15987,16005,16006,16024,16035,16043,16047,16049,16054,16057,16064,16067,16072,16075,16076,16083,16086,16088,16089,16090,16093,16098,16100,16101,16103,16104,16108,16110,16111,16112,16114,16115,16116,16117,16118,16119,16122,16124,16127,16130,16131,16136,16140,16141,16145,16147,16149,16151,16152,16153,16156,16159,16162,16164,16172,16173,16174,16175,16176,16177,16178,16180,16181,16188,16189,16194,16195,16196,16197,16229,16235,16236,16237,16239,16240,16243,16260,16264,16267,16269,16271,16275,16277,16279,16287,16291,16294,16300,16302,16304,16306,16308,16310,16323,16328,16329,16330,16334,16337,16338,16340,16341,16342,16343,16346,16348,16349,16350,16351,16353,16357,16358,16362,16363,16372,16376,16378,16384,16386,16389,16407,16429,16438,16439,16460,16462,16464,16466,16467,16474,16481,16487,16488,16538,16556,16615,16624,16648,16659,16678,16683,16685,16689,16708,16741,16774,16798,16799,16810,16815,16816,16818,16823,16832,16833,16836,16840,16842,16843,16844,16845,16846,16847,16849,16860,16876,16888,16911,16928,16942,16946,16948,16964,16966,16976,16977,16981,16985,16986,16987,17014,17015,17017,17019,17027,17029,17034,17038,17061,17097,17100,17135,17201,17221,17237,17249,17260,17314,17656,17658,17663,17664,17665,17672,17674,17678,17682,17688,17690,17695,17696,17697,17702,17704,17706,17708,17715,17720,17721,17723,17724,17735,17738,17746,17748,17751,17755,17763,17764,17772,17774,17781,17785,17792,17793,17794,17799,17800,17808,17810,17812,17818,17820,17824,17825,17836,17840,17842,17843,17848,17870,17876,17883,17886,17887,17893,17899,17901,17904,17905,17910,17911,17912,17915,17919,17929,17930,17931,17933,17950,17951,17952,17955,17960,17982,17983,17986,17989,18001,18004,18005,18008,18016,18018,18020,18021,18022,18023,18024,18025,18026,18029,18031,18032,18045,18052,18066,18069,18077,18086,18088,18094,18095,18096,18098,18109,18110,18116,18118,18119,18124,18126,18127,18128,18134,18138,18140,18141,18142,18143,18145,18146,18147,18151,18152,18154,18163,18164,18169,18177,18178,18185,18193,18199,18203,18212,18215,18218,18226,18235,18243,18244,18246,18247,18248,18249,18250,18251,18253,18254,18255,18259,18265,18281,18284,18285,18289,18300,18301,18305,18309,18319,18322,18330,18337,18340,18345,18348,18350,18353,18356,18358,18366,18367,18368,18369,18370,18372,18373,18374,18384,18385,18386,18388,18391,18392,18393,18394,18395,18397,18410,18412,18417,18418,18420,18423,18425,18427,18433,18448,18451,18455,18464,18465,18467,18468,18471,18472,18485,18486,18488,18490,18492,18493,18501,18504,18506,18508,18515,18516,18517,18519,18520,18521,18535,18538,18539,18556,18557,18562,18564,18566,18567,18568,18569,18572,18574,18575,18578,18579,18580,18582,18585,18586,18603,18615,18616,18628,18631,18634,18636,18637,18640,18641,18643,18644,18649,18650,18654,18659,18661,18662,18663,18672,18674,18676,18682,18684,18686,18688,18693,18695,18699,18701,18704,18705,18706,18707,18708,18712,18717,18721,18724,18728,18729,18731,18733,18736,18740,18745,18746,18747,18748,18753,18754,18756,18757,18759,18784,18791,18794,18795,18797,18799,18800,18813,18815,18819,18820,18821,18822,18823,18827,18830,18835,18837,18840,18841,18843,18844,18845,18846,18849,18851,18852,18853,18856,18857,18858,18860,18862,18863,18865,18866,18873,18880,18882,18883,18893,18894,18897,18904,18905,18908,18920,18922,18923,18924,18927,18928,18931,18934,18936,18937,18938,18939,18942,18943,18944,18945,18948,18950,18953,18954,18955,18957,18958,18959,18960,18961,18965,18966,18967,18968,18969,18970,18971,18973,18974,18977,18982,18984,18994,18996,19002,19003,19008,19012,19013,19014,19015,19016,19018,19019,19022,19023,19024,19025,19027,19028,19029,19030,19031,19035,19036,19044,19053,19054,19060,19061,19062,19063,19067,19069,19070,19072,19073,19076,19077,19080,19082,19087,19095,19098,19099,19100,19101,19104,19105,19110,19111,19119,19120,19121,19122,19123,19130,19132,19138,19140,19147,19148,19149,19151,19154,19156,19157,19160,19161,19162,19165,19166,19167,19170,19172,19178,19181,19182,19184,19187,19188,19190,19192,19195,19197,19198,19199,19200,19202,19203,19207,19211,19217,19219,19222,19224,19225,19227,19229,19231,19232,19235,19237,19242,19243,19244,19246,19247,19248,19250,19252,19261,19262,19263,19265,19266,19267,19268,19269,19271,19272,19274,19275,19277,19278,19279,19280,19281,19282,19291,19294,19300,19302,19303,19304,19307,19308,19313,19315,19316,19317,19321,19324,19326,19330,19331,19334,19335,19337,19339,19341,19345,19346,19347,19350,19351,19352,19355,19357,19362,19364,19367,19370,19371,19372,19376,19377,19378,19381,19383,19385,19389,19390,19395,19397,19403,19407,19408,19410,19413,19418,19419,19421,19422,19423,19424,19425,19426,19429,19430,19433,19434,19435,19438,19441,19442,19444,19447,19448,19450,19451,19452,19453,19454,19455,19456,19457,19459,19460,19462,19463,19465,19470,19472,19478,19483,19484,19485,19486,19488,19489,19490,19491,19492,19493,19495,19496,19499,19500,19501,19502,19503,19504,19507,19508,19512,19513,19514,19515,19516,19517,19518,19519,19520,19521,19522,19525,19527,19528,19529,19531,19532,19537,19538,19539,19541,19542,19543,19546,19549,19551,19561,19562,19563,19564,19565,19566,19567,19570,19571,19573,19574,19576,19579,19580,19581,19582,19584,19585,19587,19588,19590,19591,19592,19597,19598,19600,19604,19607,19609,19611,19612,19614,19615,19617,19618,19619,19620,19622,19623,19624,19627,19629,19630,19631,19632,19633,19634,19639,19642,19643,19644,19645,19646,19649,19650,19651,19652,19654,19655,19656,19657,19658,19660,19661,19665,19666,19667,19668,19669,19670,19671,19672,19675,19676,19677,19678,19679,19684,19685,19688,19690,19691,19692,19693,19694,19697,19698,19701,19702,19703,19705,19706,19707,19708,19709,19711,19713,19714,19718,19719,19722,19723,19724,19725,19726,19727,19728,19729,19731,19732,19734,19736,19737,19739,19745,19746,19747,19749,19757,19758,19759,19761,19767,19773,19775,19776,19777,19779,19785,19786,19787,19788,19789,19791,19792,19794,19795,19798,19799,19800,19802,19803,19805,19806,19809,19813,19814,19818,19823,19824,19825,19827,19835,19836,19840,19841,19842,19843,19846,19847,19848,19849,19850,19851,19852,19853,19868,19869,19871,19872,19876,19877,19880,19881,19883,19891,19897,19898,19909,19911,19912,19915,19916,19938,19939,19940,19941,19942,19943,19944,19962,19977,19978,19979,19980,19981,19982,19984,19986,19988,19990,19993,19994,19995,19996,19998,19999,20001,20004,20005,20007,20012,20017,20021,20026,20031,20032,20033,20034,20035,20036,20039,20040,20042,20043,20044,20045,20046,20050,20058,20060,20063,20068,20070,20071,20073,20074,20075,20077,20079,20080,20081,20088,20090,20092,20095,20105,20106,20110,20115,20118,20120,20122,20123,20124,20127,20128,20129,20133,20134,20139,20140,20141,20143,20145,20147,20153,20155,20157,20158,20159,20161,20162,20164,20165,20166,20167,20170,20171,20173,20176,20179,20180,20181,20184,20187,20190,20191,20194,20195,20196,20199,20200,20201,20206,20211,20213,20222,20223,20224,20226,20231,20236,20237,20238,20241,20245,20248,20251,20257,20260,20262,20264,20265,20267,20268,20269,20270,20274,20278,20279,20289,20293,20296,20315,20319,20321,20322,20327,20328,20330,20338,20339,20340,20349,20352,20378,20379,20380,20394,20404,20409,20413,20415,20418,20420,20431,20436,20440,20443,20461,20463,20467,20492,20514,20516,20518,20524,20525,20542,20559,20561,20563,20564,20570,20573,20576,20577,20578,20581,20586,20596,20604,20616,20620,20626,20631,20637,20651,20660,20665,20667,20669,20670,20678,20680,20681,20688,20695,20696,20697,20700,20701,20705,20706,20709,20710,20713,20714,20715,20722,20729,20731,20733,20735,20738,20739,20740,20743,20755,20761,20763,20797,20820,20824,20826,20836,20846,20849,20850,20896,20897,20900,20902,20907,20914,20915,20921,20933,20937,20939,20940,20942,20943,20945,20947,20949,20952,20961,20962,20976,20977,20990,20992,20993,20998,20999,21004,21008,21043,21057,21070,21071,21076,21083,21084,21088,21090,21094,21100,21101,21106,21114,21122,21158,21168,21177,21179,21180,21183,21184,21189,21192,21200,21204,21205,21207,21210,21212,21216,21223,21224,21229,21230,21231,21249,21263,21265,21281,21302,21303,21309,21310,21314,21320,21322,21337,21340,21343,21345,21348,21353,21354,21356,21359,21360,21370,21375,21379,21382,21395,21397,21398,21401,21403,21410,21411,21412,21425,21426,21448,21454,21455,21470,21476,21478,21523,21548,21565,21576,21577,21596,21601,21602,21603,21604,21631,21634,21653,21658,21659,21664,21667,21668,21669,21711,21712,21716,21737,21990,21992,21998,22001,22002,22008,22095,22096,22098,22101,22118,22121,22125,22126,22129,22133,22134,22143,22148,22149,22156,22158,22159,22168,22170,22188,22195,22207,22212,22213,22222,22228,22237,22250,22251,22254,22257,22261,22265,22270,22281,22283,22284,22291,22292,22300,22305,22306,22310,22312,22322,22323,22324,22325,22328,22329,22330,22332,22334,22337,22338,22342,22343,22351,22354,22357,22359,22360,22361,22364,22366,22367,22369,22370,22373,22375,22377,22379,22380,22382,22383,22385,22390,22395,22396,22401,22405,22407,22410,22413,22416,22418,22419,22420,22421,22423,22427,22429,22431,22437,22438,22439,22440,22441,22443,22450,22458,22460,22461,22464,22467,22470,22472,22479,22480,22481,22483,22488,22492,22493,22501,22502,22503,22507,22508,22510,22511,22514,22518,22525,22528,22532,22534,22535,22540,22541,22545,22547,22548,22549,22550,22554,22555,22557,22558,22559,22561,22570,22571,22572,22574,22578,22580,22582,22591,22598,22600,22602,22608,22612,22613,22616,22619,22621,22622,22624,22625,22626,22627,22630,22632,22633,22637,22640,22643,22649,22650,22653,22654,22655,22656,22671,22672,22673,22674,22681,22686,22687,22691,22693,22695,22696,22698,22701,22712,22717,22733,22743,22750,22761,22762,22768,22770,22776,22786,22787,22788,22789,22790,22792,22793,22794,22797,22799,22801,22804,22807,22808,22810,22812,22814,22815,22816,22822,22825,22828,22829,22832,22835,22837,22840,22841,22842,22843,22845,22847,22848,22849,22852,22853,22854,22856,22859,22861,22862,22863,22864,22865,22866,22869,22870,22872,22875,22878,22879,22880,22881,22882,22884,22885,22888,22889,22890,22891,22892,22894,22895,22898,22904,22905,22907,22908,22909,22910,22911,22912,22913,22914,22917,22918,22919,22921,22922,22928,22930,22931,22932,22940,22956,22959,22960,22961,22962,22963,22964,22965,22966,22969,22970,22971,22974,22975,22977,22978,22979,22980,22982,22983,22985,22987,22990,22993,22994,22995,22996,22997,22998,22999,23000,23013,23014,23015,23017,23019,23021,23022,23023,23028,23032,23033,23034,23039,23041,23043,23046,23049,23050,23052,23053,23061,23062,23066,23067,23068,23069,23071,23073,23075,23077,23080,23081,23084,23085,23086,23088,23089,23090,23091,23093,23094,23095,23096,23097,23098,23099,23100,23102,23103,23105,23107,23110,23111,23114,23115,23116,23117,23119,23120,23121,23123,23124,23125,23126,23127,23130,23131,23132,23133,23134,23136,23137,23139,23141,23143]]],["LORD'S",[106,103,[[1,8,8,0,8,[[58,1,1,0,1],[61,2,2,1,3],[62,2,2,3,5],[81,1,1,5,6],[84,2,2,6,8]]],[2,6,5,8,13,[[92,1,1,8,9],[105,1,1,9,10],[112,1,1,10,11],[116,3,2,11,13]]],[3,10,10,13,23,[[127,2,2,13,15],[134,1,1,15,16],[147,5,5,16,21],[148,2,2,21,23]]],[4,4,4,23,27,[[162,1,1,23,24],[163,1,1,24,25],[167,1,1,25,26],[184,1,1,26,27]]],[5,3,3,27,30,[[187,1,1,27,28],[191,1,1,28,29],[208,1,1,29,30]]],[6,1,1,30,31,[[221,1,1,30,31]]],[8,13,13,31,44,[[237,2,2,31,33],[249,1,1,33,34],[251,1,1,34,35],[252,1,1,35,36],[253,1,1,36,37],[257,1,1,37,38],[259,2,2,38,40],[261,4,4,40,44]]],[9,4,4,44,48,[[267,2,2,44,46],[285,1,1,46,47],[287,1,1,47,48]]],[11,2,2,48,50,[[323,1,1,48,49],[325,1,1,49,50]]],[13,2,2,50,52,[[373,1,1,50,51],[389,1,1,51,52]]],[18,8,8,52,60,[[488,1,1,52,53],[499,1,1,53,54],[501,1,1,54,55],[590,1,1,55,56],[592,1,1,56,57],[593,1,1,57,58],[595,1,1,58,59],[614,1,1,59,60]]],[19,1,1,60,61,[[643,1,1,60,61]]],[22,6,6,61,67,[[680,1,1,61,62],[712,1,1,62,63],[718,1,1,63,64],[720,1,1,64,65],[722,1,1,65,66],[737,1,1,66,67]]],[23,17,16,67,83,[[749,1,1,67,68],[751,1,1,68,69],[757,1,1,69,70],[763,1,1,70,71],[769,1,1,71,72],[770,3,2,72,74],[771,1,1,74,75],[772,2,2,75,77],[780,3,3,77,80],[795,3,3,80,83]]],[24,2,2,83,85,[[798,1,1,83,84],[799,1,1,84,85]]],[25,5,5,85,90,[[809,2,2,85,87],[811,2,2,87,89],[812,1,1,89,90]]],[27,1,1,90,91,[[870,1,1,90,91]]],[28,1,1,91,92,[[876,1,1,91,92]]],[30,1,1,92,93,[[888,1,1,92,93]]],[32,2,2,93,95,[[898,2,2,93,95]]],[34,1,1,95,96,[[904,1,1,95,96]]],[35,4,4,96,100,[[906,2,2,96,98],[907,2,2,98,100]]],[36,3,2,100,102,[[909,3,2,100,102]]],[37,1,1,102,103,[[924,1,1,102,103]]]],[1771,1827,1843,1876,1879,2464,2552,2555,2794,3210,3407,3596,3600,4047,4053,4285,4701,4702,4703,4704,4705,4728,4731,5200,5225,5321,5767,5866,5949,6445,6860,7248,7264,7511,7601,7665,7693,7808,7845,7849,7914,7916,7921,7928,8036,8038,8532,8587,9846,9888,11326,11672,14063,14232,14242,15816,15846,15867,15892,16226,16851,17687,18311,18422,18499,18538,18801,19068,19121,19283,19421,19551,19574,19582,19612,19621,19624,19848,19850,19852,20218,20219,20263,20354,20376,20618,20620,20637,20652,20656,22211,22300,22531,22650,22657,22764,22795,22805,22807,22808,22842,22853,23088]]],["Lord",[3,3,[[18,1,1,0,1,[[545,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]],[26,1,1,2,3,[[858,1,1,2,3]]]],[14926,17866,21996]]]]},{"k":"H3069","v":[["*",[302,291,[[0,2,2,0,2,[[14,2,2,0,2]]],[4,2,2,2,4,[[155,1,1,2,3],[161,1,1,3,4]]],[5,1,1,4,5,[[193,1,1,4,5]]],[6,2,2,5,7,[[216,1,1,5,6],[226,1,1,6,7]]],[9,7,5,7,12,[[273,7,5,7,12]]],[18,8,8,12,20,[[545,1,1,12,13],[546,1,1,13,14],[548,2,2,14,16],[550,1,1,16,17],[586,1,1,17,18],[617,1,1,18,19],[618,1,1,19,20]]],[22,24,24,20,44,[[685,1,1,20,21],[688,2,2,21,23],[700,4,4,23,27],[703,1,1,27,28],[706,2,2,28,30],[708,1,1,30,31],[718,1,1,31,32],[726,1,1,32,33],[727,1,1,33,34],[728,4,4,34,38],[730,1,1,38,39],[734,1,1,39,40],[739,2,2,40,42],[743,2,2,42,44]]],[23,14,13,44,57,[[745,1,1,44,45],[746,2,2,45,47],[748,1,1,47,48],[751,1,1,48,49],[758,1,1,49,50],[776,2,2,50,52],[788,1,1,52,53],[790,2,1,53,54],[793,1,1,54,55],[794,2,2,55,57]]],[25,217,210,57,267,[[803,1,1,57,58],[804,2,2,58,60],[805,1,1,60,61],[806,4,4,61,65],[807,3,2,65,67],[808,2,2,67,69],[809,1,1,69,70],[810,1,1,70,71],[812,6,6,71,77],[813,6,5,77,82],[814,8,7,82,89],[815,9,9,89,98],[816,2,2,98,100],[817,11,11,100,111],[818,5,5,111,116],[819,5,5,116,121],[821,13,12,121,133],[822,5,5,133,138],[823,5,5,138,143],[824,7,7,143,150],[825,6,6,150,156],[826,9,8,156,164],[827,7,7,164,171],[828,1,1,171,172],[829,7,7,172,179],[830,6,6,179,185],[831,5,5,185,190],[832,3,3,190,193],[833,7,7,193,200],[834,3,3,200,203],[835,9,9,203,212],[836,4,4,212,216],[837,15,14,216,230],[838,6,6,230,236],[839,6,6,236,242],[840,9,9,242,251],[844,3,3,251,254],[845,5,5,254,259],[846,4,3,259,262],[847,2,2,262,264],[848,2,2,264,266],[849,1,1,266,267]]],[29,21,20,267,287,[[879,1,1,267,268],[881,4,4,268,272],[882,2,2,272,274],[883,1,1,274,275],[884,1,1,275,276],[885,6,5,276,281],[886,4,4,281,285],[887,2,2,285,287]]],[30,1,1,287,288,[[888,1,1,287,288]]],[32,1,1,288,289,[[893,1,1,288,289]]],[35,1,1,289,290,[[906,1,1,289,290]]],[37,1,1,290,291,[[919,1,1,290,291]]]],[362,368,4999,5183,5983,6676,6977,8198,8199,8200,8208,8209,14920,14941,14981,14992,15048,15776,16270,16284,17789,17873,17874,18057,18064,18066,18067,18126,18180,18186,18232,18430,18630,18658,18666,18667,18669,18671,18700,18761,18844,18854,18910,18912,18952,18984,18987,19037,19139,19306,19748,19756,20036,20055,20132,20191,20197,20496,20513,20529,20543,20551,20553,20554,20557,20566,20574,20579,20582,20605,20630,20662,20663,20668,20671,20672,20676,20690,20699,20703,20705,20708,20711,20716,20717,20721,20724,20726,20728,20735,20737,20742,20745,20747,20749,20751,20752,20754,20760,20762,20765,20770,20776,20781,20785,20792,20798,20805,20810,20821,20825,20828,20834,20841,20844,20847,20852,20858,20872,20879,20881,20898,20900,20922,20925,20926,20928,20931,20934,20935,20939,20942,20944,20951,20957,20968,20970,20972,20979,20988,20995,21004,21007,21029,21035,21039,21041,21042,21053,21056,21059,21062,21065,21070,21077,21080,21086,21089,21091,21095,21096,21097,21098,21099,21103,21105,21107,21114,21115,21119,21121,21124,21159,21163,21167,21169,21179,21181,21182,21186,21191,21196,21199,21202,21203,21206,21210,21214,21217,21226,21240,21245,21248,21251,21256,21259,21262,21264,21279,21280,21291,21305,21307,21315,21321,21323,21324,21328,21330,21333,21343,21344,21347,21350,21355,21358,21361,21362,21363,21364,21365,21366,21372,21373,21374,21381,21382,21391,21392,21396,21400,21402,21406,21409,21416,21418,21428,21435,21439,21442,21443,21446,21449,21453,21456,21458,21461,21465,21468,21473,21477,21590,21591,21599,21605,21608,21611,21614,21626,21639,21645,21648,21656,21671,21692,21702,21731,22372,22402,22403,22406,22408,22412,22415,22426,22458,22465,22466,22468,22469,22470,22482,22484,22490,22492,22500,22503,22511,22581,22794,23013]]],["GOD",[301,291,[[0,2,2,0,2,[[14,2,2,0,2]]],[4,2,2,2,4,[[155,1,1,2,3],[161,1,1,3,4]]],[5,1,1,4,5,[[193,1,1,4,5]]],[6,2,2,5,7,[[216,1,1,5,6],[226,1,1,6,7]]],[9,6,5,7,12,[[273,6,5,7,12]]],[18,8,8,12,20,[[545,1,1,12,13],[546,1,1,13,14],[548,2,2,14,16],[550,1,1,16,17],[586,1,1,17,18],[617,1,1,18,19],[618,1,1,19,20]]],[22,24,24,20,44,[[685,1,1,20,21],[688,2,2,21,23],[700,4,4,23,27],[703,1,1,27,28],[706,2,2,28,30],[708,1,1,30,31],[718,1,1,31,32],[726,1,1,32,33],[727,1,1,33,34],[728,4,4,34,38],[730,1,1,38,39],[734,1,1,39,40],[739,2,2,40,42],[743,2,2,42,44]]],[23,14,13,44,57,[[745,1,1,44,45],[746,2,2,45,47],[748,1,1,47,48],[751,1,1,48,49],[758,1,1,49,50],[776,2,2,50,52],[788,1,1,52,53],[790,2,1,53,54],[793,1,1,54,55],[794,2,2,55,57]]],[25,217,210,57,267,[[803,1,1,57,58],[804,2,2,58,60],[805,1,1,60,61],[806,4,4,61,65],[807,3,2,65,67],[808,2,2,67,69],[809,1,1,69,70],[810,1,1,70,71],[812,6,6,71,77],[813,6,5,77,82],[814,8,7,82,89],[815,9,9,89,98],[816,2,2,98,100],[817,11,11,100,111],[818,5,5,111,116],[819,5,5,116,121],[821,13,12,121,133],[822,5,5,133,138],[823,5,5,138,143],[824,7,7,143,150],[825,6,6,150,156],[826,9,8,156,164],[827,7,7,164,171],[828,1,1,171,172],[829,7,7,172,179],[830,6,6,179,185],[831,5,5,185,190],[832,3,3,190,193],[833,7,7,193,200],[834,3,3,200,203],[835,9,9,203,212],[836,4,4,212,216],[837,15,14,216,230],[838,6,6,230,236],[839,6,6,236,242],[840,9,9,242,251],[844,3,3,251,254],[845,5,5,254,259],[846,4,3,259,262],[847,2,2,262,264],[848,2,2,264,266],[849,1,1,266,267]]],[29,21,20,267,287,[[879,1,1,267,268],[881,4,4,268,272],[882,2,2,272,274],[883,1,1,274,275],[884,1,1,275,276],[885,6,5,276,281],[886,4,4,281,285],[887,2,2,285,287]]],[30,1,1,287,288,[[888,1,1,287,288]]],[32,1,1,288,289,[[893,1,1,288,289]]],[35,1,1,289,290,[[906,1,1,289,290]]],[37,1,1,290,291,[[919,1,1,290,291]]]],[362,368,4999,5183,5983,6676,6977,8198,8199,8200,8208,8209,14920,14941,14981,14992,15048,15776,16270,16284,17789,17873,17874,18057,18064,18066,18067,18126,18180,18186,18232,18430,18630,18658,18666,18667,18669,18671,18700,18761,18844,18854,18910,18912,18952,18984,18987,19037,19139,19306,19748,19756,20036,20055,20132,20191,20197,20496,20513,20529,20543,20551,20553,20554,20557,20566,20574,20579,20582,20605,20630,20662,20663,20668,20671,20672,20676,20690,20699,20703,20705,20708,20711,20716,20717,20721,20724,20726,20728,20735,20737,20742,20745,20747,20749,20751,20752,20754,20760,20762,20765,20770,20776,20781,20785,20792,20798,20805,20810,20821,20825,20828,20834,20841,20844,20847,20852,20858,20872,20879,20881,20898,20900,20922,20925,20926,20928,20931,20934,20935,20939,20942,20944,20951,20957,20968,20970,20972,20979,20988,20995,21004,21007,21029,21035,21039,21041,21042,21053,21056,21059,21062,21065,21070,21077,21080,21086,21089,21091,21095,21096,21097,21098,21099,21103,21105,21107,21114,21115,21119,21121,21124,21159,21163,21167,21169,21179,21181,21182,21186,21191,21196,21199,21202,21203,21206,21210,21214,21217,21226,21240,21245,21248,21251,21256,21259,21262,21264,21279,21280,21291,21305,21307,21315,21321,21323,21324,21328,21330,21333,21343,21344,21347,21350,21355,21358,21361,21362,21363,21364,21365,21366,21372,21373,21374,21381,21382,21391,21392,21396,21400,21402,21406,21409,21416,21418,21428,21435,21439,21442,21443,21446,21449,21453,21456,21458,21461,21465,21468,21473,21477,21590,21591,21599,21605,21608,21611,21614,21626,21639,21645,21648,21656,21671,21692,21702,21731,22372,22402,22403,22406,22408,22412,22415,22426,22458,22465,22466,22468,22469,22470,22482,22484,22490,22492,22500,22503,22511,22581,22794,23013]]],["LORD",[1,1,[[9,1,1,0,1,[[273,1,1,0,1]]]],[8198]]]]},{"k":"H3070","v":[["Jehovahjireh",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[561]]]]},{"k":"H3071","v":[["Jehovahnissi",[1,1,[[1,1,1,0,1,[[66,1,1,0,1]]]],[1998]]]]},{"k":"H3072","v":[]},{"k":"H3073","v":[["Jehovahshalom",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6678]]]]},{"k":"H3074","v":[]},{"k":"H3075","v":[["Jehozabad",[4,4,[[11,1,1,0,1,[[324,1,1,0,1]]],[12,1,1,1,2,[[363,1,1,1,2]]],[13,2,2,2,4,[[383,1,1,2,3],[390,1,1,3,4]]]],[9871,11081,11541,11703]]]]},{"k":"H3076","v":[["*",[9,9,[[12,1,1,0,1,[[363,1,1,0,1]]],[13,3,3,1,4,[[383,1,1,1,2],[389,1,1,2,3],[394,1,1,3,4]]],[14,2,2,4,6,[[412,2,2,4,6]]],[15,3,3,6,9,[[418,1,1,6,7],[424,2,2,7,9]]]],[11080,11538,11657,11776,12258,12280,12419,12637,12666]]],["Jehohanan",[6,6,[[12,1,1,0,1,[[363,1,1,0,1]]],[13,2,2,1,3,[[383,1,1,1,2],[389,1,1,2,3]]],[14,1,1,3,4,[[412,1,1,3,4]]],[15,2,2,4,6,[[424,2,2,4,6]]]],[11080,11538,11657,12280,12637,12666]]],["Johanan",[3,3,[[13,1,1,0,1,[[394,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]],[15,1,1,2,3,[[418,1,1,2,3]]]],[11776,12258,12419]]]]},{"k":"H3077","v":[["*",[48,44,[[9,4,4,0,4,[[274,1,1,0,1],[286,1,1,1,2],[289,2,2,2,4]]],[10,12,12,4,16,[[291,6,6,4,10],[292,5,5,10,15],[294,1,1,15,16]]],[11,8,7,16,23,[[323,5,4,16,20],[324,3,3,20,23]]],[12,2,2,23,25,[[364,2,2,23,25]]],[13,21,18,25,43,[[388,1,1,25,26],[389,8,7,26,33],[390,12,10,33,43]]],[23,1,1,43,44,[[773,1,1,43,44]]]],[8227,8577,8673,8675,8725,8743,8749,8753,8755,8761,8795,8799,8804,8805,8816,8848,9833,9838,9844,9846,9852,9857,9859,11114,11143,11655,11657,11664,11665,11667,11670,11672,11674,11679,11680,11683,11689,11691,11692,11694,11697,11699,11702,19661]]],["Jehoiada",[47,44,[[9,4,4,0,4,[[274,1,1,0,1],[286,1,1,1,2],[289,2,2,2,4]]],[10,12,12,4,16,[[291,6,6,4,10],[292,5,5,10,15],[294,1,1,15,16]]],[11,8,7,16,23,[[323,5,4,16,20],[324,3,3,20,23]]],[12,2,2,23,25,[[364,2,2,23,25]]],[13,20,18,25,43,[[388,1,1,25,26],[389,8,7,26,33],[390,11,10,33,43]]],[23,1,1,43,44,[[773,1,1,43,44]]]],[8227,8577,8673,8675,8725,8743,8749,8753,8755,8761,8795,8799,8804,8805,8816,8848,9833,9838,9844,9846,9852,9857,9859,11114,11143,11655,11657,11664,11665,11667,11670,11672,11674,11679,11680,11683,11689,11691,11692,11694,11697,11699,11702,19661]]],["Joash",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11679]]]]},{"k":"H3078","v":[["Jehoiachin",[10,8,[[11,6,5,0,5,[[336,4,4,0,4],[337,2,1,4,5]]],[13,2,2,5,7,[[402,2,2,5,7]]],[23,2,1,7,8,[[796,2,1,7,8]]]],[10208,10210,10214,10217,10249,12001,12002,20307]]]]},{"k":"H3079","v":[["Jehoiakim",[37,37,[[11,7,7,0,7,[[335,3,3,0,3],[336,4,4,3,7]]],[12,2,2,7,9,[[340,2,2,7,9]]],[13,3,3,9,12,[[402,3,3,9,12]]],[23,23,23,12,35,[[745,1,1,12,13],[766,2,2,13,15],[768,1,1,15,16],[769,1,1,16,17],[770,4,4,17,21],[771,2,2,21,23],[772,1,1,23,24],[779,1,1,24,25],[780,6,6,25,31],[781,1,1,31,32],[789,1,1,32,33],[790,1,1,33,34],[796,1,1,34,35]]],[26,2,2,35,37,[[850,2,2,35,37]]]],[10199,10200,10201,10203,10207,10208,10221,10376,10377,11997,11998,12001,18949,19472,19478,19525,19535,19573,19593,19594,19595,19597,19616,19622,19824,19843,19851,19870,19871,19872,19874,19875,20041,20047,20278,21738,21739]]]]},{"k":"H3080","v":[["Jehoiarib",[2,2,[[12,2,2,0,2,[[346,1,1,0,1],[361,1,1,1,2]]]],[10625,11022]]]]},{"k":"H3081","v":[["Jehucal",[1,1,[[23,1,1,0,1,[[781,1,1,0,1]]]],[19877]]]]},{"k":"H3082","v":[["*",[7,6,[[11,3,2,0,2,[[322,3,2,0,2]]],[23,4,4,2,6,[[779,4,4,2,6]]]],[9808,9816,19831,19837,19839,19841]]],["Jehonadab",[3,2,[[11,3,2,0,2,[[322,3,2,0,2]]]],[9808,9816]]],["Jonadab",[4,4,[[23,4,4,0,4,[[779,4,4,0,4]]]],[19831,19837,19839,19841]]]]},{"k":"H3083","v":[["*",[111,96,[[6,1,1,0,1,[[228,1,1,0,1]]],[8,73,60,1,61,[[248,5,4,1,5],[249,25,20,5,25],[253,4,3,25,28],[254,8,5,28,33],[255,28,25,33,58],[258,2,2,58,60],[266,1,1,60,61]]],[9,24,22,61,83,[[267,8,8,61,69],[270,2,1,69,70],[275,3,3,70,73],[281,2,2,73,75],[283,2,2,75,77],[287,6,5,77,82],[289,1,1,82,83]]],[12,7,7,83,90,[[345,2,2,83,85],[346,2,2,85,87],[357,1,1,87,88],[364,2,2,88,90]]],[13,1,1,90,91,[[383,1,1,90,91]]],[14,2,2,91,93,[[410,1,1,91,92],[412,1,1,92,93]]],[15,1,1,93,94,[[424,1,1,93,94]]],[23,2,2,94,96,[[781,2,2,94,96]]]],[7023,7487,7488,7501,7507,7509,7511,7512,7514,7516,7520,7521,7522,7525,7529,7535,7537,7547,7548,7549,7550,7551,7552,7553,7557,7677,7679,7680,7707,7708,7710,7712,7713,7731,7733,7734,7735,7739,7740,7741,7742,7743,7746,7747,7748,7755,7757,7758,7760,7762,7763,7764,7765,7767,7768,7769,7770,7772,7826,7828,8011,8026,8027,8034,8039,8044,8045,8047,8048,8124,8230,8233,8234,8416,8425,8466,8469,8587,8592,8593,8594,8601,8685,10608,10609,10654,10655,10933,11134,11141,11531,12207,12267,12642,19889,19894]]],["Jehonathan",[3,3,[[12,1,1,0,1,[[364,1,1,0,1]]],[13,1,1,1,2,[[383,1,1,1,2]]],[15,1,1,2,3,[[424,1,1,2,3]]]],[11134,11531,12642]]],["Jonathan",[107,93,[[6,1,1,0,1,[[228,1,1,0,1]]],[8,72,60,1,61,[[248,5,4,1,5],[249,25,20,5,25],[253,4,3,25,28],[254,8,5,28,33],[255,27,25,33,58],[258,2,2,58,60],[266,1,1,60,61]]],[9,24,22,61,83,[[267,8,8,61,69],[270,2,1,69,70],[275,3,3,70,73],[281,2,2,73,75],[283,2,2,75,77],[287,6,5,77,82],[289,1,1,82,83]]],[12,6,6,83,89,[[345,2,2,83,85],[346,2,2,85,87],[357,1,1,87,88],[364,1,1,88,89]]],[14,2,2,89,91,[[410,1,1,89,90],[412,1,1,90,91]]],[23,2,2,91,93,[[781,2,2,91,93]]]],[7023,7487,7488,7501,7507,7509,7511,7512,7514,7516,7520,7521,7522,7525,7529,7535,7537,7547,7548,7549,7550,7551,7552,7553,7557,7677,7679,7680,7707,7708,7710,7712,7713,7731,7733,7734,7735,7739,7740,7741,7742,7743,7746,7747,7748,7755,7757,7758,7760,7762,7763,7764,7765,7767,7768,7769,7770,7772,7826,7828,8011,8026,8027,8034,8039,8044,8045,8047,8048,8124,8230,8233,8234,8416,8425,8466,8469,8587,8592,8593,8594,8601,8685,10608,10609,10654,10655,10933,11141,12207,12267,19889,19894]]],["Jonathan's",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7768]]]]},{"k":"H3084","v":[["Joseph",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15222]]]]},{"k":"H3085","v":[["Jehoadah",[2,1,[[12,2,1,0,1,[[345,2,1,0,1]]]],[10611]]]]},{"k":"H3086","v":[["Jehoaddan",[2,2,[[11,1,1,0,1,[[326,1,1,0,1]]],[13,1,1,1,2,[[391,1,1,1,2]]]],[9898,11705]]]]},{"k":"H3087","v":[["*",[8,8,[[12,2,2,0,2,[[343,2,2,0,2]]],[36,5,5,2,7,[[909,3,3,2,5],[910,2,2,5,7]]],[37,1,1,7,8,[[916,1,1,7,8]]]],[10468,10469,22841,22852,22854,22857,22859,22958]]],["Jehozadak",[2,2,[[12,2,2,0,2,[[343,2,2,0,2]]]],[10468,10469]]],["Josedech",[6,6,[[36,5,5,0,5,[[909,3,3,0,3],[910,2,2,3,5]]],[37,1,1,5,6,[[916,1,1,5,6]]]],[22841,22852,22854,22857,22859,22958]]]]},{"k":"H3088","v":[["*",[29,26,[[10,1,1,0,1,[[312,1,1,0,1]]],[11,15,13,1,14,[[313,2,1,1,2],[315,2,2,2,4],[320,3,3,4,7],[321,7,6,7,13],[324,1,1,13,14]]],[13,13,12,14,26,[[383,1,1,14,15],[387,6,6,15,21],[388,6,5,21,26]]]],[9530,9550,9577,9582,9743,9752,9756,9771,9773,9777,9778,9779,9780,9868,11531,11625,11627,11628,11629,11633,11640,11645,11649,11650,11651,11655]]],["+",[1,1,[[13,1,1,0,1,[[387,1,1,0,1]]]],[11640]]],["Jehoram",[22,20,[[10,1,1,0,1,[[312,1,1,0,1]]],[11,9,8,1,9,[[313,2,1,1,2],[315,2,2,2,4],[320,3,3,4,7],[321,1,1,7,8],[324,1,1,8,9]]],[13,12,11,9,20,[[383,1,1,9,10],[387,5,5,10,15],[388,6,5,15,20]]]],[9530,9550,9577,9582,9743,9752,9756,9780,9868,11531,11625,11627,11628,11629,11633,11645,11649,11650,11651,11655]]],["Joram",[6,5,[[11,6,5,0,5,[[321,6,5,0,5]]]],[9771,9773,9777,9778,9779]]]]},{"k":"H3089","v":[["Jehosheba",[1,1,[[11,1,1,0,1,[[323,1,1,0,1]]]],[9831]]]]},{"k":"H3090","v":[["Jehoshabeath",[2,1,[[13,2,1,0,1,[[388,2,1,0,1]]]],[11655]]]]},{"k":"H3091","v":[["*",[218,199,[[1,7,7,0,7,[[66,4,4,0,4],[73,1,1,4,5],[81,1,1,5,6],[82,1,1,6,7]]],[3,11,11,7,18,[[127,1,1,7,8],[129,1,1,8,9],[130,3,3,9,12],[142,1,1,12,13],[143,2,2,13,15],[148,2,2,15,17],[150,1,1,17,18]]],[4,9,8,18,26,[[153,1,1,18,19],[155,2,2,19,21],[183,5,4,21,25],[186,1,1,25,26]]],[5,168,151,26,177,[[187,4,4,26,30],[188,3,3,30,33],[189,6,6,33,39],[190,12,10,39,49],[191,10,8,49,57],[192,11,10,57,67],[193,12,12,67,79],[194,19,16,79,95],[195,9,8,95,103],[196,29,28,103,131],[197,14,11,131,142],[198,2,1,142,143],[199,1,1,143,144],[200,3,3,144,147],[201,1,1,147,148],[203,4,4,148,152],[204,5,4,152,156],[205,2,2,156,158],[206,1,1,158,159],[207,1,1,159,160],[208,4,3,160,163],[209,2,2,163,165],[210,13,12,165,177]]],[6,7,6,177,183,[[211,1,1,177,178],[212,6,5,178,183]]],[8,2,2,183,185,[[241,2,2,183,185]]],[10,1,1,185,186,[[306,1,1,185,186]]],[11,1,1,186,187,[[335,1,1,186,187]]],[12,1,1,187,188,[[344,1,1,187,188]]],[36,5,5,188,193,[[909,3,3,188,191],[910,2,2,191,193]]],[37,6,6,193,199,[[913,5,5,193,198],[916,1,1,198,199]]]],[1992,1993,1996,1997,2190,2455,2484,4052,4091,4114,4138,4146,4554,4572,4576,4730,4746,4833,4930,4996,5003,5731,5735,5742,5751,5848,5852,5861,5863,5867,5870,5892,5893,5894,5898,5899,5900,5902,5903,5911,5914,5915,5918,5919,5920,5924,5925,5927,5930,5936,5937,5938,5941,5943,5947,5948,5949,5951,5955,5957,5959,5961,5965,5971,5974,5975,5976,5978,5979,5982,5983,5986,5992,5995,5996,5998,5999,6000,6001,6003,6005,6011,6012,6015,6017,6018,6020,6023,6025,6028,6029,6030,6031,6032,6037,6039,6040,6043,6045,6052,6059,6061,6064,6065,6068,6070,6071,6072,6073,6076,6079,6081,6082,6084,6085,6086,6088,6089,6090,6091,6092,6093,6095,6097,6098,6100,6102,6104,6105,6106,6107,6113,6114,6116,6117,6119,6120,6122,6123,6125,6128,6130,6137,6155,6188,6193,6200,6215,6279,6289,6290,6292,6296,6301,6302,6303,6370,6372,6373,6382,6427,6432,6433,6461,6462,6477,6478,6495,6497,6498,6500,6501,6502,6503,6504,6505,6507,6510,6551,6552,6553,6566,6568,7345,7349,9317,10173,10562,22841,22852,22854,22857,22859,22913,22915,22918,22920,22921,22958]]],["+",[1,1,[[5,1,1,0,1,[[210,1,1,0,1]]]],[6500]]],["Jehoshua",[2,2,[[3,1,1,0,1,[[129,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]]],[4091,10562]]],["Joshua",[215,196,[[1,7,7,0,7,[[66,4,4,0,4],[73,1,1,4,5],[81,1,1,5,6],[82,1,1,6,7]]],[3,10,10,7,17,[[127,1,1,7,8],[130,3,3,8,11],[142,1,1,11,12],[143,2,2,12,14],[148,2,2,14,16],[150,1,1,16,17]]],[4,9,8,17,25,[[153,1,1,17,18],[155,2,2,18,20],[183,5,4,20,24],[186,1,1,24,25]]],[5,167,150,25,175,[[187,4,4,25,29],[188,3,3,29,32],[189,6,6,32,38],[190,12,10,38,48],[191,10,8,48,56],[192,11,10,56,66],[193,12,12,66,78],[194,19,16,78,94],[195,9,8,94,102],[196,29,28,102,130],[197,14,11,130,141],[198,2,1,141,142],[199,1,1,142,143],[200,3,3,143,146],[201,1,1,146,147],[203,4,4,147,151],[204,5,4,151,155],[205,2,2,155,157],[206,1,1,157,158],[207,1,1,158,159],[208,4,3,159,162],[209,2,2,162,164],[210,12,11,164,175]]],[6,7,6,175,181,[[211,1,1,175,176],[212,6,5,176,181]]],[8,2,2,181,183,[[241,2,2,181,183]]],[10,1,1,183,184,[[306,1,1,183,184]]],[11,1,1,184,185,[[335,1,1,184,185]]],[36,5,5,185,190,[[909,3,3,185,188],[910,2,2,188,190]]],[37,6,6,190,196,[[913,5,5,190,195],[916,1,1,195,196]]]],[1992,1993,1996,1997,2190,2455,2484,4052,4114,4138,4146,4554,4572,4576,4730,4746,4833,4930,4996,5003,5731,5735,5742,5751,5848,5852,5861,5863,5867,5870,5892,5893,5894,5898,5899,5900,5902,5903,5911,5914,5915,5918,5919,5920,5924,5925,5927,5930,5936,5937,5938,5941,5943,5947,5948,5949,5951,5955,5957,5959,5961,5965,5971,5974,5975,5976,5978,5979,5982,5983,5986,5992,5995,5996,5998,5999,6000,6001,6003,6005,6011,6012,6015,6017,6018,6020,6023,6025,6028,6029,6030,6031,6032,6037,6039,6040,6043,6045,6052,6059,6061,6064,6065,6068,6070,6071,6072,6073,6076,6079,6081,6082,6084,6085,6086,6088,6089,6090,6091,6092,6093,6095,6097,6098,6100,6102,6104,6105,6106,6107,6113,6114,6116,6117,6119,6120,6122,6123,6125,6128,6130,6137,6155,6188,6193,6200,6215,6279,6289,6290,6292,6296,6301,6302,6303,6370,6372,6373,6382,6427,6432,6433,6461,6462,6477,6478,6495,6497,6498,6501,6502,6503,6504,6505,6507,6510,6551,6552,6553,6566,6568,7345,7349,9317,10173,22841,22852,22854,22857,22859,22913,22915,22918,22920,22921,22958]]]]},{"k":"H3092","v":[["Jehoshaphat",[84,75,[[9,2,2,0,2,[[274,1,1,0,1],[286,1,1,1,2]]],[10,25,21,2,23,[[294,2,2,2,4],[305,1,1,4,5],[312,22,18,5,23]]],[11,12,10,23,33,[[313,1,1,23,24],[315,6,5,24,29],[320,2,1,29,30],[321,2,2,30,32],[324,1,1,32,33]]],[12,2,2,33,35,[[340,1,1,33,34],[355,1,1,34,35]]],[13,41,38,35,73,[[383,6,6,35,41],[384,12,10,41,51],[385,4,4,51,55],[386,14,14,55,69],[387,4,3,69,72],[388,1,1,72,73]]],[28,2,2,73,75,[[878,2,2,73,75]]]],[8225,8578,8847,8861,9273,9482,9484,9485,9487,9488,9490,9498,9509,9510,9512,9521,9522,9524,9525,9528,9529,9530,9531,9550,9577,9583,9587,9588,9590,9743,9758,9770,9868,10371,10905,11524,11526,11528,11533,11534,11535,11543,11545,11546,11548,11549,11551,11559,11570,11571,11573,11577,11578,11580,11584,11588,11589,11590,11592,11602,11605,11607,11612,11614,11617,11618,11621,11622,11624,11625,11626,11636,11653,22345,22355]]]]},{"k":"H3093","v":[["*",[2,2,[[19,1,1,0,1,[[648,1,1,0,1]]],[34,1,1,1,2,[[904,1,1,1,2]]]],[17008,22753]]],["haughty",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17008]]],["proud",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22753]]]]},{"k":"H3094","v":[["*",[2,2,[[12,1,1,0,1,[[341,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]]],[10401,11803]]],["Jehaleleel",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10401]]],["Jehalelel",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11803]]]]},{"k":"H3095","v":[["diamond",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[25,1,1,2,3,[[829,1,1,2,3]]]],[2311,2675,21170]]]]},{"k":"H3096","v":[["*",[9,9,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]],[5,2,2,2,4,[[199,1,1,2,3],[207,1,1,3,4]]],[6,1,1,4,5,[[221,1,1,4,5]]],[12,1,1,5,6,[[343,1,1,5,6]]],[22,1,1,6,7,[[693,1,1,6,7]]],[23,2,2,7,9,[[792,2,2,7,9]]]],[4363,4970,6172,6417,6849,10532,17964,20101,20114]]],["Jahaz",[5,5,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]],[6,1,1,2,3,[[221,1,1,2,3]]],[22,1,1,3,4,[[693,1,1,3,4]]],[23,1,1,4,5,[[792,1,1,4,5]]]],[4363,4970,6849,17964,20114]]],["Jahazah",[3,3,[[5,2,2,0,2,[[199,1,1,0,1],[207,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[6172,6417,20101]]],["Jahzah",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10532]]]]},{"k":"H3097","v":[["*",[144,123,[[8,1,1,0,1,[[261,1,1,0,1]]],[9,101,84,1,85,[[268,11,10,1,11],[269,10,8,11,19],[274,1,1,19,20],[276,4,4,20,24],[277,11,10,24,34],[278,2,2,34,36],[280,15,13,36,49],[283,2,1,49,50],[284,16,12,50,62],[285,3,3,62,65],[286,18,13,65,78],[289,3,3,78,81],[290,5,4,81,85]]],[10,15,13,85,98,[[291,3,3,85,88],[292,9,7,88,95],[301,3,3,95,98]]],[12,24,22,98,120,[[339,1,1,98,99],[341,1,1,99,100],[348,5,5,100,105],[355,1,1,105,106],[356,4,4,106,110],[357,2,1,110,111],[358,6,5,111,116],[363,1,1,116,117],[364,3,3,117,120]]],[14,2,2,120,122,[[404,1,1,120,121],[410,1,1,121,122]]],[15,1,1,122,123,[[419,1,1,122,123]]]],[7911,8062,8063,8067,8071,8073,8075,8076,8077,8079,8081,8103,8104,8105,8107,8108,8110,8111,8112,8225,8247,8249,8253,8254,8260,8265,8266,8270,8273,8275,8276,8277,8281,8284,8312,8313,8357,8358,8359,8375,8376,8377,8378,8379,8385,8386,8387,8388,8389,8474,8480,8483,8488,8489,8490,8492,8493,8494,8498,8499,8500,8507,8512,8516,8524,8561,8562,8563,8564,8565,8567,8569,8570,8571,8574,8575,8576,8577,8671,8677,8690,8694,8695,8696,8701,8724,8736,8758,8775,8792,8798,8799,8800,8801,8803,9123,9124,9129,10322,10399,10679,10681,10693,10699,10712,10905,10915,10917,10921,10922,10927,10936,10937,10938,10939,10940,11105,11116,11133,11143,12033,12210,12431]]],["+",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8565]]],["Joab",[136,119,[[8,1,1,0,1,[[261,1,1,0,1]]],[9,93,80,1,81,[[268,11,10,1,11],[269,10,8,11,19],[274,1,1,19,20],[276,4,4,20,24],[277,11,10,24,34],[278,2,2,34,36],[280,14,12,36,48],[283,1,1,48,49],[284,14,11,49,60],[285,3,3,60,63],[286,14,11,63,74],[289,3,3,74,77],[290,5,4,77,81]]],[10,15,13,81,94,[[291,3,3,81,84],[292,9,7,84,91],[301,3,3,91,94]]],[12,24,22,94,116,[[339,1,1,94,95],[341,1,1,95,96],[348,5,5,96,101],[355,1,1,101,102],[356,4,4,102,106],[357,2,1,106,107],[358,6,5,107,112],[363,1,1,112,113],[364,3,3,113,116]]],[14,2,2,116,118,[[404,1,1,116,117],[410,1,1,117,118]]],[15,1,1,118,119,[[419,1,1,118,119]]]],[7911,8062,8063,8067,8071,8073,8075,8076,8077,8079,8081,8103,8104,8105,8107,8108,8110,8111,8112,8225,8247,8249,8253,8254,8260,8265,8266,8270,8273,8275,8276,8277,8281,8284,8312,8313,8357,8358,8359,8375,8376,8377,8378,8379,8385,8387,8388,8389,8474,8480,8483,8488,8489,8490,8492,8494,8498,8499,8500,8507,8512,8516,8524,8563,8564,8565,8567,8569,8570,8571,8574,8575,8576,8577,8671,8677,8690,8694,8695,8696,8701,8724,8736,8758,8775,8792,8798,8799,8800,8801,8803,9123,9124,9129,10322,10399,10679,10681,10693,10699,10712,10905,10915,10917,10921,10922,10927,10936,10937,10938,10939,10940,11105,11116,11133,11143,12033,12210,12431]]],["Joab's",[7,7,[[9,7,7,0,7,[[280,1,1,0,1],[283,1,1,1,2],[284,2,2,2,4],[286,3,3,4,7]]]],[8386,8474,8480,8493,8561,8562,8564]]]]},{"k":"H3098","v":[["Joah",[11,10,[[11,3,3,0,3,[[330,3,3,0,3]]],[12,2,2,3,5,[[343,1,1,3,4],[363,1,1,4,5]]],[13,3,2,5,7,[[395,2,1,5,6],[400,1,1,6,7]]],[22,3,3,7,10,[[714,3,3,7,10]]]],[10042,10050,10061,10475,11081,11803,11941,18333,18341,18352]]]]},{"k":"H3099","v":[["Joahaz",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11941]]]]},{"k":"H3100","v":[["Joel",[19,19,[[8,1,1,0,1,[[243,1,1,0,1]]],[12,14,14,1,15,[[341,1,1,1,2],[342,3,3,2,5],[343,2,2,5,7],[344,1,1,7,8],[348,1,1,8,9],[352,3,3,9,12],[360,1,1,12,13],[363,1,1,13,14],[364,1,1,14,15]]],[13,1,1,15,16,[[395,1,1,15,16]]],[14,1,1,16,17,[[412,1,1,16,17]]],[15,1,1,17,18,[[423,1,1,17,18]]],[28,1,1,18,19,[[876,1,1,18,19]]]],[7371,10420,10432,10436,10440,10487,10490,10538,10711,10798,10802,10808,10991,11099,11129,11803,12295,12597,22292]]]]},{"k":"H3101","v":[["Joash",[46,40,[[6,9,8,0,8,[[216,4,4,0,4],[217,1,1,4,5],[218,4,3,5,8]]],[10,1,1,8,9,[[312,1,1,8,9]]],[11,18,15,9,24,[[323,1,1,9,10],[324,2,2,10,12],[325,8,7,12,19],[326,7,5,19,24]]],[12,3,3,24,27,[[340,1,1,24,25],[341,1,1,25,26],[349,1,1,26,27]]],[13,13,11,27,38,[[384,1,1,27,28],[388,1,1,28,29],[390,4,4,29,33],[391,7,5,33,38]]],[27,1,1,38,39,[[862,1,1,38,39]]],[29,1,1,39,40,[[879,1,1,39,40]]]],[6665,6683,6684,6685,6708,6732,6748,6751,9506,9831,9869,9870,9872,9880,9881,9883,9884,9885,9896,9897,9899,9913,9919,9923,10372,10407,10723,11567,11655,11678,11681,11699,11701,11721,11722,11725,11727,11729,22095,22365]]]]},{"k":"H3102","v":[["Job",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1399]]]]},{"k":"H3103","v":[["Jobab",[9,9,[[0,3,3,0,3,[[9,1,1,0,1],[35,2,2,1,3]]],[5,1,1,3,4,[[197,1,1,3,4]]],[12,5,5,4,9,[[338,3,3,4,7],[345,2,2,7,9]]]],[263,1073,1074,6108,10275,10296,10297,10584,10593]]]]},{"k":"H3104","v":[["*",[27,25,[[1,1,1,0,1,[[68,1,1,0,1]]],[2,20,18,1,19,[[114,14,13,1,14],[116,6,5,14,19]]],[3,1,1,19,20,[[152,1,1,19,20]]],[5,5,5,20,25,[[192,5,5,20,25]]]],[2039,3479,3480,3481,3482,3484,3497,3499,3500,3502,3509,3519,3521,3523,3587,3588,3591,3593,3594,4883,5953,5954,5955,5957,5962]]],["horns",[4,4,[[5,4,4,0,4,[[192,4,4,0,4]]]],[5953,5955,5957,5962]]],["jubile",[21,19,[[2,20,18,0,18,[[114,14,13,0,13],[116,6,5,13,18]]],[3,1,1,18,19,[[152,1,1,18,19]]]],[3479,3480,3481,3482,3484,3497,3499,3500,3502,3509,3519,3521,3523,3587,3588,3591,3593,3594,4883]]],["ram's",[1,1,[[5,1,1,0,1,[[192,1,1,0,1]]]],[5954]]],["trumpet",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2039]]]]},{"k":"H3105","v":[["river",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19365]]]]},{"k":"H3106","v":[["Jubal",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[100]]]]},{"k":"H3107","v":[["*",[10,9,[[12,3,2,0,2,[[349,3,2,0,2]]],[13,2,2,2,4,[[397,1,1,2,3],[401,1,1,3,4]]],[14,3,3,4,7,[[410,1,1,4,5],[412,2,2,5,7]]],[15,2,2,7,9,[[420,1,1,7,8],[423,1,1,8,9]]]],[10724,10740,11867,11975,12234,12274,12275,12500,12604]]],["Josabad",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10724]]],["Jozabad",[9,8,[[12,2,1,0,1,[[349,2,1,0,1]]],[13,2,2,1,3,[[397,1,1,1,2],[401,1,1,2,3]]],[14,3,3,3,6,[[410,1,1,3,4],[412,2,2,4,6]]],[15,2,2,6,8,[[420,1,1,6,7],[423,1,1,7,8]]]],[10740,11867,11975,12234,12274,12275,12500,12604]]]]},{"k":"H3108","v":[["Jozachar",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9871]]]]},{"k":"H3109","v":[["Joha",[2,2,[[12,2,2,0,2,[[345,1,1,0,1],[348,1,1,1,2]]]],[10591,10718]]]]},{"k":"H3110","v":[["Johanan",[24,24,[[11,1,1,0,1,[[337,1,1,0,1]]],[12,6,6,1,7,[[340,2,2,1,3],[343,2,2,3,5],[349,2,2,5,7]]],[14,1,1,7,8,[[410,1,1,7,8]]],[15,2,2,8,10,[[424,2,2,8,10]]],[23,14,14,10,24,[[784,4,4,10,14],[785,5,5,14,19],[786,2,2,19,21],[787,3,3,21,24]]]],[10245,10376,10385,10463,10464,10724,10732,12213,12646,12647,19949,19954,19956,19957,19968,19970,19971,19972,19973,19976,19983,19999,20001,20002]]]]},{"k":"H3111","v":[["*",[9,9,[[12,4,4,0,4,[[348,2,2,0,2],[349,1,1,2,3],[355,1,1,3,4]]],[15,5,5,4,9,[[415,1,1,4,5],[424,3,3,5,8],[425,1,1,8,9]]]],[10695,10697,10747,10907,12333,12634,12635,12646,12699]]],["Jehoiada",[5,5,[[12,4,4,0,4,[[348,2,2,0,2],[349,1,1,2,3],[355,1,1,3,4]]],[15,1,1,4,5,[[415,1,1,4,5]]]],[10695,10697,10747,10907,12333]]],["Joiada",[4,4,[[15,4,4,0,4,[[424,3,3,0,3],[425,1,1,3,4]]]],[12634,12635,12646,12699]]]]},{"k":"H3112","v":[["Jehoiachin's",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20466]]]]},{"k":"H3113","v":[["Joiakim",[4,3,[[15,4,3,0,3,[[424,4,3,0,3]]]],[12634,12636,12650]]]]},{"k":"H3114","v":[["Joiarib",[5,5,[[14,1,1,0,1,[[410,1,1,0,1]]],[15,4,4,1,5,[[423,2,2,1,3],[424,2,2,3,5]]]],[12217,12593,12598,12630,12643]]]]},{"k":"H3115","v":[["Jochebed",[2,2,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1675,4548]]]]},{"k":"H3116","v":[["Jucal",[1,1,[[23,1,1,0,1,[[782,1,1,0,1]]]],[19896]]]]},{"k":"H3117","v":[["*",[2293,1925,[[0,152,139,0,139,[[0,11,9,0,9],[1,5,4,9,13],[2,4,4,13,17],[3,2,2,17,19],[4,12,12,19,31],[5,3,3,31,34],[6,9,7,34,41],[7,8,7,41,48],[8,1,1,48,49],[9,1,1,49,50],[10,1,1,50,51],[13,1,1,51,52],[14,1,1,52,53],[16,3,3,53,56],[17,2,2,56,58],[18,2,2,58,60],[20,4,4,60,64],[21,2,2,64,66],[23,4,4,66,70],[24,4,4,70,74],[25,6,6,74,80],[26,4,4,80,84],[28,4,4,84,88],[29,5,5,88,93],[30,6,6,93,99],[31,1,1,99,100],[32,2,2,100,102],[33,1,1,102,103],[34,4,4,103,107],[36,1,1,107,108],[37,1,1,108,109],[38,3,2,109,111],[39,8,7,111,118],[40,2,2,118,120],[41,4,4,120,124],[42,1,1,124,125],[43,1,1,125,126],[46,9,6,126,132],[47,2,2,132,134],[48,1,1,134,135],[49,6,4,135,139]]],[1,114,82,139,221,[[51,4,4,139,143],[52,1,1,143,144],[54,7,5,144,149],[55,1,1,149,150],[56,1,1,150,151],[57,2,2,151,153],[58,1,1,153,154],[59,6,5,154,159],[61,15,9,159,168],[62,8,6,168,174],[63,3,2,174,176],[64,1,1,176,177],[65,17,9,177,186],[68,6,5,186,191],[69,7,5,191,196],[70,2,1,196,197],[71,2,1,197,198],[72,4,3,198,201],[73,3,2,201,203],[78,5,5,203,208],[80,4,2,208,210],[81,4,3,210,213],[83,5,4,213,217],[84,3,2,217,219],[89,2,2,219,221]]],[2,109,86,221,307,[[95,1,1,221,222],[96,7,7,222,229],[97,5,3,229,232],[98,2,2,232,234],[99,2,1,234,235],[101,7,5,235,240],[102,16,15,240,255],[103,10,9,255,264],[104,10,8,264,272],[105,1,1,272,273],[108,3,2,273,275],[111,4,3,275,278],[112,32,21,278,299],[113,2,1,299,300],[114,4,4,300,304],[115,2,2,304,306],[116,1,1,306,307]]],[3,121,88,307,395,[[119,2,2,307,309],[122,13,9,309,318],[123,19,16,318,334],[124,1,1,334,335],[125,11,9,335,344],[126,3,2,344,346],[127,11,5,346,351],[128,3,2,351,353],[129,3,2,353,355],[130,4,1,355,356],[131,2,2,356,358],[135,10,5,358,363],[136,2,2,363,365],[138,1,1,365,366],[140,1,1,366,367],[141,1,1,367,368],[144,10,8,368,376],[145,10,9,376,385],[146,7,5,385,390],[147,4,2,390,392],[148,1,1,392,393],[149,2,2,393,395]]],[4,167,146,395,541,[[153,5,4,395,399],[154,6,6,399,405],[155,1,1,405,406],[156,17,12,406,418],[157,10,10,418,428],[158,5,3,428,431],[159,1,1,431,432],[160,4,4,432,436],[161,9,9,436,445],[162,6,5,445,450],[163,13,11,450,461],[164,3,3,461,464],[165,1,1,464,465],[166,1,1,465,466],[167,2,2,466,468],[168,9,5,468,473],[169,3,3,473,476],[170,2,2,476,478],[171,3,2,478,480],[172,2,2,480,482],[173,3,3,482,485],[174,3,3,485,488],[175,1,1,488,489],[176,1,1,489,490],[177,1,1,490,491],[178,5,4,491,495],[179,6,6,495,501],[180,7,7,501,508],[181,8,7,508,515],[182,9,8,515,523],[183,10,9,523,532],[184,5,5,532,537],[185,2,2,537,539],[186,3,2,539,541]]],[5,78,62,541,603,[[187,2,2,541,543],[188,2,2,543,545],[189,3,3,545,548],[190,4,3,548,551],[191,4,3,551,554],[192,8,6,554,560],[193,3,2,560,562],[194,3,3,562,565],[195,5,4,565,569],[196,8,7,569,576],[197,1,1,576,577],[199,3,2,577,579],[200,7,5,579,584],[201,1,1,584,585],[202,1,1,585,586],[206,1,1,586,587],[208,10,7,587,594],[209,6,5,594,599],[210,6,4,599,603]]],[6,75,62,603,665,[[211,2,2,603,605],[212,4,2,605,607],[213,1,1,607,608],[214,2,2,608,610],[215,3,2,610,612],[216,2,2,612,614],[218,1,1,614,615],[219,3,3,615,618],[220,2,2,618,620],[221,5,3,620,623],[222,1,1,623,624],[223,2,2,624,626],[224,7,6,626,632],[225,4,3,632,635],[226,1,1,635,636],[227,2,2,636,638],[228,6,4,638,642],[229,11,8,642,650],[230,11,11,650,661],[231,5,4,661,665]]],[7,8,7,665,672,[[232,1,1,665,666],[233,2,1,666,667],[234,1,1,667,668],[235,4,4,668,672]]],[8,150,131,672,803,[[236,7,6,672,678],[237,8,6,678,684],[238,3,3,684,687],[239,3,3,687,690],[240,1,1,690,691],[241,3,3,691,694],[242,6,5,694,699],[243,4,2,699,701],[244,10,8,701,709],[245,4,4,709,713],[246,4,3,713,716],[247,4,4,716,720],[248,3,3,720,723],[249,12,12,723,735],[250,2,2,735,737],[251,1,1,737,738],[252,5,4,738,742],[253,7,6,742,748],[254,1,1,748,749],[255,6,6,749,755],[256,4,4,755,759],[257,6,6,759,765],[258,1,1,765,766],[259,5,4,766,770],[260,9,9,770,779],[261,6,6,779,785],[262,7,5,785,790],[263,4,4,790,794],[264,7,3,794,797],[265,5,4,797,801],[266,2,2,801,803]]],[9,75,61,803,864,[[267,2,2,803,805],[268,2,2,805,807],[269,6,5,807,812],[270,3,3,812,815],[271,1,1,815,816],[272,5,4,816,820],[273,4,3,820,823],[277,2,1,823,824],[278,1,1,824,825],[279,3,3,825,828],[280,5,4,828,832],[281,1,1,832,833],[282,3,3,833,836],[284,7,5,836,841],[285,18,11,841,852],[286,2,2,852,854],[287,3,3,854,857],[288,2,2,857,859],[289,2,2,859,861],[290,3,3,861,864]]],[10,100,92,864,956,[[291,6,6,864,870],[292,8,8,870,878],[293,6,6,878,884],[294,3,3,884,887],[295,2,2,887,889],[298,14,11,889,900],[299,3,3,900,903],[300,2,2,903,905],[301,6,6,905,911],[302,8,6,911,917],[303,2,2,917,919],[304,5,5,919,924],[305,8,8,924,932],[306,7,7,932,939],[307,3,3,939,942],[308,3,3,942,945],[309,2,2,945,947],[310,4,2,947,949],[311,2,1,949,950],[312,6,6,950,956]]],[11,79,72,956,1028,[[313,1,1,956,957],[314,4,4,957,961],[315,2,2,961,963],[316,4,4,963,967],[318,3,3,967,970],[319,2,1,970,971],[320,5,5,971,976],[322,4,4,976,980],[324,2,2,980,982],[325,4,4,982,986],[326,4,4,986,990],[327,12,12,990,1002],[328,2,2,1002,1004],[329,4,4,1004,1008],[330,1,1,1008,1009],[331,3,2,1009,1011],[332,8,7,1011,1018],[333,4,3,1018,1021],[335,4,3,1021,1024],[336,2,2,1024,1026],[337,4,2,1026,1028]]],[12,41,34,1028,1062,[[338,1,1,1028,1029],[341,3,2,1029,1031],[342,4,3,1031,1034],[344,2,2,1034,1036],[346,1,1,1036,1037],[347,1,1,1037,1038],[348,1,1,1038,1039],[349,3,2,1039,1041],[350,3,3,1041,1044],[353,5,3,1044,1047],[354,4,3,1047,1050],[358,1,1,1050,1051],[359,1,1,1051,1052],[360,1,1,1052,1053],[363,2,1,1053,1054],[364,1,1,1054,1055],[365,1,1,1055,1056],[366,6,6,1056,1062]]],[13,75,58,1062,1120,[[367,1,1,1062,1063],[371,1,1,1063,1064],[372,3,3,1064,1067],[373,6,4,1067,1071],[374,6,4,1071,1075],[375,1,1,1075,1076],[376,5,4,1076,1080],[378,1,1,1080,1081],[379,1,1,1081,1082],[380,1,1,1082,1083],[381,3,3,1083,1086],[384,4,4,1086,1090],[386,3,2,1090,1092],[387,8,5,1092,1097],[390,5,4,1097,1101],[392,3,2,1101,1103],[394,1,1,1103,1104],[395,3,1,1104,1105],[396,7,4,1105,1109],[397,2,1,1109,1110],[398,2,2,1110,1112],[400,1,1,1112,1113],[401,5,5,1113,1118],[402,2,2,1118,1120]]],[14,21,16,1120,1136,[[405,5,2,1120,1122],[406,3,3,1122,1125],[408,1,1,1125,1126],[410,3,3,1126,1129],[411,4,2,1129,1131],[412,5,5,1131,1136]]],[15,59,43,1136,1179,[[413,3,3,1136,1139],[414,1,1,1139,1140],[416,3,3,1140,1143],[417,4,3,1143,1146],[418,2,2,1146,1148],[420,14,8,1148,1156],[421,6,5,1156,1161],[422,2,1,1161,1162],[423,2,1,1162,1163],[424,13,9,1163,1172],[425,9,7,1172,1179]]],[16,52,39,1179,1218,[[426,8,6,1179,1185],[427,4,3,1185,1188],[428,7,5,1188,1193],[429,3,2,1193,1195],[430,3,3,1195,1198],[431,1,1,1198,1199],[432,1,1,1199,1200],[433,4,4,1200,1204],[434,20,13,1204,1217],[435,1,1,1217,1218]]],[17,59,54,1218,1272,[[436,5,4,1218,1222],[437,2,2,1222,1224],[438,6,6,1224,1230],[442,4,3,1230,1233],[443,1,1,1233,1234],[444,1,1,1234,1235],[445,4,2,1235,1237],[447,1,1,1237,1238],[449,4,4,1238,1242],[450,4,4,1242,1246],[452,3,3,1246,1249],[453,1,1,1249,1250],[455,1,1,1250,1251],[456,3,2,1251,1253],[458,1,1,1253,1254],[459,1,1,1254,1255],[462,1,1,1255,1256],[464,3,3,1256,1259],[465,4,4,1259,1263],[467,3,3,1263,1266],[468,1,1,1266,1267],[471,1,1,1267,1268],[473,3,3,1268,1271],[477,1,1,1271,1272]]],[18,113,105,1272,1377,[[479,1,1,1272,1273],[484,1,1,1273,1274],[495,1,1,1274,1275],[496,2,1,1275,1276],[497,2,2,1276,1278],[498,1,1,1278,1279],[500,2,1,1279,1280],[502,1,1,1280,1281],[504,2,2,1281,1283],[509,1,1,1283,1284],[511,1,1,1284,1285],[512,1,1,1285,1286],[514,4,4,1286,1290],[515,2,2,1290,1292],[516,2,2,1292,1294],[518,1,1,1294,1295],[519,2,2,1295,1297],[521,5,4,1297,1301],[526,1,1,1301,1302],[527,1,1,1302,1303],[529,1,1,1303,1304],[532,1,1,1304,1305],[533,5,5,1305,1310],[536,1,1,1310,1311],[538,4,2,1311,1313],[545,2,1,1313,1314],[548,3,3,1314,1317],[549,2,2,1317,1319],[550,1,1,1319,1320],[551,2,2,1320,1322],[554,2,2,1322,1324],[555,3,3,1324,1327],[558,1,1,1327,1328],[561,1,1,1328,1329],[563,2,2,1329,1331],[565,3,3,1331,1334],[566,3,3,1334,1337],[567,6,6,1337,1343],[568,1,1,1343,1344],[570,1,1,1344,1345],[571,1,1,1345,1346],[572,2,2,1346,1348],[573,2,1,1348,1349],[579,7,6,1349,1355],[580,1,1,1355,1356],[586,1,1,1356,1357],[587,2,2,1357,1359],[593,1,1,1359,1360],[595,1,1,1360,1361],[596,4,4,1361,1365],[605,1,1,1365,1366],[613,1,1,1366,1367],[614,1,1,1367,1368],[615,1,1,1368,1369],[616,2,2,1369,1371],[617,2,2,1371,1373],[620,1,1,1373,1374],[621,1,1,1374,1375],[622,1,1,1375,1376],[623,1,1,1376,1377]]],[19,32,29,1377,1406,[[630,2,2,1377,1379],[631,1,1,1379,1380],[633,1,1,1380,1381],[634,3,3,1381,1384],[635,4,2,1384,1386],[636,1,1,1386,1387],[637,1,1,1387,1388],[638,1,1,1388,1389],[639,1,1,1389,1390],[642,1,1,1390,1391],[643,1,1,1391,1392],[648,2,2,1392,1394],[649,1,1,1394,1395],[650,1,1,1395,1396],[651,1,1,1396,1397],[652,3,3,1397,1400],[654,4,3,1400,1403],[655,1,1,1403,1404],[658,2,2,1404,1406]]],[20,26,22,1406,1428,[[660,3,3,1406,1409],[663,3,3,1409,1412],[664,2,2,1412,1414],[665,6,4,1414,1418],[666,4,4,1418,1422],[667,2,1,1422,1423],[669,3,3,1423,1426],[670,3,2,1426,1428]]],[21,5,4,1428,1432,[[672,1,1,1428,1429],[673,2,1,1429,1430],[674,1,1,1430,1431],[678,1,1,1431,1432]]],[22,120,110,1432,1542,[[679,1,1,1432,1433],[680,5,5,1433,1438],[681,2,2,1438,1440],[682,2,2,1440,1442],[683,1,1,1442,1443],[685,7,6,1443,1449],[687,2,2,1449,1451],[688,5,5,1451,1456],[689,3,3,1456,1459],[690,2,2,1459,1461],[691,4,4,1461,1465],[692,1,1,1465,1466],[695,5,4,1466,1470],[697,6,6,1470,1476],[698,1,1,1476,1477],[700,5,5,1477,1482],[701,3,2,1482,1484],[702,2,2,1484,1486],[703,1,1,1486,1487],[704,1,1,1487,1488],[705,6,6,1488,1494],[706,3,3,1494,1497],[707,1,1,1497,1498],[708,5,4,1498,1502],[709,1,1,1502,1503],[710,1,1,1503,1504],[712,1,1,1504,1505],[715,3,2,1505,1507],[716,7,7,1507,1514],[717,3,2,1514,1516],[721,1,1,1516,1517],[725,1,1,1517,1518],[726,1,1,1518,1519],[727,1,1,1519,1520],[729,2,2,1520,1522],[730,2,2,1522,1524],[731,1,1,1524,1525],[734,1,1,1525,1526],[736,7,5,1526,1531],[738,1,1,1531,1532],[739,1,1,1532,1533],[740,1,1,1533,1534],[741,3,3,1534,1537],[743,6,4,1537,1541],[744,1,1,1541,1542]]],[23,137,121,1542,1663,[[745,4,4,1542,1546],[746,1,1,1546,1547],[747,4,4,1547,1551],[748,1,1,1551,1552],[749,1,1,1552,1553],[750,2,2,1553,1555],[751,5,3,1555,1558],[753,1,1,1558,1559],[755,4,3,1559,1562],[756,1,1,1562,1563],[757,1,1,1563,1564],[760,3,3,1564,1567],[761,11,8,1567,1575],[762,1,1,1575,1576],[763,1,1,1576,1577],[764,5,4,1577,1581],[766,1,1,1581,1582],[767,4,4,1582,1586],[769,4,4,1586,1590],[770,1,1,1590,1591],[771,1,1,1591,1592],[772,2,2,1592,1594],[774,4,4,1594,1598],[775,8,8,1598,1606],[776,6,4,1606,1610],[777,5,5,1610,1615],[778,2,2,1615,1617],[779,6,5,1617,1622],[780,5,3,1622,1625],[781,2,2,1625,1627],[782,1,1,1627,1628],[783,3,3,1628,1631],[784,1,1,1631,1632],[785,1,1,1632,1633],[786,3,3,1633,1636],[788,5,5,1636,1641],[790,4,3,1641,1644],[791,1,1,1644,1645],[792,3,3,1645,1648],[793,4,4,1648,1652],[794,5,5,1652,1657],[795,3,3,1657,1660],[796,6,3,1660,1663]]],[24,19,17,1663,1680,[[797,5,4,1663,1667],[798,7,6,1667,1673],[799,4,4,1673,1677],[800,1,1,1677,1678],[801,2,2,1678,1680]]],[25,107,84,1680,1764,[[802,1,1,1680,1681],[803,1,1,1681,1682],[804,2,2,1682,1684],[805,10,6,1684,1690],[806,1,1,1690,1691],[808,4,4,1691,1695],[813,4,4,1695,1699],[814,1,1,1699,1700],[817,6,6,1700,1706],[821,4,4,1706,1710],[822,1,1,1710,1711],[823,3,3,1711,1714],[824,3,3,1714,1717],[825,6,4,1717,1721],[827,1,1,1721,1722],[828,1,1,1722,1723],[829,2,2,1723,1725],[830,1,1,1725,1726],[831,7,4,1726,1730],[832,1,1,1730,1731],[833,1,1,1731,1732],[834,3,1,1732,1733],[835,2,1,1733,1734],[837,1,1,1734,1735],[839,9,7,1735,1742],[840,4,4,1742,1746],[841,1,1,1746,1747],[844,7,5,1747,1752],[845,2,2,1752,1754],[846,9,4,1754,1758],[847,7,5,1758,1763],[849,1,1,1763,1764]]],[26,23,20,1764,1784,[[850,6,5,1764,1769],[857,2,2,1769,1771],[858,2,2,1771,1773],[859,8,6,1773,1779],[860,2,2,1779,1781],[861,3,3,1781,1784]]],[27,28,23,1784,1807,[[862,4,3,1784,1787],[863,7,6,1787,1793],[864,3,3,1793,1796],[865,1,1,1796,1797],[866,1,1,1797,1798],[867,2,1,1798,1799],[868,1,1,1799,1800],[870,5,3,1800,1803],[871,2,2,1803,1805],[873,2,2,1805,1807]]],[28,13,10,1807,1817,[[876,4,2,1807,1809],[877,6,5,1809,1814],[878,3,3,1814,1817]]],[29,22,17,1817,1834,[[879,4,2,1817,1819],[880,1,1,1819,1820],[881,1,1,1820,1821],[882,2,2,1821,1823],[883,4,3,1823,1826],[884,1,1,1826,1827],[886,6,5,1827,1832],[887,3,2,1832,1834]]],[30,12,6,1834,1840,[[888,12,6,1834,1840]]],[31,4,3,1840,1843,[[889,1,1,1840,1841],[891,3,2,1841,1843]]],[32,14,13,1843,1856,[[893,1,1,1843,1844],[894,1,1,1844,1845],[895,1,1,1845,1846],[896,2,2,1846,1848],[897,2,2,1848,1850],[899,7,6,1850,1856]]],[33,4,4,1856,1860,[[900,1,1,1856,1857],[901,2,2,1857,1859],[902,1,1,1859,1860]]],[34,2,2,1860,1862,[[903,1,1,1860,1861],[905,1,1,1861,1862]]],[35,21,14,1862,1876,[[906,15,9,1862,1871],[907,3,2,1871,1873],[908,3,3,1873,1876]]],[36,8,6,1876,1882,[[909,2,2,1876,1878],[910,6,4,1878,1882]]],[37,40,36,1882,1918,[[911,1,1,1882,1883],[912,1,1,1883,1884],[913,2,2,1884,1886],[914,1,1,1886,1887],[916,1,1,1887,1888],[918,8,7,1888,1895],[919,2,2,1895,1897],[921,1,1,1897,1898],[922,7,6,1898,1904],[923,3,3,1904,1907],[924,13,11,1907,1918]]],[38,8,7,1918,1925,[[927,4,4,1918,1922],[928,4,3,1922,1925]]]],[4,7,12,13,15,17,18,22,30,32,33,34,47,60,63,69,72,82,93,106,107,109,110,113,116,119,122,125,128,132,136,140,141,142,163,169,170,171,172,176,183,186,187,189,193,195,197,205,234,259,298,337,378,409,420,423,425,435,494,495,517,521,539,547,551,561,592,603,633,646,665,682,689,691,693,700,707,710,724,725,729,768,771,772,802,809,815,816,844,862,863,865,866,895,896,912,913,916,921,960,973,976,1005,1014,1031,1039,1040,1117,1131,1159,1160,1176,1179,1184,1185,1190,1191,1192,1196,1204,1265,1269,1270,1284,1299,1356,1428,1429,1443,1446,1448,1449,1466,1471,1474,1509,1510,1516,1526,1565,1567,1572,1577,1597,1635,1638,1645,1646,1651,1683,1710,1732,1737,1760,1783,1790,1799,1800,1805,1822,1830,1831,1832,1833,1834,1835,1857,1867,1870,1871,1873,1874,1875,1877,1902,1919,1942,1948,1951,1952,1969,1972,1973,1974,1976,1977,2027,2036,2037,2041,2042,2059,2060,2061,2062,2063,2098,2143,2156,2159,2170,2193,2195,2366,2371,2372,2373,2374,2435,2437,2466,2467,2472,2507,2514,2517,2524,2533,2534,2709,2744,2869,2894,2895,2896,2897,2914,2915,2917,2950,2951,2952,2954,2957,2996,3046,3047,3048,3049,3050,3056,3057,3058,3066,3073,3078,3079,3083,3084,3085,3086,3098,3102,3103,3106,3113,3119,3120,3121,3134,3149,3150,3157,3168,3181,3182,3187,3192,3193,3194,3196,3197,3231,3287,3288,3396,3397,3399,3405,3408,3409,3410,3414,3416,3417,3418,3423,3429,3430,3431,3432,3436,3437,3438,3439,3441,3442,3443,3444,3454,3477,3478,3498,3519,3558,3559,3593,3693,3705,3827,3828,3829,3831,3832,3833,3834,3835,3836,3851,3860,3861,3862,3868,3874,3880,3886,3892,3898,3904,3910,3916,3922,3928,3934,3956,3968,3970,3971,3976,3980,3983,3984,3985,3987,3998,4021,4043,4044,4045,4055,4056,4073,4074,4095,4100,4142,4176,4185,4300,4301,4303,4305,4308,4326,4340,4405,4460,4489,4580,4586,4593,4594,4595,4601,4602,4603,4609,4620,4625,4628,4631,4634,4637,4640,4643,4653,4655,4656,4660,4662,4683,4688,4728,4763,4768,4894,4902,4931,4938,4939,4952,4956,4960,4963,4968,4989,5008,5012,5013,5014,5019,5024,5030,5034,5036,5042,5043,5044,5054,5056,5065,5066,5067,5068,5069,5077,5082,5086,5088,5092,5110,5122,5138,5148,5155,5156,5158,5160,5164,5166,5167,5168,5175,5181,5182,5190,5194,5196,5199,5201,5209,5210,5212,5216,5217,5221,5229,5234,5235,5236,5240,5241,5248,5259,5290,5313,5324,5334,5345,5346,5350,5355,5357,5373,5383,5384,5389,5400,5415,5423,5430,5446,5460,5463,5470,5477,5489,5499,5506,5540,5562,5569,5582,5583,5584,5586,5587,5589,5594,5595,5596,5612,5624,5625,5626,5640,5643,5644,5683,5689,5691,5692,5694,5697,5707,5710,5716,5719,5723,5724,5726,5727,5728,5730,5741,5742,5745,5746,5749,5750,5755,5757,5765,5793,5804,5805,5806,5822,5835,5845,5847,5856,5862,5885,5891,5895,5900,5908,5919,5924,5934,5943,5944,5945,5952,5953,5959,5963,5964,5974,6001,6002,6027,6030,6031,6049,6053,6054,6064,6076,6077,6078,6091,6092,6096,6099,6125,6155,6167,6196,6197,6198,6199,6201,6265,6275,6378,6429,6442,6443,6444,6448,6455,6457,6461,6462,6468,6469,6474,6483,6491,6501,6507,6530,6535,6552,6563,6598,6613,6622,6624,6629,6678,6686,6747,6772,6773,6799,6815,6826,6833,6856,6869,6872,6891,6894,6917,6921,6923,6924,6926,6927,6930,6948,6949,6965,6986,6990,6994,7005,7023,7024,7025,7026,7028,7029,7032,7033,7035,7054,7069,7075,7076,7078,7079,7080,7081,7082,7084,7089,7100,7105,7108,7121,7127,7128,7168,7190,7195,7199,7200,7204,7215,7216,7223,7232,7233,7240,7256,7259,7271,7272,7274,7275,7277,7278,7288,7300,7309,7313,7324,7346,7347,7349,7354,7358,7362,7365,7367,7377,7387,7400,7403,7404,7406,7410,7411,7415,7418,7420,7426,7427,7437,7448,7456,7458,7462,7465,7477,7478,7493,7496,7507,7509,7526,7531,7532,7536,7538,7539,7541,7545,7546,7553,7560,7588,7595,7608,7628,7630,7634,7664,7678,7685,7686,7697,7702,7705,7730,7736,7749,7756,7757,7761,7764,7777,7778,7779,7782,7791,7795,7800,7802,7805,7809,7824,7843,7849,7857,7858,7868,7869,7871,7876,7877,7889,7893,7894,7899,7913,7915,7924,7926,7928,7929,7931,7936,7937,7940,7941,7943,7944,7960,7962,7970,7973,7975,7979,7990,7991,8003,8015,8022,8023,8024,8060,8066,8089,8116,8118,8119,8120,8123,8125,8128,8140,8165,8166,8177,8180,8186,8191,8192,8271,8304,8340,8349,8354,8358,8378,8382,8384,8409,8429,8438,8449,8485,8486,8496,8498,8509,8513,8514,8516,8517,8524,8530,8531,8533,8535,8545,8546,8557,8558,8581,8589,8592,8603,8621,8663,8673,8700,8705,8710,8718,8723,8742,8747,8765,8768,8771,8778,8781,8794,8796,8807,8808,8812,8818,8822,8827,8829,8830,8834,8865,8866,8869,8879,8885,8993,9001,9009,9013,9014,9025,9044,9046,9049,9050,9051,9054,9064,9072,9091,9100,9120,9133,9142,9144,9147,9150,9156,9158,9163,9170,9183,9184,9187,9195,9232,9237,9238,9247,9248,9254,9255,9256,9263,9265,9272,9280,9281,9288,9297,9298,9299,9303,9310,9317,9324,9331,9332,9342,9356,9377,9391,9395,9421,9437,9480,9485,9505,9515,9519,9525,9526,9551,9554,9556,9568,9573,9582,9585,9611,9614,9621,9626,9702,9703,9705,9716,9733,9746,9747,9749,9750,9820,9825,9827,9829,9852,9869,9874,9879,9883,9893,9903,9911,9914,9924,9930,9931,9936,9938,9940,9943,9946,9951,9954,9956,9961,9962,9969,9982,10006,10017,10020,10024,10028,10064,10086,10099,10103,10104,10106,10115,10117,10118,10134,10136,10144,10187,10193,10194,10203,10207,10251,10252,10271,10426,10428,10438,10445,10454,10537,10557,10640,10671,10695,10742,10759,10763,10771,10772,10827,10843,10857,10868,10873,10874,10946,10973,10984,11094,11133,11150,11169,11179,11185,11186,11191,11192,11205,11277,11287,11297,11313,11332,11333,11334,11340,11354,11359,11360,11362,11384,11400,11402,11407,11414,11452,11473,11476,11493,11501,11507,11546,11549,11566,11576,11612,11613,11631,11632,11634,11639,11643,11679,11688,11691,11692,11737,11753,11770,11808,11848,11849,11850,11853,11870,11899,11901,11966,11982,11983,11984,11987,11991,12002,12014,12101,12103,12112,12115,12117,12173,12216,12233,12234,12244,12252,12260,12261,12265,12268,12269,12300,12302,12307,12318,12361,12375,12381,12393,12396,12400,12416,12418,12495,12496,12502,12503,12504,12506,12510,12511,12512,12514,12521,12543,12547,12580,12611,12631,12636,12646,12647,12650,12667,12668,12670,12671,12672,12677,12686,12688,12690,12693,12694,12703,12704,12706,12707,12712,12720,12735,12736,12745,12751,12754,12759,12760,12761,12773,12778,12780,12783,12788,12794,12809,12818,12829,12830,12834,12835,12845,12847,12849,12851,12852,12853,12855,12856,12860,12861,12862,12865,12868,12873,12874,12875,12882,12892,12904,12905,12907,12908,12909,12910,12912,13009,13014,13024,13038,13076,13091,13106,13140,13182,13186,13187,13195,13213,13223,13226,13235,13261,13271,13272,13296,13354,13368,13385,13421,13437,13487,13534,13536,13550,13558,13573,13582,13584,13632,13634,13635,13675,13747,13805,13814,13816,13939,13952,14006,14136,14170,14183,14191,14195,14241,14256,14289,14290,14358,14400,14438,14463,14468,14469,14476,14496,14502,14516,14517,14543,14558,14565,14572,14579,14586,14593,14653,14683,14711,14755,14756,14757,14758,14760,14764,14806,14825,14827,14919,14984,14991,15000,15007,15015,15034,15064,15070,15095,15098,15122,15146,15155,15220,15269,15287,15291,15309,15317,15325,15342,15355,15371,15382,15387,15388,15390,15392,15393,15411,15431,15444,15461,15462,15467,15523,15524,15529,15532,15544,15545,15564,15763,15789,15791,15850,15893,15982,15989,15995,16062,16131,16204,16229,16234,16251,16255,16265,16270,16298,16309,16322,16345,16457,16471,16508,16574,16584,16589,16595,16632,16636,16649,16683,16692,16735,16822,16844,17010,17015,17034,17061,17089,17126,17132,17133,17170,17179,17184,17212,17296,17309,17336,17349,17356,17414,17415,17417,17420,17429,17430,17439,17443,17444,17466,17471,17473,17474,17484,17514,17521,17522,17524,17526,17571,17582,17588,17648,17655,17687,17696,17697,17702,17705,17714,17725,17734,17735,17769,17783,17799,17800,17802,17803,17805,17833,17843,17853,17867,17870,17877,17882,17894,17895,17900,17901,17904,17912,17915,17919,17928,17931,17987,17990,17992,17994,18020,18022,18023,18025,18027,18028,18035,18057,18060,18064,18072,18077,18084,18092,18116,18117,18127,18131,18152,18153,18154,18159,18163,18164,18169,18183,18188,18211,18225,18240,18242,18243,18257,18269,18311,18355,18378,18391,18395,18400,18402,18403,18409,18410,18418,18420,18518,18608,18621,18644,18682,18686,18701,18702,18721,18765,18788,18789,18790,18791,18799,18841,18845,18860,18870,18875,18877,18899,18902,18917,18919,18930,18948,18949,18956,18964,18997,19008,19018,19020,19027,19036,19076,19093,19100,19141,19144,19151,19200,19230,19231,19233,19252,19272,19345,19350,19355,19368,19373,19374,19375,19378,19379,19381,19384,19401,19413,19429,19430,19436,19440,19484,19489,19490,19491,19504,19537,19552,19567,19568,19590,19618,19621,19629,19670,19674,19675,19691,19697,19718,19720,19722,19723,19724,19727,19729,19745,19751,19762,19770,19789,19790,19791,19793,19795,19814,19816,19824,19830,19831,19837,19842,19844,19848,19872,19890,19895,19923,19933,19939,19940,19945,19961,19982,19994,19996,20012,20016,20020,20032,20033,20055,20066,20071,20077,20092,20121,20127,20129,20149,20153,20166,20170,20186,20193,20196,20197,20214,20259,20264,20287,20309,20310,20317,20322,20323,20331,20333,20339,20348,20349,20353,20354,20357,20368,20411,20416,20438,20462,20463,20492,20495,20517,20518,20533,20534,20535,20537,20538,20539,20548,20584,20587,20589,20596,20702,20703,20705,20707,20713,20766,20767,20784,20805,20818,20822,20900,20901,20924,20926,20969,20980,20990,21000,21026,21045,21046,21058,21081,21082,21083,21118,21148,21170,21172,21204,21206,21207,21213,21222,21245,21258,21292,21325,21392,21433,21435,21439,21441,21442,21443,21444,21456,21459,21461,21470,21478,21590,21594,21597,21598,21599,21625,21626,21651,21652,21653,21655,21656,21659,21661,21667,21668,21737,21742,21749,21751,21752,21755,21987,21988,21995,22003,22017,22018,22019,22027,22028,22029,22056,22069,22092,22093,22094,22095,22099,22105,22108,22118,22120,22121,22123,22126,22131,22132,22133,22138,22161,22169,22183,22213,22215,22217,22234,22239,22253,22261,22293,22306,22312,22313,22322,22340,22342,22344,22357,22361,22365,22378,22395,22409,22412,22414,22431,22441,22443,22453,22484,22490,22491,22492,22494,22506,22508,22518,22521,22522,22523,22524,22525,22548,22561,22562,22580,22599,22614,22621,22626,22635,22643,22668,22675,22676,22678,22679,22684,22691,22702,22707,22729,22736,22784,22788,22794,22795,22796,22797,22801,22802,22803,22805,22807,22808,22828,22831,22836,22841,22855,22870,22873,22874,22878,22885,22910,22921,22922,22932,22957,22980,22982,22985,22986,22987,22991,22999,23011,23015,23039,23048,23049,23051,23053,23054,23056,23060,23061,23063,23069,23071,23072,23073,23074,23075,23076,23077,23081,23088,23089,23122,23124,23127,23137,23139,23141,23143]]],["+",[279,243,[[0,11,11,0,11,[[5,1,1,0,1],[7,1,1,1,2],[24,1,1,2,3],[29,1,1,3,4],[37,1,1,4,5],[39,1,1,5,6],[40,1,1,6,7],[42,1,1,7,8],[43,1,1,8,9],[46,2,2,9,11]]],[1,16,12,11,23,[[51,1,1,11,12],[54,5,3,12,15],[57,1,1,15,16],[58,1,1,16,17],[59,1,1,17,18],[61,1,1,18,19],[62,1,1,19,20],[65,4,2,20,22],[89,1,1,22,23]]],[2,9,7,23,30,[[111,1,1,23,24],[112,4,3,24,27],[113,2,1,27,28],[115,2,2,28,30]]],[3,8,6,30,36,[[123,4,3,30,33],[125,1,1,33,34],[130,2,1,34,35],[146,1,1,35,36]]],[4,13,13,36,49,[[156,1,1,36,37],[157,1,1,37,38],[158,1,1,38,39],[161,1,1,39,40],[163,1,1,40,41],[164,1,1,41,42],[166,1,1,42,43],[170,1,1,43,44],[171,1,1,44,45],[180,2,2,45,47],[182,1,1,47,48],[183,1,1,48,49]]],[5,4,4,49,53,[[190,1,1,49,50],[209,1,1,50,51],[210,2,2,51,53]]],[6,12,10,53,63,[[212,1,1,53,54],[214,1,1,54,55],[221,3,2,55,57],[224,1,1,57,58],[225,1,1,58,59],[226,1,1,59,60],[229,2,2,60,62],[231,2,1,62,63]]],[8,23,20,63,83,[[236,2,1,63,64],[237,4,3,64,67],[242,1,1,67,68],[243,1,1,68,69],[251,1,1,69,70],[253,4,3,70,73],[255,2,2,73,75],[259,1,1,75,76],[260,2,2,76,78],[263,1,1,78,79],[264,3,3,79,82],[265,1,1,82,83]]],[9,10,9,83,92,[[268,1,1,83,84],[273,1,1,84,85],[279,2,2,85,87],[280,3,2,87,89],[285,3,3,89,92]]],[10,17,17,92,109,[[291,1,1,92,93],[295,1,1,93,94],[299,1,1,94,95],[301,2,2,95,97],[302,1,1,97,98],[304,2,2,98,100],[305,3,3,100,103],[306,4,4,103,107],[312,2,2,107,109]]],[11,27,27,109,136,[[313,1,1,109,110],[320,3,3,110,113],[322,1,1,113,114],[324,1,1,114,115],[325,2,2,115,117],[326,3,3,117,120],[327,7,7,120,127],[328,1,1,127,128],[329,1,1,128,129],[331,1,1,129,130],[332,1,1,130,131],[333,2,2,131,133],[335,2,2,133,135],[336,1,1,135,136]]],[12,5,4,136,140,[[353,3,2,136,138],[354,1,1,138,139],[364,1,1,139,140]]],[13,19,15,140,155,[[367,1,1,140,141],[372,1,1,141,142],[373,1,1,142,143],[374,4,2,143,145],[376,1,1,145,146],[378,1,1,146,147],[381,1,1,147,148],[384,1,1,148,149],[387,3,2,149,151],[396,1,1,151,152],[397,2,1,152,153],[401,1,1,153,154],[402,1,1,154,155]]],[14,7,4,155,159,[[405,5,2,155,157],[406,1,1,157,158],[411,1,1,158,159]]],[15,9,7,159,166,[[417,2,2,159,161],[420,2,2,161,163],[421,1,1,163,164],[423,2,1,164,165],[424,2,1,165,166]]],[16,7,5,166,171,[[427,2,1,166,167],[428,3,2,167,169],[431,1,1,169,170],[435,1,1,170,171]]],[17,8,8,171,179,[[436,1,1,171,172],[450,1,1,172,173],[462,1,1,173,174],[465,2,2,174,176],[467,2,2,176,178],[473,1,1,178,179]]],[18,24,21,179,200,[[500,1,1,179,180],[514,1,1,180,181],[519,2,2,181,183],[521,1,1,183,184],[529,1,1,184,185],[533,2,2,185,187],[538,4,2,187,189],[545,2,1,189,190],[549,1,1,190,191],[551,1,1,191,192],[563,1,1,192,193],[565,2,2,193,195],[567,1,1,195,196],[570,1,1,196,197],[571,1,1,197,198],[573,1,1,198,199],[617,1,1,199,200]]],[19,6,4,200,204,[[634,1,1,200,201],[635,4,2,201,203],[654,1,1,203,204]]],[20,2,2,204,206,[[665,2,2,204,206]]],[21,1,1,206,207,[[672,1,1,206,207]]],[22,8,7,207,214,[[685,1,1,207,208],[701,1,1,208,209],[715,1,1,209,210],[716,2,2,210,212],[721,1,1,212,213],[736,2,1,213,214]]],[23,12,10,214,224,[[764,2,2,214,216],[772,2,2,216,218],[775,1,1,218,219],[776,1,1,219,220],[777,1,1,220,221],[779,1,1,221,222],[780,2,1,222,223],[796,2,1,223,224]]],[24,2,2,224,226,[[797,1,1,224,225],[798,1,1,225,226]]],[25,7,6,226,232,[[805,2,1,226,227],[825,1,1,227,228],[829,1,1,228,229],[839,1,1,229,230],[847,1,1,230,231],[849,1,1,231,232]]],[26,2,1,232,233,[[850,2,1,232,233]]],[27,3,3,233,236,[[867,1,1,233,234],[871,1,1,234,235],[873,1,1,235,236]]],[29,1,1,236,237,[[883,1,1,236,237]]],[32,2,2,237,239,[[897,1,1,237,238],[899,1,1,238,239]]],[33,1,1,239,240,[[901,1,1,239,240]]],[36,1,1,240,241,[[910,1,1,240,241]]],[37,1,1,241,242,[[918,1,1,241,242]]],[38,1,1,242,243,[[927,1,1,242,243]]]],[142,205,689,865,1131,1192,1196,1299,1356,1428,1448,1577,1638,1645,1651,1732,1760,1783,1831,1877,1951,1952,2709,3396,3417,3432,3439,3454,3558,3559,3861,3922,3928,3983,4142,4662,5044,5082,5110,5181,5209,5259,5313,5389,5415,5640,5644,5723,5741,5934,6461,6491,6507,6552,6622,6833,6869,6917,6930,6965,7032,7054,7121,7215,7259,7272,7275,7354,7377,7608,7685,7686,7705,7749,7761,7857,7876,7889,7944,7970,7973,7975,8003,8060,8186,8340,8349,8382,8384,8516,8524,8545,8723,8879,9054,9144,9147,9158,9237,9247,9256,9272,9280,9288,9297,9303,9310,9519,9525,9551,9733,9746,9750,9827,9869,9879,9883,9911,9914,9924,9931,9936,9940,9946,9951,9956,9961,9982,10020,10086,10118,10136,10144,10187,10193,10207,10843,10857,10873,11133,11205,11313,11340,11359,11360,11402,11452,11493,11549,11631,11643,11853,11870,11984,12014,12101,12103,12112,12244,12396,12400,12496,12510,12543,12611,12671,12735,12751,12754,12794,12868,12874,13213,13487,13558,13582,13632,13634,13805,14241,14476,14558,14565,14586,14711,14756,14757,14825,14827,14919,15015,15070,15287,15317,15325,15382,15431,15444,15467,16265,16584,16632,16636,17170,17430,17439,17571,17799,18084,18378,18402,18403,18518,18788,19429,19430,19621,19629,19727,19770,19793,19842,19844,20310,20317,20349,20535,21058,21172,21433,21656,21737,21742,22169,22234,22253,22431,22635,22684,22707,22873,22985,23127]]],["Day",[2,2,[[0,1,1,0,1,[[0,1,1,0,1]]],[18,1,1,1,2,[[496,1,1,1,2]]]],[4,14170]]],["Days",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13635]]],["When",[1,1,[[18,1,1,0,1,[[533,1,1,0,1]]]],[14764]]],["age",[5,5,[[0,2,2,0,2,[[17,1,1,0,1],[23,1,1,1,2]]],[5,2,2,2,4,[[209,2,2,2,4]]],[37,1,1,4,5,[[918,1,1,4,5]]]],[435,592,6461,6462,22980]]],["ago",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7411]]],["as",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11737]]],["continuance",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16255]]],["daily",[7,6,[[3,1,1,0,1,[[144,1,1,0,1]]],[11,1,1,1,2,[[337,1,1,1,2]]],[23,2,2,2,4,[[751,1,1,2,3],[781,1,1,3,4]]],[25,3,2,4,6,[[846,2,1,4,5],[847,1,1,5,6]]]],[4601,10252,19144,19895,21653,21668]]],["day",[1221,1089,[[0,68,65,0,65,[[0,9,9,0,9],[1,5,4,9,13],[2,2,2,13,15],[3,1,1,15,16],[4,2,2,16,18],[6,3,2,18,20],[7,3,3,20,23],[14,1,1,23,24],[16,2,2,24,26],[17,1,1,26,27],[18,2,2,27,29],[20,2,2,29,31],[21,2,2,31,33],[23,2,2,33,35],[24,1,1,35,36],[25,2,2,36,38],[26,2,2,38,40],[28,1,1,40,41],[29,1,1,41,42],[30,5,5,42,47],[31,1,1,47,48],[32,2,2,48,50],[33,1,1,50,51],[34,2,2,51,53],[38,2,1,53,54],[39,2,2,54,56],[40,1,1,56,57],[41,3,3,57,60],[46,2,2,60,62],[47,2,2,62,64],[49,1,1,64,65]]],[1,64,53,65,118,[[51,2,2,65,67],[54,1,1,67,68],[55,1,1,68,69],[59,3,3,69,72],[61,12,8,72,80],[62,4,4,80,84],[63,3,2,84,86],[65,11,8,86,94],[68,6,5,94,99],[69,4,3,99,102],[70,1,1,102,103],[71,1,1,103,104],[72,1,1,104,105],[73,1,1,105,106],[78,2,2,106,108],[80,2,2,108,110],[81,4,3,110,113],[83,2,2,113,115],[84,2,2,115,117],[89,1,1,117,118]]],[2,53,48,118,166,[[95,1,1,118,119],[96,7,7,119,126],[97,1,1,126,127],[98,2,2,127,129],[99,2,1,129,130],[101,1,1,130,131],[102,6,6,131,137],[103,5,5,137,142],[104,2,2,142,144],[105,1,1,144,145],[108,3,2,145,147],[111,2,2,147,149],[112,18,15,149,164],[114,1,1,164,165],[116,1,1,165,166]]],[3,69,59,166,225,[[119,2,2,166,168],[122,4,3,168,171],[123,15,15,171,186],[124,1,1,186,187],[125,6,5,187,192],[126,1,1,192,193],[127,3,2,193,195],[131,2,2,195,197],[135,7,2,197,199],[138,1,1,199,200],[141,1,1,200,201],[144,7,7,201,208],[145,9,9,208,217],[146,6,5,217,222],[147,3,2,222,224],[149,1,1,224,225]]],[4,98,96,225,321,[[153,2,2,225,227],[154,4,4,227,231],[155,1,1,231,232],[156,10,10,232,242],[157,6,6,242,248],[158,2,2,248,250],[159,1,1,250,251],[160,4,4,251,255],[161,4,4,255,259],[162,4,4,259,263],[163,8,8,263,271],[164,1,1,271,272],[165,1,1,272,273],[167,2,2,273,275],[168,3,3,275,278],[170,1,1,278,279],[171,1,1,279,280],[172,1,1,280,281],[173,1,1,281,282],[176,1,1,282,283],[178,4,4,283,287],[179,6,6,287,293],[180,5,5,293,298],[181,8,7,298,305],[182,6,6,305,311],[183,6,5,311,316],[184,3,3,316,319],[185,1,1,319,320],[186,1,1,320,321]]],[5,54,45,321,366,[[189,1,1,321,322],[190,2,2,322,324],[191,4,3,324,327],[192,6,5,327,332],[193,3,2,332,334],[194,3,3,334,337],[195,4,3,337,340],[196,8,7,340,347],[199,1,1,347,348],[200,7,5,348,353],[201,1,1,353,354],[202,1,1,354,355],[208,9,7,355,362],[209,3,3,362,365],[210,1,1,365,366]]],[6,39,38,366,404,[[211,2,2,366,368],[213,1,1,368,369],[214,1,1,369,370],[215,1,1,370,371],[216,2,2,371,373],[219,3,3,373,376],[220,2,2,376,378],[221,1,1,378,379],[222,1,1,379,380],[223,2,2,380,382],[224,3,3,382,385],[225,1,1,385,386],[228,3,3,386,389],[229,6,5,389,394],[230,8,8,394,402],[231,2,2,402,404]]],[7,7,6,404,410,[[233,2,1,404,405],[234,1,1,405,406],[235,4,4,406,410]]],[8,85,79,410,489,[[237,1,1,410,411],[238,1,1,411,412],[239,3,3,412,415],[240,1,1,415,416],[241,3,3,416,419],[242,2,2,419,421],[243,3,2,421,423],[244,5,4,423,427],[245,3,3,427,430],[246,3,2,430,432],[247,4,4,432,436],[248,1,1,436,437],[249,10,10,437,447],[250,2,2,447,449],[252,3,2,449,451],[253,2,2,451,453],[254,1,1,453,454],[255,3,3,454,457],[256,4,4,457,461],[257,4,4,461,465],[258,1,1,465,466],[259,4,3,466,469],[260,3,3,469,472],[261,6,6,472,478],[262,4,3,478,481],[263,2,2,481,483],[264,3,3,483,486],[265,2,2,486,488],[266,1,1,488,489]]],[9,53,42,489,531,[[267,1,1,489,490],[268,1,1,490,491],[269,6,5,491,496],[270,3,3,496,499],[271,1,1,499,500],[272,5,4,500,504],[273,1,1,504,505],[277,2,1,505,506],[278,1,1,506,507],[279,1,1,507,508],[280,1,1,508,509],[281,1,1,509,510],[282,2,2,510,512],[284,7,5,512,517],[285,15,9,517,526],[286,1,1,526,527],[288,2,2,527,529],[289,1,1,529,530],[290,1,1,530,531]]],[10,42,40,531,571,[[291,4,4,531,535],[292,4,4,535,539],[293,2,2,539,541],[294,1,1,541,542],[295,1,1,542,543],[298,8,8,543,551],[299,2,2,551,553],[300,1,1,553,554],[302,6,5,554,559],[303,2,2,559,561],[304,1,1,561,562],[306,1,1,562,563],[307,1,1,563,564],[308,2,2,564,566],[310,3,2,566,568],[312,3,3,568,571]]],[11,28,25,571,596,[[314,3,3,571,574],[316,4,4,574,578],[318,3,3,578,581],[319,2,1,581,582],[320,1,1,582,583],[322,1,1,583,584],[326,1,1,584,585],[327,1,1,585,586],[328,1,1,586,587],[329,3,3,587,590],[331,2,1,590,591],[332,3,3,591,594],[333,2,1,594,595],[337,1,1,595,596]]],[12,18,15,596,611,[[341,2,2,596,598],[342,1,1,598,599],[348,1,1,599,600],[349,2,1,600,601],[350,2,2,601,603],[353,2,2,603,605],[354,2,1,605,606],[363,2,1,606,607],[365,1,1,607,608],[366,3,3,608,611]]],[13,29,23,611,634,[[371,1,1,611,612],[372,2,2,612,614],[373,2,2,614,616],[374,2,2,616,618],[376,3,2,618,620],[384,3,3,620,623],[386,2,1,623,624],[387,3,2,624,626],[390,2,1,626,627],[392,1,1,627,628],[394,1,1,628,629],[395,2,1,629,630],[396,2,1,630,631],[401,3,3,631,634]]],[14,7,6,634,640,[[410,1,1,634,635],[411,3,2,635,637],[412,3,3,637,640]]],[15,29,23,640,663,[[413,1,1,640,641],[416,2,2,641,643],[417,1,1,643,644],[420,11,7,644,651],[421,5,5,651,656],[422,2,1,656,657],[424,1,1,657,658],[425,6,5,658,663]]],[16,27,23,663,686,[[426,2,2,663,665],[428,4,4,665,669],[429,1,1,669,670],[430,3,3,670,673],[432,1,1,673,674],[433,4,4,674,678],[434,12,8,678,686]]],[17,18,17,686,703,[[436,3,3,686,689],[437,1,1,689,690],[438,5,5,690,695],[449,1,1,695,696],[450,1,1,696,697],[452,1,1,697,698],[453,1,1,698,699],[455,1,1,699,700],[456,2,1,700,701],[458,1,1,701,702],[473,1,1,702,703]]],[18,48,47,703,750,[[479,1,1,703,704],[484,1,1,704,705],[495,1,1,705,706],[496,1,1,706,707],[497,1,1,707,708],[502,1,1,708,709],[509,1,1,709,710],[512,1,1,710,711],[514,1,1,711,712],[515,2,2,712,714],[521,2,2,714,716],[527,1,1,716,717],[533,1,1,717,718],[536,1,1,718,719],[548,3,3,719,722],[550,1,1,722,723],[551,1,1,723,724],[554,1,1,724,725],[555,2,2,725,727],[558,1,1,727,728],[561,1,1,728,729],[563,1,1,729,730],[565,1,1,730,731],[566,1,1,731,732],[572,2,2,732,734],[573,1,1,734,735],[579,3,2,735,737],[587,2,2,737,739],[595,1,1,739,740],[596,3,3,740,743],[613,1,1,743,744],[614,1,1,744,745],[615,1,1,745,746],[616,1,1,746,747],[617,1,1,747,748],[622,1,1,748,749],[623,1,1,749,750]]],[19,14,14,750,764,[[631,1,1,750,751],[633,1,1,751,752],[634,2,2,752,754],[638,1,1,754,755],[643,1,1,755,756],[648,2,2,756,758],[649,1,1,758,759],[650,1,1,759,760],[651,1,1,760,761],[654,3,3,761,764]]],[20,6,5,764,769,[[665,3,2,764,766],[666,2,2,766,768],[670,1,1,768,769]]],[21,4,3,769,772,[[673,2,1,769,770],[674,1,1,770,771],[678,1,1,771,772]]],[22,87,84,772,856,[[680,4,4,772,776],[681,2,2,776,778],[682,2,2,778,780],[683,1,1,780,781],[685,4,4,781,785],[687,2,2,785,787],[688,5,5,787,792],[689,3,3,792,795],[690,2,2,795,797],[691,3,3,797,800],[692,1,1,800,801],[695,5,4,801,805],[697,6,6,805,811],[698,1,1,811,812],[700,5,5,812,817],[701,1,1,817,818],[702,1,1,818,819],[703,1,1,819,820],[704,1,1,820,821],[705,6,6,821,827],[706,3,3,827,830],[707,1,1,830,831],[708,3,3,831,834],[709,1,1,834,835],[712,1,1,835,836],[715,2,1,836,837],[716,1,1,837,838],[717,1,1,838,839],[725,1,1,839,840],[726,1,1,840,841],[727,1,1,841,842],[729,1,1,842,843],[730,2,2,843,845],[734,1,1,845,846],[736,5,4,846,850],[739,1,1,850,851],[740,1,1,851,852],[741,1,1,852,853],[743,2,2,853,855],[744,1,1,855,856]]],[23,70,61,856,917,[[745,2,2,856,858],[747,1,1,858,859],[748,1,1,859,860],[750,1,1,860,861],[751,3,2,861,863],[755,4,3,863,866],[756,1,1,866,867],[760,1,1,867,868],[761,10,7,868,875],[762,1,1,875,876],[764,2,1,876,877],[769,3,3,877,880],[771,1,1,880,881],[774,2,2,881,883],[775,2,2,883,885],[776,4,2,885,887],[777,1,1,887,888],[778,1,1,888,889],[779,1,1,889,890],[780,3,3,890,893],[782,1,1,893,894],[783,2,2,894,896],[784,1,1,896,897],[785,1,1,897,898],[786,2,2,898,900],[788,5,5,900,905],[790,3,2,905,907],[791,1,1,907,908],[792,1,1,908,909],[793,2,2,909,911],[794,3,3,911,914],[795,1,1,914,915],[796,2,2,915,917]]],[24,13,12,917,929,[[797,3,3,917,920],[798,6,5,920,925],[799,4,4,925,929]]],[25,62,55,929,984,[[802,1,1,929,930],[803,1,1,930,931],[805,1,1,931,932],[808,4,4,932,936],[814,1,1,936,937],[817,3,3,937,940],[821,4,4,940,944],[822,1,1,944,945],[823,1,1,945,946],[824,2,2,946,948],[825,5,4,948,952],[827,1,1,952,953],[828,1,1,953,954],[829,1,1,954,955],[830,1,1,955,956],[831,7,4,956,960],[832,1,1,960,961],[833,1,1,961,962],[834,3,1,962,963],[835,2,1,963,964],[837,1,1,964,965],[839,2,2,965,967],[840,4,4,967,971],[841,1,1,971,972],[844,4,4,972,976],[845,1,1,976,977],[846,3,3,977,980],[847,4,4,980,984]]],[26,4,4,984,988,[[858,2,2,984,986],[859,2,2,986,988]]],[27,14,13,988,1001,[[862,2,2,988,990],[863,5,5,990,995],[865,1,1,995,996],[866,1,1,996,997],[867,1,1,997,998],[868,1,1,998,999],[870,2,1,999,1000],[871,1,1,1000,1001]]],[28,9,7,1001,1008,[[876,2,1,1001,1002],[877,5,4,1002,1006],[878,2,2,1006,1008]]],[29,14,11,1008,1019,[[879,2,1,1008,1009],[880,1,1,1009,1010],[881,1,1,1010,1011],[883,3,2,1011,1013],[884,1,1,1013,1014],[886,5,4,1014,1018],[887,1,1,1018,1019]]],[30,12,6,1019,1025,[[888,12,6,1019,1025]]],[32,8,7,1025,1032,[[894,1,1,1025,1026],[895,1,1,1026,1027],[896,1,1,1027,1028],[897,1,1,1028,1029],[899,4,3,1029,1032]]],[33,3,3,1032,1035,[[900,1,1,1032,1033],[901,1,1,1033,1034],[902,1,1,1034,1035]]],[34,1,1,1035,1036,[[905,1,1,1035,1036]]],[35,20,13,1036,1049,[[906,14,8,1036,1044],[907,3,2,1044,1046],[908,3,3,1046,1049]]],[36,7,6,1049,1055,[[909,2,2,1049,1051],[910,5,4,1051,1055]]],[37,31,29,1055,1084,[[911,1,1,1055,1056],[912,1,1,1056,1057],[913,2,2,1057,1059],[914,1,1,1059,1060],[916,1,1,1060,1061],[918,1,1,1061,1062],[919,2,2,1062,1064],[921,1,1,1064,1065],[922,7,6,1065,1071],[923,3,3,1071,1074],[924,11,10,1074,1084]]],[38,6,5,1084,1089,[[927,2,2,1084,1086],[928,4,3,1086,1089]]]],[4,7,12,13,15,17,18,22,30,32,33,34,47,60,63,93,106,107,170,172,187,197,205,378,420,423,425,494,495,521,539,551,561,603,633,691,724,725,729,772,802,862,895,912,913,916,921,960,973,976,1005,1014,1031,1159,1179,1192,1204,1265,1270,1284,1443,1446,1466,1471,1526,1567,1572,1646,1683,1783,1790,1805,1822,1830,1831,1832,1833,1834,1857,1867,1870,1871,1873,1875,1902,1919,1948,1952,1969,1972,1973,1974,1976,1977,2027,2036,2037,2041,2042,2059,2061,2062,2098,2143,2156,2193,2372,2374,2435,2437,2466,2467,2472,2507,2517,2533,2534,2744,2869,2894,2895,2896,2897,2914,2915,2917,2951,2954,2957,2996,3047,3057,3058,3079,3084,3086,3103,3113,3120,3121,3134,3150,3182,3197,3231,3287,3288,3397,3399,3405,3408,3409,3410,3414,3416,3423,3429,3430,3431,3436,3437,3438,3441,3442,3478,3593,3693,3705,3832,3833,3834,3851,3860,3862,3868,3874,3880,3886,3892,3898,3904,3910,3916,3922,3928,3934,3956,3968,3970,3971,3976,3980,3998,4043,4056,4176,4185,4301,4308,4405,4489,4580,4586,4593,4594,4595,4602,4603,4609,4620,4625,4628,4631,4634,4637,4640,4643,4653,4655,4656,4660,4662,4683,4688,4763,4902,4931,4956,4960,4963,4968,4989,5008,5012,5014,5019,5024,5030,5036,5042,5043,5044,5054,5056,5065,5067,5068,5077,5092,5110,5122,5138,5148,5155,5156,5158,5160,5164,5167,5190,5194,5199,5201,5210,5212,5216,5221,5234,5235,5236,5240,5248,5290,5324,5334,5345,5346,5350,5400,5415,5430,5470,5540,5569,5582,5583,5584,5586,5587,5589,5594,5595,5596,5612,5624,5625,5626,5643,5683,5689,5691,5692,5694,5697,5707,5710,5716,5719,5724,5726,5727,5730,5745,5746,5750,5755,5793,5804,5806,5822,5845,5900,5919,5924,5943,5944,5945,5953,5959,5963,5964,5974,6001,6002,6027,6030,6031,6049,6054,6064,6076,6077,6078,6091,6092,6096,6099,6167,6196,6197,6198,6199,6201,6265,6275,6429,6442,6443,6444,6448,6455,6457,6468,6469,6474,6501,6530,6535,6598,6613,6624,6678,6686,6772,6773,6799,6815,6826,6856,6872,6891,6894,6924,6926,6927,6948,6994,7005,7023,7029,7032,7033,7035,7054,7075,7076,7078,7079,7080,7084,7089,7100,7105,7108,7168,7190,7195,7199,7200,7204,7274,7288,7300,7309,7313,7324,7346,7347,7349,7358,7362,7377,7387,7403,7406,7410,7415,7420,7427,7437,7456,7458,7462,7465,7477,7478,7507,7509,7531,7532,7536,7538,7539,7541,7545,7546,7553,7588,7595,7628,7664,7678,7697,7730,7756,7757,7764,7777,7778,7779,7782,7795,7800,7805,7809,7824,7843,7849,7858,7869,7893,7894,7913,7915,7924,7926,7928,7929,7931,7936,7940,7960,7962,7970,7973,7975,7979,8003,8015,8024,8066,8089,8116,8118,8119,8120,8123,8125,8128,8140,8165,8166,8177,8180,8186,8271,8304,8354,8378,8409,8429,8438,8485,8486,8496,8498,8509,8513,8514,8516,8517,8530,8531,8533,8535,8546,8557,8603,8621,8663,8710,8742,8747,8765,8768,8778,8794,8807,8812,8822,8834,8866,8885,8993,9001,9009,9013,9014,9046,9049,9051,9064,9072,9091,9158,9163,9170,9183,9184,9187,9195,9232,9299,9331,9356,9377,9421,9437,9485,9505,9515,9554,9556,9573,9611,9614,9621,9626,9702,9703,9705,9716,9749,9820,9903,9930,9969,10006,10017,10024,10064,10103,10106,10115,10134,10252,10426,10428,10454,10695,10742,10771,10772,10827,10843,10868,11094,11150,11169,11185,11186,11277,11287,11297,11333,11334,11354,11362,11407,11414,11546,11566,11576,11613,11634,11639,11688,11753,11770,11808,11848,11982,11987,11991,12234,12244,12252,12265,12268,12269,12307,12361,12381,12393,12495,12502,12503,12504,12506,12510,12511,12512,12514,12521,12543,12547,12580,12667,12672,12686,12688,12690,12693,12712,12720,12754,12759,12760,12761,12778,12780,12783,12788,12809,12818,12829,12830,12834,12835,12845,12849,12851,12852,12853,12855,12856,12873,12875,12882,12892,12905,12907,12908,12909,12912,13187,13226,13272,13296,13354,13385,13421,13816,13952,14006,14136,14170,14183,14256,14358,14438,14463,14496,14502,14579,14593,14683,14760,14806,14984,14991,15000,15034,15064,15095,15122,15155,15220,15269,15291,15309,15342,15461,15462,15467,15523,15529,15789,15791,15893,15989,15995,16062,16204,16229,16234,16251,16270,16322,16345,16508,16574,16589,16595,16692,16844,17010,17015,17034,17061,17089,17170,17179,17184,17430,17443,17466,17474,17526,17582,17588,17648,17696,17697,17702,17705,17714,17725,17734,17735,17769,17800,17802,17803,17805,17833,17843,17853,17867,17870,17877,17882,17894,17895,17900,17901,17904,17912,17915,17919,17931,17987,17990,17992,17994,18020,18022,18023,18025,18027,18028,18035,18057,18060,18064,18072,18077,18092,18116,18127,18131,18152,18153,18154,18159,18163,18164,18169,18183,18188,18211,18240,18242,18243,18257,18311,18355,18409,18418,18608,18621,18644,18686,18701,18702,18765,18789,18790,18791,18799,18845,18860,18870,18899,18902,18930,18956,18964,19027,19036,19093,19141,19144,19230,19231,19233,19252,19355,19373,19374,19375,19378,19379,19381,19384,19401,19436,19537,19552,19567,19618,19674,19675,19697,19723,19751,19762,19795,19814,19837,19844,19848,19872,19923,19939,19940,19945,19961,19994,19996,20012,20016,20020,20032,20033,20055,20066,20077,20121,20149,20153,20193,20196,20197,20214,20287,20310,20322,20323,20331,20333,20339,20348,20353,20354,20357,20368,20411,20416,20492,20495,20539,20584,20587,20589,20596,20713,20766,20767,20818,20900,20901,20924,20926,20969,21000,21045,21046,21058,21081,21082,21083,21118,21148,21170,21204,21206,21207,21213,21222,21245,21258,21292,21325,21392,21439,21444,21456,21459,21461,21470,21478,21590,21594,21597,21599,21626,21651,21652,21655,21656,21659,21661,21667,21995,22003,22019,22027,22099,22105,22108,22120,22121,22123,22126,22138,22161,22169,22183,22213,22239,22306,22312,22313,22322,22342,22357,22361,22378,22395,22409,22441,22443,22453,22484,22490,22491,22494,22506,22518,22521,22522,22523,22524,22525,22599,22614,22626,22643,22668,22675,22676,22691,22702,22729,22784,22794,22795,22796,22797,22801,22802,22803,22805,22807,22808,22828,22831,22836,22841,22855,22870,22873,22874,22878,22885,22910,22921,22922,22932,22957,22985,23011,23015,23039,23048,23049,23051,23053,23054,23056,23060,23061,23063,23069,23071,23072,23074,23075,23076,23077,23081,23088,23089,23122,23137,23139,23141,23143]]],["day's",[5,4,[[3,2,1,0,1,[[127,2,1,0,1]]],[10,1,1,1,2,[[309,1,1,1,2]]],[16,1,1,2,3,[[434,1,1,2,3]]],[31,1,1,3,4,[[891,1,1,3,4]]]],[4055,9391,12847,22562]]],["days",[651,594,[[0,61,55,0,55,[[0,1,1,0,1],[2,2,2,1,3],[4,10,10,3,13],[5,2,2,13,15],[6,6,5,15,20],[7,4,4,20,24],[8,1,1,24,25],[9,1,1,25,26],[10,1,1,26,27],[13,1,1,27,28],[16,1,1,28,29],[20,2,2,29,31],[23,1,1,31,32],[24,2,2,32,34],[25,3,3,34,37],[26,2,2,37,39],[28,2,2,39,41],[29,1,1,41,42],[34,2,2,42,44],[36,1,1,44,45],[39,4,4,45,49],[41,1,1,49,50],[46,4,1,50,51],[48,1,1,51,52],[49,5,3,52,55]]],[1,29,29,55,84,[[51,1,1,55,56],[56,1,1,56,57],[59,2,2,57,59],[61,2,2,59,61],[62,2,2,61,63],[64,1,1,63,64],[65,2,2,64,66],[69,3,3,66,69],[71,1,1,69,70],[72,3,3,70,73],[73,2,2,73,75],[78,3,3,75,78],[80,2,2,78,80],[83,3,3,80,83],[84,1,1,83,84]]],[2,40,34,84,118,[[97,4,2,84,86],[101,6,4,86,90],[102,9,9,90,99],[103,2,2,99,101],[104,8,6,101,107],[111,1,1,107,108],[112,10,10,108,118]]],[3,30,23,118,141,[[122,8,6,118,124],[125,3,3,124,127],[127,4,1,127,128],[128,3,2,128,130],[129,1,1,130,131],[130,2,1,131,132],[135,3,3,132,135],[136,1,1,135,136],[140,1,1,136,137],[144,2,2,137,139],[145,1,1,139,140],[147,1,1,140,141]]],[4,49,43,141,184,[[153,2,1,141,142],[154,1,1,142,143],[156,6,6,143,149],[157,3,3,149,152],[158,2,1,152,153],[161,4,4,153,157],[162,1,1,157,158],[163,4,2,158,160],[164,1,1,160,161],[168,6,5,161,166],[169,3,3,166,169],[171,1,1,169,170],[174,3,3,170,173],[175,1,1,173,174],[177,1,1,174,175],[178,1,1,175,176],[182,2,2,176,178],[183,2,2,178,180],[184,2,2,180,182],[185,1,1,182,183],[186,2,1,183,184]]],[5,13,12,184,196,[[187,2,2,184,186],[188,2,2,186,188],[189,1,1,188,189],[190,1,1,189,190],[192,2,2,190,192],[195,1,1,192,193],[206,1,1,193,194],[208,1,1,194,195],[210,2,1,195,196]]],[6,19,16,196,212,[[212,3,2,196,198],[215,2,1,198,199],[218,1,1,199,200],[221,1,1,200,201],[224,3,3,201,204],[225,1,1,204,205],[227,1,1,205,206],[228,2,1,206,207],[229,2,2,207,209],[230,2,2,209,211],[231,1,1,211,212]]],[7,1,1,212,213,[[232,1,1,212,213]]],[8,20,20,213,233,[[236,1,1,213,214],[237,1,1,214,215],[238,1,1,215,216],[242,2,2,216,218],[244,1,1,218,219],[245,1,1,219,220],[248,2,2,220,222],[249,1,1,222,223],[252,2,2,223,225],[253,1,1,225,226],[260,2,2,226,228],[263,1,1,228,229],[264,1,1,229,230],[265,2,2,230,232],[266,1,1,232,233]]],[9,7,7,233,240,[[267,1,1,233,234],[273,1,1,234,235],[282,1,1,235,236],[286,1,1,236,237],[287,2,2,237,239],[290,1,1,239,240]]],[10,33,30,240,270,[[292,3,3,240,243],[293,3,3,243,246],[294,2,2,246,248],[298,4,2,248,250],[300,1,1,250,251],[301,3,3,251,254],[302,1,1,254,255],[304,2,2,255,257],[305,5,5,257,262],[306,2,2,262,264],[307,1,1,264,265],[308,1,1,265,266],[309,1,1,266,267],[310,1,1,267,268],[311,2,1,268,269],[312,1,1,269,270]]],[11,19,19,270,289,[[314,1,1,270,271],[320,1,1,271,272],[322,1,1,272,273],[324,1,1,273,274],[325,2,2,274,276],[327,3,3,276,279],[330,1,1,279,280],[332,4,4,280,284],[335,2,2,284,286],[336,1,1,286,287],[337,2,2,287,289]]],[12,17,16,289,305,[[338,1,1,289,290],[341,1,1,290,291],[342,3,2,291,293],[344,2,2,293,295],[346,1,1,295,296],[347,1,1,296,297],[349,1,1,297,298],[350,1,1,298,299],[354,1,1,299,300],[358,1,1,300,301],[359,1,1,301,302],[360,1,1,302,303],[366,2,2,303,305]]],[13,24,22,305,327,[[373,3,2,305,307],[375,1,1,307,308],[376,1,1,308,309],[379,1,1,309,310],[380,1,1,310,311],[381,1,1,311,312],[386,1,1,312,313],[387,1,1,313,314],[390,3,3,314,317],[392,1,1,317,318],[395,1,1,318,319],[396,4,3,319,322],[398,2,2,322,324],[400,1,1,324,325],[401,1,1,325,326],[402,1,1,326,327]]],[14,7,7,327,334,[[406,2,2,327,329],[408,1,1,329,330],[410,2,2,330,332],[412,2,2,332,334]]],[15,18,16,334,350,[[413,1,1,334,335],[414,1,1,335,336],[417,1,1,336,337],[418,2,2,337,339],[420,1,1,339,340],[424,9,7,340,347],[425,3,3,347,350]]],[16,17,13,350,363,[[426,6,4,350,354],[427,2,2,354,356],[429,2,2,356,358],[434,7,5,358,363]]],[17,31,28,363,391,[[436,1,1,363,364],[437,1,1,364,365],[438,1,1,365,366],[442,4,3,366,369],[443,1,1,369,370],[444,1,1,370,371],[445,4,2,371,373],[447,1,1,373,374],[449,3,3,374,377],[450,1,1,377,378],[452,2,2,378,380],[456,1,1,380,381],[459,1,1,381,382],[464,3,3,382,385],[465,2,2,385,387],[468,1,1,387,388],[471,1,1,388,389],[473,1,1,389,390],[477,1,1,390,391]]],[18,31,31,391,422,[[498,1,1,391,392],[500,1,1,392,393],[504,1,1,393,394],[511,1,1,394,395],[514,2,2,395,397],[516,2,2,397,399],[521,1,1,399,400],[526,1,1,400,401],[532,1,1,401,402],[549,1,1,402,403],[554,1,1,403,404],[555,1,1,404,405],[566,2,2,405,407],[567,5,5,407,412],[579,4,4,412,416],[580,1,1,416,417],[586,1,1,417,418],[596,1,1,418,419],[605,1,1,419,420],[620,1,1,420,421],[621,1,1,421,422]]],[19,7,7,422,429,[[630,2,2,422,424],[636,1,1,424,425],[637,1,1,425,426],[642,1,1,426,427],[655,1,1,427,428],[658,1,1,428,429]]],[20,18,16,429,445,[[660,3,3,429,432],[663,3,3,432,435],[664,2,2,435,437],[665,1,1,437,438],[666,2,2,438,440],[667,2,1,440,441],[669,3,3,441,444],[670,2,1,444,445]]],[22,24,22,445,467,[[679,1,1,445,446],[680,1,1,446,447],[685,2,2,447,449],[691,1,1,449,450],[701,1,1,450,451],[702,1,1,451,452],[708,1,1,452,453],[710,1,1,453,454],[716,4,4,454,458],[717,2,2,458,460],[729,1,1,460,461],[731,1,1,461,462],[738,1,1,462,463],[741,2,2,463,465],[743,4,2,465,467]]],[23,51,50,467,517,[[745,2,2,467,469],[746,1,1,469,470],[747,3,3,470,473],[749,1,1,473,474],[750,1,1,474,475],[751,1,1,475,476],[753,1,1,476,477],[757,1,1,477,478],[760,2,2,478,480],[761,1,1,480,481],[763,1,1,481,482],[764,1,1,482,483],[766,1,1,483,484],[767,4,4,484,488],[769,1,1,488,489],[770,1,1,489,490],[774,2,2,490,492],[775,5,5,492,497],[776,1,1,497,498],[777,3,3,498,501],[779,4,3,501,504],[781,1,1,504,505],[786,1,1,505,506],[790,1,1,506,507],[792,2,2,507,509],[793,2,2,509,511],[794,2,2,511,513],[795,2,2,513,515],[796,2,2,515,517]]],[24,3,3,517,520,[[797,1,1,517,518],[800,1,1,518,519],[801,1,1,519,520]]],[25,31,28,520,548,[[804,2,2,520,522],[805,7,5,522,527],[806,1,1,527,528],[813,4,4,528,532],[817,3,3,532,535],[823,2,2,535,537],[824,1,1,537,538],[839,2,2,538,540],[844,3,3,540,543],[845,1,1,543,544],[846,4,3,544,547],[847,1,1,547,548]]],[26,15,14,548,562,[[850,4,4,548,552],[857,2,2,552,554],[859,4,3,554,557],[860,2,2,557,559],[861,3,3,559,562]]],[27,11,9,562,571,[[862,2,1,562,563],[863,2,2,563,565],[864,3,3,565,568],[870,3,2,568,570],[873,1,1,570,571]]],[28,4,3,571,574,[[876,2,1,571,572],[877,1,1,572,573],[878,1,1,573,574]]],[29,6,5,574,579,[[879,2,1,574,575],[882,1,1,575,576],[886,1,1,576,577],[887,2,2,577,579]]],[31,2,2,579,581,[[889,1,1,579,580],[891,1,1,580,581]]],[32,4,4,581,585,[[893,1,1,581,582],[896,1,1,582,583],[899,2,2,583,585]]],[34,1,1,585,586,[[903,1,1,585,586]]],[35,1,1,586,587,[[906,1,1,586,587]]],[37,6,6,587,593,[[918,5,5,587,592],[924,1,1,592,593]]],[38,1,1,593,594,[[927,1,1,593,594]]]],[13,69,72,109,110,113,116,119,122,125,128,132,136,140,141,163,169,171,176,183,186,189,193,195,234,259,298,337,409,517,547,646,665,682,693,707,710,768,771,815,816,844,1039,1040,1117,1184,1185,1190,1191,1269,1429,1474,1509,1510,1516,1565,1710,1799,1800,1831,1835,1873,1874,1942,1973,1976,2060,2062,2063,2143,2156,2159,2170,2193,2195,2366,2371,2373,2435,2437,2514,2517,2524,2533,2950,2952,3046,3048,3049,3050,3056,3057,3073,3078,3083,3085,3098,3102,3106,3119,3149,3181,3187,3192,3193,3194,3196,3396,3405,3408,3410,3418,3436,3438,3441,3442,3443,3444,3827,3828,3829,3831,3835,3836,3984,3985,3987,4043,4073,4074,4100,4142,4300,4303,4305,4340,4460,4594,4601,4620,4683,4938,4939,5013,5014,5030,5034,5036,5044,5066,5069,5086,5088,5166,5168,5175,5182,5196,5217,5229,5241,5345,5346,5350,5355,5357,5373,5383,5384,5423,5477,5489,5499,5506,5562,5569,5726,5728,5742,5757,5765,5805,5835,5847,5856,5862,5885,5891,5895,5924,5952,5963,6053,6378,6429,6507,6552,6563,6629,6747,6869,6921,6923,6926,6949,6986,6994,7025,7028,7081,7082,7127,7128,7223,7271,7277,7365,7367,7411,7426,7493,7496,7560,7630,7634,7702,7871,7899,7943,7970,7990,7991,8022,8023,8192,8449,8558,8581,8589,8700,8771,8781,8808,8818,8829,8830,8865,8869,9025,9050,9100,9120,9133,9142,9156,9238,9248,9254,9255,9263,9265,9281,9298,9317,9332,9342,9395,9437,9480,9526,9568,9747,9825,9852,9874,9893,9943,9954,9962,10028,10099,10104,10115,10117,10187,10194,10203,10251,10252,10271,10426,10438,10445,10537,10557,10640,10671,10759,10763,10874,10946,10973,10984,11179,11192,11332,11333,11384,11400,11473,11476,11507,11612,11632,11679,11691,11692,11737,11808,11848,11849,11850,11899,11901,11966,11983,12002,12115,12117,12173,12216,12233,12260,12261,12300,12318,12400,12416,12418,12511,12631,12636,12646,12647,12650,12670,12671,12677,12686,12694,12703,12704,12706,12707,12736,12745,12773,12778,12856,12860,12861,12862,12865,12874,12904,12910,13009,13014,13024,13038,13076,13091,13106,13140,13182,13186,13195,13223,13261,13271,13368,13437,13534,13536,13550,13573,13584,13675,13747,13814,13939,14195,14241,14289,14400,14468,14469,14516,14517,14572,14653,14755,15007,15098,15146,15355,15371,15387,15388,15390,15392,15393,15524,15532,15544,15545,15564,15763,15982,16131,16298,16309,16457,16471,16649,16683,16822,17212,17296,17336,17349,17356,17414,17415,17417,17420,17429,17444,17471,17473,17484,17514,17521,17522,17524,17655,17687,17783,17799,17928,18092,18117,18243,18269,18391,18395,18400,18410,18418,18420,18682,18721,18841,18875,18877,18917,18919,18948,18949,18997,19008,19018,19020,19076,19100,19151,19200,19272,19345,19350,19368,19413,19440,19484,19489,19490,19491,19504,19568,19590,19670,19691,19718,19720,19722,19724,19729,19745,19789,19790,19791,19824,19830,19831,19890,19982,20071,20092,20127,20129,20166,20170,20186,20259,20264,20309,20310,20317,20438,20463,20517,20518,20533,20534,20535,20537,20538,20548,20702,20703,20705,20707,20784,20805,20822,20980,20990,21026,21441,21442,21597,21598,21599,21625,21651,21653,21655,21656,21749,21751,21752,21755,21987,21988,22017,22028,22029,22056,22069,22092,22093,22094,22095,22118,22120,22131,22132,22133,22215,22217,22261,22293,22340,22344,22365,22412,22492,22506,22508,22548,22562,22580,22621,22678,22679,22736,22788,22982,22986,22987,22991,22999,23073,23124]]],["days'",[13,12,[[0,2,2,0,2,[[29,1,1,0,1],[30,1,1,1,2]]],[1,3,3,2,5,[[52,1,1,2,3],[54,1,1,3,4],[57,1,1,4,5]]],[3,3,2,5,7,[[126,2,1,5,6],[149,1,1,6,7]]],[4,1,1,7,8,[[153,1,1,7,8]]],[8,1,1,8,9,[[246,1,1,8,9]]],[9,1,1,9,10,[[290,1,1,9,10]]],[11,1,1,10,11,[[315,1,1,10,11]]],[31,1,1,11,12,[[891,1,1,11,12]]]],[866,896,1597,1635,1737,4021,4768,4894,7448,8705,9585,22561]]],["full",[3,3,[[4,1,1,0,1,[[173,1,1,0,1]]],[11,1,1,1,2,[[327,1,1,1,2]]],[26,1,1,2,3,[[859,1,1,2,3]]]],[5460,9938,22017]]],["life",[2,2,[[10,1,1,0,1,[[293,1,1,0,1]]],[18,1,1,1,2,[[568,1,1,1,2]]]],[8827,15411]]],["live",[1,1,[[18,1,1,0,1,[[593,1,1,0,1]]]],[15850]]],["liveth",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7240]]],["now",[4,4,[[4,1,1,0,1,[[183,1,1,0,1]]],[8,1,1,1,2,[[244,1,1,1,2]]],[15,1,1,2,3,[[413,1,1,2,3]]],[23,1,1,3,4,[[778,1,1,3,4]]]],[5749,7400,12302,19816]]],["presently",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[19,1,1,1,2,[[639,1,1,1,2]]]],[7256,16735]]],["require",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9044]]],["season",[2,2,[[0,1,1,0,1,[[39,1,1,0,1]]],[5,1,1,1,2,[[210,1,1,1,2]]]],[1176,6483]]],["space",[3,3,[[0,1,1,0,1,[[28,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[4,1,1,2,3,[[154,1,1,2,3]]]],[809,3477,4952]]],["then",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7802]]],["time",[48,47,[[0,5,5,0,5,[[3,1,1,0,1],[25,1,1,1,2],[29,1,1,2,3],[38,1,1,3,4],[46,1,1,4,5]]],[2,1,1,5,6,[[114,1,1,5,6]]],[3,4,3,6,9,[[129,2,1,6,7],[136,1,1,7,8],[148,1,1,8,9]]],[4,2,2,9,11,[[162,1,1,9,10],[172,1,1,10,11]]],[5,2,2,11,13,[[189,1,1,11,12],[197,1,1,12,13]]],[6,3,3,13,16,[[225,1,1,13,14],[228,1,1,14,15],[230,1,1,15,16]]],[8,7,7,16,23,[[236,2,2,16,18],[238,1,1,18,19],[242,1,1,19,20],[244,1,1,20,21],[249,1,1,21,22],[262,1,1,22,23]]],[9,3,3,23,26,[[273,1,1,23,24],[280,1,1,24,25],[289,1,1,25,26]]],[10,2,2,26,28,[[292,1,1,26,27],[301,1,1,27,28]]],[11,2,2,28,30,[[315,1,1,28,29],[322,1,1,29,30]]],[12,1,1,30,31,[[366,1,1,30,31]]],[13,1,1,31,32,[[381,1,1,31,32]]],[15,2,2,32,34,[[416,1,1,32,33],[424,1,1,33,34]]],[17,1,1,34,35,[[450,1,1,34,35]]],[18,3,3,35,38,[[504,1,1,35,36],[518,1,1,36,37],[533,1,1,37,38]]],[19,3,3,38,41,[[652,2,2,38,40],[658,1,1,40,41]]],[22,1,1,41,42,[[708,1,1,41,42]]],[23,1,1,42,43,[[783,1,1,42,43]]],[24,1,1,43,44,[[801,1,1,43,44]]],[25,3,3,44,47,[[839,3,3,44,47]]]],[82,700,863,1160,1449,3519,4095,4326,4728,5196,5446,5908,6125,6930,7024,7069,7216,7232,7278,7354,7404,7526,7937,8191,8358,8673,8796,9150,9582,9829,11191,11501,12375,12668,13235,14290,14543,14758,17126,17132,17309,18225,19933,20462,21435,21442,21443]]],["times",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[18,1,1,1,2,[[521,1,1,1,2]]]],[9044,14572]]],["two",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2098]]],["weather",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17133]]],["when",[9,8,[[2,3,2,0,2,[[102,1,1,0,1],[103,2,1,1,2]]],[3,1,1,2,3,[[122,1,1,2,3]]],[4,1,1,3,4,[[173,1,1,3,4]]],[9,1,1,4,5,[[287,1,1,4,5]]],[18,1,1,5,6,[[497,1,1,5,6]]],[25,1,1,6,7,[[839,1,1,6,7]]],[37,1,1,7,8,[[924,1,1,7,8]]]],[3066,3168,3836,5463,8592,14191,21443,23071]]],["while",[7,7,[[2,1,1,0,1,[[103,1,1,0,1]]],[8,5,5,1,6,[[244,1,1,1,2],[257,1,1,2,3],[260,2,2,3,5],[262,1,1,5,6]]],[10,1,1,6,7,[[307,1,1,6,7]]]],[3157,7418,7791,7868,7877,7941,9324]]],["whole",[4,4,[[3,2,2,0,2,[[127,2,2,0,2]]],[6,1,1,2,3,[[229,1,1,2,3]]],[26,1,1,3,4,[[859,1,1,3,4]]]],[4044,4045,7026,22018]]],["year",[5,5,[[1,1,1,0,1,[[62,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[3,1,1,2,3,[[125,1,1,2,3]]],[6,1,1,3,4,[[227,1,1,3,4]]],[8,1,1,4,5,[[262,1,1,4,5]]]],[1877,3498,3987,6990,7937]]],["yearly",[3,3,[[8,3,3,0,3,[[236,1,1,0,1],[237,1,1,1,2],[255,1,1,2,3]]]],[7233,7259,7736]]],["years",[5,4,[[5,2,1,0,1,[[199,2,1,0,1]]],[10,1,1,1,2,[[291,1,1,1,2]]],[13,1,1,2,3,[[387,1,1,2,3]]],[29,1,1,3,4,[[882,1,1,3,4]]]],[6155,8718,11643,22414]]]]},{"k":"H3118","v":[["*",[16,15,[[14,5,4,0,4,[[406,2,2,0,2],[408,3,2,2,4]]],[26,11,11,4,15,[[851,2,2,4,6],[853,1,1,6,7],[854,1,1,7,8],[855,4,4,8,12],[856,3,3,12,15]]]],[12125,12129,12160,12166,21786,21802,21871,21885,21912,21915,21917,21918,21942,21946,21955]]],["day",[5,4,[[14,3,2,0,2,[[408,3,2,0,2]]],[26,2,2,2,4,[[855,2,2,2,4]]]],[12160,12166,21915,21918]]],["days",[9,9,[[26,9,9,0,9,[[851,2,2,0,2],[853,1,1,2,3],[854,1,1,3,4],[855,2,2,4,6],[856,3,3,6,9]]]],[21786,21802,21871,21885,21912,21917,21942,21946,21955]]],["time",[2,2,[[14,2,2,0,2,[[406,2,2,0,2]]]],[12125,12129]]]]},{"k":"H3119","v":[["*",[53,52,[[1,4,3,0,3,[[62,3,2,0,2],[89,1,1,2,3]]],[2,2,2,3,5,[[95,1,1,3,4],[97,1,1,4,5]]],[3,3,3,5,8,[[125,1,1,5,6],[126,1,1,6,7],[130,1,1,7,8]]],[4,2,2,8,10,[[153,1,1,8,9],[180,1,1,9,10]]],[5,1,1,10,11,[[187,1,1,10,11]]],[6,1,1,11,12,[[216,1,1,11,12]]],[8,1,1,12,13,[[260,1,1,12,13]]],[9,1,1,13,14,[[287,1,1,13,14]]],[10,1,1,14,15,[[298,1,1,14,15]]],[12,1,1,15,16,[[346,1,1,15,16]]],[13,1,1,16,17,[[372,1,1,16,17]]],[15,4,4,17,21,[[413,1,1,17,18],[416,1,1,18,19],[421,2,2,19,21]]],[17,2,2,21,23,[[440,1,1,21,22],[459,1,1,22,23]]],[18,10,10,23,33,[[478,1,1,23,24],[490,1,1,24,25],[499,1,1,25,26],[509,1,1,26,27],[519,2,2,27,29],[532,1,1,29,30],[555,1,1,30,31],[568,1,1,31,32],[598,1,1,32,33]]],[22,6,6,33,39,[[682,2,2,33,35],[699,1,1,35,36],[712,1,1,36,37],[738,2,2,37,39]]],[23,7,7,39,46,[[753,1,1,39,40],[758,1,1,40,41],[759,1,1,41,42],[760,1,1,42,43],[775,1,1,43,44],[777,2,2,44,46]]],[24,1,1,46,47,[[798,1,1,46,47]]],[25,5,5,47,52,[[813,3,3,47,50],[822,1,1,50,51],[831,1,1,51,52]]]],[1888,1889,2745,2854,2952,3986,4022,4122,4925,5677,5859,6681,7877,8590,9044,10648,11302,12302,12368,12523,12530,12965,13452,13941,14076,14206,14359,14558,14563,14742,15127,15400,16087,17738,17739,18043,18313,18832,18840,19176,19310,19324,19349,19726,19795,19800,20350,20683,20684,20687,20973,21220]]],["Day",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14742]]],["daily",[2,2,[[18,1,1,0,1,[[490,1,1,0,1]]],[25,1,1,1,2,[[831,1,1,1,2]]]],[14076,21220]]],["day",[42,41,[[1,4,3,0,3,[[62,3,2,0,2],[89,1,1,2,3]]],[2,2,2,3,5,[[95,1,1,3,4],[97,1,1,4,5]]],[3,2,2,5,7,[[125,1,1,5,6],[126,1,1,6,7]]],[4,2,2,7,9,[[153,1,1,7,8],[180,1,1,8,9]]],[5,1,1,9,10,[[187,1,1,9,10]]],[6,1,1,10,11,[[216,1,1,10,11]]],[8,1,1,11,12,[[260,1,1,11,12]]],[9,1,1,12,13,[[287,1,1,12,13]]],[10,1,1,13,14,[[298,1,1,13,14]]],[12,1,1,14,15,[[346,1,1,14,15]]],[13,1,1,15,16,[[372,1,1,15,16]]],[15,4,4,16,20,[[413,1,1,16,17],[416,1,1,17,18],[421,2,2,18,20]]],[18,5,5,20,25,[[478,1,1,20,21],[509,1,1,21,22],[519,1,1,22,23],[568,1,1,23,24],[598,1,1,24,25]]],[22,4,4,25,29,[[682,1,1,25,26],[712,1,1,26,27],[738,2,2,27,29]]],[23,7,7,29,36,[[753,1,1,29,30],[758,1,1,30,31],[759,1,1,31,32],[760,1,1,32,33],[775,1,1,33,34],[777,2,2,34,36]]],[24,1,1,36,37,[[798,1,1,36,37]]],[25,4,4,37,41,[[813,3,3,37,40],[822,1,1,40,41]]]],[1888,1889,2745,2854,2952,3986,4022,4925,5677,5859,6681,7877,8590,9044,10648,11302,12302,12368,12523,12530,13941,14359,14558,15400,16087,17738,18313,18832,18840,19176,19310,19324,19349,19726,19795,19800,20350,20683,20684,20687,20973]]],["daytime",[7,7,[[17,2,2,0,2,[[440,1,1,0,1],[459,1,1,1,2]]],[18,3,3,2,5,[[499,1,1,2,3],[519,1,1,3,4],[555,1,1,4,5]]],[22,2,2,5,7,[[682,1,1,5,6],[699,1,1,6,7]]]],[12965,13452,14206,14563,15127,17739,18043]]],["time",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4122]]]]},{"k":"H3120","v":[["*",[11,11,[[0,2,2,0,2,[[9,2,2,0,2]]],[12,2,2,2,4,[[338,2,2,2,4]]],[22,1,1,4,5,[[744,1,1,4,5]]],[25,2,2,5,7,[[828,2,2,5,7]]],[26,3,3,7,10,[[857,1,1,7,8],[859,1,1,8,9],[860,1,1,9,10]]],[37,1,1,10,11,[[919,1,1,10,11]]]],[236,238,10257,10259,18941,21134,21140,21982,22035,22038,23012]]],["Grecia",[3,3,[[26,3,3,0,3,[[857,1,1,0,1],[859,1,1,1,2],[860,1,1,2,3]]]],[21982,22035,22038]]],["Greece",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23012]]],["Javan",[7,7,[[0,2,2,0,2,[[9,2,2,0,2]]],[12,2,2,2,4,[[338,2,2,2,4]]],[22,1,1,4,5,[[744,1,1,4,5]]],[25,2,2,5,7,[[828,2,2,5,7]]]],[236,238,10257,10259,18941,21134,21140]]]]},{"k":"H3121","v":[["*",[2,2,[[18,2,2,0,2,[[517,1,1,0,1],[546,1,1,1,2]]]],[14527,14937]]],["mire",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14937]]],["miry",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14527]]]]},{"k":"H3122","v":[["Jonadab",[8,7,[[9,5,4,0,4,[[279,5,4,0,4]]],[23,3,3,4,7,[[779,3,3,4,7]]]],[8320,8322,8349,8352,19829,19833,19842]]]]},{"k":"H3123","v":[["*",[31,31,[[0,5,5,0,5,[[7,5,5,0,5]]],[2,9,9,5,14,[[90,1,1,5,6],[94,2,2,6,8],[101,2,2,8,10],[103,2,2,10,12],[104,2,2,12,14]]],[3,1,1,14,15,[[122,1,1,14,15]]],[18,2,2,15,17,[[532,1,1,15,16],[545,1,1,16,17]]],[21,6,6,17,23,[[671,1,1,17,18],[672,1,1,18,19],[674,1,1,19,20],[675,2,2,20,22],[676,1,1,22,23]]],[22,3,3,23,26,[[716,1,1,23,24],[737,1,1,24,25],[738,1,1,25,26]]],[23,1,1,26,27,[[792,1,1,26,27]]],[25,1,1,27,28,[[808,1,1,27,28]]],[27,2,2,28,30,[[868,1,1,28,29],[872,1,1,29,30]]],[33,1,1,30,31,[[901,1,1,30,31]]]],[191,192,193,194,195,2759,2837,2841,3050,3052,3133,3141,3182,3197,3833,14738,14913,17552,17568,17583,17600,17610,17623,18404,18811,18829,20108,20593,22189,22251,22706]]],["dove",[14,14,[[0,5,5,0,5,[[7,5,5,0,5]]],[18,2,2,5,7,[[532,1,1,5,6],[545,1,1,6,7]]],[21,3,3,7,10,[[672,1,1,7,8],[675,1,1,8,9],[676,1,1,9,10]]],[22,1,1,10,11,[[716,1,1,10,11]]],[23,1,1,11,12,[[792,1,1,11,12]]],[27,2,2,12,14,[[868,1,1,12,13],[872,1,1,13,14]]]],[191,192,193,194,195,14738,14913,17568,17600,17623,18404,20108,22189,22251]]],["doves",[5,5,[[21,1,1,0,1,[[675,1,1,0,1]]],[22,2,2,1,3,[[737,1,1,1,2],[738,1,1,2,3]]],[25,1,1,3,4,[[808,1,1,3,4]]],[33,1,1,4,5,[[901,1,1,4,5]]]],[17610,18811,18829,20593,22706]]],["doves'",[2,2,[[21,2,2,0,2,[[671,1,1,0,1],[674,1,1,1,2]]]],[17552,17583]]],["pigeon",[1,1,[[2,1,1,0,1,[[101,1,1,0,1]]]],[3050]]],["pigeons",[9,9,[[2,8,8,0,8,[[90,1,1,0,1],[94,2,2,1,3],[101,1,1,3,4],[103,2,2,4,6],[104,2,2,6,8]]],[3,1,1,8,9,[[122,1,1,8,9]]]],[2759,2837,2841,3052,3133,3141,3182,3197,3833]]]]},{"k":"H3124","v":[["Jonah",[19,17,[[11,1,1,0,1,[[326,1,1,0,1]]],[31,18,16,1,17,[[889,7,6,1,7],[890,2,2,7,9],[891,3,3,9,12],[892,6,5,12,17]]]],[9921,22532,22534,22536,22538,22546,22548,22549,22558,22559,22561,22562,22569,22573,22574,22576,22577]]]]},{"k":"H3125","v":[["+",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22349]]]]},{"k":"H3126","v":[["*",[3,3,[[12,2,2,0,2,[[339,2,2,0,2]]],[22,1,1,2,3,[[731,1,1,2,3]]]],[10338,10339,18713]]],["Jonathan",[2,2,[[12,2,2,0,2,[[339,2,2,0,2]]]],[10338,10339]]],["plant",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18713]]]]},{"k":"H3127","v":[["*",[6,6,[[17,3,3,0,3,[[443,1,1,0,1],[449,1,1,1,2],[450,1,1,2,3]]],[18,1,1,3,4,[[557,1,1,3,4]]],[25,1,1,4,5,[[818,1,1,4,5]]],[27,1,1,5,6,[[875,1,1,5,6]]]],[13045,13188,13233,15209,20847,22288]]],["branch",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13045]]],["branches",[3,3,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,1,1,1,2,[[557,1,1,1,2]]],[27,1,1,2,3,[[875,1,1,2,3]]]],[13233,15209,22288]]],["tender",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13188]]],["twigs",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20847]]]]},{"k":"H3128","v":[]},{"k":"H3129","v":[["*",[11,10,[[9,1,1,0,1,[[275,1,1,0,1]]],[10,2,2,1,3,[[291,2,2,1,3]]],[12,2,2,3,5,[[347,1,1,3,4],[348,1,1,4,5]]],[15,4,3,5,8,[[424,4,3,5,8]]],[23,2,2,8,10,[[782,1,1,8,9],[784,1,1,9,10]]]],[8228,8759,8760,10661,10707,12635,12638,12659,19921,19949]]],["Jonathan",[9,8,[[10,2,2,0,2,[[291,2,2,0,2]]],[12,2,2,2,4,[[347,1,1,2,3],[348,1,1,3,4]]],[15,4,3,4,7,[[424,4,3,4,7]]],[23,1,1,7,8,[[784,1,1,7,8]]]],[8759,8760,10661,10707,12635,12638,12659,19949]]],["Jonathan's",[2,2,[[9,1,1,0,1,[[275,1,1,0,1]]],[23,1,1,1,2,[[782,1,1,1,2]]]],[8228,19921]]]]},{"k":"H3130","v":[["*",[213,193,[[0,156,137,0,137,[[29,2,2,0,2],[32,2,2,2,4],[34,1,1,4,5],[36,14,10,5,15],[38,11,10,15,25],[39,10,10,25,35],[40,20,18,35,53],[41,12,11,53,64],[42,10,9,64,73],[43,4,4,73,77],[44,14,10,77,87],[45,8,8,87,95],[46,15,13,95,108],[47,12,12,108,120],[48,2,2,120,122],[49,19,15,122,137]]],[1,4,4,137,141,[[50,3,3,137,140],[62,1,1,140,141]]],[3,12,12,141,153,[[117,2,2,141,143],[129,2,2,143,145],[142,2,2,145,147],[143,1,1,147,148],[148,1,1,148,149],[150,1,1,149,150],[152,3,3,150,153]]],[4,3,3,153,156,[[179,1,1,153,154],[185,2,2,154,156]]],[5,12,11,156,167,[[200,1,1,156,157],[202,2,2,157,159],[203,5,5,159,164],[204,2,2,164,166],[210,2,1,166,167]]],[6,3,3,167,170,[[211,3,3,167,170]]],[9,1,1,170,171,[[285,1,1,170,171]]],[10,1,1,171,172,[[301,1,1,171,172]]],[12,6,6,172,178,[[339,1,1,172,173],[342,2,2,173,175],[344,1,1,175,176],[362,2,2,176,178]]],[14,1,1,178,179,[[412,1,1,178,179]]],[15,1,1,179,180,[[424,1,1,179,180]]],[18,4,4,180,184,[[554,1,1,180,181],[555,1,1,181,182],[557,1,1,182,183],[582,1,1,183,184]]],[25,4,4,184,188,[[838,2,2,184,186],[848,1,1,186,187],[849,1,1,187,188]]],[29,3,3,188,191,[[883,2,2,188,190],[884,1,1,190,191]]],[30,1,1,191,192,[[888,1,1,191,192]]],[37,1,1,192,193,[[920,1,1,192,193]]]],[854,855,962,967,1035,1085,1086,1088,1096,1100,1106,1111,1112,1114,1116,1150,1151,1153,1154,1155,1156,1159,1169,1170,1171,1175,1176,1178,1180,1181,1184,1188,1190,1194,1195,1209,1210,1211,1212,1220,1234,1236,1237,1239,1240,1241,1244,1245,1246,1249,1250,1251,1252,1255,1256,1258,1259,1260,1261,1266,1270,1275,1277,1288,1305,1306,1307,1308,1309,1314,1315,1316,1320,1326,1328,1338,1339,1359,1361,1362,1367,1374,1375,1379,1384,1385,1386,1390,1405,1406,1413,1414,1415,1416,1417,1421,1425,1427,1431,1432,1434,1435,1436,1437,1440,1443,1446,1449,1452,1453,1454,1459,1460,1462,1463,1464,1466,1468,1469,1472,1495,1499,1507,1508,1510,1513,1514,1520,1521,1522,1523,1525,1528,1529,1530,1531,1532,1537,1538,1540,1886,3614,3636,4082,4086,4517,4526,4555,4751,4839,4880,4884,4891,5597,5823,5826,6191,6266,6269,6276,6277,6289,6291,6292,6298,6304,6508,6531,6532,6544,8531,9136,10308,10429,10430,10564,11048,11055,12294,12638,15108,15180,15199,15623,21413,21416,21692,21734,22429,22438,22456,22528,23022]]],["+",[4,4,[[0,3,3,0,3,[[32,1,1,0,1],[38,1,1,1,2],[47,1,1,2,3]]],[3,1,1,3,4,[[148,1,1,3,4]]]],[967,1154,1459,4751]]],["Joseph",[191,177,[[0,136,123,0,123,[[29,2,2,0,2],[32,1,1,2,3],[34,1,1,3,4],[36,13,9,4,13],[38,7,7,13,20],[39,10,10,20,30],[40,18,17,30,47],[41,9,9,47,56],[42,6,6,56,62],[43,3,3,62,65],[44,13,9,65,74],[45,8,8,74,82],[46,15,13,82,95],[47,11,11,95,106],[48,2,2,106,108],[49,17,15,108,123]]],[1,4,4,123,127,[[50,3,3,123,126],[62,1,1,126,127]]],[3,11,11,127,138,[[117,2,2,127,129],[129,2,2,129,131],[142,2,2,131,133],[143,1,1,133,134],[150,1,1,134,135],[152,3,3,135,138]]],[4,3,3,138,141,[[179,1,1,138,139],[185,2,2,139,141]]],[5,12,11,141,152,[[200,1,1,141,142],[202,2,2,142,144],[203,5,5,144,149],[204,2,2,149,151],[210,2,1,151,152]]],[6,3,3,152,155,[[211,3,3,152,155]]],[9,1,1,155,156,[[285,1,1,155,156]]],[10,1,1,156,157,[[301,1,1,156,157]]],[12,5,5,157,162,[[339,1,1,157,158],[342,1,1,158,159],[344,1,1,159,160],[362,2,2,160,162]]],[14,1,1,162,163,[[412,1,1,162,163]]],[15,1,1,163,164,[[424,1,1,163,164]]],[18,4,4,164,168,[[554,1,1,164,165],[555,1,1,165,166],[557,1,1,166,167],[582,1,1,167,168]]],[25,4,4,168,172,[[838,2,2,168,170],[848,1,1,170,171],[849,1,1,171,172]]],[29,3,3,172,175,[[883,2,2,172,174],[884,1,1,174,175]]],[30,1,1,175,176,[[888,1,1,175,176]]],[37,1,1,176,177,[[920,1,1,176,177]]]],[854,855,962,1035,1085,1086,1088,1096,1100,1106,1111,1112,1116,1150,1151,1153,1155,1156,1159,1170,1175,1176,1178,1180,1181,1184,1188,1190,1194,1195,1209,1210,1211,1212,1220,1234,1236,1239,1240,1241,1244,1245,1246,1249,1250,1251,1252,1258,1259,1260,1261,1266,1270,1275,1277,1288,1305,1306,1307,1315,1316,1320,1326,1328,1339,1359,1361,1362,1367,1375,1379,1384,1385,1386,1390,1405,1406,1413,1414,1415,1416,1417,1421,1425,1427,1431,1432,1434,1435,1436,1437,1440,1443,1446,1449,1452,1453,1454,1460,1462,1463,1464,1466,1468,1469,1472,1495,1499,1507,1508,1510,1513,1514,1520,1521,1522,1523,1525,1528,1529,1530,1531,1532,1537,1538,1540,1886,3614,3636,4082,4086,4517,4526,4555,4839,4880,4884,4891,5597,5823,5826,6191,6266,6269,6276,6277,6289,6291,6292,6298,6304,6508,6531,6532,6544,8531,9136,10308,10429,10564,11048,11055,12294,12638,15108,15180,15199,15623,21413,21416,21692,21734,22429,22438,22456,22528,23022]]],["Joseph's",[18,18,[[0,17,17,0,17,[[36,1,1,0,1],[38,3,3,1,4],[40,2,2,4,6],[41,3,3,6,9],[42,4,4,9,13],[43,1,1,13,14],[44,1,1,14,15],[49,2,2,15,17]]],[12,1,1,17,18,[[342,1,1,17,18]]]],[1114,1155,1169,1171,1237,1240,1255,1256,1258,1307,1308,1309,1314,1338,1374,1521,1529,10430]]]]},{"k":"H3131","v":[["Josiphiah",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12211]]]]},{"k":"H3132","v":[["Joelah",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10727]]]]},{"k":"H3133","v":[["Joed",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12595]]]]},{"k":"H3134","v":[["Joezer",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10726]]]]},{"k":"H3135","v":[["Joash",[2,2,[[12,2,2,0,2,[[344,1,1,0,1],[364,1,1,1,2]]]],[10543,11137]]]]},{"k":"H3136","v":[["Jozadak",[5,5,[[14,4,4,0,4,[[405,2,2,0,2],[407,1,1,2,3],[412,1,1,3,4]]],[15,1,1,4,5,[[424,1,1,4,5]]]],[12099,12105,12136,12270,12650]]]]},{"k":"H3137","v":[["Jokim",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10407]]]]},{"k":"H3138","v":[["*",[3,3,[[4,1,1,0,1,[[163,1,1,0,1]]],[23,1,1,1,2,[[749,1,1,1,2]]],[27,1,1,2,3,[[867,1,1,2,3]]]],[5222,19082,22170]]],["former",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19082]]],["rain",[2,2,[[4,1,1,0,1,[[163,1,1,0,1]]],[27,1,1,1,2,[[867,1,1,1,2]]]],[5222,22170]]]]},{"k":"H3139","v":[["Jorah",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12045]]]]},{"k":"H3140","v":[["Jorai",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10441]]]]},{"k":"H3141","v":[["Joram",[20,16,[[9,1,1,0,1,[[274,1,1,0,1]]],[11,15,11,1,12,[[320,9,7,1,8],[321,5,3,8,11],[323,1,1,11,12]]],[12,2,2,12,14,[[340,1,1,12,13],[363,1,1,13,14]]],[13,2,2,14,16,[[388,2,2,14,16]]]],[8219,9743,9748,9750,9751,9752,9755,9756,9770,9772,9785,9831,10372,11102,11649,11651]]]]},{"k":"H3142","v":[["Jushabhesed",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10381]]]]},{"k":"H3143","v":[["Josibiah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10420]]]]},{"k":"H3144","v":[["Joshah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10419]]]]},{"k":"H3145","v":[["Joshaviah",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10719]]]]},{"k":"H3146","v":[["*",[2,2,[[12,2,2,0,2,[[348,1,1,0,1],[352,1,1,1,2]]]],[10716,10815]]],["Jehoshaphat",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10815]]],["Joshaphat",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10716]]]]},{"k":"H3147","v":[["Jotham",[24,24,[[6,4,4,0,4,[[219,4,4,0,4]]],[11,7,7,4,11,[[327,6,6,4,10],[328,1,1,10,11]]],[12,3,3,11,14,[[339,1,1,11,12],[340,1,1,12,13],[342,1,1,13,14]]],[13,6,6,14,20,[[392,2,2,14,16],[393,4,4,16,20]]],[22,2,2,20,22,[[679,1,1,20,21],[685,1,1,21,22]]],[27,1,1,22,23,[[862,1,1,22,23]]],[32,1,1,23,24,[[893,1,1,23,24]]]],[6759,6761,6775,6811,9930,9932,9955,9957,9961,9963,9964,10353,10373,10445,11753,11755,11756,11761,11762,11764,17655,17783,22095,22580]]]]},{"k":"H3148","v":[["*",[8,8,[[16,1,1,0,1,[[431,1,1,0,1]]],[20,7,7,1,8,[[660,1,1,1,2],[664,2,2,2,4],[665,2,2,4,6],[670,2,2,6,8]]]],[12799,17348,17425,17428,17440,17445,17532,17535]]],["+",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17445]]],["better",[1,1,[[20,1,1,0,1,[[664,1,1,0,1]]]],[17428]]],["further",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17535]]],["more",[2,2,[[20,2,2,0,2,[[660,1,1,0,1],[664,1,1,1,2]]]],[17348,17425]]],["moreover",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17532]]],["profit",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17440]]],["than",[1,1,[[16,1,1,0,1,[[431,1,1,0,1]]]],[12799]]]]},{"k":"H3149","v":[["Jeziel",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10723]]]]},{"k":"H3150","v":[["Jeziah",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12277]]]]},{"k":"H3151","v":[["Jaziz",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11140]]]]},{"k":"H3152","v":[["Jezliah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10593]]]]},{"k":"H3153","v":[["Jezaniah",[2,2,[[23,2,2,0,2,[[784,1,1,0,1],[786,1,1,1,2]]]],[19949,19976]]]]},{"k":"H3154","v":[["sweat",[1,1,[[25,1,1,0,1,[[845,1,1,0,1]]]],[21617]]]]},{"k":"H3155","v":[["Izrahite",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11117]]]]},{"k":"H3156","v":[["*",[3,2,[[12,2,1,0,1,[[344,2,1,0,1]]],[15,1,1,1,2,[[424,1,1,1,2]]]],[10538,12666]]],["Izrahiah",[2,1,[[12,2,1,0,1,[[344,2,1,0,1]]]],[10538]]],["Jezrahiah",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12666]]]]},{"k":"H3157","v":[["*",[36,32,[[5,3,3,0,3,[[201,1,1,0,1],[203,1,1,1,2],[205,1,1,2,3]]],[6,1,1,3,4,[[216,1,1,3,4]]],[8,3,3,4,7,[[260,1,1,4,5],[264,2,2,5,7]]],[9,2,2,7,9,[[268,1,1,7,8],[270,1,1,8,9]]],[10,5,5,9,14,[[294,1,1,9,10],[308,2,2,10,12],[311,2,2,12,14]]],[11,14,12,14,26,[[320,2,1,14,15],[321,8,7,15,22],[322,4,4,22,26]]],[12,1,1,26,27,[[341,1,1,26,27]]],[13,2,1,27,28,[[388,2,1,27,28]]],[27,5,4,28,32,[[862,4,3,28,31],[863,1,1,31,32]]]],[6258,6291,6339,6687,7904,7968,7978,8058,8124,8856,9386,9387,9452,9474,9756,9766,9771,9772,9773,9786,9792,9793,9794,9799,9800,9804,10388,11650,22098,22099,22105,22127]]],["+",[2,2,[[8,1,1,0,1,[[260,1,1,0,1]]],[9,1,1,1,2,[[270,1,1,1,2]]]],[7904,8124]]],["Jezreel",[34,30,[[5,3,3,0,3,[[201,1,1,0,1],[203,1,1,1,2],[205,1,1,2,3]]],[6,1,1,3,4,[[216,1,1,3,4]]],[8,2,2,4,6,[[264,2,2,4,6]]],[9,1,1,6,7,[[268,1,1,6,7]]],[10,5,5,7,12,[[294,1,1,7,8],[308,2,2,8,10],[311,2,2,10,12]]],[11,14,12,12,24,[[320,2,1,12,13],[321,8,7,13,20],[322,4,4,20,24]]],[12,1,1,24,25,[[341,1,1,24,25]]],[13,2,1,25,26,[[388,2,1,25,26]]],[27,5,4,26,30,[[862,4,3,26,29],[863,1,1,29,30]]]],[6258,6291,6339,6687,7968,7978,8058,8856,9386,9387,9452,9474,9756,9766,9771,9772,9773,9786,9792,9793,9794,9799,9800,9804,10388,11650,22098,22099,22105,22127]]]]},{"k":"H3158","v":[["Jezreelite",[8,8,[[10,6,6,0,6,[[311,6,6,0,6]]],[11,2,2,6,8,[[321,2,2,6,8]]]],[9452,9455,9457,9458,9466,9467,9777,9781]]]]},{"k":"H3159","v":[["Jezreelitess",[5,5,[[8,2,2,0,2,[[262,1,1,0,1],[265,1,1,1,2]]],[9,2,2,2,4,[[268,1,1,2,3],[269,1,1,3,4]]],[12,1,1,4,5,[[340,1,1,4,5]]]],[7933,7983,8051,8083,10362]]]]},{"k":"H3160","v":[["Jehubbah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10569]]]]},{"k":"H3161","v":[["*",[3,3,[[0,1,1,0,1,[[48,1,1,0,1]]],[18,1,1,1,2,[[563,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]]],[1479,15295,17948]]],["joined",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17948]]],["unite",[1,1,[[18,1,1,0,1,[[563,1,1,0,1]]]],[15295]]],["united",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1479]]]]},{"k":"H3162","v":[["*",[141,139,[[0,6,5,0,5,[[12,2,1,0,1],[21,3,3,1,4],[35,1,1,4,5]]],[1,3,3,5,8,[[68,1,1,5,6],[75,1,1,6,7],[85,1,1,7,8]]],[4,8,8,8,16,[[164,1,1,8,9],[167,1,1,9,10],[174,2,2,10,12],[177,2,2,12,14],[185,2,2,14,16]]],[5,2,2,16,18,[[195,1,1,16,17],[197,1,1,17,18]]],[6,2,2,18,20,[[216,1,1,18,19],[229,1,1,19,20]]],[8,4,4,20,24,[[246,1,1,20,21],[252,1,1,21,22],[265,1,1,22,23],[266,1,1,23,24]]],[9,6,6,24,30,[[268,2,2,24,26],[276,1,1,26,27],[278,1,1,27,28],[280,1,1,28,29],[287,1,1,29,30]]],[10,1,1,30,31,[[293,1,1,30,31]]],[12,2,2,31,33,[[347,1,1,31,32],[349,1,1,32,33]]],[14,1,1,33,34,[[406,1,1,33,34]]],[15,3,3,34,37,[[416,1,1,34,35],[418,2,2,35,37]]],[17,16,16,37,53,[[437,1,1,37,38],[438,1,1,38,39],[441,1,1,39,40],[444,1,1,40,41],[445,1,1,41,42],[451,1,1,42,43],[452,1,1,43,44],[454,1,1,44,45],[456,1,1,45,46],[459,2,2,46,48],[466,1,1,48,49],[469,2,2,49,51],[473,1,1,51,52],[475,1,1,52,53]]],[18,27,27,53,80,[[479,1,1,53,54],[481,1,1,54,55],[491,1,1,55,56],[496,1,1,56,57],[508,1,1,57,58],[510,1,1,58,59],[511,1,1,59,60],[512,1,1,60,61],[514,1,1,61,62],[517,1,1,62,63],[518,1,1,63,64],[525,1,1,64,65],[526,2,2,65,67],[530,1,1,67,68],[532,1,1,68,69],[539,1,1,69,70],[548,1,1,70,71],[551,2,2,71,73],[560,1,1,73,74],[565,1,1,74,75],[575,1,1,75,76],[579,1,1,76,77],[599,1,1,77,78],[610,1,1,78,79],[618,1,1,79,80]]],[19,1,1,80,81,[[649,1,1,80,81]]],[22,34,33,81,114,[[679,2,2,81,83],[687,1,1,83,84],[688,1,1,84,85],[689,3,3,85,88],[696,1,1,88,89],[700,2,1,89,90],[705,1,1,90,91],[709,1,1,91,92],[718,1,1,92,93],[719,4,4,93,97],[720,1,1,97,98],[721,3,3,98,101],[722,1,1,101,102],[723,4,4,102,106],[724,1,1,106,107],[726,1,1,107,108],[728,1,1,108,109],[730,2,2,109,111],[738,1,1,111,112],[743,1,1,112,113],[744,1,1,113,114]]],[23,17,17,114,131,[[747,1,1,114,115],[749,1,1,115,116],[750,3,3,116,119],[757,1,1,119,120],[775,3,3,120,123],[785,1,1,123,124],[790,2,2,124,126],[792,1,1,126,127],[793,1,1,127,128],[794,2,2,128,130],[795,1,1,130,131]]],[24,1,1,131,132,[[798,1,1,131,132]]],[27,3,3,132,135,[[862,1,1,132,133],[872,2,2,133,135]]],[29,2,2,135,137,[[879,1,1,135,136],[881,1,1,136,137]]],[32,1,1,137,138,[[894,1,1,137,138]]],[37,1,1,138,139,[[920,1,1,138,139]]]],[324,553,555,566,1047,2034,2259,2595,5262,5341,5480,5481,5552,5558,5815,5827,6039,6112,6687,7030,7456,7628,8002,8015,8062,8065,8255,8289,8372,8589,8834,10665,10737,12113,12367,12403,12408,12902,12922,12980,13083,13094,13248,13276,13309,13381,13440,13453,13626,13698,13712,13800,13877,13947,13973,14083,14177,14344,14381,14391,14436,14488,14539,14549,14638,14650,14658,14722,14746,14836,14986,15054,15056,15246,15325,15498,15543,16092,16170,16286,17033,17682,17685,17850,17858,17890,17891,17898,18003,18055,18155,18253,18425,18452,18470,18471,18474,18494,18514,18522,18531,18544,18569,18577,18581,18582,18588,18627,18670,18704,18705,18834,18904,18939,19020,19063,19100,19101,19110,19280,19699,19704,19715,19958,20057,20066,20087,20130,20170,20199,20250,20340,22105,22247,22248,22379,22398,22607,23020]]],["+",[5,5,[[1,1,1,0,1,[[75,1,1,0,1]]],[18,2,2,1,3,[[560,1,1,1,2],[610,1,1,2,3]]],[27,2,2,3,5,[[862,1,1,3,4],[872,1,1,4,5]]]],[2259,15246,16170,22105,22247]]],["alike",[5,5,[[4,2,2,0,2,[[164,1,1,0,1],[167,1,1,1,2]]],[8,1,1,2,3,[[265,1,1,2,3]]],[17,1,1,3,4,[[456,1,1,3,4]]],[18,1,1,4,5,[[510,1,1,4,5]]]],[5262,5341,8002,13381,14381]]],["altogether",[5,5,[[18,3,3,0,3,[[496,1,1,0,1],[530,1,1,1,2],[539,1,1,2,3]]],[22,1,1,3,4,[[688,1,1,3,4]]],[23,1,1,4,5,[[749,1,1,4,5]]]],[14177,14722,14836,17858,19063]]],["as",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13453]]],["both",[1,1,[[18,1,1,0,1,[[481,1,1,0,1]]]],[13973]]],["knit",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10737]]],["likewise",[2,2,[[17,1,1,0,1,[[466,1,1,0,1]]],[18,1,1,1,2,[[526,1,1,1,2]]]],[13626,14658]]],["once",[2,2,[[18,1,1,0,1,[[551,1,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]]],[15054,18494]]],["only",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13712]]],["together",[116,114,[[0,6,5,0,5,[[12,2,1,0,1],[21,3,3,1,4],[35,1,1,4,5]]],[1,2,2,5,7,[[68,1,1,5,6],[85,1,1,6,7]]],[4,6,6,7,13,[[174,2,2,7,9],[177,2,2,9,11],[185,2,2,11,13]]],[5,2,2,13,15,[[195,1,1,13,14],[197,1,1,14,15]]],[6,2,2,15,17,[[216,1,1,15,16],[229,1,1,16,17]]],[8,3,3,17,20,[[246,1,1,17,18],[252,1,1,18,19],[266,1,1,19,20]]],[9,6,6,20,26,[[268,2,2,20,22],[276,1,1,22,23],[278,1,1,23,24],[280,1,1,24,25],[287,1,1,25,26]]],[10,1,1,26,27,[[293,1,1,26,27]]],[12,1,1,27,28,[[347,1,1,27,28]]],[14,1,1,28,29,[[406,1,1,28,29]]],[15,3,3,29,32,[[416,1,1,29,30],[418,2,2,30,32]]],[17,12,12,32,44,[[437,1,1,32,33],[438,1,1,33,34],[441,1,1,34,35],[444,1,1,35,36],[445,1,1,36,37],[451,1,1,37,38],[452,1,1,38,39],[454,1,1,39,40],[459,1,1,40,41],[469,1,1,41,42],[473,1,1,42,43],[475,1,1,43,44]]],[18,17,17,44,61,[[479,1,1,44,45],[491,1,1,45,46],[508,1,1,46,47],[511,1,1,47,48],[512,1,1,48,49],[514,1,1,49,50],[517,1,1,50,51],[518,1,1,51,52],[525,1,1,52,53],[526,1,1,53,54],[532,1,1,54,55],[548,1,1,55,56],[551,1,1,56,57],[565,1,1,57,58],[575,1,1,58,59],[579,1,1,59,60],[599,1,1,60,61]]],[22,32,31,61,92,[[679,2,2,61,63],[687,1,1,63,64],[689,3,3,64,67],[696,1,1,67,68],[700,2,1,68,69],[705,1,1,69,70],[709,1,1,70,71],[718,1,1,71,72],[719,4,4,72,76],[721,3,3,76,79],[722,1,1,79,80],[723,4,4,80,84],[724,1,1,84,85],[726,1,1,85,86],[728,1,1,86,87],[730,2,2,87,89],[738,1,1,89,90],[743,1,1,90,91],[744,1,1,91,92]]],[23,16,16,92,108,[[747,1,1,92,93],[750,3,3,93,96],[757,1,1,96,97],[775,3,3,97,100],[785,1,1,100,101],[790,2,2,101,103],[792,1,1,103,104],[793,1,1,104,105],[794,2,2,105,107],[795,1,1,107,108]]],[24,1,1,108,109,[[798,1,1,108,109]]],[27,1,1,109,110,[[872,1,1,109,110]]],[29,2,2,110,112,[[879,1,1,110,111],[881,1,1,111,112]]],[32,1,1,112,113,[[894,1,1,112,113]]],[37,1,1,113,114,[[920,1,1,113,114]]]],[324,553,555,566,1047,2034,2595,5480,5481,5552,5558,5815,5827,6039,6112,6687,7030,7456,7628,8015,8062,8065,8255,8289,8372,8589,8834,10665,12113,12367,12403,12408,12902,12922,12980,13083,13094,13248,13276,13309,13440,13698,13800,13877,13947,14083,14344,14391,14436,14488,14539,14549,14638,14650,14746,14986,15056,15325,15498,15543,16092,17682,17685,17850,17890,17891,17898,18003,18055,18155,18253,18425,18452,18470,18471,18474,18514,18522,18531,18544,18569,18577,18581,18582,18588,18627,18670,18704,18705,18834,18904,18939,19020,19100,19101,19110,19280,19699,19704,19715,19958,20057,20066,20087,20130,20170,20199,20250,20340,22248,22379,22398,22607,23020]]],["withal",[2,2,[[18,1,1,0,1,[[618,1,1,0,1]]],[19,1,1,1,2,[[649,1,1,1,2]]]],[16286,17033]]]]},{"k":"H3163","v":[["Jahdo",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10442]]]]},{"k":"H3164","v":[["Jahdiel",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10452]]]]},{"k":"H3165","v":[["Jehdeiah",[2,2,[[12,2,2,0,2,[[361,1,1,0,1],[364,1,1,1,2]]]],[11035,11139]]]]},{"k":"H3166","v":[["Jahaziel",[6,6,[[12,4,4,0,4,[[349,1,1,0,1],[353,1,1,1,2],[360,1,1,2,3],[361,1,1,3,4]]],[13,1,1,4,5,[[386,1,1,4,5]]],[14,1,1,5,6,[[410,1,1,5,6]]]],[10724,10826,11002,11038,11601,12206]]]]},{"k":"H3167","v":[["Jahaziah",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12267]]]]},{"k":"H3168","v":[["*",[3,3,[[12,1,1,0,1,[[361,1,1,0,1]]],[25,2,2,1,3,[[802,1,1,1,2],[825,1,1,2,3]]]],[11031,20467,21080]]],["Ezekiel",[2,2,[[25,2,2,0,2,[[802,1,1,0,1],[825,1,1,1,2]]]],[20467,21080]]],["Jehezekel",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11031]]]]},{"k":"H3169","v":[["*",[44,42,[[11,1,1,0,1,[[332,1,1,0,1]]],[12,1,1,1,2,[[341,1,1,1,2]]],[13,37,35,2,37,[[394,2,2,2,4],[395,5,5,4,9],[396,4,4,9,13],[397,6,6,13,19],[398,19,17,19,36],[399,1,1,36,37]]],[14,1,1,37,38,[[404,1,1,37,38]]],[22,1,1,38,39,[[679,1,1,38,39]]],[23,1,1,39,40,[[759,1,1,39,40]]],[27,1,1,40,41,[[862,1,1,40,41]]],[32,1,1,41,42,[[893,1,1,41,42]]]],[10108,10426,11776,11791,11792,11811,11821,11822,11827,11828,11845,11847,11849,11856,11862,11863,11865,11867,11874,11877,11883,11884,11886,11887,11891,11892,11895,11897,11898,11899,11900,11901,11902,11905,11907,11908,11911,12043,17655,19319,22095,22580]]],["Hezekiah",[43,41,[[11,1,1,0,1,[[332,1,1,0,1]]],[12,1,1,1,2,[[341,1,1,1,2]]],[13,36,34,2,36,[[394,1,1,2,3],[395,5,5,3,8],[396,4,4,8,12],[397,6,6,12,18],[398,19,17,18,35],[399,1,1,35,36]]],[14,1,1,36,37,[[404,1,1,36,37]]],[22,1,1,37,38,[[679,1,1,37,38]]],[23,1,1,38,39,[[759,1,1,38,39]]],[27,1,1,39,40,[[862,1,1,39,40]]],[32,1,1,40,41,[[893,1,1,40,41]]]],[10108,10426,11791,11792,11811,11821,11822,11827,11828,11845,11847,11849,11856,11862,11863,11865,11867,11874,11877,11883,11884,11886,11887,11891,11892,11895,11897,11898,11899,11900,11901,11902,11905,11907,11908,11911,12043,17655,19319,22095,22580]]],["Jehizkiah",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11776]]]]},{"k":"H3170","v":[["Jahzerah",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10627]]]]},{"k":"H3171","v":[["Jehiel",[14,14,[[12,6,6,0,6,[[352,2,2,0,2],[353,1,1,2,3],[360,1,1,3,4],[364,1,1,4,5],[366,1,1,5,6]]],[13,4,4,6,10,[[387,1,1,6,7],[395,1,1,7,8],[397,1,1,8,9],[401,1,1,9,10]]],[14,4,4,10,14,[[410,1,1,10,11],[412,3,3,11,14]]]],[10809,10811,10825,10991,11141,11172,11626,11805,11867,11974,12210,12254,12273,12278]]]]},{"k":"H3172","v":[["Jehieli",[2,2,[[12,2,2,0,2,[[363,2,2,0,2]]]],[11098,11099]]]]},{"k":"H3173","v":[["*",[12,12,[[0,3,3,0,3,[[21,3,3,0,3]]],[6,1,1,3,4,[[221,1,1,3,4]]],[18,4,4,4,8,[[499,1,1,4,5],[502,1,1,5,6],[512,1,1,6,7],[545,1,1,7,8]]],[19,1,1,8,9,[[631,1,1,8,9]]],[23,1,1,9,10,[[750,1,1,9,10]]],[29,1,1,10,11,[[886,1,1,10,11]]],[37,1,1,11,12,[[922,1,1,11,12]]]],[549,559,563,6863,14224,14267,14427,14906,16493,19115,22491,23055]]],["child",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6863]]],["darling",[2,2,[[18,2,2,0,2,[[499,1,1,0,1],[512,1,1,1,2]]]],[14224,14427]]],["desolate",[1,1,[[18,1,1,0,1,[[502,1,1,0,1]]]],[14267]]],["only",[6,6,[[0,3,3,0,3,[[21,3,3,0,3]]],[19,1,1,3,4,[[631,1,1,3,4]]],[29,1,1,4,5,[[886,1,1,4,5]]],[37,1,1,5,6,[[922,1,1,5,6]]]],[549,559,563,16493,22491,23055]]],["solitary",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14906]]],["son",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19115]]]]},{"k":"H3174","v":[["Jehiah",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10815]]]]},{"k":"H3175","v":[["hope",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20380]]]]},{"k":"H3176","v":[["*",[41,41,[[0,1,1,0,1,[[7,1,1,0,1]]],[8,2,2,1,3,[[245,1,1,1,2],[248,1,1,2,3]]],[9,1,1,3,4,[[284,1,1,3,4]]],[11,1,1,4,5,[[318,1,1,4,5]]],[17,8,8,5,13,[[441,1,1,5,6],[448,1,1,6,7],[449,1,1,7,8],[464,2,2,8,10],[465,1,1,10,11],[467,2,2,11,13]]],[18,19,19,13,32,[[508,1,1,13,14],[510,2,2,14,16],[515,1,1,16,17],[519,2,2,17,19],[520,1,1,19,20],[546,1,1,20,21],[548,1,1,21,22],[596,6,6,22,28],[607,2,2,28,30],[608,1,1,30,31],[624,1,1,31,32]]],[22,2,2,32,34,[[720,1,1,32,33],[729,1,1,33,34]]],[23,1,1,34,35,[[748,1,1,34,35]]],[24,2,2,35,37,[[799,2,2,35,37]]],[25,2,2,37,39,[[814,1,1,37,38],[820,1,1,38,39]]],[32,2,2,39,41,[[897,1,1,39,40],[899,1,1,40,41]]]],[195,7426,7493,8492,9707,12989,13168,13195,13553,13555,13583,13639,13644,14355,14384,14388,14505,14560,14566,14571,14938,14990,15941,15947,15972,15979,16012,16045,16145,16147,16151,16362,18484,18678,19046,20375,20378,20714,20886,22640,22671]]],["hope",[19,19,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,15,15,1,16,[[508,1,1,1,2],[510,2,2,2,4],[515,1,1,4,5],[519,2,2,5,7],[520,1,1,7,8],[548,1,1,8,9],[596,3,3,9,12],[607,2,2,12,14],[608,1,1,14,15],[624,1,1,15,16]]],[24,2,2,16,18,[[799,2,2,16,18]]],[25,1,1,18,19,[[814,1,1,18,19]]]],[12989,14355,14384,14388,14505,14560,14566,14571,14990,15947,15979,16012,16145,16147,16151,16362,20375,20378,20714]]],["hoped",[3,3,[[18,3,3,0,3,[[596,3,3,0,3]]]],[15941,15972,16045]]],["pained",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19046]]],["stayed",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[195]]],["tarried",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7493]]],["tarry",[2,2,[[8,1,1,0,1,[[245,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]]],[7426,8492]]],["trust",[2,2,[[17,1,1,0,1,[[448,1,1,0,1]]],[22,1,1,1,2,[[729,1,1,1,2]]]],[13168,18678]]],["wait",[5,5,[[11,1,1,0,1,[[318,1,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[18,1,1,2,3,[[546,1,1,2,3]]],[22,1,1,3,4,[[720,1,1,3,4]]],[32,1,1,4,5,[[899,1,1,4,5]]]],[9707,13195,14938,18484,22671]]],["waited",[6,6,[[17,5,5,0,5,[[464,2,2,0,2],[465,1,1,2,3],[467,2,2,3,5]]],[25,1,1,5,6,[[820,1,1,5,6]]]],[13553,13555,13583,13639,13644,20886]]],["waiteth",[1,1,[[32,1,1,0,1,[[897,1,1,0,1]]]],[22640]]]]},{"k":"H3177","v":[["Jahleel",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1400,4515]]]]},{"k":"H3178","v":[["Jahleelites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4515]]]]},{"k":"H3179","v":[["*",[9,8,[[0,5,4,0,4,[[29,4,3,0,3],[30,1,1,3,4]]],[4,1,1,4,5,[[171,1,1,4,5]]],[10,1,1,5,6,[[291,1,1,5,6]]],[18,1,1,6,7,[[528,1,1,6,7]]],[20,1,1,7,8,[[662,1,1,7,8]]]],[868,869,871,883,5412,8718,14696,17392]]],["+",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8718]]],["conceive",[4,3,[[0,3,2,0,2,[[29,3,2,0,2]]],[18,1,1,2,3,[[528,1,1,2,3]]]],[868,871,14696]]],["conceived",[2,2,[[0,2,2,0,2,[[29,1,1,0,1],[30,1,1,1,2]]]],[869,883]]],["hot",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5412]]],["warm",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17392]]]]},{"k":"H3180","v":[["*",[2,2,[[4,1,1,0,1,[[166,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]]],[5295,8867]]],["deer",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5295]]],["fallowdeer",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8867]]]]},{"k":"H3181","v":[["Jahmai",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10537]]]]},{"k":"H3182","v":[["*",[5,5,[[9,1,1,0,1,[[281,1,1,0,1]]],[22,3,3,1,4,[[698,3,3,1,4]]],[23,1,1,4,5,[[746,1,1,4,5]]]],[8419,18031,18032,18033,18990]]],["+",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18990]]],["barefoot",[4,4,[[9,1,1,0,1,[[281,1,1,0,1]]],[22,3,3,1,4,[[698,3,3,1,4]]]],[8419,18031,18032,18033]]]]},{"k":"H3183","v":[["Jahzeel",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1410,4537]]]]},{"k":"H3184","v":[["Jahzeelites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4537]]]]},{"k":"H3185","v":[["Jahziel",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10548]]]]},{"k":"H3186","v":[["longer",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8559]]]]},{"k":"H3187","v":[["*",[21,20,[[12,11,10,0,10,[[341,1,1,0,1],[342,3,3,1,4],[344,5,4,4,8],[346,2,2,8,10]]],[13,5,5,10,15,[[378,1,1,10,11],[397,4,4,11,15]]],[14,3,3,15,18,[[404,1,1,15,16],[410,2,2,16,18]]],[15,2,2,18,20,[[419,2,2,18,20]]]],[10418,10429,10435,10445,10540,10542,10544,10575,10616,10637,11452,11870,11871,11872,11873,12089,12202,12204,12425,12484]]],["+",[3,3,[[12,3,3,0,3,[[342,1,1,0,1],[344,2,2,1,3]]]],[10429,10540,10575]]],["genealogies",[5,5,[[12,3,3,0,3,[[342,1,1,0,1],[344,1,1,1,2],[346,1,1,2,3]]],[13,2,2,3,5,[[378,1,1,3,4],[397,1,1,4,5]]]],[10445,10542,10616,11452,11873]]],["genealogy",[12,12,[[12,4,4,0,4,[[341,1,1,0,1],[342,1,1,1,2],[344,1,1,2,3],[346,1,1,3,4]]],[13,3,3,4,7,[[397,3,3,4,7]]],[14,3,3,7,10,[[404,1,1,7,8],[410,2,2,8,10]]],[15,2,2,10,12,[[419,2,2,10,12]]]],[10418,10435,10544,10637,11870,11871,11872,12089,12202,12204,12425,12484]]],["number",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10544]]]]},{"k":"H3188","v":[["genealogy",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12425]]]]},{"k":"H3189","v":[["Jahath",[8,7,[[12,7,6,0,6,[[341,2,1,0,1],[343,2,2,1,3],[360,2,2,3,5],[361,1,1,5,6]]],[13,1,1,6,7,[[400,1,1,6,7]]]],[10387,10474,10497,10993,10994,11037,11945]]]]},{"k":"H3190","v":[["*",[115,108,[[0,11,9,0,9,[[3,2,1,0,1],[11,2,2,1,3],[31,3,2,3,5],[33,1,1,5,6],[39,1,1,6,7],[40,1,1,7,8],[44,1,1,8,9]]],[1,2,2,9,11,[[50,1,1,9,10],[79,1,1,10,11]]],[2,3,3,11,14,[[94,1,1,11,12],[99,2,2,12,14]]],[3,3,2,14,16,[[126,3,2,14,16]]],[4,19,19,16,35,[[153,1,1,16,17],[156,1,1,17,18],[157,3,3,18,21],[158,2,2,21,23],[160,1,1,23,24],[161,1,1,24,25],[164,2,2,25,27],[165,1,1,27,28],[169,1,1,28,29],[170,1,1,29,30],[171,1,1,30,31],[174,1,1,31,32],[179,1,1,32,33],[180,1,1,33,34],[182,1,1,34,35]]],[5,3,3,35,38,[[208,2,2,35,37],[210,1,1,37,38]]],[6,5,5,38,43,[[227,1,1,38,39],[228,1,1,39,40],[229,3,3,40,43]]],[7,3,3,43,46,[[234,3,3,43,46]]],[8,6,6,46,52,[[237,1,1,46,47],[251,1,1,47,48],[253,1,1,48,49],[255,1,1,49,50],[259,1,1,50,51],[260,1,1,51,52]]],[9,2,2,52,54,[[269,1,1,52,53],[284,1,1,53,54]]],[10,3,3,54,57,[[291,1,1,54,55],[293,1,1,55,56],[311,1,1,56,57]]],[11,3,3,57,60,[[321,1,1,57,58],[323,1,1,58,59],[337,1,1,59,60]]],[15,2,2,60,62,[[414,2,2,60,62]]],[16,5,4,62,66,[[426,1,1,62,63],[427,3,2,63,65],[430,1,1,65,66]]],[17,1,1,66,67,[[459,1,1,66,67]]],[18,6,6,67,73,[[510,1,1,67,68],[513,1,1,68,69],[526,1,1,69,70],[528,1,1,70,71],[546,1,1,71,72],[602,1,1,72,73]]],[19,5,4,73,77,[[642,2,2,73,75],[644,1,1,75,76],[657,2,1,76,77]]],[20,2,2,77,79,[[665,1,1,77,78],[669,1,1,78,79]]],[22,3,3,79,82,[[679,1,1,79,80],[701,1,1,80,81],[719,1,1,81,82]]],[23,17,16,82,98,[[745,1,1,82,83],[746,1,1,83,84],[748,1,1,84,85],[751,4,3,85,88],[754,1,1,88,89],[757,1,1,89,90],[762,2,2,90,92],[770,1,1,92,93],[776,1,1,93,94],[779,1,1,94,95],[782,1,1,95,96],[784,1,1,96,97],[786,1,1,97,98]]],[25,2,2,98,100,[[834,1,1,98,99],[837,1,1,99,100]]],[27,1,1,100,101,[[871,1,1,100,101]]],[31,3,2,101,103,[[892,3,2,101,103]]],[32,2,2,103,105,[[894,1,1,103,104],[899,1,1,104,105]]],[33,1,1,105,106,[[902,1,1,105,106]]],[35,1,1,106,107,[[906,1,1,106,107]]],[37,1,1,107,108,[[918,1,1,107,108]]]],[86,311,314,937,940,998,1186,1232,1374,1552,2389,2834,2996,2997,4017,4020,4915,5044,5069,5081,5082,5089,5104,5153,5178,5265,5268,5286,5368,5401,5424,5477,5593,5674,5713,6456,6459,6496,6993,7013,7030,7033,7046,7173,7179,7182,7272,7612,7681,7743,7843,7892,8117,8482,8764,8826,9458,9786,9847,10246,12312,12313,12723,12728,12733,12793,13457,14369,14441,14666,14709,14966,16114,16809,16820,16895,17280,17432,17522,17671,18093,18474,18958,18998,19049,19122,19124,19142,19206,19289,19394,19395,19585,19771,19838,19915,19950,19981,21312,21370,22226,22572,22577,22602,22667,22720,22799,22991]]],["+",[30,27,[[0,5,4,0,4,[[11,1,1,0,1],[31,2,1,1,2],[33,1,1,2,3],[44,1,1,3,4]]],[1,1,1,4,5,[[79,1,1,4,5]]],[2,1,1,5,6,[[99,1,1,5,6]]],[4,4,4,6,10,[[153,1,1,6,7],[171,1,1,7,8],[179,1,1,8,9],[180,1,1,9,10]]],[5,2,2,10,12,[[208,2,2,10,12]]],[6,1,1,12,13,[[229,1,1,12,13]]],[8,3,3,13,16,[[237,1,1,13,14],[255,1,1,14,15],[259,1,1,15,16]]],[9,1,1,16,17,[[269,1,1,16,17]]],[10,1,1,17,18,[[293,1,1,17,18]]],[11,1,1,18,19,[[321,1,1,18,19]]],[15,1,1,19,20,[[414,1,1,19,20]]],[16,5,4,20,24,[[426,1,1,20,21],[427,3,2,21,23],[430,1,1,23,24]]],[23,3,2,24,26,[[751,2,1,24,25],[776,1,1,25,26]]],[25,1,1,26,27,[[834,1,1,26,27]]]],[314,940,998,1374,2389,2997,4915,5424,5593,5674,6456,6459,7046,7272,7743,7843,8117,8826,9786,12313,12723,12728,12733,12793,19124,19771,21312]]],["Amend",[1,1,[[23,1,1,0,1,[[751,1,1,0,1]]]],[19122]]],["accepted",[2,2,[[2,1,1,0,1,[[99,1,1,0,1]]],[8,1,1,1,2,[[253,1,1,1,2]]]],[2996,7681]]],["amend",[2,2,[[23,2,2,0,2,[[770,1,1,0,1],[779,1,1,1,2]]]],[19585,19838]]],["aright",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16809]]],["benefit",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19394]]],["best",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8482]]],["better",[4,4,[[10,1,1,0,1,[[291,1,1,0,1]]],[20,1,1,1,2,[[665,1,1,1,2]]],[25,1,1,2,3,[[837,1,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[8764,17432,21370,22720]]],["cheer",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17522]]],["cheerful",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16820]]],["comely",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17280]]],["diligently",[2,2,[[4,2,2,0,2,[[165,1,1,0,1],[169,1,1,1,2]]]],[5286,5368]]],["do",[2,1,[[3,2,1,0,1,[[126,2,1,0,1]]]],[4020]]],["earnestly",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22667]]],["favour",[1,1,[[15,1,1,0,1,[[414,1,1,0,1]]]],[12312]]],["glad",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7013]]],["good",[19,19,[[0,1,1,0,1,[[40,1,1,0,1]]],[2,1,1,1,2,[[94,1,1,1,2]]],[3,1,1,2,3,[[126,1,1,2,3]]],[4,2,2,3,5,[[160,1,1,3,4],[182,1,1,4,5]]],[5,1,1,5,6,[[210,1,1,5,6]]],[6,1,1,6,7,[[227,1,1,6,7]]],[17,1,1,7,8,[[459,1,1,7,8]]],[18,3,3,8,11,[[513,1,1,8,9],[528,1,1,9,10],[602,1,1,10,11]]],[19,1,1,11,12,[[644,1,1,11,12]]],[22,1,1,12,13,[[719,1,1,12,13]]],[23,4,4,13,17,[[748,1,1,13,14],[754,1,1,14,15],[757,1,1,15,16],[762,1,1,16,17]]],[32,1,1,17,18,[[894,1,1,17,18]]],[35,1,1,18,19,[[906,1,1,18,19]]]],[1232,2834,4017,5153,5713,6496,6993,13457,14441,14709,16114,16895,18474,19049,19206,19289,19395,22602,22799]]],["goodly",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22226]]],["merry",[4,4,[[6,2,2,0,2,[[229,2,2,0,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[10,1,1,3,4,[[311,1,1,3,4]]]],[7030,7033,7179,9458]]],["more",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7182]]],["please",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14966]]],["said",[1,1,[[4,1,1,0,1,[[157,1,1,0,1]]]],[5081]]],["skilfully",[1,1,[[18,1,1,0,1,[[510,1,1,0,1]]]],[14369]]],["small",[1,1,[[4,1,1,0,1,[[161,1,1,0,1]]]],[5178]]],["sweet",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18093]]],["thoroughly",[1,1,[[11,1,1,0,1,[[323,1,1,0,1]]]],[9847]]],["trimmest",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18998]]],["well",[31,29,[[0,5,4,0,4,[[3,2,1,0,1],[11,1,1,1,2],[31,1,1,2,3],[39,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[4,9,9,5,14,[[156,1,1,5,6],[157,2,2,6,8],[158,2,2,8,10],[164,2,2,10,12],[170,1,1,12,13],[174,1,1,13,14]]],[7,1,1,14,15,[[234,1,1,14,15]]],[8,2,2,15,17,[[251,1,1,15,16],[260,1,1,16,17]]],[11,1,1,17,18,[[337,1,1,17,18]]],[18,1,1,18,19,[[526,1,1,18,19]]],[19,1,1,19,20,[[657,1,1,19,20]]],[22,1,1,20,21,[[679,1,1,20,21]]],[23,5,5,21,26,[[745,1,1,21,22],[751,1,1,22,23],[782,1,1,23,24],[784,1,1,24,25],[786,1,1,25,26]]],[31,3,2,26,28,[[892,3,2,26,28]]],[37,1,1,28,29,[[918,1,1,28,29]]]],[86,311,937,1186,1552,5044,5069,5082,5089,5104,5265,5268,5401,5477,7173,7612,7892,10246,14666,17280,17671,18958,19142,19915,19950,19981,22572,22577,22991]]]]},{"k":"H3191","v":[["good",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12191]]]]},{"k":"H3192","v":[["Jotbah",[1,1,[[11,1,1,0,1,[[333,1,1,0,1]]]],[10138]]]]},{"k":"H3193","v":[["*",[3,3,[[3,2,2,0,2,[[149,2,2,0,2]]],[4,1,1,2,3,[[162,1,1,2,3]]]],[4793,4794,5193]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4794]]],["Jotbath",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5193]]],["Jotbathah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4793]]]]},{"k":"H3194","v":[["Juttah",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[207,1,1,1,2]]]],[6257,6397]]]]},{"k":"H3195","v":[["Jetur",[3,3,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,2,2,1,3,[[338,1,1,1,2],[342,1,1,2,3]]]],[673,10283,10447]]]]},{"k":"H3196","v":[["*",[140,134,[[0,10,10,0,10,[[8,2,2,0,2],[13,1,1,2,3],[18,4,4,3,7],[26,1,1,7,8],[48,2,2,8,10]]],[1,1,1,10,11,[[78,1,1,10,11]]],[2,2,2,11,13,[[99,1,1,11,12],[112,1,1,12,13]]],[3,8,7,13,20,[[122,4,3,13,16],[131,3,3,16,19],[144,1,1,19,20]]],[4,5,5,20,25,[[166,1,1,20,21],[180,1,1,21,22],[181,1,1,22,23],[184,2,2,23,25]]],[5,2,2,25,27,[[195,2,2,25,27]]],[6,4,4,27,31,[[223,3,3,27,30],[229,1,1,30,31]]],[8,7,7,31,38,[[236,3,3,31,34],[245,1,1,34,35],[251,1,1,35,36],[260,2,2,36,38]]],[9,3,3,38,41,[[279,1,1,38,39],[282,2,2,39,41]]],[12,3,3,41,44,[[346,1,1,41,42],[349,1,1,42,43],[364,1,1,43,44]]],[13,3,3,44,47,[[368,2,2,44,46],[377,1,1,46,47]]],[15,5,4,47,51,[[414,2,1,47,48],[417,2,2,48,50],[425,1,1,50,51]]],[16,6,6,51,57,[[426,2,2,51,53],[430,1,1,53,54],[432,3,3,54,57]]],[17,3,3,57,60,[[436,2,2,57,59],[467,1,1,59,60]]],[18,4,4,60,64,[[537,1,1,60,61],[552,1,1,61,62],[555,1,1,62,63],[581,1,1,63,64]]],[19,10,10,64,74,[[631,1,1,64,65],[636,2,2,65,67],[647,1,1,67,68],[648,1,1,68,69],[650,3,3,69,72],[658,2,2,72,74]]],[20,3,3,74,77,[[660,1,1,74,75],[667,1,1,75,76],[668,1,1,76,77]]],[21,7,7,77,84,[[671,2,2,77,79],[672,1,1,79,80],[674,1,1,80,81],[675,1,1,81,82],[677,1,1,82,83],[678,1,1,83,84]]],[22,14,13,84,97,[[683,3,3,84,87],[694,1,1,87,88],[700,1,1,88,89],[702,2,2,89,91],[706,3,2,91,93],[707,1,1,93,94],[729,1,1,94,95],[733,1,1,95,96],[734,1,1,96,97]]],[23,15,12,97,109,[[757,2,1,97,98],[767,1,1,98,99],[769,1,1,99,100],[779,7,5,100,105],[784,2,2,105,107],[792,1,1,107,108],[795,1,1,108,109]]],[24,1,1,109,110,[[798,1,1,109,110]]],[25,2,2,110,112,[[828,1,1,110,111],[845,1,1,111,112]]],[26,4,4,112,116,[[850,3,3,112,115],[859,1,1,115,116]]],[27,4,4,116,120,[[865,1,1,116,117],[868,1,1,117,118],[870,1,1,118,119],[875,1,1,119,120]]],[28,2,2,120,122,[[876,1,1,120,121],[878,1,1,121,122]]],[29,5,5,122,127,[[880,2,2,122,124],[883,1,1,124,125],[884,1,1,125,126],[887,1,1,126,127]]],[32,2,2,127,129,[[894,1,1,127,128],[898,1,1,128,129]]],[34,1,1,129,130,[[904,1,1,129,130]]],[35,1,1,130,131,[[906,1,1,130,131]]],[36,1,1,131,132,[[910,1,1,131,132]]],[37,2,2,132,134,[[919,1,1,132,133],[920,1,1,133,134]]]],[226,229,354,489,490,491,492,752,1484,1485,2376,2986,3415,3826,3827,3843,4158,4160,4163,4591,5316,5650,5685,5791,5796,6041,6050,6888,6891,6898,7043,7226,7227,7236,7421,7615,7879,7898,8345,8427,8428,10644,10760,11136,11221,11226,11425,12308,12397,12400,12686,12709,12712,12785,12809,12814,12815,12882,12887,13647,14810,15079,15178,15586,16507,16640,16643,16955,17001,17064,17074,17075,17288,17290,17336,17482,17512,17539,17541,17558,17592,17599,17636,17642,17750,17751,17761,17979,18065,18104,18106,18165,18171,18202,18694,18741,18765,19278,19493,19549,19825,19828,19829,19831,19837,19951,19953,20113,20219,20344,21139,21620,21742,21745,21753,22018,22144,22183,22212,22289,22296,22346,22387,22391,22434,22456,22509,22606,22663,22753,22800,22867,23014,23023]]],["+",[13,13,[[0,2,2,0,2,[[8,1,1,0,1],[48,1,1,1,2]]],[3,1,1,2,3,[[122,1,1,2,3]]],[18,1,1,3,4,[[555,1,1,3,4]]],[19,1,1,4,5,[[650,1,1,4,5]]],[21,4,4,5,9,[[671,2,2,5,7],[674,1,1,7,8],[678,1,1,8,9]]],[22,1,1,9,10,[[729,1,1,9,10]]],[23,1,1,10,11,[[795,1,1,10,11]]],[26,1,1,11,12,[[850,1,1,11,12]]],[27,1,1,12,13,[[868,1,1,12,13]]]],[229,1485,3826,15178,17064,17539,17541,17592,17642,18694,20219,21742,22183]]],["Wine",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16955]]],["banqueting",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17558]]],["vine",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3827]]],["wine",[124,119,[[0,8,8,0,8,[[8,1,1,0,1],[13,1,1,1,2],[18,4,4,2,6],[26,1,1,6,7],[48,1,1,7,8]]],[1,1,1,8,9,[[78,1,1,8,9]]],[2,2,2,9,11,[[99,1,1,9,10],[112,1,1,10,11]]],[3,6,6,11,17,[[122,2,2,11,13],[131,3,3,13,16],[144,1,1,16,17]]],[4,5,5,17,22,[[166,1,1,17,18],[180,1,1,18,19],[181,1,1,19,20],[184,2,2,20,22]]],[5,2,2,22,24,[[195,2,2,22,24]]],[6,4,4,24,28,[[223,3,3,24,27],[229,1,1,27,28]]],[8,7,7,28,35,[[236,3,3,28,31],[245,1,1,31,32],[251,1,1,32,33],[260,2,2,33,35]]],[9,3,3,35,38,[[279,1,1,35,36],[282,2,2,36,38]]],[12,3,3,38,41,[[346,1,1,38,39],[349,1,1,39,40],[364,1,1,40,41]]],[13,3,3,41,44,[[368,2,2,41,43],[377,1,1,43,44]]],[15,5,4,44,48,[[414,2,1,44,45],[417,2,2,45,47],[425,1,1,47,48]]],[16,6,6,48,54,[[426,2,2,48,50],[430,1,1,50,51],[432,3,3,51,54]]],[17,3,3,54,57,[[436,2,2,54,56],[467,1,1,56,57]]],[18,3,3,57,60,[[537,1,1,57,58],[552,1,1,58,59],[581,1,1,59,60]]],[19,8,8,60,68,[[631,1,1,60,61],[636,2,2,61,63],[648,1,1,63,64],[650,2,2,64,66],[658,2,2,66,68]]],[20,3,3,68,71,[[660,1,1,68,69],[667,1,1,69,70],[668,1,1,70,71]]],[21,2,2,71,73,[[675,1,1,71,72],[677,1,1,72,73]]],[22,13,12,73,85,[[683,3,3,73,76],[694,1,1,76,77],[700,1,1,77,78],[702,2,2,78,80],[706,3,2,80,82],[707,1,1,82,83],[733,1,1,83,84],[734,1,1,84,85]]],[23,14,11,85,96,[[757,2,1,85,86],[767,1,1,86,87],[769,1,1,87,88],[779,7,5,88,93],[784,2,2,93,95],[792,1,1,95,96]]],[24,1,1,96,97,[[798,1,1,96,97]]],[25,2,2,97,99,[[828,1,1,97,98],[845,1,1,98,99]]],[26,3,3,99,102,[[850,2,2,99,101],[859,1,1,101,102]]],[27,3,3,102,105,[[865,1,1,102,103],[870,1,1,103,104],[875,1,1,104,105]]],[28,2,2,105,107,[[876,1,1,105,106],[878,1,1,106,107]]],[29,5,5,107,112,[[880,2,2,107,109],[883,1,1,109,110],[884,1,1,110,111],[887,1,1,111,112]]],[32,2,2,112,114,[[894,1,1,112,113],[898,1,1,113,114]]],[34,1,1,114,115,[[904,1,1,114,115]]],[35,1,1,115,116,[[906,1,1,115,116]]],[36,1,1,116,117,[[910,1,1,116,117]]],[37,2,2,117,119,[[919,1,1,117,118],[920,1,1,118,119]]]],[226,354,489,490,491,492,752,1484,2376,2986,3415,3826,3843,4158,4160,4163,4591,5316,5650,5685,5791,5796,6041,6050,6888,6891,6898,7043,7226,7227,7236,7421,7615,7879,7898,8345,8427,8428,10644,10760,11136,11221,11226,11425,12308,12397,12400,12686,12709,12712,12785,12809,12814,12815,12882,12887,13647,14810,15079,15586,16507,16640,16643,17001,17074,17075,17288,17290,17336,17482,17512,17599,17636,17750,17751,17761,17979,18065,18104,18106,18165,18171,18202,18741,18765,19278,19493,19549,19825,19828,19829,19831,19837,19951,19953,20113,20344,21139,21620,21745,21753,22018,22144,22212,22289,22296,22346,22387,22391,22434,22456,22509,22606,22663,22753,22800,22867,23014,23023]]]]},{"k":"H3197","v":[["+",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7310]]]]},{"k":"H3198","v":[["*",[59,55,[[0,6,6,0,6,[[19,1,1,0,1],[20,1,1,1,2],[23,2,2,2,4],[30,2,2,4,6]]],[2,2,1,6,7,[[108,2,1,6,7]]],[9,1,1,7,8,[[273,1,1,7,8]]],[11,1,1,8,9,[[331,1,1,8,9]]],[12,2,2,9,11,[[349,1,1,9,10],[353,1,1,10,11]]],[17,17,15,11,26,[[440,1,1,11,12],[441,3,2,12,14],[444,1,1,14,15],[448,4,3,15,18],[450,1,1,18,19],[451,1,1,19,20],[454,1,1,20,21],[457,1,1,21,22],[458,1,1,22,23],[467,1,1,23,24],[468,1,1,24,25],[475,1,1,25,26]]],[18,7,7,26,33,[[483,1,1,26,27],[515,1,1,27,28],[527,2,2,28,30],[571,1,1,30,31],[582,1,1,31,32],[618,1,1,32,33]]],[19,10,9,33,42,[[630,1,1,33,34],[636,3,2,34,36],[642,1,1,36,37],[646,1,1,37,38],[651,1,1,38,39],[652,1,1,39,40],[655,1,1,40,41],[657,1,1,41,42]]],[22,6,6,42,48,[[679,1,1,42,43],[680,1,1,43,44],[689,2,2,44,46],[707,1,1,46,47],[715,1,1,47,48]]],[23,1,1,48,49,[[746,1,1,48,49]]],[25,1,1,49,50,[[804,1,1,49,50]]],[27,1,1,50,51,[[865,1,1,50,51]]],[29,1,1,51,52,[[883,1,1,51,52]]],[32,2,2,52,54,[[896,1,1,52,53],[898,1,1,53,54]]],[34,1,1,54,55,[[903,1,1,54,55]]]],[511,538,605,635,910,915,3298,8194,10065,10737,10841,12968,13003,13004,13084,13156,13163,13168,13206,13259,13302,13393,13426,13640,13669,13866,13986,14491,14676,14689,15441,15620,16281,16467,16645,16646,16819,16950,17104,17125,17219,17257,17672,17689,17887,17888,18214,18356,18984,20528,22137,22433,22623,22650,22743]]],["+",[7,5,[[0,1,1,0,1,[[20,1,1,0,1]]],[2,2,1,1,2,[[108,2,1,1,2]]],[17,3,2,2,4,[[441,1,1,2,3],[448,2,1,3,4]]],[25,1,1,4,5,[[804,1,1,4,5]]]],[538,3298,13003,13163,20528]]],["Reprove",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16646]]],["appointed",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[605]]],["arguing",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[13003]]],["chasten",[1,1,[[9,1,1,0,1,[[273,1,1,0,1]]]],[8194]]],["chastened",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13669]]],["convinced",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13640]]],["correct",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15441]]],["correcteth",[2,2,[[17,1,1,0,1,[[440,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]]],[12968,16467]]],["correction",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22743]]],["daysman",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13084]]],["dispute",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13426]]],["judge",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[910]]],["maintain",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13168]]],["out",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[635]]],["plead",[3,3,[[17,2,2,0,2,[[451,1,1,0,1],[454,1,1,1,2]]],[32,1,1,2,3,[[898,1,1,2,3]]]],[13259,13302,22650]]],["reason",[2,2,[[17,2,2,0,2,[[448,1,1,0,1],[450,1,1,1,2]]]],[13156,13206]]],["rebuke",[7,7,[[12,1,1,0,1,[[349,1,1,0,1]]],[18,2,2,1,3,[[483,1,1,1,2],[515,1,1,2,3]]],[19,2,2,3,5,[[636,1,1,3,4],[651,1,1,4,5]]],[22,1,1,5,6,[[680,1,1,5,6]]],[32,1,1,6,7,[[896,1,1,6,7]]]],[10737,13986,14491,16646,17104,17689,22623]]],["rebuked",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[915]]],["rebuketh",[3,3,[[19,2,2,0,2,[[636,1,1,0,1],[655,1,1,1,2]]],[29,1,1,2,3,[[883,1,1,2,3]]]],[16645,17219,22433]]],["reprove",[13,13,[[11,1,1,0,1,[[331,1,1,0,1]]],[17,2,2,1,3,[[441,1,1,1,2],[457,1,1,2,3]]],[18,3,3,3,6,[[527,2,2,3,5],[618,1,1,5,6]]],[19,2,2,6,8,[[646,1,1,6,7],[657,1,1,7,8]]],[22,3,3,8,11,[[689,2,2,8,10],[715,1,1,10,11]]],[23,1,1,11,12,[[746,1,1,11,12]]],[27,1,1,12,13,[[865,1,1,12,13]]]],[10065,13004,13393,14676,14689,16281,16950,17257,17887,17888,18356,18984,22137]]],["reproved",[3,3,[[0,1,1,0,1,[[19,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[18,1,1,2,3,[[582,1,1,2,3]]]],[511,10841,15620]]],["reprover",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17125]]],["reproveth",[3,3,[[17,1,1,0,1,[[475,1,1,0,1]]],[19,1,1,1,2,[[642,1,1,1,2]]],[22,1,1,2,3,[[707,1,1,2,3]]]],[13866,16819,18214]]],["together",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17672]]]]},{"k":"H3199","v":[["Jachin",[8,8,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]],[3,1,1,2,3,[[142,1,1,2,3]]],[10,1,1,3,4,[[297,1,1,3,4]]],[12,2,2,4,6,[[346,1,1,4,5],[361,1,1,5,6]]],[13,1,1,6,7,[[369,1,1,6,7]]],[15,1,1,7,8,[[423,1,1,7,8]]]],[1396,1670,4501,8955,10625,11032,11246,12598]]]]},{"k":"H3200","v":[["Jachinites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4501]]]]},{"k":"H3201","v":[["*",[194,183,[[0,22,21,0,21,[[12,2,2,0,2],[14,1,1,2,3],[18,2,2,3,5],[23,1,1,5,6],[28,1,1,6,7],[29,1,1,7,8],[30,1,1,8,9],[31,2,2,9,11],[33,1,1,11,12],[35,1,1,12,13],[36,1,1,13,14],[42,1,1,14,15],[43,4,3,15,18],[44,2,2,18,20],[47,1,1,20,21]]],[1,13,13,21,34,[[51,1,1,21,22],[56,2,2,22,24],[57,1,1,24,25],[58,1,1,25,26],[59,1,1,26,27],[61,1,1,27,28],[64,1,1,28,29],[67,2,2,29,31],[68,1,1,31,32],[82,1,1,32,33],[89,1,1,33,34]]],[3,13,11,34,45,[[125,1,1,34,35],[127,1,1,35,36],[129,3,2,36,38],[130,1,1,38,39],[138,6,5,39,44],[140,1,1,44,45]]],[4,16,16,45,61,[[153,1,1,45,46],[159,2,2,46,48],[161,1,1,48,49],[164,1,1,49,50],[166,1,1,50,51],[168,1,1,51,52],[169,1,1,52,53],[173,1,1,53,54],[174,3,3,54,57],[176,1,1,57,58],[180,2,2,58,60],[183,1,1,60,61]]],[5,6,6,61,67,[[193,2,2,61,63],[195,1,1,63,64],[201,1,1,64,65],[203,1,1,65,66],[210,1,1,66,67]]],[6,7,7,67,74,[[212,1,1,67,68],[218,1,1,68,69],[221,1,1,69,70],[224,2,2,70,72],[226,1,1,72,73],[231,1,1,73,74]]],[7,2,1,74,75,[[235,2,1,74,75]]],[8,9,7,75,82,[[238,1,1,75,76],[239,1,1,76,77],[241,1,1,77,78],[252,4,3,78,81],[261,2,1,81,82]]],[9,3,3,82,85,[[269,1,1,82,83],[278,1,1,83,84],[283,1,1,84,85]]],[10,9,9,85,94,[[293,1,1,85,86],[295,1,1,86,87],[298,1,1,87,88],[299,1,1,88,89],[303,2,2,89,91],[304,1,1,91,92],[310,1,1,92,93],[312,1,1,93,94]]],[11,5,5,94,99,[[315,1,1,94,95],[316,1,1,95,96],[328,1,1,96,97],[330,2,2,97,99]]],[12,1,1,99,100,[[358,1,1,99,100]]],[13,11,9,100,109,[[371,1,1,100,101],[373,2,2,101,103],[384,1,1,103,104],[395,1,1,104,105],[396,1,1,105,106],[398,5,3,106,109]]],[14,1,1,109,110,[[404,1,1,109,110]]],[15,3,3,110,113,[[416,1,1,110,111],[418,1,1,111,112],[419,1,1,112,113]]],[16,3,2,113,115,[[431,1,1,113,114],[433,2,1,114,115]]],[17,4,4,115,119,[[439,1,1,115,116],[466,1,1,116,117],[468,1,1,117,118],[477,1,1,118,119]]],[18,10,10,119,129,[[490,1,1,119,120],[495,1,1,120,121],[498,1,1,121,122],[513,1,1,122,123],[517,1,1,123,124],[555,2,2,124,126],[578,1,1,126,127],[606,1,1,127,128],[616,1,1,128,129]]],[19,1,1,129,130,[[657,1,1,129,130]]],[20,7,5,130,135,[[659,3,2,130,132],[664,1,1,132,133],[665,1,1,133,134],[666,2,1,134,135]]],[21,1,1,135,136,[[678,1,1,135,136]]],[22,12,12,136,148,[[679,1,1,136,137],[685,1,1,137,138],[694,1,1,138,139],[707,1,1,139,140],[714,2,2,140,142],[724,1,1,142,143],[725,2,2,143,145],[734,1,1,145,146],[735,1,1,146,147],[737,1,1,147,148]]],[23,20,20,148,168,[[745,1,1,148,149],[747,1,1,149,150],[749,1,1,150,151],[750,1,1,151,152],[755,1,1,152,153],[757,1,1,153,154],[758,1,1,154,155],[759,1,1,155,156],[762,1,1,156,157],[763,1,1,157,158],[764,4,4,158,162],[780,1,1,162,163],[782,2,2,163,165],[788,1,1,165,166],[793,2,2,166,168]]],[24,2,2,168,170,[[797,1,1,168,169],[800,1,1,169,170]]],[25,4,4,170,174,[[808,1,1,170,171],[834,1,1,171,172],[843,1,1,172,173],[848,1,1,173,174]]],[26,1,1,174,175,[[859,1,1,174,175]]],[27,3,3,175,178,[[866,1,1,175,176],[869,1,1,176,177],[873,1,1,177,178]]],[29,1,1,178,179,[[885,1,1,178,179]]],[30,1,1,179,180,[[888,1,1,179,180]]],[31,1,1,180,181,[[889,1,1,180,181]]],[34,1,1,181,182,[[903,1,1,181,182]]],[35,1,1,182,183,[[906,1,1,182,183]]]],[324,334,365,476,479,641,803,838,908,953,956,994,1047,1087,1322,1325,1346,1350,1359,1361,1461,1557,1706,1709,1728,1753,1782,1855,1943,2017,2022,2049,2493,2742,3971,4038,4105,4106,4124,4381,4386,4393,4412,4413,4459,4901,5128,5133,5185,5257,5314,5347,5379,5463,5473,5489,5499,5529,5638,5646,5730,5988,5989,6056,6265,6287,6495,6559,6722,6864,6922,6923,6954,7120,7196,7278,7312,7351,7627,7651,7657,7930,8092,8309,8466,8825,8881,8996,9072,9188,9200,9222,9417,9502,9602,9643,9968,10047,10053,10964,11282,11326,11331,11563,11825,11830,11888,11889,11890,12086,12369,12404,12481,12806,12823,12932,13611,13655,13924,14078,14156,14202,14450,14537,15132,15133,15518,16134,16245,17272,17323,17330,17427,17442,17475,17647,17667,17783,17981,18204,18338,18344,18588,18610,18611,18763,18785,18814,18965,19007,19080,19099,19237,19289,19302,19335,19390,19418,19429,19431,19432,19433,19847,19900,19917,20032,20137,20150,20324,20434,20596,21292,21557,21684,22032,22165,22199,22256,22474,22517,22544,22744,22805]]],["+",[52,47,[[0,8,8,0,8,[[18,2,2,0,2],[23,1,1,2,3],[28,1,1,3,4],[30,1,1,4,5],[33,1,1,5,6],[43,2,2,6,8]]],[1,1,1,8,9,[[68,1,1,8,9]]],[3,7,6,9,15,[[127,1,1,9,10],[129,1,1,10,11],[138,4,3,11,14],[140,1,1,14,15]]],[4,4,4,15,19,[[153,1,1,15,16],[161,1,1,16,17],[166,1,1,17,18],[180,1,1,18,19]]],[5,1,1,19,20,[[210,1,1,19,20]]],[6,2,2,20,22,[[221,1,1,20,21],[224,1,1,21,22]]],[7,2,1,22,23,[[235,2,1,22,23]]],[8,3,2,23,25,[[252,1,1,23,24],[261,2,1,24,25]]],[13,3,2,25,27,[[373,1,1,25,26],[398,2,1,26,27]]],[15,1,1,27,28,[[418,1,1,27,28]]],[18,1,1,28,29,[[616,1,1,28,29]]],[19,1,1,29,30,[[657,1,1,29,30]]],[20,4,3,30,33,[[659,3,2,30,32],[666,1,1,32,33]]],[21,1,1,33,34,[[678,1,1,33,34]]],[22,5,5,34,39,[[679,1,1,34,35],[707,1,1,35,36],[734,1,1,36,37],[735,1,1,37,38],[737,1,1,38,39]]],[23,6,6,39,45,[[750,1,1,39,40],[758,1,1,40,41],[762,1,1,41,42],[763,1,1,42,43],[780,1,1,43,44],[793,1,1,44,45]]],[24,1,1,45,46,[[797,1,1,45,46]]],[29,1,1,46,47,[[885,1,1,46,47]]]],[476,479,641,803,908,994,1346,1350,2049,4038,4106,4393,4412,4413,4459,4901,5185,5314,5646,6495,6864,6922,7196,7657,7930,11331,11888,12404,16245,17272,17323,17330,17475,17647,17667,18204,18763,18785,18814,19099,19302,19390,19418,19847,20150,20324,22474]]],["Can",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15132]]],["able",[33,33,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,4,4,1,5,[[59,1,1,1,2],[67,2,2,2,4],[89,1,1,4,5]]],[3,3,3,5,8,[[129,1,1,5,6],[130,1,1,6,7],[138,1,1,7,8]]],[6,1,1,8,9,[[218,1,1,8,9]]],[8,3,3,9,12,[[241,1,1,9,10],[252,2,2,10,12]]],[10,2,2,12,14,[[293,1,1,12,13],[299,1,1,13,14]]],[11,2,2,14,16,[[330,2,2,14,16]]],[13,2,2,16,18,[[398,2,2,16,18]]],[15,1,1,18,19,[[416,1,1,18,19]]],[18,4,4,19,23,[[495,1,1,19,20],[498,1,1,20,21],[513,1,1,21,22],[517,1,1,22,23]]],[20,1,1,23,24,[[666,1,1,23,24]]],[22,4,4,24,28,[[714,2,2,24,26],[725,2,2,26,28]]],[23,2,2,28,30,[[755,1,1,28,29],[793,1,1,29,30]]],[25,2,2,30,32,[[808,1,1,30,31],[834,1,1,31,32]]],[35,1,1,32,33,[[906,1,1,32,33]]]],[365,1782,2017,2022,2742,4105,4124,4386,6722,7351,7627,7651,8825,9072,10047,10053,11889,11890,12369,14156,14202,14450,14537,17475,18338,18344,18610,18611,19237,20137,20596,21292,22805]]],["against",[1,1,[[18,1,1,0,1,[[490,1,1,0,1]]]],[14078]]],["attain",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22199]]],["can",[9,9,[[0,2,2,0,2,[[12,1,1,0,1],[43,1,1,1,2]]],[4,2,2,2,4,[[159,1,1,2,3],[183,1,1,3,4]]],[9,1,1,4,5,[[278,1,1,4,5]]],[17,1,1,5,6,[[439,1,1,5,6]]],[18,1,1,6,7,[[555,1,1,6,7]]],[20,1,1,7,8,[[665,1,1,7,8]]],[26,1,1,8,9,[[859,1,1,8,9]]]],[334,1325,5128,5730,8309,12932,15133,17442,22032]]],["canst",[5,5,[[1,1,1,0,1,[[82,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[5,1,1,2,3,[[193,1,1,2,3]]],[17,1,1,3,4,[[468,1,1,3,4]]],[34,1,1,4,5,[[903,1,1,4,5]]]],[2493,5638,5989,13655,22744]]],["could",[46,46,[[0,6,6,0,6,[[12,1,1,0,1],[35,1,1,1,2],[36,1,1,2,3],[44,2,2,3,5],[47,1,1,5,6]]],[1,7,7,6,13,[[51,1,1,6,7],[56,2,2,7,9],[57,1,1,9,10],[58,1,1,10,11],[61,1,1,11,12],[64,1,1,12,13]]],[3,1,1,13,14,[[125,1,1,13,14]]],[5,3,3,14,17,[[193,1,1,14,15],[201,1,1,15,16],[203,1,1,16,17]]],[6,2,2,17,19,[[212,1,1,17,18],[224,1,1,18,19]]],[8,2,2,19,21,[[238,1,1,19,20],[239,1,1,20,21]]],[9,1,1,21,22,[[269,1,1,21,22]]],[10,4,4,22,26,[[295,1,1,22,23],[298,1,1,23,24],[303,1,1,24,25],[304,1,1,25,26]]],[11,3,3,26,29,[[315,1,1,26,27],[316,1,1,27,28],[328,1,1,28,29]]],[12,1,1,29,30,[[358,1,1,29,30]]],[13,5,5,30,35,[[371,1,1,30,31],[373,1,1,31,32],[395,1,1,32,33],[396,1,1,33,34],[398,1,1,34,35]]],[14,1,1,35,36,[[404,1,1,35,36]]],[15,1,1,36,37,[[419,1,1,36,37]]],[17,1,1,37,38,[[466,1,1,37,38]]],[22,2,2,38,40,[[685,1,1,38,39],[724,1,1,39,40]]],[23,2,2,40,42,[[764,1,1,40,41],[788,1,1,41,42]]],[24,1,1,42,43,[[800,1,1,42,43]]],[25,1,1,43,44,[[848,1,1,43,44]]],[27,1,1,44,45,[[866,1,1,44,45]]],[31,1,1,45,46,[[889,1,1,45,46]]]],[324,1047,1087,1359,1361,1461,1557,1706,1709,1728,1753,1855,1943,3971,5988,6265,6287,6559,6923,7278,7312,8092,8881,8996,9188,9222,9602,9643,9968,10964,11282,11326,11825,11830,11889,12086,12481,13611,17783,18588,19431,20032,20434,21684,22165,22544]]],["couldest",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19007]]],["do",[2,2,[[17,1,1,0,1,[[477,1,1,0,1]]],[23,1,1,1,2,[[782,1,1,1,2]]]],[13924,19900]]],["endure",[2,1,[[16,2,1,0,1,[[433,2,1,0,1]]]],[12823]]],["higher",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21557]]],["may",[11,11,[[0,1,1,0,1,[[43,1,1,0,1]]],[4,4,4,1,5,[[173,1,1,1,2],[174,2,2,2,4],[176,1,1,4,5]]],[5,1,1,5,6,[[195,1,1,5,6]]],[6,1,1,6,7,[[231,1,1,6,7]]],[10,2,2,7,9,[[303,1,1,7,8],[310,1,1,8,9]]],[20,1,1,9,10,[[664,1,1,9,10]]],[23,1,1,10,11,[[757,1,1,10,11]]]],[1350,5463,5489,5499,5529,6056,7120,9200,9417,17427,19289]]],["mayest",[5,5,[[4,5,5,0,5,[[159,1,1,0,1],[164,1,1,1,2],[168,1,1,2,3],[169,1,1,3,4],[174,1,1,4,5]]]],[5133,5257,5347,5379,5473]]],["might",[2,2,[[0,1,1,0,1,[[42,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]]],[1322,8466]]],["overcome",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4105]]],["prevail",[12,12,[[3,1,1,0,1,[[138,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[8,1,1,2,3,[[252,1,1,2,3]]],[10,1,1,3,4,[[312,1,1,3,4]]],[13,1,1,4,5,[[384,1,1,4,5]]],[16,1,1,5,6,[[431,1,1,5,6]]],[22,1,1,6,7,[[694,1,1,6,7]]],[23,5,5,7,12,[[745,1,1,7,8],[749,1,1,8,9],[759,1,1,9,10],[764,2,2,10,12]]]],[4381,6954,7627,9502,11563,12806,17981,18965,19080,19335,19432,19433]]],["prevailed",[8,8,[[0,3,3,0,3,[[29,1,1,0,1],[31,2,2,1,3]]],[18,1,1,3,4,[[606,1,1,3,4]]],[23,2,2,4,6,[[764,1,1,4,5],[782,1,1,5,6]]],[27,1,1,6,7,[[873,1,1,6,7]]],[30,1,1,7,8,[[888,1,1,7,8]]]],[838,953,956,16134,19429,19917,22256,22517]]],["suffer",[1,1,[[18,1,1,0,1,[[578,1,1,0,1]]]],[15518]]]]},{"k":"H3202","v":[["*",[12,11,[[26,12,11,0,11,[[851,3,3,0,3],[852,2,2,3,5],[853,2,2,5,7],[854,2,1,7,8],[855,2,2,8,10],[856,1,1,10,11]]]],[21768,21785,21805,21824,21836,21855,21874,21890,21909,21925,21954]]],["+",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21785,21855]]],["able",[3,3,[[26,3,3,0,3,[[852,1,1,0,1],[853,1,1,1,2],[855,1,1,2,3]]]],[21824,21874,21925]]],["can",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21768,21836]]],["canst",[2,1,[[26,2,1,0,1,[[854,2,1,0,1]]]],[21890]]],["could",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21909]]],["couldest",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21805]]],["prevailed",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21954]]]]},{"k":"H3203","v":[["*",[2,2,[[11,1,1,0,1,[[327,1,1,0,1]]],[13,1,1,1,2,[[392,1,1,1,2]]]],[9927,11735]]],["Jecholiah",[1,1,[[11,1,1,0,1,[[327,1,1,0,1]]]],[9927]]],["Jecoliah",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11735]]]]},{"k":"H3204","v":[["Jeconiah",[7,7,[[12,2,2,0,2,[[340,2,2,0,2]]],[16,1,1,2,3,[[427,1,1,2,3]]],[23,4,4,3,7,[[768,1,1,3,4],[771,1,1,4,5],[772,1,1,5,6],[773,1,1,6,7]]]],[10377,10378,12730,19525,19616,19622,19637]]]]},{"k":"H3205","v":[["*",[497,403,[[0,170,133,0,133,[[2,1,1,0,1],[3,11,8,1,9],[4,28,19,9,28],[5,3,3,28,31],[9,9,8,31,39],[10,27,18,39,57],[15,6,5,57,62],[16,5,4,62,66],[17,1,1,66,67],[18,2,2,67,69],[19,1,1,69,70],[20,6,5,70,75],[21,4,3,75,78],[23,4,4,78,82],[24,6,6,82,88],[28,6,4,88,92],[29,14,14,92,106],[30,3,2,106,108],[33,1,1,108,109],[34,5,3,109,112],[35,6,4,112,116],[37,7,5,116,121],[39,1,1,121,122],[40,2,1,122,123],[43,1,1,123,124],[45,7,6,124,130],[47,2,2,130,132],[49,1,1,132,133]]],[1,15,13,133,146,[[50,9,7,133,140],[51,2,2,140,142],[55,3,3,142,145],[70,1,1,145,146]]],[2,5,5,146,151,[[101,3,3,146,149],[111,1,1,149,150],[114,1,1,150,151]]],[3,7,6,151,157,[[117,1,1,151,152],[127,1,1,152,153],[142,5,4,153,157]]],[4,8,8,157,165,[[156,1,1,157,158],[167,1,1,158,159],[173,1,1,159,160],[175,1,1,160,161],[177,1,1,161,162],[180,2,2,162,164],[184,1,1,164,165]]],[6,11,10,165,175,[[218,1,1,165,166],[221,2,2,166,168],[223,7,6,168,174],[228,1,1,174,175]]],[7,14,10,175,185,[[232,1,1,175,176],[235,13,9,176,185]]],[8,6,5,185,190,[[236,1,1,185,186],[237,2,2,186,188],[239,3,2,188,190]]],[9,11,10,190,200,[[269,2,2,190,192],[271,1,1,192,193],[277,1,1,193,194],[278,2,2,194,196],[280,1,1,196,197],[287,4,3,197,200]]],[10,9,8,200,208,[[291,1,1,200,201],[293,6,5,201,206],[301,1,1,206,207],[303,1,1,207,208]]],[11,3,3,208,211,[[316,1,1,208,209],[331,1,1,209,210],[332,1,1,210,211]]],[12,117,83,211,294,[[338,9,8,211,219],[339,38,26,219,245],[340,3,3,245,248],[341,10,8,248,256],[343,21,11,256,267],[344,7,6,267,273],[345,14,10,273,283],[346,9,5,283,288],[351,2,2,288,290],[357,2,2,290,292],[359,1,1,292,293],[363,1,1,293,294]]],[13,5,5,294,299,[[377,3,3,294,297],[379,1,1,297,298],[390,1,1,298,299]]],[14,1,1,299,300,[[412,1,1,299,300]]],[15,5,2,300,302,[[424,5,2,300,302]]],[17,15,15,302,317,[[436,1,1,302,303],[438,1,1,303,304],[440,1,1,304,305],[446,1,1,305,306],[449,1,1,306,307],[450,3,3,307,310],[459,1,1,310,311],[460,1,1,311,312],[473,3,3,312,315],[474,2,2,315,317]]],[18,9,9,317,326,[[479,1,1,317,318],[484,1,1,318,319],[499,1,1,319,320],[525,1,1,320,321],[555,1,1,321,322],[564,3,3,322,325],[567,1,1,325,326]]],[19,7,7,326,333,[[644,3,3,326,329],[650,3,3,329,332],[654,1,1,332,333]]],[20,5,5,333,338,[[661,1,1,333,334],[662,1,1,334,335],[663,1,1,335,336],[664,1,1,336,337],[665,1,1,337,338]]],[21,2,2,338,340,[[676,1,1,338,339],[678,1,1,339,340]]],[22,24,22,340,362,[[685,1,1,340,341],[686,1,1,341,342],[687,1,1,342,343],[691,1,1,343,344],[699,1,1,344,345],[701,1,1,345,346],[704,2,2,346,348],[711,1,1,348,349],[715,1,1,349,350],[717,1,1,350,351],[720,1,1,351,352],[723,1,1,352,353],[727,1,1,353,354],[729,1,1,354,355],[732,1,1,355,356],[733,1,1,356,357],[737,1,1,357,358],[743,1,1,358,359],[744,5,3,359,362]]],[23,23,18,362,380,[[746,1,1,362,363],[750,1,1,363,364],[757,1,1,364,365],[758,1,1,365,366],[759,2,2,366,368],[760,2,1,368,369],[761,1,1,369,370],[764,3,2,370,372],[766,3,2,372,374],[773,2,1,374,375],[774,2,1,375,376],[775,1,1,376,377],[793,1,1,377,378],[794,2,2,378,380]]],[25,9,9,380,389,[[817,3,3,380,383],[819,2,2,383,385],[824,2,2,385,387],[832,1,1,387,388],[848,1,1,388,389]]],[26,1,1,389,390,[[860,1,1,389,390]]],[27,8,8,390,398,[[862,3,3,390,393],[863,1,1,393,394],[866,1,1,394,395],[870,2,2,395,397],[874,1,1,397,398]]],[32,4,3,398,401,[[896,2,2,398,400],[897,2,1,400,401]]],[35,1,1,401,402,[[907,1,1,401,402]]],[37,2,1,402,403,[[923,2,1,402,403]]]],[71,80,81,96,97,99,101,104,105,108,109,111,112,114,115,117,118,120,121,123,124,126,127,130,131,133,135,137,138,141,147,235,242,247,249,255,258,259,260,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,382,383,392,396,397,414,416,417,418,437,494,495,512,515,516,518,520,522,567,570,571,606,615,627,638,660,661,670,677,682,684,827,828,829,830,831,833,835,837,839,840,842,847,849,850,851,853,855,869,881,916,981,1027,1028,1037,1044,1045,1052,1054,1122,1123,1124,1146,1147,1192,1245,1351,1401,1404,1406,1408,1411,1413,1456,1457,1529,1547,1548,1549,1550,1551,1552,1553,1556,1576,1675,1678,1680,2081,3046,3049,3051,3396,3514,3622,4036,4518,4547,4548,4549,5029,5338,5462,5508,5553,5652,5668,5776,6750,6830,6831,6886,6887,6889,6891,6892,6908,7022,7139,7202,7203,7205,7207,7208,7209,7210,7211,7212,7232,7245,7261,7316,7317,8083,8086,8145,8286,8301,8310,8383,8588,8600,8602,8723,8833,8834,8837,8842,8843,9128,9186,9620,10064,10116,10262,10263,10265,10270,10271,10272,10284,10286,10309,10310,10315,10316,10317,10318,10319,10323,10324,10325,10326,10327,10328,10330,10335,10341,10342,10343,10344,10345,10346,10347,10350,10352,10354,10355,10362,10365,10366,10387,10391,10393,10394,10396,10397,10399,10403,10458,10459,10460,10461,10462,10463,10464,10465,10466,10467,10468,10549,10551,10553,10556,10558,10567,10576,10582,10583,10584,10586,10607,10608,10609,10611,10612,10653,10654,10655,10657,10658,10777,10778,10932,10934,10973,11083,11433,11434,11435,11474,11680,12255,12634,12635,12871,12907,12958,13120,13182,13210,13217,13238,13457,13465,13814,13821,13822,13835,13836,13952,14009,14235,14640,15119,15305,15306,15307,15380,16890,16894,16898,17066,17068,17069,17170,17361,17395,17411,17420,17430,17623,17645,17796,17810,17835,17914,18038,18081,18147,18148,18290,18355,18419,18494,18571,18657,18691,18724,18750,18804,18920,18929,18930,18931,18992,19113,19287,19298,19324,19325,19339,19368,19436,19437,19477,19480,19641,19673,19699,20151,20178,20209,20766,20767,20782,20859,20863,21011,21044,21236,21701,22042,22097,22100,22102,22108,22159,22219,22224,22279,22629,22630,22636,22807,23062]]],["+",[173,129,[[0,66,61,0,61,[[3,9,6,0,6],[4,17,17,6,23],[9,6,5,23,28],[10,19,18,28,46],[15,3,3,46,49],[21,1,1,49,50],[24,2,2,50,52],[28,1,1,52,53],[29,3,3,53,56],[35,2,2,56,58],[39,1,1,58,59],[45,2,2,59,61]]],[3,3,3,61,64,[[142,3,3,61,64]]],[6,1,1,64,65,[[221,1,1,64,65]]],[7,8,5,65,70,[[235,8,5,65,70]]],[12,88,55,70,125,[[338,8,7,70,77],[339,27,15,77,92],[341,8,6,92,98],[343,21,11,98,109],[344,3,3,109,112],[345,12,8,112,120],[346,9,5,120,125]]],[15,5,2,125,127,[[424,5,2,125,127]]],[22,1,1,127,128,[[744,1,1,127,128]]],[27,1,1,128,129,[[870,1,1,128,129]]]],[80,81,96,97,99,101,109,111,112,114,115,117,118,120,121,123,124,126,127,130,131,135,137,242,247,249,258,260,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,382,383,397,570,661,677,830,831,839,855,1044,1045,1192,1406,1411,4518,4547,4549,6830,7208,7209,7210,7211,7212,10262,10263,10265,10270,10272,10284,10286,10316,10317,10318,10319,10323,10326,10328,10342,10343,10344,10345,10346,10347,10350,10352,10387,10393,10396,10397,10399,10403,10458,10459,10460,10461,10462,10463,10464,10465,10466,10467,10468,10549,10553,10567,10576,10582,10586,10607,10608,10609,10611,10612,10653,10654,10655,10657,10658,12634,12635,18930,22219]]],["bare",[94,90,[[0,43,40,0,40,[[3,1,1,0,1],[5,1,1,1,2],[15,2,1,2,3],[18,2,2,3,5],[19,1,1,5,6],[20,2,2,6,8],[21,1,1,8,9],[23,3,3,9,12],[24,3,3,12,15],[28,4,4,15,19],[29,8,8,19,27],[30,2,1,27,28],[33,1,1,28,29],[35,3,3,29,32],[37,4,3,32,35],[40,1,1,35,36],[43,1,1,36,37],[45,3,3,37,40]]],[1,5,5,40,45,[[51,2,2,40,42],[55,3,3,42,45]]],[3,2,1,45,46,[[142,2,1,45,46]]],[6,4,4,46,50,[[218,1,1,46,47],[221,1,1,47,48],[223,2,2,48,50]]],[7,2,2,50,52,[[235,2,2,50,52]]],[8,2,2,52,54,[[236,1,1,52,53],[237,1,1,53,54]]],[9,4,4,54,58,[[277,1,1,54,55],[278,2,2,55,57],[287,1,1,57,58]]],[10,2,2,58,60,[[291,1,1,58,59],[301,1,1,59,60]]],[11,1,1,60,61,[[316,1,1,60,61]]],[12,13,13,61,74,[[339,8,8,61,69],[341,2,2,69,71],[344,3,3,71,74]]],[13,2,2,74,76,[[377,2,2,74,76]]],[19,2,2,76,78,[[644,1,1,76,77],[650,1,1,77,78]]],[21,2,2,78,80,[[676,1,1,78,79],[678,1,1,79,80]]],[22,1,1,80,81,[[686,1,1,80,81]]],[23,4,4,81,85,[[760,1,1,81,82],[764,1,1,82,83],[766,1,1,83,84],[794,1,1,84,85]]],[25,2,2,85,87,[[824,2,2,85,87]]],[27,3,3,87,90,[[862,3,3,87,90]]]],[104,141,396,494,495,512,515,516,571,615,627,638,660,670,684,827,828,829,830,835,837,840,842,847,849,851,853,881,981,1044,1052,1054,1122,1123,1124,1245,1351,1401,1404,1406,1556,1576,1675,1678,1680,4548,6750,6831,6886,6908,7202,7203,7232,7261,8286,8301,8310,8588,8723,9128,9620,10310,10325,10327,10330,10335,10341,10354,10355,10391,10394,10549,10551,10558,11433,11434,16898,17069,17623,17645,17810,19339,19436,19480,20178,21011,21044,22097,22100,22102]]],["bear",[16,16,[[0,6,6,0,6,[[15,1,1,0,1],[16,3,3,1,4],[21,1,1,4,5],[29,1,1,5,6]]],[2,1,1,6,7,[[101,1,1,6,7]]],[4,1,1,7,8,[[180,1,1,7,8]]],[6,3,3,8,11,[[223,3,3,8,11]]],[7,1,1,11,12,[[232,1,1,11,12]]],[10,1,1,12,13,[[293,1,1,12,13]]],[22,2,2,13,15,[[685,1,1,13,14],[732,1,1,14,15]]],[23,1,1,15,16,[[773,1,1,15,16]]]],[392,414,416,418,570,833,3049,5668,6887,6889,6891,7139,8837,17796,18724,19641]]],["bearest",[1,1,[[6,1,1,0,1,[[223,1,1,0,1]]]],[6887]]],["beareth",[2,2,[[4,1,1,0,1,[[177,1,1,0,1]]],[17,1,1,1,2,[[459,1,1,1,2]]]],[5553,13457]]],["begat",[35,34,[[0,20,20,0,20,[[4,11,11,0,11],[5,1,1,11,12],[10,8,8,12,20]]],[2,1,1,20,21,[[114,1,1,20,21]]],[4,1,1,21,22,[[184,1,1,21,22]]],[7,1,1,22,23,[[235,1,1,22,23]]],[12,4,4,23,27,[[339,1,1,23,24],[345,2,2,24,26],[351,1,1,26,27]]],[13,3,3,27,30,[[377,1,1,27,28],[379,1,1,28,29],[390,1,1,29,30]]],[19,1,1,30,31,[[650,1,1,30,31]]],[23,1,1,31,32,[[760,1,1,31,32]]],[26,1,1,32,33,[[860,1,1,32,33]]],[37,2,1,33,34,[[923,2,1,33,34]]]],[108,109,112,115,118,121,124,127,131,133,135,147,277,279,281,283,285,287,289,291,3514,5776,7209,10324,10583,10584,10777,11435,11474,11680,17066,19339,22042,23062]]],["beget",[10,10,[[0,1,1,0,1,[[16,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[180,1,1,2,3]]],[11,1,1,3,4,[[332,1,1,3,4]]],[20,1,1,4,5,[[664,1,1,4,5]]],[22,1,1,5,6,[[717,1,1,5,6]]],[23,1,1,6,7,[[773,1,1,6,7]]],[25,3,3,7,10,[[819,2,2,7,9],[848,1,1,9,10]]]],[417,5029,5652,10116,17420,18419,19641,20859,20863,21701]]],["begettest",[2,2,[[0,1,1,0,1,[[47,1,1,0,1]]],[22,1,1,1,2,[[723,1,1,1,2]]]],[1457,18571]]],["begetteth",[3,3,[[19,2,2,0,2,[[644,1,1,0,1],[650,1,1,1,2]]],[20,1,1,2,3,[[663,1,1,2,3]]]],[16894,17068,17411]]],["begotten",[6,6,[[3,1,1,0,1,[[127,1,1,0,1]]],[4,1,1,1,2,[[175,1,1,1,2]]],[17,1,1,2,3,[[473,1,1,2,3]]],[18,1,1,3,4,[[479,1,1,3,4]]],[22,1,1,4,5,[[727,1,1,4,5]]],[27,1,1,5,6,[[866,1,1,5,6]]]],[4036,5508,13821,13952,18657,22159]]],["birth",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17430]]],["born",[74,74,[[0,21,21,0,21,[[3,1,1,0,1],[5,1,1,1,2],[9,3,3,2,5],[16,1,1,5,6],[20,4,4,6,10],[21,1,1,10,11],[23,1,1,11,12],[28,1,1,12,13],[29,1,1,13,14],[30,1,1,14,15],[34,1,1,15,16],[35,1,1,16,17],[40,1,1,17,18],[45,2,2,18,20],[47,1,1,20,21]]],[1,1,1,21,22,[[70,1,1,21,22]]],[2,2,2,22,24,[[101,2,2,22,24]]],[4,1,1,24,25,[[173,1,1,24,25]]],[6,2,2,25,27,[[223,1,1,25,26],[228,1,1,26,27]]],[7,2,2,27,29,[[235,2,2,27,29]]],[8,2,2,29,31,[[237,1,1,29,30],[239,1,1,30,31]]],[9,6,6,31,37,[[269,2,2,31,33],[271,1,1,33,34],[280,1,1,34,35],[287,2,2,35,37]]],[10,1,1,37,38,[[303,1,1,37,38]]],[12,10,10,38,48,[[338,1,1,38,39],[339,2,2,39,41],[340,3,3,41,44],[344,1,1,44,45],[357,1,1,45,46],[359,1,1,46,47],[363,1,1,47,48]]],[14,1,1,48,49,[[412,1,1,48,49]]],[17,9,9,49,58,[[436,1,1,49,50],[438,1,1,50,51],[440,1,1,51,52],[446,1,1,52,53],[449,1,1,53,54],[450,2,2,54,56],[460,1,1,56,57],[473,1,1,57,58]]],[18,5,5,58,63,[[499,1,1,58,59],[555,1,1,59,60],[564,3,3,60,63]]],[19,1,1,63,64,[[644,1,1,63,64]]],[20,2,2,64,66,[[661,1,1,64,65],[662,1,1,65,66]]],[22,2,2,66,68,[[687,1,1,66,67],[744,1,1,67,68]]],[23,3,3,68,71,[[764,2,2,68,70],[766,1,1,70,71]]],[25,2,2,71,73,[[817,2,2,71,73]]],[27,1,1,73,74,[[863,1,1,73,74]]]],[105,138,235,255,259,414,516,518,520,522,567,606,829,850,916,1037,1045,1245,1408,1413,1456,2081,3046,3051,5462,6892,7022,7205,7207,7245,7317,8083,8086,8145,8383,8600,8602,9186,10271,10309,10315,10362,10365,10366,10556,10934,10973,11083,12255,12871,12907,12958,13120,13182,13210,13217,13465,13814,14235,15119,15305,15306,15307,16890,17361,17395,17835,18930,19436,19437,19480,20766,20767,22108]]],["borne",[3,3,[[23,2,2,0,2,[[759,2,2,0,2]]],[25,1,1,2,3,[[817,1,1,2,3]]]],[19324,19325,20782]]],["calved",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19298]]],["child",[6,6,[[0,1,1,0,1,[[17,1,1,0,1]]],[10,3,3,1,4,[[293,3,3,1,4]]],[23,2,2,4,6,[[774,1,1,4,5],[775,1,1,5,6]]]],[437,8833,8842,8843,19673,19699]]],["children",[2,2,[[12,1,1,0,1,[[351,1,1,0,1]]],[22,1,1,1,2,[[701,1,1,1,2]]]],[10778,18081]]],["come",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5338]]],["delivered",[5,4,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,1,1,1,2,[[50,1,1,1,2]]],[8,1,1,2,3,[[239,1,1,2,3]]],[10,2,1,3,4,[[293,2,1,3,4]]]],[682,1551,7316,8834]]],["delivery",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18147]]],["forth",[24,23,[[0,2,2,0,2,[[2,1,1,0,1],[29,1,1,1,2]]],[2,1,1,2,3,[[111,1,1,2,3]]],[11,1,1,3,4,[[331,1,1,3,4]]],[17,3,3,4,7,[[450,1,1,4,5],[474,2,2,5,7]]],[18,2,2,7,9,[[484,1,1,7,8],[567,1,1,8,9]]],[19,1,1,9,10,[[654,1,1,9,10]]],[22,10,9,10,19,[[704,1,1,10,11],[711,1,1,11,12],[715,1,1,12,13],[729,1,1,13,14],[733,1,1,14,15],[737,1,1,15,16],[743,1,1,16,17],[744,3,2,17,19]]],[23,1,1,19,20,[[746,1,1,19,20]]],[27,1,1,20,21,[[870,1,1,20,21]]],[32,1,1,21,22,[[897,1,1,21,22]]],[35,1,1,22,23,[[907,1,1,22,23]]]],[71,869,3396,10064,13238,13835,13836,14009,15380,17170,18148,18290,18355,18691,18750,18804,18920,18929,18931,18992,22224,22636,22807]]],["gendered",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13822]]],["hatcheth",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19368]]],["labour",[2,2,[[0,2,2,0,2,[[34,2,2,0,2]]]],[1027,1028]]],["midwife",[3,3,[[0,2,2,0,2,[[34,1,1,0,1],[37,1,1,1,2]]],[1,1,1,2,3,[[50,1,1,2,3]]]],[1028,1147,1548]]],["midwives",[7,6,[[1,7,6,0,6,[[50,7,6,0,6]]]],[1547,1549,1550,1551,1552,1553]]],["pedigrees",[1,1,[[3,1,1,0,1,[[117,1,1,0,1]]]],[3622]]],["son",[1,1,[[12,1,1,0,1,[[357,1,1,0,1]]]],[10932]]],["travail",[10,10,[[0,1,1,0,1,[[37,1,1,0,1]]],[18,1,1,1,2,[[525,1,1,1,2]]],[23,6,6,2,8,[[750,1,1,2,3],[757,1,1,3,4],[766,1,1,4,5],[774,1,1,5,6],[793,1,1,6,7],[794,1,1,7,8]]],[32,2,2,8,10,[[896,2,2,8,10]]]],[1146,14640,19113,19287,19477,19673,20151,20209,22629,22630]]],["travailed",[3,3,[[0,2,2,0,2,[[34,1,1,0,1],[37,1,1,1,2]]],[8,1,1,2,3,[[239,1,1,2,3]]]],[1027,1147,7316]]],["travaileth",[3,3,[[22,2,2,0,2,[[691,1,1,0,1],[699,1,1,1,2]]],[32,1,1,2,3,[[897,1,1,2,3]]]],[17914,18038,22636]]],["up",[2,2,[[0,1,1,0,1,[[49,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]]],[1529,8588]]],["woman",[2,2,[[22,1,1,0,1,[[720,1,1,0,1]]],[27,1,1,1,2,[[874,1,1,1,2]]]],[18494,22279]]],["young",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21236]]]]},{"k":"H3206","v":[["*",[90,76,[[0,19,17,0,17,[[3,1,1,0,1],[20,4,4,1,5],[29,1,1,5,6],[31,1,1,6,7],[32,9,7,7,14],[36,1,1,14,15],[41,1,1,15,16],[43,1,1,16,17]]],[1,12,10,17,27,[[50,2,2,17,19],[51,8,6,19,25],[70,2,2,25,27]]],[7,2,2,27,29,[[232,1,1,27,28],[235,1,1,28,29]]],[8,2,1,29,30,[[236,2,1,29,30]]],[9,13,6,30,36,[[272,1,1,30,31],[278,12,5,31,36]]],[10,9,8,36,44,[[293,1,1,36,37],[302,3,3,37,40],[304,1,1,40,41],[307,4,3,41,44]]],[11,6,5,44,49,[[314,1,1,44,45],[316,5,4,45,49]]],[13,3,3,49,52,[[376,3,3,49,52]]],[14,1,1,52,53,[[412,1,1,52,53]]],[15,1,1,53,54,[[424,1,1,53,54]]],[17,3,3,54,57,[[456,1,1,54,55],[473,1,1,55,56],[474,1,1,56,57]]],[20,2,2,57,59,[[662,2,2,57,59]]],[22,7,7,59,66,[[680,1,1,59,60],[686,1,1,60,61],[687,1,1,61,62],[689,1,1,62,63],[707,1,1,63,64],[735,2,2,64,66]]],[23,1,1,66,67,[[775,1,1,66,67]]],[24,1,1,67,68,[[800,1,1,67,68]]],[26,5,5,68,73,[[850,5,5,68,73]]],[27,1,1,73,74,[[862,1,1,73,74]]],[28,1,1,74,75,[[878,1,1,74,75]]],[37,1,1,75,76,[[918,1,1,75,76]]]],[102,521,527,528,529,856,950,961,962,965,966,967,973,974,1113,1274,1344,1549,1550,1557,1560,1561,1562,1563,1564,2081,2099,7132,7206,7214,8180,8301,8304,8305,8307,8308,8841,9159,9161,9165,9230,9338,9339,9340,9575,9604,9621,9629,9637,11403,11405,11409,12253,12667,13366,13834,13837,17394,17396,17691,17825,17835,17891,18216,18769,18770,19711,20430,21741,21747,21750,21752,21754,22096,22346,22981]]],["+",[6,5,[[1,3,3,0,3,[[51,3,3,0,3]]],[7,1,1,3,4,[[232,1,1,3,4]]],[9,2,1,4,5,[[278,2,1,4,5]]]],[1560,1562,1563,7132,8307]]],["Children",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21741]]],["boy",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22346]]],["boys",[1,1,[[37,1,1,0,1,[[918,1,1,0,1]]]],[22981]]],["child",[37,31,[[0,7,7,0,7,[[20,4,4,0,4],[36,1,1,4,5],[41,1,1,5,6],[43,1,1,6,7]]],[1,5,5,7,12,[[51,5,5,7,12]]],[7,1,1,12,13,[[235,1,1,12,13]]],[9,11,6,13,19,[[272,1,1,13,14],[278,10,5,14,19]]],[10,5,5,19,24,[[293,1,1,19,20],[304,1,1,20,21],[307,3,3,21,24]]],[11,4,3,24,27,[[316,4,3,24,27]]],[20,2,2,27,29,[[662,2,2,27,29]]],[22,1,1,29,30,[[687,1,1,29,30]]],[23,1,1,30,31,[[775,1,1,30,31]]]],[521,527,528,529,1113,1274,1344,1557,1560,1561,1563,1564,7206,8180,8301,8304,8305,8307,8308,8841,9230,9338,9339,9340,9621,9629,9637,17394,17396,17835,19711]]],["child's",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9338]]],["children",[30,27,[[0,10,8,0,8,[[29,1,1,0,1],[32,9,7,1,8]]],[1,3,3,8,11,[[50,2,2,8,10],[70,1,1,10,11]]],[8,2,1,11,12,[[236,2,1,11,12]]],[11,1,1,12,13,[[314,1,1,12,13]]],[14,1,1,13,14,[[412,1,1,13,14]]],[15,1,1,14,15,[[424,1,1,14,15]]],[17,1,1,15,16,[[456,1,1,15,16]]],[22,5,5,16,21,[[680,1,1,16,17],[686,1,1,17,18],[707,1,1,18,19],[735,2,2,19,21]]],[24,1,1,21,22,[[800,1,1,21,22]]],[26,4,4,22,26,[[850,4,4,22,26]]],[27,1,1,26,27,[[862,1,1,26,27]]]],[856,961,962,965,966,967,973,974,1549,1550,2081,7214,9575,12253,12667,13366,17691,17825,18216,18769,18770,20430,21747,21750,21752,21754,22096]]],["fruit",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2099]]],["man",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[102]]],["men",[6,6,[[10,3,3,0,3,[[302,3,3,0,3]]],[13,3,3,3,6,[[376,3,3,3,6]]]],[9159,9161,9165,11403,11405,11409]]],["ones",[3,3,[[17,2,2,0,2,[[473,1,1,0,1],[474,1,1,1,2]]],[22,1,1,2,3,[[689,1,1,2,3]]]],[13834,13837,17891]]],["sons",[2,2,[[0,1,1,0,1,[[31,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]]],[950,9604]]]]},{"k":"H3207","v":[["*",[3,3,[[0,1,1,0,1,[[33,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]],[37,1,1,2,3,[[918,1,1,2,3]]]],[984,22346,22981]]],["damsel",[1,1,[[0,1,1,0,1,[[33,1,1,0,1]]]],[984]]],["girl",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22346]]],["girls",[1,1,[[37,1,1,0,1,[[918,1,1,0,1]]]],[22981]]]]},{"k":"H3208","v":[["*",[3,3,[[18,1,1,0,1,[[587,1,1,0,1]]],[20,2,2,1,3,[[669,2,2,1,3]]]],[15789,17522,17523]]],["childhood",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17523]]],["youth",[2,2,[[18,1,1,0,1,[[587,1,1,0,1]]],[20,1,1,1,2,[[669,1,1,1,2]]]],[15789,17522]]]]},{"k":"H3209","v":[["born",[5,5,[[1,1,1,0,1,[[50,1,1,0,1]]],[5,1,1,1,2,[[191,1,1,1,2]]],[9,2,2,2,4,[[271,1,1,2,3],[278,1,1,3,4]]],[23,1,1,4,5,[[760,1,1,4,5]]]],[1554,5939,8146,8300,19339]]]]},{"k":"H3210","v":[["Jalon",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10402]]]]},{"k":"H3211","v":[["*",[13,13,[[0,5,5,0,5,[[13,1,1,0,1],[16,4,4,1,5]]],[2,1,1,5,6,[[111,1,1,5,6]]],[3,2,2,6,8,[[129,2,2,6,8]]],[5,1,1,8,9,[[201,1,1,8,9]]],[9,2,2,9,11,[[287,2,2,9,11]]],[12,1,1,11,12,[[357,1,1,11,12]]],[23,1,1,12,13,[[746,1,1,12,13]]]],[350,409,410,420,424,3380,4097,4103,6216,8596,8598,10930,18979]]],["+",[2,2,[[12,1,1,0,1,[[357,1,1,0,1]]],[23,1,1,1,2,[[746,1,1,1,2]]]],[10930,18979]]],["born",[6,6,[[0,5,5,0,5,[[13,1,1,0,1],[16,4,4,1,5]]],[2,1,1,5,6,[[111,1,1,5,6]]]],[350,409,410,420,424,3380]]],["children",[3,3,[[3,2,2,0,2,[[129,2,2,0,2]]],[5,1,1,2,3,[[201,1,1,2,3]]]],[4097,4103,6216]]],["sons",[2,2,[[9,2,2,0,2,[[287,2,2,0,2]]]],[8596,8598]]]]},{"k":"H3212","v":[]},{"k":"H3213","v":[["*",[32,29,[[22,13,11,0,11,[[691,1,1,0,1],[692,1,1,1,2],[693,4,3,2,5],[694,2,1,5,6],[701,3,3,6,9],[730,1,1,9,10],[743,1,1,10,11]]],[23,8,8,11,19,[[748,1,1,11,12],[769,1,1,12,13],[791,1,1,13,14],[792,3,3,14,17],[793,1,1,17,18],[795,1,1,18,19]]],[25,2,2,19,21,[[822,1,1,19,20],[831,1,1,20,21]]],[27,1,1,21,22,[[868,1,1,21,22]]],[28,3,3,22,25,[[876,3,3,22,25]]],[29,1,1,25,26,[[886,1,1,25,26]]],[32,1,1,26,27,[[893,1,1,26,27]]],[35,1,1,27,28,[[906,1,1,27,28]]],[37,2,1,28,29,[[921,2,1,28,29]]]],[17912,17959,17962,17963,17968,17976,18078,18083,18091,18701,18911,19035,19568,20075,20100,20111,20119,20130,20220,20956,21206,22192,22296,22302,22304,22484,22587,22798,23030]]],["Howl",[9,9,[[22,4,4,0,4,[[691,1,1,0,1],[692,1,1,1,2],[701,2,2,2,4]]],[23,2,2,4,6,[[769,1,1,4,5],[793,1,1,5,6]]],[25,1,1,6,7,[[831,1,1,6,7]]],[35,1,1,7,8,[[906,1,1,7,8]]],[37,1,1,8,9,[[921,1,1,8,9]]]],[17912,17959,18078,18091,19568,20130,21206,22798,23030]]],["howl",[19,18,[[22,7,6,0,6,[[693,2,2,0,2],[694,2,1,2,3],[701,1,1,3,4],[730,1,1,4,5],[743,1,1,5,6]]],[23,6,6,6,12,[[748,1,1,6,7],[791,1,1,7,8],[792,3,3,8,11],[795,1,1,11,12]]],[25,1,1,12,13,[[822,1,1,12,13]]],[28,3,3,13,16,[[876,3,3,13,16]]],[32,1,1,16,17,[[893,1,1,16,17]]],[37,1,1,17,18,[[921,1,1,17,18]]]],[17962,17963,17976,18083,18701,18911,19035,20075,20100,20111,20119,20220,20956,22296,22302,22304,22587,23030]]],["howled",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22192]]],["howling",[2,1,[[22,2,1,0,1,[[693,2,1,0,1]]]],[17968]]],["howlings",[1,1,[[29,1,1,0,1,[[886,1,1,0,1]]]],[22484]]]]},{"k":"H3214","v":[["howling",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5768]]]]},{"k":"H3215","v":[["howling",[3,3,[[23,1,1,0,1,[[769,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]],[37,1,1,2,3,[[921,1,1,2,3]]]],[19570,22797,23031]]]]},{"k":"H3216","v":[["devoureth",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16979]]]]},{"k":"H3217","v":[["scabbed",[2,2,[[2,2,2,0,2,[[110,1,1,0,1],[111,1,1,1,2]]]],[3365,3391]]]]},{"k":"H3218","v":[["*",[9,7,[[18,1,1,0,1,[[582,1,1,0,1]]],[23,2,2,1,3,[[795,2,2,1,3]]],[28,3,2,3,5,[[876,2,1,3,4],[877,1,1,4,5]]],[33,3,2,5,7,[[902,3,2,5,7]]]],[15640,20226,20239,22295,22336,22727,22728]]],["cankerworm",[6,4,[[28,3,2,0,2,[[876,2,1,0,1],[877,1,1,1,2]]],[33,3,2,2,4,[[902,3,2,2,4]]]],[22295,22336,22727,22728]]],["caterpillers",[3,3,[[18,1,1,0,1,[[582,1,1,0,1]]],[23,2,2,1,3,[[795,2,2,1,3]]]],[15640,20226,20239]]]]},{"k":"H3219","v":[["scrip",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7658]]]]},{"k":"H3220","v":[["*",[396,339,[[0,13,13,0,13,[[0,4,4,0,4],[8,1,1,4,5],[11,1,1,5,6],[12,1,1,6,7],[13,1,1,7,8],[21,1,1,8,9],[27,1,1,9,10],[31,1,1,10,11],[40,1,1,11,12],[48,1,1,12,13]]],[1,39,28,13,41,[[59,2,1,13,14],[62,1,1,14,15],[63,17,11,15,26],[64,10,7,26,33],[69,1,1,33,34],[72,2,1,34,35],[75,2,2,35,37],[76,1,1,37,38],[85,2,2,38,40],[87,1,1,40,41]]],[2,2,2,41,43,[[100,2,2,41,43]]],[3,19,17,43,60,[[118,1,1,43,44],[119,1,1,44,45],[127,2,2,45,47],[129,1,1,47,48],[130,1,1,48,49],[137,1,1,49,50],[149,3,3,50,53],[150,8,6,53,59],[151,1,1,59,60]]],[4,14,12,60,72,[[153,2,2,60,62],[154,1,1,62,63],[155,3,2,63,65],[156,1,1,65,66],[163,2,2,66,68],[182,2,1,68,69],[185,2,2,69,71],[186,1,1,71,72]]],[5,52,41,72,113,[[187,1,1,72,73],[188,1,1,73,74],[189,2,1,74,75],[190,1,1,75,76],[191,2,1,76,77],[194,3,3,77,80],[195,1,1,80,81],[197,3,3,81,84],[198,4,2,84,86],[199,1,1,86,87],[201,11,9,87,96],[202,5,3,96,99],[203,2,2,99,101],[204,5,4,101,105],[205,5,4,105,109],[208,1,1,109,110],[209,1,1,110,111],[210,3,2,111,113]]],[6,3,3,113,116,[[215,1,1,113,114],[217,1,1,114,115],[221,1,1,115,116]]],[8,1,1,116,117,[[248,1,1,116,117]]],[9,2,2,117,119,[[283,1,1,117,118],[288,1,1,118,119]]],[10,16,13,119,132,[[294,2,2,119,121],[295,2,1,121,122],[297,7,5,122,127],[299,2,2,127,129],[300,1,1,129,130],[308,2,2,130,132]]],[11,4,4,132,136,[[326,1,1,132,133],[328,1,1,133,134],[337,2,2,134,136]]],[12,3,3,136,139,[[346,1,1,136,137],[353,1,1,137,138],[355,1,1,138,139]]],[13,11,10,139,149,[[368,1,1,139,140],[370,7,6,140,146],[374,2,2,146,148],[386,1,1,148,149]]],[14,1,1,149,150,[[405,1,1,149,150]]],[15,4,3,150,153,[[421,4,3,150,153]]],[16,1,1,153,154,[[435,1,1,153,154]]],[17,12,12,154,166,[[441,1,1,154,155],[442,1,1,155,156],[444,1,1,156,157],[446,1,1,157,158],[447,1,1,158,159],[449,1,1,159,160],[461,1,1,160,161],[463,1,1,161,162],[471,1,1,162,163],[473,2,2,163,165],[476,1,1,165,166]]],[18,38,35,166,201,[[485,2,1,166,167],[501,1,1,167,168],[510,1,1,168,169],[523,1,1,169,170],[542,2,2,170,172],[543,1,1,172,173],[545,1,1,173,174],[546,1,1,174,175],[549,2,1,175,176],[551,1,1,176,177],[554,1,1,177,178],[555,3,3,178,181],[557,1,1,181,182],[566,2,2,182,184],[570,1,1,184,185],[572,1,1,185,186],[573,1,1,186,187],[575,1,1,187,188],[581,1,1,188,189],[583,4,3,189,192],[584,2,2,192,194],[591,2,2,194,196],[612,1,1,196,197],[613,2,2,197,199],[616,1,1,199,200],[623,1,1,200,201]]],[19,3,3,201,204,[[635,1,1,201,202],[650,1,1,202,203],[657,1,1,203,204]]],[20,2,1,204,205,[[659,2,1,204,205]]],[22,31,29,205,234,[[683,1,1,205,206],[687,1,1,206,207],[688,2,2,207,209],[689,4,4,209,213],[694,1,1,213,214],[695,1,1,214,215],[696,1,1,215,216],[697,1,1,216,217],[699,1,1,217,218],[701,4,3,218,221],[702,2,2,221,223],[705,1,1,223,224],[720,1,1,224,225],[721,1,1,225,226],[726,1,1,226,227],[727,1,1,227,228],[728,1,1,228,229],[729,3,2,229,231],[735,1,1,231,232],[738,1,1,232,233],[741,1,1,233,234]]],[23,18,17,234,251,[[749,1,1,234,235],[750,1,1,235,236],[759,1,1,236,237],[769,1,1,237,238],[771,1,1,238,239],[775,1,1,239,240],[777,1,1,240,241],[790,1,1,241,242],[791,1,1,242,243],[792,2,1,243,244],[793,2,2,244,246],[794,1,1,246,247],[795,2,2,247,249],[796,2,2,249,251]]],[24,1,1,251,252,[[798,1,1,251,252]]],[25,60,52,252,304,[[826,1,1,252,253],[827,6,5,253,258],[828,10,10,258,268],[829,2,2,268,270],[833,1,1,270,271],[839,1,1,271,272],[840,1,1,272,273],[842,1,1,273,274],[843,1,1,274,275],[846,3,1,275,276],[847,1,1,276,277],[848,10,7,277,284],[849,22,20,284,304]]],[26,2,2,304,306,[[857,1,1,304,305],[860,1,1,305,306]]],[27,3,3,306,309,[[862,1,1,306,307],[865,1,1,307,308],[872,1,1,308,309]]],[28,2,1,309,310,[[877,2,1,309,310]]],[29,5,4,310,314,[[883,1,1,310,311],[886,2,1,311,312],[887,2,2,312,314]]],[31,12,8,314,322,[[889,11,7,314,321],[890,1,1,321,322]]],[32,3,2,322,324,[[899,3,2,322,324]]],[33,3,2,324,326,[[900,1,1,324,325],[902,2,1,325,326]]],[34,4,4,326,330,[[903,1,1,326,327],[904,1,1,327,328],[905,2,2,328,330]]],[35,3,3,330,333,[[906,1,1,330,331],[907,2,2,331,333]]],[36,1,1,333,334,[[910,1,1,333,334]]],[37,8,5,334,339,[[919,3,2,334,336],[920,2,1,336,337],[924,3,2,337,339]]]],[9,21,25,27,207,306,332,339,564,787,940,1244,1486,1796,1885,1891,1898,1905,1910,1911,1912,1915,1916,1917,1918,1919,1921,1924,1928,1930,1939,1941,1942,2062,2175,2257,2262,2284,2593,2598,2645,3006,3007,3676,3715,4046,4055,4104,4133,4344,4768,4770,4771,4819,4821,4822,4823,4827,4828,4850,4899,4932,4939,4992,5002,5053,5212,5232,5721,5829,5833,5841,5855,5879,5909,5933,5935,6011,6014,6015,6038,6109,6110,6111,6133,6137,6181,6204,6206,6207,6210,6212,6213,6214,6248,6249,6268,6271,6273,6284,6285,6305,6307,6308,6312,6332,6347,6350,6355,6433,6464,6482,6483,6640,6706,6845,7490,8460,8618,8864,8873,8887,8957,8958,8959,8973,8978,9077,9078,9101,9384,9385,9921,9980,10235,10238,10639,10852,10898,11227,11248,11249,11250,11252,11256,11261,11363,11364,11589,12104,12517,12520,12522,12867,12981,13020,13059,13117,13136,13192,13479,13518,13766,13801,13809,13919,14020,14243,14373,14616,14865,14867,14879,14922,14969,15008,15061,15112,15126,15140,15166,15209,15335,15351,15430,15459,15476,15497,15596,15658,15660,15673,15702,15722,15825,15827,16181,16209,16211,16248,16347,16631,17078,17270,17322,17769,17830,17872,17876,17893,17895,17898,17899,17977,17995,17999,18009,18036,18079,18081,18088,18109,18110,18152,18490,18521,18632,18648,18664,18683,18688,18785,18826,18877,19080,19112,19323,19556,19615,19726,19797,20063,20080,20112,20148,20150,20208,20248,20254,20293,20296,20345,21099,21103,21105,21116,21117,21118,21124,21125,21130,21146,21147,21148,21150,21153,21154,21155,21159,21165,21250,21445,21459,21538,21571,21637,21674,21687,21689,21694,21696,21697,21698,21699,21703,21704,21705,21706,21707,21708,21709,21710,21712,21718,21719,21720,21723,21725,21726,21727,21728,21729,21730,21736,21965,22081,22104,22136,22250,22331,22431,22493,22498,22501,22535,22536,22540,22542,22543,22544,22546,22551,22676,22683,22688,22720,22745,22762,22776,22783,22790,22810,22811,22861,23003,23009,23027,23072,23076]]],["+",[25,25,[[0,1,1,0,1,[[11,1,1,0,1]]],[1,2,2,1,3,[[64,1,1,1,2],[72,1,1,2,3]]],[3,1,1,3,4,[[149,1,1,3,4]]],[5,6,6,4,10,[[194,3,3,4,7],[197,2,2,7,9],[205,1,1,9,10]]],[10,1,1,10,11,[[308,1,1,10,11]]],[18,2,2,11,13,[[549,1,1,11,12],[584,1,1,12,13]]],[22,4,4,13,17,[[697,1,1,13,14],[702,1,1,14,15],[727,1,1,15,16],[741,1,1,16,17]]],[25,3,3,17,20,[[827,1,1,17,18],[828,2,2,18,20]]],[27,1,1,20,21,[[872,1,1,20,21]]],[29,1,1,21,22,[[886,1,1,21,22]]],[32,1,1,22,23,[[899,1,1,22,23]]],[33,1,1,23,24,[[902,1,1,23,24]]],[37,1,1,24,25,[[919,1,1,24,25]]]],[306,1942,2175,4771,6011,6014,6015,6109,6110,6355,9385,15008,15702,18009,18109,18648,18877,21117,21154,21155,22250,22493,22676,22720,23009]]],["Seas",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[9]]],["sea",[285,253,[[0,8,8,0,8,[[0,2,2,0,2],[8,1,1,2,3],[13,1,1,3,4],[21,1,1,4,5],[31,1,1,5,6],[40,1,1,6,7],[48,1,1,7,8]]],[1,30,21,8,29,[[59,1,1,8,9],[62,1,1,9,10],[63,17,11,10,21],[64,9,6,21,27],[69,1,1,27,28],[72,1,1,28,29]]],[3,13,13,29,42,[[127,2,2,29,31],[129,1,1,31,32],[130,1,1,32,33],[137,1,1,33,34],[149,2,2,34,36],[150,6,6,36,42]]],[4,11,9,42,51,[[153,2,2,42,44],[154,1,1,44,45],[155,2,1,45,46],[156,1,1,46,47],[163,2,2,47,49],[182,2,1,49,50],[186,1,1,50,51]]],[5,33,28,51,79,[[187,1,1,51,52],[188,1,1,52,53],[189,2,1,53,54],[190,1,1,54,55],[191,1,1,55,56],[195,1,1,56,57],[197,1,1,57,58],[198,3,1,58,59],[199,1,1,59,60],[201,8,7,60,67],[202,3,3,67,70],[203,2,2,70,72],[204,2,2,72,74],[205,2,2,74,76],[209,1,1,76,77],[210,3,2,77,79]]],[6,3,3,79,82,[[215,1,1,79,80],[217,1,1,80,81],[221,1,1,81,82]]],[8,1,1,82,83,[[248,1,1,82,83]]],[9,2,2,83,85,[[283,1,1,83,84],[288,1,1,84,85]]],[10,14,12,85,97,[[294,2,2,85,87],[295,2,1,87,88],[297,6,5,88,93],[299,2,2,93,95],[300,1,1,95,96],[308,1,1,96,97]]],[11,4,4,97,101,[[326,1,1,97,98],[328,1,1,98,99],[337,2,2,99,101]]],[12,2,2,101,103,[[353,1,1,101,102],[355,1,1,102,103]]],[13,10,10,103,113,[[368,1,1,103,104],[370,6,6,104,110],[374,2,2,110,112],[386,1,1,112,113]]],[14,1,1,113,114,[[405,1,1,113,114]]],[15,3,2,114,116,[[421,3,2,114,116]]],[16,1,1,116,117,[[435,1,1,116,117]]],[17,12,12,117,129,[[441,1,1,117,118],[442,1,1,118,119],[444,1,1,119,120],[446,1,1,120,121],[447,1,1,121,122],[449,1,1,122,123],[461,1,1,123,124],[463,1,1,124,125],[471,1,1,125,126],[473,2,2,126,128],[476,1,1,128,129]]],[18,31,30,129,159,[[485,1,1,129,130],[510,1,1,130,131],[523,1,1,131,132],[542,1,1,132,133],[543,1,1,133,134],[545,1,1,134,135],[549,1,1,135,136],[551,1,1,136,137],[554,1,1,137,138],[555,3,3,138,141],[557,1,1,141,142],[566,2,2,142,144],[570,1,1,144,145],[572,1,1,145,146],[573,1,1,146,147],[575,1,1,147,148],[581,1,1,148,149],[583,4,3,149,152],[584,1,1,152,153],[591,2,2,153,155],[613,2,2,155,157],[616,1,1,157,158],[623,1,1,158,159]]],[19,3,3,159,162,[[635,1,1,159,160],[650,1,1,160,161],[657,1,1,161,162]]],[20,2,1,162,163,[[659,2,1,162,163]]],[22,25,23,163,186,[[683,1,1,163,164],[687,1,1,164,165],[688,2,2,165,167],[689,3,3,167,170],[694,1,1,170,171],[696,1,1,171,172],[699,1,1,172,173],[701,4,3,173,176],[702,1,1,176,177],[705,1,1,177,178],[720,1,1,178,179],[721,1,1,179,180],[726,1,1,180,181],[728,1,1,181,182],[729,3,2,182,184],[735,1,1,184,185],[738,1,1,185,186]]],[23,17,16,186,202,[[749,1,1,186,187],[750,1,1,187,188],[769,1,1,188,189],[771,1,1,189,190],[775,1,1,190,191],[777,1,1,191,192],[790,1,1,192,193],[791,1,1,193,194],[792,2,1,194,195],[793,2,2,195,197],[794,1,1,197,198],[795,2,2,198,200],[796,2,2,200,202]]],[24,1,1,202,203,[[798,1,1,202,203]]],[25,21,20,203,223,[[826,1,1,203,204],[827,5,5,204,209],[828,4,4,209,213],[839,1,1,213,214],[840,1,1,214,215],[848,8,7,215,222],[849,1,1,222,223]]],[27,2,2,223,225,[[862,1,1,223,224],[865,1,1,224,225]]],[28,2,1,225,226,[[877,2,1,225,226]]],[29,4,4,226,230,[[883,1,1,226,227],[886,1,1,227,228],[887,2,2,228,230]]],[31,11,7,230,237,[[889,11,7,230,237]]],[32,2,2,237,239,[[899,2,2,237,239]]],[33,2,2,239,241,[[900,1,1,239,240],[902,1,1,240,241]]],[34,4,4,241,245,[[903,1,1,241,242],[904,1,1,242,243],[905,2,2,243,245]]],[35,3,3,245,248,[[906,1,1,245,246],[907,2,2,246,248]]],[36,1,1,248,249,[[910,1,1,248,249]]],[37,6,4,249,253,[[919,2,2,249,251],[920,2,1,251,252],[924,2,1,252,253]]]],[25,27,207,339,564,940,1244,1486,1796,1885,1891,1898,1905,1910,1911,1912,1915,1916,1917,1918,1919,1921,1924,1928,1930,1939,1941,2062,2175,4046,4055,4104,4133,4344,4768,4770,4819,4821,4822,4823,4827,4828,4899,4932,4939,4992,5053,5212,5232,5721,5841,5855,5879,5909,5933,5935,6038,6111,6133,6181,6204,6206,6207,6213,6214,6248,6249,6268,6271,6273,6284,6285,6307,6312,6332,6350,6464,6482,6483,6640,6706,6845,7490,8460,8618,8864,8873,8887,8957,8958,8959,8973,8978,9077,9078,9101,9384,9921,9980,10235,10238,10852,10898,11227,11248,11249,11250,11252,11256,11261,11363,11364,11589,12104,12520,12522,12867,12981,13020,13059,13117,13136,13192,13479,13518,13766,13801,13809,13919,14020,14373,14616,14865,14879,14922,15008,15061,15112,15126,15140,15166,15209,15335,15351,15430,15459,15476,15497,15596,15658,15660,15673,15722,15825,15827,16209,16211,16248,16347,16631,17078,17270,17322,17769,17830,17872,17876,17893,17895,17899,17977,17999,18036,18079,18081,18088,18110,18152,18490,18521,18632,18664,18683,18688,18785,18826,19080,19112,19556,19615,19726,19797,20063,20080,20112,20148,20150,20208,20248,20254,20293,20296,20345,21099,21103,21105,21116,21117,21118,21124,21130,21150,21153,21445,21459,21687,21689,21694,21696,21697,21698,21699,21730,22104,22136,22331,22431,22493,22498,22501,22535,22536,22540,22542,22543,22544,22546,22676,22683,22688,22720,22745,22762,22776,22783,22790,22810,22811,22861,23003,23009,23027,23076]]],["seas",[21,21,[[0,1,1,0,1,[[0,1,1,0,1]]],[2,2,2,1,3,[[100,2,2,1,3]]],[4,1,1,3,4,[[185,1,1,3,4]]],[15,1,1,4,5,[[421,1,1,4,5]]],[18,5,5,5,10,[[485,1,1,5,6],[501,1,1,6,7],[542,1,1,7,8],[546,1,1,8,9],[612,1,1,9,10]]],[22,1,1,10,11,[[695,1,1,10,11]]],[23,1,1,11,12,[[759,1,1,11,12]]],[25,7,7,12,19,[[828,4,4,12,16],[829,2,2,16,18],[833,1,1,18,19]]],[26,1,1,19,20,[[860,1,1,19,20]]],[31,1,1,20,21,[[890,1,1,20,21]]]],[21,3006,3007,5829,12517,14020,14243,14867,14969,16181,17995,19323,21125,21146,21147,21148,21159,21165,21250,22081,22551]]],["side",[1,1,[[3,1,1,0,1,[[118,1,1,0,1]]]],[3676]]],["west",[41,38,[[0,1,1,0,1,[[27,1,1,0,1]]],[1,3,3,1,4,[[59,1,1,1,2],[76,1,1,2,3],[87,1,1,3,4]]],[3,2,2,4,6,[[150,1,1,4,5],[151,1,1,5,6]]],[4,1,1,6,7,[[185,1,1,6,7]]],[5,4,4,7,11,[[198,1,1,7,8],[201,1,1,8,9],[204,2,2,9,11]]],[10,1,1,11,12,[[297,1,1,11,12]]],[12,1,1,12,13,[[346,1,1,12,13]]],[13,1,1,13,14,[[370,1,1,13,14]]],[22,1,1,14,15,[[689,1,1,14,15]]],[25,25,22,15,37,[[842,1,1,15,16],[843,1,1,16,17],[846,2,1,17,18],[848,2,1,18,19],[849,19,18,19,37]]],[37,1,1,37,38,[[924,1,1,37,38]]]],[787,1796,2284,2645,4822,4850,5833,6137,6214,6307,6308,8959,10639,11250,17898,21538,21571,21637,21699,21703,21704,21705,21706,21707,21708,21709,21710,21712,21718,21719,21723,21725,21726,21727,21728,21729,21736,23072]]],["western",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4822]]],["westward",[21,21,[[0,1,1,0,1,[[12,1,1,0,1]]],[1,4,4,1,5,[[75,2,2,1,3],[85,2,2,3,5]]],[3,1,1,5,6,[[119,1,1,5,6]]],[4,1,1,6,7,[[155,1,1,6,7]]],[5,9,9,7,16,[[191,1,1,7,8],[201,2,2,8,10],[202,2,2,10,12],[204,1,1,12,13],[205,2,2,13,15],[208,1,1,15,16]]],[25,4,4,16,20,[[846,1,1,16,17],[847,1,1,17,18],[849,2,2,18,20]]],[26,1,1,20,21,[[857,1,1,20,21]]]],[332,2257,2262,2593,2598,3715,5002,5935,6210,6212,6268,6273,6305,6347,6355,6433,21637,21674,21720,21723,21965]]]]},{"k":"H3221","v":[["sea",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21935,21936]]]]},{"k":"H3222","v":[["mules",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1064]]]]},{"k":"H3223","v":[["Jemuel",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]]],[1396,1670]]]]},{"k":"H3224","v":[["Jemima",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13936]]]]},{"k":"H3225","v":[["*",[139,133,[[0,7,6,0,6,[[12,1,1,0,1],[23,1,1,1,2],[47,5,4,2,6]]],[1,6,5,6,11,[[63,2,2,6,8],[64,3,2,8,10],[78,1,1,10,11]]],[2,5,5,11,16,[[96,2,2,11,13],[97,2,2,13,15],[98,1,1,15,16]]],[3,3,3,16,19,[[134,1,1,16,17],[136,1,1,17,18],[138,1,1,18,19]]],[4,6,6,19,25,[[154,1,1,19,20],[157,1,1,20,21],[169,2,2,21,23],[180,1,1,23,24],[185,1,1,24,25]]],[5,3,3,25,28,[[187,1,1,25,26],[203,1,1,26,27],[209,1,1,27,28]]],[6,7,7,28,35,[[213,3,3,28,31],[215,1,1,31,32],[217,1,1,32,33],[226,1,1,33,34],[230,1,1,34,35]]],[8,4,4,35,39,[[241,1,1,35,36],[246,1,1,36,37],[258,2,2,37,39]]],[9,5,5,39,44,[[268,2,2,39,41],[282,1,1,41,42],[286,1,1,42,43],[290,1,1,43,44]]],[10,4,4,44,48,[[292,1,1,44,45],[297,2,2,45,47],[312,1,1,47,48]]],[11,3,3,48,51,[[324,1,1,48,49],[334,1,1,49,50],[335,1,1,50,51]]],[12,1,1,51,52,[[343,1,1,51,52]]],[13,6,6,52,58,[[369,1,1,52,53],[370,3,3,53,56],[384,1,1,56,57],[400,1,1,57,58]]],[15,2,2,58,60,[[420,1,1,58,59],[424,1,1,59,60]]],[17,3,3,60,63,[[458,1,1,60,61],[465,1,1,61,62],[475,1,1,62,63]]],[18,42,39,63,102,[[493,2,2,63,65],[494,1,1,65,66],[495,1,1,66,67],[497,1,1,67,68],[498,1,1,68,69],[503,1,1,69,70],[521,1,1,70,71],[522,2,2,71,73],[525,1,1,73,74],[537,1,1,74,75],[540,1,1,75,76],[550,1,1,76,77],[551,1,1,77,78],[554,1,1,78,79],[555,1,1,79,80],[557,2,2,80,82],[566,4,4,82,86],[568,1,1,86,87],[575,1,1,87,88],[585,1,1,88,89],[586,2,2,89,91],[587,2,2,91,93],[595,3,2,93,95],[598,1,1,95,96],[614,1,1,96,97],[615,1,1,97,98],[616,1,1,98,99],[619,1,1,99,100],[621,4,2,100,102]]],[19,3,3,102,105,[[630,1,1,102,103],[631,1,1,103,104],[654,1,1,104,105]]],[20,1,1,105,106,[[668,1,1,105,106]]],[21,2,2,106,108,[[672,1,1,106,107],[678,1,1,107,108]]],[22,9,9,108,117,[[687,1,1,108,109],[719,2,2,109,111],[722,1,1,111,112],[723,1,1,112,113],[726,1,1,113,114],[732,1,1,114,115],[740,1,1,115,116],[741,1,1,116,117]]],[23,1,1,117,118,[[766,1,1,117,118]]],[24,2,2,118,120,[[798,2,2,118,120]]],[25,5,5,120,125,[[802,1,1,120,121],[811,1,1,121,122],[817,1,1,122,123],[822,1,1,123,124],[840,1,1,124,125]]],[26,1,1,125,126,[[861,1,1,125,126]]],[31,1,1,126,127,[[892,1,1,126,127]]],[34,1,1,127,128,[[904,1,1,127,128]]],[37,6,5,128,133,[[913,1,1,128,129],[914,2,2,129,131],[921,2,1,131,132],[922,1,1,132,133]]]],[327,640,1464,1465,1468,1469,1911,1918,1926,1932,2358,2911,2912,2942,2943,2974,4275,4328,4401,4965,5085,5375,5384,5625,5812,5858,6282,6466,6583,6584,6589,6649,6714,6978,7070,7343,7447,7829,7834,8068,8070,8432,8563,8697,8789,8973,8983,9499,9859,10147,10178,10493,11246,11252,11253,11254,11560,11935,12497,12655,13428,13569,13878,14100,14103,14110,14153,14188,14199,14283,14574,14601,14606,14644,14812,14847,15043,15059,15103,15167,15213,15215,15338,15339,15351,15368,15402,15491,15748,15761,15786,15787,15791,15884,15885,16086,16227,16238,16249,16290,16313,16316,16471,16517,17185,17495,17560,17643,17849,18461,18464,18553,18562,18627,18726,18862,18878,19478,20335,20336,20474,20636,20808,20966,21451,22088,22579,22764,22913,22925,22933,23045,23051]]],["+",[21,21,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,2,2,1,3,[[63,2,2,1,3]]],[4,1,1,3,4,[[185,1,1,3,4]]],[6,2,2,4,6,[[213,1,1,4,5],[230,1,1,5,6]]],[8,1,1,6,7,[[258,1,1,6,7]]],[9,1,1,7,8,[[282,1,1,7,8]]],[10,3,3,8,11,[[297,2,2,8,10],[312,1,1,10,11]]],[11,1,1,11,12,[[335,1,1,11,12]]],[13,4,4,12,16,[[369,1,1,12,13],[370,3,3,13,16]]],[18,2,2,16,18,[[493,1,1,16,17],[568,1,1,17,18]]],[25,2,2,18,20,[[811,1,1,18,19],[817,1,1,19,20]]],[37,1,1,20,21,[[914,1,1,20,21]]]],[1464,1911,1918,5812,6583,7070,7829,8432,8973,8983,9499,10178,11246,11252,11253,11254,14100,15402,20636,20808,22925]]],["hand",[90,86,[[0,5,5,0,5,[[12,1,1,0,1],[23,1,1,1,2],[47,3,3,2,5]]],[1,3,2,5,7,[[64,3,2,5,7]]],[3,2,2,7,9,[[136,1,1,7,8],[138,1,1,8,9]]],[4,5,5,9,14,[[154,1,1,9,10],[157,1,1,10,11],[169,2,2,11,13],[180,1,1,13,14]]],[5,3,3,14,17,[[187,1,1,14,15],[203,1,1,15,16],[209,1,1,16,17]]],[6,2,2,17,19,[[215,1,1,17,18],[226,1,1,18,19]]],[8,1,1,19,20,[[241,1,1,19,20]]],[10,1,1,20,21,[[292,1,1,20,21]]],[11,1,1,21,22,[[334,1,1,21,22]]],[12,1,1,22,23,[[343,1,1,22,23]]],[13,2,2,23,25,[[384,1,1,23,24],[400,1,1,24,25]]],[15,2,2,25,27,[[420,1,1,25,26],[424,1,1,26,27]]],[17,2,2,27,29,[[458,1,1,27,28],[475,1,1,28,29]]],[18,37,34,29,63,[[493,1,1,29,30],[494,1,1,30,31],[495,1,1,31,32],[497,1,1,32,33],[498,1,1,33,34],[503,1,1,34,35],[521,1,1,35,36],[522,2,2,36,38],[525,1,1,38,39],[537,1,1,39,40],[540,1,1,40,41],[551,1,1,41,42],[554,1,1,42,43],[555,1,1,43,44],[557,2,2,44,46],[566,3,3,46,49],[575,1,1,49,50],[585,1,1,50,51],[586,2,2,51,53],[587,2,2,53,55],[595,3,2,55,57],[614,1,1,57,58],[615,1,1,58,59],[616,1,1,59,60],[619,1,1,60,61],[621,4,2,61,63]]],[19,3,3,63,66,[[630,1,1,63,64],[631,1,1,64,65],[654,1,1,65,66]]],[20,1,1,66,67,[[668,1,1,66,67]]],[21,2,2,67,69,[[672,1,1,67,68],[678,1,1,68,69]]],[22,9,9,69,78,[[687,1,1,69,70],[719,2,2,70,72],[722,1,1,72,73],[723,1,1,73,74],[726,1,1,74,75],[732,1,1,75,76],[740,1,1,76,77],[741,1,1,77,78]]],[24,2,2,78,80,[[798,2,2,78,80]]],[25,1,1,80,81,[[822,1,1,80,81]]],[26,1,1,81,82,[[861,1,1,81,82]]],[31,1,1,82,83,[[892,1,1,82,83]]],[34,1,1,83,84,[[904,1,1,83,84]]],[37,2,2,84,86,[[913,1,1,84,85],[922,1,1,85,86]]]],[327,640,1464,1465,1469,1926,1932,4328,4401,4965,5085,5375,5384,5625,5858,6282,6466,6649,6978,7343,8789,10147,10493,11560,11935,12497,12655,13428,13878,14103,14110,14153,14188,14199,14283,14574,14601,14606,14644,14812,14847,15059,15103,15167,15213,15215,15339,15351,15368,15491,15748,15761,15786,15787,15791,15884,15885,16227,16238,16249,16290,16313,16316,16471,16517,17185,17495,17560,17643,17849,18461,18464,18553,18562,18627,18726,18862,18878,20335,20336,20966,22088,22579,22764,22913,23051]]],["right",[23,22,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,1,1,1,2,[[78,1,1,1,2]]],[2,5,5,2,7,[[96,2,2,2,4],[97,2,2,4,6],[98,1,1,6,7]]],[3,1,1,7,8,[[134,1,1,7,8]]],[6,3,3,8,11,[[213,2,2,8,10],[217,1,1,10,11]]],[8,1,1,11,12,[[246,1,1,11,12]]],[9,3,3,12,15,[[268,2,2,12,14],[286,1,1,14,15]]],[17,1,1,15,16,[[465,1,1,15,16]]],[18,2,2,16,18,[[550,1,1,16,17],[598,1,1,17,18]]],[23,1,1,18,19,[[766,1,1,18,19]]],[25,1,1,19,20,[[840,1,1,19,20]]],[37,3,2,20,22,[[914,1,1,20,21],[921,2,1,21,22]]]],[1468,2358,2911,2912,2942,2943,2974,4275,6584,6589,6714,7447,8068,8070,8563,13569,15043,16086,19478,21451,22933,23045]]],["side",[3,3,[[9,1,1,0,1,[[290,1,1,0,1]]],[11,1,1,1,2,[[324,1,1,1,2]]],[25,1,1,2,3,[[802,1,1,2,3]]]],[8697,9859,20474]]],["south",[2,2,[[8,1,1,0,1,[[258,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]]],[7834,15338]]]]},{"k":"H3226","v":[["Jamin",[6,6,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]],[3,1,1,2,3,[[142,1,1,2,3]]],[12,2,2,3,5,[[339,1,1,3,4],[341,1,1,4,5]]],[15,1,1,5,6,[[420,1,1,5,6]]]],[1396,1670,4501,10333,10409,12500]]]]},{"k":"H3227","v":[["hand",[1,1,[[13,1,1,0,1,[[369,1,1,0,1]]]],[11246]]]]},{"k":"H3228","v":[["Jaminites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4501]]]]},{"k":"H3229","v":[["*",[4,4,[[10,2,2,0,2,[[312,2,2,0,2]]],[13,2,2,2,4,[[384,2,2,2,4]]]],[9488,9489,11549,11550]]],["Imla",[2,2,[[13,2,2,0,2,[[384,2,2,0,2]]]],[11549,11550]]],["Imlah",[2,2,[[10,2,2,0,2,[[312,2,2,0,2]]]],[9488,9489]]]]},{"k":"H3230","v":[["Jamlech",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10419]]]]},{"k":"H3231","v":[["*",[4,4,[[0,1,1,0,1,[[12,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]],[12,1,1,2,3,[[349,1,1,2,3]]],[25,1,1,3,4,[[822,1,1,3,4]]]],[327,8375,10722,20960]]],["hand",[2,2,[[12,1,1,0,1,[[349,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[10722,20960]]],["right",[2,2,[[0,1,1,0,1,[[12,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]]],[327,8375]]]]},{"k":"H3232","v":[["*",[5,4,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,2,1,1,2,[[142,2,1,1,2]]],[12,1,1,2,3,[[344,1,1,2,3]]],[13,1,1,3,4,[[397,1,1,3,4]]]],[1403,4533,10565,11868]]],["Imnah",[2,2,[[12,1,1,0,1,[[344,1,1,0,1]]],[13,1,1,1,2,[[397,1,1,1,2]]]],[10565,11868]]],["Jimna",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4533]]],["Jimnah",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1403]]],["Jimnites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4533]]]]},{"k":"H3233","v":[["*",[32,18,[[1,3,1,0,1,[[78,3,1,0,1]]],[2,20,8,1,9,[[97,6,2,1,3],[103,14,6,3,9]]],[10,3,3,9,12,[[296,1,1,9,10],[297,2,2,10,12]]],[11,1,1,12,13,[[323,1,1,12,13]]],[13,2,2,13,15,[[370,1,1,13,14],[389,1,1,14,15]]],[25,3,3,15,18,[[805,1,1,15,16],[848,2,2,16,18]]]],[2356,2940,2941,3125,3127,3128,3136,3138,3139,8904,8955,8973,9840,11256,11666,20535,21680,21681]]],["+",[3,3,[[10,1,1,0,1,[[297,1,1,0,1]]],[11,1,1,1,2,[[323,1,1,1,2]]],[25,1,1,2,3,[[848,1,1,2,3]]]],[8955,9840,21680]]],["right",[29,15,[[1,3,1,0,1,[[78,3,1,0,1]]],[2,20,8,1,9,[[97,6,2,1,3],[103,14,6,3,9]]],[10,2,2,9,11,[[296,1,1,9,10],[297,1,1,10,11]]],[13,2,2,11,13,[[370,1,1,11,12],[389,1,1,12,13]]],[25,2,2,13,15,[[805,1,1,13,14],[848,1,1,14,15]]]],[2356,2940,2941,3125,3127,3128,3136,3138,3139,8904,8973,11256,11666,20535,21681]]]]},{"k":"H3234","v":[["Imna",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10570]]]]},{"k":"H3235","v":[["yourselves",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18849]]]]},{"k":"H3236","v":[["Imrah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10571]]]]},{"k":"H3237","v":[]},{"k":"H3238","v":[["*",[19,19,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,3,3,1,4,[[108,1,1,1,2],[114,2,2,2,4]]],[4,1,1,4,5,[[175,1,1,4,5]]],[18,1,1,5,6,[[551,1,1,5,6]]],[22,1,1,6,7,[[727,1,1,6,7]]],[23,4,4,7,11,[[766,1,1,7,8],[769,1,1,8,9],[790,1,1,9,10],[794,1,1,10,11]]],[25,7,7,11,18,[[819,3,3,11,14],[823,2,2,14,16],[846,1,1,16,17],[847,1,1,17,18]]],[35,1,1,18,19,[[908,1,1,18,19]]]],[2134,3314,3483,3486,5516,15056,18662,19457,19572,20061,20182,20856,20861,20865,20983,21005,21638,21673,22821]]],["+",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[25,1,1,1,2,[[846,1,1,1,2]]]],[3486,21638]]],["destroy",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15056]]],["oppress",[3,3,[[2,1,1,0,1,[[114,1,1,0,1]]],[4,1,1,1,2,[[175,1,1,1,2]]],[22,1,1,2,3,[[727,1,1,2,3]]]],[3483,5516,18662]]],["oppressed",[3,3,[[25,3,3,0,3,[[819,3,3,0,3]]]],[20856,20861,20865]]],["oppressing",[3,3,[[23,2,2,0,2,[[790,1,1,0,1],[794,1,1,1,2]]],[35,1,1,2,3,[[908,1,1,2,3]]]],[20061,20182,22821]]],["oppressor",[1,1,[[23,1,1,0,1,[[769,1,1,0,1]]]],[19572]]],["out",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21673]]],["vex",[2,2,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,1,1,1,2,[[108,1,1,1,2]]]],[2134,3314]]],["vexed",[2,2,[[25,2,2,0,2,[[823,2,2,0,2]]]],[20983,21005]]],["wrong",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19457]]]]},{"k":"H3239","v":[["*",[3,3,[[5,2,2,0,2,[[202,2,2,0,2]]],[11,1,1,2,3,[[327,1,1,2,3]]]],[6271,6272,9954]]],["+",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6272]]],["Janoah",[1,1,[[11,1,1,0,1,[[327,1,1,0,1]]]],[9954]]],["Janohah",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6271]]]]},{"k":"H3240","v":[]},{"k":"H3241","v":[["Janum",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6255]]]]},{"k":"H3242","v":[["*",[2,2,[[10,1,1,0,1,[[293,1,1,0,1]]],[25,1,1,1,2,[[818,1,1,1,2]]]],[8837,20829]]],["+",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8837]]],["twigs",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20829]]]]},{"k":"H3243","v":[["*",[31,29,[[0,4,4,0,4,[[20,1,1,0,1],[23,1,1,1,2],[31,1,1,2,3],[34,1,1,3,4]]],[1,3,2,4,6,[[51,3,2,4,6]]],[3,1,1,6,7,[[127,1,1,6,7]]],[4,3,3,7,10,[[184,2,2,7,9],[185,1,1,9,10]]],[8,3,3,10,13,[[236,1,1,10,11],[250,1,1,11,12],[257,1,1,12,13]]],[11,1,1,13,14,[[323,1,1,13,14]]],[13,1,1,14,15,[[388,1,1,14,15]]],[17,2,2,15,17,[[438,1,1,15,16],[455,1,1,16,17]]],[18,1,1,17,18,[[485,1,1,17,18]]],[21,1,1,18,19,[[678,1,1,18,19]]],[22,6,5,19,24,[[689,1,1,19,20],[727,1,1,20,21],[738,2,1,21,22],[744,2,2,22,24]]],[23,1,1,24,25,[[788,1,1,24,25]]],[24,3,3,25,28,[[798,1,1,25,26],[800,2,2,26,28]]],[28,1,1,28,29,[[877,1,1,28,29]]]],[520,650,943,1019,1561,1563,4036,5771,5783,5829,7235,7563,7806,9831,11655,12916,13342,14014,17641,17892,18659,18837,18933,18934,20017,20343,20423,20424,22327]]],["+",[4,3,[[0,1,1,0,1,[[20,1,1,0,1]]],[1,2,1,1,2,[[51,2,1,1,2]]],[8,1,1,2,3,[[236,1,1,2,3]]]],[520,1561,7235]]],["child",[2,2,[[3,1,1,0,1,[[127,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[4036,20424]]],["milch",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[943]]],["mothers",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18659]]],["nurse",[5,5,[[0,2,2,0,2,[[23,1,1,0,1],[34,1,1,1,2]]],[1,1,1,2,3,[[51,1,1,2,3]]],[11,1,1,3,4,[[323,1,1,3,4]]],[13,1,1,4,5,[[388,1,1,4,5]]]],[650,1019,1563,9831,11655]]],["suck",[10,9,[[4,2,2,0,2,[[184,1,1,0,1],[185,1,1,1,2]]],[17,2,2,2,4,[[438,1,1,2,3],[455,1,1,3,4]]],[22,4,3,4,7,[[738,2,1,4,5],[744,2,2,5,7]]],[24,1,1,7,8,[[800,1,1,7,8]]],[28,1,1,8,9,[[877,1,1,8,9]]]],[5771,5829,12916,13342,18837,18933,18934,20423,22327]]],["sucked",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17641]]],["sucking",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17892]]],["suckling",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]],[23,1,1,2,3,[[788,1,1,2,3]]]],[5783,7563,20017]]],["sucklings",[3,3,[[8,1,1,0,1,[[257,1,1,0,1]]],[18,1,1,1,2,[[485,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]]],[7806,14014,20343]]]]},{"k":"H3244","v":[["owl",[3,3,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[22,1,1,2,3,[[712,1,1,2,3]]]],[3014,5306,18314]]]]},{"k":"H3245","v":[["*",[43,41,[[1,1,1,0,1,[[58,1,1,0,1]]],[5,1,1,1,2,[[192,1,1,1,2]]],[10,4,4,2,6,[[295,1,1,2,3],[296,1,1,3,4],[297,1,1,4,5],[306,1,1,5,6]]],[12,1,1,6,7,[[346,1,1,6,7]]],[13,2,2,7,9,[[369,1,1,7,8],[397,1,1,8,9]]],[14,4,4,9,13,[[405,4,4,9,13]]],[16,1,1,13,14,[[426,1,1,13,14]]],[17,1,1,14,15,[[473,1,1,14,15]]],[18,10,10,15,25,[[479,1,1,15,16],[485,1,1,16,17],[501,1,1,17,18],[508,1,1,18,19],[555,1,1,19,20],[566,1,1,20,21],[579,1,1,21,22],[581,2,2,22,24],[596,1,1,24,25]]],[19,1,1,25,26,[[630,1,1,25,26]]],[21,1,1,26,27,[[675,1,1,26,27]]],[22,10,8,27,35,[[692,1,1,27,28],[701,1,1,28,29],[706,3,1,29,30],[722,1,1,30,31],[726,1,1,31,32],[729,2,2,32,34],[732,1,1,34,35]]],[29,1,1,35,36,[[887,1,1,35,36]]],[34,1,1,36,37,[[903,1,1,36,37]]],[36,1,1,37,38,[[910,1,1,37,38]]],[37,3,3,38,41,[[914,1,1,38,39],[918,1,1,39,40],[922,1,1,40,41]]]],[1760,5975,8895,8933,8944,9317,10637,11232,11861,12103,12107,12108,12109,12710,13797,13947,14014,14243,14344,15182,15337,15546,15576,15579,16050,16474,17613,17960,18090,18180,18561,18627,18686,18689,18734,22501,22743,22873,22931,22985,23046]]],["+",[4,4,[[14,2,2,0,2,[[405,2,2,0,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[36,1,1,3,4,[[910,1,1,3,4]]]],[12108,12109,15576,22873]]],["appointed",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12710]]],["counsel",[2,2,[[18,2,2,0,2,[[479,1,1,0,1],[508,1,1,1,2]]]],[13947,14344]]],["established",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[34,1,1,1,2,[[903,1,1,1,2]]]],[15182,22743]]],["foundation",[14,14,[[1,1,1,0,1,[[58,1,1,0,1]]],[5,1,1,1,2,[[192,1,1,1,2]]],[10,4,4,2,6,[[295,1,1,2,3],[296,1,1,3,4],[297,1,1,4,5],[306,1,1,5,6]]],[13,1,1,6,7,[[397,1,1,6,7]]],[14,2,2,7,9,[[405,2,2,7,9]]],[18,1,1,9,10,[[579,1,1,9,10]]],[22,2,2,10,12,[[706,1,1,10,11],[726,1,1,11,12]]],[37,2,2,12,14,[[914,1,1,12,13],[922,1,1,13,14]]]],[1760,5975,8895,8933,8944,9317,11861,12103,12107,15546,18180,18627,22931,23046]]],["foundations",[4,4,[[17,1,1,0,1,[[473,1,1,0,1]]],[22,3,3,1,4,[[729,2,2,1,3],[732,1,1,3,4]]]],[13797,18686,18689,18734]]],["founded",[8,8,[[18,4,4,0,4,[[501,1,1,0,1],[566,1,1,1,2],[581,1,1,2,3],[596,1,1,3,4]]],[19,1,1,4,5,[[630,1,1,4,5]]],[22,2,2,5,7,[[692,1,1,5,6],[701,1,1,6,7]]],[29,1,1,7,8,[[887,1,1,7,8]]]],[14243,15337,15579,16050,16474,17960,18090,22501]]],["instructed",[1,1,[[13,1,1,0,1,[[369,1,1,0,1]]]],[11232]]],["laid",[2,2,[[22,1,1,0,1,[[722,1,1,0,1]]],[37,1,1,1,2,[[918,1,1,1,2]]]],[18561,22985]]],["lay",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18180]]],["ordain",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10637]]],["ordained",[1,1,[[18,1,1,0,1,[[485,1,1,0,1]]]],[14014]]],["set",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17613]]],["sure",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18180]]]]},{"k":"H3246","v":[["began",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12182]]]]},{"k":"H3247","v":[["*",[20,20,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,8,8,1,9,[[93,5,5,1,6],[94,1,1,6,7],[97,1,1,7,8],[98,1,1,8,9]]],[13,2,2,9,11,[[389,1,1,9,10],[390,1,1,10,11]]],[17,2,2,11,13,[[439,1,1,11,12],[457,1,1,12,13]]],[18,1,1,13,14,[[614,1,1,13,14]]],[19,1,1,14,15,[[637,1,1,14,15]]],[24,1,1,15,16,[[800,1,1,15,16]]],[25,2,2,16,18,[[814,1,1,16,17],[831,1,1,17,18]]],[32,1,1,18,19,[[893,1,1,18,19]]],[34,1,1,19,20,[[905,1,1,19,20]]]],[2348,2802,2813,2820,2825,2829,2839,2932,2962,11661,11704,12949,13405,16229,16681,20431,20722,21208,22585,22781]]],["bottom",[9,9,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,8,8,1,9,[[93,5,5,1,6],[94,1,1,6,7],[97,1,1,7,8],[98,1,1,8,9]]]],[2348,2802,2813,2820,2825,2829,2839,2932,2962]]],["foundation",[7,7,[[13,1,1,0,1,[[389,1,1,0,1]]],[17,2,2,1,3,[[439,1,1,1,2],[457,1,1,2,3]]],[18,1,1,3,4,[[614,1,1,3,4]]],[19,1,1,4,5,[[637,1,1,4,5]]],[25,1,1,5,6,[[814,1,1,5,6]]],[34,1,1,6,7,[[905,1,1,6,7]]]],[11661,12949,13405,16229,16681,20722,22781]]],["foundations",[3,3,[[24,1,1,0,1,[[800,1,1,0,1]]],[25,1,1,1,2,[[831,1,1,1,2]]],[32,1,1,2,3,[[893,1,1,2,3]]]],[20431,21208,22585]]],["repairing",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11704]]]]},{"k":"H3248","v":[["foundation",[1,1,[[18,1,1,0,1,[[564,1,1,0,1]]]],[15302]]]]},{"k":"H3249","v":[["from",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19370]]]]},{"k":"H3250","v":[["instruct",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13866]]]]},{"k":"H3251","v":[["poured",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2414]]]]},{"k":"H3252","v":[["Iscah",[1,1,[[0,1,1,0,1,[[10,1,1,0,1]]]],[295]]]]},{"k":"H3253","v":[["Ismachiah",[1,1,[[13,1,1,0,1,[[397,1,1,0,1]]]],[11867]]]]},{"k":"H3254","v":[["*",[209,205,[[0,14,13,0,13,[[3,2,2,0,2],[7,4,3,2,5],[17,1,1,5,6],[24,1,1,6,7],[29,1,1,7,8],[36,2,2,8,10],[37,2,2,10,12],[43,1,1,12,13]]],[1,9,9,13,22,[[50,1,1,13,14],[54,1,1,14,15],[57,1,1,15,16],[58,2,2,16,18],[59,2,2,18,20],[60,1,1,20,21],[63,1,1,21,22]]],[2,11,11,22,33,[[94,1,1,22,23],[95,1,1,23,24],[108,1,1,24,25],[111,1,1,25,26],[115,2,2,26,28],[116,5,5,28,33]]],[3,9,9,33,42,[[121,1,1,33,34],[127,1,1,34,35],[138,4,4,35,39],[148,1,1,39,40],[152,2,2,40,42]]],[4,15,14,42,56,[[153,1,1,42,43],[155,1,1,43,44],[156,1,1,44,45],[157,2,2,45,47],[164,1,1,47,48],[165,1,1,48,49],[169,1,1,49,50],[170,1,1,50,51],[171,2,2,51,53],[172,1,1,53,54],[177,2,1,54,55],[180,1,1,55,56]]],[5,2,2,56,58,[[193,1,1,56,57],[209,1,1,57,58]]],[6,13,13,58,71,[[212,1,1,58,59],[213,1,1,59,60],[214,1,1,60,61],[218,1,1,61,62],[219,1,1,62,63],[220,2,2,63,65],[221,1,1,65,66],[223,2,2,66,68],[230,3,3,68,71]]],[7,1,1,71,72,[[232,1,1,71,72]]],[8,17,17,72,89,[[238,4,4,72,76],[242,1,1,76,77],[244,1,1,77,78],[247,1,1,78,79],[249,1,1,79,80],[250,1,1,80,81],[253,1,1,81,82],[254,2,2,82,84],[255,2,2,84,86],[258,1,1,86,87],[260,1,1,87,88],[262,1,1,88,89]]],[9,14,14,89,103,[[268,2,2,89,91],[269,3,3,91,94],[271,1,1,94,95],[273,2,2,95,97],[278,1,1,97,98],[280,1,1,98,99],[284,1,1,99,100],[285,1,1,100,101],[290,2,2,101,103]]],[10,7,7,103,110,[[292,1,1,103,104],[300,1,1,104,105],[302,2,2,105,107],[306,1,1,107,108],[309,1,1,108,109],[310,1,1,109,110]]],[11,6,6,110,116,[[318,2,2,110,112],[331,1,1,112,113],[332,1,1,113,114],[333,1,1,114,115],[336,1,1,115,116]]],[12,5,5,116,121,[[351,1,1,116,117],[354,2,2,117,119],[358,1,1,119,120],[359,1,1,120,121]]],[13,6,6,121,127,[[375,1,1,121,122],[376,2,2,122,124],[394,2,2,124,126],[399,1,1,126,127]]],[14,1,1,127,128,[[412,1,1,127,128]]],[15,1,1,128,129,[[425,1,1,128,129]]],[16,1,1,129,130,[[433,1,1,129,130]]],[17,11,11,130,141,[[452,1,1,130,131],[455,1,1,131,132],[462,1,1,132,133],[464,1,1,133,134],[469,2,2,134,136],[471,1,1,136,137],[473,1,1,137,138],[475,1,1,138,139],[476,1,1,139,140],[477,1,1,140,141]]],[18,8,8,141,149,[[487,1,1,141,142],[518,1,1,142,143],[538,1,1,143,144],[548,1,1,144,145],[554,1,1,145,146],[555,1,1,146,147],[592,1,1,147,148],[597,1,1,148,149]]],[19,14,14,149,163,[[628,1,1,149,150],[630,1,1,150,151],[636,2,2,151,153],[637,2,2,153,155],[638,1,1,155,156],[643,2,2,156,158],[646,2,2,158,160],[650,2,2,160,162],[657,1,1,162,163]]],[20,5,4,163,167,[[659,3,2,163,165],[660,1,1,165,166],[661,1,1,166,167]]],[22,18,17,167,184,[[679,2,2,167,169],[685,1,1,169,170],[686,1,1,170,171],[688,1,1,171,172],[689,1,1,172,173],[693,1,1,173,174],[702,1,1,174,175],[704,2,1,175,176],[707,2,2,176,178],[715,1,1,178,179],[716,1,1,179,180],[725,2,2,180,182],[729,1,1,182,183],[730,1,1,183,184]]],[23,3,3,184,187,[[775,1,1,184,185],[780,1,1,185,186],[789,1,1,186,187]]],[24,3,3,187,190,[[800,3,3,187,190]]],[25,3,3,190,193,[[806,1,1,190,191],[824,1,1,191,192],[837,1,1,192,193]]],[26,1,1,193,194,[[859,1,1,193,194]]],[27,3,3,194,197,[[862,1,1,194,195],[870,1,1,195,196],[874,1,1,196,197]]],[28,1,1,197,198,[[877,1,1,197,198]]],[29,4,4,198,202,[[883,1,1,198,199],[885,2,2,199,201],[886,1,1,201,202]]],[31,1,1,202,203,[[890,1,1,202,203]]],[33,1,1,203,204,[[900,1,1,203,204]]],[35,1,1,204,205,[[908,1,1,204,205]]]],[81,91,193,195,204,453,659,854,1088,1091,1124,1145,1347,1542,1639,1739,1770,1776,1805,1806,1812,1902,2846,2854,3306,3383,3542,3545,3583,3585,3589,3597,3601,3799,4049,4390,4394,4400,4401,4733,4882,4883,4903,5001,5006,5075,5078,5272,5283,5380,5400,5415,5426,5435,5550,5679,5988,6473,6566,6580,6600,6747,6791,6817,6824,6843,6885,6905,7076,7077,7082,7144,7282,7284,7293,7297,7365,7399,7479,7552,7595,7705,7714,7727,7743,7747,7814,7883,7934,8071,8077,8090,8115,8116,8154,8190,8200,8294,8366,8500,8524,8693,8695,8793,9086,9162,9165,9316,9389,9418,9697,9705,10091,10104,10127,10209,10787,10872,10881,10937,10978,11370,11406,11409,11777,11786,11916,12262,12689,12820,13269,13335,13482,13533,13715,13720,13737,13804,13869,13896,13932,14059,14550,14825,14990,15100,15130,15844,16077,16405,16457,16647,16649,16678,16683,16712,16861,16863,16929,16944,17072,17079,17257,17331,17333,17342,17373,17659,17667,17792,17812,17870,17895,17969,18115,18145,18207,18212,18383,18395,18600,18604,18695,18697,19703,19874,20043,20435,20436,20442,20562,21021,21371,22033,22100,22223,22268,22313,22425,22472,22477,22483,22552,22699,22831]]],["+",[22,22,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,4,4,1,5,[[155,1,1,1,2],[157,2,2,2,4],[170,1,1,4,5]]],[6,1,1,5,6,[[221,1,1,5,6]]],[8,1,1,6,7,[[242,1,1,6,7]]],[9,1,1,7,8,[[273,1,1,7,8]]],[10,1,1,8,9,[[300,1,1,8,9]]],[11,1,1,9,10,[[318,1,1,9,10]]],[12,1,1,10,11,[[354,1,1,10,11]]],[13,1,1,11,12,[[375,1,1,11,12]]],[14,1,1,12,13,[[412,1,1,12,13]]],[17,2,2,13,15,[[452,1,1,13,14],[475,1,1,14,15]]],[18,3,3,15,18,[[487,1,1,15,16],[554,1,1,16,17],[592,1,1,17,18]]],[25,1,1,18,19,[[824,1,1,18,19]]],[27,1,1,19,20,[[862,1,1,19,20]]],[33,1,1,20,21,[[900,1,1,20,21]]],[35,1,1,21,22,[[908,1,1,21,22]]]],[3545,5001,5075,5078,5400,6843,7365,8200,9086,9697,10881,11370,12262,13269,13869,14059,15100,15844,21021,22100,22699,22831]]],["Add",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17257]]],["Moreover",[2,2,[[17,2,2,0,2,[[462,1,1,0,1],[464,1,1,1,2]]]],[13482,13533]]],["add",[21,21,[[0,1,1,0,1,[[29,1,1,0,1]]],[2,7,7,1,8,[[94,1,1,1,2],[95,1,1,2,3],[116,5,5,3,8]]],[3,1,1,8,9,[[121,1,1,8,9]]],[4,3,3,9,12,[[156,1,1,9,10],[164,1,1,10,11],[171,1,1,11,12]]],[9,1,1,12,13,[[290,1,1,12,13]]],[10,2,2,13,15,[[302,2,2,13,15]]],[11,1,1,15,16,[[332,1,1,15,16]]],[12,1,1,16,17,[[359,1,1,16,17]]],[13,2,2,17,19,[[376,1,1,17,18],[394,1,1,18,19]]],[19,1,1,19,20,[[630,1,1,19,20]]],[22,1,1,20,21,[[716,1,1,20,21]]]],[854,2846,2854,3583,3585,3589,3597,3601,3799,5006,5272,5415,8695,9162,9165,10104,10978,11409,11777,16457,18395]]],["added",[3,3,[[8,1,1,0,1,[[247,1,1,0,1]]],[23,2,2,1,3,[[780,1,1,1,2],[789,1,1,2,3]]]],[7479,19874,20043]]],["addeth",[3,3,[[17,1,1,0,1,[[469,1,1,0,1]]],[19,2,2,1,3,[[637,1,1,1,2],[643,1,1,2,3]]]],[13720,16678,16863]]],["again",[50,49,[[0,8,7,0,7,[[3,1,1,0,1],[7,4,3,1,4],[17,1,1,4,5],[24,1,1,5,6],[37,1,1,6,7]]],[1,1,1,7,8,[[59,1,1,7,8]]],[3,3,3,8,11,[[138,2,2,8,10],[148,1,1,10,11]]],[6,8,8,11,19,[[213,1,1,11,12],[214,1,1,12,13],[219,1,1,13,14],[220,1,1,14,15],[223,1,1,15,16],[230,3,3,16,19]]],[8,9,9,19,28,[[238,3,3,19,22],[244,1,1,22,23],[254,2,2,23,25],[255,1,1,25,26],[258,1,1,26,27],[262,1,1,27,28]]],[9,5,5,28,33,[[268,1,1,28,29],[269,1,1,29,30],[271,1,1,30,31],[284,1,1,31,32],[290,1,1,32,33]]],[11,2,2,33,35,[[331,1,1,33,34],[336,1,1,34,35]]],[12,1,1,35,36,[[351,1,1,35,36]]],[16,1,1,36,37,[[433,1,1,36,37]]],[19,1,1,37,38,[[646,1,1,37,38]]],[22,6,6,38,44,[[685,1,1,38,39],[686,1,1,39,40],[688,1,1,40,41],[689,1,1,41,42],[702,1,1,42,43],[715,1,1,43,44]]],[26,1,1,44,45,[[859,1,1,44,45]]],[29,3,3,45,48,[[885,2,2,45,47],[886,1,1,47,48]]],[31,1,1,48,49,[[890,1,1,48,49]]]],[81,193,195,204,453,659,1145,1806,4390,4400,4733,6580,6600,6791,6817,6885,7076,7077,7082,7282,7284,7297,7399,7714,7727,7747,7814,7934,8071,8115,8154,8500,8693,10091,10209,10787,12820,16944,17792,17812,17870,17895,18115,18383,22033,22472,22477,22483,22552]]],["any",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8366]]],["cease",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4049]]],["conceived",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1124]]],["do",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13715]]],["done",[1,1,[[18,1,1,0,1,[[597,1,1,0,1]]]],[16077]]],["exceed",[2,1,[[4,2,1,0,1,[[177,2,1,0,1]]]],[5550]]],["further",[3,3,[[3,1,1,0,1,[[138,1,1,0,1]]],[4,1,1,1,2,[[172,1,1,1,2]]],[17,1,1,2,3,[[473,1,1,2,3]]]],[4401,5435,13804]]],["gave",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13932]]],["given",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8294]]],["henceforth",[5,5,[[0,1,1,0,1,[[3,1,1,0,1]]],[4,2,2,1,3,[[169,1,1,1,2],[171,1,1,2,3]]],[6,1,1,3,4,[[212,1,1,3,4]]],[22,1,1,4,5,[[730,1,1,4,5]]]],[91,5380,5426,6566,18697]]],["increase",[4,4,[[19,2,2,0,2,[[628,1,1,0,1],[636,1,1,1,2]]],[22,1,1,2,3,[[707,1,1,2,3]]],[25,1,1,3,4,[[806,1,1,3,4]]]],[16405,16647,18212,20562]]],["increased",[3,2,[[19,1,1,0,1,[[636,1,1,0,1]]],[22,2,1,1,2,[[704,2,1,1,2]]]],[16649,18145]]],["increaseth",[5,4,[[19,3,3,0,3,[[638,1,1,0,1],[643,1,1,1,2],[650,1,1,2,3]]],[20,2,1,3,4,[[659,2,1,3,4]]]],[16712,16861,17072,17333]]],["join",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1542]]],["longer",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1770]]],["maketh",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16929]]],["more",[65,65,[[0,3,3,0,3,[[36,2,2,0,2],[43,1,1,2,3]]],[1,6,6,3,9,[[54,1,1,3,4],[57,1,1,4,5],[58,1,1,5,6],[59,1,1,6,7],[60,1,1,7,8],[63,1,1,8,9]]],[2,1,1,9,10,[[115,1,1,9,10]]],[3,1,1,10,11,[[138,1,1,10,11]]],[4,3,3,11,14,[[153,1,1,11,12],[165,1,1,12,13],[180,1,1,13,14]]],[5,2,2,14,16,[[193,1,1,14,15],[209,1,1,15,16]]],[6,3,3,16,19,[[218,1,1,16,17],[220,1,1,17,18],[223,1,1,18,19]]],[7,1,1,19,20,[[232,1,1,19,20]]],[8,6,6,20,26,[[238,1,1,20,21],[249,1,1,21,22],[250,1,1,22,23],[253,1,1,23,24],[255,1,1,24,25],[260,1,1,25,26]]],[9,5,5,26,31,[[268,1,1,26,27],[269,2,2,27,29],[273,1,1,29,30],[285,1,1,30,31]]],[10,4,4,31,35,[[292,1,1,31,32],[306,1,1,32,33],[309,1,1,33,34],[310,1,1,34,35]]],[11,2,2,35,37,[[318,1,1,35,36],[333,1,1,36,37]]],[12,2,2,37,39,[[354,1,1,37,38],[358,1,1,38,39]]],[13,3,3,39,42,[[376,1,1,39,40],[394,1,1,40,41],[399,1,1,41,42]]],[15,1,1,42,43,[[425,1,1,42,43]]],[17,2,2,43,45,[[455,1,1,43,44],[476,1,1,44,45]]],[18,3,3,45,48,[[518,1,1,45,46],[548,1,1,46,47],[555,1,1,47,48]]],[20,2,2,48,50,[[659,1,1,48,49],[660,1,1,49,50]]],[22,6,6,50,56,[[679,2,2,50,52],[693,1,1,52,53],[725,2,2,53,55],[729,1,1,55,56]]],[23,1,1,56,57,[[775,1,1,56,57]]],[24,3,3,57,60,[[800,3,3,57,60]]],[25,1,1,60,61,[[837,1,1,60,61]]],[27,2,2,61,63,[[870,1,1,61,62],[874,1,1,62,63]]],[28,1,1,63,64,[[877,1,1,63,64]]],[29,1,1,64,65,[[883,1,1,64,65]]]],[1088,1091,1347,1639,1739,1776,1805,1812,1902,3542,4394,4903,5283,5679,5988,6473,6747,6824,6905,7144,7293,7552,7595,7705,7743,7883,8077,8090,8116,8190,8524,8793,9316,9389,9418,9705,10127,10872,10937,11406,11786,11916,12689,13335,13896,14550,14990,15130,17331,17342,17659,17667,17969,18600,18604,18695,19703,20435,20436,20442,21371,22223,22268,22313,22425]]],["proceed",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18207]]],["proceeded",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13737]]],["prolong",[1,1,[[18,1,1,0,1,[[538,1,1,0,1]]]],[14825]]],["prolongeth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16683]]],["put",[4,4,[[2,1,1,0,1,[[111,1,1,0,1]]],[3,2,2,1,3,[[152,2,2,1,3]]],[20,1,1,3,4,[[661,1,1,3,4]]]],[3383,4882,4883,17373]]],["yet",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17079]]],["yield",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3306]]]]},{"k":"H3255","v":[["added",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21873]]]]},{"k":"H3256","v":[["*",[43,38,[[2,3,3,0,3,[[115,3,3,0,3]]],[4,5,4,3,7,[[156,1,1,3,4],[160,2,1,4,5],[173,1,1,5,6],[174,1,1,6,7]]],[10,4,2,7,9,[[302,4,2,7,9]]],[12,1,1,9,10,[[352,1,1,9,10]]],[13,2,2,10,12,[[376,2,2,10,12]]],[17,1,1,12,13,[[439,1,1,12,13]]],[18,9,8,13,21,[[479,1,1,13,14],[483,1,1,14,15],[493,1,1,15,16],[515,1,1,16,17],[516,1,1,17,18],[571,2,2,18,20],[595,2,1,20,21]]],[19,5,5,21,26,[[636,1,1,21,22],[646,1,1,22,23],[656,2,2,23,25],[658,1,1,25,26]]],[22,2,2,26,28,[[686,1,1,26,27],[706,1,1,27,28]]],[23,7,6,28,34,[[746,1,1,28,29],[750,1,1,29,30],[754,1,1,30,31],[774,1,1,31,32],[775,2,1,32,33],[790,1,1,33,34]]],[25,1,1,34,35,[[824,1,1,34,35]]],[27,3,3,35,38,[[868,2,2,35,37],[871,1,1,37,38]]]],[3542,3547,3552,5040,5142,5465,5488,9162,9165,10813,11406,11409,12933,13955,13986,14099,14491,14523,15441,15443,15887,16645,16943,17241,17243,17285,17818,18190,18984,19097,19225,19678,19709,20073,21055,22190,22193,22235]]],["+",[3,2,[[4,1,1,0,1,[[160,1,1,0,1]]],[18,2,1,1,2,[[595,2,1,1,2]]]],[5142,15887]]],["Chasten",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16943]]],["Correct",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17241]]],["bound",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22193]]],["chasten",[2,2,[[18,2,2,0,2,[[483,1,1,0,1],[515,1,1,1,2]]]],[13986,14491]]],["chastened",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5465]]],["chastenest",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15443]]],["chasteneth",[1,1,[[4,1,1,0,1,[[160,1,1,0,1]]]],[5142]]],["chastise",[6,6,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[174,1,1,1,2]]],[10,2,2,2,4,[[302,2,2,2,4]]],[27,2,2,4,6,[[868,1,1,4,5],[871,1,1,5,6]]]],[3552,5488,9162,9165,22190,22235]]],["chastised",[6,5,[[10,2,2,0,2,[[302,2,2,0,2]]],[13,2,2,2,4,[[376,2,2,2,4]]],[23,2,1,4,5,[[775,2,1,4,5]]]],[9162,9165,11406,11409,19709]]],["chastiseth",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15441]]],["correct",[5,5,[[18,1,1,0,1,[[516,1,1,0,1]]],[23,4,4,1,5,[[746,1,1,1,2],[754,1,1,2,3],[774,1,1,3,4],[790,1,1,4,5]]]],[14523,18984,19225,19678,20073]]],["corrected",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17243]]],["instruct",[3,3,[[4,1,1,0,1,[[156,1,1,0,1]]],[18,1,1,1,2,[[493,1,1,1,2]]],[22,1,1,2,3,[[706,1,1,2,3]]]],[5040,14099,18190]]],["instructed",[5,5,[[12,1,1,0,1,[[352,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]],[18,1,1,2,3,[[479,1,1,2,3]]],[22,1,1,3,4,[[686,1,1,3,4]]],[23,1,1,4,5,[[750,1,1,4,5]]]],[10813,12933,13955,17818,19097]]],["punish",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3542]]],["reformed",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3547]]],["reproveth",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16645]]],["taught",[2,2,[[19,1,1,0,1,[[658,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[17285,21055]]]]},{"k":"H3257","v":[["shovels",[9,9,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]],[10,2,2,3,5,[[297,2,2,3,5]]],[11,1,1,5,6,[[337,1,1,5,6]]],[13,2,2,6,8,[[370,2,2,6,8]]],[23,1,1,8,9,[[796,1,1,8,9]]]],[2275,2636,3757,8974,8979,10236,11257,11262,20294]]]]},{"k":"H3258","v":[["Jabez",[4,3,[[12,4,3,0,3,[[339,1,1,0,1],[341,3,2,1,3]]]],[10361,10394,10395]]]]},{"k":"H3259","v":[["*",[29,29,[[1,7,7,0,7,[[70,2,2,0,2],[74,1,1,2,3],[78,2,2,3,5],[79,2,2,5,7]]],[3,6,6,7,13,[[126,2,2,7,9],[130,1,1,9,10],[132,1,1,10,11],[133,1,1,11,12],[143,1,1,12,13]]],[5,1,1,13,14,[[197,1,1,13,14]]],[9,1,1,14,15,[[286,1,1,14,15]]],[10,1,1,15,16,[[298,1,1,15,16]]],[13,1,1,16,17,[[371,1,1,16,17]]],[15,2,2,17,19,[[418,2,2,17,19]]],[17,2,2,19,21,[[437,1,1,19,20],[444,1,1,20,21]]],[18,1,1,21,22,[[525,1,1,21,22]]],[23,4,4,22,26,[[768,1,1,22,23],[791,1,1,23,24],[793,1,1,24,25],[794,1,1,25,26]]],[25,1,1,26,27,[[822,1,1,26,27]]],[29,1,1,27,28,[[881,1,1,27,28]]],[32,1,1,28,29,[[898,1,1,28,29]]]],[2085,2086,2217,2378,2379,2388,2418,3991,3992,4143,4205,4248,4557,6112,8559,8990,11274,12403,12411,12902,13070,14638,19525,20080,20146,20210,20960,22398,22657]]],["+",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2085]]],["agreed",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22398]]],["appoint",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20146]]],["appointed",[3,3,[[9,1,1,0,1,[[286,1,1,0,1]]],[23,1,1,1,2,[[791,1,1,1,2]]],[32,1,1,2,3,[[898,1,1,2,3]]]],[8559,20080,22657]]],["appointment",[1,1,[[17,1,1,0,1,[[437,1,1,0,1]]]],[12902]]],["assembled",[3,3,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[371,1,1,1,2]]],[18,1,1,2,3,[[525,1,1,2,3]]]],[8990,11274,14638]]],["betrothed",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2086]]],["meet",[7,7,[[1,5,5,0,5,[[74,1,1,0,1],[78,2,2,1,3],[79,2,2,3,5]]],[3,1,1,5,6,[[133,1,1,5,6]]],[15,1,1,6,7,[[418,1,1,6,7]]]],[2217,2378,2379,2388,2418,4248,12403]]],["set",[2,2,[[23,1,1,0,1,[[768,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[19525,20960]]],["themselves",[2,2,[[3,2,2,0,2,[[126,2,2,0,2]]]],[3991,3992]]],["time",[2,2,[[17,1,1,0,1,[[444,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]]],[13070,20210]]],["together",[5,5,[[3,3,3,0,3,[[130,1,1,0,1],[132,1,1,1,2],[143,1,1,2,3]]],[5,1,1,3,4,[[197,1,1,3,4]]],[15,1,1,4,5,[[418,1,1,4,5]]]],[4143,4205,4557,6112,12411]]]]},{"k":"H3260","v":[["Iddo",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11393]]]]},{"k":"H3261","v":[["away",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18181]]]]},{"k":"H3262","v":[["Jeuel",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10621]]]]},{"k":"H3263","v":[["Jeuz",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10585]]]]},{"k":"H3264","v":[]},{"k":"H3265","v":[["Jair",[1,1,[[12,1,1,0,1,[[357,1,1,0,1]]]],[10931]]]]},{"k":"H3266","v":[["*",[9,9,[[0,3,3,0,3,[[35,3,3,0,3]]],[12,5,5,3,8,[[338,1,1,3,4],[344,1,1,4,5],[345,1,1,5,6],[360,2,2,6,8]]],[13,1,1,8,9,[[377,1,1,8,9]]]],[1045,1054,1058,10287,10545,10614,10993,10994,11433]]],["Jehush",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10614]]],["Jeush",[8,8,[[0,3,3,0,3,[[35,3,3,0,3]]],[12,4,4,3,7,[[338,1,1,3,4],[344,1,1,4,5],[360,2,2,5,7]]],[13,1,1,7,8,[[377,1,1,7,8]]]],[1045,1054,1058,10287,10545,10993,10994,11433]]]]},{"k":"H3267","v":[["fierce",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18298]]]]},{"k":"H3268","v":[["Jaaziel",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10809]]]]},{"k":"H3269","v":[["Jaaziah",[2,2,[[12,2,2,0,2,[[361,2,2,0,2]]]],[11041,11042]]]]},{"k":"H3270","v":[["*",[13,12,[[3,4,4,0,4,[[137,1,1,0,1],[148,3,3,1,4]]],[5,2,2,4,6,[[199,1,1,4,5],[207,1,1,5,6]]],[9,1,1,6,7,[[290,1,1,6,7]]],[12,2,2,7,9,[[343,1,1,7,8],[363,1,1,8,9]]],[22,2,2,9,11,[[694,2,2,9,11]]],[23,2,1,11,12,[[792,2,1,11,12]]]],[4372,4719,4721,4753,6179,6420,8697,10535,11108,17977,17978,20112]]],["Jaazer",[2,2,[[3,2,2,0,2,[[137,1,1,0,1],[148,1,1,1,2]]]],[4372,4753]]],["Jazer",[11,10,[[3,2,2,0,2,[[148,2,2,0,2]]],[5,2,2,2,4,[[199,1,1,2,3],[207,1,1,3,4]]],[9,1,1,4,5,[[290,1,1,4,5]]],[12,2,2,5,7,[[343,1,1,5,6],[363,1,1,6,7]]],[22,2,2,7,9,[[694,2,2,7,9]]],[23,2,1,9,10,[[792,2,1,9,10]]]],[4719,4721,6179,6420,8697,10535,11108,17977,17978,20112]]]]},{"k":"H3271","v":[["covered",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18853]]]]},{"k":"H3272","v":[["*",[3,3,[[14,2,2,0,2,[[409,2,2,0,2]]],[26,1,1,2,3,[[855,1,1,2,3]]]],[12187,12188,21912]]],["counsellors",[2,2,[[14,2,2,0,2,[[409,2,2,0,2]]]],[12187,12188]]],["together",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21912]]]]},{"k":"H3273","v":[["*",[13,12,[[12,7,6,0,6,[[342,1,1,0,1],[346,1,1,1,2],[348,1,1,2,3],[352,2,2,3,5],[353,2,1,5,6]]],[13,4,4,6,10,[[386,1,1,6,7],[392,1,1,7,8],[395,1,1,8,9],[401,1,1,9,10]]],[14,2,2,10,12,[[410,1,1,10,11],[412,1,1,11,12]]]],[10435,10650,10717,10809,10812,10825,11601,11743,11804,11975,12214,12295]]],["Jehiel",[2,2,[[12,2,2,0,2,[[346,1,1,0,1],[348,1,1,1,2]]]],[10650,10717]]],["Jeiel",[11,10,[[12,5,4,0,4,[[342,1,1,0,1],[352,2,2,1,3],[353,2,1,3,4]]],[13,4,4,4,8,[[386,1,1,4,5],[392,1,1,5,6],[395,1,1,6,7],[401,1,1,7,8]]],[14,2,2,8,10,[[410,1,1,8,9],[412,1,1,9,10]]]],[10435,10809,10812,10825,11601,11743,11804,11975,12214,12295]]]]},{"k":"H3274","v":[]},{"k":"H3275","v":[["Jachan",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10441]]]]},{"k":"H3276","v":[["*",[23,21,[[8,1,1,0,1,[[247,1,1,0,1]]],[17,4,4,1,5,[[450,1,1,1,2],[456,1,1,2,3],[465,1,1,3,4],[470,1,1,4,5]]],[19,2,2,5,7,[[637,1,1,5,6],[638,1,1,6,7]]],[22,8,7,7,14,[[708,3,2,7,9],[722,2,2,9,11],[725,1,1,11,12],[726,1,1,12,13],[735,1,1,13,14]]],[23,7,6,14,20,[[746,2,2,14,16],[751,1,1,16,17],[756,1,1,17,18],[760,1,1,18,19],[767,2,1,19,20]]],[34,1,1,20,21,[[904,1,1,20,21]]]],[7481,13206,13370,13570,13723,16658,16692,18222,18223,18542,18543,18611,18631,18777,18973,18976,19127,19262,19355,19516,22766]]],["+",[2,1,[[23,2,1,0,1,[[767,2,1,0,1]]]],[19516]]],["forward",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13570]]],["good",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13206]]],["profit",[17,16,[[8,1,1,0,1,[[247,1,1,0,1]]],[17,2,2,1,3,[[456,1,1,1,2],[470,1,1,2,3]]],[19,2,2,3,5,[[637,1,1,3,4],[638,1,1,4,5]]],[22,7,6,5,11,[[708,3,2,5,7],[722,1,1,7,8],[725,1,1,8,9],[726,1,1,9,10],[735,1,1,10,11]]],[23,5,5,11,16,[[746,2,2,11,13],[751,1,1,13,14],[756,1,1,14,15],[760,1,1,15,16]]]],[7481,13370,13723,16658,16692,18222,18223,18542,18611,18631,18777,18973,18976,19127,19262,19355]]],["profitable",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18543]]],["profiteth",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22766]]]]},{"k":"H3277","v":[["goats",[3,3,[[8,1,1,0,1,[[259,1,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]]],[7841,13835,15589]]]]},{"k":"H3278","v":[["Jael",[6,6,[[6,6,6,0,6,[[214,4,4,0,4],[215,2,2,4,6]]]],[6616,6617,6620,6621,6629,6647]]]]},{"k":"H3279","v":[["*",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12083,12478]]],["Jaala",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12478]]],["Jaalah",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12083]]]]},{"k":"H3280","v":[["roe",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16536]]]]},{"k":"H3281","v":[["Jaalam",[4,4,[[0,3,3,0,3,[[35,3,3,0,3]]],[12,1,1,3,4,[[338,1,1,3,4]]]],[1045,1054,1058,10287]]]]},{"k":"H3282","v":[["*",[96,91,[[0,1,1,0,1,[[21,1,1,0,1]]],[2,2,1,1,2,[[115,2,1,1,2]]],[3,2,2,2,4,[[127,1,1,2,3],[136,1,1,3,4]]],[4,1,1,4,5,[[153,1,1,4,5]]],[5,1,1,5,6,[[200,1,1,5,6]]],[6,1,1,6,7,[[212,1,1,6,7]]],[8,2,2,7,9,[[250,1,1,7,8],[265,1,1,8,9]]],[10,14,14,9,23,[[293,1,1,9,10],[298,1,1,10,11],[301,2,2,11,13],[303,1,1,13,14],[304,3,3,14,17],[306,1,1,17,18],[310,3,3,18,21],[311,2,2,21,23]]],[11,6,6,23,29,[[313,1,1,23,24],[322,1,1,24,25],[331,1,1,25,26],[333,2,2,26,28],[334,1,1,28,29]]],[13,2,2,29,31,[[367,1,1,29,30],[400,1,1,30,31]]],[18,1,1,31,32,[[586,1,1,31,32]]],[19,1,1,32,33,[[628,1,1,32,33]]],[22,9,9,33,42,[[681,1,1,33,34],[685,1,1,34,35],[686,1,1,35,36],[707,1,1,36,37],[708,1,1,37,38],[715,1,1,38,39],[739,1,1,39,40],[743,1,1,40,41],[744,1,1,41,42]]],[23,9,9,42,51,[[749,1,1,42,43],[751,1,1,43,44],[763,1,1,44,45],[767,1,1,45,46],[769,1,1,46,47],[773,2,2,47,49],[779,1,1,49,50],[792,1,1,50,51]]],[25,40,37,51,88,[[806,3,3,51,54],[813,1,1,54,55],[814,4,3,55,58],[816,1,1,58,59],[817,2,2,59,61],[821,2,2,61,63],[822,3,2,63,65],[823,1,1,65,66],[824,1,1,66,67],[825,1,1,67,68],[826,5,5,68,73],[827,1,1,73,74],[829,2,2,74,76],[830,2,2,76,78],[832,1,1,78,79],[835,2,2,79,81],[836,2,2,81,83],[837,5,4,83,87],[845,1,1,87,88]]],[27,1,1,88,89,[[869,1,1,88,89]]],[29,1,1,89,90,[[883,1,1,89,90]]],[36,2,1,90,91,[[909,2,1,90,91]]]],[563,3567,4044,4323,4928,6201,6565,7583,8000,8827,9003,9119,9141,9205,9225,9231,9233,9285,9436,9444,9450,9471,9480,9549,9823,10089,10130,10134,10164,11205,11960,15771,16424,17723,17787,17813,18206,18229,18381,18844,18909,18926,19072,19132,19411,19522,19542,19658,19660,19840,20087,20553,20555,20557,20692,20716,20718,20730,20762,20798,20805,20911,20919,20948,20968,20995,21042,21069,21086,21089,21091,21095,21098,21102,21159,21163,21189,21192,21240,21321,21334,21349,21354,21361,21362,21365,21372,21611,22195,22434,22849]]],["+",[33,32,[[0,1,1,0,1,[[21,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[8,1,1,2,3,[[265,1,1,2,3]]],[10,9,9,3,12,[[293,1,1,3,4],[298,1,1,4,5],[303,1,1,5,6],[304,2,2,6,8],[306,1,1,8,9],[310,2,2,9,11],[311,1,1,11,12]]],[11,4,4,12,16,[[313,1,1,12,13],[322,1,1,13,14],[333,2,2,14,16]]],[13,1,1,16,17,[[367,1,1,16,17]]],[22,4,4,17,21,[[681,1,1,17,18],[685,1,1,18,19],[686,1,1,19,20],[707,1,1,20,21]]],[23,4,4,21,25,[[763,1,1,21,22],[769,1,1,22,23],[773,2,2,23,25]]],[25,7,6,25,31,[[813,1,1,25,26],[817,1,1,26,27],[827,1,1,27,28],[832,1,1,28,29],[837,2,1,29,30],[845,1,1,30,31]]],[36,1,1,31,32,[[909,1,1,31,32]]]],[563,4928,8000,8827,9003,9205,9225,9233,9285,9436,9444,9480,9549,9823,10130,10134,11205,17723,17787,17813,18206,19411,19542,19658,19660,20692,20805,21102,21240,21362,21611,22849]]],["Because",[35,35,[[3,1,1,0,1,[[136,1,1,0,1]]],[6,1,1,1,2,[[212,1,1,1,2]]],[8,1,1,2,3,[[250,1,1,2,3]]],[10,2,2,3,5,[[301,1,1,3,4],[310,1,1,4,5]]],[11,2,2,5,7,[[331,1,1,5,6],[334,1,1,6,7]]],[13,1,1,7,8,[[400,1,1,7,8]]],[18,1,1,8,9,[[586,1,1,8,9]]],[19,1,1,9,10,[[628,1,1,9,10]]],[22,2,2,10,12,[[708,1,1,10,11],[715,1,1,11,12]]],[23,2,2,12,14,[[749,1,1,12,13],[767,1,1,13,14]]],[25,20,20,14,34,[[806,1,1,14,15],[814,3,3,15,18],[817,1,1,18,19],[821,2,2,19,21],[822,1,1,21,22],[823,1,1,22,23],[824,1,1,23,24],[826,3,3,24,27],[829,2,2,27,29],[835,1,1,29,30],[836,2,2,30,32],[837,2,2,32,34]]],[36,1,1,34,35,[[909,1,1,34,35]]]],[4323,6565,7583,9141,9450,10089,10164,11960,15771,16424,18229,18381,19072,19522,20553,20716,20718,20730,20798,20911,20919,20968,20995,21042,21086,21089,21098,21159,21163,21334,21349,21354,21361,21372,22849]]],["Forasmuch",[2,2,[[10,1,1,0,1,[[301,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[9119,22434]]],["because",[22,21,[[2,2,1,0,1,[[115,2,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[5,1,1,2,3,[[200,1,1,2,3]]],[10,2,2,3,5,[[304,1,1,3,4],[311,1,1,4,5]]],[22,3,3,5,8,[[739,1,1,5,6],[743,1,1,6,7],[744,1,1,7,8]]],[23,3,3,8,11,[[751,1,1,8,9],[779,1,1,9,10],[792,1,1,10,11]]],[25,9,9,11,20,[[806,1,1,11,12],[814,1,1,12,13],[816,1,1,13,14],[822,1,1,14,15],[825,1,1,15,16],[830,2,2,16,18],[835,1,1,18,19],[837,1,1,19,20]]],[27,1,1,20,21,[[869,1,1,20,21]]]],[3567,4044,6201,9231,9471,18844,18909,18926,19132,19840,20087,20557,20718,20762,20968,21069,21189,21192,21321,21365,22195]]],["of",[1,1,[[25,1,1,0,1,[[806,1,1,0,1]]]],[20555]]],["that",[2,2,[[25,2,2,0,2,[[826,2,2,0,2]]]],[21091,21095]]],["then",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20948]]]]},{"k":"H3283","v":[["*",[3,3,[[23,2,2,0,2,[[773,1,1,0,1],[779,1,1,1,2]]],[24,1,1,2,3,[[800,1,1,2,3]]]],[19666,19841,20423]]],["+",[2,2,[[23,2,2,0,2,[[773,1,1,0,1],[779,1,1,1,2]]]],[19666,19841]]],["ostriches",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20423]]]]},{"k":"H3284","v":[["+",[8,8,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[17,1,1,2,3,[[465,1,1,2,3]]],[22,3,3,3,6,[[691,1,1,3,4],[712,1,1,4,5],[721,1,1,5,6]]],[23,1,1,6,7,[[794,1,1,6,7]]],[32,1,1,7,8,[[893,1,1,7,8]]]],[3013,5305,13586,17927,18316,18525,20205,22587]]]]},{"k":"H3285","v":[["Jaanai",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10440]]]]},{"k":"H3286","v":[["*",[9,9,[[22,4,4,0,4,[[718,3,3,0,3],[722,1,1,3,4]]],[23,3,3,4,7,[[746,1,1,4,5],[795,2,2,5,7]]],[26,1,1,7,8,[[858,1,1,7,8]]],[34,1,1,8,9,[[904,1,1,8,9]]]],[18448,18450,18451,18545,18989,20270,20276,22009,22761]]],["faint",[3,3,[[22,3,3,0,3,[[718,2,2,0,2],[722,1,1,2,3]]]],[18450,18451,18545]]],["fainteth",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18448]]],["fly",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22009]]],["weary",[4,4,[[23,3,3,0,3,[[746,1,1,0,1],[795,2,2,1,3]]],[34,1,1,3,4,[[904,1,1,3,4]]]],[18989,20270,20276,22761]]]]},{"k":"H3287","v":[["*",[4,4,[[6,1,1,0,1,[[218,1,1,0,1]]],[9,1,1,1,2,[[282,1,1,1,2]]],[22,2,2,2,4,[[718,1,1,2,3],[728,1,1,3,4]]]],[6734,8428,18449,18666]]],["faint",[2,2,[[9,1,1,0,1,[[282,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[8428,18449]]],["weary",[2,2,[[6,1,1,0,1,[[218,1,1,0,1]]],[22,1,1,1,2,[[728,1,1,1,2]]]],[6734,18666]]]]},{"k":"H3288","v":[["swiftly",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22009]]]]},{"k":"H3289","v":[["*",[80,74,[[1,1,1,0,1,[[67,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[9,7,6,2,8,[[281,1,1,2,3],[282,1,1,3,4],[283,5,4,4,8]]],[10,8,6,8,14,[[291,1,1,8,9],[302,7,5,9,14]]],[11,1,1,14,15,[[318,1,1,14,15]]],[12,4,4,15,19,[[350,1,1,15,16],[363,1,1,16,17],[364,2,2,17,19]]],[13,14,11,19,30,[[376,5,3,19,22],[386,1,1,22,23],[388,2,2,23,25],[391,3,2,25,27],[396,2,2,27,29],[398,1,1,29,30]]],[14,3,3,30,33,[[406,1,1,30,31],[409,1,1,31,32],[410,1,1,32,33]]],[15,1,1,33,34,[[418,1,1,33,34]]],[17,3,3,34,37,[[438,1,1,34,35],[447,1,1,35,36],[461,1,1,36,37]]],[18,6,6,37,43,[[493,1,1,37,38],[509,1,1,38,39],[539,1,1,39,40],[548,1,1,40,41],[560,2,2,41,43]]],[19,5,5,43,48,[[638,1,1,43,44],[639,1,1,44,45],[640,1,1,45,46],[642,1,1,46,47],[651,1,1,47,48]]],[22,17,17,48,65,[[679,1,1,48,49],[681,1,1,49,50],[685,1,1,50,51],[687,1,1,51,52],[692,3,3,52,55],[697,3,3,55,58],[701,2,2,58,60],[710,2,2,60,62],[718,1,1,62,63],[719,1,1,63,64],[723,1,1,64,65]]],[23,4,4,65,69,[[782,1,1,65,66],[793,2,2,66,68],[794,1,1,68,69]]],[25,1,1,69,70,[[812,1,1,69,70]]],[32,2,2,70,72,[[896,1,1,70,71],[898,1,1,71,72]]],[33,1,1,72,73,[[900,1,1,72,73]]],[34,1,1,73,74,[[904,1,1,73,74]]]],[2018,4460,8401,8449,8456,8460,8464,8470,8729,9157,9159,9160,9164,9179,9682,10761,11091,11141,11142,11401,11403,11404,11608,11647,11648,11720,11721,11829,11850,11878,12115,12201,12226,12408,12918,13145,13470,14099,14363,14831,14986,15244,15246,16702,16739,16757,16829,17085,17680,17710,17787,17835,17952,17954,17955,18015,18016,18021,18085,18086,18266,18267,18434,18479,18582,19910,20147,20157,20211,20657,22629,22653,22695,22758]]],["+",[3,3,[[9,1,1,0,1,[[283,1,1,0,1]]],[18,1,1,1,2,[[509,1,1,1,2]]],[22,1,1,2,3,[[701,1,1,2,3]]]],[8464,14363,18085]]],["Counsellor",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17835]]],["advertise",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4460]]],["advice",[1,1,[[13,1,1,0,1,[[391,1,1,0,1]]]],[11721]]],["advise",[1,1,[[10,1,1,0,1,[[302,1,1,0,1]]]],[9157]]],["advised",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16757]]],["consult",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14831]]],["consulted",[7,7,[[10,2,2,0,2,[[302,2,2,0,2]]],[12,1,1,2,3,[[350,1,1,2,3]]],[13,1,1,3,4,[[386,1,1,3,4]]],[18,1,1,4,5,[[560,1,1,4,5]]],[32,1,1,5,6,[[898,1,1,5,6]]],[34,1,1,6,7,[[904,1,1,6,7]]]],[9157,9159,10761,11608,15244,22653,22758]]],["counsel",[18,18,[[1,1,1,0,1,[[67,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[10,2,2,2,4,[[302,2,2,2,4]]],[11,1,1,4,5,[[318,1,1,4,5]]],[13,6,6,5,11,[[376,2,2,5,7],[391,1,1,7,8],[396,2,2,8,10],[398,1,1,10,11]]],[15,1,1,11,12,[[418,1,1,11,12]]],[18,2,2,12,14,[[493,1,1,12,13],[548,1,1,13,14]]],[22,3,3,14,17,[[685,1,1,14,15],[718,1,1,15,16],[723,1,1,16,17]]],[23,1,1,17,18,[[782,1,1,17,18]]]],[2018,8460,9160,9179,9682,11401,11403,11720,11829,11850,11878,12408,14099,14986,17787,18434,18582,19910]]],["counselled",[4,4,[[9,3,3,0,3,[[282,1,1,0,1],[283,2,2,1,3]]],[17,1,1,3,4,[[461,1,1,3,4]]]],[8449,8464,8470,13470]]],["counsellor",[9,9,[[9,1,1,0,1,[[281,1,1,0,1]]],[12,3,3,1,4,[[363,1,1,1,2],[364,2,2,2,4]]],[13,1,1,4,5,[[388,1,1,4,5]]],[22,2,2,5,7,[[681,1,1,5,6],[719,1,1,6,7]]],[32,1,1,7,8,[[896,1,1,7,8]]],[33,1,1,8,9,[[900,1,1,8,9]]]],[8401,11091,11141,11142,11647,17710,18479,22629,22695]]],["counsellors",[12,12,[[13,1,1,0,1,[[388,1,1,0,1]]],[14,3,3,1,4,[[406,1,1,1,2],[409,1,1,2,3],[410,1,1,3,4]]],[17,2,2,4,6,[[438,1,1,4,5],[447,1,1,5,6]]],[19,4,4,6,10,[[638,1,1,6,7],[639,1,1,7,8],[642,1,1,8,9],[651,1,1,9,10]]],[22,2,2,10,12,[[679,1,1,10,11],[697,1,1,11,12]]]],[11648,12115,12201,12226,12918,13145,16702,16739,16829,17085,17680,18015]]],["determined",[2,2,[[13,1,1,0,1,[[391,1,1,0,1]]],[22,1,1,1,2,[[697,1,1,1,2]]]],[11720,18021]]],["deviseth",[2,2,[[22,2,2,0,2,[[710,2,2,0,2]]]],[18266,18267]]],["gave",[2,2,[[10,1,1,0,1,[[302,1,1,0,1]]],[13,1,1,1,2,[[376,1,1,1,2]]]],[9164,11403]]],["give",[4,4,[[10,1,1,0,1,[[291,1,1,0,1]]],[13,2,2,1,3,[[376,2,2,1,3]]],[25,1,1,3,4,[[812,1,1,3,4]]]],[8729,11401,11404,20657]]],["given",[2,2,[[9,1,1,0,1,[[283,1,1,0,1]]],[10,1,1,1,2,[[302,1,1,1,2]]]],[8456,9159]]],["purposed",[5,5,[[22,5,5,0,5,[[692,3,3,0,3],[697,1,1,3,4],[701,1,1,4,5]]]],[17952,17954,17955,18016,18086]]],["taken",[3,3,[[23,3,3,0,3,[[793,2,2,0,2],[794,1,1,2,3]]]],[20147,20157,20211]]],["together",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15246]]]]},{"k":"H3290","v":[["*",[349,319,[[0,180,159,0,159,[[24,9,8,0,8],[26,15,12,8,20],[27,9,8,20,28],[28,12,11,28,39],[29,20,18,39,57],[30,25,23,57,80],[31,16,16,80,96],[32,4,4,96,100],[33,12,10,100,110],[34,17,15,110,125],[35,1,1,125,126],[36,3,3,126,129],[41,5,4,129,133],[44,2,2,133,135],[45,15,11,135,146],[46,7,5,146,151],[47,2,2,151,153],[48,5,5,153,158],[49,1,1,158,159]]],[1,11,11,159,170,[[50,2,2,159,161],[51,1,1,161,162],[52,3,3,162,165],[53,1,1,165,166],[55,2,2,166,168],[68,1,1,168,169],[82,1,1,169,170]]],[2,1,1,170,171,[[115,1,1,170,171]]],[3,9,8,171,179,[[139,5,4,171,175],[140,3,3,175,178],[148,1,1,178,179]]],[4,11,11,179,190,[[153,1,1,179,180],[158,1,1,180,181],[161,2,2,181,183],[181,1,1,183,184],[182,1,1,184,185],[184,1,1,185,186],[185,3,3,186,189],[186,1,1,189,190]]],[5,3,2,190,192,[[210,3,2,190,192]]],[8,1,1,192,193,[[247,1,1,192,193]]],[9,1,1,193,194,[[289,1,1,193,194]]],[10,1,1,194,195,[[308,1,1,194,195]]],[11,2,2,195,197,[[325,1,1,195,196],[329,1,1,196,197]]],[12,2,2,197,199,[[353,2,2,197,199]]],[18,34,34,199,233,[[491,1,1,199,200],[497,1,1,200,201],[499,1,1,201,202],[501,1,1,202,203],[521,1,1,203,204],[523,2,2,204,206],[524,1,1,206,207],[530,1,1,207,208],[536,1,1,208,209],[552,1,1,209,210],[553,1,1,210,211],[554,1,1,211,212],[555,3,3,212,215],[556,1,1,215,216],[558,2,2,216,218],[561,1,1,218,219],[562,1,1,219,220],[564,1,1,220,221],[571,1,1,221,222],[576,1,1,222,223],[582,3,3,223,226],[591,2,2,226,228],[609,2,2,228,230],[612,1,1,230,231],[623,1,1,231,232],[624,1,1,232,233]]],[22,42,40,233,273,[[680,3,3,233,236],[686,1,1,236,237],[687,1,1,237,238],[688,2,2,238,240],[692,2,1,240,241],[695,1,1,241,242],[705,2,2,242,244],[707,3,2,244,246],[718,1,1,246,247],[719,3,3,247,250],[720,1,1,250,251],[721,3,3,251,254],[722,5,5,254,259],[723,2,2,259,261],[724,1,1,261,262],[726,3,3,262,265],[727,3,3,265,268],[736,2,2,268,270],[737,1,1,270,271],[738,1,1,271,272],[743,1,1,272,273]]],[23,16,13,273,286,[[746,1,1,273,274],[749,1,1,274,275],[754,2,2,275,277],[774,4,3,277,280],[775,2,2,280,282],[777,2,1,282,283],[790,3,2,283,285],[795,1,1,285,286]]],[24,3,3,286,289,[[797,1,1,286,287],[798,2,2,287,289]]],[25,4,4,289,293,[[821,1,1,289,290],[829,1,1,290,291],[838,1,1,291,292],[840,1,1,292,293]]],[27,3,3,293,296,[[871,1,1,293,294],[873,2,2,294,296]]],[29,6,6,296,302,[[881,1,1,296,297],[884,1,1,297,298],[885,2,2,298,300],[886,1,1,300,301],[887,1,1,301,302]]],[30,3,3,302,305,[[888,3,3,302,305]]],[32,11,10,305,315,[[893,2,1,305,306],[894,2,2,306,308],[895,3,3,308,311],[896,1,1,311,312],[897,2,2,312,314],[899,1,1,314,315]]],[33,1,1,315,316,[[901,1,1,315,316]]],[38,4,3,316,319,[[925,2,1,316,317],[926,1,1,317,318],[927,1,1,318,319]]]],[684,685,686,687,688,689,691,692,733,738,742,744,746,748,749,757,763,768,769,773,774,778,779,780,783,789,791,793,796,799,805,806,807,808,810,813,815,816,823,831,832,834,835,837,839,840,842,846,847,849,855,861,866,867,870,871,872,874,875,876,877,884,890,893,895,897,898,899,902,904,905,906,909,916,918,919,920,924,926,927,929,930,931,932,934,935,937,946,948,952,953,955,956,957,958,960,961,970,977,978,981,983,985,986,987,993,999,1005,1007,1010,1012,1013,1015,1016,1017,1020,1021,1025,1026,1031,1033,1034,1037,1038,1040,1046,1084,1085,1117,1253,1256,1281,1288,1383,1385,1388,1391,1392,1394,1401,1404,1405,1408,1411,1412,1413,1427,1428,1429,1430,1448,1453,1454,1474,1475,1480,1497,1506,1530,1533,1537,1578,1585,1594,1595,1606,1658,1663,2029,2474,3566,4423,4426,4437,4439,4451,4463,4465,4729,4900,5096,5162,5184,5692,5728,5767,5814,5820,5838,5843,6480,6508,7468,8654,9372,9894,10017,10833,10837,14087,14183,14227,14247,14575,14621,14625,14629,14725,14803,15080,15087,15108,15118,15134,15184,15192,15218,15221,15267,15272,15303,15438,15503,15612,15616,15629,15823,15829,16153,16156,16179,16346,16370,17688,17690,17691,17824,17837,17870,17871,17929,17987,18157,18160,18215,18216,18447,18459,18465,18472,18504,18506,18527,18533,18534,18535,18538,18554,18556,18565,18580,18589,18615,18626,18634,18641,18642,18662,18787,18800,18820,18837,18906,18969,19078,19217,19226,19674,19677,19685,19698,19702,19801,20072,20073,20231,20327,20334,20335,20900,21182,21422,21473,22236,22254,22264,22408,22458,22466,22469,22488,22503,22520,22527,22528,22584,22602,22607,22609,22616,22617,22622,22640,22641,22684,22701,23091,23115,23126]]],["+",[6,6,[[0,2,2,0,2,[[29,1,1,0,1],[34,1,1,1,2]]],[3,2,2,2,4,[[140,2,2,2,4]]],[22,2,2,4,6,[[727,1,1,4,5],[743,1,1,5,6]]]],[831,1015,4463,4465,18641,18906]]],["Jacob",[326,304,[[0,164,150,0,150,[[24,9,8,0,8],[26,14,12,8,20],[27,8,8,20,28],[28,12,11,28,39],[29,17,16,39,55],[30,24,22,55,77],[31,13,13,77,90],[32,4,4,90,94],[33,10,9,94,103],[34,15,14,103,117],[35,1,1,117,118],[36,3,3,118,121],[41,5,4,121,125],[44,2,2,125,127],[45,12,10,127,137],[46,7,5,137,142],[47,2,2,142,144],[48,5,5,144,149],[49,1,1,149,150]]],[1,11,11,150,161,[[50,2,2,150,152],[51,1,1,152,153],[52,3,3,153,156],[53,1,1,156,157],[55,2,2,157,159],[68,1,1,159,160],[82,1,1,160,161]]],[2,1,1,161,162,[[115,1,1,161,162]]],[3,7,6,162,168,[[139,5,4,162,166],[140,1,1,166,167],[148,1,1,167,168]]],[4,11,11,168,179,[[153,1,1,168,169],[158,1,1,169,170],[161,2,2,170,172],[181,1,1,172,173],[182,1,1,173,174],[184,1,1,174,175],[185,3,3,175,178],[186,1,1,178,179]]],[5,3,2,179,181,[[210,3,2,179,181]]],[8,1,1,181,182,[[247,1,1,181,182]]],[9,1,1,182,183,[[289,1,1,182,183]]],[10,1,1,183,184,[[308,1,1,183,184]]],[11,2,2,184,186,[[325,1,1,184,185],[329,1,1,185,186]]],[12,2,2,186,188,[[353,2,2,186,188]]],[18,34,34,188,222,[[491,1,1,188,189],[497,1,1,189,190],[499,1,1,190,191],[501,1,1,191,192],[521,1,1,192,193],[523,2,2,193,195],[524,1,1,195,196],[530,1,1,196,197],[536,1,1,197,198],[552,1,1,198,199],[553,1,1,199,200],[554,1,1,200,201],[555,3,3,201,204],[556,1,1,204,205],[558,2,2,205,207],[561,1,1,207,208],[562,1,1,208,209],[564,1,1,209,210],[571,1,1,210,211],[576,1,1,211,212],[582,3,3,212,215],[591,2,2,215,217],[609,2,2,217,219],[612,1,1,219,220],[623,1,1,220,221],[624,1,1,221,222]]],[22,40,38,222,260,[[680,3,3,222,225],[686,1,1,225,226],[687,1,1,226,227],[688,2,2,227,229],[692,2,1,229,230],[695,1,1,230,231],[705,2,2,231,233],[707,3,2,233,235],[718,1,1,235,236],[719,3,3,236,239],[720,1,1,239,240],[721,3,3,240,243],[722,5,5,243,248],[723,2,2,248,250],[724,1,1,250,251],[726,3,3,251,254],[727,2,2,254,256],[736,2,2,256,258],[737,1,1,258,259],[738,1,1,259,260]]],[23,14,11,260,271,[[746,1,1,260,261],[749,1,1,261,262],[754,2,2,262,264],[774,2,1,264,265],[775,2,2,265,267],[777,2,1,267,268],[790,3,2,268,270],[795,1,1,270,271]]],[24,3,3,271,274,[[797,1,1,271,272],[798,2,2,272,274]]],[25,4,4,274,278,[[821,1,1,274,275],[829,1,1,275,276],[838,1,1,276,277],[840,1,1,277,278]]],[27,3,3,278,281,[[871,1,1,278,279],[873,2,2,279,281]]],[29,6,6,281,287,[[881,1,1,281,282],[884,1,1,282,283],[885,2,2,283,285],[886,1,1,285,286],[887,1,1,286,287]]],[30,3,3,287,290,[[888,3,3,287,290]]],[32,11,10,290,300,[[893,2,1,290,291],[894,2,2,291,293],[895,3,3,293,296],[896,1,1,296,297],[897,2,2,297,299],[899,1,1,299,300]]],[33,1,1,300,301,[[901,1,1,300,301]]],[38,3,3,301,304,[[925,1,1,301,302],[926,1,1,302,303],[927,1,1,303,304]]]],[684,685,686,687,688,689,691,692,733,738,742,744,746,748,749,757,763,768,769,773,774,778,779,780,783,789,791,793,796,799,805,806,807,808,810,813,815,816,823,831,834,835,837,839,840,842,846,847,849,855,861,866,867,870,871,874,875,876,877,884,890,893,895,897,898,899,902,904,905,909,916,918,919,920,924,926,927,929,930,931,932,934,935,937,948,952,955,956,957,958,961,970,977,978,981,983,985,986,987,993,1005,1007,1010,1012,1013,1015,1016,1017,1020,1021,1025,1026,1031,1033,1037,1038,1040,1046,1084,1085,1117,1253,1256,1281,1288,1383,1385,1388,1391,1392,1394,1401,1404,1408,1411,1412,1413,1427,1428,1429,1430,1448,1453,1454,1474,1475,1480,1497,1506,1530,1533,1537,1578,1585,1594,1595,1606,1658,1663,2029,2474,3566,4423,4426,4437,4439,4451,4729,4900,5096,5162,5184,5692,5728,5767,5814,5820,5838,5843,6480,6508,7468,8654,9372,9894,10017,10833,10837,14087,14183,14227,14247,14575,14621,14625,14629,14725,14803,15080,15087,15108,15118,15134,15184,15192,15218,15221,15267,15272,15303,15438,15503,15612,15616,15629,15823,15829,16153,16156,16179,16346,16370,17688,17690,17691,17824,17837,17870,17871,17929,17987,18157,18160,18215,18216,18447,18459,18465,18472,18504,18506,18527,18533,18534,18535,18538,18554,18556,18565,18580,18589,18615,18626,18634,18642,18662,18787,18800,18820,18837,18969,19078,19217,19226,19677,19698,19702,19801,20072,20073,20231,20327,20334,20335,20900,21182,21422,21473,22236,22254,22264,22408,22458,22466,22469,22488,22503,22520,22527,22528,22584,22602,22607,22609,22616,22617,22622,22640,22641,22684,22701,23091,23115,23126]]],["Jacob's",[17,17,[[0,14,14,0,14,[[26,1,1,0,1],[27,1,1,1,2],[29,2,2,2,4],[30,1,1,4,5],[31,3,3,5,8],[33,2,2,8,10],[34,1,1,10,11],[45,3,3,11,14]]],[23,2,2,14,16,[[774,2,2,14,16]]],[38,1,1,16,17,[[925,1,1,16,17]]]],[749,778,832,872,906,946,953,960,987,999,1034,1394,1405,1412,19674,19685,23091]]]]},{"k":"H3291","v":[["Jaakobah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10421]]]]},{"k":"H3292","v":[["*",[2,2,[[4,1,1,0,1,[[162,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[5192,10294]]],["Jaakan",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5192]]],["Jakan",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10294]]]]},{"k":"H3293","v":[["*",[58,58,[[4,1,1,0,1,[[171,1,1,0,1]]],[5,2,2,1,3,[[203,2,2,1,3]]],[8,3,3,3,6,[[249,2,2,3,5],[257,1,1,5,6]]],[9,3,3,6,9,[[284,3,3,6,9]]],[10,3,3,9,12,[[297,1,1,9,10],[300,2,2,10,12]]],[11,2,2,12,14,[[314,1,1,12,13],[331,1,1,13,14]]],[12,1,1,14,15,[[353,1,1,14,15]]],[13,2,2,15,17,[[375,2,2,15,17]]],[18,6,6,17,23,[[527,1,1,17,18],[557,1,1,18,19],[560,1,1,19,20],[573,1,1,20,21],[581,1,1,21,22],[609,1,1,22,23]]],[20,1,1,23,24,[[660,1,1,23,24]]],[21,2,2,24,26,[[672,1,1,24,25],[675,1,1,25,26]]],[22,14,14,26,40,[[685,1,1,26,27],[687,1,1,27,28],[688,3,3,28,31],[699,1,1,31,32],[700,1,1,32,33],[707,1,1,33,34],[710,2,2,34,36],[715,1,1,36,37],[722,2,2,37,39],[734,1,1,39,40]]],[23,6,6,40,46,[[749,1,1,40,41],[754,1,1,41,42],[756,1,1,42,43],[765,1,1,43,44],[770,1,1,44,45],[790,1,1,45,46]]],[25,6,6,46,52,[[816,2,2,46,48],[821,2,2,48,50],[835,1,1,50,51],[840,1,1,51,52]]],[27,1,1,52,53,[[863,1,1,52,53]]],[29,1,1,53,54,[[881,1,1,53,54]]],[32,3,3,54,57,[[895,1,1,54,55],[897,1,1,55,56],[899,1,1,56,57]]],[37,1,1,57,58,[[921,1,1,57,58]]]],[5411,6290,6293,7533,7534,7792,8484,8486,8495,8936,9096,9100,9575,10084,10853,11380,11384,14678,15211,15255,15477,15591,16157,17339,17557,17599,17784,17847,17868,17869,17884,18048,18060,18210,18274,18278,18376,18547,18556,18762,19064,19204,19257,19454,19590,20068,20756,20760,20941,20942,21338,21458,22117,22399,22620,22641,22678,23030]]],["+",[3,3,[[18,1,1,0,1,[[557,1,1,0,1]]],[23,2,2,1,3,[[749,1,1,1,2],[754,1,1,2,3]]]],[15211,19064,19204]]],["forest",[35,35,[[8,1,1,0,1,[[257,1,1,0,1]]],[10,3,3,1,4,[[297,1,1,1,2],[300,2,2,2,4]]],[11,1,1,4,5,[[331,1,1,4,5]]],[13,2,2,5,7,[[375,2,2,5,7]]],[18,2,2,7,9,[[527,1,1,7,8],[581,1,1,8,9]]],[22,13,13,9,22,[[687,1,1,9,10],[688,3,3,10,13],[699,1,1,13,14],[700,1,1,14,15],[707,1,1,15,16],[710,2,2,16,18],[715,1,1,18,19],[722,2,2,19,21],[734,1,1,21,22]]],[23,4,4,22,26,[[756,1,1,22,23],[765,1,1,23,24],[770,1,1,24,25],[790,1,1,25,26]]],[25,4,4,26,30,[[816,2,2,26,28],[821,2,2,28,30]]],[27,1,1,30,31,[[863,1,1,30,31]]],[29,1,1,31,32,[[881,1,1,31,32]]],[32,2,2,32,34,[[895,1,1,32,33],[897,1,1,33,34]]],[37,1,1,34,35,[[921,1,1,34,35]]]],[7792,8936,9096,9100,10084,11380,11384,14678,15591,17847,17868,17869,17884,18048,18060,18210,18274,18278,18376,18547,18556,18762,19257,19454,19590,20068,20756,20760,20941,20942,22117,22399,22620,22641,23030]]],["forests",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21458]]],["honeycomb",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17599]]],["wood",[17,17,[[4,1,1,0,1,[[171,1,1,0,1]]],[5,2,2,1,3,[[203,2,2,1,3]]],[8,2,2,3,5,[[249,2,2,3,5]]],[9,3,3,5,8,[[284,3,3,5,8]]],[11,1,1,8,9,[[314,1,1,8,9]]],[12,1,1,9,10,[[353,1,1,9,10]]],[18,3,3,10,13,[[560,1,1,10,11],[573,1,1,11,12],[609,1,1,12,13]]],[20,1,1,13,14,[[660,1,1,13,14]]],[21,1,1,14,15,[[672,1,1,14,15]]],[22,1,1,15,16,[[685,1,1,15,16]]],[32,1,1,16,17,[[899,1,1,16,17]]]],[5411,6290,6293,7533,7534,8484,8486,8495,9575,10853,15255,15477,16157,17339,17557,17784,22678]]],["woods",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21338]]]]},{"k":"H3294","v":[["Jarah",[2,1,[[12,2,1,0,1,[[346,2,1,0,1]]]],[10657]]]]},{"k":"H3295","v":[["*",[2,2,[[8,1,1,0,1,[[249,1,1,0,1]]],[18,1,1,1,2,[[506,1,1,1,2]]]],[7535,14317]]],["+",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7535]]],["forests",[1,1,[[18,1,1,0,1,[[506,1,1,0,1]]]],[14317]]]]},{"k":"H3296","v":[["Jaareoregim",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8599]]]]},{"k":"H3297","v":[["Jearim",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6212]]]]},{"k":"H3298","v":[["Jaresiah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10602]]]]},{"k":"H3299","v":[["Jaasau",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12289]]]]},{"k":"H3300","v":[["*",[2,2,[[12,2,2,0,2,[[348,1,1,0,1],[364,1,1,1,2]]]],[10720,11130]]],["Jaasiel",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11130]]],["Jasiel",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10720]]]]},{"k":"H3301","v":[["Iphedeiah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10600]]]]},{"k":"H3302","v":[["*",[8,8,[[18,1,1,0,1,[[522,1,1,0,1]]],[21,3,3,1,4,[[674,1,1,1,2],[677,2,2,2,4]]],[23,2,2,4,6,[[748,1,1,4,5],[754,1,1,5,6]]],[25,2,2,6,8,[[817,1,1,6,7],[832,1,1,7,8]]]],[14599,17592,17628,17633,19057,19205,20775,21237]]],["+",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20775]]],["beautiful",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17628]]],["deck",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19205]]],["fair",[4,4,[[21,2,2,0,2,[[674,1,1,0,1],[677,1,1,1,2]]],[23,1,1,2,3,[[748,1,1,2,3]]],[25,1,1,3,4,[[832,1,1,3,4]]]],[17592,17633,19057,21237]]],["fairer",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14599]]]]},{"k":"H3303","v":[["*",[42,38,[[0,9,7,0,7,[[11,2,2,0,2],[28,2,1,2,3],[38,2,1,3,4],[40,3,3,4,7]]],[4,1,1,7,8,[[173,1,1,7,8]]],[8,3,3,8,11,[[251,1,1,8,9],[252,1,1,9,10],[260,1,1,10,11]]],[9,3,3,11,14,[[279,1,1,11,12],[280,2,2,12,14]]],[10,2,2,14,16,[[291,2,2,14,16]]],[16,1,1,16,17,[[427,1,1,16,17]]],[17,1,1,17,18,[[477,1,1,17,18]]],[18,1,1,18,19,[[525,1,1,18,19]]],[19,1,1,19,20,[[638,1,1,19,20]]],[20,2,2,20,22,[[661,1,1,20,21],[663,1,1,21,22]]],[21,13,11,22,33,[[671,4,3,22,25],[672,2,2,25,27],[674,3,2,27,29],[675,1,1,29,30],[676,3,3,30,33]]],[23,1,1,33,34,[[755,1,1,33,34]]],[25,3,3,34,37,[[832,2,2,34,36],[834,1,1,36,37]]],[29,1,1,37,38,[[886,1,1,37,38]]]],[309,312,812,1155,1197,1199,1213,5458,7607,7660,7864,8318,8381,8383,8720,8721,12731,13937,14636,16710,17370,17415,17545,17552,17553,17564,17567,17583,17589,17607,17615,17618,17624,19242,21233,21239,21312,22494]]],["+",[4,4,[[0,2,2,0,2,[[28,1,1,0,1],[38,1,1,1,2]]],[4,1,1,2,3,[[173,1,1,2,3]]],[16,1,1,3,4,[[427,1,1,3,4]]]],[812,1155,5458,12731]]],["Beautiful",[1,1,[[18,1,1,0,1,[[525,1,1,0,1]]]],[14636]]],["beautiful",[4,4,[[8,2,2,0,2,[[251,1,1,0,1],[260,1,1,1,2]]],[20,1,1,2,3,[[661,1,1,2,3]]],[21,1,1,3,4,[[676,1,1,3,4]]]],[7607,7864,17370,17618]]],["beauty",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8381]]],["comely",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17415]]],["fair",[20,18,[[0,2,2,0,2,[[11,2,2,0,2]]],[8,1,1,2,3,[[252,1,1,2,3]]],[9,2,2,3,5,[[279,1,1,3,4],[280,1,1,4,5]]],[10,2,2,5,7,[[291,2,2,5,7]]],[17,1,1,7,8,[[477,1,1,7,8]]],[19,1,1,8,9,[[638,1,1,8,9]]],[21,7,5,9,14,[[671,3,2,9,11],[674,3,2,11,13],[676,1,1,13,14]]],[23,1,1,14,15,[[755,1,1,14,15]]],[25,2,2,15,17,[[832,2,2,15,17]]],[29,1,1,17,18,[[886,1,1,17,18]]]],[309,312,7660,8318,8383,8720,8721,13937,16710,17552,17553,17583,17589,17624,19242,21233,21239,22494]]],["fairest",[3,3,[[21,3,3,0,3,[[671,1,1,0,1],[675,1,1,1,2],[676,1,1,2,3]]]],[17545,17607,17615]]],["one",[2,2,[[21,2,2,0,2,[[672,2,2,0,2]]]],[17564,17567]]],["pleasant",[1,1,[[25,1,1,0,1,[[834,1,1,0,1]]]],[21312]]],["well",[5,5,[[0,5,5,0,5,[[28,1,1,0,1],[38,1,1,1,2],[40,3,3,2,5]]]],[812,1155,1197,1199,1213]]]]},{"k":"H3304","v":[["fair",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20065]]]]},{"k":"H3305","v":[["*",[4,4,[[5,1,1,0,1,[[205,1,1,0,1]]],[13,1,1,1,2,[[368,1,1,1,2]]],[14,1,1,2,3,[[405,1,1,2,3]]],[31,1,1,3,4,[[889,1,1,3,4]]]],[6367,11227,12104,22534]]],["Japho",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6367]]],["Joppa",[3,3,[[13,1,1,0,1,[[368,1,1,0,1]]],[14,1,1,1,2,[[405,1,1,1,2]]],[31,1,1,2,3,[[889,1,1,2,3]]]],[11227,12104,22534]]]]},{"k":"H3306","v":[["herself",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19058]]]]},{"k":"H3307","v":[["out",[1,1,[[18,1,1,0,1,[[504,1,1,0,1]]]],[14297]]]]},{"k":"H3308","v":[["*",[19,19,[[16,1,1,0,1,[[426,1,1,0,1]]],[18,2,2,1,3,[[522,1,1,1,2],[527,1,1,2,3]]],[19,2,2,3,5,[[633,1,1,3,4],[658,1,1,4,5]]],[22,2,2,5,7,[[681,1,1,5,6],[711,1,1,6,7]]],[24,1,1,7,8,[[798,1,1,7,8]]],[25,10,10,8,18,[[817,3,3,8,11],[828,3,3,11,14],[829,3,3,14,17],[832,1,1,17,18]]],[37,1,1,18,19,[[919,1,1,18,19]]]],[12713,14608,14670,16565,17314,17731,18296,20347,20776,20777,20787,21124,21125,21132,21164,21169,21174,21238,23016]]],["+",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21132]]],["beauty",[18,18,[[16,1,1,0,1,[[426,1,1,0,1]]],[18,2,2,1,3,[[522,1,1,1,2],[527,1,1,2,3]]],[19,2,2,3,5,[[633,1,1,3,4],[658,1,1,4,5]]],[22,2,2,5,7,[[681,1,1,5,6],[711,1,1,6,7]]],[24,1,1,7,8,[[798,1,1,7,8]]],[25,9,9,8,17,[[817,3,3,8,11],[828,2,2,11,13],[829,3,3,13,16],[832,1,1,16,17]]],[37,1,1,17,18,[[919,1,1,17,18]]]],[12713,14608,14670,16565,17314,17731,18296,20347,20776,20777,20787,21124,21125,21164,21169,21174,21238,23016]]]]},{"k":"H3309","v":[["Japhia",[5,5,[[5,2,2,0,2,[[196,1,1,0,1],[205,1,1,1,2]]],[9,1,1,2,3,[[271,1,1,2,3]]],[12,2,2,3,5,[[340,1,1,3,4],[351,1,1,4,5]]]],[6067,6333,8147,10368,10780]]]]},{"k":"H3310","v":[["Japhlet",[3,2,[[12,3,2,0,2,[[344,3,2,0,2]]]],[10567,10568]]]]},{"k":"H3311","v":[["Japhleti",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6268]]]]},{"k":"H3312","v":[["*",[16,16,[[3,7,7,0,7,[[129,1,1,0,1],[130,3,3,1,4],[142,1,1,4,5],[148,1,1,5,6],[150,1,1,6,7]]],[4,1,1,7,8,[[153,1,1,7,8]]],[5,5,5,8,13,[[200,3,3,8,11],[201,1,1,11,12],[207,1,1,12,13]]],[12,3,3,13,16,[[341,1,1,13,14],[343,1,1,14,15],[344,1,1,15,16]]]],[4081,4114,4138,4146,4554,4730,4835,4928,6193,6200,6201,6215,6393,10400,10510,10573]]],["+",[1,1,[[5,1,1,0,1,[[200,1,1,0,1]]]],[6200]]],["Jephunneh",[15,15,[[3,7,7,0,7,[[129,1,1,0,1],[130,3,3,1,4],[142,1,1,4,5],[148,1,1,5,6],[150,1,1,6,7]]],[4,1,1,7,8,[[153,1,1,7,8]]],[5,4,4,8,12,[[200,2,2,8,10],[201,1,1,10,11],[207,1,1,11,12]]],[12,3,3,12,15,[[341,1,1,12,13],[343,1,1,13,14],[344,1,1,14,15]]]],[4081,4114,4138,4146,4554,4730,4835,4928,6193,6201,6215,6393,10400,10510,10573]]]]},{"k":"H3313","v":[["*",[8,8,[[4,1,1,0,1,[[185,1,1,0,1]]],[17,4,4,1,5,[[438,1,1,1,2],[445,2,2,2,4],[472,1,1,4,5]]],[18,3,3,5,8,[[527,1,1,5,6],[557,1,1,6,7],[571,1,1,7,8]]]],[5812,12908,13089,13108,13784,14670,15199,15432]]],["forth",[2,2,[[4,1,1,0,1,[[185,1,1,0,1]]],[18,1,1,1,2,[[557,1,1,1,2]]]],[5812,15199]]],["light",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13108]]],["shine",[3,3,[[17,3,3,0,3,[[438,1,1,0,1],[445,1,1,1,2],[472,1,1,2,3]]]],[12908,13089,13784]]],["shined",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14670]]],["thyself",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15432]]]]},{"k":"H3314","v":[["brightness",[2,2,[[25,2,2,0,2,[[829,2,2,0,2]]]],[21164,21174]]]]},{"k":"H3315","v":[["Japheth",[11,11,[[0,9,9,0,9,[[4,1,1,0,1],[5,1,1,1,2],[6,1,1,2,3],[8,3,3,3,6],[9,3,3,6,9]]],[12,2,2,9,11,[[338,2,2,9,11]]]],[137,147,172,223,228,232,235,236,255,10256,10257]]]]},{"k":"H3316","v":[["*",[30,26,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,28,24,1,25,[[221,23,20,1,21],[222,5,4,21,25]]],[8,1,1,25,26,[[247,1,1,25,26]]]],[6245,6830,6831,6832,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6857,6858,6859,6861,6863,6869,6870,6871,6873,6876,7471]]],["Jephthah",[29,25,[[6,28,24,0,24,[[221,23,20,0,20],[222,5,4,20,24]]],[8,1,1,24,25,[[247,1,1,24,25]]]],[6830,6831,6832,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6857,6858,6859,6861,6863,6869,6870,6871,6873,6876,7471]]],["Jiphtah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6245]]]]},{"k":"H3317","v":[["Jiphthahel",[2,2,[[5,2,2,0,2,[[205,2,2,0,2]]]],[6335,6348]]]]},{"k":"H3318","v":[["*",[1068,991,[[0,79,75,0,75,[[0,2,2,0,2],[1,1,1,2,3],[3,1,1,3,4],[7,6,5,4,9],[8,2,2,9,11],[9,2,2,11,13],[10,1,1,13,14],[11,2,2,14,16],[13,3,3,16,19],[14,4,4,19,23],[16,1,1,23,24],[18,9,8,24,32],[23,9,9,32,41],[24,2,2,41,43],[26,3,2,43,45],[27,1,1,45,46],[29,1,1,46,47],[30,2,2,47,49],[33,5,4,49,53],[34,2,2,53,55],[37,5,5,55,60],[38,2,2,60,62],[39,1,1,62,63],[40,2,2,63,65],[41,2,2,65,67],[42,2,2,67,69],[43,2,2,69,71],[44,1,1,71,72],[45,1,1,72,73],[46,1,1,73,74],[47,1,1,74,75]]],[1,94,88,75,163,[[50,1,1,75,76],[51,2,2,76,78],[52,3,3,78,81],[53,3,3,81,84],[54,2,2,84,86],[55,5,5,86,91],[56,3,3,91,94],[57,5,5,94,99],[58,2,2,99,101],[59,2,2,101,103],[60,4,2,103,105],[61,8,8,105,113],[62,7,6,113,119],[63,2,2,119,121],[64,2,2,121,123],[65,7,7,123,130],[66,2,2,130,132],[67,2,2,132,134],[68,2,2,134,136],[69,1,1,136,137],[70,9,7,137,144],[71,1,1,144,145],[72,2,2,145,147],[74,3,3,147,150],[77,1,1,150,151],[78,1,1,151,152],[81,3,3,152,155],[82,2,2,155,157],[83,3,2,157,159],[84,1,1,159,160],[86,3,3,160,163]]],[2,38,38,163,201,[[93,2,2,163,165],[95,1,1,165,166],[97,1,1,166,167],[98,2,2,167,169],[99,2,2,169,171],[103,3,3,171,174],[104,2,2,174,176],[105,4,4,176,180],[108,1,1,180,181],[110,1,1,181,182],[111,2,2,182,184],[112,1,1,184,185],[113,3,3,185,188],[114,9,9,188,197],[115,3,3,197,200],[116,1,1,200,201]]],[3,70,66,201,267,[[117,15,15,201,216],[125,1,1,216,217],[127,4,3,217,220],[128,4,3,220,223],[129,1,1,223,224],[130,2,2,224,226],[131,2,2,226,228],[132,3,3,228,231],[133,2,2,231,233],[135,1,1,233,234],[136,6,6,234,240],[137,4,4,240,244],[138,4,4,244,248],[139,1,1,248,249],[140,1,1,249,250],[142,2,2,250,252],[143,3,2,252,254],[146,1,1,254,255],[147,4,4,255,259],[148,1,1,259,260],[149,4,4,260,264],[150,2,2,264,266],[151,2,1,266,267]]],[4,66,64,267,331,[[153,2,2,267,269],[154,2,2,269,271],[155,1,1,271,272],[156,4,4,272,276],[157,2,2,276,278],[158,3,3,278,281],[159,2,2,281,283],[160,3,3,283,286],[161,6,5,286,291],[163,1,1,291,292],[165,3,3,292,295],[166,2,2,295,297],[167,1,1,297,298],[168,4,3,298,301],[169,1,1,301,302],[172,1,1,302,303],[173,3,3,303,306],[174,5,5,306,311],[175,4,4,311,315],[176,4,4,315,319],[177,1,1,319,320],[178,1,1,320,321],[180,6,6,321,327],[181,2,2,327,329],[183,1,1,329,330],[185,1,1,330,331]]],[5,53,47,331,378,[[188,5,5,331,336],[191,5,3,336,339],[192,5,4,339,343],[194,5,5,343,348],[195,1,1,348,349],[196,3,3,349,352],[197,1,1,352,353],[200,1,1,353,354],[201,5,4,354,358],[202,4,4,358,362],[204,5,3,362,365],[205,10,10,365,375],[207,1,1,375,376],[210,2,2,376,378]]],[6,53,50,378,428,[[211,1,1,378,379],[212,2,2,379,381],[213,5,5,381,386],[214,3,3,386,389],[215,2,2,389,391],[216,4,4,391,395],[218,1,1,395,396],[219,11,10,396,406],[221,4,4,406,410],[223,1,1,410,411],[224,2,1,411,412],[225,1,1,412,413],[226,1,1,413,414],[229,5,5,414,419],[230,7,7,419,426],[231,3,2,426,428]]],[7,4,4,428,432,[[232,2,2,428,430],[233,2,2,430,432]]],[8,46,42,432,474,[[237,1,1,432,433],[239,1,1,433,434],[242,1,1,434,435],[243,1,1,435,436],[244,3,3,436,439],[246,4,3,439,442],[247,1,1,442,443],[248,3,3,443,446],[249,2,2,446,448],[252,5,5,448,453],[253,6,5,453,458],[254,2,2,458,460],[255,3,2,460,462],[256,1,1,462,463],[257,1,1,463,464],[258,3,2,464,466],[259,3,3,466,469],[260,1,1,469,470],[261,1,1,470,471],[263,1,1,471,472],[264,1,1,472,473],[265,1,1,473,474]]],[9,47,39,474,513,[[268,3,3,474,477],[269,1,1,477,478],[271,2,2,478,480],[272,1,1,480,481],[273,1,1,481,482],[276,2,2,482,484],[277,6,5,484,489],[278,2,2,489,491],[279,4,3,491,494],[281,2,2,494,496],[282,6,3,496,499],[284,5,4,499,503],[285,3,2,503,505],[286,3,2,505,507],[287,1,1,507,508],[288,2,2,508,510],[290,3,3,510,513]]],[10,42,38,513,551,[[292,5,5,513,518],[293,1,1,518,519],[294,1,1,519,520],[296,1,1,520,521],[298,8,8,521,529],[299,2,2,529,531],[300,2,1,531,532],[301,1,1,532,533],[302,1,1,533,534],[305,1,1,534,535],[307,1,1,535,536],[309,2,2,536,538],[310,10,8,538,546],[311,2,2,546,548],[312,4,3,548,551]]],[11,52,48,551,599,[[314,4,4,551,555],[315,1,1,555,556],[316,4,4,556,560],[317,4,3,560,563],[318,1,1,563,564],[319,3,2,564,566],[320,1,1,566,567],[321,5,4,567,571],[322,5,4,571,575],[323,5,5,575,580],[324,2,2,580,582],[325,1,1,582,583],[327,1,1,583,584],[330,3,3,584,587],[331,4,4,587,591],[332,2,2,591,593],[333,1,1,593,594],[335,2,2,594,596],[336,3,3,596,599]]],[12,24,23,599,622,[[338,1,1,599,600],[339,1,1,600,601],[342,1,1,601,602],[344,1,1,602,603],[346,1,1,603,604],[348,1,1,604,605],[349,3,3,605,608],[351,4,3,608,611],[356,2,2,611,613],[357,3,3,613,616],[358,2,2,616,618],[361,1,1,618,619],[362,1,1,619,620],[363,1,1,620,621],[364,1,1,621,622]]],[13,49,43,622,665,[[367,3,2,622,624],[371,2,2,624,626],[372,3,3,626,629],[373,1,1,629,630],[375,1,1,630,631],[380,2,2,631,633],[381,2,2,633,635],[382,2,2,635,637],[384,4,3,637,640],[385,2,2,640,642],[386,4,3,642,645],[387,3,2,645,647],[388,1,1,647,648],[389,5,4,648,652],[390,1,1,652,653],[391,1,1,653,654],[392,5,5,654,659],[394,1,1,659,660],[395,3,2,660,662],[397,1,1,662,663],[400,1,1,663,664],[401,1,1,664,665]]],[14,5,4,665,669,[[403,3,2,665,667],[412,2,2,667,669]]],[15,10,10,669,679,[[414,1,1,669,670],[415,3,3,670,673],[416,1,1,673,674],[418,1,1,674,675],[420,2,2,675,677],[421,2,2,677,679]]],[16,9,9,679,688,[[426,2,2,679,681],[428,1,1,681,682],[429,2,2,682,684],[430,1,1,684,685],[432,1,1,685,686],[433,2,2,686,688]]],[17,28,28,688,716,[[436,2,2,688,690],[437,1,1,690,691],[438,1,1,691,692],[440,1,1,692,693],[443,2,2,693,695],[445,1,1,695,696],[447,1,1,696,697],[449,1,1,697,698],[450,1,1,698,699],[455,1,1,699,700],[458,1,1,700,701],[459,1,1,701,702],[461,1,1,702,703],[463,2,2,703,705],[464,1,1,705,706],[466,2,2,706,708],[472,1,1,708,709],[473,3,3,709,712],[474,2,2,712,714],[476,2,2,714,716]]],[18,36,35,716,751,[[494,1,1,716,717],[495,1,1,717,718],[496,2,2,718,720],[502,2,2,720,722],[508,1,1,722,723],[514,1,1,723,724],[518,1,1,724,725],[521,1,1,725,726],[537,1,1,726,727],[543,1,1,727,728],[545,2,2,728,730],[550,1,1,730,731],[555,1,1,731,732],[558,1,1,732,733],[565,1,1,733,734],[581,2,2,734,736],[582,3,3,736,739],[584,2,2,739,741],[585,1,1,741,742],[586,2,1,742,743],[591,1,1,743,744],[598,1,1,744,745],[612,1,1,745,746],[613,1,1,746,747],[619,1,1,747,748],[620,1,1,748,749],[621,1,1,749,750],[623,1,1,750,751]]],[19,11,9,751,760,[[634,1,1,751,752],[637,1,1,752,753],[639,1,1,753,754],[649,1,1,754,755],[652,2,2,755,757],[656,1,1,757,758],[657,4,2,758,760]]],[20,5,5,760,765,[[662,1,1,760,761],[663,2,2,761,763],[665,1,1,763,764],[668,1,1,764,765]]],[21,4,4,765,769,[[671,1,1,765,766],[673,1,1,766,767],[675,1,1,767,768],[677,1,1,768,769]]],[22,41,39,769,808,[[680,1,1,769,770],[685,1,1,770,771],[689,1,1,771,772],[691,1,1,772,773],[692,1,1,773,774],[704,1,1,774,775],[706,1,1,775,776],[708,1,1,776,777],[714,2,2,777,779],[715,4,4,779,783],[717,1,1,783,784],[718,1,1,784,785],[720,4,4,785,789],[721,2,2,789,791],[723,1,1,791,792],[726,4,3,792,795],[727,2,2,795,797],[729,2,2,797,799],[730,3,2,799,801],[732,1,1,801,802],[733,2,2,802,804],[739,1,1,804,805],[740,1,1,805,806],[743,1,1,806,807],[744,1,1,807,808]]],[23,70,68,808,876,[[745,1,1,808,809],[746,1,1,809,810],[748,2,2,810,812],[749,1,1,812,813],[750,1,1,813,814],[751,2,2,814,816],[752,1,1,816,817],[753,1,1,817,818],[754,2,2,818,820],[755,2,2,820,822],[758,1,1,822,823],[759,3,3,823,826],[761,2,2,826,828],[763,1,1,828,829],[764,2,2,829,831],[765,2,2,831,833],[766,1,1,833,834],[767,2,2,834,836],[769,1,1,836,837],[770,1,1,837,838],[773,2,2,838,840],[774,3,3,840,843],[775,3,3,843,846],[776,1,1,846,847],[778,1,1,847,848],[781,4,4,848,852],[782,8,7,852,859],[783,3,2,859,861],[785,1,1,861,862],[787,1,1,862,863],[788,1,1,863,864],[790,1,1,864,865],[792,3,3,865,868],[794,2,2,868,870],[795,4,4,870,874],[796,2,2,874,876]]],[24,3,3,876,879,[[797,1,1,876,877],[799,2,2,877,879]]],[25,74,63,879,942,[[802,1,1,879,880],[804,3,3,880,883],[806,1,1,883,884],[808,1,1,884,885],[810,2,1,885,886],[811,3,3,886,889],[812,2,2,889,891],[813,8,5,891,896],[815,2,1,896,897],[816,1,1,897,898],[817,1,1,898,899],[820,1,1,899,900],[821,8,8,900,908],[822,4,4,908,912],[825,3,2,912,914],[827,1,1,914,915],[828,1,1,915,916],[829,1,1,916,917],[831,1,1,917,918],[834,1,1,918,919],[835,1,1,919,920],[837,1,1,920,921],[838,1,1,921,922],[839,2,2,922,924],[840,1,1,924,925],[843,3,3,925,928],[845,2,2,928,930],[847,11,7,930,937],[848,6,5,937,942]]],[26,7,7,942,949,[[857,1,1,942,943],[858,3,3,943,946],[859,1,1,946,947],[860,2,2,947,949]]],[27,2,2,949,951,[[867,1,1,949,950],[870,1,1,950,951]]],[28,2,2,951,953,[[877,1,1,951,952],[878,1,1,952,953]]],[29,4,3,953,956,[[882,1,1,953,954],[883,2,1,954,955],[884,1,1,955,956]]],[31,1,1,956,957,[[892,1,1,956,957]]],[32,8,8,957,965,[[893,2,2,957,959],[894,1,1,959,960],[896,2,2,960,962],[897,1,1,962,963],[899,2,2,963,965]]],[33,1,1,965,966,[[900,1,1,965,966]]],[34,5,4,966,970,[[903,3,2,966,968],[905,2,2,968,970]]],[36,2,2,970,972,[[909,1,1,970,971],[910,1,1,971,972]]],[37,22,18,972,990,[[912,2,1,972,973],[914,1,1,973,974],[915,6,5,974,979],[916,7,5,979,984],[918,1,1,984,985],[919,1,1,985,986],[920,1,1,986,987],[924,3,3,987,990]]],[38,1,1,990,991,[[928,1,1,990,991]]]],[11,23,40,95,190,199,200,201,202,215,223,245,248,297,302,303,344,353,354,364,365,367,374,403,462,463,465,469,471,473,474,480,596,602,604,606,634,636,641,644,654,683,684,730,757,783,846,886,906,981,986,1004,1006,1022,1029,1143,1144,1147,1148,1149,1161,1164,1186,1240,1241,1267,1280,1313,1321,1328,1352,1359,1412,1430,1463,1537,1565,1567,1589,1590,1591,1607,1608,1615,1642,1652,1661,1662,1668,1681,1682,1689,1690,1700,1722,1728,1730,1739,1740,1771,1775,1783,1795,1810,1814,1833,1838,1847,1855,1857,1858,1862,1867,1870,1871,1875,1876,1881,1883,1897,1900,1940,1942,1948,1950,1951,1953,1974,1976,1979,1989,1992,2000,2006,2027,2043,2053,2079,2080,2081,2082,2084,2088,2099,2119,2159,2160,2227,2228,2230,2328,2382,2449,2450,2462,2480,2481,2514,2530,2551,2622,2623,2625,2807,2816,2860,2950,2976,2977,2979,2984,3114,3149,3156,3184,3200,3218,3219,3225,3228,3317,3357,3373,3402,3445,3456,3460,3469,3497,3499,3500,3502,3507,3510,3511,3523,3524,3534,3537,3569,3591,3605,3607,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3966,4044,4048,4050,4063,4064,4071,4107,4144,4145,4189,4194,4221,4229,4240,4252,4253,4292,4319,4321,4322,4327,4329,4331,4353,4363,4368,4373,4380,4386,4407,4411,4438,4454,4491,4493,4571,4575,4650,4677,4691,4692,4700,4742,4761,4763,4798,4814,4820,4825,4871,4919,4936,4961,4970,4976,5024,5041,5049,5050,5059,5068,5098,5107,5109,5119,5130,5144,5151,5152,5164,5169,5183,5185,5186,5218,5277,5282,5285,5312,5318,5335,5343,5345,5348,5369,5428,5449,5457,5466,5484,5485,5489,5491,5494,5504,5509,5510,5512,5527,5530,5534,5536,5564,5574,5617,5618,5630,5636,5649,5668,5686,5704,5730,5828,5872,5874,5876,5879,5888,5938,5939,5940,5950,5959,5971,5972,6007,6008,6016,6019,6024,6049,6086,6087,6088,6111,6198,6205,6206,6211,6213,6266,6267,6271,6272,6304,6308,6310,6322,6333,6334,6338,6345,6348,6353,6355,6361,6368,6385,6481,6482,6533,6557,6560,6578,6587,6590,6591,6592,6613,6617,6621,6627,6654,6662,6672,6673,6684,6749,6769,6774,6781,6783,6787,6789,6792,6793,6796,6797,6832,6860,6863,6865,6898,6923,6948,6969,7046,7047,7048,7049,7051,7055,7068,7074,7075,7079,7082,7085,7123,7126,7134,7140,7167,7171,7243,7298,7363,7389,7402,7405,7417,7448,7452,7455,7468,7495,7502,7508,7519,7549,7622,7626,7638,7653,7673,7681,7682,7689,7692,7706,7709,7714,7741,7765,7777,7790,7823,7825,7847,7852,7853,7898,7925,7943,7973,7999,8061,8062,8072,8107,8134,8156,8177,8192,8248,8256,8260,8267,8272,8276,8282,8316,8317,8326,8335,8356,8405,8406,8431,8433,8437,8480,8481,8482,8484,8518,8530,8561,8562,8597,8622,8651,8696,8699,8712,8800,8806,8807,8812,8816,8823,8877,8897,8994,8995,9001,9004,9006,9029,9036,9038,9060,9063,9108,9137,9176,9266,9330,9398,9400,9424,9425,9426,9427,9429,9439,9441,9447,9461,9464,9501,9502,9514,9554,9572,9574,9575,9582,9621,9624,9640,9642,9649,9658,9674,9689,9719,9723,9730,9767,9771,9777,9780,9802,9815,9818,9819,9836,9837,9838,9841,9844,9861,9862,9876,9945,10031,10042,10055,10070,10088,10092,10096,10102,10116,10134,10169,10171,10209,10214,10215,10264,10359,10446,10546,10643,10675,10737,10753,10756,10782,10789,10791,10916,10923,10927,10928,10929,10938,10955,11022,11055,11091,11110,11204,11211,11278,11279,11287,11291,11316,11346,11392,11484,11485,11492,11495,11510,11511,11562,11563,11575,11578,11580,11604,11607,11608,11639,11643,11651,11663,11664,11667,11670,11682,11709,11738,11743,11747,11750,11752,11773,11796,11807,11855,11947,11986,12023,12024,12255,12271,12320,12352,12353,12354,12380,12420,12508,12509,12518,12526,12719,12721,12762,12763,12768,12788,12815,12831,12832,12881,12890,12898,12915,12957,13039,13045,13104,13150,13183,13216,13351,13429,13441,13471,13509,13515,13539,13622,13628,13771,13801,13822,13825,13838,13855,13908,13909,14105,14137,14172,14173,14266,14268,14335,14456,14548,14580,14817,14885,14906,14907,15027,15129,15222,15316,15585,15594,15643,15644,15649,15713,15727,15753,15762,15823,16089,16182,16207,16293,16304,16319,16345,16590,16674,16732,17025,17117,17121,17235,17278,17284,17395,17399,17412,17447,17498,17545,17582,17604,17638,17688,17785,17885,17916,17957,18151,18193,18239,18333,18346,18361,18380,18384,18388,18419,18446,18481,18483,18487,18493,18513,18522,18584,18615,18617,18634,18645,18653,18677,18678,18707,18708,18739,18751,18752,18854,18855,18906,18946,18951,19002,19031,19034,19064,19114,19141,19144,19154,19178,19214,19221,19230,19237,19311,19316,19317,19334,19376,19379,19409,19425,19440,19449,19452,19465,19499,19503,19566,19595,19637,19651,19686,19688,19690,19695,19723,19730,19752,19814,19878,19879,19881,19886,19897,19903,19912,19913,19916,19917,19918,19927,19937,19963,20009,20027,20054,20087,20089,20125,20174,20191,20222,20228,20256,20257,20283,20307,20316,20361,20392,20477,20524,20525,20527,20550,20587,20629,20640,20651,20652,20662,20664,20684,20685,20686,20687,20692,20753,20761,20776,20895,20901,20904,20905,20909,20917,20929,20933,20936,20947,20948,20949,20963,21062,21068,21118,21154,21175,21213,21310,21326,21379,21398,21429,21433,21457,21553,21566,21567,21602,21618,21657,21663,21664,21665,21667,21675,21676,21680,21681,21682,21687,21691,21970,22003,22010,22011,22035,22047,22080,22172,22221,22327,22361,22413,22426,22460,22573,22582,22590,22608,22622,22630,22635,22673,22679,22695,22735,22738,22773,22781,22851,22860,22902,22929,22939,22940,22941,22942,22945,22948,22952,22953,22954,22955,22986,23013,23020,23070,23071,23076,23140]]],["+",[142,137,[[0,9,8,0,8,[[7,1,1,0,1],[14,1,1,1,2],[18,2,2,2,4],[26,2,1,4,5],[42,1,1,5,6],[43,1,1,6,7],[47,1,1,7,8]]],[1,22,22,8,30,[[52,3,3,8,11],[55,5,5,11,16],[56,2,2,16,18],[57,1,1,18,19],[60,1,1,19,20],[61,2,2,20,22],[62,2,2,22,24],[65,3,3,24,27],[67,1,1,27,28],[68,1,1,28,29],[78,1,1,29,30]]],[2,10,10,30,40,[[93,1,1,30,31],[95,1,1,31,32],[98,1,1,32,33],[108,1,1,33,34],[111,1,1,34,35],[112,1,1,35,36],[113,2,2,36,38],[114,1,1,38,39],[115,1,1,39,40]]],[3,6,5,40,45,[[127,1,1,40,41],[131,1,1,41,42],[133,1,1,42,43],[135,1,1,43,44],[151,2,1,44,45]]],[4,13,13,45,58,[[156,1,1,45,46],[158,1,1,46,47],[159,1,1,47,48],[165,1,1,48,49],[166,1,1,49,50],[169,1,1,50,51],[173,1,1,51,52],[174,3,3,52,55],[176,1,1,55,56],[180,1,1,56,57],[181,1,1,57,58]]],[5,7,7,58,65,[[192,1,1,58,59],[194,1,1,59,60],[196,3,3,60,63],[210,2,2,63,65]]],[6,6,6,65,71,[[212,1,1,65,66],[216,3,3,66,69],[229,2,2,69,71]]],[8,2,2,71,73,[[246,1,1,71,72],[247,1,1,72,73]]],[9,5,4,73,77,[[276,1,1,73,74],[277,1,1,74,75],[284,2,1,75,76],[285,1,1,76,77]]],[10,5,5,77,82,[[292,1,1,77,78],[298,3,3,78,81],[299,1,1,81,82]]],[11,7,6,82,88,[[317,2,1,82,83],[322,1,1,83,84],[323,2,2,84,86],[327,1,1,86,87],[335,1,1,87,88]]],[12,2,2,88,90,[[356,1,1,88,89],[357,1,1,89,90]]],[13,7,7,90,97,[[372,1,1,90,91],[387,1,1,91,92],[389,2,2,92,94],[395,2,2,94,96],[400,1,1,96,97]]],[14,1,1,97,98,[[403,1,1,97,98]]],[15,1,1,98,99,[[418,1,1,98,99]]],[16,1,1,99,100,[[430,1,1,99,100]]],[17,3,3,100,103,[[437,1,1,100,101],[440,1,1,101,102],[466,1,1,102,103]]],[18,6,6,103,109,[[502,1,1,103,104],[521,1,1,104,105],[555,1,1,105,106],[586,1,1,106,107],[619,1,1,107,108],[620,1,1,108,109]]],[19,1,1,109,110,[[652,1,1,109,110]]],[20,2,2,110,112,[[665,1,1,110,111],[668,1,1,111,112]]],[23,13,12,112,124,[[750,1,1,112,113],[752,1,1,113,114],[755,2,2,114,116],[764,1,1,116,117],[770,1,1,117,118],[776,1,1,118,119],[778,1,1,119,120],[782,2,1,120,121],[794,1,1,121,122],[795,1,1,122,123],[796,1,1,123,124]]],[25,9,9,124,133,[[812,1,1,124,125],[821,4,4,125,129],[825,1,1,129,130],[827,1,1,130,131],[839,1,1,131,132],[847,1,1,132,133]]],[26,1,1,133,134,[[858,1,1,133,134]]],[32,1,1,134,135,[[893,1,1,134,135]]],[37,2,2,135,137,[[914,1,1,135,136],[916,1,1,136,137]]]],[190,365,465,474,757,1313,1328,1463,1589,1590,1591,1661,1662,1668,1681,1682,1689,1690,1728,1814,1833,1867,1870,1871,1950,1953,1979,2000,2043,2382,2816,2860,2977,3317,3402,3445,3460,3469,3507,3537,4050,4194,4253,4292,4871,5024,5109,5119,5277,5318,5369,5466,5485,5491,5494,5536,5649,5704,5972,6019,6086,6087,6088,6481,6482,6557,6662,6672,6684,7046,7049,7452,7468,8256,8267,8480,8518,8806,9001,9006,9038,9060,9658,9819,9841,9844,9945,10171,10923,10928,11287,11643,11667,11670,11796,11807,11947,12023,12420,12788,12898,12957,13622,14266,14580,15129,15762,16293,16304,17121,17447,17498,19114,19154,19230,19237,19425,19595,19752,19814,19912,20191,20222,20307,20662,20917,20929,20933,20936,21068,21118,21429,21675,22003,22590,22929,22948]]],["abroad",[2,2,[[4,1,1,0,1,[[175,1,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]]],[5510,12719]]],["appeared",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12380]]],["away",[4,4,[[4,1,1,0,1,[[167,1,1,0,1]]],[14,2,2,1,3,[[412,2,2,1,3]]],[23,1,1,3,4,[[792,1,1,3,4]]]],[5335,12255,12271,20089]]],["begotten",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6749]]],["bring",[4,4,[[0,1,1,0,1,[[18,1,1,0,1]]],[10,1,1,1,2,[[307,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]],[25,1,1,3,4,[[812,1,1,3,4]]]],[469,9330,19723,20664]]],["bringeth",[1,1,[[18,1,1,0,1,[[612,1,1,0,1]]]],[16182]]],["brought",[6,6,[[0,1,1,0,1,[[14,1,1,0,1]]],[3,1,1,1,2,[[131,1,1,1,2]]],[4,1,1,2,3,[[157,1,1,2,3]]],[9,1,1,3,4,[[279,1,1,3,4]]],[13,1,1,4,5,[[375,1,1,4,5]]],[23,1,1,5,6,[[751,1,1,5,6]]]],[367,4189,5059,8335,11392,19141]]],["came",[9,9,[[0,2,2,0,2,[[9,1,1,0,1],[24,1,1,1,2]]],[6,1,1,2,3,[[225,1,1,2,3]]],[9,1,1,3,4,[[282,1,1,3,4]]],[11,1,1,4,5,[[336,1,1,4,5]]],[12,2,2,5,7,[[338,1,1,5,6],[339,1,1,6,7]]],[17,2,2,7,9,[[461,1,1,7,8],[473,1,1,8,9]]]],[248,684,6948,8431,10209,10264,10359,13471,13822]]],["camest",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[596]]],["carry",[1,1,[[23,1,1,0,1,[[783,1,1,0,1]]]],[19937]]],["come",[1,1,[[1,1,1,0,1,[[66,1,1,0,1]]]],[1989]]],["cometh",[4,4,[[6,1,1,0,1,[[223,1,1,0,1]]],[17,1,1,1,2,[[463,1,1,1,2]]],[20,1,1,2,3,[[662,1,1,2,3]]],[22,1,1,3,4,[[704,1,1,3,4]]]],[6898,13509,17395,18151]]],["depart",[3,3,[[1,1,1,0,1,[[70,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[4,1,1,2,3,[[161,1,1,2,3]]]],[2099,3510,5164]]],["departed",[10,10,[[0,1,1,0,1,[[11,1,1,0,1]]],[1,1,1,1,2,[[84,1,1,1,2]]],[4,1,1,2,3,[[176,1,1,2,3]]],[8,1,1,3,4,[[258,1,1,3,4]]],[9,1,1,4,5,[[277,1,1,4,5]]],[12,1,1,5,6,[[358,1,1,5,6]]],[18,1,1,6,7,[[582,1,1,6,7]]],[23,1,1,7,8,[[773,1,1,7,8]]],[24,1,1,8,9,[[797,1,1,8,9]]],[25,1,1,9,10,[[811,1,1,9,10]]]],[302,2551,5527,7823,8267,10938,15644,19637,20316,20651]]],["departing",[1,1,[[0,1,1,0,1,[[34,1,1,0,1]]]],[1029]]],["do",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2084]]],["end",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2160]]],["escaped",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7549]]],["failed",[2,2,[[0,1,1,0,1,[[41,1,1,0,1]]],[21,1,1,1,2,[[675,1,1,1,2]]]],[1280,17604]]],["falleth",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4814]]],["fell",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6266]]],["fetch",[1,1,[[3,1,1,0,1,[[136,1,1,0,1]]]],[4321]]],["forth",[347,328,[[0,20,20,0,20,[[0,2,2,0,2],[7,5,5,2,7],[8,1,1,7,8],[9,1,1,8,9],[10,1,1,9,10],[11,1,1,10,11],[13,1,1,11,12],[14,1,1,12,13],[18,1,1,13,14],[23,3,3,14,17],[37,2,2,17,19],[41,1,1,19,20]]],[1,11,11,20,31,[[53,1,1,20,21],[54,1,1,21,22],[57,1,1,22,23],[61,3,3,23,26],[62,2,2,26,28],[63,1,1,28,29],[68,1,1,29,30],[81,1,1,30,31]]],[2,9,9,31,40,[[93,1,1,31,32],[103,2,2,32,34],[105,2,2,34,36],[114,2,2,36,38],[115,2,2,38,40]]],[3,23,23,40,63,[[117,14,14,40,54],[127,1,1,54,55],[128,1,1,55,56],[133,1,1,56,57],[136,2,2,57,59],[140,1,1,59,60],[142,1,1,60,61],[147,1,1,61,62],[149,1,1,62,63]]],[4,22,21,63,84,[[153,1,1,63,64],[154,1,1,64,65],[156,2,2,65,67],[158,1,1,67,68],[160,2,2,68,70],[161,2,2,70,72],[166,1,1,72,73],[168,4,3,73,76],[173,2,2,76,78],[175,3,3,78,81],[176,1,1,81,82],[177,1,1,82,83],[178,1,1,83,84]]],[5,7,6,84,90,[[188,1,1,84,85],[191,1,1,85,86],[195,1,1,86,87],[204,3,2,87,89],[205,1,1,89,90]]],[6,9,8,90,98,[[211,1,1,90,91],[213,1,1,91,92],[215,1,1,92,93],[219,1,1,93,94],[221,1,1,94,95],[224,2,1,95,96],[230,2,2,96,98]]],[7,2,2,98,100,[[232,1,1,98,99],[233,1,1,99,100]]],[8,8,7,100,107,[[249,1,1,100,101],[252,2,2,101,103],[253,2,1,103,104],[257,1,1,104,105],[258,1,1,105,106],[265,1,1,106,107]]],[9,13,13,107,120,[[277,1,1,107,108],[278,2,2,108,110],[279,1,1,110,111],[281,2,2,111,113],[282,2,2,113,115],[284,1,1,115,116],[285,1,1,116,117],[286,1,1,117,118],[288,2,2,118,120]]],[10,9,8,120,128,[[292,1,1,120,121],[298,2,2,121,123],[309,1,1,123,124],[310,1,1,124,125],[311,1,1,125,126],[312,3,2,126,128]]],[11,16,15,128,143,[[314,4,4,128,132],[318,1,1,132,133],[320,1,1,133,134],[321,2,2,134,136],[322,3,2,136,138],[323,1,1,138,139],[330,1,1,139,140],[331,1,1,140,141],[333,1,1,141,142],[335,1,1,142,143]]],[12,5,5,143,148,[[349,2,2,143,145],[351,1,1,145,146],[361,1,1,146,147],[362,1,1,147,148]]],[13,8,7,148,155,[[367,1,1,148,149],[372,1,1,149,150],[373,1,1,150,151],[386,2,1,151,152],[389,1,1,152,153],[391,1,1,153,154],[392,1,1,154,155]]],[14,2,2,155,157,[[403,2,2,155,157]]],[15,4,4,157,161,[[420,2,2,157,159],[421,2,2,159,161]]],[16,1,1,161,162,[[429,1,1,161,162]]],[17,9,9,162,171,[[436,1,1,162,163],[443,1,1,163,164],[445,1,1,164,165],[449,1,1,165,166],[458,1,1,166,167],[459,1,1,167,168],[463,1,1,168,169],[473,1,1,169,170],[474,1,1,170,171]]],[18,11,11,171,182,[[494,1,1,171,172],[495,1,1,172,173],[514,1,1,173,174],[545,1,1,174,175],[565,1,1,175,176],[581,2,2,176,178],[582,2,2,178,180],[585,1,1,180,181],[623,1,1,181,182]]],[19,6,4,182,186,[[634,1,1,182,183],[652,1,1,183,184],[657,4,2,184,186]]],[20,1,1,186,187,[[663,1,1,186,187]]],[21,3,3,187,190,[[671,1,1,187,188],[673,1,1,188,189],[677,1,1,189,190]]],[22,27,27,190,217,[[680,1,1,190,191],[685,1,1,191,192],[689,1,1,192,193],[691,1,1,193,194],[692,1,1,194,195],[706,1,1,195,196],[714,1,1,196,197],[715,3,3,197,200],[720,3,3,200,203],[721,2,2,203,205],[726,3,3,205,208],[727,2,2,208,210],[729,1,1,210,211],[732,1,1,211,212],[733,1,1,212,213],[739,1,1,213,214],[740,1,1,214,215],[743,1,1,215,216],[744,1,1,216,217]]],[23,41,41,217,258,[[745,1,1,217,218],[746,1,1,218,219],[748,2,2,219,221],[751,1,1,221,222],[754,2,2,222,224],[758,1,1,224,225],[759,3,3,225,228],[761,1,1,228,229],[763,1,1,229,230],[764,1,1,230,231],[766,1,1,231,232],[767,2,2,232,234],[769,1,1,234,235],[773,1,1,235,236],[774,1,1,236,237],[775,2,2,237,239],[781,3,3,239,242],[782,5,5,242,247],[783,1,1,247,248],[785,1,1,248,249],[787,1,1,249,250],[788,1,1,250,251],[790,1,1,251,252],[792,2,2,252,254],[794,1,1,254,255],[795,2,2,255,257],[796,1,1,257,258]]],[25,44,37,258,295,[[802,1,1,258,259],[804,2,2,259,261],[806,1,1,261,262],[808,1,1,262,263],[810,2,1,263,264],[813,6,4,264,268],[815,2,1,268,269],[817,1,1,269,270],[821,3,3,270,273],[822,4,4,273,277],[828,1,1,277,278],[829,1,1,278,279],[831,1,1,279,280],[834,1,1,280,281],[837,1,1,281,282],[839,1,1,282,283],[840,1,1,283,284],[843,2,2,284,286],[845,1,1,286,287],[847,9,6,287,293],[848,2,2,293,295]]],[26,6,6,295,301,[[857,1,1,295,296],[858,2,2,296,298],[859,1,1,298,299],[860,2,2,299,301]]],[27,2,2,301,303,[[867,1,1,301,302],[870,1,1,302,303]]],[28,2,2,303,305,[[877,1,1,303,304],[878,1,1,304,305]]],[29,1,1,305,306,[[883,1,1,305,306]]],[32,5,5,306,311,[[893,1,1,306,307],[896,2,2,307,309],[897,1,1,309,310],[899,1,1,310,311]]],[34,3,3,311,314,[[903,1,1,311,312],[905,2,2,312,314]]],[36,1,1,314,315,[[909,1,1,314,315]]],[37,15,12,315,327,[[912,1,1,315,316],[915,5,4,316,320],[916,5,3,320,323],[919,1,1,323,324],[920,1,1,324,325],[924,2,2,325,327]]],[38,1,1,327,328,[[928,1,1,327,328]]]],[11,23,190,199,200,201,202,223,245,297,303,354,364,473,634,636,644,1143,1144,1267,1615,1652,1730,1847,1855,1862,1875,1883,1900,2027,2449,2807,3114,3156,3225,3228,3511,3524,3534,3569,3607,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,4044,4064,4252,4319,4327,4454,4493,4677,4761,4919,4961,5049,5050,5098,5151,5152,5169,5183,5312,5343,5345,5348,5449,5457,5504,5509,5512,5534,5564,5574,5872,5939,6049,6304,6310,6322,6533,6591,6654,6797,6860,6923,7075,7079,7134,7167,7519,7638,7673,7706,7790,7823,7999,8260,8316,8317,8356,8405,8406,8431,8437,8481,8518,8562,8622,8651,8800,9004,9036,9398,9441,9464,9501,9502,9554,9572,9574,9575,9689,9730,9767,9771,9815,9818,9836,10031,10092,10134,10169,10753,10756,10789,11022,11055,11211,11291,11346,11607,11670,11709,11738,12023,12024,12508,12509,12518,12526,12768,12881,13045,13104,13183,13429,13441,13515,13825,13838,14105,14137,14456,14907,15316,15585,15594,15643,15649,15753,16345,16590,17117,17278,17284,17412,17545,17582,17638,17688,17785,17885,17916,17957,18193,18333,18361,18384,18388,18481,18483,18493,18513,18522,18615,18617,18634,18645,18653,18678,18739,18751,18854,18855,18906,18946,18951,19002,19031,19034,19144,19214,19221,19311,19316,19317,19334,19379,19409,19440,19465,19499,19503,19566,19651,19690,19695,19730,19879,19881,19886,19897,19903,19913,19916,19917,19927,19963,20009,20027,20054,20087,20125,20174,20228,20256,20283,20477,20524,20525,20550,20587,20629,20684,20686,20687,20692,20753,20776,20901,20904,20905,20947,20948,20949,20963,21154,21175,21213,21310,21379,21433,21457,21553,21567,21618,21657,21663,21664,21665,21667,21676,21682,21687,21970,22010,22011,22035,22047,22080,22172,22221,22327,22361,22426,22582,22622,22630,22635,22673,22735,22773,22781,22851,22902,22939,22940,22941,22942,22952,22953,22954,23013,23020,23070,23071,23140]]],["go",[6,6,[[3,1,1,0,1,[[142,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]],[13,1,1,2,3,[[389,1,1,2,3]]],[16,1,1,3,4,[[426,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]],[37,1,1,5,6,[[916,1,1,5,6]]]],[4491,8597,11664,12721,20257,22955]]],["goeth",[4,4,[[2,2,2,0,2,[[104,1,1,0,1],[111,1,1,1,2]]],[17,1,1,2,3,[[476,1,1,2,3]]],[18,1,1,3,4,[[518,1,1,3,4]]]],[3200,3373,13908,14548]]],["got",[2,2,[[0,2,2,0,2,[[38,2,2,0,2]]]],[1161,1164]]],["grow",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13628]]],["hence",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18239]]],["issue",[2,2,[[11,1,1,0,1,[[332,1,1,0,1]]],[22,1,1,1,2,[[717,1,1,1,2]]]],[10116,18419]]],["let",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15762]]],["on",[3,3,[[3,2,2,0,2,[[150,2,2,0,2]]],[17,1,1,2,3,[[474,1,1,2,3]]]],[4820,4825,13855]]],["out",[479,454,[[0,37,35,0,35,[[1,1,1,0,1],[3,1,1,1,2],[8,1,1,2,3],[13,2,2,3,5],[14,1,1,5,6],[16,1,1,6,7],[18,4,3,7,10],[23,4,4,10,14],[24,1,1,14,15],[26,1,1,15,16],[27,1,1,16,17],[29,1,1,17,18],[30,1,1,18,19],[33,5,4,19,23],[34,1,1,23,24],[37,3,3,24,27],[39,1,1,27,28],[40,2,2,28,30],[42,1,1,30,31],[43,1,1,31,32],[44,1,1,32,33],[45,1,1,33,34],[46,1,1,34,35]]],[1,56,53,35,88,[[50,1,1,35,36],[51,2,2,36,38],[53,2,2,38,40],[54,1,1,40,41],[56,1,1,41,42],[57,3,3,42,45],[58,2,2,45,47],[59,2,2,47,49],[60,3,2,49,51],[61,3,3,51,54],[62,3,3,54,57],[63,1,1,57,58],[64,2,2,58,60],[65,4,4,60,64],[66,1,1,64,65],[67,1,1,65,66],[69,1,1,66,67],[70,7,6,67,73],[71,1,1,73,74],[72,1,1,74,75],[74,3,3,75,78],[77,1,1,78,79],[81,2,2,79,81],[82,2,2,81,83],[83,3,2,83,85],[86,3,3,85,88]]],[2,16,16,88,104,[[97,1,1,88,89],[98,1,1,89,90],[99,2,2,90,92],[103,1,1,92,93],[104,1,1,93,94],[105,2,2,94,96],[110,1,1,96,97],[113,1,1,97,98],[114,5,5,98,103],[116,1,1,103,104]]],[3,32,30,104,134,[[117,1,1,104,105],[125,1,1,105,106],[127,2,2,106,108],[128,3,2,108,110],[132,3,3,110,113],[136,3,3,113,116],[137,4,4,116,120],[138,4,4,120,124],[139,1,1,124,125],[143,3,2,125,127],[146,1,1,127,128],[147,3,3,128,131],[148,1,1,131,132],[149,2,2,132,134]]],[4,24,23,134,157,[[153,1,1,134,135],[154,1,1,135,136],[155,1,1,136,137],[156,1,1,137,138],[157,1,1,138,139],[158,1,1,139,140],[159,1,1,140,141],[160,1,1,141,142],[161,3,2,142,144],[163,1,1,144,145],[165,2,2,145,147],[172,1,1,147,148],[176,1,1,148,149],[180,5,5,149,154],[181,1,1,154,155],[183,1,1,155,156],[185,1,1,156,157]]],[5,38,35,157,192,[[188,4,4,157,161],[191,4,3,161,164],[192,4,4,164,168],[194,4,4,168,172],[197,1,1,172,173],[200,1,1,173,174],[201,5,4,174,178],[202,3,3,178,181],[204,2,1,181,182],[205,9,9,182,191],[207,1,1,191,192]]],[6,35,33,192,225,[[212,1,1,192,193],[213,4,4,193,197],[214,3,3,197,200],[215,1,1,200,201],[216,1,1,201,202],[219,10,9,202,211],[221,3,3,211,214],[226,1,1,214,215],[229,3,3,215,218],[230,5,5,218,223],[231,3,2,223,225]]],[7,2,2,225,227,[[232,1,1,225,226],[233,1,1,226,227]]],[8,33,32,227,259,[[237,1,1,227,228],[239,1,1,228,229],[242,1,1,229,230],[243,1,1,230,231],[244,3,3,231,234],[246,3,3,234,237],[248,3,3,237,240],[252,3,3,240,243],[253,4,4,243,247],[254,2,2,247,249],[255,3,2,249,251],[256,1,1,251,252],[258,1,1,252,253],[259,2,2,253,255],[260,1,1,255,256],[261,1,1,256,257],[263,1,1,257,258],[264,1,1,258,259]]],[9,24,21,259,280,[[268,3,3,259,262],[269,1,1,262,263],[271,2,2,263,265],[272,1,1,265,266],[276,1,1,266,267],[277,3,3,267,270],[279,2,1,270,271],[282,3,2,271,273],[284,2,2,273,275],[285,1,1,275,276],[286,2,1,276,277],[290,3,3,277,280]]],[10,27,24,280,304,[[292,3,3,280,283],[293,1,1,283,284],[294,1,1,284,285],[296,1,1,285,286],[298,3,3,286,289],[299,1,1,289,290],[300,2,1,290,291],[301,1,1,291,292],[302,1,1,292,293],[305,1,1,293,294],[309,1,1,294,295],[310,9,7,295,302],[311,1,1,302,303],[312,1,1,303,304]]],[11,27,25,304,329,[[315,1,1,304,305],[316,4,4,305,309],[317,2,2,309,311],[319,3,2,311,313],[321,3,2,313,315],[322,1,1,315,316],[323,2,2,316,318],[324,2,2,318,320],[325,1,1,320,321],[330,2,2,321,323],[331,3,3,323,326],[332,1,1,326,327],[336,2,2,327,329]]],[12,14,14,329,343,[[342,1,1,329,330],[344,1,1,330,331],[346,1,1,331,332],[348,1,1,332,333],[349,1,1,333,334],[351,3,3,334,337],[356,1,1,337,338],[357,2,2,338,340],[358,1,1,340,341],[363,1,1,341,342],[364,1,1,342,343]]],[13,31,30,343,373,[[367,2,2,343,345],[371,2,2,345,347],[372,1,1,347,348],[380,2,2,348,350],[381,2,2,350,352],[382,2,2,352,354],[384,4,3,354,357],[385,2,2,357,359],[386,2,2,359,361],[387,2,2,361,363],[388,1,1,363,364],[389,1,1,364,365],[390,1,1,365,366],[392,3,3,366,369],[394,1,1,369,370],[395,1,1,370,371],[397,1,1,371,372],[401,1,1,372,373]]],[15,4,4,373,377,[[414,1,1,373,374],[415,3,3,374,377]]],[16,5,5,377,382,[[428,1,1,377,378],[429,1,1,378,379],[432,1,1,379,380],[433,2,2,380,382]]],[17,9,9,382,391,[[436,1,1,382,383],[438,1,1,383,384],[447,1,1,384,385],[450,1,1,385,386],[455,1,1,386,387],[464,1,1,387,388],[472,1,1,388,389],[473,1,1,389,390],[476,1,1,390,391]]],[18,15,15,391,406,[[496,2,2,391,393],[502,1,1,393,394],[508,1,1,394,395],[537,1,1,395,396],[543,1,1,396,397],[545,1,1,397,398],[550,1,1,398,399],[558,1,1,399,400],[584,2,2,400,402],[591,1,1,402,403],[598,1,1,403,404],[613,1,1,404,405],[621,1,1,405,406]]],[19,2,2,406,408,[[639,1,1,406,407],[649,1,1,407,408]]],[22,9,8,408,416,[[714,1,1,408,409],[715,1,1,409,410],[718,1,1,410,411],[720,1,1,411,412],[723,1,1,412,413],[730,3,2,413,415],[733,1,1,415,416]]],[23,7,7,416,423,[[749,1,1,416,417],[761,1,1,417,418],[765,2,2,418,420],[781,1,1,420,421],[782,1,1,421,422],[783,1,1,422,423]]],[24,1,1,423,424,[[799,1,1,423,424]]],[25,19,18,424,442,[[804,1,1,424,425],[811,2,2,425,427],[813,2,2,427,429],[816,1,1,429,430],[820,1,1,430,431],[821,1,1,431,432],[825,2,1,432,433],[835,1,1,433,434],[838,1,1,434,435],[843,1,1,435,436],[845,1,1,436,437],[847,1,1,437,438],[848,4,4,438,442]]],[29,3,3,442,445,[[882,1,1,442,443],[883,1,1,443,444],[884,1,1,444,445]]],[31,1,1,445,446,[[892,1,1,445,446]]],[32,2,2,446,448,[[894,1,1,446,447],[899,1,1,447,448]]],[33,1,1,448,449,[[900,1,1,448,449]]],[36,1,1,449,450,[[910,1,1,449,450]]],[37,4,4,450,454,[[912,1,1,450,451],[915,1,1,451,452],[918,1,1,452,453],[924,1,1,453,454]]]],[40,95,215,344,353,374,403,462,463,471,602,604,606,654,683,730,783,846,886,981,986,1004,1006,1022,1147,1148,1149,1186,1240,1241,1321,1352,1359,1412,1430,1537,1565,1567,1607,1608,1642,1700,1722,1739,1740,1771,1775,1783,1795,1810,1814,1838,1857,1858,1870,1876,1881,1897,1940,1942,1948,1951,1974,1976,1992,2006,2053,2079,2080,2081,2082,2084,2088,2119,2159,2227,2228,2230,2328,2450,2462,2480,2481,2514,2530,2622,2623,2625,2950,2976,2979,2984,3149,3184,3218,3219,3357,3456,3497,3499,3500,3502,3523,3591,3605,3966,4044,4048,4063,4071,4221,4229,4240,4322,4329,4331,4353,4363,4368,4373,4380,4386,4407,4411,4438,4571,4575,4650,4691,4692,4700,4742,4763,4798,4936,4970,4976,5041,5068,5107,5130,5144,5185,5186,5218,5282,5285,5428,5530,5617,5618,5630,5636,5668,5686,5730,5828,5874,5876,5879,5888,5938,5939,5940,5950,5959,5971,5972,6007,6008,6016,6024,6111,6198,6205,6206,6211,6213,6267,6271,6272,6308,6333,6334,6338,6345,6348,6353,6355,6361,6368,6385,6560,6578,6587,6590,6592,6613,6617,6621,6627,6673,6769,6774,6781,6783,6787,6789,6792,6793,6796,6832,6863,6865,6969,7047,7048,7051,7055,7068,7074,7082,7085,7123,7126,7140,7171,7243,7298,7363,7389,7402,7405,7417,7448,7452,7455,7495,7502,7508,7622,7626,7653,7681,7682,7689,7692,7709,7714,7741,7765,7777,7825,7847,7853,7898,7925,7943,7973,8061,8062,8072,8107,8134,8156,8177,8248,8272,8276,8282,8326,8431,8433,8482,8484,8530,8561,8696,8699,8712,8807,8812,8816,8823,8877,8897,8994,8995,9029,9063,9108,9137,9176,9266,9400,9424,9425,9426,9427,9429,9439,9447,9461,9514,9582,9621,9624,9640,9642,9649,9674,9719,9723,9777,9780,9802,9837,9838,9861,9862,9876,10042,10055,10070,10088,10096,10102,10214,10215,10446,10546,10643,10675,10737,10782,10789,10791,10916,10927,10929,10955,11091,11110,11204,11211,11278,11279,11316,11484,11485,11492,11495,11510,11511,11562,11563,11575,11578,11580,11604,11608,11639,11643,11651,11663,11682,11743,11750,11752,11773,11807,11855,11986,12320,12352,12353,12354,12762,12763,12815,12831,12832,12890,12915,13150,13216,13351,13539,13771,13801,13909,14172,14173,14268,14335,14817,14885,14906,15027,15222,15713,15727,15823,16089,16207,16319,16732,17025,18346,18380,18446,18487,18584,18707,18708,18752,19064,19376,19449,19452,19878,19918,19927,20361,20527,20640,20652,20685,20692,20761,20895,20909,21062,21326,21398,21566,21602,21664,21680,21681,21687,21691,22413,22426,22460,22573,22608,22679,22695,22860,22902,22945,22986,23076]]],["proceed",[6,6,[[9,1,1,0,1,[[273,1,1,0,1]]],[22,1,1,1,2,[[729,1,1,1,2]]],[23,3,3,2,5,[[753,1,1,2,3],[774,2,2,3,5]]],[34,1,1,5,6,[[903,1,1,5,6]]]],[8192,18677,19178,19686,19688,22738]]],["proceedeth",[4,4,[[0,1,1,0,1,[[23,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]],[34,1,1,3,4,[[903,1,1,3,4]]]],[641,7852,20392,22735]]],["risen",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[480]]],["spread",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11747]]],["up",[5,5,[[3,3,3,0,3,[[129,1,1,0,1],[130,2,2,1,3]]],[4,2,2,3,5,[[174,2,2,3,5]]]],[4107,4144,4145,5484,5489]]],["utter",[3,3,[[17,1,1,0,1,[[443,1,1,0,1]]],[20,1,1,1,2,[[663,1,1,1,2]]],[22,1,1,2,3,[[726,1,1,2,3]]]],[13039,17399,18634]]],["uttereth",[2,2,[[19,2,2,0,2,[[637,1,1,0,1],[656,1,1,1,2]]]],[16674,17235]]],["went",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[906]]]]},{"k":"H3319","v":[["finished",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12166]]]]},{"k":"H3320","v":[["*",[48,45,[[1,6,6,0,6,[[51,1,1,0,1],[57,1,1,1,2],[58,1,1,2,3],[63,1,1,3,4],[68,1,1,4,5],[83,1,1,5,6]]],[3,4,4,6,10,[[127,1,1,6,7],[138,1,1,7,8],[139,2,2,8,10]]],[4,5,4,10,14,[[159,1,1,10,11],[161,1,1,11,12],[163,1,1,12,13],[183,2,1,13,14]]],[5,2,2,14,16,[[187,1,1,14,15],[210,1,1,15,16]]],[6,1,1,16,17,[[230,1,1,16,17]]],[8,6,6,17,23,[[238,1,1,17,18],[245,2,2,18,20],[247,2,2,20,22],[252,1,1,22,23]]],[9,4,4,23,27,[[284,2,2,23,25],[287,1,1,25,26],[289,1,1,26,27]]],[12,1,1,27,28,[[348,1,1,27,28]]],[13,3,3,28,31,[[377,1,1,28,29],[386,2,2,29,31]]],[17,6,5,31,36,[[436,1,1,31,32],[437,2,1,32,33],[468,1,1,33,34],[473,1,1,34,35],[476,1,1,35,36]]],[18,4,4,36,40,[[479,1,1,36,37],[482,1,1,37,38],[513,1,1,38,39],[571,1,1,39,40]]],[19,2,1,40,41,[[649,2,1,40,41]]],[23,2,2,41,43,[[790,2,2,41,43]]],[34,1,1,43,44,[[904,1,1,43,44]]],[37,1,1,44,45,[[916,1,1,44,45]]]],[1558,1730,1755,1902,2043,2501,4040,4397,4419,4431,5135,5159,5233,5742,5856,6477,7056,7286,7437,7441,7467,7476,7634,8491,8508,8585,8665,10687,11427,11593,11604,12875,12892,13655,13807,13898,13947,13978,14442,15447,17044,20049,20059,22749,22952]]],["+",[3,3,[[9,1,1,0,1,[[287,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]],[37,1,1,2,3,[[916,1,1,2,3]]]],[8585,11593,22952]]],["Stand",[2,2,[[3,2,2,0,2,[[139,2,2,0,2]]]],[4419,4431]]],["fast",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20059]]],["forth",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20049]]],["himself",[3,3,[[8,1,1,0,1,[[252,1,1,0,1]]],[17,1,1,1,2,[[437,1,1,1,2]]],[18,1,1,2,3,[[513,1,1,2,3]]]],[7634,12892,14442]]],["resorted",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11427]]],["set",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22749]]],["stand",[14,13,[[1,2,2,0,2,[[57,1,1,0,1],[58,1,1,1,2]]],[3,1,1,2,3,[[127,1,1,2,3]]],[4,3,3,3,6,[[159,1,1,3,4],[161,1,1,4,5],[163,1,1,5,6]]],[5,1,1,6,7,[[187,1,1,6,7]]],[8,1,1,7,8,[[247,1,1,7,8]]],[9,1,1,8,9,[[284,1,1,8,9]]],[17,2,2,9,11,[[473,1,1,9,10],[476,1,1,10,11]]],[18,1,1,11,12,[[482,1,1,11,12]]],[19,2,1,12,13,[[649,2,1,12,13]]]],[1730,1755,4040,5135,5159,5233,5856,7476,8508,13807,13898,13978,17044]]],["still",[2,2,[[1,1,1,0,1,[[63,1,1,0,1]]],[8,1,1,1,2,[[247,1,1,1,2]]]],[1902,7467]]],["stood",[7,7,[[1,3,3,0,3,[[51,1,1,0,1],[68,1,1,1,2],[83,1,1,2,3]]],[3,1,1,3,4,[[138,1,1,3,4]]],[8,2,2,4,6,[[238,1,1,4,5],[245,1,1,5,6]]],[9,1,1,6,7,[[289,1,1,6,7]]]],[1558,2043,2501,4397,7286,7441,8665]]],["themselves",[7,7,[[4,1,1,0,1,[[183,1,1,0,1]]],[5,1,1,1,2,[[210,1,1,1,2]]],[6,1,1,2,3,[[230,1,1,2,3]]],[12,1,1,3,4,[[348,1,1,3,4]]],[17,2,2,4,6,[[436,1,1,4,5],[437,1,1,5,6]]],[18,1,1,6,7,[[479,1,1,6,7]]]],[5742,6477,7056,10687,12875,12892,13947]]],["thyself",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8491]]],["up",[2,2,[[17,1,1,0,1,[[468,1,1,0,1]]],[18,1,1,1,2,[[571,1,1,1,2]]]],[13655,15447]]],["yourselves",[3,3,[[4,1,1,0,1,[[183,1,1,0,1]]],[8,1,1,1,2,[[245,1,1,1,2]]],[13,1,1,2,3,[[386,1,1,2,3]]]],[5742,7437,11604]]]]},{"k":"H3321","v":[["truth",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21952]]]]},{"k":"H3322","v":[["*",[16,16,[[0,4,4,0,4,[[29,1,1,0,1],[32,1,1,1,2],[42,1,1,2,3],[46,1,1,3,4]]],[1,1,1,4,5,[[59,1,1,4,5]]],[4,1,1,5,6,[[180,1,1,5,6]]],[6,3,3,6,9,[[216,1,1,6,7],[217,1,1,7,8],[218,1,1,8,9]]],[8,1,1,9,10,[[240,1,1,9,10]]],[9,1,1,10,11,[[272,1,1,10,11]]],[12,1,1,11,12,[[353,1,1,11,12]]],[17,1,1,12,13,[[452,1,1,12,13]]],[23,1,1,13,14,[[795,1,1,13,14]]],[27,1,1,14,15,[[863,1,1,14,15]]],[29,1,1,15,16,[[883,1,1,15,16]]]],[868,975,1299,1422,1801,5667,6691,6699,6746,7321,8174,10821,13266,20246,22108,22438]]],["+",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[6,1,1,1,2,[[216,1,1,1,2]]]],[868,6691]]],["establish",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22438]]],["leave",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[975]]],["made",[2,2,[[17,1,1,0,1,[[452,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[13266,20246]]],["presented",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1422]]],["put",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6746]]],["set",[7,7,[[0,1,1,0,1,[[42,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]],[8,1,1,3,4,[[240,1,1,3,4]]],[9,1,1,4,5,[[272,1,1,4,5]]],[12,1,1,5,6,[[353,1,1,5,6]]],[27,1,1,6,7,[[863,1,1,6,7]]]],[1299,5667,6699,7321,8174,10821,22108]]],["stayed",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1801]]]]},{"k":"H3323","v":[["*",[23,23,[[3,1,1,0,1,[[134,1,1,0,1]]],[4,6,6,1,7,[[159,1,1,1,2],[163,1,1,2,3],[164,1,1,3,4],[166,1,1,4,5],[170,1,1,5,6],[180,1,1,6,7]]],[11,1,1,7,8,[[330,1,1,7,8]]],[13,2,2,8,10,[[397,1,1,8,9],[398,1,1,9,10]]],[15,5,5,10,15,[[417,1,1,10,11],[422,2,2,11,13],[425,2,2,13,15]]],[23,1,1,15,16,[[775,1,1,15,16]]],[27,2,2,16,18,[[863,2,2,16,18]]],[28,3,3,18,21,[[876,1,1,18,19],[877,2,2,19,21]]],[36,1,1,21,22,[[909,1,1,21,22]]],[37,1,1,22,23,[[914,1,1,22,23]]]],[4269,5124,5222,5257,5313,5388,5662,10056,11859,11903,12393,12586,12588,12676,12683,19703,22113,22127,22301,22330,22335,22851,22936]]],["+",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22936]]],["oil",[22,22,[[3,1,1,0,1,[[134,1,1,0,1]]],[4,6,6,1,7,[[159,1,1,1,2],[163,1,1,2,3],[164,1,1,3,4],[166,1,1,4,5],[170,1,1,5,6],[180,1,1,6,7]]],[11,1,1,7,8,[[330,1,1,7,8]]],[13,2,2,8,10,[[397,1,1,8,9],[398,1,1,9,10]]],[15,5,5,10,15,[[417,1,1,10,11],[422,2,2,11,13],[425,2,2,13,15]]],[23,1,1,15,16,[[775,1,1,15,16]]],[27,2,2,16,18,[[863,2,2,16,18]]],[28,3,3,18,21,[[876,1,1,18,19],[877,2,2,19,21]]],[36,1,1,21,22,[[909,1,1,21,22]]]],[4269,5124,5222,5257,5313,5388,5662,10056,11859,11903,12393,12586,12588,12676,12683,19703,22113,22127,22301,22330,22335,22851]]]]},{"k":"H3324","v":[["*",[9,9,[[1,2,2,0,2,[[55,2,2,0,2]]],[3,2,2,2,4,[[119,1,1,2,3],[132,1,1,3,4]]],[12,5,5,4,9,[[343,3,3,4,7],[360,2,2,7,9]]]],[1673,1676,3711,4195,10456,10472,10492,10995,11001]]],["Izehar",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3711]]],["Izhar",[8,8,[[1,2,2,0,2,[[55,2,2,0,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[12,5,5,3,8,[[343,3,3,3,6],[360,2,2,6,8]]]],[1673,1676,4195,10456,10472,10492,10995,11001]]]]},{"k":"H3325","v":[["*",[4,4,[[3,1,1,0,1,[[119,1,1,0,1]]],[12,3,3,1,4,[[361,1,1,1,2],[363,2,2,2,4]]]],[3719,11037,11100,11106]]],["Izeharites",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3719]]],["Izharites",[3,3,[[12,3,3,0,3,[[361,1,1,0,1],[363,2,2,1,3]]]],[11037,11100,11106]]]]},{"k":"H3326","v":[["*",[8,8,[[0,1,1,0,1,[[48,1,1,0,1]]],[10,3,3,1,4,[[296,3,3,1,4]]],[12,1,1,4,5,[[342,1,1,4,5]]],[17,1,1,5,6,[[452,1,1,5,6]]],[18,2,2,6,8,[[540,1,1,6,7],[609,1,1,7,8]]]],[1477,8901,8902,8906,10429,13273,14845,16154]]],["+",[1,1,[[18,1,1,0,1,[[609,1,1,0,1]]]],[16154]]],["bed",[3,3,[[12,1,1,0,1,[[342,1,1,0,1]]],[17,1,1,1,2,[[452,1,1,1,2]]],[18,1,1,2,3,[[540,1,1,2,3]]]],[10429,13273,14845]]],["chamber",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8902]]],["chambers",[2,2,[[10,2,2,0,2,[[296,2,2,0,2]]]],[8901,8906]]],["couch",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1477]]]]},{"k":"H3327","v":[["*",[108,101,[[0,80,74,0,74,[[16,2,2,0,2],[20,6,6,2,8],[21,5,5,8,13],[23,8,7,13,20],[24,11,9,20,29],[25,16,15,29,44],[26,13,12,44,56],[27,5,5,56,61],[30,3,3,61,64],[31,1,1,64,65],[34,5,4,65,69],[45,1,1,69,70],[47,2,2,70,72],[48,1,1,72,73],[49,1,1,73,74]]],[1,9,9,74,83,[[51,1,1,74,75],[52,3,3,75,78],[53,1,1,78,79],[55,2,2,79,81],[81,1,1,81,82],[82,1,1,82,83]]],[2,1,1,83,84,[[115,1,1,83,84]]],[3,1,1,84,85,[[148,1,1,84,85]]],[4,7,7,85,92,[[153,1,1,85,86],[158,1,1,86,87],[161,2,2,87,89],[181,1,1,89,90],[182,1,1,90,91],[186,1,1,91,92]]],[5,2,2,92,94,[[210,2,2,92,94]]],[10,1,1,94,95,[[308,1,1,94,95]]],[11,1,1,95,96,[[325,1,1,95,96]]],[12,5,4,96,100,[[338,3,2,96,98],[353,1,1,98,99],[366,1,1,99,100]]],[13,1,1,100,101,[[396,1,1,100,101]]]],[416,418,516,517,518,521,523,525,549,550,553,554,556,595,605,653,654,655,657,658,663,664,667,669,677,678,679,684,686,693,698,700,701,704,708,709,710,711,712,717,719,723,724,727,728,732,747,748,749,753,757,759,760,764,766,773,774,778,779,781,786,891,915,926,937,1023,1038,1039,1040,1387,1466,1467,1504,1530,1578,1585,1594,1595,1606,1658,1663,2451,2474,3566,4729,4900,5096,5162,5184,5692,5728,5843,6479,6480,9377,9894,10280,10286,10836,11182,11833]]],["+",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[5,1,1,1,2,[[210,1,1,1,2]]]],[657,6480]]],["Isaac",[102,95,[[0,75,69,0,69,[[16,2,2,0,2],[20,6,6,2,8],[21,5,5,8,13],[23,7,6,13,19],[24,11,9,19,28],[25,12,11,28,39],[26,13,12,39,51],[27,5,5,51,56],[30,3,3,56,59],[31,1,1,59,60],[34,5,4,60,64],[45,1,1,64,65],[47,2,2,65,67],[48,1,1,67,68],[49,1,1,68,69]]],[1,9,9,69,78,[[51,1,1,69,70],[52,3,3,70,73],[53,1,1,73,74],[55,2,2,74,76],[81,1,1,76,77],[82,1,1,77,78]]],[2,1,1,78,79,[[115,1,1,78,79]]],[3,1,1,79,80,[[148,1,1,79,80]]],[4,7,7,80,87,[[153,1,1,80,81],[158,1,1,81,82],[161,2,2,82,84],[181,1,1,84,85],[182,1,1,85,86],[186,1,1,86,87]]],[5,1,1,87,88,[[210,1,1,87,88]]],[10,1,1,88,89,[[308,1,1,88,89]]],[11,1,1,89,90,[[325,1,1,89,90]]],[12,5,4,90,94,[[338,3,2,90,92],[353,1,1,92,93],[366,1,1,93,94]]],[13,1,1,94,95,[[396,1,1,94,95]]]],[416,418,516,517,518,521,523,525,549,550,553,554,556,595,605,653,654,655,658,663,664,667,669,677,678,679,684,686,693,698,700,701,704,708,709,710,719,723,727,728,732,747,748,749,753,757,759,760,764,766,773,774,778,779,781,786,891,915,926,937,1023,1038,1039,1040,1387,1466,1467,1504,1530,1578,1585,1594,1595,1606,1658,1663,2451,2474,3566,4729,4900,5096,5162,5184,5692,5728,5843,6479,9377,9894,10280,10286,10836,11182,11833]]],["Isaac's",[4,4,[[0,4,4,0,4,[[25,4,4,0,4]]]],[711,712,717,724]]]]},{"k":"H3328","v":[["Jezoar",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10392]]]]},{"k":"H3329","v":[["+",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11896]]]]},{"k":"H3330","v":[["*",[5,5,[[26,5,5,0,5,[[851,2,2,0,2],[852,1,1,2,3],[855,1,1,3,4],[856,1,1,4,5]]]],[21766,21803,21831,21917,21949]]],["True",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21831]]],["certain",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21803]]],["certainty",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21766]]],["true",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21917]]],["truth",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21949]]]]},{"k":"H3331","v":[["*",[4,4,[[16,1,1,0,1,[[429,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]],[22,2,2,2,4,[[692,1,1,2,3],[736,1,1,3,4]]]],[12765,16247,17939,18791]]],["bed",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16247]]],["lay",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12765]]],["spread",[2,2,[[22,2,2,0,2,[[692,1,1,0,1],[736,1,1,1,2]]]],[17939,18791]]]]},{"k":"H3332","v":[["*",[53,51,[[0,2,2,0,2,[[27,1,1,0,1],[34,1,1,1,2]]],[1,8,8,2,10,[[74,1,1,2,3],[75,1,1,3,4],[78,1,1,4,5],[85,1,1,5,6],[86,2,2,6,8],[87,2,2,8,10]]],[2,8,8,10,18,[[91,2,2,10,12],[97,2,2,12,14],[98,1,1,14,15],[103,2,2,15,17],[110,1,1,17,18]]],[3,1,1,18,19,[[121,1,1,18,19]]],[5,1,1,19,20,[[193,1,1,19,20]]],[8,1,1,20,21,[[245,1,1,20,21]]],[9,2,2,21,23,[[279,1,1,21,22],[281,1,1,22,23]]],[10,8,8,23,31,[[297,6,6,23,29],[308,1,1,29,30],[312,1,1,30,31]]],[11,7,7,31,38,[[315,1,1,31,32],[316,4,4,32,36],[321,2,2,36,38]]],[13,3,3,38,41,[[370,3,3,38,41]]],[17,7,6,41,47,[[446,1,1,41,42],[457,1,1,42,43],[472,1,1,43,44],[473,1,1,44,45],[476,3,2,45,47]]],[18,2,2,47,49,[[518,1,1,47,48],[522,1,1,48,49]]],[22,2,1,49,50,[[722,2,1,49,50]]],[25,1,1,50,51,[[825,1,1,50,51]]]],[791,1025,2207,2272,2343,2602,2607,2617,2638,2660,2763,2768,2929,2932,2962,3126,3137,3355,3807,5999,7419,8326,8413,8950,8957,8958,8964,8967,8980,9374,9515,9587,9607,9608,9643,9644,9759,9762,11248,11249,11263,13123,13405,13787,13831,13911,13912,14550,14599,18536,21059]]],["+",[2,2,[[1,1,1,0,1,[[87,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]]],[2660,8413]]],["cast",[10,10,[[1,6,6,0,6,[[74,1,1,0,1],[75,1,1,1,2],[85,1,1,2,3],[86,2,2,3,5],[87,1,1,5,6]]],[10,2,2,6,8,[[297,2,2,6,8]]],[13,2,2,8,10,[[370,2,2,8,10]]]],[2207,2272,2602,2607,2617,2638,8958,8980,11249,11263]]],["fast",[1,1,[[18,1,1,0,1,[[518,1,1,0,1]]]],[14550]]],["firm",[2,2,[[17,2,2,0,2,[[476,2,2,0,2]]]],[13911,13912]]],["groweth",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13831]]],["hard",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13912]]],["molten",[6,6,[[10,4,4,0,4,[[297,4,4,0,4]]],[13,1,1,4,5,[[370,1,1,4,5]]],[17,1,1,5,6,[[472,1,1,5,6]]]],[8950,8957,8964,8967,11248,13787]]],["out",[8,8,[[2,1,1,0,1,[[98,1,1,0,1]]],[5,1,1,1,2,[[193,1,1,1,2]]],[9,1,1,2,3,[[279,1,1,2,3]]],[10,1,1,3,4,[[312,1,1,3,4]]],[11,4,4,4,8,[[316,4,4,4,8]]]],[2962,5999,8326,9515,9607,9608,9643,9644]]],["overflown",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13405]]],["pour",[11,10,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,4,4,1,5,[[91,2,2,1,3],[103,2,2,3,5]]],[3,1,1,5,6,[[121,1,1,5,6]]],[10,1,1,6,7,[[308,1,1,6,7]]],[11,1,1,7,8,[[321,1,1,7,8]]],[22,2,1,8,9,[[722,2,1,8,9]]],[25,1,1,9,10,[[825,1,1,9,10]]]],[2343,2763,2768,3126,3137,3807,9374,9759,18536,21059]]],["poured",[9,9,[[0,2,2,0,2,[[27,1,1,0,1],[34,1,1,1,2]]],[2,3,3,2,5,[[97,2,2,2,4],[110,1,1,4,5]]],[8,1,1,5,6,[[245,1,1,5,6]]],[11,2,2,6,8,[[315,1,1,6,7],[321,1,1,7,8]]],[18,1,1,8,9,[[522,1,1,8,9]]]],[791,1025,2929,2932,3355,7419,9587,9762,14599]]],["stedfast",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13123]]]]},{"k":"H3333","v":[["cast",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8958]]]]},{"k":"H3334","v":[["*",[8,8,[[0,1,1,0,1,[[31,1,1,0,1]]],[6,2,2,1,3,[[212,1,1,1,2],[220,1,1,2,3]]],[8,1,1,3,4,[[265,1,1,3,4]]],[17,2,2,4,6,[[453,1,1,4,5],[455,1,1,5,6]]],[19,1,1,6,7,[[631,1,1,6,7]]],[22,1,1,7,8,[[727,1,1,7,8]]]],[935,6560,6820,7984,13283,13348,16502,18655]]],["distressed",[4,4,[[0,1,1,0,1,[[31,1,1,0,1]]],[6,2,2,1,3,[[212,1,1,1,2],[220,1,1,2,3]]],[8,1,1,3,4,[[265,1,1,3,4]]]],[935,6560,6820,7984]]],["narrow",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18655]]],["straitened",[2,2,[[17,1,1,0,1,[[453,1,1,0,1]]],[19,1,1,1,2,[[631,1,1,1,2]]]],[13283,16502]]],["straits",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13348]]]]},{"k":"H3335","v":[["*",[62,55,[[0,3,3,0,3,[[1,3,3,0,3]]],[9,1,1,3,4,[[283,1,1,3,4]]],[11,1,1,4,5,[[331,1,1,4,5]]],[12,1,1,5,6,[[341,1,1,5,6]]],[18,8,8,6,14,[[479,1,1,6,7],[510,1,1,7,8],[551,1,1,8,9],[571,2,2,9,11],[572,1,1,11,12],[581,1,1,12,13],[616,1,1,13,14]]],[22,27,24,14,38,[[700,1,1,14,15],[705,1,1,15,16],[707,2,1,16,17],[708,1,1,17,18],[715,1,1,18,19],[719,1,1,19,20],[721,4,4,20,24],[722,6,6,24,30],[723,6,4,30,34],[724,1,1,34,35],[727,1,1,35,36],[732,1,1,36,37],[742,1,1,37,38]]],[23,13,11,38,49,[[745,1,1,38,39],[754,1,1,39,40],[762,7,5,40,45],[763,2,2,45,47],[777,1,1,47,48],[795,1,1,48,49]]],[24,1,1,49,50,[[800,1,1,49,50]]],[29,2,2,50,52,[[882,1,1,50,51],[885,1,1,51,52]]],[34,2,1,52,53,[[904,2,1,52,53]]],[37,3,2,53,55,[[921,2,1,53,54],[922,1,1,54,55]]]],[37,38,49,8477,10086,10408,13954,14381,15065,15440,15451,15459,15597,16255,18063,18162,18209,18231,18378,18476,18506,18512,18515,18526,18535,18542,18543,18545,18554,18557,18568,18570,18572,18579,18597,18641,18740,18893,18951,19217,19386,19387,19388,19390,19395,19408,19418,19777,20231,20422,22423,22465,22766,23041,23046]]],["+",[1,1,[[0,1,1,0,1,[[1,1,1,0,1]]]],[37]]],["Maker",[2,2,[[22,2,2,0,2,[[723,2,2,0,2]]]],[18570,18572]]],["earthen",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8477]]],["fashioned",[2,2,[[18,1,1,0,1,[[616,1,1,0,1]]],[22,1,1,1,2,[[700,1,1,1,2]]]],[16255,18063]]],["fashioneth",[3,3,[[18,1,1,0,1,[[510,1,1,0,1]]],[22,2,2,1,3,[[722,1,1,1,2],[723,1,1,2,3]]]],[14381,18545,18570]]],["form",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18568]]],["formed",[22,21,[[0,2,2,0,2,[[1,2,2,0,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[18,2,2,3,5,[[571,1,1,3,4],[572,1,1,4,5]]],[22,14,13,5,18,[[705,1,1,5,6],[715,1,1,6,7],[721,4,4,7,11],[722,4,4,11,15],[723,2,1,15,16],[727,1,1,16,17],[732,1,1,17,18]]],[23,2,2,18,20,[[745,1,1,18,19],[777,1,1,19,20]]],[29,1,1,20,21,[[885,1,1,20,21]]]],[38,49,10086,15440,15459,18162,18378,18506,18512,18515,18526,18535,18543,18554,18557,18579,18641,18740,18951,19777,22465]]],["former",[2,2,[[23,2,2,0,2,[[754,1,1,0,1],[795,1,1,1,2]]]],[19217,20231]]],["formeth",[2,2,[[29,1,1,0,1,[[882,1,1,0,1]]],[37,1,1,1,2,[[922,1,1,1,2]]]],[22423,23046]]],["frame",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19395]]],["framed",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18209]]],["frameth",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15451]]],["made",[2,2,[[18,2,2,0,2,[[551,1,1,0,1],[581,1,1,1,2]]]],[15065,15597]]],["make",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18542]]],["maker",[2,1,[[34,2,1,0,1,[[904,2,1,0,1]]]],[22766]]],["potter",[8,6,[[22,2,2,0,2,[[719,1,1,0,1],[742,1,1,1,2]]],[23,3,2,2,4,[[762,3,2,2,4]]],[24,1,1,4,5,[[800,1,1,4,5]]],[37,2,1,5,6,[[921,2,1,5,6]]]],[18476,18893,19388,19390,20422,23041]]],["potter's",[7,7,[[18,1,1,0,1,[[479,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]],[23,5,5,2,7,[[762,3,3,2,5],[763,2,2,5,7]]]],[13954,18209,19386,19387,19390,19408,19418]]],["potters",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10408]]],["potters'",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18231]]],["purposed",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18597]]]]},{"k":"H3336","v":[["*",[9,9,[[0,2,2,0,2,[[5,1,1,0,1],[7,1,1,1,2]]],[4,1,1,2,3,[[183,1,1,2,3]]],[12,2,2,3,5,[[365,1,1,3,4],[366,1,1,4,5]]],[18,1,1,5,6,[[580,1,1,5,6]]],[22,2,2,6,8,[[704,1,1,6,7],[707,1,1,7,8]]],[34,1,1,8,9,[[904,1,1,8,9]]]],[142,204,5749,11152,11182,15563,18133,18209,22766]]],["frame",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15563]]],["framed",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18209]]],["imagination",[4,4,[[0,2,2,0,2,[[5,1,1,0,1],[7,1,1,1,2]]],[4,1,1,2,3,[[183,1,1,2,3]]],[12,1,1,3,4,[[366,1,1,3,4]]]],[142,204,5749,11182]]],["imaginations",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11152]]],["mind",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18133]]],["work",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22766]]]]},{"k":"H3337","v":[["Jezer",[3,3,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[12,1,1,2,3,[[344,1,1,2,3]]]],[1410,4538,10548]]]]},{"k":"H3338","v":[["members",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13267]]]]},{"k":"H3339","v":[["Jezerites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4538]]]]},{"k":"H3340","v":[["Izri",[1,1,[[12,1,1,0,1,[[362,1,1,0,1]]]],[11057]]]]},{"k":"H3341","v":[["*",[29,28,[[5,2,2,0,2,[[194,2,2,0,2]]],[6,1,1,2,3,[[219,1,1,2,3]]],[9,3,2,3,5,[[280,3,2,3,5]]],[11,2,2,5,7,[[334,2,2,5,7]]],[15,2,2,7,9,[[413,1,1,7,8],[414,1,1,8,9]]],[22,2,2,9,11,[[687,1,1,9,10],[711,1,1,10,11]]],[23,14,14,11,25,[[746,1,1,11,12],[753,2,2,12,14],[755,1,1,14,15],[761,1,1,15,16],[765,1,1,16,17],[776,1,1,17,18],[787,1,1,18,19],[790,1,1,19,20],[793,2,2,20,22],[794,1,1,22,23],[795,2,2,23,25]]],[24,1,1,25,26,[[800,1,1,25,26]]],[25,1,1,26,27,[[821,1,1,26,27]]],[29,1,1,27,28,[[879,1,1,27,28]]]],[6010,6021,6803,8386,8387,10158,10162,12299,12324,17847,18291,18980,19185,19187,19242,19384,19454,19760,20009,20064,20129,20154,20198,20242,20270,20431,20942,22378]]],["+",[5,5,[[5,2,2,0,2,[[194,2,2,0,2]]],[6,1,1,2,3,[[219,1,1,2,3]]],[9,2,2,3,5,[[280,2,2,3,5]]]],[6010,6021,6803,8386,8387]]],["burned",[7,7,[[15,2,2,0,2,[[413,1,1,0,1],[414,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]],[23,4,4,3,7,[[746,1,1,3,4],[793,1,1,4,5],[795,2,2,5,7]]]],[12299,12324,18291,18980,20129,20242,20270]]],["desolate",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20064]]],["kindle",[8,8,[[22,1,1,0,1,[[687,1,1,0,1]]],[23,5,5,1,6,[[761,1,1,1,2],[765,1,1,2,3],[787,1,1,3,4],[793,1,1,4,5],[794,1,1,5,6]]],[25,1,1,6,7,[[821,1,1,6,7]]],[29,1,1,7,8,[[879,1,1,7,8]]]],[17847,19384,19454,20009,20154,20198,20942,22378]]],["kindled",[4,4,[[11,2,2,0,2,[[334,2,2,0,2]]],[23,1,1,2,3,[[755,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]]],[10158,10162,19242,20431]]],["set",[2,2,[[9,1,1,0,1,[[280,1,1,0,1]]],[23,1,1,1,2,[[776,1,1,1,2]]]],[8386,19760]]],["up",[2,2,[[23,2,2,0,2,[[753,2,2,0,2]]]],[19185,19187]]]]},{"k":"H3342","v":[["*",[16,16,[[3,2,2,0,2,[[134,2,2,0,2]]],[4,2,2,2,4,[[167,1,1,2,3],[168,1,1,3,4]]],[6,1,1,4,5,[[217,1,1,4,5]]],[11,1,1,5,6,[[318,1,1,5,6]]],[17,1,1,6,7,[[459,1,1,6,7]]],[19,1,1,7,8,[[630,1,1,7,8]]],[22,2,2,8,10,[[683,1,1,8,9],[694,1,1,9,10]]],[23,1,1,10,11,[[792,1,1,10,11]]],[27,1,1,11,12,[[870,1,1,11,12]]],[28,2,2,12,14,[[877,1,1,12,13],[878,1,1,13,14]]],[36,1,1,14,15,[[910,1,1,14,15]]],[37,1,1,15,16,[[924,1,1,15,16]]]],[4284,4287,5333,5355,6719,9701,13447,16465,17741,17979,20113,22210,22335,22356,22871,23078]]],["+",[3,3,[[4,2,2,0,2,[[167,1,1,0,1],[168,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[5333,5355,20113]]],["fats",[2,2,[[28,2,2,0,2,[[877,1,1,0,1],[878,1,1,1,2]]]],[22335,22356]]],["presses",[2,2,[[19,1,1,0,1,[[630,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]]],[16465,17979]]],["pressfat",[1,1,[[36,1,1,0,1,[[910,1,1,0,1]]]],[22871]]],["winepress",[6,6,[[3,2,2,0,2,[[134,2,2,0,2]]],[6,1,1,2,3,[[217,1,1,2,3]]],[11,1,1,3,4,[[318,1,1,3,4]]],[22,1,1,4,5,[[683,1,1,4,5]]],[27,1,1,5,6,[[870,1,1,5,6]]]],[4284,4287,6719,9701,17741,22210]]],["winepresses",[2,2,[[17,1,1,0,1,[[459,1,1,0,1]]],[37,1,1,1,2,[[924,1,1,1,2]]]],[13447,23078]]]]},{"k":"H3343","v":[["Jekabzeel",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12613]]]]},{"k":"H3344","v":[["*",[9,9,[[2,3,3,0,3,[[95,3,3,0,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[22,3,3,4,7,[[688,1,1,4,5],[708,1,1,5,6],[743,1,1,6,7]]],[23,2,2,7,9,[[759,1,1,7,8],[761,1,1,8,9]]]],[2858,2861,2862,5780,17866,18231,18902,19329,19361]]],["+",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18231]]],["burn",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[23,2,2,1,3,[[759,1,1,1,2],[761,1,1,2,3]]]],[5780,19329,19361]]],["burneth",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18902]]],["burning",[3,3,[[2,3,3,0,3,[[95,3,3,0,3]]]],[2858,2861,2862]]],["kindle",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17866]]]]},{"k":"H3345","v":[["burning",[8,8,[[26,8,8,0,8,[[852,8,8,0,8]]]],[21813,21818,21822,21824,21827,21828,21830,21833]]]]},{"k":"H3346","v":[["burning",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21944]]]]},{"k":"H3347","v":[["Jokdeam",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6258]]]]},{"k":"H3348","v":[["Jakeh",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17252]]]]},{"k":"H3349","v":[["*",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[1483,17268]]],["gathering",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1483]]],["obey",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17268]]]]},{"k":"H3350","v":[["burning",[2,1,[[22,2,1,0,1,[[688,2,1,0,1]]]],[17866]]]]},{"k":"H3351","v":[["substance",[3,3,[[0,2,2,0,2,[[6,2,2,0,2]]],[4,1,1,2,3,[[163,1,1,2,3]]]],[163,182,5214]]]]},{"k":"H3352","v":[["fowler",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22216]]]]},{"k":"H3353","v":[["*",[3,3,[[18,1,1,0,1,[[568,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]],[23,1,1,2,3,[[749,1,1,2,3]]]],[15398,16545,19084]]],["fowler",[2,2,[[18,1,1,0,1,[[568,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]]],[15398,16545]]],["snares",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19084]]]]},{"k":"H3354","v":[["Jekuthiel",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10403]]]]},{"k":"H3355","v":[["Joktan",[6,6,[[0,3,3,0,3,[[9,3,3,0,3]]],[12,3,3,3,6,[[338,3,3,3,6]]]],[259,260,263,10271,10272,10275]]]]},{"k":"H3356","v":[["Jakim",[2,2,[[12,2,2,0,2,[[345,1,1,0,1],[361,1,1,1,2]]]],[10594,11027]]]]},{"k":"H3357","v":[["dear",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19711]]]]},{"k":"H3358","v":[["*",[2,2,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,1,1,1,2,[[851,1,1,1,2]]]],[12120,21769]]],["noble",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12120]]],["rare",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21769]]]]},{"k":"H3359","v":[["*",[3,2,[[12,3,2,0,2,[[339,2,1,0,1],[340,1,1,1,2]]]],[10347,10379]]],["Jecamiah",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10379]]],["Jekamiah",[2,1,[[12,2,1,0,1,[[339,2,1,0,1]]]],[10347]]]]},{"k":"H3360","v":[["Jekameam",[2,2,[[12,2,2,0,2,[[360,1,1,0,1],[361,1,1,1,2]]]],[11002,11038]]]]},{"k":"H3361","v":[["*",[2,2,[[10,1,1,0,1,[[294,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]]],[8856,10522]]],["Jokmeam",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10522]]],["Jokneam",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8856]]]]},{"k":"H3362","v":[["Jokneam",[3,3,[[5,3,3,0,3,[[198,1,1,0,1],[205,1,1,1,2],[207,1,1,2,3]]]],[6152,6332,6415]]]]},{"k":"H3363","v":[["*",[8,8,[[0,1,1,0,1,[[31,1,1,0,1]]],[3,1,1,1,2,[[141,1,1,1,2]]],[9,3,3,2,5,[[287,3,3,2,5]]],[23,1,1,5,6,[[750,1,1,5,6]]],[25,2,2,6,8,[[824,2,2,6,8]]]],[953,4475,8586,8589,8593,19097,21024,21025]]],["+",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4475]]],["alienated",[2,2,[[25,2,2,0,2,[[824,2,2,0,2]]]],[21024,21025]]],["depart",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19097]]],["hang",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8586]]],["hanged",[2,2,[[9,2,2,0,2,[[287,2,2,0,2]]]],[8589,8593]]],["joint",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[953]]]]},{"k":"H3364","v":[["*",[11,11,[[0,5,5,0,5,[[8,1,1,0,1],[27,1,1,1,2],[40,3,3,2,5]]],[6,2,2,5,7,[[226,2,2,5,7]]],[10,2,2,7,9,[[293,1,1,7,8],[308,1,1,8,9]]],[18,1,1,9,10,[[555,1,1,9,10]]],[34,1,1,10,11,[[904,1,1,10,11]]]],[229,789,1199,1202,1216,6963,6969,8831,9368,15178,22755]]],["awake",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22755]]],["awaked",[4,4,[[0,1,1,0,1,[[27,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[18,1,1,3,4,[[555,1,1,3,4]]]],[789,6963,9368,15178]]],["awoke",[6,6,[[0,4,4,0,4,[[8,1,1,0,1],[40,3,3,1,4]]],[6,1,1,4,5,[[226,1,1,4,5]]],[10,1,1,5,6,[[293,1,1,5,6]]]],[229,1199,1202,1216,6969,8831]]]]},{"k":"H3365","v":[["*",[11,11,[[8,2,2,0,2,[[253,1,1,0,1],[261,1,1,1,2]]],[11,2,2,2,4,[[313,2,2,2,4]]],[18,3,3,4,7,[[526,1,1,4,5],[549,1,1,5,6],[616,1,1,6,7]]],[19,1,1,7,8,[[652,1,1,7,8]]],[22,2,2,8,10,[[691,1,1,8,9],[721,1,1,9,10]]],[37,1,1,10,11,[[921,1,1,10,11]]]],[7706,7926,9546,9547,14656,15014,16256,17130,17918,18509,23041]]],["Withdraw",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17130]]],["at",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23041]]],["by",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7706]]],["precious",[8,8,[[8,1,1,0,1,[[261,1,1,0,1]]],[11,2,2,1,3,[[313,2,2,1,3]]],[18,3,3,3,6,[[526,1,1,3,4],[549,1,1,4,5],[616,1,1,5,6]]],[22,2,2,6,8,[[691,1,1,6,7],[721,1,1,7,8]]]],[7926,9546,9547,14656,15014,16256,17918,18509]]]]},{"k":"H3366","v":[["*",[17,15,[[16,10,8,0,8,[[426,2,2,0,2],[431,7,5,2,7],[433,1,1,7,8]]],[17,1,1,8,9,[[463,1,1,8,9]]],[18,2,2,9,11,[[526,2,2,9,11]]],[19,1,1,11,12,[[647,1,1,11,12]]],[23,1,1,12,13,[[764,1,1,12,13]]],[25,1,1,13,14,[[823,1,1,13,14]]],[37,1,1,14,15,[[921,1,1,14,15]]]],[12706,12722,12796,12799,12800,12802,12804,12833,13514,14660,14668,16969,19427,21001,23041]]],["honour",[12,10,[[16,10,8,0,8,[[426,2,2,0,2],[431,7,5,2,7],[433,1,1,7,8]]],[18,2,2,8,10,[[526,2,2,8,10]]]],[12706,12722,12796,12799,12800,12802,12804,12833,14660,14668]]],["precious",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16969]]],["price",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23041]]],["thing",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13514]]],["things",[2,2,[[23,1,1,0,1,[[764,1,1,0,1]]],[25,1,1,1,2,[[823,1,1,1,2]]]],[19427,21001]]]]},{"k":"H3367","v":[["*",[7,7,[[26,7,7,0,7,[[851,2,2,0,2],[853,2,2,2,4],[854,2,2,4,6],[856,1,1,6,7]]]],[21764,21795,21867,21873,21892,21894,21947]]],["glory",[5,5,[[26,5,5,0,5,[[851,1,1,0,1],[853,1,1,1,2],[854,2,2,2,4],[856,1,1,4,5]]]],[21795,21873,21892,21894,21947]]],["honour",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21764,21867]]]]},{"k":"H3368","v":[["*",[36,36,[[8,1,1,0,1,[[238,1,1,0,1]]],[9,1,1,1,2,[[278,1,1,1,2]]],[10,7,7,2,9,[[295,1,1,2,3],[297,3,3,3,6],[300,3,3,6,9]]],[12,2,2,9,11,[[357,1,1,9,10],[366,1,1,10,11]]],[13,5,5,11,16,[[369,1,1,11,12],[375,3,3,12,15],[398,1,1,15,16]]],[17,2,2,16,18,[[463,1,1,16,17],[466,1,1,17,18]]],[18,4,4,18,22,[[513,1,1,18,19],[514,1,1,19,20],[522,1,1,20,21],[593,1,1,21,22]]],[19,6,6,22,28,[[628,1,1,22,23],[630,1,1,23,24],[633,1,1,24,25],[639,1,1,25,26],[644,1,1,26,27],[651,1,1,27,28]]],[20,1,1,28,29,[[668,1,1,28,29]]],[22,1,1,29,30,[[706,1,1,29,30]]],[23,1,1,30,31,[[759,1,1,30,31]]],[24,1,1,31,32,[[800,1,1,31,32]]],[25,2,2,32,34,[[828,1,1,32,33],[829,1,1,33,34]]],[26,1,1,34,35,[[860,1,1,34,35]]],[37,1,1,35,36,[[924,1,1,35,36]]]],[7277,8316,8895,8943,8944,8945,9081,9089,9090,10928,11166,11235,11365,11373,11374,11902,13520,13614,14445,14470,14606,15863,16413,16470,16566,16746,16900,17083,17494,18180,19334,20422,21143,21170,22074,23074]]],["Precious",[1,1,[[18,1,1,0,1,[[593,1,1,0,1]]]],[15863]]],["brightness",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13614]]],["clear",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23074]]],["costly",[4,4,[[10,4,4,0,4,[[295,1,1,0,1],[297,3,3,1,4]]]],[8895,8943,8944,8945]]],["excellent",[2,2,[[18,1,1,0,1,[[513,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]]],[14445,16900]]],["fat",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14470]]],["honourable",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14606]]],["precious",[24,24,[[8,1,1,0,1,[[238,1,1,0,1]]],[9,1,1,1,2,[[278,1,1,1,2]]],[10,3,3,2,5,[[300,3,3,2,5]]],[12,2,2,5,7,[[357,1,1,5,6],[366,1,1,6,7]]],[13,5,5,7,12,[[369,1,1,7,8],[375,3,3,8,11],[398,1,1,11,12]]],[17,1,1,12,13,[[463,1,1,12,13]]],[19,5,5,13,18,[[628,1,1,13,14],[630,1,1,14,15],[633,1,1,15,16],[639,1,1,16,17],[651,1,1,17,18]]],[22,1,1,18,19,[[706,1,1,18,19]]],[23,1,1,19,20,[[759,1,1,19,20]]],[24,1,1,20,21,[[800,1,1,20,21]]],[25,2,2,21,23,[[828,1,1,21,22],[829,1,1,22,23]]],[26,1,1,23,24,[[860,1,1,23,24]]]],[7277,8316,9081,9089,9090,10928,11166,11235,11365,11373,11374,11902,13520,16413,16470,16566,16746,17083,18180,19334,20422,21143,21170,22074]]],["reputation",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17494]]]]},{"k":"H3369","v":[["*",[9,9,[[4,1,1,0,1,[[159,1,1,0,1]]],[18,3,3,1,4,[[486,1,1,1,2],[601,1,1,2,3],[618,1,1,3,4]]],[19,1,1,4,5,[[633,1,1,4,5]]],[20,1,1,5,6,[[667,1,1,5,6]]],[22,2,2,6,8,[[686,1,1,6,7],[706,1,1,7,8]]],[23,1,1,8,9,[[794,1,1,8,9]]]],[5136,14037,16109,16285,16542,17487,17822,18177,20190]]],["fowlers",[1,1,[[18,1,1,0,1,[[601,1,1,0,1]]]],[16109]]],["laid",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16285]]],["snare",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20190]]],["snared",[6,6,[[4,1,1,0,1,[[159,1,1,0,1]]],[18,1,1,1,2,[[486,1,1,1,2]]],[19,1,1,2,3,[[633,1,1,2,3]]],[20,1,1,3,4,[[667,1,1,3,4]]],[22,2,2,4,6,[[686,1,1,4,5],[706,1,1,5,6]]]],[5136,14037,16542,17487,17822,18177]]]]},{"k":"H3370","v":[["Jokshan",[4,3,[[0,2,2,0,2,[[24,2,2,0,2]]],[12,2,1,2,3,[[338,2,1,2,3]]]],[660,661,10284]]]]},{"k":"H3371","v":[["Joktheel",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[11,1,1,1,2,[[326,1,1,1,2]]]],[6240,9903]]]]},{"k":"H3372","v":[["*",[334,324,[[0,20,19,0,19,[[2,1,1,0,1],[14,1,1,1,2],[17,1,1,2,3],[18,1,1,3,4],[19,1,1,4,5],[20,1,1,5,6],[25,2,2,6,8],[27,2,1,8,9],[30,1,1,9,10],[31,2,2,10,12],[34,1,1,12,13],[41,1,1,13,14],[42,2,2,14,16],[45,1,1,16,17],[49,2,2,17,19]]],[1,13,13,19,32,[[50,2,2,19,21],[51,1,1,21,22],[52,1,1,22,23],[58,2,2,23,25],[63,3,3,25,28],[64,1,1,28,29],[69,1,1,29,30],[83,2,2,30,32]]],[2,8,8,32,40,[[108,4,4,32,36],[114,3,3,36,39],[115,1,1,39,40]]],[3,4,3,40,43,[[128,1,1,40,41],[130,2,1,41,42],[137,1,1,42,43]]],[4,38,37,43,80,[[153,3,3,43,46],[154,1,1,46,47],[155,2,2,47,49],[156,1,1,49,50],[157,2,2,50,52],[158,3,3,52,55],[159,3,3,55,58],[160,2,2,58,60],[162,4,4,60,64],[165,2,2,64,66],[166,1,1,66,67],[169,2,2,67,69],[171,1,1,69,70],[172,2,2,70,72],[173,1,1,72,73],[177,1,1,73,74],[180,3,2,74,76],[183,4,4,76,80]]],[5,11,10,80,90,[[190,3,2,80,82],[194,1,1,82,83],[195,1,1,83,84],[196,3,3,84,87],[197,1,1,87,88],[208,1,1,88,89],[210,1,1,89,90]]],[6,7,7,90,97,[[214,1,1,90,91],[216,3,3,91,94],[217,1,1,94,95],[218,1,1,95,96],[223,1,1,96,97]]],[7,1,1,97,98,[[234,1,1,97,98]]],[8,22,22,98,120,[[238,1,1,98,99],[239,2,2,99,101],[242,1,1,101,102],[247,4,4,102,106],[249,1,1,106,107],[250,1,1,107,108],[252,2,2,108,110],[253,2,2,110,112],[256,1,1,112,113],[257,1,1,113,114],[258,2,2,114,116],[263,3,3,116,119],[266,1,1,119,120]]],[9,9,9,120,129,[[267,1,1,120,121],[269,1,1,121,122],[272,1,1,122,123],[273,1,1,123,124],[275,1,1,124,125],[276,1,1,125,126],[278,1,1,126,127],[279,1,1,127,128],[280,1,1,128,129]]],[10,8,8,129,137,[[291,2,2,129,131],[293,1,1,131,132],[298,2,2,132,134],[307,1,1,134,135],[308,2,2,135,137]]],[11,19,19,137,156,[[313,1,1,137,138],[316,1,1,138,139],[318,1,1,139,140],[322,1,1,140,141],[329,12,12,141,153],[331,1,1,153,154],[337,2,2,154,156]]],[12,6,6,156,162,[[347,1,1,156,157],[350,1,1,157,158],[353,1,1,158,159],[354,1,1,159,160],[359,1,1,160,161],[365,1,1,161,162]]],[13,7,7,162,169,[[372,2,2,162,164],[386,3,3,164,167],[398,2,2,167,169]]],[15,11,10,169,179,[[413,2,2,169,171],[414,1,1,171,172],[416,2,1,172,173],[418,4,4,173,177],[419,1,1,177,178],[421,1,1,178,179]]],[17,9,9,179,188,[[436,1,1,179,180],[440,2,2,180,182],[441,1,1,182,183],[444,1,1,183,184],[446,1,1,184,185],[467,1,1,185,186],[472,2,2,186,188]]],[18,47,47,188,235,[[480,1,1,188,189],[492,1,1,189,190],[500,1,1,190,191],[504,2,2,191,193],[510,1,1,193,194],[511,1,1,194,195],[517,1,1,195,196],[522,1,1,196,197],[523,1,1,197,198],[524,1,1,198,199],[526,2,2,199,201],[529,1,1,201,202],[532,1,1,202,203],[533,3,3,203,206],[541,2,2,206,208],[542,2,2,208,210],[543,2,2,210,212],[544,1,1,212,213],[545,1,1,213,214],[549,1,1,214,215],[553,3,3,215,218],[563,1,1,218,219],[566,1,1,219,220],[568,1,1,220,221],[573,1,1,221,222],[576,1,1,222,223],[579,1,1,223,224],[583,1,1,224,225],[588,1,1,225,226],[589,3,3,226,229],[595,1,1,229,230],[596,2,2,230,232],[607,1,1,232,233],[616,1,1,233,234],[622,1,1,234,235]]],[19,5,5,235,240,[[630,2,2,235,237],[641,1,1,237,238],[651,1,1,238,239],[658,1,1,239,240]]],[20,7,7,240,247,[[661,1,1,240,241],[663,1,1,241,242],[666,2,2,242,244],[667,1,1,244,245],[670,2,2,245,247]]],[22,25,24,247,271,[[685,1,1,247,248],[686,1,1,248,249],[688,1,1,249,250],[696,2,2,250,252],[699,1,1,252,253],[703,1,1,253,254],[713,1,1,254,255],[715,1,1,255,256],[718,1,1,256,257],[719,4,4,257,261],[721,2,2,261,263],[722,1,1,263,264],[729,2,2,264,266],[732,2,2,266,268],[735,2,1,268,269],[737,1,1,269,270],[742,1,1,270,271]]],[23,20,18,271,289,[[745,1,1,271,272],[747,1,1,272,273],[749,2,2,273,275],[754,2,2,275,277],[767,1,1,277,278],[770,2,2,278,280],[774,1,1,280,281],[776,1,1,281,282],[784,1,1,282,283],[785,1,1,283,284],[786,3,1,284,285],[788,1,1,285,286],[790,2,2,286,288],[795,1,1,288,289]]],[24,1,1,289,290,[[799,1,1,289,290]]],[25,6,4,290,294,[[802,1,1,290,291],[803,3,1,291,292],[804,1,1,292,293],[812,1,1,293,294]]],[26,4,4,294,298,[[850,1,1,294,295],[858,1,1,295,296],[859,2,2,296,298]]],[27,1,1,298,299,[[871,1,1,298,299]]],[28,4,4,299,303,[[877,4,4,299,303]]],[29,1,1,303,304,[[881,1,1,303,304]]],[31,4,4,304,308,[[889,4,4,304,308]]],[32,1,1,308,309,[[899,1,1,308,309]]],[34,2,2,309,311,[[903,1,1,309,310],[905,1,1,310,311]]],[35,3,3,311,314,[[907,1,1,311,312],[908,2,2,312,314]]],[36,2,2,314,316,[[909,1,1,314,315],[910,1,1,315,316]]],[37,3,3,316,319,[[918,2,2,316,318],[919,1,1,318,319]]],[38,5,5,319,324,[[925,1,1,319,320],[926,1,1,320,321],[927,2,2,321,323],[928,1,1,323,324]]]],[65,361,439,487,503,530,699,716,790,904,935,939,1028,1287,1308,1313,1389,1525,1527,1549,1553,1568,1585,1762,1772,1899,1902,1920,1931,2071,2506,2526,3284,3295,3311,3313,3486,3505,3512,3526,4067,4117,4374,4911,4913,4921,4942,4977,4997,5014,5058,5082,5088,5099,5110,5129,5130,5132,5143,5152,5198,5203,5206,5207,5276,5283,5313,5377,5383,5426,5428,5430,5468,5565,5621,5669,5734,5736,5740,5741,5924,5934,6003,6061,6066,6072,6089,6113,6451,6490,6617,6664,6677,6681,6704,6739,6890,7183,7291,7304,7317,7359,7474,7478,7480,7484,7534,7584,7629,7642,7688,7705,7784,7810,7813,7827,7947,7955,7962,8013,8036,8092,8166,8203,8234,8259,8304,8345,8371,8767,8768,8844,9025,9028,9330,9344,9353,9548,9604,9690,9797,9990,10008,10011,10015,10016,10017,10018,10019,10020,10021,10022,10024,10067,10246,10248,10663,10772,10845,10884,10977,11163,11313,11315,11590,11602,11604,11882,11893,12301,12307,12309,12373,12410,12414,12415,12420,12422,12543,12878,12972,12973,12999,13086,13123,13634,13791,13793,13963,14091,14239,14286,14288,14374,14397,14528,14601,14616,14627,14653,14664,14716,14751,14758,14759,14766,14854,14859,14865,14868,14876,14878,14900,14935,15005,15088,15089,15093,15295,15333,15400,15469,15502,15536,15673,15802,15804,15810,15811,15875,15961,16018,16144,16253,16326,16462,16480,16774,17100,17305,17373,17404,17470,17471,17477,17528,17536,17786,17819,17874,17999,18004,18036,18121,18324,18358,18429,18456,18461,18464,18465,18506,18510,18535,18680,18685,18727,18737,18776,18819,18888,18954,19010,19080,19082,19206,19208,19488,19591,19593,19677,19770,19950,19975,19986,20020,20072,20073,20258,20411,20486,20498,20511,20663,21747,21992,22027,22034,22228,22322,22332,22333,22342,22403,22536,22540,22541,22547,22681,22738,22770,22816,22827,22836,22852,22860,22989,22991,23004,23103,23108,23125,23136,23143]]],["+",[71,70,[[0,2,2,0,2,[[19,1,1,0,1],[31,1,1,1,2]]],[1,5,5,2,7,[[50,2,2,2,4],[58,2,2,4,6],[63,1,1,6,7]]],[2,5,5,7,12,[[108,2,2,7,9],[114,3,3,9,12]]],[3,1,1,12,13,[[128,1,1,12,13]]],[4,11,11,13,24,[[158,2,2,13,15],[159,1,1,15,16],[162,2,2,16,18],[166,1,1,18,19],[169,1,1,19,20],[172,1,1,20,21],[180,1,1,21,22],[183,2,2,22,24]]],[5,4,4,24,28,[[190,2,2,24,26],[208,1,1,26,27],[210,1,1,27,28]]],[6,1,1,28,29,[[216,1,1,28,29]]],[8,5,5,29,34,[[247,3,3,29,32],[249,1,1,32,33],[250,1,1,33,34]]],[9,1,1,34,35,[[269,1,1,34,35]]],[10,4,4,35,39,[[291,1,1,35,36],[293,1,1,36,37],[308,2,2,37,39]]],[11,7,7,39,46,[[313,1,1,39,40],[316,1,1,40,41],[329,4,4,41,45],[331,1,1,45,46]]],[12,2,2,46,48,[[347,1,1,46,47],[350,1,1,47,48]]],[13,2,2,48,50,[[386,1,1,48,49],[398,1,1,49,50]]],[15,3,3,50,53,[[413,1,1,50,51],[418,1,1,51,52],[419,1,1,52,53]]],[18,3,3,53,56,[[511,1,1,53,54],[579,1,1,54,55],[589,1,1,55,56]]],[19,1,1,56,57,[[630,1,1,56,57]]],[20,2,2,57,59,[[661,1,1,57,58],[670,1,1,58,59]]],[22,3,3,59,62,[[715,1,1,59,60],[718,1,1,60,61],[737,1,1,61,62]]],[23,3,3,62,65,[[749,1,1,62,63],[770,1,1,63,64],[786,1,1,64,65]]],[25,2,1,65,66,[[803,2,1,65,66]]],[26,1,1,66,67,[[850,1,1,66,67]]],[28,1,1,67,68,[[877,1,1,67,68]]],[31,2,2,68,70,[[889,2,2,68,70]]]],[503,935,1549,1553,1762,1772,1920,3295,3313,3486,3505,3512,4067,5088,5099,5130,5198,5206,5313,5383,5428,5669,5740,5741,5924,5934,6451,6490,6681,7474,7478,7484,7534,7584,8092,8768,8844,9344,9353,9548,9604,10011,10015,10016,10024,10067,10663,10772,11602,11882,12307,12410,12422,14397,15536,15804,16462,17373,17536,18358,18429,18819,19082,19591,19986,20498,21747,22333,22541,22547]]],["Fear",[31,31,[[0,3,3,0,3,[[14,1,1,0,1],[34,1,1,1,2],[49,1,1,2,3]]],[1,2,2,3,5,[[63,1,1,3,4],[69,1,1,4,5]]],[3,1,1,5,6,[[137,1,1,5,6]]],[4,1,1,6,7,[[155,1,1,6,7]]],[5,3,3,7,10,[[194,1,1,7,8],[196,2,2,8,10]]],[8,3,3,10,13,[[239,1,1,10,11],[247,1,1,11,12],[258,1,1,12,13]]],[9,1,1,13,14,[[275,1,1,13,14]]],[10,1,1,14,15,[[307,1,1,14,15]]],[11,2,2,15,17,[[318,1,1,15,16],[337,1,1,16,17]]],[22,7,7,17,24,[[719,3,3,17,20],[721,2,2,20,22],[722,1,1,22,23],[732,1,1,23,24]]],[23,3,3,24,27,[[749,1,1,24,25],[784,1,1,25,26],[790,1,1,26,27]]],[24,1,1,27,28,[[799,1,1,27,28]]],[26,1,1,28,29,[[859,1,1,28,29]]],[28,1,1,29,30,[[877,1,1,29,30]]],[35,1,1,30,31,[[908,1,1,30,31]]]],[361,1028,1525,1902,2071,4374,4977,6003,6072,6089,7317,7480,7827,8234,9330,9690,10246,18461,18464,18465,18506,18510,18535,18727,19080,19950,20073,20411,22027,22332,22836]]],["acts",[1,1,[[18,1,1,0,1,[[622,1,1,0,1]]]],[16326]]],["affright",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11893]]],["afraid",[62,61,[[0,6,6,0,6,[[2,1,1,0,1],[17,1,1,1,2],[27,1,1,2,3],[30,1,1,3,4],[41,1,1,4,5],[42,1,1,5,6]]],[1,3,3,6,9,[[52,1,1,6,7],[63,1,1,7,8],[83,1,1,8,9]]],[4,5,5,9,14,[[153,1,1,9,10],[154,1,1,10,11],[157,1,1,11,12],[159,1,1,12,13],[180,1,1,13,14]]],[5,2,2,14,16,[[195,1,1,14,15],[197,1,1,15,16]]],[8,12,12,16,28,[[239,1,1,16,17],[242,1,1,17,18],[252,2,2,18,20],[253,2,2,20,22],[256,1,1,22,23],[258,1,1,23,24],[263,3,3,24,27],[266,1,1,27,28]]],[9,3,3,28,31,[[267,1,1,28,29],[272,1,1,29,30],[280,1,1,30,31]]],[11,2,2,31,33,[[322,1,1,31,32],[337,1,1,32,33]]],[15,3,3,33,36,[[414,1,1,33,34],[416,1,1,34,35],[418,1,1,35,36]]],[17,3,3,36,39,[[440,2,2,36,38],[441,1,1,38,39]]],[18,9,9,39,48,[[480,1,1,39,40],[526,1,1,40,41],[533,2,2,41,43],[542,1,1,43,44],[568,1,1,44,45],[589,2,2,45,47],[596,1,1,47,48]]],[19,2,2,48,50,[[630,1,1,48,49],[658,1,1,49,50]]],[20,1,1,50,51,[[670,1,1,50,51]]],[22,2,2,51,53,[[688,1,1,51,52],[729,1,1,52,53]]],[23,6,5,53,58,[[745,1,1,53,54],[754,1,1,54,55],[770,1,1,55,56],[785,1,1,56,57],[786,2,1,57,58]]],[25,1,1,58,59,[[803,1,1,58,59]]],[31,1,1,59,60,[[889,1,1,59,60]]],[34,1,1,60,61,[[905,1,1,60,61]]]],[65,439,790,904,1287,1308,1585,1899,2526,4921,4942,5058,5129,5621,6061,6113,7304,7359,7629,7642,7688,7705,7784,7813,7947,7955,7962,8013,8036,8166,8371,9797,10248,12309,12373,12414,12972,12973,12999,13963,14664,14758,14766,14868,15400,15810,15811,16018,16480,17305,17528,17874,18685,18954,19206,19593,19975,19986,20498,22536,22770]]],["dread",[1,1,[[12,1,1,0,1,[[359,1,1,0,1]]]],[10977]]],["dreadful",[5,5,[[0,1,1,0,1,[[27,1,1,0,1]]],[26,1,1,1,2,[[858,1,1,1,2]]],[34,1,1,2,3,[[903,1,1,2,3]]],[38,2,2,3,5,[[925,1,1,3,4],[928,1,1,4,5]]]],[790,21992,22738,23103,23143]]],["durst",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13634]]],["fear",[93,92,[[0,6,6,0,6,[[20,1,1,0,1],[25,1,1,1,2],[31,1,1,2,3],[42,1,1,3,4],[45,1,1,4,5],[49,1,1,5,6]]],[2,1,1,6,7,[[108,1,1,6,7]]],[3,2,1,7,8,[[130,2,1,7,8]]],[4,14,14,8,22,[[153,1,1,8,9],[155,1,1,9,10],[156,1,1,10,11],[157,1,1,11,12],[158,1,1,12,13],[160,1,1,13,14],[165,2,2,14,16],[169,1,1,16,17],[171,1,1,17,18],[172,1,1,18,19],[173,1,1,19,20],[183,2,2,20,22]]],[6,4,4,22,26,[[214,1,1,22,23],[216,2,2,23,25],[217,1,1,25,26]]],[7,1,1,26,27,[[234,1,1,26,27]]],[8,1,1,27,28,[[257,1,1,27,28]]],[9,1,1,28,29,[[279,1,1,28,29]]],[10,2,2,29,31,[[298,2,2,29,31]]],[11,6,6,31,37,[[329,6,6,31,37]]],[12,1,1,37,38,[[365,1,1,37,38]]],[13,3,3,38,41,[[372,2,2,38,40],[386,1,1,40,41]]],[15,2,2,41,43,[[418,2,2,41,43]]],[17,4,4,43,47,[[436,1,1,43,44],[444,1,1,44,45],[446,1,1,45,46],[472,1,1,46,47]]],[18,18,18,47,65,[[492,1,1,47,48],[500,1,1,48,49],[504,2,2,49,51],[510,1,1,51,52],[517,1,1,52,53],[523,1,1,53,54],[526,1,1,54,55],[529,1,1,55,56],[532,1,1,56,57],[533,1,1,57,58],[541,2,2,58,60],[544,1,1,60,61],[549,1,1,61,62],[563,1,1,62,63],[595,1,1,63,64],[596,1,1,64,65]]],[19,1,1,65,66,[[651,1,1,65,66]]],[20,2,2,66,68,[[663,1,1,66,67],[666,1,1,67,68]]],[22,6,6,68,74,[[685,1,1,68,69],[686,1,1,69,70],[703,1,1,70,71],[713,1,1,71,72],[729,1,1,72,73],[732,1,1,73,74]]],[23,6,6,74,80,[[754,1,1,74,75],[767,1,1,75,76],[774,1,1,76,77],[776,1,1,77,78],[790,1,1,78,79],[795,1,1,79,80]]],[25,1,1,80,81,[[804,1,1,80,81]]],[26,1,1,81,82,[[859,1,1,81,82]]],[29,1,1,82,83,[[881,1,1,82,83]]],[31,1,1,83,84,[[889,1,1,83,84]]],[32,1,1,84,85,[[899,1,1,84,85]]],[35,1,1,85,86,[[908,1,1,85,86]]],[36,2,2,86,88,[[909,1,1,86,87],[910,1,1,87,88]]],[37,3,3,88,91,[[918,2,2,88,90],[919,1,1,90,91]]],[38,1,1,91,92,[[927,1,1,91,92]]]],[530,716,939,1313,1389,1527,3284,4117,4913,4997,5014,5082,5110,5143,5276,5283,5377,5426,5430,5468,5734,5736,6617,6664,6677,6704,7183,7810,8345,9025,9028,10017,10018,10019,10020,10021,10022,11163,11313,11315,11604,12415,12420,12878,13086,13123,13793,14091,14239,14286,14288,14374,14528,14616,14653,14716,14751,14759,14854,14859,14900,15005,15295,15875,15961,17100,17404,17470,17786,17819,18121,18324,18680,18737,19208,19488,19677,19770,20072,20258,20511,22034,22403,22540,22681,22827,22852,22860,22989,22991,23004,23125]]],["feared",[27,27,[[0,2,2,0,2,[[18,1,1,0,1],[25,1,1,1,2]]],[1,1,1,2,3,[[51,1,1,2,3]]],[4,1,1,3,4,[[177,1,1,3,4]]],[5,2,2,4,6,[[190,1,1,4,5],[196,1,1,5,6]]],[6,1,1,6,7,[[218,1,1,6,7]]],[8,1,1,7,8,[[238,1,1,7,8]]],[9,2,2,8,10,[[276,1,1,8,9],[278,1,1,9,10]]],[10,1,1,10,11,[[291,1,1,10,11]]],[11,2,2,11,13,[[329,2,2,11,13]]],[12,1,1,13,14,[[353,1,1,13,14]]],[13,1,1,14,15,[[386,1,1,14,15]]],[18,4,4,15,19,[[553,2,2,15,17],[573,1,1,17,18],[607,1,1,18,19]]],[22,2,2,19,21,[[719,1,1,19,20],[735,1,1,20,21]]],[23,2,2,21,23,[[747,1,1,21,22],[788,1,1,22,23]]],[25,1,1,23,24,[[812,1,1,23,24]]],[27,1,1,24,25,[[871,1,1,24,25]]],[38,2,2,25,27,[[926,1,1,25,26],[927,1,1,26,27]]]],[487,699,1568,5565,5924,6066,6739,7291,8259,8304,8767,9990,10008,10845,11590,15088,15089,15469,16144,18456,18776,19010,20020,20663,22228,23108,23136]]],["fearest",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18776]]],["feareth",[3,3,[[19,1,1,0,1,[[641,1,1,0,1]]],[20,2,2,1,3,[[666,1,1,1,2],[667,1,1,2,3]]]],[16774,17471,17477]]],["fearful",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]]],[1931,5669]]],["fearfully",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16253]]],["reverence",[3,3,[[2,2,2,0,2,[[108,1,1,0,1],[115,1,1,1,2]]],[18,1,1,2,3,[[566,1,1,2,3]]]],[3311,3526,15333]]],["reverend",[1,1,[[18,1,1,0,1,[[588,1,1,0,1]]]],[15802]]],["terrible",[24,24,[[4,4,4,0,4,[[153,1,1,0,1],[159,1,1,1,2],[160,1,1,2,3],[162,1,1,3,4]]],[6,1,1,4,5,[[223,1,1,4,5]]],[9,1,1,5,6,[[273,1,1,5,6]]],[15,3,3,6,9,[[413,1,1,6,7],[416,1,1,7,8],[421,1,1,8,9]]],[17,1,1,9,10,[[472,1,1,9,10]]],[18,7,7,10,17,[[522,1,1,10,11],[524,1,1,11,12],[543,2,2,12,14],[545,1,1,14,15],[553,1,1,15,16],[576,1,1,16,17]]],[22,3,3,17,20,[[696,2,2,17,19],[699,1,1,19,20]]],[25,1,1,20,21,[[802,1,1,20,21]]],[28,2,2,21,23,[[877,2,2,21,23]]],[35,1,1,23,24,[[907,1,1,23,24]]]],[4911,5132,5152,5203,6890,8203,12301,12373,12543,13791,14601,14627,14876,14878,14935,15093,15502,17999,18004,18036,20486,22322,22342,22816]]],["terribleness",[1,1,[[12,1,1,0,1,[[354,1,1,0,1]]]],[10884]]],["thing",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2506]]],["things",[4,4,[[4,1,1,0,1,[[162,1,1,0,1]]],[18,2,2,1,3,[[542,1,1,1,2],[583,1,1,2,3]]],[22,1,1,3,4,[[742,1,1,3,4]]]],[5207,14865,15673,18888]]]]},{"k":"H3373","v":[["*",[43,43,[[0,2,2,0,2,[[21,1,1,0,1],[41,1,1,1,2]]],[1,1,1,2,3,[[67,1,1,2,3]]],[4,1,1,3,4,[[172,1,1,3,4]]],[6,1,1,4,5,[[217,1,1,4,5]]],[17,3,3,5,8,[[436,2,2,5,7],[437,1,1,7,8]]],[18,26,26,8,34,[[499,2,2,8,10],[502,2,2,10,12],[508,1,1,12,13],[510,1,1,13,14],[511,2,2,14,16],[537,1,1,16,17],[538,1,1,17,18],[543,1,1,18,19],[562,1,1,19,20],[580,3,3,20,23],[588,1,1,23,24],[592,2,2,24,26],[595,1,1,26,27],[596,2,2,27,29],[605,2,2,29,31],[612,1,1,31,32],[622,1,1,32,33],[624,1,1,33,34]]],[19,3,3,34,37,[[640,1,1,34,35],[641,1,1,35,36],[658,1,1,36,37]]],[20,2,2,37,39,[[665,1,1,37,38],[666,1,1,38,39]]],[22,1,1,39,40,[[728,1,1,39,40]]],[23,1,1,40,41,[[786,1,1,40,41]]],[38,2,2,41,43,[[927,1,1,41,42],[928,1,1,42,43]]]],[559,1270,2020,5435,6697,12870,12877,12894,14227,14229,14263,14265,14350,14384,14395,14397,14811,14824,14889,15280,15560,15562,15566,15798,15841,15843,15873,15972,15977,16127,16130,16195,16339,16362,16760,16788,17314,17447,17470,18672,19991,23136,23140]]],["+",[2,2,[[0,1,1,0,1,[[41,1,1,0,1]]],[23,1,1,1,2,[[786,1,1,1,2]]]],[1270,19991]]],["fear",[26,26,[[1,1,1,0,1,[[67,1,1,0,1]]],[18,23,23,1,24,[[499,2,2,1,3],[502,1,1,3,4],[508,1,1,4,5],[510,1,1,5,6],[511,2,2,6,8],[537,1,1,8,9],[538,1,1,9,10],[543,1,1,10,11],[562,1,1,11,12],[580,3,3,12,15],[588,1,1,15,16],[592,2,2,16,18],[595,1,1,18,19],[596,2,2,19,21],[612,1,1,21,22],[622,1,1,22,23],[624,1,1,23,24]]],[20,1,1,24,25,[[666,1,1,24,25]]],[38,1,1,25,26,[[928,1,1,25,26]]]],[2020,14227,14229,14265,14350,14384,14395,14397,14811,14824,14889,15280,15560,15562,15566,15798,15841,15843,15873,15972,15977,16195,16339,16362,17470,23140]]],["feared",[2,2,[[17,1,1,0,1,[[436,1,1,0,1]]],[38,1,1,1,2,[[927,1,1,1,2]]]],[12870,23136]]],["fearest",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[559]]],["feareth",[10,10,[[17,2,2,0,2,[[436,1,1,0,1],[437,1,1,1,2]]],[18,3,3,2,5,[[502,1,1,2,3],[605,2,2,3,5]]],[19,3,3,5,8,[[640,1,1,5,6],[641,1,1,6,7],[658,1,1,7,8]]],[20,1,1,8,9,[[665,1,1,8,9]]],[22,1,1,9,10,[[728,1,1,9,10]]]],[12877,12894,14263,16127,16130,16760,16788,17314,17447,18672]]],["fearful",[2,2,[[4,1,1,0,1,[[172,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]]],[5435,6697]]]]},{"k":"H3374","v":[["*",[45,45,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,1,1,1,2,[[69,1,1,1,2]]],[4,1,1,2,3,[[154,1,1,2,3]]],[9,1,1,3,4,[[289,1,1,3,4]]],[13,1,1,4,5,[[385,1,1,4,5]]],[15,2,2,5,7,[[417,2,2,5,7]]],[17,5,5,7,12,[[439,1,1,7,8],[441,1,1,8,9],[450,1,1,9,10],[457,1,1,10,11],[463,1,1,11,12]]],[18,8,8,12,20,[[479,1,1,12,13],[482,1,1,13,14],[496,1,1,14,15],[511,1,1,15,16],[532,1,1,16,17],[567,1,1,17,18],[588,1,1,18,19],[596,1,1,19,20]]],[19,14,14,20,34,[[628,2,2,20,22],[629,1,1,22,23],[635,1,1,23,24],[636,1,1,24,25],[637,1,1,25,26],[641,2,2,26,28],[642,2,2,28,30],[643,1,1,30,31],[646,1,1,31,32],[649,1,1,32,33],[650,1,1,33,34]]],[22,6,6,34,40,[[685,1,1,34,35],[689,2,2,35,37],[707,1,1,37,38],[711,1,1,38,39],[741,1,1,39,40]]],[23,1,1,40,41,[[776,1,1,40,41]]],[25,2,2,41,43,[[802,1,1,41,42],[831,1,1,42,43]]],[31,2,2,43,45,[[889,2,2,43,45]]]],[506,2071,4963,8656,11585,12391,12397,12936,12992,13207,13393,13532,13956,13980,14177,14399,14737,15389,15803,15936,16407,16429,16438,16615,16648,16683,16798,16799,16823,16840,16846,16948,17019,17061,17807,17886,17887,18206,18285,18883,19771,20482,21217,22541,22547]]],["+",[4,4,[[17,1,1,0,1,[[457,1,1,0,1]]],[22,1,1,1,2,[[741,1,1,1,2]]],[31,2,2,2,4,[[889,2,2,2,4]]]],[13393,18883,22541,22547]]],["Fearfulness",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14737]]],["dreadful",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20482]]],["fear",[39,39,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,1,1,1,2,[[69,1,1,1,2]]],[4,1,1,2,3,[[154,1,1,2,3]]],[9,1,1,3,4,[[289,1,1,3,4]]],[13,1,1,4,5,[[385,1,1,4,5]]],[15,2,2,5,7,[[417,2,2,5,7]]],[17,4,4,7,11,[[439,1,1,7,8],[441,1,1,8,9],[450,1,1,9,10],[463,1,1,10,11]]],[18,7,7,11,18,[[479,1,1,11,12],[482,1,1,12,13],[496,1,1,13,14],[511,1,1,14,15],[567,1,1,15,16],[588,1,1,16,17],[596,1,1,17,18]]],[19,14,14,18,32,[[628,2,2,18,20],[629,1,1,20,21],[635,1,1,21,22],[636,1,1,22,23],[637,1,1,23,24],[641,2,2,24,26],[642,2,2,26,28],[643,1,1,28,29],[646,1,1,29,30],[649,1,1,30,31],[650,1,1,31,32]]],[22,5,5,32,37,[[685,1,1,32,33],[689,2,2,33,35],[707,1,1,35,36],[711,1,1,36,37]]],[23,1,1,37,38,[[776,1,1,37,38]]],[25,1,1,38,39,[[831,1,1,38,39]]]],[506,2071,4963,8656,11585,12391,12397,12936,12992,13207,13532,13956,13980,14177,14399,15389,15803,15936,16407,16429,16438,16615,16648,16683,16798,16799,16823,16840,16846,16948,17019,17061,17807,17886,17887,18206,18285,19771,21217]]]]},{"k":"H3375","v":[["Iron",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6359]]]]},{"k":"H3376","v":[["Irijah",[2,2,[[23,2,2,0,2,[[781,2,2,0,2]]]],[19887,19888]]]]},{"k":"H3377","v":[["Jareb",[2,2,[[27,2,2,0,2,[[866,1,1,0,1],[871,1,1,1,2]]]],[22165,22231]]]]},{"k":"H3378","v":[["Jerubbaal",[14,13,[[6,13,12,0,12,[[216,1,1,0,1],[217,1,1,1,2],[218,2,2,2,4],[219,9,8,4,12]]],[8,1,1,12,13,[[247,1,1,12,13]]]],[6686,6695,6748,6754,6755,6756,6759,6770,6773,6778,6782,6811,7471]]]]},{"k":"H3379","v":[["*",[104,95,[[10,55,48,0,48,[[301,6,5,0,5],[302,9,8,5,13],[303,4,4,13,17],[304,19,15,17,32],[305,9,8,32,40],[306,6,6,40,46],[311,1,1,46,47],[312,1,1,47,48]]],[11,24,23,48,71,[[315,1,1,48,49],[321,1,1,49,50],[322,2,2,50,52],[325,4,4,52,56],[326,6,6,56,62],[327,6,6,62,68],[329,3,2,68,70],[335,1,1,70,71]]],[12,1,1,71,72,[[342,1,1,71,72]]],[13,19,18,72,90,[[375,1,1,72,73],[376,5,4,73,77],[377,2,2,77,79],[378,1,1,79,80],[379,10,10,80,90]]],[27,1,1,90,91,[[862,1,1,90,91]]],[29,4,4,91,95,[[879,1,1,91,92],[885,3,3,92,95]]]],[9134,9136,9137,9139,9148,9153,9154,9163,9166,9171,9176,9177,9183,9185,9188,9217,9218,9219,9220,9222,9223,9224,9225,9228,9229,9231,9232,9234,9235,9237,9238,9248,9250,9255,9256,9258,9274,9278,9279,9283,9285,9286,9290,9302,9309,9314,9473,9532,9579,9765,9822,9824,9873,9877,9882,9884,9912,9919,9920,9923,9924,9925,9926,9933,9934,9943,9949,9953,10004,10005,10180,10445,11393,11397,11398,11407,11410,11418,11428,11452,11454,11455,11456,11457,11459,11461,11466,11468,11472,11473,22095,22365,22473,22474,22475]]],["Jeroboam",[102,93,[[10,53,46,0,46,[[301,6,5,0,5],[302,9,8,5,13],[303,4,4,13,17],[304,17,13,17,30],[305,9,8,30,38],[306,6,6,38,44],[311,1,1,44,45],[312,1,1,45,46]]],[11,24,23,46,69,[[315,1,1,46,47],[321,1,1,47,48],[322,2,2,48,50],[325,4,4,50,54],[326,6,6,54,60],[327,6,6,60,66],[329,3,2,66,68],[335,1,1,68,69]]],[12,1,1,69,70,[[342,1,1,69,70]]],[13,19,18,70,88,[[375,1,1,70,71],[376,5,4,71,75],[377,2,2,75,77],[378,1,1,77,78],[379,10,10,78,88]]],[27,1,1,88,89,[[862,1,1,88,89]]],[29,4,4,89,93,[[879,1,1,89,90],[885,3,3,90,93]]]],[9134,9136,9137,9139,9148,9153,9154,9163,9166,9171,9176,9177,9183,9185,9188,9217,9218,9219,9220,9223,9224,9225,9228,9229,9231,9232,9234,9237,9238,9248,9250,9255,9256,9258,9274,9278,9279,9283,9285,9286,9290,9302,9309,9314,9473,9532,9579,9765,9822,9824,9873,9877,9882,9884,9912,9919,9920,9923,9924,9925,9926,9933,9934,9943,9949,9953,10004,10005,10180,10445,11393,11397,11398,11407,11410,11418,11428,11452,11454,11455,11456,11457,11459,11461,11466,11468,11472,11473,22095,22365,22473,22474,22475]]],["Jeroboam's",[2,2,[[10,2,2,0,2,[[304,2,2,0,2]]]],[9222,9235]]]]},{"k":"H3380","v":[["Jerubbesheth",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8280]]]]},{"k":"H3381","v":[["*",[378,343,[[0,39,35,0,35,[[10,2,2,0,2],[11,1,1,2,3],[14,1,1,3,4],[17,1,1,4,5],[23,4,4,5,9],[25,1,1,9,10],[27,1,1,10,11],[36,2,2,11,13],[37,1,1,13,14],[38,2,1,14,15],[41,4,3,15,18],[42,8,7,18,25],[43,7,6,25,31],[44,2,2,31,33],[45,2,2,33,35]]],[1,20,19,35,54,[[51,1,1,35,36],[52,1,1,36,37],[58,1,1,37,38],[60,1,1,38,39],[64,1,1,39,40],[68,7,7,40,47],[81,3,3,47,50],[82,2,2,50,52],[83,3,2,52,54]]],[2,1,1,54,55,[[98,1,1,54,55]]],[3,16,14,55,69,[[117,1,1,55,56],[120,1,1,56,57],[126,1,1,57,58],[127,4,3,58,61],[128,1,1,61,62],[130,1,1,62,63],[132,2,2,63,65],[136,2,2,65,67],[150,3,2,67,69]]],[4,12,12,69,81,[[153,1,1,69,70],[161,3,3,70,73],[162,2,2,73,75],[172,1,1,75,76],[173,1,1,76,77],[178,1,1,77,78],[180,3,3,78,81]]],[5,19,16,81,97,[[188,3,3,81,84],[189,3,2,84,86],[194,1,1,86,87],[196,1,1,87,88],[201,1,1,88,89],[202,2,2,89,91],[203,1,1,91,92],[204,6,4,92,96],[210,1,1,96,97]]],[6,30,27,97,124,[[211,2,2,97,99],[213,2,2,99,101],[214,2,2,101,103],[215,2,2,103,105],[217,9,6,105,111],[219,2,2,111,113],[221,1,1,113,114],[224,5,5,114,119],[225,3,3,119,122],[226,2,2,122,124]]],[7,2,2,124,126,[[234,2,2,124,126]]],[8,42,35,126,161,[[237,1,1,126,127],[241,2,2,127,129],[244,2,2,129,131],[245,3,2,131,133],[248,2,2,133,135],[249,2,2,135,137],[250,2,2,137,139],[252,3,2,139,141],[254,1,1,141,142],[255,1,1,142,143],[256,1,1,143,144],[257,1,1,144,145],[258,8,6,145,151],[260,4,3,151,154],[261,4,3,154,157],[264,1,1,157,158],[265,4,3,158,161]]],[9,16,15,161,176,[[271,1,1,161,162],[277,5,4,162,166],[283,1,1,166,167],[285,4,4,167,171],[287,1,1,171,172],[288,1,1,172,173],[289,3,3,173,176]]],[10,15,14,176,190,[[291,4,4,176,180],[292,3,3,180,183],[295,1,1,183,184],[307,1,1,184,185],[308,2,2,185,187],[311,3,2,187,189],[312,1,1,189,190]]],[11,26,23,190,213,[[313,12,9,190,199],[314,1,1,199,200],[315,1,1,200,201],[317,1,1,201,202],[318,2,2,202,204],[319,1,1,204,205],[320,1,1,205,206],[321,1,1,206,207],[322,1,1,207,208],[323,1,1,208,209],[324,1,1,209,210],[325,1,1,210,211],[328,1,1,211,212],[332,1,1,212,213]]],[12,4,4,213,217,[[344,1,1,213,214],[348,3,3,214,217]]],[13,6,6,217,223,[[373,2,2,217,219],[384,1,1,219,220],[386,1,1,220,221],[388,1,1,221,222],[389,1,1,222,223]]],[15,4,3,223,226,[[415,1,1,223,224],[418,2,1,224,225],[421,1,1,225,226]]],[17,3,3,226,229,[[442,1,1,226,227],[452,1,1,227,228],[468,1,1,228,229]]],[18,24,23,229,252,[[484,1,1,229,230],[495,1,1,230,231],[499,1,1,231,232],[505,1,1,232,233],[507,2,2,233,235],[526,1,1,235,236],[532,2,2,236,238],[533,1,1,238,239],[536,1,1,239,240],[549,1,1,240,241],[555,1,1,241,242],[565,1,1,242,243],[581,1,1,243,244],[584,2,2,244,246],[592,1,1,246,247],[596,1,1,247,248],[610,3,2,248,250],[620,1,1,250,251],[621,1,1,251,252]]],[19,7,7,252,259,[[628,1,1,252,253],[632,1,1,253,254],[634,1,1,254,255],[645,1,1,255,256],[648,1,1,256,257],[653,1,1,257,258],[657,1,1,258,259]]],[20,1,1,259,260,[[661,1,1,259,260]]],[21,2,2,260,262,[[676,2,2,260,262]]],[22,24,23,262,285,[[683,1,1,262,263],[688,1,1,263,264],[692,3,3,264,267],[693,1,1,267,268],[708,1,1,268,269],[709,2,2,269,271],[710,1,1,271,272],[712,2,2,272,274],[716,3,2,274,276],[720,1,1,276,277],[721,1,1,277,278],[725,1,1,278,279],[730,1,1,279,280],[733,1,1,280,281],[741,2,2,281,283],[742,2,2,283,285]]],[23,13,13,285,298,[[753,1,1,285,286],[757,2,2,286,288],[758,1,1,288,289],[762,2,2,289,291],[766,1,1,291,292],[780,1,1,292,293],[792,2,2,293,295],[793,1,1,295,296],[794,1,1,296,297],[795,1,1,297,298]]],[24,5,5,298,303,[[797,2,2,298,300],[798,2,2,300,302],[799,1,1,302,303]]],[25,29,23,303,326,[[827,5,3,303,306],[828,1,1,306,307],[829,1,1,307,308],[831,1,1,308,309],[832,7,6,309,315],[833,11,8,315,323],[835,1,1,323,324],[848,2,2,324,326]]],[27,1,1,326,327,[[868,1,1,326,327]]],[28,3,3,327,330,[[877,1,1,327,328],[878,2,2,328,330]]],[29,3,3,330,333,[[881,1,1,330,331],[884,1,1,331,332],[887,1,1,332,333]]],[30,2,2,333,335,[[888,2,2,333,335]]],[31,4,3,335,338,[[889,3,2,335,337],[890,1,1,337,338]]],[32,2,2,338,340,[[893,2,2,338,340]]],[36,1,1,340,341,[[910,1,1,340,341]]],[37,2,2,341,343,[[920,1,1,341,342],[921,1,1,342,343]]]],[271,273,308,371,445,607,609,636,637,694,785,1108,1118,1120,1150,1254,1255,1290,1294,1295,1297,1301,1305,1310,1312,1335,1345,1347,1350,1353,1355,1367,1371,1389,1390,1559,1587,1761,1814,1925,2037,2040,2044,2046,2047,2050,2051,2439,2445,2453,2478,2482,2501,2525,2975,3655,3748,4005,4033,4041,4049,4064,4153,4224,4227,4326,4339,4827,4828,4917,5169,5172,5178,5191,5208,5447,5451,5571,5635,5654,5663,5884,5887,5892,5906,5909,6031,6091,6212,6268,6272,6284,6306,6309,6310,6311,6480,6518,6543,6595,6596,6613,6614,6634,6637,6698,6699,6703,6704,6705,6718,6790,6791,6866,6910,6914,6916,6919,6928,6937,6940,6941,6970,6980,7175,7178,7246,7346,7352,7416,7418,7423,7426,7497,7505,7544,7545,7566,7572,7626,7646,7718,7749,7785,7788,7814,7816,7818,7821,7830,7835,7862,7881,7884,7907,7911,7915,7971,7993,7994,8002,8149,8267,8268,8269,8272,8467,8527,8531,8535,8542,8595,8612,8666,8673,8674,8742,8750,8755,8770,8776,8778,8779,8887,9340,9381,9385,9467,9469,9482,9537,9539,9542,9543,9544,9545,9547,9548,9549,9553,9588,9661,9692,9707,9724,9756,9772,9806,9848,9870,9885,9980,10109,10556,10688,10695,10696,11325,11327,11544,11603,11650,11676,12342,12404,12524,13017,13276,13674,14011,14127,14233,14300,14322,14328,14665,14747,14755,14762,14801,15006,15129,15312,15579,15722,15725,15847,16034,16171,16172,16300,16310,16412,16522,16602,16909,17006,17163,17255,17380,17616,17625,17753,17863,17939,17943,17947,17963,18219,18251,18254,18278,18308,18310,18398,18408,18490,18519,18600,18700,18750,18872,18880,18886,18888,19193,19283,19284,19310,19386,19387,19455,19854,20095,20098,20143,20193,20252,20319,20326,20342,20350,20402,21111,21116,21120,21150,21165,21210,21242,21244,21245,21246,21247,21248,21266,21267,21269,21272,21273,21275,21277,21278,21339,21680,21687,22190,22334,22345,22356,22406,22452,22497,22513,22514,22534,22536,22554,22582,22591,22877,23027,23030]]],["+",[30,29,[[0,9,8,0,8,[[25,1,1,0,1],[41,1,1,1,2],[42,3,2,2,4],[43,2,2,4,6],[44,1,1,6,7],[45,1,1,7,8]]],[3,1,1,8,9,[[117,1,1,8,9]]],[4,1,1,9,10,[[173,1,1,9,10]]],[5,1,1,10,11,[[194,1,1,10,11]]],[6,6,6,11,17,[[217,2,2,11,13],[219,2,2,13,15],[224,1,1,15,16],[226,1,1,16,17]]],[8,2,2,17,19,[[241,1,1,17,18],[254,1,1,18,19]]],[9,1,1,19,20,[[277,1,1,19,20]]],[10,1,1,20,21,[[291,1,1,20,21]]],[11,2,2,21,23,[[313,1,1,21,22],[323,1,1,22,23]]],[13,1,1,23,24,[[389,1,1,23,24]]],[17,1,1,24,25,[[468,1,1,24,25]]],[18,3,3,25,28,[[507,1,1,25,26],[610,2,2,26,28]]],[25,1,1,28,29,[[832,1,1,28,29]]]],[694,1290,1297,1310,1353,1355,1371,1389,3655,5451,6031,6698,6699,6790,6791,6914,6970,7346,7718,8269,8750,9547,9848,11676,13674,14322,16171,16172,21246]]],["abundantly",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17963]]],["descend",[6,6,[[3,1,1,0,1,[[150,1,1,0,1]]],[8,1,1,1,2,[[261,1,1,1,2]]],[18,1,1,2,3,[[526,1,1,2,3]]],[22,1,1,3,4,[[683,1,1,3,4]]],[25,2,2,4,6,[[827,1,1,4,5],[832,1,1,5,6]]]],[4827,7915,14665,17753,21120,21246]]],["descended",[11,10,[[1,3,3,0,3,[[68,1,1,0,1],[82,1,1,1,2],[83,1,1,2,3]]],[4,1,1,3,4,[[161,1,1,3,4]]],[5,6,5,4,9,[[188,1,1,4,5],[203,1,1,5,6],[204,4,3,6,9]]],[19,1,1,9,10,[[657,1,1,9,10]]]],[2044,2482,2501,5178,5892,6284,6306,6309,6310,17255]]],["descending",[1,1,[[0,1,1,0,1,[[27,1,1,0,1]]]],[785]]],["down",[318,294,[[0,29,27,0,27,[[10,2,2,0,2],[11,1,1,2,3],[14,1,1,3,4],[17,1,1,4,5],[23,4,4,5,9],[36,2,2,9,11],[37,1,1,11,12],[38,2,1,12,13],[41,3,3,13,16],[42,5,5,16,21],[43,5,4,21,25],[44,1,1,25,26],[45,1,1,26,27]]],[1,15,14,27,41,[[51,1,1,27,28],[52,1,1,28,29],[58,1,1,29,30],[60,1,1,30,31],[68,6,6,31,37],[81,3,3,37,40],[83,2,1,40,41]]],[2,1,1,41,42,[[98,1,1,41,42]]],[3,12,12,42,54,[[120,1,1,42,43],[126,1,1,43,44],[127,2,2,44,46],[128,1,1,46,47],[130,1,1,47,48],[132,2,2,48,50],[136,2,2,50,52],[150,2,2,52,54]]],[4,9,9,54,63,[[153,1,1,54,55],[161,2,2,55,57],[162,2,2,57,59],[178,1,1,59,60],[180,3,3,60,63]]],[5,12,11,63,74,[[188,2,2,63,65],[189,3,2,65,67],[196,1,1,67,68],[201,1,1,68,69],[202,2,2,69,71],[204,2,2,71,73],[210,1,1,73,74]]],[6,22,20,74,94,[[211,2,2,74,76],[213,2,2,76,78],[214,2,2,78,80],[215,2,2,80,82],[217,6,4,82,86],[221,1,1,86,87],[224,4,4,87,91],[225,2,2,91,93],[226,1,1,93,94]]],[7,2,2,94,96,[[234,2,2,94,96]]],[8,38,31,96,127,[[237,1,1,96,97],[241,1,1,97,98],[244,2,2,98,100],[245,3,2,100,102],[248,2,2,102,104],[249,2,2,104,106],[250,2,2,106,108],[252,3,2,108,110],[255,1,1,110,111],[256,1,1,111,112],[257,1,1,112,113],[258,8,6,113,119],[260,3,2,119,121],[261,3,2,121,123],[264,1,1,123,124],[265,4,3,124,127]]],[9,13,13,127,140,[[271,1,1,127,128],[277,2,2,128,130],[283,1,1,130,131],[285,4,4,131,135],[287,1,1,135,136],[288,1,1,136,137],[289,3,3,137,140]]],[10,14,13,140,153,[[291,3,3,140,143],[292,3,3,143,146],[295,1,1,146,147],[307,1,1,147,148],[308,2,2,148,150],[311,3,2,150,152],[312,1,1,152,153]]],[11,24,21,153,174,[[313,11,8,153,161],[314,1,1,161,162],[315,1,1,162,163],[317,1,1,163,164],[318,2,2,164,166],[319,1,1,166,167],[320,1,1,167,168],[321,1,1,168,169],[322,1,1,169,170],[324,1,1,170,171],[325,1,1,171,172],[328,1,1,172,173],[332,1,1,173,174]]],[12,4,4,174,178,[[344,1,1,174,175],[348,3,3,175,178]]],[13,5,5,178,183,[[373,2,2,178,180],[384,1,1,180,181],[386,1,1,181,182],[388,1,1,182,183]]],[15,4,3,183,186,[[415,1,1,183,184],[418,2,1,184,185],[421,1,1,185,186]]],[17,2,2,186,188,[[442,1,1,186,187],[452,1,1,187,188]]],[18,20,20,188,208,[[484,1,1,188,189],[495,1,1,189,190],[499,1,1,190,191],[505,1,1,191,192],[507,1,1,192,193],[532,2,2,193,195],[533,1,1,195,196],[536,1,1,196,197],[549,1,1,197,198],[555,1,1,198,199],[565,1,1,199,200],[581,1,1,200,201],[584,2,2,201,203],[592,1,1,203,204],[596,1,1,204,205],[610,1,1,205,206],[620,1,1,206,207],[621,1,1,207,208]]],[19,6,6,208,214,[[628,1,1,208,209],[632,1,1,209,210],[634,1,1,210,211],[645,1,1,211,212],[648,1,1,212,213],[653,1,1,213,214]]],[21,2,2,214,216,[[676,2,2,214,216]]],[22,22,21,216,237,[[688,1,1,216,217],[692,3,3,217,220],[708,1,1,220,221],[709,2,2,221,223],[710,1,1,223,224],[712,2,2,224,226],[716,3,2,226,228],[720,1,1,228,229],[721,1,1,229,230],[725,1,1,230,231],[730,1,1,231,232],[733,1,1,232,233],[741,2,2,233,235],[742,2,2,235,237]]],[23,13,13,237,250,[[753,1,1,237,238],[757,2,2,238,240],[758,1,1,240,241],[762,2,2,241,243],[766,1,1,243,244],[780,1,1,244,245],[792,2,2,245,247],[793,1,1,247,248],[794,1,1,248,249],[795,1,1,249,250]]],[24,5,5,250,255,[[797,2,2,250,252],[798,2,2,252,254],[799,1,1,254,255]]],[25,26,22,255,277,[[827,4,3,255,258],[828,1,1,258,259],[829,1,1,259,260],[831,1,1,260,261],[832,5,5,261,266],[833,11,8,266,274],[835,1,1,274,275],[848,2,2,275,277]]],[27,1,1,277,278,[[868,1,1,277,278]]],[28,3,3,278,281,[[877,1,1,278,279],[878,2,2,279,281]]],[29,3,3,281,284,[[881,1,1,281,282],[884,1,1,282,283],[887,1,1,283,284]]],[30,2,2,284,286,[[888,2,2,284,286]]],[31,4,3,286,289,[[889,3,2,286,288],[890,1,1,288,289]]],[32,2,2,289,291,[[893,2,2,289,291]]],[36,1,1,291,292,[[910,1,1,291,292]]],[37,2,2,292,294,[[920,1,1,292,293],[921,1,1,293,294]]]],[271,273,308,371,445,607,609,636,637,1108,1118,1120,1150,1254,1255,1290,1294,1295,1301,1305,1312,1335,1345,1347,1350,1367,1390,1559,1587,1761,1814,2037,2040,2046,2047,2050,2051,2439,2445,2453,2525,2975,3748,4005,4041,4049,4064,4153,4224,4227,4326,4339,4827,4828,4917,5169,5172,5191,5208,5571,5635,5654,5663,5884,5887,5906,5909,6091,6212,6268,6272,6309,6311,6480,6518,6543,6595,6596,6613,6614,6634,6637,6703,6704,6705,6718,6866,6910,6916,6919,6928,6937,6941,6980,7175,7178,7246,7352,7416,7418,7423,7426,7497,7505,7544,7545,7566,7572,7626,7646,7749,7785,7788,7814,7816,7818,7821,7830,7835,7862,7881,7907,7911,7971,7993,7994,8002,8149,8267,8269,8467,8527,8531,8535,8542,8595,8612,8666,8673,8674,8742,8755,8770,8776,8778,8779,8887,9340,9381,9385,9467,9469,9482,9537,9539,9542,9543,9544,9545,9548,9549,9553,9588,9661,9692,9707,9724,9756,9772,9806,9870,9885,9980,10109,10556,10688,10695,10696,11325,11327,11544,11603,11650,12342,12404,12524,13017,13276,14011,14127,14233,14300,14328,14747,14755,14762,14801,15006,15129,15312,15579,15722,15725,15847,16034,16171,16300,16310,16412,16522,16602,16909,17006,17163,17616,17625,17863,17939,17943,17947,18219,18251,18254,18278,18308,18310,18398,18408,18490,18519,18600,18700,18750,18872,18880,18886,18888,19193,19283,19284,19310,19386,19387,19455,19854,20095,20098,20143,20193,20252,20319,20326,20342,20350,20402,21111,21116,21120,21150,21165,21210,21242,21244,21245,21247,21248,21266,21267,21269,21272,21273,21275,21277,21278,21339,21680,21687,22190,22334,22345,22356,22406,22452,22497,22513,22514,22534,22536,22554,22582,22591,22877,23027,23030]]],["fell",[2,1,[[3,2,1,0,1,[[127,2,1,0,1]]]],[4033]]],["go",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6704]]],["goeth",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17380]]],["lighted",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7884]]],["off",[1,1,[[1,1,1,0,1,[[82,1,1,0,1]]]],[2478]]],["sank",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1925]]],["subdued",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5447]]],["went",[3,3,[[6,1,1,0,1,[[225,1,1,0,1]]],[9,2,2,1,3,[[277,2,2,1,3]]]],[6940,8268,8272]]]]},{"k":"H3382","v":[["*",[7,7,[[0,5,5,0,5,[[4,5,5,0,5]]],[12,2,2,5,7,[[338,1,1,5,6],[341,1,1,6,7]]]],[120,121,123,124,125,10254,10403]]],["Jared",[5,5,[[0,5,5,0,5,[[4,5,5,0,5]]]],[120,121,123,124,125]]],["Jered",[2,2,[[12,2,2,0,2,[[338,1,1,0,1],[341,1,1,1,2]]]],[10254,10403]]]]},{"k":"H3383","v":[["*",[182,164,[[0,5,5,0,5,[[12,2,2,0,2],[31,1,1,2,3],[49,2,2,3,5]]],[3,21,20,5,25,[[129,1,1,5,6],[138,1,1,6,7],[142,2,2,7,9],[147,1,1,9,10],[148,6,5,10,15],[149,4,4,15,19],[150,2,2,19,21],[151,3,3,21,24],[152,1,1,24,25]]],[4,26,26,25,51,[[153,2,2,25,27],[154,1,1,27,28],[155,5,5,28,33],[156,7,7,33,40],[161,1,1,40,41],[163,2,2,41,43],[164,1,1,43,44],[179,3,3,44,47],[182,1,1,47,48],[183,2,2,48,50],[184,1,1,50,51]]],[5,70,58,51,109,[[187,4,4,51,55],[188,2,2,55,57],[189,11,7,57,64],[190,17,14,64,78],[191,2,1,78,79],[193,2,1,79,80],[195,2,2,80,82],[198,2,2,82,84],[199,5,4,84,88],[200,1,1,88,89],[201,2,1,89,90],[202,2,2,90,92],[203,1,1,92,93],[204,4,4,93,97],[205,3,3,97,100],[206,1,1,100,101],[208,6,5,101,106],[209,1,1,106,107],[210,2,2,107,109]]],[6,12,11,109,120,[[213,1,1,109,110],[215,1,1,110,111],[217,3,2,111,113],[218,1,1,113,114],[220,2,2,114,116],[221,2,2,116,118],[222,2,2,118,120]]],[8,2,2,120,122,[[248,1,1,120,121],[266,1,1,121,122]]],[9,16,13,122,135,[[268,1,1,122,123],[276,1,1,123,124],[283,3,2,124,126],[285,9,7,126,133],[286,1,1,133,134],[290,1,1,134,135]]],[10,4,4,135,139,[[292,1,1,135,136],[297,1,1,136,137],[307,2,2,137,139]]],[11,9,9,139,148,[[314,3,3,139,142],[317,2,2,142,144],[318,2,2,144,146],[319,1,1,146,147],[322,1,1,147,148]]],[12,6,5,148,153,[[343,2,1,148,149],[349,2,2,149,151],[356,1,1,151,152],[363,1,1,152,153]]],[13,1,1,153,154,[[370,1,1,153,154]]],[17,1,1,154,155,[[475,1,1,154,155]]],[18,3,3,155,158,[[519,1,1,155,156],[591,2,2,156,158]]],[22,1,1,158,159,[[687,1,1,158,159]]],[23,3,3,159,162,[[756,1,1,159,160],[793,1,1,160,161],[794,1,1,161,162]]],[25,1,1,162,163,[[848,1,1,162,163]]],[37,1,1,163,164,[[921,1,1,163,164]]]],[328,329,938,1516,1517,4104,4376,4492,4552,4676,4723,4737,4739,4747,4750,4808,4809,4810,4811,4828,4831,4846,4855,4859,4892,4893,4897,4967,4983,4992,4995,5000,5002,5025,5026,5030,5045,5050,5051,5053,5158,5238,5239,5250,5587,5589,5597,5726,5730,5741,5805,5853,5862,5865,5866,5876,5879,5894,5901,5904,5906,5907,5908,5910,5911,5913,5915,5917,5918,5919,5920,5926,5927,5928,5929,5930,5932,5933,5935,5983,6038,6047,6131,6137,6162,6177,6181,6186,6190,6207,6266,6272,6280,6300,6305,6312,6313,6343,6354,6355,6380,6430,6433,6436,6437,6451,6464,6484,6487,6596,6640,6718,6719,6723,6819,6820,6842,6851,6874,6875,7492,8016,8078,8257,8471,8473,8526,8528,8529,8542,8547,8550,8552,8556,8697,8778,8980,9320,9322,9557,9558,9564,9657,9661,9676,9678,9722,9826,10532,10735,10757,10924,11107,11263,13887,14561,15825,15827,17830,19254,20146,20210,21697,23031]]],["+",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6266]]],["Jordan",[181,163,[[0,5,5,0,5,[[12,2,2,0,2],[31,1,1,2,3],[49,2,2,3,5]]],[3,21,20,5,25,[[129,1,1,5,6],[138,1,1,6,7],[142,2,2,7,9],[147,1,1,9,10],[148,6,5,10,15],[149,4,4,15,19],[150,2,2,19,21],[151,3,3,21,24],[152,1,1,24,25]]],[4,26,26,25,51,[[153,2,2,25,27],[154,1,1,27,28],[155,5,5,28,33],[156,7,7,33,40],[161,1,1,40,41],[163,2,2,41,43],[164,1,1,43,44],[179,3,3,44,47],[182,1,1,47,48],[183,2,2,48,50],[184,1,1,50,51]]],[5,69,57,51,108,[[187,4,4,51,55],[188,2,2,55,57],[189,11,7,57,64],[190,17,14,64,78],[191,2,1,78,79],[193,2,1,79,80],[195,2,2,80,82],[198,2,2,82,84],[199,5,4,84,88],[200,1,1,88,89],[201,2,1,89,90],[202,1,1,90,91],[203,1,1,91,92],[204,4,4,92,96],[205,3,3,96,99],[206,1,1,99,100],[208,6,5,100,105],[209,1,1,105,106],[210,2,2,106,108]]],[6,12,11,108,119,[[213,1,1,108,109],[215,1,1,109,110],[217,3,2,110,112],[218,1,1,112,113],[220,2,2,113,115],[221,2,2,115,117],[222,2,2,117,119]]],[8,2,2,119,121,[[248,1,1,119,120],[266,1,1,120,121]]],[9,16,13,121,134,[[268,1,1,121,122],[276,1,1,122,123],[283,3,2,123,125],[285,9,7,125,132],[286,1,1,132,133],[290,1,1,133,134]]],[10,4,4,134,138,[[292,1,1,134,135],[297,1,1,135,136],[307,2,2,136,138]]],[11,9,9,138,147,[[314,3,3,138,141],[317,2,2,141,143],[318,2,2,143,145],[319,1,1,145,146],[322,1,1,146,147]]],[12,6,5,147,152,[[343,2,1,147,148],[349,2,2,148,150],[356,1,1,150,151],[363,1,1,151,152]]],[13,1,1,152,153,[[370,1,1,152,153]]],[17,1,1,153,154,[[475,1,1,153,154]]],[18,3,3,154,157,[[519,1,1,154,155],[591,2,2,155,157]]],[22,1,1,157,158,[[687,1,1,157,158]]],[23,3,3,158,161,[[756,1,1,158,159],[793,1,1,159,160],[794,1,1,160,161]]],[25,1,1,161,162,[[848,1,1,161,162]]],[37,1,1,162,163,[[921,1,1,162,163]]]],[328,329,938,1516,1517,4104,4376,4492,4552,4676,4723,4737,4739,4747,4750,4808,4809,4810,4811,4828,4831,4846,4855,4859,4892,4893,4897,4967,4983,4992,4995,5000,5002,5025,5026,5030,5045,5050,5051,5053,5158,5238,5239,5250,5587,5589,5597,5726,5730,5741,5805,5853,5862,5865,5866,5876,5879,5894,5901,5904,5906,5907,5908,5910,5911,5913,5915,5917,5918,5919,5920,5926,5927,5928,5929,5930,5932,5933,5935,5983,6038,6047,6131,6137,6162,6177,6181,6186,6190,6207,6272,6280,6300,6305,6312,6313,6343,6354,6355,6380,6430,6433,6436,6437,6451,6464,6484,6487,6596,6640,6718,6719,6723,6819,6820,6842,6851,6874,6875,7492,8016,8078,8257,8471,8473,8526,8528,8529,8542,8547,8550,8552,8556,8697,8778,8980,9320,9322,9557,9558,9564,9657,9661,9676,9678,9722,9826,10532,10735,10757,10924,11107,11263,13887,14561,15825,15827,17830,19254,20146,20210,21697,23031]]]]},{"k":"H3384","v":[["*",[83,74,[[0,2,2,0,2,[[30,1,1,0,1],[45,1,1,1,2]]],[1,8,7,2,9,[[53,2,2,2,4],[64,2,2,4,6],[68,2,1,6,7],[73,1,1,7,8],[84,1,1,8,9]]],[2,2,2,9,11,[[99,1,1,9,10],[103,1,1,10,11]]],[3,1,1,11,12,[[137,1,1,11,12]]],[4,4,4,12,16,[[169,2,2,12,14],[176,1,1,14,15],[185,1,1,15,16]]],[5,1,1,16,17,[[204,1,1,16,17]]],[6,1,1,17,18,[[223,1,1,17,18]]],[8,7,5,18,23,[[247,1,1,18,19],[255,4,3,19,22],[266,2,1,22,23]]],[9,3,2,23,25,[[277,3,2,23,25]]],[10,1,1,25,26,[[298,1,1,25,26]]],[11,6,5,26,31,[[324,1,1,26,27],[325,2,1,27,28],[329,2,2,28,30],[331,1,1,30,31]]],[12,2,1,31,32,[[347,2,1,31,32]]],[13,5,4,32,36,[[372,1,1,32,33],[381,1,1,33,34],[392,1,1,34,35],[401,2,1,35,36]]],[17,9,9,36,45,[[441,1,1,36,37],[443,1,1,37,38],[447,2,2,38,40],[462,1,1,40,41],[465,1,1,41,42],[469,1,1,42,43],[471,1,1,43,44],[473,1,1,44,45]]],[18,12,11,45,56,[[488,1,1,45,46],[502,2,2,46,48],[504,1,1,48,49],[509,1,1,49,50],[522,1,1,50,51],[541,3,2,51,53],[563,1,1,53,54],[596,2,2,54,56]]],[19,6,6,56,62,[[631,2,2,56,58],[632,1,1,58,59],[633,1,1,59,60],[638,1,1,60,61],[653,1,1,61,62]]],[22,7,6,62,68,[[680,1,1,62,63],[687,1,1,63,64],[706,2,2,64,66],[708,2,1,66,67],[715,1,1,67,68]]],[25,1,1,68,69,[[845,1,1,68,69]]],[27,1,1,69,70,[[871,1,1,69,70]]],[32,2,2,70,72,[[895,1,1,70,71],[896,1,1,71,72]]],[34,2,2,72,74,[[904,2,2,72,74]]]],[924,1414,1613,1616,1924,1945,2039,2189,2565,2988,3168,4370,5374,5375,5533,5820,6299,6892,7483,7750,7766,7767,8012,8279,8283,9021,9852,9888,10010,10011,10093,10662,11309,11493,11747,11989,13002,13039,13135,13136,13492,13576,13715,13758,13799,14061,14259,14263,14296,14363,14601,14854,14857,15295,15931,16000,16494,16501,16530,16553,16713,17159,17688,17844,18173,18190,18237,18385,21622,22237,22619,22622,22766,22767]]],["+",[6,4,[[1,2,1,0,1,[[68,2,1,0,1]]],[2,1,1,1,2,[[99,1,1,1,2]]],[8,2,1,2,3,[[266,2,1,2,3]]],[12,1,1,3,4,[[347,1,1,3,4]]]],[2039,2988,8012,10662]]],["Shoot",[1,1,[[11,1,1,0,1,[[325,1,1,0,1]]]],[9888]]],["Teach",[4,4,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,3,3,1,4,[[504,1,1,1,2],[563,1,1,2,3],[596,1,1,3,4]]]],[13002,14296,15295,15931]]],["archers",[2,2,[[12,1,1,0,1,[[347,1,1,0,1]]],[13,1,1,1,2,[[401,1,1,1,2]]]],[10662,11989]]],["cast",[4,4,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[5,1,1,2,3,[[204,1,1,2,3]]],[17,1,1,3,4,[[465,1,1,3,4]]]],[924,1924,6299,13576]]],["casteth",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17159]]],["direct",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1414]]],["inform",[1,1,[[4,1,1,0,1,[[169,1,1,0,1]]]],[5374]]],["instructed",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9852]]],["laid",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13799]]],["rain",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22237]]],["shewed",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1945]]],["shoot",[10,9,[[8,2,2,0,2,[[255,2,2,0,2]]],[9,1,1,2,3,[[277,1,1,2,3]]],[11,1,1,3,4,[[331,1,1,3,4]]],[13,1,1,4,5,[[392,1,1,4,5]]],[18,4,3,5,8,[[488,1,1,5,6],[541,3,2,6,8]]],[22,1,1,8,9,[[715,1,1,8,9]]]],[7750,7766,8279,10093,11747,14061,14854,14857,18385]]],["shooters",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8283]]],["shot",[6,6,[[3,1,1,0,1,[[137,1,1,0,1]]],[8,2,2,1,3,[[255,2,2,1,3]]],[9,1,1,3,4,[[277,1,1,3,4]]],[11,1,1,4,5,[[325,1,1,4,5]]],[13,1,1,5,6,[[401,1,1,5,6]]]],[4370,7766,7767,8283,9888,11989]]],["taught",[5,5,[[11,1,1,0,1,[[329,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[19,2,2,3,5,[[631,2,2,3,5]]]],[10011,11309,16000,16494,16501]]],["teach",[28,28,[[1,4,4,0,4,[[53,2,2,0,2],[73,1,1,2,3],[84,1,1,3,4]]],[2,1,1,4,5,[[103,1,1,4,5]]],[4,3,3,5,8,[[169,1,1,5,6],[176,1,1,6,7],[185,1,1,7,8]]],[6,1,1,8,9,[[223,1,1,8,9]]],[8,1,1,9,10,[[247,1,1,9,10]]],[10,1,1,10,11,[[298,1,1,10,11]]],[11,1,1,11,12,[[329,1,1,11,12]]],[17,5,5,12,17,[[443,1,1,12,13],[447,2,2,13,15],[462,1,1,15,16],[469,1,1,16,17]]],[18,4,4,17,21,[[502,2,2,17,19],[509,1,1,19,20],[522,1,1,20,21]]],[22,3,3,21,24,[[680,1,1,21,22],[706,2,2,22,24]]],[25,1,1,24,25,[[845,1,1,24,25]]],[32,2,2,25,27,[[895,1,1,25,26],[896,1,1,26,27]]],[34,1,1,27,28,[[904,1,1,27,28]]]],[1613,1616,2189,2565,3168,5375,5533,5820,6892,7483,9021,10010,13039,13135,13136,13492,13715,14259,14263,14363,14601,17688,18173,18190,21622,22619,22622,22767]]],["teacher",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22766]]],["teachers",[3,2,[[19,1,1,0,1,[[632,1,1,0,1]]],[22,2,1,1,2,[[708,2,1,1,2]]]],[16530,18237]]],["teacheth",[3,3,[[17,1,1,0,1,[[471,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]],[22,1,1,2,3,[[687,1,1,2,3]]]],[13758,16553,17844]]],["teaching",[1,1,[[13,1,1,0,1,[[381,1,1,0,1]]]],[11493]]],["watered",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16713]]]]},{"k":"H3385","v":[["Jeruel",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11603]]]]},{"k":"H3386","v":[["Jaroah",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10442]]]]},{"k":"H3387","v":[["thing",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13842]]]]},{"k":"H3388","v":[["*",[2,2,[[11,1,1,0,1,[[327,1,1,0,1]]],[13,1,1,1,2,[[393,1,1,1,2]]]],[9958,11756]]],["Jerusha",[1,1,[[11,1,1,0,1,[[327,1,1,0,1]]]],[9958]]],["Jerushah",[1,1,[[13,1,1,0,1,[[393,1,1,0,1]]]],[11756]]]]},{"k":"H3389","v":[["*",[643,600,[[5,9,8,0,8,[[196,4,4,0,4],[198,1,1,4,5],[201,3,2,5,7],[204,1,1,7,8]]],[6,5,4,8,12,[[211,4,3,8,11],[229,1,1,11,12]]],[8,1,1,12,13,[[252,1,1,12,13]]],[9,30,30,13,43,[[271,4,4,13,17],[274,1,1,17,18],[275,1,1,18,19],[276,1,1,19,20],[277,2,2,20,22],[278,1,1,22,23],[280,2,2,23,25],[281,5,5,25,30],[282,2,2,30,32],[283,1,1,32,33],[285,4,4,33,37],[286,4,4,37,41],[290,2,2,41,43]]],[10,29,28,43,71,[[292,4,4,43,47],[293,2,2,47,49],[298,1,1,49,50],[299,2,2,50,52],[300,3,3,52,55],[301,6,6,55,61],[302,4,4,61,65],[304,2,2,65,67],[305,4,3,67,70],[312,1,1,70,71]]],[11,63,56,71,127,[[320,2,2,71,73],[321,1,1,73,74],[324,3,3,74,77],[326,6,4,77,81],[327,3,2,81,83],[328,2,2,83,85],[330,6,4,85,89],[331,3,3,89,92],[333,8,7,92,99],[334,2,2,99,101],[335,15,15,101,116],[336,8,7,116,123],[337,4,4,123,127]]],[12,24,24,127,151,[[340,2,2,127,129],[343,3,3,129,132],[345,2,2,132,134],[346,3,3,134,137],[348,1,1,137,138],[351,2,2,138,140],[352,1,1,140,141],[355,1,1,141,142],[356,1,1,142,143],[357,2,2,143,145],[358,3,3,145,148],[360,1,1,148,149],[365,1,1,149,150],[366,1,1,150,151]]],[13,127,117,151,268,[[367,4,4,151,155],[368,2,2,155,157],[369,1,1,157,158],[371,1,1,158,159],[372,1,1,159,160],[374,1,1,160,161],[375,4,4,161,165],[376,1,1,165,166],[377,4,4,166,170],[378,7,6,170,176],[379,1,1,176,177],[380,1,1,177,178],[381,1,1,178,179],[383,1,1,179,180],[385,4,3,180,183],[386,9,8,183,191],[387,4,4,191,195],[388,2,2,195,197],[389,1,1,197,198],[390,5,5,198,203],[391,5,3,203,206],[392,4,3,206,209],[393,2,2,209,211],[394,4,4,211,215],[395,2,2,215,217],[396,10,9,217,226],[397,1,1,226,227],[398,12,11,227,238],[399,7,7,238,245],[400,10,9,245,254],[401,4,3,254,257],[402,11,11,257,268]]],[14,25,22,268,290,[[403,7,6,268,274],[404,2,2,274,276],[405,3,2,276,278],[406,1,1,278,279],[409,4,4,279,283],[410,4,4,283,287],[411,1,1,287,288],[412,3,2,288,290]]],[15,38,34,290,324,[[413,2,2,290,292],[414,6,5,292,297],[415,3,3,297,300],[416,3,3,300,303],[418,1,1,303,304],[419,4,3,304,307],[420,1,1,307,308],[423,7,6,308,314],[424,5,4,314,318],[425,6,6,318,324]]],[16,1,1,324,325,[[427,1,1,324,325]]],[18,17,17,325,342,[[528,1,1,325,326],[545,1,1,326,327],[556,2,2,327,329],[579,1,1,329,330],[593,1,1,330,331],[599,3,3,331,334],[602,1,1,334,335],[605,1,1,335,336],[612,1,1,336,337],[614,3,3,337,340],[624,2,2,340,342]]],[20,5,5,342,347,[[659,3,3,342,345],[660,2,2,345,347]]],[21,8,8,347,355,[[671,1,1,347,348],[672,1,1,348,349],[673,2,2,349,351],[675,2,2,351,353],[676,1,1,353,354],[678,1,1,354,355]]],[22,49,47,355,402,[[679,1,1,355,356],[680,2,2,356,358],[681,2,2,358,360],[682,3,2,360,362],[683,1,1,362,363],[685,1,1,363,364],[686,1,1,364,365],[688,4,4,365,369],[700,2,2,369,371],[702,1,1,371,372],[705,1,1,372,373],[706,1,1,373,374],[708,1,1,374,375],[709,2,2,375,377],[711,1,1,377,378],[714,3,3,378,381],[715,3,3,381,384],[718,2,2,384,386],[719,1,1,386,387],[722,2,2,387,389],[729,1,1,389,390],[730,4,3,390,393],[740,3,3,393,396],[742,1,1,396,397],[743,2,2,397,399],[744,3,3,399,402]]],[23,107,98,402,500,[[745,2,2,402,404],[746,1,1,404,405],[747,2,1,405,406],[748,7,7,406,413],[749,1,1,413,414],[750,3,3,414,417],[751,2,2,417,419],[752,2,2,419,421],[753,1,1,421,422],[755,5,5,422,427],[757,3,3,427,430],[758,2,2,430,432],[759,2,2,432,434],[761,7,6,434,440],[762,1,1,440,441],[763,3,3,441,444],[766,1,1,444,445],[767,2,2,445,447],[768,2,2,447,449],[769,2,2,449,451],[770,1,1,451,452],[771,5,4,452,456],[773,7,5,456,461],[776,3,3,461,464],[777,3,3,464,467],[778,5,5,467,472],[779,4,3,472,475],[780,3,2,475,477],[781,4,3,477,480],[782,2,1,480,481],[783,2,2,481,483],[784,1,1,483,484],[786,1,1,484,485],[788,6,6,485,491],[795,2,2,491,493],[796,7,7,493,500]]],[24,7,7,500,507,[[797,3,3,500,503],[798,3,3,503,506],[800,1,1,506,507]]],[25,26,26,507,533,[[805,3,3,507,510],[806,1,1,510,511],[809,1,1,511,512],[810,2,2,512,514],[812,1,1,514,515],[813,2,2,515,517],[814,1,1,517,518],[815,2,2,518,520],[816,1,1,520,521],[817,2,2,521,523],[818,1,1,523,524],[822,3,3,524,527],[823,1,1,527,528],[824,1,1,528,529],[825,1,1,529,530],[827,1,1,530,531],[834,1,1,531,532],[837,1,1,532,533]]],[26,7,6,533,539,[[850,1,1,533,534],[858,6,5,534,539]]],[28,6,6,539,545,[[877,1,1,539,540],[878,5,5,540,545]]],[29,2,2,545,547,[[879,1,1,545,546],[880,1,1,546,547]]],[30,2,2,547,549,[[888,2,2,547,549]]],[32,8,8,549,557,[[893,4,4,549,553],[895,2,2,553,555],[896,2,2,555,557]]],[35,4,4,557,561,[[906,2,2,557,559],[908,2,2,559,561]]],[37,41,37,561,598,[[911,6,5,561,566],[912,3,3,566,569],[913,1,1,569,570],[917,1,1,570,571],[918,6,5,571,576],[919,2,2,576,578],[922,11,9,578,587],[923,1,1,587,588],[924,10,10,588,598]]],[38,2,2,598,600,[[926,1,1,598,599],[927,1,1,599,600]]]],[6065,6067,6069,6087,6140,6210,6265,6321,6516,6517,6530,7034,7672,8137,8138,8145,8146,8216,8240,8254,8260,8271,8317,8379,8384,8397,8400,8403,8418,8426,8429,8441,8469,8530,8536,8544,8545,8556,8557,8561,8576,8700,8708,8781,8806,8808,8811,8817,8831,8986,9066,9070,9081,9105,9106,9115,9121,9137,9140,9144,9150,9169,9172,9178,9179,9239,9243,9251,9253,9259,9522,9744,9753,9784,9851,9867,9868,9898,9909,9915,9916,9927,9958,9965,9968,10026,10041,10046,10059,10071,10082,10092,10120,10123,10126,10131,10132,10135,10138,10146,10159,10166,10167,10169,10170,10171,10174,10178,10185,10188,10189,10192,10195,10196,10198,10201,10206,10210,10212,10216,10217,10220,10222,10223,10230,10231,10232,10365,10366,10464,10469,10486,10603,10607,10618,10649,10653,10677,10777,10778,10794,10897,10922,10927,10929,10938,10949,10950,11008,11144,11191,11198,11207,11208,11209,11218,11227,11230,11270,11288,11352,11365,11389,11391,11394,11413,11415,11419,11428,11430,11439,11441,11442,11444,11446,11450,11455,11490,11500,11536,11577,11580,11584,11592,11602,11604,11605,11607,11614,11615,11618,11629,11635,11637,11644,11645,11646,11658,11678,11683,11686,11695,11700,11705,11727,11731,11735,11741,11747,11756,11763,11765,11774,11788,11791,11792,11799,11828,11829,11830,11832,11838,11840,11841,11848,11853,11858,11877,11884,11885,11887,11893,11894,11897,11898,11900,11901,11908,11909,11912,11915,11917,11921,11923,11929,11934,11936,11938,11940,11942,11955,11962,11963,11965,11967,11984,11990,11994,11995,11996,11997,11998,12002,12003,12004,12007,12012,12016,12018,12019,12020,12021,12023,12027,12028,12095,12098,12105,12116,12180,12181,12182,12200,12230,12231,12232,12233,12246,12259,12261,12298,12299,12318,12319,12320,12324,12327,12335,12336,12339,12366,12367,12381,12408,12422,12423,12426,12508,12589,12590,12591,12592,12594,12610,12651,12652,12653,12667,12677,12678,12686,12687,12690,12691,12730,14709,14929,15186,15188,15542,15867,16091,16092,16095,16112,16131,16196,16227,16228,16229,16353,16363,17316,17327,17331,17340,17342,17542,17561,17576,17581,17606,17614,17618,17644,17655,17686,17688,17708,17715,17736,17737,17742,17783,17821,17860,17861,17862,17882,18062,18073,18118,18164,18178,18236,18255,18259,18299,18332,18337,18350,18362,18374,18384,18422,18429,18478,18559,18561,18690,18697,18698,18705,18855,18860,18861,18895,18915,18916,18932,18935,18942,18949,18961,18967,19019,19030,19031,19032,19037,19038,19041,19043,19059,19090,19095,19097,19136,19153,19154,19158,19186,19228,19232,19235,19238,19239,19275,19279,19293,19295,19309,19319,19320,19376,19377,19378,19382,19383,19384,19395,19410,19414,19420,19473,19498,19499,19525,19532,19536,19552,19590,19599,19614,19616,19617,19636,19637,19639,19655,19660,19733,19763,19775,19785,19788,19791,19802,19807,19808,19809,19820,19834,19836,19840,19851,19873,19879,19885,19886,19923,19924,19931,19942,19993,20012,20016,20019,20023,20027,20031,20247,20262,20277,20279,20280,20288,20289,20290,20305,20317,20318,20327,20342,20345,20347,20432,20530,20536,20545,20551,20607,20626,20630,20670,20690,20699,20724,20752,20753,20760,20764,20765,20837,20946,20964,20966,20995,21011,21058,21102,21301,21397,21738,21990,21995,22000,22004,22013,22343,22344,22349,22359,22360,22363,22366,22384,22521,22530,22580,22584,22588,22591,22618,22620,22622,22628,22791,22799,22834,22836,22890,22892,22894,22895,22897,22901,22903,22911,22914,22969,22979,22980,22984,22991,22998,23008,23009,23047,23048,23050,23051,23052,23053,23054,23055,23056,23060,23070,23072,23076,23078,23079,23080,23082,23084,23085,23089,23114,23124]]],["+",[39,38,[[5,1,1,0,1,[[196,1,1,0,1]]],[9,4,4,1,5,[[271,1,1,1,2],[281,1,1,2,3],[285,1,1,3,4],[286,1,1,4,5]]],[10,4,4,5,9,[[292,1,1,5,6],[301,3,3,6,9]]],[11,5,5,9,14,[[327,1,1,9,10],[331,1,1,10,11],[333,1,1,11,12],[336,2,2,12,14]]],[13,2,2,14,16,[[390,1,1,14,15],[391,1,1,15,16]]],[14,1,1,16,17,[[403,1,1,16,17]]],[16,1,1,17,18,[[427,1,1,17,18]]],[22,5,5,18,23,[[680,1,1,18,19],[681,1,1,19,20],[688,1,1,20,21],[715,1,1,21,22],[740,1,1,22,23]]],[23,10,9,23,32,[[768,1,1,23,24],[771,1,1,24,25],[773,5,4,25,29],[779,1,1,29,30],[781,1,1,30,31],[796,1,1,31,32]]],[25,1,1,32,33,[[834,1,1,32,33]]],[28,1,1,33,34,[[878,1,1,33,34]]],[29,1,1,34,35,[[879,1,1,34,35]]],[32,1,1,35,36,[[896,1,1,35,36]]],[37,2,2,36,38,[[919,1,1,36,37],[924,1,1,37,38]]]],[6087,8145,8400,8530,8561,8811,9121,9137,9140,9927,10092,10132,10210,10217,11683,11705,12023,12730,17688,17708,17860,18384,18855,19525,19616,19636,19637,19639,19655,19840,19886,20305,21301,22359,22366,22622,23009,23076]]],["Jerusalem",[604,568,[[5,8,7,0,7,[[196,3,3,0,3],[198,1,1,3,4],[201,3,2,4,6],[204,1,1,6,7]]],[6,5,4,7,11,[[211,4,3,7,10],[229,1,1,10,11]]],[8,1,1,11,12,[[252,1,1,11,12]]],[9,26,26,12,38,[[271,3,3,12,15],[274,1,1,15,16],[275,1,1,16,17],[276,1,1,17,18],[277,2,2,18,20],[278,1,1,20,21],[280,2,2,21,23],[281,4,4,23,27],[282,2,2,27,29],[283,1,1,29,30],[285,3,3,30,33],[286,3,3,33,36],[290,2,2,36,38]]],[10,25,24,38,62,[[292,3,3,38,41],[293,2,2,41,43],[298,1,1,43,44],[299,2,2,44,46],[300,3,3,46,49],[301,3,3,49,52],[302,4,4,52,56],[304,2,2,56,58],[305,4,3,58,61],[312,1,1,61,62]]],[11,58,54,62,116,[[320,2,2,62,64],[321,1,1,64,65],[324,3,3,65,68],[326,6,4,68,72],[327,2,2,72,74],[328,2,2,74,76],[330,6,4,76,80],[331,2,2,80,82],[333,7,7,82,89],[334,2,2,89,91],[335,15,15,91,106],[336,6,6,106,112],[337,4,4,112,116]]],[12,24,24,116,140,[[340,2,2,116,118],[343,3,3,118,121],[345,2,2,121,123],[346,3,3,123,126],[348,1,1,126,127],[351,2,2,127,129],[352,1,1,129,130],[355,1,1,130,131],[356,1,1,131,132],[357,2,2,132,134],[358,3,3,134,137],[360,1,1,137,138],[365,1,1,138,139],[366,1,1,139,140]]],[13,125,116,140,256,[[367,4,4,140,144],[368,2,2,144,146],[369,1,1,146,147],[371,1,1,147,148],[372,1,1,148,149],[374,1,1,149,150],[375,4,4,150,154],[376,1,1,154,155],[377,4,4,155,159],[378,7,6,159,165],[379,1,1,165,166],[380,1,1,166,167],[381,1,1,167,168],[383,1,1,168,169],[385,4,3,169,172],[386,9,8,172,180],[387,4,4,180,184],[388,2,2,184,186],[389,1,1,186,187],[390,4,4,187,191],[391,4,3,191,194],[392,4,3,194,197],[393,2,2,197,199],[394,4,4,199,203],[395,2,2,203,205],[396,10,9,205,214],[397,1,1,214,215],[398,12,11,215,226],[399,7,7,226,233],[400,10,9,233,242],[401,4,3,242,245],[402,11,11,245,256]]],[14,24,21,256,277,[[403,6,5,256,261],[404,2,2,261,263],[405,3,2,263,265],[406,1,1,265,266],[409,4,4,266,270],[410,4,4,270,274],[411,1,1,274,275],[412,3,2,275,277]]],[15,38,34,277,311,[[413,2,2,277,279],[414,6,5,279,284],[415,3,3,284,287],[416,3,3,287,290],[418,1,1,290,291],[419,4,3,291,294],[420,1,1,294,295],[423,7,6,295,301],[424,5,4,301,305],[425,6,6,305,311]]],[18,17,17,311,328,[[528,1,1,311,312],[545,1,1,312,313],[556,2,2,313,315],[579,1,1,315,316],[593,1,1,316,317],[599,3,3,317,320],[602,1,1,320,321],[605,1,1,321,322],[612,1,1,322,323],[614,3,3,323,326],[624,2,2,326,328]]],[20,5,5,328,333,[[659,3,3,328,331],[660,2,2,331,333]]],[21,8,8,333,341,[[671,1,1,333,334],[672,1,1,334,335],[673,2,2,335,337],[675,2,2,337,339],[676,1,1,339,340],[678,1,1,340,341]]],[22,44,42,341,383,[[679,1,1,341,342],[680,1,1,342,343],[681,1,1,343,344],[682,3,2,344,346],[683,1,1,346,347],[685,1,1,347,348],[686,1,1,348,349],[688,3,3,349,352],[700,2,2,352,354],[702,1,1,354,355],[705,1,1,355,356],[706,1,1,356,357],[708,1,1,357,358],[709,2,2,358,360],[711,1,1,360,361],[714,3,3,361,364],[715,2,2,364,366],[718,2,2,366,368],[719,1,1,368,369],[722,2,2,369,371],[729,1,1,371,372],[730,4,3,372,375],[740,2,2,375,377],[742,1,1,377,378],[743,2,2,378,380],[744,3,3,380,383]]],[23,97,91,383,474,[[745,2,2,383,385],[746,1,1,385,386],[747,2,1,386,387],[748,7,7,387,394],[749,1,1,394,395],[750,3,3,395,398],[751,2,2,398,400],[752,2,2,400,402],[753,1,1,402,403],[755,5,5,403,408],[757,3,3,408,411],[758,2,2,411,413],[759,2,2,413,415],[761,7,6,415,421],[762,1,1,421,422],[763,3,3,422,425],[766,1,1,425,426],[767,2,2,426,428],[768,1,1,428,429],[769,2,2,429,431],[770,1,1,431,432],[771,4,4,432,436],[773,2,2,436,438],[776,3,3,438,441],[777,3,3,441,444],[778,5,5,444,449],[779,3,2,449,451],[780,3,2,451,453],[781,3,2,453,455],[782,2,1,455,456],[783,2,2,456,458],[784,1,1,458,459],[786,1,1,459,460],[788,6,6,460,466],[795,2,2,466,468],[796,6,6,468,474]]],[24,7,7,474,481,[[797,3,3,474,477],[798,3,3,477,480],[800,1,1,480,481]]],[25,25,25,481,506,[[805,3,3,481,484],[806,1,1,484,485],[809,1,1,485,486],[810,2,2,486,488],[812,1,1,488,489],[813,2,2,489,491],[814,1,1,491,492],[815,2,2,492,494],[816,1,1,494,495],[817,2,2,495,497],[818,1,1,497,498],[822,3,3,498,501],[823,1,1,501,502],[824,1,1,502,503],[825,1,1,503,504],[827,1,1,504,505],[837,1,1,505,506]]],[26,7,6,506,512,[[850,1,1,506,507],[858,6,5,507,512]]],[28,5,5,512,517,[[877,1,1,512,513],[878,4,4,513,517]]],[29,1,1,517,518,[[880,1,1,517,518]]],[30,2,2,518,520,[[888,2,2,518,520]]],[32,7,7,520,527,[[893,4,4,520,524],[895,2,2,524,526],[896,1,1,526,527]]],[35,4,4,527,531,[[906,2,2,527,529],[908,2,2,529,531]]],[37,39,35,531,566,[[911,6,5,531,536],[912,3,3,536,539],[913,1,1,539,540],[917,1,1,540,541],[918,6,5,541,546],[919,1,1,546,547],[922,11,9,547,556],[923,1,1,556,557],[924,9,9,557,566]]],[38,2,2,566,568,[[926,1,1,566,567],[927,1,1,567,568]]]],[6065,6067,6069,6140,6210,6265,6321,6516,6517,6530,7034,7672,8137,8138,8146,8216,8240,8254,8260,8271,8317,8379,8384,8397,8403,8418,8426,8429,8441,8469,8536,8544,8545,8556,8557,8576,8700,8708,8781,8806,8808,8817,8831,8986,9066,9070,9081,9105,9106,9115,9144,9150,9169,9172,9178,9179,9239,9243,9251,9253,9259,9522,9744,9753,9784,9851,9867,9868,9898,9909,9915,9916,9927,9958,9965,9968,10026,10041,10046,10059,10071,10082,10120,10123,10126,10131,10132,10135,10138,10146,10159,10166,10167,10169,10170,10171,10174,10178,10185,10188,10189,10192,10195,10196,10198,10201,10206,10210,10212,10216,10220,10222,10223,10230,10231,10232,10365,10366,10464,10469,10486,10603,10607,10618,10649,10653,10677,10777,10778,10794,10897,10922,10927,10929,10938,10949,10950,11008,11144,11191,11198,11207,11208,11209,11218,11227,11230,11270,11288,11352,11365,11389,11391,11394,11413,11415,11419,11428,11430,11439,11441,11442,11444,11446,11450,11455,11490,11500,11536,11577,11580,11584,11592,11602,11604,11605,11607,11614,11615,11618,11629,11635,11637,11644,11645,11646,11658,11678,11686,11695,11700,11705,11727,11731,11735,11741,11747,11756,11763,11765,11774,11788,11791,11792,11799,11828,11829,11830,11832,11838,11840,11841,11848,11853,11858,11877,11884,11885,11887,11893,11894,11897,11898,11900,11901,11908,11909,11912,11915,11917,11921,11923,11929,11934,11936,11938,11940,11942,11955,11962,11963,11965,11967,11984,11990,11994,11995,11996,11997,11998,12002,12003,12004,12007,12012,12016,12018,12019,12020,12021,12027,12028,12095,12098,12105,12116,12180,12181,12182,12200,12230,12231,12232,12233,12246,12259,12261,12298,12299,12318,12319,12320,12324,12327,12335,12336,12339,12366,12367,12381,12408,12422,12423,12426,12508,12589,12590,12591,12592,12594,12610,12651,12652,12653,12667,12677,12678,12686,12687,12690,12691,14709,14929,15186,15188,15542,15867,16091,16092,16095,16112,16131,16196,16227,16228,16229,16353,16363,17316,17327,17331,17340,17342,17542,17561,17576,17581,17606,17614,17618,17644,17655,17686,17715,17736,17737,17742,17783,17821,17861,17862,17882,18062,18073,18118,18164,18178,18236,18255,18259,18299,18332,18337,18350,18362,18374,18422,18429,18478,18559,18561,18690,18697,18698,18705,18860,18861,18895,18915,18916,18932,18935,18942,18949,18961,18967,19019,19030,19031,19032,19037,19038,19041,19043,19059,19090,19095,19097,19136,19153,19154,19158,19186,19228,19232,19235,19238,19239,19275,19279,19293,19295,19309,19319,19320,19376,19377,19378,19382,19383,19384,19395,19410,19414,19420,19473,19498,19499,19532,19536,19552,19590,19599,19614,19616,19617,19637,19660,19733,19763,19775,19785,19788,19791,19802,19807,19808,19809,19820,19834,19836,19851,19873,19879,19885,19923,19924,19931,19942,19993,20012,20016,20019,20023,20027,20031,20247,20262,20277,20279,20280,20288,20289,20290,20317,20318,20327,20342,20345,20347,20432,20530,20536,20545,20551,20607,20626,20630,20670,20690,20699,20724,20752,20753,20760,20764,20765,20837,20946,20964,20966,20995,21011,21058,21102,21397,21738,21990,21995,22000,22004,22013,22343,22344,22349,22360,22363,22384,22521,22530,22580,22584,22588,22591,22618,22620,22628,22791,22799,22834,22836,22890,22892,22894,22895,22897,22901,22903,22911,22914,22969,22979,22980,22984,22991,22998,23008,23047,23048,23050,23051,23052,23053,23054,23055,23056,23060,23070,23072,23078,23079,23080,23082,23084,23085,23089,23114,23124]]]]},{"k":"H3390","v":[["Jerusalem",[26,25,[[14,23,22,0,22,[[406,5,5,0,5],[407,6,6,5,11],[408,6,5,11,16],[409,6,6,16,22]]],[26,3,3,22,25,[[854,2,2,22,24],[855,1,1,24,25]]]],[12118,12122,12130,12133,12134,12135,12136,12148,12149,12150,12151,12154,12156,12160,12163,12169,12186,12187,12188,12189,12190,12192,21876,21877,21915]]]]},{"k":"H3391","v":[["*",[13,13,[[1,1,1,0,1,[[51,1,1,0,1]]],[4,2,2,1,3,[[173,1,1,1,2],[185,1,1,2,3]]],[10,3,3,3,6,[[296,2,2,3,5],[298,1,1,5,6]]],[11,1,1,6,7,[[327,1,1,6,7]]],[17,4,4,7,11,[[438,1,1,7,8],[442,1,1,8,9],[464,1,1,9,10],[474,1,1,10,11]]],[22,1,1,11,12,[[738,1,1,11,12]]],[37,1,1,12,13,[[921,1,1,12,13]]]],[1556,5460,5824,8933,8934,8987,9938,12910,13011,13534,13836,18841,23036]]],["month",[6,6,[[4,1,1,0,1,[[173,1,1,0,1]]],[10,3,3,1,4,[[296,2,2,1,3],[298,1,1,3,4]]],[11,1,1,4,5,[[327,1,1,4,5]]],[37,1,1,5,6,[[921,1,1,5,6]]]],[5460,8933,8934,8987,9938,23036]]],["months",[5,5,[[1,1,1,0,1,[[51,1,1,0,1]]],[17,4,4,1,5,[[438,1,1,1,2],[442,1,1,2,3],[464,1,1,3,4],[474,1,1,4,5]]]],[1556,12910,13011,13534,13836]]],["moon",[2,2,[[4,1,1,0,1,[[185,1,1,0,1]]],[22,1,1,1,2,[[738,1,1,1,2]]]],[5824,18841]]]]},{"k":"H3392","v":[["Jerah",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[260,10272]]]]},{"k":"H3393","v":[["*",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[12166,21866]]],["month",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12166]]],["months",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21866]]]]},{"k":"H3394","v":[["*",[26,26,[[0,1,1,0,1,[[36,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[169,1,1,2,3]]],[5,2,2,3,5,[[196,2,2,3,5]]],[11,1,1,5,6,[[335,1,1,5,6]]],[17,2,2,6,8,[[460,1,1,6,7],[466,1,1,7,8]]],[18,8,8,8,16,[[485,1,1,8,9],[549,2,2,9,11],[566,1,1,11,12],[581,1,1,12,13],[598,1,1,13,14],[613,1,1,14,15],[625,1,1,15,16]]],[20,1,1,16,17,[[670,1,1,16,17]]],[22,2,2,17,19,[[691,1,1,17,18],[738,1,1,18,19]]],[23,2,2,19,21,[[752,1,1,19,20],[775,1,1,20,21]]],[25,1,1,21,22,[[833,1,1,21,22]]],[28,3,3,22,25,[[877,2,2,22,24],[878,1,1,24,25]]],[34,1,1,25,26,[[905,1,1,25,26]]]],[1092,5023,5367,6076,6077,10170,13466,13614,14015,15005,15007,15363,15590,16087,16205,16374,17525,17916,18840,19155,19726,21255,22321,22342,22358,22779]]],["Moon",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6076]]],["moon",[25,25,[[0,1,1,0,1,[[36,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[169,1,1,2,3]]],[5,1,1,3,4,[[196,1,1,3,4]]],[11,1,1,4,5,[[335,1,1,4,5]]],[17,2,2,5,7,[[460,1,1,5,6],[466,1,1,6,7]]],[18,8,8,7,15,[[485,1,1,7,8],[549,2,2,8,10],[566,1,1,10,11],[581,1,1,11,12],[598,1,1,12,13],[613,1,1,13,14],[625,1,1,14,15]]],[20,1,1,15,16,[[670,1,1,15,16]]],[22,2,2,16,18,[[691,1,1,16,17],[738,1,1,17,18]]],[23,2,2,18,20,[[752,1,1,18,19],[775,1,1,19,20]]],[25,1,1,20,21,[[833,1,1,20,21]]],[28,3,3,21,24,[[877,2,2,21,23],[878,1,1,23,24]]],[34,1,1,24,25,[[905,1,1,24,25]]]],[1092,5023,5367,6077,10170,13466,13614,14015,15005,15007,15363,15590,16087,16205,16374,17525,17916,18840,19155,19726,21255,22321,22342,22358,22779]]]]},{"k":"H3395","v":[["Jeroham",[10,10,[[8,1,1,0,1,[[236,1,1,0,1]]],[12,7,7,1,8,[[343,2,2,1,3],[345,1,1,3,4],[346,2,2,4,6],[349,1,1,6,7],[364,1,1,7,8]]],[13,1,1,8,9,[[389,1,1,8,9]]],[15,1,1,9,10,[[423,1,1,9,10]]]],[7213,10481,10488,10602,10623,10627,10727,11131,11657,12600]]]]},{"k":"H3396","v":[["Jerahmeel",[8,8,[[12,7,7,0,7,[[339,6,6,0,6],[361,1,1,6,7]]],[23,1,1,7,8,[[780,1,1,7,8]]]],[10315,10331,10332,10333,10339,10348,11044,19868]]]]},{"k":"H3397","v":[["Jerahmeelites",[2,2,[[8,2,2,0,2,[[262,1,1,0,1],[265,1,1,1,2]]]],[7940,8007]]]]},{"k":"H3398","v":[["Jarha",[2,2,[[12,2,2,0,2,[[339,2,2,0,2]]]],[10340,10341]]]]},{"k":"H3399","v":[["*",[2,2,[[3,1,1,0,1,[[138,1,1,0,1]]],[17,1,1,1,2,[[451,1,1,1,2]]]],[4407,13249]]],["over",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13249]]],["perverse",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4407]]]]},{"k":"H3400","v":[["Jeriel",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10537]]]]},{"k":"H3401","v":[["*",[3,3,[[18,1,1,0,1,[[512,1,1,0,1]]],[22,1,1,1,2,[[727,1,1,1,2]]],[23,1,1,2,3,[[762,1,1,2,3]]]],[14411,18661,19403]]],["contend",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19403]]],["strive",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14411]]],["with",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18661]]]]},{"k":"H3402","v":[["Jarib",[3,3,[[12,1,1,0,1,[[341,1,1,0,1]]],[14,2,2,1,3,[[410,1,1,1,2],[412,1,1,2,3]]]],[10409,12217,12270]]]]},{"k":"H3403","v":[["Jeribai",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10719]]]]},{"k":"H3404","v":[["*",[3,3,[[12,3,3,0,3,[[360,1,1,0,1],[361,1,1,1,2],[363,1,1,2,3]]]],[11002,11038,11108]]],["Jeriah",[2,2,[[12,2,2,0,2,[[360,1,1,0,1],[361,1,1,1,2]]]],[11002,11038]]],["Jerijah",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11108]]]]},{"k":"H3405","v":[["*",[57,53,[[3,9,9,0,9,[[138,1,1,0,1],[142,2,2,1,3],[147,1,1,3,4],[149,2,2,4,6],[150,1,1,6,7],[151,1,1,7,8],[152,1,1,8,9]]],[4,3,3,9,12,[[184,1,1,9,10],[186,2,2,10,12]]],[5,29,26,12,38,[[188,3,3,12,15],[189,1,1,15,16],[190,2,2,16,18],[191,2,2,18,20],[192,4,4,20,24],[193,1,1,24,25],[194,1,1,25,26],[195,1,1,26,27],[196,3,3,27,30],[198,1,1,30,31],[199,1,1,31,32],[202,4,2,32,34],[204,2,2,34,36],[206,1,1,36,37],[210,2,1,37,38]]],[9,1,1,38,39,[[276,1,1,38,39]]],[10,1,1,39,40,[[306,1,1,39,40]]],[11,6,5,40,45,[[314,5,4,40,44],[337,1,1,44,45]]],[12,2,2,45,47,[[343,1,1,45,46],[356,1,1,46,47]]],[13,1,1,47,48,[[394,1,1,47,48]]],[14,1,1,48,49,[[404,1,1,48,49]]],[15,2,2,49,51,[[415,1,1,49,50],[419,1,1,50,51]]],[23,2,2,51,53,[[783,1,1,51,52],[796,1,1,52,53]]]],[4376,4492,4552,4676,4808,4810,4831,4846,4892,5807,5840,5842,5870,5871,5872,5909,5923,5929,5944,5947,5950,5951,5974,5975,5978,6004,6040,6065,6092,6094,6139,6186,6266,6272,6305,6314,6380,6487,8245,9317,9555,9556,9566,9569,10227,10532,10912,11779,12061,12329,12456,19928,20284]]],["+",[2,2,[[5,2,2,0,2,[[193,1,1,0,1],[202,1,1,1,2]]]],[5978,6266]]],["Jericho",[55,52,[[3,9,9,0,9,[[138,1,1,0,1],[142,2,2,1,3],[147,1,1,3,4],[149,2,2,4,6],[150,1,1,6,7],[151,1,1,7,8],[152,1,1,8,9]]],[4,3,3,9,12,[[184,1,1,9,10],[186,2,2,10,12]]],[5,27,25,12,37,[[188,3,3,12,15],[189,1,1,15,16],[190,2,2,16,18],[191,2,2,18,20],[192,4,4,20,24],[194,1,1,24,25],[195,1,1,25,26],[196,3,3,26,29],[198,1,1,29,30],[199,1,1,30,31],[202,3,2,31,33],[204,2,2,33,35],[206,1,1,35,36],[210,2,1,36,37]]],[9,1,1,37,38,[[276,1,1,37,38]]],[10,1,1,38,39,[[306,1,1,38,39]]],[11,6,5,39,44,[[314,5,4,39,43],[337,1,1,43,44]]],[12,2,2,44,46,[[343,1,1,44,45],[356,1,1,45,46]]],[13,1,1,46,47,[[394,1,1,46,47]]],[14,1,1,47,48,[[404,1,1,47,48]]],[15,2,2,48,50,[[415,1,1,48,49],[419,1,1,49,50]]],[23,2,2,50,52,[[783,1,1,50,51],[796,1,1,51,52]]]],[4376,4492,4552,4676,4808,4810,4831,4846,4892,5807,5840,5842,5870,5871,5872,5909,5923,5929,5944,5947,5950,5951,5974,5975,6004,6040,6065,6092,6094,6139,6186,6266,6272,6305,6314,6380,6487,8245,9317,9555,9556,9566,9569,10227,10532,10912,11779,12061,12329,12456,19928,20284]]]]},{"k":"H3406","v":[["*",[14,14,[[12,9,9,0,9,[[344,2,2,0,2],[345,1,1,2,3],[349,1,1,3,4],[360,1,1,4,5],[361,1,1,5,6],[362,2,2,6,8],[364,1,1,8,9]]],[13,2,2,9,11,[[377,1,1,9,10],[397,1,1,10,11]]],[14,3,3,11,14,[[412,3,3,11,14]]]],[10542,10543,10589,10725,11006,11045,11050,11068,11128,11432,11867,12278,12279,12281]]],["Jeremoth",[5,5,[[12,3,3,0,3,[[345,1,1,0,1],[360,1,1,1,2],[362,1,1,2,3]]],[14,2,2,3,5,[[412,2,2,3,5]]]],[10589,11006,11068,12278,12279]]],["Jerimoth",[8,8,[[12,6,6,0,6,[[344,2,2,0,2],[349,1,1,2,3],[361,1,1,3,4],[362,1,1,4,5],[364,1,1,5,6]]],[13,2,2,6,8,[[377,1,1,6,7],[397,1,1,7,8]]]],[10542,10543,10725,11045,11050,11128,11432,11867]]],["Ramoth",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12281]]]]},{"k":"H3407","v":[["*",[54,32,[[1,44,22,0,22,[[75,24,12,0,12],[85,20,10,12,22]]],[3,1,1,22,23,[[120,1,1,22,23]]],[9,1,1,23,24,[[273,1,1,23,24]]],[12,1,1,24,25,[[354,1,1,24,25]]],[18,1,1,25,26,[[581,1,1,25,26]]],[21,1,1,26,27,[[671,1,1,26,27]]],[22,1,1,27,28,[[732,1,1,27,28]]],[23,3,3,28,31,[[748,1,1,28,29],[754,1,1,29,30],[793,1,1,30,31]]],[34,1,1,31,32,[[905,1,1,31,32]]]],[2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2247,2248,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,3768,8182,10864,15573,17542,18725,19047,19221,20156,22775]]],["curtain",[23,13,[[1,22,12,0,12,[[75,12,7,0,7],[85,10,5,7,12]]],[18,1,1,12,13,[[581,1,1,12,13]]]],[2237,2239,2240,2243,2244,2245,2247,2575,2577,2578,2581,2583,15573]]],["curtains",[31,25,[[1,22,16,0,16,[[75,12,9,0,9],[85,10,7,9,16]]],[3,1,1,16,17,[[120,1,1,16,17]]],[9,1,1,17,18,[[273,1,1,17,18]]],[12,1,1,18,19,[[354,1,1,18,19]]],[21,1,1,19,20,[[671,1,1,19,20]]],[22,1,1,20,21,[[732,1,1,20,21]]],[23,3,3,21,24,[[748,1,1,21,22],[754,1,1,22,23],[793,1,1,23,24]]],[34,1,1,24,25,[[905,1,1,24,25]]]],[2236,2237,2238,2241,2242,2243,2244,2247,2248,2574,2575,2576,2579,2580,2581,2582,3768,8182,10864,17542,18725,19047,19221,20156,22775]]]]},{"k":"H3408","v":[["Jerioth",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10324]]]]},{"k":"H3409","v":[["*",[34,32,[[0,9,7,0,7,[[23,2,2,0,2],[31,5,3,2,5],[45,1,1,5,6],[46,1,1,6,7]]],[1,7,7,7,14,[[50,1,1,7,8],[74,1,1,8,9],[77,1,1,9,10],[81,1,1,10,11],[86,1,1,11,12],[89,2,2,12,14]]],[2,1,1,14,15,[[90,1,1,14,15]]],[3,6,6,15,21,[[119,2,2,15,17],[121,3,3,17,20],[124,1,1,20,21]]],[6,4,4,21,25,[[213,2,2,21,23],[218,1,1,23,24],[225,1,1,24,25]]],[11,1,1,25,26,[[328,1,1,25,26]]],[18,1,1,26,27,[[522,1,1,26,27]]],[21,2,2,27,29,[[673,1,1,27,28],[677,1,1,28,29]]],[23,1,1,29,30,[[775,1,1,29,30]]],[25,2,2,30,32,[[822,1,1,30,31],[825,1,1,31,32]]]],[593,600,953,959,960,1412,1449,1537,2226,2335,2465,2621,2729,2731,2756,3721,3727,3813,3814,3819,3943,6584,6589,6749,6937,9977,14600,17579,17628,19710,20956,21060]]],["body",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6749]]],["loins",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[50,1,1,1,2]]]],[1412,1537]]],["shaft",[3,3,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[3,1,1,2,3,[[124,1,1,2,3]]]],[2226,2621,3943]]],["side",[7,7,[[1,3,3,0,3,[[81,1,1,0,1],[89,2,2,1,3]]],[2,1,1,3,4,[[90,1,1,3,4]]],[3,2,2,4,6,[[119,2,2,4,6]]],[11,1,1,6,7,[[328,1,1,6,7]]]],[2465,2729,2731,2756,3721,3727,9977]]],["thigh",[19,17,[[0,8,6,0,6,[[23,2,2,0,2],[31,5,3,2,5],[46,1,1,5,6]]],[3,3,3,6,9,[[121,3,3,6,9]]],[6,3,3,9,12,[[213,2,2,9,11],[225,1,1,11,12]]],[18,1,1,12,13,[[522,1,1,12,13]]],[21,1,1,13,14,[[673,1,1,13,14]]],[23,1,1,14,15,[[775,1,1,14,15]]],[25,2,2,15,17,[[822,1,1,15,16],[825,1,1,16,17]]]],[593,600,953,959,960,1449,3813,3814,3819,6584,6589,6937,14600,17579,19710,20956,21060]]],["thighs",[2,2,[[1,1,1,0,1,[[77,1,1,0,1]]],[21,1,1,1,2,[[677,1,1,1,2]]]],[2335,17628]]]]},{"k":"H3410","v":[["thighs",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21790]]]]},{"k":"H3411","v":[["*",[28,28,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,6,6,1,7,[[75,3,3,1,4],[85,3,3,4,7]]],[6,2,2,7,9,[[229,2,2,7,9]]],[8,1,1,9,10,[[259,1,1,9,10]]],[10,1,1,10,11,[[296,1,1,10,11]]],[11,1,1,11,12,[[331,1,1,11,12]]],[18,2,2,12,14,[[525,1,1,12,13],[605,1,1,13,14]]],[22,3,3,14,17,[[692,2,2,14,16],[715,1,1,16,17]]],[23,4,4,17,21,[[750,1,1,17,18],[769,1,1,18,19],[775,1,1,19,20],[794,1,1,20,21]]],[25,5,5,21,26,[[833,1,1,21,22],[839,2,2,22,24],[840,1,1,24,25],[847,1,1,25,26]]],[29,1,1,26,27,[[884,1,1,26,27]]],[31,1,1,27,28,[[889,1,1,27,28]]]],[1486,2257,2258,2262,2593,2594,2598,7025,7042,7842,8912,10084,14636,16129,17941,17943,18376,19111,19566,19699,20207,21271,21431,21440,21450,21674,22460,22536]]],["+",[7,7,[[10,1,1,0,1,[[296,1,1,0,1]]],[23,4,4,1,5,[[750,1,1,1,2],[769,1,1,2,3],[775,1,1,3,4],[794,1,1,4,5]]],[25,2,2,5,7,[[839,1,1,5,6],[840,1,1,6,7]]]],[8912,19111,19566,19699,20207,21440,21450]]],["border",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1486]]],["quarters",[1,1,[[25,1,1,0,1,[[839,1,1,0,1]]]],[21431]]],["side",[2,2,[[6,2,2,0,2,[[229,2,2,0,2]]]],[7025,7042]]],["sides",[17,17,[[1,6,6,0,6,[[75,3,3,0,3],[85,3,3,3,6]]],[8,1,1,6,7,[[259,1,1,6,7]]],[11,1,1,7,8,[[331,1,1,7,8]]],[18,2,2,8,10,[[525,1,1,8,9],[605,1,1,9,10]]],[22,3,3,10,13,[[692,2,2,10,12],[715,1,1,12,13]]],[25,2,2,13,15,[[833,1,1,13,14],[847,1,1,14,15]]],[29,1,1,15,16,[[884,1,1,15,16]]],[31,1,1,16,17,[[889,1,1,16,17]]]],[2257,2258,2262,2593,2594,2598,7842,10084,14636,16129,17941,17943,18376,21271,21674,22460,22536]]]]},{"k":"H3412","v":[["*",[7,7,[[5,6,6,0,6,[[196,3,3,0,3],[198,1,1,3,4],[201,1,1,4,5],[207,1,1,5,6]]],[15,1,1,6,7,[[423,1,1,6,7]]]],[6067,6069,6087,6141,6237,6410,12617]]],["+",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6087]]],["Jarmuth",[6,6,[[5,5,5,0,5,[[196,2,2,0,2],[198,1,1,2,3],[201,1,1,3,4],[207,1,1,4,5]]],[15,1,1,5,6,[[423,1,1,5,6]]]],[6067,6069,6141,6237,6410,12617]]]]},{"k":"H3413","v":[["*",[3,3,[[6,2,2,0,2,[[211,1,1,0,1],[220,1,1,1,2]]],[14,1,1,2,3,[[412,1,1,2,3]]]],[6519,6822,12285]]],["Jeremai",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12285]]],["against",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6519]]],["unto",[1,1,[[6,1,1,0,1,[[220,1,1,0,1]]]],[6822]]]]},{"k":"H3414","v":[["*",[147,133,[[11,2,2,0,2,[[335,1,1,0,1],[336,1,1,1,2]]],[12,4,4,2,6,[[342,1,1,2,3],[349,3,3,3,6]]],[13,4,4,6,10,[[401,1,1,6,7],[402,3,3,7,10]]],[14,1,1,10,11,[[403,1,1,10,11]]],[15,4,4,11,15,[[422,1,1,11,12],[424,3,3,12,15]]],[23,131,117,15,132,[[745,2,2,15,17],[751,1,1,17,18],[755,1,1,18,19],[758,1,1,19,20],[762,2,2,20,22],[763,1,1,22,23],[764,4,3,23,26],[765,2,2,26,28],[768,1,1,28,29],[769,3,3,29,32],[770,6,6,32,38],[771,1,1,38,39],[772,7,6,39,45],[773,4,4,45,49],[774,1,1,49,50],[776,4,4,50,54],[777,3,3,54,57],[778,4,4,57,61],[779,4,4,61,65],[780,12,9,65,74],[781,15,12,74,86],[782,22,17,86,103],[783,3,3,103,106],[784,3,3,106,109],[786,4,4,109,113],[787,4,4,113,117],[788,4,4,117,121],[789,2,1,121,122],[790,2,2,122,124],[791,1,1,124,125],[793,1,1,125,126],[794,1,1,126,127],[795,4,4,127,131],[796,1,1,131,132]]],[26,1,1,132,133,[[858,1,1,132,133]]]],[10196,10220,10452,10724,10730,10733,11991,12005,12014,12015,12017,12551,12625,12636,12658,18947,18957,19120,19227,19294,19385,19402,19421,19423,19424,19425,19441,19443,19527,19535,19536,19547,19579,19580,19581,19584,19592,19596,19597,19623,19624,19628,19629,19630,19633,19636,19662,19664,19665,19668,19732,19733,19737,19757,19776,19794,19798,19802,19807,19809,19813,19824,19826,19835,19841,19843,19846,19847,19850,19852,19861,19868,19869,19874,19876,19877,19878,19880,19886,19887,19888,19889,19890,19891,19892,19895,19896,19901,19902,19904,19905,19906,19907,19908,19909,19910,19911,19912,19914,19915,19919,19922,19923,19934,19937,19938,19942,19943,19947,19977,19979,19980,19982,19998,19999,20003,20005,20011,20025,20030,20034,20041,20046,20058,20074,20161,20167,20271,20272,20273,20276,20277,21990]]],["+",[2,2,[[23,2,2,0,2,[[780,2,2,0,2]]]],[19846,19874]]],["Jeremiah",[144,132,[[11,2,2,0,2,[[335,1,1,0,1],[336,1,1,1,2]]],[12,4,4,2,6,[[342,1,1,2,3],[349,3,3,3,6]]],[13,4,4,6,10,[[401,1,1,6,7],[402,3,3,7,10]]],[14,1,1,10,11,[[403,1,1,10,11]]],[15,4,4,11,15,[[422,1,1,11,12],[424,3,3,12,15]]],[23,128,116,15,131,[[745,2,2,15,17],[751,1,1,17,18],[755,1,1,18,19],[758,1,1,19,20],[762,2,2,20,22],[763,1,1,22,23],[764,4,3,23,26],[765,2,2,26,28],[768,1,1,28,29],[769,3,3,29,32],[770,6,6,32,38],[771,1,1,38,39],[772,6,5,39,44],[773,4,4,44,48],[774,1,1,48,49],[776,4,4,49,53],[777,3,3,53,56],[778,4,4,56,60],[779,4,4,60,64],[780,10,9,64,73],[781,15,12,73,85],[782,22,17,85,102],[783,3,3,102,105],[784,3,3,105,108],[786,4,4,108,112],[787,4,4,112,116],[788,4,4,116,120],[789,2,1,120,121],[790,2,2,121,123],[791,1,1,123,124],[793,1,1,124,125],[794,1,1,125,126],[795,4,4,126,130],[796,1,1,130,131]]],[26,1,1,131,132,[[858,1,1,131,132]]]],[10196,10220,10452,10724,10730,10733,11991,12005,12014,12015,12017,12551,12625,12636,12658,18947,18957,19120,19227,19294,19385,19402,19421,19423,19424,19425,19441,19443,19527,19535,19536,19547,19579,19580,19581,19584,19592,19596,19597,19623,19624,19629,19630,19633,19636,19662,19664,19665,19668,19732,19733,19737,19757,19776,19794,19798,19802,19807,19809,19813,19824,19826,19835,19841,19843,19846,19847,19850,19852,19861,19868,19869,19874,19876,19877,19878,19880,19886,19887,19888,19889,19890,19891,19892,19895,19896,19901,19902,19904,19905,19906,19907,19908,19909,19910,19911,19912,19914,19915,19919,19922,19923,19934,19937,19938,19942,19943,19947,19977,19979,19980,19982,19998,19999,20003,20005,20011,20025,20030,20034,20041,20046,20058,20074,20161,20167,20271,20272,20273,20276,20277,21990]]],["Jeremiah's",[1,1,[[23,1,1,0,1,[[772,1,1,0,1]]]],[19628]]]]},{"k":"H3415","v":[["*",[8,8,[[8,2,2,0,2,[[243,1,1,0,1],[253,1,1,1,2]]],[9,3,3,2,5,[[277,2,2,2,4],[286,1,1,4,5]]],[12,1,1,5,6,[[358,1,1,5,6]]],[18,1,1,6,7,[[583,1,1,6,7]]],[22,1,1,7,8,[[693,1,1,7,8]]]],[7375,7684,8284,8286,8560,10941,15683,17964]]],["+",[5,5,[[8,2,2,0,2,[[243,1,1,0,1],[253,1,1,1,2]]],[9,2,2,2,4,[[277,2,2,2,4]]],[12,1,1,4,5,[[358,1,1,4,5]]]],[7375,7684,8284,8286,10941]]],["grievous",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17964]]],["harm",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8560]]],["ill",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15683]]]]},{"k":"H3416","v":[["Irpeel",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6320]]]]},{"k":"H3417","v":[["*",[3,2,[[3,2,1,0,1,[[128,2,1,0,1]]],[4,1,1,1,2,[[177,1,1,1,2]]]],[4073,5556]]],["+",[2,1,[[3,2,1,0,1,[[128,2,1,0,1]]]],[4073]]],["spit",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5556]]]]},{"k":"H3418","v":[["*",[6,6,[[0,2,2,0,2,[[0,1,1,0,1],[8,1,1,1,2]]],[1,1,1,2,3,[[59,1,1,2,3]]],[3,1,1,3,4,[[138,1,1,3,4]]],[18,1,1,4,5,[[514,1,1,4,5]]],[22,1,1,5,6,[[693,1,1,5,6]]]],[29,208,1792,4379,14452,17966]]],["grass",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4379]]],["green",[3,3,[[0,2,2,0,2,[[0,1,1,0,1],[8,1,1,1,2]]],[18,1,1,2,3,[[514,1,1,2,3]]]],[29,208,14452]]],["thing",[2,2,[[1,1,1,0,1,[[59,1,1,0,1]]],[22,1,1,1,2,[[693,1,1,1,2]]]],[1792,17966]]]]},{"k":"H3419","v":[["*",[5,5,[[4,1,1,0,1,[[163,1,1,0,1]]],[10,1,1,1,2,[[311,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[19,1,1,3,4,[[642,1,1,3,4]]],[22,1,1,4,5,[[715,1,1,4,5]]]],[5218,9453,10087,16824,18379]]],["green",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10087,18379]]],["herbs",[3,3,[[4,1,1,0,1,[[163,1,1,0,1]]],[10,1,1,1,2,[[311,1,1,1,2]]],[19,1,1,2,3,[[642,1,1,2,3]]]],[5218,9453,16824]]]]},{"k":"H3420","v":[["*",[6,6,[[4,1,1,0,1,[[180,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[13,1,1,2,3,[[372,1,1,2,3]]],[23,1,1,3,4,[[774,1,1,3,4]]],[29,1,1,4,5,[[882,1,1,4,5]]],[36,1,1,5,6,[[910,1,1,5,6]]]],[5633,9022,11310,19673,22419,22872]]],["mildew",[5,5,[[4,1,1,0,1,[[180,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[13,1,1,2,3,[[372,1,1,2,3]]],[29,1,1,3,4,[[882,1,1,3,4]]],[36,1,1,4,5,[[910,1,1,4,5]]]],[5633,9022,11310,22419,22872]]],["paleness",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19673]]]]},{"k":"H3421","v":[["Jorkoam",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10350]]]]},{"k":"H3422","v":[["*",[3,3,[[2,2,2,0,2,[[102,1,1,0,1],[103,1,1,1,2]]],[18,1,1,2,3,[[545,1,1,2,3]]]],[3101,3148,14913]]],["greenish",[2,2,[[2,2,2,0,2,[[102,1,1,0,1],[103,1,1,1,2]]]],[3101,3148]]],["yellow",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14913]]]]},{"k":"H3423","v":[["*",[231,204,[[0,10,9,0,9,[[14,5,4,0,4],[20,1,1,4,5],[21,1,1,5,6],[23,1,1,6,7],[27,1,1,7,8],[44,1,1,8,9]]],[1,2,2,9,11,[[64,1,1,9,10],[83,1,1,10,11]]],[2,3,2,11,13,[[109,2,1,11,12],[114,1,1,12,13]]],[3,15,13,13,26,[[129,1,1,13,14],[130,2,2,14,16],[137,3,3,16,19],[143,1,1,19,20],[148,2,2,20,22],[149,4,3,22,25],[152,2,1,25,26]]],[4,71,63,26,89,[[153,3,3,26,29],[154,6,5,29,34],[155,3,3,34,37],[156,7,7,37,44],[157,2,2,44,46],[158,2,2,46,48],[159,2,2,48,50],[160,1,1,50,51],[161,8,6,51,57],[162,1,1,57,58],[163,9,6,58,64],[164,4,3,64,67],[167,1,1,67,68],[168,1,1,68,69],[169,1,1,69,70],[170,2,2,70,72],[171,3,3,72,75],[173,1,1,75,76],[175,1,1,76,77],[177,1,1,77,78],[178,1,1,78,79],[180,3,3,79,82],[182,4,3,82,85],[183,2,2,85,87],[184,1,1,87,88],[185,1,1,88,89]]],[5,29,24,89,113,[[187,4,2,89,91],[189,2,1,91,92],[194,1,1,92,93],[198,1,1,93,94],[199,4,4,94,98],[200,1,1,98,99],[201,2,2,99,101],[202,1,1,101,102],[203,4,3,102,105],[204,1,1,105,106],[205,1,1,106,107],[207,1,1,107,108],[209,4,3,108,111],[210,2,2,111,113]]],[6,27,21,113,134,[[211,12,10,113,123],[212,3,3,123,126],[213,1,1,126,127],[221,8,4,127,131],[224,1,1,131,132],[228,2,2,132,134]]],[8,1,1,134,135,[[237,1,1,134,135]]],[9,1,1,135,136,[[280,1,1,135,136]]],[10,6,6,136,142,[[304,1,1,136,137],[311,5,5,137,142]]],[11,4,4,142,146,[[328,1,1,142,143],[329,2,2,143,145],[333,1,1,145,146]]],[12,1,1,146,147,[[365,1,1,146,147]]],[13,4,4,147,151,[[386,2,2,147,149],[394,1,1,149,150],[399,1,1,150,151]]],[14,2,2,151,153,[[411,2,2,151,153]]],[15,5,5,153,158,[[421,5,5,153,158]]],[17,2,2,158,160,[[448,1,1,158,159],[455,1,1,159,160]]],[18,11,11,160,171,[[502,1,1,160,161],[514,5,5,161,166],[521,2,2,166,168],[546,1,1,168,169],[560,1,1,169,170],[582,1,1,170,171]]],[19,4,4,171,175,[[647,1,1,171,172],[650,1,1,172,173],[657,2,2,173,175]]],[22,10,9,175,184,[[692,1,1,175,176],[712,2,2,176,178],[732,1,1,178,179],[735,1,1,179,180],[738,1,1,180,181],[739,1,1,181,182],[741,1,1,182,183],[743,2,1,183,184]]],[23,7,5,184,189,[[752,1,1,184,185],[774,1,1,185,186],[776,1,1,186,187],[793,4,2,187,189]]],[25,6,6,189,195,[[808,1,1,189,190],[834,3,3,190,193],[836,1,1,193,194],[837,1,1,194,195]]],[27,1,1,195,196,[[870,1,1,195,196]]],[29,2,2,196,198,[[880,1,1,196,197],[887,1,1,197,198]]],[30,4,3,198,201,[[888,4,3,198,201]]],[32,1,1,201,202,[[893,1,1,201,202]]],[34,1,1,202,203,[[903,1,1,202,203]]],[37,1,1,203,204,[[919,1,1,203,204]]]],[363,364,367,368,523,564,651,777,1369,1929,2520,3342,3515,4105,4120,4132,4364,4372,4375,4565,4739,4757,4812,4813,4815,4887,4900,4913,4931,4950,4959,4960,4962,4969,4987,4993,4995,5005,5009,5018,5026,5030,5042,5051,5084,5086,5087,5104,5112,5128,5138,5158,5160,5161,5162,5163,5180,5197,5216,5218,5219,5231,5237,5239,5241,5242,5269,5323,5362,5378,5396,5398,5407,5408,5420,5448,5520,5566,5567,5632,5653,5674,5713,5724,5726,5731,5741,5805,5833,5862,5866,5903,6009,6131,6155,6160,6166,6167,6199,6216,6265,6275,6287,6288,6293,6296,6368,6424,6465,6469,6473,6480,6484,6528,6529,6530,6536,6537,6538,6539,6540,6541,6542,6551,6566,6568,6581,6850,6851,6852,6853,6924,7000,7002,7247,8363,9242,9466,9467,9469,9470,9477,9966,9991,10007,10121,11151,11594,11598,11767,11910,12248,12249,12526,12533,12534,12535,12536,13179,13341,14264,14459,14461,14472,14479,14484,14573,14574,14970,15253,15650,16967,17065,17260,17274,17949,18314,18320,18726,18778,18842,18850,18884,18906,19163,19670,19754,20128,20129,20601,21304,21305,21306,21354,21371,22214,22389,22507,22527,22529,22530,22594,22737,23003]]],["+",[74,69,[[0,3,3,0,3,[[21,1,1,0,1],[23,1,1,1,2],[27,1,1,2,3]]],[2,1,1,3,4,[[109,1,1,3,4]]],[3,7,7,4,11,[[137,3,3,4,7],[148,2,2,7,9],[149,2,2,9,11]]],[4,18,18,11,29,[[153,1,1,11,12],[154,1,1,12,13],[155,1,1,13,14],[156,3,3,14,17],[158,1,1,17,18],[160,1,1,18,19],[161,3,3,19,22],[162,1,1,22,23],[163,3,3,23,26],[168,1,1,26,27],[170,2,2,27,29]]],[5,13,11,29,40,[[187,2,2,29,31],[189,2,1,31,32],[194,1,1,32,33],[198,1,1,33,34],[202,1,1,34,35],[203,3,2,35,37],[204,1,1,37,38],[209,1,1,38,39],[210,1,1,39,40]]],[6,17,15,40,55,[[211,9,7,40,47],[212,1,1,47,48],[213,1,1,48,49],[221,4,4,49,53],[228,2,2,53,55]]],[11,1,1,55,56,[[329,1,1,55,56]]],[12,1,1,56,57,[[365,1,1,56,57]]],[13,1,1,57,58,[[386,1,1,57,58]]],[15,3,3,58,61,[[421,3,3,58,61]]],[23,1,1,61,62,[[793,1,1,61,62]]],[25,2,2,62,64,[[808,1,1,62,63],[834,1,1,63,64]]],[29,2,2,64,66,[[880,1,1,64,65],[887,1,1,65,66]]],[30,4,3,66,69,[[888,4,3,66,69]]]],[564,651,777,3342,4364,4372,4375,4739,4757,4812,4815,4900,4969,4995,5005,5026,5051,5104,5138,5161,5162,5180,5197,5216,5231,5239,5362,5396,5398,5862,5866,5903,6009,6131,6275,6288,6293,6296,6465,6484,6528,6536,6537,6538,6539,6540,6542,6551,6581,6850,6851,6852,6853,7000,7002,10007,11151,11594,12526,12533,12535,20128,20601,21304,22389,22507,22527,22529,22530]]],["consume",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5653]]],["destroy",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1929]]],["disinherit",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4120]]],["dispossess",[2,2,[[3,1,1,0,1,[[149,1,1,0,1]]],[4,1,1,1,2,[[159,1,1,1,2]]]],[4813,5128]]],["drive",[1,1,[[5,1,1,0,1,[[209,1,1,0,1]]]],[6465]]],["drove",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6216]]],["enjoy",[2,2,[[3,1,1,0,1,[[152,1,1,0,1]]],[5,1,1,1,2,[[187,1,1,1,2]]]],[4887,5866]]],["expelled",[2,2,[[5,1,1,0,1,[[199,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]]],[6167,6529]]],["have",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6924]]],["heir",[9,8,[[0,4,3,0,3,[[14,3,2,0,2],[20,1,1,2,3]]],[9,1,1,3,4,[[280,1,1,3,4]]],[19,1,1,4,5,[[657,1,1,4,5]]],[23,2,2,5,7,[[793,2,2,5,7]]],[32,1,1,7,8,[[893,1,1,7,8]]]],[363,364,523,8363,17274,20128,20129,22594]]],["heirs",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20129]]],["inherit",[15,15,[[0,2,2,0,2,[[14,2,2,0,2]]],[2,1,1,2,3,[[114,1,1,2,3]]],[13,1,1,3,4,[[386,1,1,3,4]]],[18,6,6,4,10,[[502,1,1,4,5],[514,5,5,5,10]]],[22,4,4,10,14,[[732,1,1,10,11],[735,1,1,11,12],[738,1,1,12,13],[743,1,1,13,14]]],[23,1,1,14,15,[[752,1,1,14,15]]]],[367,368,3515,11598,14264,14459,14461,14472,14479,14484,18726,18778,18842,18906,19163]]],["inheritance",[1,1,[[14,1,1,0,1,[[411,1,1,0,1]]]],[12249]]],["inherited",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15650]]],["inheritor",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18906]]],["out",[27,27,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,4,4,1,5,[[156,1,1,1,2],[161,3,3,2,5]]],[5,7,7,5,12,[[199,2,2,5,7],[200,1,1,7,8],[201,1,1,8,9],[203,1,1,9,10],[209,2,2,10,12]]],[6,5,5,12,17,[[211,2,2,12,14],[212,2,2,14,16],[221,1,1,16,17]]],[10,2,2,17,19,[[304,1,1,17,18],[311,1,1,18,19]]],[11,3,3,19,22,[[328,1,1,19,20],[329,1,1,20,21],[333,1,1,21,22]]],[13,2,2,22,24,[[394,1,1,22,23],[399,1,1,23,24]]],[17,1,1,24,25,[[455,1,1,24,25]]],[18,1,1,25,26,[[521,1,1,25,26]]],[37,1,1,26,27,[[919,1,1,26,27]]]],[2520,5042,5160,5161,5162,6160,6166,6199,6265,6287,6469,6473,6530,6541,6566,6568,6853,9242,9477,9966,9991,10121,11767,11910,13341,14573,23003]]],["poor",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[7247,17260]]],["possess",[64,63,[[2,1,1,0,1,[[109,1,1,0,1]]],[3,4,4,1,5,[[129,1,1,1,2],[130,1,1,2,3],[143,1,1,3,4],[149,1,1,4,5]]],[4,39,39,5,44,[[153,2,2,5,7],[154,2,2,7,9],[155,1,1,9,10],[156,3,3,10,13],[157,2,2,13,15],[158,1,1,15,16],[159,1,1,16,17],[161,2,2,17,19],[163,6,6,19,25],[164,3,3,25,28],[167,1,1,28,29],[169,1,1,29,30],[171,2,2,30,32],[173,1,1,32,33],[175,1,1,33,34],[177,1,1,34,35],[180,2,2,35,37],[182,3,3,37,40],[183,2,2,40,42],[184,1,1,42,43],[185,1,1,43,44]]],[5,2,2,44,46,[[187,1,1,44,45],[210,1,1,45,46]]],[6,3,2,46,48,[[221,3,2,46,48]]],[10,1,1,48,49,[[311,1,1,48,49]]],[14,1,1,49,50,[[411,1,1,49,50]]],[15,1,1,50,51,[[421,1,1,50,51]]],[17,1,1,51,52,[[448,1,1,51,52]]],[22,4,4,52,56,[[692,1,1,52,53],[712,2,2,53,55],[739,1,1,55,56]]],[23,1,1,56,57,[[774,1,1,56,57]]],[25,4,4,57,61,[[834,2,2,57,59],[836,1,1,59,60],[837,1,1,60,61]]],[27,1,1,61,62,[[870,1,1,61,62]]],[34,1,1,62,63,[[903,1,1,62,63]]]],[3342,4105,4132,4565,4813,4913,4931,4962,4969,4993,5009,5018,5030,5084,5086,5087,5112,5158,5163,5216,5218,5219,5231,5237,5239,5241,5242,5269,5323,5378,5408,5420,5448,5520,5566,5632,5674,5713,5724,5726,5731,5741,5805,5833,5862,6480,6852,6853,9469,12248,12534,13179,17949,18314,18320,18850,19670,21305,21306,21354,21371,22214,22737]]],["possessed",[8,8,[[4,2,2,0,2,[[155,1,1,0,1],[182,1,1,1,2]]],[5,3,3,2,5,[[199,1,1,2,3],[205,1,1,3,4],[207,1,1,4,5]]],[15,1,1,5,6,[[421,1,1,5,6]]],[22,1,1,6,7,[[741,1,1,6,7]]],[23,1,1,7,8,[[776,1,1,7,8]]]],[4987,5713,6155,6368,6424,12536,18884,19754]]],["possessest",[1,1,[[4,1,1,0,1,[[178,1,1,0,1]]]],[5567]]],["possesseth",[1,1,[[3,1,1,0,1,[[152,1,1,0,1]]]],[4887]]],["possession",[5,5,[[10,3,3,0,3,[[311,3,3,0,3]]],[18,2,2,3,5,[[521,1,1,3,4],[546,1,1,4,5]]]],[9466,9467,9470,14574,14970]]],["poverty",[3,3,[[0,1,1,0,1,[[44,1,1,0,1]]],[19,2,2,1,3,[[647,1,1,1,2],[650,1,1,2,3]]]],[1369,16967,17065]]],["succeeded",[3,3,[[4,3,3,0,3,[[154,3,3,0,3]]]],[4950,4959,4960]]],["succeedest",[2,2,[[4,2,2,0,2,[[164,1,1,0,1],[171,1,1,1,2]]]],[5269,5407]]],["take",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15253]]]]},{"k":"H3424","v":[["possession",[2,1,[[3,2,1,0,1,[[140,2,1,0,1]]]],[4464]]]]},{"k":"H3425","v":[["*",[14,12,[[4,7,5,0,5,[[154,6,4,0,4],[155,1,1,4,5]]],[5,3,3,5,8,[[187,1,1,5,6],[198,2,2,6,8]]],[6,1,1,8,9,[[231,1,1,8,9]]],[13,1,1,9,10,[[386,1,1,9,10]]],[18,1,1,10,11,[[538,1,1,10,11]]],[23,1,1,11,12,[[776,1,1,11,12]]]],[4943,4947,4950,4957,4995,5866,6136,6137,7119,11598,14824,19739]]],["+",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11598]]],["heritage",[1,1,[[18,1,1,0,1,[[538,1,1,0,1]]]],[14824]]],["inheritance",[2,2,[[6,1,1,0,1,[[231,1,1,0,1]]],[23,1,1,1,2,[[776,1,1,1,2]]]],[7119,19739]]],["possession",[10,8,[[4,7,5,0,5,[[154,6,4,0,4],[155,1,1,4,5]]],[5,3,3,5,8,[[187,1,1,5,6],[198,2,2,6,8]]]],[4943,4947,4950,4957,4995,5866,6136,6137]]]]},{"k":"H3426","v":[["*",[136,127,[[0,20,19,0,19,[[17,1,1,0,1],[22,1,1,1,2],[23,3,3,2,5],[27,1,1,5,6],[30,1,1,6,7],[32,2,2,7,9],[38,4,3,9,12],[41,2,2,12,14],[42,2,2,14,16],[43,3,3,16,19]]],[1,1,1,19,20,[[66,1,1,19,20]]],[3,4,4,20,24,[[125,2,2,20,22],[129,1,1,22,23],[138,1,1,23,24]]],[4,3,2,24,26,[[165,1,1,24,25],[181,2,1,25,26]]],[6,6,5,26,31,[[214,1,1,26,27],[216,2,2,27,29],[228,1,1,29,30],[229,2,1,30,31]]],[7,2,2,31,33,[[232,1,1,31,32],[234,1,1,32,33]]],[8,9,9,33,42,[[244,2,2,33,35],[249,1,1,35,36],[252,1,1,36,37],[255,1,1,37,38],[256,3,3,38,41],[258,1,1,41,42]]],[9,3,3,42,45,[[275,1,1,42,43],[280,1,1,43,44],[285,1,1,44,45]]],[10,2,2,45,47,[[307,1,1,45,46],[308,1,1,46,47]]],[11,10,8,47,55,[[314,1,1,47,48],[315,1,1,48,49],[316,2,2,49,51],[317,1,1,51,52],[321,1,1,52,53],[322,4,2,53,55]]],[12,1,1,55,56,[[366,1,1,55,56]]],[13,4,4,56,60,[[381,1,1,56,57],[382,1,1,57,58],[391,2,2,58,60]]],[14,2,2,60,62,[[412,2,2,60,62]]],[15,4,4,62,66,[[417,4,4,62,66]]],[16,1,1,66,67,[[428,1,1,66,67]]],[17,12,12,67,79,[[440,1,1,67,68],[441,2,2,68,70],[444,1,1,70,71],[446,1,1,71,72],[449,1,1,72,73],[451,1,1,73,74],[460,1,1,74,75],[463,1,1,75,76],[468,2,2,76,78],[473,1,1,78,79]]],[18,6,6,79,85,[[484,1,1,79,80],[491,1,1,80,81],[530,1,1,81,82],[535,1,1,82,83],[550,1,1,83,84],[612,1,1,84,85]]],[19,13,13,85,98,[[630,1,1,85,86],[635,1,1,86,87],[638,1,1,87,88],[639,1,1,88,89],[640,2,2,89,91],[641,1,1,91,92],[643,1,1,92,93],[645,1,1,93,94],[646,1,1,94,95],[647,1,1,95,96],[650,1,1,96,97],[651,1,1,97,98]]],[20,16,13,98,111,[[659,1,1,98,99],[660,2,2,99,101],[662,2,2,101,103],[663,1,1,103,104],[664,2,2,104,106],[665,2,1,106,107],[666,4,2,107,109],[667,1,1,109,110],[668,1,1,110,111]]],[22,2,2,111,113,[[721,1,1,111,112],[722,1,1,112,113]]],[23,10,9,113,122,[[749,1,1,113,114],[758,1,1,114,115],[767,1,1,115,116],[771,1,1,116,117],[775,3,3,117,120],[781,2,1,120,121],[785,1,1,121,122]]],[24,2,2,122,124,[[797,1,1,122,123],[799,1,1,123,124]]],[31,1,1,124,125,[[892,1,1,124,125]]],[32,1,1,125,126,[[894,1,1,125,126]]],[38,1,1,126,127,[[925,1,1,126,127]]]],[448,579,614,633,640,789,902,969,971,1153,1154,1157,1253,1254,1294,1297,1343,1344,1350,1990,3985,3986,4095,4404,5275,5697,6619,6667,6690,7007,7043,7139,7184,7402,7403,7547,7664,7738,7775,7776,7780,7833,8228,8388,8539,9329,9351,9567,9588,9605,9616,9655,9771,9808,9816,11167,11497,11518,11712,11713,12254,12296,12384,12385,12386,12387,12755,12952,12984,13008,13084,13126,13188,13242,13464,13505,13673,13682,13821,13998,14082,14721,14790,15031,16192,16483,16623,16712,16737,16754,16770,16784,16865,16925,16943,16969,17062,17093,17325,17346,17354,17389,17390,17410,17418,17428,17444,17464,17472,17479,17498,18513,18541,19059,19315,19510,19614,19697,19707,19708,19891,19965,20322,20383,22579,22596,23103]]],["+",[4,4,[[0,1,1,0,1,[[22,1,1,0,1]]],[8,1,1,1,2,[[258,1,1,1,2]]],[11,1,1,2,3,[[322,1,1,2,3]]],[20,1,1,3,4,[[660,1,1,3,4]]]],[579,7833,9808,17346]]],["Hath",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13821]]],["Have",[1,1,[[0,1,1,0,1,[[43,1,1,0,1]]]],[1343]]],["Is",[3,3,[[1,1,1,0,1,[[66,1,1,0,1]]],[6,1,1,1,2,[[214,1,1,1,2]]],[8,1,1,2,3,[[244,1,1,2,3]]]],[1990,6619,7402]]],["are",[2,2,[[15,1,1,0,1,[[417,1,1,0,1]]],[31,1,1,1,2,[[892,1,1,1,2]]]],[12387,22579]]],["be",[28,26,[[0,2,2,0,2,[[17,1,1,0,1],[43,1,1,1,2]]],[3,1,1,2,3,[[129,1,1,2,3]]],[4,2,1,3,4,[[181,2,1,3,4]]],[6,1,1,4,5,[[216,1,1,4,5]]],[8,2,2,5,7,[[249,1,1,5,6],[255,1,1,6,7]]],[9,1,1,7,8,[[280,1,1,7,8]]],[11,4,4,8,12,[[314,1,1,8,9],[321,1,1,9,10],[322,2,2,10,12]]],[13,1,1,12,13,[[381,1,1,12,13]]],[17,2,2,13,15,[[440,1,1,13,14],[468,1,1,14,15]]],[18,1,1,15,16,[[484,1,1,15,16]]],[19,1,1,16,17,[[651,1,1,16,17]]],[20,3,2,17,19,[[664,1,1,17,18],[666,2,1,18,19]]],[23,5,5,19,24,[[749,1,1,19,20],[767,1,1,20,21],[771,1,1,21,22],[775,2,2,22,24]]],[24,2,2,24,26,[[797,1,1,24,25],[799,1,1,25,26]]]],[448,1350,4095,5697,6667,7547,7738,8388,9567,9771,9808,9816,11497,12952,13673,13998,17093,17428,17472,19059,19510,19614,19697,19707,20322,20383]]],["do",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[633]]],["had",[4,3,[[0,3,2,0,2,[[38,3,2,0,2]]],[14,1,1,2,3,[[412,1,1,2,3]]]],[1153,1154,12296]]],["hast",[3,3,[[11,1,1,0,1,[[316,1,1,0,1]]],[17,1,1,1,2,[[468,1,1,1,2]]],[19,1,1,2,3,[[630,1,1,2,3]]]],[9605,13682,16483]]],["hath",[3,3,[[0,1,1,0,1,[[38,1,1,0,1]]],[13,1,1,1,2,[[391,1,1,1,2]]],[38,1,1,2,3,[[925,1,1,2,3]]]],[1157,11712,23103]]],["have",[12,12,[[0,4,4,0,4,[[32,2,2,0,2],[42,1,1,2,3],[43,1,1,3,4]]],[7,1,1,4,5,[[232,1,1,4,5]]],[9,1,1,5,6,[[285,1,1,5,6]]],[10,1,1,6,7,[[307,1,1,6,7]]],[12,1,1,7,8,[[366,1,1,7,8]]],[13,1,1,8,9,[[382,1,1,8,9]]],[20,1,1,9,10,[[662,1,1,9,10]]],[22,1,1,10,11,[[721,1,1,10,11]]],[23,1,1,11,12,[[785,1,1,11,12]]]],[969,971,1297,1344,7139,8539,9329,11167,11518,17390,18513,19965]]],["is",[44,42,[[0,3,3,0,3,[[27,1,1,0,1],[30,1,1,1,2],[41,1,1,2,3]]],[6,3,2,3,5,[[228,1,1,3,4],[229,2,1,4,5]]],[7,1,1,5,6,[[234,1,1,5,6]]],[8,4,4,6,10,[[244,1,1,6,7],[252,1,1,7,8],[256,2,2,8,10]]],[10,1,1,10,11,[[308,1,1,10,11]]],[11,3,3,11,14,[[315,1,1,11,12],[317,1,1,12,13],[322,1,1,13,14]]],[13,1,1,14,15,[[391,1,1,14,15]]],[14,1,1,15,16,[[412,1,1,15,16]]],[16,1,1,16,17,[[428,1,1,16,17]]],[17,2,2,17,19,[[449,1,1,17,18],[463,1,1,18,19]]],[18,1,1,19,20,[[535,1,1,19,20]]],[19,10,10,20,30,[[638,1,1,20,21],[639,1,1,21,22],[640,2,2,22,24],[641,1,1,24,25],[643,1,1,25,26],[645,1,1,26,27],[646,1,1,27,28],[647,1,1,28,29],[650,1,1,29,30]]],[20,10,9,30,39,[[660,1,1,30,31],[662,1,1,31,32],[663,1,1,32,33],[664,1,1,33,34],[665,2,1,34,35],[666,2,2,35,37],[667,1,1,37,38],[668,1,1,38,39]]],[23,2,2,39,41,[[775,1,1,39,40],[781,1,1,40,41]]],[32,1,1,41,42,[[894,1,1,41,42]]]],[789,902,1254,7007,7043,7184,7403,7664,7775,7776,9351,9588,9655,9808,11713,12254,12755,13188,13505,14790,16712,16737,16754,16770,16784,16865,16925,16943,16969,17062,17354,17389,17410,17418,17444,17464,17472,17479,17498,19708,19891,22596]]],["substance",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16623]]],["there",[14,14,[[0,1,1,0,1,[[23,1,1,0,1]]],[8,1,1,1,2,[[256,1,1,1,2]]],[9,1,1,2,3,[[275,1,1,2,3]]],[17,5,5,3,8,[[441,2,2,3,5],[444,1,1,5,6],[446,1,1,6,7],[460,1,1,7,8]]],[18,2,2,8,10,[[550,1,1,8,9],[612,1,1,9,10]]],[20,1,1,10,11,[[659,1,1,10,11]]],[22,1,1,11,12,[[722,1,1,11,12]]],[23,2,2,12,14,[[758,1,1,12,13],[781,1,1,13,14]]]],[614,7780,8228,12984,13008,13084,13126,13464,15031,16192,17325,18541,19315,19891]]],["thou",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6690]]],["was",[3,3,[[0,1,1,0,1,[[41,1,1,0,1]]],[3,2,2,1,3,[[125,2,2,1,3]]]],[1253,3985,3986]]],["were",[7,7,[[3,1,1,0,1,[[138,1,1,0,1]]],[15,3,3,1,4,[[417,3,3,1,4]]],[17,1,1,4,5,[[451,1,1,4,5]]],[18,2,2,5,7,[[491,1,1,5,6],[530,1,1,6,7]]]],[4404,12384,12385,12386,13242,14082,14721]]],["whether",[1,1,[[4,1,1,0,1,[[165,1,1,0,1]]]],[5275]]],["will",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[640]]],["wilt",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1294]]],["wouldest",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9616]]]]},{"k":"H3427","v":[["*",[1081,975,[[0,71,63,0,63,[[3,2,2,0,2],[10,2,2,2,4],[12,6,4,4,8],[13,2,2,8,10],[15,1,1,10,11],[17,1,1,11,12],[18,6,4,12,16],[19,2,2,16,18],[20,4,3,18,21],[21,2,2,21,23],[22,1,1,23,24],[23,4,4,24,28],[24,2,2,28,30],[25,2,2,30,32],[26,2,2,32,34],[28,2,2,34,36],[30,1,1,36,37],[33,7,6,37,43],[34,1,1,43,44],[35,3,3,44,47],[36,2,2,47,49],[37,3,2,49,51],[42,1,1,51,52],[43,1,1,52,53],[44,1,1,53,54],[45,1,1,54,55],[46,5,4,55,59],[47,1,1,59,60],[48,1,1,60,61],[49,2,2,61,63]]],[1,21,20,63,83,[[51,3,2,63,65],[60,1,1,65,66],[61,2,2,66,68],[64,3,3,68,71],[65,3,3,71,74],[66,1,1,74,75],[67,2,2,75,77],[72,2,2,77,79],[73,1,1,79,80],[81,1,1,80,81],[83,2,2,81,83]]],[2,24,22,83,105,[[97,1,1,83,84],[101,2,2,84,86],[102,1,1,86,87],[103,1,1,87,88],[104,7,6,88,94],[107,2,2,94,96],[109,1,1,96,97],[112,3,2,97,99],[114,3,3,99,102],[115,3,3,102,105]]],[3,36,31,105,136,[[129,8,5,105,110],[130,3,3,110,113],[136,2,2,113,115],[137,4,4,115,119],[138,3,3,119,122],[141,1,1,122,123],[148,4,3,123,126],[149,5,4,126,130],[151,6,6,130,136]]],[4,46,39,136,175,[[153,6,4,136,140],[154,13,9,140,149],[155,3,3,149,152],[156,1,1,152,153],[158,1,1,153,154],[160,1,1,154,155],[161,1,1,155,156],[163,3,3,156,159],[164,3,2,159,161],[165,3,3,161,164],[169,2,2,164,166],[171,1,1,166,167],[173,1,1,167,168],[175,2,2,168,170],[177,1,1,170,171],[178,1,1,171,172],[180,1,1,172,173],[181,1,1,173,174],[182,1,1,174,175]]],[5,52,47,175,222,[[187,1,1,175,176],[188,4,4,176,180],[191,1,1,180,181],[192,1,1,181,182],[193,2,2,182,184],[194,3,3,184,187],[195,6,6,187,193],[196,2,2,193,195],[197,1,1,195,196],[198,2,2,196,198],[199,3,3,198,201],[200,1,1,201,202],[201,3,2,202,204],[202,2,1,204,205],[203,7,4,205,209],[205,2,2,209,211],[206,2,2,211,213],[207,2,2,213,215],[208,1,1,215,216],[210,6,6,216,222]]],[6,71,57,222,279,[[211,27,14,222,236],[212,1,1,236,237],[213,3,3,237,240],[214,2,2,240,242],[215,4,4,242,246],[216,3,3,246,249],[218,1,1,249,250],[219,3,2,250,252],[220,2,2,252,254],[221,5,5,254,259],[223,1,1,259,260],[225,1,1,260,261],[226,2,2,261,263],[227,2,2,263,265],[228,3,3,265,268],[229,3,3,268,271],[230,3,3,271,274],[231,5,5,274,279]]],[7,11,8,279,287,[[232,1,1,279,280],[233,3,3,280,283],[234,1,1,283,284],[235,6,3,284,287]]],[8,47,42,287,329,[[236,4,3,287,290],[237,1,1,290,291],[239,2,2,291,293],[240,1,1,293,294],[241,1,1,294,295],[242,1,1,295,296],[247,2,2,296,298],[248,1,1,298,299],[249,1,1,299,300],[254,3,3,300,303],[255,6,4,303,307],[257,4,4,307,311],[258,6,5,311,316],[259,1,1,316,317],[260,1,1,317,318],[261,1,1,318,319],[262,6,5,319,324],[263,1,1,324,325],[265,2,2,325,327],[266,2,2,327,329]]],[9,30,27,329,356,[[267,1,1,329,330],[268,2,2,330,332],[271,2,2,332,334],[272,2,2,334,336],[273,6,5,336,341],[275,1,1,341,342],[276,1,1,342,343],[277,4,3,343,346],[279,1,1,346,347],[280,1,1,347,348],[281,3,3,348,351],[282,2,2,351,353],[284,1,1,353,354],[285,2,1,354,355],[289,1,1,355,356]]],[10,53,52,356,408,[[291,9,9,356,365],[292,6,5,365,370],[293,2,2,370,372],[294,1,1,372,373],[297,1,1,373,374],[298,8,8,374,382],[299,1,1,382,383],[301,2,2,383,385],[302,3,3,385,388],[303,4,4,388,392],[305,2,2,392,394],[306,1,1,394,395],[307,3,3,395,398],[309,1,1,398,399],[311,6,6,399,405],[312,3,3,405,408]]],[11,41,39,408,447,[[313,1,1,408,409],[314,4,4,409,413],[316,3,3,413,416],[318,4,3,416,419],[319,2,2,419,421],[321,1,1,421,422],[322,1,1,422,423],[323,1,1,423,424],[325,2,2,424,426],[326,1,1,426,427],[327,2,2,427,429],[328,1,1,429,430],[329,8,7,430,437],[330,1,1,437,438],[331,4,4,438,442],[334,3,3,442,445],[335,1,1,445,446],[337,1,1,446,447]]],[12,43,40,447,487,[[339,1,1,447,448],[341,6,5,448,453],[342,7,7,453,460],[344,1,1,460,461],[345,6,5,461,466],[346,6,6,466,472],[347,1,1,472,473],[348,3,3,473,476],[350,2,2,476,478],[354,5,4,478,482],[356,1,1,482,483],[357,1,1,483,484],[359,1,1,484,485],[365,1,1,485,486],[366,1,1,486,487]]],[13,50,48,487,535,[[368,1,1,487,488],[372,8,8,488,496],[374,2,2,496,498],[376,1,1,498,499],[377,1,1,499,500],[381,1,1,500,501],[382,1,1,501,502],[384,3,2,502,504],[385,2,2,504,506],[386,7,6,506,512],[387,2,2,512,514],[388,1,1,514,515],[389,1,1,515,516],[391,1,1,516,517],[392,2,2,517,519],[394,1,1,519,520],[396,1,1,520,521],[397,2,2,521,523],[398,4,4,523,527],[399,1,1,527,528],[400,6,6,528,534],[401,1,1,534,535]]],[14,12,12,535,547,[[404,1,1,535,536],[406,1,1,536,537],[410,1,1,537,538],[411,2,2,538,540],[412,7,7,540,547]]],[15,22,20,547,567,[[413,1,1,547,548],[414,1,1,548,549],[415,2,2,549,551],[416,1,1,551,552],[419,2,2,552,554],[420,2,2,554,556],[421,1,1,556,557],[423,9,7,557,564],[425,3,3,564,567]]],[16,9,9,567,576,[[426,2,2,567,569],[427,2,2,569,571],[428,1,1,571,572],[430,2,2,572,574],[431,1,1,574,575],[434,1,1,575,576]]],[17,8,8,576,584,[[437,2,2,576,578],[450,1,1,578,579],[457,1,1,579,580],[459,1,1,580,581],[464,1,1,581,582],[471,1,1,582,583],[473,1,1,583,584]]],[18,60,58,584,642,[[478,1,1,584,585],[479,1,1,585,586],[481,1,1,586,587],[486,3,3,587,590],[487,1,1,590,591],[494,1,1,591,592],[499,1,1,592,593],[500,1,1,593,594],[501,1,1,594,595],[503,2,2,595,597],[504,1,1,597,598],[506,2,1,598,599],[510,3,2,599,601],[524,1,1,601,602],[526,1,1,602,603],[527,1,1,603,604],[532,1,1,604,605],[538,1,1,605,606],[542,1,1,606,607],[545,3,3,607,610],[546,3,3,610,613],[552,1,1,613,614],[557,1,1,614,615],[560,1,1,615,616],[561,1,1,616,617],[568,1,1,617,618],[575,1,1,618,619],[576,1,1,619,620],[578,2,2,620,622],[579,1,1,622,623],[584,3,3,623,626],[587,1,1,626,627],[590,3,3,627,630],[596,1,1,630,631],[599,1,1,631,632],[600,1,1,632,633],[602,1,1,633,634],[604,1,1,634,635],[609,2,2,635,637],[610,1,1,637,638],[614,1,1,638,639],[616,1,1,639,640],[617,1,1,640,641],[620,1,1,641,642]]],[19,8,8,642,650,[[630,1,1,642,643],[636,1,1,643,644],[647,1,1,644,645],[648,2,2,645,647],[650,1,1,647,648],[652,1,1,648,649],[658,1,1,649,650]]],[20,1,1,650,651,[[668,1,1,650,651]]],[21,3,3,651,654,[[672,1,1,651,652],[675,1,1,652,653],[678,1,1,653,654]]],[22,69,63,654,717,[[681,1,1,654,655],[683,3,3,655,658],[684,3,3,658,661],[686,1,1,661,662],[687,2,2,662,664],[688,3,3,664,667],[690,1,1,667,668],[691,1,1,668,669],[692,1,1,669,670],[694,1,1,670,671],[696,1,1,671,672],[698,1,1,672,673],[699,1,1,673,674],[700,1,1,674,675],[701,3,3,675,678],[702,5,4,678,682],[704,4,4,682,686],[706,1,1,686,687],[708,1,1,687,688],[710,2,2,688,690],[711,1,1,690,691],[714,1,1,691,692],[715,4,4,692,696],[716,1,1,696,697],[718,3,1,697,698],[720,4,3,698,701],[722,2,2,701,703],[723,1,1,703,704],[725,6,4,704,708],[727,2,2,708,710],[729,1,1,710,711],[730,1,1,711,712],[732,1,1,712,713],[736,1,1,713,714],[743,3,3,714,717]]],[23,148,132,717,849,[[745,1,1,717,718],[746,2,2,718,720],[747,1,1,720,721],[748,3,3,721,724],[750,2,2,724,726],[752,3,3,726,729],[753,3,3,729,732],[754,2,2,732,734],[755,3,3,734,737],[756,1,1,737,738],[757,4,2,738,740],[759,2,1,740,741],[760,1,1,741,742],[761,5,3,742,745],[762,1,1,745,746],[763,2,2,746,748],[764,1,1,748,749],[765,3,3,749,752],[766,5,5,752,757],[767,2,2,757,759],[768,1,1,759,760],[769,5,5,760,765],[770,3,3,765,768],[771,1,1,768,769],[773,5,4,769,773],[774,1,1,773,774],[775,1,1,774,775],[776,3,3,775,778],[777,2,2,778,780],[778,1,1,780,781],[779,7,7,781,788],[780,5,5,788,793],[781,2,2,793,795],[782,4,4,795,799],[783,2,2,799,801],[784,5,4,801,805],[785,1,1,805,806],[786,4,4,806,810],[787,1,1,810,811],[788,8,7,811,818],[790,3,2,818,820],[791,2,1,820,821],[792,6,5,821,826],[793,9,7,826,833],[794,9,7,833,840],[795,10,9,840,849]]],[24,9,9,849,858,[[797,2,2,849,851],[798,1,1,851,852],[799,3,3,852,855],[800,2,2,855,857],[801,1,1,857,858]]],[25,64,50,858,908,[[803,1,1,858,859],[804,4,1,859,860],[808,1,1,860,861],[809,3,2,861,863],[812,1,1,863,864],[813,4,3,864,867],[815,1,1,867,868],[816,1,1,868,869],[817,2,1,869,870],[821,1,1,870,871],[824,1,1,871,872],[826,1,1,872,873],[827,7,4,873,877],[828,3,3,877,880],[829,4,3,880,883],[830,2,2,883,885],[832,2,2,885,887],[833,1,1,887,888],[834,2,2,888,890],[835,2,2,890,892],[836,1,1,892,893],[837,6,6,893,899],[838,3,1,899,900],[839,6,4,900,904],[840,3,3,904,907],[845,1,1,907,908]]],[26,1,1,908,909,[[858,1,1,908,909]]],[27,8,8,909,917,[[864,2,2,909,911],[865,2,2,911,913],[870,1,1,913,914],[872,1,1,914,915],[873,1,1,915,916],[875,1,1,916,917]]],[28,5,5,917,922,[[876,2,2,917,919],[877,1,1,919,920],[878,2,2,920,922]]],[29,7,7,922,929,[[879,2,2,922,924],[881,1,1,924,925],[883,1,1,925,926],[886,1,1,926,927],[887,2,2,927,929]]],[31,3,2,929,931,[[891,1,1,929,930],[892,2,1,930,931]]],[32,11,10,931,941,[[893,5,4,931,935],[896,1,1,935,936],[897,1,1,936,937],[898,2,2,937,939],[899,2,2,939,941]]],[33,2,2,941,943,[[900,1,1,941,942],[902,1,1,942,943]]],[34,2,2,943,945,[[904,2,2,943,945]]],[35,8,7,945,952,[[906,4,4,945,949],[907,3,2,949,951],[908,1,1,951,952]]],[36,1,1,952,953,[[909,1,1,952,953]]],[37,23,21,953,974,[[911,1,1,953,954],[912,2,2,954,956],[913,1,1,956,957],[915,1,1,957,958],[916,1,1,958,959],[917,2,1,959,960],[918,3,3,960,963],[919,2,2,963,965],[921,1,1,965,966],[922,5,5,966,971],[923,1,1,971,972],[924,3,2,972,974]]],[38,1,1,974,975,[[927,1,1,974,975]]]],[95,99,268,297,324,325,330,336,343,348,384,425,458,482,486,487,496,510,529,533,534,552,566,581,594,628,646,653,669,685,698,709,746,771,809,814,907,990,996,1001,1002,1003,1010,1012,1047,1048,1060,1084,1108,1130,1133,1323,1357,1368,1420,1424,1426,1431,1447,1453,1497,1517,1528,1569,1575,1811,1845,1856,1934,1935,1937,1950,1976,1982,1995,2012,2013,2175,2177,2191,2444,2508,2511,2952,3048,3049,3098,3119,3172,3174,3188,3190,3191,3194,3254,3276,3340,3444,3445,3479,3487,3488,3529,3556,3559,4093,4094,4103,4104,4107,4122,4133,4153,4312,4326,4341,4365,4371,4374,4380,4383,4394,4472,4724,4735,4758,4800,4812,4813,4815,4847,4848,4870,4873,4877,4879,4896,4898,4936,4938,4942,4946,4948,4950,4958,4959,4960,4961,4967,4977,4994,5004,5050,5093,5149,5166,5227,5238,5239,5250,5269,5284,5285,5287,5378,5382,5407,5460,5513,5516,5552,5567,5641,5695,5728,5865,5878,5884,5891,5893,5942,5974,5983,5985,6011,6026,6028,6040,6044,6048,6053,6059,6061,6065,6070,6126,6132,6134,6160,6167,6175,6191,6217,6265,6275,6282,6286,6287,6291,6368,6371,6376,6378,6383,6424,6459,6478,6483,6484,6489,6491,6494,6518,6519,6520,6525,6526,6528,6530,6536,6538,6539,6540,6541,6542,6544,6547,6571,6573,6588,6601,6604,6633,6639,6640,6646,6664,6665,6672,6748,6775,6795,6812,6829,6832,6837,6846,6850,6855,6893,6937,6958,6961,6990,6991,6994,7000,7021,7028,7030,7039,7069,7080,7101,7104,7111,7112,7114,7125,7131,7156,7163,7172,7190,7191,7192,7194,7221,7234,7235,7248,7301,7310,7326,7352,7354,7468,7471,7501,7510,7708,7715,7724,7735,7749,7754,7755,7791,7792,7793,7810,7815,7824,7828,7835,7839,7842,7874,7908,7933,7935,7937,7938,7941,7965,7999,8002,8016,8020,8023,8052,8062,8138,8141,8159,8168,8181,8182,8185,8186,8198,8240,8245,8260,8270,8271,8337,8384,8397,8408,8418,8429,8444,8502,8519,8661,8730,8734,8737,8741,8744,8747,8752,8763,8765,8782,8789,8794,8806,8808,8822,8833,8869,8942,8998,9005,9010,9012,9015,9024,9028,9034,9067,9124,9132,9153,9168,9176,9195,9198,9204,9209,9267,9270,9294,9322,9326,9336,9391,9459,9460,9461,9462,9463,9464,9481,9490,9499,9542,9553,9555,9557,9569,9616,9623,9641,9675,9676,9706,9710,9711,9761,9823,9848,9876,9884,9906,9930,9937,9969,9989,10007,10008,10009,10010,10011,10012,10051,10076,10087,10088,10097,10159,10161,10164,10167,10246,10361,10408,10413,10425,10426,10428,10436,10437,10438,10439,10444,10450,10451,10564,10581,10588,10603,10604,10607,10617,10618,10631,10649,10650,10653,10666,10677,10678,10680,10766,10774,10864,10867,10868,10879,10912,10927,10982,11148,11187,11214,11284,11292,11298,11300,11303,11312,11315,11321,11348,11357,11412,11419,11495,11511,11551,11560,11580,11586,11594,11595,11602,11605,11607,11610,11635,11637,11645,11676,11723,11739,11753,11782,11852,11858,11860,11885,11897,11901,11908,11917,11955,11957,11960,11961,11963,11965,11984,12097,12116,12233,12240,12241,12254,12261,12262,12266,12268,12269,12270,12300,12313,12340,12353,12371,12423,12493,12507,12510,12535,12589,12590,12591,12592,12594,12609,12613,12687,12694,12698,12704,12716,12743,12745,12762,12780,12792,12803,12853,12899,12904,13231,13397,13449,13557,13743,13833,13940,13949,13973,14025,14028,14032,14049,14115,14207,14241,14242,14277,14278,14289,14318,14374,14380,14633,14649,14688,14751,14826,14868,14906,14910,14916,14947,14960,14970,15074,15199,15248,15263,15396,15497,15500,15519,15520,15533,15709,15733,15735,15787,15818,15821,15822,15921,16094,16099,16111,16123,16163,16165,16170,16223,16241,16276,16296,16484,16652,16962,16993,17003,17045,17137,17307,17499,17557,17610,17653,17733,17742,17747,17748,17770,17774,17780,17821,17831,17838,17863,17874,17881,17906,17926,17941,17974,18000,18035,18049,18073,18079,18083,18095,18096,18100,18101,18112,18135,18139,18148,18151,18170,18236,18275,18277,18303,18342,18368,18379,18380,18389,18401,18442,18487,18490,18491,18546,18559,18579,18600,18604,18607,18613,18655,18656,18679,18698,18726,18798,18901,18918,18919,18960,18971,18980,19004,19031,19034,19056,19097,19101,19154,19167,19169,19181,19186,19201,19218,19219,19228,19235,19238,19253,19279,19284,19332,19344,19363,19377,19382,19395,19410,19419,19428,19446,19449,19453,19456,19458,19460,19477,19484,19492,19498,19532,19536,19539,19543,19563,19564,19581,19582,19587,19607,19640,19651,19663,19667,19685,19715,19743,19763,19768,19785,19792,19823,19830,19832,19833,19834,19836,19838,19840,19854,19857,19864,19872,19873,19890,19895,19897,19902,19908,19923,19926,19937,19946,19947,19950,19951,19974,19985,19988,19989,19993,20001,20011,20012,20023,20024,20025,20032,20036,20053,20064,20075,20089,20098,20099,20108,20123,20128,20135,20145,20147,20157,20158,20160,20169,20179,20187,20200,20201,20205,20206,20213,20224,20236,20241,20242,20247,20249,20255,20274,20311,20313,20342,20360,20382,20417,20432,20441,20461,20498,20517,20584,20605,20618,20670,20682,20699,20700,20732,20760,20808,20896,21048,21087,21116,21117,21119,21120,21124,21129,21156,21159,21182,21183,21189,21194,21236,21247,21263,21304,21311,21338,21341,21353,21369,21370,21376,21387,21392,21394,21422,21433,21436,21437,21439,21454,21457,21474,21602,21995,22131,22132,22134,22136,22211,22251,22261,22289,22293,22305,22312,22355,22363,22369,22372,22407,22434,22489,22500,22509,22564,22573,22590,22591,22592,22594,22624,22637,22660,22664,22672,22677,22689,22720,22756,22765,22791,22798,22800,22805,22810,22820,22826,22844,22889,22903,22906,22920,22943,22960,22969,22980,22996,22997,23004,23005,23034,23050,23051,23052,23053,23055,23060,23078,23079,23123]]],["+",[19,18,[[0,2,2,0,2,[[35,1,1,0,1],[46,1,1,1,2]]],[6,4,4,2,6,[[219,1,1,2,3],[230,1,1,3,4],[231,2,2,4,6]]],[8,2,1,6,7,[[255,2,1,6,7]]],[9,1,1,7,8,[[272,1,1,7,8]]],[10,2,2,8,10,[[311,2,2,8,10]]],[13,1,1,10,11,[[389,1,1,10,11]]],[15,1,1,11,12,[[415,1,1,11,12]]],[18,2,2,12,14,[[584,1,1,12,13],[617,1,1,13,14]]],[21,1,1,14,15,[[675,1,1,14,15]]],[22,1,1,15,16,[[727,1,1,15,16]]],[23,1,1,16,17,[[786,1,1,16,17]]],[25,1,1,17,18,[[837,1,1,17,18]]]],[1047,1431,6795,7069,7111,7114,7735,8159,9460,9463,11676,12353,15735,16276,17610,18655,19985,21392]]],["Abide",[3,3,[[0,1,1,0,1,[[21,1,1,0,1]]],[8,2,2,1,3,[[257,2,2,1,3]]]],[552,7792,7810]]],["Dwell",[1,1,[[6,1,1,0,1,[[227,1,1,0,1]]]],[6990]]],["Remain",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1130]]],["Sit",[2,2,[[18,1,1,0,1,[[587,1,1,0,1]]],[22,1,1,1,2,[[725,1,1,1,2]]]],[15787,18604]]],["Tarry",[6,6,[[1,1,1,0,1,[[73,1,1,0,1]]],[9,2,2,1,3,[[276,1,1,1,2],[277,1,1,2,3]]],[11,2,2,3,5,[[314,2,2,3,5]]],[12,1,1,5,6,[[356,1,1,5,6]]]],[2191,8245,8271,9553,9557,10912]]],["abide",[26,26,[[0,3,3,0,3,[[23,1,1,0,1],[28,1,1,1,2],[43,1,1,2,3]]],[1,1,1,3,4,[[65,1,1,3,4]]],[2,1,1,4,5,[[97,1,1,4,5]]],[3,2,2,5,7,[[138,1,1,5,6],[151,1,1,6,7]]],[4,1,1,7,8,[[155,1,1,7,8]]],[8,4,4,8,12,[[236,1,1,8,9],[240,1,1,9,10],[254,1,1,10,11],[265,1,1,11,12]]],[9,3,3,12,15,[[277,1,1,12,13],[281,1,1,13,14],[282,1,1,14,15]]],[13,2,2,15,17,[[391,1,1,15,16],[398,1,1,16,17]]],[17,2,2,17,19,[[459,1,1,17,18],[473,1,1,18,19]]],[18,1,1,19,20,[[538,1,1,19,20]]],[23,3,3,20,23,[[793,2,2,20,22],[794,1,1,22,23]]],[27,2,2,23,25,[[864,2,2,23,25]]],[32,1,1,25,26,[[897,1,1,25,26]]]],[646,814,1357,1976,2952,4380,4870,4994,7234,7326,7708,7999,8270,8408,8444,11723,11885,13449,13833,14826,20145,20160,20206,22131,22132,22637]]],["abideth",[4,4,[[9,1,1,0,1,[[282,1,1,0,1]]],[18,2,2,1,3,[[532,1,1,1,2],[602,1,1,2,3]]],[23,1,1,3,4,[[765,1,1,3,4]]]],[8429,14751,16111,19449]]],["abiding",[2,2,[[6,2,2,0,2,[[226,2,2,0,2]]]],[6958,6961]]],["abode",[33,32,[[0,2,2,0,2,[[28,1,1,0,1],[48,1,1,1,2]]],[3,3,3,2,5,[[136,1,1,2,3],[138,1,1,3,4],[141,1,1,4,5]]],[4,4,3,5,8,[[153,2,1,5,6],[155,1,1,6,7],[161,1,1,7,8]]],[5,3,3,8,11,[[188,1,1,8,9],[191,1,1,9,10],[194,1,1,10,11]]],[6,4,4,11,15,[[221,1,1,11,12],[229,1,1,12,13],[230,1,1,13,14],[231,1,1,14,15]]],[8,9,9,15,24,[[236,1,1,15,16],[242,1,1,16,17],[248,1,1,17,18],[257,1,1,18,19],[258,3,3,19,22],[260,1,1,22,23],[261,1,1,23,24]]],[9,3,3,24,27,[[267,1,1,24,25],[277,1,1,25,26],[281,1,1,26,27]]],[10,1,1,27,28,[[307,1,1,27,28]]],[11,1,1,28,29,[[331,1,1,28,29]]],[14,1,1,29,30,[[410,1,1,29,30]]],[22,1,1,30,31,[[715,1,1,30,31]]],[23,1,1,31,32,[[782,1,1,31,32]]]],[809,1497,4312,4383,4472,4938,5004,5166,5891,5942,6011,6846,7028,7101,7104,7235,7354,7501,7793,7824,7828,7835,7874,7908,8023,8271,8397,9336,10088,12233,18380,19923]]],["abodest",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6639]]],["continue",[2,2,[[2,2,2,0,2,[[101,2,2,0,2]]]],[3048,3049]]],["continued",[3,3,[[6,1,1,0,1,[[215,1,1,0,1]]],[9,1,1,1,2,[[272,1,1,1,2]]],[10,1,1,2,3,[[312,1,1,2,3]]]],[6640,8168,9481]]],["down",[28,25,[[0,2,2,0,2,[[20,1,1,0,1],[36,1,1,1,2]]],[1,2,2,2,4,[[51,1,1,2,3],[81,1,1,3,4]]],[6,2,2,4,6,[[229,2,2,4,6]]],[7,5,2,6,8,[[235,5,2,6,8]]],[8,1,1,8,9,[[255,1,1,8,9]]],[9,1,1,9,10,[[268,1,1,9,10]]],[10,2,2,10,12,[[292,1,1,10,11],[309,1,1,11,12]]],[14,2,2,12,14,[[411,1,1,12,13],[412,1,1,13,14]]],[15,1,1,14,15,[[413,1,1,14,15]]],[16,1,1,15,16,[[428,1,1,15,16]]],[17,2,2,16,18,[[437,2,2,16,18]]],[18,1,1,18,19,[[614,1,1,18,19]]],[21,1,1,19,20,[[672,1,1,19,20]]],[22,1,1,20,21,[[730,1,1,20,21]]],[23,3,3,21,24,[[757,1,1,21,22],[770,1,1,22,23],[780,1,1,23,24]]],[24,1,1,24,25,[[799,1,1,24,25]]]],[529,1108,1569,2444,7030,7039,7191,7192,7754,8062,8789,9391,12240,12268,12300,12762,12899,12904,16223,17557,18698,19284,19582,19857,20417]]],["downsitting",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16241]]],["dwell",[199,184,[[0,19,16,0,16,[[3,1,1,0,1],[12,2,1,1,2],[18,1,1,2,3],[19,1,1,3,4],[23,2,2,4,6],[33,6,5,6,11],[34,1,1,11,12],[44,1,1,12,13],[45,1,1,13,14],[46,3,2,14,16]]],[1,2,2,16,18,[[51,1,1,16,17],[72,1,1,17,18]]],[2,9,8,18,26,[[102,1,1,18,19],[109,1,1,19,20],[112,3,2,20,22],[114,2,2,22,24],[115,2,2,24,26]]],[3,10,7,26,33,[[129,6,3,26,29],[148,1,1,29,30],[149,2,2,30,32],[151,1,1,32,33]]],[4,13,11,33,44,[[154,3,2,33,35],[163,2,2,35,37],[164,2,1,37,38],[165,1,1,38,39],[169,1,1,39,40],[175,1,1,40,41],[177,1,1,41,42],[180,1,1,42,43],[182,1,1,43,44]]],[5,14,14,44,58,[[195,2,2,44,46],[196,1,1,46,47],[199,1,1,47,48],[200,1,1,48,49],[201,1,1,49,50],[202,1,1,50,51],[203,2,2,51,53],[206,2,2,53,55],[207,1,1,55,56],[210,2,2,56,58]]],[6,6,6,58,64,[[211,3,3,58,61],[216,1,1,61,62],[227,1,1,62,63],[228,1,1,63,64]]],[8,3,2,64,66,[[247,1,1,64,65],[262,2,1,65,66]]],[9,2,2,66,68,[[273,2,2,66,68]]],[10,4,4,68,72,[[292,1,1,68,69],[293,1,1,69,70],[298,1,1,70,71],[307,1,1,71,72]]],[11,5,5,72,77,[[316,1,1,72,73],[318,2,2,73,75],[329,1,1,75,76],[337,1,1,76,77]]],[12,1,1,77,78,[[354,1,1,77,78]]],[13,5,5,78,83,[[368,1,1,78,79],[372,1,1,79,80],[374,2,2,80,82],[385,1,1,82,83]]],[15,3,3,83,86,[[420,1,1,83,84],[423,2,2,84,86]]],[18,16,16,86,102,[[481,1,1,86,87],[500,1,1,87,88],[501,1,1,88,89],[504,1,1,89,90],[542,1,1,90,91],[545,1,1,91,92],[546,2,2,92,94],[561,1,1,94,95],[575,1,1,95,96],[578,2,2,96,98],[584,1,1,98,99],[609,1,1,99,100],[610,1,1,100,101],[620,1,1,101,102]]],[19,3,3,102,105,[[648,2,2,102,104],[652,1,1,104,105]]],[22,11,11,105,116,[[684,1,1,105,106],[687,1,1,106,107],[701,1,1,107,108],[702,1,1,108,109],[704,1,1,109,110],[708,1,1,110,111],[710,1,1,111,112],[711,1,1,112,113],[727,1,1,113,114],[729,1,1,114,115],[736,1,1,115,116]]],[23,40,37,116,153,[[748,1,1,116,117],[752,1,1,117,118],[753,1,1,118,119],[756,1,1,119,120],[764,1,1,120,121],[767,1,1,121,122],[768,1,1,122,123],[769,1,1,123,124],[771,1,1,124,125],[773,3,3,125,128],[775,1,1,128,129],[776,1,1,129,130],[779,4,4,130,134],[784,4,3,134,137],[786,2,2,137,139],[787,1,1,139,140],[788,5,4,140,144],[791,1,1,144,145],[792,2,2,145,147],[793,3,3,147,150],[794,3,2,150,152],[795,1,1,152,153]]],[25,17,15,153,168,[[803,1,1,153,154],[813,1,1,154,155],[817,1,1,155,156],[829,3,2,156,158],[833,1,1,158,159],[835,2,2,159,161],[837,1,1,161,162],[838,2,1,162,163],[839,3,3,163,166],[840,2,2,166,168]]],[27,3,3,168,171,[[870,1,1,168,169],[873,1,1,169,170],[875,1,1,170,171]]],[28,1,1,171,172,[[878,1,1,171,172]]],[29,3,3,172,175,[[881,1,1,172,173],[883,1,1,173,174],[887,1,1,174,175]]],[32,1,1,175,176,[[899,1,1,175,176]]],[33,1,1,176,177,[[900,1,1,176,177]]],[34,2,2,177,179,[[904,2,2,177,179]]],[35,1,1,179,180,[[906,1,1,179,180]]],[36,1,1,180,181,[[909,1,1,180,181]]],[37,3,3,181,184,[[918,1,1,181,182],[919,1,1,182,183],[924,1,1,183,184]]]],[99,324,487,510,594,628,990,996,1001,1002,1003,1012,1368,1420,1424,1426,1575,2177,3098,3340,3444,3445,3487,3488,3529,3556,4094,4103,4104,4735,4813,4815,4877,4942,4967,5238,5239,5250,5284,5378,5516,5552,5641,5728,6044,6059,6070,6167,6191,6265,6275,6287,6291,6376,6378,6383,6489,6491,6530,6536,6544,6664,6991,6994,7468,7935,8182,8185,8806,8833,9012,9326,9616,9675,9676,10010,10246,10864,11214,11300,11348,11357,11586,12507,12589,12590,13973,14241,14242,14289,14868,14916,14960,14970,15263,15497,15519,15520,15733,16165,16170,16296,16993,17003,17137,17774,17831,18095,18101,18135,18236,18277,18303,18656,18679,18798,19056,19169,19201,19253,19428,19492,19532,19539,19607,19640,19663,19667,19715,19768,19830,19832,19834,19838,19946,19950,19951,19988,19989,20001,20011,20023,20024,20036,20075,20089,20108,20128,20135,20157,20169,20205,20213,20498,20699,20808,21182,21183,21263,21338,21341,21387,21422,21433,21436,21437,21454,21457,22211,22261,22289,22363,22407,22434,22500,22677,22689,22756,22765,22805,22844,22980,23005,23079]]],["dwelled",[6,5,[[0,4,3,0,3,[[12,3,2,0,2],[19,1,1,2,3]]],[7,1,1,3,4,[[232,1,1,3,4]]],[8,1,1,4,5,[[247,1,1,4,5]]]],[325,330,496,7131,7471]]],["dwellest",[14,14,[[4,3,3,0,3,[[164,1,1,0,1],[171,1,1,1,2],[178,1,1,2,3]]],[11,1,1,3,4,[[331,1,1,3,4]]],[18,2,2,4,6,[[557,1,1,4,5],[600,1,1,5,6]]],[21,1,1,6,7,[[678,1,1,6,7]]],[22,3,3,7,10,[[688,1,1,7,8],[715,1,1,8,9],[725,1,1,9,10]]],[24,1,1,10,11,[[800,1,1,10,11]]],[25,2,2,11,13,[[808,1,1,11,12],[813,1,1,12,13]]],[37,1,1,13,14,[[912,1,1,13,14]]]],[5269,5407,5567,10076,15199,16099,17653,17874,18368,18607,20441,20584,20682,22906]]],["dwelleth",[19,19,[[3,1,1,0,1,[[129,1,1,0,1]]],[5,1,1,1,2,[[192,1,1,1,2]]],[8,2,2,2,4,[[239,1,1,2,3],[262,1,1,3,4]]],[9,1,1,4,5,[[273,1,1,4,5]]],[12,1,1,5,6,[[350,1,1,5,6]]],[18,3,3,6,9,[[486,1,1,6,7],[568,1,1,7,8],[590,1,1,8,9]]],[19,1,1,9,10,[[630,1,1,9,10]]],[23,4,4,10,14,[[773,1,1,10,11],[788,1,1,11,12],[793,1,1,12,13],[795,1,1,13,14]]],[24,1,1,14,15,[[797,1,1,14,15]]],[25,2,2,15,17,[[817,1,1,15,16],[839,1,1,16,17]]],[27,1,1,17,18,[[865,1,1,17,18]]],[29,1,1,18,19,[[886,1,1,18,19]]]],[4093,5974,7301,7941,8182,10766,14032,15396,15818,16484,19651,20012,20158,20255,20313,20808,21439,22136,22489]]],["dwelling",[15,15,[[0,1,1,0,1,[[24,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]],[10,5,5,2,7,[[298,4,4,2,6],[311,1,1,6,7]]],[11,1,1,7,8,[[329,1,1,7,8]]],[13,5,5,8,13,[[372,5,5,8,13]]],[23,1,1,13,14,[[790,1,1,13,14]]],[25,1,1,14,15,[[839,1,1,14,15]]]],[685,6175,9015,9024,9028,9034,9459,10008,11284,11303,11312,11315,11321,20064,21436]]],["dwelt",[188,180,[[0,23,22,0,22,[[3,1,1,0,1],[10,2,2,1,3],[12,1,1,3,4],[13,2,2,4,6],[15,1,1,6,7],[18,3,2,7,9],[20,2,2,9,11],[21,1,1,11,12],[22,1,1,12,13],[23,1,1,13,14],[24,1,1,14,15],[25,2,2,15,17],[35,1,1,17,18],[36,1,1,18,19],[37,1,1,19,20],[46,1,1,20,21],[49,1,1,21,22]]],[1,2,2,22,24,[[51,1,1,22,23],[61,1,1,23,24]]],[2,2,2,24,26,[[107,1,1,24,25],[115,1,1,25,26]]],[3,9,9,26,35,[[130,2,2,26,28],[136,1,1,28,29],[137,4,4,29,33],[148,1,1,33,34],[149,1,1,34,35]]],[4,18,14,35,49,[[153,4,3,35,38],[154,10,7,38,45],[155,1,1,45,46],[156,1,1,46,47],[160,1,1,47,48],[181,1,1,48,49]]],[5,14,14,49,63,[[188,1,1,49,50],[193,1,1,50,51],[195,1,1,51,52],[198,2,2,52,54],[202,1,1,54,55],[205,2,2,55,57],[207,1,1,57,58],[208,1,1,58,59],[210,4,4,59,63]]],[6,22,21,63,84,[[211,8,7,63,70],[213,2,2,70,72],[214,2,2,72,74],[218,1,1,74,75],[219,2,2,75,77],[220,1,1,77,78],[221,2,2,78,80],[225,1,1,80,81],[228,2,2,81,83],[231,1,1,83,84]]],[7,1,1,84,85,[[233,1,1,84,85]]],[8,6,6,85,91,[[254,1,1,85,86],[257,1,1,86,87],[258,1,1,87,88],[262,2,2,88,90],[266,1,1,90,91]]],[9,5,5,91,96,[[268,1,1,91,92],[271,1,1,92,93],[273,1,1,93,94],[275,1,1,94,95],[280,1,1,95,96]]],[10,13,13,96,109,[[292,1,1,96,97],[294,1,1,97,98],[297,1,1,98,99],[299,1,1,99,100],[301,1,1,100,101],[302,3,3,101,104],[303,2,2,104,106],[305,2,2,106,108],[307,1,1,108,109]]],[11,8,8,109,117,[[325,1,1,109,110],[327,1,1,110,111],[328,1,1,111,112],[329,3,3,112,115],[331,1,1,115,116],[334,1,1,116,117]]],[12,25,24,117,141,[[339,1,1,117,118],[341,6,5,118,123],[342,6,6,123,129],[344,1,1,129,130],[345,3,3,130,133],[346,5,5,133,138],[347,1,1,138,139],[348,1,1,139,140],[354,1,1,140,141]]],[13,12,12,141,153,[[376,1,1,141,142],[377,1,1,142,143],[382,1,1,143,144],[385,1,1,144,145],[386,1,1,145,146],[392,2,2,146,148],[394,1,1,148,149],[396,1,1,149,150],[397,2,2,150,152],[400,1,1,152,153]]],[14,1,1,153,154,[[404,1,1,153,154]]],[15,10,9,154,163,[[416,1,1,154,155],[419,1,1,155,156],[423,7,6,156,162],[425,1,1,162,163]]],[16,1,1,163,164,[[434,1,1,163,164]]],[17,1,1,164,165,[[457,1,1,164,165]]],[18,1,1,165,166,[[545,1,1,165,166]]],[22,1,1,166,167,[[715,1,1,166,167]]],[23,6,6,167,173,[[746,1,1,167,168],[779,1,1,168,169],[783,1,1,169,170],[784,1,1,170,171],[785,1,1,171,172],[788,1,1,172,173]]],[25,6,6,173,179,[[804,1,1,173,174],[832,2,2,174,176],[837,1,1,176,177],[838,1,1,177,178],[840,1,1,178,179]]],[35,1,1,179,180,[[907,1,1,179,180]]]],[95,268,297,336,343,348,384,486,487,533,534,566,581,653,669,698,709,1048,1084,1130,1447,1528,1569,1856,3254,3559,4133,4153,4326,4341,4365,4371,4374,4758,4800,4896,4898,4936,4946,4948,4950,4958,4959,4960,4961,4977,5050,5149,5695,5884,5983,6053,6132,6134,6275,6368,6371,6424,6459,6478,6483,6484,6494,6518,6519,6525,6538,6539,6541,6542,6571,6573,6601,6604,6748,6775,6795,6812,6832,6855,6937,7000,7021,7125,7172,7724,7791,7839,7933,7937,8016,8052,8141,8186,8240,8384,8808,8869,8942,9067,9132,9153,9168,9176,9195,9209,9267,9270,9322,9876,9930,9969,10007,10011,10012,10097,10159,10361,10408,10413,10425,10426,10428,10436,10438,10439,10444,10450,10451,10564,10603,10604,10607,10618,10631,10649,10650,10653,10666,10680,10868,11412,11419,11511,11580,11595,11739,11753,11782,11852,11858,11860,11955,12097,12371,12493,12589,12591,12592,12594,12609,12613,12687,12853,13397,14910,18389,18971,19833,19937,19947,19974,20025,20517,21236,21247,21376,21422,21474,22820]]],["ease",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5513]]],["endure",[2,2,[[18,2,2,0,2,[[486,1,1,0,1],[579,1,1,1,2]]]],[14028,15533]]],["establish",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13743]]],["habitation",[2,2,[[18,1,1,0,1,[[510,1,1,0,1]]],[23,1,1,1,2,[[753,1,1,1,2]]]],[14380,19181]]],["haunt",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21117]]],["in",[6,6,[[1,1,1,0,1,[[64,1,1,0,1]]],[3,2,2,1,3,[[151,2,2,1,3]]],[10,1,1,3,4,[[298,1,1,3,4]]],[12,1,1,4,5,[[354,1,1,4,5]]],[22,1,1,5,6,[[718,1,1,5,6]]]],[1937,4847,4848,8998,10867,18442]]],["inhabit",[8,8,[[3,1,1,0,1,[[151,1,1,0,1]]],[22,3,3,1,4,[[720,1,1,1,2],[743,2,2,2,4]]],[23,1,1,4,5,[[792,1,1,4,5]]],[25,1,1,5,6,[[834,1,1,5,6]]],[29,1,1,6,7,[[887,1,1,6,7]]],[35,1,1,7,8,[[906,1,1,7,8]]]],[4879,18491,18918,18919,20098,21304,22509,22800]]],["inhabitant",[31,30,[[22,6,6,0,6,[[683,1,1,0,1],[684,1,1,1,2],[687,1,1,2,3],[690,1,1,3,4],[698,1,1,4,5],[702,1,1,5,6]]],[23,16,16,6,22,[[746,1,1,6,7],[748,1,1,7,8],[753,1,1,8,9],[754,1,1,9,10],[765,1,1,10,11],[766,1,1,11,12],[770,1,1,12,13],[777,1,1,13,14],[778,1,1,14,15],[788,1,1,15,16],[790,1,1,16,17],[792,2,2,17,19],[795,3,3,19,22]]],[29,2,2,22,24,[[879,2,2,22,24]]],[32,5,4,24,28,[[893,5,4,24,28]]],[35,2,2,28,30,[[907,1,1,28,29],[908,1,1,29,30]]]],[17748,17780,17838,17906,18035,18112,18980,19034,19186,19218,19453,19477,19581,19785,19823,20032,20064,20099,20123,20241,20247,20249,22369,22372,22590,22591,22592,22594,22810,22826]]],["inhabitants",[186,173,[[0,3,3,0,3,[[18,1,1,0,1],[33,1,1,1,2],[49,1,1,2,3]]],[1,5,5,3,8,[[64,2,2,3,5],[72,1,1,5,6],[83,2,2,6,8]]],[2,2,2,8,10,[[107,1,1,8,9],[114,1,1,9,10]]],[3,5,5,10,15,[[129,1,1,10,11],[130,1,1,11,12],[148,1,1,12,13],[149,2,2,13,15]]],[4,2,2,15,17,[[165,2,2,15,17]]],[5,18,15,17,32,[[188,2,2,17,19],[193,1,1,19,20],[194,2,2,20,22],[195,3,3,22,25],[196,1,1,25,26],[197,1,1,26,27],[199,1,1,27,28],[201,2,2,28,30],[203,5,2,30,32]]],[6,20,13,32,45,[[211,14,7,32,39],[212,1,1,39,40],[215,1,1,40,41],[220,1,1,41,42],[221,2,2,42,44],[231,1,1,44,45]]],[7,1,1,45,46,[[235,1,1,45,46]]],[8,4,4,46,50,[[241,1,1,46,47],[258,1,1,47,48],[262,1,1,48,49],[266,1,1,49,50]]],[9,1,1,50,51,[[271,1,1,50,51]]],[10,1,1,51,52,[[311,1,1,51,52]]],[11,4,4,52,56,[[331,1,1,52,53],[334,2,2,53,55],[335,1,1,55,56]]],[12,7,6,56,62,[[345,3,2,56,58],[346,1,1,58,59],[348,2,2,59,61],[359,1,1,61,62]]],[13,20,19,62,81,[[381,1,1,62,63],[386,6,5,63,68],[387,2,2,68,70],[388,1,1,70,71],[398,3,3,71,74],[399,1,1,74,75],[400,5,5,75,80],[401,1,1,80,81]]],[14,1,1,81,82,[[406,1,1,81,82]]],[15,3,3,82,85,[[415,1,1,82,83],[419,1,1,83,84],[421,1,1,84,85]]],[18,5,5,85,90,[[510,2,2,85,87],[526,1,1,87,88],[552,1,1,88,89],[560,1,1,89,90]]],[22,20,20,90,110,[[683,1,1,90,91],[686,1,1,91,92],[688,2,2,92,94],[696,1,1,94,95],[699,1,1,95,96],[700,1,1,96,97],[701,2,2,97,99],[702,3,3,99,102],[704,3,3,102,105],[715,1,1,105,106],[716,1,1,106,107],[718,1,1,107,108],[720,2,2,108,110]]],[23,38,37,110,147,[[745,1,1,110,111],[748,1,1,111,112],[750,1,1,112,113],[752,1,1,113,114],[754,1,1,114,115],[755,3,3,115,118],[757,2,1,118,119],[761,2,2,119,121],[762,1,1,121,122],[763,2,2,122,124],[765,1,1,124,125],[767,1,1,125,126],[769,4,4,126,130],[770,1,1,130,131],[776,1,1,131,132],[779,2,2,132,134],[780,1,1,134,135],[786,1,1,135,136],[790,1,1,136,137],[791,1,1,137,138],[793,3,3,138,141],[794,3,3,141,144],[795,3,3,144,147]]],[24,1,1,147,148,[[800,1,1,147,148]]],[25,7,7,148,155,[[812,1,1,148,149],[813,1,1,149,150],[816,1,1,150,151],[827,1,1,151,152],[828,2,2,152,154],[830,1,1,154,155]]],[26,1,1,155,156,[[858,1,1,155,156]]],[27,1,1,156,157,[[865,1,1,156,157]]],[28,3,3,157,160,[[876,2,2,157,159],[877,1,1,159,160]]],[32,2,2,160,162,[[898,2,2,160,162]]],[35,3,3,162,165,[[906,2,2,162,164],[907,1,1,164,165]]],[37,8,8,165,173,[[918,2,2,165,167],[921,1,1,167,168],[922,4,4,168,172],[923,1,1,172,173]]]],[482,1010,1517,1934,1935,2175,2508,2511,3276,3479,4107,4122,4735,4812,4815,5285,5287,5878,5893,5985,6026,6028,6040,6048,6061,6065,6126,6160,6217,6265,6282,6286,6520,6528,6536,6539,6540,6541,6542,6547,6646,6829,6837,6850,7112,7194,7352,7815,7938,8020,8138,9462,10087,10161,10164,10167,10581,10588,10617,10677,10678,10982,11495,11594,11602,11605,11607,11610,11635,11637,11645,11897,11901,11908,11917,11957,11960,11961,11963,11965,11984,12116,12340,12423,12535,14374,14380,14649,15074,15248,17742,17821,17863,17881,18000,18049,18073,18079,18083,18096,18100,18101,18139,18148,18151,18379,18401,18442,18490,18491,18960,19031,19101,19154,19219,19228,19235,19238,19279,19377,19382,19395,19410,19419,19446,19498,19536,19543,19563,19564,19587,19763,19836,19840,19873,19993,20053,20075,20135,20147,20157,20187,20200,20201,20224,20236,20247,20432,20670,20699,20760,21117,21129,21156,21189,21995,22134,22293,22305,22312,22660,22664,22791,22798,22810,22996,22997,23034,23050,23052,23053,23055,23060]]],["inhabited",[29,28,[[0,1,1,0,1,[[35,1,1,0,1]]],[1,1,1,1,2,[[65,1,1,1,2]]],[6,2,2,2,4,[[211,2,2,2,4]]],[12,1,1,4,5,[[342,1,1,4,5]]],[22,4,4,5,9,[[691,1,1,5,6],[722,1,1,6,7],[723,1,1,7,8],[732,1,1,8,9]]],[23,5,5,9,14,[[750,1,1,9,10],[761,1,1,10,11],[766,1,1,11,12],[794,2,2,12,14]]],[25,8,8,14,22,[[813,1,1,14,15],[827,3,3,15,18],[830,1,1,18,19],[837,2,2,19,21],[839,1,1,21,22]]],[37,7,6,22,28,[[912,1,1,22,23],[917,2,1,23,24],[919,1,1,24,25],[922,1,1,25,26],[924,2,2,26,28]]]],[1060,1982,6526,6530,10437,17926,18559,18579,18726,19097,19363,19460,20179,20205,20700,21117,21119,21120,21194,21369,21394,21437,22903,22969,23004,23051,23078,23079]]],["inhabitest",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14207]]],["inhabiteth",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13231]]],["keep",[1,1,[[18,1,1,0,1,[[590,1,1,0,1]]]],[15822]]],["lurking",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14115]]],["married",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12694]]],["marrying",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12698]]],["place",[1,1,[[27,1,1,0,1,[[872,1,1,0,1]]]],[22251]]],["placed",[4,4,[[11,3,3,0,3,[[329,3,3,0,3]]],[22,1,1,3,4,[[683,1,1,3,4]]]],[9989,10007,10009,17747]]],["remain",[10,10,[[4,1,1,0,1,[[173,1,1,0,1]]],[5,1,1,1,2,[[187,1,1,1,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[10,1,1,3,4,[[301,1,1,3,4]]],[22,3,3,4,7,[[710,1,1,4,5],[722,1,1,5,6],[743,1,1,6,7]]],[23,3,3,7,10,[[761,1,1,7,8],[774,1,1,8,9],[795,1,1,9,10]]]],[5460,5865,7749,9124,18275,18546,18901,19382,19685,20274]]],["remained",[10,10,[[3,1,1,0,1,[[151,1,1,0,1]]],[8,2,2,1,3,[[258,1,1,1,2],[259,1,1,2,3]]],[9,1,1,3,4,[[279,1,1,3,4]]],[12,1,1,4,5,[[350,1,1,4,5]]],[23,4,4,5,9,[[781,2,2,5,7],[782,1,1,7,8],[795,1,1,8,9]]],[25,1,1,9,10,[[804,1,1,9,10]]]],[4873,7824,7842,8337,10774,19890,19895,19908,20242,20517]]],["remainest",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20461]]],["remaineth",[1,1,[[23,1,1,0,1,[[782,1,1,0,1]]]],[19897]]],["return",[1,1,[[25,1,1,0,1,[[836,1,1,0,1]]]],[21353]]],["sat",[72,65,[[0,7,7,0,7,[[17,1,1,0,1],[18,1,1,1,2],[20,1,1,2,3],[30,1,1,3,4],[37,1,1,4,5],[42,1,1,5,6],[47,1,1,6,7]]],[1,4,4,7,11,[[61,1,1,7,8],[65,1,1,8,9],[66,1,1,9,10],[67,1,1,10,11]]],[2,2,2,11,13,[[104,2,2,11,13]]],[6,3,3,13,16,[[216,1,1,13,14],[223,1,1,14,15],[230,1,1,15,16]]],[7,1,1,16,17,[[233,1,1,16,17]]],[8,6,5,17,22,[[236,1,1,17,18],[239,1,1,18,19],[254,1,1,19,20],[255,2,1,20,21],[263,1,1,21,22]]],[9,5,5,22,27,[[273,2,2,22,24],[284,1,1,24,25],[285,1,1,25,26],[289,1,1,26,27]]],[10,6,6,27,33,[[292,2,2,27,29],[303,1,1,29,30],[306,1,1,30,31],[311,1,1,31,32],[312,1,1,32,33]]],[11,6,5,33,38,[[313,1,1,33,34],[316,1,1,34,35],[318,2,1,35,36],[323,1,1,36,37],[325,1,1,37,38]]],[12,3,3,38,41,[[354,2,2,38,40],[366,1,1,40,41]]],[13,2,1,41,42,[[384,2,1,41,42]]],[14,2,2,42,44,[[411,1,1,42,43],[412,1,1,43,44]]],[15,1,1,44,45,[[420,1,1,44,45]]],[16,5,5,45,50,[[426,2,2,45,47],[427,2,2,47,49],[430,1,1,49,50]]],[17,1,1,50,51,[[464,1,1,50,51]]],[18,1,1,51,52,[[503,1,1,51,52]]],[23,7,6,52,58,[[747,1,1,52,53],[759,2,1,53,54],[776,1,1,54,55],[780,2,2,55,57],[783,1,1,57,58]]],[25,7,5,58,63,[[804,2,1,58,59],[809,3,2,59,61],[815,1,1,61,62],[821,1,1,62,63]]],[31,3,2,63,65,[[891,1,1,63,64],[892,2,1,64,65]]]],[425,458,529,907,1133,1323,1453,1845,1950,1995,2012,3174,3190,6665,6893,7080,7163,7221,7310,7715,7755,7965,8181,8198,8502,8519,8661,8782,8789,9204,9294,9464,9490,9542,9623,9706,9848,9884,10864,10879,11187,11551,12241,12261,12510,12704,12716,12743,12745,12780,13557,14277,19004,19332,19743,19854,19864,19926,20517,20605,20618,20732,20896,22564,22573]]],["satest",[2,2,[[18,1,1,0,1,[[486,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[14025,21048]]],["set",[9,9,[[8,1,1,0,1,[[237,1,1,0,1]]],[10,2,2,1,3,[[292,1,1,1,2],[311,1,1,2,3]]],[13,1,1,3,4,[[372,1,1,3,4]]],[18,2,2,4,6,[[590,1,1,4,5],[599,1,1,5,6]]],[24,1,1,6,7,[[799,1,1,6,7]]],[25,2,2,7,9,[[826,1,1,7,8],[827,1,1,8,9]]]],[7248,8794,9461,11292,15821,16094,20360,21087,21120]]],["setteth",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14906]]],["settle",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21370]]],["sit",[55,54,[[0,1,1,0,1,[[26,1,1,0,1]]],[3,1,1,1,2,[[148,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[9,1,1,3,4,[[285,1,1,3,4]]],[10,11,11,4,15,[[291,8,8,4,12],[293,1,1,12,13],[298,2,2,13,15]]],[11,5,5,15,20,[[319,2,2,15,17],[322,1,1,17,18],[327,1,1,18,19],[330,1,1,19,20]]],[12,1,1,20,21,[[365,1,1,20,21]]],[13,1,1,21,22,[[372,1,1,21,22]]],[18,5,5,22,27,[[503,1,1,22,23],[546,1,1,23,24],[584,1,1,24,25],[596,1,1,25,26],[609,1,1,26,27]]],[20,1,1,27,28,[[668,1,1,27,28]]],[22,9,8,28,36,[[681,1,1,28,29],[692,1,1,29,30],[694,1,1,30,31],[714,1,1,31,32],[720,1,1,32,33],[725,4,3,33,36]]],[23,6,6,36,42,[[752,1,1,36,37],[757,1,1,37,38],[760,1,1,38,39],[777,1,1,39,40],[780,1,1,40,41],[792,1,1,41,42]]],[24,2,2,42,44,[[797,1,1,42,43],[798,1,1,43,44]]],[25,4,4,44,48,[[827,1,1,44,45],[829,1,1,45,46],[834,1,1,46,47],[845,1,1,47,48]]],[28,1,1,48,49,[[878,1,1,48,49]]],[32,2,2,49,51,[[896,1,1,49,50],[899,1,1,50,51]]],[37,2,2,51,53,[[913,1,1,51,52],[916,1,1,52,53]]],[38,1,1,53,54,[[927,1,1,53,54]]]],[746,4724,6633,8519,8730,8734,8737,8741,8744,8747,8752,8765,8822,9005,9010,9710,9711,9823,9937,10051,11148,11298,14278,14947,15709,15921,16163,17499,17733,17941,17974,18342,18487,18600,18607,18613,19167,19279,19344,19792,19872,20098,20311,20342,21116,21159,21311,21602,22355,22624,22672,22920,22960,23123]]],["sittest",[6,6,[[1,1,1,0,1,[[67,1,1,0,1]]],[4,2,2,1,3,[[158,1,1,1,2],[163,1,1,2,3]]],[18,1,1,3,4,[[527,1,1,3,4]]],[19,1,1,4,5,[[650,1,1,4,5]]],[23,1,1,5,6,[[766,1,1,5,6]]]],[2013,5093,5227,14688,17045,19456]]],["sitteth",[24,23,[[1,1,1,0,1,[[60,1,1,0,1]]],[2,5,5,1,6,[[104,5,5,1,6]]],[4,1,1,6,7,[[169,1,1,6,7]]],[10,1,1,7,8,[[291,1,1,7,8]]],[16,1,1,8,9,[[431,1,1,8,9]]],[18,7,6,9,15,[[478,1,1,9,10],[479,1,1,10,11],[487,1,1,11,12],[506,2,1,12,13],[524,1,1,13,14],[576,1,1,14,15]]],[19,3,3,15,18,[[636,1,1,15,16],[647,1,1,16,17],[658,1,1,17,18]]],[22,2,2,18,20,[[706,1,1,18,19],[718,1,1,19,20]]],[23,1,1,20,21,[[773,1,1,20,21]]],[24,1,1,21,22,[[799,1,1,21,22]]],[37,1,1,22,23,[[915,1,1,22,23]]]],[1811,3172,3174,3188,3191,3194,5382,8763,12803,13940,13949,14049,14318,14633,15500,16652,16962,17307,18170,18442,19651,20382,22943]]],["sitting",[13,13,[[6,1,1,0,1,[[213,1,1,0,1]]],[10,2,2,1,3,[[303,1,1,1,2],[312,1,1,2,3]]],[11,2,2,3,5,[[316,1,1,3,4],[321,1,1,4,5]]],[13,1,1,5,6,[[384,1,1,5,6]]],[15,1,1,6,7,[[414,1,1,6,7]]],[16,1,1,7,8,[[430,1,1,7,8]]],[22,1,1,8,9,[[684,1,1,8,9]]],[23,4,4,9,13,[[761,1,1,9,10],[766,2,2,10,12],[782,1,1,12,13]]]],[6588,9198,9499,9641,9761,11560,12313,12792,17770,19382,19458,19484,19902]]],["situate",[2,2,[[25,1,1,0,1,[[828,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[21124,22720]]],["still",[2,2,[[7,1,1,0,1,[[234,1,1,0,1]]],[37,1,1,1,2,[[911,1,1,1,2]]]],[7190,22889]]],["taken",[5,5,[[14,5,5,0,5,[[412,5,5,0,5]]]],[12254,12262,12266,12269,12270]]],["tarried",[6,6,[[7,1,1,0,1,[[233,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[9,2,2,2,4,[[277,1,1,2,3],[281,1,1,3,4]]],[11,1,1,4,5,[[314,1,1,4,5]]],[12,1,1,5,6,[[357,1,1,5,6]]]],[7156,7510,8260,8418,9569,10927]]],["tarrieth",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[8002]]],["tarry",[7,7,[[0,1,1,0,1,[[26,1,1,0,1]]],[2,1,1,1,2,[[103,1,1,1,2]]],[3,1,1,2,3,[[138,1,1,2,3]]],[6,1,1,3,4,[[216,1,1,3,4]]],[8,1,1,4,5,[[236,1,1,4,5]]],[11,2,2,5,7,[[314,1,1,5,6],[326,1,1,6,7]]]],[771,3119,4394,6672,7235,9555,9906]]],["up",[1,1,[[18,1,1,0,1,[[604,1,1,0,1]]]],[16123]]]]},{"k":"H3428","v":[["Jeshebeab",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11028]]]]},{"k":"H3429","v":[]},{"k":"H3430","v":[["Ishbibenob",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8596]]]]},{"k":"H3431","v":[["Ishbah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10402]]]]},{"k":"H3432","v":[["Jashubites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4513]]]]},{"k":"H3433","v":[["Jashubilehem",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10407]]]]},{"k":"H3434","v":[["Jashobeam",[3,3,[[12,3,3,0,3,[[348,1,1,0,1],[349,1,1,1,2],[364,1,1,2,3]]]],[10684,10726,11111]]]]},{"k":"H3435","v":[["Ishbak",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[660,10284]]]]},{"k":"H3436","v":[["Joshbekashah",[2,2,[[12,2,2,0,2,[[362,2,2,0,2]]]],[11050,11070]]]]},{"k":"H3437","v":[["Jashub",[3,3,[[3,1,1,0,1,[[142,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]],[14,1,1,2,3,[[412,1,1,2,3]]]],[4513,10536,12281]]]]},{"k":"H3438","v":[["Ishuah",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1403]]]]},{"k":"H3439","v":[["Jeshohaiah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10421]]]]},{"k":"H3440","v":[["*",[5,4,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[8,1,1,2,3,[[249,1,1,2,3]]],[12,2,1,3,4,[[344,2,1,3,4]]]],[1403,4533,7557,10565]]],["Ishuai",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10565]]],["Ishui",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7557]]],["Isuah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10565]]],["Isui",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1403]]],["Jesui",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4533]]]]},{"k":"H3441","v":[["Jesuites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4533]]]]},{"k":"H3442","v":[["Jeshua",[29,29,[[12,1,1,0,1,[[361,1,1,0,1]]],[13,1,1,1,2,[[397,1,1,1,2]]],[14,10,10,2,12,[[404,4,4,2,6],[405,3,3,6,9],[406,1,1,9,10],[410,1,1,10,11],[412,1,1,11,12]]],[15,17,17,12,29,[[415,1,1,12,13],[419,4,4,13,17],[420,2,2,17,19],[421,2,2,19,21],[422,1,1,21,22],[423,1,1,22,23],[424,6,6,23,29]]]],[11026,11869,12029,12033,12063,12067,12099,12105,12106,12113,12234,12270,12346,12427,12431,12459,12463,12500,12510,12515,12516,12558,12614,12625,12631,12632,12634,12648,12650]]]]},{"k":"H3443","v":[["Jeshua",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12136]]]]},{"k":"H3444","v":[["*",[78,77,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[63,1,1,1,2],[64,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[8,2,2,4,6,[[237,1,1,4,5],[249,1,1,5,6]]],[9,2,2,6,8,[[276,1,1,6,7],[288,1,1,7,8]]],[12,1,1,8,9,[[353,1,1,8,9]]],[13,1,1,9,10,[[386,1,1,9,10]]],[17,2,2,10,12,[[448,1,1,10,11],[465,1,1,11,12]]],[18,45,45,12,57,[[480,2,2,12,14],[486,1,1,14,15],[490,1,1,15,16],[491,1,1,16,17],[495,1,1,17,18],[497,1,1,18,19],[498,2,2,19,21],[499,1,1,21,22],[505,1,1,22,23],[512,2,2,23,25],[519,2,2,25,27],[520,1,1,27,28],[521,1,1,28,29],[530,1,1,29,30],[539,3,3,30,33],[544,1,1,33,34],[545,1,1,34,35],[546,1,1,35,36],[547,1,1,36,37],[551,1,1,37,38],[555,1,1,38,39],[557,1,1,39,40],[565,1,1,40,41],[566,1,1,41,42],[568,1,1,42,43],[573,1,1,43,44],[575,2,2,44,46],[583,1,1,46,47],[593,1,1,47,48],[595,3,3,48,51],[596,4,4,51,55],[617,1,1,55,56],[626,1,1,56,57]]],[22,19,18,57,75,[[690,3,2,57,59],[703,1,1,59,60],[704,2,2,60,62],[711,2,2,62,64],[727,2,2,64,66],[729,2,2,66,68],[730,2,2,68,70],[734,1,1,70,71],[737,2,2,71,73],[738,1,1,73,74],[740,1,1,74,75]]],[31,1,1,75,76,[[890,1,1,75,76]]],[34,1,1,76,77,[[905,1,1,76,77]]]],[1491,1902,1922,5773,7241,7553,8251,8653,10843,11604,13169,13572,13959,13965,14035,14079,14087,14168,14187,14192,14196,14205,14307,14413,14419,14560,14566,14571,14575,14725,14828,14829,14833,14895,14919,14964,14975,15060,15135,15200,15309,15352,15411,15467,15492,15493,15655,15861,15883,15884,15890,16021,16053,16064,16072,16270,16389,17902,17903,18127,18131,18148,18281,18285,18642,18644,18679,18681,18703,18706,18754,18811,18817,18839,18855,22557,22776]]],["+",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14205]]],["Salvation",[4,4,[[18,2,2,0,2,[[480,1,1,0,1],[596,1,1,1,2]]],[22,1,1,2,3,[[738,1,1,2,3]]],[31,1,1,3,4,[[890,1,1,3,4]]]],[13965,16053,18839,22557]]],["deliverance",[2,2,[[18,1,1,0,1,[[495,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]]],[14168,18148]]],["deliverances",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14575]]],["health",[3,3,[[18,3,3,0,3,[[519,1,1,0,1],[520,1,1,1,2],[544,1,1,2,3]]]],[14566,14571,14895]]],["help",[3,3,[[9,1,1,0,1,[[276,1,1,0,1]]],[18,2,2,1,3,[[480,1,1,1,2],[519,1,1,2,3]]]],[8251,13959,14560]]],["salvation",[61,60,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[63,1,1,1,2],[64,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[8,2,2,4,6,[[237,1,1,4,5],[249,1,1,5,6]]],[9,1,1,6,7,[[288,1,1,6,7]]],[12,1,1,7,8,[[353,1,1,7,8]]],[13,1,1,8,9,[[386,1,1,8,9]]],[17,1,1,9,10,[[448,1,1,9,10]]],[18,33,33,10,43,[[486,1,1,10,11],[490,1,1,11,12],[491,1,1,12,13],[497,1,1,13,14],[498,2,2,14,16],[512,2,2,16,18],[530,1,1,18,19],[539,3,3,19,22],[545,1,1,22,23],[546,1,1,23,24],[547,1,1,24,25],[551,1,1,25,26],[555,1,1,26,27],[565,1,1,27,28],[566,1,1,28,29],[568,1,1,29,30],[573,1,1,30,31],[575,2,2,31,33],[583,1,1,33,34],[593,1,1,34,35],[595,3,3,35,38],[596,3,3,38,41],[617,1,1,41,42],[626,1,1,42,43]]],[22,17,16,43,59,[[690,3,2,43,45],[703,1,1,45,46],[704,1,1,46,47],[711,2,2,47,49],[727,2,2,49,51],[729,2,2,51,53],[730,2,2,53,55],[734,1,1,55,56],[737,2,2,56,58],[740,1,1,58,59]]],[34,1,1,59,60,[[905,1,1,59,60]]]],[1491,1902,1922,5773,7241,7553,8653,10843,11604,13169,14035,14079,14087,14187,14192,14196,14413,14419,14725,14828,14829,14833,14919,14964,14975,15060,15135,15309,15352,15411,15467,15492,15493,15655,15861,15883,15884,15890,16021,16064,16072,16270,16389,17902,17903,18127,18131,18281,18285,18642,18644,18679,18681,18703,18706,18754,18811,18817,18855,22776]]],["save",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15200]]],["saving",[1,1,[[18,1,1,0,1,[[505,1,1,0,1]]]],[14307]]],["welfare",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13572]]]]},{"k":"H3445","v":[["down",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22662]]]]},{"k":"H3446","v":[["Isaac",[4,4,[[18,1,1,0,1,[[582,1,1,0,1]]],[23,1,1,1,2,[[777,1,1,1,2]]],[29,2,2,2,4,[[885,2,2,2,4]]]],[15615,19801,22473,22480]]]]},{"k":"H3447","v":[["*",[3,3,[[16,3,3,0,3,[[429,1,1,0,1],[430,1,1,1,2],[433,1,1,2,3]]]],[12773,12781,12821]]],["+",[2,2,[[16,2,2,0,2,[[429,1,1,0,1],[433,1,1,1,2]]]],[12773,12821]]],["out",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12781]]]]},{"k":"H3448","v":[["Jesse",[42,39,[[7,3,2,0,2,[[235,3,2,0,2]]],[8,26,24,2,26,[[251,13,11,2,13],[252,5,5,13,18],[255,3,3,18,21],[257,4,4,21,25],[260,1,1,25,26]]],[9,2,2,26,28,[[286,1,1,26,27],[289,1,1,27,28]]],[10,1,1,28,29,[[302,1,1,28,29]]],[12,5,5,29,34,[[339,2,2,29,31],[347,1,1,31,32],[349,1,1,32,33],[366,1,1,33,34]]],[13,2,2,34,36,[[376,1,1,34,35],[377,1,1,35,36]]],[18,1,1,36,37,[[549,1,1,36,37]]],[22,2,2,37,39,[[689,2,2,37,39]]]],[7207,7212,7596,7598,7600,7603,7604,7605,7606,7613,7614,7615,7617,7630,7631,7635,7638,7676,7757,7760,7761,7794,7795,7796,7800,7871,8555,8654,9167,10318,10319,10673,10738,11190,11411,11432,15020,17885,17894]]]]},{"k":"H3449","v":[["*",[7,6,[[12,6,5,0,5,[[344,1,1,0,1],[349,1,1,1,2],[360,1,1,2,3],[361,3,2,3,5]]],[14,1,1,5,6,[[412,1,1,5,6]]]],[10538,10726,11003,11036,11040,12283]]],["Ishiah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10538]]],["Ishijah",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12283]]],["Isshiah",[3,2,[[12,3,2,0,2,[[361,3,2,0,2]]]],[11036,11040]]],["Jesiah",[2,2,[[12,2,2,0,2,[[349,1,1,0,1],[360,1,1,1,2]]]],[10726,11003]]]]},{"k":"H3450","v":[["Jesimiel",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10421]]]]},{"k":"H3451","v":[["seize",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14747]]]]},{"k":"H3452","v":[["*",[13,13,[[3,2,2,0,2,[[137,1,1,0,1],[139,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[8,4,4,3,7,[[258,2,2,3,5],[261,2,2,5,7]]],[18,4,4,7,11,[[545,1,1,7,8],[555,1,1,8,9],[583,1,1,9,10],[584,1,1,10,11]]],[22,2,2,11,13,[[721,2,2,11,13]]]],[4360,4444,5768,7829,7834,7906,7908,14907,15153,15665,15703,18524,18525]]],["Jeshimon",[6,6,[[3,2,2,0,2,[[137,1,1,0,1],[139,1,1,1,2]]],[8,4,4,2,6,[[258,2,2,2,4],[261,2,2,4,6]]]],[4360,4444,7829,7834,7906,7908]]],["desert",[4,4,[[18,2,2,0,2,[[555,1,1,0,1],[583,1,1,1,2]]],[22,2,2,2,4,[[721,2,2,2,4]]]],[15153,15665,18524,18525]]],["solitary",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15703]]],["wilderness",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,1,1,1,2,[[545,1,1,1,2]]]],[5768,14907]]]]},{"k":"H3453","v":[["*",[4,4,[[17,4,4,0,4,[[447,1,1,0,1],[450,1,1,1,2],[464,1,1,2,3],[467,1,1,3,4]]]],[13140,13213,13540,13634]]],["+",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13634]]],["aged",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13540]]],["ancient",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13140]]],["men",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13213]]]]},{"k":"H3454","v":[["Jeshishai",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10442]]]]},{"k":"H3455","v":[["put",[1,1,[[0,1,1,0,1,[[49,1,1,0,1]]]],[1532]]]]},{"k":"H3456","v":[["*",[4,4,[[0,1,1,0,1,[[46,1,1,0,1]]],[25,3,3,1,4,[[807,1,1,1,2],[813,1,1,2,3],[820,1,1,3,4]]]],[1439,20569,20699,20888]]],["+",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1439]]],["desolate",[3,3,[[25,3,3,0,3,[[807,1,1,0,1],[813,1,1,1,2],[820,1,1,2,3]]]],[20569,20699,20888]]]]},{"k":"H3457","v":[["Ishma",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10388]]]]},{"k":"H3458","v":[["*",[49,45,[[0,17,15,0,15,[[15,3,3,0,3],[16,5,5,3,8],[24,6,5,8,13],[27,2,1,13,14],[35,1,1,14,15]]],[11,2,2,15,17,[[337,2,2,15,17]]],[12,6,6,17,23,[[338,3,3,17,20],[345,1,1,20,21],[346,1,1,21,22],[364,1,1,22,23]]],[13,2,2,23,25,[[385,1,1,23,24],[389,1,1,24,25]]],[14,1,1,25,26,[[412,1,1,25,26]]],[23,21,19,26,45,[[784,4,4,26,30],[785,17,15,30,45]]]],[392,396,397,415,417,420,422,423,667,670,671,674,675,782,1043,10245,10247,10280,10281,10283,10613,10659,11139,11587,11657,12274,19949,19955,19956,19957,19958,19959,19960,19963,19964,19965,19966,19967,19968,19969,19970,19971,19972,19973,19975]]],["Ishmael",[47,43,[[0,16,14,0,14,[[15,3,3,0,3],[16,5,5,3,8],[24,6,5,8,13],[27,2,1,13,14]]],[11,2,2,14,16,[[337,2,2,14,16]]],[12,5,5,16,21,[[338,3,3,16,19],[345,1,1,19,20],[346,1,1,20,21]]],[13,2,2,21,23,[[385,1,1,21,22],[389,1,1,22,23]]],[14,1,1,23,24,[[412,1,1,23,24]]],[23,21,19,24,43,[[784,4,4,24,28],[785,17,15,28,43]]]],[392,396,397,415,417,420,422,423,667,670,671,674,675,782,10245,10247,10280,10281,10283,10613,10659,11587,11657,12274,19949,19955,19956,19957,19958,19959,19960,19963,19964,19965,19966,19967,19968,19969,19970,19971,19972,19973,19975]]],["Ishmael's",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1043]]],["Ishmaelite",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11139]]]]},{"k":"H3459","v":[["*",[7,7,[[0,4,4,0,4,[[36,3,3,0,3],[38,1,1,3,4]]],[6,1,1,4,5,[[218,1,1,4,5]]],[12,1,1,5,6,[[339,1,1,5,6]]],[18,1,1,6,7,[[560,1,1,6,7]]]],[1108,1110,1111,1150,6743,10323,15247]]],["Ishmaelites",[2,2,[[6,1,1,0,1,[[218,1,1,0,1]]],[18,1,1,1,2,[[560,1,1,1,2]]]],[6743,15247]]],["Ishmeelite",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10323]]],["Ishmeelites",[4,4,[[0,4,4,0,4,[[36,3,3,0,3],[38,1,1,3,4]]]],[1108,1110,1111,1150]]]]},{"k":"H3460","v":[["*",[2,2,[[12,2,2,0,2,[[349,1,1,0,1],[364,1,1,1,2]]]],[10724,11128]]],["Ishmaiah",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11128]]],["Ismaiah",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10724]]]]},{"k":"H3461","v":[["Ishmerai",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10593]]]]},{"k":"H3462","v":[["*",[19,19,[[0,2,2,0,2,[[1,1,1,0,1],[40,1,1,1,2]]],[2,2,2,2,4,[[102,1,1,2,3],[115,1,1,3,4]]],[4,1,1,4,5,[[156,1,1,4,5]]],[6,1,1,5,6,[[226,1,1,5,6]]],[10,1,1,6,7,[[309,1,1,6,7]]],[17,1,1,7,8,[[438,1,1,7,8]]],[18,5,5,8,13,[[480,1,1,8,9],[481,1,1,9,10],[490,1,1,10,11],[521,1,1,11,12],[598,1,1,12,13]]],[19,1,1,13,14,[[631,1,1,13,14]]],[20,1,1,14,15,[[663,1,1,14,15]]],[22,1,1,15,16,[[683,1,1,15,16]]],[23,2,2,16,18,[[795,2,2,16,18]]],[25,1,1,18,19,[[835,1,1,18,19]]]],[51,1200,3063,3534,5029,6968,9392,12917,13962,13973,14077,14594,16085,16506,17409,17766,20251,20269,21338]]],["+",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3534]]],["long",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5029]]],["old",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3063]]],["sleep",[10,10,[[6,1,1,0,1,[[226,1,1,0,1]]],[18,3,3,1,4,[[481,1,1,1,2],[490,1,1,2,3],[598,1,1,3,4]]],[19,1,1,4,5,[[631,1,1,4,5]]],[20,1,1,5,6,[[663,1,1,5,6]]],[22,1,1,6,7,[[683,1,1,6,7]]],[23,2,2,7,9,[[795,2,2,7,9]]],[25,1,1,9,10,[[835,1,1,9,10]]]],[6968,13973,14077,16085,16506,17409,17766,20251,20269,21338]]],["sleepest",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14594]]],["slept",[5,5,[[0,2,2,0,2,[[1,1,1,0,1],[40,1,1,1,2]]],[10,1,1,2,3,[[309,1,1,2,3]]],[17,1,1,3,4,[[438,1,1,3,4]]],[18,1,1,4,5,[[480,1,1,4,5]]]],[51,1200,9392,12917,13962]]]]},{"k":"H3463","v":[["*",[9,9,[[8,2,2,0,2,[[261,2,2,0,2]]],[10,2,2,2,4,[[293,1,1,2,3],[308,1,1,3,4]]],[18,1,1,4,5,[[555,1,1,4,5]]],[21,2,2,5,7,[[675,1,1,5,6],[677,1,1,6,7]]],[26,1,1,7,8,[[861,1,1,7,8]]],[27,1,1,8,9,[[868,1,1,8,9]]]],[7912,7917,8836,9368,15178,17600,17636,22083,22184]]],["+",[1,1,[[26,1,1,0,1,[[861,1,1,0,1]]]],[22083]]],["asleep",[2,2,[[8,1,1,0,1,[[261,1,1,0,1]]],[21,1,1,1,2,[[677,1,1,1,2]]]],[7917,17636]]],["sleep",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[21,1,1,1,2,[[675,1,1,1,2]]]],[15178,17600]]],["sleepeth",[2,2,[[10,1,1,0,1,[[308,1,1,0,1]]],[27,1,1,1,2,[[868,1,1,1,2]]]],[9368,22184]]],["sleeping",[1,1,[[8,1,1,0,1,[[261,1,1,0,1]]]],[7912]]],["slept",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8836]]]]},{"k":"H3464","v":[["Jashen",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8685]]]]},{"k":"H3465","v":[["*",[8,6,[[2,4,2,0,2,[[114,2,1,0,1],[115,2,1,1,2]]],[15,2,2,2,4,[[415,1,1,2,3],[424,1,1,3,4]]],[21,1,1,4,5,[[677,1,1,4,5]]],[22,1,1,5,6,[[700,1,1,5,6]]]],[3491,3534,12333,12663,17640,18063]]],["+",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3534]]],["old",[7,6,[[2,3,2,0,2,[[114,2,1,0,1],[115,1,1,1,2]]],[15,2,2,2,4,[[415,1,1,2,3],[424,1,1,3,4]]],[21,1,1,4,5,[[677,1,1,4,5]]],[22,1,1,5,6,[[700,1,1,5,6]]]],[3491,3534,12333,12663,17640,18063]]]]},{"k":"H3466","v":[["Jeshanah",[1,1,[[13,1,1,0,1,[[379,1,1,0,1]]]],[11472]]]]},{"k":"H3467","v":[["*",[205,198,[[1,2,2,0,2,[[51,1,1,0,1],[63,1,1,1,2]]],[3,1,1,2,3,[[126,1,1,2,3]]],[4,5,5,3,8,[[172,1,1,3,4],[174,1,1,4,5],[180,2,2,5,7],[185,1,1,7,8]]],[5,2,2,8,10,[[196,1,1,8,9],[208,1,1,9,10]]],[6,21,20,10,30,[[212,2,2,10,12],[213,4,3,12,15],[216,5,5,15,20],[217,2,2,20,22],[218,1,1,22,23],[220,4,4,23,27],[222,2,2,27,29],[223,1,1,29,30]]],[8,15,15,30,45,[[239,1,1,30,31],[242,1,1,31,32],[244,1,1,32,33],[245,2,2,33,35],[246,1,1,35,36],[249,3,3,36,39],[252,1,1,39,40],[258,2,2,40,42],[260,3,3,42,45]]],[9,11,10,45,55,[[269,1,1,45,46],[274,2,2,46,48],[276,2,2,48,50],[280,1,1,50,51],[288,5,4,51,55]]],[11,8,7,55,62,[[318,3,2,55,57],[325,1,1,57,58],[326,1,1,58,59],[328,1,1,59,60],[331,2,2,60,62]]],[12,6,6,62,68,[[348,1,1,62,63],[353,1,1,63,64],[355,2,2,64,66],[356,2,2,66,68]]],[13,2,2,68,70,[[386,1,1,68,69],[398,1,1,69,70]]],[15,2,1,70,71,[[421,2,1,70,71]]],[17,4,4,71,75,[[440,1,1,71,72],[457,1,1,72,73],[461,1,1,73,74],[475,1,1,74,75]]],[18,57,57,75,132,[[480,1,1,75,76],[483,1,1,76,77],[484,2,2,77,79],[489,1,1,79,80],[494,1,1,80,81],[495,3,3,81,84],[497,2,2,84,86],[499,1,1,86,87],[505,1,1,87,88],[508,2,2,88,90],[510,1,1,90,91],[511,2,2,91,93],[513,1,1,93,94],[514,1,1,94,95],[521,3,3,95,98],[531,1,1,98,99],[532,1,1,99,100],[534,1,1,100,101],[536,1,1,101,102],[537,1,1,102,103],[546,2,2,103,105],[548,2,2,105,107],[549,2,2,107,109],[553,1,1,109,110],[557,3,3,110,113],[563,2,2,113,115],[575,1,1,115,116],[583,4,4,116,120],[584,2,2,120,122],[585,1,1,122,123],[586,2,2,123,125],[593,1,1,125,126],[595,1,1,126,127],[596,3,3,127,130],[615,1,1,130,131],[622,1,1,131,132]]],[19,2,2,132,134,[[647,1,1,132,133],[655,1,1,133,134]]],[22,29,29,134,163,[[697,1,1,134,135],[703,1,1,135,136],[708,1,1,136,137],[711,1,1,137,138],[713,1,1,138,139],[715,2,2,139,141],[716,1,1,141,142],[721,3,3,142,145],[723,5,5,145,150],[724,1,1,150,151],[725,2,2,151,153],[727,2,2,153,155],[737,2,2,155,157],[738,1,1,157,158],[741,4,4,158,162],[742,1,1,162,163]]],[23,19,17,163,180,[[746,2,2,163,165],[748,1,1,165,166],[752,1,1,166,167],[755,2,1,167,168],[758,2,2,168,170],[759,1,1,170,171],[761,2,1,171,172],[767,1,1,172,173],[774,3,3,173,176],[775,1,1,176,177],[777,1,1,177,178],[786,1,1,178,179],[790,1,1,179,180]]],[24,1,1,180,181,[[800,1,1,180,181]]],[25,3,3,181,184,[[835,1,1,181,182],[837,1,1,182,183],[838,1,1,183,184]]],[27,5,4,184,188,[[862,2,1,184,185],[874,2,2,185,187],[875,1,1,187,188]]],[30,1,1,188,189,[[888,1,1,188,189]]],[34,1,1,189,190,[[903,1,1,189,190]]],[35,2,2,190,192,[[908,2,2,190,192]]],[37,6,6,192,198,[[918,2,2,192,194],[919,2,2,194,196],[920,1,1,196,197],[922,1,1,197,198]]]],[1571,1919,3997,5431,5497,5640,5642,5839,6070,6448,6561,6563,6577,6583,6599,6668,6669,6685,6690,6691,6696,6701,6741,6812,6823,6824,6825,6871,6872,6889,7300,7360,7407,7437,7445,7448,7514,7531,7547,7665,7812,7815,7887,7892,7894,8099,8215,8223,8251,8259,8360,8605,8606,8630,8644,9700,9701,9876,9923,9970,10080,10095,10687,10855,10896,10903,10919,10926,11596,11897,12538,12966,13418,13469,13878,13964,13989,13996,14005,14067,14110,14121,14145,14159,14188,14191,14225,14308,14333,14347,14382,14394,14406,14444,14490,14574,14577,14578,14726,14748,14771,14792,14812,14936,14970,14978,14979,15004,15013,15090,15201,15205,15217,15286,15300,15491,15659,15661,15672,15698,15712,15718,15748,15781,15786,15854,15894,15992,16015,16044,16238,16339,16976,17214,18024,18127,18232,18301,18324,18372,18387,18410,18508,18516,18517,18576,18578,18581,18582,18583,18593,18612,18614,18661,18662,18801,18816,18837,18867,18871,18874,18875,18890,18992,18993,19041,19173,19238,19301,19302,19335,19371,19490,19674,19677,19678,19698,19791,19986,20072,20437,21335,21388,21420,22101,22270,22276,22285,22531,22733,22837,22839,22983,22989,23008,23015,23022,23052]]],["+",[29,28,[[1,1,1,0,1,[[63,1,1,0,1]]],[6,8,8,1,9,[[213,2,2,1,3],[216,4,4,3,7],[220,1,1,7,8],[223,1,1,8,9]]],[8,5,5,9,14,[[244,1,1,9,10],[249,2,2,10,12],[258,2,2,12,14]]],[9,4,4,14,18,[[269,1,1,14,15],[274,2,2,15,17],[276,1,1,17,18]]],[12,2,2,18,20,[[355,1,1,18,19],[356,1,1,19,20]]],[13,1,1,20,21,[[398,1,1,20,21]]],[18,1,1,21,22,[[505,1,1,21,22]]],[22,1,1,22,23,[[737,1,1,22,23]]],[23,3,2,23,25,[[755,2,1,23,24],[775,1,1,24,25]]],[35,1,1,25,26,[[908,1,1,25,26]]],[37,2,2,26,28,[[918,1,1,26,27],[922,1,1,27,28]]]],[1919,6583,6599,6668,6669,6690,6691,6812,6889,7407,7531,7547,7812,7815,8099,8215,8223,8259,10903,10926,11897,14308,18801,19238,19698,22839,22983,23052]]],["Help",[3,3,[[9,1,1,0,1,[[280,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]],[18,1,1,2,3,[[489,1,1,2,3]]]],[8360,9700,14067]]],["Save",[7,7,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,6,6,1,7,[[497,1,1,1,2],[499,1,1,2,3],[531,1,1,3,4],[546,1,1,4,5],[583,1,1,5,6],[595,1,1,6,7]]]],[10855,14191,14225,14726,14936,15698,15894]]],["Saviour",[6,6,[[22,6,6,0,6,[[721,1,1,0,1],[723,2,2,1,3],[727,1,1,3,4],[738,1,1,4,5],[741,1,1,5,6]]]],[18508,18576,18582,18662,18837,18874]]],["avenged",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7892]]],["avenging",[2,2,[[8,2,2,0,2,[[260,2,2,0,2]]]],[7887,7894]]],["deliver",[2,2,[[6,2,2,0,2,[[220,2,2,0,2]]]],[6824,6825]]],["delivered",[7,7,[[6,7,7,0,7,[[212,2,2,0,2],[213,1,1,2,3],[218,1,1,3,4],[220,1,1,4,5],[222,2,2,5,7]]]],[6561,6563,6577,6741,6823,6871,6872]]],["deliverer",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6577]]],["help",[5,4,[[9,1,1,0,1,[[276,1,1,0,1]]],[11,2,1,1,2,[[318,2,1,1,2]]],[12,1,1,2,3,[[356,1,1,2,3]]],[13,1,1,3,4,[[386,1,1,3,4]]]],[8251,9701,10919,11596]]],["helped",[2,2,[[1,1,1,0,1,[[51,1,1,0,1]]],[18,1,1,1,2,[[593,1,1,1,2]]]],[1571,15854]]],["preserved",[1,1,[[12,1,1,0,1,[[355,1,1,0,1]]]],[10896]]],["preservest",[1,1,[[18,1,1,0,1,[[513,1,1,0,1]]]],[14444]]],["rescue",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5642]]],["safe",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16015]]],["salvation",[3,3,[[22,2,2,0,2,[[737,1,1,0,1],[741,1,1,1,2]]],[37,1,1,2,3,[[919,1,1,2,3]]]],[18816,18871,23008]]],["save",[83,82,[[4,3,3,0,3,[[172,1,1,0,1],[174,1,1,1,2],[180,1,1,2,3]]],[5,2,2,3,5,[[196,1,1,3,4],[208,1,1,4,5]]],[6,2,2,5,7,[[216,1,1,5,6],[217,1,1,6,7]]],[8,5,5,7,12,[[239,1,1,7,8],[242,1,1,8,9],[245,1,1,9,10],[246,1,1,10,11],[249,1,1,11,12]]],[9,2,2,12,14,[[288,2,2,12,14]]],[11,3,3,14,17,[[328,1,1,14,15],[331,2,2,15,17]]],[17,2,2,17,19,[[457,1,1,17,18],[475,1,1,18,19]]],[18,29,29,19,48,[[480,1,1,19,20],[483,1,1,20,21],[484,1,1,21,22],[495,2,2,22,24],[508,2,2,24,26],[514,1,1,26,27],[521,2,2,27,29],[532,1,1,29,30],[534,1,1,30,31],[536,1,1,31,32],[537,1,1,32,33],[546,1,1,33,34],[548,2,2,34,36],[549,2,2,36,38],[553,1,1,38,39],[563,2,2,39,41],[585,1,1,41,42],[586,2,2,42,44],[596,2,2,44,46],[615,1,1,46,47],[622,1,1,47,48]]],[19,1,1,48,49,[[647,1,1,48,49]]],[22,12,12,49,61,[[703,1,1,49,50],[711,1,1,50,51],[713,1,1,51,52],[715,2,2,52,54],[716,1,1,54,55],[723,1,1,55,56],[724,1,1,56,57],[725,2,2,57,59],[727,1,1,59,60],[741,1,1,60,61]]],[23,9,9,61,70,[[746,2,2,61,63],[758,1,1,63,64],[759,1,1,64,65],[761,1,1,65,66],[774,2,2,66,68],[786,1,1,68,69],[790,1,1,69,70]]],[24,1,1,70,71,[[800,1,1,70,71]]],[25,3,3,71,74,[[835,1,1,71,72],[837,1,1,72,73],[838,1,1,73,74]]],[27,4,3,74,77,[[862,2,1,74,75],[874,1,1,75,76],[875,1,1,76,77]]],[34,1,1,77,78,[[903,1,1,77,78]]],[35,1,1,78,79,[[908,1,1,78,79]]],[37,3,3,79,82,[[918,1,1,79,80],[919,1,1,80,81],[920,1,1,81,82]]]],[5431,5497,5640,6070,6448,6685,6701,7300,7360,7445,7448,7514,8630,8644,9970,10080,10095,13418,13878,13964,13989,13996,14145,14159,14333,14347,14490,14574,14577,14748,14771,14792,14812,14970,14978,14979,15004,15013,15090,15286,15300,15748,15781,15786,15992,16044,16238,16339,16976,18127,18301,18324,18372,18387,18410,18581,18593,18612,18614,18661,18867,18992,18993,19302,19335,19371,19677,19678,19986,20072,20437,21335,21388,21420,22101,22276,22285,22733,22837,22989,23015,23022]]],["saved",[31,31,[[3,1,1,0,1,[[126,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]],[8,1,1,3,4,[[245,1,1,3,4]]],[9,1,1,4,5,[[288,1,1,4,5]]],[11,1,1,5,6,[[326,1,1,5,6]]],[12,1,1,6,7,[[348,1,1,6,7]]],[15,1,1,7,8,[[421,1,1,7,8]]],[18,10,10,8,18,[[495,1,1,8,9],[510,1,1,9,10],[511,1,1,10,11],[521,1,1,11,12],[557,3,3,12,15],[583,2,2,15,17],[584,1,1,17,18]]],[19,1,1,18,19,[[655,1,1,18,19]]],[22,6,6,19,25,[[708,1,1,19,20],[721,1,1,20,21],[723,2,2,21,23],[741,1,1,23,24],[742,1,1,24,25]]],[23,6,6,25,31,[[748,1,1,25,26],[752,1,1,26,27],[761,1,1,27,28],[767,1,1,28,29],[774,1,1,29,30],[777,1,1,30,31]]]],[3997,5839,6696,7437,8606,9923,10687,12538,14121,14382,14394,14578,15201,15205,15217,15659,15661,15712,17214,18232,18517,18578,18583,18875,18890,19041,19173,19371,19490,19674,19791]]],["savest",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[461,1,1,1,2]]],[18,1,1,2,3,[[494,1,1,2,3]]]],[8605,13469,14110]]],["saveth",[6,6,[[8,1,1,0,1,[[252,1,1,0,1]]],[17,1,1,1,2,[[440,1,1,1,2]]],[18,4,4,2,6,[[484,1,1,2,3],[497,1,1,3,4],[511,1,1,4,5],[584,1,1,5,6]]]],[7665,12966,14005,14188,14406,15718]]],["saviour",[7,7,[[9,1,1,0,1,[[288,1,1,0,1]]],[11,1,1,1,2,[[325,1,1,1,2]]],[18,1,1,2,3,[[583,1,1,2,3]]],[22,2,2,3,5,[[697,1,1,3,4],[721,1,1,4,5]]],[23,1,1,5,6,[[758,1,1,5,6]]],[27,1,1,6,7,[[874,1,1,6,7]]]],[8605,9876,15672,18024,18516,19301,22270]]],["saviours",[2,2,[[15,1,1,0,1,[[421,1,1,0,1]]],[30,1,1,1,2,[[888,1,1,1,2]]]],[12538,22531]]],["victory",[1,1,[[18,1,1,0,1,[[575,1,1,0,1]]]],[15491]]]]},{"k":"H3468","v":[["*",[36,35,[[9,4,4,0,4,[[288,3,3,0,3],[289,1,1,3,4]]],[12,1,1,4,5,[[353,1,1,4,5]]],[17,2,2,5,7,[[440,2,2,5,7]]],[18,20,20,7,27,[[489,1,1,7,8],[495,3,3,8,11],[497,1,1,11,12],[501,1,1,12,13],[502,1,1,13,14],[504,2,2,14,16],[527,1,1,16,17],[528,1,1,17,18],[539,1,1,18,19],[542,1,1,19,20],[546,1,1,20,21],[556,1,1,21,22],[562,3,3,22,25],[572,1,1,25,26],[609,1,1,26,27]]],[22,5,5,27,32,[[695,1,1,27,28],[723,1,1,28,29],[729,1,1,29,30],[739,1,1,30,31],[740,1,1,31,32]]],[32,1,1,32,33,[[899,1,1,32,33]]],[34,3,2,33,35,[[905,3,2,33,35]]]],[8605,8638,8649,8658,10855,12955,12962,14071,14120,14153,14164,14188,14246,14256,14286,14294,14691,14703,14834,14865,14948,15194,15275,15278,15280,15455,16167,17993,18569,18678,18853,18865,22671,22781,22786]]],["+",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12955]]],["safety",[2,2,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,1,1,1,2,[[489,1,1,1,2]]]],[12962,14071]]],["salvation",[32,31,[[9,4,4,0,4,[[288,3,3,0,3],[289,1,1,3,4]]],[12,1,1,4,5,[[353,1,1,4,5]]],[18,18,18,5,23,[[495,3,3,5,8],[501,1,1,8,9],[502,1,1,9,10],[504,2,2,10,12],[527,1,1,12,13],[528,1,1,13,14],[539,1,1,14,15],[542,1,1,15,16],[546,1,1,16,17],[556,1,1,17,18],[562,3,3,18,21],[572,1,1,21,22],[609,1,1,22,23]]],[22,5,5,23,28,[[695,1,1,23,24],[723,1,1,24,25],[729,1,1,25,26],[739,1,1,26,27],[740,1,1,27,28]]],[32,1,1,28,29,[[899,1,1,28,29]]],[34,3,2,29,31,[[905,3,2,29,31]]]],[8605,8638,8649,8658,10855,14120,14153,14164,14246,14256,14286,14294,14691,14703,14834,14865,14948,15194,15275,15278,15280,15455,16167,17993,18569,18678,18853,18865,22671,22781,22786]]],["saving",[1,1,[[18,1,1,0,1,[[497,1,1,0,1]]]],[14188]]]]},{"k":"H3469","v":[["Ishi",[5,4,[[12,5,4,0,4,[[339,2,1,0,1],[341,2,2,1,3],[342,1,1,3,4]]]],[10337,10405,10427,10452]]]]},{"k":"H3470","v":[["*",[39,39,[[11,13,13,0,13,[[331,4,4,0,4],[332,9,9,4,13]]],[12,4,4,13,17,[[340,1,1,13,14],[362,2,2,14,16],[363,1,1,16,17]]],[13,3,3,17,20,[[392,1,1,17,18],[398,2,2,18,20]]],[14,2,2,20,22,[[410,2,2,20,22]]],[15,1,1,22,23,[[423,1,1,22,23]]],[22,16,16,23,39,[[679,1,1,23,24],[680,1,1,24,25],[685,1,1,25,26],[691,1,1,26,27],[698,2,2,27,29],[715,4,4,29,33],[716,3,3,33,36],[717,3,3,36,39]]]],[10063,10066,10067,10081,10099,10102,10105,10106,10107,10109,10112,10114,10117,10382,11049,11061,11102,11754,11895,11907,12208,12220,12595,17655,17686,17785,17907,18031,18032,18354,18357,18358,18373,18391,18394,18411,18415,18417,18420]]],["Isaiah",[32,32,[[11,13,13,0,13,[[331,4,4,0,4],[332,9,9,4,13]]],[13,3,3,13,16,[[392,1,1,13,14],[398,2,2,14,16]]],[22,16,16,16,32,[[679,1,1,16,17],[680,1,1,17,18],[685,1,1,18,19],[691,1,1,19,20],[698,2,2,20,22],[715,4,4,22,26],[716,3,3,26,29],[717,3,3,29,32]]]],[10063,10066,10067,10081,10099,10102,10105,10106,10107,10109,10112,10114,10117,11754,11895,11907,17655,17686,17785,17907,18031,18032,18354,18357,18358,18373,18391,18394,18411,18415,18417,18420]]],["Jesaiah",[2,2,[[12,1,1,0,1,[[340,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[10382,12595]]],["Jeshaiah",[5,5,[[12,3,3,0,3,[[362,2,2,0,2],[363,1,1,2,3]]],[14,2,2,3,5,[[410,2,2,3,5]]]],[11049,11061,11102,12208,12220]]]]},{"k":"H3471","v":[["jasper",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[25,1,1,2,3,[[829,1,1,2,3]]]],[2313,2677,21170]]]]},{"k":"H3472","v":[["Ispah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10591]]]]},{"k":"H3473","v":[["Ishpan",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10597]]]]},{"k":"H3474","v":[["*",[26,26,[[3,1,1,0,1,[[139,1,1,0,1]]],[6,2,2,1,3,[[224,2,2,1,3]]],[8,3,3,3,6,[[241,1,1,3,4],[253,2,2,4,6]]],[9,1,1,6,7,[[283,1,1,6,7]]],[10,2,2,7,9,[[296,1,1,7,8],[299,1,1,8,9]]],[12,1,1,9,10,[[350,1,1,9,10]]],[13,2,2,10,12,[[396,1,1,10,11],[398,1,1,11,12]]],[17,1,1,12,13,[[472,1,1,12,13]]],[18,2,2,13,15,[[482,1,1,13,14],[596,1,1,14,15]]],[19,5,5,15,20,[[630,1,1,15,16],[631,1,1,16,17],[636,1,1,17,18],[638,1,1,18,19],[642,1,1,19,20]]],[22,3,3,20,23,[[718,1,1,20,21],[723,2,2,21,23]]],[23,2,2,23,25,[[762,1,1,23,24],[771,1,1,24,25]]],[34,1,1,25,26,[[904,1,1,25,26]]]],[4443,6912,6916,7343,7696,7702,8453,8931,9063,10764,11831,11905,13772,13981,16026,16461,16515,16653,16693,16828,18423,18563,18574,19388,19601,22752]]],["+",[9,9,[[3,1,1,0,1,[[139,1,1,0,1]]],[6,2,2,1,3,[[224,2,2,1,3]]],[8,2,2,3,5,[[253,2,2,3,5]]],[10,1,1,5,6,[[299,1,1,5,6]]],[13,1,1,6,7,[[396,1,1,6,7]]],[22,1,1,7,8,[[723,1,1,7,8]]],[34,1,1,8,9,[[904,1,1,8,9]]]],[4443,6912,6916,7696,7702,9063,11831,18563,22752]]],["direct",[3,3,[[19,2,2,0,2,[[630,1,1,0,1],[638,1,1,1,2]]],[22,1,1,2,3,[[723,1,1,2,3]]]],[16461,16693,18574]]],["directeth",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13772]]],["fitted",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8931]]],["good",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19388]]],["meet",[1,1,[[23,1,1,0,1,[[771,1,1,0,1]]]],[19601]]],["pleased",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8453]]],["right",[3,3,[[12,1,1,0,1,[[350,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[19,1,1,2,3,[[636,1,1,2,3]]]],[10764,16026,16653]]],["straight",[5,5,[[8,1,1,0,1,[[241,1,1,0,1]]],[13,1,1,1,2,[[398,1,1,1,2]]],[18,1,1,2,3,[[482,1,1,2,3]]],[19,1,1,3,4,[[631,1,1,3,4]]],[22,1,1,4,5,[[718,1,1,4,5]]]],[7343,11905,13981,16515,18423]]],["uprightly",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16828]]]]},{"k":"H3475","v":[["Jesher",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10324]]]]},{"k":"H3476","v":[["*",[14,14,[[4,1,1,0,1,[[161,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[12,1,1,2,3,[[366,1,1,2,3]]],[17,3,3,3,6,[[441,1,1,3,4],[468,2,2,4,6]]],[18,2,2,6,8,[[502,1,1,6,7],[596,1,1,7,8]]],[19,5,5,8,13,[[629,1,1,8,9],[631,1,1,9,10],[638,1,1,10,11],[641,1,1,11,12],[644,1,1,12,13]]],[20,1,1,13,14,[[670,1,1,13,14]]]],[5162,9055,11181,13003,13653,13673,14272,15905,16446,16501,16712,16774,16899,17533]]],["+",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16712]]],["equity",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16899]]],["right",[2,2,[[17,1,1,0,1,[[441,1,1,0,1]]],[19,1,1,1,2,[[631,1,1,1,2]]]],[13003,16501]]],["upright",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17533]]],["uprightness",[9,9,[[4,1,1,0,1,[[161,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[12,1,1,2,3,[[366,1,1,2,3]]],[17,2,2,3,5,[[468,2,2,3,5]]],[18,2,2,5,7,[[502,1,1,5,6],[596,1,1,6,7]]],[19,2,2,7,9,[[629,1,1,7,8],[641,1,1,8,9]]]],[5162,9055,11181,13653,13673,14272,15905,16446,16774]]]]},{"k":"H3477","v":[["*",[119,119,[[1,1,1,0,1,[[64,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[4,7,7,2,9,[[158,1,1,2,3],[164,3,3,3,6],[165,1,1,6,7],[173,1,1,7,8],[184,1,1,8,9]]],[5,2,2,9,11,[[195,1,1,9,10],[196,1,1,10,11]]],[6,2,2,11,13,[[227,1,1,11,12],[231,1,1,12,13]]],[8,2,2,13,15,[[247,1,1,13,14],[264,1,1,14,15]]],[9,2,2,15,17,[[267,1,1,15,16],[285,1,1,16,17]]],[10,6,6,17,23,[[301,2,2,17,19],[304,1,1,19,20],[305,2,2,20,22],[312,1,1,22,23]]],[11,10,10,23,33,[[322,3,3,23,26],[324,1,1,26,27],[326,1,1,27,28],[327,2,2,28,30],[328,1,1,30,31],[330,1,1,31,32],[334,1,1,32,33]]],[13,11,11,33,44,[[380,1,1,33,34],[386,1,1,34,35],[390,1,1,35,36],[391,1,1,36,37],[392,1,1,37,38],[393,1,1,38,39],[394,1,1,39,40],[395,2,2,40,42],[397,1,1,42,43],[400,1,1,43,44]]],[14,1,1,44,45,[[410,1,1,44,45]]],[15,1,1,45,46,[[421,1,1,45,46]]],[17,8,8,46,54,[[436,2,2,46,48],[437,1,1,48,49],[439,1,1,49,50],[443,1,1,50,51],[452,1,1,51,52],[458,1,1,52,53],[468,1,1,53,54]]],[18,25,25,54,79,[[484,1,1,54,55],[488,2,2,55,57],[496,1,1,57,58],[502,1,1,58,59],[509,1,1,59,60],[510,2,2,60,62],[513,1,1,62,63],[514,2,2,63,65],[526,1,1,65,66],[541,1,1,66,67],[569,1,1,67,68],[571,1,1,68,69],[574,1,1,69,70],[584,2,2,70,72],[588,2,2,72,74],[589,2,2,74,76],[596,1,1,76,77],[602,1,1,77,78],[617,1,1,78,79]]],[19,25,25,79,104,[[629,2,2,79,81],[630,1,1,81,82],[635,1,1,82,83],[638,3,3,83,86],[639,2,2,86,88],[641,3,3,88,91],[642,2,2,91,93],[643,3,3,93,96],[647,1,1,96,97],[648,4,4,97,101],[655,1,1,101,102],[656,2,2,102,104]]],[20,1,1,104,105,[[665,1,1,104,105]]],[22,1,1,105,106,[[704,1,1,105,106]]],[23,5,5,106,111,[[770,1,1,106,107],[775,1,1,107,108],[778,1,1,108,109],[784,2,2,109,111]]],[25,2,2,111,113,[[802,2,2,111,113]]],[26,1,1,113,114,[[860,1,1,113,114]]],[27,1,1,114,115,[[875,1,1,114,115]]],[32,4,4,115,119,[[894,1,1,115,116],[895,1,1,116,117],[899,2,2,117,119]]]],[1946,4426,5104,5248,5265,5268,5290,5456,5762,6062,6077,6986,7127,7483,7973,8040,8517,9141,9146,9226,9254,9260,9523,9796,9808,9823,9852,9899,9928,9959,9965,10027,10147,11477,11619,11679,11706,11736,11757,11765,11793,11825,11874,11935,12222,12524,12870,12877,12894,12937,13035,13268,13426,13677,14005,14061,14066,14176,14259,14366,14367,14370,14448,14464,14487,14662,14860,15426,15446,15489,15706,15741,15794,15801,15805,15807,16035,16114,16276,16440,16454,16487,16611,16691,16694,16699,16725,16734,16781,16783,16784,16815,16826,16853,16857,16865,16965,16986,16992,17002,17013,17206,17234,17251,17458,18137,19586,19700,19816,19945,19946,20471,20487,22053,22291,22602,22617,22666,22668]]],["+",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8517]]],["Jasher",[2,2,[[5,1,1,0,1,[[196,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]]],[6077,8040]]],["Upright",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13268]]],["convenient",[2,2,[[23,2,2,0,2,[[784,2,2,0,2]]]],[19945,19946]]],["equity",[1,1,[[32,1,1,0,1,[[895,1,1,0,1]]]],[22617]]],["just",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17234]]],["meet",[1,1,[[23,1,1,0,1,[[770,1,1,0,1]]]],[19586]]],["meetest",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9796]]],["ones",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22053]]],["right",[53,53,[[1,1,1,0,1,[[64,1,1,0,1]]],[4,7,7,1,8,[[158,1,1,1,2],[164,3,3,2,5],[165,1,1,5,6],[173,1,1,6,7],[184,1,1,7,8]]],[5,1,1,8,9,[[195,1,1,8,9]]],[6,2,2,9,11,[[227,1,1,9,10],[231,1,1,10,11]]],[8,1,1,11,12,[[247,1,1,11,12]]],[10,6,6,12,18,[[301,2,2,12,14],[304,1,1,14,15],[305,2,2,15,17],[312,1,1,17,18]]],[11,9,9,18,27,[[322,2,2,18,20],[324,1,1,20,21],[326,1,1,21,22],[327,2,2,22,24],[328,1,1,24,25],[330,1,1,25,26],[334,1,1,26,27]]],[13,10,10,27,37,[[380,1,1,27,28],[386,1,1,28,29],[390,1,1,29,30],[391,1,1,30,31],[392,1,1,31,32],[393,1,1,32,33],[394,1,1,33,34],[395,1,1,34,35],[397,1,1,35,36],[400,1,1,36,37]]],[14,1,1,37,38,[[410,1,1,37,38]]],[15,1,1,38,39,[[421,1,1,38,39]]],[17,1,1,39,40,[[468,1,1,39,40]]],[18,3,3,40,43,[[496,1,1,40,41],[510,1,1,41,42],[584,1,1,42,43]]],[19,8,8,43,51,[[635,1,1,43,44],[639,1,1,44,45],[641,1,1,45,46],[643,2,2,46,48],[647,1,1,48,49],[648,2,2,49,51]]],[23,1,1,51,52,[[778,1,1,51,52]]],[27,1,1,52,53,[[875,1,1,52,53]]]],[1946,5104,5248,5265,5268,5290,5456,5762,6062,6986,7127,7483,9141,9146,9226,9254,9260,9523,9808,9823,9852,9899,9928,9959,9965,10027,10147,11477,11619,11679,11706,11736,11757,11765,11793,11874,11935,12222,12524,13677,14176,14370,15706,16611,16734,16784,16853,16865,16965,16986,16992,19816,22291]]],["righteous",[9,9,[[3,1,1,0,1,[[139,1,1,0,1]]],[17,2,2,1,3,[[439,1,1,1,2],[458,1,1,2,3]]],[18,1,1,3,4,[[584,1,1,3,4]]],[19,5,5,4,9,[[629,1,1,4,5],[630,1,1,5,6],[641,1,1,6,7],[642,1,1,7,8],[655,1,1,8,9]]]],[4426,12937,13426,15741,16440,16487,16781,16826,17206]]],["straight",[3,3,[[23,1,1,0,1,[[775,1,1,0,1]]],[25,2,2,1,3,[[802,2,2,1,3]]]],[19700,20471,20487]]],["upright",[41,41,[[8,1,1,0,1,[[264,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]],[17,4,4,2,6,[[436,2,2,2,4],[437,1,1,4,5],[443,1,1,5,6]]],[18,20,20,6,26,[[484,1,1,6,7],[488,2,2,7,9],[502,1,1,9,10],[509,1,1,10,11],[510,1,1,11,12],[513,1,1,12,13],[514,2,2,13,15],[526,1,1,15,16],[541,1,1,16,17],[569,1,1,17,18],[571,1,1,18,19],[574,1,1,19,20],[588,1,1,20,21],[589,2,2,21,23],[596,1,1,23,24],[602,1,1,24,25],[617,1,1,25,26]]],[19,11,11,26,37,[[629,1,1,26,27],[638,3,3,27,30],[639,1,1,30,31],[641,1,1,31,32],[642,1,1,32,33],[643,1,1,33,34],[648,2,2,34,36],[656,1,1,36,37]]],[20,1,1,37,38,[[665,1,1,37,38]]],[22,1,1,38,39,[[704,1,1,38,39]]],[32,2,2,39,41,[[899,2,2,39,41]]]],[7973,11825,12870,12877,12894,13035,14005,14061,14066,14259,14366,14367,14448,14464,14487,14662,14860,15426,15446,15489,15794,15805,15807,16035,16114,16276,16454,16691,16694,16699,16725,16783,16815,16857,17002,17013,17251,17458,18137,22666,22668]]],["uprightly",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22602]]],["uprightness",[1,1,[[18,1,1,0,1,[[588,1,1,0,1]]]],[15801]]]]},{"k":"H3478","v":[["*",[2505,2230,[[0,42,39,0,39,[[31,2,2,0,2],[33,1,1,2,3],[34,5,3,3,6],[35,1,1,6,7],[36,2,2,7,9],[41,1,1,9,10],[42,3,3,10,13],[44,2,2,13,15],[45,6,6,15,21],[46,3,3,21,24],[47,9,8,24,32],[48,5,5,32,37],[49,2,2,37,39]]],[1,170,160,39,199,[[50,5,5,39,44],[51,2,2,44,46],[52,8,8,46,54],[53,3,3,54,57],[54,6,5,57,62],[55,10,9,62,71],[56,3,3,71,74],[58,6,5,74,79],[59,2,2,79,81],[60,3,2,81,83],[61,15,15,83,98],[62,3,3,98,101],[63,17,14,101,115],[64,3,3,115,118],[65,11,11,118,129],[66,6,6,129,135],[67,6,5,135,140],[68,4,4,140,144],[69,1,1,144,145],[73,7,7,145,152],[74,2,2,152,154],[76,2,2,154,156],[77,8,8,156,164],[78,4,3,164,167],[79,4,3,167,170],[80,3,3,170,173],[81,5,5,173,178],[82,2,2,178,180],[83,6,6,180,186],[84,5,5,186,191],[85,1,1,191,192],[88,5,5,192,197],[89,2,2,197,199]]],[2,65,59,199,258,[[90,1,1,199,200],[93,2,2,200,202],[96,6,5,202,207],[98,2,2,207,209],[99,3,3,209,212],[100,1,1,212,213],[101,1,1,213,214],[104,2,2,214,216],[105,6,6,216,222],[106,8,8,222,230],[107,1,1,230,231],[108,1,1,231,232],[109,3,1,232,233],[110,1,1,233,234],[111,7,5,234,239],[112,7,7,239,246],[113,6,5,246,251],[114,4,4,251,255],[115,1,1,255,256],[116,2,2,256,258]]],[3,237,209,258,467,[[117,11,10,258,268],[118,4,4,268,272],[119,13,11,272,283],[120,1,1,283,284],[121,6,5,284,289],[122,3,3,289,292],[123,2,2,292,294],[124,16,10,294,304],[125,10,9,304,313],[126,5,5,313,318],[127,3,3,318,321],[129,5,5,321,326],[130,6,6,326,332],[131,7,7,332,339],[132,8,7,339,346],[133,5,5,346,351],[134,15,14,351,365],[135,4,4,365,369],[136,10,9,369,378],[137,15,11,378,389],[138,3,3,389,392],[139,5,4,392,396],[140,5,5,396,401],[141,14,9,401,410],[142,9,7,410,417],[143,5,5,417,422],[144,1,1,422,423],[145,1,1,423,424],[146,1,1,424,425],[147,10,10,425,435],[148,9,9,435,444],[149,6,6,444,450],[150,3,3,450,453],[151,5,5,453,458],[152,11,9,458,467]]],[4,72,65,467,532,[[153,3,3,467,470],[154,1,1,470,471],[155,1,1,471,472],[156,4,4,472,476],[157,2,1,476,477],[158,2,2,477,479],[161,1,1,479,480],[162,2,2,480,482],[163,1,1,482,483],[165,1,1,483,484],[169,3,3,484,487],[170,2,2,487,489],[171,1,1,489,490],[172,1,1,490,491],[173,3,2,491,493],[174,3,3,493,496],[175,2,1,496,497],[176,1,1,497,498],[177,3,3,498,501],[178,1,1,501,502],[179,4,3,502,505],[181,4,4,505,509],[183,10,8,509,517],[184,6,5,517,522],[185,6,6,522,528],[186,4,4,528,532]]],[5,160,139,532,671,[[187,1,1,532,533],[188,1,1,533,534],[189,5,5,534,539],[190,9,8,539,547],[191,7,6,547,553],[192,4,4,553,557],[193,15,13,557,570],[194,16,13,570,583],[195,8,7,583,590],[196,23,20,590,610],[197,11,11,610,621],[198,4,3,621,624],[199,7,5,624,629],[200,5,4,629,633],[203,1,1,633,634],[204,4,4,634,638],[205,2,2,638,640],[206,2,2,640,642],[207,6,6,642,648],[208,19,15,648,663],[209,2,2,663,665],[210,8,6,665,671]]],[6,184,154,671,825,[[211,2,2,671,673],[212,8,8,673,681],[213,19,15,681,696],[214,8,7,696,703],[215,8,7,703,710],[216,14,11,710,721],[217,5,5,721,726],[218,6,6,726,732],[219,2,2,732,734],[220,13,12,734,746],[221,22,16,746,762],[222,7,6,762,768],[223,2,2,768,770],[224,1,1,770,771],[225,1,1,771,772],[226,1,1,772,773],[227,1,1,773,774],[228,4,3,774,777],[229,4,4,777,781],[230,42,34,781,815],[231,14,10,815,825]]],[7,5,4,825,829,[[233,1,1,825,826],[235,4,3,826,829]]],[8,151,130,829,959,[[236,1,1,829,830],[237,7,6,830,836],[238,2,2,836,838],[239,12,9,838,847],[240,6,4,847,851],[241,2,2,851,853],[242,21,15,853,868],[243,3,3,868,871],[244,5,5,871,876],[245,4,2,876,878],[246,6,6,878,884],[247,1,1,884,885],[248,9,8,885,893],[249,13,13,893,906],[250,10,9,906,915],[251,1,1,915,916],[252,16,14,916,930],[253,3,3,930,933],[254,1,1,933,934],[255,1,1,934,935],[258,3,3,935,938],[259,3,3,938,941],[260,4,4,941,945],[261,3,3,945,948],[262,2,2,948,950],[263,5,4,950,954],[264,2,2,954,956],[265,1,1,956,957],[266,4,2,957,959]]],[9,117,101,959,1060,[[267,4,4,959,963],[268,4,4,963,967],[269,8,8,967,975],[270,1,1,975,976],[271,10,6,976,982],[272,6,6,982,988],[273,11,9,988,997],[274,1,1,997,998],[276,6,5,998,1003],[277,2,2,1003,1005],[278,4,3,1005,1008],[279,2,2,1008,1010],[280,1,1,1010,1011],[281,5,4,1011,1015],[282,5,5,1015,1020],[283,8,8,1020,1028],[284,4,4,1028,1032],[285,10,8,1032,1040],[286,6,5,1040,1045],[287,8,6,1045,1051],[289,4,3,1051,1054],[290,7,6,1054,1060]]],[10,203,171,1060,1231,[[291,6,6,1060,1066],[292,5,5,1066,1071],[293,1,1,1071,1072],[294,4,4,1072,1076],[295,1,1,1076,1077],[296,4,2,1077,1079],[298,35,29,1079,1108],[299,7,5,1108,1113],[300,2,1,1113,1114],[301,10,9,1114,1123],[302,14,11,1123,1134],[304,14,10,1134,1144],[305,15,13,1144,1157],[306,21,15,1157,1172],[307,2,2,1172,1174],[308,7,6,1174,1180],[309,4,4,1180,1184],[310,20,18,1184,1202],[311,5,5,1202,1207],[312,26,24,1207,1231]]],[11,164,146,1231,1377,[[313,5,5,1231,1236],[314,1,1,1236,1237],[315,14,12,1237,1249],[317,9,8,1249,1257],[318,9,8,1257,1265],[319,3,2,1265,1267],[320,5,5,1267,1272],[321,7,6,1272,1278],[322,10,8,1278,1286],[325,18,16,1286,1302],[326,19,16,1302,1318],[327,18,18,1318,1336],[328,4,3,1336,1339],[329,18,15,1339,1354],[330,6,6,1354,1360],[331,3,3,1360,1363],[333,6,6,1363,1369],[334,2,2,1369,1371],[335,6,5,1371,1376],[336,1,1,1376,1377]]],[12,114,97,1377,1474,[[338,2,2,1377,1379],[339,2,2,1379,1381],[341,1,1,1381,1382],[342,5,4,1382,1386],[343,3,3,1386,1389],[344,1,1,1389,1390],[346,3,2,1390,1392],[347,3,2,1392,1394],[348,9,5,1394,1399],[349,4,3,1399,1402],[350,5,4,1402,1406],[351,3,2,1406,1408],[352,5,5,1408,1413],[353,6,6,1413,1419],[354,10,8,1419,1427],[355,1,1,1427,1428],[356,5,5,1428,1433],[357,1,1,1433,1434],[358,10,8,1434,1442],[359,8,8,1442,1450],[360,3,3,1450,1453],[361,1,1,1453,1454],[363,2,2,1454,1456],[364,5,5,1456,1461],[365,6,4,1461,1465],[366,10,9,1465,1474]]],[13,187,162,1474,1636,[[367,3,2,1474,1476],[368,3,3,1476,1479],[371,6,5,1479,1484],[372,23,19,1484,1503],[373,5,5,1503,1508],[374,5,5,1508,1513],[375,2,2,1513,1515],[376,8,6,1515,1521],[377,5,4,1521,1525],[378,3,3,1525,1528],[379,8,7,1528,1535],[381,5,5,1535,1540],[382,4,4,1540,1544],[383,2,2,1544,1546],[384,18,17,1546,1563],[385,1,1,1563,1564],[386,6,6,1564,1570],[387,4,4,1570,1574],[388,1,1,1574,1575],[389,1,1,1575,1576],[390,4,4,1576,1580],[391,11,10,1580,1590],[393,1,1,1590,1591],[394,9,9,1591,1600],[395,5,4,1600,1604],[396,11,6,1604,1610],[397,5,4,1610,1614],[398,2,2,1614,1616],[399,7,6,1616,1622],[400,7,6,1622,1628],[401,10,6,1628,1634],[402,2,2,1634,1636]]],[14,32,29,1636,1665,[[403,1,1,1636,1637],[404,3,3,1637,1640],[405,4,4,1640,1644],[406,3,2,1644,1646],[408,3,2,1646,1648],[409,5,5,1648,1653],[410,5,4,1653,1657],[411,3,3,1657,1660],[412,5,5,1660,1665]]],[15,22,19,1665,1684,[[413,2,1,1665,1666],[414,1,1,1666,1667],[419,4,3,1667,1670],[420,3,3,1670,1673],[421,2,2,1673,1675],[422,2,2,1675,1677],[423,2,2,1677,1679],[424,1,1,1679,1680],[425,5,4,1680,1684]]],[18,62,60,1684,1744,[[491,2,1,1684,1685],[499,2,2,1685,1687],[502,1,1,1687,1688],[518,1,1,1688,1689],[527,1,1,1689,1690],[530,2,1,1690,1691],[536,1,1,1691,1692],[545,4,4,1692,1696],[546,1,1,1696,1697],[548,1,1,1697,1698],[549,1,1,1698,1699],[550,1,1,1699,1700],[553,1,1,1700,1701],[555,7,7,1701,1708],[557,1,1,1708,1709],[558,4,4,1709,1713],[560,1,1,1713,1714],[566,1,1,1714,1715],[575,1,1,1715,1716],[580,1,1,1716,1717],[582,2,2,1717,1719],[583,1,1,1719,1720],[591,2,2,1720,1722],[592,2,2,1722,1724],[595,1,1,1724,1725],[598,1,1,1725,1726],[599,1,1,1726,1727],[601,1,1,1727,1728],[602,1,1,1728,1729],[605,1,1,1729,1730],[606,1,1,1730,1731],[607,2,2,1731,1733],[608,1,1,1733,1734],[612,3,3,1734,1737],[613,3,3,1737,1740],[624,2,2,1740,1742],[625,1,1,1742,1743],[626,1,1,1743,1744]]],[19,1,1,1744,1745,[[628,1,1,1744,1745]]],[20,1,1,1745,1746,[[659,1,1,1745,1746]]],[21,1,1,1746,1747,[[673,1,1,1746,1747]]],[22,92,87,1747,1834,[[679,3,3,1747,1750],[682,1,1,1750,1751],[683,3,3,1751,1754],[685,1,1,1754,1755],[686,2,2,1755,1757],[687,3,3,1757,1760],[688,4,3,1760,1763],[689,2,2,1763,1765],[690,1,1,1765,1766],[692,2,2,1766,1768],[695,4,4,1768,1772],[697,2,2,1772,1774],[699,2,2,1774,1776],[702,1,1,1776,1777],[705,2,2,1777,1779],[707,2,2,1779,1781],[708,4,4,1781,1785],[709,2,2,1785,1787],[715,3,3,1787,1790],[718,1,1,1790,1791],[719,6,5,1791,1796],[720,1,1,1796,1797],[721,6,6,1797,1803],[722,6,5,1803,1808],[723,6,6,1808,1814],[724,2,2,1814,1816],[725,1,1,1816,1817],[726,5,4,1817,1821],[727,5,4,1821,1825],[730,1,1,1825,1826],[732,1,1,1826,1827],[733,1,1,1827,1828],[734,1,1,1828,1829],[738,2,2,1829,1831],[741,2,2,1831,1833],[744,1,1,1833,1834]]],[23,125,122,1834,1956,[[746,5,5,1834,1839],[747,8,8,1839,1847],[748,1,1,1847,1848],[749,2,2,1848,1850],[750,1,1,1850,1851],[751,3,3,1851,1854],[753,2,2,1854,1856],[754,2,2,1856,1858],[755,3,3,1858,1861],[756,1,1,1861,1862],[757,2,2,1862,1864],[758,1,1,1864,1865],[760,3,3,1865,1868],[761,1,1,1868,1869],[762,3,2,1869,1871],[763,2,2,1871,1873],[765,1,1,1873,1874],[767,5,5,1874,1879],[768,1,1,1879,1880],[769,2,2,1880,1882],[771,2,2,1882,1884],[772,2,2,1884,1886],[773,5,5,1886,1891],[774,4,4,1891,1895],[775,13,13,1895,1908],[776,8,7,1908,1915],[777,4,4,1915,1919],[778,2,2,1919,1921],[779,4,4,1921,1925],[780,1,1,1925,1926],[781,1,1,1926,1927],[782,1,1,1927,1928],[783,1,1,1928,1929],[785,1,1,1929,1930],[786,3,3,1930,1933],[787,1,1,1933,1934],[788,4,4,1934,1938],[789,1,1,1938,1939],[790,2,2,1939,1941],[792,3,3,1941,1944],[793,2,2,1944,1946],[794,7,7,1946,1953],[795,4,3,1953,1956]]],[24,3,3,1956,1959,[[798,3,3,1956,1959]]],[25,186,169,1959,2128,[[803,1,1,1959,1960],[804,6,5,1960,1965],[805,4,4,1965,1969],[806,1,1,1969,1970],[807,4,4,1970,1974],[808,1,1,1974,1975],[809,5,5,1975,1980],[810,3,3,1980,1983],[811,2,2,1983,1985],[812,7,7,1985,1992],[813,8,8,1992,2000],[814,6,5,2000,2005],[815,8,7,2005,2012],[818,2,2,2012,2014],[819,9,8,2014,2022],[820,2,2,2022,2024],[821,13,12,2024,2036],[822,4,4,2036,2040],[823,2,2,2040,2042],[825,1,1,2042,2043],[826,3,3,2043,2046],[828,1,1,2046,2047],[829,2,2,2047,2049],[830,3,3,2049,2052],[834,6,6,2052,2058],[835,6,4,2058,2062],[836,3,3,2062,2065],[837,14,11,2065,2076],[838,8,7,2076,2083],[839,6,6,2083,2089],[840,12,11,2089,2100],[841,2,2,2100,2102],[844,4,3,2102,2105],[845,10,9,2105,2114],[846,8,6,2114,2120],[848,5,4,2120,2124],[849,4,4,2124,2128]]],[26,4,4,2128,2132,[[850,1,1,2128,2129],[858,3,3,2129,2132]]],[27,44,41,2132,2173,[[862,6,6,2132,2138],[864,3,3,2138,2141],[865,3,3,2141,2144],[866,6,4,2144,2148],[867,2,1,2148,2149],[868,2,2,2149,2151],[869,5,5,2151,2156],[870,3,3,2156,2159],[871,5,5,2159,2164],[872,3,3,2164,2167],[873,2,2,2167,2169],[874,2,2,2169,2171],[875,2,2,2171,2173]]],[28,3,3,2173,2176,[[877,1,1,2173,2174],[878,2,2,2174,2176]]],[29,30,26,2176,2202,[[879,2,1,2176,2177],[880,2,2,2177,2179],[881,3,3,2179,2182],[882,3,2,2182,2184],[883,5,5,2184,2189],[884,2,2,2189,2191],[885,8,7,2191,2198],[886,1,1,2198,2199],[887,4,3,2199,2202]]],[30,1,1,2202,2203,[[888,1,1,2202,2203]]],[32,12,12,2203,2215,[[893,4,4,2203,2207],[894,1,1,2207,2208],[895,3,3,2208,2211],[897,3,3,2211,2214],[898,1,1,2214,2215]]],[33,1,1,2215,2216,[[901,1,1,2215,2216]]],[35,4,4,2216,2220,[[907,1,1,2216,2217],[908,3,3,2217,2220]]],[37,5,5,2220,2225,[[911,1,1,2220,2221],[918,1,1,2221,2222],[919,1,1,2222,2223],[921,1,1,2223,2224],[922,1,1,2224,2225]]],[38,5,5,2225,2230,[[925,2,2,2225,2227],[926,2,2,2227,2229],[928,1,1,2229,2230]]]],[956,960,987,1021,1032,1033,1071,1086,1096,1257,1296,1298,1301,1379,1386,1387,1388,1391,1394,1415,1416,1447,1449,1451,1453,1459,1461,1462,1464,1465,1471,1472,1475,1480,1489,1497,1501,1508,1531,1533,1539,1541,1544,1545,1577,1579,1588,1589,1590,1592,1593,1594,1595,1597,1623,1630,1632,1633,1634,1646,1647,1651,1660,1661,1664,1666,1667,1668,1669,1681,1682,1687,1689,1690,1746,1748,1749,1768,1777,1797,1800,1813,1816,1819,1822,1831,1835,1837,1843,1844,1847,1851,1853,1856,1858,1863,1866,1867,1869,1885,1886,1891,1892,1894,1897,1899,1904,1905,1908,1909,1911,1914,1918,1919,1920,1921,1939,1942,1948,1949,1950,1953,1956,1957,1959,1962,1964,1978,1982,1984,1988,1989,1990,1991,1994,2000,2007,2008,2011,2024,2027,2028,2029,2032,2073,2178,2181,2182,2186,2187,2188,2194,2197,2217,2292,2293,2294,2302,2304,2305,2314,2322,2323,2331,2364,2379,2381,2394,2398,2413,2433,2436,2437,2442,2446,2451,2458,2465,2478,2479,2519,2523,2526,2528,2530,2531,2532,2535,2551,2560,2561,2569,2670,2671,2678,2696,2706,2743,2745,2747,2797,2808,2902,2908,2913,2915,2917,2954,2956,2983,2988,2991,2999,3046,3170,3199,3206,3217,3218,3220,3222,3235,3237,3238,3240,3243,3245,3247,3248,3249,3253,3283,3320,3369,3371,3372,3384,3387,3401,3404,3412,3426,3436,3444,3445,3446,3448,3454,3456,3461,3469,3471,3502,3515,3524,3570,3572,3604,3606,3607,3620,3624,3648,3649,3653,3656,3657,3658,3660,3690,3691,3692,3700,3701,3704,3705,3730,3732,3733,3734,3737,3738,3742,3789,3794,3796,3798,3801,3804,3825,3846,3850,3852,3934,3945,3948,3949,3950,3953,3955,3956,3957,3958,3959,3967,3969,3970,3972,3975,3982,3983,3984,3987,3992,4000,4016,4017,4024,4028,4040,4054,4077,4078,4099,4101,4107,4110,4113,4115,4118,4135,4147,4155,4171,4178,4179,4182,4185,4191,4196,4203,4219,4228,4232,4234,4235,4246,4249,4250,4253,4256,4262,4263,4265,4268,4271,4276,4277,4278,4279,4280,4281,4283,4285,4289,4291,4298,4299,4302,4312,4323,4324,4325,4330,4332,4333,4335,4340,4341,4342,4343,4346,4350,4357,4361,4363,4364,4365,4371,4376,4377,4378,4423,4426,4437,4439,4447,4448,4451,4463,4464,4472,4474,4475,4476,4477,4479,4482,4484,4485,4491,4493,4494,4540,4551,4552,4553,4562,4565,4566,4574,4575,4579,4648,4649,4666,4668,4669,4673,4676,4680,4694,4706,4711,4718,4722,4725,4727,4731,4732,4735,4736,4740,4746,4761,4763,4765,4798,4800,4811,4818,4829,4845,4847,4853,4855,4860,4879,4880,4881,4882,4883,4884,4886,4887,4888,4892,4893,4895,4930,4950,4993,5005,5048,5049,5050,5054,5089,5090,5158,5192,5198,5214,5283,5368,5376,5384,5385,5390,5419,5430,5455,5468,5489,5491,5492,5517,5532,5553,5554,5557,5581,5586,5594,5599,5680,5681,5689,5700,5729,5735,5737,5739,5747,5750,5751,5758,5766,5803,5807,5809,5810,5811,5815,5820,5831,5838,5839,5847,5848,5849,5851,5853,5871,5894,5900,5902,5905,5910,5914,5915,5917,5918,5922,5924,5931,5932,5935,5936,5937,5940,5944,5946,5950,5967,5972,5974,5977,5982,5984,5987,5988,5989,5991,5992,5995,5996,5999,6000,6001,6012,6016,6017,6019,6023,6024,6026,6029,6032,6033,6034,6035,6037,6039,6043,6044,6054,6055,6056,6063,6065,6068,6074,6075,6076,6078,6079,6084,6085,6088,6093,6094,6095,6096,6098,6100,6102,6104,6106,6107,6112,6113,6115,6120,6121,6123,6126,6127,6128,6129,6130,6131,6136,6137,6160,6167,6168,6176,6187,6188,6192,6197,6201,6288,6294,6295,6296,6303,6370,6372,6374,6381,6382,6384,6389,6422,6424,6426,6435,6437,6438,6439,6440,6442,6444,6446,6447,6448,6450,6456,6457,6458,6459,6461,6462,6477,6478,6485,6499,6507,6508,6510,6537,6549,6551,6552,6555,6556,6559,6565,6567,6569,6570,6572,6573,6575,6576,6577,6578,6580,6581,6582,6583,6595,6598,6599,6600,6602,6603,6604,6605,6622,6623,6625,6626,6628,6630,6631,6632,6634,6655,6656,6657,6658,6660,6661,6662,6668,6669,6690,6691,6696,6702,6708,6709,6717,6741,6746,6747,6752,6753,6754,6776,6809,6812,6813,6814,6817,6818,6819,6820,6821,6822,6826,6827,6828,6833,6834,6842,6844,6845,6846,6848,6849,6850,6852,6854,6855,6856,6862,6868,6869,6876,6877,6878,6880,6882,6883,6885,6889,6913,6949,6980,6986,6994,7012,7022,7025,7036,7053,7054,7055,7056,7057,7060,7061,7064,7065,7066,7067,7068,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7083,7084,7085,7086,7087,7088,7089,7090,7092,7093,7095,7096,7102,7103,7105,7107,7108,7110,7117,7119,7120,7126,7127,7161,7197,7201,7204,7229,7254,7262,7268,7269,7270,7272,7287,7296,7298,7299,7300,7302,7307,7314,7315,7318,7319,7326,7327,7329,7330,7334,7336,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7365,7366,7367,7368,7369,7370,7373,7391,7393,7400,7407,7411,7412,7436,7438,7447,7448,7452,7453,7458,7460,7461,7486,7487,7489,7490,7491,7498,7504,7505,7520,7526,7529,7530,7531,7532,7545,7547,7548,7549,7553,7555,7556,7561,7562,7566,7577,7586,7588,7589,7590,7595,7596,7620,7621,7626,7628,7629,7637,7639,7642,7643,7644,7663,7664,7670,7671,7682,7692,7694,7711,7742,7820,7821,7827,7841,7853,7859,7862,7891,7893,7895,7907,7920,7925,7931,7942,7943,7945,7946,7961,7968,7970,8003,8010,8016,8025,8034,8041,8046,8058,8059,8066,8077,8091,8093,8098,8099,8100,8102,8118,8119,8121,8133,8134,8135,8137,8144,8149,8158,8162,8172,8176,8177,8178,8186,8187,8188,8190,8191,8203,8204,8206,8207,8224,8249,8255,8257,8258,8259,8260,8270,8293,8294,8298,8329,8330,8381,8391,8395,8399,8402,8429,8441,8444,8447,8448,8453,8459,8460,8462,8463,8464,8473,8475,8484,8485,8494,8495,8519,8520,8522,8533,8551,8552,8553,8554,8555,8556,8568,8573,8577,8582,8584,8585,8595,8597,8601,8654,8656,8662,8693,8694,8696,8701,8707,8717,8720,8737,8747,8751,8752,8765,8774,8775,8781,8785,8802,8844,8845,8851,8864,8869,8891,8897,8909,8986,8987,8988,8990,8994,8999,9000,9001,9002,9005,9007,9008,9010,9011,9015,9018,9019,9021,9023,9026,9028,9037,9040,9041,9044,9047,9048,9050,9051,9056,9058,9071,9072,9073,9088,9110,9117,9124,9133,9139,9140,9145,9146,9150,9152,9154,9167,9168,9169,9170,9171,9172,9175,9179,9184,9225,9228,9231,9232,9233,9234,9236,9237,9239,9242,9258,9265,9266,9268,9269,9274,9275,9276,9279,9280,9281,9282,9283,9285,9288,9291,9296,9297,9299,9300,9302,9303,9304,9306,9309,9310,9312,9316,9318,9331,9358,9359,9360,9361,9372,9377,9397,9401,9403,9405,9410,9412,9415,9419,9421,9423,9428,9429,9430,9434,9435,9436,9437,9439,9440,9448,9449,9451,9458,9469,9472,9473,9477,9481,9482,9483,9484,9485,9486,9488,9489,9490,9497,9498,9506,9509,9510,9511,9512,9513,9514,9519,9521,9524,9531,9532,9533,9534,9536,9539,9549,9551,9563,9577,9579,9580,9581,9582,9585,9586,9587,9588,9589,9600,9603,9649,9651,9652,9653,9654,9655,9659,9662,9682,9683,9684,9685,9686,9695,9697,9700,9713,9720,9739,9743,9745,9752,9753,9759,9762,9764,9768,9770,9777,9814,9821,9822,9823,9824,9825,9827,9829,9872,9873,9874,9875,9876,9877,9879,9881,9882,9883,9884,9885,9887,9889,9893,9896,9897,9904,9905,9907,9908,9909,9911,9912,9913,9919,9920,9921,9922,9923,9924,9925,9926,9933,9934,9936,9937,9940,9942,9943,9945,9946,9948,9949,9951,9952,9953,9954,9956,9957,9966,9968,9970,9984,9985,9989,9990,9991,9992,9996,10001,10002,10003,10004,10005,10006,10007,10017,10025,10028,10029,10033,10034,10035,10076,10081,10083,10121,10122,10126,10127,10128,10131,10160,10163,10178,10180,10184,10187,10192,10215,10286,10295,10307,10313,10395,10429,10431,10445,10454,10492,10503,10518,10564,10616,10617,10660,10666,10674,10675,10676,10677,10683,10752,10758,10760,10762,10765,10766,10768,10776,10782,10794,10803,10805,10816,10819,10823,10824,10833,10837,10856,10860,10868,10869,10870,10872,10873,10884,10885,10887,10904,10917,10923,10924,10925,10926,10933,10935,10936,10937,10938,10939,10941,10946,10948,10965,10966,10970,10973,10974,10976,10977,10981,10984,10985,11008,11034,11106,11107,11110,11125,11131,11132,11133,11144,11147,11148,11151,11170,11174,11182,11185,11187,11189,11190,11191,11194,11196,11207,11215,11223,11228,11270,11271,11272,11274,11278,11285,11286,11287,11288,11289,11292,11293,11294,11295,11296,11298,11299,11303,11306,11307,11309,11311,11314,11315,11327,11330,11332,11334,11342,11348,11353,11354,11355,11357,11372,11394,11396,11398,11411,11412,11413,11414,11415,11417,11427,11430,11438,11443,11450,11457,11458,11465,11468,11469,11470,11471,11493,11494,11499,11503,11507,11510,11512,11513,11520,11524,11527,11545,11546,11547,11549,11550,11551,11558,11559,11561,11567,11570,11571,11572,11573,11574,11575,11576,11584,11594,11597,11606,11616,11621,11622,11626,11628,11630,11637,11649,11658,11682,11683,11686,11693,11710,11711,11713,11721,11722,11725,11726,11727,11729,11730,11762,11766,11767,11769,11772,11777,11783,11787,11790,11791,11798,11801,11815,11818,11828,11832,11833,11848,11852,11853,11855,11859,11860,11862,11892,11907,11910,11915,11916,11917,11924,11926,11940,11942,11954,11956,11959,11966,11969,11970,11983,11984,11991,11993,12001,12006,12019,12029,12086,12097,12098,12099,12107,12108,12111,12113,12172,12173,12179,12180,12183,12184,12201,12219,12226,12230,12236,12238,12241,12252,12253,12254,12257,12262,12277,12302,12317,12427,12481,12493,12494,12507,12510,12512,12513,12582,12588,12591,12608,12671,12673,12674,12689,12697,14087,14207,14227,14273,14555,14675,14725,14795,14908,14926,14934,14935,14941,14998,15018,15021,15082,15118,15134,15144,15154,15168,15172,15184,15199,15221,15225,15228,15230,15245,15344,15493,15556,15616,15629,15699,15823,15824,15839,15842,15871,16085,16093,16103,16115,16132,16133,16147,16148,16151,16179,16187,16194,16207,16210,16218,16353,16370,16385,16387,16401,17327,17578,17657,17658,17678,17735,17746,17758,17763,17783,17821,17825,17837,17841,17843,17867,17870,17872,17896,17900,17906,17929,17930,17986,17989,17990,17992,18028,18029,18045,18052,18110,18157,18163,18212,18216,18228,18229,18232,18246,18251,18256,18368,18373,18375,18447,18459,18465,18467,18468,18471,18504,18506,18508,18519,18520,18527,18533,18534,18538,18539,18554,18556,18564,18565,18572,18576,18578,18586,18589,18599,18603,18615,18616,18626,18631,18639,18641,18642,18643,18708,18728,18745,18761,18830,18835,18873,18882,18942,18968,18969,18979,18991,18996,19008,19010,19013,19014,19020,19022,19023,19025,19028,19069,19073,19098,19122,19131,19140,19190,19201,19202,19217,19229,19236,19243,19263,19277,19278,19301,19345,19350,19351,19370,19390,19397,19410,19422,19444,19486,19490,19491,19492,19497,19529,19549,19561,19600,19617,19620,19632,19639,19643,19656,19658,19660,19669,19670,19671,19677,19692,19693,19695,19698,19700,19701,19712,19714,19718,19722,19724,19727,19728,19745,19746,19751,19752,19761,19763,19767,19779,19782,19789,19792,19803,19814,19836,19840,19841,19842,19844,19881,19912,19939,19966,19984,19990,19993,20007,20012,20017,20021,20035,20042,20070,20072,20081,20093,20107,20128,20129,20170,20183,20184,20185,20186,20195,20199,20217,20245,20261,20333,20335,20337,20495,20503,20506,20507,20509,20519,20532,20533,20534,20542,20550,20565,20566,20568,20574,20579,20608,20610,20614,20615,20616,20625,20630,20631,20652,20653,20660,20665,20666,20668,20670,20672,20677,20686,20689,20690,20699,20702,20703,20704,20707,20710,20712,20713,20717,20724,20732,20735,20736,20737,20738,20740,20742,20827,20848,20851,20852,20855,20864,20874,20878,20879,20880,20882,20890,20896,20898,20900,20908,20922,20925,20926,20933,20934,20935,20937,20939,20946,20947,20956,20969,20982,20994,21077,21086,21089,21097,21138,21181,21182,21189,21199,21204,21287,21290,21291,21300,21304,21308,21315,21326,21327,21343,21349,21356,21359,21360,21363,21365,21367,21369,21371,21376,21380,21381,21391,21396,21408,21409,21413,21416,21418,21419,21425,21433,21439,21441,21442,21443,21444,21450,21452,21455,21457,21459,21460,21465,21470,21471,21473,21477,21479,21481,21574,21579,21582,21601,21605,21608,21609,21611,21614,21621,21627,21628,21636,21638,21639,21645,21646,21647,21692,21697,21700,21701,21713,21721,21731,21733,21740,21995,21999,22008,22095,22098,22099,22100,22104,22105,22129,22132,22133,22134,22148,22149,22153,22155,22157,22161,22177,22179,22188,22196,22197,22200,22202,22208,22209,22215,22218,22226,22231,22233,22234,22240,22241,22248,22252,22264,22265,22267,22275,22283,22287,22338,22345,22359,22365,22385,22390,22396,22407,22409,22415,22422,22424,22425,22426,22427,22448,22451,22464,22472,22473,22474,22475,22479,22480,22481,22483,22502,22504,22509,22530,22584,22592,22593,22594,22607,22609,22616,22617,22634,22635,22636,22650,22701,22814,22833,22834,22835,22897,22989,23000,23042,23046,23090,23094,23114,23119,23142]]],["+",[63,62,[[1,4,4,0,4,[[61,1,1,0,1],[64,1,1,1,2],[67,1,1,2,3],[83,1,1,3,4]]],[2,3,3,4,7,[[99,1,1,4,5],[111,1,1,5,6],[112,1,1,6,7]]],[3,7,7,7,14,[[134,1,1,7,8],[135,1,1,8,9],[137,1,1,9,10],[140,1,1,10,11],[141,2,2,11,13],[148,1,1,13,14]]],[4,6,6,14,20,[[157,1,1,14,15],[169,1,1,15,16],[171,1,1,16,17],[174,1,1,17,18],[177,1,1,18,19],[183,1,1,19,20]]],[5,2,2,20,22,[[199,1,1,20,21],[207,1,1,21,22]]],[6,4,4,22,26,[[230,1,1,22,23],[231,3,3,23,26]]],[8,5,5,26,31,[[239,3,3,26,29],[248,1,1,29,30],[263,1,1,30,31]]],[9,1,1,31,32,[[276,1,1,31,32]]],[10,10,9,32,41,[[304,2,1,32,33],[305,3,3,33,36],[306,3,3,36,39],[311,1,1,39,40],[312,1,1,40,41]]],[11,5,5,41,46,[[315,1,1,41,42],[318,1,1,42,43],[322,2,2,43,45],[329,1,1,45,46]]],[12,1,1,46,47,[[358,1,1,46,47]]],[13,6,6,47,53,[[374,1,1,47,48],[379,1,1,48,49],[381,2,2,49,51],[391,1,1,51,52],[396,1,1,52,53]]],[14,4,4,53,57,[[404,1,1,53,54],[409,1,1,54,55],[412,2,2,55,57]]],[15,2,2,57,59,[[419,1,1,57,58],[425,1,1,58,59]]],[18,1,1,59,60,[[612,1,1,59,60]]],[22,1,1,60,61,[[687,1,1,60,61]]],[27,1,1,61,62,[[869,1,1,61,62]]]],[1831,1921,2000,2530,2988,3384,3446,4283,4302,4346,4463,4475,4485,4740,5054,5376,5419,5492,5553,5758,6168,6424,7067,7105,7108,7119,7307,7318,7319,7487,7946,8257,9234,9275,9279,9283,9296,9302,9309,9473,9532,9587,9686,9821,9825,9989,10948,11353,11470,11499,11507,11710,11852,12086,12201,12253,12277,12481,12674,16194,17843,22200]]],["Israel",[2417,2164,[[0,40,38,0,38,[[31,2,2,0,2],[33,1,1,2,3],[34,5,3,3,6],[35,1,1,6,7],[36,2,2,7,9],[41,1,1,9,10],[42,3,3,10,13],[44,2,2,13,15],[45,6,6,15,21],[46,3,3,21,24],[47,7,7,24,31],[48,5,5,31,36],[49,2,2,36,38]]],[1,164,155,38,193,[[50,5,5,38,43],[51,2,2,43,45],[52,8,8,45,53],[53,3,3,53,56],[54,6,5,56,61],[55,10,9,61,70],[56,3,3,70,73],[58,5,4,73,77],[59,2,2,77,79],[60,3,2,79,81],[61,14,14,81,95],[62,3,3,95,98],[63,17,14,98,112],[64,2,2,112,114],[65,11,11,114,125],[66,6,6,125,131],[67,4,4,131,135],[68,4,4,135,139],[69,1,1,139,140],[73,7,7,140,147],[74,2,2,147,149],[76,2,2,149,151],[77,8,8,151,159],[78,4,3,159,162],[79,4,3,162,165],[80,3,3,165,168],[81,5,5,168,173],[82,2,2,173,175],[83,5,5,175,180],[84,5,5,180,185],[85,1,1,185,186],[88,5,5,186,191],[89,2,2,191,193]]],[2,61,55,193,248,[[90,1,1,193,194],[93,2,2,194,196],[96,6,5,196,201],[98,2,2,201,203],[99,2,2,203,205],[100,1,1,205,206],[101,1,1,206,207],[104,2,2,207,209],[105,6,6,209,215],[106,8,8,215,223],[107,1,1,223,224],[108,1,1,224,225],[109,3,1,225,226],[110,1,1,226,227],[111,6,4,227,231],[112,5,5,231,236],[113,6,5,236,241],[114,4,4,241,245],[115,1,1,245,246],[116,2,2,246,248]]],[3,226,198,248,446,[[117,10,9,248,257],[118,4,4,257,261],[119,13,11,261,272],[120,1,1,272,273],[121,6,5,273,278],[122,3,3,278,281],[123,2,2,281,283],[124,16,10,283,293],[125,10,9,293,302],[126,5,5,302,307],[127,3,3,307,310],[129,5,5,310,315],[130,6,6,315,321],[131,7,7,321,328],[132,8,7,328,335],[133,5,5,335,340],[134,14,13,340,353],[135,3,3,353,356],[136,10,9,356,365],[137,14,10,365,375],[138,3,3,375,378],[139,5,4,378,382],[140,4,4,382,386],[141,12,7,386,393],[142,9,7,393,400],[143,5,5,400,405],[144,1,1,405,406],[145,1,1,406,407],[146,1,1,407,408],[147,7,7,408,415],[148,8,8,415,423],[149,6,6,423,429],[150,3,3,429,432],[151,5,5,432,437],[152,11,9,437,446]]],[4,65,60,446,506,[[153,3,3,446,449],[154,1,1,449,450],[155,1,1,450,451],[156,4,4,451,455],[157,1,1,455,456],[158,2,2,456,458],[161,1,1,458,459],[162,2,2,459,461],[163,1,1,461,462],[165,1,1,462,463],[169,2,2,463,465],[170,2,2,465,467],[172,1,1,467,468],[173,2,2,468,470],[174,2,2,470,472],[175,2,1,472,473],[176,1,1,473,474],[177,2,2,474,476],[178,1,1,476,477],[179,4,3,477,480],[181,4,4,480,484],[183,9,7,484,491],[184,6,5,491,496],[185,6,6,496,502],[186,4,4,502,506]]],[5,154,136,506,642,[[187,1,1,506,507],[188,1,1,507,508],[189,4,4,508,512],[190,9,8,512,520],[191,7,6,520,526],[192,4,4,526,530],[193,15,13,530,543],[194,15,13,543,556],[195,8,7,556,563],[196,23,20,563,583],[197,11,11,583,594],[198,4,3,594,597],[199,4,4,597,601],[200,5,4,601,605],[203,1,1,605,606],[204,4,4,606,610],[205,2,2,610,612],[206,2,2,612,614],[207,5,5,614,619],[208,19,15,619,634],[209,2,2,634,636],[210,8,6,636,642]]],[6,179,152,642,794,[[211,2,2,642,644],[212,8,8,644,652],[213,19,15,652,667],[214,8,7,667,674],[215,8,7,674,681],[216,14,11,681,692],[217,5,5,692,697],[218,6,6,697,703],[219,2,2,703,705],[220,13,12,705,717],[221,22,16,717,733],[222,7,6,733,739],[223,2,2,739,741],[224,1,1,741,742],[225,1,1,742,743],[226,1,1,743,744],[227,1,1,744,745],[228,4,3,745,748],[229,4,4,748,752],[230,40,33,752,785],[231,11,9,785,794]]],[7,5,4,794,798,[[233,1,1,794,795],[235,4,3,795,798]]],[8,141,121,798,919,[[236,1,1,798,799],[237,6,5,799,804],[238,2,2,804,806],[239,9,7,806,813],[240,6,4,813,817],[241,2,2,817,819],[242,21,15,819,834],[243,3,3,834,837],[244,5,5,837,842],[245,4,2,842,844],[246,6,6,844,850],[247,1,1,850,851],[248,7,6,851,857],[249,12,12,857,869],[250,10,9,869,878],[251,1,1,878,879],[252,16,14,879,893],[253,3,3,893,896],[254,1,1,896,897],[255,1,1,897,898],[258,3,3,898,901],[259,3,3,901,904],[260,3,3,904,907],[261,3,3,907,910],[262,2,2,910,912],[263,4,3,912,915],[264,1,1,915,916],[265,1,1,916,917],[266,4,2,917,919]]],[9,114,99,919,1018,[[267,4,4,919,923],[268,4,4,923,927],[269,8,8,927,935],[271,9,6,935,941],[272,6,6,941,947],[273,11,9,947,956],[274,1,1,956,957],[276,5,4,957,961],[277,2,2,961,963],[278,4,3,963,966],[279,2,2,966,968],[280,1,1,968,969],[281,5,4,969,973],[282,5,5,973,978],[283,8,8,978,986],[284,4,4,986,990],[285,10,8,990,998],[286,6,5,998,1003],[287,8,6,1003,1009],[289,4,3,1009,1012],[290,7,6,1012,1018]]],[10,193,165,1018,1183,[[291,6,6,1018,1024],[292,5,5,1024,1029],[293,1,1,1029,1030],[294,4,4,1030,1034],[295,1,1,1034,1035],[296,4,2,1035,1037],[298,35,29,1037,1066],[299,7,5,1066,1071],[300,2,1,1071,1072],[301,10,9,1072,1081],[302,14,11,1081,1092],[304,12,9,1092,1101],[305,12,11,1101,1112],[306,18,14,1112,1126],[307,2,2,1126,1128],[308,7,6,1128,1134],[309,4,4,1134,1138],[310,20,18,1138,1156],[311,4,4,1156,1160],[312,25,23,1160,1183]]],[11,157,143,1183,1326,[[313,5,5,1183,1188],[314,1,1,1188,1189],[315,12,11,1189,1200],[317,9,8,1200,1208],[318,8,8,1208,1216],[319,2,2,1216,1218],[320,5,5,1218,1223],[321,7,6,1223,1229],[322,8,7,1229,1236],[325,18,16,1236,1252],[326,19,16,1252,1268],[327,18,18,1268,1286],[328,4,3,1286,1289],[329,17,14,1289,1303],[330,6,6,1303,1309],[331,3,3,1309,1312],[333,6,6,1312,1318],[334,2,2,1318,1320],[335,6,5,1320,1325],[336,1,1,1325,1326]]],[12,112,96,1326,1422,[[338,2,2,1326,1328],[339,2,2,1328,1330],[341,1,1,1330,1331],[342,5,4,1331,1335],[343,3,3,1335,1338],[344,1,1,1338,1339],[346,2,1,1339,1340],[347,3,2,1340,1342],[348,9,5,1342,1347],[349,4,3,1347,1350],[350,5,4,1350,1354],[351,3,2,1354,1356],[352,5,5,1356,1361],[353,6,6,1361,1367],[354,10,8,1367,1375],[355,1,1,1375,1376],[356,5,5,1376,1381],[357,1,1,1381,1382],[358,9,8,1382,1390],[359,8,8,1390,1398],[360,3,3,1398,1401],[361,1,1,1401,1402],[363,2,2,1402,1404],[364,5,5,1404,1409],[365,6,4,1409,1413],[366,10,9,1413,1422]]],[13,181,157,1422,1579,[[367,3,2,1422,1424],[368,3,3,1424,1427],[371,6,5,1427,1432],[372,23,19,1432,1451],[373,5,5,1451,1456],[374,4,4,1456,1460],[375,2,2,1460,1462],[376,8,6,1462,1468],[377,5,4,1468,1472],[378,3,3,1472,1475],[379,7,6,1475,1481],[381,3,3,1481,1484],[382,4,4,1484,1488],[383,2,2,1488,1490],[384,18,17,1490,1507],[385,1,1,1507,1508],[386,6,6,1508,1514],[387,4,4,1514,1518],[388,1,1,1518,1519],[389,1,1,1519,1520],[390,4,4,1520,1524],[391,10,9,1524,1533],[393,1,1,1533,1534],[394,9,9,1534,1543],[395,5,4,1543,1547],[396,10,6,1547,1553],[397,5,4,1553,1557],[398,2,2,1557,1559],[399,7,6,1559,1565],[400,7,6,1565,1571],[401,10,6,1571,1577],[402,2,2,1577,1579]]],[14,28,25,1579,1604,[[403,1,1,1579,1580],[404,2,2,1580,1582],[405,4,4,1582,1586],[406,3,2,1586,1588],[408,3,2,1588,1590],[409,4,4,1590,1594],[410,5,4,1594,1598],[411,3,3,1598,1601],[412,3,3,1601,1604]]],[15,20,17,1604,1621,[[413,2,1,1604,1605],[414,1,1,1605,1606],[419,3,2,1606,1608],[420,3,3,1608,1611],[421,2,2,1611,1613],[422,2,2,1613,1615],[423,2,2,1615,1617],[424,1,1,1617,1618],[425,4,3,1618,1621]]],[18,61,59,1621,1680,[[491,2,1,1621,1622],[499,2,2,1622,1624],[502,1,1,1624,1625],[518,1,1,1625,1626],[527,1,1,1626,1627],[530,2,1,1627,1628],[536,1,1,1628,1629],[545,4,4,1629,1633],[546,1,1,1633,1634],[548,1,1,1634,1635],[549,1,1,1635,1636],[550,1,1,1636,1637],[553,1,1,1637,1638],[555,7,7,1638,1645],[557,1,1,1645,1646],[558,4,4,1646,1650],[560,1,1,1650,1651],[566,1,1,1651,1652],[575,1,1,1652,1653],[580,1,1,1653,1654],[582,2,2,1654,1656],[583,1,1,1656,1657],[591,2,2,1657,1659],[592,2,2,1659,1661],[595,1,1,1661,1662],[598,1,1,1662,1663],[599,1,1,1663,1664],[601,1,1,1664,1665],[602,1,1,1665,1666],[605,1,1,1666,1667],[606,1,1,1667,1668],[607,2,2,1668,1670],[608,1,1,1670,1671],[612,2,2,1671,1673],[613,3,3,1673,1676],[624,2,2,1676,1678],[625,1,1,1678,1679],[626,1,1,1679,1680]]],[19,1,1,1680,1681,[[628,1,1,1680,1681]]],[20,1,1,1681,1682,[[659,1,1,1681,1682]]],[21,1,1,1682,1683,[[673,1,1,1682,1683]]],[22,91,86,1683,1769,[[679,3,3,1683,1686],[682,1,1,1686,1687],[683,3,3,1687,1690],[685,1,1,1690,1691],[686,2,2,1691,1693],[687,2,2,1693,1695],[688,4,3,1695,1698],[689,2,2,1698,1700],[690,1,1,1700,1701],[692,2,2,1701,1703],[695,4,4,1703,1707],[697,2,2,1707,1709],[699,2,2,1709,1711],[702,1,1,1711,1712],[705,2,2,1712,1714],[707,2,2,1714,1716],[708,4,4,1716,1720],[709,2,2,1720,1722],[715,3,3,1722,1725],[718,1,1,1725,1726],[719,6,5,1726,1731],[720,1,1,1731,1732],[721,6,6,1732,1738],[722,6,5,1738,1743],[723,6,6,1743,1749],[724,2,2,1749,1751],[725,1,1,1751,1752],[726,5,4,1752,1756],[727,5,4,1756,1760],[730,1,1,1760,1761],[732,1,1,1761,1762],[733,1,1,1762,1763],[734,1,1,1763,1764],[738,2,2,1764,1766],[741,2,2,1766,1768],[744,1,1,1768,1769]]],[23,125,122,1769,1891,[[746,5,5,1769,1774],[747,8,8,1774,1782],[748,1,1,1782,1783],[749,2,2,1783,1785],[750,1,1,1785,1786],[751,3,3,1786,1789],[753,2,2,1789,1791],[754,2,2,1791,1793],[755,3,3,1793,1796],[756,1,1,1796,1797],[757,2,2,1797,1799],[758,1,1,1799,1800],[760,3,3,1800,1803],[761,1,1,1803,1804],[762,3,2,1804,1806],[763,2,2,1806,1808],[765,1,1,1808,1809],[767,5,5,1809,1814],[768,1,1,1814,1815],[769,2,2,1815,1817],[771,2,2,1817,1819],[772,2,2,1819,1821],[773,5,5,1821,1826],[774,4,4,1826,1830],[775,13,13,1830,1843],[776,8,7,1843,1850],[777,4,4,1850,1854],[778,2,2,1854,1856],[779,4,4,1856,1860],[780,1,1,1860,1861],[781,1,1,1861,1862],[782,1,1,1862,1863],[783,1,1,1863,1864],[785,1,1,1864,1865],[786,3,3,1865,1868],[787,1,1,1868,1869],[788,4,4,1869,1873],[789,1,1,1873,1874],[790,2,2,1874,1876],[792,3,3,1876,1879],[793,2,2,1879,1881],[794,7,7,1881,1888],[795,4,3,1888,1891]]],[24,3,3,1891,1894,[[798,3,3,1891,1894]]],[25,186,169,1894,2063,[[803,1,1,1894,1895],[804,6,5,1895,1900],[805,4,4,1900,1904],[806,1,1,1904,1905],[807,4,4,1905,1909],[808,1,1,1909,1910],[809,5,5,1910,1915],[810,3,3,1915,1918],[811,2,2,1918,1920],[812,7,7,1920,1927],[813,8,8,1927,1935],[814,6,5,1935,1940],[815,8,7,1940,1947],[818,2,2,1947,1949],[819,9,8,1949,1957],[820,2,2,1957,1959],[821,13,12,1959,1971],[822,4,4,1971,1975],[823,2,2,1975,1977],[825,1,1,1977,1978],[826,3,3,1978,1981],[828,1,1,1981,1982],[829,2,2,1982,1984],[830,3,3,1984,1987],[834,6,6,1987,1993],[835,6,4,1993,1997],[836,3,3,1997,2000],[837,14,11,2000,2011],[838,8,7,2011,2018],[839,6,6,2018,2024],[840,12,11,2024,2035],[841,2,2,2035,2037],[844,4,3,2037,2040],[845,10,9,2040,2049],[846,8,6,2049,2055],[848,5,4,2055,2059],[849,4,4,2059,2063]]],[26,4,4,2063,2067,[[850,1,1,2063,2064],[858,3,3,2064,2067]]],[27,43,40,2067,2107,[[862,6,6,2067,2073],[864,3,3,2073,2076],[865,3,3,2076,2079],[866,6,4,2079,2083],[867,2,1,2083,2084],[868,2,2,2084,2086],[869,4,4,2086,2090],[870,3,3,2090,2093],[871,5,5,2093,2098],[872,3,3,2098,2101],[873,2,2,2101,2103],[874,2,2,2103,2105],[875,2,2,2105,2107]]],[28,3,3,2107,2110,[[877,1,1,2107,2108],[878,2,2,2108,2110]]],[29,30,26,2110,2136,[[879,2,1,2110,2111],[880,2,2,2111,2113],[881,3,3,2113,2116],[882,3,2,2116,2118],[883,5,5,2118,2123],[884,2,2,2123,2125],[885,8,7,2125,2132],[886,1,1,2132,2133],[887,4,3,2133,2136]]],[30,1,1,2136,2137,[[888,1,1,2136,2137]]],[32,12,12,2137,2149,[[893,4,4,2137,2141],[894,1,1,2141,2142],[895,3,3,2142,2145],[897,3,3,2145,2148],[898,1,1,2148,2149]]],[33,1,1,2149,2150,[[901,1,1,2149,2150]]],[35,4,4,2150,2154,[[907,1,1,2150,2151],[908,3,3,2151,2154]]],[37,5,5,2154,2159,[[911,1,1,2154,2155],[918,1,1,2155,2156],[919,1,1,2156,2157],[921,1,1,2157,2158],[922,1,1,2158,2159]]],[38,5,5,2159,2164,[[925,2,2,2159,2161],[926,2,2,2161,2163],[928,1,1,2163,2164]]]],[956,960,987,1021,1032,1033,1071,1086,1096,1257,1296,1298,1301,1379,1386,1387,1388,1391,1394,1415,1416,1447,1449,1451,1453,1459,1461,1462,1465,1471,1472,1475,1480,1489,1497,1501,1508,1531,1533,1539,1541,1544,1545,1577,1579,1588,1589,1590,1592,1593,1594,1595,1597,1623,1630,1632,1633,1634,1646,1647,1651,1660,1661,1664,1666,1667,1668,1669,1681,1682,1687,1689,1690,1746,1748,1768,1777,1797,1800,1813,1816,1819,1822,1835,1837,1843,1844,1847,1851,1853,1856,1858,1863,1866,1867,1869,1885,1886,1891,1892,1894,1897,1899,1904,1905,1908,1909,1911,1914,1918,1919,1920,1939,1942,1948,1949,1950,1953,1956,1957,1959,1962,1964,1978,1982,1984,1988,1989,1990,1991,1994,2000,2008,2011,2024,2027,2028,2029,2032,2073,2178,2181,2182,2186,2187,2188,2194,2197,2217,2292,2293,2294,2302,2304,2305,2314,2322,2323,2331,2364,2379,2381,2394,2398,2413,2433,2436,2437,2442,2446,2451,2458,2465,2478,2479,2519,2523,2526,2528,2531,2532,2535,2551,2560,2561,2569,2670,2671,2678,2696,2706,2743,2745,2747,2797,2808,2902,2908,2913,2915,2917,2954,2956,2983,2991,2999,3046,3170,3199,3206,3217,3218,3220,3222,3235,3237,3238,3240,3243,3245,3247,3248,3249,3253,3283,3320,3369,3371,3372,3387,3401,3404,3412,3426,3436,3445,3448,3454,3456,3461,3469,3471,3502,3515,3524,3570,3572,3604,3606,3607,3620,3648,3649,3653,3656,3657,3658,3660,3690,3691,3692,3700,3701,3704,3705,3730,3732,3733,3734,3737,3738,3742,3789,3794,3796,3798,3801,3804,3825,3846,3850,3852,3934,3945,3948,3949,3950,3953,3955,3956,3957,3958,3959,3967,3969,3970,3972,3975,3982,3983,3984,3987,3992,4000,4016,4017,4024,4028,4040,4054,4077,4078,4099,4101,4107,4110,4113,4115,4118,4135,4147,4155,4171,4178,4179,4182,4185,4191,4196,4203,4219,4228,4232,4234,4235,4246,4249,4250,4253,4256,4262,4263,4265,4268,4271,4276,4277,4278,4279,4280,4281,4285,4289,4291,4298,4299,4312,4323,4324,4325,4330,4332,4333,4335,4340,4341,4342,4343,4350,4357,4361,4363,4364,4365,4371,4376,4377,4378,4423,4426,4437,4439,4447,4448,4451,4464,4472,4474,4476,4477,4479,4482,4484,4491,4493,4494,4540,4551,4552,4553,4562,4565,4566,4574,4575,4579,4648,4649,4666,4668,4669,4673,4676,4680,4718,4722,4725,4727,4731,4732,4735,4736,4746,4761,4763,4765,4798,4800,4811,4818,4829,4845,4847,4853,4855,4860,4879,4880,4881,4882,4883,4884,4886,4887,4888,4892,4893,4895,4930,4950,4993,5005,5048,5049,5050,5054,5089,5090,5158,5192,5198,5214,5283,5368,5384,5385,5390,5430,5455,5468,5489,5491,5517,5532,5554,5557,5581,5586,5594,5599,5680,5681,5689,5700,5729,5735,5737,5739,5747,5750,5751,5766,5803,5807,5809,5810,5811,5815,5820,5831,5838,5839,5847,5848,5849,5851,5853,5871,5894,5900,5902,5905,5914,5915,5917,5918,5922,5924,5931,5932,5935,5936,5937,5940,5944,5946,5950,5967,5972,5974,5977,5982,5984,5987,5988,5989,5991,5992,5995,5996,5999,6000,6001,6012,6016,6017,6019,6023,6024,6026,6029,6032,6033,6034,6035,6037,6039,6043,6044,6054,6055,6056,6063,6065,6068,6074,6075,6076,6078,6079,6084,6085,6088,6093,6094,6095,6096,6098,6100,6102,6104,6106,6107,6112,6113,6115,6120,6121,6123,6126,6127,6128,6129,6130,6131,6136,6137,6160,6167,6176,6187,6188,6192,6197,6201,6288,6294,6295,6296,6303,6370,6372,6374,6381,6382,6384,6389,6422,6426,6435,6437,6438,6439,6440,6442,6444,6446,6447,6448,6450,6456,6457,6458,6459,6461,6462,6477,6478,6485,6499,6507,6508,6510,6537,6549,6551,6552,6555,6556,6559,6565,6567,6569,6570,6572,6573,6575,6576,6577,6578,6580,6581,6582,6583,6595,6598,6599,6600,6602,6603,6604,6605,6622,6623,6625,6626,6628,6630,6631,6632,6634,6655,6656,6657,6658,6660,6661,6662,6668,6669,6690,6691,6696,6702,6708,6709,6717,6741,6746,6747,6752,6753,6754,6776,6809,6812,6813,6814,6817,6818,6819,6820,6821,6822,6826,6827,6828,6833,6834,6842,6844,6845,6846,6848,6849,6850,6852,6854,6855,6856,6862,6868,6869,6876,6877,6878,6880,6882,6883,6885,6889,6913,6949,6980,6986,6994,7012,7022,7025,7036,7053,7054,7055,7056,7057,7060,7061,7064,7065,7066,7067,7068,7071,7072,7073,7074,7076,7077,7078,7079,7080,7081,7083,7084,7085,7086,7087,7088,7089,7090,7092,7093,7095,7096,7102,7103,7105,7107,7108,7110,7117,7120,7126,7127,7161,7197,7201,7204,7229,7262,7268,7269,7270,7272,7287,7296,7298,7299,7300,7302,7307,7314,7315,7326,7327,7329,7330,7334,7336,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7365,7366,7367,7368,7369,7370,7373,7391,7393,7400,7407,7411,7412,7436,7438,7447,7448,7452,7453,7458,7460,7461,7486,7489,7490,7491,7498,7504,7520,7526,7530,7531,7532,7545,7547,7548,7549,7553,7555,7556,7561,7562,7566,7577,7586,7588,7589,7590,7595,7596,7620,7621,7626,7628,7629,7637,7639,7642,7643,7644,7663,7664,7670,7671,7682,7692,7694,7711,7742,7820,7821,7827,7841,7853,7859,7891,7893,7895,7907,7920,7925,7931,7942,7943,7945,7961,7970,8003,8010,8016,8025,8034,8041,8046,8058,8059,8066,8077,8091,8093,8098,8099,8100,8102,8118,8119,8133,8134,8135,8137,8144,8149,8158,8162,8172,8176,8177,8178,8186,8187,8188,8190,8191,8203,8204,8206,8207,8224,8249,8255,8258,8259,8260,8270,8293,8294,8298,8329,8330,8381,8391,8395,8399,8402,8429,8441,8444,8447,8448,8453,8459,8460,8462,8463,8464,8473,8475,8484,8485,8494,8495,8519,8520,8522,8533,8551,8552,8553,8554,8555,8556,8568,8573,8577,8582,8584,8585,8595,8597,8601,8654,8656,8662,8693,8694,8696,8701,8707,8717,8720,8737,8747,8751,8752,8765,8774,8775,8781,8785,8802,8844,8845,8851,8864,8869,8891,8897,8909,8986,8987,8988,8990,8994,8999,9000,9001,9002,9005,9007,9008,9010,9011,9015,9018,9019,9021,9023,9026,9028,9037,9040,9041,9044,9047,9048,9050,9051,9056,9058,9071,9072,9073,9088,9110,9117,9124,9133,9139,9140,9145,9146,9150,9152,9154,9167,9168,9169,9170,9171,9172,9175,9179,9184,9225,9228,9231,9232,9233,9236,9237,9239,9242,9258,9265,9266,9268,9269,9274,9276,9279,9280,9281,9282,9285,9288,9291,9296,9297,9299,9300,9303,9304,9306,9309,9310,9312,9316,9318,9331,9358,9359,9360,9361,9372,9377,9397,9401,9403,9405,9410,9412,9415,9419,9421,9423,9428,9429,9430,9434,9435,9436,9437,9439,9440,9448,9449,9451,9458,9469,9472,9477,9481,9482,9483,9484,9485,9486,9488,9489,9490,9497,9498,9506,9509,9510,9511,9512,9513,9514,9519,9521,9524,9531,9533,9534,9536,9539,9549,9551,9563,9577,9579,9580,9581,9582,9585,9586,9588,9589,9600,9603,9649,9651,9652,9653,9654,9655,9659,9662,9682,9683,9684,9685,9686,9695,9697,9700,9713,9720,9739,9743,9745,9752,9753,9759,9762,9764,9768,9770,9777,9814,9822,9823,9824,9825,9827,9829,9872,9873,9874,9875,9876,9877,9879,9881,9882,9883,9884,9885,9887,9889,9893,9896,9897,9904,9905,9907,9908,9909,9911,9912,9913,9919,9920,9921,9922,9923,9924,9925,9926,9933,9934,9936,9937,9940,9942,9943,9945,9946,9948,9949,9951,9952,9953,9954,9956,9957,9966,9968,9970,9984,9985,9990,9991,9992,9996,10001,10002,10003,10004,10005,10006,10007,10017,10025,10028,10029,10033,10034,10035,10076,10081,10083,10121,10122,10126,10127,10128,10131,10160,10163,10178,10180,10184,10187,10192,10215,10286,10295,10307,10313,10395,10429,10431,10445,10454,10492,10503,10518,10564,10616,10660,10666,10674,10675,10676,10677,10683,10752,10758,10760,10762,10765,10766,10768,10776,10782,10794,10803,10805,10816,10819,10823,10824,10833,10837,10856,10860,10868,10869,10870,10872,10873,10884,10885,10887,10904,10917,10923,10924,10925,10926,10933,10935,10936,10937,10938,10939,10941,10946,10948,10965,10966,10970,10973,10974,10976,10977,10981,10984,10985,11008,11034,11106,11107,11110,11125,11131,11132,11133,11144,11147,11148,11151,11170,11174,11182,11185,11187,11189,11190,11191,11194,11196,11207,11215,11223,11228,11270,11271,11272,11274,11278,11285,11286,11287,11288,11289,11292,11293,11294,11295,11296,11298,11299,11303,11306,11307,11309,11311,11314,11315,11327,11330,11332,11334,11342,11348,11354,11355,11357,11372,11394,11396,11398,11411,11412,11413,11414,11415,11417,11427,11430,11438,11443,11450,11457,11458,11465,11468,11469,11471,11493,11494,11503,11510,11512,11513,11520,11524,11527,11545,11546,11547,11549,11550,11551,11558,11559,11561,11567,11570,11571,11572,11573,11574,11575,11576,11584,11594,11597,11606,11616,11621,11622,11626,11628,11630,11637,11649,11658,11682,11683,11686,11693,11711,11713,11721,11722,11725,11726,11727,11729,11730,11762,11766,11767,11769,11772,11777,11783,11787,11790,11791,11798,11801,11815,11818,11828,11832,11833,11848,11852,11853,11855,11859,11860,11862,11892,11907,11910,11915,11916,11917,11924,11926,11940,11942,11954,11956,11959,11966,11969,11970,11983,11984,11991,11993,12001,12006,12019,12029,12097,12098,12099,12107,12108,12111,12113,12172,12173,12179,12180,12183,12184,12219,12226,12230,12236,12238,12241,12252,12254,12257,12262,12302,12317,12427,12493,12494,12507,12510,12512,12513,12582,12588,12591,12608,12671,12673,12689,12697,14087,14207,14227,14273,14555,14675,14725,14795,14908,14926,14934,14935,14941,14998,15018,15021,15082,15118,15134,15144,15154,15168,15172,15184,15199,15221,15225,15228,15230,15245,15344,15493,15556,15616,15629,15699,15823,15824,15839,15842,15871,16085,16093,16103,16115,16132,16133,16147,16148,16151,16179,16187,16207,16210,16218,16353,16370,16385,16387,16401,17327,17578,17657,17658,17678,17735,17746,17758,17763,17783,17821,17825,17837,17841,17867,17870,17872,17896,17900,17906,17929,17930,17986,17989,17990,17992,18028,18029,18045,18052,18110,18157,18163,18212,18216,18228,18229,18232,18246,18251,18256,18368,18373,18375,18447,18459,18465,18467,18468,18471,18504,18506,18508,18519,18520,18527,18533,18534,18538,18539,18554,18556,18564,18565,18572,18576,18578,18586,18589,18599,18603,18615,18616,18626,18631,18639,18641,18642,18643,18708,18728,18745,18761,18830,18835,18873,18882,18942,18968,18969,18979,18991,18996,19008,19010,19013,19014,19020,19022,19023,19025,19028,19069,19073,19098,19122,19131,19140,19190,19201,19202,19217,19229,19236,19243,19263,19277,19278,19301,19345,19350,19351,19370,19390,19397,19410,19422,19444,19486,19490,19491,19492,19497,19529,19549,19561,19600,19617,19620,19632,19639,19643,19656,19658,19660,19669,19670,19671,19677,19692,19693,19695,19698,19700,19701,19712,19714,19718,19722,19724,19727,19728,19745,19746,19751,19752,19761,19763,19767,19779,19782,19789,19792,19803,19814,19836,19840,19841,19842,19844,19881,19912,19939,19966,19984,19990,19993,20007,20012,20017,20021,20035,20042,20070,20072,20081,20093,20107,20128,20129,20170,20183,20184,20185,20186,20195,20199,20217,20245,20261,20333,20335,20337,20495,20503,20506,20507,20509,20519,20532,20533,20534,20542,20550,20565,20566,20568,20574,20579,20608,20610,20614,20615,20616,20625,20630,20631,20652,20653,20660,20665,20666,20668,20670,20672,20677,20686,20689,20690,20699,20702,20703,20704,20707,20710,20712,20713,20717,20724,20732,20735,20736,20737,20738,20740,20742,20827,20848,20851,20852,20855,20864,20874,20878,20879,20880,20882,20890,20896,20898,20900,20908,20922,20925,20926,20933,20934,20935,20937,20939,20946,20947,20956,20969,20982,20994,21077,21086,21089,21097,21138,21181,21182,21189,21199,21204,21287,21290,21291,21300,21304,21308,21315,21326,21327,21343,21349,21356,21359,21360,21363,21365,21367,21369,21371,21376,21380,21381,21391,21396,21408,21409,21413,21416,21418,21419,21425,21433,21439,21441,21442,21443,21444,21450,21452,21455,21457,21459,21460,21465,21470,21471,21473,21477,21479,21481,21574,21579,21582,21601,21605,21608,21609,21611,21614,21621,21627,21628,21636,21638,21639,21645,21646,21647,21692,21697,21700,21701,21713,21721,21731,21733,21740,21995,21999,22008,22095,22098,22099,22100,22104,22105,22129,22132,22133,22134,22148,22149,22153,22155,22157,22161,22177,22179,22188,22196,22197,22202,22208,22209,22215,22218,22226,22231,22233,22234,22240,22241,22248,22252,22264,22265,22267,22275,22283,22287,22338,22345,22359,22365,22385,22390,22396,22407,22409,22415,22422,22424,22425,22426,22427,22448,22451,22464,22472,22473,22474,22475,22479,22480,22481,22483,22502,22504,22509,22530,22584,22592,22593,22594,22607,22609,22616,22617,22634,22635,22636,22650,22701,22814,22833,22834,22835,22897,22989,23000,23042,23046,23090,23094,23114,23119,23142]]],["Israel's",[9,8,[[0,2,1,0,1,[[47,2,1,0,1]]],[1,1,1,1,2,[[67,1,1,1,2]]],[3,4,4,2,6,[[117,1,1,2,3],[147,3,3,3,6]]],[4,1,1,6,7,[[173,1,1,6,7]]],[9,1,1,7,8,[[271,1,1,7,8]]]],[1464,2007,3624,4694,4706,4711,5455,8144]]],["Israelites",[16,16,[[1,1,1,0,1,[[58,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[5,4,4,2,6,[[189,1,1,2,3],[194,1,1,3,4],[199,2,2,4,6]]],[6,1,1,6,7,[[230,1,1,6,7]]],[8,5,5,7,12,[[237,1,1,7,8],[248,1,1,8,9],[249,1,1,9,10],[260,1,1,10,11],[264,1,1,11,12]]],[9,1,1,12,13,[[270,1,1,12,13]]],[11,2,2,13,15,[[315,1,1,13,14],[319,1,1,14,15]]],[12,1,1,15,16,[[346,1,1,15,16]]]],[1749,3444,5910,6026,6160,6167,7075,7254,7505,7529,7862,7968,8121,9600,9720,10617]]]]},{"k":"H3479","v":[["Israel",[8,7,[[14,8,7,0,7,[[407,2,2,0,2],[408,4,3,2,5],[409,2,2,5,7]]]],[12135,12145,12165,12167,12168,12186,12188]]]]},{"k":"H3480","v":[["Jesharelah",[1,1,[[12,1,1,0,1,[[362,1,1,0,1]]]],[11060]]]]},{"k":"H3481","v":[["*",[2,2,[[2,1,1,0,1,[[113,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]]],[3456,8474]]],["Israel",[1,1,[[2,1,1,0,1,[[113,1,1,0,1]]]],[3456]]],["Israelite",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8474]]]]},{"k":"H3482","v":[["Israelitish",[3,2,[[2,3,2,0,2,[[113,3,2,0,2]]]],[3456,3457]]]]},{"k":"H3483","v":[["uprightness",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8822]]]]},{"k":"H3484","v":[["*",[4,4,[[4,3,3,0,3,[[184,1,1,0,1],[185,2,2,1,3]]],[22,1,1,3,4,[[722,1,1,3,4]]]],[5773,5815,5836,18535]]],["Jeshurun",[3,3,[[4,3,3,0,3,[[184,1,1,0,1],[185,2,2,1,3]]]],[5773,5815,5836]]],["Jesurun",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18535]]]]},{"k":"H3485","v":[["*",[43,40,[[0,4,4,0,4,[[29,1,1,0,1],[34,1,1,1,2],[45,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[3,11,10,5,15,[[117,3,3,5,8],[118,2,1,8,9],[123,1,1,9,10],[126,1,1,10,11],[129,1,1,11,12],[142,2,2,12,14],[150,1,1,14,15]]],[4,2,2,15,17,[[179,1,1,15,16],[185,1,1,16,17]]],[5,7,6,17,23,[[203,2,2,17,19],[205,3,2,19,21],[207,2,2,21,23]]],[6,3,2,23,25,[[215,2,1,23,24],[220,1,1,24,25]]],[10,2,2,25,27,[[294,1,1,25,26],[305,1,1,26,27]]],[12,9,9,27,36,[[339,1,1,27,28],[343,2,2,28,30],[344,2,2,30,32],[349,2,2,32,34],[363,1,1,34,35],[364,1,1,35,36]]],[13,1,1,36,37,[[396,1,1,36,37]]],[25,3,3,37,40,[[849,3,3,37,40]]]],[848,1034,1399,1487,1535,3612,3632,3633,3663,3868,4003,4082,4512,4514,4842,5597,5828,6285,6286,6338,6344,6387,6409,6638,6812,8861,9276,10307,10516,10526,10536,10540,10752,10760,11082,11127,11845,21727,21728,21735]]],["+",[2,2,[[5,1,1,0,1,[[207,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]]],[6409,10526]]],["Issachar",[41,38,[[0,4,4,0,4,[[29,1,1,0,1],[34,1,1,1,2],[45,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[3,11,10,5,15,[[117,3,3,5,8],[118,2,1,8,9],[123,1,1,9,10],[126,1,1,10,11],[129,1,1,11,12],[142,2,2,12,14],[150,1,1,14,15]]],[4,2,2,15,17,[[179,1,1,15,16],[185,1,1,16,17]]],[5,6,5,17,22,[[203,2,2,17,19],[205,3,2,19,21],[207,1,1,21,22]]],[6,3,2,22,24,[[215,2,1,22,23],[220,1,1,23,24]]],[10,2,2,24,26,[[294,1,1,24,25],[305,1,1,25,26]]],[12,8,8,26,34,[[339,1,1,26,27],[343,1,1,27,28],[344,2,2,28,30],[349,2,2,30,32],[363,1,1,32,33],[364,1,1,33,34]]],[13,1,1,34,35,[[396,1,1,34,35]]],[25,3,3,35,38,[[849,3,3,35,38]]]],[848,1034,1399,1487,1535,3612,3632,3633,3663,3868,4003,4082,4512,4514,4842,5597,5828,6285,6286,6338,6344,6387,6638,6812,8861,9276,10307,10516,10536,10540,10752,10760,11082,11127,11845,21727,21728,21735]]]]},{"k":"H3486","v":[["age",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[12010]]]]},{"k":"H3487","v":[]},{"k":"H3488","v":[["*",[5,5,[[14,2,2,0,2,[[406,2,2,0,2]]],[26,3,3,2,5,[[856,3,3,2,5]]]],[12120,12127,21942,21943,21959]]],["dwell",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12127]]],["set",[2,2,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,1,1,1,2,[[856,1,1,1,2]]]],[12120,21943]]],["sit",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21942,21959]]]]},{"k":"H3489","v":[["*",[24,19,[[1,8,5,0,5,[[76,2,1,0,1],[84,2,1,1,2],[87,3,2,2,4],[88,1,1,4,5]]],[3,2,2,5,7,[[119,1,1,5,6],[120,1,1,6,7]]],[4,1,1,7,8,[[175,1,1,7,8]]],[6,6,4,8,12,[[214,3,2,8,10],[215,1,1,10,11],[226,2,1,11,12]]],[14,1,1,12,13,[[411,1,1,12,13]]],[22,4,4,13,17,[[700,2,2,13,15],[711,1,1,15,16],[732,1,1,16,17]]],[25,1,1,17,18,[[816,1,1,17,18]]],[37,1,1,18,19,[[920,1,1,18,19]]]],[2291,2549,2653,2664,2704,3729,3775,5513,6620,6621,6649,6963,12245,18075,18077,18299,18725,20757,23020]]],["nail",[8,7,[[6,4,3,0,3,[[214,3,2,0,2],[215,1,1,2,3]]],[14,1,1,3,4,[[411,1,1,3,4]]],[22,2,2,4,6,[[700,2,2,4,6]]],[37,1,1,6,7,[[920,1,1,6,7]]]],[6620,6621,6649,12245,18075,18077,23020]]],["paddle",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5513]]],["pin",[3,2,[[6,2,1,0,1,[[226,2,1,0,1]]],[25,1,1,1,2,[[816,1,1,1,2]]]],[6963,20757]]],["pins",[10,7,[[1,8,5,0,5,[[76,2,1,0,1],[84,2,1,1,2],[87,3,2,2,4],[88,1,1,4,5]]],[3,2,2,5,7,[[119,1,1,5,6],[120,1,1,6,7]]]],[2291,2549,2653,2664,2704,3729,3775]]],["stakes",[2,2,[[22,2,2,0,2,[[711,1,1,0,1],[732,1,1,1,2]]]],[18299,18725]]]]},{"k":"H3490","v":[["*",[42,42,[[1,2,2,0,2,[[71,2,2,0,2]]],[4,11,11,2,13,[[162,1,1,2,3],[166,1,1,3,4],[168,2,2,4,6],[176,4,4,6,10],[178,2,2,10,12],[179,1,1,12,13]]],[17,7,7,13,20,[[441,1,1,13,14],[457,1,1,14,15],[459,2,2,15,17],[464,1,1,17,18],[466,2,2,18,20]]],[18,8,8,20,28,[[487,2,2,20,22],[545,1,1,22,23],[559,1,1,23,24],[571,1,1,24,25],[586,2,2,25,27],[623,1,1,27,28]]],[19,1,1,28,29,[[650,1,1,28,29]]],[22,4,4,29,33,[[679,2,2,29,31],[687,1,1,31,32],[688,1,1,32,33]]],[23,4,4,33,37,[[749,1,1,33,34],[751,1,1,34,35],[766,1,1,35,36],[793,1,1,36,37]]],[24,1,1,37,38,[[801,1,1,37,38]]],[25,1,1,38,39,[[823,1,1,38,39]]],[27,1,1,39,40,[[875,1,1,39,40]]],[37,1,1,40,41,[[917,1,1,40,41]]],[38,1,1,41,42,[[927,1,1,41,42]]]],[2135,2137,5204,5319,5353,5356,5542,5544,5545,5546,5578,5579,5604,13005,13398,13439,13445,13544,13605,13609,14055,14059,14905,15236,15437,15764,15767,16350,17054,17671,17677,17846,17852,19086,19125,19457,20138,20445,20983,22285,22972,23125]]],["child",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2135]]],["children",[2,2,[[18,1,1,0,1,[[586,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]]],[15767,20138]]],["fatherless",[38,38,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,11,11,1,12,[[162,1,1,1,2],[166,1,1,2,3],[168,2,2,3,5],[176,4,4,5,9],[178,2,2,9,11],[179,1,1,11,12]]],[17,7,7,12,19,[[441,1,1,12,13],[457,1,1,13,14],[459,2,2,14,16],[464,1,1,16,17],[466,2,2,17,19]]],[18,7,7,19,26,[[487,2,2,19,21],[545,1,1,21,22],[559,1,1,22,23],[571,1,1,23,24],[586,1,1,24,25],[623,1,1,25,26]]],[19,1,1,26,27,[[650,1,1,26,27]]],[22,4,4,27,31,[[679,2,2,27,29],[687,1,1,29,30],[688,1,1,30,31]]],[23,3,3,31,34,[[749,1,1,31,32],[751,1,1,32,33],[766,1,1,33,34]]],[25,1,1,34,35,[[823,1,1,34,35]]],[27,1,1,35,36,[[875,1,1,35,36]]],[37,1,1,36,37,[[917,1,1,36,37]]],[38,1,1,37,38,[[927,1,1,37,38]]]],[2137,5204,5319,5353,5356,5542,5544,5545,5546,5578,5579,5604,13005,13398,13439,13445,13544,13605,13609,14055,14059,14905,15236,15437,15764,16350,17054,17671,17677,17846,17852,19086,19125,19457,20983,22285,22972,23125]]],["orphans",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20445]]]]},{"k":"H3491","v":[["range",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13842]]]]},{"k":"H3492","v":[["Jattir",[4,4,[[5,2,2,0,2,[[201,1,1,0,1],[207,1,1,1,2]]],[8,1,1,2,3,[[265,1,1,2,3]]],[12,1,1,3,4,[[343,1,1,3,4]]]],[6250,6395,8005,10511]]]]},{"k":"H3493","v":[["*",[8,8,[[26,8,8,0,8,[[851,1,1,0,1],[852,1,1,1,2],[853,1,1,2,3],[854,2,2,3,5],[855,1,1,5,6],[856,2,2,6,8]]]],[21789,21829,21873,21886,21888,21908,21940,21952]]],["exceeding",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[856,1,1,1,2]]]],[21829,21952]]],["exceedingly",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21940]]],["excellent",[5,5,[[26,5,5,0,5,[[851,1,1,0,1],[853,1,1,1,2],[854,2,2,2,4],[855,1,1,4,5]]]],[21789,21873,21886,21888,21908]]]]},{"k":"H3494","v":[["Jethlah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6363]]]]},{"k":"H3495","v":[["Ithmah",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10719]]]]},{"k":"H3496","v":[["Jathniel",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11079]]]]},{"k":"H3497","v":[["Ithnan",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6225]]]]},{"k":"H3498","v":[["*",[107,101,[[0,4,4,0,4,[[29,1,1,0,1],[31,1,1,1,2],[43,1,1,2,3],[48,1,1,3,4]]],[1,10,7,4,11,[[59,2,1,4,5],[61,2,1,5,6],[65,2,2,6,8],[77,1,1,8,9],[78,2,1,9,10],[85,1,1,10,11]]],[2,14,13,11,24,[[91,2,2,11,13],[95,1,1,13,14],[96,2,2,14,16],[97,1,1,16,17],[99,3,2,17,19],[103,2,2,19,21],[108,1,1,21,22],[111,1,1,22,23],[116,1,1,23,24]]],[3,2,2,24,26,[[142,1,1,24,25],[149,1,1,25,26]]],[4,3,3,26,29,[[180,2,2,26,28],[182,1,1,28,29]]],[5,10,10,29,39,[[197,2,2,29,31],[203,2,2,31,33],[204,1,1,33,34],[207,5,5,34,39]]],[6,4,4,39,43,[[218,1,1,39,40],[219,1,1,40,41],[231,2,2,41,43]]],[7,2,2,43,45,[[233,2,2,43,45]]],[8,4,4,45,49,[[237,1,1,45,46],[250,1,1,46,47],[260,1,1,47,48],[265,1,1,48,49]]],[9,4,4,49,53,[[274,1,1,49,50],[275,1,1,50,51],[279,1,1,51,52],[283,1,1,52,53]]],[10,9,8,53,61,[[299,2,2,53,55],[305,1,1,55,56],[307,1,1,56,57],[308,1,1,57,58],[309,2,2,58,60],[310,2,1,60,61]]],[11,4,4,61,65,[[316,3,3,61,64],[332,1,1,64,65]]],[12,5,5,65,70,[[343,3,3,65,68],[355,1,1,68,69],[361,1,1,69,70]]],[13,4,3,70,73,[[374,2,2,70,72],[397,2,1,72,73]]],[15,1,1,73,74,[[418,1,1,73,74]]],[18,2,2,74,76,[[556,1,1,74,75],[583,1,1,75,76]]],[19,1,1,76,77,[[629,1,1,76,77]]],[22,6,6,77,83,[[679,2,2,77,79],[682,1,1,79,80],[685,1,1,80,81],[708,1,1,81,82],[717,1,1,82,83]]],[23,5,5,83,88,[[771,3,3,83,86],[778,1,1,86,87],[788,1,1,87,88]]],[25,9,9,88,97,[[807,1,1,88,89],[813,1,1,89,90],[815,1,1,90,91],[835,1,1,91,92],[840,2,2,92,94],[849,3,3,94,97]]],[26,1,1,97,98,[[859,1,1,97,98]]],[29,1,1,98,99,[[884,1,1,98,99]]],[37,2,2,99,101,[[923,1,1,99,100],[924,1,1,100,101]]]],[866,952,1344,1477,1792,1826,1966,1967,2303,2370,2573,2765,2772,2865,2895,2896,2949,2989,2993,3129,3140,3287,3399,3588,4554,4815,5622,5665,5717,6118,6129,6277,6281,6295,6386,6401,6407,6415,6421,6729,6759,7109,7118,7163,7167,7276,7575,7895,7987,8213,8228,8347,8461,9071,9072,9267,9334,9363,9397,9401,9438,9610,9646,9647,10115,10515,10524,10531,10894,11035,11353,11354,11864,12402,15196,15662,16454,17662,17663,17736,17804,18234,18418,19614,19615,19617,19808,20017,20571,20696,20753,21331,21462,21476,21717,21720,21723,22028,22459,23067,23084]]],["+",[1,1,[[13,1,1,0,1,[[397,1,1,0,1]]]],[11864]]],["behind",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7987]]],["excel",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1477]]],["leave",[6,6,[[1,1,1,0,1,[[65,1,1,0,1]]],[2,1,1,1,2,[[111,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[11,1,1,3,4,[[316,1,1,3,4]]],[23,1,1,4,5,[[788,1,1,4,5]]],[25,1,1,5,6,[[813,1,1,5,6]]]],[1966,3399,5665,9646,20017,20696]]],["left",[45,45,[[0,2,2,0,2,[[31,1,1,0,1],[43,1,1,1,2]]],[1,2,2,2,4,[[59,1,1,2,3],[65,1,1,3,4]]],[2,3,3,4,7,[[91,1,1,4,5],[99,2,2,5,7]]],[3,1,1,7,8,[[142,1,1,7,8]]],[5,2,2,8,10,[[197,2,2,8,10]]],[6,2,2,10,12,[[218,1,1,10,11],[219,1,1,11,12]]],[7,1,1,12,13,[[233,1,1,12,13]]],[8,2,2,13,15,[[237,1,1,13,14],[260,1,1,14,15]]],[9,3,3,15,18,[[275,1,1,15,16],[279,1,1,16,17],[283,1,1,17,18]]],[10,7,7,18,25,[[299,2,2,18,20],[305,1,1,20,21],[307,1,1,21,22],[309,2,2,22,24],[310,1,1,24,25]]],[11,2,2,25,27,[[316,1,1,25,26],[332,1,1,26,27]]],[12,1,1,27,28,[[343,1,1,27,28]]],[13,3,3,28,31,[[374,2,2,28,30],[397,1,1,30,31]]],[15,1,1,31,32,[[418,1,1,31,32]]],[18,1,1,32,33,[[583,1,1,32,33]]],[22,5,5,33,38,[[679,2,2,33,35],[685,1,1,35,36],[708,1,1,36,37],[717,1,1,37,38]]],[23,2,2,38,40,[[771,1,1,38,39],[778,1,1,39,40]]],[25,3,3,40,43,[[815,1,1,40,41],[840,1,1,41,42],[849,1,1,42,43]]],[37,2,2,43,45,[[923,1,1,43,44],[924,1,1,44,45]]]],[952,1344,1792,1967,2772,2989,2993,4554,6118,6129,6729,6759,7163,7276,7895,8228,8347,8461,9071,9072,9267,9334,9397,9401,9438,9647,10115,10515,11353,11354,11864,12402,15662,17662,17663,17804,18234,18418,19614,19808,20753,21476,21717,23067,23084]]],["much",[1,1,[[1,1,1,0,1,[[85,1,1,0,1]]]],[2573]]],["plenteous",[2,2,[[4,2,2,0,2,[[180,1,1,0,1],[182,1,1,1,2]]]],[5622,5717]]],["preserve",[1,1,[[18,1,1,0,1,[[556,1,1,0,1]]]],[15196]]],["remain",[13,13,[[1,2,2,0,2,[[61,1,1,0,1],[78,1,1,1,2]]],[2,2,2,2,4,[[108,1,1,2,3],[116,1,1,3,4]]],[3,1,1,4,5,[[149,1,1,4,5]]],[6,2,2,5,7,[[231,2,2,5,7]]],[10,1,1,7,8,[[308,1,1,7,8]]],[19,1,1,8,9,[[629,1,1,8,9]]],[23,2,2,9,11,[[771,2,2,9,11]]],[25,1,1,11,12,[[840,1,1,11,12]]],[29,1,1,12,13,[[884,1,1,12,13]]]],[1826,2370,3287,3588,4815,7109,7118,9363,16454,19615,19617,21462,22459]]],["remainder",[4,4,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,3,3,1,4,[[95,1,1,1,2],[96,2,2,2,4]]]],[2370,2865,2895,2896]]],["remained",[5,5,[[1,1,1,0,1,[[59,1,1,0,1]]],[5,3,3,1,4,[[204,1,1,1,2],[207,2,2,2,4]]],[26,1,1,4,5,[[859,1,1,4,5]]]],[1792,6295,6401,6407,22028]]],["remaineth",[4,4,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,2,2,1,3,[[97,1,1,1,2],[99,1,1,2,3]]],[22,1,1,3,4,[[682,1,1,3,4]]]],[1826,2949,2989,17736]]],["remaining",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6421]]],["remnant",[4,4,[[2,2,2,0,2,[[91,1,1,0,1],[103,1,1,1,2]]],[12,1,1,2,3,[[343,1,1,2,3]]],[25,1,1,3,4,[[807,1,1,3,4]]]],[2765,3129,10524,20571]]],["reserved",[3,3,[[7,1,1,0,1,[[233,1,1,0,1]]],[9,1,1,1,2,[[274,1,1,1,2]]],[12,1,1,2,3,[[355,1,1,2,3]]]],[7167,8213,10894]]],["residue",[3,3,[[25,3,3,0,3,[[835,1,1,0,1],[849,2,2,1,3]]]],[21331,21720,21723]]],["rest",[12,12,[[0,1,1,0,1,[[29,1,1,0,1]]],[1,1,1,1,2,[[77,1,1,1,2]]],[2,1,1,2,3,[[103,1,1,2,3]]],[5,4,4,3,7,[[203,2,2,3,5],[207,2,2,5,7]]],[8,1,1,7,8,[[250,1,1,7,8]]],[10,1,1,8,9,[[310,1,1,8,9]]],[11,1,1,9,10,[[316,1,1,9,10]]],[12,2,2,10,12,[[343,1,1,10,11],[361,1,1,11,12]]]],[866,2303,3140,6277,6281,6386,6415,7575,9438,9610,10531,11035]]]]},{"k":"H3499","v":[["*",[101,95,[[0,2,1,0,1,[[48,2,1,0,1]]],[1,2,2,1,3,[[59,1,1,1,2],[72,1,1,2,3]]],[2,1,1,3,4,[[103,1,1,3,4]]],[3,1,1,4,5,[[147,1,1,4,5]]],[4,3,3,5,8,[[155,2,2,5,7],[180,1,1,7,8]]],[5,4,4,8,12,[[198,1,1,8,9],[199,2,2,9,11],[209,1,1,11,12]]],[6,4,4,12,16,[[217,1,1,12,13],[226,3,3,13,16]]],[8,1,1,16,17,[[248,1,1,16,17]]],[9,3,3,17,20,[[276,1,1,17,18],[278,1,1,18,19],[287,1,1,19,20]]],[10,14,14,20,34,[[301,1,1,20,21],[302,1,1,21,22],[304,2,2,22,24],[305,3,3,24,27],[306,4,4,27,31],[312,3,3,31,34]]],[11,24,23,34,57,[[313,1,1,34,35],[320,1,1,35,36],[322,1,1,36,37],[324,1,1,37,38],[325,2,2,38,40],[326,3,3,40,43],[327,7,7,43,50],[328,1,1,50,51],[332,1,1,51,52],[333,2,2,52,54],[335,1,1,54,55],[336,1,1,55,56],[337,2,1,56,57]]],[12,1,1,57,58,[[356,1,1,57,58]]],[13,10,10,58,68,[[379,1,1,58,59],[386,1,1,59,60],[391,1,1,60,61],[392,1,1,61,62],[393,1,1,62,63],[394,1,1,63,64],[398,1,1,64,65],[399,1,1,65,66],[401,1,1,66,67],[402,1,1,67,68]]],[15,5,5,68,73,[[414,1,1,68,69],[416,2,2,69,71],[418,2,2,71,73]]],[17,3,3,73,76,[[439,1,1,73,74],[457,1,1,74,75],[465,1,1,75,76]]],[18,3,3,76,79,[[488,1,1,76,77],[494,1,1,77,78],[508,1,1,78,79]]],[19,1,1,79,80,[[644,1,1,79,80]]],[22,3,3,80,83,[[716,1,1,80,81],[722,1,1,81,82],[734,1,1,82,83]]],[23,6,4,83,87,[[771,1,1,83,84],[773,1,1,84,85],[783,2,1,85,86],[796,2,1,86,87]]],[25,2,2,87,89,[[835,1,1,87,88],[849,1,1,88,89]]],[26,1,1,89,90,[[857,1,1,89,90]]],[28,3,1,90,91,[[876,3,1,90,91]]],[32,1,1,91,92,[[897,1,1,91,92]]],[34,1,1,92,93,[[904,1,1,92,93]]],[35,1,1,93,94,[[907,1,1,93,94]]],[37,1,1,94,95,[[924,1,1,94,95]]]],[1476,1782,2155,3128,4696,4986,4988,5665,6134,6166,6181,6472,6700,6956,6957,6958,7487,8250,8314,8582,9149,9174,9237,9247,9256,9272,9280,9288,9297,9303,9310,9519,9525,9526,9551,9750,9827,9869,9879,9883,9911,9914,9924,9931,9936,9940,9946,9951,9956,9961,9982,10118,10136,10144,10193,10207,10233,10918,11475,11621,11730,11754,11762,11790,11907,11926,11992,12001,12323,12373,12378,12402,12415,12951,13409,13568,14061,14117,14354,16880,18400,18552,18765,19615,19636,19932,20291,21331,21725,21970,22295,22636,22756,22814,23070]]],["+",[8,8,[[2,1,1,0,1,[[103,1,1,0,1]]],[4,1,1,1,2,[[155,1,1,1,2]]],[5,2,2,2,4,[[198,1,1,2,3],[199,1,1,3,4]]],[9,1,1,4,5,[[287,1,1,4,5]]],[18,1,1,5,6,[[508,1,1,5,6]]],[22,1,1,6,7,[[734,1,1,6,7]]],[26,1,1,7,8,[[857,1,1,7,8]]]],[3128,4986,6134,6166,8582,14354,18765,21970]]],["Excellent",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16880]]],["cord",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13568]]],["excellency",[3,2,[[0,2,1,0,1,[[48,2,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]]],[1476,12951]]],["leave",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2155]]],["left",[3,1,[[28,3,1,0,1,[[876,3,1,0,1]]]],[22295]]],["remnant",[10,10,[[4,1,1,0,1,[[180,1,1,0,1]]],[5,1,1,1,2,[[209,1,1,1,2]]],[10,2,2,2,4,[[302,1,1,2,3],[312,1,1,3,4]]],[11,1,1,4,5,[[337,1,1,4,5]]],[17,1,1,5,6,[[457,1,1,5,6]]],[23,1,1,6,7,[[783,1,1,6,7]]],[32,1,1,7,8,[[897,1,1,7,8]]],[34,1,1,8,9,[[904,1,1,8,9]]],[35,1,1,9,10,[[907,1,1,9,10]]]],[5665,6472,9174,9526,10233,13409,19932,22636,22756,22814]]],["residue",[8,8,[[1,1,1,0,1,[[59,1,1,0,1]]],[22,2,2,1,3,[[716,1,1,1,2],[722,1,1,2,3]]],[23,3,3,3,6,[[771,1,1,3,4],[773,1,1,4,5],[796,1,1,5,6]]],[25,1,1,6,7,[[835,1,1,6,7]]],[37,1,1,7,8,[[924,1,1,7,8]]]],[1782,18400,18552,19615,19636,20291,21331,23070]]],["rest",[62,62,[[3,1,1,0,1,[[147,1,1,0,1]]],[4,1,1,1,2,[[155,1,1,1,2]]],[5,1,1,2,3,[[199,1,1,2,3]]],[6,1,1,3,4,[[217,1,1,3,4]]],[8,1,1,4,5,[[248,1,1,4,5]]],[9,2,2,5,7,[[276,1,1,5,6],[278,1,1,6,7]]],[10,12,12,7,19,[[301,1,1,7,8],[304,2,2,8,10],[305,3,3,10,13],[306,4,4,13,17],[312,2,2,17,19]]],[11,23,23,19,42,[[313,1,1,19,20],[320,1,1,20,21],[322,1,1,21,22],[324,1,1,22,23],[325,2,2,23,25],[326,3,3,25,28],[327,7,7,28,35],[328,1,1,35,36],[332,1,1,36,37],[333,2,2,37,39],[335,1,1,39,40],[336,1,1,40,41],[337,1,1,41,42]]],[12,1,1,42,43,[[356,1,1,42,43]]],[13,10,10,43,53,[[379,1,1,43,44],[386,1,1,44,45],[391,1,1,45,46],[392,1,1,46,47],[393,1,1,47,48],[394,1,1,48,49],[398,1,1,49,50],[399,1,1,50,51],[401,1,1,51,52],[402,1,1,52,53]]],[15,5,5,53,58,[[414,1,1,53,54],[416,2,2,54,56],[418,2,2,56,58]]],[18,1,1,58,59,[[494,1,1,58,59]]],[23,2,2,59,61,[[783,1,1,59,60],[796,1,1,60,61]]],[25,1,1,61,62,[[849,1,1,61,62]]]],[4696,4988,6181,6700,7487,8250,8314,9149,9237,9247,9256,9272,9280,9288,9297,9303,9310,9519,9525,9551,9750,9827,9869,9879,9883,9911,9914,9924,9931,9936,9940,9946,9951,9956,9961,9982,10118,10136,10144,10193,10207,10233,10918,11475,11621,11730,11754,11762,11790,11907,11926,11992,12001,12323,12373,12378,12402,12415,14117,19932,20291,21725]]],["string",[1,1,[[18,1,1,0,1,[[488,1,1,0,1]]]],[14061]]],["withs",[3,3,[[6,3,3,0,3,[[226,3,3,0,3]]]],[6956,6957,6958]]]]},{"k":"H3500","v":[["Jether",[8,7,[[6,1,1,0,1,[[218,1,1,0,1]]],[10,2,2,1,3,[[292,2,2,1,3]]],[12,5,4,3,7,[[339,3,2,3,5],[341,1,1,5,6],[344,1,1,6,7]]]],[6739,8775,8802,10323,10338,10402,10573]]]]},{"k":"H3501","v":[["Ithra",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8474]]]]},{"k":"H3502","v":[["*",[2,2,[[22,1,1,0,1,[[693,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[17967,20116]]],["abundance",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17967]]],["riches",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20116]]]]},{"k":"H3503","v":[["Jethro",[10,9,[[1,10,9,0,9,[[52,1,1,0,1],[53,2,1,1,2],[67,7,7,2,9]]]],[1580,1619,2000,2001,2004,2005,2008,2009,2011]]]]},{"k":"H3504","v":[["*",[10,9,[[20,10,9,0,9,[[659,1,1,0,1],[660,3,2,1,3],[661,1,1,3,4],[663,2,2,4,6],[665,1,1,6,7],[668,2,2,7,9]]]],[17318,17344,17346,17368,17406,17413,17441,17503,17504]]],["better",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17504]]],["excellency",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17441]]],["excelleth",[2,1,[[20,2,1,0,1,[[660,2,1,0,1]]]],[17346]]],["profit",[5,5,[[20,5,5,0,5,[[659,1,1,0,1],[660,1,1,1,2],[661,1,1,2,3],[663,2,2,3,5]]]],[17318,17344,17368,17406,17413]]],["profitable",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17503]]]]},{"k":"H3505","v":[["*",[5,3,[[9,2,1,0,1,[[289,2,1,0,1]]],[12,3,2,1,3,[[339,1,1,1,2],[348,2,1,2,3]]]],[8691,10359,10713]]],["Ithrite",[4,2,[[9,2,1,0,1,[[289,2,1,0,1]]],[12,2,1,1,2,[[348,2,1,1,2]]]],[8691,10713]]],["Ithrites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10359]]]]},{"k":"H3506","v":[["Ithran",[3,3,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,2,2,1,3,[[338,1,1,1,2],[344,1,1,2,3]]]],[1066,10293,10572]]]]},{"k":"H3507","v":[["Ithream",[2,2,[[9,1,1,0,1,[[269,1,1,0,1]]],[12,1,1,1,2,[[340,1,1,1,2]]]],[8086,10364]]]]},{"k":"H3508","v":[["caul",[11,11,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,9,9,2,11,[[92,3,3,2,5],[93,1,1,5,6],[96,1,1,6,7],[97,2,2,7,9],[98,2,2,9,11]]]],[2349,2358,2782,2788,2793,2804,2883,2933,2942,2963,2972]]]]},{"k":"H3509","v":[["Jetheth",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1080,10303]]]]},{"k":"H3510","v":[["*",[8,8,[[0,1,1,0,1,[[33,1,1,0,1]]],[11,1,1,1,2,[[315,1,1,1,2]]],[17,2,2,2,4,[[440,1,1,2,3],[449,1,1,3,4]]],[18,1,1,4,5,[[546,1,1,4,5]]],[19,1,1,5,6,[[641,1,1,5,6]]],[25,2,2,6,8,[[814,1,1,6,7],[829,1,1,7,8]]]],[1005,9595,12969,13203,14964,16785,20730,21181]]],["grieving",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21181]]],["mar",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9595]]],["pain",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13203]]],["sad",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20730]]],["sore",[2,2,[[0,1,1,0,1,[[33,1,1,0,1]]],[17,1,1,1,2,[[440,1,1,1,2]]]],[1005,12969]]],["sorrowful",[2,2,[[18,1,1,0,1,[[546,1,1,0,1]]],[19,1,1,1,2,[[641,1,1,1,2]]]],[14964,16785]]]]},{"k":"H3511","v":[["*",[6,6,[[17,2,2,0,2,[[437,1,1,0,1],[451,1,1,1,2]]],[18,1,1,2,3,[[516,1,1,2,3]]],[22,2,2,3,5,[[695,1,1,3,4],[743,1,1,4,5]]],[23,1,1,5,6,[[759,1,1,5,6]]]],[12904,13244,14514,17994,18911,19333]]],["+",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18911]]],["grief",[2,2,[[17,2,2,0,2,[[437,1,1,0,1],[451,1,1,1,2]]]],[12904,13244]]],["pain",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19333]]],["sorrow",[2,2,[[18,1,1,0,1,[[516,1,1,0,1]]],[22,1,1,1,2,[[695,1,1,1,2]]]],[14514,17994]]]]},{"k":"H3512","v":[["*",[3,3,[[18,1,1,0,1,[[586,1,1,0,1]]],[25,1,1,1,2,[[814,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[15771,20730,22066]]],["broken",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15771]]],["grieved",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22066]]],["sad",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20730]]]]},{"k":"H3513","v":[["*",[114,107,[[0,3,3,0,3,[[17,1,1,0,1],[33,1,1,1,2],[47,1,1,2,3]]],[1,10,10,3,13,[[54,1,1,3,4],[57,2,2,4,6],[58,2,2,6,8],[59,1,1,8,9],[63,3,3,9,12],[69,1,1,12,13]]],[2,1,1,13,14,[[99,1,1,13,14]]],[3,6,4,14,18,[[138,4,3,14,17],[140,2,1,17,18]]],[4,2,2,18,20,[[157,1,1,18,19],[180,1,1,19,20]]],[6,4,4,20,24,[[211,1,1,20,21],[219,1,1,21,22],[223,1,1,22,23],[230,1,1,23,24]]],[8,11,9,24,33,[[237,3,2,24,26],[240,2,2,26,28],[241,2,1,28,29],[244,1,1,29,30],[250,1,1,30,31],[257,1,1,31,32],[266,1,1,32,33]]],[9,7,7,33,40,[[272,2,2,33,35],[276,1,1,35,36],[279,1,1,36,37],[280,1,1,37,38],[289,2,2,38,40]]],[10,2,2,40,42,[[302,2,2,40,42]]],[11,1,1,42,43,[[326,1,1,42,43]]],[12,5,5,43,48,[[341,1,1,43,44],[347,1,1,44,45],[348,2,2,45,47],[356,1,1,47,48]]],[13,3,3,48,51,[[376,2,2,48,50],[391,1,1,50,51]]],[15,2,2,51,53,[[417,2,2,51,53]]],[17,4,4,53,57,[[441,1,1,53,54],[449,1,1,54,55],[458,1,1,55,56],[468,1,1,56,57]]],[18,11,11,57,68,[[492,1,1,57,58],[499,1,1,58,59],[509,1,1,59,60],[515,1,1,60,61],[527,2,2,61,63],[563,2,2,63,65],[564,1,1,65,66],[568,1,1,66,67],[626,1,1,67,68]]],[19,7,7,68,75,[[630,1,1,68,69],[631,1,1,69,70],[635,1,1,70,71],[639,1,1,71,72],[640,1,1,72,73],[641,1,1,73,74],[654,1,1,74,75]]],[22,20,19,75,94,[[681,1,1,75,76],[684,1,1,76,77],[687,1,1,77,78],[701,2,2,78,80],[702,2,2,80,82],[703,1,1,82,83],[704,1,1,83,84],[707,1,1,84,85],[721,3,3,85,88],[725,1,1,88,89],[727,1,1,89,90],[736,2,1,90,91],[737,1,1,91,92],[738,1,1,92,93],[744,1,1,93,94]]],[23,1,1,94,95,[[774,1,1,94,95]]],[24,2,2,95,97,[[797,1,1,95,96],[799,1,1,96,97]]],[25,3,3,97,100,[[828,1,1,97,98],[829,1,1,98,99],[840,1,1,99,100]]],[26,2,1,100,101,[[860,2,1,100,101]]],[33,3,2,101,103,[[902,3,2,101,103]]],[34,1,1,103,104,[[904,1,1,103,104]]],[36,1,1,104,105,[[909,1,1,104,105]]],[37,1,1,105,106,[[917,1,1,105,106]]],[38,1,1,106,107,[[925,1,1,106,107]]]],[444,999,1461,1641,1725,1742,1749,1776,1778,1893,1906,1907,2063,2980,4390,4392,4412,4457,5069,5669,6544,6763,6901,7088,7269,7270,7325,7330,7337,7397,7590,7801,8012,8177,8179,8243,8342,8382,8672,8676,9161,9165,9906,10394,10662,10694,10698,10910,11405,11409,11723,12397,12400,12981,13202,13421,13657,14091,14227,14359,14494,14683,14691,15293,15296,15304,15410,16393,16464,16498,16626,16728,16765,16803,17187,17712,17779,17830,18085,18086,18110,18115,18121,18145,18206,18509,18525,18528,18605,18641,18799,18801,18834,18927,19686,20318,20361,21146,21179,21461,22074,22722,22727,22754,22848,22973,23095]]],["+",[22,19,[[1,5,5,0,5,[[54,1,1,0,1],[57,2,2,1,3],[59,1,1,3,4],[69,1,1,4,5]]],[3,4,2,5,7,[[138,2,1,5,6],[140,2,1,6,7]]],[4,1,1,7,8,[[157,1,1,7,8]]],[8,3,2,8,10,[[237,1,1,8,9],[241,2,1,9,10]]],[9,1,1,10,11,[[276,1,1,10,11]]],[12,1,1,11,12,[[356,1,1,11,12]]],[13,2,2,12,14,[[376,2,2,12,14]]],[19,2,2,14,16,[[630,1,1,14,15],[639,1,1,15,16]]],[24,1,1,16,17,[[799,1,1,16,17]]],[25,1,1,17,18,[[828,1,1,17,18]]],[34,1,1,18,19,[[904,1,1,18,19]]]],[1641,1725,1742,1778,2063,4392,4457,5069,7269,7337,8243,10910,11405,11409,16464,16728,20361,21146,22754]]],["abounding",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16626]]],["afflict",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17830]]],["boast",[1,1,[[13,1,1,0,1,[[391,1,1,0,1]]]],[11723]]],["chargeable",[2,2,[[9,1,1,0,1,[[279,1,1,0,1]]],[15,1,1,1,2,[[417,1,1,1,2]]]],[8342,12397]]],["dim",[1,1,[[0,1,1,0,1,[[47,1,1,0,1]]]],[1461]]],["glorified",[6,6,[[2,1,1,0,1,[[99,1,1,0,1]]],[22,2,2,1,3,[[704,1,1,1,2],[744,1,1,2,3]]],[25,2,2,3,5,[[829,1,1,3,4],[840,1,1,4,5]]],[36,1,1,5,6,[[909,1,1,5,6]]]],[2980,18145,18927,21179,21461,22848]]],["glorifieth",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14691]]],["glorify",[7,7,[[18,4,4,0,4,[[499,1,1,0,1],[527,1,1,1,2],[563,2,2,2,4]]],[22,2,2,4,6,[[702,1,1,4,5],[703,1,1,5,6]]],[23,1,1,6,7,[[774,1,1,6,7]]]],[14227,14683,15293,15296,18110,18121,19686]]],["glorious",[4,4,[[4,1,1,0,1,[[180,1,1,0,1]]],[9,1,1,1,2,[[272,1,1,1,2]]],[22,2,2,2,4,[[727,1,1,2,3],[738,1,1,3,4]]]],[5669,8177,18641,18834]]],["glory",[1,1,[[11,1,1,0,1,[[326,1,1,0,1]]]],[9906]]],["grievous",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[444]]],["hardened",[2,2,[[1,2,2,0,2,[[58,2,2,0,2]]]],[1749,1776]]],["heavier",[2,2,[[17,2,2,0,2,[[441,1,1,0,1],[458,1,1,1,2]]]],[12981,13421]]],["heavy",[12,12,[[8,2,2,0,2,[[240,2,2,0,2]]],[9,1,1,2,3,[[280,1,1,2,3]]],[10,2,2,3,5,[[302,2,2,3,5]]],[15,1,1,5,6,[[417,1,1,5,6]]],[17,1,1,6,7,[[468,1,1,6,7]]],[18,2,2,7,9,[[509,1,1,7,8],[515,1,1,8,9]]],[22,3,3,9,12,[[684,1,1,9,10],[702,1,1,10,11],[737,1,1,11,12]]]],[7325,7330,8382,9161,9165,12400,13657,14359,14494,17779,18115,18801]]],["honour",[17,15,[[1,2,2,0,2,[[63,2,2,0,2]]],[3,1,1,2,3,[[138,1,1,2,3]]],[6,2,2,3,5,[[219,1,1,3,4],[223,1,1,4,5]]],[8,3,2,5,7,[[237,2,1,5,6],[250,1,1,6,7]]],[9,1,1,7,8,[[272,1,1,7,8]]],[17,1,1,8,9,[[449,1,1,8,9]]],[18,1,1,9,10,[[568,1,1,9,10]]],[19,1,1,10,11,[[631,1,1,10,11]]],[22,3,3,11,14,[[707,1,1,11,12],[721,1,1,12,13],[736,1,1,13,14]]],[26,2,1,14,15,[[860,2,1,14,15]]]],[1906,1907,4412,6763,6901,7270,7590,8179,13202,15410,16498,18206,18525,18799,22074]]],["honourable",[14,14,[[0,1,1,0,1,[[33,1,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]],[8,2,2,2,4,[[244,1,1,2,3],[257,1,1,3,4]]],[9,2,2,4,6,[[289,2,2,4,6]]],[12,3,3,6,9,[[341,1,1,6,7],[348,2,2,7,9]]],[22,5,5,9,14,[[681,1,1,9,10],[701,2,2,10,12],[721,1,1,12,13],[736,1,1,13,14]]]],[999,4390,7397,7801,8672,8676,10394,10694,10698,17712,18085,18086,18509,18799]]],["honoured",[5,5,[[1,1,1,0,1,[[63,1,1,0,1]]],[19,2,2,1,3,[[640,1,1,1,2],[654,1,1,2,3]]],[22,1,1,3,4,[[721,1,1,3,4]]],[24,1,1,4,5,[[797,1,1,4,5]]]],[1893,16765,17187,18528,20318]]],["honoureth",[3,3,[[18,1,1,0,1,[[492,1,1,0,1]]],[19,1,1,1,2,[[641,1,1,1,2]]],[38,1,1,2,3,[[925,1,1,2,3]]]],[14091,16803,23095]]],["laid",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18605]]],["many",[2,1,[[33,2,1,0,1,[[902,2,1,0,1]]]],[22727]]],["men",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22722]]],["nobles",[1,1,[[18,1,1,0,1,[[626,1,1,0,1]]]],[16393]]],["prevailed",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6544]]],["sore",[3,3,[[6,1,1,0,1,[[230,1,1,0,1]]],[8,1,1,1,2,[[266,1,1,1,2]]],[12,1,1,2,3,[[347,1,1,2,3]]]],[7088,8012,10662]]],["stopped",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22973]]],["things",[1,1,[[18,1,1,0,1,[[564,1,1,0,1]]]],[15304]]]]},{"k":"H3514","v":[["*",[4,4,[[19,1,1,0,1,[[654,1,1,0,1]]],[22,2,2,1,3,[[699,1,1,1,2],[708,1,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[17172,18050,18244,22715]]],["grievousness",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18050]]],["heavy",[2,2,[[19,1,1,0,1,[[654,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]]],[17172,18244]]],["number",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22715]]]]},{"k":"H3515","v":[["*",[40,39,[[0,9,9,0,9,[[11,1,1,0,1],[12,1,1,1,2],[40,1,1,2,3],[42,1,1,3,4],[46,2,2,4,6],[49,3,3,6,9]]],[1,12,11,9,20,[[53,2,1,9,10],[56,1,1,10,11],[57,1,1,11,12],[58,3,3,12,15],[59,1,1,15,16],[61,1,1,16,17],[66,1,1,17,18],[67,1,1,18,19],[68,1,1,19,20]]],[3,2,2,20,22,[[127,1,1,20,21],[136,1,1,21,22]]],[8,1,1,22,23,[[239,1,1,22,23]]],[10,4,4,23,27,[[293,1,1,23,24],[300,1,1,24,25],[302,2,2,25,27]]],[11,2,2,27,29,[[318,1,1,27,28],[330,1,1,28,29]]],[13,3,3,29,32,[[375,1,1,29,30],[376,2,2,30,32]]],[18,1,1,32,33,[[515,1,1,32,33]]],[19,1,1,33,34,[[654,1,1,33,34]]],[22,3,3,34,37,[[679,1,1,34,35],[710,1,1,35,36],[714,1,1,36,37]]],[25,2,2,37,39,[[804,2,2,37,39]]]],[308,320,1226,1291,1424,1433,1515,1516,1517,1611,1699,1734,1745,1760,1766,1791,1854,1995,2017,2042,4038,4331,7315,8825,9081,9155,9162,9688,10041,11365,11399,11406,14494,17172,17658,18261,18332,20507,20508]]],["+",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8825]]],["great",[7,7,[[0,1,1,0,1,[[49,1,1,0,1]]],[10,1,1,1,2,[[300,1,1,1,2]]],[11,2,2,2,4,[[318,1,1,2,3],[330,1,1,3,4]]],[13,1,1,4,5,[[375,1,1,4,5]]],[22,2,2,5,7,[[710,1,1,5,6],[714,1,1,6,7]]]],[1515,9081,9688,10041,11365,18261,18332]]],["grievous",[8,8,[[0,3,3,0,3,[[11,1,1,0,1],[40,1,1,1,2],[49,1,1,2,3]]],[1,5,5,3,8,[[57,1,1,3,4],[58,3,3,4,7],[59,1,1,7,8]]]],[308,1226,1517,1734,1745,1760,1766,1791]]],["hard",[2,2,[[25,2,2,0,2,[[804,2,2,0,2]]]],[20507,20508]]],["hardened",[1,1,[[1,1,1,0,1,[[56,1,1,0,1]]]],[1699]]],["heavier",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17172]]],["heavy",[9,9,[[1,2,2,0,2,[[66,1,1,0,1],[67,1,1,1,2]]],[3,1,1,2,3,[[127,1,1,2,3]]],[8,1,1,3,4,[[239,1,1,3,4]]],[10,2,2,4,6,[[302,2,2,4,6]]],[13,2,2,6,8,[[376,2,2,6,8]]],[18,1,1,8,9,[[515,1,1,8,9]]]],[1995,2017,4038,7315,9155,9162,11399,11406,14494]]],["laden",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17658]]],["much",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[136,1,1,1,2]]]],[1854,4331]]],["rich",[1,1,[[0,1,1,0,1,[[12,1,1,0,1]]]],[320]]],["slow",[2,1,[[1,2,1,0,1,[[53,2,1,0,1]]]],[1611]]],["sore",[4,4,[[0,4,4,0,4,[[42,1,1,0,1],[46,2,2,1,3],[49,1,1,3,4]]]],[1291,1424,1433,1516]]],["thick",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2042]]]]},{"k":"H3516","v":[["liver",[14,14,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,9,9,2,11,[[92,3,3,2,5],[93,1,1,5,6],[96,1,1,6,7],[97,2,2,7,9],[98,2,2,9,11]]],[19,1,1,11,12,[[634,1,1,11,12]]],[24,1,1,12,13,[[798,1,1,12,13]]],[25,1,1,13,14,[[822,1,1,13,14]]]],[2349,2358,2782,2788,2793,2804,2883,2933,2942,2963,2972,16598,20343,20965]]]]},{"k":"H3517","v":[["heavily",[1,1,[[1,1,1,0,1,[[63,1,1,0,1]]]],[1914]]]]},{"k":"H3518","v":[["*",[24,24,[[2,2,2,0,2,[[95,2,2,0,2]]],[8,1,1,2,3,[[238,1,1,2,3]]],[9,2,2,3,5,[[280,1,1,3,4],[287,1,1,4,5]]],[11,1,1,5,6,[[334,1,1,5,6]]],[13,2,2,6,8,[[395,1,1,6,7],[400,1,1,7,8]]],[19,2,2,8,10,[[653,1,1,8,9],[658,1,1,9,10]]],[21,1,1,10,11,[[678,1,1,10,11]]],[22,5,5,11,16,[[679,1,1,11,12],[712,1,1,12,13],[720,1,1,13,14],[721,1,1,14,15],[744,1,1,15,16]]],[23,4,4,16,20,[[748,1,1,16,17],[751,1,1,17,18],[761,1,1,18,19],[765,1,1,19,20]]],[25,3,3,20,23,[[821,2,2,20,22],[833,1,1,22,23]]],[29,1,1,23,24,[[883,1,1,23,24]]]],[2861,2862,7279,8363,8597,10162,11798,11958,17161,17302,17647,17685,18313,18483,18522,18946,19031,19139,19384,19452,20942,20943,21255,22429]]],["+",[3,3,[[9,1,1,0,1,[[280,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]],[19,1,1,2,3,[[658,1,1,2,3]]]],[8363,11798,17302]]],["out",[5,5,[[2,2,2,0,2,[[95,2,2,0,2]]],[8,1,1,2,3,[[238,1,1,2,3]]],[19,1,1,3,4,[[653,1,1,3,4]]],[25,1,1,4,5,[[833,1,1,4,5]]]],[2861,2862,7279,17161,21255]]],["quench",[7,7,[[9,1,1,0,1,[[287,1,1,0,1]]],[21,1,1,1,2,[[678,1,1,1,2]]],[22,2,2,2,4,[[679,1,1,2,3],[720,1,1,3,4]]],[23,2,2,4,6,[[748,1,1,4,5],[765,1,1,5,6]]],[29,1,1,6,7,[[883,1,1,6,7]]]],[8597,17647,17685,18483,19031,19452,22429]]],["quenched",[9,9,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]],[22,3,3,2,5,[[712,1,1,2,3],[721,1,1,3,4],[744,1,1,4,5]]],[23,2,2,5,7,[[751,1,1,5,6],[761,1,1,6,7]]],[25,2,2,7,9,[[821,2,2,7,9]]]],[10162,11958,18313,18522,18946,19139,19384,20942,20943]]]]},{"k":"H3519","v":[["*",[200,189,[[0,3,3,0,3,[[30,1,1,0,1],[44,1,1,1,2],[48,1,1,2,3]]],[1,11,11,3,14,[[65,2,2,3,5],[73,2,2,5,7],[77,2,2,7,9],[78,1,1,9,10],[82,2,2,10,12],[89,2,2,12,14]]],[2,2,2,14,16,[[98,2,2,14,16]]],[3,7,7,16,23,[[130,3,3,16,19],[132,2,2,19,21],[136,1,1,21,22],[140,1,1,22,23]]],[4,1,1,23,24,[[157,1,1,23,24]]],[5,1,1,24,25,[[193,1,1,24,25]]],[8,4,4,25,29,[[237,1,1,25,26],[239,2,2,26,28],[241,1,1,28,29]]],[10,2,2,29,31,[[293,1,1,29,30],[298,1,1,30,31]]],[12,6,6,31,37,[[353,3,3,31,34],[354,1,1,34,35],[366,2,2,35,37]]],[13,11,11,37,48,[[367,2,2,37,39],[371,1,1,39,40],[373,3,3,40,43],[383,1,1,43,44],[384,1,1,44,45],[392,1,1,45,46],[398,2,2,46,48]]],[15,1,1,48,49,[[421,1,1,48,49]]],[16,2,2,49,51,[[426,1,1,49,50],[430,1,1,50,51]]],[17,2,2,51,53,[[454,1,1,51,52],[464,1,1,52,53]]],[18,51,48,53,101,[[480,1,1,53,54],[481,1,1,54,55],[484,1,1,55,56],[485,1,1,56,57],[493,1,1,57,58],[496,1,1,58,59],[498,1,1,59,60],[501,5,4,60,64],[503,1,1,64,65],[506,4,4,65,69],[507,1,1,69,70],[526,2,2,70,72],[534,3,3,72,75],[539,1,1,75,76],[540,1,1,76,77],[543,2,1,77,78],[549,2,1,78,79],[550,1,1,79,80],[556,1,1,80,81],[561,1,1,81,82],[562,1,1,82,83],[573,3,3,83,86],[574,1,1,86,87],[579,2,2,87,89],[581,1,1,89,90],[583,1,1,90,91],[585,2,2,91,93],[589,1,1,93,94],[590,1,1,94,95],[592,1,1,95,96],[615,1,1,96,97],[622,3,3,97,100],[626,1,1,100,101]]],[19,16,14,101,115,[[630,2,2,101,103],[635,1,1,103,104],[638,1,1,104,105],[642,1,1,105,106],[645,1,1,106,107],[647,1,1,107,108],[648,1,1,108,109],[649,1,1,109,110],[652,4,2,110,112],[653,2,2,112,114],[656,1,1,114,115]]],[20,2,2,115,117,[[664,1,1,115,116],[668,1,1,116,117]]],[22,38,36,117,153,[[681,1,1,117,118],[682,2,2,118,120],[683,1,1,120,121],[684,1,1,121,122],[686,1,1,122,123],[688,3,3,123,126],[689,1,1,126,127],[692,1,1,127,128],[694,1,1,128,129],[695,2,2,129,131],[699,1,1,131,132],[700,3,3,132,135],[702,1,1,135,136],[713,2,1,136,137],[718,1,1,137,138],[720,2,2,138,140],[721,1,1,140,141],[726,1,1,141,142],[736,1,1,142,143],[737,1,1,143,144],[738,3,3,144,147],[739,1,1,147,148],[740,1,1,148,149],[744,5,4,149,153]]],[23,5,5,153,158,[[746,1,1,153,154],[757,1,1,154,155],[758,1,1,155,156],[761,1,1,156,157],[792,1,1,157,158]]],[25,19,16,158,174,[[802,1,1,158,159],[804,3,2,159,161],[809,1,1,161,162],[810,1,1,162,163],[811,4,3,163,166],[812,2,2,166,168],[832,1,1,168,169],[840,1,1,169,170],[844,4,3,170,173],[845,1,1,173,174]]],[26,1,1,174,175,[[860,1,1,174,175]]],[27,3,3,175,178,[[865,1,1,175,176],[870,1,1,176,177],[871,1,1,177,178]]],[32,1,1,178,179,[[893,1,1,178,179]]],[33,1,1,179,180,[[901,1,1,179,180]]],[34,3,2,180,182,[[904,3,2,180,182]]],[36,3,3,182,185,[[910,3,3,182,185]]],[37,2,2,185,187,[[912,2,2,185,187]]],[38,2,2,187,189,[[925,1,1,187,188],[926,1,1,188,189]]]],[874,1371,1479,1954,1957,2193,2194,2295,2333,2379,2491,2495,2741,2742,2959,2976,4118,4129,4130,4213,4236,4317,4457,5077,5995,7248,7318,7319,7336,8829,8996,10844,10848,10849,10881,11176,11192,11205,11206,11282,11325,11326,11327,11528,11543,11750,11902,11908,12516,12706,12790,13306,13552,13960,13967,14000,14017,14101,14169,14196,14248,14249,14250,14251,14281,14309,14310,14311,14317,14331,14664,14665,14773,14776,14779,14834,14841,14875,15019,15044,15194,15270,15280,15468,15472,15473,15484,15536,15537,15602,15671,15743,15747,15812,15817,15831,16236,16325,16331,16332,16390,16471,16490,16620,16704,16840,16913,16957,17005,17019,17115,17140,17142,17149,17247,17419,17494,17715,17735,17738,17752,17772,17814,17853,17866,17868,17894,17946,17983,17986,17987,18051,18070,18075,18076,18118,18322,18425,18488,18492,18512,18625,18794,18819,18822,18823,18834,18849,18856,18933,18934,18940,18941,18976,19282,19314,19369,20098,20492,20514,20525,20608,20625,20637,20651,20652,20677,20678,21248,21469,21574,21576,21577,21603,22075,22140,22219,22230,22594,22708,22762,22764,22858,22862,22864,22904,22907,23095,23105]]],["+",[5,5,[[3,1,1,0,1,[[140,1,1,0,1]]],[20,1,1,1,2,[[668,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]],[25,1,1,3,4,[[844,1,1,3,4]]],[34,1,1,4,5,[[904,1,1,4,5]]]],[4457,17494,20098,21574,22764]]],["glorious",[10,10,[[15,1,1,0,1,[[421,1,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]],[18,4,4,2,6,[[543,1,1,2,3],[549,1,1,3,4],[622,2,2,4,6]]],[22,3,3,6,9,[[682,1,1,6,7],[689,1,1,7,8],[700,1,1,8,9]]],[23,1,1,9,10,[[761,1,1,9,10]]]],[12516,12706,14875,15019,16325,16332,17735,17894,18075,19369]]],["gloriously",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18118]]],["glory",[153,147,[[0,2,2,0,2,[[30,1,1,0,1],[44,1,1,1,2]]],[1,11,11,2,13,[[65,2,2,2,4],[73,2,2,4,6],[77,2,2,6,8],[78,1,1,8,9],[82,2,2,9,11],[89,2,2,11,13]]],[2,2,2,13,15,[[98,2,2,13,15]]],[3,6,6,15,21,[[130,3,3,15,18],[132,2,2,18,20],[136,1,1,20,21]]],[4,1,1,21,22,[[157,1,1,21,22]]],[5,1,1,22,23,[[193,1,1,22,23]]],[8,4,4,23,27,[[237,1,1,23,24],[239,2,2,24,26],[241,1,1,26,27]]],[10,1,1,27,28,[[298,1,1,27,28]]],[12,3,3,28,31,[[353,3,3,28,31]]],[13,4,4,31,35,[[371,1,1,31,32],[373,3,3,32,35]]],[16,1,1,35,36,[[430,1,1,35,36]]],[17,2,2,36,38,[[454,1,1,36,37],[464,1,1,37,38]]],[18,43,42,38,80,[[480,1,1,38,39],[481,1,1,39,40],[485,1,1,40,41],[493,1,1,41,42],[496,1,1,42,43],[498,1,1,43,44],[501,5,4,44,48],[506,4,4,48,52],[507,1,1,52,53],[526,2,2,53,55],[534,3,3,55,58],[539,1,1,58,59],[540,1,1,59,60],[549,1,1,60,61],[550,1,1,61,62],[556,1,1,62,63],[561,1,1,63,64],[562,1,1,64,65],[573,3,3,65,68],[574,1,1,68,69],[579,2,2,69,71],[581,1,1,71,72],[583,1,1,72,73],[585,2,2,73,75],[590,1,1,75,76],[592,1,1,76,77],[615,1,1,77,78],[622,1,1,78,79],[626,1,1,79,80]]],[19,4,3,80,83,[[630,1,1,80,81],[652,3,2,81,83]]],[22,33,31,83,114,[[681,1,1,83,84],[682,1,1,84,85],[684,1,1,85,86],[686,1,1,86,87],[688,3,3,87,90],[692,1,1,90,91],[694,1,1,91,92],[695,2,2,92,94],[699,1,1,94,95],[700,2,2,95,97],[713,2,1,97,98],[718,1,1,98,99],[720,2,2,99,101],[721,1,1,101,102],[726,1,1,102,103],[736,1,1,103,104],[737,1,1,104,105],[738,3,3,105,108],[739,1,1,108,109],[740,1,1,109,110],[744,5,4,110,114]]],[23,3,3,114,117,[[746,1,1,114,115],[757,1,1,115,116],[758,1,1,116,117]]],[25,18,16,117,133,[[802,1,1,117,118],[804,3,2,118,120],[809,1,1,120,121],[810,1,1,121,122],[811,4,3,122,125],[812,2,2,125,127],[832,1,1,127,128],[840,1,1,128,129],[844,3,3,129,132],[845,1,1,132,133]]],[26,1,1,133,134,[[860,1,1,133,134]]],[27,3,3,134,137,[[865,1,1,134,135],[870,1,1,135,136],[871,1,1,136,137]]],[32,1,1,137,138,[[893,1,1,137,138]]],[33,1,1,138,139,[[901,1,1,138,139]]],[34,2,2,139,141,[[904,2,2,139,141]]],[36,3,3,141,144,[[910,3,3,141,144]]],[37,2,2,144,146,[[912,2,2,144,146]]],[38,1,1,146,147,[[926,1,1,146,147]]]],[874,1371,1954,1957,2193,2194,2295,2333,2379,2491,2495,2741,2742,2959,2976,4118,4129,4130,4213,4236,4317,5077,5995,7248,7318,7319,7336,8996,10844,10848,10849,11282,11325,11326,11327,12790,13306,13552,13960,13967,14017,14101,14169,14196,14248,14249,14250,14251,14309,14310,14311,14317,14331,14664,14665,14773,14776,14779,14834,14841,15019,15044,15194,15270,15280,15468,15472,15473,15484,15536,15537,15602,15671,15743,15747,15817,15831,16236,16331,16390,16490,17115,17140,17715,17738,17772,17814,17853,17866,17868,17946,17983,17986,17987,18051,18070,18076,18322,18425,18488,18492,18512,18625,18794,18819,18822,18823,18834,18849,18856,18933,18934,18940,18941,18976,19282,19314,20492,20514,20525,20608,20625,20637,20651,20652,20677,20678,21248,21469,21574,21576,21577,21603,22075,22140,22219,22230,22594,22708,22762,22764,22858,22862,22864,22904,22907,23105]]],["honour",[30,30,[[0,1,1,0,1,[[48,1,1,0,1]]],[10,1,1,1,2,[[293,1,1,1,2]]],[12,3,3,2,5,[[354,1,1,2,3],[366,2,2,3,5]]],[13,7,7,5,12,[[367,2,2,5,7],[383,1,1,7,8],[384,1,1,8,9],[392,1,1,9,10],[398,2,2,10,12]]],[18,4,4,12,16,[[484,1,1,12,13],[503,1,1,13,14],[543,1,1,14,15],[589,1,1,15,16]]],[19,12,12,16,28,[[630,1,1,16,17],[635,1,1,17,18],[638,1,1,18,19],[642,1,1,19,20],[645,1,1,20,21],[647,1,1,21,22],[648,1,1,22,23],[649,1,1,23,24],[652,1,1,24,25],[653,2,2,25,27],[656,1,1,27,28]]],[20,1,1,28,29,[[664,1,1,28,29]]],[38,1,1,29,30,[[925,1,1,29,30]]]],[1479,8829,10881,11176,11192,11205,11206,11528,11543,11750,11902,11908,14000,14281,14875,15812,16471,16620,16704,16840,16913,16957,17005,17019,17115,17142,17149,17247,17419,23095]]],["honourable",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17752]]]]},{"k":"H3520","v":[["*",[3,3,[[6,1,1,0,1,[[228,1,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]],[25,1,1,2,3,[[824,1,1,2,3]]]],[7014,14610,21048]]],["carriage",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7014]]],["glorious",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14610]]],["stately",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21048]]]]},{"k":"H3521","v":[["Cabul",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]]],[6348,9064]]]]},{"k":"H3522","v":[["Cabbon",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6242]]]]},{"k":"H3523","v":[["pillow",[2,2,[[8,2,2,0,2,[[254,2,2,0,2]]]],[7719,7722]]]]},{"k":"H3524","v":[["*",[10,9,[[17,7,6,0,6,[[443,1,1,0,1],[450,1,1,1,2],[466,1,1,2,3],[469,2,2,3,5],[471,2,1,5,6]]],[22,3,3,6,9,[[694,1,1,6,7],[695,1,1,7,8],[706,1,1,8,9]]]],[13031,13213,13613,13700,13707,13741,17983,17995,18166]]],["+",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]]],[13213,17983]]],["men",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13707]]],["mighty",[4,3,[[17,2,1,0,1,[[471,2,1,0,1]]],[22,2,2,1,3,[[695,1,1,1,2],[706,1,1,2,3]]]],[13741,17995,18166]]],["most",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13700]]],["much",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13613]]],["strong",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13031]]]]},{"k":"H3525","v":[["fetters",[2,2,[[18,2,2,0,2,[[582,1,1,0,1],[626,1,1,1,2]]]],[15624,16393]]]]},{"k":"H3526","v":[["*",[51,48,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[68,2,2,1,3]]],[2,31,28,3,31,[[95,1,1,3,4],[100,4,3,4,7],[102,7,6,7,13],[103,4,3,13,16],[104,11,11,16,27],[105,2,2,27,29],[106,2,2,29,31]]],[3,8,8,31,39,[[124,2,2,31,33],[135,5,5,33,38],[147,1,1,38,39]]],[9,1,1,39,40,[[285,1,1,39,40]]],[11,1,1,40,41,[[330,1,1,40,41]]],[18,2,2,41,43,[[528,2,2,41,43]]],[22,2,2,43,45,[[685,1,1,43,44],[714,1,1,44,45]]],[23,2,2,45,47,[[746,1,1,45,46],[748,1,1,46,47]]],[38,1,1,47,48,[[927,1,1,47,48]]]],[1484,2036,2040,2876,3022,3025,3037,3058,3086,3106,3107,3108,3110,3119,3120,3158,3173,3174,3175,3176,3178,3179,3181,3185,3189,3190,3195,3227,3229,3250,3251,3946,3960,4296,4297,4299,4308,4310,4688,8535,10041,14693,14698,17785,18332,18987,19041,23122]]],["+",[5,4,[[2,4,3,0,3,[[103,4,3,0,3]]],[3,1,1,3,4,[[135,1,1,3,4]]]],[3119,3120,3158,4299]]],["Wash",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14693]]],["fuller's",[3,3,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,2,2,1,3,[[685,1,1,1,2],[714,1,1,2,3]]]],[10041,17785,18332]]],["fullers'",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23122]]],["wash",[33,32,[[1,1,1,0,1,[[68,1,1,0,1]]],[2,23,22,1,23,[[95,1,1,1,2],[100,4,3,2,5],[102,4,4,5,9],[104,10,10,9,19],[105,2,2,19,21],[106,2,2,21,23]]],[3,6,6,23,29,[[124,1,1,23,24],[135,4,4,24,28],[147,1,1,28,29]]],[18,1,1,29,30,[[528,1,1,29,30]]],[23,2,2,30,32,[[746,1,1,30,31],[748,1,1,31,32]]]],[2036,2876,3022,3025,3037,3058,3086,3106,3110,3173,3174,3175,3176,3178,3179,3181,3189,3190,3195,3227,3229,3250,3251,3946,4296,4297,4308,4310,4688,14698,18987,19041]]],["washed",[7,7,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,1,1,1,2,[[68,1,1,1,2]]],[2,3,3,2,5,[[102,2,2,2,4],[104,1,1,4,5]]],[3,1,1,5,6,[[124,1,1,5,6]]],[9,1,1,6,7,[[285,1,1,6,7]]]],[1484,2040,3107,3110,3185,3960,8535]]],["washing",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3108]]]]},{"k":"H3527","v":[["multiplieth",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13736]]]]},{"k":"H3528","v":[["*",[9,8,[[20,9,8,0,8,[[659,1,1,0,1],[660,2,2,1,3],[661,2,1,3,4],[662,1,1,4,5],[664,1,1,5,6],[667,2,2,6,8]]]],[17325,17345,17349,17374,17383,17427,17481,17482]]],["+",[2,2,[[20,2,2,0,2,[[660,1,1,0,1],[662,1,1,1,2]]]],[17349,17383]]],["already",[4,4,[[20,4,4,0,4,[[659,1,1,0,1],[660,1,1,1,2],[661,1,1,2,3],[664,1,1,3,4]]]],[17325,17345,17374,17427]]],["now",[3,3,[[20,3,3,0,3,[[661,1,1,0,1],[667,2,2,1,3]]]],[17374,17481,17482]]]]},{"k":"H3529","v":[["Chebar",[8,8,[[25,8,8,0,8,[[802,2,2,0,2],[804,2,2,2,4],[811,3,3,4,7],[844,1,1,7,8]]]],[20465,20467,20517,20525,20648,20653,20655,21575]]]]},{"k":"H3530","v":[["*",[3,3,[[0,2,2,0,2,[[34,1,1,0,1],[47,1,1,1,2]]],[11,1,1,2,3,[[317,1,1,2,3]]]],[1027,1458,9666]]],["+",[2,2,[[0,1,1,0,1,[[34,1,1,0,1]]],[11,1,1,1,2,[[317,1,1,1,2]]]],[1027,9666]]],["little",[1,1,[[0,1,1,0,1,[[47,1,1,0,1]]]],[1458]]]]},{"k":"H3531","v":[["sieve",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22504]]]]},{"k":"H3532","v":[["*",[107,100,[[1,6,5,0,5,[[61,1,1,0,1],[78,5,4,1,5]]],[2,13,13,5,18,[[93,1,1,5,6],[98,1,1,6,7],[101,1,1,7,8],[103,6,6,8,14],[112,4,4,14,18]]],[3,68,62,18,80,[[122,2,2,18,20],[123,26,26,20,46],[131,2,2,46,48],[144,15,12,48,60],[145,23,20,60,80]]],[12,1,1,80,81,[[366,1,1,80,81]]],[13,4,4,81,85,[[395,3,3,81,84],[401,1,1,84,85]]],[14,1,1,85,86,[[410,1,1,85,86]]],[17,1,1,86,87,[[466,1,1,86,87]]],[19,1,1,87,88,[[654,1,1,87,88]]],[22,3,3,88,91,[[679,1,1,88,89],[683,1,1,89,90],[689,1,1,90,91]]],[23,1,1,91,92,[[755,1,1,91,92]]],[25,7,7,92,99,[[847,7,7,92,99]]],[27,1,1,99,100,[[865,1,1,99,100]]]],[1821,2374,2375,2376,2377,2827,2956,3050,3121,3123,3124,3132,3135,3136,3414,3420,3421,3422,3835,3837,3865,3867,3871,3873,3877,3879,3883,3885,3889,3891,3895,3897,3901,3903,3907,3909,3913,3915,3919,3921,3925,3927,3931,3933,3937,3938,4158,4164,4580,4581,4584,4585,4586,4588,4590,4591,4596,4598,4604,4606,4610,4612,4616,4618,4621,4623,4625,4626,4628,4629,4631,4632,4634,4635,4637,4638,4640,4641,4644,4645,11185,11812,11813,11823,11973,12236,13608,17195,17665,17756,17890,19245,21659,21660,21661,21662,21666,21668,21670,22149]]],["+",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4164]]],["lamb",[44,42,[[1,4,3,0,3,[[78,4,3,0,3]]],[2,9,9,3,12,[[93,1,1,3,4],[98,1,1,4,5],[101,1,1,5,6],[103,5,5,6,11],[112,1,1,11,12]]],[3,26,25,12,37,[[122,2,2,12,14],[123,12,12,14,26],[131,1,1,26,27],[144,8,7,27,34],[145,3,3,34,37]]],[22,1,1,37,38,[[689,1,1,37,38]]],[23,1,1,38,39,[[755,1,1,38,39]]],[25,2,2,39,41,[[847,2,2,39,41]]],[27,1,1,41,42,[[865,1,1,41,42]]]],[2375,2376,2377,2827,2956,3050,3123,3124,3132,3135,3136,3414,3835,3837,3865,3871,3877,3883,3889,3895,3901,3907,3913,3919,3925,3931,4158,4581,4584,4585,4590,4591,4598,4606,4612,4618,4623,17890,19245,21668,21670,22149]]],["lambs",[60,60,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,4,4,1,5,[[103,1,1,1,2],[112,3,3,2,5]]],[3,41,41,5,46,[[123,14,14,5,19],[144,7,7,19,26],[145,20,20,26,46]]],[12,1,1,46,47,[[366,1,1,46,47]]],[13,4,4,47,51,[[395,3,3,47,50],[401,1,1,50,51]]],[14,1,1,51,52,[[410,1,1,51,52]]],[19,1,1,52,53,[[654,1,1,52,53]]],[22,2,2,53,55,[[679,1,1,53,54],[683,1,1,54,55]]],[25,5,5,55,60,[[847,5,5,55,60]]]],[2374,3121,3420,3421,3422,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3937,3938,4580,4586,4588,4596,4598,4604,4606,4610,4612,4616,4618,4621,4623,4625,4626,4628,4629,4631,4632,4634,4635,4637,4638,4640,4641,4644,4645,11185,11812,11813,11823,11973,12236,17195,17665,17756,21659,21660,21661,21662,21666]]],["sheep",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]]],[1821,13608]]]]},{"k":"H3533","v":[["*",[14,13,[[0,1,1,0,1,[[0,1,1,0,1]]],[3,2,2,1,3,[[148,2,2,1,3]]],[5,1,1,3,4,[[204,1,1,3,4]]],[9,1,1,4,5,[[274,1,1,4,5]]],[12,1,1,5,6,[[359,1,1,5,6]]],[13,1,1,6,7,[[394,1,1,6,7]]],[15,2,1,7,8,[[417,2,1,7,8]]],[16,1,1,8,9,[[432,1,1,8,9]]],[23,2,2,9,11,[[778,2,2,9,11]]],[32,1,1,11,12,[[899,1,1,11,12]]],[37,1,1,12,13,[[919,1,1,12,13]]]],[27,4740,4747,6294,8220,10982,11774,12387,12815,19812,19817,22683,23014]]],["+",[3,3,[[15,1,1,0,1,[[417,1,1,0,1]]],[16,1,1,1,2,[[432,1,1,1,2]]],[23,1,1,2,3,[[778,1,1,2,3]]]],[12387,12815,19817]]],["bondage",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12387]]],["subdue",[3,3,[[0,1,1,0,1,[[0,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]],[37,1,1,2,3,[[919,1,1,2,3]]]],[27,22683,23014]]],["subdued",[5,5,[[3,2,2,0,2,[[148,2,2,0,2]]],[5,1,1,2,3,[[204,1,1,2,3]]],[9,1,1,3,4,[[274,1,1,3,4]]],[12,1,1,4,5,[[359,1,1,4,5]]]],[4740,4747,6294,8220,10982]]],["subjection",[1,1,[[23,1,1,0,1,[[778,1,1,0,1]]]],[19812]]],["under",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11774]]]]},{"k":"H3534","v":[["footstool",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11382]]]]},{"k":"H3535","v":[["*",[8,8,[[0,3,3,0,3,[[20,3,3,0,3]]],[2,1,1,3,4,[[103,1,1,3,4]]],[3,1,1,4,5,[[122,1,1,4,5]]],[9,3,3,5,8,[[278,3,3,5,8]]]],[541,542,543,3121,3837,8289,8290,8292]]],["lamb",[5,5,[[2,1,1,0,1,[[103,1,1,0,1]]],[3,1,1,1,2,[[122,1,1,1,2]]],[9,3,3,2,5,[[278,3,3,2,5]]]],[3121,3837,8289,8290,8292]]],["lambs",[3,3,[[0,3,3,0,3,[[20,3,3,0,3]]]],[541,542,543]]]]},{"k":"H3536","v":[["furnace",[4,4,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,3,3,1,4,[[58,2,2,1,3],[68,1,1,3,4]]]],[485,1750,1752,2044]]]]},{"k":"H3537","v":[["*",[18,17,[[0,9,9,0,9,[[23,9,9,0,9]]],[6,4,3,9,12,[[217,4,3,9,12]]],[10,4,4,12,16,[[307,3,3,12,15],[308,1,1,15,16]]],[20,1,1,16,17,[[670,1,1,16,17]]]],[605,606,607,608,609,611,634,636,637,6710,6713,6714,9329,9331,9333,9374,17529]]],["+",[2,2,[[0,2,2,0,2,[[23,2,2,0,2]]]],[608,634]]],["barrel",[3,3,[[10,3,3,0,3,[[307,3,3,0,3]]]],[9329,9331,9333]]],["barrels",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9374]]],["pitcher",[8,8,[[0,7,7,0,7,[[23,7,7,0,7]]],[20,1,1,7,8,[[670,1,1,7,8]]]],[605,606,607,609,611,636,637,17529]]],["pitchers",[4,3,[[6,4,3,0,3,[[217,4,3,0,3]]]],[6710,6713,6714]]]]},{"k":"H3538","v":[["lying",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21767]]]]},{"k":"H3539","v":[["*",[2,2,[[22,1,1,0,1,[[732,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[18735,21137]]],["agate",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21137]]],["agates",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18735]]]]},{"k":"H3540","v":[["Chedorlaomer",[5,5,[[0,5,5,0,5,[[13,5,5,0,5]]]],[337,340,341,345,353]]]]},{"k":"H3541","v":[["*",[577,541,[[0,10,8,0,8,[[14,1,1,0,1],[21,1,1,1,2],[23,1,1,2,3],[30,3,2,3,5],[31,2,1,5,6],[44,1,1,6,7],[49,1,1,7,8]]],[1,19,18,8,26,[[51,2,1,8,9],[52,2,2,9,11],[53,1,1,11,12],[54,3,3,12,15],[56,2,2,15,17],[57,2,2,17,19],[58,2,2,19,21],[59,1,1,21,22],[60,1,1,22,23],[68,1,1,23,24],[69,1,1,24,25],[81,1,1,25,26]]],[3,12,10,26,36,[[122,1,1,26,27],[124,1,1,27,28],[127,2,1,28,29],[136,1,1,29,30],[138,2,2,30,32],[139,4,3,32,35],[148,1,1,35,36]]],[4,1,1,36,37,[[159,1,1,36,37]]],[5,6,6,37,43,[[192,2,2,37,39],[193,1,1,39,40],[203,1,1,40,41],[208,1,1,41,42],[210,1,1,42,43]]],[6,2,2,43,45,[[216,1,1,43,44],[221,1,1,44,45]]],[7,3,2,45,47,[[232,2,1,45,46],[233,1,1,46,47]]],[8,23,18,47,65,[[237,1,1,47,48],[238,2,1,48,49],[244,1,1,49,50],[245,1,1,50,51],[246,2,2,51,53],[249,4,3,53,56],[250,1,1,56,57],[252,1,1,57,58],[253,1,1,58,59],[255,4,3,59,62],[260,3,2,62,64],[262,2,1,64,65]]],[9,18,14,65,79,[[269,4,2,65,67],[273,3,2,67,69],[277,1,1,69,70],[278,2,2,70,72],[281,1,1,72,73],[282,2,2,73,75],[284,2,2,75,77],[285,2,1,77,78],[290,1,1,78,79]]],[10,32,23,79,102,[[292,5,2,79,81],[295,1,1,81,82],[301,1,1,82,83],[302,3,2,83,85],[303,2,2,85,87],[304,1,1,87,88],[307,1,1,88,89],[308,2,1,89,90],[309,2,1,90,91],[310,8,7,91,98],[311,2,1,98,99],[312,4,3,99,102]]],[11,32,29,102,131,[[313,4,4,102,106],[314,1,1,106,107],[315,2,2,107,109],[316,1,1,109,110],[318,2,1,110,111],[319,1,1,111,112],[321,5,5,112,117],[330,3,3,117,120],[331,6,5,120,125],[332,2,2,125,127],[333,1,1,127,128],[334,4,3,128,131]]],[12,5,4,131,135,[[354,3,2,131,133],[358,2,2,133,135]]],[13,18,16,135,151,[[376,2,1,135,136],[377,1,1,136,137],[378,1,1,137,138],[384,2,2,138,140],[385,2,2,140,142],[386,1,1,142,143],[387,1,1,143,144],[390,2,2,144,146],[398,1,1,146,147],[400,4,3,147,150],[402,1,1,150,151]]],[14,1,1,151,152,[[403,1,1,151,152]]],[15,1,1,152,153,[[425,1,1,152,153]]],[22,52,51,153,204,[[685,1,1,153,154],[686,1,1,154,155],[688,1,1,155,156],[696,1,1,156,157],[698,1,1,157,158],[699,2,2,158,160],[700,1,1,160,161],[702,1,1,161,162],[706,1,1,162,163],[707,1,1,163,164],[708,2,2,164,166],[709,1,1,166,167],[714,3,3,167,170],[715,6,5,170,175],[716,2,2,175,177],[720,1,1,177,178],[721,3,3,178,181],[722,3,3,181,184],[723,4,4,184,188],[726,1,1,188,189],[727,4,4,189,193],[728,1,1,193,194],[729,1,1,194,195],[730,2,2,195,197],[734,2,2,197,199],[735,1,1,199,200],[743,2,2,200,202],[744,2,2,202,204]]],[23,163,159,204,363,[[746,2,2,204,206],[748,2,2,206,208],[749,2,2,208,210],[750,5,5,210,215],[751,3,3,215,218],[752,1,1,218,219],[753,5,5,219,224],[754,2,2,224,226],[755,4,4,226,230],[756,1,1,230,231],[757,4,4,231,235],[758,2,2,235,237],[759,2,2,237,239],[760,3,3,239,242],[761,3,3,242,245],[762,2,2,245,247],[763,4,4,247,251],[764,1,1,251,252],[765,4,4,252,256],[766,6,6,256,262],[767,7,7,262,269],[768,2,2,269,271],[769,5,5,271,276],[770,3,3,276,279],[771,6,5,279,284],[772,5,5,284,289],[773,9,9,289,298],[774,4,4,298,302],[775,7,7,302,309],[776,6,6,309,315],[777,7,7,315,322],[778,5,4,322,326],[779,4,4,326,330],[780,2,2,330,332],[781,3,2,332,334],[782,3,3,334,337],[783,1,1,337,338],[786,3,3,338,341],[787,1,1,341,342],[788,5,5,342,347],[789,3,2,347,349],[791,1,1,349,350],[792,2,2,350,352],[793,5,5,352,357],[794,2,2,357,359],[795,4,4,359,363]]],[24,1,1,363,364,[[798,1,1,363,364]]],[25,128,127,364,491,[[803,1,1,364,365],[804,2,2,365,367],[806,3,3,367,370],[807,2,2,370,372],[808,2,2,372,374],[812,4,4,374,378],[813,4,4,378,382],[814,5,5,382,387],[815,3,3,387,390],[816,1,1,390,391],[817,3,3,391,394],[818,4,4,394,398],[821,6,6,398,404],[822,5,5,404,409],[823,3,3,409,412],[824,6,6,412,418],[825,4,4,418,422],[826,7,7,422,429],[827,4,4,429,433],[828,1,1,433,434],[829,5,5,434,439],[830,4,4,439,443],[831,5,5,443,448],[832,2,2,448,450],[833,2,2,450,452],[834,3,2,452,454],[835,5,5,454,459],[836,2,2,459,461],[837,10,10,461,471],[838,5,5,471,476],[839,4,4,476,480],[840,3,3,480,483],[844,1,1,483,484],[845,2,2,484,486],[846,2,2,486,488],[847,2,2,488,490],[848,1,1,490,491]]],[29,20,20,491,511,[[879,5,5,491,496],[880,3,3,496,499],[881,2,2,499,501],[882,1,1,501,502],[883,3,3,502,505],[885,5,5,505,510],[886,1,1,510,511]]],[30,1,1,511,512,[[888,1,1,511,512]]],[32,2,2,512,514,[[894,1,1,512,513],[895,1,1,513,514]]],[33,1,1,514,515,[[900,1,1,514,515]]],[36,5,5,515,520,[[909,3,3,515,518],[910,2,2,518,520]]],[37,20,20,520,540,[[911,5,5,520,525],[912,1,1,525,526],[913,1,1,526,527],[916,1,1,527,528],[917,1,1,528,529],[918,10,10,529,539],[921,1,1,539,540]]],[38,1,1,540,541,[[925,1,1,540,541]]]],[365,552,621,881,910,932,1367,1523,1566,1593,1594,1623,1633,1642,1647,1701,1702,1711,1730,1743,1755,1780,1810,2029,2073,2465,3846,3946,4055,4325,4391,4405,4421,4431,4432,4726,5116,5952,5963,5989,6289,6442,6478,6662,6844,7144,7157,7267,7293,7400,7436,7452,7454,7517,7518,7552,7562,7645,7701,7737,7743,7752,7867,7883,7941,8090,8116,8185,8188,8284,8293,8297,8415,8433,8436,8508,8511,8524,8704,8793,8800,8889,9139,9161,9175,9186,9205,9225,9331,9386,9389,9410,9413,9418,9421,9422,9436,9450,9470,9491,9500,9507,9537,9539,9544,9549,9572,9592,9593,9646,9705,9708,9759,9762,9768,9774,9775,10043,10053,10055,10064,10067,10071,10081,10093,10099,10103,10131,10160,10161,10163,10867,10870,10944,10945,11405,11418,11442,11552,11568,11585,11586,11602,11636,11688,11697,11885,11956,11957,11959,12016,12018,12689,17789,17818,17874,18001,18035,18041,18051,18067,18108,18180,18215,18229,18232,18254,18334,18344,18346,18355,18358,18362,18373,18385,18391,18395,18485,18506,18519,18521,18535,18539,18557,18562,18572,18575,18579,18631,18643,18644,18658,18661,18663,18695,18699,18700,18754,18757,18780,18905,18910,18923,18934,18967,18970,19030,19054,19071,19072,19095,19098,19105,19110,19111,19122,19139,19140,19157,19182,19190,19192,19197,19198,19203,19219,19229,19237,19247,19248,19263,19267,19275,19278,19279,19303,19308,19317,19334,19339,19341,19345,19362,19376,19378,19395,19397,19408,19410,19418,19422,19426,19443,19444,19448,19452,19455,19457,19460,19465,19472,19484,19486,19499,19500,19513,19519,19521,19522,19529,19532,19542,19549,19561,19562,19566,19574,19576,19590,19598,19600,19612,19615,19617,19620,19629,19631,19632,19634,19639,19643,19645,19651,19652,19656,19660,19666,19667,19669,19672,19679,19685,19693,19698,19706,19707,19714,19726,19728,19734,19745,19746,19759,19767,19773,19777,19779,19785,19787,19792,19795,19800,19803,19805,19814,19818,19836,19840,19841,19842,19871,19872,19881,19883,19897,19898,19912,19939,19984,19990,19993,20007,20012,20017,20021,20035,20040,20042,20044,20075,20081,20120,20128,20134,20139,20155,20162,20184,20199,20213,20245,20248,20270,20352,20496,20513,20529,20551,20553,20554,20566,20574,20579,20582,20660,20662,20671,20672,20690,20699,20703,20708,20711,20716,20721,20726,20728,20735,20737,20752,20760,20765,20798,20821,20828,20834,20844,20847,20898,20900,20922,20925,20934,20942,20947,20953,20968,20970,20972,20979,20995,21004,21029,21035,21039,21042,21046,21053,21059,21062,21065,21077,21086,21089,21091,21095,21096,21098,21099,21103,21107,21115,21119,21124,21159,21163,21169,21179,21182,21186,21191,21196,21202,21206,21210,21214,21217,21226,21240,21245,21251,21259,21305,21307,21315,21323,21324,21330,21333,21347,21358,21361,21362,21363,21364,21365,21366,21372,21381,21392,21396,21402,21406,21409,21416,21418,21428,21435,21439,21442,21449,21465,21473,21590,21605,21608,21639,21648,21656,21671,21692,22367,22370,22373,22375,22377,22380,22383,22385,22406,22407,22422,22426,22427,22439,22465,22468,22471,22475,22481,22482,22511,22598,22613,22696,22842,22845,22847,22861,22866,22881,22882,22892,22894,22895,22907,22919,22959,22971,22978,22979,22980,22982,22983,22985,22990,22995,22996,22999,23032,23093]]],["+",[5,4,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,1,1,1,2,[[56,1,1,1,2]]],[5,1,1,2,3,[[203,1,1,2,3]]],[10,2,1,3,4,[[308,2,1,3,4]]]],[552,1701,6289,9386]]],["So",[8,8,[[0,2,2,0,2,[[14,1,1,0,1],[49,1,1,1,2]]],[8,3,3,2,5,[[252,1,1,2,3],[260,1,1,3,4],[262,1,1,4,5]]],[9,2,2,5,7,[[269,2,2,5,7]]],[10,1,1,7,8,[[309,1,1,7,8]]]],[365,1523,7645,7883,7941,8090,8116,9389]]],["Thus",[343,336,[[0,3,3,0,3,[[23,1,1,0,1],[31,1,1,1,2],[44,1,1,2,3]]],[1,15,15,3,18,[[52,2,2,3,5],[53,1,1,5,6],[54,2,2,6,8],[56,1,1,8,9],[57,2,2,9,11],[58,2,2,11,13],[59,1,1,13,14],[60,1,1,14,15],[68,1,1,15,16],[69,1,1,16,17],[81,1,1,17,18]]],[3,3,3,18,21,[[136,1,1,18,19],[138,1,1,19,20],[148,1,1,20,21]]],[5,3,3,21,24,[[192,1,1,21,22],[208,1,1,22,23],[210,1,1,23,24]]],[6,2,2,24,26,[[216,1,1,24,25],[221,1,1,25,26]]],[8,5,5,26,31,[[237,1,1,26,27],[245,1,1,27,28],[246,1,1,28,29],[250,1,1,29,30],[253,1,1,30,31]]],[9,6,6,31,37,[[273,2,2,31,33],[277,1,1,33,34],[278,2,2,34,36],[290,1,1,36,37]]],[10,16,14,37,51,[[292,2,1,37,38],[302,2,2,38,40],[303,1,1,40,41],[304,1,1,41,42],[310,6,6,42,48],[311,2,1,48,49],[312,2,2,49,51]]],[11,22,21,51,72,[[313,2,2,51,53],[314,1,1,53,54],[315,1,1,54,55],[319,1,1,55,56],[321,5,5,56,61],[330,2,2,61,63],[331,5,4,63,67],[332,2,2,67,69],[334,3,3,69,72]]],[12,4,4,72,76,[[354,2,2,72,74],[358,2,2,74,76]]],[13,15,15,76,91,[[376,1,1,76,77],[377,1,1,77,78],[378,1,1,78,79],[384,2,2,79,81],[385,1,1,81,82],[386,1,1,82,83],[387,1,1,83,84],[390,2,2,84,86],[398,1,1,86,87],[400,3,3,87,90],[402,1,1,90,91]]],[14,1,1,91,92,[[403,1,1,91,92]]],[22,29,28,92,120,[[685,1,1,92,93],[700,1,1,93,94],[714,2,2,94,96],[715,5,4,96,100],[716,2,2,100,102],[720,1,1,102,103],[721,2,2,103,105],[722,3,3,105,108],[723,3,3,108,111],[726,1,1,111,112],[727,3,3,112,115],[728,1,1,115,116],[729,1,1,116,117],[734,1,1,117,118],[743,1,1,118,119],[744,1,1,119,120]]],[23,98,95,120,215,[[746,2,2,120,122],[750,3,3,122,125],[751,2,2,125,127],[752,1,1,127,128],[753,3,3,128,131],[754,1,1,131,132],[755,1,1,132,133],[756,1,1,133,134],[757,4,4,134,138],[758,1,1,138,139],[759,1,1,139,140],[761,3,3,140,143],[762,1,1,143,144],[763,4,4,144,148],[765,3,3,148,151],[766,3,3,151,154],[767,3,3,154,157],[768,1,1,157,158],[769,3,3,158,161],[770,3,3,161,164],[771,4,3,164,167],[772,3,3,167,170],[773,5,5,170,175],[774,2,2,175,177],[775,6,6,177,183],[776,2,2,183,185],[777,5,5,185,190],[778,4,3,190,193],[779,2,2,193,195],[780,1,1,195,196],[781,3,2,196,198],[782,3,3,198,201],[783,1,1,201,202],[786,2,2,202,204],[787,1,1,204,205],[788,3,3,205,208],[789,2,2,208,210],[791,1,1,210,211],[793,1,1,211,212],[794,1,1,212,213],[795,2,2,213,215]]],[25,85,85,215,300,[[803,1,1,215,216],[804,2,2,216,218],[806,1,1,218,219],[807,2,2,219,221],[808,1,1,221,222],[812,3,3,222,225],[813,4,4,225,229],[814,2,2,229,231],[815,2,2,231,233],[817,2,2,233,235],[818,3,3,235,238],[821,5,5,238,243],[822,4,4,243,247],[823,2,2,247,249],[824,1,1,249,250],[825,2,2,250,252],[826,4,4,252,256],[827,1,1,256,257],[828,1,1,257,258],[829,4,4,258,262],[830,1,1,262,263],[831,4,4,263,267],[832,1,1,267,268],[833,1,1,268,269],[834,2,2,269,271],[835,2,2,271,273],[836,2,2,273,275],[837,8,8,275,283],[838,5,5,283,288],[839,4,4,288,292],[840,1,1,292,293],[845,2,2,293,295],[846,2,2,295,297],[847,2,2,297,299],[848,1,1,299,300]]],[29,13,13,300,313,[[879,5,5,300,305],[880,3,3,305,308],[881,1,1,308,309],[885,3,3,309,312],[886,1,1,312,313]]],[30,1,1,313,314,[[888,1,1,313,314]]],[32,1,1,314,315,[[895,1,1,314,315]]],[33,1,1,315,316,[[900,1,1,315,316]]],[36,3,3,316,319,[[909,2,2,316,318],[910,1,1,318,319]]],[37,17,17,319,336,[[911,4,4,319,323],[913,1,1,323,324],[916,1,1,324,325],[917,1,1,325,326],[918,9,9,326,335],[921,1,1,335,336]]]],[621,932,1367,1593,1594,1623,1633,1642,1702,1711,1730,1743,1755,1780,1810,2029,2073,2465,4325,4391,4726,5952,6442,6478,6662,6844,7267,7436,7454,7562,7701,8185,8188,8284,8293,8297,8704,8800,9161,9175,9205,9225,9410,9413,9421,9422,9436,9450,9470,9491,9507,9539,9549,9572,9592,9708,9759,9762,9768,9774,9775,10043,10053,10064,10067,10071,10081,10099,10103,10160,10161,10163,10867,10870,10944,10945,11405,11418,11442,11552,11568,11585,11602,11636,11688,11697,11885,11956,11957,11959,12016,12018,17789,18067,18334,18344,18355,18358,18362,18373,18391,18395,18485,18519,18521,18535,18539,18557,18562,18572,18575,18631,18643,18644,18658,18663,18695,18754,18905,18923,18967,18970,19098,19105,19111,19122,19140,19157,19192,19197,19198,19203,19229,19263,19267,19275,19278,19279,19303,19317,19362,19376,19378,19395,19408,19410,19418,19422,19443,19444,19448,19455,19457,19484,19500,19519,19521,19529,19561,19562,19566,19574,19576,19590,19598,19600,19612,19620,19629,19631,19639,19652,19656,19660,19666,19669,19685,19693,19706,19707,19714,19726,19728,19734,19745,19777,19785,19787,19795,19800,19803,19805,19814,19836,19841,19871,19881,19883,19897,19898,19912,19939,19984,19990,20007,20012,20035,20040,20042,20044,20075,20162,20199,20213,20270,20496,20513,20529,20551,20566,20574,20582,20660,20671,20672,20690,20699,20703,20708,20711,20726,20735,20737,20765,20798,20828,20834,20847,20898,20900,20922,20925,20942,20947,20953,20970,20972,20979,21004,21039,21059,21077,21086,21091,21095,21098,21115,21124,21159,21169,21179,21182,21186,21206,21210,21214,21217,21245,21251,21305,21307,21315,21323,21347,21358,21361,21362,21363,21365,21372,21381,21392,21396,21402,21406,21409,21416,21418,21428,21435,21439,21442,21449,21605,21608,21639,21648,21656,21671,21692,22367,22370,22373,22375,22377,22380,22383,22385,22407,22465,22468,22471,22482,22511,22613,22696,22842,22847,22866,22881,22882,22892,22895,22919,22959,22971,22978,22979,22980,22982,22983,22985,22995,22996,22999,23032]]],["also",[11,11,[[7,1,1,0,1,[[232,1,1,0,1]]],[8,3,3,1,4,[[238,1,1,1,2],[249,1,1,2,3],[260,1,1,3,4]]],[9,3,3,4,7,[[269,2,2,4,6],[285,1,1,6,7]]],[10,3,3,7,10,[[292,1,1,7,8],[309,1,1,8,9],[310,1,1,9,10]]],[11,1,1,10,11,[[318,1,1,10,11]]]],[7144,7293,7552,7883,8090,8116,8524,8793,9389,9418,9705]]],["but",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7157]]],["here",[3,3,[[0,1,1,0,1,[[30,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[9,1,1,2,3,[[284,1,1,2,3]]]],[910,4431,8508]]],["like",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19513]]],["manner",[2,1,[[10,2,1,0,1,[[312,2,1,0,1]]]],[9500]]],["much",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7743]]],["side",[2,1,[[3,2,1,0,1,[[127,2,1,0,1]]]],[4055]]],["so",[15,15,[[3,1,1,0,1,[[138,1,1,0,1]]],[5,1,1,1,2,[[192,1,1,1,2]]],[7,1,1,2,3,[[232,1,1,2,3]]],[8,5,5,3,8,[[238,1,1,3,4],[246,1,1,4,5],[249,1,1,5,6],[255,1,1,6,7],[262,1,1,7,8]]],[9,2,2,8,10,[[282,1,1,8,9],[285,1,1,9,10]]],[10,2,2,10,12,[[292,1,1,10,11],[310,1,1,11,12]]],[11,1,1,12,13,[[318,1,1,12,13]]],[13,1,1,13,14,[[400,1,1,13,14]]],[22,1,1,14,15,[[696,1,1,14,15]]]],[4405,5963,7144,7293,7452,7552,7743,7941,8436,8524,8793,9418,9705,11959,18001]]],["such",[1,1,[[22,1,1,0,1,[[698,1,1,0,1]]]],[18035]]],["therefore",[1,1,[[9,1,1,0,1,[[273,1,1,0,1]]]],[8188]]],["this",[2,2,[[13,1,1,0,1,[[385,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]]],[11586,20352]]],["thus",[177,176,[[0,3,2,0,2,[[30,2,1,0,1],[31,1,1,1,2]]],[1,1,1,2,3,[[54,1,1,2,3]]],[3,3,3,3,6,[[124,1,1,3,4],[139,2,2,4,6]]],[4,1,1,6,7,[[159,1,1,6,7]]],[5,1,1,7,8,[[193,1,1,7,8]]],[8,6,6,8,14,[[244,1,1,8,9],[249,2,2,9,11],[255,2,2,11,13],[260,1,1,13,14]]],[9,3,3,14,17,[[281,1,1,14,15],[282,1,1,15,16],[284,1,1,16,17]]],[10,6,6,17,23,[[292,1,1,17,18],[295,1,1,18,19],[301,1,1,19,20],[302,1,1,20,21],[303,1,1,21,22],[307,1,1,22,23]]],[11,8,8,23,31,[[313,2,2,23,25],[315,1,1,25,26],[316,1,1,26,27],[330,1,1,27,28],[331,1,1,28,29],[333,1,1,29,30],[334,1,1,30,31]]],[12,1,1,31,32,[[354,1,1,31,32]]],[13,1,1,32,33,[[376,1,1,32,33]]],[15,1,1,33,34,[[425,1,1,33,34]]],[22,21,21,34,55,[[686,1,1,34,35],[688,1,1,35,36],[699,2,2,36,38],[702,1,1,38,39],[706,1,1,39,40],[707,1,1,40,41],[708,2,2,41,43],[709,1,1,43,44],[714,1,1,44,45],[715,1,1,45,46],[721,1,1,46,47],[723,1,1,47,48],[727,1,1,48,49],[730,2,2,49,51],[734,1,1,51,52],[735,1,1,52,53],[743,1,1,53,54],[744,1,1,54,55]]],[23,64,64,55,119,[[748,2,2,55,57],[749,2,2,57,59],[750,2,2,59,61],[751,1,1,61,62],[753,2,2,62,64],[754,1,1,64,65],[755,3,3,65,68],[758,1,1,68,69],[759,1,1,69,70],[760,3,3,70,73],[762,1,1,73,74],[764,1,1,74,75],[765,1,1,75,76],[766,3,3,76,79],[767,3,3,79,82],[768,1,1,82,83],[769,2,2,83,85],[771,2,2,85,87],[772,2,2,87,89],[773,4,4,89,93],[774,2,2,93,95],[775,1,1,95,96],[776,4,4,96,100],[777,2,2,100,102],[778,1,1,102,103],[779,2,2,103,105],[780,1,1,105,106],[786,1,1,106,107],[788,2,2,107,109],[789,1,1,109,110],[792,2,2,110,112],[793,4,4,112,116],[794,1,1,116,117],[795,2,2,117,119]]],[25,43,43,119,162,[[806,2,2,119,121],[808,1,1,121,122],[812,1,1,122,123],[814,3,3,123,126],[815,1,1,126,127],[816,1,1,127,128],[817,1,1,128,129],[818,1,1,129,130],[821,1,1,130,131],[822,1,1,131,132],[823,1,1,132,133],[824,5,5,133,138],[825,2,2,138,140],[826,3,3,140,143],[827,3,3,143,146],[829,1,1,146,147],[830,3,3,147,150],[831,1,1,150,151],[832,1,1,151,152],[833,1,1,152,153],[834,1,1,153,154],[835,3,3,154,157],[837,2,2,157,159],[840,2,2,159,161],[844,1,1,161,162]]],[29,7,7,162,169,[[881,1,1,162,163],[882,1,1,163,164],[883,3,3,164,167],[885,2,2,167,169]]],[32,1,1,169,170,[[894,1,1,169,170]]],[36,2,2,170,172,[[909,1,1,170,171],[910,1,1,171,172]]],[37,3,3,172,175,[[911,1,1,172,173],[912,1,1,173,174],[918,1,1,174,175]]],[38,1,1,175,176,[[925,1,1,175,176]]]],[881,932,1647,3946,4421,4432,5116,5989,7400,7517,7518,7737,7752,7867,8415,8433,8511,8800,8889,9139,9161,9186,9331,9537,9544,9593,9646,10055,10093,10131,10163,10870,11405,12689,17818,17874,18041,18051,18108,18180,18215,18229,18232,18254,18346,18385,18506,18579,18661,18699,18700,18757,18780,18910,18934,19030,19054,19071,19072,19095,19110,19139,19182,19190,19219,19237,19247,19248,19308,19334,19339,19341,19345,19397,19426,19452,19460,19465,19472,19486,19499,19522,19532,19542,19549,19615,19617,19632,19634,19643,19645,19651,19667,19672,19679,19698,19746,19759,19767,19773,19779,19792,19818,19840,19842,19872,19993,20017,20021,20044,20081,20120,20128,20134,20139,20155,20184,20245,20248,20553,20554,20579,20662,20716,20721,20728,20752,20760,20821,20844,20934,20968,20995,21029,21035,21042,21046,21053,21062,21065,21089,21096,21099,21103,21107,21119,21163,21191,21196,21202,21226,21240,21259,21307,21324,21330,21333,21364,21366,21465,21473,21590,22406,22422,22426,22427,22439,22475,22481,22598,22845,22861,22894,22907,22990,23093]]],["way",[2,1,[[1,2,1,0,1,[[51,2,1,0,1]]]],[1566]]],["wise",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3846]]],["yonder",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4431]]]]},{"k":"H3542","v":[["+",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21961]]]]},{"k":"H3543","v":[["*",[8,7,[[0,1,1,0,1,[[26,1,1,0,1]]],[4,1,1,1,2,[[186,1,1,1,2]]],[8,1,1,2,3,[[238,1,1,2,3]]],[17,1,1,3,4,[[452,1,1,3,4]]],[22,1,1,4,5,[[720,1,1,4,5]]],[25,1,1,5,6,[[822,1,1,5,6]]],[37,2,1,6,7,[[921,2,1,6,7]]]],[728,5846,7289,13267,18484,20951,23045]]],["+",[3,2,[[4,1,1,0,1,[[186,1,1,0,1]]],[37,2,1,1,2,[[921,2,1,1,2]]]],[5846,23045]]],["dim",[2,2,[[0,1,1,0,1,[[26,1,1,0,1]]],[17,1,1,1,2,[[452,1,1,1,2]]]],[728,13267]]],["fail",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18484]]],["faint",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20951]]],["restrained",[1,1,[[8,1,1,0,1,[[238,1,1,0,1]]]],[7289]]]]},{"k":"H3544","v":[["*",[9,9,[[2,6,6,0,6,[[102,6,6,0,6]]],[8,1,1,6,7,[[238,1,1,6,7]]],[22,2,2,7,9,[[720,1,1,7,8],[739,1,1,8,9]]]],[3058,3073,3078,3080,3091,3108,7278,18483,18846]]],["dark",[5,5,[[2,5,5,0,5,[[102,5,5,0,5]]]],[3058,3073,3078,3080,3108]]],["darkish",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3091]]],["dim",[1,1,[[8,1,1,0,1,[[238,1,1,0,1]]]],[7278]]],["heaviness",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18846]]],["smoking",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18483]]]]},{"k":"H3545","v":[["healing",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22731]]]]},{"k":"H3546","v":[["*",[4,4,[[26,4,4,0,4,[[851,1,1,0,1],[853,1,1,1,2],[854,2,2,2,4]]]],[21784,21855,21882,21889]]],["able",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21784,21855]]],["could",[2,2,[[26,2,2,0,2,[[854,2,2,0,2]]]],[21882,21889]]]]},{"k":"H3547","v":[["*",[23,23,[[1,12,12,0,12,[[77,4,4,0,4],[78,2,2,4,6],[79,1,1,6,7],[80,1,1,7,8],[84,1,1,8,9],[88,1,1,9,10],[89,2,2,10,12]]],[2,2,2,12,14,[[96,1,1,12,13],[105,1,1,13,14]]],[3,2,2,14,16,[[119,2,2,14,16]]],[4,1,1,16,17,[[162,1,1,16,17]]],[12,2,2,17,19,[[343,1,1,17,18],[361,1,1,18,19]]],[13,1,1,19,20,[[377,1,1,19,20]]],[22,1,1,20,21,[[739,1,1,20,21]]],[25,1,1,21,22,[[845,1,1,21,22]]],[27,1,1,22,23,[[865,1,1,22,23]]]],[2294,2296,2297,2334,2337,2380,2412,2430,2550,2705,2720,2722,2914,3233,3695,3696,5192,10464,11017,11428,18853,21612,22139]]],["+",[3,3,[[2,1,1,0,1,[[96,1,1,0,1]]],[13,1,1,1,2,[[377,1,1,1,2]]],[27,1,1,2,3,[[865,1,1,2,3]]]],[2914,11428,22139]]],["decketh",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18853]]],["office",[18,18,[[1,12,12,0,12,[[77,4,4,0,4],[78,2,2,4,6],[79,1,1,6,7],[80,1,1,7,8],[84,1,1,8,9],[88,1,1,9,10],[89,2,2,10,12]]],[2,1,1,12,13,[[105,1,1,12,13]]],[3,2,2,13,15,[[119,2,2,13,15]]],[4,1,1,15,16,[[162,1,1,15,16]]],[12,2,2,16,18,[[343,1,1,16,17],[361,1,1,17,18]]]],[2294,2296,2297,2334,2337,2380,2412,2430,2550,2705,2720,2722,3233,3695,3696,5192,10464,11017]]],["priest",[1,1,[[25,1,1,0,1,[[845,1,1,0,1]]]],[21612]]]]},{"k":"H3548","v":[["*",[750,653,[[0,7,6,0,6,[[13,1,1,0,1],[40,2,2,1,3],[45,1,1,3,4],[46,3,2,4,6]]],[1,11,11,6,17,[[51,1,1,6,7],[52,1,1,7,8],[67,1,1,8,9],[68,3,3,9,12],[78,1,1,12,13],[80,1,1,13,14],[84,1,1,14,15],[87,1,1,15,16],[88,1,1,16,17]]],[2,194,153,17,170,[[90,9,9,17,26],[91,5,4,26,30],[92,3,3,30,33],[93,16,14,33,47],[94,11,7,47,54],[95,8,8,54,62],[96,10,9,62,71],[101,2,2,71,73],[102,56,40,73,113],[103,39,29,113,142],[104,6,4,142,146],[105,2,2,146,148],[106,2,2,148,150],[108,1,1,150,151],[110,4,4,151,155],[111,5,5,155,160],[112,4,3,160,163],[116,11,7,163,170]]],[3,69,63,170,233,[[119,3,3,170,173],[120,3,3,173,176],[121,16,13,176,189],[122,7,6,189,195],[123,1,1,195,196],[126,1,1,196,197],[131,2,2,197,199],[132,2,2,199,201],[134,1,1,201,202],[135,5,4,202,206],[141,2,2,206,208],[142,4,4,208,212],[143,4,4,212,216],[147,10,10,216,226],[148,2,2,226,228],[149,1,1,228,229],[150,1,1,229,230],[151,4,3,230,233]]],[4,14,13,233,246,[[169,3,3,233,236],[170,3,2,236,238],[171,1,1,238,239],[172,1,1,239,240],[173,1,1,240,241],[176,1,1,241,242],[178,2,2,242,244],[179,1,1,244,245],[183,1,1,245,246]]],[5,37,34,246,280,[[189,7,7,246,253],[190,8,7,253,260],[192,9,7,260,267],[194,1,1,267,268],[200,1,1,268,269],[203,1,1,269,270],[205,1,1,270,271],[206,1,1,271,272],[207,4,4,272,276],[208,4,4,276,280]]],[6,15,13,280,293,[[227,4,4,280,284],[228,11,9,284,293]]],[8,32,26,293,319,[[236,2,2,293,295],[237,8,6,295,301],[240,1,1,301,302],[241,1,1,302,303],[249,4,3,303,306],[256,6,6,306,312],[257,8,5,312,317],[258,1,1,317,318],[265,1,1,318,319]]],[9,9,8,319,327,[[274,2,2,319,321],[281,3,2,321,323],[283,1,1,323,324],[285,1,1,324,325],[286,2,2,325,327]]],[10,29,28,327,355,[[291,12,12,327,339],[292,4,4,339,343],[294,3,3,343,346],[298,5,5,346,351],[302,2,2,351,353],[303,3,2,353,355]]],[11,44,35,355,390,[[322,2,2,355,357],[323,7,4,357,361],[324,11,9,361,370],[328,5,4,370,374],[329,3,3,374,377],[331,1,1,377,378],[334,5,5,378,383],[335,8,6,383,389],[337,2,1,389,390]]],[12,19,17,390,407,[[346,3,3,390,393],[350,1,1,393,394],[352,3,3,394,397],[353,3,2,397,399],[355,1,1,399,400],[360,1,1,400,401],[361,3,2,401,403],[364,1,1,403,404],[365,2,2,404,406],[366,1,1,406,407]]],[13,89,72,407,479,[[370,2,2,407,409],[371,6,5,409,414],[372,1,1,414,415],[373,3,2,415,417],[374,3,2,417,419],[377,2,2,419,421],[379,6,4,421,425],[381,1,1,425,426],[383,1,1,426,427],[385,2,2,427,429],[388,1,1,429,430],[389,9,7,430,437],[390,5,5,437,442],[392,7,4,442,446],[395,9,7,446,453],[396,7,7,453,460],[397,9,7,460,467],[400,5,5,467,472],[401,9,6,472,478],[402,1,1,478,479]]],[14,26,25,479,504,[[403,1,1,479,480],[404,5,5,480,485],[405,4,4,485,489],[408,2,1,489,490],[409,3,3,490,493],[410,5,5,493,498],[411,2,2,498,500],[412,4,4,500,504]]],[15,44,42,504,546,[[414,1,1,504,505],[415,5,4,505,509],[417,1,1,509,510],[419,6,6,510,516],[420,3,3,516,519],[421,3,3,519,522],[422,7,7,522,529],[423,3,3,529,532],[424,10,9,532,541],[425,5,5,541,546]]],[17,1,1,546,547,[[447,1,1,546,547]]],[18,5,5,547,552,[[555,1,1,547,548],[576,1,1,548,549],[587,1,1,549,550],[609,2,2,550,552]]],[22,6,6,552,558,[[686,1,1,552,553],[702,1,1,553,554],[706,1,1,554,555],[715,1,1,555,556],[739,1,1,556,557],[744,1,1,557,558]]],[23,41,38,558,596,[[745,2,2,558,560],[746,2,2,560,562],[748,1,1,562,563],[749,1,1,563,564],[750,1,1,564,565],[752,2,2,565,567],[757,1,1,567,568],[758,1,1,568,569],[762,1,1,569,570],[763,1,1,570,571],[764,1,1,571,572],[765,1,1,572,573],[767,3,3,573,576],[770,4,4,576,580],[771,1,1,580,581],[772,2,2,581,583],[773,6,4,583,587],[775,1,1,587,588],[776,1,1,588,589],[777,2,2,589,591],[778,1,1,591,592],[781,1,1,592,593],[792,1,1,593,594],[793,1,1,594,595],[796,2,1,595,596]]],[24,6,6,596,602,[[797,2,2,596,598],[798,2,2,598,600],[800,2,2,600,602]]],[25,24,23,602,625,[[802,1,1,602,603],[808,1,1,603,604],[823,1,1,604,605],[841,2,2,605,607],[843,2,2,607,609],[844,3,3,609,612],[845,6,5,612,617],[846,2,2,617,619],[847,3,3,619,622],[849,3,3,622,625]]],[27,4,4,625,629,[[865,2,2,625,627],[866,1,1,627,628],[867,1,1,628,629]]],[28,3,3,629,632,[[876,2,2,629,631],[877,1,1,631,632]]],[29,1,1,632,633,[[885,1,1,632,633]]],[32,1,1,633,634,[[895,1,1,633,634]]],[35,2,2,634,636,[[906,1,1,634,635],[908,1,1,635,636]]],[36,8,8,636,644,[[909,3,3,636,639],[910,5,5,639,644]]],[37,6,6,644,650,[[913,2,2,644,646],[916,2,2,646,648],[917,2,2,648,650]]],[38,3,3,650,653,[[925,1,1,650,651],[926,2,2,651,653]]]],[354,1240,1245,1406,1442,1446,1570,1580,2000,2032,2048,2050,2366,2430,2550,2654,2705,2750,2752,2753,2754,2756,2757,2758,2760,2762,2764,2770,2771,2778,2780,2789,2794,2798,2800,2801,2802,2805,2811,2812,2815,2820,2821,2825,2826,2829,2830,2836,2838,2840,2842,2843,2846,2848,2855,2856,2859,2861,2871,2872,2875,2878,2884,2885,2886,2887,2888,2893,2910,2911,2913,3050,3052,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3067,3068,3069,3071,3072,3073,3074,3075,3077,3078,3079,3080,3082,3083,3084,3085,3086,3088,3089,3091,3095,3096,3101,3102,3105,3106,3107,3108,3113,3114,3115,3116,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3134,3135,3136,3137,3138,3139,3140,3142,3146,3147,3149,3150,3151,3155,3159,3182,3183,3197,3198,3233,3234,3240,3241,3303,3346,3354,3355,3366,3379,3380,3381,3382,3383,3412,3413,3422,3578,3581,3582,3584,3588,3591,3593,3695,3698,3724,3759,3771,3776,3800,3801,3802,3807,3808,3809,3810,3811,3813,3815,3817,3818,3822,3833,3834,3839,3840,3842,3843,3858,3996,4178,4181,4231,4233,4285,4292,4293,4295,4296,4478,4482,4490,4492,4552,4553,4556,4573,4575,4576,4670,4676,4677,4685,4690,4693,4695,4705,4715,4718,4720,4746,4798,4833,4870,4873,4877,5373,5376,5382,5385,5387,5423,5429,5452,5533,5569,5570,5594,5737,5896,5899,5901,5906,5907,5908,5910,5913,5919,5920,5921,5926,5927,5928,5953,5955,5957,5958,5961,5962,5965,6035,6188,6279,6372,6378,6382,6385,6394,6400,6439,6456,6457,6458,6985,6990,6992,6993,6997,6999,7010,7011,7012,7013,7017,7020,7023,7215,7221,7251,7253,7254,7255,7268,7275,7324,7333,7511,7527,7544,7773,7774,7776,7777,7778,7781,7798,7804,7805,7806,7808,7819,7985,8226,8227,8416,8424,8464,8522,8579,8580,8724,8725,8736,8742,8743,8749,8751,8755,8756,8759,8761,8762,8792,8796,8797,8805,8846,8848,8849,8988,8989,8991,8995,8996,9182,9183,9186,9217,9804,9812,9838,9839,9844,9847,9852,9854,9855,9856,9857,9858,9859,9860,9866,9973,9974,9978,9979,10010,10011,10015,10063,10149,10153,10155,10157,10159,10167,10169,10173,10174,10185,10189,10240,10617,10625,10645,10762,10802,10805,10815,10826,10859,10906,10985,11021,11046,11114,11156,11164,11186,11252,11255,11273,11275,11279,11280,11282,11323,11326,11330,11360,11361,11427,11429,11462,11463,11465,11467,11493,11531,11584,11587,11655,11660,11662,11664,11665,11670,11673,11674,11679,11682,11688,11697,11702,11749,11750,11751,11752,11795,11807,11812,11813,11815,11817,11825,11830,11842,11843,11848,11851,11852,11854,11856,11858,11863,11864,11869,11871,11873,11938,11942,11947,11951,11963,11968,11974,11976,11977,11980,11984,12007,12021,12063,12088,12090,12096,12097,12099,12105,12107,12109,12171,12178,12180,12184,12216,12225,12230,12231,12234,12238,12244,12257,12262,12268,12270,12323,12328,12347,12349,12355,12394,12459,12483,12485,12490,12492,12493,12495,12502,12506,12543,12545,12549,12557,12577,12583,12585,12586,12587,12588,12591,12598,12608,12625,12631,12636,12646,12650,12654,12659,12665,12668,12675,12676,12684,12699,12701,13147,15177,15505,15790,16160,16167,17809,18097,18171,18354,18849,18943,18947,18964,18973,18991,19036,19089,19102,19154,19163,19279,19311,19402,19408,19423,19441,19495,19517,19518,19579,19580,19583,19588,19612,19619,19623,19636,19660,19661,19664,19705,19763,19793,19796,19820,19877,20087,20130,20300,20314,20329,20338,20352,20433,20436,20467,20603,21002,21522,21523,21565,21566,21591,21596,21599,21614,21620,21621,21629,21630,21634,21649,21657,21674,21675,21712,21713,21715,22137,22142,22153,22176,22300,22304,22328,22474,22619,22791,22824,22841,22852,22854,22857,22859,22866,22867,22868,22913,22920,22958,22960,22965,22967,23095,23104,23110]]],["+",[11,11,[[2,1,1,0,1,[[111,1,1,0,1]]],[5,1,1,1,2,[[207,1,1,1,2]]],[11,3,3,2,5,[[328,1,1,2,3],[329,2,2,3,5]]],[13,1,1,5,6,[[395,1,1,5,6]]],[14,1,1,6,7,[[405,1,1,6,7]]],[15,1,1,7,8,[[424,1,1,7,8]]],[23,1,1,8,9,[[762,1,1,8,9]]],[25,2,2,9,11,[[808,1,1,9,10],[845,1,1,10,11]]]],[3383,6394,9973,10010,10011,11825,12109,12659,19402,20603,21621]]],["Priests",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18849]]],["officer",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8849]]],["own",[2,2,[[2,2,2,0,2,[[103,2,2,0,2]]]],[3126,3137]]],["priest",[416,363,[[0,4,4,0,4,[[13,1,1,0,1],[40,2,2,1,3],[45,1,1,3,4]]],[1,8,8,4,12,[[51,1,1,4,5],[52,1,1,5,6],[67,1,1,6,7],[78,1,1,7,8],[80,1,1,8,9],[84,1,1,9,10],[87,1,1,10,11],[88,1,1,11,12]]],[2,172,137,12,149,[[90,6,6,12,18],[91,4,4,18,22],[92,2,2,22,24],[93,16,14,24,38],[94,10,7,38,45],[95,7,7,45,52],[96,7,6,52,58],[101,2,2,58,60],[102,55,40,60,100],[103,34,27,100,127],[104,6,4,127,131],[105,1,1,131,132],[106,2,2,132,134],[108,1,1,134,135],[110,3,3,135,138],[111,2,2,138,140],[112,4,3,140,143],[116,10,6,143,149]]],[3,67,61,149,210,[[119,2,2,149,151],[120,3,3,151,154],[121,16,13,154,167],[122,7,6,167,173],[123,1,1,173,174],[131,2,2,174,176],[132,2,2,176,178],[134,1,1,178,179],[135,5,4,179,183],[141,2,2,183,185],[142,4,4,185,189],[143,4,4,189,193],[147,10,10,193,203],[148,2,2,203,205],[149,1,1,205,206],[150,1,1,206,207],[151,4,3,207,210]]],[4,5,5,210,215,[[169,1,1,210,211],[170,1,1,211,212],[172,1,1,212,213],[178,2,2,213,215]]],[5,10,10,215,225,[[200,1,1,215,216],[203,1,1,216,217],[205,1,1,217,218],[206,1,1,218,219],[207,2,2,219,221],[208,4,4,221,225]]],[6,13,11,225,236,[[227,4,4,225,229],[228,9,7,229,236]]],[8,19,18,236,254,[[236,1,1,236,237],[237,5,5,237,242],[249,4,3,242,245],[256,6,6,245,251],[257,1,1,251,252],[258,1,1,252,253],[265,1,1,253,254]]],[9,1,1,254,255,[[281,1,1,254,255]]],[10,17,17,255,272,[[291,12,12,255,267],[292,4,4,267,271],[294,1,1,271,272]]],[11,24,19,272,291,[[323,7,4,272,276],[324,4,4,276,280],[328,4,3,280,283],[334,5,5,283,288],[335,2,2,288,290],[337,2,1,290,291]]],[12,4,4,291,295,[[353,1,1,291,292],[361,1,1,292,293],[364,1,1,293,294],[366,1,1,294,295]]],[13,19,17,295,312,[[379,1,1,295,296],[381,1,1,296,297],[385,1,1,297,298],[388,1,1,298,299],[389,6,4,299,303],[390,3,3,303,306],[392,2,2,306,308],[397,1,1,308,309],[400,3,3,309,312]]],[14,6,6,312,318,[[404,1,1,312,313],[409,2,2,313,315],[410,1,1,315,316],[412,2,2,316,318]]],[15,10,10,318,328,[[415,2,2,318,320],[419,1,1,320,321],[420,2,2,321,323],[422,1,1,323,324],[424,1,1,324,325],[425,3,3,325,328]]],[18,1,1,328,329,[[587,1,1,328,329]]],[22,3,3,329,332,[[686,1,1,329,330],[702,1,1,330,331],[706,1,1,331,332]]],[23,15,13,332,345,[[750,1,1,332,333],[752,1,1,333,334],[758,1,1,334,335],[764,1,1,335,336],[765,1,1,336,337],[767,3,3,337,340],[773,4,3,340,343],[781,1,1,343,344],[796,2,1,344,345]]],[24,2,2,345,347,[[798,2,2,345,347]]],[25,4,4,347,351,[[802,1,1,347,348],[845,2,2,348,350],[846,1,1,350,351]]],[27,2,2,351,353,[[865,2,2,351,353]]],[29,1,1,353,354,[[885,1,1,353,354]]],[36,5,5,354,359,[[909,3,3,354,357],[910,2,2,357,359]]],[37,4,4,359,363,[[913,2,2,359,361],[916,2,2,361,363]]]],[354,1240,1245,1406,1570,1580,2000,2366,2430,2550,2654,2705,2752,2754,2757,2758,2760,2762,2764,2770,2771,2778,2789,2794,2798,2800,2801,2802,2805,2811,2812,2815,2820,2821,2825,2826,2829,2830,2836,2838,2840,2842,2843,2846,2848,2855,2856,2859,2861,2871,2872,2875,2884,2886,2887,2910,2911,2913,3050,3052,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3067,3068,3069,3071,3072,3073,3074,3075,3077,3078,3079,3080,3082,3083,3084,3085,3086,3088,3089,3091,3095,3096,3101,3102,3105,3106,3107,3108,3113,3114,3115,3116,3122,3123,3125,3126,3127,3128,3129,3130,3131,3134,3135,3136,3137,3138,3139,3142,3146,3147,3149,3150,3151,3155,3159,3182,3183,3197,3198,3233,3240,3241,3303,3354,3355,3366,3379,3380,3412,3413,3422,3578,3581,3582,3584,3588,3593,3698,3724,3759,3771,3776,3800,3801,3802,3807,3808,3809,3810,3811,3813,3815,3817,3818,3822,3833,3834,3839,3840,3842,3843,3858,4178,4181,4231,4233,4285,4292,4293,4295,4296,4478,4482,4490,4492,4552,4553,4556,4573,4575,4576,4670,4676,4677,4685,4690,4693,4695,4705,4715,4718,4720,4746,4798,4833,4870,4873,4877,5376,5387,5429,5569,5570,6188,6279,6372,6378,6382,6385,6439,6456,6457,6458,6985,6990,6992,6993,6997,6999,7010,7011,7012,7017,7020,7221,7251,7254,7255,7268,7275,7511,7527,7544,7773,7774,7776,7777,7778,7781,7798,7819,7985,8416,8724,8725,8736,8742,8743,8749,8751,8755,8756,8759,8761,8762,8792,8796,8797,8805,8846,9838,9839,9844,9847,9852,9857,9859,9860,9974,9978,9979,10149,10153,10155,10157,10159,10169,10189,10240,10859,11021,11114,11186,11462,11493,11587,11655,11664,11665,11670,11673,11679,11697,11702,11749,11752,11864,11942,11947,11951,12090,12178,12184,12234,12262,12268,12328,12347,12485,12495,12502,12587,12650,12675,12684,12699,15790,17809,18097,18171,19102,19163,19311,19423,19441,19495,19517,19518,19660,19661,19664,19877,20300,20338,20352,20467,21620,21629,21649,22137,22142,22474,22841,22852,22854,22857,22859,22913,22920,22958,22960]]],["priest's",[16,16,[[2,9,9,0,9,[[94,1,1,0,1],[96,2,2,1,3],[103,3,3,3,6],[111,2,2,6,8],[116,1,1,8,9]]],[4,1,1,9,10,[[170,1,1,9,10]]],[6,1,1,10,11,[[228,1,1,10,11]]],[8,2,2,11,13,[[237,2,2,11,13]]],[13,1,1,13,14,[[390,1,1,13,14]]],[25,1,1,14,15,[[845,1,1,14,15]]],[38,1,1,15,16,[[926,1,1,15,16]]]],[2843,2888,2893,3124,3129,3140,3381,3382,3591,5387,7013,7253,7255,11688,21629,23110]]],["priests",[293,272,[[0,3,2,0,2,[[46,3,2,0,2]]],[1,3,3,2,5,[[68,3,3,2,5]]],[2,10,10,5,15,[[90,3,3,5,8],[91,1,1,8,9],[92,1,1,9,10],[95,1,1,10,11],[96,1,1,11,12],[102,1,1,12,13],[105,1,1,13,14],[110,1,1,14,15]]],[3,2,2,15,17,[[119,1,1,15,16],[126,1,1,16,17]]],[4,8,8,17,25,[[169,2,2,17,19],[170,1,1,19,20],[171,1,1,20,21],[173,1,1,21,22],[176,1,1,22,23],[179,1,1,23,24],[183,1,1,24,25]]],[5,24,22,25,47,[[189,7,7,25,32],[190,6,6,32,38],[192,9,7,38,45],[194,1,1,45,46],[207,1,1,46,47]]],[6,1,1,47,48,[[228,1,1,47,48]]],[8,10,8,48,56,[[236,1,1,48,49],[240,1,1,49,50],[241,1,1,50,51],[257,7,5,51,56]]],[9,6,5,56,61,[[274,1,1,56,57],[281,2,1,57,58],[283,1,1,58,59],[285,1,1,59,60],[286,1,1,60,61]]],[10,11,10,61,71,[[294,1,1,61,62],[298,5,5,62,67],[302,2,2,67,69],[303,3,2,69,71]]],[11,16,15,71,86,[[322,2,2,71,73],[324,6,6,73,79],[329,1,1,79,80],[331,1,1,80,81],[335,6,5,81,86]]],[12,15,15,86,101,[[346,3,3,86,89],[350,1,1,89,90],[352,3,3,90,93],[353,2,2,93,95],[355,1,1,95,96],[360,1,1,96,97],[361,2,2,97,99],[365,2,2,99,101]]],[13,68,57,101,158,[[370,2,2,101,103],[371,6,5,103,108],[372,1,1,108,109],[373,3,2,109,111],[374,3,2,111,113],[377,2,2,113,115],[379,5,4,115,119],[383,1,1,119,120],[385,1,1,120,121],[389,3,3,121,124],[390,1,1,124,125],[392,5,4,125,129],[395,8,7,129,136],[396,7,7,136,143],[397,8,6,143,149],[400,2,2,149,151],[401,9,6,151,157],[402,1,1,157,158]]],[14,18,17,158,175,[[403,1,1,158,159],[404,3,3,159,162],[405,3,3,162,165],[408,2,1,165,166],[409,1,1,166,167],[410,4,4,167,171],[411,2,2,171,173],[412,2,2,173,175]]],[15,31,30,175,205,[[414,1,1,175,176],[415,3,3,176,179],[417,1,1,179,180],[419,3,3,180,183],[420,1,1,183,184],[421,3,3,184,187],[422,6,6,187,193],[423,3,3,193,196],[424,8,7,196,203],[425,2,2,203,205]]],[18,4,4,205,209,[[555,1,1,205,206],[576,1,1,206,207],[609,2,2,207,209]]],[22,2,2,209,211,[[715,1,1,209,210],[744,1,1,210,211]]],[23,25,25,211,236,[[745,2,2,211,213],[746,2,2,213,215],[748,1,1,215,216],[749,1,1,216,217],[752,1,1,217,218],[757,1,1,218,219],[763,1,1,219,220],[770,4,4,220,224],[771,1,1,224,225],[772,2,2,225,227],[773,2,2,227,229],[775,1,1,229,230],[776,1,1,230,231],[777,2,2,231,233],[778,1,1,233,234],[792,1,1,234,235],[793,1,1,235,236]]],[24,4,4,236,240,[[797,2,2,236,238],[800,2,2,238,240]]],[25,17,17,240,257,[[823,1,1,240,241],[841,2,2,241,243],[843,2,2,243,245],[844,3,3,245,248],[845,2,2,248,250],[846,1,1,250,251],[847,3,3,251,254],[849,3,3,254,257]]],[27,2,2,257,259,[[866,1,1,257,258],[867,1,1,258,259]]],[28,3,3,259,262,[[876,2,2,259,261],[877,1,1,261,262]]],[32,1,1,262,263,[[895,1,1,262,263]]],[35,2,2,263,265,[[906,1,1,263,264],[908,1,1,264,265]]],[36,3,3,265,268,[[910,3,3,265,268]]],[37,2,2,268,270,[[917,2,2,268,270]]],[38,2,2,270,272,[[925,1,1,270,271],[926,1,1,271,272]]]],[1442,1446,2032,2048,2050,2750,2753,2756,2764,2780,2878,2885,3054,3234,3346,3695,3996,5373,5382,5385,5423,5452,5533,5594,5737,5896,5899,5901,5906,5907,5908,5910,5919,5920,5921,5926,5927,5928,5953,5955,5957,5958,5961,5962,5965,6035,6400,7023,7215,7324,7333,7798,7804,7805,7806,7808,8226,8424,8464,8522,8579,8848,8988,8989,8991,8995,8996,9182,9183,9186,9217,9804,9812,9854,9855,9856,9857,9858,9859,10015,10063,10167,10169,10173,10174,10185,10617,10625,10645,10762,10802,10805,10815,10826,10859,10906,10985,11021,11046,11156,11164,11252,11255,11273,11275,11279,11280,11282,11323,11326,11330,11360,11361,11427,11429,11462,11463,11465,11467,11531,11584,11660,11662,11674,11682,11749,11750,11751,11752,11795,11807,11812,11813,11815,11817,11825,11830,11842,11843,11848,11851,11852,11854,11856,11858,11863,11869,11871,11873,11938,11963,11968,11974,11976,11977,11980,11984,12007,12021,12063,12088,12097,12099,12105,12107,12171,12180,12216,12225,12230,12231,12238,12244,12257,12270,12323,12328,12349,12355,12394,12459,12483,12493,12506,12543,12545,12549,12557,12577,12583,12585,12586,12588,12591,12598,12608,12625,12631,12636,12646,12654,12665,12668,12676,12701,15177,15505,16160,16167,18354,18943,18947,18964,18973,18991,19036,19089,19154,19279,19408,19579,19580,19583,19588,19612,19619,19623,19636,19660,19705,19763,19793,19796,19820,20087,20130,20314,20329,20433,20436,21002,21522,21523,21565,21566,21591,21596,21599,21614,21630,21634,21657,21674,21675,21712,21713,21715,22153,22176,22300,22304,22328,22619,22791,22824,22866,22867,22868,22965,22967,23095,23104]]],["priests'",[7,7,[[5,2,2,0,2,[[190,2,2,0,2]]],[8,1,1,2,3,[[237,1,1,2,3]]],[11,1,1,3,4,[[324,1,1,3,4]]],[14,1,1,4,5,[[404,1,1,4,5]]],[15,2,2,5,7,[[419,2,2,5,7]]]],[5913,5928,7253,9866,12096,12490,12492]]],["princes",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13147]]],["ruler",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8580]]],["rulers",[1,1,[[9,1,1,0,1,[[274,1,1,0,1]]]],[8227]]]]},{"k":"H3549","v":[["*",[8,8,[[14,8,8,0,8,[[408,3,3,0,3],[409,5,5,3,8]]]],[12160,12167,12169,12185,12186,12189,12194,12197]]],["priest",[2,2,[[14,2,2,0,2,[[409,2,2,0,2]]]],[12185,12194]]],["priests",[6,6,[[14,6,6,0,6,[[408,3,3,0,3],[409,3,3,3,6]]]],[12160,12167,12169,12186,12189,12197]]]]},{"k":"H3550","v":[["*",[14,12,[[1,2,2,0,2,[[78,1,1,0,1],[89,1,1,1,2]]],[3,6,5,2,7,[[119,1,1,2,3],[132,1,1,3,4],[134,3,2,4,6],[141,1,1,6,7]]],[5,1,1,7,8,[[204,1,1,7,8]]],[8,1,1,8,9,[[237,1,1,8,9]]],[14,1,1,9,10,[[404,1,1,9,10]]],[15,3,2,10,12,[[419,1,1,10,11],[425,2,1,11,12]]]],[2345,2722,3702,4204,4258,4264,4484,6300,7276,12089,12484,12700]]],["office",[4,3,[[1,1,1,0,1,[[78,1,1,0,1]]],[3,3,2,1,3,[[119,1,1,1,2],[134,2,1,2,3]]]],[2345,3702,4264]]],["offices",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7276]]],["priesthood",[9,8,[[1,1,1,0,1,[[89,1,1,0,1]]],[3,3,3,1,4,[[132,1,1,1,2],[134,1,1,2,3],[141,1,1,3,4]]],[5,1,1,4,5,[[204,1,1,4,5]]],[14,1,1,5,6,[[404,1,1,5,6]]],[15,3,2,6,8,[[419,1,1,6,7],[425,2,1,7,8]]]],[2722,4204,4258,4484,6300,12089,12484,12700]]]]},{"k":"H3551","v":[["windows",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21915]]]]},{"k":"H3552","v":[["Chub",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21209]]]]},{"k":"H3553","v":[["*",[6,6,[[8,1,1,0,1,[[252,1,1,0,1]]],[13,1,1,1,2,[[392,1,1,1,2]]],[22,1,1,2,3,[[737,1,1,2,3]]],[23,1,1,3,4,[[790,1,1,3,4]]],[25,2,2,4,6,[[828,1,1,4,5],[839,1,1,5,6]]]],[7623,11746,18817,20049,21131,21430]]],["helmet",[4,4,[[8,1,1,0,1,[[252,1,1,0,1]]],[22,1,1,1,2,[[737,1,1,1,2]]],[25,2,2,2,4,[[828,1,1,2,3],[839,1,1,3,4]]]],[7623,18817,21131,21430]]],["helmets",[2,2,[[13,1,1,0,1,[[392,1,1,0,1]]],[23,1,1,1,2,[[790,1,1,1,2]]]],[11746,20049]]]]},{"k":"H3554","v":[["burned",[2,2,[[19,1,1,0,1,[[633,1,1,0,1]]],[22,1,1,1,2,[[721,1,1,1,2]]]],[16568,18507]]]]},{"k":"H3555","v":[["*",[2,1,[[1,2,1,0,1,[[70,2,1,0,1]]]],[2102]]],["Burning",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2102]]],["burning",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2102]]]]},{"k":"H3556","v":[["*",[37,37,[[0,5,5,0,5,[[0,1,1,0,1],[14,1,1,1,2],[21,1,1,2,3],[25,1,1,3,4],[36,1,1,4,5]]],[1,1,1,5,6,[[81,1,1,5,6]]],[3,1,1,6,7,[[140,1,1,6,7]]],[4,4,4,7,11,[[153,1,1,7,8],[156,1,1,8,9],[162,1,1,9,10],[180,1,1,10,11]]],[6,1,1,11,12,[[215,1,1,11,12]]],[12,1,1,12,13,[[364,1,1,12,13]]],[15,2,2,13,15,[[416,1,1,13,14],[421,1,1,14,15]]],[17,5,5,15,20,[[438,1,1,15,16],[444,1,1,16,17],[457,1,1,17,18],[460,1,1,18,19],[473,1,1,19,20]]],[18,4,4,20,24,[[485,1,1,20,21],[613,1,1,21,22],[624,1,1,22,23],[625,1,1,23,24]]],[20,1,1,24,25,[[670,1,1,24,25]]],[22,3,3,25,28,[[691,1,1,25,26],[692,1,1,26,27],[725,1,1,27,28]]],[23,1,1,28,29,[[775,1,1,28,29]]],[25,1,1,29,30,[[833,1,1,29,30]]],[26,2,2,30,32,[[857,1,1,30,31],[861,1,1,31,32]]],[28,2,2,32,34,[[877,1,1,32,33],[878,1,1,33,34]]],[29,1,1,34,35,[[883,1,1,34,35]]],[30,1,1,35,36,[[888,1,1,35,36]]],[33,1,1,36,37,[[902,1,1,36,37]]]],[15,365,564,696,1092,2451,4463,4902,5023,5208,5673,6643,11132,12380,12534,12913,13058,13401,13466,13800,14015,16205,16355,16374,17525,17916,17941,18612,19726,21255,21971,22084,22321,22358,22449,22514,22728]]],["+",[3,3,[[22,1,1,0,1,[[725,1,1,0,1]]],[25,1,1,1,2,[[833,1,1,1,2]]],[33,1,1,2,3,[[902,1,1,2,3]]]],[18612,21255,22728]]],["Star",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4463]]],["star",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22449]]],["stars",[32,32,[[0,5,5,0,5,[[0,1,1,0,1],[14,1,1,1,2],[21,1,1,2,3],[25,1,1,3,4],[36,1,1,4,5]]],[1,1,1,5,6,[[81,1,1,5,6]]],[4,4,4,6,10,[[153,1,1,6,7],[156,1,1,7,8],[162,1,1,8,9],[180,1,1,9,10]]],[6,1,1,10,11,[[215,1,1,10,11]]],[12,1,1,11,12,[[364,1,1,11,12]]],[15,2,2,12,14,[[416,1,1,12,13],[421,1,1,13,14]]],[17,5,5,14,19,[[438,1,1,14,15],[444,1,1,15,16],[457,1,1,16,17],[460,1,1,17,18],[473,1,1,18,19]]],[18,4,4,19,23,[[485,1,1,19,20],[613,1,1,20,21],[624,1,1,21,22],[625,1,1,22,23]]],[20,1,1,23,24,[[670,1,1,23,24]]],[22,2,2,24,26,[[691,1,1,24,25],[692,1,1,25,26]]],[23,1,1,26,27,[[775,1,1,26,27]]],[26,2,2,27,29,[[857,1,1,27,28],[861,1,1,28,29]]],[28,2,2,29,31,[[877,1,1,29,30],[878,1,1,30,31]]],[30,1,1,31,32,[[888,1,1,31,32]]]],[15,365,564,696,1092,2451,4902,5023,5208,5673,6643,11132,12380,12534,12913,13058,13401,13466,13800,14015,16205,16355,16374,17525,17916,17941,19726,21971,22084,22321,22358,22514]]]]},{"k":"H3557","v":[["*",[38,37,[[0,3,3,0,3,[[44,1,1,0,1],[46,1,1,1,2],[49,1,1,2,3]]],[7,1,1,3,4,[[235,1,1,3,4]]],[9,3,3,4,7,[[285,2,2,4,6],[286,1,1,6,7]]],[10,12,11,7,18,[[294,3,2,7,9],[297,2,2,9,11],[298,2,2,11,13],[307,2,2,13,15],[308,2,2,15,17],[310,1,1,17,18]]],[13,4,4,18,22,[[368,1,1,18,19],[370,1,1,19,20],[372,1,1,20,21],[373,1,1,21,22]]],[15,1,1,22,23,[[421,1,1,22,23]]],[18,2,2,23,25,[[532,1,1,23,24],[589,1,1,24,25]]],[19,1,1,25,26,[[645,1,1,25,26]]],[22,1,1,26,27,[[718,1,1,26,27]]],[23,4,4,27,31,[[746,1,1,27,28],[750,1,1,28,29],[754,1,1,29,30],[764,1,1,30,31]]],[25,2,2,31,33,[[822,1,1,31,32],[824,1,1,32,33]]],[28,1,1,33,34,[[877,1,1,33,34]]],[29,1,1,34,35,[[885,1,1,34,35]]],[37,1,1,35,36,[[921,1,1,35,36]]],[38,1,1,36,37,[[927,1,1,36,37]]]],[1369,1432,1527,7205,8543,8544,8557,8851,8871,8960,8972,9012,9049,9321,9326,9345,9354,9435,11217,11251,11300,11331,12532,14754,15808,16915,18432,18978,19100,19211,19431,20972,21039,22322,22474,23044,23122]]],["+",[5,5,[[0,1,1,0,1,[[46,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[13,1,1,2,3,[[373,1,1,2,3]]],[29,1,1,3,4,[[885,1,1,3,4]]],[38,1,1,4,5,[[927,1,1,4,5]]]],[1432,9049,11331,22474,23122]]],["abide",[2,2,[[23,1,1,0,1,[[754,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[19211,22322]]],["comprehended",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18432]]],["consume",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20972]]],["contain",[3,3,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,2,2,1,3,[[368,1,1,1,2],[372,1,1,2,3]]]],[9012,11217,11300]]],["contained",[2,2,[[10,2,2,0,2,[[297,2,2,0,2]]]],[8960,8972]]],["containeth",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21039]]],["fed",[3,3,[[9,1,1,0,1,[[286,1,1,0,1]]],[10,2,2,1,3,[[308,2,2,1,3]]]],[8557,9345,9354]]],["feed",[3,3,[[9,1,1,0,1,[[285,1,1,0,1]]],[10,1,1,1,2,[[307,1,1,1,2]]],[37,1,1,2,3,[[921,1,1,2,3]]]],[8544,9321,23044]]],["forbearing",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19431]]],["guide",[1,1,[[18,1,1,0,1,[[589,1,1,0,1]]]],[15808]]],["held",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11251]]],["hold",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18978]]],["holding",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19100]]],["nourish",[2,2,[[0,2,2,0,2,[[44,1,1,0,1],[49,1,1,1,2]]]],[1369,1527]]],["nourisher",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7205]]],["present",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9435]]],["provision",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8851]]],["sustain",[4,4,[[10,1,1,0,1,[[307,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[18,1,1,2,3,[[532,1,1,2,3]]],[19,1,1,3,4,[[645,1,1,3,4]]]],[9326,12532,14754,16915]]],["sustenance",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8543]]],["victual",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8871]]],["victuals",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8851]]]]},{"k":"H3558","v":[["tablets",[2,2,[[1,1,1,0,1,[[84,1,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]]],[2553,4714]]]]},{"k":"H3559","v":[["*",[217,209,[[0,3,3,0,3,[[40,1,1,0,1],[42,2,2,1,3]]],[1,7,7,3,10,[[57,1,1,3,4],[64,1,1,4,5],[65,1,1,5,6],[68,2,2,6,8],[72,1,1,8,9],[83,1,1,9,10]]],[3,3,3,10,13,[[137,1,1,10,11],[139,2,2,11,13]]],[4,4,4,13,17,[[165,1,1,13,14],[169,1,1,14,15],[171,1,1,15,16],[184,1,1,16,17]]],[5,5,5,17,22,[[187,1,1,17,18],[189,1,1,18,19],[190,2,2,19,21],[194,1,1,21,22]]],[6,3,3,22,25,[[222,1,1,22,23],[226,2,2,23,25]]],[8,6,6,25,31,[[242,1,1,25,26],[248,1,1,26,27],[255,1,1,27,28],[258,2,2,28,30],[261,1,1,30,31]]],[9,6,6,31,37,[[271,1,1,31,32],[273,5,5,32,37]]],[10,6,6,37,43,[[292,4,4,37,41],[295,1,1,41,42],[296,1,1,42,43]]],[12,24,22,43,65,[[346,1,1,43,44],[349,1,1,44,45],[351,1,1,45,46],[352,3,3,46,49],[353,1,1,49,50],[354,4,4,50,54],[359,6,4,54,58],[365,2,2,58,60],[366,5,5,60,65]]],[13,26,24,65,89,[[367,1,1,65,66],[368,2,2,66,68],[369,1,1,68,69],[374,1,1,69,70],[378,2,2,70,72],[383,1,1,72,73],[385,1,1,73,74],[386,1,1,74,75],[392,1,1,75,76],[393,1,1,76,77],[395,3,3,77,80],[396,1,1,80,81],[397,2,1,81,82],[401,8,7,82,89]]],[14,2,2,89,91,[[405,1,1,89,90],[409,1,1,90,91]]],[15,1,1,91,92,[[420,1,1,91,92]]],[16,2,2,92,94,[[431,1,1,92,93],[432,1,1,93,94]]],[17,15,15,94,109,[[443,1,1,94,95],[446,1,1,95,96],[447,1,1,96,97],[450,2,2,97,99],[453,1,1,99,100],[456,1,1,100,101],[462,2,2,101,103],[463,1,1,103,104],[464,1,1,104,105],[466,1,1,105,106],[473,1,1,106,107],[477,2,2,107,109]]],[18,52,49,109,158,[[482,1,1,109,110],[484,3,3,110,113],[485,1,1,113,114],[486,1,1,114,115],[487,1,1,115,116],[488,1,1,116,117],[498,1,1,117,118],[501,1,1,118,119],[514,1,1,119,120],[515,1,1,120,121],[517,1,1,121,122],[525,1,1,122,123],[528,1,1,123,124],[534,3,2,124,126],[536,1,1,126,127],[542,3,2,127,129],[545,2,2,129,131],[551,1,1,131,132],[555,3,3,132,135],[564,1,1,135,136],[566,4,4,136,140],[567,2,1,140,141],[570,2,2,141,143],[573,1,1,143,144],[576,1,1,144,145],[578,1,1,145,146],[579,1,1,146,147],[580,1,1,147,148],[584,1,1,148,149],[585,1,1,149,150],[589,1,1,150,151],[596,4,4,151,155],[617,1,1,155,156],[618,1,1,156,157],[624,1,1,157,158]]],[19,19,19,158,177,[[630,1,1,158,159],[631,2,2,159,161],[633,1,1,161,162],[635,1,1,162,163],[639,2,2,163,165],[643,3,3,165,168],[646,1,1,168,169],[647,1,1,169,170],[648,1,1,170,171],[649,1,1,171,172],[651,2,2,172,174],[652,1,1,174,175],[656,1,1,175,176],[657,1,1,176,177]]],[22,10,10,177,187,[[680,1,1,177,178],[687,1,1,178,179],[692,1,1,179,180],[694,1,1,180,181],[708,1,1,181,182],[718,1,1,182,183],[723,1,1,183,184],[729,1,1,184,185],[732,1,1,185,186],[740,1,1,186,187]]],[23,7,7,187,194,[[754,2,2,187,189],[774,1,1,189,190],[777,1,1,190,191],[790,1,1,191,192],[795,2,2,192,194]]],[25,8,7,194,201,[[805,2,2,194,196],[808,1,1,196,197],[817,1,1,197,198],[829,1,1,198,199],[839,2,1,199,200],[841,1,1,200,201]]],[27,1,1,201,202,[[867,1,1,201,202]]],[29,1,1,202,203,[[882,1,1,202,203]]],[32,1,1,203,204,[[896,1,1,203,204]]],[33,2,2,204,206,[[901,2,2,204,206]]],[34,1,1,206,207,[[904,1,1,206,207]]],[35,1,1,207,208,[[906,1,1,207,208]]],[37,1,1,208,209,[[915,1,1,208,209]]]],[1227,1306,1315,1736,1937,1952,2037,2041,2164,2498,4367,4417,4445,5286,5368,5409,5764,5862,5910,5913,5914,6006,6875,6975,6978,7355,7498,7761,7832,7833,7909,8144,8192,8193,8196,8204,8206,8782,8794,8815,8816,8896,8915,10647,10759,10776,10792,10794,10803,10850,10874,10875,10877,10887,10967,10969,10974,10978,11145,11150,11166,11167,11180,11182,11183,11198,11218,11220,11230,11362,11438,11451,11528,11579,11620,11746,11761,11810,11826,11827,11846,11865,11970,11972,11976,11980,11981,11982,11986,12100,12183,12503,12797,12817,13037,13121,13133,13226,13238,13288,13363,13497,13498,13531,13539,13603,13834,13929,13930,13982,14004,14007,14008,14015,14028,14058,14061,14203,14243,14473,14507,14527,14642,14701,14774,14775,14794,14866,14869,14909,14910,15064,15121,15133,15150,15306,15328,15330,15347,15363,15395,15427,15428,15475,15503,15520,15549,15568,15735,15743,15810,15903,15971,15988,16031,16274,16278,16359,16474,16508,16516,16548,16629,16722,16738,16843,16849,16852,16954,16972,17015,17033,17082,17106,17118,17238,17276,17687,17836,17949,17974,18250,18440,18579,18686,18737,18861,19213,19224,19687,19777,20059,20224,20227,20532,20536,20591,20769,21170,21432,21520,22170,22422,22621,22702,22704,22760,22794,22947]]],["+",[15,15,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,1,1,1,2,[[65,1,1,1,2]]],[8,1,1,2,3,[[248,1,1,2,3]]],[9,2,2,3,5,[[273,2,2,3,5]]],[12,3,3,5,8,[[354,2,2,5,7],[365,1,1,7,8]]],[13,2,2,8,10,[[383,1,1,8,9],[401,1,1,9,10]]],[18,2,2,10,12,[[555,2,2,10,12]]],[23,1,1,12,13,[[754,1,1,12,13]]],[25,2,2,13,15,[[805,1,1,13,14],[808,1,1,14,15]]]],[1315,1952,7498,8192,8193,10874,10875,11150,11528,11986,15121,15150,19224,20532,20591]]],["Order",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16031]]],["Prepare",[3,3,[[5,1,1,0,1,[[187,1,1,0,1]]],[19,1,1,1,2,[[651,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]]],[5862,17106,17949]]],["Provideth",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16548]]],["certain",[2,2,[[4,2,2,0,2,[[165,1,1,0,1],[169,1,1,1,2]]]],[5286,5368]]],["certainty",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7833]]],["confirm",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14909]]],["confirmed",[2,2,[[9,1,1,0,1,[[273,1,1,0,1]]],[12,1,1,1,2,[[351,1,1,1,2]]]],[8204,10776]]],["deed",[1,1,[[8,1,1,0,1,[[261,1,1,0,1]]]],[7909]]],["directed",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15903]]],["directeth",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16849]]],["establish",[11,10,[[12,1,1,0,1,[[359,1,1,0,1]]],[18,8,7,1,8,[[484,1,1,1,2],[525,1,1,2,3],[564,1,1,3,4],[566,2,2,4,6],[567,2,1,6,7],[576,1,1,7,8]]],[22,1,1,8,9,[[740,1,1,8,9]]],[23,1,1,9,10,[[777,1,1,9,10]]]],[10974,14004,14642,15306,15328,15330,15395,15503,18861,19777]]],["established",[43,43,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[8,1,1,3,4,[[255,1,1,3,4]]],[9,3,3,4,7,[[271,1,1,4,5],[273,2,2,5,7]]],[10,4,4,7,11,[[292,4,4,7,11]]],[12,2,2,11,13,[[354,2,2,11,13]]],[13,1,1,13,14,[[378,1,1,13,14]]],[17,1,1,14,15,[[456,1,1,14,15]]],[18,9,9,15,24,[[501,1,1,15,16],[517,1,1,16,17],[566,2,2,17,19],[570,1,1,19,20],[573,1,1,20,21],[579,1,1,21,22],[596,1,1,22,23],[617,1,1,23,24]]],[19,10,10,24,34,[[630,1,1,24,25],[631,1,1,25,26],[639,2,2,26,28],[643,2,2,28,30],[647,1,1,30,31],[651,1,1,31,32],[652,1,1,32,33],[656,1,1,33,34]]],[22,4,4,34,38,[[680,1,1,34,35],[694,1,1,35,36],[723,1,1,36,37],[732,1,1,37,38]]],[23,3,3,38,41,[[754,1,1,38,39],[774,1,1,39,40],[795,1,1,40,41]]],[32,1,1,41,42,[[896,1,1,41,42]]],[37,1,1,42,43,[[915,1,1,42,43]]]],[1227,1937,5764,7761,8144,8196,8206,8782,8794,8815,8816,10877,10887,11438,13363,14243,14527,15347,15363,15428,15475,15549,15988,16274,16474,16516,16722,16738,16843,16852,16972,17082,17118,17238,17687,17974,18579,18737,19213,19687,20227,22621,22947]]],["faithfulness",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13982]]],["fashion",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13603]]],["fashioned",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[15971,20769]]],["fast",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14866]]],["fastened",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21520]]],["firm",[2,2,[[5,2,2,0,2,[[189,1,1,0,1],[190,1,1,1,2]]]],[5910,5913]]],["fitted",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17033]]],["fixed",[4,3,[[18,4,3,0,3,[[534,2,1,0,1],[585,1,1,1,2],[589,1,1,2,3]]]],[14775,15743,15810]]],["forth",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16278]]],["frame",[1,1,[[6,1,1,0,1,[[222,1,1,0,1]]]],[6875]]],["meet",[1,1,[[1,1,1,0,1,[[57,1,1,0,1]]]],[1736]]],["ordained",[1,1,[[18,1,1,0,1,[[485,1,1,0,1]]]],[14015]]],["order",[2,2,[[13,1,1,0,1,[[395,1,1,0,1]]],[22,1,1,1,2,[[687,1,1,1,2]]]],[11826,17836]]],["ordered",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14473]]],["perfect",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16508]]],["preparation",[2,2,[[12,1,1,0,1,[[359,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[10969,22702]]],["prepare",[23,23,[[3,2,2,0,2,[[139,2,2,0,2]]],[4,1,1,2,3,[[171,1,1,2,3]]],[8,2,2,3,5,[[242,1,1,3,4],[258,1,1,4,5]]],[12,2,2,5,7,[[346,1,1,5,6],[366,1,1,6,7]]],[13,4,4,7,11,[[368,1,1,7,8],[397,1,1,8,9],[401,2,2,9,11]]],[17,4,4,11,15,[[443,1,1,11,12],[446,1,1,12,13],[462,2,2,13,15]]],[18,2,2,15,17,[[487,1,1,15,16],[584,1,1,16,17]]],[19,1,1,17,18,[[657,1,1,17,18]]],[22,1,1,18,19,[[718,1,1,18,19]]],[23,2,2,19,21,[[790,1,1,19,20],[795,1,1,20,21]]],[25,1,1,21,22,[[839,1,1,21,22]]],[29,1,1,22,23,[[882,1,1,22,23]]]],[4417,4445,5409,7355,7832,10647,11182,11220,11865,11970,11972,13037,13121,13497,13498,14058,15735,17276,18440,20059,20224,21432,22422]]],["prepared",[52,51,[[1,1,1,0,1,[[72,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[5,1,1,2,3,[[190,1,1,2,3]]],[10,2,2,3,5,[[295,1,1,3,4],[296,1,1,4,5]]],[12,11,10,5,15,[[349,1,1,5,6],[352,3,3,6,9],[359,4,3,9,12],[366,3,3,12,15]]],[13,15,15,15,30,[[367,1,1,15,16],[369,1,1,16,17],[374,1,1,17,18],[378,1,1,18,19],[385,1,1,19,20],[386,1,1,20,21],[392,1,1,21,22],[393,1,1,22,23],[395,2,2,23,25],[397,1,1,25,26],[401,4,4,26,30]]],[14,1,1,30,31,[[409,1,1,30,31]]],[15,1,1,31,32,[[420,1,1,31,32]]],[16,2,2,32,34,[[431,1,1,32,33],[432,1,1,33,34]]],[17,2,2,34,36,[[463,1,1,34,35],[464,1,1,35,36]]],[18,6,6,36,42,[[484,1,1,36,37],[486,1,1,37,38],[534,1,1,38,39],[545,1,1,39,40],[551,1,1,40,41],[580,1,1,41,42]]],[19,3,3,42,45,[[635,1,1,42,43],[646,1,1,43,44],[648,1,1,44,45]]],[22,1,1,45,46,[[708,1,1,45,46]]],[25,2,2,46,48,[[829,1,1,46,47],[839,1,1,47,48]]],[27,1,1,48,49,[[867,1,1,48,49]]],[33,1,1,49,50,[[901,1,1,49,50]]],[35,1,1,50,51,[[906,1,1,50,51]]]],[2164,4367,5914,8896,8915,10759,10792,10794,10803,10967,10969,10978,11166,11167,11180,11198,11230,11362,11451,11579,11620,11746,11761,11810,11827,11865,11976,11980,11981,11982,12183,12503,12797,12817,13531,13539,14008,14028,14774,14910,15064,15568,16629,16954,17015,18250,21170,21432,22170,22704,22794]]],["preparest",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14869]]],["prepareth",[3,3,[[13,1,1,0,1,[[396,1,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]],[18,1,1,2,3,[[624,1,1,2,3]]]],[11846,13238,16359]]],["provide",[2,2,[[13,1,1,0,1,[[368,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[11218,15133]]],["provided",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14869]]],["provideth",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13834]]],["provision",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11183]]],["ready",[15,15,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,3,3,1,4,[[68,2,2,1,3],[83,1,1,3,4]]],[5,1,1,4,5,[[194,1,1,4,5]]],[12,1,1,5,6,[[365,1,1,5,6]]],[13,1,1,6,7,[[401,1,1,6,7]]],[17,3,3,7,10,[[447,1,1,7,8],[450,1,1,8,9],[453,1,1,9,10]]],[18,4,4,10,14,[[484,1,1,10,11],[488,1,1,11,12],[498,1,1,12,13],[515,1,1,13,14]]],[22,1,1,14,15,[[729,1,1,14,15]]]],[1306,2037,2041,2498,6006,11145,11980,13133,13226,13288,14007,14061,14203,14507,18686]]],["right",[3,3,[[17,2,2,0,2,[[477,2,2,0,2]]],[18,1,1,2,3,[[528,1,1,2,3]]]],[13929,13930,14701]]],["set",[2,2,[[14,1,1,0,1,[[405,1,1,0,1]]],[25,1,1,1,2,[[805,1,1,1,2]]]],[12100,20536]]],["stable",[1,1,[[12,1,1,0,1,[[353,1,1,0,1]]]],[10850]]],["stablished",[1,1,[[18,1,1,0,1,[[570,1,1,0,1]]]],[15427]]],["stablisheth",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22760]]],["standeth",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6975]]],["stood",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6978]]],["tarry",[1,1,[[18,1,1,0,1,[[578,1,1,0,1]]]],[15520]]],["themselves",[1,1,[[18,1,1,0,1,[[536,1,1,0,1]]]],[14794]]]]},{"k":"H3560","v":[["+",[1,1,[[12,1,1,0,1,[[355,1,1,0,1]]]],[10898]]]]},{"k":"H3561","v":[["cakes",[2,2,[[23,2,2,0,2,[[751,1,1,0,1],[788,1,1,1,2]]]],[19137,20029]]]]},{"k":"H3562","v":[["*",[3,3,[[13,3,3,0,3,[[397,2,2,0,2],[401,1,1,2,3]]]],[11866,11867,11975]]],["Conaniah",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11975]]],["Cononiah",[2,2,[[13,2,2,0,2,[[397,2,2,0,2]]]],[11866,11867]]]]},{"k":"H3563","v":[["*",[34,29,[[0,5,3,0,3,[[39,5,3,0,3]]],[2,1,1,3,4,[[100,1,1,3,4]]],[4,1,1,4,5,[[166,1,1,4,5]]],[9,1,1,5,6,[[278,1,1,5,6]]],[10,1,1,6,7,[[297,1,1,6,7]]],[13,1,1,7,8,[[370,1,1,7,8]]],[18,6,6,8,14,[[488,1,1,8,9],[493,1,1,9,10],[500,1,1,10,11],[552,1,1,11,12],[579,1,1,12,13],[593,1,1,13,14]]],[19,1,1,14,15,[[650,1,1,14,15]]],[22,4,2,15,17,[[729,4,2,15,17]]],[23,7,7,17,24,[[760,1,1,17,18],[769,3,3,18,21],[779,1,1,21,22],[793,1,1,22,23],[795,1,1,23,24]]],[24,1,1,24,25,[[800,1,1,24,25]]],[25,4,3,25,28,[[824,4,3,25,28]]],[34,1,1,28,29,[[904,1,1,28,29]]]],[1183,1185,1193,3014,5306,8289,8960,11251,14065,14097,14240,15079,15527,15861,17075,18690,18695,19343,19549,19551,19562,19828,20139,20219,20441,21038,21039,21040,22764]]],["+",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8289]]],["cup",[29,24,[[0,5,3,0,3,[[39,5,3,0,3]]],[10,1,1,3,4,[[297,1,1,3,4]]],[13,1,1,4,5,[[370,1,1,4,5]]],[18,5,5,5,10,[[488,1,1,5,6],[493,1,1,6,7],[500,1,1,7,8],[552,1,1,8,9],[593,1,1,9,10]]],[19,1,1,10,11,[[650,1,1,10,11]]],[22,4,2,11,13,[[729,4,2,11,13]]],[23,6,6,13,19,[[760,1,1,13,14],[769,3,3,14,17],[793,1,1,17,18],[795,1,1,18,19]]],[24,1,1,19,20,[[800,1,1,19,20]]],[25,4,3,20,23,[[824,4,3,20,23]]],[34,1,1,23,24,[[904,1,1,23,24]]]],[1183,1185,1193,8960,11251,14065,14097,14240,15079,15861,17075,18690,18695,19343,19549,19551,19562,20139,20219,20441,21038,21039,21040,22764]]],["cups",[1,1,[[23,1,1,0,1,[[779,1,1,0,1]]]],[19828]]],["owl",[3,3,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[18,1,1,2,3,[[579,1,1,2,3]]]],[3014,5306,15527]]]]},{"k":"H3564","v":[["*",[9,9,[[4,1,1,0,1,[[156,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[19,2,2,2,4,[[644,1,1,2,3],[654,1,1,3,4]]],[22,1,1,4,5,[[726,1,1,4,5]]],[23,1,1,5,6,[[755,1,1,5,6]]],[25,3,3,6,9,[[823,3,3,6,9]]]],[5024,9036,16876,17190,18624,19230,20994,20996,20998]]],["+",[2,2,[[4,1,1,0,1,[[156,1,1,0,1]]],[23,1,1,1,2,[[755,1,1,1,2]]]],[5024,19230]]],["furnace",[7,7,[[10,1,1,0,1,[[298,1,1,0,1]]],[19,2,2,1,3,[[644,1,1,1,2],[654,1,1,2,3]]],[22,1,1,3,4,[[726,1,1,3,4]]],[25,3,3,4,7,[[823,3,3,4,7]]]],[9036,16876,17190,18624,20994,20996,20998]]]]},{"k":"H3565","v":[["Chorashan",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[8008]]]]},{"k":"H3566","v":[["Cyrus",[15,13,[[13,3,2,0,2,[[402,3,2,0,2]]],[14,8,7,2,9,[[403,5,4,2,6],[405,1,1,6,7],[406,2,2,7,9]]],[22,2,2,9,11,[[722,1,1,9,10],[723,1,1,10,11]]],[26,2,2,11,13,[[850,1,1,11,12],[859,1,1,12,13]]]],[12015,12016,12017,12018,12023,12024,12104,12113,12115,18561,18562,21758,22016]]]]},{"k":"H3567","v":[["Cyrus",[8,6,[[14,7,5,0,5,[[407,4,3,0,3],[408,3,2,3,5]]],[26,1,1,5,6,[[855,1,1,5,6]]]],[12147,12148,12151,12154,12165,21933]]]]},{"k":"H3568","v":[["*",[29,29,[[0,4,4,0,4,[[1,1,1,0,1],[9,3,3,1,4]]],[11,1,1,4,5,[[331,1,1,4,5]]],[12,3,3,5,8,[[338,3,3,5,8]]],[16,2,2,8,10,[[426,1,1,8,9],[433,1,1,9,10]]],[17,1,1,10,11,[[463,1,1,10,11]]],[18,2,2,11,13,[[545,1,1,11,12],[564,1,1,12,13]]],[22,8,8,13,21,[[689,1,1,13,14],[696,1,1,14,15],[698,3,3,15,18],[715,1,1,18,19],[721,1,1,19,20],[723,1,1,20,21]]],[23,1,1,21,22,[[790,1,1,21,22]]],[25,5,5,22,27,[[830,1,1,22,23],[831,3,3,23,26],[839,1,1,26,27]]],[33,1,1,27,28,[[902,1,1,27,28]]],[35,1,1,28,29,[[908,1,1,28,29]]]],[43,240,241,242,10070,10260,10261,10262,12703,12826,13523,14931,15305,17895,17998,18032,18033,18034,18361,18508,18575,20054,21193,21208,21209,21213,21430,22721,22830]]],["+",[2,2,[[22,2,2,0,2,[[689,1,1,0,1],[698,1,1,1,2]]]],[17895,18034]]],["Cush",[6,6,[[0,3,3,0,3,[[9,3,3,0,3]]],[12,3,3,3,6,[[338,3,3,3,6]]]],[240,241,242,10260,10261,10262]]],["Ethiopia",[18,18,[[0,1,1,0,1,[[1,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[16,2,2,2,4,[[426,1,1,2,3],[433,1,1,3,4]]],[17,1,1,4,5,[[463,1,1,4,5]]],[18,2,2,5,7,[[545,1,1,5,6],[564,1,1,6,7]]],[22,5,5,7,12,[[696,1,1,7,8],[698,1,1,8,9],[715,1,1,9,10],[721,1,1,10,11],[723,1,1,11,12]]],[25,4,4,12,16,[[830,1,1,12,13],[831,2,2,13,15],[839,1,1,15,16]]],[33,1,1,16,17,[[902,1,1,16,17]]],[35,1,1,17,18,[[908,1,1,17,18]]]],[43,10070,12703,12826,13523,14931,15305,17998,18032,18361,18508,18575,21193,21208,21209,21430,22721,22830]]],["Ethiopians",[3,3,[[22,1,1,0,1,[[698,1,1,0,1]]],[23,1,1,1,2,[[790,1,1,1,2]]],[25,1,1,2,3,[[831,1,1,2,3]]]],[18033,20054,21213]]]]},{"k":"H3569","v":[["*",[23,19,[[9,8,5,0,5,[[284,8,5,0,5]]],[13,7,6,5,11,[[378,1,1,5,6],[380,4,3,6,9],[382,1,1,9,10],[387,1,1,10,11]]],[23,5,5,11,16,[[757,1,1,11,12],[782,3,3,12,15],[783,1,1,15,16]]],[26,1,1,16,17,[[860,1,1,16,17]]],[29,1,1,17,18,[[887,1,1,17,18]]],[35,1,1,18,19,[[907,1,1,18,19]]]],[8499,8500,8501,8509,8510,11440,11484,11487,11488,11517,11640,19289,19902,19905,19907,19939,22079,22502,22817]]],["+",[1,1,[[13,1,1,0,1,[[380,1,1,0,1]]]],[11488]]],["Cushi",[8,5,[[9,8,5,0,5,[[284,8,5,0,5]]]],[8499,8500,8501,8509,8510]]],["Ethiopian",[6,6,[[13,1,1,0,1,[[380,1,1,0,1]]],[23,5,5,1,6,[[757,1,1,1,2],[782,3,3,2,5],[783,1,1,5,6]]]],[11484,19289,19902,19905,19907,19939]]],["Ethiopians",[8,7,[[13,5,4,0,4,[[378,1,1,0,1],[380,2,1,1,2],[382,1,1,2,3],[387,1,1,3,4]]],[26,1,1,4,5,[[860,1,1,4,5]]],[29,1,1,5,6,[[887,1,1,5,6]]],[35,1,1,6,7,[[907,1,1,6,7]]]],[11440,11487,11517,11640,22079,22502,22817]]]]},{"k":"H3570","v":[["Cushi",[2,2,[[23,1,1,0,1,[[780,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]]],[19856,22788]]]]},{"k":"H3571","v":[["Ethiopian",[2,1,[[3,2,1,0,1,[[128,2,1,0,1]]]],[4060]]]]},{"k":"H3572","v":[["Cushan",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22775]]]]},{"k":"H3573","v":[["Chushanrishathaim",[4,2,[[6,4,2,0,2,[[213,4,2,0,2]]]],[6576,6578]]]]},{"k":"H3574","v":[["chains",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14906]]]]},{"k":"H3575","v":[["*",[2,2,[[11,2,2,0,2,[[329,2,2,0,2]]]],[10007,10013]]],["+",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10007]]],["Cuth",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10013]]]]},{"k":"H3576","v":[["*",[17,17,[[3,1,1,0,1,[[139,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]],[17,4,4,3,7,[[441,1,1,3,4],[459,1,1,4,5],[469,1,1,5,6],[476,1,1,6,7]]],[18,3,3,7,10,[[555,1,1,7,8],[566,1,1,8,9],[593,1,1,9,10]]],[19,2,2,10,12,[[641,1,1,10,11],[657,1,1,11,12]]],[22,2,2,12,14,[[735,1,1,12,13],[736,1,1,13,14]]],[25,1,1,14,15,[[814,1,1,14,15]]],[32,1,1,15,16,[[894,1,1,15,16]]],[34,1,1,16,17,[[904,1,1,16,17]]]],[4435,6962,9619,13006,13461,13689,13897,15149,15361,15859,16777,17257,18776,18797,20727,22606,22751]]],["+",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9619]]],["fail",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18797]]],["liar",[2,2,[[17,1,1,0,1,[[459,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[13461,17257]]],["liars",[1,1,[[18,1,1,0,1,[[593,1,1,0,1]]]],[15859]]],["lie",[7,7,[[3,1,1,0,1,[[139,1,1,0,1]]],[17,2,2,1,3,[[441,1,1,1,2],[469,1,1,2,3]]],[18,1,1,3,4,[[566,1,1,3,4]]],[19,1,1,4,5,[[641,1,1,4,5]]],[32,1,1,5,6,[[894,1,1,5,6]]],[34,1,1,6,7,[[904,1,1,6,7]]]],[4435,13006,13689,15361,16777,22606,22751]]],["lied",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[22,1,1,1,2,[[735,1,1,1,2]]]],[15149,18776]]],["lies",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6962]]],["lying",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20727]]],["vain",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13897]]]]},{"k":"H3577","v":[["*",[30,30,[[6,1,1,0,1,[[226,1,1,0,1]]],[18,6,6,1,7,[[481,1,1,1,2],[482,1,1,2,3],[517,1,1,3,4],[535,1,1,4,5],[539,2,2,5,7]]],[19,9,9,7,16,[[633,1,1,7,8],[641,2,2,8,10],[646,3,3,10,13],[648,1,1,13,14],[650,1,1,14,15],[657,1,1,15,16]]],[22,2,2,16,18,[[706,2,2,16,18]]],[25,7,7,18,25,[[814,5,5,18,23],[822,1,1,23,24],[823,1,1,24,25]]],[26,1,1,25,26,[[860,1,1,25,26]]],[27,2,2,26,28,[[868,1,1,26,27],[873,1,1,27,28]]],[29,1,1,28,29,[[880,1,1,28,29]]],[35,1,1,29,30,[[908,1,1,29,30]]]],[6959,13967,13979,14529,14782,14831,14836,16559,16777,16797,16930,16934,16947,17012,17047,17259,18179,18181,20714,20715,20716,20717,20727,20973,21004,22063,22191,22253,22383,22833]]],["+",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17259]]],["deceitful",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17047]]],["false",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17012]]],["leasing",[2,2,[[18,2,2,0,2,[[481,1,1,0,1],[482,1,1,1,2]]]],[13967,13979]]],["liar",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16947]]],["lie",[2,2,[[18,1,1,0,1,[[539,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[14836,20973]]],["lies",[20,20,[[6,1,1,0,1,[[226,1,1,0,1]]],[18,3,3,1,4,[[517,1,1,1,2],[535,1,1,2,3],[539,1,1,3,4]]],[19,5,5,4,9,[[633,1,1,4,5],[641,2,2,5,7],[646,2,2,7,9]]],[22,2,2,9,11,[[706,2,2,9,11]]],[25,4,4,11,15,[[814,3,3,11,14],[823,1,1,14,15]]],[26,1,1,15,16,[[860,1,1,15,16]]],[27,2,2,16,18,[[868,1,1,16,17],[873,1,1,17,18]]],[29,1,1,18,19,[[880,1,1,18,19]]],[35,1,1,19,20,[[908,1,1,19,20]]]],[6959,14529,14782,14831,16559,16777,16797,16930,16934,18179,18181,20716,20717,20727,21004,22063,22191,22253,22383,22833]]],["lying",[2,2,[[25,2,2,0,2,[[814,2,2,0,2]]]],[20714,20715]]]]},{"k":"H3578","v":[["Chozeba",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10407]]]]},{"k":"H3579","v":[["Cozbi",[2,2,[[3,2,2,0,2,[[141,2,2,0,2]]]],[4486,4489]]]]},{"k":"H3580","v":[["Chezib",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1124]]]]},{"k":"H3581","v":[["*",[126,121,[[0,3,3,0,3,[[3,1,1,0,1],[30,1,1,1,2],[48,1,1,2,3]]],[1,3,3,3,6,[[58,1,1,3,4],[64,1,1,4,5],[81,1,1,5,6]]],[2,2,2,6,8,[[100,1,1,6,7],[115,1,1,7,8]]],[3,2,2,8,10,[[130,2,2,8,10]]],[4,4,4,10,14,[[156,1,1,10,11],[160,2,2,11,13],[161,1,1,13,14]]],[5,3,2,14,16,[[200,2,1,14,15],[203,1,1,15,16]]],[6,8,8,16,24,[[216,1,1,16,17],[226,7,7,17,24]]],[8,4,4,24,28,[[237,1,1,24,25],[263,2,2,25,27],[265,1,1,27,28]]],[10,1,1,28,29,[[309,1,1,28,29]]],[11,2,2,29,31,[[329,1,1,29,30],[331,1,1,30,31]]],[12,4,4,31,35,[[363,1,1,31,32],[366,3,3,32,35]]],[13,8,8,35,43,[[368,1,1,35,36],[379,1,1,36,37],[380,1,1,37,38],[386,2,2,38,40],[388,1,1,40,41],[391,1,1,41,42],[392,1,1,42,43]]],[14,2,2,43,45,[[404,1,1,43,44],[412,1,1,44,45]]],[15,2,2,45,47,[[413,1,1,45,46],[416,1,1,46,47]]],[17,21,20,47,67,[[438,1,1,47,48],[441,4,3,48,51],[444,2,2,51,53],[458,1,1,53,54],[459,1,1,54,55],[461,2,2,55,57],[465,2,2,57,59],[466,1,1,59,60],[471,3,3,60,63],[472,1,1,63,64],[474,2,2,64,66],[475,1,1,66,67]]],[18,11,11,67,78,[[499,1,1,67,68],[506,1,1,68,69],[508,1,1,69,70],[510,1,1,70,71],[515,1,1,71,72],[542,1,1,72,73],[548,1,1,73,74],[579,1,1,74,75],[580,1,1,75,76],[588,1,1,76,77],[624,1,1,77,78]]],[19,5,5,78,83,[[632,1,1,78,79],[641,1,1,79,80],[647,1,1,80,81],[651,2,2,81,83]]],[20,2,2,83,85,[[662,1,1,83,84],[667,1,1,84,85]]],[22,12,11,85,96,[[688,1,1,85,86],[715,1,1,86,87],[718,4,4,87,91],[719,1,1,91,92],[722,2,1,92,93],[727,1,1,93,94],[728,1,1,94,95],[741,1,1,95,96]]],[23,5,5,96,101,[[754,1,1,96,97],[771,1,1,97,98],[776,1,1,98,99],[792,1,1,99,100],[795,1,1,100,101]]],[24,2,2,101,103,[[797,2,2,101,103]]],[26,13,11,103,114,[[850,1,1,103,104],[857,5,4,104,108],[859,4,3,108,111],[860,3,3,111,114]]],[27,1,1,114,115,[[868,1,1,114,115]]],[29,1,1,115,116,[[880,1,1,115,116]]],[32,1,1,116,117,[[895,1,1,116,117]]],[33,2,2,117,119,[[900,1,1,117,118],[901,1,1,118,119]]],[34,1,1,119,120,[[903,1,1,119,120]]],[37,1,1,120,121,[[914,1,1,120,121]]]],[91,879,1476,1758,1926,2449,3027,3544,4121,4125,5041,5154,5155,5186,6198,6292,6668,6954,6955,6958,6964,6966,6968,6979,7249,7962,7964,7982,9395,10019,10064,11085,11166,11176,11178,11217,11473,11486,11593,11599,11653,11712,11745,12096,12265,12306,12369,12921,12989,12990,13000,13055,13070,13425,13458,13469,13479,13559,13575,13627,13741,13755,13758,13792,13845,13855,13880,14219,14312,14341,14382,14500,14866,14985,15544,15569,15799,16356,16527,16776,16983,17084,17089,17382,17485,17863,18355,18429,18446,18449,18451,18452,18545,18640,18664,18867,19213,19601,19748,20125,20227,20316,20324,21741,21967,21968,21983,21985,22023,22031,22032,22042,22051,22061,22187,22393,22616,22687,22700,22742,22928]]],["+",[5,5,[[12,1,1,0,1,[[366,1,1,0,1]]],[13,1,1,1,2,[[368,1,1,1,2]]],[17,2,2,2,4,[[438,1,1,2,3],[441,1,1,3,4]]],[23,1,1,4,5,[[792,1,1,4,5]]]],[11178,11217,12921,13000,20125]]],["ability",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[26,1,1,1,2,[[850,1,1,1,2]]]],[12096,21741]]],["able",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12265]]],["chameleon",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3027]]],["force",[2,2,[[17,1,1,0,1,[[465,1,1,0,1]]],[29,1,1,1,2,[[880,1,1,1,2]]]],[13575,22393]]],["fruits",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13627]]],["might",[7,7,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[6,2,2,2,4,[[216,1,1,2,3],[226,1,1,3,4]]],[12,1,1,4,5,[[366,1,1,4,5]]],[13,1,1,5,6,[[386,1,1,5,6]]],[20,1,1,6,7,[[667,1,1,6,7]]]],[1476,4121,6668,6979,11166,11599,17485]]],["power",[47,46,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,3,3,1,4,[[58,1,1,1,2],[64,1,1,2,3],[81,1,1,3,4]]],[3,1,1,4,5,[[130,1,1,4,5]]],[4,4,4,5,9,[[156,1,1,5,6],[160,2,2,6,8],[161,1,1,8,9]]],[5,1,1,9,10,[[203,1,1,9,10]]],[8,1,1,10,11,[[265,1,1,10,11]]],[11,1,1,11,12,[[329,1,1,11,12]]],[12,1,1,12,13,[[366,1,1,12,13]]],[13,5,5,13,18,[[380,1,1,13,14],[386,1,1,14,15],[388,1,1,15,16],[391,1,1,16,17],[392,1,1,17,18]]],[15,1,1,18,19,[[413,1,1,18,19]]],[17,6,6,19,25,[[458,1,1,19,20],[459,1,1,20,21],[461,2,2,21,23],[471,1,1,23,24],[472,1,1,24,25]]],[18,2,2,25,27,[[588,1,1,25,26],[624,1,1,26,27]]],[20,1,1,27,28,[[662,1,1,27,28]]],[22,3,3,28,31,[[718,2,2,28,30],[728,1,1,30,31]]],[23,4,4,31,35,[[754,1,1,31,32],[771,1,1,32,33],[776,1,1,33,34],[795,1,1,34,35]]],[26,7,6,35,41,[[857,5,4,35,39],[860,2,2,39,41]]],[32,1,1,41,42,[[895,1,1,41,42]]],[33,2,2,42,44,[[900,1,1,42,43],[901,1,1,43,44]]],[34,1,1,44,45,[[903,1,1,44,45]]],[37,1,1,45,46,[[914,1,1,45,46]]]],[879,1758,1926,2449,4125,5041,5154,5155,5186,6292,7982,10019,11176,11486,11593,11653,11712,11745,12306,13425,13458,13469,13479,13758,13792,15799,16356,17382,18446,18449,18664,19213,19601,19748,20227,21967,21968,21983,21985,22042,22061,22616,22687,22700,22742,22928]]],["powerful",[1,1,[[18,1,1,0,1,[[506,1,1,0,1]]]],[14312]]],["strength",[58,54,[[0,1,1,0,1,[[3,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[5,2,1,2,3,[[200,2,1,2,3]]],[6,6,6,3,9,[[226,6,6,3,9]]],[8,3,3,9,12,[[237,1,1,9,10],[263,2,2,10,12]]],[10,1,1,12,13,[[309,1,1,12,13]]],[11,1,1,13,14,[[331,1,1,13,14]]],[12,1,1,14,15,[[363,1,1,14,15]]],[13,1,1,15,16,[[379,1,1,15,16]]],[15,1,1,16,17,[[416,1,1,16,17]]],[17,11,10,17,27,[[441,3,2,17,19],[444,2,2,19,21],[465,1,1,21,22],[471,2,2,22,24],[474,2,2,24,26],[475,1,1,26,27]]],[18,8,8,27,35,[[499,1,1,27,28],[508,1,1,28,29],[510,1,1,29,30],[515,1,1,30,31],[542,1,1,31,32],[548,1,1,32,33],[579,1,1,33,34],[580,1,1,34,35]]],[19,4,4,35,39,[[641,1,1,35,36],[647,1,1,36,37],[651,2,2,37,39]]],[22,9,8,39,47,[[688,1,1,39,40],[715,1,1,40,41],[718,2,2,41,43],[719,1,1,43,44],[722,2,1,44,45],[727,1,1,45,46],[741,1,1,46,47]]],[24,2,2,47,49,[[797,2,2,47,49]]],[26,5,4,49,53,[[859,4,3,49,52],[860,1,1,52,53]]],[27,1,1,53,54,[[868,1,1,53,54]]]],[91,3544,6198,6954,6955,6958,6964,6966,6968,7249,7962,7964,9395,10064,11085,11473,12369,12989,12990,13055,13070,13559,13741,13755,13845,13855,13880,14219,14341,14382,14500,14866,14985,15544,15569,16776,16983,17084,17089,17863,18355,18429,18451,18452,18545,18640,18867,20316,20324,22023,22031,22032,22051,22187]]],["wealth",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16527]]]]},{"k":"H3582","v":[["*",[32,30,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,2,2,1,3,[[58,1,1,1,2],[72,1,1,2,3]]],[5,1,1,3,4,[[193,1,1,3,4]]],[8,3,2,4,6,[[238,3,2,4,6]]],[9,2,2,6,8,[[280,1,1,6,7],[284,1,1,7,8]]],[10,1,1,8,9,[[303,1,1,8,9]]],[13,1,1,9,10,[[398,1,1,9,10]]],[17,7,7,10,17,[[439,1,1,10,11],[441,1,1,11,12],[450,2,2,12,14],[455,1,1,14,15],[457,1,1,15,16],[462,1,1,16,17]]],[18,5,5,17,22,[[517,1,1,17,18],[546,1,1,18,19],[555,1,1,19,20],[560,1,1,20,21],[616,1,1,21,22]]],[22,1,1,22,23,[[681,1,1,22,23]]],[23,3,3,23,26,[[782,2,2,23,25],[794,1,1,25,26]]],[27,1,1,26,27,[[866,1,1,26,27]]],[37,4,3,27,30,[[921,4,3,27,30]]]],[1438,1757,2167,5995,7293,7294,8374,8491,9218,11896,12937,12988,13221,13231,13338,13409,13492,14535,14940,15117,15245,16254,17716,19909,19920,20168,22155,23036,23037,23044]]],["Hide",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8374]]],["conceal",[2,2,[[17,1,1,0,1,[[462,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]]],[13492,20168]]],["concealed",[2,2,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,1,1,1,2,[[517,1,1,1,2]]]],[12988,14535]]],["desolate",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13231]]],["down",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13409]]],["hid",[6,6,[[8,1,1,0,1,[[238,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[17,1,1,2,3,[[450,1,1,2,3]]],[18,2,2,3,5,[[546,1,1,3,4],[616,1,1,4,5]]],[27,1,1,5,6,[[866,1,1,5,6]]]],[7294,8491,13221,14940,16254,22155]]],["hide",[9,8,[[0,1,1,0,1,[[46,1,1,0,1]]],[5,1,1,1,2,[[193,1,1,1,2]]],[8,2,1,2,3,[[238,2,1,2,3]]],[17,1,1,3,4,[[455,1,1,3,4]]],[18,1,1,4,5,[[555,1,1,4,5]]],[22,1,1,5,6,[[681,1,1,5,6]]],[23,2,2,6,8,[[782,2,2,6,8]]]],[1438,5995,7293,13338,15117,17716,19909,19920]]],["off",[10,9,[[1,2,2,0,2,[[58,1,1,0,1],[72,1,1,1,2]]],[10,1,1,2,3,[[303,1,1,2,3]]],[13,1,1,3,4,[[398,1,1,3,4]]],[17,1,1,4,5,[[439,1,1,4,5]]],[18,1,1,5,6,[[560,1,1,5,6]]],[37,4,3,6,9,[[921,4,3,6,9]]]],[1757,2167,9218,11896,12937,15245,23036,23037,23044]]]]},{"k":"H3583","v":[["paintedst",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21047]]]]},{"k":"H3584","v":[["*",[22,22,[[0,1,1,0,1,[[17,1,1,0,1]]],[2,3,3,1,4,[[95,2,2,1,3],[108,1,1,3,4]]],[4,1,1,4,5,[[185,1,1,4,5]]],[5,2,2,5,7,[[193,1,1,5,6],[210,1,1,6,7]]],[9,1,1,7,8,[[288,1,1,7,8]]],[10,1,1,8,9,[[303,1,1,8,9]]],[17,2,2,9,11,[[443,1,1,9,10],[466,1,1,10,11]]],[18,4,4,11,15,[[495,1,1,11,12],[543,1,1,12,13],[558,1,1,13,14],[586,1,1,14,15]]],[19,1,1,15,16,[[657,1,1,15,16]]],[22,1,1,16,17,[[737,1,1,16,17]]],[23,1,1,17,18,[[749,1,1,17,18]]],[27,2,2,18,20,[[865,1,1,18,19],[870,1,1,19,20]]],[34,1,1,20,21,[[905,1,1,20,21]]],[37,1,1,21,22,[[923,1,1,21,22]]]],[439,2851,2852,3292,5839,5987,6503,8647,9202,13047,13616,14162,14876,15232,15779,17260,18813,19070,22135,22210,22785,23063]]],["belied",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19070]]],["deceive",[1,1,[[37,1,1,0,1,[[923,1,1,0,1]]]],[23063]]],["denied",[2,2,[[0,1,1,0,1,[[17,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]]],[439,13616]]],["deny",[3,3,[[5,1,1,0,1,[[210,1,1,0,1]]],[17,1,1,1,2,[[443,1,1,1,2]]],[19,1,1,2,3,[[657,1,1,2,3]]]],[6503,13047,17260]]],["dissembled",[1,1,[[5,1,1,0,1,[[193,1,1,0,1]]]],[5987]]],["fail",[2,2,[[27,1,1,0,1,[[870,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[22210,22785]]],["faileth",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15779]]],["falsely",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3292]]],["liars",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5839]]],["lie",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2851]]],["lied",[1,1,[[10,1,1,0,1,[[303,1,1,0,1]]]],[9202]]],["lieth",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2852]]],["lying",[2,2,[[22,1,1,0,1,[[737,1,1,0,1]]],[27,1,1,1,2,[[865,1,1,1,2]]]],[18813,22135]]],["submit",[2,2,[[18,2,2,0,2,[[495,1,1,0,1],[543,1,1,1,2]]]],[14162,14876]]],["submitted",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15232]]],["themselves",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8647]]]]},{"k":"H3585","v":[["*",[6,6,[[17,1,1,0,1,[[451,1,1,0,1]]],[18,1,1,1,2,[[536,1,1,1,2]]],[27,3,3,2,5,[[868,1,1,2,3],[871,1,1,3,4],[872,1,1,4,5]]],[33,1,1,5,6,[[902,1,1,5,6]]]],[13246,14802,22181,22238,22252,22713]]],["+",[1,1,[[18,1,1,0,1,[[536,1,1,0,1]]]],[14802]]],["leanness",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13246]]],["lies",[4,4,[[27,3,3,0,3,[[868,1,1,0,1],[871,1,1,1,2],[872,1,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[22181,22238,22252,22713]]]]},{"k":"H3586","v":[["lying",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18226]]]]},{"k":"H3587","v":[["burning",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17731]]]]},{"k":"H3588","v":[["*",[4453,3886,[[0,286,252,0,252,[[0,6,6,0,6],[1,4,4,6,10],[2,13,10,10,20],[3,4,4,20,24],[4,1,1,24,25],[5,8,7,25,32],[6,2,2,32,34],[7,3,3,34,37],[8,1,1,37,38],[9,1,1,38,39],[10,1,1,39,40],[11,5,5,40,45],[12,5,5,45,50],[13,1,1,50,51],[14,4,4,51,55],[15,4,4,55,59],[16,2,2,59,61],[17,6,4,61,65],[18,7,6,65,71],[19,7,6,71,77],[20,10,9,77,86],[21,4,3,86,89],[23,3,3,89,92],[24,3,3,92,95],[25,11,10,95,105],[26,4,4,105,109],[27,5,5,109,114],[28,13,9,114,123],[29,8,8,123,131],[30,17,15,131,146],[31,11,9,146,155],[32,4,3,155,158],[33,4,4,158,162],[34,3,3,162,165],[35,1,1,165,166],[36,6,6,166,172],[37,9,6,172,178],[38,5,5,178,183],[39,4,3,183,186],[40,7,7,186,193],[41,13,11,193,204],[42,12,9,204,213],[43,8,8,213,221],[44,9,8,221,229],[45,5,5,229,234],[46,8,6,234,240],[47,3,3,240,243],[48,7,5,243,248],[49,4,4,248,252]]],[1,198,178,252,430,[[50,4,3,252,255],[51,4,4,255,259],[52,10,8,259,267],[53,8,7,267,274],[54,2,2,274,276],[55,2,2,276,278],[56,4,4,278,282],[57,5,5,282,287],[58,10,9,287,296],[59,9,9,296,305],[61,11,10,305,315],[62,10,9,315,324],[63,7,6,324,330],[64,5,5,330,335],[65,9,9,335,344],[66,2,2,344,346],[67,8,7,346,353],[68,4,4,353,357],[69,6,6,357,363],[70,13,12,363,375],[71,13,11,375,386],[72,14,12,386,398],[78,5,5,398,403],[79,1,1,403,404],[80,5,3,404,407],[81,9,7,407,414],[82,6,5,414,419],[83,10,9,419,428],[89,2,2,428,430]]],[2,145,135,430,565,[[90,1,1,430,431],[91,3,3,431,434],[93,1,1,434,435],[94,6,6,435,441],[95,2,2,441,443],[96,3,3,443,446],[97,2,2,446,448],[98,1,1,448,449],[99,6,5,449,454],[100,12,10,454,464],[101,1,1,464,465],[102,15,15,465,480],[103,3,3,480,483],[104,7,6,483,489],[105,2,2,489,491],[106,4,2,491,493],[107,5,5,493,498],[108,8,7,498,505],[109,7,7,505,512],[110,12,10,512,522],[111,13,13,522,535],[112,4,4,535,539],[113,5,5,539,544],[114,18,17,544,561],[115,2,2,561,563],[116,2,2,563,565]]],[3,129,117,565,682,[[119,1,1,565,566],[121,5,4,566,570],[122,4,4,570,574],[123,1,1,574,575],[124,2,2,575,577],[125,3,3,577,580],[126,5,5,580,585],[127,9,8,585,593],[128,1,1,593,594],[129,3,3,594,597],[130,9,8,597,605],[131,8,8,605,613],[132,12,10,613,623],[133,1,1,623,624],[134,3,3,624,627],[135,3,3,627,630],[136,2,2,630,632],[137,8,8,632,640],[138,15,12,640,652],[139,2,2,652,654],[140,2,2,654,656],[141,1,1,656,657],[142,5,3,657,660],[143,3,3,660,663],[146,4,4,663,667],[148,5,4,667,671],[149,2,2,671,673],[150,2,2,673,675],[151,6,5,675,680],[152,2,2,680,682]]],[4,275,242,682,924,[[153,3,3,682,685],[154,8,5,685,690],[155,6,6,690,696],[156,15,14,696,710],[157,8,8,710,718],[158,4,4,718,722],[159,12,12,722,734],[160,6,5,734,739],[161,7,6,739,745],[162,3,3,745,748],[163,6,6,748,754],[164,14,12,754,766],[165,8,8,766,774],[166,10,7,774,781],[167,16,13,781,794],[168,6,6,794,800],[169,4,4,800,804],[170,6,6,804,810],[171,7,5,810,815],[172,9,6,815,821],[173,11,9,821,830],[174,12,11,830,841],[175,12,10,841,851],[176,14,13,851,864],[177,4,4,864,868],[178,3,3,868,871],[179,1,1,871,872],[180,11,11,872,883],[181,5,5,883,888],[182,8,7,888,895],[183,13,9,895,904],[184,19,16,904,920],[185,3,3,920,923],[186,1,1,923,924]]],[5,103,84,924,1008,[[187,4,4,924,928],[188,10,8,928,936],[189,4,4,936,940],[190,2,2,940,942],[191,6,5,942,947],[192,3,3,947,950],[193,5,4,950,954],[194,6,5,954,959],[195,4,4,959,963],[196,11,9,963,972],[197,4,3,972,975],[200,6,4,975,979],[201,1,1,979,980],[203,11,6,980,986],[204,2,1,986,987],[205,1,1,987,988],[206,2,1,988,989],[207,1,1,989,990],[208,7,5,990,995],[209,6,6,995,1001],[210,7,7,1001,1008]]],[6,112,96,1008,1104,[[211,6,5,1008,1013],[212,3,2,1013,1015],[213,3,3,1015,1018],[214,6,6,1018,1024],[215,1,1,1024,1025],[216,10,8,1025,1033],[217,2,2,1033,1035],[218,11,9,1035,1044],[219,8,8,1044,1052],[220,1,1,1052,1053],[221,5,5,1053,1058],[222,3,3,1058,1061],[223,8,6,1061,1067],[224,7,5,1067,1072],[225,6,6,1072,1078],[226,7,6,1078,1084],[227,2,1,1084,1085],[228,7,7,1085,1092],[230,9,7,1092,1099],[231,7,5,1099,1104]]],[7,27,20,1104,1124,[[232,11,8,1104,1112],[233,3,2,1112,1114],[234,9,6,1114,1120],[235,4,4,1120,1124]]],[8,251,201,1124,1325,[[236,6,6,1124,1130],[237,12,12,1130,1142],[238,10,8,1142,1150],[239,8,7,1150,1157],[240,3,2,1157,1159],[241,5,4,1159,1163],[242,2,2,1163,1165],[243,4,3,1165,1168],[244,11,7,1168,1175],[245,7,6,1175,1181],[246,2,2,1181,1183],[247,11,8,1183,1191],[248,7,5,1191,1196],[249,16,12,1196,1208],[250,9,6,1208,1214],[251,7,5,1214,1219],[252,14,11,1219,1230],[253,5,5,1230,1235],[254,2,1,1235,1236],[255,23,18,1236,1254],[256,9,6,1254,1260],[257,12,7,1260,1267],[258,12,11,1267,1278],[259,7,6,1278,1284],[260,11,9,1284,1293],[261,11,10,1293,1303],[262,3,3,1303,1306],[263,6,6,1306,1312],[264,4,3,1312,1315],[265,8,7,1315,1322],[266,4,3,1322,1325]]],[9,159,133,1325,1458,[[267,8,6,1325,1331],[268,4,3,1331,1334],[269,9,8,1334,1342],[270,4,4,1342,1346],[271,6,5,1346,1351],[272,2,2,1351,1353],[273,9,9,1353,1362],[274,2,2,1362,1364],[275,3,3,1364,1367],[276,7,7,1367,1374],[277,4,4,1374,1378],[278,10,8,1378,1386],[279,11,9,1386,1395],[280,8,8,1395,1403],[281,5,4,1403,1407],[282,7,6,1407,1413],[283,8,7,1413,1420],[284,9,7,1420,1427],[285,21,12,1427,1439],[286,2,2,1439,1441],[287,1,1,1441,1442],[288,9,9,1442,1451],[289,7,4,1451,1455],[290,3,3,1455,1458]]],[10,142,115,1458,1573,[[291,8,6,1458,1464],[292,17,14,1464,1478],[293,10,8,1478,1486],[294,1,1,1486,1487],[295,6,3,1487,1490],[296,1,1,1490,1491],[298,24,17,1491,1508],[299,1,1,1508,1509],[300,1,1,1509,1510],[301,9,7,1510,1517],[302,5,5,1517,1522],[303,4,4,1522,1526],[304,5,5,1526,1531],[305,1,1,1531,1532],[306,1,1,1532,1533],[307,5,5,1533,1538],[308,12,9,1538,1547],[309,6,6,1547,1553],[310,9,8,1553,1561],[311,8,5,1561,1566],[312,8,7,1566,1573]]],[11,109,95,1573,1668,[[313,4,4,1573,1577],[314,5,5,1577,1582],[315,6,6,1582,1588],[316,9,8,1588,1596],[317,12,7,1596,1603],[318,4,4,1603,1607],[319,3,2,1607,1609],[320,8,7,1609,1616],[321,5,5,1616,1621],[322,3,3,1621,1624],[323,2,2,1624,1626],[324,4,4,1626,1630],[325,5,2,1630,1632],[326,2,2,1632,1634],[327,1,1,1634,1635],[329,5,5,1635,1640],[330,9,9,1640,1649],[331,7,5,1649,1654],[332,6,5,1654,1659],[334,2,2,1659,1661],[335,3,3,1661,1664],[336,2,2,1664,1666],[337,2,2,1666,1668]]],[12,105,94,1668,1762,[[338,1,1,1668,1669],[339,1,1,1669,1670],[341,4,4,1670,1674],[342,7,5,1674,1679],[343,1,1,1679,1680],[344,3,3,1680,1683],[346,4,4,1683,1687],[347,4,3,1687,1690],[348,1,1,1690,1691],[349,6,6,1691,1697],[350,4,4,1697,1701],[351,4,3,1701,1704],[352,5,3,1704,1707],[353,6,5,1707,1712],[354,6,6,1712,1718],[355,2,2,1718,1720],[356,8,8,1720,1728],[358,8,7,1728,1735],[359,5,5,1735,1740],[360,4,4,1740,1744],[361,1,1,1744,1745],[363,3,3,1745,1748],[364,1,1,1748,1749],[365,7,7,1749,1756],[366,9,6,1756,1762]]],[13,188,151,1762,1913,[[367,4,4,1762,1766],[368,5,4,1766,1770],[370,1,1,1770,1771],[371,4,3,1771,1774],[372,18,12,1774,1786],[373,7,5,1786,1791],[374,4,3,1791,1794],[375,1,1,1794,1795],[376,3,3,1795,1798],[377,6,5,1798,1803],[378,5,5,1803,1808],[379,4,4,1808,1812],[380,7,5,1812,1817],[381,6,5,1817,1822],[382,4,3,1822,1825],[383,2,2,1825,1827],[384,7,6,1827,1833],[385,4,3,1833,1836],[386,10,8,1836,1844],[387,4,4,1844,1848],[388,8,7,1848,1855],[389,4,3,1855,1858],[390,7,6,1858,1864],[391,9,5,1864,1869],[392,10,7,1869,1876],[393,1,1,1876,1877],[394,8,6,1877,1883],[395,6,6,1883,1889],[396,11,7,1889,1896],[397,2,2,1896,1898],[398,7,6,1898,1904],[399,2,2,1904,1906],[400,1,1,1906,1907],[401,5,5,1907,1912],[402,1,1,1912,1913]]],[14,24,21,1913,1934,[[405,4,3,1913,1916],[406,3,3,1916,1919],[408,2,2,1919,1921],[409,2,2,1921,1923],[410,2,1,1923,1924],[411,7,6,1924,1930],[412,4,4,1930,1934]]],[15,41,37,1934,1971,[[414,2,2,1934,1936],[416,6,5,1936,1941],[417,1,1,1941,1942],[418,8,7,1942,1949],[419,1,1,1949,1950],[420,7,6,1950,1956],[421,6,5,1956,1961],[422,1,1,1961,1962],[423,1,1,1962,1963],[424,4,4,1963,1967],[425,4,4,1967,1971]]],[16,33,30,1971,2001,[[426,6,6,1971,1977],[427,5,5,1977,1982],[428,4,4,1982,1986],[429,2,2,1986,1988],[430,1,1,1988,1989],[431,1,1,1989,1990],[432,4,2,1990,1992],[433,4,4,1992,1996],[434,5,4,1996,2000],[435,1,1,2000,2001]]],[17,188,168,2001,2169,[[436,3,2,2001,2003],[437,3,2,2003,2005],[438,6,6,2005,2011],[439,1,1,2011,2012],[440,7,7,2012,2019],[441,8,7,2019,2026],[442,7,6,2026,2032],[443,4,3,2032,2035],[444,7,7,2035,2042],[445,6,5,2042,2047],[446,6,5,2047,2052],[447,2,2,2052,2054],[448,5,5,2054,2059],[449,2,2,2059,2061],[450,10,9,2061,2070],[451,2,2,2070,2072],[452,1,1,2072,2073],[453,1,1,2073,2074],[454,4,4,2074,2078],[455,3,3,2078,2081],[456,5,4,2081,2085],[457,7,6,2085,2091],[458,3,3,2091,2094],[459,2,1,2094,2095],[460,1,1,2095,2096],[462,4,2,2096,2098],[463,2,2,2098,2100],[464,2,2,2100,2102],[465,3,3,2102,2105],[466,12,10,2105,2115],[467,7,6,2115,2121],[468,4,4,2121,2125],[469,11,10,2125,2135],[470,3,3,2135,2138],[471,10,10,2138,2148],[472,4,3,2148,2151],[473,6,5,2151,2156],[474,6,6,2156,2162],[475,3,3,2162,2165],[476,1,1,2165,2166],[477,4,3,2166,2169]]],[18,439,406,2169,2575,[[478,3,3,2169,2172],[479,1,1,2172,2173],[480,2,2,2173,2175],[481,2,2,2175,2177],[482,5,5,2177,2182],[483,4,3,2182,2185],[485,3,2,2185,2187],[486,4,4,2187,2191],[487,2,2,2191,2193],[488,3,3,2193,2196],[489,2,1,2196,2197],[490,2,2,2197,2199],[491,2,2,2199,2201],[493,3,3,2201,2204],[494,1,1,2204,2205],[495,9,9,2205,2214],[497,1,1,2214,2215],[498,5,5,2215,2220],[499,8,7,2220,2227],[500,2,1,2227,2228],[501,1,1,2228,2229],[502,8,8,2229,2237],[503,2,2,2237,2239],[504,3,3,2239,2242],[505,2,2,2242,2244],[507,2,2,2244,2246],[508,7,7,2246,2253],[509,2,2,2253,2255],[510,4,3,2255,2258],[511,2,2,2258,2260],[512,2,2,2260,2262],[513,2,2,2262,2264],[514,12,10,2264,2274],[515,7,7,2274,2281],[516,2,2,2281,2283],[517,1,1,2283,2284],[518,3,2,2284,2286],[519,3,3,2286,2289],[520,2,2,2289,2291],[521,9,7,2291,2298],[522,1,1,2298,2299],[523,1,1,2299,2300],[524,3,3,2300,2303],[525,2,2,2303,2305],[526,7,5,2305,2310],[527,3,3,2310,2313],[528,2,2,2313,2315],[529,2,1,2315,2316],[530,2,1,2316,2317],[531,3,3,2317,2320],[532,5,5,2320,2325],[533,4,4,2325,2329],[534,2,2,2329,2331],[535,1,1,2331,2332],[536,6,6,2332,2338],[537,1,1,2338,2339],[538,2,2,2339,2341],[539,4,4,2341,2345],[540,3,3,2345,2348],[542,1,1,2348,2349],[543,1,1,2349,2350],[544,1,1,2350,2351],[546,8,8,2351,2359],[548,8,7,2359,2366],[549,1,1,2366,2367],[550,4,4,2367,2371],[551,1,1,2371,2372],[552,4,4,2372,2376],[553,1,1,2376,2377],[554,1,1,2377,2378],[555,3,3,2378,2381],[556,2,2,2381,2383],[558,1,1,2383,2384],[559,1,1,2384,2385],[560,3,3,2385,2388],[561,2,2,2388,2390],[562,1,1,2390,2391],[563,9,9,2391,2400],[565,1,1,2400,2401],[566,4,4,2401,2405],[567,5,4,2405,2409],[568,5,4,2409,2413],[569,4,3,2413,2416],[571,3,3,2416,2419],[572,2,2,2419,2421],[573,4,3,2421,2424],[574,1,1,2424,2425],[575,2,2,2425,2427],[576,1,1,2427,2428],[577,2,2,2428,2430],[579,9,8,2430,2438],[580,4,3,2438,2441],[582,2,2,2441,2443],[583,3,2,2443,2445],[584,6,5,2445,2450],[585,1,1,2450,2451],[586,5,5,2451,2456],[589,1,1,2456,2457],[591,1,1,2457,2458],[592,1,1,2458,2459],[593,5,5,2459,2464],[594,1,1,2464,2465],[595,9,7,2465,2472],[596,36,36,2472,2508],[597,2,2,2508,2510],[599,1,1,2510,2511],[600,1,1,2511,2512],[602,1,1,2512,2513],[604,1,1,2513,2514],[605,2,2,2514,2516],[607,2,2,2516,2518],[609,2,2,2518,2520],[610,1,1,2520,2521],[612,6,4,2521,2525],[613,27,26,2525,2551],[614,1,1,2551,2552],[615,5,4,2552,2556],[616,3,3,2556,2559],[617,1,1,2559,2560],[618,3,3,2560,2563],[619,3,2,2563,2565],[620,6,5,2565,2570],[624,3,2,2570,2572],[625,2,2,2572,2574],[626,1,1,2574,2575]]],[19,101,95,2575,2670,[[628,5,5,2575,2580],[629,5,5,2580,2585],[630,6,6,2585,2591],[631,8,8,2591,2599],[632,2,2,2599,2601],[633,7,6,2601,2607],[634,4,4,2607,2611],[635,4,4,2611,2615],[636,2,2,2615,2617],[638,1,1,2617,2618],[642,1,1,2618,2619],[643,2,2,2619,2621],[644,1,1,2621,2622],[645,1,1,2622,2623],[646,4,4,2623,2627],[647,1,1,2627,2628],[648,3,3,2628,2631],[649,6,5,2631,2636],[650,13,12,2636,2648],[651,7,7,2648,2655],[652,2,2,2655,2657],[653,2,1,2657,2658],[654,3,3,2658,2661],[655,1,1,2661,2662],[656,1,1,2662,2663],[657,7,5,2663,2668],[658,2,2,2668,2670]]],[20,87,73,2670,2743,[[659,1,1,2670,2671],[660,11,10,2671,2681],[661,9,5,2681,2686],[662,5,4,2686,2690],[663,12,10,2690,2700],[664,5,5,2700,2705],[665,10,10,2705,2715],[666,9,7,2715,2722],[667,12,9,2722,2731],[668,2,2,2731,2733],[669,7,6,2733,2739],[670,4,4,2739,2743]]],[21,5,5,2743,2748,[[671,1,1,2743,2744],[672,3,3,2744,2747],[678,1,1,2747,2748]]],[22,332,292,2748,3040,[[679,6,6,2748,2754],[680,5,4,2754,2758],[681,9,7,2758,2765],[682,1,1,2765,2766],[683,3,3,2766,2769],[684,3,1,2769,2770],[685,7,7,2770,2777],[686,6,6,2777,2783],[687,6,6,2783,2789],[688,8,7,2789,2796],[689,1,1,2796,2797],[690,5,5,2797,2802],[691,2,2,2802,2804],[692,7,6,2804,2810],[693,9,5,2810,2815],[694,5,4,2815,2819],[695,1,1,2819,2820],[696,2,2,2820,2822],[697,1,1,2822,2823],[699,4,4,2823,2827],[700,6,6,2827,2833],[701,4,4,2833,2837],[702,5,5,2837,2842],[703,6,5,2842,2847],[704,7,7,2847,2854],[705,2,2,2854,2856],[706,14,11,2856,2867],[707,6,6,2867,2873],[708,11,10,2873,2883],[709,4,3,2883,2886],[710,4,4,2886,2890],[711,3,3,2890,2893],[712,5,5,2893,2898],[713,1,1,2898,2899],[714,8,8,2899,2907],[715,7,5,2907,2912],[716,4,4,2912,2916],[717,2,2,2916,2918],[718,5,3,2918,2921],[719,5,4,2921,2925],[720,1,1,2925,2926],[721,8,7,2926,2933],[722,7,6,2933,2939],[723,5,5,2939,2944],[724,1,1,2944,2945],[725,2,2,2945,2947],[726,4,4,2947,2951],[727,8,7,2951,2958],[728,1,1,2958,2959],[729,5,5,2959,2964],[730,10,9,2964,2973],[731,1,1,2973,2974],[732,12,8,2974,2982],[733,8,7,2982,2989],[734,3,3,2989,2992],[735,7,6,2992,2998],[736,2,2,2998,3000],[737,9,7,3000,3007],[738,9,8,3007,3015],[739,4,4,3015,3019],[740,4,3,3019,3022],[741,3,2,3022,3024],[742,1,1,3024,3025],[743,11,9,3025,3034],[744,6,6,3034,3040]]],[23,432,368,3040,3408,[[745,6,6,3040,3046],[746,14,13,3046,3059],[747,9,9,3059,3068],[748,18,14,3068,3082],[749,7,7,3082,3089],[750,12,11,3089,3100],[751,9,9,3100,3109],[752,6,5,3109,3114],[753,14,10,3114,3124],[754,13,10,3124,3134],[755,7,7,3134,3141],[756,7,6,3141,3147],[757,7,7,3147,3154],[758,12,10,3154,3164],[759,7,7,3164,3171],[760,8,7,3171,3178],[761,5,5,3178,3183],[762,6,5,3183,3188],[763,2,2,3188,3190],[764,8,7,3190,3197],[765,2,2,3197,3199],[766,15,13,3199,3212],[767,9,8,3212,3220],[768,3,2,3220,3222],[769,9,8,3222,3230],[770,5,3,3230,3233],[771,6,6,3233,3239],[772,3,3,3239,3242],[773,11,10,3242,3252],[774,11,9,3252,3261],[775,16,14,3261,3275],[776,11,9,3275,3284],[777,6,4,3284,3288],[778,3,3,3288,3291],[779,4,4,3291,3295],[780,1,1,3295,3296],[781,5,5,3296,3301],[782,13,9,3301,3310],[783,3,2,3310,3312],[784,7,5,3312,3317],[785,3,2,3317,3319],[786,10,9,3319,3328],[787,2,2,3328,3330],[788,7,5,3330,3335],[789,2,2,3335,3337],[790,14,11,3337,3348],[791,1,1,3348,3349],[792,18,16,3349,3365],[793,14,10,3365,3375],[794,16,13,3375,3388],[795,24,19,3388,3407],[796,1,1,3407,3408]]],[24,28,24,3408,3432,[[797,14,11,3408,3419],[798,1,1,3419,3420],[799,8,7,3420,3427],[800,3,3,3427,3430],[801,2,2,3430,3432]]],[25,201,188,3432,3620,[[802,2,2,3432,3434],[803,5,3,3434,3437],[804,10,8,3437,3445],[806,2,2,3445,3447],[807,4,4,3447,3451],[808,10,8,3451,3459],[809,2,2,3459,3461],[810,1,1,3461,3462],[811,3,3,3462,3465],[812,4,3,3465,3468],[813,10,9,3468,3477],[814,4,4,3477,3481],[815,9,7,3481,3488],[816,2,2,3488,3490],[817,3,3,3490,3493],[818,2,2,3493,3495],[819,5,5,3495,3500],[820,1,1,3500,3501],[821,8,8,3501,3509],[822,7,6,3509,3515],[823,2,2,3515,3517],[824,9,9,3517,3526],[825,4,4,3526,3530],[826,8,6,3530,3536],[827,5,5,3536,3541],[829,5,5,3541,3546],[830,5,5,3546,3551],[831,6,6,3551,3557],[832,2,2,3557,3559],[833,6,6,3559,3565],[834,8,8,3565,3573],[835,3,3,3573,3576],[836,4,4,3576,3580],[837,7,7,3580,3587],[838,4,4,3587,3591],[839,1,1,3591,3592],[840,7,7,3592,3599],[841,1,1,3599,3600],[842,1,1,3600,3601],[843,5,5,3601,3606],[845,4,4,3606,3610],[846,1,1,3610,3611],[847,4,4,3611,3615],[848,4,4,3615,3619],[849,1,1,3619,3620]]],[26,24,23,3620,3643,[[857,3,3,3620,3623],[858,8,7,3623,3630],[859,5,5,3630,3635],[860,6,6,3635,3641],[861,2,2,3641,3643]]],[27,69,58,3643,3701,[[862,6,5,3643,3648],[863,6,5,3648,3653],[864,1,1,3653,3654],[865,10,7,3654,3661],[866,7,6,3661,3667],[867,3,3,3667,3670],[868,5,4,3670,3674],[869,6,5,3674,3679],[870,8,7,3679,3686],[871,5,3,3686,3689],[872,5,5,3689,3694],[874,4,4,3694,3698],[875,3,3,3698,3701]]],[28,32,26,3701,3727,[[876,11,11,3701,3712],[877,13,9,3712,3721],[878,8,6,3721,3727]]],[29,26,25,3727,3752,[[881,3,2,3727,3729],[882,4,4,3729,3733],[883,7,7,3733,3740],[884,4,4,3740,3744],[885,5,5,3744,3749],[886,1,1,3749,3750],[887,2,2,3750,3752]]],[30,3,3,3752,3755,[[888,3,3,3752,3755]]],[31,13,9,3755,3764,[[889,9,6,3755,3761],[891,1,1,3761,3762],[892,3,2,3762,3764]]],[32,33,28,3764,3792,[[893,8,6,3764,3770],[894,3,3,3770,3773],[895,1,1,3773,3774],[896,7,7,3774,3781],[897,5,3,3781,3784],[898,3,3,3784,3787],[899,6,5,3787,3792]]],[33,6,5,3792,3797,[[900,3,3,3792,3795],[901,2,1,3795,3796],[902,1,1,3796,3797]]],[34,16,13,3797,3810,[[903,5,4,3797,3801],[904,9,7,3801,3808],[905,2,2,3808,3810]]],[35,17,15,3810,3825,[[906,5,4,3810,3814],[907,6,6,3814,3820],[908,6,5,3820,3825]]],[36,3,3,3825,3828,[[910,3,3,3825,3828]]],[37,50,41,3828,3869,[[912,8,6,3828,3834],[913,3,2,3834,3836],[914,3,3,3836,3839],[915,1,1,3839,3840],[916,1,1,3840,3841],[917,3,2,3841,3843],[918,6,6,3843,3849],[919,7,7,3849,3856],[920,7,5,3856,3861],[921,7,5,3861,3866],[923,3,2,3866,3868],[924,1,1,3868,3869]]],[38,21,17,3869,3886,[[925,6,4,3869,3873],[926,7,6,3873,3879],[927,6,5,3879,3884],[928,2,2,3884,3886]]]],[3,9,11,17,20,24,33,35,47,53,56,60,61,62,65,66,69,72,74,75,91,102,103,104,129,138,139,142,143,144,149,150,160,163,192,194,204,211,259,275,308,309,310,312,316,324,326,328,333,335,350,364,368,373,376,385,386,392,394,402,412,429,439,443,444,459,465,470,471,479,487,501,502,504,505,506,513,520,523,525,526,529,530,531,543,544,559,563,564,595,605,632,679,686,688,695,699,700,701,705,708,712,714,716,720,728,747,750,763,779,781,784,788,790,797,804,807,810,816,826,827,828,829,831,839,843,846,850,856,860,863,878,879,885,888,889,893,895,903,904,905,908,909,910,915,922,938,939,945,948,953,954,956,958,960,970,971,973,985,987,994,999,1018,1021,1029,1047,1086,1087,1100,1109,1110,1118,1128,1130,1133,1134,1135,1145,1152,1155,1158,1162,1164,1186,1187,1188,1216,1226,1227,1244,1246,1247,1252,1253,1254,1256,1257,1264,1267,1268,1275,1285,1286,1290,1295,1297,1300,1306,1308,1311,1315,1320,1322,1339,1342,1348,1350,1351,1355,1356,1358,1361,1363,1364,1366,1369,1370,1378,1384,1389,1416,1418,1419,1420,1424,1433,1435,1438,1440,1442,1465,1468,1469,1477,1479,1480,1483,1488,1509,1521,1523,1525,1542,1551,1553,1556,1564,1566,1576,1583,1584,1585,1586,1590,1591,1598,1600,1602,1606,1611,1615,1620,1626,1632,1640,1643,1656,1662,1690,1694,1702,1709,1720,1725,1731,1732,1736,1744,1753,1756,1757,1771,1772,1773,1774,1776,1778,1779,1781,1784,1786,1787,1788,1803,1805,1825,1831,1833,1835,1841,1842,1846,1849,1855,1864,1870,1872,1876,1878,1881,1882,1883,1884,1886,1893,1894,1901,1902,1907,1914,1921,1939,1941,1943,1946,1950,1953,1954,1955,1956,1959,1962,1972,1976,1997,1999,2000,2002,2003,2010,2014,2015,2017,2031,2037,2039,2049,2056,2058,2062,2071,2073,2076,2079,2084,2091,2095,2097,2098,2099,2103,2105,2110,2112,2113,2114,2118,2119,2120,2122,2123,2127,2129,2134,2136,2140,2148,2149,2151,2152,2153,2159,2165,2166,2167,2168,2175,2177,2358,2364,2369,2370,2382,2394,2433,2434,2437,2439,2445,2459,2460,2461,2463,2467,2476,2486,2489,2490,2493,2505,2506,2509,2510,2514,2520,2523,2525,2531,2742,2745,2747,2763,2766,2773,2797,2831,2833,2834,2835,2841,2845,2851,2853,2900,2904,2913,2950,2952,2957,2984,2989,2990,2991,2994,3001,3002,3003,3004,3034,3035,3036,3039,3041,3042,3046,3054,3061,3063,3068,3070,3076,3080,3081,3083,3090,3092,3094,3099,3103,3104,3124,3145,3159,3170,3176,3181,3184,3187,3193,3203,3231,3246,3249,3261,3264,3275,3278,3280,3283,3286,3289,3301,3304,3314,3315,3321,3325,3327,3337,3341,3344,3345,3347,3351,3352,3353,3354,3357,3359,3360,3363,3368,3375,3376,3378,3380,3381,3382,3383,3385,3389,3390,3394,3396,3398,3412,3430,3431,3445,3455,3461,3463,3465,3468,3471,3481,3483,3485,3486,3489,3492,3494,3495,3498,3502,3503,3504,3508,3511,3516,3524,3525,3568,3572,3584,3705,3798,3804,3807,3812,3825,3830,3832,3835,3859,3955,3956,3975,3978,3979,3997,4017,4018,4019,4020,4027,4036,4037,4038,4042,4044,4053,4058,4060,4103,4105,4106,4117,4121,4122,4130,4138,4148,4150,4151,4155,4161,4167,4175,4178,4179,4184,4187,4197,4203,4205,4207,4222,4224,4228,4231,4232,4240,4247,4281,4283,4288,4302,4303,4309,4335,4340,4341,4345,4347,4353,4364,4366,4368,4374,4378,4381,4387,4388,4392,4397,4403,4404,4407,4408,4409,4411,4425,4439,4447,4468,4489,4522,4551,4554,4557,4558,4562,4650,4651,4653,4662,4729,4730,4733,4737,4811,4813,4818,4830,4855,4873,4876,4878,4879,4886,4888,4909,4930,4934,4943,4945,4947,4957,4968,4977,4986,4994,4997,5002,5003,5007,5010,5011,5019,5026,5028,5029,5030,5033,5035,5036,5039,5041,5043,5056,5058,5062,5064,5068,5077,5078,5079,5096,5101,5106,5111,5112,5115,5116,5117,5118,5119,5120,5127,5128,5132,5136,5137,5140,5142,5144,5155,5156,5160,5162,5163,5169,5176,5182,5198,5203,5205,5210,5215,5218,5230,5237,5239,5245,5249,5252,5254,5258,5260,5261,5263,5265,5268,5269,5271,5273,5275,5277,5278,5281,5282,5284,5290,5292,5297,5298,5311,5314,5317,5319,5321,5323,5325,5326,5327,5329,5330,5331,5332,5334,5335,5337,5340,5343,5345,5348,5354,5357,5361,5365,5366,5372,5378,5389,5390,5393,5396,5398,5405,5407,5412,5415,5417,5422,5428,5431,5437,5444,5446,5447,5448,5452,5456,5457,5462,5464,5465,5469,5470,5475,5476,5478,5483,5489,5491,5492,5493,5496,5497,5498,5505,5507,5509,5510,5514,5518,5521,5522,5524,5525,5526,5528,5529,5530,5531,5532,5535,5540,5543,5544,5545,5546,5547,5548,5552,5558,5563,5567,5569,5578,5605,5613,5620,5621,5624,5649,5650,5651,5652,5656,5668,5673,5685,5694,5695,5698,5699,5709,5717,5718,5719,5722,5726,5728,5734,5735,5745,5746,5748,5749,5751,5755,5757,5761,5762,5767,5778,5780,5786,5788,5789,5790,5793,5794,5797,5798,5801,5805,5810,5819,5829,5831,5848,5857,5859,5860,5862,5872,5874,5878,5879,5880,5881,5884,5893,5897,5898,5900,5903,5916,5934,5939,5940,5941,5948,5949,5965,5966,5974,5979,5988,5989,5991,6007,6008,6016,6020,6023,6046,6053,6055,6061,6065,6066,6068,6070,6072,6078,6083,6089,6106,6113,6117,6127,6190,6191,6196,6199,6221,6276,6278,6281,6288,6290,6293,6300,6330,6377,6391,6433,6453,6454,6457,6460,6463,6468,6470,6472,6473,6474,6493,6494,6495,6496,6497,6498,6503,6524,6528,6537,6541,6543,6562,6563,6580,6590,6596,6602,6608,6611,6613,6616,6618,6646,6659,6661,6670,6676,6684,6685,6686,6691,6703,6709,6720,6724,6725,6734,6739,6740,6741,6743,6749,6756,6757,6759,6772,6782,6792,6801,6809,6821,6831,6841,6842,6845,6847,6872,6873,6874,6889,6891,6900,6901,6905,6906,6912,6913,6918,6919,6926,6931,6932,6935,6936,6940,6942,6965,6966,6967,6969,6973,6974,6993,6994,7002,7003,7007,7016,7019,7021,7057,7060,7082,7088,7090,7093,7095,7107,7117,7118,7120,7124,7133,7137,7139,7140,7143,7144,7145,7147,7162,7171,7181,7183,7184,7186,7189,7190,7194,7196,7199,7205,7217,7218,7224,7228,7232,7234,7241,7242,7243,7248,7249,7255,7256,7257,7261,7264,7265,7270,7281,7282,7284,7285,7286,7289,7296,7297,7303,7304,7310,7315,7316,7317,7319,7326,7330,7334,7335,7340,7350,7359,7369,7376,7378,7388,7398,7400,7403,7404,7407,7411,7415,7419,7425,7432,7434,7437,7442,7450,7458,7465,7470,7472,7477,7479,7481,7482,7484,7491,7496,7498,7499,7504,7511,7514,7518,7520,7526,7530,7534,7537,7538,7547,7552,7553,7571,7583,7584,7586,7589,7595,7596,7602,7606,7607,7617,7643,7644,7646,7651,7654,7657,7660,7661,7664,7665,7666,7688,7692,7694,7701,7704,7710,7731,7733,7736,7737,7738,7739,7742,7743,7747,7748,7751,7752,7756,7759,7760,7761,7763,7764,7776,7777,7778,7780,7781,7787,7793,7795,7802,7804,7808,7809,7810,7813,7814,7817,7819,7820,7823,7825,7827,7831,7832,7837,7845,7849,7850,7856,7858,7859,7865,7868,7869,7878,7886,7889,7891,7895,7900,7908,7909,7914,7915,7917,7920,7923,7924,7925,7926,7931,7934,7938,7943,7955,7956,7962,7963,7964,7973,7975,7976,7984,7986,7990,7991,7995,8000,8002,8013,8014,8016,8027,8031,8032,8034,8038,8043,8056,8075,8076,8090,8094,8099,8103,8106,8116,8118,8119,8121,8122,8130,8131,8138,8144,8149,8151,8156,8163,8170,8181,8183,8186,8191,8192,8198,8202,8207,8209,8218,8219,8234,8235,8240,8243,8245,8246,8249,8254,8255,8259,8275,8282,8284,8285,8289,8291,8296,8298,8300,8304,8305,8308,8319,8329,8330,8332,8335,8339,8349,8350,8356,8357,8370,8371,8372,8373,8375,8378,8382,8397,8403,8408,8410,8429,8434,8436,8437,8444,8447,8457,8459,8460,8466,8470,8472,8478,8481,8490,8494,8496,8497,8498,8509,8513,8517,8518,8531,8532,8533,8536,8537,8539,8543,8545,8553,8566,8575,8582,8607,8610,8620,8622,8624,8625,8631,8632,8634,8658,8659,8663,8672,8702,8706,8716,8728,8730,8734,8742,8747,8759,8777,8779,8785,8787,8790,8792,8793,8796,8798,8799,8800,8807,8811,8812,8818,8820,8825,8826,8838,8839,8842,8844,8868,8879,8881,8884,8902,8992,8996,9003,9004,9012,9020,9021,9022,9024,9027,9028,9029,9031,9036,9038,9045,9049,9073,9101,9117,9124,9129,9130,9136,9139,9142,9152,9166,9167,9171,9175,9193,9201,9205,9216,9220,9222,9223,9229,9231,9253,9301,9318,9324,9329,9331,9341,9350,9351,9356,9359,9366,9368,9377,9378,9382,9389,9391,9394,9397,9401,9407,9413,9414,9415,9421,9430,9436,9439,9449,9453,9457,9466,9467,9480,9483,9488,9498,9511,9513,9514,9528,9537,9539,9549,9550,9553,9554,9555,9556,9557,9586,9589,9590,9593,9597,9602,9604,9605,9612,9627,9630,9632,9642,9646,9648,9654,9655,9660,9662,9664,9667,9683,9686,9690,9706,9717,9719,9728,9737,9739,9740,9745,9754,9756,9772,9776,9781,9790,9791,9803,9812,9816,9830,9844,9857,9860,9864,9865,9875,9878,9902,9922,9941,9990,10004,10019,10022,10023,10028,10044,10046,10050,10053,10055,10056,10059,10060,10064,10069,10079,10080,10092,10099,10106,10107,10108,10110,10152,10158,10174,10187,10188,10209,10222,10245,10248,10271,10340,10394,10399,10425,10426,10429,10430,10437,10448,10450,10508,10539,10556,10558,10641,10642,10643,10648,10663,10664,10666,10692,10738,10739,10741,10742,10759,10760,10763,10764,10769,10771,10776,10782,10789,10793,10804,10813,10845,10846,10853,10854,10861,10865,10868,10874,10879,10888,10890,10899,10900,10909,10910,10912,10913,10917,10922,10923,10926,10940,10942,10947,10952,10958,10962,10964,10968,10972,10973,10978,10982,11005,11008,11010,11011,11020,11082,11083,11087,11132,11146,11147,11148,11149,11152,11153,11163,11165,11173,11175,11178,11179,11181,11197,11198,11203,11204,11216,11217,11219,11220,11264,11279,11281,11282,11290,11291,11295,11300,11306,11308,11309,11310,11312,11315,11316,11318,11326,11327,11330,11331,11333,11355,11357,11360,11385,11396,11410,11411,11418,11428,11431,11435,11436,11439,11444,11445,11450,11451,11458,11464,11465,11471,11481,11482,11486,11488,11489,11495,11496,11497,11499,11505,11518,11519,11521,11526,11527,11549,11555,11559,11572,11574,11575,11579,11582,11583,11596,11597,11599,11602,11608,11613,11614,11616,11627,11630,11634,11641,11645,11647,11648,11650,11653,11654,11655,11662,11664,11670,11684,11688,11693,11697,11701,11702,11708,11711,11712,11720,11724,11740,11742,11747,11750,11752,11753,11755,11761,11775,11777,11783,11785,11787,11791,11797,11802,11815,11816,11825,11827,11830,11832,11836,11844,11845,11851,11853,11864,11872,11877,11882,11889,11890,11900,11904,11921,11931,11954,11980,11981,11987,11988,11989,12008,12100,12108,12110,12111,12112,12113,12171,12173,12182,12183,12223,12239,12243,12246,12247,12250,12252,12253,12256,12258,12265,12309,12319,12360,12363,12364,12366,12374,12400,12402,12409,12410,12411,12413,12417,12419,12422,12498,12502,12503,12504,12505,12510,12519,12521,12529,12542,12544,12588,12611,12653,12667,12668,12670,12673,12677,12681,12684,12710,12713,12715,12718,12719,12722,12731,12734,12736,12738,12739,12749,12751,12752,12753,12764,12776,12791,12806,12811,12814,12818,12823,12825,12834,12836,12837,12838,12858,12869,12874,12877,12894,12904,12914,12916,12917,12926,12928,12929,12935,12953,12957,12958,12969,12972,12974,12976,12981,12982,12988,12989,12998,12999,13000,13015,13020,13021,13024,13025,13029,13035,13037,13038,13053,13065,13067,13069,13079,13083,13086,13089,13092,13093,13095,13099,13114,13119,13123,13124,13126,13130,13137,13162,13169,13171,13172,13179,13188,13197,13208,13216,13217,13219,13226,13228,13230,13234,13237,13241,13260,13264,13284,13303,13318,13325,13326,13331,13345,13346,13370,13376,13383,13385,13391,13392,13395,13401,13415,13418,13429,13433,13436,13453,13467,13489,13490,13505,13528,13543,13544,13568,13580,13583,13599,13600,13602,13606,13609,13611,13613,13614,13616,13617,13629,13632,13633,13644,13646,13650,13662,13663,13664,13682,13686,13688,13692,13694,13702,13704,13706,13714,13716,13720,13723,13734,13735,13738,13740,13745,13746,13749,13754,13757,13760,13763,13767,13773,13775,13789,13798,13813,13814,13833,13834,13845,13846,13848,13849,13851,13858,13878,13884,13887,13898,13924,13929,13930,13941,13943,13945,13957,13962,13964,13968,13973,13975,13977,13982,13983,13985,13987,13990,13993,14015,14016,14025,14031,14033,14039,14044,14055,14061,14062,14066,14067,14078,14080,14085,14086,14093,14100,14102,14109,14125,14135,14137,14139,14140,14145,14146,14147,14149,14188,14194,14197,14198,14202,14203,14212,14213,14215,14220,14228,14232,14235,14239,14243,14256,14257,14262,14266,14267,14270,14271,14272,14274,14276,14290,14295,14297,14304,14305,14320,14324,14334,14335,14340,14341,14344,14348,14352,14358,14359,14370,14375,14387,14396,14397,14417,14430,14440,14447,14452,14459,14463,14467,14470,14472,14474,14478,14487,14490,14492,14494,14497,14505,14506,14507,14508,14521,14524,14537,14546,14553,14559,14560,14566,14568,14571,14574,14577,14578,14590,14592,14593,14596,14608,14624,14627,14632,14634,14638,14648,14658,14663,14664,14665,14666,14674,14678,14680,14694,14707,14719,14724,14728,14731,14732,14735,14741,14744,14747,14750,14756,14757,14764,14768,14769,14778,14789,14793,14797,14799,14803,14806,14807,14809,14822,14824,14832,14837,14838,14839,14842,14846,14850,14869,14883,14897,14936,14942,14944,14951,14952,14961,14968,14970,14979,14981,14986,14987,14991,14999,15000,15012,15023,15024,15041,15047,15068,15073,15077,15078,15079,15091,15104,15135,15148,15152,15192,15193,15221,15241,15243,15246,15259,15269,15270,15279,15285,15286,15287,15288,15289,15291,15294,15297,15301,15311,15328,15332,15343,15344,15382,15385,15387,15388,15398,15404,15406,15409,15415,15420,15426,15442,15445,15446,15457,15461,15469,15470,15478,15487,15491,15499,15508,15511,15513,15524,15525,15530,15531,15534,15535,15537,15540,15560,15563,15565,15644,15648,15652,15684,15700,15708,15710,15715,15729,15746,15757,15776,15777,15782,15786,15809,15827,15831,15849,15850,15855,15856,15858,15869,15870,15871,15872,15873,15886,15890,15898,15920,15930,15933,15937,15940,15941,15943,15948,15954,15964,15969,15972,15973,15975,15976,15981,15989,15991,15992,15996,15997,15998,16000,16009,16016,16029,16037,16050,16051,16053,16057,16066,16069,16070,16071,16074,16079,16081,16094,16101,16113,16126,16128,16130,16144,16147,16164,16165,16172,16178,16179,16180,16189,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,16215,16216,16217,16218,16219,16220,16221,16222,16225,16233,16235,16236,16237,16243,16252,16253,16275,16281,16282,16284,16292,16293,16295,16296,16301,16303,16305,16352,16364,16376,16384,16389,16409,16416,16417,16429,16432,16436,16439,16443,16451,16454,16457,16467,16469,16480,16481,16487,16492,16493,16498,16503,16506,16507,16512,16513,16520,16538,16543,16563,16566,16570,16574,16575,16581,16594,16598,16601,16608,16609,16613,16637,16649,16656,16719,16818,16852,16866,16880,16903,16932,16935,16943,16944,16970,16991,17009,17011,17021,17024,17033,17037,17038,17045,17049,17051,17053,17055,17057,17061,17062,17065,17066,17071,17075,17081,17085,17091,17092,17095,17099,17101,17120,17135,17166,17170,17182,17193,17218,17243,17253,17255,17273,17274,17284,17302,17305,17333,17343,17345,17349,17350,17354,17355,17356,17357,17358,17359,17371,17373,17376,17378,17381,17385,17391,17395,17397,17398,17399,17400,17401,17403,17404,17405,17408,17415,17417,17419,17421,17425,17428,17429,17432,17435,17436,17438,17439,17441,17442,17447,17449,17451,17461,17464,17465,17470,17473,17474,17475,17476,17478,17479,17480,17482,17484,17485,17486,17487,17497,17513,17514,17515,17519,17521,17522,17523,17526,17528,17536,17537,17539,17559,17565,17568,17646,17656,17666,17669,17674,17683,17684,17688,17691,17697,17707,17708,17713,17715,17716,17717,17718,17723,17738,17746,17749,17763,17774,17787,17790,17791,17795,17798,17804,17806,17811,17813,17817,17818,17826,17828,17830,17833,17834,17835,17846,17847,17857,17858,17862,17863,17872,17873,17875,17893,17901,17902,17904,17905,17906,17912,17916,17929,17948,17955,17957,17959,17960,17961,17965,17966,17968,17969,17973,17977,17978,17981,17993,18001,18002,18024,18041,18050,18051,18052,18053,18057,18061,18065,18068,18077,18078,18081,18091,18095,18098,18100,18108,18113,18118,18119,18120,18122,18126,18128,18133,18134,18135,18139,18142,18149,18151,18161,18162,18172,18174,18175,18179,18182,18183,18184,18185,18186,18191,18192,18203,18204,18206,18209,18213,18216,18221,18222,18226,18232,18233,18235,18236,18238,18248,18250,18251,18254,18257,18265,18269,18272,18273,18284,18300,18301,18305,18308,18309,18311,18319,18326,18335,18337,18341,18344,18346,18349,18350,18351,18355,18360,18371,18372,18384,18391,18407,18408,18412,18413,18420,18422,18425,18427,18461,18464,18471,18474,18499,18506,18507,18508,18510,18515,18525,18527,18536,18550,18551,18554,18555,18556,18564,18567,18579,18583,18584,18595,18600,18604,18616,18618,18622,18625,18646,18649,18654,18655,18659,18661,18662,18669,18675,18676,18677,18679,18681,18697,18699,18700,18701,18702,18704,18705,18708,18711,18719,18724,18726,18727,18728,18729,18732,18733,18737,18745,18747,18748,18749,18750,18751,18752,18754,18757,18760,18766,18773,18776,18780,18781,18785,18793,18800,18802,18803,18812,18814,18815,18816,18819,18822,18823,18826,18830,18831,18833,18837,18841,18851,18852,18853,18854,18858,18859,18863,18870,18882,18892,18902,18903,18905,18913,18914,18915,18917,18919,18920,18930,18934,18937,18938,18944,18946,18952,18953,18954,18958,18961,18965,18970,18975,18978,18984,18985,18987,18990,18991,18992,18993,18999,19000,19002,19010,19012,19014,19015,19016,19018,19023,19024,19027,19030,19033,19035,19040,19042,19044,19045,19046,19047,19049,19054,19055,19057,19058,19062,19063,19064,19068,19069,19077,19084,19090,19093,19095,19100,19101,19102,19104,19108,19114,19115,19119,19124,19131,19135,19141,19142,19148,19149,19151,19153,19163,19165,19167,19170,19175,19177,19178,19179,19182,19185,19194,19195,19196,19199,19201,19203,19204,19206,19208,19215,19217,19219,19222,19224,19226,19233,19239,19240,19241,19245,19246,19249,19250,19253,19254,19255,19260,19261,19277,19278,19281,19283,19284,19287,19288,19297,19298,19299,19300,19305,19306,19310,19311,19313,19315,19317,19320,19325,19329,19331,19332,19335,19339,19341,19345,19346,19351,19353,19357,19361,19363,19365,19370,19371,19396,19399,19402,19404,19406,19413,19422,19425,19426,19430,19432,19433,19434,19435,19442,19450,19458,19459,19460,19464,19465,19466,19469,19471,19474,19475,19476,19478,19484,19492,19494,19495,19496,19499,19502,19517,19520,19531,19532,19548,19549,19562,19563,19565,19568,19570,19572,19583,19587,19588,19606,19610,19611,19612,19615,19617,19622,19632,19634,19642,19643,19644,19645,19646,19648,19650,19651,19663,19667,19670,19672,19674,19677,19678,19679,19681,19684,19688,19697,19698,19700,19702,19706,19707,19709,19710,19711,19713,19716,19721,19724,19725,19735,19736,19738,19739,19746,19761,19762,19773,19775,19779,19786,19792,19801,19804,19806,19808,19829,19830,19837,19839,19849,19883,19884,19889,19890,19892,19899,19900,19901,19902,19904,19910,19918,19920,19922,19935,19941,19944,19948,19952,19955,19957,19965,19975,19977,19981,19985,19986,19989,19993,19994,19995,19997,20000,20004,20024,20025,20027,20029,20039,20043,20045,20055,20057,20059,20060,20063,20064,20066,20067,20068,20072,20073,20077,20081,20085,20087,20089,20098,20100,20106,20107,20114,20117,20118,20120,20122,20124,20125,20126,20130,20135,20137,20139,20140,20142,20143,20146,20150,20157,20169,20175,20177,20180,20181,20186,20190,20191,20193,20195,20197,20204,20210,20214,20217,20218,20221,20223,20224,20226,20229,20231,20238,20241,20243,20245,20260,20263,20265,20267,20268,20274,20279,20315,20318,20319,20320,20321,20326,20328,20329,20330,20331,20332,20345,20362,20376,20381,20382,20385,20386,20387,20432,20435,20438,20458,20464,20484,20485,20497,20498,20499,20507,20509,20511,20521,20522,20523,20528,20529,20552,20559,20570,20573,20576,20577,20581,20586,20589,20590,20591,20596,20600,20604,20616,20621,20631,20644,20650,20653,20665,20667,20671,20682,20683,20686,20695,20696,20700,20703,20704,20705,20717,20722,20729,20731,20738,20739,20740,20744,20749,20752,20754,20759,20761,20776,20821,20824,20846,20849,20854,20860,20867,20870,20881,20886,20907,20911,20915,20933,20935,20937,20939,20943,20949,20951,20956,20957,20965,20976,20992,20998,21015,21020,21035,21041,21044,21047,21052,21053,21056,21063,21075,21080,21083,21086,21088,21089,21090,21094,21100,21105,21106,21107,21114,21119,21167,21179,21180,21181,21183,21189,21192,21196,21199,21204,21207,21212,21213,21223,21229,21230,21237,21244,21259,21263,21273,21274,21275,21280,21282,21286,21289,21290,21291,21309,21311,21313,21324,21340,21343,21348,21353,21356,21359,21367,21368,21370,21381,21382,21395,21397,21403,21410,21411,21425,21448,21453,21454,21455,21458,21470,21471,21476,21481,21533,21557,21558,21560,21565,21566,21601,21609,21621,21624,21644,21664,21667,21671,21672,21680,21684,21688,21691,21716,21978,21980,21987,21997,21999,22002,22004,22006,22007,22011,22026,22027,22029,22034,22036,22040,22061,22063,22071,22072,22073,22088,22090,22096,22098,22100,22103,22105,22107,22109,22110,22112,22113,22132,22134,22139,22143,22145,22146,22147,22149,22153,22155,22156,22159,22163,22166,22168,22173,22176,22179,22184,22191,22192,22200,22201,22203,22204,22205,22209,22212,22214,22220,22223,22224,22225,22228,22230,22238,22241,22243,22245,22249,22250,22275,22279,22281,22282,22283,22286,22291,22296,22297,22301,22302,22303,22304,22306,22308,22309,22310,22311,22312,22322,22324,22331,22332,22333,22334,22338,22343,22344,22351,22355,22356,22357,22360,22402,22409,22412,22415,22422,22423,22426,22427,22428,22435,22436,22440,22445,22460,22461,22462,22464,22466,22469,22475,22477,22478,22492,22503,22504,22525,22526,22528,22533,22541,22542,22543,22544,22545,22568,22570,22571,22582,22586,22588,22591,22592,22595,22596,22598,22605,22615,22622,22624,22625,22629,22630,22632,22633,22637,22638,22639,22650,22652,22656,22665,22670,22672,22673,22682,22694,22698,22699,22701,22731,22735,22736,22737,22747,22751,22753,22756,22759,22762,22765,22766,22776,22785,22794,22798,22804,22805,22809,22812,22814,22815,22816,22819,22828,22829,22831,22833,22840,22859,22861,22878,22905,22907,22908,22909,22910,22912,22920,22921,22928,22931,22932,22939,22962,22967,22968,22982,22986,22988,22990,22993,22999,23000,23001,23004,23007,23012,23015,23016,23018,23019,23021,23022,23024,23030,23031,23034,23039,23044,23062,23064,23073,23093,23097,23100,23103,23105,23107,23110,23114,23117,23119,23122,23126,23128,23132,23134,23139,23141]]],["+",[196,193,[[0,15,15,0,15,[[2,1,1,0,1],[12,1,1,1,2],[14,1,1,2,3],[25,1,1,3,4],[27,1,1,4,5],[31,2,2,5,7],[34,1,1,7,8],[38,2,2,8,10],[39,1,1,10,11],[41,1,1,11,12],[46,2,2,12,14],[48,1,1,14,15]]],[1,4,4,15,19,[[61,1,1,15,16],[63,1,1,16,17],[71,1,1,17,18],[81,1,1,18,19]]],[2,10,10,19,29,[[96,1,1,19,20],[102,1,1,20,21],[107,1,1,21,22],[108,1,1,22,23],[110,3,3,23,26],[111,2,2,26,28],[113,1,1,28,29]]],[3,9,9,29,38,[[126,1,1,29,30],[129,1,1,30,31],[130,2,2,31,33],[134,1,1,33,34],[140,1,1,34,35],[142,2,2,35,37],[151,1,1,37,38]]],[4,9,9,38,47,[[156,1,1,38,39],[159,1,1,39,40],[162,1,1,40,41],[164,3,3,41,44],[168,1,1,44,45],[183,1,1,45,46],[184,1,1,46,47]]],[5,3,3,47,50,[[200,1,1,47,48],[203,1,1,48,49],[209,1,1,49,50]]],[6,2,2,50,52,[[213,1,1,50,51],[225,1,1,51,52]]],[7,3,2,52,54,[[234,3,2,52,54]]],[8,12,11,54,65,[[237,1,1,54,55],[243,1,1,55,56],[249,3,2,56,58],[256,3,3,58,61],[260,1,1,61,62],[261,1,1,62,63],[265,2,2,63,65]]],[9,14,14,65,79,[[268,1,1,65,66],[269,2,2,66,68],[271,1,1,68,69],[278,3,3,69,72],[279,1,1,72,73],[281,1,1,73,74],[282,1,1,74,75],[284,1,1,75,76],[285,1,1,76,77],[287,1,1,77,78],[289,1,1,78,79]]],[10,12,12,79,91,[[295,1,1,79,80],[298,2,2,80,82],[303,1,1,82,83],[304,1,1,83,84],[307,2,2,84,86],[308,1,1,86,87],[311,1,1,87,88],[312,3,3,88,91]]],[11,18,17,91,108,[[316,2,2,91,93],[317,4,4,93,97],[319,1,1,97,98],[321,1,1,98,99],[322,1,1,99,100],[325,2,1,100,101],[326,1,1,101,102],[329,3,3,102,105],[331,1,1,105,106],[335,2,2,106,108]]],[12,3,3,108,111,[[339,1,1,108,109],[352,1,1,109,110],[360,1,1,110,111]]],[13,9,9,111,120,[[368,1,1,111,112],[372,1,1,112,113],[384,3,3,113,116],[387,1,1,116,117],[389,1,1,117,118],[392,1,1,118,119],[398,1,1,119,120]]],[15,2,2,120,122,[[414,2,2,120,122]]],[16,3,3,122,125,[[427,2,2,122,124],[430,1,1,124,125]]],[17,7,7,125,132,[[444,2,2,125,127],[450,1,1,127,128],[460,1,1,128,129],[470,1,1,129,130],[471,1,1,130,131],[477,1,1,131,132]]],[18,3,3,132,135,[[478,2,2,132,134],[616,1,1,134,135]]],[19,8,8,135,143,[[628,1,1,135,136],[630,1,1,136,137],[638,1,1,137,138],[642,1,1,138,139],[644,1,1,139,140],[645,1,1,140,141],[646,1,1,141,142],[648,1,1,142,143]]],[20,3,3,143,146,[[663,1,1,143,144],[666,1,1,144,145],[667,1,1,145,146]]],[22,12,12,146,158,[[681,1,1,146,147],[685,1,1,147,148],[686,1,1,148,149],[707,1,1,149,150],[711,1,1,150,151],[715,1,1,151,152],[720,1,1,152,153],[733,2,2,153,155],[737,1,1,155,156],[743,2,2,156,158]]],[23,18,18,158,176,[[747,1,1,158,159],[748,1,1,159,160],[751,2,2,160,162],[753,1,1,162,163],[760,1,1,163,164],[763,1,1,164,165],[764,1,1,165,166],[766,2,2,166,168],[767,1,1,168,169],[775,1,1,169,170],[776,1,1,170,171],[782,2,2,171,173],[783,1,1,173,174],[788,1,1,174,175],[795,1,1,175,176]]],[24,1,1,176,177,[[801,1,1,176,177]]],[25,6,6,177,183,[[813,1,1,177,178],[834,1,1,178,179],[837,1,1,179,180],[845,3,3,180,183]]],[26,1,1,183,184,[[859,1,1,183,184]]],[27,1,1,184,185,[[870,1,1,184,185]]],[29,4,4,185,189,[[881,1,1,185,186],[882,1,1,186,187],[883,1,1,187,188],[886,1,1,188,189]]],[32,1,1,189,190,[[898,1,1,189,190]]],[37,2,2,190,192,[[914,1,1,190,191],[918,1,1,191,192]]],[38,1,1,192,193,[[926,1,1,192,193]]]],[56,333,364,705,790,954,956,1021,1155,1158,1186,1267,1424,1438,1483,1825,1902,2122,2463,2913,3070,3278,3301,3347,3351,3359,3375,3390,3461,4019,4103,4138,4151,4281,4468,4522,4554,4878,5041,5116,5198,5245,5254,5258,5348,5745,5788,6191,6278,6468,6580,6936,7184,7190,7255,7388,7538,7547,7776,7777,7778,7895,7915,7995,8000,8076,8094,8116,8138,8289,8291,8296,8350,8410,8437,8498,8539,8582,8663,8881,9004,9012,9205,9231,9318,9329,9359,9480,9488,9498,9511,9605,9627,9654,9662,9664,9667,9717,9791,9816,9878,9902,10019,10022,10023,10079,10174,10188,10340,10793,11005,11217,11290,11555,11559,11572,11641,11662,11747,11890,12309,12319,12738,12739,12791,13053,13065,13219,13467,13734,13757,13930,13941,13943,16253,16429,16467,16719,16818,16880,16903,16932,17011,17408,17473,17476,17723,17787,17813,18206,18300,18371,18499,18750,18751,18802,18903,18915,19012,19055,19142,19151,19199,19351,19413,19425,19471,19478,19492,19721,19762,19899,19901,19935,20024,20226,20464,20703,21291,21381,21609,21621,21624,22036,22220,22402,22422,22445,22492,22656,22928,22993,23117]]],["Although",[5,5,[[9,1,1,0,1,[[289,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[17,1,1,2,3,[[440,1,1,2,3]]],[25,1,1,3,4,[[812,1,1,3,4]]],[34,1,1,4,5,[[905,1,1,4,5]]]],[8658,9413,12957,20671,22785]]],["And",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7261]]],["Assuredly",[3,3,[[10,3,3,0,3,[[291,3,3,0,3]]]],[8730,8734,8747]]],["Because",[67,67,[[0,9,9,0,9,[[2,2,2,0,2],[17,1,1,2,3],[19,1,1,3,4],[25,1,1,4,5],[26,1,1,5,6],[28,2,2,6,8],[30,1,1,8,9]]],[1,4,4,9,13,[[50,1,1,9,10],[51,1,1,10,11],[66,1,1,11,12],[67,1,1,12,13]]],[3,5,5,13,18,[[119,1,1,13,14],[130,1,1,14,15],[131,1,1,15,16],[138,1,1,16,17],[151,1,1,17,18]]],[4,1,1,18,19,[[184,1,1,18,19]]],[5,2,2,19,21,[[195,1,1,19,20],[203,1,1,20,21]]],[6,1,1,21,22,[[221,1,1,21,22]]],[8,2,2,22,24,[[236,1,1,22,23],[248,1,1,23,24]]],[9,1,1,24,25,[[285,1,1,24,25]]],[10,1,1,25,26,[[311,1,1,25,26]]],[11,1,1,26,27,[[320,1,1,26,27]]],[12,2,2,27,29,[[341,1,1,27,28],[360,1,1,28,29]]],[13,2,2,29,31,[[388,1,1,29,30],[394,1,1,30,31]]],[15,1,1,31,32,[[425,1,1,31,32]]],[16,1,1,32,33,[[434,1,1,32,33]]],[17,9,9,33,42,[[438,1,1,33,34],[446,1,1,34,35],[450,1,1,35,36],[455,1,1,36,37],[458,1,1,37,38],[464,1,1,38,39],[465,1,1,39,40],[471,1,1,40,41],[474,1,1,41,42]]],[18,10,10,42,52,[[505,1,1,42,43],[540,2,2,43,45],[546,1,1,45,46],[555,1,1,46,47],[568,2,2,47,49],[583,1,1,49,50],[584,1,1,50,51],[593,1,1,51,52]]],[20,1,1,52,53,[[666,1,1,52,53]]],[22,4,4,53,57,[[693,1,1,53,54],[695,1,1,54,55],[706,1,1,55,56],[710,1,1,56,57]]],[23,7,7,57,64,[[746,1,1,57,58],[762,1,1,58,59],[773,1,1,59,60],[779,1,1,60,61],[794,1,1,61,62],[795,2,2,62,64]]],[25,1,1,64,65,[[822,1,1,64,65]]],[27,1,1,65,66,[[869,1,1,65,66]]],[34,1,1,66,67,[[904,1,1,66,67]]]],[69,72,444,506,701,747,810,828,904,1551,1564,1999,2014,3705,4130,4184,4404,4873,5761,6061,6281,6842,7232,7496,8553,9457,9739,10394,11011,11653,11787,12673,12858,12914,13124,13230,13345,13436,13544,13568,13754,13851,14304,14842,14846,14942,15135,15404,15409,15684,15710,15850,17464,17961,17993,18179,18273,19000,19399,19650,19839,20177,20267,20268,20957,22205,22756]]],["But",[49,49,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,2,2,1,3,[[72,1,1,1,2],[83,1,1,2,3]]],[4,9,9,3,12,[[156,1,1,3,4],[159,1,1,4,5],[163,1,1,5,6],[165,1,1,6,7],[167,1,1,7,8],[172,1,1,8,9],[173,1,1,9,10],[181,1,1,10,11],[182,1,1,11,12]]],[5,3,3,12,15,[[203,1,1,12,13],[204,1,1,13,14],[208,1,1,14,15]]],[6,1,1,15,16,[[221,1,1,15,16]]],[8,1,1,16,17,[[264,1,1,16,17]]],[10,2,2,17,19,[[298,1,1,17,18],[301,1,1,18,19]]],[11,2,2,19,21,[[320,1,1,19,20],[324,1,1,20,21]]],[12,1,1,21,22,[[366,1,1,21,22]]],[13,4,4,22,26,[[372,1,1,22,23],[383,1,1,23,24],[391,1,1,24,25],[396,1,1,25,26]]],[17,3,3,26,29,[[439,1,1,26,27],[454,1,1,27,28],[458,1,1,28,29]]],[18,7,7,29,36,[[499,1,1,29,30],[514,1,1,30,31],[521,1,1,31,32],[552,1,1,32,33],[571,1,1,33,34],[607,1,1,34,35],[618,1,1,35,36]]],[20,1,1,36,37,[[669,1,1,36,37]]],[22,3,3,37,40,[[714,1,1,37,38],[727,1,1,38,39],[740,1,1,39,40]]],[23,7,7,40,47,[[751,1,1,40,41],[766,2,2,41,43],[775,1,1,43,44],[787,1,1,44,45],[788,1,1,45,46],[793,1,1,46,47]]],[24,1,1,47,48,[[799,1,1,47,48]]],[29,1,1,48,49,[[884,1,1,48,49]]]],[595,2166,2509,5026,5119,5215,5281,5327,5444,5464,5694,5722,6293,6300,6453,6845,7975,9012,9130,9740,9864,11178,11300,11527,11712,11845,12935,13325,13429,14213,14470,14578,15078,15446,16144,16284,17521,18337,18661,18863,19131,19466,19471,19724,20000,20027,20137,20386,22464]]],["Certainly",[1,1,[[1,1,1,0,1,[[52,1,1,0,1]]]],[1591]]],["Did",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[13000]]],["Doubtless",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18882]]],["Else",[3,3,[[1,2,2,0,2,[[57,1,1,0,1],[59,1,1,1,2]]],[5,1,1,2,3,[[209,1,1,2,3]]]],[1731,1781,6472]]],["Even",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8747]]],["For",[710,710,[[0,20,20,0,20,[[2,1,1,0,1],[3,1,1,1,2],[6,1,1,2,3],[17,1,1,3,4],[18,1,1,4,5],[19,1,1,5,6],[20,1,1,6,7],[25,1,1,7,8],[29,1,1,8,9],[30,1,1,9,10],[31,1,1,10,11],[35,1,1,11,12],[36,1,1,12,13],[39,1,1,13,14],[40,2,2,14,16],[42,1,1,16,17],[43,2,2,17,19],[44,1,1,19,20]]],[1,11,11,20,31,[[58,3,3,20,23],[63,1,1,23,24],[64,1,1,24,25],[69,1,1,25,26],[71,1,1,26,27],[72,1,1,27,28],[83,2,2,28,30],[89,1,1,30,31]]],[2,13,13,31,44,[[96,1,1,31,32],[100,2,2,32,34],[105,1,1,34,35],[106,2,2,35,37],[107,1,1,37,38],[109,1,1,38,39],[110,1,1,39,40],[112,1,1,40,41],[114,3,3,41,44]]],[3,12,12,44,56,[[124,2,2,44,46],[130,1,1,46,47],[137,2,2,47,49],[138,1,1,49,50],[139,1,1,50,51],[141,1,1,51,52],[142,1,1,52,53],[148,2,2,53,55],[150,1,1,55,56]]],[4,40,40,56,96,[[154,1,1,56,57],[155,1,1,57,58],[156,4,4,58,62],[157,1,1,62,63],[158,1,1,63,64],[159,2,2,64,66],[160,1,1,66,67],[161,1,1,67,68],[162,1,1,68,69],[163,3,3,69,72],[164,1,1,72,73],[166,1,1,73,74],[167,2,2,74,76],[170,3,3,76,79],[172,1,1,79,80],[174,1,1,80,81],[175,1,1,81,82],[177,1,1,82,83],[181,1,1,83,84],[182,1,1,84,85],[183,3,3,85,88],[184,8,8,88,96]]],[5,6,6,96,102,[[188,1,1,96,97],[191,1,1,97,98],[197,1,1,98,99],[200,2,2,99,101],[210,1,1,101,102]]],[6,5,5,102,107,[[216,1,1,102,103],[218,1,1,103,104],[223,2,2,104,106],[231,1,1,106,107]]],[8,5,5,107,112,[[247,1,1,107,108],[249,2,2,108,110],[250,1,1,110,111],[255,1,1,111,112]]],[9,13,13,112,125,[[273,1,1,112,113],[278,1,1,113,114],[280,2,2,114,116],[281,1,1,116,117],[285,3,3,117,120],[288,5,5,120,125]]],[10,12,12,125,137,[[291,1,1,125,126],[294,1,1,126,127],[298,4,4,127,131],[300,1,1,131,132],[301,1,1,132,133],[303,3,3,133,136],[307,1,1,136,137]]],[11,6,6,137,143,[[315,1,1,137,138],[323,1,1,138,139],[326,1,1,139,140],[329,1,1,140,141],[331,1,1,141,142],[336,1,1,142,143]]],[12,11,11,143,154,[[342,2,2,143,145],[346,1,1,145,146],[349,1,1,146,147],[353,2,2,147,149],[354,2,2,149,151],[360,2,2,151,153],[366,1,1,153,154]]],[13,17,17,154,171,[[371,1,1,154,155],[372,1,1,155,156],[373,1,1,156,157],[375,1,1,157,158],[377,1,1,158,159],[382,1,1,159,160],[389,1,1,160,161],[390,2,2,161,163],[394,2,2,163,165],[395,1,1,165,166],[396,5,5,166,171]]],[14,6,6,171,177,[[408,1,1,171,172],[409,2,2,172,174],[410,1,1,174,175],[411,2,2,175,177]]],[15,6,6,177,183,[[418,2,2,177,179],[420,1,1,179,180],[422,1,1,180,181],[423,1,1,181,182],[424,1,1,182,183]]],[16,6,6,183,189,[[426,1,1,183,184],[429,1,1,184,185],[432,1,1,185,186],[433,1,1,186,187],[434,1,1,187,188],[435,1,1,188,189]]],[17,50,50,189,239,[[438,3,3,189,192],[440,3,3,192,195],[441,3,3,195,198],[443,2,2,198,200],[444,1,1,200,201],[446,2,2,201,203],[448,1,1,203,204],[449,2,2,204,206],[450,3,3,206,209],[452,1,1,209,210],[453,1,1,210,211],[456,2,2,211,213],[457,2,2,213,215],[458,1,1,215,216],[459,1,1,216,217],[462,1,1,217,218],[463,1,1,218,219],[465,1,1,219,220],[466,4,4,220,224],[467,2,2,224,226],[468,1,1,226,227],[469,7,7,227,234],[470,1,1,234,235],[471,3,3,235,238],[472,1,1,238,239]]],[18,142,142,239,381,[[478,1,1,239,240],[482,3,3,240,243],[483,1,1,243,244],[486,2,2,244,246],[487,1,1,246,247],[488,2,2,247,249],[493,1,1,249,250],[495,6,6,250,256],[498,4,4,256,260],[499,3,3,260,263],[501,1,1,263,264],[503,1,1,264,265],[504,1,1,265,266],[507,1,1,266,267],[508,3,3,267,270],[509,1,1,270,271],[510,3,3,271,274],[512,2,2,274,276],[513,2,2,276,278],[514,5,5,278,283],[515,7,7,283,290],[517,1,1,290,291],[520,1,1,291,292],[521,3,3,292,295],[524,2,2,295,297],[525,2,2,297,299],[526,1,1,299,300],[527,1,1,300,301],[528,2,2,301,303],[531,2,2,303,305],[532,1,1,305,306],[533,1,1,306,307],[534,1,1,307,308],[536,1,1,308,309],[538,2,2,309,311],[543,1,1,311,312],[546,4,4,312,316],[548,2,2,316,318],[549,1,1,318,319],[550,3,3,319,322],[552,2,2,322,324],[556,1,1,324,325],[558,1,1,325,326],[560,2,2,326,328],[561,2,2,328,330],[563,3,3,330,333],[565,1,1,333,334],[566,4,4,334,338],[567,3,3,338,341],[568,1,1,341,342],[569,2,2,342,344],[571,1,1,344,345],[572,2,2,345,347],[573,2,2,347,349],[574,1,1,349,350],[577,1,1,350,351],[579,4,4,351,355],[580,3,3,355,358],[582,1,1,358,359],[584,2,2,359,361],[585,1,1,361,362],[586,3,3,362,365],[593,1,1,365,366],[594,1,1,366,367],[596,1,1,367,368],[599,1,1,368,369],[602,1,1,369,370],[605,1,1,370,371],[609,1,1,371,372],[612,3,3,372,375],[614,1,1,375,376],[616,2,2,376,378],[620,1,1,378,379],[624,1,1,379,380],[626,1,1,380,381]]],[19,42,42,381,423,[[628,3,3,381,384],[629,3,3,384,387],[630,4,4,387,391],[631,5,5,391,396],[632,2,2,396,398],[633,3,3,398,401],[634,3,3,401,404],[635,3,3,404,407],[636,1,1,407,408],[649,2,2,408,410],[650,5,5,410,415],[651,5,5,415,420],[652,2,2,420,422],[654,1,1,422,423]]],[20,25,25,423,448,[[659,1,1,423,424],[660,6,6,424,430],[661,1,1,430,431],[662,2,2,431,433],[663,3,3,433,436],[664,3,3,436,439],[665,4,4,439,443],[666,1,1,443,444],[667,3,3,444,447],[670,1,1,447,448]]],[21,1,1,448,449,[[672,1,1,448,449]]],[22,96,96,449,545,[[679,2,2,449,451],[680,1,1,451,452],[681,2,2,452,454],[683,1,1,454,455],[685,2,2,455,457],[686,2,2,457,459],[687,4,4,459,463],[688,5,5,463,468],[691,1,1,468,469],[692,2,2,469,471],[693,3,3,471,474],[694,1,1,474,475],[696,2,2,475,477],[699,3,3,477,480],[700,1,1,480,481],[703,3,3,481,484],[704,2,2,484,486],[706,6,6,486,492],[707,2,2,492,494],[708,5,5,494,499],[709,2,2,499,501],[710,1,1,501,502],[711,1,1,502,503],[712,3,3,503,506],[715,1,1,506,507],[716,1,1,507,508],[717,1,1,508,509],[719,1,1,509,510],[721,1,1,510,511],[722,1,1,511,512],[723,1,1,512,513],[726,1,1,513,514],[727,1,1,514,515],[729,2,2,515,517],[730,3,3,517,520],[732,5,5,520,525],[733,4,4,525,529],[734,1,1,529,530],[735,2,2,530,532],[737,2,2,532,534],[738,2,2,534,536],[739,2,2,536,538],[740,1,1,538,539],[741,1,1,539,540],[743,1,1,540,541],[744,4,4,541,545]]],[23,85,85,545,630,[[745,1,1,545,546],[746,4,4,546,550],[748,5,5,550,555],[749,2,2,555,557],[750,2,2,557,559],[751,3,3,559,562],[752,1,1,562,563],[753,2,2,563,565],[754,3,3,565,568],[755,2,2,568,570],[756,1,1,570,571],[757,1,1,571,572],[759,1,1,572,573],[760,4,4,573,577],[764,3,3,577,580],[765,1,1,580,581],[766,3,3,581,584],[767,3,3,584,587],[769,3,3,587,590],[771,3,3,590,593],[772,1,1,593,594],[773,5,5,594,599],[774,5,5,599,604],[775,4,4,604,608],[776,3,3,608,611],[777,3,3,611,614],[781,1,1,614,615],[783,1,1,615,616],[786,2,2,616,618],[792,4,4,618,622],[793,3,3,622,625],[794,2,2,625,627],[795,2,2,627,629],[796,1,1,629,630]]],[24,2,2,630,632,[[799,2,2,630,632]]],[25,23,23,632,655,[[804,1,1,632,633],[808,1,1,633,634],[813,2,2,634,636],[815,2,2,636,638],[817,1,1,638,639],[819,1,1,639,640],[821,1,1,640,641],[822,1,1,641,642],[824,2,2,642,644],[825,1,1,644,645],[826,1,1,645,646],[827,2,2,646,648],[831,1,1,648,649],[833,2,2,649,651],[835,1,1,651,652],[837,1,1,652,653],[843,2,2,653,655]]],[27,11,11,655,666,[[863,1,1,655,656],[864,1,1,656,657],[865,1,1,657,658],[866,1,1,658,659],[867,1,1,659,660],[868,1,1,660,661],[869,3,3,661,664],[870,1,1,664,665],[871,1,1,665,666]]],[28,2,2,666,668,[[876,1,1,666,667],[878,1,1,667,668]]],[29,7,7,668,675,[[882,1,1,668,669],[883,3,3,669,672],[884,1,1,672,673],[885,1,1,673,674],[887,1,1,674,675]]],[30,2,2,675,677,[[888,2,2,675,677]]],[31,1,1,677,678,[[889,1,1,677,678]]],[32,6,6,678,684,[[893,3,3,678,681],[896,1,1,681,682],[898,1,1,682,683],[899,1,1,683,684]]],[33,2,2,684,686,[[900,1,1,684,685],[901,1,1,685,686]]],[34,5,5,686,691,[[903,1,1,686,687],[904,4,4,687,691]]],[35,2,2,691,693,[[907,1,1,691,692],[908,1,1,692,693]]],[36,1,1,693,694,[[910,1,1,693,694]]],[37,11,11,694,705,[[912,2,2,694,696],[913,1,1,696,697],[914,1,1,697,698],[918,3,3,698,701],[919,1,1,701,702],[920,1,1,702,703],[921,2,2,703,705]]],[38,5,5,705,710,[[925,1,1,705,706],[926,2,2,706,708],[927,1,1,708,709],[928,1,1,709,710]]]],[60,104,163,443,470,513,543,714,860,889,948,1047,1118,1187,1246,1247,1300,1356,1358,1364,1744,1756,1757,1901,1939,2062,2140,2167,2510,2520,2745,2904,3041,3042,3231,3246,3249,3280,3327,3363,3431,3481,3511,3524,3955,3956,4151,4366,4368,4392,4425,4489,4554,4733,4737,4830,4945,4986,5011,5028,5035,5036,5079,5101,5115,5117,5144,5176,5203,5218,5230,5239,5249,5292,5325,5330,5389,5396,5398,5431,5497,5514,5563,5695,5719,5748,5755,5757,5767,5780,5786,5789,5790,5794,5798,5805,5879,5940,6127,6190,6191,6493,6659,6743,6889,6900,7107,7482,7526,7547,7583,7761,8207,8298,8370,8372,8397,8517,8531,8539,8624,8625,8631,8632,8634,8742,8868,8992,9027,9036,9038,9101,9124,9193,9201,9216,9331,9593,9844,9922,10004,10092,10222,10430,10450,10641,10742,10845,10846,10868,10888,11008,11010,11179,11281,11295,11327,11385,11428,11518,11670,11684,11701,11783,11785,11797,11830,11836,11844,11845,11851,12171,12182,12183,12223,12239,12246,12410,12419,12502,12588,12611,12670,12719,12776,12811,12823,12838,12869,12917,12928,12929,12953,12969,12974,12981,12982,12999,13037,13038,13083,13119,13123,13179,13188,13197,13208,13228,13237,13264,13284,13376,13383,13395,13415,13433,13453,13489,13528,13580,13599,13600,13606,13611,13646,13650,13664,13686,13688,13692,13694,13704,13706,13720,13723,13740,13763,13767,13775,13945,13977,13982,13985,13990,14025,14039,14044,14061,14066,14102,14139,14140,14145,14146,14147,14149,14194,14197,14198,14202,14220,14228,14232,14243,14276,14290,14324,14334,14341,14344,14359,14370,14375,14387,14417,14430,14440,14447,14452,14459,14467,14472,14478,14492,14494,14497,14505,14506,14507,14508,14537,14568,14574,14577,14596,14627,14632,14638,14648,14658,14678,14694,14707,14728,14732,14744,14768,14778,14793,14822,14824,14883,14944,14961,14968,14970,14981,14986,15012,15023,15024,15047,15077,15079,15192,15221,15243,15246,15269,15270,15289,15294,15297,15311,15328,15332,15343,15344,15382,15385,15387,15406,15415,15420,15445,15457,15461,15469,15470,15487,15513,15524,15530,15535,15540,15560,15563,15565,15648,15708,15715,15746,15757,15777,15786,15856,15869,15981,16094,16113,16128,16164,16179,16180,16189,16225,16243,16252,16296,16364,16389,16409,16416,16432,16439,16451,16454,16457,16469,16481,16487,16492,16493,16506,16507,16512,16520,16538,16563,16566,16574,16581,16594,16601,16609,16613,16637,16649,17033,17038,17051,17055,17062,17065,17071,17081,17085,17095,17099,17101,17120,17135,17193,17333,17349,17354,17355,17356,17358,17359,17378,17391,17395,17400,17404,17417,17421,17425,17429,17435,17441,17449,17451,17465,17479,17480,17487,17537,17565,17683,17684,17697,17708,17715,17746,17790,17798,17811,17818,17833,17834,17835,17847,17858,17863,17872,17873,17875,17916,17929,17955,17966,17968,17969,17977,18001,18002,18041,18050,18051,18057,18120,18122,18128,18135,18151,18172,18174,18175,18184,18185,18191,18203,18213,18221,18232,18236,18248,18250,18254,18257,18265,18301,18305,18308,18311,18384,18408,18420,18464,18508,18536,18579,18616,18655,18676,18681,18699,18700,18708,18726,18728,18729,18732,18733,18748,18749,18750,18752,18757,18780,18781,18803,18812,18823,18833,18851,18854,18859,18870,18914,18934,18937,18938,18944,18961,18975,18978,18985,18987,19030,19042,19049,19054,19058,19069,19084,19095,19102,19124,19141,19149,19170,19194,19196,19204,19219,19222,19233,19239,19255,19277,19320,19339,19341,19345,19353,19426,19430,19432,19450,19458,19460,19465,19494,19495,19502,19548,19549,19563,19606,19611,19615,19632,19643,19644,19645,19646,19663,19670,19672,19678,19679,19684,19697,19698,19702,19716,19746,19761,19773,19779,19786,19792,19884,19941,19993,19995,20085,20087,20117,20120,20139,20140,20142,20169,20175,20217,20245,20279,20385,20387,20507,20590,20704,20705,20738,20752,20821,20881,20935,20965,21035,21053,21063,21089,21107,21119,21207,21259,21280,21324,21368,21558,21560,22110,22132,22149,22166,22173,22184,22200,22201,22203,22214,22228,22297,22344,22423,22426,22427,22435,22461,22475,22504,22525,22526,22541,22582,22588,22591,22625,22652,22670,22694,22701,22737,22751,22759,22762,22765,22809,22829,22861,22907,22908,22921,22932,22986,22988,22990,23016,23018,23034,23044,23100,23110,23119,23126,23139]]],["If",[63,63,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,10,10,1,11,[[70,3,3,1,4],[71,5,5,4,9],[72,2,2,9,11]]],[2,9,9,11,20,[[90,1,1,11,12],[93,1,1,12,13],[94,1,1,13,14],[95,1,1,14,15],[101,1,1,15,16],[102,2,2,16,18],[111,1,1,18,19],[114,1,1,19,20]]],[3,5,5,20,25,[[121,1,1,20,21],[125,1,1,21,22],[143,1,1,22,23],[146,2,2,23,25]]],[4,23,23,25,48,[[159,1,1,25,26],[164,1,1,26,27],[165,3,3,27,30],[167,1,1,30,31],[169,2,2,31,33],[171,2,2,33,35],[173,3,3,35,38],[174,5,5,38,43],[175,1,1,43,44],[176,1,1,44,45],[177,2,2,45,47],[182,1,1,47,48]]],[5,1,1,48,49,[[210,1,1,48,49]]],[7,1,1,49,50,[[232,1,1,49,50]]],[10,3,3,50,53,[[298,3,3,50,53]]],[13,3,3,53,56,[[372,3,3,53,56]]],[18,1,1,56,57,[[488,1,1,56,57]]],[19,1,1,57,58,[[651,1,1,57,58]]],[23,2,2,58,60,[[756,1,1,58,59],[782,1,1,59,60]]],[25,2,2,60,62,[[834,1,1,60,61],[847,1,1,61,62]]],[37,1,1,62,63,[[918,1,1,62,63]]]],[103,2079,2099,2105,2114,2118,2119,2120,2123,2148,2149,2747,2797,2845,2851,3046,3081,3090,3381,3494,3804,3975,4562,4650,4651,5128,5261,5273,5278,5284,5326,5366,5372,5415,5422,5448,5462,5465,5476,5483,5492,5493,5498,5510,5532,5548,5552,5718,6496,7139,9022,9029,9031,11310,11316,11318,14062,17091,19254,19910,21290,21671,22982]]],["Nevertheless",[3,3,[[10,1,1,0,1,[[305,1,1,0,1]]],[13,1,1,1,2,[[378,1,1,1,2]]],[22,1,1,2,3,[[687,1,1,2,3]]]],[9253,11445,17830]]],["Now",[1,1,[[5,1,1,0,1,[[191,1,1,0,1]]]],[5939]]],["Seeing",[1,1,[[20,1,1,0,1,[[664,1,1,0,1]]]],[17428]]],["Surely",[23,23,[[0,1,1,0,1,[[28,1,1,0,1]]],[1,1,1,1,2,[[53,1,1,1,2]]],[3,1,1,2,3,[[139,1,1,2,3]]],[6,1,1,3,4,[[216,1,1,3,4]]],[7,1,1,4,5,[[232,1,1,4,5]]],[9,1,1,5,6,[[277,1,1,5,6]]],[11,1,1,6,7,[[335,1,1,6,7]]],[17,3,3,7,10,[[455,1,1,7,8],[463,1,1,8,9],[475,1,1,9,10]]],[18,3,3,10,13,[[553,1,1,10,11],[568,1,1,11,12],[589,1,1,12,13]]],[19,3,3,13,16,[[628,1,1,13,14],[657,2,2,14,16]]],[20,2,2,16,18,[[662,1,1,16,17],[665,1,1,17,18]]],[22,1,1,18,19,[[738,1,1,18,19]]],[23,2,2,19,21,[[775,1,1,19,20],[790,1,1,20,21]]],[29,1,1,21,22,[[881,1,1,21,22]]],[35,1,1,22,23,[[907,1,1,22,23]]]],[827,1626,4439,6670,7137,8282,10187,13346,13505,13884,15091,15398,15809,16417,17253,17284,17397,17436,18830,19710,20063,22402,22814]]],["That",[14,14,[[0,1,1,0,1,[[21,1,1,0,1]]],[8,1,1,1,2,[[257,1,1,1,2]]],[17,5,5,2,7,[[445,1,1,2,3],[450,1,1,3,4],[455,1,1,4,5],[456,1,1,5,6],[473,1,1,6,7]]],[18,1,1,7,8,[[586,1,1,7,8]]],[22,3,3,8,11,[[692,1,1,8,9],[708,1,1,9,10],[723,1,1,10,11]]],[23,1,1,11,12,[[773,1,1,11,12]]],[25,1,1,12,13,[[824,1,1,12,13]]],[29,1,1,13,14,[[881,1,1,13,14]]]],[564,7795,13092,13216,13331,13385,13813,15782,17960,18226,18584,19645,21044,22409]]],["Therefore",[3,3,[[9,1,1,0,1,[[283,1,1,0,1]]],[18,1,1,1,2,[[498,1,1,1,2]]],[22,1,1,2,3,[[680,1,1,2,3]]]],[8460,14203,17691]]],["Though",[7,7,[[18,4,4,0,4,[[514,1,1,0,1],[521,1,1,1,2],[526,1,1,2,3],[615,1,1,3,4]]],[23,2,2,4,6,[[748,1,1,4,5],[795,1,1,5,6]]],[27,1,1,6,7,[[874,1,1,6,7]]]],[14474,14590,14666,16237,19057,20265,22281]]],["Thus",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15041]]],["Truly",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5893]]],["When",[74,74,[[0,2,2,0,2,[[3,1,1,0,1],[31,1,1,1,2]]],[1,3,3,2,5,[[56,1,1,2,3],[67,1,1,3,4],[79,1,1,4,5]]],[2,8,8,5,13,[[102,2,2,5,7],[103,1,1,7,8],[104,1,1,8,9],[111,1,1,9,10],[112,1,1,10,11],[114,1,1,11,12],[116,1,1,12,13]]],[3,7,7,13,20,[[121,1,1,13,14],[122,1,1,14,15],[131,1,1,15,16],[134,1,1,16,17],[149,1,1,17,18],[150,1,1,18,19],[151,1,1,19,20]]],[4,25,25,20,45,[[156,1,1,20,21],[159,1,1,21,22],[164,2,2,22,24],[165,1,1,24,25],[169,1,1,25,26],[170,1,1,26,27],[171,1,1,27,28],[172,3,3,28,31],[173,1,1,31,32],[174,1,1,32,33],[175,4,4,33,37],[176,6,6,37,43],[177,1,1,43,44],[178,1,1,44,45]]],[9,2,2,45,47,[[270,1,1,45,46],[288,1,1,46,47]]],[11,1,1,47,48,[[319,1,1,47,48]]],[17,6,6,48,54,[[442,1,1,48,49],[451,1,1,49,50],[457,1,1,50,51],[464,1,1,51,52],[465,1,1,52,53],[473,1,1,53,54]]],[18,6,6,54,60,[[485,1,1,54,55],[486,1,1,55,56],[504,1,1,56,57],[509,1,1,57,58],[552,1,1,58,59],[579,1,1,59,60]]],[19,3,3,60,63,[[629,1,1,60,61],[650,1,1,61,62],[653,1,1,62,63]]],[22,5,5,63,68,[[679,1,1,63,64],[681,1,1,64,65],[702,1,1,65,66],[721,1,1,66,67],[737,1,1,67,68]]],[23,2,2,68,70,[[758,1,1,68,69],[781,1,1,69,70]]],[25,1,1,70,71,[[834,1,1,70,71]]],[27,1,1,71,72,[[872,1,1,71,72]]],[37,2,2,72,74,[[917,1,1,72,73],[919,1,1,73,74]]]],[91,945,1694,2015,2394,3054,3061,3145,3170,3396,3412,3471,3572,3798,3825,4155,4283,4811,4818,4855,5029,5112,5260,5269,5290,5378,5393,5407,5428,5437,5446,5457,5478,5509,5521,5524,5525,5526,5530,5535,5544,5545,5546,5558,5578,8130,8607,9719,13021,13260,13418,13543,13583,13833,14015,14033,14295,14358,15073,15537,16443,17045,17166,17666,17713,18108,18507,18819,19305,19890,21282,22241,22967,23012]]],["Whereas",[3,3,[[0,1,1,0,1,[[30,1,1,0,1]]],[9,1,1,1,2,[[273,1,1,1,2]]],[38,1,1,2,3,[[925,1,1,2,3]]]],[910,8186,23093]]],["Which",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13848]]],["Yea",[4,4,[[18,1,1,0,1,[[521,1,1,0,1]]],[19,1,1,1,2,[[629,1,1,1,2]]],[22,1,1,2,3,[[683,1,1,2,3]]],[23,1,1,3,4,[[771,1,1,3,4]]]],[14593,16436,17749,19617]]],["Yet",[7,7,[[4,1,1,0,1,[[184,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[17,1,1,2,3,[[440,1,1,2,3]]],[22,1,1,3,4,[[705,1,1,3,4]]],[23,1,1,4,5,[[753,1,1,4,5]]],[25,1,1,5,6,[[830,1,1,5,6]]],[38,1,1,6,7,[[927,1,1,6,7]]]],[5810,9414,12958,18161,19195,21196,23128]]],["although",[4,4,[[1,1,1,0,1,[[62,1,1,0,1]]],[9,1,1,1,2,[[289,1,1,1,2]]],[16,1,1,2,3,[[432,1,1,2,3]]],[25,1,1,3,4,[[812,1,1,3,4]]]],[1884,8658,12811,20671]]],["and",[3,3,[[1,1,1,0,1,[[71,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]],[23,1,1,2,3,[[784,1,1,2,3]]]],[2136,18349,19948]]],["as",[2,2,[[4,1,1,0,1,[[171,1,1,0,1]]],[8,1,1,1,2,[[236,1,1,1,2]]]],[5412,7224]]],["because",[376,360,[[0,35,34,0,34,[[1,2,2,0,2],[2,2,2,2,4],[10,1,1,4,5],[15,1,1,5,6],[17,1,1,6,7],[18,1,1,7,8],[20,2,2,8,10],[24,2,2,10,12],[25,2,2,12,14],[26,1,1,14,15],[27,1,1,15,16],[28,1,1,16,17],[29,1,1,17,18],[30,1,1,18,19],[31,1,1,19,20],[32,2,1,20,21],[33,2,2,21,23],[34,1,1,23,24],[36,1,1,24,25],[37,2,2,25,27],[40,2,2,27,29],[42,2,2,29,31],[45,1,1,31,32],[46,1,1,32,33],[48,1,1,33,34]]],[1,5,5,34,39,[[50,1,1,34,35],[61,1,1,35,36],[78,2,2,36,38],[89,1,1,38,39]]],[2,12,12,39,51,[[95,1,1,39,40],[99,1,1,40,41],[100,3,3,41,44],[103,1,1,44,45],[108,2,2,45,47],[109,1,1,47,48],[110,1,1,48,49],[111,2,2,49,51]]],[3,19,19,51,70,[[122,2,2,51,53],[123,1,1,53,54],[125,1,1,54,55],[127,3,3,55,58],[131,1,1,58,59],[135,2,2,59,61],[138,3,3,61,64],[142,1,1,64,65],[143,1,1,65,66],[146,2,2,66,68],[148,2,2,68,70]]],[4,25,24,70,94,[[154,3,3,70,73],[161,1,1,73,74],[164,1,1,74,75],[165,2,2,75,77],[166,2,2,77,79],[167,3,2,79,81],[168,1,1,81,82],[171,1,1,82,83],[174,2,2,83,85],[175,2,2,85,87],[176,1,1,87,88],[179,1,1,88,89],[180,2,2,89,91],[183,1,1,91,92],[184,1,1,92,93],[185,1,1,93,94]]],[5,13,11,94,105,[[191,1,1,94,95],[192,2,2,95,97],[193,3,2,97,99],[195,1,1,99,100],[196,3,2,100,102],[200,1,1,102,103],[203,1,1,103,104],[206,1,1,104,105]]],[6,18,17,105,122,[[211,1,1,105,106],[215,1,1,106,107],[216,4,3,107,110],[218,2,2,110,112],[219,1,1,112,113],[220,1,1,113,114],[222,1,1,114,115],[223,1,1,115,116],[224,1,1,116,117],[225,1,1,117,118],[228,1,1,118,119],[230,1,1,119,120],[231,2,2,120,122]]],[8,28,25,122,147,[[236,1,1,122,123],[237,2,2,123,125],[238,1,1,125,126],[241,2,1,126,127],[244,2,2,127,129],[245,1,1,129,130],[247,2,2,130,132],[248,1,1,132,133],[249,1,1,133,134],[250,1,1,134,135],[251,1,1,135,136],[253,2,2,136,138],[254,2,1,138,139],[255,2,2,139,141],[256,1,1,141,142],[257,2,1,142,143],[260,1,1,143,144],[261,1,1,144,145],[265,2,2,145,147]]],[9,14,14,147,161,[[267,3,3,147,150],[276,1,1,150,151],[278,1,1,151,152],[280,2,2,152,154],[282,2,2,154,156],[285,2,2,156,158],[288,2,2,158,160],[289,1,1,160,161]]],[10,10,9,161,170,[[292,2,1,161,162],[293,1,1,162,163],[298,2,2,163,165],[301,1,1,165,166],[307,1,1,166,167],[309,2,2,167,169],[311,1,1,169,170]]],[11,6,6,170,176,[[313,1,1,170,171],[317,1,1,171,172],[320,1,1,172,173],[325,1,1,173,174],[327,1,1,174,175],[334,1,1,175,176]]],[12,18,18,176,194,[[338,1,1,176,177],[341,1,1,177,178],[342,3,3,178,181],[344,2,2,181,183],[346,1,1,183,184],[350,1,1,184,185],[352,2,2,185,187],[353,2,2,187,189],[356,1,1,189,190],[359,1,1,190,191],[364,1,1,191,192],[365,1,1,192,193],[366,1,1,193,194]]],[13,25,25,194,219,[[372,2,2,194,196],[373,3,3,196,199],[374,1,1,199,200],[378,2,2,200,202],[379,1,1,202,203],[380,2,2,203,205],[383,1,1,205,206],[387,2,2,206,208],[388,1,1,208,209],[390,3,3,209,212],[391,2,2,212,214],[392,1,1,214,215],[393,1,1,215,216],[396,1,1,216,217],[401,1,1,217,218],[402,1,1,218,219]]],[14,2,2,219,221,[[405,1,1,219,220],[410,1,1,220,221]]],[15,3,3,221,224,[[417,1,1,221,222],[418,1,1,222,223],[420,1,1,223,224]]],[16,1,1,224,225,[[434,1,1,224,225]]],[17,10,9,225,234,[[441,1,1,225,226],[443,1,1,226,227],[446,1,1,227,228],[466,2,1,228,229],[467,2,2,229,231],[470,1,1,231,232],[473,1,1,232,233],[474,1,1,233,234]]],[18,23,23,234,257,[[490,1,1,234,235],[491,1,1,235,236],[493,1,1,236,237],[495,2,2,237,239],[505,1,1,239,240],[510,1,1,240,241],[514,1,1,241,242],[516,1,1,242,243],[518,1,1,243,244],[521,1,1,244,245],[529,1,1,245,246],[530,1,1,246,247],[563,1,1,247,248],[568,1,1,248,249],[584,1,1,249,250],[586,1,1,250,251],[593,1,1,251,252],[595,1,1,252,253],[596,4,4,253,257]]],[19,3,3,257,260,[[648,1,1,257,258],[649,1,1,258,259],[651,1,1,259,260]]],[20,4,4,260,264,[[660,1,1,260,261],[663,1,1,261,262],[670,2,2,262,264]]],[22,19,17,264,281,[[680,1,1,264,265],[681,1,1,265,266],[683,1,1,266,267],[684,1,1,267,268],[685,1,1,268,269],[692,2,2,269,271],[693,1,1,271,272],[702,1,1,272,273],[704,1,1,273,274],[706,1,1,274,275],[709,2,1,275,276],[718,1,1,276,277],[721,1,1,277,278],[738,2,2,278,280],[743,2,1,280,281]]],[23,38,35,281,316,[[748,4,3,281,284],[749,1,1,284,285],[750,2,2,285,287],[752,1,1,287,288],[753,3,2,288,290],[754,1,1,290,291],[756,2,2,291,293],[757,1,1,293,294],[758,2,2,294,296],[761,1,1,296,297],[763,1,1,297,298],[764,1,1,298,299],[766,1,1,299,300],[772,1,1,300,301],[773,1,1,301,302],[774,1,1,302,303],[775,2,2,303,305],[783,1,1,305,306],[784,1,1,306,307],[785,1,1,307,308],[790,3,3,308,311],[792,1,1,311,312],[794,3,2,312,314],[795,2,2,314,316]]],[24,5,4,316,320,[[797,3,2,316,318],[799,2,2,318,320]]],[25,9,9,320,329,[[804,2,2,320,322],[808,1,1,322,323],[819,1,1,323,324],[822,1,1,324,325],[824,1,1,325,326],[845,1,1,326,327],[848,2,2,327,329]]],[26,3,3,329,332,[[858,2,2,329,331],[860,1,1,331,332]]],[27,12,12,332,344,[[865,4,4,332,336],[866,2,2,336,338],[868,1,1,338,339],[870,1,1,339,340],[871,3,3,340,343],[872,1,1,343,344]]],[28,4,4,344,348,[[876,3,3,344,347],[877,1,1,347,348]]],[31,1,1,348,349,[[889,1,1,348,349]]],[32,3,3,349,352,[[894,1,1,349,350],[899,2,2,350,352]]],[34,3,3,352,355,[[903,1,1,352,353],[904,2,2,353,355]]],[35,2,2,355,357,[[906,1,1,355,356],[907,1,1,356,357]]],[37,2,2,357,359,[[920,2,2,357,359]]],[38,1,1,359,360,[[926,1,1,359,360]]]],[33,53,65,75,275,392,444,470,526,544,679,686,699,712,750,784,829,850,903,960,971,987,999,1018,1086,1134,1145,1227,1252,1308,1322,1416,1440,1477,1553,1855,2369,2370,2742,2853,2990,3001,3002,3003,3159,3289,3301,3321,3368,3376,3394,3830,3835,3859,3978,4027,4038,4058,4187,4302,4309,4378,4397,4407,4551,4558,4653,4662,4729,4737,4943,4947,4957,5182,5260,5277,5282,5298,5319,5321,5335,5357,5412,5489,5491,5505,5507,5526,5605,5656,5673,5757,5805,5831,5941,5966,5974,5988,5991,6055,6066,6106,6196,6276,6377,6528,6646,6684,6685,6686,6739,6743,6772,6821,6873,6906,6926,6935,7021,7090,7117,7124,7218,7241,7265,7289,7350,7404,7407,7419,7470,7482,7499,7537,7584,7602,7688,7692,7710,7748,7764,7780,7804,7889,7917,7984,7991,8031,8032,8034,8245,8300,8371,8382,8434,8436,8532,8537,8610,8622,8659,8796,8818,9020,9049,9117,9324,9394,9401,9453,9550,9648,9756,9875,9941,10152,10271,10426,10437,10448,10450,10556,10558,10642,10771,10804,10813,10853,10861,10909,10972,11132,11146,11173,11306,11308,11326,11330,11331,11357,11439,11451,11471,11481,11482,11526,11627,11634,11650,11693,11697,11701,11720,11724,11752,11761,11830,11980,12008,12108,12223,12400,12419,12505,12837,12998,13038,13126,13613,13629,13632,13735,13814,13845,14080,14086,14100,14125,14137,14305,14387,14490,14521,14553,14574,14719,14724,15301,15409,15729,15776,15849,15870,15954,15972,15998,16037,16991,17037,17092,17350,17417,17526,17528,17691,17715,17763,17774,17806,17948,17957,17961,18100,18133,18192,18251,18427,18525,18826,18830,18913,19044,19045,19046,19064,19108,19119,19167,19185,19194,19206,19253,19260,19283,19298,19299,19370,19422,19430,19469,19634,19667,19684,19706,19710,19941,19944,19975,20060,20066,20068,20122,20177,20190,20223,20263,20318,20326,20376,20382,20522,20523,20596,20867,20951,21052,21601,21688,21691,21999,22004,22071,22134,22139,22143,22146,22153,22163,22191,22225,22228,22230,22238,22245,22302,22303,22309,22331,22541,22596,22673,22682,22747,22751,22753,22804,22815,23018,23021,23105]]],["but",[122,120,[[0,6,6,0,6,[[16,1,1,0,1],[17,1,1,1,2],[18,1,1,2,3],[41,2,2,3,5],[44,1,1,5,6]]],[1,4,4,6,10,[[53,1,1,6,7],[65,1,1,7,8],[68,1,1,8,9],[72,1,1,9,10]]],[3,4,4,10,14,[[126,1,1,10,11],[143,1,1,11,12],[151,1,1,12,13],[152,1,1,13,14]]],[4,6,6,14,20,[[156,1,1,14,15],[157,1,1,15,16],[160,1,1,16,17],[161,1,1,17,18],[173,1,1,18,19],[181,1,1,19,20]]],[5,4,4,20,24,[[191,1,1,20,21],[197,1,1,21,22],[208,1,1,22,23],[210,1,1,23,24]]],[6,3,3,24,27,[[211,1,1,24,25],[212,1,1,25,26],[225,1,1,26,27]]],[7,1,1,27,28,[[232,1,1,27,28]]],[8,8,8,28,36,[[237,1,1,28,29],[241,1,1,29,30],[243,1,1,30,31],[245,1,1,31,32],[247,1,1,32,33],[253,1,1,33,34],[257,1,1,34,35],[265,1,1,35,36]]],[9,4,4,36,40,[[282,1,1,36,37],[284,1,1,37,38],[286,1,1,38,39],[290,1,1,39,40]]],[10,7,6,40,46,[[292,1,1,40,41],[293,3,2,41,43],[299,1,1,43,44],[301,1,1,44,45],[311,1,1,45,46]]],[11,6,6,46,52,[[313,3,3,46,49],[318,1,1,49,50],[324,1,1,50,51],[332,1,1,51,52]]],[12,2,2,52,54,[[358,1,1,52,53],[366,1,1,53,54]]],[13,16,15,54,69,[[372,1,1,54,55],[374,1,1,55,56],[381,1,1,56,57],[382,1,1,57,58],[384,1,1,58,59],[385,1,1,59,60],[386,3,3,60,63],[391,2,1,63,64],[392,1,1,64,65],[394,1,1,65,66],[399,1,1,66,67],[401,2,2,67,69]]],[14,1,1,69,70,[[406,1,1,69,70]]],[15,2,2,70,72,[[418,2,2,70,72]]],[16,2,2,72,74,[[426,1,1,72,73],[431,1,1,73,74]]],[17,4,4,74,78,[[444,2,2,74,76],[447,1,1,76,77],[467,1,1,77,78]]],[18,5,5,78,83,[[521,1,1,78,79],[540,1,1,79,80],[592,1,1,80,81],[595,1,1,81,82],[604,1,1,82,83]]],[19,1,1,83,84,[[650,1,1,83,84]]],[20,3,3,84,87,[[663,1,1,84,85],[664,1,1,85,86],[667,1,1,86,87]]],[22,6,6,87,93,[[685,1,1,87,88],[688,1,1,88,89],[706,1,1,89,90],[708,1,1,90,91],[721,1,1,91,92],[740,1,1,92,93]]],[23,16,16,93,109,[[746,1,1,93,94],[758,2,2,94,96],[762,1,1,96,97],[776,1,1,97,98],[778,1,1,98,99],[779,2,2,99,101],[782,1,1,101,102],[786,1,1,102,103],[792,1,1,103,104],[793,2,2,104,106],[794,1,1,106,107],[795,2,2,107,109]]],[25,5,5,109,114,[[808,1,1,109,110],[811,1,1,110,111],[815,1,1,111,112],[819,1,1,112,113],[847,1,1,113,114]]],[26,1,1,114,115,[[858,1,1,114,115]]],[27,3,3,115,118,[[862,1,1,115,116],[869,1,1,116,117],[874,1,1,117,118]]],[29,1,1,118,119,[[885,1,1,118,119]]],[32,1,1,119,120,[[893,1,1,119,120]]]],[412,439,459,1264,1286,1366,1611,1955,2039,2168,4018,4557,4876,4888,5030,5056,5140,5162,5470,5699,5948,6127,6454,6497,6528,6562,6942,7144,7256,7334,7376,7437,7472,7701,7810,8002,8444,8481,8575,8716,8800,8838,8839,9073,9142,9466,9537,9539,9549,9686,9857,10108,10958,11165,11291,11355,11495,11521,11549,11582,11597,11599,11602,11708,11750,11791,11931,11987,11988,12113,12409,12413,12718,12806,13069,13086,13130,13644,14574,14850,15831,15886,16126,17061,17404,17419,17486,17795,17857,18191,18222,18527,18858,18999,19305,19306,19396,19735,19804,19830,19837,19918,19989,20125,20139,20146,20210,20238,20274,20581,20644,20749,20860,21664,22006,22100,22200,22275,22478,22591]]],["either",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9368]]],["even",[5,5,[[1,1,1,0,1,[[81,1,1,0,1]]],[9,2,2,1,3,[[269,1,1,1,2],[281,1,1,2,3]]],[10,1,1,3,4,[[291,1,1,3,4]]],[22,1,1,4,5,[[727,1,1,4,5]]]],[2467,8090,8410,8747,18655]]],["except",[2,2,[[3,1,1,0,1,[[132,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]]],[4207,8090]]],["for",[1609,1541,[[0,100,98,0,98,[[1,2,2,0,2],[2,2,1,2,3],[3,1,1,3,4],[4,1,1,4,5],[5,3,3,5,8],[6,1,1,8,9],[7,2,2,9,11],[8,1,1,11,12],[9,1,1,12,13],[11,1,1,13,14],[12,3,3,14,17],[14,1,1,17,18],[15,1,1,18,19],[16,1,1,19,20],[17,2,2,20,22],[18,4,4,22,26],[19,1,1,26,27],[20,6,6,27,33],[21,2,2,33,35],[24,1,1,35,36],[25,4,4,36,40],[27,1,1,40,41],[28,4,4,41,45],[29,3,3,45,48],[30,4,4,48,52],[31,5,5,52,57],[32,1,1,57,58],[33,1,1,58,59],[34,1,1,59,60],[36,2,2,60,62],[37,3,3,62,65],[40,2,2,65,67],[41,4,4,67,71],[42,5,5,71,76],[43,2,2,76,78],[44,5,5,78,83],[45,3,3,83,86],[46,5,5,86,91],[47,2,2,91,93],[48,3,2,93,95],[49,3,3,95,98]]],[1,82,79,98,177,[[50,1,1,98,99],[51,1,1,99,100],[52,3,3,100,103],[53,2,2,103,105],[54,1,1,105,106],[55,1,1,106,107],[56,1,1,107,108],[57,1,1,108,109],[58,3,3,109,112],[59,6,6,112,118],[61,6,6,118,124],[62,5,5,124,129],[63,1,1,129,130],[64,4,4,130,134],[65,5,5,134,139],[66,1,1,139,140],[67,4,4,140,144],[68,3,3,144,147],[69,4,4,147,151],[70,1,1,151,152],[71,2,2,152,154],[72,7,6,154,160],[78,2,2,160,162],[80,4,3,162,165],[81,4,4,165,169],[82,4,3,169,172],[83,5,5,172,177]]],[2,47,45,177,222,[[91,1,1,177,178],[94,1,1,178,179],[97,2,2,179,181],[98,1,1,181,182],[99,4,4,182,186],[100,3,3,186,189],[102,3,3,189,192],[103,1,1,192,193],[105,1,1,193,194],[106,2,2,194,196],[107,3,3,196,199],[108,2,2,199,201],[109,4,4,201,205],[110,6,5,205,210],[111,2,2,210,212],[112,1,1,212,213],[113,2,2,213,215],[114,6,5,215,220],[115,2,2,220,222]]],[3,38,36,222,258,[[121,1,1,222,223],[126,1,1,223,224],[127,3,2,224,226],[128,1,1,226,227],[129,2,2,227,229],[130,4,4,229,233],[131,1,1,233,234],[132,5,5,234,239],[133,1,1,239,240],[134,1,1,240,241],[136,1,1,241,242],[137,5,5,242,247],[138,6,5,247,252],[142,1,1,252,253],[148,1,1,253,254],[149,1,1,254,255],[151,2,2,255,257],[152,1,1,257,258]]],[4,74,71,258,329,[[153,3,3,258,261],[154,4,4,261,265],[155,4,4,265,269],[156,3,3,269,272],[157,4,4,272,276],[159,5,5,276,281],[160,1,1,281,282],[161,2,2,282,284],[162,1,1,284,285],[163,1,1,285,286],[164,3,2,286,288],[165,1,1,288,289],[166,3,3,289,292],[167,2,2,292,294],[168,3,3,294,297],[169,1,1,297,298],[172,3,2,298,300],[173,3,3,300,303],[174,2,2,303,305],[175,3,3,305,308],[176,3,3,308,311],[180,5,5,311,316],[182,2,2,316,318],[183,5,4,318,322],[184,4,4,322,326],[185,2,2,326,328],[186,1,1,328,329]]],[5,40,39,329,368,[[187,4,4,329,333],[188,4,4,333,337],[189,2,2,337,339],[191,2,2,339,341],[192,1,1,341,342],[193,2,2,342,344],[194,2,2,344,346],[195,1,1,346,347],[196,6,6,347,353],[197,2,2,353,355],[200,1,1,355,356],[201,1,1,356,357],[203,3,2,357,359],[204,1,1,359,360],[205,1,1,360,361],[207,1,1,361,362],[208,1,1,362,363],[209,2,2,363,365],[210,3,3,365,368]]],[6,38,38,368,406,[[211,3,3,368,371],[212,1,1,371,372],[213,1,1,372,373],[214,5,5,373,378],[216,1,1,378,379],[217,2,2,379,381],[218,5,5,381,386],[219,2,2,386,388],[221,2,2,388,390],[223,2,2,390,392],[224,2,2,392,394],[226,3,3,394,397],[228,3,3,397,400],[230,4,4,400,404],[231,2,2,404,406]]],[7,13,13,406,419,[[232,5,5,406,411],[233,1,1,411,412],[234,4,4,412,416],[235,3,3,416,419]]],[8,113,107,419,526,[[236,3,3,419,422],[237,7,7,422,429],[238,6,6,429,435],[239,7,6,435,441],[240,2,2,441,443],[241,1,1,443,444],[242,1,1,444,445],[243,1,1,445,446],[244,9,7,446,453],[245,1,1,453,454],[246,1,1,454,455],[247,4,3,455,458],[248,3,3,458,461],[249,7,7,461,468],[250,4,4,468,472],[251,6,5,472,477],[252,7,6,477,483],[255,10,10,483,493],[256,3,3,493,496],[257,2,2,496,498],[258,6,6,498,504],[259,3,3,504,507],[260,4,4,507,511],[261,7,7,511,518],[262,1,1,518,519],[263,2,2,519,521],[264,1,1,521,522],[265,3,3,522,525],[266,1,1,525,526]]],[9,52,51,526,577,[[267,3,3,526,529],[268,1,1,529,530],[269,2,2,530,532],[270,1,1,532,533],[271,2,2,533,535],[272,1,1,535,536],[273,3,3,536,539],[274,1,1,539,540],[275,2,2,540,542],[277,1,1,542,543],[278,2,2,543,545],[279,8,7,545,552],[280,2,2,552,554],[281,2,2,554,556],[282,2,2,556,558],[283,4,4,558,562],[284,5,5,562,567],[285,6,6,567,573],[288,1,1,573,574],[289,1,1,574,575],[290,2,2,575,577]]],[10,40,39,577,616,[[291,1,1,577,578],[292,8,8,578,586],[293,4,4,586,590],[295,3,2,590,592],[296,1,1,592,593],[298,4,4,593,597],[301,1,1,597,598],[302,3,3,598,601],[304,3,3,601,604],[308,3,3,604,607],[309,3,3,607,610],[310,2,2,610,612],[311,1,1,612,613],[312,3,3,613,616]]],[11,34,34,616,650,[[314,3,3,616,619],[315,1,1,619,620],[316,3,3,620,623],[317,1,1,623,624],[318,2,2,624,626],[320,3,3,626,629],[321,4,4,629,633],[322,1,1,633,634],[324,1,1,634,635],[325,2,2,635,637],[330,5,5,637,642],[331,3,3,642,645],[332,2,2,645,647],[334,1,1,647,648],[336,1,1,648,649],[337,1,1,649,650]]],[12,49,48,650,698,[[341,2,2,650,652],[342,2,2,652,654],[343,1,1,654,655],[344,1,1,655,656],[346,1,1,656,657],[347,1,1,657,658],[348,1,1,658,659],[349,5,5,659,664],[350,3,3,664,667],[351,2,2,667,669],[352,2,2,669,671],[353,2,1,671,672],[354,2,2,672,674],[355,1,1,674,675],[356,1,1,675,676],[358,5,5,676,681],[359,4,4,681,685],[361,1,1,685,686],[363,3,3,686,689],[365,6,6,689,695],[366,3,3,695,698]]],[13,86,84,698,782,[[367,4,4,698,702],[368,3,3,702,705],[370,1,1,705,706],[371,3,3,706,709],[372,2,2,709,711],[373,3,3,711,714],[374,2,2,714,716],[376,2,2,716,718],[377,5,5,718,723],[378,1,1,723,724],[379,2,2,724,726],[380,5,4,726,730],[381,4,4,730,734],[382,1,1,734,735],[384,2,2,735,737],[385,2,2,737,739],[386,6,6,739,745],[387,1,1,745,746],[388,4,4,746,750],[389,2,2,750,752],[390,1,1,752,753],[391,3,3,753,756],[392,7,6,756,762],[394,3,3,762,765],[395,5,5,765,770],[396,3,3,770,773],[397,2,2,773,775],[398,4,4,775,779],[400,1,1,779,780],[401,2,2,780,782]]],[14,13,12,782,794,[[405,3,3,782,785],[406,1,1,785,786],[408,1,1,786,787],[411,4,3,787,790],[412,4,4,790,794]]],[15,18,17,794,811,[[416,2,2,794,796],[418,1,1,796,797],[419,1,1,797,798],[420,5,4,798,802],[421,4,4,802,806],[424,3,3,806,809],[425,2,2,809,811]]],[16,17,17,811,828,[[426,4,4,811,815],[427,3,3,815,818],[428,3,3,818,821],[429,1,1,821,822],[432,1,1,822,823],[433,3,3,823,826],[434,2,2,826,828]]],[17,16,16,828,844,[[436,1,1,828,829],[437,1,1,829,830],[441,1,1,830,831],[442,2,2,831,833],[448,2,2,833,835],[450,1,1,835,836],[454,2,2,836,838],[466,1,1,838,839],[467,1,1,839,840],[468,2,2,840,842],[469,1,1,842,843],[477,1,1,843,844]]],[18,180,166,844,1010,[[480,2,2,844,846],[481,1,1,846,847],[482,2,2,847,849],[483,3,2,849,851],[486,1,1,851,852],[487,1,1,852,853],[489,2,1,853,854],[491,1,1,854,855],[493,1,1,855,856],[494,1,1,856,857],[495,1,1,857,858],[499,2,1,858,859],[500,1,1,859,860],[502,8,8,860,868],[503,1,1,868,869],[504,1,1,869,870],[507,1,1,870,871],[508,4,4,871,875],[511,1,1,875,876],[514,3,3,876,879],[516,1,1,879,880],[518,1,1,880,881],[519,3,3,881,884],[520,1,1,884,885],[521,1,1,885,886],[522,1,1,886,887],[524,1,1,887,888],[526,1,1,888,889],[527,2,2,889,891],[529,1,1,891,892],[530,1,1,892,893],[531,1,1,893,894],[532,4,4,894,898],[533,3,3,898,901],[534,1,1,901,902],[536,4,4,902,906],[537,1,1,906,907],[539,2,2,907,909],[544,1,1,909,910],[546,3,3,910,913],[548,5,4,913,917],[551,1,1,917,918],[556,1,1,918,919],[559,1,1,919,920],[562,1,1,920,921],[563,5,5,921,926],[567,1,1,926,927],[569,1,1,927,928],[573,2,1,928,929],[575,2,2,929,931],[576,1,1,931,932],[579,2,2,932,934],[582,1,1,934,935],[583,2,1,935,936],[584,2,1,936,937],[593,1,1,937,938],[595,4,3,938,941],[596,25,25,941,966],[600,1,1,966,967],[607,1,1,967,968],[609,1,1,968,969],[610,1,1,969,970],[612,2,1,970,971],[613,27,26,971,997],[615,3,2,997,999],[618,2,2,999,1001],[619,3,2,1001,1003],[620,5,4,1003,1007],[624,2,1,1007,1008],[625,2,2,1008,1010]]],[19,15,15,1010,1025,[[631,2,2,1010,1012],[635,1,1,1012,1013],[643,2,2,1013,1015],[646,2,2,1015,1017],[648,1,1,1017,1018],[649,1,1,1018,1019],[650,3,3,1019,1022],[653,1,1,1022,1023],[654,1,1,1023,1024],[658,1,1,1024,1025]]],[20,33,32,1025,1057,[[660,3,3,1025,1028],[661,5,4,1028,1032],[663,4,4,1032,1036],[665,5,5,1036,1041],[666,3,3,1041,1044],[667,5,5,1044,1049],[668,2,2,1049,1051],[669,5,5,1051,1056],[670,1,1,1056,1057]]],[21,4,4,1057,1061,[[671,1,1,1057,1058],[672,2,2,1058,1060],[678,1,1,1060,1061]]],[22,122,115,1061,1176,[[679,2,2,1061,1063],[680,2,2,1063,1065],[681,3,3,1065,1068],[682,1,1,1068,1069],[684,2,1,1069,1070],[685,1,1,1070,1071],[686,1,1,1071,1072],[687,1,1,1072,1073],[688,1,1,1073,1074],[689,1,1,1074,1075],[690,3,3,1075,1078],[691,1,1,1078,1079],[692,1,1,1079,1080],[693,4,3,1080,1083],[694,2,2,1083,1085],[697,1,1,1085,1086],[699,1,1,1086,1087],[700,2,2,1087,1089],[701,4,4,1089,1093],[702,2,2,1093,1095],[703,2,2,1095,1097],[704,4,4,1097,1101],[705,1,1,1101,1102],[706,3,3,1102,1105],[707,2,2,1105,1107],[708,2,2,1107,1109],[710,1,1,1109,1110],[711,1,1,1110,1111],[712,2,2,1111,1113],[713,1,1,1113,1114],[714,4,4,1114,1118],[715,3,3,1118,1121],[716,2,2,1121,1123],[718,2,2,1123,1125],[719,2,1,1125,1126],[721,2,2,1126,1128],[722,6,5,1128,1133],[723,1,1,1133,1134],[724,1,1,1134,1135],[725,2,2,1135,1137],[726,2,2,1137,1139],[727,2,2,1139,1141],[729,3,3,1141,1144],[730,5,5,1144,1149],[731,1,1,1149,1150],[732,6,3,1150,1153],[733,2,2,1153,1155],[734,2,2,1155,1157],[735,2,2,1157,1159],[736,1,1,1159,1160],[737,2,2,1160,1162],[738,3,3,1162,1165],[739,1,1,1165,1166],[740,1,1,1166,1167],[742,1,1,1167,1168],[743,6,6,1168,1174],[744,2,2,1174,1176]]],[23,177,171,1176,1347,[[745,5,5,1176,1181],[746,4,4,1181,1185],[747,5,5,1185,1190],[748,5,5,1190,1195],[749,3,3,1195,1198],[750,7,6,1198,1204],[751,3,3,1204,1207],[752,2,2,1207,1209],[753,6,6,1209,1215],[754,7,7,1215,1222],[755,3,3,1222,1225],[756,1,1,1225,1226],[757,2,2,1226,1228],[758,5,5,1228,1233],[759,4,4,1233,1237],[760,1,1,1237,1238],[761,2,2,1238,1240],[762,3,3,1240,1243],[764,3,3,1243,1246],[765,1,1,1246,1247],[766,3,3,1247,1250],[767,4,4,1250,1254],[768,1,1,1254,1255],[769,5,5,1255,1260],[770,3,3,1260,1263],[771,2,2,1263,1265],[772,1,1,1265,1266],[773,1,1,1266,1267],[774,4,4,1267,1271],[775,7,6,1271,1277],[776,4,4,1277,1281],[777,3,2,1281,1283],[778,2,2,1283,1285],[779,1,1,1285,1286],[780,1,1,1286,1287],[781,2,2,1287,1289],[782,5,4,1289,1293],[784,1,1,1293,1294],[785,2,2,1294,1296],[786,3,3,1296,1299],[787,1,1,1299,1300],[788,1,1,1300,1301],[789,2,2,1301,1303],[790,9,8,1303,1311],[791,1,1,1311,1312],[792,10,10,1312,1322],[793,6,5,1322,1327],[794,9,9,1327,1336],[795,11,11,1336,1347]]],[24,10,9,1347,1356,[[797,8,7,1347,1354],[798,1,1,1354,1355],[800,1,1,1355,1356]]],[25,45,44,1356,1400,[[802,2,2,1356,1358],[803,2,2,1358,1360],[804,4,3,1360,1363],[806,1,1,1363,1364],[808,4,4,1364,1368],[809,2,2,1368,1370],[810,1,1,1370,1371],[811,1,1,1371,1372],[813,3,3,1372,1375],[817,1,1,1375,1376],[821,1,1,1376,1377],[822,2,2,1377,1379],[824,2,2,1379,1381],[827,2,2,1381,1383],[829,1,1,1383,1384],[831,1,1,1384,1385],[832,2,2,1385,1387],[834,1,1,1387,1388],[837,1,1,1388,1389],[840,2,2,1389,1391],[841,1,1,1391,1392],[842,1,1,1392,1393],[843,3,3,1393,1396],[846,1,1,1396,1397],[848,2,2,1397,1399],[849,1,1,1399,1400]]],[26,17,17,1400,1417,[[857,3,3,1400,1403],[858,4,4,1403,1407],[859,4,4,1407,1411],[860,5,5,1411,1416],[861,1,1,1416,1417]]],[27,30,30,1417,1447,[[862,5,5,1417,1422],[863,4,4,1422,1426],[865,3,3,1426,1429],[866,4,4,1429,1433],[867,2,2,1433,1435],[868,2,2,1435,1437],[870,3,3,1437,1440],[871,1,1,1440,1441],[872,1,1,1441,1442],[874,2,2,1442,1444],[875,3,3,1444,1447]]],[28,24,18,1447,1465,[[876,7,7,1447,1454],[877,11,7,1454,1461],[878,6,4,1461,1465]]],[29,9,9,1465,1474,[[882,1,1,1465,1466],[883,3,3,1466,1469],[884,2,2,1469,1471],[885,3,3,1471,1474]]],[30,1,1,1474,1475,[[888,1,1,1474,1475]]],[31,7,7,1475,1482,[[889,5,5,1475,1480],[892,2,2,1480,1482]]],[32,16,16,1482,1498,[[893,4,4,1482,1486],[894,2,2,1486,1488],[895,1,1,1488,1489],[896,6,6,1489,1495],[897,1,1,1495,1496],[898,1,1,1496,1497],[899,1,1,1497,1498]]],[33,4,4,1498,1502,[[900,2,2,1498,1500],[901,1,1,1500,1501],[902,1,1,1501,1502]]],[34,2,2,1502,1504,[[903,2,2,1502,1504]]],[35,12,10,1504,1514,[[906,4,3,1504,1507],[907,3,3,1507,1510],[908,5,4,1510,1514]]],[36,2,2,1514,1516,[[910,2,2,1514,1516]]],[37,22,18,1516,1534,[[912,4,4,1516,1520],[913,2,1,1520,1521],[915,1,1,1521,1522],[918,1,1,1522,1523],[919,3,3,1523,1526],[920,4,3,1526,1529],[921,4,2,1529,1531],[923,2,2,1531,1533],[924,1,1,1533,1534]]],[38,7,7,1534,1541,[[925,2,2,1534,1536],[926,2,2,1536,1538],[927,2,2,1538,1540],[928,1,1,1540,1541]]]],[35,47,74,102,129,144,149,150,160,192,204,211,259,308,324,326,335,376,394,402,429,439,465,471,479,487,502,520,523,525,529,530,531,559,563,688,695,699,708,716,788,797,804,816,827,843,846,856,885,888,904,908,938,939,954,956,958,970,994,1029,1100,1110,1130,1133,1135,1226,1244,1256,1257,1275,1290,1295,1306,1315,1320,1322,1342,1350,1361,1363,1369,1378,1384,1389,1418,1420,1424,1433,1435,1440,1442,1465,1469,1479,1480,1509,1523,1525,1551,1576,1584,1585,1586,1602,1620,1640,1656,1709,1736,1753,1773,1774,1778,1786,1787,1788,1803,1805,1831,1833,1835,1846,1849,1855,1870,1876,1883,1884,1886,1914,1921,1941,1943,1946,1950,1956,1962,1972,1976,1997,2002,2003,2010,2017,2031,2037,2049,2056,2058,2071,2076,2098,2134,2140,2151,2152,2159,2165,2175,2177,2358,2364,2433,2434,2437,2439,2445,2461,2463,2476,2490,2493,2505,2506,2510,2514,2523,2773,2841,2950,2952,2957,2984,2989,2990,2991,3039,3041,3042,3063,3080,3104,3124,3203,3246,3249,3261,3264,3275,3283,3315,3325,3337,3341,3344,3352,3353,3357,3360,3368,3385,3389,3430,3455,3468,3485,3486,3492,3502,3503,3525,3568,3807,4017,4037,4042,4060,4105,4106,4117,4121,4148,4150,4178,4222,4228,4231,4232,4240,4247,4288,4335,4345,4347,4353,4364,4374,4381,4387,4388,4404,4409,4551,4730,4813,4878,4879,4886,4909,4930,4934,4943,4947,4957,4968,4977,4997,5002,5003,5007,5010,5019,5058,5062,5064,5078,5118,5127,5132,5136,5137,5155,5163,5169,5205,5210,5263,5271,5275,5297,5311,5317,5323,5337,5343,5345,5361,5365,5428,5446,5452,5464,5470,5475,5496,5507,5518,5521,5529,5531,5540,5649,5650,5651,5652,5668,5717,5728,5734,5735,5749,5751,5762,5778,5793,5801,5819,5829,5848,5857,5859,5860,5862,5872,5874,5880,5884,5897,5898,5941,5949,5965,5979,5989,6008,6020,6046,6068,6070,6072,6078,6083,6089,6113,6117,6199,6221,6276,6293,6300,6330,6391,6460,6463,6470,6494,6495,6503,6524,6541,6543,6563,6596,6602,6608,6613,6616,6618,6676,6703,6709,6724,6739,6740,6741,6749,6757,6759,6831,6847,6889,6891,6912,6919,6966,6967,6973,6994,7002,7003,7060,7082,7093,7095,7120,7124,7133,7139,7140,7143,7147,7162,7181,7183,7189,7190,7194,7196,7205,7217,7228,7234,7242,7243,7248,7249,7257,7264,7270,7281,7282,7284,7285,7286,7297,7304,7310,7315,7316,7317,7319,7326,7330,7335,7369,7376,7398,7400,7403,7404,7407,7411,7415,7425,7458,7479,7481,7484,7491,7498,7504,7514,7518,7520,7534,7538,7552,7553,7571,7584,7586,7589,7596,7602,7606,7607,7617,7644,7646,7651,7657,7660,7665,7736,7738,7739,7747,7751,7752,7756,7759,7761,7764,7778,7780,7781,7802,7810,7814,7817,7827,7831,7832,7837,7849,7850,7856,7869,7878,7886,7889,7914,7917,7920,7923,7924,7925,7926,7938,7955,7962,7973,7984,7986,7990,8013,8031,8038,8043,8056,8099,8103,8122,8151,8156,8163,8183,8202,8209,8219,8234,8240,8284,8304,8308,8319,8329,8330,8335,8339,8349,8356,8373,8375,8403,8408,8429,8437,8459,8466,8470,8478,8481,8490,8494,8496,8509,8513,8517,8518,8533,8537,8543,8620,8658,8702,8706,8759,8777,8779,8785,8787,8790,8792,8796,8798,8820,8825,8842,8844,8879,8884,8902,8996,9024,9031,9049,9139,9152,9166,9175,9222,9223,9229,9366,9368,9382,9391,9397,9407,9415,9430,9466,9488,9514,9528,9553,9555,9557,9589,9630,9642,9646,9664,9683,9690,9728,9745,9754,9772,9776,9781,9790,9812,9865,9875,9878,10028,10050,10053,10055,10060,10064,10069,10079,10099,10110,10158,10209,10248,10399,10425,10429,10448,10508,10539,10648,10663,10692,10738,10739,10741,10759,10760,10763,10764,10769,10776,10789,10793,10804,10854,10865,10890,10900,10912,10940,10942,10947,10958,10964,10968,10973,10978,10982,11020,11082,11083,11087,11147,11148,11149,11152,11153,11163,11165,11175,11178,11197,11198,11203,11204,11216,11219,11220,11264,11279,11281,11282,11312,11318,11327,11331,11333,11357,11360,11396,11410,11418,11428,11431,11435,11436,11450,11464,11465,11481,11486,11488,11489,11496,11497,11499,11505,11519,11549,11575,11582,11583,11596,11599,11602,11608,11613,11614,11630,11645,11647,11648,11655,11662,11664,11702,11711,11712,11724,11740,11742,11747,11750,11753,11755,11775,11777,11783,11802,11815,11816,11825,11827,11832,11836,11853,11864,11872,11882,11890,11900,11904,11954,11981,11989,12100,12108,12110,12112,12173,12243,12247,12252,12253,12256,12258,12265,12363,12364,12411,12422,12498,12503,12504,12510,12519,12521,12542,12544,12653,12667,12668,12677,12684,12710,12713,12715,12722,12731,12734,12736,12749,12751,12753,12764,12814,12818,12825,12834,12836,12838,12874,12904,12988,13024,13029,13169,13172,13234,13318,13326,13616,13644,13663,13682,13702,13929,13962,13964,13973,13975,13983,13987,13993,14031,14055,14067,14085,14093,14109,14135,14215,14239,14256,14257,14262,14266,14267,14270,14271,14272,14274,14297,14320,14335,14340,14348,14352,14397,14463,14474,14487,14524,14546,14559,14560,14566,14571,14592,14608,14634,14663,14674,14680,14719,14724,14731,14735,14741,14747,14750,14756,14757,14764,14769,14797,14799,14806,14807,14809,14832,14839,14897,14936,14951,14952,14979,14987,14991,15000,15068,15193,15241,15279,15285,15286,15287,15288,15291,15388,15420,15478,15491,15499,15508,15531,15534,15644,15652,15700,15855,15870,15890,15898,15920,15933,15937,15940,15941,15943,15948,15964,15975,15976,15989,15991,15992,15996,15997,16000,16009,16016,16029,16051,16053,16066,16070,16071,16074,16101,16147,16165,16172,16178,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,16215,16216,16217,16218,16219,16220,16221,16222,16233,16236,16281,16282,16292,16293,16295,16301,16303,16305,16352,16376,16384,16503,16513,16608,16852,16866,16935,16944,17009,17024,17049,17053,17057,17166,17170,17305,17343,17345,17350,17371,17376,17378,17381,17399,17401,17405,17415,17432,17438,17439,17442,17447,17461,17465,17474,17479,17480,17482,17484,17485,17497,17513,17514,17515,17519,17521,17523,17536,17539,17559,17568,17646,17656,17674,17688,17707,17716,17717,17718,17738,17774,17804,17817,17846,17863,17893,17902,17905,17906,17912,17959,17965,17966,17969,17973,17978,18024,18052,18065,18077,18078,18081,18091,18095,18098,18113,18119,18126,18134,18139,18142,18149,18162,18179,18183,18186,18204,18209,18233,18235,18269,18284,18309,18319,18326,18341,18344,18346,18351,18355,18360,18371,18391,18407,18422,18425,18461,18506,18510,18550,18551,18554,18555,18556,18583,18595,18600,18604,18622,18625,18646,18649,18675,18677,18679,18697,18704,18705,18708,18711,18719,18724,18727,18737,18745,18747,18754,18760,18773,18781,18800,18812,18814,18822,18831,18841,18853,18858,18892,18902,18905,18915,18917,18919,18920,18930,18946,18952,18953,18954,18958,18965,18990,18992,18993,19002,19014,19016,19023,19024,19027,19033,19035,19040,19047,19058,19062,19063,19068,19090,19093,19100,19101,19114,19115,19135,19148,19153,19163,19167,19177,19178,19179,19182,19199,19201,19203,19204,19206,19208,19215,19217,19226,19240,19246,19249,19261,19281,19284,19297,19300,19310,19313,19315,19329,19331,19332,19335,19341,19361,19371,19402,19404,19406,19433,19434,19435,19442,19464,19474,19484,19494,19496,19499,19520,19531,19563,19565,19568,19570,19572,19583,19587,19588,19610,19612,19622,19642,19674,19677,19681,19688,19700,19707,19709,19711,19713,19725,19738,19739,19761,19775,19786,19801,19806,19808,19829,19849,19883,19889,19899,19900,19904,19922,19957,19965,19975,19977,19985,19986,20004,20024,20043,20045,20055,20057,20059,20064,20066,20067,20072,20073,20077,20081,20085,20098,20100,20106,20107,20114,20118,20124,20126,20130,20135,20146,20150,20157,20180,20181,20186,20191,20193,20195,20197,20204,20210,20214,20218,20221,20223,20224,20229,20231,20241,20260,20263,20268,20315,20319,20320,20321,20328,20330,20332,20345,20438,20484,20485,20497,20499,20509,20528,20529,20552,20589,20590,20591,20600,20616,20621,20631,20650,20682,20686,20705,20776,20911,20956,20976,21015,21041,21105,21114,21167,21213,21237,21244,21311,21367,21453,21458,21481,21533,21557,21565,21566,21644,21680,21684,21716,21978,21980,21987,22002,22006,22007,22011,22026,22027,22029,22034,22040,22061,22063,22072,22073,22090,22096,22098,22100,22103,22105,22107,22109,22110,22112,22134,22145,22147,22153,22155,22156,22159,22168,22176,22179,22191,22209,22212,22223,22230,22249,22279,22282,22283,22286,22291,22296,22301,22304,22306,22308,22310,22311,22312,22322,22324,22332,22333,22334,22343,22351,22355,22356,22357,22415,22428,22436,22440,22460,22462,22466,22469,22477,22528,22533,22542,22543,22544,22545,22570,22571,22586,22588,22592,22595,22598,22605,22615,22622,22624,22629,22630,22632,22633,22637,22650,22665,22698,22699,22701,22731,22735,22736,22794,22798,22805,22812,22816,22819,22828,22831,22833,22840,22859,22878,22905,22907,22909,22912,22920,22939,22999,23004,23007,23015,23019,23022,23024,23030,23031,23062,23064,23073,23100,23103,23110,23114,23122,23132,23141]]],["forasmuch",[2,2,[[4,1,1,0,1,[[164,1,1,0,1]]],[23,1,1,1,2,[[754,1,1,1,2]]]],[5252,19208]]],["how",[12,11,[[4,1,1,0,1,[[183,1,1,0,1]]],[5,3,2,1,3,[[196,2,1,1,2],[200,1,1,2,3]]],[8,1,1,3,4,[[249,1,1,3,4]]],[10,2,2,4,6,[[310,1,1,4,5],[311,1,1,5,6]]],[11,2,2,6,8,[[317,1,1,6,7],[318,1,1,7,8]]],[12,1,1,8,9,[[355,1,1,8,9]]],[17,1,1,9,10,[[457,1,1,9,10]]],[18,1,1,10,11,[[596,1,1,10,11]]]],[5755,6065,6199,7537,9415,9480,9654,9706,10899,13401,16057]]],["howbeit",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9130]]],["if",[108,98,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,10,9,1,10,[[70,8,7,1,8],[71,2,2,8,10]]],[2,32,31,10,41,[[91,1,1,10,11],[94,3,3,11,14],[100,3,3,14,17],[102,5,5,17,22],[104,5,4,22,26],[108,2,2,26,28],[110,1,1,28,29],[111,4,4,29,33],[113,1,1,33,34],[114,7,7,34,41]]],[3,8,7,41,48,[[121,2,1,41,42],[122,1,1,42,43],[125,1,1,43,44],[126,2,2,44,46],[131,2,2,46,48]]],[4,18,17,48,65,[[156,1,1,48,49],[158,1,1,49,50],[166,2,1,50,51],[167,3,3,51,54],[170,2,2,54,56],[171,1,1,56,57],[173,1,1,57,58],[174,1,1,58,59],[175,1,1,59,60],[176,1,1,60,61],[180,3,3,61,64],[182,1,1,64,65]]],[5,2,2,65,67,[[203,1,1,65,66],[206,1,1,66,67]]],[8,3,3,67,70,[[255,1,1,67,68],[258,1,1,68,69],[259,1,1,69,70]]],[9,1,1,70,71,[[285,1,1,70,71]]],[10,5,3,71,74,[[292,1,1,71,72],[298,3,1,72,73],[309,1,1,73,74]]],[11,3,2,74,76,[[316,2,1,74,75],[330,1,1,75,76]]],[13,3,1,76,77,[[372,3,1,76,77]]],[17,3,3,77,80,[[456,1,1,77,78],[459,1,1,78,79],[473,1,1,79,80]]],[18,1,1,80,81,[[539,1,1,80,81]]],[19,3,3,81,84,[[633,1,1,81,82],[649,1,1,82,83],[657,1,1,83,84]]],[23,5,5,84,89,[[757,1,1,84,85],[759,1,1,85,86],[769,1,1,86,87],[782,2,2,87,89]]],[25,8,8,89,97,[[804,2,2,89,91],[815,1,1,91,92],[819,2,2,92,94],[834,2,2,94,96],[847,1,1,96,97]]],[38,2,1,97,98,[[925,2,1,97,98]]]],[1109,2084,2091,2095,2097,2103,2110,2112,2127,2129,2766,2831,2833,2834,3034,3035,3036,3068,3076,3083,3094,3103,3176,3184,3187,3193,3286,3314,3354,3378,3380,3382,3383,3465,3483,3489,3495,3498,3504,3508,3516,3812,3832,3979,3997,4020,4167,4175,5033,5111,5314,5331,5335,5340,5390,5405,5417,5469,5478,5522,5528,5613,5620,5624,5718,6290,6377,7743,7813,7858,8518,8793,9022,9389,9632,10046,11310,13370,13453,13798,14837,16570,17033,17255,19288,19317,19562,19910,19920,20521,20523,20740,20854,20870,21286,21289,21672,23097]]],["meet",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13714]]],["nevertheless",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7595]]],["not",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8672]]],["of",[1,1,[[13,1,1,0,1,[[388,1,1,0,1]]]],[11650]]],["or",[2,1,[[10,2,1,0,1,[[308,2,1,0,1]]]],[9368]]],["rightly",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[763]]],["seeing",[12,12,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,1,1,1,2,[[99,1,1,1,2]]],[3,2,2,2,4,[[131,1,1,2,3],[132,1,1,3,4]]],[6,2,2,4,6,[[227,1,1,4,5],[231,1,1,5,6]]],[8,2,2,6,8,[[252,1,1,6,7],[259,1,1,7,8]]],[9,1,1,8,9,[[279,1,1,8,9]]],[13,1,1,9,10,[[368,1,1,9,10]]],[14,1,1,10,11,[[411,1,1,10,11]]],[18,1,1,11,12,[[499,1,1,11,12]]]],[2153,2994,4179,4197,6993,7118,7654,7845,8356,11217,12250,14212]]],["since",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5881]]],["so",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15525]]],["surely",[19,19,[[0,3,3,0,3,[[30,1,1,0,1],[41,1,1,1,2],[42,1,1,2,3]]],[1,1,1,3,4,[[72,1,1,3,4]]],[3,1,1,4,5,[[138,1,1,4,5]]],[8,3,3,5,8,[[252,1,1,5,6],[255,1,1,6,7],[260,1,1,7,8]]],[9,1,1,8,9,[[268,1,1,8,9]]],[10,1,1,9,10,[[308,1,1,9,10]]],[11,1,1,10,11,[[315,1,1,10,11]]],[17,2,2,11,13,[[443,1,1,11,12],[472,1,1,12,13]]],[18,1,1,13,14,[[554,1,1,13,14]]],[22,2,2,14,16,[[685,1,1,14,15],[727,1,1,15,16]]],[23,3,3,16,19,[[766,1,1,16,17],[768,1,1,17,18],[770,1,1,18,19]]]],[915,1268,1300,2177,4408,7643,7756,7895,8076,9356,9590,13035,13789,15104,17791,18654,19476,19532,19587]]],["than",[1,1,[[8,1,1,0,1,[[262,1,1,0,1]]]],[7931]]],["that",[692,658,[[0,79,75,0,75,[[0,6,6,0,6],[2,5,4,6,10],[5,4,4,10,14],[7,1,1,14,15],[11,3,3,15,18],[12,1,1,18,19],[13,1,1,19,20],[14,2,2,20,22],[15,2,2,22,24],[19,4,4,24,28],[20,1,1,28,29],[21,1,1,29,30],[23,1,1,30,31],[25,1,1,31,32],[26,1,1,32,33],[27,2,2,33,35],[28,4,3,35,38],[29,2,2,38,40],[30,7,7,40,47],[31,1,1,47,48],[32,1,1,48,49],[33,1,1,49,50],[36,1,1,50,51],[37,4,3,51,54],[38,3,3,54,57],[39,2,2,57,59],[40,1,1,59,60],[41,5,5,60,65],[42,2,2,65,67],[43,3,3,67,70],[44,2,2,70,72],[47,1,1,72,73],[48,2,1,73,74],[49,1,1,74,75]]],[1,43,40,75,115,[[51,2,2,75,77],[52,5,4,77,81],[53,4,3,81,84],[55,1,1,84,85],[56,2,2,85,87],[57,3,3,87,90],[58,4,4,90,94],[59,2,2,94,96],[63,4,3,96,99],[65,3,3,99,102],[67,2,2,102,104],[69,1,1,104,105],[70,1,1,105,106],[78,1,1,106,107],[80,1,1,107,108],[81,3,3,108,111],[82,2,2,111,113],[83,2,2,113,115]]],[2,5,5,115,120,[[96,1,1,115,116],[102,1,1,116,117],[109,1,1,117,118],[112,1,1,118,119],[113,1,1,119,120]]],[3,15,15,120,135,[[127,3,3,120,123],[130,1,1,123,124],[132,5,5,124,129],[136,1,1,129,130],[137,1,1,130,131],[138,3,3,131,134],[140,1,1,134,135]]],[4,26,26,135,161,[[155,1,1,135,136],[156,3,3,136,139],[157,2,2,139,141],[159,1,1,141,142],[160,3,3,142,145],[161,2,2,145,147],[166,1,1,147,148],[167,2,2,148,150],[168,1,1,150,151],[172,1,1,151,152],[176,2,2,152,154],[178,1,1,154,155],[180,1,1,155,156],[181,1,1,156,157],[182,1,1,157,158],[183,1,1,158,159],[184,2,2,159,161]]],[5,15,12,161,173,[[188,3,1,161,162],[189,2,2,162,164],[190,1,1,164,165],[194,3,2,165,167],[195,1,1,167,168],[208,2,2,168,170],[209,2,2,170,172],[210,1,1,172,173]]],[6,31,30,173,203,[[213,1,1,173,174],[214,1,1,174,175],[216,2,2,175,177],[218,2,2,177,179],[219,5,5,179,184],[221,1,1,184,185],[222,1,1,185,186],[223,2,2,186,188],[224,4,3,188,191],[225,2,2,191,193],[226,2,2,193,195],[227,1,1,195,196],[228,3,3,196,199],[230,4,4,199,203]]],[7,8,8,203,211,[[232,3,3,203,206],[233,2,2,206,208],[234,2,2,208,210],[235,1,1,210,211]]],[8,58,57,211,268,[[238,3,3,211,214],[239,1,1,214,215],[240,1,1,215,216],[241,1,1,216,217],[242,1,1,217,218],[245,3,3,218,221],[246,1,1,221,222],[247,3,3,222,225],[248,2,2,225,227],[249,2,2,227,229],[250,2,2,229,231],[252,4,4,231,235],[253,2,2,235,237],[255,6,6,237,243],[256,1,1,243,244],[257,4,4,244,248],[258,5,5,248,253],[259,2,2,253,255],[260,3,3,255,258],[261,2,2,258,260],[262,1,1,260,261],[263,3,3,261,264],[264,2,2,264,266],[266,3,2,266,268]]],[9,41,37,268,305,[[267,2,2,268,270],[268,1,1,270,271],[269,3,3,271,274],[270,1,1,274,275],[271,3,2,275,277],[273,2,2,277,279],[274,1,1,279,280],[275,1,1,280,281],[276,6,6,281,287],[277,2,2,287,289],[278,3,2,289,291],[279,1,1,291,292],[280,2,2,292,294],[282,1,1,294,295],[283,3,3,295,298],[284,2,2,298,300],[285,6,4,300,304],[286,1,1,304,305]]],[10,34,33,305,338,[[291,1,1,305,306],[292,5,5,306,311],[293,2,2,311,313],[295,2,2,313,315],[298,4,4,315,319],[301,3,2,319,321],[302,2,2,321,323],[304,1,1,323,324],[306,1,1,324,325],[307,1,1,325,326],[308,4,4,326,330],[310,4,4,330,334],[311,2,2,334,336],[312,2,2,336,338]]],[11,26,25,338,363,[[314,2,2,338,340],[315,3,3,340,343],[316,2,2,343,345],[317,4,3,345,348],[319,1,1,348,349],[320,2,2,349,351],[322,1,1,351,352],[323,1,1,352,353],[324,1,1,353,354],[329,1,1,354,355],[330,2,2,355,357],[331,2,2,357,359],[332,3,3,359,362],[337,1,1,362,363]]],[12,17,16,363,379,[[346,1,1,363,364],[347,3,2,364,366],[351,2,2,366,368],[354,1,1,368,369],[356,6,6,369,375],[358,2,2,375,377],[366,2,2,377,379]]],[13,15,15,379,394,[[372,2,2,379,381],[376,1,1,381,382],[378,1,1,382,383],[379,1,1,383,384],[381,1,1,384,385],[384,1,1,385,386],[385,1,1,386,387],[386,1,1,387,388],[388,1,1,388,389],[390,1,1,389,390],[391,1,1,390,391],[398,2,2,391,393],[399,1,1,393,394]]],[14,1,1,394,395,[[406,1,1,394,395]]],[15,8,7,395,402,[[416,4,3,395,398],[418,2,2,398,400],[421,1,1,400,401],[425,1,1,401,402]]],[16,2,2,402,404,[[428,1,1,402,403],[432,1,1,403,404]]],[17,48,42,404,446,[[436,1,1,404,405],[437,2,2,405,407],[438,1,1,407,408],[440,1,1,408,409],[441,2,1,409,410],[442,4,3,410,413],[444,2,2,413,415],[445,5,4,415,419],[446,2,1,419,420],[447,1,1,420,421],[448,2,2,421,423],[450,3,2,423,425],[451,1,1,425,426],[454,1,1,426,427],[456,1,1,427,428],[457,3,2,428,430],[467,1,1,430,431],[468,1,1,431,432],[471,4,4,432,436],[472,1,1,436,437],[473,1,1,437,438],[474,3,3,438,441],[475,2,2,441,443],[476,1,1,443,444],[477,2,2,444,446]]],[18,29,28,446,474,[[481,1,1,446,447],[485,2,1,447,448],[497,1,1,448,449],[499,1,1,449,450],[511,1,1,450,451],[514,1,1,451,452],[518,1,1,452,453],[523,1,1,453,454],[536,1,1,454,455],[539,1,1,455,456],[555,2,2,456,458],[560,1,1,458,459],[569,1,1,459,460],[571,1,1,460,461],[577,1,1,461,462],[580,1,1,462,463],[591,1,1,463,464],[595,3,3,464,467],[596,3,3,467,470],[597,1,1,470,471],[605,1,1,471,472],[612,1,1,472,473],[617,1,1,473,474]]],[19,7,7,474,481,[[634,1,1,474,475],[636,1,1,475,476],[647,1,1,476,477],[654,1,1,477,478],[655,1,1,478,479],[657,1,1,479,480],[658,1,1,480,481]]],[20,11,11,481,492,[[660,1,1,481,482],[661,3,3,482,485],[662,1,1,485,486],[663,2,2,486,488],[666,1,1,488,489],[667,2,2,489,491],[669,1,1,491,492]]],[22,33,31,492,523,[[681,1,1,492,493],[690,1,1,493,494],[692,1,1,494,495],[694,1,1,495,496],[700,3,3,496,499],[714,2,2,499,501],[715,2,2,501,503],[716,1,1,503,504],[717,1,1,504,505],[718,2,1,505,506],[719,2,2,506,508],[721,1,1,508,509],[723,2,2,509,511],[726,1,1,511,512],[727,2,2,512,514],[728,1,1,514,515],[730,2,2,515,517],[735,2,2,517,519],[737,3,2,519,521],[738,1,1,521,522],[739,1,1,522,523]]],[23,31,29,523,552,[[746,2,2,523,525],[747,1,1,525,526],[753,1,1,526,527],[754,1,1,527,528],[755,1,1,528,529],[757,1,1,529,530],[759,1,1,530,531],[760,1,1,531,532],[766,2,2,532,534],[768,1,1,534,535],[770,1,1,535,536],[773,1,1,536,537],[776,1,1,537,538],[781,1,1,538,539],[782,2,2,539,541],[784,4,3,541,544],[786,2,2,544,546],[788,3,2,546,548],[792,2,2,548,550],[793,1,1,550,551],[795,1,1,551,552]]],[24,6,5,552,557,[[797,2,1,552,553],[799,2,2,553,555],[800,1,1,555,556],[801,1,1,556,557]]],[25,81,81,557,638,[[803,1,1,557,558],[806,1,1,558,559],[807,4,4,559,563],[808,3,3,563,566],[811,1,1,566,567],[812,2,2,567,569],[813,3,3,569,572],[814,4,4,572,576],[815,2,2,576,578],[816,1,1,578,579],[817,1,1,579,580],[818,2,2,580,582],[820,1,1,582,583],[821,6,6,583,589],[822,1,1,589,590],[823,2,2,590,592],[824,3,3,592,595],[825,3,3,595,598],[826,4,4,598,602],[827,1,1,602,603],[829,4,4,603,607],[830,4,4,607,611],[831,4,4,611,615],[833,1,1,615,616],[834,2,2,616,618],[835,2,2,618,620],[836,4,4,620,624],[837,4,4,624,628],[838,4,4,628,632],[839,1,1,632,633],[840,5,5,633,638]]],[26,1,1,638,639,[[861,1,1,638,639]]],[27,2,2,639,641,[[863,1,1,639,640],[872,1,1,640,641]]],[28,2,2,641,643,[[877,1,1,641,642],[878,1,1,642,643]]],[29,2,2,643,645,[[882,1,1,643,644],[887,1,1,644,645]]],[31,4,4,645,649,[[889,2,2,645,647],[891,1,1,647,648],[892,1,1,648,649]]],[34,3,2,649,651,[[904,2,1,649,650],[905,1,1,650,651]]],[37,5,5,651,656,[[912,2,2,651,653],[914,1,1,653,654],[916,1,1,654,655],[921,1,1,655,656]]],[38,3,2,656,658,[[926,1,1,656,657],[927,2,1,657,658]]]],[3,9,11,17,20,24,60,61,62,66,139,142,143,144,194,309,312,316,328,350,368,373,385,386,501,502,504,505,543,559,605,720,728,779,781,807,826,828,831,839,878,879,893,895,905,908,909,953,973,985,1087,1128,1133,1135,1152,1162,1164,1187,1188,1216,1253,1254,1275,1285,1286,1297,1315,1339,1351,1355,1363,1370,1468,1488,1521,1556,1566,1583,1590,1591,1598,1606,1615,1632,1662,1690,1702,1720,1725,1732,1756,1771,1772,1776,1779,1784,1893,1894,1907,1953,1954,1959,2000,2010,2073,2113,2382,2433,2439,2459,2460,2486,2489,2525,2531,2900,3099,3345,3445,3463,4036,4044,4053,4122,4203,4205,4207,4222,4224,4340,4341,4403,4409,4411,4447,4994,5030,5039,5043,5068,5077,5120,5140,5142,5156,5160,5163,5314,5329,5334,5354,5447,5543,5547,5569,5621,5685,5726,5746,5794,5797,5878,5900,5903,5934,6016,6023,6053,6457,6460,6473,6474,6498,6590,6611,6676,6691,6725,6734,6756,6782,6792,6801,6809,6841,6872,6900,6905,6912,6913,6918,6931,6940,6967,6969,6993,7007,7016,7019,7057,7088,7090,7095,7133,7140,7145,7162,7171,7183,7186,7199,7284,7289,7296,7303,7326,7340,7359,7432,7434,7442,7450,7465,7472,7477,7491,7496,7511,7530,7571,7595,7644,7661,7664,7665,7694,7704,7731,7733,7737,7739,7760,7763,7787,7793,7795,7808,7809,7817,7819,7820,7823,7825,7850,7859,7865,7868,7900,7908,7909,7934,7943,7956,7963,7975,7976,8014,8016,8027,8032,8075,8106,8118,8119,8121,8144,8149,8191,8198,8218,8235,8243,8246,8249,8254,8255,8259,8275,8285,8304,8305,8332,8357,8378,8447,8457,8459,8472,8481,8497,8517,8531,8533,8545,8566,8728,8785,8799,8807,8811,8812,8826,8844,8879,8884,9003,9021,9028,9045,9129,9136,9167,9171,9220,9301,9341,9350,9351,9377,9378,9421,9436,9439,9449,9466,9467,9483,9513,9554,9556,9586,9597,9602,9604,9612,9654,9655,9662,9719,9737,9740,9803,9830,9860,9990,10044,10059,10069,10080,10106,10107,10110,10245,10643,10664,10666,10776,10782,10879,10910,10913,10917,10922,10923,10926,10952,10962,11178,11181,11290,11315,11411,11444,11458,11499,11574,11579,11616,11654,11688,11720,11877,11889,11921,12111,12360,12366,12374,12402,12417,12521,12681,12752,12814,12877,12894,12904,12916,12976,12989,13015,13020,13025,13067,13079,13089,13093,13095,13099,13114,13137,13162,13171,13217,13226,13241,13303,13370,13391,13392,13633,13662,13738,13745,13746,13760,13789,13813,13846,13849,13858,13878,13887,13898,13924,13930,13968,14016,14188,14235,14396,14463,14553,14624,14803,14838,15148,15152,15259,15426,15442,15511,15563,15827,15871,15872,15873,15969,15973,16050,16079,16130,16180,16275,16598,16656,16970,17182,17218,17274,17302,17357,17371,17373,17381,17385,17398,17403,17475,17478,17486,17522,17717,17904,17957,17981,18053,18061,18068,18335,18350,18360,18372,18412,18413,18422,18471,18474,18515,18564,18567,18618,18659,18662,18669,18701,18702,18766,18776,18815,18816,18837,18852,18970,18984,19015,19199,19224,19245,19278,19325,19357,19459,19475,19531,19587,19651,19739,19892,19902,19920,19948,19952,19955,19994,19997,20025,20039,20089,20100,20140,20243,20331,20376,20381,20432,20458,20497,20559,20570,20573,20576,20577,20581,20586,20604,20653,20665,20667,20695,20696,20700,20717,20722,20729,20731,20739,20754,20761,20824,20846,20849,20886,20907,20915,20933,20937,20939,20943,20949,20992,20998,21020,21047,21056,21075,21080,21083,21088,21090,21094,21100,21106,21179,21180,21181,21183,21189,21192,21199,21204,21212,21223,21229,21230,21263,21309,21313,21340,21343,21348,21353,21356,21359,21370,21382,21395,21397,21403,21410,21411,21425,21448,21454,21455,21470,21471,21476,22088,22113,22243,22338,22360,22412,22503,22541,22543,22568,22570,22766,22776,22908,22910,22931,22962,23039,23107,23134]]],["then",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19175]]],["there",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7733]]],["therefore",[4,4,[[0,1,1,0,1,[[28,1,1,0,1]]],[13,1,1,1,2,[[382,1,1,1,2]]],[18,1,1,2,3,[[593,1,1,2,3]]],[20,1,1,3,4,[[666,1,1,3,4]]]],[827,11518,15858,17464]]],["though",[33,30,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[5,2,1,2,3,[[203,2,1,2,3]]],[6,1,1,3,4,[[225,1,1,3,4]]],[8,1,1,4,5,[[256,1,1,4,5]]],[17,1,1,5,6,[[462,1,1,5,6]]],[18,1,1,6,7,[[500,1,1,6,7]]],[19,2,2,7,9,[[633,1,1,7,8],[656,1,1,8,9]]],[22,2,2,9,11,[[690,1,1,9,10],[741,1,1,10,11]]],[23,9,8,11,19,[[748,2,1,11,12],[756,1,1,12,13],[774,1,1,13,14],[776,1,1,14,15],[790,1,1,15,16],[793,1,1,16,17],[795,2,2,17,19]]],[25,7,6,19,25,[[803,2,1,19,20],[804,1,1,20,21],[813,1,1,21,22],[833,3,3,22,25]]],[26,1,1,25,26,[[858,1,1,25,26]]],[27,2,2,26,28,[[869,1,1,26,27],[870,1,1,27,28]]],[34,1,1,28,29,[[903,1,1,28,29]]],[37,1,1,29,30,[[919,1,1,29,30]]]],[3004,5698,6293,6932,7777,13489,14239,16575,17243,17901,18882,19057,19255,19678,19736,20068,20143,20217,20265,20498,20511,20683,21273,21274,21275,21997,22204,22224,22736,23001]]],["when",[172,160,[[0,9,9,0,9,[[5,1,1,0,1],[11,1,1,1,2],[23,1,1,2,3],[25,1,1,3,4],[29,1,1,4,5],[30,1,1,5,6],[42,1,1,6,7],[43,1,1,7,8],[45,1,1,8,9]]],[1,10,10,9,19,[[50,1,1,9,10],[52,1,1,10,11],[61,3,3,11,14],[62,4,4,14,18],[71,1,1,18,19]]],[2,6,6,19,25,[[91,1,1,19,20],[94,1,1,20,21],[104,1,1,21,22],[108,1,1,22,23],[111,1,1,23,24],[116,1,1,24,25]]],[3,2,2,25,27,[[131,1,1,25,26],[135,1,1,26,27]]],[4,13,13,27,40,[[158,2,2,27,29],[163,1,1,29,30],[164,2,2,30,32],[166,1,1,32,33],[167,2,2,33,35],[173,1,1,35,36],[178,1,1,36,37],[182,1,1,37,38],[183,1,1,38,39],[184,1,1,39,40]]],[5,5,5,40,45,[[190,1,1,40,41],[194,1,1,41,42],[203,1,1,42,43],[208,2,2,43,45]]],[6,9,9,45,54,[[211,1,1,45,46],[212,1,1,46,47],[216,1,1,47,48],[218,1,1,48,49],[222,1,1,49,50],[223,1,1,50,51],[226,2,2,51,53],[231,1,1,53,54]]],[8,7,7,54,61,[[245,1,1,54,55],[252,1,1,55,56],[255,1,1,56,57],[257,2,2,57,59],[260,1,1,59,60],[263,1,1,60,61]]],[9,5,5,61,66,[[270,1,1,61,62],[272,1,1,62,63],[273,2,2,63,65],[285,1,1,65,66]]],[10,1,1,66,67,[[298,1,1,66,67]]],[11,2,2,67,69,[[317,1,1,67,68],[330,1,1,68,69]]],[12,1,1,69,70,[[354,1,1,69,70]]],[13,2,2,70,72,[[372,2,2,70,72]]],[15,1,1,72,73,[[421,1,1,72,73]]],[17,13,12,73,85,[[436,1,1,73,74],[438,1,1,74,75],[440,1,1,75,76],[462,2,2,76,78],[466,5,4,78,82],[471,1,1,82,83],[472,1,1,83,84],[473,1,1,84,85]]],[18,14,13,85,98,[[479,1,1,85,86],[490,1,1,86,87],[526,4,3,87,90],[535,1,1,90,91],[542,1,1,91,92],[548,1,1,92,93],[567,1,1,93,94],[596,2,2,94,96],[597,1,1,96,97],[615,1,1,97,98]]],[19,11,9,98,107,[[630,1,1,98,99],[631,1,1,99,100],[633,2,2,100,102],[649,1,1,102,103],[650,3,2,103,105],[657,3,2,105,107]]],[22,16,15,107,122,[[679,1,1,107,108],[686,2,2,108,110],[688,1,1,110,111],[694,1,1,111,112],[702,1,1,112,113],[703,1,1,113,114],[706,2,2,114,116],[707,1,1,116,117],[708,2,1,117,118],[721,1,1,118,119],[732,1,1,119,120],[735,1,1,120,121],[736,1,1,121,122]]],[23,20,20,122,142,[[746,2,2,122,124],[747,2,2,124,126],[749,1,1,126,127],[750,1,1,127,128],[752,1,1,128,129],[755,1,1,129,130],[756,1,1,130,131],[757,1,1,131,132],[758,1,1,132,133],[760,1,1,133,134],[761,2,2,134,136],[762,1,1,136,137],[767,1,1,137,138],[773,1,1,138,139],[786,2,2,139,141],[788,1,1,141,142]]],[24,2,2,142,144,[[799,1,1,142,143],[800,1,1,143,144]]],[25,9,7,144,151,[[815,3,3,144,147],[816,1,1,147,148],[822,1,1,148,149],[826,3,1,149,150],[847,1,1,150,151]]],[27,4,3,151,154,[[865,2,1,151,152],[868,1,1,152,153],[872,1,1,153,154]]],[32,6,3,154,157,[[897,4,2,154,156],[899,2,1,156,157]]],[37,4,3,157,160,[[917,2,1,157,158],[919,1,1,158,159],[923,1,1,159,160]]]],[138,310,632,700,863,922,1311,1348,1419,1542,1600,1841,1842,1864,1872,1878,1881,1882,2140,2763,2835,3181,3304,3398,3584,4161,4303,5096,5106,5237,5265,5268,5314,5323,5332,5456,5567,5709,5749,5794,5916,6007,6288,6433,6454,6537,6563,6661,6720,6874,6901,6965,6974,7124,7425,7666,7742,7804,7809,7891,7964,8131,8170,8181,8192,8536,9020,9660,10056,10874,11308,11309,12529,12874,12926,12972,13489,13490,13602,13609,13614,13617,13749,13773,13834,13957,14078,14664,14665,14666,14789,14869,14999,15382,15930,16069,16081,16235,16480,16498,16543,16570,17021,17066,17075,17273,17274,17669,17826,17828,17862,17981,18118,18122,18179,18182,18216,18238,18507,18729,18785,18793,18985,18991,19010,19018,19077,19104,19165,19241,19250,19287,19305,19346,19363,19365,19406,19517,19648,19981,19995,20029,20362,20435,20744,20752,20754,20759,20951,21086,21667,22147,22192,22250,22638,22639,22672,22968,23000,23062]]],["whereas",[2,2,[[13,1,1,0,1,[[394,1,1,0,1]]],[20,1,1,1,2,[[662,1,1,1,2]]]],[11777,17395]]],["whether",[2,1,[[17,2,1,0,1,[[469,2,1,0,1]]]],[13716]]],["while",[3,3,[[4,1,1,0,1,[[171,1,1,0,1]]],[19,1,1,1,2,[[646,1,1,1,2]]],[24,1,1,2,3,[[797,1,1,2,3]]]],[5412,16943,20329]]],["whose",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3092]]],["yea",[4,4,[[18,1,1,0,1,[[579,1,1,0,1]]],[22,1,1,1,2,[[710,1,1,1,2]]],[23,1,1,2,3,[[758,1,1,2,3]]],[27,1,1,3,4,[[870,1,1,3,4]]]],[15534,18272,19311,22220]]],["yet",[6,6,[[1,1,1,0,1,[[54,1,1,0,1]]],[8,1,1,1,2,[[243,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[13,1,1,3,4,[[396,1,1,3,4]]],[20,1,1,4,5,[[666,1,1,4,5]]],[23,1,1,5,6,[[766,1,1,5,6]]]],[1643,7378,8658,11845,17470,19478]]]]},{"k":"H3589","v":[["destruction",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13375]]]]},{"k":"H3590","v":[["sparks",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13907]]]]},{"k":"H3591","v":[["*",[9,8,[[5,3,2,0,2,[[194,3,2,0,2]]],[8,2,2,2,4,[[252,2,2,2,4]]],[17,2,2,4,6,[[474,1,1,4,5],[476,1,1,5,6]]],[23,2,2,6,8,[[750,1,1,6,7],[794,1,1,7,8]]]],[6020,6028,7624,7663,13857,13917,19112,20208]]],["lance",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20208]]],["shield",[2,2,[[8,1,1,0,1,[[252,1,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]]],[7663,13857]]],["spear",[5,4,[[5,3,2,0,2,[[194,3,2,0,2]]],[17,1,1,2,3,[[476,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]]],[6020,6028,13917,19112]]],["target",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7624]]]]},{"k":"H3592","v":[["Chidon",[1,1,[[12,1,1,0,1,[[350,1,1,0,1]]]],[10769]]]]},{"k":"H3593","v":[["battle",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13227]]]]},{"k":"H3594","v":[["Chiun",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22449]]]]},{"k":"H3595","v":[["*",[23,20,[[1,9,9,0,9,[[79,2,2,0,2],[80,1,1,2,3],[84,1,1,3,4],[87,1,1,4,5],[88,1,1,5,6],[89,3,3,6,9]]],[2,1,1,9,10,[[97,1,1,9,10]]],[8,1,1,10,11,[[237,1,1,10,11]]],[10,7,4,11,15,[[297,7,4,11,15]]],[11,1,1,15,16,[[328,1,1,15,16]]],[13,3,3,16,19,[[370,2,2,16,18],[372,1,1,18,19]]],[37,1,1,19,20,[[922,1,1,19,20]]]],[2400,2410,2429,2547,2641,2703,2714,2718,2737,2928,7254,8964,8972,8974,8977,9980,11252,11260,11295,23051]]],["hearth",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23051]]],["laver",[15,13,[[1,9,9,0,9,[[79,2,2,0,2],[80,1,1,2,3],[84,1,1,3,4],[87,1,1,4,5],[88,1,1,5,6],[89,3,3,6,9]]],[2,1,1,9,10,[[97,1,1,9,10]]],[10,4,2,10,12,[[297,4,2,10,12]]],[11,1,1,12,13,[[328,1,1,12,13]]]],[2400,2410,2429,2547,2641,2703,2714,2718,2737,2928,8964,8972,9980]]],["lavers",[5,5,[[10,3,3,0,3,[[297,3,3,0,3]]],[13,2,2,3,5,[[370,2,2,3,5]]]],[8972,8974,8977,11252,11260]]],["pan",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7254]]],["scaffold",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11295]]]]},{"k":"H3596","v":[["churl",[2,2,[[22,2,2,0,2,[[710,2,2,0,2]]]],[18264,18266]]]]},{"k":"H3597","v":[["hammers",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15054]]]]},{"k":"H3598","v":[["*",[3,3,[[17,2,2,0,2,[[444,1,1,0,1],[473,1,1,1,2]]],[29,1,1,2,3,[[883,1,1,2,3]]]],[13060,13824,22431]]],["Pleiades",[2,2,[[17,2,2,0,2,[[444,1,1,0,1],[473,1,1,1,2]]]],[13060,13824]]],["stars",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22431]]]]},{"k":"H3599","v":[["*",[5,5,[[4,1,1,0,1,[[177,1,1,0,1]]],[19,2,2,1,3,[[628,1,1,1,2],[643,1,1,2,3]]],[22,1,1,3,4,[[724,1,1,3,4]]],[32,1,1,4,5,[[898,1,1,4,5]]]],[5560,16414,16851,18592,22659]]],["+",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18592]]],["bag",[3,3,[[4,1,1,0,1,[[177,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]],[32,1,1,2,3,[[898,1,1,2,3]]]],[5560,16851,22659]]],["purse",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16414]]]]},{"k":"H3600","v":[["pots",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3032]]]]},{"k":"H3601","v":[["spindle",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17303]]]]},{"k":"H3602","v":[["*",[37,35,[[1,2,2,0,2,[[61,1,1,0,1],[78,1,1,1,2]]],[3,5,5,2,7,[[124,1,1,2,3],[127,1,1,3,4],[131,3,3,4,7]]],[4,2,2,7,9,[[177,1,1,7,8],[181,1,1,8,9]]],[5,1,1,9,10,[[196,1,1,9,10]]],[8,2,2,10,12,[[237,1,1,10,11],[254,1,1,11,12]]],[9,2,2,12,14,[[279,1,1,12,13],[283,1,1,13,14]]],[10,3,3,14,17,[[291,2,2,14,16],[299,1,1,16,17]]],[13,3,2,17,19,[[373,1,1,17,18],[384,2,1,18,19]]],[15,2,1,19,20,[[417,2,1,19,20]]],[16,3,3,20,23,[[431,2,2,20,22],[434,1,1,22,23]]],[17,1,1,23,24,[[436,1,1,23,24]]],[18,1,1,24,25,[[621,1,1,24,25]]],[20,1,1,25,26,[[669,1,1,25,26]]],[21,1,1,26,27,[[675,1,1,26,27]]],[23,5,5,27,32,[[757,1,1,27,28],[763,1,1,28,29],[766,1,1,29,30],[772,1,1,30,31],[795,1,1,31,32]]],[25,2,2,32,34,[[805,1,1,32,33],[832,1,1,33,34]]],[27,1,1,34,35,[[871,1,1,34,35]]]],[1827,2371,3965,4039,4164,4165,4166,5556,5703,6089,7254,7723,8321,8470,8723,8765,9059,11345,11561,12395,12802,12804,12860,12874,16320,17518,17607,19275,19418,19462,19629,20276,20542,21248,22240]]],["+",[4,4,[[9,1,1,0,1,[[279,1,1,0,1]]],[18,1,1,1,2,[[621,1,1,1,2]]],[21,1,1,2,3,[[675,1,1,2,3]]],[25,1,1,3,4,[[832,1,1,3,4]]]],[8321,16320,17607,21248]]],["So",[4,4,[[4,1,1,0,1,[[177,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[15,1,1,2,3,[[417,1,1,2,3]]],[27,1,1,3,4,[[871,1,1,3,4]]]],[5556,7254,12395,22240]]],["Thus",[6,6,[[3,2,2,0,2,[[124,1,1,0,1],[131,1,1,1,2]]],[16,2,2,2,4,[[431,2,2,2,4]]],[17,1,1,4,5,[[436,1,1,4,5]]],[23,1,1,5,6,[[795,1,1,5,6]]]],[3965,4164,12802,12804,12874,20276]]],["manner",[4,3,[[3,1,1,0,1,[[131,1,1,0,1]]],[13,2,1,1,2,[[384,2,1,1,2]]],[23,1,1,2,3,[[757,1,1,2,3]]]],[4166,11561,19275]]],["matter",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12860]]],["so",[6,6,[[3,1,1,0,1,[[131,1,1,0,1]]],[8,1,1,1,2,[[254,1,1,1,2]]],[10,1,1,2,3,[[291,1,1,2,3]]],[20,1,1,3,4,[[669,1,1,3,4]]],[23,2,2,4,6,[[763,1,1,4,5],[772,1,1,5,6]]]],[4165,7723,8723,17518,19418,19629]]],["thus",[12,12,[[1,2,2,0,2,[[61,1,1,0,1],[78,1,1,1,2]]],[3,1,1,2,3,[[127,1,1,2,3]]],[4,1,1,3,4,[[181,1,1,3,4]]],[5,1,1,4,5,[[196,1,1,4,5]]],[9,1,1,5,6,[[283,1,1,5,6]]],[10,2,2,6,8,[[291,1,1,6,7],[299,1,1,7,8]]],[13,1,1,8,9,[[373,1,1,8,9]]],[15,1,1,9,10,[[417,1,1,9,10]]],[23,1,1,10,11,[[766,1,1,10,11]]],[25,1,1,11,12,[[805,1,1,11,12]]]],[1827,2371,4039,5703,6089,8470,8765,9059,11345,12395,19462,20542]]]]},{"k":"H3603","v":[["*",[68,55,[[0,7,7,0,7,[[12,3,3,0,3],[18,4,4,3,7]]],[1,9,7,7,14,[[74,1,1,7,8],[78,1,1,8,9],[86,1,1,9,10],[87,6,4,10,14]]],[4,1,1,14,15,[[186,1,1,14,15]]],[6,1,1,15,16,[[218,1,1,15,16]]],[8,2,2,16,18,[[237,1,1,16,17],[245,1,1,17,18]]],[9,2,2,18,20,[[278,1,1,18,19],[284,1,1,19,20]]],[10,7,7,20,27,[[297,1,1,20,21],[299,2,2,21,23],[300,2,2,23,25],[306,1,1,25,26],[310,1,1,26,27]]],[11,9,6,27,33,[[317,4,3,27,30],[327,1,1,30,31],[330,2,1,31,32],[335,2,1,32,33]]],[12,11,6,33,39,[[353,1,1,33,34],[356,1,1,34,35],[357,1,1,35,36],[359,2,1,36,37],[366,6,2,37,39]]],[13,10,9,39,48,[[369,1,1,39,40],[370,1,1,40,41],[374,1,1,41,42],[375,2,2,42,44],[391,2,2,44,46],[393,1,1,46,47],[402,2,1,47,48]]],[14,3,1,48,49,[[410,3,1,48,49]]],[15,2,2,49,51,[[415,1,1,49,50],[424,1,1,50,51]]],[16,1,1,51,52,[[428,1,1,51,52]]],[19,1,1,52,53,[[633,1,1,52,53]]],[23,1,1,53,54,[[781,1,1,53,54]]],[37,1,1,54,55,[[915,1,1,54,55]]]],[328,329,330,474,482,485,486,2234,2359,2628,2657,2658,2660,2662,5842,6724,7276,7421,8316,8501,8980,9065,9079,9089,9093,9307,9447,9652,9669,9670,9944,10038,10198,10823,10913,10928,10978,11168,11171,11237,11263,11364,11373,11377,11710,11713,11760,11996,12227,12349,12652,12756,16566,19895,22943]]],["country",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12652]]],["loaf",[2,2,[[1,1,1,0,1,[[78,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]]],[2359,10823]]],["loaves",[2,2,[[6,1,1,0,1,[[218,1,1,0,1]]],[8,1,1,1,2,[[245,1,1,1,2]]]],[6724,7421]]],["morsel",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7276]]],["piece",[2,2,[[19,1,1,0,1,[[633,1,1,0,1]]],[23,1,1,1,2,[[781,1,1,1,2]]]],[16566,19895]]],["plain",[12,12,[[0,7,7,0,7,[[12,3,3,0,3],[18,4,4,3,7]]],[4,1,1,7,8,[[186,1,1,7,8]]],[9,1,1,8,9,[[284,1,1,8,9]]],[10,1,1,9,10,[[297,1,1,9,10]]],[13,1,1,10,11,[[370,1,1,10,11]]],[15,1,1,11,12,[[415,1,1,11,12]]]],[328,329,330,474,482,485,486,5842,8501,8980,11263,12349]]],["talent",[10,10,[[1,3,3,0,3,[[74,1,1,0,1],[86,1,1,1,2],[87,1,1,2,3]]],[9,1,1,3,4,[[278,1,1,3,4]]],[10,1,1,4,5,[[310,1,1,4,5]]],[11,2,2,5,7,[[317,1,1,5,6],[335,1,1,6,7]]],[12,1,1,7,8,[[357,1,1,7,8]]],[13,1,1,8,9,[[402,1,1,8,9]]],[37,1,1,9,10,[[915,1,1,9,10]]]],[2234,2628,2660,8316,9447,9669,10198,10928,11996,22943]]],["talents",[38,28,[[1,5,4,0,4,[[87,5,4,0,4]]],[10,5,5,4,9,[[299,2,2,4,6],[300,2,2,6,8],[306,1,1,8,9]]],[11,7,5,9,14,[[317,3,2,9,11],[327,1,1,11,12],[330,2,1,12,13],[335,1,1,13,14]]],[12,9,4,14,18,[[356,1,1,14,15],[359,2,1,15,16],[366,6,2,16,18]]],[13,8,8,18,26,[[369,1,1,18,19],[374,1,1,19,20],[375,2,2,20,22],[391,2,2,22,24],[393,1,1,24,25],[402,1,1,25,26]]],[14,3,1,26,27,[[410,3,1,26,27]]],[16,1,1,27,28,[[428,1,1,27,28]]]],[2657,2658,2660,2662,9065,9079,9089,9093,9307,9652,9670,9944,10038,10198,10913,10978,11168,11171,11237,11364,11373,11377,11710,11713,11760,11996,12227,12756]]]]},{"k":"H3604","v":[["talents",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12195]]]]},{"k":"H3605","v":[["*",[5405,4235,[[0,342,251,0,251,[[0,14,7,0,7],[1,15,11,7,18],[2,7,4,18,22],[3,5,4,22,26],[4,9,9,26,35],[5,14,9,35,44],[6,23,14,44,58],[7,14,7,58,65],[8,21,11,65,76],[9,2,2,76,78],[10,7,5,78,83],[11,3,3,83,86],[12,6,5,86,91],[13,7,6,91,97],[14,1,1,97,98],[15,3,1,98,99],[16,8,5,99,104],[17,4,4,104,108],[18,7,6,108,114],[19,7,5,114,119],[20,3,3,119,122],[21,1,1,122,123],[22,4,3,123,126],[23,6,6,126,132],[24,4,4,132,136],[25,5,4,136,140],[26,2,2,140,142],[27,3,3,142,145],[28,4,4,145,149],[29,9,5,149,154],[30,16,10,154,164],[31,3,2,164,166],[32,3,3,166,169],[33,11,7,169,176],[34,3,3,176,179],[35,3,1,179,180],[36,4,3,180,183],[38,9,7,183,190],[39,2,2,190,192],[40,24,18,192,210],[41,4,4,210,214],[42,2,2,214,216],[43,1,1,216,217],[44,14,11,217,228],[45,11,10,228,238],[46,7,7,238,245],[47,1,1,245,246],[48,1,1,246,247],[49,5,4,247,251]]],[1,309,228,251,479,[[50,8,4,251,255],[52,1,1,255,256],[53,6,5,256,261],[54,1,1,261,262],[55,1,1,262,263],[56,6,5,263,268],[57,6,5,268,273],[58,17,10,273,283],[59,17,9,283,292],[60,7,5,292,297],[61,24,18,297,315],[62,10,5,315,320],[63,9,8,320,328],[64,4,3,328,331],[65,8,8,331,339],[66,1,1,339,340],[67,17,12,340,352],[68,10,7,352,359],[69,8,8,359,367],[70,1,1,367,368],[71,5,4,368,372],[72,5,4,372,376],[73,7,4,376,380],[74,6,5,380,385],[75,2,2,385,387],[76,6,3,387,390],[77,2,2,390,392],[78,6,6,392,398],[79,5,5,398,403],[80,10,9,403,412],[81,3,3,412,415],[82,6,5,415,420],[83,13,8,420,428],[84,28,19,428,447],[85,12,8,447,455],[86,2,2,455,457],[87,12,9,457,466],[88,10,8,466,474],[89,7,5,474,479]]],[2,259,196,479,675,[[90,2,2,479,481],[91,7,4,481,485],[92,6,5,485,490],[93,16,14,490,504],[94,4,4,504,508],[95,11,10,508,518],[96,18,12,518,530],[97,8,8,530,538],[98,3,3,538,541],[99,4,3,541,544],[100,40,24,544,568],[101,1,1,568,569],[102,13,11,569,580],[103,7,6,580,586],[104,22,15,586,601],[105,12,9,601,610],[106,8,5,610,615],[107,8,6,615,621],[108,5,4,621,625],[109,6,5,625,630],[110,4,4,630,634],[111,13,9,634,643],[112,19,14,643,657],[113,4,3,657,660],[114,4,4,660,664],[115,4,4,664,668],[116,10,7,668,675]]],[3,325,252,675,927,[[117,25,19,675,694],[118,6,6,694,700],[119,22,17,700,717],[120,28,21,717,738],[121,7,4,738,742],[122,6,5,742,747],[123,6,5,747,752],[124,9,6,752,758],[125,5,4,758,762],[126,2,2,762,764],[127,10,8,764,772],[128,2,2,772,774],[129,5,4,774,778],[130,16,13,778,791],[131,12,11,791,802],[132,23,17,802,819],[133,6,5,819,824],[134,25,16,824,840],[135,8,7,840,847],[136,6,5,847,852],[137,9,7,852,859],[138,3,3,859,862],[139,3,3,862,865],[140,1,1,865,866],[141,2,2,866,868],[142,4,3,868,871],[143,7,6,871,877],[144,3,3,877,880],[145,5,5,880,885],[146,12,8,885,893],[147,27,17,893,910],[148,6,6,910,916],[149,6,3,916,919],[151,7,7,919,926],[152,1,1,926,927]]],[4,359,282,927,1209,[[153,9,9,927,936],[154,11,9,936,945],[155,18,12,945,957],[156,24,19,957,976],[157,17,14,976,990],[158,11,7,990,997],[159,10,7,997,1004],[160,5,5,1004,1009],[161,2,2,1009,1011],[162,5,3,1011,1014],[163,14,11,1014,1025],[164,22,18,1025,1043],[165,8,6,1043,1049],[166,17,15,1049,1064],[167,7,6,1064,1070],[168,7,6,1070,1076],[169,8,7,1076,1083],[170,9,7,1083,1090],[171,7,4,1090,1094],[172,7,6,1094,1100],[173,6,4,1100,1104],[174,5,5,1104,1109],[175,5,5,1109,1114],[176,3,3,1114,1117],[177,4,3,1117,1120],[178,9,8,1120,1128],[179,18,17,1128,1145],[180,34,26,1145,1171],[181,15,9,1171,1180],[182,13,8,1180,1188],[183,11,10,1188,1198],[184,7,5,1198,1203],[185,2,2,1203,1205],[186,9,4,1205,1209]]],[5,235,170,1209,1379,[[187,14,11,1209,1220],[188,10,8,1220,1228],[189,8,6,1228,1234],[190,9,6,1234,1240],[191,8,5,1240,1245],[192,12,10,1245,1255],[193,8,6,1255,1261],[194,21,16,1261,1277],[195,12,9,1277,1286],[196,33,24,1286,1310],[197,23,15,1310,1325],[198,3,3,1325,1328],[199,19,13,1328,1341],[201,2,2,1341,1343],[202,1,1,1343,1344],[203,1,1,1344,1345],[204,1,1,1345,1346],[205,1,1,1346,1347],[206,2,1,1347,1348],[207,13,10,1348,1358],[208,10,7,1358,1365],[209,13,7,1365,1372],[210,11,7,1372,1379]]],[6,138,109,1379,1488,[[211,1,1,1379,1380],[212,7,5,1380,1385],[213,6,4,1385,1389],[214,5,3,1389,1392],[215,1,1,1392,1393],[216,9,8,1393,1401],[217,17,14,1401,1415],[218,6,5,1415,1420],[219,20,15,1420,1435],[220,3,3,1435,1438],[221,8,7,1438,1445],[222,1,1,1445,1446],[223,7,5,1446,1451],[224,1,1,1451,1452],[226,10,7,1452,1459],[228,2,2,1459,1461],[229,5,5,1461,1466],[230,25,19,1466,1485],[231,4,3,1485,1488]]],[7,13,10,1488,1498,[[232,1,1,1488,1489],[233,2,2,1489,1491],[234,5,4,1491,1495],[235,5,3,1495,1498]]],[8,187,156,1498,1654,[[236,4,4,1498,1502],[237,14,10,1502,1512],[238,6,6,1512,1518],[239,4,4,1518,1522],[240,4,3,1522,1525],[241,2,2,1525,1527],[242,7,6,1527,1533],[243,7,7,1533,1540],[244,6,5,1540,1545],[245,10,8,1545,1553],[246,9,7,1553,1560],[247,9,6,1560,1566],[248,6,6,1566,1572],[249,16,13,1572,1585],[250,6,5,1585,1590],[252,5,5,1590,1595],[253,8,7,1595,1602],[254,6,5,1602,1607],[255,2,2,1607,1609],[257,16,11,1609,1620],[258,5,4,1620,1624],[259,1,1,1624,1625],[260,12,11,1625,1636],[261,2,2,1636,1638],[262,2,2,1638,1640],[263,5,4,1640,1644],[264,1,1,1644,1645],[265,9,7,1645,1652],[266,3,2,1652,1654]]],[9,208,166,1654,1820,[[267,2,2,1654,1656],[268,7,6,1656,1662],[269,19,13,1662,1675],[270,3,3,1675,1678],[271,5,5,1678,1683],[272,12,9,1683,1692],[273,11,8,1692,1700],[274,9,6,1700,1706],[275,5,4,1706,1710],[276,4,4,1710,1714],[277,4,4,1714,1718],[278,6,5,1718,1723],[279,13,12,1723,1735],[280,6,4,1735,1739],[281,23,16,1739,1755],[282,13,10,1755,1765],[283,13,11,1765,1776],[284,8,7,1776,1783],[285,21,17,1783,1800],[286,10,8,1800,1808],[287,2,2,1808,1810],[288,3,3,1810,1813],[289,5,3,1813,1816],[290,4,4,1816,1820]]],[10,237,195,1820,2015,[[291,11,10,1820,1830],[292,8,6,1830,1836],[293,3,3,1836,1839],[294,18,12,1839,1851],[295,5,5,1851,1856],[296,10,7,1856,1863],[297,13,12,1863,1875],[298,36,27,1875,1902],[299,10,9,1902,1911],[300,11,10,1911,1921],[301,16,14,1921,1935],[302,10,9,1935,1944],[303,2,2,1944,1946],[304,13,11,1946,1957],[305,21,16,1957,1973],[306,11,11,1973,1984],[308,10,8,1984,1992],[309,5,2,1992,1994],[310,12,10,1994,2004],[311,1,1,2004,2005],[312,11,10,2005,2015]]],[11,203,156,2015,2171,[[315,11,4,2015,2019],[316,4,4,2019,2023],[317,3,2,2023,2025],[318,1,1,2025,2026],[319,3,2,2026,2028],[320,7,6,2028,2034],[321,4,4,2034,2038],[322,20,13,2038,2051],[323,7,7,2051,2058],[324,10,8,2058,2066],[325,5,5,2066,2071],[326,6,5,2071,2076],[327,11,10,2076,2086],[328,7,5,2086,2091],[329,15,11,2091,2102],[330,8,8,2102,2110],[331,6,6,2110,2116],[332,6,4,2116,2120],[333,11,10,2120,2130],[334,6,5,2130,2135],[335,26,16,2135,2151],[336,13,8,2151,2159],[337,13,12,2159,2171]]],[12,183,139,2171,2310,[[338,2,2,2171,2173],[339,3,3,2173,2176],[340,1,1,2176,2177],[341,2,2,2177,2179],[342,4,4,2179,2183],[343,4,3,2183,2186],[344,6,5,2186,2191],[345,2,2,2191,2193],[346,4,4,2193,2197],[347,5,4,2197,2201],[348,5,5,2201,2206],[349,9,6,2206,2212],[350,10,7,2212,2219],[351,4,2,2219,2221],[352,3,3,2221,2224],[353,12,12,2224,2236],[354,11,7,2236,2243],[355,9,7,2243,2250],[356,3,3,2250,2253],[357,2,1,2253,2254],[358,5,5,2254,2259],[359,5,4,2259,2263],[360,5,5,2263,2268],[362,3,3,2268,2271],[363,7,6,2271,2277],[364,4,3,2277,2280],[365,26,11,2280,2291],[366,27,19,2291,2310]]],[13,300,241,2310,2551,[[367,5,3,2310,2313],[368,5,4,2313,2317],[370,4,4,2317,2321],[371,9,8,2321,2329],[372,18,11,2329,2340],[373,11,11,2340,2351],[374,8,5,2351,2356],[375,12,11,2356,2367],[376,6,5,2367,2372],[377,9,6,2372,2378],[378,4,4,2378,2382],[379,3,3,2382,2385],[380,4,3,2385,2388],[381,12,9,2388,2397],[382,3,3,2397,2400],[383,5,5,2400,2405],[384,7,7,2405,2412],[385,4,3,2412,2415],[386,8,8,2415,2423],[387,7,7,2423,2430],[388,3,3,2430,2433],[389,13,12,2433,2445],[390,8,6,2445,2451],[391,5,4,2451,2455],[392,5,5,2455,2460],[393,2,2,2460,2462],[394,9,8,2462,2470],[395,15,11,2470,2481],[396,11,10,2481,2491],[397,15,7,2491,2498],[398,17,15,2498,2513],[399,10,9,2513,2522],[400,22,14,2522,2536],[401,10,8,2536,2544],[402,11,7,2544,2551]]],[14,48,37,2551,2588,[[403,10,7,2551,2558],[404,4,4,2558,2562],[405,4,3,2562,2565],[406,1,1,2565,2566],[408,3,2,2566,2568],[409,2,2,2568,2570],[410,9,6,2570,2576],[411,2,2,2576,2578],[412,13,10,2578,2588]]],[15,71,57,2588,2645,[[416,5,5,2588,2593],[417,5,4,2593,2597],[418,3,2,2597,2599],[419,3,3,2599,2602],[420,14,11,2602,2613],[421,13,8,2613,2621],[422,10,6,2621,2627],[423,5,5,2627,2632],[424,2,2,2632,2634],[425,11,11,2634,2645]]],[16,73,54,2645,2699,[[426,13,9,2645,2654],[427,8,6,2654,2660],[428,11,7,2660,2667],[429,8,7,2667,2674],[430,4,3,2674,2677],[431,3,2,2677,2679],[433,9,6,2679,2685],[434,15,12,2685,2697],[435,2,2,2697,2699]]],[17,73,66,2699,2765,[[436,7,6,2699,2705],[437,3,3,2705,2708],[443,2,2,2708,2710],[444,1,1,2710,2711],[447,3,2,2711,2713],[448,3,3,2713,2716],[449,1,1,2716,2717],[450,1,1,2717,2718],[451,2,2,2718,2720],[452,2,2,2720,2722],[454,1,1,2722,2723],[455,2,2,2723,2725],[456,2,2,2725,2727],[459,1,1,2727,2728],[462,3,3,2728,2731],[463,4,4,2731,2735],[465,1,1,2735,2736],[466,2,2,2736,2738],[468,4,4,2738,2742],[469,5,5,2742,2747],[471,2,2,2747,2749],[472,5,4,2749,2753],[473,2,2,2753,2755],[474,1,1,2755,2756],[475,3,3,2756,2759],[476,3,2,2759,2761],[477,7,4,2761,2765]]],[18,348,317,2765,3082,[[478,1,1,2765,2766],[479,1,1,2766,2767],[480,1,1,2767,2768],[482,2,2,2768,2770],[483,4,4,2770,2774],[484,2,2,2774,2776],[485,4,4,2776,2780],[486,4,3,2780,2783],[487,3,2,2783,2785],[489,1,1,2785,2786],[491,2,2,2786,2788],[493,1,1,2788,2789],[495,2,2,2789,2791],[496,1,1,2791,2792],[497,3,3,2792,2795],[498,1,1,2795,2796],[499,9,6,2796,2802],[500,1,1,2802,2803],[502,5,5,2803,2808],[503,1,1,2808,2809],[504,1,1,2809,2810],[506,1,1,2810,2811],[508,3,3,2811,2814],[509,3,3,2814,2817],[510,7,6,2817,2823],[511,8,8,2823,2831],[512,2,2,2831,2833],[514,1,1,2833,2834],[515,3,3,2834,2837],[516,5,4,2837,2841],[517,1,1,2841,2842],[518,2,2,2842,2844],[519,3,3,2844,2847],[521,4,4,2847,2851],[522,4,4,2851,2855],[524,3,3,2855,2858],[525,1,1,2858,2859],[526,3,2,2859,2861],[527,2,2,2861,2863],[528,1,1,2863,2864],[529,2,2,2864,2866],[530,1,1,2866,2867],[531,1,1,2867,2868],[533,4,3,2868,2871],[534,2,2,2871,2873],[536,3,2,2873,2875],[539,2,2,2875,2877],[540,1,1,2877,2878],[541,3,3,2878,2881],[542,2,2,2881,2883],[543,3,3,2883,2886],[544,4,4,2886,2890],[546,2,2,2890,2892],[547,1,1,2892,2893],[548,4,4,2893,2897],[549,5,4,2897,2901],[550,3,3,2901,2904],[551,4,4,2904,2908],[552,3,3,2908,2911],[553,3,3,2911,2914],[554,1,1,2914,2915],[555,4,4,2915,2919],[557,1,1,2919,2920],[559,3,3,2920,2923],[560,2,2,2923,2925],[562,2,2,2925,2927],[563,4,4,2927,2931],[564,2,2,2931,2933],[565,3,3,2933,2936],[566,7,7,2936,2943],[567,2,2,2943,2945],[568,1,1,2945,2946],[569,2,2,2946,2948],[571,2,2,2948,2950],[572,1,1,2950,2951],[573,7,6,2951,2957],[574,6,4,2957,2961],[575,2,2,2961,2963],[576,1,1,2963,2964],[577,1,1,2964,2965],[578,2,1,2965,2966],[579,3,3,2966,2969],[580,9,7,2969,2976],[581,4,4,2976,2980],[582,8,7,2980,2987],[583,4,4,2987,2991],[584,3,3,2991,2994],[585,1,1,2994,2995],[586,1,1,2995,2996],[588,4,4,2996,3000],[590,1,1,3000,3001],[592,3,3,3001,3004],[593,4,4,3004,3008],[594,2,1,3008,3009],[595,1,1,3009,3010],[596,28,26,3010,3036],[598,1,1,3036,3037],[605,2,2,3037,3039],[606,1,1,3039,3040],[607,1,1,3040,3041],[609,1,1,3041,3042],[611,1,1,3042,3043],[612,6,5,3043,3048],[613,1,1,3048,3049],[615,3,3,3049,3052],[616,3,3,3052,3055],[617,1,1,3055,3056],[620,3,3,3056,3059],[622,17,11,3059,3070],[623,1,1,3070,3071],[624,2,2,3071,3073],[625,10,7,3073,3080],[626,1,1,3080,3081],[627,1,1,3081,3082]]],[19,77,77,3082,3159,[[628,6,6,3082,3088],[629,2,2,3088,3090],[630,6,6,3090,3096],[631,4,4,3096,3100],[632,3,3,3100,3103],[633,4,4,3103,3107],[634,2,2,3107,3109],[635,6,6,3109,3115],[637,1,1,3115,3116],[639,1,1,3116,3117],[640,2,2,3117,3119],[641,2,2,3119,3121],[642,2,2,3121,3123],[643,5,5,3123,3128],[644,2,2,3128,3130],[645,1,1,3130,3131],[646,2,2,3131,3133],[647,4,4,3133,3137],[648,4,4,3137,3141],[649,1,1,3141,3142],[650,1,1,3142,3143],[651,2,2,3143,3145],[653,1,1,3145,3146],[654,1,1,3146,3147],[655,1,1,3147,3148],[656,2,2,3148,3150],[657,4,4,3150,3154],[658,5,5,3154,3159]]],[20,91,69,3159,3228,[[659,9,8,3159,3167],[660,17,13,3167,3180],[661,13,7,3180,3187],[662,7,5,3187,3192],[663,5,5,3192,3197],[664,3,3,3197,3200],[665,6,6,3200,3206],[666,5,4,3206,3210],[667,14,9,3210,3219],[668,2,2,3219,3221],[669,4,3,3221,3224],[670,6,4,3224,3228]]],[21,12,11,3228,3239,[[673,2,2,3228,3230],[674,6,5,3230,3235],[675,1,1,3235,3236],[676,1,1,3236,3237],[677,1,1,3237,3238],[678,1,1,3238,3239]]],[22,251,200,3239,3439,[[679,4,3,3239,3242],[680,11,6,3242,3248],[681,2,1,3248,3249],[682,3,2,3249,3251],[683,2,2,3251,3253],[684,1,1,3253,3254],[685,7,5,3254,3259],[686,5,3,3259,3262],[687,8,5,3262,3267],[688,4,4,3267,3271],[689,1,1,3271,3272],[690,1,1,3272,3273],[691,5,3,3273,3276],[692,10,7,3276,3283],[693,3,2,3283,3285],[694,2,2,3285,3287],[696,2,2,3287,3289],[697,5,5,3289,3294],[699,4,4,3294,3298],[700,6,3,3298,3301],[701,3,2,3301,3303],[702,3,3,3303,3306],[703,5,3,3306,3309],[704,3,3,3309,3312],[705,2,1,3312,3313],[706,3,3,3313,3316],[707,5,4,3316,3320],[708,5,4,3320,3324],[709,1,1,3324,3325],[710,2,2,3325,3327],[711,1,1,3327,3328],[712,6,4,3328,3332],[714,3,3,3332,3335],[715,7,7,3335,3342],[716,5,5,3342,3347],[717,5,3,3347,3350],[718,8,6,3350,3356],[719,2,2,3356,3358],[720,2,2,3358,3360],[721,3,3,3360,3363],[722,6,5,3363,3368],[723,9,8,3368,3376],[724,2,2,3376,3378],[726,2,2,3378,3380],[727,5,4,3380,3384],[728,2,2,3384,3386],[729,5,4,3386,3390],[730,3,2,3390,3392],[731,2,1,3392,3393],[732,5,4,3393,3397],[733,2,2,3397,3399],[734,8,6,3399,3405],[735,2,2,3405,3407],[736,2,2,3407,3409],[737,2,2,3409,3411],[738,5,5,3411,3416],[739,3,3,3416,3419],[740,1,1,3419,3420],[741,4,3,3420,3423],[742,6,4,3423,3427],[743,5,5,3427,3432],[744,10,7,3432,3439]]],[23,476,347,3439,3786,[[745,9,6,3439,3445],[746,8,7,3445,3452],[747,8,6,3452,3458],[748,7,6,3458,3464],[749,3,3,3464,3467],[750,5,3,3467,3470],[751,8,7,3470,3477],[752,7,5,3477,3482],[753,8,4,3482,3486],[754,8,6,3486,3492],[755,3,3,3492,3495],[756,7,6,3495,3501],[757,9,6,3501,3507],[758,1,1,3507,3508],[759,5,3,3508,3511],[760,6,4,3511,3515],[761,9,7,3515,3522],[762,3,3,3522,3525],[763,8,5,3525,3530],[764,12,6,3530,3536],[765,2,2,3536,3538],[766,3,2,3538,3540],[767,6,6,3540,3546],[768,3,2,3546,3548],[769,30,18,3548,3566],[770,20,14,3566,3580],[771,5,5,3580,3585],[772,9,8,3585,3593],[773,14,11,3593,3604],[774,10,6,3604,3610],[775,10,8,3610,3618],[776,14,10,3618,3628],[777,9,5,3628,3633],[778,11,7,3633,3640],[779,12,8,3640,3648],[780,26,21,3648,3669],[781,2,2,3669,3671],[782,7,6,3671,3677],[783,6,5,3677,3682],[784,10,8,3682,3690],[785,12,8,3690,3698],[786,10,8,3698,3706],[787,10,5,3706,3711],[788,22,14,3711,3725],[789,3,2,3725,3727],[790,1,1,3727,3728],[791,3,2,3728,3730],[792,11,7,3730,3737],[793,9,7,3737,3744],[794,15,12,3744,3756],[795,20,15,3756,3771],[796,17,15,3771,3786]]],[24,36,31,3786,3817,[[797,16,14,3786,3800],[798,8,7,3800,3807],[799,10,8,3807,3815],[800,2,2,3815,3817]]],[25,330,236,3817,4053,[[804,2,2,3817,3819],[806,8,6,3819,3825],[807,9,5,3825,3830],[808,11,8,3830,3838],[809,2,1,3838,3839],[810,4,4,3839,3843],[811,1,1,3843,3844],[812,5,3,3844,3847],[813,10,8,3847,3855],[814,2,1,3855,3856],[815,5,5,3856,3861],[816,2,2,3861,3863],[817,24,17,3863,3880],[818,8,5,3880,3885],[819,13,11,3885,3896],[821,15,9,3896,3905],[822,10,7,3905,3912],[823,4,4,3912,3916],[824,12,7,3916,3923],[825,2,2,3923,3925],[826,2,2,3925,3927],[827,3,3,3927,3930],[828,13,10,3930,3940],[829,5,5,3940,3945],[830,8,6,3945,3951],[831,2,2,3951,3953],[832,19,11,3953,3964],[833,24,16,3964,3980],[834,3,3,3980,3983],[835,8,6,3983,3989],[836,5,4,3989,3993],[837,10,7,3993,4000],[838,6,5,4000,4005],[839,16,11,4005,4016],[840,12,10,4016,4026],[841,2,1,4026,4027],[842,2,2,4027,4029],[843,1,1,4029,4030],[844,8,2,4030,4032],[845,20,11,4032,4043],[846,5,5,4043,4048],[848,4,2,4048,4050],[849,3,3,4050,4053]]],[26,30,22,4053,4075,[[850,9,5,4053,4058],[857,2,2,4058,4060],[858,9,7,4060,4067],[860,7,5,4067,4072],[861,3,3,4072,4075]]],[27,22,19,4075,4094,[[863,2,1,4075,4076],[865,1,1,4076,4077],[866,1,1,4077,4078],[868,6,5,4078,4083],[870,5,4,4083,4087],[871,1,1,4087,4088],[873,2,2,4088,4090],[874,3,3,4090,4093],[875,1,1,4093,4094]]],[28,16,16,4094,4110,[[876,5,5,4094,4099],[877,5,5,4099,4104],[878,6,6,4104,4110]]],[29,25,18,4110,4128,[[880,2,2,4110,4112],[881,3,2,4112,4114],[882,2,1,4114,4115],[883,3,2,4115,4117],[885,1,1,4117,4118],[886,7,4,4118,4122],[887,7,6,4122,4128]]],[30,3,3,4128,4131,[[888,3,3,4128,4131]]],[31,1,1,4131,4132,[[890,1,1,4131,4132]]],[32,16,14,4132,4146,[[893,5,3,4132,4135],[894,1,1,4135,4136],[895,2,2,4136,4138],[896,2,2,4138,4140],[897,2,2,4140,4142],[898,1,1,4142,4143],[899,3,3,4143,4146]]],[33,12,10,4146,4156,[[900,3,3,4146,4149],[901,3,2,4149,4151],[902,6,5,4151,4156]]],[34,11,9,4156,4165,[[903,3,3,4156,4159],[904,8,6,4159,4165]]],[35,23,17,4165,4182,[[906,8,6,4165,4171],[907,5,4,4171,4175],[908,10,7,4175,4182]]],[36,10,9,4182,4191,[[909,3,3,4182,4185],[910,7,6,4185,4191]]],[37,42,35,4191,4226,[[911,1,1,4191,4192],[912,1,1,4192,4193],[914,3,3,4193,4196],[915,4,2,4196,4198],[916,1,1,4198,4199],[917,2,2,4199,4201],[918,4,4,4201,4205],[919,1,1,4205,4206],[920,2,2,4206,4208],[921,1,1,4208,4209],[922,9,6,4209,4215],[923,1,1,4215,4216],[924,12,10,4216,4226]]],[38,10,9,4226,4235,[[925,1,1,4226,4227],[926,3,3,4227,4230],[927,3,3,4230,4233],[928,3,2,4233,4235]]]],[20,24,25,27,28,29,30,31,32,33,35,36,39,41,43,46,49,50,56,69,72,75,93,94,100,101,110,113,116,119,122,125,128,132,136,139,142,149,150,154,156,157,158,159,160,161,162,163,164,167,170,173,174,175,178,180,181,182,184,192,200,202,203,204,205,207,208,210,215,216,217,220,221,222,224,234,255,263,267,270,272,274,275,301,303,318,319,327,328,329,333,339,343,347,352,356,359,370,393,405,407,409,420,424,442,449,450,452,461,469,474,482,485,488,502,503,508,511,513,519,525,535,565,581,588,589,592,593,601,611,627,657,662,663,676,683,695,696,703,707,760,764,787,788,795,798,803,808,817,862,863,865,870,871,874,879,881,885,889,891,894,907,910,916,938,947,968,971,973,995,999,1002,1003,1004,1005,1009,1013,1015,1017,1046,1086,1087,1118,1152,1153,1154,1155,1157,1171,1172,1189,1192,1203,1214,1224,1225,1230,1232,1234,1235,1236,1238,1239,1241,1243,1246,1249,1250,1251,1252,1258,1263,1281,1288,1299,1324,1356,1359,1366,1367,1368,1369,1371,1373,1378,1380,1384,1385,1387,1392,1393,1401,1408,1411,1412,1413,1418,1420,1421,1432,1433,1434,1435,1437,1440,1467,1501,1513,1514,1520,1521,1537,1538,1546,1554,1599,1620,1622,1629,1630,1631,1644,1684,1687,1704,1705,1706,1709,1712,1714,1726,1727,1734,1746,1748,1751,1753,1756,1758,1761,1764,1766,1767,1782,1783,1789,1790,1791,1792,1796,1799,1800,1811,1812,1813,1814,1816,1819,1822,1828,1831,1832,1835,1836,1837,1845,1846,1849,1857,1858,1859,1860,1863,1864,1866,1869,1874,1879,1880,1882,1893,1896,1898,1906,1909,1910,1912,1917,1935,1940,1946,1948,1949,1950,1953,1956,1957,1969,1970,1984,2000,2007,2008,2010,2011,2013,2020,2021,2022,2023,2024,2025,2031,2033,2034,2037,2038,2042,2044,2052,2055,2060,2061,2062,2068,2069,2075,2107,2122,2123,2132,2135,2157,2161,2166,2171,2180,2181,2184,2185,2197,2204,2217,2231,2234,2237,2252,2275,2289,2291,2296,2331,2348,2349,2354,2360,2371,2373,2395,2396,2409,2410,2411,2423,2425,2426,2427,2428,2429,2431,2434,2435,2441,2451,2464,2480,2481,2483,2489,2492,2499,2506,2515,2516,2519,2526,2527,2528,2532,2533,2534,2535,2536,2541,2544,2547,2551,2552,2553,2554,2555,2556,2557,2560,2562,2564,2566,2567,2568,2569,2570,2573,2574,2575,2588,2626,2628,2636,2649,2650,2653,2655,2657,2659,2663,2664,2696,2697,2700,2701,2703,2704,2706,2707,2716,2717,2723,2743,2745,2754,2758,2764,2773,2775,2778,2781,2787,2792,2794,2795,2797,2802,2803,2806,2807,2808,2813,2814,2817,2821,2825,2826,2829,2830,2832,2833,2834,2847,2852,2854,2856,2858,2864,2867,2872,2876,2878,2879,2882,2885,2888,2889,2893,2898,2900,2902,2903,2904,2905,2906,2920,2927,2928,2933,2938,2942,2944,2953,2958,2976,2977,2980,2983,2988,2999,3000,3006,3007,3009,3012,3017,3018,3020,3021,3022,3023,3024,3028,3029,3030,3031,3032,3034,3038,3039,3040,3041,3043,3048,3064,3065,3098,3100,3101,3103,3104,3105,3109,3110,3111,3119,3120,3147,3156,3157,3165,3172,3177,3178,3179,3180,3184,3185,3187,3188,3189,3190,3192,3193,3194,3195,3203,3217,3218,3222,3223,3230,3231,3234,3235,3237,3245,3247,3249,3250,3257,3274,3275,3277,3278,3280,3283,3304,3305,3318,3323,3334,3340,3341,3343,3356,3363,3366,3369,3372,3373,3374,3379,3382,3387,3389,3390,3394,3405,3409,3410,3416,3423,3427,3430,3431,3432,3433,3437,3438,3440,3444,3460,3462,3463,3476,3478,3479,3493,3538,3539,3558,3559,3579,3581,3595,3598,3599,3600,3602,3606,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3650,3654,3658,3667,3674,3682,3689,3690,3692,3699,3700,3704,3705,3707,3714,3718,3720,3723,3726,3728,3731,3732,3733,3734,3735,3737,3746,3752,3753,3755,3757,3758,3759,3766,3769,3770,3773,3774,3775,3776,3778,3780,3782,3784,3786,3789,3790,3794,3798,3801,3822,3826,3827,3828,3829,3831,3851,3935,3936,3937,3938,3946,3948,3955,3956,3957,3959,3968,3970,3977,3983,3991,4013,4030,4035,4036,4037,4038,4046,4053,4056,4062,4066,4077,4078,4101,4107,4109,4110,4113,4115,4118,4119,4129,4130,4131,4137,4143,4144,4147,4166,4175,4176,4177,4178,4179,4186,4188,4189,4192,4193,4197,4199,4200,4204,4205,4210,4213,4216,4220,4222,4223,4224,4225,4226,4227,4228,4235,4246,4250,4253,4256,4257,4260,4261,4264,4265,4266,4267,4268,4269,4270,4271,4272,4276,4278,4285,4286,4288,4300,4302,4303,4304,4305,4307,4311,4312,4325,4333,4338,4340,4348,4363,4365,4366,4373,4374,4375,4377,4379,4392,4422,4429,4442,4463,4475,4477,4491,4532,4551,4556,4570,4573,4574,4575,4576,4595,4602,4603,4609,4615,4620,4643,4648,4650,4652,4653,4657,4659,4660,4661,4662,4668,4671,4673,4674,4675,4677,4679,4681,4682,4683,4684,4687,4691,4694,4699,4715,4716,4731,4733,4739,4744,4745,4747,4763,4764,4812,4848,4852,4860,4867,4868,4874,4875,4887,4893,4895,4899,4910,4911,4914,4922,4923,4933,4945,4952,4954,4963,4970,4971,4972,4974,4975,4976,4977,4978,4979,4980,4981,4982,4985,4988,4989,4993,4996,5007,5008,5010,5011,5012,5013,5014,5019,5020,5021,5022,5023,5027,5029,5033,5034,5038,5044,5053,5054,5056,5061,5066,5067,5074,5075,5076,5079,5080,5081,5082,5084,5086,5088,5091,5097,5105,5108,5110,5111,5117,5118,5125,5126,5127,5129,5130,5138,5139,5140,5146,5150,5167,5175,5198,5200,5201,5209,5211,5214,5215,5216,5221,5230,5231,5232,5233,5240,5241,5242,5245,5247,5248,5250,5251,5253,5254,5255,5257,5258,5259,5260,5261,5268,5271,5272,5275,5281,5283,5287,5288,5290,5292,5293,5296,5299,5300,5301,5304,5309,5310,5311,5312,5313,5316,5318,5319,5321,5324,5329,5337,5338,5340,5345,5346,5357,5358,5360,5363,5365,5367,5371,5374,5377,5378,5383,5385,5389,5390,5391,5396,5400,5402,5409,5414,5415,5421,5438,5440,5441,5442,5443,5445,5452,5453,5464,5468,5473,5475,5476,5489,5499,5506,5509,5518,5519,5520,5530,5533,5544,5563,5565,5566,5568,5577,5578,5579,5580,5582,5584,5585,5586,5588,5593,5594,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5619,5621,5623,5625,5626,5631,5636,5637,5640,5643,5644,5648,5651,5653,5656,5658,5659,5663,5666,5668,5669,5671,5672,5675,5681,5688,5689,5699,5700,5702,5703,5706,5708,5709,5710,5711,5714,5715,5716,5717,5718,5729,5733,5735,5737,5739,5740,5741,5746,5756,5758,5762,5785,5802,5803,5804,5813,5822,5840,5841,5850,5851,5853,5854,5855,5856,5858,5859,5860,5865,5867,5868,5869,5872,5878,5882,5887,5888,5891,5892,5893,5894,5900,5904,5906,5908,5910,5911,5920,5921,5924,5928,5934,5935,5938,5939,5940,5942,5952,5954,5966,5968,5970,5971,5972,5973,5974,5976,5979,5985,5991,5999,6000,6001,6003,6005,6006,6007,6013,6015,6016,6017,6018,6023,6026,6027,6028,6035,6036,6037,6038,6042,6046,6047,6048,6055,6056,6058,6061,6066,6069,6070,6071,6073,6079,6085,6088,6089,6092,6093,6094,6095,6096,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6111,6112,6113,6114,6117,6118,6119,6121,6122,6123,6124,6125,6126,6128,6130,6131,6135,6154,6156,6158,6159,6160,6163,6164,6165,6166,6170,6171,6175,6179,6184,6234,6248,6274,6291,6294,6329,6381,6400,6407,6414,6420,6421,6422,6423,6424,6425,6426,6428,6431,6438,6440,6442,6444,6446,6461,6462,6463,6464,6466,6474,6475,6477,6478,6479,6493,6494,6503,6507,6534,6549,6552,6555,6560,6563,6569,6571,6587,6597,6612,6614,6615,6654,6663,6667,6685,6687,6689,6691,6693,6694,6695,6698,6699,6700,6701,6702,6706,6708,6710,6712,6715,6716,6717,6718,6729,6731,6746,6753,6754,6755,6756,6757,6760,6768,6779,6788,6798,6799,6800,6801,6802,6803,6805,6811,6819,6826,6829,6837,6840,6849,6850,6851,6853,6855,6873,6888,6891,6897,6898,6907,6912,6951,6965,6966,6967,6976,6979,6980,7003,7024,7043,7044,7049,7053,7054,7055,7056,7060,7061,7062,7064,7065,7066,7070,7071,7079,7080,7087,7088,7089,7091,7098,7100,7102,7107,7113,7115,7146,7160,7170,7177,7178,7183,7188,7197,7199,7201,7216,7223,7233,7240,7253,7254,7262,7263,7268,7269,7272,7273,7275,7276,7287,7288,7293,7294,7295,7296,7298,7302,7305,7310,7324,7327,7330,7335,7349,7354,7355,7357,7365,7367,7368,7373,7374,7376,7377,7379,7389,7390,7393,7397,7410,7411,7412,7427,7429,7436,7437,7438,7441,7442,7443,7446,7447,7448,7449,7452,7455,7460,7461,7467,7478,7479,7480,7484,7488,7489,7492,7504,7505,7507,7515,7523,7528,7530,7532,7533,7542,7544,7546,7547,7548,7555,7560,7563,7566,7568,7569,7571,7629,7637,7642,7664,7665,7681,7682,7690,7692,7698,7705,7706,7707,7711,7713,7724,7730,7736,7761,7788,7789,7791,7793,7794,7795,7798,7801,7802,7803,7809,7818,7824,7830,7833,7841,7862,7867,7868,7870,7873,7876,7877,7878,7882,7883,7891,7917,7929,7931,7941,7944,7945,7946,7962,7968,7984,7994,7996,7997,7998,8000,8009,8015,8021,8031,8033,8058,8072,8077,8078,8079,8081,8093,8099,8100,8102,8104,8106,8110,8112,8113,8115,8116,8117,8118,8121,8127,8129,8133,8135,8137,8140,8149,8158,8159,8162,8168,8169,8171,8172,8176,8178,8181,8183,8187,8189,8191,8197,8201,8202,8213,8215,8218,8220,8223,8224,8234,8236,8238,8239,8247,8249,8257,8259,8260,8268,8277,8281,8289,8298,8302,8315,8317,8326,8338,8340,8342,8344,8346,8347,8348,8349,8350,8353,8354,8363,8375,8376,8381,8391,8393,8395,8399,8400,8403,8404,8405,8406,8407,8411,8412,8413,8419,8424,8425,8430,8432,8434,8437,8440,8441,8444,8447,8448,8449,8451,8452,8453,8459,8460,8461,8462,8463,8465,8471,8473,8482,8483,8486,8491,8495,8509,8510,8513,8516,8517,8518,8519,8520,8522,8524,8525,8531,8539,8541,8549,8550,8551,8552,8553,8556,8561,8566,8567,8568,8569,8576,8577,8585,8594,8603,8625,8633,8658,8659,8692,8694,8699,8700,8715,8720,8726,8736,8737,8742,8746,8756,8757,8758,8766,8772,8773,8774,8785,8796,8814,8829,8831,8844,8845,8851,8854,8855,8856,8865,8868,8869,8871,8874,8875,8878,8879,8884,8886,8888,8891,8903,8906,8908,8914,8918,8925,8934,8935,8939,8943,8948,8959,8967,8971,8974,8979,8981,8982,8985,8986,8987,8988,8989,8990,8999,9001,9007,9008,9022,9023,9024,9025,9028,9033,9035,9037,9038,9039,9040,9041,9043,9045,9047,9048,9050,9051,9052,9054,9055,9058,9059,9060,9062,9070,9071,9081,9082,9083,9092,9094,9099,9100,9102,9103,9108,9116,9121,9123,9124,9133,9136,9140,9142,9144,9145,9146,9147,9149,9150,9152,9154,9158,9163,9167,9169,9171,9172,9174,9195,9216,9226,9227,9231,9236,9239,9240,9241,9242,9244,9247,9248,9252,9254,9255,9256,9261,9263,9265,9267,9269,9271,9272,9276,9278,9280,9281,9282,9290,9294,9295,9296,9297,9299,9300,9308,9309,9313,9316,9346,9360,9361,9362,9365,9371,9377,9380,9388,9405,9409,9412,9414,9415,9416,9417,9418,9421,9423,9436,9477,9490,9492,9497,9499,9502,9503,9508,9519,9523,9533,9582,9595,9597,9601,9605,9606,9607,9616,9659,9662,9698,9720,9722,9731,9733,9736,9746,9748,9750,9761,9763,9764,9770,9798,9802,9804,9810,9811,9812,9814,9815,9823,9824,9825,9826,9827,9830,9836,9838,9843,9847,9848,9849,9852,9854,9855,9859,9862,9863,9868,9869,9874,9879,9882,9883,9893,9899,9910,9917,9920,9924,9928,9931,9941,9943,9945,9946,9951,9954,9956,9959,9967,9973,9974,9978,9979,9988,9992,9993,9994,9996,9999,10003,10005,10006,10020,10022,10027,10029,10031,10036,10037,10039,10045,10059,10065,10072,10076,10080,10085,10096,10111,10113,10115,10118,10122,10124,10126,10127,10130,10131,10133,10136,10140,10143,10147,10158,10161,10162,10165,10166,10167,10168,10169,10170,10173,10184,10185,10186,10187,10189,10190,10191,10193,10197,10202,10205,10207,10209,10211,10215,10216,10218,10221,10223,10226,10227,10231,10232,10236,10238,10239,10245,10248,10251,10252,10275,10285,10310,10312,10329,10370,10412,10418,10438,10444,10445,10448,10502,10503,10514,10538,10540,10543,10546,10575,10613,10615,10616,10624,10637,10644,10665,10666,10670,10671,10674,10676,10677,10679,10683,10735,10741,10752,10753,10757,10758,10761,10762,10764,10765,10766,10768,10774,10782,10791,10794,10818,10819,10823,10829,10834,10843,10844,10845,10846,10850,10852,10856,10860,10863,10865,10869,10871,10873,10878,10882,10883,10894,10896,10899,10900,10901,10903,10904,10915,10917,10924,10929,10937,10938,10939,10946,10957,10969,10973,10979,10981,10985,11009,11011,11012,11014,11051,11052,11053,11085,11088,11103,11105,11107,11109,11110,11112,11140,11144,11147,11148,11151,11152,11155,11156,11157,11162,11163,11164,11165,11166,11167,11169,11174,11175,11176,11178,11179,11180,11181,11183,11184,11185,11187,11188,11189,11190,11194,11196,11197,11211,11216,11225,11227,11228,11250,11262,11264,11265,11269,11270,11271,11272,11273,11274,11279,11280,11285,11287,11294,11295,11296,11310,11311,11312,11313,11315,11320,11327,11328,11329,11330,11332,11335,11340,11341,11344,11345,11346,11350,11352,11353,11361,11362,11365,11366,11376,11378,11383,11384,11386,11387,11390,11392,11394,11396,11398,11402,11407,11411,11417,11426,11427,11430,11435,11437,11438,11446,11450,11452,11457,11462,11468,11480,11483,11489,11492,11495,11496,11498,11499,11502,11503,11505,11507,11513,11515,11518,11525,11528,11532,11533,11542,11549,11551,11553,11558,11560,11563,11569,11581,11586,11587,11590,11591,11593,11600,11602,11605,11614,11616,11626,11628,11631,11633,11638,11641,11642,11645,11653,11654,11658,11659,11661,11662,11664,11666,11669,11672,11673,11675,11676,11677,11679,11682,11684,11687,11691,11700,11709,11711,11716,11728,11733,11736,11744,11746,11752,11757,11762,11768,11770,11778,11779,11787,11788,11789,11790,11793,11807,11809,11810,11815,11819,11820,11822,11823,11825,11827,11828,11829,11831,11832,11833,11841,11844,11849,11850,11852,11855,11859,11870,11872,11873,11874,11875,11879,11880,11882,11884,11888,11889,11890,11896,11897,11898,11902,11903,11905,11906,11908,11911,11913,11915,11916,11922,11923,11927,11930,11933,11940,11942,11945,11946,11949,11954,11957,11958,11961,11962,11963,11964,11965,11966,11969,11973,11979,11982,11984,11986,11990,11991,12007,12010,12011,12012,12014,12015,12016,12017,12018,12019,12020,12021,12022,12027,12069,12085,12091,12097,12102,12105,12108,12115,12171,12172,12179,12201,12221,12222,12223,12226,12235,12236,12241,12250,12255,12257,12259,12260,12261,12264,12266,12268,12269,12296,12365,12367,12371,12374,12375,12395,12398,12400,12401,12410,12417,12480,12486,12493,12494,12495,12496,12498,12499,12502,12504,12505,12506,12508,12510,12513,12516,12517,12521,12536,12543,12544,12549,12577,12578,12580,12582,12584,12586,12590,12594,12606,12608,12612,12651,12671,12674,12677,12679,12683,12686,12687,12689,12691,12697,12698,12701,12705,12707,12710,12715,12718,12719,12720,12722,12724,12727,12735,12737,12739,12741,12742,12748,12749,12753,12755,12759,12760,12761,12763,12765,12769,12773,12775,12778,12779,12790,12792,12793,12803,12806,12822,12826,12828,12829,12830,12834,12836,12837,12838,12839,12854,12855,12858,12860,12861,12862,12863,12864,12868,12869,12872,12874,12879,12880,12881,12891,12895,12901,12902,13041,13042,13079,13137,13138,13154,13157,13180,13195,13223,13240,13245,13267,13270,13316,13348,13352,13378,13388,13460,13484,13491,13493,13507,13514,13525,13528,13580,13592,13600,13651,13661,13663,13679,13696,13698,13702,13704,13710,13755,13761,13772,13776,13781,13793,13800,13811,13842,13875,13876,13884,13899,13922,13924,13932,13933,13937,13942,13957,13964,13978,13984,13991,13992,13993,13995,13996,14006,14013,14018,14019,14021,14022,14035,14038,14045,14046,14069,14083,14084,14095,14140,14148,14172,14185,14186,14187,14199,14211,14218,14221,14227,14231,14233,14241,14254,14256,14261,14269,14273,14280,14289,14317,14342,14354,14355,14358,14361,14366,14370,14372,14374,14379,14380,14381,14389,14392,14394,14398,14405,14407,14408,14410,14420,14438,14476,14496,14499,14502,14517,14520,14523,14524,14541,14545,14549,14558,14562,14565,14579,14586,14588,14593,14605,14610,14613,14614,14626,14627,14632,14636,14649,14665,14678,14679,14700,14711,14714,14722,14732,14756,14757,14760,14773,14779,14795,14798,14830,14835,14850,14858,14859,14860,14862,14865,14874,14877,14889,14895,14896,14898,14900,14954,14969,14975,14984,14991,14994,15000,15011,15015,15017,15019,15034,15047,15048,15051,15056,15065,15070,15074,15079,15081,15086,15090,15092,15105,15127,15145,15151,15164,15210,15238,15239,15241,15252,15259,15273,15274,15287,15289,15293,15296,15303,15308,15315,15317,15325,15333,15342,15366,15367,15368,15373,15376,15387,15392,15406,15418,15420,15435,15446,15457,15466,15468,15469,15470,15474,15477,15483,15484,15485,15487,15493,15494,15501,15509,15521,15529,15536,15547,15550,15551,15552,15555,15568,15570,15571,15582,15591,15595,15598,15608,15613,15622,15627,15637,15641,15642,15653,15654,15697,15699,15717,15726,15741,15747,15766,15794,15795,15800,15803,15817,15833,15838,15847,15859,15860,15862,15866,15868,15879,15900,15904,15908,15911,15912,15918,15932,15956,15961,15967,15984,15989,15994,15995,15997,15999,16002,16016,16017,16026,16031,16043,16049,16058,16066,16070,16088,16127,16131,16137,16148,16152,16173,16180,16181,16184,16186,16193,16221,16232,16233,16235,16242,16243,16255,16265,16295,16298,16305,16322,16329,16330,16333,16334,16335,16336,16337,16338,16340,16341,16347,16355,16371,16373,16374,16378,16380,16381,16382,16385,16394,16400,16413,16414,16417,16419,16425,16430,16442,16452,16460,16461,16464,16470,16472,16486,16497,16512,16513,16516,16531,16536,16538,16554,16569,16571,16575,16587,16601,16610,16611,16613,16618,16632,16638,16668,16740,16754,16763,16787,16795,16810,16822,16842,16844,16845,16851,16873,16881,16890,16902,16931,16932,16955,16957,16962,16981,16985,16986,16989,17010,17017,17061,17083,17110,17151,17176,17201,17235,17236,17255,17256,17278,17281,17289,17292,17296,17305,17313,17317,17318,17322,17323,17324,17328,17329,17331,17338,17340,17342,17343,17344,17347,17349,17350,17351,17352,17353,17355,17356,17360,17370,17372,17373,17376,17378,17379,17382,17385,17389,17396,17397,17406,17413,17414,17415,17416,17419,17423,17424,17431,17444,17447,17450,17452,17457,17461,17464,17467,17475,17476,17477,17478,17479,17481,17483,17484,17485,17486,17496,17512,17518,17521,17522,17527,17531,17536,17537,17577,17579,17584,17586,17589,17592,17596,17614,17620,17640,17647,17659,17677,17679,17687,17697,17698,17699,17700,17701,17708,17736,17738,17764,17767,17772,17801,17804,17805,17806,17807,17814,17816,17819,17834,17838,17841,17846,17850,17854,17862,17864,17873,17893,17905,17911,17913,17921,17935,17937,17938,17946,17954,17957,17959,17962,17963,17976,17983,18000,18003,18011,18012,18014,18018,18021,18037,18043,18044,18051,18053,18055,18076,18086,18094,18102,18105,18106,18124,18125,18126,18142,18144,18145,18160,18172,18186,18188,18200,18201,18204,18213,18222,18235,18242,18249,18253,18272,18279,18299,18304,18305,18307,18315,18331,18336,18350,18363,18368,18369,18370,18372,18377,18388,18403,18405,18406,18407,18410,18414,18416,18418,18422,18424,18425,18426,18437,18446,18462,18480,18495,18502,18512,18514,18519,18542,18544,18556,18557,18561,18568,18573,18574,18577,18583,18584,18585,18586,18589,18596,18620,18628,18645,18647,18654,18662,18671,18673,18676,18686,18691,18693,18701,18706,18717,18728,18735,18736,18740,18741,18752,18755,18759,18760,18762,18763,18764,18770,18778,18789,18792,18808,18811,18825,18827,18828,18835,18842,18845,18852,18854,18856,18869,18873,18875,18891,18893,18894,18896,18899,18902,18905,18909,18922,18924,18932,18938,18940,18942,18945,18946,18953,18960,18961,18962,18963,18964,18968,18969,18985,18986,18989,18994,18999,19008,19009,19010,19012,19015,19019,19047,19051,19052,19053,19054,19056,19064,19074,19077,19095,19102,19117,19121,19129,19132,19134,19142,19144,19146,19155,19156,19159,19163,19169,19177,19179,19200,19201,19208,19210,19215,19217,19221,19222,19230,19232,19234,19250,19253,19258,19260,19261,19263,19273,19276,19277,19278,19279,19285,19315,19319,19325,19328,19346,19351,19352,19353,19360,19366,19370,19376,19377,19379,19381,19400,19402,19407,19410,19415,19420,19421,19422,19426,19427,19428,19429,19430,19432,19442,19454,19474,19476,19487,19492,19493,19498,19499,19501,19531,19533,19535,19536,19538,19543,19545,19547,19549,19551,19553,19554,19556,19557,19558,19559,19560,19563,19564,19565,19574,19578,19579,19580,19581,19583,19584,19587,19588,19589,19590,19591,19592,19593,19602,19603,19608,19612,19616,19619,19621,19622,19623,19624,19625,19629,19632,19636,19639,19648,19649,19651,19653,19655,19657,19660,19661,19666,19669,19673,19678,19681,19683,19687,19692,19715,19716,19721,19725,19727,19728,19731,19743,19748,19750,19754,19758,19763,19768,19770,19772,19773,19780,19783,19784,19787,19793,19802,19807,19808,19809,19811,19818,19820,19826,19830,19831,19833,19838,19840,19841,19842,19844,19845,19846,19848,19850,19851,19852,19853,19854,19855,19856,19858,19859,19860,19862,19863,19865,19866,19870,19873,19874,19884,19895,19896,19899,19904,19917,19918,19922,19924,19926,19927,19929,19936,19942,19945,19946,19948,19952,19953,19954,19956,19960,19966,19967,19968,19969,19970,19971,19973,19976,19977,19979,19980,19983,19992,19995,19996,19998,19999,20001,20002,20003,20011,20012,20014,20018,20021,20022,20025,20027,20028,20030,20034,20036,20037,20038,20044,20045,20073,20075,20077,20088,20097,20104,20111,20117,20118,20119,20132,20140,20144,20153,20156,20159,20163,20173,20176,20179,20180,20187,20189,20193,20195,20196,20198,20199,20203,20215,20219,20229,20231,20236,20237,20240,20253,20255,20259,20260,20261,20264,20272,20273,20278,20280,20283,20284,20286,20289,20290,20293,20294,20296,20298,20299,20306,20309,20310,20312,20313,20314,20316,20317,20318,20320,20321,20322,20323,20325,20328,20331,20332,20334,20335,20336,20337,20347,20348,20351,20357,20368,20388,20400,20405,20414,20415,20416,20421,20432,20509,20512,20550,20555,20556,20557,20558,20560,20569,20572,20574,20576,20577,20580,20585,20589,20590,20591,20593,20594,20595,20614,20626,20628,20630,20633,20645,20670,20673,20680,20690,20694,20696,20699,20702,20703,20704,20708,20726,20736,20737,20742,20753,20754,20756,20757,20777,20784,20785,20786,20787,20792,20793,20795,20798,20799,20805,20806,20809,20813,20816,20819,20825,20834,20843,20846,20848,20849,20853,20860,20862,20863,20868,20870,20871,20873,20877,20879,20880,20901,20910,20921,20923,20926,20935,20938,20942,20943,20948,20949,20951,20954,20956,20959,20968,20978,20980,20994,20995,21013,21014,21019,21022,21030,21036,21055,21060,21080,21089,21091,21111,21116,21117,21126,21130,21133,21139,21142,21143,21148,21150,21155,21156,21170,21175,21176,21181,21183,21185,21187,21188,21189,21190,21201,21209,21212,21234,21235,21236,21238,21239,21242,21243,21244,21245,21246,21248,21252,21256,21260,21261,21263,21264,21268,21270,21271,21272,21273,21274,21277,21278,21279,21280,21293,21296,21309,21318,21319,21321,21325,21326,21334,21352,21356,21358,21359,21364,21369,21383,21384,21388,21392,21393,21408,21413,21419,21420,21421,21429,21430,21431,21432,21433,21434,21436,21438,21440,21445,21446,21452,21459,21461,21465,21466,21468,21469,21471,21473,21474,21481,21543,21545,21563,21583,21584,21604,21605,21606,21608,21612,21613,21620,21623,21628,21629,21630,21631,21636,21646,21647,21652,21688,21691,21715,21721,21722,21741,21752,21754,21756,21757,21965,21966,21994,21995,21999,22000,22001,22002,22004,22038,22053,22072,22073,22079,22082,22088,22091,22116,22136,22154,22180,22182,22184,22185,22188,22209,22212,22216,22223,22239,22253,22260,22268,22276,22281,22284,22293,22296,22303,22305,22310,22312,22317,22323,22339,22343,22345,22347,22352,22354,22355,22361,22382,22387,22396,22397,22416,22439,22440,22474,22484,22488,22489,22491,22496,22500,22504,22505,22507,22508,22517,22525,22526,22551,22581,22584,22586,22607,22615,22617,22625,22633,22642,22644,22664,22666,22680,22683,22688,22689,22699,22708,22709,22713,22719,22722,22724,22731,22740,22741,22746,22753,22754,22756,22765,22767,22768,22789,22791,22795,22796,22798,22805,22808,22816,22819,22820,22827,22828,22829,22831,22834,22839,22840,22851,22852,22854,22859,22862,22867,22868,22869,22872,22889,22912,22924,22932,22936,22939,22942,22952,22967,22976,22986,22988,22993,22999,23000,23020,23027,23038,23047,23048,23049,23051,23054,23059,23067,23070,23073,23077,23078,23080,23082,23083,23084,23087,23089,23100,23112,23113,23120,23129,23130,23132,23139,23142]]],["+",[490,461,[[0,44,37,0,37,[[1,4,4,0,4],[2,4,2,4,6],[5,8,5,6,11],[6,4,4,11,15],[7,4,3,15,18],[8,1,1,18,19],[10,1,1,19,20],[13,2,2,20,22],[16,1,1,22,23],[18,1,1,23,24],[26,1,1,24,25],[30,2,2,25,27],[31,2,1,27,28],[33,1,1,28,29],[36,2,2,29,31],[38,2,2,31,33],[39,1,1,33,34],[42,1,1,34,35],[43,1,1,35,36],[47,1,1,36,37]]],[1,11,11,37,48,[[58,1,1,37,38],[61,3,3,38,41],[64,1,1,41,42],[67,3,3,42,45],[68,1,1,45,46],[70,1,1,46,47],[82,1,1,47,48]]],[2,62,55,48,103,[[91,2,1,48,49],[92,1,1,49,50],[93,3,3,50,53],[94,2,2,53,55],[95,5,5,55,60],[96,3,3,60,63],[100,11,8,63,71],[101,1,1,71,72],[103,1,1,72,73],[104,3,3,73,76],[105,3,3,76,79],[106,2,2,79,81],[107,3,2,81,83],[110,1,1,83,84],[111,7,6,84,90],[112,8,8,90,98],[115,2,2,98,100],[116,4,3,100,103]]],[3,23,22,103,125,[[121,1,1,103,104],[122,1,1,104,105],[125,1,1,105,106],[128,1,1,106,107],[132,1,1,107,108],[134,4,3,108,111],[135,2,2,111,113],[137,1,1,113,114],[138,1,1,114,115],[144,3,3,115,118],[145,3,3,118,121],[147,3,3,121,124],[151,1,1,124,125]]],[4,33,30,125,155,[[156,1,1,125,126],[157,1,1,126,127],[158,1,1,127,128],[159,5,4,128,132],[162,1,1,132,133],[163,1,1,133,134],[164,4,4,134,138],[166,6,5,138,143],[170,3,2,143,145],[171,1,1,145,146],[172,1,1,146,147],[175,1,1,147,148],[177,1,1,148,149],[180,3,3,149,152],[181,1,1,152,153],[182,1,1,153,154],[183,1,1,154,155]]],[5,16,14,155,169,[[187,4,4,155,159],[188,2,1,159,160],[190,2,2,160,162],[194,1,1,162,163],[197,3,2,163,165],[207,2,2,165,167],[209,2,2,167,169]]],[6,13,12,169,181,[[212,1,1,169,170],[213,1,1,170,171],[217,1,1,171,172],[218,1,1,172,173],[221,2,2,173,175],[223,2,2,175,177],[226,1,1,177,178],[230,3,2,178,180],[231,1,1,180,181]]],[8,26,26,181,207,[[237,3,3,181,184],[238,2,2,184,186],[244,2,2,186,188],[245,2,2,188,190],[249,3,3,190,193],[253,4,4,193,197],[255,1,1,197,198],[258,1,1,198,199],[259,1,1,199,200],[260,4,4,200,204],[261,1,1,204,205],[263,2,2,205,207]]],[9,20,20,207,227,[[268,1,1,207,208],[269,2,2,208,210],[270,1,1,210,211],[272,1,1,211,212],[273,3,3,212,215],[274,3,3,215,218],[276,2,2,218,220],[278,1,1,220,221],[280,1,1,221,222],[281,1,1,222,223],[284,1,1,223,224],[285,3,3,224,227]]],[10,26,26,227,253,[[291,1,1,227,228],[292,1,1,228,229],[294,4,4,229,233],[295,2,2,233,235],[298,4,4,235,239],[299,1,1,239,240],[300,1,1,240,241],[301,3,3,241,244],[302,1,1,244,245],[304,3,3,245,248],[305,1,1,248,249],[306,3,3,249,252],[310,1,1,252,253]]],[11,12,12,253,265,[[315,1,1,253,254],[317,1,1,254,255],[320,1,1,255,256],[321,1,1,256,257],[322,1,1,257,258],[324,1,1,258,259],[325,1,1,259,260],[326,1,1,260,261],[329,1,1,261,262],[330,1,1,262,263],[333,2,2,263,265]]],[12,13,13,265,278,[[342,1,1,265,266],[344,1,1,266,267],[353,1,1,267,268],[354,2,2,268,270],[355,3,3,270,273],[356,1,1,273,274],[359,1,1,274,275],[365,2,2,275,277],[366,1,1,277,278]]],[13,29,28,278,306,[[368,1,1,278,279],[372,2,2,279,281],[373,1,1,281,282],[375,2,2,282,284],[376,1,1,284,285],[377,4,4,285,289],[378,2,2,289,291],[380,1,1,291,292],[381,2,2,292,294],[384,1,1,294,295],[385,1,1,295,296],[386,1,1,296,297],[387,1,1,297,298],[389,1,1,298,299],[390,1,1,299,300],[397,1,1,300,301],[398,1,1,301,302],[399,1,1,302,303],[400,2,1,303,304],[402,2,2,304,306]]],[14,4,4,306,310,[[403,3,3,306,309],[412,1,1,309,310]]],[15,4,4,310,314,[[416,1,1,310,311],[421,1,1,311,312],[424,1,1,312,313],[425,1,1,313,314]]],[16,10,9,314,323,[[427,4,3,314,317],[428,1,1,317,318],[429,2,2,318,320],[430,1,1,320,321],[431,1,1,321,322],[434,1,1,322,323]]],[17,5,5,323,328,[[436,2,2,323,325],[462,1,1,325,326],[472,1,1,326,327],[477,1,1,327,328]]],[18,38,38,328,366,[[478,1,1,328,329],[484,1,1,329,330],[487,1,1,330,331],[502,2,2,331,333],[508,1,1,333,334],[511,5,5,334,339],[514,1,1,339,340],[516,1,1,340,341],[519,2,2,341,343],[521,1,1,343,344],[526,1,1,344,345],[529,1,1,345,346],[531,1,1,346,347],[533,2,2,347,349],[549,1,1,349,350],[551,1,1,350,351],[553,1,1,351,352],[563,1,1,352,353],[564,1,1,353,354],[565,2,2,354,356],[584,1,1,356,357],[592,1,1,357,358],[596,2,2,358,360],[598,1,1,360,361],[607,1,1,361,362],[612,2,2,362,364],[617,1,1,364,365],[622,1,1,365,366]]],[19,9,9,366,375,[[629,1,1,366,367],[630,1,1,367,368],[631,1,1,368,369],[633,1,1,369,370],[635,1,1,370,371],[639,1,1,371,372],[640,1,1,372,373],[644,1,1,373,374],[648,1,1,374,375]]],[20,13,10,375,385,[[659,1,1,375,376],[660,6,3,376,379],[661,2,2,379,381],[664,1,1,381,382],[666,1,1,382,383],[667,2,2,383,385]]],[21,4,4,385,389,[[673,1,1,385,386],[674,2,2,386,388],[676,1,1,388,389]]],[22,5,4,389,393,[[729,2,1,389,390],[732,1,1,390,391],[735,1,1,391,392],[744,1,1,392,393]]],[23,29,28,393,421,[[745,1,1,393,394],[756,1,1,394,395],[757,2,2,395,397],[760,1,1,397,398],[761,2,2,398,400],[764,2,2,400,402],[766,1,1,402,403],[767,2,2,403,405],[773,2,1,405,406],[775,1,1,406,407],[776,3,3,407,410],[777,2,2,410,412],[779,1,1,412,413],[784,2,2,413,415],[786,1,1,415,416],[787,1,1,416,417],[788,1,1,417,418],[793,2,2,418,420],[795,1,1,420,421]]],[24,2,2,421,423,[[797,1,1,421,422],[799,1,1,422,423]]],[25,23,22,423,445,[[808,1,1,423,424],[810,1,1,424,425],[813,1,1,425,426],[816,1,1,426,427],[817,1,1,427,428],[819,3,3,428,431],[829,1,1,431,432],[832,1,1,432,433],[834,1,1,433,434],[835,1,1,434,435],[837,5,4,435,439],[838,1,1,439,440],[844,1,1,440,441],[845,2,2,441,443],[848,1,1,443,444],[849,1,1,444,445]]],[26,6,6,445,451,[[850,2,2,445,447],[857,1,1,447,448],[860,2,2,448,450],[861,1,1,450,451]]],[27,2,2,451,453,[[868,1,1,451,452],[873,1,1,452,453]]],[28,1,1,453,454,[[877,1,1,453,454]]],[29,1,1,454,455,[[881,1,1,454,455]]],[32,1,1,455,456,[[899,1,1,455,456]]],[33,1,1,456,457,[[901,1,1,456,457]]],[35,2,2,457,459,[[908,2,2,457,459]]],[37,2,2,459,461,[[918,1,1,459,460],[924,1,1,460,461]]]],[32,33,46,49,56,69,139,142,156,157,158,161,174,175,181,200,203,205,215,272,356,359,409,469,760,889,910,938,999,1086,1087,1171,1172,1189,1299,1356,1467,1746,1836,1859,1864,1946,2010,2020,2024,2031,2107,2489,2773,2795,2797,2808,2817,2834,2847,2852,2854,2856,2876,2879,2893,2902,2905,2999,3006,3007,3009,3018,3029,3030,3031,3048,3120,3177,3179,3194,3218,3231,3235,3247,3249,3277,3280,3366,3372,3379,3382,3389,3390,3394,3405,3409,3410,3423,3427,3430,3437,3438,3558,3559,3598,3599,3602,3798,3827,3983,4062,4220,4270,4285,4286,4305,4311,4363,4392,4595,4602,4603,4609,4620,4643,4679,4694,4699,4867,5044,5082,5110,5117,5118,5125,5126,5201,5209,5245,5250,5259,5272,5292,5299,5300,5313,5316,5389,5390,5415,5443,5509,5566,5625,5640,5644,5700,5711,5741,5858,5860,5867,5869,5888,5920,5934,6037,6122,6128,6425,6426,6461,6474,6560,6569,6698,6729,6849,6853,6897,6898,6965,7070,7088,7107,7268,7272,7275,7293,7295,7393,7412,7437,7441,7532,7547,7555,7681,7682,7705,7706,7761,7833,7841,7876,7882,7883,7891,7929,7944,7946,8079,8116,8117,8129,8178,8181,8189,8191,8215,8220,8223,8249,8257,8289,8375,8404,8491,8518,8524,8549,8746,8773,8868,8874,8875,8878,8879,8891,9001,9023,9038,9041,9054,9102,9140,9144,9147,9158,9227,9239,9240,9254,9308,9313,9316,9409,9597,9659,9746,9761,9812,9855,9882,9920,10020,10031,10126,10130,10438,10540,10823,10869,10871,10896,10901,10903,10917,10973,11147,11148,11167,11216,11287,11313,11340,11386,11392,11402,11427,11430,11435,11437,11450,11452,11480,11498,11503,11549,11586,11591,11631,11658,11682,11855,11890,11915,11942,12014,12016,12019,12020,12022,12260,12371,12513,12651,12701,12735,12737,12741,12755,12773,12775,12792,12803,12855,12872,12874,13491,13781,13932,13942,13996,14046,14254,14273,14342,14392,14394,14405,14407,14410,14476,14520,14558,14565,14586,14665,14711,14732,14756,14757,15015,15070,15086,15287,15303,15317,15325,15726,15833,15997,15999,16088,16148,16180,16181,16265,16333,16452,16486,16513,16554,16632,16740,16754,16881,16985,17324,17340,17342,17343,17372,17373,17419,17461,17483,17485,17577,17584,17592,17620,18691,18740,18778,18942,18953,19261,19273,19276,19351,19366,19381,19429,19430,19476,19487,19492,19649,19727,19748,19768,19770,19783,19793,19842,19946,19953,19979,20002,20027,20132,20159,20255,20312,20405,20591,20633,20708,20756,20816,20870,20877,20879,21181,21235,21296,21325,21383,21384,21388,21392,21420,21583,21608,21629,21688,21721,21741,21756,21965,22038,22073,22091,22185,22253,22343,22397,22680,22708,22827,22831,22999,23084]]],["All",[154,153,[[0,5,5,0,5,[[6,1,1,0,1],[13,1,1,1,2],[24,1,1,2,3],[45,1,1,3,4],[48,1,1,4,5]]],[1,10,10,5,15,[[61,1,1,5,6],[68,1,1,6,7],[73,2,2,7,9],[76,2,2,9,11],[83,2,2,11,13],[87,2,2,13,15]]],[2,4,4,15,19,[[95,2,2,15,17],[100,1,1,17,18],[102,1,1,18,19]]],[3,16,16,19,35,[[118,4,4,19,23],[119,1,1,23,24],[120,1,1,24,25],[122,4,4,25,29],[123,1,1,29,30],[131,1,1,30,31],[134,2,2,31,33],[139,1,1,33,34],[142,1,1,34,35]]],[4,5,5,35,40,[[155,2,2,35,37],[160,1,1,37,38],[167,1,1,38,39],[180,1,1,39,40]]],[5,8,8,40,48,[[187,1,1,40,41],[191,1,1,41,42],[199,2,2,42,44],[207,4,4,44,48]]],[7,1,1,48,49,[[234,1,1,48,49]]],[8,1,1,49,50,[[266,1,1,49,50]]],[9,1,1,50,51,[[290,1,1,50,51]]],[10,2,2,51,53,[[297,1,1,51,52],[310,1,1,52,53]]],[11,2,2,53,55,[[324,1,1,53,54],[332,1,1,54,55]]],[12,19,19,55,74,[[338,2,2,55,57],[339,2,2,57,59],[342,1,1,59,60],[343,1,1,60,61],[344,3,3,61,64],[345,2,2,64,66],[346,2,2,66,68],[349,1,1,68,69],[362,2,2,69,71],[363,1,1,71,72],[364,1,1,72,73],[365,1,1,73,74]]],[13,2,2,74,76,[[400,1,1,74,75],[402,1,1,75,76]]],[14,4,3,76,79,[[403,2,1,76,77],[404,1,1,77,78],[412,1,1,78,79]]],[15,3,3,79,82,[[419,1,1,79,80],[423,2,2,80,82]]],[16,1,1,82,83,[[429,1,1,82,83]]],[17,4,4,83,87,[[454,1,1,83,84],[455,1,1,84,85],[462,1,1,85,86],[469,1,1,86,87]]],[18,18,18,87,105,[[485,1,1,87,88],[499,3,3,88,91],[502,1,1,91,92],[512,1,1,92,93],[518,1,1,93,94],[521,1,1,94,95],[522,1,1,95,96],[543,1,1,96,97],[552,1,1,97,98],[563,1,1,98,99],[566,1,1,99,100],[593,1,1,100,101],[595,1,1,101,102],[596,1,1,102,103],[615,1,1,103,104],[622,1,1,104,105]]],[19,4,4,105,109,[[635,1,1,105,106],[642,1,1,106,107],[643,1,1,107,108],[646,1,1,108,109]]],[20,10,10,109,119,[[659,2,2,109,111],[661,1,1,111,112],[663,1,1,112,113],[664,1,1,113,114],[665,2,2,114,116],[666,1,1,116,117],[667,1,1,117,118],[669,1,1,118,119]]],[22,11,11,119,130,[[692,2,2,119,121],[696,1,1,121,122],[700,1,1,122,123],[717,1,1,123,124],[718,2,2,124,126],[726,1,1,126,127],[731,1,1,127,128],[734,1,1,128,129],[738,1,1,129,130]]],[23,4,4,130,134,[[764,1,1,130,131],[774,1,1,131,132],[792,1,1,132,133],[794,1,1,133,134]]],[24,4,4,134,138,[[797,1,1,134,135],[798,2,2,135,137],[799,1,1,137,138]]],[25,9,9,138,147,[[808,1,1,138,139],[819,2,2,139,141],[828,1,1,141,142],[829,1,1,142,143],[832,1,1,143,144],[833,1,1,144,145],[846,1,1,145,146],[849,1,1,146,147]]],[27,1,1,147,148,[[870,1,1,147,148]]],[29,1,1,148,149,[[887,1,1,148,149]]],[30,1,1,149,150,[[888,1,1,149,150]]],[33,1,1,150,151,[[902,1,1,150,151]]],[37,2,2,151,153,[[922,1,1,151,152],[924,1,1,152,153]]]],[181,339,662,1412,1501,1863,2034,2180,2184,2289,2291,2515,2516,2649,2657,2867,2878,3017,3098,3667,3674,3682,3689,3731,3789,3827,3828,3829,3831,3937,4166,4269,4276,4442,4532,4980,4985,5138,5338,5653,5867,5938,6160,6166,6400,6407,6414,6422,7177,8021,8715,8943,9417,9854,10113,10275,10285,10310,10329,10445,10514,10543,10546,10575,10613,10615,10624,10637,10758,11051,11052,11085,11140,11162,11949,12016,12027,12085,12296,12480,12594,12606,12773,13316,13352,13484,13698,14019,14211,14231,14233,14261,14420,14549,14588,14605,14877,15081,15293,15367,15859,15879,15984,16235,16330,16610,16822,16842,16932,17322,17323,17379,17414,17424,17444,17452,17467,17477,17521,17938,17946,18000,18055,18416,18426,18437,18628,18717,18762,18828,19432,19681,20097,20173,20321,20347,20348,20400,20594,20871,20873,21156,21176,21236,21256,21646,21722,22223,22505,22517,22724,23059,23078]]],["Every",[24,24,[[0,3,3,0,3,[[7,1,1,0,1],[8,1,1,1,2],[16,1,1,2,3]]],[1,1,1,3,4,[[50,1,1,3,4]]],[2,4,4,4,8,[[96,1,1,4,5],[100,1,1,5,6],[104,2,2,6,8]]],[3,2,2,8,10,[[146,1,1,8,9],[147,1,1,9,10]]],[4,2,2,10,12,[[163,1,1,10,11],[167,1,1,11,12]]],[5,1,1,12,13,[[187,1,1,12,13]]],[17,1,1,13,14,[[471,1,1,13,14]]],[18,2,2,14,16,[[533,1,1,14,15],[622,1,1,15,16]]],[19,3,3,16,19,[[640,1,1,16,17],[648,1,1,17,18],[657,1,1,18,19]]],[20,1,1,19,20,[[663,1,1,19,20]]],[22,1,1,20,21,[[718,1,1,20,21]]],[23,3,3,21,24,[[754,1,1,21,22],[757,1,1,22,23],[795,1,1,23,24]]]],[202,208,407,1554,2885,3012,3172,3194,4661,4687,5232,5321,5854,13761,14760,16322,16763,16986,17256,17416,18424,19215,19278,20229]]],["What",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9023]]],["Whatsoever",[3,3,[[2,3,3,0,3,[[96,1,1,0,1],[100,2,2,1,3]]]],[2906,3000,3039]]],["Whoso",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4875]]],["Whosoever",[5,5,[[1,1,1,0,1,[[71,1,1,0,1]]],[3,2,2,1,3,[[133,1,1,1,2],[135,1,1,2,3]]],[9,1,1,3,4,[[271,1,1,3,4]]],[12,1,1,4,5,[[348,1,1,4,5]]]],[2132,4257,4302,8140,10679]]],["all",[3888,3210,[[0,211,178,0,178,[[0,2,2,0,2],[1,2,2,2,4],[2,3,3,4,7],[3,1,1,7,8],[4,9,9,8,17],[5,4,4,17,21],[6,7,7,21,28],[7,1,1,28,29],[8,8,6,29,35],[9,2,2,35,37],[10,4,3,37,40],[11,3,3,40,43],[12,4,4,43,47],[13,4,3,47,50],[14,1,1,50,51],[15,1,1,51,52],[16,4,3,52,55],[17,4,4,55,59],[18,6,5,59,64],[19,6,4,64,68],[20,3,3,68,71],[21,1,1,71,72],[22,4,3,72,75],[23,5,5,75,80],[24,2,2,80,82],[25,5,4,82,86],[26,1,1,86,87],[27,3,3,87,90],[28,4,4,90,94],[29,6,3,94,97],[30,14,10,97,107],[31,1,1,107,108],[32,2,2,108,110],[33,6,3,110,113],[34,3,3,113,116],[35,3,1,116,117],[36,2,1,117,118],[38,7,6,118,124],[39,1,1,124,125],[40,24,18,125,143],[41,4,4,143,147],[44,13,11,147,158],[45,9,9,158,167],[46,7,7,167,174],[49,5,4,174,178]]],[1,210,172,178,350,[[50,5,4,178,182],[52,1,1,182,183],[53,6,5,183,188],[54,1,1,188,189],[55,1,1,189,190],[56,6,5,190,195],[57,6,5,195,200],[58,12,9,200,209],[59,12,8,209,217],[60,6,4,217,221],[61,14,11,221,232],[62,7,5,232,237],[63,8,8,237,245],[64,3,3,245,248],[65,4,4,248,252],[66,1,1,252,253],[67,11,9,253,262],[68,5,5,262,267],[69,5,5,267,272],[71,1,1,272,273],[72,5,4,273,277],[73,5,3,277,280],[74,5,4,280,284],[75,1,1,284,285],[76,4,2,285,287],[77,2,2,287,289],[78,4,4,289,293],[79,2,2,293,295],[80,6,5,295,300],[81,3,3,300,303],[82,4,3,303,306],[83,9,6,306,312],[84,10,10,312,322],[85,7,6,322,328],[86,2,2,328,330],[87,9,7,330,337],[88,10,8,337,345],[89,7,5,345,350]]],[2,103,91,350,441,[[90,2,2,350,352],[91,3,3,352,355],[92,5,5,355,360],[93,11,10,360,370],[95,2,2,370,372],[96,5,4,372,376],[97,7,7,376,383],[98,3,3,383,386],[99,3,3,386,389],[100,5,5,389,394],[102,3,2,394,396],[103,5,5,396,401],[104,4,4,401,405],[105,9,7,405,412],[106,3,2,412,414],[107,2,2,414,416],[108,4,3,416,419],[109,4,3,419,422],[110,1,1,422,423],[111,3,1,423,424],[112,7,6,424,430],[113,3,2,430,432],[114,4,4,432,436],[115,2,2,436,438],[116,3,3,438,441]]],[3,223,180,441,621,[[117,21,19,441,460],[118,2,2,460,462],[119,19,15,462,477],[120,22,15,477,492],[121,2,2,492,494],[123,5,4,494,498],[124,6,5,498,503],[125,4,3,503,506],[126,2,2,506,508],[127,10,8,508,516],[128,1,1,516,517],[129,4,3,517,520],[130,13,12,520,532],[131,11,10,532,542],[132,21,17,542,559],[133,4,3,559,562],[134,7,7,562,569],[135,3,2,569,571],[136,4,3,571,574],[137,7,5,574,579],[138,2,2,579,581],[139,2,2,581,583],[140,1,1,583,584],[141,2,2,584,586],[142,3,2,586,588],[143,7,6,588,594],[145,1,1,594,595],[146,5,4,595,599],[147,19,12,599,611],[148,4,4,611,615],[149,6,3,615,618],[151,3,3,618,621]]],[4,261,212,621,833,[[153,8,8,621,629],[154,7,7,629,636],[155,15,10,636,646],[156,13,11,646,657],[157,12,11,657,668],[158,10,7,668,675],[159,5,4,675,679],[160,2,2,679,681],[161,2,2,681,683],[162,4,2,683,685],[163,12,9,685,694],[164,10,9,694,703],[165,8,6,703,709],[166,6,6,709,715],[167,4,3,715,718],[168,6,5,718,723],[169,6,5,723,728],[170,6,6,728,734],[171,2,2,734,736],[172,5,4,736,740],[173,4,3,740,743],[174,4,4,743,747],[175,2,2,747,749],[176,2,2,749,751],[177,3,2,751,753],[178,8,7,753,760],[179,17,17,760,777],[180,27,22,777,799],[181,12,8,799,807],[182,11,6,807,813],[183,10,9,813,822],[184,7,5,822,827],[185,2,2,827,829],[186,9,4,829,833]]],[5,201,154,833,987,[[187,8,8,833,841],[188,8,7,841,848],[189,8,6,848,854],[190,7,6,854,860],[191,7,5,860,865],[192,12,10,865,875],[193,8,6,875,881],[194,20,16,881,897],[195,12,9,897,906],[196,33,24,906,930],[197,16,13,930,943],[198,3,3,943,946],[199,17,12,946,958],[201,2,2,958,960],[202,1,1,960,961],[203,1,1,961,962],[205,1,1,962,963],[206,1,1,963,964],[207,7,6,964,970],[208,7,4,970,974],[209,11,6,974,980],[210,11,7,980,987]]],[6,112,91,987,1078,[[211,1,1,987,988],[212,6,4,988,992],[213,5,4,992,996],[214,5,3,996,999],[215,1,1,999,1000],[216,9,8,1000,1008],[217,13,11,1008,1019],[218,5,5,1019,1024],[219,20,15,1024,1039],[220,2,2,1039,1041],[221,6,5,1041,1046],[222,1,1,1046,1047],[223,2,2,1047,1049],[224,1,1,1049,1050],[226,8,6,1050,1056],[228,1,1,1056,1057],[229,4,4,1057,1061],[230,22,17,1061,1078]]],[7,12,9,1078,1087,[[232,1,1,1078,1079],[233,2,2,1079,1081],[234,4,3,1081,1084],[235,5,3,1084,1087]]],[8,142,125,1087,1212,[[236,3,3,1087,1090],[237,9,7,1090,1097],[238,2,2,1097,1099],[239,4,4,1099,1103],[240,3,2,1103,1105],[241,2,2,1105,1107],[242,7,6,1107,1113],[243,7,7,1113,1120],[244,4,3,1120,1123],[245,8,6,1123,1129],[246,9,7,1129,1136],[247,9,6,1136,1142],[248,5,5,1142,1147],[249,10,10,1147,1157],[250,5,5,1157,1162],[252,5,5,1162,1167],[253,4,4,1167,1171],[254,6,5,1171,1176],[255,1,1,1176,1177],[257,12,10,1177,1187],[258,3,3,1187,1190],[260,8,8,1190,1198],[261,1,1,1198,1199],[262,1,1,1199,1200],[263,3,2,1200,1202],[264,1,1,1202,1203],[265,8,7,1203,1210],[266,2,2,1210,1212]]],[9,171,138,1212,1350,[[267,1,1,1212,1213],[268,5,4,1213,1217],[269,16,13,1217,1230],[270,2,2,1230,1232],[271,4,4,1232,1236],[272,10,8,1236,1244],[273,8,6,1244,1250],[274,6,4,1250,1254],[275,5,4,1254,1258],[276,2,2,1258,1260],[277,4,4,1260,1264],[278,5,4,1264,1268],[279,11,11,1268,1279],[280,4,3,1279,1282],[281,17,10,1282,1292],[282,13,10,1292,1302],[283,13,11,1302,1313],[284,7,6,1313,1319],[285,18,14,1319,1333],[286,8,7,1333,1340],[287,1,1,1340,1341],[288,3,3,1341,1344],[289,5,3,1344,1347],[290,3,3,1347,1350]]],[10,189,167,1350,1517,[[291,10,9,1350,1359],[292,7,6,1359,1365],[293,3,3,1365,1368],[294,14,12,1368,1380],[295,3,3,1380,1383],[296,7,6,1383,1389],[297,12,11,1389,1400],[298,27,24,1400,1424],[299,8,7,1424,1431],[300,9,8,1431,1439],[301,10,10,1439,1449],[302,9,8,1449,1457],[303,2,2,1457,1459],[304,8,7,1459,1466],[305,19,16,1466,1482],[306,8,8,1482,1490],[308,10,8,1490,1498],[309,3,2,1498,1500],[310,9,7,1500,1507],[311,1,1,1507,1508],[312,10,9,1508,1517]]],[11,174,137,1517,1654,[[315,5,4,1517,1521],[316,3,3,1521,1524],[317,2,1,1524,1525],[318,1,1,1525,1526],[319,3,2,1526,1528],[320,5,4,1528,1532],[321,2,2,1532,1534],[322,19,13,1534,1547],[323,7,7,1547,1554],[324,7,6,1554,1560],[325,4,4,1560,1564],[326,4,3,1564,1567],[327,11,10,1567,1577],[328,6,4,1577,1581],[329,12,9,1581,1590],[330,7,7,1590,1597],[331,6,6,1597,1603],[332,5,3,1603,1606],[333,8,7,1606,1613],[334,6,5,1613,1618],[335,26,16,1618,1634],[336,13,8,1634,1642],[337,12,12,1642,1654]]],[12,131,103,1654,1757,[[339,1,1,1654,1655],[340,1,1,1655,1656],[341,2,2,1656,1658],[342,2,2,1658,1660],[343,2,1,1660,1661],[344,2,2,1661,1663],[346,2,2,1663,1665],[347,5,4,1665,1669],[348,4,4,1669,1673],[349,7,5,1673,1678],[350,9,6,1678,1684],[351,4,2,1684,1686],[352,3,3,1686,1689],[353,11,11,1689,1700],[354,9,7,1700,1707],[355,5,4,1707,1711],[356,2,2,1711,1713],[357,2,1,1713,1714],[358,5,5,1714,1719],[359,2,2,1719,1721],[360,3,3,1721,1724],[362,1,1,1724,1725],[363,4,4,1725,1729],[364,2,2,1729,1731],[365,19,10,1731,1741],[366,22,16,1741,1757]]],[13,234,194,1757,1951,[[367,4,3,1757,1760],[368,1,1,1760,1761],[370,4,4,1761,1765],[371,9,8,1765,1773],[372,10,8,1773,1781],[373,9,9,1781,1790],[374,7,4,1790,1794],[375,9,8,1794,1802],[376,5,4,1802,1806],[377,3,3,1806,1809],[378,2,2,1809,1811],[379,2,2,1811,1813],[380,3,2,1813,1815],[381,9,7,1815,1822],[382,2,2,1822,1824],[383,5,5,1824,1829],[384,6,6,1829,1835],[385,3,2,1835,1837],[386,6,6,1837,1843],[387,6,6,1843,1849],[388,3,3,1849,1852],[389,10,10,1852,1862],[390,7,5,1862,1867],[391,5,4,1867,1871],[392,4,4,1871,1875],[393,2,2,1875,1877],[394,6,5,1877,1882],[395,14,10,1882,1892],[396,9,8,1892,1900],[397,11,6,1900,1906],[398,13,12,1906,1918],[399,8,8,1918,1926],[400,19,12,1926,1938],[401,10,8,1938,1946],[402,8,5,1946,1951]]],[14,35,30,1951,1981,[[403,4,4,1951,1955],[404,2,2,1955,1957],[405,3,3,1957,1960],[406,1,1,1960,1961],[408,3,2,1961,1963],[409,2,2,1963,1965],[410,8,6,1965,1971],[411,1,1,1971,1972],[412,11,9,1972,1981]]],[15,59,48,1981,2029,[[416,4,4,1981,1985],[417,4,4,1985,1989],[418,3,2,1989,1991],[419,1,1,1991,1992],[420,14,11,1992,2003],[421,12,7,2003,2010],[422,7,5,2010,2015],[423,3,3,2015,2018],[424,1,1,2018,2019],[425,10,10,2019,2029]]],[16,51,44,2029,2073,[[426,12,9,2029,2038],[427,4,3,2038,2041],[428,8,7,2041,2048],[429,4,4,2048,2052],[430,3,3,2052,2055],[431,1,1,2055,2056],[433,5,5,2056,2061],[434,12,10,2061,2071],[435,2,2,2071,2073]]],[17,45,41,2073,2114,[[436,5,5,2073,2078],[437,3,3,2078,2081],[443,1,1,2081,2082],[444,1,1,2082,2083],[447,2,2,2083,2085],[448,3,3,2085,2088],[449,1,1,2088,2089],[450,1,1,2089,2090],[451,2,2,2090,2092],[452,2,2,2092,2094],[459,1,1,2094,2095],[462,1,1,2095,2096],[463,2,2,2096,2098],[465,1,1,2098,2099],[466,2,2,2099,2101],[468,3,3,2101,2104],[469,2,2,2104,2106],[471,1,1,2106,2107],[472,1,1,2107,2108],[473,2,2,2108,2110],[475,1,1,2110,2111],[476,2,1,2111,2112],[477,5,2,2112,2114]]],[18,249,228,2114,2342,[[479,1,1,2114,2115],[480,1,1,2115,2116],[482,2,2,2116,2118],[483,4,4,2118,2122],[485,3,3,2122,2125],[486,3,3,2125,2128],[487,2,2,2128,2130],[489,1,1,2130,2131],[491,2,2,2131,2133],[493,1,1,2133,2134],[495,2,2,2134,2136],[496,1,1,2136,2137],[497,3,3,2137,2140],[498,1,1,2140,2141],[499,6,5,2141,2146],[500,1,1,2146,2147],[502,2,2,2147,2149],[503,1,1,2149,2150],[504,1,1,2150,2151],[508,2,2,2151,2153],[509,2,2,2153,2155],[510,7,6,2155,2161],[511,2,2,2161,2163],[512,1,1,2163,2164],[515,3,3,2164,2167],[516,1,1,2167,2168],[517,1,1,2168,2169],[518,1,1,2169,2170],[519,1,1,2170,2171],[521,2,2,2171,2173],[522,3,3,2173,2176],[524,3,3,2176,2179],[526,2,1,2179,2180],[527,1,1,2180,2181],[528,1,1,2181,2182],[529,1,1,2182,2183],[533,1,1,2183,2184],[534,2,2,2184,2186],[536,2,2,2186,2188],[539,2,2,2188,2190],[541,3,3,2190,2193],[542,2,2,2193,2195],[543,2,2,2195,2197],[544,4,4,2197,2201],[546,1,1,2201,2202],[547,1,1,2202,2203],[548,3,3,2203,2206],[549,3,2,2206,2208],[550,3,3,2208,2211],[551,3,3,2211,2214],[552,2,2,2214,2216],[553,2,2,2216,2218],[554,1,1,2218,2219],[555,4,4,2219,2223],[557,1,1,2223,2224],[559,3,3,2224,2227],[560,2,2,2227,2229],[562,2,2,2229,2231],[563,2,2,2231,2233],[564,1,1,2233,2234],[565,1,1,2234,2235],[566,6,6,2235,2241],[567,2,2,2241,2243],[568,1,1,2243,2244],[569,2,2,2244,2246],[571,2,2,2246,2248],[572,1,1,2248,2249],[573,7,6,2249,2255],[574,5,3,2255,2258],[575,2,2,2258,2260],[576,1,1,2260,2261],[577,1,1,2261,2262],[578,2,1,2262,2263],[579,3,3,2263,2266],[580,9,7,2266,2273],[581,3,3,2273,2276],[582,7,6,2276,2282],[583,4,4,2282,2286],[584,1,1,2286,2287],[585,1,1,2287,2288],[586,1,1,2288,2289],[588,3,3,2289,2292],[590,1,1,2292,2293],[593,3,3,2293,2296],[594,2,1,2296,2297],[596,15,14,2297,2311],[605,1,1,2311,2312],[606,1,1,2312,2313],[609,1,1,2313,2314],[611,1,1,2314,2315],[612,3,3,2315,2318],[613,1,1,2318,2319],[615,1,1,2319,2320],[616,2,2,2320,2322],[620,2,2,2322,2324],[622,13,8,2324,2332],[623,1,1,2332,2333],[624,1,1,2333,2334],[625,10,7,2334,2341],[626,1,1,2341,2342]]],[19,43,43,2342,2385,[[628,4,4,2342,2346],[630,5,5,2346,2351],[631,3,3,2351,2354],[632,3,3,2354,2357],[633,1,1,2357,2358],[635,4,4,2358,2362],[637,1,1,2362,2363],[641,1,1,2363,2364],[643,2,2,2364,2366],[644,1,1,2366,2367],[645,1,1,2367,2368],[647,2,2,2368,2370],[648,1,1,2370,2371],[649,1,1,2371,2372],[650,1,1,2372,2373],[651,2,2,2373,2375],[653,1,1,2375,2376],[655,1,1,2376,2377],[656,2,2,2377,2379],[657,2,2,2379,2381],[658,4,4,2381,2385]]],[20,53,44,2385,2429,[[659,6,5,2385,2390],[660,11,10,2390,2400],[661,5,3,2400,2403],[662,6,5,2403,2408],[663,3,3,2408,2411],[664,1,1,2411,2412],[665,4,4,2412,2416],[666,1,1,2416,2417],[667,10,6,2417,2423],[668,1,1,2423,2424],[669,3,3,2424,2427],[670,2,2,2427,2429]]],[21,6,5,2429,2434,[[673,1,1,2429,2430],[674,4,3,2430,2433],[678,1,1,2433,2434]]],[22,177,149,2434,2583,[[679,1,1,2434,2435],[680,7,4,2435,2439],[682,1,1,2439,2440],[683,2,2,2440,2442],[685,5,3,2442,2445],[686,5,3,2445,2448],[687,4,4,2448,2452],[688,3,3,2452,2455],[689,1,1,2455,2456],[690,1,1,2456,2457],[691,1,1,2457,2458],[692,4,3,2458,2461],[693,1,1,2461,2462],[694,1,1,2462,2463],[696,1,1,2463,2464],[697,2,2,2464,2466],[699,3,3,2466,2469],[700,4,2,2469,2471],[701,3,2,2471,2473],[702,2,2,2473,2475],[703,5,3,2475,2478],[704,3,3,2478,2481],[705,2,1,2481,2482],[706,2,2,2482,2484],[707,5,4,2484,2488],[708,2,2,2488,2490],[709,1,1,2490,2491],[710,2,2,2491,2493],[712,5,3,2493,2496],[714,3,3,2496,2499],[715,7,7,2499,2506],[716,5,5,2506,2511],[717,4,2,2511,2513],[718,4,4,2513,2517],[719,2,2,2517,2519],[720,2,2,2519,2521],[721,2,2,2521,2523],[722,5,4,2523,2527],[723,7,7,2527,2534],[724,2,2,2534,2536],[726,1,1,2536,2537],[727,5,4,2537,2541],[728,2,2,2541,2543],[729,2,2,2543,2545],[730,2,1,2545,2546],[731,1,1,2546,2547],[732,2,2,2547,2549],[733,1,1,2549,2550],[734,5,4,2550,2554],[736,1,1,2554,2555],[737,1,1,2555,2556],[738,4,4,2556,2560],[739,3,3,2560,2563],[740,1,1,2563,2564],[741,4,3,2564,2567],[742,6,4,2567,2571],[743,5,5,2571,2576],[744,9,7,2576,2583]]],[23,367,280,2583,2863,[[745,7,5,2583,2588],[746,5,5,2588,2593],[747,4,4,2593,2597],[748,3,3,2597,2600],[749,2,2,2600,2602],[750,2,1,2602,2603],[751,7,7,2603,2610],[752,3,2,2610,2612],[753,5,3,2612,2615],[754,6,5,2615,2620],[755,3,3,2620,2623],[756,4,4,2623,2627],[757,3,2,2627,2629],[758,1,1,2629,2630],[759,3,2,2630,2632],[760,3,2,2632,2634],[761,6,4,2634,2638],[762,1,1,2638,2639],[763,6,4,2639,2643],[764,8,3,2643,2646],[765,1,1,2646,2647],[766,2,2,2647,2649],[767,3,3,2649,2652],[768,2,1,2652,2653],[769,29,17,2653,2670],[770,20,14,2670,2684],[771,5,5,2684,2689],[772,9,8,2689,2697],[773,11,9,2697,2706],[774,7,5,2706,2711],[775,6,5,2711,2716],[776,8,6,2716,2722],[777,7,4,2722,2726],[778,11,7,2726,2733],[779,10,7,2733,2740],[780,25,21,2740,2761],[781,1,1,2761,2762],[782,7,6,2762,2768],[783,6,5,2768,2773],[784,8,7,2773,2780],[785,12,8,2780,2788],[786,8,6,2788,2794],[787,8,4,2794,2798],[788,20,13,2798,2811],[789,2,1,2811,2812],[790,1,1,2812,2813],[791,2,2,2813,2815],[792,6,6,2815,2821],[793,6,6,2821,2827],[794,11,10,2827,2837],[795,14,11,2837,2848],[796,17,15,2848,2863]]],[24,27,24,2863,2887,[[797,14,13,2863,2876],[798,4,4,2876,2880],[799,8,6,2880,2886],[800,1,1,2886,2887]]],[25,240,183,2887,3070,[[804,2,2,2887,2889],[806,7,6,2889,2895],[807,6,5,2895,2900],[808,8,7,2900,2907],[809,1,1,2907,2908],[810,2,2,2908,2910],[812,4,3,2910,2913],[813,5,4,2913,2917],[814,1,1,2917,2918],[815,5,5,2918,2923],[817,16,11,2923,2934],[818,7,5,2934,2939],[819,7,7,2939,2946],[821,12,9,2946,2955],[822,7,6,2955,2961],[823,4,4,2961,2965],[824,12,7,2965,2972],[825,1,1,2972,2973],[826,2,2,2973,2975],[827,3,3,2975,2978],[828,12,9,2978,2987],[829,2,2,2987,2989],[830,6,5,2989,2994],[831,2,2,2994,2996],[832,16,9,2996,3005],[833,22,15,3005,3020],[834,2,2,3020,3022],[835,5,4,3022,3026],[836,4,3,3026,3029],[837,5,3,3029,3032],[838,3,3,3032,3035],[839,15,11,3035,3046],[840,8,8,3046,3054],[841,2,1,3054,3055],[842,2,2,3055,3057],[843,1,1,3057,3058],[844,5,1,3058,3059],[845,11,6,3059,3065],[846,3,3,3065,3068],[848,1,1,3068,3069],[849,1,1,3069,3070]]],[26,19,14,3070,3084,[[850,7,4,3070,3074],[858,8,6,3074,3080],[860,3,3,3080,3083],[861,1,1,3083,3084]]],[27,17,16,3084,3100,[[863,2,1,3084,3085],[866,1,1,3085,3086],[868,5,5,3086,3091],[870,3,3,3091,3094],[871,1,1,3094,3095],[873,1,1,3095,3096],[874,3,3,3096,3099],[875,1,1,3099,3100]]],[28,15,15,3100,3115,[[876,5,5,3100,3105],[877,4,4,3105,3109],[878,6,6,3109,3115]]],[29,15,12,3115,3127,[[880,1,1,3115,3116],[881,1,1,3116,3117],[882,2,1,3117,3118],[883,3,2,3118,3120],[885,1,1,3120,3121],[886,2,1,3121,3122],[887,5,5,3122,3127]]],[30,2,2,3127,3129,[[888,2,2,3127,3129]]],[31,1,1,3129,3130,[[890,1,1,3129,3130]]],[32,14,12,3130,3142,[[893,5,3,3130,3133],[894,1,1,3133,3134],[895,2,2,3134,3136],[896,1,1,3136,3137],[897,2,2,3137,3139],[898,1,1,3139,3140],[899,2,2,3140,3142]]],[33,9,7,3142,3149,[[900,2,2,3142,3144],[901,2,1,3144,3145],[902,5,4,3145,3149]]],[34,10,8,3149,3157,[[903,2,2,3149,3151],[904,8,6,3151,3157]]],[35,18,15,3157,3172,[[906,7,6,3157,3163],[907,4,3,3163,3166],[908,7,6,3166,3172]]],[36,7,6,3172,3178,[[909,3,3,3172,3175],[910,4,3,3175,3178]]],[37,28,26,3178,3204,[[911,1,1,3178,3179],[912,1,1,3179,3180],[914,1,1,3180,3181],[915,1,1,3181,3182],[916,1,1,3182,3183],[917,2,2,3183,3185],[918,3,3,3185,3188],[919,1,1,3188,3189],[920,1,1,3189,3190],[921,1,1,3190,3191],[922,6,4,3191,3195],[923,1,1,3195,3196],[924,8,8,3196,3204]]],[38,7,6,3204,3210,[[926,2,2,3204,3206],[927,2,2,3206,3208],[928,3,2,3208,3210]]]],[25,28,31,50,69,72,75,100,110,113,116,119,122,125,128,132,136,149,150,154,159,160,162,164,170,173,178,180,184,207,216,220,221,222,234,255,263,272,274,275,301,303,318,319,328,329,333,343,347,352,370,393,405,420,424,442,449,450,452,461,474,482,485,488,502,503,511,513,519,525,535,565,581,588,589,593,601,611,627,657,663,676,695,696,703,707,764,787,788,795,798,803,808,817,862,865,870,874,879,881,885,889,891,894,907,910,916,947,968,973,1004,1005,1009,1013,1015,1017,1046,1118,1152,1153,1154,1155,1157,1171,1192,1203,1214,1224,1225,1230,1232,1234,1235,1236,1238,1239,1241,1243,1246,1249,1250,1251,1252,1258,1263,1281,1288,1359,1366,1367,1368,1369,1371,1373,1378,1380,1384,1385,1387,1392,1393,1401,1408,1411,1412,1413,1418,1421,1432,1433,1434,1435,1437,1440,1513,1514,1520,1521,1537,1538,1546,1554,1599,1620,1622,1629,1630,1631,1644,1684,1687,1704,1705,1706,1709,1712,1714,1726,1727,1734,1748,1751,1753,1756,1758,1761,1764,1766,1767,1783,1789,1790,1791,1792,1796,1799,1800,1811,1812,1814,1816,1819,1828,1836,1837,1845,1846,1849,1857,1858,1864,1866,1869,1874,1879,1880,1882,1893,1896,1898,1906,1909,1910,1912,1917,1935,1940,1946,1948,1953,1956,1969,1984,2000,2007,2008,2011,2013,2021,2022,2023,2025,2031,2033,2034,2037,2042,2052,2060,2062,2069,2075,2122,2157,2161,2166,2171,2180,2181,2185,2204,2217,2231,2234,2252,2275,2291,2296,2331,2348,2349,2360,2371,2409,2410,2426,2427,2428,2429,2431,2441,2451,2464,2481,2483,2492,2499,2506,2519,2526,2527,2528,2532,2535,2541,2544,2547,2551,2552,2553,2556,2557,2567,2569,2570,2573,2575,2588,2626,2628,2636,2650,2653,2655,2657,2663,2664,2696,2697,2700,2701,2703,2704,2706,2707,2716,2717,2723,2743,2745,2754,2758,2764,2775,2778,2781,2787,2792,2794,2795,2802,2803,2806,2813,2814,2821,2825,2826,2829,2830,2858,2864,2882,2888,2889,2898,2920,2927,2928,2933,2942,2944,2953,2958,2976,2977,2980,2983,2988,3007,3020,3028,3031,3039,3064,3065,3119,3120,3147,3156,3157,3184,3192,3193,3194,3203,3217,3218,3222,3223,3230,3234,3237,3249,3275,3278,3283,3305,3318,3323,3340,3341,3369,3387,3405,3416,3423,3433,3440,3444,3460,3462,3476,3478,3479,3493,3538,3539,3579,3595,3600,3606,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3650,3654,3658,3690,3692,3700,3704,3705,3714,3718,3720,3723,3726,3728,3731,3732,3733,3734,3735,3737,3746,3752,3753,3755,3757,3758,3759,3766,3769,3770,3774,3775,3776,3780,3784,3801,3822,3851,3935,3936,3938,3946,3955,3956,3957,3959,3968,3970,3977,3991,4013,4030,4035,4036,4037,4038,4046,4053,4056,4066,4078,4101,4107,4109,4110,4113,4115,4118,4119,4129,4130,4137,4143,4144,4147,4175,4176,4177,4178,4179,4186,4188,4189,4192,4193,4197,4199,4200,4204,4205,4210,4213,4216,4220,4222,4223,4224,4225,4226,4227,4228,4235,4246,4253,4256,4260,4261,4265,4268,4269,4272,4278,4303,4307,4325,4338,4340,4365,4366,4373,4374,4375,4377,4379,4422,4429,4463,4475,4477,4491,4551,4556,4570,4573,4574,4575,4576,4648,4650,4652,4659,4662,4668,4671,4673,4674,4675,4677,4682,4684,4687,4691,4715,4716,4731,4733,4739,4744,4763,4764,4812,4848,4852,4874,4893,4895,4899,4910,4911,4922,4923,4933,4945,4952,4954,4970,4971,4972,4974,4976,4977,4978,4979,4982,4985,4988,4989,4993,4996,5007,5010,5011,5012,5013,5014,5023,5033,5034,5038,5053,5054,5056,5066,5075,5076,5079,5080,5081,5082,5084,5086,5088,5091,5097,5105,5108,5110,5111,5126,5127,5129,5130,5139,5150,5167,5175,5198,5200,5211,5214,5215,5216,5221,5230,5231,5233,5240,5241,5242,5247,5248,5251,5254,5255,5258,5268,5275,5281,5283,5287,5288,5290,5299,5301,5310,5312,5318,5319,5324,5329,5337,5345,5346,5357,5358,5360,5371,5374,5377,5378,5383,5385,5390,5391,5396,5400,5402,5414,5415,5438,5441,5442,5445,5453,5464,5468,5473,5475,5489,5499,5506,5520,5533,5544,5563,5565,5568,5578,5579,5580,5582,5584,5585,5586,5588,5593,5594,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5619,5621,5623,5626,5631,5636,5637,5643,5644,5648,5651,5656,5658,5659,5663,5666,5668,5669,5671,5675,5681,5688,5689,5699,5700,5703,5706,5708,5709,5710,5714,5715,5716,5718,5729,5733,5735,5737,5739,5740,5746,5756,5758,5762,5785,5802,5803,5804,5813,5822,5840,5841,5850,5851,5853,5855,5856,5858,5859,5865,5868,5869,5872,5878,5882,5887,5891,5892,5893,5894,5900,5904,5906,5908,5910,5911,5920,5921,5924,5928,5934,5935,5938,5939,5940,5942,5952,5954,5966,5968,5970,5971,5972,5973,5974,5976,5979,5985,5991,5999,6000,6001,6003,6005,6006,6007,6013,6015,6016,6017,6018,6023,6026,6027,6028,6035,6036,6037,6038,6042,6046,6047,6048,6055,6056,6058,6061,6066,6069,6070,6071,6073,6079,6085,6088,6089,6092,6093,6094,6095,6096,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6111,6112,6113,6114,6117,6118,6119,6121,6123,6124,6125,6126,6130,6131,6135,6154,6156,6158,6159,6160,6163,6164,6165,6170,6171,6175,6179,6184,6234,6248,6274,6291,6329,6381,6420,6421,6423,6424,6425,6426,6428,6431,6440,6446,6462,6463,6464,6466,6474,6475,6477,6478,6479,6493,6494,6503,6507,6534,6549,6552,6555,6563,6569,6571,6587,6597,6612,6614,6615,6654,6663,6667,6685,6687,6689,6691,6693,6694,6695,6700,6701,6702,6706,6708,6712,6715,6716,6717,6718,6729,6731,6746,6753,6754,6755,6756,6757,6760,6768,6779,6788,6798,6799,6800,6801,6802,6803,6805,6811,6819,6829,6837,6840,6850,6851,6855,6873,6898,6907,6912,6951,6966,6967,6976,6979,6980,7024,7044,7049,7053,7054,7055,7056,7060,7061,7062,7064,7065,7066,7071,7079,7080,7087,7089,7091,7098,7100,7102,7146,7160,7170,7178,7183,7188,7197,7199,7201,7216,7223,7233,7254,7262,7263,7268,7269,7272,7273,7288,7296,7298,7302,7305,7310,7327,7330,7335,7349,7354,7355,7357,7365,7367,7368,7373,7374,7376,7377,7379,7389,7390,7397,7410,7411,7427,7429,7436,7438,7442,7443,7446,7447,7448,7449,7452,7455,7460,7461,7467,7478,7479,7480,7484,7488,7489,7492,7504,7505,7515,7523,7528,7530,7533,7542,7546,7548,7555,7560,7563,7566,7568,7569,7571,7629,7637,7642,7664,7665,7681,7690,7692,7698,7707,7711,7713,7724,7730,7736,7788,7791,7793,7794,7795,7798,7801,7802,7803,7809,7818,7830,7833,7862,7867,7868,7870,7873,7877,7878,7882,7917,7941,7945,7962,7968,7984,7994,7996,7997,7998,8000,8009,8015,8021,8033,8058,8077,8078,8081,8093,8099,8100,8102,8104,8106,8110,8112,8113,8115,8116,8117,8118,8121,8127,8133,8135,8137,8149,8158,8159,8162,8168,8169,8171,8172,8176,8183,8187,8189,8197,8201,8202,8213,8218,8223,8224,8234,8236,8238,8239,8247,8259,8260,8268,8277,8281,8298,8302,8315,8317,8326,8338,8340,8342,8344,8346,8347,8348,8349,8350,8353,8375,8376,8381,8395,8399,8403,8405,8406,8407,8411,8412,8413,8419,8430,8432,8434,8437,8440,8441,8444,8447,8448,8449,8451,8452,8453,8459,8460,8461,8462,8463,8465,8471,8473,8482,8483,8486,8495,8509,8510,8513,8516,8517,8519,8520,8522,8525,8531,8539,8541,8550,8551,8552,8553,8561,8566,8567,8568,8569,8576,8577,8594,8603,8625,8633,8658,8659,8692,8694,8699,8700,8720,8726,8736,8737,8742,8756,8757,8758,8766,8772,8773,8774,8785,8796,8814,8829,8831,8844,8845,8851,8854,8855,8856,8865,8868,8869,8871,8874,8875,8878,8884,8886,8888,8906,8908,8914,8918,8925,8934,8935,8939,8948,8959,8967,8971,8974,8979,8981,8982,8985,8986,8987,8988,8989,8990,8999,9007,9008,9023,9024,9025,9028,9033,9035,9037,9039,9040,9041,9043,9045,9047,9048,9050,9051,9052,9055,9058,9060,9062,9070,9071,9081,9082,9083,9092,9094,9100,9103,9108,9116,9121,9124,9133,9136,9142,9145,9146,9149,9150,9152,9154,9163,9167,9169,9171,9172,9174,9195,9216,9226,9231,9236,9242,9244,9247,9248,9252,9254,9255,9256,9261,9263,9265,9267,9269,9271,9272,9276,9278,9280,9281,9282,9290,9294,9295,9296,9297,9299,9300,9309,9346,9360,9361,9362,9365,9371,9377,9380,9388,9405,9412,9415,9416,9418,9421,9423,9436,9477,9490,9492,9497,9499,9502,9503,9519,9523,9533,9582,9595,9597,9601,9606,9607,9616,9662,9698,9720,9722,9731,9733,9748,9750,9763,9770,9798,9802,9804,9810,9811,9812,9814,9815,9823,9824,9825,9826,9827,9830,9836,9838,9843,9847,9848,9849,9852,9854,9859,9862,9868,9869,9874,9879,9883,9893,9910,9917,9924,9928,9931,9941,9943,9945,9946,9951,9954,9956,9959,9973,9974,9978,9979,9988,9992,9994,9996,9999,10003,10005,10006,10022,10027,10029,10036,10037,10039,10045,10059,10065,10072,10076,10080,10085,10096,10111,10115,10118,10122,10124,10127,10133,10136,10140,10143,10147,10158,10161,10162,10165,10166,10167,10168,10169,10170,10173,10184,10185,10186,10187,10189,10190,10191,10193,10197,10202,10205,10207,10209,10211,10215,10216,10218,10221,10223,10226,10227,10231,10232,10236,10238,10239,10245,10248,10251,10252,10312,10370,10412,10418,10444,10448,10503,10538,10540,10616,10644,10665,10666,10670,10671,10674,10676,10677,10683,10735,10741,10752,10753,10758,10762,10764,10765,10766,10768,10774,10782,10791,10794,10818,10819,10829,10834,10843,10844,10845,10846,10850,10852,10856,10860,10863,10865,10869,10871,10873,10878,10882,10883,10894,10899,10903,10904,10915,10924,10929,10937,10938,10939,10946,10957,10969,10981,10985,11011,11014,11053,11088,11103,11105,11107,11110,11112,11144,11147,11151,11152,11155,11156,11157,11162,11163,11164,11165,11166,11174,11175,11176,11179,11180,11181,11183,11184,11185,11187,11188,11189,11190,11194,11196,11197,11211,11228,11250,11262,11264,11265,11269,11270,11271,11272,11273,11274,11279,11280,11285,11294,11295,11296,11311,11312,11315,11320,11327,11328,11329,11330,11332,11335,11341,11344,11346,11350,11352,11353,11362,11365,11366,11376,11378,11384,11387,11390,11394,11396,11398,11407,11411,11417,11427,11437,11438,11446,11457,11468,11483,11489,11492,11495,11496,11499,11502,11505,11507,11513,11515,11525,11528,11532,11533,11542,11551,11553,11558,11560,11563,11569,11581,11587,11590,11593,11600,11602,11605,11616,11626,11628,11633,11638,11641,11642,11645,11653,11654,11659,11661,11662,11664,11666,11669,11672,11673,11676,11677,11679,11684,11687,11691,11700,11709,11711,11716,11728,11733,11736,11746,11752,11757,11762,11770,11778,11779,11787,11790,11793,11807,11809,11810,11815,11819,11820,11823,11825,11827,11828,11829,11831,11832,11833,11841,11849,11852,11855,11859,11872,11873,11874,11875,11879,11880,11882,11884,11888,11889,11896,11897,11898,11905,11906,11908,11911,11913,11916,11922,11923,11927,11930,11933,11940,11945,11946,11954,11957,11958,11961,11962,11963,11964,11965,11966,11969,11973,11979,11982,11984,11986,11990,11991,12007,12010,12011,12012,12015,12017,12018,12021,12022,12069,12097,12102,12105,12108,12115,12171,12172,12179,12201,12221,12222,12223,12226,12235,12236,12250,12255,12257,12259,12260,12261,12264,12266,12268,12269,12365,12367,12374,12375,12395,12398,12400,12401,12410,12417,12493,12494,12495,12496,12498,12499,12502,12504,12505,12506,12508,12510,12516,12517,12521,12536,12543,12544,12549,12577,12578,12582,12584,12586,12590,12608,12612,12671,12674,12677,12679,12683,12686,12687,12689,12691,12697,12698,12705,12707,12710,12715,12718,12719,12720,12722,12724,12727,12739,12742,12748,12749,12753,12755,12759,12760,12761,12763,12769,12778,12779,12790,12792,12793,12806,12822,12826,12828,12829,12830,12836,12837,12838,12839,12854,12858,12860,12861,12863,12864,12868,12869,12874,12879,12880,12881,12891,12895,12901,12902,13042,13079,13137,13138,13154,13157,13180,13195,13223,13240,13245,13267,13270,13460,13493,13507,13525,13580,13592,13600,13651,13661,13679,13702,13704,13755,13776,13800,13811,13884,13922,13933,13937,13957,13964,13978,13984,13991,13992,13993,13995,14013,14018,14021,14022,14035,14038,14045,14046,14069,14083,14084,14095,14140,14148,14172,14185,14186,14187,14199,14218,14221,14227,14231,14233,14241,14256,14269,14280,14289,14354,14355,14358,14366,14370,14372,14374,14379,14380,14381,14389,14408,14438,14496,14499,14502,14524,14541,14545,14562,14579,14593,14610,14613,14614,14626,14627,14632,14649,14679,14700,14714,14760,14773,14779,14795,14798,14830,14835,14858,14859,14860,14862,14865,14874,14889,14895,14896,14898,14900,14954,14975,14984,14991,15000,15011,15017,15034,15047,15048,15051,15056,15065,15074,15079,15090,15092,15105,15127,15145,15151,15164,15210,15238,15239,15241,15252,15259,15273,15274,15289,15296,15308,15315,15333,15342,15366,15368,15373,15376,15387,15392,15406,15418,15420,15435,15446,15457,15466,15468,15469,15470,15474,15477,15484,15485,15487,15493,15494,15501,15509,15521,15529,15536,15547,15550,15551,15552,15555,15568,15570,15571,15591,15595,15598,15608,15613,15627,15637,15641,15642,15653,15654,15697,15699,15741,15747,15766,15795,15800,15803,15817,15860,15862,15866,15868,15904,15911,15912,15918,15961,15989,15994,15995,16016,16017,16026,16049,16066,16070,16131,16137,16152,16173,16181,16184,16186,16221,16233,16242,16255,16298,16305,16329,16333,16334,16335,16337,16338,16340,16341,16347,16355,16373,16374,16378,16380,16381,16382,16385,16394,16413,16414,16425,16430,16460,16461,16464,16470,16472,16497,16512,16516,16531,16536,16538,16571,16611,16613,16618,16638,16668,16795,16844,16851,16890,16902,16962,16981,17010,17017,17061,17083,17110,17151,17201,17235,17236,17255,17278,17292,17296,17305,17313,17317,17318,17328,17329,17331,17338,17344,17347,17349,17350,17351,17352,17353,17355,17356,17372,17378,17379,17382,17385,17389,17396,17397,17406,17413,17415,17423,17431,17447,17450,17457,17475,17476,17477,17478,17479,17484,17486,17512,17518,17521,17522,17527,17531,17579,17586,17589,17596,17647,17679,17687,17698,17699,17701,17738,17764,17767,17801,17806,17807,17814,17816,17819,17838,17841,17846,17850,17854,17864,17873,17893,17905,17913,17937,17946,17954,17962,17983,18003,18012,18014,18037,18044,18051,18055,18076,18086,18094,18102,18106,18124,18125,18126,18142,18144,18145,18160,18172,18188,18200,18201,18204,18213,18222,18235,18253,18272,18279,18305,18307,18315,18331,18336,18350,18363,18368,18369,18370,18372,18377,18388,18403,18405,18406,18407,18410,18414,18418,18422,18425,18426,18446,18462,18480,18495,18502,18514,18519,18542,18544,18557,18561,18568,18573,18574,18577,18583,18585,18586,18589,18596,18620,18645,18647,18654,18662,18671,18673,18676,18693,18706,18717,18735,18736,18752,18760,18762,18763,18764,18789,18811,18825,18827,18835,18842,18845,18852,18854,18856,18869,18873,18875,18891,18893,18894,18896,18899,18902,18905,18909,18922,18924,18932,18938,18940,18942,18945,18946,18953,18960,18961,18962,18963,18968,18969,18989,18994,18999,19009,19010,19012,19019,19051,19052,19053,19074,19077,19117,19121,19129,19132,19134,19142,19144,19146,19155,19156,19177,19200,19201,19208,19210,19217,19221,19222,19230,19232,19234,19250,19258,19261,19263,19279,19285,19315,19319,19328,19346,19353,19360,19370,19376,19377,19407,19415,19420,19421,19422,19426,19427,19428,19442,19474,19476,19493,19498,19499,19533,19535,19536,19538,19543,19547,19549,19551,19553,19554,19556,19557,19558,19559,19560,19563,19564,19565,19574,19578,19579,19580,19581,19583,19584,19587,19588,19589,19590,19591,19592,19593,19602,19603,19608,19612,19616,19619,19621,19622,19623,19624,19625,19629,19632,19636,19639,19648,19651,19653,19655,19657,19660,19666,19669,19673,19678,19683,19687,19692,19715,19725,19728,19731,19743,19750,19754,19758,19763,19773,19780,19783,19784,19787,19802,19807,19808,19809,19811,19818,19820,19826,19830,19831,19833,19838,19840,19841,19844,19845,19846,19848,19850,19851,19852,19853,19854,19855,19856,19858,19859,19860,19862,19863,19865,19866,19870,19873,19874,19895,19896,19899,19904,19917,19918,19922,19924,19926,19927,19929,19936,19942,19945,19948,19952,19953,19954,19956,19960,19966,19967,19968,19969,19970,19971,19973,19976,19977,19980,19983,19992,19995,19998,19999,20001,20002,20011,20012,20014,20018,20021,20022,20025,20028,20030,20034,20036,20037,20038,20045,20073,20075,20077,20097,20104,20111,20117,20118,20119,20140,20144,20153,20156,20159,20163,20176,20179,20180,20187,20193,20195,20196,20198,20199,20203,20215,20219,20236,20237,20240,20259,20260,20261,20264,20272,20273,20278,20280,20283,20284,20286,20289,20290,20293,20294,20296,20298,20299,20306,20309,20310,20312,20313,20314,20316,20317,20318,20320,20322,20323,20325,20328,20331,20332,20334,20335,20336,20337,20357,20368,20388,20414,20415,20416,20432,20509,20512,20550,20555,20556,20557,20558,20560,20569,20572,20574,20576,20577,20580,20585,20589,20591,20593,20594,20595,20614,20626,20630,20670,20673,20680,20690,20694,20696,20699,20726,20736,20737,20742,20753,20754,20784,20785,20792,20795,20798,20799,20805,20809,20813,20819,20825,20834,20843,20846,20848,20849,20853,20862,20863,20868,20870,20873,20880,20901,20910,20921,20923,20926,20935,20938,20942,20943,20948,20949,20951,20956,20959,20968,20978,20980,20994,20995,21013,21014,21019,21022,21030,21036,21055,21080,21089,21091,21111,21116,21117,21126,21130,21133,21139,21142,21143,21148,21150,21155,21175,21183,21185,21187,21188,21189,21190,21209,21212,21234,21236,21239,21242,21243,21244,21245,21246,21248,21252,21260,21261,21263,21264,21268,21270,21271,21272,21273,21274,21277,21278,21279,21280,21293,21309,21318,21319,21326,21334,21352,21356,21359,21364,21369,21393,21413,21419,21421,21429,21430,21431,21432,21433,21434,21436,21438,21440,21445,21446,21452,21459,21461,21466,21468,21469,21471,21474,21481,21543,21545,21563,21583,21604,21605,21606,21613,21623,21629,21631,21647,21652,21691,21715,21741,21752,21754,21757,21994,21995,21999,22001,22002,22004,22038,22073,22079,22088,22116,22154,22180,22182,22184,22185,22188,22212,22216,22223,22239,22260,22268,22276,22281,22284,22293,22296,22303,22305,22310,22312,22317,22323,22339,22345,22347,22352,22354,22355,22361,22382,22397,22416,22439,22440,22474,22491,22496,22500,22504,22507,22508,22525,22526,22551,22581,22584,22586,22607,22615,22617,22625,22642,22644,22664,22666,22683,22688,22689,22709,22713,22719,22722,22731,22740,22746,22753,22754,22756,22765,22767,22768,22789,22791,22795,22796,22798,22805,22808,22816,22819,22827,22828,22829,22834,22839,22840,22851,22852,22854,22859,22862,22872,22889,22912,22924,22942,22952,22967,22976,22986,22988,22993,23000,23027,23038,23047,23048,23051,23054,23067,23070,23073,23077,23080,23082,23083,23087,23089,23112,23113,23130,23132,23139,23142]]],["altogether",[4,4,[[1,1,1,0,1,[[68,1,1,0,1]]],[18,2,2,1,3,[[516,1,1,1,2],[616,1,1,2,3]]],[21,1,1,3,4,[[675,1,1,3,4]]]],[2044,14517,16243,17614]]],["any",[137,131,[[0,2,2,0,2,[[3,1,1,0,1],[42,1,1,1,2]]],[1,9,9,2,11,[[59,1,1,2,3],[60,1,1,3,4],[69,2,2,4,6],[71,2,2,6,8],[83,1,1,8,9],[84,2,2,9,11]]],[2,26,25,11,36,[[91,1,1,11,12],[94,1,1,12,13],[96,5,4,13,17],[100,2,2,17,19],[102,7,7,19,26],[104,1,1,26,27],[107,3,3,27,30],[109,1,1,30,31],[110,1,1,31,32],[111,1,1,32,33],[112,1,1,33,34],[113,1,1,34,35],[116,1,1,35,36]]],[3,6,6,36,42,[[122,1,1,36,37],[130,1,1,37,38],[135,1,1,38,39],[145,1,1,39,40],[146,1,1,40,41],[151,1,1,41,42]]],[4,27,23,42,65,[[154,1,1,42,43],[156,6,5,43,48],[157,4,3,48,51],[160,1,1,51,52],[164,1,1,52,53],[166,2,2,53,55],[167,1,1,55,56],[168,1,1,56,57],[169,2,2,57,59],[171,3,1,59,60],[174,1,1,60,61],[175,2,2,61,63],[176,1,1,63,64],[181,1,1,64,65]]],[5,2,2,65,67,[[197,2,2,65,67]]],[6,6,6,67,73,[[223,3,3,67,70],[226,1,1,70,71],[228,1,1,71,72],[229,1,1,72,73]]],[8,7,6,73,79,[[237,1,1,73,74],[240,1,1,74,75],[248,1,1,75,76],[249,2,1,76,77],[262,1,1,77,78],[265,1,1,78,79]]],[9,3,3,79,82,[[281,2,2,79,81],[287,1,1,81,82]]],[10,4,4,82,86,[[296,1,1,82,83],[298,1,1,83,84],[300,1,1,84,85],[305,1,1,85,86]]],[11,1,1,86,87,[[324,1,1,86,87]]],[12,3,3,87,90,[[360,1,1,87,88],[364,1,1,88,89],[366,1,1,89,90]]],[13,5,5,90,95,[[372,1,1,90,91],[374,1,1,91,92],[375,1,1,92,93],[389,1,1,93,94],[398,1,1,94,95]]],[15,1,1,95,96,[[422,1,1,95,96]]],[17,4,4,96,100,[[443,1,1,96,97],[468,1,1,97,98],[469,1,1,98,99],[472,1,1,99,100]]],[18,5,5,100,105,[[511,1,1,100,101],[536,1,1,101,102],[592,1,1,102,103],[596,1,1,103,104],[624,1,1,104,105]]],[19,4,4,105,109,[[628,1,1,105,106],[633,1,1,106,107],[657,1,1,107,108],[658,1,1,108,109]]],[20,1,1,109,110,[[667,1,1,109,110]]],[22,2,2,110,112,[[711,1,1,110,111],[734,1,1,111,112]]],[23,7,7,112,119,[[753,1,1,112,113],[761,1,1,113,114],[762,1,1,114,115],[776,1,1,115,116],[780,1,1,116,117],[786,1,1,117,118],[788,1,1,118,119]]],[25,9,9,119,128,[[810,1,1,119,120],[813,1,1,120,121],[816,1,1,121,122],[819,1,1,122,123],[832,1,1,123,124],[838,1,1,124,125],[845,3,3,125,128]]],[29,1,1,128,129,[[886,1,1,128,129]]],[36,2,2,129,131,[[910,2,2,129,131]]]],[94,1324,1792,1813,2055,2061,2123,2135,2506,2555,2566,2773,2832,2898,2900,2903,2905,3034,3040,3100,3101,3103,3104,3105,3109,3111,3190,3257,3274,3275,3334,3356,3374,3432,3463,3581,3826,4131,4300,4615,4653,4868,4975,5020,5021,5022,5027,5029,5061,5067,5074,5146,5257,5293,5311,5340,5363,5365,5367,5421,5476,5518,5519,5530,5702,6118,6121,6888,6891,6898,6966,7003,7043,7253,7324,7507,7560,7931,7997,8391,8400,8585,8903,9023,9099,9278,9863,11009,11110,11189,11311,11361,11383,11675,11890,12580,13041,13663,13710,13793,14398,14795,15847,16031,16371,16417,16575,17281,17289,17481,18299,18755,19179,19379,19402,19758,19866,19996,20036,20628,20704,20757,20860,21238,21420,21608,21612,21620,22488,22867,22868]]],["as",[2,2,[[1,1,1,0,1,[[84,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]]],[2553,11822]]],["concerning",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3602]]],["enough",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[971]]],["every",[316,261,[[0,49,33,0,33,[[0,9,5,0,5],[1,6,4,5,9],[3,1,1,9,10],[5,1,1,10,11],[6,9,4,11,15],[7,5,3,15,18],[8,9,6,18,24],[16,2,2,24,26],[19,1,1,26,27],[33,4,4,27,31],[44,1,1,31,32],[45,1,1,32,33]]],[1,25,23,33,56,[[50,1,1,33,34],[58,4,3,34,37],[59,3,3,37,40],[61,2,2,40,42],[62,2,2,42,44],[67,3,2,44,46],[74,1,1,46,47],[83,1,1,47,48],[84,5,5,48,53],[85,3,3,53,56]]],[2,16,14,56,70,[[91,1,1,56,57],[95,1,1,57,58],[96,1,1,58,59],[100,7,6,59,65],[104,4,3,65,68],[106,1,1,68,69],[116,1,1,69,70]]],[3,24,20,70,90,[[117,3,3,70,73],[119,1,1,73,74],[121,2,2,74,76],[124,2,2,76,78],[134,8,5,78,83],[135,1,1,83,84],[146,4,4,84,88],[147,2,1,88,89],[152,1,1,89,90]]],[4,17,15,90,105,[[154,1,1,90,91],[155,1,1,91,92],[160,1,1,92,93],[164,3,3,93,96],[166,3,3,96,99],[171,1,1,99,100],[172,1,1,100,101],[173,2,1,101,102],[178,1,1,102,103],[180,2,1,103,104],[182,1,1,104,105]]],[5,1,1,105,106,[[197,1,1,105,106]]],[6,2,1,106,107,[[231,2,1,106,107]]],[8,6,4,107,111,[[238,1,1,107,108],[250,1,1,108,109],[257,3,1,109,110],[258,1,1,110,111]]],[9,6,6,111,117,[[279,2,2,111,113],[281,2,2,113,115],[286,2,2,115,117]]],[10,6,5,117,122,[[301,2,2,117,119],[304,2,1,119,120],[309,1,1,120,121],[312,1,1,121,122]]],[11,10,6,122,128,[[315,5,2,122,124],[320,1,1,124,125],[328,1,1,125,126],[329,2,1,126,127],[337,1,1,127,128]]],[12,3,3,128,131,[[350,1,1,128,129],[363,1,1,129,130],[365,1,1,130,131]]],[13,10,10,131,141,[[367,1,1,131,132],[368,1,1,132,133],[377,2,2,133,135],[386,1,1,135,136],[394,3,3,136,139],[397,2,2,139,141]]],[15,3,3,141,144,[[417,1,1,141,142],[422,2,2,142,144]]],[16,10,9,144,153,[[426,1,1,144,145],[428,1,1,145,146],[429,1,1,146,147],[431,1,1,147,148],[433,4,3,148,151],[434,2,2,151,153]]],[17,7,7,153,160,[[447,1,1,153,154],[455,1,1,154,155],[456,1,1,155,156],[463,1,1,156,157],[472,1,1,157,158],[474,1,1,158,159],[477,1,1,159,160]]],[18,10,10,160,170,[[484,1,1,160,161],[509,1,1,161,162],[516,2,2,162,164],[527,1,1,164,165],[581,1,1,165,166],[596,2,2,166,168],[622,1,1,168,169],[627,1,1,169,170]]],[19,6,6,170,176,[[629,1,1,170,171],[634,1,1,171,172],[641,1,1,172,173],[642,1,1,173,174],[647,1,1,174,175],[654,1,1,175,176]]],[20,10,7,176,183,[[661,5,3,176,179],[662,1,1,179,180],[666,2,2,180,182],[670,2,1,182,183]]],[22,23,19,183,202,[[680,4,2,183,185],[682,1,1,185,186],[685,1,1,186,187],[687,2,2,187,189],[691,1,1,189,190],[693,1,1,190,191],[697,1,1,191,192],[702,1,1,192,193],[708,2,1,193,194],[718,1,1,194,195],[722,1,1,195,196],[723,2,1,196,197],[729,1,1,197,198],[730,1,1,198,199],[732,1,1,199,200],[735,1,1,200,201],[736,1,1,201,202]]],[23,23,18,202,220,[[746,2,1,202,203],[747,3,2,203,205],[748,1,1,205,206],[753,2,1,206,207],[754,1,1,207,208],[756,1,1,208,209],[757,1,1,209,210],[760,2,1,210,211],[773,1,1,211,212],[774,1,1,212,213],[775,2,2,213,215],[787,1,1,215,216],[791,1,1,216,217],[792,3,2,217,219],[795,1,1,219,220]]],[24,2,2,220,222,[[798,1,1,220,221],[800,1,1,221,222]]],[25,33,26,222,248,[[807,3,1,222,223],[809,1,1,223,224],[813,3,3,224,227],[814,1,1,227,228],[817,4,3,228,231],[818,1,1,231,232],[821,3,2,232,234],[822,3,2,234,236],[825,1,1,236,237],[829,1,1,237,238],[830,2,1,238,239],[835,2,2,239,241],[839,1,1,241,242],[840,3,2,242,244],[845,3,3,244,247],[848,1,1,247,248]]],[26,1,1,248,249,[[860,1,1,248,249]]],[27,1,1,249,250,[[870,1,1,249,250]]],[29,3,3,250,253,[[880,1,1,250,251],[886,2,2,251,253]]],[34,1,1,253,254,[[903,1,1,253,254]]],[35,1,1,254,255,[[908,1,1,254,255]]],[36,1,1,255,256,[[910,1,1,255,256]]],[37,5,4,256,260,[[915,1,1,256,257],[920,1,1,257,258],[922,2,1,258,259],[924,1,1,259,260]]],[38,1,1,260,261,[[925,1,1,260,261]]]],[20,25,27,28,29,35,39,49,50,101,142,163,173,180,182,184,200,202,207,210,215,217,220,221,409,420,508,995,1002,1003,1004,1359,1420,1554,1761,1764,1767,1782,1789,1792,1832,1860,1879,1880,2021,2025,2197,2515,2541,2552,2553,2554,2560,2567,2568,2574,2775,2872,2889,3023,3030,3031,3032,3038,3043,3172,3180,3185,3250,3598,3606,3624,3626,3707,3794,3801,3955,3956,4264,4266,4267,4286,4288,4304,4652,4657,4659,4661,4681,4887,4972,4981,5140,5242,5253,5271,5296,5304,5309,5409,5440,5452,5577,5672,5717,6121,7113,7294,7569,7789,7824,8326,8354,8393,8425,8556,8566,9123,9124,9241,9405,9508,9595,9601,9736,9967,9993,10231,10761,11109,11164,11196,11225,11426,11437,11614,11768,11788,11789,11873,11875,12395,12577,12580,12724,12761,12765,12806,12828,12830,12834,12861,12862,13138,13348,13388,13514,13776,13842,13924,14006,14361,14517,14523,14678,15582,16002,16026,16336,16400,16442,16587,16787,16810,16957,17176,17360,17370,17376,17385,17464,17467,17537,17697,17700,17738,17805,17834,17846,17913,17962,18018,18105,18242,18424,18556,18584,18686,18701,18740,18770,18792,18985,19008,19015,19056,19179,19215,19253,19278,19352,19661,19673,19716,19721,20003,20077,20088,20117,20229,20351,20421,20576,20614,20694,20702,20703,20726,20786,20787,20793,20848,20923,20942,20951,20954,21060,21170,21201,21319,21321,21445,21452,21465,21604,21628,21629,21688,22072,22209,22387,22484,22491,22741,22839,22869,22939,23020,23049,23089,23100]]],["generally",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20118]]],["long",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7240]]],["man",[6,6,[[0,1,1,0,1,[[15,1,1,0,1]]],[1,1,1,1,2,[[84,1,1,1,2]]],[3,2,2,2,4,[[148,2,2,2,4]]],[18,1,1,4,5,[[620,1,1,4,5]]],[19,1,1,5,6,[[646,1,1,5,6]]]],[393,2555,4745,4747,16295,16931]]],["man's",[2,2,[[0,1,1,0,1,[[15,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]]],[393,6710]]],["manner",[35,33,[[1,10,10,0,10,[[50,1,1,0,1],[61,1,1,1,2],[71,1,1,2,3],[80,2,2,3,5],[84,4,4,5,9],[85,1,1,9,10]]],[2,8,8,10,18,[[96,1,1,10,11],[100,2,2,11,13],[103,1,1,13,14],[106,1,1,14,15],[108,1,1,15,16],[109,1,1,16,17],[112,1,1,17,18]]],[4,2,2,18,20,[[156,1,1,18,19],[179,1,1,19,20]]],[12,10,8,20,28,[[343,1,1,20,21],[349,1,1,21,22],[355,1,1,22,23],[359,2,1,23,24],[360,1,1,24,25],[365,2,1,25,26],[366,2,2,26,28]]],[13,3,3,28,31,[[368,1,1,28,29],[398,2,2,29,31]]],[18,1,1,31,32,[[584,1,1,31,32]]],[21,1,1,32,33,[[677,1,1,32,33]]]],[1546,1832,2122,2423,2425,2560,2562,2564,2566,2567,2906,3024,3041,3165,3245,3304,3343,3433,5019,5606,10502,10757,10900,10979,11012,11164,11166,11169,11225,11902,11903,15717,17640]]],["many",[2,2,[[9,1,1,0,1,[[268,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]]],[8072,16601]]],["nothing",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5666]]],["one",[91,87,[[0,3,3,0,3,[[3,1,1,0,1],[29,2,2,1,3]]],[1,9,9,3,12,[[63,1,1,3,4],[75,1,1,4,5],[79,2,2,5,7],[82,1,1,7,8],[84,2,2,8,10],[85,1,1,10,11],[87,1,1,11,12]]],[2,2,2,12,14,[[95,1,1,12,13],[100,1,1,13,14]]],[3,13,13,14,27,[[120,5,5,14,19],[121,1,1,19,20],[129,1,1,20,21],[132,1,1,21,22],[133,1,1,22,23],[134,2,2,23,25],[137,1,1,25,26],[151,1,1,26,27]]],[4,2,2,27,29,[[153,1,1,27,28],[156,1,1,28,29]]],[6,2,1,29,30,[[217,2,1,29,30]]],[8,3,3,30,33,[[237,1,1,30,31],[238,1,1,31,32],[257,1,1,32,33]]],[10,1,1,33,34,[[299,1,1,33,34]]],[13,3,3,34,37,[[373,1,1,34,35],[396,1,1,35,36],[397,1,1,36,37]]],[14,3,3,37,40,[[405,1,1,37,38],[410,1,1,38,39],[411,1,1,39,40]]],[17,2,2,40,42,[[475,2,2,40,42]]],[18,8,8,42,50,[[506,1,1,42,43],[530,1,1,43,44],[540,1,1,44,45],[548,1,1,45,46],[592,1,1,46,47],[596,1,1,47,48],[605,1,1,48,49],[612,1,1,49,50]]],[19,3,3,50,53,[[628,1,1,50,51],[643,1,1,51,52],[648,1,1,52,53]]],[20,1,1,53,54,[[668,1,1,53,54]]],[22,12,11,54,65,[[679,1,1,54,55],[682,1,1,55,56],[685,1,1,56,57],[687,1,1,57,58],[691,2,1,58,59],[693,1,1,59,60],[694,1,1,60,61],[697,1,1,61,62],[721,1,1,62,63],[733,1,1,63,64],[734,1,1,64,65]]],[23,14,12,65,77,[[749,1,1,65,66],[750,2,1,66,67],[752,3,2,67,69],[759,1,1,69,70],[762,1,1,70,71],[763,1,1,71,72],[764,1,1,72,73],[767,1,1,73,74],[774,1,1,74,75],[793,1,1,75,76],[794,1,1,76,77]]],[25,3,3,77,80,[[817,3,3,77,80]]],[26,1,1,80,81,[[861,1,1,80,81]]],[27,1,1,81,82,[[865,1,1,81,82]]],[29,1,1,82,83,[[886,1,1,82,83]]],[35,1,1,83,84,[[907,1,1,83,84]]],[37,2,2,84,86,[[915,1,1,84,85],[924,1,1,85,86]]],[38,1,1,86,87,[[926,1,1,86,87]]]],[93,863,865,1896,2237,2395,2396,2480,2552,2555,2568,2659,2867,3023,3773,3778,3782,3786,3790,3794,4077,4197,4250,4268,4270,4348,4860,4914,5008,6699,7276,7287,7794,9059,11345,11844,11870,12102,12235,12241,13875,13876,14317,14722,14850,14994,15838,16058,16127,16193,16419,16845,16989,17496,17677,17736,17804,17846,17921,17963,17976,18021,18512,18741,18759,19064,19102,19159,19163,19325,19400,19415,19429,19501,19683,20144,20179,20777,20787,20806,22082,22136,22489,22820,22939,23084,23120]]],["open",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17841]]],["over",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[683]]],["place",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18249]]],["thing",[19,18,[[0,6,6,0,6,[[0,3,3,0,3],[5,1,1,3,4],[6,1,1,4,5],[7,1,1,5,6]]],[1,1,1,6,7,[[69,1,1,6,7]]],[2,4,3,7,10,[[104,3,2,7,9],[111,1,1,9,10]]],[3,2,2,10,12,[[134,2,2,10,12]]],[4,1,1,12,13,[[156,1,1,12,13]]],[11,1,1,13,14,[[316,1,1,13,14]]],[18,1,1,14,15,[[546,1,1,14,15]]],[22,1,1,15,16,[[697,1,1,15,16]]],[25,2,2,16,18,[[845,1,1,16,17],[848,1,1,17,18]]]],[24,29,30,154,167,204,2068,3178,3188,3373,4271,4272,5022,9605,14969,18011,21630,21688]]],["things",[9,9,[[0,2,2,0,2,[[8,1,1,0,1],[23,1,1,1,2]]],[3,1,1,2,3,[[117,1,1,2,3]]],[11,1,1,3,4,[[326,1,1,3,4]]],[12,1,1,4,5,[[366,1,1,4,5]]],[13,1,1,5,6,[[389,1,1,5,6]]],[22,1,1,6,7,[[712,1,1,6,7]]],[23,2,2,7,9,[[765,1,1,7,8],[795,1,1,8,9]]]],[208,592,3654,9899,11178,11664,18304,19454,20231]]],["thou",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11227]]],["throughout",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2534]]],["to",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9024]]],["utterly",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22699]]],["what",[3,2,[[9,1,1,0,1,[[281,1,1,0,1]]],[13,2,1,1,2,[[372,2,1,1,2]]]],[8424,11311]]],["whatsoever",[27,24,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,3,3,1,4,[[62,1,1,1,2],[78,1,1,2,3],[79,1,1,3,4]]],[2,10,9,4,13,[[94,1,1,4,5],[100,4,3,5,8],[102,1,1,8,9],[110,1,1,9,10],[111,1,1,10,11],[112,2,2,11,13]]],[3,1,1,13,14,[[146,1,1,13,14]]],[4,5,5,14,19,[[154,1,1,14,15],[164,4,4,15,19]]],[6,1,1,19,20,[[220,1,1,19,20]]],[8,1,1,20,21,[[249,1,1,20,21]]],[10,3,2,21,23,[[298,2,1,21,22],[310,1,1,22,23]]],[13,2,1,23,24,[[372,2,1,23,24]]]],[202,1869,2373,2411,2833,3024,3029,3039,3110,3363,3374,3431,3432,4660,4975,5248,5255,5260,5261,6826,7544,9022,9414,11310]]],["whensoever",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[871]]],["where",[1,1,[[0,1,1,0,1,[[12,1,1,0,1]]]],[328]]],["wheresoever",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3064]]],["which",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1970]]],["whole",[129,123,[[0,9,9,0,9,[[1,3,3,0,3],[6,1,1,3,4],[7,1,1,4,5],[8,1,1,5,6],[10,2,2,6,8],[12,1,1,8,9]]],[1,7,7,9,16,[[59,1,1,9,10],[61,1,1,10,11],[65,3,3,11,14],[68,1,1,14,15],[78,1,1,15,16]]],[2,4,4,16,20,[[93,2,2,16,18],[97,1,1,18,19],[99,1,1,19,20]]],[3,6,6,20,26,[[119,1,1,20,21],[124,1,1,21,22],[130,2,2,22,24],[136,2,2,24,26]]],[4,3,3,26,29,[[154,1,1,26,27],[156,1,1,27,28],[181,1,1,28,29]]],[5,5,5,29,34,[[197,1,1,29,30],[204,1,1,30,31],[208,3,3,31,34]]],[6,1,1,34,35,[[231,1,1,34,35]]],[9,4,4,35,39,[[267,1,1,35,36],[269,1,1,36,37],[272,1,1,37,38],[280,1,1,38,39]]],[10,3,2,39,41,[[296,2,1,39,40],[301,1,1,40,41]]],[11,1,1,41,42,[[321,1,1,41,42]]],[13,6,6,42,48,[[372,1,1,42,43],[381,1,1,43,44],[382,1,1,44,45],[392,1,1,45,46],[396,1,1,46,47],[399,1,1,47,48]]],[14,1,1,48,49,[[404,1,1,48,49]]],[15,1,1,49,50,[[419,1,1,49,50]]],[16,1,1,50,51,[[428,1,1,50,51]]],[17,4,4,51,55,[[463,1,1,51,52],[469,1,1,52,53],[472,1,1,53,54],[476,1,1,54,55]]],[18,13,13,55,68,[[486,1,1,55,56],[525,1,1,56,57],[549,1,1,57,58],[574,1,1,58,59],[582,1,1,59,60],[588,1,1,60,61],[596,6,6,61,67],[615,1,1,67,68]]],[19,1,1,68,69,[[643,1,1,68,69]]],[20,2,1,69,70,[[670,2,1,69,70]]],[22,14,12,70,82,[[679,2,1,70,71],[681,2,1,71,72],[684,1,1,72,73],[688,1,1,73,74],[691,1,1,74,75],[692,4,4,75,79],[699,1,1,79,80],[706,1,1,80,81],[732,1,1,81,82]]],[23,22,20,82,102,[[745,1,1,82,83],[747,1,1,83,84],[748,3,3,84,87],[751,1,1,87,88],[752,1,1,88,89],[756,1,1,89,90],[757,2,1,90,91],[759,1,1,91,92],[768,1,1,92,93],[769,1,1,93,94],[775,1,1,94,95],[776,2,1,95,96],[779,1,1,96,97],[781,1,1,97,98],[789,1,1,98,99],[794,1,1,99,100],[795,2,2,100,102]]],[24,1,1,102,103,[[798,1,1,102,103]]],[25,10,10,103,113,[[806,1,1,103,104],[808,1,1,104,105],[811,1,1,105,106],[833,1,1,106,107],[836,1,1,107,108],[838,1,1,108,109],[840,1,1,109,110],[844,2,2,110,112],[846,1,1,112,113]]],[26,3,3,113,116,[[857,1,1,113,114],[858,1,1,114,115],[860,1,1,115,116]]],[29,1,1,116,117,[[881,1,1,116,117]]],[32,1,1,117,118,[[896,1,1,117,118]]],[35,1,1,118,119,[[906,1,1,118,119]]],[37,3,3,119,122,[[914,2,2,119,121],[915,1,1,121,122]]],[38,1,1,122,123,[[927,1,1,122,123]]]],[36,41,43,178,192,224,267,270,327,1792,1822,1949,1950,1957,2044,2354,2807,2808,2938,2983,3699,3948,4110,4137,4312,4333,4963,5023,5702,6130,6294,6438,6442,6444,7115,8031,8100,8176,8363,8918,9142,9764,11285,11505,11518,11744,11850,11916,12091,12486,12753,13528,13696,13772,13899,14022,14636,15019,15483,15622,15794,15900,15908,15932,15956,15967,16043,16232,16873,17536,17659,17708,17772,17862,17911,17935,17954,17957,17959,18043,18186,18728,18964,19012,19047,19054,19056,19134,19169,19260,19277,19325,19531,19545,19731,19772,19826,19884,20044,20189,20253,20259,20347,20556,20590,20645,21252,21358,21408,21473,21583,21584,21636,21966,22000,22053,22396,22633,22805,22932,22936,22939,23129]]],["wholly",[9,9,[[12,1,1,0,1,[[365,1,1,0,1]]],[17,1,1,1,2,[[456,1,1,1,2]]],[22,1,1,2,3,[[700,1,1,2,3]]],[23,3,3,3,6,[[746,1,1,3,4],[750,1,1,4,5],[794,1,1,5,6]]],[25,1,1,6,7,[[812,1,1,6,7]]],[29,2,2,7,9,[[886,1,1,7,8],[887,1,1,8,9]]]],[11164,13378,18053,18986,19095,20179,20670,22489,22500]]],["whoso",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3024]]],["whosoever",[30,29,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,7,7,1,8,[[61,2,2,1,3],[68,1,1,3,4],[80,2,2,4,6],[84,2,2,6,8]]],[2,10,10,8,18,[[96,1,1,8,9],[100,3,3,9,12],[104,5,5,12,17],[106,1,1,17,18]]],[3,3,2,18,20,[[121,1,1,18,19],[147,2,1,19,20]]],[5,1,1,20,21,[[206,1,1,20,21]]],[11,1,1,21,22,[[333,1,1,21,22]]],[12,1,1,22,23,[[363,1,1,22,23]]],[13,1,1,23,24,[[379,1,1,23,24]]],[14,1,1,24,25,[[403,1,1,24,25]]],[19,2,2,25,27,[[633,1,1,25,26],[647,1,1,26,27]]],[22,1,1,27,28,[[737,1,1,27,28]]],[23,1,1,28,29,[[763,1,1,28,29]]]],[94,1831,1835,2038,2434,2435,2533,2536,2904,3021,3022,3028,3178,3187,3189,3190,3195,3249,3794,4683,6381,10131,11105,11462,12020,16569,16955,18808,19410]]],["withal",[1,1,[[10,1,1,0,1,[[309,1,1,0,1]]]],[9388]]]]},{"k":"H3606","v":[["*",[104,75,[[14,18,15,0,15,[[406,2,2,0,2],[407,1,1,2,3],[408,3,3,3,6],[409,12,9,6,15]]],[26,86,60,15,75,[[851,21,13,15,28],[852,15,10,28,38],[853,14,11,38,49],[854,7,6,49,55],[855,21,14,55,69],[856,8,6,69,75]]]],[12124,12130,12141,12162,12163,12168,12186,12187,12189,12190,12194,12196,12197,12198,12199,21766,21768,21770,21782,21788,21793,21796,21797,21798,21799,21802,21803,21806,21809,21810,21812,21814,21815,21817,21822,21829,21835,21836,21838,21843,21846,21848,21849,21855,21857,21858,21865,21872,21874,21881,21882,21886,21893,21896,21897,21906,21908,21909,21910,21912,21914,21915,21917,21920,21927,21928,21929,21930,21931,21940,21947,21949,21952,21956,21960]]],["+",[36,34,[[14,7,7,0,7,[[406,1,1,0,1],[408,1,1,1,2],[409,5,5,2,7]]],[26,29,27,7,34,[[851,10,9,7,16],[852,4,4,16,20],[853,2,2,20,22],[854,3,3,22,25],[855,10,9,25,34]]]],[12124,12162,12187,12190,12194,12196,12199,21766,21768,21770,21782,21793,21796,21798,21799,21803,21814,21815,21829,21836,21846,21855,21881,21886,21896,21908,21909,21912,21914,21915,21920,21927,21928,21929]]],["All",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21912]]],["all",[48,40,[[14,10,8,0,8,[[406,1,1,0,1],[407,1,1,1,2],[408,2,2,2,4],[409,6,4,4,8]]],[26,38,32,8,40,[[851,7,6,8,14],[852,8,6,14,20],[853,11,9,20,29],[854,4,4,29,33],[855,2,1,33,34],[856,6,6,34,40]]]],[12130,12141,12163,12168,12186,12189,12194,12198,21770,21796,21797,21798,21802,21806,21809,21810,21812,21814,21817,21822,21838,21843,21848,21849,21855,21857,21858,21872,21874,21882,21893,21896,21897,21930,21940,21947,21949,21952,21956,21960]]],["any",[8,8,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,7,7,1,8,[[851,2,2,1,3],[852,1,1,3,4],[855,4,4,4,8]]]],[12197,21768,21788,21835,21909,21910,21912,21917]]],["every",[4,4,[[26,4,4,0,4,[[852,2,2,0,2],[855,2,2,2,4]]]],[21817,21836,21917,21931]]],["this",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21865]]],["whole",[6,6,[[26,6,6,0,6,[[851,2,2,0,2],[855,2,2,2,4],[856,2,2,4,6]]]],[21793,21806,21906,21908,21956,21960]]]]},{"k":"H3607","v":[["*",[18,17,[[0,2,2,0,2,[[7,1,1,0,1],[22,1,1,1,2]]],[1,1,1,2,3,[[85,1,1,2,3]]],[3,1,1,3,4,[[127,1,1,3,4]]],[8,2,2,4,6,[[241,1,1,4,5],[260,1,1,5,6]]],[18,4,4,6,10,[[517,2,2,6,8],[565,1,1,8,9],[596,1,1,9,10]]],[20,1,1,10,11,[[666,1,1,10,11]]],[22,1,1,11,12,[[721,1,1,11,12]]],[23,2,2,12,14,[[776,2,2,12,14]]],[25,1,1,14,15,[[832,1,1,14,15]]],[26,1,1,15,16,[[858,1,1,15,16]]],[36,2,1,16,17,[[909,2,1,16,17]]]],[185,577,2572,4052,7341,7894,14534,14536,15316,15999,17466,18511,19733,19734,21245,22012,22850]]],["+",[2,2,[[20,1,1,0,1,[[666,1,1,0,1]]],[22,1,1,1,2,[[721,1,1,1,2]]]],[17466,18511]]],["Withhold",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14536]]],["finish",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22012]]],["forbid",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4052]]],["kept",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7894]]],["refrained",[2,2,[[18,2,2,0,2,[[517,1,1,0,1],[596,1,1,1,2]]]],[14534,15999]]],["restrained",[2,2,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,1,1,1,2,[[85,1,1,1,2]]]],[185,2572]]],["stayed",[3,2,[[25,1,1,0,1,[[832,1,1,0,1]]],[36,2,1,1,2,[[909,2,1,1,2]]]],[21245,22850]]],["up",[4,4,[[8,1,1,0,1,[[241,1,1,0,1]]],[18,1,1,1,2,[[565,1,1,1,2]]],[23,2,2,2,4,[[776,2,2,2,4]]]],[7341,15316,19733,19734]]],["withhold",[1,1,[[0,1,1,0,1,[[22,1,1,0,1]]]],[577]]]]},{"k":"H3608","v":[["*",[10,10,[[10,1,1,0,1,[[312,1,1,0,1]]],[11,3,3,1,4,[[329,1,1,1,2],[337,2,2,2,4]]],[13,1,1,4,5,[[384,1,1,4,5]]],[22,2,2,5,7,[[720,2,2,5,7]]],[23,3,3,7,10,[[781,2,2,7,9],[796,1,1,9,10]]]],[9507,9987,10249,10251,11568,18487,18502,19889,19892,20309]]],["+",[6,6,[[10,1,1,0,1,[[312,1,1,0,1]]],[11,2,2,1,3,[[329,1,1,1,2],[337,1,1,2,3]]],[13,1,1,3,4,[[384,1,1,3,4]]],[23,2,2,4,6,[[781,2,2,4,6]]]],[9507,9987,10249,11568,19889,19892]]],["prison",[4,4,[[11,1,1,0,1,[[337,1,1,0,1]]],[22,2,2,1,3,[[720,2,2,1,3]]],[23,1,1,3,4,[[796,1,1,3,4]]]],[10251,18487,18502,20309]]]]},{"k":"H3609","v":[["Chileab",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8084]]]]},{"k":"H3610","v":[["*",[4,2,[[2,3,1,0,1,[[108,3,1,0,1]]],[4,1,1,1,2,[[174,1,1,1,2]]]],[3300,5479]]],["kind",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3300]]],["mingled",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3300]]],["seed",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3300]]],["seeds",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5479]]]]},{"k":"H3611","v":[["*",[32,31,[[1,2,2,0,2,[[60,1,1,0,1],[71,1,1,1,2]]],[4,1,1,2,3,[[175,1,1,2,3]]],[6,1,1,3,4,[[217,1,1,3,4]]],[8,2,2,4,6,[[252,1,1,4,5],[259,1,1,5,6]]],[9,3,3,6,9,[[269,1,1,6,7],[275,1,1,7,8],[282,1,1,8,9]]],[10,7,6,9,15,[[304,1,1,9,10],[306,1,1,10,11],[311,4,3,11,14],[312,1,1,14,15]]],[11,3,3,15,18,[[320,1,1,15,16],[321,2,2,16,18]]],[17,1,1,18,19,[[465,1,1,18,19]]],[18,5,5,19,24,[[499,2,2,19,21],[536,2,2,21,23],[545,1,1,23,24]]],[19,2,2,24,26,[[653,2,2,24,26]]],[20,1,1,26,27,[[667,1,1,26,27]]],[22,3,3,27,30,[[734,2,2,27,29],[744,1,1,29,30]]],[23,1,1,30,31,[[759,1,1,30,31]]]],[1813,2144,5518,6699,7661,7853,8089,8235,8435,9229,9287,9470,9474,9475,9518,9740,9766,9792,13558,14220,14224,14796,14804,14923,17152,17158,17479,18763,18764,18925,19318]]],["+",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18925]]],["dog",[14,14,[[1,1,1,0,1,[[60,1,1,0,1]]],[4,1,1,1,2,[[175,1,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]],[8,2,2,3,5,[[252,1,1,3,4],[259,1,1,4,5]]],[9,2,2,5,7,[[275,1,1,5,6],[282,1,1,6,7]]],[11,1,1,7,8,[[320,1,1,7,8]]],[18,3,3,8,11,[[499,1,1,8,9],[536,2,2,9,11]]],[19,2,2,11,13,[[653,2,2,11,13]]],[20,1,1,13,14,[[667,1,1,13,14]]]],[1813,5518,6699,7661,7853,8235,8435,9740,14224,14796,14804,17152,17158,17479]]],["dog's",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8089]]],["dogs",[16,15,[[1,1,1,0,1,[[71,1,1,0,1]]],[10,7,6,1,7,[[304,1,1,1,2],[306,1,1,2,3],[311,4,3,3,6],[312,1,1,6,7]]],[11,2,2,7,9,[[321,2,2,7,9]]],[17,1,1,9,10,[[465,1,1,9,10]]],[18,2,2,10,12,[[499,1,1,10,11],[545,1,1,11,12]]],[22,2,2,12,14,[[734,2,2,12,14]]],[23,1,1,14,15,[[759,1,1,14,15]]]],[2144,9229,9287,9470,9474,9475,9518,9766,9792,13558,14220,14923,18763,18764,19318]]]]},{"k":"H3612","v":[["*",[36,36,[[3,9,9,0,9,[[129,2,2,0,2],[130,4,4,2,6],[142,1,1,6,7],[148,1,1,7,8],[150,1,1,8,9]]],[4,1,1,9,10,[[153,1,1,9,10]]],[5,9,9,10,19,[[200,3,3,10,13],[201,5,5,13,18],[207,1,1,18,19]]],[6,6,6,19,25,[[211,5,5,19,24],[213,1,1,24,25]]],[8,2,2,25,27,[[260,1,1,25,26],[265,1,1,26,27]]],[12,9,9,27,36,[[339,7,7,27,34],[341,1,1,34,35],[343,1,1,35,36]]]],[4081,4105,4114,4132,4138,4146,4554,4730,4835,4928,6193,6200,6201,6215,6216,6218,6219,6220,6393,6521,6522,6523,6524,6529,6577,7864,7992,10324,10325,10348,10352,10354,10355,10356,10400,10510]]],["Caleb",[32,32,[[3,9,9,0,9,[[129,2,2,0,2],[130,4,4,2,6],[142,1,1,6,7],[148,1,1,7,8],[150,1,1,8,9]]],[4,1,1,9,10,[[153,1,1,9,10]]],[5,9,9,10,19,[[200,3,3,10,13],[201,5,5,13,18],[207,1,1,18,19]]],[6,4,4,19,23,[[211,4,4,19,23]]],[8,2,2,23,25,[[260,1,1,23,24],[265,1,1,24,25]]],[12,7,7,25,32,[[339,5,5,25,30],[341,1,1,30,31],[343,1,1,31,32]]]],[4081,4105,4114,4132,4138,4146,4554,4730,4835,4928,6193,6200,6201,6215,6216,6218,6219,6220,6393,6521,6523,6524,6529,7864,7992,10324,10325,10348,10355,10356,10400,10510]]],["Caleb's",[4,4,[[6,2,2,0,2,[[211,1,1,0,1],[213,1,1,1,2]]],[12,2,2,2,4,[[339,2,2,2,4]]]],[6522,6577,10352,10354]]]]},{"k":"H3613","v":[["Calebephratah",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10330]]]]},{"k":"H3614","v":[]},{"k":"H3615","v":[["*",[207,201,[[0,17,16,0,16,[[1,2,2,0,2],[5,1,1,2,3],[16,1,1,3,4],[17,1,1,4,5],[20,1,1,5,6],[23,5,4,6,10],[26,1,1,10,11],[40,2,2,11,13],[42,1,1,13,14],[43,1,1,14,15],[48,1,1,15,16]]],[1,10,10,16,26,[[54,2,2,16,18],[80,1,1,18,19],[81,2,2,19,21],[82,2,2,21,23],[83,1,1,23,24],[88,1,1,24,25],[89,1,1,25,26]]],[2,5,5,26,31,[[105,1,1,26,27],[108,1,1,27,28],[112,1,1,28,29],[115,2,2,29,31]]],[3,7,7,31,38,[[120,1,1,31,32],[123,1,1,32,33],[132,3,3,33,36],[133,1,1,36,37],[141,1,1,37,38]]],[4,7,7,38,45,[[159,1,1,38,39],[172,1,1,39,40],[178,1,1,40,41],[180,1,1,41,42],[183,1,1,42,43],[184,2,2,43,45]]],[5,5,5,45,50,[[194,1,1,45,46],[196,1,1,46,47],[205,2,2,47,49],[210,1,1,49,50]]],[6,2,2,50,52,[[213,1,1,50,51],[225,1,1,51,52]]],[7,4,4,52,56,[[233,2,2,52,54],[234,2,2,54,56]]],[8,11,11,56,67,[[237,1,1,56,57],[238,1,1,57,58],[245,1,1,58,59],[248,1,1,59,60],[250,1,1,60,61],[253,1,1,61,62],[255,3,3,62,65],[259,1,1,65,66],[260,1,1,66,67]]],[9,7,7,67,74,[[272,1,1,67,68],[277,1,1,68,69],[279,2,2,69,71],[287,1,1,71,72],[288,2,2,72,74]]],[10,12,12,74,86,[[291,1,1,74,75],[293,1,1,75,76],[296,3,3,76,79],[297,2,2,79,81],[298,1,1,81,82],[299,1,1,82,83],[307,2,2,83,85],[312,1,1,85,86]]],[11,3,3,86,89,[[322,1,1,86,87],[325,2,2,87,89]]],[12,3,3,89,92,[[353,1,1,89,90],[364,1,1,90,91],[365,1,1,91,92]]],[13,17,16,92,108,[[370,1,1,92,93],[373,2,2,93,95],[374,2,2,95,97],[384,1,1,97,98],[386,1,1,98,99],[390,2,2,99,101],[395,4,4,101,105],[397,3,2,105,107],[402,1,1,107,108]]],[14,4,4,108,112,[[403,1,1,108,109],[411,2,2,109,111],[412,1,1,111,112]]],[15,1,1,112,113,[[416,1,1,112,113]]],[16,1,1,113,114,[[432,1,1,113,114]]],[17,11,11,114,125,[[439,1,1,114,115],[442,2,2,115,117],[444,1,1,117,118],[446,1,1,118,119],[452,1,1,119,120],[454,1,1,120,121],[456,1,1,121,122],[466,1,1,122,123],[468,1,1,123,124],[471,1,1,124,125]]],[18,23,21,125,146,[[495,1,1,125,126],[508,1,1,126,127],[514,2,1,127,128],[516,1,1,128,129],[536,2,1,129,130],[546,1,1,130,131],[548,2,2,131,133],[549,1,1,133,134],[550,1,1,134,135],[551,1,1,135,136],[555,1,1,136,137],[561,1,1,137,138],[567,2,2,138,140],[579,1,1,140,141],[596,4,4,141,145],[620,1,1,145,146]]],[19,3,3,146,149,[[632,1,1,146,147],[643,1,1,147,148],[649,1,1,148,149]]],[22,12,12,149,161,[[679,1,1,149,150],[688,2,2,150,152],[693,1,1,152,153],[694,1,1,153,154],[699,1,1,154,155],[702,1,1,155,156],[705,1,1,156,157],[707,1,1,157,158],[709,1,1,158,159],[710,1,1,159,160],[727,1,1,160,161]]],[23,13,13,161,174,[[749,1,1,161,162],[752,1,1,162,163],[753,1,1,163,164],[754,1,1,164,165],[758,2,2,165,167],[760,1,1,167,168],[764,1,1,168,169],[770,1,1,169,170],[787,1,1,170,171],[788,1,1,171,172],[793,1,1,172,173],[795,1,1,173,174]]],[24,5,5,174,179,[[798,2,2,174,176],[799,1,1,176,177],[800,2,2,177,179]]],[25,16,15,179,194,[[805,2,2,179,181],[806,3,2,181,183],[807,1,1,183,184],[808,1,1,184,185],[814,2,2,185,187],[821,3,3,187,190],[823,1,1,190,191],[843,1,1,191,192],[844,2,2,192,194]]],[26,4,3,194,197,[[860,2,2,194,196],[861,2,1,196,197]]],[27,1,1,197,198,[[872,1,1,197,198]]],[29,1,1,198,199,[[885,1,1,198,199]]],[37,1,1,199,200,[[915,1,1,199,200]]],[38,1,1,200,201,[[927,1,1,200,201]]]],[31,32,153,419,457,528,606,610,613,636,757,1225,1248,1292,1336,1506,1645,1646,2438,2448,2450,2476,2478,2529,2696,2740,3221,3290,3424,3540,3568,3758,3851,4215,4225,4239,4254,4482,5133,5436,5578,5632,5752,5781,5803,6026,6084,6370,6372,6496,6586,6946,7170,7172,7175,7190,7273,7288,7431,7495,7578,7677,7737,7739,7763,7855,7878,8175,8278,8353,8356,8585,8640,8641,8758,8817,8905,8910,8934,8935,8974,9039,9052,9331,9333,9491,9818,9888,9890,10822,11133,11163,11257,11325,11335,11354,11362,11552,11610,11687,11691,11808,11819,11820,11825,11855,11861,12015,12017,12238,12251,12269,12361,12814,12939,13014,13017,13073,13128,13265,13324,13368,13604,13671,13747,14155,14341,14470,14522,14803,14938,14985,14989,15020,15046,15059,15146,15261,15385,15387,15524,15979,15980,15985,16021,16300,16528,16870,17023,17682,17868,17875,17966,17973,18051,18108,18161,18213,18253,18269,18640,19061,19173,19191,19226,19299,19305,19340,19440,19580,19998,20037,20164,20275,20343,20354,20376,20431,20437,20535,20537,20558,20559,20575,20585,20722,20723,20903,20908,20916,21007,21567,21595,21599,22052,22072,22088,22246,22466,22940,23126]]],["+",[13,13,[[0,2,2,0,2,[[40,1,1,0,1],[42,1,1,1,2]]],[1,1,1,2,3,[[89,1,1,2,3]]],[2,1,1,3,4,[[108,1,1,3,4]]],[7,1,1,4,5,[[233,1,1,4,5]]],[8,1,1,5,6,[[237,1,1,5,6]]],[10,1,1,6,7,[[297,1,1,6,7]]],[13,2,2,7,9,[[370,1,1,7,8],[373,1,1,8,9]]],[19,1,1,9,10,[[643,1,1,9,10]]],[24,1,1,10,11,[[800,1,1,10,11]]],[25,2,2,11,13,[[805,1,1,11,12],[814,1,1,12,13]]]],[1225,1292,2740,3290,7170,7273,8935,11257,11335,16870,20431,20535,20723]]],["Consume",[1,1,[[18,1,1,0,1,[[536,1,1,0,1]]]],[14803]]],["Fulfil",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1645]]],["accomplish",[4,4,[[25,4,4,0,4,[[807,1,1,0,1],[808,1,1,1,2],[821,2,2,2,4]]]],[20575,20585,20903,20916]]],["accomplished",[5,4,[[13,1,1,0,1,[[402,1,1,0,1]]],[25,2,1,1,2,[[806,2,1,1,2]]],[26,2,2,2,4,[[860,1,1,2,3],[861,1,1,3,4]]]],[12015,20559,22072,22088]]],["away",[3,3,[[3,1,1,0,1,[[133,1,1,0,1]]],[17,1,1,1,2,[[468,1,1,1,2]]],[18,1,1,2,3,[[514,1,1,2,3]]]],[4254,13671,14470]]],["cease",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17875]]],["ceaseth",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17973]]],["consume",[18,18,[[1,4,4,0,4,[[81,2,2,0,2],[82,2,2,2,4]]],[2,1,1,4,5,[[115,1,1,4,5]]],[3,2,2,5,7,[[132,2,2,5,7]]],[4,1,1,7,8,[[159,1,1,7,8]]],[5,1,1,8,9,[[210,1,1,8,9]]],[18,3,3,9,12,[[514,1,1,9,10],[536,1,1,10,11],[555,1,1,11,12]]],[22,2,2,12,14,[[688,1,1,12,13],[705,1,1,13,14]]],[23,1,1,14,15,[[758,1,1,14,15]]],[25,1,1,15,16,[[821,1,1,15,16]]],[27,1,1,16,17,[[872,1,1,16,17]]],[37,1,1,17,18,[[915,1,1,17,18]]]],[2448,2450,2476,2478,3540,4215,4239,5133,6496,14470,14803,15146,17868,18161,19305,20908,22246,22940]]],["consumed",[36,36,[[3,1,1,0,1,[[141,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[8,1,1,2,3,[[250,1,1,2,3]]],[9,3,3,3,6,[[287,1,1,3,4],[288,2,2,4,6]]],[10,1,1,6,7,[[312,1,1,6,7]]],[11,2,2,7,9,[[325,2,2,7,9]]],[13,2,2,9,11,[[374,1,1,9,10],[384,1,1,10,11]]],[14,1,1,11,12,[[411,1,1,11,12]]],[17,3,3,12,15,[[439,1,1,12,13],[442,1,1,13,14],[454,1,1,14,15]]],[18,6,6,15,21,[[495,1,1,15,16],[516,1,1,16,17],[548,1,1,17,18],[567,1,1,18,19],[579,1,1,19,20],[596,1,1,20,21]]],[19,1,1,21,22,[[632,1,1,21,22]]],[22,2,2,22,24,[[679,1,1,22,23],[707,1,1,23,24]]],[23,6,6,24,30,[[749,1,1,24,25],[753,1,1,25,26],[754,1,1,26,27],[760,1,1,27,28],[764,1,1,28,29],[793,1,1,29,30]]],[24,1,1,30,31,[[798,1,1,30,31]]],[25,3,3,31,34,[[806,1,1,31,32],[814,1,1,32,33],[823,1,1,33,34]]],[26,1,1,34,35,[[860,1,1,34,35]]],[38,1,1,35,36,[[927,1,1,35,36]]]],[4482,5632,7578,8585,8640,8641,9491,9888,9890,11354,11552,12251,12939,13017,13324,14155,14522,14989,15385,15524,15985,16528,17682,18213,19061,19191,19226,19340,19440,20164,20354,20558,20722,21007,22052,23126]]],["destroyed",[1,1,[[13,1,1,0,1,[[397,1,1,0,1]]]],[11855]]],["destroyeth",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13073]]],["determined",[5,5,[[8,4,4,0,4,[[255,3,3,0,3],[260,1,1,3,4]]],[16,1,1,4,5,[[432,1,1,4,5]]]],[7737,7739,7763,7878,12814]]],["done",[9,8,[[0,5,4,0,4,[[23,5,4,0,4]]],[1,1,1,4,5,[[83,1,1,4,5]]],[7,1,1,5,6,[[234,1,1,5,6]]],[14,1,1,6,7,[[411,1,1,6,7]]],[22,1,1,7,8,[[702,1,1,7,8]]]],[606,610,613,636,2529,7175,12238,18108]]],["end",[45,45,[[0,2,2,0,2,[[26,1,1,0,1],[48,1,1,1,2]]],[1,1,1,2,3,[[80,1,1,2,3]]],[2,1,1,3,4,[[105,1,1,3,4]]],[3,2,2,4,6,[[120,1,1,4,5],[132,1,1,5,6]]],[4,4,4,6,10,[[172,1,1,6,7],[178,1,1,7,8],[183,1,1,8,9],[184,1,1,9,10]]],[5,4,4,10,14,[[194,1,1,10,11],[196,1,1,11,12],[205,2,2,12,14]]],[6,2,2,14,16,[[213,1,1,14,15],[225,1,1,15,16]]],[7,1,1,16,17,[[233,1,1,16,17]]],[8,5,5,17,22,[[238,1,1,17,18],[245,1,1,18,19],[248,1,1,19,20],[253,1,1,20,21],[259,1,1,21,22]]],[9,3,3,22,25,[[272,1,1,22,23],[277,1,1,23,24],[279,1,1,24,25]]],[10,4,4,25,29,[[291,1,1,25,26],[293,1,1,26,27],[297,1,1,27,28],[298,1,1,28,29]]],[11,1,1,29,30,[[322,1,1,29,30]]],[12,1,1,30,31,[[353,1,1,30,31]]],[13,5,5,31,36,[[373,1,1,31,32],[386,1,1,32,33],[390,1,1,33,34],[395,2,2,34,36]]],[14,1,1,36,37,[[412,1,1,36,37]]],[15,1,1,37,38,[[416,1,1,37,38]]],[23,4,4,38,42,[[770,1,1,38,39],[787,1,1,39,40],[788,1,1,40,41],[795,1,1,41,42]]],[25,2,2,42,44,[[843,1,1,42,43],[844,1,1,43,44]]],[29,1,1,44,45,[[885,1,1,44,45]]]],[757,1506,2438,3221,3758,4225,5436,5578,5752,5803,6026,6084,6370,6372,6586,6946,7172,7288,7431,7495,7677,7855,8175,8278,8353,8758,8817,8974,9039,9818,10822,11325,11610,11687,11808,11820,12269,12361,19580,19998,20037,20275,21567,21595,22466]]],["ended",[6,6,[[0,2,2,0,2,[[1,1,1,0,1],[40,1,1,1,2]]],[13,1,1,2,3,[[395,1,1,2,3]]],[18,1,1,3,4,[[549,1,1,3,4]]],[23,1,1,4,5,[[752,1,1,4,5]]],[25,1,1,5,6,[[805,1,1,5,6]]]],[32,1248,11825,15020,19173,20537]]],["expired",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21599]]],["fail",[13,13,[[17,3,3,0,3,[[446,1,1,0,1],[452,1,1,1,2],[466,1,1,2,3]]],[18,3,3,3,6,[[546,1,1,3,4],[596,2,2,4,6]]],[19,1,1,6,7,[[649,1,1,6,7]]],[22,3,3,7,10,[[699,1,1,7,8],[709,1,1,8,9],[710,1,1,9,10]]],[23,1,1,10,11,[[758,1,1,10,11]]],[24,2,2,11,13,[[798,1,1,11,12],[799,1,1,12,13]]]],[13128,13265,13604,14938,15980,16021,17023,18051,18253,18269,19299,20343,20376]]],["failed",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20437]]],["faileth",[4,4,[[18,3,3,0,3,[[548,1,1,0,1],[550,1,1,1,2],[620,1,1,2,3]]],[22,1,1,3,4,[[693,1,1,3,4]]]],[14985,15046,16300,17966]]],["fainteth",[2,2,[[18,2,2,0,2,[[561,1,1,0,1],[596,1,1,1,2]]]],[15261,15979]]],["finish",[1,1,[[0,1,1,0,1,[[5,1,1,0,1]]]],[153]]],["finished",[15,15,[[0,1,1,0,1,[[1,1,1,0,1]]],[1,1,1,1,2,[[88,1,1,1,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[10,4,4,3,7,[[296,3,3,3,6],[299,1,1,6,7]]],[12,2,2,7,9,[[364,1,1,7,8],[365,1,1,8,9]]],[13,5,5,9,14,[[374,1,1,9,10],[390,1,1,10,11],[395,1,1,11,12],[397,2,2,12,14]]],[26,1,1,14,15,[[861,1,1,14,15]]]],[31,2696,7190,8905,8910,8934,9052,11133,11163,11362,11691,11819,11855,11861,22088]]],["fulfilled",[2,2,[[1,1,1,0,1,[[54,1,1,0,1]]],[14,1,1,1,2,[[403,1,1,1,2]]]],[1646,12017]]],["fully",[1,1,[[3,1,1,0,1,[[123,1,1,0,1]]]],[3851]]],["left",[2,2,[[0,2,2,0,2,[[17,1,1,0,1],[43,1,1,1,2]]]],[457,1336]]],["longed",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8356]]],["off",[1,1,[[0,1,1,0,1,[[16,1,1,0,1]]]],[419]]],["pluck",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15059]]],["riddance",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3424]]],["spend",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,2,2,1,3,[[456,1,1,1,2],[471,1,1,2,3]]],[18,1,1,3,4,[[567,1,1,3,4]]]],[5781,13368,13747,15387]]],["spent",[4,4,[[0,1,1,0,1,[[20,1,1,0,1]]],[17,1,1,1,2,[[442,1,1,1,2]]],[18,1,1,2,3,[[508,1,1,2,3]]],[22,1,1,3,4,[[727,1,1,3,4]]]],[528,13014,14341,18640]]],["utterly",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3568]]],["waste",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9331]]],["wasted",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9333]]]]},{"k":"H3616","v":[["fail",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5643]]]]},{"k":"H3617","v":[["*",[20,18,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[60,1,1,1,2]]],[13,1,1,2,3,[[378,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[22,2,2,4,6,[[688,1,1,4,5],[706,1,1,5,6]]],[23,7,5,6,11,[[748,1,1,6,7],[749,2,2,7,9],[774,2,1,9,10],[790,2,1,10,11]]],[25,3,3,11,14,[[812,1,1,11,12],[814,1,1,12,13],[821,1,1,13,14]]],[26,1,1,14,15,[[858,1,1,14,15]]],[33,2,2,15,17,[[900,2,2,15,17]]],[35,1,1,17,18,[[906,1,1,17,18]]]],[445,1807,11449,12542,17873,18186,19054,19068,19076,19678,20073,20668,20721,20912,22015,22692,22693,22805]]],["+",[2,2,[[15,1,1,0,1,[[421,1,1,0,1]]],[25,1,1,1,2,[[812,1,1,1,2]]]],[12542,20668]]],["altogether",[3,3,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[60,1,1,1,2]]],[13,1,1,2,3,[[378,1,1,2,3]]]],[445,1807,11449]]],["consume",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20721]]],["consummation",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22015]]],["consumption",[2,2,[[22,2,2,0,2,[[688,1,1,0,1],[706,1,1,1,2]]]],[17873,18186]]],["end",[10,8,[[23,7,5,0,5,[[748,1,1,0,1],[749,2,2,1,3],[774,2,1,3,4],[790,2,1,4,5]]],[25,1,1,5,6,[[821,1,1,5,6]]],[33,2,2,6,8,[[900,2,2,6,8]]]],[19054,19068,19076,19678,20073,20912,22692,22693]]],["riddance",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22805]]]]},{"k":"H3618","v":[["*",[34,34,[[0,4,4,0,4,[[10,1,1,0,1],[37,3,3,1,4]]],[2,2,2,4,6,[[107,1,1,4,5],[109,1,1,5,6]]],[7,7,7,6,13,[[232,4,4,6,10],[233,2,2,10,12],[235,1,1,12,13]]],[8,1,1,13,14,[[239,1,1,13,14]]],[12,1,1,14,15,[[339,1,1,14,15]]],[21,6,6,15,21,[[674,5,5,15,20],[675,1,1,20,21]]],[22,3,3,21,24,[[727,1,1,21,22],[739,1,1,22,23],[740,1,1,23,24]]],[23,5,5,24,29,[[746,1,1,24,25],[751,1,1,25,26],[760,1,1,26,27],[769,1,1,27,28],[777,1,1,28,29]]],[25,1,1,29,30,[[823,1,1,29,30]]],[27,2,2,30,32,[[865,2,2,30,32]]],[28,1,1,32,33,[[877,1,1,32,33]]],[32,1,1,33,34,[[899,1,1,33,34]]]],[297,1130,1135,1143,3266,3330,7133,7134,7135,7149,7169,7171,7205,7316,10310,17590,17591,17592,17593,17594,17599,18654,18853,18859,18997,19153,19345,19544,19786,20987,22146,22147,22327,22670]]],["bride",[9,9,[[22,3,3,0,3,[[727,1,1,0,1],[739,1,1,1,2],[740,1,1,2,3]]],[23,5,5,3,8,[[746,1,1,3,4],[751,1,1,4,5],[760,1,1,5,6],[769,1,1,6,7],[777,1,1,7,8]]],[28,1,1,8,9,[[877,1,1,8,9]]]],[18654,18853,18859,18997,19153,19345,19544,19786,22327]]],["law",[17,17,[[0,4,4,0,4,[[10,1,1,0,1],[37,3,3,1,4]]],[2,2,2,4,6,[[107,1,1,4,5],[109,1,1,5,6]]],[7,7,7,6,13,[[232,4,4,6,10],[233,2,2,10,12],[235,1,1,12,13]]],[8,1,1,13,14,[[239,1,1,13,14]]],[12,1,1,14,15,[[339,1,1,14,15]]],[25,1,1,15,16,[[823,1,1,15,16]]],[32,1,1,16,17,[[899,1,1,16,17]]]],[297,1130,1135,1143,3266,3330,7133,7134,7135,7149,7169,7171,7205,7316,10310,20987,22670]]],["spouse",[6,6,[[21,6,6,0,6,[[674,5,5,0,5],[675,1,1,5,6]]]],[17590,17591,17592,17593,17594,17599]]],["spouses",[2,2,[[27,2,2,0,2,[[865,2,2,0,2]]]],[22146,22147]]]]},{"k":"H3619","v":[["*",[3,3,[[23,1,1,0,1,[[749,1,1,0,1]]],[29,2,2,1,3,[[886,2,2,1,3]]]],[19085,22482,22483]]],["basket",[2,2,[[29,2,2,0,2,[[886,2,2,0,2]]]],[22482,22483]]],["cage",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19085]]]]},{"k":"H3620","v":[["Chelub",[2,2,[[12,2,2,0,2,[[341,1,1,0,1],[364,1,1,1,2]]]],[10396,11135]]]]},{"k":"H3621","v":[["Chelubai",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10315]]]]},{"k":"H3622","v":[["Chelluh",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12287]]]]},{"k":"H3623","v":[["espousals",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18967]]]]},{"k":"H3624","v":[["age",[2,2,[[17,2,2,0,2,[[440,1,1,0,1],[465,1,1,1,2]]]],[12977,13559]]]]},{"k":"H3625","v":[["Calah",[2,2,[[0,2,2,0,2,[[9,2,2,0,2]]]],[245,246]]]]},{"k":"H3626","v":[["Colhozeh",[2,2,[[15,2,2,0,2,[[415,1,1,0,1],[423,1,1,1,2]]]],[12342,12593]]]]},{"k":"H3627","v":[["*",[325,276,[[0,9,7,0,7,[[23,2,1,0,1],[26,1,1,1,2],[30,2,1,2,3],[41,1,1,3,4],[42,1,1,4,5],[44,1,1,5,6],[48,1,1,6,7]]],[1,34,28,7,35,[[52,2,1,7,8],[60,2,1,8,9],[61,2,1,9,10],[71,1,1,10,11],[74,2,2,11,13],[76,2,2,13,15],[79,3,2,15,17],[80,4,3,17,20],[84,4,4,20,24],[86,2,2,24,26],[87,3,2,26,28],[88,5,5,28,33],[89,2,2,33,35]]],[2,22,19,35,54,[[95,2,1,35,36],[97,1,1,36,37],[100,4,3,37,40],[102,6,6,40,46],[103,2,2,46,48],[104,7,6,48,54]]],[3,31,26,54,80,[[117,2,1,54,55],[119,3,3,55,58],[120,10,8,58,66],[121,1,1,66,67],[123,3,2,67,69],[134,1,1,69,70],[135,3,3,70,73],[147,5,4,73,77],[151,3,3,77,80]]],[4,3,3,80,83,[[153,1,1,80,81],[174,1,1,81,82],[175,1,1,82,83]]],[5,3,3,83,86,[[192,2,2,83,85],[193,1,1,85,86]]],[6,4,4,86,90,[[219,1,1,86,87],[228,3,3,87,90]]],[7,1,1,90,91,[[233,1,1,90,91]]],[8,33,27,91,118,[[241,2,2,91,93],[243,2,1,93,94],[244,1,1,94,95],[245,1,1,95,96],[249,9,7,96,103],[251,1,1,103,104],[252,5,4,104,108],[255,1,1,108,109],[256,3,2,109,111],[260,1,1,111,112],[265,1,1,112,113],[266,6,5,113,118]]],[9,8,6,118,124,[[267,1,1,118,119],[274,3,1,119,120],[283,1,1,120,121],[284,1,1,121,122],[289,1,1,122,123],[290,1,1,123,124]]],[10,13,11,124,135,[[296,1,1,124,125],[297,4,4,125,129],[298,1,1,129,130],[300,4,2,130,132],[305,1,1,132,133],[307,1,1,133,134],[309,1,1,134,135]]],[11,17,13,135,148,[[316,6,3,135,138],[319,1,1,138,139],[323,2,2,139,141],[324,2,1,141,142],[326,1,1,142,143],[332,1,1,143,144],[335,1,1,144,145],[336,1,1,145,146],[337,2,2,146,148]]],[12,23,19,148,167,[[346,3,2,148,150],[347,5,4,150,154],[348,1,1,154,155],[349,2,2,155,157],[352,1,1,157,158],[353,2,2,158,160],[355,2,2,160,162],[359,1,1,162,163],[360,2,2,163,165],[365,4,2,165,167]]],[13,33,27,167,194,[[370,3,3,167,170],[371,3,3,170,173],[373,1,1,173,174],[375,4,2,174,176],[381,1,1,176,177],[386,1,1,177,178],[389,2,2,178,180],[390,3,1,180,181],[391,1,1,181,182],[394,2,1,182,183],[395,5,4,183,187],[396,1,1,187,188],[398,1,1,188,189],[400,1,1,189,190],[402,4,4,190,194]]],[14,10,10,194,204,[[403,4,4,194,198],[410,6,6,198,204]]],[15,5,5,204,209,[[422,1,1,204,205],[424,1,1,205,206],[425,3,3,206,209]]],[16,3,1,209,210,[[426,3,1,209,210]]],[17,1,1,210,211,[[463,1,1,210,211]]],[18,4,4,211,215,[[479,1,1,211,212],[484,1,1,212,213],[508,1,1,213,214],[548,1,1,214,215]]],[19,2,2,215,217,[[647,1,1,215,216],[652,1,1,216,217]]],[20,1,1,217,218,[[667,1,1,217,218]]],[22,14,12,218,230,[[688,1,1,218,219],[691,1,1,219,220],[696,1,1,220,221],[700,3,1,221,222],[710,1,1,222,223],[717,1,1,223,224],[730,1,1,224,225],[732,2,2,225,227],[739,1,1,227,228],[743,1,1,228,229],[744,1,1,229,230]]],[23,27,25,230,255,[[758,1,1,230,231],[762,2,1,231,232],[763,1,1,232,233],[765,1,1,233,234],[766,2,2,234,236],[769,1,1,236,237],[771,4,4,237,241],[772,2,2,241,243],[776,1,1,243,244],[784,1,1,244,245],[790,1,1,245,246],[792,4,3,246,249],[793,1,1,249,250],[794,1,1,250,251],[795,2,2,251,253],[796,2,2,253,255]]],[25,15,13,255,268,[[805,1,1,255,256],[810,2,2,256,258],[813,5,3,258,261],[816,1,1,261,262],[817,2,2,262,264],[824,1,1,264,265],[828,1,1,265,266],[833,1,1,266,267],[841,1,1,267,268]]],[26,3,2,268,270,[[850,2,1,268,269],[860,1,1,269,270]]],[27,2,2,270,272,[[869,1,1,270,271],[874,1,1,271,272]]],[29,1,1,272,273,[[884,1,1,272,273]]],[31,1,1,273,274,[[889,1,1,273,274]]],[33,1,1,274,275,[[901,1,1,274,275]]],[37,1,1,275,276,[[921,1,1,275,276]]]],[644,730,910,1277,1301,1378,1478,1601,1808,1851,2120,2204,2234,2275,2291,2409,2410,2427,2428,2429,2544,2545,2547,2553,2620,2628,2636,2663,2697,2700,2701,2703,2704,2716,2717,2877,2928,3029,3030,3031,3101,3104,3105,3109,3110,3111,3116,3161,3172,3174,3180,3190,3191,3194,3654,3700,3723,3728,3752,3753,3755,3757,3758,3759,3769,3775,3809,3851,3935,4260,4304,4306,4307,4670,4684,4714,4715,4861,4863,4867,4933,5475,5524,5968,5973,5987,6808,7004,7009,7010,7158,7339,7346,7381,7398,7440,7509,7514,7515,7520,7521,7522,7525,7616,7640,7658,7667,7672,7770,7777,7780,7874,8002,8013,8014,8015,8018,8019,8049,8219,8477,8493,8690,8714,8903,8979,8981,8982,8985,8989,9100,9104,9264,9327,9408,9606,9607,9609,9722,9837,9840,9863,9910,10111,10169,10215,10236,10238,10643,10644,10663,10664,10668,10669,10712,10753,10757,10807,10825,10862,10898,10900,10983,10988,11009,11156,11157,11262,11264,11265,11269,11273,11281,11330,11384,11388,11508,11612,11663,11669,11691,11728,11788,11809,11810,11817,11818,11848,11902,11945,12000,12003,12011,12012,12022,12023,12026,12027,12226,12227,12228,12229,12231,12234,12588,12660,12676,12679,12680,12709,13521,13954,14008,14343,14998,16969,17117,17493,17878,17911,17999,18076,18266,18414,18707,18739,18740,18853,18901,18942,19296,19388,19418,19444,19461,19482,19568,19612,19614,19615,19617,19621,19624,19745,19951,20064,20091,20092,20118,20156,20191,20232,20246,20294,20296,20538,20623,20624,20683,20684,20687,20757,20779,20801,21033,21134,21275,21519,21739,22044,22202,22281,22455,22536,22708,23043]]],["+",[32,28,[[1,2,2,0,2,[[84,1,1,0,1],[88,1,1,1,2]]],[2,1,1,2,3,[[104,1,1,2,3]]],[3,1,1,3,4,[[151,1,1,3,4]]],[6,1,1,4,5,[[219,1,1,4,5]]],[8,13,10,5,15,[[244,1,1,5,6],[249,7,5,6,11],[251,1,1,11,12],[266,4,3,12,15]]],[9,1,1,15,16,[[289,1,1,15,16]]],[12,5,4,16,20,[[347,3,2,16,18],[348,1,1,18,19],[353,1,1,19,20]]],[13,2,2,20,22,[[395,1,1,20,21],[402,1,1,21,22]]],[16,1,1,22,23,[[426,1,1,22,23]]],[18,1,1,23,24,[[548,1,1,23,24]]],[20,1,1,24,25,[[667,1,1,24,25]]],[22,1,1,25,26,[[700,1,1,25,26]]],[23,2,2,26,28,[[790,1,1,26,27],[792,1,1,27,28]]]],[2547,2703,3194,4867,6808,7398,7515,7520,7521,7522,7525,7616,8013,8014,8015,8690,10663,10664,10712,10825,11818,12000,12709,14998,17493,18076,20064,20091]]],["armour",[10,10,[[8,5,5,0,5,[[249,2,2,0,2],[252,1,1,2,3],[266,2,2,3,5]]],[9,1,1,5,6,[[284,1,1,5,6]]],[11,1,1,6,7,[[332,1,1,6,7]]],[12,2,2,7,9,[[347,2,2,7,9]]],[22,1,1,9,10,[[717,1,1,9,10]]]],[7509,7514,7672,8018,8019,8493,10111,10668,10669,18414]]],["artillery",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7770]]],["bag",[2,2,[[8,2,2,0,2,[[252,2,2,0,2]]]],[7658,7667]]],["carriage",[2,1,[[8,2,1,0,1,[[252,2,1,0,1]]]],[7640]]],["carriages",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17878]]],["furniture",[7,6,[[1,6,5,0,5,[[80,4,3,0,3],[84,1,1,3,4],[88,1,1,4,5]]],[33,1,1,5,6,[[901,1,1,5,6]]]],[2427,2428,2429,2545,2697,22708]]],["instrument",[2,2,[[3,1,1,0,1,[[151,1,1,0,1]]],[22,1,1,1,2,[[732,1,1,1,2]]]],[4861,18739]]],["instruments",[36,32,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,1,1,1,2,[[74,1,1,1,2]]],[3,7,6,2,8,[[119,1,1,2,3],[120,4,3,3,6],[123,1,1,6,7],[147,1,1,7,8]]],[8,2,1,8,9,[[243,2,1,8,9]]],[9,1,1,9,10,[[290,1,1,9,10]]],[10,1,1,10,11,[[309,1,1,10,11]]],[12,9,7,11,18,[[346,1,1,11,12],[349,2,2,12,14],[352,1,1,14,15],[353,1,1,15,16],[360,1,1,16,17],[365,3,1,17,18]]],[13,8,8,18,26,[[370,1,1,18,19],[371,2,2,19,21],[373,1,1,21,22],[389,1,1,22,23],[395,1,1,23,24],[396,1,1,24,25],[400,1,1,25,26]]],[15,1,1,26,27,[[424,1,1,26,27]]],[18,1,1,27,28,[[484,1,1,27,28]]],[22,1,1,28,29,[[710,1,1,28,29]]],[25,1,1,29,30,[[841,1,1,29,30]]],[29,1,1,30,31,[[884,1,1,30,31]]],[37,1,1,31,32,[[921,1,1,31,32]]]],[1478,2204,3700,3755,3769,3775,3851,4670,7381,8714,9408,10644,10753,10757,10807,10862,10988,11157,11262,11269,11281,11330,11669,11817,11848,11945,12660,14008,18266,21519,22455,23043]]],["jewel",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16969]]],["jewels",[20,16,[[0,2,1,0,1,[[23,2,1,0,1]]],[1,7,4,1,5,[[52,2,1,1,2],[60,2,1,2,3],[61,2,1,3,4],[84,1,1,4,5]]],[3,2,2,5,7,[[147,2,2,5,7]]],[8,2,2,7,9,[[241,2,2,7,9]]],[13,2,2,9,11,[[386,1,1,9,10],[398,1,1,10,11]]],[17,1,1,11,12,[[463,1,1,11,12]]],[22,1,1,12,13,[[739,1,1,12,13]]],[25,3,3,13,16,[[817,2,2,13,15],[824,1,1,15,16]]]],[644,1601,1808,1851,2553,4714,4715,7339,7346,11612,11902,13521,18853,20779,20801,21033]]],["made",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4684]]],["pertaineth",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5475]]],["pot",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2877]]],["sacks",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1277]]],["stuff",[14,11,[[0,3,2,0,2,[[30,2,1,0,1],[44,1,1,1,2]]],[1,1,1,2,3,[[71,1,1,2,3]]],[5,1,1,3,4,[[193,1,1,3,4]]],[8,3,3,4,7,[[245,1,1,4,5],[260,1,1,5,6],[265,1,1,6,7]]],[15,1,1,7,8,[[425,1,1,7,8]]],[25,5,3,8,11,[[813,5,3,8,11]]]],[910,1378,2120,5987,7440,7874,8002,12679,20683,20684,20687]]],["thing",[10,10,[[2,10,10,0,10,[[102,6,6,0,6],[104,4,4,6,10]]]],[3101,3104,3105,3109,3110,3111,3172,3174,3190,3191]]],["things",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4684]]],["tool",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8903]]],["vessel",[33,29,[[2,9,7,0,7,[[95,1,1,0,1],[100,4,3,1,4],[103,2,2,4,6],[104,2,1,6,7]]],[3,3,3,7,10,[[121,1,1,7,8],[135,2,2,8,10]]],[4,1,1,10,11,[[175,1,1,10,11]]],[8,1,1,11,12,[[256,1,1,11,12]]],[10,1,1,12,13,[[307,1,1,12,13]]],[11,2,1,13,14,[[316,2,1,13,14]]],[18,2,2,14,16,[[479,1,1,14,15],[508,1,1,15,16]]],[19,1,1,16,17,[[652,1,1,16,17]]],[22,1,1,17,18,[[744,1,1,17,18]]],[23,9,8,18,26,[[762,2,1,18,19],[763,1,1,19,20],[766,1,1,20,21],[769,1,1,21,22],[776,1,1,22,23],[792,2,2,23,25],[795,1,1,25,26]]],[25,2,2,26,28,[[805,1,1,26,27],[816,1,1,27,28]]],[27,1,1,28,29,[[869,1,1,28,29]]]],[2877,3029,3030,3031,3116,3161,3180,3809,4304,4306,5524,7777,9327,9609,13954,14343,17117,18942,19388,19418,19482,19568,19745,20091,20118,20246,20538,20757,22202]]],["vessels",[127,108,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,17,15,1,16,[[74,1,1,1,2],[76,2,2,2,4],[79,3,2,4,6],[84,1,1,6,7],[86,2,2,7,9],[87,3,2,9,11],[88,3,3,11,14],[89,2,2,14,16]]],[2,1,1,16,17,[[97,1,1,16,17]]],[3,14,12,17,29,[[117,2,1,17,18],[119,2,2,18,20],[120,6,5,20,25],[123,2,2,25,27],[134,1,1,27,28],[135,1,1,28,29]]],[5,2,2,29,31,[[192,2,2,29,31]]],[7,1,1,31,32,[[233,1,1,31,32]]],[8,1,1,32,33,[[256,1,1,32,33]]],[9,4,2,33,35,[[274,3,1,33,34],[283,1,1,34,35]]],[10,10,8,35,43,[[297,4,4,35,39],[298,1,1,39,40],[300,4,2,40,42],[305,1,1,42,43]]],[11,12,10,43,53,[[316,4,3,43,46],[319,1,1,46,47],[324,2,1,47,48],[326,1,1,48,49],[335,1,1,49,50],[336,1,1,50,51],[337,2,2,51,53]]],[12,7,7,53,60,[[346,2,2,53,55],[355,2,2,55,57],[359,1,1,57,58],[360,1,1,58,59],[365,1,1,59,60]]],[13,20,14,60,74,[[370,2,2,60,62],[371,1,1,62,63],[375,4,2,63,65],[381,1,1,65,66],[390,3,1,66,67],[391,1,1,67,68],[394,2,1,68,69],[395,3,2,69,71],[402,3,3,71,74]]],[14,10,10,74,84,[[403,4,4,74,78],[410,6,6,78,84]]],[15,3,3,84,87,[[422,1,1,84,85],[425,2,2,85,87]]],[16,2,1,87,88,[[426,2,1,87,88]]],[22,5,4,88,92,[[696,1,1,88,89],[700,2,1,89,90],[730,1,1,90,91],[743,1,1,91,92]]],[23,12,12,92,104,[[758,1,1,92,93],[771,4,4,93,97],[772,2,2,97,99],[784,1,1,99,100],[792,1,1,100,101],[793,1,1,101,102],[796,2,2,102,104]]],[25,1,1,104,105,[[828,1,1,104,105]]],[26,3,2,105,107,[[850,2,1,105,106],[860,1,1,106,107]]],[27,1,1,107,108,[[874,1,1,107,108]]]],[1301,2234,2275,2291,2409,2410,2544,2620,2628,2636,2663,2700,2701,2704,2716,2717,2928,3654,3723,3728,3752,3753,3757,3758,3759,3851,3935,4260,4307,5968,5973,7158,7777,8219,8477,8979,8981,8982,8985,8989,9100,9104,9264,9606,9607,9609,9722,9863,9910,10169,10215,10236,10238,10643,10644,10898,10900,10983,11009,11156,11264,11265,11273,11384,11388,11508,11691,11728,11788,11809,11810,12003,12011,12012,12022,12023,12026,12027,12226,12227,12228,12229,12231,12234,12588,12676,12680,12709,17999,18076,18707,18901,19296,19612,19614,19615,19617,19621,19624,19951,20092,20156,20294,20296,21134,21739,22044,22281]]],["wares",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22536]]],["weapon",[4,4,[[3,1,1,0,1,[[151,1,1,0,1]]],[22,1,1,1,2,[[732,1,1,1,2]]],[25,2,2,2,4,[[810,2,2,2,4]]]],[4863,18740,20623,20624]]],["weapons",[16,16,[[0,1,1,0,1,[[26,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[6,3,3,2,5,[[228,3,3,2,5]]],[8,1,1,5,6,[[256,1,1,5,6]]],[9,1,1,6,7,[[267,1,1,6,7]]],[11,2,2,7,9,[[323,2,2,7,9]]],[13,1,1,9,10,[[389,1,1,9,10]]],[22,1,1,10,11,[[691,1,1,10,11]]],[23,4,4,11,15,[[765,1,1,11,12],[766,1,1,12,13],[794,1,1,13,14],[795,1,1,14,15]]],[25,1,1,15,16,[[833,1,1,15,16]]]],[730,4933,7004,7009,7010,7780,8049,9837,9840,11663,17911,19444,19461,20191,20232,21275]]]]},{"k":"H3628","v":[["+",[2,2,[[23,2,2,0,2,[[781,1,1,0,1],[796,1,1,1,2]]]],[19878,20307]]]]},{"k":"H3629","v":[["*",[31,26,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,14,9,2,11,[[92,6,3,2,5],[93,2,1,5,6],[96,2,1,6,7],[97,2,2,7,9],[98,2,2,9,11]]],[4,1,1,11,12,[[184,1,1,11,12]]],[17,2,2,12,14,[[451,1,1,12,13],[454,1,1,13,14]]],[18,5,5,14,19,[[484,1,1,14,15],[493,1,1,15,16],[503,1,1,16,17],[550,1,1,17,18],[616,1,1,18,19]]],[19,1,1,19,20,[[650,1,1,19,20]]],[22,1,1,20,21,[[712,1,1,20,21]]],[23,4,4,21,25,[[755,1,1,21,22],[756,1,1,22,23],[761,1,1,23,24],[764,1,1,24,25]]],[24,1,1,25,26,[[799,1,1,25,26]]]],[2349,2358,2782,2788,2793,2804,2883,2933,2942,2963,2972,5772,13251,13324,14004,14099,14275,15041,16252,17060,18309,19246,19251,19367,19434,20367]]],["+",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19251]]],["kidneys",[18,13,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,14,9,2,11,[[92,6,3,2,5],[93,2,1,5,6],[96,2,1,6,7],[97,2,2,7,9],[98,2,2,9,11]]],[4,1,1,11,12,[[184,1,1,11,12]]],[22,1,1,12,13,[[712,1,1,12,13]]]],[2349,2358,2782,2788,2793,2804,2883,2933,2942,2963,2972,5772,18309]]],["reins",[12,12,[[17,2,2,0,2,[[451,1,1,0,1],[454,1,1,1,2]]],[18,5,5,2,7,[[484,1,1,2,3],[493,1,1,3,4],[503,1,1,4,5],[550,1,1,5,6],[616,1,1,6,7]]],[19,1,1,7,8,[[650,1,1,7,8]]],[23,3,3,8,11,[[755,1,1,8,9],[761,1,1,9,10],[764,1,1,10,11]]],[24,1,1,11,12,[[799,1,1,11,12]]]],[13251,13324,14004,14099,14275,15041,16252,17060,19246,19367,19434,20367]]]]},{"k":"H3630","v":[["*",[3,3,[[7,3,3,0,3,[[232,2,2,0,2],[235,1,1,2,3]]]],[7129,7132,7199]]],["Chilion",[2,2,[[7,2,2,0,2,[[232,2,2,0,2]]]],[7129,7132]]],["Chilion's",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7199]]]]},{"k":"H3631","v":[["*",[2,2,[[4,1,1,0,1,[[180,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[5676,17872]]],["consumption",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17872]]],["failing",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5676]]]]},{"k":"H3632","v":[["*",[15,15,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[2,2,2,2,4,[[95,2,2,2,4]]],[3,1,1,4,5,[[120,1,1,4,5]]],[4,2,2,5,7,[[165,1,1,5,6],[185,1,1,6,7]]],[6,1,1,7,8,[[230,1,1,7,8]]],[8,1,1,8,9,[[242,1,1,8,9]]],[18,1,1,9,10,[[528,1,1,9,10]]],[22,1,1,10,11,[[680,1,1,10,11]]],[24,1,1,11,12,[[798,1,1,11,12]]],[25,3,3,12,15,[[817,1,1,12,13],[828,1,1,13,14],[829,1,1,14,15]]]],[2324,2686,2871,2872,3749,5288,5820,7094,7361,14710,17703,20347,20776,21124,21169]]],["all",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2324,2686]]],["flame",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7094]]],["offering",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14710]]],["perfect",[3,3,[[25,3,3,0,3,[[817,1,1,0,1],[828,1,1,1,2],[829,1,1,2,3]]]],[20776,21124,21169]]],["perfection",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20347]]],["sacrifice",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5820]]],["utterly",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17703]]],["whit",[1,1,[[4,1,1,0,1,[[165,1,1,0,1]]]],[5288]]],["wholly",[4,4,[[2,2,2,0,2,[[95,2,2,0,2]]],[3,1,1,2,3,[[120,1,1,2,3]]],[8,1,1,3,4,[[242,1,1,3,4]]]],[2871,2872,3749,7361]]]]},{"k":"H3633","v":[["*",[2,2,[[10,1,1,0,1,[[294,1,1,0,1]]],[12,1,1,1,2,[[339,1,1,1,2]]]],[8875,10312]]],["Calcol",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10312]]],["Chalcol",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8875]]]]},{"k":"H3634","v":[["*",[2,2,[[25,2,2,0,2,[[828,2,2,0,2]]]],[21125,21132]]],["+",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21132]]],["perfected",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21125]]]]},{"k":"H3635","v":[["*",[7,7,[[14,7,7,0,7,[[406,3,3,0,3],[407,3,3,3,6],[408,1,1,6,7]]]],[12122,12123,12126,12137,12143,12145,12165]]],["finished",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12165]]],["up",[6,6,[[14,6,6,0,6,[[406,3,3,0,3],[407,3,3,3,6]]]],[12122,12123,12126,12137,12143,12145]]]]},{"k":"H3636","v":[["Chelal",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12282]]]]},{"k":"H3637","v":[["*",[38,38,[[3,1,1,0,1,[[128,1,1,0,1]]],[6,1,1,1,2,[[228,1,1,1,2]]],[7,1,1,2,3,[[233,1,1,2,3]]],[8,3,3,3,6,[[255,1,1,3,4],[260,2,2,4,6]]],[9,2,2,6,8,[[276,1,1,6,7],[285,1,1,7,8]]],[12,1,1,8,9,[[356,1,1,8,9]]],[13,1,1,9,10,[[396,1,1,9,10]]],[14,1,1,10,11,[[411,1,1,10,11]]],[17,2,2,11,13,[[446,1,1,11,12],[454,1,1,12,13]]],[18,6,6,13,19,[[512,1,1,13,14],[517,1,1,14,15],[521,1,1,15,16],[546,1,1,16,17],[547,1,1,17,18],[551,1,1,18,19]]],[19,2,2,19,21,[[652,1,1,19,20],[655,1,1,20,21]]],[22,5,5,21,26,[[719,1,1,21,22],[723,2,2,22,24],[728,1,1,24,25],[732,1,1,25,26]]],[23,6,6,26,32,[[747,1,1,26,27],[750,1,1,27,28],[752,1,1,28,29],[758,1,1,29,30],[766,1,1,30,31],[775,1,1,31,32]]],[25,6,6,32,38,[[817,3,3,32,35],[837,1,1,35,36],[844,2,2,36,38]]]],[4073,7000,7164,7764,7868,7876,8245,8514,10912,11842,12243,13111,13300,14414,14539,14580,14941,14973,15069,17121,17203,18462,18577,18578,18669,18727,19005,19104,19165,19296,19476,19710,20789,20816,20823,21391,21582,21583]]],["+",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17121]]],["ashamed",[12,12,[[3,1,1,0,1,[[128,1,1,0,1]]],[9,2,2,1,3,[[276,1,1,1,2],[285,1,1,2,3]]],[12,1,1,3,4,[[356,1,1,3,4]]],[13,1,1,4,5,[[396,1,1,4,5]]],[17,1,1,5,6,[[446,1,1,5,6]]],[18,1,1,6,7,[[551,1,1,6,7]]],[23,1,1,7,8,[[747,1,1,7,8]]],[25,4,4,8,12,[[817,2,2,8,10],[844,2,2,10,12]]]],[4073,8245,8514,10912,11842,13111,15069,19005,20789,20823,21582,21583]]],["blush",[3,3,[[14,1,1,0,1,[[411,1,1,0,1]]],[23,2,2,1,3,[[750,1,1,1,2],[752,1,1,2,3]]]],[12243,19104,19165]]],["confounded",[11,11,[[18,1,1,0,1,[[546,1,1,0,1]]],[22,5,5,1,6,[[719,1,1,1,2],[723,2,2,2,4],[728,1,1,4,5],[732,1,1,5,6]]],[23,3,3,6,9,[[758,1,1,6,7],[766,1,1,7,8],[775,1,1,8,9]]],[25,2,2,9,11,[[817,1,1,9,10],[837,1,1,10,11]]]],[14941,18462,18577,18578,18669,18727,19296,19476,19710,20816,21391]]],["confusion",[1,1,[[18,1,1,0,1,[[547,1,1,0,1]]]],[14973]]],["hurt",[2,2,[[8,2,2,0,2,[[260,2,2,0,2]]]],[7868,7876]]],["reproach",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7164]]],["reproached",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13300]]],["shame",[5,5,[[6,1,1,0,1,[[228,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[18,3,3,2,5,[[512,1,1,2,3],[517,1,1,3,4],[521,1,1,4,5]]]],[7000,7764,14414,14539,14580]]],["shameth",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17203]]]]},{"k":"H3638","v":[["Chilmad",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21144]]]]},{"k":"H3639","v":[["*",[30,29,[[17,1,1,0,1,[[455,1,1,0,1]]],[18,7,7,1,8,[[481,1,1,1,2],[512,1,1,2,3],[521,1,1,3,4],[546,2,2,4,6],[548,1,1,6,7],[586,1,1,7,8]]],[19,1,1,8,9,[[645,1,1,8,9]]],[22,4,4,9,13,[[708,1,1,9,10],[723,1,1,10,11],[728,1,1,11,12],[739,1,1,12,13]]],[23,3,3,13,16,[[747,1,1,13,14],[764,1,1,14,15],[795,1,1,15,16]]],[25,13,12,16,28,[[817,4,3,16,19],[833,3,3,19,22],[835,1,1,22,23],[837,3,3,23,26],[840,1,1,26,27],[845,1,1,27,28]]],[32,1,1,28,29,[[894,1,1,28,29]]]],[13329,13967,14436,14586,14942,14954,14989,15784,16914,18220,18577,18668,18850,19027,19433,20263,20814,20816,20825,21272,21273,21278,21342,21365,21366,21374,21474,21612,22601]]],["+",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18668]]],["confusion",[6,6,[[18,1,1,0,1,[[521,1,1,0,1]]],[22,3,3,1,4,[[708,1,1,1,2],[723,1,1,2,3],[739,1,1,3,4]]],[23,2,2,4,6,[[747,1,1,4,5],[764,1,1,5,6]]]],[14586,18220,18577,18850,19027,19433]]],["dishonour",[3,3,[[18,3,3,0,3,[[512,1,1,0,1],[546,1,1,1,2],[548,1,1,2,3]]]],[14436,14954,14989]]],["reproach",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13329]]],["shame",[19,18,[[18,3,3,0,3,[[481,1,1,0,1],[546,1,1,1,2],[586,1,1,2,3]]],[19,1,1,3,4,[[645,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]],[25,13,12,5,17,[[817,4,3,5,8],[833,3,3,8,11],[835,1,1,11,12],[837,3,3,12,15],[840,1,1,15,16],[845,1,1,16,17]]],[32,1,1,17,18,[[894,1,1,17,18]]]],[13967,14942,15784,16914,20263,20814,20816,20825,21272,21273,21278,21342,21365,21366,21374,21474,21612,22601]]]]},{"k":"H3640","v":[["shame",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19524]]]]},{"k":"H3641","v":[["*",[3,3,[[0,1,1,0,1,[[9,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]],[29,1,1,2,3,[[884,1,1,2,3]]]],[244,17859,22452]]],["Calneh",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[29,1,1,1,2,[[884,1,1,1,2]]]],[244,22452]]],["Calno",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17859]]]]},{"k":"H3642","v":[["longeth",[1,1,[[18,1,1,0,1,[[540,1,1,0,1]]]],[14840]]]]},{"k":"H3643","v":[["Chimham",[4,4,[[9,3,3,0,3,[[285,3,3,0,3]]],[23,1,1,3,4,[[785,1,1,3,4]]]],[8548,8549,8551,19974]]]]},{"k":"H3644","v":[["*",[127,114,[[0,4,4,0,4,[[18,1,1,0,1],[40,1,1,1,2],[43,2,2,2,4]]],[1,12,10,4,14,[[58,3,3,4,7],[60,2,1,7,8],[64,4,3,8,11],[79,3,3,11,14]]],[2,2,2,14,16,[[108,2,2,14,16]]],[3,1,1,16,17,[[139,1,1,16,17]]],[4,6,6,17,23,[[156,1,1,17,18],[157,1,1,18,19],[159,1,1,19,20],[170,2,2,20,22],[185,1,1,22,23]]],[6,2,2,23,25,[[218,1,1,23,24],[219,1,1,24,25]]],[8,2,2,25,27,[[245,1,1,25,26],[261,1,1,26,27]]],[9,3,3,27,30,[[273,1,1,27,28],[275,1,1,28,29],[284,1,1,29,30]]],[10,4,3,30,33,[[293,3,2,30,32],[298,1,1,32,33]]],[11,3,2,33,35,[[330,1,1,33,34],[335,2,1,34,35]]],[12,1,1,35,36,[[354,1,1,35,36]]],[13,4,3,36,39,[[372,1,1,36,37],[384,2,1,37,38],[401,1,1,38,39]]],[15,4,3,39,42,[[418,2,1,39,40],[421,1,1,40,41],[425,1,1,41,42]]],[17,18,16,42,58,[[436,1,1,42,43],[437,1,1,43,44],[441,1,1,44,45],[444,1,1,45,46],[445,2,1,46,47],[447,2,1,47,48],[449,1,1,48,49],[454,1,1,49,50],[463,1,1,50,51],[466,1,1,51,52],[470,1,1,52,53],[471,1,1,53,54],[473,1,1,54,55],[475,2,2,55,57],[476,1,1,57,58]]],[18,28,25,58,83,[[506,2,1,58,59],[512,1,1,59,60],[527,1,1,60,61],[535,6,4,61,65],[538,1,1,65,66],[540,1,1,66,67],[548,1,1,67,68],[550,1,1,68,69],[555,2,2,69,71],[556,1,1,71,72],[563,1,1,72,73],[565,1,1,73,74],[566,2,2,74,76],[567,1,1,76,77],[569,1,1,77,78],[579,1,1,78,79],[592,1,1,79,80],[612,1,1,80,81],[617,1,1,81,82],[618,1,1,82,83]]],[19,1,1,83,84,[[650,1,1,83,84]]],[21,1,1,84,85,[[677,1,1,84,85]]],[22,7,6,85,91,[[704,2,2,85,87],[708,1,1,87,88],[719,2,1,88,89],[724,1,1,89,90],[729,1,1,90,91]]],[23,7,7,91,98,[[754,2,2,91,93],[757,1,1,93,94],[759,1,1,94,95],[774,1,1,95,96],[793,1,1,96,97],[794,1,1,97,98]]],[24,2,2,98,100,[[797,1,1,98,99],[800,1,1,99,100]]],[25,2,2,100,102,[[806,1,1,100,101],[817,1,1,101,102]]],[27,3,3,102,105,[[868,1,1,102,103],[869,1,1,103,104],[874,1,1,104,105]]],[28,1,1,105,106,[[877,1,1,105,106]]],[32,1,1,106,107,[[899,1,1,106,107]]],[34,1,1,107,108,[[905,1,1,107,108]]],[36,1,1,108,109,[[910,1,1,108,109]]],[37,6,5,109,114,[[915,2,1,109,110],[919,1,1,110,111],[920,3,3,111,114]]]],[472,1234,1339,1342,1756,1760,1766,1812,1925,1928,1931,2414,2415,2420,3299,3315,4426,5036,5079,5137,5399,5402,5839,6737,6802,7442,7920,8202,8235,8481,8828,8829,9008,10029,10190,10883,11296,11545,11984,12412,12522,12697,12877,12894,12993,13083,13108,13131,13190,13319,13509,13625,13728,13758,13807,13873,13881,13912,14314,14420,14689,14783,14786,14787,14788,14825,14844,14995,15035,15126,15182,15190,15292,15313,15334,15372,15387,15418,15524,15838,16193,16266,16283,17051,17628,18147,18148,18239,18476,18595,18679,19207,19208,19287,19333,19674,20146,20210,20331,20426,20555,20819,22182,22206,22273,22313,22682,22782,22858,22939,23014,23018,23023,23024]]],["+",[3,3,[[15,1,1,0,1,[[418,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[22,1,1,2,3,[[729,1,1,2,3]]]],[12412,13131,18679]]],["As",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14787]]],["I",[6,6,[[0,1,1,0,1,[[43,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[9,1,1,2,3,[[275,1,1,2,3]]],[13,1,1,3,4,[[384,1,1,3,4]]],[15,1,1,4,5,[[418,1,1,4,5]]],[17,1,1,5,6,[[444,1,1,5,6]]]],[1339,6802,8235,11545,12412,13083]]],["as",[33,30,[[0,1,1,0,1,[[43,1,1,0,1]]],[1,3,3,1,4,[[58,1,1,1,2],[64,2,2,2,4]]],[15,1,1,4,5,[[421,1,1,4,5]]],[17,7,6,5,11,[[441,1,1,5,6],[445,2,1,6,7],[454,1,1,7,8],[466,1,1,8,9],[473,1,1,9,10],[476,1,1,10,11]]],[18,8,7,11,18,[[535,2,1,11,12],[538,1,1,12,13],[540,1,1,13,14],[555,1,1,14,15],[567,1,1,15,16],[569,1,1,16,17],[579,1,1,17,18]]],[19,1,1,18,19,[[650,1,1,18,19]]],[22,4,3,19,22,[[704,1,1,19,20],[708,1,1,20,21],[719,2,1,21,22]]],[23,2,2,22,24,[[757,1,1,22,23],[759,1,1,23,24]]],[27,3,3,24,27,[[868,1,1,24,25],[869,1,1,25,26],[874,1,1,26,27]]],[34,1,1,27,28,[[905,1,1,27,28]]],[37,2,2,28,30,[[920,2,2,28,30]]]],[1342,1760,1925,1928,12522,12993,13108,13319,13625,13807,13912,14786,14825,14844,15126,15387,15418,15524,17051,18147,18239,18476,19287,19333,22182,22206,22273,22782,23018,23024]]],["at",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20819]]],["both",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14788]]],["him",[9,8,[[8,1,1,0,1,[[245,1,1,0,1]]],[11,3,2,1,3,[[330,1,1,1,2],[335,2,1,2,3]]],[15,1,1,3,4,[[425,1,1,3,4]]],[17,4,4,4,8,[[436,1,1,4,5],[437,1,1,5,6],[471,1,1,6,7],[475,1,1,7,8]]]],[7442,10029,10190,12697,12877,12894,13758,13873]]],["his",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4426]]],["in",[2,2,[[18,1,1,0,1,[[535,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[14788,20426]]],["it",[11,9,[[1,5,4,0,4,[[58,1,1,0,1],[60,2,1,1,2],[79,2,2,2,4]]],[4,2,2,4,6,[[156,1,1,4,5],[159,1,1,5,6]]],[23,1,1,6,7,[[774,1,1,6,7]]],[36,1,1,7,8,[[910,1,1,7,8]]],[37,2,1,8,9,[[915,2,1,8,9]]]],[1766,1812,2414,2415,5036,5137,19674,22858,22939]]],["like",[13,12,[[17,2,2,0,2,[[449,1,1,0,1],[475,1,1,1,2]]],[18,8,7,2,9,[[506,2,1,2,3],[535,1,1,3,4],[555,1,1,4,5],[556,1,1,5,6],[565,1,1,6,7],[566,1,1,7,8],[617,1,1,8,9]]],[21,1,1,9,10,[[677,1,1,9,10]]],[25,1,1,10,11,[[806,1,1,10,11]]],[28,1,1,11,12,[[877,1,1,11,12]]]],[13190,13881,14314,14783,15182,15190,15313,15372,16266,17628,20555,22313]]],["me",[6,6,[[1,1,1,0,1,[[58,1,1,0,1]]],[4,1,1,1,2,[[170,1,1,1,2]]],[22,1,1,2,3,[[724,1,1,2,3]]],[23,2,2,3,5,[[793,1,1,3,4],[794,1,1,4,5]]],[24,1,1,5,6,[[797,1,1,5,6]]]],[1756,5399,18595,20146,20210,20331]]],["that",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2420]]],["thee",[19,17,[[1,2,1,0,1,[[64,2,1,0,1]]],[4,2,2,1,3,[[170,1,1,1,2],[185,1,1,2,3]]],[8,1,1,3,4,[[261,1,1,3,4]]],[9,1,1,4,5,[[273,1,1,4,5]]],[10,4,3,5,8,[[293,3,2,5,7],[298,1,1,7,8]]],[12,1,1,8,9,[[354,1,1,8,9]]],[13,1,1,9,10,[[372,1,1,9,10]]],[18,4,4,10,14,[[512,1,1,10,11],[548,1,1,11,12],[563,1,1,12,13],[566,1,1,13,14]]],[23,2,2,14,16,[[754,2,2,14,16]]],[32,1,1,16,17,[[899,1,1,16,17]]]],[1931,5402,5839,7920,8202,8828,8829,9008,10883,11296,14420,14995,15292,15334,19207,19208,22682]]],["them",[2,2,[[18,2,2,0,2,[[592,1,1,0,1],[612,1,1,1,2]]]],[15838,16193]]],["thou",[4,4,[[0,1,1,0,1,[[40,1,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]],[13,1,1,2,3,[[384,1,1,2,3]]],[17,1,1,3,4,[[470,1,1,3,4]]]],[1234,6737,11545,13728]]],["through",[2,2,[[37,2,2,0,2,[[919,1,1,0,1],[920,1,1,1,2]]]],[23014,23023]]],["thus",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15035]]],["thyself",[3,3,[[2,2,2,0,2,[[108,2,2,0,2]]],[18,1,1,2,3,[[527,1,1,2,3]]]],[3299,3315,14689]]],["to",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11984]]],["we",[1,1,[[4,1,1,0,1,[[157,1,1,0,1]]]],[5079]]],["were",[2,2,[[17,1,1,0,1,[[463,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]]],[13509,18148]]],["when",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[18,1,1,1,2,[[618,1,1,1,2]]]],[472,16283]]],["worth",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8481]]],["you",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13131]]]]},{"k":"H3645","v":[["*",[9,9,[[3,1,1,0,1,[[137,1,1,0,1]]],[6,1,1,1,2,[[221,1,1,1,2]]],[8,1,1,2,3,[[239,1,1,2,3]]],[10,2,2,3,5,[[301,2,2,3,5]]],[11,1,1,5,6,[[335,1,1,5,6]]],[23,3,3,6,9,[[792,3,3,6,9]]]],[4369,6853,7306,9115,9141,10178,20087,20093,20126]]],["+",[2,2,[[8,1,1,0,1,[[239,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[7306,20093]]],["Chemosh",[7,7,[[3,1,1,0,1,[[137,1,1,0,1]]],[6,1,1,1,2,[[221,1,1,1,2]]],[10,2,2,2,4,[[301,2,2,2,4]]],[11,1,1,4,5,[[335,1,1,4,5]]],[23,2,2,5,7,[[792,2,2,5,7]]]],[4369,6853,9115,9141,10178,20087,20126]]]]},{"k":"H3646","v":[["cummin",[3,2,[[22,3,2,0,2,[[706,3,2,0,2]]]],[18189,18191]]]]},{"k":"H3647","v":[["store",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5792]]]]},{"k":"H3648","v":[["*",[4,4,[[0,1,1,0,1,[[42,1,1,0,1]]],[10,1,1,1,2,[[293,1,1,1,2]]],[24,1,1,2,3,[[801,1,1,2,3]]],[27,1,1,3,4,[[872,1,1,3,4]]]],[1320,8842,20452,22248]]],["black",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20452]]],["kindled",[1,1,[[27,1,1,0,1,[[872,1,1,0,1]]]],[22248]]],["yearn",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1320]]],["yearned",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8842]]]]},{"k":"H3649","v":[["*",[3,3,[[11,1,1,0,1,[[335,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]],[35,1,1,2,3,[[906,1,1,2,3]]]],[10170,22230,22791]]],["Chemarims",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22791]]],["priests",[2,2,[[11,1,1,0,1,[[335,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]]],[10170,22230]]]]},{"k":"H3650","v":[["blackness",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12909]]]]},{"k":"H3651","v":[["*",[769,735,[[0,57,56,0,56,[[0,6,6,0,6],[1,1,1,6,7],[3,1,1,7,8],[5,2,2,8,10],[9,1,1,10,11],[10,1,1,11,12],[14,1,1,12,13],[15,1,1,13,14],[17,2,1,14,15],[18,2,2,15,17],[19,1,1,17,18],[20,1,1,18,19],[22,1,1,19,20],[24,3,3,20,23],[25,1,1,23,24],[28,4,4,24,28],[29,2,2,28,30],[30,1,1,30,31],[31,2,2,31,33],[32,2,2,33,35],[33,1,1,35,36],[37,1,1,36,37],[40,2,2,37,39],[41,8,8,39,47],[42,1,1,47,48],[43,1,1,48,49],[44,2,2,49,51],[46,1,1,51,52],[47,1,1,52,53],[49,3,3,53,56]]],[1,51,49,56,105,[[50,2,1,56,57],[52,1,1,57,58],[54,2,2,58,60],[55,2,2,60,62],[56,5,5,62,67],[57,5,5,67,72],[59,5,4,72,76],[60,2,2,76,78],[61,2,2,78,80],[62,1,1,80,81],[63,1,1,81,82],[64,1,1,82,83],[65,2,2,83,85],[66,1,1,85,86],[69,1,1,86,87],[71,1,1,87,88],[72,1,1,88,89],[74,2,2,89,91],[75,3,3,91,94],[76,2,2,94,96],[83,1,1,96,97],[85,3,3,97,100],[86,1,1,100,101],[88,3,3,101,104],[89,1,1,104,105]]],[2,12,12,105,117,[[93,1,1,105,106],[97,1,1,106,107],[99,1,1,107,108],[103,1,1,108,109],[105,3,3,109,112],[106,1,1,112,113],[113,2,2,113,115],[116,2,2,115,117]]],[3,38,35,117,152,[[117,1,1,117,118],[118,3,2,118,120],[120,1,1,120,121],[121,2,1,121,122],[122,1,1,122,123],[124,6,5,123,128],[125,4,4,128,132],[126,1,1,132,133],[128,1,1,133,134],[129,1,1,134,135],[130,2,2,135,137],[131,2,2,137,139],[132,1,1,139,140],[133,1,1,140,141],[134,2,2,141,143],[136,1,1,143,144],[137,2,2,144,146],[141,1,1,146,147],[143,1,1,147,148],[148,2,2,148,150],[152,2,2,150,152]]],[4,24,22,152,174,[[155,1,1,152,153],[156,1,1,153,154],[157,1,1,154,155],[159,1,1,155,156],[160,1,1,156,157],[162,1,1,157,158],[164,4,4,158,162],[167,3,3,162,165],[170,1,1,165,166],[171,1,1,166,167],[172,1,1,167,168],[173,1,1,168,169],[174,4,2,169,171],[176,2,2,171,173],[180,1,1,173,174]]],[5,18,17,174,191,[[187,1,1,174,175],[188,2,2,175,177],[190,1,1,177,178],[191,1,1,178,179],[193,1,1,179,180],[194,1,1,180,181],[195,1,1,181,182],[196,4,4,182,186],[197,2,1,186,187],[200,2,2,187,189],[207,1,1,189,190],[209,1,1,190,191]]],[6,22,21,191,212,[[211,1,1,191,192],[212,1,1,192,193],[215,2,2,193,195],[216,4,4,195,199],[217,2,1,199,200],[218,1,1,200,201],[220,1,1,201,202],[221,2,2,202,204],[222,1,1,204,205],[224,1,1,205,206],[225,2,2,206,208],[226,1,1,208,209],[228,1,1,209,210],[231,2,2,210,212]]],[8,26,23,212,235,[[236,2,1,212,213],[237,1,1,213,214],[238,1,1,214,215],[240,2,2,215,217],[241,1,1,217,218],[243,1,1,218,219],[244,2,1,219,220],[245,2,2,220,222],[250,1,1,222,223],[254,1,1,223,224],[255,1,1,224,225],[258,2,2,225,227],[259,2,2,227,229],[260,1,1,229,230],[261,1,1,230,231],[262,1,1,231,232],[263,3,2,232,234],[265,1,1,234,235]]],[9,30,30,235,265,[[268,1,1,235,236],[269,2,2,236,238],[271,3,3,238,241],[273,3,3,241,244],[274,1,1,244,245],[275,1,1,245,246],[276,1,1,246,247],[278,1,1,247,248],[279,4,4,248,252],[280,1,1,252,253],[281,1,1,253,254],[282,3,3,254,257],[284,1,1,257,258],[286,2,2,258,260],[287,2,2,260,262],[288,1,1,262,263],[289,1,1,263,264],[290,1,1,264,265]]],[10,24,24,265,289,[[291,3,3,265,268],[292,2,2,268,270],[296,2,2,270,272],[297,1,1,272,273],[299,1,1,273,274],[300,3,3,274,277],[301,1,1,277,278],[302,1,1,278,279],[303,1,1,279,280],[304,2,2,280,282],[310,3,3,282,285],[312,4,4,285,289]]],[11,14,14,289,303,[[313,3,3,289,292],[314,1,1,292,293],[318,1,1,293,294],[319,2,2,294,296],[327,1,1,296,297],[328,1,1,297,298],[329,1,1,298,299],[330,1,1,299,300],[331,1,1,300,301],[333,1,1,301,302],[334,1,1,302,303]]],[12,10,10,303,313,[[348,1,1,303,304],[350,1,1,304,305],[351,1,1,305,306],[354,2,2,306,308],[355,1,1,308,309],[356,1,1,309,310],[357,2,2,310,312],[360,1,1,312,313]]],[13,20,19,313,332,[[367,3,2,313,315],[373,1,1,315,316],[374,1,1,316,317],[375,1,1,317,318],[382,1,1,318,319],[384,4,4,319,323],[386,3,3,323,326],[390,1,1,326,327],[398,3,3,327,330],[399,1,1,330,331],[401,1,1,331,332]]],[14,2,2,332,334,[[412,2,2,332,334]]],[15,6,6,334,340,[[414,1,1,334,335],[417,2,2,335,337],[418,2,2,337,339],[420,1,1,339,340]]],[16,13,11,340,351,[[426,2,2,340,342],[427,2,2,342,344],[428,1,1,344,345],[429,2,1,345,346],[431,1,1,346,347],[432,1,1,347,348],[434,4,3,348,351]]],[17,22,22,351,373,[[438,1,1,351,352],[440,1,1,352,353],[441,1,1,353,354],[442,2,2,354,356],[443,1,1,356,357],[444,3,3,357,360],[452,1,1,360,361],[455,2,2,361,363],[457,1,1,363,364],[458,1,1,364,365],[467,2,2,365,367],[469,3,3,367,370],[472,1,1,370,371],[477,2,2,371,373]]],[18,35,35,373,408,[[478,2,2,373,375],[493,1,1,375,376],[495,1,1,376,377],[502,1,1,377,378],[519,2,2,378,380],[522,3,3,380,383],[523,1,1,383,384],[525,3,3,384,387],[538,1,1,387,388],[540,2,2,388,390],[542,1,1,390,391],[550,2,2,391,393],[555,1,1,393,394],[560,1,1,394,395],[567,1,1,395,396],[580,1,1,396,397],[587,1,1,397,398],[596,5,5,398,403],[600,1,1,403,404],[604,2,2,404,406],[605,1,1,406,407],[624,1,1,407,408]]],[19,18,18,408,426,[[628,1,1,408,409],[633,2,2,409,411],[634,1,1,411,412],[637,1,1,412,413],[638,1,1,413,414],[642,1,1,414,415],[650,1,1,415,416],[651,2,2,416,418],[653,4,4,418,422],[654,2,2,422,424],[655,1,1,424,425],[657,1,1,425,426]]],[20,7,6,426,432,[[661,1,1,426,427],[663,2,2,427,429],[665,1,1,429,430],[666,3,2,430,432]]],[21,3,3,432,435,[[671,1,1,432,433],[672,2,2,433,435]]],[22,76,70,435,505,[[679,2,2,435,437],[683,4,4,437,441],[685,1,1,441,442],[686,1,1,442,443],[687,1,1,443,444],[688,5,4,444,448],[691,2,2,448,450],[692,1,1,450,451],[693,2,2,451,453],[694,4,4,453,457],[695,1,1,457,458],[698,2,2,458,460],[699,1,1,460,461],[700,1,1,461,462],[702,3,2,462,464],[703,1,1,464,465],[704,2,2,465,467],[705,2,2,467,469],[706,2,2,469,471],[707,3,3,471,474],[708,7,5,474,479],[709,2,2,479,481],[714,1,1,481,482],[715,1,1,482,483],[716,2,2,483,485],[725,1,1,485,486],[728,2,1,486,487],[729,2,2,487,489],[730,4,3,489,492],[731,1,1,492,493],[732,1,1,493,494],[733,2,2,494,496],[735,1,1,496,497],[737,1,1,497,498],[739,2,2,498,500],[741,1,1,500,501],[743,2,2,501,503],[744,2,2,503,505]]],[23,101,98,505,603,[[746,3,3,505,508],[747,1,1,508,509],[749,7,6,509,515],[750,4,4,515,519],[751,2,2,519,521],[752,3,3,521,524],[753,2,2,524,526],[754,1,1,526,527],[755,3,3,527,530],[756,1,1,530,531],[757,1,1,531,532],[758,2,2,532,534],[759,1,1,534,535],[760,3,3,535,538],[762,3,3,538,541],[763,2,2,541,543],[764,1,1,543,544],[765,1,1,544,545],[766,1,1,545,546],[767,8,8,546,554],[768,2,2,554,556],[769,1,1,556,557],[772,2,2,557,559],[773,2,2,559,561],[774,1,1,561,562],[775,3,3,562,565],[776,3,3,565,568],[777,1,1,568,569],[778,3,3,569,572],[779,2,2,572,574],[780,1,1,574,575],[782,2,2,575,577],[783,1,1,577,578],[786,4,4,578,582],[788,3,3,582,585],[790,1,1,585,586],[792,7,5,586,591],[793,4,4,591,595],[794,4,4,595,599],[795,4,4,599,603]]],[24,3,3,603,606,[[797,1,1,603,604],[799,2,2,604,606]]],[25,86,82,606,688,[[802,1,1,606,607],[806,4,4,607,611],[808,1,1,611,612],[812,5,5,612,617],[813,4,4,617,621],[814,5,4,621,625],[815,2,2,625,627],[816,2,1,627,628],[817,2,2,628,630],[818,1,1,630,631],[819,1,1,631,632],[821,3,3,632,635],[822,3,3,635,638],[823,5,4,638,642],[824,4,4,642,646],[825,2,2,646,648],[826,5,5,648,653],[827,1,1,653,654],[829,2,2,654,656],[830,3,3,656,659],[831,1,1,659,660],[832,2,2,660,662],[834,2,2,662,664],[835,4,4,664,668],[836,3,3,668,671],[837,8,8,671,679],[838,1,1,679,680],[839,1,1,680,681],[840,1,1,681,682],[841,1,1,682,683],[842,2,1,683,684],[843,2,2,684,686],[845,1,1,686,687],[846,1,1,687,688]]],[27,10,10,688,698,[[863,3,3,688,691],[865,3,3,691,694],[867,1,1,694,695],[872,1,1,695,696],[874,2,2,696,698]]],[28,2,2,698,700,[[877,2,2,698,700]]],[29,11,11,700,711,[[881,3,3,700,703],[882,2,2,703,705],[883,4,4,705,709],[884,1,1,709,710],[885,1,1,710,711]]],[31,1,1,711,712,[[892,1,1,711,712]]],[32,6,6,712,718,[[893,1,1,712,713],[894,2,2,713,715],[895,2,2,715,717],[897,1,1,717,718]]],[33,2,1,718,719,[[900,2,1,718,719]]],[34,5,4,719,723,[[903,5,4,719,723]]],[35,2,2,723,725,[[907,1,1,723,724],[908,1,1,724,725]]],[36,4,2,725,727,[[909,1,1,725,726],[910,3,1,726,727]]],[37,8,8,727,735,[[911,2,2,727,729],[917,1,1,729,730],[918,2,2,730,732],[920,1,1,732,733],[921,1,1,733,734],[924,1,1,734,735]]]],[6,8,10,14,23,29,54,94,141,159,243,275,374,395,429,465,479,501,544,590,680,684,688,725,821,823,829,830,836,845,921,948,960,970,977,987,1145,1208,1226,1263,1271,1272,1273,1277,1283,1285,1286,1301,1334,1373,1379,1442,1469,1509,1517,1518,1544,1599,1640,1649,1661,1664,1691,1695,1696,1705,1707,1717,1727,1728,1734,1736,1787,1788,1791,1806,1807,1814,1844,1866,1882,1893,1943,1964,1976,1989,2062,2143,2155,2204,2228,2239,2252,2259,2280,2283,2528,2577,2588,2595,2623,2696,2706,2707,2723,2815,2952,2990,3147,3217,3227,3229,3247,3465,3466,3582,3584,3658,3675,3692,3758,3796,3844,3942,3943,3954,3959,3961,3970,3979,3981,3982,4019,4066,4108,4136,4151,4167,4173,4205,4255,4281,4285,4323,4354,4367,4483,4561,4741,4749,4884,4889,4996,5009,5068,5130,5157,5195,5244,5262,5270,5271,5330,5334,5336,5398,5413,5442,5460,5473,5496,5543,5547,5674,5868,5873,5890,5918,5949,6002,6036,6063,6065,6087,6090,6103,6122,6192,6201,6423,6475,6516,6562,6638,6654,6674,6676,6692,6694,6711,6726,6824,6837,6839,6875,6919,6940,6948,6953,7005,7116,7125,7219,7270,7290,7324,7326,7341,7377,7404,7423,7430,7593,7730,7759,7827,7838,7844,7847,7886,7929,7936,7944,7960,8001,8050,8090,8109,8140,8152,8157,8197,8202,8207,8210,8238,8241,8317,8318,8329,8335,8352,8373,8390,8436,8445,8449,8492,8572,8575,8594,8598,8652,8658,8702,8747,8753,8754,8777,8808,8922,8929,8952,9060,9091,9099,9108,9116,9183,9193,9222,9228,9431,9433,9448,9488,9492,9499,9502,9537,9539,9549,9561,9698,9716,9727,9937,9974,9992,10045,10093,10131,10165,10680,10764,10785,10878,10888,10891,10908,10929,10930,11013,11206,11211,11346,11360,11383,11516,11549,11553,11560,11563,11588,11613,11622,11681,11892,11898,11906,11922,11978,12264,12268,12323,12394,12397,12407,12414,12510,12710,12715,12728,12736,12749,12778,12803,12812,12848,12853,12860,12905,12978,12981,13011,13017,13042,13053,13073,13086,13264,13328,13347,13399,13434,13634,13638,13693,13708,13710,13793,13925,13928,13943,13944,14101,14167,14259,14556,14561,14599,14604,14614,14616,14639,14642,14644,14827,14841,14843,14869,15026,15030,15134,15256,15390,15564,15793,16002,16017,16025,16026,16027,16100,16123,16125,16130,16371,16419,16555,16569,16590,16682,16707,16814,17051,17093,17108,17142,17143,17149,17160,17177,17188,17198,17271,17378,17399,17413,17435,17468,17469,17540,17556,17557,17678,17680,17752,17753,17763,17764,17796,17814,17846,17857,17861,17866,17874,17913,17919,17952,17964,17967,17975,17976,17978,17980,17993,18031,18033,18038,18056,18101,18110,18121,18144,18147,18160,18162,18178,18180,18201,18207,18215,18224,18229,18230,18233,18235,18254,18255,18336,18385,18403,18404,18614,18669,18679,18694,18702,18710,18711,18723,18732,18749,18751,18775,18809,18850,18854,18880,18905,18910,18935,18944,18974,18991,18998,19022,19060,19064,19072,19077,19085,19089,19096,19104,19107,19110,19139,19151,19159,19163,19165,19182,19190,19222,19237,19247,19248,19257,19277,19303,19308,19334,19350,19352,19357,19390,19397,19405,19413,19419,19433,19447,19472,19486,19491,19494,19496,19499,19514,19522,19523,19529,19532,19542,19624,19634,19663,19667,19683,19694,19711,19719,19759,19767,19773,19797,19806,19812,19818,19840,19842,19872,19899,19907,19935,19980,19990,19993,19995,20021,20033,20036,20071,20091,20092,20110,20111,20116,20129,20133,20147,20153,20184,20196,20205,20211,20219,20248,20259,20264,20318,20375,20378,20492,20553,20554,20556,20557,20597,20659,20660,20662,20671,20672,20687,20691,20703,20708,20716,20721,20728,20731,20735,20737,20760,20797,20799,20844,20879,20922,20925,20931,20948,20956,20968,20980,20995,20996,20998,21016,21029,21042,21051,21062,21065,21087,21090,21092,21096,21099,21103,21163,21164,21191,21193,21202,21226,21235,21240,21290,21305,21320,21322,21325,21333,21350,21355,21359,21362,21363,21364,21365,21366,21373,21381,21397,21409,21439,21473,21493,21533,21558,21563,21611,21650,22111,22114,22119,22136,22140,22146,22172,22242,22269,22272,22315,22339,22397,22406,22407,22415,22422,22434,22436,22437,22439,22457,22481,22570,22593,22598,22600,22614,22620,22636,22696,22735,22746,22747,22748,22814,22828,22850,22869,22884,22894,22975,22989,22991,23018,23039,23083]]],["+",[186,180,[[0,28,28,0,28,[[1,1,1,0,1],[9,1,1,1,2],[10,1,1,2,3],[14,1,1,3,4],[15,1,1,4,5],[17,1,1,5,6],[18,2,2,6,8],[19,1,1,8,9],[20,1,1,9,10],[24,2,2,10,12],[25,1,1,12,13],[28,2,2,13,15],[29,1,1,15,16],[30,1,1,16,17],[31,2,2,17,19],[32,2,2,19,21],[37,1,1,21,22],[40,1,1,22,23],[41,1,1,23,24],[43,1,1,24,25],[46,1,1,25,26],[49,2,2,26,28]]],[1,9,9,28,37,[[50,1,1,28,29],[54,2,2,29,31],[60,1,1,31,32],[62,1,1,32,33],[64,1,1,33,34],[65,1,1,34,35],[69,1,1,35,36],[83,1,1,36,37]]],[2,4,4,37,41,[[103,1,1,37,38],[105,2,2,38,40],[106,1,1,40,41]]],[3,5,5,41,46,[[126,1,1,41,42],[130,1,1,42,43],[134,1,1,43,44],[137,2,2,44,46]]],[4,7,7,46,53,[[157,1,1,46,47],[162,1,1,47,48],[167,2,2,48,50],[171,1,1,50,51],[176,2,2,51,53]]],[5,4,4,53,57,[[193,1,1,53,54],[194,1,1,54,55],[196,1,1,55,56],[200,1,1,56,57]]],[6,4,4,57,61,[[216,1,1,57,58],[225,1,1,58,59],[226,1,1,59,60],[228,1,1,60,61]]],[8,10,10,61,71,[[240,1,1,61,62],[244,1,1,62,63],[245,2,2,63,65],[254,1,1,65,66],[255,1,1,66,67],[258,1,1,67,68],[259,2,2,68,70],[263,1,1,70,71]]],[9,7,7,71,78,[[269,1,1,71,72],[271,2,2,72,74],[273,2,2,74,76],[287,1,1,76,77],[288,1,1,77,78]]],[10,2,2,78,80,[[299,1,1,78,79],[310,1,1,79,80]]],[12,3,3,80,83,[[348,1,1,80,81],[351,1,1,81,82],[354,1,1,82,83]]],[13,5,5,83,88,[[367,1,1,83,84],[373,1,1,84,85],[382,1,1,85,86],[386,1,1,86,87],[398,1,1,87,88]]],[16,3,2,88,90,[[434,3,2,88,90]]],[17,10,10,90,100,[[441,1,1,90,91],[444,2,2,91,93],[452,1,1,93,94],[455,1,1,94,95],[457,1,1,95,96],[458,1,1,96,97],[467,1,1,97,98],[469,1,1,98,99],[477,1,1,99,100]]],[18,13,13,100,113,[[478,1,1,100,101],[495,1,1,101,102],[502,1,1,102,103],[519,1,1,103,104],[522,3,3,104,107],[523,1,1,107,108],[587,1,1,108,109],[596,4,4,109,113]]],[19,2,2,113,115,[[633,1,1,113,114],[634,1,1,114,115]]],[20,2,2,115,117,[[663,1,1,115,116],[666,1,1,116,117]]],[21,1,1,117,118,[[671,1,1,117,118]]],[22,24,21,118,139,[[679,1,1,118,119],[683,1,1,119,120],[687,1,1,120,121],[691,2,2,121,123],[693,2,2,123,125],[694,2,2,125,127],[695,1,1,127,128],[699,1,1,128,129],[700,1,1,129,130],[702,3,2,130,132],[703,1,1,132,133],[705,1,1,133,134],[708,2,1,134,135],[728,2,1,135,136],[729,1,1,136,137],[735,1,1,137,138],[737,1,1,138,139]]],[23,20,19,139,158,[[749,2,2,139,141],[754,1,1,141,142],[756,1,1,142,143],[760,1,1,143,144],[764,1,1,144,145],[765,1,1,145,146],[773,1,1,146,147],[775,2,2,147,149],[778,1,1,149,150],[782,1,1,150,151],[788,1,1,151,152],[790,1,1,152,153],[792,4,3,153,156],[793,1,1,156,157],[795,1,1,157,158]]],[24,3,3,158,161,[[797,1,1,158,159],[799,2,2,159,161]]],[25,6,6,161,167,[[808,1,1,161,162],[823,1,1,162,163],[832,1,1,163,164],[842,1,1,164,165],[843,1,1,165,166],[845,1,1,166,167]]],[27,4,4,167,171,[[865,2,2,167,169],[867,1,1,169,170],[874,1,1,170,171]]],[28,1,1,171,172,[[877,1,1,171,172]]],[29,1,1,172,173,[[881,1,1,172,173]]],[31,1,1,173,174,[[892,1,1,173,174]]],[34,5,4,174,178,[[903,5,4,174,178]]],[36,1,1,178,179,[[909,1,1,178,179]]],[37,1,1,179,180,[[920,1,1,179,180]]]],[54,243,275,374,395,429,465,479,501,544,684,688,725,829,830,836,921,948,960,970,977,1145,1226,1273,1334,1442,1517,1518,1544,1640,1649,1807,1882,1943,1976,2062,2528,3147,3227,3229,3247,4019,4151,4281,4354,4367,5068,5195,5330,5334,5413,5543,5547,6002,6036,6090,6201,6676,6948,6953,7005,7324,7404,7423,7430,7730,7759,7838,7844,7847,7960,8109,8140,8152,8202,8207,8594,8652,9060,9431,10680,10785,10888,11206,11346,11516,11613,11898,12853,12860,12981,13053,13073,13264,13347,13399,13434,13634,13710,13928,13944,14167,14259,14561,14599,14604,14614,14616,15793,16002,16025,16026,16027,16555,16590,17399,17469,17540,17680,17764,17846,17913,17919,17964,17967,17978,17980,17993,18038,18056,18101,18110,18121,18162,18233,18669,18679,18775,18809,19064,19085,19222,19257,19352,19433,19447,19663,19694,19711,19812,19899,20033,20071,20091,20111,20116,20133,20219,20318,20375,20378,20597,20980,21235,21533,21558,21611,22136,22146,22172,22272,22339,22397,22570,22735,22746,22747,22748,22850,23018]]],["As",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16707]]],["Howbeit",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11906]]],["Likewise",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2143]]],["So",[21,21,[[0,1,1,0,1,[[17,1,1,0,1]]],[3,1,1,1,2,[[125,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[10,3,3,3,6,[[296,1,1,3,4],[302,1,1,4,5],[310,1,1,5,6]]],[17,2,2,6,8,[[442,1,1,6,7],[443,1,1,7,8]]],[18,3,3,8,11,[[538,1,1,8,9],[560,1,1,9,10],[567,1,1,10,11]]],[19,4,4,11,15,[[628,1,1,11,12],[633,1,1,12,13],[651,1,1,13,14],[653,1,1,14,15]]],[22,3,3,15,18,[[698,1,1,15,16],[730,1,1,16,17],[733,1,1,17,18]]],[23,1,1,18,19,[[768,1,1,18,19]]],[36,1,1,19,20,[[910,1,1,19,20]]],[37,1,1,20,21,[[918,1,1,20,21]]]],[429,3981,6654,8929,9183,9448,13011,13042,14827,15256,15390,16419,16569,17093,17160,18033,18711,18751,19532,22869,22991]]],["Such",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17271]]],["Surely",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7944]]],["Therefore",[142,142,[[0,2,2,0,2,[[3,1,1,0,1],[29,1,1,1,2]]],[6,2,2,2,4,[[218,1,1,2,3],[221,1,1,3,4]]],[8,1,1,4,5,[[263,1,1,4,5]]],[10,1,1,5,6,[[304,1,1,5,6]]],[11,2,2,6,8,[[331,1,1,6,7],[333,1,1,7,8]]],[13,1,1,8,9,[[384,1,1,8,9]]],[17,4,4,9,13,[[455,1,1,9,10],[467,1,1,10,11],[469,2,2,11,13]]],[18,4,4,13,17,[[493,1,1,13,14],[550,2,2,14,16],[555,1,1,16,17]]],[22,17,17,17,34,[[679,1,1,17,18],[683,3,3,18,21],[685,1,1,21,22],[688,2,2,22,24],[694,1,1,24,25],[706,1,1,25,26],[707,2,2,26,28],[708,1,1,28,29],[715,1,1,29,30],[729,1,1,30,31],[730,1,1,31,32],[731,1,1,32,33],[743,1,1,33,34]]],[23,44,44,34,78,[[750,2,2,34,36],[751,2,2,36,38],[752,1,1,38,39],[753,2,2,39,41],[755,3,3,41,44],[758,1,1,44,45],[759,1,1,45,46],[760,2,2,46,48],[762,2,2,48,50],[763,1,1,50,51],[766,1,1,51,52],[767,5,5,52,57],[769,1,1,57,58],[772,1,1,58,59],[773,1,1,59,60],[774,1,1,60,61],[776,1,1,61,62],[778,1,1,62,63],[779,2,2,63,65],[780,1,1,65,66],[788,2,2,66,68],[792,1,1,68,69],[793,3,3,69,72],[794,4,4,72,76],[795,2,2,76,78]]],[25,45,45,78,123,[[806,3,3,78,81],[812,4,4,81,85],[813,1,1,85,86],[814,3,3,86,89],[815,2,2,89,91],[816,1,1,91,92],[818,1,1,92,93],[819,1,1,93,94],[821,1,1,94,95],[822,1,1,95,96],[823,1,1,96,97],[824,2,2,97,99],[825,1,1,99,100],[826,3,3,100,103],[827,1,1,103,104],[829,1,1,104,105],[830,2,2,105,107],[831,1,1,107,108],[832,1,1,108,109],[835,3,3,109,112],[836,2,2,112,114],[837,6,6,114,120],[838,1,1,120,121],[839,1,1,121,122],[840,1,1,122,123]]],[27,4,4,123,127,[[863,3,3,123,126],[874,1,1,126,127]]],[29,6,6,127,133,[[881,1,1,127,128],[882,1,1,128,129],[883,2,2,129,131],[884,1,1,131,132],[885,1,1,132,133]]],[32,6,6,133,139,[[893,1,1,133,134],[894,2,2,134,136],[895,2,2,136,138],[897,1,1,138,139]]],[35,2,2,139,141,[[907,1,1,139,140],[908,1,1,140,141]]],[37,1,1,141,142,[[911,1,1,141,142]]]],[94,845,6726,6837,7944,9228,10093,10131,11560,13328,13638,13693,13708,14101,15026,15030,15134,17678,17752,17753,17763,17796,17866,17874,17976,18180,18207,18215,18230,18385,18694,18702,18723,18910,19107,19110,19139,19151,19163,19182,19190,19237,19247,19248,19308,19334,19350,19357,19397,19405,19413,19472,19486,19491,19499,19514,19523,19542,19634,19667,19683,19759,19818,19840,19842,19872,20021,20036,20092,20129,20147,20153,20184,20196,20205,20211,20248,20259,20553,20554,20556,20659,20662,20671,20672,20708,20716,20721,20731,20735,20737,20760,20844,20879,20922,20968,20995,21029,21042,21065,21092,21096,21099,21103,21163,21191,21202,21226,21240,21320,21322,21333,21350,21355,21362,21363,21364,21366,21373,21381,21409,21439,21473,22111,22114,22119,22269,22406,22422,22436,22439,22457,22481,22593,22598,22600,22614,22620,22636,22814,22828,22894]]],["Thus",[8,8,[[3,1,1,0,1,[[134,1,1,0,1]]],[4,1,1,1,2,[[172,1,1,1,2]]],[18,1,1,2,3,[[540,1,1,2,3]]],[22,1,1,3,4,[[725,1,1,3,4]]],[23,2,2,4,6,[[758,1,1,4,5],[763,1,1,5,6]]],[25,2,2,6,8,[[812,1,1,6,7],[834,1,1,7,8]]]],[4285,5442,14843,18614,19303,19419,20660,21290]]],["Wherefore",[16,16,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,1,1,1,2,[[141,1,1,1,2]]],[8,1,1,2,3,[[237,1,1,2,3]]],[22,2,2,3,5,[[706,1,1,3,4],[708,1,1,4,5]]],[23,4,4,5,9,[[746,1,1,5,6],[749,1,1,6,7],[767,1,1,7,8],[795,1,1,8,9]]],[25,7,7,9,16,[[806,1,1,9,10],[814,1,1,10,11],[817,1,1,11,12],[821,1,1,12,13],[824,1,1,13,14],[825,1,1,14,15],[834,1,1,15,16]]]],[1661,4483,7270,18178,18229,18974,19072,19496,20264,20557,20728,20797,20925,21016,21062,21305]]],["also",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6638]]],["aright",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19159]]],["as",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21563]]],["cause",[2,2,[[3,1,1,0,1,[[132,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]]],[4205,12407]]],["even",[2,2,[[23,2,2,0,2,[[783,1,1,0,1],[786,1,1,1,2]]]],[19935,19980]]],["like",[3,3,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,2,2,1,3,[[367,1,1,1,2],[375,1,1,2,3]]]],[9099,11206,11383]]],["likewise",[11,11,[[1,3,3,0,3,[[75,1,1,0,1],[76,1,1,1,2],[85,1,1,2,3]]],[4,2,2,3,5,[[167,1,1,3,4],[174,1,1,4,5]]],[6,1,1,5,6,[[217,1,1,5,6]]],[10,1,1,6,7,[[301,1,1,6,7]]],[12,1,1,7,8,[[360,1,1,7,8]]],[16,1,1,8,9,[[429,1,1,8,9]]],[25,1,1,9,10,[[841,1,1,9,10]]],[33,1,1,10,11,[[900,1,1,10,11]]]],[2239,2283,2577,5336,5473,6711,9116,11013,12778,21493,22696]]],["manner",[3,3,[[1,2,2,0,2,[[56,1,1,0,1],[72,1,1,1,2]]],[4,1,1,2,3,[[174,1,1,2,3]]]],[1696,2155,5473]]],["more",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1544]]],["right",[4,4,[[3,1,1,0,1,[[143,1,1,0,1]]],[6,1,1,1,2,[[222,1,1,1,2]]],[11,1,1,2,3,[[329,1,1,2,3]]],[23,1,1,3,4,[[767,1,1,3,4]]]],[4561,6875,9992,19494]]],["so",[267,259,[[0,16,16,0,16,[[0,6,6,0,6],[5,1,1,6,7],[24,1,1,7,8],[28,2,2,8,10],[40,1,1,10,11],[41,1,1,11,12],[42,1,1,12,13],[44,1,1,13,14],[47,1,1,14,15],[49,1,1,15,16]]],[1,25,25,16,41,[[55,1,1,16,17],[56,4,4,17,21],[57,5,5,21,26],[59,2,2,26,28],[61,2,2,28,30],[63,1,1,30,31],[65,1,1,31,32],[66,1,1,32,33],[74,2,2,33,35],[76,1,1,35,36],[86,1,1,36,37],[88,3,3,37,40],[89,1,1,40,41]]],[2,8,8,41,49,[[93,1,1,41,42],[97,1,1,42,43],[99,1,1,43,44],[105,1,1,44,45],[113,2,2,45,47],[116,2,2,47,49]]],[3,22,20,49,69,[[117,1,1,49,50],[118,3,2,50,52],[121,2,1,52,53],[122,1,1,53,54],[124,4,4,54,58],[125,2,2,58,60],[128,1,1,60,61],[129,1,1,61,62],[130,1,1,62,63],[131,2,2,63,65],[133,1,1,65,66],[148,2,2,66,68],[152,1,1,68,69]]],[4,12,12,69,81,[[155,1,1,69,70],[156,1,1,70,71],[159,1,1,71,72],[160,1,1,72,73],[164,4,4,73,77],[170,1,1,77,78],[174,2,2,78,80],[180,1,1,80,81]]],[5,12,11,81,92,[[187,1,1,81,82],[188,1,1,82,83],[190,1,1,83,84],[191,1,1,84,85],[195,1,1,85,86],[196,3,3,86,89],[197,2,1,89,90],[200,1,1,90,91],[209,1,1,91,92]]],[6,11,11,92,103,[[211,1,1,92,93],[212,1,1,93,94],[216,3,3,94,97],[217,1,1,97,98],[221,1,1,98,99],[224,1,1,99,100],[225,1,1,100,101],[231,2,2,101,103]]],[8,9,8,103,111,[[236,2,1,103,104],[240,1,1,104,105],[241,1,1,105,106],[243,1,1,106,107],[250,1,1,107,108],[260,1,1,108,109],[261,1,1,109,110],[265,1,1,110,111]]],[9,12,12,111,123,[[269,1,1,111,112],[271,1,1,112,113],[273,1,1,113,114],[275,1,1,114,115],[279,1,1,115,116],[280,1,1,116,117],[282,3,3,117,120],[286,2,2,120,122],[289,1,1,122,123]]],[10,14,14,123,137,[[291,3,3,123,126],[292,2,2,126,128],[296,1,1,128,129],[297,1,1,129,130],[300,1,1,130,131],[303,1,1,131,132],[304,1,1,132,133],[310,1,1,133,134],[312,3,3,134,137]]],[11,5,5,137,142,[[314,1,1,137,138],[319,1,1,138,139],[327,1,1,139,140],[328,1,1,140,141],[330,1,1,141,142]]],[12,3,3,142,145,[[350,1,1,142,143],[354,1,1,143,144],[357,1,1,144,145]]],[13,7,7,145,152,[[367,1,1,145,146],[374,1,1,146,147],[384,3,3,147,150],[398,1,1,150,151],[401,1,1,151,152]]],[14,2,2,152,154,[[412,2,2,152,154]]],[15,4,4,154,158,[[417,2,2,154,156],[418,1,1,156,157],[420,1,1,157,158]]],[16,9,9,158,167,[[426,2,2,158,160],[427,2,2,160,162],[428,1,1,162,163],[429,1,1,163,164],[431,1,1,164,165],[432,1,1,165,166],[434,1,1,166,167]]],[17,3,3,167,170,[[440,1,1,167,168],[442,1,1,168,169],[444,1,1,169,170]]],[18,12,12,170,182,[[478,1,1,170,171],[519,1,1,171,172],[525,3,3,172,175],[540,1,1,175,176],[542,1,1,176,177],[580,1,1,177,178],[600,1,1,178,179],[604,2,2,179,181],[624,1,1,181,182]]],[19,9,9,182,191,[[637,1,1,182,183],[642,1,1,183,184],[650,1,1,184,185],[651,1,1,185,186],[653,3,3,186,189],[654,2,2,189,191]]],[20,5,4,191,195,[[661,1,1,191,192],[663,1,1,192,193],[665,1,1,193,194],[666,2,1,194,195]]],[21,2,2,195,197,[[672,2,2,195,197]]],[22,21,20,197,217,[[688,3,2,197,199],[692,1,1,199,200],[694,1,1,200,201],[698,1,1,201,202],[704,1,1,202,203],[707,1,1,203,204],[709,2,2,204,206],[714,1,1,206,207],[716,2,2,207,209],[730,1,1,209,210],[732,1,1,210,211],[733,1,1,211,212],[739,1,1,212,213],[741,1,1,213,214],[743,1,1,214,215],[744,2,2,215,217]]],[23,19,18,217,235,[[746,1,1,217,218],[747,1,1,218,219],[749,3,3,219,222],[750,1,1,222,223],[757,1,1,223,224],[762,1,1,224,225],[768,1,1,225,226],[772,1,1,226,227],[775,1,1,227,228],[776,1,1,228,229],[777,1,1,229,230],[778,1,1,230,231],[782,1,1,231,232],[786,2,2,232,234],[792,2,1,234,235]]],[25,13,13,235,248,[[802,1,1,235,236],[813,2,2,236,238],[816,1,1,238,239],[821,1,1,239,240],[823,2,2,240,242],[824,1,1,242,243],[835,1,1,243,244],[836,1,1,244,245],[837,1,1,245,246],[842,1,1,246,247],[846,1,1,247,248]]],[27,2,2,248,250,[[865,1,1,248,249],[872,1,1,249,250]]],[28,1,1,250,251,[[877,1,1,250,251]]],[29,2,2,251,253,[[881,1,1,251,252],[883,1,1,252,253]]],[36,2,1,253,254,[[910,2,1,253,254]]],[37,5,5,254,259,[[911,1,1,254,255],[917,1,1,255,256],[918,1,1,256,257],[921,1,1,257,258],[924,1,1,258,259]]]],[6,8,10,14,23,29,159,680,821,823,1208,1272,1301,1379,1469,1509,1664,1691,1695,1705,1707,1717,1727,1728,1734,1736,1787,1788,1844,1866,1893,1964,1989,2204,2228,2280,2623,2696,2706,2707,2723,2815,2952,2990,3217,3465,3466,3582,3584,3658,3675,3692,3796,3844,3942,3943,3959,3961,3970,3979,4066,4108,4136,4167,4173,4255,4741,4749,4889,4996,5009,5130,5157,5244,5262,5270,5271,5398,5473,5496,5674,5868,5890,5918,5949,6063,6065,6087,6103,6122,6192,6475,6516,6562,6674,6692,6694,6711,6839,6919,6940,7116,7125,7219,7326,7341,7377,7593,7886,7929,8001,8090,8157,8197,8238,8352,8373,8436,8445,8449,8572,8575,8658,8747,8753,8754,8777,8808,8922,8952,9108,9193,9222,9433,9488,9492,9502,9561,9727,9937,9974,10045,10764,10878,10929,11211,11360,11549,11553,11563,11892,11978,12264,12268,12394,12397,12414,12510,12710,12715,12728,12736,12749,12778,12803,12812,12848,12978,13017,13086,13943,14556,14639,14642,14644,14841,14869,15564,16100,16123,16125,16371,16682,16814,17051,17108,17142,17143,17149,17177,17188,17378,17413,17435,17468,17556,17557,17857,17861,17952,17975,18031,18147,18201,18254,18255,18336,18403,18404,18710,18732,18749,18854,18880,18905,18935,18944,18991,19022,19077,19085,19089,19096,19277,19390,19529,19624,19719,19773,19797,19806,19907,19993,19995,20110,20492,20687,20691,20760,20931,20996,20998,21051,21325,21359,21397,21533,21650,22140,22242,22315,22407,22437,22869,22884,22975,22989,23039,23083]]],["state",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17198]]],["straightway",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7404]]],["such",[4,3,[[1,2,1,0,1,[[59,2,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[10,1,1,2,3,[[300,1,1,2,3]]]],[1791,8335,9091]]],["surely",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19060]]],["that",[11,11,[[0,2,2,0,2,[[5,1,1,0,1],[44,1,1,1,2]]],[1,2,2,2,4,[[52,1,1,2,3],[60,1,1,3,4]]],[3,4,4,4,8,[[120,1,1,4,5],[124,2,2,5,7],[125,1,1,7,8]]],[4,1,1,8,9,[[173,1,1,8,9]]],[8,1,1,9,10,[[258,1,1,9,10]]],[9,1,1,10,11,[[290,1,1,10,11]]]],[141,1373,1599,1814,3758,3954,3961,3982,5460,7827,8702]]],["therefore",[36,35,[[3,1,1,0,1,[[136,1,1,0,1]]],[8,1,1,1,2,[[238,1,1,1,2]]],[10,1,1,2,3,[[312,1,1,2,3]]],[11,4,4,3,7,[[313,3,3,3,6],[334,1,1,6,7]]],[17,2,2,7,9,[[472,1,1,7,8],[477,1,1,8,9]]],[18,1,1,9,10,[[596,1,1,9,10]]],[22,8,7,10,17,[[686,1,1,10,11],[704,1,1,11,12],[705,1,1,12,13],[708,3,2,13,15],[730,1,1,15,16],[739,1,1,16,17]]],[23,6,6,17,23,[[746,1,1,17,18],[750,1,1,18,19],[752,1,1,19,20],[767,1,1,20,21],[776,1,1,21,22],[786,1,1,22,23]]],[25,11,11,23,34,[[813,1,1,23,24],[814,1,1,24,25],[817,1,1,25,26],[822,2,2,26,28],[823,1,1,28,29],[826,2,2,29,31],[829,1,1,31,32],[830,1,1,32,33],[837,1,1,33,34]]],[29,1,1,34,35,[[883,1,1,34,35]]]],[4323,7290,9499,9537,9539,9549,10165,13793,13925,16017,17814,18144,18160,18224,18235,18702,18850,18998,19104,19165,19522,19767,19990,20703,20716,20799,20948,20956,20995,21087,21090,21164,21193,21365,22434]]],["thing",[2,2,[[0,1,1,0,1,[[33,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]]],[987,8329]]],["this",[17,17,[[0,1,1,0,1,[[22,1,1,0,1]]],[9,6,6,1,7,[[268,1,1,1,2],[274,1,1,2,3],[276,1,1,3,4],[279,1,1,4,5],[281,1,1,5,6],[287,1,1,6,7]]],[11,1,1,7,8,[[318,1,1,7,8]]],[12,3,3,8,11,[[355,1,1,8,9],[356,1,1,9,10],[357,1,1,10,11]]],[13,4,4,11,15,[[386,2,2,11,13],[390,1,1,13,14],[399,1,1,14,15]]],[17,1,1,15,16,[[438,1,1,15,16]]],[29,1,1,16,17,[[882,1,1,16,17]]]],[590,8050,8210,8241,8318,8390,8598,9698,10891,10908,10930,11588,11622,11681,11922,12905,22415]]],["thus",[11,11,[[0,1,1,0,1,[[41,1,1,0,1]]],[1,4,4,1,5,[[75,2,2,1,3],[85,2,2,3,5]]],[5,2,2,5,7,[[188,1,1,5,6],[207,1,1,6,7]]],[9,2,2,7,9,[[278,1,1,7,8],[284,1,1,8,9]]],[18,1,1,9,10,[[605,1,1,9,10]]],[33,1,1,10,11,[[900,1,1,10,11]]]],[1277,2252,2259,2588,2595,5873,6423,8317,8492,16130,22696]]],["true",[5,5,[[0,5,5,0,5,[[41,5,5,0,5]]]],[1263,1271,1283,1285,1286]]],["well",[3,3,[[1,1,1,0,1,[[59,1,1,0,1]]],[3,1,1,1,2,[[152,1,1,1,2]]],[11,1,1,2,3,[[319,1,1,2,3]]]],[1806,4884,9716]]],["wherefore",[2,2,[[6,1,1,0,1,[[220,1,1,0,1]]],[8,1,1,1,2,[[262,1,1,1,2]]]],[6824,7936]]],["yet",[1,1,[[15,1,1,0,1,[[414,1,1,0,1]]]],[12323]]]]},{"k":"H3652","v":[["*",[8,8,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]],[26,6,6,2,8,[[851,2,2,2,4],[853,1,1,4,5],[855,1,1,5,6],[856,2,2,6,8]]]],[12137,12153,21782,21783,21851,21911,21938,21956]]],["Thus",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21956]]],["thus",[7,7,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]],[26,5,5,2,7,[[851,2,2,2,4],[853,1,1,4,5],[855,1,1,5,6],[856,1,1,6,7]]]],[12137,12153,21782,21783,21851,21911,21938]]]]},{"k":"H3653","v":[["*",[17,17,[[0,2,2,0,2,[[39,1,1,0,1],[40,1,1,1,2]]],[1,7,7,2,9,[[79,2,2,2,4],[80,1,1,4,5],[84,1,1,5,6],[87,1,1,6,7],[88,1,1,7,8],[89,1,1,8,9]]],[2,1,1,9,10,[[97,1,1,9,10]]],[10,2,2,10,12,[[297,2,2,10,12]]],[22,1,1,12,13,[[711,1,1,12,13]]],[26,4,4,13,17,[[860,4,4,13,17]]]],[1185,1208,2400,2410,2429,2547,2641,2703,2718,2928,8963,8965,18302,22043,22056,22057,22074]]],["base",[2,2,[[10,2,2,0,2,[[297,2,2,0,2]]]],[8963,8965]]],["estate",[4,4,[[26,4,4,0,4,[[860,4,4,0,4]]]],[22043,22056,22057,22074]]],["foot",[8,8,[[1,7,7,0,7,[[79,2,2,0,2],[80,1,1,2,3],[84,1,1,3,4],[87,1,1,4,5],[88,1,1,5,6],[89,1,1,6,7]]],[2,1,1,7,8,[[97,1,1,7,8]]]],[2400,2410,2429,2547,2641,2703,2718,2928]]],["office",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1208]]],["place",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1185]]],["well",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18302]]]]},{"k":"H3654","v":[["lice",[6,4,[[1,5,3,0,3,[[57,5,3,0,3]]],[18,1,1,3,4,[[582,1,1,3,4]]]],[1726,1727,1728,15637]]]]},{"k":"H3655","v":[["*",[4,4,[[17,2,2,0,2,[[467,2,2,0,2]]],[22,2,2,2,4,[[722,1,1,2,3],[723,1,1,3,4]]]],[13649,13650,18538,18565]]],["surname",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18538]]],["surnamed",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18565]]],["titles",[2,2,[[17,2,2,0,2,[[467,2,2,0,2]]]],[13649,13650]]]]},{"k":"H3656","v":[["Canneh",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21144]]]]},{"k":"H3657","v":[["vineyard",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15213]]]]},{"k":"H3658","v":[["*",[42,41,[[0,2,2,0,2,[[3,1,1,0,1],[30,1,1,1,2]]],[8,3,3,2,5,[[245,1,1,2,3],[251,2,2,3,5]]],[9,1,1,5,6,[[272,1,1,5,6]]],[10,1,1,6,7,[[300,1,1,6,7]]],[12,8,8,7,15,[[350,1,1,7,8],[352,3,3,8,11],[353,1,1,11,12],[362,3,3,12,15]]],[13,4,4,15,19,[[371,1,1,15,16],[375,1,1,16,17],[386,1,1,17,18],[395,1,1,18,19]]],[15,1,1,19,20,[[424,1,1,19,20]]],[17,2,2,20,22,[[456,1,1,20,21],[465,1,1,21,22]]],[18,14,13,22,35,[[510,1,1,22,23],[520,1,1,23,24],[526,1,1,24,25],[534,1,1,25,26],[548,1,1,26,27],[558,1,1,27,28],[569,1,1,28,29],[575,2,1,29,30],[585,1,1,30,31],[614,1,1,31,32],[624,1,1,32,33],[626,1,1,33,34],[627,1,1,34,35]]],[22,5,5,35,40,[[683,1,1,35,36],[694,1,1,36,37],[701,1,1,37,38],[702,1,1,38,39],[708,1,1,39,40]]],[25,1,1,40,41,[[827,1,1,40,41]]]],[100,900,7423,7611,7618,8162,9091,10768,10807,10812,10819,10825,11047,11049,11052,11280,11375,11615,11816,12651,13367,13588,14368,14570,14652,14776,14998,15219,15414,15495,15744,16224,16358,16388,16397,17751,17980,18093,18103,18249,21113]]],["harp",[25,24,[[0,2,2,0,2,[[3,1,1,0,1],[30,1,1,1,2]]],[8,3,3,2,5,[[245,1,1,2,3],[251,2,2,3,5]]],[12,1,1,5,6,[[362,1,1,5,6]]],[17,2,2,6,8,[[456,1,1,6,7],[465,1,1,7,8]]],[18,13,12,8,20,[[510,1,1,8,9],[520,1,1,9,10],[526,1,1,10,11],[534,1,1,11,12],[548,1,1,12,13],[558,1,1,13,14],[569,1,1,14,15],[575,2,1,15,16],[585,1,1,16,17],[624,1,1,17,18],[626,1,1,18,19],[627,1,1,19,20]]],[22,4,4,20,24,[[683,1,1,20,21],[694,1,1,21,22],[701,1,1,22,23],[702,1,1,23,24]]]],[100,900,7423,7611,7618,11049,13367,13588,14368,14570,14652,14776,14998,15219,15414,15495,15744,16358,16388,16397,17751,17980,18093,18103]]],["harps",[17,17,[[9,1,1,0,1,[[272,1,1,0,1]]],[10,1,1,1,2,[[300,1,1,1,2]]],[12,7,7,2,9,[[350,1,1,2,3],[352,3,3,3,6],[353,1,1,6,7],[362,2,2,7,9]]],[13,4,4,9,13,[[371,1,1,9,10],[375,1,1,10,11],[386,1,1,11,12],[395,1,1,12,13]]],[15,1,1,13,14,[[424,1,1,13,14]]],[18,1,1,14,15,[[614,1,1,14,15]]],[22,1,1,15,16,[[708,1,1,15,16]]],[25,1,1,16,17,[[827,1,1,16,17]]]],[8162,9091,10768,10807,10812,10819,10825,11047,11052,11280,11375,11615,11816,12651,16224,18249,21113]]]]},{"k":"H3659","v":[["Coniah",[3,3,[[23,3,3,0,3,[[766,2,2,0,2],[781,1,1,2,3]]]],[19478,19482,19875]]]]},{"k":"H3660","v":[["*",[5,5,[[14,5,5,0,5,[[406,1,1,0,1],[407,3,3,1,4],[408,1,1,4,5]]]],[12118,12138,12143,12145,12164]]],["manner",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12138]]],["so",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12164]]],["sort",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12118]]],["thus",[2,2,[[14,2,2,0,2,[[407,2,2,0,2]]]],[12143,12145]]]]},{"k":"H3661","v":[]},{"k":"H3662","v":[["Chenani",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12515]]]]},{"k":"H3663","v":[["Chenaniah",[3,3,[[12,3,3,0,3,[[352,2,2,0,2],[363,1,1,2,3]]]],[10813,10818,11106]]]]},{"k":"H3664","v":[["*",[11,11,[[12,1,1,0,1,[[359,1,1,0,1]]],[15,1,1,1,2,[[424,1,1,1,2]]],[16,1,1,2,3,[[429,1,1,2,3]]],[18,2,2,3,5,[[510,1,1,3,4],[624,1,1,4,5]]],[20,3,3,5,8,[[660,2,2,5,7],[661,1,1,7,8]]],[22,1,1,8,9,[[706,1,1,8,9]]],[25,2,2,9,11,[[823,1,1,9,10],[840,1,1,10,11]]]],[10966,12668,12778,14373,16353,17341,17359,17364,18184,20997,21476]]],["+",[3,3,[[12,1,1,0,1,[[359,1,1,0,1]]],[16,1,1,1,2,[[429,1,1,1,2]]],[20,1,1,2,3,[[661,1,1,2,3]]]],[10966,12778,17364]]],["gather",[2,2,[[15,1,1,0,1,[[424,1,1,0,1]]],[25,1,1,1,2,[[823,1,1,1,2]]]],[12668,20997]]],["gathered",[2,2,[[20,1,1,0,1,[[660,1,1,0,1]]],[25,1,1,1,2,[[840,1,1,1,2]]]],[17341,21476]]],["gathereth",[1,1,[[18,1,1,0,1,[[510,1,1,0,1]]]],[14373]]],["himself",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18184]]],["together",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16353]]],["up",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17359]]]]},{"k":"H3665","v":[["*",[36,32,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[161,1,1,1,2]]],[6,4,4,2,6,[[213,1,1,2,3],[214,1,1,3,4],[218,1,1,4,5],[221,1,1,5,6]]],[8,1,1,6,7,[[242,1,1,6,7]]],[9,1,1,7,8,[[274,1,1,7,8]]],[10,2,1,8,9,[[311,2,1,8,9]]],[11,1,1,9,10,[[334,1,1,9,10]]],[12,3,3,10,13,[[354,1,1,10,11],[355,1,1,11,12],[357,1,1,12,13]]],[13,16,13,13,26,[[373,1,1,13,14],[378,4,3,14,17],[379,1,1,17,18],[394,1,1,18,19],[396,1,1,19,20],[398,1,1,20,21],[399,4,3,21,24],[400,2,1,24,25],[402,1,1,25,26]]],[15,1,1,26,27,[[421,1,1,26,27]]],[17,1,1,27,28,[[475,1,1,27,28]]],[18,3,3,28,31,[[558,1,1,28,29],[583,1,1,29,30],[584,1,1,30,31]]],[22,1,1,31,32,[[703,1,1,31,32]]]],[3565,5160,6598,6622,6747,6862,7365,8210,9480,10164,10873,10891,10930,11338,11443,11444,11449,11471,11783,11838,11901,11920,11927,11931,11960,12005,12535,13876,15231,15693,15711,18123]]],["+",[4,4,[[12,1,1,0,1,[[354,1,1,0,1]]],[13,3,3,1,4,[[394,1,1,1,2],[399,1,1,2,3],[402,1,1,3,4]]]],[10873,11783,11931,12005]]],["down",[3,3,[[4,1,1,0,1,[[161,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]],[22,1,1,2,3,[[703,1,1,2,3]]]],[5160,15711,18123]]],["himself",[6,5,[[10,2,1,0,1,[[311,2,1,0,1]]],[13,4,4,1,5,[[378,1,1,1,2],[398,1,1,2,3],[399,2,2,3,5]]]],[9480,11449,11901,11920,11931]]],["humbled",[2,2,[[2,1,1,0,1,[[115,1,1,0,1]]],[13,1,1,1,2,[[399,1,1,1,2]]]],[3565,11927]]],["low",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13876]]],["subdued",[9,9,[[6,4,4,0,4,[[213,1,1,0,1],[214,1,1,1,2],[218,1,1,2,3],[221,1,1,3,4]]],[8,1,1,4,5,[[242,1,1,4,5]]],[9,1,1,5,6,[[274,1,1,5,6]]],[12,2,2,6,8,[[355,1,1,6,7],[357,1,1,7,8]]],[18,1,1,8,9,[[558,1,1,8,9]]]],[6598,6622,6747,6862,7365,8210,10891,10930,15231]]],["subduedst",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12535]]],["subjection",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15693]]],["themselves",[5,4,[[13,5,4,0,4,[[373,1,1,0,1],[378,3,2,1,3],[396,1,1,3,4]]]],[11338,11443,11444,11838]]],["thyself",[3,2,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,2,1,1,2,[[400,2,1,1,2]]]],[10164,11960]]],["under",[1,1,[[13,1,1,0,1,[[379,1,1,0,1]]]],[11471]]]]},{"k":"H3666","v":[["wares",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19218]]]]},{"k":"H3667","v":[["*",[93,90,[[0,46,45,0,45,[[8,5,5,0,5],[9,2,2,5,7],[10,1,1,7,8],[11,2,1,8,9],[12,1,1,9,10],[15,1,1,10,11],[16,1,1,11,12],[22,2,2,12,14],[27,3,3,14,17],[30,1,1,17,18],[32,1,1,18,19],[34,1,1,19,20],[35,3,3,20,23],[36,1,1,23,24],[41,5,5,24,29],[43,1,1,29,30],[44,2,2,30,32],[45,3,3,32,35],[46,5,5,35,40],[47,2,2,40,42],[48,1,1,42,43],[49,2,2,43,45]]],[1,3,3,45,48,[[55,1,1,45,46],[64,1,1,46,47],[65,1,1,47,48]]],[2,3,3,48,51,[[103,1,1,48,49],[107,1,1,49,50],[114,1,1,50,51]]],[3,12,11,51,62,[[129,2,2,51,53],[142,1,1,53,54],[148,2,2,54,56],[149,2,2,56,58],[150,3,2,58,60],[151,2,2,60,62]]],[4,1,1,62,63,[[184,1,1,62,63]]],[5,8,8,63,71,[[191,1,1,63,64],[200,1,1,64,65],[207,1,1,65,66],[208,4,4,66,70],[210,1,1,70,71]]],[6,7,6,71,77,[[213,1,1,71,72],[214,4,3,72,75],[215,1,1,75,76],[231,1,1,76,77]]],[12,3,3,77,80,[[338,2,2,77,79],[353,1,1,79,80]]],[18,3,3,80,83,[[582,1,1,80,81],[583,1,1,81,82],[612,1,1,82,83]]],[22,2,2,83,85,[[697,1,1,83,84],[701,1,1,84,85]]],[25,2,2,85,87,[[817,1,1,85,86],[818,1,1,86,87]]],[27,1,1,87,88,[[873,1,1,87,88]]],[35,2,2,88,90,[[906,1,1,88,89],[907,1,1,89,90]]]],[223,227,230,231,232,240,249,297,303,330,384,405,573,590,774,779,781,891,978,1017,1042,1045,1046,1084,1257,1259,1265,1281,1284,1332,1375,1383,1392,1398,1417,1421,1424,1433,1434,1435,1454,1458,1503,1511,1519,1659,1935,1982,3145,3254,3507,4077,4092,4508,4748,4750,4800,4811,4818,4845,4855,4859,5807,5946,6188,6383,6435,6436,6437,6458,6479,6569,6601,6622,6623,6642,7114,10260,10265,10838,15617,15689,16186,18022,18088,20791,20829,22259,22798,22810]]],["+",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]]],[1042,1659]]],["Canaan",[87,84,[[0,45,44,0,44,[[8,5,5,0,5],[9,2,2,5,7],[10,1,1,7,8],[11,2,1,8,9],[12,1,1,9,10],[15,1,1,10,11],[16,1,1,11,12],[22,2,2,12,14],[27,3,3,14,17],[30,1,1,17,18],[32,1,1,18,19],[34,1,1,19,20],[35,2,2,20,22],[36,1,1,22,23],[41,5,5,23,28],[43,1,1,28,29],[44,2,2,29,31],[45,3,3,31,34],[46,5,5,34,39],[47,2,2,39,41],[48,1,1,41,42],[49,2,2,42,44]]],[1,2,2,44,46,[[64,1,1,44,45],[65,1,1,45,46]]],[2,3,3,46,49,[[103,1,1,46,47],[107,1,1,47,48],[114,1,1,48,49]]],[3,12,11,49,60,[[129,2,2,49,51],[142,1,1,51,52],[148,2,2,52,54],[149,2,2,54,56],[150,3,2,56,58],[151,2,2,58,60]]],[4,1,1,60,61,[[184,1,1,60,61]]],[5,8,8,61,69,[[191,1,1,61,62],[200,1,1,62,63],[207,1,1,63,64],[208,4,4,64,68],[210,1,1,68,69]]],[6,7,6,69,75,[[213,1,1,69,70],[214,4,3,70,73],[215,1,1,73,74],[231,1,1,74,75]]],[12,3,3,75,78,[[338,2,2,75,77],[353,1,1,77,78]]],[18,3,3,78,81,[[582,1,1,78,79],[583,1,1,79,80],[612,1,1,80,81]]],[22,1,1,81,82,[[697,1,1,81,82]]],[25,1,1,82,83,[[817,1,1,82,83]]],[35,1,1,83,84,[[907,1,1,83,84]]]],[223,227,230,231,232,240,249,297,303,330,384,405,573,590,774,779,781,891,978,1017,1045,1046,1084,1257,1259,1265,1281,1284,1332,1375,1383,1392,1398,1417,1421,1424,1433,1434,1435,1454,1458,1503,1511,1519,1935,1982,3145,3254,3507,4077,4092,4508,4748,4750,4800,4811,4818,4845,4855,4859,5807,5946,6188,6383,6435,6436,6437,6458,6479,6569,6601,6622,6623,6642,7114,10260,10265,10838,15617,15689,16186,18022,20791,22810]]],["merchant",[3,3,[[22,1,1,0,1,[[701,1,1,0,1]]],[27,1,1,1,2,[[873,1,1,1,2]]],[35,1,1,2,3,[[906,1,1,2,3]]]],[18088,22259,22798]]],["traffick",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20829]]]]},{"k":"H3668","v":[["Chenaanah",[5,5,[[10,2,2,0,2,[[312,2,2,0,2]]],[12,1,1,2,3,[[344,1,1,2,3]]],[13,2,2,3,5,[[384,2,2,3,5]]]],[9491,9504,10545,11552,11565]]]]},{"k":"H3669","v":[["*",[74,72,[[0,11,11,0,11,[[9,2,2,0,2],[11,1,1,2,3],[12,1,1,3,4],[14,1,1,4,5],[23,2,2,5,7],[33,1,1,7,8],[37,1,1,8,9],[45,1,1,9,10],[49,1,1,10,11]]],[1,9,9,11,20,[[52,2,2,11,13],[55,1,1,13,14],[62,2,2,14,16],[72,2,2,16,18],[82,1,1,18,19],[83,1,1,19,20]]],[3,7,7,20,27,[[129,1,1,20,21],[130,3,3,21,24],[137,2,2,24,26],[149,1,1,26,27]]],[4,4,4,27,31,[[153,1,1,27,28],[159,1,1,28,29],[163,1,1,29,30],[172,1,1,30,31]]],[5,15,14,31,45,[[189,1,1,31,32],[191,1,1,32,33],[193,1,1,33,34],[195,1,1,34,35],[197,1,1,35,36],[198,1,1,36,37],[199,2,2,37,39],[202,2,1,39,40],[203,4,4,40,44],[210,1,1,44,45]]],[6,16,15,45,60,[[211,14,13,45,58],[213,2,2,58,60]]],[9,1,1,60,61,[[290,1,1,60,61]]],[10,1,1,61,62,[[299,1,1,61,62]]],[12,1,1,62,63,[[339,1,1,62,63]]],[14,1,1,63,64,[[411,1,1,63,64]]],[15,2,2,64,66,[[421,2,2,64,66]]],[17,1,1,66,67,[[476,1,1,66,67]]],[19,1,1,67,68,[[658,1,1,67,68]]],[22,1,1,68,69,[[701,1,1,68,69]]],[25,1,1,69,70,[[817,1,1,69,70]]],[30,1,1,70,71,[[888,1,1,70,71]]],[37,1,1,71,72,[[924,1,1,71,72]]]],[252,253,304,325,381,594,628,1010,1121,1396,1517,1587,1596,1670,1872,1878,2167,2172,2475,2507,4104,4133,4151,4153,4341,4343,4800,4899,5112,5238,5444,5903,5935,5985,6038,6110,6138,6157,6158,6275,6287,6288,6291,6293,6487,6510,6512,6513,6514,6518,6519,6526,6536,6537,6538,6539,6541,6542,6571,6573,8699,9067,10309,12238,12519,12535,13894,17308,18085,20765,22530,23089]]],["Canaan",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20765]]],["Canaanite",[12,12,[[0,3,3,0,3,[[11,1,1,0,1],[12,1,1,1,2],[37,1,1,2,3]]],[1,3,3,3,6,[[72,1,1,3,4],[82,1,1,4,5],[83,1,1,5,6]]],[3,2,2,6,8,[[137,1,1,6,7],[149,1,1,7,8]]],[5,3,3,8,11,[[195,1,1,8,9],[197,1,1,9,10],[199,1,1,10,11]]],[37,1,1,11,12,[[924,1,1,11,12]]]],[304,325,1121,2172,2475,2507,4341,4800,6038,6110,6157,23089]]],["Canaanites",[55,53,[[0,7,7,0,7,[[9,2,2,0,2],[14,1,1,2,3],[23,2,2,3,5],[33,1,1,5,6],[49,1,1,6,7]]],[1,5,5,7,12,[[52,2,2,7,9],[62,2,2,9,11],[72,1,1,11,12]]],[3,5,5,12,17,[[129,1,1,12,13],[130,3,3,13,16],[137,1,1,16,17]]],[4,4,4,17,21,[[153,1,1,17,18],[159,1,1,18,19],[163,1,1,19,20],[172,1,1,20,21]]],[5,12,11,21,32,[[189,1,1,21,22],[191,1,1,22,23],[193,1,1,23,24],[198,1,1,24,25],[199,1,1,25,26],[202,2,1,26,27],[203,4,4,27,31],[210,1,1,31,32]]],[6,16,15,32,47,[[211,14,13,32,45],[213,2,2,45,47]]],[9,1,1,47,48,[[290,1,1,47,48]]],[10,1,1,48,49,[[299,1,1,48,49]]],[14,1,1,49,50,[[411,1,1,49,50]]],[15,2,2,50,52,[[421,2,2,50,52]]],[30,1,1,52,53,[[888,1,1,52,53]]]],[252,253,381,594,628,1010,1517,1587,1596,1872,1878,2167,4104,4133,4151,4153,4343,4899,5112,5238,5444,5903,5935,5985,6138,6158,6275,6287,6288,6291,6293,6487,6510,6512,6513,6514,6518,6519,6526,6536,6537,6538,6539,6541,6542,6571,6573,8699,9067,12238,12519,12535,22530]]],["Canaanitess",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10309]]],["merchant",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17308]]],["merchants",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13894]]],["traffickers",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18085]]],["woman",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]]],[1396,1670]]]]},{"k":"H3670","v":[["corner",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18237]]]]},{"k":"H3671","v":[["*",[109,85,[[0,2,2,0,2,[[0,1,1,0,1],[6,1,1,1,2]]],[1,5,3,2,5,[[68,1,1,2,3],[74,2,1,3,4],[86,2,1,4,5]]],[2,1,1,5,6,[[90,1,1,5,6]]],[3,2,1,6,7,[[131,2,1,6,7]]],[4,5,5,7,12,[[156,1,1,7,8],[174,2,2,8,10],[179,1,1,10,11],[184,1,1,11,12]]],[7,2,2,12,14,[[233,1,1,12,13],[234,1,1,13,14]]],[8,5,4,14,18,[[250,1,1,14,15],[259,4,3,15,18]]],[9,1,1,18,19,[[288,1,1,18,19]]],[10,12,4,19,23,[[296,10,2,19,21],[298,2,2,21,23]]],[13,10,5,23,28,[[369,8,3,23,26],[371,2,2,26,28]]],[17,4,4,28,32,[[472,1,1,28,29],[473,1,1,29,30],[474,2,2,30,32]]],[18,12,12,32,44,[[494,1,1,32,33],[495,1,1,33,34],[513,1,1,34,35],[534,1,1,35,36],[538,1,1,36,37],[540,1,1,37,38],[545,1,1,38,39],[555,1,1,39,40],[568,1,1,40,41],[581,1,1,41,42],[616,1,1,42,43],[625,1,1,43,44]]],[19,2,2,44,46,[[628,1,1,44,45],[650,1,1,45,46]]],[20,1,1,46,47,[[668,1,1,46,47]]],[22,7,6,47,53,[[684,2,1,47,48],[686,1,1,48,49],[688,1,1,49,50],[689,1,1,50,51],[696,1,1,51,52],[702,1,1,52,53]]],[23,3,3,53,56,[[746,1,1,53,54],[792,1,1,54,55],[793,1,1,55,56]]],[25,26,23,56,79,[[802,9,7,56,63],[804,1,1,63,64],[806,1,1,64,65],[808,1,1,65,66],[811,7,6,66,72],[812,1,1,72,73],[817,1,1,73,74],[818,3,3,74,77],[840,2,2,77,79]]],[26,1,1,79,80,[[858,1,1,79,80]]],[27,1,1,80,81,[[865,1,1,80,81]]],[36,2,1,81,82,[[910,2,1,81,82]]],[37,4,2,82,84,[[915,3,1,82,83],[918,1,1,83,84]]],[38,1,1,84,85,[[928,1,1,84,85]]]],[20,173,2030,2215,2613,2762,4191,5021,5482,5500,5605,5769,7161,7181,7587,7843,7844,7850,8613,8920,8923,8991,8992,11240,11241,11242,11275,11276,13772,13806,13847,13860,14111,14128,14445,14769,14823,14846,14913,15140,15399,15574,16248,16381,16417,17049,17513,17771,17815,17864,17896,17998,18111,18999,20120,20149,20470,20472,20473,20475,20487,20488,20489,20515,20549,20579,20638,20641,20645,20649,20652,20654,20677,20770,20828,20832,20848,21452,21465,22015,22152,22867,22945,22999,23140]]],["+",[5,4,[[10,1,1,0,1,[[296,1,1,0,1]]],[19,1,1,1,2,[[628,1,1,1,2]]],[22,3,2,2,4,[[684,2,1,2,3],[702,1,1,3,4]]]],[8923,16417,17771,18111]]],["borders",[2,1,[[3,2,1,0,1,[[131,2,1,0,1]]]],[4191]]],["corners",[2,2,[[22,1,1,0,1,[[689,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]]],[17896,20579]]],["ends",[2,2,[[17,2,2,0,2,[[472,1,1,0,1],[473,1,1,1,2]]]],[13772,13806]]],["feathered",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[25,1,1,1,2,[[840,1,1,1,2]]]],[15140,21465]]],["flying",[1,1,[[18,1,1,0,1,[[625,1,1,0,1]]]],[16381]]],["one",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8923]]],["other",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8920]]],["overspreading",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22015]]],["quarters",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5482]]],["skirt",[12,10,[[4,2,2,0,2,[[174,1,1,0,1],[179,1,1,1,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[8,5,4,3,7,[[250,1,1,3,4],[259,4,3,4,7]]],[25,1,1,7,8,[[817,1,1,7,8]]],[36,2,1,8,9,[[910,2,1,8,9]]],[37,1,1,9,10,[[918,1,1,9,10]]]],[5500,5605,7181,7587,7843,7844,7850,20770,22867,22999]]],["skirts",[2,2,[[23,1,1,0,1,[[746,1,1,0,1]]],[25,1,1,1,2,[[806,1,1,1,2]]]],[18999,20549]]],["sort",[2,2,[[0,1,1,0,1,[[6,1,1,0,1]]],[25,1,1,1,2,[[840,1,1,1,2]]]],[173,21452]]],["wing",[13,6,[[10,5,2,0,2,[[296,5,2,0,2]]],[13,6,2,2,4,[[369,6,2,2,4]]],[22,1,1,4,5,[[688,1,1,4,5]]],[25,1,1,5,6,[[818,1,1,5,6]]]],[8920,8923,11240,11241,17864,20848]]],["winged",[2,2,[[0,1,1,0,1,[[0,1,1,0,1]]],[4,1,1,1,2,[[156,1,1,1,2]]]],[20,5021]]],["wings",[60,52,[[1,5,3,0,3,[[68,1,1,0,1],[74,2,1,1,2],[86,2,1,2,3]]],[2,1,1,3,4,[[90,1,1,3,4]]],[4,1,1,4,5,[[184,1,1,4,5]]],[7,1,1,5,6,[[233,1,1,5,6]]],[9,1,1,6,7,[[288,1,1,6,7]]],[10,4,3,7,10,[[296,2,1,7,8],[298,2,2,8,10]]],[13,4,4,10,14,[[369,2,2,10,12],[371,2,2,12,14]]],[17,2,2,14,16,[[474,2,2,14,16]]],[18,10,10,16,26,[[494,1,1,16,17],[495,1,1,17,18],[513,1,1,18,19],[534,1,1,19,20],[538,1,1,20,21],[540,1,1,21,22],[545,1,1,22,23],[568,1,1,23,24],[581,1,1,24,25],[616,1,1,25,26]]],[19,1,1,26,27,[[650,1,1,26,27]]],[20,1,1,27,28,[[668,1,1,27,28]]],[22,2,2,28,30,[[686,1,1,28,29],[696,1,1,29,30]]],[23,2,2,30,32,[[792,1,1,30,31],[793,1,1,31,32]]],[25,20,17,32,49,[[802,9,7,32,39],[804,1,1,39,40],[811,7,6,40,46],[812,1,1,46,47],[818,2,2,47,49]]],[27,1,1,49,50,[[865,1,1,49,50]]],[37,3,1,50,51,[[915,3,1,50,51]]],[38,1,1,51,52,[[928,1,1,51,52]]]],[2030,2215,2613,2762,5769,7161,8613,8923,8991,8992,11240,11242,11275,11276,13847,13860,14111,14128,14445,14769,14823,14846,14913,15399,15574,16248,17049,17513,17815,17998,20120,20149,20470,20472,20473,20475,20487,20488,20489,20515,20638,20641,20645,20649,20652,20654,20677,20828,20832,22152,22945,23140]]]]},{"k":"H3672","v":[["*",[7,7,[[3,1,1,0,1,[[150,1,1,0,1]]],[4,1,1,1,2,[[155,1,1,1,2]]],[5,4,4,2,6,[[197,1,1,2,3],[198,1,1,3,4],[199,1,1,4,5],[205,1,1,5,6]]],[10,1,1,6,7,[[305,1,1,6,7]]]],[4827,4992,6109,6133,6181,6356,9269]]],["+",[1,1,[[4,1,1,0,1,[[155,1,1,0,1]]]],[4992]]],["Chinnereth",[3,3,[[3,1,1,0,1,[[150,1,1,0,1]]],[5,2,2,1,3,[[199,1,1,1,2],[205,1,1,2,3]]]],[4827,6181,6356]]],["Chinneroth",[2,2,[[5,2,2,0,2,[[197,1,1,0,1],[198,1,1,1,2]]]],[6109,6133]]],["Cinneroth",[1,1,[[10,1,1,0,1,[[305,1,1,0,1]]]],[9269]]]]},{"k":"H3673","v":[["together",[3,3,[[26,3,3,0,3,[[852,3,3,0,3]]]],[21809,21810,21834]]]]},{"k":"H3674","v":[["companions",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12117]]]]},{"k":"H3675","v":[["companions",[7,7,[[14,7,7,0,7,[[406,3,3,0,3],[407,2,2,3,5],[408,2,2,5,7]]]],[12119,12127,12133,12137,12140,12157,12164]]]]},{"k":"H3676","v":[["*",[2,2,[[1,1,1,0,1,[[66,1,1,0,1]]],[6,1,1,1,2,[[229,1,1,1,2]]]],[1999,7040]]],["+",[1,1,[[1,1,1,0,1,[[66,1,1,0,1]]]],[1999]]],["which",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7040]]]]},{"k":"H3677","v":[["appointed",[2,2,[[18,1,1,0,1,[[558,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]]],[15220,16595]]]]},{"k":"H3678","v":[["*",[135,124,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,2,2,1,3,[[60,1,1,1,2],[61,1,1,2,3]]],[4,1,1,3,4,[[169,1,1,3,4]]],[6,1,1,4,5,[[213,1,1,4,5]]],[8,4,4,5,9,[[236,1,1,5,6],[237,1,1,6,7],[239,2,2,7,9]]],[9,4,4,9,13,[[269,1,1,9,10],[273,2,2,10,12],[280,1,1,12,13]]],[10,34,29,13,42,[[291,13,11,13,24],[292,7,6,24,30],[293,1,1,30,31],[295,1,1,31,32],[297,1,1,32,33],[298,2,2,33,35],[299,2,1,35,36],[300,4,3,36,39],[306,1,1,39,40],[312,2,2,40,42]]],[11,8,7,42,49,[[316,1,1,42,43],[322,2,2,43,45],[323,1,1,45,46],[325,1,1,46,47],[327,1,1,47,48],[337,2,1,48,49]]],[12,5,5,49,54,[[354,2,2,49,51],[359,1,1,51,52],[365,1,1,52,53],[366,1,1,53,54]]],[13,10,9,54,63,[[372,2,2,54,56],[373,1,1,56,57],[375,4,3,57,60],[384,2,2,60,62],[389,1,1,62,63]]],[15,1,1,63,64,[[415,1,1,63,64]]],[16,3,3,64,67,[[426,1,1,64,65],[428,1,1,65,66],[430,1,1,66,67]]],[17,2,2,67,69,[[461,1,1,67,68],[471,1,1,68,69]]],[18,18,17,69,86,[[486,2,2,69,71],[488,1,1,71,72],[522,1,1,72,73],[524,1,1,73,74],[566,5,5,74,79],[570,1,1,79,80],[571,1,1,80,81],[574,1,1,81,82],[580,1,1,82,83],[599,2,1,83,84],[609,2,2,84,86]]],[19,6,6,86,92,[[636,1,1,86,87],[643,1,1,87,88],[647,2,2,88,90],[652,1,1,90,91],[656,1,1,91,92]]],[22,8,8,92,100,[[684,1,1,92,93],[687,1,1,93,94],[692,2,2,94,96],[694,1,1,96,97],[700,1,1,97,98],[725,1,1,98,99],[744,1,1,99,100]]],[23,17,16,100,116,[[745,1,1,100,101],[747,1,1,101,102],[757,1,1,102,103],[758,1,1,103,104],[761,2,2,104,106],[766,3,3,106,109],[773,1,1,109,110],[777,2,2,110,112],[780,1,1,112,113],[787,1,1,113,114],[793,1,1,114,115],[796,2,1,115,116]]],[24,1,1,116,117,[[801,1,1,116,117]]],[25,5,4,117,121,[[802,2,1,117,118],[811,1,1,118,119],[827,1,1,119,120],[844,1,1,120,121]]],[31,1,1,121,122,[[891,1,1,121,122]]],[36,1,1,122,123,[[910,1,1,122,123]]],[37,2,1,123,124,[[916,2,1,123,124]]]],[1235,1811,1845,5382,6588,7221,7248,7310,7315,8091,8193,8196,8365,8730,8734,8737,8741,8744,8747,8752,8754,8763,8764,8765,8774,8782,8789,8794,8803,8815,8822,8883,8941,9005,9010,9056,9088,9097,9098,9294,9490,9499,9613,9796,9823,9848,9884,9937,10250,10875,10877,10974,11148,11187,11292,11298,11342,11372,11381,11382,11551,11560,11676,12334,12704,12748,12780,13476,13743,14025,14028,14063,14603,14633,15330,15340,15355,15362,15370,15428,15451,15480,15568,16094,16162,16163,16652,16852,16962,16982,17118,17238,17770,17836,17937,17941,17974,18075,18600,18923,18961,19019,19279,19314,19369,19382,19456,19458,19484,19651,19792,19796,19872,20007,20165,20308,20461,20490,20634,21116,21579,22564,22877,22960]]],["+",[5,4,[[10,3,2,0,2,[[291,3,2,0,2]]],[22,1,1,2,3,[[692,1,1,2,3]]],[31,1,1,3,4,[[891,1,1,3,4]]]],[8754,8764,17937,22564]]],["seat",[7,7,[[6,1,1,0,1,[[213,1,1,0,1]]],[8,3,3,1,4,[[236,1,1,1,2],[239,2,2,2,4]]],[10,1,1,4,5,[[292,1,1,4,5]]],[16,1,1,5,6,[[428,1,1,5,6]]],[19,1,1,6,7,[[636,1,1,6,7]]]],[6588,7221,7310,7315,8789,12748,16652]]],["stool",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9613]]],["throne",[119,112,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,2,2,1,3,[[60,1,1,1,2],[61,1,1,2,3]]],[4,1,1,3,4,[[169,1,1,3,4]]],[8,1,1,4,5,[[237,1,1,4,5]]],[9,4,4,5,9,[[269,1,1,5,6],[273,2,2,6,8],[280,1,1,8,9]]],[10,30,28,9,37,[[291,10,10,9,19],[292,6,6,19,25],[293,1,1,25,26],[295,1,1,26,27],[297,1,1,27,28],[298,2,2,28,30],[299,2,1,30,31],[300,4,3,31,34],[306,1,1,34,35],[312,2,2,35,37]]],[11,7,6,37,43,[[322,2,2,37,39],[323,1,1,39,40],[325,1,1,40,41],[327,1,1,41,42],[337,2,1,42,43]]],[12,5,5,43,48,[[354,2,2,43,45],[359,1,1,45,46],[365,1,1,46,47],[366,1,1,47,48]]],[13,10,9,48,57,[[372,2,2,48,50],[373,1,1,50,51],[375,4,3,51,54],[384,2,2,54,56],[389,1,1,56,57]]],[15,1,1,57,58,[[415,1,1,57,58]]],[16,2,2,58,60,[[426,1,1,58,59],[430,1,1,59,60]]],[17,2,2,60,62,[[461,1,1,60,61],[471,1,1,61,62]]],[18,16,16,62,78,[[486,2,2,62,64],[488,1,1,64,65],[522,1,1,65,66],[524,1,1,66,67],[566,5,5,67,72],[570,1,1,72,73],[571,1,1,73,74],[574,1,1,74,75],[580,1,1,75,76],[609,2,2,76,78]]],[19,5,5,78,83,[[643,1,1,78,79],[647,2,2,79,81],[652,1,1,81,82],[656,1,1,82,83]]],[22,7,7,83,90,[[684,1,1,83,84],[687,1,1,84,85],[692,1,1,85,86],[694,1,1,86,87],[700,1,1,87,88],[725,1,1,88,89],[744,1,1,89,90]]],[23,17,16,90,106,[[745,1,1,90,91],[747,1,1,91,92],[757,1,1,92,93],[758,1,1,93,94],[761,2,2,94,96],[766,3,3,96,99],[773,1,1,99,100],[777,2,2,100,102],[780,1,1,102,103],[787,1,1,103,104],[793,1,1,104,105],[796,2,1,105,106]]],[24,1,1,106,107,[[801,1,1,106,107]]],[25,4,3,107,110,[[802,2,1,107,108],[811,1,1,108,109],[844,1,1,109,110]]],[36,1,1,110,111,[[910,1,1,110,111]]],[37,2,1,111,112,[[916,2,1,111,112]]]],[1235,1811,1845,5382,7248,8091,8193,8196,8365,8730,8734,8737,8741,8744,8747,8752,8763,8764,8765,8774,8782,8789,8794,8803,8815,8822,8883,8941,9005,9010,9056,9088,9097,9098,9294,9490,9499,9796,9823,9848,9884,9937,10250,10875,10877,10974,11148,11187,11292,11298,11342,11372,11381,11382,11551,11560,11676,12334,12704,12780,13476,13743,14025,14028,14063,14603,14633,15330,15340,15355,15362,15370,15428,15451,15480,15568,16162,16163,16852,16962,16982,17118,17238,17770,17836,17941,17974,18075,18600,18923,18961,19019,19279,19314,19369,19382,19456,19458,19484,19651,19792,19796,19872,20007,20165,20308,20461,20490,20634,21579,22877,22960]]],["thrones",[3,2,[[18,2,1,0,1,[[599,2,1,0,1]]],[25,1,1,1,2,[[827,1,1,1,2]]]],[16094,21116]]]]},{"k":"H3679","v":[["Chaldean",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12146]]]]},{"k":"H3680","v":[["*",[152,149,[[0,8,8,0,8,[[6,2,2,0,2],[8,1,1,2,3],[17,1,1,3,4],[23,1,1,4,5],[36,1,1,5,6],[37,2,2,6,8]]],[1,15,15,8,23,[[57,1,1,8,9],[59,2,2,9,11],[63,1,1,11,12],[64,2,2,12,14],[65,1,1,14,15],[70,1,1,15,16],[73,2,2,16,18],[75,1,1,18,19],[77,1,1,19,20],[78,2,2,20,22],[89,1,1,22,23]]],[2,9,9,23,32,[[92,3,3,23,26],[93,1,1,26,27],[96,1,1,27,28],[102,2,2,28,30],[105,1,1,30,31],[106,1,1,31,32]]],[3,12,12,32,44,[[120,6,6,32,38],[125,2,2,38,40],[132,2,2,40,42],[138,2,2,42,44]]],[4,3,3,44,47,[[165,1,1,44,45],[174,1,1,45,46],[175,1,1,46,47]]],[5,1,1,47,48,[[210,1,1,47,48]]],[6,2,2,48,50,[[214,2,2,48,50]]],[8,1,1,50,51,[[254,1,1,50,51]]],[10,5,5,51,56,[[291,1,1,51,52],[297,3,3,52,55],[301,1,1,55,56]]],[11,2,2,56,58,[[331,2,2,56,58]]],[12,1,1,58,59,[[358,1,1,58,59]]],[13,3,3,59,62,[[370,2,2,59,61],[371,1,1,61,62]]],[15,1,1,62,63,[[416,1,1,62,63]]],[17,11,11,63,74,[[444,1,1,63,64],[450,1,1,64,65],[451,1,1,65,66],[456,1,1,66,67],[457,1,1,67,68],[458,1,1,68,69],[466,1,1,69,70],[468,1,1,70,71],[471,2,2,71,73],[473,1,1,73,74]]],[18,17,17,74,91,[[509,2,2,74,76],[517,1,1,76,77],[521,2,2,77,79],[532,1,1,79,80],[546,1,1,80,81],[555,1,1,81,82],[557,1,1,82,83],[562,1,1,83,84],[581,2,2,84,86],[583,2,2,86,88],[617,1,1,88,89],[620,1,1,89,90],[624,1,1,90,91]]],[19,11,11,91,102,[[637,4,4,91,95],[638,1,1,95,96],[639,2,2,96,98],[644,1,1,98,99],[651,1,1,99,100],[653,1,1,100,101],[655,1,1,101,102]]],[20,1,1,102,103,[[664,1,1,102,103]]],[22,12,11,103,114,[[684,2,1,103,104],[689,1,1,104,105],[704,1,1,105,106],[707,1,1,106,107],[715,2,2,107,109],[729,1,1,109,110],[736,1,1,110,111],[737,1,1,111,112],[738,2,2,112,114]]],[23,4,4,114,118,[[747,1,1,114,115],[790,1,1,115,116],[795,2,2,116,118]]],[25,22,20,118,138,[[802,3,2,118,120],[808,1,1,120,121],[813,2,2,121,123],[817,3,3,123,126],[819,2,2,126,128],[825,2,2,128,130],[827,2,2,130,132],[831,1,1,132,133],[832,1,1,133,134],[833,2,1,134,135],[839,2,2,135,137],[842,1,1,137,138]]],[27,2,2,138,140,[[863,1,1,138,139],[871,1,1,139,140]]],[30,1,1,140,141,[[888,1,1,140,141]]],[31,2,2,141,143,[[891,2,2,141,143]]],[32,1,1,143,144,[[899,1,1,143,144]]],[34,3,3,144,147,[[904,2,2,144,146],[905,1,1,146,147]]],[38,2,2,147,149,[[926,2,2,147,149]]]],[178,179,228,441,656,1109,1133,1134,1716,1782,1792,1917,1925,1930,1960,2110,2192,2193,2248,2335,2349,2358,2741,2781,2787,2792,2803,2882,3064,3065,3214,3248,3748,3751,3752,3754,3755,3758,3980,3981,4227,4236,4380,4386,5280,5482,5513,6483,6617,6618,7719,8718,8952,8975,8976,9137,10062,10063,10950,11258,11259,11276,12364,13075,13230,13256,13381,13400,13436,13621,13667,13766,13768,13827,14356,14360,14535,14586,14590,14737,14942,15166,15208,15273,15577,15580,15662,15668,16272,16302,16359,16662,16667,16668,16674,16701,16735,16742,16882,17110,17167,17209,17421,17771,17893,18151,18203,18353,18354,18689,18793,18806,18823,18827,19027,20053,20254,20263,20475,20487,20595,20686,20692,20770,20772,20780,20856,20865,21063,21064,21110,21119,21222,21245,21255,21434,21441,21542,22114,22233,22520,22564,22566,22674,22762,22765,22771,23116,23119]]],["+",[46,46,[[0,2,2,0,2,[[8,1,1,0,1],[36,1,1,1,2]]],[1,9,9,2,11,[[57,1,1,2,3],[59,2,2,3,5],[63,1,1,5,6],[65,1,1,6,7],[73,1,1,7,8],[78,2,2,8,10],[89,1,1,10,11]]],[2,8,8,11,19,[[92,3,3,11,14],[93,1,1,14,15],[96,1,1,15,16],[102,2,2,16,18],[105,1,1,18,19]]],[3,6,6,19,25,[[120,3,3,19,22],[125,1,1,22,23],[138,2,2,23,25]]],[4,2,2,25,27,[[165,1,1,25,26],[175,1,1,26,27]]],[10,3,3,27,30,[[297,3,3,27,30]]],[13,3,3,30,33,[[370,2,2,30,32],[371,1,1,32,33]]],[15,1,1,33,34,[[416,1,1,33,34]]],[17,1,1,34,35,[[456,1,1,34,35]]],[18,3,3,35,38,[[521,1,1,35,36],[583,1,1,36,37],[620,1,1,37,38]]],[19,1,1,38,39,[[637,1,1,38,39]]],[22,1,1,39,40,[[704,1,1,39,40]]],[25,3,3,40,43,[[802,1,1,40,41],[825,1,1,41,42],[832,1,1,42,43]]],[27,1,1,43,44,[[863,1,1,43,44]]],[34,1,1,44,45,[[904,1,1,44,45]]],[38,1,1,45,46,[[926,1,1,45,46]]]],[228,1109,1716,1782,1792,1917,1960,2192,2349,2358,2741,2781,2787,2792,2803,2882,3064,3065,3214,3748,3752,3758,3980,4380,4386,5280,5513,8952,8975,8976,11258,11259,11276,12364,13381,14590,15668,16302,16668,18151,20475,21063,21245,22114,22762,23116]]],["Cover",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22233]]],["closed",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4227]]],["clothed",[1,1,[[12,1,1,0,1,[[358,1,1,0,1]]]],[10950]]],["concealeth",[2,2,[[19,2,2,0,2,[[638,1,1,0,1],[639,1,1,1,2]]]],[16701,16742]]],["cover",[30,29,[[1,3,3,0,3,[[70,1,1,0,1],[75,1,1,1,2],[77,1,1,2,3]]],[2,1,1,3,4,[[106,1,1,3,4]]],[3,3,3,4,7,[[120,3,3,4,7]]],[17,3,3,7,10,[[451,1,1,7,8],[457,1,1,8,9],[473,1,1,9,10]]],[18,2,2,10,12,[[581,1,1,10,11],[617,1,1,11,12]]],[22,4,4,12,16,[[689,1,1,12,13],[736,1,1,13,14],[738,2,2,14,16]]],[23,1,1,16,17,[[790,1,1,16,17]]],[25,10,9,17,26,[[808,1,1,17,18],[813,2,2,18,20],[827,2,2,20,22],[831,1,1,22,23],[833,2,1,23,24],[839,2,2,24,26]]],[30,1,1,26,27,[[888,1,1,26,27]]],[32,1,1,27,28,[[899,1,1,27,28]]],[34,1,1,28,29,[[904,1,1,28,29]]]],[2110,2248,2335,3248,3751,3754,3755,13256,13400,13827,15580,16272,17893,18793,18823,18827,20053,20595,20686,20692,21110,21119,21222,21255,21434,21441,22520,22674,22765]]],["covered",[44,42,[[0,4,4,0,4,[[6,2,2,0,2],[37,2,2,2,4]]],[1,3,3,4,7,[[64,2,2,4,6],[73,1,1,6,7]]],[3,2,2,7,9,[[125,1,1,7,8],[132,1,1,8,9]]],[5,1,1,9,10,[[210,1,1,9,10]]],[6,2,2,10,12,[[214,2,2,10,12]]],[8,1,1,12,13,[[254,1,1,12,13]]],[10,1,1,13,14,[[291,1,1,13,14]]],[11,1,1,14,15,[[331,1,1,14,15]]],[17,2,2,15,17,[[458,1,1,15,16],[466,1,1,16,17]]],[18,6,6,17,23,[[509,1,1,17,18],[521,1,1,18,19],[546,1,1,19,20],[557,1,1,20,21],[562,1,1,21,22],[583,1,1,22,23]]],[19,2,2,23,25,[[651,1,1,23,24],[653,1,1,24,25]]],[20,1,1,25,26,[[664,1,1,25,26]]],[22,5,4,26,30,[[684,2,1,26,27],[707,1,1,27,28],[715,1,1,28,29],[729,1,1,29,30]]],[23,2,2,30,32,[[795,2,2,30,32]]],[25,8,7,32,39,[[802,2,1,32,33],[817,2,2,33,35],[819,2,2,35,37],[825,1,1,37,38],[842,1,1,38,39]]],[31,2,2,39,41,[[891,2,2,39,41]]],[34,1,1,41,42,[[905,1,1,41,42]]]],[178,179,1133,1134,1925,1930,2193,3981,4236,6483,6617,6618,7719,8718,10063,13436,13621,14356,14586,14942,15208,15273,15662,17110,17167,17421,17771,18203,18354,18689,20254,20263,20487,20770,20772,20856,20865,21064,21542,22564,22566,22771]]],["coveredst",[2,2,[[18,1,1,0,1,[[581,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[15577,20780]]],["coverest",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5482]]],["covereth",[12,12,[[17,4,4,0,4,[[444,1,1,0,1],[450,1,1,1,2],[471,2,2,2,4]]],[18,1,1,4,5,[[624,1,1,4,5]]],[19,5,5,5,10,[[637,2,2,5,7],[639,1,1,7,8],[644,1,1,8,9],[655,1,1,9,10]]],[23,1,1,10,11,[[747,1,1,10,11]]],[38,1,1,11,12,[[926,1,1,11,12]]]],[13075,13230,13766,13768,16359,16662,16667,16735,16882,17209,19027,23119]]],["herself",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[656]]],["hid",[2,2,[[18,2,2,0,2,[[509,1,1,0,1],[517,1,1,1,2]]]],[14360,14535]]],["hide",[2,2,[[0,1,1,0,1,[[17,1,1,0,1]]],[17,1,1,1,2,[[468,1,1,1,2]]]],[441,13667]]],["hideth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16674]]],["himself",[3,3,[[10,1,1,0,1,[[301,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]]],[9137,10062,18353]]],["overwhelmed",[2,2,[[18,2,2,0,2,[[532,1,1,0,1],[555,1,1,1,2]]]],[14737,15166]]],["themselves",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18806]]]]},{"k":"H3681","v":[["covering",[2,2,[[3,2,2,0,2,[[120,2,2,0,2]]]],[3749,3757]]]]},{"k":"H3682","v":[["*",[8,8,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,2,2,1,3,[[70,1,1,1,2],[71,1,1,2,3]]],[4,1,1,3,4,[[174,1,1,3,4]]],[17,3,3,4,7,[[459,1,1,4,5],[461,1,1,5,6],[466,1,1,6,7]]],[22,1,1,7,8,[[728,1,1,7,8]]]],[511,2087,2140,5482,13443,13473,13607,18665]]],["covering",[6,6,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[17,3,3,2,5,[[459,1,1,2,3],[461,1,1,3,4],[466,1,1,4,5]]],[22,1,1,5,6,[[728,1,1,5,6]]]],[511,2140,13443,13473,13607,18665]]],["raiment",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2087]]],["vesture",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5482]]]]},{"k":"H3683","v":[["*",[2,2,[[18,1,1,0,1,[[557,1,1,0,1]]],[22,1,1,1,2,[[711,1,1,1,2]]]],[15214,18291]]],["down",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15214]]],["up",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18291]]]]},{"k":"H3684","v":[["*",[70,69,[[18,3,3,0,3,[[526,1,1,0,1],[569,1,1,1,2],[571,1,1,2,3]]],[19,49,49,3,52,[[628,2,2,3,5],[630,1,1,5,6],[635,1,1,6,7],[637,3,3,7,10],[639,1,1,10,11],[640,3,3,11,14],[641,5,5,14,19],[642,4,4,19,23],[644,6,6,23,29],[645,3,3,29,32],[646,4,4,32,36],[648,1,1,36,37],[650,1,1,37,38],[653,11,11,38,49],[655,1,1,49,50],[656,2,2,50,52]]],[20,18,17,52,69,[[660,4,3,52,55],[662,2,2,55,57],[663,3,3,57,60],[664,1,1,60,61],[665,4,4,61,65],[667,1,1,65,66],[668,3,3,66,69]]]],[14658,15417,15439,16422,16432,16490,16607,16657,16674,16679,16742,16763,16766,16767,16779,16780,16788,16796,16805,16809,16814,16821,16827,16883,16885,16889,16894,16897,16898,16903,16907,16908,16926,16935,16938,16954,17004,17053,17142,17144,17145,17146,17147,17148,17149,17150,17151,17152,17153,17222,17235,17244,17347,17348,17349,17386,17394,17398,17400,17401,17425,17433,17434,17435,17438,17492,17495,17505,17508]]],["fool",[34,33,[[18,2,2,0,2,[[526,1,1,0,1],[569,1,1,1,2]]],[19,24,24,2,26,[[637,2,2,2,4],[640,1,1,4,5],[641,1,1,5,6],[644,5,5,6,11],[645,1,1,11,12],[646,2,2,12,14],[650,1,1,14,15],[653,8,8,15,23],[655,1,1,23,24],[656,2,2,24,26]]],[20,8,7,26,33,[[660,4,3,26,29],[662,1,1,29,30],[664,1,1,30,31],[665,1,1,31,32],[668,1,1,32,33]]]],[14658,15417,16674,16679,16763,16788,16883,16885,16889,16894,16897,16903,16926,16935,17053,17142,17145,17146,17147,17149,17151,17152,17153,17222,17235,17244,17347,17348,17349,17386,17425,17435,17505]]],["fool's",[5,5,[[19,3,3,0,3,[[645,2,2,0,2],[653,1,1,2,3]]],[20,2,2,3,5,[[663,1,1,3,4],[668,1,1,4,5]]]],[16907,16908,17144,17400,17495]]],["foolish",[9,9,[[19,7,7,0,7,[[637,1,1,0,1],[641,1,1,1,2],[642,2,2,2,4],[644,1,1,4,5],[646,1,1,5,6],[648,1,1,6,7]]],[20,2,2,7,9,[[662,1,1,7,8],[668,1,1,8,9]]]],[16657,16779,16814,16827,16898,16938,17004,17394,17508]]],["fools",[22,22,[[18,1,1,0,1,[[571,1,1,0,1]]],[19,15,15,1,16,[[628,2,2,1,3],[630,1,1,3,4],[635,1,1,4,5],[639,1,1,5,6],[640,2,2,6,8],[641,3,3,8,11],[642,2,2,11,13],[646,1,1,13,14],[653,2,2,14,16]]],[20,6,6,16,22,[[663,2,2,16,18],[665,3,3,18,21],[667,1,1,21,22]]]],[15439,16422,16432,16490,16607,16742,16766,16767,16780,16796,16805,16809,16821,16954,17148,17150,17398,17401,17433,17434,17438,17492]]]]},{"k":"H3685","v":[["*",[4,4,[[17,2,2,0,2,[[444,1,1,0,1],[473,1,1,1,2]]],[22,1,1,2,3,[[691,1,1,2,3]]],[29,1,1,3,4,[[883,1,1,3,4]]]],[13060,13824,17916,22431]]],["Orion",[3,3,[[17,2,2,0,2,[[444,1,1,0,1],[473,1,1,1,2]]],[29,1,1,2,3,[[883,1,1,2,3]]]],[13060,13824,22431]]],["constellations",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17916]]]]},{"k":"H3686","v":[["Chesil",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6232]]]]},{"k":"H3687","v":[["foolish",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16651]]]]},{"k":"H3688","v":[["foolish",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19209]]]]},{"k":"H3689","v":[["*",[13,13,[[2,5,5,0,5,[[92,3,3,0,3],[93,1,1,3,4],[96,1,1,4,5]]],[17,3,3,5,8,[[443,1,1,5,6],[450,1,1,6,7],[466,1,1,7,8]]],[18,3,3,8,11,[[515,1,1,8,9],[526,1,1,9,10],[555,1,1,10,11]]],[19,1,1,11,12,[[630,1,1,11,12]]],[20,1,1,12,13,[[665,1,1,12,13]]]],[2782,2788,2793,2804,2883,13043,13230,13612,14497,14661,15120,16481,17454]]],["confidence",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16481]]],["flanks",[6,6,[[2,5,5,0,5,[[92,3,3,0,3],[93,1,1,3,4],[96,1,1,4,5]]],[17,1,1,5,6,[[450,1,1,5,6]]]],[2782,2788,2793,2804,2883,13230]]],["folly",[2,2,[[18,1,1,0,1,[[526,1,1,0,1]]],[20,1,1,1,2,[[665,1,1,1,2]]]],[14661,17454]]],["hope",[3,3,[[17,2,2,0,2,[[443,1,1,0,1],[466,1,1,1,2]]],[18,1,1,2,3,[[555,1,1,2,3]]]],[13043,13612,15120]]],["loins",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14497]]]]},{"k":"H3690","v":[["*",[2,2,[[17,1,1,0,1,[[439,1,1,0,1]]],[18,1,1,1,2,[[562,1,1,1,2]]]],[12936,15279]]],["confidence",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12936]]],["folly",[1,1,[[18,1,1,0,1,[[562,1,1,0,1]]]],[15279]]]]},{"k":"H3691","v":[["Chisleu",[2,2,[[15,1,1,0,1,[[413,1,1,0,1]]],[37,1,1,1,2,[[917,1,1,1,2]]]],[12297,22963]]]]},{"k":"H3692","v":[["Chislon",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4837]]]]},{"k":"H3693","v":[["Chesalon",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6212]]]]},{"k":"H3694","v":[["Chesulloth",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6339]]]]},{"k":"H3695","v":[["Casluhim",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[248,10264]]]]},{"k":"H3696","v":[["Chislothtabor",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6333]]]]},{"k":"H3697","v":[["+",[2,1,[[25,2,1,0,1,[[845,2,1,0,1]]]],[21619]]]]},{"k":"H3698","v":[["*",[3,3,[[1,1,1,0,1,[[58,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]],[25,1,1,2,3,[[805,1,1,2,3]]]],[1774,18189,20538]]],["fitches",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20538]]],["rie",[2,2,[[1,1,1,0,1,[[58,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]]],[1774,18189]]]]},{"k":"H3699","v":[["count",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1820]]]]},{"k":"H3700","v":[["*",[6,5,[[0,2,1,0,1,[[30,2,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[18,2,2,2,4,[[494,1,1,2,3],[561,1,1,3,4]]],[35,1,1,4,5,[[907,1,1,4,5]]]],[903,13196,14115,15261,22806]]],["+",[2,1,[[0,2,1,0,1,[[30,2,1,0,1]]]],[903]]],["desire",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13196]]],["desired",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22806]]],["greedy",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14115]]],["longeth",[1,1,[[18,1,1,0,1,[[561,1,1,0,1]]]],[15261]]]]},{"k":"H3701","v":[["*",[403,343,[[0,41,32,0,32,[[12,1,1,0,1],[16,4,4,1,5],[19,1,1,5,6],[22,5,4,6,10],[23,2,2,10,12],[30,1,1,12,13],[36,1,1,13,14],[41,5,4,14,18],[42,9,6,18,24],[43,5,3,24,27],[44,1,1,27,28],[46,6,4,28,32]]],[1,41,37,32,69,[[52,1,1,32,33],[60,1,1,33,34],[61,2,2,34,36],[69,1,1,36,37],[70,5,5,37,42],[71,3,3,42,45],[74,1,1,45,46],[75,4,4,46,50],[76,4,3,50,53],[79,1,1,53,54],[80,1,1,54,55],[84,3,3,55,58],[85,4,4,58,62],[87,10,7,62,69]]],[2,12,11,69,80,[[94,1,1,69,70],[111,1,1,70,71],[114,3,3,71,74],[116,7,6,74,80]]],[3,37,23,80,103,[[119,4,4,80,84],[123,28,14,84,98],[126,1,1,98,99],[134,1,1,99,100],[138,1,1,100,101],[140,1,1,101,102],[147,1,1,102,103]]],[4,15,12,103,115,[[154,4,2,103,105],[159,1,1,105,106],[160,1,1,106,107],[166,3,2,107,109],[169,1,1,109,110],[173,1,1,110,111],[174,2,2,111,113],[175,1,1,113,114],[181,1,1,114,115]]],[5,7,6,115,121,[[192,2,2,115,117],[193,4,3,117,120],[208,1,1,120,121]]],[6,11,8,121,129,[[215,1,1,121,122],[219,1,1,122,123],[226,2,2,123,125],[227,7,4,125,129]]],[8,2,2,129,131,[[237,1,1,129,130],[244,1,1,130,131]]],[9,6,6,131,137,[[274,2,2,131,133],[284,2,2,133,135],[287,1,1,135,136],[290,1,1,136,137]]],[10,17,17,137,154,[[297,1,1,137,138],[300,5,5,138,143],[305,3,3,143,146],[306,1,1,146,147],[310,4,4,147,151],[311,3,3,151,154]]],[11,40,28,154,182,[[317,4,4,154,158],[318,2,1,158,159],[319,1,1,159,160],[324,16,9,160,169],[326,1,1,169,170],[327,3,2,170,172],[328,1,1,172,173],[330,2,2,173,175],[332,1,1,175,176],[334,3,3,176,179],[335,4,2,179,181],[337,2,1,181,182]]],[12,19,16,182,198,[[355,2,2,182,184],[356,1,1,184,185],[358,2,2,185,187],[359,2,2,187,189],[365,5,4,189,193],[366,7,5,193,198]]],[13,28,26,198,224,[[367,2,2,198,200],[368,2,2,200,202],[371,1,1,202,203],[375,5,5,203,208],[381,1,1,208,209],[382,2,2,209,211],[383,1,1,211,212],[387,1,1,212,213],[390,5,3,213,216],[391,2,2,216,218],[393,1,1,218,219],[398,1,1,219,220],[400,3,3,220,223],[402,1,1,223,224]]],[14,13,12,224,236,[[403,5,5,224,229],[404,1,1,229,230],[405,1,1,230,231],[410,6,5,231,236]]],[15,6,6,236,242,[[417,4,4,236,240],[419,2,2,240,242]]],[16,5,4,242,246,[[426,2,1,242,243],[428,2,2,243,245],[429,1,1,245,246]]],[17,7,7,246,253,[[438,1,1,246,247],[457,1,1,247,248],[462,2,2,248,250],[463,2,2,250,252],[466,1,1,252,253]]],[18,9,9,253,262,[[489,1,1,253,254],[492,1,1,254,255],[543,1,1,255,256],[545,2,2,256,258],[582,1,1,258,259],[592,1,1,259,260],[596,1,1,260,261],[612,1,1,261,262]]],[19,13,13,262,275,[[629,1,1,262,263],[630,1,1,263,264],[634,1,1,264,265],[635,2,2,265,267],[637,1,1,267,268],[643,1,1,268,269],[644,1,1,269,270],[649,1,1,270,271],[652,2,2,271,273],[653,1,1,273,274],[654,1,1,274,275]]],[20,6,5,275,280,[[660,1,1,275,276],[663,2,1,276,277],[665,1,1,277,278],[668,1,1,278,279],[670,1,1,279,280]]],[21,4,4,280,284,[[671,1,1,280,281],[673,1,1,281,282],[678,2,2,282,284]]],[22,18,17,284,301,[[679,1,1,284,285],[680,2,2,285,287],[685,1,1,287,288],[691,1,1,288,289],[708,1,1,289,290],[709,1,1,290,291],[717,1,1,291,292],[718,1,1,292,293],[721,1,1,293,294],[724,1,1,294,295],[726,1,1,295,296],[730,1,1,296,297],[733,3,2,297,299],[738,2,2,299,301]]],[23,10,8,301,309,[[750,1,1,301,302],[754,2,2,302,304],[776,5,4,304,308],[796,2,1,308,309]]],[24,1,1,309,310,[[801,1,1,309,310]]],[25,10,9,310,319,[[808,2,1,310,311],[817,2,2,311,313],[823,3,3,313,316],[828,1,1,316,317],[829,1,1,317,318],[839,1,1,318,319]]],[26,3,3,319,322,[[860,3,3,319,322]]],[27,5,5,322,327,[[863,1,1,322,323],[864,1,1,323,324],[869,1,1,324,325],[870,1,1,325,326],[874,1,1,326,327]]],[28,1,1,327,328,[[878,1,1,327,328]]],[29,2,2,328,330,[[880,1,1,328,329],[886,1,1,329,330]]],[32,1,1,330,331,[[895,1,1,330,331]]],[33,1,1,331,332,[[901,1,1,331,332]]],[34,1,1,332,333,[[904,1,1,332,333]]],[35,2,2,333,335,[[906,2,2,333,335]]],[36,1,1,335,336,[[910,1,1,335,336]]],[37,6,6,336,342,[[916,1,1,336,337],[919,1,1,337,338],[921,2,2,338,340],[923,1,1,340,341],[924,1,1,341,342]]],[38,2,1,342,343,[[927,2,1,342,343]]]],[320,409,410,420,424,511,580,584,586,587,626,644,888,1111,1277,1279,1280,1287,1302,1305,1308,1311,1312,1313,1325,1326,1332,1380,1434,1435,1436,1438,1601,1808,1851,1860,2074,2088,2098,2109,2111,2112,2120,2130,2138,2198,2254,2256,2260,2267,2282,2283,2289,2398,2424,2536,2555,2563,2590,2592,2596,2602,2643,2644,2645,2650,2652,2658,2660,2845,3380,3506,3519,3520,3573,3576,3585,3586,3588,3589,3740,3741,3742,3743,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3934,3935,3990,4273,4393,4459,4686,4944,4966,5136,5150,5315,5316,5381,5461,5489,5499,5519,5696,5968,5973,5997,5998,6000,6434,6642,6758,6954,6967,6982,6983,6984,6990,7276,7399,8219,8220,8489,8490,8584,8716,8985,9100,9101,9104,9106,9108,9264,9267,9268,9307,9411,9413,9415,9447,9453,9457,9466,9652,9669,9670,9673,9699,9715,9854,9857,9858,9859,9860,9861,9863,9865,9866,9910,9944,9945,9971,10038,10039,10111,10149,10152,10154,10198,10200,10237,10900,10901,10913,10956,10958,10978,10980,11157,11158,11159,11160,11166,11167,11168,11169,11171,11209,11211,11218,11225,11269,11378,11384,11385,11388,11391,11508,11511,11512,11534,11627,11682,11688,11691,11710,11728,11760,11902,11942,11947,11950,11996,12020,12022,12025,12026,12027,12096,12104,12226,12227,12229,12231,12234,12386,12392,12393,12397,12491,12492,12708,12756,12758,12769,12919,13414,13497,13498,13505,13519,13627,14072,14092,14883,14913,14930,15643,15834,15970,16190,16437,16469,16595,16612,16621,16676,16856,16876,17016,17117,17124,17164,17190,17341,17407,17441,17512,17529,17548,17581,17649,17651,17676,17692,17705,17805,17923,18239,18257,18414,18439,18529,18592,18624,18699,18741,18742,18830,18838,19119,19205,19210,19740,19741,19756,19775,20295,20446,20596,20775,20779,20994,20996,20998,21133,21161,21438,22044,22074,22079,22113,22130,22198,22214,22268,22348,22385,22487,22619,22708,22767,22798,22805,22863,22958,23002,23040,23041,23068,23082,23123]]],["+",[9,9,[[2,2,2,0,2,[[111,1,1,0,1],[114,1,1,1,2]]],[3,1,1,2,3,[[147,1,1,2,3]]],[19,4,4,3,7,[[635,1,1,3,4],[643,1,1,4,5],[649,1,1,5,6],[652,1,1,6,7]]],[25,1,1,7,8,[[817,1,1,7,8]]],[27,1,1,8,9,[[874,1,1,8,9]]]],[3380,3520,4686,16621,16856,17016,17117,20779,22268]]],["Silver",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19210]]],["money",[110,94,[[0,30,24,0,24,[[16,4,4,0,4],[22,2,2,4,6],[30,1,1,6,7],[41,5,4,7,11],[42,9,6,11,17],[43,3,3,17,20],[46,6,4,20,24]]],[1,9,9,24,33,[[61,1,1,24,25],[70,4,4,25,29],[71,3,3,29,32],[79,1,1,32,33]]],[2,4,4,33,37,[[114,1,1,33,34],[116,3,3,34,37]]],[3,5,5,37,42,[[119,4,4,37,41],[134,1,1,41,42]]],[4,9,6,42,48,[[154,4,2,42,44],[166,3,2,44,46],[173,1,1,46,47],[175,1,1,47,48]]],[6,3,3,48,51,[[215,1,1,48,49],[226,1,1,49,50],[227,1,1,50,51]]],[10,3,3,51,54,[[311,3,3,51,54]]],[11,19,14,54,68,[[317,1,1,54,55],[324,14,9,55,64],[327,1,1,64,65],[334,2,2,65,67],[335,1,1,67,68]]],[13,7,6,68,74,[[390,4,3,68,71],[400,3,3,71,74]]],[14,1,1,74,75,[[405,1,1,74,75]]],[15,3,3,75,78,[[417,3,3,75,78]]],[16,1,1,78,79,[[429,1,1,78,79]]],[17,1,1,79,80,[[466,1,1,79,80]]],[18,1,1,80,81,[[492,1,1,80,81]]],[19,1,1,81,82,[[634,1,1,81,82]]],[20,2,2,82,84,[[665,1,1,82,83],[668,1,1,83,84]]],[22,5,4,84,88,[[721,1,1,84,85],[730,1,1,85,86],[733,3,2,86,88]]],[23,4,4,88,92,[[776,4,4,88,92]]],[24,1,1,92,93,[[801,1,1,92,93]]],[32,1,1,93,94,[[895,1,1,93,94]]]],[409,410,420,424,580,584,888,1277,1279,1280,1287,1302,1305,1308,1311,1312,1313,1325,1326,1332,1434,1435,1436,1438,1860,2088,2098,2111,2112,2120,2130,2138,2398,3506,3585,3588,3589,3740,3741,3742,3743,4273,4944,4966,5315,5316,5461,5519,6642,6967,6984,9453,9457,9466,9673,9854,9857,9858,9859,9860,9861,9863,9865,9866,9945,10152,10154,10200,11682,11688,11691,11942,11947,11950,12104,12386,12392,12393,12769,13627,14092,16595,17441,17512,18529,18699,18741,18742,19740,19741,19756,19775,20446,22619]]],["price",[3,3,[[2,1,1,0,1,[[114,1,1,0,1]]],[12,2,2,1,3,[[358,2,2,1,3]]]],[3519,10956,10958]]],["silver",[279,243,[[0,11,10,0,10,[[12,1,1,0,1],[19,1,1,1,2],[22,3,2,2,4],[23,2,2,4,6],[36,1,1,6,7],[43,2,2,7,9],[44,1,1,9,10]]],[1,32,28,10,38,[[52,1,1,10,11],[60,1,1,11,12],[61,1,1,12,13],[69,1,1,13,14],[70,1,1,14,15],[74,1,1,15,16],[75,4,4,16,20],[76,4,3,20,23],[80,1,1,23,24],[84,3,3,24,27],[85,4,4,27,31],[87,10,7,31,38]]],[2,5,4,38,42,[[94,1,1,38,39],[116,4,3,39,42]]],[3,31,17,42,59,[[123,28,14,42,56],[126,1,1,56,57],[138,1,1,57,58],[140,1,1,58,59]]],[4,6,6,59,65,[[159,1,1,59,60],[160,1,1,60,61],[169,1,1,61,62],[174,2,2,62,64],[181,1,1,64,65]]],[5,7,6,65,71,[[192,2,2,65,67],[193,4,3,67,70],[208,1,1,70,71]]],[6,8,6,71,77,[[219,1,1,71,72],[226,1,1,72,73],[227,6,4,73,77]]],[8,2,2,77,79,[[237,1,1,77,78],[244,1,1,78,79]]],[9,6,6,79,85,[[274,2,2,79,81],[284,2,2,81,83],[287,1,1,83,84],[290,1,1,84,85]]],[10,14,14,85,99,[[297,1,1,85,86],[300,5,5,86,91],[305,3,3,91,94],[306,1,1,94,95],[310,4,4,95,99]]],[11,21,17,99,116,[[317,3,3,99,102],[318,2,1,102,103],[319,1,1,103,104],[324,2,1,104,105],[326,1,1,105,106],[327,2,2,106,108],[328,1,1,108,109],[330,2,2,109,111],[332,1,1,111,112],[334,1,1,112,113],[335,3,2,113,115],[337,2,1,115,116]]],[12,17,14,116,130,[[355,2,2,116,118],[356,1,1,118,119],[359,2,2,119,121],[365,5,4,121,125],[366,7,5,125,130]]],[13,21,21,130,151,[[367,2,2,130,132],[368,2,2,132,134],[371,1,1,134,135],[375,5,5,135,140],[381,1,1,140,141],[382,2,2,141,143],[383,1,1,143,144],[387,1,1,144,145],[390,1,1,145,146],[391,2,2,146,148],[393,1,1,148,149],[398,1,1,149,150],[402,1,1,150,151]]],[14,12,11,151,162,[[403,5,5,151,156],[404,1,1,156,157],[410,6,5,157,162]]],[15,3,3,162,165,[[417,1,1,162,163],[419,2,2,163,165]]],[16,4,3,165,168,[[426,2,1,165,166],[428,2,2,166,168]]],[17,6,6,168,174,[[438,1,1,168,169],[457,1,1,169,170],[462,2,2,170,172],[463,2,2,172,174]]],[18,8,8,174,182,[[489,1,1,174,175],[543,1,1,175,176],[545,2,2,176,178],[582,1,1,178,179],[592,1,1,179,180],[596,1,1,180,181],[612,1,1,181,182]]],[19,8,8,182,190,[[629,1,1,182,183],[630,1,1,183,184],[635,1,1,184,185],[637,1,1,185,186],[644,1,1,186,187],[652,1,1,187,188],[653,1,1,188,189],[654,1,1,189,190]]],[20,4,3,190,193,[[660,1,1,190,191],[663,2,1,191,192],[670,1,1,192,193]]],[21,4,4,193,197,[[671,1,1,193,194],[673,1,1,194,195],[678,2,2,195,197]]],[22,12,12,197,209,[[679,1,1,197,198],[680,2,2,198,200],[691,1,1,200,201],[708,1,1,201,202],[709,1,1,202,203],[717,1,1,203,204],[718,1,1,204,205],[724,1,1,205,206],[726,1,1,206,207],[738,2,2,207,209]]],[23,5,4,209,213,[[750,1,1,209,210],[754,1,1,210,211],[776,1,1,211,212],[796,2,1,212,213]]],[25,9,8,213,221,[[808,2,1,213,214],[817,1,1,214,215],[823,3,3,215,218],[828,1,1,218,219],[829,1,1,219,220],[839,1,1,220,221]]],[26,3,3,221,224,[[860,3,3,221,224]]],[27,4,4,224,228,[[863,1,1,224,225],[864,1,1,225,226],[869,1,1,226,227],[870,1,1,227,228]]],[28,1,1,228,229,[[878,1,1,228,229]]],[29,2,2,229,231,[[880,1,1,229,230],[886,1,1,230,231]]],[33,1,1,231,232,[[901,1,1,231,232]]],[34,1,1,232,233,[[904,1,1,232,233]]],[35,2,2,233,235,[[906,2,2,233,235]]],[36,1,1,235,236,[[910,1,1,235,236]]],[37,6,6,236,242,[[916,1,1,236,237],[919,1,1,237,238],[921,2,2,238,240],[923,1,1,240,241],[924,1,1,241,242]]],[38,2,1,242,243,[[927,2,1,242,243]]]],[320,511,586,587,626,644,1111,1326,1332,1380,1601,1808,1851,2074,2109,2198,2254,2256,2260,2267,2282,2283,2289,2424,2536,2555,2563,2590,2592,2596,2602,2643,2644,2645,2650,2652,2658,2660,2845,3573,3576,3586,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3934,3935,3990,4393,4459,5136,5150,5381,5489,5499,5696,5968,5973,5997,5998,6000,6434,6758,6954,6982,6983,6984,6990,7276,7399,8219,8220,8489,8490,8584,8716,8985,9100,9101,9104,9106,9108,9264,9267,9268,9307,9411,9413,9415,9447,9652,9669,9670,9699,9715,9863,9910,9944,9945,9971,10038,10039,10111,10149,10198,10200,10237,10900,10901,10913,10978,10980,11157,11158,11159,11160,11166,11167,11168,11169,11171,11209,11211,11218,11225,11269,11378,11384,11385,11388,11391,11508,11511,11512,11534,11627,11691,11710,11728,11760,11902,11996,12020,12022,12025,12026,12027,12096,12226,12227,12229,12231,12234,12397,12491,12492,12708,12756,12758,12919,13414,13497,13498,13505,13519,14072,14883,14913,14930,15643,15834,15970,16190,16437,16469,16612,16676,16876,17124,17164,17190,17341,17407,17529,17548,17581,17649,17651,17676,17692,17705,17923,18239,18257,18414,18439,18592,18624,18830,18838,19119,19205,19740,20295,20596,20775,20994,20996,20998,21133,21161,21438,22044,22074,22079,22113,22130,22198,22214,22348,22385,22487,22708,22767,22798,22805,22863,22958,23002,23040,23041,23068,23082,23123]]],["silverlings",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17805]]]]},{"k":"H3702","v":[["*",[13,13,[[14,7,7,0,7,[[407,1,1,0,1],[408,1,1,1,2],[409,5,5,2,7]]],[26,6,6,7,13,[[851,3,3,7,10],[854,3,3,10,13]]]],[12148,12156,12188,12189,12190,12191,12195,21790,21793,21803,21876,21878,21897]]],["money",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12190]]],["silver",[12,12,[[14,6,6,0,6,[[407,1,1,0,1],[408,1,1,1,2],[409,4,4,2,6]]],[26,6,6,6,12,[[851,3,3,6,9],[854,3,3,9,12]]]],[12148,12156,12188,12189,12191,12195,21790,21793,21803,21876,21878,21897]]]]},{"k":"H3703","v":[["Casiphia",[2,1,[[14,2,1,0,1,[[410,2,1,0,1]]]],[12218]]]]},{"k":"H3704","v":[["pillows",[2,2,[[25,2,2,0,2,[[814,2,2,0,2]]]],[20726,20728]]]]},{"k":"H3705","v":[["*",[13,13,[[14,6,6,0,6,[[406,3,3,0,3],[407,2,2,3,5],[408,1,1,5,6]]],[26,7,7,6,13,[[851,1,1,6,7],[852,1,1,7,8],[853,1,1,8,9],[854,3,3,9,12],[855,1,1,12,13]]]],[12123,12124,12131,12150,12151,12157,21781,21822,21874,21886,21889,21890,21913]]],["Now",[6,6,[[14,3,3,0,3,[[406,1,1,0,1],[407,1,1,1,2],[408,1,1,2,3]]],[26,3,3,3,6,[[852,1,1,3,4],[853,1,1,4,5],[855,1,1,5,6]]]],[12124,12151,12157,21822,21874,21913]]],["now",[7,7,[[14,3,3,0,3,[[406,2,2,0,2],[407,1,1,2,3]]],[26,4,4,3,7,[[851,1,1,3,4],[854,3,3,4,7]]]],[12123,12131,12150,21781,21886,21889,21890]]]]},{"k":"H3706","v":[["time",[4,4,[[14,4,4,0,4,[[406,3,3,0,3],[409,1,1,3,4]]]],[12120,12121,12127,12185]]]]},{"k":"H3707","v":[["*",[55,53,[[4,6,5,0,5,[[156,1,1,0,1],[161,1,1,1,2],[183,1,1,2,3],[184,3,2,3,5]]],[6,2,1,5,6,[[212,2,1,5,6]]],[8,2,2,6,8,[[236,2,2,6,8]]],[10,10,10,8,18,[[304,2,2,8,10],[305,1,1,10,11],[306,5,5,11,16],[311,1,1,16,17],[312,1,1,17,18]]],[11,7,7,18,25,[[329,2,2,18,20],[333,2,2,20,22],[334,1,1,22,23],[335,2,2,23,25]]],[13,4,4,25,29,[[382,1,1,25,26],[394,1,1,26,27],[399,1,1,27,28],[400,1,1,28,29]]],[15,2,2,29,31,[[416,2,2,29,31]]],[18,3,3,31,34,[[555,1,1,31,32],[583,1,1,32,33],[589,1,1,33,34]]],[20,2,2,34,36,[[663,1,1,34,35],[665,1,1,35,36]]],[22,1,1,36,37,[[743,1,1,36,37]]],[23,11,11,37,48,[[751,2,2,37,39],[752,1,1,39,40],[755,1,1,40,41],[769,2,2,41,43],[776,3,3,43,46],[788,2,2,46,48]]],[25,4,4,48,52,[[809,1,1,48,49],[817,2,2,49,51],[833,1,1,51,52]]],[27,1,1,52,53,[[873,1,1,52,53]]]],[5029,5175,5757,5774,5779,6557,7218,7219,9227,9233,9279,9285,9290,9296,9309,9316,9473,9533,9994,10000,10125,10134,10162,10184,10191,11519,11789,11914,11958,12360,12364,15171,15680,15813,17414,17438,18900,19137,19138,19172,19243,19540,19541,19760,19761,19763,20013,20018,20621,20788,20804,21257,22266]]],["+",[15,15,[[6,1,1,0,1,[[212,1,1,0,1]]],[10,6,6,1,7,[[304,1,1,1,2],[305,1,1,2,3],[306,3,3,3,6],[312,1,1,6,7]]],[11,2,2,7,9,[[329,1,1,7,8],[333,1,1,8,9]]],[13,1,1,9,10,[[394,1,1,9,10]]],[15,1,1,10,11,[[416,1,1,10,11]]],[22,1,1,11,12,[[743,1,1,11,12]]],[23,3,3,12,15,[[751,1,1,12,13],[769,1,1,13,14],[776,1,1,14,15]]]],[6557,9233,9279,9296,9309,9316,9533,9994,10134,11789,12360,18900,19138,19540,19761]]],["anger",[30,29,[[4,6,5,0,5,[[156,1,1,0,1],[161,1,1,1,2],[183,1,1,2,3],[184,3,2,3,5]]],[6,1,1,5,6,[[212,1,1,5,6]]],[10,4,4,6,10,[[304,1,1,6,7],[306,2,2,7,9],[311,1,1,9,10]]],[11,4,4,10,14,[[329,1,1,10,11],[333,1,1,11,12],[334,1,1,12,13],[335,1,1,13,14]]],[13,2,2,14,16,[[399,1,1,14,15],[400,1,1,15,16]]],[15,1,1,16,17,[[416,1,1,16,17]]],[18,2,2,17,19,[[555,1,1,17,18],[583,1,1,18,19]]],[23,7,7,19,26,[[751,1,1,19,20],[752,1,1,20,21],[755,1,1,21,22],[769,1,1,22,23],[776,2,2,23,25],[788,1,1,25,26]]],[25,2,2,26,28,[[809,1,1,26,27],[817,1,1,27,28]]],[27,1,1,28,29,[[873,1,1,28,29]]]],[5029,5175,5757,5774,5779,6557,9227,9285,9290,9473,10000,10125,10162,10184,11914,11958,12364,15171,15680,19137,19172,19243,19541,19760,19763,20013,20621,20788,22266]]],["angry",[2,2,[[20,1,1,0,1,[[665,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[17438,20804]]],["grieved",[1,1,[[18,1,1,0,1,[[589,1,1,0,1]]]],[15813]]],["provoked",[3,3,[[8,2,2,0,2,[[236,2,2,0,2]]],[11,1,1,2,3,[[335,1,1,2,3]]]],[7218,7219,10191]]],["sorrow",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17414]]],["vex",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21257]]],["wrath",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20018]]],["wroth",[1,1,[[13,1,1,0,1,[[382,1,1,0,1]]]],[11519]]]]},{"k":"H3708","v":[["*",[25,25,[[4,2,2,0,2,[[184,2,2,0,2]]],[8,2,2,2,4,[[236,2,2,2,4]]],[10,2,2,4,6,[[305,1,1,4,5],[311,1,1,5,6]]],[11,1,1,6,7,[[335,1,1,6,7]]],[17,4,4,7,11,[[440,1,1,7,8],[441,1,1,8,9],[445,1,1,9,10],[452,1,1,10,11]]],[18,4,4,11,15,[[483,1,1,11,12],[487,1,1,12,13],[508,1,1,13,14],[562,1,1,14,15]]],[19,4,4,15,19,[[639,1,1,15,16],[644,1,1,16,17],[648,1,1,17,18],[654,1,1,18,19]]],[20,5,5,19,24,[[659,1,1,19,20],[660,1,1,20,21],[665,2,2,21,23],[669,1,1,23,24]]],[25,1,1,24,25,[[821,1,1,24,25]]]],[5777,5785,7218,7228,9279,9473,10191,12953,12980,13103,13267,13992,14055,14340,15275,16735,16898,17003,17172,17333,17356,17432,17438,17523,20923]]],["+",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[452,1,1,1,2]]],[18,1,1,2,3,[[483,1,1,2,3]]]],[5777,13267,13992]]],["Sorrow",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17432]]],["anger",[2,2,[[18,1,1,0,1,[[562,1,1,0,1]]],[20,1,1,1,2,[[665,1,1,1,2]]]],[15275,17438]]],["angry",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17003]]],["grief",[6,6,[[8,1,1,0,1,[[236,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]],[18,1,1,2,3,[[508,1,1,2,3]]],[19,1,1,3,4,[[644,1,1,3,4]]],[20,2,2,4,6,[[659,1,1,4,5],[660,1,1,5,6]]]],[7228,12980,14340,16898,17333,17356]]],["indignation",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13103]]],["provocation",[3,3,[[10,2,2,0,2,[[305,1,1,0,1],[311,1,1,1,2]]],[25,1,1,2,3,[[821,1,1,2,3]]]],[9279,9473,20923]]],["provocations",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10191]]],["sore",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7218]]],["sorrow",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17523]]],["spite",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14055]]],["wrath",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[440,1,1,1,2]]],[19,2,2,2,4,[[639,1,1,2,3],[654,1,1,3,4]]]],[5785,12953,16735,17172]]]]},{"k":"H3709","v":[["*",[191,178,[[0,9,7,0,7,[[7,1,1,0,1],[19,1,1,1,2],[30,1,1,2,3],[31,4,2,3,5],[39,2,2,5,7]]],[1,9,8,7,15,[[53,1,1,7,8],[58,2,2,8,10],[74,1,1,10,11],[78,2,1,11,12],[82,2,2,12,14],[86,1,1,14,15]]],[2,14,13,15,28,[[97,3,2,15,17],[98,1,1,17,18],[100,1,1,18,19],[103,8,8,19,27],[112,1,1,27,28]]],[3,20,18,28,46,[[120,1,1,28,29],[121,1,1,29,30],[122,1,1,30,31],[123,16,14,31,45],[140,1,1,45,46]]],[4,6,6,46,52,[[154,1,1,46,47],[163,1,1,47,48],[177,1,1,48,49],[180,3,3,49,52]]],[5,3,3,52,55,[[187,1,1,52,53],[189,1,1,53,54],[190,1,1,54,55]]],[6,6,6,55,61,[[216,2,2,55,57],[218,2,2,57,59],[222,1,1,59,60],[224,1,1,60,61]]],[8,4,4,61,65,[[239,1,1,61,62],[240,1,1,62,63],[254,1,1,63,64],[263,1,1,64,65]]],[9,8,6,65,71,[[280,2,2,65,67],[284,2,2,67,69],[285,2,1,69,70],[288,2,1,70,71]]],[10,7,7,71,78,[[295,1,1,71,72],[297,1,1,72,73],[298,3,3,73,76],[307,1,1,76,77],[308,1,1,77,78]]],[11,10,8,78,86,[[316,2,1,78,79],[321,1,1,79,80],[323,1,1,80,81],[328,2,1,81,82],[330,1,1,82,83],[331,1,1,83,84],[332,1,1,84,85],[337,1,1,85,86]]],[12,1,1,86,87,[[349,1,1,86,87]]],[13,7,7,87,94,[[370,1,1,87,88],[372,3,3,88,91],[390,1,1,91,92],[396,1,1,92,93],[398,1,1,93,94]]],[14,2,2,94,96,[[410,1,1,94,95],[411,1,1,95,96]]],[17,13,13,96,109,[[437,1,1,96,97],[444,1,1,97,98],[445,1,1,98,99],[446,1,1,99,100],[448,2,2,100,102],[451,1,1,102,103],[457,1,1,103,104],[462,1,1,104,105],[464,1,1,105,106],[466,1,1,106,107],[471,1,1,107,108],[476,1,1,108,109]]],[18,20,20,109,129,[[484,1,1,109,110],[486,1,1,110,111],[501,1,1,111,112],[503,1,1,112,113],[521,1,1,113,114],[524,1,1,114,115],[540,1,1,115,116],[548,1,1,116,117],[550,1,1,117,118],[555,1,1,118,119],[558,1,1,119,120],[565,1,1,120,121],[568,1,1,121,122],[575,1,1,122,123],[596,2,2,123,125],[605,1,1,125,126],[606,1,1,126,127],[616,1,1,127,128],[618,1,1,128,129]]],[19,9,9,129,138,[[633,2,2,129,131],[637,1,1,131,132],[644,1,1,132,133],[649,1,1,133,134],[658,4,4,134,138]]],[20,1,1,138,139,[[662,1,1,138,139]]],[21,1,1,139,140,[[675,1,1,139,140]]],[22,13,13,140,153,[[679,2,2,140,142],[706,1,1,142,143],[711,1,1,143,144],[714,1,1,144,145],[715,1,1,145,146],[716,1,1,146,147],[727,1,1,147,148],[733,1,1,148,149],[737,2,2,149,151],[738,1,1,151,152],[740,1,1,152,153]]],[23,5,5,153,158,[[748,1,1,153,154],[756,1,1,154,155],[759,1,1,155,156],[796,2,2,156,158]]],[24,3,3,158,161,[[798,2,2,158,160],[799,1,1,160,161]]],[25,12,9,161,170,[[802,2,1,161,162],[807,1,1,162,163],[822,6,4,163,167],[823,1,1,167,168],[830,1,1,168,169],[844,1,1,169,170]]],[26,1,1,170,171,[[859,1,1,170,171]]],[31,1,1,171,172,[[891,1,1,171,172]]],[32,2,2,172,174,[[896,1,1,172,173],[899,1,1,173,174]]],[33,1,1,174,175,[[902,1,1,174,175]]],[34,1,1,175,176,[[904,1,1,175,176]]],[36,1,1,176,177,[[909,1,1,176,177]]],[38,1,1,177,178,[[928,1,1,177,178]]]],[192,500,915,953,960,1183,1193,1605,1771,1775,2224,2360,2495,2496,2620,2944,2945,2970,3024,3126,3127,3128,3129,3137,3138,3139,3140,3442,3750,3810,3842,3864,3870,3876,3882,3888,3894,3900,3906,3912,3918,3924,3930,3934,3936,4456,4943,5232,5559,5646,5667,5676,5854,5906,5928,6667,6668,6725,6734,6872,6918,7300,7323,7711,7963,8372,8381,8490,8492,8520,8603,8881,8984,9007,9023,9039,9329,9385,9637,9791,9841,9970,10045,10085,10104,10236,10737,11268,11294,11295,11311,11691,11833,11886,12232,12242,12898,13081,13089,13121,13167,13174,13255,13419,13504,13541,13595,13768,13896,13998,14037,14245,14279,14591,14626,14843,14980,15033,15185,15223,15317,15407,15498,15946,16007,16128,16139,16244,16278,16541,16543,16660,16891,17041,17297,17300,17303,17304,17387,17603,17660,17669,18168,18294,18336,18377,18396,18652,18752,18803,18806,18835,18857,19058,19256,19336,20294,20295,20347,20351,20395,20471,20574,20955,20958,20961,20968,20989,21190,21579,22025,22566,22630,22667,22731,22757,22851,23141]]],["+",[33,28,[[2,1,1,0,1,[[98,1,1,0,1]]],[3,2,2,1,3,[[123,1,1,1,2],[140,1,1,2,3]]],[4,2,2,3,5,[[154,1,1,3,4],[180,1,1,4,5]]],[6,1,1,5,6,[[216,1,1,5,6]]],[8,1,1,6,7,[[239,1,1,6,7]]],[9,6,4,7,11,[[280,2,2,7,9],[285,2,1,9,10],[288,2,1,10,11]]],[10,1,1,11,12,[[307,1,1,11,12]]],[11,3,2,12,14,[[328,2,1,12,13],[332,1,1,13,14]]],[13,2,2,14,16,[[396,1,1,14,15],[398,1,1,15,16]]],[14,1,1,16,17,[[410,1,1,16,17]]],[17,1,1,17,18,[[437,1,1,17,18]]],[18,1,1,18,19,[[548,1,1,18,19]]],[20,1,1,19,20,[[662,1,1,19,20]]],[22,2,2,20,22,[[679,1,1,20,21],[716,1,1,21,22]]],[23,1,1,22,23,[[759,1,1,22,23]]],[25,5,3,23,26,[[822,5,3,23,26]]],[32,1,1,26,27,[[896,1,1,26,27]]],[34,1,1,27,28,[[904,1,1,27,28]]]],[2970,3936,4456,4943,5646,6668,7300,8372,8381,8520,8603,9329,9970,10104,11833,11886,12232,12898,14980,17387,17660,18396,19336,20955,20958,20961,22630,22757]]],["branches",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3442]]],["clouds",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13768]]],["hand",[37,37,[[0,2,2,0,2,[[39,2,2,0,2]]],[1,3,3,2,5,[[53,1,1,2,3],[82,2,2,3,5]]],[2,6,6,5,11,[[103,6,6,5,11]]],[4,1,1,11,12,[[177,1,1,11,12]]],[8,2,2,12,14,[[254,1,1,12,13],[263,1,1,13,14]]],[9,2,2,14,16,[[284,2,2,14,16]]],[10,1,1,16,17,[[308,1,1,16,17]]],[11,1,1,17,18,[[330,1,1,17,18]]],[17,4,4,18,22,[[448,2,2,18,20],[464,1,1,20,21],[476,1,1,21,22]]],[18,3,3,22,25,[[596,1,1,22,23],[606,1,1,23,24],[616,1,1,24,25]]],[19,4,4,25,29,[[633,2,2,25,27],[637,1,1,27,28],[658,1,1,28,29]]],[22,3,3,29,32,[[706,1,1,29,30],[714,1,1,30,31],[740,1,1,31,32]]],[23,1,1,32,33,[[756,1,1,32,33]]],[25,4,4,33,37,[[807,1,1,33,34],[822,1,1,34,35],[823,1,1,35,36],[830,1,1,36,37]]]],[1183,1193,1605,2495,2496,3127,3128,3129,3138,3139,3140,5559,7711,7963,8490,8492,9385,10045,13167,13174,13541,13896,16007,16139,16244,16541,16543,16660,17304,18168,18336,18857,19256,20574,20968,20989,21190]]],["handles",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17603]]],["hands",[69,66,[[0,2,2,0,2,[[19,1,1,0,1],[30,1,1,1,2]]],[1,4,3,2,5,[[58,2,2,2,4],[78,2,1,4,5]]],[2,3,2,5,7,[[97,3,2,5,7]]],[3,2,2,7,9,[[121,1,1,7,8],[122,1,1,8,9]]],[6,5,5,9,14,[[216,1,1,9,10],[218,2,2,10,12],[222,1,1,12,13],[224,1,1,13,14]]],[10,3,3,14,17,[[298,3,3,14,17]]],[11,3,2,17,19,[[316,2,1,17,18],[323,1,1,18,19]]],[12,1,1,19,20,[[349,1,1,19,20]]],[13,3,3,20,23,[[372,3,3,20,23]]],[14,1,1,23,24,[[411,1,1,23,24]]],[17,7,7,24,31,[[444,1,1,24,25],[445,1,1,25,26],[446,1,1,26,27],[451,1,1,27,28],[457,1,1,28,29],[462,1,1,29,30],[466,1,1,30,31]]],[18,16,16,31,47,[[484,1,1,31,32],[486,1,1,32,33],[501,1,1,33,34],[503,1,1,34,35],[521,1,1,35,36],[524,1,1,36,37],[540,1,1,37,38],[550,1,1,38,39],[555,1,1,39,40],[558,1,1,40,41],[565,1,1,41,42],[568,1,1,42,43],[575,1,1,43,44],[596,1,1,44,45],[605,1,1,45,46],[618,1,1,46,47]]],[19,5,5,47,52,[[644,1,1,47,48],[649,1,1,48,49],[658,3,3,49,52]]],[22,6,6,52,58,[[679,1,1,52,53],[711,1,1,53,54],[727,1,1,54,55],[733,1,1,55,56],[737,2,2,56,58]]],[23,1,1,58,59,[[748,1,1,58,59]]],[24,3,3,59,62,[[798,2,2,59,61],[799,1,1,61,62]]],[31,1,1,62,63,[[891,1,1,62,63]]],[32,1,1,63,64,[[899,1,1,63,64]]],[33,1,1,64,65,[[902,1,1,64,65]]],[36,1,1,65,66,[[909,1,1,65,66]]]],[500,915,1771,1775,2360,2944,2945,3810,3842,6667,6725,6734,6872,6918,9007,9023,9039,9637,9841,10737,11294,11295,11311,12242,13081,13089,13121,13255,13419,13504,13595,13998,14037,14245,14279,14591,14626,14843,15033,15185,15223,15317,15407,15498,15946,16128,16278,16891,17041,17297,17300,17303,17669,18294,18652,18752,18803,18806,19058,20347,20351,20395,22566,22667,22731,22851]]],["hollow",[4,2,[[0,4,2,0,2,[[31,4,2,0,2]]]],[953,960]]],["palm",[2,2,[[2,2,2,0,2,[[103,2,2,0,2]]]],[3126,3137]]],["palms",[3,3,[[8,1,1,0,1,[[240,1,1,0,1]]],[11,1,1,1,2,[[321,1,1,1,2]]],[26,1,1,2,3,[[859,1,1,2,3]]]],[7323,9791,22025]]],["paws",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3024]]],["sole",[8,7,[[0,1,1,0,1,[[7,1,1,0,1]]],[4,2,2,1,3,[[180,2,2,1,3]]],[5,1,1,3,4,[[187,1,1,3,4]]],[11,1,1,4,5,[[331,1,1,4,5]]],[22,1,1,5,6,[[715,1,1,5,6]]],[25,2,1,6,7,[[802,2,1,6,7]]]],[192,5667,5676,5854,10085,18377,20471]]],["soles",[7,7,[[4,1,1,0,1,[[163,1,1,0,1]]],[5,2,2,1,3,[[189,1,1,1,2],[190,1,1,2,3]]],[10,1,1,3,4,[[295,1,1,3,4]]],[22,1,1,4,5,[[738,1,1,4,5]]],[25,1,1,5,6,[[844,1,1,5,6]]],[38,1,1,6,7,[[928,1,1,6,7]]]],[5232,5906,5928,8881,18835,21579,23141]]],["spoon",[12,12,[[3,12,12,0,12,[[123,12,12,0,12]]]],[3864,3870,3876,3882,3888,3894,3900,3906,3912,3918,3924,3930]]],["spoons",[12,11,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[3,4,3,2,5,[[120,1,1,2,3],[123,3,2,3,5]]],[10,1,1,5,6,[[297,1,1,5,6]]],[11,1,1,6,7,[[337,1,1,6,7]]],[13,2,2,7,9,[[370,1,1,7,8],[390,1,1,8,9]]],[23,2,2,9,11,[[796,2,2,9,11]]]],[2224,2620,3750,3934,3936,8984,10236,11268,11691,20294,20295]]]]},{"k":"H3710","v":[["rocks",[2,2,[[17,1,1,0,1,[[465,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]]],[13563,19056]]]]},{"k":"H3711","v":[["pacifieth",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16998]]]]},{"k":"H3712","v":[["branch",[3,3,[[17,1,1,0,1,[[450,1,1,0,1]]],[22,2,2,1,3,[[687,1,1,1,2],[697,1,1,2,3]]]],[13235,17843,18019]]]]},{"k":"H3713","v":[["*",[12,6,[[1,1,1,0,1,[[65,1,1,0,1]]],[12,6,1,1,2,[[365,6,1,1,2]]],[14,3,2,2,4,[[403,2,1,2,3],[410,1,1,3,4]]],[17,1,1,4,5,[[473,1,1,4,5]]],[18,1,1,5,6,[[624,1,1,5,6]]]],[1961,11160,12026,12228,13822,16367]]],["+",[5,1,[[12,5,1,0,1,[[365,5,1,0,1]]]],[11160]]],["basons",[4,3,[[12,1,1,0,1,[[365,1,1,0,1]]],[14,3,2,1,3,[[403,2,1,1,2],[410,1,1,2,3]]]],[11160,12026,12228]]],["frost",[2,2,[[1,1,1,0,1,[[65,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]]],[1961,13822]]],["hoarfrost",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16367]]]]},{"k":"H3714","v":[["beam",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22759]]]]},{"k":"H3715","v":[["*",[32,32,[[6,1,1,0,1,[[224,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]],[17,2,2,2,4,[[439,1,1,2,3],[473,1,1,3,4]]],[18,6,6,4,10,[[494,1,1,4,5],[511,1,1,5,6],[512,1,1,6,7],[535,1,1,7,8],[568,1,1,8,9],[581,1,1,9,10]]],[19,3,3,10,13,[[646,1,1,10,11],[647,1,1,11,12],[655,1,1,12,13]]],[22,3,3,13,16,[[683,1,1,13,14],[689,1,1,14,15],[709,1,1,15,16]]],[23,3,3,16,19,[[746,1,1,16,17],[769,1,1,17,18],[795,1,1,18,19]]],[25,7,7,19,26,[[820,4,4,19,23],[833,1,1,23,24],[839,1,1,24,25],[842,1,1,25,26]]],[27,1,1,26,27,[[866,1,1,26,27]]],[29,1,1,27,28,[[881,1,1,27,28]]],[32,1,1,28,29,[[897,1,1,28,29]]],[33,2,2,29,31,[[901,2,2,29,31]]],[37,1,1,31,32,[[921,1,1,31,32]]]],[6914,12403,12940,13832,14115,14398,14427,14785,15408,15592,16937,16956,17197,17768,17890,18254,18980,19572,20250,20883,20884,20886,20887,21250,21438,21545,22166,22399,22641,22710,22712,23031]]],["+",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14427]]],["lion",[16,16,[[18,2,2,0,2,[[494,1,1,0,1],[568,1,1,1,2]]],[19,3,3,2,5,[[646,1,1,2,3],[647,1,1,3,4],[655,1,1,4,5]]],[22,2,2,5,7,[[689,1,1,5,6],[709,1,1,6,7]]],[23,1,1,7,8,[[769,1,1,7,8]]],[25,5,5,8,13,[[820,3,3,8,11],[833,1,1,11,12],[842,1,1,12,13]]],[27,1,1,13,14,[[866,1,1,13,14]]],[29,1,1,14,15,[[881,1,1,14,15]]],[32,1,1,15,16,[[897,1,1,15,16]]]],[14115,15408,16937,16956,17197,17890,18254,19572,20884,20886,20887,21250,21545,22166,22399,22641]]],["lions",[13,13,[[17,2,2,0,2,[[439,1,1,0,1],[473,1,1,1,2]]],[18,3,3,2,5,[[511,1,1,2,3],[535,1,1,3,4],[581,1,1,4,5]]],[22,1,1,5,6,[[683,1,1,5,6]]],[23,2,2,6,8,[[746,1,1,6,7],[795,1,1,7,8]]],[25,2,2,8,10,[[820,1,1,8,9],[839,1,1,9,10]]],[33,2,2,10,12,[[901,2,2,10,12]]],[37,1,1,12,13,[[921,1,1,12,13]]]],[12940,13832,14398,14785,15592,17768,18980,20250,20883,21438,22710,22712,23031]]],["villages",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12403]]],["young",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6914]]]]},{"k":"H3716","v":[["Chephirah",[4,4,[[5,2,2,0,2,[[195,1,1,0,1],[204,1,1,1,2]]],[14,1,1,2,3,[[404,1,1,2,3]]],[15,1,1,3,4,[[419,1,1,3,4]]]],[6054,6319,12052,12449]]]]},{"k":"H3717","v":[["*",[5,4,[[1,4,3,0,3,[[75,1,1,0,1],[77,1,1,1,2],[88,2,1,2,3]]],[25,1,1,3,4,[[822,1,1,3,4]]]],[2244,2309,2673,20958]]],["double",[2,2,[[1,2,2,0,2,[[75,1,1,0,1],[88,1,1,1,2]]]],[2244,2673]]],["doubled",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[25,1,1,2,3,[[822,1,1,2,3]]]],[2309,2673,20958]]]]},{"k":"H3718","v":[["double",[3,3,[[17,2,2,0,2,[[446,1,1,0,1],[476,1,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]]],[13114,13901,18422]]]]},{"k":"H3719","v":[["bend",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20832]]]]},{"k":"H3720","v":[["famine",[2,2,[[17,2,2,0,2,[[440,1,1,0,1],[465,1,1,1,2]]]],[12973,13560]]]]},{"k":"H3721","v":[["*",[5,5,[[18,3,3,0,3,[[534,1,1,0,1],[622,1,1,1,2],[623,1,1,2,3]]],[22,1,1,3,4,[[736,1,1,3,4]]],[32,1,1,4,5,[[898,1,1,4,5]]]],[14774,16334,16349,18791,22654]]],["down",[4,4,[[18,3,3,0,3,[[534,1,1,0,1],[622,1,1,1,2],[623,1,1,2,3]]],[22,1,1,3,4,[[736,1,1,3,4]]]],[14774,16334,16349,18791]]],["myself",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22654]]]]},{"k":"H3722","v":[["*",[102,94,[[0,2,2,0,2,[[5,1,1,0,1],[31,1,1,1,2]]],[1,8,7,2,9,[[78,3,3,2,5],[79,4,3,5,8],[81,1,1,8,9]]],[2,49,44,9,53,[[90,1,1,9,10],[93,4,4,10,14],[94,5,5,14,19],[95,2,2,19,21],[96,1,1,21,22],[97,2,2,22,24],[98,2,1,24,25],[99,1,1,25,26],[101,2,2,26,28],[103,7,7,28,35],[104,2,2,35,37],[105,16,13,37,50],[106,2,1,50,51],[108,1,1,51,52],[112,1,1,52,53]]],[3,16,15,53,68,[[121,1,1,53,54],[122,1,1,54,55],[124,3,3,55,58],[131,3,2,58,60],[132,2,2,60,62],[141,1,1,62,63],[144,2,2,63,65],[145,1,1,65,66],[147,1,1,66,67],[151,1,1,67,68]]],[4,3,2,68,70,[[173,2,1,68,69],[184,1,1,69,70]]],[8,1,1,70,71,[[238,1,1,70,71]]],[9,1,1,71,72,[[287,1,1,71,72]]],[12,1,1,72,73,[[343,1,1,72,73]]],[13,2,2,73,75,[[395,1,1,73,74],[396,1,1,74,75]]],[15,1,1,75,76,[[422,1,1,75,76]]],[18,3,3,76,79,[[542,1,1,76,77],[555,1,1,77,78],[556,1,1,78,79]]],[19,2,2,79,81,[[643,2,2,79,81]]],[22,5,5,81,86,[[684,1,1,81,82],[700,1,1,82,83],[705,1,1,83,84],[706,1,1,84,85],[725,1,1,85,86]]],[23,1,1,86,87,[[762,1,1,86,87]]],[25,6,6,87,93,[[817,1,1,87,88],[844,2,2,88,90],[846,3,3,90,93]]],[26,1,1,93,94,[[858,1,1,93,94]]]],[151,948,2369,2372,2373,2392,2397,2398,2468,2749,2815,2821,2826,2830,2836,2840,2843,2846,2848,2856,2879,2886,2932,2951,2960,2994,3051,3052,3129,3130,3131,3132,3140,3142,3164,3183,3198,3207,3211,3212,3217,3218,3219,3221,3225,3228,3231,3233,3234,3235,3246,3303,3430,3800,3834,3951,3958,3960,4178,4181,4240,4241,4484,4599,4607,4613,4714,4878,5455,5801,7290,8583,10503,11815,11845,12582,14863,15151,15194,16846,16854,17776,18066,18160,18182,18610,19407,20825,21592,21598,21645,21647,21650,22012]]],["+",[5,5,[[0,1,1,0,1,[[31,1,1,0,1]]],[2,1,1,1,2,[[105,1,1,1,2]]],[18,1,1,2,3,[[556,1,1,2,3]]],[25,2,2,3,5,[[844,1,1,3,4],[846,1,1,4,5]]]],[948,3221,15194,21598,21650]]],["atonement",[71,64,[[1,7,6,0,6,[[78,2,2,0,2],[79,4,3,2,5],[81,1,1,5,6]]],[2,46,41,6,47,[[90,1,1,6,7],[93,4,4,7,11],[94,5,5,11,16],[95,1,1,16,17],[96,1,1,17,18],[97,1,1,18,19],[98,2,1,19,20],[99,1,1,20,21],[101,2,2,21,23],[103,7,7,23,30],[104,2,2,30,32],[105,15,12,32,44],[106,2,1,44,45],[108,1,1,45,46],[112,1,1,46,47]]],[3,14,13,47,60,[[122,1,1,47,48],[124,3,3,48,51],[131,3,2,51,53],[132,2,2,53,55],[141,1,1,55,56],[144,2,2,56,58],[145,1,1,58,59],[147,1,1,59,60]]],[9,1,1,60,61,[[287,1,1,60,61]]],[12,1,1,61,62,[[343,1,1,61,62]]],[13,1,1,62,63,[[395,1,1,62,63]]],[15,1,1,63,64,[[422,1,1,63,64]]]],[2372,2373,2392,2397,2398,2468,2749,2815,2821,2826,2830,2836,2840,2843,2846,2848,2856,2886,2951,2960,2994,3051,3052,3129,3130,3131,3132,3140,3142,3164,3183,3198,3207,3211,3212,3217,3218,3219,3225,3228,3231,3233,3234,3235,3246,3303,3430,3834,3951,3958,3960,4178,4181,4240,4241,4484,4599,4607,4613,4714,8583,10503,11815,12582]]],["away",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14863]]],["cleansed",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4878]]],["disannulled",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18182]]],["forgave",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15151]]],["forgive",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19407]]],["forgiven",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5455]]],["made",[2,2,[[1,1,1,0,1,[[78,1,1,0,1]]],[3,1,1,1,2,[[121,1,1,1,2]]]],[2369,3800]]],["merciful",[2,2,[[4,2,2,0,2,[[173,1,1,0,1],[184,1,1,1,2]]]],[5455,5801]]],["off",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18610]]],["pacified",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20825]]],["pacify",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16854]]],["pardon",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11845]]],["pitch",[1,1,[[0,1,1,0,1,[[5,1,1,0,1]]]],[151]]],["purge",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21592]]],["purged",[5,5,[[8,1,1,0,1,[[238,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]],[22,3,3,2,5,[[684,1,1,2,3],[700,1,1,3,4],[705,1,1,4,5]]]],[7290,16846,17776,18066,18160]]],["reconcile",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2879]]],["reconciliation",[4,4,[[2,1,1,0,1,[[97,1,1,0,1]]],[25,2,2,1,3,[[846,2,2,1,3]]],[26,1,1,3,4,[[858,1,1,3,4]]]],[2932,21645,21647,22012]]]]},{"k":"H3723","v":[["villages",[2,2,[[12,1,1,0,1,[[364,1,1,0,1]]],[21,1,1,1,2,[[677,1,1,1,2]]]],[11134,17638]]]]},{"k":"H3724","v":[["*",[17,17,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,2,2,1,3,[[70,1,1,1,2],[79,1,1,2,3]]],[3,2,2,3,5,[[151,2,2,3,5]]],[8,2,2,5,7,[[241,1,1,5,6],[247,1,1,6,7]]],[17,2,2,7,9,[[468,1,1,7,8],[471,1,1,8,9]]],[18,1,1,9,10,[[526,1,1,9,10]]],[19,3,3,10,13,[[633,1,1,10,11],[640,1,1,11,12],[648,1,1,12,13]]],[21,2,2,13,15,[[671,1,1,13,14],[674,1,1,14,15]]],[22,1,1,15,16,[[721,1,1,15,16]]],[29,1,1,16,17,[[883,1,1,16,17]]]],[151,2107,2394,4876,4877,7349,7463,13674,13754,14655,16575,16755,17002,17551,17595,18508,22435]]],["bribe",[2,2,[[8,1,1,0,1,[[247,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[7463,22435]]],["camphire",[2,2,[[21,2,2,0,2,[[671,1,1,0,1],[674,1,1,1,2]]]],[17551,17595]]],["money",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2107]]],["pitch",[1,1,[[0,1,1,0,1,[[5,1,1,0,1]]]],[151]]],["ransom",[8,8,[[1,1,1,0,1,[[79,1,1,0,1]]],[17,2,2,1,3,[[468,1,1,1,2],[471,1,1,2,3]]],[18,1,1,3,4,[[526,1,1,3,4]]],[19,3,3,4,7,[[633,1,1,4,5],[640,1,1,5,6],[648,1,1,6,7]]],[22,1,1,7,8,[[721,1,1,7,8]]]],[2394,13674,13754,14655,16575,16755,17002,18508]]],["satisfaction",[2,2,[[3,2,2,0,2,[[151,2,2,0,2]]]],[4876,4877]]],["villages",[1,1,[[8,1,1,0,1,[[241,1,1,0,1]]]],[7349]]]]},{"k":"H3725","v":[["*",[8,8,[[1,3,3,0,3,[[78,1,1,0,1],[79,2,2,1,3]]],[2,3,3,3,6,[[112,2,2,3,5],[114,1,1,5,6]]],[3,2,2,6,8,[[121,1,1,6,7],[145,1,1,7,8]]]],[2372,2392,2398,3429,3430,3478,3800,4619]]],["atonement",[7,7,[[1,2,2,0,2,[[78,1,1,0,1],[79,1,1,1,2]]],[2,3,3,2,5,[[112,2,2,2,4],[114,1,1,4,5]]],[3,2,2,5,7,[[121,1,1,5,6],[145,1,1,6,7]]]],[2372,2398,3429,3430,3478,3800,4619]]],["atonements",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2392]]]]},{"k":"H3726","v":[["Chepharhaammonai",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6317]]]]},{"k":"H3727","v":[["*",[27,22,[[1,18,16,0,16,[[74,7,6,0,6],[75,1,1,6,7],[79,1,1,7,8],[80,1,1,8,9],[84,1,1,9,10],[86,5,4,10,14],[88,1,1,14,15],[89,1,1,15,16]]],[2,7,4,16,20,[[105,7,4,16,20]]],[3,1,1,20,21,[[123,1,1,20,21]]],[12,1,1,21,22,[[365,1,1,21,22]]]],[2212,2213,2214,2215,2216,2217,2269,2388,2427,2543,2610,2611,2612,2613,2699,2727,3203,3214,3215,3216,3939,11154]]],["seat",[26,22,[[1,17,16,0,16,[[74,7,6,0,6],[75,1,1,6,7],[79,1,1,7,8],[80,1,1,8,9],[84,1,1,9,10],[86,4,4,10,14],[88,1,1,14,15],[89,1,1,15,16]]],[2,7,4,16,20,[[105,7,4,16,20]]],[3,1,1,20,21,[[123,1,1,20,21]]],[12,1,1,21,22,[[365,1,1,21,22]]]],[2212,2213,2214,2215,2216,2217,2269,2388,2427,2543,2610,2611,2612,2613,2699,2727,3203,3214,3215,3216,3939,11154]]],["seatward",[1,1,[[1,1,1,0,1,[[86,1,1,0,1]]]],[2613]]]]},{"k":"H3728","v":[["covered",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20370]]]]},{"k":"H3729","v":[["*",[4,4,[[26,4,4,0,4,[[852,4,4,0,4]]]],[21827,21828,21830,21831]]],["bind",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21827]]],["bound",[3,3,[[26,3,3,0,3,[[852,3,3,0,3]]]],[21828,21830,21831]]]]},{"k":"H3730","v":[["*",[18,12,[[1,16,10,0,10,[[74,8,5,0,5],[86,8,5,5,10]]],[29,1,1,10,11,[[887,1,1,10,11]]],[35,1,1,11,12,[[907,1,1,11,12]]]],[2226,2228,2229,2230,2231,2621,2623,2624,2625,2626,22496,22819]]],["knop",[10,4,[[1,10,4,0,4,[[74,5,2,0,2],[86,5,2,2,4]]]],[2228,2230,2623,2625]]],["knops",[6,6,[[1,6,6,0,6,[[74,3,3,0,3],[86,3,3,3,6]]]],[2226,2229,2231,2621,2624,2626]]],["lintel",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22496]]],["lintels",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22819]]]]},{"k":"H3731","v":[["*",[3,3,[[4,1,1,0,1,[[154,1,1,0,1]]],[23,1,1,1,2,[[791,1,1,1,2]]],[29,1,1,2,3,[[887,1,1,2,3]]]],[4961,20077,22502]]],["+",[2,2,[[4,1,1,0,1,[[154,1,1,0,1]]],[29,1,1,1,2,[[887,1,1,1,2]]]],[4961,22502]]],["Caphtor",[1,1,[[23,1,1,0,1,[[791,1,1,0,1]]]],[20077]]]]},{"k":"H3732","v":[["*",[3,3,[[0,1,1,0,1,[[9,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]],[12,1,1,2,3,[[338,1,1,2,3]]]],[248,4961,10264]]],["Caphthorim",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10264]]],["Caphtorim",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[248]]],["Caphtorims",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4961]]]]},{"k":"H3733","v":[["*",[16,15,[[0,1,1,0,1,[[30,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[8,1,1,2,3,[[250,1,1,2,3]]],[11,1,1,3,4,[[315,1,1,3,4]]],[18,2,2,4,6,[[514,1,1,4,5],[542,1,1,5,6]]],[22,3,3,6,9,[[694,1,1,6,7],[708,1,1,7,8],[712,1,1,8,9]]],[23,1,1,9,10,[[795,1,1,9,10]]],[25,5,4,10,14,[[805,1,1,10,11],[822,2,1,11,12],[828,1,1,12,13],[840,1,1,13,14]]],[29,1,1,14,15,[[884,1,1,14,15]]]],[907,5772,7569,9580,14470,14873,17970,18240,18309,20252,20531,20966,21142,21466,22454]]],["captains",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20966]]],["furniture",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[907]]],["lamb",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17970]]],["lambs",[9,9,[[4,1,1,0,1,[[184,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]],[11,1,1,2,3,[[315,1,1,2,3]]],[18,1,1,3,4,[[514,1,1,3,4]]],[22,1,1,4,5,[[712,1,1,4,5]]],[23,1,1,5,6,[[795,1,1,5,6]]],[25,2,2,6,8,[[828,1,1,6,7],[840,1,1,7,8]]],[29,1,1,8,9,[[884,1,1,8,9]]]],[5772,7569,9580,14470,18309,20252,21142,21466,22454]]],["pastures",[2,2,[[18,1,1,0,1,[[542,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]]],[14873,18240]]],["rams",[2,2,[[25,2,2,0,2,[[805,1,1,0,1],[822,1,1,1,2]]]],[20531,20966]]]]},{"k":"H3734","v":[["*",[9,6,[[10,4,2,0,2,[[294,2,1,0,1],[295,2,1,1,2]]],[13,3,2,2,4,[[368,2,1,2,3],[393,1,1,3,4]]],[14,1,1,4,5,[[409,1,1,4,5]]],[25,1,1,5,6,[[846,1,1,5,6]]]],[8866,8889,11221,11760,12195,21644]]],["cor",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21644]]],["measures",[8,5,[[10,4,2,0,2,[[294,2,1,0,1],[295,2,1,1,2]]],[13,3,2,2,4,[[368,2,1,2,3],[393,1,1,3,4]]],[14,1,1,4,5,[[409,1,1,4,5]]]],[8866,8889,11221,11760,12195]]]]},{"k":"H3735","v":[["grieved",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21948]]]]},{"k":"H3736","v":[["clothed",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10818]]]]},{"k":"H3737","v":[["hats",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21828]]]]},{"k":"H3738","v":[["*",[16,16,[[0,2,2,0,2,[[25,1,1,0,1],[49,1,1,1,2]]],[1,1,1,2,3,[[70,1,1,2,3]]],[3,1,1,3,4,[[137,1,1,3,4]]],[13,1,1,4,5,[[382,1,1,4,5]]],[17,2,2,5,7,[[441,1,1,5,6],[476,1,1,6,7]]],[18,5,5,7,12,[[484,1,1,7,8],[517,1,1,8,9],[534,1,1,9,10],[571,1,1,10,11],[596,1,1,11,12]]],[19,2,2,12,14,[[643,1,1,12,13],[653,1,1,13,14]]],[23,2,2,14,16,[[762,2,2,14,16]]]],[717,1511,2110,4358,11523,13005,13894,14010,14531,14774,15444,15983,16867,17168,19404,19406]]],["banquet",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13894]]],["dig",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]]],[2110,13005]]],["digged",[8,8,[[0,2,2,0,2,[[25,1,1,0,1],[49,1,1,1,2]]],[3,1,1,2,3,[[137,1,1,2,3]]],[18,3,3,3,6,[[534,1,1,3,4],[571,1,1,4,5],[596,1,1,5,6]]],[23,2,2,6,8,[[762,2,2,6,8]]]],[717,1511,4358,14774,15444,15983,19404,19406]]],["diggeth",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17168]]],["made",[2,2,[[13,1,1,0,1,[[382,1,1,0,1]]],[18,1,1,1,2,[[484,1,1,1,2]]]],[11523,14010]]],["opened",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14531]]],["up",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16867]]]]},{"k":"H3739","v":[["*",[3,3,[[4,1,1,0,1,[[154,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]],[27,1,1,2,3,[[864,1,1,2,3]]]],[4944,9697,22130]]],["bought",[1,1,[[27,1,1,0,1,[[864,1,1,0,1]]]],[22130]]],["buy",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4944]]],["prepared",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9697]]]]},{"k":"H3740","v":[["provision",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9697]]]]},{"k":"H3741","v":[["cottages",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22811]]]]},{"k":"H3742","v":[["*",[91,66,[[0,1,1,0,1,[[2,1,1,0,1]]],[1,17,11,1,12,[[74,7,4,1,5],[75,2,2,5,7],[85,2,2,7,9],[86,6,3,9,12]]],[3,1,1,12,13,[[123,1,1,12,13]]],[8,1,1,13,14,[[239,1,1,13,14]]],[9,2,2,14,16,[[272,1,1,14,15],[288,1,1,15,16]]],[10,20,13,16,29,[[296,15,9,16,25],[297,2,2,25,27],[298,3,2,27,29]]],[11,1,1,29,30,[[331,1,1,29,30]]],[12,2,2,30,32,[[350,1,1,30,31],[365,1,1,31,32]]],[13,11,8,32,40,[[369,8,6,32,38],[371,3,2,38,40]]],[18,3,3,40,43,[[495,1,1,40,41],[557,1,1,41,42],[576,1,1,42,43]]],[22,1,1,43,44,[[715,1,1,43,44]]],[25,31,22,44,66,[[810,1,1,44,45],[811,21,15,45,60],[812,1,1,60,61],[829,2,2,61,63],[842,6,3,63,66]]]],[79,2213,2214,2215,2217,2236,2266,2574,2601,2611,2612,2613,3939,7301,8159,8613,8919,8920,8921,8922,8923,8924,8925,8928,8931,8963,8970,8991,8992,10076,10766,11161,11236,11239,11240,11241,11242,11243,11275,11276,14128,15199,15500,18368,20625,20634,20635,20636,20637,20638,20639,20640,20641,20642,20647,20648,20649,20651,20652,20653,20677,21171,21173,21544,21546,21551]]],["Cherubims",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[79]]],["cherub",[27,19,[[1,4,2,0,2,[[74,2,1,0,1],[86,2,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[10,6,4,3,7,[[296,6,4,3,7]]],[13,3,2,7,9,[[369,3,2,7,9]]],[18,1,1,9,10,[[495,1,1,9,10]]],[25,12,9,10,19,[[810,1,1,10,11],[811,6,5,11,16],[829,2,2,16,18],[842,3,1,18,19]]]],[2214,2612,8613,8920,8921,8922,8923,11240,11241,14128,20625,20635,20637,20640,20642,20647,21171,21173,21544]]],["cherubims",[62,54,[[1,13,11,0,11,[[74,5,4,0,4],[75,2,2,4,6],[85,2,2,6,8],[86,4,3,8,11]]],[3,1,1,11,12,[[123,1,1,11,12]]],[8,1,1,12,13,[[239,1,1,12,13]]],[9,1,1,13,14,[[272,1,1,13,14]]],[10,14,11,14,25,[[296,9,7,14,21],[297,2,2,21,23],[298,3,2,23,25]]],[11,1,1,25,26,[[331,1,1,25,26]]],[12,2,2,26,28,[[350,1,1,26,27],[365,1,1,27,28]]],[13,8,7,28,35,[[369,5,5,28,33],[371,3,2,33,35]]],[18,2,2,35,37,[[557,1,1,35,36],[576,1,1,36,37]]],[22,1,1,37,38,[[715,1,1,37,38]]],[25,18,16,38,54,[[811,14,12,38,50],[812,1,1,50,51],[842,3,3,51,54]]]],[2213,2214,2215,2217,2236,2266,2574,2601,2611,2612,2613,3939,7301,8159,8919,8921,8923,8924,8925,8928,8931,8963,8970,8991,8992,10076,10766,11161,11236,11239,11240,11242,11243,11275,11276,15199,15500,18368,20634,20635,20636,20639,20640,20641,20642,20648,20649,20651,20652,20653,20677,21544,21546,21551]]],["cherubims'",[1,1,[[25,1,1,0,1,[[811,1,1,0,1]]]],[20638]]]]},{"k":"H3743","v":[["Cherub",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12086,12481]]]]},{"k":"H3744","v":[["herald",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21811]]]]},{"k":"H3745","v":[["proclamation",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21903]]]]},{"k":"H3746","v":[["captains",[2,2,[[11,2,2,0,2,[[323,2,2,0,2]]]],[9833,9848]]]]},{"k":"H3747","v":[["Cherith",[2,2,[[10,2,2,0,2,[[307,2,2,0,2]]]],[9320,9322]]]]},{"k":"H3748","v":[["*",[4,4,[[4,2,2,0,2,[[176,2,2,0,2]]],[22,1,1,2,3,[[728,1,1,2,3]]],[23,1,1,3,4,[[747,1,1,3,4]]]],[5526,5528,18663,19010]]],["divorce",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19010]]],["divorcement",[3,3,[[4,2,2,0,2,[[176,2,2,0,2]]],[22,1,1,2,3,[[728,1,1,2,3]]]],[5526,5528,18663]]]]},{"k":"H3749","v":[["compass",[2,2,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]]],[2277,2637]]]]},{"k":"H3750","v":[["saffron",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17596]]]]},{"k":"H3751","v":[["Carchemish",[3,3,[[13,1,1,0,1,[[401,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]],[23,1,1,2,3,[[790,1,1,2,3]]]],[11986,17859,20047]]]]},{"k":"H3752","v":[["Carcas",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12712]]]]},{"k":"H3753","v":[["beasts",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18942]]]]},{"k":"H3754","v":[["*",[93,82,[[0,1,1,0,1,[[8,1,1,0,1]]],[1,3,2,1,3,[[71,2,1,1,2],[72,1,1,2,3]]],[2,4,3,3,6,[[108,2,1,3,4],[114,2,2,4,6]]],[3,4,4,6,10,[[132,1,1,6,7],[136,1,1,7,8],[137,1,1,8,9],[138,1,1,9,10]]],[4,8,7,10,17,[[158,1,1,10,11],[172,1,1,11,12],[174,2,1,12,13],[175,1,1,13,14],[176,1,1,14,15],[180,2,2,15,17]]],[5,1,1,17,18,[[210,1,1,17,18]]],[6,6,6,18,24,[[219,1,1,18,19],[221,1,1,19,20],[224,1,1,20,21],[225,1,1,21,22],[231,2,2,22,24]]],[8,3,3,24,27,[[243,2,2,24,26],[257,1,1,26,27]]],[10,10,7,27,34,[[311,10,7,27,34]]],[11,3,3,34,37,[[317,1,1,34,35],[330,1,1,35,36],[331,1,1,36,37]]],[12,2,1,37,38,[[364,2,1,37,38]]],[15,5,5,38,43,[[417,4,4,38,42],[421,1,1,42,43]]],[17,2,2,43,45,[[459,2,2,43,45]]],[18,1,1,45,46,[[584,1,1,45,46]]],[19,2,2,46,48,[[651,1,1,46,47],[658,1,1,47,48]]],[20,1,1,48,49,[[660,1,1,48,49]]],[21,9,6,49,55,[[671,3,2,49,51],[672,2,1,51,52],[677,1,1,52,53],[678,3,2,53,55]]],[22,14,13,55,68,[[679,1,1,55,56],[681,1,1,56,57],[683,7,6,57,63],[694,1,1,63,64],[705,1,1,64,65],[714,1,1,65,66],[715,1,1,66,67],[743,1,1,67,68]]],[23,6,6,68,74,[[756,1,1,68,69],[775,1,1,69,70],[776,1,1,70,71],[779,2,2,71,73],[783,1,1,73,74]]],[25,1,1,74,75,[[829,1,1,74,75]]],[27,1,1,75,76,[[863,1,1,75,76]]],[29,4,4,76,80,[[882,1,1,76,77],[883,2,2,77,79],[887,1,1,79,80]]],[32,1,1,80,81,[[893,1,1,80,81]]],[35,1,1,81,82,[[906,1,1,81,82]]]],[225,2118,2155,3291,3472,3473,4208,4328,4362,4399,5097,5433,5479,5524,5546,5641,5650,6489,6781,6862,6914,6934,7122,7123,7383,7384,7794,9452,9453,9457,9458,9466,9467,9469,9673,10056,10090,11136,12385,12386,12387,12393,12536,13442,13454,15736,17109,17300,17337,17543,17551,17569,17639,17651,17652,17662,17721,17740,17742,17743,17744,17746,17749,17979,18153,18347,18382,18918,19259,19696,19746,19830,19832,19933,21183,22120,22419,22434,22440,22509,22585,22800]]],["+",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11136]]],["vines",[3,2,[[21,2,1,0,1,[[672,2,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[17569,19696]]],["vineyard",[44,36,[[0,1,1,0,1,[[8,1,1,0,1]]],[1,3,2,1,3,[[71,2,1,1,2],[72,1,1,2,3]]],[2,4,3,3,6,[[108,2,1,3,4],[114,2,2,4,6]]],[4,6,5,6,11,[[172,1,1,6,7],[174,2,1,7,8],[175,1,1,8,9],[176,1,1,9,10],[180,1,1,10,11]]],[10,10,7,11,18,[[311,10,7,11,18]]],[19,2,2,18,20,[[651,1,1,18,19],[658,1,1,19,20]]],[21,4,3,20,23,[[671,1,1,20,21],[678,3,2,21,23]]],[22,10,9,23,32,[[679,1,1,23,24],[681,1,1,24,25],[683,7,6,25,31],[705,1,1,31,32]]],[23,3,3,32,35,[[756,1,1,32,33],[779,2,2,33,35]]],[32,1,1,35,36,[[893,1,1,35,36]]]],[225,2118,2155,3291,3472,3473,5433,5479,5524,5546,5641,9452,9453,9457,9458,9466,9467,9469,17109,17300,17543,17651,17652,17662,17721,17740,17742,17743,17744,17746,17749,18153,19259,19830,19832,22585]]],["vineyards",[44,44,[[3,4,4,0,4,[[132,1,1,0,1],[136,1,1,1,2],[137,1,1,2,3],[138,1,1,3,4]]],[4,2,2,4,6,[[158,1,1,4,5],[180,1,1,5,6]]],[5,1,1,6,7,[[210,1,1,6,7]]],[6,6,6,7,13,[[219,1,1,7,8],[221,1,1,8,9],[224,1,1,9,10],[225,1,1,10,11],[231,2,2,11,13]]],[8,3,3,13,16,[[243,2,2,13,15],[257,1,1,15,16]]],[11,3,3,16,19,[[317,1,1,16,17],[330,1,1,17,18],[331,1,1,18,19]]],[12,1,1,19,20,[[364,1,1,19,20]]],[15,5,5,20,25,[[417,4,4,20,24],[421,1,1,24,25]]],[17,1,1,25,26,[[459,1,1,25,26]]],[18,1,1,26,27,[[584,1,1,26,27]]],[20,1,1,27,28,[[660,1,1,27,28]]],[21,3,3,28,31,[[671,2,2,28,30],[677,1,1,30,31]]],[22,4,4,31,35,[[694,1,1,31,32],[714,1,1,32,33],[715,1,1,33,34],[743,1,1,34,35]]],[23,2,2,35,37,[[776,1,1,35,36],[783,1,1,36,37]]],[25,1,1,37,38,[[829,1,1,37,38]]],[27,1,1,38,39,[[863,1,1,38,39]]],[29,4,4,39,43,[[882,1,1,39,40],[883,2,2,40,42],[887,1,1,42,43]]],[35,1,1,43,44,[[906,1,1,43,44]]]],[4208,4328,4362,4399,5097,5650,6489,6781,6862,6914,6934,7122,7123,7383,7384,7794,9673,10056,10090,11136,12385,12386,12387,12393,12536,13454,15736,17337,17543,17551,17639,17979,18347,18382,18918,19746,19933,21183,22120,22419,22434,22440,22509,22800]]],["vintage",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13442]]]]},{"k":"H3755","v":[["*",[5,5,[[11,1,1,0,1,[[337,1,1,0,1]]],[13,1,1,1,2,[[392,1,1,1,2]]],[22,1,1,2,3,[[739,1,1,2,3]]],[23,1,1,3,4,[[796,1,1,3,4]]],[28,1,1,4,5,[[876,1,1,4,5]]]],[10234,11742,18848,20292,22302]]],["dressers",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11742]]],["vinedressers",[4,4,[[11,1,1,0,1,[[337,1,1,0,1]]],[22,1,1,1,2,[[739,1,1,1,2]]],[23,1,1,2,3,[[796,1,1,2,3]]],[28,1,1,3,4,[[876,1,1,3,4]]]],[10234,18848,20292,22302]]]]},{"k":"H3756","v":[["Carmi",[8,8,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]],[3,1,1,2,3,[[142,1,1,2,3]]],[5,2,2,3,5,[[193,2,2,3,5]]],[12,3,3,5,8,[[339,1,1,5,6],[341,1,1,6,7],[342,1,1,7,8]]]],[1395,1669,4495,5977,5994,10313,10386,10431]]]]},{"k":"H3757","v":[["Carmites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4495]]]]},{"k":"H3758","v":[["crimson",[3,3,[[13,3,3,0,3,[[368,2,2,0,2],[369,1,1,2,3]]]],[11218,11225,11243]]]]},{"k":"H3759","v":[["*",[14,12,[[2,2,2,0,2,[[91,1,1,0,1],[112,1,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]],[22,8,6,3,9,[[688,1,1,3,4],[694,1,1,4,5],[707,2,1,5,6],[710,3,2,6,8],[715,1,1,8,9]]],[23,3,3,9,12,[[746,1,1,9,10],[748,1,1,10,11],[792,1,1,11,12]]]],[2776,3416,9645,17868,17979,18210,18274,18275,18376,18972,19053,20113]]],["+",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20113]]],["Carmel",[1,1,[[22,1,1,0,1,[[715,1,1,0,1]]]],[18376]]],["corn",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9645]]],["ears",[2,2,[[2,2,2,0,2,[[91,1,1,0,1],[112,1,1,1,2]]]],[2776,3416]]],["field",[7,5,[[22,7,5,0,5,[[688,1,1,0,1],[694,1,1,1,2],[707,2,1,2,3],[710,3,2,3,5]]]],[17868,17979,18210,18274,18275]]],["place",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19053]]],["plentiful",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18972]]]]},{"k":"H3760","v":[["Carmel",[25,24,[[5,3,3,0,3,[[198,1,1,0,1],[201,1,1,1,2],[205,1,1,2,3]]],[8,6,5,3,8,[[250,1,1,3,4],[260,5,4,4,8]]],[10,3,3,8,11,[[308,3,3,8,11]]],[11,3,3,11,14,[[314,1,1,11,12],[316,1,1,12,13],[331,1,1,13,14]]],[13,1,1,14,15,[[392,1,1,14,15]]],[21,1,1,15,16,[[677,1,1,15,16]]],[22,2,2,16,18,[[711,1,1,16,17],[713,1,1,17,18]]],[23,2,2,18,20,[[790,1,1,18,19],[794,1,1,19,20]]],[29,2,2,20,22,[[879,1,1,20,21],[887,1,1,21,22]]],[32,1,1,22,23,[[899,1,1,22,23]]],[33,1,1,23,24,[[900,1,1,23,24]]]],[6152,6257,6347,7572,7863,7866,7868,7901,9360,9361,9383,9576,9628,10084,11742,17632,18288,18322,20063,20185,22366,22498,22678,22688]]]]},{"k":"H3761","v":[["*",[6,6,[[8,2,2,0,2,[[262,1,1,0,1],[265,1,1,1,2]]],[9,3,3,2,5,[[268,1,1,2,3],[269,1,1,3,4],[289,1,1,4,5]]],[12,1,1,5,6,[[348,1,1,5,6]]]],[7933,7983,8051,8084,8688,10710]]],["Carmelite",[5,5,[[8,1,1,0,1,[[265,1,1,0,1]]],[9,3,3,1,4,[[268,1,1,1,2],[269,1,1,2,3],[289,1,1,3,4]]],[12,1,1,4,5,[[348,1,1,4,5]]]],[7983,8051,8084,8688,10710]]],["Carmelitess",[1,1,[[8,1,1,0,1,[[262,1,1,0,1]]]],[7933]]]]},{"k":"H3762","v":[["Carmelitess",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10362]]]]},{"k":"H3763","v":[["Cheran",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1066,10293]]]]},{"k":"H3764","v":[["*",[3,2,[[26,3,2,0,2,[[854,1,1,0,1],[856,2,1,1,2]]]],[21894,21942]]],["throne",[2,2,[[26,2,2,0,2,[[854,1,1,0,1],[856,1,1,1,2]]]],[21894,21942]]],["thrones",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21942]]]]},{"k":"H3765","v":[["waste",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15211]]]]},{"k":"H3766","v":[["*",[36,32,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[6,7,4,2,6,[[215,3,1,2,3],[217,2,2,3,5],[221,2,1,5,6]]],[8,1,1,6,7,[[239,1,1,6,7]]],[9,1,1,7,8,[[288,1,1,7,8]]],[10,2,2,8,10,[[298,1,1,8,9],[309,1,1,9,10]]],[11,2,2,10,12,[[313,1,1,10,11],[321,1,1,11,12]]],[13,2,2,12,14,[[373,1,1,12,13],[395,1,1,13,14]]],[14,1,1,14,15,[[411,1,1,14,15]]],[16,3,2,15,17,[[428,3,2,15,17]]],[17,3,3,17,20,[[439,1,1,17,18],[466,1,1,18,19],[474,1,1,19,20]]],[18,7,7,20,27,[[494,1,1,20,21],[495,1,1,21,22],[497,1,1,22,23],[499,1,1,23,24],[549,1,1,24,25],[555,1,1,25,26],[572,1,1,26,27]]],[22,5,5,27,32,[[688,1,1,27,28],[723,1,1,28,29],[724,2,2,29,31],[743,1,1,31,32]]]],[1482,4455,6650,6699,6700,6864,7316,8642,9039,9405,9546,9780,11327,11820,12242,12749,12752,12934,13598,13837,14116,14157,14190,14233,15009,15144,15460,17854,18584,18587,18588,18909]]],["+",[3,2,[[6,2,1,0,1,[[221,2,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]]],[6864,9039]]],["bow",[4,4,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,2,2,1,3,[[499,1,1,1,2],[549,1,1,2,3]]],[22,1,1,3,4,[[723,1,1,3,4]]]],[13837,14233,15009,18584]]],["bowed",[9,6,[[6,3,1,0,1,[[215,3,1,0,1]]],[10,1,1,1,2,[[309,1,1,1,2]]],[13,2,2,2,4,[[373,1,1,2,3],[395,1,1,3,4]]],[16,3,2,4,6,[[428,3,2,4,6]]]],[6650,9405,11327,11820,12749,12752]]],["couched",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4455]]],["down",[13,13,[[0,1,1,0,1,[[48,1,1,0,1]]],[6,2,2,1,3,[[217,2,2,1,3]]],[11,1,1,3,4,[[321,1,1,3,4]]],[17,1,1,4,5,[[466,1,1,4,5]]],[18,4,4,5,9,[[494,1,1,5,6],[497,1,1,6,7],[555,1,1,7,8],[572,1,1,8,9]]],[22,4,4,9,13,[[688,1,1,9,10],[724,2,2,10,12],[743,1,1,12,13]]]],[1482,6699,6700,9780,13598,14116,14190,15144,15460,17854,18587,18588,18909]]],["feeble",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12934]]],["fell",[2,2,[[11,1,1,0,1,[[313,1,1,0,1]]],[14,1,1,1,2,[[411,1,1,1,2]]]],[9546,12242]]],["herself",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7316]]],["subdued",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8642,14157]]]]},{"k":"H3767","v":[["legs",[9,9,[[1,2,2,0,2,[[61,1,1,0,1],[78,1,1,1,2]]],[2,6,6,2,8,[[90,2,2,2,4],[93,1,1,4,5],[97,1,1,5,6],[98,1,1,6,7],[100,1,1,7,8]]],[29,1,1,8,9,[[881,1,1,8,9]]]],[1825,2353,2754,2758,2806,2938,2967,3018,22407]]]]},{"k":"H3768","v":[["green",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12708]]]]},{"k":"H3769","v":[["*",[2,2,[[9,2,2,0,2,[[272,2,2,0,2]]]],[8171,8173]]],["danced",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8171]]],["dancing",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8173]]]]},{"k":"H3770","v":[["belly",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20246]]]]},{"k":"H3771","v":[["Carshena",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12716]]]]},{"k":"H3772","v":[["*",[287,279,[[0,8,8,0,8,[[8,1,1,0,1],[14,1,1,1,2],[16,1,1,2,3],[20,2,2,3,5],[25,1,1,5,6],[30,1,1,6,7],[40,1,1,7,8]]],[1,14,14,8,22,[[53,1,1,8,9],[57,1,1,9,10],[61,2,2,10,12],[72,1,1,12,13],[73,1,1,13,14],[79,2,2,14,16],[80,1,1,16,17],[83,5,5,17,22]]],[2,20,20,22,42,[[96,4,4,22,26],[106,4,4,26,30],[107,1,1,30,31],[108,1,1,31,32],[109,5,5,32,37],[111,2,2,37,39],[112,1,1,39,40],[115,2,2,40,42]]],[3,10,9,42,51,[[120,1,1,42,43],[125,1,1,43,44],[127,1,1,44,45],[129,2,2,45,47],[131,3,2,47,49],[135,2,2,49,51]]],[4,17,16,51,67,[[156,1,1,51,52],[157,2,2,52,54],[159,1,1,54,55],[161,1,1,55,56],[164,1,1,56,57],[171,2,2,57,59],[172,2,2,59,61],[175,1,1,61,62],[181,5,4,62,66],[183,1,1,66,67]]],[5,13,12,67,79,[[189,2,2,67,69],[190,2,1,69,70],[193,1,1,70,71],[195,5,5,71,76],[197,1,1,76,77],[209,1,1,77,78],[210,1,1,78,79]]],[6,8,8,79,87,[[212,1,1,79,80],[214,1,1,80,81],[216,4,4,81,85],[219,2,2,85,87]]],[7,1,1,87,88,[[235,1,1,87,88]]],[8,17,16,88,104,[[237,1,1,88,89],[240,1,1,89,90],[246,2,2,90,92],[252,1,1,92,93],[253,1,1,93,94],[255,3,2,94,96],[257,1,1,96,97],[258,1,1,97,98],[259,4,4,98,102],[263,1,1,102,103],[266,1,1,103,104]]],[9,8,8,104,112,[[269,4,4,104,108],[271,1,1,108,109],[273,1,1,109,110],[276,1,1,110,111],[286,1,1,111,112]]],[10,17,16,112,128,[[292,1,1,112,113],[295,3,2,113,115],[298,3,3,115,118],[299,2,2,118,120],[301,1,1,120,121],[304,2,2,121,123],[305,1,1,123,124],[308,2,2,124,126],[310,1,1,126,127],[311,1,1,127,128]]],[11,10,10,128,138,[[321,1,1,128,129],[323,2,2,129,131],[329,3,3,131,134],[330,1,1,134,135],[331,1,1,135,136],[335,2,2,136,138]]],[12,4,4,138,142,[[348,1,1,138,139],[353,1,1,139,140],[354,1,1,140,141],[356,1,1,141,142]]],[13,15,14,142,156,[[368,3,3,142,145],[371,1,1,145,146],[372,2,2,146,148],[373,2,1,148,149],[381,1,1,149,150],[387,1,1,150,151],[388,1,1,151,152],[389,2,2,152,154],[395,1,1,154,155],[400,1,1,155,156]]],[14,1,1,156,157,[[412,1,1,156,157]]],[15,2,2,157,159,[[421,2,2,157,159]]],[17,3,3,159,162,[[449,1,1,159,160],[466,1,1,160,161],[476,1,1,161,162]]],[18,14,14,162,176,[[489,1,1,162,163],[511,1,1,163,164],[514,5,5,164,169],[527,1,1,169,170],[560,1,1,170,171],[566,1,1,171,172],[578,1,1,172,173],[582,1,1,173,174],[586,2,2,174,176]]],[19,4,4,176,180,[[629,1,1,176,177],[637,1,1,177,178],[650,1,1,178,179],[651,1,1,179,180]]],[22,18,18,180,198,[[687,1,1,180,181],[688,1,1,181,182],[689,1,1,182,183],[692,2,2,183,185],[696,1,1,185,186],[700,1,1,186,187],[706,1,1,187,188],[707,1,1,188,189],[715,1,1,189,190],[722,1,1,190,191],[726,2,2,191,193],[733,2,2,193,195],[734,1,1,195,196],[735,1,1,196,197],[739,1,1,197,198]]],[23,27,26,198,224,[[750,1,1,198,199],[751,1,1,199,200],[753,1,1,200,201],[754,1,1,201,202],[755,2,2,202,204],[766,1,1,204,205],[775,3,3,205,208],[776,1,1,208,209],[777,2,2,209,211],[778,5,4,211,215],[779,1,1,215,216],[788,3,3,216,219],[790,1,1,219,220],[791,1,1,220,221],[792,1,1,221,222],[794,1,1,222,223],[795,1,1,223,224]]],[25,19,19,224,243,[[815,5,5,224,229],[817,1,1,229,230],[818,2,2,230,232],[822,2,2,232,234],[826,3,3,234,237],[830,1,1,237,238],[831,1,1,238,239],[832,1,1,239,240],[835,1,1,240,241],[836,1,1,241,242],[838,1,1,242,243]]],[26,1,1,243,244,[[858,1,1,243,244]]],[27,4,4,244,248,[[863,1,1,244,245],[869,1,1,245,246],[871,1,1,246,247],[873,1,1,247,248]]],[28,3,3,248,251,[[876,3,3,248,251]]],[29,3,3,251,254,[[879,2,2,251,253],[880,1,1,253,254]]],[30,3,3,254,257,[[888,3,3,254,257]]],[32,5,5,257,262,[[897,5,5,257,262]]],[33,4,4,262,266,[[900,2,2,262,264],[901,1,1,264,265],[902,1,1,265,266]]],[35,5,5,266,271,[[906,3,3,266,269],[908,2,2,269,271]]],[36,1,1,271,272,[[910,1,1,271,272]]],[37,7,6,272,278,[[919,3,2,272,274],[921,1,1,274,275],[923,2,2,275,277],[924,1,1,277,278]]],[38,1,1,278,279,[[926,1,1,278,279]]]],[216,378,411,540,545,720,917,1231,1626,1719,1831,1835,2176,2185,2415,2420,2434,2506,2508,2509,2511,2523,2899,2900,2904,2906,3239,3244,3245,3249,3280,3289,3321,3323,3324,3335,3336,3372,3393,3431,3546,3554,3761,3978,4057,4098,4099,4183,4184,4302,4309,5027,5055,5056,5113,5166,5269,5407,5411,5446,5447,5501,5680,5691,5693,5704,5744,5906,5909,5917,5985,6043,6044,6048,6053,6060,6128,6464,6501,6547,6623,6679,6680,6682,6684,6802,6803,7200,7273,7323,7446,7447,7669,7679,7745,7746,7795,7828,7843,7844,7850,7860,7951,8018,8093,8094,8102,8110,8135,8189,8244,8576,8774,8884,8890,8994,9006,9010,9056,9058,9124,9228,9232,9262,9345,9346,9442,9472,9764,9833,9846,9998,10018,10021,10028,10084,10168,10179,10676,10836,10871,10911,11219,11221,11227,11278,11293,11298,11342,11506,11631,11651,11659,11672,11801,11964,12255,12519,12549,13188,13589,13892,14069,14404,14459,14472,14478,14484,14488,14673,15246,15329,15521,15615,15768,15770,16455,16687,17062,17093,17843,17857,17897,17936,17950,18002,18077,18179,18213,18376,18547,18623,18633,18743,18753,18758,18773,18851,19095,19147,19196,19204,19236,19245,19461,19722,19723,19724,19771,19792,19793,19809,19814,19816,19819,19842,20017,20018,20021,20068,20077,20082,20182,20274,20739,20744,20748,20750,20752,20766,20838,20842,20947,20948,21090,21096,21099,21191,21219,21242,21338,21351,21423,22014,22123,22198,22229,22253,22296,22300,22307,22369,22372,22382,22519,22520,22524,22642,22643,22644,22645,22646,22698,22699,22712,22727,22790,22791,22798,22826,22827,22860,23005,23009,23038,23061,23067,23070,23115]]],["+",[52,50,[[1,1,1,0,1,[[53,1,1,0,1]]],[2,6,6,1,7,[[106,1,1,1,2],[109,3,3,2,5],[115,2,2,5,7]]],[3,3,2,7,9,[[120,1,1,7,8],[131,2,1,8,9]]],[4,4,4,9,13,[[164,1,1,9,10],[171,1,1,10,11],[172,1,1,11,12],[181,1,1,12,13]]],[5,2,2,13,15,[[193,1,1,13,14],[197,1,1,14,15]]],[6,1,1,15,16,[[214,1,1,15,16]]],[8,9,8,16,24,[[252,1,1,16,17],[255,2,1,17,18],[259,4,4,18,22],[263,1,1,22,23],[266,1,1,23,24]]],[9,3,3,24,27,[[273,1,1,24,25],[276,1,1,25,26],[286,1,1,26,27]]],[10,5,5,27,32,[[295,1,1,27,28],[299,1,1,28,29],[304,1,1,29,30],[305,1,1,30,31],[308,1,1,31,32]]],[11,4,4,32,36,[[323,1,1,32,33],[330,1,1,33,34],[335,2,2,34,36]]],[12,2,2,36,38,[[354,1,1,36,37],[356,1,1,37,38]]],[13,3,3,38,41,[[381,1,1,38,39],[388,1,1,39,40],[400,1,1,40,41]]],[18,1,1,41,42,[[560,1,1,41,42]]],[22,1,1,42,43,[[726,1,1,42,43]]],[23,1,1,43,44,[[788,1,1,43,44]]],[25,2,2,44,46,[[826,1,1,44,45],[831,1,1,45,46]]],[30,1,1,46,47,[[888,1,1,46,47]]],[35,2,2,47,49,[[906,2,2,47,49]]],[37,1,1,49,50,[[923,1,1,49,50]]]],[1626,3245,3321,3323,3324,3546,3554,3761,4184,5269,5407,5446,5693,5985,6128,6623,7669,7745,7843,7844,7850,7860,7951,8018,8189,8244,8576,8890,9058,9232,9262,9345,9846,10028,10168,10179,10871,10911,11506,11651,11964,15246,18623,20021,21099,21219,22524,22790,22791,23061]]],["Make",[2,2,[[8,1,1,0,1,[[246,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]]],[7446,8093]]],["chewed",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4057]]],["covenanted",[2,2,[[13,1,1,0,1,[[373,1,1,0,1]]],[36,1,1,1,2,[[910,1,1,1,2]]]],[11342,22860]]],["cut",[6,6,[[2,1,1,0,1,[[111,1,1,0,1]]],[13,3,3,1,4,[[368,3,3,1,4]]],[23,1,1,4,5,[[778,1,1,4,5]]],[25,1,1,5,6,[[817,1,1,5,6]]]],[3393,11219,11221,11227,19819,20766]]],["cutteth",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19204]]],["destroy",[1,1,[[1,1,1,0,1,[[57,1,1,0,1]]]],[1719]]],["down",[18,18,[[1,1,1,0,1,[[83,1,1,0,1]]],[3,2,2,1,3,[[129,2,2,1,3]]],[4,2,2,3,5,[[171,1,1,3,4],[172,1,1,4,5]]],[6,6,6,5,11,[[216,4,4,5,9],[219,2,2,9,11]]],[11,1,1,11,12,[[331,1,1,11,12]]],[17,1,1,12,13,[[449,1,1,12,13]]],[22,2,2,13,15,[[715,1,1,13,14],[722,1,1,14,15]]],[23,3,3,15,18,[[750,1,1,15,16],[766,1,1,16,17],[790,1,1,17,18]]]],[2509,4098,4099,5411,5447,6679,6680,6682,6684,6802,6803,10084,13188,18376,18547,19095,19461,20068]]],["fail",[6,6,[[9,1,1,0,1,[[269,1,1,0,1]]],[10,3,3,1,4,[[292,1,1,1,2],[298,1,1,2,3],[299,1,1,3,4]]],[13,2,2,4,6,[[372,1,1,4,5],[373,1,1,5,6]]]],[8110,8774,9010,9056,11298,11342]]],["feller",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17936]]],["freed",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6060]]],["hew",[2,1,[[10,2,1,0,1,[[295,2,1,0,1]]]],[8884]]],["league",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7795]]],["lose",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9346]]],["made",[46,46,[[0,3,3,0,3,[[14,1,1,0,1],[20,2,2,1,3]]],[1,2,2,3,5,[[73,1,1,3,4],[83,1,1,4,5]]],[4,7,7,5,12,[[156,1,1,5,6],[157,2,2,6,8],[161,1,1,8,9],[181,2,2,9,11],[183,1,1,11,12]]],[5,2,2,12,14,[[195,1,1,12,13],[210,1,1,13,14]]],[8,3,3,14,17,[[253,1,1,14,15],[255,1,1,15,16],[258,1,1,16,17]]],[9,1,1,17,18,[[271,1,1,17,18]]],[10,3,3,18,21,[[298,2,2,18,20],[310,1,1,20,21]]],[11,4,4,21,25,[[323,1,1,21,22],[329,3,3,22,25]]],[12,2,2,25,27,[[348,1,1,25,26],[353,1,1,26,27]]],[13,5,5,27,32,[[371,1,1,27,28],[372,1,1,28,29],[387,1,1,29,30],[389,2,2,30,32]]],[17,1,1,32,33,[[466,1,1,32,33]]],[18,3,3,33,36,[[527,1,1,33,34],[566,1,1,34,35],[582,1,1,35,36]]],[22,2,2,36,38,[[706,1,1,36,37],[735,1,1,37,38]]],[23,6,6,38,44,[[755,1,1,38,39],[775,1,1,39,40],[778,4,4,40,44]]],[25,1,1,44,45,[[818,1,1,44,45]]],[37,1,1,45,46,[[921,1,1,45,46]]]],[378,540,545,2185,2523,5027,5055,5056,5166,5680,5704,5744,6053,6501,7679,7746,7828,8135,8994,9006,9442,9833,9998,10018,10021,10676,10836,11278,11293,11631,11659,11672,13589,14673,15329,15615,18179,18773,19236,19723,19809,19814,19816,19819,20838,23038]]],["madest",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12519]]],["make",[28,28,[[0,2,2,0,2,[[25,1,1,0,1],[30,1,1,1,2]]],[1,4,4,2,6,[[72,1,1,2,3],[83,3,3,3,6]]],[4,2,2,6,8,[[159,1,1,6,7],[181,1,1,7,8]]],[5,3,3,8,11,[[195,3,3,8,11]]],[6,1,1,11,12,[[212,1,1,11,12]]],[8,1,1,12,13,[[246,1,1,12,13]]],[9,2,2,13,15,[[269,2,2,13,15]]],[13,1,1,15,16,[[395,1,1,15,16]]],[14,1,1,16,17,[[412,1,1,16,17]]],[15,1,1,17,18,[[421,1,1,17,18]]],[17,1,1,18,19,[[476,1,1,18,19]]],[22,2,2,19,21,[[733,1,1,19,20],[739,1,1,20,21]]],[23,3,3,21,24,[[775,2,2,21,23],[776,1,1,23,24]]],[25,2,2,24,26,[[835,1,1,24,25],[838,1,1,25,26]]],[27,2,2,26,28,[[863,1,1,26,27],[873,1,1,27,28]]]],[720,917,2176,2506,2508,2511,5113,5680,6043,6044,6048,6547,7447,8094,8102,11801,12255,12549,13892,18743,18851,19722,19724,19771,21338,21423,22123,22253]]],["maketh",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5691]]],["making",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22229]]],["off",[110,108,[[0,2,2,0,2,[[8,1,1,0,1],[16,1,1,1,2]]],[1,5,5,2,7,[[61,2,2,2,4],[79,2,2,4,6],[80,1,1,6,7]]],[2,13,13,7,20,[[96,4,4,7,11],[106,3,3,11,14],[107,1,1,14,15],[108,1,1,15,16],[109,2,2,16,18],[111,1,1,18,19],[112,1,1,19,20]]],[3,4,4,20,24,[[125,1,1,20,21],[131,1,1,21,22],[135,2,2,22,24]]],[4,1,1,24,25,[[175,1,1,24,25]]],[5,5,4,25,29,[[189,2,2,25,27],[190,2,1,27,28],[209,1,1,28,29]]],[7,1,1,29,30,[[235,1,1,29,30]]],[8,2,2,30,32,[[237,1,1,30,31],[240,1,1,31,32]]],[10,3,3,32,35,[[301,1,1,32,33],[304,1,1,33,34],[311,1,1,34,35]]],[11,1,1,35,36,[[321,1,1,35,36]]],[18,10,10,36,46,[[489,1,1,36,37],[511,1,1,37,38],[514,5,5,38,43],[578,1,1,43,44],[586,2,2,44,46]]],[19,3,3,46,49,[[629,1,1,46,47],[650,1,1,47,48],[651,1,1,48,49]]],[22,10,10,49,59,[[687,1,1,49,50],[688,1,1,50,51],[689,1,1,51,52],[692,1,1,52,53],[696,1,1,53,54],[700,1,1,54,55],[707,1,1,55,56],[726,1,1,56,57],[733,1,1,57,58],[734,1,1,58,59]]],[23,9,9,59,68,[[751,1,1,59,60],[753,1,1,60,61],[755,1,1,61,62],[788,2,2,62,64],[791,1,1,64,65],[792,1,1,65,66],[794,1,1,66,67],[795,1,1,67,68]]],[25,13,13,68,81,[[815,5,5,68,73],[818,1,1,73,74],[822,2,2,74,76],[826,2,2,76,78],[830,1,1,78,79],[832,1,1,79,80],[836,1,1,80,81]]],[26,1,1,81,82,[[858,1,1,81,82]]],[27,1,1,82,83,[[869,1,1,82,83]]],[28,3,3,83,86,[[876,3,3,83,86]]],[29,3,3,86,89,[[879,2,2,86,88],[880,1,1,88,89]]],[30,2,2,89,91,[[888,2,2,89,91]]],[32,5,5,91,96,[[897,5,5,91,96]]],[33,4,4,96,100,[[900,2,2,96,98],[901,1,1,98,99],[902,1,1,99,100]]],[35,3,3,100,103,[[906,1,1,100,101],[908,2,2,101,103]]],[37,5,4,103,107,[[919,3,2,103,105],[923,1,1,105,106],[924,1,1,106,107]]],[38,1,1,107,108,[[926,1,1,107,108]]]],[216,411,1831,1835,2415,2420,2434,2899,2900,2904,2906,3239,3244,3249,3280,3289,3335,3336,3372,3431,3978,4183,4302,4309,5501,5906,5909,5917,6464,7200,7273,7323,9124,9228,9472,9764,14069,14404,14459,14472,14478,14484,14488,15521,15768,15770,16455,17062,17093,17843,17857,17897,17950,18002,18077,18213,18633,18753,18758,19147,19196,19245,20017,20018,20077,20082,20182,20274,20739,20744,20748,20750,20752,20842,20947,20948,21090,21096,21191,21242,21351,22014,22198,22296,22300,22307,22369,22372,22382,22519,22520,22642,22643,22644,22645,22646,22698,22699,22712,22727,22798,22826,22827,23005,23009,23067,23070,23115]]],["out",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16687]]],["perish",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1231]]],["want",[3,3,[[23,3,3,0,3,[[777,2,2,0,2],[779,1,1,2,3]]]],[19792,19793,19842]]]]},{"k":"H3773","v":[["beams",[3,3,[[10,3,3,0,3,[[296,1,1,0,1],[297,2,2,1,3]]]],[8932,8936,8946]]]]},{"k":"H3774","v":[["*",[10,10,[[8,1,1,0,1,[[265,1,1,0,1]]],[9,4,4,1,5,[[274,1,1,1,2],[281,1,1,2,3],[286,2,2,3,5]]],[10,2,2,5,7,[[291,2,2,5,7]]],[12,1,1,7,8,[[355,1,1,7,8]]],[25,1,1,8,9,[[826,1,1,8,9]]],[35,1,1,9,10,[[907,1,1,9,10]]]],[7992,8227,8407,8561,8577,8755,8761,10907,21099,22810]]],["Cherethims",[1,1,[[25,1,1,0,1,[[826,1,1,0,1]]]],[21099]]],["Cherethites",[9,9,[[8,1,1,0,1,[[265,1,1,0,1]]],[9,4,4,1,5,[[274,1,1,1,2],[281,1,1,2,3],[286,2,2,3,5]]],[10,2,2,5,7,[[291,2,2,5,7]]],[12,1,1,7,8,[[355,1,1,7,8]]],[35,1,1,8,9,[[907,1,1,8,9]]]],[7992,8227,8407,8561,8577,8755,8761,10907,22810]]]]},{"k":"H3775","v":[["*",[13,13,[[0,4,4,0,4,[[29,4,4,0,4]]],[2,7,7,4,11,[[90,1,1,4,5],[92,1,1,5,6],[93,1,1,6,7],[96,1,1,7,8],[106,1,1,8,9],[111,2,2,9,11]]],[3,1,1,11,12,[[134,1,1,11,12]]],[4,1,1,12,13,[[166,1,1,12,13]]]],[862,863,865,870,2755,2785,2830,2902,3238,3388,3396,4274,5294]]],["+",[2,2,[[2,1,1,0,1,[[92,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[2785,5294]]],["lamb",[2,2,[[2,2,2,0,2,[[93,1,1,0,1],[106,1,1,1,2]]]],[2830,3238]]],["lambs",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[870]]],["sheep",[8,8,[[0,3,3,0,3,[[29,3,3,0,3]]],[2,4,4,3,7,[[90,1,1,3,4],[96,1,1,4,5],[111,2,2,5,7]]],[3,1,1,7,8,[[134,1,1,7,8]]]],[862,863,865,2755,2902,3388,3396,4274]]]]},{"k":"H3776","v":[["lamb",[1,1,[[2,1,1,0,1,[[94,1,1,0,1]]]],[2836]]]]},{"k":"H3777","v":[["Chesed",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[569]]]]},{"k":"H3778","v":[["*",[81,81,[[0,3,3,0,3,[[10,2,2,0,2],[14,1,1,2,3]]],[11,8,8,3,11,[[336,1,1,3,4],[337,7,7,4,11]]],[13,2,2,11,13,[[397,1,1,11,12],[402,1,1,12,13]]],[15,1,1,13,14,[[421,1,1,13,14]]],[17,1,1,14,15,[[436,1,1,14,15]]],[22,7,7,15,22,[[691,1,1,15,16],[701,1,1,16,17],[721,1,1,17,18],[725,2,2,18,20],[726,2,2,20,22]]],[23,46,46,22,68,[[765,2,2,22,24],[766,1,1,24,25],[768,1,1,25,26],[769,1,1,26,27],[776,7,7,27,34],[777,1,1,34,35],[779,1,1,35,36],[781,7,7,36,43],[782,4,4,43,47],[783,2,2,47,49],[784,2,2,49,51],[785,2,2,51,53],[787,1,1,53,54],[794,6,6,54,60],[795,4,4,60,64],[796,4,4,64,68]]],[25,8,8,68,76,[[802,1,1,68,69],[812,1,1,69,70],[813,1,1,70,71],[817,1,1,71,72],[824,4,4,72,76]]],[26,4,4,76,80,[[850,1,1,76,77],[851,2,2,77,79],[858,1,1,79,80]]],[34,1,1,80,81,[[903,1,1,80,81]]]],[294,297,367,10204,10226,10227,10232,10235,10246,10247,10248,11868,12010,12518,12886,17925,18090,18519,18600,18604,18628,18634,19444,19449,19479,19529,19546,19735,19736,19755,19756,19759,19760,19774,19780,19834,19879,19882,19883,19884,19885,19887,19888,19897,19913,19914,19918,19928,19931,19950,19951,19960,19975,20000,20167,20174,20176,20191,20201,20211,20216,20236,20247,20266,20283,20284,20290,20293,20467,20679,20693,20791,21021,21022,21023,21030,21741,21760,21762,21989,22737]]],["+",[2,2,[[22,1,1,0,1,[[726,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[18634,20236]]],["Chaldea",[6,6,[[23,2,2,0,2,[[794,1,1,0,1],[795,1,1,1,2]]],[25,4,4,2,6,[[812,1,1,2,3],[817,1,1,3,4],[824,2,2,4,6]]]],[20176,20247,20679,20791,21022,21023]]],["Chaldeans",[57,57,[[17,1,1,0,1,[[436,1,1,0,1]]],[22,5,5,1,6,[[701,1,1,1,2],[721,1,1,2,3],[725,2,2,3,5],[726,1,1,5,6]]],[23,42,42,6,48,[[765,2,2,6,8],[766,1,1,8,9],[768,1,1,9,10],[769,1,1,10,11],[776,7,7,11,18],[777,1,1,18,19],[779,1,1,19,20],[781,7,7,20,27],[782,4,4,27,31],[783,1,1,31,32],[784,2,2,32,34],[785,2,2,34,36],[787,1,1,36,37],[794,5,5,37,42],[795,2,2,42,44],[796,4,4,44,48]]],[25,4,4,48,52,[[802,1,1,48,49],[813,1,1,49,50],[824,2,2,50,52]]],[26,4,4,52,56,[[850,1,1,52,53],[851,2,2,53,55],[858,1,1,55,56]]],[34,1,1,56,57,[[903,1,1,56,57]]]],[12886,18090,18519,18600,18604,18628,19444,19449,19479,19529,19546,19735,19736,19755,19756,19759,19760,19774,19780,19834,19879,19882,19883,19884,19885,19887,19888,19897,19913,19914,19918,19931,19950,19951,19960,19975,20000,20167,20174,20191,20201,20211,20216,20266,20283,20284,20290,20293,20467,20693,21021,21030,21741,21760,21762,21989,22737]]],["Chaldeans'",[1,1,[[23,1,1,0,1,[[783,1,1,0,1]]]],[19928]]],["Chaldees",[13,13,[[0,3,3,0,3,[[10,2,2,0,2],[14,1,1,2,3]]],[11,8,8,3,11,[[336,1,1,3,4],[337,7,7,4,11]]],[13,1,1,11,12,[[402,1,1,11,12]]],[15,1,1,12,13,[[421,1,1,12,13]]]],[294,297,367,10204,10226,10227,10232,10235,10246,10247,10248,12010,12518]]],["Chaldees'",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17925]]],["Levite",[1,1,[[13,1,1,0,1,[[397,1,1,0,1]]]],[11868]]]]},{"k":"H3779","v":[["*",[8,7,[[26,8,7,0,7,[[851,3,2,0,2],[852,1,1,2,3],[853,1,1,3,4],[854,3,3,4,7]]]],[21763,21768,21815,21844,21881,21885,21904]]],["Chaldean",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21768]]],["Chaldeans",[7,7,[[26,7,7,0,7,[[851,2,2,0,2],[852,1,1,2,3],[853,1,1,3,4],[854,3,3,4,7]]]],[21763,21768,21815,21844,21881,21885,21904]]]]},{"k":"H3780","v":[["covered",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5773]]]]},{"k":"H3781","v":[["axes",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15054]]]]},{"k":"H3782","v":[["*",[62,58,[[2,1,1,0,1,[[115,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[13,4,3,2,5,[[391,2,1,2,3],[394,2,2,3,5]]],[15,1,1,5,6,[[416,1,1,5,6]]],[17,1,1,6,7,[[439,1,1,6,7]]],[18,7,7,7,14,[[486,1,1,7,8],[504,1,1,8,9],[508,1,1,9,10],[541,1,1,10,11],[582,1,1,11,12],[584,1,1,12,13],[586,1,1,13,14]]],[19,5,5,14,19,[[631,3,3,14,17],[651,2,2,17,19]]],[22,11,10,19,29,[[681,1,1,19,20],[683,1,1,20,21],[686,1,1,21,22],[706,1,1,22,23],[709,1,1,23,24],[713,1,1,24,25],[718,2,1,25,26],[737,2,2,26,28],[741,1,1,28,29]]],[23,11,11,29,40,[[750,2,2,29,31],[752,1,1,31,32],[762,2,2,32,34],[764,1,1,34,35],[775,1,1,35,36],[790,3,3,36,39],[794,1,1,39,40]]],[24,2,2,40,42,[[797,1,1,40,41],[801,1,1,41,42]]],[25,2,2,42,44,[[834,1,1,42,43],[837,1,1,43,44]]],[26,6,6,44,50,[[860,6,6,44,50]]],[27,6,4,50,54,[[865,2,1,50,51],[866,2,1,51,52],[875,2,2,52,54]]],[33,2,2,54,56,[[901,1,1,54,55],[902,1,1,55,56]]],[37,1,1,56,57,[[922,1,1,56,57]]],[38,1,1,57,58,[[926,1,1,57,58]]]],[3561,7244,11712,11779,11787,12369,12934,14024,14287,14341,14858,15643,15711,15779,16502,16506,16509,17095,17096,17715,17766,17822,18177,18253,18323,18450,18810,18814,18879,19104,19110,19165,19399,19407,19433,19700,20051,20057,20061,20198,20324,20455,21292,21374,22050,22055,22069,22070,22071,22077,22138,22157,22283,22291,22704,22715,23053,23111]]],["+",[3,2,[[22,2,1,0,1,[[718,2,1,0,1]]],[38,1,1,1,2,[[926,1,1,1,2]]]],[18450,23111]]],["decayed",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12369]]],["down",[4,4,[[13,1,1,0,1,[[391,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]],[23,2,2,2,4,[[750,1,1,2,3],[752,1,1,3,4]]]],[11712,15711,19104,19165]]],["faileth",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14341]]],["fall",[22,20,[[2,1,1,0,1,[[115,1,1,0,1]]],[13,1,1,1,2,[[391,1,1,1,2]]],[18,2,2,2,4,[[486,1,1,2,3],[541,1,1,3,4]]],[19,2,2,4,6,[[631,1,1,4,5],[651,1,1,5,6]]],[22,2,2,6,8,[[706,1,1,6,7],[709,1,1,7,8]]],[23,2,2,8,10,[[750,1,1,8,9],[790,1,1,9,10]]],[24,1,1,10,11,[[797,1,1,10,11]]],[25,2,2,11,13,[[834,1,1,11,12],[837,1,1,12,13]]],[26,4,4,13,17,[[860,4,4,13,17]]],[27,5,3,17,20,[[865,2,1,17,18],[866,2,1,18,19],[875,1,1,19,20]]]],[3561,11712,14024,14858,16506,17095,18177,18253,19110,20061,20324,21292,21374,22050,22069,22070,22071,22138,22157,22291]]],["fallen",[2,2,[[22,1,1,0,1,[[737,1,1,0,1]]],[27,1,1,1,2,[[875,1,1,1,2]]]],[18814,22283]]],["falling",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12934]]],["feeble",[4,4,[[13,1,1,0,1,[[394,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]],[22,1,1,2,3,[[713,1,1,2,3]]],[37,1,1,3,4,[[922,1,1,3,4]]]],[11779,15643,18323,23053]]],["fell",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20455]]],["overthrown",[2,2,[[23,1,1,0,1,[[762,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[19407,22077]]],["ruin",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11787]]],["ruined",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17715]]],["stumble",[14,14,[[19,2,2,0,2,[[631,2,2,0,2]]],[22,4,4,2,6,[[683,1,1,2,3],[686,1,1,3,4],[737,1,1,4,5],[741,1,1,5,6]]],[23,5,5,6,11,[[762,1,1,6,7],[764,1,1,7,8],[775,1,1,8,9],[790,1,1,9,10],[794,1,1,10,11]]],[26,1,1,11,12,[[860,1,1,11,12]]],[33,2,2,12,14,[[901,1,1,12,13],[902,1,1,13,14]]]],[16502,16509,17766,17822,18810,18879,19399,19433,19700,20051,20198,22055,22704,22715]]],["stumbled",[3,3,[[8,1,1,0,1,[[237,1,1,0,1]]],[18,1,1,1,2,[[504,1,1,1,2]]],[23,1,1,2,3,[[790,1,1,2,3]]]],[7244,14287,20057]]],["stumbleth",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17096]]],["weak",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15779]]]]},{"k":"H3783","v":[["fall",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16858]]]]},{"k":"H3784","v":[["*",[6,6,[[1,2,2,0,2,[[56,1,1,0,1],[71,1,1,1,2]]],[4,1,1,2,3,[[170,1,1,2,3]]],[13,1,1,3,4,[[399,1,1,3,4]]],[26,1,1,4,5,[[851,1,1,4,5]]],[38,1,1,5,6,[[927,1,1,5,6]]]],[1696,2131,5394,11914,21760,23125]]],["+",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2131]]],["sorcerers",[3,3,[[1,1,1,0,1,[[56,1,1,0,1]]],[26,1,1,1,2,[[851,1,1,1,2]]],[38,1,1,2,3,[[927,1,1,2,3]]]],[1696,21760,23125]]],["witch",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5394]]],["witchcraft",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11914]]]]},{"k":"H3785","v":[["*",[6,5,[[11,1,1,0,1,[[321,1,1,0,1]]],[22,2,2,1,3,[[725,2,2,1,3]]],[32,1,1,3,4,[[897,1,1,3,4]]],[33,2,1,4,5,[[902,2,1,4,5]]]],[9778,18608,18611,22645,22716]]],["sorceries",[2,2,[[22,2,2,0,2,[[725,2,2,0,2]]]],[18608,18611]]],["witchcrafts",[4,3,[[11,1,1,0,1,[[321,1,1,0,1]]],[32,1,1,1,2,[[897,1,1,1,2]]],[33,2,1,2,3,[[902,2,1,2,3]]]],[9778,22645,22716]]]]},{"k":"H3786","v":[["sorcerers",[1,1,[[23,1,1,0,1,[[771,1,1,0,1]]]],[19605]]]]},{"k":"H3787","v":[["*",[3,3,[[16,1,1,0,1,[[433,1,1,0,1]]],[20,2,2,1,3,[[668,1,1,1,2],[669,1,1,2,3]]]],[12822,17503,17519]]],["direct",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17503]]],["prosper",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17519]]],["right",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12822]]]]},{"k":"H3788","v":[["*",[3,3,[[20,3,3,0,3,[[660,1,1,0,1],[662,1,1,1,2],[663,1,1,2,3]]]],[17354,17385,17408]]],["equity",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17354]]],["good",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17408]]],["right",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17385]]]]},{"k":"H3789","v":[["*",[223,212,[[1,11,10,0,10,[[66,1,1,0,1],[73,2,2,1,3],[80,1,1,3,4],[81,3,2,4,6],[83,3,3,6,9],[88,1,1,9,10]]],[3,5,5,10,15,[[121,1,1,10,11],[127,1,1,11,12],[133,2,2,12,14],[149,1,1,14,15]]],[4,22,22,15,37,[[156,1,1,15,16],[157,1,1,16,17],[158,1,1,17,18],[161,1,1,18,19],[162,2,2,19,21],[163,1,1,21,22],[169,1,1,22,23],[176,2,2,23,25],[179,2,2,25,27],[180,2,2,27,29],[181,3,3,29,32],[182,1,1,32,33],[183,4,4,33,37]]],[5,13,11,37,48,[[187,1,1,37,38],[194,4,3,38,41],[196,1,1,41,42],[204,5,4,42,46],[209,1,1,46,47],[210,1,1,47,48]]],[6,1,1,48,49,[[218,1,1,48,49]]],[8,1,1,49,50,[[245,1,1,49,50]]],[9,3,3,50,53,[[267,1,1,50,51],[277,2,2,51,53]]],[10,16,16,53,69,[[292,1,1,53,54],[301,1,1,54,55],[304,2,2,55,57],[305,3,3,57,60],[306,4,4,60,64],[311,3,3,64,67],[312,2,2,67,69]]],[11,30,30,69,99,[[313,1,1,69,70],[320,1,1,70,71],[322,3,3,71,74],[324,1,1,74,75],[325,2,2,75,77],[326,4,4,77,81],[327,7,7,81,88],[328,1,1,88,89],[329,1,1,89,90],[332,1,1,90,91],[333,2,2,91,93],[334,1,1,93,94],[335,4,4,94,98],[336,1,1,98,99]]],[12,5,5,99,104,[[341,1,1,99,100],[346,1,1,100,101],[353,1,1,101,102],[361,1,1,102,103],[366,1,1,103,104]]],[13,27,27,104,131,[[375,1,1,104,105],[378,1,1,105,106],[379,1,1,106,107],[382,1,1,107,108],[386,1,1,108,109],[389,1,1,109,110],[390,1,1,110,111],[391,2,2,111,113],[392,1,1,113,114],[393,1,1,114,115],[394,1,1,115,116],[396,3,3,116,119],[397,1,1,119,120],[398,2,2,120,122],[399,1,1,122,123],[400,3,3,123,126],[401,4,4,126,130],[402,1,1,130,131]]],[14,6,5,131,136,[[405,2,2,131,133],[406,3,2,133,135],[410,1,1,135,136]]],[15,10,10,136,146,[[418,1,1,136,137],[419,1,1,137,138],[420,2,2,138,140],[421,1,1,140,141],[422,2,2,141,143],[424,2,2,143,145],[425,1,1,145,146]]],[16,17,14,146,160,[[426,1,1,146,147],[427,1,1,147,148],[428,3,2,148,150],[431,1,1,150,151],[433,6,4,151,155],[434,4,4,155,159],[435,1,1,159,160]]],[17,3,3,160,163,[[448,1,1,160,161],[454,1,1,161,162],[466,1,1,162,163]]],[18,6,6,163,169,[[517,1,1,163,164],[546,1,1,164,165],[564,1,1,165,166],[579,1,1,166,167],[616,1,1,167,168],[626,1,1,168,169]]],[19,3,3,169,172,[[630,1,1,169,170],[634,1,1,170,171],[649,1,1,171,172]]],[20,1,1,172,173,[[670,1,1,172,173]]],[22,8,7,173,180,[[682,1,1,173,174],[686,1,1,174,175],[688,3,2,175,177],[708,1,1,177,178],[722,1,1,178,179],[743,1,1,179,180]]],[23,21,20,180,200,[[761,2,2,180,182],[766,1,1,182,183],[769,1,1,183,184],[774,1,1,184,185],[775,1,1,185,186],[776,3,3,186,189],[780,9,9,189,198],[789,1,1,198,199],[795,2,1,199,200]]],[25,8,6,200,206,[[803,2,1,200,201],[814,1,1,201,202],[825,1,1,202,203],[838,3,2,203,205],[844,1,1,205,206]]],[26,3,3,206,209,[[858,2,2,206,208],[861,1,1,208,209]]],[27,1,1,209,210,[[869,1,1,209,210]]],[34,1,1,210,211,[[904,1,1,210,211]]],[38,1,1,211,212,[[927,1,1,211,212]]]],[1997,2181,2189,2438,2453,2470,2497,2523,2524,2694,3815,4050,4246,4247,4762,5017,5075,5095,5167,5188,5190,5228,5382,5526,5528,5588,5593,5669,5672,5699,5700,5706,5718,5737,5747,5750,5752,5859,6033,6034,6036,6077,6297,6299,6301,6302,6466,6502,6733,7443,8040,8273,8274,8773,9149,9237,9247,9256,9272,9280,9288,9297,9303,9310,9459,9460,9462,9519,9525,9551,9750,9794,9799,9827,9869,9879,9883,9902,9911,9914,9924,9931,9936,9940,9946,9951,9956,9961,9982,10020,10118,10136,10144,10158,10168,10186,10189,10193,10207,10426,10616,10860,11021,11193,11393,11452,11475,11520,11621,11674,11704,11708,11730,11754,11762,11790,11828,11832,11845,11857,11892,11907,11927,11954,11957,11964,11978,11991,11992,11993,12001,12099,12101,12116,12117,12235,12407,12425,12507,12508,12549,12583,12585,12646,12647,12672,12721,12747,12756,12759,12795,12822,12825,12826,12827,12854,12857,12863,12866,12868,13179,13320,13623,14532,14963,15307,15539,16255,16394,16458,16578,17035,17533,17736,17808,17851,17869,18225,18538,18903,19358,19370,19484,19547,19669,19724,19741,19743,19775,19844,19846,19848,19859,19860,19869,19870,19871,19874,20041,20272,20502,20717,21058,21413,21417,21583,21999,22001,22082,22206,22750,23136]]],["+",[11,11,[[1,1,1,0,1,[[73,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]],[4,4,4,2,6,[[183,4,4,2,6]]],[5,2,2,6,8,[[204,2,2,6,8]]],[16,1,1,8,9,[[434,1,1,8,9]]],[23,2,2,9,11,[[780,1,1,9,10],[789,1,1,10,11]]]],[2181,4762,5737,5747,5750,5752,6299,6301,12854,19859,20041]]],["Write",[6,6,[[1,2,2,0,2,[[66,1,1,0,1],[83,1,1,1,2]]],[16,1,1,2,3,[[433,1,1,2,3]]],[23,2,2,3,5,[[766,1,1,3,4],[774,1,1,4,5]]],[34,1,1,5,6,[[904,1,1,5,6]]]],[1997,2523,12825,19484,19669,22750]]],["describe",[2,2,[[5,2,2,0,2,[[204,2,2,0,2]]]],[6297,6301]]],["described",[2,2,[[5,1,1,0,1,[[204,1,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]]],[6302,6733]]],["prescribed",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17851]]],["recorded",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12646]]],["subscribe",[2,2,[[22,1,1,0,1,[[722,1,1,0,1]]],[23,1,1,1,2,[[776,1,1,1,2]]]],[18538,19775]]],["subscribed",[2,2,[[23,2,2,0,2,[[776,2,2,0,2]]]],[19741,19743]]],["up",[1,1,[[18,1,1,0,1,[[564,1,1,0,1]]]],[15307]]],["write",[27,26,[[1,1,1,0,1,[[83,1,1,0,1]]],[3,3,3,1,4,[[121,1,1,1,2],[133,2,2,2,4]]],[4,8,8,4,12,[[158,1,1,4,5],[162,1,1,5,6],[163,1,1,6,7],[169,1,1,7,8],[176,2,2,8,10],[179,2,2,10,12]]],[13,1,1,12,13,[[392,1,1,12,13]]],[15,1,1,13,14,[[421,1,1,13,14]]],[19,2,2,14,16,[[630,1,1,14,15],[634,1,1,15,16]]],[22,4,4,16,20,[[686,1,1,16,17],[688,2,2,17,19],[708,1,1,19,20]]],[23,3,3,20,23,[[775,1,1,20,21],[780,2,2,21,23]]],[25,4,3,23,26,[[825,1,1,23,24],[838,2,1,24,25],[844,1,1,25,26]]]],[2497,3815,4246,4247,5095,5188,5228,5382,5526,5528,5588,5593,11754,12549,16458,16578,17808,17851,17869,18225,19724,19844,19870,21058,21413,21583]]],["writest",[2,2,[[17,1,1,0,1,[[448,1,1,0,1]]],[25,1,1,1,2,[[838,1,1,1,2]]]],[13179,21417]]],["written",[137,134,[[1,5,4,0,4,[[73,1,1,0,1],[80,1,1,1,2],[81,3,2,2,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[4,7,7,5,12,[[161,1,1,5,6],[180,2,2,6,8],[181,3,3,8,11],[182,1,1,11,12]]],[5,5,5,12,17,[[187,1,1,12,13],[194,2,2,13,15],[196,1,1,15,16],[209,1,1,16,17]]],[9,1,1,17,18,[[267,1,1,17,18]]],[10,14,14,18,32,[[292,1,1,18,19],[301,1,1,19,20],[304,2,2,20,22],[305,3,3,22,25],[306,4,4,25,29],[311,1,1,29,30],[312,2,2,30,32]]],[11,27,27,32,59,[[313,1,1,32,33],[320,1,1,33,34],[322,1,1,34,35],[324,1,1,35,36],[325,2,2,36,38],[326,4,4,38,42],[327,7,7,42,49],[328,1,1,49,50],[332,1,1,50,51],[333,2,2,51,53],[334,1,1,53,54],[335,4,4,54,58],[336,1,1,58,59]]],[12,4,4,59,63,[[341,1,1,59,60],[346,1,1,60,61],[353,1,1,61,62],[366,1,1,62,63]]],[13,24,24,63,87,[[375,1,1,63,64],[378,1,1,64,65],[379,1,1,65,66],[382,1,1,66,67],[386,1,1,67,68],[389,1,1,68,69],[390,1,1,69,70],[391,2,2,70,72],[393,1,1,72,73],[394,1,1,73,74],[396,2,2,74,76],[397,1,1,76,77],[398,1,1,77,78],[399,1,1,78,79],[400,3,3,79,82],[401,4,4,82,86],[402,1,1,86,87]]],[14,4,4,87,91,[[405,2,2,87,89],[406,1,1,89,90],[410,1,1,90,91]]],[15,8,8,91,99,[[418,1,1,91,92],[419,1,1,92,93],[420,2,2,93,95],[422,2,2,95,97],[424,1,1,97,98],[425,1,1,98,99]]],[16,12,11,99,110,[[426,1,1,99,100],[427,1,1,100,101],[428,3,2,101,103],[431,1,1,103,104],[433,3,3,104,107],[434,2,2,107,109],[435,1,1,109,110]]],[17,2,2,110,112,[[454,1,1,110,111],[466,1,1,111,112]]],[18,5,5,112,117,[[517,1,1,112,113],[546,1,1,113,114],[579,1,1,114,115],[616,1,1,115,116],[626,1,1,116,117]]],[19,1,1,117,118,[[649,1,1,117,118]]],[20,1,1,118,119,[[670,1,1,118,119]]],[22,2,2,119,121,[[682,1,1,119,120],[743,1,1,120,121]]],[23,6,6,121,127,[[761,2,2,121,123],[769,1,1,123,124],[780,2,2,124,126],[795,1,1,126,127]]],[25,3,2,127,129,[[803,2,1,127,128],[814,1,1,128,129]]],[26,3,3,129,132,[[858,2,2,129,131],[861,1,1,131,132]]],[27,1,1,132,133,[[869,1,1,132,133]]],[38,1,1,133,134,[[927,1,1,133,134]]]],[2189,2438,2453,2470,4050,5167,5669,5672,5699,5700,5706,5718,5859,6033,6036,6077,6466,8040,8773,9149,9237,9247,9256,9272,9280,9288,9297,9303,9310,9462,9519,9525,9551,9750,9827,9869,9879,9883,9902,9911,9914,9924,9931,9936,9940,9946,9951,9956,9961,9982,10118,10136,10144,10158,10168,10186,10189,10193,10207,10426,10616,10860,11193,11393,11452,11475,11520,11621,11674,11704,11708,11730,11762,11790,11832,11845,11857,11907,11927,11954,11957,11964,11978,11991,11992,11993,12001,12099,12101,12117,12235,12407,12425,12507,12508,12583,12585,12647,12672,12721,12747,12756,12759,12795,12822,12825,12826,12857,12866,12868,13320,13623,14532,14963,15539,16255,16394,17035,17533,17736,18903,19358,19370,19547,19848,19871,20272,20502,20717,21999,22001,22082,22206,23136]]],["wrote",[29,28,[[1,2,2,0,2,[[83,1,1,0,1],[88,1,1,1,2]]],[4,3,3,2,5,[[156,1,1,2,3],[157,1,1,3,4],[162,1,1,4,5]]],[5,3,2,5,7,[[194,2,1,5,6],[210,1,1,6,7]]],[8,1,1,7,8,[[245,1,1,7,8]]],[9,2,2,8,10,[[277,2,2,8,10]]],[10,2,2,10,12,[[311,2,2,10,12]]],[11,3,3,12,15,[[322,2,2,12,14],[329,1,1,14,15]]],[12,1,1,15,16,[[361,1,1,15,16]]],[13,2,2,16,18,[[396,1,1,16,17],[398,1,1,17,18]]],[14,2,2,18,20,[[406,2,2,18,20]]],[16,3,3,20,23,[[433,2,2,20,22],[434,1,1,22,23]]],[23,5,5,23,28,[[780,4,4,23,27],[795,1,1,27,28]]]],[2524,2694,5017,5075,5190,6034,6502,7443,8273,8274,9459,9460,9794,9799,10020,11021,11828,11892,12116,12117,12822,12827,12863,19846,19860,19869,19874,20272]]]]},{"k":"H3790","v":[["*",[8,7,[[14,4,4,0,4,[[406,1,1,0,1],[407,2,2,1,3],[408,1,1,3,4]]],[26,4,3,4,7,[[854,2,1,4,5],[855,1,1,5,6],[856,1,1,6,7]]]],[12118,12141,12144,12153,21879,21930,21934]]],["write",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12144]]],["written",[2,2,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]]],[12141,12153]]],["wrote",[5,4,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,4,3,1,4,[[854,2,1,1,2],[855,1,1,2,3],[856,1,1,3,4]]]],[12118,21879,21930,21934]]]]},{"k":"H3791","v":[["*",[17,16,[[12,1,1,0,1,[[365,1,1,0,1]]],[13,2,2,1,3,[[368,1,1,1,2],[401,1,1,2,3]]],[14,2,2,3,5,[[404,1,1,3,4],[406,1,1,4,5]]],[15,1,1,5,6,[[419,1,1,5,6]]],[16,9,8,6,14,[[426,1,1,6,7],[428,2,2,7,9],[429,1,1,9,10],[433,4,3,10,13],[434,1,1,13,14]]],[25,1,1,14,15,[[814,1,1,14,15]]],[26,1,1,15,16,[[859,1,1,15,16]]]],[11162,11222,11970,12089,12117,12484,12724,12759,12761,12770,12825,12826,12830,12861,20717,22036]]],["register",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12089,12484]]],["scripture",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22036]]],["writing",[14,13,[[12,1,1,0,1,[[365,1,1,0,1]]],[13,2,2,1,3,[[368,1,1,1,2],[401,1,1,2,3]]],[14,1,1,3,4,[[406,1,1,3,4]]],[16,9,8,4,12,[[426,1,1,4,5],[428,2,2,5,7],[429,1,1,7,8],[433,4,3,8,11],[434,1,1,11,12]]],[25,1,1,12,13,[[814,1,1,12,13]]]],[11162,11222,11970,12117,12724,12759,12761,12770,12825,12826,12830,12861,20717]]]]},{"k":"H3792","v":[["*",[12,12,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]],[26,10,10,2,12,[[854,7,7,2,9],[855,3,3,9,12]]]],[12169,12195,21881,21882,21889,21890,21891,21898,21899,21913,21914,21915]]],["prescribing",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12195]]],["writing",[10,10,[[26,10,10,0,10,[[854,7,7,0,7],[855,3,3,7,10]]]],[21881,21882,21889,21890,21891,21898,21899,21913,21914,21915]]],["written",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12169]]]]},{"k":"H3793","v":[["+",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3309]]]]},{"k":"H3794","v":[["*",[8,8,[[0,1,1,0,1,[[9,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[12,1,1,2,3,[[338,1,1,2,3]]],[22,2,2,3,5,[[701,2,2,3,5]]],[23,1,1,5,6,[[746,1,1,5,6]]],[25,1,1,6,7,[[828,1,1,6,7]]],[26,1,1,7,8,[[860,1,1,7,8]]]],[238,4470,10259,18078,18089,18975,21127,22066]]],["Chittim",[6,6,[[3,1,1,0,1,[[140,1,1,0,1]]],[22,2,2,1,3,[[701,2,2,1,3]]],[23,1,1,3,4,[[746,1,1,3,4]]],[25,1,1,4,5,[[828,1,1,4,5]]],[26,1,1,5,6,[[860,1,1,5,6]]]],[4470,18078,18089,18975,21127,22066]]],["Kittim",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[238,10259]]]]},{"k":"H3795","v":[["*",[5,5,[[1,2,2,0,2,[[76,1,1,0,1],[78,1,1,1,2]]],[2,1,1,2,3,[[113,1,1,2,3]]],[3,1,1,3,4,[[144,1,1,3,4]]],[10,1,1,4,5,[[295,1,1,4,5]]]],[2292,2376,3448,4582,8889]]],["beaten",[4,4,[[1,2,2,0,2,[[76,1,1,0,1],[78,1,1,1,2]]],[2,1,1,2,3,[[113,1,1,2,3]]],[3,1,1,3,4,[[144,1,1,3,4]]]],[2292,2376,3448,4582]]],["pure",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8889]]]]},{"k":"H3796","v":[["wall",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17563]]]]},{"k":"H3797","v":[["*",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[854,1,1,1,2]]]],[12142,21879]]],["wall",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21879]]],["walls",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12142]]]]},{"k":"H3798","v":[["Kithlish",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6242]]]]},{"k":"H3799","v":[["marked",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18987]]]]},{"k":"H3800","v":[["*",[9,9,[[17,3,3,0,3,[[463,2,2,0,2],[466,1,1,2,3]]],[18,1,1,3,4,[[522,1,1,3,4]]],[19,1,1,4,5,[[652,1,1,4,5]]],[21,1,1,5,6,[[675,1,1,5,6]]],[22,1,1,6,7,[[691,1,1,6,7]]],[24,1,1,7,8,[[800,1,1,7,8]]],[26,1,1,8,9,[[859,1,1,8,9]]]],[13520,13523,13612,14606,17125,17609,17918,20421,22020]]],["+",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17918]]],["gold",[7,7,[[17,3,3,0,3,[[463,2,2,0,2],[466,1,1,2,3]]],[18,1,1,3,4,[[522,1,1,3,4]]],[19,1,1,4,5,[[652,1,1,4,5]]],[24,1,1,5,6,[[800,1,1,5,6]]],[26,1,1,6,7,[[859,1,1,6,7]]]],[13520,13523,13612,14606,17125,20421,22020]]],["most",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17609]]]]},{"k":"H3801","v":[["*",[29,26,[[0,9,6,0,6,[[2,1,1,0,1],[36,8,5,1,6]]],[1,7,7,6,13,[[77,3,3,6,9],[78,2,2,9,11],[88,1,1,11,12],[89,1,1,12,13]]],[2,4,4,13,17,[[97,2,2,13,15],[99,1,1,15,16],[105,1,1,16,17]]],[9,3,3,17,20,[[279,2,2,17,19],[281,1,1,19,20]]],[14,1,1,20,21,[[404,1,1,20,21]]],[15,2,2,21,23,[[419,2,2,21,23]]],[17,1,1,23,24,[[465,1,1,23,24]]],[21,1,1,24,25,[[675,1,1,24,25]]],[22,1,1,25,26,[[700,1,1,25,26]]]],[76,1086,1106,1114,1115,1116,2297,2332,2333,2341,2344,2691,2721,2924,2930,2982,3205,8335,8336,8421,12096,12490,12492,13575,17601,18073]]],["+",[2,2,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]]],[2344,2930]]],["coat",[16,13,[[0,8,5,0,5,[[36,8,5,0,5]]],[1,3,3,5,8,[[77,2,2,5,7],[78,1,1,7,8]]],[2,2,2,8,10,[[97,1,1,8,9],[105,1,1,9,10]]],[9,1,1,10,11,[[281,1,1,10,11]]],[17,1,1,11,12,[[465,1,1,11,12]]],[21,1,1,12,13,[[675,1,1,12,13]]]],[1086,1106,1114,1115,1116,2297,2332,2341,2924,3205,8421,13575,17601]]],["coats",[5,5,[[0,1,1,0,1,[[2,1,1,0,1]]],[1,3,3,1,4,[[77,1,1,1,2],[88,1,1,2,3],[89,1,1,3,4]]],[2,1,1,4,5,[[99,1,1,4,5]]]],[76,2333,2691,2721,2982]]],["garment",[2,2,[[9,2,2,0,2,[[279,2,2,0,2]]]],[8335,8336]]],["garments",[3,3,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,2,2,1,3,[[419,2,2,1,3]]]],[12096,12490,12492]]],["robe",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18073]]]]},{"k":"H3802","v":[["*",[67,58,[[1,13,12,0,12,[[76,2,2,0,2],[77,5,4,2,6],[87,2,2,6,8],[88,4,4,8,12]]],[3,2,2,12,14,[[123,1,1,12,13],[150,1,1,13,14]]],[4,1,1,14,15,[[185,1,1,14,15]]],[5,8,8,15,23,[[201,3,3,15,18],[204,5,5,18,23]]],[6,1,1,23,24,[[226,1,1,23,24]]],[8,1,1,24,25,[[252,1,1,24,25]]],[10,8,4,25,29,[[296,1,1,25,26],[297,7,3,26,29]]],[11,2,1,29,30,[[323,2,1,29,30]]],[12,1,1,30,31,[[352,1,1,30,31]]],[13,4,3,31,34,[[370,1,1,31,32],[389,2,1,32,33],[401,1,1,33,34]]],[15,1,1,34,35,[[421,1,1,34,35]]],[17,1,1,35,36,[[466,1,1,35,36]]],[22,4,4,36,40,[[689,1,1,36,37],[708,1,1,37,38],[724,1,1,38,39],[727,1,1,39,40]]],[25,19,17,40,57,[[813,3,3,40,43],[825,1,1,43,44],[826,1,1,44,45],[830,2,2,45,47],[835,1,1,47,48],[841,6,4,48,52],[842,2,2,52,54],[847,1,1,54,55],[848,2,2,55,57]]],[37,1,1,57,58,[[917,1,1,57,58]]]],[2286,2287,2300,2305,2318,2320,2647,2648,2668,2671,2682,2684,3859,4827,5822,6210,6212,6213,6305,6306,6309,6311,6312,6952,7624,8904,8964,8968,8973,9840,10806,11256,11666,11969,12540,13610,17898,18223,18593,18658,20686,20687,20692,21060,21092,21190,21201,21334,21495,21517,21518,21521,21528,21552,21674,21680,21681,22973]]],["+",[5,5,[[10,1,1,0,1,[[297,1,1,0,1]]],[11,1,1,1,2,[[323,1,1,1,2]]],[13,2,2,2,4,[[370,1,1,2,3],[389,1,1,3,4]]],[25,1,1,4,5,[[848,1,1,4,5]]]],[8973,9840,11256,11666,21680]]],["arm",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13610]]],["corner",[1,1,[[11,1,1,0,1,[[323,1,1,0,1]]]],[9840]]],["shoulder",[9,9,[[15,1,1,0,1,[[421,1,1,0,1]]],[22,1,1,1,2,[[724,1,1,1,2]]],[25,6,6,2,8,[[813,2,2,2,4],[825,1,1,4,5],[830,2,2,5,7],[835,1,1,7,8]]],[37,1,1,8,9,[[917,1,1,8,9]]]],[12540,18593,20687,20692,21060,21190,21201,21334,22973]]],["shoulderpieces",[4,4,[[1,4,4,0,4,[[77,2,2,0,2],[88,2,2,2,4]]]],[2300,2318,2668,2682]]],["shoulders",[13,12,[[1,3,2,0,2,[[77,2,1,0,1],[88,1,1,1,2]]],[3,1,1,2,3,[[123,1,1,2,3]]],[4,1,1,3,4,[[185,1,1,3,4]]],[6,1,1,4,5,[[226,1,1,4,5]]],[8,1,1,5,6,[[252,1,1,5,6]]],[12,1,1,6,7,[[352,1,1,6,7]]],[13,1,1,7,8,[[401,1,1,7,8]]],[22,3,3,8,11,[[689,1,1,8,9],[708,1,1,9,10],[727,1,1,10,11]]],[25,1,1,11,12,[[813,1,1,11,12]]]],[2305,2671,3859,5822,6952,7624,10806,11969,17898,18223,18658,20686]]],["side",[26,23,[[1,4,4,0,4,[[76,2,2,0,2],[87,2,2,2,4]]],[3,1,1,4,5,[[150,1,1,4,5]]],[5,8,8,5,13,[[201,3,3,5,8],[204,5,5,8,13]]],[10,3,2,13,15,[[296,1,1,13,14],[297,2,1,14,15]]],[13,1,1,15,16,[[389,1,1,15,16]]],[25,9,7,16,23,[[826,1,1,16,17],[841,6,4,17,21],[847,1,1,21,22],[848,1,1,22,23]]]],[2286,2287,2647,2648,4827,6210,6212,6213,6305,6306,6309,6311,6312,8904,8973,11666,21092,21495,21517,21518,21521,21674,21681]]],["sides",[4,4,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[25,2,2,2,4,[[842,2,2,2,4]]]],[2320,2684,21528,21552]]],["undersetters",[4,2,[[10,4,2,0,2,[[297,4,2,0,2]]]],[8964,8968]]]]},{"k":"H3803","v":[["*",[6,6,[[6,1,1,0,1,[[230,1,1,0,1]]],[17,1,1,1,2,[[471,1,1,1,2]]],[18,2,2,2,4,[[499,1,1,2,3],[619,1,1,3,4]]],[19,1,1,4,5,[[641,1,1,4,5]]],[34,1,1,5,6,[[903,1,1,5,6]]]],[7097,13738,14216,16293,16790,22735]]],["+",[2,2,[[6,1,1,0,1,[[230,1,1,0,1]]],[34,1,1,1,2,[[903,1,1,1,2]]]],[7097,22735]]],["Suffer",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13738]]],["about",[1,1,[[18,1,1,0,1,[[619,1,1,0,1]]]],[16293]]],["crowned",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16790]]],["round",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14216]]]]},{"k":"H3804","v":[["crown",[3,3,[[16,3,3,0,3,[[426,1,1,0,1],[427,1,1,1,2],[431,1,1,2,3]]]],[12713,12741,12801]]]]},{"k":"H3805","v":[["*",[24,12,[[10,15,8,0,8,[[297,15,8,0,8]]],[11,3,1,8,9,[[337,3,1,8,9]]],[13,3,2,9,11,[[370,3,2,9,11]]],[23,3,1,11,12,[[796,3,1,11,12]]]],[8950,8951,8952,8953,8954,8965,8975,8976,10239,11258,11259,20298]]],["chapiter",[12,7,[[10,7,5,0,5,[[297,7,5,0,5]]],[11,3,1,5,6,[[337,3,1,5,6]]],[23,2,1,6,7,[[796,2,1,6,7]]]],[8950,8951,8952,8954,8965,10239,20298]]],["chapiters",[12,10,[[10,8,7,0,7,[[297,8,7,0,7]]],[13,3,2,7,9,[[370,3,2,7,9]]],[23,1,1,9,10,[[796,1,1,9,10]]]],[8950,8951,8952,8953,8954,8975,8976,11258,11259,20298]]]]},{"k":"H3806","v":[["+",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17191]]]]},{"k":"H3807","v":[["*",[17,17,[[2,1,1,0,1,[[111,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[4,2,2,2,4,[[153,1,1,2,3],[161,1,1,3,4]]],[11,1,1,4,5,[[330,1,1,4,5]]],[13,2,2,5,7,[[381,1,1,5,6],[400,1,1,6,7]]],[17,1,1,7,8,[[439,1,1,7,8]]],[18,1,1,8,9,[[566,1,1,8,9]]],[22,3,3,9,12,[[680,1,1,9,10],[702,1,1,10,11],[708,1,1,11,12]]],[23,1,1,12,13,[[790,1,1,12,13]]],[28,1,1,13,14,[[878,1,1,13,14]]],[32,2,2,14,16,[[893,1,1,14,15],[896,1,1,15,16]]],[37,1,1,16,17,[[921,1,1,16,17]]]],[3393,4153,4936,5178,10028,11496,11940,12950,15349,17689,18107,18231,20050,22353,22586,22623,23034]]],["+",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23034]]],["Beat",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22353]]],["beat",[2,2,[[22,1,1,0,1,[[680,1,1,0,1]]],[32,1,1,1,2,[[896,1,1,1,2]]]],[17689,22623]]],["beaten",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11940]]],["crushed",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3393]]],["destroyed",[3,3,[[4,1,1,0,1,[[153,1,1,0,1]]],[13,1,1,1,2,[[381,1,1,1,2]]],[17,1,1,2,3,[[439,1,1,2,3]]]],[4936,11496,12950]]],["discomfited",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4153]]],["down",[2,2,[[18,1,1,0,1,[[566,1,1,0,1]]],[23,1,1,1,2,[[790,1,1,1,2]]]],[15349,20050]]],["pieces",[3,3,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]],[32,1,1,2,3,[[893,1,1,2,3]]]],[10028,18231,22586]]],["smitten",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18107]]],["stamped",[1,1,[[4,1,1,0,1,[[161,1,1,0,1]]]],[5178]]]]},{"k":"H3808","v":[["*",[5163,3950,[[0,212,189,0,189,[[1,5,5,0,5],[2,5,4,5,9],[3,5,4,9,13],[5,1,1,13,14],[6,1,1,14,15],[7,5,4,15,19],[8,5,4,19,23],[10,2,2,23,25],[11,1,1,25,26],[12,3,2,26,28],[13,1,1,28,29],[14,5,5,29,34],[15,2,2,34,36],[16,4,4,36,40],[17,10,9,40,49],[18,7,7,49,56],[19,5,5,56,61],[20,4,2,61,63],[21,2,2,63,65],[22,2,2,65,67],[23,14,13,67,80],[25,2,2,80,82],[26,5,5,82,87],[27,4,4,87,91],[28,4,4,91,95],[29,4,4,95,99],[30,15,11,99,110],[31,5,5,110,115],[33,5,5,115,120],[34,2,2,120,122],[35,1,1,122,123],[36,4,4,123,127],[37,10,8,127,135],[38,4,4,135,139],[39,3,3,139,142],[40,5,5,142,147],[41,16,15,147,162],[42,7,6,162,168],[43,10,8,168,176],[44,5,4,176,180],[46,8,5,180,185],[47,3,3,185,188],[48,1,1,188,189]]],[1,245,201,189,390,[[50,3,3,189,192],[51,1,1,192,193],[52,4,3,193,196],[53,11,7,196,203],[54,8,7,203,210],[55,3,3,210,213],[56,7,7,213,220],[57,8,7,220,227],[58,16,15,227,242],[59,14,11,242,253],[60,5,4,253,257],[61,15,12,257,269],[62,6,5,269,274],[63,4,4,274,278],[64,3,3,278,281],[65,11,9,281,290],[67,2,2,290,292],[68,3,2,292,294],[69,18,13,294,307],[70,14,13,307,320],[71,17,12,320,332],[72,22,17,332,349],[73,3,2,349,351],[74,1,1,351,352],[77,4,4,352,356],[78,2,2,356,358],[79,10,7,358,365],[81,2,2,365,367],[82,8,7,367,374],[83,14,11,374,385],[84,1,1,385,386],[88,2,2,386,388],[89,3,2,388,390]]],[2,281,209,390,599,[[90,1,1,390,391],[91,4,3,391,394],[92,1,1,394,395],[93,4,4,395,399],[94,9,6,399,405],[95,5,5,405,410],[96,7,6,410,416],[97,2,2,416,418],[99,7,6,418,424],[100,13,12,424,436],[101,3,2,436,438],[102,14,12,438,450],[103,3,3,450,453],[104,3,3,453,456],[105,4,4,456,460],[106,8,6,460,466],[107,30,22,466,488],[108,42,21,488,509],[109,5,5,509,514],[110,24,15,514,529],[111,23,18,529,547],[112,13,12,547,559],[114,24,17,559,576],[115,19,14,576,590],[116,13,9,590,599]]],[3,189,145,599,744,[[117,4,3,599,602],[118,1,1,602,603],[119,1,1,603,604],[120,3,3,604,607],[121,8,6,607,613],[122,7,5,613,618],[123,1,1,618,619],[124,3,3,619,622],[125,7,5,622,627],[126,2,2,627,629],[127,11,7,629,636],[128,6,5,636,641],[129,1,1,641,642],[130,10,10,642,652],[131,3,3,652,655],[132,10,6,655,661],[133,1,1,661,662],[134,13,9,662,671],[135,7,4,671,675],[136,10,7,675,682],[137,3,2,682,684],[138,9,5,684,689],[139,17,11,689,700],[140,5,4,700,704],[141,1,1,704,705],[142,6,5,705,710],[143,3,2,710,712],[144,3,3,712,715],[145,4,4,715,719],[146,4,4,719,723],[147,4,4,723,727],[148,5,5,727,732],[149,2,2,732,734],[151,12,8,734,742],[152,2,2,742,744]]],[4,412,305,744,1049,[[153,14,9,744,753],[154,9,9,753,762],[155,6,5,762,767],[156,12,6,767,773],[157,17,14,773,787],[158,6,4,787,791],[159,17,13,791,804],[160,10,6,804,810],[161,8,5,810,815],[162,5,4,815,819],[163,10,6,819,825],[164,11,10,825,835],[165,12,8,835,843],[166,15,10,843,853],[167,16,13,853,866],[168,11,8,866,874],[169,13,8,874,882],[170,15,10,882,892],[171,8,8,892,900],[172,12,11,900,911],[173,14,8,911,919],[174,22,19,919,938],[175,24,19,938,957],[176,18,13,957,970],[177,13,12,970,982],[178,5,2,982,984],[179,2,2,984,986],[180,34,28,986,1014],[181,12,7,1014,1021],[182,6,5,1021,1026],[183,11,6,1026,1032],[184,16,12,1032,1044],[185,3,1,1044,1045],[186,5,4,1045,1049]]],[5,103,82,1049,1131,[[187,6,4,1049,1053],[188,5,5,1053,1058],[189,1,1,1058,1059],[191,6,6,1059,1065],[192,3,1,1065,1066],[193,4,2,1066,1068],[194,8,6,1068,1074],[195,6,6,1074,1080],[196,10,9,1080,1089],[197,6,6,1089,1095],[199,3,3,1095,1098],[200,3,3,1098,1101],[201,1,1,1101,1102],[202,1,1,1102,1103],[203,5,5,1103,1108],[204,1,1,1108,1109],[206,3,2,1109,1111],[207,2,2,1111,1113],[208,12,9,1113,1122],[209,8,4,1122,1126],[210,9,5,1126,1131]]],[6,134,114,1131,1245,[[211,10,10,1131,1141],[212,13,11,1141,1152],[213,5,5,1152,1157],[214,6,5,1157,1162],[215,3,3,1162,1165],[216,6,5,1165,1170],[217,2,1,1170,1171],[218,8,7,1171,1178],[219,2,2,1178,1180],[220,3,3,1180,1183],[221,14,13,1183,1196],[222,4,4,1196,1200],[223,12,8,1200,1208],[224,10,8,1208,1216],[225,5,4,1216,1220],[226,7,7,1220,1227],[228,1,1,1227,1228],[229,7,5,1228,1233],[230,5,4,1233,1237],[231,11,8,1237,1245]]],[7,18,16,1245,1261,[[233,9,8,1245,1253],[234,4,4,1253,1257],[235,5,4,1257,1261]]],[8,196,161,1261,1422,[[236,10,7,1261,1268],[237,8,8,1268,1276],[238,6,6,1276,1282],[239,4,3,1282,1285],[240,4,4,1285,1289],[241,6,5,1289,1294],[242,1,1,1294,1295],[243,5,5,1295,1300],[244,5,4,1300,1304],[245,4,4,1304,1308],[246,2,2,1308,1310],[247,12,8,1310,1318],[248,8,7,1318,1325],[249,10,10,1325,1335],[250,10,8,1335,1343],[251,5,5,1343,1348],[252,7,5,1348,1353],[253,2,2,1353,1355],[254,1,1,1355,1356],[255,18,13,1356,1369],[256,4,3,1369,1372],[257,4,3,1372,1375],[258,3,3,1375,1378],[259,7,6,1378,1384],[260,11,9,1384,1393],[261,9,7,1393,1400],[262,3,3,1400,1403],[263,7,5,1403,1408],[264,11,7,1408,1415],[265,8,6,1415,1421],[266,1,1,1421,1422]]],[9,132,107,1422,1529,[[267,5,4,1422,1426],[268,6,4,1426,1430],[269,8,7,1430,1437],[270,1,1,1437,1438],[271,4,3,1438,1441],[272,2,2,1441,1443],[273,5,4,1443,1447],[276,1,1,1447,1448],[277,8,6,1448,1454],[278,7,6,1454,1460],[279,11,10,1460,1470],[280,11,7,1470,1477],[281,4,4,1477,1481],[282,3,3,1481,1484],[283,10,9,1484,1493],[284,10,7,1493,1500],[285,10,7,1500,1507],[286,5,4,1507,1511],[287,4,3,1511,1514],[288,7,7,1514,1521],[289,8,7,1521,1528],[290,2,1,1528,1529]]],[10,180,147,1529,1676,[[291,13,12,1529,1541],[292,11,11,1541,1552],[293,17,11,1552,1563],[294,1,1,1563,1564],[295,1,1,1564,1565],[296,2,2,1565,1567],[297,2,2,1567,1569],[298,12,11,1569,1580],[299,6,6,1580,1586],[300,10,7,1586,1593],[301,13,12,1593,1605],[302,7,5,1605,1610],[303,19,10,1610,1620],[304,4,4,1620,1624],[305,7,7,1624,1631],[306,5,5,1631,1636],[307,6,4,1636,1640],[308,12,9,1640,1649],[309,6,4,1649,1653],[310,7,7,1653,1660],[311,5,4,1660,1664],[312,14,12,1664,1676]]],[11,178,151,1676,1827,[[313,5,5,1676,1681],[314,6,6,1681,1687],[315,6,5,1687,1692],[316,11,8,1692,1700],[317,7,5,1700,1705],[318,9,7,1705,1712],[319,3,3,1712,1715],[320,2,2,1715,1717],[321,6,6,1717,1723],[322,11,9,1723,1732],[323,1,1,1732,1733],[324,6,6,1733,1739],[325,8,7,1739,1746],[326,11,9,1746,1755],[327,11,11,1755,1766],[328,3,3,1766,1769],[329,19,14,1769,1783],[330,13,10,1783,1793],[331,8,5,1793,1798],[332,10,8,1798,1806],[333,5,5,1806,1811],[334,5,5,1811,1816],[335,6,5,1816,1821],[336,4,4,1821,1825],[337,2,2,1825,1827]]],[12,54,48,1827,1875,[[339,3,3,1827,1830],[341,1,1,1830,1831],[342,1,1,1831,1832],[347,3,3,1832,1835],[348,5,5,1835,1840],[349,3,3,1840,1843],[350,2,2,1843,1845],[351,1,1,1845,1846],[352,3,2,1846,1848],[353,1,1,1848,1849],[354,6,5,1849,1854],[356,2,2,1854,1856],[358,7,5,1856,1861],[359,2,2,1861,1863],[360,3,3,1863,1866],[361,2,2,1866,1868],[363,1,1,1868,1869],[364,3,2,1869,1871],[365,3,2,1871,1873],[366,2,2,1873,1875]]],[13,156,127,1875,2002,[[367,4,2,1875,1877],[368,1,1,1877,1878],[370,1,1,1878,1879],[371,4,3,1879,1882],[372,8,7,1882,1889],[373,4,4,1889,1893],[374,5,5,1893,1898],[375,9,7,1898,1905],[376,3,2,1905,1907],[377,2,1,1907,1908],[378,5,4,1908,1912],[379,7,6,1912,1918],[381,6,4,1918,1922],[382,3,3,1922,1925],[383,3,3,1925,1928],[384,7,6,1928,1934],[385,3,2,1934,1936],[386,12,9,1936,1945],[387,6,5,1945,1950],[388,1,1,1950,1951],[389,3,3,1951,1954],[390,6,6,1954,1960],[391,8,6,1960,1966],[392,2,1,1966,1967],[393,1,1,1967,1968],[394,6,6,1968,1974],[395,3,2,1974,1976],[396,11,7,1976,1983],[398,8,7,1983,1990],[399,3,3,1990,1993],[400,4,4,1993,1997],[401,5,3,1997,2000],[402,2,2,2000,2002]]],[14,15,13,2002,2015,[[404,3,3,2002,2005],[405,1,1,2005,2006],[406,1,1,2006,2007],[410,1,1,2007,2008],[411,4,4,2008,2012],[412,5,3,2012,2015]]],[15,64,49,2015,2064,[[413,1,1,2015,2016],[414,6,5,2016,2021],[415,1,1,2021,2022],[416,3,2,2022,2024],[417,9,8,2024,2032],[418,7,6,2032,2038],[419,4,4,2038,2042],[420,1,1,2042,2043],[421,18,10,2043,2053],[422,4,3,2053,2056],[425,10,8,2056,2064]]],[16,29,23,2064,2087,[[426,5,4,2064,2068],[427,4,3,2068,2071],[428,3,2,2071,2073],[429,4,3,2073,2076],[430,3,2,2076,2078],[431,2,2,2078,2080],[434,7,6,2080,2086],[435,1,1,2086,2087]]],[17,314,257,2087,2344,[[436,3,2,2087,2089],[437,3,2,2089,2091],[438,8,5,2091,2096],[439,5,4,2096,2100],[440,6,5,2100,2105],[441,4,3,2105,2108],[442,11,9,2108,2117],[443,9,7,2117,2124],[444,17,15,2124,2139],[445,9,9,2139,2148],[446,3,3,2148,2151],[447,7,6,2151,2157],[448,4,4,2157,2161],[449,10,7,2161,2168],[450,17,11,2168,2179],[451,4,4,2179,2183],[452,3,3,2183,2186],[453,5,4,2186,2190],[454,6,6,2190,2196],[455,11,8,2196,2204],[456,9,7,2204,2211],[457,7,7,2211,2218],[458,7,6,2218,2224],[459,13,10,2224,2234],[460,3,2,2234,2236],[461,4,3,2236,2239],[462,8,7,2239,2246],[463,14,9,2246,2255],[464,5,4,2255,2259],[465,8,8,2259,2267],[466,11,10,2267,2277],[467,11,9,2277,2286],[468,8,7,2286,2293],[469,14,11,2293,2304],[470,6,5,2304,2309],[471,10,9,2309,2318],[472,7,6,2318,2324],[473,3,2,2324,2326],[474,7,6,2326,2332],[475,3,2,2332,2334],[476,5,5,2334,2339],[477,6,5,2339,2344]]],[18,335,265,2344,2609,[[478,6,4,2344,2348],[480,1,1,2348,2349],[482,3,2,2349,2351],[484,1,1,2351,2352],[486,3,3,2352,2355],[487,2,2,2355,2357],[491,2,1,2357,2358],[492,7,3,2358,2361],[493,2,1,2361,2362],[494,1,1,2362,2363],[495,7,7,2363,2370],[499,8,5,2370,2375],[500,2,2,2375,2377],[501,2,1,2377,2378],[502,1,1,2378,2379],[503,4,3,2379,2382],[504,1,1,2382,2383],[505,2,1,2383,2384],[507,2,2,2384,2386],[508,1,1,2386,2387],[509,3,3,2387,2390],[510,2,2,2390,2392],[511,3,3,2392,2395],[512,5,4,2395,2399],[513,3,2,2399,2401],[514,9,8,2401,2409],[515,4,3,2409,2412],[516,2,2,2412,2414],[517,8,6,2414,2420],[518,2,2,2420,2422],[520,1,1,2422,2423],[521,11,7,2423,2430],[523,1,1,2430,2431],[526,7,5,2431,2436],[527,3,3,2436,2439],[528,3,2,2439,2441],[529,1,1,2441,2442],[530,3,2,2442,2444],[531,1,1,2444,2445],[532,6,5,2445,2450],[533,4,4,2450,2454],[535,1,1,2454,2455],[536,3,2,2455,2457],[537,2,1,2457,2458],[539,2,2,2458,2460],[541,1,1,2460,2461],[543,3,3,2461,2464],[546,4,4,2464,2468],[548,1,1,2468,2469],[550,3,3,2469,2472],[551,2,1,2472,2473],[552,2,1,2473,2474],[553,1,1,2474,2475],[554,4,4,2475,2479],[555,22,17,2479,2496],[556,1,1,2496,2497],[557,1,1,2497,2498],[558,5,3,2498,2501],[559,2,1,2501,2502],[560,1,1,2502,2503],[561,1,1,2503,2504],[562,1,1,2504,2505],[563,1,1,2505,2506],[565,2,2,2506,2508],[566,10,7,2508,2515],[568,4,3,2515,2518],[569,3,2,2518,2520],[571,7,4,2520,2524],[572,1,1,2524,2525],[577,1,1,2525,2526],[578,6,4,2526,2530],[579,2,2,2530,2532],[580,5,3,2532,2535],[582,2,2,2535,2537],[583,7,6,2537,2543],[584,3,3,2543,2546],[585,2,1,2546,2547],[586,2,2,2547,2549],[587,1,1,2549,2550],[589,3,3,2550,2553],[592,11,5,2553,2558],[595,3,3,2558,2561],[596,23,23,2561,2584],[598,3,2,2584,2586],[601,1,1,2586,2587],[602,3,2,2587,2589],[604,3,2,2589,2591],[606,3,3,2591,2594],[608,4,2,2594,2596],[609,1,1,2596,2597],[612,3,2,2597,2599],[614,2,1,2599,2600],[616,5,5,2600,2605],[620,1,1,2605,2606],[624,3,2,2606,2608],[625,1,1,2608,2609]]],[19,133,119,2609,2728,[[628,5,4,2609,2613],[629,2,1,2613,2614],[630,4,4,2614,2618],[631,6,3,2618,2621],[632,3,2,2621,2623],[633,8,7,2623,2630],[634,2,2,2630,2632],[635,4,4,2632,2636],[636,1,1,2636,2637],[637,5,5,2637,2642],[638,2,2,2642,2644],[639,3,3,2644,2647],[640,3,3,2647,2650],[641,3,3,2650,2653],[642,3,2,2653,2655],[643,4,4,2655,2659],[644,6,6,2659,2665],[645,2,2,2665,2667],[646,8,6,2667,2673],[647,5,5,2673,2678],[648,4,4,2678,2682],[649,3,3,2682,2685],[650,2,2,2685,2687],[651,5,4,2687,2691],[652,2,2,2691,2693],[653,4,4,2693,2697],[654,6,5,2697,2702],[655,5,5,2702,2707],[656,3,3,2707,2710],[657,14,12,2710,2722],[658,6,6,2722,2728]]],[20,63,45,2728,2773,[[659,6,3,2728,2731],[660,4,3,2731,2734],[662,6,5,2734,2739],[663,5,4,2739,2743],[664,9,6,2743,2749],[665,7,6,2749,2755],[666,7,4,2755,2759],[667,7,3,2759,2762],[668,5,5,2762,2767],[669,4,3,2767,2770],[670,3,3,2770,2773]]],[21,11,9,2773,2782,[[671,2,2,2773,2775],[673,3,3,2775,2778],[675,2,1,2778,2779],[676,1,1,2779,2780],[678,3,2,2780,2782]]],[22,445,274,2782,3056,[[679,10,5,2782,2787],[680,2,1,2787,2788],[681,3,2,2788,2790],[683,11,6,2790,2796],[684,1,1,2796,2797],[685,9,6,2797,2803],[686,6,4,2803,2807],[687,11,8,2807,2815],[688,12,8,2815,2823],[689,6,3,2823,2826],[690,1,1,2826,2827],[691,11,5,2827,2832],[692,5,4,2832,2836],[693,1,1,2836,2837],[694,6,4,2837,2841],[695,3,2,2841,2843],[697,1,1,2843,2844],[700,4,2,2844,2846],[701,8,4,2846,2850],[702,2,2,2850,2852],[703,1,1,2852,2853],[704,1,1,2853,2854],[705,4,2,2854,2856],[706,8,7,2856,2863],[707,10,6,2863,2869],[708,16,11,2869,2880],[709,9,5,2880,2885],[710,3,2,2885,2887],[711,5,4,2887,2891],[712,3,2,2891,2893],[713,4,2,2893,2895],[714,6,5,2895,2900],[715,8,5,2900,2905],[716,5,3,2905,2908],[717,5,3,2908,2911],[718,13,5,2911,2916],[719,5,5,2916,2921],[720,18,8,2921,2929],[721,14,7,2929,2936],[722,11,6,2936,2942],[723,14,10,2942,2952],[724,7,4,2952,2956],[725,12,8,2956,2964],[726,15,9,2964,2973],[727,5,3,2973,2976],[728,5,3,2976,2979],[729,7,6,2979,2985],[730,6,4,2985,2989],[731,8,4,2989,2993],[732,11,6,2993,2999],[733,11,7,2999,3006],[734,5,3,3006,3009],[735,11,6,3009,3015],[736,8,6,3015,3021],[737,9,6,3021,3027],[738,7,5,3027,3032],[740,6,4,3032,3036],[741,6,4,3036,3040],[742,4,2,3040,3042],[743,19,10,3042,3052],[744,7,4,3052,3056]]],[23,513,361,3056,3417,[[745,2,2,3056,3058],[746,23,17,3058,3075],[747,18,13,3075,3088],[748,11,7,3088,3095],[749,26,14,3095,3109],[750,12,9,3109,3118],[751,21,12,3118,3130],[752,10,7,3130,3137],[753,9,6,3137,3143],[754,14,9,3143,3152],[755,12,7,3152,3159],[756,3,3,3159,3162],[757,11,9,3162,3171],[758,15,10,3171,3181],[759,11,9,3181,3190],[760,18,10,3190,3200],[761,16,8,3200,3208],[762,4,4,3208,3212],[763,6,4,3212,3216],[764,9,5,3216,3221],[765,4,2,3221,3223],[766,20,14,3223,3237],[767,21,15,3237,3252],[768,5,4,3252,3256],[769,12,8,3256,3264],[770,3,3,3264,3267],[771,7,6,3267,3273],[772,1,1,3273,3274],[773,11,9,3274,3283],[774,7,5,3283,3288],[775,9,7,3288,3295],[776,10,7,3295,3302],[777,8,6,3302,3308],[778,6,5,3308,3313],[779,16,9,3313,3322],[780,6,5,3322,3327],[781,6,6,3327,3333],[782,10,8,3333,3341],[783,3,3,3341,3344],[784,5,5,3344,3349],[785,2,2,3349,3351],[786,12,8,3351,3359],[787,4,3,3359,3362],[788,14,9,3362,3371],[789,1,1,3371,3372],[790,6,5,3372,3377],[791,2,2,3377,3379],[792,9,5,3379,3384],[793,15,10,3384,3394],[794,14,11,3394,3405],[795,11,10,3405,3415],[796,2,2,3415,3417]]],[24,39,35,3417,3452,[[797,7,6,3417,3423],[798,8,8,3423,3431],[799,12,11,3431,3442],[800,10,8,3442,3450],[801,2,2,3450,3452]]],[25,344,235,3452,3687,[[802,3,3,3452,3455],[804,15,10,3455,3465],[805,4,2,3465,3467],[806,9,4,3467,3471],[807,1,1,3471,3472],[808,15,6,3472,3478],[809,3,1,3478,3479],[810,2,1,3479,3480],[811,3,2,3480,3482],[812,4,3,3482,3485],[813,10,9,3485,3494],[814,14,9,3494,3503],[815,4,3,3503,3506],[816,1,1,3506,3507],[817,23,17,3507,3524],[818,8,7,3524,3531],[819,39,22,3531,3553],[820,2,2,3553,3555],[821,19,15,3555,3570],[822,5,5,3570,3575],[823,7,5,3575,3580],[824,4,3,3580,3583],[825,22,12,3583,3595],[826,1,1,3595,3596],[827,6,6,3596,3602],[829,4,4,3602,3606],[830,8,5,3606,3611],[831,2,2,3611,3613],[832,7,2,3613,3615],[833,5,4,3615,3619],[834,18,14,3619,3633],[835,17,8,3633,3641],[836,2,2,3641,3643],[837,13,10,3643,3653],[838,4,3,3653,3656],[839,2,2,3656,3658],[840,5,4,3658,3662],[842,1,1,3662,3663],[843,1,1,3663,3664],[844,1,1,3664,3665],[845,16,13,3665,3678],[846,1,1,3678,3679],[847,4,3,3679,3682],[848,5,3,3682,3685],[849,4,2,3685,3687]]],[26,46,35,3687,3722,[[850,3,2,3687,3689],[857,5,4,3689,3693],[858,6,6,3693,3699],[859,9,5,3699,3704],[860,20,15,3704,3719],[861,3,3,3719,3722]]],[27,66,44,3722,3766,[[862,7,4,3722,3726],[863,12,9,3726,3735],[864,2,1,3735,3736],[865,4,2,3736,3738],[866,6,4,3738,3742],[867,1,1,3742,3743],[868,6,4,3743,3747],[869,5,4,3747,3751],[870,7,5,3751,3756],[871,2,2,3756,3758],[872,7,4,3758,3762],[873,1,1,3762,3763],[874,3,2,3763,3765],[875,3,1,3765,3766]]],[28,12,10,3766,3776,[[876,1,1,3766,3767],[877,9,7,3767,3774],[878,2,2,3774,3776]]],[29,72,52,3776,3828,[[879,6,5,3776,3781],[880,10,6,3781,3787],[881,7,5,3787,3792],[882,8,6,3792,3798],[883,13,8,3798,3806],[884,4,3,3806,3809],[885,9,7,3809,3816],[886,6,5,3816,3821],[887,9,7,3821,3828]]],[30,5,4,3828,3832,[[888,5,4,3828,3832]]],[31,9,7,3832,3839,[[889,2,2,3832,3834],[891,2,2,3834,3836],[892,5,3,3836,3839]]],[32,30,20,3839,3859,[[893,3,2,3839,3841],[894,7,5,3841,3846],[895,5,4,3846,3850],[896,4,2,3850,3852],[897,5,4,3852,3856],[898,5,2,3856,3858],[899,1,1,3858,3859]]],[33,9,9,3859,3868,[[900,5,5,3859,3864],[901,1,1,3864,3865],[902,3,3,3865,3868]]],[34,21,15,3868,3883,[[903,10,8,3868,3876],[904,9,6,3876,3882],[905,2,1,3882,3883]]],[35,23,12,3883,3895,[[906,7,4,3883,3887],[907,1,1,3887,3888],[908,15,7,3888,3895]]],[36,4,4,3895,3899,[[909,1,1,3895,3896],[910,3,3,3896,3899]]],[37,52,37,3899,3936,[[911,5,4,3899,3903],[913,1,1,3903,3904],[914,6,3,3904,3907],[917,5,4,3907,3911],[918,3,3,3911,3914],[919,2,2,3914,3916],[920,2,2,3916,3918],[921,10,5,3918,3923],[922,1,1,3923,3924],[923,4,4,3924,3928],[924,13,8,3928,3936]]],[38,19,14,3936,3950,[[925,3,2,3936,3938],[926,7,5,3938,3943],[927,8,6,3943,3949],[928,1,1,3949,3950]]]],[35,47,48,50,55,56,58,59,72,84,86,88,91,140,161,192,195,204,205,209,216,220,228,272,273,316,324,327,359,363,364,370,373,376,382,391,402,409,411,412,439,445,448,449,452,453,454,455,456,459,465,476,477,479,490,492,499,500,501,504,507,523,539,559,563,577,582,594,596,599,607,612,618,624,628,629,630,632,640,641,714,721,729,739,748,750,763,774,779,788,789,802,803,820,821,831,861,870,872,880,888,900,901,905,906,907,908,911,912,925,940,953,954,956,960,987,994,997,999,1003,1016,1021,1047,1087,1096,1104,1115,1128,1133,1135,1139,1140,1141,1142,1145,1155,1157,1158,1159,1180,1187,1195,1214,1216,1226,1231,1239,1254,1256,1260,1262,1263,1264,1268,1272,1273,1274,1275,1283,1286,1289,1290,1293,1295,1298,1299,1312,1322,1328,1329,1339,1346,1347,1350,1352,1356,1359,1361,1366,1384,1429,1438,1439,1442,1446,1461,1462,1469,1483,1540,1549,1551,1557,1582,1598,1600,1602,1609,1610,1611,1612,1615,1622,1634,1639,1640,1646,1650,1651,1655,1658,1664,1667,1689,1698,1701,1706,1707,1708,1709,1725,1728,1729,1736,1738,1741,1742,1746,1748,1749,1753,1754,1760,1761,1763,1766,1768,1770,1771,1774,1775,1777,1782,1783,1788,1791,1792,1796,1797,1800,1803,1804,1806,1812,1813,1815,1816,1826,1829,1832,1835,1836,1838,1839,1855,1859,1861,1862,1864,1870,1874,1880,1884,1889,1901,1902,1909,1917,1942,1943,1946,1951,1955,1962,1965,1967,1971,1972,1973,1974,2016,2017,2039,2049,2054,2055,2056,2058,2061,2064,2065,2066,2067,2068,2074,2076,2077,2082,2084,2085,2087,2088,2090,2095,2098,2099,2105,2106,2110,2113,2121,2124,2126,2128,2129,2131,2134,2135,2138,2141,2142,2144,2145,2146,2147,2150,2151,2152,2153,2157,2159,2162,2163,2165,2168,2170,2173,2176,2177,2179,2188,2210,2321,2325,2328,2336,2369,2370,2391,2394,2397,2402,2403,2414,2419,2439,2461,2476,2477,2484,2485,2489,2493,2496,2499,2503,2506,2510,2513,2516,2520,2521,2522,2524,2525,2534,2685,2687,2742,2744,2762,2773,2774,2775,2795,2797,2808,2817,2822,2831,2837,2838,2841,2847,2848,2861,2862,2866,2872,2879,2894,2897,2898,2902,2903,2905,2950,2952,2978,2983,2984,2986,2994,2995,3001,3002,3003,3004,3005,3008,3010,3038,3039,3040,3041,3044,3048,3052,3056,3057,3058,3063,3075,3080,3084,3085,3086,3088,3105,3107,3143,3147,3159,3179,3193,3199,3203,3214,3218,3230,3239,3242,3244,3247,3249,3251,3254,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3277,3279,3281,3285,3288,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3304,3307,3308,3309,3310,3314,3316,3332,3337,3340,3341,3343,3346,3348,3349,3350,3351,3352,3355,3356,3357,3359,3360,3362,3363,3366,3368,3371,3373,3375,3377,3378,3379,3381,3382,3384,3389,3390,3391,3392,3393,3394,3397,3399,3401,3405,3409,3410,3416,3423,3424,3427,3430,3431,3433,3437,3438,3473,3474,3480,3486,3489,3492,3495,3497,3499,3503,3506,3508,3511,3512,3515,3522,3523,3525,3530,3535,3538,3542,3544,3545,3547,3550,3551,3555,3559,3561,3568,3580,3581,3590,3592,3596,3597,3598,3599,3603,3651,3653,3657,3691,3696,3758,3762,3763,3795,3805,3806,3807,3811,3820,3826,3827,3828,3829,3830,3859,3958,3964,3965,3971,3977,3978,3984,3987,3995,4018,4035,4038,4041,4043,4047,4049,4050,4061,4066,4067,4073,4074,4106,4111,4119,4126,4130,4131,4143,4149,4150,4151,4152,4175,4187,4192,4206,4208,4209,4222,4223,4234,4254,4260,4261,4262,4274,4277,4279,4280,4281,4289,4291,4301,4302,4309,4313,4316,4323,4328,4329,4331,4335,4362,4363,4387,4393,4405,4409,4412,4424,4425,4428,4429,4435,4436,4437,4439,4440,4441,4442,4447,4458,4459,4463,4482,4500,4522,4551,4553,4554,4557,4571,4595,4602,4603,4609,4615,4620,4643,4650,4653,4659,4660,4682,4687,4699,4713,4729,4736,4737,4741,4748,4774,4815,4857,4867,4868,4875,4876,4877,4878,4879,4886,4888,4901,4909,4918,4921,4929,4931,4934,4935,4937,4943,4945,4947,4957,4965,4968,4972,4974,4975,4979,4986,4997,5001,5002,5006,5019,5030,5032,5035,5046,5056,5058,5060,5061,5062,5064,5067,5070,5071,5072,5073,5074,5075,5085,5096,5097,5100,5102,5113,5114,5118,5121,5125,5126,5127,5129,5132,5133,5135,5136,5137,5139,5140,5141,5146,5153,5157,5162,5163,5166,5175,5180,5195,5196,5202,5203,5210,5218,5225,5233,5236,5238,5244,5248,5249,5256,5257,5263,5264,5265,5271,5272,5274,5275,5278,5280,5283,5285,5288,5289,5291,5293,5297,5298,5300,5302,5309,5311,5314,5317,5321,5323,5325,5326,5328,5329,5330,5332,5335,5337,5338,5340,5342,5345,5346,5347,5350,5358,5361,5363,5364,5365,5367,5370,5375,5377,5379,5380,5381,5385,5386,5393,5394,5398,5400,5403,5404,5405,5406,5410,5412,5416,5419,5420,5421,5426,5427,5428,5432,5433,5434,5435,5439,5442,5443,5445,5446,5447,5448,5450,5451,5454,5461,5463,5465,5470,5471,5472,5473,5474,5475,5476,5478,5479,5480,5481,5484,5487,5489,5490,5494,5496,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5510,5514,5515,5516,5517,5518,5519,5520,5521,5522,5524,5525,5526,5529,5530,5531,5535,5537,5539,5540,5541,5542,5544,5545,5546,5550,5551,5552,5553,5554,5555,5556,5559,5560,5561,5565,5566,5579,5580,5590,5611,5623,5624,5625,5626,5638,5640,5641,5642,5644,5646,5647,5650,5651,5652,5655,5656,5658,5660,5661,5662,5667,5669,5672,5673,5675,5676,5677,5679,5683,5684,5685,5693,5699,5702,5705,5719,5720,5721,5725,5726,5730,5734,5736,5741,5745,5749,5763,5764,5775,5778,5779,5785,5788,5789,5792,5805,5809,5810,5819,5843,5845,5846,5849,5856,5859,5860,5869,5873,5874,5880,5883,5891,5897,5935,5939,5940,5941,5946,5948,5959,5988,5989,6016,6019,6022,6028,6033,6037,6051,6055,6056,6057,6060,6063,6072,6077,6078,6085,6092,6094,6101,6103,6104,6118,6120,6121,6122,6126,6129,6167,6168,6187,6190,6191,6196,6265,6275,6278,6287,6288,6291,6292,6295,6377,6381,6425,6426,6429,6443,6446,6450,6452,6453,6454,6457,6459,6467,6469,6473,6474,6486,6488,6489,6495,6497,6528,6530,6536,6537,6538,6539,6540,6541,6542,6543,6546,6547,6548,6555,6559,6562,6564,6565,6566,6567,6568,6569,6570,6590,6596,6597,6605,6607,6608,6613,6615,6642,6646,6653,6658,6664,6667,6668,6677,6698,6721,6738,6739,6742,6747,6753,6754,6782,6792,6817,6822,6824,6831,6836,6839,6844,6846,6847,6849,6853,6855,6856,6857,6864,6868,6870,6871,6874,6875,6886,6887,6889,6890,6898,6900,6905,6907,6913,6915,6918,6922,6923,6924,6925,6927,6930,6931,6940,6942,6956,6957,6958,6960,6964,6966,6969,6994,7034,7036,7048,7049,7054,7062,7067,7070,7088,7103,7107,7110,7114,7116,7119,7120,7124,7157,7158,7160,7162,7164,7165,7169,7171,7173,7174,7185,7190,7194,7196,7200,7204,7219,7220,7223,7225,7227,7230,7234,7249,7252,7255,7256,7264,7265,7272,7273,7278,7281,7282,7289,7294,7295,7304,7312,7317,7324,7326,7330,7331,7334,7337,7338,7340,7343,7365,7372,7374,7376,7387,7388,7395,7404,7411,7412,7419,7434,7439,7445,7456,7458,7464,7465,7472,7474,7475,7477,7481,7482,7493,7496,7497,7498,7499,7504,7507,7509,7511,7517,7532,7535,7538,7542,7544,7545,7553,7563,7569,7571,7577,7579,7586,7589,7595,7602,7603,7604,7605,7606,7626,7647,7651,7657,7665,7678,7702,7710,7732,7739,7742,7744,7745,7756,7757,7759,7760,7761,7764,7767,7769,7778,7780,7783,7792,7802,7804,7824,7827,7829,7846,7849,7850,7851,7852,7857,7868,7872,7876,7880,7882,7886,7889,7892,7897,7906,7913,7919,7920,7921,7926,7928,7934,7939,7941,7948,7957,7960,7962,7965,7970,7971,7972,7973,7974,7975,7976,7980,7990,7995,7997,8000,8001,8013,8032,8036,8044,8045,8068,8070,8075,8077,8089,8092,8094,8107,8115,8118,8119,8131,8138,8140,8155,8167,8180,8186,8187,8190,8195,8243,8262,8268,8269,8272,8279,8280,8292,8296,8299,8303,8304,8309,8321,8329,8330,8331,8333,8339,8342,8343,8345,8347,8366,8367,8370,8380,8381,8384,8385,8400,8403,8415,8424,8443,8444,8445,8456,8457,8461,8462,8466,8468,8469,8471,8472,8481,8489,8490,8491,8492,8498,8507,8524,8532,8533,8534,8535,8536,8554,8555,8557,8564,8575,8582,8590,8597,8624,8625,8639,8640,8641,8644,8646,8657,8658,8659,8669,8670,8672,8676,8716,8718,8721,8723,8725,8727,8728,8730,8735,8736,8743,8744,8769,8774,8776,8787,8790,8796,8798,8800,8802,8806,8812,8813,8818,8823,8824,8827,8828,8829,8837,8838,8839,8842,8843,8871,8881,8903,8909,8965,8981,8990,8993,8996,9001,9004,9010,9012,9020,9026,9031,9041,9056,9057,9063,9071,9072,9073,9082,9084,9086,9089,9091,9099,9100,9110,9112,9114,9118,9119,9120,9121,9130,9141,9142,9147,9149,9166,9167,9171,9175,9182,9188,9192,9193,9194,9200,9201,9205,9206,9212,9217,9220,9222,9226,9247,9252,9254,9256,9263,9272,9278,9280,9288,9294,9297,9303,9310,9324,9331,9333,9334,9346,9351,9353,9354,9359,9362,9364,9366,9385,9391,9398,9399,9405,9415,9416,9417,9431,9433,9436,9444,9455,9457,9476,9480,9488,9496,9497,9498,9508,9511,9513,9519,9523,9525,9528,9529,9537,9539,9549,9550,9551,9561,9563,9567,9568,9569,9572,9578,9579,9585,9593,9602,9626,9630,9631,9632,9634,9642,9643,9644,9659,9660,9664,9672,9673,9684,9685,9686,9693,9696,9697,9706,9709,9716,9726,9746,9750,9759,9774,9776,9782,9791,9793,9797,9798,9803,9807,9812,9814,9822,9824,9827,9831,9853,9856,9863,9865,9866,9869,9873,9877,9878,9879,9882,9883,9894,9899,9900,9902,9907,9911,9914,9920,9923,9924,9929,9931,9934,9941,9943,9945,9946,9949,9953,9960,9961,9965,9968,9982,9985,9987,9992,9995,9997,10001,10002,10005,10008,10009,10018,10020,10021,10023,10029,10030,10031,10036,10046,10051,10053,10054,10056,10060,10071,10079,10086,10093,10094,10099,10102,10108,10111,10113,10115,10117,10118,10127,10128,10136,10141,10144,10147,10152,10158,10162,10165,10174,10187,10190,10191,10193,10206,10207,10209,10216,10225,10238,10336,10338,10340,10412,10429,10663,10672,10673,10678,10691,10692,10694,10698,10737,10739,10753,10763,10773,10788,10793,10804,10841,10867,10868,10869,10872,10876,10910,10926,10937,10940,10951,10958,10964,10972,10982,10994,11000,11005,11017,11043,11087,11132,11133,11146,11163,11165,11189,11205,11206,11217,11264,11274,11277,11282,11287,11291,11298,11300,11308,11314,11318,11326,11331,11337,11342,11353,11354,11355,11357,11361,11366,11368,11370,11373,11375,11383,11393,11410,11411,11418,11444,11449,11451,11452,11458,11460,11462,11463,11465,11473,11493,11503,11507,11509,11516,11517,11521,11526,11527,11533,11557,11558,11559,11569,11572,11574,11582,11586,11593,11594,11597,11599,11602,11604,11619,11620,11624,11631,11636,11641,11643,11644,11655,11664,11670,11675,11682,11683,11696,11697,11699,11702,11706,11708,11719,11720,11724,11730,11750,11757,11765,11774,11777,11784,11785,11791,11798,11825,11830,11832,11836,11844,11845,11846,11853,11886,11887,11888,11890,11892,11900,11901,11916,11918,11931,11954,11958,11961,11966,11984,11987,11988,12005,12010,12086,12089,12090,12103,12113,12216,12238,12246,12249,12251,12258,12260,12265,12303,12308,12310,12319,12323,12324,12332,12369,12370,12390,12391,12394,12395,12396,12397,12398,12400,12402,12404,12409,12410,12412,12413,12423,12481,12484,12485,12510,12527,12528,12530,12531,12532,12540,12541,12542,12545,12546,12579,12580,12588,12672,12673,12677,12681,12689,12690,12692,12697,12717,12718,12719,12721,12734,12738,12739,12749,12751,12766,12773,12778,12788,12791,12796,12806,12836,12844,12849,12850,12861,12862,12868,12879,12891,12901,12903,12914,12915,12920,12922,12930,12936,12946,12948,12951,12957,12963,12970,12972,12975,12988,12999,13008,13009,13015,13016,13017,13018,13019,13024,13027,13029,13038,13039,13040,13041,13044,13047,13049,13054,13056,13058,13062,13064,13066,13067,13069,13072,13075,13076,13079,13083,13084,13086,13093,13096,13100,13101,13104,13105,13106,13107,13108,13110,13119,13123,13131,13137,13139,13142,13152,13153,13155,13164,13169,13173,13183,13185,13186,13188,13193,13197,13202,13206,13209,13212,13218,13221,13222,13225,13231,13232,13233,13235,13244,13251,13255,13260,13262,13264,13270,13281,13293,13295,13297,13300,13304,13305,13313,13319,13324,13334,13335,13339,13344,13345,13346,13347,13352,13359,13364,13365,13369,13371,13380,13384,13394,13396,13400,13401,13403,13405,13409,13425,13427,13428,13430,13431,13436,13437,13448,13449,13451,13452,13454,13456,13457,13458,13461,13464,13466,13469,13470,13475,13486,13487,13492,13495,13496,13500,13503,13511,13512,13517,13518,13519,13520,13521,13522,13523,13544,13548,13554,13556,13567,13570,13574,13577,13581,13582,13584,13585,13591,13592,13603,13605,13608,13611,13618,13619,13620,13622,13631,13637,13641,13642,13643,13644,13647,13649,13650,13657,13659,13662,13663,13664,13671,13677,13692,13695,13702,13703,13706,13707,13710,13714,13715,13716,13718,13730,13732,13733,13734,13735,13740,13741,13742,13743,13748,13749,13752,13755,13762,13773,13774,13788,13790,13792,13793,13804,13819,13838,13841,13850,13851,13856,13858,13869,13887,13898,13900,13904,13905,13916,13924,13925,13929,13930,13937,13940,13942,13943,13944,13963,13977,13978,14007,14031,14033,14039,14047,14054,14084,14090,14091,14092,14102,14104,14139,14140,14154,14155,14156,14159,14161,14206,14209,14210,14228,14233,14236,14239,14245,14254,14274,14277,14278,14288,14304,14320,14331,14339,14357,14360,14361,14382,14383,14398,14408,14410,14418,14421,14425,14430,14442,14450,14469,14471,14474,14475,14478,14481,14483,14486,14499,14503,14504,14518,14521,14529,14531,14534,14535,14536,14537,14550,14553,14567,14574,14577,14580,14583,14588,14589,14592,14616,14655,14657,14665,14667,14668,14676,14677,14680,14707,14708,14717,14723,14724,14728,14743,14744,14751,14754,14755,14759,14763,14766,14768,14784,14793,14805,14817,14829,14833,14854,14882,14891,14893,14939,14940,14955,14968,14991,15025,15042,15045,15057,15077,15086,15095,15097,15100,15112,15117,15120,15121,15123,15135,15143,15145,15150,15151,15152,15155,15163,15166,15169,15176,15177,15180,15191,15216,15222,15226,15228,15238,15245,15270,15277,15298,15313,15316,15348,15356,15357,15359,15360,15369,15374,15400,15402,15405,15417,15426,15438,15440,15441,15445,15464,15511,15516,15517,15518,15520,15538,15548,15558,15559,15565,15620,15634,15658,15662,15664,15675,15676,15685,15703,15737,15739,15753,15771,15772,15790,15809,15810,15811,15831,15835,15836,15837,15847,15875,15886,15887,15901,15904,15909,15914,15944,15949,15958,15959,15978,15981,15983,15985,15991,16000,16007,16008,16034,16039,16051,16053,16055,16056,16074,16085,16087,16108,16111,16113,16122,16126,16134,16139,16140,16149,16150,16162,16191,16192,16228,16245,16251,16254,16255,16260,16295,16361,16371,16377,16425,16428,16429,16430,16452,16470,16478,16479,16485,16502,16506,16509,16523,16530,16567,16568,16569,16570,16573,16574,16575,16586,16598,16603,16613,16628,16631,16656,16658,16659,16675,16678,16686,16692,16709,16722,16740,16746,16748,16755,16770,16777,16782,16794,16814,16819,16845,16848,16850,16869,16878,16880,16886,16893,16894,16899,16903,16906,16927,16930,16932,16934,16935,16949,16955,16958,16973,16975,16977,16994,16997,17001,17010,17021,17035,17039,17057,17062,17086,17091,17093,17099,17123,17140,17142,17143,17158,17160,17170,17171,17189,17191,17193,17201,17209,17216,17217,17218,17231,17243,17248,17253,17254,17262,17263,17266,17267,17269,17271,17272,17276,17277,17281,17291,17295,17296,17302,17305,17311,17323,17326,17330,17343,17354,17356,17384,17389,17393,17394,17397,17402,17407,17412,17417,17419,17420,17422,17423,17424,17427,17439,17443,17446,17449,17450,17457,17463,17466,17471,17475,17486,17487,17490,17503,17504,17507,17508,17510,17515,17517,17518,17524,17525,17529,17543,17545,17572,17573,17575,17604,17626,17641,17647,17657,17660,17665,17667,17677,17689,17714,17716,17743,17745,17748,17751,17764,17766,17778,17783,17789,17791,17794,17799,17807,17817,17819,17826,17827,17830,17832,17841,17842,17846,17848,17849,17850,17854,17857,17858,17859,17861,17864,17865,17870,17887,17893,17897,17902,17916,17923,17924,17926,17928,17936,17945,17948,17952,17966,17975,17979,17981,17983,17991,17993,18019,18054,18063,18081,18089,18090,18095,18104,18115,18120,18151,18160,18162,18176,18179,18180,18182,18189,18191,18192,18202,18204,18205,18209,18210,18215,18218,18219,18222,18223,18226,18227,18231,18232,18233,18236,18237,18251,18252,18253,18254,18258,18262,18264,18280,18287,18298,18300,18313,18319,18328,18329,18337,18342,18344,18345,18351,18362,18371,18378,18385,18386,18391,18401,18408,18414,18416,18418,18440,18441,18446,18448,18451,18454,18458,18460,18463,18468,18482,18483,18484,18488,18496,18500,18504,18505,18507,18515,18524,18527,18528,18529,18530,18541,18545,18551,18552,18553,18554,18562,18565,18566,18574,18578,18579,18580,18581,18582,18584,18588,18593,18596,18599,18600,18602,18604,18605,18606,18607,18610,18613,18615,18620,18621,18622,18624,18625,18630,18633,18635,18646,18651,18659,18667,18668,18669,18679,18682,18683,18687,18694,18695,18697,18699,18708,18711,18713,18714,18718,18720,18724,18727,18733,18734,18737,18740,18741,18742,18745,18748,18750,18751,18753,18758,18763,18764,18769,18775,18776,18777,18781,18785,18788,18789,18790,18792,18793,18797,18801,18806,18808,18809,18814,18821,18832,18833,18839,18840,18841,18855,18858,18860,18866,18874,18879,18882,18885,18888,18889,18898,18899,18903,18909,18914,18916,18917,18919,18920,18922,18926,18931,18941,18946,18952,18965,18967,18971,18973,18976,18978,18982,18984,18985,18988,18989,18990,18992,18995,18996,18999,19000,19002,19003,19004,19005,19006,19009,19010,19012,19014,19015,19018,19019,19021,19027,19028,19035,19038,19046,19049,19054,19055,19061,19062,19065,19067,19068,19070,19073,19076,19077,19079,19080,19082,19086,19087,19097,19099,19104,19105,19106,19108,19109,19112,19118,19125,19128,19132,19138,19139,19141,19143,19145,19146,19147,19150,19151,19155,19157,19159,19160,19165,19173,19175,19178,19180,19184,19185,19188,19191,19205,19206,19208,19211,19215,19217,19222,19224,19226,19229,19234,19237,19238,19245,19247,19249,19253,19262,19266,19267,19273,19276,19277,19278,19280,19283,19287,19293,19296,19297,19298,19302,19303,19306,19307,19308,19311,19315,19322,19325,19326,19328,19329,19332,19333,19334,19335,19338,19340,19342,19343,19344,19347,19349,19350,19353,19356,19361,19363,19365,19368,19373,19379,19380,19384,19390,19399,19401,19402,19411,19412,19413,19418,19425,19431,19433,19438,19439,19447,19450,19459,19460,19464,19465,19466,19467,19469,19470,19472,19475,19480,19481,19482,19484,19486,19488,19491,19494,19500,19501,19504,19505,19507,19508,19513,19516,19520,19522,19524,19526,19527,19530,19532,19537,19538,19540,19541,19542,19561,19563,19567,19576,19577,19591,19604,19605,19609,19610,19611,19616,19633,19644,19646,19651,19652,19654,19658,19662,19666,19667,19675,19678,19681,19686,19691,19700,19703,19709,19720,19723,19725,19731,19735,19736,19748,19754,19764,19766,19771,19778,19792,19793,19797,19799,19800,19804,19805,19815,19818,19819,19829,19830,19832,19836,19837,19838,19839,19840,19842,19847,19866,19867,19872,19873,19876,19878,19883,19888,19893,19894,19910,19912,19913,19915,19918,19919,19920,19922,19939,19940,19941,19944,19946,19948,19955,19956,19961,19965,19979,19980,19985,19988,19989,19992,19993,19996,19999,20001,20004,20013,20015,20020,20024,20027,20031,20032,20033,20037,20043,20050,20060,20066,20068,20073,20076,20079,20088,20091,20107,20110,20113,20136,20137,20139,20145,20147,20150,20152,20158,20160,20163,20169,20171,20173,20175,20179,20186,20190,20205,20206,20208,20211,20217,20221,20229,20231,20238,20251,20255,20256,20269,20276,20282,20296,20313,20316,20319,20320,20322,20324,20333,20334,20340,20341,20346,20349,20353,20354,20356,20361,20376,20385,20387,20390,20391,20392,20396,20397,20403,20426,20428,20432,20434,20435,20436,20437,20442,20447,20454,20473,20476,20481,20507,20508,20509,20511,20520,20521,20522,20523,20527,20528,20537,20543,20552,20553,20555,20557,20573,20581,20584,20586,20588,20590,20596,20622,20632,20644,20649,20658,20666,20667,20682,20686,20689,20692,20693,20703,20704,20705,20708,20713,20714,20715,20717,20720,20727,20729,20730,20731,20742,20749,20754,20759,20766,20767,20778,20784,20790,20791,20793,20796,20803,20804,20805,20809,20811,20813,20818,20823,20825,20834,20835,20837,20841,20842,20843,20844,20855,20856,20857,20860,20861,20862,20863,20864,20865,20866,20867,20868,20869,20870,20871,20872,20873,20874,20877,20878,20879,20881,20890,20895,20903,20908,20911,20912,20916,20919,20920,20927,20928,20933,20934,20939,20942,20943,20944,20949,20957,20970,20971,20976,21000,21002,21004,21005,21006,21015,21034,21055,21062,21063,21068,21069,21070,21072,21073,21075,21078,21079,21081,21083,21093,21113,21114,21115,21119,21120,21121,21159,21160,21166,21181,21188,21194,21198,21199,21201,21217,21225,21238,21244,21255,21257,21261,21275,21284,21285,21286,21288,21289,21292,21293,21295,21296,21297,21300,21302,21307,21311,21315,21316,21317,21321,21323,21335,21341,21342,21350,21353,21364,21366,21371,21373,21374,21381,21388,21389,21390,21391,21415,21419,21420,21439,21444,21455,21458,21476,21477,21532,21566,21579,21601,21607,21608,21612,21616,21617,21618,21619,21620,21621,21624,21627,21630,21638,21657,21664,21673,21684,21690,21691,21713,21716,21745,21756,21965,21968,21983,21985,21994,21998,22000,22001,22002,22006,22018,22022,22023,22031,22032,22040,22042,22048,22051,22053,22055,22056,22057,22060,22061,22063,22065,22073,22074,22078,22082,22089,22091,22100,22101,22103,22104,22107,22109,22111,22112,22113,22115,22121,22122,22128,22131,22143,22147,22155,22156,22158,22165,22173,22187,22188,22192,22194,22198,22199,22200,22207,22210,22211,22212,22223,22225,22228,22234,22243,22245,22247,22249,22260,22270,22279,22285,22307,22313,22314,22318,22319,22330,22337,22338,22360,22364,22367,22370,22373,22375,22377,22380,22383,22385,22391,22393,22394,22400,22401,22402,22403,22405,22416,22417,22418,22419,22420,22421,22425,22428,22434,22441,22443,22444,22445,22446,22456,22460,22463,22467,22470,22472,22474,22477,22478,22480,22483,22489,22492,22493,22495,22496,22499,22502,22503,22504,22505,22510,22515,22518,22526,22528,22537,22544,22567,22568,22570,22578,22579,22584,22590,22598,22600,22601,22602,22605,22609,22612,22613,22619,22623,22632,22640,22645,22646,22648,22662,22663,22682,22687,22693,22696,22698,22699,22712,22713,22729,22731,22733,22735,22736,22737,22743,22744,22745,22748,22751,22752,22753,22754,22755,22761,22785,22793,22799,22800,22805,22806,22822,22823,22825,22827,22831,22833,22835,22842,22858,22867,22874,22882,22884,22890,22899,22914,22927,22928,22935,22968,22969,22975,22976,22986,22987,22990,23004,23007,23022,23026,23033,23034,23037,23040,23044,23052,23061,23062,23063,23064,23070,23074,23075,23079,23085,23086,23087,23089,23091,23099,23105,23109,23113,23118,23119,23125,23126,23127,23130,23131,23138,23139]]],["+",[425,399,[[0,21,20,0,20,[[3,1,1,0,1],[10,1,1,1,2],[15,1,1,2,3],[18,2,2,3,5],[22,1,1,5,6],[23,3,3,6,9],[28,1,1,9,10],[29,1,1,10,11],[30,2,1,11,12],[33,1,1,12,13],[39,1,1,13,14],[41,1,1,14,15],[43,3,3,15,18],[46,2,2,18,20]]],[1,20,18,20,38,[[50,1,1,20,21],[54,2,1,21,22],[58,1,1,22,23],[61,6,5,23,28],[62,1,1,28,29],[63,1,1,29,30],[64,1,1,30,31],[65,1,1,31,32],[68,1,1,32,33],[70,2,2,33,35],[71,1,1,35,36],[72,1,1,36,37],[83,1,1,37,38]]],[2,35,33,38,71,[[91,2,1,38,39],[92,1,1,39,40],[95,1,1,40,41],[96,3,3,41,44],[101,1,1,44,45],[105,1,1,45,46],[106,2,2,46,48],[107,3,3,48,51],[108,2,1,51,52],[109,1,1,52,53],[110,2,2,53,55],[111,4,4,55,59],[112,8,8,59,67],[114,2,2,67,69],[116,2,2,69,71]]],[3,24,23,71,94,[[121,1,1,71,72],[122,1,1,72,73],[127,2,2,73,75],[128,1,1,75,76],[129,1,1,76,77],[130,2,2,77,79],[134,2,2,79,81],[135,2,2,81,83],[138,2,2,83,85],[139,2,1,85,86],[140,1,1,86,87],[141,1,1,87,88],[144,3,3,88,91],[145,3,3,91,94]]],[4,28,28,94,122,[[153,3,3,94,97],[154,1,1,97,98],[157,3,3,98,101],[159,2,2,101,103],[160,1,1,103,104],[161,1,1,104,105],[163,1,1,105,106],[165,1,1,106,107],[166,1,1,107,108],[169,1,1,108,109],[172,4,4,109,113],[173,1,1,113,114],[174,1,1,114,115],[180,4,4,115,119],[184,2,2,119,121],[186,1,1,121,122]]],[5,8,8,122,130,[[188,1,1,122,123],[193,1,1,123,124],[194,1,1,124,125],[197,1,1,125,126],[199,1,1,126,127],[200,1,1,127,128],[202,1,1,128,129],[210,1,1,129,130]]],[6,13,11,130,141,[[212,2,2,130,132],[216,1,1,132,133],[218,1,1,133,134],[221,3,3,134,137],[224,1,1,137,138],[225,1,1,138,139],[231,4,2,139,141]]],[7,3,2,141,143,[[233,1,1,141,142],[235,2,1,142,143]]],[8,16,15,143,158,[[236,1,1,143,144],[237,1,1,144,145],[238,1,1,145,146],[241,1,1,146,147],[247,1,1,147,148],[249,1,1,148,149],[251,2,2,149,151],[252,1,1,151,152],[253,1,1,152,153],[255,2,1,153,154],[256,1,1,154,155],[260,3,3,155,158]]],[9,7,7,158,165,[[277,1,1,158,159],[278,1,1,159,160],[280,1,1,160,161],[284,2,2,161,163],[287,1,1,163,164],[288,1,1,164,165]]],[10,11,11,165,176,[[291,1,1,165,166],[292,1,1,166,167],[293,1,1,167,168],[294,1,1,168,169],[300,1,1,169,170],[301,2,2,170,172],[305,1,1,172,173],[310,2,2,173,175],[312,1,1,175,176]]],[11,13,13,176,189,[[321,3,3,176,179],[322,1,1,179,180],[325,1,1,180,181],[329,3,3,181,184],[332,3,3,184,187],[334,1,1,187,188],[335,1,1,188,189]]],[12,4,4,189,193,[[342,1,1,189,190],[350,1,1,190,191],[351,1,1,191,192],[360,1,1,192,193]]],[13,11,11,193,204,[[373,1,1,193,194],[375,1,1,194,195],[382,1,1,195,196],[383,1,1,196,197],[386,1,1,197,198],[389,1,1,198,199],[398,2,2,199,201],[399,1,1,201,202],[402,2,2,202,204]]],[15,5,5,204,209,[[417,2,2,204,206],[418,1,1,206,207],[421,1,1,207,208],[425,1,1,208,209]]],[16,6,6,209,215,[[427,1,1,209,210],[430,1,1,210,211],[431,1,1,211,212],[434,3,3,212,215]]],[17,16,16,215,231,[[438,1,1,215,216],[439,1,1,216,217],[440,2,2,217,219],[447,1,1,219,220],[450,2,2,220,222],[456,1,1,222,223],[460,1,1,223,224],[461,1,1,224,225],[464,2,2,225,227],[465,1,1,227,228],[466,1,1,228,229],[471,1,1,229,230],[475,1,1,230,231]]],[18,32,30,231,261,[[487,1,1,231,232],[492,2,1,232,233],[502,1,1,233,234],[511,1,1,234,235],[512,1,1,235,236],[514,1,1,236,237],[520,1,1,237,238],[521,2,2,238,240],[526,2,2,240,242],[532,1,1,242,243],[546,1,1,243,244],[550,1,1,244,245],[553,1,1,245,246],[555,4,4,246,250],[583,1,1,250,251],[596,1,1,251,252],[601,1,1,252,253],[602,1,1,253,254],[604,2,1,254,255],[606,1,1,255,256],[608,1,1,256,257],[614,1,1,257,258],[616,2,2,258,260],[624,1,1,260,261]]],[19,9,8,261,269,[[629,1,1,261,262],[631,2,1,262,263],[639,1,1,263,264],[652,1,1,264,265],[657,3,3,265,268],[658,1,1,268,269]]],[20,14,13,269,282,[[659,4,3,269,272],[660,2,2,272,274],[663,1,1,274,275],[664,1,1,275,276],[665,2,2,276,278],[666,1,1,278,279],[667,1,1,279,280],[669,1,1,280,281],[670,1,1,281,282]]],[21,2,2,282,284,[[675,1,1,282,283],[678,1,1,283,284]]],[22,32,30,284,314,[[679,1,1,284,285],[683,1,1,285,286],[691,1,1,286,287],[692,2,2,287,289],[694,1,1,289,290],[701,1,1,290,291],[703,1,1,291,292],[705,1,1,292,293],[707,4,3,293,296],[708,1,1,296,297],[711,1,1,297,298],[712,1,1,298,299],[717,3,3,299,302],[723,1,1,302,303],[732,1,1,303,304],[734,3,2,304,306],[735,1,1,306,307],[736,2,2,307,309],[737,1,1,309,310],[740,1,1,310,311],[741,2,2,311,313],[742,1,1,313,314]]],[23,28,23,314,337,[[745,1,1,314,315],[750,1,1,315,316],[752,1,1,316,317],[755,1,1,317,318],[757,2,2,318,320],[758,1,1,320,321],[759,3,2,321,323],[762,1,1,323,324],[763,1,1,324,325],[766,3,2,325,327],[769,2,1,327,328],[775,1,1,328,329],[776,1,1,329,330],[780,1,1,330,331],[786,1,1,331,332],[790,1,1,332,333],[793,3,2,333,335],[794,2,1,335,336],[795,1,1,336,337]]],[24,2,2,337,339,[[797,1,1,337,338],[801,1,1,338,339]]],[25,35,32,339,371,[[804,2,2,339,341],[806,1,1,341,342],[813,3,3,342,345],[818,2,2,345,347],[819,6,4,347,351],[821,1,1,351,352],[823,2,2,352,354],[825,2,2,354,356],[827,1,1,356,357],[832,1,1,357,358],[834,8,7,358,365],[835,1,1,365,366],[837,2,2,366,368],[839,1,1,368,369],[845,1,1,369,370],[849,1,1,370,371]]],[26,6,5,371,376,[[857,1,1,371,372],[858,1,1,372,373],[859,1,1,373,374],[860,2,1,374,375],[861,1,1,375,376]]],[27,4,4,376,380,[[863,1,1,376,377],[871,1,1,377,378],[872,1,1,378,379],[874,1,1,379,380]]],[28,2,2,380,382,[[877,2,2,380,382]]],[29,5,5,382,387,[[881,2,2,382,384],[882,1,1,384,385],[884,1,1,385,386],[885,1,1,386,387]]],[32,1,1,387,388,[[893,1,1,387,388]]],[33,2,2,388,390,[[900,1,1,388,389],[902,1,1,389,390]]],[34,2,2,390,392,[[903,1,1,390,391],[904,1,1,391,392]]],[35,3,3,392,395,[[906,1,1,392,393],[908,2,2,393,395]]],[37,4,3,395,398,[[921,1,1,395,396],[924,3,2,396,398]]],[38,1,1,398,399,[[926,1,1,398,399]]]],[84,272,382,476,479,577,599,629,641,803,831,908,994,1187,1268,1346,1347,1350,1439,1442,1540,1634,1746,1836,1838,1855,1859,1864,1889,1909,1946,1965,2049,2085,2090,2121,2157,2503,2773,2795,2879,2902,2903,2905,3048,3218,3247,3249,3257,3279,3281,3301,3340,3366,3368,3371,3379,3382,3390,3405,3409,3410,3423,3427,3430,3437,3438,3495,3497,3598,3599,3795,3827,4038,4050,4067,4106,4126,4143,4260,4277,4301,4302,4393,4412,4441,4459,4482,4595,4602,4603,4609,4620,4643,4901,4931,4934,4945,5056,5058,5075,5126,5127,5141,5163,5225,5289,5314,5381,5428,5435,5439,5443,5461,5496,5646,5658,5676,5677,5764,5788,5846,5883,5988,6019,6122,6167,6196,6275,6495,6546,6555,6664,6753,6844,6849,6864,6922,6942,7107,7110,7157,7196,7234,7252,7295,7343,7481,7532,7603,7604,7657,7678,7732,7780,7882,7886,7897,8269,8296,8381,8491,8498,8597,8640,8718,8806,8842,8871,9100,9114,9118,9254,9431,9433,9523,9774,9776,9782,9824,9878,10002,10008,10009,10111,10113,10115,10147,10174,10429,10773,10788,10994,11331,11366,11521,11533,11624,11664,11890,11900,11931,12005,12010,12390,12395,12404,12532,12673,12739,12788,12796,12844,12849,12850,12914,12948,12957,12975,13142,13206,13218,13365,13466,13475,13554,13556,13574,13622,13742,13869,14047,14092,14254,14410,14418,14478,14567,14580,14583,14665,14667,14754,14939,15042,15086,15121,15150,15152,15155,15658,15991,16108,16113,16122,16139,16150,16228,16245,16255,16361,16452,16506,16740,17123,17272,17277,17281,17302,17323,17326,17330,17343,17354,17412,17419,17443,17450,17475,17487,17518,17529,17604,17647,17667,17748,17926,17948,17952,17983,18089,18120,18162,18204,18205,18209,18236,18280,18319,18414,18416,18418,18581,18740,18763,18764,18785,18789,18793,18814,18860,18882,18885,18888,18952,19099,19160,19229,19273,19276,19302,19326,19333,19390,19418,19460,19467,19540,19709,19748,19847,19979,20050,20147,20150,20211,20255,20324,20447,20508,20520,20557,20686,20692,20708,20841,20844,20860,20874,20878,20881,20928,21002,21005,21068,21083,21121,21238,21284,21285,21296,21297,21300,21302,21307,21321,21364,21366,21444,21608,21713,21965,22001,22022,22073,22091,22115,22228,22247,22279,22337,22338,22400,22402,22417,22463,22474,22590,22687,22729,22735,22752,22805,22822,22823,23033,23086,23087,23119]]],["Nay",[17,17,[[0,5,5,0,5,[[17,1,1,0,1],[18,1,1,1,2],[22,1,1,2,3],[41,2,2,3,5]]],[3,1,1,5,6,[[138,1,1,5,6]]],[5,2,2,6,8,[[191,1,1,6,7],[210,1,1,7,8]]],[6,1,1,8,9,[[222,1,1,8,9]]],[8,2,2,9,11,[[243,1,1,9,10],[247,1,1,10,11]]],[9,2,2,11,13,[[282,1,1,11,12],[290,1,1,12,13]]],[10,3,3,13,16,[[292,1,1,13,14],[293,2,2,14,16]]],[12,1,1,16,17,[[358,1,1,16,17]]]],[439,459,582,1262,1264,4405,5948,6497,6874,7388,7472,8444,8716,8800,8838,8839,10958]]],["Neither",[56,56,[[0,1,1,0,1,[[16,1,1,0,1]]],[1,2,2,1,3,[[69,1,1,1,2],[72,1,1,2,3]]],[2,7,7,3,10,[[107,2,2,3,5],[110,3,3,5,8],[111,2,2,8,10]]],[3,2,2,10,12,[[134,1,1,10,11],[152,1,1,11,12]]],[4,10,10,12,22,[[157,4,4,12,16],[159,2,2,16,18],[168,1,1,18,19],[169,1,1,19,20],[181,1,1,20,21],[182,1,1,21,22]]],[6,6,6,22,28,[[211,5,5,22,27],[218,1,1,27,28]]],[11,1,1,28,29,[[333,1,1,28,29]]],[13,2,2,29,31,[[379,1,1,29,30],[399,1,1,30,31]]],[17,3,3,31,34,[[444,1,1,31,32],[458,1,1,32,33],[466,1,1,33,34]]],[18,1,1,34,35,[[606,1,1,34,35]]],[22,1,1,35,36,[[697,1,1,35,36]]],[23,6,6,36,42,[[746,1,1,36,37],[749,1,1,37,38],[760,1,1,38,39],[761,1,1,39,40],[777,1,1,40,41],[779,1,1,41,42]]],[25,10,10,42,52,[[817,1,1,42,43],[818,1,1,43,44],[819,1,1,44,45],[824,1,1,45,46],[837,1,1,46,47],[838,1,1,47,48],[840,1,1,48,49],[845,3,3,49,52]]],[26,2,2,52,54,[[858,2,2,52,54]]],[28,1,1,54,55,[[877,1,1,54,55]]],[29,1,1,55,56,[[880,1,1,55,56]]]],[402,2077,2147,3269,3274,3356,3357,3360,3394,3401,4279,4888,5071,5072,5073,5074,5114,5137,5364,5381,5693,5721,6536,6538,6539,6540,6542,6754,10127,11473,11916,13084,13431,13618,16140,18019,18971,19082,19343,19379,19793,19830,20813,20842,20865,21015,21374,21420,21477,21619,21620,21621,21994,21998,22319,22394]]],["No",[15,15,[[4,1,1,0,1,[[176,1,1,0,1]]],[6,1,1,1,2,[[225,1,1,1,2]]],[8,1,1,2,3,[[236,1,1,2,3]]],[10,1,1,3,4,[[293,1,1,3,4]]],[17,3,3,4,7,[[458,1,1,4,5],[459,1,1,5,6],[463,1,1,6,7]]],[22,2,2,7,9,[[708,1,1,7,8],[713,1,1,8,9]]],[23,2,2,9,11,[[767,1,1,9,10],[786,1,1,10,11]]],[25,1,1,11,12,[[830,1,1,11,12]]],[36,1,1,12,13,[[910,1,1,12,13]]],[37,2,2,13,15,[[914,2,2,13,15]]]],[5531,6942,7227,8838,13425,13451,13522,18233,18329,19501,19989,21194,22867,22927,22935]]],["None",[5,5,[[11,1,1,0,1,[[318,1,1,0,1]]],[12,1,1,1,2,[[352,1,1,1,2]]],[17,1,1,2,3,[[476,1,1,2,3]]],[18,1,1,3,4,[[526,1,1,3,4]]],[25,1,1,4,5,[[817,1,1,4,5]]]],[9686,10793,13898,14655,20767]]],["Not",[9,9,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,1,1,1,2,[[59,1,1,1,2]]],[4,1,1,2,3,[[161,1,1,2,3]]],[17,1,1,3,4,[[451,1,1,3,4]]],[18,1,1,4,5,[[592,1,1,4,5]]],[23,1,1,5,6,[[775,1,1,5,6]]],[25,2,2,6,8,[[804,1,1,6,7],[837,1,1,7,8]]],[37,1,1,8,9,[[914,1,1,8,9]]]],[1469,1788,5162,13255,15831,19723,20508,21391,22928]]],["Nothing",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9130]]],["Notwithstanding",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7265]]],["afore",[1,1,[[11,1,1,0,1,[[332,1,1,0,1]]]],[10102]]],["before",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[20,1,1,1,2,[[665,1,1,1,2]]]],[13235,17446]]],["but",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22403]]],["cannot",[56,53,[[0,3,3,0,3,[[31,1,1,0,1],[37,1,1,1,2],[42,1,1,2,3]]],[1,1,1,3,4,[[59,1,1,3,4]]],[3,2,2,4,6,[[139,1,1,4,5],[151,1,1,5,6]]],[8,1,1,6,7,[[247,1,1,6,7]]],[9,3,3,7,10,[[271,1,1,7,8],[280,1,1,8,9],[289,1,1,9,10]]],[10,3,3,10,13,[[293,1,1,10,11],[298,1,1,11,12],[308,1,1,12,13]]],[13,3,3,13,16,[[368,1,1,13,14],[372,1,1,14,15],[390,1,1,15,16]]],[17,19,18,16,34,[[440,1,1,16,17],[441,1,1,17,18],[444,1,1,18,19],[447,1,1,19,20],[449,1,1,20,21],[452,1,1,21,22],[454,1,1,22,23],[458,3,2,23,25],[463,3,3,25,28],[466,1,1,28,29],[472,3,3,29,32],[476,2,2,32,34]]],[18,3,3,34,37,[[554,1,1,34,35],[565,1,1,35,36],[602,1,1,36,37]]],[20,1,1,37,38,[[668,1,1,37,38]]],[22,4,3,38,41,[[716,2,1,38,39],[722,1,1,39,40],[723,1,1,40,41]]],[23,9,8,41,49,[[748,1,1,41,42],[749,1,1,42,43],[754,2,1,43,44],[768,2,2,44,46],[773,1,1,46,47],[777,1,1,47,48],[790,1,1,48,49]]],[24,1,1,49,50,[[799,1,1,49,50]]],[27,1,1,50,51,[[862,1,1,50,51]]],[31,1,1,51,52,[[892,1,1,51,52]]],[34,1,1,52,53,[[904,1,1,52,53]]]],[940,1141,1312,1782,4436,4878,7481,8138,8370,8659,8824,9012,9353,11217,11300,11697,12963,13008,13054,13142,13186,13270,13305,13427,13428,13519,13520,13521,13619,13774,13788,13792,13905,13916,15097,15316,16111,17507,18408,18553,18581,19046,19080,19206,19527,19532,19652,19797,20068,20361,22104,22579,22753]]],["ere",[4,4,[[3,1,1,0,1,[[130,1,1,0,1]]],[9,1,1,1,2,[[268,1,1,1,2]]],[23,1,1,2,3,[[791,1,1,2,3]]],[27,1,1,3,4,[[869,1,1,3,4]]]],[4119,8075,20079,22199]]],["ever",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17626]]],["forbidden",[1,1,[[2,1,1,0,1,[[94,1,1,0,1]]]],[2847]]],["lest",[12,12,[[0,1,1,0,1,[[13,1,1,0,1]]],[2,4,4,1,5,[[99,2,2,1,3],[108,1,1,3,4],[111,1,1,4,5]]],[3,1,1,5,6,[[134,1,1,5,6]]],[4,2,2,6,8,[[153,1,1,6,7],[176,1,1,7,8]]],[5,1,1,8,9,[[195,1,1,8,9]]],[8,1,1,9,10,[[264,1,1,9,10]]],[9,1,1,10,11,[[279,1,1,10,11]]],[23,1,1,11,12,[[781,1,1,11,12]]]],[359,2983,2986,3310,3378,4289,4934,5540,6057,7971,8342,19894]]],["more",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9791]]],["nay",[1,1,[[11,1,1,0,1,[[332,1,1,0,1]]]],[10108]]],["neither",[429,397,[[0,9,7,0,7,[[2,1,1,0,1],[7,1,1,1,2],[8,2,1,2,3],[20,2,1,3,4],[23,1,1,4,5],[28,1,1,5,6],[38,1,1,6,7]]],[1,27,27,7,34,[[53,2,2,7,9],[54,1,1,9,10],[56,2,2,10,12],[57,1,1,12,13],[58,2,2,13,15],[59,3,3,15,18],[61,1,1,18,19],[62,1,1,19,20],[65,1,1,20,21],[69,1,1,21,22],[71,3,3,22,25],[72,3,3,25,28],[73,1,1,28,29],[79,2,2,29,31],[83,3,3,31,34]]],[2,34,32,34,66,[[91,1,1,34,35],[94,1,1,35,36],[96,1,1,36,37],[99,1,1,37,38],[100,2,2,38,40],[106,1,1,40,41],[107,4,4,41,45],[108,9,8,45,53],[110,2,2,53,55],[111,1,1,55,56],[112,2,2,56,58],[114,3,3,58,61],[115,5,4,61,65],[116,1,1,65,66]]],[3,12,12,66,78,[[117,1,1,66,67],[121,1,1,67,68],[122,1,1,68,69],[127,1,1,69,70],[130,1,1,70,71],[132,1,1,71,72],[134,2,2,72,74],[136,1,1,74,75],[139,2,2,75,77],[151,1,1,77,78]]],[4,36,33,78,111,[[153,2,2,78,80],[154,1,1,80,81],[156,3,3,81,84],[157,1,1,84,85],[159,1,1,85,86],[160,2,2,86,88],[161,2,2,88,90],[165,3,1,90,91],[168,2,2,91,93],[169,1,1,93,94],[170,1,1,94,95],[173,2,2,95,97],[174,1,1,97,98],[176,3,3,98,101],[178,2,2,101,103],[180,4,4,103,107],[181,1,1,107,108],[182,1,1,108,109],[183,2,1,109,110],[185,1,1,110,111]]],[5,8,7,111,118,[[188,1,1,111,112],[191,2,2,112,114],[192,1,1,114,115],[193,1,1,115,116],[197,1,1,116,117],[209,2,1,117,118]]],[6,5,5,118,123,[[212,1,1,118,119],[218,1,1,119,120],[223,2,2,120,122],[230,1,1,122,123]]],[8,9,9,123,132,[[236,1,1,123,124],[239,1,1,124,125],[240,1,1,125,126],[247,1,1,126,127],[248,1,1,127,128],[260,2,2,128,130],[262,2,2,130,132]]],[9,10,10,132,142,[[268,1,1,132,133],[273,1,1,133,134],[278,1,1,134,135],[279,1,1,135,136],[280,1,1,136,137],[284,1,1,137,138],[285,1,1,138,139],[286,1,1,139,140],[287,1,1,140,141],[290,1,1,141,142]]],[10,11,11,142,153,[[293,2,2,142,144],[296,1,1,144,145],[297,1,1,145,146],[301,1,1,146,147],[302,1,1,147,148],[303,2,2,148,150],[307,2,2,150,152],[312,1,1,152,153]]],[11,8,8,153,161,[[315,1,1,153,154],[316,1,1,154,155],[317,1,1,155,156],[318,1,1,156,157],[322,1,1,157,158],[325,1,1,158,159],[329,1,1,159,160],[335,1,1,160,161]]],[12,4,4,161,165,[[341,1,1,161,162],[354,1,1,162,163],[356,1,1,163,164],[364,1,1,164,165]]],[13,10,10,165,175,[[367,2,2,165,167],[372,1,1,167,168],[375,1,1,168,169],[386,1,1,169,170],[391,1,1,170,171],[392,1,1,171,172],[396,1,1,172,173],[400,1,1,173,174],[401,1,1,174,175]]],[14,1,1,175,176,[[412,1,1,175,176]]],[15,6,6,176,182,[[414,2,2,176,178],[416,1,1,178,179],[417,1,1,179,180],[421,2,2,180,182]]],[17,25,23,182,205,[[438,2,1,182,183],[440,2,2,183,185],[442,1,1,185,186],[443,1,1,186,187],[450,2,1,187,188],[453,1,1,188,189],[455,1,1,189,190],[456,1,1,190,191],[463,3,3,191,194],[467,2,2,194,196],[468,2,2,196,198],[469,1,1,198,199],[470,1,1,199,200],[471,1,1,200,201],[474,4,4,201,205]]],[18,25,25,205,230,[[482,1,1,205,206],[493,1,1,206,207],[495,1,1,207,208],[499,1,1,208,209],[503,1,1,209,210],[510,1,1,210,211],[521,3,3,211,214],[532,1,1,214,215],[550,1,1,215,216],[551,1,1,216,217],[552,1,1,217,218],[555,1,1,218,219],[558,1,1,219,220],[559,1,1,220,221],[568,1,1,221,222],[569,1,1,222,223],[571,2,2,223,225],[580,1,1,225,226],[592,2,2,226,228],[598,1,1,228,229],[608,1,1,229,230]]],[19,4,4,230,234,[[629,1,1,230,231],[633,1,1,231,232],[642,1,1,232,233],[657,1,1,233,234]]],[20,5,5,234,239,[[662,1,1,234,235],[664,1,1,235,236],[666,2,2,236,238],[667,1,1,238,239]]],[21,1,1,239,240,[[678,1,1,239,240]]],[22,47,44,240,284,[[679,3,2,240,242],[680,1,1,242,243],[683,2,2,243,245],[685,2,2,245,247],[686,1,1,247,248],[687,2,2,248,250],[688,1,1,250,251],[689,1,1,251,252],[691,3,1,252,253],[694,1,1,253,254],[695,1,1,254,255],[700,1,1,255,256],[701,1,1,256,257],[707,1,1,257,258],[709,1,1,258,259],[711,1,1,259,260],[718,1,1,260,261],[720,1,1,261,262],[721,4,4,262,266],[722,1,1,266,267],[725,2,2,267,269],[727,1,1,269,270],[728,1,1,270,271],[731,1,1,271,272],[732,1,1,272,273],[733,1,1,273,274],[735,1,1,274,275],[737,3,3,275,278],[738,2,2,278,280],[740,1,1,280,281],[742,1,1,281,282],[744,2,2,282,284]]],[23,48,43,284,327,[[747,5,2,284,286],[748,1,1,286,287],[749,3,2,287,289],[750,1,1,289,290],[751,2,2,290,292],[752,1,1,292,293],[753,3,3,293,296],[758,3,2,296,298],[759,1,1,298,299],[760,5,5,299,304],[761,4,4,304,308],[763,2,2,308,310],[765,1,1,310,311],[767,1,1,311,312],[769,1,1,312,313],[773,1,1,313,314],[776,2,2,314,316],[777,1,1,316,317],[778,1,1,317,318],[779,1,1,318,319],[781,1,1,319,320],[788,1,1,320,321],[792,1,1,321,322],[793,2,2,322,324],[794,2,2,324,326],[795,1,1,326,327]]],[25,57,45,327,372,[[804,1,1,327,328],[805,1,1,328,329],[806,4,2,329,331],[808,5,5,331,336],[809,1,1,336,337],[810,1,1,337,338],[812,1,1,338,339],[814,2,1,339,340],[815,2,2,340,342],[817,3,3,342,345],[819,7,5,345,350],[821,3,3,350,353],[823,1,1,353,354],[825,4,2,354,356],[830,2,2,356,358],[832,2,1,358,359],[833,1,1,359,360],[834,1,1,360,361],[835,8,5,361,366],[837,3,2,366,368],[838,1,1,368,369],[840,1,1,369,370],[848,1,1,370,371],[849,1,1,371,372]]],[26,6,5,372,377,[[859,3,2,372,374],[860,3,3,374,377]]],[27,3,3,377,380,[[863,1,1,377,378],[870,1,1,378,379],[875,1,1,379,380]]],[28,1,1,380,381,[[877,1,1,380,381]]],[29,4,4,381,385,[[880,2,2,381,383],[883,1,1,383,384],[885,1,1,384,385]]],[31,1,1,385,386,[[892,1,1,385,386]]],[32,3,3,386,389,[[894,1,1,386,387],[896,2,2,387,389]]],[34,1,1,389,390,[[904,1,1,389,390]]],[35,2,2,390,392,[[906,1,1,390,391],[908,1,1,391,392]]],[37,2,2,392,394,[[921,1,1,392,393],[923,1,1,393,394]]],[38,4,3,394,397,[[925,2,1,394,395],[927,1,1,395,396],[928,1,1,396,397]]]],[58,204,216,539,607,802,1158,1609,1610,1655,1707,1708,1742,1771,1777,1783,1791,1800,1862,1874,1971,2074,2134,2138,2144,2146,2157,2162,2179,2391,2414,2520,2521,2524,2775,2841,2897,2983,3040,3041,3247,3254,3268,3272,3274,3290,3291,3292,3294,3297,3300,3307,3308,3350,3352,3393,3416,3424,3473,3474,3480,3525,3530,3544,3568,3603,3653,3805,3826,4043,4131,4209,4277,4289,4328,4437,4439,4868,4921,4934,4965,5006,5032,5035,5074,5127,5140,5141,5166,5175,5280,5346,5361,5381,5400,5451,5454,5475,5530,5540,5541,5579,5580,5647,5650,5675,5676,5685,5719,5736,5819,5880,5935,5946,5959,5988,6121,6467,6568,6742,6890,6907,7062,7227,7317,7324,7464,7507,7868,7876,7939,7941,8077,8190,8303,8339,8370,8481,8535,8555,8590,8716,8827,8828,8903,8981,9110,9167,9192,9200,9331,9333,9511,9593,9626,9664,9693,9807,9894,10021,10190,10412,10872,10926,11133,11205,11206,11287,11373,11599,11708,11750,11830,11961,11984,12265,12319,12323,12370,12398,12528,12546,12930,12957,12972,13018,13049,13232,13295,13335,13364,13517,13519,13523,13642,13649,13657,13659,13695,13733,13762,13841,13851,13856,13858,13977,14102,14155,14228,14277,14383,14574,14577,14588,14744,15025,15057,15077,15150,15226,15238,15405,15417,15438,15445,15558,15837,15847,16085,16149,16452,16575,16819,17254,17389,17427,17466,17471,17486,17647,17660,17677,17689,17751,17766,17789,17794,17819,17842,17846,17857,17887,17926,17979,17991,18063,18081,18215,18251,18300,18448,18504,18507,18515,18528,18529,18552,18606,18607,18646,18667,18720,18733,18748,18781,18801,18806,18809,18840,18841,18858,18889,18941,18946,19018,19019,19055,19070,19073,19104,19125,19150,19165,19185,19188,19191,19306,19307,19325,19338,19340,19342,19343,19353,19365,19373,19379,19380,19411,19412,19447,19488,19567,19667,19754,19766,19797,19815,19832,19876,20020,20091,20145,20158,20205,20206,20255,20511,20543,20553,20557,20581,20586,20588,20590,20596,20622,20632,20667,20717,20742,20749,20766,20778,20811,20855,20857,20864,20865,20869,20903,20912,20916,21002,21070,21072,21194,21198,21244,21261,21292,21317,21321,21323,21341,21342,21373,21374,21419,21458,21691,21716,22018,22032,22042,22053,22056,22107,22212,22285,22313,22393,22394,22445,22478,22578,22598,22623,22632,22753,22799,22833,23044,23063,23099,23131,23139]]],["never",[18,17,[[0,1,1,0,1,[[40,1,1,0,1]]],[2,1,1,1,2,[[95,1,1,1,2]]],[3,1,1,2,3,[[135,1,1,2,3]]],[4,1,1,3,4,[[167,1,1,3,4]]],[6,2,2,4,6,[[226,2,2,4,6]]],[13,1,1,6,7,[[387,1,1,6,7]]],[17,2,2,7,9,[[438,1,1,7,8],[456,1,1,8,9]]],[19,3,2,9,11,[[654,2,1,9,10],[657,1,1,10,11]]],[22,1,1,11,12,[[734,1,1,11,12]]],[23,2,2,12,14,[[764,1,1,12,13],[777,1,1,13,14]]],[25,1,1,14,15,[[817,1,1,14,15]]],[26,1,1,15,16,[[861,1,1,15,16]]],[29,1,1,16,17,[[886,1,1,16,17]]]],[1214,2862,4291,5330,6956,6960,11641,12920,13380,17189,17266,18764,19433,19792,20825,22082,22495]]],["no",[451,441,[[0,14,14,0,14,[[7,1,1,0,1],[8,1,1,1,2],[14,1,1,2,3],[31,1,1,3,4],[36,1,1,4,5],[37,3,3,5,8],[40,1,1,8,9],[41,3,3,9,12],[43,1,1,12,13],[44,1,1,13,14]]],[1,28,28,14,42,[[52,1,1,14,15],[54,2,2,15,17],[58,2,2,17,19],[59,2,2,19,21],[61,2,2,21,23],[62,2,2,23,25],[63,1,1,25,26],[64,1,1,26,27],[65,2,2,27,29],[69,1,1,29,30],[70,2,2,30,32],[72,2,2,32,34],[79,2,2,34,36],[82,2,2,36,38],[83,3,3,38,41],[84,1,1,41,42]]],[2,12,12,42,54,[[94,1,1,42,43],[102,1,1,43,44],[105,1,1,44,45],[106,1,1,45,46],[108,2,2,46,48],[109,1,1,48,49],[110,1,1,49,50],[112,1,1,50,51],[115,2,2,51,53],[116,1,1,53,54]]],[3,24,24,54,78,[[117,1,1,54,55],[119,1,1,55,56],[121,2,2,56,58],[122,3,3,58,61],[124,3,3,61,64],[132,1,1,64,65],[134,4,4,65,69],[136,2,2,69,71],[139,1,1,71,72],[142,2,2,72,74],[143,1,1,74,75],[149,1,1,75,76],[151,2,2,76,78]]],[4,27,27,78,105,[[156,1,1,78,79],[159,2,2,79,81],[160,1,1,81,82],[162,2,2,82,84],[163,2,2,84,86],[165,1,1,86,87],[167,2,2,87,89],[168,3,3,89,92],[169,2,2,92,94],[170,2,2,94,96],[171,1,1,96,97],[175,3,3,97,100],[176,1,1,100,101],[180,1,1,101,102],[183,1,1,102,103],[184,1,1,103,104],[186,1,1,104,105]]],[5,7,7,105,112,[[194,2,2,105,107],[196,1,1,107,108],[200,1,1,108,109],[203,1,1,109,110],[209,2,2,110,112]]],[6,10,10,112,122,[[212,1,1,112,113],[215,1,1,113,114],[216,1,1,114,115],[218,1,1,115,116],[220,1,1,116,117],[221,1,1,117,118],[223,2,2,118,120],[229,1,1,120,121],[231,1,1,121,122]]],[8,19,18,122,140,[[236,2,2,122,124],[237,2,2,124,126],[241,1,1,126,127],[242,1,1,127,128],[245,1,1,128,129],[248,1,1,129,130],[250,1,1,130,131],[255,1,1,131,132],[256,1,1,132,133],[260,1,1,133,134],[261,1,1,134,135],[262,1,1,135,136],[263,3,2,136,138],[264,1,1,138,139],[265,1,1,139,140]]],[9,9,9,140,149,[[268,1,1,140,141],[272,1,1,141,142],[273,1,1,142,143],[278,1,1,143,144],[279,1,1,144,145],[280,1,1,145,146],[281,1,1,146,147],[286,1,1,147,148],[287,1,1,148,149]]],[10,18,17,149,166,[[293,2,2,149,151],[298,2,2,151,153],[299,1,1,153,154],[300,3,3,154,157],[303,2,2,157,159],[307,2,2,159,161],[308,3,2,161,163],[311,1,1,163,164],[312,2,2,164,166]]],[11,11,11,166,177,[[313,1,1,166,167],[314,1,1,167,168],[315,1,1,168,169],[316,1,1,169,170],[317,1,1,170,171],[318,1,1,171,172],[329,1,1,172,173],[331,1,1,173,174],[334,1,1,174,175],[335,1,1,175,176],[337,1,1,176,177]]],[12,7,7,177,184,[[339,1,1,177,178],[349,1,1,178,179],[353,1,1,179,180],[354,1,1,180,181],[360,1,1,181,182],[361,2,2,182,184]]],[13,10,10,184,194,[[372,2,2,184,186],[373,1,1,186,187],[374,1,1,187,188],[375,1,1,188,189],[379,1,1,189,190],[381,1,1,190,191],[384,1,1,191,192],[387,1,1,192,193],[401,1,1,193,194]]],[14,1,1,194,195,[[412,1,1,194,195]]],[15,6,6,195,201,[[414,1,1,195,196],[418,2,2,196,198],[425,3,3,198,201]]],[16,4,4,201,205,[[426,1,1,201,202],[427,1,1,202,203],[430,1,1,203,204],[434,1,1,204,205]]],[17,33,32,205,237,[[440,1,1,205,206],[442,4,4,206,210],[444,1,1,210,211],[445,1,1,211,212],[447,1,1,212,213],[450,3,3,213,216],[453,1,1,216,217],[454,1,1,217,218],[455,2,2,218,220],[459,2,2,220,222],[461,2,2,222,224],[463,1,1,224,225],[465,1,1,225,226],[467,4,4,226,230],[469,1,1,230,231],[471,1,1,231,232],[473,3,2,232,234],[476,1,1,234,235],[477,2,2,235,237]]],[18,23,23,237,260,[[491,1,1,237,238],[499,1,1,238,239],[500,1,1,239,240],[518,1,1,240,241],[527,1,1,241,242],[530,2,2,242,244],[554,1,1,244,245],[555,1,1,245,246],[558,1,1,246,247],[560,1,1,247,248],[561,1,1,248,249],[565,1,1,249,250],[568,1,1,250,251],[569,1,1,251,252],[578,1,1,252,253],[579,1,1,253,254],[580,1,1,254,255],[582,1,1,255,256],[584,2,2,256,258],[596,1,1,258,259],[620,1,1,259,260]]],[19,10,10,260,270,[[630,1,1,260,261],[637,1,1,261,262],[644,2,2,262,264],[645,1,1,264,265],[648,1,1,265,266],[651,1,1,266,267],[657,1,1,267,268],[658,2,2,268,270]]],[20,5,5,270,275,[[662,1,1,270,271],[664,2,2,271,273],[666,1,1,273,274],[667,1,1,274,275]]],[22,35,33,275,308,[[679,1,1,275,276],[687,2,2,276,278],[688,2,2,278,280],[691,1,1,280,281],[692,1,1,281,282],[693,1,1,282,283],[694,2,1,283,284],[701,1,1,284,285],[704,1,1,285,286],[705,1,1,286,287],[710,1,1,287,288],[711,1,1,288,289],[712,1,1,289,290],[715,1,1,290,291],[716,1,1,291,292],[721,2,2,292,294],[722,1,1,294,295],[725,3,3,295,298],[729,1,1,298,299],[730,1,1,299,300],[731,3,2,300,302],[738,3,3,302,305],[740,1,1,305,306],[743,2,2,306,308]]],[23,52,49,308,357,[[746,7,6,308,314],[747,2,2,314,316],[748,1,1,316,317],[749,1,1,317,318],[750,2,2,318,320],[751,1,1,320,321],[754,1,1,321,322],[755,2,2,322,324],[758,3,3,324,327],[760,2,2,327,329],[763,1,1,329,330],[766,3,3,330,333],[767,3,3,333,336],[769,1,1,336,337],[774,1,1,337,338],[775,3,2,338,340],[779,2,1,340,341],[784,1,1,341,342],[785,1,1,342,343],[786,2,2,343,345],[788,2,2,345,347],[789,1,1,347,348],[792,2,2,348,350],[793,3,3,350,353],[794,2,2,353,355],[795,1,1,355,356],[796,1,1,356,357]]],[24,7,7,357,364,[[797,2,2,357,359],[798,1,1,359,360],[800,4,4,360,364]]],[25,42,41,364,405,[[813,3,3,364,367],[814,2,2,367,369],[815,1,1,369,370],[816,1,1,370,371],[817,3,3,371,374],[820,2,2,374,376],[821,1,1,376,377],[822,3,3,377,380],[825,2,2,380,382],[827,2,2,382,384],[829,3,3,384,387],[830,2,2,387,389],[831,1,1,389,390],[835,3,3,390,393],[837,4,4,393,397],[838,1,1,397,398],[840,1,1,398,399],[844,1,1,399,400],[845,5,4,400,404],[846,1,1,404,405]]],[26,6,5,405,410,[[857,1,1,405,406],[859,5,4,406,410]]],[27,5,5,410,415,[[862,1,1,410,411],[863,2,2,411,413],[870,1,1,413,414],[874,1,1,414,415]]],[28,2,2,415,417,[[877,1,1,415,416],[878,1,1,416,417]]],[29,4,4,417,421,[[883,2,2,417,419],[885,1,1,419,420],[887,1,1,420,421]]],[32,2,2,421,423,[[897,2,2,421,423]]],[33,4,4,423,427,[[900,3,3,423,426],[901,1,1,426,427]]],[34,2,2,427,429,[[903,1,1,427,428],[905,1,1,428,429]]],[35,2,2,429,431,[[908,2,2,429,431]]],[37,10,10,431,441,[[911,1,1,431,432],[918,1,1,432,433],[919,1,1,433,434],[921,1,1,434,435],[923,2,2,435,437],[924,4,4,437,441]]]],[192,220,363,956,1115,1140,1141,1145,1239,1263,1283,1286,1347,1359,1598,1639,1650,1768,1770,1791,1806,1832,1835,1870,1874,1902,1942,1951,1965,2054,2085,2099,2152,2176,2391,2394,2477,2493,2499,2510,2513,2534,2841,3084,3230,3242,3296,3316,3332,3348,3433,3525,3561,3596,3657,3696,3807,3811,3826,3828,3829,3958,3964,3965,4234,4262,4280,4281,4289,4313,4316,4439,4522,4551,4557,4774,4876,4877,5019,5113,5135,5139,5195,5202,5225,5233,5283,5323,5338,5345,5346,5350,5377,5380,5385,5386,5426,5514,5517,5522,5526,5679,5730,5778,5845,6022,6033,6078,6191,6278,6469,6473,6547,6642,6658,6747,6824,6868,6889,6905,7054,7114,7223,7230,7249,7264,7338,7365,7445,7504,7595,7764,7778,7892,7926,7934,7957,7962,7970,7990,8077,8180,8190,8292,8329,8381,8415,8564,8597,8818,8843,9001,9020,9073,9084,9089,9091,9193,9201,9324,9334,9364,9366,9455,9497,9498,9550,9563,9585,9644,9672,9697,9987,10079,10152,10190,10225,10340,10737,10841,10872,11005,11017,11043,11287,11308,11337,11355,11368,11462,11509,11558,11643,11984,12258,12324,12402,12409,12690,12692,12697,12721,12738,12791,12836,12970,13015,13016,13017,13018,13076,13104,13152,13206,13222,13231,13293,13313,13335,13347,13456,13458,13469,13470,13511,13570,13631,13643,13644,13647,13715,13752,13804,13819,13904,13924,13937,14084,14210,14239,14550,14677,14723,14724,15100,15177,15226,15245,15270,15313,15405,15426,15516,15548,15565,15620,15703,15739,15901,16295,16485,16678,16893,16894,16903,16994,17099,17271,17291,17295,17394,17420,17423,17463,17490,17667,17846,17848,17865,17870,17924,17936,17966,17979,18089,18151,18162,18264,18287,18319,18371,18401,18515,18529,18545,18600,18604,18605,18695,18697,18713,18720,18839,18840,18841,18858,18916,18917,18971,18976,18978,18990,18995,18996,19005,19018,19049,19065,19099,19112,19151,19215,19245,19249,19296,19297,19298,19350,19356,19413,19464,19466,19484,19488,19491,19520,19561,19675,19720,19725,19829,19956,19961,19989,19993,20027,20032,20043,20088,20113,20145,20160,20163,20205,20206,20229,20282,20313,20316,20341,20426,20435,20436,20442,20703,20704,20705,20729,20731,20742,20759,20796,20803,20804,20890,20895,20934,20957,20971,20976,21062,21073,21113,21114,21160,21166,21181,21199,21201,21217,21335,21341,21342,21371,21373,21388,21389,21419,21458,21579,21601,21616,21624,21627,21638,21968,22018,22023,22031,22032,22100,22121,22122,22223,22270,22330,22360,22425,22443,22478,22510,22645,22646,22696,22698,22699,22712,22745,22785,22825,22831,22899,22986,23007,23034,23061,23064,23079,23085,23086,23089]]],["none",[69,68,[[1,6,6,0,6,[[58,1,1,0,1],[60,1,1,1,2],[65,2,2,2,4],[72,1,1,4,5],[83,1,1,5,6]]],[2,2,2,6,8,[[110,1,1,6,7],[111,1,1,7,8]]],[3,2,2,8,10,[[123,1,1,8,9],[125,1,1,9,10]]],[4,2,2,10,12,[[154,1,1,10,11],[157,1,1,11,12]]],[5,11,11,12,23,[[195,1,1,12,13],[196,6,6,13,19],[197,2,2,19,21],[199,1,1,21,22],[200,1,1,22,23]]],[10,3,3,23,26,[[293,1,1,23,24],[302,1,1,24,25],[311,1,1,25,26]]],[11,3,3,26,29,[[329,1,1,26,27],[330,1,1,27,28],[336,1,1,28,29]]],[12,1,1,29,30,[[360,1,1,29,30]]],[13,4,4,30,34,[[367,1,1,30,31],[375,1,1,31,32],[376,1,1,32,33],[389,1,1,33,34]]],[14,1,1,34,35,[[410,1,1,34,35]]],[17,3,3,35,38,[[464,1,1,35,36],[470,2,2,36,38]]],[18,5,5,38,43,[[499,1,1,38,39],[514,1,1,39,40],[546,1,1,40,41],[550,1,1,41,42],[558,1,1,42,43]]],[19,2,2,43,45,[[628,2,2,43,45]]],[22,3,3,45,48,[[683,1,1,45,46],[688,1,1,46,47],[722,1,1,47,48]]],[23,9,8,48,56,[[748,1,1,48,49],[779,1,1,49,50],[780,1,1,50,51],[786,1,1,51,52],[788,2,1,52,53],[792,1,1,53,54],[794,2,2,54,56]]],[24,1,1,56,57,[[798,1,1,56,57]]],[25,6,6,57,63,[[808,1,1,57,58],[817,1,1,58,59],[819,1,1,59,60],[823,1,1,60,61],[832,1,1,61,62],[840,1,1,62,63]]],[26,2,2,63,65,[[850,1,1,63,64],[857,1,1,64,65]]],[27,1,1,65,66,[[873,1,1,65,66]]],[32,2,2,66,68,[[894,1,1,66,67],[895,1,1,67,68]]]],[1766,1812,1973,1974,2159,2516,3346,3399,3859,3977,4972,5060,6060,6085,6092,6094,6101,6103,6104,6120,6129,6168,6190,8828,9171,9476,10001,10029,10216,11000,11206,11375,11411,11675,12216,13544,13730,13732,14233,14481,14955,15045,15228,16425,16430,17766,17864,18552,19049,19837,19872,19992,20024,20113,20169,20175,20354,20588,20796,20856,21006,21244,21476,21756,21968,22260,22600,22619]]],["nor",[249,218,[[1,8,7,0,7,[[53,1,1,0,1],[60,1,1,1,2],[69,1,1,2,3],[71,2,2,3,5],[72,2,1,5,6],[83,1,1,6,7]]],[2,19,19,7,26,[[101,1,1,7,8],[106,1,1,8,9],[108,6,6,9,15],[110,5,5,15,20],[111,1,1,20,21],[114,4,4,21,25],[116,1,1,25,26]]],[3,6,4,26,30,[[121,1,1,26,27],[122,1,1,27,28],[125,1,1,28,29],[127,3,1,29,30]]],[4,32,29,30,59,[[153,1,1,30,31],[156,4,2,31,33],[157,1,1,33,34],[159,2,2,34,36],[161,3,3,36,39],[162,1,1,39,40],[164,1,1,40,41],[165,1,1,41,42],[166,2,2,42,44],[167,2,2,44,46],[169,1,1,46,47],[170,1,1,47,48],[173,1,1,48,49],[174,1,1,49,50],[175,1,1,50,51],[176,1,1,51,52],[178,1,1,52,53],[180,2,2,53,55],[181,2,1,55,56],[183,1,1,56,57],[185,1,1,57,58],[186,1,1,58,59]]],[5,7,6,59,65,[[187,1,1,59,60],[192,1,1,60,61],[208,2,2,61,63],[209,2,1,63,64],[210,1,1,64,65]]],[6,2,2,65,67,[[223,1,1,65,66],[229,1,1,66,67]]],[8,5,5,67,72,[[247,2,2,67,69],[250,1,1,69,70],[263,1,1,70,71],[265,1,1,71,72]]],[9,3,2,72,74,[[269,1,1,72,73],[285,2,1,73,74]]],[10,13,11,74,85,[[293,2,2,74,76],[298,1,1,76,77],[300,1,1,77,78],[302,1,1,78,79],[303,7,5,79,84],[310,1,1,84,85]]],[11,10,6,85,91,[[316,1,1,85,86],[318,1,1,86,87],[326,1,1,87,88],[329,3,1,88,89],[330,1,1,89,90],[331,3,1,90,91]]],[12,1,1,91,92,[[365,1,1,91,92]]],[13,3,3,92,95,[[371,1,1,92,93],[377,1,1,93,94],[395,1,1,94,95]]],[14,2,2,95,97,[[411,1,1,95,96],[412,1,1,96,97]]],[15,4,3,97,100,[[421,3,2,97,99],[422,1,1,99,100]]],[16,3,3,100,103,[[428,1,1,100,101],[430,1,1,101,102],[434,1,1,102,103]]],[17,7,7,103,110,[[436,1,1,103,104],[442,1,1,104,105],[449,1,1,105,106],[453,1,1,106,107],[459,1,1,107,108],[463,1,1,108,109],[469,1,1,109,110]]],[18,17,15,110,125,[[478,2,1,110,111],[492,3,2,111,113],[499,1,1,113,114],[501,1,1,114,115],[514,1,1,115,116],[526,1,1,116,117],[536,1,1,117,118],[552,1,1,118,119],[566,3,3,119,122],[580,1,1,122,123],[598,1,1,123,124],[608,1,1,124,125]]],[19,1,1,125,126,[[632,1,1,125,126]]],[20,5,3,126,129,[[659,1,1,126,127],[664,1,1,127,128],[667,3,1,128,129]]],[22,37,32,129,161,[[683,3,2,129,131],[686,1,1,131,132],[689,1,1,132,133],[700,1,1,133,134],[701,2,2,134,136],[706,1,1,136,137],[708,2,1,137,138],[709,1,1,138,139],[710,1,1,139,140],[715,3,1,140,141],[720,3,2,141,143],[721,1,1,143,144],[722,3,3,144,147],[723,2,2,147,149],[724,1,1,149,150],[726,2,2,150,152],[727,1,1,152,153],[729,1,1,153,154],[730,1,1,154,155],[731,1,1,155,156],[735,1,1,156,157],[742,1,1,157,158],[743,3,3,158,161]]],[23,33,28,161,189,[[748,1,1,161,162],[750,1,1,162,163],[751,4,4,163,167],[752,1,1,167,168],[755,1,1,168,169],[757,2,1,169,170],[759,1,1,170,171],[760,2,1,171,172],[763,1,1,172,173],[764,1,1,173,174],[765,1,1,174,175],[767,2,2,175,177],[769,2,2,177,179],[775,1,1,179,180],[779,4,2,180,182],[780,1,1,182,183],[786,2,1,183,184],[788,3,3,184,187],[793,2,2,187,189]]],[25,16,15,189,204,[[804,1,1,189,190],[808,2,1,190,191],[814,1,1,191,192],[817,1,1,192,193],[823,1,1,193,194],[824,1,1,194,195],[825,3,3,195,198],[830,2,2,198,200],[832,1,1,200,201],[833,1,1,201,202],[845,1,1,202,203],[849,1,1,203,204]]],[26,2,2,204,206,[[860,2,2,204,206]]],[27,3,3,206,209,[[862,1,1,206,207],[866,1,1,207,208],[868,1,1,208,209]]],[29,2,2,209,211,[[883,1,1,209,210],[886,1,1,210,211]]],[32,1,1,211,212,[[897,1,1,211,212]]],[35,2,2,212,214,[[906,1,1,212,213],[908,1,1,213,214]]],[37,5,4,214,218,[[911,1,1,214,215],[914,1,1,215,216],[921,2,1,216,217],[924,1,1,217,218]]]],[1602,1812,2056,2134,2141,2168,2524,3048,3251,3285,3295,3296,3299,3307,3309,3350,3355,3356,3357,3368,3391,3473,3480,3489,3506,3580,3807,3826,3977,4043,4937,5032,5035,5062,5113,5114,5166,5175,5180,5203,5272,5280,5291,5298,5326,5338,5380,5406,5451,5500,5517,5542,5580,5650,5661,5702,5734,5819,5846,5856,5959,6452,6454,6467,6488,6907,7054,7464,7481,7589,7960,7990,8115,8535,8824,8827,8990,9091,9175,9192,9193,9200,9201,9212,9416,9626,9684,9902,10018,10036,10093,11163,11274,11418,11798,12249,12258,12542,12545,12579,12749,12788,12862,12891,13027,13193,13295,13449,13512,13702,13940,14090,14092,14228,14245,14483,14655,14793,15077,15348,15359,15360,15559,16085,16149,16530,17323,17422,17486,17745,17766,17819,17893,18054,18081,18095,18192,18222,18254,18264,18385,18482,18484,18528,18551,18552,18553,18574,18578,18593,18615,18633,18646,18687,18708,18713,18776,18889,18914,18920,18922,19038,19109,19141,19143,19145,19147,19155,19234,19280,19325,19342,19412,19431,19447,19488,19516,19538,19567,19731,19830,19838,19866,19989,20015,20020,20033,20158,20160,20520,20588,20731,20766,21000,21034,21072,21078,21079,21188,21194,21238,21261,21619,21716,22040,22056,22104,22165,22188,22428,22492,22640,22793,22833,22882,22928,23044,23075]]],["not",[3281,2895,[[0,156,148,0,148,[[1,5,5,0,5],[2,4,4,5,9],[3,4,3,9,12],[5,1,1,12,13],[6,1,1,13,14],[7,3,3,14,17],[8,2,2,17,19],[10,1,1,19,20],[11,1,1,20,21],[12,3,2,21,23],[14,4,4,23,27],[15,1,1,27,28],[16,3,3,28,31],[17,9,9,31,40],[18,4,4,40,44],[19,5,5,44,49],[20,2,2,49,51],[21,2,2,51,53],[23,10,10,53,63],[25,2,2,63,65],[26,5,5,65,70],[27,4,4,70,74],[28,2,2,74,76],[29,3,3,76,79],[30,13,10,79,89],[31,3,3,89,92],[33,4,4,92,96],[34,2,2,96,98],[35,1,1,98,99],[36,3,3,99,102],[37,6,6,102,108],[38,3,3,108,111],[39,2,2,111,113],[40,3,3,113,116],[41,10,9,116,125],[42,6,5,125,130],[43,6,6,130,136],[44,4,4,136,140],[46,6,5,140,145],[47,2,2,145,147],[48,1,1,147,148]]],[1,150,140,148,288,[[50,2,2,148,150],[51,1,1,150,151],[52,3,3,151,154],[53,8,7,154,161],[54,3,3,161,164],[55,3,3,164,167],[56,5,5,167,172],[57,7,6,172,178],[58,10,9,178,187],[59,7,6,187,193],[60,3,3,193,196],[61,5,5,196,201],[62,2,2,201,203],[63,2,2,203,205],[64,1,1,205,206],[65,5,5,206,211],[67,2,2,211,213],[68,2,1,213,214],[69,14,12,214,226],[70,10,10,226,236],[71,11,10,236,246],[72,11,11,246,257],[73,2,2,257,259],[74,1,1,259,260],[77,4,4,260,264],[78,2,2,264,266],[79,6,5,266,271],[81,2,2,271,273],[82,6,6,273,279],[83,5,5,279,284],[88,2,2,284,286],[89,3,2,286,288]]],[2,165,150,288,438,[[90,1,1,288,289],[91,1,1,289,290],[93,4,4,290,294],[94,6,6,294,300],[95,3,3,300,303],[96,3,3,303,306],[97,2,2,306,308],[99,4,4,308,312],[100,11,10,312,322],[101,1,1,322,323],[102,13,12,323,335],[103,3,3,335,338],[104,2,2,338,340],[105,2,2,340,342],[106,3,3,342,345],[107,21,17,345,362],[108,22,18,362,380],[109,3,3,380,383],[110,10,10,383,393],[111,13,12,393,405],[112,2,2,405,407],[114,15,14,407,421],[115,12,11,421,432],[116,8,6,432,438]]],[3,111,97,438,535,[[117,2,2,438,440],[118,1,1,440,441],[120,3,3,441,444],[121,3,3,444,447],[122,1,1,447,448],[125,5,4,448,452],[126,2,2,452,454],[127,5,5,454,459],[128,5,5,459,464],[130,6,6,464,470],[131,3,3,470,473],[132,8,6,473,479],[133,1,1,479,480],[134,3,3,480,483],[135,4,3,483,486],[136,7,5,486,491],[137,3,2,491,493],[138,6,4,493,497],[139,11,8,497,505],[140,4,3,505,508],[142,4,4,508,512],[143,2,2,512,514],[145,1,1,514,515],[146,4,4,515,519],[147,4,4,519,523],[148,5,5,523,528],[149,1,1,528,529],[151,6,5,529,534],[152,1,1,534,535]]],[4,270,232,535,767,[[153,7,6,535,541],[154,6,6,541,547],[155,6,5,547,552],[156,4,4,552,556],[157,7,6,556,562],[158,6,4,562,566],[159,8,8,566,574],[160,5,4,574,578],[161,1,1,578,579],[162,2,2,579,581],[163,7,4,581,585],[164,10,10,585,595],[165,6,6,595,601],[166,12,9,601,610],[167,10,9,610,619],[168,5,4,619,623],[169,7,6,623,629],[170,11,8,629,637],[171,7,7,637,644],[172,8,7,644,651],[173,10,7,651,658],[174,19,18,658,676],[175,20,16,676,692],[176,11,10,692,702],[177,13,12,702,714],[178,2,2,714,716],[179,2,2,716,718],[180,23,20,718,738],[181,8,6,738,744],[182,4,4,744,748],[183,7,6,748,754],[184,13,10,754,764],[185,1,1,764,765],[186,2,2,765,767]]],[5,59,51,767,818,[[187,5,4,767,771],[188,3,3,771,774],[189,1,1,774,775],[191,3,3,775,778],[192,1,1,778,779],[193,2,2,779,781],[194,5,4,781,785],[195,4,4,785,789],[196,3,2,789,791],[197,2,2,791,793],[199,1,1,793,794],[201,1,1,794,795],[203,4,4,795,799],[204,1,1,799,800],[206,3,2,800,802],[207,2,2,802,804],[208,10,9,804,813],[209,2,1,813,814],[210,6,4,814,818]]],[6,93,84,818,902,[[211,5,5,818,823],[212,9,8,823,831],[213,4,4,831,835],[214,6,5,835,840],[215,2,2,840,842],[216,4,4,842,846],[217,2,1,846,847],[218,4,4,847,851],[219,2,2,851,853],[220,2,2,853,855],[221,10,9,855,864],[222,3,3,864,867],[223,7,6,867,873],[224,9,7,873,880],[225,3,3,880,883],[226,5,5,883,888],[228,1,1,888,889],[229,5,4,889,893],[230,4,4,893,897],[231,6,5,897,902]]],[7,15,15,902,917,[[233,8,8,902,910],[234,4,4,910,914],[235,3,3,914,917]]],[8,138,121,917,1038,[[236,5,4,917,921],[237,4,4,921,925],[238,4,4,925,929],[239,3,3,929,932],[240,3,3,932,935],[241,4,3,935,938],[243,4,4,938,942],[244,5,4,942,946],[245,3,3,946,949],[246,2,2,949,951],[247,6,6,951,957],[248,6,5,957,962],[249,9,9,962,971],[250,8,7,971,978],[251,3,3,978,981],[252,6,5,981,986],[253,1,1,986,987],[254,1,1,987,988],[255,15,12,988,1000],[256,2,1,1000,1001],[257,3,2,1001,1003],[258,3,3,1003,1006],[259,7,6,1006,1012],[260,5,5,1012,1017],[261,8,6,1017,1023],[263,3,3,1023,1026],[264,9,7,1026,1033],[265,5,4,1033,1037],[266,1,1,1037,1038]]],[9,95,87,1038,1125,[[267,5,4,1038,1042],[268,3,3,1042,1045],[269,7,7,1045,1052],[270,1,1,1052,1053],[271,3,3,1053,1056],[272,1,1,1056,1057],[273,3,3,1057,1060],[276,1,1,1060,1061],[277,7,6,1061,1067],[278,4,4,1067,1071],[279,8,8,1071,1079],[280,7,5,1079,1084],[281,3,3,1084,1087],[282,2,2,1087,1089],[283,10,9,1089,1098],[284,7,6,1098,1104],[285,7,6,1104,1110],[286,3,3,1110,1113],[287,1,1,1113,1114],[288,6,6,1114,1120],[289,6,5,1120,1125]]],[10,115,108,1125,1233,[[291,12,11,1125,1136],[292,9,9,1136,1145],[293,5,4,1145,1149],[295,1,1,1149,1150],[296,1,1,1150,1151],[297,1,1,1151,1152],[298,8,8,1152,1160],[299,5,5,1160,1165],[300,5,3,1165,1168],[301,9,9,1168,1177],[302,4,4,1177,1181],[303,8,8,1181,1189],[304,4,4,1189,1193],[305,6,6,1193,1199],[306,5,5,1199,1204],[307,2,2,1204,1206],[308,8,7,1206,1213],[309,6,4,1213,1217],[310,4,4,1217,1221],[311,3,3,1221,1224],[312,9,9,1224,1233]]],[11,126,118,1233,1351,[[313,4,4,1233,1237],[314,5,5,1237,1242],[315,4,4,1242,1246],[316,8,6,1246,1252],[317,5,4,1252,1256],[318,5,5,1256,1261],[319,3,3,1261,1264],[320,2,2,1264,1266],[321,2,2,1266,1268],[322,8,7,1268,1275],[323,1,1,1275,1276],[324,6,6,1276,1282],[325,6,6,1282,1288],[326,10,9,1288,1297],[327,11,11,1297,1308],[328,3,3,1308,1311],[329,10,9,1311,1320],[330,11,9,1320,1329],[331,4,4,1329,1333],[332,5,5,1333,1338],[333,4,4,1338,1342],[334,3,3,1342,1345],[335,3,3,1345,1348],[336,3,3,1348,1351]]],[12,33,31,1351,1382,[[347,3,3,1351,1354],[348,5,5,1354,1359],[349,2,2,1359,1361],[350,1,1,1361,1362],[352,2,1,1362,1363],[354,4,4,1363,1367],[356,1,1,1367,1368],[358,6,5,1368,1373],[359,2,2,1373,1375],[363,1,1,1375,1376],[364,2,2,1376,1378],[365,2,2,1378,1380],[366,2,2,1380,1382]]],[13,106,95,1382,1477,[[367,1,1,1382,1383],[370,1,1,1383,1384],[371,3,3,1384,1387],[372,4,4,1387,1391],[373,2,2,1391,1393],[374,4,4,1393,1397],[375,5,4,1397,1401],[376,2,2,1401,1403],[377,1,1,1403,1404],[378,5,4,1404,1408],[379,5,5,1408,1413],[381,2,2,1413,1415],[382,2,2,1415,1417],[383,2,2,1417,1419],[384,5,4,1419,1423],[385,3,2,1423,1425],[386,10,8,1425,1433],[387,3,3,1433,1436],[388,1,1,1436,1437],[389,1,1,1437,1438],[390,5,5,1438,1443],[391,7,6,1443,1449],[392,1,1,1449,1450],[393,1,1,1450,1451],[394,6,6,1451,1457],[395,2,2,1457,1459],[396,9,7,1459,1466],[398,6,5,1466,1471],[399,1,1,1471,1472],[400,3,3,1472,1475],[401,3,2,1475,1477]]],[14,8,8,1477,1485,[[404,3,3,1477,1480],[405,1,1,1480,1481],[411,3,3,1481,1484],[412,1,1,1484,1485]]],[15,41,38,1485,1523,[[413,1,1,1485,1486],[414,3,3,1486,1489],[415,1,1,1489,1490],[416,2,2,1490,1492],[417,5,4,1492,1496],[418,4,4,1496,1500],[419,4,4,1500,1504],[420,1,1,1504,1505],[421,11,9,1505,1514],[422,3,3,1514,1517],[425,6,6,1517,1523]]],[16,16,14,1523,1537,[[426,4,4,1523,1527],[427,2,1,1527,1528],[428,2,2,1528,1530],[429,4,3,1530,1533],[431,1,1,1533,1534],[434,2,2,1534,1536],[435,1,1,1536,1537]]],[17,186,171,1537,1708,[[436,2,2,1537,1539],[437,3,2,1539,1541],[438,4,4,1541,1545],[439,3,3,1545,1548],[441,2,1,1548,1549],[442,5,5,1549,1554],[443,6,5,1554,1559],[444,14,12,1559,1571],[445,7,7,1571,1578],[446,3,3,1578,1581],[447,3,3,1581,1584],[448,4,4,1584,1588],[449,8,6,1588,1594],[450,9,8,1594,1602],[451,3,3,1602,1605],[452,2,2,1605,1607],[453,2,2,1607,1609],[454,4,4,1609,1613],[455,8,6,1613,1619],[456,6,5,1619,1624],[457,6,6,1624,1630],[458,2,2,1630,1632],[459,9,7,1632,1639],[460,2,2,1639,1641],[462,8,7,1641,1648],[463,5,5,1648,1653],[464,2,2,1653,1655],[465,5,5,1655,1660],[466,8,8,1660,1668],[467,5,5,1668,1673],[468,6,6,1673,1679],[469,6,6,1679,1685],[470,3,3,1685,1688],[471,7,7,1688,1695],[472,4,4,1695,1699],[474,3,3,1699,1702],[475,2,2,1702,1704],[476,1,1,1704,1705],[477,4,3,1705,1708]]],[18,227,208,1708,1916,[[478,4,4,1708,1712],[480,1,1,1712,1713],[482,2,2,1713,1715],[484,1,1,1715,1716],[486,3,3,1716,1719],[487,1,1,1719,1720],[491,1,1,1720,1721],[492,2,2,1721,1723],[493,1,1,1723,1724],[494,1,1,1724,1725],[495,6,6,1725,1731],[499,4,3,1731,1734],[500,1,1,1734,1735],[501,1,1,1735,1736],[503,3,3,1736,1739],[504,1,1,1739,1740],[505,2,1,1740,1741],[507,2,2,1741,1743],[508,1,1,1743,1744],[509,3,3,1744,1747],[510,1,1,1747,1748],[511,2,2,1748,1750],[512,4,3,1750,1753],[513,3,2,1753,1755],[514,6,6,1755,1761],[515,4,3,1761,1764],[516,2,2,1764,1766],[517,8,6,1766,1772],[518,1,1,1772,1773],[521,6,6,1773,1779],[523,1,1,1779,1780],[526,3,3,1780,1783],[527,2,2,1783,1785],[528,3,2,1785,1787],[529,1,1,1787,1788],[530,1,1,1788,1789],[531,1,1,1789,1790],[532,4,4,1790,1794],[533,4,4,1794,1798],[535,1,1,1798,1799],[536,2,2,1799,1801],[537,2,1,1801,1802],[539,2,2,1802,1804],[541,1,1,1804,1805],[543,3,3,1805,1808],[546,2,2,1808,1810],[548,1,1,1810,1811],[551,1,1,1811,1812],[554,2,2,1812,1814],[555,16,13,1814,1827],[556,1,1,1827,1828],[557,1,1,1828,1829],[558,2,2,1829,1831],[559,1,1,1831,1832],[562,1,1,1832,1833],[563,1,1,1833,1834],[566,7,7,1834,1841],[568,2,2,1841,1843],[569,1,1,1843,1844],[571,5,4,1844,1848],[572,1,1,1848,1849],[577,1,1,1849,1850],[578,5,4,1850,1854],[579,1,1,1854,1855],[580,2,2,1855,1857],[582,1,1,1857,1858],[583,6,6,1858,1864],[584,1,1,1864,1865],[585,2,1,1865,1866],[586,2,2,1866,1868],[587,1,1,1868,1869],[589,3,3,1869,1872],[592,8,5,1872,1877],[595,3,3,1877,1880],[596,21,21,1880,1901],[598,1,1,1901,1902],[602,1,1,1902,1903],[604,1,1,1903,1904],[606,1,1,1904,1905],[608,1,1,1905,1906],[609,1,1,1906,1907],[612,3,2,1907,1909],[614,1,1,1909,1910],[616,3,3,1910,1913],[624,2,2,1913,1915],[625,1,1,1915,1916]]],[19,99,94,1916,2010,[[628,3,2,1916,1918],[630,3,3,1918,1921],[631,4,3,1921,1924],[632,2,2,1924,1926],[633,7,7,1926,1933],[634,2,2,1933,1935],[635,4,4,1935,1939],[636,1,1,1939,1940],[637,3,3,1940,1943],[638,2,2,1943,1945],[639,2,2,1945,1947],[640,2,2,1947,1949],[641,3,3,1949,1952],[642,2,2,1952,1954],[643,3,3,1954,1957],[644,4,4,1957,1961],[645,1,1,1961,1962],[646,6,5,1962,1967],[647,5,5,1967,1972],[648,3,3,1972,1975],[649,3,3,1975,1978],[650,2,2,1978,1980],[651,4,3,1980,1983],[652,1,1,1983,1984],[653,4,4,1984,1988],[654,4,4,1988,1992],[655,5,5,1992,1997],[656,3,3,1997,2000],[657,8,7,2000,2007],[658,3,3,2007,2010]]],[20,31,26,2010,2036,[[659,1,1,2010,2011],[660,2,2,2011,2013],[662,4,3,2013,2016],[663,4,3,2016,2019],[664,4,4,2019,2023],[665,4,3,2023,2026],[666,3,2,2026,2028],[667,1,1,2028,2029],[668,3,3,2029,2032],[669,3,2,2032,2034],[670,2,2,2034,2036]]],[21,7,7,2036,2043,[[671,2,2,2036,2038],[673,3,3,2038,2041],[675,1,1,2041,2042],[678,1,1,2042,2043]]],[22,280,219,2043,2262,[[679,5,4,2043,2047],[680,1,1,2047,2048],[681,3,2,2048,2050],[683,4,4,2050,2054],[684,1,1,2054,2055],[685,7,6,2055,2061],[686,4,4,2061,2065],[687,7,7,2065,2072],[688,8,5,2072,2077],[689,4,3,2077,2080],[690,1,1,2080,2081],[691,6,4,2081,2085],[692,2,2,2085,2087],[694,2,2,2087,2089],[695,2,2,2089,2091],[700,2,2,2091,2093],[701,3,3,2093,2096],[702,2,2,2096,2098],[705,2,2,2098,2100],[706,7,7,2100,2107],[707,5,4,2107,2111],[708,12,9,2111,2120],[709,7,5,2120,2125],[710,1,1,2125,2126],[711,2,2,2126,2128],[712,1,1,2128,2129],[713,3,2,2129,2131],[714,6,5,2131,2136],[715,4,4,2136,2140],[716,2,2,2140,2142],[717,2,2,2142,2144],[718,12,5,2144,2149],[719,5,5,2149,2154],[720,14,8,2154,2162],[721,7,5,2162,2167],[722,4,4,2167,2171],[723,10,9,2171,2180],[724,6,4,2180,2184],[725,7,5,2184,2189],[726,13,9,2189,2198],[727,3,3,2198,2201],[728,4,3,2201,2204],[729,5,5,2204,2209],[730,3,2,2209,2211],[731,3,2,2211,2213],[732,9,5,2213,2218],[733,8,6,2218,2224],[734,1,1,2224,2225],[735,8,5,2225,2230],[736,6,6,2230,2236],[737,5,4,2236,2240],[738,2,2,2240,2242],[740,3,2,2242,2244],[741,4,4,2244,2248],[742,1,1,2248,2249],[743,14,9,2249,2258],[744,5,4,2258,2262]]],[23,318,266,2262,2528,[[745,1,1,2262,2263],[746,15,12,2263,2275],[747,11,10,2275,2285],[748,6,6,2285,2291],[749,20,12,2291,2303],[750,7,7,2303,2310],[751,14,11,2310,2321],[752,7,6,2321,2327],[753,6,4,2327,2331],[754,11,8,2331,2339],[755,8,5,2339,2344],[756,3,3,2344,2347],[757,7,7,2347,2354],[758,8,6,2354,2360],[759,5,5,2360,2365],[760,8,7,2365,2372],[761,11,7,2372,2379],[762,3,3,2379,2382],[763,1,1,2382,2383],[764,7,5,2383,2388],[765,2,2,2388,2390],[766,14,12,2390,2402],[767,14,11,2402,2413],[768,3,2,2413,2415],[769,6,6,2415,2421],[770,3,3,2421,2424],[771,7,6,2424,2430],[772,1,1,2430,2431],[773,9,8,2431,2439],[774,6,4,2439,2443],[775,3,3,2443,2446],[776,6,6,2446,2452],[777,4,3,2452,2455],[778,5,5,2455,2460],[779,7,6,2460,2466],[780,3,3,2466,2469],[781,4,4,2469,2473],[782,10,8,2473,2481],[783,3,3,2481,2484],[784,4,4,2484,2488],[785,1,1,2488,2489],[786,5,4,2489,2493],[787,4,3,2493,2496],[788,6,6,2496,2502],[790,4,3,2502,2505],[791,1,1,2505,2506],[792,5,3,2506,2509],[793,5,5,2509,2514],[794,6,6,2514,2520],[795,8,8,2520,2528]]],[24,26,24,2528,2552,[[797,2,2,2528,2530],[798,6,6,2530,2536],[799,11,10,2536,2546],[800,6,5,2546,2551],[801,1,1,2551,2552]]],[25,172,147,2552,2699,[[802,3,3,2552,2555],[804,10,9,2555,2564],[805,3,2,2564,2566],[806,4,3,2566,2569],[807,1,1,2569,2570],[808,7,5,2570,2575],[809,2,1,2575,2576],[810,1,1,2576,2577],[811,3,2,2577,2579],[812,3,3,2579,2582],[813,4,3,2582,2585],[814,9,7,2585,2592],[815,1,1,2592,2593],[817,12,10,2593,2603],[818,4,4,2603,2607],[819,24,20,2607,2627],[821,14,12,2627,2639],[822,2,2,2639,2641],[823,2,2,2641,2643],[824,2,2,2643,2645],[825,11,9,2645,2654],[826,1,1,2654,2655],[827,3,3,2655,2658],[829,1,1,2658,2659],[830,1,1,2659,2660],[831,1,1,2660,2661],[832,2,1,2661,2662],[833,3,3,2662,2665],[834,9,7,2665,2672],[835,5,5,2672,2677],[836,2,2,2677,2679],[837,2,2,2679,2681],[838,1,1,2681,2682],[839,1,1,2682,2683],[840,1,1,2683,2684],[842,1,1,2684,2685],[843,1,1,2685,2686],[845,6,6,2686,2692],[847,4,3,2692,2695],[848,4,3,2695,2698],[849,1,1,2698,2699]]],[26,21,20,2699,2719,[[850,2,1,2699,2700],[857,2,2,2700,2702],[858,3,3,2702,2705],[860,13,13,2705,2718],[861,1,1,2718,2719]]],[27,48,34,2719,2753,[[862,4,3,2719,2722],[863,8,6,2722,2728],[864,2,1,2728,2729],[865,4,2,2729,2731],[866,5,4,2731,2735],[867,1,1,2735,2736],[868,5,4,2736,2740],[869,4,3,2740,2743],[870,5,4,2743,2747],[871,1,1,2747,2748],[872,6,3,2748,2751],[874,1,1,2751,2752],[875,2,1,2752,2753]]],[28,5,5,2753,2758,[[876,1,1,2753,2754],[877,3,3,2754,2757],[878,1,1,2757,2758]]],[29,54,45,2758,2803,[[879,6,5,2758,2763],[880,7,6,2763,2769],[881,4,3,2769,2772],[882,7,6,2772,2778],[883,9,7,2778,2785],[884,3,3,2785,2788],[885,6,5,2788,2793],[886,4,4,2793,2797],[887,8,6,2797,2803]]],[30,5,4,2803,2807,[[888,5,4,2803,2807]]],[31,7,7,2807,2814,[[889,2,2,2807,2809],[891,2,2,2809,2811],[892,3,3,2811,2814]]],[32,21,16,2814,2830,[[893,2,1,2814,2815],[894,5,4,2815,2819],[895,4,4,2819,2823],[896,2,2,2823,2825],[897,2,2,2825,2827],[898,5,2,2827,2829],[899,1,1,2829,2830]]],[33,3,3,2830,2833,[[900,1,1,2830,2831],[902,2,2,2831,2833]]],[34,15,11,2833,2844,[[903,8,6,2833,2839],[904,6,4,2839,2843],[905,1,1,2843,2844]]],[35,14,10,2844,2854,[[906,4,3,2844,2847],[907,1,1,2847,2848],[908,9,6,2848,2854]]],[36,3,3,2854,2857,[[909,1,1,2854,2855],[910,2,2,2855,2857]]],[37,28,27,2857,2884,[[911,3,3,2857,2860],[913,1,1,2860,2861],[914,2,2,2861,2863],[917,5,4,2863,2867],[918,2,2,2867,2869],[919,1,1,2869,2870],[920,2,2,2870,2872],[921,5,5,2872,2877],[922,1,1,2877,2878],[923,1,1,2878,2879],[924,5,5,2879,2884]]],[38,14,11,2884,2895,[[925,1,1,2884,2885],[926,6,4,2885,2889],[927,7,6,2889,2895]]]],[35,47,48,50,55,56,58,59,72,86,88,91,140,161,195,204,205,209,228,273,316,324,327,364,370,373,376,391,409,411,412,439,445,448,449,452,453,454,455,456,465,477,490,492,499,500,501,504,507,523,539,559,563,594,596,599,612,618,624,628,630,632,640,714,721,729,739,748,750,763,774,779,788,789,820,821,861,870,872,880,888,900,901,905,906,907,911,912,925,953,954,960,987,997,999,1003,1016,1021,1047,1087,1096,1104,1128,1133,1135,1139,1142,1145,1155,1157,1159,1180,1195,1216,1226,1231,1254,1256,1260,1272,1273,1274,1275,1289,1290,1293,1295,1298,1299,1322,1328,1329,1339,1350,1352,1356,1359,1361,1366,1384,1429,1438,1439,1442,1446,1461,1462,1483,1549,1551,1557,1582,1598,1600,1602,1609,1610,1611,1612,1615,1622,1640,1646,1651,1658,1664,1667,1689,1698,1701,1706,1709,1725,1728,1729,1736,1738,1741,1748,1749,1753,1754,1760,1761,1763,1774,1775,1792,1796,1797,1800,1803,1804,1813,1815,1816,1829,1839,1855,1861,1862,1880,1884,1901,1917,1943,1955,1962,1967,1971,1972,2016,2017,2039,2055,2056,2058,2061,2064,2065,2066,2067,2068,2074,2076,2077,2082,2084,2087,2088,2095,2098,2105,2106,2110,2113,2121,2124,2126,2128,2129,2131,2135,2138,2141,2142,2145,2146,2150,2151,2153,2162,2163,2165,2168,2173,2177,2179,2188,2210,2321,2325,2328,2336,2369,2370,2397,2402,2403,2414,2419,2439,2461,2476,2484,2485,2489,2493,2496,2506,2516,2521,2522,2525,2685,2687,2742,2744,2762,2774,2797,2808,2817,2822,2831,2837,2838,2841,2847,2848,2861,2866,2872,2894,2897,2898,2950,2952,2978,2984,2994,2995,3001,3002,3003,3004,3005,3008,3010,3038,3039,3044,3052,3056,3057,3058,3063,3075,3080,3084,3085,3086,3088,3105,3107,3143,3147,3159,3179,3199,3203,3214,3239,3244,3251,3254,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3270,3271,3272,3273,3277,3288,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3304,3307,3308,3309,3314,3337,3341,3343,3349,3350,3351,3352,3355,3359,3362,3363,3366,3368,3373,3375,3377,3379,3381,3384,3389,3391,3392,3393,3394,3397,3424,3431,3474,3480,3486,3489,3492,3499,3503,3506,3508,3511,3512,3515,3522,3523,3535,3538,3542,3544,3545,3547,3550,3551,3555,3559,3568,3580,3581,3590,3592,3597,3603,3651,3653,3691,3758,3762,3763,3806,3811,3820,3830,3971,3978,3984,3987,3995,4018,4035,4041,4043,4047,4049,4061,4066,4067,4073,4074,4111,4130,4149,4150,4151,4152,4175,4187,4192,4206,4208,4209,4222,4223,4234,4254,4260,4261,4274,4301,4302,4309,4323,4328,4329,4331,4335,4362,4363,4387,4405,4409,4412,4424,4425,4428,4429,4435,4437,4440,4442,4447,4458,4463,4500,4551,4553,4554,4557,4571,4615,4650,4653,4659,4660,4682,4687,4699,4713,4729,4736,4737,4741,4748,4815,4857,4868,4875,4878,4879,4886,4909,4918,4921,4929,4935,4937,4943,4947,4957,4968,4974,4975,4979,4986,4997,5001,5002,5006,5030,5035,5046,5061,5062,5064,5067,5070,5085,5096,5097,5100,5102,5114,5118,5121,5125,5129,5132,5133,5136,5140,5146,5153,5157,5180,5196,5203,5210,5218,5236,5238,5244,5248,5249,5256,5257,5263,5264,5265,5271,5272,5274,5275,5278,5280,5285,5288,5291,5293,5297,5298,5300,5302,5309,5311,5317,5321,5325,5326,5329,5332,5335,5337,5340,5342,5347,5358,5361,5363,5365,5367,5370,5375,5379,5380,5393,5394,5398,5400,5403,5404,5405,5406,5410,5412,5416,5419,5420,5421,5427,5432,5433,5434,5442,5445,5446,5447,5448,5450,5454,5461,5463,5465,5470,5471,5472,5473,5474,5475,5476,5478,5479,5480,5481,5484,5487,5489,5490,5494,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5510,5515,5516,5518,5519,5520,5521,5524,5525,5529,5530,5535,5537,5539,5541,5542,5544,5545,5546,5550,5551,5552,5553,5554,5555,5556,5559,5560,5561,5565,5566,5579,5580,5590,5611,5623,5624,5625,5626,5638,5640,5641,5642,5644,5651,5652,5655,5656,5660,5661,5662,5667,5669,5672,5673,5683,5684,5685,5699,5702,5705,5719,5720,5725,5726,5730,5734,5736,5741,5745,5749,5763,5764,5775,5779,5785,5789,5792,5805,5809,5810,5819,5843,5849,5856,5859,5860,5869,5873,5874,5891,5897,5939,5940,5941,5959,5988,5989,6016,6019,6028,6037,6051,6055,6056,6063,6072,6077,6118,6126,6187,6265,6287,6288,6291,6292,6295,6377,6381,6425,6426,6429,6443,6446,6450,6452,6453,6454,6457,6459,6474,6486,6488,6489,6495,6528,6530,6537,6541,6543,6547,6548,6559,6562,6564,6565,6566,6567,6569,6590,6596,6597,6605,6607,6608,6613,6615,6646,6653,6664,6667,6668,6677,6698,6721,6738,6739,6742,6782,6792,6817,6822,6831,6836,6839,6846,6847,6853,6855,6856,6857,6870,6871,6875,6886,6887,6890,6898,6900,6907,6913,6915,6918,6923,6924,6925,6927,6930,6931,6940,6957,6958,6964,6966,6969,6994,7034,7036,7048,7049,7062,7067,7070,7088,7103,7116,7119,7120,7124,7157,7158,7160,7162,7164,7165,7169,7171,7173,7174,7185,7190,7194,7200,7204,7219,7220,7223,7225,7255,7256,7272,7273,7278,7281,7282,7289,7304,7312,7317,7326,7330,7331,7334,7337,7340,7372,7374,7376,7387,7395,7404,7411,7412,7419,7434,7439,7456,7458,7464,7465,7474,7475,7477,7482,7493,7496,7497,7498,7499,7509,7511,7517,7535,7538,7542,7544,7545,7553,7563,7569,7571,7577,7579,7586,7589,7602,7605,7606,7626,7647,7651,7657,7665,7702,7710,7732,7739,7742,7744,7745,7756,7757,7759,7760,7761,7767,7769,7783,7792,7804,7824,7827,7829,7846,7849,7850,7851,7852,7857,7868,7872,7876,7880,7889,7906,7913,7919,7920,7921,7928,7948,7960,7965,7970,7971,7972,7973,7974,7975,7976,7980,7995,8000,8001,8013,8032,8036,8044,8045,8068,8070,8075,8089,8092,8094,8107,8115,8118,8119,8131,8138,8140,8155,8167,8186,8187,8195,8243,8262,8268,8269,8272,8279,8280,8299,8303,8304,8309,8321,8330,8331,8333,8342,8343,8345,8347,8366,8367,8380,8384,8385,8400,8403,8424,8443,8445,8456,8457,8461,8462,8466,8468,8469,8471,8472,8481,8489,8490,8492,8498,8507,8524,8532,8533,8534,8536,8554,8557,8564,8575,8582,8624,8625,8639,8641,8644,8646,8658,8669,8670,8672,8676,8721,8723,8725,8727,8728,8730,8735,8736,8743,8744,8769,8774,8776,8787,8790,8796,8798,8802,8812,8813,8823,8827,8829,8837,8881,8909,8965,8990,8993,8996,9004,9010,9026,9031,9041,9056,9057,9063,9071,9072,9082,9086,9099,9110,9112,9119,9120,9121,9141,9142,9147,9149,9166,9167,9175,9182,9188,9192,9194,9200,9205,9206,9212,9217,9220,9222,9226,9247,9252,9256,9263,9272,9278,9280,9288,9294,9297,9303,9310,9331,9333,9346,9351,9353,9354,9359,9362,9385,9391,9398,9399,9405,9415,9417,9436,9444,9455,9457,9480,9488,9498,9508,9513,9519,9523,9525,9528,9529,9537,9539,9549,9551,9561,9567,9568,9569,9572,9578,9579,9593,9602,9630,9631,9632,9634,9642,9643,9659,9660,9664,9673,9684,9685,9693,9696,9706,9709,9716,9726,9746,9750,9759,9793,9797,9798,9812,9814,9822,9824,9827,9831,9853,9856,9863,9865,9866,9869,9873,9877,9879,9882,9883,9894,9899,9900,9902,9907,9911,9914,9920,9923,9924,9929,9931,9934,9941,9943,9945,9946,9949,9953,9960,9961,9965,9968,9982,9985,9992,9995,9997,10005,10018,10020,10021,10023,10030,10031,10036,10046,10051,10053,10054,10056,10060,10071,10086,10093,10094,10099,10111,10113,10117,10118,10128,10136,10141,10144,10158,10162,10165,10187,10191,10193,10206,10207,10209,10663,10672,10673,10678,10691,10692,10694,10698,10739,10753,10763,10804,10867,10868,10869,10876,10910,10937,10940,10951,10958,10964,10972,10982,11087,11132,11133,11146,11163,11165,11189,11205,11264,11274,11277,11282,11291,11298,11314,11318,11326,11342,11353,11354,11357,11361,11366,11370,11383,11393,11410,11411,11418,11444,11449,11451,11452,11458,11460,11462,11463,11465,11503,11507,11516,11517,11526,11527,11559,11569,11572,11574,11582,11586,11593,11594,11597,11599,11602,11604,11619,11620,11631,11636,11644,11655,11670,11682,11683,11696,11699,11702,11706,11708,11719,11720,11724,11730,11750,11757,11765,11774,11777,11784,11785,11791,11798,11825,11830,11832,11836,11844,11845,11846,11853,11886,11887,11888,11892,11901,11918,11954,11958,11966,11987,11988,12086,12089,12090,12103,12238,12246,12251,12260,12303,12308,12310,12323,12332,12369,12370,12391,12396,12397,12400,12402,12410,12412,12413,12423,12481,12484,12485,12510,12527,12528,12530,12531,12532,12540,12541,12542,12546,12579,12580,12588,12672,12677,12681,12689,12690,12697,12717,12718,12719,12721,12734,12749,12751,12766,12773,12778,12806,12861,12862,12868,12879,12891,12901,12903,12915,12920,12922,12930,12936,12946,12951,12988,13009,13019,13024,13027,13029,13039,13041,13044,13047,13049,13056,13058,13062,13064,13066,13067,13069,13072,13075,13079,13083,13086,13093,13096,13100,13101,13105,13106,13107,13110,13119,13123,13131,13137,13139,13155,13164,13169,13173,13183,13185,13188,13193,13197,13202,13209,13212,13218,13221,13225,13232,13233,13235,13244,13251,13260,13262,13264,13281,13297,13300,13304,13319,13324,13334,13339,13344,13345,13346,13352,13359,13365,13369,13371,13384,13394,13396,13400,13401,13403,13409,13430,13436,13437,13448,13449,13452,13454,13457,13461,13464,13466,13486,13487,13492,13495,13496,13500,13503,13511,13512,13517,13518,13523,13548,13556,13567,13577,13581,13582,13584,13591,13592,13603,13605,13608,13611,13619,13620,13637,13641,13642,13644,13650,13657,13662,13663,13664,13671,13677,13695,13702,13706,13710,13714,13716,13733,13734,13735,13740,13741,13743,13748,13749,13755,13762,13773,13790,13792,13793,13838,13850,13856,13869,13887,13900,13925,13929,13930,13940,13942,13943,13944,13963,13977,13978,14007,14031,14033,14039,14054,14084,14090,14091,14102,14104,14139,14140,14154,14156,14159,14161,14206,14209,14228,14236,14245,14274,14277,14278,14288,14304,14320,14331,14339,14357,14360,14361,14382,14398,14408,14421,14425,14430,14442,14450,14469,14471,14474,14475,14483,14486,14499,14503,14504,14518,14521,14529,14531,14534,14535,14536,14537,14553,14574,14577,14583,14588,14589,14592,14616,14657,14665,14668,14676,14680,14707,14708,14717,14723,14728,14743,14744,14751,14755,14759,14763,14766,14768,14784,14793,14805,14817,14829,14833,14854,14882,14891,14893,14940,14968,14991,15057,15095,15112,15117,15120,15121,15123,15135,15143,15145,15151,15163,15166,15169,15176,15180,15191,15216,15222,15228,15238,15277,15298,15348,15356,15357,15359,15360,15369,15374,15400,15402,15417,15438,15440,15441,15445,15464,15511,15516,15517,15518,15520,15538,15558,15559,15634,15658,15662,15664,15675,15676,15685,15737,15753,15771,15772,15790,15809,15810,15811,15831,15835,15836,15837,15847,15875,15886,15887,15904,15909,15914,15944,15949,15958,15959,15978,15981,15983,15985,16000,16007,16008,16034,16039,16051,16053,16055,16056,16074,16087,16113,16126,16134,16149,16162,16191,16192,16228,16251,16254,16260,16361,16371,16377,16428,16429,16470,16478,16479,16502,16506,16509,16523,16530,16567,16568,16569,16570,16573,16574,16575,16586,16598,16603,16613,16628,16631,16656,16659,16675,16686,16692,16709,16722,16746,16748,16755,16777,16782,16794,16814,16819,16845,16850,16869,16878,16880,16886,16899,16906,16927,16930,16934,16935,16949,16955,16958,16973,16975,16977,16997,17001,17010,17021,17035,17039,17057,17062,17086,17091,17093,17140,17142,17143,17158,17160,17170,17171,17191,17193,17201,17209,17216,17217,17218,17231,17243,17248,17253,17262,17263,17266,17267,17269,17276,17296,17305,17311,17323,17343,17356,17384,17393,17397,17402,17407,17417,17420,17422,17423,17424,17439,17449,17457,17471,17475,17486,17503,17508,17510,17515,17517,17524,17525,17543,17545,17572,17573,17575,17604,17641,17657,17660,17665,17677,17689,17714,17716,17743,17745,17751,17764,17778,17783,17789,17791,17794,17799,17807,17817,17819,17826,17827,17830,17832,17841,17842,17846,17849,17850,17854,17857,17858,17859,17861,17887,17893,17897,17902,17916,17923,17924,17928,17945,17948,17975,17981,17991,17993,18054,18063,18081,18090,18095,18104,18115,18160,18162,18176,18179,18180,18182,18189,18191,18192,18202,18209,18210,18215,18218,18219,18222,18223,18226,18227,18231,18232,18237,18251,18252,18253,18254,18258,18262,18280,18298,18313,18328,18329,18337,18342,18344,18345,18351,18362,18378,18385,18386,18391,18401,18414,18416,18440,18441,18446,18448,18451,18454,18458,18460,18463,18468,18482,18483,18484,18488,18496,18500,18504,18505,18507,18524,18527,18528,18530,18541,18551,18553,18554,18562,18565,18566,18574,18578,18579,18580,18582,18584,18588,18593,18596,18599,18602,18606,18607,18610,18613,18615,18620,18621,18622,18624,18625,18630,18633,18635,18646,18651,18659,18667,18668,18669,18679,18682,18683,18687,18694,18708,18711,18714,18718,18724,18727,18733,18734,18737,18742,18745,18748,18750,18751,18753,18758,18769,18775,18776,18777,18781,18788,18789,18790,18792,18793,18797,18801,18806,18808,18821,18832,18833,18855,18866,18874,18879,18882,18885,18889,18898,18899,18903,18909,18914,18917,18919,18920,18922,18926,18931,18941,18946,18965,18967,18973,18976,18982,18984,18985,18988,18989,18992,18999,19000,19002,19003,19004,19006,19009,19010,19012,19014,19015,19021,19027,19028,19035,19038,19049,19054,19055,19061,19062,19067,19068,19070,19073,19076,19077,19079,19080,19086,19087,19097,19104,19105,19106,19108,19109,19118,19125,19128,19132,19138,19139,19141,19143,19145,19146,19147,19150,19155,19157,19159,19165,19173,19175,19178,19180,19184,19188,19205,19206,19208,19211,19217,19222,19224,19226,19234,19237,19238,19245,19247,19253,19262,19266,19267,19277,19278,19280,19283,19287,19293,19303,19306,19307,19308,19311,19315,19322,19329,19332,19334,19335,19338,19340,19342,19344,19347,19349,19353,19361,19363,19365,19368,19373,19380,19384,19399,19401,19402,19412,19425,19431,19433,19438,19439,19447,19450,19459,19460,19465,19467,19469,19470,19472,19475,19480,19481,19482,19484,19486,19494,19500,19504,19505,19507,19508,19513,19516,19522,19524,19526,19530,19537,19538,19541,19542,19563,19567,19576,19577,19591,19604,19605,19609,19610,19611,19616,19633,19644,19646,19651,19654,19658,19662,19666,19667,19678,19681,19686,19691,19700,19703,19731,19735,19736,19754,19764,19766,19771,19778,19799,19800,19804,19805,19815,19818,19819,19836,19837,19838,19839,19840,19842,19866,19867,19873,19878,19883,19888,19893,19910,19912,19913,19915,19918,19919,19920,19922,19939,19940,19941,19944,19946,19948,19955,19965,19980,19985,19988,19996,19999,20001,20004,20013,20015,20020,20031,20033,20037,20060,20066,20073,20076,20091,20107,20110,20136,20137,20139,20152,20163,20171,20173,20179,20186,20190,20208,20217,20221,20231,20238,20251,20256,20269,20276,20319,20320,20333,20334,20340,20346,20349,20353,20356,20376,20385,20387,20390,20391,20392,20396,20397,20403,20428,20432,20434,20436,20437,20454,20473,20476,20481,20507,20508,20509,20511,20521,20522,20523,20527,20528,20537,20543,20552,20553,20555,20573,20581,20584,20586,20590,20596,20622,20632,20644,20649,20658,20666,20667,20682,20689,20693,20713,20714,20715,20717,20720,20727,20730,20754,20766,20778,20784,20790,20791,20793,20805,20809,20818,20823,20834,20835,20837,20843,20855,20856,20857,20861,20862,20863,20864,20865,20866,20867,20868,20869,20870,20871,20872,20873,20874,20877,20878,20879,20903,20908,20911,20916,20919,20920,20927,20933,20939,20942,20943,20944,20949,20970,21000,21004,21034,21055,21062,21063,21069,21070,21073,21075,21078,21079,21081,21093,21115,21119,21120,21159,21188,21225,21238,21255,21257,21275,21286,21288,21289,21292,21293,21295,21311,21315,21316,21317,21321,21323,21350,21353,21381,21390,21415,21439,21455,21532,21566,21601,21607,21612,21617,21618,21630,21657,21664,21673,21684,21690,21691,21716,21745,21983,21985,22000,22002,22006,22040,22042,22048,22051,22053,22055,22057,22060,22061,22063,22065,22074,22078,22089,22101,22103,22104,22107,22109,22111,22112,22113,22128,22131,22143,22147,22155,22156,22158,22165,22173,22187,22188,22192,22194,22198,22200,22207,22210,22211,22212,22225,22234,22243,22245,22249,22279,22285,22307,22313,22318,22319,22364,22367,22370,22373,22375,22377,22380,22383,22385,22391,22393,22394,22401,22403,22405,22416,22417,22418,22419,22420,22421,22428,22434,22441,22443,22444,22445,22446,22456,22460,22463,22467,22470,22472,22477,22480,22483,22489,22492,22493,22496,22499,22502,22503,22504,22505,22515,22518,22526,22528,22537,22544,22567,22568,22570,22578,22579,22584,22598,22601,22602,22605,22609,22612,22613,22619,22623,22632,22640,22648,22662,22663,22682,22693,22713,22731,22733,22736,22737,22743,22744,22748,22751,22754,22755,22761,22785,22793,22799,22800,22806,22822,22825,22827,22831,22833,22835,22842,22858,22874,22882,22884,22890,22914,22927,22935,22968,22969,22975,22976,22987,22990,23004,23022,23026,23033,23034,23037,23040,23044,23052,23062,23070,23074,23075,23085,23086,23091,23105,23109,23113,23118,23125,23126,23127,23130,23131,23138]]],["nothing",[19,19,[[1,2,2,0,2,[[61,1,1,0,1],[72,1,1,1,2]]],[6,1,1,2,3,[[213,1,1,2,3]]],[8,3,3,3,6,[[238,1,1,3,4],[257,1,1,4,5],[265,1,1,5,6]]],[10,1,1,6,7,[[312,1,1,6,7]]],[11,1,1,7,8,[[322,1,1,7,8]]],[13,1,1,8,9,[[384,1,1,8,9]]],[14,1,1,9,10,[[406,1,1,9,10]]],[15,2,2,10,12,[[417,1,1,10,11],[421,1,1,11,12]]],[17,3,3,12,15,[[441,1,1,12,13],[443,1,1,13,14],[469,1,1,14,15]]],[19,1,1,15,16,[[637,1,1,15,16]]],[23,1,1,16,17,[[776,1,1,16,17]]],[24,1,1,17,18,[[797,1,1,17,18]]],[28,1,1,18,19,[[877,1,1,18,19]]]],[1826,2170,6570,7294,7802,7997,9496,9803,11557,12113,12394,12532,12999,13038,13692,16658,19754,20322,22314]]],["nought",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5328]]],["of",[2,2,[[2,1,1,0,1,[[104,1,1,0,1]]],[17,1,1,1,2,[[457,1,1,1,2]]]],[3193,13405]]],["or",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12265]]],["otherwise",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11845]]],["want",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16770]]],["wanting",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16932]]],["without",[31,26,[[3,2,1,0,1,[[151,2,1,0,1]]],[4,1,1,1,2,[[160,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[11,1,1,3,4,[[337,1,1,3,4]]],[12,2,2,4,6,[[339,2,2,4,6]]],[13,4,2,6,8,[[381,3,1,6,7],[387,1,1,7,8]]],[17,10,9,8,17,[[439,1,1,8,9],[443,1,1,9,10],[445,1,1,10,11],[447,1,1,11,12],[461,1,1,12,13],[465,1,1,13,14],[469,4,3,14,17]]],[19,2,2,17,19,[[643,1,1,17,18],[646,1,1,18,19]]],[20,1,1,19,20,[[668,1,1,19,20]]],[22,3,2,20,22,[[730,1,1,20,21],[733,2,1,21,22]]],[23,2,2,22,24,[[759,1,1,22,23],[796,1,1,23,24]]],[24,1,1,24,25,[[797,1,1,24,25]]],[25,1,1,25,26,[[818,1,1,25,26]]]],[4867,5146,8657,10238,10336,10338,11493,11644,12951,13040,13108,13153,13469,13585,13703,13707,13718,16848,16927,17504,18699,18741,19328,20296,20316,20834]]]]},{"k":"H3809","v":[["*",[82,60,[[14,12,12,0,12,[[406,4,4,0,4],[407,2,2,4,6],[408,2,2,6,8],[409,4,4,8,12]]],[23,1,1,12,13,[[754,1,1,12,13]]],[26,69,47,13,60,[[851,16,12,13,25],[852,21,12,25,37],[853,6,5,37,42],[854,7,4,42,46],[855,17,13,46,59],[856,2,1,59,60]]]],[12123,12124,12126,12131,12139,12150,12159,12160,12195,12197,12198,12199,19212,21763,21767,21768,21769,21776,21785,21788,21792,21793,21801,21802,21803,21813,21818,21819,21821,21822,21823,21825,21831,21832,21834,21835,21836,21844,21846,21855,21867,21872,21882,21889,21896,21897,21907,21909,21910,21913,21917,21918,21920,21922,21923,21927,21928,21929,21931,21947]]],["+",[17,17,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]],[26,15,15,2,17,[[851,6,6,2,8],[852,3,3,8,11],[853,2,2,11,13],[855,4,4,13,17]]]],[12160,12195,21768,21785,21792,21793,21802,21803,21813,21818,21834,21846,21855,21909,21920,21928,21929]]],["neither",[3,3,[[26,3,3,0,3,[[852,1,1,0,1],[855,2,2,1,3]]]],[21834,21909,21923]]],["no",[5,5,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,4,4,1,5,[[852,2,2,1,3],[855,2,2,3,5]]]],[12126,21832,21836,21907,21927]]],["none",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21769,21872]]],["nor",[8,6,[[26,8,6,0,6,[[852,6,5,0,5],[854,2,1,5,6]]]],[21819,21821,21825,21834,21835,21897]]],["not",[46,39,[[14,9,9,0,9,[[406,3,3,0,3],[407,2,2,3,5],[408,1,1,5,6],[409,3,3,6,9]]],[23,1,1,9,10,[[754,1,1,9,10]]],[26,36,29,10,39,[[851,9,8,10,18],[852,9,7,18,25],[853,2,2,25,27],[854,5,4,27,31],[855,9,7,31,38],[856,2,1,38,39]]]],[12123,12124,12131,12139,12150,12159,12197,12198,12199,19212,21763,21767,21768,21769,21776,21788,21801,21802,21819,21821,21822,21823,21825,21831,21835,21844,21867,21882,21889,21896,21897,21910,21913,21917,21918,21922,21927,21931,21947]]],["nothing",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21872]]]]},{"k":"H3810","v":[["*",[3,3,[[9,3,3,0,3,[[275,2,2,0,2],[283,1,1,2,3]]]],[8231,8232,8476]]],["+",[2,2,[[9,2,2,0,2,[[275,1,1,0,1],[283,1,1,1,2]]]],[8232,8476]]],["Lodebar",[1,1,[[9,1,1,0,1,[[275,1,1,0,1]]]],[8231]]]]},{"k":"H3811","v":[["*",[19,18,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,1,1,1,2,[[56,1,1,1,2]]],[17,3,3,2,5,[[439,2,2,2,4],[451,1,1,4,5]]],[18,1,1,5,6,[[545,1,1,5,6]]],[19,1,1,6,7,[[653,1,1,6,7]]],[22,5,4,7,11,[[679,1,1,7,8],[685,2,1,8,9],[694,1,1,9,10],[725,1,1,10,11]]],[23,5,5,11,16,[[750,1,1,11,12],[753,1,1,12,13],[756,1,1,13,14],[759,1,1,14,15],[764,1,1,15,16]]],[25,1,1,16,17,[[825,1,1,16,17]]],[32,1,1,17,18,[[898,1,1,17,18]]]],[468,1703,12932,12935,13245,14909,17156,17668,17795,17981,18612,19100,19180,19254,19321,19431,21068,22651]]],["+",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17795]]],["faintest",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12935]]],["grieved",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12932]]],["grieveth",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17156]]],["lothe",[1,1,[[1,1,1,0,1,[[56,1,1,0,1]]]],[1703]]],["themselves",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[23,1,1,1,2,[[753,1,1,1,2]]]],[468,19180]]],["wearied",[4,4,[[22,1,1,0,1,[[725,1,1,0,1]]],[23,1,1,1,2,[[756,1,1,1,2]]],[25,1,1,2,3,[[825,1,1,2,3]]],[32,1,1,3,4,[[898,1,1,3,4]]]],[18612,19254,21068,22651]]],["weary",[8,8,[[17,1,1,0,1,[[451,1,1,0,1]]],[18,1,1,1,2,[[545,1,1,1,2]]],[22,3,3,2,5,[[679,1,1,2,3],[685,1,1,3,4],[694,1,1,4,5]]],[23,3,3,5,8,[[750,1,1,5,6],[759,1,1,6,7],[764,1,1,7,8]]]],[13245,14909,17668,17795,17981,19100,19321,19431]]]]},{"k":"H3812","v":[["*",[34,32,[[0,33,31,0,31,[[28,8,8,0,8],[29,12,11,8,19],[30,4,3,19,22],[32,3,3,22,25],[33,1,1,25,26],[34,2,2,26,28],[45,2,2,28,30],[48,1,1,30,31]]],[7,1,1,31,32,[[235,1,1,31,32]]]],[811,812,818,819,820,825,826,827,839,840,841,842,843,844,846,847,848,849,850,877,887,906,961,962,967,981,1034,1037,1401,1404,1504,7201]]],["+",[3,3,[[0,3,3,0,3,[[28,2,2,0,2],[30,1,1,2,3]]]],[819,825,906]]],["Leah",[27,26,[[0,26,25,0,25,[[28,6,6,0,6],[29,10,9,6,15],[30,2,2,15,17],[32,3,3,17,20],[33,1,1,20,21],[34,1,1,21,22],[45,2,2,22,24],[48,1,1,24,25]]],[7,1,1,25,26,[[235,1,1,25,26]]]],[811,812,818,820,826,827,839,841,843,844,846,847,848,849,850,877,887,961,962,967,981,1034,1401,1404,1504,7201]]],["Leah's",[4,4,[[0,4,4,0,4,[[29,2,2,0,2],[30,1,1,2,3],[34,1,1,3,4]]]],[840,842,906,1037]]]]},{"k":"H3813","v":[["+",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8515]]]]},{"k":"H3814","v":[["softly",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6620]]]]},{"k":"H3815","v":[["Lael",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3716]]]]},{"k":"H3816","v":[["*",[35,31,[[0,4,2,0,2,[[24,3,1,0,1],[26,1,1,1,2]]],[18,14,13,2,15,[[479,1,1,2,3],[484,1,1,3,4],[486,1,1,4,5],[521,2,2,5,7],[524,1,1,7,8],[534,1,1,8,9],[542,1,1,9,10],[544,2,1,10,11],[582,1,1,11,12],[585,1,1,12,13],[625,1,1,13,14],[626,1,1,14,15]]],[19,4,4,15,19,[[638,1,1,15,16],[641,2,2,16,18],[651,1,1,18,19]]],[22,11,10,19,29,[[695,2,2,19,21],[712,1,1,21,22],[719,1,1,22,23],[721,2,2,23,25],[727,1,1,25,26],[729,1,1,26,27],[733,2,1,27,28],[738,1,1,28,29]]],[23,1,1,29,30,[[795,1,1,29,30]]],[34,1,1,30,31,[[904,1,1,30,31]]]],[681,756,13946,14002,14029,14573,14585,14628,14777,14867,14897,15650,15745,16382,16392,16714,16800,16806,17103,17995,17996,18304,18452,18509,18514,18637,18677,18744,18823,20270,22761]]],["+",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[681]]],["folk",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20270]]],["nation",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18677]]],["nations",[9,8,[[0,1,1,0,1,[[26,1,1,0,1]]],[18,5,4,1,5,[[524,1,1,1,2],[534,1,1,2,3],[544,2,1,3,4],[585,1,1,4,5]]],[19,1,1,5,6,[[651,1,1,5,6]]],[22,2,2,6,8,[[695,2,2,6,8]]]],[756,14628,14777,14897,15745,17103,17995,17996]]],["people",[23,21,[[0,2,1,0,1,[[24,2,1,0,1]]],[18,9,9,1,10,[[479,1,1,1,2],[484,1,1,2,3],[486,1,1,3,4],[521,2,2,4,6],[542,1,1,6,7],[582,1,1,7,8],[625,1,1,8,9],[626,1,1,9,10]]],[19,3,3,10,13,[[638,1,1,10,11],[641,2,2,11,13]]],[22,8,7,13,20,[[712,1,1,13,14],[719,1,1,14,15],[721,2,2,15,17],[727,1,1,17,18],[733,2,1,18,19],[738,1,1,19,20]]],[34,1,1,20,21,[[904,1,1,20,21]]]],[681,13946,14002,14029,14573,14585,14867,15650,16382,16392,16714,16800,16806,18304,18452,18509,18514,18637,18744,18823,22761]]]]},{"k":"H3817","v":[["Leummim",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[661]]]]},{"k":"H3818","v":[["Loammi",[1,1,[[27,1,1,0,1,[[862,1,1,0,1]]]],[22103]]]]},{"k":"H3819","v":[["Loruhamah",[2,2,[[27,2,2,0,2,[[862,2,2,0,2]]]],[22100,22102]]]]},{"k":"H3820","v":[["*",[598,553,[[0,13,12,0,12,[[5,2,2,0,2],[7,2,1,2,3],[16,1,1,3,4],[17,1,1,4,5],[23,1,1,5,6],[26,1,1,6,7],[30,1,1,7,8],[33,1,1,8,9],[41,1,1,9,10],[44,1,1,10,11],[49,1,1,11,12]]],[1,46,41,12,53,[[53,2,2,12,14],[56,5,5,14,19],[57,3,3,19,22],[58,6,6,22,28],[59,4,3,28,31],[60,1,1,31,32],[63,3,3,32,35],[64,1,1,35,36],[74,1,1,36,37],[77,4,3,37,40],[80,2,1,40,41],[84,9,9,41,50],[85,5,3,50,53]]],[3,4,4,53,57,[[132,1,1,53,54],[140,1,1,54,55],[148,2,2,55,57]]],[4,4,4,57,61,[[156,1,1,57,58],[180,1,1,58,59],[181,2,2,59,61]]],[5,2,2,61,63,[[197,1,1,61,62],[200,1,1,62,63]]],[6,14,13,63,76,[[215,3,3,63,66],[219,1,1,66,67],[226,5,4,67,71],[228,1,1,71,72],[229,4,4,72,76]]],[7,2,2,76,78,[[233,1,1,76,77],[234,1,1,77,78]]],[8,16,16,78,94,[[236,1,1,78,79],[237,1,1,79,80],[239,2,2,80,82],[241,1,1,82,83],[244,1,1,83,84],[245,2,2,84,86],[252,1,1,86,87],[259,1,1,87,88],[260,4,4,88,92],[262,1,1,92,93],[263,1,1,93,94]]],[9,18,15,94,109,[[272,1,1,94,95],[273,2,2,95,97],[279,3,3,97,100],[280,1,1,100,101],[281,2,2,101,103],[283,2,1,103,104],[284,4,2,104,106],[285,2,2,106,108],[290,1,1,108,109]]],[10,14,14,109,123,[[293,2,2,109,111],[294,1,1,111,112],[298,3,3,112,115],[299,1,1,115,116],[300,1,1,116,117],[301,1,1,117,118],[302,3,3,118,121],[308,1,1,121,122],[311,1,1,122,123]]],[11,6,6,123,129,[[317,1,1,123,124],[318,1,1,124,125],[321,1,1,125,126],[324,1,1,126,127],[326,1,1,127,128],[335,1,1,128,129]]],[12,8,7,129,136,[[349,3,2,129,131],[352,1,1,131,132],[353,1,1,132,133],[354,1,1,133,134],[365,1,1,134,135],[366,1,1,135,136]]],[13,16,16,136,152,[[372,2,2,136,138],[373,3,3,138,141],[375,1,1,141,142],[378,1,1,142,143],[383,1,1,143,144],[390,1,1,144,145],[391,1,1,145,146],[392,1,1,146,147],[395,1,1,147,148],[396,2,2,148,150],[398,2,2,150,152]]],[14,2,2,152,154,[[408,1,1,152,153],[409,1,1,153,154]]],[15,6,6,154,160,[[414,2,2,154,156],[416,1,1,156,157],[417,1,1,157,158],[418,1,1,158,159],[419,1,1,159,160]]],[16,4,4,160,164,[[426,1,1,160,161],[430,1,1,161,162],[431,1,1,162,163],[432,1,1,163,164]]],[17,20,20,164,184,[[436,1,1,164,165],[437,1,1,165,166],[442,1,1,166,167],[443,1,1,167,168],[446,1,1,168,169],[447,1,1,169,170],[450,1,1,170,171],[452,1,1,171,172],[458,1,1,172,173],[464,1,1,173,174],[466,3,3,174,177],[468,1,1,177,178],[469,1,1,178,179],[471,2,2,179,181],[472,2,2,181,183],[476,1,1,183,184]]],[18,101,98,184,282,[[481,1,1,184,185],[484,2,2,185,187],[486,1,1,187,188],[487,4,4,188,192],[488,1,1,192,193],[489,2,1,193,194],[490,1,1,194,195],[491,1,1,195,196],[493,1,1,196,197],[494,1,1,197,198],[496,2,2,198,200],[498,1,1,200,201],[499,1,1,201,202],[503,1,1,202,203],[504,3,3,203,206],[505,2,1,206,207],[508,1,1,207,208],[509,1,1,208,209],[510,3,3,209,212],[511,1,1,212,213],[512,1,1,213,214],[513,2,2,214,216],[514,3,3,216,219],[515,2,2,219,221],[516,1,1,221,222],[517,2,2,222,224],[518,1,1,224,225],[521,2,2,225,227],[522,2,2,227,229],[523,1,1,229,230],[525,1,1,230,231],[526,1,1,231,232],[528,2,2,232,234],[530,1,1,234,235],[532,2,2,235,237],[534,2,1,237,238],[535,1,1,238,239],[538,1,1,239,240],[539,1,1,240,241],[541,2,2,241,243],[543,1,1,243,244],[546,1,1,244,245],[551,1,1,245,246],[553,1,1,246,247],[555,2,2,247,249],[558,1,1,249,250],[560,1,1,250,251],[561,1,1,251,252],[571,1,1,252,253],[574,1,1,253,254],[579,1,1,254,255],[582,2,2,255,257],[584,1,1,257,258],[585,1,1,258,259],[586,1,1,259,260],[589,2,2,260,262],[596,14,14,262,276],[608,1,1,276,277],[615,1,1,277,278],[617,1,1,278,279],[618,1,1,279,280],[620,1,1,280,281],[624,1,1,281,282]]],[19,94,92,282,374,[[629,2,2,282,284],[630,3,3,284,287],[631,2,2,287,289],[632,1,1,289,290],[633,4,4,290,294],[634,4,4,294,298],[635,1,1,298,299],[636,2,2,299,301],[637,4,4,301,305],[638,3,3,305,308],[639,5,5,308,313],[640,1,1,313,314],[641,5,5,314,319],[642,9,8,319,327],[643,5,5,327,332],[644,4,4,332,336],[645,3,3,336,339],[646,3,3,339,342],[647,2,2,342,344],[648,2,2,344,346],[649,3,3,346,349],[650,9,8,349,357],[651,5,5,357,362],[652,2,2,362,364],[653,2,2,364,366],[654,4,4,366,370],[655,2,2,370,372],[657,1,1,372,373],[658,1,1,373,374]]],[20,41,34,374,408,[[659,4,3,374,377],[660,10,7,377,384],[661,3,3,384,387],[663,2,2,387,389],[665,9,8,389,397],[666,4,4,397,401],[667,3,3,401,404],[668,3,2,404,406],[669,3,2,406,408]]],[21,3,3,408,411,[[673,1,1,408,409],[675,1,1,409,410],[678,1,1,410,411]]],[22,31,30,411,441,[[684,1,1,411,412],[693,1,1,412,413],[702,1,1,413,414],[707,1,1,414,415],[710,1,1,415,416],[711,1,1,416,417],[713,1,1,417,418],[716,1,1,418,419],[718,1,1,419,420],[719,1,1,420,421],[720,1,1,421,422],[722,3,3,422,425],[724,2,2,425,427],[725,2,2,427,429],[729,1,1,429,430],[735,4,4,430,434],[737,1,1,434,435],[739,1,1,435,436],[741,2,2,436,438],[743,3,2,438,440],[744,1,1,440,441]]],[23,58,51,441,492,[[747,4,4,441,445],[748,6,4,445,449],[749,2,2,449,451],[751,2,2,451,453],[752,1,1,453,454],[753,2,2,454,456],[755,2,2,456,458],[756,2,2,458,460],[757,1,1,460,461],[758,1,1,461,462],[760,1,1,462,463],[761,4,4,463,467],[762,1,1,467,468],[763,1,1,468,469],[764,2,2,469,471],[766,1,1,471,472],[767,6,5,472,477],[768,2,1,477,478],[774,2,2,478,480],[775,2,2,480,482],[776,3,3,482,485],[788,1,1,485,486],[792,5,3,486,489],[793,3,2,489,491],[795,1,1,491,492]]],[24,9,9,492,501,[[797,2,2,492,494],[798,2,2,494,496],[799,3,3,496,499],[801,2,2,499,501]]],[25,42,32,501,533,[[803,1,1,501,502],[804,1,1,502,503],[807,1,1,503,504],[812,5,2,504,506],[814,3,3,506,509],[815,4,4,509,513],[819,1,1,513,514],[821,1,1,514,515],[822,2,2,515,517],[823,1,1,517,518],[828,4,4,518,522],[829,8,4,522,526],[833,1,1,526,527],[834,1,1,527,528],[837,3,1,528,529],[841,1,1,529,530],[845,4,3,530,533]]],[26,2,2,533,535,[[850,1,1,533,534],[859,1,1,534,535]]],[27,9,9,535,544,[[863,1,1,535,536],[865,1,1,536,537],[868,3,3,537,540],[871,1,1,540,541],[872,1,1,541,542],[874,2,2,542,544]]],[29,1,1,544,545,[[880,1,1,544,545]]],[30,2,1,545,546,[[888,2,1,545,546]]],[33,1,1,546,547,[[901,1,1,546,547]]],[35,1,1,547,548,[[908,1,1,547,548]]],[37,4,3,548,551,[[917,1,1,548,549],[920,2,1,549,550],[922,1,1,550,551]]],[38,4,2,551,553,[[926,2,1,551,552],[928,2,1,552,553]]]],[142,143,204,414,429,636,768,893,983,1280,1384,1527,1615,1622,1688,1698,1699,1707,1708,1725,1729,1742,1749,1754,1756,1763,1776,1777,1778,1797,1804,1816,1893,1897,1906,1928,2197,2296,2322,2323,2426,2536,2541,2552,2553,2556,2557,2560,2565,2566,2567,2568,2574,4222,4459,4725,4727,5015,5676,5683,5698,6127,6195,6632,6638,6639,6757,6964,6966,6967,6974,7013,7027,7029,7030,7046,7162,7179,7225,7241,7310,7317,7337,7411,7427,7444,7650,7844,7886,7892,7897,7898,7931,7947,8173,8201,8207,8337,8345,8350,8357,8395,8402,8459,8481,8492,8518,8530,8702,8825,8828,8873,9008,9032,9051,9054,9103,9111,9177,9178,9184,9378,9458,9673,9685,9780,9854,9906,10168,10753,10758,10820,10830,10882,11152,11173,11296,11320,11334,11335,11340,11387,11451,11529,11681,11723,11748,11822,11839,11849,11900,11901,12173,12200,12309,12319,12365,12389,12409,12425,12712,12788,12799,12812,12877,12894,13025,13039,13121,13152,13215,13264,13435,13545,13595,13597,13615,13653,13697,13741,13749,13770,13793,13912,13972,14004,14005,14022,14047,14052,14054,14058,14061,14068,14079,14081,14101,14106,14176,14182,14193,14218,14275,14288,14293,14299,14306,14343,14366,14377,14381,14387,14406,14435,14439,14448,14454,14465,14481,14498,14500,14515,14535,14537,14548,14589,14592,14598,14602,14616,14647,14651,14701,14708,14720,14736,14753,14775,14781,14821,14837,14856,14860,14891,14955,15056,15086,15121,15150,15229,15246,15261,15446,15489,15525,15609,15631,15711,15743,15777,15810,15811,15900,15908,15909,15930,15932,15934,15956,15967,15968,15978,16009,16010,16043,16059,16149,16232,16265,16280,16297,16354,16435,16443,16456,16458,16460,16494,16513,16529,16554,16558,16561,16572,16578,16582,16585,16600,16607,16642,16654,16664,16669,16676,16677,16700,16708,16717,16727,16730,16739,16742,16744,16759,16782,16785,16786,16802,16805,16814,16820,16821,16822,16828,16835,16837,16839,16841,16845,16849,16861,16863,16889,16891,16893,16895,16903,16913,16916,16928,16933,16946,16959,16963,16985,16988,17026,17030,17032,17051,17056,17059,17061,17063,17070,17077,17078,17081,17091,17096,17109,17111,17116,17133,17164,17166,17178,17180,17188,17192,17210,17222,17270,17295,17328,17331,17332,17334,17336,17343,17348,17353,17355,17356,17370,17376,17377,17399,17417,17431,17432,17433,17436,17450,17451,17454,17455,17463,17467,17469,17474,17476,17478,17482,17495,17496,17522,17523,17582,17600,17646,17779,17965,18102,18206,18265,18297,18324,18393,18422,18473,18505,18551,18552,18553,18594,18598,18606,18609,18680,18766,18776,18780,18782,18813,18844,18870,18883,18911,18914,18936,19012,19017,19018,19019,19036,19041,19045,19046,19079,19081,19143,19150,19171,19189,19201,19234,19246,19252,19260,19276,19307,19348,19358,19362,19366,19367,19396,19412,19431,19434,19471,19493,19500,19501,19504,19510,19531,19688,19691,19712,19724,19766,19770,19772,20031,20109,20116,20121,20143,20149,20213,20330,20332,20350,20351,20375,20387,20419,20457,20459,20496,20509,20572,20674,20676,20710,20725,20730,20734,20735,20736,20738,20880,20911,20951,20959,20990,21125,21146,21147,21148,21159,21163,21165,21174,21257,21311,21385,21481,21604,21606,21608,21745,22027,22119,22144,22184,22189,22192,22227,22248,22272,22274,22395,22513,22709,22834,22974,23023,23050,23105,23144]]],["+",[51,47,[[0,2,2,0,2,[[33,1,1,0,1],[49,1,1,1,2]]],[1,1,1,2,3,[[58,1,1,2,3]]],[3,2,2,3,5,[[132,1,1,3,4],[140,1,1,4,5]]],[6,2,2,5,7,[[229,2,2,5,7]]],[7,1,1,7,8,[[233,1,1,7,8]]],[8,2,2,8,10,[[239,1,1,8,9],[260,1,1,9,10]]],[9,4,3,10,13,[[279,1,1,10,11],[284,2,1,11,12],[285,1,1,12,13]]],[10,2,2,13,15,[[298,1,1,13,14],[302,1,1,14,15]]],[11,1,1,15,16,[[321,1,1,15,16]]],[12,2,1,16,17,[[349,2,1,16,17]]],[13,2,2,17,19,[[390,1,1,17,18],[396,1,1,18,19]]],[15,1,1,19,20,[[418,1,1,19,20]]],[17,4,4,20,24,[[436,1,1,20,21],[437,1,1,21,22],[443,1,1,22,23],[458,1,1,23,24]]],[18,7,6,24,30,[[489,2,1,24,25],[508,1,1,25,26],[525,1,1,26,27],[553,1,1,27,28],[555,1,1,28,29],[560,1,1,29,30]]],[19,2,2,30,32,[[651,1,1,30,31],[654,1,1,31,32]]],[20,1,1,32,33,[[669,1,1,32,33]]],[22,7,7,33,40,[[702,1,1,33,34],[707,1,1,34,35],[718,1,1,35,36],[719,1,1,36,37],[724,1,1,37,38],[737,1,1,38,39],[739,1,1,39,40]]],[24,1,1,40,41,[[799,1,1,40,41]]],[25,5,4,41,45,[[803,1,1,41,42],[804,1,1,42,43],[814,1,1,43,44],[845,2,1,44,45]]],[27,1,1,45,46,[[863,1,1,45,46]]],[29,1,1,46,47,[[880,1,1,46,47]]]],[983,1527,1763,4222,4459,7027,7046,7162,7317,7886,8337,8481,8518,9032,9184,9780,10753,11681,11849,12409,12877,12894,13039,13435,14068,14343,14647,15086,15121,15246,17111,17192,17523,18102,18206,18422,18473,18598,18813,18844,20387,20496,20509,20710,21604,22119,22395]]],["heart",[477,441,[[0,9,8,0,8,[[5,2,2,0,2],[7,2,1,2,3],[16,1,1,3,4],[23,1,1,4,5],[26,1,1,5,6],[41,1,1,6,7],[44,1,1,7,8]]],[1,35,32,8,40,[[53,2,2,8,10],[56,5,5,10,15],[57,3,3,15,18],[58,5,5,18,23],[59,4,3,23,26],[60,1,1,26,27],[63,2,2,27,29],[64,1,1,29,30],[74,1,1,30,31],[77,3,2,31,33],[84,6,6,33,39],[85,2,1,39,40]]],[3,2,2,40,42,[[148,2,2,40,42]]],[4,3,3,42,45,[[180,1,1,42,43],[181,2,2,43,45]]],[5,1,1,45,46,[[200,1,1,45,46]]],[6,10,9,46,55,[[215,3,3,46,49],[226,4,3,49,52],[228,1,1,52,53],[229,2,2,53,55]]],[7,1,1,55,56,[[234,1,1,55,56]]],[8,11,11,56,67,[[236,1,1,56,57],[237,1,1,57,58],[239,1,1,58,59],[245,1,1,59,60],[252,1,1,60,61],[259,1,1,61,62],[260,3,3,62,65],[262,1,1,65,66],[263,1,1,66,67]]],[9,11,10,67,77,[[272,1,1,67,68],[273,2,2,68,70],[279,2,2,70,72],[280,1,1,72,73],[283,2,1,73,74],[284,1,1,74,75],[285,1,1,75,76],[290,1,1,76,77]]],[10,12,12,77,89,[[293,2,2,77,79],[294,1,1,79,80],[298,2,2,80,82],[299,1,1,82,83],[300,1,1,83,84],[301,1,1,84,85],[302,2,2,85,87],[308,1,1,87,88],[311,1,1,88,89]]],[11,5,5,89,94,[[317,1,1,89,90],[318,1,1,90,91],[324,1,1,91,92],[326,1,1,92,93],[335,1,1,93,94]]],[12,6,6,94,100,[[349,1,1,94,95],[352,1,1,95,96],[353,1,1,96,97],[354,1,1,97,98],[365,1,1,98,99],[366,1,1,99,100]]],[13,13,13,100,113,[[372,1,1,100,101],[373,3,3,101,104],[375,1,1,104,105],[378,1,1,105,106],[383,1,1,106,107],[391,1,1,107,108],[392,1,1,108,109],[395,1,1,109,110],[396,1,1,110,111],[398,2,2,111,113]]],[14,2,2,113,115,[[408,1,1,113,114],[409,1,1,114,115]]],[15,3,3,115,118,[[414,2,2,115,117],[419,1,1,117,118]]],[16,4,4,118,122,[[426,1,1,118,119],[430,1,1,119,120],[431,1,1,120,121],[432,1,1,121,122]]],[17,15,15,122,137,[[442,1,1,122,123],[446,1,1,123,124],[447,1,1,124,125],[450,1,1,125,126],[452,1,1,126,127],[464,1,1,127,128],[466,3,3,128,131],[468,1,1,131,132],[469,1,1,132,133],[471,1,1,133,134],[472,2,2,134,136],[476,1,1,136,137]]],[18,87,85,137,222,[[481,1,1,137,138],[484,1,1,138,139],[486,1,1,139,140],[487,4,4,140,144],[488,1,1,144,145],[490,1,1,145,146],[491,1,1,146,147],[493,1,1,147,148],[494,1,1,148,149],[496,2,2,149,151],[499,1,1,151,152],[503,1,1,152,153],[504,3,3,153,156],[505,2,1,156,157],[509,1,1,157,158],[510,2,2,158,160],[511,1,1,160,161],[513,2,2,161,163],[514,3,3,163,166],[515,2,2,166,168],[516,1,1,168,169],[517,2,2,169,171],[518,1,1,171,172],[521,2,2,172,174],[522,2,2,174,176],[526,1,1,176,177],[528,2,2,177,179],[530,1,1,179,180],[532,2,2,180,182],[534,2,1,182,183],[535,1,1,183,184],[538,1,1,184,185],[539,1,1,185,186],[541,2,2,186,188],[543,1,1,188,189],[546,1,1,189,190],[555,1,1,190,191],[561,1,1,191,192],[571,1,1,192,193],[574,1,1,193,194],[579,1,1,194,195],[582,2,2,195,197],[584,1,1,197,198],[585,1,1,198,199],[586,1,1,199,200],[589,2,2,200,202],[596,14,14,202,216],[608,1,1,216,217],[615,1,1,217,218],[617,1,1,218,219],[618,1,1,219,220],[620,1,1,220,221],[624,1,1,221,222]]],[19,77,75,222,297,[[629,2,2,222,224],[630,3,3,224,227],[631,2,2,227,229],[632,1,1,229,230],[633,3,3,230,233],[634,3,3,233,236],[635,1,1,236,237],[637,2,2,237,239],[638,2,2,239,241],[639,4,4,241,245],[640,1,1,245,246],[641,5,5,246,251],[642,7,6,251,257],[643,5,5,257,262],[644,3,3,262,265],[645,3,3,265,268],[646,2,2,268,270],[647,2,2,270,272],[648,2,2,272,274],[649,3,3,274,277],[650,8,7,277,284],[651,3,3,284,287],[652,2,2,287,289],[653,2,2,289,291],[654,3,3,291,294],[655,2,2,294,296],[658,1,1,296,297]]],[20,38,31,297,328,[[659,4,3,297,300],[660,10,7,300,307],[661,3,3,307,310],[663,2,2,310,312],[665,8,7,312,319],[666,4,4,319,323],[667,3,3,323,326],[668,2,1,326,327],[669,2,1,327,328]]],[21,3,3,328,331,[[673,1,1,328,329],[675,1,1,329,330],[678,1,1,330,331]]],[22,21,20,331,351,[[684,1,1,331,332],[693,1,1,332,333],[710,1,1,333,334],[711,1,1,334,335],[713,1,1,335,336],[716,1,1,336,337],[720,1,1,337,338],[722,2,2,338,340],[725,2,2,340,342],[729,1,1,342,343],[735,4,4,343,347],[741,2,2,347,349],[743,2,1,349,350],[744,1,1,350,351]]],[23,50,44,351,395,[[747,3,3,351,354],[748,6,4,354,358],[749,1,1,358,359],[751,2,2,359,361],[752,1,1,361,362],[753,2,2,362,364],[755,2,2,364,366],[756,2,2,366,368],[757,1,1,368,369],[758,1,1,369,370],[760,1,1,370,371],[761,4,4,371,375],[762,1,1,375,376],[764,2,2,376,378],[766,1,1,378,379],[767,6,5,379,384],[768,2,1,384,385],[774,2,2,385,387],[775,1,1,387,388],[776,2,2,388,390],[792,4,3,390,393],[793,3,2,393,395]]],[24,7,7,395,402,[[797,2,2,395,397],[798,2,2,397,399],[799,1,1,399,400],[801,2,2,400,402]]],[25,30,22,402,424,[[807,1,1,402,403],[812,5,2,403,405],[814,2,2,405,407],[815,4,4,407,411],[819,1,1,411,412],[821,1,1,412,413],[822,2,2,413,415],[823,1,1,415,416],[829,6,3,416,419],[834,1,1,419,420],[837,3,1,420,421],[841,1,1,421,422],[845,2,2,422,424]]],[26,2,2,424,426,[[850,1,1,424,425],[859,1,1,425,426]]],[27,8,8,426,434,[[865,1,1,426,427],[868,3,3,427,430],[871,1,1,430,431],[872,1,1,431,432],[874,2,2,432,434]]],[30,2,1,434,435,[[888,2,1,434,435]]],[33,1,1,435,436,[[901,1,1,435,436]]],[35,1,1,436,437,[[908,1,1,436,437]]],[37,3,2,437,439,[[920,2,1,437,438],[922,1,1,438,439]]],[38,4,2,439,441,[[926,2,1,439,440],[928,2,1,440,441]]]],[142,143,204,414,636,768,1280,1384,1615,1622,1688,1698,1699,1707,1708,1725,1729,1742,1749,1754,1756,1776,1777,1778,1797,1804,1816,1893,1897,1928,2197,2322,2323,2536,2552,2557,2560,2565,2566,2568,4725,4727,5676,5683,5698,6195,6632,6638,6639,6964,6966,6967,7013,7029,7030,7179,7225,7241,7310,7427,7650,7844,7892,7897,7898,7931,7947,8173,8201,8207,8345,8350,8357,8459,8492,8530,8702,8825,8828,8873,9008,9051,9054,9103,9111,9177,9178,9378,9458,9673,9685,9854,9906,10168,10758,10820,10830,10882,11152,11173,11320,11334,11335,11340,11387,11451,11529,11723,11748,11822,11839,11900,11901,12173,12200,12309,12319,12425,12712,12788,12799,12812,13025,13121,13152,13215,13264,13545,13595,13597,13615,13653,13697,13749,13770,13793,13912,13972,14005,14022,14047,14052,14054,14058,14061,14079,14081,14101,14106,14176,14182,14218,14275,14288,14293,14299,14306,14366,14377,14387,14406,14439,14448,14454,14465,14481,14498,14500,14515,14535,14537,14548,14589,14592,14598,14602,14651,14701,14708,14720,14736,14753,14775,14781,14821,14837,14856,14860,14891,14955,15150,15261,15446,15489,15525,15609,15631,15711,15743,15777,15810,15811,15900,15908,15909,15930,15932,15934,15956,15967,15968,15978,16009,16010,16043,16059,16149,16232,16265,16280,16297,16354,16435,16443,16456,16458,16460,16494,16513,16529,16554,16558,16561,16578,16585,16600,16607,16664,16676,16708,16717,16727,16739,16742,16744,16759,16782,16785,16786,16802,16805,16814,16820,16821,16822,16835,16837,16841,16845,16849,16861,16863,16889,16893,16895,16903,16913,16916,16928,16946,16959,16963,16985,16988,17026,17030,17032,17051,17056,17059,17061,17063,17070,17077,17081,17091,17096,17116,17133,17164,17166,17178,17180,17188,17210,17222,17295,17328,17331,17332,17334,17336,17343,17348,17353,17355,17356,17370,17376,17377,17399,17417,17431,17432,17433,17436,17451,17454,17455,17463,17467,17469,17474,17476,17478,17482,17495,17522,17582,17600,17646,17779,17965,18265,18297,18324,18393,18505,18552,18553,18606,18609,18680,18766,18776,18780,18782,18870,18883,18911,18936,19012,19017,19019,19036,19041,19045,19046,19081,19143,19150,19171,19189,19201,19234,19246,19252,19260,19276,19307,19348,19358,19362,19366,19367,19396,19431,19434,19471,19493,19500,19501,19504,19510,19531,19688,19691,19712,19770,19772,20109,20116,20121,20143,20149,20330,20332,20350,20351,20419,20457,20459,20572,20674,20676,20725,20730,20734,20735,20736,20738,20880,20911,20951,20959,20990,21159,21163,21174,21311,21385,21481,21606,21608,21745,22027,22144,22184,22189,22192,22227,22248,22272,22274,22513,22709,22834,23023,23050,23105,23144]]],["heart's",[1,1,[[18,1,1,0,1,[[498,1,1,0,1]]]],[14193]]],["hearted",[8,8,[[1,8,8,0,8,[[77,1,1,0,1],[80,1,1,1,2],[84,3,3,2,5],[85,3,3,5,8]]]],[2296,2426,2541,2553,2556,2567,2568,2574]]],["hearts",[20,20,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,2,2,1,3,[[63,1,1,1,2],[80,1,1,2,3]]],[5,1,1,3,4,[[197,1,1,3,4]]],[6,2,2,4,6,[[219,1,1,4,5],[226,1,1,5,6]]],[8,2,2,6,8,[[241,1,1,6,7],[245,1,1,7,8]]],[9,2,2,8,10,[[281,2,2,8,10]]],[13,1,1,10,11,[[372,1,1,10,11]]],[18,4,4,11,15,[[484,1,1,11,12],[510,1,1,12,13],[512,1,1,13,14],[551,1,1,14,15]]],[22,1,1,15,16,[[722,1,1,15,16]]],[23,2,2,16,18,[[775,1,1,16,17],[792,1,1,17,18]]],[25,1,1,18,19,[[833,1,1,18,19]]],[37,1,1,19,20,[[917,1,1,19,20]]]],[429,1906,2426,6127,6757,6974,7337,7444,8395,8402,11296,14004,14381,14435,15056,18551,19724,20121,21257,22974]]],["hearts'",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15229]]],["heed",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17450]]],["midst",[12,12,[[4,1,1,0,1,[[156,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[18,1,1,2,3,[[523,1,1,2,3]]],[19,2,2,3,5,[[650,1,1,3,4],[657,1,1,4,5]]],[23,1,1,5,6,[[795,1,1,5,6]]],[25,6,6,6,12,[[828,4,4,6,10],[829,2,2,10,12]]]],[5015,8492,14616,17078,17270,20213,21125,21146,21147,21148,21159,21165]]],["mind",[9,9,[[8,1,1,0,1,[[244,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]],[22,2,2,2,4,[[724,1,1,2,3],[743,1,1,3,4]]],[23,4,4,4,8,[[747,1,1,4,5],[763,1,1,5,6],[776,1,1,6,7],[788,1,1,7,8]]],[24,1,1,8,9,[[799,1,1,8,9]]]],[7411,12365,18594,18914,19018,19412,19766,20031,20375]]],["myself",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12389]]],["unawares",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[893]]],["understanding",[10,10,[[19,9,9,0,9,[[633,1,1,0,1],[634,1,1,1,2],[636,2,2,2,4],[637,1,1,4,5],[639,1,1,5,6],[642,1,1,6,7],[644,1,1,7,8],[651,1,1,8,9]]],[23,1,1,9,10,[[749,1,1,9,10]]]],[16572,16582,16642,16654,16669,16730,16839,16891,17109,19079]]],["wisdom",[6,6,[[17,1,1,0,1,[[471,1,1,0,1]]],[19,4,4,1,5,[[637,1,1,1,2],[638,1,1,2,3],[642,1,1,3,4],[646,1,1,4,5]]],[20,1,1,5,6,[[668,1,1,5,6]]]],[13741,16677,16700,16828,16933,17496]]]]},{"k":"H3821","v":[["heart",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21961]]]]},{"k":"H3822","v":[["Lebaoth",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6234]]]]},{"k":"H3823","v":[["*",[5,4,[[9,2,2,0,2,[[279,2,2,0,2]]],[17,1,1,2,3,[[446,1,1,2,3]]],[21,2,1,3,4,[[674,2,1,3,4]]]],[8323,8325,13120,17591]]],["cakes",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8325]]],["heart",[2,1,[[21,2,1,0,1,[[674,2,1,0,1]]]],[17591]]],["make",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8323]]],["wise",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13120]]]]},{"k":"H3824","v":[["*",[251,229,[[0,3,3,0,3,[[19,2,2,0,2],[30,1,1,2,3]]],[1,1,1,3,4,[[63,1,1,3,4]]],[2,3,3,4,7,[[108,1,1,4,5],[115,2,2,5,7]]],[3,1,1,7,8,[[131,1,1,7,8]]],[4,47,43,8,51,[[153,1,1,8,9],[154,1,1,9,10],[156,3,3,10,13],[157,1,1,13,14],[158,2,2,14,16],[159,1,1,16,17],[160,4,4,17,21],[161,2,2,21,23],[162,2,2,23,25],[163,3,3,25,28],[165,1,1,28,29],[167,3,3,29,32],[169,2,2,32,34],[170,1,1,34,35],[171,1,1,35,36],[172,4,2,36,38],[178,1,1,38,39],[180,3,3,39,42],[181,2,2,42,44],[182,8,6,44,50],[184,1,1,50,51]]],[5,7,7,51,58,[[188,1,1,51,52],[191,1,1,52,53],[193,1,1,53,54],[200,1,1,54,55],[208,1,1,55,56],[209,1,1,56,57],[210,1,1,57,58]]],[6,2,2,58,60,[[229,2,2,58,60]]],[8,14,12,60,72,[[236,1,1,60,61],[237,1,1,61,62],[241,1,1,62,63],[242,2,1,63,64],[244,1,1,64,65],[247,2,2,65,67],[248,1,1,67,68],[249,2,1,68,69],[251,1,1,69,70],[252,1,1,70,71],[256,1,1,71,72]]],[9,2,2,72,74,[[273,1,1,72,73],[285,1,1,73,74]]],[10,23,18,74,92,[[292,2,2,74,76],[293,1,1,76,77],[298,9,7,77,84],[299,1,1,84,85],[300,1,1,85,86],[301,5,3,86,89],[304,1,1,89,90],[305,3,2,90,92]]],[11,8,6,92,98,[[322,5,3,92,95],[332,1,1,95,96],[334,1,1,96,97],[335,1,1,97,98]]],[12,12,10,98,108,[[349,2,2,98,100],[354,1,1,100,101],[359,2,2,101,103],[365,2,2,103,105],[366,5,3,105,108]]],[13,28,26,108,134,[[367,1,1,108,109],[372,6,4,109,113],[375,1,1,113,114],[377,1,1,114,115],[379,1,1,115,116],[381,3,3,116,119],[382,1,1,119,120],[385,2,2,120,122],[386,1,1,122,123],[388,1,1,123,124],[391,1,1,124,125],[395,2,2,125,127],[396,1,1,127,128],[397,1,1,128,129],[398,2,2,129,131],[400,2,2,131,133],[402,1,1,133,134]]],[14,1,1,134,135,[[409,1,1,134,135]]],[15,1,1,135,136,[[421,1,1,135,136]]],[17,9,9,136,145,[[436,1,1,136,137],[444,1,1,137,138],[445,1,1,138,139],[447,1,1,139,140],[452,1,1,140,141],[457,1,1,141,142],[462,1,1,142,143],[469,2,2,143,145]]],[18,35,33,145,178,[[481,1,1,145,146],[490,1,1,146,147],[492,1,1,147,148],[497,1,1,148,149],[499,1,1,149,150],[501,1,1,150,151],[502,1,1,151,152],[505,1,1,152,153],[508,1,1,153,154],[539,1,1,154,155],[546,1,1,155,156],[550,6,5,156,161],[554,1,1,161,162],[555,2,2,162,164],[561,1,1,164,165],[563,2,2,165,167],[567,1,1,167,168],[572,2,2,168,170],[578,3,3,170,173],[581,2,1,173,174],[586,1,1,174,175],[588,1,1,175,176],[596,1,1,176,177],[616,1,1,177,178]]],[19,2,2,178,180,[[631,1,1,178,179],[633,1,1,179,180]]],[20,1,1,180,181,[[667,1,1,180,181]]],[22,18,16,181,197,[[679,1,1,181,182],[684,1,1,182,183],[685,3,2,183,185],[687,1,1,185,186],[688,3,2,186,188],[691,1,1,188,189],[692,1,1,189,190],[697,1,1,190,191],[699,1,1,191,192],[708,1,1,192,193],[710,1,1,193,194],[725,1,1,194,195],[727,1,1,195,196],[738,1,1,196,197]]],[23,8,8,197,205,[[748,1,1,197,198],[749,1,1,198,199],[757,1,1,199,200],[759,1,1,200,201],[773,1,1,201,202],[776,1,1,202,203],[795,2,2,203,205]]],[24,1,1,205,206,[[799,1,1,205,206]]],[25,5,5,206,211,[[804,1,1,206,207],[829,1,1,207,208],[832,1,1,208,209],[837,1,1,209,210],[839,1,1,210,211]]],[26,5,5,211,216,[[857,1,1,211,212],[860,4,4,212,216]]],[27,1,1,216,217,[[868,1,1,216,217]]],[28,2,2,217,219,[[877,2,2,217,219]]],[31,1,1,219,220,[[890,1,1,219,220]]],[33,1,1,220,221,[[901,1,1,220,221]]],[35,2,2,221,223,[[906,1,1,221,222],[907,1,1,222,223]]],[36,5,4,223,227,[[909,2,2,223,225],[910,3,2,225,227]]],[37,2,2,227,229,[[917,1,1,227,228],[918,1,1,228,229]]]],[500,501,899,1894,3298,3560,3565,4192,4920,4968,5013,5033,5043,5082,5091,5092,5128,5139,5142,5151,5154,5161,5162,5198,5202,5221,5224,5226,5275,5326,5328,5329,5381,5384,5405,5412,5430,5435,5582,5639,5658,5678,5697,5698,5709,5710,5714,5718,5722,5725,5804,5880,5935,5981,6194,6431,6474,6499,7032,7033,7220,7275,7337,7355,7410,7480,7484,7499,7515,7602,7646,7784,8183,8525,8774,8814,8822,9002,9003,9023,9024,9033,9043,9046,9055,9081,9110,9112,9117,9226,9252,9263,9808,9823,9824,10101,10164,10190,10737,10758,10865,10971,10983,11145,11152,11181,11182,11183,11205,11289,11290,11312,11319,11365,11430,11460,11502,11505,11507,11518,11579,11585,11620,11653,11706,11801,11825,11846,11875,11881,11906,11960,11964,12006,12183,12519,12874,13055,13099,13131,13271,13411,13487,13693,13717,13969,14076,14089,14186,14230,14245,14268,14302,14355,14835,14967,15021,15027,15033,15041,15046,15099,15131,15185,15264,15295,15296,15390,15462,15464,15515,15517,15518,15586,15771,15794,15905,16262,16511,16565,17478,17659,17779,17784,17786,17838,17857,17862,17913,17941,18005,18039,18246,18263,18607,18657,18826,19031,19082,19288,19331,19648,19771,20258,20262,20395,20512,21162,21240,21364,21435,21986,22048,22061,22063,22064,22180,22323,22324,22551,22706,22799,22820,22845,22847,22870,22873,22972,22993]]],["+",[12,11,[[4,3,3,0,3,[[154,1,1,0,1],[156,1,1,1,2],[172,1,1,2,3]]],[13,3,3,3,6,[[372,1,1,3,4],[379,1,1,4,5],[398,1,1,5,6]]],[22,1,1,6,7,[[685,1,1,6,7]]],[36,5,4,7,11,[[909,2,2,7,9],[910,3,2,9,11]]]],[4968,5013,5435,11319,11460,11881,17786,22845,22847,22870,22873]]],["breasts",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22706]]],["courage",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22061]]],["heart",[205,188,[[0,2,2,0,2,[[19,2,2,0,2]]],[1,1,1,2,3,[[63,1,1,2,3]]],[2,1,1,3,4,[[108,1,1,3,4]]],[3,1,1,4,5,[[131,1,1,4,5]]],[4,41,38,5,43,[[153,1,1,5,6],[156,2,2,6,8],[157,1,1,8,9],[158,2,2,9,11],[159,1,1,11,12],[160,4,4,12,16],[161,2,2,16,18],[162,2,2,18,20],[163,3,3,20,23],[165,1,1,23,24],[167,3,3,24,27],[169,2,2,27,29],[170,1,1,29,30],[171,1,1,30,31],[172,2,1,31,32],[178,1,1,32,33],[180,3,3,33,36],[181,2,2,36,38],[182,7,5,38,43]]],[5,4,4,43,47,[[191,1,1,43,44],[200,1,1,44,45],[208,1,1,45,46],[210,1,1,46,47]]],[6,2,2,47,49,[[229,2,2,47,49]]],[8,11,10,49,59,[[236,1,1,49,50],[237,1,1,50,51],[244,1,1,51,52],[247,2,2,52,54],[248,1,1,54,55],[249,2,1,55,56],[251,1,1,56,57],[252,1,1,57,58],[256,1,1,58,59]]],[9,2,2,59,61,[[273,1,1,59,60],[285,1,1,60,61]]],[10,21,17,61,78,[[292,2,2,61,63],[293,1,1,63,64],[298,7,6,64,70],[299,1,1,70,71],[300,1,1,71,72],[301,5,3,72,75],[304,1,1,75,76],[305,3,2,76,78]]],[11,8,6,78,84,[[322,5,3,78,81],[332,1,1,81,82],[334,1,1,82,83],[335,1,1,83,84]]],[12,10,8,84,92,[[349,2,2,84,86],[354,1,1,86,87],[359,1,1,87,88],[365,1,1,88,89],[366,5,3,89,92]]],[13,22,21,92,113,[[367,1,1,92,93],[372,4,3,93,96],[375,1,1,96,97],[381,3,3,97,100],[382,1,1,100,101],[385,2,2,101,103],[388,1,1,103,104],[391,1,1,104,105],[395,2,2,105,107],[396,1,1,107,108],[397,1,1,108,109],[398,1,1,109,110],[400,2,2,110,112],[402,1,1,112,113]]],[14,1,1,113,114,[[409,1,1,113,114]]],[15,1,1,114,115,[[421,1,1,114,115]]],[17,5,5,115,120,[[444,1,1,115,116],[445,1,1,116,117],[452,1,1,117,118],[457,1,1,118,119],[462,1,1,119,120]]],[18,33,31,120,151,[[481,1,1,120,121],[490,1,1,121,122],[492,1,1,122,123],[497,1,1,123,124],[499,1,1,124,125],[501,1,1,125,126],[502,1,1,126,127],[508,1,1,127,128],[539,1,1,128,129],[546,1,1,129,130],[550,6,5,130,135],[554,1,1,135,136],[555,2,2,136,138],[561,1,1,138,139],[563,2,2,139,141],[572,2,2,141,143],[578,3,3,143,146],[581,2,1,146,147],[586,1,1,147,148],[588,1,1,148,149],[596,1,1,149,150],[616,1,1,150,151]]],[19,2,2,151,153,[[631,1,1,151,152],[633,1,1,152,153]]],[20,1,1,153,154,[[667,1,1,153,154]]],[22,17,15,154,169,[[679,1,1,154,155],[684,1,1,155,156],[685,2,1,156,157],[687,1,1,157,158],[688,3,2,158,160],[691,1,1,160,161],[692,1,1,161,162],[697,1,1,162,163],[699,1,1,163,164],[708,1,1,164,165],[710,1,1,165,166],[725,1,1,166,167],[727,1,1,167,168],[738,1,1,168,169]]],[23,6,6,169,175,[[748,1,1,169,170],[749,1,1,170,171],[757,1,1,171,172],[759,1,1,172,173],[773,1,1,173,174],[795,1,1,174,175]]],[24,1,1,175,176,[[799,1,1,175,176]]],[25,4,4,176,180,[[804,1,1,176,177],[829,1,1,177,178],[832,1,1,178,179],[837,1,1,179,180]]],[26,3,3,180,183,[[857,1,1,180,181],[860,2,2,181,183]]],[28,2,2,183,185,[[877,2,2,183,185]]],[35,2,2,185,187,[[906,1,1,185,186],[907,1,1,186,187]]],[37,1,1,187,188,[[917,1,1,187,188]]]],[500,501,1894,3298,4192,4920,5033,5043,5082,5091,5092,5128,5139,5142,5151,5154,5161,5162,5198,5202,5221,5224,5226,5275,5326,5328,5329,5381,5384,5405,5412,5435,5582,5639,5658,5678,5697,5698,5710,5714,5718,5722,5725,5935,6194,6431,6499,7032,7033,7220,7275,7410,7480,7484,7499,7515,7602,7646,7784,8183,8525,8774,8814,8822,9002,9003,9023,9024,9033,9046,9055,9081,9110,9112,9117,9226,9252,9263,9808,9823,9824,10101,10164,10190,10737,10758,10865,10983,11145,11181,11182,11183,11205,11289,11290,11312,11365,11502,11505,11507,11518,11579,11585,11653,11706,11801,11825,11846,11875,11906,11960,11964,12006,12183,12519,13055,13099,13271,13411,13487,13969,14076,14089,14186,14230,14245,14268,14355,14835,14967,15021,15027,15033,15041,15046,15099,15131,15185,15264,15295,15296,15462,15464,15515,15517,15518,15586,15771,15794,15905,16262,16511,16565,17478,17659,17779,17784,17838,17857,17862,17913,17941,18005,18039,18246,18263,18607,18657,18826,19031,19082,19288,19331,19648,20258,20395,20512,21162,21240,21364,21986,22048,22064,22323,22324,22799,22820,22972]]],["hearts",[23,22,[[2,2,2,0,2,[[115,2,2,0,2]]],[4,2,2,2,4,[[172,1,1,2,3],[184,1,1,3,4]]],[5,3,3,4,7,[[188,1,1,4,5],[193,1,1,5,6],[209,1,1,6,7]]],[8,3,2,7,9,[[241,1,1,7,8],[242,2,1,8,9]]],[10,2,2,9,11,[[298,2,2,9,11]]],[12,1,1,11,12,[[365,1,1,11,12]]],[13,3,3,12,15,[[372,1,1,12,13],[377,1,1,13,14],[386,1,1,14,15]]],[17,1,1,15,16,[[436,1,1,15,16]]],[18,2,2,16,18,[[505,1,1,16,17],[567,1,1,17,18]]],[23,1,1,18,19,[[776,1,1,18,19]]],[26,1,1,19,20,[[860,1,1,19,20]]],[27,1,1,20,21,[[868,1,1,20,21]]],[37,1,1,21,22,[[918,1,1,21,22]]]],[3560,3565,5430,5804,5880,5981,6474,7337,7355,9024,9043,11152,11312,11430,11620,12874,14302,15390,19771,22063,22180,22993]]],["midst",[1,1,[[31,1,1,0,1,[[890,1,1,0,1]]]],[22551]]],["mind",[4,4,[[4,1,1,0,1,[[182,1,1,0,1]]],[12,1,1,1,2,[[359,1,1,1,2]]],[23,1,1,2,3,[[795,1,1,2,3]]],[25,1,1,3,4,[[839,1,1,3,4]]]],[5709,10971,20262,21435]]],["unawares",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[899]]],["understanding",[3,3,[[17,3,3,0,3,[[447,1,1,0,1],[469,2,2,1,3]]]],[13131,13693,13717]]]]},{"k":"H3825","v":[["heart",[7,6,[[26,7,6,0,6,[[851,1,1,0,1],[853,2,1,1,2],[854,3,3,2,5],[856,1,1,5,6]]]],[21788,21853,21894,21895,21896,21937]]]]},{"k":"H3826","v":[["*",[5,5,[[18,1,1,0,1,[[602,1,1,0,1]]],[19,3,3,1,4,[[642,1,1,1,2],[644,1,1,2,3],[648,1,1,3,4]]],[25,1,1,4,5,[[817,1,1,4,5]]]],[16114,16818,16876,16986,20792]]],["heart",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20792]]],["hearts",[4,4,[[18,1,1,0,1,[[602,1,1,0,1]]],[19,3,3,1,4,[[642,1,1,1,2],[644,1,1,2,3],[648,1,1,3,4]]]],[16114,16818,16876,16986]]]]},{"k":"H3827","v":[["flame",[1,1,[[1,1,1,0,1,[[52,1,1,0,1]]]],[1581]]]]},{"k":"H3828","v":[["*",[21,21,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,7,7,1,8,[[91,4,4,1,5],[94,1,1,5,6],[95,1,1,6,7],[113,1,1,7,8]]],[3,1,1,8,9,[[121,1,1,8,9]]],[12,1,1,9,10,[[346,1,1,9,10]]],[15,2,2,10,12,[[425,2,2,10,12]]],[21,3,3,12,15,[[673,1,1,12,13],[674,2,2,13,15]]],[22,3,3,15,18,[[721,1,1,15,16],[738,1,1,16,17],[744,1,1,17,18]]],[23,3,3,18,21,[[750,1,1,18,19],[761,1,1,19,20],[785,1,1,20,21]]]],[2416,2763,2764,2777,2778,2841,2864,3453,3807,10644,12676,12680,17577,17588,17596,18528,18827,18925,19109,19383,19962]]],["frankincense",[15,15,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,7,7,1,8,[[91,4,4,1,5],[94,1,1,5,6],[95,1,1,6,7],[113,1,1,7,8]]],[3,1,1,8,9,[[121,1,1,8,9]]],[12,1,1,9,10,[[346,1,1,9,10]]],[15,2,2,10,12,[[425,2,2,10,12]]],[21,3,3,12,15,[[673,1,1,12,13],[674,2,2,13,15]]]],[2416,2763,2764,2777,2778,2841,2864,3453,3807,10644,12676,12680,17577,17588,17596]]],["incense",[6,6,[[22,3,3,0,3,[[721,1,1,0,1],[738,1,1,1,2],[744,1,1,2,3]]],[23,3,3,3,6,[[750,1,1,3,4],[761,1,1,4,5],[785,1,1,5,6]]]],[18528,18827,18925,19109,19383,19962]]]]},{"k":"H3829","v":[["Lebonah",[1,1,[[6,1,1,0,1,[[231,1,1,0,1]]]],[7121]]]]},{"k":"H3830","v":[["*",[32,32,[[0,1,1,0,1,[[48,1,1,0,1]]],[9,2,2,1,3,[[267,1,1,1,2],[286,1,1,2,3]]],[11,1,1,3,4,[[322,1,1,3,4]]],[16,6,6,4,10,[[429,1,1,4,5],[431,4,4,5,9],[433,1,1,9,10]]],[17,7,7,10,17,[[459,2,2,10,12],[465,1,1,12,13],[466,1,1,13,14],[473,2,2,14,16],[476,1,1,16,17]]],[18,6,6,17,23,[[499,1,1,17,18],[512,1,1,18,19],[522,1,1,19,20],[546,1,1,20,21],[579,1,1,21,22],[581,1,1,22,23]]],[19,3,3,23,26,[[654,1,1,23,24],[658,2,2,24,26]]],[22,3,3,26,29,[[692,1,1,26,27],[741,2,2,27,29]]],[23,1,1,29,30,[[754,1,1,29,30]]],[24,1,1,30,31,[[800,1,1,30,31]]],[38,1,1,31,32,[[926,1,1,31,32]]]],[1484,8046,8562,9815,12764,12801,12802,12803,12804,12832,13443,13446,13575,13607,13802,13807,13901,14222,14423,14610,14946,15547,15577,17195,17306,17309,17947,18867,18868,19210,20434,23119]]],["apparel",[8,8,[[9,1,1,0,1,[[267,1,1,0,1]]],[16,5,5,1,6,[[431,4,4,1,5],[433,1,1,5,6]]],[22,2,2,6,8,[[741,2,2,6,8]]]],[8046,12801,12802,12803,12804,12832,18867,18868]]],["clothed",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12764]]],["clothing",[9,9,[[17,3,3,0,3,[[459,2,2,0,2],[466,1,1,2,3]]],[18,2,2,3,5,[[512,1,1,3,4],[522,1,1,4,5]]],[19,3,3,5,8,[[654,1,1,5,6],[658,2,2,6,8]]],[23,1,1,8,9,[[754,1,1,8,9]]]],[13443,13446,13607,14423,14610,17195,17306,17309,19210]]],["garment",[7,7,[[17,4,4,0,4,[[465,1,1,0,1],[473,2,2,1,3],[476,1,1,3,4]]],[18,2,2,4,6,[[546,1,1,4,5],[581,1,1,5,6]]],[38,1,1,6,7,[[926,1,1,6,7]]]],[13575,13802,13807,13901,14946,15577,23119]]],["garments",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[1484,20434]]],["on",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8562]]],["raiment",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17947]]],["vestments",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9815]]],["vesture",[2,2,[[18,2,2,0,2,[[499,1,1,0,1],[579,1,1,1,2]]]],[14222,15547]]]]},{"k":"H3831","v":[["*",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[856,1,1,1,2]]]],[21828,21942]]],["garment",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21942]]],["garments",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21828]]]]},{"k":"H3832","v":[["fall",[3,3,[[19,2,2,0,2,[[637,2,2,0,2]]],[27,1,1,2,3,[[865,1,1,2,3]]]],[16664,16666,22147]]]]},{"k":"H3833","v":[["*",[14,14,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,2,2,1,3,[[139,1,1,1,2],[140,1,1,2,3]]],[4,1,1,3,4,[[185,1,1,3,4]]],[17,2,2,4,6,[[439,1,1,4,5],[473,1,1,5,6]]],[18,1,1,6,7,[[534,1,1,6,7]]],[22,2,2,7,9,[[683,1,1,7,8],[708,1,1,8,9]]],[25,1,1,9,10,[[820,1,1,9,10]]],[27,1,1,10,11,[[874,1,1,10,11]]],[28,1,1,11,12,[[876,1,1,11,12]]],[33,2,2,12,14,[[901,2,2,12,14]]]],[1482,4440,4455,5830,12941,13832,14772,17768,18223,20883,22274,22297,22710,22711]]],["lion",[9,9,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,2,2,1,3,[[139,1,1,1,2],[140,1,1,2,3]]],[4,1,1,3,4,[[185,1,1,3,4]]],[17,1,1,4,5,[[473,1,1,4,5]]],[22,1,1,5,6,[[683,1,1,5,6]]],[27,1,1,6,7,[[874,1,1,6,7]]],[28,1,1,7,8,[[876,1,1,7,8]]],[33,1,1,8,9,[[901,1,1,8,9]]]],[1482,4440,4455,5830,13832,17768,22274,22297,22710]]],["lion's",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12941]]],["lioness",[1,1,[[25,1,1,0,1,[[820,1,1,0,1]]]],[20883]]],["lionesses",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22711]]],["lions",[1,1,[[18,1,1,0,1,[[534,1,1,0,1]]]],[14772]]],["young",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18223]]]]},{"k":"H3834","v":[["cakes",[3,3,[[9,3,3,0,3,[[279,3,3,0,3]]]],[8323,8325,8327]]]]},{"k":"H3835","v":[["*",[8,8,[[0,1,1,0,1,[[10,1,1,0,1]]],[1,2,2,1,3,[[54,2,2,1,3]]],[18,1,1,3,4,[[528,1,1,3,4]]],[22,1,1,4,5,[[679,1,1,4,5]]],[26,2,2,5,7,[[860,1,1,5,6],[861,1,1,6,7]]],[28,1,1,7,8,[[876,1,1,7,8]]]],[269,1639,1646,14698,17672,22071,22091,22298]]],["brick",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1646]]],["make",[2,2,[[0,1,1,0,1,[[10,1,1,0,1]]],[1,1,1,1,2,[[54,1,1,1,2]]]],[269,1639]]],["white",[4,4,[[22,1,1,0,1,[[679,1,1,0,1]]],[26,2,2,1,3,[[860,1,1,1,2],[861,1,1,2,3]]],[28,1,1,3,4,[[876,1,1,3,4]]]],[17672,22071,22091,22298]]],["whiter",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14698]]]]},{"k":"H3836","v":[["white",[29,24,[[0,4,3,0,3,[[29,3,2,0,2],[48,1,1,2,3]]],[1,1,1,3,4,[[65,1,1,3,4]]],[2,20,16,4,20,[[102,20,16,4,20]]],[20,1,1,20,21,[[667,1,1,20,21]]],[37,3,3,21,24,[[911,1,1,21,22],[916,2,2,22,24]]]],[865,867,1485,1978,3055,3056,3062,3065,3068,3069,3071,3072,3073,3076,3077,3078,3090,3091,3094,3095,17483,22886,22950,22953]]]]},{"k":"H3837","v":[["*",[55,47,[[0,54,46,0,46,[[23,3,2,0,2],[24,1,1,2,3],[26,1,1,3,4],[27,2,2,4,6],[28,16,13,6,19],[29,7,6,19,25],[30,21,18,25,43],[31,1,1,43,44],[45,2,2,44,46]]],[4,1,1,46,47,[[153,1,1,46,47]]]],[620,641,678,770,775,778,800,805,808,809,810,811,814,816,817,819,820,821,824,855,857,864,866,870,872,874,875,885,892,893,895,897,898,899,904,906,907,909,916,920,921,924,928,932,1404,1411,4893]]],["+",[1,1,[[0,1,1,0,1,[[28,1,1,0,1]]]],[808]]],["Laban",[50,44,[[0,49,43,0,43,[[23,3,2,0,2],[24,1,1,2,3],[26,1,1,3,4],[27,2,2,4,6],[28,15,13,6,19],[29,4,4,19,23],[30,20,17,23,40],[31,1,1,40,41],[45,2,2,41,43]]],[4,1,1,43,44,[[153,1,1,43,44]]]],[620,641,678,770,775,778,800,805,808,809,810,811,814,816,817,819,820,821,824,855,857,864,870,875,885,892,893,895,897,898,899,904,906,907,909,916,920,921,924,928,932,1404,1411,4893]]],["Laban's",[4,4,[[0,4,4,0,4,[[29,3,3,0,3],[30,1,1,3,4]]]],[866,870,872,874]]]]},{"k":"H3838","v":[["*",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12072,12468]]],["Lebana",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12468]]],["Lebanah",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12072]]]]},{"k":"H3839","v":[["*",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[27,1,1,1,2,[[865,1,1,1,2]]]],[867,22146]]],["poplar",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[867]]],["poplars",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22146]]]]},{"k":"H3840","v":[["paved",[1,1,[[1,1,1,0,1,[[73,1,1,0,1]]]],[2187]]]]},{"k":"H3841","v":[["*",[18,17,[[3,2,2,0,2,[[149,2,2,0,2]]],[5,8,7,2,9,[[196,5,4,2,6],[198,1,1,6,7],[201,1,1,7,8],[207,1,1,8,9]]],[11,4,4,9,13,[[320,1,1,9,10],[331,1,1,10,11],[335,1,1,11,12],[336,1,1,12,13]]],[12,1,1,13,14,[[343,1,1,13,14]]],[13,1,1,14,15,[[387,1,1,14,15]]],[22,1,1,15,16,[[715,1,1,15,16]]],[23,1,1,16,17,[[796,1,1,16,17]]]],[4780,4781,6093,6095,6096,6103,6145,6244,6394,9749,10069,10196,10220,10511,11634,18360,20277]]],["+",[5,5,[[3,1,1,0,1,[[149,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[11,2,2,2,4,[[335,1,1,2,3],[336,1,1,3,4]]],[23,1,1,4,5,[[796,1,1,4,5]]]],[4781,6095,10196,10220,20277]]],["Libnah",[13,12,[[3,1,1,0,1,[[149,1,1,0,1]]],[5,7,6,1,7,[[196,4,3,1,4],[198,1,1,4,5],[201,1,1,5,6],[207,1,1,6,7]]],[11,2,2,7,9,[[320,1,1,7,8],[331,1,1,8,9]]],[12,1,1,9,10,[[343,1,1,9,10]]],[13,1,1,10,11,[[387,1,1,10,11]]],[22,1,1,11,12,[[715,1,1,11,12]]]],[4780,6093,6096,6103,6145,6244,6394,9749,10069,10511,11634,18360]]]]},{"k":"H3842","v":[["moon",[3,3,[[21,1,1,0,1,[[676,1,1,0,1]]],[22,2,2,1,3,[[702,1,1,1,2],[708,1,1,2,3]]]],[17624,18118,18243]]]]},{"k":"H3843","v":[["*",[11,10,[[0,2,1,0,1,[[10,2,1,0,1]]],[1,6,6,1,7,[[50,1,1,1,2],[54,5,5,2,7]]],[22,2,2,7,9,[[687,1,1,7,8],[743,1,1,8,9]]],[25,1,1,9,10,[[805,1,1,9,10]]]],[269,1546,1639,1640,1648,1650,1651,17839,18900,20530]]],["+",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1651]]],["brick",[6,5,[[0,2,1,0,1,[[10,2,1,0,1]]],[1,3,3,1,4,[[50,1,1,1,2],[54,2,2,2,4]]],[22,1,1,4,5,[[743,1,1,4,5]]]],[269,1546,1639,1648,18900]]],["bricks",[3,3,[[1,2,2,0,2,[[54,2,2,0,2]]],[22,1,1,2,3,[[687,1,1,2,3]]]],[1640,1650,17839]]],["tile",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20530]]]]},{"k":"H3844","v":[["*",[71,64,[[4,3,3,0,3,[[153,1,1,0,1],[155,1,1,1,2],[163,1,1,2,3]]],[5,6,6,3,9,[[187,1,1,3,4],[195,1,1,4,5],[197,1,1,5,6],[198,1,1,6,7],[199,2,2,7,9]]],[6,2,2,9,11,[[213,1,1,9,10],[219,1,1,10,11]]],[10,9,8,11,19,[[294,1,1,11,12],[295,4,3,12,15],[297,1,1,15,16],[299,1,1,16,17],[300,2,2,17,19]]],[11,4,2,19,21,[[326,3,1,19,20],[331,1,1,20,21]]],[13,9,6,21,27,[[368,3,2,21,23],[374,1,1,23,24],[375,2,2,24,26],[391,3,1,26,27]]],[14,1,1,27,28,[[405,1,1,27,28]]],[18,5,5,28,33,[[506,2,2,28,30],[549,1,1,30,31],[569,1,1,31,32],[581,1,1,32,33]]],[21,7,6,33,39,[[673,1,1,33,34],[674,4,3,34,37],[675,1,1,37,38],[677,1,1,38,39]]],[22,9,9,39,48,[[680,1,1,39,40],[688,1,1,40,41],[692,1,1,41,42],[707,1,1,42,43],[711,1,1,43,44],[713,1,1,44,45],[715,1,1,45,46],[718,1,1,46,47],[738,1,1,47,48]]],[23,4,4,48,52,[[762,1,1,48,49],[766,3,3,49,52]]],[25,5,5,52,57,[[818,1,1,52,53],[828,1,1,53,54],[832,3,3,54,57]]],[27,3,3,57,60,[[875,3,3,57,60]]],[33,1,1,60,61,[[900,1,1,60,61]]],[34,1,1,61,62,[[904,1,1,61,62]]],[37,2,2,62,64,[[920,1,1,62,63],[921,1,1,63,64]]]],[4899,5000,5232,5855,6038,6124,6137,6159,6160,6571,6769,8877,8884,8887,8892,8936,9070,9096,9100,9905,10084,11219,11227,11352,11380,11384,11722,12104,14313,14314,15016,15423,15587,17580,17590,17593,17597,17613,17631,17698,17884,17936,18210,18288,18322,18376,18436,18834,19398,19460,19474,19477,20828,21126,21233,21245,21246,22287,22288,22289,22688,22765,23026,23029]]],["+",[4,3,[[13,1,1,0,1,[[368,1,1,0,1]]],[21,2,1,1,2,[[674,2,1,1,2]]],[25,1,1,2,3,[[828,1,1,2,3]]]],[11219,17590,21126]]],["Lebanon",[67,62,[[4,3,3,0,3,[[153,1,1,0,1],[155,1,1,1,2],[163,1,1,2,3]]],[5,6,6,3,9,[[187,1,1,3,4],[195,1,1,4,5],[197,1,1,5,6],[198,1,1,6,7],[199,2,2,7,9]]],[6,2,2,9,11,[[213,1,1,9,10],[219,1,1,10,11]]],[10,9,8,11,19,[[294,1,1,11,12],[295,4,3,12,15],[297,1,1,15,16],[299,1,1,16,17],[300,2,2,17,19]]],[11,4,2,19,21,[[326,3,1,19,20],[331,1,1,20,21]]],[13,8,6,21,27,[[368,2,2,21,23],[374,1,1,23,24],[375,2,2,24,26],[391,3,1,26,27]]],[14,1,1,27,28,[[405,1,1,27,28]]],[18,5,5,28,33,[[506,2,2,28,30],[549,1,1,30,31],[569,1,1,31,32],[581,1,1,32,33]]],[21,5,5,33,38,[[673,1,1,33,34],[674,2,2,34,36],[675,1,1,36,37],[677,1,1,37,38]]],[22,9,9,38,47,[[680,1,1,38,39],[688,1,1,39,40],[692,1,1,40,41],[707,1,1,41,42],[711,1,1,42,43],[713,1,1,43,44],[715,1,1,44,45],[718,1,1,45,46],[738,1,1,46,47]]],[23,4,4,47,51,[[762,1,1,47,48],[766,3,3,48,51]]],[25,4,4,51,55,[[818,1,1,51,52],[832,3,3,52,55]]],[27,3,3,55,58,[[875,3,3,55,58]]],[33,1,1,58,59,[[900,1,1,58,59]]],[34,1,1,59,60,[[904,1,1,59,60]]],[37,2,2,60,62,[[920,1,1,60,61],[921,1,1,61,62]]]],[4899,5000,5232,5855,6038,6124,6137,6159,6160,6571,6769,8877,8884,8887,8892,8936,9070,9096,9100,9905,10084,11219,11227,11352,11380,11384,11722,12104,14313,14314,15016,15423,15587,17580,17593,17597,17613,17631,17698,17884,17936,18210,18288,18322,18376,18436,18834,19398,19460,19474,19477,20828,21233,21245,21246,22287,22288,22289,22688,22765,23026,23029]]]]},{"k":"H3845","v":[["Libni",[5,5,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,1,1,1,2,[[119,1,1,1,2]]],[12,3,3,2,5,[[343,3,3,2,5]]]],[1672,3710,10471,10474,10483]]]]},{"k":"H3846","v":[["Libnites",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3713]]]]},{"k":"H3847","v":[["*",[111,103,[[0,6,6,0,6,[[2,1,1,0,1],[26,2,2,1,3],[27,1,1,3,4],[37,1,1,4,5],[40,1,1,5,6]]],[1,6,6,6,12,[[77,1,1,6,7],[78,3,3,7,10],[89,2,2,10,12]]],[2,11,9,12,21,[[95,3,2,12,14],[97,2,2,14,16],[105,5,4,16,20],[110,1,1,20,21]]],[3,2,2,21,23,[[136,2,2,21,23]]],[4,2,2,23,25,[[174,2,2,23,25]]],[6,1,1,25,26,[[216,1,1,25,26]]],[8,4,3,26,29,[[252,3,2,26,28],[263,1,1,28,29]]],[9,3,3,29,32,[[267,1,1,29,30],[279,1,1,30,31],[280,1,1,31,32]]],[10,2,2,32,34,[[312,2,2,32,34]]],[12,1,1,34,35,[[349,1,1,34,35]]],[13,7,6,35,41,[[371,1,1,35,36],[372,1,1,36,37],[384,2,2,37,39],[390,1,1,39,40],[394,2,1,40,41]]],[14,1,1,41,42,[[405,1,1,41,42]]],[16,6,6,42,48,[[429,2,2,42,44],[430,1,1,44,45],[431,3,3,45,48]]],[17,8,7,48,55,[[442,1,1,48,49],[443,1,1,49,50],[445,1,1,50,51],[462,1,1,51,52],[464,2,1,52,53],[474,1,1,53,54],[475,1,1,54,55]]],[18,10,9,55,64,[[512,1,1,55,56],[542,1,1,56,57],[570,2,1,57,58],[581,1,1,58,59],[586,2,2,59,61],[609,3,3,61,64]]],[19,2,2,64,66,[[650,1,1,64,65],[658,1,1,65,66]]],[21,1,1,66,67,[[675,1,1,66,67]]],[22,10,8,67,75,[[682,1,1,67,68],[700,1,1,68,69],[727,1,1,69,70],[728,1,1,70,71],[729,1,1,71,72],[730,2,1,72,73],[737,2,1,73,74],[739,1,1,74,75]]],[23,2,2,75,77,[[748,1,1,75,76],[790,1,1,76,77]]],[25,16,16,77,93,[[808,1,1,77,78],[810,3,3,78,81],[811,3,3,81,84],[817,1,1,84,85],[824,2,2,85,87],[827,1,1,87,88],[835,1,1,88,89],[839,1,1,89,90],[843,1,1,90,91],[845,2,2,91,93]]],[26,3,3,93,96,[[859,1,1,93,94],[861,2,2,94,96]]],[31,1,1,96,97,[[891,1,1,96,97]]],[35,1,1,97,98,[[906,1,1,97,98]]],[36,1,1,98,99,[[909,1,1,98,99]]],[37,4,4,99,103,[[913,3,3,99,102],[923,1,1,102,103]]]],[76,742,743,793,1138,1237,2334,2341,2344,2366,2720,2721,2859,2860,2924,2930,3205,3224,3225,3233,3355,4337,4339,5475,5481,6688,7623,7656,7950,8046,8335,8358,9490,9510,10738,11280,11323,11551,11571,11697,11779,12107,12763,12766,12780,12801,12802,12804,13013,13051,13097,13498,13546,13853,13874,14436,14873,15427,15572,15773,15784,16160,16167,16169,17065,17305,17601,17734,18073,18654,18665,18682,18697,18817,18853,19057,20049,20604,20624,20625,20633,20635,20639,20640,20772,21013,21019,21116,21316,21429,21566,21616,21618,22020,22087,22088,22563,22795,22846,22915,22916,22917,23063]]],["+",[19,19,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,4,4,1,5,[[77,1,1,1,2],[78,2,2,2,4],[89,1,1,4,5]]],[2,4,4,5,9,[[97,1,1,5,6],[105,2,2,6,8],[110,1,1,8,9]]],[3,2,2,9,11,[[136,2,2,9,11]]],[6,1,1,11,12,[[216,1,1,11,12]]],[8,1,1,12,13,[[252,1,1,12,13]]],[12,1,1,13,14,[[349,1,1,13,14]]],[13,2,2,14,16,[[384,1,1,14,15],[390,1,1,15,16]]],[16,3,3,16,19,[[429,1,1,16,17],[431,2,2,17,19]]]],[742,2334,2341,2344,2720,2930,3225,3233,3355,4337,4339,6688,7656,10738,11571,11697,12766,12802,12804]]],["apparel",[1,1,[[14,1,1,0,1,[[405,1,1,0,1]]]],[12107]]],["apparelled",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8335]]],["armed",[2,2,[[8,2,2,0,2,[[252,2,2,0,2]]]],[7623,7656]]],["array",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13874]]],["arrayed",[3,3,[[0,1,1,0,1,[[40,1,1,0,1]]],[13,2,2,1,3,[[371,1,1,1,2],[394,1,1,2,3]]]],[1237,11280,11779]]],["clothe",[11,11,[[1,1,1,0,1,[[89,1,1,0,1]]],[18,2,2,1,3,[[609,2,2,1,3]]],[19,1,1,3,4,[[650,1,1,3,4]]],[22,3,3,4,7,[[700,1,1,4,5],[727,1,1,5,6],[728,1,1,6,7]]],[25,2,2,7,9,[[827,1,1,7,8],[835,1,1,8,9]]],[36,1,1,9,10,[[909,1,1,9,10]]],[37,1,1,10,11,[[913,1,1,10,11]]]],[2721,16167,16169,17065,18073,18654,18665,21116,21316,22846,22916]]],["clothed",[38,37,[[0,1,1,0,1,[[2,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]],[9,1,1,2,3,[[267,1,1,2,3]]],[13,3,3,3,6,[[372,1,1,3,4],[384,1,1,4,5],[394,1,1,5,6]]],[17,5,5,6,11,[[442,1,1,6,7],[443,1,1,7,8],[445,1,1,8,9],[464,1,1,9,10],[474,1,1,10,11]]],[18,8,7,11,18,[[512,1,1,11,12],[542,1,1,12,13],[570,2,1,13,14],[581,1,1,14,15],[586,2,2,15,17],[609,1,1,17,18]]],[19,1,1,18,19,[[658,1,1,18,19]]],[22,1,1,19,20,[[739,1,1,19,20]]],[25,11,11,20,31,[[808,1,1,20,21],[810,3,3,21,24],[811,3,3,24,27],[817,1,1,27,28],[824,2,2,28,30],[839,1,1,30,31]]],[26,3,3,31,34,[[859,1,1,31,32],[861,2,2,32,34]]],[35,1,1,34,35,[[906,1,1,34,35]]],[37,2,2,35,37,[[913,2,2,35,37]]]],[76,2924,8046,11323,11551,11779,13013,13051,13097,13546,13853,14436,14873,15427,15572,15773,15784,16160,17305,18853,20604,20624,20625,20633,20635,20639,20640,20772,21013,21019,21429,22020,22087,22088,22795,22915,22917]]],["clothest",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19057]]],["on",[26,23,[[0,2,2,0,2,[[27,1,1,0,1],[37,1,1,1,2]]],[1,1,1,2,3,[[78,1,1,2,3]]],[2,5,4,3,7,[[95,2,2,3,5],[105,3,2,5,7]]],[4,1,1,7,8,[[174,1,1,7,8]]],[8,1,1,8,9,[[263,1,1,8,9]]],[9,1,1,9,10,[[280,1,1,9,10]]],[10,1,1,10,11,[[312,1,1,10,11]]],[16,2,2,11,13,[[429,1,1,11,12],[430,1,1,12,13]]],[17,2,2,13,15,[[462,1,1,13,14],[464,1,1,14,15]]],[21,1,1,15,16,[[675,1,1,15,16]]],[22,5,3,16,19,[[729,1,1,16,17],[730,2,1,17,18],[737,2,1,18,19]]],[23,1,1,19,20,[[790,1,1,19,20]]],[25,2,2,20,22,[[843,1,1,20,21],[845,1,1,21,22]]],[31,1,1,22,23,[[891,1,1,22,23]]]],[793,1138,2366,2859,2860,3205,3224,5475,7950,8358,9490,12763,12780,13498,13546,17601,18682,18697,18817,20049,21566,21618,22563]]],["put",[3,3,[[0,1,1,0,1,[[26,1,1,0,1]]],[2,1,1,1,2,[[95,1,1,1,2]]],[10,1,1,2,3,[[312,1,1,2,3]]]],[743,2859,9510]]],["wear",[4,4,[[4,1,1,0,1,[[174,1,1,0,1]]],[16,1,1,1,2,[[431,1,1,1,2]]],[22,1,1,2,3,[[682,1,1,2,3]]],[37,1,1,3,4,[[923,1,1,3,4]]]],[5481,12801,17734,23063]]],["with",[1,1,[[25,1,1,0,1,[[845,1,1,0,1]]]],[21616]]]]},{"k":"H3848","v":[["clothed",[3,3,[[26,3,3,0,3,[[854,3,3,0,3]]]],[21881,21890,21903]]]]},{"k":"H3849","v":[["*",[5,5,[[2,5,5,0,5,[[103,5,5,0,5]]]],[3121,3123,3126,3132,3135]]],["+",[1,1,[[2,1,1,0,1,[[103,1,1,0,1]]]],[3126]]],["log",[4,4,[[2,4,4,0,4,[[103,4,4,0,4]]]],[3121,3123,3132,3135]]]]},{"k":"H3850","v":[["Lod",[4,4,[[12,1,1,0,1,[[345,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,2,2,2,4,[[419,1,1,2,3],[423,1,1,3,4]]]],[10587,12060,12457,12623]]]]},{"k":"H3851","v":[["*",[12,10,[[6,4,2,0,2,[[213,2,1,0,1],[223,2,1,1,2]]],[17,2,2,2,4,[[474,1,1,2,3],[476,1,1,3,4]]],[22,4,4,4,8,[[691,1,1,4,5],[707,1,1,5,6],[708,1,1,6,7],[744,1,1,7,8]]],[28,1,1,8,9,[[877,1,1,8,9]]],[33,1,1,9,10,[[902,1,1,9,10]]]],[6590,6904,13857,13909,17914,18199,18247,18937,22316,22715]]],["+",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17914]]],["blade",[2,1,[[6,2,1,0,1,[[213,2,1,0,1]]]],[6590]]],["bright",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22715]]],["flame",[6,5,[[6,2,1,0,1,[[223,2,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[22,2,2,2,4,[[707,1,1,2,3],[708,1,1,3,4]]],[28,1,1,4,5,[[877,1,1,4,5]]]],[6904,13909,18199,18247,22316]]],["flames",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18937]]],["glittering",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13857]]]]},{"k":"H3852","v":[["*",[19,19,[[3,1,1,0,1,[[137,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[18,4,4,2,6,[[506,1,1,2,3],[560,1,1,3,4],[582,1,1,4,5],[583,1,1,5,6]]],[22,5,5,6,11,[[682,1,1,6,7],[683,1,1,7,8],[688,1,1,8,9],[721,1,1,9,10],[725,1,1,10,11]]],[23,1,1,11,12,[[792,1,1,11,12]]],[24,1,1,12,13,[[798,1,1,12,13]]],[25,1,1,13,14,[[821,1,1,13,14]]],[26,1,1,14,15,[[860,1,1,14,15]]],[27,1,1,15,16,[[868,1,1,15,16]]],[28,2,2,16,18,[[876,1,1,16,17],[877,1,1,17,18]]],[30,1,1,18,19,[[888,1,1,18,19]]]],[4368,7625,14315,15255,15638,15669,17738,17763,17867,18507,18613,20125,20335,20942,22069,22184,22310,22314,22528]]],["flame",[12,12,[[3,1,1,0,1,[[137,1,1,0,1]]],[18,2,2,1,3,[[560,1,1,1,2],[583,1,1,2,3]]],[22,4,4,3,7,[[683,1,1,3,4],[688,1,1,4,5],[721,1,1,5,6],[725,1,1,6,7]]],[23,1,1,7,8,[[792,1,1,7,8]]],[26,1,1,8,9,[[860,1,1,8,9]]],[28,2,2,9,11,[[876,1,1,9,10],[877,1,1,10,11]]],[30,1,1,11,12,[[888,1,1,11,12]]]],[4368,15255,15669,17763,17867,18507,18613,20125,22069,22310,22314,22528]]],["flames",[1,1,[[18,1,1,0,1,[[506,1,1,0,1]]]],[14315]]],["flaming",[5,5,[[18,1,1,0,1,[[582,1,1,0,1]]],[22,1,1,1,2,[[682,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]],[25,1,1,3,4,[[821,1,1,3,4]]],[27,1,1,4,5,[[868,1,1,4,5]]]],[15638,17738,20335,20942,22184]]],["head",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7625]]]]},{"k":"H3853","v":[["Lehabim",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[247,10263]]]]},{"k":"H3854","v":[["study",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17535]]]]},{"k":"H3855","v":[["Lahad",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10387]]]]},{"k":"H3856","v":[["*",[2,2,[[0,1,1,0,1,[[46,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]]],[1433,17159]]],["fainted",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1433]]],["mad",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17159]]]]},{"k":"H3857","v":[["*",[11,11,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[18,5,5,2,7,[[534,1,1,2,3],[560,1,1,3,4],[574,1,1,4,5],[581,1,1,5,6],[583,1,1,6,7]]],[22,1,1,7,8,[[720,1,1,7,8]]],[28,2,2,8,10,[[876,1,1,8,9],[877,1,1,9,10]]],[38,1,1,10,11,[[928,1,1,10,11]]]],[5780,13909,14772,15255,15481,15575,15669,18505,22310,22314,23139]]],["+",[2,2,[[18,1,1,0,1,[[560,1,1,0,1]]],[38,1,1,1,2,[[928,1,1,1,2]]]],[15255,23139]]],["burned",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22310]]],["burneth",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22314]]],["fire",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,1,1,1,2,[[534,1,1,1,2]]],[22,1,1,2,3,[[720,1,1,2,3]]]],[5780,14772,18505]]],["flaming",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15575]]],["kindleth",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13909]]],["up",[2,2,[[18,2,2,0,2,[[574,1,1,0,1],[583,1,1,1,2]]]],[15481,15669]]]]},{"k":"H3858","v":[["*",[2,2,[[0,1,1,0,1,[[2,1,1,0,1]]],[1,1,1,1,2,[[56,1,1,1,2]]]],[79,1696]]],["enchantments",[1,1,[[1,1,1,0,1,[[56,1,1,0,1]]]],[1696]]],["flaming",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[79]]]]},{"k":"H3859","v":[["wounds",[2,2,[[19,2,2,0,2,[[645,1,1,0,1],[653,1,1,1,2]]]],[16909,17163]]]]},{"k":"H3860","v":[]},{"k":"H3861","v":[["*",[10,10,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,9,9,1,10,[[851,4,4,1,5],[852,1,1,5,6],[853,1,1,6,7],[855,3,3,7,10]]]],[12146,21764,21767,21769,21788,21835,21864,21910,21912,21917]]],["But",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12146]]],["Wherefore",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]],["but",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21788]]],["except",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[852,1,1,1,2],[855,1,1,2,3]]]],[21769,21835,21910]]],["save",[2,2,[[26,2,2,0,2,[[855,2,2,0,2]]]],[21912,21917]]],["therefore",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21764,21767]]]]},{"k":"H3862","v":[["company",[1,1,[[8,1,1,0,1,[[254,1,1,0,1]]]],[7726]]]]},{"k":"H3863","v":[["*",[22,21,[[0,4,4,0,4,[[16,1,1,0,1],[22,1,1,1,2],[29,1,1,2,3],[49,1,1,3,4]]],[3,4,3,4,7,[[130,2,1,4,5],[136,1,1,5,6],[138,1,1,6,7]]],[4,1,1,7,8,[[184,1,1,7,8]]],[5,1,1,8,9,[[193,1,1,8,9]]],[6,2,2,9,11,[[218,1,1,9,10],[223,1,1,10,11]]],[8,1,1,11,12,[[249,1,1,11,12]]],[9,2,2,12,14,[[284,1,1,12,13],[285,1,1,13,14]]],[17,2,2,14,16,[[441,1,1,14,15],[451,1,1,15,16]]],[18,1,1,16,17,[[558,1,1,16,17]]],[22,2,2,17,19,[[726,1,1,17,18],[742,1,1,18,19]]],[25,1,1,19,20,[[815,1,1,19,20]]],[32,1,1,20,21,[[894,1,1,20,21]]]],[415,584,864,1521,4110,4314,4404,5787,5983,6738,6907,7538,8490,8517,12980,13242,15230,18632,18886,20746,22606]]],["+",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7538]]],["God",[3,3,[[3,2,2,0,2,[[130,1,1,0,1],[136,1,1,1,2]]],[5,1,1,2,3,[[193,1,1,2,3]]]],[4110,4314,5983]]],["If",[3,3,[[6,1,1,0,1,[[223,1,1,0,1]]],[25,1,1,1,2,[[815,1,1,1,2]]],[32,1,1,2,3,[[894,1,1,2,3]]]],[6907,20746,22606]]],["Though",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8490]]],["if",[3,3,[[6,1,1,0,1,[[218,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]],[17,1,1,2,3,[[451,1,1,2,3]]]],[6738,8517,13242]]],["peradventure",[1,1,[[0,1,1,0,1,[[49,1,1,0,1]]]],[1521]]],["that",[7,7,[[0,1,1,0,1,[[16,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[17,1,1,3,4,[[441,1,1,3,4]]],[18,1,1,4,5,[[558,1,1,4,5]]],[22,2,2,5,7,[[726,1,1,5,6],[742,1,1,6,7]]]],[415,4110,5787,12980,15230,18632,18886]]],["thee",[1,1,[[0,1,1,0,1,[[22,1,1,0,1]]]],[584]]],["would",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]]],[864,4404]]]]},{"k":"H3864","v":[["*",[5,5,[[3,1,1,0,1,[[142,1,1,0,1]]],[13,2,2,1,3,[[378,1,1,1,2],[382,1,1,2,3]]],[26,1,1,3,4,[[860,1,1,3,4]]],[33,1,1,4,5,[[902,1,1,4,5]]]],[4547,11440,11517,22079,22721]]],["Libnites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4547]]],["Libyans",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22079]]],["Lubim",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22721]]],["Lubims",[2,2,[[13,2,2,0,2,[[378,1,1,0,1],[382,1,1,1,2]]]],[11440,11517]]]]},{"k":"H3865","v":[["*",[5,5,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]],[25,2,2,3,5,[[828,1,1,3,4],[831,1,1,4,5]]]],[256,10269,18941,21131,21209]]],["Lud",[4,4,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]],[25,1,1,3,4,[[828,1,1,3,4]]]],[256,10269,18941,21131]]],["Lydia",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21209]]]]},{"k":"H3866","v":[["*",[3,3,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[23,1,1,2,3,[[790,1,1,2,3]]]],[247,10263,20054]]],["Ludim",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[247,10263]]],["Lydians",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20054]]]]},{"k":"H3867","v":[["*",[26,22,[[0,1,1,0,1,[[28,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[3,2,2,2,4,[[134,2,2,2,4]]],[4,4,2,4,6,[[180,4,2,4,6]]],[15,1,1,6,7,[[417,1,1,6,7]]],[16,1,1,7,8,[[434,1,1,7,8]]],[18,4,4,8,12,[[514,2,2,8,10],[560,1,1,10,11],[589,1,1,11,12]]],[19,3,2,12,14,[[646,1,1,12,13],[649,2,1,13,14]]],[20,1,1,14,15,[[666,1,1,14,15]]],[22,5,4,15,19,[[692,1,1,15,16],[702,2,1,16,17],[734,2,2,17,19]]],[23,1,1,19,20,[[794,1,1,19,20]]],[26,1,1,20,21,[[860,1,1,20,21]]],[37,1,1,21,22,[[912,1,1,21,22]]]],[829,2138,4259,4261,5623,5655,12386,12861,14471,14476,15249,15808,16942,17022,17473,17929,18097,18756,18759,20171,22070,22910]]],["+",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17022]]],["abide",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17473]]],["borrow",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5623]]],["borrowed",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12386]]],["borrower",[2,2,[[19,1,1,0,1,[[649,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]]],[17022,18097]]],["borroweth",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14471]]],["cleave",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22070]]],["himself",[1,1,[[22,1,1,0,1,[[734,1,1,0,1]]]],[18756]]],["joined",[6,6,[[0,1,1,0,1,[[28,1,1,0,1]]],[3,2,2,1,3,[[134,2,2,1,3]]],[18,1,1,3,4,[[560,1,1,3,4]]],[22,1,1,4,5,[[692,1,1,4,5]]],[37,1,1,5,6,[[912,1,1,5,6]]]],[829,4259,4261,15249,17929,22910]]],["lend",[4,3,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,3,2,1,3,[[180,3,2,1,3]]]],[2138,5623,5655]]],["lender",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18097]]],["lendeth",[3,3,[[18,2,2,0,2,[[514,1,1,0,1],[589,1,1,1,2]]],[19,1,1,2,3,[[646,1,1,2,3]]]],[14476,15808,16942]]],["ourselves",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20171]]],["themselves",[2,2,[[16,1,1,0,1,[[434,1,1,0,1]]],[22,1,1,1,2,[[734,1,1,1,2]]]],[12861,18759]]]]},{"k":"H3868","v":[["*",[6,6,[[19,5,5,0,5,[[629,1,1,0,1],[630,2,2,1,3],[631,1,1,3,4],[641,1,1,4,5]]],[22,1,1,5,6,[[708,1,1,5,6]]]],[16448,16476,16487,16511,16774,18229]]],["depart",[2,2,[[19,2,2,0,2,[[630,1,1,0,1],[631,1,1,1,2]]]],[16476,16511]]],["froward",[2,2,[[19,2,2,0,2,[[629,1,1,0,1],[630,1,1,1,2]]]],[16448,16487]]],["perverse",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16774]]],["perverseness",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18229]]]]},{"k":"H3869","v":[["hazel",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[867]]]]},{"k":"H3870","v":[["Luz",[8,7,[[0,3,3,0,3,[[27,1,1,0,1],[34,1,1,1,2],[47,1,1,2,3]]],[5,3,2,3,5,[[202,1,1,3,4],[204,2,1,4,5]]],[6,2,2,5,7,[[211,2,2,5,7]]]],[792,1017,1454,6267,6306,6532,6535]]]]},{"k":"H3871","v":[["*",[43,33,[[1,17,11,0,11,[[73,1,1,0,1],[76,1,1,1,2],[80,2,1,2,3],[81,5,3,3,6],[83,7,4,6,10],[87,1,1,10,11]]],[4,16,12,11,23,[[156,1,1,11,12],[157,1,1,12,13],[161,7,5,13,18],[162,7,5,18,23]]],[10,2,2,23,25,[[297,1,1,23,24],[298,1,1,24,25]]],[13,1,1,25,26,[[371,1,1,25,26]]],[19,2,2,26,28,[[630,1,1,26,27],[634,1,1,27,28]]],[21,1,1,28,29,[[678,1,1,28,29]]],[22,1,1,29,30,[[708,1,1,29,30]]],[23,1,1,30,31,[[761,1,1,30,31]]],[25,1,1,31,32,[[828,1,1,31,32]]],[34,1,1,32,33,[[904,1,1,32,33]]]],[2189,2280,2438,2453,2454,2457,2497,2500,2524,2525,2640,5017,5075,5166,5167,5168,5172,5174,5187,5188,5189,5190,5191,8970,8994,11278,16458,16578,17649,18225,19358,21126,22750]]],["+",[3,3,[[1,2,2,0,2,[[83,2,2,0,2]]],[4,1,1,2,3,[[162,1,1,2,3]]]],[2497,2524,5188]]],["boards",[4,4,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[21,1,1,2,3,[[678,1,1,2,3]]],[25,1,1,3,4,[[828,1,1,3,4]]]],[2280,2640,17649,21126]]],["plates",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8970]]],["table",[4,4,[[19,2,2,0,2,[[630,1,1,0,1],[634,1,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]],[23,1,1,3,4,[[761,1,1,3,4]]]],[16458,16578,18225,19358]]],["tables",[31,23,[[1,13,8,0,8,[[73,1,1,0,1],[80,2,1,1,2],[81,5,3,2,5],[83,5,3,5,8]]],[4,15,12,8,20,[[156,1,1,8,9],[157,1,1,9,10],[161,7,5,10,15],[162,6,5,15,20]]],[10,1,1,20,21,[[298,1,1,20,21]]],[13,1,1,21,22,[[371,1,1,21,22]]],[34,1,1,22,23,[[904,1,1,22,23]]]],[2189,2438,2453,2454,2457,2497,2500,2525,5017,5075,5166,5167,5168,5172,5174,5187,5188,5189,5190,5191,8994,11278,22750]]]]},{"k":"H3872","v":[["Luhith",[2,2,[[22,1,1,0,1,[[693,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[17965,20085]]]]},{"k":"H3873","v":[["*",[2,2,[[15,2,2,0,2,[[415,1,1,0,1],[422,1,1,1,2]]]],[12339,12573]]],["Hallohesh",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12573]]],["Halohesh",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12339]]]]},{"k":"H3874","v":[["*",[3,3,[[8,1,1,0,1,[[256,1,1,0,1]]],[10,1,1,1,2,[[309,1,1,1,2]]],[22,1,1,2,3,[[703,1,1,2,3]]]],[7781,9400,18125]]],["cast",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18125]]],["wrapped",[2,2,[[8,1,1,0,1,[[256,1,1,0,1]]],[10,1,1,1,2,[[309,1,1,1,2]]]],[7781,9400]]]]},{"k":"H3875","v":[["covering",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18125]]]]},{"k":"H3876","v":[["*",[33,30,[[0,30,27,0,27,[[10,2,2,0,2],[11,2,2,2,4],[12,9,8,4,12],[13,2,2,12,14],[18,15,13,14,27]]],[4,2,2,27,29,[[154,2,2,27,29]]],[18,1,1,29,30,[[560,1,1,29,30]]]],[293,297,302,303,319,323,325,326,328,329,330,332,348,352,458,462,463,466,467,469,471,472,475,480,486,487,493,4947,4957,15249]]],["Lot",[32,29,[[0,29,26,0,26,[[10,2,2,0,2],[11,2,2,2,4],[12,8,7,4,11],[13,2,2,11,13],[18,15,13,13,26]]],[4,2,2,26,28,[[154,2,2,26,28]]],[18,1,1,28,29,[[560,1,1,28,29]]]],[293,297,302,303,319,323,326,328,329,330,332,348,352,458,462,463,466,467,469,471,472,475,480,486,487,493,4947,4957,15249]]],["Lot's",[1,1,[[0,1,1,0,1,[[12,1,1,0,1]]]],[325]]]]},{"k":"H3877","v":[["*",[7,5,[[0,4,3,0,3,[[35,4,3,0,3]]],[12,3,2,3,5,[[338,3,2,3,5]]]],[1060,1062,1069,10290,10291]]],["Lotan",[5,5,[[0,3,3,0,3,[[35,3,3,0,3]]],[12,2,2,3,5,[[338,2,2,3,5]]]],[1060,1062,1069,10290,10291]]],["Lotan's",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1062,10291]]]]},{"k":"H3878","v":[["*",[66,63,[[0,6,6,0,6,[[28,1,1,0,1],[33,2,2,1,3],[34,1,1,3,4],[45,1,1,4,5],[48,1,1,5,6]]],[1,8,6,6,12,[[50,1,1,6,7],[51,2,1,7,8],[55,3,2,8,10],[81,2,2,10,12]]],[3,15,14,12,26,[[117,1,1,12,13],[119,3,3,13,16],[120,1,1,16,17],[132,4,4,17,21],[133,2,2,21,23],[134,2,2,23,25],[142,2,1,25,26]]],[4,7,7,26,33,[[162,2,2,26,28],[170,1,1,28,29],[173,1,1,29,30],[179,1,1,30,31],[183,1,1,31,32],[185,1,1,32,33]]],[5,3,3,33,36,[[199,2,2,33,35],[207,1,1,35,36]]],[10,1,1,36,37,[[302,1,1,36,37]]],[12,14,14,37,51,[[339,1,1,37,38],[343,5,5,38,43],[346,1,1,43,44],[349,1,1,44,45],[358,1,1,45,46],[360,3,3,46,49],[361,2,2,49,51]]],[13,1,1,51,52,[[397,1,1,51,52]]],[14,2,2,52,54,[[410,2,2,52,54]]],[15,2,2,54,56,[[422,1,1,54,55],[424,1,1,55,56]]],[18,1,1,56,57,[[612,1,1,56,57]]],[25,2,2,57,59,[[841,1,1,57,58],[849,1,1,58,59]]],[37,1,1,59,60,[[922,1,1,59,60]]],[38,3,3,60,63,[[926,2,2,60,62],[927,1,1,62,63]]]],[829,1005,1010,1034,1397,1478,1534,1555,1671,1674,2464,2466,3653,3698,3707,3709,3745,4195,4201,4202,4204,4247,4252,4259,4278,4548,5194,5195,5385,5452,5597,5737,5818,6168,6187,6391,9182,10307,10455,10470,10492,10497,10501,10633,10746,10940,10989,10997,11007,11021,11035,11866,12216,12219,12588,12647,16195,21523,21733,23058,23107,23111,23123]]],["+",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3698]]],["Levi",[63,60,[[0,6,6,0,6,[[28,1,1,0,1],[33,2,2,1,3],[34,1,1,3,4],[45,1,1,4,5],[48,1,1,5,6]]],[1,8,6,6,12,[[50,1,1,6,7],[51,2,1,7,8],[55,3,2,8,10],[81,2,2,10,12]]],[3,14,13,12,25,[[117,1,1,12,13],[119,2,2,13,15],[120,1,1,15,16],[132,4,4,16,20],[133,2,2,20,22],[134,2,2,22,24],[142,2,1,24,25]]],[4,7,7,25,32,[[162,2,2,25,27],[170,1,1,27,28],[173,1,1,28,29],[179,1,1,29,30],[183,1,1,30,31],[185,1,1,31,32]]],[5,3,3,32,35,[[199,2,2,32,34],[207,1,1,34,35]]],[10,1,1,35,36,[[302,1,1,35,36]]],[12,13,13,36,49,[[339,1,1,36,37],[343,5,5,37,42],[346,1,1,42,43],[349,1,1,43,44],[358,1,1,44,45],[360,3,3,45,48],[361,1,1,48,49]]],[14,2,2,49,51,[[410,2,2,49,51]]],[15,2,2,51,53,[[422,1,1,51,52],[424,1,1,52,53]]],[18,1,1,53,54,[[612,1,1,53,54]]],[25,2,2,54,56,[[841,1,1,54,55],[849,1,1,55,56]]],[37,1,1,56,57,[[922,1,1,56,57]]],[38,3,3,57,60,[[926,2,2,57,59],[927,1,1,59,60]]]],[829,1005,1010,1034,1397,1478,1534,1555,1671,1674,2464,2466,3653,3707,3709,3745,4195,4201,4202,4204,4247,4252,4259,4278,4548,5194,5195,5385,5452,5597,5737,5818,6168,6187,6391,9182,10307,10455,10470,10492,10497,10501,10633,10746,10940,10989,10997,11007,11035,12216,12219,12588,12647,16195,21523,21733,23058,23107,23111,23123]]],["Levite",[1,1,[[13,1,1,0,1,[[397,1,1,0,1]]]],[11866]]],["Levites",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11021]]]]},{"k":"H3879","v":[["Levites",[4,4,[[14,4,4,0,4,[[408,2,2,0,2],[409,2,2,2,4]]]],[12167,12169,12186,12197]]]]},{"k":"H3880","v":[["ornament",[2,2,[[19,2,2,0,2,[[628,1,1,0,1],[631,1,1,1,2]]]],[16409,16499]]]]},{"k":"H3881","v":[["*",[283,256,[[1,3,3,0,3,[[53,1,1,0,1],[55,1,1,1,2],[87,1,1,2,3]]],[2,4,2,3,5,[[114,4,2,3,5]]],[3,60,48,5,53,[[117,6,4,5,9],[118,2,2,9,11],[119,13,9,11,20],[120,2,2,20,22],[123,2,2,22,24],[124,20,15,24,39],[134,5,5,39,44],[142,2,2,44,46],[147,2,2,46,48],[151,6,5,48,53]]],[4,19,19,53,72,[[164,3,3,53,56],[166,2,2,56,58],[168,2,2,58,60],[169,2,2,60,62],[170,3,3,62,65],[176,1,1,65,66],[178,3,3,66,69],[179,2,2,69,71],[183,1,1,71,72]]],[5,14,14,72,86,[[189,1,1,72,73],[194,1,1,73,74],[200,2,2,74,76],[204,1,1,76,77],[207,9,9,77,86]]],[6,10,10,86,96,[[227,6,6,86,92],[228,2,2,92,94],[229,1,1,94,95],[230,1,1,95,96]]],[8,1,1,96,97,[[241,1,1,96,97]]],[9,1,1,97,98,[[281,1,1,97,98]]],[10,1,1,98,99,[[298,1,1,98,99]]],[12,34,34,99,133,[[343,3,3,99,102],[346,6,6,102,108],[350,1,1,108,109],[352,11,11,109,120],[353,1,1,120,121],[360,4,4,121,125],[361,3,3,125,128],[363,2,2,128,130],[364,1,1,130,131],[365,2,2,131,133]]],[13,63,57,133,190,[[371,3,3,133,136],[373,1,1,136,137],[374,2,2,137,139],[377,2,2,139,141],[379,2,2,141,143],[383,2,1,143,144],[385,2,2,144,146],[386,2,2,146,148],[389,6,6,148,154],[390,4,3,154,157],[395,9,8,157,165],[396,7,7,165,172],[397,6,5,172,177],[400,5,4,177,181],[401,10,9,181,190]]],[14,18,17,190,207,[[403,1,1,190,191],[404,2,2,191,193],[405,5,4,193,197],[408,1,1,197,198],[409,1,1,198,199],[410,4,4,199,203],[411,1,1,203,204],[412,3,3,204,207]]],[15,43,37,207,244,[[415,1,1,207,208],[419,3,3,208,211],[420,4,4,211,215],[421,3,3,215,218],[422,8,5,218,223],[423,7,7,223,230],[424,10,8,230,238],[425,7,6,238,244]]],[22,1,1,244,245,[[744,1,1,244,245]]],[23,3,3,245,248,[[777,3,3,245,248]]],[25,8,8,248,256,[[844,1,1,248,249],[845,2,2,249,251],[846,1,1,251,252],[849,4,4,252,256]]]],[1615,1680,2654,3501,3502,3651,3654,3655,3657,3675,3691,3701,3704,3712,3724,3731,3733,3737,3738,3741,3761,3789,3855,3856,3945,3948,3949,3950,3951,3952,3953,3954,3957,3958,3959,3960,3961,3963,3965,4263,4280,4281,4283,4287,4546,4547,4694,4711,4847,4849,4851,4852,4853,5252,5258,5259,5317,5319,5353,5356,5373,5382,5385,5390,5391,5533,5577,5578,5579,5594,5599,5753,5896,6035,6190,6191,6300,6382,6384,6385,6389,6401,6408,6415,6421,6422,6987,6989,6990,6991,6992,6993,6996,7008,7025,7058,7346,8413,8989,10473,10502,10518,10617,10629,10641,10646,10648,10649,10762,10793,10795,10802,10803,10805,10806,10807,10808,10813,10817,10818,10824,10985,10986,11009,11010,11021,11045,11046,11094,11097,11126,11156,11164,11272,11273,11280,11330,11360,11361,11427,11428,11462,11463,11531,11584,11587,11601,11606,11658,11660,11662,11663,11664,11674,11682,11683,11688,11795,11796,11803,11807,11816,11817,11821,11825,11842,11843,11844,11848,11849,11852,11854,11856,11858,11863,11871,11873,11942,11945,11946,11963,11969,11971,11974,11975,11976,11977,11980,11981,11984,12021,12067,12097,12105,12106,12107,12109,12171,12180,12221,12230,12231,12234,12238,12257,12267,12275,12344,12421,12463,12493,12500,12502,12504,12506,12515,12516,12549,12558,12577,12583,12586,12587,12591,12603,12604,12606,12608,12610,12624,12625,12632,12646,12648,12651,12654,12668,12671,12676,12681,12684,12693,12700,12701,18943,19793,19796,19797,21591,21609,21614,21635,21713,21714,21715,21724]]],["+",[4,4,[[3,1,1,0,1,[[124,1,1,0,1]]],[5,1,1,1,2,[[207,1,1,1,2]]],[6,1,1,2,3,[[230,1,1,2,3]]],[12,1,1,3,4,[[360,1,1,3,4]]]],[3961,6389,7058,11010]]],["Levite",[23,23,[[1,1,1,0,1,[[53,1,1,0,1]]],[4,11,11,1,12,[[164,3,3,1,4],[166,2,2,4,6],[168,2,2,6,8],[170,1,1,8,9],[178,3,3,9,12]]],[6,9,9,12,21,[[227,6,6,12,18],[228,2,2,18,20],[229,1,1,20,21]]],[13,1,1,21,22,[[386,1,1,21,22]]],[14,1,1,22,23,[[412,1,1,22,23]]]],[1615,5252,5258,5259,5317,5319,5353,5356,5390,5577,5578,5579,6987,6989,6990,6991,6992,6993,6996,7008,7025,11601,12267]]],["Levites",[256,230,[[1,2,2,0,2,[[55,1,1,0,1],[87,1,1,1,2]]],[2,4,2,2,4,[[114,4,2,2,4]]],[3,59,48,4,52,[[117,6,4,4,8],[118,2,2,8,10],[119,13,9,10,19],[120,2,2,19,21],[123,2,2,21,23],[124,19,15,23,38],[134,5,5,38,43],[142,2,2,43,45],[147,2,2,45,47],[151,6,5,47,52]]],[4,8,8,52,60,[[169,2,2,52,54],[170,2,2,54,56],[176,1,1,56,57],[179,2,2,57,59],[183,1,1,59,60]]],[5,13,13,60,73,[[189,1,1,60,61],[194,1,1,61,62],[200,2,2,62,64],[204,1,1,64,65],[207,8,8,65,73]]],[8,1,1,73,74,[[241,1,1,73,74]]],[9,1,1,74,75,[[281,1,1,74,75]]],[10,1,1,75,76,[[298,1,1,75,76]]],[12,33,33,76,109,[[343,3,3,76,79],[346,6,6,79,85],[350,1,1,85,86],[352,11,11,86,97],[353,1,1,97,98],[360,3,3,98,101],[361,3,3,101,104],[363,2,2,104,106],[364,1,1,106,107],[365,2,2,107,109]]],[13,62,56,109,165,[[371,3,3,109,112],[373,1,1,112,113],[374,2,2,113,115],[377,2,2,115,117],[379,2,2,117,119],[383,2,1,119,120],[385,2,2,120,122],[386,1,1,122,123],[389,6,6,123,129],[390,4,3,129,132],[395,9,8,132,140],[396,7,7,140,147],[397,6,5,147,152],[400,5,4,152,156],[401,10,9,156,165]]],[14,17,16,165,181,[[403,1,1,165,166],[404,2,2,166,168],[405,5,4,168,172],[408,1,1,172,173],[409,1,1,173,174],[410,4,4,174,178],[411,1,1,178,179],[412,2,2,179,181]]],[15,43,37,181,218,[[415,1,1,181,182],[419,3,3,182,185],[420,4,4,185,189],[421,3,3,189,192],[422,8,5,192,197],[423,7,7,197,204],[424,10,8,204,212],[425,7,6,212,218]]],[22,1,1,218,219,[[744,1,1,218,219]]],[23,3,3,219,222,[[777,3,3,219,222]]],[25,8,8,222,230,[[844,1,1,222,223],[845,2,2,223,225],[846,1,1,225,226],[849,4,4,226,230]]]],[1680,2654,3501,3502,3651,3654,3655,3657,3675,3691,3701,3704,3712,3724,3731,3733,3737,3738,3741,3761,3789,3855,3856,3945,3948,3949,3950,3951,3952,3953,3954,3957,3958,3959,3960,3961,3963,3965,4263,4280,4281,4283,4287,4546,4547,4694,4711,4847,4849,4851,4852,4853,5373,5382,5385,5391,5533,5594,5599,5753,5896,6035,6190,6191,6300,6382,6384,6385,6401,6408,6415,6421,6422,7346,8413,8989,10473,10502,10518,10617,10629,10641,10646,10648,10649,10762,10793,10795,10802,10803,10805,10806,10807,10808,10813,10817,10818,10824,10985,10986,11009,11021,11045,11046,11094,11097,11126,11156,11164,11272,11273,11280,11330,11360,11361,11427,11428,11462,11463,11531,11584,11587,11606,11658,11660,11662,11663,11664,11674,11682,11683,11688,11795,11796,11803,11807,11816,11817,11821,11825,11842,11843,11844,11848,11849,11852,11854,11856,11858,11863,11871,11873,11942,11945,11946,11963,11969,11971,11974,11975,11976,11977,11980,11981,11984,12021,12067,12097,12105,12106,12107,12109,12171,12180,12221,12230,12231,12234,12238,12257,12275,12344,12421,12463,12493,12500,12502,12504,12506,12515,12516,12549,12558,12577,12583,12586,12587,12591,12603,12604,12606,12608,12610,12624,12625,12632,12646,12648,12651,12654,12668,12671,12676,12681,12684,12693,12700,12701,18943,19793,19796,19797,21591,21609,21614,21635,21713,21714,21715,21724]]]]},{"k":"H3882","v":[["*",[6,5,[[17,2,2,0,2,[[438,1,1,0,1],[476,1,1,1,2]]],[18,2,2,2,4,[[551,1,1,2,3],[581,1,1,3,4]]],[22,2,1,4,5,[[705,2,1,4,5]]]],[12912,13889,15062,15597,18152]]],["leviathan",[5,4,[[17,1,1,0,1,[[476,1,1,0,1]]],[18,2,2,1,3,[[551,1,1,1,2],[581,1,1,2,3]]],[22,2,1,3,4,[[705,2,1,3,4]]]],[13889,15062,15597,18152]]],["mourning",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12912]]]]},{"k":"H3883","v":[["stairs",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8904]]]]},{"k":"H3884","v":[["*",[14,14,[[0,2,2,0,2,[[30,1,1,0,1],[42,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[6,1,1,3,4,[[224,1,1,3,4]]],[8,1,1,4,5,[[260,1,1,4,5]]],[9,1,1,5,6,[[268,1,1,5,6]]],[11,1,1,6,7,[[315,1,1,6,7]]],[18,6,6,7,13,[[504,1,1,7,8],[571,1,1,8,9],[583,1,1,9,10],[596,1,1,10,11],[601,2,2,11,13]]],[22,1,1,13,14,[[679,1,1,13,14]]]],[915,1300,5785,6927,7895,8076,9590,14298,15448,15674,15990,16103,16104,17663]]],["+",[2,2,[[8,1,1,0,1,[[260,1,1,0,1]]],[9,1,1,1,2,[[268,1,1,1,2]]]],[7895,8076]]],["Except",[2,2,[[0,1,1,0,1,[[30,1,1,0,1]]],[22,1,1,1,2,[[679,1,1,1,2]]]],[915,17663]]],["If",[3,3,[[6,1,1,0,1,[[224,1,1,0,1]]],[18,2,2,1,3,[[601,2,2,1,3]]]],[6927,16103,16104]]],["Unless",[2,2,[[18,2,2,0,2,[[571,1,1,0,1],[596,1,1,1,2]]]],[15448,15990]]],["except",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1300]]],["not",[2,2,[[11,1,1,0,1,[[315,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]]],[9590,15674]]],["that",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5785]]],["unless",[1,1,[[18,1,1,0,1,[[504,1,1,0,1]]]],[14298]]]]},{"k":"H3885","v":[["*",[84,79,[[0,9,8,0,8,[[18,2,1,0,1],[23,3,3,1,4],[27,1,1,4,5],[30,1,1,5,6],[31,2,2,6,8]]],[1,7,7,8,15,[[64,1,1,8,9],[65,3,3,9,12],[66,1,1,12,13],[72,1,1,13,14],[83,1,1,14,15]]],[2,1,1,15,16,[[108,1,1,15,16]]],[3,9,8,16,24,[[130,5,4,16,20],[132,2,2,20,22],[133,1,1,22,23],[138,1,1,23,24]]],[4,2,2,24,26,[[168,1,1,24,25],[173,1,1,25,26]]],[5,5,5,26,31,[[189,1,1,26,27],[190,1,1,27,28],[192,1,1,28,29],[194,1,1,29,30],[195,1,1,30,31]]],[6,13,11,31,42,[[228,1,1,31,32],[229,11,9,32,41],[230,1,1,41,42]]],[7,3,2,42,44,[[232,2,1,42,43],[234,1,1,43,44]]],[9,4,4,44,48,[[278,1,1,44,45],[283,2,2,45,47],[285,1,1,47,48]]],[10,1,1,48,49,[[309,1,1,48,49]]],[12,1,1,49,50,[[346,1,1,49,50]]],[15,3,3,50,53,[[416,1,1,50,51],[425,2,2,51,53]]],[17,8,8,53,61,[[452,1,1,53,54],[454,1,1,54,55],[459,1,1,55,56],[464,1,1,56,57],[466,1,1,57,58],[474,2,2,58,60],[476,1,1,60,61]]],[18,6,6,61,67,[[502,1,1,61,62],[507,1,1,62,63],[526,1,1,63,64],[532,1,1,64,65],[536,1,1,65,66],[568,1,1,66,67]]],[19,2,2,67,69,[[642,1,1,67,68],[646,1,1,68,69]]],[21,2,2,69,71,[[671,1,1,69,70],[677,1,1,70,71]]],[22,3,3,71,74,[[679,1,1,71,72],[699,1,1,72,73],[743,1,1,73,74]]],[23,2,2,74,76,[[748,1,1,74,75],[758,1,1,75,76]]],[28,1,1,76,77,[[876,1,1,76,77]]],[35,1,1,77,78,[[907,1,1,77,78]]],[37,1,1,78,79,[[915,1,1,78,79]]]],[459,614,616,645,784,927,941,949,1944,1949,1954,1955,1986,2162,2521,3294,4110,4135,4137,4144,4205,4235,4249,4383,5346,5470,5894,5913,5960,6011,6055,6995,7028,7030,7031,7033,7034,7035,7037,7039,7044,7058,7143,7185,8302,8457,8465,8518,9396,10642,12381,12691,12692,13262,13301,13443,13551,13620,13843,13862,13910,14264,14324,14660,14739,14805,15396,16838,16948,17550,17638,17675,18048,18901,19041,19301,22304,22819,22940]]],["+",[3,3,[[0,2,2,0,2,[[18,1,1,0,1],[27,1,1,1,2]]],[2,1,1,2,3,[[108,1,1,2,3]]]],[459,784,3294]]],["Lodge",[2,2,[[3,1,1,0,1,[[138,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]]],[4383,8465]]],["Tarry",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7185]]],["abide",[3,3,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,1,1,1,2,[[568,1,1,1,2]]],[19,1,1,2,3,[[646,1,1,2,3]]]],[13843,15396,16948]]],["abideth",[3,3,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,1,1,1,2,[[526,1,1,1,2]]],[19,1,1,2,3,[[642,1,1,2,3]]]],[13862,14660,16838]]],["continue",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13262]]],["dwell",[1,1,[[18,1,1,0,1,[[502,1,1,0,1]]]],[14264]]],["endure",[1,1,[[18,1,1,0,1,[[507,1,1,0,1]]]],[14324]]],["grudge",[1,1,[[18,1,1,0,1,[[536,1,1,0,1]]]],[14805]]],["in",[2,2,[[0,2,2,0,2,[[23,2,2,0,2]]]],[614,616]]],["left",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2521]]],["lodge",[17,17,[[5,1,1,0,1,[[190,1,1,0,1]]],[6,5,5,1,6,[[229,4,4,1,5],[230,1,1,5,6]]],[7,1,1,6,7,[[232,1,1,6,7]]],[9,1,1,7,8,[[283,1,1,7,8]]],[15,2,2,8,10,[[416,1,1,8,9],[425,1,1,9,10]]],[17,2,2,10,12,[[459,1,1,10,11],[466,1,1,11,12]]],[21,1,1,12,13,[[677,1,1,12,13]]],[22,2,2,13,15,[[699,1,1,13,14],[743,1,1,14,15]]],[23,1,1,15,16,[[748,1,1,15,16]]],[35,1,1,16,17,[[907,1,1,16,17]]]],[5913,7033,7035,7039,7044,7058,7143,8457,12381,12692,13443,13620,17638,18048,18901,19041,22819]]],["lodged",[12,12,[[0,2,2,0,2,[[31,2,2,0,2]]],[5,3,3,2,5,[[189,1,1,2,3],[192,1,1,3,4],[194,1,1,4,5]]],[6,3,3,5,8,[[228,1,1,5,6],[229,2,2,6,8]]],[10,1,1,8,9,[[309,1,1,8,9]]],[12,1,1,9,10,[[346,1,1,9,10]]],[15,1,1,10,11,[[425,1,1,10,11]]],[22,1,1,11,12,[[679,1,1,11,12]]]],[941,949,5894,5960,6011,6995,7028,7031,9396,10642,12691,17675]]],["lodgest",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7143]]],["lodging",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7039]]],["murmur",[7,6,[[1,2,2,0,2,[[65,2,2,0,2]]],[3,5,4,2,6,[[130,3,2,2,4],[132,1,1,4,5],[133,1,1,5,6]]]],[1954,1955,4135,4144,4205,4249]]],["murmured",[7,7,[[1,3,3,0,3,[[64,1,1,0,1],[65,1,1,1,2],[66,1,1,2,3]]],[3,3,3,3,6,[[130,2,2,3,5],[132,1,1,5,6]]],[5,1,1,6,7,[[195,1,1,6,7]]]],[1944,1949,1986,4110,4137,4235,6055]]],["night",[13,13,[[0,3,3,0,3,[[18,1,1,0,1],[23,1,1,1,2],[30,1,1,2,3]]],[4,2,2,3,5,[[168,1,1,3,4],[173,1,1,4,5]]],[6,4,4,5,9,[[229,4,4,5,9]]],[9,1,1,9,10,[[278,1,1,9,10]]],[17,1,1,10,11,[[464,1,1,10,11]]],[21,1,1,11,12,[[671,1,1,11,12]]],[28,1,1,12,13,[[876,1,1,12,13]]]],[459,645,927,5346,5470,7030,7033,7034,7037,8302,13551,17550,22304]]],["remain",[3,3,[[1,1,1,0,1,[[72,1,1,0,1]]],[18,1,1,1,2,[[532,1,1,1,2]]],[37,1,1,2,3,[[915,1,1,2,3]]]],[2162,14739,22940]]],["remaineth",[2,2,[[17,2,2,0,2,[[454,1,1,0,1],[476,1,1,1,2]]]],[13301,13910]]],["tarry",[2,2,[[9,1,1,0,1,[[285,1,1,0,1]]],[23,1,1,1,2,[[758,1,1,1,2]]]],[8518,19301]]]]},{"k":"H3886","v":[["*",[2,2,[[17,1,1,0,1,[[441,1,1,0,1]]],[30,1,1,1,2,[[888,1,1,1,2]]]],[12981,22526]]],["down",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22526]]],["up",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12981]]]]},{"k":"H3887","v":[["*",[27,26,[[0,1,1,0,1,[[41,1,1,0,1]]],[13,1,1,1,2,[[398,1,1,1,2]]],[17,2,2,2,4,[[451,1,1,2,3],[468,1,1,3,4]]],[18,2,2,4,6,[[478,1,1,4,5],[596,1,1,5,6]]],[19,18,17,6,23,[[628,1,1,6,7],[630,2,1,7,8],[636,3,3,8,11],[640,1,1,11,12],[641,2,2,12,14],[642,1,1,14,15],[646,3,3,15,18],[647,1,1,18,19],[648,2,2,19,21],[649,1,1,21,22],[651,1,1,22,23]]],[22,3,3,23,26,[[706,1,1,23,24],[707,1,1,24,25],[721,1,1,25,26]]]],[1275,11906,13258,13673,13940,15949,16422,16489,16645,16646,16650,16748,16778,16781,16819,16950,16953,16954,16955,16995,17008,17025,17088,18186,18213,18532]]],["+",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18186]]],["ambassadors",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11906]]],["derision",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15949]]],["interpreter",[2,2,[[0,1,1,0,1,[[41,1,1,0,1]]],[17,1,1,1,2,[[468,1,1,1,2]]]],[1275,13673]]],["mock",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16781]]],["mocker",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16955]]],["scorn",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13258]]],["scorner",[11,11,[[19,10,10,0,10,[[636,2,2,0,2],[640,1,1,2,3],[641,1,1,3,4],[642,1,1,4,5],[646,1,1,5,6],[648,2,2,6,8],[649,1,1,8,9],[651,1,1,9,10]]],[22,1,1,10,11,[[707,1,1,10,11]]]],[16645,16646,16748,16778,16819,16950,16995,17008,17025,17088,18213]]],["scorners",[3,3,[[19,3,3,0,3,[[628,1,1,0,1],[630,1,1,1,2],[646,1,1,2,3]]]],[16422,16489,16954]]],["scornest",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16650]]],["scorneth",[2,2,[[19,2,2,0,2,[[630,1,1,0,1],[646,1,1,1,2]]]],[16489,16953]]],["scornful",[1,1,[[18,1,1,0,1,[[478,1,1,0,1]]]],[13940]]],["teachers",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18532]]]]},{"k":"H3888","v":[["*",[5,5,[[0,1,1,0,1,[[17,1,1,0,1]]],[8,1,1,1,2,[[263,1,1,1,2]]],[9,1,1,2,3,[[279,1,1,2,3]]],[23,1,1,3,4,[[751,1,1,3,4]]],[27,1,1,4,5,[[868,1,1,4,5]]]],[430,7966,8325,19137,22182]]],["+",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22182]]],["knead",[2,2,[[0,1,1,0,1,[[17,1,1,0,1]]],[23,1,1,1,2,[[751,1,1,1,2]]]],[430,19137]]],["kneaded",[2,2,[[8,1,1,0,1,[[263,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]]],[7966,8325]]]]},{"k":"H3889","v":[]},{"k":"H3890","v":[["+",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12122]]]]},{"k":"H3891","v":[["perverse",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16514]]]]},{"k":"H3892","v":[["*",[6,6,[[0,1,1,0,1,[[29,1,1,0,1]]],[3,1,1,1,2,[[122,1,1,1,2]]],[6,2,2,2,4,[[226,2,2,2,4]]],[25,2,2,4,6,[[818,1,1,4,5],[821,1,1,5,6]]]],[867,3826,6956,6957,20849,20942]]],["green",[5,5,[[0,1,1,0,1,[[29,1,1,0,1]]],[6,2,2,1,3,[[226,2,2,1,3]]],[25,2,2,3,5,[[818,1,1,3,4],[821,1,1,4,5]]]],[867,6956,6957,20849,20942]]],["moist",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3826]]]]},{"k":"H3893","v":[["force",[1,1,[[4,1,1,0,1,[[186,1,1,0,1]]]],[5846]]]]},{"k":"H3894","v":[["*",[2,2,[[17,1,1,0,1,[[455,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]]],[13349,22804]]],["eating",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13349]]],["flesh",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22804]]]]},{"k":"H3895","v":[["*",[21,20,[[4,1,1,0,1,[[170,1,1,0,1]]],[6,5,4,1,5,[[225,5,4,1,5]]],[10,1,1,5,6,[[312,1,1,5,6]]],[13,1,1,6,7,[[384,1,1,6,7]]],[17,2,2,7,9,[[451,1,1,7,8],[476,1,1,8,9]]],[18,1,1,9,10,[[480,1,1,9,10]]],[21,2,2,10,12,[[671,1,1,10,11],[675,1,1,11,12]]],[22,2,2,12,14,[[708,1,1,12,13],[728,1,1,13,14]]],[24,2,2,14,16,[[797,1,1,14,15],[799,1,1,15,16]]],[25,2,2,16,18,[[830,1,1,16,17],[839,1,1,17,18]]],[27,1,1,18,19,[[872,1,1,18,19]]],[32,1,1,19,20,[[897,1,1,19,20]]]],[5387,6944,6945,6946,6948,9504,11565,13248,13890,13964,17547,17611,18245,18668,20312,20384,21187,21429,22244,22634]]],["bone",[1,1,[[18,1,1,0,1,[[480,1,1,0,1]]]],[13964]]],["cheek",[5,5,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]],[17,1,1,2,3,[[451,1,1,2,3]]],[24,1,1,3,4,[[799,1,1,3,4]]],[32,1,1,4,5,[[897,1,1,4,5]]]],[9504,11565,13248,20384,22634]]],["cheeks",[5,5,[[4,1,1,0,1,[[170,1,1,0,1]]],[21,2,2,1,3,[[671,1,1,1,2],[675,1,1,2,3]]],[22,1,1,3,4,[[728,1,1,3,4]]],[24,1,1,4,5,[[797,1,1,4,5]]]],[5387,17547,17611,18668,20312]]],["jaw",[3,3,[[6,2,2,0,2,[[225,2,2,0,2]]],[17,1,1,2,3,[[476,1,1,2,3]]]],[6945,6948,13890]]],["jawbone",[3,3,[[6,3,3,0,3,[[225,3,3,0,3]]]],[6944,6945,6946]]],["jaws",[4,4,[[22,1,1,0,1,[[708,1,1,0,1]]],[25,2,2,1,3,[[830,1,1,1,2],[839,1,1,2,3]]],[27,1,1,3,4,[[872,1,1,3,4]]]],[18245,21187,21429,22244]]]]},{"k":"H3896","v":[["Lehi",[3,3,[[6,3,3,0,3,[[225,3,3,0,3]]]],[6938,6943,6948]]]]},{"k":"H3897","v":[["*",[6,5,[[3,2,1,0,1,[[138,2,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]],[18,1,1,2,3,[[549,1,1,2,3]]],[22,1,1,3,4,[[727,1,1,3,4]]],[32,1,1,4,5,[[899,1,1,4,5]]]],[4379,9379,15009,18659,22681]]],["+",[2,1,[[3,2,1,0,1,[[138,2,1,0,1]]]],[4379]]],["lick",[2,2,[[18,1,1,0,1,[[549,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]]],[15009,22681]]],["up",[2,2,[[10,1,1,0,1,[[308,1,1,0,1]]],[22,1,1,1,2,[[727,1,1,1,2]]]],[9379,18659]]]]},{"k":"H3898","v":[["*",[177,171,[[1,6,6,0,6,[[50,1,1,0,1],[63,2,2,1,3],[66,3,3,3,6]]],[3,4,4,6,10,[[137,3,3,6,9],[138,1,1,9,10]]],[4,8,8,10,18,[[153,3,3,10,13],[155,1,1,13,14],[172,3,3,14,17],[184,1,1,17,18]]],[5,17,17,18,35,[[195,1,1,18,19],[196,9,9,19,28],[197,1,1,28,29],[205,1,1,29,30],[209,2,2,30,32],[210,3,3,32,35]]],[6,31,28,35,63,[[211,5,5,35,40],[215,4,2,40,42],[218,1,1,42,43],[219,5,5,43,48],[220,2,2,48,50],[221,11,10,50,60],[222,3,3,60,63]]],[8,21,21,63,84,[[239,2,2,63,65],[243,1,1,65,66],[247,1,1,66,67],[248,1,1,67,68],[249,1,1,68,69],[250,1,1,69,70],[252,5,5,70,75],[253,1,1,75,76],[254,1,1,76,77],[258,2,2,77,79],[260,1,1,79,80],[263,2,2,80,82],[264,1,1,82,83],[266,1,1,83,84]]],[9,9,9,84,93,[[268,1,1,84,85],[274,1,1,85,86],[276,1,1,86,87],[277,2,2,87,89],[278,3,3,89,92],[287,1,1,92,93]]],[10,9,9,93,102,[[302,2,2,93,95],[304,1,1,95,96],[310,3,3,96,99],[312,3,3,99,102]]],[11,12,12,102,114,[[315,1,1,102,103],[318,1,1,103,104],[320,1,1,104,105],[321,1,1,105,106],[322,1,1,106,107],[324,1,1,107,108],[325,1,1,108,109],[326,2,2,109,111],[328,1,1,111,112],[331,2,2,112,114]]],[12,3,3,114,117,[[347,1,1,114,115],[355,1,1,115,116],[356,1,1,116,117]]],[13,15,14,117,131,[[377,2,2,117,119],[379,1,1,119,120],[383,1,1,120,121],[384,2,2,121,123],[386,2,2,123,125],[388,1,1,125,126],[392,1,1,126,127],[393,1,1,127,128],[398,1,1,128,129],[401,3,2,129,131]]],[15,3,3,131,134,[[416,3,3,131,134]]],[18,6,5,134,139,[[512,2,1,134,135],[533,2,2,135,137],[586,1,1,137,138],[618,1,1,138,139]]],[19,4,4,139,143,[[631,1,1,139,140],[636,1,1,140,141],[650,2,2,141,143]]],[22,7,7,143,150,[[685,1,1,143,144],[697,1,1,144,145],[698,1,1,145,146],[708,1,1,146,147],[715,2,2,147,149],[741,1,1,149,150]]],[23,16,16,150,166,[[745,1,1,150,151],[759,1,1,151,152],[765,3,3,152,155],[776,3,3,155,158],[777,1,1,158,159],[778,3,3,159,162],[781,2,2,162,164],[785,1,1,164,165],[795,1,1,165,166]]],[26,2,2,166,168,[[859,1,1,166,167],[860,1,1,167,168]]],[37,4,3,168,171,[[920,1,1,168,169],[924,3,2,169,171]]]],[1542,1903,1914,1991,1992,1993,4341,4363,4366,4386,4922,4933,4934,4997,5431,5437,5446,5782,6039,6069,6078,6089,6093,6095,6098,6100,6102,6106,6112,6368,6463,6470,6484,6485,6487,6510,6512,6514,6517,6518,6642,6643,6720,6771,6792,6793,6799,6806,6820,6829,6833,6834,6835,6837,6838,6841,6849,6854,6856,6861,6870,6872,6873,7306,7307,7389,7469,7490,7555,7578,7627,7628,7637,7650,7651,7693,7714,7811,7815,7889,7943,7957,7975,8010,8077,8219,8257,8276,8279,8312,8313,8315,8595,9172,9175,9237,9409,9431,9433,9511,9512,9525,9597,9682,9756,9771,9796,9867,9883,9911,9924,9968,10069,10070,10660,10900,10924,11415,11418,11465,11533,11572,11573,11604,11616,11650,11738,11760,11883,11986,11988,12367,12373,12379,14411,14756,14757,15758,16280,16507,16643,17045,17050,17783,18006,18030,18249,18360,18361,18876,18965,19335,19442,19444,19445,19736,19755,19760,19780,19802,19808,19823,19882,19884,19969,20242,22035,22047,23021,23071,23082]]],["+",[7,6,[[6,2,1,0,1,[[221,2,1,0,1]]],[8,1,1,1,2,[[243,1,1,1,2]]],[9,1,1,2,3,[[287,1,1,2,3]]],[13,2,2,3,5,[[383,1,1,3,4],[388,1,1,4,5]]],[18,1,1,5,6,[[512,1,1,5,6]]]],[6854,7389,8595,11533,11650,14411]]],["Eat",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17050]]],["Fight",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[9511,11572]]],["against",[4,4,[[10,1,1,0,1,[[310,1,1,0,1]]],[18,2,2,1,3,[[512,1,1,1,2],[586,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[9433,14411,15758,23071]]],["devoured",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5782]]],["eat",[4,4,[[18,1,1,0,1,[[618,1,1,0,1]]],[19,3,3,1,4,[[631,1,1,1,2],[636,1,1,2,3],[650,1,1,3,4]]]],[16280,16507,16643,17045]]],["fight",[78,77,[[1,3,3,0,3,[[50,1,1,0,1],[63,1,1,1,2],[66,1,1,2,3]]],[4,6,6,3,9,[[153,3,3,3,6],[155,1,1,6,7],[172,2,2,7,9]]],[5,4,4,9,13,[[195,1,1,9,10],[196,1,1,10,11],[197,1,1,11,12],[205,1,1,12,13]]],[6,14,14,13,27,[[211,3,3,13,16],[218,1,1,16,17],[219,1,1,17,18],[220,2,2,18,20],[221,5,5,20,25],[222,2,2,25,27]]],[8,11,11,27,38,[[239,1,1,27,28],[248,1,1,28,29],[250,1,1,29,30],[252,4,4,30,34],[253,1,1,34,35],[258,1,1,35,36],[263,1,1,36,37],[264,1,1,37,38]]],[9,1,1,38,39,[[277,1,1,38,39]]],[10,4,4,39,43,[[302,2,2,39,41],[310,1,1,41,42],[312,1,1,42,43]]],[11,3,3,43,46,[[315,1,1,43,44],[322,1,1,44,45],[331,1,1,45,46]]],[13,9,8,46,54,[[377,2,2,46,48],[379,1,1,48,49],[384,1,1,49,50],[386,1,1,50,51],[398,1,1,51,52],[401,3,2,52,54]]],[15,3,3,54,57,[[416,3,3,54,57]]],[18,1,1,57,58,[[533,1,1,57,58]]],[22,2,2,58,60,[[697,1,1,58,59],[708,1,1,59,60]]],[23,13,13,60,73,[[745,1,1,60,61],[759,1,1,61,62],[765,2,2,62,64],[776,3,3,64,67],[777,1,1,67,68],[778,1,1,68,69],[781,2,2,69,71],[785,1,1,71,72],[795,1,1,72,73]]],[26,2,2,73,75,[[859,1,1,73,74],[860,1,1,74,75]]],[37,2,2,75,77,[[920,1,1,75,76],[924,1,1,76,77]]]],[1542,1903,1992,4922,4933,4934,4997,5431,5437,6039,6089,6112,6368,6510,6512,6518,6720,6792,6820,6829,6835,6837,6838,6841,6861,6870,6872,7306,7490,7578,7627,7628,7650,7651,7693,7811,7943,7975,8279,9172,9175,9431,9512,9597,9796,10070,11415,11418,11465,11573,11604,11883,11986,11988,12367,12373,12379,14757,18006,18249,18965,19335,19444,19445,19736,19755,19760,19780,19823,19882,19884,19969,20242,22035,22047,23021,23082]]],["fighteth",[3,3,[[1,1,1,0,1,[[63,1,1,0,1]]],[5,1,1,1,2,[[209,1,1,1,2]]],[8,1,1,2,3,[[260,1,1,2,3]]]],[1914,6470,7889]]],["fighting",[2,2,[[8,1,1,0,1,[[252,1,1,0,1]]],[18,1,1,1,2,[[533,1,1,1,2]]]],[7637,14756]]],["fought",[55,53,[[1,2,2,0,2,[[66,2,2,0,2]]],[3,3,3,2,5,[[137,3,3,2,5]]],[5,10,10,5,15,[[196,7,7,5,12],[209,1,1,12,13],[210,2,2,13,15]]],[6,12,10,15,25,[[211,2,2,15,17],[215,4,2,17,19],[219,4,4,19,23],[221,1,1,23,24],[222,1,1,24,25]]],[8,6,6,25,31,[[239,1,1,25,26],[247,1,1,26,27],[249,1,1,27,28],[254,1,1,28,29],[258,1,1,29,30],[266,1,1,30,31]]],[9,7,7,31,38,[[268,1,1,31,32],[274,1,1,32,33],[276,1,1,33,34],[277,1,1,34,35],[278,3,3,35,38]]],[11,5,5,38,43,[[320,1,1,38,39],[321,1,1,39,40],[324,1,1,40,41],[325,1,1,41,42],[326,1,1,42,43]]],[12,3,3,43,46,[[347,1,1,43,44],[355,1,1,44,45],[356,1,1,45,46]]],[13,2,2,46,48,[[386,1,1,46,47],[393,1,1,47,48]]],[22,2,2,48,50,[[698,1,1,48,49],[741,1,1,49,50]]],[23,2,2,50,52,[[778,2,2,50,52]]],[37,1,1,52,53,[[924,1,1,52,53]]]],[1991,1993,4341,4363,4366,6078,6093,6095,6098,6100,6102,6106,6463,6484,6487,6514,6517,6642,6643,6771,6793,6799,6806,6849,6873,7307,7469,7555,7714,7815,8010,8077,8219,8257,8276,8312,8313,8315,9756,9771,9867,9883,9911,10660,10900,10924,11616,11760,18030,18876,19802,19808,23071]]],["overcome",[2,2,[[3,1,1,0,1,[[138,1,1,0,1]]],[11,1,1,1,2,[[328,1,1,1,2]]]],[4386,9968]]],["prevail",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17783]]],["war",[8,8,[[4,1,1,0,1,[[172,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[6,3,3,2,5,[[221,3,3,2,5]]],[8,1,1,5,6,[[263,1,1,5,6]]],[22,1,1,6,7,[[715,1,1,6,7]]],[23,1,1,7,8,[[765,1,1,7,8]]]],[5446,6069,6833,6834,6856,7957,18361,19442]]],["warred",[7,7,[[5,1,1,0,1,[[210,1,1,0,1]]],[10,3,3,1,4,[[304,1,1,1,2],[310,1,1,2,3],[312,1,1,3,4]]],[11,2,2,4,6,[[318,1,1,4,5],[326,1,1,5,6]]],[13,1,1,6,7,[[392,1,1,6,7]]]],[6485,9237,9409,9525,9682,9924,11738]]],["warring",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10069,18360]]]]},{"k":"H3899","v":[["*",[298,277,[[0,24,22,0,22,[[2,1,1,0,1],[13,1,1,1,2],[17,1,1,2,3],[20,1,1,3,4],[24,1,1,4,5],[26,1,1,5,6],[27,1,1,6,7],[30,2,1,7,8],[36,1,1,8,9],[38,1,1,9,10],[40,2,2,10,12],[42,3,3,12,15],[44,1,1,15,16],[46,6,5,16,21],[48,1,1,21,22]]],[1,21,20,22,42,[[51,1,1,22,23],[65,8,8,23,31],[67,1,1,31,32],[72,1,1,32,33],[74,1,1,33,34],[78,5,4,34,38],[83,1,1,38,39],[84,1,1,39,40],[88,1,1,40,41],[89,1,1,41,42]]],[2,24,22,42,64,[[92,2,2,42,44],[96,1,1,44,45],[97,3,3,45,48],[110,5,5,48,53],[111,4,4,53,57],[112,4,4,57,61],[113,1,1,61,62],[115,4,2,62,64]]],[3,7,6,64,70,[[120,1,1,64,65],[130,1,1,65,66],[131,1,1,66,67],[137,2,1,67,68],[144,2,2,68,70]]],[4,8,8,70,78,[[160,2,2,70,72],[161,2,2,72,74],[162,1,1,74,75],[168,1,1,75,76],[175,1,1,76,77],[181,1,1,77,78]]],[5,2,2,78,80,[[195,2,2,78,80]]],[6,7,7,80,87,[[217,1,1,80,81],[218,3,3,81,84],[223,1,1,84,85],[229,2,2,85,87]]],[7,2,2,87,89,[[232,1,1,87,88],[233,1,1,88,89]]],[8,27,22,89,111,[[237,3,2,89,91],[244,1,1,91,92],[245,2,2,92,94],[249,3,2,94,96],[251,1,1,96,97],[252,1,1,97,98],[255,3,3,98,101],[256,6,3,101,104],[257,1,1,104,105],[260,2,2,105,107],[263,2,2,107,109],[265,2,2,109,111]]],[9,13,11,111,122,[[269,3,2,111,113],[272,1,1,113,114],[275,3,2,114,116],[278,3,3,116,119],[279,1,1,119,120],[282,2,2,120,122]]],[10,24,22,122,144,[[294,1,1,122,123],[295,1,1,123,124],[297,1,1,124,125],[301,1,1,125,126],[303,10,9,126,135],[304,1,1,135,136],[307,3,2,136,138],[308,2,2,138,140],[311,3,3,140,143],[312,1,1,143,144]]],[11,8,6,144,150,[[316,4,2,144,146],[318,1,1,146,147],[330,1,1,147,148],[337,2,2,148,150]]],[12,4,4,150,154,[[346,1,1,150,151],[349,1,1,151,152],[353,1,1,152,153],[360,1,1,153,154]]],[13,3,3,154,157,[[370,1,1,154,155],[379,1,1,155,156],[384,1,1,156,157]]],[14,1,1,157,158,[[412,1,1,157,158]]],[15,6,6,158,164,[[417,3,3,158,161],[421,1,1,161,162],[422,1,1,162,163],[425,1,1,163,164]]],[17,11,11,164,175,[[438,1,1,164,165],[441,1,1,165,166],[450,1,1,166,167],[455,1,1,167,168],[457,1,1,168,169],[459,1,1,169,170],[462,1,1,170,171],[463,1,1,171,172],[465,1,1,172,173],[468,1,1,173,174],[477,1,1,174,175]]],[18,19,19,175,194,[[491,1,1,175,176],[514,1,1,176,177],[518,1,1,177,178],[519,1,1,178,179],[530,1,1,179,180],[555,2,2,180,182],[557,1,1,182,183],[579,2,2,183,185],[581,2,2,185,187],[582,2,2,187,189],[604,1,1,189,190],[609,1,1,190,191],[613,1,1,191,192],[623,1,1,192,193],[624,1,1,193,194]]],[19,23,22,194,216,[[631,1,1,194,195],[633,2,2,195,197],[636,2,2,197,199],[639,2,2,199,201],[647,2,2,201,203],[649,1,1,203,204],[650,2,2,204,206],[652,1,1,206,207],[654,2,1,207,208],[655,3,3,208,211],[657,3,3,211,214],[658,2,2,214,216]]],[20,4,4,216,220,[[667,2,2,216,218],[668,1,1,218,219],[669,1,1,219,220]]],[22,16,16,220,236,[[681,2,2,220,222],[682,1,1,222,223],[699,1,1,223,224],[706,1,1,224,225],[708,2,2,225,227],[711,1,1,227,228],[714,1,1,228,229],[722,2,2,229,231],[729,1,1,231,232],[733,2,2,232,234],[736,1,1,234,235],[743,1,1,235,236]]],[23,10,9,236,245,[[749,1,1,236,237],[755,1,1,237,238],[781,2,1,238,239],[782,1,1,239,240],[785,1,1,240,241],[786,1,1,241,242],[788,1,1,242,243],[796,2,2,243,245]]],[24,4,4,245,249,[[797,1,1,245,246],[800,1,1,246,247],[801,2,2,247,249]]],[25,20,19,249,268,[[805,6,5,249,254],[806,1,1,254,255],[813,2,2,255,257],[814,1,1,257,258],[815,1,1,258,259],[817,2,2,259,261],[819,2,2,261,263],[825,2,2,263,265],[845,2,2,265,267],[849,1,1,267,268]]],[26,1,1,268,269,[[859,1,1,268,269]]],[27,3,2,269,271,[[863,1,1,269,270],[870,2,1,270,271]]],[29,3,3,271,274,[[882,1,1,271,272],[885,1,1,272,273],[886,1,1,273,274]]],[30,1,1,274,275,[[888,1,1,274,275]]],[36,1,1,275,276,[[910,1,1,275,276]]],[38,1,1,276,277,[[925,1,1,276,277]]]],[74,354,429,527,692,744,793,927,1108,1155,1249,1250,1315,1321,1322,1381,1432,1433,1435,1437,1439,1493,1574,1950,1951,1955,1959,1962,1969,1976,1979,2011,2169,2225,2338,2359,2368,2370,2524,2544,2700,2730,2789,2794,2892,2943,2948,2949,3351,3353,3362,3366,3367,3376,3380,3382,3394,3416,3419,3420,3422,3453,3529,3550,3750,4117,4172,4345,4579,4601,5140,5146,5166,5175,5204,5345,5504,5685,6042,6049,6707,6724,6725,6734,6900,7029,7043,7133,7163,7245,7276,7398,7421,7422,7532,7536,7615,7635,7754,7757,7764,7775,7776,7778,7800,7872,7879,7962,7964,7989,7990,8110,8116,8176,8234,8237,8303,8306,8307,8322,8427,8428,8866,8887,8982,9126,9192,9193,9199,9200,9201,9202,9203,9206,9207,9221,9323,9328,9345,9354,9455,9456,9458,9507,9611,9645,9696,10056,10225,10251,10647,10760,10823,11012,11265,11464,11568,12258,12396,12397,12400,12526,12582,12673,12928,12985,13226,13340,13396,13441,13495,13509,13561,13670,13933,14084,14475,14551,14558,14723,15133,15138,15203,15525,15530,15585,15586,15622,15646,16123,16166,16221,16348,16360,16507,16548,16566,16643,16655,16728,16730,16967,16971,17024,17047,17050,17134,17196,17199,17215,17217,17259,17273,17276,17298,17311,17482,17486,17512,17514,17708,17714,17734,18049,18192,18237,18240,18295,18347,18548,18552,18687,18742,18750,18793,18922,19075,19245,19895,19904,19958,19989,20027,20282,20309,20321,20424,20448,20451,20538,20542,20544,20545,20546,20562,20698,20699,20727,20744,20781,20811,20856,20865,21073,21078,21602,21606,21720,22018,22110,22212,22416,22476,22492,22517,22867,23096]]],["+",[14,14,[[1,3,3,0,3,[[74,1,1,0,1],[84,1,1,1,2],[88,1,1,2,3]]],[2,2,2,3,5,[[111,1,1,3,4],[115,1,1,4,5]]],[3,1,1,5,6,[[131,1,1,5,6]]],[8,1,1,6,7,[[256,1,1,6,7]]],[10,1,1,7,8,[[297,1,1,7,8]]],[12,2,2,8,10,[[346,1,1,8,9],[360,1,1,9,10]]],[13,2,2,10,12,[[370,1,1,10,11],[379,1,1,11,12]]],[15,1,1,12,13,[[422,1,1,12,13]]],[19,1,1,13,14,[[649,1,1,13,14]]]],[2225,2544,2700,3382,3550,4172,7778,8982,10647,11012,11265,11464,12582,17024]]],["Bread",[2,2,[[19,1,1,0,1,[[647,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]]],[16971,18192]]],["bread",[233,219,[[0,24,22,0,22,[[2,1,1,0,1],[13,1,1,1,2],[17,1,1,2,3],[20,1,1,3,4],[24,1,1,4,5],[26,1,1,5,6],[27,1,1,6,7],[30,2,1,7,8],[36,1,1,8,9],[38,1,1,9,10],[40,2,2,10,12],[42,3,3,12,15],[44,1,1,15,16],[46,6,5,16,21],[48,1,1,21,22]]],[1,18,17,22,39,[[51,1,1,22,23],[65,8,8,23,31],[67,1,1,31,32],[72,1,1,32,33],[78,5,4,33,37],[83,1,1,37,38],[89,1,1,38,39]]],[2,17,16,39,55,[[96,1,1,39,40],[97,3,3,40,43],[110,5,5,43,48],[111,1,1,48,49],[112,3,3,49,52],[113,1,1,52,53],[115,3,2,53,55]]],[3,5,4,55,59,[[120,1,1,55,56],[130,1,1,56,57],[137,2,1,57,58],[144,1,1,58,59]]],[4,7,7,59,66,[[160,2,2,59,61],[161,2,2,61,63],[168,1,1,63,64],[175,1,1,64,65],[181,1,1,65,66]]],[5,2,2,66,68,[[195,2,2,66,68]]],[6,7,7,68,75,[[217,1,1,68,69],[218,3,3,69,72],[223,1,1,72,73],[229,2,2,73,75]]],[7,2,2,75,77,[[232,1,1,75,76],[233,1,1,76,77]]],[8,18,15,77,92,[[237,3,2,77,79],[244,1,1,79,80],[245,2,2,80,82],[251,1,1,82,83],[256,5,3,83,86],[257,1,1,86,87],[260,1,1,87,88],[263,2,2,88,90],[265,2,2,90,92]]],[9,10,10,92,102,[[269,2,2,92,94],[272,1,1,94,95],[275,2,2,95,97],[278,3,3,97,100],[282,2,2,100,102]]],[10,19,17,102,119,[[303,10,9,102,111],[307,3,2,111,113],[308,2,2,113,115],[311,3,3,115,118],[312,1,1,118,119]]],[11,7,6,119,125,[[316,3,2,119,121],[318,1,1,121,122],[330,1,1,122,123],[337,2,2,123,125]]],[12,2,2,125,127,[[349,1,1,125,126],[353,1,1,126,127]]],[13,1,1,127,128,[[384,1,1,127,128]]],[14,1,1,128,129,[[412,1,1,128,129]]],[15,5,5,129,134,[[417,3,3,129,132],[421,1,1,132,133],[425,1,1,133,134]]],[17,6,6,134,140,[[450,1,1,134,135],[457,1,1,135,136],[462,1,1,136,137],[463,1,1,137,138],[468,1,1,138,139],[477,1,1,139,140]]],[18,13,13,140,153,[[491,1,1,140,141],[514,1,1,141,142],[518,1,1,142,143],[530,1,1,143,144],[555,1,1,144,145],[557,1,1,145,146],[579,2,2,146,148],[581,1,1,148,149],[582,2,2,149,151],[604,1,1,151,152],[609,1,1,152,153]]],[19,12,12,153,165,[[631,1,1,153,154],[633,1,1,154,155],[636,2,2,155,157],[639,2,2,157,159],[647,1,1,159,160],[650,1,1,160,161],[652,1,1,161,162],[655,2,2,162,164],[658,1,1,164,165]]],[20,3,3,165,168,[[667,2,2,165,167],[669,1,1,167,168]]],[22,14,14,168,182,[[681,2,2,168,170],[682,1,1,170,171],[699,1,1,171,172],[708,2,2,172,174],[711,1,1,174,175],[714,1,1,175,176],[722,2,2,176,178],[729,1,1,178,179],[733,2,2,179,181],[736,1,1,181,182]]],[23,8,7,182,189,[[749,1,1,182,183],[781,2,1,183,184],[782,1,1,184,185],[785,1,1,185,186],[786,1,1,186,187],[796,2,2,187,189]]],[24,4,4,189,193,[[797,1,1,189,190],[800,1,1,190,191],[801,2,2,191,193]]],[25,18,17,193,210,[[805,6,5,193,198],[806,1,1,198,199],[813,2,2,199,201],[814,1,1,201,202],[815,1,1,202,203],[817,1,1,203,204],[819,2,2,204,206],[825,2,2,206,208],[845,2,2,208,210]]],[26,1,1,210,211,[[859,1,1,210,211]]],[27,3,2,211,213,[[863,1,1,211,212],[870,2,1,212,213]]],[29,3,3,213,216,[[882,1,1,213,214],[885,1,1,214,215],[886,1,1,215,216]]],[30,1,1,216,217,[[888,1,1,216,217]]],[36,1,1,217,218,[[910,1,1,217,218]]],[38,1,1,218,219,[[925,1,1,218,219]]]],[74,354,429,527,692,744,793,927,1108,1155,1249,1250,1315,1321,1322,1381,1432,1433,1435,1437,1439,1493,1574,1950,1951,1955,1959,1962,1969,1976,1979,2011,2169,2338,2359,2368,2370,2524,2730,2892,2943,2948,2949,3351,3353,3362,3366,3367,3394,3416,3420,3422,3453,3529,3550,3750,4117,4345,4579,5140,5146,5166,5175,5345,5504,5685,6042,6049,6707,6724,6725,6734,6900,7029,7043,7133,7163,7245,7276,7398,7421,7422,7615,7775,7776,7778,7800,7872,7962,7964,7989,7990,8110,8116,8176,8234,8237,8303,8306,8307,8427,8428,9192,9193,9199,9200,9201,9202,9203,9206,9207,9323,9328,9345,9354,9455,9456,9458,9507,9611,9645,9696,10056,10225,10251,10760,10823,11568,12258,12396,12397,12400,12526,12673,13226,13396,13495,13509,13670,13933,14084,14475,14551,14723,15133,15203,15525,15530,15586,15622,15646,16123,16166,16507,16566,16643,16655,16728,16730,16967,17050,17134,17215,17217,17311,17482,17486,17514,17708,17714,17734,18049,18237,18240,18295,18347,18548,18552,18687,18742,18750,18793,19075,19895,19904,19958,19989,20282,20309,20321,20424,20448,20451,20538,20542,20544,20545,20546,20562,20698,20699,20727,20744,20811,20856,20865,21073,21078,21602,21606,22018,22110,22212,22416,22476,22492,22517,22867,23096]]],["eat",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12928]]],["feast",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17512]]],["food",[21,19,[[2,3,3,0,3,[[92,2,2,0,2],[111,1,1,2,3]]],[4,1,1,3,4,[[162,1,1,3,4]]],[8,3,2,4,6,[[249,3,2,4,6]]],[9,1,1,6,7,[[275,1,1,6,7]]],[10,1,1,7,8,[[295,1,1,7,8]]],[17,1,1,8,9,[[459,1,1,8,9]]],[18,5,5,9,14,[[555,1,1,9,10],[581,1,1,10,11],[613,1,1,11,12],[623,1,1,12,13],[624,1,1,13,14]]],[19,5,4,14,18,[[654,2,1,14,15],[655,1,1,15,16],[657,1,1,16,17],[658,1,1,17,18]]],[25,1,1,18,19,[[849,1,1,18,19]]]],[2789,2794,3376,5204,7532,7536,8237,8887,13441,15138,15585,16221,16348,16360,17196,17199,17259,17298,21720]]],["fruit",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19245]]],["loaves",[5,5,[[2,1,1,0,1,[[112,1,1,0,1]]],[8,2,2,1,3,[[252,1,1,1,2],[260,1,1,2,3]]],[10,1,1,3,4,[[304,1,1,3,4]]],[11,1,1,4,5,[[316,1,1,4,5]]]],[3419,7635,7879,9221,9645]]],["meat",[17,17,[[2,1,1,0,1,[[111,1,1,0,1]]],[3,1,1,1,2,[[144,1,1,1,2]]],[8,3,3,2,5,[[255,3,3,2,5]]],[9,2,2,5,7,[[269,1,1,5,6],[279,1,1,6,7]]],[17,3,3,7,10,[[441,1,1,7,8],[455,1,1,8,9],[465,1,1,9,10]]],[18,1,1,10,11,[[519,1,1,10,11]]],[19,4,4,11,15,[[633,1,1,11,12],[650,1,1,12,13],[657,2,2,13,15]]],[22,1,1,15,16,[[743,1,1,15,16]]],[25,1,1,16,17,[[817,1,1,16,17]]]],[3380,4601,7754,7757,7764,8116,8322,12985,13340,13561,14558,16548,17047,17273,17276,18922,20781]]],["provision",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8866]]],["victuals",[2,2,[[10,1,1,0,1,[[301,1,1,0,1]]],[23,1,1,1,2,[[788,1,1,1,2]]]],[9126,20027]]]]},{"k":"H3900","v":[["feast",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21875]]]]},{"k":"H3901","v":[["war",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6631]]]]},{"k":"H3902","v":[["Lahmi",[1,1,[[12,1,1,0,1,[[357,1,1,0,1]]]],[10931]]]]},{"k":"H3903","v":[["Lahmam",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6242]]]]},{"k":"H3904","v":[["concubines",[3,3,[[26,3,3,0,3,[[854,3,3,0,3]]]],[21876,21877,21897]]]]},{"k":"H3905","v":[["*",[19,18,[[1,3,3,0,3,[[52,1,1,0,1],[71,1,1,1,2],[72,1,1,2,3]]],[3,2,1,3,4,[[138,2,1,3,4]]],[6,5,5,4,9,[[211,1,1,4,5],[212,1,1,5,6],[214,1,1,6,7],[216,1,1,7,8],[220,1,1,8,9]]],[8,1,1,9,10,[[245,1,1,9,10]]],[11,3,3,10,13,[[318,1,1,10,11],[325,2,2,11,13]]],[18,2,2,13,15,[[533,1,1,13,14],[583,1,1,14,15]]],[22,1,1,15,16,[[697,1,1,15,16]]],[23,1,1,16,17,[[774,1,1,16,17]]],[29,1,1,17,18,[[884,1,1,17,18]]]],[1588,2134,2153,4400,6543,6563,6602,6663,6823,7436,9706,9875,9893,14756,15693,18024,19687,22464]]],["+",[5,5,[[3,1,1,0,1,[[138,1,1,0,1]]],[6,2,2,1,3,[[211,1,1,1,2],[214,1,1,2,3]]],[11,2,2,3,5,[[318,1,1,3,4],[325,1,1,4,5]]]],[4400,6543,6602,9706,9893]]],["afflict",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22464]]],["herself",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4400]]],["oppress",[5,5,[[1,3,3,0,3,[[52,1,1,0,1],[71,1,1,1,2],[72,1,1,2,3]]],[6,1,1,3,4,[[220,1,1,3,4]]],[23,1,1,4,5,[[774,1,1,4,5]]]],[1588,2134,2153,6823,19687]]],["oppressed",[5,5,[[6,2,2,0,2,[[212,1,1,0,1],[216,1,1,1,2]]],[8,1,1,2,3,[[245,1,1,2,3]]],[11,1,1,3,4,[[325,1,1,3,4]]],[18,1,1,4,5,[[583,1,1,4,5]]]],[6563,6663,7436,9875,15693]]],["oppresseth",[1,1,[[18,1,1,0,1,[[533,1,1,0,1]]]],[14756]]],["oppressors",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18024]]]]},{"k":"H3906","v":[["*",[12,10,[[1,1,1,0,1,[[52,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]],[10,2,1,2,3,[[312,2,1,2,3]]],[11,1,1,3,4,[[325,1,1,3,4]]],[13,2,1,4,5,[[384,2,1,4,5]]],[17,1,1,5,6,[[471,1,1,5,6]]],[18,3,3,6,9,[[519,1,1,6,7],[520,1,1,7,8],[521,1,1,8,9]]],[22,1,1,9,10,[[708,1,1,9,10]]]],[1588,5573,9507,9875,11568,13751,14564,14568,14595,18237]]],["affliction",[5,3,[[10,2,1,0,1,[[312,2,1,0,1]]],[13,2,1,1,2,[[384,2,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]]],[9507,11568,18237]]],["oppression",[7,7,[[1,1,1,0,1,[[52,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]],[11,1,1,2,3,[[325,1,1,2,3]]],[17,1,1,3,4,[[471,1,1,3,4]]],[18,3,3,4,7,[[519,1,1,4,5],[520,1,1,5,6],[521,1,1,6,7]]]],[1588,5573,9875,13751,14564,14568,14595]]]]},{"k":"H3907","v":[["*",[3,3,[[9,1,1,0,1,[[278,1,1,0,1]]],[18,2,2,1,3,[[518,1,1,1,2],[535,1,1,2,3]]]],[8305,14549,14784]]],["charmers",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14784]]],["whisper",[1,1,[[18,1,1,0,1,[[518,1,1,0,1]]]],[14549]]],["whispered",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8305]]]]},{"k":"H3908","v":[["*",[5,5,[[20,1,1,0,1,[[668,1,1,0,1]]],[22,3,3,1,4,[[681,2,2,1,3],[704,1,1,3,4]]],[23,1,1,4,5,[[752,1,1,4,5]]]],[17504,17710,17727,18146,19170]]],["charmed",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19170]]],["earrings",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17727]]],["enchantment",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17504]]],["orator",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17710]]],["prayer",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18146]]]]},{"k":"H3909","v":[["*",[6,6,[[1,3,3,0,3,[[56,1,1,0,1],[57,2,2,1,3]]],[7,1,1,3,4,[[234,1,1,3,4]]],[8,2,2,4,6,[[253,1,1,4,5],[259,1,1,5,6]]]],[1707,1717,1728,7179,7698,7843]]],["enchantments",[3,3,[[1,3,3,0,3,[[56,1,1,0,1],[57,2,2,1,3]]]],[1707,1717,1728]]],["privily",[1,1,[[8,1,1,0,1,[[259,1,1,0,1]]]],[7843]]],["secretly",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7698]]],["softly",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7179]]]]},{"k":"H3910","v":[["myrrh",[2,2,[[0,2,2,0,2,[[36,1,1,0,1],[42,1,1,1,2]]]],[1108,1301]]]]},{"k":"H3911","v":[["lizard",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3027]]]]},{"k":"H3912","v":[["Letushim",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[661]]]]},{"k":"H3913","v":[["*",[5,5,[[0,1,1,0,1,[[3,1,1,0,1]]],[8,1,1,1,2,[[248,1,1,1,2]]],[17,1,1,2,3,[[451,1,1,2,3]]],[18,2,2,3,5,[[484,1,1,3,4],[529,1,1,4,5]]]],[101,7505,13247,14007,14712]]],["instructer",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[101]]],["sharp",[1,1,[[18,1,1,0,1,[[529,1,1,0,1]]]],[14712]]],["sharpen",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7505]]],["sharpeneth",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13247]]],["whet",[1,1,[[18,1,1,0,1,[[484,1,1,0,1]]]],[14007]]]]},{"k":"H3914","v":[["*",[3,3,[[10,3,3,0,3,[[297,3,3,0,3]]]],[8963,8964,8970]]],["addition",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8964]]],["additions",[2,2,[[10,2,2,0,2,[[297,2,2,0,2]]]],[8963,8970]]]]},{"k":"H3915","v":[["*",[233,223,[[0,25,25,0,25,[[0,4,4,0,4],[6,2,2,4,6],[7,1,1,6,7],[13,1,1,7,8],[18,4,4,8,12],[19,1,1,12,13],[25,1,1,13,14],[29,2,2,14,16],[30,3,3,16,19],[31,3,3,19,22],[39,1,1,22,23],[40,1,1,23,24],[45,1,1,24,25]]],[1,18,15,25,40,[[59,1,1,25,26],[60,1,1,26,27],[61,7,6,27,33],[62,3,2,33,35],[63,3,2,35,37],[73,1,1,37,38],[83,1,1,38,39],[89,1,1,39,40]]],[2,2,2,40,42,[[95,1,1,40,41],[97,1,1,41,42]]],[3,9,9,42,51,[[125,2,2,42,44],[127,2,2,44,46],[130,2,2,46,48],[138,3,3,48,51]]],[4,9,9,51,60,[[153,1,1,51,52],[161,4,4,52,56],[162,1,1,56,57],[168,1,1,57,58],[175,1,1,58,59],[180,1,1,59,60]]],[5,7,7,60,67,[[187,1,1,60,61],[188,1,1,61,62],[190,1,1,62,63],[194,3,3,63,66],[196,1,1,66,67]]],[6,12,10,67,77,[[216,3,3,67,70],[217,1,1,70,71],[219,2,2,71,73],[226,4,2,73,75],[229,1,1,75,76],[230,1,1,76,77]]],[7,4,4,77,81,[[232,1,1,77,78],[234,3,3,78,81]]],[8,14,14,81,95,[[249,2,2,81,83],[250,2,2,83,85],[254,3,3,85,88],[260,1,1,88,89],[261,1,1,89,90],[263,3,3,90,93],[265,1,1,93,94],[266,1,1,94,95]]],[9,8,8,95,103,[[268,2,2,95,97],[270,1,1,97,98],[273,1,1,98,99],[283,2,2,99,101],[285,1,1,101,102],[287,1,1,102,103]]],[10,6,6,103,109,[[293,3,3,103,106],[298,2,2,106,108],[309,1,1,108,109]]],[11,5,5,109,114,[[318,1,1,109,110],[319,1,1,110,111],[320,1,1,111,112],[331,1,1,112,113],[337,1,1,113,114]]],[12,2,2,114,116,[[346,1,1,114,115],[354,1,1,115,116]]],[13,5,5,116,121,[[367,1,1,116,117],[372,1,1,117,118],[373,1,1,118,119],[387,1,1,119,120],[401,1,1,120,121]]],[15,9,9,121,130,[[413,1,1,121,122],[414,3,3,122,125],[416,2,2,125,127],[418,1,1,127,128],[421,2,2,128,130]]],[16,2,2,130,132,[[429,1,1,130,131],[431,1,1,131,132]]],[17,17,17,132,149,[[437,1,1,132,133],[438,3,3,133,136],[439,1,1,136,137],[440,1,1,137,138],[442,1,1,138,139],[452,1,1,139,140],[455,1,1,140,141],[459,1,1,141,142],[462,1,1,142,143],[465,1,1,143,144],[468,1,1,144,145],[469,2,2,145,147],[470,1,1,147,148],[471,1,1,148,149]]],[18,28,27,149,176,[[478,1,1,149,150],[483,1,1,150,151],[493,1,1,151,152],[494,1,1,152,153],[496,2,1,153,154],[499,1,1,154,155],[509,1,1,155,156],[519,2,2,156,158],[532,1,1,158,159],[551,1,1,159,160],[554,2,2,160,162],[555,1,1,162,163],[565,1,1,163,164],[567,1,1,164,165],[568,1,1,165,166],[569,1,1,166,167],[581,1,1,167,168],[582,1,1,168,169],[596,2,2,169,171],[598,1,1,171,172],[611,1,1,172,173],[613,1,1,173,174],[616,2,2,174,176]]],[19,3,3,176,179,[[634,1,1,176,177],[658,2,2,177,179]]],[20,2,2,179,181,[[660,1,1,179,180],[666,1,1,180,181]]],[21,3,3,181,184,[[673,2,2,181,183],[675,1,1,183,184]]],[22,18,16,184,200,[[682,1,1,184,185],[693,2,1,185,186],[694,1,1,186,187],[699,4,3,187,190],[704,1,1,190,191],[705,1,1,191,192],[706,1,1,192,193],[707,1,1,193,194],[708,1,1,194,195],[712,1,1,195,196],[716,2,2,196,198],[738,1,1,198,199],[740,1,1,199,200]]],[23,12,11,200,211,[[750,1,1,200,201],[753,1,1,201,202],[758,1,1,202,203],[760,1,1,203,204],[775,1,1,204,205],[777,3,2,205,207],[780,1,1,207,208],[783,1,1,208,209],[793,1,1,209,210],[796,1,1,210,211]]],[24,3,3,211,214,[[797,1,1,211,212],[798,2,2,212,214]]],[27,2,2,214,216,[[865,1,1,214,215],[868,1,1,215,216]]],[29,1,1,216,217,[[883,1,1,216,217]]],[30,1,1,217,218,[[888,1,1,217,218]]],[31,3,2,218,220,[[889,1,1,218,219],[892,2,1,219,220]]],[32,1,1,220,221,[[895,1,1,220,221]]],[37,2,2,221,223,[[911,1,1,221,222],[924,1,1,222,223]]]],[4,13,15,17,163,171,205,351,462,490,491,492,498,716,845,846,897,912,913,941,949,950,1177,1206,1388,1790,1810,1824,1828,1845,1846,1847,1858,1888,1889,1909,1910,2195,2524,2745,2858,2952,3981,3986,4033,4056,4109,4122,4383,4394,4395,4925,5166,5168,5175,5182,5196,5343,5510,5677,5859,5871,5913,6005,6011,6015,6073,6679,6681,6694,6703,6786,6788,6951,6952,7049,7059,7139,7174,7180,7185,7542,7544,7571,7576,7716,7717,7730,7877,7912,7950,7962,7967,7990,8021,8078,8081,8127,8184,8450,8465,8518,8590,8821,8835,8836,9014,9044,9395,9688,9719,9748,10096,10226,10648,10866,11201,11302,11336,11633,11980,12302,12319,12320,12322,12368,12381,12411,12523,12530,12778,12794,12904,12907,12910,12911,12943,12965,13011,13272,13334,13450,13501,13574,13665,13703,13708,13730,13756,13941,13991,14099,14106,14170,14206,14359,14558,14563,14742,15064,15095,15099,15127,15309,15382,15400,15413,15591,15645,15953,15960,16087,16173,16205,16250,16251,16584,17299,17302,17356,17474,17572,17579,17600,17738,17961,17972,18043,18046,18047,18139,18154,18183,18200,18246,18313,18402,18403,18832,18860,19094,19176,19310,19349,19726,19795,19800,19872,19927,20136,20283,20312,20350,20351,22138,22184,22431,22515,22548,22578,22614,22886,23075]]],["+",[10,8,[[1,2,2,0,2,[[60,1,1,0,1],[61,1,1,1,2]]],[6,2,1,2,3,[[226,2,1,2,3]]],[7,1,1,3,4,[[234,1,1,3,4]]],[10,1,1,4,5,[[293,1,1,4,5]]],[17,1,1,5,6,[[469,1,1,5,6]]],[18,1,1,6,7,[[596,1,1,6,7]]],[22,2,1,7,8,[[699,2,1,7,8]]]],[1810,1845,6952,7180,8836,13703,15960,18046]]],["Night",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[4]]],["night",[204,196,[[0,22,22,0,22,[[0,3,3,0,3],[7,1,1,3,4],[13,1,1,4,5],[18,4,4,5,9],[19,1,1,9,10],[25,1,1,10,11],[29,2,2,11,13],[30,3,3,13,16],[31,3,3,16,19],[39,1,1,19,20],[40,1,1,20,21],[45,1,1,21,22]]],[1,14,11,22,33,[[59,1,1,22,23],[61,6,5,23,28],[62,3,2,28,30],[63,3,2,30,32],[89,1,1,32,33]]],[2,2,2,33,35,[[95,1,1,33,34],[97,1,1,34,35]]],[3,9,9,35,44,[[125,2,2,35,37],[127,2,2,37,39],[130,2,2,39,41],[138,3,3,41,44]]],[4,4,4,44,48,[[153,1,1,44,45],[168,1,1,45,46],[175,1,1,46,47],[180,1,1,47,48]]],[5,7,7,48,55,[[187,1,1,48,49],[188,1,1,49,50],[190,1,1,50,51],[194,3,3,51,54],[196,1,1,54,55]]],[6,10,9,55,64,[[216,3,3,55,58],[217,1,1,58,59],[219,2,2,59,61],[226,2,1,61,62],[229,1,1,62,63],[230,1,1,63,64]]],[7,3,3,64,67,[[232,1,1,64,65],[234,2,2,65,67]]],[8,13,13,67,80,[[249,2,2,67,69],[250,2,2,69,71],[254,3,3,71,74],[260,1,1,74,75],[261,1,1,75,76],[263,3,3,76,79],[266,1,1,79,80]]],[9,8,8,80,88,[[268,2,2,80,82],[270,1,1,82,83],[273,1,1,83,84],[283,2,2,84,86],[285,1,1,86,87],[287,1,1,87,88]]],[10,4,4,88,92,[[293,2,2,88,90],[298,2,2,90,92]]],[11,5,5,92,97,[[318,1,1,92,93],[319,1,1,93,94],[320,1,1,94,95],[331,1,1,95,96],[337,1,1,96,97]]],[12,2,2,97,99,[[346,1,1,97,98],[354,1,1,98,99]]],[13,5,5,99,104,[[367,1,1,99,100],[372,1,1,100,101],[373,1,1,101,102],[387,1,1,102,103],[401,1,1,103,104]]],[15,9,9,104,113,[[413,1,1,104,105],[414,3,3,105,108],[416,2,2,108,110],[418,1,1,110,111],[421,2,2,111,113]]],[16,2,2,113,115,[[429,1,1,113,114],[431,1,1,114,115]]],[17,13,13,115,128,[[438,3,3,115,118],[439,1,1,118,119],[440,1,1,119,120],[452,1,1,120,121],[455,1,1,121,122],[459,1,1,122,123],[462,1,1,123,124],[468,1,1,124,125],[469,1,1,125,126],[470,1,1,126,127],[471,1,1,127,128]]],[18,25,24,128,152,[[478,1,1,128,129],[483,1,1,129,130],[494,1,1,130,131],[496,2,1,131,132],[509,1,1,132,133],[519,2,2,133,135],[532,1,1,135,136],[551,1,1,136,137],[554,2,2,137,139],[555,1,1,139,140],[565,1,1,140,141],[567,1,1,141,142],[568,1,1,142,143],[569,1,1,143,144],[581,1,1,144,145],[582,1,1,145,146],[596,1,1,146,147],[598,1,1,147,148],[611,1,1,148,149],[613,1,1,149,150],[616,2,2,150,152]]],[19,3,3,152,155,[[634,1,1,152,153],[658,2,2,153,155]]],[20,2,2,155,157,[[660,1,1,155,156],[666,1,1,156,157]]],[21,3,3,157,160,[[673,2,2,157,159],[675,1,1,159,160]]],[22,15,14,160,174,[[682,1,1,160,161],[693,2,1,161,162],[694,1,1,162,163],[699,1,1,163,164],[704,1,1,164,165],[705,1,1,165,166],[706,1,1,166,167],[707,1,1,167,168],[708,1,1,168,169],[712,1,1,169,170],[716,2,2,170,172],[738,1,1,172,173],[740,1,1,173,174]]],[23,12,11,174,185,[[750,1,1,174,175],[753,1,1,175,176],[758,1,1,176,177],[760,1,1,177,178],[775,1,1,178,179],[777,3,2,179,181],[780,1,1,181,182],[783,1,1,182,183],[793,1,1,183,184],[796,1,1,184,185]]],[24,3,3,185,188,[[797,1,1,185,186],[798,2,2,186,188]]],[27,2,2,188,190,[[865,1,1,188,189],[868,1,1,189,190]]],[29,1,1,190,191,[[883,1,1,190,191]]],[30,1,1,191,192,[[888,1,1,191,192]]],[31,2,1,192,193,[[892,2,1,192,193]]],[32,1,1,193,194,[[895,1,1,193,194]]],[37,2,2,194,196,[[911,1,1,194,195],[924,1,1,195,196]]]],[13,15,17,205,351,462,490,491,492,498,716,845,846,897,912,913,941,949,950,1177,1206,1388,1790,1824,1828,1846,1847,1858,1888,1889,1909,1910,2745,2858,2952,3981,3986,4033,4056,4109,4122,4383,4394,4395,4925,5343,5510,5677,5859,5871,5913,6005,6011,6015,6073,6679,6681,6694,6703,6786,6788,6951,7049,7059,7139,7174,7185,7542,7544,7571,7576,7716,7717,7730,7877,7912,7950,7962,7967,8021,8078,8081,8127,8184,8450,8465,8518,8590,8821,8835,9014,9044,9688,9719,9748,10096,10226,10648,10866,11201,11302,11336,11633,11980,12302,12319,12320,12322,12368,12381,12411,12523,12530,12778,12794,12907,12910,12911,12943,12965,13272,13334,13450,13501,13665,13708,13730,13756,13941,13991,14106,14170,14359,14558,14563,14742,15064,15095,15099,15127,15309,15382,15400,15413,15591,15645,15953,16087,16173,16205,16250,16251,16584,17299,17302,17356,17474,17572,17579,17600,17738,17961,17972,18047,18139,18154,18183,18200,18246,18313,18402,18403,18832,18860,19094,19176,19310,19349,19726,19795,19800,19872,19927,20136,20283,20312,20350,20351,22138,22184,22431,22515,22578,22614,22886,23075]]],["nights",[15,15,[[0,2,2,0,2,[[6,2,2,0,2]]],[1,2,2,2,4,[[73,1,1,2,3],[83,1,1,3,4]]],[4,5,5,4,9,[[161,4,4,4,8],[162,1,1,8,9]]],[8,1,1,9,10,[[265,1,1,9,10]]],[10,1,1,10,11,[[309,1,1,10,11]]],[17,2,2,11,13,[[437,1,1,11,12],[442,1,1,12,13]]],[22,1,1,13,14,[[699,1,1,13,14]]],[31,1,1,14,15,[[889,1,1,14,15]]]],[163,171,2195,2524,5166,5168,5175,5182,5196,7990,9395,12904,13011,18043,22548]]],["season",[2,2,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,1,1,1,2,[[499,1,1,1,2]]]],[13574,14206]]],["seasons",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14099]]]]},{"k":"H3916","v":[["*",[5,5,[[26,5,5,0,5,[[851,1,1,0,1],[854,1,1,1,2],[856,3,3,2,5]]]],[21777,21904,21935,21940,21946]]],["+",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21777]]],["night",[4,4,[[26,4,4,0,4,[[854,1,1,0,1],[856,3,3,1,4]]]],[21904,21935,21940,21946]]]]},{"k":"H3917","v":[["owl",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18317]]]]},{"k":"H3918","v":[["lion",[3,3,[[17,1,1,0,1,[[439,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]]],[12941,17281,18223]]]]},{"k":"H3919","v":[["Laish",[7,7,[[6,4,4,0,4,[[228,4,4,0,4]]],[8,1,1,4,5,[[260,1,1,4,5]]],[9,1,1,5,6,[[269,1,1,5,6]]],[22,1,1,6,7,[[688,1,1,6,7]]]],[7000,7007,7020,7022,7905,8096,17880]]]]},{"k":"H3920","v":[["*",[121,112,[[3,4,4,0,4,[[137,1,1,0,1],[148,3,3,1,4]]],[4,3,3,4,7,[[154,2,2,4,6],[155,1,1,6,7]]],[5,24,21,7,28,[[192,1,1,7,8],[193,8,5,8,13],[194,2,2,13,15],[196,7,7,15,22],[197,3,3,22,25],[201,2,2,25,27],[205,1,1,27,28]]],[6,14,13,28,41,[[211,4,4,28,32],[213,1,1,32,33],[217,3,2,33,35],[218,2,2,35,37],[219,2,2,37,39],[222,1,1,39,40],[225,1,1,40,41]]],[8,6,5,41,46,[[245,3,2,41,43],[249,3,3,43,46]]],[9,7,6,46,52,[[271,1,1,46,47],[274,1,1,47,48],[278,5,4,48,52]]],[10,2,2,52,54,[[299,1,1,52,53],[306,1,1,53,54]]],[11,4,3,54,57,[[324,1,1,54,55],[329,1,1,55,56],[330,2,1,56,57]]],[12,2,2,57,59,[[348,1,1,57,58],[355,1,1,58,59]]],[13,8,8,59,67,[[378,1,1,59,60],[379,1,1,60,61],[381,1,1,61,62],[383,1,1,62,63],[388,1,1,63,64],[394,1,1,64,65],[398,1,1,65,66],[399,1,1,66,67]]],[15,1,1,67,68,[[421,1,1,67,68]]],[17,4,4,68,72,[[440,1,1,68,69],[471,1,1,69,70],[473,1,1,70,71],[476,1,1,71,72]]],[18,3,3,72,75,[[486,1,1,72,73],[512,1,1,73,74],[536,1,1,74,75]]],[19,4,4,75,79,[[632,1,1,75,76],[633,1,1,76,77],[638,1,1,77,78],[643,1,1,78,79]]],[20,1,1,79,80,[[665,1,1,79,80]]],[22,4,4,80,84,[[686,1,1,80,81],[698,1,1,81,82],[702,1,1,82,83],[706,1,1,83,84]]],[23,22,21,84,105,[[749,1,1,84,85],[750,1,1,85,86],[752,1,1,86,87],[762,1,1,87,88],[776,3,3,88,91],[778,1,1,91,92],[781,1,1,92,93],[782,3,2,93,95],[792,4,4,95,99],[794,3,3,99,102],[795,3,3,102,105]]],[24,1,1,105,106,[[800,1,1,105,106]]],[26,2,2,106,108,[[860,2,2,106,108]]],[29,3,2,108,110,[[881,3,2,108,110]]],[34,1,1,110,111,[[903,1,1,110,111]]],[37,1,1,111,112,[[924,1,1,111,112]]]],[4372,4757,4759,4760,4972,4973,4979,5969,5990,5991,5992,5993,5994,6021,6023,6065,6092,6096,6099,6101,6103,6106,6117,6119,6124,6218,6219,6368,6517,6521,6522,6527,6596,6718,6719,6731,6733,6799,6804,6874,6933,7438,7439,7549,7550,7555,8139,8213,8312,8313,8314,8315,9067,9301,9867,9989,10034,10678,10894,11441,11472,11498,11525,11653,11782,11893,11919,12536,12964,13744,13823,13905,14036,14418,14802,16539,16542,16694,16872,17455,17822,18030,18113,18177,19084,19100,19162,19406,19734,19755,19759,19823,19882,19898,19923,20081,20087,20121,20124,20168,20175,20190,20243,20253,20268,20440,22051,22054,22399,22400,22741,23070]]],["+",[30,29,[[3,2,2,0,2,[[148,2,2,0,2]]],[4,2,2,2,4,[[154,1,1,2,3],[155,1,1,3,4]]],[5,5,5,4,9,[[192,1,1,4,5],[193,1,1,5,6],[194,1,1,6,7],[196,1,1,7,8],[197,1,1,8,9]]],[6,6,6,9,15,[[211,1,1,9,10],[213,1,1,10,11],[217,1,1,11,12],[218,1,1,12,13],[219,1,1,13,14],[222,1,1,14,15]]],[9,4,4,15,19,[[271,1,1,15,16],[278,3,3,16,19]]],[10,1,1,19,20,[[299,1,1,19,20]]],[11,1,1,20,21,[[329,1,1,20,21]]],[12,1,1,21,22,[[348,1,1,21,22]]],[13,4,4,22,26,[[378,1,1,22,23],[394,1,1,23,24],[398,1,1,24,25],[399,1,1,25,26]]],[19,2,2,26,28,[[632,1,1,26,27],[643,1,1,27,28]]],[29,2,1,28,29,[[881,2,1,28,29]]]],[4759,4760,4972,4979,5969,5993,6023,6065,6117,6527,6596,6718,6731,6799,6874,8139,8312,8313,8314,9067,9989,10678,11441,11782,11893,11919,16539,16872,22400]]],["catch",[2,2,[[18,1,1,0,1,[[512,1,1,0,1]]],[23,1,1,1,2,[[749,1,1,1,2]]]],[14418,19084]]],["caught",[3,3,[[6,2,2,0,2,[[218,1,1,0,1],[225,1,1,1,2]]],[13,1,1,2,3,[[388,1,1,2,3]]]],[6733,6933,11653]]],["frozen",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13823]]],["holden",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13744]]],["take",[16,15,[[5,4,3,0,3,[[193,2,1,0,1],[196,1,1,1,2],[197,1,1,2,3]]],[6,1,1,3,4,[[217,1,1,3,4]]],[9,1,1,4,5,[[278,1,1,4,5]]],[23,7,7,5,12,[[762,1,1,5,6],[776,3,3,6,9],[778,1,1,9,10],[781,1,1,10,11],[782,1,1,11,12]]],[26,2,2,12,14,[[860,2,2,12,14]]],[34,1,1,14,15,[[903,1,1,14,15]]]],[5990,6106,6119,6718,8314,19406,19734,19755,19759,19823,19882,19898,22051,22054,22741]]],["taken",[39,37,[[5,4,4,0,4,[[193,4,4,0,4]]],[6,1,1,4,5,[[211,1,1,4,5]]],[8,5,4,5,9,[[245,3,2,5,7],[249,2,2,7,9]]],[10,1,1,9,10,[[306,1,1,9,10]]],[11,1,1,10,11,[[330,1,1,10,11]]],[13,2,2,11,13,[[381,1,1,11,12],[383,1,1,12,13]]],[18,2,2,13,15,[[486,1,1,13,14],[536,1,1,14,15]]],[19,2,2,15,17,[[633,1,1,15,16],[638,1,1,16,17]]],[20,1,1,17,18,[[665,1,1,17,18]]],[22,3,3,18,21,[[686,1,1,18,19],[702,1,1,19,20],[706,1,1,20,21]]],[23,14,13,21,34,[[750,1,1,21,22],[752,1,1,22,23],[782,2,1,23,24],[792,4,4,24,28],[794,3,3,28,31],[795,3,3,31,34]]],[24,1,1,34,35,[[800,1,1,34,35]]],[29,1,1,35,36,[[881,1,1,35,36]]],[37,1,1,36,37,[[924,1,1,36,37]]]],[5991,5992,5993,5994,6517,7438,7439,7549,7550,9301,10034,11498,11525,14036,14802,16542,16694,17455,17822,18113,18177,19100,19162,19923,20081,20087,20121,20124,20168,20175,20190,20243,20253,20268,20440,22399,23070]]],["taketh",[4,4,[[5,2,2,0,2,[[193,1,1,0,1],[201,1,1,1,2]]],[6,1,1,2,3,[[211,1,1,2,3]]],[17,1,1,3,4,[[440,1,1,3,4]]]],[5990,6218,6521,12964]]],["together",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13905]]],["took",[24,24,[[3,2,2,0,2,[[137,1,1,0,1],[148,1,1,1,2]]],[4,1,1,2,3,[[154,1,1,2,3]]],[5,9,9,3,12,[[194,1,1,3,4],[196,5,5,4,9],[197,1,1,9,10],[201,1,1,10,11],[205,1,1,11,12]]],[6,3,3,12,15,[[211,1,1,12,13],[217,1,1,13,14],[219,1,1,14,15]]],[8,1,1,15,16,[[249,1,1,15,16]]],[9,2,2,16,18,[[274,1,1,16,17],[278,1,1,17,18]]],[11,2,2,18,20,[[324,1,1,18,19],[330,1,1,19,20]]],[12,1,1,20,21,[[355,1,1,20,21]]],[13,1,1,21,22,[[379,1,1,21,22]]],[15,1,1,22,23,[[421,1,1,22,23]]],[22,1,1,23,24,[[698,1,1,23,24]]]],[4372,4757,4973,6021,6092,6096,6099,6101,6103,6124,6219,6368,6522,6719,6804,7555,8213,8315,9867,10034,10894,11472,12536,18030]]]]},{"k":"H3921","v":[["+",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16481]]]]},{"k":"H3922","v":[["Lecah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10406]]]]},{"k":"H3923","v":[["*",[24,22,[[5,10,10,0,10,[[196,8,8,0,8],[198,1,1,8,9],[201,1,1,9,10]]],[11,5,4,10,14,[[326,2,1,10,11],[330,2,2,11,13],[331,1,1,13,14]]],[13,4,3,14,17,[[377,1,1,14,15],[391,2,1,15,16],[398,1,1,16,17]]],[15,1,1,17,18,[[423,1,1,17,18]]],[22,2,2,18,20,[[714,1,1,18,19],[715,1,1,19,20]]],[23,1,1,20,21,[[778,1,1,20,21]]],[32,1,1,21,22,[[893,1,1,21,22]]]],[6067,6069,6087,6095,6096,6097,6098,6099,6141,6241,9915,10038,10041,10069,11423,11731,11884,12618,18332,18360,19808,22592]]],["+",[4,4,[[5,1,1,0,1,[[196,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[22,2,2,2,4,[[714,1,1,2,3],[715,1,1,3,4]]]],[6098,10069,18332,18360]]],["Lachish",[20,18,[[5,9,9,0,9,[[196,7,7,0,7],[198,1,1,7,8],[201,1,1,8,9]]],[11,4,3,9,12,[[326,2,1,9,10],[330,2,2,10,12]]],[13,4,3,12,15,[[377,1,1,12,13],[391,2,1,13,14],[398,1,1,14,15]]],[15,1,1,15,16,[[423,1,1,15,16]]],[23,1,1,16,17,[[778,1,1,16,17]]],[32,1,1,17,18,[[893,1,1,17,18]]]],[6067,6069,6087,6095,6096,6097,6099,6141,6241,9915,10038,10041,11423,11731,11884,12618,19808,22592]]]]},{"k":"H3924","v":[["loops",[13,7,[[1,13,7,0,7,[[75,7,4,0,4],[85,6,3,4,7]]]],[2239,2240,2245,2246,2577,2578,2583]]]]},{"k":"H3925","v":[["*",[85,79,[[4,17,16,0,16,[[156,5,4,0,4],[157,2,2,4,6],[158,1,1,6,7],[163,1,1,7,8],[166,1,1,8,9],[169,1,1,9,10],[170,1,1,10,11],[172,1,1,11,12],[183,4,4,12,16]]],[6,1,1,16,17,[[213,1,1,16,17]]],[9,2,2,17,19,[[267,1,1,17,18],[288,1,1,18,19]]],[12,2,2,19,21,[[342,1,1,19,20],[362,1,1,20,21]]],[13,3,2,21,23,[[383,3,2,21,23]]],[14,1,1,23,24,[[409,1,1,23,24]]],[17,1,1,24,25,[[456,1,1,24,25]]],[18,26,26,25,51,[[495,1,1,25,26],[502,3,3,26,29],[511,1,1,29,30],[528,1,1,30,31],[548,1,1,31,32],[571,2,2,32,34],[583,1,1,34,35],[596,13,13,35,48],[609,1,1,48,49],[620,1,1,49,50],[621,1,1,50,51]]],[19,2,2,51,53,[[632,1,1,51,52],[657,1,1,52,53]]],[20,1,1,53,54,[[670,1,1,53,54]]],[21,2,2,54,56,[[673,1,1,54,55],[678,1,1,55,56]]],[22,9,8,56,64,[[679,1,1,56,57],[680,1,1,57,58],[704,2,2,58,60],[707,2,2,60,62],[718,2,1,62,63],[726,1,1,63,64]]],[23,13,10,64,74,[[746,1,1,64,65],[753,3,3,65,68],[754,1,1,68,69],[756,3,1,69,70],[757,1,1,70,71],[775,2,2,71,73],[776,2,1,73,74]]],[25,2,2,74,76,[[820,2,2,74,76]]],[26,1,1,76,77,[[850,1,1,76,77]]],[27,1,1,77,78,[[871,1,1,77,78]]],[32,1,1,78,79,[[896,1,1,78,79]]]],[5005,5009,5014,5018,5054,5084,5087,5227,5313,5383,5393,5445,5740,5741,5747,5750,6570,8040,8637,10446,11053,11530,11532,12183,13377,14152,14255,14256,14260,14399,14704,14993,15441,15443,15686,15905,15910,15924,15962,15964,15966,15969,15971,15997,16006,16022,16033,16069,16163,16303,16306,16530,17254,17532,17579,17642,17671,17689,18139,18140,18206,18217,18434,18631,18998,19180,19189,19195,19203,19265,19287,19709,19725,19764,20884,20887,21741,22236,22623]]],["+",[6,4,[[20,1,1,0,1,[[670,1,1,0,1]]],[23,5,3,1,4,[[746,1,1,1,2],[756,3,1,2,3],[775,1,1,3,4]]]],[17532,18998,19265,19709]]],["Learn",[2,2,[[22,1,1,0,1,[[679,1,1,0,1]]],[23,1,1,1,2,[[754,1,1,1,2]]]],[17671,19203]]],["Teach",[2,2,[[18,2,2,0,2,[[596,1,1,0,1],[620,1,1,1,2]]]],[15964,16303]]],["expert",[1,1,[[21,1,1,0,1,[[673,1,1,0,1]]]],[17579]]],["instruct",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17642]]],["instructed",[2,2,[[12,1,1,0,1,[[362,1,1,0,1]]],[19,1,1,1,2,[[632,1,1,1,2]]]],[11053,16530]]],["learn",[14,14,[[4,7,7,0,7,[[156,1,1,0,1],[157,1,1,1,2],[166,1,1,2,3],[169,1,1,3,4],[170,1,1,4,5],[183,2,2,5,7]]],[18,2,2,7,9,[[596,2,2,7,9]]],[22,4,4,9,13,[[680,1,1,9,10],[704,2,2,10,12],[707,1,1,12,13]]],[32,1,1,13,14,[[896,1,1,13,14]]]],[5014,5054,5313,5383,5393,5740,5741,15969,15971,17689,18139,18140,18217,22623]]],["learned",[5,5,[[18,2,2,0,2,[[583,1,1,0,1],[596,1,1,1,2]]],[19,1,1,2,3,[[657,1,1,2,3]]],[25,2,2,3,5,[[820,2,2,3,5]]]],[15686,15905,17254,20884,20887]]],["skilful",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10446]]],["taught",[14,12,[[4,2,2,0,2,[[156,1,1,0,1],[183,1,1,1,2]]],[13,2,1,2,3,[[383,2,1,2,3]]],[18,2,2,3,5,[[548,1,1,3,4],[596,1,1,4,5]]],[22,3,2,5,7,[[707,1,1,5,6],[718,2,1,6,7]]],[23,4,4,7,11,[[753,2,2,7,9],[757,1,1,9,10],[776,1,1,10,11]]],[27,1,1,11,12,[[871,1,1,11,12]]]],[5009,5750,11532,14993,16069,18206,18434,19180,19189,19287,19764,22236]]],["teach",[29,29,[[4,8,8,0,8,[[156,3,3,0,3],[157,1,1,3,4],[158,1,1,4,5],[163,1,1,5,6],[172,1,1,6,7],[183,1,1,7,8]]],[6,1,1,8,9,[[213,1,1,8,9]]],[9,1,1,9,10,[[267,1,1,9,10]]],[13,1,1,10,11,[[383,1,1,10,11]]],[14,1,1,11,12,[[409,1,1,11,12]]],[17,1,1,12,13,[[456,1,1,12,13]]],[18,13,13,13,26,[[502,3,3,13,16],[511,1,1,16,17],[528,1,1,17,18],[596,7,7,18,25],[609,1,1,25,26]]],[23,2,2,26,28,[[753,1,1,26,27],[775,1,1,27,28]]],[26,1,1,28,29,[[850,1,1,28,29]]]],[5005,5014,5018,5084,5087,5227,5445,5747,6570,8040,11530,12183,13377,14255,14256,14260,14399,14704,15910,15924,15962,15966,16006,16022,16033,16163,19195,19725,21741]]],["teachers",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15997]]],["teachest",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15443]]],["teacheth",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,3,3,1,4,[[495,1,1,1,2],[571,1,1,2,3],[621,1,1,3,4]]],[22,1,1,4,5,[[726,1,1,4,5]]]],[8637,14152,15441,16306,18631]]],["teaching",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19764]]]]},{"k":"H3926","v":[["*",[7,7,[[17,6,6,0,6,[[441,1,1,0,1],[449,1,1,1,2],[462,1,1,2,3],[464,1,1,3,4],[473,1,1,4,5],[475,1,1,5,6]]],[18,1,1,6,7,[[533,1,1,6,7]]]],[12997,13202,13495,13553,13833,13868,14762]]],["+",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13833]]],["at",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13553]]],["for",[2,2,[[17,2,2,0,2,[[441,1,1,0,1],[462,1,1,1,2]]]],[12997,13495]]],["them",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13202]]],["they",[1,1,[[18,1,1,0,1,[[533,1,1,0,1]]]],[14762]]],["upon",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13868]]]]},{"k":"H3927","v":[["Lemuel",[2,2,[[19,2,2,0,2,[[658,2,2,0,2]]]],[17285,17288]]]]},{"k":"H3928","v":[["*",[6,5,[[22,4,3,0,3,[[686,1,1,0,1],[728,2,1,1,2],[732,1,1,2,3]]],[23,2,2,3,5,[[746,1,1,3,4],[757,1,1,4,5]]]],[17823,18666,18736,18989,19289]]],["accustomed",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19289]]],["disciples",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17823]]],["learned",[2,1,[[22,2,1,0,1,[[728,2,1,0,1]]]],[18666]]],["taught",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18736]]],["used",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18989]]]]},{"k":"H3929","v":[["Lamech",[11,10,[[0,10,9,0,9,[[3,5,4,0,4],[4,5,5,4,9]]],[12,1,1,9,10,[[338,1,1,9,10]]]],[97,98,102,103,130,131,133,135,136,10255]]]]},{"k":"H3930","v":[["throat",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17046]]]]},{"k":"H3931","v":[["+",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[12009]]]]},{"k":"H3932","v":[["*",[18,18,[[11,1,1,0,1,[[331,1,1,0,1]]],[13,1,1,1,2,[[396,1,1,1,2]]],[15,2,2,2,4,[[414,1,1,2,3],[416,1,1,3,4]]],[17,4,4,4,8,[[444,1,1,4,5],[446,1,1,5,6],[456,1,1,6,7],[457,1,1,7,8]]],[18,4,4,8,12,[[479,1,1,8,9],[499,1,1,9,10],[536,1,1,10,11],[557,1,1,11,12]]],[19,3,3,12,15,[[628,1,1,12,13],[644,1,1,13,14],[657,1,1,14,15]]],[22,2,2,15,17,[[711,1,1,15,16],[715,1,1,16,17]]],[23,1,1,17,18,[[764,1,1,17,18]]]],[10082,11837,12326,12360,13074,13111,13358,13408,13949,14211,14798,15204,16426,16878,17268,18298,18374,19429]]],["+",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12360]]],["derision",[2,2,[[18,2,2,0,2,[[479,1,1,0,1],[536,1,1,1,2]]]],[13949,14798]]],["laugh",[3,3,[[17,1,1,0,1,[[444,1,1,0,1]]],[18,2,2,1,3,[[499,1,1,1,2],[557,1,1,2,3]]]],[13074,14211,15204]]],["mock",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16426]]],["mocked",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11837]]],["mockest",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13111]]],["mocketh",[3,3,[[19,2,2,0,2,[[644,1,1,0,1],[657,1,1,1,2]]],[23,1,1,2,3,[[764,1,1,2,3]]]],[16878,17268,19429]]],["on",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13358]]],["scorn",[4,4,[[11,1,1,0,1,[[331,1,1,0,1]]],[15,1,1,1,2,[[414,1,1,1,2]]],[17,1,1,2,3,[[457,1,1,2,3]]],[22,1,1,3,4,[[715,1,1,3,4]]]],[10082,12326,13408,18374]]],["stammering",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18298]]]]},{"k":"H3933","v":[["*",[7,7,[[17,1,1,0,1,[[469,1,1,0,1]]],[18,3,3,1,4,[[521,1,1,1,2],[556,1,1,2,3],[600,1,1,3,4]]],[25,2,2,4,6,[[824,1,1,4,5],[837,1,1,5,6]]],[27,1,1,6,7,[[868,1,1,6,7]]]],[13690,14584,15189,16102,21039,21363,22194]]],["derision",[3,3,[[25,2,2,0,2,[[824,1,1,0,1],[837,1,1,1,2]]],[27,1,1,2,3,[[868,1,1,2,3]]]],[21039,21363,22194]]],["scorn",[2,2,[[18,2,2,0,2,[[521,1,1,0,1],[556,1,1,1,2]]]],[14584,15189]]],["scorning",[2,2,[[17,1,1,0,1,[[469,1,1,0,1]]],[18,1,1,1,2,[[600,1,1,1,2]]]],[13690,16102]]]]},{"k":"H3934","v":[["*",[2,2,[[18,1,1,0,1,[[512,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]]],[14426,18175]]],["mockers",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14426]]],["stammering",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18175]]]]},{"k":"H3935","v":[["Laadah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10406]]]]},{"k":"H3936","v":[["Laadan",[7,5,[[12,7,5,0,5,[[344,1,1,0,1],[360,3,3,1,4],[363,3,1,4,5]]]],[10561,10990,10991,10992,11098]]]]},{"k":"H3937","v":[["language",[1,1,[[18,1,1,0,1,[[591,1,1,0,1]]]],[15823]]]]},{"k":"H3938","v":[["Feed",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[688]]]]},{"k":"H3939","v":[["*",[8,8,[[4,1,1,0,1,[[181,1,1,0,1]]],[19,1,1,1,2,[[632,1,1,1,2]]],[23,2,2,2,4,[[753,1,1,2,3],[767,1,1,3,4]]],[24,2,2,4,6,[[799,2,2,4,6]]],[29,2,2,6,8,[[883,1,1,6,7],[884,1,1,7,8]]]],[5697,16521,19190,19499,20369,20373,22430,22462]]],["hemlock",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22462]]],["wormwood",[7,7,[[4,1,1,0,1,[[181,1,1,0,1]]],[19,1,1,1,2,[[632,1,1,1,2]]],[23,2,2,2,4,[[753,1,1,2,3],[767,1,1,3,4]]],[24,2,2,4,6,[[799,2,2,4,6]]],[29,1,1,6,7,[[883,1,1,6,7]]]],[5697,16521,19190,19499,20369,20373,22430]]]]},{"k":"H3940","v":[["*",[14,13,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,1,1,1,2,[[69,1,1,1,2]]],[6,5,4,2,6,[[217,2,2,2,4],[225,3,2,4,6]]],[17,2,2,6,8,[[447,1,1,6,7],[476,1,1,7,8]]],[22,1,1,8,9,[[740,1,1,8,9]]],[25,1,1,9,10,[[802,1,1,9,10]]],[26,1,1,10,11,[[859,1,1,10,11]]],[33,1,1,11,12,[[901,1,1,11,12]]],[37,1,1,12,13,[[922,1,1,12,13]]]],[377,2069,6710,6714,6933,6934,13133,13907,18855,20477,22021,22703,23051]]],["brands",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6934]]],["firebrand",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6933]]],["firebrands",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6933]]],["lamp",[3,3,[[0,1,1,0,1,[[14,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[22,1,1,2,3,[[740,1,1,2,3]]]],[377,13133,18855]]],["lamps",[5,5,[[6,2,2,0,2,[[217,2,2,0,2]]],[17,1,1,2,3,[[476,1,1,2,3]]],[25,1,1,3,4,[[802,1,1,3,4]]],[26,1,1,4,5,[[859,1,1,4,5]]]],[6710,6714,13907,20477,22021]]],["lightnings",[1,1,[[1,1,1,0,1,[[69,1,1,0,1]]]],[2069]]],["torch",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23051]]],["torches",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22703]]]]},{"k":"H3941","v":[["Lapidoth",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6603]]]]},{"k":"H3942","v":[["before",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8913]]]]},{"k":"H3943","v":[["*",[3,3,[[6,1,1,0,1,[[226,1,1,0,1]]],[7,1,1,1,2,[[234,1,1,1,2]]],[17,1,1,2,3,[[441,1,1,2,3]]]],[6978,7180,12996]]],["aside",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12996]]],["himself",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7180]]],["hold",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6978]]]]},{"k":"H3944","v":[["*",[3,3,[[19,2,2,0,2,[[628,1,1,0,1],[656,1,1,1,2]]],[22,1,1,2,3,[[706,1,1,2,3]]]],[16422,17232,18178]]],["Scornful",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17232]]],["scornful",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18178]]],["scorning",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16422]]]]},{"k":"H3945","v":[["scorners",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22183]]]]},{"k":"H3946","v":[["Lakum",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6354]]]]},{"k":"H3947","v":[["*",[966,909,[[0,142,134,0,134,[[1,4,4,0,4],[2,4,4,4,8],[3,2,2,8,10],[4,1,1,10,11],[5,2,2,11,13],[6,1,1,13,14],[7,2,2,14,16],[8,1,1,16,17],[10,2,2,17,19],[11,4,3,19,22],[13,5,5,22,27],[14,2,2,27,29],[15,1,1,29,30],[16,1,1,30,31],[17,4,4,31,35],[18,2,2,35,37],[19,3,3,37,40],[20,4,4,40,44],[21,6,5,44,49],[22,1,1,49,50],[23,14,13,50,63],[24,2,2,63,65],[25,1,1,65,66],[26,9,8,66,74],[27,7,6,74,80],[28,1,1,80,81],[29,4,3,81,84],[30,7,7,84,91],[31,3,3,91,94],[32,3,2,94,96],[33,9,9,96,105],[35,2,2,105,107],[36,2,2,107,109],[37,5,5,109,114],[38,1,1,114,115],[39,1,1,115,116],[41,4,4,116,120],[42,6,5,120,125],[43,1,1,125,126],[44,2,2,126,128],[45,1,1,128,129],[46,1,1,129,130],[47,4,4,130,134]]],[1,80,76,134,210,[[51,4,4,134,138],[53,6,4,138,142],[54,1,1,142,143],[55,4,4,143,147],[56,3,3,147,150],[58,3,3,150,153],[59,1,1,153,154],[61,7,7,154,161],[62,1,1,161,162],[63,3,3,162,165],[64,1,1,165,166],[65,2,2,166,168],[66,3,2,168,170],[67,2,2,170,172],[70,2,2,172,174],[71,1,1,174,175],[72,1,1,175,176],[73,3,3,176,179],[74,3,2,179,181],[76,1,1,181,182],[77,2,2,182,184],[78,14,14,184,198],[79,3,3,198,201],[81,2,2,201,203],[82,1,1,203,204],[83,2,2,204,206],[84,1,1,206,207],[85,1,1,207,208],[89,2,2,208,210]]],[2,56,53,210,263,[[93,4,4,210,214],[96,1,1,214,215],[97,10,10,215,225],[98,4,4,225,229],[99,2,2,229,231],[101,1,1,231,232],[103,13,12,232,244],[104,2,2,244,246],[105,5,5,246,251],[107,2,2,251,253],[109,3,3,253,256],[110,5,3,256,259],[112,1,1,259,260],[113,2,2,260,262],[114,1,1,262,263]]],[3,70,65,263,328,[[117,1,1,263,264],[119,7,6,264,270],[120,2,2,270,272],[121,3,2,272,274],[122,2,2,274,276],[123,2,2,276,278],[124,5,4,278,282],[127,1,1,282,283],[128,2,1,283,284],[129,1,1,284,285],[132,7,7,285,292],[133,2,2,292,294],[134,3,3,294,297],[135,5,5,297,302],[136,3,3,302,305],[137,2,2,305,307],[138,1,1,307,308],[139,5,5,308,313],[141,2,2,313,315],[143,2,2,315,317],[147,6,6,317,323],[150,4,3,323,326],[151,2,2,326,328]]],[4,45,43,328,371,[[153,3,3,328,331],[155,3,3,331,334],[156,2,2,334,336],[159,2,2,336,338],[161,2,2,338,340],[162,1,1,340,341],[167,1,1,341,342],[168,1,1,342,343],[171,1,1,343,344],[172,2,1,344,345],[173,2,2,345,347],[174,7,7,347,354],[176,6,5,354,359],[177,3,3,359,362],[178,2,2,362,364],[179,1,1,364,365],[181,1,1,365,366],[182,3,3,366,369],[183,1,1,369,370],[184,1,1,370,371]]],[5,22,22,371,393,[[188,1,1,371,372],[189,1,1,372,373],[190,2,2,373,375],[192,1,1,375,376],[193,5,5,376,381],[194,2,2,381,383],[195,3,3,383,386],[197,3,3,386,389],[199,1,1,389,390],[204,1,1,390,391],[210,2,2,391,393]]],[6,44,41,393,434,[[213,3,3,393,396],[214,2,2,396,398],[215,1,1,398,399],[216,4,4,399,403],[217,1,1,403,404],[218,2,2,404,406],[219,2,2,406,408],[221,3,3,408,411],[223,2,2,411,413],[224,6,5,413,418],[225,3,3,418,421],[226,1,1,421,422],[227,3,2,422,424],[228,5,5,424,429],[229,3,3,429,432],[230,2,1,432,433],[231,1,1,433,434]]],[7,3,3,434,437,[[235,3,3,434,437]]],[8,80,76,437,513,[[237,4,3,437,440],[239,6,6,440,446],[240,3,3,446,449],[241,3,3,449,452],[242,3,3,452,455],[243,5,5,455,460],[244,2,2,460,462],[245,3,3,462,465],[246,1,1,465,466],[247,4,2,466,468],[249,1,1,468,469],[250,1,1,469,470],[251,5,5,470,475],[252,8,8,475,483],[253,1,1,483,484],[254,3,3,484,487],[255,2,2,487,489],[256,4,3,489,492],[259,2,2,492,494],[260,6,6,494,500],[261,3,3,500,503],[262,1,1,503,504],[263,1,1,504,505],[265,5,5,505,510],[266,3,3,510,513]]],[9,39,38,513,551,[[267,1,1,513,514],[268,2,2,514,516],[269,1,1,516,517],[270,3,3,517,520],[271,1,1,520,521],[273,1,1,521,522],[274,3,3,522,525],[275,1,1,525,526],[276,1,1,526,527],[277,1,1,527,528],[278,6,5,528,533],[279,4,4,533,537],[280,1,1,537,538],[283,1,1,538,539],[284,3,3,539,542],[285,1,1,542,543],[286,2,2,543,545],[287,3,3,545,548],[288,1,1,548,549],[289,1,1,549,550],[290,1,1,550,551]]],[10,38,35,551,586,[[291,2,2,551,553],[293,3,3,553,556],[294,1,1,556,557],[297,2,2,557,559],[299,1,1,559,560],[300,1,1,560,561],[301,5,5,561,566],[304,4,2,566,568],[305,1,1,568,569],[306,1,1,569,570],[307,5,4,570,574],[308,3,3,574,577],[309,4,4,577,581],[310,3,3,581,584],[312,2,2,584,586]]],[11,72,64,586,650,[[314,8,7,586,593],[315,3,3,593,596],[316,3,3,596,599],[317,10,7,599,606],[318,3,3,606,609],[319,2,2,609,611],[320,3,3,611,614],[321,4,4,614,618],[322,2,2,618,620],[323,4,4,620,624],[324,5,5,624,629],[325,6,3,629,632],[326,2,2,632,634],[327,1,1,634,635],[328,1,1,635,636],[330,1,1,636,637],[331,1,1,637,638],[332,3,2,638,640],[335,3,3,640,643],[336,2,2,643,645],[337,5,5,645,650]]],[12,15,15,650,665,[[339,3,3,650,653],[341,1,1,653,654],[344,2,2,654,656],[347,1,1,656,657],[351,1,1,657,658],[354,1,1,658,659],[355,3,3,659,662],[356,1,1,662,663],[357,1,1,663,664],[358,1,1,664,665]]],[13,16,14,665,679,[[367,1,1,665,666],[374,1,1,666,667],[377,2,2,667,669],[378,3,1,669,670],[382,1,1,670,671],[384,1,1,671,672],[388,1,1,672,673],[389,3,3,673,676],[392,1,1,676,677],[402,2,2,677,679]]],[14,1,1,679,680,[[404,1,1,679,680]]],[15,7,7,680,687,[[417,3,3,680,683],[418,1,1,683,684],[419,1,1,684,685],[422,2,2,685,687]]],[16,6,6,687,693,[[427,4,4,687,691],[431,2,2,691,693]]],[17,17,17,693,710,[[436,3,3,693,696],[437,1,1,696,697],[438,1,1,697,698],[439,1,1,698,699],[440,1,1,699,700],[447,1,1,700,701],[450,1,1,701,702],[457,1,1,702,703],[462,1,1,703,704],[463,1,1,704,705],[470,1,1,705,706],[473,1,1,706,707],[475,1,1,707,708],[476,1,1,708,709],[477,1,1,709,710]]],[18,13,13,710,723,[[483,1,1,710,711],[492,1,1,711,712],[495,1,1,712,713],[508,1,1,713,714],[526,2,2,714,716],[527,1,1,716,717],[528,1,1,717,718],[545,1,1,718,719],[550,1,1,719,720],[552,1,1,720,721],[555,1,1,721,722],[586,1,1,722,723]]],[19,19,19,723,742,[[628,2,2,723,725],[629,1,1,725,726],[631,1,1,726,727],[633,1,1,727,728],[634,1,1,728,729],[635,1,1,729,730],[636,1,1,730,731],[637,1,1,731,732],[638,1,1,732,733],[644,1,1,733,734],[647,1,1,734,735],[648,1,1,735,736],[649,2,2,736,738],[651,2,2,738,740],[654,1,1,740,741],[658,1,1,741,742]]],[22,21,21,742,763,[[684,1,1,742,743],[686,1,1,743,744],[692,1,1,744,745],[701,1,1,745,746],[706,1,1,746,747],[714,1,1,747,748],[715,1,1,748,749],[717,1,1,749,750],[718,1,1,750,751],[722,2,2,751,753],[725,2,2,753,755],[727,2,2,755,757],[729,1,1,757,758],[730,1,1,758,759],[731,1,1,759,760],[734,1,1,760,761],[735,1,1,761,762],[744,1,1,762,763]]],[23,65,61,763,824,[[746,1,1,763,764],[747,1,1,764,765],[749,1,1,765,766],[751,1,1,766,767],[753,1,1,767,768],[757,3,3,768,771],[759,1,1,771,772],[760,1,1,772,773],[761,1,1,773,774],[764,2,2,774,776],[767,1,1,776,777],[769,4,4,777,781],[771,1,1,781,782],[772,2,2,782,784],[773,3,2,784,786],[776,3,3,786,789],[777,1,1,789,790],[779,2,2,790,792],[780,8,6,792,798],[781,1,1,798,799],[782,5,4,799,803],[783,3,3,803,806],[784,2,2,806,808],[785,2,2,808,810],[787,3,3,810,813],[788,1,1,813,814],[790,1,1,814,815],[792,1,1,815,816],[793,1,1,816,817],[795,2,2,817,819],[796,5,5,819,824]]],[25,65,56,824,880,[[802,1,1,824,825],[804,2,2,825,827],[805,3,3,827,830],[806,6,4,830,834],[809,1,1,834,835],[811,2,2,835,837],[816,2,1,837,838],[817,7,7,838,845],[818,7,5,845,850],[819,3,3,850,853],[820,1,1,853,854],[823,3,2,854,856],[824,4,4,856,860],[825,3,3,860,863],[828,1,1,863,864],[831,1,1,864,865],[834,4,3,865,868],[837,2,2,868,870],[838,4,3,870,873],[839,1,1,873,874],[844,2,2,874,876],[845,2,1,876,877],[846,2,2,877,879],[847,1,1,879,880]]],[27,9,8,880,888,[[862,2,2,880,882],[863,1,1,882,883],[865,1,1,883,884],[871,1,1,884,885],[872,1,1,885,886],[874,1,1,886,887],[875,2,1,887,888]]],[28,1,1,888,889,[[878,1,1,888,889]]],[29,6,6,889,895,[[883,2,2,889,891],[884,1,1,891,892],[885,1,1,892,893],[887,2,2,893,895]]],[31,1,1,895,896,[[892,1,1,895,896]]],[32,2,2,896,898,[[893,1,1,896,897],[894,1,1,897,898]]],[35,2,2,898,900,[[908,2,2,898,900]]],[36,1,1,900,901,[[910,1,1,900,901]]],[37,7,7,901,908,[[916,2,2,901,903],[921,4,4,903,907],[924,1,1,907,908]]],[38,1,1,908,909,[[926,1,1,908,909]]]],[45,51,52,53,61,74,77,78,90,98,129,139,158,161,192,203,228,295,297,303,313,317,347,348,357,359,360,369,370,384,420,428,429,431,432,471,472,497,498,509,527,534,540,543,549,550,553,557,560,584,594,595,598,601,613,628,629,631,639,642,652,656,658,659,678,726,736,740,741,742,762,763,772,773,774,775,779,782,784,791,818,839,845,867,874,896,905,907,918,919,923,941,950,951,970,971,982,984,989,996,997,1001,1005,1006,1008,1042,1046,1107,1114,1121,1125,1139,1142,1147,1169,1183,1268,1276,1285,1288,1301,1302,1303,1305,1308,1353,1376,1377,1392,1422,1452,1460,1464,1473,1555,1557,1559,1563,1610,1618,1621,1626,1643,1662,1675,1678,1680,1694,1700,1704,1750,1752,1766,1803,1819,1820,1821,1823,1837,1838,1848,1886,1895,1896,1900,1940,1963,1980,1988,1995,2001,2011,2087,2091,2124,2152,2183,2184,2185,2197,2198,2292,2298,2302,2337,2341,2343,2348,2349,2351,2352,2355,2356,2357,2358,2361,2362,2367,2398,2405,2416,2442,2458,2480,2500,2512,2536,2569,2716,2727,2800,2820,2825,2829,2913,2919,2927,2932,2933,2940,2942,2943,2945,2946,2947,2955,2956,2958,2968,2978,2989,3052,3115,3117,3121,3123,3125,3126,3132,3135,3136,3153,3160,3162,3182,3197,3206,3208,3213,3215,3219,3268,3269,3332,3335,3339,3352,3358,3359,3442,3448,3451,3505,3621,3704,3733,3737,3739,3741,3742,3752,3755,3809,3817,3841,3842,3855,3856,3945,3947,3955,3957,4040,4060,4095,4195,4200,4211,4212,4233,4240,4241,4246,4253,4263,4283,4285,4291,4293,4295,4306,4307,4319,4320,4336,4365,4366,4416,4427,4430,4436,4443,4444,4475,4478,4572,4576,4675,4693,4694,4711,4715,4718,4830,4831,4834,4876,4877,4907,4915,4917,4979,4983,4989,5024,5038,5114,5136,5166,5178,5203,5336,5361,5418,5434,5450,5458,5476,5477,5483,5484,5485,5488,5500,5526,5528,5529,5530,5544,5552,5554,5555,5568,5570,5610,5687,5712,5720,5721,5754,5769,5873,5905,5912,5930,5967,5977,5987,5997,5999,6000,6003,6014,6041,6048,6051,6123,6126,6130,6162,6300,6479,6502,6574,6589,6593,6605,6620,6642,6674,6679,6680,6681,6702,6735,6740,6797,6802,6834,6842,6844,6903,6907,6911,6912,6917,6920,6928,6933,6935,6944,6961,6982,6984,7010,7011,7013,7017,7020,7025,7052,7053,7064,7124,7192,7203,7206,7254,7255,7256,7300,7308,7314,7316,7318,7319,7320,7321,7322,7338,7339,7341,7361,7364,7366,7372,7380,7382,7383,7385,7394,7413,7419,7422,7441,7452,7463,7464,7540,7581,7597,7606,7608,7615,7618,7635,7636,7649,7658,7667,7669,7672,7675,7678,7719,7720,7726,7751,7761,7778,7780,7781,7841,7850,7872,7879,7896,7900,7901,7904,7916,7917,7927,7939,7966,7989,7994,7996,7997,7998,8013,8021,8022,8032,8057,8070,8096,8126,8127,8132,8145,8188,8210,8216,8217,8232,8244,8263,8290,8295,8296,8297,8316,8325,8326,8327,8336,8358,8468,8492,8495,8496,8541,8557,8560,8588,8590,8592,8619,8659,8714,8750,8756,8817,8836,8840,8859,8942,8947,9079,9107,9126,9139,9142,9143,9145,9221,9244,9267,9314,9327,9328,9336,9340,9345,9367,9372,9391,9397,9401,9408,9414,9441,9442,9483,9506,9554,9556,9559,9560,9561,9565,9571,9591,9602,9603,9604,9632,9644,9652,9662,9663,9667,9670,9671,9673,9676,9681,9687,9720,9721,9735,9736,9742,9757,9759,9769,9773,9799,9800,9831,9833,9838,9848,9855,9857,9858,9859,9868,9886,9889,9896,9910,9917,9954,9971,10056,10075,10105,10116,10181,10195,10199,10209,10214,10236,10237,10240,10241,10242,10325,10327,10329,10403,10550,10556,10663,10777,10870,10891,10897,10898,10911,10928,10957,11210,11364,11432,11434,11446,11515,11567,11655,11657,11664,11676,11733,11994,11997,12088,12384,12385,12397,12419,12483,12579,12580,12731,12732,12739,12740,12803,12804,12884,12886,12890,12899,12910,12942,12956,13148,13215,13411,13494,13506,13727,13813,13888,13892,13930,13994,14092,14134,14344,14663,14665,14677,14702,14918,15044,15073,15183,15763,16403,16419,16434,16500,16565,16595,16612,16645,16664,16718,16896,16970,16995,17040,17042,17090,17111,17182,17300,17775,17808,17930,18093,18183,18347,18366,18419,18422,18547,18548,18601,18602,18660,18661,18695,18701,18719,18765,18778,18943,18995,19016,19061,19147,19195,19270,19272,19273,19330,19338,19380,19427,19432,19515,19543,19549,19551,19562,19616,19621,19628,19641,19657,19742,19745,19764,19801,19826,19836,19844,19856,19863,19868,19870,19874,19891,19901,19905,19906,19909,19928,19935,19937,19942,19943,19969,19973,20002,20006,20007,20022,20056,20126,20156,20220,20238,20294,20295,20300,20301,20302,20468,20512,20516,20530,20532,20538,20547,20548,20549,20550,20607,20639,20640,20757,20778,20779,20780,20782,20794,20801,20823,20828,20830,20837,20838,20847,20857,20862,20866,20886,20988,21001,21017,21032,21033,21036,21061,21072,21081,21126,21208,21282,21284,21286,21383,21389,21413,21416,21418,21438,21592,21593,21621,21648,21649,21673,22096,22097,22114,22144,22231,22243,22277,22284,22348,22434,22435,22463,22479,22497,22498,22571,22590,22604,22822,22827,22878,22957,22958,23035,23038,23041,23043,23089,23116]]],["+",[278,272,[[0,44,42,0,42,[[1,1,1,0,1],[8,1,1,1,2],[10,1,1,2,3],[11,1,1,3,4],[13,2,2,4,6],[15,1,1,6,7],[16,1,1,7,8],[18,1,1,8,9],[19,1,1,9,10],[21,5,4,10,14],[23,3,3,14,17],[24,1,1,17,18],[26,2,2,18,20],[27,1,1,20,21],[28,1,1,21,22],[29,3,2,22,24],[30,3,3,24,27],[31,1,1,27,28],[33,4,4,28,32],[35,2,2,32,34],[36,1,1,34,35],[39,1,1,35,36],[41,1,1,36,37],[42,1,1,37,38],[43,1,1,38,39],[44,1,1,39,40],[45,1,1,40,41],[47,1,1,41,42]]],[1,22,21,42,63,[[53,2,1,42,43],[56,1,1,43,44],[58,1,1,44,45],[62,1,1,45,46],[64,1,1,46,47],[67,1,1,47,48],[73,1,1,48,49],[74,1,1,49,50],[76,1,1,50,51],[77,2,2,51,53],[78,6,6,53,59],[79,1,1,59,60],[81,1,1,60,61],[82,1,1,61,62],[89,1,1,62,63]]],[2,17,17,63,80,[[97,6,6,63,69],[98,2,2,69,71],[99,1,1,71,72],[103,3,3,72,75],[105,1,1,75,76],[107,1,1,76,77],[109,3,3,77,80]]],[3,27,27,80,107,[[117,1,1,80,81],[119,3,3,81,84],[120,1,1,84,85],[121,1,1,85,86],[122,2,2,86,88],[123,1,1,88,89],[124,2,2,89,91],[132,2,2,91,93],[134,1,1,93,94],[135,1,1,94,95],[136,3,3,95,98],[137,2,2,98,100],[138,1,1,100,101],[139,1,1,101,102],[141,1,1,102,103],[143,1,1,103,104],[147,3,3,104,107]]],[4,9,9,107,116,[[153,1,1,107,108],[155,1,1,108,109],[167,1,1,109,110],[174,3,3,110,113],[177,1,1,113,114],[181,1,1,114,115],[183,1,1,115,116]]],[5,6,6,116,122,[[188,1,1,116,117],[193,1,1,117,118],[194,1,1,118,119],[197,2,2,119,121],[210,1,1,121,122]]],[6,24,24,122,146,[[213,3,3,122,125],[214,1,1,125,126],[216,3,3,126,129],[217,1,1,129,130],[218,2,2,130,132],[219,2,2,132,134],[221,3,3,134,137],[223,1,1,137,138],[224,1,1,138,139],[225,1,1,139,140],[228,5,5,140,145],[229,1,1,145,146]]],[7,2,2,146,148,[[235,2,2,146,148]]],[8,22,22,148,170,[[239,1,1,148,149],[240,3,3,149,152],[241,1,1,152,153],[243,1,1,153,154],[244,1,1,154,155],[245,1,1,155,156],[251,2,2,156,158],[252,2,2,158,160],[254,3,3,160,163],[255,1,1,163,164],[260,1,1,164,165],[261,1,1,165,166],[265,1,1,166,167],[266,3,3,167,170]]],[9,16,16,170,186,[[268,1,1,170,171],[270,1,1,171,172],[274,2,2,172,174],[278,3,3,174,177],[279,3,3,177,180],[284,1,1,180,181],[285,1,1,181,182],[286,1,1,182,183],[287,3,3,183,186]]],[10,14,13,186,199,[[291,1,1,186,187],[293,2,2,187,189],[294,1,1,189,190],[297,1,1,190,191],[301,1,1,191,192],[304,2,1,192,193],[305,1,1,193,194],[307,1,1,194,195],[308,1,1,195,196],[309,1,1,196,197],[312,2,2,197,199]]],[11,21,21,199,220,[[314,4,4,199,203],[315,1,1,203,204],[317,2,2,204,206],[322,1,1,206,207],[323,3,3,207,210],[324,1,1,210,211],[326,2,2,211,213],[327,1,1,213,214],[328,1,1,214,215],[330,1,1,215,216],[331,1,1,216,217],[335,2,2,217,219],[337,1,1,219,220]]],[12,6,6,220,226,[[344,1,1,220,221],[347,1,1,221,222],[355,2,2,222,224],[356,1,1,224,225],[357,1,1,225,226]]],[13,10,8,226,234,[[377,1,1,226,227],[378,3,1,227,228],[382,1,1,228,229],[388,1,1,229,230],[389,2,2,230,232],[392,1,1,232,233],[402,1,1,233,234]]],[15,1,1,234,235,[[418,1,1,234,235]]],[16,1,1,235,236,[[431,1,1,235,236]]],[19,1,1,236,237,[[628,1,1,236,237]]],[22,2,2,237,239,[[714,1,1,237,238],[715,1,1,238,239]]],[23,21,21,239,260,[[757,3,3,239,242],[769,2,2,242,244],[772,1,1,244,245],[776,2,2,245,247],[777,1,1,247,248],[779,1,1,248,249],[780,3,3,249,252],[782,2,2,252,254],[783,1,1,254,255],[785,1,1,255,256],[787,2,2,256,258],[788,1,1,258,259],[796,1,1,259,260]]],[25,10,10,260,270,[[806,1,1,260,261],[817,3,3,261,264],[818,2,2,264,266],[838,2,2,266,268],[844,1,1,268,269],[847,1,1,269,270]]],[27,1,1,270,271,[[862,1,1,270,271]]],[37,1,1,271,272,[[921,1,1,271,272]]]],[45,228,297,303,347,348,384,420,472,497,550,553,557,560,639,652,658,678,742,763,791,818,839,845,874,896,907,950,997,1001,1006,1008,1042,1046,1114,1183,1268,1305,1353,1376,1392,1464,1621,1694,1752,1886,1940,2001,2185,2197,2292,2298,2302,2341,2343,2349,2352,2355,2362,2398,2458,2480,2716,2919,2927,2932,2933,2942,2946,2958,2968,2989,3123,3135,3162,3208,3268,3332,3335,3339,3621,3704,3733,3737,3755,3817,3841,3842,3856,3945,3957,4233,4240,4263,4291,4319,4320,4336,4365,4366,4416,4444,4475,4576,4675,4715,4718,4907,4989,5336,5484,5488,5500,5554,5687,5754,5873,6000,6003,6123,6130,6479,6574,6589,6593,6620,6674,6679,6680,6702,6735,6740,6797,6802,6834,6842,6844,6903,6928,6935,7010,7011,7013,7017,7020,7053,7203,7206,7300,7320,7321,7322,7339,7380,7413,7419,7608,7618,7669,7672,7719,7720,7726,7761,7872,7917,7998,8013,8021,8022,8057,8127,8210,8216,8296,8297,8316,8325,8326,8327,8495,8541,8557,8588,8590,8592,8756,8817,8836,8859,8947,9142,9244,9267,9340,9367,9408,9483,9506,9554,9556,9559,9565,9603,9667,9673,9800,9831,9833,9848,9868,9910,9917,9954,9971,10056,10075,10181,10195,10240,10556,10663,10891,10897,10911,10928,11434,11446,11515,11655,11657,11676,11733,11994,12419,12803,16419,18347,18366,19270,19272,19273,19543,19549,19628,19742,19745,19801,19826,19856,19863,19868,19906,19909,19937,19969,20002,20007,20022,20300,20548,20782,20794,20823,20828,20837,21416,21418,21593,21673,22097,23038]]],["Bring",[4,4,[[0,1,1,0,1,[[47,1,1,0,1]]],[10,2,2,1,3,[[293,1,1,1,2],[307,1,1,2,3]]],[11,1,1,3,4,[[314,1,1,3,4]]]],[1460,8840,9328,9571]]],["Fetch",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9327]]],["Get",[2,2,[[0,1,1,0,1,[[33,1,1,0,1]]],[6,1,1,1,2,[[224,1,1,1,2]]]],[984,6912]]],["Receive",[2,2,[[17,1,1,0,1,[[457,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]]],[13411,16612]]],["Take",[50,50,[[0,4,4,0,4,[[14,1,1,0,1],[21,1,1,1,2],[32,1,1,2,3],[42,1,1,3,4]]],[1,7,7,4,11,[[56,1,1,4,5],[58,1,1,5,6],[65,1,1,6,7],[78,1,1,7,8],[79,2,2,8,10],[84,1,1,10,11]]],[2,3,3,11,14,[[98,2,2,11,13],[114,1,1,13,14]]],[3,4,4,14,18,[[123,1,1,14,15],[132,1,1,15,16],[143,1,1,16,17],[147,1,1,17,18]]],[5,2,2,18,20,[[190,1,1,18,19],[195,1,1,19,20]]],[8,3,3,20,23,[[244,1,1,20,21],[251,1,1,21,22],[252,1,1,22,23]]],[10,2,2,23,25,[[291,1,1,23,24],[301,1,1,24,25]]],[11,5,5,25,30,[[320,1,1,25,26],[321,1,1,26,27],[325,2,2,27,29],[332,1,1,29,30]]],[12,1,1,30,31,[[358,1,1,30,31]]],[13,1,1,31,32,[[384,1,1,31,32]]],[19,2,2,32,34,[[647,1,1,32,33],[654,1,1,33,34]]],[22,3,3,34,37,[[686,1,1,34,35],[701,1,1,35,36],[725,1,1,36,37]]],[23,7,7,37,44,[[773,1,1,37,38],[780,3,3,38,41],[782,1,1,41,42],[783,1,1,42,43],[787,1,1,43,44]]],[25,3,3,44,47,[[805,1,1,44,45],[811,1,1,45,46],[825,1,1,46,47]]],[27,1,1,47,48,[[875,1,1,47,48]]],[37,2,2,48,50,[[916,1,1,48,49],[921,1,1,49,50]]]],[369,549,971,1303,1704,1750,1980,2337,2405,2416,2536,2955,2956,3505,3855,4200,4572,4693,5912,6048,7394,7597,7635,8750,9139,9735,9773,9886,9889,10105,10957,11567,16970,17182,17808,18093,18601,19641,19844,19856,19870,19905,19935,20006,20538,20639,21061,22284,22957,23043]]],["accept",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2124]]],["away",[40,40,[[0,2,2,0,2,[[26,2,2,0,2]]],[1,1,1,2,3,[[63,1,1,2,3]]],[8,3,3,3,6,[[256,1,1,3,4],[262,1,1,4,5],[265,1,1,5,6]]],[10,5,5,6,11,[[304,1,1,6,7],[309,3,3,7,10],[310,1,1,10,11]]],[11,4,4,11,15,[[314,1,1,11,12],[332,1,1,12,13],[337,2,2,13,15]]],[17,5,5,15,20,[[436,3,3,15,18],[447,1,1,18,19],[450,1,1,19,20]]],[18,1,1,20,21,[[508,1,1,20,21]]],[19,1,1,21,22,[[649,1,1,21,22]]],[22,3,3,22,25,[[717,1,1,22,23],[727,1,1,23,24],[730,1,1,24,25]]],[23,3,3,25,28,[[772,1,1,25,26],[793,1,1,26,27],[796,1,1,27,28]]],[25,8,8,28,36,[[804,1,1,28,29],[824,2,2,29,31],[825,1,1,31,32],[831,1,1,32,33],[834,2,2,33,35],[839,1,1,35,36]]],[27,3,3,36,39,[[863,1,1,36,37],[865,1,1,37,38],[874,1,1,38,39]]],[32,1,1,39,40,[[894,1,1,39,40]]]],[762,763,1900,7778,7939,7996,9244,9391,9397,9401,9414,9560,10116,10236,10237,12884,12886,12890,13148,13215,14344,17042,18419,18661,18701,19621,20156,20294,20516,21033,21036,21072,21208,21284,21286,21438,22114,22144,22277,22604]]],["bring",[11,11,[[1,1,1,0,1,[[74,1,1,0,1]]],[2,2,2,1,3,[[101,1,1,1,2],[113,1,1,2,3]]],[3,3,3,3,6,[[127,1,1,3,4],[129,1,1,4,5],[139,1,1,5,6]]],[4,2,2,6,8,[[182,2,2,6,8]]],[10,1,1,8,9,[[310,1,1,8,9]]],[11,2,2,9,11,[[315,1,1,9,10],[316,1,1,10,11]]]],[2197,3052,3448,4040,4095,4443,5720,5721,9441,9591,9644]]],["brought",[7,7,[[3,1,1,0,1,[[139,1,1,0,1]]],[6,1,1,1,2,[[224,1,1,1,2]]],[8,2,2,2,4,[[256,1,1,2,3],[265,1,1,3,4]]],[11,1,1,4,5,[[314,1,1,4,5]]],[12,1,1,5,6,[[355,1,1,5,6]]],[16,1,1,6,7,[[427,1,1,6,7]]]],[4430,6920,7780,7989,9571,10898,12732]]],["buy",[2,2,[[15,2,2,0,2,[[417,1,1,0,1],[422,1,1,1,2]]]],[12385,12580]]],["buyeth",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17300]]],["carry",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14665]]],["drawn",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17090]]],["fetch",[14,14,[[0,4,4,0,4,[[17,1,1,0,1],[26,3,3,1,4]]],[1,1,1,4,5,[[51,1,1,4,5]]],[4,3,3,5,8,[[171,1,1,5,6],[176,1,1,6,7],[182,1,1,7,8]]],[6,1,1,8,9,[[230,1,1,8,9]]],[8,2,2,9,11,[[251,1,1,9,10],[261,1,1,10,11]]],[10,1,1,11,12,[[307,1,1,11,12]]],[11,1,1,12,13,[[318,1,1,12,13]]],[22,1,1,13,14,[[734,1,1,13,14]]]],[429,736,740,772,1559,5418,5544,5712,7064,7606,7927,9328,9687,18765]]],["fetched",[7,7,[[0,2,2,0,2,[[17,1,1,0,1],[26,1,1,1,2]]],[8,1,1,2,3,[[245,1,1,2,3]]],[9,3,3,3,6,[[270,1,1,3,4],[275,1,1,4,5],[280,1,1,5,6]]],[10,1,1,6,7,[[299,1,1,6,7]]]],[428,741,7441,8126,8232,8358,9079]]],["fetcht",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[431]]],["get",[3,3,[[1,1,1,0,1,[[54,1,1,0,1]]],[6,1,1,1,2,[[224,1,1,1,2]]],[19,1,1,2,3,[[649,1,1,2,3]]]],[1643,6911,17040]]],["getteth",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16645]]],["have",[2,2,[[4,1,1,0,1,[[173,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]]],[5458,7255]]],["itself",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20468]]],["married",[4,3,[[0,1,1,0,1,[[18,1,1,0,1]]],[3,2,1,1,2,[[128,2,1,1,2]]],[12,1,1,2,3,[[339,1,1,2,3]]]],[471,4060,10327]]],["mingled",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1766]]],["out",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1821]]],["placed",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20830]]],["put",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8336]]],["receive",[31,31,[[0,3,3,0,3,[[3,1,1,0,1],[32,1,1,1,2],[37,1,1,2,3]]],[1,1,1,3,4,[[78,1,1,3,4]]],[3,1,1,4,5,[[134,1,1,4,5]]],[4,1,1,5,6,[[161,1,1,5,6]]],[8,1,1,6,7,[[245,1,1,6,7]]],[11,4,4,7,11,[[317,2,2,7,9],[324,2,2,9,11]]],[17,1,1,11,12,[[462,1,1,11,12]]],[18,4,4,12,16,[[483,1,1,12,13],[526,1,1,13,14],[550,1,1,14,15],[552,1,1,15,16]]],[19,4,4,16,20,[[628,1,1,16,17],[629,1,1,17,18],[631,1,1,18,19],[637,1,1,19,20]]],[23,5,5,20,25,[[749,1,1,20,21],[753,1,1,21,22],[761,1,1,22,23],[776,1,1,23,24],[779,1,1,24,25]]],[25,2,2,25,27,[[804,1,1,25,26],[837,1,1,26,27]]],[27,2,2,27,29,[[871,1,1,27,28],[875,1,1,28,29]]],[32,1,1,29,30,[[893,1,1,29,30]]],[35,1,1,30,31,[[908,1,1,30,31]]]],[90,970,1139,2361,4285,5166,7422,9663,9673,9857,9858,13494,13994,14663,15044,15073,16403,16434,16500,16664,19061,19195,19380,19764,19836,20512,21389,22231,22284,22590,22827]]],["received",[20,19,[[1,2,2,0,2,[[81,1,1,0,1],[85,1,1,1,2]]],[3,4,3,2,5,[[139,1,1,2,3],[150,3,2,3,5]]],[5,2,2,5,7,[[199,1,1,5,6],[204,1,1,6,7]]],[6,1,1,7,8,[[223,1,1,7,8]]],[8,2,2,8,10,[[247,1,1,8,9],[260,1,1,9,10]]],[10,1,1,10,11,[[300,1,1,10,11]]],[13,1,1,11,12,[[367,1,1,11,12]]],[17,1,1,12,13,[[439,1,1,12,13]]],[18,1,1,13,14,[[545,1,1,13,14]]],[19,1,1,14,15,[[651,1,1,14,15]]],[22,1,1,15,16,[[718,1,1,15,16]]],[23,1,1,16,17,[[746,1,1,16,17]]],[25,1,1,17,18,[[819,1,1,17,18]]],[35,1,1,18,19,[[908,1,1,18,19]]]],[2442,2569,4436,4830,4831,6162,6300,6907,7463,7896,9107,11210,12942,14918,17111,18422,18995,20866,22822]]],["receiveth",[4,4,[[17,1,1,0,1,[[470,1,1,0,1]]],[19,1,1,1,2,[[648,1,1,1,2]]],[23,1,1,2,3,[[751,1,1,2,3]]],[38,1,1,3,4,[[926,1,1,3,4]]]],[13727,16995,19147,23116]]],["reserved",[1,1,[[6,1,1,0,1,[[231,1,1,0,1]]]],[7124]]],["sent",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7649]]],["take",[213,199,[[0,32,31,0,31,[[2,1,1,0,1],[5,1,1,1,2],[6,1,1,2,3],[11,1,1,3,4],[13,3,3,4,7],[20,1,1,7,8],[22,1,1,8,9],[23,7,7,9,16],[26,1,1,16,17],[27,4,3,17,20],[30,2,2,20,22],[33,2,2,22,24],[37,1,1,24,25],[41,2,2,25,27],[42,3,3,27,30],[44,1,1,30,31]]],[1,25,24,31,55,[[53,2,2,31,33],[55,1,1,33,34],[56,1,1,34,35],[59,1,1,35,36],[61,6,6,36,42],[65,1,1,42,43],[66,2,1,43,44],[70,2,2,44,46],[72,1,1,46,47],[74,1,1,47,48],[78,6,6,48,54],[83,1,1,54,55]]],[2,28,25,55,80,[[93,4,4,55,59],[103,10,9,59,68],[104,2,2,68,70],[105,4,4,70,74],[107,1,1,74,75],[110,5,3,75,78],[112,1,1,78,79],[113,1,1,79,80]]],[3,18,15,80,95,[[119,2,1,80,81],[120,1,1,81,82],[121,2,1,82,83],[124,2,1,83,84],[132,1,1,84,85],[133,1,1,85,86],[134,1,1,86,87],[135,4,4,87,91],[147,1,1,91,92],[150,1,1,92,93],[151,2,2,93,95]]],[4,15,15,95,110,[[156,1,1,95,96],[159,2,2,96,98],[168,1,1,98,99],[172,1,1,99,100],[173,1,1,100,101],[174,4,4,101,105],[176,1,1,105,106],[177,2,2,106,108],[178,2,2,108,110]]],[5,2,2,110,112,[[189,1,1,110,111],[192,1,1,111,112]]],[6,4,4,112,116,[[214,1,1,112,113],[224,2,2,113,115],[230,1,1,115,116]]],[8,14,12,116,128,[[237,2,1,116,117],[241,1,1,117,118],[243,3,3,118,121],[252,1,1,121,122],[255,1,1,122,123],[256,2,1,123,124],[259,1,1,124,125],[260,2,2,125,127],[261,1,1,127,128]]],[9,4,4,128,132,[[268,1,1,128,129],[278,1,1,129,130],[286,1,1,130,131],[290,1,1,131,132]]],[10,3,3,132,135,[[301,2,2,132,134],[304,1,1,134,135]]],[11,12,12,135,147,[[316,2,2,135,137],[317,4,4,137,141],[318,1,1,141,142],[319,1,1,142,143],[321,2,2,143,145],[322,1,1,145,146],[324,1,1,146,147]]],[15,1,1,147,148,[[422,1,1,147,148]]],[17,3,3,148,151,[[473,1,1,148,149],[476,1,1,149,150],[477,1,1,150,151]]],[18,3,3,151,154,[[527,1,1,151,152],[528,1,1,152,153],[586,1,1,153,154]]],[19,1,1,154,155,[[633,1,1,154,155]]],[22,6,6,155,161,[[692,1,1,155,156],[706,1,1,156,157],[722,1,1,157,158],[725,1,1,158,159],[735,1,1,159,160],[744,1,1,160,161]]],[23,10,10,161,171,[[747,1,1,161,162],[759,1,1,162,163],[760,1,1,163,164],[764,2,2,164,166],[769,1,1,166,167],[773,1,1,167,168],[790,1,1,168,169],[795,2,2,169,171]]],[25,23,19,171,190,[[805,2,2,171,173],[806,5,3,173,176],[816,1,1,176,177],[817,2,2,177,179],[818,1,1,179,180],[824,1,1,180,181],[825,1,1,181,182],[834,2,2,182,184],[837,1,1,184,185],[838,2,1,185,186],[844,1,1,186,187],[845,2,1,187,188],[846,2,2,188,190]]],[27,1,1,190,191,[[862,1,1,190,191]]],[29,4,4,191,195,[[883,2,2,191,193],[887,2,2,193,195]]],[31,1,1,195,196,[[892,1,1,195,196]]],[36,1,1,196,197,[[910,1,1,196,197]]],[37,2,2,197,199,[[916,1,1,197,198],[924,1,1,198,199]]]],[77,158,161,317,357,359,360,543,584,594,595,598,628,629,631,642,773,774,775,779,905,923,989,996,1142,1285,1288,1301,1302,1308,1377,1610,1618,1662,1700,1803,1819,1820,1823,1837,1838,1848,1963,1988,2087,2091,2152,2198,2348,2351,2356,2357,2358,2367,2512,2800,2820,2825,2829,3115,3117,3121,3125,3126,3132,3136,3153,3160,3182,3197,3206,3213,3215,3219,3269,3352,3358,3359,3442,3451,3739,3752,3809,3947,4211,4246,4283,4293,4295,4306,4307,4694,4834,4876,4877,5038,5114,5136,5361,5434,5450,5476,5477,5483,5485,5529,5552,5555,5568,5570,5905,5967,6605,6912,6917,7064,7256,7338,7382,7383,7385,7636,7751,7781,7850,7900,7901,7916,8070,8290,8560,8714,9143,9145,9221,9604,9632,9662,9663,9667,9670,9676,9720,9757,9759,9799,9855,12579,13813,13892,13930,14677,14702,15763,16565,17930,18183,18548,18602,18778,18943,19016,19330,19338,19427,19432,19562,19641,20056,20220,20238,20530,20532,20547,20549,20550,20757,20778,20801,20847,21032,21081,21282,21286,21383,21413,21592,21621,21648,21649,22096,22434,22435,22497,22498,22571,22878,22958,23089]]],["taken",[58,54,[[0,7,7,0,7,[[1,2,2,0,2],[2,2,2,2,4],[11,2,2,4,6],[19,1,1,6,7]]],[2,1,1,7,8,[[96,1,1,7,8]]],[3,1,1,8,9,[[124,1,1,8,9]]],[4,5,4,9,13,[[156,1,1,9,10],[172,1,1,10,11],[176,3,2,11,13]]],[5,1,1,13,14,[[193,1,1,13,14]]],[6,1,1,14,15,[[227,1,1,14,15]]],[8,11,10,15,25,[[239,5,5,15,20],[242,1,1,20,21],[247,3,2,21,23],[265,2,2,23,25]]],[9,3,3,25,28,[[278,1,1,25,26],[284,1,1,26,27],[289,1,1,27,28]]],[10,1,1,28,29,[[297,1,1,28,29]]],[11,3,3,29,32,[[314,1,1,29,30],[325,1,1,30,31],[336,1,1,31,32]]],[15,1,1,32,33,[[417,1,1,32,33]]],[16,2,2,33,35,[[427,2,2,33,35]]],[17,1,1,35,36,[[463,1,1,35,36]]],[19,1,1,36,37,[[634,1,1,36,37]]],[22,4,4,37,41,[[684,1,1,37,38],[727,1,1,38,39],[729,1,1,39,40],[731,1,1,40,41]]],[23,3,3,41,44,[[783,1,1,41,42],[784,1,1,42,43],[792,1,1,43,44]]],[25,10,8,44,52,[[816,1,1,44,45],[817,1,1,45,46],[818,2,1,46,47],[819,2,2,47,49],[823,3,2,49,51],[828,1,1,51,52]]],[28,1,1,52,53,[[878,1,1,52,53]]],[29,1,1,53,54,[[884,1,1,53,54]]]],[52,53,74,78,313,317,498,2913,3955,5024,5434,5526,5530,5987,6982,7308,7314,7316,7318,7319,7366,7463,7464,7994,7997,8295,8496,8659,8942,9561,9896,10209,12397,12739,12740,13506,16595,17775,18660,18695,18719,19928,19942,20126,20757,20779,20838,20857,20862,20988,21001,21126,22348,22463]]],["takest",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1610]]],["taketh",[8,8,[[4,3,3,0,3,[[162,1,1,0,1],[179,1,1,1,2],[184,1,1,2,3]]],[17,2,2,3,5,[[440,1,1,3,4],[475,1,1,4,5]]],[18,1,1,5,6,[[492,1,1,5,6]]],[19,1,1,6,7,[[644,1,1,6,7]]],[22,1,1,7,8,[[722,1,1,7,8]]]],[5203,5610,5769,12956,13888,14092,16896,18547]]],["taking",[1,1,[[27,1,1,0,1,[[872,1,1,0,1]]]],[22243]]],["took",[184,184,[[0,40,40,0,40,[[1,1,1,0,1],[2,1,1,1,2],[3,1,1,2,3],[4,1,1,3,4],[5,1,1,4,5],[7,2,2,5,7],[10,1,1,7,8],[14,1,1,8,9],[17,1,1,9,10],[19,1,1,10,11],[20,3,3,11,14],[23,4,4,14,18],[24,1,1,18,19],[25,1,1,19,20],[27,2,2,20,22],[29,1,1,22,23],[30,2,2,23,25],[31,2,2,25,27],[32,1,1,27,28],[33,2,2,28,30],[36,1,1,30,31],[37,3,3,31,34],[38,1,1,34,35],[41,1,1,35,36],[42,1,1,36,37],[46,1,1,37,38],[47,2,2,38,40]]],[1,15,15,40,55,[[51,3,3,40,43],[53,1,1,43,44],[55,3,3,44,47],[63,2,2,47,49],[66,1,1,49,50],[67,1,1,50,51],[73,2,2,51,53],[83,1,1,53,54],[89,1,1,54,55]]],[2,5,5,55,60,[[97,4,4,55,59],[99,1,1,59,60]]],[3,9,9,60,69,[[119,2,2,60,62],[132,3,3,62,65],[133,1,1,65,66],[139,1,1,66,67],[141,1,1,67,68],[147,1,1,68,69]]],[4,6,6,69,75,[[153,2,2,69,71],[155,2,2,71,73],[161,1,1,73,74],[176,1,1,74,75]]],[5,9,9,75,84,[[190,1,1,75,76],[193,3,3,76,79],[194,1,1,79,80],[195,2,2,80,82],[197,1,1,82,83],[210,1,1,83,84]]],[6,9,9,84,93,[[215,1,1,84,85],[216,1,1,85,86],[225,2,2,86,88],[226,1,1,88,89],[227,2,2,89,91],[229,2,2,91,93]]],[7,1,1,93,94,[[235,1,1,93,94]]],[8,17,17,94,111,[[237,1,1,94,95],[241,1,1,95,96],[242,2,2,96,98],[243,1,1,98,99],[246,1,1,99,100],[249,1,1,100,101],[250,1,1,101,102],[251,1,1,102,103],[252,3,3,103,106],[253,1,1,106,107],[259,1,1,107,108],[260,2,2,108,110],[263,1,1,110,111]]],[9,12,12,111,123,[[267,1,1,111,112],[269,1,1,112,113],[270,1,1,113,114],[271,1,1,114,115],[273,1,1,115,116],[274,1,1,116,117],[276,1,1,117,118],[277,1,1,118,119],[278,1,1,119,120],[283,1,1,120,121],[284,1,1,121,122],[288,1,1,122,123]]],[10,6,6,123,129,[[301,1,1,123,124],[306,1,1,124,125],[307,1,1,125,126],[308,2,2,126,128],[310,1,1,128,129]]],[11,18,18,129,147,[[315,1,1,129,130],[317,2,2,130,132],[318,1,1,132,133],[319,1,1,133,134],[320,2,2,134,136],[321,1,1,136,137],[323,1,1,137,138],[324,1,1,138,139],[325,3,3,139,142],[332,1,1,142,143],[335,1,1,143,144],[336,1,1,144,145],[337,2,2,145,147]]],[12,6,6,147,153,[[339,2,2,147,149],[341,1,1,149,150],[344,1,1,150,151],[351,1,1,151,152],[354,1,1,152,153]]],[13,4,4,153,157,[[374,1,1,153,154],[377,1,1,154,155],[389,1,1,155,156],[402,1,1,156,157]]],[14,1,1,157,158,[[404,1,1,157,158]]],[15,1,1,158,159,[[419,1,1,158,159]]],[16,2,2,159,161,[[427,1,1,159,160],[431,1,1,160,161]]],[17,1,1,161,162,[[437,1,1,161,162]]],[18,2,2,162,164,[[495,1,1,162,163],[555,1,1,163,164]]],[23,12,12,164,176,[[769,1,1,164,165],[771,1,1,165,166],[780,2,2,166,168],[781,1,1,168,169],[782,2,2,169,171],[784,1,1,171,172],[785,1,1,172,173],[796,3,3,173,176]]],[25,5,5,176,181,[[809,1,1,176,177],[811,1,1,177,178],[818,1,1,178,179],[820,1,1,179,180],[824,1,1,180,181]]],[29,1,1,181,182,[[885,1,1,181,182]]],[37,2,2,182,184,[[921,2,2,182,184]]]],[51,61,98,129,139,192,203,295,370,432,509,527,534,540,598,601,613,656,659,726,782,784,867,918,919,941,951,971,982,1005,1107,1121,1125,1147,1169,1276,1305,1422,1452,1473,1555,1557,1563,1626,1675,1678,1680,1895,1896,1995,2011,2183,2184,2500,2727,2940,2943,2945,2947,2978,3741,3742,4195,4212,4241,4253,4427,4478,4711,4915,4917,4979,4983,5178,5528,5930,5977,5997,5999,6014,6041,6051,6126,6502,6642,6681,6933,6944,6961,6982,6984,7025,7052,7192,7254,7341,7361,7364,7372,7452,7540,7581,7615,7658,7667,7675,7678,7841,7879,7904,7966,8032,8096,8132,8145,8188,8217,8244,8263,8290,8468,8492,8619,9126,9314,9336,9345,9372,9442,9602,9652,9671,9681,9721,9736,9742,9769,9838,9859,9886,9889,9896,10105,10199,10214,10241,10242,10325,10329,10403,10550,10777,10870,11364,11432,11664,11997,12088,12483,12731,12804,12899,14134,15183,19551,19616,19863,19874,19891,19901,19906,19943,19973,20295,20301,20302,20607,20640,20830,20886,21017,22479,23035,23041]]],["tookest",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20780]]],["up",[2,2,[[15,1,1,0,1,[[417,1,1,0,1]]],[23,1,1,1,2,[[773,1,1,1,2]]]],[12384,19657]]],["upon",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12910]]],["use",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19515]]],["winneth",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16718]]]]},{"k":"H3948","v":[["*",[9,9,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[446,1,1,1,2]]],[19,6,6,2,8,[[628,1,1,2,3],[631,1,1,3,4],[634,1,1,4,5],[636,1,1,5,6],[643,2,2,6,8]]],[22,1,1,8,9,[[707,1,1,8,9]]]],[5760,13112,16405,16492,16596,16647,16861,16863,18217]]],["doctrine",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[446,1,1,1,2]]],[19,1,1,2,3,[[631,1,1,2,3]]],[22,1,1,3,4,[[707,1,1,3,4]]]],[5760,13112,16492,18217]]],["learning",[4,4,[[19,4,4,0,4,[[628,1,1,0,1],[636,1,1,1,2],[643,2,2,2,4]]]],[16405,16647,16861,16863]]],["speech",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16596]]]]},{"k":"H3949","v":[["Likhi",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10554]]]]},{"k":"H3950","v":[["*",[37,34,[[0,2,2,0,2,[[30,1,1,0,1],[46,1,1,1,2]]],[1,9,9,2,11,[[65,9,9,2,11]]],[2,3,3,11,14,[[108,2,2,11,13],[112,1,1,13,14]]],[3,1,1,14,15,[[127,1,1,14,15]]],[6,2,2,15,17,[[211,1,1,15,16],[221,1,1,16,17]]],[7,12,10,17,27,[[233,12,10,17,27]]],[8,1,1,27,28,[[255,1,1,27,28]]],[11,2,1,28,29,[[316,2,1,28,29]]],[18,1,1,29,30,[[581,1,1,29,30]]],[21,1,1,30,31,[[676,1,1,30,31]]],[22,2,2,31,33,[[695,1,1,31,32],[705,1,1,32,33]]],[23,1,1,33,34,[[751,1,1,33,34]]]],[919,1434,1951,1952,1963,1964,1965,1968,1969,1973,1974,3290,3291,3424,4032,6516,6832,7151,7152,7156,7157,7164,7165,7166,7167,7168,7172,7768,9642,15599,17616,17988,18163,19137]]],["+",[2,2,[[0,1,1,0,1,[[46,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]]],[1434,7768]]],["Gather",[2,2,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,1,1,1,2,[[65,1,1,1,2]]]],[919,1963]]],["gather",[11,11,[[1,4,4,0,4,[[65,4,4,0,4]]],[2,3,3,4,7,[[108,2,2,4,6],[112,1,1,6,7]]],[11,1,1,7,8,[[316,1,1,7,8]]],[18,1,1,8,9,[[581,1,1,8,9]]],[21,1,1,9,10,[[676,1,1,9,10]]],[23,1,1,10,11,[[751,1,1,10,11]]]],[1951,1952,1973,1974,3290,3291,3424,9642,15599,17616,19137]]],["gathered",[9,9,[[1,4,4,0,4,[[65,4,4,0,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[6,2,2,5,7,[[211,1,1,5,6],[221,1,1,6,7]]],[11,1,1,7,8,[[316,1,1,7,8]]],[22,1,1,8,9,[[705,1,1,8,9]]]],[1964,1965,1968,1969,4032,6516,6832,9642,18163]]],["gathereth",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17988]]],["glean",[7,6,[[7,7,6,0,6,[[233,7,6,0,6]]]],[7151,7156,7157,7164,7165,7172]]],["gleaned",[5,4,[[7,5,4,0,4,[[233,5,4,0,4]]]],[7152,7166,7167,7168]]]]},{"k":"H3951","v":[["*",[2,2,[[2,2,2,0,2,[[108,1,1,0,1],[112,1,1,1,2]]]],[3290,3424]]],["gleaning",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3424]]],["gleanings",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3290]]]]},{"k":"H3952","v":[["*",[7,5,[[6,4,3,0,3,[[217,4,3,0,3]]],[10,3,2,3,5,[[311,2,1,3,4],[312,1,1,4,5]]]],[6699,6700,6701,9470,9518]]],["+",[3,2,[[10,3,2,0,2,[[311,2,1,0,1],[312,1,1,1,2]]]],[9470,9518]]],["lapped",[2,2,[[6,2,2,0,2,[[217,2,2,0,2]]]],[6700,6701]]],["lappeth",[2,1,[[6,2,1,0,1,[[217,2,1,0,1]]]],[6699]]]]},{"k":"H3953","v":[["gather",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13442]]]]},{"k":"H3954","v":[["growth",[2,1,[[29,2,1,0,1,[[885,2,1,0,1]]]],[22465]]]]},{"k":"H3955","v":[["*",[2,2,[[3,1,1,0,1,[[127,1,1,0,1]]],[18,1,1,1,2,[[509,1,1,1,2]]]],[4032,14359]]],["fresh",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4032]]],["moisture",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14359]]]]},{"k":"H3956","v":[["*",[116,114,[[0,3,3,0,3,[[9,3,3,0,3]]],[1,2,2,3,5,[[53,1,1,3,4],[60,1,1,4,5]]],[4,1,1,5,6,[[180,1,1,5,6]]],[5,6,6,6,12,[[193,2,2,6,8],[196,1,1,8,9],[201,2,2,9,11],[204,1,1,11,12]]],[6,1,1,12,13,[[217,1,1,12,13]]],[9,1,1,13,14,[[289,1,1,13,14]]],[15,1,1,14,15,[[425,1,1,14,15]]],[16,5,3,15,18,[[426,2,1,15,16],[428,1,1,16,17],[433,2,1,17,18]]],[17,9,9,18,27,[[440,1,1,18,19],[441,1,1,19,20],[450,1,1,20,21],[455,2,2,21,23],[462,1,1,23,24],[464,1,1,24,25],[468,1,1,25,26],[476,1,1,26,27]]],[18,35,35,27,62,[[482,1,1,27,28],[487,1,1,28,29],[489,2,2,29,31],[492,1,1,31,32],[499,1,1,32,33],[508,1,1,33,34],[511,1,1,34,35],[512,1,1,35,36],[514,1,1,36,37],[516,2,2,37,39],[522,1,1,39,40],[527,1,1,40,41],[528,1,1,41,42],[529,2,2,42,44],[532,1,1,44,45],[534,1,1,45,46],[541,2,2,46,48],[543,1,1,48,49],[545,1,1,49,50],[548,1,1,50,51],[550,1,1,51,52],[555,1,1,52,53],[586,1,1,53,54],[596,1,1,54,55],[597,2,2,55,57],[603,1,1,57,58],[614,1,1,58,59],[616,1,1,59,60],[617,2,2,60,62]]],[19,19,19,62,81,[[633,2,2,62,64],[637,2,2,64,66],[639,2,2,66,68],[642,2,2,68,70],[643,1,1,70,71],[644,2,2,71,73],[645,1,1,73,74],[648,2,2,74,76],[652,2,2,76,78],[653,1,1,78,79],[655,1,1,79,80],[658,1,1,80,81]]],[20,1,1,81,82,[[668,1,1,81,82]]],[21,1,1,82,83,[[674,1,1,82,83]]],[22,14,14,83,97,[[681,1,1,83,84],[689,1,1,84,85],[706,1,1,85,86],[708,1,1,86,87],[710,1,1,87,88],[711,1,1,88,89],[713,1,1,89,90],[719,1,1,90,91],[723,1,1,91,92],[728,1,1,92,93],[732,1,1,93,94],[735,1,1,94,95],[737,1,1,95,96],[744,1,1,96,97]]],[23,6,6,97,103,[[749,1,1,97,98],[753,3,3,98,101],[762,1,1,101,102],[767,1,1,102,103]]],[24,1,1,103,104,[[800,1,1,103,104]]],[25,4,4,104,108,[[804,3,3,104,107],[837,1,1,107,108]]],[26,1,1,108,109,[[850,1,1,108,109]]],[27,1,1,109,110,[[868,1,1,109,110]]],[32,1,1,110,111,[[898,1,1,110,111]]],[35,1,1,111,112,[[908,1,1,111,112]]],[37,2,2,112,114,[[918,1,1,112,113],[924,1,1,113,114]]]],[239,254,265,1611,1813,5660,5997,6000,6085,6204,6207,6312,6699,8655,12695,12724,12759,12826,12972,13008,13208,13338,13342,13485,13542,13652,13889,13982,14048,14069,14070,14090,14219,14351,14401,14438,14480,14513,14515,14598,14687,14705,14712,14714,14741,14772,14853,14858,14890,14923,15000,15029,15149,15757,16070,16076,16077,16117,16228,16243,16266,16274,16557,16564,16676,16687,16737,16738,16809,16811,16841,16877,16893,16922,16990,17007,17128,17136,17169,17219,17310,17504,17593,17715,17899,18175,18244,18263,18298,18326,18468,18584,18666,18740,18769,18803,18940,19073,19178,19180,19183,19402,19515,20424,20507,20508,20528,21362,21741,22194,22660,22833,22999,23080]]],["+",[4,4,[[5,1,1,0,1,[[201,1,1,0,1]]],[18,2,2,1,3,[[597,1,1,1,2],[617,1,1,2,3]]],[20,1,1,3,4,[[668,1,1,3,4]]]],[6207,16076,16274,17504]]],["bay",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[204,1,1,1,2]]]],[6204,6312]]],["language",[9,7,[[15,1,1,0,1,[[425,1,1,0,1]]],[16,5,3,1,4,[[426,2,1,1,2],[428,1,1,2,3],[433,2,1,3,4]]],[23,1,1,4,5,[[749,1,1,4,5]]],[25,2,2,5,7,[[804,2,2,5,7]]]],[12695,12724,12759,12826,19073,20507,20508]]],["languages",[1,1,[[37,1,1,0,1,[[918,1,1,0,1]]]],[22999]]],["talkers",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21362]]],["tongue",[88,88,[[0,1,1,0,1,[[9,1,1,0,1]]],[1,2,2,1,3,[[53,1,1,1,2],[60,1,1,2,3]]],[4,1,1,3,4,[[180,1,1,3,4]]],[5,1,1,4,5,[[196,1,1,4,5]]],[6,1,1,5,6,[[217,1,1,5,6]]],[9,1,1,6,7,[[289,1,1,6,7]]],[17,9,9,7,16,[[440,1,1,7,8],[441,1,1,8,9],[450,1,1,9,10],[455,2,2,10,12],[462,1,1,12,13],[464,1,1,13,14],[468,1,1,14,15],[476,1,1,15,16]]],[18,29,29,16,45,[[482,1,1,16,17],[487,1,1,17,18],[489,2,2,18,20],[492,1,1,20,21],[499,1,1,21,22],[511,1,1,22,23],[512,1,1,23,24],[514,1,1,24,25],[516,2,2,25,27],[522,1,1,27,28],[527,1,1,28,29],[528,1,1,29,30],[529,2,2,30,32],[534,1,1,32,33],[541,2,2,33,35],[543,1,1,35,36],[545,1,1,36,37],[548,1,1,37,38],[550,1,1,38,39],[586,1,1,39,40],[596,1,1,40,41],[597,1,1,41,42],[603,1,1,42,43],[614,1,1,43,44],[616,1,1,44,45]]],[19,19,19,45,64,[[633,2,2,45,47],[637,2,2,47,49],[639,2,2,49,51],[642,2,2,51,53],[643,1,1,53,54],[644,2,2,54,56],[645,1,1,56,57],[648,2,2,57,59],[652,2,2,59,61],[653,1,1,61,62],[655,1,1,62,63],[658,1,1,63,64]]],[21,1,1,64,65,[[674,1,1,64,65]]],[22,13,13,65,78,[[681,1,1,65,66],[689,1,1,66,67],[706,1,1,67,68],[708,1,1,68,69],[710,1,1,69,70],[711,1,1,70,71],[713,1,1,71,72],[719,1,1,72,73],[723,1,1,73,74],[728,1,1,74,75],[732,1,1,75,76],[735,1,1,76,77],[737,1,1,77,78]]],[23,3,3,78,81,[[753,2,2,78,80],[762,1,1,80,81]]],[24,1,1,81,82,[[800,1,1,81,82]]],[25,1,1,82,83,[[804,1,1,82,83]]],[26,1,1,83,84,[[850,1,1,83,84]]],[27,1,1,84,85,[[868,1,1,84,85]]],[32,1,1,85,86,[[898,1,1,85,86]]],[35,1,1,86,87,[[908,1,1,86,87]]],[37,1,1,87,88,[[924,1,1,87,88]]]],[239,1611,1813,5660,6085,6699,8655,12972,13008,13208,13338,13342,13485,13542,13652,13889,13982,14048,14069,14070,14090,14219,14401,14438,14480,14513,14515,14598,14687,14705,14712,14714,14772,14853,14858,14890,14923,15000,15029,15757,16070,16077,16117,16228,16243,16557,16564,16676,16687,16737,16738,16809,16811,16841,16877,16893,16922,16990,17007,17128,17136,17169,17219,17310,17593,17715,17899,18175,18244,18263,18298,18326,18468,18584,18666,18740,18769,18803,19180,19183,19402,20424,20528,21741,22194,22660,22833,23080]]],["tongues",[9,9,[[0,2,2,0,2,[[9,2,2,0,2]]],[18,4,4,2,6,[[508,1,1,2,3],[532,1,1,3,4],[555,1,1,4,5],[617,1,1,5,6]]],[22,1,1,6,7,[[744,1,1,6,7]]],[23,2,2,7,9,[[753,1,1,7,8],[767,1,1,8,9]]]],[254,265,14351,14741,15149,16266,18940,19178,19515]]],["wedge",[2,2,[[5,2,2,0,2,[[193,2,2,0,2]]]],[5997,6000]]]]},{"k":"H3957","v":[["*",[47,41,[[8,1,1,0,1,[[244,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]],[12,4,4,2,6,[[346,2,2,2,4],[360,1,1,4,5],[365,1,1,5,6]]],[13,1,1,6,7,[[397,1,1,6,7]]],[14,2,2,7,9,[[410,1,1,7,8],[412,1,1,8,9]]],[15,7,7,9,16,[[422,3,3,9,12],[425,4,4,12,16]]],[23,8,6,16,22,[[779,4,2,16,18],[780,4,4,18,22]]],[25,23,19,22,41,[[841,6,5,22,27],[842,1,1,27,28],[843,13,10,28,38],[845,1,1,38,39],[846,1,1,39,40],[847,1,1,40,41]]]],[7413,10176,10641,10648,11011,11155,11865,12230,12258,12586,12587,12588,12675,12676,12679,12680,19825,19827,19852,19854,19862,19863,21494,21515,21521,21522,21523,21536,21553,21556,21557,21559,21560,21561,21562,21563,21564,21565,21618,21635,21674]]],["+",[1,1,[[23,1,1,0,1,[[780,1,1,0,1]]]],[19863]]],["chamber",[14,12,[[11,1,1,0,1,[[335,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]],[15,3,3,2,5,[[425,3,3,2,5]]],[23,6,4,5,9,[[779,3,1,5,6],[780,3,3,6,9]]],[25,3,3,9,12,[[841,2,2,9,11],[843,1,1,11,12]]]],[10176,12258,12675,12676,12679,19827,19852,19854,19862,21522,21523,21553]]],["chambers",[31,27,[[12,4,4,0,4,[[346,2,2,0,2],[360,1,1,2,3],[365,1,1,3,4]]],[13,1,1,4,5,[[397,1,1,4,5]]],[14,1,1,5,6,[[410,1,1,5,6]]],[15,4,4,6,10,[[422,3,3,6,9],[425,1,1,9,10]]],[23,1,1,10,11,[[779,1,1,10,11]]],[25,20,16,11,27,[[841,4,3,11,14],[842,1,1,14,15],[843,12,9,15,24],[845,1,1,24,25],[846,1,1,25,26],[847,1,1,26,27]]]],[10641,10648,11011,11155,11865,12230,12586,12587,12588,12680,19825,21494,21515,21521,21536,21556,21557,21559,21560,21561,21562,21563,21564,21565,21618,21635,21674]]],["parlour",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7413]]]]},{"k":"H3958","v":[["ligure",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2312,2676]]]]},{"k":"H3959","v":[["Leshem",[2,1,[[5,2,1,0,1,[[205,2,1,0,1]]]],[6368]]]]},{"k":"H3960","v":[["*",[2,2,[[18,1,1,0,1,[[578,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[15518,17261]]],["Accuse",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17261]]],["slandereth",[1,1,[[18,1,1,0,1,[[578,1,1,0,1]]]],[15518]]]]},{"k":"H3961","v":[["*",[7,7,[[26,7,7,0,7,[[852,3,3,0,3],[853,1,1,3,4],[854,1,1,4,5],[855,1,1,5,6],[856,1,1,6,7]]]],[21811,21814,21836,21838,21893,21930,21947]]],["language",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21836]]],["languages",[6,6,[[26,6,6,0,6,[[852,2,2,0,2],[853,1,1,2,3],[854,1,1,3,4],[855,1,1,4,5],[856,1,1,5,6]]]],[21811,21814,21838,21893,21930,21947]]]]},{"k":"H3962","v":[["Lasha",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[253]]]]},{"k":"H3963","v":[["homer",[1,1,[[27,1,1,0,1,[[864,1,1,0,1]]]],[22130]]]]},{"k":"H3964","v":[["+",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12159]]]]},{"k":"H3965","v":[["storehouses",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20192]]]]},{"k":"H3966","v":[["*",[300,278,[[0,38,33,0,33,[[0,1,1,0,1],[3,1,1,1,2],[6,3,2,2,4],[11,1,1,4,5],[12,2,2,5,7],[14,1,1,7,8],[16,6,3,8,11],[17,1,1,11,12],[18,2,2,12,14],[19,1,1,14,15],[20,1,1,15,16],[23,2,2,16,18],[25,2,2,18,20],[26,2,2,20,22],[29,2,1,22,23],[31,1,1,23,24],[33,2,2,24,26],[40,3,3,26,29],[46,2,2,29,31],[49,2,2,31,33]]],[1,14,13,33,46,[[50,3,2,33,35],[58,3,3,35,38],[59,2,2,38,40],[60,1,1,40,41],[61,1,1,41,42],[63,1,1,42,43],[68,3,3,43,46]]],[3,11,10,46,56,[[127,2,2,46,48],[128,1,1,48,49],[129,1,1,49,50],[130,3,2,50,52],[132,1,1,52,53],[138,2,2,53,55],[148,1,1,55,56]]],[4,12,12,56,68,[[154,1,1,56,57],[155,1,1,57,58],[156,2,2,58,60],[158,2,2,60,62],[161,1,1,62,63],[169,1,1,63,64],[172,1,1,64,65],[176,1,1,65,66],[180,1,1,66,67],[182,1,1,67,68]]],[5,16,15,68,83,[[187,1,1,68,69],[189,1,1,69,70],[194,1,1,70,71],[195,4,4,71,75],[196,2,2,75,77],[197,1,1,77,78],[199,1,1,78,79],[208,3,2,79,81],[209,2,2,81,83]]],[6,10,10,83,93,[[212,1,1,83,84],[213,1,1,84,85],[216,1,1,85,86],[220,1,1,86,87],[221,1,1,87,88],[222,1,1,88,89],[223,1,1,89,90],[225,1,1,90,91],[228,1,1,91,92],[229,1,1,92,93]]],[7,2,2,93,95,[[232,2,2,93,95]]],[8,31,31,95,126,[[237,2,2,95,97],[239,1,1,97,98],[240,2,2,98,100],[246,2,2,100,102],[247,1,1,102,103],[249,2,2,103,105],[251,1,1,105,106],[252,2,2,106,108],[253,3,3,108,111],[254,2,2,111,113],[255,1,1,113,114],[256,1,1,114,115],[260,3,3,115,118],[261,1,1,118,119],[263,4,4,119,123],[265,1,1,123,124],[266,2,2,124,126]]],[9,20,18,126,144,[[267,1,1,126,127],[268,1,1,127,128],[269,1,1,128,129],[274,1,1,129,130],[276,1,1,130,131],[277,1,1,131,132],[278,3,3,132,135],[279,4,4,135,139],[280,1,1,139,140],[284,1,1,140,141],[285,2,1,141,142],[290,3,2,142,144]]],[10,16,14,144,158,[[291,3,3,144,147],[292,1,1,147,148],[294,1,1,148,149],[295,1,1,149,150],[297,2,1,150,151],[300,4,3,151,154],[301,1,1,154,155],[307,1,1,155,156],[308,1,1,156,157],[311,1,1,157,158]]],[11,6,5,158,163,[[322,2,1,158,159],[326,1,1,159,160],[329,1,1,160,161],[333,1,1,161,162],[335,1,1,162,163]]],[12,9,7,163,170,[[347,1,1,163,164],[353,1,1,164,165],[355,1,1,165,166],[356,1,1,166,167],[357,1,1,167,168],[358,4,2,168,170]]],[13,16,16,170,186,[[370,1,1,170,171],[373,1,1,171,172],[375,2,2,172,174],[377,1,1,174,175],[380,1,1,175,176],[382,2,2,176,178],[390,1,1,178,179],[391,1,1,179,180],[396,1,1,180,181],[398,2,2,181,183],[399,2,2,183,185],[401,1,1,185,186]]],[14,1,1,186,187,[[412,1,1,186,187]]],[15,6,6,187,193,[[414,1,1,187,188],[416,1,1,188,189],[417,1,1,189,190],[418,1,1,190,191],[420,1,1,191,192],[425,1,1,192,193]]],[16,2,2,193,195,[[426,1,1,193,194],[429,1,1,194,195]]],[17,4,4,195,199,[[436,1,1,195,196],[437,1,1,196,197],[443,1,1,197,198],[470,1,1,198,199]]],[18,35,35,199,234,[[483,2,2,199,201],[498,1,1,201,202],[508,1,1,202,203],[515,2,2,203,205],[523,1,1,205,206],[524,1,1,206,207],[525,1,1,207,208],[527,1,1,208,209],[555,2,2,209,211],[556,1,1,211,212],[569,1,1,212,213],[570,1,1,213,214],[573,1,1,214,215],[574,1,1,215,216],[581,1,1,216,217],[582,1,1,217,218],[584,1,1,218,219],[586,1,1,219,220],[589,1,1,220,221],[593,1,1,221,222],[596,9,9,222,231],[616,1,1,231,232],[619,1,1,232,233],[622,1,1,233,234]]],[22,8,8,234,242,[[694,1,1,234,235],[709,1,1,235,236],[725,2,2,236,238],[730,1,1,238,239],[734,1,1,239,240],[742,2,2,240,242]]],[23,16,14,242,256,[[746,3,3,242,245],[753,1,1,245,246],[758,1,1,246,247],[762,1,1,247,248],[764,1,1,248,249],[768,4,2,249,251],[784,1,1,251,252],[792,2,2,252,254],[793,1,1,254,255],[794,1,1,255,256]]],[24,1,1,256,257,[[801,1,1,256,257]]],[25,14,10,257,267,[[810,2,1,257,258],[817,2,1,258,259],[821,1,1,259,260],[828,1,1,260,261],[838,4,2,261,263],[841,1,1,263,264],[848,3,3,264,267]]],[26,2,2,267,269,[[857,1,1,267,268],[860,1,1,268,269]]],[28,2,1,269,270,[[877,2,1,269,270]]],[30,1,1,270,271,[[888,1,1,270,271]]],[33,1,1,271,272,[[901,1,1,271,272]]],[35,1,1,272,273,[[906,1,1,272,273]]],[37,5,5,273,278,[[919,3,3,273,276],[924,2,2,276,278]]]],[30,84,177,178,312,320,331,361,399,403,417,444,460,466,503,524,607,626,705,708,760,761,873,935,987,992,1214,1226,1244,1433,1447,1515,1516,1539,1552,1745,1760,1766,1791,1796,1809,1854,1899,2042,2044,2045,4034,4057,4062,4103,4115,4147,4209,4378,4392,4719,4942,4980,5013,5019,5089,5091,5177,5381,5442,5533,5665,5722,5858,5909,6006,6046,6050,6059,6061,6066,6084,6111,6155,6431,6434,6466,6471,6560,6585,6660,6820,6862,6871,6890,6947,7002,7035,7140,7147,7257,7262,7307,7328,7330,7451,7460,7478,7528,7539,7616,7629,7642,7684,7691,7706,7708,7710,7749,7784,7863,7876,7897,7926,7947,7957,7962,7963,7984,8012,8013,8048,8066,8089,8217,8245,8261,8288,8291,8316,8320,8332,8338,8353,8381,8495,8543,8702,8706,8721,8723,8732,8782,8873,8885,8981,9081,9089,9090,9127,9334,9344,9477,9797,9922,10001,10135,10190,10663,10845,10898,10912,10928,10942,10947,11264,11332,11365,11373,11426,11488,11517,11523,11701,11714,11840,11902,11904,11920,11922,11989,12253,12309,12366,12388,12417,12510,12679,12714,12766,12872,12904,13036,13735,13988,13995,14192,14342,14496,14498,14615,14634,14635,14671,15142,15172,15193,15416,15431,15469,15487,15572,15630,15737,15785,15804,15858,15902,15906,15941,15949,15994,16005,16036,16038,16065,16253,16292,16323,17975,18251,18605,18608,18709,18765,18894,18897,18975,18977,19001,19194,19310,19397,19433,19526,19527,19953,20096,20109,20157,20178,20464,20631,20775,20908,21146,21399,21407,21479,21686,21688,21689,21969,22061,22322,22512,22700,22801,23001,23004,23008,23072,23082]]],["+",[76,64,[[0,17,12,0,12,[[6,2,1,0,1],[16,6,3,1,4],[19,1,1,4,5],[20,1,1,5,6],[25,2,2,6,8],[26,1,1,8,9],[29,2,1,9,10],[31,1,1,10,11],[33,1,1,11,12]]],[1,4,3,12,15,[[50,3,2,12,14],[68,1,1,14,15]]],[3,5,4,15,19,[[130,2,1,15,16],[132,1,1,16,17],[138,2,2,17,19]]],[4,3,3,19,22,[[154,1,1,19,20],[156,1,1,20,21],[161,1,1,21,22]]],[5,1,1,22,23,[[195,1,1,22,23]]],[6,2,2,23,25,[[222,1,1,23,24],[225,1,1,24,25]]],[7,1,1,25,26,[[232,1,1,25,26]]],[8,3,3,26,29,[[253,1,1,26,27],[260,1,1,27,28],[261,1,1,28,29]]],[9,2,2,29,31,[[268,1,1,29,30],[279,1,1,30,31]]],[10,3,2,31,33,[[291,1,1,31,32],[297,2,1,32,33]]],[11,3,2,33,35,[[322,2,1,33,34],[329,1,1,34,35]]],[12,4,4,35,39,[[347,1,1,35,36],[357,1,1,36,37],[358,2,2,37,39]]],[13,4,4,39,43,[[377,1,1,39,40],[382,1,1,40,41],[399,1,1,41,42],[401,1,1,42,43]]],[17,1,1,43,44,[[437,1,1,43,44]]],[18,8,8,44,52,[[515,2,2,44,46],[556,1,1,46,47],[596,4,4,47,51],[619,1,1,51,52]]],[22,4,4,52,56,[[709,1,1,52,53],[730,1,1,53,54],[742,2,2,54,56]]],[24,1,1,56,57,[[801,1,1,56,57]]],[25,7,4,57,61,[[810,2,1,57,58],[817,2,1,58,59],[828,1,1,59,60],[838,2,1,60,61]]],[26,2,2,61,63,[[857,1,1,61,62],[860,1,1,62,63]]],[37,1,1,63,64,[[919,1,1,63,64]]]],[178,399,403,417,503,524,705,708,760,873,935,987,1539,1552,2045,4115,4209,4378,4392,4942,5019,5177,6046,6871,6947,7147,7691,7897,7926,8066,8332,8721,8981,9797,10001,10663,10928,10942,10947,11426,11523,11922,11989,12904,14496,14498,15193,15906,15941,15949,16005,16292,18251,18709,18894,18897,20464,20631,20775,21146,21407,21969,22061,23004]]],["diligent",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6431]]],["diligently",[4,4,[[4,2,2,0,2,[[156,1,1,0,1],[176,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[23,1,1,3,4,[[746,1,1,3,4]]]],[5013,5533,15902,18975]]],["especially",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14342]]],["exceeding",[10,10,[[0,2,2,0,2,[[14,1,1,0,1],[26,1,1,1,2]]],[1,1,1,2,3,[[68,1,1,2,3]]],[9,2,2,3,5,[[274,1,1,3,4],[278,1,1,4,5]]],[10,1,1,5,6,[[294,1,1,5,6]]],[13,1,1,6,7,[[398,1,1,6,7]]],[18,1,1,7,8,[[596,1,1,7,8]]],[23,1,1,8,9,[[792,1,1,8,9]]],[25,1,1,9,10,[[848,1,1,9,10]]]],[361,761,2042,8217,8288,8873,11902,15994,20109,21689]]],["exceedingly",[4,4,[[0,2,2,0,2,[[12,1,1,0,1],[46,1,1,1,2]]],[16,1,1,2,3,[[429,1,1,2,3]]],[18,1,1,3,4,[[596,1,1,3,4]]]],[331,1447,12766,16065]]],["far",[2,2,[[6,1,1,0,1,[[229,1,1,0,1]]],[18,1,1,1,2,[[574,1,1,1,2]]]],[7035,15487]]],["fast",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20096]]],["good",[1,1,[[5,1,1,0,1,[[209,1,1,0,1]]]],[6471]]],["great",[10,10,[[4,1,1,0,1,[[155,1,1,0,1]]],[9,2,2,1,3,[[278,1,1,1,2],[290,1,1,2,3]]],[10,2,2,3,5,[[300,1,1,3,4],[301,1,1,4,5]]],[13,2,2,5,7,[[370,1,1,5,6],[375,1,1,6,7]]],[17,1,1,7,8,[[470,1,1,7,8]]],[22,1,1,8,9,[[725,1,1,8,9]]],[37,1,1,9,10,[[924,1,1,9,10]]]],[4980,8316,8706,9090,9127,11264,11373,13735,18608,23082]]],["greatly",[46,46,[[0,3,3,0,3,[[6,1,1,0,1],[18,1,1,1,2],[23,1,1,2,3]]],[1,1,1,3,4,[[68,1,1,3,4]]],[3,2,2,4,6,[[127,1,1,4,5],[130,1,1,5,6]]],[4,1,1,6,7,[[169,1,1,6,7]]],[5,1,1,7,8,[[196,1,1,7,8]]],[6,2,2,8,10,[[212,1,1,8,9],[216,1,1,9,10]]],[8,7,7,10,17,[[246,2,2,10,12],[247,1,1,12,13],[251,1,1,13,14],[252,1,1,14,15],[263,1,1,15,16],[265,1,1,16,17]]],[9,3,3,17,20,[[276,1,1,17,18],[278,1,1,18,19],[290,1,1,19,20]]],[10,3,3,20,23,[[292,1,1,20,21],[295,1,1,21,22],[308,1,1,22,23]]],[12,3,3,23,26,[[353,1,1,23,24],[356,1,1,24,25],[358,1,1,25,26]]],[13,2,2,26,28,[[391,1,1,26,27],[399,1,1,27,28]]],[17,1,1,28,29,[[443,1,1,28,29]]],[18,11,11,29,40,[[498,1,1,29,30],[524,1,1,30,31],[525,1,1,31,32],[555,1,1,32,33],[573,1,1,33,34],[582,1,1,34,35],[584,1,1,35,36],[586,1,1,36,37],[589,1,1,37,38],[593,1,1,38,39],[622,1,1,39,40]]],[23,2,2,40,42,[[753,1,1,40,41],[764,1,1,41,42]]],[25,1,1,42,43,[[821,1,1,42,43]]],[30,1,1,43,44,[[888,1,1,43,44]]],[35,1,1,44,45,[[906,1,1,44,45]]],[37,1,1,45,46,[[919,1,1,45,46]]]],[177,460,626,2044,4034,4147,5381,6066,6560,6660,7451,7460,7478,7616,7629,7947,7984,8245,8291,8702,8782,8885,9344,10845,10912,10942,11714,11920,13036,14192,14634,14635,15172,15469,15630,15737,15785,15804,15858,16323,19194,19433,20908,22512,22801,23008]]],["might",[2,2,[[4,1,1,0,1,[[158,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]]],[5091,10190]]],["mightily",[2,2,[[4,1,1,0,1,[[158,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[5089,22700]]],["mighty",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1796]]],["much",[8,8,[[0,1,1,0,1,[[33,1,1,0,1]]],[7,1,1,1,2,[[232,1,1,1,2]]],[8,2,2,2,4,[[253,1,1,2,3],[254,1,1,3,4]]],[9,1,1,4,5,[[280,1,1,4,5]]],[15,1,1,5,6,[[418,1,1,5,6]]],[22,1,1,6,7,[[734,1,1,6,7]]],[23,1,1,7,8,[[746,1,1,7,8]]]],[992,7140,7706,7708,8381,12417,18765,19001]]],["off",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20157]]],["quickly",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7749]]],["so",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9334]]],["sore",[15,15,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[5,1,1,2,3,[[195,1,1,2,3]]],[6,1,1,3,4,[[220,1,1,3,4]]],[8,7,7,4,11,[[252,1,1,4,5],[256,1,1,5,6],[263,3,3,6,9],[266,2,2,9,11]]],[15,1,1,11,12,[[425,1,1,11,12]]],[18,2,2,12,14,[[483,2,2,12,14]]],[23,1,1,14,15,[[794,1,1,14,15]]]],[466,1899,6061,6820,7642,7784,7957,7962,7963,8012,8013,12679,13988,13995,20178]]],["very",[111,104,[[0,12,12,0,12,[[0,1,1,0,1],[3,1,1,1,2],[11,1,1,2,3],[12,1,1,3,4],[17,1,1,4,5],[23,1,1,5,6],[40,3,3,6,9],[46,1,1,9,10],[49,2,2,10,12]]],[1,6,6,12,18,[[58,3,3,12,15],[59,1,1,15,16],[60,1,1,16,17],[61,1,1,17,18]]],[3,4,4,18,22,[[127,1,1,18,19],[128,1,1,19,20],[129,1,1,20,21],[148,1,1,21,22]]],[4,3,3,22,25,[[172,1,1,22,23],[180,1,1,23,24],[182,1,1,24,25]]],[5,11,10,25,35,[[187,1,1,25,26],[189,1,1,26,27],[194,1,1,27,28],[195,2,2,28,30],[196,1,1,30,31],[197,1,1,31,32],[199,1,1,32,33],[208,2,1,33,34],[209,1,1,34,35]]],[6,4,4,35,39,[[213,1,1,35,36],[221,1,1,36,37],[223,1,1,37,38],[228,1,1,38,39]]],[8,11,11,39,50,[[237,2,2,39,41],[239,1,1,41,42],[240,2,2,42,44],[249,2,2,44,46],[253,1,1,46,47],[254,1,1,47,48],[260,2,2,48,50]]],[9,10,9,50,59,[[267,1,1,50,51],[269,1,1,51,52],[277,1,1,52,53],[279,3,3,53,56],[284,1,1,56,57],[285,2,1,57,58],[290,1,1,58,59]]],[10,6,5,59,64,[[291,2,2,59,61],[300,3,2,61,63],[311,1,1,63,64]]],[11,2,2,64,66,[[326,1,1,64,65],[333,1,1,65,66]]],[12,2,2,66,68,[[355,1,1,66,67],[358,1,1,67,68]]],[13,7,7,68,75,[[373,1,1,68,69],[375,1,1,69,70],[380,1,1,70,71],[382,1,1,71,72],[390,1,1,72,73],[396,1,1,73,74],[398,1,1,74,75]]],[14,1,1,75,76,[[412,1,1,75,76]]],[15,4,4,76,80,[[414,1,1,76,77],[416,1,1,77,78],[417,1,1,78,79],[420,1,1,79,80]]],[16,1,1,80,81,[[426,1,1,80,81]]],[17,1,1,81,82,[[436,1,1,81,82]]],[18,7,7,82,89,[[523,1,1,82,83],[527,1,1,83,84],[569,1,1,84,85],[570,1,1,85,86],[581,1,1,86,87],[596,2,2,87,89]]],[22,2,2,89,91,[[694,1,1,89,90],[725,1,1,90,91]]],[23,8,6,91,97,[[746,1,1,91,92],[758,1,1,92,93],[762,1,1,93,94],[768,4,2,94,96],[784,1,1,96,97]]],[25,5,4,97,101,[[838,2,1,97,98],[841,1,1,98,99],[848,2,2,99,101]]],[28,2,1,101,102,[[877,2,1,101,102]]],[37,2,2,102,104,[[919,1,1,102,103],[924,1,1,103,104]]]],[30,84,312,320,444,607,1214,1226,1244,1433,1515,1516,1745,1760,1766,1791,1809,1854,4057,4062,4103,4719,5442,5665,5722,5858,5909,6006,6050,6059,6084,6111,6155,6434,6466,6585,6862,6890,7002,7257,7262,7307,7328,7330,7528,7539,7684,7710,7863,7876,8048,8089,8261,8320,8338,8353,8495,8543,8702,8723,8732,9081,9089,9477,9922,10135,10898,10947,11332,11365,11488,11517,11701,11840,11904,12253,12309,12366,12388,12510,12714,12872,14615,14671,15416,15431,15572,16036,16038,17975,18605,18977,19310,19397,19526,19527,19953,21399,21479,21686,21688,22322,23001,23072]]],["well",[2,2,[[18,2,2,0,2,[[555,1,1,0,1],[616,1,1,1,2]]]],[15142,16253]]]]},{"k":"H3967","v":[["*",[581,512,[[0,64,63,0,63,[[4,24,24,0,24],[5,2,2,24,26],[6,3,3,26,29],[7,2,2,29,31],[8,2,2,31,33],[10,10,10,33,43],[13,1,1,43,44],[14,1,1,44,45],[16,1,1,45,46],[20,1,1,46,47],[22,3,3,47,50],[24,2,2,50,52],[25,1,1,52,53],[31,3,2,53,55],[32,2,2,55,57],[34,1,1,57,58],[44,1,1,58,59],[46,2,2,59,61],[49,2,2,61,63]]],[1,28,22,63,85,[[55,3,3,63,66],[61,3,3,66,69],[63,1,1,69,70],[67,2,2,70,72],[76,3,3,72,75],[79,4,2,75,77],[87,12,8,77,85]]],[2,2,1,85,86,[[115,2,1,85,86]]],[3,96,85,86,171,[[117,14,13,86,99],[118,22,17,99,116],[119,6,6,116,122],[120,4,4,122,126],[123,15,14,126,140],[127,1,1,140,141],[132,4,4,141,145],[142,15,14,145,159],[147,14,11,159,170],[149,1,1,170,171]]],[4,4,4,171,175,[[153,1,1,171,172],[174,1,1,172,173],[183,1,1,173,174],[186,1,1,174,175]]],[5,3,3,175,178,[[193,1,1,175,176],[210,2,2,176,178]]],[6,31,30,178,208,[[212,1,1,178,179],[213,1,1,179,180],[214,2,2,180,182],[217,6,6,182,188],[218,3,3,188,191],[221,1,1,191,192],[225,1,1,192,193],[226,1,1,193,194],[227,3,3,194,197],[228,3,3,197,200],[230,8,7,200,207],[231,1,1,207,208]]],[8,22,18,208,226,[[246,1,1,208,209],[248,1,1,209,210],[249,1,1,210,211],[250,1,1,211,212],[252,1,1,212,213],[253,2,2,213,215],[257,2,2,215,217],[258,1,1,217,218],[260,5,2,218,220],[262,1,1,220,221],[264,1,1,221,222],[265,5,4,222,226]]],[9,19,15,226,241,[[268,1,1,226,227],[269,1,1,227,228],[274,2,1,228,229],[276,1,1,229,230],[280,1,1,230,231],[281,2,2,231,233],[282,3,1,233,234],[284,2,2,234,236],[287,1,1,236,237],[289,2,2,237,239],[290,3,2,239,241]]],[10,29,25,241,266,[[294,1,1,241,242],[295,1,1,242,243],[296,1,1,243,244],[297,3,3,244,247],[298,1,1,247,248],[299,3,3,248,251],[300,8,6,251,257],[301,2,1,257,258],[302,1,1,258,259],[308,5,4,259,263],[310,2,2,263,265],[312,1,1,265,266]]],[11,13,12,266,278,[[315,3,2,266,268],[316,1,1,268,269],[323,5,5,269,274],[326,1,1,274,275],[330,1,1,275,276],[331,1,1,276,277],[335,1,1,277,278]]],[12,43,41,278,319,[[341,1,1,278,279],[342,3,2,279,281],[344,3,3,281,284],[345,1,1,284,285],[346,4,4,285,289],[348,2,2,289,291],[349,9,9,291,300],[350,1,1,300,301],[352,5,5,301,306],[355,1,1,306,307],[358,4,3,307,310],[359,1,1,310,311],[362,1,1,311,312],[363,3,3,312,315],[364,1,1,315,316],[365,1,1,316,317],[366,2,2,317,319]]],[13,64,52,319,371,[[367,4,3,319,322],[368,4,3,322,325],[369,3,3,325,328],[370,2,2,328,330],[371,1,1,330,331],[373,1,1,331,332],[374,2,2,332,334],[375,6,4,334,338],[377,1,1,338,339],[378,1,1,339,340],[379,3,2,340,342],[380,3,2,342,344],[381,1,1,344,345],[383,7,6,345,351],[384,1,1,351,352],[389,4,4,352,356],[390,1,1,356,357],[391,6,4,357,361],[392,3,2,361,363],[393,1,1,363,364],[394,2,2,364,366],[395,3,2,366,368],[401,3,2,368,370],[402,1,1,370,371]]],[14,53,48,371,419,[[403,2,2,371,373],[404,41,38,373,411],[410,10,8,411,419]]],[15,50,47,419,466,[[417,2,2,419,421],[419,41,38,421,459],[423,7,7,459,466]]],[16,7,7,466,473,[[426,2,2,466,468],[433,1,1,468,469],[434,4,4,469,473]]],[17,3,2,473,475,[[436,2,1,473,474],[477,1,1,474,475]]],[19,1,1,475,476,[[644,1,1,475,476]]],[20,2,2,476,478,[[664,1,1,476,477],[666,1,1,477,478]]],[21,1,1,478,479,[[678,1,1,478,479]]],[22,3,2,479,481,[[715,1,1,479,480],[743,2,1,480,481]]],[23,4,3,481,484,[[796,4,3,481,484]]],[25,34,24,484,508,[[805,2,2,484,486],[841,5,4,486,490],[842,4,3,490,493],[843,8,7,493,500],[846,3,2,500,502],[849,12,6,502,508]]],[26,3,3,508,511,[[857,1,1,508,509],[861,2,2,509,511]]],[29,2,1,511,512,[[883,2,1,511,512]]]],[108,109,110,111,112,113,115,116,118,119,121,122,123,124,125,127,128,130,131,132,133,135,136,137,140,152,165,170,183,186,196,233,234,276,277,279,281,283,285,287,289,291,298,350,373,414,518,572,586,587,665,675,704,934,942,961,979,1039,1380,1429,1448,1528,1532,1671,1673,1675,1853,1856,1857,1896,2020,2024,2281,2283,2290,2405,2406,2642,2644,2657,2658,2659,2660,2661,2662,3532,3625,3627,3629,3631,3633,3635,3637,3639,3641,3643,3645,3647,3650,3662,3664,3666,3667,3669,3671,3673,3674,3677,3679,3681,3682,3684,3686,3688,3689,3690,3714,3720,3726,3735,3738,3742,3779,3783,3787,3791,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935,3936,4045,4196,4211,4229,4243,4496,4499,4503,4507,4511,4514,4516,4523,4526,4530,4532,4536,4539,4540,4678,4692,4696,4700,4701,4703,4707,4709,4712,4716,4718,4799,4907,5489,5730,5846,5997,6505,6508,6553,6599,6602,6612,6700,6701,6702,6710,6713,6716,6723,6729,6745,6855,6933,6954,6982,6983,6984,7004,7009,7010,7056,7064,7069,7070,7071,7089,7101,7114,7453,7500,7510,7564,7625,7701,7703,7789,7794,7823,7874,7879,7932,7969,7987,7988,7995,7999,8080,8095,8213,8258,8382,8400,8407,8427,8479,8482,8596,8661,8671,8695,8701,8867,8894,8897,8936,8954,8976,9048,9065,9074,9079,9089,9093,9095,9096,9105,9108,9111,9172,9345,9354,9360,9363,9423,9437,9486,9580,9602,9646,9833,9838,9839,9844,9848,9909,10038,10096,10198,10427,10446,10449,10537,10544,10546,10615,10621,10624,10628,10637,10684,10693,10734,10744,10745,10746,10747,10750,10752,10755,10757,10761,10796,10797,10798,10799,10801,10894,10937,10939,10959,10978,11053,11103,11107,11109,11110,11144,11170,11171,11196,11208,11211,11213,11228,11229,11233,11237,11245,11254,11259,11280,11329,11356,11364,11373,11377,11379,11380,11415,11440,11456,11470,11483,11484,11501,11534,11537,11538,11539,11540,11541,11547,11657,11665,11670,11676,11692,11709,11710,11713,11727,11744,11745,11760,11770,11772,11823,11824,11974,11975,11996,12026,12027,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12042,12044,12045,12046,12048,12050,12052,12053,12054,12055,12057,12058,12059,12060,12061,12062,12063,12065,12068,12069,12085,12087,12091,12092,12093,12094,12096,12204,12205,12206,12210,12211,12213,12221,12227,12393,12399,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12440,12442,12443,12444,12446,12447,12449,12450,12451,12452,12454,12455,12456,12457,12458,12459,12461,12464,12465,12480,12482,12486,12487,12488,12489,12490,12491,12594,12596,12600,12601,12602,12606,12607,12703,12706,12826,12840,12846,12849,12864,12872,13938,16883,17420,17470,17652,18388,18917,20299,20305,20306,20534,20538,21496,21500,21504,21524,21539,21540,21541,21554,21560,21568,21569,21570,21571,21572,21632,21645,21718,21719,21732,21734,21735,21736,21975,22092,22093,22426]]],["+",[10,10,[[0,1,1,0,1,[[25,1,1,0,1]]],[6,3,3,1,4,[[226,1,1,1,2],[227,2,2,2,4]]],[8,2,2,4,6,[[258,1,1,4,5],[265,1,1,5,6]]],[9,1,1,6,7,[[290,1,1,6,7]]],[10,1,1,7,8,[[299,1,1,7,8]]],[13,2,2,8,10,[[378,1,1,8,9],[389,1,1,9,10]]]],[704,6954,6982,6983,7823,7988,8695,9065,11440,11665]]],["hundred",[541,475,[[0,61,60,0,60,[[4,24,24,0,24],[5,2,2,24,26],[6,2,2,26,28],[7,1,1,28,29],[8,2,2,29,31],[10,10,10,31,41],[13,1,1,41,42],[14,1,1,42,43],[16,1,1,43,44],[20,1,1,44,45],[22,3,3,45,48],[24,2,2,48,50],[31,3,2,50,52],[32,2,2,52,54],[34,1,1,54,55],[44,1,1,55,56],[46,2,2,56,58],[49,2,2,58,60]]],[1,26,20,60,80,[[55,3,3,60,63],[61,3,3,63,66],[63,1,1,66,67],[76,3,3,67,70],[79,4,2,70,72],[87,12,8,72,80]]],[2,2,1,80,81,[[115,2,1,80,81]]],[3,92,82,81,163,[[117,14,13,81,94],[118,22,17,94,111],[119,6,6,111,117],[120,4,4,117,121],[123,15,14,121,135],[127,1,1,135,136],[132,4,4,136,140],[142,15,14,140,154],[147,10,8,154,162],[149,1,1,162,163]]],[4,3,3,163,166,[[174,1,1,163,164],[183,1,1,164,165],[186,1,1,165,166]]],[5,3,3,166,169,[[193,1,1,166,167],[210,2,2,167,169]]],[6,28,27,169,196,[[212,1,1,169,170],[213,1,1,170,171],[214,2,2,171,173],[217,6,6,173,179],[218,3,3,179,182],[221,1,1,182,183],[225,1,1,183,184],[227,1,1,184,185],[228,3,3,185,188],[230,8,7,188,195],[231,1,1,195,196]]],[8,18,15,196,211,[[246,1,1,196,197],[248,1,1,197,198],[249,1,1,198,199],[250,1,1,199,200],[252,1,1,200,201],[253,2,2,201,203],[257,1,1,203,204],[260,5,2,204,206],[262,1,1,206,207],[265,4,4,207,211]]],[9,16,12,211,223,[[268,1,1,211,212],[269,1,1,212,213],[274,2,1,213,214],[276,1,1,214,215],[280,1,1,215,216],[281,2,2,216,218],[282,3,1,218,219],[287,1,1,219,220],[289,2,2,220,222],[290,2,1,222,223]]],[10,28,24,223,247,[[294,1,1,223,224],[295,1,1,224,225],[296,1,1,225,226],[297,3,3,226,229],[298,1,1,229,230],[299,2,2,230,232],[300,8,6,232,238],[301,2,1,238,239],[302,1,1,239,240],[308,5,4,240,244],[310,2,2,244,246],[312,1,1,246,247]]],[11,8,7,247,254,[[315,3,2,247,249],[316,1,1,249,250],[326,1,1,250,251],[330,1,1,251,252],[331,1,1,252,253],[335,1,1,253,254]]],[12,38,36,254,290,[[341,1,1,254,255],[342,3,2,255,257],[344,3,3,257,260],[345,1,1,260,261],[346,4,4,261,265],[348,2,2,265,267],[349,9,9,267,276],[352,5,5,276,281],[355,1,1,281,282],[358,4,3,282,285],[359,1,1,285,286],[362,1,1,286,287],[363,2,2,287,289],[366,1,1,289,290]]],[13,57,46,290,336,[[367,3,2,290,292],[368,4,3,292,295],[369,3,3,295,298],[370,2,2,298,300],[371,1,1,300,301],[373,1,1,301,302],[374,2,2,302,304],[375,6,4,304,308],[377,1,1,308,309],[379,3,2,309,311],[380,3,2,311,313],[381,1,1,313,314],[383,7,6,314,320],[384,1,1,320,321],[390,1,1,321,322],[391,5,4,322,326],[392,3,2,326,328],[393,1,1,328,329],[394,2,2,329,331],[395,3,2,331,333],[401,3,2,333,335],[402,1,1,335,336]]],[14,53,48,336,384,[[403,2,2,336,338],[404,41,38,338,376],[410,10,8,376,384]]],[15,49,46,384,430,[[417,1,1,384,385],[419,41,38,385,423],[423,7,7,423,430]]],[16,7,7,430,437,[[426,2,2,430,432],[433,1,1,432,433],[434,4,4,433,437]]],[17,3,2,437,439,[[436,2,1,437,438],[477,1,1,438,439]]],[19,1,1,439,440,[[644,1,1,439,440]]],[20,1,1,440,441,[[664,1,1,440,441]]],[21,1,1,441,442,[[678,1,1,441,442]]],[22,3,2,442,444,[[715,1,1,442,443],[743,2,1,443,444]]],[23,4,3,444,447,[[796,4,3,444,447]]],[25,34,24,447,471,[[805,2,2,447,449],[841,5,4,449,453],[842,4,3,453,456],[843,8,7,456,463],[846,3,2,463,465],[849,12,6,465,471]]],[26,3,3,471,474,[[857,1,1,471,472],[861,2,2,472,474]]],[29,2,1,474,475,[[883,2,1,474,475]]]],[108,109,110,111,112,113,115,116,118,119,121,122,123,124,125,127,128,130,131,132,133,135,136,137,140,152,165,183,186,233,234,276,277,279,281,283,285,287,289,291,298,350,373,414,518,572,586,587,665,675,934,942,961,979,1039,1380,1429,1448,1528,1532,1671,1673,1675,1853,1856,1857,1896,2281,2283,2290,2405,2406,2642,2644,2657,2658,2659,2660,2661,2662,3532,3625,3627,3629,3631,3633,3635,3637,3639,3641,3643,3645,3647,3650,3662,3664,3666,3667,3669,3671,3673,3674,3677,3679,3681,3682,3684,3686,3688,3689,3690,3714,3720,3726,3735,3738,3742,3779,3783,3787,3791,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935,3936,4045,4196,4211,4229,4243,4496,4499,4503,4507,4511,4514,4516,4523,4526,4530,4532,4536,4539,4540,4692,4696,4700,4701,4703,4707,4709,4716,4799,5489,5730,5846,5997,6505,6508,6553,6599,6602,6612,6700,6701,6702,6710,6713,6716,6723,6729,6745,6855,6933,6984,7004,7009,7010,7056,7064,7069,7070,7071,7089,7101,7114,7453,7500,7510,7564,7625,7701,7703,7789,7874,7879,7932,7987,7988,7995,7999,8080,8095,8213,8258,8382,8400,8407,8427,8596,8661,8671,8701,8867,8894,8897,8936,8954,8976,9048,9074,9079,9089,9093,9095,9096,9105,9108,9111,9172,9345,9354,9360,9363,9423,9437,9486,9580,9602,9646,9909,10038,10096,10198,10427,10446,10449,10537,10544,10546,10615,10621,10624,10628,10637,10684,10693,10734,10744,10745,10746,10747,10750,10752,10755,10757,10796,10797,10798,10799,10801,10894,10937,10939,10959,10978,11053,11107,11109,11171,11208,11211,11213,11228,11229,11233,11237,11245,11254,11259,11280,11329,11356,11364,11373,11377,11379,11380,11415,11456,11470,11483,11484,11501,11534,11537,11538,11539,11540,11541,11547,11692,11709,11710,11713,11727,11744,11745,11760,11770,11772,11823,11824,11974,11975,11996,12026,12027,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12042,12044,12045,12046,12048,12050,12052,12053,12054,12055,12057,12058,12059,12060,12061,12062,12063,12065,12068,12069,12085,12087,12091,12092,12093,12094,12096,12204,12205,12206,12210,12211,12213,12221,12227,12399,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12440,12442,12443,12444,12446,12447,12449,12450,12451,12452,12454,12455,12456,12457,12458,12459,12461,12464,12465,12480,12482,12486,12487,12488,12489,12490,12491,12594,12596,12600,12601,12602,12606,12607,12703,12706,12826,12840,12846,12849,12864,12872,13938,16883,17420,17652,18388,18917,20299,20305,20306,20534,20538,21496,21500,21504,21524,21539,21540,21541,21554,21560,21568,21569,21570,21571,21572,21632,21645,21718,21719,21732,21734,21735,21736,21975,22092,22093,22426]]],["hundreds",[26,26,[[1,2,2,0,2,[[67,2,2,0,2]]],[3,4,4,2,6,[[147,4,4,2,6]]],[4,1,1,6,7,[[153,1,1,6,7]]],[8,2,2,7,9,[[257,1,1,7,8],[264,1,1,8,9]]],[9,2,2,9,11,[[284,2,2,9,11]]],[11,5,5,11,16,[[323,5,5,11,16]]],[12,5,5,16,21,[[350,1,1,16,17],[363,1,1,17,18],[364,1,1,18,19],[365,1,1,19,20],[366,1,1,20,21]]],[13,5,5,21,26,[[367,1,1,21,22],[389,3,3,22,25],[391,1,1,25,26]]]],[2020,2024,4678,4712,4716,4718,4907,7794,7969,8479,8482,9833,9838,9839,9844,9848,10761,11103,11110,11144,11170,11196,11657,11670,11676,11709]]],["hundredth",[3,3,[[0,2,2,0,2,[[6,1,1,0,1],[7,1,1,1,2]]],[15,1,1,2,3,[[417,1,1,2,3]]]],[170,196,12393]]],["times",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17470]]]]},{"k":"H3968","v":[["Meah",[2,2,[[15,2,2,0,2,[[415,1,1,0,1],[424,1,1,1,2]]]],[12328,12663]]]]},{"k":"H3969","v":[["hundred",[8,3,[[14,7,2,0,2,[[408,3,1,0,1],[409,4,1,1,2]]],[26,1,1,2,3,[[855,1,1,2,3]]]],[12168,12195,21906]]]]},{"k":"H3970","v":[["desires",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16271]]]]},{"k":"H3971","v":[["*",[21,19,[[2,10,9,0,9,[[110,5,4,0,4],[111,3,3,4,7],[113,2,2,7,9]]],[3,1,1,9,10,[[135,1,1,9,10]]],[4,4,3,10,13,[[167,2,1,10,11],[169,1,1,11,12],[184,1,1,12,13]]],[9,1,1,13,14,[[280,1,1,13,14]]],[17,2,2,14,16,[[446,1,1,14,15],[466,1,1,15,16]]],[19,1,1,16,17,[[636,1,1,16,17]]],[21,1,1,17,18,[[674,1,1,17,18]]],[26,1,1,18,19,[[850,1,1,18,19]]]],[3362,3363,3366,3368,3389,3390,3394,3465,3466,4291,5340,5365,5763,8381,13123,13595,16645,17589,21741]]],["+",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13123]]],["blemish",[15,13,[[2,9,8,0,8,[[110,5,4,0,4],[111,2,2,4,6],[113,2,2,6,8]]],[3,1,1,8,9,[[135,1,1,8,9]]],[4,3,2,9,11,[[167,2,1,9,10],[169,1,1,10,11]]],[9,1,1,11,12,[[280,1,1,11,12]]],[26,1,1,12,13,[[850,1,1,12,13]]]],[3362,3363,3366,3368,3389,3390,3465,3466,4291,5340,5365,8381,21741]]],["blemishes",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3394]]],["blot",[2,2,[[17,1,1,0,1,[[466,1,1,0,1]]],[19,1,1,1,2,[[636,1,1,1,2]]]],[13595,16645]]],["spot",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[21,1,1,1,2,[[674,1,1,1,2]]]],[5763,17589]]]]},{"k":"H3972","v":[["*",[32,32,[[0,6,6,0,6,[[21,1,1,0,1],[29,1,1,1,2],[38,3,3,2,5],[39,1,1,5,6]]],[3,1,1,6,7,[[138,1,1,6,7]]],[4,2,2,7,9,[[165,1,1,7,8],[176,1,1,8,9]]],[6,1,1,9,10,[[224,1,1,9,10]]],[8,9,9,10,19,[[247,2,2,10,12],[255,2,2,12,14],[256,1,1,14,15],[260,3,3,15,18],[264,1,1,18,19]]],[9,2,2,19,21,[[269,1,1,19,20],[279,1,1,20,21]]],[10,2,2,21,23,[[300,1,1,21,22],[308,1,1,22,23]]],[11,1,1,23,24,[[317,1,1,23,24]]],[13,1,1,24,25,[[375,1,1,24,25]]],[20,4,4,25,29,[[663,2,2,25,27],[665,1,1,27,28],[667,1,1,28,29]]],[23,2,2,29,31,[[783,2,2,29,31]]],[31,1,1,31,32,[[891,1,1,31,32]]]],[559,861,1155,1158,1172,1187,4413,5289,5535,6915,7464,7465,7756,7769,7774,7868,7876,7882,7970,8116,8319,9100,9384,9667,11384,17411,17412,17443,17480,19933,19935,22565]]],["+",[13,13,[[0,2,2,0,2,[[38,1,1,0,1],[39,1,1,1,2]]],[4,1,1,2,3,[[165,1,1,2,3]]],[6,1,1,3,4,[[224,1,1,3,4]]],[8,1,1,4,5,[[260,1,1,4,5]]],[9,1,1,5,6,[[269,1,1,5,6]]],[10,2,2,6,8,[[300,1,1,6,7],[308,1,1,7,8]]],[20,3,3,8,11,[[663,2,2,8,10],[665,1,1,10,11]]],[23,2,2,11,13,[[783,2,2,11,13]]]],[1172,1187,5289,6915,7882,8116,9100,9384,17411,17412,17443,19933,19935]]],["any",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5535]]],["fault",[1,1,[[8,1,1,0,1,[[264,1,1,0,1]]]],[7970]]],["ought",[4,4,[[0,1,1,0,1,[[38,1,1,0,1]]],[8,3,3,1,4,[[247,2,2,1,3],[260,1,1,3,4]]]],[1155,7464,7465,7868]]],["somewhat",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9667]]],["thing",[12,12,[[0,3,3,0,3,[[21,1,1,0,1],[29,1,1,1,2],[38,1,1,2,3]]],[3,1,1,3,4,[[138,1,1,3,4]]],[8,4,4,4,8,[[255,2,2,4,6],[256,1,1,6,7],[260,1,1,7,8]]],[9,1,1,8,9,[[279,1,1,8,9]]],[13,1,1,9,10,[[375,1,1,9,10]]],[20,1,1,10,11,[[667,1,1,10,11]]],[31,1,1,11,12,[[891,1,1,11,12]]]],[559,861,1158,4413,7756,7769,7774,7876,8319,11384,17480,22565]]]]},{"k":"H3973","v":[["refuse",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20399]]]]},{"k":"H3974","v":[["*",[19,16,[[0,5,3,0,3,[[0,5,3,0,3]]],[1,7,6,3,9,[[74,1,1,3,4],[76,1,1,4,5],[84,4,3,5,8],[88,1,1,8,9]]],[2,1,1,9,10,[[113,1,1,9,10]]],[3,2,2,10,12,[[120,2,2,10,12]]],[18,2,2,12,14,[[551,1,1,12,13],[567,1,1,13,14]]],[19,1,1,14,15,[[642,1,1,14,15]]],[25,1,1,15,16,[[833,1,1,15,16]]]],[13,14,15,2201,2292,2539,2545,2559,2701,3448,3752,3759,15064,15386,16837,21256]]],["+",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[15]]],["light",[15,13,[[0,2,1,0,1,[[0,2,1,0,1]]],[1,7,6,1,7,[[74,1,1,1,2],[76,1,1,2,3],[84,4,3,3,6],[88,1,1,6,7]]],[2,1,1,7,8,[[113,1,1,7,8]]],[3,2,2,8,10,[[120,2,2,8,10]]],[18,2,2,10,12,[[551,1,1,10,11],[567,1,1,11,12]]],[19,1,1,12,13,[[642,1,1,12,13]]]],[15,2201,2292,2539,2545,2559,2701,3448,3752,3759,15064,15386,16837]]],["lights",[3,3,[[0,2,2,0,2,[[0,2,2,0,2]]],[25,1,1,2,3,[[833,1,1,2,3]]]],[13,14,21256]]]]},{"k":"H3975","v":[["den",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17892]]]]},{"k":"H3976","v":[["*",[15,15,[[2,1,1,0,1,[[108,1,1,0,1]]],[17,2,2,1,3,[[441,1,1,1,2],[466,1,1,2,3]]],[18,1,1,3,4,[[539,1,1,3,4]]],[19,3,3,4,7,[[638,1,1,4,5],[643,1,1,5,6],[647,1,1,6,7]]],[22,2,2,7,9,[[718,2,2,7,9]]],[23,1,1,9,10,[[776,1,1,9,10]]],[25,2,2,10,12,[[806,1,1,10,11],[846,1,1,11,12]]],[27,1,1,12,13,[[873,1,1,12,13]]],[29,1,1,13,14,[[886,1,1,13,14]]],[32,1,1,14,15,[[898,1,1,14,15]]]],[3317,12980,13594,14836,16689,16851,16977,18432,18435,19741,20547,21640,22259,22486,22659]]],["balance",[7,7,[[17,1,1,0,1,[[466,1,1,0,1]]],[18,1,1,1,2,[[539,1,1,1,2]]],[19,3,3,2,5,[[638,1,1,2,3],[643,1,1,3,4],[647,1,1,4,5]]],[22,2,2,5,7,[[718,2,2,5,7]]]],[13594,14836,16689,16851,16977,18432,18435]]],["balances",[8,8,[[2,1,1,0,1,[[108,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]],[23,1,1,2,3,[[776,1,1,2,3]]],[25,2,2,3,5,[[806,1,1,3,4],[846,1,1,4,5]]],[27,1,1,5,6,[[873,1,1,5,6]]],[29,1,1,6,7,[[886,1,1,6,7]]],[32,1,1,7,8,[[898,1,1,7,8]]]],[3317,12980,19741,20547,21640,22259,22486,22659]]]]},{"k":"H3977","v":[["balances",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21901]]]]},{"k":"H3978","v":[["*",[30,29,[[0,4,4,0,4,[[1,1,1,0,1],[2,1,1,1,2],[5,1,1,2,3],[39,1,1,3,4]]],[2,1,1,4,5,[[108,1,1,4,5]]],[4,2,2,5,7,[[172,1,1,5,6],[180,1,1,6,7]]],[6,1,1,7,8,[[224,1,1,7,8]]],[10,1,1,8,9,[[300,1,1,8,9]]],[12,1,1,9,10,[[349,1,1,9,10]]],[13,2,2,10,12,[[375,1,1,10,11],[377,1,1,11,12]]],[14,1,1,12,13,[[405,1,1,12,13]]],[15,1,1,13,14,[[421,1,1,13,14]]],[17,1,1,14,15,[[468,1,1,14,15]]],[18,3,3,15,18,[[521,1,1,15,16],[551,1,1,16,17],[556,1,1,17,18]]],[19,1,1,18,19,[[633,1,1,18,19]]],[22,1,1,19,20,[[740,1,1,19,20]]],[23,4,4,20,24,[[751,1,1,20,21],[760,1,1,21,22],[763,1,1,22,23],[778,1,1,23,24]]],[25,3,2,24,26,[[805,1,1,24,25],[848,2,1,25,26]]],[26,1,1,26,27,[[850,1,1,26,27]]],[34,1,1,27,28,[[903,1,1,27,28]]],[36,1,1,28,29,[[910,1,1,28,29]]]],[39,61,158,1189,3304,5447,5637,6923,9084,10760,11368,11425,12104,12536,13670,14582,15062,15187,16548,18862,19152,19340,19414,19821,20539,21691,21747,22747,22867]]],["+",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1189]]],["food",[5,5,[[0,3,3,0,3,[[1,1,1,0,1],[2,1,1,1,2],[5,1,1,2,3]]],[2,1,1,3,4,[[108,1,1,3,4]]],[19,1,1,4,5,[[633,1,1,4,5]]]],[39,61,158,3304,16548]]],["fruit",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12536]]],["meat",[22,21,[[4,2,2,0,2,[[172,1,1,0,1],[180,1,1,1,2]]],[6,1,1,2,3,[[224,1,1,2,3]]],[10,1,1,3,4,[[300,1,1,3,4]]],[12,1,1,4,5,[[349,1,1,4,5]]],[13,1,1,5,6,[[375,1,1,5,6]]],[14,1,1,6,7,[[405,1,1,6,7]]],[17,1,1,7,8,[[468,1,1,7,8]]],[18,3,3,8,11,[[521,1,1,8,9],[551,1,1,9,10],[556,1,1,10,11]]],[22,1,1,11,12,[[740,1,1,11,12]]],[23,4,4,12,16,[[751,1,1,12,13],[760,1,1,13,14],[763,1,1,14,15],[778,1,1,15,16]]],[25,3,2,16,18,[[805,1,1,16,17],[848,2,1,17,18]]],[26,1,1,18,19,[[850,1,1,18,19]]],[34,1,1,19,20,[[903,1,1,19,20]]],[36,1,1,20,21,[[910,1,1,20,21]]]],[5447,5637,6923,9084,10760,11368,12104,13670,14582,15062,15187,18862,19152,19340,19414,19821,20539,21691,21747,22747,22867]]],["victual",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11425]]]]},{"k":"H3979","v":[["*",[4,4,[[0,2,2,0,2,[[21,2,2,0,2]]],[6,1,1,2,3,[[229,1,1,2,3]]],[19,1,1,3,4,[[657,1,1,3,4]]]],[553,557,7053,17265]]],["knife",[3,3,[[0,2,2,0,2,[[21,2,2,0,2]]],[6,1,1,2,3,[[229,1,1,2,3]]]],[553,557,7053]]],["knives",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17265]]]]},{"k":"H3980","v":[["fuel",[2,2,[[22,2,2,0,2,[[687,2,2,0,2]]]],[17834,17848]]]]},{"k":"H3981","v":[["forces",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13755]]]]},{"k":"H3982","v":[["*",[3,3,[[16,3,3,0,3,[[426,1,1,0,1],[427,1,1,1,2],[434,1,1,2,3]]]],[12717,12744,12866]]],["commandment",[2,2,[[16,2,2,0,2,[[426,1,1,0,1],[427,1,1,1,2]]]],[12717,12744]]],["decree",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12866]]]]},{"k":"H3983","v":[["*",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[12160,21854]]],["appointment",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12160]]],["word",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21854]]]]},{"k":"H3984","v":[["vessels",[7,7,[[14,4,4,0,4,[[407,2,2,0,2],[408,1,1,2,3],[409,1,1,3,4]]],[26,3,3,4,7,[[854,3,3,4,7]]]],[12148,12149,12156,12192,21876,21877,21897]]]]},{"k":"H3985","v":[["*",[41,39,[[0,3,3,0,3,[[36,1,1,0,1],[38,1,1,1,2],[47,1,1,2,3]]],[1,6,5,3,8,[[53,1,1,3,4],[56,1,1,4,5],[59,1,1,5,6],[65,1,1,6,7],[71,2,1,7,8]]],[3,3,3,8,11,[[136,1,1,8,9],[138,2,2,9,11]]],[4,1,1,11,12,[[177,1,1,11,12]]],[8,2,2,12,14,[[243,1,1,12,13],[263,1,1,13,14]]],[9,2,2,14,16,[[268,1,1,14,15],[279,1,1,15,16]]],[10,2,2,16,18,[[310,1,1,16,17],[311,1,1,17,18]]],[11,1,1,18,19,[[317,1,1,18,19]]],[15,1,1,19,20,[[421,1,1,19,20]]],[16,1,1,20,21,[[426,1,1,20,21]]],[17,1,1,21,22,[[441,1,1,21,22]]],[18,2,2,22,24,[[554,1,1,22,23],[555,1,1,23,24]]],[19,3,3,24,27,[[628,1,1,24,25],[648,2,2,25,27]]],[22,1,1,27,28,[[679,1,1,27,28]]],[23,10,9,28,37,[[747,1,1,28,29],[749,2,1,29,30],[752,1,1,30,31],[753,1,1,31,32],[755,1,1,32,33],[759,1,1,33,34],[769,1,1,34,35],[775,1,1,35,36],[794,1,1,36,37]]],[27,1,1,37,38,[[872,1,1,37,38]]],[37,1,1,38,39,[[917,1,1,38,39]]]],[1118,1157,1470,1624,1699,1780,1975,2130,4332,4388,4389,5554,7388,7965,8072,8326,9443,9466,9663,12528,12714,12985,15095,15123,16424,16991,17009,17674,19005,19061,19158,19181,19236,19333,19562,19706,20199,22245,22973]]],["+",[2,1,[[1,2,1,0,1,[[71,2,1,0,1]]]],[2130]]],["refuse",[9,9,[[1,3,3,0,3,[[53,1,1,0,1],[59,1,1,1,2],[65,1,1,2,3]]],[19,2,2,3,5,[[648,2,2,3,5]]],[22,1,1,5,6,[[679,1,1,5,6]]],[23,3,3,6,9,[[752,1,1,6,7],[753,1,1,7,8],[769,1,1,8,9]]]],[1624,1780,1975,16991,17009,17674,19158,19181,19562]]],["refused",[24,23,[[0,3,3,0,3,[[36,1,1,0,1],[38,1,1,1,2],[47,1,1,2,3]]],[3,1,1,3,4,[[136,1,1,3,4]]],[8,2,2,4,6,[[243,1,1,4,5],[263,1,1,5,6]]],[9,2,2,6,8,[[268,1,1,6,7],[279,1,1,7,8]]],[10,2,2,8,10,[[310,1,1,8,9],[311,1,1,9,10]]],[11,1,1,10,11,[[317,1,1,10,11]]],[15,1,1,11,12,[[421,1,1,11,12]]],[16,1,1,12,13,[[426,1,1,12,13]]],[17,1,1,13,14,[[441,1,1,13,14]]],[18,2,2,14,16,[[554,1,1,14,15],[555,1,1,15,16]]],[19,1,1,16,17,[[628,1,1,16,17]]],[23,5,4,17,21,[[749,2,1,17,18],[755,1,1,18,19],[775,1,1,19,20],[794,1,1,20,21]]],[27,1,1,21,22,[[872,1,1,21,22]]],[37,1,1,22,23,[[917,1,1,22,23]]]],[1118,1157,1470,4332,7388,7965,8072,8326,9443,9466,9663,12528,12714,12985,15095,15123,16424,19061,19236,19706,20199,22245,22973]]],["refusedst",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19005]]],["refuseth",[5,5,[[1,1,1,0,1,[[56,1,1,0,1]]],[3,2,2,1,3,[[138,2,2,1,3]]],[4,1,1,3,4,[[177,1,1,3,4]]],[23,1,1,4,5,[[759,1,1,4,5]]]],[1699,4388,4389,5554,19333]]]]},{"k":"H3986","v":[["refuse",[4,4,[[1,3,3,0,3,[[57,1,1,0,1],[58,1,1,1,2],[59,1,1,2,3]]],[23,1,1,3,4,[[782,1,1,3,4]]]],[1712,1744,1781,19916]]]]},{"k":"H3987","v":[["refuse",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19276]]]]},{"k":"H3988","v":[["*",[76,69,[[2,3,3,0,3,[[115,3,3,0,3]]],[3,2,2,3,5,[[127,1,1,3,4],[130,1,1,4,5]]],[6,1,1,5,6,[[219,1,1,5,6]]],[8,9,6,6,12,[[243,2,1,6,7],[245,1,1,7,8],[250,4,2,8,10],[251,2,2,10,12]]],[11,3,3,12,15,[[329,2,2,12,14],[335,1,1,14,15]]],[17,12,12,15,27,[[440,1,1,15,16],[442,2,2,16,18],[443,1,1,18,19],[444,1,1,19,20],[445,1,1,20,21],[454,1,1,21,22],[465,1,1,22,23],[466,1,1,23,24],[469,1,1,24,25],[471,1,1,25,26],[477,1,1,26,27]]],[18,9,9,27,36,[[492,1,1,27,28],[513,1,1,28,29],[530,1,1,29,30],[535,1,1,30,31],[555,2,2,31,33],[566,1,1,33,34],[583,1,1,34,35],[595,1,1,35,36]]],[19,2,2,36,38,[[630,1,1,36,37],[642,1,1,37,38]]],[22,10,10,38,48,[[683,1,1,38,39],[685,2,2,39,41],[686,1,1,41,42],[708,1,1,42,43],[709,1,1,43,44],[711,2,2,44,46],[719,1,1,46,47],[732,1,1,47,48]]],[23,12,10,48,58,[[746,1,1,48,49],[748,1,1,49,50],[750,3,2,50,52],[751,1,1,52,53],[752,1,1,53,54],[758,2,1,54,55],[775,1,1,55,56],[777,2,2,56,58]]],[24,2,1,58,59,[[801,2,1,58,59]]],[25,6,6,59,65,[[806,1,1,59,60],[821,3,3,60,63],[822,2,2,63,65]]],[27,3,2,65,67,[[865,2,1,65,66],[870,1,1,66,67]]],[29,2,2,67,69,[[880,1,1,67,68],[883,1,1,68,69]]]],[3539,3567,3568,4044,4139,6792,7376,7437,7583,7586,7596,7602,9998,10003,10192,12968,13013,13024,13049,13072,13089,13315,13558,13601,13716,13741,13928,14091,14442,14724,14786,15172,15180,15364,15675,15891,16466,16839,17763,17797,17798,17813,18229,18257,18287,18294,18460,18729,19002,19057,19108,19119,19148,19162,19312,19728,19799,19801,20464,20552,20908,20911,20919,20954,20957,22139,22225,22383,22444]]],["+",[13,11,[[3,1,1,0,1,[[127,1,1,0,1]]],[8,3,3,1,4,[[245,1,1,1,2],[250,2,2,2,4]]],[11,2,2,4,6,[[329,1,1,4,5],[335,1,1,5,6]]],[22,2,2,6,8,[[683,1,1,6,7],[686,1,1,7,8]]],[23,2,1,8,9,[[758,2,1,8,9]]],[24,2,1,9,10,[[801,2,1,9,10]]],[29,1,1,10,11,[[880,1,1,10,11]]]],[4044,7437,7583,7586,9998,10192,17763,17813,19312,20464,22383]]],["Reprobate",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19119]]],["abhor",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13928]]],["abhorred",[2,2,[[18,2,2,0,2,[[555,1,1,0,1],[566,1,1,1,2]]]],[15172,15364]]],["abhorreth",[1,1,[[18,1,1,0,1,[[513,1,1,0,1]]]],[14442]]],["away",[7,7,[[2,1,1,0,1,[[115,1,1,0,1]]],[17,1,1,1,2,[[443,1,1,1,2]]],[18,1,1,2,3,[[535,1,1,2,3]]],[22,2,2,3,5,[[709,1,1,3,4],[719,1,1,4,5]]],[23,1,1,5,6,[[777,1,1,5,6]]],[27,1,1,6,7,[[870,1,1,6,7]]]],[3568,13049,14786,18257,18460,19801,22225]]],["contemn",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20957]]],["contemneth",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20954]]],["despise",[9,9,[[2,1,1,0,1,[[115,1,1,0,1]]],[17,4,4,1,5,[[440,1,1,1,2],[444,1,1,2,3],[445,1,1,3,4],[466,1,1,4,5]]],[19,1,1,5,6,[[630,1,1,5,6]]],[22,1,1,6,7,[[708,1,1,6,7]]],[23,1,1,7,8,[[748,1,1,7,8]]],[29,1,1,8,9,[[883,1,1,8,9]]]],[3539,12968,13072,13089,13601,16466,18229,19057,22444]]],["despised",[10,10,[[2,1,1,0,1,[[115,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[6,1,1,2,3,[[219,1,1,2,3]]],[17,1,1,3,4,[[454,1,1,3,4]]],[18,2,2,4,6,[[530,1,1,4,5],[583,1,1,5,6]]],[22,1,1,6,7,[[711,1,1,6,7]]],[25,3,3,7,10,[[821,3,3,7,10]]]],[3567,4139,6792,13315,14724,15675,18287,20908,20911,20919]]],["despiseth",[3,3,[[17,1,1,0,1,[[471,1,1,0,1]]],[19,1,1,1,2,[[642,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]]],[13741,16839,18294]]],["disdained",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13558]]],["loathe",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13024]]],["loathsome",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13013]]],["off",[2,2,[[23,2,2,0,2,[[775,1,1,0,1],[777,1,1,1,2]]]],[19728,19799]]],["person",[1,1,[[18,1,1,0,1,[[492,1,1,0,1]]]],[14091]]],["refuse",[3,3,[[17,1,1,0,1,[[469,1,1,0,1]]],[22,2,2,1,3,[[685,2,2,1,3]]]],[13716,17797,17798]]],["refused",[5,5,[[8,1,1,0,1,[[251,1,1,0,1]]],[18,2,2,1,3,[[555,1,1,1,2],[595,1,1,2,3]]],[22,1,1,3,4,[[732,1,1,3,4]]],[25,1,1,4,5,[[806,1,1,4,5]]]],[7602,15180,15891,18729,20552]]],["reject",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22139]]],["rejected",[12,11,[[8,5,4,0,4,[[243,2,1,0,1],[250,2,2,1,3],[251,1,1,3,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[23,5,5,5,10,[[746,1,1,5,6],[750,2,2,6,8],[751,1,1,8,9],[752,1,1,9,10]]],[27,1,1,10,11,[[865,1,1,10,11]]]],[7376,7583,7586,7596,10003,19002,19108,19119,19148,19162,22139]]]]},{"k":"H3989","v":[["baken",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2766]]]]},{"k":"H3990","v":[["darkness",[1,1,[[5,1,1,0,1,[[210,1,1,0,1]]]],[6483]]]]},{"k":"H3991","v":[["darkness",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18996]]]]},{"k":"H3992","v":[["*",[4,4,[[2,3,3,0,3,[[102,2,2,0,2],[103,1,1,2,3]]],[25,1,1,3,4,[[829,1,1,3,4]]]],[3103,3104,3155,21181]]],["fretting",[3,3,[[2,3,3,0,3,[[102,2,2,0,2],[103,1,1,2,3]]]],[3103,3104,3155]]],["pricking",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21181]]]]},{"k":"H3993","v":[["*",[5,4,[[5,1,1,0,1,[[194,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[13,2,1,2,3,[[379,2,1,2,3]]],[18,1,1,3,4,[[487,1,1,3,4]]]],[6011,6789,11466,14049]]],["ambush",[1,1,[[5,1,1,0,1,[[194,1,1,0,1]]]],[6011]]],["ambushment",[2,1,[[13,2,1,0,1,[[379,2,1,0,1]]]],[11466]]],["places",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14049]]],["wait",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6789]]]]},{"k":"H3994","v":[["*",[5,5,[[4,1,1,0,1,[[180,1,1,0,1]]],[19,2,2,1,3,[[630,1,1,1,2],[655,1,1,2,3]]],[38,2,2,3,5,[[926,1,1,3,4],[927,1,1,4,5]]]],[5631,16488,17223,23105,23129]]],["+",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5631]]],["curse",[4,4,[[19,2,2,0,2,[[630,1,1,0,1],[655,1,1,1,2]]],[38,2,2,2,4,[[926,1,1,2,3],[927,1,1,3,4]]]],[16488,17223,23105,23129]]]]},{"k":"H3995","v":[["separate",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6274]]]]},{"k":"H3996","v":[["*",[23,23,[[4,1,1,0,1,[[163,1,1,0,1]]],[5,2,2,1,3,[[187,1,1,1,2],[209,1,1,2,3]]],[6,2,2,3,5,[[211,2,2,3,5]]],[11,2,2,5,7,[[323,1,1,5,6],[328,1,1,6,7]]],[12,2,2,7,9,[[341,1,1,7,8],[346,1,1,8,9]]],[13,2,2,9,11,[[389,2,2,9,11]]],[18,3,3,11,14,[[527,1,1,11,12],[581,1,1,12,13],[590,1,1,13,14]]],[19,1,1,14,15,[[635,1,1,14,15]]],[23,1,1,15,16,[[782,1,1,15,16]]],[25,5,5,16,21,[[827,1,1,16,17],[834,1,1,17,18],[843,1,1,18,19],[845,1,1,19,20],[847,1,1,20,21]]],[37,1,1,21,22,[[918,1,1,21,22]]],[38,1,1,22,23,[[925,1,1,22,23]]]],[5238,5855,6464,6533,6534,9845,9981,10424,10634,11669,11671,14669,15590,15816,16605,19909,21110,21311,21561,21604,21674,22983,23100]]],["+",[2,2,[[5,1,1,0,1,[[209,1,1,0,1]]],[37,1,1,1,2,[[918,1,1,1,2]]]],[6464,22983]]],["came",[1,1,[[11,1,1,0,1,[[323,1,1,0,1]]]],[9845]]],["cometh",[1,1,[[25,1,1,0,1,[[834,1,1,0,1]]]],[21311]]],["coming",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16605]]],["down",[6,6,[[4,1,1,0,1,[[163,1,1,0,1]]],[5,1,1,1,2,[[187,1,1,1,2]]],[18,3,3,2,5,[[527,1,1,2,3],[581,1,1,3,4],[590,1,1,4,5]]],[38,1,1,5,6,[[925,1,1,5,6]]]],[5238,5855,14669,15590,15816,23100]]],["entering",[1,1,[[13,1,1,0,1,[[389,1,1,0,1]]]],[11671]]],["entrance",[3,3,[[6,2,2,0,2,[[211,2,2,0,2]]],[12,1,1,2,3,[[341,1,1,2,3]]]],[6533,6534,10424]]],["entry",[5,5,[[11,1,1,0,1,[[328,1,1,0,1]]],[12,1,1,1,2,[[346,1,1,1,2]]],[23,1,1,2,3,[[782,1,1,2,3]]],[25,2,2,3,5,[[843,1,1,3,4],[847,1,1,4,5]]]],[9981,10634,19909,21561,21674]]],["in",[2,2,[[13,1,1,0,1,[[389,1,1,0,1]]],[25,1,1,1,2,[[845,1,1,1,2]]]],[11669,21604]]],["into",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21110]]]]},{"k":"H3997","v":[["entry",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21124]]]]},{"k":"H3998","v":[["perplexity",[2,2,[[22,1,1,0,1,[[700,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]]],[18057,22668]]]]},{"k":"H3999","v":[["flood",[13,12,[[0,12,11,0,11,[[5,1,1,0,1],[6,4,4,1,5],[8,4,3,5,8],[9,2,2,8,10],[10,1,1,10,11]]],[18,1,1,11,12,[[506,1,1,11,12]]]],[154,165,166,169,176,216,220,233,235,266,276,14318]]]]},{"k":"H4000","v":[["taught",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11969]]]]},{"k":"H4001","v":[["*",[3,3,[[22,3,3,0,3,[[696,2,2,0,2],[700,1,1,2,3]]]],[17999,18004,18057]]],["down",[2,2,[[22,2,2,0,2,[[696,1,1,0,1],[700,1,1,1,2]]]],[17999,18057]]],["foot",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18004]]]]},{"k":"H4002","v":[["*",[3,3,[[20,1,1,0,1,[[670,1,1,0,1]]],[22,2,2,1,3,[[713,1,1,1,2],[727,1,1,2,3]]]],[17529,18327,18646]]],["fountain",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17529]]],["springs",[2,2,[[22,2,2,0,2,[[713,1,1,0,1],[727,1,1,1,2]]]],[18327,18646]]]]},{"k":"H4003","v":[["void",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22709]]]]},{"k":"H4004","v":[["choice",[2,2,[[11,2,2,0,2,[[315,1,1,0,1],[331,1,1,1,2]]]],[9595,10084]]]]},{"k":"H4005","v":[["*",[11,11,[[0,1,1,0,1,[[22,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[4,1,1,2,3,[[164,1,1,2,3]]],[22,1,1,3,4,[[715,1,1,3,4]]],[23,2,2,4,6,[[766,1,1,4,5],[792,1,1,5,6]]],[25,4,4,6,10,[[824,1,1,6,7],[825,2,2,7,9],[832,1,1,9,10]]],[26,1,1,10,11,[[860,1,1,10,11]]]],[577,1924,5251,18376,19461,20095,21014,21060,21061,21246,22051]]],["choice",[7,7,[[0,1,1,0,1,[[22,1,1,0,1]]],[4,1,1,1,2,[[164,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]],[23,1,1,3,4,[[766,1,1,3,4]]],[25,3,3,4,7,[[825,2,2,4,6],[832,1,1,6,7]]]],[577,5251,18376,19461,21060,21061,21246]]],["chosen",[4,4,[[1,1,1,0,1,[[64,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]],[25,1,1,2,3,[[824,1,1,2,3]]],[26,1,1,3,4,[[860,1,1,3,4]]]],[1924,20095,21014,22051]]]]},{"k":"H4006","v":[["Mibhar",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10711]]]]},{"k":"H4007","v":[["expectation",[3,3,[[22,2,2,0,2,[[698,2,2,0,2]]],[37,1,1,2,3,[[919,1,1,2,3]]]],[18034,18035,23004]]]]},{"k":"H4008","v":[["uttered",[2,2,[[3,2,2,0,2,[[146,2,2,0,2]]]],[4654,4656]]]]},{"k":"H4009","v":[["*",[15,15,[[17,3,3,0,3,[[443,1,1,0,1],[453,1,1,1,2],[466,1,1,2,3]]],[18,3,3,3,6,[[517,1,1,3,4],[542,1,1,4,5],[548,1,1,5,6]]],[19,4,4,6,10,[[641,1,1,6,7],[648,1,1,7,8],[649,1,1,8,9],[652,1,1,9,10]]],[22,1,1,10,11,[[710,1,1,10,11]]],[23,3,3,11,14,[[746,1,1,11,12],[761,1,1,12,13],[792,1,1,13,14]]],[25,1,1,14,15,[[830,1,1,14,15]]]],[13043,13290,13612,14529,14865,14981,16798,17006,17034,17132,18277,19002,19364,20093,21199]]],["Confidence",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17132]]],["confidence",[7,7,[[17,2,2,0,2,[[453,1,1,0,1],[466,1,1,1,2]]],[18,1,1,2,3,[[542,1,1,2,3]]],[19,2,2,3,5,[[641,1,1,3,4],[648,1,1,4,5]]],[23,1,1,5,6,[[792,1,1,5,6]]],[25,1,1,6,7,[[830,1,1,6,7]]]],[13290,13612,14865,16798,17006,20093,21199]]],["confidences",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[19002]]],["hope",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19364]]],["sure",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18277]]],["trust",[4,4,[[17,1,1,0,1,[[443,1,1,0,1]]],[18,2,2,1,3,[[517,1,1,1,2],[548,1,1,2,3]]],[19,1,1,3,4,[[649,1,1,3,4]]]],[13043,14529,14981,17034]]]]},{"k":"H4010","v":[["comfort",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19171]]]]},{"k":"H4011","v":[["frame",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21479]]]]},{"k":"H4012","v":[["Mebunnai",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8680]]]]},{"k":"H4013","v":[["*",[37,37,[[3,3,3,0,3,[[129,1,1,0,1],[148,2,2,1,3]]],[5,3,3,3,6,[[196,1,1,3,4],[205,2,2,4,6]]],[8,1,1,6,7,[[241,1,1,6,7]]],[9,1,1,7,8,[[290,1,1,7,8]]],[11,5,5,8,13,[[315,1,1,8,9],[320,1,1,9,10],[322,1,1,10,11],[329,1,1,11,12],[330,1,1,12,13]]],[13,1,1,13,14,[[383,1,1,13,14]]],[18,2,2,14,16,[[566,1,1,14,15],[585,1,1,15,16]]],[22,3,3,16,19,[[695,1,1,16,17],[703,1,1,17,18],[712,1,1,18,19]]],[23,7,7,19,26,[[745,1,1,19,20],[748,1,1,20,21],[749,1,1,21,22],[750,1,1,22,23],[752,1,1,23,24],[778,1,1,24,25],[792,1,1,25,26]]],[24,2,2,26,28,[[798,2,2,26,28]]],[26,3,3,28,31,[[860,3,3,28,31]]],[27,1,1,31,32,[[871,1,1,31,32]]],[29,1,1,32,33,[[883,1,1,32,33]]],[32,1,1,33,34,[[897,1,1,33,34]]],[33,2,2,34,36,[[902,2,2,34,36]]],[34,1,1,36,37,[[903,1,1,36,37]]]],[4094,4735,4754,6084,6350,6356,7349,8699,9595,9739,9795,9992,10032,11542,15366,15752,17986,18130,18316,18964,19032,19075,19116,19167,19808,20098,20334,20337,22051,22060,22075,22239,22432,22644,22724,22726,22741]]],["+",[2,2,[[8,1,1,0,1,[[241,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[7349,22075]]],["defenced",[4,4,[[23,4,4,0,4,[[745,1,1,0,1],[748,1,1,1,2],[752,1,1,2,3],[778,1,1,3,4]]]],[18964,19032,19167,19808]]],["fenced",[11,11,[[3,2,2,0,2,[[148,2,2,0,2]]],[5,2,2,2,4,[[196,1,1,2,3],[205,1,1,3,4]]],[11,4,4,4,8,[[315,1,1,4,5],[322,1,1,5,6],[329,1,1,6,7],[330,1,1,7,8]]],[13,1,1,8,9,[[383,1,1,8,9]]],[23,1,1,9,10,[[749,1,1,9,10]]],[26,1,1,10,11,[[860,1,1,10,11]]]],[4735,4754,6084,6356,9595,9795,9992,10032,11542,19075,22051]]],["fortress",[4,4,[[22,2,2,0,2,[[695,1,1,0,1],[703,1,1,1,2]]],[23,1,1,2,3,[[750,1,1,2,3]]],[29,1,1,3,4,[[883,1,1,3,4]]]],[17986,18130,19116,22432]]],["fortresses",[2,2,[[22,1,1,0,1,[[712,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]]],[18316,22239]]],["hold",[2,2,[[9,1,1,0,1,[[290,1,1,0,1]]],[34,1,1,1,2,[[903,1,1,1,2]]]],[8699,22741]]],["holds",[10,10,[[3,1,1,0,1,[[129,1,1,0,1]]],[11,1,1,1,2,[[320,1,1,1,2]]],[18,1,1,2,3,[[566,1,1,2,3]]],[23,1,1,3,4,[[792,1,1,3,4]]],[24,2,2,4,6,[[798,2,2,4,6]]],[26,1,1,6,7,[[860,1,1,6,7]]],[32,1,1,7,8,[[897,1,1,7,8]]],[33,2,2,8,10,[[902,2,2,8,10]]]],[4094,9739,15366,20098,20334,20337,22060,22644,22724,22726]]],["strong",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[18,1,1,1,2,[[585,1,1,1,2]]]],[6350,15752]]]]},{"k":"H4014","v":[["Mibzar",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1082,10305]]]]},{"k":"H4015","v":[["fugitives",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20846]]]]},{"k":"H4016","v":[["secrets",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5558]]]]},{"k":"H4017","v":[["Mibsam",[3,3,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,2,2,1,3,[[338,1,1,1,2],[341,1,1,2,3]]]],[671,10281,10410]]]]},{"k":"H4018","v":[["places",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21678]]]]},{"k":"H4019","v":[["Magbish",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12057]]]]},{"k":"H4020","v":[["ends",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2307]]]]},{"k":"H4021","v":[["bonnets",[4,4,[[1,3,3,0,3,[[77,1,1,0,1],[78,1,1,1,2],[88,1,1,2,3]]],[2,1,1,3,4,[[97,1,1,3,4]]]],[2333,2345,2692,2930]]]]},{"k":"H4022","v":[["*",[8,7,[[4,5,4,0,4,[[185,5,4,0,4]]],[21,3,3,4,7,[[674,2,2,4,6],[677,1,1,6,7]]]],[5823,5824,5825,5826,17595,17598,17640]]],["+",[5,4,[[4,5,4,0,4,[[185,5,4,0,4]]]],[5823,5824,5825,5826]]],["pleasant",[3,3,[[21,3,3,0,3,[[674,2,2,0,2],[677,1,1,2,3]]]],[17595,17598,17640]]]]},{"k":"H4023","v":[["*",[12,12,[[5,2,2,0,2,[[198,1,1,0,1],[203,1,1,1,2]]],[6,2,2,2,4,[[211,1,1,2,3],[215,1,1,3,4]]],[10,2,2,4,6,[[294,1,1,4,5],[299,1,1,5,6]]],[11,3,3,6,9,[[321,1,1,6,7],[335,2,2,7,9]]],[12,1,1,9,10,[[344,1,1,9,10]]],[13,1,1,10,11,[[401,1,1,10,11]]],[37,1,1,11,12,[[922,1,1,11,12]]]],[6151,6286,6536,6642,8856,9066,9783,10194,10195,10564,11988,23056]]],["+",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10195]]],["Megiddo",[10,10,[[5,2,2,0,2,[[198,1,1,0,1],[203,1,1,1,2]]],[6,2,2,2,4,[[211,1,1,2,3],[215,1,1,3,4]]],[10,2,2,4,6,[[294,1,1,4,5],[299,1,1,5,6]]],[11,2,2,6,8,[[321,1,1,6,7],[335,1,1,7,8]]],[12,1,1,8,9,[[344,1,1,8,9]]],[13,1,1,9,10,[[401,1,1,9,10]]]],[6151,6286,6536,6642,8856,9066,9783,10194,10564,11988]]],["Megiddon",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23056]]]]},{"k":"H4024","v":[["*",[7,7,[[1,1,1,0,1,[[63,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[23,2,2,3,5,[[788,1,1,3,4],[790,1,1,4,5]]],[25,2,2,5,7,[[830,1,1,5,6],[831,1,1,6,7]]]],[1891,4767,8653,20011,20059,21193,21210]]],["+",[2,2,[[25,2,2,0,2,[[830,1,1,0,1],[831,1,1,1,2]]]],[21193,21210]]],["Migdol",[4,4,[[1,1,1,0,1,[[63,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]],[23,2,2,2,4,[[788,1,1,2,3],[790,1,1,3,4]]]],[1891,4767,20011,20059]]],["tower",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8653]]]]},{"k":"H4025","v":[["Magdiel",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1083,10306]]]]},{"k":"H4026","v":[["*",[50,45,[[0,3,3,0,3,[[10,2,2,0,2],[34,1,1,2,3]]],[6,9,7,3,10,[[218,2,2,3,5],[219,7,5,5,10]]],[11,3,3,10,13,[[321,1,1,10,11],[329,1,1,11,12],[330,1,1,12,13]]],[12,1,1,13,14,[[364,1,1,13,14]]],[13,6,6,14,20,[[380,1,1,14,15],[392,3,3,15,18],[393,1,1,18,19],[398,1,1,19,20]]],[15,10,8,20,28,[[415,6,5,20,25],[420,1,1,25,26],[424,3,2,26,28]]],[18,2,2,28,30,[[525,1,1,28,29],[538,1,1,29,30]]],[19,1,1,30,31,[[645,1,1,30,31]]],[21,5,4,31,35,[[674,1,1,31,32],[675,1,1,32,33],[677,2,1,33,34],[678,1,1,34,35]]],[22,4,4,35,39,[[680,1,1,35,36],[683,1,1,36,37],[708,1,1,37,38],[711,1,1,38,39]]],[23,1,1,39,40,[[775,1,1,39,40]]],[25,3,3,40,43,[[827,2,2,40,42],[828,1,1,42,43]]],[32,1,1,43,44,[[896,1,1,43,44]]],[37,1,1,44,45,[[924,1,1,44,45]]]],[270,271,1032,6728,6736,6800,6801,6803,6805,6806,9773,9992,10032,11134,11482,11741,11742,11747,11759,11880,12328,12338,12352,12353,12354,12497,12662,12663,14646,14822,16911,17586,17611,17631,17650,17700,17741,18242,18297,19729,21104,21109,21132,22628,23078]]],["+",[3,3,[[11,2,2,0,2,[[329,1,1,0,1],[330,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]]],[9992,10032,19729]]],["castles",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11134]]],["flowers",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17611]]],["pulpit",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12497]]],["tower",[31,26,[[0,3,3,0,3,[[10,2,2,0,2],[34,1,1,2,3]]],[6,9,7,3,10,[[218,2,2,3,5],[219,7,5,5,10]]],[11,1,1,10,11,[[321,1,1,10,11]]],[15,9,7,11,18,[[415,6,5,11,16],[424,3,2,16,18]]],[18,1,1,18,19,[[538,1,1,18,19]]],[19,1,1,19,20,[[645,1,1,19,20]]],[21,3,2,20,22,[[674,1,1,20,21],[677,2,1,21,22]]],[22,2,2,22,24,[[680,1,1,22,23],[683,1,1,23,24]]],[32,1,1,24,25,[[896,1,1,24,25]]],[37,1,1,25,26,[[924,1,1,25,26]]]],[270,271,1032,6728,6736,6800,6801,6803,6805,6806,9773,12328,12338,12352,12353,12354,12662,12663,14822,16911,17586,17631,17700,17741,22628,23078]]],["towers",[13,13,[[13,6,6,0,6,[[380,1,1,0,1],[392,3,3,1,4],[393,1,1,4,5],[398,1,1,5,6]]],[18,1,1,6,7,[[525,1,1,6,7]]],[21,1,1,7,8,[[678,1,1,7,8]]],[22,2,2,8,10,[[708,1,1,8,9],[711,1,1,9,10]]],[25,3,3,10,13,[[827,2,2,10,12],[828,1,1,12,13]]]],[11482,11741,11742,11747,11759,11880,14646,17650,18242,18297,21104,21109,21132]]]]},{"k":"H4027","v":[["Migdalel",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6359]]]]},{"k":"H4028","v":[["Migdalgad",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6239]]]]},{"k":"H4029","v":[["Edar",[1,1,[[0,1,1,0,1,[[34,1,1,0,1]]]],[1032]]]]},{"k":"H4030","v":[["*",[4,4,[[0,1,1,0,1,[[23,1,1,0,1]]],[13,2,2,1,3,[[387,1,1,1,2],[398,1,1,2,3]]],[14,1,1,3,4,[[403,1,1,3,4]]]],[644,11627,11898,12022]]],["presents",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11898]]],["things",[3,3,[[0,1,1,0,1,[[23,1,1,0,1]]],[13,1,1,1,2,[[387,1,1,1,2]]],[14,1,1,2,3,[[403,1,1,2,3]]]],[644,11627,12022]]]]},{"k":"H4031","v":[["Magog",[4,4,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[25,2,2,2,4,[[839,1,1,2,3],[840,1,1,3,4]]]],[236,10257,21427,21454]]]]},{"k":"H4032","v":[["*",[8,8,[[18,1,1,0,1,[[508,1,1,0,1]]],[22,1,1,1,2,[[709,1,1,1,2]]],[23,5,5,2,7,[[750,1,1,2,3],[764,2,2,3,5],[790,1,1,5,6],[793,1,1,6,7]]],[24,1,1,7,8,[[798,1,1,7,8]]]],[14344,18259,19114,19426,19432,20050,20156,20354]]],["+",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18259]]],["Fear",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20156]]],["fear",[4,4,[[18,1,1,0,1,[[508,1,1,0,1]]],[23,3,3,1,4,[[750,1,1,1,2],[764,1,1,2,3],[790,1,1,3,4]]]],[14344,19114,19432,20050]]],["terror",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19426]]],["terrors",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20354]]]]},{"k":"H4033","v":[["*",[11,10,[[0,6,5,0,5,[[16,1,1,0,1],[27,1,1,1,2],[35,1,1,2,3],[36,1,1,3,4],[46,2,1,4,5]]],[1,1,1,5,6,[[55,1,1,5,6]]],[17,1,1,6,7,[[453,1,1,6,7]]],[18,2,2,7,9,[[532,1,1,7,8],[596,1,1,8,9]]],[25,1,1,9,10,[[821,1,1,9,10]]]],[405,777,1047,1084,1429,1659,13295,14747,15952,20933]]],["+",[1,1,[[0,1,1,0,1,[[16,1,1,0,1]]]],[405]]],["dwellings",[2,2,[[17,1,1,0,1,[[453,1,1,0,1]]],[18,1,1,1,2,[[532,1,1,1,2]]]],[13295,14747]]],["pilgrimage",[4,3,[[0,2,1,0,1,[[46,2,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]]],[1429,1659,15952]]],["sojourn",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20933]]],["stranger",[2,2,[[0,2,2,0,2,[[27,1,1,0,1],[36,1,1,1,2]]]],[777,1084]]],["strangers",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1047]]]]},{"k":"H4034","v":[["fear",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16680]]]]},{"k":"H4035","v":[["*",[3,3,[[18,1,1,0,1,[[511,1,1,0,1]]],[22,1,1,1,2,[[744,1,1,1,2]]],[36,1,1,2,3,[[910,1,1,2,3]]]],[14392,18926,22874]]],["barn",[1,1,[[36,1,1,0,1,[[910,1,1,0,1]]]],[22874]]],["fears",[2,2,[[18,1,1,0,1,[[511,1,1,0,1]]],[22,1,1,1,2,[[744,1,1,1,2]]]],[14392,18926]]]]},{"k":"H4036","v":[["Magormissabib",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19425]]]]},{"k":"H4037","v":[["axes",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8317]]]]},{"k":"H4038","v":[["sickle",[2,2,[[23,1,1,0,1,[[794,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]]],[20182,22356]]]]},{"k":"H4039","v":[["*",[21,19,[[18,1,1,0,1,[[517,1,1,0,1]]],[23,14,12,1,13,[[780,14,12,1,13]]],[25,4,4,13,17,[[803,1,1,13,14],[804,3,3,14,17]]],[37,2,2,17,19,[[915,2,2,17,19]]]],[14532,19844,19846,19848,19856,19862,19863,19865,19867,19869,19870,19871,19874,20501,20503,20504,20505,22937,22938]]],["roll",[20,18,[[23,14,12,0,12,[[780,14,12,0,12]]],[25,4,4,12,16,[[803,1,1,12,13],[804,3,3,13,16]]],[37,2,2,16,18,[[915,2,2,16,18]]]],[19844,19846,19848,19856,19862,19863,19865,19867,19869,19870,19871,19874,20501,20503,20504,20505,22937,22938]]],["volume",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14532]]]]},{"k":"H4040","v":[["roll",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12153]]]]},{"k":"H4041","v":[["up",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22740]]]]},{"k":"H4042","v":[["*",[3,3,[[0,1,1,0,1,[[13,1,1,0,1]]],[19,1,1,1,2,[[631,1,1,1,2]]],[27,1,1,2,3,[[872,1,1,2,3]]]],[356,16499,22248]]],["deliver",[2,2,[[19,1,1,0,1,[[631,1,1,0,1]]],[27,1,1,1,2,[[872,1,1,1,2]]]],[16499,22248]]],["delivered",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[356]]]]},{"k":"H4043","v":[["*",[63,60,[[0,1,1,0,1,[[14,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[9,5,4,3,7,[[267,2,1,3,4],[288,3,3,4,7]]],[10,4,3,7,10,[[300,2,1,7,8],[304,2,2,8,10]]],[11,1,1,10,11,[[331,1,1,10,11]]],[12,1,1,11,12,[[342,1,1,11,12]]],[13,10,9,12,21,[[375,2,1,12,13],[378,2,2,13,15],[380,1,1,15,16],[383,1,1,16,17],[389,1,1,17,18],[392,1,1,18,19],[398,2,2,19,21]]],[15,1,1,21,22,[[416,1,1,21,22]]],[17,2,2,22,24,[[450,1,1,22,23],[476,1,1,23,24]]],[18,19,19,24,43,[[480,1,1,24,25],[484,1,1,25,26],[495,3,3,26,29],[505,1,1,29,30],[510,1,1,30,31],[512,1,1,31,32],[524,1,1,32,33],[536,1,1,33,34],[553,1,1,34,35],[561,2,2,35,37],[566,1,1,37,38],[592,3,3,38,41],[596,1,1,41,42],[621,1,1,42,43]]],[19,4,4,43,47,[[629,1,1,43,44],[633,1,1,44,45],[651,1,1,45,46],[657,1,1,46,47]]],[21,1,1,47,48,[[674,1,1,47,48]]],[22,3,3,48,51,[[699,1,1,48,49],[700,1,1,49,50],[715,1,1,50,51]]],[23,2,2,51,53,[[790,2,2,51,53]]],[25,5,5,53,58,[[824,1,1,53,54],[828,1,1,54,55],[839,2,2,55,57],[840,1,1,57,58]]],[27,1,1,58,59,[[865,1,1,58,59]]],[33,1,1,59,60,[[901,1,1,59,60]]]],[361,5839,6631,8043,8605,8633,8638,9096,9244,9245,10093,10446,11380,11446,11447,11483,11540,11665,11746,11880,11902,12375,13229,13903,13960,14005,14120,14148,14153,14306,14386,14412,14634,14801,15084,15268,15270,15344,15839,15840,15841,16012,16307,16440,16551,17113,17256,17586,18040,18058,18385,20048,20054,21031,21131,21429,21430,21457,22151,22702]]],["+",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13903]]],["armed",[2,2,[[19,2,2,0,2,[[633,1,1,0,1],[651,1,1,1,2]]]],[16551,17113]]],["buckler",[6,6,[[9,1,1,0,1,[[288,1,1,0,1]]],[12,1,1,1,2,[[342,1,1,1,2]]],[18,2,2,2,4,[[495,2,2,2,4]]],[19,1,1,4,5,[[629,1,1,4,5]]],[23,1,1,5,6,[[790,1,1,5,6]]]],[8633,10446,14120,14148,16440,20048]]],["bucklers",[3,3,[[13,1,1,0,1,[[389,1,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]],[21,1,1,2,3,[[674,1,1,2,3]]]],[11665,13229,17586]]],["defence",[2,2,[[18,2,2,0,2,[[484,1,1,0,1],[566,1,1,1,2]]]],[14005,15344]]],["rulers",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22151]]],["shield",[33,32,[[0,1,1,0,1,[[14,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[9,4,3,3,6,[[267,2,1,3,4],[288,2,2,4,6]]],[10,1,1,6,7,[[300,1,1,6,7]]],[11,1,1,7,8,[[331,1,1,7,8]]],[13,2,2,8,10,[[375,1,1,8,9],[383,1,1,9,10]]],[18,14,14,10,24,[[480,1,1,10,11],[495,1,1,11,12],[505,1,1,12,13],[510,1,1,13,14],[512,1,1,14,15],[536,1,1,15,16],[553,1,1,16,17],[561,2,2,17,19],[592,3,3,19,22],[596,1,1,22,23],[621,1,1,23,24]]],[19,1,1,24,25,[[657,1,1,24,25]]],[22,2,2,25,27,[[699,1,1,25,26],[700,1,1,26,27]]],[23,1,1,27,28,[[790,1,1,27,28]]],[25,3,3,28,31,[[824,1,1,28,29],[828,1,1,29,30],[839,1,1,30,31]]],[33,1,1,31,32,[[901,1,1,31,32]]]],[361,5839,6631,8043,8605,8638,9096,10093,11380,11540,13960,14153,14306,14386,14412,14801,15084,15268,15270,15839,15840,15841,16012,16307,17256,18040,18058,20054,21031,21131,21430,22702]]],["shields",[15,15,[[10,3,3,0,3,[[300,1,1,0,1],[304,2,2,1,3]]],[13,7,7,3,10,[[375,1,1,3,4],[378,2,2,4,6],[380,1,1,6,7],[392,1,1,7,8],[398,2,2,8,10]]],[15,1,1,10,11,[[416,1,1,10,11]]],[18,1,1,11,12,[[524,1,1,11,12]]],[22,1,1,12,13,[[715,1,1,12,13]]],[25,2,2,13,15,[[839,1,1,13,14],[840,1,1,14,15]]]],[9096,9244,9245,11380,11446,11447,11483,11746,11880,11902,12375,14634,18385,21429,21457]]]]},{"k":"H4044","v":[["sorrow",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20419]]]]},{"k":"H4045","v":[["rebuke",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5631]]]]},{"k":"H4046","v":[["*",[26,25,[[1,1,1,0,1,[[58,1,1,0,1]]],[3,9,9,1,10,[[130,1,1,1,2],[132,3,3,2,5],[141,3,3,5,8],[142,1,1,8,9],[147,1,1,9,10]]],[8,2,2,10,12,[[239,1,1,10,11],[241,1,1,11,12]]],[9,4,4,12,16,[[283,1,1,12,13],[284,1,1,13,14],[290,2,2,14,16]]],[12,2,2,16,18,[[358,2,2,16,18]]],[13,1,1,18,19,[[387,1,1,18,19]]],[18,2,2,19,21,[[583,2,2,19,21]]],[25,1,1,21,22,[[825,1,1,21,22]]],[37,4,3,22,25,[[924,4,3,22,25]]]],[1756,4145,4242,4243,4244,4479,4480,4489,4490,4680,7314,7335,8458,8485,8713,8717,10951,10956,11638,15680,15681,21072,23080,23083,23086]]],["plague",[20,19,[[3,9,9,0,9,[[130,1,1,0,1],[132,3,3,1,4],[141,3,3,4,7],[142,1,1,7,8],[147,1,1,8,9]]],[8,1,1,9,10,[[241,1,1,9,10]]],[9,2,2,10,12,[[290,2,2,10,12]]],[12,1,1,12,13,[[358,1,1,12,13]]],[13,1,1,13,14,[[387,1,1,13,14]]],[18,2,2,14,16,[[583,2,2,14,16]]],[37,4,3,16,19,[[924,4,3,16,19]]]],[4145,4242,4243,4244,4479,4480,4489,4490,4680,7335,8713,8717,10956,11638,15680,15681,23080,23083,23086]]],["plagued",[1,1,[[12,1,1,0,1,[[358,1,1,0,1]]]],[10951]]],["plagues",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1756]]],["slaughter",[3,3,[[8,1,1,0,1,[[239,1,1,0,1]]],[9,2,2,1,3,[[283,1,1,1,2],[284,1,1,2,3]]]],[7314,8458,8485]]],["stroke",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21072]]]]},{"k":"H4047","v":[["Magpiash",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12569]]]]},{"k":"H4048","v":[["*",[2,2,[[18,1,1,0,1,[[566,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[15370,20956]]],["cast",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15370]]],["terrors",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20956]]]]},{"k":"H4049","v":[["destroy",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12163]]]]},{"k":"H4050","v":[["*",[4,3,[[9,1,1,0,1,[[278,1,1,0,1]]],[10,1,1,1,2,[[297,1,1,1,2]]],[12,2,1,2,3,[[357,2,1,2,3]]]],[8317,8943,10929]]],["axes",[1,1,[[12,1,1,0,1,[[357,1,1,0,1]]]],[10929]]],["saws",[3,3,[[9,1,1,0,1,[[278,1,1,0,1]]],[10,1,1,1,2,[[297,1,1,1,2]]],[12,1,1,2,3,[[357,1,1,2,3]]]],[8317,8943,10929]]]]},{"k":"H4051","v":[["Migron",[2,2,[[8,1,1,0,1,[[249,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[7510,17878]]]]},{"k":"H4052","v":[["rests",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8902]]]]},{"k":"H4053","v":[["clods",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22308]]]]},{"k":"H4054","v":[["*",[114,68,[[2,1,1,0,1,[[114,1,1,0,1]]],[3,5,5,1,6,[[151,5,5,1,6]]],[5,58,33,6,39,[[200,1,1,6,7],[207,57,32,7,39]]],[12,44,23,39,62,[[342,1,1,39,40],[343,42,21,40,61],[350,1,1,61,62]]],[13,2,2,62,64,[[377,1,1,62,63],[397,1,1,63,64]]],[25,4,4,64,68,[[828,1,1,64,65],[846,1,1,65,66],[849,2,2,66,68]]]],[3503,4847,4848,4849,4850,4852,6191,6383,6384,6389,6392,6394,6395,6396,6397,6398,6399,6400,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6422,6423,10444,10509,10511,10512,10513,10514,10518,10521,10522,10523,10524,10525,10526,10527,10528,10529,10530,10531,10532,10533,10534,10535,10762,11428,11873,21149,21632,21717,21719]]],["+",[10,10,[[5,7,7,0,7,[[207,7,7,0,7]]],[12,3,3,7,10,[[343,3,3,7,10]]]],[6398,6404,6405,6409,6411,6416,6420,10512,10526,10531]]],["suburbs",[104,68,[[2,1,1,0,1,[[114,1,1,0,1]]],[3,5,5,1,6,[[151,5,5,1,6]]],[5,51,33,6,39,[[200,1,1,6,7],[207,50,32,7,39]]],[12,41,23,39,62,[[342,1,1,39,40],[343,39,21,40,61],[350,1,1,61,62]]],[13,2,2,62,64,[[377,1,1,62,63],[397,1,1,63,64]]],[25,4,4,64,68,[[828,1,1,64,65],[846,1,1,65,66],[849,2,2,66,68]]]],[3503,4847,4848,4849,4850,4852,6191,6383,6384,6389,6392,6394,6395,6396,6397,6398,6399,6400,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6422,6423,10444,10509,10511,10512,10513,10514,10518,10521,10522,10523,10524,10525,10526,10527,10528,10529,10530,10531,10532,10533,10534,10535,10762,11428,11873,21149,21632,21717,21719]]]]},{"k":"H4055","v":[["*",[13,13,[[2,1,1,0,1,[[95,1,1,0,1]]],[6,2,2,1,3,[[213,1,1,1,2],[215,1,1,2,3]]],[8,4,4,3,7,[[239,1,1,3,4],[252,2,2,4,6],[253,1,1,6,7]]],[9,2,2,7,9,[[286,1,1,7,8],[287,1,1,8,9]]],[17,1,1,9,10,[[446,1,1,9,10]]],[18,1,1,10,11,[[586,1,1,10,11]]],[22,1,1,11,12,[[700,1,1,11,12]]],[23,1,1,12,13,[[757,1,1,12,13]]]],[2859,6584,6633,7309,7656,7657,7680,8562,8600,13117,15773,18059,19291]]],["armour",[2,2,[[8,2,2,0,2,[[252,2,2,0,2]]]],[7656,7657]]],["choicest",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18059]]],["clothes",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7309]]],["garment",[3,3,[[2,1,1,0,1,[[95,1,1,0,1]]],[9,1,1,1,2,[[286,1,1,1,2]]],[18,1,1,2,3,[[586,1,1,2,3]]]],[2859,8562,15773]]],["garments",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7680]]],["judgment",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6633]]],["measure",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13117]]],["measures",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19291]]],["raiment",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6584]]],["stature",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8600]]]]},{"k":"H4056","v":[["altar",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12190]]]]},{"k":"H4057","v":[["*",[270,256,[[0,7,7,0,7,[[13,1,1,0,1],[15,1,1,1,2],[20,3,3,2,5],[35,1,1,5,6],[36,1,1,6,7]]],[1,27,25,7,32,[[52,2,2,7,9],[53,1,1,9,10],[54,2,2,10,12],[56,1,1,12,13],[57,2,2,13,15],[62,2,2,15,17],[63,3,3,17,20],[64,2,1,20,21],[65,6,6,21,27],[66,1,1,27,28],[67,1,1,28,29],[68,3,2,29,31],[72,1,1,31,32]]],[2,4,4,32,36,[[96,1,1,32,33],[105,3,3,33,36]]],[3,48,44,36,80,[[117,2,2,36,38],[119,2,2,38,40],[125,2,2,40,42],[126,3,2,42,44],[128,1,1,44,45],[129,3,3,45,48],[130,9,8,48,56],[131,1,1,56,57],[132,1,1,57,58],[136,2,2,58,60],[137,5,5,60,65],[140,1,1,65,66],[142,2,2,66,68],[143,3,2,68,70],[148,2,2,70,72],[149,8,7,72,79],[150,1,1,79,80]]],[4,19,19,80,99,[[153,4,4,80,84],[154,4,4,84,88],[156,1,1,88,89],[160,3,3,89,92],[161,2,2,92,94],[163,2,2,94,96],[181,1,1,96,97],[184,2,2,97,99]]],[5,15,15,99,114,[[187,1,1,99,100],[191,3,3,100,103],[194,3,3,103,106],[198,1,1,106,107],[200,1,1,107,108],[201,2,2,108,110],[202,1,1,110,111],[204,1,1,111,112],[206,1,1,112,113],[210,1,1,113,114]]],[6,9,9,114,123,[[211,1,1,114,115],[218,2,2,115,117],[221,3,3,117,120],[230,3,3,120,123]]],[8,18,14,123,137,[[239,1,1,123,124],[248,1,1,124,125],[252,1,1,125,126],[258,6,4,126,130],[259,1,1,130,131],[260,4,4,131,135],[261,4,2,135,137]]],[9,6,6,137,143,[[268,1,1,137,138],[281,2,2,138,140],[282,1,1,140,141],[283,2,2,141,143]]],[10,4,4,143,147,[[292,1,1,143,144],[299,1,1,144,145],[309,2,2,145,147]]],[11,1,1,147,148,[[315,1,1,147,148]]],[12,4,4,148,152,[[342,1,1,148,149],[343,1,1,149,150],[349,1,1,150,151],[358,1,1,151,152]]],[13,7,7,152,159,[[367,1,1,152,153],[374,1,1,153,154],[386,3,3,154,157],[390,1,1,157,158],[392,1,1,158,159]]],[15,2,2,159,161,[[421,2,2,159,161]]],[17,3,3,161,164,[[436,1,1,161,162],[459,1,1,162,163],[473,1,1,163,164]]],[18,18,17,164,181,[[506,2,1,164,165],[532,1,1,165,166],[542,1,1,166,167],[552,1,1,167,168],[555,4,4,168,172],[572,1,1,172,173],[579,1,1,173,174],[583,3,3,174,177],[584,3,3,177,180],[613,1,1,180,181]]],[19,1,1,181,182,[[648,1,1,181,182]]],[21,3,3,182,185,[[673,1,1,182,183],[674,1,1,183,184],[678,1,1,184,185]]],[22,21,19,185,204,[[692,1,1,185,186],[694,2,2,186,188],[699,2,1,188,189],[705,1,1,189,190],[710,2,2,190,192],[713,2,2,192,194],[718,1,1,194,195],[719,2,2,195,197],[720,1,1,197,198],[721,2,2,198,200],[728,1,1,200,201],[729,1,1,201,202],[741,1,1,202,203],[742,2,1,203,204]]],[23,21,21,204,225,[[746,4,4,204,208],[747,1,1,208,209],[748,2,2,209,211],[753,4,4,211,215],[756,2,2,215,217],[757,1,1,217,218],[761,1,1,218,219],[766,1,1,219,220],[767,1,1,220,221],[769,1,1,221,222],[775,1,1,222,223],[792,1,1,223,224],[794,1,1,224,225]]],[24,3,3,225,228,[[800,2,2,225,227],[801,1,1,227,228]]],[25,15,14,228,242,[[807,1,1,228,229],[820,1,1,229,230],[821,10,9,230,239],[824,1,1,239,240],[830,1,1,240,241],[835,1,1,241,242]]],[27,5,5,242,247,[[863,2,2,242,244],[870,1,1,244,245],[874,2,2,245,247]]],[28,5,5,247,252,[[876,2,2,247,249],[877,2,2,249,251],[878,1,1,251,252]]],[29,2,2,252,254,[[880,1,1,252,253],[883,1,1,253,254]]],[35,1,1,254,255,[[907,1,1,254,255]]],[38,1,1,255,256,[[925,1,1,255,256]]]],[342,388,527,533,534,1064,1105,1580,1597,1628,1633,1635,1701,1737,1738,1885,1887,1892,1900,1901,1942,1948,1949,1950,1957,1961,1979,1984,2004,2027,2028,2175,2917,3211,3222,3223,3605,3623,3696,3706,3966,3970,4000,4019,4075,4078,4096,4101,4110,4124,4130,4133,4137,4140,4141,4143,4185,4207,4312,4315,4345,4351,4353,4358,4363,4447,4553,4554,4557,4568,4731,4733,4766,4768,4771,4772,4775,4776,4796,4819,4893,4911,4923,4932,4939,4945,4946,4964,5047,5139,5152,5153,5164,5185,5213,5232,5684,5768,5809,5855,5938,5939,5940,6017,6022,6026,6138,6197,6203,6263,6266,6305,6380,6483,6525,6726,6735,6845,6847,6851,7096,7099,7101,7305,7503,7646,7824,7825,7834,7835,7840,7862,7865,7875,7882,7907,7908,8073,8412,8417,8428,8465,8478,8804,9069,9391,9402,9584,10437,10532,10728,10963,11197,11350,11603,11607,11611,11686,11742,12530,12532,12888,13441,13819,14316,14739,14872,15077,15128,15132,15153,15165,15462,15527,15660,15665,15677,15703,15732,15734,16212,17003,17577,17585,17645,17945,17970,17977,18036,18161,18274,18275,18321,18326,18423,18469,18470,18491,18524,18525,18664,18676,18879,18895,18967,18971,18989,18996,19004,19038,19053,19177,19185,19187,19201,19259,19261,19290,19363,19460,19494,19558,19693,20086,20178,20423,20439,20451,20577,20894,20905,20908,20910,20912,20913,20916,20918,20930,20931,21049,21188,21338,22108,22119,22218,22271,22281,22310,22311,22314,22333,22362,22389,22448,22818,23092]]],["+",[20,20,[[1,2,2,0,2,[[66,1,1,0,1],[72,1,1,1,2]]],[3,7,7,2,9,[[126,1,1,2,3],[129,2,2,3,5],[137,1,1,5,6],[149,2,2,6,8],[150,1,1,8,9]]],[4,1,1,9,10,[[154,1,1,9,10]]],[5,1,1,10,11,[[187,1,1,10,11]]],[6,1,1,11,12,[[211,1,1,11,12]]],[8,1,1,12,13,[[260,1,1,12,13]]],[15,1,1,13,14,[[421,1,1,13,14]]],[18,1,1,14,15,[[552,1,1,14,15]]],[19,1,1,15,16,[[648,1,1,15,16]]],[22,1,1,16,17,[[699,1,1,16,17]]],[25,2,2,17,19,[[807,1,1,17,18],[824,1,1,18,19]]],[27,1,1,19,20,[[874,1,1,19,20]]]],[1984,2175,4000,4078,4096,4358,4772,4776,4819,4964,5855,6525,7875,12530,15077,17003,18036,20577,21049,22281]]],["desert",[10,10,[[1,3,3,0,3,[[52,1,1,0,1],[54,1,1,1,2],[68,1,1,2,3]]],[3,2,2,3,5,[[136,1,1,3,4],[143,1,1,4,5]]],[4,1,1,5,6,[[184,1,1,5,6]]],[13,1,1,6,7,[[392,1,1,6,7]]],[17,1,1,7,8,[[459,1,1,7,8]]],[22,1,1,8,9,[[699,1,1,8,9]]],[23,1,1,9,10,[[769,1,1,9,10]]]],[1580,1635,2028,4312,4568,5768,11742,13441,18036,19558]]],["speech",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17585]]],["wilderness",[239,229,[[0,7,7,0,7,[[13,1,1,0,1],[15,1,1,1,2],[20,3,3,2,5],[35,1,1,5,6],[36,1,1,6,7]]],[1,22,21,7,28,[[52,1,1,7,8],[53,1,1,8,9],[54,1,1,9,10],[56,1,1,10,11],[57,2,2,11,13],[62,2,2,13,15],[63,3,3,15,18],[64,2,1,18,19],[65,6,6,19,25],[67,1,1,25,26],[68,2,2,26,28]]],[2,4,4,28,32,[[96,1,1,28,29],[105,3,3,29,32]]],[3,39,37,32,69,[[117,2,2,32,34],[119,2,2,34,36],[125,2,2,36,38],[126,2,2,38,40],[128,1,1,40,41],[129,1,1,41,42],[130,9,8,42,50],[131,1,1,50,51],[132,1,1,51,52],[136,1,1,52,53],[137,4,4,53,57],[140,1,1,57,58],[142,2,2,58,60],[143,2,2,60,62],[148,2,2,62,64],[149,6,5,64,69]]],[4,17,17,69,86,[[153,4,4,69,73],[154,3,3,73,76],[156,1,1,76,77],[160,3,3,77,80],[161,2,2,80,82],[163,2,2,82,84],[181,1,1,84,85],[184,1,1,85,86]]],[5,14,14,86,100,[[191,3,3,86,89],[194,3,3,89,92],[198,1,1,92,93],[200,1,1,93,94],[201,2,2,94,96],[202,1,1,96,97],[204,1,1,97,98],[206,1,1,98,99],[210,1,1,99,100]]],[6,8,8,100,108,[[218,2,2,100,102],[221,3,3,102,105],[230,3,3,105,108]]],[8,17,13,108,121,[[239,1,1,108,109],[248,1,1,109,110],[252,1,1,110,111],[258,6,4,111,115],[259,1,1,115,116],[260,3,3,116,119],[261,4,2,119,121]]],[9,6,6,121,127,[[268,1,1,121,122],[281,2,2,122,124],[282,1,1,124,125],[283,2,2,125,127]]],[10,4,4,127,131,[[292,1,1,127,128],[299,1,1,128,129],[309,2,2,129,131]]],[11,1,1,131,132,[[315,1,1,131,132]]],[12,4,4,132,136,[[342,1,1,132,133],[343,1,1,133,134],[349,1,1,134,135],[358,1,1,135,136]]],[13,6,6,136,142,[[367,1,1,136,137],[374,1,1,137,138],[386,3,3,138,141],[390,1,1,141,142]]],[15,1,1,142,143,[[421,1,1,142,143]]],[17,2,2,143,145,[[436,1,1,143,144],[473,1,1,144,145]]],[18,17,16,145,161,[[506,2,1,145,146],[532,1,1,146,147],[542,1,1,147,148],[555,4,4,148,152],[572,1,1,152,153],[579,1,1,153,154],[583,3,3,154,157],[584,3,3,157,160],[613,1,1,160,161]]],[21,2,2,161,163,[[673,1,1,161,162],[678,1,1,162,163]]],[22,19,18,163,181,[[692,1,1,163,164],[694,2,2,164,166],[705,1,1,166,167],[710,2,2,167,169],[713,2,2,169,171],[718,1,1,171,172],[719,2,2,172,174],[720,1,1,174,175],[721,2,2,175,177],[728,1,1,177,178],[729,1,1,178,179],[741,1,1,179,180],[742,2,1,180,181]]],[23,20,20,181,201,[[746,4,4,181,185],[747,1,1,185,186],[748,2,2,186,188],[753,4,4,188,192],[756,2,2,192,194],[757,1,1,194,195],[761,1,1,195,196],[766,1,1,196,197],[767,1,1,197,198],[775,1,1,198,199],[792,1,1,199,200],[794,1,1,200,201]]],[24,3,3,201,204,[[800,2,2,201,203],[801,1,1,203,204]]],[25,13,12,204,216,[[820,1,1,204,205],[821,10,9,205,214],[830,1,1,214,215],[835,1,1,215,216]]],[27,4,4,216,220,[[863,2,2,216,218],[870,1,1,218,219],[874,1,1,219,220]]],[28,5,5,220,225,[[876,2,2,220,222],[877,2,2,222,224],[878,1,1,224,225]]],[29,2,2,225,227,[[880,1,1,225,226],[883,1,1,226,227]]],[35,1,1,227,228,[[907,1,1,227,228]]],[38,1,1,228,229,[[925,1,1,228,229]]]],[342,388,527,533,534,1064,1105,1597,1628,1633,1701,1737,1738,1885,1887,1892,1900,1901,1942,1948,1949,1950,1957,1961,1979,2004,2027,2028,2917,3211,3222,3223,3605,3623,3696,3706,3966,3970,4000,4019,4075,4101,4110,4124,4130,4133,4137,4140,4141,4143,4185,4207,4315,4345,4351,4353,4363,4447,4553,4554,4557,4568,4731,4733,4766,4768,4771,4775,4796,4893,4911,4923,4932,4939,4945,4946,5047,5139,5152,5153,5164,5185,5213,5232,5684,5809,5938,5939,5940,6017,6022,6026,6138,6197,6203,6263,6266,6305,6380,6483,6726,6735,6845,6847,6851,7096,7099,7101,7305,7503,7646,7824,7825,7834,7835,7840,7862,7865,7882,7907,7908,8073,8412,8417,8428,8465,8478,8804,9069,9391,9402,9584,10437,10532,10728,10963,11197,11350,11603,11607,11611,11686,12532,12888,13819,14316,14739,14872,15128,15132,15153,15165,15462,15527,15660,15665,15677,15703,15732,15734,16212,17577,17645,17945,17970,17977,18161,18274,18275,18321,18326,18423,18469,18470,18491,18524,18525,18664,18676,18879,18895,18967,18971,18989,18996,19004,19038,19053,19177,19185,19187,19201,19259,19261,19290,19363,19460,19494,19693,20086,20178,20423,20439,20451,20894,20905,20908,20910,20912,20913,20916,20918,20930,20931,21188,21338,22108,22119,22218,22271,22310,22311,22314,22333,22362,22389,22448,22818,23092]]]]},{"k":"H4058","v":[["*",[51,49,[[1,1,1,0,1,[[65,1,1,0,1]]],[3,1,1,1,2,[[151,1,1,1,2]]],[4,1,1,2,3,[[173,1,1,2,3]]],[7,1,1,3,4,[[234,1,1,3,4]]],[9,2,1,4,5,[[274,2,1,4,5]]],[10,1,1,5,6,[[307,1,1,5,6]]],[18,2,2,6,8,[[537,1,1,6,7],[585,1,1,7,8]]],[22,2,2,8,10,[[718,1,1,8,9],[743,1,1,9,10]]],[23,2,2,10,12,[[775,1,1,10,11],[777,1,1,11,12]]],[25,36,35,12,47,[[841,16,16,12,28],[842,7,7,28,35],[843,6,6,35,41],[844,1,1,41,42],[846,1,1,42,43],[848,5,4,43,47]]],[27,1,1,47,48,[[862,1,1,47,48]]],[37,1,1,48,49,[[912,1,1,48,49]]]],[1965,4850,5449,7187,8211,9338,14813,15749,18432,18904,19728,19797,21482,21483,21485,21486,21488,21490,21496,21497,21500,21501,21504,21505,21509,21512,21524,21525,21527,21528,21529,21530,21531,21539,21541,21567,21568,21569,21570,21571,21572,21582,21633,21682,21683,21684,21697,22104,22901]]],["+",[12,12,[[25,11,11,0,11,[[841,6,6,0,6],[842,3,3,6,9],[843,1,1,9,10],[844,1,1,10,11]]],[37,1,1,11,12,[[912,1,1,11,12]]]],[21482,21483,21488,21505,21509,21524,21527,21530,21539,21570,21582,22901]]],["himself",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9338]]],["measure",[5,5,[[3,1,1,0,1,[[151,1,1,0,1]]],[4,1,1,1,2,[[173,1,1,1,2]]],[22,1,1,2,3,[[743,1,1,2,3]]],[25,2,2,3,5,[[846,1,1,3,4],[848,1,1,4,5]]]],[4850,5449,18904,21633,21697]]],["measured",[30,28,[[7,1,1,0,1,[[234,1,1,0,1]]],[9,2,1,1,2,[[274,2,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]],[23,2,2,3,5,[[775,1,1,3,4],[777,1,1,4,5]]],[25,23,22,5,27,[[841,10,10,5,15],[842,4,4,15,19],[843,5,5,19,24],[848,4,3,24,27]]],[27,1,1,27,28,[[862,1,1,27,28]]]],[7187,8211,18432,19728,19797,21485,21486,21490,21496,21497,21500,21501,21504,21512,21525,21528,21529,21531,21541,21567,21568,21569,21571,21572,21682,21683,21684,22104]]],["mete",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1965]]],["out",[2,2,[[18,2,2,0,2,[[537,1,1,0,1],[585,1,1,1,2]]]],[14813,15749]]]]},{"k":"H4059","v":[["gone",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13012]]]]},{"k":"H4060","v":[["*",[55,53,[[1,4,4,0,4,[[75,2,2,0,2],[85,2,2,2,4]]],[2,1,1,4,5,[[108,1,1,4,5]]],[3,1,1,5,6,[[129,1,1,5,6]]],[5,1,1,6,7,[[189,1,1,6,7]]],[10,4,4,7,11,[[296,1,1,7,8],[297,3,3,8,11]]],[12,3,3,11,14,[[348,1,1,11,12],[357,1,1,12,13],[360,1,1,13,14]]],[13,1,1,14,15,[[369,1,1,14,15]]],[15,8,8,15,23,[[415,7,7,15,22],[417,1,1,22,23]]],[17,1,1,23,24,[[463,1,1,23,24]]],[18,2,2,24,26,[[516,1,1,24,25],[610,1,1,25,26]]],[22,1,1,26,27,[[723,1,1,26,27]]],[23,2,2,27,29,[[766,1,1,27,28],[775,1,1,28,29]]],[25,25,23,29,52,[[841,12,11,29,40],[842,1,1,40,41],[843,6,5,41,46],[844,1,1,46,47],[846,1,1,47,48],[847,1,1,48,49],[849,3,3,49,52]]],[37,1,1,52,53,[[912,1,1,52,53]]]],[2237,2243,2575,2581,3316,4107,5897,8921,8943,8945,8971,10696,10932,11012,11232,12338,12346,12347,12348,12351,12354,12357,12386,13529,14516,16171,18575,19468,19730,21480,21482,21487,21498,21499,21501,21505,21506,21509,21510,21512,21543,21567,21568,21569,21570,21571,21585,21633,21677,21718,21732,21735,22900]]],["garments",[1,1,[[18,1,1,0,1,[[610,1,1,0,1]]]],[16171]]],["measure",[15,14,[[1,2,2,0,2,[[75,2,2,0,2]]],[5,1,1,2,3,[[189,1,1,2,3]]],[10,2,2,3,5,[[296,1,1,3,4],[297,1,1,4,5]]],[13,1,1,5,6,[[369,1,1,5,6]]],[17,1,1,6,7,[[463,1,1,6,7]]],[18,1,1,7,8,[[516,1,1,7,8]]],[25,7,6,8,14,[[841,4,3,8,11],[842,1,1,11,12],[846,1,1,12,13],[847,1,1,13,14]]]],[2237,2243,5897,8921,8971,11232,13529,14516,21487,21498,21499,21543,21633,21677]]],["measures",[12,12,[[10,2,2,0,2,[[297,2,2,0,2]]],[25,10,10,2,12,[[841,6,6,2,8],[844,1,1,8,9],[849,3,3,9,12]]]],[8943,8945,21501,21505,21506,21509,21510,21512,21585,21718,21732,21735]]],["measuring",[10,9,[[23,1,1,0,1,[[775,1,1,0,1]]],[25,8,7,1,8,[[841,2,2,1,3],[843,6,5,3,8]]],[37,1,1,8,9,[[912,1,1,8,9]]]],[19730,21480,21482,21567,21568,21569,21570,21571,22900]]],["meteyard",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3316]]],["piece",[7,7,[[15,7,7,0,7,[[415,7,7,0,7]]]],[12338,12346,12347,12348,12351,12354,12357]]],["size",[3,3,[[1,2,2,0,2,[[85,2,2,0,2]]],[12,1,1,2,3,[[360,1,1,2,3]]]],[2575,2581,11012]]],["stature",[4,4,[[3,1,1,0,1,[[129,1,1,0,1]]],[12,2,2,1,3,[[348,1,1,1,2],[357,1,1,2,3]]],[22,1,1,3,4,[[723,1,1,3,4]]]],[4107,10696,10932,18575]]],["tribute",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12386]]],["wide",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19468]]]]},{"k":"H4061","v":[["*",[5,5,[[14,4,4,0,4,[[406,2,2,0,2],[408,1,1,2,3],[409,1,1,3,4]]],[26,1,1,4,5,[[851,1,1,4,5]]]],[12123,12130,12159,12197,21804]]],["oblation",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21804]]],["toll",[3,3,[[14,3,3,0,3,[[406,2,2,0,2],[409,1,1,2,3]]]],[12123,12130,12197]]],["tribute",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12159]]]]},{"k":"H4062","v":[["city",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17932]]]]},{"k":"H4063","v":[["garments",[2,2,[[9,1,1,0,1,[[276,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]]],[8244,10911]]]]},{"k":"H4064","v":[["diseases",[2,2,[[4,2,2,0,2,[[159,1,1,0,1],[180,1,1,1,2]]]],[5126,5671]]]]},{"k":"H4065","v":[["banishment",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20346]]]]},{"k":"H4066","v":[["*",[11,11,[[18,1,1,0,1,[[557,1,1,0,1]]],[19,8,8,1,9,[[633,1,1,1,2],[642,1,1,2,3],[643,1,1,3,4],[644,1,1,4,5],[649,1,1,5,6],[653,1,1,6,7],[655,1,1,7,8],[656,1,1,8,9]]],[23,1,1,9,10,[[759,1,1,9,10]]],[34,1,1,10,11,[[903,1,1,10,11]]]],[15204,16554,16825,16868,16887,17025,17161,17221,17246,19325,22734]]],["contention",[3,3,[[19,1,1,0,1,[[649,1,1,0,1]]],[23,1,1,1,2,[[759,1,1,1,2]]],[34,1,1,2,3,[[903,1,1,2,3]]]],[17025,19325,22734]]],["discord",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16554]]],["strife",[7,7,[[18,1,1,0,1,[[557,1,1,0,1]]],[19,6,6,1,7,[[642,1,1,1,2],[643,1,1,2,3],[644,1,1,3,4],[653,1,1,4,5],[655,1,1,5,6],[656,1,1,6,7]]]],[15204,16825,16868,16887,17161,17221,17246]]]]},{"k":"H4067","v":[]},{"k":"H4068","v":[["Madon",[2,2,[[5,2,2,0,2,[[197,1,1,0,1],[198,1,1,1,2]]]],[6108,6149]]]]},{"k":"H4069","v":[["*",[72,71,[[0,2,2,0,2,[[25,1,1,0,1],[39,1,1,1,2]]],[1,5,5,2,7,[[50,1,1,2,3],[51,1,1,3,4],[52,1,1,4,5],[54,1,1,5,6],[67,1,1,6,7]]],[2,1,1,7,8,[[99,1,1,7,8]]],[3,2,2,8,10,[[128,1,1,8,9],[132,1,1,9,10]]],[5,1,1,10,11,[[203,1,1,10,11]]],[6,6,5,11,16,[[215,2,1,11,12],[219,1,1,12,13],[221,2,2,13,15],[222,1,1,15,16]]],[7,1,1,16,17,[[233,1,1,16,17]]],[8,3,3,17,20,[[255,2,2,17,19],[256,1,1,19,20]]],[9,10,10,20,30,[[269,1,1,20,21],[277,2,2,21,23],[278,1,1,23,24],[279,1,1,24,25],[282,1,1,25,26],[284,1,1,26,27],[285,2,2,27,29],[290,1,1,29,30]]],[10,4,4,30,34,[[291,3,3,30,33],[292,1,1,33,34]]],[11,4,4,34,38,[[316,1,1,34,35],[320,1,1,35,36],[321,1,1,36,37],[324,1,1,37,38]]],[13,1,1,38,39,[[390,1,1,38,39]]],[15,4,4,39,43,[[414,2,2,39,41],[425,2,2,41,43]]],[16,1,1,43,44,[[428,1,1,43,44]]],[17,6,6,44,50,[[438,1,1,44,45],[453,1,1,45,46],[456,2,2,46,48],[459,1,1,48,49],[468,1,1,49,50]]],[22,3,3,50,53,[[683,1,1,50,51],[728,1,1,51,52],[741,1,1,52,53]]],[23,16,16,53,69,[[746,2,2,53,55],[752,3,3,55,58],[756,1,1,58,59],[757,1,1,59,60],[758,1,1,60,61],[766,1,1,61,62],[770,1,1,62,63],[774,1,1,63,64],[776,1,1,64,65],[780,1,1,65,66],[790,2,2,66,68],[793,1,1,68,69]]],[25,1,1,69,70,[[819,1,1,69,70]]],[38,1,1,70,71,[[926,1,1,70,71]]]],[719,1179,1550,1572,1582,1646,2013,2994,4067,4197,6289,6651,6782,6836,6855,6870,7159,7732,7757,7773,8088,8269,8279,8295,8321,8436,8489,8552,8554,8713,8723,8730,8758,8813,9626,9739,9767,9857,11683,12309,12310,12682,12692,12750,12916,13279,13359,13362,13437,13663,17743,18664,18868,18979,18996,19158,19172,19175,19250,19288,19312,19482,19581,19673,19734,19871,20050,20060,20128,20868,23113]]],["How",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1572]]],["Wherefore",[21,21,[[0,2,2,0,2,[[25,1,1,0,1],[39,1,1,1,2]]],[1,1,1,2,3,[[54,1,1,2,3]]],[2,1,1,3,4,[[99,1,1,3,4]]],[6,1,1,4,5,[[222,1,1,4,5]]],[8,1,1,5,6,[[255,1,1,5,6]]],[9,5,5,6,11,[[269,1,1,6,7],[277,1,1,7,8],[278,1,1,8,9],[282,1,1,9,10],[290,1,1,10,11]]],[10,1,1,11,12,[[291,1,1,11,12]]],[11,1,1,12,13,[[316,1,1,12,13]]],[17,2,2,13,15,[[453,1,1,13,14],[456,1,1,14,15]]],[22,2,2,15,17,[[728,1,1,15,16],[741,1,1,16,17]]],[23,4,4,17,21,[[756,1,1,17,18],[757,1,1,18,19],[776,1,1,19,20],[790,1,1,20,21]]]],[719,1179,1646,2994,6870,7757,8088,8279,8295,8436,8713,8758,9626,13279,13362,18664,18868,19250,19288,19734,20050]]],["Why",[25,25,[[1,1,1,0,1,[[50,1,1,0,1]]],[5,1,1,1,2,[[203,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[7,1,1,3,4,[[233,1,1,3,4]]],[8,1,1,4,5,[[256,1,1,4,5]]],[9,2,2,5,7,[[279,1,1,5,6],[285,1,1,6,7]]],[10,2,2,7,9,[[291,1,1,7,8],[292,1,1,8,9]]],[11,2,2,9,11,[[320,1,1,9,10],[324,1,1,10,11]]],[13,1,1,11,12,[[390,1,1,11,12]]],[15,3,3,12,15,[[414,1,1,12,13],[425,2,2,13,15]]],[16,1,1,15,16,[[428,1,1,15,16]]],[17,3,3,16,19,[[438,1,1,16,17],[459,1,1,17,18],[468,1,1,18,19]]],[23,5,5,19,24,[[752,2,2,19,21],[770,1,1,21,22],[780,1,1,22,23],[790,1,1,23,24]]],[25,1,1,24,25,[[819,1,1,24,25]]]],[1550,6289,6651,7159,7773,8321,8552,8723,8813,9739,9857,11683,12309,12682,12692,12750,12916,13437,13663,19158,19172,19581,19871,20060,20868]]],["wherefore",[7,7,[[3,2,2,0,2,[[128,1,1,0,1],[132,1,1,1,2]]],[11,1,1,2,3,[[321,1,1,2,3]]],[22,1,1,3,4,[[683,1,1,3,4]]],[23,3,3,4,7,[[746,1,1,4,5],[766,1,1,5,6],[774,1,1,6,7]]]],[4067,4197,9767,17743,18996,19482,19673]]],["why",[18,18,[[1,2,2,0,2,[[52,1,1,0,1],[67,1,1,1,2]]],[6,4,4,2,6,[[215,1,1,2,3],[219,1,1,3,4],[221,2,2,4,6]]],[8,1,1,6,7,[[255,1,1,6,7]]],[9,3,3,7,10,[[277,1,1,7,8],[284,1,1,8,9],[285,1,1,9,10]]],[10,1,1,10,11,[[291,1,1,10,11]]],[15,1,1,11,12,[[414,1,1,11,12]]],[17,1,1,12,13,[[456,1,1,12,13]]],[23,4,4,13,17,[[746,1,1,13,14],[752,1,1,14,15],[758,1,1,15,16],[793,1,1,16,17]]],[38,1,1,17,18,[[926,1,1,17,18]]]],[1582,2013,6651,6782,6836,6855,7732,8269,8489,8554,8730,12310,13359,18979,19175,19312,20128,23113]]]]},{"k":"H4070","v":[["dwelling",[4,4,[[26,4,4,0,4,[[851,1,1,0,1],[853,2,2,1,3],[854,1,1,3,4]]]],[21769,21862,21869,21895]]]]},{"k":"H4071","v":[["*",[2,2,[[22,1,1,0,1,[[708,1,1,0,1]]],[25,1,1,1,2,[[825,1,1,1,2]]]],[18250,21065]]],["fire",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21065]]],["pile",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18250]]]]},{"k":"H4072","v":[["ruin",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17169]]]]},{"k":"H4073","v":[["overthrow",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16274]]]]},{"k":"H4074","v":[["*",[16,16,[[0,1,1,0,1,[[9,1,1,0,1]]],[11,2,2,1,3,[[329,1,1,1,2],[330,1,1,2,3]]],[12,1,1,3,4,[[338,1,1,3,4]]],[16,5,5,4,9,[[426,4,4,4,8],[435,1,1,8,9]]],[22,2,2,9,11,[[691,1,1,9,10],[699,1,1,10,11]]],[23,3,3,11,14,[[769,1,1,11,12],[795,2,2,12,14]]],[26,2,2,14,16,[[857,1,1,14,15],[858,1,1,15,16]]]],[236,9989,10035,10257,12705,12716,12720,12721,12868,17923,18037,19559,20223,20240,21981,21989]]],["+",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20240]]],["Madai",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[236,10257]]],["Medes",[7,7,[[11,2,2,0,2,[[329,1,1,0,1],[330,1,1,1,2]]],[16,1,1,2,3,[[426,1,1,2,3]]],[22,1,1,3,4,[[691,1,1,3,4]]],[23,2,2,4,6,[[769,1,1,4,5],[795,1,1,5,6]]],[26,1,1,6,7,[[858,1,1,6,7]]]],[9989,10035,12721,17923,19559,20223,21989]]],["Media",[6,6,[[16,4,4,0,4,[[426,3,3,0,3],[435,1,1,3,4]]],[22,1,1,4,5,[[699,1,1,4,5]]],[26,1,1,5,6,[[857,1,1,5,6]]]],[12705,12716,12720,12868,18037,21981]]]]},{"k":"H4075","v":[["Mede",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22037]]]]},{"k":"H4076","v":[["Medes",[5,5,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,4,4,1,5,[[854,1,1,1,2],[855,3,3,2,5]]]],[12153,21902,21913,21917,21920]]]]},{"k":"H4077","v":[["Median",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21905]]]]},{"k":"H4078","v":[["sufficiently",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11830]]]]},{"k":"H4079","v":[["*",[9,9,[[19,9,9,0,9,[[645,2,2,0,2],[646,1,1,2,3],[648,2,2,3,5],[650,1,1,5,6],[652,1,1,6,7],[653,1,1,7,8],[654,1,1,8,9]]]],[16919,16920,16938,16993,17003,17073,17137,17162,17184]]],["+",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17137]]],["brawling",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16993]]],["contentions",[4,4,[[19,4,4,0,4,[[645,2,2,0,2],[646,1,1,2,3],[650,1,1,3,4]]]],[16919,16920,16938,17073]]],["contentious",[3,3,[[19,3,3,0,3,[[648,1,1,0,1],[653,1,1,1,2],[654,1,1,2,3]]]],[17003,17162,17184]]]]},{"k":"H4080","v":[["*",[59,55,[[0,3,3,0,3,[[24,2,2,0,2],[35,1,1,2,3]]],[1,5,5,3,8,[[51,2,2,3,5],[52,1,1,5,6],[53,1,1,6,7],[67,1,1,7,8]]],[3,10,8,8,16,[[138,2,2,8,10],[141,2,2,10,12],[147,6,4,12,16]]],[5,1,1,16,17,[[199,1,1,16,17]]],[6,31,29,17,46,[[216,11,10,17,27],[217,12,11,27,38],[218,7,7,38,45],[219,1,1,45,46]]],[10,1,1,46,47,[[301,1,1,46,47]]],[12,3,3,47,50,[[338,3,3,47,50]]],[18,1,1,50,51,[[560,1,1,50,51]]],[22,3,3,51,54,[[687,1,1,51,52],[688,1,1,52,53],[738,1,1,53,54]]],[34,1,1,54,55,[[905,1,1,54,55]]]],[660,662,1075,1569,1570,1580,1620,2000,4379,4382,4486,4489,4667,4671,4672,4673,6175,6655,6656,6657,6660,6661,6665,6667,6668,6670,6687,6695,6696,6701,6702,6706,6707,6708,6709,6717,6718,6719,6720,6722,6724,6731,6741,6745,6747,6771,9126,10284,10285,10298,15250,17833,17876,18827,22775]]],["+",[5,5,[[5,1,1,0,1,[[199,1,1,0,1]]],[6,3,3,1,4,[[217,1,1,1,2],[218,2,2,2,4]]],[10,1,1,4,5,[[301,1,1,4,5]]]],[6175,6719,6722,6731,9126]]],["Midian",[35,34,[[0,3,3,0,3,[[24,2,2,0,2],[35,1,1,2,3]]],[1,5,5,3,8,[[51,2,2,3,5],[52,1,1,5,6],[53,1,1,6,7],[67,1,1,7,8]]],[3,8,7,8,15,[[138,2,2,8,10],[141,2,2,10,12],[147,4,3,12,15]]],[6,12,12,15,27,[[216,2,2,15,17],[217,5,5,17,22],[218,4,4,22,26],[219,1,1,26,27]]],[12,3,3,27,30,[[338,3,3,27,30]]],[22,3,3,30,33,[[687,1,1,30,31],[688,1,1,31,32],[738,1,1,32,33]]],[34,1,1,33,34,[[905,1,1,33,34]]]],[660,662,1075,1569,1570,1580,1620,2000,4379,4382,4486,4489,4667,4672,4673,6655,6656,6702,6707,6708,6709,6719,6724,6741,6745,6747,6771,10284,10285,10298,17833,17876,18827,22775]]],["Midianites",[19,19,[[3,2,2,0,2,[[147,2,2,0,2]]],[6,16,16,2,18,[[216,9,9,2,11],[217,6,6,11,17],[218,1,1,17,18]]],[18,1,1,18,19,[[560,1,1,18,19]]]],[4667,4671,6656,6657,6660,6661,6665,6667,6668,6670,6687,6695,6696,6701,6706,6717,6718,6720,15250]]]]},{"k":"H4081","v":[["Middin",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6263]]]]},{"k":"H4082","v":[["*",[53,40,[[10,4,4,0,4,[[310,4,4,0,4]]],[14,1,1,4,5,[[404,1,1,4,5]]],[15,3,3,5,8,[[413,1,1,5,6],[419,1,1,6,7],[423,1,1,7,8]]],[16,39,26,8,34,[[426,6,4,8,12],[427,2,2,12,14],[428,8,4,14,18],[429,3,2,18,20],[433,11,6,20,26],[434,9,8,26,34]]],[20,2,2,34,36,[[660,1,1,34,35],[663,1,1,35,36]]],[24,1,1,36,37,[[797,1,1,36,37]]],[25,1,1,37,38,[[820,1,1,37,38]]],[26,2,2,38,40,[[857,1,1,38,39],[860,1,1,39,40]]]],[9422,9423,9425,9427,12028,12299,12426,12591,12703,12705,12718,12724,12727,12742,12755,12759,12760,12761,12765,12773,12822,12826,12828,12829,12830,12834,12836,12837,12838,12846,12850,12854,12862,12864,17341,17405,20311,20889,21963,22060]]],["+",[19,9,[[16,18,8,0,8,[[426,2,1,0,1],[428,6,2,1,3],[429,2,1,3,4],[433,6,3,4,7],[434,2,1,7,8]]],[25,1,1,8,9,[[820,1,1,8,9]]]],[12724,12759,12761,12765,12826,12830,12834,12862,20889]]],["province",[8,8,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,3,3,1,4,[[413,1,1,1,2],[419,1,1,2,3],[423,1,1,3,4]]],[16,1,1,4,5,[[433,1,1,4,5]]],[20,1,1,5,6,[[663,1,1,5,6]]],[26,2,2,6,8,[[857,1,1,6,7],[860,1,1,7,8]]]],[12028,12299,12426,12591,12828,17405,21963,22060]]],["provinces",[26,25,[[10,4,4,0,4,[[310,4,4,0,4]]],[16,20,19,4,23,[[426,4,4,4,8],[427,2,2,8,10],[428,2,2,10,12],[429,1,1,12,13],[433,4,3,13,16],[434,7,7,16,23]]],[20,1,1,23,24,[[660,1,1,23,24]]],[24,1,1,24,25,[[797,1,1,24,25]]]],[9422,9423,9425,9427,12703,12705,12718,12724,12727,12742,12755,12760,12773,12822,12826,12829,12836,12837,12838,12846,12850,12854,12864,17341,20311]]]]},{"k":"H4083","v":[["*",[11,11,[[14,4,4,0,4,[[406,1,1,0,1],[407,1,1,1,2],[408,1,1,2,3],[409,1,1,3,4]]],[26,7,7,4,11,[[851,2,2,4,6],[852,5,5,6,11]]]],[12125,12142,12153,12189,21806,21807,21808,21809,21810,21819,21837]]],["province",[8,8,[[14,3,3,0,3,[[407,1,1,0,1],[408,1,1,1,2],[409,1,1,2,3]]],[26,5,5,3,8,[[851,2,2,3,5],[852,3,3,5,8]]]],[12142,12153,12189,21806,21807,21808,21819,21837]]],["provinces",[3,3,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,2,2,1,3,[[852,2,2,1,3]]]],[12125,21809,21810]]]]},{"k":"H4084","v":[["*",[7,7,[[0,1,1,0,1,[[36,1,1,0,1]]],[3,6,6,1,7,[[126,1,1,1,2],[141,4,4,2,6],[147,1,1,6,7]]]],[1111,4017,4477,4485,4486,4488,4666]]],["+",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1111]]],["Midianite",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[4017]]],["Midianites",[2,2,[[3,2,2,0,2,[[141,1,1,0,1],[147,1,1,1,2]]]],[4488,4666]]],["Midianitish",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4486]]],["woman",[2,2,[[3,2,2,0,2,[[141,2,2,0,2]]]],[4477,4485]]]]},{"k":"H4085","v":[["mortar",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4032]]]]},{"k":"H4086","v":[["Madmen",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20082]]]]},{"k":"H4087","v":[["dunghill",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18128]]]]},{"k":"H4088","v":[["Madmenah",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17881]]]]},{"k":"H4089","v":[["*",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[12,1,1,1,2,[[339,1,1,1,2]]]],[6233,10355]]],["+",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10355]]],["Madmannah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6233]]]]},{"k":"H4090","v":[["*",[2,2,[[19,2,2,0,2,[[633,1,1,0,1],[637,1,1,1,2]]]],[16559,16668]]],["discord",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16559]]],["strifes",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16668]]]]},{"k":"H4091","v":[["Medan",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[660,10284]]]]},{"k":"H4092","v":[["Midianites",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1119]]]]},{"k":"H4093","v":[["*",[6,6,[[13,3,3,0,3,[[367,3,3,0,3]]],[20,1,1,3,4,[[668,1,1,3,4]]],[26,2,2,4,6,[[850,2,2,4,6]]]],[11204,11205,11206,17513,21741,21754]]],["knowledge",[4,4,[[13,3,3,0,3,[[367,3,3,0,3]]],[26,1,1,3,4,[[850,1,1,3,4]]]],[11204,11205,11206,21754]]],["science",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21741]]],["thought",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17513]]]]},{"k":"H4094","v":[["piercings",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16737]]]]},{"k":"H4095","v":[["*",[2,2,[[21,1,1,0,1,[[672,1,1,0,1]]],[25,1,1,1,2,[[839,1,1,1,2]]]],[17568,21445]]],["places",[1,1,[[25,1,1,0,1,[[839,1,1,0,1]]]],[21445]]],["stairs",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17568]]]]},{"k":"H4096","v":[["+",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4943]]]]},{"k":"H4097","v":[["story",[2,2,[[13,2,2,0,2,[[379,1,1,0,1],[390,1,1,1,2]]]],[11475,11704]]]]},{"k":"H4098","v":[["threshing",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18045]]]]},{"k":"H4099","v":[["Hammedatha",[5,5,[[16,5,5,0,5,[[428,2,2,0,2],[433,1,1,2,3],[434,2,2,3,5]]]],[12748,12757,12822,12844,12858]]]]},{"k":"H4100","v":[["*",[751,657,[[0,63,56,0,56,[[1,1,1,0,1],[2,1,1,1,2],[3,3,2,2,4],[11,3,2,4,6],[14,2,2,6,8],[17,1,1,8,9],[19,3,2,9,11],[20,2,2,11,13],[22,1,1,13,14],[23,1,1,14,15],[24,2,2,15,17],[25,1,1,17,18],[26,4,4,18,22],[27,1,1,22,23],[28,3,2,23,25],[29,1,1,25,26],[30,8,7,26,33],[31,2,2,33,35],[32,1,1,35,36],[36,4,4,36,40],[37,3,3,40,43],[38,1,1,43,44],[41,2,2,44,46],[42,1,1,46,47],[43,6,4,47,51],[45,1,1,51,52],[46,4,4,52,56]]],[1,33,30,56,86,[[51,3,3,56,59],[52,2,1,59,60],[53,1,1,60,61],[54,4,3,61,64],[59,1,1,64,65],[61,1,1,65,66],[62,1,1,66,67],[63,3,3,67,70],[64,1,1,70,71],[65,3,3,71,74],[66,4,3,74,77],[67,1,1,77,78],[71,1,1,78,79],[81,5,5,79,84],[82,2,2,84,86]]],[2,1,1,86,87,[[114,1,1,86,87]]],[3,30,27,87,114,[[125,2,2,87,89],[127,3,2,89,91],[129,4,3,91,94],[130,2,2,94,96],[131,1,1,96,97],[132,1,1,97,98],[136,2,2,98,100],[137,1,1,100,101],[138,4,4,101,105],[139,6,5,105,110],[140,2,2,110,112],[143,1,1,112,113],[148,1,1,113,114]]],[4,6,5,114,119,[[157,1,1,114,115],[158,1,1,115,116],[162,1,1,116,117],[181,2,1,117,118],[184,1,1,118,119]]],[5,13,13,119,132,[[190,2,2,119,121],[191,1,1,121,122],[193,6,6,122,128],[195,1,1,128,129],[201,1,1,129,130],[208,2,2,130,132]]],[6,41,35,132,167,[[211,1,1,132,133],[212,1,1,133,134],[215,2,2,134,136],[216,2,2,136,138],[217,1,1,138,139],[218,3,3,139,142],[219,2,2,142,144],[221,1,1,144,145],[222,1,1,145,146],[223,3,3,146,149],[224,2,1,149,150],[225,2,2,150,152],[226,7,5,152,157],[228,9,6,157,163],[230,1,1,163,164],[231,3,3,164,167]]],[7,2,2,167,169,[[232,2,2,167,169]]],[8,68,56,169,225,[[236,3,1,169,170],[237,2,2,170,172],[238,1,1,172,173],[239,4,4,173,177],[240,1,1,177,178],[241,5,4,178,182],[244,3,2,182,184],[245,4,4,184,188],[246,1,1,188,189],[248,1,1,189,190],[249,2,2,190,192],[250,2,2,192,194],[251,1,1,194,195],[252,4,4,195,199],[254,4,3,199,202],[255,8,5,202,207],[256,2,2,207,209],[257,2,2,209,211],[259,1,1,211,212],[260,1,1,212,213],[261,4,2,213,215],[262,1,1,215,216],[263,7,6,216,222],[264,4,3,222,225]]],[9,46,43,225,268,[[267,2,2,225,227],[268,1,1,227,228],[269,2,1,228,229],[272,1,1,229,230],[273,2,2,230,232],[275,1,1,232,233],[277,1,1,233,234],[278,2,2,234,236],[279,1,1,236,237],[280,4,4,237,241],[281,1,1,241,242],[282,5,5,242,247],[283,1,1,247,248],[284,4,3,248,251],[285,11,11,251,262],[286,1,1,262,263],[287,3,2,263,265],[290,3,3,265,268]]],[10,19,19,268,287,[[291,1,1,268,269],[292,1,1,269,270],[293,1,1,270,271],[299,2,2,271,273],[301,1,1,273,274],[302,2,2,274,276],[304,3,3,276,279],[307,1,1,279,280],[308,1,1,280,281],[309,3,3,281,284],[311,1,1,284,285],[312,2,2,285,287]]],[11,24,23,287,310,[[313,2,2,287,289],[314,1,1,289,290],[315,1,1,290,291],[316,5,4,291,295],[317,1,1,295,296],[318,2,2,296,298],[319,1,1,298,299],[320,2,2,299,301],[321,3,3,301,304],[326,1,1,304,305],[330,1,1,305,306],[332,3,3,306,309],[335,1,1,309,310]]],[12,7,6,310,316,[[349,1,1,310,311],[354,2,2,311,313],[358,4,3,313,316]]],[13,17,17,316,333,[[367,1,1,316,317],[373,1,1,317,318],[376,2,2,318,320],[384,2,2,320,322],[385,1,1,322,323],[386,1,1,323,324],[390,1,1,324,325],[391,4,4,325,329],[398,3,3,329,332],[401,1,1,332,333]]],[14,2,2,333,335,[[408,1,1,333,334],[411,1,1,334,335]]],[15,7,7,335,342,[[414,4,4,335,339],[416,1,1,339,340],[418,1,1,340,341],[425,1,1,341,342]]],[16,18,11,342,353,[[426,1,1,342,343],[427,1,1,343,344],[429,2,1,344,345],[430,4,2,345,347],[431,2,2,347,349],[432,2,1,349,350],[433,1,1,350,351],[434,5,2,351,353]]],[17,62,51,353,404,[[438,3,3,353,356],[441,5,3,356,359],[442,5,4,359,363],[444,3,3,363,366],[445,2,2,366,368],[446,2,1,368,369],[448,4,4,369,373],[450,4,3,373,376],[451,2,2,376,378],[454,2,2,378,380],[456,4,3,380,383],[457,2,2,383,385],[458,1,1,385,386],[460,2,1,386,387],[461,3,3,387,390],[462,2,2,390,392],[465,1,1,392,393],[466,4,3,393,396],[469,2,2,396,398],[470,6,3,398,401],[472,1,1,401,402],[473,1,1,402,403],[475,1,1,403,404]]],[18,66,57,404,461,[[479,1,1,404,405],[480,1,1,405,406],[481,1,1,406,407],[485,3,3,407,410],[487,2,2,410,412],[488,1,1,412,413],[498,1,1,413,414],[499,1,1,414,415],[507,1,1,415,416],[508,1,1,416,417],[512,1,1,417,418],[513,1,1,418,419],[516,3,2,419,421],[519,5,3,421,424],[520,4,2,424,426],[521,2,2,426,428],[526,1,1,428,429],[527,1,1,429,430],[529,1,1,430,431],[533,2,2,431,433],[543,1,1,433,434],[545,1,1,434,435],[551,3,3,435,438],[555,1,1,438,439],[556,2,2,439,441],[557,1,1,441,442],[561,1,1,442,443],[562,1,1,443,444],[565,1,1,444,445],[566,3,2,445,447],[569,1,1,447,448],[581,1,1,448,449],[591,1,1,449,450],[592,1,1,450,451],[593,1,1,451,452],[595,1,1,452,453],[596,4,4,453,457],[597,2,1,457,458],[610,2,1,458,459],[616,2,1,459,460],[621,1,1,460,461]]],[19,16,13,461,474,[[631,1,1,461,462],[632,1,1,462,463],[636,1,1,463,464],[642,1,1,464,465],[643,1,1,465,466],[644,1,1,466,467],[647,1,1,467,468],[649,1,1,468,469],[652,1,1,469,470],[654,1,1,470,471],[657,3,2,471,473],[658,3,1,473,474]]],[20,28,25,474,499,[[659,3,2,474,476],[660,4,4,476,480],[661,3,3,480,483],[663,3,3,483,486],[664,6,4,486,490],[665,4,4,490,494],[666,2,2,494,496],[668,1,1,496,497],[669,2,2,497,499]]],[21,13,9,499,508,[[671,1,1,499,500],[674,2,1,500,501],[675,3,2,501,503],[676,1,1,503,504],[677,3,2,504,506],[678,3,2,506,508]]],[22,29,27,508,535,[[679,2,2,508,510],[680,1,1,510,511],[681,1,1,511,512],[683,1,1,512,513],[688,1,1,513,514],[692,1,1,514,515],[697,1,1,515,516],[699,2,1,516,517],[700,2,2,517,519],[714,1,1,519,520],[716,2,2,520,522],[717,2,2,522,524],[718,3,3,524,527],[719,1,1,527,528],[723,3,2,528,530],[730,2,2,530,532],[733,1,1,532,533],[736,1,1,533,534],[741,1,1,534,535]]],[23,50,43,535,578,[[745,2,2,535,537],[746,7,6,537,543],[748,1,1,543,544],[749,3,3,544,547],[750,1,1,547,548],[751,1,1,548,549],[752,3,3,549,552],[753,1,1,552,553],[755,1,1,553,554],[757,1,1,554,555],[758,2,2,555,557],[759,1,1,557,558],[760,3,1,558,559],[764,1,1,559,560],[766,2,2,560,562],[767,7,4,562,566],[768,1,1,566,567],[771,2,2,567,569],[773,1,1,569,570],[774,1,1,570,571],[777,1,1,571,572],[781,1,1,572,573],[782,2,1,573,574],[784,1,1,574,575],[788,1,1,575,576],[792,1,1,576,577],[793,1,1,577,578]]],[24,6,4,578,582,[[798,3,1,578,579],[799,1,1,579,580],[801,2,2,580,582]]],[25,16,16,582,598,[[809,1,1,582,583],[813,2,2,583,585],[816,1,1,585,586],[817,1,1,586,587],[818,1,1,587,588],[819,2,2,588,590],[820,1,1,590,591],[821,1,1,591,592],[822,2,2,592,594],[825,1,1,594,595],[834,2,2,595,597],[838,1,1,597,598]]],[26,3,3,598,601,[[850,1,1,598,599],[859,1,1,599,600],[861,1,1,600,601]]],[27,6,5,601,606,[[867,2,1,601,602],[870,2,2,602,604],[871,1,1,604,605],[875,1,1,605,606]]],[28,3,3,606,609,[[876,1,1,606,607],[877,1,1,607,608],[878,1,1,608,609]]],[29,4,4,609,613,[[882,1,1,609,610],[883,1,1,610,611],[885,1,1,611,612],[886,1,1,612,613]]],[31,6,5,613,618,[[889,5,4,613,617],[892,1,1,617,618]]],[32,8,5,618,623,[[896,1,1,618,619],[898,7,4,619,623]]],[33,1,1,623,624,[[900,1,1,623,624]]],[34,5,4,624,628,[[903,2,2,624,626],[904,3,2,626,628]]],[36,2,2,628,630,[[909,1,1,628,629],[910,1,1,629,630]]],[37,20,17,630,647,[[911,4,3,630,633],[912,2,1,633,634],[914,6,6,634,640],[915,3,3,640,643],[916,1,1,643,644],[917,1,1,644,645],[919,2,1,645,646],[923,1,1,646,647]]],[38,10,10,647,657,[[925,3,3,647,650],[926,3,3,650,653],[927,4,4,653,657]]]],[49,68,85,89,316,317,362,368,437,504,505,530,542,586,622,680,690,702,747,764,772,773,790,810,820,861,899,900,903,905,909,910,916,955,957,975,1093,1098,1103,1109,1135,1137,1148,1157,1253,1280,1296,1328,1331,1339,1340,1419,1423,1428,1435,1439,1558,1567,1574,1592,1603,1636,1647,1654,1803,1842,1881,1894,1900,1904,1944,1954,1955,1962,1985,1986,1987,2013,2140,2439,2449,2450,2459,2461,2478,2489,3489,3972,3973,4035,4044,4093,4094,4095,4111,4149,4187,4205,4315,4316,4345,4394,4403,4407,4412,4419,4424,4427,4433,4439,4451,4468,4558,4725,5078,5106,5198,5703,5778,5916,5931,5948,5983,5984,5985,5986,5995,6001,6059,6220,6442,6450,6523,6547,6639,6640,6667,6669,6705,6720,6721,6722,6756,6802,6841,6872,6892,6896,6902,6927,6939,6940,6954,6955,6959,6962,6964,6996,7001,7007,7011,7016,7017,7066,7105,7109,7118,7138,7148,7220,7263,7269,7293,7300,7303,7311,7313,7327,7333,7334,7335,7337,7398,7412,7420,7429,7433,7445,7450,7496,7546,7551,7574,7579,7596,7626,7644,7646,7647,7709,7711,7723,7731,7734,7738,7740,7762,7775,7786,7790,7800,7848,7878,7920,7923,7935,7951,7954,7955,7956,7957,7958,7970,7971,7975,8026,8035,8071,8105,8177,8187,8200,8235,8280,8307,8309,8343,8361,8369,8387,8388,8408,8428,8435,8436,8443,8446,8454,8500,8501,8507,8521,8522,8523,8533,8536,8539,8540,8545,8546,8547,8553,8573,8583,8584,8695,8705,8709,8733,8792,8821,9059,9064,9130,9160,9167,9221,9224,9232,9335,9350,9396,9400,9407,9456,9496,9502,9538,9540,9560,9589,9605,9616,9617,9646,9655,9702,9707,9710,9740,9741,9774,9775,9778,9906,10043,10106,10112,10113,10182,10752,10869,10881,10937,10946,10951,11201,11345,11404,11411,11557,11562,11582,11599,11697,11713,11719,11720,11723,11879,11885,11888,11987,12160,12247,12311,12319,12323,12326,12361,12404,12688,12717,12735,12767,12782,12785,12796,12799,12809,12818,12846,12860,12915,12916,12924,12989,13002,13003,13025,13027,13028,13029,13053,13063,13080,13088,13104,13116,13166,13167,13176,13177,13212,13215,13217,13241,13244,13319,13325,13370,13372,13376,13402,13406,13424,13465,13469,13470,13481,13489,13493,13559,13589,13590,13602,13687,13716,13723,13726,13727,13788,13799,13868,13946,13958,13967,14013,14016,14021,14042,14054,14062,14192,14205,14328,14350,14427,14445,14516,14519,14560,14564,14566,14568,14571,14594,14595,14653,14684,14711,14759,14766,14876,14916,15049,15057,15059,15153,15190,15195,15210,15260,15279,15322,15372,15373,15416,15595,15827,15832,15860,15875,15907,15982,15995,16001,16077,16170,16256,16308,16509,16537,16651,16830,16856,16889,16978,17042,17121,17170,17255,17264,17286,17318,17324,17335,17345,17348,17355,17368,17374,17381,17403,17408,17413,17425,17427,17428,17429,17439,17445,17446,17453,17462,17465,17507,17515,17518,17544,17592,17606,17607,17627,17628,17633,17644,17648,17659,17665,17707,17722,17743,17853,17960,18016,18046,18053,18068,18334,18405,18412,18415,18416,18426,18438,18447,18473,18570,18571,18701,18703,18742,18789,18883,18957,18959,18970,18983,18988,18994,18998,19001,19057,19073,19077,19089,19109,19136,19159,19162,19167,19187,19241,19287,19301,19302,19333,19346,19440,19462,19477,19512,19517,19519,19521,19527,19609,19613,19662,19682,19799,19892,19920,19956,20017,20099,20131,20345,20393,20443,20462,20610,20689,20702,20756,20792,20837,20851,20880,20883,20924,20951,20957,21075,21291,21310,21415,21747,22035,22089,22171,22213,22222,22228,22290,22309,22328,22347,22423,22441,22472,22483,22537,22539,22541,22542,22573,22629,22651,22653,22654,22656,22693,22734,22744,22749,22766,22849,22858,22887,22897,22899,22901,22924,22926,22927,22933,22934,22935,22938,22941,22942,22951,22965,23016,23065,23091,23095,23096,23117,23118,23120,23127,23128,23133,23134]]],["+",[45,44,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[53,1,1,1,2]]],[3,4,4,2,6,[[127,1,1,2,3],[138,1,1,3,4],[139,1,1,4,5],[140,1,1,5,6]]],[4,1,1,6,7,[[181,1,1,6,7]]],[8,1,1,7,8,[[251,1,1,7,8]]],[9,6,5,8,13,[[267,1,1,8,9],[278,1,1,9,10],[284,3,2,10,12],[285,1,1,12,13]]],[10,2,2,13,15,[[304,1,1,13,14],[311,1,1,14,15]]],[13,2,2,15,17,[[384,1,1,15,16],[398,1,1,16,17]]],[15,1,1,17,18,[[414,1,1,17,18]]],[16,1,1,18,19,[[429,1,1,18,19]]],[17,4,4,19,23,[[445,1,1,19,20],[448,1,1,20,21],[451,1,1,21,22],[473,1,1,22,23]]],[18,6,6,23,29,[[481,1,1,23,24],[487,1,1,24,25],[551,1,1,25,26],[556,1,1,26,27],[566,2,2,27,29]]],[19,2,2,29,31,[[636,1,1,29,30],[644,1,1,30,31]]],[20,4,4,31,35,[[661,2,2,31,33],[665,1,1,33,34],[668,1,1,34,35]]],[21,1,1,35,36,[[671,1,1,35,36]]],[22,1,1,36,37,[[679,1,1,36,37]]],[23,4,4,37,41,[[749,1,1,37,38],[752,1,1,38,39],[760,1,1,39,40],[766,1,1,40,41]]],[25,1,1,41,42,[[822,1,1,41,42]]],[36,1,1,42,43,[[909,1,1,42,43]]],[38,1,1,43,44,[[926,1,1,43,44]]]],[437,1603,4044,4407,4419,4468,5703,7596,8035,8309,8500,8501,8553,9224,9456,11557,11885,12311,12767,13088,13167,13244,13799,13967,14054,15057,15190,15372,15373,16651,16889,17374,17381,17453,17507,17544,17659,19077,19167,19346,19462,20951,22849,23117]]],["How",[30,30,[[0,4,4,0,4,[[26,1,1,0,1],[27,1,1,1,2],[37,1,1,2,3],[46,1,1,3,4]]],[3,2,2,4,6,[[139,1,1,4,5],[140,1,1,5,6]]],[6,3,3,6,9,[[223,1,1,6,7],[231,2,2,7,9]]],[8,1,1,9,10,[[245,1,1,9,10]]],[9,3,3,10,13,[[267,1,1,10,11],[272,1,1,11,12],[285,1,1,12,13]]],[17,6,6,13,19,[[441,1,1,13,14],[448,1,1,14,15],[457,1,1,15,16],[460,1,1,16,17],[461,2,2,17,19]]],[18,5,5,19,24,[[513,1,1,19,20],[543,1,1,20,21],[561,1,1,21,22],[596,1,1,22,23],[616,1,1,23,24]]],[21,3,3,24,27,[[674,1,1,24,25],[677,2,2,25,27]]],[22,1,1,27,28,[[730,1,1,27,28]]],[25,1,1,28,29,[[817,1,1,28,29]]],[28,1,1,29,30,[[876,1,1,29,30]]]],[747,790,1148,1428,4424,4451,6896,7109,7118,7445,8026,8177,8545,13003,13176,13402,13465,13469,13470,14445,14876,15260,16001,16256,17592,17628,17633,18703,20792,22309]]],["That",[1,1,[[20,1,1,0,1,[[664,1,1,0,1]]]],[17427]]],["What",[190,185,[[0,24,24,0,24,[[2,1,1,0,1],[3,1,1,1,2],[11,1,1,2,3],[19,2,2,3,5],[20,2,2,5,7],[25,1,1,7,8],[28,1,1,8,9],[29,1,1,9,10],[30,2,2,10,12],[31,1,1,12,13],[32,1,1,13,14],[36,3,3,14,17],[37,2,2,17,19],[41,1,1,19,20],[43,2,2,20,22],[45,1,1,22,23],[46,1,1,23,24]]],[1,7,7,24,31,[[52,1,1,24,25],[61,1,1,25,26],[62,1,1,26,27],[64,1,1,27,28],[66,1,1,28,29],[67,1,1,29,30],[81,1,1,30,31]]],[2,1,1,31,32,[[114,1,1,31,32]]],[3,4,4,32,36,[[138,1,1,32,33],[139,3,3,33,36]]],[4,1,1,36,37,[[158,1,1,36,37]]],[5,6,6,37,43,[[190,2,2,37,39],[191,1,1,39,40],[201,1,1,40,41],[208,2,2,41,43]]],[6,10,10,43,53,[[211,1,1,43,44],[218,1,1,44,45],[219,1,1,45,46],[221,1,1,46,47],[224,1,1,47,48],[228,4,4,48,52],[230,1,1,52,53]]],[8,17,17,53,70,[[238,1,1,53,54],[239,3,3,54,57],[240,1,1,57,58],[241,2,2,58,60],[245,2,2,60,62],[246,1,1,62,63],[248,1,1,63,64],[250,1,1,64,65],[252,2,2,65,67],[255,1,1,67,68],[263,1,1,68,69],[264,1,1,69,70]]],[9,10,10,70,80,[[269,1,1,70,71],[275,1,1,71,72],[278,1,1,72,73],[280,1,1,73,74],[282,2,2,74,76],[285,2,2,76,78],[287,2,2,78,80]]],[10,8,8,80,88,[[291,1,1,80,81],[299,1,1,81,82],[302,2,2,82,84],[307,1,1,84,85],[308,1,1,85,86],[309,2,2,86,88]]],[11,15,15,88,103,[[313,1,1,88,89],[315,1,1,89,90],[316,3,3,90,93],[318,1,1,93,94],[320,1,1,94,95],[321,3,3,95,98],[330,1,1,98,99],[332,3,3,99,102],[335,1,1,102,103]]],[12,1,1,103,104,[[354,1,1,103,104]]],[13,3,3,104,107,[[376,2,2,104,106],[401,1,1,106,107]]],[15,3,3,107,110,[[414,1,1,107,108],[416,1,1,108,109],[425,1,1,109,110]]],[16,6,6,110,116,[[426,1,1,110,111],[430,2,2,111,113],[431,2,2,113,115],[432,1,1,115,116]]],[17,9,8,116,124,[[441,1,1,116,117],[442,1,1,117,118],[444,1,1,118,119],[450,2,2,119,121],[456,1,1,121,122],[466,1,1,122,123],[470,2,1,123,124]]],[18,6,6,124,130,[[485,1,1,124,125],[507,1,1,125,126],[527,1,1,126,127],[591,1,1,127,128],[593,1,1,128,129],[597,1,1,129,130]]],[19,1,1,130,131,[[658,1,1,130,131]]],[20,5,5,131,136,[[659,1,1,131,132],[660,1,1,132,133],[661,1,1,133,134],[665,1,1,134,135],[666,1,1,135,136]]],[21,2,2,136,138,[[675,1,1,136,137],[676,1,1,137,138]]],[22,13,12,138,150,[[683,1,1,138,139],[692,1,1,139,140],[700,2,2,140,142],[714,1,1,142,143],[716,2,2,143,145],[717,2,2,145,147],[718,1,1,147,148],[723,3,2,148,150]]],[23,15,12,150,162,[[745,1,1,150,151],[746,1,1,151,152],[752,1,1,152,153],[755,1,1,153,154],[757,1,1,154,155],[767,7,4,155,159],[768,1,1,159,160],[781,1,1,160,161],[792,1,1,161,162]]],[25,5,5,162,167,[[813,1,1,162,163],[816,1,1,163,164],[819,1,1,164,165],[820,1,1,165,166],[821,1,1,166,167]]],[27,2,2,167,169,[[870,1,1,167,168],[875,1,1,168,169]]],[31,3,3,169,172,[[889,3,3,169,172]]],[33,1,1,172,173,[[900,1,1,172,173]]],[34,1,1,173,174,[[904,1,1,173,174]]],[37,10,10,174,184,[[911,2,2,174,176],[914,4,4,176,180],[915,2,2,180,182],[916,1,1,182,183],[923,1,1,183,184]]],[38,1,1,184,185,[[927,1,1,184,185]]]],[68,89,316,504,505,530,542,702,820,861,899,909,955,975,1093,1098,1109,1135,1137,1280,1339,1340,1419,1423,1592,1842,1881,1944,1987,2013,2459,3489,4403,4427,4433,4439,5106,5916,5931,5948,6220,6442,6450,6523,6721,6802,6841,6927,7001,7011,7016,7017,7066,7293,7303,7311,7313,7327,7333,7335,7420,7429,7450,7496,7574,7644,7647,7731,7956,7970,8105,8235,8307,8361,8428,8436,8533,8539,8583,8584,8733,9064,9160,9167,9335,9350,9396,9400,9540,9589,9605,9617,9646,9702,9741,9774,9775,9778,10043,10106,10112,10113,10182,10881,11404,11411,11987,12326,12361,12688,12717,12782,12785,12796,12799,12809,12989,13025,13063,13212,13217,13370,13602,13723,14016,14328,14684,15827,15860,16077,17286,17318,17335,17368,17439,17462,17607,17627,17743,17960,18053,18068,18334,18405,18412,18415,18416,18426,18570,18571,18959,18970,19159,19241,19287,19512,19517,19519,19521,19527,19892,20099,20689,20756,20851,20883,20924,22213,22290,22537,22539,22542,22693,22766,22897,22899,22924,22926,22933,22934,22938,22942,22951,23065,23133]]],["Whatsoever",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7734]]],["Wherefore",[45,45,[[0,6,6,0,6,[[30,1,1,0,1],[31,1,1,1,2],[42,1,1,2,3],[43,2,2,3,5],[46,1,1,5,6]]],[1,6,6,6,12,[[51,1,1,6,7],[54,2,2,7,9],[63,1,1,9,10],[66,1,1,10,11],[81,1,1,11,12]]],[3,3,3,12,15,[[127,1,1,12,13],[130,1,1,13,14],[137,1,1,14,15]]],[5,1,1,15,16,[[195,1,1,15,16]]],[8,8,8,16,24,[[237,1,1,16,17],[239,1,1,17,18],[241,1,1,18,19],[250,1,1,19,20],[255,1,1,20,21],[259,1,1,21,22],[261,1,1,22,23],[263,1,1,23,24]]],[9,5,5,24,29,[[280,3,3,24,27],[281,1,1,27,28],[285,1,1,28,29]]],[11,1,1,29,30,[[317,1,1,29,30]]],[17,3,3,30,33,[[438,1,1,30,31],[445,1,1,31,32],[448,1,1,32,33]]],[18,4,4,33,37,[[521,1,1,33,34],[526,1,1,34,35],[556,1,1,35,36],[592,1,1,36,37]]],[22,2,2,37,39,[[733,1,1,37,38],[736,1,1,38,39]]],[23,4,4,39,43,[[746,1,1,39,40],[764,1,1,40,41],[788,1,1,41,42],[793,1,1,42,43]]],[24,2,2,43,45,[[799,1,1,43,44],[801,1,1,44,45]]]],[900,957,1296,1328,1331,1439,1567,1636,1647,1904,1986,2450,4035,4149,4345,6059,7269,7300,7337,7579,7762,7848,7923,7958,8369,8387,8388,8408,8536,9655,12924,13104,13177,14595,14653,15195,15832,18742,18789,18994,19440,20017,20131,20393,20462]]],["Wherein",[6,6,[[38,6,6,0,6,[[925,3,3,0,3],[926,1,1,3,4],[927,2,2,4,6]]]],[23091,23095,23096,23120,23127,23128]]],["Wherewith",[3,3,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]],[32,1,1,2,3,[[898,1,1,2,3]]]],[9502,11562,22654]]],["Wherewithal",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15907]]],["Whether",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6756]]],["Why",[54,54,[[0,3,3,0,3,[[3,1,1,0,1],[11,1,1,1,2],[41,1,1,2,3]]],[1,2,2,3,5,[[63,1,1,3,4],[66,1,1,4,5]]],[3,1,1,5,6,[[143,1,1,5,6]]],[5,1,1,6,7,[[193,1,1,6,7]]],[6,4,4,7,11,[[215,1,1,7,8],[218,1,1,8,9],[223,1,1,9,10],[225,1,1,10,11]]],[8,7,7,11,18,[[237,1,1,11,12],[252,2,2,12,14],[254,1,1,14,15],[257,1,1,15,16],[263,2,2,16,18]]],[9,5,5,18,23,[[273,1,1,18,19],[279,1,1,19,20],[282,1,1,20,21],[285,2,2,21,23]]],[10,1,1,23,24,[[299,1,1,23,24]]],[11,2,2,24,26,[[313,1,1,24,25],[319,1,1,25,26]]],[12,1,1,26,27,[[354,1,1,26,27]]],[13,4,4,27,31,[[373,1,1,27,28],[390,1,1,28,29],[391,1,1,29,30],[398,1,1,30,31]]],[17,4,4,31,35,[[438,1,1,31,32],[450,1,1,32,33],[454,2,2,33,35]]],[18,10,10,35,45,[[479,1,1,35,36],[487,1,1,36,37],[519,3,3,37,40],[520,1,1,40,41],[529,1,1,41,42],[545,1,1,42,43],[551,1,1,43,44],[557,1,1,44,45]]],[22,1,1,45,46,[[718,1,1,45,46]]],[23,6,6,46,52,[[746,2,2,46,48],[758,1,1,48,49],[759,1,1,49,50],[771,1,1,50,51],[774,1,1,51,52]]],[31,1,1,52,53,[[889,1,1,52,53]]],[34,1,1,53,54,[[903,1,1,53,54]]]],[85,317,1253,1894,1985,4558,6001,6639,6720,6902,6939,7263,7626,7646,7723,7800,7954,7957,8187,8343,8435,8522,8540,9059,9538,9710,10869,11345,11697,11719,11879,12915,13215,13319,13325,13946,14042,14560,14564,14566,14571,14711,14916,15059,15210,18447,18998,19001,19302,19333,19609,19682,22541,22734]]],["end",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22441]]],["good",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[773]]],["how",[27,25,[[0,1,1,0,1,[[43,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[17,3,3,2,5,[[444,1,1,2,3],[460,1,1,3,4],[461,1,1,4,5]]],[18,13,12,5,17,[[480,1,1,5,6],[485,2,2,6,8],[498,1,1,8,9],[508,1,1,9,10],[516,1,1,10,11],[566,1,1,11,12],[569,1,1,12,13],[581,1,1,13,14],[596,1,1,14,15],[610,2,1,15,16],[616,1,1,16,17]]],[19,3,3,17,20,[[642,1,1,17,18],[647,1,1,18,19],[657,1,1,19,20]]],[21,2,2,20,22,[[674,1,1,20,21],[677,1,1,21,22]]],[23,1,1,22,23,[[766,1,1,22,23]]],[36,1,1,23,24,[[910,1,1,23,24]]],[37,2,1,24,25,[[919,2,1,24,25]]]],[1340,4424,13053,13465,13481,13958,14013,14021,14192,14350,14516,15373,15416,15595,15995,16170,16256,16830,16978,17264,17592,17633,19477,22858,23016]]],["long",[2,2,[[17,1,1,0,1,[[442,1,1,0,1]]],[18,1,1,1,2,[[512,1,1,1,2]]]],[13027,14427]]],["many",[3,3,[[10,1,1,0,1,[[312,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[37,1,1,2,3,[[917,1,1,2,3]]]],[9496,15982,22965]]],["much",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16856]]],["nor",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17644]]],["oft",[2,2,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[13372,15153]]],["profit",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[690]]],["that",[5,5,[[14,1,1,0,1,[[408,1,1,0,1]]],[20,2,2,1,3,[[659,1,1,1,2],[666,1,1,2,3]]],[21,2,2,3,5,[[675,1,1,3,4],[678,1,1,4,5]]]],[12160,17324,17465,17606,17644]]],["thing",[3,2,[[20,1,1,0,1,[[659,1,1,0,1]]],[24,2,1,1,2,[[798,2,1,1,2]]]],[17324,20345]]],["what",[212,186,[[0,13,13,0,13,[[1,1,1,0,1],[14,1,1,1,2],[19,1,1,2,3],[22,1,1,3,4],[26,1,1,4,5],[28,1,1,5,6],[30,4,4,6,10],[36,1,1,10,11],[38,1,1,11,12],[43,1,1,12,13]]],[1,9,9,13,22,[[51,1,1,13,14],[52,1,1,14,15],[59,1,1,15,16],[65,3,3,16,19],[81,2,2,19,21],[82,1,1,21,22]]],[3,8,7,22,29,[[125,1,1,22,23],[129,4,3,23,26],[131,1,1,26,27],[132,1,1,27,28],[138,1,1,28,29]]],[4,3,3,29,32,[[162,1,1,29,30],[181,1,1,30,31],[184,1,1,31,32]]],[5,3,3,32,35,[[193,3,3,32,35]]],[6,11,9,35,44,[[217,1,1,35,36],[218,1,1,36,37],[223,1,1,37,38],[224,1,1,38,39],[225,1,1,39,40],[226,1,1,40,41],[228,5,3,41,44]]],[8,18,14,44,58,[[244,2,1,44,45],[245,1,1,45,46],[249,1,1,46,47],[254,1,1,47,48],[255,4,3,48,51],[256,1,1,51,52],[257,1,1,52,53],[260,1,1,53,54],[261,2,1,54,55],[263,2,2,55,57],[264,2,1,57,58]]],[9,6,6,58,64,[[273,1,1,58,59],[282,1,1,59,60],[283,1,1,60,61],[284,1,1,61,62],[290,2,2,62,64]]],[10,5,5,64,69,[[293,1,1,64,65],[301,1,1,65,66],[304,2,2,66,68],[309,1,1,68,69]]],[11,5,5,69,74,[[314,1,1,69,70],[316,2,2,70,72],[318,1,1,72,73],[320,1,1,73,74]]],[12,3,3,74,77,[[349,1,1,74,75],[358,2,2,75,77]]],[13,5,5,77,82,[[367,1,1,77,78],[385,1,1,78,79],[386,1,1,79,80],[391,1,1,80,81],[398,1,1,81,82]]],[14,1,1,82,83,[[411,1,1,82,83]]],[15,2,2,83,85,[[414,2,2,83,85]]],[16,9,7,85,92,[[427,1,1,85,86],[429,1,1,86,87],[430,2,2,87,89],[432,1,1,89,90],[433,1,1,90,91],[434,3,1,91,92]]],[17,23,20,92,112,[[441,2,2,92,94],[442,1,1,94,95],[446,2,1,95,96],[448,1,1,96,97],[450,1,1,97,98],[451,1,1,98,99],[456,2,2,99,101],[457,1,1,101,102],[458,1,1,102,103],[462,1,1,103,104],[466,2,2,104,106],[469,2,2,106,108],[470,4,2,108,110],[472,1,1,110,111],[475,1,1,111,112]]],[18,9,9,112,121,[[488,1,1,112,113],[516,2,2,113,115],[533,2,2,115,117],[562,1,1,117,118],[595,1,1,118,119],[597,1,1,119,120],[621,1,1,120,121]]],[19,7,5,121,126,[[631,1,1,121,122],[652,1,1,122,123],[654,1,1,123,124],[657,2,1,124,125],[658,2,1,125,126]]],[20,11,9,126,135,[[660,2,2,126,128],[663,2,2,128,130],[664,5,3,130,133],[669,2,2,133,135]]],[21,2,2,135,137,[[675,1,1,135,136],[678,1,1,136,137]]],[22,8,7,137,144,[[679,1,1,137,138],[688,1,1,138,139],[697,1,1,139,140],[699,2,1,140,141],[718,1,1,141,142],[719,1,1,142,143],[730,1,1,143,144]]],[23,16,13,144,157,[[745,1,1,144,145],[746,3,2,145,147],[748,1,1,147,148],[749,2,2,148,150],[750,1,1,150,151],[751,1,1,151,152],[752,1,1,152,153],[753,1,1,153,154],[760,2,1,154,155],[777,1,1,155,156],[782,2,1,156,157]]],[24,2,2,157,159,[[798,1,1,157,158],[801,1,1,158,159]]],[25,7,7,159,166,[[809,1,1,159,160],[813,1,1,160,161],[818,1,1,161,162],[822,1,1,162,163],[825,1,1,163,164],[834,1,1,164,165],[838,1,1,165,166]]],[26,1,1,166,167,[[861,1,1,166,167]]],[27,4,3,167,170,[[867,2,1,167,168],[870,1,1,168,169],[871,1,1,169,170]]],[28,1,1,170,171,[[878,1,1,170,171]]],[29,3,3,171,174,[[882,1,1,171,172],[885,1,1,172,173],[886,1,1,173,174]]],[31,2,2,174,176,[[889,1,1,174,175],[892,1,1,175,176]]],[32,5,3,176,179,[[898,5,3,176,179]]],[34,2,1,179,180,[[904,2,1,179,180]]],[37,7,5,180,185,[[911,2,1,180,181],[912,2,1,181,182],[914,2,2,182,184],[915,1,1,184,185]]],[38,1,1,185,186,[[927,1,1,185,186]]]],[49,362,504,586,764,810,905,909,910,916,1103,1157,1340,1558,1592,1803,1954,1955,1962,2439,2461,2478,3973,4093,4094,4095,4187,4205,4394,5198,5703,5778,5984,5985,5995,6705,6722,6892,6927,6940,6954,6996,7007,7017,7398,7433,7551,7709,7731,7740,7762,7775,7790,7878,7923,7955,7957,7975,8200,8446,8454,8507,8705,8709,8821,9130,9221,9232,9407,9560,9605,9616,9707,9740,10752,10946,10951,11201,11582,11599,11713,11888,12247,12319,12323,12735,12767,12782,12785,12809,12818,12846,12989,13003,13028,13116,13166,13215,13241,13370,13376,13406,13424,13489,13590,13602,13687,13716,13726,13727,13788,13868,14062,14516,14519,14759,14766,15279,15875,16077,16308,16509,17121,17170,17255,17286,17345,17355,17408,17413,17425,17428,17429,17515,17518,17607,17648,17665,17853,18016,18046,18438,18473,18701,18957,18983,18988,19057,19073,19089,19109,19136,19162,19187,19346,19799,19920,20345,20443,20610,20702,20837,20957,21075,21310,21415,22089,22171,22222,22228,22347,22423,22472,22483,22539,22573,22651,22653,22656,22749,22887,22901,22927,22935,22941,23134]]],["whereby",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[368]]],["wherefore",[30,30,[[0,3,3,0,3,[[23,1,1,0,1],[28,1,1,1,2],[30,1,1,2,3]]],[1,3,3,3,6,[[54,1,1,3,4],[63,1,1,4,5],[66,1,1,5,6]]],[3,6,6,6,12,[[125,1,1,6,7],[127,1,1,7,8],[130,1,1,8,9],[136,1,1,9,10],[138,1,1,10,11],[148,1,1,11,12]]],[5,2,2,12,14,[[193,2,2,12,14]]],[6,1,1,14,15,[[222,1,1,14,15]]],[8,5,5,15,20,[[244,1,1,15,16],[254,1,1,16,17],[256,1,1,17,18],[261,1,1,18,19],[263,1,1,19,20]]],[9,3,3,20,23,[[268,1,1,20,21],[285,2,2,21,23]]],[20,1,1,23,24,[[663,1,1,23,24]]],[23,2,2,24,26,[[771,1,1,24,25],[784,1,1,25,26]]],[26,1,1,26,27,[[859,1,1,26,27]]],[28,1,1,27,28,[[877,1,1,27,28]]],[34,1,1,28,29,[[903,1,1,28,29]]],[38,1,1,29,30,[[926,1,1,29,30]]]],[622,820,903,1654,1900,1985,3972,4035,4111,4316,4412,4725,5983,5986,6872,7412,7711,7786,7920,7951,8071,8523,8546,17403,19613,19956,22035,22328,22744,23118]]],["wherein",[9,9,[[1,2,2,0,2,[[71,1,1,0,1],[82,1,1,1,2]]],[6,3,3,2,5,[[226,3,3,2,5]]],[8,1,1,5,6,[[249,1,1,5,6]]],[17,1,1,6,7,[[441,1,1,6,7]]],[22,1,1,7,8,[[680,1,1,7,8]]],[32,1,1,8,9,[[898,1,1,8,9]]]],[2140,2489,6954,6955,6964,7546,13002,17707,22651]]],["whereto",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13559]]],["wherewith",[7,7,[[6,4,4,0,4,[[216,1,1,0,1],[226,3,3,1,4]]],[8,2,2,4,6,[[241,1,1,4,5],[264,1,1,5,6]]],[9,1,1,6,7,[[287,1,1,6,7]]]],[6669,6955,6959,6962,7333,7971,8583]]],["which",[2,1,[[16,2,1,0,1,[[434,2,1,0,1]]]],[12860]]],["why",[64,60,[[0,5,5,0,5,[[3,1,1,0,1],[11,1,1,1,2],[24,1,1,2,3],[26,1,1,3,4],[46,1,1,4,5]]],[1,3,3,5,8,[[51,1,1,5,6],[54,1,1,6,7],[81,1,1,7,8]]],[3,1,1,8,9,[[136,1,1,8,9]]],[4,1,1,9,10,[[157,1,1,9,10]]],[6,4,4,10,14,[[212,1,1,10,11],[215,1,1,11,12],[216,1,1,12,13],[231,1,1,13,14]]],[7,2,2,14,16,[[232,2,2,14,16]]],[8,7,5,16,21,[[236,3,1,16,17],[241,1,1,17,18],[254,1,1,18,19],[255,1,1,19,20],[262,1,1,20,21]]],[9,7,7,21,28,[[269,1,1,21,22],[277,1,1,22,23],[282,1,1,23,24],[285,2,2,24,26],[286,1,1,26,27],[290,1,1,27,28]]],[10,1,1,28,29,[[292,1,1,28,29]]],[11,1,1,29,30,[[326,1,1,29,30]]],[12,2,1,30,31,[[358,2,1,30,31]]],[13,2,2,31,33,[[391,2,2,31,33]]],[15,1,1,33,34,[[418,1,1,33,34]]],[17,6,6,34,40,[[438,1,1,34,35],[442,2,2,35,37],[444,1,1,37,38],[462,1,1,38,39],[466,1,1,39,40]]],[18,9,8,40,48,[[499,1,1,40,41],[519,2,2,41,43],[520,3,2,43,45],[521,1,1,45,46],[551,1,1,46,47],[565,1,1,47,48]]],[19,2,2,48,50,[[632,1,1,48,49],[649,1,1,49,50]]],[20,3,3,50,53,[[660,1,1,50,51],[665,2,2,51,53]]],[22,1,1,53,54,[[741,1,1,53,54]]],[23,2,2,54,56,[[758,1,1,54,55],[773,1,1,55,56]]],[25,2,2,56,58,[[819,1,1,56,57],[834,1,1,57,58]]],[26,1,1,58,59,[[850,1,1,58,59]]],[32,1,1,59,60,[[896,1,1,59,60]]]],[85,316,680,772,1435,1574,1654,2449,4315,5078,6547,6640,6667,7105,7138,7148,7220,7334,7723,7738,7935,8105,8280,8443,8521,8547,8573,8695,8792,9906,10937,11720,11723,12404,12916,13028,13029,13080,13493,13589,14205,14564,14566,14568,14571,14594,15049,15322,16537,17042,17348,17445,17446,18883,19301,19662,20880,21291,21747,22629]]],["ye",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17722]]]]},{"k":"H4101","v":[["*",[12,10,[[14,3,3,0,3,[[406,1,1,0,1],[409,2,2,1,3]]],[26,9,7,3,10,[[851,6,5,3,8],[853,3,2,8,10]]]],[12132,12191,12196,21773,21780,21786,21787,21803,21840,21872]]],["+",[6,5,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,5,4,1,5,[[851,5,4,1,5]]]],[12191,21773,21786,21787,21803]]],["How",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21840]]],["What",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21872]]],["how",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21840]]],["what",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21780]]],["why",[2,2,[[14,2,2,0,2,[[406,1,1,0,1],[409,1,1,1,2]]]],[12132,12196]]]]},{"k":"H4102","v":[["*",[9,9,[[0,2,2,0,2,[[18,1,1,0,1],[42,1,1,1,2]]],[1,1,1,2,3,[[61,1,1,2,3]]],[6,2,2,3,5,[[213,1,1,3,4],[229,1,1,4,5]]],[9,1,1,5,6,[[281,1,1,5,6]]],[18,1,1,6,7,[[596,1,1,6,7]]],[22,1,1,7,8,[[707,1,1,7,8]]],[34,1,1,8,9,[[904,1,1,8,9]]]],[473,1300,1855,6594,7032,8417,15958,18202,22751]]],["delayed",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15958]]],["lingered",[2,2,[[0,2,2,0,2,[[18,1,1,0,1],[42,1,1,1,2]]]],[473,1300]]],["tarried",[2,2,[[6,2,2,0,2,[[213,1,1,0,1],[229,1,1,1,2]]]],[6594,7032]]],["tarry",[3,3,[[1,1,1,0,1,[[61,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[1855,8417,22751]]],["yourselves",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18202]]]]},{"k":"H4103","v":[["*",[12,12,[[4,2,2,0,2,[[159,1,1,0,1],[180,1,1,1,2]]],[8,3,3,2,5,[[240,2,2,2,4],[249,1,1,4,5]]],[13,1,1,5,6,[[381,1,1,5,6]]],[19,1,1,6,7,[[642,1,1,6,7]]],[22,1,1,7,8,[[700,1,1,7,8]]],[25,2,2,8,10,[[808,1,1,8,9],[823,1,1,9,10]]],[29,1,1,10,11,[[881,1,1,10,11]]],[37,1,1,11,12,[[924,1,1,11,12]]]],[5134,5631,7328,7330,7528,11495,16823,18057,20584,20981,22404,23081]]],["destruction",[3,3,[[4,1,1,0,1,[[159,1,1,0,1]]],[8,2,2,1,3,[[240,2,2,1,3]]]],[5134,7328,7330]]],["discomfiture",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7528]]],["trouble",[3,3,[[19,1,1,0,1,[[642,1,1,0,1]]],[22,1,1,1,2,[[700,1,1,1,2]]],[25,1,1,2,3,[[808,1,1,2,3]]]],[16823,18057,20584]]],["tumult",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23081]]],["tumults",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22404]]],["vexation",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5631]]],["vexations",[1,1,[[13,1,1,0,1,[[381,1,1,0,1]]]],[11495]]],["vexed",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[20981]]]]},{"k":"H4104","v":[["Mehuman",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12712]]]]},{"k":"H4105","v":[["*",[3,3,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[15,1,1,2,3,[[418,1,1,2,3]]]],[1079,10302,12411]]],["Mehetabeel",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12411]]],["Mehetabel",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1079,10302]]]]},{"k":"H4106","v":[["*",[4,4,[[14,1,1,0,1,[[409,1,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]],[19,1,1,2,3,[[649,1,1,2,3]]],[22,1,1,3,4,[[694,1,1,3,4]]]],[12179,14598,17044,17974]]],["diligent",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17044]]],["hasting",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17974]]],["ready",[2,2,[[14,1,1,0,1,[[409,1,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]]],[12179,14598]]]]},{"k":"H4107","v":[["mixed",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17676]]]]},{"k":"H4108","v":[["walk",[1,1,[[37,1,1,0,1,[[913,1,1,0,1]]]],[22919]]]]},{"k":"H4109","v":[["*",[4,4,[[15,1,1,0,1,[[414,1,1,0,1]]],[25,1,1,1,2,[[843,1,1,1,2]]],[31,2,2,2,4,[[891,2,2,2,4]]]],[12313,21556,22561,22562]]],["journey",[3,3,[[15,1,1,0,1,[[414,1,1,0,1]]],[31,2,2,1,3,[[891,2,2,1,3]]]],[12313,22561,22562]]],["walk",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21556]]]]},{"k":"H4110","v":[["praise",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17190]]]]},{"k":"H4111","v":[["Mahalaleel",[7,7,[[0,5,5,0,5,[[4,5,5,0,5]]],[12,1,1,5,6,[[338,1,1,5,6]]],[15,1,1,6,7,[[423,1,1,6,7]]]],[117,118,120,121,122,10254,12592]]]]},{"k":"H4112","v":[["*",[2,2,[[19,2,2,0,2,[[645,1,1,0,1],[646,1,1,1,2]]]],[16907,16954]]],["stripes",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16954]]],["strokes",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16907]]]]},{"k":"H4113","v":[["pits",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16273]]]]},{"k":"H4114","v":[["*",[6,6,[[4,1,1,0,1,[[181,1,1,0,1]]],[22,2,2,1,3,[[679,1,1,1,2],[691,1,1,2,3]]],[23,2,2,3,5,[[793,1,1,3,4],[794,1,1,4,5]]],[29,1,1,5,6,[[882,1,1,5,6]]]],[5702,17661,17925,20145,20206,22421]]],["+",[3,3,[[22,1,1,0,1,[[691,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]],[29,1,1,2,3,[[882,1,1,2,3]]]],[17925,20206,22421]]],["overthrow",[2,2,[[4,1,1,0,1,[[181,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]]],[5702,20145]]],["overthrown",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17661]]]]},{"k":"H4115","v":[["*",[4,4,[[13,1,1,0,1,[[382,1,1,0,1]]],[23,3,3,1,4,[[764,2,2,1,3],[773,1,1,3,4]]]],[11519,19424,19425,19661]]],["prison",[2,2,[[13,1,1,0,1,[[382,1,1,0,1]]],[23,1,1,1,2,[[773,1,1,1,2]]]],[11519,19661]]],["stocks",[2,2,[[23,2,2,0,2,[[764,2,2,0,2]]]],[19424,19425]]]]},{"k":"H4116","v":[["*",[68,64,[[0,13,12,0,12,[[17,3,2,0,2],[18,1,1,2,3],[23,3,3,3,6],[26,1,1,6,7],[40,1,1,7,8],[42,1,1,8,9],[43,1,1,9,10],[44,2,2,10,12]]],[1,4,4,12,16,[[51,1,1,12,13],[59,1,1,13,14],[61,1,1,14,15],[83,1,1,15,16]]],[5,3,3,16,19,[[190,1,1,16,17],[194,2,2,17,19]]],[6,2,2,19,21,[[219,1,1,19,20],[223,1,1,20,21]]],[8,10,10,21,31,[[239,1,1,21,22],[244,1,1,22,23],[252,1,1,23,24],[258,1,1,24,25],[260,4,4,25,29],[263,2,2,29,31]]],[9,3,2,31,33,[[281,2,1,31,32],[285,1,1,32,33]]],[10,3,3,33,36,[[310,2,2,33,35],[312,1,1,35,36]]],[11,1,1,36,37,[[321,1,1,36,37]]],[12,1,1,37,38,[[349,1,1,37,38]]],[13,3,2,38,40,[[384,1,1,38,39],[390,2,1,39,40]]],[16,2,2,40,42,[[430,1,1,40,41],[431,1,1,41,42]]],[17,1,1,42,43,[[440,1,1,42,43]]],[18,6,6,43,49,[[493,1,1,43,44],[546,1,1,44,45],[556,1,1,45,46],[579,1,1,46,47],[583,1,1,47,48],[620,1,1,48,49]]],[19,3,3,49,52,[[628,1,1,49,50],[633,1,1,50,51],[634,1,1,51,52]]],[20,1,1,52,53,[[663,1,1,52,53]]],[22,7,6,53,59,[[683,1,1,53,54],[710,2,1,54,55],[713,1,1,55,56],[727,1,1,56,57],[729,1,1,57,58],[737,1,1,58,59]]],[23,2,2,59,61,[[753,1,1,59,60],[792,1,1,60,61]]],[33,1,1,61,62,[[901,1,1,61,62]]],[34,1,1,62,63,[[903,1,1,62,63]]],[38,1,1,63,64,[[927,1,1,63,64]]]],[430,431,479,609,611,637,747,1227,1320,1335,1367,1371,1572,1793,1849,2504,5920,6016,6021,6802,6894,7311,7403,7666,7837,7879,7884,7895,7903,7962,7966,8403,8527,9441,9449,9489,9769,10728,11550,11682,12784,12803,12964,14096,14952,15193,15523,15664,16300,16416,16558,16598,17399,17758,18263,18324,18653,18687,18807,19193,20096,22704,22737,23125]]],["Haste",[3,3,[[0,2,2,0,2,[[18,1,1,0,1],[44,1,1,1,2]]],[8,1,1,2,3,[[258,1,1,2,3]]]],[479,1367,7837]]],["Hasten",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9489]]],["fearful",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18324]]],["haste",[17,17,[[0,3,3,0,3,[[23,1,1,0,1],[42,1,1,1,2],[44,1,1,2,3]]],[1,3,3,3,6,[[59,1,1,3,4],[61,1,1,4,5],[83,1,1,5,6]]],[6,2,2,6,8,[[219,1,1,6,7],[223,1,1,7,8]]],[8,2,2,8,10,[[244,1,1,8,9],[260,1,1,9,10]]],[16,2,2,10,12,[[430,1,1,10,11],[431,1,1,11,12]]],[19,1,1,12,13,[[628,1,1,12,13]]],[22,2,2,13,15,[[727,1,1,13,14],[737,1,1,14,15]]],[23,1,1,15,16,[[753,1,1,15,16]]],[33,1,1,16,17,[[901,1,1,16,17]]]],[637,1320,1371,1793,1849,2504,6802,6894,7403,7879,12784,12803,16416,18653,18807,19193,22704]]],["hasted",[14,14,[[0,3,3,0,3,[[17,1,1,0,1],[23,2,2,1,3]]],[5,3,3,3,6,[[190,1,1,3,4],[194,2,2,4,6]]],[8,5,5,6,11,[[252,1,1,6,7],[260,3,3,7,10],[263,1,1,10,11]]],[9,1,1,11,12,[[285,1,1,11,12]]],[10,1,1,12,13,[[310,1,1,12,13]]],[11,1,1,13,14,[[321,1,1,13,14]]]],[431,609,611,5920,6016,6021,7666,7884,7895,7903,7966,8527,9449,9769]]],["hasten",[2,2,[[13,1,1,0,1,[[390,1,1,0,1]]],[18,1,1,1,2,[[493,1,1,1,2]]]],[11682,14096]]],["hastened",[2,2,[[0,1,1,0,1,[[17,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]]],[430,11682]]],["hasteneth",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18687]]],["hasteth",[2,2,[[19,1,1,0,1,[[634,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[16598,20096]]],["hastily",[2,2,[[8,1,1,0,1,[[239,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]]],[7311,9441]]],["hasty",[2,2,[[20,1,1,0,1,[[663,1,1,0,1]]],[34,1,1,1,2,[[903,1,1,1,2]]]],[17399,22737]]],["headlong",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12964]]],["quickly",[3,3,[[0,2,2,0,2,[[17,1,1,0,1],[26,1,1,1,2]]],[13,1,1,2,3,[[384,1,1,2,3]]]],[430,747,11550]]],["rash",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18263]]],["ready",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18263]]],["shortly",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1227]]],["soon",[2,2,[[1,1,1,0,1,[[51,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]]],[1572,15664]]],["speed",[2,2,[[9,1,1,0,1,[[281,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]]],[8403,17758]]],["speedily",[5,5,[[0,1,1,0,1,[[43,1,1,0,1]]],[18,4,4,1,5,[[546,1,1,1,2],[556,1,1,2,3],[579,1,1,3,4],[620,1,1,4,5]]]],[1335,14952,15193,15523,16300]]],["straightway",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7962]]],["suddenly",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8403]]],["swift",[3,3,[[12,1,1,0,1,[[349,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]],[38,1,1,2,3,[[927,1,1,2,3]]]],[10728,16558,23125]]]]},{"k":"H4117","v":[["+",[2,1,[[1,2,1,0,1,[[71,2,1,0,1]]]],[2129]]]]},{"k":"H4118","v":[["*",[14,13,[[1,1,1,0,1,[[81,1,1,0,1]]],[4,8,7,1,8,[[156,1,1,1,2],[159,2,2,2,4],[161,4,3,4,7],[180,1,1,7,8]]],[5,1,1,8,9,[[188,1,1,8,9]]],[6,2,2,9,11,[[212,2,2,9,11]]],[19,1,1,11,12,[[652,1,1,11,12]]],[35,1,1,12,13,[[906,1,1,12,13]]]],[2446,5030,5115,5133,5160,5169,5173,5631,5874,6562,6568,17121,22801]]],["hasteth",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22801]]],["hastily",[2,2,[[6,1,1,0,1,[[212,1,1,0,1]]],[19,1,1,1,2,[[652,1,1,1,2]]]],[6568,17121]]],["once",[1,1,[[4,1,1,0,1,[[159,1,1,0,1]]]],[5133]]],["quickly",[8,7,[[1,1,1,0,1,[[81,1,1,0,1]]],[4,5,4,1,5,[[161,4,3,1,4],[180,1,1,4,5]]],[5,1,1,5,6,[[188,1,1,5,6]]],[6,1,1,6,7,[[212,1,1,6,7]]]],[2446,5160,5169,5173,5631,5874,6562]]],["soon",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5030]]],["suddenly",[1,1,[[4,1,1,0,1,[[159,1,1,0,1]]]],[5115]]]]},{"k":"H4119","v":[["dowry",[3,3,[[0,1,1,0,1,[[33,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[8,1,1,2,3,[[253,1,1,2,3]]]],[992,2130,7701]]]]},{"k":"H4120","v":[["*",[20,20,[[3,1,1,0,1,[[132,1,1,0,1]]],[4,1,1,1,2,[[163,1,1,1,2]]],[5,3,3,2,5,[[194,1,1,2,3],[196,1,1,3,4],[209,1,1,4,5]]],[6,1,1,5,6,[[219,1,1,5,6]]],[8,1,1,6,7,[[255,1,1,6,7]]],[9,3,3,7,10,[[283,3,3,7,10]]],[11,1,1,10,11,[[313,1,1,10,11]]],[18,3,3,11,14,[[508,1,1,11,12],[514,1,1,12,13],[624,1,1,13,14]]],[20,2,2,14,16,[[662,1,1,14,15],[666,1,1,15,16]]],[22,2,2,16,18,[[683,1,1,16,17],[736,1,1,17,18]]],[23,1,1,18,19,[[771,1,1,18,19]]],[28,1,1,19,20,[[878,1,1,19,20]]]],[4240,5225,6021,6070,6476,6808,7768,8465,8467,8470,9544,14333,14452,16366,17393,17469,17765,18794,19612,22347]]],["+",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8470]]],["haste",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7768]]],["hastily",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6808]]],["quickly",[9,9,[[3,1,1,0,1,[[132,1,1,0,1]]],[4,1,1,1,2,[[163,1,1,1,2]]],[5,3,3,2,5,[[194,1,1,2,3],[196,1,1,3,4],[209,1,1,4,5]]],[9,2,2,5,7,[[283,2,2,5,7]]],[11,1,1,7,8,[[313,1,1,7,8]]],[20,1,1,8,9,[[662,1,1,8,9]]]],[4240,5225,6021,6070,6476,8465,8467,9544,17393]]],["shortly",[1,1,[[23,1,1,0,1,[[771,1,1,0,1]]]],[19612]]],["soon",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14452]]],["speed",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17765]]],["speedily",[4,4,[[18,1,1,0,1,[[508,1,1,0,1]]],[20,1,1,1,2,[[666,1,1,1,2]]],[22,1,1,2,3,[[736,1,1,2,3]]],[28,1,1,3,4,[[878,1,1,3,4]]]],[14333,17469,18794,22347]]],["swiftly",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16366]]]]},{"k":"H4121","v":[["Maharai",[3,3,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,2,2,1,3,[[348,1,1,1,2],[364,1,1,2,3]]]],[8681,10703,11122]]]]},{"k":"H4122","v":[["Mahershalalhashbaz",[2,2,[[22,2,2,0,2,[[686,2,2,0,2]]]],[17808,17810]]]]},{"k":"H4123","v":[["deceits",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18227]]]]},{"k":"H4124","v":[["*",[181,158,[[0,3,2,0,2,[[18,2,1,0,1],[35,1,1,1,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[3,33,30,3,33,[[137,8,7,3,10],[138,11,9,10,19],[139,3,3,19,22],[140,1,1,22,23],[141,1,1,23,24],[142,2,2,24,26],[147,1,1,26,27],[149,4,4,27,31],[151,1,1,31,32],[152,1,1,32,33]]],[4,10,10,33,43,[[153,1,1,33,34],[154,3,3,34,37],[181,1,1,37,38],[184,1,1,38,39],[186,4,4,39,43]]],[5,2,2,43,45,[[199,1,1,43,44],[210,1,1,44,45]]],[6,16,12,45,57,[[213,8,7,45,52],[220,1,1,52,53],[221,7,4,53,57]]],[7,7,6,57,63,[[232,5,4,57,61],[233,1,1,61,62],[235,1,1,62,63]]],[8,5,4,63,67,[[247,1,1,63,64],[249,1,1,64,65],[257,3,2,65,67]]],[9,4,3,67,70,[[274,3,2,67,69],[289,1,1,69,70]]],[10,2,2,70,72,[[301,2,2,70,72]]],[11,17,15,72,87,[[313,1,1,72,73],[315,13,11,73,84],[325,1,1,84,85],[335,1,1,85,86],[336,1,1,86,87]]],[12,7,6,87,93,[[338,1,1,87,88],[341,1,1,88,89],[345,1,1,89,90],[348,1,1,90,91],[355,3,2,91,93]]],[13,4,4,93,97,[[386,4,4,93,97]]],[18,3,3,97,100,[[537,1,1,97,98],[560,1,1,98,99],[585,1,1,99,100]]],[22,19,16,100,116,[[689,1,1,100,101],[693,8,6,101,107],[694,9,8,107,115],[703,1,1,115,116]]],[23,38,33,116,149,[[753,1,1,116,117],[769,1,1,117,118],[771,1,1,118,119],[784,1,1,119,120],[792,34,29,120,149]]],[25,3,3,149,152,[[826,3,3,149,152]]],[26,1,1,152,153,[[860,1,1,152,153]]],[29,3,2,153,155,[[880,3,2,153,155]]],[32,1,1,155,156,[[898,1,1,155,156]]],[35,2,2,156,158,[[907,2,2,156,158]]]],[494,1075,1935,4351,4353,4355,4360,4366,4368,4369,4376,4378,4379,4382,4383,4385,4389,4396,4411,4422,4423,4433,4463,4472,4492,4552,4676,4804,4808,4809,4810,4846,4892,4897,4946,4947,4956,5680,5807,5840,5844,5845,5847,6186,6485,6580,6582,6583,6585,6596,6597,6598,6817,6844,6846,6847,6854,7128,7129,7133,7149,7155,7193,7469,7555,7790,7791,8211,8221,8673,9115,9141,9534,9580,9581,9583,9586,9589,9594,9597,9598,9599,9600,9602,9891,10178,10204,10298,10407,10583,10695,10892,10901,11588,11597,11609,11610,14815,15247,15751,17898,17961,17962,17964,17965,17968,17969,17971,17973,17975,17976,17980,17981,17982,17983,18128,19201,19555,19599,19952,20081,20082,20084,20089,20091,20093,20095,20096,20098,20100,20104,20105,20106,20108,20109,20111,20113,20115,20116,20118,20119,20120,20121,20122,20123,20124,20125,20126,20127,21091,21092,21094,22077,22380,22381,22653,22813,22814]]],["+",[2,2,[[9,1,1,0,1,[[274,1,1,0,1]]],[12,1,1,1,2,[[355,1,1,1,2]]]],[8221,10901]]],["Moab",[164,147,[[0,2,2,0,2,[[18,1,1,0,1],[35,1,1,1,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[3,32,30,3,33,[[137,8,7,3,10],[138,10,9,10,19],[139,3,3,19,22],[140,1,1,22,23],[141,1,1,23,24],[142,2,2,24,26],[147,1,1,26,27],[149,4,4,27,31],[151,1,1,31,32],[152,1,1,32,33]]],[4,9,9,33,42,[[153,1,1,33,34],[154,2,2,34,36],[181,1,1,36,37],[184,1,1,37,38],[186,4,4,38,42]]],[5,2,2,42,44,[[199,1,1,42,43],[210,1,1,43,44]]],[6,15,12,44,56,[[213,7,7,44,51],[220,1,1,51,52],[221,7,4,52,56]]],[7,7,6,56,62,[[232,5,4,56,60],[233,1,1,60,61],[235,1,1,61,62]]],[8,5,4,62,66,[[247,1,1,62,63],[249,1,1,63,64],[257,3,2,64,66]]],[9,2,2,66,68,[[274,1,1,66,67],[289,1,1,67,68]]],[10,1,1,68,69,[[301,1,1,68,69]]],[11,9,8,69,77,[[313,1,1,69,70],[315,8,7,70,77]]],[12,5,5,77,82,[[338,1,1,77,78],[341,1,1,78,79],[345,1,1,79,80],[348,1,1,80,81],[355,1,1,81,82]]],[13,4,4,82,86,[[386,4,4,82,86]]],[18,3,3,86,89,[[537,1,1,86,87],[560,1,1,87,88],[585,1,1,88,89]]],[22,19,16,89,105,[[689,1,1,89,90],[693,8,6,90,96],[694,9,8,96,104],[703,1,1,104,105]]],[23,38,33,105,138,[[753,1,1,105,106],[769,1,1,106,107],[771,1,1,107,108],[784,1,1,108,109],[792,34,29,109,138]]],[25,3,3,138,141,[[826,3,3,138,141]]],[26,1,1,141,142,[[860,1,1,141,142]]],[29,3,2,142,144,[[880,3,2,142,144]]],[32,1,1,144,145,[[898,1,1,144,145]]],[35,2,2,145,147,[[907,2,2,145,147]]]],[494,1075,1935,4351,4353,4355,4360,4366,4368,4369,4376,4378,4379,4382,4383,4385,4389,4396,4411,4422,4423,4433,4463,4472,4492,4552,4676,4804,4808,4809,4810,4846,4892,4897,4946,4956,5680,5807,5840,5844,5845,5847,6186,6485,6580,6582,6583,6585,6596,6597,6598,6817,6844,6846,6847,6854,7128,7129,7133,7149,7155,7193,7469,7555,7790,7791,8211,8673,9115,9534,9580,9581,9583,9586,9589,9599,9602,10298,10407,10583,10695,10892,11588,11597,11609,11610,14815,15247,15751,17898,17961,17962,17964,17965,17968,17969,17971,17973,17975,17976,17980,17981,17982,17983,18128,19201,19555,19599,19952,20081,20082,20084,20089,20091,20093,20095,20096,20098,20100,20104,20105,20106,20108,20109,20111,20113,20115,20116,20118,20119,20120,20121,20122,20123,20124,20125,20126,20127,21091,21092,21094,22077,22380,22381,22653,22813,22814]]],["Moabites",[15,14,[[0,1,1,0,1,[[18,1,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]],[4,1,1,2,3,[[154,1,1,2,3]]],[6,1,1,3,4,[[213,1,1,3,4]]],[9,1,1,4,5,[[274,1,1,4,5]]],[10,1,1,5,6,[[301,1,1,5,6]]],[11,8,7,6,13,[[315,5,4,6,10],[325,1,1,10,11],[335,1,1,11,12],[336,1,1,12,13]]],[12,1,1,13,14,[[355,1,1,13,14]]]],[494,4379,4947,6596,8211,9141,9594,9597,9598,9600,9891,10178,10204,10892]]]]},{"k":"H4125","v":[["*",[16,16,[[4,3,3,0,3,[[154,2,2,0,2],[175,1,1,2,3]]],[7,7,7,3,10,[[232,2,2,3,5],[233,3,3,5,8],[235,2,2,8,10]]],[10,1,1,10,11,[[301,1,1,10,11]]],[12,1,1,11,12,[[348,1,1,11,12]]],[13,1,1,12,13,[[390,1,1,12,13]]],[14,1,1,13,14,[[411,1,1,13,14]]],[15,2,2,14,16,[[425,2,2,14,16]]]],[4949,4967,5503,7131,7149,7151,7155,7170,7195,7200,9109,10719,11703,12238,12672,12694]]],["Moab",[2,2,[[7,1,1,0,1,[[232,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]]],[7131,12694]]],["Moabite",[3,3,[[4,1,1,0,1,[[175,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]],[15,1,1,2,3,[[425,1,1,2,3]]]],[5503,10719,12672]]],["Moabites",[4,4,[[4,2,2,0,2,[[154,2,2,0,2]]],[10,1,1,2,3,[[301,1,1,2,3]]],[14,1,1,3,4,[[411,1,1,3,4]]]],[4949,4967,9109,12238]]],["Moabitess",[6,6,[[7,5,5,0,5,[[232,1,1,0,1],[233,2,2,1,3],[235,2,2,3,5]]],[13,1,1,5,6,[[390,1,1,5,6]]]],[7149,7151,7170,7195,7200,11703]]],["Moabitish",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7155]]]]},{"k":"H4126","v":[["in",[2,2,[[9,1,1,0,1,[[269,1,1,0,1]]],[25,1,1,1,2,[[844,1,1,1,2]]]],[8106,21583]]]]},{"k":"H4127","v":[["*",[17,17,[[1,1,1,0,1,[[64,1,1,0,1]]],[5,2,2,1,3,[[188,2,2,1,3]]],[8,1,1,3,4,[[249,1,1,3,4]]],[17,1,1,4,5,[[465,1,1,4,5]]],[18,4,4,5,9,[[523,1,1,5,6],[542,1,1,6,7],[552,1,1,7,8],[584,1,1,8,9]]],[22,2,2,9,11,[[692,1,1,9,10],[742,1,1,10,11]]],[23,1,1,11,12,[[793,1,1,11,12]]],[25,1,1,12,13,[[822,1,1,12,13]]],[29,2,2,13,15,[[887,2,2,13,15]]],[33,2,2,15,17,[[900,1,1,15,16],[901,1,1,16,17]]]],[1935,5878,5893,7524,13579,14620,14870,15074,15725,17959,18892,20150,20959,22500,22508,22689,22705]]],["away",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]]],[1935,7524]]],["consumed",[1,1,[[22,1,1,0,1,[[742,1,1,0,1]]]],[18892]]],["dissolved",[3,3,[[18,1,1,0,1,[[552,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]],[33,1,1,2,3,[[901,1,1,2,3]]]],[15074,17959,22705]]],["dissolvest",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13579]]],["faint",[3,3,[[5,2,2,0,2,[[188,2,2,0,2]]],[25,1,1,2,3,[[822,1,1,2,3]]]],[5878,5893,20959]]],["fainthearted",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20150]]],["melt",[3,3,[[29,2,2,0,2,[[887,2,2,0,2]]],[33,1,1,2,3,[[900,1,1,2,3]]]],[22500,22508,22689]]],["melted",[2,2,[[18,2,2,0,2,[[523,1,1,0,1],[584,1,1,1,2]]]],[14620,15725]]],["soft",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14870]]]]},{"k":"H4128","v":[["measured",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22774]]]]},{"k":"H4129","v":[["*",[2,2,[[7,1,1,0,1,[[233,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]]],[7150,16579]]],["kinsman",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7150]]],["kinswoman",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16579]]]]},{"k":"H4130","v":[["kindred",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7174]]]]},{"k":"H4131","v":[["*",[38,36,[[2,1,1,0,1,[[114,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[17,1,1,3,4,[[476,1,1,3,4]]],[18,24,24,4,28,[[487,1,1,4,5],[490,1,1,5,6],[492,1,1,6,7],[493,1,1,7,8],[494,1,1,8,9],[498,1,1,9,10],[507,1,1,10,11],[515,1,1,11,12],[523,3,3,12,15],[532,2,2,15,17],[537,1,1,17,18],[539,2,2,18,20],[559,1,1,20,21],[570,1,1,21,22],[571,1,1,22,23],[573,1,1,23,24],[581,1,1,24,25],[589,1,1,25,26],[602,1,1,26,27],[617,1,1,27,28]]],[19,4,4,28,32,[[637,1,1,28,29],[639,1,1,29,30],[651,1,1,30,31],[652,1,1,31,32]]],[22,6,4,32,36,[[702,2,1,32,33],[718,1,1,33,34],[719,1,1,34,35],[732,2,1,35,36]]]],[3504,5793,10850,13911,14047,14078,14092,14100,14108,14198,14325,14506,14616,14619,14620,14735,14754,14809,14829,14833,15238,15427,15449,15475,15576,15809,16111,16273,16686,16722,17090,17139,18114,18440,18458,18733]]],["+",[3,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[22,2,1,1,2,[[702,2,1,1,2]]]],[3504,18114]]],["carried",[1,1,[[18,1,1,0,1,[[523,1,1,0,1]]]],[14616]]],["cast",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14735]]],["course",[1,1,[[18,1,1,0,1,[[559,1,1,0,1]]]],[15238]]],["down",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17139]]],["fall",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16273]]],["moved",[19,19,[[12,1,1,0,1,[[353,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[18,14,14,2,16,[[487,1,1,2,3],[490,1,1,3,4],[492,1,1,4,5],[493,1,1,5,6],[498,1,1,6,7],[507,1,1,7,8],[523,2,2,8,10],[532,1,1,10,11],[539,2,2,11,13],[570,1,1,13,14],[573,1,1,14,15],[589,1,1,15,16]]],[19,1,1,16,17,[[639,1,1,16,17]]],[22,2,2,17,19,[[718,1,1,17,18],[719,1,1,18,19]]]],[10850,13911,14047,14078,14092,14100,14198,14325,14619,14620,14754,14829,14833,15427,15475,15809,16722,18440,18458]]],["ready",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17090]]],["removed",[5,4,[[18,2,2,0,2,[[581,1,1,0,1],[602,1,1,1,2]]],[19,1,1,2,3,[[637,1,1,2,3]]],[22,2,1,3,4,[[732,2,1,3,4]]]],[15576,16111,16686,18733]]],["shaketh",[1,1,[[18,1,1,0,1,[[537,1,1,0,1]]]],[14809]]],["slide",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5793]]],["slip",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14108]]],["slippeth",[2,2,[[18,2,2,0,2,[[515,1,1,0,1],[571,1,1,1,2]]]],[14506,15449]]]]},{"k":"H4132","v":[["*",[6,6,[[3,3,3,0,3,[[120,2,2,0,2],[129,1,1,2,3]]],[18,2,2,3,5,[[543,1,1,3,4],[598,1,1,4,5]]],[33,1,1,5,6,[[900,1,1,5,6]]]],[3753,3755,4098,14882,16084,22697]]],["bar",[2,2,[[3,2,2,0,2,[[120,2,2,0,2]]]],[3753,3755]]],["moved",[2,2,[[18,2,2,0,2,[[543,1,1,0,1],[598,1,1,1,2]]]],[14882,16084]]],["staff",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4098]]],["yoke",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22697]]]]},{"k":"H4133","v":[["*",[12,10,[[2,1,1,0,1,[[115,1,1,0,1]]],[12,1,1,1,2,[[352,1,1,1,2]]],[22,3,2,2,4,[[736,3,2,2,4]]],[23,5,4,4,8,[[771,1,1,4,5],[772,4,3,5,8]]],[25,2,2,8,10,[[831,1,1,8,9],[835,1,1,9,10]]]],[3537,10806,18792,18795,19598,19628,19630,19631,21222,21340]]],["bands",[2,2,[[2,1,1,0,1,[[115,1,1,0,1]]],[25,1,1,1,2,[[835,1,1,1,2]]]],[3537,21340]]],["heavy",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18792]]],["staves",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10806]]],["yoke",[4,4,[[22,2,2,0,2,[[736,2,2,0,2]]],[23,2,2,2,4,[[772,2,2,2,4]]]],[18792,18795,19628,19630]]],["yokes",[4,3,[[23,3,2,0,2,[[771,1,1,0,1],[772,2,1,1,2]]],[25,1,1,2,3,[[831,1,1,2,3]]]],[19598,19631,21222]]]]},{"k":"H4134","v":[["*",[5,5,[[2,5,5,0,5,[[114,4,4,0,4],[116,1,1,4,5]]]],[3494,3504,3508,3516,3578]]],["poor",[4,4,[[2,4,4,0,4,[[114,4,4,0,4]]]],[3494,3504,3508,3516]]],["poorer",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3578]]]]},{"k":"H4135","v":[["*",[37,33,[[0,17,15,0,15,[[16,11,10,0,10],[20,1,1,10,11],[33,5,4,11,15]]],[1,2,2,15,17,[[61,2,2,15,17]]],[2,1,1,17,18,[[101,1,1,17,18]]],[4,2,2,18,20,[[162,1,1,18,19],[182,1,1,19,20]]],[5,8,6,20,26,[[191,8,6,20,26]]],[18,5,5,26,31,[[535,1,1,26,27],[567,1,1,27,28],[595,3,3,28,31]]],[23,2,2,31,33,[[748,1,1,31,32],[753,1,1,32,33]]]],[407,408,409,410,411,420,421,422,423,424,517,995,997,1002,1004,1860,1864,3047,5202,5714,5936,5937,5938,5939,5941,5942,14786,15384,15879,15880,15881,19031,19200]]],["+",[7,6,[[0,5,4,0,4,[[16,5,4,0,4]]],[4,1,1,4,5,[[182,1,1,4,5]]],[5,1,1,5,6,[[191,1,1,5,6]]]],[408,410,420,422,5714,5937]]],["Circumcise",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5202]]],["circumcise",[2,2,[[5,2,2,0,2,[[191,2,2,0,2]]]],[5936,5938]]],["circumcised",[20,17,[[0,12,11,0,11,[[16,6,6,0,6],[20,1,1,6,7],[33,5,4,7,11]]],[1,2,2,11,13,[[61,2,2,11,13]]],[2,1,1,13,14,[[101,1,1,13,14]]],[5,4,2,14,16,[[191,4,2,14,16]]],[23,1,1,16,17,[[753,1,1,16,17]]]],[407,409,411,421,423,424,517,995,997,1002,1004,1860,1864,3047,5939,5941,19200]]],["circumcising",[1,1,[[5,1,1,0,1,[[191,1,1,0,1]]]],[5942]]],["destroy",[3,3,[[18,3,3,0,3,[[595,3,3,0,3]]]],[15879,15880,15881]]],["down",[1,1,[[18,1,1,0,1,[[567,1,1,0,1]]]],[15384]]],["pieces",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14786]]],["yourselves",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19031]]]]},{"k":"H4136","v":[["*",[35,33,[[1,8,8,0,8,[[67,1,1,0,1],[75,1,1,1,2],[77,3,3,2,5],[83,1,1,5,6],[88,2,2,6,8]]],[2,2,2,8,10,[[94,1,1,8,9],[97,1,1,9,10]]],[3,3,3,10,13,[[124,2,2,10,12],[138,1,1,12,13]]],[4,6,6,13,19,[[153,1,1,13,14],[154,1,1,14,15],[155,1,1,15,16],[156,1,1,16,17],[163,1,1,17,18],[186,1,1,18,19]]],[5,6,5,19,24,[[194,2,1,19,20],[195,1,1,20,21],[204,1,1,21,22],[205,1,1,22,23],[208,1,1,23,24]]],[8,3,2,24,26,[[249,2,1,24,25],[252,1,1,25,26]]],[9,2,2,26,28,[[271,1,1,26,27],[277,1,1,27,28]]],[10,1,1,28,29,[[297,1,1,28,29]]],[12,1,1,29,30,[[351,1,1,29,30]]],[13,1,1,30,31,[[370,1,1,30,31]]],[15,1,1,31,32,[[424,1,1,31,32]]],[32,1,1,32,33,[[894,1,1,32,33]]]],[2018,2244,2318,2320,2330,2499,2682,2684,2838,2926,3941,3942,4380,4893,4957,5004,5050,5238,5845,6035,6038,6311,6367,6437,7513,7648,8155,8274,8973,10788,11256,12662,22603]]],["+",[21,21,[[1,8,8,0,8,[[67,1,1,0,1],[75,1,1,1,2],[77,3,3,2,5],[83,1,1,5,6],[88,2,2,6,8]]],[2,2,2,8,10,[[94,1,1,8,9],[97,1,1,9,10]]],[3,3,3,10,13,[[124,2,2,10,12],[138,1,1,12,13]]],[5,1,1,13,14,[[208,1,1,13,14]]],[8,1,1,14,15,[[252,1,1,14,15]]],[9,2,2,15,17,[[271,1,1,15,16],[277,1,1,16,17]]],[10,1,1,17,18,[[297,1,1,17,18]]],[12,1,1,18,19,[[351,1,1,18,19]]],[13,1,1,19,20,[[370,1,1,19,20]]],[32,1,1,20,21,[[894,1,1,20,21]]]],[2018,2244,2318,2320,2330,2499,2682,2684,2838,2926,3941,3942,4380,6437,7648,8155,8274,8973,10788,11256,22603]]],["against",[13,11,[[4,6,6,0,6,[[153,1,1,0,1],[154,1,1,1,2],[155,1,1,2,3],[156,1,1,3,4],[163,1,1,4,5],[186,1,1,5,6]]],[5,4,3,6,9,[[194,2,1,6,7],[195,1,1,7,8],[204,1,1,8,9]]],[8,2,1,9,10,[[249,2,1,9,10]]],[15,1,1,10,11,[[424,1,1,10,11]]]],[4893,4957,5004,5050,5238,5845,6035,6038,6311,7513,12662]]],["before",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6367]]]]},{"k":"H4137","v":[["Moladah",[4,4,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]],[12,1,1,2,3,[[341,1,1,2,3]]],[15,1,1,3,4,[[423,1,1,3,4]]]],[6228,6323,10413,12614]]]]},{"k":"H4138","v":[["*",[22,21,[[0,9,9,0,9,[[10,1,1,0,1],[11,1,1,1,2],[23,2,2,2,4],[30,2,2,4,6],[31,1,1,6,7],[42,1,1,7,8],[47,1,1,8,9]]],[2,3,2,9,11,[[107,3,2,9,11]]],[3,1,1,11,12,[[126,1,1,11,12]]],[7,1,1,12,13,[[233,1,1,12,13]]],[16,3,3,13,16,[[427,2,2,13,15],[433,1,1,15,16]]],[23,2,2,16,18,[[766,1,1,16,17],[790,1,1,17,18]]],[25,3,3,18,21,[[817,2,2,18,20],[824,1,1,20,21]]]],[294,299,595,598,876,886,937,1297,1457,3260,3262,4018,7160,12734,12744,12823,19464,20061,20765,20766,21022]]],["+",[1,1,[[0,1,1,0,1,[[11,1,1,0,1]]]],[299]]],["begotten",[1,1,[[2,1,1,0,1,[[107,1,1,0,1]]]],[3262]]],["born",[2,1,[[2,2,1,0,1,[[107,2,1,0,1]]]],[3260]]],["issue",[1,1,[[0,1,1,0,1,[[47,1,1,0,1]]]],[1457]]],["kindred",[10,10,[[0,6,6,0,6,[[23,2,2,0,2],[30,2,2,2,4],[31,1,1,4,5],[42,1,1,5,6]]],[3,1,1,6,7,[[126,1,1,6,7]]],[16,3,3,7,10,[[427,2,2,7,9],[433,1,1,9,10]]]],[595,598,876,886,937,1297,4018,12734,12744,12823]]],["native",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19464]]],["nativity",[6,6,[[0,1,1,0,1,[[10,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[23,1,1,2,3,[[790,1,1,2,3]]],[25,3,3,3,6,[[817,2,2,3,5],[824,1,1,5,6]]]],[294,7160,20061,20765,20766,21022]]]]},{"k":"H4139","v":[["circumcision",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1627]]]]},{"k":"H4140","v":[["Molid",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10335]]]]},{"k":"H4141","v":[["about",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21533]]]]},{"k":"H4142","v":[["*",[4,4,[[1,3,3,0,3,[[77,1,1,0,1],[88,2,2,1,3]]],[25,1,1,3,4,[[842,1,1,3,4]]]],[2304,2670,2677,21550]]],["in",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2670]]],["inclosed",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2677]]],["set",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2304]]],["turning",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21550]]]]},{"k":"H4143","v":[["foundation",[2,2,[[13,1,1,0,1,[[374,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]]],[11362,18180]]]]},{"k":"H4144","v":[]},{"k":"H4145","v":[["grounded",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18249]]]]},{"k":"H4146","v":[["*",[13,13,[[4,1,1,0,1,[[184,1,1,0,1]]],[9,2,2,1,3,[[288,2,2,1,3]]],[18,3,3,3,6,[[495,2,2,3,5],[559,1,1,5,6]]],[19,1,1,6,7,[[635,1,1,6,7]]],[22,3,3,7,10,[[702,1,1,7,8],[718,1,1,8,9],[736,1,1,9,10]]],[23,2,2,10,12,[[775,1,1,10,11],[795,1,1,11,12]]],[32,1,1,12,13,[[898,1,1,12,13]]]],[5780,8610,8618,14125,14133,15238,16631,18113,18441,18798,19728,20238,22650]]],["+",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18441]]],["foundations",[12,12,[[4,1,1,0,1,[[184,1,1,0,1]]],[9,2,2,1,3,[[288,2,2,1,3]]],[18,3,3,3,6,[[495,2,2,3,5],[559,1,1,5,6]]],[19,1,1,6,7,[[635,1,1,6,7]]],[22,2,2,7,9,[[702,1,1,7,8],[736,1,1,8,9]]],[23,2,2,9,11,[[775,1,1,9,10],[795,1,1,10,11]]],[32,1,1,11,12,[[898,1,1,11,12]]]],[5780,8610,8618,14125,14133,15238,16631,18113,18798,19728,20238,22650]]]]},{"k":"H4147","v":[["*",[11,11,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,3,3,1,4,[[479,1,1,1,2],[584,1,1,2,3],[593,1,1,3,4]]],[22,2,2,4,6,[[706,1,1,4,5],[730,1,1,5,6]]],[23,4,4,6,10,[[746,1,1,6,7],[749,1,1,7,8],[771,1,1,8,9],[774,1,1,9,10]]],[33,1,1,10,11,[[900,1,1,10,11]]]],[13839,13948,15713,15864,18186,18698,18985,19063,19598,19675,22697]]],["+",[2,2,[[18,1,1,0,1,[[479,1,1,0,1]]],[33,1,1,1,2,[[900,1,1,1,2]]]],[13948,22697]]],["bands",[5,5,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]],[22,2,2,2,4,[[706,1,1,2,3],[730,1,1,3,4]]],[23,1,1,4,5,[[746,1,1,4,5]]]],[13839,15713,18186,18698,18985]]],["bonds",[4,4,[[18,1,1,0,1,[[593,1,1,0,1]]],[23,3,3,1,4,[[749,1,1,1,2],[771,1,1,2,3],[774,1,1,3,4]]]],[15864,19063,19598,19675]]]]},{"k":"H4148","v":[["*",[50,50,[[4,1,1,0,1,[[163,1,1,0,1]]],[17,4,4,1,5,[[440,1,1,1,2],[447,1,1,2,3],[455,1,1,3,4],[471,1,1,4,5]]],[18,1,1,5,6,[[527,1,1,5,6]]],[19,30,30,6,36,[[628,4,4,6,10],[630,1,1,10,11],[631,2,2,11,13],[632,2,2,13,15],[633,1,1,15,16],[634,1,1,16,17],[635,2,2,17,19],[637,1,1,19,20],[639,1,1,20,21],[640,3,3,21,24],[642,4,4,24,28],[643,1,1,28,29],[646,2,2,29,31],[649,1,1,31,32],[650,3,3,32,35],[651,1,1,35,36]]],[22,2,2,36,38,[[704,1,1,36,37],[731,1,1,37,38]]],[23,8,8,38,46,[[746,1,1,38,39],[749,1,1,39,40],[751,1,1,40,41],[754,1,1,41,42],[761,1,1,42,43],[774,1,1,43,44],[776,1,1,44,45],[779,1,1,45,46]]],[25,1,1,46,47,[[806,1,1,46,47]]],[27,1,1,47,48,[[866,1,1,47,48]]],[35,2,2,48,50,[[908,2,2,48,50]]]],[5210,12968,13146,13329,13746,14685,16402,16403,16407,16408,16466,16491,16503,16529,16540,16563,16597,16612,16635,16673,16720,16748,16765,16771,16812,16817,16839,16840,16862,16945,16952,17030,17056,17057,17067,17111,18146,18716,18995,19061,19147,19209,19380,19681,19764,19836,20561,22154,22822,22827]]],["Correction",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16817]]],["bond",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13146]]],["chasteneth",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16771]]],["chastening",[3,3,[[17,1,1,0,1,[[440,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]],[22,1,1,2,3,[[704,1,1,2,3]]]],[12968,16466,18146]]],["chastisement",[3,3,[[4,1,1,0,1,[[163,1,1,0,1]]],[22,1,1,1,2,[[731,1,1,1,2]]],[23,1,1,2,3,[[774,1,1,2,3]]]],[5210,18716,19681]]],["check",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13329]]],["correction",[7,7,[[19,3,3,0,3,[[634,1,1,0,1],[649,1,1,1,2],[650,1,1,2,3]]],[23,3,3,3,6,[[746,1,1,3,4],[749,1,1,4,5],[751,1,1,5,6]]],[35,1,1,6,7,[[908,1,1,6,7]]]],[16597,17030,17057,18995,19061,19147,22822]]],["discipline",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13746]]],["doctrine",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19209]]],["instruction",[30,30,[[18,1,1,0,1,[[527,1,1,0,1]]],[19,24,24,1,25,[[628,4,4,1,5],[631,2,2,5,7],[632,2,2,7,9],[633,1,1,9,10],[635,2,2,10,12],[637,1,1,12,13],[639,1,1,13,14],[640,2,2,14,16],[642,3,3,16,19],[643,1,1,19,20],[646,2,2,20,22],[650,2,2,22,24],[651,1,1,24,25]]],[23,3,3,25,28,[[761,1,1,25,26],[776,1,1,26,27],[779,1,1,27,28]]],[25,1,1,28,29,[[806,1,1,28,29]]],[35,1,1,29,30,[[908,1,1,29,30]]]],[14685,16402,16403,16407,16408,16491,16503,16529,16540,16563,16612,16635,16673,16720,16748,16765,16812,16839,16840,16862,16945,16952,17056,17067,17111,19380,19764,19836,20561,22827]]],["rebuker",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22154]]]]},{"k":"H4149","v":[["*",[3,3,[[3,2,2,0,2,[[149,2,2,0,2]]],[4,1,1,2,3,[[162,1,1,2,3]]]],[4790,4791,5192]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4791]]],["Mosera",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5192]]],["Moseroth",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4790]]]]},{"k":"H4150","v":[["*",[223,213,[[0,4,4,0,4,[[0,1,1,0,1],[16,1,1,1,2],[17,1,1,2,3],[20,1,1,3,4]]],[1,38,37,4,41,[[58,1,1,4,5],[62,1,1,5,6],[72,1,1,6,7],[76,1,1,7,8],[77,1,1,8,9],[78,7,7,9,16],[79,5,5,16,21],[80,1,1,21,22],[82,2,1,22,23],[83,1,1,23,24],[84,1,1,24,25],[87,2,2,25,27],[88,2,2,27,29],[89,12,12,29,41]]],[2,49,45,41,86,[[90,3,3,41,44],[92,3,3,44,47],[93,8,6,47,53],[95,3,3,53,56],[97,5,5,56,61],[98,2,2,61,63],[99,2,2,63,65],[101,1,1,65,66],[103,2,2,66,68],[104,2,2,68,70],[105,6,6,70,76],[106,4,4,76,80],[108,1,1,80,81],[112,6,4,81,85],[113,1,1,85,86]]],[3,65,63,86,149,[[117,1,1,86,87],[118,2,2,87,89],[119,5,4,89,93],[120,16,15,93,108],[122,3,3,108,111],[123,2,2,111,113],[124,6,6,113,119],[125,4,4,119,123],[126,2,2,123,125],[127,1,1,125,126],[128,1,1,126,127],[130,1,1,127,128],[131,1,1,128,129],[132,6,6,129,135],[133,1,1,135,136],[134,6,6,136,142],[135,1,1,142,143],[136,1,1,143,144],[141,1,1,144,145],[143,1,1,145,146],[144,1,1,146,147],[145,1,1,147,148],[147,1,1,148,149]]],[4,4,3,149,152,[[168,1,1,149,150],[183,3,2,150,152]]],[5,3,3,152,155,[[194,1,1,152,153],[204,1,1,153,154],[205,1,1,154,155]]],[6,1,1,155,156,[[230,1,1,155,156]]],[8,5,5,156,161,[[237,1,1,156,157],[244,1,1,157,158],[248,2,2,158,160],[255,1,1,160,161]]],[9,2,2,161,163,[[286,1,1,161,162],[290,1,1,162,163]]],[10,1,1,163,164,[[298,1,1,163,164]]],[11,2,2,164,166,[[316,2,2,164,166]]],[12,4,4,166,170,[[343,1,1,166,167],[346,1,1,167,168],[360,2,2,168,170]]],[13,8,8,170,178,[[367,3,3,170,173],[368,1,1,173,174],[371,1,1,174,175],[374,1,1,175,176],[396,1,1,176,177],[397,1,1,177,178]]],[14,1,1,178,179,[[405,1,1,178,179]]],[15,1,1,179,180,[[422,1,1,179,180]]],[17,1,1,180,181,[[465,1,1,180,181]]],[18,5,5,181,186,[[551,2,2,181,183],[552,1,1,183,184],[579,1,1,184,185],[581,1,1,185,186]]],[22,3,3,186,189,[[679,1,1,186,187],[692,1,1,187,188],[711,1,1,188,189]]],[23,2,2,189,191,[[752,1,1,189,190],[790,1,1,190,191]]],[24,6,5,191,196,[[797,2,2,191,193],[798,4,3,193,196]]],[25,5,5,196,201,[[837,1,1,196,197],[845,1,1,197,198],[846,1,1,198,199],[847,2,2,199,201]]],[26,6,5,201,206,[[857,1,1,201,202],[860,3,3,202,205],[861,2,1,205,206]]],[27,4,4,206,210,[[863,2,2,206,208],[870,1,1,208,209],[873,1,1,209,210]]],[34,1,1,210,211,[[904,1,1,210,211]]],[35,1,1,211,212,[[908,1,1,211,212]]],[37,1,1,212,213,[[918,1,1,212,213]]]],[13,418,438,515,1747,1877,2159,2293,2336,2340,2346,2347,2366,2368,2378,2380,2398,2400,2402,2408,2418,2427,2480,2514,2552,2641,2663,2696,2704,2709,2713,2714,2719,2729,2731,2733,2736,2737,2739,2741,2742,2746,2748,2750,2780,2786,2791,2799,2800,2802,2809,2811,2813,2865,2875,2879,2920,2921,2948,2950,2952,2958,2976,2984,2986,3050,3122,3134,3182,3197,3208,3217,3218,3221,3224,3234,3239,3240,3241,3244,3302,3404,3406,3439,3446,3449,3605,3660,3675,3699,3700,3717,3730,3746,3747,3758,3766,3768,3771,3773,3774,3776,3778,3780,3782,3784,3786,3790,3833,3836,3841,3855,3939,3948,3954,3958,3961,3963,3965,3967,3968,3972,3978,3991,3998,4040,4063,4118,4156,4196,4212,4213,4236,4237,4244,4248,4261,4263,4278,4279,4280,4288,4293,4317,4477,4556,4579,4647,4718,5348,5738,5742,6016,6294,6372,7092,7262,7415,7493,7496,7765,8559,8707,8989,9619,9620,10486,10636,11014,11015,11197,11200,11207,11215,11273,11359,11849,11857,12102,12582,13580,15052,15056,15073,15534,15590,17668,17941,18299,19160,20062,20314,20325,20338,20339,20354,21397,21623,21647,21664,21666,21980,22063,22065,22071,22088,22114,22116,22213,22261,22751,22838,22995]]],["+",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22838]]],["appointed",[12,12,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[72,1,1,1,2]]],[5,1,1,2,3,[[194,1,1,2,3]]],[8,2,2,3,5,[[248,1,1,3,4],[255,1,1,4,5]]],[9,1,1,5,6,[[290,1,1,5,6]]],[17,1,1,6,7,[[465,1,1,6,7]]],[23,1,1,7,8,[[790,1,1,7,8]]],[26,4,4,8,12,[[857,1,1,8,9],[860,3,3,9,12]]]],[438,2159,6016,7496,7765,8707,13580,20062,21980,22063,22065,22071]]],["assemblies",[1,1,[[25,1,1,0,1,[[845,1,1,0,1]]]],[21623]]],["assembly",[2,2,[[24,2,2,0,2,[[797,1,1,0,1],[798,1,1,1,2]]]],[20325,20338]]],["congregation",[149,143,[[1,34,33,0,33,[[76,1,1,0,1],[77,1,1,1,2],[78,7,7,2,9],[79,5,5,9,14],[80,1,1,14,15],[82,2,1,15,16],[84,1,1,16,17],[87,2,2,17,19],[88,2,2,19,21],[89,12,12,21,33]]],[2,43,41,33,74,[[90,3,3,33,36],[92,3,3,36,39],[93,8,6,39,45],[95,3,3,45,48],[97,5,5,48,53],[98,2,2,53,55],[99,2,2,55,57],[101,1,1,57,58],[103,2,2,58,60],[104,2,2,60,62],[105,6,6,62,68],[106,4,4,68,72],[108,1,1,72,73],[113,1,1,73,74]]],[3,57,55,74,129,[[117,1,1,74,75],[118,2,2,75,77],[119,5,4,77,81],[120,16,15,81,96],[122,3,3,96,99],[123,2,2,99,101],[124,6,6,101,107],[126,1,1,107,108],[127,1,1,108,109],[128,1,1,109,110],[130,1,1,110,111],[132,6,6,111,117],[133,1,1,117,118],[134,6,6,118,124],[135,1,1,124,125],[136,1,1,125,126],[141,1,1,126,127],[143,1,1,127,128],[147,1,1,128,129]]],[4,2,1,129,130,[[183,2,1,129,130]]],[5,2,2,130,132,[[204,1,1,130,131],[205,1,1,131,132]]],[8,1,1,132,133,[[237,1,1,132,133]]],[10,1,1,133,134,[[298,1,1,133,134]]],[12,3,3,134,137,[[343,1,1,134,135],[346,1,1,135,136],[360,1,1,136,137]]],[13,4,4,137,141,[[367,3,3,137,140],[371,1,1,140,141]]],[18,1,1,141,142,[[552,1,1,141,142]]],[22,1,1,142,143,[[692,1,1,142,143]]]],[2293,2336,2340,2346,2347,2366,2368,2378,2380,2398,2400,2402,2408,2418,2427,2480,2552,2641,2663,2696,2704,2709,2713,2714,2719,2729,2731,2733,2736,2737,2739,2741,2742,2746,2748,2750,2780,2786,2791,2799,2800,2802,2809,2811,2813,2865,2875,2879,2920,2921,2948,2950,2952,2958,2976,2984,2986,3050,3122,3134,3182,3197,3208,3217,3218,3221,3224,3234,3239,3240,3241,3244,3302,3449,3605,3660,3675,3699,3700,3717,3730,3746,3747,3758,3766,3768,3771,3773,3774,3776,3778,3780,3782,3784,3786,3790,3833,3836,3841,3855,3939,3948,3954,3958,3961,3963,3965,3991,4040,4063,4118,4196,4212,4213,4236,4237,4244,4248,4261,4263,4278,4279,4280,4288,4293,4317,4477,4556,4718,5742,6294,6372,7262,8989,10486,10636,11015,11197,11200,11207,11273,15073,17941]]],["congregations",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15052]]],["days",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[3998]]],["feast",[3,3,[[13,1,1,0,1,[[396,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]],[27,1,1,2,3,[[873,1,1,2,3]]]],[11849,20339,22261]]],["feasts",[20,19,[[2,5,4,0,4,[[112,5,4,0,4]]],[3,2,2,4,6,[[131,1,1,4,5],[145,1,1,5,6]]],[12,1,1,6,7,[[360,1,1,6,7]]],[13,3,3,7,10,[[368,1,1,7,8],[374,1,1,8,9],[397,1,1,9,10]]],[14,1,1,10,11,[[405,1,1,10,11]]],[15,1,1,11,12,[[422,1,1,11,12]]],[22,1,1,12,13,[[679,1,1,12,13]]],[24,2,2,13,15,[[797,1,1,13,14],[798,1,1,14,15]]],[25,2,2,15,17,[[837,1,1,15,16],[847,1,1,16,17]]],[27,1,1,17,18,[[863,1,1,17,18]]],[37,1,1,18,19,[[918,1,1,18,19]]]],[3404,3406,3439,3446,4156,4647,11014,11215,11359,11857,12102,12582,17668,20314,20338,21397,21664,22116,22995]]],["season",[10,10,[[1,1,1,0,1,[[62,1,1,0,1]]],[3,5,5,1,6,[[125,4,4,1,5],[144,1,1,5,6]]],[4,1,1,6,7,[[168,1,1,6,7]]],[11,2,2,7,9,[[316,2,2,7,9]]],[27,1,1,9,10,[[863,1,1,9,10]]]],[1877,3967,3968,3972,3978,4579,5348,9619,9620,22114]]],["seasons",[3,3,[[0,1,1,0,1,[[0,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]]],[13,3406,15590]]],["sign",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7092]]],["solemn",[2,2,[[24,1,1,0,1,[[798,1,1,0,1]]],[27,1,1,1,2,[[870,1,1,1,2]]]],[20354,22213]]],["solemnities",[3,3,[[22,1,1,0,1,[[711,1,1,0,1]]],[25,2,2,1,3,[[846,1,1,1,2],[847,1,1,2,3]]]],[18299,21647,21666]]],["solemnity",[1,1,[[4,1,1,0,1,[[183,1,1,0,1]]]],[5738]]],["synagogues",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15056]]],["time",[10,10,[[0,2,2,0,2,[[16,1,1,0,1],[20,1,1,1,2]]],[1,2,2,2,4,[[58,1,1,2,3],[83,1,1,3,4]]],[8,2,2,4,6,[[244,1,1,4,5],[248,1,1,5,6]]],[9,1,1,6,7,[[286,1,1,6,7]]],[18,1,1,7,8,[[579,1,1,7,8]]],[26,1,1,8,9,[[861,1,1,8,9]]],[34,1,1,9,10,[[904,1,1,9,10]]]],[418,515,1747,2514,7415,7493,8559,15534,22088,22751]]],["times",[2,2,[[23,1,1,0,1,[[752,1,1,0,1]]],[26,1,1,1,2,[[861,1,1,1,2]]]],[19160,22088]]]]},{"k":"H4151","v":[["times",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17959]]]]},{"k":"H4152","v":[["appointed",[1,1,[[5,1,1,0,1,[[206,1,1,0,1]]]],[6381]]]]},{"k":"H4153","v":[["Moadiah",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12641]]]]},{"k":"H4154","v":[["joint",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17132]]]]},{"k":"H4155","v":[["dimness",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17830]]]]},{"k":"H4156","v":[["*",[7,7,[[18,2,2,0,2,[[482,1,1,0,1],[558,1,1,1,2]]],[19,2,2,2,4,[[628,1,1,2,3],[649,1,1,3,4]]],[23,1,1,4,5,[[751,1,1,4,5]]],[27,1,1,5,6,[[872,1,1,5,6]]],[32,1,1,6,7,[[898,1,1,6,7]]]],[13983,15229,16431,17035,19143,22246,22664]]],["+",[3,3,[[18,1,1,0,1,[[482,1,1,0,1]]],[19,1,1,1,2,[[628,1,1,1,2]]],[27,1,1,2,3,[[872,1,1,2,3]]]],[13983,16431,22246]]],["counsels",[4,4,[[18,1,1,0,1,[[558,1,1,0,1]]],[19,1,1,1,2,[[649,1,1,1,2]]],[23,1,1,2,3,[[751,1,1,2,3]]],[32,1,1,3,4,[[898,1,1,3,4]]]],[15229,17035,19143,22664]]]]},{"k":"H4157","v":[["affliction",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14884]]]]},{"k":"H4158","v":[["Mephaath",[4,4,[[5,2,2,0,2,[[199,1,1,0,1],[207,1,1,1,2]]],[12,1,1,2,3,[[343,1,1,2,3]]],[23,1,1,3,4,[[792,1,1,3,4]]]],[6172,6418,10533,20101]]]]},{"k":"H4159","v":[["*",[36,35,[[1,5,5,0,5,[[53,1,1,0,1],[56,2,2,1,3],[60,2,2,3,5]]],[4,9,9,5,14,[[156,1,1,5,6],[158,1,1,6,7],[159,1,1,7,8],[165,2,2,8,10],[178,1,1,10,11],[180,1,1,11,12],[181,1,1,12,13],[186,1,1,13,14]]],[10,3,2,14,16,[[303,3,2,14,16]]],[12,1,1,16,17,[[353,1,1,16,17]]],[13,2,2,17,19,[[398,2,2,17,19]]],[15,1,1,19,20,[[421,1,1,19,20]]],[18,5,5,20,25,[[548,1,1,20,21],[555,1,1,21,22],[582,2,2,22,24],[612,1,1,24,25]]],[22,2,2,25,27,[[686,1,1,25,26],[698,1,1,26,27]]],[23,2,2,27,29,[[776,2,2,27,29]]],[25,4,4,29,33,[[813,2,2,29,31],[825,2,2,31,33]]],[28,1,1,33,34,[[877,1,1,33,34]]],[37,1,1,34,35,[[913,1,1,34,35]]]],[1622,1688,1694,1815,1816,5038,5108,5130,5273,5274,5574,5657,5682,5850,9187,9189,10832,11899,11906,12521,14983,15156,15611,15633,16184,17825,18032,19751,19752,20686,20691,21080,21083,22341,22920]]],["miracle",[1,1,[[1,1,1,0,1,[[56,1,1,0,1]]]],[1694]]],["miracles",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5682]]],["sign",[8,7,[[10,3,2,0,2,[[303,3,2,0,2]]],[13,1,1,2,3,[[398,1,1,2,3]]],[25,4,4,3,7,[[813,2,2,3,5],[825,2,2,5,7]]]],[9187,9189,11899,20686,20691,21080,21083]]],["wonder",[6,6,[[4,3,3,0,3,[[165,2,2,0,2],[180,1,1,2,3]]],[13,1,1,3,4,[[398,1,1,3,4]]],[18,1,1,4,5,[[548,1,1,4,5]]],[22,1,1,5,6,[[698,1,1,5,6]]]],[5273,5274,5657,11906,14983,18032]]],["wondered",[1,1,[[37,1,1,0,1,[[913,1,1,0,1]]]],[22920]]],["wonders",[19,19,[[1,4,4,0,4,[[53,1,1,0,1],[56,1,1,1,2],[60,2,2,2,4]]],[4,5,5,4,9,[[156,1,1,4,5],[158,1,1,5,6],[159,1,1,6,7],[178,1,1,7,8],[186,1,1,8,9]]],[12,1,1,9,10,[[353,1,1,9,10]]],[15,1,1,10,11,[[421,1,1,10,11]]],[18,4,4,11,15,[[555,1,1,11,12],[582,2,2,12,14],[612,1,1,14,15]]],[22,1,1,15,16,[[686,1,1,15,16]]],[23,2,2,16,18,[[776,2,2,16,18]]],[28,1,1,18,19,[[877,1,1,18,19]]]],[1622,1688,1815,1816,5038,5108,5130,5574,5850,10832,12521,15156,15611,15633,16184,17825,19751,19752,22341]]]]},{"k":"H4160","v":[["extortioner",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17973]]]]},{"k":"H4161","v":[["*",[27,26,[[3,3,2,0,2,[[146,1,1,0,1],[149,2,1,1,2]]],[4,2,2,2,4,[[160,1,1,2,3],[175,1,1,3,4]]],[9,1,1,4,5,[[269,1,1,4,5]]],[10,1,1,5,6,[[300,1,1,5,6]]],[11,1,1,6,7,[[314,1,1,6,7]]],[13,2,2,7,9,[[367,1,1,7,8],[398,1,1,8,9]]],[17,2,2,9,11,[[463,1,1,9,10],[473,1,1,10,11]]],[18,6,6,11,17,[[496,1,1,11,12],[542,1,1,12,13],[552,1,1,13,14],[566,1,1,14,15],[584,2,2,15,17]]],[22,2,2,17,19,[[719,1,1,17,18],[736,1,1,18,19]]],[23,1,1,19,20,[[761,1,1,19,20]]],[25,4,4,20,24,[[813,1,1,20,21],[843,1,1,21,22],[844,1,1,22,23],[845,1,1,23,24]]],[26,1,1,24,25,[[858,1,1,24,25]]],[27,1,1,25,26,[[867,1,1,25,26]]]],[4660,4762,5140,5523,8106,9107,9572,11210,11905,13505,13820,14174,14868,15077,15360,15732,15734,18469,18797,19373,20684,21563,21583,21604,22013,22170]]],["+",[4,4,[[13,1,1,0,1,[[398,1,1,0,1]]],[18,3,3,1,4,[[552,1,1,1,2],[584,2,2,2,4]]]],[11905,15077,15732,15734]]],["brought",[1,1,[[10,1,1,0,1,[[300,1,1,0,1]]]],[9107]]],["bud",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13820]]],["came",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19373]]],["forth",[5,5,[[18,1,1,0,1,[[496,1,1,0,1]]],[25,2,2,1,3,[[813,1,1,1,2],[845,1,1,2,3]]],[26,1,1,3,4,[[858,1,1,3,4]]],[27,1,1,4,5,[[867,1,1,4,5]]]],[14174,20684,21604,22013,22170]]],["out",[10,9,[[3,3,2,0,2,[[146,1,1,0,1],[149,2,1,1,2]]],[4,2,2,2,4,[[160,1,1,2,3],[175,1,1,3,4]]],[9,1,1,4,5,[[269,1,1,4,5]]],[13,1,1,5,6,[[367,1,1,5,6]]],[18,1,1,6,7,[[566,1,1,6,7]]],[25,2,2,7,9,[[843,1,1,7,8],[844,1,1,8,9]]]],[4660,4762,5140,5523,8106,11210,15360,21563,21583]]],["outgoings",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14868]]],["spring",[2,2,[[11,1,1,0,1,[[314,1,1,0,1]]],[22,1,1,1,2,[[736,1,1,1,2]]]],[9572,18797]]],["springs",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18469]]],["vein",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13505]]]]},{"k":"H4162","v":[["Moza",[5,5,[[12,5,5,0,5,[[339,1,1,0,1],[345,2,2,1,3],[346,2,2,3,5]]]],[10352,10611,10612,10657,10658]]]]},{"k":"H4163","v":[["*",[2,2,[[11,1,1,0,1,[[322,1,1,0,1]]],[32,1,1,1,2,[[897,1,1,1,2]]]],[9820,22635]]],["forth",[1,1,[[32,1,1,0,1,[[897,1,1,0,1]]]],[22635]]],["house",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9820]]]]},{"k":"H4164","v":[["*",[3,3,[[17,2,2,0,2,[[471,1,1,0,1],[472,1,1,1,2]]],[22,1,1,2,3,[[687,1,1,2,3]]]],[13752,13779,17830]]],["straitened",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13779]]],["straitness",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13752]]],["vexation",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17830]]]]},{"k":"H4165","v":[["*",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]]],[8971,13831]]],["casting",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8971]]],["hardness",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13831]]]]},{"k":"H4166","v":[["*",[2,2,[[13,1,1,0,1,[[370,1,1,0,1]]],[37,1,1,1,2,[[914,1,1,1,2]]]],[11249,22924]]],["cast",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11249]]],["pipes",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22924]]]]},{"k":"H4167","v":[["corrupt",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15028]]]]},{"k":"H4168","v":[["*",[2,2,[[18,1,1,0,1,[[579,1,1,0,1]]],[22,1,1,1,2,[[711,1,1,1,2]]]],[15524,18293]]],["burnings",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18293]]],["hearth",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15524]]]]},{"k":"H4169","v":[["burning",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2858]]]]},{"k":"H4170","v":[["*",[27,27,[[1,3,3,0,3,[[59,1,1,0,1],[72,1,1,1,2],[83,1,1,2,3]]],[4,1,1,3,4,[[159,1,1,3,4]]],[5,1,1,4,5,[[209,1,1,4,5]]],[6,2,2,5,7,[[212,1,1,5,6],[218,1,1,6,7]]],[8,1,1,7,8,[[253,1,1,7,8]]],[9,1,1,8,9,[[288,1,1,8,9]]],[17,2,2,9,11,[[469,1,1,9,10],[475,1,1,10,11]]],[18,6,6,11,17,[[495,1,1,11,12],[541,1,1,12,13],[546,1,1,13,14],[583,1,1,14,15],[617,1,1,15,16],[618,1,1,16,17]]],[19,8,8,17,25,[[639,1,1,17,18],[640,1,1,18,19],[641,1,1,19,20],[645,1,1,20,21],[647,1,1,21,22],[649,1,1,22,23],[656,2,2,23,25]]],[22,1,1,25,26,[[686,1,1,25,26]]],[29,1,1,26,27,[[881,1,1,26,27]]]],[1784,2177,2508,5127,6473,6548,6746,7697,8608,13713,13888,14123,14855,14957,15687,16268,16285,16732,16761,16799,16908,16979,17040,17230,17249,17821,22400]]],["+",[4,4,[[17,1,1,0,1,[[469,1,1,0,1]]],[18,1,1,1,2,[[541,1,1,1,2]]],[19,2,2,2,4,[[640,1,1,2,3],[641,1,1,3,4]]]],[13713,14855,16761,16799]]],["gin",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22400]]],["gins",[2,2,[[18,2,2,0,2,[[617,1,1,0,1],[618,1,1,1,2]]]],[16268,16285]]],["snare",[14,14,[[1,3,3,0,3,[[59,1,1,0,1],[72,1,1,1,2],[83,1,1,2,3]]],[4,1,1,3,4,[[159,1,1,3,4]]],[6,2,2,4,6,[[212,1,1,4,5],[218,1,1,5,6]]],[8,1,1,6,7,[[253,1,1,6,7]]],[18,1,1,7,8,[[583,1,1,7,8]]],[19,5,5,8,13,[[645,1,1,8,9],[647,1,1,9,10],[649,1,1,10,11],[656,2,2,11,13]]],[22,1,1,13,14,[[686,1,1,13,14]]]],[1784,2177,2508,5127,6548,6746,7697,15687,16908,16979,17040,17230,17249,17821]]],["snared",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16732]]],["snares",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[475,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]]],[8608,13888,14123]]],["trap",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14957]]],["traps",[1,1,[[5,1,1,0,1,[[209,1,1,0,1]]]],[6473]]]]},{"k":"H4171","v":[["*",[15,10,[[2,6,2,0,2,[[116,6,2,0,2]]],[18,3,3,2,5,[[492,1,1,2,3],[523,1,1,3,4],[583,1,1,4,5]]],[23,3,2,5,7,[[746,2,1,5,6],[792,1,1,6,7]]],[25,1,1,7,8,[[849,1,1,7,8]]],[27,1,1,8,9,[[865,1,1,8,9]]],[32,1,1,9,10,[[894,1,1,9,10]]]],[3580,3603,14091,14616,15671,18976,20091,21716,22140,22599]]],["+",[5,3,[[2,4,2,0,2,[[116,4,2,0,2]]],[18,1,1,2,3,[[583,1,1,2,3]]]],[3580,3603,15671]]],["change",[3,3,[[2,2,2,0,2,[[116,2,2,0,2]]],[27,1,1,2,3,[[865,1,1,2,3]]]],[3580,3603,22140]]],["changed",[4,3,[[23,3,2,0,2,[[746,2,1,0,1],[792,1,1,1,2]]],[32,1,1,2,3,[[894,1,1,2,3]]]],[18976,20091,22599]]],["changeth",[1,1,[[18,1,1,0,1,[[492,1,1,0,1]]]],[14091]]],["exchange",[1,1,[[25,1,1,0,1,[[849,1,1,0,1]]]],[21716]]],["removed",[1,1,[[18,1,1,0,1,[[523,1,1,0,1]]]],[14616]]]]},{"k":"H4172","v":[["*",[12,12,[[0,1,1,0,1,[[8,1,1,0,1]]],[4,4,4,1,5,[[156,1,1,1,2],[163,1,1,2,3],[178,1,1,3,4],[186,1,1,4,5]]],[18,2,2,5,7,[[486,1,1,5,6],[553,1,1,6,7]]],[22,2,2,7,9,[[686,2,2,7,9]]],[23,1,1,9,10,[[776,1,1,9,10]]],[38,2,2,10,12,[[925,1,1,10,11],[926,1,1,11,12]]]],[207,5038,5233,5574,5851,14041,15092,17819,17820,19752,23095,23108]]],["dread",[1,1,[[4,1,1,0,1,[[163,1,1,0,1]]]],[5233]]],["fear",[6,6,[[0,1,1,0,1,[[8,1,1,0,1]]],[18,1,1,1,2,[[486,1,1,1,2]]],[22,2,2,2,4,[[686,2,2,2,4]]],[38,2,2,4,6,[[925,1,1,4,5],[926,1,1,5,6]]]],[207,14041,17819,17820,23095,23108]]],["feared",[1,1,[[18,1,1,0,1,[[553,1,1,0,1]]]],[15092]]],["terribleness",[1,1,[[4,1,1,0,1,[[178,1,1,0,1]]]],[5574]]],["terror",[2,2,[[4,1,1,0,1,[[186,1,1,0,1]]],[23,1,1,1,2,[[776,1,1,1,2]]]],[5851,19752]]],["terrors",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5038]]]]},{"k":"H4173","v":[["*",[3,3,[[9,1,1,0,1,[[290,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]],[22,1,1,2,3,[[719,1,1,2,3]]]],[8714,10957,18466]]],["instrument",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18466]]],["instruments",[2,2,[[9,1,1,0,1,[[290,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]]],[8714,10957]]]]},{"k":"H4174","v":[["*",[5,5,[[5,2,2,0,2,[[193,1,1,0,1],[196,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[23,1,1,3,4,[[792,1,1,3,4]]],[32,1,1,4,5,[[893,1,1,4,5]]]],[5981,6075,8963,20085,22583]]],["down",[3,3,[[5,2,2,0,2,[[193,1,1,0,1],[196,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[5981,6075,20085]]],["place",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22583]]],["thin",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8963]]]]},{"k":"H4175","v":[["rain",[3,2,[[18,1,1,0,1,[[561,1,1,0,1]]],[28,2,1,1,2,[[877,2,1,1,2]]]],[15265,22334]]]]},{"k":"H4176","v":[["Moreh",[3,3,[[0,1,1,0,1,[[11,1,1,0,1]]],[4,1,1,1,2,[[163,1,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]]],[304,5238,6695]]]]},{"k":"H4177","v":[["razor",[3,3,[[6,2,2,0,2,[[223,1,1,0,1],[226,1,1,1,2]]],[8,1,1,2,3,[[236,1,1,2,3]]]],[6889,6966,7223]]]]},{"k":"H4178","v":[["peeled",[2,2,[[22,2,2,0,2,[[696,2,2,0,2]]]],[17999,18004]]]]},{"k":"H4179","v":[["Moriah",[2,2,[[0,1,1,0,1,[[21,1,1,0,1]]],[13,1,1,1,2,[[369,1,1,1,2]]]],[549,11230]]]]},{"k":"H4180","v":[["*",[3,3,[[17,1,1,0,1,[[452,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]],[30,1,1,2,3,[[888,1,1,2,3]]]],[13271,17951,22527]]],["possession",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17951]]],["possessions",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22527]]],["thoughts",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13271]]]]},{"k":"H4181","v":[["*",[9,9,[[1,1,1,0,1,[[55,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[25,7,7,2,9,[[812,1,1,2,3],[826,2,2,3,5],[834,1,1,5,6],[837,3,3,6,9]]]],[1663,5814,20670,21087,21093,21304,21361,21362,21364]]],["heritage",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1663]]],["inheritance",[2,2,[[4,1,1,0,1,[[185,1,1,0,1]]],[25,1,1,1,2,[[834,1,1,1,2]]]],[5814,21304]]],["possession",[6,6,[[25,6,6,0,6,[[812,1,1,0,1],[826,2,2,1,3],[837,3,3,3,6]]]],[20670,21087,21093,21361,21362,21364]]]]},{"k":"H4182","v":[["Moreshethgath",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22593]]]]},{"k":"H4183","v":[["Morasthite",[2,2,[[23,1,1,0,1,[[770,1,1,0,1]]],[32,1,1,1,2,[[893,1,1,1,2]]]],[19590,22580]]]]},{"k":"H4184","v":[["*",[3,3,[[0,1,1,0,1,[[26,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[18,1,1,2,3,[[592,1,1,2,3]]]],[748,6975,15837]]],["+",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6975]]],["feel",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[748]]],["handle",[1,1,[[18,1,1,0,1,[[592,1,1,0,1]]]],[15837]]]]},{"k":"H4185","v":[["*",[20,19,[[1,2,2,0,2,[[62,1,1,0,1],[82,1,1,1,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[5,1,1,3,4,[[187,1,1,3,4]]],[6,1,1,4,5,[[216,1,1,4,5]]],[17,1,1,5,6,[[458,1,1,5,6]]],[18,1,1,6,7,[[532,1,1,6,7]]],[19,1,1,7,8,[[644,1,1,7,8]]],[22,5,4,8,12,[[700,1,1,8,9],[724,1,1,9,10],[732,2,1,10,11],[737,1,1,11,12]]],[23,2,2,12,14,[[761,1,1,12,13],[775,1,1,13,14]]],[32,2,2,14,16,[[894,2,2,14,16]]],[33,1,1,16,17,[[902,1,1,16,17]]],[37,2,2,17,19,[[913,1,1,17,18],[924,1,1,18,19]]]],[1889,2484,4152,5859,6672,13431,14743,16886,18077,18593,18733,18821,19365,19727,22598,22599,22713,22921,23072]]],["+",[2,2,[[1,1,1,0,1,[[62,1,1,0,1]]],[37,1,1,1,2,[[913,1,1,1,2]]]],[1889,22921]]],["Depart",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6672]]],["back",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13431]]],["cease",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19365]]],["depart",[7,6,[[5,1,1,0,1,[[187,1,1,0,1]]],[18,1,1,1,2,[[532,1,1,1,2]]],[19,1,1,2,3,[[644,1,1,2,3]]],[22,3,2,3,5,[[732,2,1,3,4],[737,1,1,4,5]]],[23,1,1,5,6,[[775,1,1,5,6]]]],[5859,14743,16886,18733,18821,19727]]],["departed",[2,2,[[1,1,1,0,1,[[82,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]]],[2484,4152]]],["departeth",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22713]]],["remove",[3,3,[[22,1,1,0,1,[[724,1,1,0,1]]],[32,1,1,1,2,[[894,1,1,1,2]]],[37,1,1,2,3,[[924,1,1,2,3]]]],[18593,22598,23072]]],["removed",[2,2,[[22,1,1,0,1,[[700,1,1,0,1]]],[32,1,1,1,2,[[894,1,1,1,2]]]],[18077,22599]]]]},{"k":"H4186","v":[["*",[44,43,[[0,3,3,0,3,[[9,1,1,0,1],[26,1,1,1,2],[35,1,1,2,3]]],[1,4,4,3,7,[[59,1,1,3,4],[61,2,2,4,6],[84,1,1,6,7]]],[2,9,9,7,16,[[92,1,1,7,8],[96,1,1,8,9],[102,1,1,9,10],[112,5,5,10,15],[114,1,1,15,16]]],[3,4,4,16,20,[[131,1,1,16,17],[140,1,1,17,18],[147,1,1,18,19],[151,1,1,19,20]]],[8,3,2,20,22,[[255,3,2,20,22]]],[9,1,1,22,23,[[275,1,1,22,23]]],[10,1,1,23,24,[[300,1,1,23,24]]],[11,1,1,24,25,[[314,1,1,24,25]]],[12,3,3,25,28,[[341,1,1,25,26],[343,1,1,26,27],[344,1,1,27,28]]],[13,1,1,28,29,[[375,1,1,28,29]]],[17,1,1,29,30,[[464,1,1,29,30]]],[18,6,6,30,36,[[478,1,1,30,31],[584,4,4,31,35],[609,1,1,35,36]]],[25,7,7,36,43,[[807,2,2,36,38],[809,1,1,38,39],[829,1,1,39,40],[835,1,1,40,41],[838,1,1,41,42],[849,1,1,42,43]]]],[264,766,1083,1800,1836,1856,2534,2795,2905,3098,3405,3416,3419,3423,3433,3498,4155,4467,4674,4874,7748,7755,8239,9084,9570,10418,10508,10563,11368,13539,13940,15703,15706,15731,15735,16164,20569,20577,20607,21159,21326,21420,21717]]],["+",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3419]]],["assembly",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15731]]],["dwell",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15703]]],["dwelling",[4,4,[[0,2,2,0,2,[[9,1,1,0,1],[26,1,1,1,2]]],[2,1,1,2,3,[[114,1,1,2,3]]],[25,1,1,3,4,[[849,1,1,3,4]]]],[264,766,3498,21717]]],["dwellingplace",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4467]]],["dwellingplaces",[2,2,[[25,2,2,0,2,[[807,1,1,0,1],[838,1,1,1,2]]]],[20569,21420]]],["dwellings",[8,8,[[1,1,1,0,1,[[59,1,1,0,1]]],[2,6,6,1,7,[[92,1,1,1,2],[96,1,1,2,3],[112,4,4,3,7]]],[3,1,1,7,8,[[151,1,1,7,8]]]],[1800,2795,2905,3405,3416,3423,3433,4874]]],["dwelt",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[9,1,1,1,2,[[275,1,1,1,2]]]],[4674,8239]]],["habitation",[4,4,[[2,1,1,0,1,[[102,1,1,0,1]]],[18,3,3,1,4,[[584,2,2,1,3],[609,1,1,3,4]]]],[3098,15706,15735,16164]]],["habitations",[7,7,[[0,1,1,0,1,[[35,1,1,0,1]]],[1,2,2,1,3,[[61,1,1,1,2],[84,1,1,2,3]]],[3,1,1,3,4,[[131,1,1,3,4]]],[12,2,2,4,6,[[341,1,1,4,5],[344,1,1,5,6]]],[25,1,1,6,7,[[807,1,1,6,7]]]],[1083,1836,2534,4155,10418,10563,20577]]],["places",[2,2,[[12,1,1,0,1,[[343,1,1,0,1]]],[25,1,1,1,2,[[835,1,1,1,2]]]],[10508,21326]]],["seat",[7,6,[[8,3,2,0,2,[[255,3,2,0,2]]],[17,1,1,2,3,[[464,1,1,2,3]]],[18,1,1,3,4,[[478,1,1,3,4]]],[25,2,2,4,6,[[809,1,1,4,5],[829,1,1,5,6]]]],[7748,7755,13539,13940,20607,21159]]],["sitting",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9084,11368]]],["situation",[1,1,[[11,1,1,0,1,[[314,1,1,0,1]]]],[9570]]],["sojourning",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1856]]]]},{"k":"H4187","v":[["Mushi",[8,8,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,1,1,1,2,[[119,1,1,1,2]]],[12,6,6,2,8,[[343,2,2,2,4],[360,2,2,4,6],[361,2,2,6,8]]]],[1674,3712,10473,10501,11004,11006,11041,11045]]]]},{"k":"H4188","v":[["Mushites",[2,2,[[3,2,2,0,2,[[119,1,1,0,1],[142,1,1,1,2]]]],[3725,4547]]]]},{"k":"H4189","v":[["bands",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13824]]]]},{"k":"H4190","v":[["salvation",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14920]]]]},{"k":"H4191","v":[["*",[838,697,[[0,78,72,0,72,[[1,2,1,0,1],[2,3,2,1,3],[4,8,8,3,11],[6,1,1,11,12],[8,1,1,12,13],[10,2,2,13,15],[17,1,1,15,16],[18,1,1,16,17],[19,3,2,17,19],[22,9,8,19,27],[24,3,3,27,30],[25,3,2,30,32],[26,1,1,32,33],[29,1,1,33,34],[32,1,1,34,35],[34,4,4,35,39],[35,7,7,39,46],[36,1,1,46,47],[37,4,4,47,51],[41,4,4,51,55],[42,1,1,55,56],[43,4,4,56,60],[44,1,1,60,61],[45,2,2,61,63],[46,4,3,63,66],[47,2,2,66,68],[49,4,4,68,72]]],[1,59,46,72,118,[[50,2,2,72,74],[51,1,1,74,75],[53,2,2,75,77],[56,2,2,77,79],[57,1,1,79,80],[58,5,4,80,84],[59,1,1,84,85],[60,1,1,85,86],[61,2,2,86,88],[63,3,3,88,91],[65,2,1,91,92],[66,1,1,92,93],[68,2,1,93,94],[69,1,1,94,95],[70,19,12,95,107],[71,5,4,107,111],[77,2,2,111,113],[79,2,2,113,115],[80,4,2,115,117],[84,1,1,117,118]]],[2,41,28,118,146,[[97,1,1,118,119],[99,4,4,119,123],[100,1,1,123,124],[104,1,1,124,125],[105,3,3,125,128],[108,1,1,128,129],[109,20,11,129,140],[110,1,1,140,141],[111,1,1,141,142],[113,6,3,142,145],[116,2,1,145,146]]],[3,81,59,146,205,[[117,1,1,146,147],[119,3,3,147,150],[120,3,3,150,153],[122,4,3,153,156],[128,1,1,156,157],[130,5,4,157,161],[131,3,2,161,163],[132,6,5,163,168],[133,2,2,168,170],[134,4,4,170,174],[135,6,5,174,179],[136,4,4,179,183],[137,2,2,183,185],[139,1,1,185,186],[141,1,1,186,187],[142,6,5,187,192],[143,3,2,192,194],[149,1,1,194,195],[151,25,10,195,205]]],[4,46,39,205,244,[[154,1,1,205,206],[156,1,1,206,207],[157,2,1,207,208],[161,1,1,208,209],[162,1,1,209,210],[165,3,3,210,213],[166,1,1,213,214],[169,6,4,214,218],[170,3,3,218,221],[171,3,3,221,224],[172,3,3,224,227],[173,2,2,227,229],[174,4,4,229,233],[176,5,3,233,236],[177,3,2,236,238],[178,1,1,238,239],[183,1,1,239,240],[184,3,2,240,242],[185,1,1,242,243],[186,1,1,243,244]]],[5,10,9,244,253,[[187,2,2,244,246],[191,1,1,246,247],[196,3,2,247,249],[197,1,1,249,250],[206,1,1,250,251],[210,2,2,251,253]]],[6,40,33,253,286,[[211,1,1,253,254],[212,3,3,254,257],[213,2,2,257,259],[214,3,3,259,262],[215,1,1,262,263],[216,3,3,263,266],[218,2,2,266,268],[219,4,3,268,271],[220,2,2,271,273],[222,4,4,273,277],[223,3,2,277,279],[225,3,2,279,281],[226,5,2,281,283],[230,2,2,283,285],[231,2,1,285,286]]],[7,10,7,286,293,[[232,5,4,286,290],[233,1,1,290,291],[235,4,2,291,293]]],[8,59,52,293,345,[[237,4,4,293,297],[239,5,5,297,302],[240,3,3,302,305],[246,2,2,305,307],[247,1,1,307,308],[249,8,5,308,313],[250,1,1,313,314],[252,4,3,314,317],[254,8,7,317,324],[255,5,5,324,329],[257,4,3,329,332],[259,1,1,332,333],[260,4,4,333,337],[261,1,1,337,338],[263,2,2,338,340],[265,2,2,340,342],[266,4,3,342,345]]],[9,74,62,345,407,[[267,7,6,345,351],[268,4,3,351,354],[269,4,4,354,358],[270,3,3,358,361],[272,1,1,361,362],[274,1,1,362,363],[275,1,1,363,364],[276,2,2,364,366],[277,7,5,366,371],[278,11,6,371,377],[279,6,4,377,381],[280,7,6,381,387],[282,1,1,387,388],[283,1,1,388,389],[284,4,4,389,393],[285,6,6,393,399],[286,3,3,399,402],[287,4,4,402,406],[290,1,1,406,407]]],[10,58,47,407,454,[[291,2,2,407,409],[292,12,10,409,419],[293,11,7,419,426],[301,2,2,426,428],[302,1,1,428,429],[303,3,3,429,432],[304,4,3,432,435],[305,1,1,435,436],[306,5,4,436,440],[307,3,3,440,443],[308,1,1,443,444],[309,3,2,444,446],[311,8,6,446,452],[312,2,2,452,454]]],[11,56,43,454,497,[[313,7,4,454,458],[316,3,3,458,461],[317,1,1,461,462],[319,7,4,462,466],[320,4,3,466,469],[321,1,1,469,470],[323,8,6,470,476],[324,1,1,476,477],[325,3,3,477,480],[326,5,2,480,482],[327,4,4,482,486],[328,1,1,486,487],[329,1,1,487,488],[330,1,1,488,489],[331,1,1,489,490],[332,2,1,490,491],[333,1,1,491,492],[335,3,3,492,495],[337,2,2,495,497]]],[12,25,23,497,520,[[338,8,8,497,505],[339,4,4,505,509],[347,7,5,509,514],[350,1,1,514,515],[356,2,2,515,517],[360,1,1,517,518],[361,1,1,518,519],[366,1,1,519,520]]],[13,27,22,520,542,[[376,1,1,520,521],[379,1,1,521,522],[381,1,1,522,523],[382,1,1,523,524],[384,1,1,524,525],[387,1,1,525,526],[388,4,3,526,529],[389,5,4,529,533],[390,3,3,533,536],[391,5,2,536,538],[398,2,2,538,540],[399,1,1,540,541],[401,1,1,541,542]]],[16,1,1,542,543,[[429,1,1,542,543]]],[17,16,16,543,559,[[436,1,1,543,544],[437,1,1,544,545],[438,1,1,545,546],[439,1,1,546,547],[440,1,1,547,548],[444,1,1,548,549],[447,1,1,549,550],[449,3,3,550,553],[456,2,2,553,555],[468,1,1,555,556],[469,1,1,556,557],[471,1,1,557,558],[477,1,1,558,559]]],[18,15,15,559,574,[[508,1,1,559,560],[511,1,1,560,561],[514,1,1,561,562],[518,1,1,562,563],[525,1,1,563,564],[526,1,1,564,565],[559,1,1,565,566],[565,2,2,566,568],[582,1,1,568,569],[583,1,1,569,570],[586,1,1,570,571],[592,1,1,571,572],[595,1,1,572,573],[620,1,1,573,574]]],[19,8,8,574,582,[[632,1,1,574,575],[637,1,1,575,576],[642,1,1,576,577],[646,2,2,577,579],[648,1,1,579,580],[650,1,1,580,581],[657,1,1,581,582]]],[20,9,7,582,589,[[660,1,1,582,583],[661,1,1,583,584],[662,2,1,584,585],[665,1,1,585,586],[667,4,3,586,589]]],[22,21,20,589,609,[[686,1,1,589,590],[689,1,1,590,591],[692,1,1,591,592],[700,4,4,592,596],[704,2,2,596,598],[715,1,1,598,599],[716,2,1,599,600],[728,1,1,600,601],[729,3,3,601,604],[737,2,2,604,606],[743,2,2,606,608],[744,1,1,608,609]]],[23,47,42,609,651,[[755,3,2,609,611],[760,3,3,611,614],[764,2,2,614,616],[765,2,2,616,618],[766,3,3,618,621],[770,7,5,621,626],[771,1,1,626,627],[772,2,2,627,629],[775,1,1,629,630],[778,2,2,630,632],[781,1,1,632,633],[782,10,9,633,642],[785,4,3,642,645],[786,3,3,645,648],[787,1,1,648,649],[788,1,1,649,650],[796,1,1,650,651]]],[24,1,1,651,652,[[799,1,1,651,652]]],[25,44,34,652,686,[[804,6,3,652,655],[806,1,1,655,656],[807,2,1,656,657],[808,1,1,657,658],[812,1,1,658,659],[813,1,1,659,660],[814,2,1,660,661],[818,1,1,661,662],[819,13,11,662,673],[825,2,2,673,675],[829,2,2,675,677],[834,11,8,677,685],[845,1,1,685,686]]],[27,3,3,686,689,[[863,1,1,686,687],[870,1,1,687,688],[874,1,1,688,689]]],[29,5,5,689,694,[[880,1,1,689,690],[884,1,1,690,691],[885,2,2,691,693],[887,1,1,693,694]]],[31,1,1,694,695,[[892,1,1,694,695]]],[34,1,1,695,696,[[903,1,1,695,696]]],[37,2,1,696,697,[[921,2,1,696,697]]]],[47,58,59,110,113,116,119,122,125,132,136,181,234,294,298,449,476,498,502,573,574,575,577,579,582,584,586,666,675,690,701,703,731,831,973,1019,1029,1030,1040,1073,1074,1075,1076,1077,1078,1079,1101,1126,1129,1130,1131,1254,1272,1289,1290,1298,1333,1344,1346,1355,1386,1398,1416,1435,1439,1449,1458,1472,1511,1521,1530,1532,1538,1548,1577,1620,1625,1703,1706,1723,1746,1748,1749,1761,1805,1811,1846,1849,1900,1901,1919,1950,1986,2038,2070,2089,2091,2092,2093,2094,2095,2097,2105,2106,2111,2112,2113,2115,2123,2127,2132,2328,2336,2402,2403,2434,2435,2533,2952,2979,2983,2984,2986,3036,3199,3202,3203,3214,3301,3320,3322,3327,3328,3329,3330,3331,3333,3334,3338,3345,3356,3378,3462,3463,3467,3599,3655,3696,3702,3730,3758,3762,3763,3829,3830,3832,4071,4110,4123,4143,4145,4188,4189,4207,4223,4235,4242,4243,4254,4257,4260,4264,4279,4289,4300,4302,4303,4305,4307,4312,4315,4337,4339,4345,4346,4426,4480,4499,4500,4508,4550,4554,4557,4562,4798,4857,4861,4862,4863,4864,4865,4866,4868,4875,4876,4954,5026,5078,5185,5192,5277,5281,5282,5291,5369,5370,5371,5376,5395,5400,5404,5411,5417,5418,5432,5433,5434,5468,5469,5491,5492,5494,5495,5528,5532,5541,5552,5553,5580,5742,5797,5808,5816,5844,5853,5869,5938,6075,6090,6124,6381,6505,6509,6516,6553,6564,6566,6579,6593,6600,6620,6621,6641,6677,6684,6685,6751,6752,6803,6808,6809,6813,6816,6876,6879,6881,6884,6906,6907,6942,6947,6965,6979,7059,7067,7107,7130,7132,7135,7144,7169,7195,7200,7246,7265,7273,7274,7308,7314,7315,7316,7317,7329,7330,7331,7457,7458,7479,7521,7547,7551,7552,7553,7563,7653,7668,7669,7707,7708,7711,7712,7717,7721,7723,7732,7738,7744,7762,7763,7803,7804,7805,7853,7862,7898,7899,7900,7915,7945,7951,7980,7993,8014,8015,8016,8026,8027,8031,8032,8037,8038,8056,8072,8080,8108,8111,8114,8118,8121,8127,8130,8164,8211,8235,8241,8258,8274,8276,8280,8283,8285,8299,8300,8304,8305,8307,8309,8345,8349,8350,8356,8358,8361,8362,8363,8370,8388,8435,8472,8481,8493,8498,8511,8517,8521,8532,8533,8534,8548,8557,8564,8573,8581,8584,8589,8597,8707,8768,8769,8771,8778,8794,8795,8796,8800,8804,8807,8812,8816,8835,8836,8837,8838,8839,8842,8843,9129,9148,9169,9208,9210,9215,9229,9230,9235,9277,9287,9293,9301,9305,9329,9335,9337,9350,9391,9404,9461,9464,9465,9466,9467,9475,9515,9517,9537,9539,9549,9550,9604,9623,9635,9654,9710,9711,9724,9727,9732,9737,9742,9783,9830,9831,9837,9844,9845,9849,9871,9885,9891,9895,9902,9915,9935,9939,9950,9955,9972,10009,10056,10096,10099,10142,10194,10195,10199,10243,10247,10296,10297,10298,10299,10300,10301,10302,10303,10309,10325,10336,10338,10664,10665,10666,10672,10673,10770,10908,10925,11005,11017,11192,11413,11473,11503,11522,11576,11643,11653,11654,11655,11663,11670,11671,11677,11692,11699,11702,11708,11731,11886,11899,11932,11990,12773,12888,12900,12915,12951,12953,13074,13130,13189,13191,13195,13378,13380,13672,13703,13750,13939,14343,14409,14482,14547,14648,14658,15240,15313,15318,15635,15679,15771,15847,15886,16296,16540,16677,16817,16941,16943,17009,17057,17258,17349,17361,17383,17446,17478,17479,17480,17826,17888,17958,18054,18065,18066,18070,18144,18149,18388,18391,18664,18679,18685,18687,18805,18810,18912,18917,18946,19247,19248,19340,19342,19343,19428,19439,19446,19449,19464,19466,19480,19580,19587,19591,19593,19596,19609,19634,19635,19721,19805,19806,19894,19897,19899,19904,19905,19910,19911,19919,19920,19921,19959,19961,19965,19991,19992,19997,20000,20022,20303,20360,20520,20521,20522,20558,20575,20592,20668,20693,20727,20841,20853,20862,20866,20867,20869,20870,20873,20875,20877,20880,20881,21073,21074,21165,21167,21288,21289,21291,21293,21294,21295,21298,21307,21624,22108,22224,22267,22381,22459,22475,22481,22505,22576,22743,23037]]],["+",[133,78,[[0,9,5,0,5,[[1,2,1,0,1],[2,2,1,1,2],[19,2,1,2,3],[25,2,1,3,4],[41,1,1,4,5]]],[1,18,10,5,15,[[63,1,1,5,6],[65,1,1,6,7],[68,2,1,7,8],[70,8,4,8,12],[71,2,1,12,13],[80,4,2,13,15]]],[2,24,12,15,27,[[109,18,9,15,24],[113,4,2,24,26],[116,2,1,26,27]]],[3,17,9,27,36,[[131,2,1,27,28],[132,1,1,28,29],[142,2,1,29,30],[151,12,6,30,36]]],[4,2,2,36,38,[[170,1,1,36,37],[174,1,1,37,38]]],[6,6,3,38,41,[[223,2,1,38,39],[225,2,1,39,40],[231,2,1,40,41]]],[8,9,6,41,47,[[249,4,2,41,43],[254,2,2,43,45],[255,1,1,45,46],[257,2,1,46,47]]],[9,7,5,47,52,[[267,1,1,47,48],[278,2,1,48,49],[279,1,1,49,50],[280,2,1,50,51],[287,1,1,51,52]]],[10,12,8,52,60,[[291,1,1,52,53],[292,4,2,53,55],[293,4,2,55,57],[301,1,1,57,58],[307,2,2,58,60]]],[11,10,6,60,66,[[313,6,3,60,63],[320,3,2,63,65],[333,1,1,65,66]]],[18,1,1,66,67,[[582,1,1,66,67]]],[20,1,1,67,68,[[667,1,1,67,68]]],[23,9,6,68,74,[[770,5,3,68,71],[782,2,1,71,72],[785,1,1,72,73],[787,1,1,73,74]]],[25,8,4,74,78,[[804,2,1,74,75],[819,2,1,75,76],[834,4,2,76,78]]]],[47,59,502,703,1289,1901,1950,2038,2089,2092,2093,2094,2132,2434,2435,3320,3327,3328,3329,3330,3331,3333,3334,3345,3462,3463,3599,4188,4235,4554,4861,4862,4863,4864,4866,4876,5395,5494,6906,6942,7107,7547,7552,7707,7711,7763,7803,8038,8300,8349,8370,8581,8768,8807,8812,8842,8843,9148,9335,9337,9537,9539,9549,9732,9737,10142,15635,17480,19580,19587,19591,19910,19961,20000,20520,20862,21288,21294]]],["Died",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8114]]],["Slay",[2,2,[[13,1,1,0,1,[[389,1,1,0,1]]],[23,1,1,1,2,[[785,1,1,1,2]]]],[11670,19965]]],["body",[1,1,[[3,1,1,0,1,[[135,1,1,0,1]]]],[4305]]],["crying",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16943]]],["dead",[132,118,[[0,11,10,0,10,[[22,8,7,0,7],[41,1,1,7,8],[43,1,1,8,9],[49,1,1,9,10]]],[1,8,8,10,18,[[53,1,1,10,11],[58,1,1,11,12],[61,2,2,12,14],[63,1,1,14,15],[70,3,3,15,18]]],[2,1,1,18,19,[[110,1,1,18,19]]],[3,7,6,19,25,[[122,1,1,19,20],[128,1,1,20,21],[132,1,1,21,22],[135,4,3,22,25]]],[4,5,5,25,30,[[154,1,1,25,26],[166,1,1,26,27],[177,2,2,27,29],[178,1,1,29,30]]],[5,1,1,30,31,[[187,1,1,30,31]]],[6,8,8,31,39,[[212,1,1,31,32],[213,1,1,32,33],[214,2,2,33,35],[218,1,1,35,36],[219,1,1,36,37],[226,1,1,37,38],[230,1,1,38,39]]],[7,6,4,39,43,[[232,1,1,39,40],[233,1,1,40,41],[235,4,2,41,43]]],[8,8,8,43,51,[[239,2,2,43,45],[252,1,1,45,46],[259,1,1,46,47],[260,1,1,47,48],[263,1,1,48,49],[266,2,2,49,51]]],[9,27,21,51,72,[[267,3,2,51,53],[268,1,1,53,54],[270,2,2,54,56],[275,1,1,56,57],[277,4,3,57,60],[278,7,4,60,64],[279,4,3,64,67],[280,2,2,67,69],[282,1,1,69,70],[284,1,1,70,71],[285,1,1,71,72]]],[10,12,9,72,81,[[293,6,4,72,76],[301,1,1,76,77],[303,1,1,77,78],[311,4,3,78,81]]],[11,5,5,81,86,[[316,2,2,81,83],[323,1,1,83,84],[331,1,1,84,85],[335,1,1,85,86]]],[12,10,10,86,96,[[338,7,7,86,93],[339,1,1,93,94],[347,2,2,94,96]]],[13,1,1,96,97,[[388,1,1,96,97]]],[17,1,1,97,98,[[436,1,1,97,98]]],[18,5,5,98,103,[[565,2,2,98,100],[583,1,1,100,101],[592,1,1,101,102],[620,1,1,102,103]]],[20,5,4,103,107,[[662,2,1,103,104],[667,3,3,104,107]]],[22,6,6,107,113,[[686,1,1,107,108],[700,1,1,108,109],[704,2,2,109,111],[715,1,1,111,112],[737,1,1,112,113]]],[23,2,2,113,115,[[760,1,1,113,114],[766,1,1,114,115]]],[24,1,1,115,116,[[799,1,1,115,116]]],[25,2,2,116,118,[[825,1,1,116,117],[845,1,1,117,118]]]],[574,575,577,579,582,584,586,1290,1344,1521,1620,1749,1846,1849,1919,2111,2112,2113,3356,3829,4071,4242,4300,4302,4307,4954,5291,5552,5553,5580,5853,6564,6593,6600,6621,6752,6809,6979,7059,7135,7169,7195,7200,7314,7316,7669,7853,7900,7945,8014,8016,8026,8027,8056,8121,8130,8235,8280,8283,8285,8304,8305,8307,8309,8349,8350,8356,8358,8361,8435,8498,8521,8836,8837,8838,8839,9129,9215,9465,9466,9467,9604,9635,9830,10096,10195,10296,10297,10298,10299,10300,10301,10302,10325,10664,10666,11654,12888,15313,15318,15679,15847,16296,17383,17478,17479,17480,17826,18054,18144,18149,18388,18810,19343,19464,20360,21073,21624]]],["death",[52,46,[[1,2,2,0,2,[[70,1,1,0,1],[84,1,1,1,2]]],[2,3,3,2,5,[[108,1,1,2,3],[113,2,2,3,5]]],[3,5,5,5,10,[[117,1,1,5,6],[119,2,2,6,8],[134,1,1,8,9],[151,1,1,9,10]]],[4,10,6,10,16,[[165,2,2,10,12],[169,4,2,12,14],[173,1,1,14,15],[176,3,1,15,16]]],[5,1,1,16,17,[[187,1,1,16,17]]],[6,4,4,17,21,[[215,1,1,17,18],[216,1,1,18,19],[226,1,1,19,20],[230,1,1,20,21]]],[8,3,3,21,24,[[239,1,1,21,22],[246,2,2,22,24]]],[9,5,5,24,29,[[274,1,1,24,25],[285,2,2,25,27],[286,1,1,27,28],[287,1,1,28,29]]],[10,3,3,29,32,[[292,3,3,29,32]]],[11,4,2,32,34,[[326,3,1,32,33],[332,1,1,33,34]]],[13,3,3,34,37,[[381,1,1,34,35],[389,1,1,35,36],[398,1,1,36,37]]],[16,1,1,37,38,[[429,1,1,37,38]]],[18,1,1,38,39,[[525,1,1,38,39]]],[22,1,1,39,40,[[716,1,1,39,40]]],[23,6,6,40,46,[[770,2,2,40,42],[782,3,3,42,45],[796,1,1,45,46]]]],[2106,2533,3301,3462,3467,3655,3702,3730,4264,4876,5277,5281,5370,5371,5469,5541,5869,6641,6685,6965,7067,7317,7457,7458,8211,8532,8533,8557,8589,8778,8794,8796,9902,10099,11503,11663,11899,12773,14648,18391,19593,19596,19899,19911,19920,20303]]],["destroy",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8573]]],["destroyers",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13672]]],["die",[232,220,[[0,23,22,0,22,[[2,1,1,0,1],[18,1,1,1,2],[24,1,1,2,3],[25,1,1,3,4],[26,1,1,4,5],[29,1,1,5,6],[32,1,1,6,7],[37,1,1,7,8],[41,2,2,8,10],[42,1,1,10,11],[43,3,3,11,14],[44,1,1,14,15],[45,1,1,15,16],[46,4,3,16,19],[47,1,1,19,20],[49,2,2,20,22]]],[1,20,20,22,42,[[56,1,1,22,23],[58,2,2,23,25],[59,1,1,25,26],[60,1,1,26,27],[63,1,1,27,28],[69,1,1,28,29],[70,6,6,29,35],[71,3,3,35,38],[77,2,2,38,40],[79,2,2,40,42]]],[2,10,10,42,52,[[97,1,1,42,43],[99,3,3,43,46],[100,1,1,46,47],[104,1,1,47,48],[105,2,2,48,50],[109,1,1,50,51],[111,1,1,51,52]]],[3,28,25,52,77,[[120,3,3,52,55],[122,2,2,55,57],[130,1,1,57,58],[132,1,1,58,59],[133,2,2,59,61],[134,3,3,61,64],[136,2,2,64,66],[137,1,1,66,67],[139,1,1,67,68],[143,1,1,68,69],[151,11,8,69,77]]],[4,24,23,77,100,[[156,1,1,77,78],[157,2,1,78,79],[165,1,1,79,80],[169,2,2,80,82],[170,2,2,82,84],[171,3,3,84,87],[172,3,3,87,90],[173,1,1,90,91],[174,3,3,91,94],[176,2,2,94,96],[177,1,1,96,97],[183,1,1,97,98],[184,1,1,98,99],[185,1,1,99,100]]],[5,1,1,100,101,[[206,1,1,100,101]]],[6,4,4,101,105,[[216,2,2,101,103],[225,1,1,103,104],[226,1,1,104,105]]],[7,1,1,105,106,[[232,1,1,105,106]]],[8,9,9,106,115,[[237,2,2,106,108],[247,1,1,108,109],[249,2,2,109,111],[255,2,2,111,113],[261,1,1,113,114],[263,1,1,114,115]]],[9,5,5,115,120,[[277,1,1,115,116],[278,1,1,116,117],[284,1,1,117,118],[285,2,2,118,120]]],[10,7,7,120,127,[[291,1,1,120,121],[292,2,2,121,123],[304,1,1,123,124],[307,1,1,124,125],[309,1,1,125,126],[311,1,1,126,127]]],[11,6,4,127,131,[[319,4,2,127,129],[330,1,1,129,130],[332,1,1,130,131]]],[13,4,2,131,133,[[391,3,1,131,132],[398,1,1,132,133]]],[17,7,7,133,140,[[437,1,1,133,134],[439,1,1,134,135],[447,1,1,135,136],[449,2,2,136,138],[469,1,1,138,139],[471,1,1,139,140]]],[18,4,4,140,144,[[518,1,1,140,141],[526,1,1,141,142],[559,1,1,142,143],[595,1,1,143,144]]],[19,6,6,144,150,[[632,1,1,144,145],[637,1,1,145,146],[642,1,1,146,147],[646,1,1,147,148],[650,1,1,148,149],[657,1,1,149,150]]],[20,2,2,150,152,[[661,1,1,150,151],[665,1,1,151,152]]],[22,9,9,152,161,[[700,3,3,152,155],[716,1,1,155,156],[729,3,3,156,159],[743,1,1,159,160],[744,1,1,160,161]]],[23,25,24,161,185,[[755,3,2,161,163],[760,2,2,163,165],[764,1,1,165,166],[765,2,2,166,168],[766,2,2,168,170],[771,1,1,170,171],[772,1,1,171,172],[775,1,1,172,173],[778,2,2,173,175],[781,1,1,175,176],[782,5,5,176,181],[786,3,3,181,184],[788,1,1,184,185]]],[25,29,27,185,212,[[804,4,3,185,188],[806,1,1,188,189],[807,2,1,189,190],[808,1,1,190,191],[813,1,1,191,192],[814,1,1,192,193],[818,1,1,193,194],[819,9,9,194,203],[829,2,2,203,205],[834,7,7,205,212]]],[29,5,5,212,217,[[880,1,1,212,213],[884,1,1,213,214],[885,2,2,214,216],[887,1,1,216,217]]],[31,1,1,217,218,[[892,1,1,217,218]]],[34,1,1,218,219,[[903,1,1,218,219]]],[37,1,1,219,220,[[921,1,1,219,220]]]],[58,476,690,701,731,831,973,1130,1254,1272,1298,1333,1346,1355,1386,1416,1435,1439,1449,1472,1511,1530,1703,1746,1761,1805,1811,1900,2070,2089,2091,2095,2097,2105,2112,2115,2123,2127,2328,2336,2402,2403,2952,2983,2984,2986,3036,3199,3203,3214,3338,3378,3758,3762,3763,3830,3832,4143,4223,4254,4257,4260,4279,4289,4315,4337,4345,4426,4562,4857,4861,4862,4863,4865,4866,4868,4875,5026,5078,5282,5369,5376,5400,5404,5411,5417,5418,5432,5433,5434,5468,5491,5492,5495,5528,5532,5552,5742,5808,5816,6381,6677,6684,6947,6979,7144,7273,7274,7479,7551,7553,7732,7744,7915,7951,8274,8299,8481,8534,8548,8769,8771,8800,9230,9329,9391,9461,9710,9711,10056,10099,11708,11886,12900,12951,13130,13189,13195,13703,13750,14547,14658,15240,15886,16540,16677,16817,16941,17057,17258,17361,17446,18065,18066,18070,18391,18679,18685,18687,18917,18946,19247,19248,19340,19342,19428,19446,19449,19466,19480,19609,19634,19721,19805,19806,19894,19897,19904,19905,19919,19921,19991,19992,19997,20022,20520,20521,20522,20558,20575,20592,20693,20727,20841,20853,20866,20867,20869,20870,20873,20875,20877,20880,21165,21167,21288,21289,21291,21293,21295,21298,21307,22381,22459,22475,22481,22505,22576,22743,23037]]],["died",[154,147,[[0,30,30,0,30,[[4,8,8,0,8],[6,1,1,8,9],[8,1,1,9,10],[10,2,2,10,12],[22,1,1,12,13],[24,2,2,13,15],[34,4,4,15,19],[35,7,7,19,26],[37,1,1,26,27],[45,1,1,27,28],[47,1,1,28,29],[49,1,1,29,30]]],[1,7,6,30,36,[[50,1,1,30,31],[51,1,1,31,32],[56,1,1,32,33],[57,1,1,33,34],[58,2,1,34,35],[65,1,1,35,36]]],[2,2,2,36,38,[[99,1,1,36,37],[105,1,1,37,38]]],[3,18,15,38,53,[[119,1,1,38,39],[130,3,2,39,41],[131,1,1,41,42],[132,2,1,42,43],[136,2,2,43,45],[137,1,1,45,46],[141,1,1,46,47],[142,4,4,47,51],[143,2,1,51,52],[149,1,1,52,53]]],[4,3,3,53,56,[[162,1,1,53,54],[184,1,1,54,55],[186,1,1,55,56]]],[5,5,4,56,60,[[191,1,1,56,57],[196,2,1,57,58],[210,2,2,58,60]]],[6,14,14,60,74,[[211,1,1,60,61],[212,2,2,61,63],[213,1,1,63,64],[214,1,1,64,65],[218,1,1,65,66],[219,2,2,66,68],[220,2,2,68,70],[222,4,4,70,74]]],[7,2,2,74,76,[[232,2,2,74,76]]],[8,8,8,76,84,[[239,1,1,76,77],[240,1,1,77,78],[249,1,1,78,79],[260,3,3,79,82],[266,2,2,82,84]]],[9,16,15,84,99,[[267,1,1,84,85],[268,3,2,85,87],[269,1,1,87,88],[272,1,1,88,89],[276,2,2,89,91],[277,2,2,91,93],[278,1,1,93,94],[283,1,1,94,95],[284,1,1,95,96],[285,1,1,96,97],[286,1,1,97,98],[290,1,1,98,99]]],[10,10,10,99,109,[[292,2,2,99,101],[293,1,1,101,102],[302,1,1,102,103],[304,1,1,103,104],[306,2,2,104,106],[311,1,1,106,107],[312,2,2,107,109]]],[11,12,12,109,121,[[313,1,1,109,110],[316,1,1,110,111],[319,2,2,111,113],[320,1,1,113,114],[321,1,1,114,115],[324,1,1,115,116],[325,3,3,116,119],[335,1,1,119,120],[337,1,1,120,121]]],[12,12,11,121,132,[[338,1,1,121,122],[339,2,2,122,124],[347,4,3,124,127],[350,1,1,127,128],[356,1,1,128,129],[360,1,1,129,130],[361,1,1,130,131],[366,1,1,131,132]]],[13,9,9,132,141,[[376,1,1,132,133],[379,1,1,133,134],[382,1,1,134,135],[384,1,1,135,136],[387,1,1,136,137],[390,3,3,137,140],[401,1,1,140,141]]],[17,2,2,141,143,[[438,1,1,141,142],[477,1,1,142,143]]],[23,1,1,143,144,[[772,1,1,143,144]]],[25,2,2,144,146,[[812,1,1,144,145],[825,1,1,145,146]]],[27,1,1,146,147,[[874,1,1,146,147]]]],[110,113,116,119,122,125,132,136,181,234,294,298,573,666,675,1019,1029,1030,1040,1073,1074,1075,1076,1077,1078,1079,1131,1398,1458,1532,1538,1577,1706,1723,1748,1950,2979,3202,3696,4110,4145,4189,4243,4312,4339,4346,4480,4499,4500,4508,4550,4557,4798,5192,5808,5844,5938,6075,6505,6509,6516,6553,6566,6579,6620,6751,6803,6808,6813,6816,6876,6879,6881,6884,7130,7132,7315,7331,7553,7862,7898,7899,8014,8015,8037,8072,8080,8108,8164,8241,8258,8276,8280,8304,8472,8511,8517,8564,8707,8795,8816,8835,9169,9235,9301,9305,9464,9515,9517,9550,9623,9724,9727,9742,9783,9871,9885,9891,9895,10199,10247,10303,10336,10338,10664,10665,10672,10770,10908,11005,11017,11192,11413,11473,11522,11576,11643,11692,11699,11702,11990,12915,13939,19635,20668,21074,22267]]],["diest",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7144]]],["dieth",[16,13,[[3,1,1,0,1,[[135,1,1,0,1]]],[10,6,3,1,4,[[304,2,1,1,2],[306,2,1,2,3],[311,2,1,3,4]]],[17,3,3,4,7,[[449,1,1,4,5],[456,2,2,5,7]]],[20,1,1,7,8,[[660,1,1,7,8]]],[22,2,2,8,10,[[728,1,1,8,9],[737,1,1,9,10]]],[25,2,2,10,12,[[819,2,2,10,12]]],[37,1,1,12,13,[[921,1,1,12,13]]]],[4303,9229,9287,9475,13191,13378,13380,17349,18664,18805,20875,20881,23037]]],["kill",[19,19,[[1,3,3,0,3,[[50,1,1,0,1],[53,1,1,1,2],[66,1,1,2,3]]],[2,1,1,3,4,[[109,1,1,3,4]]],[3,2,2,4,6,[[130,1,1,4,5],[132,1,1,5,6]]],[4,1,1,6,7,[[184,1,1,6,7]]],[6,1,1,7,8,[[223,1,1,7,8]]],[8,3,3,8,11,[[254,2,2,8,10],[265,1,1,10,11]]],[9,4,4,11,15,[[279,1,1,11,12],[280,2,2,12,14],[287,1,1,14,15]]],[11,3,3,15,18,[[317,1,1,15,16],[319,1,1,16,17],[323,1,1,17,18]]],[22,1,1,18,19,[[692,1,1,18,19]]]],[1548,1625,1986,3322,4123,4207,5797,6907,7708,7723,7993,8345,8363,8388,8584,9654,9711,9844,17958]]],["killed",[5,5,[[1,1,1,0,1,[[70,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]],[10,1,1,2,3,[[306,1,1,2,3]]],[11,1,1,3,4,[[327,1,1,3,4]]],[12,1,1,4,5,[[356,1,1,4,5]]]],[2106,8597,9293,9950,10925]]],["killeth",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[19,1,1,1,2,[[648,1,1,1,2]]]],[7246,17009]]],["man",[3,3,[[0,1,1,0,1,[[19,1,1,0,1]]],[3,1,1,1,2,[[122,1,1,1,2]]],[18,1,1,2,3,[[508,1,1,2,3]]]],[498,3832,14343]]],["slain",[15,14,[[8,4,4,0,4,[[239,1,1,0,1],[254,2,2,1,3],[255,1,1,3,4]]],[9,1,1,4,5,[[269,1,1,4,5]]],[10,1,1,5,6,[[303,1,1,5,6]]],[11,5,4,6,10,[[323,5,4,6,10]]],[13,4,4,10,14,[[388,2,2,10,12],[389,2,2,12,14]]]],[7308,7712,7717,7762,8111,9210,9831,9837,9844,9845,11653,11655,11670,11677]]],["slay",[29,28,[[0,2,2,0,2,[[17,1,1,0,1],[36,1,1,1,2]]],[3,1,1,2,3,[[151,1,1,2,3]]],[4,1,1,3,4,[[161,1,1,3,4]]],[6,1,1,4,5,[[219,1,1,4,5]]],[8,8,8,5,13,[[237,1,1,5,6],[240,2,2,6,8],[250,1,1,8,9],[254,2,2,9,11],[255,1,1,11,12],[257,1,1,12,13]]],[9,2,2,13,15,[[267,1,1,13,14],[269,1,1,14,15]]],[10,4,3,15,18,[[305,1,1,15,16],[308,1,1,16,17],[309,2,1,17,18]]],[11,1,1,18,19,[[329,1,1,18,19]]],[17,1,1,19,20,[[444,1,1,19,20]]],[18,3,3,20,23,[[511,1,1,20,21],[514,1,1,21,22],[586,1,1,22,23]]],[22,2,2,23,25,[[689,1,1,23,24],[743,1,1,24,25]]],[25,1,1,25,26,[[814,1,1,25,26]]],[27,2,2,26,28,[[863,1,1,26,27],[870,1,1,27,28]]]],[449,1101,4864,5185,6808,7265,7329,7330,7563,7717,7721,7738,7804,8031,8118,9277,9350,9404,10009,13074,14409,14482,15771,17888,18912,20727,22108,22224]]],["slayeth",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12953]]],["slew",[37,36,[[0,2,2,0,2,[[37,2,2,0,2]]],[5,2,2,2,4,[[196,1,1,2,3],[197,1,1,3,4]]],[6,2,1,4,5,[[226,2,1,4,5]]],[8,6,6,5,11,[[249,1,1,5,6],[252,3,3,6,9],[257,1,1,9,10],[265,1,1,10,11]]],[9,4,4,11,15,[[267,1,1,11,12],[270,1,1,12,13],[280,1,1,13,14],[284,1,1,14,15]]],[10,2,2,15,17,[[292,1,1,15,16],[303,1,1,16,17]]],[11,9,9,17,26,[[323,1,1,17,18],[326,2,2,18,20],[327,3,3,20,23],[328,1,1,23,24],[335,1,1,24,25],[337,1,1,25,26]]],[12,2,2,26,28,[[339,1,1,26,27],[347,1,1,27,28]]],[13,5,5,28,33,[[388,1,1,28,29],[389,1,1,29,30],[391,2,2,30,32],[399,1,1,32,33]]],[23,3,3,33,36,[[764,1,1,33,34],[785,2,2,34,36]]]],[1126,1129,6090,6124,6979,7521,7653,7668,7669,7805,7980,8032,8127,8362,8493,8804,9208,9849,9902,9915,9935,9939,9955,9972,10194,10243,10309,10673,11655,11671,11708,11731,11932,19439,19959,19965]]]]},{"k":"H4192","v":[]},{"k":"H4193","v":[["death",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12199]]]]},{"k":"H4194","v":[["*",[155,150,[[0,7,7,0,7,[[20,1,1,0,1],[24,1,1,1,2],[25,1,1,2,3],[26,3,3,3,6],[49,1,1,6,7]]],[1,1,1,7,8,[[59,1,1,7,8]]],[2,3,3,8,11,[[100,2,2,8,10],[105,1,1,10,11]]],[3,7,6,11,17,[[132,1,1,11,12],[139,1,1,12,13],[149,1,1,13,14],[151,4,3,14,17]]],[4,9,9,17,26,[[171,1,1,17,18],[173,1,1,18,19],[174,1,1,19,20],[182,2,2,20,22],[183,2,2,22,24],[185,1,1,24,25],[186,1,1,25,26]]],[5,3,3,26,29,[[187,1,1,26,27],[188,1,1,27,28],[206,1,1,28,29]]],[6,3,3,29,32,[[211,1,1,29,30],[223,1,1,30,31],[226,1,1,31,32]]],[7,2,2,32,34,[[232,1,1,32,33],[233,1,1,33,34]]],[8,6,6,34,40,[[240,1,1,34,35],[250,2,2,35,37],[255,2,2,37,39],[261,1,1,39,40]]],[9,9,9,40,49,[[267,2,2,40,42],[269,1,1,42,43],[272,1,1,43,44],[278,1,1,44,45],[281,1,1,45,46],[285,1,1,46,47],[288,2,2,47,49]]],[10,2,2,49,51,[[292,1,1,49,50],[301,1,1,50,51]]],[11,6,6,51,57,[[313,1,1,51,52],[314,1,1,52,53],[315,1,1,53,54],[316,1,1,54,55],[326,1,1,55,56],[327,1,1,56,57]]],[12,2,2,57,59,[[339,1,1,57,58],[359,1,1,58,59]]],[13,6,6,59,65,[[388,1,1,59,60],[390,2,2,60,62],[391,1,1,62,63],[392,1,1,63,64],[398,1,1,64,65]]],[16,1,1,65,66,[[427,1,1,65,66]]],[17,8,8,66,74,[[438,1,1,66,67],[440,1,1,67,68],[442,1,1,68,69],[453,1,1,69,70],[462,1,1,70,71],[463,1,1,71,72],[465,1,1,72,73],[473,1,1,73,74]]],[18,21,21,74,95,[[483,1,1,74,75],[484,1,1,75,76],[486,1,1,76,77],[490,1,1,77,78],[495,2,2,78,80],[499,1,1,80,81],[510,1,1,81,82],[526,2,2,82,84],[532,1,1,84,85],[533,1,1,85,86],[545,1,1,86,87],[550,1,1,87,88],[555,1,1,88,89],[566,1,1,89,90],[584,1,1,90,91],[593,3,3,91,94],[595,1,1,94,95]]],[19,19,19,95,114,[[629,1,1,95,96],[632,1,1,96,97],[634,1,1,97,98],[635,1,1,98,99],[637,1,1,99,100],[638,3,3,100,103],[639,1,1,103,104],[640,1,1,104,105],[641,3,3,105,108],[643,2,2,108,110],[645,1,1,110,111],[648,1,1,111,112],[651,1,1,112,113],[653,1,1,113,114]]],[20,6,5,114,119,[[661,2,1,114,115],[665,2,2,115,117],[666,1,1,117,118],[668,1,1,118,119]]],[21,1,1,119,120,[[678,1,1,119,120]]],[22,8,8,120,128,[[684,1,1,120,121],[692,1,1,121,122],[703,1,1,122,123],[706,2,2,123,125],[716,1,1,125,126],[731,2,2,126,128]]],[23,13,11,128,139,[[752,1,1,128,129],[753,1,1,129,130],[759,2,1,130,131],[762,2,2,131,133],[765,1,1,133,134],[770,2,2,134,136],[787,2,1,136,137],[796,2,2,137,139]]],[24,1,1,139,140,[[797,1,1,139,140]]],[25,5,5,140,145,[[819,2,2,140,142],[829,1,1,142,143],[832,1,1,143,144],[834,1,1,144,145]]],[27,2,1,145,146,[[874,2,1,145,146]]],[31,3,3,146,149,[[892,3,3,146,149]]],[34,1,1,149,150,[[904,1,1,149,150]]]],[529,669,710,729,734,737,1522,1794,3028,3029,3202,4223,4426,4799,4870,4873,4877,5412,5469,5496,5723,5727,5755,5757,5811,5846,5852,5882,6378,6510,6891,6979,7144,7160,7330,7592,7595,7733,7761,7921,8023,8045,8114,8180,8291,8410,8539,8607,8608,8796,9148,9534,9572,9581,9643,9913,9930,10330,10969,11648,11692,11694,11729,11753,11908,12731,12925,12971,13023,13289,13496,13526,13580,13810,13990,14008,14034,14077,14122,14123,14219,14385,14662,14665,14736,14768,14920,15024,15163,15374,15717,15851,15856,15863,15887,16451,16522,16602,16638,16658,16692,16695,16707,16747,16761,16784,16799,16804,16854,16865,16922,16990,17090,17159,17378,17430,17455,17466,17494,17646,17770,17956,18126,18179,18182,18408,18720,18723,19156,19196,19317,19405,19407,19448,19583,19588,20008,20287,20310,20330,20872,20881,21167,21244,21291,22280,22571,22576,22577,22753]]],["+",[13,13,[[4,1,1,0,1,[[171,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[9,1,1,3,4,[[278,1,1,3,4]]],[17,1,1,4,5,[[440,1,1,4,5]]],[18,4,4,5,9,[[510,1,1,5,6],[533,1,1,6,7],[555,1,1,7,8],[593,1,1,8,9]]],[19,2,2,9,11,[[637,1,1,9,10],[638,1,1,10,11]]],[20,1,1,11,12,[[665,1,1,11,12]]],[27,1,1,12,13,[[874,1,1,12,13]]]],[5412,5882,7761,8291,12971,14385,14768,15163,15856,16658,16692,17455,22280]]],["Dead",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17494]]],["Death",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16922]]],["dead",[6,6,[[2,2,2,0,2,[[100,2,2,0,2]]],[9,1,1,2,3,[[285,1,1,2,3]]],[11,1,1,3,4,[[315,1,1,3,4]]],[12,1,1,4,5,[[339,1,1,4,5]]],[16,1,1,5,6,[[427,1,1,5,6]]]],[3028,3029,8539,9581,10330,12731]]],["deadly",[1,1,[[8,1,1,0,1,[[240,1,1,0,1]]]],[7330]]],["death",[114,111,[[0,6,6,0,6,[[20,1,1,0,1],[24,1,1,1,2],[25,1,1,2,3],[26,3,3,3,6]]],[1,1,1,6,7,[[59,1,1,6,7]]],[2,1,1,7,8,[[105,1,1,7,8]]],[3,6,5,8,13,[[132,1,1,8,9],[139,1,1,9,10],[151,4,3,10,13]]],[4,7,7,13,20,[[173,1,1,13,14],[174,1,1,14,15],[182,2,2,15,17],[183,2,2,17,19],[185,1,1,19,20]]],[5,2,2,20,22,[[187,1,1,20,21],[206,1,1,21,22]]],[6,3,3,22,25,[[211,1,1,22,23],[223,1,1,23,24],[226,1,1,24,25]]],[7,2,2,25,27,[[232,1,1,25,26],[233,1,1,26,27]]],[8,3,3,27,30,[[250,2,2,27,29],[255,1,1,29,30]]],[9,6,6,30,36,[[267,2,2,30,32],[272,1,1,32,33],[281,1,1,33,34],[288,2,2,34,36]]],[10,2,2,36,38,[[292,1,1,36,37],[301,1,1,37,38]]],[11,5,5,38,43,[[313,1,1,38,39],[314,1,1,39,40],[316,1,1,40,41],[326,1,1,41,42],[327,1,1,42,43]]],[12,1,1,43,44,[[359,1,1,43,44]]],[13,5,5,44,49,[[388,1,1,44,45],[390,1,1,45,46],[391,1,1,46,47],[392,1,1,47,48],[398,1,1,48,49]]],[17,7,7,49,56,[[438,1,1,49,50],[442,1,1,50,51],[453,1,1,51,52],[462,1,1,52,53],[463,1,1,53,54],[465,1,1,54,55],[473,1,1,55,56]]],[18,16,16,56,72,[[483,1,1,56,57],[484,1,1,57,58],[486,1,1,58,59],[490,1,1,59,60],[495,2,2,60,62],[499,1,1,62,63],[526,1,1,63,64],[532,1,1,64,65],[545,1,1,65,66],[550,1,1,66,67],[566,1,1,67,68],[584,1,1,68,69],[593,2,2,69,71],[595,1,1,71,72]]],[19,15,15,72,87,[[629,1,1,72,73],[632,1,1,73,74],[634,1,1,74,75],[635,1,1,75,76],[638,1,1,76,77],[639,1,1,77,78],[640,1,1,78,79],[641,3,3,79,82],[643,2,2,82,84],[648,1,1,84,85],[651,1,1,85,86],[653,1,1,86,87]]],[20,2,2,87,89,[[665,1,1,87,88],[666,1,1,88,89]]],[21,1,1,89,90,[[678,1,1,89,90]]],[22,6,6,90,96,[[703,1,1,90,91],[706,2,2,91,93],[716,1,1,93,94],[731,2,2,94,96]]],[23,10,8,96,104,[[752,1,1,96,97],[753,1,1,97,98],[759,2,1,98,99],[762,1,1,99,100],[765,1,1,100,101],[787,2,1,101,102],[796,2,2,102,104]]],[24,1,1,104,105,[[797,1,1,104,105]]],[25,3,3,105,108,[[819,1,1,105,106],[832,1,1,106,107],[834,1,1,107,108]]],[27,1,1,108,109,[[874,1,1,108,109]]],[31,1,1,109,110,[[892,1,1,109,110]]],[34,1,1,110,111,[[904,1,1,110,111]]]],[529,669,710,729,734,737,1794,3202,4223,4426,4870,4873,4877,5469,5496,5723,5727,5755,5757,5811,5852,6378,6510,6891,6979,7144,7160,7592,7595,7733,8023,8045,8180,8410,8607,8608,8796,9148,9534,9572,9643,9913,9930,10969,11648,11694,11729,11753,11908,12925,13023,13289,13496,13526,13580,13810,13990,14008,14034,14077,14122,14123,14219,14662,14736,14920,15024,15374,15717,15851,15863,15887,16451,16522,16602,16638,16707,16747,16761,16784,16799,16804,16854,16865,16990,17090,17159,17430,17466,17646,18126,18179,18182,18408,18720,18723,19156,19196,19317,19405,19448,20008,20287,20310,20330,20881,21244,21291,22280,22577,22753]]],["deaths",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21167]]],["die",[6,6,[[8,1,1,0,1,[[261,1,1,0,1]]],[23,2,2,1,3,[[770,2,2,1,3]]],[25,1,1,3,4,[[819,1,1,3,4]]],[31,2,2,4,6,[[892,2,2,4,6]]]],[7921,19583,19588,20872,22571,22576]]],["died",[6,6,[[0,1,1,0,1,[[49,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]],[4,1,1,2,3,[[186,1,1,2,3]]],[13,1,1,3,4,[[390,1,1,3,4]]],[22,2,2,4,6,[[684,1,1,4,5],[692,1,1,5,6]]]],[1522,4799,5846,11692,17770,17956]]],["dieth",[5,4,[[9,1,1,0,1,[[269,1,1,0,1]]],[18,1,1,1,2,[[526,1,1,1,2]]],[19,1,1,2,3,[[638,1,1,2,3]]],[20,2,1,3,4,[[661,2,1,3,4]]]],[8114,14665,16695,17378]]],["slay",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19407]]]]},{"k":"H4195","v":[["*",[3,3,[[19,2,2,0,2,[[641,1,1,0,1],[648,1,1,1,2]]],[20,1,1,2,3,[[661,1,1,2,3]]]],[16795,16989,17378]]],["plenteousness",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16989]]],["preeminence",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17378]]],["profit",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16795]]]]},{"k":"H4196","v":[["*",[401,338,[[0,13,11,0,11,[[7,2,1,0,1],[11,2,2,1,3],[12,2,2,3,5],[21,2,1,5,6],[25,1,1,6,7],[32,1,1,7,8],[34,3,3,8,11]]],[1,59,51,11,62,[[66,1,1,11,12],[69,3,3,12,15],[70,1,1,15,16],[73,2,2,16,18],[76,6,4,18,22],[77,1,1,22,23],[78,14,11,23,34],[79,5,5,34,39],[80,2,2,39,41],[81,1,1,41,42],[83,1,1,42,43],[84,2,2,43,45],[86,1,1,45,46],[87,6,5,46,51],[88,2,2,51,53],[89,11,9,53,62]]],[2,87,71,62,133,[[90,13,10,62,72],[91,4,4,72,76],[92,6,6,76,82],[93,15,10,82,92],[94,3,2,92,94],[95,8,6,94,100],[96,3,3,100,103],[97,11,8,103,111],[98,12,11,111,122],[99,1,1,122,123],[103,1,1,123,124],[105,6,5,124,129],[106,2,2,129,131],[110,1,1,131,132],[111,1,1,132,133]]],[3,29,26,133,159,[[119,2,2,133,135],[120,4,4,135,139],[121,2,2,139,141],[123,6,5,141,146],[132,3,3,146,149],[134,4,4,149,153],[139,8,6,153,159]]],[4,10,8,159,167,[[159,1,1,159,160],[164,3,2,160,162],[168,1,1,162,163],[178,1,1,163,164],[179,3,2,164,166],[185,1,1,166,167]]],[5,15,12,167,179,[[194,2,2,167,169],[195,1,1,169,170],[208,12,9,170,179]]],[6,12,10,179,189,[[212,1,1,179,180],[216,8,7,180,187],[223,2,1,187,188],[231,1,1,188,189]]],[8,5,4,189,193,[[237,2,2,189,191],[242,1,1,191,192],[249,2,1,192,193]]],[9,3,3,193,196,[[290,3,3,193,196]]],[10,35,29,196,225,[[291,3,3,196,199],[292,2,2,199,201],[293,1,1,201,202],[296,2,2,202,204],[297,1,1,204,205],[298,4,4,205,209],[299,1,1,209,210],[302,3,2,210,212],[303,10,6,212,218],[306,1,1,218,219],[308,5,4,219,223],[309,2,2,223,225]]],[11,28,19,225,244,[[323,3,2,225,227],[324,1,1,227,228],[328,11,6,228,234],[330,2,1,234,235],[333,3,3,235,238],[335,8,6,238,244]]],[12,10,8,244,252,[[343,2,1,244,245],[353,1,1,245,246],[358,5,4,246,250],[359,1,1,250,251],[365,1,1,251,252]]],[13,39,35,252,287,[[367,2,2,252,254],[370,2,2,254,256],[371,1,1,256,257],[372,2,2,257,259],[373,2,2,259,261],[374,1,1,261,262],[380,1,1,262,263],[381,1,1,263,264],[389,3,2,264,266],[392,2,2,266,268],[394,1,1,268,269],[395,8,6,269,275],[396,1,1,275,276],[397,1,1,276,277],[398,2,1,277,278],[399,5,5,278,283],[400,3,3,283,286],[401,1,1,286,287]]],[14,2,2,287,289,[[405,2,2,287,289]]],[15,1,1,289,290,[[422,1,1,289,290]]],[18,5,5,290,295,[[503,1,1,290,291],[520,1,1,291,292],[528,1,1,292,293],[561,1,1,293,294],[595,1,1,294,295]]],[22,8,7,295,302,[[684,1,1,295,296],[695,1,1,296,297],[697,1,1,297,298],[705,1,1,298,299],[714,2,1,299,300],[734,1,1,300,301],[738,1,1,301,302]]],[23,4,3,302,305,[[755,2,1,302,303],[761,2,2,303,305]]],[24,1,1,305,306,[[798,1,1,305,306]]],[25,18,17,306,323,[[807,4,4,306,310],[809,2,2,310,312],[810,1,1,312,313],[841,2,2,313,315],[842,1,1,315,316],[844,6,5,316,321],[846,1,1,321,322],[848,1,1,322,323]]],[27,6,5,323,328,[[869,2,1,323,324],[871,3,3,324,327],[873,1,1,327,328]]],[28,2,2,328,330,[[876,1,1,328,329],[877,1,1,329,330]]],[29,4,3,330,333,[[880,1,1,330,331],[881,2,1,331,332],[887,1,1,332,333]]],[37,2,2,333,335,[[919,1,1,333,334],[924,1,1,334,335]]],[38,3,3,335,338,[[925,2,2,335,337],[926,1,1,337,338]]]],[203,305,306,322,336,556,717,980,1012,1014,1018,1998,2075,2076,2077,2091,2181,2183,2273,2277,2278,2279,2336,2348,2349,2352,2354,2356,2357,2361,2372,2373,2374,2380,2383,2400,2402,2409,2410,2428,2429,2443,2509,2546,2547,2629,2634,2636,2637,2640,2663,2702,2703,2712,2713,2714,2717,2733,2736,2737,2739,2740,2750,2752,2753,2754,2756,2757,2758,2760,2761,2762,2764,2770,2771,2774,2780,2783,2786,2789,2791,2794,2802,2805,2813,2814,2820,2821,2825,2826,2829,2830,2839,2842,2858,2859,2861,2862,2863,2864,2881,2884,2910,2928,2932,2933,2936,2938,2941,2945,2947,2960,2961,2962,2963,2965,2966,2967,2970,2971,2973,2977,2989,3131,3213,3219,3221,3226,3234,3241,3246,3368,3391,3718,3723,3754,3756,3757,3769,3817,3818,3851,3860,3861,3934,3938,4232,4233,4240,4260,4262,4264,4274,4417,4418,4420,4430,4445,4446,5116,5243,5267,5363,5570,5590,5591,5820,6032,6033,6064,6436,6437,6442,6445,6449,6452,6454,6455,6460,6547,6678,6679,6680,6682,6684,6685,6686,6904,7106,7268,7273,7369,7543,8710,8713,8717,8767,8768,8770,8798,8799,8820,8916,8918,8982,9007,9016,9039,9049,9076,9183,9184,9185,9186,9187,9188,9189,9216,9315,9367,9371,9373,9376,9397,9401,9840,9847,9859,9973,9974,9975,9976,9977,9978,10046,10122,10123,10124,10174,10177,10180,10181,10182,10185,10503,10860,10952,10956,10960,10963,10965,11161,11199,11200,11247,11265,11280,11294,11304,11331,11333,11358,11478,11498,11666,11673,11748,11751,11788,11809,11810,11812,11813,11815,11818,11841,11855,11887,11911,11912,11913,11923,11924,11937,11938,11940,11982,12099,12100,12583,14279,14570,14710,15262,15896,17775,17991,18023,18160,18337,18760,18828,19239,19358,19359,20339,20567,20568,20569,20576,20609,20620,20624,21523,21524,21548,21585,21590,21594,21598,21599,21649,21680,22205,22226,22227,22233,22263,22304,22328,22387,22409,22496,23014,23088,23096,23099,23116]]],["+",[2,2,[[1,1,1,0,1,[[87,1,1,0,1]]],[2,1,1,1,2,[[98,1,1,1,2]]]],[2636,2977]]],["altar",[347,295,[[0,13,11,0,11,[[7,2,1,0,1],[11,2,2,1,3],[12,2,2,3,5],[21,2,1,5,6],[25,1,1,6,7],[32,1,1,7,8],[34,3,3,8,11]]],[1,57,49,11,60,[[66,1,1,11,12],[69,3,3,12,15],[70,1,1,15,16],[73,2,2,16,18],[76,6,4,18,22],[77,1,1,22,23],[78,14,11,23,34],[79,5,5,34,39],[80,2,2,39,41],[81,1,1,41,42],[84,2,2,42,44],[86,1,1,44,45],[87,5,4,45,49],[88,2,2,49,51],[89,11,9,51,60]]],[2,86,70,60,130,[[90,13,10,60,70],[91,4,4,70,74],[92,6,6,74,80],[93,15,10,80,90],[94,3,2,90,92],[95,8,6,92,98],[96,3,3,98,101],[97,11,8,101,109],[98,11,10,109,119],[99,1,1,119,120],[103,1,1,120,121],[105,6,5,121,126],[106,2,2,126,128],[110,1,1,128,129],[111,1,1,129,130]]],[3,24,23,130,153,[[119,1,1,130,131],[120,4,4,131,135],[121,2,2,135,137],[123,6,5,137,142],[132,3,3,142,145],[134,4,4,145,149],[139,4,4,149,153]]],[4,8,6,153,159,[[164,2,1,153,154],[168,1,1,154,155],[178,1,1,155,156],[179,3,2,156,158],[185,1,1,158,159]]],[5,15,12,159,171,[[194,2,2,159,161],[195,1,1,161,162],[208,12,9,162,171]]],[6,11,9,171,180,[[216,8,7,171,178],[223,2,1,178,179],[231,1,1,179,180]]],[8,5,4,180,184,[[237,2,2,180,182],[242,1,1,182,183],[249,2,1,183,184]]],[9,3,3,184,187,[[290,3,3,184,187]]],[10,33,27,187,214,[[291,3,3,187,190],[292,2,2,190,192],[293,1,1,192,193],[296,2,2,193,195],[297,1,1,195,196],[298,4,4,196,200],[299,1,1,200,201],[302,3,2,201,203],[303,10,6,203,209],[306,1,1,209,210],[308,5,4,210,214]]],[11,19,13,214,227,[[323,1,1,214,215],[324,1,1,215,216],[328,11,6,216,222],[330,1,1,222,223],[335,5,4,223,227]]],[12,10,8,227,235,[[343,2,1,227,228],[353,1,1,228,229],[358,5,4,229,233],[359,1,1,233,234],[365,1,1,234,235]]],[13,25,23,235,258,[[367,2,2,235,237],[370,2,2,237,239],[371,1,1,239,240],[372,2,2,240,242],[373,2,2,242,244],[374,1,1,244,245],[381,1,1,245,246],[389,1,1,246,247],[392,2,2,247,249],[395,8,6,249,255],[398,1,1,255,256],[399,1,1,256,257],[401,1,1,257,258]]],[14,2,2,258,260,[[405,2,2,258,260]]],[15,1,1,260,261,[[422,1,1,260,261]]],[18,4,4,261,265,[[503,1,1,261,262],[520,1,1,262,263],[528,1,1,263,264],[595,1,1,264,265]]],[22,6,6,265,271,[[684,1,1,265,266],[697,1,1,266,267],[705,1,1,267,268],[714,1,1,268,269],[734,1,1,269,270],[738,1,1,270,271]]],[24,1,1,271,272,[[798,1,1,271,272]]],[25,14,13,272,285,[[809,2,2,272,274],[810,1,1,274,275],[841,2,2,275,277],[842,1,1,277,278],[844,6,5,278,283],[846,1,1,283,284],[848,1,1,284,285]]],[28,2,2,285,287,[[876,1,1,285,286],[877,1,1,286,287]]],[29,3,3,287,290,[[880,1,1,287,288],[881,1,1,288,289],[887,1,1,289,290]]],[37,2,2,290,292,[[919,1,1,290,291],[924,1,1,291,292]]],[38,3,3,292,295,[[925,2,2,292,294],[926,1,1,294,295]]]],[203,305,306,322,336,556,717,980,1012,1014,1018,1998,2075,2076,2077,2091,2181,2183,2273,2277,2278,2279,2336,2348,2349,2352,2354,2356,2357,2361,2372,2373,2374,2380,2383,2400,2402,2409,2410,2428,2429,2443,2546,2547,2629,2634,2637,2640,2663,2702,2703,2712,2713,2714,2717,2733,2736,2737,2739,2740,2750,2752,2753,2754,2756,2757,2758,2760,2761,2762,2764,2770,2771,2774,2780,2783,2786,2789,2791,2794,2802,2805,2813,2814,2820,2821,2825,2826,2829,2830,2839,2842,2858,2859,2861,2862,2863,2864,2881,2884,2910,2928,2932,2933,2936,2938,2941,2945,2947,2960,2961,2962,2963,2965,2966,2967,2970,2971,2973,2989,3131,3213,3219,3221,3226,3234,3241,3246,3368,3391,3718,3754,3756,3757,3769,3817,3818,3851,3860,3861,3934,3938,4232,4233,4240,4260,4262,4264,4274,4418,4420,4430,4446,5267,5363,5570,5590,5591,5820,6032,6033,6064,6436,6437,6442,6445,6449,6452,6454,6455,6460,6678,6679,6680,6682,6684,6685,6686,6904,7106,7268,7273,7369,7543,8710,8713,8717,8767,8768,8770,8798,8799,8820,8916,8918,8982,9007,9016,9039,9049,9076,9183,9184,9185,9186,9187,9188,9189,9216,9315,9367,9371,9373,9376,9840,9859,9973,9974,9975,9976,9977,9978,10046,10174,10180,10181,10182,10503,10860,10952,10956,10960,10963,10965,11161,11199,11200,11247,11265,11280,11294,11304,11331,11333,11358,11498,11666,11748,11751,11809,11810,11812,11813,11815,11818,11887,11924,11982,12099,12100,12583,14279,14570,14710,15896,17775,18023,18160,18337,18760,18828,20339,20609,20620,20624,21523,21524,21548,21585,21590,21594,21598,21599,21649,21680,22304,22328,22387,22409,22496,23014,23088,23096,23099,23116]]],["altars",[52,47,[[1,1,1,0,1,[[83,1,1,0,1]]],[3,5,5,1,6,[[119,1,1,1,2],[139,4,4,2,6]]],[4,2,2,6,8,[[159,1,1,6,7],[164,1,1,7,8]]],[6,1,1,8,9,[[212,1,1,8,9]]],[10,2,2,9,11,[[309,2,2,9,11]]],[11,9,7,11,18,[[323,2,1,11,12],[330,1,1,12,13],[333,3,3,13,16],[335,3,2,16,18]]],[13,14,13,18,31,[[380,1,1,18,19],[389,2,1,19,20],[394,1,1,20,21],[396,1,1,21,22],[397,1,1,22,23],[398,1,1,23,24],[399,4,4,24,28],[400,3,3,28,31]]],[18,1,1,31,32,[[561,1,1,31,32]]],[22,2,2,32,34,[[695,1,1,32,33],[714,1,1,33,34]]],[23,4,3,34,37,[[755,2,1,34,35],[761,2,2,35,37]]],[25,4,4,37,41,[[807,4,4,37,41]]],[27,6,5,41,46,[[869,2,1,41,42],[871,3,3,42,45],[873,1,1,45,46]]],[29,1,1,46,47,[[881,1,1,46,47]]]],[2509,3723,4417,4420,4430,4445,5116,5243,6547,9397,9401,9847,10046,10122,10123,10124,10177,10185,11478,11673,11788,11841,11855,11887,11911,11912,11913,11923,11937,11938,11940,15262,17991,18337,19239,19358,19359,20567,20568,20569,20576,22205,22226,22227,22233,22263,22409]]]]},{"k":"H4197","v":[["liquor",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17629]]]]},{"k":"H4198","v":[["burnt",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5782]]]]},{"k":"H4199","v":[["Mizzah",[3,3,[[0,2,2,0,2,[[35,2,2,0,2]]],[12,1,1,2,3,[[338,1,1,2,3]]]],[1053,1057,10289]]]]},{"k":"H4200","v":[["garners",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16318]]]]},{"k":"H4201","v":[["*",[19,17,[[1,4,4,0,4,[[61,3,3,0,3],[70,1,1,3,4]]],[4,2,2,4,6,[[158,1,1,4,5],[163,1,1,5,6]]],[6,1,1,6,7,[[226,1,1,6,7]]],[8,1,1,7,8,[[236,1,1,7,8]]],[10,3,3,8,11,[[296,2,2,8,10],[297,1,1,10,11]]],[19,1,1,11,12,[[635,1,1,11,12]]],[22,1,1,12,13,[[735,1,1,12,13]]],[25,6,4,13,17,[[842,1,1,13,14],[844,2,1,14,15],[846,2,1,15,16],[847,1,1,16,17]]]],[1823,1838,1839,2083,5095,5228,6952,7221,8927,8929,8939,16636,18773,21547,21580,21649,21657]]],["post",[4,4,[[1,1,1,0,1,[[70,1,1,0,1]]],[8,1,1,1,2,[[236,1,1,1,2]]],[25,2,2,2,4,[[844,1,1,2,3],[847,1,1,3,4]]]],[2083,7221,21580,21657]]],["posts",[15,14,[[1,3,3,0,3,[[61,3,3,0,3]]],[4,2,2,3,5,[[158,1,1,3,4],[163,1,1,4,5]]],[6,1,1,5,6,[[226,1,1,5,6]]],[10,3,3,6,9,[[296,2,2,6,8],[297,1,1,8,9]]],[19,1,1,9,10,[[635,1,1,9,10]]],[22,1,1,10,11,[[735,1,1,10,11]]],[25,4,3,11,14,[[842,1,1,11,12],[844,1,1,12,13],[846,2,1,13,14]]]],[1823,1838,1839,5095,5228,6952,8927,8929,8939,16636,18773,21547,21580,21649]]]]},{"k":"H4202","v":[["*",[2,2,[[0,1,1,0,1,[[44,1,1,0,1]]],[13,1,1,1,2,[[377,1,1,1,2]]]],[1381,11437]]],["meat",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1381]]],["victual",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11437]]]]},{"k":"H4203","v":[["meat",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21849,21858]]]]},{"k":"H4204","v":[["wound",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22517]]]]},{"k":"H4205","v":[["*",[3,2,[[23,1,1,0,1,[[774,1,1,0,1]]],[27,2,1,1,2,[[866,2,1,1,2]]]],[19680,22165]]],["up",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19680]]],["wound",[2,1,[[27,2,1,0,1,[[866,2,1,0,1]]]],[22165]]]]},{"k":"H4206","v":[["*",[3,3,[[17,1,1,0,1,[[447,1,1,0,1]]],[18,1,1,1,2,[[586,1,1,1,2]]],[22,1,1,2,3,[[701,1,1,2,3]]]],[13149,15774,18087]]],["girdle",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15774]]],["strength",[2,2,[[17,1,1,0,1,[[447,1,1,0,1]]],[22,1,1,1,2,[[701,1,1,1,2]]]],[13149,18087]]]]},{"k":"H4207","v":[["*",[7,7,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]],[8,2,2,3,5,[[237,2,2,3,5]]],[12,1,1,5,6,[[365,1,1,5,6]]],[13,1,1,6,7,[[370,1,1,6,7]]]],[2275,2636,3757,7253,7254,11160,11262]]],["fleshhook",[2,2,[[8,2,2,0,2,[[237,2,2,0,2]]]],[7253,7254]]],["fleshhooks",[5,5,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]],[12,1,1,3,4,[[365,1,1,3,4]]],[13,1,1,4,5,[[370,1,1,4,5]]]],[2275,2636,3757,11160,11262]]]]},{"k":"H4208","v":[["planets",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10170]]]]},{"k":"H4209","v":[["*",[19,19,[[17,2,2,0,2,[[456,1,1,0,1],[477,1,1,1,2]]],[18,5,5,2,7,[[487,2,2,2,4],[498,1,1,4,5],[514,1,1,5,6],[616,1,1,6,7]]],[19,8,8,7,15,[[628,1,1,7,8],[629,1,1,8,9],[630,1,1,9,10],[632,1,1,10,11],[635,1,1,11,12],[639,1,1,12,13],[641,1,1,13,14],[651,1,1,14,15]]],[23,4,4,15,19,[[755,1,1,15,16],[767,1,1,16,17],[774,1,1,17,18],[795,1,1,18,19]]]],[13382,13924,14043,14045,14202,14457,16259,16404,16444,16476,16519,16614,16721,16789,17087,19241,19504,19691,20223]]],["+",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14457]]],["Discretion",[1,1,[[19,1,1,0,1,[[629,1,1,0,1]]]],[16444]]],["device",[2,2,[[18,1,1,0,1,[[498,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[14202,20223]]],["devices",[4,4,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,1,1,1,2,[[487,1,1,1,2]]],[19,2,2,2,4,[[639,1,1,2,3],[641,1,1,3,4]]]],[13382,14043,16721,16789]]],["discretion",[3,3,[[19,3,3,0,3,[[628,1,1,0,1],[630,1,1,1,2],[632,1,1,2,3]]]],[16404,16476,16519]]],["intents",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19691]]],["inventions",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16614]]],["lewdness",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19241]]],["mischievous",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17087]]],["thought",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13924]]],["thoughts",[2,2,[[18,1,1,0,1,[[487,1,1,0,1]]],[23,1,1,1,2,[[767,1,1,1,2]]]],[14045,19504]]],["wickedly",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16259]]]]},{"k":"H4210","v":[]},{"k":"H4211","v":[["*",[4,4,[[22,2,2,0,2,[[680,1,1,0,1],[696,1,1,1,2]]],[28,1,1,2,3,[[878,1,1,2,3]]],[32,1,1,3,4,[[896,1,1,3,4]]]],[17689,18002,22353,22623]]],["hooks",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18002]]],["pruninghooks",[3,3,[[22,1,1,0,1,[[680,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]],[32,1,1,2,3,[[896,1,1,2,3]]]],[17689,22353,22623]]]]},{"k":"H4212","v":[["snuffers",[5,5,[[10,1,1,0,1,[[297,1,1,0,1]]],[11,2,2,1,3,[[324,1,1,1,2],[337,1,1,2,3]]],[13,1,1,3,4,[[370,1,1,3,4]]],[23,1,1,4,5,[[796,1,1,4,5]]]],[8984,9863,10236,11268,20294]]]]},{"k":"H4213","v":[["*",[4,4,[[22,4,4,0,4,[[688,1,1,0,1],[694,1,1,1,2],[702,1,1,2,3],[707,1,1,3,4]]]],[17875,17983,18101,18210]]],["+",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17983]]],["few",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18101]]],["very",[2,2,[[22,2,2,0,2,[[688,1,1,0,1],[707,1,1,1,2]]]],[17875,18210]]]]},{"k":"H4214","v":[["fan",[2,2,[[22,1,1,0,1,[[708,1,1,0,1]]],[23,1,1,1,2,[[759,1,1,1,2]]]],[18241,19322]]]]},{"k":"H4215","v":[["+",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13778]]]]},{"k":"H4216","v":[["Mazzaroth",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13825]]]]},{"k":"H4217","v":[["*",[73,70,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[3,5,5,2,7,[[118,1,1,2,3],[119,1,1,3,4],[137,1,1,4,5],[148,1,1,5,6],[150,1,1,6,7]]],[4,5,5,7,12,[[155,2,2,7,9],[156,3,3,9,12]]],[5,22,19,12,31,[[187,1,1,12,13],[190,1,1,13,14],[197,2,2,14,16],[198,4,2,16,18],[199,4,4,18,22],[202,4,3,22,25],[203,1,1,25,26],[204,1,1,26,27],[205,3,3,27,30],[206,1,1,30,31]]],[6,3,3,31,34,[[221,1,1,31,32],[230,1,1,32,33],[231,1,1,33,34]]],[10,1,1,34,35,[[297,1,1,34,35]]],[11,1,1,35,36,[[322,1,1,35,36]]],[12,10,10,36,46,[[341,1,1,36,37],[342,2,2,37,39],[343,1,1,39,40],[344,1,1,40,41],[346,2,2,41,43],[349,1,1,43,44],[363,2,2,44,46]]],[13,4,4,46,50,[[370,1,1,46,47],[371,1,1,47,48],[395,1,1,48,49],[397,1,1,49,50]]],[15,3,3,50,53,[[415,2,2,50,52],[424,1,1,52,53]]],[18,4,4,53,57,[[527,1,1,53,54],[580,1,1,54,55],[584,1,1,55,56],[590,1,1,56,57]]],[22,6,6,57,63,[[719,2,2,57,59],[721,1,1,59,60],[723,1,1,60,61],[724,1,1,61,62],[737,1,1,62,63]]],[23,1,1,63,64,[[775,1,1,63,64]]],[26,2,2,64,66,[[857,1,1,64,65],[860,1,1,65,66]]],[29,1,1,66,67,[[886,1,1,66,67]]],[37,2,2,67,69,[[918,1,1,67,68],[924,1,1,68,69]]],[38,1,1,69,70,[[925,1,1,69,70]]]],[2285,2646,3661,3730,4351,4737,4831,4992,5002,5045,5051,5053,5866,5929,6110,6115,6131,6133,6159,6162,6181,6186,6266,6270,6271,6285,6300,6333,6348,6355,6380,6847,7097,7121,8959,9826,10424,10437,10438,10532,10563,10633,10639,10735,11091,11094,11250,11280,11795,11868,12353,12356,12661,14669,15561,15702,15816,18453,18476,18510,18567,18597,18819,19731,21970,22080,22493,22983,23072,23100]]],["+",[26,26,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,2,2,1,3,[[156,2,2,1,3]]],[5,8,8,3,11,[[187,1,1,3,4],[197,1,1,4,5],[199,1,1,5,6],[202,1,1,6,7],[203,1,1,7,8],[205,3,3,8,11]]],[6,3,3,11,14,[[221,1,1,11,12],[230,1,1,12,13],[231,1,1,13,14]]],[11,1,1,14,15,[[322,1,1,14,15]]],[18,3,3,15,18,[[527,1,1,15,16],[584,1,1,16,17],[590,1,1,17,18]]],[22,6,6,18,24,[[719,2,2,18,20],[721,1,1,20,21],[723,1,1,21,22],[724,1,1,22,23],[737,1,1,23,24]]],[26,1,1,24,25,[[860,1,1,24,25]]],[38,1,1,25,26,[[925,1,1,25,26]]]],[4351,5045,5051,5866,6110,6159,6271,6285,6333,6348,6355,6847,7097,7121,9826,14669,15702,15816,18453,18476,18510,18567,18597,18819,22080,23100]]],["Eastward",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11094]]],["east",[22,21,[[5,7,6,0,6,[[190,1,1,0,1],[198,3,2,1,3],[202,2,2,3,5],[204,1,1,5,6]]],[10,1,1,6,7,[[297,1,1,6,7]]],[12,3,3,7,10,[[342,1,1,7,8],[346,1,1,8,9],[349,1,1,9,10]]],[13,3,3,10,13,[[370,1,1,10,11],[395,1,1,11,12],[397,1,1,12,13]]],[15,2,2,13,15,[[415,2,2,13,15]]],[18,1,1,15,16,[[580,1,1,15,16]]],[23,1,1,16,17,[[775,1,1,16,17]]],[26,1,1,17,18,[[857,1,1,17,18]]],[29,1,1,18,19,[[886,1,1,18,19]]],[37,2,2,19,21,[[918,1,1,19,20],[924,1,1,20,21]]]],[5929,6131,6133,6266,6270,6300,8959,10438,10639,10735,11250,11795,11868,12353,12356,15561,19731,21970,22493,22983,23072]]],["eastward",[18,18,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[3,2,2,2,4,[[119,1,1,2,3],[148,1,1,3,4]]],[4,3,3,4,7,[[155,2,2,4,6],[156,1,1,6,7]]],[5,6,6,7,13,[[197,1,1,7,8],[199,3,3,8,11],[202,1,1,11,12],[206,1,1,12,13]]],[12,4,4,13,17,[[342,1,1,13,14],[344,1,1,14,15],[346,1,1,15,16],[363,1,1,16,17]]],[15,1,1,17,18,[[424,1,1,17,18]]]],[2285,2646,3730,4737,4992,5002,5053,6115,6162,6181,6186,6271,6380,10437,10563,10633,11091,12661]]],["end",[1,1,[[13,1,1,0,1,[[371,1,1,0,1]]]],[11280]]],["rising",[1,1,[[5,1,1,0,1,[[198,1,1,0,1]]]],[6131]]],["side",[2,2,[[12,2,2,0,2,[[341,1,1,0,1],[343,1,1,1,2]]]],[10424,10532]]],["sun",[1,1,[[3,1,1,0,1,[[118,1,1,0,1]]]],[3661]]],["sunrising",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4831]]]]},{"k":"H4218","v":[["sown",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18011]]]]},{"k":"H4219","v":[["*",[32,32,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[3,15,15,2,17,[[120,1,1,2,3],[123,14,14,3,17]]],[10,3,3,17,20,[[297,3,3,17,20]]],[11,2,2,20,22,[[324,1,1,20,21],[337,1,1,21,22]]],[12,1,1,22,23,[[365,1,1,22,23]]],[13,3,3,23,26,[[370,3,3,23,26]]],[15,1,1,26,27,[[419,1,1,26,27]]],[23,2,2,27,29,[[796,2,2,27,29]]],[29,1,1,29,30,[[884,1,1,29,30]]],[37,2,2,30,32,[[919,1,1,30,31],[924,1,1,31,32]]]],[2275,2636,3757,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3934,3935,8974,8979,8984,9863,10237,11160,11254,11257,11268,12490,20294,20295,22456,23014,23088]]],["basons",[11,11,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]],[10,3,3,3,6,[[297,3,3,3,6]]],[11,1,1,6,7,[[324,1,1,6,7]]],[13,3,3,7,10,[[370,3,3,7,10]]],[15,1,1,10,11,[[419,1,1,10,11]]]],[2275,2636,3757,8974,8979,8984,9863,11254,11257,11268,12490]]],["bowl",[13,13,[[3,13,13,0,13,[[123,13,13,0,13]]]],[3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935]]],["bowls",[8,8,[[3,1,1,0,1,[[123,1,1,0,1]]],[11,1,1,1,2,[[337,1,1,1,2]]],[12,1,1,2,3,[[365,1,1,2,3]]],[23,2,2,3,5,[[796,2,2,3,5]]],[29,1,1,5,6,[[884,1,1,5,6]]],[37,2,2,6,8,[[919,1,1,6,7],[924,1,1,7,8]]]],[3934,10237,11160,20294,20295,22456,23014,23088]]]]},{"k":"H4220","v":[["*",[2,2,[[18,1,1,0,1,[[543,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]]],[14888,17756]]],["fatlings",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14888]]],["ones",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17756]]]]},{"k":"H4221","v":[["marrow",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13379]]]]},{"k":"H4222","v":[["*",[3,3,[[18,1,1,0,1,[[575,1,1,0,1]]],[22,1,1,1,2,[[733,1,1,1,2]]],[25,1,1,2,3,[[826,1,1,2,3]]]],[15498,18752,21089]]],["clap",[2,2,[[18,1,1,0,1,[[575,1,1,0,1]]],[22,1,1,1,2,[[733,1,1,1,2]]]],[15498,18752]]],["clapped",[1,1,[[25,1,1,0,1,[[826,1,1,0,1]]]],[21089]]]]},{"k":"H4223","v":[["*",[4,4,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,3,3,1,4,[[851,2,2,1,3],[853,1,1,3,4]]]],[12162,21792,21793,21872]]],["hanged",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12162]]],["smote",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21792,21793]]],["stay",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21872]]]]},{"k":"H4224","v":[["*",[2,2,[[8,1,1,0,1,[[258,1,1,0,1]]],[22,1,1,1,2,[[710,1,1,1,2]]]],[7833,18261]]],["place",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18261]]],["places",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7833]]]]},{"k":"H4225","v":[["coupling",[8,7,[[1,8,7,0,7,[[75,2,2,0,2],[77,1,1,2,3],[85,4,3,3,6],[88,1,1,6,7]]]],[2239,2240,2320,2577,2578,2583,2684]]]]},{"k":"H4226","v":[["*",[2,2,[[12,1,1,0,1,[[359,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]]],[10967,11944]]],["couplings",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11944]]],["joinings",[1,1,[[12,1,1,0,1,[[359,1,1,0,1]]]],[10967]]]]},{"k":"H4227","v":[["pan",[5,5,[[2,3,3,0,3,[[91,1,1,0,1],[95,1,1,1,2],[96,1,1,2,3]]],[12,1,1,3,4,[[360,1,1,3,4]]],[25,1,1,4,5,[[805,1,1,4,5]]]],[2767,2870,2888,11012,20532]]]]},{"k":"H4228","v":[["girding",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17731]]]]},{"k":"H4229","v":[["*",[36,32,[[0,4,3,0,3,[[5,1,1,0,1],[6,3,2,1,3]]],[1,4,3,3,6,[[66,2,1,3,4],[81,2,2,4,6]]],[3,2,2,6,8,[[121,1,1,6,7],[150,1,1,7,8]]],[4,4,4,8,12,[[161,1,1,8,9],[177,2,2,9,11],[181,1,1,11,12]]],[6,1,1,12,13,[[231,1,1,12,13]]],[11,4,2,13,15,[[326,1,1,13,14],[333,3,1,14,15]]],[15,2,2,15,17,[[416,1,1,15,16],[425,1,1,16,17]]],[18,6,6,17,23,[[486,1,1,17,18],[528,2,2,18,20],[546,1,1,20,21],[586,2,2,21,23]]],[19,3,3,23,26,[[633,1,1,23,24],[657,1,1,24,25],[658,1,1,25,26]]],[22,4,4,26,30,[[703,2,2,26,28],[721,1,1,28,29],[722,1,1,29,30]]],[23,1,1,30,31,[[762,1,1,30,31]]],[25,1,1,31,32,[[807,1,1,31,32]]]],[144,163,182,1997,2470,2471,3815,4827,5171,5553,5566,5699,7119,9923,10132,12364,12685,14026,14692,14700,14963,15768,15769,16573,17271,17287,18124,18126,18530,18555,19407,20569]]],["+",[10,8,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,2,1,1,2,[[66,2,1,1,2]]],[4,3,3,2,5,[[161,1,1,2,3],[177,1,1,3,4],[181,1,1,4,5]]],[11,3,2,5,7,[[326,1,1,5,6],[333,2,1,6,7]]],[15,1,1,7,8,[[425,1,1,7,8]]]],[144,1997,5171,5566,5699,9923,10132,12685]]],["abolished",[1,1,[[25,1,1,0,1,[[807,1,1,0,1]]]],[20569]]],["away",[2,2,[[19,1,1,0,1,[[633,1,1,0,1]]],[22,1,1,1,2,[[703,1,1,1,2]]]],[16573,18126]]],["blot",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2470]]],["blotted",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14963]]],["destroy",[1,1,[[0,1,1,0,1,[[6,1,1,0,1]]]],[163]]],["destroyed",[3,2,[[0,2,1,0,1,[[6,2,1,0,1]]],[6,1,1,1,2,[[231,1,1,1,2]]]],[182,7119]]],["destroyeth",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17287]]],["marrow",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18124]]],["out",[12,12,[[1,1,1,0,1,[[81,1,1,0,1]]],[3,1,1,1,2,[[121,1,1,1,2]]],[4,1,1,2,3,[[177,1,1,2,3]]],[15,1,1,3,4,[[416,1,1,3,4]]],[18,5,5,4,9,[[486,1,1,4,5],[528,2,2,5,7],[586,2,2,7,9]]],[22,2,2,9,11,[[721,1,1,9,10],[722,1,1,10,11]]],[23,1,1,11,12,[[762,1,1,11,12]]]],[2471,3815,5553,12364,14026,14692,14700,15768,15769,18530,18555,19407]]],["reach",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4827]]],["wipeth",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17271]]],["wiping",[1,1,[[11,1,1,0,1,[[333,1,1,0,1]]]],[10132]]]]},{"k":"H4230","v":[["compass",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18546]]]]},{"k":"H4231","v":[["haven",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15729]]]]},{"k":"H4232","v":[["Mehujael",[2,1,[[0,2,1,0,1,[[3,2,1,0,1]]]],[97]]]]},{"k":"H4233","v":[["Mahavite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10719]]]]},{"k":"H4234","v":[["*",[6,6,[[18,3,3,0,3,[[507,1,1,0,1],[626,1,1,1,2],[627,1,1,2,3]]],[23,2,2,3,5,[[775,2,2,3,5]]],[24,1,1,5,6,[[801,1,1,5,6]]]],[14330,16388,16398,19695,19704,20457]]],["dance",[4,4,[[18,2,2,0,2,[[626,1,1,0,1],[627,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]],[24,1,1,3,4,[[801,1,1,3,4]]]],[16388,16398,19704,20457]]],["dances",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19695]]],["dancing",[1,1,[[18,1,1,0,1,[[507,1,1,0,1]]]],[14330]]]]},{"k":"H4235","v":[["Mahol",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8875]]]]},{"k":"H4236","v":[["vision",[4,4,[[0,1,1,0,1,[[14,1,1,0,1]]],[3,2,2,1,3,[[140,2,2,1,3]]],[25,1,1,3,4,[[814,1,1,3,4]]]],[361,4450,4462,20715]]]]},{"k":"H4237","v":[["light",[4,2,[[10,4,2,0,2,[[297,4,2,0,2]]]],[8938,8939]]]]},{"k":"H4238","v":[["Mahazioth",[2,2,[[12,2,2,0,2,[[362,2,2,0,2]]]],[11050,11076]]]]},{"k":"H4239","v":[["engines",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21109]]]]},{"k":"H4240","v":[["Mehida",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12079,12474]]]]},{"k":"H4241","v":[["*",[8,8,[[0,1,1,0,1,[[44,1,1,0,1]]],[2,2,2,1,3,[[102,2,2,1,3]]],[6,2,2,3,5,[[216,1,1,3,4],[227,1,1,4,5]]],[13,1,1,5,6,[[380,1,1,5,6]]],[14,2,2,6,8,[[411,2,2,6,8]]]],[1363,3062,3076,6658,6990,11488,12245,12246]]],["life",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1363]]],["quick",[2,2,[[2,2,2,0,2,[[102,2,2,0,2]]]],[3062,3076]]],["recover",[1,1,[[13,1,1,0,1,[[380,1,1,0,1]]]],[11488]]],["reviving",[2,2,[[14,2,2,0,2,[[411,2,2,0,2]]]],[12245,12246]]],["sustenance",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6658]]],["victuals",[1,1,[[6,1,1,0,1,[[227,1,1,0,1]]]],[6990]]]]},{"k":"H4242","v":[["*",[15,15,[[4,1,1,0,1,[[175,1,1,0,1]]],[9,1,1,1,2,[[290,1,1,1,2]]],[10,2,2,2,4,[[300,1,1,2,3],[311,1,1,3,4]]],[13,1,1,4,5,[[367,1,1,4,5]]],[17,1,1,5,6,[[463,1,1,5,6]]],[18,1,1,6,7,[[521,1,1,6,7]]],[19,2,2,7,9,[[644,1,1,7,8],[654,1,1,8,9]]],[22,2,2,9,11,[[723,1,1,9,10],[733,1,1,10,11]]],[23,1,1,11,12,[[759,1,1,11,12]]],[24,1,1,12,13,[[801,1,1,12,13]]],[26,1,1,13,14,[[860,1,1,13,14]]],[32,1,1,14,15,[[895,1,1,14,15]]]],[5518,8716,9107,9453,11210,13519,14583,16889,17195,18574,18741,19328,20446,22075,22619]]],["+",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20446]]],["gain",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22075]]],["hire",[1,1,[[32,1,1,0,1,[[895,1,1,0,1]]]],[22619]]],["price",[11,11,[[4,1,1,0,1,[[175,1,1,0,1]]],[9,1,1,1,2,[[290,1,1,1,2]]],[10,1,1,2,3,[[300,1,1,2,3]]],[13,1,1,3,4,[[367,1,1,3,4]]],[17,1,1,4,5,[[463,1,1,4,5]]],[18,1,1,5,6,[[521,1,1,5,6]]],[19,2,2,6,8,[[644,1,1,6,7],[654,1,1,7,8]]],[22,2,2,8,10,[[723,1,1,8,9],[733,1,1,9,10]]],[23,1,1,10,11,[[759,1,1,10,11]]]],[5518,8716,9107,11210,13519,14583,16889,17195,18574,18741,19328]]],["worth",[1,1,[[10,1,1,0,1,[[311,1,1,0,1]]]],[9453]]]]},{"k":"H4243","v":[["Mehir",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10396]]]]},{"k":"H4244","v":[["*",[5,5,[[3,3,3,0,3,[[142,1,1,0,1],[143,1,1,1,2],[152,1,1,2,3]]],[5,1,1,3,4,[[203,1,1,3,4]]],[12,1,1,4,5,[[344,1,1,4,5]]]],[4522,4555,4890,6278,10553]]],["Mahalah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10553]]],["Mahlah",[4,4,[[3,3,3,0,3,[[142,1,1,0,1],[143,1,1,1,2],[152,1,1,2,3]]],[5,1,1,3,4,[[203,1,1,3,4]]]],[4522,4555,4890,6278]]]]},{"k":"H4245","v":[["*",[6,6,[[1,2,2,0,2,[[64,1,1,0,1],[72,1,1,1,2]]],[10,1,1,2,3,[[298,1,1,2,3]]],[13,2,2,3,5,[[372,1,1,3,4],[387,1,1,4,5]]],[19,1,1,5,6,[[645,1,1,5,6]]]],[1946,2169,9022,11310,11639,16915]]],["+",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2169]]],["disease",[1,1,[[13,1,1,0,1,[[387,1,1,0,1]]]],[11639]]],["diseases",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1946]]],["infirmity",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16915]]],["sickness",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]]],[9022,11310]]]]},{"k":"H4246","v":[["*",[8,8,[[1,2,2,0,2,[[64,1,1,0,1],[81,1,1,1,2]]],[6,2,2,2,4,[[221,1,1,2,3],[231,1,1,3,4]]],[8,3,3,4,7,[[253,1,1,4,5],[256,1,1,5,6],[264,1,1,6,7]]],[21,1,1,7,8,[[676,1,1,7,8]]]],[1940,2457,6863,7123,7682,7783,7972,17627]]],["company",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17627]]],["dances",[5,5,[[1,1,1,0,1,[[64,1,1,0,1]]],[6,2,2,1,3,[[221,1,1,1,2],[231,1,1,2,3]]],[8,2,2,3,5,[[256,1,1,3,4],[264,1,1,4,5]]]],[1940,6863,7123,7783,7972]]],["dancing",[2,2,[[1,1,1,0,1,[[81,1,1,0,1]]],[8,1,1,1,2,[[253,1,1,1,2]]]],[2457,7682]]]]},{"k":"H4247","v":[["caves",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17704]]]]},{"k":"H4248","v":[["*",[4,4,[[7,4,4,0,4,[[232,2,2,0,2],[235,2,2,2,4]]]],[7129,7132,7199,7200]]],["Mahlon",[3,3,[[7,3,3,0,3,[[232,2,2,0,2],[235,1,1,2,3]]]],[7129,7132,7200]]],["Mahlon's",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7199]]]]},{"k":"H4249","v":[["*",[12,11,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,1,1,1,2,[[119,1,1,1,2]]],[12,9,8,2,10,[[343,3,3,2,5],[360,3,2,5,7],[361,3,3,7,10]]],[14,1,1,10,11,[[410,1,1,10,11]]]],[1674,3712,10473,10483,10501,11004,11006,11041,11043,11045,12219]]],["Mahali",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1674]]],["Mahli",[11,10,[[3,1,1,0,1,[[119,1,1,0,1]]],[12,9,8,1,9,[[343,3,3,1,4],[360,3,2,4,6],[361,3,3,6,9]]],[14,1,1,9,10,[[410,1,1,9,10]]]],[3712,10473,10483,10501,11004,11006,11041,11043,11045,12219]]]]},{"k":"H4250","v":[["Mahlites",[2,2,[[3,2,2,0,2,[[119,1,1,0,1],[142,1,1,1,2]]]],[3725,4547]]]]},{"k":"H4251","v":[["diseases",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11702]]]]},{"k":"H4252","v":[["knives",[1,1,[[14,1,1,0,1,[[403,1,1,0,1]]]],[12025]]]]},{"k":"H4253","v":[["locks",[2,2,[[6,2,2,0,2,[[226,2,2,0,2]]]],[6962,6968]]]]},{"k":"H4254","v":[["*",[2,2,[[22,1,1,0,1,[[681,1,1,0,1]]],[37,1,1,1,2,[[913,1,1,1,2]]]],[17729,22916]]],["apparel",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17729]]],["raiment",[1,1,[[37,1,1,0,1,[[913,1,1,0,1]]]],[22916]]]]},{"k":"H4255","v":[["courses",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12169]]]]},{"k":"H4256","v":[["*",[43,37,[[5,3,3,0,3,[[197,1,1,0,1],[198,1,1,1,2],[204,1,1,2,3]]],[8,1,1,3,4,[[258,1,1,3,4]]],[12,26,22,4,26,[[360,1,1,4,5],[361,1,1,5,6],[363,3,3,6,9],[364,18,14,9,23],[365,3,3,23,26]]],[13,11,9,26,35,[[371,1,1,26,27],[374,2,1,27,28],[389,1,1,28,29],[397,5,4,29,33],[401,2,2,33,35]]],[15,1,1,35,36,[[423,1,1,35,36]]],[25,1,1,36,37,[[849,1,1,36,37]]]],[6130,6137,6303,7838,10989,11016,11078,11089,11096,11110,11111,11113,11114,11115,11116,11117,11118,11119,11120,11121,11122,11123,11124,11144,11156,11164,11279,11360,11664,11856,11869,11870,11871,11970,11976,12624,21731]]],["+",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7838]]],["companies",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11144]]],["course",[18,15,[[12,17,14,0,14,[[364,17,14,0,14]]],[13,1,1,14,15,[[371,1,1,14,15]]]],[11110,11111,11113,11114,11115,11116,11117,11118,11119,11120,11121,11122,11123,11124,11279]]],["courses",[14,12,[[12,4,4,0,4,[[360,1,1,0,1],[364,1,1,1,2],[365,2,2,2,4]]],[13,10,8,4,12,[[374,2,1,4,5],[389,1,1,5,6],[397,5,4,6,10],[401,2,2,10,12]]]],[10989,11110,11156,11164,11360,11664,11856,11869,11870,11871,11970,11976]]],["divisions",[8,8,[[5,3,3,0,3,[[197,1,1,0,1],[198,1,1,1,2],[204,1,1,2,3]]],[12,4,4,3,7,[[361,1,1,3,4],[363,3,3,4,7]]],[15,1,1,7,8,[[423,1,1,7,8]]]],[6130,6137,6303,11016,11078,11089,11096,12624]]],["portions",[1,1,[[25,1,1,0,1,[[849,1,1,0,1]]]],[21731]]]]},{"k":"H4257","v":[]},{"k":"H4258","v":[["Mahalath",[2,2,[[0,1,1,0,1,[[27,1,1,0,1]]],[13,1,1,1,2,[[377,1,1,1,2]]]],[782,11432]]]]},{"k":"H4259","v":[["Meholathite",[2,2,[[8,1,1,0,1,[[253,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]]],[7695,8588]]]]},{"k":"H4260","v":[["butter",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14753]]]]},{"k":"H4261","v":[["*",[12,12,[[10,1,1,0,1,[[310,1,1,0,1]]],[13,1,1,1,2,[[402,1,1,1,2]]],[21,1,1,2,3,[[675,1,1,2,3]]],[22,1,1,3,4,[[742,1,1,3,4]]],[24,2,2,4,6,[[797,1,1,4,5],[798,1,1,5,6]]],[25,3,3,6,9,[[825,3,3,6,9]]],[27,2,2,9,11,[[870,2,2,9,11]]],[28,1,1,11,12,[[878,1,1,11,12]]]],[9414,12012,17614,18896,20320,20336,21072,21077,21081,22214,22224,22348]]],["beloved",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22224]]],["desire",[3,3,[[25,3,3,0,3,[[825,3,3,0,3]]]],[21072,21077,21081]]],["goodly",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[12012]]],["lovely",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17614]]],["pleasant",[3,3,[[10,1,1,0,1,[[310,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]],[27,1,1,2,3,[[870,1,1,2,3]]]],[9414,20336,22214]]],["things",[3,3,[[22,1,1,0,1,[[742,1,1,0,1]]],[24,1,1,1,2,[[797,1,1,1,2]]],[28,1,1,2,3,[[878,1,1,2,3]]]],[18896,20320,22348]]]]},{"k":"H4262","v":[["things",[2,2,[[24,2,2,0,2,[[797,2,2,0,2]]]],[20317,20321]]]]},{"k":"H4263","v":[["pitieth",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21077]]]]},{"k":"H4264","v":[["*",[216,190,[[0,8,7,0,7,[[31,6,5,0,5],[32,1,1,5,6],[49,1,1,6,7]]],[1,19,14,7,21,[[63,5,3,7,10],[65,2,1,10,11],[68,2,2,11,13],[78,1,1,13,14],[81,4,4,14,18],[82,4,2,18,20],[85,1,1,20,21]]],[2,18,17,21,38,[[93,2,2,21,23],[95,1,1,23,24],[97,1,1,24,25],[98,1,1,25,26],[99,2,2,26,28],[102,1,1,28,29],[103,2,2,29,31],[105,3,3,31,34],[106,2,1,34,35],[113,3,3,35,38]]],[3,49,44,38,82,[[117,1,1,38,39],[118,11,10,39,49],[120,2,2,49,51],[121,4,3,51,54],[126,9,8,54,62],[127,9,7,62,69],[128,2,2,69,71],[129,1,1,71,72],[130,1,1,72,73],[131,2,2,73,75],[135,3,3,75,78],[147,4,4,78,82]]],[4,10,8,82,90,[[154,2,2,82,84],[175,7,5,84,89],[181,1,1,89,90]]],[5,17,16,90,106,[[187,1,1,90,91],[189,1,1,91,92],[191,1,1,92,93],[192,5,4,93,97],[194,1,1,97,98],[195,1,1,98,99],[196,5,5,99,104],[197,1,1,104,105],[204,1,1,105,106]]],[6,28,21,106,127,[[214,3,2,106,108],[217,17,13,108,121],[218,5,3,121,124],[223,1,1,124,125],[231,2,2,125,127]]],[8,22,20,127,147,[[239,5,4,127,131],[246,1,1,131,132],[248,1,1,132,133],[249,3,3,133,136],[252,5,5,136,141],[261,1,1,141,142],[263,4,3,142,145],[264,2,2,145,147]]],[9,4,4,147,151,[[267,2,2,147,149],[271,1,1,149,150],[289,1,1,150,151]]],[10,3,3,151,154,[[306,1,1,151,152],[312,2,2,152,154]]],[11,15,14,154,168,[[315,2,2,154,156],[317,1,1,156,157],[318,1,1,157,158],[319,10,9,158,167],[331,1,1,167,168]]],[12,8,7,168,175,[[346,2,2,168,170],[348,2,2,170,172],[349,2,1,172,173],[351,2,2,173,175]]],[13,5,5,175,180,[[380,1,1,175,176],[384,1,1,176,177],[388,1,1,177,178],[397,1,1,178,179],[398,1,1,179,180]]],[18,3,3,180,183,[[504,1,1,180,181],[555,1,1,181,182],[583,1,1,182,183]]],[21,1,1,183,184,[[676,1,1,183,184]]],[22,1,1,184,185,[[715,1,1,184,185]]],[25,2,2,185,187,[[802,1,1,185,186],[805,1,1,186,187]]],[28,1,1,187,188,[[877,1,1,187,188]]],[29,1,1,188,189,[[882,1,1,188,189]]],[37,1,1,189,190,[[924,1,1,189,190]]]],[930,935,936,938,949,968,1515,1908,1909,1913,1960,2042,2043,2350,2455,2457,2464,2465,2480,2484,2572,2807,2816,2860,2934,2964,2981,2982,3098,3114,3119,3227,3228,3229,3238,3456,3460,3469,3656,3661,3667,3668,3674,3675,3676,3682,3683,3689,3690,3748,3758,3794,3795,3796,3990,3993,3994,4002,4006,4010,4013,4022,4025,4033,4050,4051,4054,4055,4056,4073,4074,4094,4152,4188,4189,4292,4296,4298,4676,4677,4683,4688,4952,4953,5509,5510,5511,5512,5514,5690,5862,5895,5942,5960,5963,5967,5972,6015,6043,6069,6070,6079,6085,6107,6111,6302,6614,6615,6695,6702,6703,6704,6705,6707,6708,6709,6711,6712,6713,6715,6716,6729,6730,6731,6909,7110,7114,7300,7302,7303,7304,7456,7502,7523,7527,7529,7619,7622,7635,7664,7671,7911,7943,7947,7961,7968,7973,8024,8025,8156,8669,9299,9514,9516,9585,9600,9662,9698,9711,9712,9713,9714,9715,9717,9719,9721,9723,10096,10633,10634,10688,10691,10742,10789,10790,11488,11575,11645,11856,11896,14288,15141,15667,17627,18388,20488,20531,22322,22420,23083]]],["+",[3,3,[[8,2,2,0,2,[[248,1,1,0,1],[252,1,1,1,2]]],[9,1,1,2,3,[[267,1,1,2,3]]]],[7502,7622,8025]]],["armies",[3,3,[[8,2,2,0,2,[[252,1,1,0,1],[264,1,1,1,2]]],[21,1,1,2,3,[[676,1,1,2,3]]]],[7619,7968,17627]]],["bands",[2,2,[[0,2,2,0,2,[[31,2,2,0,2]]]],[935,938]]],["battle",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7943]]],["camp",[126,114,[[1,16,13,0,13,[[63,3,2,0,2],[65,1,1,2,3],[68,2,2,3,5],[78,1,1,5,6],[81,4,4,6,10],[82,4,2,10,12],[85,1,1,12,13]]],[2,18,17,13,30,[[93,2,2,13,15],[95,1,1,15,16],[97,1,1,16,17],[98,1,1,17,18],[99,2,2,18,20],[102,1,1,20,21],[103,2,2,21,23],[105,3,3,23,26],[106,2,1,26,27],[113,3,3,27,30]]],[3,42,39,30,69,[[117,1,1,30,31],[118,10,9,31,40],[120,2,2,40,42],[121,3,3,42,45],[126,5,5,45,50],[127,9,7,50,57],[128,2,2,57,59],[130,1,1,59,60],[131,2,2,60,62],[135,3,3,62,65],[147,4,4,65,69]]],[4,7,5,69,74,[[175,6,4,69,73],[181,1,1,73,74]]],[5,11,10,74,84,[[191,1,1,74,75],[192,5,4,75,79],[195,1,1,79,80],[196,4,4,80,84]]],[6,7,7,84,91,[[217,4,4,84,88],[223,1,1,88,89],[231,2,2,89,91]]],[8,8,7,91,98,[[239,5,4,91,95],[249,1,1,95,96],[252,1,1,96,97],[261,1,1,97,98]]],[9,1,1,98,99,[[267,1,1,98,99]]],[10,1,1,99,100,[[306,1,1,99,100]]],[11,8,7,100,107,[[315,1,1,100,101],[319,6,5,101,106],[331,1,1,106,107]]],[13,2,2,107,109,[[388,1,1,107,108],[398,1,1,108,109]]],[18,2,2,109,111,[[555,1,1,109,110],[583,1,1,110,111]]],[22,1,1,111,112,[[715,1,1,111,112]]],[25,1,1,112,113,[[805,1,1,112,113]]],[28,1,1,113,114,[[877,1,1,113,114]]]],[1908,1909,1960,2042,2043,2350,2455,2457,2464,2465,2480,2484,2572,2807,2816,2860,2934,2964,2981,2982,3098,3114,3119,3227,3228,3229,3238,3456,3460,3469,3656,3661,3667,3668,3674,3675,3676,3682,3683,3689,3748,3758,3794,3795,3796,4002,4006,4010,4013,4022,4025,4033,4050,4051,4054,4055,4056,4073,4074,4152,4188,4189,4292,4296,4298,4676,4677,4683,4688,5510,5511,5512,5514,5690,5942,5960,5963,5967,5972,6043,6070,6079,6085,6107,6711,6712,6713,6715,6909,7110,7114,7300,7302,7303,7304,7529,7635,7911,8024,9299,9600,9712,9714,9715,9717,9719,10096,11645,11896,15141,15667,18388,20531,22322]]],["camps",[7,7,[[3,6,6,0,6,[[118,1,1,0,1],[121,1,1,1,2],[126,4,4,2,6]]],[29,1,1,6,7,[[882,1,1,6,7]]]],[3690,3795,3990,3993,3994,4013,22420]]],["companies",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10633]]],["company",[5,4,[[0,4,3,0,3,[[31,3,2,0,2],[49,1,1,2,3]]],[11,1,1,3,4,[[317,1,1,3,4]]]],[936,949,1515,9662]]],["drove",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[968]]],["host",[57,50,[[0,1,1,0,1,[[31,1,1,0,1]]],[1,3,2,1,3,[[63,2,1,1,2],[65,1,1,2,3]]],[4,3,3,3,6,[[154,2,2,3,5],[175,1,1,5,6]]],[5,4,4,6,10,[[187,1,1,6,7],[189,1,1,7,8],[194,1,1,8,9],[204,1,1,9,10]]],[6,19,14,10,24,[[214,3,2,10,12],[217,13,10,12,22],[218,3,2,22,24]]],[8,7,7,24,31,[[246,1,1,24,25],[249,2,2,25,27],[252,1,1,27,28],[263,2,2,28,30],[264,1,1,30,31]]],[9,2,2,31,33,[[271,1,1,31,32],[289,1,1,32,33]]],[10,2,2,33,35,[[312,2,2,33,35]]],[11,5,5,35,40,[[315,1,1,35,36],[318,1,1,36,37],[319,3,3,37,40]]],[12,7,6,40,46,[[346,1,1,40,41],[348,2,2,41,43],[349,2,1,43,44],[351,2,2,44,46]]],[13,2,2,46,48,[[380,1,1,46,47],[384,1,1,47,48]]],[18,1,1,48,49,[[504,1,1,48,49]]],[25,1,1,49,50,[[802,1,1,49,50]]]],[930,1913,1960,4952,4953,5509,5862,5895,6015,6302,6614,6615,6695,6702,6703,6704,6705,6707,6708,6709,6715,6716,6730,6731,7456,7523,7527,7664,7947,7961,7973,8156,8669,9514,9516,9585,9698,9711,9713,9721,10634,10688,10691,10742,10789,10790,11488,11575,14288,20488]]],["hosts",[4,3,[[5,2,2,0,2,[[196,1,1,0,1],[197,1,1,1,2]]],[6,2,1,2,3,[[218,2,1,2,3]]]],[6069,6111,6729]]],["tents",[5,5,[[3,1,1,0,1,[[129,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[11,1,1,2,3,[[319,1,1,2,3]]],[13,1,1,3,4,[[397,1,1,3,4]]],[37,1,1,4,5,[[924,1,1,4,5]]]],[4094,7671,9723,11856,23083]]],["together",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7943]]]]},{"k":"H4265","v":[["Mahanehdan",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7005]]]]},{"k":"H4266","v":[["*",[13,13,[[0,1,1,0,1,[[31,1,1,0,1]]],[5,3,3,1,4,[[199,2,2,1,3],[207,1,1,3,4]]],[9,6,6,4,10,[[268,3,3,4,7],[283,2,2,7,9],[285,1,1,9,10]]],[10,2,2,10,12,[[292,1,1,10,11],[294,1,1,11,12]]],[12,1,1,12,13,[[343,1,1,12,13]]]],[930,6180,6184,6419,8057,8061,8078,8473,8476,8543,8778,8858,10534]]],["+",[3,3,[[5,2,2,0,2,[[199,2,2,0,2]]],[9,1,1,2,3,[[268,1,1,2,3]]]],[6180,6184,8061]]],["Mahanaim",[10,10,[[0,1,1,0,1,[[31,1,1,0,1]]],[5,1,1,1,2,[[207,1,1,1,2]]],[9,5,5,2,7,[[268,2,2,2,4],[283,2,2,4,6],[285,1,1,6,7]]],[10,2,2,7,9,[[292,1,1,7,8],[294,1,1,8,9]]],[12,1,1,9,10,[[343,1,1,9,10]]]],[930,6419,8057,8078,8473,8476,8543,8778,8858,10534]]]]},{"k":"H4267","v":[["strangling",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13023]]]]},{"k":"H4268","v":[["*",[20,20,[[17,1,1,0,1,[[459,1,1,0,1]]],[18,12,12,1,13,[[491,1,1,1,2],[523,1,1,2,3],[538,1,1,3,4],[539,2,2,4,6],[548,1,1,6,7],[550,1,1,7,8],[568,2,2,8,10],[571,1,1,10,11],[581,1,1,11,12],[619,1,1,12,13]]],[19,1,1,13,14,[[641,1,1,13,14]]],[22,4,4,14,18,[[682,1,1,14,15],[703,1,1,15,16],[706,2,2,16,18]]],[23,1,1,18,19,[[761,1,1,18,19]]],[28,1,1,19,20,[[878,1,1,19,20]]]],[13444,14086,14615,14822,14834,14835,14983,15048,15397,15404,15453,15589,16291,16798,17739,18122,18179,18181,19374,22359]]],["hope",[2,2,[[23,1,1,0,1,[[761,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]]],[19374,22359]]],["refuge",[15,15,[[18,10,10,0,10,[[491,1,1,0,1],[523,1,1,1,2],[539,2,2,2,4],[548,1,1,4,5],[568,2,2,5,7],[571,1,1,7,8],[581,1,1,8,9],[619,1,1,9,10]]],[19,1,1,10,11,[[641,1,1,10,11]]],[22,4,4,11,15,[[682,1,1,11,12],[703,1,1,12,13],[706,2,2,13,15]]]],[14086,14615,14834,14835,14983,15397,15404,15453,15589,16291,16798,17739,18122,18179,18181]]],["shelter",[2,2,[[17,1,1,0,1,[[459,1,1,0,1]]],[18,1,1,1,2,[[538,1,1,1,2]]]],[13444,14822]]],["trust",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15048]]]]},{"k":"H4269","v":[["bridle",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14513]]]]},{"k":"H4270","v":[["*",[13,13,[[4,1,1,0,1,[[167,1,1,0,1]]],[6,3,3,1,4,[[228,1,1,1,2],[229,2,2,2,4]]],[18,1,1,4,5,[[511,1,1,4,5]]],[19,8,8,5,13,[[633,1,1,5,6],[638,1,1,6,7],[641,1,1,7,8],[648,2,2,8,10],[649,1,1,10,11],[651,1,1,11,12],[655,1,1,12,13]]]],[5327,7003,7043,7044,14397,16551,16712,16795,16989,17001,17031,17113,17223]]],["lack",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17223]]],["need",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5327]]],["penury",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16795]]],["poor",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17001]]],["poverty",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16712]]],["want",[7,7,[[6,2,2,0,2,[[228,1,1,0,1],[229,1,1,1,2]]],[18,1,1,2,3,[[511,1,1,2,3]]],[19,4,4,3,7,[[633,1,1,3,4],[648,1,1,4,5],[649,1,1,5,6],[651,1,1,6,7]]]],[7003,7043,14397,16551,16989,17031,17113]]],["wants",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7044]]]]},{"k":"H4271","v":[["Maaseiah",[2,2,[[23,2,2,0,2,[[776,1,1,0,1],[795,1,1,1,2]]]],[19743,20271]]]]},{"k":"H4272","v":[["*",[15,14,[[3,3,2,0,2,[[140,3,2,0,2]]],[4,2,2,2,4,[[184,1,1,2,3],[185,1,1,3,4]]],[6,1,1,4,5,[[215,1,1,4,5]]],[9,1,1,5,6,[[288,1,1,5,6]]],[17,2,2,6,8,[[440,1,1,6,7],[461,1,1,7,8]]],[18,5,5,8,13,[[495,1,1,8,9],[545,2,2,9,11],[587,2,2,11,13]]],[34,1,1,13,14,[[905,1,1,13,14]]]],[4454,4463,5797,5821,6649,8641,12969,13479,14156,14921,14923,15791,15792,22781]]],["destroy",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4463]]],["dipped",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14923]]],["pierced",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6649]]],["smite",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4463]]],["through",[4,4,[[3,1,1,0,1,[[140,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[17,1,1,2,3,[[461,1,1,2,3]]],[18,1,1,3,4,[[587,1,1,3,4]]]],[4454,5821,13479,15791]]],["wound",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,2,2,1,3,[[545,1,1,1,2],[587,1,1,2,3]]]],[5797,14921,15792]]],["wounded",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8641,14156]]],["woundedst",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22781]]],["woundeth",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12969]]]]},{"k":"H4273","v":[["stroke",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18243]]]]},{"k":"H4274","v":[["*",[3,3,[[11,2,2,0,2,[[324,1,1,0,1],[334,1,1,1,2]]],[13,1,1,2,3,[[400,1,1,2,3]]]],[9862,10151,11944]]],["hewed",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9862]]],["hewn",[2,2,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]]],[10151,11944]]]]},{"k":"H4275","v":[["half",[2,2,[[3,2,2,0,2,[[147,2,2,0,2]]]],[4700,4707]]]]},{"k":"H4276","v":[["*",[16,14,[[1,5,4,0,4,[[79,4,3,0,3],[87,1,1,3,4]]],[2,2,1,4,5,[[95,2,1,4,5]]],[3,4,4,5,9,[[147,4,4,5,9]]],[5,1,1,9,10,[[207,1,1,9,10]]],[10,1,1,10,11,[[306,1,1,10,11]]],[12,2,2,11,13,[[343,2,2,11,13]]],[15,1,1,13,14,[[420,1,1,13,14]]]],[2395,2397,2405,2659,2869,4693,4694,4706,4711,6406,9292,10515,10524,12496]]],["+",[7,7,[[1,1,1,0,1,[[79,1,1,0,1]]],[3,4,4,1,5,[[147,4,4,1,5]]],[5,1,1,5,6,[[207,1,1,5,6]]],[15,1,1,6,7,[[420,1,1,6,7]]]],[2397,4693,4694,4706,4711,6406,12496]]],["half",[8,6,[[1,3,2,0,2,[[79,2,1,0,1],[87,1,1,1,2]]],[2,2,1,2,3,[[95,2,1,2,3]]],[10,1,1,3,4,[[306,1,1,3,4]]],[12,2,2,4,6,[[343,2,2,4,6]]]],[2395,2659,2869,9292,10515,10524]]],["much",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2405]]]]},{"k":"H4277","v":[["off",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6649]]]]},{"k":"H4278","v":[["places",[1,1,[[18,1,1,0,1,[[572,1,1,0,1]]]],[15458]]]]},{"k":"H4279","v":[["*",[52,52,[[0,1,1,0,1,[[29,1,1,0,1]]],[1,11,11,1,12,[[57,3,3,1,4],[58,2,2,4,6],[59,1,1,6,7],[62,1,1,7,8],[65,1,1,8,9],[66,1,1,9,10],[68,1,1,10,11],[81,1,1,11,12]]],[3,4,4,12,16,[[127,1,1,12,13],[130,1,1,13,14],[132,2,2,14,16]]],[4,1,1,16,17,[[158,1,1,16,17]]],[5,9,9,17,26,[[189,1,1,17,18],[190,2,2,18,20],[193,1,1,20,21],[197,1,1,21,22],[208,4,4,22,26]]],[6,2,2,26,28,[[229,1,1,26,27],[230,1,1,27,28]]],[8,8,8,28,36,[[244,1,1,28,29],[246,2,2,29,31],[254,1,1,31,32],[255,3,3,32,35],[263,1,1,35,36]]],[9,1,1,36,37,[[277,1,1,36,37]]],[10,2,2,37,39,[[309,1,1,37,38],[310,1,1,38,39]]],[11,4,4,39,43,[[318,1,1,39,40],[319,2,2,40,42],[322,1,1,42,43]]],[13,2,2,43,45,[[386,2,2,43,45]]],[16,3,3,45,48,[[430,2,2,45,47],[434,1,1,47,48]]],[19,2,2,48,50,[[630,1,1,48,49],[654,1,1,49,50]]],[22,2,2,50,52,[[700,1,1,50,51],[734,1,1,51,52]]]],[863,1720,1733,1739,1747,1760,1781,1881,1970,1992,2036,2443,4042,4133,4201,4210,5106,5898,5916,5931,5989,6113,6444,6450,6453,6454,7033,7082,7407,7454,7455,7717,7735,7742,7748,7961,8271,9389,9414,9702,9708,9725,9799,11603,11604,12787,12791,12847,16483,17170,18065,18765]]],["+",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17170]]],["come",[8,8,[[0,1,1,0,1,[[29,1,1,0,1]]],[1,1,1,1,2,[[62,1,1,1,2]]],[4,1,1,2,3,[[158,1,1,2,3]]],[5,5,5,3,8,[[190,2,2,3,5],[208,3,3,5,8]]]],[863,1881,5106,5916,5931,6450,6453,6454]]],["morrow",[43,43,[[1,10,10,0,10,[[57,3,3,0,3],[58,2,2,3,5],[59,1,1,5,6],[65,1,1,6,7],[66,1,1,7,8],[68,1,1,8,9],[81,1,1,9,10]]],[3,4,4,10,14,[[127,1,1,10,11],[130,1,1,11,12],[132,2,2,12,14]]],[5,4,4,14,18,[[189,1,1,14,15],[193,1,1,15,16],[197,1,1,16,17],[208,1,1,17,18]]],[6,2,2,18,20,[[229,1,1,18,19],[230,1,1,19,20]]],[8,8,8,20,28,[[244,1,1,20,21],[246,2,2,21,23],[254,1,1,23,24],[255,3,3,24,27],[263,1,1,27,28]]],[9,1,1,28,29,[[277,1,1,28,29]]],[10,2,2,29,31,[[309,1,1,29,30],[310,1,1,30,31]]],[11,4,4,31,35,[[318,1,1,31,32],[319,2,2,32,34],[322,1,1,34,35]]],[13,2,2,35,37,[[386,2,2,35,37]]],[16,3,3,37,40,[[430,2,2,37,39],[434,1,1,39,40]]],[19,1,1,40,41,[[630,1,1,40,41]]],[22,2,2,41,43,[[700,1,1,41,42],[734,1,1,42,43]]]],[1720,1733,1739,1747,1760,1781,1970,1992,2036,2443,4042,4133,4201,4210,5898,5989,6113,6444,7033,7082,7407,7454,7455,7717,7735,7742,7748,7961,8271,9389,9414,9702,9708,9725,9799,11603,11604,12787,12791,12847,16483,18065,18765]]]]},{"k":"H4280","v":[]},{"k":"H4281","v":[["*",[2,2,[[8,2,2,0,2,[[248,2,2,0,2]]]],[7505,7506]]],["mattock",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7505]]],["mattocks",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7506]]]]},{"k":"H4282","v":[["share",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7505]]]]},{"k":"H4283","v":[["*",[32,32,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,4,4,1,5,[[58,1,1,1,2],[67,1,1,2,3],[81,2,2,3,5]]],[2,5,5,5,10,[[96,1,1,5,6],[108,1,1,6,7],[112,3,3,7,10]]],[3,4,4,10,14,[[127,1,1,10,11],[132,1,1,11,12],[133,1,1,12,13],[149,1,1,13,14]]],[5,2,2,14,16,[[191,2,2,14,16]]],[6,3,3,16,19,[[216,1,1,16,17],[219,1,1,17,18],[231,1,1,18,19]]],[8,7,7,19,26,[[240,2,2,19,21],[246,1,1,21,22],[253,1,1,22,23],[255,1,1,23,24],[265,1,1,24,25],[266,1,1,25,26]]],[9,1,1,26,27,[[277,1,1,26,27]]],[11,1,1,27,28,[[320,1,1,27,28]]],[12,2,2,28,30,[[347,1,1,28,29],[366,1,1,29,30]]],[23,1,1,30,31,[[764,1,1,30,31]]],[31,1,1,31,32,[[892,1,1,31,32]]]],[491,1748,2012,2444,2468,2895,3287,3413,3417,3418,4056,4235,4252,4763,5945,5946,6692,6796,7106,7322,7323,7456,7686,7757,7995,8017,8271,9742,10667,11185,19425,22575]]],["+",[27,27,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,4,4,1,5,[[58,1,1,1,2],[67,1,1,2,3],[81,2,2,3,5]]],[2,5,5,5,10,[[96,1,1,5,6],[108,1,1,6,7],[112,3,3,7,10]]],[3,3,3,10,13,[[132,1,1,10,11],[133,1,1,11,12],[149,1,1,12,13]]],[5,2,2,13,15,[[191,2,2,13,15]]],[6,3,3,15,18,[[216,1,1,15,16],[219,1,1,16,17],[231,1,1,17,18]]],[8,6,6,18,24,[[240,2,2,18,20],[246,1,1,20,21],[253,1,1,21,22],[255,1,1,22,23],[266,1,1,23,24]]],[9,1,1,24,25,[[277,1,1,24,25]]],[11,1,1,25,26,[[320,1,1,25,26]]],[23,1,1,26,27,[[764,1,1,26,27]]]],[491,1748,2012,2444,2468,2895,3287,3413,3417,3418,4235,4252,4763,5945,5946,6692,6796,7106,7322,7323,7456,7686,7757,8017,8271,9742,19425]]],["day",[2,2,[[8,1,1,0,1,[[265,1,1,0,1]]],[31,1,1,1,2,[[892,1,1,1,2]]]],[7995,22575]]],["morrow",[2,2,[[12,2,2,0,2,[[347,1,1,0,1],[366,1,1,1,2]]]],[10667,11185]]],["next",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4056]]]]},{"k":"H4284","v":[["*",[56,52,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,4,4,1,5,[[80,1,1,1,2],[84,3,3,2,5]]],[9,1,1,5,6,[[280,1,1,5,6]]],[12,2,2,6,8,[[365,1,1,6,7],[366,1,1,7,8]]],[13,2,2,8,10,[[368,1,1,8,9],[392,1,1,9,10]]],[16,3,3,10,13,[[433,2,2,10,12],[434,1,1,12,13]]],[17,2,2,13,15,[[440,1,1,13,14],[456,1,1,14,15]]],[18,6,6,15,21,[[510,2,2,15,17],[517,1,1,17,18],[533,1,1,18,19],[569,1,1,19,20],[571,1,1,20,21]]],[19,8,8,21,29,[[633,1,1,21,22],[639,1,1,22,23],[642,2,2,23,25],[643,1,1,25,26],[646,1,1,26,27],[647,1,1,27,28],[648,1,1,28,29]]],[22,9,6,29,35,[[733,5,3,29,32],[737,2,1,32,33],[743,1,1,33,34],[744,1,1,34,35]]],[23,12,11,35,46,[[748,1,1,35,36],[750,1,1,36,37],[755,1,1,37,38],[762,3,3,38,41],[773,2,1,41,42],[793,2,2,42,44],[794,1,1,44,45],[795,1,1,45,46]]],[24,2,2,46,48,[[799,2,2,46,48]]],[25,1,1,48,49,[[839,1,1,48,49]]],[26,2,2,49,51,[[860,2,2,49,51]]],[32,1,1,51,52,[[896,1,1,51,52]]]],[142,2424,2563,2564,2566,8370,11152,11182,11225,11747,12820,12822,12859,12963,13382,14376,14377,14530,14760,15416,15442,16558,16724,16829,16833,16843,16946,16972,16989,18747,18748,18749,18807,18899,18940,19041,19108,19245,19395,19396,19402,19646,20147,20157,20211,20241,20414,20415,21435,22060,22061,22632]]],["+",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18749]]],["cunning",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2564]]],["device",[4,4,[[13,1,1,0,1,[[368,1,1,0,1]]],[16,2,2,1,3,[[433,1,1,1,2],[434,1,1,2,3]]],[23,1,1,3,4,[[762,1,1,3,4]]]],[11225,12820,12859,19395]]],["devices",[8,8,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,1,1,1,2,[[510,1,1,1,2]]],[19,1,1,2,3,[[646,1,1,2,3]]],[23,3,3,3,6,[[755,1,1,3,4],[762,2,2,4,6]]],[26,2,2,6,8,[[860,2,2,6,8]]]],[12963,14376,16946,19245,19396,19402,22060,22061]]],["devised",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12822]]],["imaginations",[3,3,[[19,1,1,0,1,[[633,1,1,0,1]]],[24,2,2,1,3,[[799,2,2,1,3]]]],[16558,20414,20415]]],["invented",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11747]]],["means",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8370]]],["purpose",[3,3,[[19,1,1,0,1,[[647,1,1,0,1]]],[23,2,2,1,3,[[793,1,1,1,2],[795,1,1,2,3]]]],[16972,20157,20241]]],["purposes",[3,3,[[19,1,1,0,1,[[642,1,1,0,1]]],[23,2,2,1,3,[[793,1,1,1,2],[794,1,1,2,3]]]],[16829,20147,20211]]],["thought",[1,1,[[25,1,1,0,1,[[839,1,1,0,1]]]],[21435]]],["thoughts",[26,23,[[0,1,1,0,1,[[5,1,1,0,1]]],[12,2,2,1,3,[[365,1,1,1,2],[366,1,1,2,3]]],[17,1,1,3,4,[[456,1,1,3,4]]],[18,5,5,4,9,[[510,1,1,4,5],[517,1,1,5,6],[533,1,1,6,7],[569,1,1,7,8],[571,1,1,8,9]]],[19,4,4,9,13,[[639,1,1,9,10],[642,1,1,10,11],[643,1,1,11,12],[648,1,1,12,13]]],[22,8,6,13,19,[[733,4,3,13,16],[737,2,1,16,17],[743,1,1,17,18],[744,1,1,18,19]]],[23,4,3,19,22,[[748,1,1,19,20],[750,1,1,20,21],[773,2,1,21,22]]],[32,1,1,22,23,[[896,1,1,22,23]]]],[142,11152,11182,13382,14377,14530,14760,15416,15442,16724,16833,16843,16989,18747,18748,18749,18807,18899,18940,19041,19108,19646,22632]]],["work",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2566]]],["works",[2,2,[[1,2,2,0,2,[[80,1,1,0,1],[84,1,1,1,2]]]],[2424,2563]]]]},{"k":"H4285","v":[["*",[7,7,[[18,4,4,0,4,[[551,1,1,0,1],[565,2,2,1,3],[620,1,1,3,4]]],[22,2,2,4,6,[[707,1,1,4,5],[720,1,1,5,6]]],[24,1,1,6,7,[[799,1,1,6,7]]]],[15068,15314,15326,16296,18208,18496,20360]]],["dark",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18208]]],["darkness",[4,4,[[18,3,3,0,3,[[565,2,2,0,2],[620,1,1,2,3]]],[22,1,1,3,4,[[720,1,1,3,4]]]],[15314,15326,16296,18496]]],["places",[2,2,[[18,1,1,0,1,[[551,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]]],[15068,20360]]]]},{"k":"H4286","v":[["appear",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[867]]]]},{"k":"H4287","v":[["Mahath",[3,3,[[12,1,1,0,1,[[343,1,1,0,1]]],[13,2,2,1,3,[[395,1,1,1,2],[397,1,1,2,3]]]],[10489,11803,11867]]]]},{"k":"H4288","v":[["*",[11,11,[[18,1,1,0,1,[[566,1,1,0,1]]],[19,7,7,1,8,[[637,3,3,1,4],[640,1,1,4,5],[641,1,1,5,6],[645,1,1,6,7],[648,1,1,7,8]]],[22,1,1,8,9,[[732,1,1,8,9]]],[23,2,2,9,11,[[761,1,1,9,10],[792,1,1,10,11]]]],[15366,16670,16671,16685,16750,16800,16908,16999,18737,19374,20119]]],["+",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18737]]],["destruction",[7,7,[[19,7,7,0,7,[[637,3,3,0,3],[640,1,1,3,4],[641,1,1,4,5],[645,1,1,5,6],[648,1,1,6,7]]]],[16670,16671,16685,16750,16800,16908,16999]]],["dismaying",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20119]]],["ruin",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15366]]],["terror",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19374]]]]},{"k":"H4289","v":[["*",[22,19,[[1,4,4,0,4,[[74,1,1,0,1],[76,1,1,1,2],[86,1,1,2,3],[87,1,1,3,4]]],[2,2,2,4,6,[[99,1,1,4,5],[105,1,1,5,6]]],[3,12,9,6,15,[[120,2,2,6,8],[132,10,7,8,15]]],[10,1,1,15,16,[[297,1,1,15,16]]],[11,1,1,16,17,[[337,1,1,16,17]]],[13,1,1,17,18,[[370,1,1,17,18]]],[23,1,1,18,19,[[796,1,1,18,19]]]],[2233,2275,2627,2636,2978,3213,3752,3757,4200,4211,4212,4231,4232,4233,4240,8984,10237,11268,20295]]],["+",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3757]]],["censer",[7,5,[[2,2,2,0,2,[[99,1,1,0,1],[105,1,1,1,2]]],[3,5,3,2,5,[[132,5,3,2,5]]]],[2978,3213,4211,4212,4240]]],["censers",[7,7,[[3,5,5,0,5,[[132,5,5,0,5]]],[10,1,1,5,6,[[297,1,1,5,6]]],[13,1,1,6,7,[[370,1,1,6,7]]]],[4200,4211,4231,4232,4233,8984,11268]]],["firepans",[4,4,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[11,1,1,2,3,[[337,1,1,2,3]]],[23,1,1,3,4,[[796,1,1,3,4]]]],[2275,2636,10237,20295]]],["snuffdishes",[3,3,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]]],[2233,2627,3752]]]]},{"k":"H4290","v":[["*",[2,2,[[1,1,1,0,1,[[71,1,1,0,1]]],[23,1,1,1,2,[[746,1,1,1,2]]]],[2115,18999]]],["search",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18999]]],["up",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2115]]]]},{"k":"H4291","v":[["*",[8,8,[[26,8,8,0,8,[[853,5,5,0,5],[855,1,1,5,6],[856,2,2,6,8]]]],[21848,21857,21859,21861,21865,21929,21946,21955]]],["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21929]]],["came",[3,3,[[26,3,3,0,3,[[853,1,1,0,1],[856,2,2,1,3]]]],[21865,21946,21955]]],["come",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21861]]],["reached",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21848,21857]]],["reacheth",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21859]]]]},{"k":"H4292","v":[["besom",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17951]]]]},{"k":"H4293","v":[["slaughter",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17949]]]]},{"k":"H4294","v":[["*",[251,205,[[0,2,2,0,2,[[37,2,2,0,2]]],[1,27,25,2,27,[[53,4,4,2,6],[56,9,7,6,13],[57,3,3,13,16],[58,1,1,16,17],[59,1,1,17,18],[63,1,1,18,19],[66,2,2,19,21],[80,2,2,21,23],[84,2,2,23,25],[87,2,2,25,27]]],[2,2,2,27,29,[[113,1,1,27,28],[115,1,1,28,29]]],[3,110,89,29,118,[[117,16,16,29,45],[118,8,8,45,53],[119,1,1,53,54],[123,2,2,54,56],[126,8,8,56,64],[129,14,13,64,77],[133,16,8,77,85],[134,1,1,85,86],[136,3,3,86,89],[142,1,1,89,90],[146,1,1,90,91],[147,5,3,91,94],[148,1,1,94,95],[149,1,1,95,96],[150,18,14,96,110],[152,14,8,110,118]]],[5,59,45,118,163,[[193,2,2,118,120],[199,3,3,120,123],[200,6,4,123,127],[201,3,3,127,130],[202,1,1,130,131],[203,1,1,131,132],[204,2,2,132,134],[205,9,9,134,143],[206,3,1,143,144],[207,27,17,144,161],[208,2,2,161,163]]],[8,2,2,163,165,[[249,2,2,163,165]]],[10,2,2,165,167,[[297,1,1,165,166],[298,1,1,166,167]]],[12,23,15,167,182,[[343,22,14,167,181],[349,1,1,181,182]]],[13,1,1,182,183,[[371,1,1,182,183]]],[18,2,2,183,185,[[582,1,1,183,184],[587,1,1,184,185]]],[22,8,8,185,193,[[687,1,1,185,186],[688,4,4,186,190],[692,1,1,190,191],[706,1,1,191,192],[708,1,1,192,193]]],[23,1,1,193,194,[[792,1,1,193,194]]],[25,9,8,194,202,[[805,1,1,194,195],[806,1,1,195,196],[808,2,2,196,198],[815,1,1,198,199],[820,4,3,199,202]]],[32,1,1,202,203,[[898,1,1,202,203]]],[34,2,2,203,205,[[905,2,2,203,205]]]],[1137,1144,1603,1605,1618,1621,1694,1695,1697,1700,1702,1704,1705,1715,1726,1727,1765,1790,1905,1988,1992,2422,2426,2561,2565,2655,2656,3457,3550,3608,3620,3625,3627,3629,3631,3633,3635,3637,3639,3641,3643,3645,3647,3651,3653,3663,3665,3670,3672,3678,3680,3685,3687,3698,3852,3862,4003,4004,4007,4008,4011,4012,4014,4015,4077,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4246,4247,4249,4250,4251,4252,4253,4254,4259,4319,4320,4322,4544,4649,4668,4669,4670,4746,4814,4829,4830,4831,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4882,4883,4884,4885,4886,4887,4888,4891,5977,5994,6169,6178,6183,6188,6189,6190,6191,6203,6222,6223,6273,6276,6304,6314,6322,6329,6344,6345,6352,6360,6361,6369,6372,6380,6382,6385,6386,6387,6388,6390,6398,6401,6404,6406,6408,6409,6411,6413,6415,6417,6419,6427,6440,7535,7551,8948,8986,10514,10515,10516,10517,10519,10520,10524,10525,10526,10528,10530,10531,10532,10534,10751,11270,15622,15788,17833,17855,17865,17874,17876,17933,18191,18249,20097,20545,20562,20587,20588,20744,20892,20893,20895,22657,22777,22782]]],["+",[50,34,[[3,8,7,0,7,[[119,1,1,0,1],[133,1,1,1,2],[147,2,1,2,3],[150,1,1,3,4],[152,3,3,4,7]]],[5,22,14,7,21,[[206,3,1,7,8],[207,19,13,8,21]]],[10,1,1,21,22,[[297,1,1,21,22]]],[12,18,11,22,33,[[343,18,11,22,33]]],[25,1,1,33,34,[[820,1,1,33,34]]]],[3698,4250,4668,4834,4886,4887,4888,6380,6385,6386,6387,6388,6390,6398,6401,6404,6409,6411,6413,6417,6419,8948,10514,10516,10517,10519,10520,10526,10528,10530,10531,10532,10534,20895]]],["rod",[41,37,[[1,20,19,0,19,[[53,4,4,0,4],[56,8,7,4,11],[57,3,3,11,14],[58,1,1,14,15],[59,1,1,15,16],[63,1,1,16,17],[66,2,2,17,19]]],[3,13,10,19,29,[[133,10,7,19,26],[136,3,3,26,29]]],[8,2,2,29,31,[[249,2,2,29,31]]],[18,1,1,31,32,[[587,1,1,31,32]]],[22,1,1,32,33,[[688,1,1,32,33]]],[25,3,3,33,36,[[808,2,2,33,35],[820,1,1,35,36]]],[32,1,1,36,37,[[898,1,1,36,37]]]],[1603,1605,1618,1621,1694,1695,1697,1700,1702,1704,1705,1715,1726,1727,1765,1790,1905,1988,1992,4246,4247,4249,4250,4252,4253,4254,4319,4320,4322,7535,7551,15788,17876,20587,20588,20895,22657]]],["rods",[8,7,[[1,1,1,0,1,[[56,1,1,0,1]]],[3,5,4,1,5,[[133,5,4,1,5]]],[25,2,2,5,7,[[820,2,2,5,7]]]],[1697,4246,4250,4251,4253,20892,20893]]],["staff",[15,15,[[0,2,2,0,2,[[37,2,2,0,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[18,1,1,3,4,[[582,1,1,3,4]]],[22,7,7,4,11,[[687,1,1,4,5],[688,3,3,5,8],[692,1,1,8,9],[706,1,1,9,10],[708,1,1,10,11]]],[23,1,1,11,12,[[792,1,1,11,12]]],[25,3,3,12,15,[[805,1,1,12,13],[806,1,1,13,14],[815,1,1,14,15]]]],[1137,1144,3550,15622,17833,17855,17865,17874,17933,18191,18249,20097,20545,20562,20744]]],["staves",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22782]]],["tribe",[116,108,[[1,6,6,0,6,[[80,2,2,0,2],[84,2,2,2,4],[87,2,2,4,6]]],[2,1,1,6,7,[[113,1,1,6,7]]],[3,74,69,7,76,[[117,15,15,7,22],[118,8,8,22,30],[123,1,1,30,31],[126,8,8,31,39],[129,14,13,39,52],[134,1,1,52,53],[147,2,2,53,55],[150,15,13,55,68],[152,10,8,68,76]]],[5,30,28,76,104,[[193,2,2,76,78],[199,3,3,78,81],[200,2,2,81,83],[201,3,3,83,86],[202,1,1,86,87],[203,1,1,87,88],[204,2,2,88,90],[205,8,8,90,98],[207,7,5,98,103],[208,1,1,103,104]]],[12,5,4,104,108,[[343,4,3,104,107],[349,1,1,107,108]]]],[2422,2426,2561,2565,2655,2656,3457,3608,3625,3627,3629,3631,3633,3635,3637,3639,3641,3643,3645,3647,3651,3653,3663,3665,3670,3672,3678,3680,3685,3687,3862,4003,4004,4007,4008,4011,4012,4014,4015,4077,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4259,4669,4670,4829,4830,4831,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4882,4883,4884,4885,4886,4887,4888,4891,5977,5994,6169,6178,6183,6189,6190,6203,6222,6223,6273,6276,6304,6314,6322,6329,6344,6345,6352,6360,6361,6369,6386,6387,6406,6408,6415,6427,10515,10524,10525,10751]]],["tribes",[20,20,[[3,10,10,0,10,[[117,1,1,0,1],[123,1,1,1,2],[142,1,1,2,3],[146,1,1,3,4],[147,1,1,4,5],[148,1,1,5,6],[149,1,1,6,7],[150,2,2,7,9],[152,1,1,9,10]]],[5,7,7,10,17,[[200,4,4,10,14],[205,1,1,14,15],[207,1,1,15,16],[208,1,1,16,17]]],[10,1,1,17,18,[[298,1,1,17,18]]],[13,1,1,18,19,[[371,1,1,18,19]]],[34,1,1,19,20,[[905,1,1,19,20]]]],[3620,3852,4544,4649,4668,4746,4814,4829,4831,4888,6188,6189,6190,6191,6372,6382,6440,8986,11270,22777]]]]},{"k":"H4295","v":[["*",[19,18,[[1,6,6,0,6,[[75,1,1,0,1],[76,1,1,1,2],[77,1,1,2,3],[85,1,1,3,4],[87,1,1,4,5],[88,1,1,5,6]]],[4,3,2,6,8,[[180,3,2,6,8]]],[11,1,1,8,9,[[331,1,1,8,9]]],[12,1,1,9,10,[[364,1,1,9,10]]],[13,1,1,10,11,[[398,1,1,10,11]]],[14,1,1,11,12,[[411,1,1,11,12]]],[19,1,1,12,13,[[642,1,1,12,13]]],[20,1,1,13,14,[[661,1,1,13,14]]],[22,1,1,14,15,[[715,1,1,14,15]]],[23,1,1,15,16,[[775,1,1,15,16]]],[25,2,2,16,18,[[802,1,1,16,17],[809,1,1,17,18]]]],[2259,2277,2320,2595,2637,2684,5624,5654,10091,11132,11905,12250,16831,17380,18383,19728,20491,20606]]],["+",[8,7,[[1,6,6,0,6,[[75,1,1,0,1],[76,1,1,1,2],[77,1,1,2,3],[85,1,1,3,4],[87,1,1,4,5],[88,1,1,5,6]]],[4,2,1,6,7,[[180,2,1,6,7]]]],[2259,2277,2320,2595,2637,2684,5654]]],["beneath",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[19,1,1,1,2,[[642,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]]],[5624,16831,19728]]],["down",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11905]]],["downward",[5,5,[[11,1,1,0,1,[[331,1,1,0,1]]],[20,1,1,1,2,[[661,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]],[25,2,2,3,5,[[802,1,1,3,4],[809,1,1,4,5]]]],[10091,17380,18383,20491,20606]]],["less",[1,1,[[14,1,1,0,1,[[411,1,1,0,1]]]],[12250]]],["under",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11132]]]]},{"k":"H4296","v":[["*",[29,29,[[0,3,3,0,3,[[46,1,1,0,1],[47,1,1,1,2],[48,1,1,2,3]]],[1,1,1,3,4,[[57,1,1,3,4]]],[8,4,4,4,8,[[254,3,3,4,7],[263,1,1,7,8]]],[9,2,2,8,10,[[269,1,1,8,9],[270,1,1,9,10]]],[10,2,2,10,12,[[307,1,1,10,11],[311,1,1,11,12]]],[11,7,7,12,19,[[313,3,3,12,15],[316,3,3,15,18],[323,1,1,18,19]]],[13,2,2,19,21,[[388,1,1,19,20],[390,1,1,20,21]]],[16,2,2,21,23,[[426,1,1,21,22],[432,1,1,22,23]]],[18,1,1,23,24,[[483,1,1,23,24]]],[19,1,1,24,25,[[653,1,1,24,25]]],[21,1,1,25,26,[[673,1,1,25,26]]],[25,1,1,26,27,[[824,1,1,26,27]]],[29,2,2,27,29,[[881,1,1,27,28],[884,1,1,28,29]]]],[1451,1453,1506,1713,7719,7721,7722,7965,8112,8127,9336,9455,9537,9539,9549,9613,9624,9635,9831,11655,11702,12708,12815,13991,17155,17578,21048,22407,22454]]],["+",[2,2,[[11,1,1,0,1,[[323,1,1,0,1]]],[13,1,1,1,2,[[388,1,1,1,2]]]],[9831,11655]]],["bed",[23,23,[[0,2,2,0,2,[[47,1,1,0,1],[48,1,1,1,2]]],[1,1,1,2,3,[[57,1,1,2,3]]],[8,4,4,3,7,[[254,3,3,3,6],[263,1,1,6,7]]],[9,1,1,7,8,[[270,1,1,7,8]]],[10,2,2,8,10,[[307,1,1,8,9],[311,1,1,9,10]]],[11,6,6,10,16,[[313,3,3,10,13],[316,3,3,13,16]]],[13,1,1,16,17,[[390,1,1,16,17]]],[16,1,1,17,18,[[432,1,1,17,18]]],[18,1,1,18,19,[[483,1,1,18,19]]],[19,1,1,19,20,[[653,1,1,19,20]]],[21,1,1,20,21,[[673,1,1,20,21]]],[25,1,1,21,22,[[824,1,1,21,22]]],[29,1,1,22,23,[[881,1,1,22,23]]]],[1453,1506,1713,7719,7721,7722,7965,8127,9336,9455,9537,9539,9549,9613,9624,9635,11702,12815,13991,17155,17578,21048,22407]]],["bed's",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1451]]],["beds",[2,2,[[16,1,1,0,1,[[426,1,1,0,1]]],[29,1,1,1,2,[[884,1,1,1,2]]]],[12708,22454]]],["bier",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8112]]]]},{"k":"H4297","v":[["perverseness",[1,1,[[25,1,1,0,1,[[810,1,1,0,1]]]],[20631]]]]},{"k":"H4298","v":[["out",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17815]]]]},{"k":"H4299","v":[["spun",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2556]]]]},{"k":"H4300","v":[["bars",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13882]]]]},{"k":"H4301","v":[["*",[5,5,[[0,1,1,0,1,[[42,1,1,0,1]]],[17,1,1,1,2,[[438,1,1,1,2]]],[19,1,1,2,3,[[629,1,1,2,3]]],[22,1,1,3,4,[[723,1,1,3,4]]],[23,1,1,4,5,[[785,1,1,4,5]]]],[1313,12925,16437,18564,19965]]],["+",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12925]]],["riches",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18564]]],["treasure",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1313]]],["treasures",[2,2,[[19,1,1,0,1,[[629,1,1,0,1]]],[23,1,1,1,2,[[785,1,1,1,2]]]],[16437,19965]]]]},{"k":"H4302","v":[["*",[6,6,[[22,2,2,0,2,[[738,1,1,0,1],[739,1,1,1,2]]],[25,3,3,2,5,[[818,1,1,2,3],[832,1,1,3,4],[835,1,1,4,5]]],[32,1,1,5,6,[[893,1,1,5,6]]]],[18842,18846,20832,21234,21342,22585]]],["plant",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21342]]],["plantation",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20832]]],["planting",[2,2,[[22,2,2,0,2,[[738,1,1,0,1],[739,1,1,1,2]]]],[18842,18846]]],["plantings",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22585]]],["plants",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21234]]]]},{"k":"H4303","v":[["*",[8,8,[[0,6,6,0,6,[[26,6,6,0,6]]],[19,2,2,6,8,[[650,2,2,6,8]]]],[731,734,736,741,744,758,17047,17050]]],["dainties",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17047]]],["meat",[6,6,[[0,6,6,0,6,[[26,6,6,0,6]]]],[731,734,736,741,744,758]]],["meats",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17050]]]]},{"k":"H4304","v":[["*",[2,2,[[7,1,1,0,1,[[234,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]]],[7187,17729]]],["vail",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7187]]],["wimples",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17729]]]]},{"k":"H4305","v":[["*",[17,14,[[0,3,3,0,3,[[1,1,1,0,1],[6,1,1,1,2],[18,1,1,2,3]]],[1,3,3,3,6,[[58,2,2,3,5],[65,1,1,5,6]]],[17,2,2,6,8,[[455,1,1,6,7],[473,1,1,7,8]]],[18,3,3,8,11,[[488,1,1,8,9],[555,2,2,9,11]]],[22,1,1,11,12,[[683,1,1,11,12]]],[25,1,1,12,13,[[839,1,1,12,13]]],[29,4,1,13,14,[[882,4,1,13,14]]]],[35,163,481,1760,1765,1951,13349,13819,14065,15137,15140,17745,21447,22417]]],["+",[2,2,[[22,1,1,0,1,[[683,1,1,0,1]]],[29,1,1,1,2,[[882,1,1,1,2]]]],[17745,22417]]],["down",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15137]]],["rain",[9,9,[[0,2,2,0,2,[[1,1,1,0,1],[6,1,1,1,2]]],[1,2,2,2,4,[[58,1,1,2,3],[65,1,1,3,4]]],[17,2,2,4,6,[[455,1,1,4,5],[473,1,1,5,6]]],[18,1,1,6,7,[[488,1,1,6,7]]],[25,1,1,7,8,[[839,1,1,7,8]]],[29,1,1,8,9,[[882,1,1,8,9]]]],[35,163,1760,1951,13349,13819,14065,21447,22417]]],["rained",[4,4,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,1,1,1,2,[[58,1,1,1,2]]],[18,1,1,2,3,[[555,1,1,2,3]]],[29,1,1,3,4,[[882,1,1,3,4]]]],[481,1765,15140,22417]]],["upon",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22417]]]]},{"k":"H4306","v":[["*",[38,36,[[1,2,2,0,2,[[58,2,2,0,2]]],[4,6,6,2,8,[[163,3,3,2,5],[180,2,2,5,7],[184,1,1,7,8]]],[8,2,2,8,10,[[247,2,2,8,10]]],[9,2,2,10,12,[[267,1,1,10,11],[289,1,1,11,12]]],[10,4,4,12,16,[[298,2,2,12,14],[307,1,1,14,15],[308,1,1,15,16]]],[13,3,3,16,19,[[372,2,2,16,18],[373,1,1,18,19]]],[17,7,6,19,25,[[440,1,1,19,20],[463,1,1,20,21],[464,1,1,21,22],[471,1,1,22,23],[472,2,1,23,24],[473,1,1,24,25]]],[18,3,3,25,28,[[549,1,1,25,26],[612,1,1,26,27],[624,1,1,27,28]]],[19,2,2,28,30,[[653,1,1,28,29],[655,1,1,29,30]]],[22,3,3,30,33,[[682,1,1,30,31],[683,1,1,31,32],[708,1,1,32,33]]],[23,2,2,33,35,[[754,1,1,33,34],[795,1,1,34,35]]],[37,2,1,35,36,[[920,2,1,35,36]]]],[1775,1776,5219,5222,5225,5623,5635,5760,7477,7478,8043,8657,9020,9021,9318,9342,11308,11309,11337,12961,13530,13555,13763,13775,13821,15006,16182,16359,17142,17199,17739,17745,18240,19214,20228,23017]]],["+",[3,3,[[9,1,1,0,1,[[289,1,1,0,1]]],[22,2,2,1,3,[[682,1,1,1,2],[683,1,1,2,3]]]],[8657,17739,17745]]],["great",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13775]]],["rain",[33,32,[[1,2,2,0,2,[[58,2,2,0,2]]],[4,6,6,2,8,[[163,3,3,2,5],[180,2,2,5,7],[184,1,1,7,8]]],[8,2,2,8,10,[[247,2,2,8,10]]],[9,1,1,10,11,[[267,1,1,10,11]]],[10,4,4,11,15,[[298,2,2,11,13],[307,1,1,13,14],[308,1,1,14,15]]],[13,3,3,15,18,[[372,2,2,15,17],[373,1,1,17,18]]],[17,5,5,18,23,[[440,1,1,18,19],[463,1,1,19,20],[464,1,1,20,21],[471,1,1,21,22],[473,1,1,22,23]]],[18,3,3,23,26,[[549,1,1,23,24],[612,1,1,24,25],[624,1,1,25,26]]],[19,2,2,26,28,[[653,1,1,26,27],[655,1,1,27,28]]],[22,1,1,28,29,[[708,1,1,28,29]]],[23,2,2,29,31,[[754,1,1,29,30],[795,1,1,30,31]]],[37,2,1,31,32,[[920,2,1,31,32]]]],[1775,1776,5219,5222,5225,5623,5635,5760,7477,7478,8043,9020,9021,9318,9342,11308,11309,11337,12961,13530,13555,13763,13821,15006,16182,16359,17142,17199,18240,19214,20228,23017]]],["small",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13775]]]]},{"k":"H4307","v":[["*",[16,15,[[8,1,1,0,1,[[255,1,1,0,1]]],[15,2,2,1,3,[[415,1,1,1,2],[424,1,1,2,3]]],[17,1,1,3,4,[[451,1,1,3,4]]],[23,11,10,4,14,[[776,3,3,4,7],[777,1,1,7,8],[781,2,1,8,9],[782,3,3,9,12],[783,2,2,12,14]]],[24,1,1,14,15,[[799,1,1,14,15]]]],[7750,12352,12663,13250,19733,19739,19743,19776,19895,19901,19908,19923,19937,19938,20366]]],["mark",[3,3,[[8,1,1,0,1,[[255,1,1,0,1]]],[17,1,1,1,2,[[451,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]]],[7750,13250,20366]]],["prison",[13,12,[[15,2,2,0,2,[[415,1,1,0,1],[424,1,1,1,2]]],[23,11,10,2,12,[[776,3,3,2,5],[777,1,1,5,6],[781,2,1,6,7],[782,3,3,7,10],[783,2,2,10,12]]]],[12352,12663,19733,19739,19743,19776,19895,19901,19908,19923,19937,19938]]]]},{"k":"H4308","v":[["Matred",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1079,10302]]]]},{"k":"H4309","v":[["Matri",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7439]]]]},{"k":"H4310","v":[["*",[422,341,[[0,18,17,0,17,[[2,1,1,0,1],[18,1,1,1,2],[20,2,2,2,4],[23,3,3,4,7],[26,3,3,7,10],[31,2,1,10,11],[32,2,2,11,13],[37,1,1,13,14],[42,1,1,14,15],[47,1,1,15,16],[48,1,1,16,17]]],[1,14,11,17,28,[[51,1,1,17,18],[52,1,1,18,19],[53,2,1,19,20],[54,1,1,20,21],[59,2,1,21,22],[64,2,1,22,23],[65,1,1,23,24],[73,1,1,24,25],[81,3,3,25,28]]],[3,7,7,28,35,[[127,3,3,28,31],[138,1,1,31,32],[139,1,1,32,33],[140,2,2,33,35]]],[4,16,15,35,50,[[155,1,1,35,36],[156,2,2,36,38],[157,2,2,38,40],[161,1,1,40,41],[172,4,4,41,45],[173,1,1,45,46],[180,2,1,46,47],[182,2,2,47,49],[185,1,1,49,50]]],[5,2,2,50,52,[[195,1,1,50,51],[210,1,1,51,52]]],[6,14,13,52,65,[[211,1,1,52,53],[216,1,1,53,54],[217,1,1,54,55],[219,4,3,55,58],[220,1,1,58,59],[223,1,1,59,60],[225,1,1,60,61],[228,1,1,61,62],[230,1,1,62,63],[231,2,2,63,65]]],[7,3,3,65,68,[[233,1,1,65,66],[234,2,2,66,68]]],[8,34,26,68,94,[[237,1,1,68,69],[239,1,1,69,70],[241,2,1,70,71],[244,1,1,71,72],[245,1,1,72,73],[246,1,1,73,74],[247,5,1,74,75],[249,1,1,75,76],[252,5,5,76,81],[253,2,1,81,82],[255,1,1,82,83],[257,1,1,83,84],[258,1,1,84,85],[259,2,1,85,86],[260,2,1,86,87],[261,4,4,87,91],[263,1,1,91,92],[265,2,2,92,94]]],[9,16,13,94,107,[[267,1,1,94,95],[269,1,1,95,96],[273,3,2,96,98],[277,1,1,98,99],[278,1,1,99,100],[281,1,1,100,101],[282,2,2,101,103],[284,1,1,103,104],[286,2,1,104,105],[288,2,1,105,106],[289,1,1,106,107]]],[10,6,5,107,112,[[291,2,2,107,109],[293,1,1,109,110],[310,2,1,110,111],[312,1,1,111,112]]],[11,10,8,112,120,[[318,1,1,112,113],[321,3,2,113,115],[322,2,2,115,117],[330,2,2,117,119],[331,2,1,119,120]]],[12,7,5,120,125,[[348,1,1,120,121],[354,3,2,121,123],[366,3,2,123,125]]],[13,6,5,125,130,[[367,1,1,125,126],[368,2,1,126,127],[384,1,1,127,128],[398,1,1,128,129],[402,1,1,129,130]]],[14,1,1,130,131,[[403,1,1,130,131]]],[15,1,1,131,132,[[418,1,1,131,132]]],[16,4,4,132,136,[[429,1,1,132,133],[431,2,2,133,135],[432,1,1,135,136]]],[17,62,49,136,185,[[439,2,2,136,138],[440,1,1,138,139],[441,1,1,139,140],[444,5,4,140,144],[446,2,2,144,146],[447,2,2,146,148],[448,2,2,148,150],[449,2,2,150,152],[452,2,2,152,154],[454,2,1,154,155],[456,2,1,155,156],[458,2,2,156,158],[459,1,1,158,159],[460,1,1,159,160],[461,3,2,160,162],[464,1,1,162,163],[466,2,2,163,165],[469,5,3,165,168],[471,3,2,168,170],[473,13,9,170,179],[474,2,1,179,180],[476,5,4,180,184],[477,1,1,184,185]]],[18,42,35,185,220,[[481,1,1,185,186],[483,1,1,186,187],[489,1,1,187,188],[491,1,1,188,189],[492,2,1,189,190],[495,2,1,190,191],[496,1,1,191,192],[501,4,3,192,195],[502,1,1,195,196],[504,2,1,196,197],[511,1,1,197,198],[512,1,1,198,199],[516,1,1,199,200],[530,1,1,200,201],[532,1,1,201,202],[536,1,1,202,203],[537,2,1,203,204],[541,1,1,204,205],[548,1,1,205,206],[550,1,1,206,207],[553,1,1,207,208],[554,1,1,208,209],[566,3,3,209,212],[567,1,1,212,213],[571,2,1,213,214],[583,1,1,214,215],[584,1,1,215,216],[585,2,1,216,217],[590,1,1,217,218],[607,1,1,218,219],[624,1,1,219,220]]],[19,19,11,220,231,[[636,2,2,220,222],[645,1,1,222,223],[647,2,2,223,225],[650,6,1,225,226],[651,1,1,226,227],[654,1,1,227,228],[657,5,2,228,230],[658,1,1,230,231]]],[20,17,14,231,245,[[660,3,2,231,233],[661,2,2,233,235],[662,1,1,235,236],[663,1,1,236,237],[664,2,1,237,238],[665,2,2,238,240],[666,4,3,240,243],[667,1,1,243,244],[668,1,1,244,245]]],[21,4,4,245,249,[[673,1,1,245,246],[676,1,1,246,247],[678,2,2,247,249]]],[22,60,47,249,296,[[679,1,1,249,250],[684,2,1,250,251],[688,1,1,251,252],[692,2,1,252,253],[700,1,1,253,254],[701,1,1,254,255],[705,1,1,255,256],[706,2,1,256,257],[707,2,1,257,258],[711,2,1,258,259],[714,2,2,259,261],[715,2,1,261,262],[718,6,6,262,268],[719,3,3,268,271],[720,4,3,271,274],[721,2,2,274,276],[722,2,2,276,278],[723,1,1,278,279],[724,1,1,279,280],[726,1,1,280,281],[727,2,1,281,282],[728,5,4,282,286],[729,3,2,286,288],[731,3,2,288,290],[732,1,1,290,291],[735,3,2,291,293],[738,1,1,293,294],[741,1,1,294,295],[744,2,1,295,296]]],[23,27,17,296,313,[[746,1,1,296,297],[750,1,1,297,298],[753,3,3,298,301],[754,1,1,301,302],[759,3,1,302,303],[761,1,1,303,304],[762,1,1,304,305],[765,2,1,305,306],[767,2,1,306,307],[774,1,1,307,308],[788,1,1,308,309],[790,1,1,309,310],[793,5,2,310,312],[794,4,1,312,313]]],[24,3,3,313,316,[[798,2,2,313,315],[799,1,1,315,316]]],[25,4,4,316,320,[[828,1,1,316,317],[832,2,2,317,319],[833,1,1,319,320]]],[27,1,1,320,321,[[875,1,1,320,321]]],[28,2,2,321,323,[[877,2,2,321,323]]],[29,4,3,323,326,[[881,2,1,323,324],[885,2,2,324,326]]],[30,1,1,326,327,[[888,1,1,326,327]]],[31,3,3,327,330,[[889,2,2,327,329],[891,1,1,329,330]]],[32,4,3,330,333,[[893,2,1,330,331],[898,1,1,331,332],[899,1,1,332,333]]],[33,4,3,333,336,[[900,2,1,333,334],[902,2,2,334,336]]],[36,1,1,336,337,[[910,1,1,336,337]]],[37,2,2,337,339,[[914,2,2,337,339]]],[38,3,2,339,341,[[925,1,1,339,340],[927,2,1,340,341]]]],[66,469,520,539,614,638,656,745,759,760,945,965,968,1144,1312,1459,1482,1568,1590,1612,1634,1785,1931,1950,2191,2462,2464,2471,4028,4042,4053,4384,4426,4455,4469,4999,5011,5012,5079,5082,5159,5432,5433,5434,5435,5448,5678,5720,5721,5839,6045,6491,6510,6683,6697,6782,6783,6792,6829,6901,6935,6996,7072,7107,7110,7154,7181,7188,7265,7305,7351,7411,7430,7457,7463,7525,7644,7646,7673,7674,7676,7694,7740,7801,7832,7853,7871,7911,7914,7919,7920,7953,7991,8002,8030,8093,8198,8203,8280,8308,8393,8436,8445,8511,8565,8634,8668,8737,8744,8825,9422,9500,9685,9761,9788,9802,9806,10044,10059,10083,10690,10879,10884,11169,11178,11204,11217,11561,11889,12016,12019,12412,12776,12797,12799,12812,12932,12937,12952,12986,13055,13063,13070,13075,13113,13118,13131,13137,13158,13172,13185,13194,13263,13275,13320,13386,13422,13432,13461,13464,13471,13481,13534,13619,13623,13690,13696,13712,13758,13759,13795,13798,13799,13818,13821,13822,13829,13830,13834,13839,13898,13899,13901,13902,13925,13971,13990,14070,14087,14088,14149,14180,14244,14249,14251,14263,14286,14400,14420,14518,14725,14738,14797,14816,14855,14995,15045,15088,15106,15332,15334,15374,15389,15447,15653,15742,15752,15818,16143,16368,16642,16654,16915,16960,16963,17073,17101,17173,17255,17260,17294,17352,17358,17380,17381,17389,17407,17429,17442,17453,17459,17462,17465,17479,17507,17577,17624,17641,17645,17666,17777,17853,17955,18068,18085,18155,18173,18208,18293,18335,18350,18375,18432,18433,18434,18438,18445,18446,18453,18455,18477,18499,18503,18504,18514,18518,18540,18543,18582,18591,18628,18657,18663,18670,18671,18672,18685,18692,18712,18719,18738,18769,18776,18829,18867,18930,18989,19099,19176,19177,19187,19208,19320,19366,19397,19453,19502,19688,20038,20052,20131,20146,20210,20345,20352,20391,21153,21232,21248,21267,22291,22322,22325,22403,22466,22469,22513,22538,22539,22567,22584,22657,22682,22690,22719,22731,22858,22929,22932,23099,23122]]],["+",[24,20,[[1,4,3,0,3,[[59,2,1,0,1],[65,1,1,1,2],[81,1,1,2,3]]],[3,1,1,3,4,[[127,1,1,3,4]]],[4,3,2,4,6,[[157,1,1,4,5],[180,2,1,5,6]]],[6,1,1,6,7,[[219,1,1,6,7]]],[8,2,1,7,8,[[247,2,1,7,8]]],[9,1,1,8,9,[[284,1,1,8,9]]],[17,2,2,9,11,[[458,1,1,9,10],[473,1,1,10,11]]],[18,4,3,11,14,[[491,1,1,11,12],[504,2,1,12,13],[530,1,1,13,14]]],[21,1,1,14,15,[[678,1,1,14,15]]],[23,1,1,15,16,[[753,1,1,15,16]]],[25,2,2,16,18,[[832,1,1,16,17],[833,1,1,17,18]]],[31,2,2,18,20,[[889,2,2,18,20]]]],[1785,1950,2471,4053,5082,5678,6783,7463,8511,13422,13822,14087,14286,14725,17641,19177,21232,21267,22538,22539]]],["He",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8565]]],["What",[14,14,[[0,2,2,0,2,[[23,1,1,0,1],[32,1,1,1,2]]],[3,1,1,2,3,[[138,1,1,2,3]]],[4,2,2,3,5,[[172,2,2,3,5]]],[6,3,3,5,8,[[220,1,1,5,6],[223,1,1,6,7],[231,1,1,7,8]]],[17,1,1,8,9,[[469,1,1,8,9]]],[18,3,3,9,12,[[502,1,1,9,10],[511,1,1,10,11],[566,1,1,11,12]]],[25,1,1,12,13,[[828,1,1,12,13]]],[32,1,1,13,14,[[893,1,1,13,14]]]],[656,968,4384,5432,5435,6829,6901,7110,13690,14263,14400,15374,21153,22584]]],["Which",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7072]]],["Who",[125,125,[[0,6,6,0,6,[[2,1,1,0,1],[20,1,1,1,2],[26,2,2,2,4],[32,1,1,4,5],[47,1,1,5,6]]],[1,6,6,6,12,[[51,1,1,6,7],[52,1,1,7,8],[53,1,1,8,9],[54,1,1,9,10],[64,1,1,10,11],[81,1,1,11,12]]],[3,3,3,12,15,[[127,2,2,12,14],[139,1,1,14,15]]],[4,3,3,15,18,[[161,1,1,15,16],[182,2,2,16,18]]],[5,1,1,18,19,[[195,1,1,18,19]]],[6,7,7,19,26,[[211,1,1,19,20],[216,1,1,20,21],[219,2,2,21,23],[225,1,1,23,24],[228,1,1,24,25],[231,1,1,25,26]]],[7,2,2,26,28,[[234,2,2,26,28]]],[8,7,7,28,35,[[241,1,1,28,29],[246,1,1,29,30],[253,1,1,30,31],[255,1,1,31,32],[260,1,1,32,33],[261,2,2,33,35]]],[9,5,5,35,40,[[267,1,1,35,36],[273,1,1,36,37],[277,1,1,37,38],[278,1,1,38,39],[282,1,1,39,40]]],[10,2,2,40,42,[[310,1,1,40,41],[312,1,1,41,42]]],[11,3,3,42,45,[[321,1,1,42,43],[322,1,1,43,44],[330,1,1,44,45]]],[12,1,1,45,46,[[354,1,1,45,46]]],[13,3,3,46,49,[[384,1,1,46,47],[398,1,1,47,48],[402,1,1,48,49]]],[14,1,1,49,50,[[403,1,1,49,50]]],[16,2,2,50,52,[[431,1,1,50,51],[432,1,1,51,52]]],[17,17,17,52,69,[[447,1,1,52,53],[448,1,1,53,54],[449,1,1,54,55],[456,1,1,55,56],[469,1,1,56,57],[471,1,1,57,58],[473,6,6,58,64],[474,1,1,64,65],[476,3,3,65,68],[477,1,1,68,69]]],[18,12,12,69,81,[[481,1,1,69,70],[496,1,1,70,71],[501,3,3,71,74],[537,1,1,74,75],[541,1,1,75,76],[567,1,1,76,77],[571,1,1,77,78],[583,1,1,78,79],[585,1,1,79,80],[590,1,1,80,81]]],[19,5,5,81,86,[[647,1,1,81,82],[650,1,1,82,83],[657,2,2,83,85],[658,1,1,85,86]]],[20,2,2,86,88,[[661,1,1,86,87],[666,1,1,87,88]]],[21,3,3,88,91,[[673,1,1,88,89],[676,1,1,89,90],[678,1,1,90,91]]],[22,19,19,91,110,[[701,1,1,91,92],[707,1,1,92,93],[711,1,1,93,94],[714,1,1,94,95],[718,2,2,95,97],[719,3,3,97,100],[720,3,3,100,103],[722,1,1,103,104],[727,1,1,104,105],[728,1,1,105,106],[731,1,1,106,107],[738,1,1,107,108],[741,1,1,108,109],[744,1,1,109,110]]],[23,5,5,110,115,[[753,1,1,110,111],[754,1,1,111,112],[765,1,1,112,113],[790,1,1,113,114],[793,1,1,114,115]]],[24,1,1,115,116,[[799,1,1,115,116]]],[27,1,1,116,117,[[875,1,1,116,117]]],[28,1,1,117,118,[[877,1,1,117,118]]],[30,1,1,118,119,[[888,1,1,118,119]]],[31,1,1,119,120,[[891,1,1,119,120]]],[32,1,1,120,121,[[899,1,1,120,121]]],[33,1,1,121,122,[[900,1,1,121,122]]],[36,1,1,122,123,[[910,1,1,122,123]]],[37,1,1,123,124,[[914,1,1,123,124]]],[38,1,1,124,125,[[925,1,1,124,125]]]],[66,520,759,760,965,1459,1568,1590,1612,1634,1931,2464,4028,4042,4426,5159,5720,5721,6045,6510,6683,6782,6792,6935,6996,7107,7181,7188,7351,7457,7694,7740,7871,7911,7919,8030,8198,8280,8308,8436,9422,9500,9788,9806,10059,10879,11561,11889,12016,12019,12797,12812,13137,13172,13185,13386,13696,13759,13795,13798,13818,13829,13830,13834,13839,13899,13901,13902,13925,13971,14180,14244,14249,14251,14816,14855,15389,15447,15653,15752,15818,16963,17073,17255,17260,17294,17380,17459,17577,17624,17645,18085,18208,18293,18350,18432,18433,18453,18455,18477,18499,18503,18504,18543,18657,18672,18712,18829,18867,18930,19187,19208,19453,20052,20131,20391,22291,22325,22513,22567,22682,22690,22858,22929,23099]]],["Whom",[6,6,[[8,1,1,0,1,[[263,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[18,1,1,2,3,[[550,1,1,2,3]]],[22,3,3,3,6,[[684,1,1,3,4],[706,1,1,4,5],[715,1,1,5,6]]]],[7953,10083,15045,17777,18173,18375]]],["Whose",[6,6,[[0,3,3,0,3,[[23,2,2,0,2],[31,1,1,2,3]]],[7,1,1,3,4,[[233,1,1,3,4]]],[8,1,1,4,5,[[252,1,1,4,5]]],[9,1,1,5,6,[[269,1,1,5,6]]]],[614,638,945,7154,7676,8093]]],["Whoso",[3,3,[[18,1,1,0,1,[[584,1,1,0,1]]],[19,2,2,1,3,[[636,2,2,1,3]]]],[15742,16642,16654]]],["Whosoever",[2,2,[[1,1,1,0,1,[[81,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]]],[2462,6697]]],["any",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,1,1,1,2,[[73,1,1,1,2]]]],[469,2191]]],["he",[2,2,[[9,1,1,0,1,[[286,1,1,0,1]]],[20,1,1,1,2,[[663,1,1,1,2]]]],[8565,17407]]],["him",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17479]]],["one",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8668]]],["that",[13,12,[[9,1,1,0,1,[[281,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]],[17,9,8,2,10,[[441,1,1,2,3],[446,1,1,3,4],[448,1,1,4,5],[449,1,1,5,6],[454,2,1,6,7],[464,1,1,7,8],[466,2,2,8,10]]],[18,1,1,10,11,[[532,1,1,10,11]]],[23,1,1,11,12,[[753,1,1,11,12]]]],[8393,10690,12986,13113,13158,13194,13320,13534,13619,13623,14738,19176]]],["what",[12,12,[[4,5,5,0,5,[[155,1,1,0,1],[156,2,2,1,3],[172,2,2,3,5]]],[8,1,1,5,6,[[253,1,1,5,6]]],[9,2,2,6,8,[[273,2,2,6,8]]],[12,3,3,8,11,[[354,2,2,8,10],[366,1,1,10,11]]],[32,1,1,11,12,[[893,1,1,11,12]]]],[4999,5011,5012,5433,5434,7694,8198,8203,10879,10884,11178,22584]]],["which",[5,5,[[11,2,2,0,2,[[318,1,1,0,1],[321,1,1,1,2]]],[17,1,1,2,3,[[440,1,1,2,3]]],[22,2,2,3,5,[[726,1,1,3,4],[728,1,1,4,5]]]],[9685,9761,12952,18628,18663]]],["who",[159,132,[[0,4,4,0,4,[[20,1,1,0,1],[26,1,1,1,2],[42,1,1,2,3],[48,1,1,3,4]]],[1,2,2,4,6,[[53,1,1,4,5],[64,1,1,5,6]]],[3,2,2,6,8,[[140,2,2,6,8]]],[4,3,3,8,11,[[157,1,1,8,9],[173,1,1,9,10],[185,1,1,10,11]]],[6,1,1,11,12,[[219,1,1,11,12]]],[8,11,11,12,23,[[237,1,1,12,13],[239,1,1,13,14],[245,1,1,14,15],[249,1,1,15,16],[252,1,1,16,17],[257,1,1,17,18],[258,1,1,18,19],[260,1,1,19,20],[261,2,2,20,22],[265,1,1,22,23]]],[9,2,1,23,24,[[288,2,1,23,24]]],[10,3,3,24,27,[[291,2,2,24,26],[293,1,1,26,27]]],[11,2,2,27,29,[[321,1,1,27,28],[322,1,1,28,29]]],[12,2,2,29,31,[[366,2,2,29,31]]],[13,3,2,31,33,[[367,1,1,31,32],[368,2,1,32,33]]],[15,1,1,33,34,[[418,1,1,33,34]]],[16,1,1,34,35,[[429,1,1,34,35]]],[17,29,27,35,62,[[439,2,2,35,37],[444,5,4,37,41],[446,1,1,41,42],[447,1,1,42,43],[452,2,2,43,45],[456,1,1,45,46],[458,1,1,46,47],[459,1,1,47,48],[461,1,1,48,49],[469,3,2,49,51],[471,2,2,51,53],[473,6,6,53,59],[474,1,1,59,60],[476,2,2,60,62]]],[18,20,18,62,80,[[483,1,1,62,63],[489,1,1,63,64],[492,2,1,64,65],[495,2,1,65,66],[501,1,1,66,67],[512,1,1,67,68],[516,1,1,68,69],[536,1,1,69,70],[537,1,1,70,71],[548,1,1,71,72],[553,1,1,72,73],[554,1,1,73,74],[566,2,2,74,76],[571,1,1,76,77],[585,1,1,77,78],[607,1,1,78,79],[624,1,1,79,80]]],[19,12,6,80,86,[[645,1,1,80,81],[647,1,1,81,82],[650,5,1,82,83],[651,1,1,83,84],[654,1,1,84,85],[657,3,1,85,86]]],[20,12,10,86,96,[[660,3,2,86,88],[661,1,1,88,89],[664,2,1,89,90],[665,2,2,90,92],[666,3,3,92,95],[668,1,1,95,96]]],[22,21,19,96,115,[[679,1,1,96,97],[684,1,1,97,98],[692,2,1,98,99],[705,1,1,99,100],[707,1,1,100,101],[711,1,1,101,102],[718,1,1,102,103],[720,1,1,103,104],[721,2,2,104,106],[722,1,1,106,107],[723,1,1,107,108],[727,1,1,108,109],[728,3,2,109,111],[729,2,2,111,113],[731,1,1,113,114],[744,1,1,114,115]]],[23,18,9,115,124,[[746,1,1,115,116],[759,3,1,116,117],[761,1,1,117,118],[762,1,1,118,119],[765,1,1,119,120],[767,2,1,120,121],[774,1,1,121,122],[793,4,1,122,123],[794,4,1,123,124]]],[24,1,1,124,125,[[798,1,1,124,125]]],[28,1,1,125,126,[[877,1,1,125,126]]],[29,2,1,126,127,[[881,2,1,126,127]]],[32,1,1,127,128,[[898,1,1,127,128]]],[33,2,2,128,130,[[900,1,1,128,129],[902,1,1,129,130]]],[37,1,1,130,131,[[914,1,1,130,131]]],[38,2,1,131,132,[[927,2,1,131,132]]]],[539,745,1312,1482,1612,1931,4455,4469,5079,5448,5839,6782,7265,7305,7430,7525,7644,7801,7832,7871,7914,7920,8002,8634,8737,8744,8825,9788,9802,11169,11178,11204,11217,12412,12776,12932,12937,13055,13063,13070,13075,13118,13131,13263,13275,13386,13432,13461,13481,13696,13712,13758,13759,13798,13799,13821,13822,13829,13830,13839,13898,13901,13990,14070,14088,14149,14244,14420,14518,14797,14816,14995,15088,15106,15332,15334,15447,15752,16143,16368,16915,16960,17073,17101,17173,17255,17352,17358,17381,17429,17442,17453,17459,17462,17465,17507,17666,17777,17955,18155,18208,18293,18446,18499,18514,18518,18540,18582,18657,18670,18671,18685,18692,18719,18930,18989,19320,19366,19397,19453,19502,19688,20146,20210,20345,22322,22403,22657,22690,22719,22932,23122]]],["whom",[37,34,[[5,1,1,0,1,[[210,1,1,0,1]]],[8,8,6,1,7,[[241,1,1,1,2],[244,1,1,2,3],[247,2,1,3,4],[252,1,1,4,5],[259,2,1,5,6],[265,1,1,6,7]]],[9,1,1,7,8,[[282,1,1,7,8]]],[10,1,1,8,9,[[310,1,1,8,9]]],[11,2,2,9,11,[[330,1,1,9,10],[331,1,1,10,11]]],[16,1,1,11,12,[[431,1,1,11,12]]],[17,2,2,12,14,[[460,1,1,12,13],[461,1,1,13,14]]],[20,1,1,14,15,[[662,1,1,14,15]]],[22,14,13,15,28,[[688,1,1,15,16],[700,1,1,16,17],[706,1,1,17,18],[714,1,1,18,19],[715,1,1,19,20],[718,3,3,20,23],[724,1,1,23,24],[729,1,1,24,25],[731,1,1,25,26],[735,3,2,26,28]]],[23,1,1,28,29,[[750,1,1,28,29]]],[24,1,1,29,30,[[798,1,1,29,30]]],[25,1,1,30,31,[[832,1,1,30,31]]],[29,2,2,31,33,[[885,2,2,31,33]]],[33,1,1,33,34,[[902,1,1,33,34]]]],[6491,7351,7411,7463,7646,7853,7991,8445,9422,10044,10083,12799,13464,13471,17389,17853,18068,18173,18335,18375,18434,18438,18445,18591,18692,18712,18769,18776,19099,20352,21248,22466,22469,22731]]],["whose",[7,7,[[0,2,2,0,2,[[31,1,1,0,1],[37,1,1,1,2]]],[8,3,3,2,5,[[247,1,1,2,3],[252,2,2,3,5]]],[17,1,1,5,6,[[461,1,1,5,6]]],[23,1,1,6,7,[[788,1,1,6,7]]]],[945,1144,7463,7673,7674,13471,20038]]],["whosoever",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18738]]]]},{"k":"H4311","v":[["Medeba",[5,5,[[3,1,1,0,1,[[137,1,1,0,1]]],[5,2,2,1,3,[[199,2,2,1,3]]],[12,1,1,3,4,[[356,1,1,3,4]]],[22,1,1,4,5,[[693,1,1,4,5]]]],[4370,6163,6170,10914,17962]]]]},{"k":"H4312","v":[["Medad",[2,2,[[3,2,2,0,2,[[127,2,2,0,2]]]],[4050,4051]]]]},{"k":"H4313","v":[["Mejarkon",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6367]]]]},{"k":"H4314","v":[["Mezahab",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1079,10302]]]]},{"k":"H4315","v":[["best",[6,5,[[0,2,2,0,2,[[46,2,2,0,2]]],[1,2,1,2,3,[[71,2,1,2,3]]],[8,2,2,3,5,[[250,2,2,3,5]]]],[1426,1431,2118,7569,7575]]]]},{"k":"H4316","v":[["*",[4,4,[[9,1,1,0,1,[[275,1,1,0,1]]],[12,1,1,1,2,[[346,1,1,1,2]]],[15,2,2,2,4,[[422,1,1,2,3],[423,1,1,3,4]]]],[8239,10630,12560,12610]]],["Micah",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10630]]],["Micha",[3,3,[[9,1,1,0,1,[[275,1,1,0,1]]],[15,2,2,1,3,[[422,1,1,1,2],[423,1,1,2,3]]]],[8239,12560,12610]]]]},{"k":"H4317","v":[["Michael",[13,13,[[3,1,1,0,1,[[129,1,1,0,1]]],[12,7,7,1,8,[[342,2,2,1,3],[343,1,1,3,4],[344,1,1,4,5],[345,1,1,5,6],[349,1,1,6,7],[364,1,1,7,8]]],[13,1,1,8,9,[[387,1,1,8,9]]],[14,1,1,9,10,[[410,1,1,9,10]]],[26,3,3,10,13,[[859,2,2,10,12],[861,1,1,12,13]]]],[4088,10441,10442,10494,10538,10591,10740,11127,11626,12209,22028,22036,22082]]]]},{"k":"H4318","v":[["*",[32,29,[[6,19,17,0,17,[[227,7,6,0,6],[228,12,11,6,17]]],[12,9,8,17,25,[[342,1,1,17,18],[345,2,2,18,20],[346,2,2,20,22],[360,1,1,22,23],[361,3,2,23,25]]],[13,2,2,25,27,[[384,1,1,25,26],[400,1,1,26,27]]],[15,1,1,27,28,[[423,1,1,27,28]]],[32,1,1,28,29,[[893,1,1,28,29]]]],[6985,6988,6989,6990,6992,6993,6995,6996,6997,7006,7008,7011,7015,7016,7019,7020,7024,10433,10609,10610,10655,10656,11003,11039,11040,11556,11953,12605,22580]]],["Micah",[23,22,[[6,16,15,0,15,[[227,7,6,0,6],[228,9,9,6,15]]],[12,5,5,15,20,[[342,1,1,15,16],[345,2,2,16,18],[346,2,2,18,20]]],[13,1,1,20,21,[[400,1,1,20,21]]],[32,1,1,21,22,[[893,1,1,21,22]]]],[6985,6988,6989,6990,6992,6993,6995,6996,6997,7006,7008,7015,7016,7019,7020,10433,10609,10610,10655,10656,11953,22580]]],["Micah's",[3,3,[[6,3,3,0,3,[[228,3,3,0,3]]]],[7011,7015,7024]]],["Micaiah",[1,1,[[13,1,1,0,1,[[384,1,1,0,1]]]],[11556]]],["Micha",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12605]]],["Michah",[4,3,[[12,4,3,0,3,[[360,1,1,0,1],[361,3,2,1,3]]]],[11003,11039,11040]]]]},{"k":"H4319","v":[["Micaiah",[1,1,[[13,1,1,0,1,[[384,1,1,0,1]]]],[11550]]]]},{"k":"H4320","v":[["*",[4,4,[[11,1,1,0,1,[[334,1,1,0,1]]],[15,2,2,1,3,[[424,2,2,1,3]]],[23,1,1,3,4,[[770,1,1,3,4]]]],[10157,12659,12665,19590]]],["Micah",[1,1,[[23,1,1,0,1,[[770,1,1,0,1]]]],[19590]]],["Michaiah",[3,3,[[11,1,1,0,1,[[334,1,1,0,1]]],[15,2,2,1,3,[[424,2,2,1,3]]]],[10157,12659,12665]]]]},{"k":"H4321","v":[["*",[20,20,[[6,2,2,0,2,[[227,2,2,0,2]]],[10,9,9,2,11,[[312,9,9,2,11]]],[13,7,7,11,18,[[384,7,7,11,18]]],[23,2,2,18,20,[[780,2,2,18,20]]]],[6981,6984,9488,9489,9493,9494,9495,9504,9505,9506,9508,11549,11554,11555,11565,11566,11567,11569,19853,19855]]],["Micah",[2,2,[[6,2,2,0,2,[[227,2,2,0,2]]]],[6981,6984]]],["Micaiah",[16,16,[[10,9,9,0,9,[[312,9,9,0,9]]],[13,7,7,9,16,[[384,7,7,9,16]]]],[9488,9489,9493,9494,9495,9504,9505,9506,9508,11549,11554,11555,11565,11566,11567,11569]]],["Michaiah",[2,2,[[23,2,2,0,2,[[780,2,2,0,2]]]],[19853,19855]]]]},{"k":"H4322","v":[["Michaiah",[2,2,[[13,2,2,0,2,[[379,1,1,0,1],[383,1,1,1,2]]]],[11455,11530]]]]},{"k":"H4323","v":[["brook",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8469]]]]},{"k":"H4324","v":[["Michal",[18,17,[[8,10,9,0,9,[[249,1,1,0,1],[253,3,3,1,4],[254,5,4,4,8],[260,1,1,8,9]]],[9,7,7,9,16,[[269,2,2,9,11],[272,4,4,11,15],[287,1,1,15,16]]],[12,1,1,16,17,[[352,1,1,16,17]]]],[7557,7696,7703,7704,7717,7718,7719,7723,7905,8094,8095,8173,8177,8178,8180,8588,10820]]]]},{"k":"H4325","v":[["*",[579,522,[[0,54,46,0,46,[[0,11,8,0,8],[5,1,1,8,9],[6,9,8,9,17],[7,9,8,17,25],[8,2,2,25,27],[15,1,1,27,28],[17,1,1,28,29],[20,5,4,29,33],[23,7,5,33,38],[25,4,4,38,42],[29,1,1,42,43],[36,1,1,43,44],[42,1,1,44,45],[48,1,1,45,46]]],[1,44,38,46,84,[[51,1,1,46,47],[53,2,1,47,48],[56,10,7,48,55],[57,2,2,55,57],[61,1,1,57,58],[63,5,5,58,63],[64,9,7,63,70],[66,4,4,70,74],[69,1,1,74,75],[72,1,1,75,76],[78,1,1,76,77],[79,2,2,77,79],[81,1,1,79,80],[83,1,1,80,81],[89,3,3,81,84]]],[2,43,40,84,124,[[90,2,2,84,86],[95,1,1,86,87],[97,2,2,87,89],[100,10,8,89,97],[103,7,7,97,104],[104,15,14,104,118],[105,4,4,118,122],[106,1,1,122,123],[111,1,1,123,124]]],[3,45,36,124,160,[[121,11,8,124,132],[124,1,1,132,133],[135,11,9,133,142],[136,10,9,142,151],[137,3,3,151,154],[140,3,2,154,156],[143,2,1,156,157],[147,2,1,157,158],[149,2,2,158,160]]],[4,21,20,160,180,[[154,2,2,160,162],[156,1,1,162,163],[157,1,1,163,164],[160,3,2,164,166],[161,2,2,166,168],[162,1,1,168,169],[163,2,2,169,171],[164,2,2,171,173],[166,1,1,173,174],[167,1,1,174,175],[175,2,2,175,177],[181,1,1,177,178],[184,1,1,178,179],[185,1,1,179,180]]],[5,23,20,180,200,[[188,1,1,180,181],[189,6,4,181,185],[190,4,3,185,188],[191,1,1,188,189],[193,1,1,189,190],[195,3,3,190,193],[197,2,2,193,195],[201,3,3,195,198],[202,1,1,198,199],[204,1,1,199,200]]],[6,13,11,200,211,[[211,1,1,200,201],[214,1,1,201,202],[215,3,3,202,205],[216,1,1,205,206],[217,6,4,206,210],[225,1,1,210,211]]],[8,8,8,211,219,[[242,1,1,211,212],[244,1,1,212,213],[260,1,1,213,214],[261,3,3,214,217],[265,2,2,217,219]]],[9,10,10,219,229,[[271,1,1,219,220],[278,1,1,220,221],[280,1,1,221,222],[283,2,2,222,224],[287,1,1,224,225],[288,2,2,225,227],[289,2,2,227,229]]],[10,19,17,229,246,[[303,8,7,229,236],[304,1,1,236,237],[307,1,1,237,238],[308,7,6,238,244],[309,1,1,244,245],[312,1,1,245,246]]],[11,23,19,246,265,[[314,7,5,246,251],[315,9,7,251,258],[317,1,1,258,259],[318,2,2,259,261],[320,1,1,261,262],[330,1,1,262,263],[331,1,1,263,264],[332,1,1,264,265]]],[12,3,3,265,268,[[348,2,2,265,267],[351,1,1,267,268]]],[13,4,4,268,272,[[384,1,1,268,269],[398,3,3,269,272]]],[14,1,1,272,273,[[412,1,1,272,273]]],[15,10,10,273,283,[[415,1,1,273,274],[416,1,1,274,275],[420,3,3,275,278],[421,3,3,278,281],[424,1,1,281,282],[425,1,1,282,283]]],[17,25,25,283,308,[[438,1,1,283,284],[440,1,1,284,285],[443,1,1,285,286],[444,1,1,286,287],[446,1,1,287,288],[447,1,1,288,289],[449,3,3,289,292],[450,1,1,292,293],[457,2,2,293,295],[459,2,2,295,297],[461,3,3,297,300],[462,1,1,300,301],[463,1,1,301,302],[464,1,1,302,303],[469,1,1,303,304],[471,1,1,304,305],[472,1,1,305,306],[473,2,2,306,308]]],[18,53,49,308,357,[[478,1,1,308,309],[495,3,3,309,312],[499,1,1,312,313],[500,1,1,313,314],[506,2,1,314,315],[509,1,1,315,316],[510,1,1,316,317],[519,1,1,317,318],[523,1,1,318,319],[535,1,1,319,320],[540,1,1,320,321],[542,1,1,321,322],[543,1,1,322,323],[546,4,4,323,327],[550,1,1,327,328],[551,1,1,328,329],[554,4,3,329,332],[555,3,3,332,335],[556,1,1,335,336],[558,1,1,336,337],[565,1,1,337,338],[570,1,1,338,339],[581,2,2,339,341],[582,2,2,341,343],[583,2,2,343,345],[584,4,3,345,348],[586,1,1,348,349],[591,2,1,349,350],[596,1,1,350,351],[601,2,2,351,353],[613,1,1,353,354],[621,1,1,354,355],[624,1,1,355,356],[625,1,1,356,357]]],[19,14,14,357,371,[[632,2,2,357,359],[635,2,2,359,361],[636,1,1,361,362],[644,1,1,362,363],[645,1,1,363,364],[647,1,1,364,365],[648,1,1,365,366],[652,2,2,366,368],[654,1,1,368,369],[657,2,2,369,371]]],[20,2,2,371,373,[[660,1,1,371,372],[669,1,1,372,373]]],[21,3,3,373,376,[[674,1,1,373,374],[675,1,1,374,375],[678,1,1,375,376]]],[22,55,51,376,427,[[679,2,2,376,378],[681,1,1,378,379],[686,2,2,379,381],[689,1,1,381,382],[690,1,1,382,383],[692,1,1,383,384],[693,2,2,384,386],[695,2,2,386,388],[696,1,1,388,389],[697,2,2,389,391],[699,1,1,391,392],[700,2,2,392,394],[701,1,1,394,395],[706,2,2,395,397],[708,3,3,397,400],[710,2,2,400,402],[711,1,1,402,403],[713,2,2,403,405],[714,1,1,405,406],[715,1,1,406,407],[718,1,1,407,408],[719,3,2,408,410],[721,3,3,410,413],[722,3,3,413,416],[726,3,2,416,418],[727,1,1,418,419],[728,1,1,419,420],[729,1,1,420,421],[732,2,1,421,422],[733,1,1,422,423],[735,1,1,423,424],[736,2,1,424,425],[741,1,1,425,426],[742,1,1,426,427]]],[23,29,26,427,453,[[746,4,2,427,429],[750,1,1,429,430],[752,1,1,430,431],[753,3,3,431,434],[754,1,1,434,435],[757,1,1,435,436],[758,2,1,436,437],[759,1,1,437,438],[761,2,2,438,440],[762,1,1,440,441],[767,1,1,441,442],[775,1,1,442,443],[782,1,1,443,444],[785,1,1,444,445],[790,2,2,445,447],[791,1,1,447,448],[792,1,1,448,449],[794,1,1,449,450],[795,3,3,450,453]]],[24,5,5,453,458,[[797,1,1,453,454],[798,1,1,454,455],[799,2,2,455,457],[801,1,1,457,458]]],[25,48,40,458,498,[[802,1,1,458,459],[805,3,3,459,462],[808,1,1,462,463],[813,2,2,463,465],[817,2,2,465,467],[818,2,2,467,469],[820,2,1,469,470],[822,1,1,470,471],[825,1,1,471,472],[827,2,2,472,474],[828,2,2,474,476],[832,7,6,476,482],[833,3,3,482,485],[835,1,1,485,486],[837,1,1,486,487],[844,1,1,487,488],[848,15,9,488,497],[849,1,1,497,498]]],[26,3,3,498,501,[[850,1,1,498,499],[861,2,2,499,501]]],[27,3,3,501,504,[[863,1,1,501,502],[866,1,1,502,503],[871,1,1,503,504]]],[28,2,2,504,506,[[876,1,1,504,505],[878,1,1,505,506]]],[29,5,5,506,511,[[882,1,1,506,507],[883,2,2,507,509],[886,1,1,509,510],[887,1,1,510,511]]],[31,2,2,511,513,[[890,1,1,511,512],[891,1,1,512,513]]],[32,1,1,513,514,[[893,1,1,513,514]]],[33,3,3,514,517,[[901,1,1,514,515],[902,2,2,515,517]]],[34,3,3,517,520,[[904,1,1,517,518],[905,2,2,518,520]]],[37,2,2,520,522,[[919,1,1,520,521],[924,1,1,521,522]]]],[1,5,6,8,9,19,20,21,154,165,166,169,176,177,178,179,183,184,186,188,190,191,192,194,196,216,220,388,428,527,528,532,538,602,604,608,623,634,710,711,712,724,868,1107,1314,1477,1564,1610,1700,1702,1703,1704,1705,1706,1709,1716,1730,1825,1910,1911,1915,1917,1918,1928,1930,1939,1942,1943,1945,1947,1984,1985,1986,1989,2055,2169,2340,2400,2402,2458,2524,2714,2719,2737,2754,2758,2877,2923,2938,3006,3007,3009,3029,3031,3033,3035,3043,3116,3117,3119,3120,3161,3162,3163,3173,3174,3175,3176,3178,3179,3180,3181,3184,3185,3186,3189,3190,3195,3205,3225,3227,3229,3250,3375,3809,3810,3811,3814,3815,3816,3818,3819,3946,4296,4297,4298,4302,4306,4307,4308,4309,4310,4313,4316,4319,4321,4322,4324,4328,4330,4335,4345,4356,4362,4452,4453,4568,4687,4769,4774,4944,4966,5022,5061,5144,5152,5166,5175,5193,5212,5219,5256,5264,5299,5342,5504,5511,5690,5809,5818,5879,5901,5906,5908,5909,5917,5928,5933,5935,5981,6058,6060,6064,6112,6114,6209,6211,6221,6266,6308,6524,6618,6627,6642,6648,6692,6698,6699,6700,6718,6948,7358,7402,7872,7916,7917,7921,7989,7990,8152,8313,8370,8469,8470,8590,8614,8619,8668,8669,9192,9193,9200,9201,9202,9203,9206,9233,9327,9345,9346,9354,9374,9376,9379,9393,9507,9559,9565,9570,9572,9573,9585,9587,9593,9595,9596,9598,9601,9659,9679,9696,9742,10055,10085,10118,10690,10691,10785,11568,11878,11879,11905,12258,12353,12382,12494,12496,12509,12522,12526,12531,12661,12673,12928,12961,13040,13081,13124,13143,13190,13192,13200,13219,13396,13400,13454,13455,13472,13475,13477,13501,13529,13551,13690,13763,13779,13823,13827,13942,14129,14133,14134,14218,14237,14311,14361,14373,14556,14617,14786,14840,14869,14885,14936,14937,14949,14950,15030,15061,15109,15110,15112,15126,15129,15133,15188,15224,15325,15430,15574,15577,15635,15647,15662,15683,15722,15732,15734,15773,15830,16034,16106,16107,16202,16312,16369,16375,16532,16533,16626,16631,16655,16887,16905,16959,16985,17134,17138,17188,17255,17267,17339,17514,17597,17610,17647,17676,17684,17708,17813,17814,17893,17903,17951,17966,17969,17995,17996,17999,18009,18012,18049,18061,18063,18080,18166,18181,18231,18237,18242,18261,18279,18295,18326,18327,18346,18377,18432,18468,18469,18507,18521,18525,18536,18537,18545,18615,18635,18646,18664,18683,18732,18741,18785,18797,18878,18887,18978,18983,19096,19167,19176,19190,19193,19214,19267,19296,19333,19365,19370,19398,19499,19700,19901,19969,20052,20053,20075,20114,20204,20225,20228,20267,20326,20351,20402,20408,20446,20488,20540,20545,20546,20594,20698,20699,20766,20771,20830,20833,20891,20951,21059,21112,21119,21147,21155,21234,21235,21237,21244,21245,21246,21250,21261,21262,21331,21384,21574,21680,21681,21682,21683,21684,21687,21688,21691,21698,21730,21749,22087,22088,22110,22162,22232,22311,22361,22418,22431,22447,22492,22501,22553,22565,22583,22707,22720,22726,22762,22778,22783,23010,23076]]],["+",[16,16,[[0,1,1,0,1,[[8,1,1,0,1]]],[1,2,2,1,3,[[53,1,1,1,2],[56,1,1,2,3]]],[3,1,1,3,4,[[121,1,1,3,4]]],[9,1,1,4,5,[[288,1,1,4,5]]],[13,1,1,5,6,[[398,1,1,5,6]]],[17,1,1,6,7,[[461,1,1,6,7]]],[18,5,5,7,12,[[495,1,1,7,8],[546,1,1,8,9],[584,2,2,9,11],[621,1,1,11,12]]],[22,1,1,12,13,[[726,1,1,12,13]]],[25,3,3,13,16,[[820,1,1,13,14],[832,1,1,14,15],[833,1,1,15,16]]]],[216,1610,1709,3811,8619,11905,13477,14134,14950,15732,15734,16312,18615,20891,21235,21262]]],["Waters",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20408]]],["washing",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12382]]],["water",[303,284,[[0,21,18,0,18,[[15,1,1,0,1],[17,1,1,1,2],[20,5,4,2,6],[23,7,5,6,11],[25,4,4,11,15],[36,1,1,15,16],[42,1,1,16,17],[48,1,1,17,18]]],[1,25,25,18,43,[[51,1,1,18,19],[53,1,1,19,20],[56,5,5,20,25],[57,1,1,25,26],[61,1,1,26,27],[64,2,2,27,29],[66,4,4,29,33],[69,1,1,33,34],[72,1,1,34,35],[78,1,1,35,36],[79,2,2,36,38],[81,1,1,38,39],[83,1,1,39,40],[89,3,3,40,43]]],[2,37,36,43,79,[[90,2,2,43,45],[95,1,1,45,46],[97,2,2,46,48],[100,4,4,48,52],[103,7,7,52,59],[104,15,14,59,73],[105,4,4,73,77],[106,1,1,77,78],[111,1,1,78,79]]],[3,41,33,79,112,[[121,10,7,79,86],[124,1,1,86,87],[135,11,9,87,96],[136,10,9,96,105],[137,2,2,105,107],[140,1,1,107,108],[143,2,1,108,109],[147,2,1,109,110],[149,2,2,110,112]]],[4,15,14,112,126,[[154,2,2,112,114],[160,3,2,114,116],[161,2,2,116,118],[163,2,2,118,120],[164,2,2,120,122],[167,1,1,122,123],[175,2,2,123,125],[181,1,1,125,126]]],[5,10,10,126,136,[[188,1,1,126,127],[189,2,2,127,129],[193,1,1,129,130],[195,3,3,130,133],[201,2,2,133,135],[202,1,1,135,136]]],[6,10,9,136,145,[[211,1,1,136,137],[214,1,1,137,138],[215,2,2,138,140],[216,1,1,140,141],[217,4,3,141,144],[225,1,1,144,145]]],[8,8,8,145,153,[[242,1,1,145,146],[244,1,1,146,147],[260,1,1,147,148],[261,3,3,148,151],[265,2,2,151,153]]],[9,6,6,153,159,[[280,1,1,153,154],[283,2,2,154,156],[287,1,1,156,157],[289,2,2,157,159]]],[10,19,17,159,176,[[303,8,7,159,166],[304,1,1,166,167],[307,1,1,167,168],[308,7,6,168,174],[309,1,1,174,175],[312,1,1,175,176]]],[11,14,12,176,188,[[314,1,1,176,177],[315,9,7,177,184],[318,2,2,184,186],[320,1,1,186,187],[332,1,1,187,188]]],[12,2,2,188,190,[[348,2,2,188,190]]],[13,2,2,190,192,[[384,1,1,190,191],[398,1,1,191,192]]],[14,1,1,192,193,[[412,1,1,192,193]]],[15,8,8,193,201,[[415,1,1,193,194],[420,3,3,194,197],[421,2,2,197,199],[424,1,1,199,200],[425,1,1,200,201]]],[17,7,7,201,208,[[443,1,1,201,202],[444,1,1,202,203],[449,1,1,203,204],[450,1,1,204,205],[457,1,1,205,206],[469,1,1,206,207],[471,1,1,207,208]]],[18,12,12,208,220,[[478,1,1,208,209],[499,1,1,209,210],[519,1,1,210,211],[540,1,1,211,212],[542,1,1,212,213],[543,1,1,213,214],[554,1,1,214,215],[556,1,1,215,216],[565,1,1,216,217],[584,1,1,217,218],[586,1,1,218,219],[591,1,1,219,220]]],[19,7,7,220,227,[[635,1,1,220,221],[644,1,1,221,222],[647,1,1,222,223],[648,1,1,223,224],[652,1,1,224,225],[654,1,1,225,226],[657,1,1,226,227]]],[20,1,1,227,228,[[660,1,1,227,228]]],[22,22,21,228,249,[[679,2,2,228,230],[681,1,1,230,231],[690,1,1,231,232],[692,1,1,232,233],[699,1,1,233,234],[700,1,1,234,235],[708,2,2,235,237],[710,1,1,237,238],[713,1,1,238,239],[715,1,1,239,240],[719,3,2,240,242],[722,3,3,242,245],[727,1,1,245,246],[728,1,1,246,247],[736,1,1,247,248],[741,1,1,248,249]]],[23,7,7,249,256,[[746,1,1,249,250],[752,1,1,250,251],[753,1,1,251,252],[757,1,1,252,253],[758,1,1,253,254],[767,1,1,254,255],[782,1,1,255,256]]],[24,4,4,256,260,[[797,1,1,256,257],[798,1,1,257,258],[799,1,1,258,259],[801,1,1,259,260]]],[25,14,14,260,274,[[805,3,3,260,263],[808,1,1,263,264],[813,2,2,264,266],[817,2,2,266,268],[822,1,1,268,269],[825,1,1,269,270],[827,1,1,270,271],[832,2,2,271,273],[837,1,1,273,274]]],[26,1,1,274,275,[[850,1,1,274,275]]],[27,3,3,275,278,[[863,1,1,275,276],[866,1,1,276,277],[871,1,1,277,278]]],[29,2,2,278,280,[[882,1,1,278,279],[886,1,1,279,280]]],[31,1,1,280,281,[[891,1,1,280,281]]],[33,1,1,281,282,[[901,1,1,281,282]]],[34,1,1,282,283,[[905,1,1,282,283]]],[37,1,1,283,284,[[919,1,1,283,284]]]],[388,428,527,528,532,538,602,604,608,623,634,710,711,712,724,1107,1314,1477,1564,1610,1700,1703,1704,1706,1709,1730,1825,1942,1947,1984,1985,1986,1989,2055,2169,2340,2400,2402,2458,2524,2714,2719,2737,2754,2758,2877,2923,2938,3029,3031,3033,3035,3116,3117,3119,3120,3161,3162,3163,3173,3174,3175,3176,3178,3179,3180,3181,3184,3185,3186,3189,3190,3195,3205,3225,3227,3229,3250,3375,3809,3810,3814,3815,3816,3818,3819,3946,4296,4297,4298,4302,4306,4307,4308,4309,4310,4313,4316,4319,4321,4322,4324,4328,4330,4335,4345,4356,4453,4568,4687,4769,4774,4944,4966,5144,5152,5166,5175,5212,5219,5256,5264,5342,5504,5511,5690,5879,5901,5908,5981,6058,6060,6064,6211,6221,6266,6524,6618,6627,6648,6692,6698,6699,6700,6948,7358,7402,7872,7916,7917,7921,7989,7990,8370,8469,8470,8590,8668,8669,9192,9193,9200,9201,9202,9203,9206,9233,9327,9345,9346,9354,9374,9376,9379,9393,9507,9570,9585,9587,9593,9595,9596,9598,9601,9679,9696,9742,10118,10690,10691,11568,11879,12258,12353,12494,12496,12509,12526,12531,12661,12673,13040,13081,13190,13219,13396,13690,13763,13942,14218,14556,14840,14869,14885,15110,15188,15325,15734,15773,15830,16626,16887,16959,16985,17134,17188,17267,17339,17676,17684,17708,17903,17951,18049,18063,18231,18237,18261,18327,18377,18468,18469,18536,18537,18545,18646,18664,18797,18878,18978,19167,19190,19267,19296,19499,19901,20326,20351,20402,20446,20540,20545,20546,20594,20698,20699,20766,20771,20951,21059,21112,21244,21246,21384,21749,22110,22162,22232,22418,22492,22565,22707,22778,23010]]],["watering",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[868]]],["waters",[257,231,[[0,31,26,0,26,[[0,11,8,0,8],[5,1,1,8,9],[6,9,8,9,17],[7,9,8,17,25],[8,1,1,25,26]]],[1,17,15,26,41,[[56,4,3,26,29],[57,1,1,29,30],[63,5,5,30,35],[64,7,6,35,41]]],[2,6,4,41,45,[[100,6,4,41,45]]],[3,3,3,45,48,[[137,1,1,45,46],[140,2,2,46,48]]],[4,6,6,48,54,[[156,1,1,48,49],[157,1,1,49,50],[162,1,1,50,51],[166,1,1,51,52],[184,1,1,52,53],[185,1,1,53,54]]],[5,13,10,54,64,[[189,4,2,54,56],[190,4,3,56,59],[191,1,1,59,60],[197,2,2,60,62],[201,1,1,62,63],[204,1,1,63,64]]],[6,3,2,64,66,[[215,1,1,64,65],[217,2,1,65,66]]],[9,3,3,66,69,[[271,1,1,66,67],[278,1,1,67,68],[288,1,1,68,69]]],[11,9,7,69,76,[[314,6,4,69,73],[317,1,1,73,74],[330,1,1,74,75],[331,1,1,75,76]]],[12,1,1,76,77,[[351,1,1,76,77]]],[13,1,1,77,78,[[398,1,1,77,78]]],[15,1,1,78,79,[[421,1,1,78,79]]],[17,17,17,79,96,[[438,1,1,79,80],[440,1,1,80,81],[446,1,1,81,82],[447,1,1,82,83],[449,2,2,83,85],[457,1,1,85,86],[459,2,2,86,88],[461,2,2,88,90],[462,1,1,90,91],[463,1,1,91,92],[464,1,1,92,93],[472,1,1,93,94],[473,2,2,94,96]]],[18,36,34,96,130,[[495,2,2,96,98],[500,1,1,98,99],[506,2,1,99,100],[509,1,1,100,101],[510,1,1,101,102],[523,1,1,102,103],[535,1,1,103,104],[546,3,3,104,107],[550,1,1,107,108],[551,1,1,108,109],[554,3,2,109,111],[555,3,3,111,114],[558,1,1,114,115],[570,1,1,115,116],[581,2,2,116,118],[582,2,2,118,120],[583,2,2,120,122],[584,1,1,122,123],[591,1,1,123,124],[596,1,1,124,125],[601,2,2,125,127],[613,1,1,127,128],[624,1,1,128,129],[625,1,1,129,130]]],[19,7,7,130,137,[[632,2,2,130,132],[635,1,1,132,133],[636,1,1,133,134],[645,1,1,134,135],[652,1,1,135,136],[657,1,1,136,137]]],[20,1,1,137,138,[[669,1,1,137,138]]],[21,3,3,138,141,[[674,1,1,138,139],[675,1,1,139,140],[678,1,1,140,141]]],[22,32,30,141,171,[[686,2,2,141,143],[689,1,1,143,144],[693,2,2,144,146],[695,2,2,146,148],[696,1,1,148,149],[697,2,2,149,151],[700,1,1,151,152],[701,1,1,152,153],[706,2,2,153,155],[708,1,1,155,156],[710,1,1,156,157],[711,1,1,157,158],[713,1,1,158,159],[714,1,1,159,160],[718,1,1,160,161],[721,3,3,161,164],[726,2,1,164,165],[729,1,1,165,166],[732,2,1,166,167],[733,1,1,167,168],[735,1,1,168,169],[736,1,1,169,170],[742,1,1,170,171]]],[23,22,21,171,192,[[746,3,2,171,173],[750,1,1,173,174],[753,2,2,174,176],[754,1,1,176,177],[758,1,1,177,178],[759,1,1,178,179],[761,2,2,179,181],[762,1,1,181,182],[775,1,1,182,183],[785,1,1,183,184],[790,2,2,184,186],[791,1,1,186,187],[792,1,1,187,188],[794,1,1,188,189],[795,3,3,189,192]]],[25,31,25,192,217,[[802,1,1,192,193],[818,2,2,193,195],[820,1,1,195,196],[827,1,1,196,197],[828,2,2,197,199],[832,4,4,199,203],[833,2,2,203,205],[835,1,1,205,206],[844,1,1,206,207],[848,15,9,207,216],[849,1,1,216,217]]],[26,2,2,217,219,[[861,2,2,217,219]]],[28,2,2,219,221,[[876,1,1,219,220],[878,1,1,220,221]]],[29,3,3,221,224,[[883,2,2,221,223],[887,1,1,223,224]]],[31,1,1,224,225,[[890,1,1,224,225]]],[32,1,1,225,226,[[893,1,1,225,226]]],[33,2,2,226,228,[[902,2,2,226,228]]],[34,2,2,228,230,[[904,1,1,228,229],[905,1,1,229,230]]],[37,1,1,230,231,[[924,1,1,230,231]]]],[1,5,6,8,9,19,20,21,154,165,166,169,176,177,178,179,183,184,186,188,190,191,192,194,196,220,1702,1704,1705,1716,1910,1911,1915,1917,1918,1928,1930,1939,1943,1945,1947,3006,3007,3009,3043,4362,4452,4453,5022,5061,5193,5299,5809,5818,5906,5909,5917,5928,5933,5935,6112,6114,6209,6308,6642,6718,8152,8313,8614,9559,9565,9572,9573,9659,10055,10085,10785,11878,12522,12928,12961,13124,13143,13192,13200,13400,13454,13455,13472,13475,13501,13529,13551,13779,13823,13827,14129,14133,14237,14311,14361,14373,14617,14786,14936,14937,14949,15030,15061,15109,15112,15126,15129,15133,15224,15430,15574,15577,15635,15647,15662,15683,15722,15830,16034,16106,16107,16202,16369,16375,16532,16533,16631,16655,16905,17138,17255,17514,17597,17610,17647,17813,17814,17893,17966,17969,17995,17996,17999,18009,18012,18061,18080,18166,18181,18242,18279,18295,18326,18346,18432,18507,18521,18525,18635,18683,18732,18741,18785,18797,18887,18978,18983,19096,19176,19193,19214,19296,19333,19365,19370,19398,19700,19969,20052,20053,20075,20114,20204,20225,20228,20267,20488,20830,20833,20891,21119,21147,21155,21234,21237,21244,21245,21250,21261,21331,21574,21680,21681,21682,21683,21684,21687,21688,21691,21698,21730,22087,22088,22311,22361,22431,22447,22501,22553,22583,22720,22726,22762,22783,23076]]]]},{"k":"H4326","v":[["*",[4,4,[[12,1,1,0,1,[[361,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]],[15,2,2,2,4,[[422,1,1,2,3],[424,1,1,3,4]]]],[11024,12277,12556,12629]]],["Miamin",[2,2,[[14,1,1,0,1,[[412,1,1,0,1]]],[15,1,1,1,2,[[424,1,1,1,2]]]],[12277,12629]]],["Mijamin",[2,2,[[12,1,1,0,1,[[361,1,1,0,1]]],[15,1,1,1,2,[[422,1,1,1,2]]]],[11024,12556]]]]},{"k":"H4327","v":[["*",[31,18,[[0,17,7,0,7,[[0,10,5,0,5],[5,3,1,5,6],[6,4,1,6,7]]],[2,9,6,7,13,[[100,9,6,7,13]]],[4,4,4,13,17,[[166,4,4,13,17]]],[25,1,1,17,18,[[848,1,1,17,18]]]],[10,11,20,23,24,157,173,3011,3012,3013,3016,3019,3026,5303,5304,5305,5308,21689]]],["kind",[30,17,[[0,17,7,0,7,[[0,10,5,0,5],[5,3,1,5,6],[6,4,1,6,7]]],[2,9,6,7,13,[[100,9,6,7,13]]],[4,4,4,13,17,[[166,4,4,13,17]]]],[10,11,20,23,24,157,173,3011,3012,3013,3016,3019,3026,5303,5304,5305,5308]]],["kinds",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21689]]]]},{"k":"H4328","v":[["foundations",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21534]]]]},{"k":"H4329","v":[["covert",[1,1,[[11,1,1,0,1,[[328,1,1,0,1]]]],[9981]]]]},{"k":"H4330","v":[["*",[3,1,[[19,3,1,0,1,[[657,3,1,0,1]]]],[17284]]],["churning",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17284]]],["forcing",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17284]]],["wringing",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17284]]]]},{"k":"H4331","v":[["Mesha",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10584]]]]},{"k":"H4332","v":[["Mishael",[7,7,[[1,1,1,0,1,[[55,1,1,0,1]]],[2,1,1,1,2,[[99,1,1,1,2]]],[15,1,1,2,3,[[420,1,1,2,3]]],[26,4,4,3,7,[[850,4,4,3,7]]]],[1677,2981,12497,21743,21744,21748,21756]]]]},{"k":"H4333","v":[["Mishael",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21775]]]]},{"k":"H4334","v":[["*",[23,23,[[4,2,2,0,2,[[155,1,1,0,1],[156,1,1,1,2]]],[5,5,5,2,7,[[199,4,4,2,6],[206,1,1,6,7]]],[10,2,2,7,9,[[310,2,2,7,9]]],[13,1,1,9,10,[[392,1,1,9,10]]],[18,5,5,10,15,[[503,1,1,10,11],[504,1,1,11,12],[522,1,1,12,13],[544,1,1,13,14],[620,1,1,14,15]]],[22,3,3,15,18,[[689,1,1,15,16],[718,1,1,16,17],[720,1,1,17,18]]],[23,3,3,18,21,[[765,1,1,18,19],[792,2,2,19,21]]],[37,1,1,21,22,[[914,1,1,21,22]]],[38,1,1,22,23,[[926,1,1,22,23]]]],[4985,5047,6163,6170,6171,6175,6380,9431,9433,11742,14285,14296,14603,14897,16303,17888,18424,18496,19453,20088,20101,22929,23109]]],["equity",[2,2,[[22,1,1,0,1,[[689,1,1,0,1]]],[38,1,1,1,2,[[926,1,1,1,2]]]],[17888,23109]]],["place",[1,1,[[18,1,1,0,1,[[503,1,1,0,1]]]],[14285]]],["plain",[14,14,[[4,2,2,0,2,[[155,1,1,0,1],[156,1,1,1,2]]],[5,5,5,2,7,[[199,4,4,2,6],[206,1,1,6,7]]],[10,2,2,7,9,[[310,2,2,7,9]]],[18,1,1,9,10,[[504,1,1,9,10]]],[23,3,3,10,13,[[765,1,1,10,11],[792,2,2,11,13]]],[37,1,1,13,14,[[914,1,1,13,14]]]],[4985,5047,6163,6170,6171,6175,6380,9431,9433,14296,19453,20088,20101,22929]]],["plains",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11742]]],["right",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14603]]],["righteously",[1,1,[[18,1,1,0,1,[[544,1,1,0,1]]]],[14897]]],["straight",[2,2,[[22,2,2,0,2,[[718,1,1,0,1],[720,1,1,1,2]]]],[18424,18496]]],["uprightness",[1,1,[[18,1,1,0,1,[[620,1,1,0,1]]]],[16303]]]]},{"k":"H4335","v":[["Meshach",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21744]]]]},{"k":"H4336","v":[["Meshach",[14,13,[[26,14,13,0,13,[[851,1,1,0,1],[852,13,12,1,13]]]],[21807,21819,21820,21821,21823,21826,21827,21829,21830,21833,21835,21836,21837]]]]},{"k":"H4337","v":[["Mesha",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10348]]]]},{"k":"H4338","v":[["Mesha",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9580]]]]},{"k":"H4339","v":[["*",[19,19,[[12,1,1,0,1,[[366,1,1,0,1]]],[18,7,7,1,8,[[486,1,1,1,2],[494,1,1,2,3],[535,1,1,3,4],[552,1,1,4,5],[573,1,1,5,6],[575,1,1,6,7],[576,1,1,7,8]]],[19,5,5,8,13,[[628,1,1,8,9],[629,1,1,9,10],[635,1,1,10,11],[650,2,2,11,13]]],[21,2,2,13,15,[[671,1,1,13,14],[677,1,1,14,15]]],[22,3,3,15,18,[[704,1,1,15,16],[711,1,1,16,17],[723,1,1,17,18]]],[26,1,1,18,19,[[860,1,1,18,19]]]],[11181,14029,14105,14780,15073,15475,15499,15503,16403,16442,16608,17060,17075,17541,17636,18137,18294,18580,22042]]],["agreement",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22042]]],["aright",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17075]]],["equal",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14105]]],["equity",[4,4,[[18,2,2,0,2,[[575,1,1,0,1],[576,1,1,1,2]]],[19,2,2,2,4,[[628,1,1,2,3],[629,1,1,3,4]]]],[15499,15503,16403,16442]]],["right",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18580]]],["righteously",[1,1,[[18,1,1,0,1,[[573,1,1,0,1]]]],[15475]]],["sweetly",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17636]]],["things",[2,2,[[19,2,2,0,2,[[635,1,1,0,1],[650,1,1,1,2]]]],[16608,17060]]],["upright",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17541]]],["uprightly",[3,3,[[18,2,2,0,2,[[535,1,1,0,1],[552,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]]],[14780,15073,18294]]],["uprightness",[3,3,[[12,1,1,0,1,[[366,1,1,0,1]]],[18,1,1,1,2,[[486,1,1,1,2]]],[22,1,1,2,3,[[704,1,1,2,3]]]],[11181,14029,18137]]]]},{"k":"H4340","v":[["*",[9,9,[[1,2,2,0,2,[[84,1,1,0,1],[88,1,1,1,2]]],[3,4,4,2,6,[[119,2,2,2,4],[120,2,2,4,6]]],[18,1,1,6,7,[[498,1,1,6,7]]],[22,1,1,7,8,[[732,1,1,7,8]]],[23,1,1,8,9,[[754,1,1,8,9]]]],[2549,2704,3718,3729,3769,3775,14203,18725,19221]]],["cords",[8,8,[[1,2,2,0,2,[[84,1,1,0,1],[88,1,1,1,2]]],[3,4,4,2,6,[[119,2,2,2,4],[120,2,2,4,6]]],[22,1,1,6,7,[[732,1,1,6,7]]],[23,1,1,7,8,[[754,1,1,7,8]]]],[2549,2704,3718,3729,3769,3775,18725,19221]]],["strings",[1,1,[[18,1,1,0,1,[[498,1,1,0,1]]]],[14203]]]]},{"k":"H4341","v":[["*",[16,15,[[1,1,1,0,1,[[52,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[17,1,1,2,3,[[468,1,1,2,3]]],[18,3,3,3,6,[[509,1,1,3,4],[515,1,1,4,5],[546,1,1,5,6]]],[20,2,2,6,8,[[659,1,1,6,7],[660,1,1,7,8]]],[22,2,2,8,10,[[731,2,2,8,10]]],[23,3,3,10,13,[[774,1,1,10,11],[789,1,1,11,12],[795,1,1,12,13]]],[24,3,2,13,15,[[797,3,2,13,15]]]],[1586,11311,13669,14365,14507,14961,17333,17356,18714,18715,19682,20043,20220,20322,20328]]],["grief",[2,2,[[13,1,1,0,1,[[372,1,1,0,1]]],[18,1,1,1,2,[[546,1,1,1,2]]]],[11311,14961]]],["pain",[2,2,[[17,1,1,0,1,[[468,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[13669,20220]]],["sorrow",[7,6,[[18,1,1,0,1,[[515,1,1,0,1]]],[20,1,1,1,2,[[659,1,1,1,2]]],[23,2,2,2,4,[[774,1,1,2,3],[789,1,1,3,4]]],[24,3,2,4,6,[[797,3,2,4,6]]]],[14507,17333,19682,20043,20322,20328]]],["sorrows",[5,5,[[1,1,1,0,1,[[52,1,1,0,1]]],[18,1,1,1,2,[[509,1,1,1,2]]],[20,1,1,2,3,[[660,1,1,2,3]]],[22,2,2,3,5,[[731,2,2,3,5]]]],[1586,14365,17356,18714,18715]]]]},{"k":"H4342","v":[["abundance",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13767]]]]},{"k":"H4343","v":[["Machbenah",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10355]]]]},{"k":"H4344","v":[["Machbanai",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10733]]]]},{"k":"H4345","v":[["*",[6,6,[[1,6,6,0,6,[[76,1,1,0,1],[84,1,1,1,2],[87,3,3,2,5],[88,1,1,5,6]]]],[2276,2547,2637,2638,2663,2703]]],["+",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2547]]],["grate",[5,5,[[1,5,5,0,5,[[76,1,1,0,1],[87,3,3,1,4],[88,1,1,4,5]]]],[2276,2637,2638,2663,2703]]]]},{"k":"H4346","v":[["cloth",[1,1,[[11,1,1,0,1,[[320,1,1,0,1]]]],[9742]]]]},{"k":"H4347","v":[["*",[48,46,[[2,1,1,0,1,[[115,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[4,6,4,2,6,[[177,1,1,2,3],[180,4,2,3,5],[181,1,1,5,6]]],[5,2,2,6,8,[[196,2,2,6,8]]],[6,2,2,8,10,[[221,1,1,8,9],[225,1,1,9,10]]],[8,7,7,10,17,[[239,2,2,10,12],[241,1,1,12,13],[249,2,2,13,15],[254,1,1,15,16],[258,1,1,16,17]]],[10,2,2,17,19,[[310,1,1,17,18],[312,1,1,18,19]]],[11,2,2,19,21,[[320,1,1,19,20],[321,1,1,20,21]]],[13,4,4,21,25,[[368,1,1,21,22],[379,1,1,22,23],[388,1,1,23,24],[394,1,1,24,25]]],[16,1,1,25,26,[[434,1,1,25,26]]],[18,1,1,26,27,[[541,1,1,26,27]]],[19,1,1,27,28,[[647,1,1,27,28]]],[22,5,5,28,33,[[679,1,1,28,29],[688,1,1,29,30],[692,1,1,30,31],[705,1,1,31,32],[708,1,1,32,33]]],[23,10,10,33,43,[[750,1,1,33,34],[754,1,1,34,35],[758,1,1,35,36],[759,1,1,36,37],[763,1,1,37,38],[774,3,3,38,41],[793,1,1,41,42],[794,1,1,42,43]]],[32,1,1,43,44,[[893,1,1,43,44]]],[33,1,1,44,45,[[902,1,1,44,45]]],[37,1,1,45,46,[[923,1,1,45,46]]]],[3545,4057,5550,5670,5672,5701,6074,6084,6862,6937,7305,7307,7350,7522,7538,7714,7815,9429,9515,9756,9771,11221,11470,11650,11769,12839,14857,16984,17660,17876,17934,18158,18243,19096,19220,19310,19333,19415,19679,19681,19684,20144,20179,22588,22731,23065]]],["+",[2,2,[[22,1,1,0,1,[[692,1,1,0,1]]],[23,1,1,1,2,[[774,1,1,1,2]]]],[17934,19684]]],["beaten",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11221]]],["blow",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19310]]],["plague",[2,2,[[3,1,1,0,1,[[127,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]]],[4057,5672]]],["plagues",[9,7,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,4,2,1,3,[[180,3,1,1,2],[181,1,1,2,3]]],[8,1,1,3,4,[[239,1,1,3,4]]],[23,3,3,4,7,[[763,1,1,4,5],[793,1,1,5,6],[794,1,1,6,7]]]],[3545,5670,5701,7305,19415,20144,20179]]],["slaughter",[14,14,[[5,2,2,0,2,[[196,2,2,0,2]]],[6,2,2,2,4,[[221,1,1,2,3],[225,1,1,3,4]]],[8,6,6,4,10,[[239,1,1,4,5],[241,1,1,5,6],[249,2,2,6,8],[254,1,1,8,9],[258,1,1,9,10]]],[10,1,1,10,11,[[310,1,1,10,11]]],[13,2,2,11,13,[[379,1,1,11,12],[394,1,1,12,13]]],[22,1,1,13,14,[[688,1,1,13,14]]]],[6074,6084,6862,6937,7307,7350,7522,7538,7714,7815,9429,11470,11769,17876]]],["smote",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18158]]],["sores",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17660]]],["stripes",[2,2,[[4,1,1,0,1,[[177,1,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]]],[5550,16984]]],["stroke",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12839]]],["wound",[8,8,[[10,1,1,0,1,[[312,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]],[23,4,4,2,6,[[754,1,1,2,3],[759,1,1,3,4],[774,2,2,4,6]]],[32,1,1,6,7,[[893,1,1,6,7]]],[33,1,1,7,8,[[902,1,1,7,8]]]],[9515,18243,19220,19333,19679,19681,22588,22731]]],["wounded",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14857]]],["wounds",[5,5,[[11,2,2,0,2,[[320,1,1,0,1],[321,1,1,1,2]]],[13,1,1,2,3,[[388,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]],[37,1,1,4,5,[[923,1,1,4,5]]]],[9756,9771,11650,19096,23065]]]]},{"k":"H4348","v":[["*",[5,3,[[2,5,3,0,3,[[102,5,3,0,3]]]],[3076,3077,3080]]],["burneth",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3076]]],["burning",[4,3,[[2,4,3,0,3,[[102,4,3,0,3]]]],[3076,3077,3080]]]]},{"k":"H4349","v":[["*",[17,17,[[1,1,1,0,1,[[64,1,1,0,1]]],[10,4,4,1,5,[[298,4,4,1,5]]],[13,4,4,5,9,[[372,4,4,5,9]]],[14,1,1,9,10,[[404,1,1,9,10]]],[18,4,4,10,14,[[510,1,1,10,11],[566,1,1,11,12],[574,1,1,12,13],[581,1,1,13,14]]],[22,2,2,14,16,[[682,1,1,14,15],[696,1,1,15,16]]],[26,1,1,16,17,[[857,1,1,16,17]]]],[1937,8998,9024,9028,9034,11284,11312,11315,11321,12095,14380,15340,15480,15576,17738,18001,21972]]],["+",[3,3,[[13,2,2,0,2,[[372,2,2,0,2]]],[18,1,1,2,3,[[510,1,1,2,3]]]],[11315,11321,14380]]],["foundations",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15576]]],["habitation",[2,2,[[18,2,2,0,2,[[566,1,1,0,1],[574,1,1,1,2]]]],[15340,15480]]],["place",[11,11,[[1,1,1,0,1,[[64,1,1,0,1]]],[10,4,4,1,5,[[298,4,4,1,5]]],[13,2,2,5,7,[[372,2,2,5,7]]],[14,1,1,7,8,[[404,1,1,7,8]]],[22,2,2,8,10,[[682,1,1,8,9],[696,1,1,9,10]]],[26,1,1,10,11,[[857,1,1,10,11]]]],[1937,8998,9024,9028,9034,11284,11312,12095,17738,18001,21972]]]]},{"k":"H4350","v":[["*",[23,18,[[10,14,10,0,10,[[297,14,10,0,10]]],[11,3,3,10,13,[[328,1,1,10,11],[337,2,2,11,13]]],[13,2,1,13,14,[[370,2,1,13,14]]],[14,1,1,14,15,[[405,1,1,14,15]]],[23,3,3,15,18,[[771,1,1,15,16],[796,2,2,16,18]]]],[8961,8962,8964,8966,8968,8969,8971,8972,8973,8977,9980,10235,10238,11260,12100,19615,20293,20296]]],["base",[7,5,[[10,7,5,0,5,[[297,7,5,0,5]]]],[8961,8964,8966,8968,8969]]],["bases",[16,14,[[10,7,6,0,6,[[297,7,6,0,6]]],[11,3,3,6,9,[[328,1,1,6,7],[337,2,2,7,9]]],[13,2,1,9,10,[[370,2,1,9,10]]],[14,1,1,10,11,[[405,1,1,10,11]]],[23,3,3,11,14,[[771,1,1,11,12],[796,2,2,12,14]]]],[8961,8962,8971,8972,8973,8977,9980,10235,10238,11260,12100,19615,20293,20296]]]]},{"k":"H4351","v":[["*",[3,3,[[25,3,3,0,3,[[817,1,1,0,1],[822,1,1,1,2],[830,1,1,2,3]]]],[20765,20974,21197]]],["birth",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20765]]],["habitation",[1,1,[[25,1,1,0,1,[[830,1,1,0,1]]]],[21197]]],["nativity",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20974]]]]},{"k":"H4352","v":[["Machi",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4090]]]]},{"k":"H4353","v":[["Machir",[22,20,[[0,1,1,0,1,[[49,1,1,0,1]]],[3,6,5,1,6,[[142,2,1,1,2],[143,1,1,2,3],[148,2,2,3,5],[152,1,1,5,6]]],[4,1,1,6,7,[[155,1,1,6,7]]],[5,4,3,7,10,[[199,2,1,7,8],[203,2,2,8,10]]],[6,1,1,10,11,[[215,1,1,10,11]]],[9,3,3,11,14,[[275,2,2,11,13],[283,1,1,13,14]]],[12,6,6,14,20,[[339,2,2,14,16],[344,4,4,16,20]]]],[1529,4518,4555,4757,4758,4880,4990,6185,6276,6278,6637,8231,8232,8476,10327,10329,10549,10550,10551,10552]]]]},{"k":"H4354","v":[["Machirites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4518]]]]},{"k":"H4355","v":[["*",[3,3,[[17,1,1,0,1,[[459,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]],[20,1,1,2,3,[[668,1,1,2,3]]]],[13460,15694,17511]]],["decayeth",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17511]]],["low",[2,2,[[17,1,1,0,1,[[459,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]]],[13460,15694]]]]},{"k":"H4356","v":[["+",[3,3,[[18,2,2,0,2,[[527,1,1,0,1],[555,1,1,1,2]]],[34,1,1,2,3,[[905,1,1,2,3]]]],[14677,15183,22785]]]]},{"k":"H4357","v":[["perfect",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11267]]]]},{"k":"H4358","v":[["*",[2,2,[[25,2,2,0,2,[[824,1,1,0,1],[839,1,1,1,2]]]],[21019,21429]]],["gorgeously",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21019]]],["sorts",[1,1,[[25,1,1,0,1,[[839,1,1,0,1]]]],[21429]]]]},{"k":"H4359","v":[["perfection",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14670]]]]},{"k":"H4360","v":[["sorts",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21145]]]]},{"k":"H4361","v":[["food",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8889]]]]},{"k":"H4362","v":[["treasures",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22079]]]]},{"k":"H4363","v":[["*",[11,11,[[8,7,7,0,7,[[248,5,5,0,5],[249,2,2,5,7]]],[14,1,1,7,8,[[404,1,1,7,8]]],[15,2,2,8,10,[[419,1,1,8,9],[423,1,1,9,10]]],[22,1,1,10,11,[[688,1,1,10,11]]]],[7487,7490,7496,7501,7508,7513,7539,12054,12451,12619,17878]]],["+",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7539]]],["Michmas",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12054,12451]]],["Michmash",[8,8,[[8,6,6,0,6,[[248,5,5,0,5],[249,1,1,5,6]]],[15,1,1,6,7,[[423,1,1,6,7]]],[22,1,1,7,8,[[688,1,1,7,8]]]],[7487,7490,7496,7501,7508,7513,12619,17878]]]]},{"k":"H4364","v":[["*",[2,2,[[18,1,1,0,1,[[618,1,1,0,1]]],[22,1,1,1,2,[[729,1,1,1,2]]]],[16286,18693]]],["net",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18693]]],["nets",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16286]]]]},{"k":"H4365","v":[["*",[3,3,[[22,1,1,0,1,[[697,1,1,0,1]]],[34,2,2,1,3,[[903,2,2,1,3]]]],[18012,22746,22747]]],["drag",[2,2,[[34,2,2,0,2,[[903,2,2,0,2]]]],[22746,22747]]],["nets",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18012]]]]},{"k":"H4366","v":[["Michmethah",[2,2,[[5,2,2,0,2,[[202,1,1,0,1],[203,1,1,1,2]]]],[6271,6282]]]]},{"k":"H4367","v":[["Machnadebai",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12292]]]]},{"k":"H4368","v":[["Mekonah",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12616]]]]},{"k":"H4369","v":[["base",[1,1,[[37,1,1,0,1,[[915,1,1,0,1]]]],[22947]]]]},{"k":"H4370","v":[["breeches",[5,5,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[2,2,2,2,4,[[95,1,1,2,3],[105,1,1,3,4]]],[25,1,1,4,5,[[845,1,1,4,5]]]],[2335,2692,2859,3205,21617]]]]},{"k":"H4371","v":[["tribute",[6,6,[[3,6,6,0,6,[[147,6,6,0,6]]]],[4692,4701,4702,4703,4704,4705]]]]},{"k":"H4372","v":[["*",[16,12,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,8,5,1,6,[[75,2,1,1,2],[84,1,1,2,3],[85,2,1,3,4],[88,2,1,4,5],[89,1,1,5,6]]],[3,7,6,6,12,[[119,1,1,6,7],[120,6,5,7,12]]]],[196,2249,2542,2585,2698,2726,3717,3751,3753,3754,3755,3768]]],["+",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2542]]],["covering",[15,11,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,7,4,1,5,[[75,2,1,1,2],[85,2,1,2,3],[88,2,1,3,4],[89,1,1,4,5]]],[3,7,6,5,11,[[119,1,1,5,6],[120,6,5,6,11]]]],[196,2249,2585,2698,2726,3717,3751,3753,3754,3755,3768]]]]},{"k":"H4373","v":[["*",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]]],[1820,3593]]],["number",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1820]]],["worth",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3593]]]]},{"k":"H4374","v":[["*",[4,4,[[2,1,1,0,1,[[98,1,1,0,1]]],[22,2,2,1,3,[[692,1,1,1,2],[701,1,1,2,3]]],[25,1,1,3,4,[[828,1,1,3,4]]]],[2972,17939,18095,21128]]],["clothing",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18095]]],["cover",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17939]]],["covered",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21128]]],["covereth",[1,1,[[2,1,1,0,1,[[98,1,1,0,1]]]],[2972]]]]},{"k":"H4375","v":[["Machpelah",[6,6,[[0,6,6,0,6,[[22,3,3,0,3],[24,1,1,3,4],[48,1,1,4,5],[49,1,1,5,6]]]],[580,588,590,667,1503,1519]]]]},{"k":"H4376","v":[["*",[80,74,[[0,10,10,0,10,[[24,2,2,0,2],[30,1,1,2,3],[36,3,3,3,6],[44,2,2,6,8],[46,2,2,8,10]]],[1,6,6,10,16,[[70,4,4,10,14],[71,2,2,14,16]]],[2,16,16,16,32,[[114,13,13,16,29],[116,3,3,29,32]]],[4,7,6,32,38,[[166,1,1,32,33],[167,1,1,33,34],[173,2,1,34,35],[176,1,1,35,36],[180,1,1,36,37],[184,1,1,37,38]]],[6,5,5,38,43,[[212,1,1,38,39],[213,1,1,39,40],[214,2,2,40,42],[220,1,1,42,43]]],[7,1,1,43,44,[[235,1,1,43,44]]],[8,1,1,44,45,[[247,1,1,44,45]]],[10,2,2,45,47,[[311,2,2,45,47]]],[11,2,2,47,49,[[316,1,1,47,48],[329,1,1,48,49]]],[15,7,5,49,54,[[417,3,1,49,50],[422,1,1,50,51],[425,3,3,51,54]]],[16,2,1,54,55,[[432,2,1,54,55]]],[18,2,2,55,57,[[521,1,1,55,56],[582,1,1,56,57]]],[19,2,2,57,59,[[650,1,1,57,58],[658,1,1,58,59]]],[22,4,3,59,62,[[702,1,1,59,60],[728,2,1,60,61],[730,1,1,61,62]]],[23,1,1,62,63,[[778,1,1,62,63]]],[25,4,4,63,67,[[808,2,2,63,65],[831,1,1,65,66],[849,1,1,66,67]]],[28,5,4,67,71,[[878,5,4,67,71]]],[29,1,1,71,72,[[880,1,1,71,72]]],[33,1,1,72,73,[[902,1,1,72,73]]],[37,1,1,73,74,[[921,1,1,73,74]]]],[689,691,888,1110,1111,1119,1362,1363,1440,1442,2084,2085,2093,2112,2114,2116,3483,3484,3485,3492,3494,3496,3498,3503,3508,3511,3516,3517,3519,3590,3597,3598,5311,5331,5461,5532,5679,5788,6559,6576,6601,6608,6818,7193,7469,9471,9476,9610,10000,12390,12580,12686,12687,12691,12811,14583,15623,17067,17308,18097,18663,18699,19815,20589,20590,21216,21716,22346,22349,22350,22351,22385,22716,23033]]],["+",[12,11,[[0,2,2,0,2,[[24,1,1,0,1],[36,1,1,1,2]]],[1,2,2,2,4,[[70,2,2,2,4]]],[2,1,1,4,5,[[116,1,1,4,5]]],[4,2,1,5,6,[[173,2,1,5,6]]],[6,1,1,6,7,[[214,1,1,6,7]]],[11,1,1,7,8,[[316,1,1,7,8]]],[15,1,1,8,9,[[417,1,1,8,9]]],[25,1,1,9,10,[[831,1,1,9,10]]],[28,1,1,10,11,[[878,1,1,10,11]]]],[691,1111,2084,2112,3590,5461,6608,9610,12390,21216,22351]]],["Sell",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[689]]],["away",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3494]]],["himself",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[10,1,1,1,2,[[311,1,1,1,2]]]],[3516,9476]]],["sell",[13,13,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,2,2,1,3,[[70,1,1,1,2],[71,1,1,2,3]]],[2,4,4,3,7,[[114,4,4,3,7]]],[4,1,1,7,8,[[166,1,1,7,8]]],[15,1,1,8,9,[[422,1,1,8,9]]],[19,1,1,9,10,[[650,1,1,9,10]]],[25,1,1,10,11,[[849,1,1,10,11]]],[28,1,1,11,12,[[878,1,1,11,12]]],[37,1,1,12,13,[[921,1,1,12,13]]]],[1110,2085,2114,3483,3484,3485,3498,5311,12580,17067,21716,22351,23033]]],["seller",[3,3,[[22,1,1,0,1,[[702,1,1,0,1]]],[25,2,2,1,3,[[808,2,2,1,3]]]],[18097,20589,20590]]],["sellers",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12691]]],["sellest",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14583]]],["selleth",[5,5,[[1,1,1,0,1,[[70,1,1,0,1]]],[4,1,1,1,2,[[176,1,1,1,2]]],[7,1,1,2,3,[[235,1,1,2,3]]],[19,1,1,3,4,[[658,1,1,3,4]]],[33,1,1,4,5,[[902,1,1,4,5]]]],[2093,5532,7193,17308,22716]]],["sold",[38,36,[[0,6,6,0,6,[[30,1,1,0,1],[36,1,1,1,2],[44,2,2,2,4],[46,2,2,4,6]]],[1,1,1,6,7,[[71,1,1,6,7]]],[2,9,9,7,16,[[114,7,7,7,14],[116,2,2,14,16]]],[4,3,3,16,19,[[167,1,1,16,17],[180,1,1,17,18],[184,1,1,18,19]]],[6,4,4,19,23,[[212,1,1,19,20],[213,1,1,20,21],[214,1,1,21,22],[220,1,1,22,23]]],[8,1,1,23,24,[[247,1,1,23,24]]],[10,1,1,24,25,[[311,1,1,24,25]]],[15,4,3,25,28,[[417,2,1,25,26],[425,2,2,26,28]]],[16,2,1,28,29,[[432,2,1,28,29]]],[18,1,1,29,30,[[582,1,1,29,30]]],[22,1,1,30,31,[[728,1,1,30,31]]],[23,1,1,31,32,[[778,1,1,31,32]]],[28,3,3,32,35,[[878,3,3,32,35]]],[29,1,1,35,36,[[880,1,1,35,36]]]],[888,1119,1362,1363,1440,1442,2116,3492,3496,3503,3508,3511,3517,3519,3597,3598,5331,5679,5788,6559,6576,6601,6818,7469,9471,12390,12686,12687,12811,15623,18663,19815,22346,22349,22350,22385]]],["themselves",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10000]]],["yourselves",[2,2,[[22,2,2,0,2,[[728,1,1,0,1],[730,1,1,1,2]]]],[18663,18699]]]]},{"k":"H4377","v":[["*",[3,3,[[3,1,1,0,1,[[136,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]],[19,1,1,2,3,[[658,1,1,2,3]]]],[4330,12687,17294]]],["+",[1,1,[[3,1,1,0,1,[[136,1,1,0,1]]]],[4330]]],["price",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17294]]],["ware",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12687]]]]},{"k":"H4378","v":[["acquaintance",[2,2,[[11,2,2,0,2,[[324,2,2,0,2]]]],[9855,9857]]]]},{"k":"H4379","v":[["+",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22814]]]]},{"k":"H4380","v":[["habitations",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1478]]]]},{"k":"H4381","v":[["Michri",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10623]]]]},{"k":"H4382","v":[["Mecherathite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10709]]]]},{"k":"H4383","v":[["*",[14,14,[[2,1,1,0,1,[[108,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[22,2,2,3,5,[[686,1,1,3,4],[735,1,1,4,5]]],[23,1,1,5,6,[[750,1,1,5,6]]],[25,8,8,6,14,[[804,1,1,6,7],[808,1,1,7,8],[815,3,3,8,11],[819,1,1,11,12],[822,1,1,12,13],[845,1,1,13,14]]]],[3295,7892,16063,17821,18779,19110,20522,20596,20734,20735,20738,20879,20959,21611]]],["fall",[1,1,[[25,1,1,0,1,[[845,1,1,0,1]]]],[21611]]],["offence",[2,2,[[8,1,1,0,1,[[260,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]]],[7892,17821]]],["offend",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16063]]],["ruin",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20879]]],["ruins",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20959]]],["stumblingblock",[7,7,[[2,1,1,0,1,[[108,1,1,0,1]]],[22,1,1,1,2,[[735,1,1,1,2]]],[25,5,5,2,7,[[804,1,1,2,3],[808,1,1,3,4],[815,3,3,4,7]]]],[3295,18779,20522,20596,20734,20735,20738]]],["stumblingblocks",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19110]]]]},{"k":"H4384","v":[["*",[2,2,[[22,1,1,0,1,[[681,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]]],[17713,22790]]],["ruin",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17713]]],["stumblingblocks",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22790]]]]},{"k":"H4385","v":[["*",[9,8,[[1,3,2,0,2,[[81,2,1,0,1],[88,1,1,1,2]]],[4,1,1,2,3,[[162,1,1,2,3]]],[13,3,3,3,6,[[387,1,1,3,4],[401,1,1,4,5],[402,1,1,5,6]]],[14,1,1,6,7,[[403,1,1,6,7]]],[22,1,1,7,8,[[716,1,1,7,8]]]],[2454,2694,5190,11636,11970,12015,12017,18399]]],["+",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5190]]],["writing",[8,7,[[1,3,2,0,2,[[81,2,1,0,1],[88,1,1,1,2]]],[13,3,3,2,5,[[387,1,1,2,3],[401,1,1,3,4],[402,1,1,4,5]]],[14,1,1,5,6,[[403,1,1,5,6]]],[22,1,1,6,7,[[716,1,1,6,7]]]],[2454,2694,11636,11970,12015,12017,18399]]]]},{"k":"H4386","v":[["bursting",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18231]]]]},{"k":"H4387","v":[]},{"k":"H4388","v":[["*",[2,2,[[6,1,1,0,1,[[225,1,1,0,1]]],[19,1,1,1,2,[[654,1,1,1,2]]]],[6948,17191]]],["mortar",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17191]]],["place",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6948]]]]},{"k":"H4389","v":[["Maktesh",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22798]]]]},{"k":"H4390","v":[["*",[251,243,[[0,16,15,0,15,[[0,2,2,0,2],[5,2,2,2,4],[8,1,1,4,5],[20,1,1,5,6],[23,1,1,6,7],[24,1,1,7,8],[25,1,1,8,9],[28,3,3,9,12],[41,1,1,12,13],[43,1,1,13,14],[49,2,1,14,15]]],[1,23,23,15,38,[[50,1,1,15,16],[51,1,1,16,17],[56,1,1,17,18],[57,1,1,18,19],[59,1,1,19,20],[64,1,1,20,21],[72,1,1,21,22],[77,3,3,22,25],[78,4,4,25,29],[80,2,2,29,31],[81,1,1,31,32],[84,3,3,32,35],[88,1,1,35,36],[89,2,2,36,38]]],[2,9,8,38,46,[[97,2,1,38,39],[98,1,1,39,40],[101,2,2,40,42],[105,1,1,42,43],[108,1,1,43,44],[110,1,1,44,45],[114,1,1,45,46]]],[3,7,7,46,53,[[119,1,1,46,47],[122,2,2,47,49],[130,2,2,49,51],[148,2,2,51,53]]],[4,2,2,53,55,[[153,1,1,53,54],[158,1,1,54,55]]],[5,5,5,55,60,[[189,1,1,55,56],[195,1,1,56,57],[200,3,3,57,60]]],[6,3,3,60,63,[[226,1,1,60,61],[227,2,2,61,63]]],[8,3,3,63,66,[[251,1,1,63,64],[253,2,2,64,66]]],[9,2,2,66,68,[[273,1,1,66,67],[289,1,1,67,68]]],[10,12,12,68,80,[[291,1,1,68,69],[292,1,1,69,70],[297,1,1,70,71],[298,4,4,71,75],[301,1,1,75,76],[303,1,1,76,77],[308,2,2,77,79],[310,1,1,79,80]]],[11,10,10,80,90,[[315,3,3,80,83],[316,1,1,83,84],[318,1,1,84,85],[321,1,1,85,86],[322,1,1,86,87],[333,1,1,87,88],[335,1,1,88,89],[336,1,1,89,90]]],[12,3,3,90,93,[[349,1,1,90,91],[354,1,1,91,92],[366,1,1,92,93]]],[13,11,10,93,103,[[371,2,2,93,95],[372,2,2,95,97],[373,2,2,97,99],[379,1,1,99,100],[382,1,1,100,101],[395,1,1,101,102],[402,2,1,102,103]]],[14,1,1,103,104,[[411,1,1,103,104]]],[16,5,5,104,109,[[426,1,1,104,105],[427,1,1,105,106],[428,1,1,106,107],[430,1,1,107,108],[432,1,1,108,109]]],[17,17,17,109,126,[[438,1,1,109,110],[443,1,1,110,111],[450,2,2,111,113],[451,1,1,113,114],[455,3,3,114,117],[456,1,1,117,118],[457,1,1,118,119],[458,1,1,119,120],[467,1,1,120,121],[471,2,2,121,123],[473,1,1,123,124],[474,1,1,124,125],[476,1,1,125,126]]],[18,22,22,126,148,[[487,1,1,126,127],[494,1,1,127,128],[497,2,2,128,130],[503,1,1,130,131],[510,1,1,131,132],[515,1,1,132,133],[525,1,1,133,134],[542,1,1,134,135],[548,1,1,135,136],[549,1,1,136,137],[551,1,1,137,138],[557,1,1,138,139],[558,1,1,139,140],[560,1,1,140,141],[581,1,1,141,142],[584,1,1,142,143],[587,1,1,143,144],[596,1,1,144,145],[603,1,1,145,146],[604,1,1,146,147],[606,1,1,147,148]]],[19,7,7,148,155,[[628,1,1,148,149],[630,1,1,149,150],[633,1,1,150,151],[635,1,1,151,152],[639,1,1,152,153],[647,1,1,153,154],[651,1,1,154,155]]],[20,5,5,155,160,[[659,1,1,155,156],[664,1,1,156,157],[666,1,1,157,158],[667,1,1,158,159],[669,1,1,159,160]]],[21,2,2,160,162,[[675,2,2,160,162]]],[22,22,21,162,183,[[679,1,1,162,163],[680,4,3,163,166],[684,2,2,166,168],[689,1,1,168,169],[691,1,1,169,170],[692,1,1,170,171],[693,1,1,171,172],[699,1,1,172,173],[700,1,1,173,174],[701,1,1,174,175],[705,1,1,175,176],[706,1,1,176,177],[708,1,1,177,178],[711,1,1,178,179],[712,1,1,179,180],[718,1,1,180,181],[743,2,2,181,183]]],[23,22,21,183,204,[[748,1,1,183,184],[750,1,1,184,185],[757,3,2,185,187],[759,1,1,187,188],[760,1,1,188,189],[763,1,1,189,190],[767,2,2,190,192],[769,2,2,192,194],[773,1,1,194,195],[775,1,1,195,196],[777,1,1,196,197],[785,1,1,197,198],[788,1,1,198,199],[790,1,1,199,200],[795,4,4,200,204]]],[24,1,1,204,205,[[800,1,1,204,205]]],[25,26,23,205,228,[[804,1,1,205,206],[806,1,1,206,207],[808,3,2,207,209],[809,1,1,209,210],[810,3,2,210,212],[811,4,3,212,215],[812,1,1,215,216],[824,1,1,216,217],[825,1,1,217,218],[827,1,1,218,219],[828,1,1,219,220],[829,1,1,220,221],[831,1,1,221,222],[833,2,2,222,224],[836,1,1,224,225],[844,2,2,225,227],[845,1,1,227,228]]],[26,2,2,228,230,[[858,1,1,228,229],[859,1,1,229,230]]],[28,2,2,230,232,[[877,1,1,230,231],[878,1,1,231,232]]],[32,2,2,232,234,[[895,1,1,232,233],[898,1,1,233,234]]],[33,2,2,234,236,[[900,1,1,234,235],[901,1,1,235,236]]],[34,2,2,236,238,[[904,1,1,236,237],[905,1,1,237,238]]],[35,1,1,238,239,[[906,1,1,238,239]]],[36,1,1,239,240,[[910,1,1,239,240]]],[37,3,3,240,243,[[918,1,1,240,241],[919,2,2,241,243]]]],[21,27,148,150,206,532,607,682,707,816,822,823,1277,1325,1509,1539,1570,1710,1731,1783,1929,2170,2296,2310,2334,2345,2365,2369,2371,2423,2425,2467,2562,2564,2566,2674,2741,2742,2950,2970,3048,3050,3233,3310,3355,3499,3695,3828,3836,4129,4132,4729,4730,4928,5097,5908,6050,6195,6196,6201,6976,6985,6992,7596,7702,7703,8192,8660,8731,8797,8948,8995,8996,9000,9009,9114,9217,9374,9376,9435,9593,9596,9601,9609,9691,9780,9814,10135,10179,10206,10735,10874,11169,11281,11282,11286,11297,11325,11326,11462,11523,11822,12014,12248,12707,12736,12752,12788,12812,12919,13050,13205,13235,13248,13337,13348,13349,13379,13407,13423,13646,13752,13753,13832,13836,13895,14048,14117,14186,14187,14283,14371,14497,14644,14869,14984,15019,15068,15207,15227,15257,15595,15708,15792,15962,16117,16126,16139,16413,16465,16570,16623,16740,16971,17083,17323,17424,17469,17478,17516,17600,17612,17669,17691,17692,17693,17770,17773,17893,17927,17949,17969,18038,18059,18079,18157,18172,18244,18284,18309,18422,18908,18917,19032,19100,19278,19279,19332,19354,19411,19494,19508,19546,19568,19645,19716,19780,19966,20035,20057,20217,20223,20226,20246,20438,20505,20548,20596,20600,20621,20629,20631,20635,20636,20637,20661,21040,21060,21102,21146,21173,21215,21253,21254,21352,21577,21598,21603,21990,22018,22335,22356,22616,22660,22694,22711,22762,22771,22796,22862,22981,23012,23014]]],["+",[56,56,[[0,6,6,0,6,[[0,2,2,0,2],[8,1,1,2,3],[20,1,1,3,4],[41,1,1,4,5],[43,1,1,5,6]]],[1,9,9,6,15,[[51,1,1,6,7],[77,1,1,7,8],[78,4,4,8,12],[81,1,1,12,13],[89,2,2,13,15]]],[2,4,4,15,19,[[97,1,1,15,16],[98,1,1,16,17],[105,1,1,17,18],[110,1,1,18,19]]],[3,2,2,19,21,[[119,1,1,19,20],[130,1,1,20,21]]],[5,1,1,21,22,[[189,1,1,21,22]]],[6,2,2,22,24,[[227,2,2,22,24]]],[10,8,8,24,32,[[291,1,1,24,25],[292,1,1,25,26],[298,2,2,26,28],[301,1,1,28,29],[303,1,1,29,30],[308,1,1,30,31],[310,1,1,31,32]]],[11,3,3,32,35,[[333,1,1,32,33],[335,1,1,33,34],[336,1,1,34,35]]],[12,2,2,35,37,[[349,1,1,35,36],[366,1,1,36,37]]],[13,5,5,37,42,[[371,1,1,37,38],[373,2,2,38,40],[379,1,1,40,41],[395,1,1,41,42]]],[22,2,2,42,44,[[684,1,1,42,43],[743,1,1,43,44]]],[23,4,4,44,48,[[757,1,1,44,45],[760,1,1,45,46],[763,1,1,46,47],[767,1,1,47,48]]],[25,6,6,48,54,[[809,1,1,48,49],[810,1,1,49,50],[831,1,1,50,51],[836,1,1,51,52],[844,1,1,52,53],[845,1,1,53,54]]],[34,1,1,54,55,[[904,1,1,54,55]]],[36,1,1,55,56,[[910,1,1,55,56]]]],[21,27,206,532,1277,1325,1570,2334,2345,2365,2369,2371,2467,2741,2742,2950,2970,3233,3355,3695,4132,5908,6985,6992,8731,8797,8995,8996,9114,9217,9376,9435,10135,10179,10206,10735,11169,11282,11325,11326,11462,11822,17770,18917,19279,19354,19411,19508,20621,20629,21215,21352,21598,21603,22762,22862]]],["Fill",[2,2,[[10,1,1,0,1,[[308,1,1,0,1]]],[18,1,1,1,2,[[560,1,1,1,2]]]],[9374,15257]]],["Fulfil",[1,1,[[0,1,1,0,1,[[28,1,1,0,1]]]],[822]]],["accomplish",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[21990]]],["accomplished",[6,6,[[16,1,1,0,1,[[427,1,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]],[23,3,3,3,6,[[769,2,2,3,5],[773,1,1,5,6]]]],[12736,13235,18422,19546,19568,19645]]],["end",[1,1,[[2,1,1,0,1,[[97,1,1,0,1]]]],[2950]]],["expired",[3,3,[[8,1,1,0,1,[[253,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]],[16,1,1,2,3,[[426,1,1,2,3]]]],[7702,10874,12707]]],["fenced",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8660]]],["fill",[22,22,[[1,1,1,0,1,[[59,1,1,0,1]]],[8,1,1,1,2,[[251,1,1,1,2]]],[17,6,6,2,8,[[443,1,1,2,3],[450,1,1,3,4],[455,1,1,4,5],[458,1,1,5,6],[473,1,1,6,7],[476,1,1,7,8]]],[18,2,2,8,10,[[558,1,1,8,9],[587,1,1,9,10]]],[19,2,2,10,12,[[628,1,1,10,11],[635,1,1,11,12]]],[22,2,2,12,14,[[692,1,1,12,13],[705,1,1,13,14]]],[23,2,2,14,16,[[777,1,1,14,15],[795,1,1,15,16]]],[25,5,5,16,21,[[804,1,1,16,17],[808,1,1,17,18],[811,1,1,18,19],[825,1,1,19,20],[833,1,1,20,21]]],[35,1,1,21,22,[[906,1,1,21,22]]]],[1783,7596,13050,13205,13349,13423,13832,13895,15227,15792,16413,16623,17949,18157,19780,20226,20505,20596,20635,21060,21253,22796]]],["filled",[51,50,[[0,4,4,0,4,[[5,2,2,0,2],[23,1,1,2,3],[25,1,1,3,4]]],[1,4,4,4,8,[[50,1,1,4,5],[80,1,1,5,6],[84,2,2,6,8]]],[3,1,1,8,9,[[130,1,1,8,9]]],[5,1,1,9,10,[[195,1,1,9,10]]],[10,1,1,10,11,[[297,1,1,10,11]]],[11,3,3,11,14,[[315,3,3,11,14]]],[13,2,2,14,16,[[371,1,1,14,15],[382,1,1,15,16]]],[14,1,1,16,17,[[411,1,1,16,17]]],[17,2,2,17,19,[[438,1,1,17,18],[457,1,1,18,19]]],[18,5,5,19,24,[[515,1,1,19,20],[548,1,1,20,21],[549,1,1,21,22],[557,1,1,22,23],[603,1,1,23,24]]],[19,4,4,24,28,[[630,1,1,24,25],[639,1,1,25,26],[647,1,1,26,27],[651,1,1,27,28]]],[20,2,2,28,30,[[659,1,1,28,29],[664,1,1,29,30]]],[21,1,1,30,31,[[675,1,1,30,31]]],[22,4,4,31,35,[[684,1,1,31,32],[699,1,1,32,33],[711,1,1,33,34],[712,1,1,34,35]]],[23,7,6,35,41,[[757,2,1,35,36],[759,1,1,36,37],[785,1,1,37,38],[790,1,1,38,39],[795,2,2,39,41]]],[25,6,6,41,47,[[811,2,2,41,43],[812,1,1,43,44],[824,1,1,44,45],[829,1,1,45,46],[844,1,1,46,47]]],[33,1,1,47,48,[[901,1,1,47,48]]],[37,2,2,48,50,[[919,2,2,48,50]]]],[148,150,607,707,1539,2423,2562,2566,4129,6050,8948,9593,9596,9601,11281,11523,12248,12919,13407,14497,14984,15019,15207,16117,16465,16740,16971,17083,17323,17424,17600,17773,18038,18284,18309,19278,19332,19966,20057,20217,20246,20636,20637,20661,21040,21173,21577,22711,23012,23014]]],["filledst",[1,1,[[4,1,1,0,1,[[158,1,1,0,1]]]],[5097]]],["fillest",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14117]]],["filleth",[2,2,[[18,2,2,0,2,[[584,1,1,0,1],[606,1,1,1,2]]]],[15708,16139]]],["fulfil",[6,5,[[1,1,1,0,1,[[72,1,1,0,1]]],[13,2,1,1,2,[[402,2,1,1,2]]],[17,1,1,2,3,[[474,1,1,2,3]]],[18,2,2,3,5,[[497,2,2,3,5]]]],[2170,12014,13836,14186,14187]]],["fulfilled",[20,19,[[0,5,4,0,4,[[24,1,1,0,1],[28,2,2,1,3],[49,2,1,3,4]]],[1,1,1,4,5,[[56,1,1,4,5]]],[2,2,2,5,7,[[101,2,2,5,7]]],[3,2,2,7,9,[[122,2,2,7,9]]],[9,1,1,9,10,[[273,1,1,9,10]]],[10,2,2,10,12,[[298,2,2,10,12]]],[13,2,2,12,14,[[372,2,2,12,14]]],[17,1,1,14,15,[[471,1,1,14,15]]],[23,1,1,15,16,[[788,1,1,15,16]]],[24,1,1,16,17,[[800,1,1,16,17]]],[25,1,1,17,18,[[806,1,1,17,18]]],[26,1,1,18,19,[[859,1,1,18,19]]]],[682,816,823,1509,1710,3048,3050,3828,3836,8192,9000,9009,11286,11297,13753,20035,20438,20548,22018]]],["full",[48,45,[[1,1,1,0,1,[[57,1,1,0,1]]],[2,1,1,1,2,[[108,1,1,1,2]]],[6,1,1,2,3,[[226,1,1,2,3]]],[11,4,4,3,7,[[316,1,1,3,4],[318,1,1,4,5],[321,1,1,5,6],[322,1,1,6,7]]],[16,2,2,7,9,[[428,1,1,7,8],[430,1,1,8,9]]],[17,4,4,9,13,[[455,1,1,9,10],[456,1,1,10,11],[467,1,1,11,12],[471,1,1,12,13]]],[18,9,9,13,22,[[487,1,1,13,14],[503,1,1,14,15],[510,1,1,15,16],[525,1,1,16,17],[542,1,1,17,18],[551,1,1,18,19],[581,1,1,19,20],[596,1,1,20,21],[604,1,1,21,22]]],[20,2,2,22,24,[[667,1,1,22,23],[669,1,1,23,24]]],[22,10,9,24,33,[[679,1,1,24,25],[680,3,2,25,27],[689,1,1,27,28],[691,1,1,28,29],[693,1,1,29,30],[700,1,1,30,31],[706,1,1,31,32],[708,1,1,32,33]]],[23,2,2,33,35,[[750,1,1,33,34],[767,1,1,34,35]]],[25,6,4,35,39,[[808,2,1,35,36],[810,2,1,36,37],[811,1,1,37,38],[833,1,1,38,39]]],[28,2,2,39,41,[[877,1,1,39,40],[878,1,1,40,41]]],[32,2,2,41,43,[[895,1,1,41,42],[898,1,1,42,43]]],[34,1,1,43,44,[[905,1,1,43,44]]],[37,1,1,44,45,[[918,1,1,44,45]]]],[1731,3310,6976,9609,9691,9780,9814,12752,12788,13337,13379,13646,13752,14048,14283,14371,14644,14869,15068,15595,15962,16126,17478,17516,17669,17692,17693,17893,17927,17969,18059,18172,18244,19100,19494,20600,20631,20637,21254,22335,22356,22616,22660,22771,22981]]],["fully",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22694]]],["fulness",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13348]]],["furnish",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18908]]],["gather",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20223]]],["presume",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12812]]],["replenished",[5,5,[[22,2,2,0,2,[[680,1,1,0,1],[701,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]],[25,2,2,3,5,[[827,1,1,3,4],[828,1,1,4,5]]]],[17691,18079,19716,21102,21146]]],["satisfied",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1929]]],["satisfy",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16570]]],["set",[6,6,[[1,4,4,0,4,[[77,1,1,0,1],[80,1,1,1,2],[84,1,1,2,3],[88,1,1,3,4]]],[20,1,1,4,5,[[666,1,1,4,5]]],[21,1,1,5,6,[[675,1,1,5,6]]]],[2310,2425,2564,2674,17469,17612]]],["space",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3499]]],["tale",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7703]]],["themselves",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13248]]],["together",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19032]]],["wholly",[6,6,[[3,2,2,0,2,[[148,2,2,0,2]]],[4,1,1,2,3,[[153,1,1,2,3]]],[5,3,3,3,6,[[200,3,3,3,6]]]],[4729,4730,4928,6195,6196,6201]]],["with",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2296]]]]},{"k":"H4391","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21793,21826]]],["filled",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21793]]],["full",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21826]]]]},{"k":"H4392","v":[["*",[63,62,[[0,3,3,0,3,[[22,1,1,0,1],[40,2,2,1,3]]],[3,25,25,3,28,[[123,25,25,3,28]]],[4,3,3,28,31,[[158,1,1,28,29],[185,1,1,29,30],[186,1,1,30,31]]],[6,1,1,31,32,[[216,1,1,31,32]]],[7,1,1,32,33,[[232,1,1,32,33]]],[9,1,1,33,34,[[289,1,1,33,34]]],[11,2,2,34,36,[[316,1,1,34,35],[319,1,1,35,36]]],[12,3,3,36,39,[[348,1,1,36,37],[358,2,2,37,39]]],[15,1,1,39,40,[[421,1,1,39,40]]],[18,3,3,40,43,[[550,1,1,40,41],[552,1,1,41,42],[621,1,1,42,43]]],[19,1,1,43,44,[[644,1,1,43,44]]],[20,2,2,44,46,[[659,1,1,44,45],[669,1,1,45,46]]],[22,3,3,46,49,[[679,1,1,46,47],[700,1,1,47,48],[729,1,1,48,49]]],[23,6,5,49,54,[[748,1,1,49,50],[749,2,1,50,51],[750,1,1,51,52],[756,1,1,52,53],[779,1,1,53,54]]],[25,6,6,54,60,[[802,1,1,54,55],[811,1,1,55,56],[818,1,1,56,57],[829,1,1,57,58],[837,1,1,58,59],[838,1,1,59,60]]],[29,1,1,60,61,[[880,1,1,60,61]]],[33,1,1,61,62,[[902,1,1,61,62]]]],[580,1202,1217,3863,3864,3869,3870,3875,3876,3881,3882,3887,3888,3893,3894,3899,3900,3905,3906,3911,3912,3917,3918,3923,3924,3929,3930,3936,5097,5833,5848,6692,7148,8664,9607,9722,10686,10956,10958,12536,15030,15079,16318,16874,17322,17518,17675,18054,18693,19039,19085,19100,19255,19828,20482,20645,20828,21169,21397,21398,22392,22713]]],["child",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17518]]],["filled",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21397]]],["full",[58,57,[[0,2,2,0,2,[[40,2,2,0,2]]],[3,25,25,2,27,[[123,25,25,2,27]]],[4,3,3,27,30,[[158,1,1,27,28],[185,1,1,28,29],[186,1,1,29,30]]],[6,1,1,30,31,[[216,1,1,30,31]]],[7,1,1,31,32,[[232,1,1,31,32]]],[9,1,1,32,33,[[289,1,1,32,33]]],[11,2,2,33,35,[[316,1,1,33,34],[319,1,1,34,35]]],[12,3,3,35,38,[[348,1,1,35,36],[358,2,2,36,38]]],[15,1,1,38,39,[[421,1,1,38,39]]],[18,3,3,39,42,[[550,1,1,39,40],[552,1,1,40,41],[621,1,1,41,42]]],[19,1,1,42,43,[[644,1,1,42,43]]],[20,1,1,43,44,[[659,1,1,43,44]]],[22,3,3,44,47,[[679,1,1,44,45],[700,1,1,45,46],[729,1,1,46,47]]],[23,5,4,47,51,[[748,1,1,47,48],[749,2,1,48,49],[750,1,1,49,50],[779,1,1,50,51]]],[25,5,5,51,56,[[802,1,1,51,52],[811,1,1,52,53],[818,1,1,53,54],[829,1,1,54,55],[838,1,1,55,56]]],[33,1,1,56,57,[[902,1,1,56,57]]]],[1202,1217,3863,3864,3869,3870,3875,3876,3881,3882,3887,3888,3893,3894,3899,3900,3905,3906,3911,3912,3917,3918,3923,3924,3929,3930,3936,5097,5833,5848,6692,7148,8664,9607,9722,10686,10956,10958,12536,15030,15079,16318,16874,17322,17675,18054,18693,19039,19085,19100,19828,20482,20645,20828,21169,21398,22713]]],["multitude",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19255]]],["of",[1,1,[[29,1,1,0,1,[[880,1,1,0,1]]]],[22392]]],["worth",[1,1,[[0,1,1,0,1,[[22,1,1,0,1]]]],[580]]]]},{"k":"H4393","v":[["*",[37,35,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,3,3,1,4,[[58,1,1,1,2],[65,2,2,2,4]]],[2,4,3,4,7,[[91,1,1,4,5],[94,1,1,5,6],[105,2,1,6,7]]],[3,2,2,7,9,[[138,1,1,7,8],[140,1,1,8,9]]],[4,1,1,9,10,[[185,1,1,9,10]]],[8,1,1,10,11,[[263,1,1,10,11]]],[9,1,1,11,12,[[274,1,1,11,12]]],[10,1,1,12,13,[[307,1,1,12,13]]],[11,1,1,13,14,[[316,1,1,13,14]]],[12,1,1,14,15,[[353,1,1,14,15]]],[18,5,5,15,20,[[501,1,1,15,16],[527,1,1,16,17],[566,1,1,17,18],[573,1,1,18,19],[575,1,1,19,20]]],[20,2,1,20,21,[[662,2,1,20,21]]],[22,5,5,21,26,[[684,1,1,21,22],[686,1,1,22,23],[709,1,1,23,24],[712,1,1,24,25],[720,1,1,25,26]]],[23,2,2,26,28,[[752,1,1,26,27],[791,1,1,27,28]]],[25,5,5,28,33,[[813,1,1,28,29],[820,1,1,29,30],[831,1,1,30,31],[833,1,1,31,32],[842,1,1,32,33]]],[29,1,1,33,34,[[884,1,1,33,34]]],[32,1,1,34,35,[[893,1,1,34,35]]]],[1470,1750,1979,1980,2764,2842,3213,4393,4459,5826,7962,8211,9329,9642,10852,14242,14680,15337,15476,15497,17387,17772,17815,18254,18304,18490,19169,20075,20699,20888,21216,21263,21534,22458,22581]]],["+",[9,8,[[1,1,1,0,1,[[58,1,1,0,1]]],[2,2,2,1,3,[[91,1,1,1,2],[94,1,1,2,3]]],[8,1,1,3,4,[[263,1,1,3,4]]],[10,1,1,4,5,[[307,1,1,4,5]]],[20,2,1,5,6,[[662,2,1,5,6]]],[25,2,2,6,8,[[813,1,1,6,7],[833,1,1,7,8]]]],[1750,2764,2842,7962,9329,17387,20699,21263]]],["Fill",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1979]]],["all",[2,2,[[23,2,2,0,2,[[752,1,1,0,1],[791,1,1,1,2]]]],[19169,20075]]],["fill",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17815]]],["full",[9,8,[[1,1,1,0,1,[[65,1,1,0,1]]],[2,2,1,1,2,[[105,2,1,1,2]]],[3,2,2,2,4,[[138,1,1,2,3],[140,1,1,3,4]]],[9,1,1,4,5,[[274,1,1,4,5]]],[11,1,1,5,6,[[316,1,1,5,6]]],[22,1,1,6,7,[[684,1,1,6,7]]],[25,1,1,7,8,[[842,1,1,7,8]]]],[1980,3213,4393,4459,8211,9642,17772,21534]]],["fulness",[8,8,[[4,1,1,0,1,[[185,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[18,5,5,2,7,[[501,1,1,2,3],[527,1,1,3,4],[566,1,1,4,5],[573,1,1,5,6],[575,1,1,6,7]]],[25,1,1,7,8,[[820,1,1,7,8]]]],[5826,10852,14242,14680,15337,15476,15497,20888]]],["is",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22581]]],["multitude",[2,2,[[0,1,1,0,1,[[47,1,1,0,1]]],[22,1,1,1,2,[[709,1,1,1,2]]]],[1470,18254]]],["therein",[4,4,[[22,2,2,0,2,[[712,1,1,0,1],[720,1,1,1,2]]],[25,1,1,2,3,[[831,1,1,2,3]]],[29,1,1,3,4,[[884,1,1,3,4]]]],[18304,18490,21216,22458]]]]},{"k":"H4394","v":[["*",[15,15,[[1,8,8,0,8,[[74,1,1,0,1],[78,5,5,1,6],[84,2,2,6,8]]],[2,6,6,8,14,[[96,1,1,8,9],[97,5,5,9,14]]],[12,1,1,14,15,[[366,1,1,14,15]]]],[2202,2358,2362,2363,2367,2370,2540,2558,2916,2939,2945,2946,2948,2950,11166]]],["consecration",[7,7,[[1,4,4,0,4,[[78,4,4,0,4]]],[2,3,3,4,7,[[97,3,3,4,7]]]],[2358,2362,2363,2367,2939,2946,2950]]],["consecrations",[4,4,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,3,3,1,4,[[96,1,1,1,2],[97,2,2,2,4]]]],[2370,2916,2945,2948]]],["set",[4,4,[[1,3,3,0,3,[[74,1,1,0,1],[84,2,2,1,3]]],[12,1,1,3,4,[[366,1,1,3,4]]]],[2202,2540,2558,11166]]]]},{"k":"H4395","v":[["*",[3,3,[[1,1,1,0,1,[[71,1,1,0,1]]],[3,1,1,1,2,[[134,1,1,1,2]]],[4,1,1,2,3,[[174,1,1,2,3]]]],[2142,4284,5479]]],["fruit",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5479]]],["fruits",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2142]]],["fulness",[1,1,[[3,1,1,0,1,[[134,1,1,0,1]]]],[4284]]]]},{"k":"H4396","v":[["*",[3,3,[[1,3,3,0,3,[[77,2,2,0,2],[88,1,1,2,3]]]],[2310,2313,2677]]],["inclosings",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2313,2677]]],["settings",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2310]]]]},{"k":"H4397","v":[["*",[213,196,[[0,17,17,0,17,[[15,4,4,0,4],[18,2,2,4,6],[20,1,1,6,7],[21,2,2,7,9],[23,2,2,9,11],[27,1,1,11,12],[30,1,1,12,13],[31,3,3,13,16],[47,1,1,16,17]]],[1,6,6,17,23,[[52,1,1,17,18],[63,1,1,18,19],[72,2,2,19,21],[81,1,1,21,22],[82,1,1,22,23]]],[3,15,15,23,38,[[136,2,2,23,25],[137,1,1,25,26],[138,11,11,26,37],[140,1,1,37,38]]],[4,1,1,38,39,[[154,1,1,38,39]]],[5,3,3,39,42,[[192,2,2,39,41],[193,1,1,41,42]]],[6,31,26,42,68,[[212,2,2,42,44],[215,1,1,44,45],[216,9,6,45,51],[217,1,1,51,52],[219,1,1,52,53],[221,5,5,53,58],[223,12,10,58,68]]],[8,19,16,68,84,[[241,1,1,68,69],[246,5,4,69,73],[251,1,1,73,74],[254,8,6,74,80],[258,1,1,80,81],[260,2,2,81,83],[264,1,1,83,84]]],[9,18,16,84,100,[[268,1,1,84,85],[269,3,3,85,88],[271,1,1,88,89],[277,5,5,89,94],[278,1,1,94,95],[280,2,2,95,97],[285,1,1,97,98],[290,4,2,98,100]]],[10,9,8,100,108,[[303,1,1,100,101],[309,3,3,101,104],[310,4,3,104,107],[312,1,1,107,108]]],[11,20,18,108,126,[[313,6,5,108,113],[317,1,1,113,114],[318,3,2,114,116],[319,1,1,116,117],[321,1,1,117,118],[322,1,1,118,119],[326,1,1,119,120],[328,1,1,120,121],[329,1,1,121,122],[331,4,4,122,126]]],[12,12,10,126,136,[[351,1,1,126,127],[356,2,2,127,129],[358,9,7,129,136]]],[13,5,5,136,141,[[384,1,1,136,137],[398,1,1,137,138],[401,1,1,138,139],[402,2,2,139,141]]],[15,1,1,141,142,[[418,1,1,141,142]]],[17,3,3,142,145,[[436,1,1,142,143],[439,1,1,143,144],[468,1,1,144,145]]],[18,8,8,145,153,[[511,1,1,145,146],[512,2,2,146,148],[555,1,1,148,149],[568,1,1,149,150],[580,1,1,150,151],[581,1,1,151,152],[625,1,1,152,153]]],[19,3,3,153,156,[[640,1,1,153,154],[643,1,1,154,155],[644,1,1,155,156]]],[20,1,1,156,157,[[663,1,1,156,157]]],[22,10,10,157,167,[[692,1,1,157,158],[696,1,1,158,159],[708,1,1,159,160],[711,1,1,160,161],[715,3,3,161,164],[720,1,1,164,165],[722,1,1,165,166],[741,1,1,166,167]]],[23,1,1,167,168,[[771,1,1,167,168]]],[25,4,4,168,172,[[818,1,1,168,169],[824,2,2,169,171],[831,1,1,171,172]]],[27,1,1,172,173,[[873,1,1,172,173]]],[33,1,1,173,174,[[901,1,1,173,174]]],[36,1,1,174,175,[[909,1,1,174,175]]],[37,20,19,175,194,[[911,6,6,175,181],[912,2,1,181,182],[913,4,4,182,186],[914,3,3,186,189],[915,2,2,189,191],[916,2,2,191,193],[922,1,1,193,194]]],[38,3,2,194,196,[[926,1,1,194,195],[927,2,1,195,196]]]],[388,390,391,392,458,472,530,558,562,598,631,785,884,929,931,934,1467,1581,1908,2164,2167,2472,2475,4325,4327,4361,4380,4397,4398,4399,4400,4401,4402,4406,4407,4409,4410,4458,4964,5966,5974,5998,6546,6549,6646,6665,6666,6674,6675,6676,6689,6718,6785,6841,6842,6843,6846,6848,6887,6890,6893,6897,6899,6900,6901,6902,6904,6905,7352,7448,7449,7452,7454,7614,7717,7720,7721,7722,7726,7727,7837,7875,7903,7976,8054,8093,8095,8107,8143,8263,8278,8281,8282,8284,8313,8373,8376,8538,8708,8709,9202,9389,9392,9394,9410,9413,9417,9493,9535,9536,9538,9548,9549,9657,9706,9707,9722,9774,9801,9904,9970,9987,10070,10075,10084,10096,10775,10909,10923,10946,10949,10950,10952,10954,10961,10964,11554,11896,11987,12008,12009,12404,12883,12948,13673,14395,14415,14416,15162,15406,15569,15575,16373,16764,16854,16884,17403,17960,17999,18221,18286,18361,18366,18388,18499,18559,18875,19599,20840,21023,21047,21213,22256,22712,22853,22887,22889,22890,22891,22892,22897,22902,22913,22915,22917,22918,22923,22926,22927,22941,22946,22951,22952,23053,23110,23121]]],["Angel",[4,4,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,3,3,1,4,[[72,2,2,1,3],[81,1,1,3,4]]]],[1467,2164,2167,2472]]],["ambassadors",[4,4,[[13,1,1,0,1,[[401,1,1,0,1]]],[22,2,2,1,3,[[708,1,1,1,2],[711,1,1,2,3]]],[25,1,1,3,4,[[818,1,1,3,4]]]],[11987,18221,18286,20840]]],["angel",[97,88,[[0,10,10,0,10,[[15,4,4,0,4],[20,1,1,4,5],[21,2,2,5,7],[23,2,2,7,9],[30,1,1,9,10]]],[1,3,3,10,13,[[52,1,1,10,11],[63,1,1,11,12],[82,1,1,12,13]]],[3,11,11,13,24,[[136,1,1,13,14],[138,10,10,14,24]]],[6,22,18,24,42,[[212,2,2,24,26],[215,1,1,26,27],[216,7,5,27,32],[223,12,10,32,42]]],[8,1,1,42,43,[[264,1,1,42,43]]],[9,7,5,43,48,[[280,2,2,43,45],[285,1,1,45,46],[290,4,2,46,48]]],[10,3,3,48,51,[[303,1,1,48,49],[309,2,2,49,51]]],[11,3,3,51,54,[[313,2,2,51,53],[331,1,1,53,54]]],[12,9,7,54,61,[[358,9,7,54,61]]],[13,1,1,61,62,[[398,1,1,61,62]]],[18,3,3,62,65,[[511,1,1,62,63],[512,2,2,63,65]]],[20,1,1,65,66,[[663,1,1,65,66]]],[22,2,2,66,68,[[715,1,1,66,67],[741,1,1,67,68]]],[27,1,1,68,69,[[873,1,1,68,69]]],[37,20,19,69,88,[[911,6,6,69,75],[912,2,1,75,76],[913,4,4,76,80],[914,3,3,80,83],[915,2,2,83,85],[916,2,2,85,87],[922,1,1,87,88]]]],[388,390,391,392,530,558,562,598,631,884,1581,1908,2475,4327,4397,4398,4399,4400,4401,4402,4406,4407,4409,4410,6546,6549,6646,6665,6666,6674,6675,6676,6887,6890,6893,6897,6899,6900,6901,6902,6904,6905,7976,8373,8376,8538,8708,8709,9202,9392,9394,9536,9548,10096,10946,10949,10950,10952,10954,10961,10964,11896,14395,14415,14416,17403,18388,18875,22256,22887,22889,22890,22891,22892,22897,22902,22913,22915,22917,22918,22923,22926,22927,22941,22946,22951,22952,23053]]],["angels",[10,10,[[0,4,4,0,4,[[18,2,2,0,2],[27,1,1,2,3],[31,1,1,3,4]]],[17,1,1,4,5,[[439,1,1,4,5]]],[18,5,5,5,10,[[555,1,1,5,6],[568,1,1,6,7],[580,1,1,7,8],[581,1,1,8,9],[625,1,1,9,10]]]],[458,472,785,929,12948,15162,15406,15569,15575,16373]]],["messenger",[24,22,[[8,1,1,0,1,[[258,1,1,0,1]]],[9,4,4,1,5,[[277,4,4,1,5]]],[10,2,2,5,7,[[309,1,1,5,6],[312,1,1,6,7]]],[11,6,5,7,12,[[317,1,1,7,8],[318,3,2,8,10],[321,1,1,10,11],[322,1,1,11,12]]],[13,1,1,12,13,[[384,1,1,12,13]]],[17,2,2,13,15,[[436,1,1,13,14],[468,1,1,14,15]]],[19,2,2,15,17,[[640,1,1,15,16],[644,1,1,16,17]]],[22,1,1,17,18,[[720,1,1,17,18]]],[25,1,1,18,19,[[824,1,1,18,19]]],[36,1,1,19,20,[[909,1,1,19,20]]],[38,3,2,20,22,[[926,1,1,20,21],[927,2,1,21,22]]]],[7837,8278,8281,8282,8284,9389,9493,9657,9706,9707,9774,9801,11554,12883,13673,16764,16884,18499,21047,22853,23110,23121]]],["messengers",[74,69,[[0,2,2,0,2,[[31,2,2,0,2]]],[3,4,4,2,6,[[136,1,1,2,3],[137,1,1,3,4],[138,1,1,4,5],[140,1,1,5,6]]],[4,1,1,6,7,[[154,1,1,6,7]]],[5,3,3,7,10,[[192,2,2,7,9],[193,1,1,9,10]]],[6,9,8,10,18,[[216,2,1,10,11],[217,1,1,11,12],[219,1,1,12,13],[221,5,5,13,18]]],[8,17,14,18,32,[[241,1,1,18,19],[246,5,4,19,23],[251,1,1,23,24],[254,8,6,24,30],[260,2,2,30,32]]],[9,7,7,32,39,[[268,1,1,32,33],[269,3,3,33,36],[271,1,1,36,37],[277,1,1,37,38],[278,1,1,38,39]]],[10,4,3,39,42,[[310,4,3,39,42]]],[11,11,11,42,53,[[313,4,4,42,46],[319,1,1,46,47],[326,1,1,47,48],[328,1,1,48,49],[329,1,1,49,50],[331,3,3,50,53]]],[12,3,3,53,56,[[351,1,1,53,54],[356,2,2,54,56]]],[13,2,2,56,58,[[402,2,2,56,58]]],[15,1,1,58,59,[[418,1,1,58,59]]],[19,1,1,59,60,[[643,1,1,59,60]]],[22,5,5,60,65,[[692,1,1,60,61],[696,1,1,61,62],[715,2,2,62,64],[722,1,1,64,65]]],[23,1,1,65,66,[[771,1,1,65,66]]],[25,2,2,66,68,[[824,1,1,66,67],[831,1,1,67,68]]],[33,1,1,68,69,[[901,1,1,68,69]]]],[931,934,4325,4361,4380,4458,4964,5966,5974,5998,6689,6718,6785,6841,6842,6843,6846,6848,7352,7448,7449,7452,7454,7614,7717,7720,7721,7722,7726,7727,7875,7903,8054,8093,8095,8107,8143,8263,8313,9410,9413,9417,9535,9536,9538,9549,9722,9904,9970,9987,10070,10075,10084,10775,10909,10923,12008,12009,12404,16854,17960,17999,18361,18366,18559,19599,21023,21213,22712]]]]},{"k":"H4398","v":[["angel",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[855,1,1,1,2]]]],[21835,21927]]]]},{"k":"H4399","v":[["*",[167,149,[[0,5,4,0,4,[[1,3,2,0,2],[32,1,1,2,3],[38,1,1,3,4]]],[1,33,27,4,31,[[61,1,1,4,5],[69,2,2,5,7],[71,2,2,7,9],[80,5,4,9,13],[84,9,7,13,20],[85,10,8,20,28],[87,2,1,28,29],[88,1,1,29,30],[89,1,1,30,31]]],[2,16,15,31,46,[[96,1,1,31,32],[100,1,1,32,33],[102,2,2,33,35],[105,1,1,35,36],[112,11,10,36,46]]],[3,8,8,46,54,[[120,1,1,46,47],[144,3,3,47,50],[145,4,4,50,54]]],[4,3,3,54,57,[[157,2,2,54,56],[168,1,1,56,57]]],[6,1,1,57,58,[[226,1,1,57,58]]],[8,2,2,58,60,[[243,1,1,58,59],[250,1,1,59,60]]],[10,10,7,60,67,[[295,2,1,60,61],[297,5,4,61,65],[299,2,1,65,66],[301,1,1,66,67]]],[11,6,5,67,72,[[324,3,3,67,70],[334,3,2,70,72]]],[12,20,19,72,91,[[341,1,1,72,73],[343,1,1,73,74],[346,3,3,74,77],[359,2,1,77,78],[360,2,2,78,80],[362,1,1,80,81],[363,2,2,81,83],[364,1,1,83,84],[365,4,4,84,88],[366,3,3,88,91]]],[13,16,14,91,105,[[370,1,1,91,92],[371,1,1,92,93],[374,2,2,93,95],[379,1,1,95,96],[382,1,1,96,97],[383,1,1,97,98],[390,3,2,98,100],[395,1,1,100,101],[400,5,4,101,105]]],[14,5,5,105,110,[[404,1,1,105,106],[405,2,2,106,108],[408,1,1,108,109],[412,1,1,109,110]]],[15,22,20,110,130,[[414,1,1,110,111],[416,7,7,111,118],[417,2,1,118,119],[418,4,3,119,122],[419,2,2,122,124],[422,1,1,124,125],[423,3,3,125,128],[425,2,2,128,130]]],[16,2,2,130,132,[[428,1,1,130,131],[434,1,1,131,132]]],[18,2,2,132,134,[[550,1,1,132,133],[584,1,1,133,134]]],[19,3,3,134,137,[[645,1,1,134,135],[649,1,1,135,136],[651,1,1,136,137]]],[23,5,5,137,142,[[761,2,2,137,139],[762,1,1,139,140],[792,1,1,140,141],[794,1,1,141,142]]],[25,5,4,142,146,[[816,4,3,142,145],[829,1,1,145,146]]],[26,1,1,146,147,[[857,1,1,146,147]]],[31,1,1,147,148,[[889,1,1,147,148]]],[36,1,1,148,149,[[909,1,1,148,149]]]],[32,33,974,1160,1832,2060,2061,2121,2124,2423,2425,2434,2435,2533,2552,2555,2560,2562,2564,2566,2567,2568,2569,2570,2571,2572,2573,2574,2657,2707,2740,2903,3029,3100,3103,3230,3405,3409,3410,3423,3427,3430,3432,3433,3437,3438,3746,4595,4602,4603,4609,4615,4620,4643,5066,5067,5350,6960,7385,7569,8894,8948,8956,8974,8985,9074,9136,9861,9864,9865,10150,10154,10408,10503,10628,10634,10648,10979,10987,11007,11047,11106,11107,11135,11156,11162,11163,11164,11165,11169,11170,11257,11269,11355,11362,11463,11514,11536,11689,11690,11825,11943,11945,11946,11950,12096,12105,12106,12173,12265,12323,12370,12374,12375,12376,12378,12380,12381,12398,12404,12410,12417,12490,12491,12582,12600,12604,12610,12681,12701,12756,12837,15048,15722,16910,17044,17106,19379,19381,19387,20090,20191,20757,20758,20759,21170,21988,22539,22854]]],["+",[14,13,[[1,1,1,0,1,[[85,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[10,1,1,2,3,[[301,1,1,2,3]]],[11,2,2,3,5,[[324,2,2,3,5]]],[12,2,2,5,7,[[359,1,1,5,6],[362,1,1,6,7]]],[13,5,4,7,11,[[370,1,1,7,8],[390,1,1,8,9],[400,3,2,9,11]]],[14,1,1,11,12,[[405,1,1,11,12]]],[16,1,1,12,13,[[434,1,1,12,13]]]],[2570,6960,9136,9864,9865,10979,11047,11257,11690,11943,11950,12106,12837]]],["business",[12,12,[[0,1,1,0,1,[[38,1,1,0,1]]],[12,2,2,1,3,[[363,2,2,1,3]]],[13,2,2,3,5,[[379,1,1,3,4],[383,1,1,4,5]]],[15,3,3,5,8,[[423,2,2,5,7],[425,1,1,7,8]]],[16,1,1,8,9,[[428,1,1,8,9]]],[18,1,1,9,10,[[584,1,1,9,10]]],[19,1,1,10,11,[[649,1,1,10,11]]],[26,1,1,11,12,[[857,1,1,11,12]]]],[1160,11106,11107,11463,11536,12604,12610,12701,12756,15722,17044,21988]]],["cattle",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[974]]],["goods",[2,2,[[1,2,2,0,2,[[71,2,2,0,2]]]],[2121,2124]]],["labour",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12381]]],["made",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3100]]],["occupation",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22539]]],["stuff",[1,1,[[1,1,1,0,1,[[85,1,1,0,1]]]],[2573]]],["thing",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7569]]],["use",[1,1,[[2,1,1,0,1,[[96,1,1,0,1]]]],[2903]]],["work",[124,112,[[0,3,2,0,2,[[1,3,2,0,2]]],[1,26,22,2,24,[[61,1,1,2,3],[69,2,2,3,5],[80,3,2,5,7],[84,8,6,7,13],[85,8,8,13,21],[87,2,1,21,22],[88,1,1,22,23],[89,1,1,23,24]]],[2,14,13,24,37,[[100,1,1,24,25],[102,1,1,25,26],[105,1,1,26,27],[112,11,10,27,37]]],[3,8,8,37,45,[[120,1,1,37,38],[144,3,3,38,41],[145,4,4,41,45]]],[4,3,3,45,48,[[157,2,2,45,47],[168,1,1,47,48]]],[8,1,1,48,49,[[243,1,1,48,49]]],[10,8,6,49,55,[[295,2,1,49,50],[297,4,4,50,54],[299,2,1,54,55]]],[11,4,3,55,58,[[324,1,1,55,56],[334,3,2,56,58]]],[12,14,14,58,72,[[341,1,1,58,59],[343,1,1,59,60],[346,3,3,60,63],[359,1,1,63,64],[360,2,2,64,66],[364,1,1,66,67],[365,2,2,67,69],[366,3,3,69,72]]],[13,9,9,72,81,[[371,1,1,72,73],[374,2,2,73,75],[382,1,1,75,76],[390,2,2,76,78],[395,1,1,78,79],[400,2,2,79,81]]],[14,4,4,81,85,[[404,1,1,81,82],[405,1,1,82,83],[408,1,1,83,84],[412,1,1,84,85]]],[15,18,16,85,101,[[414,1,1,85,86],[416,6,6,86,92],[417,2,1,92,93],[418,4,3,93,96],[419,2,2,96,98],[422,1,1,98,99],[423,1,1,99,100],[425,1,1,100,101]]],[19,2,2,101,103,[[645,1,1,101,102],[651,1,1,102,103]]],[23,5,5,103,108,[[761,2,2,103,105],[762,1,1,105,106],[792,1,1,106,107],[794,1,1,107,108]]],[25,4,3,108,111,[[816,4,3,108,111]]],[36,1,1,111,112,[[909,1,1,111,112]]]],[32,33,1832,2060,2061,2434,2435,2533,2552,2555,2560,2564,2566,2567,2568,2569,2570,2571,2572,2573,2574,2657,2707,2740,3029,3103,3230,3405,3409,3410,3423,3427,3430,3432,3433,3437,3438,3746,4595,4602,4603,4609,4615,4620,4643,5066,5067,5350,7385,8894,8948,8956,8974,8985,9074,9861,10150,10154,10408,10503,10628,10634,10648,10979,10987,11007,11135,11156,11163,11165,11169,11170,11269,11355,11362,11514,11689,11690,11825,11945,11946,12096,12105,12173,12265,12323,12370,12374,12375,12376,12378,12380,12398,12404,12410,12417,12490,12491,12582,12600,12681,16910,17106,19379,19381,19387,20090,20191,20757,20758,20759,22854]]],["workmanship",[5,5,[[1,3,3,0,3,[[80,2,2,0,2],[84,1,1,2,3]]],[12,1,1,3,4,[[365,1,1,3,4]]],[25,1,1,4,5,[[829,1,1,4,5]]]],[2423,2425,2562,11164,21170]]],["works",[3,3,[[10,1,1,0,1,[[297,1,1,0,1]]],[12,1,1,1,2,[[365,1,1,1,2]]],[18,1,1,2,3,[[550,1,1,2,3]]]],[8948,11162,15048]]]]},{"k":"H4400","v":[["message",[1,1,[[36,1,1,0,1,[[909,1,1,0,1]]]],[22853]]]]},{"k":"H4401","v":[["Malachi",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23090]]]]},{"k":"H4402","v":[["+",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17610]]]]},{"k":"H4403","v":[["*",[8,7,[[10,1,1,0,1,[[300,1,1,0,1]]],[11,1,1,1,2,[[322,1,1,1,2]]],[13,2,1,2,3,[[375,2,1,2,3]]],[17,1,1,3,4,[[462,1,1,3,4]]],[22,1,1,4,5,[[741,1,1,4,5]]],[25,1,1,5,6,[[817,1,1,5,6]]],[35,1,1,6,7,[[906,1,1,6,7]]]],[9084,9815,11368,13497,18869,20775,22795]]],["apparel",[4,3,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,2,1,1,2,[[375,2,1,1,2]]],[35,1,1,2,3,[[906,1,1,2,3]]]],[9084,11368,22795]]],["raiment",[3,3,[[17,1,1,0,1,[[462,1,1,0,1]]],[22,1,1,1,2,[[741,1,1,1,2]]],[25,1,1,2,3,[[817,1,1,2,3]]]],[13497,18869,20775]]],["vestments",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9815]]]]},{"k":"H4404","v":[["brickkiln",[3,3,[[9,1,1,0,1,[[278,1,1,0,1]]],[23,1,1,1,2,[[787,1,1,1,2]]],[33,1,1,2,3,[[902,1,1,2,3]]]],[8317,20006,22726]]]]},{"k":"H4405","v":[["*",[38,38,[[9,1,1,0,1,[[289,1,1,0,1]]],[17,34,34,1,35,[[439,2,2,1,3],[441,1,1,3,4],[443,1,1,4,5],[447,1,1,5,6],[448,1,1,6,7],[450,2,2,7,9],[451,1,1,9,10],[453,1,1,10,11],[454,2,2,11,13],[456,1,1,13,14],[458,1,1,14,15],[459,1,1,15,16],[461,1,1,16,17],[464,2,2,17,19],[465,1,1,19,20],[467,4,4,20,24],[468,3,3,24,27],[469,3,3,27,30],[470,2,2,30,32],[471,2,2,32,34],[473,1,1,34,35]]],[18,2,2,35,37,[[496,1,1,35,36],[616,1,1,36,37]]],[19,1,1,37,38,[[650,1,1,37,38]]]],[8655,12932,12934,13004,13039,13139,13170,13206,13216,13242,13278,13299,13320,13357,13424,13461,13471,13541,13554,13566,13639,13642,13643,13646,13651,13658,13682,13685,13686,13699,13724,13736,13738,13740,13795,14172,16243,17053]]],["+",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13724]]],["byword",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13566]]],["matter",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13646]]],["say",[2,2,[[17,2,2,0,2,[[467,1,1,0,1],[468,1,1,1,2]]]],[13639,13682]]],["speak",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13738]]],["speaking",[2,2,[[17,2,2,0,2,[[439,1,1,0,1],[467,1,1,1,2]]]],[12932,13643]]],["speech",[4,4,[[17,4,4,0,4,[[448,1,1,0,1],[456,1,1,1,2],[459,1,1,2,3],[464,1,1,3,4]]]],[13170,13357,13461,13554]]],["speeches",[2,2,[[17,2,2,0,2,[[450,1,1,0,1],[468,1,1,1,2]]]],[13206,13651]]],["talking",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13541]]],["word",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]]],[8655,16243]]],["words",[21,21,[[17,19,19,0,19,[[439,1,1,0,1],[441,1,1,1,2],[443,1,1,2,3],[447,1,1,3,4],[450,1,1,4,5],[451,1,1,5,6],[453,1,1,6,7],[454,2,2,7,9],[458,1,1,9,10],[461,1,1,10,11],[467,1,1,11,12],[468,1,1,12,13],[469,3,3,13,16],[470,1,1,16,17],[471,1,1,17,18],[473,1,1,18,19]]],[18,1,1,19,20,[[496,1,1,19,20]]],[19,1,1,20,21,[[650,1,1,20,21]]]],[12934,13004,13039,13139,13216,13242,13278,13299,13320,13424,13471,13642,13658,13685,13686,13699,13736,13740,13795,14172,17053]]]]},{"k":"H4406","v":[["*",[23,22,[[26,23,22,0,22,[[851,8,8,0,8],[852,2,2,8,10],[853,2,2,10,12],[854,3,3,12,15],[855,2,2,15,17],[856,6,5,17,22]]]],[21763,21766,21767,21768,21769,21773,21775,21781,21829,21835,21868,21870,21884,21889,21900,21917,21919,21934,21944,21949,21958,21961]]],["+",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21773,21775]]],["commandment",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21829]]],["matter",[4,3,[[26,4,3,0,3,[[851,2,2,0,2],[856,2,1,2,3]]]],[21768,21781,21961]]],["matters",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21934]]],["thing",[7,7,[[26,7,7,0,7,[[851,3,3,0,3],[853,1,1,3,4],[854,2,2,4,6],[855,1,1,6,7]]]],[21763,21766,21769,21870,21889,21900,21917]]],["things",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21949]]],["word",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[853,1,1,1,2]]]],[21835,21868]]],["words",[5,5,[[26,5,5,0,5,[[851,1,1,0,1],[854,1,1,1,2],[855,1,1,2,3],[856,2,2,3,5]]]],[21767,21884,21919,21944,21958]]]]},{"k":"H4407","v":[["Millo",[9,8,[[6,2,1,0,1,[[219,2,1,0,1]]],[9,1,1,1,2,[[271,1,1,1,2]]],[10,3,3,2,5,[[299,2,2,2,4],[301,1,1,4,5]]],[11,1,1,5,6,[[324,1,1,5,6]]],[12,1,1,6,7,[[348,1,1,6,7]]],[13,1,1,7,8,[[398,1,1,7,8]]]],[6774,8141,9066,9075,9135,9870,10681,11880]]]]},{"k":"H4408","v":[["mallows",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13561]]]]},{"k":"H4409","v":[["*",[7,7,[[12,1,1,0,1,[[343,1,1,0,1]]],[14,2,2,1,3,[[412,2,2,1,3]]],[15,4,4,3,7,[[422,2,2,3,5],[424,2,2,5,7]]]],[10498,12281,12284,12553,12576,12626,12638]]],["Malluch",[6,6,[[12,1,1,0,1,[[343,1,1,0,1]]],[14,2,2,1,3,[[412,2,2,1,3]]],[15,3,3,3,6,[[422,2,2,3,5],[424,1,1,5,6]]]],[10498,12281,12284,12553,12576,12626]]],["Melicu",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12638]]]]},{"k":"H4410","v":[["*",[24,23,[[8,5,5,0,5,[[245,2,2,0,2],[246,1,1,2,3],[249,1,1,3,4],[253,1,1,4,5]]],[9,2,2,5,7,[[278,1,1,5,6],[282,1,1,6,7]]],[10,7,6,7,13,[[291,1,1,7,8],[292,3,2,8,10],[301,1,1,10,11],[302,1,1,11,12],[311,1,1,12,13]]],[11,1,1,13,14,[[337,1,1,13,14]]],[12,1,1,14,15,[[347,1,1,14,15]]],[18,1,1,15,16,[[499,1,1,15,16]]],[22,2,2,16,18,[[712,1,1,16,17],[740,1,1,17,18]]],[23,1,1,18,19,[[785,1,1,18,19]]],[25,2,2,19,21,[[817,1,1,19,20],[818,1,1,20,21]]],[26,1,1,21,22,[[850,1,1,21,22]]],[30,1,1,22,23,[[888,1,1,22,23]]]],[7434,7443,7459,7555,7684,8312,8434,8763,8785,8792,9143,9172,9458,10247,10673,14232,18315,18857,19958,20775,20838,21740,22531]]],["+",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21740]]],["king's",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20838]]],["kingdom",[18,17,[[8,5,5,0,5,[[245,2,2,0,2],[246,1,1,2,3],[249,1,1,3,4],[253,1,1,4,5]]],[9,1,1,5,6,[[282,1,1,5,6]]],[10,7,6,6,12,[[291,1,1,6,7],[292,3,2,7,9],[301,1,1,9,10],[302,1,1,10,11],[311,1,1,11,12]]],[12,1,1,12,13,[[347,1,1,12,13]]],[18,1,1,13,14,[[499,1,1,13,14]]],[22,1,1,14,15,[[712,1,1,14,15]]],[25,1,1,15,16,[[817,1,1,15,16]]],[30,1,1,16,17,[[888,1,1,16,17]]]],[7434,7443,7459,7555,7684,8434,8763,8785,8792,9143,9172,9458,10673,14232,18315,20775,22531]]],["royal",[4,4,[[9,1,1,0,1,[[278,1,1,0,1]]],[11,1,1,1,2,[[337,1,1,1,2]]],[22,1,1,2,3,[[740,1,1,2,3]]],[23,1,1,3,4,[[785,1,1,3,4]]]],[8312,10247,18857,19958]]]]},{"k":"H4411","v":[["*",[8,8,[[0,2,2,0,2,[[41,1,1,0,1],[42,1,1,1,2]]],[1,1,1,2,3,[[53,1,1,2,3]]],[5,2,2,3,5,[[190,2,2,3,5]]],[11,1,1,5,6,[[331,1,1,5,6]]],[22,1,1,6,7,[[688,1,1,6,7]]],[23,1,1,7,8,[[753,1,1,7,8]]]],[1279,1311,1625,5913,5918,10084,17879,19177]]],["inn",[3,3,[[0,2,2,0,2,[[41,1,1,0,1],[42,1,1,1,2]]],[1,1,1,2,3,[[53,1,1,2,3]]]],[1279,1311,1625]]],["lodged",[1,1,[[5,1,1,0,1,[[190,1,1,0,1]]]],[5918]]],["lodging",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17879]]],["lodgings",[1,1,[[11,1,1,0,1,[[331,1,1,0,1]]]],[10084]]],["place",[2,2,[[5,1,1,0,1,[[190,1,1,0,1]]],[23,1,1,1,2,[[753,1,1,1,2]]]],[5913,19177]]]]},{"k":"H4412","v":[["*",[2,2,[[22,2,2,0,2,[[679,1,1,0,1],[702,1,1,1,2]]]],[17662,18115]]],["cottage",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18115]]],["lodge",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17662]]]]},{"k":"H4413","v":[["Mallothi",[2,2,[[12,2,2,0,2,[[362,2,2,0,2]]]],[11050,11072]]]]},{"k":"H4414","v":[["*",[5,4,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,1,1,1,2,[[91,1,1,1,2]]],[22,1,1,2,3,[[729,1,1,2,3]]],[25,2,1,3,4,[[817,2,1,3,4]]]],[2417,2775,18679,20766]]],["+",[2,1,[[25,2,1,0,1,[[817,2,1,0,1]]]],[20766]]],["away",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18679]]],["season",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2775]]],["together",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2417]]]]},{"k":"H4415","v":[["+",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12124]]]]},{"k":"H4416","v":[["*",[3,3,[[14,3,3,0,3,[[406,1,1,0,1],[408,1,1,1,2],[409,1,1,2,3]]]],[12124,12160,12195]]],["+",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12124]]],["salt",[2,2,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]]],[12160,12195]]]]},{"k":"H4417","v":[["*",[27,25,[[0,2,2,0,2,[[13,1,1,0,1],[18,1,1,1,2]]],[2,3,1,2,3,[[91,3,1,2,3]]],[3,3,3,3,6,[[134,1,1,3,4],[150,2,2,4,6]]],[4,2,2,6,8,[[155,1,1,6,7],[181,1,1,7,8]]],[5,5,5,8,13,[[189,1,1,8,9],[198,1,1,9,10],[201,2,2,10,12],[204,1,1,12,13]]],[6,1,1,13,14,[[219,1,1,13,14]]],[9,1,1,14,15,[[274,1,1,14,15]]],[11,3,3,15,18,[[314,2,2,15,17],[326,1,1,17,18]]],[12,1,1,18,19,[[355,1,1,18,19]]],[13,2,2,19,21,[[379,1,1,19,20],[391,1,1,20,21]]],[17,1,1,21,22,[[441,1,1,21,22]]],[25,2,2,22,24,[[844,1,1,22,23],[848,1,1,23,24]]],[35,1,1,24,25,[[907,1,1,24,25]]]],[339,483,2775,4276,4819,4828,4992,5702,5909,6133,6204,6207,6312,6799,8222,9571,9572,9903,10902,11458,11715,12984,21596,21690,22814]]],["+",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22814]]],["salt",[26,24,[[0,2,2,0,2,[[13,1,1,0,1],[18,1,1,1,2]]],[2,3,1,2,3,[[91,3,1,2,3]]],[3,3,3,3,6,[[134,1,1,3,4],[150,2,2,4,6]]],[4,2,2,6,8,[[155,1,1,6,7],[181,1,1,7,8]]],[5,5,5,8,13,[[189,1,1,8,9],[198,1,1,9,10],[201,2,2,10,12],[204,1,1,12,13]]],[6,1,1,13,14,[[219,1,1,13,14]]],[9,1,1,14,15,[[274,1,1,14,15]]],[11,3,3,15,18,[[314,2,2,15,17],[326,1,1,17,18]]],[12,1,1,18,19,[[355,1,1,18,19]]],[13,2,2,19,21,[[379,1,1,19,20],[391,1,1,20,21]]],[17,1,1,21,22,[[441,1,1,21,22]]],[25,2,2,22,24,[[844,1,1,22,23],[848,1,1,23,24]]]],[339,483,2775,4276,4819,4828,4992,5702,5909,6133,6204,6207,6312,6799,8222,9571,9572,9903,10902,11458,11715,12984,21596,21690]]]]},{"k":"H4418","v":[["rags",[2,2,[[23,2,2,0,2,[[782,2,2,0,2]]]],[19906,19907]]]]},{"k":"H4419","v":[["mariners",[4,4,[[25,3,3,0,3,[[828,3,3,0,3]]],[31,1,1,3,4,[[889,1,1,3,4]]]],[21130,21148,21150,22536]]]]},{"k":"H4420","v":[["*",[3,3,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]],[23,1,1,2,3,[[761,1,1,2,3]]]],[13840,15733,19363]]],["barrenness",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15733]]],["land",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13840]]],["salt",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19363]]]]},{"k":"H4421","v":[["*",[319,308,[[0,2,2,0,2,[[13,2,2,0,2]]],[1,5,5,2,7,[[50,1,1,2,3],[62,1,1,3,4],[64,1,1,4,5],[66,1,1,5,6],[81,1,1,6,7]]],[3,12,12,7,19,[[126,1,1,7,8],[137,2,2,8,10],[147,5,5,10,15],[148,4,4,15,19]]],[4,18,18,19,37,[[153,1,1,19,20],[154,5,5,20,25],[155,1,1,25,26],[156,1,1,26,27],[172,8,8,27,35],[173,1,1,35,36],[181,1,1,36,37]]],[5,18,18,37,55,[[190,1,1,37,38],[191,2,2,38,40],[192,1,1,40,41],[194,4,4,41,45],[196,2,2,45,47],[197,5,5,47,52],[200,2,2,52,54],[203,1,1,54,55]]],[6,20,18,55,73,[[213,3,3,55,58],[218,1,1,58,59],[228,3,3,59,62],[230,12,10,62,72],[231,1,1,72,73]]],[8,31,29,73,102,[[239,2,2,73,75],[242,1,1,75,76],[243,2,2,76,78],[248,1,1,78,79],[249,4,4,79,83],[251,1,1,83,84],[252,9,8,84,92],[253,2,2,92,94],[254,1,1,94,95],[258,1,1,95,96],[260,1,1,96,97],[261,1,1,97,98],[264,3,2,98,100],[265,1,1,100,101],[266,1,1,101,102]]],[9,29,29,102,131,[[267,3,3,102,105],[268,1,1,105,106],[269,3,3,106,109],[274,1,1,109,110],[276,3,3,110,113],[277,5,5,113,118],[283,1,1,118,119],[284,2,2,119,121],[285,2,2,121,123],[287,5,5,123,128],[288,2,2,128,130],[289,1,1,130,131]]],[10,23,21,131,152,[[292,2,1,131,132],[295,1,1,132,133],[298,1,1,133,134],[299,1,1,134,135],[302,1,1,135,136],[304,1,1,136,137],[305,4,4,137,141],[310,5,5,141,146],[312,7,6,146,152]]],[11,10,10,152,162,[[315,2,2,152,154],[320,1,1,154,155],[325,1,1,155,156],[326,1,1,156,157],[328,1,1,157,158],[330,1,1,158,159],[336,1,1,159,160],[337,2,2,160,162]]],[12,32,31,162,193,[[342,5,5,162,167],[344,3,3,167,170],[347,1,1,170,171],[348,1,1,171,172],[349,9,8,172,180],[351,1,1,180,181],[355,1,1,181,182],[356,5,5,182,187],[357,3,3,187,190],[359,1,1,190,191],[363,1,1,191,192],[365,1,1,192,193]]],[13,32,29,193,222,[[372,1,1,193,194],[374,1,1,194,195],[377,1,1,195,196],[378,1,1,196,197],[379,5,3,197,200],[380,2,2,200,202],[381,1,1,202,203],[382,1,1,203,204],[383,1,1,204,205],[384,6,5,205,210],[386,2,2,210,212],[388,1,1,212,213],[391,2,2,213,215],[392,2,2,215,217],[393,1,1,217,218],[398,3,3,218,221],[401,1,1,221,222]]],[17,4,4,222,226,[[440,1,1,222,223],[473,1,1,223,224],[474,1,1,224,225],[476,1,1,225,226]]],[18,10,10,226,236,[[495,2,2,226,228],[501,1,1,228,229],[504,1,1,229,230],[523,1,1,230,231],[553,1,1,231,232],[566,1,1,232,233],[597,1,1,233,234],[617,1,1,234,235],[621,1,1,235,236]]],[19,3,3,236,239,[[647,1,1,236,237],[648,1,1,237,238],[651,1,1,238,239]]],[20,3,3,239,242,[[661,1,1,239,240],[666,1,1,240,241],[667,1,1,241,242]]],[21,1,1,242,243,[[673,1,1,242,243]]],[22,14,14,243,257,[[680,1,1,243,244],[681,2,2,244,246],[685,1,1,246,247],[691,1,1,247,248],[699,1,1,248,249],[700,1,1,249,250],[705,1,1,250,251],[706,1,1,251,252],[708,1,1,252,253],[714,1,1,253,254],[719,1,1,254,255],[720,2,2,255,257]]],[23,24,24,257,281,[[748,1,1,257,258],[750,2,2,258,260],[752,1,1,260,261],[762,1,1,261,262],[765,1,1,262,263],[772,1,1,263,264],[782,1,1,264,265],[783,1,1,265,266],[785,2,2,266,268],[786,1,1,268,269],[790,1,1,269,270],[792,1,1,270,271],[793,3,3,271,274],[794,3,3,274,277],[795,2,2,277,279],[796,2,2,279,281]]],[25,7,7,281,288,[[808,1,1,281,282],[814,1,1,282,283],[818,1,1,283,284],[828,2,2,284,286],[833,1,1,286,287],[840,1,1,287,288]]],[26,3,3,288,291,[[858,1,1,288,289],[860,2,2,289,291]]],[27,4,4,291,295,[[862,1,1,291,292],[863,1,1,292,293],[871,2,2,293,295]]],[28,4,3,295,298,[[877,2,2,295,297],[878,2,1,297,298]]],[29,1,1,298,299,[[879,1,1,298,299]]],[30,1,1,299,300,[[888,1,1,299,300]]],[32,3,3,300,303,[[894,1,1,300,301],[895,1,1,301,302],[896,1,1,302,303]]],[37,5,5,303,308,[[919,1,1,303,304],[920,3,3,304,307],[924,1,1,307,308]]]],[338,344,1542,1884,1923,1999,2455,3997,4354,4373,4678,4685,4691,4692,4713,4724,4738,4745,4747,4933,4947,4952,4954,4962,4970,4976,5038,5428,5429,5430,5432,5433,5434,5439,5447,5457,5686,5923,5938,5940,5952,6003,6005,6013,6016,6071,6088,6114,6125,6126,6127,6130,6198,6202,6276,6569,6570,6578,6732,7004,7009,7010,7068,7071,7072,7074,7076,7077,7082,7088,7093,7096,7124,7298,7299,7362,7381,7389,7507,7528,7530,7531,7560,7613,7619,7620,7626,7631,7638,7646,7651,7665,7681,7693,7714,7818,7889,7915,7971,7976,8002,8012,8026,8047,8049,8066,8082,8087,8111,8219,8248,8249,8253,8266,8274,8277,8278,8284,8457,8484,8486,8514,8521,8595,8597,8598,8599,8600,8637,8642,8662,8775,8881,9029,9073,9172,9248,9255,9256,9265,9281,9422,9426,9434,9437,9447,9481,9484,9486,9495,9510,9515,9583,9602,9755,9896,9903,9968,10044,10218,10226,10241,10438,10446,10447,10448,10450,10539,10546,10575,10662,10686,10721,10728,10739,10753,10755,10756,10757,10758,10789,10900,10914,10916,10917,10921,10924,10930,10931,10932,10972,11104,11146,11316,11355,11415,11452,11455,11456,11467,11481,11485,11509,11518,11536,11545,11547,11556,11571,11576,11588,11602,11649,11712,11717,11743,11745,11762,11877,11881,11883,11987,12971,13816,13859,13896,14152,14157,14249,14288,14623,15084,15369,16081,16265,16306,16972,17015,17085,17367,17466,17486,17579,17689,17709,17732,17783,17910,18050,18054,18155,18170,18249,18335,18463,18493,18505,19046,19093,19112,19159,19405,19444,19626,19899,19927,19960,19973,19989,20048,20094,20129,20141,20153,20188,20196,20208,20232,20244,20283,20301,20591,20713,20842,21131,21148,21275,21468,22014,22056,22061,22101,22123,22234,22239,22316,22318,22352,22378,22511,22603,22613,22623,23009,23019,23020,23021,23070]]],["+",[13,13,[[3,1,1,0,1,[[147,1,1,0,1]]],[5,2,2,1,3,[[197,1,1,1,2],[200,1,1,2,3]]],[10,1,1,3,4,[[302,1,1,3,4]]],[12,4,4,4,8,[[355,1,1,4,5],[356,3,3,5,8]]],[13,4,4,8,12,[[377,1,1,8,9],[379,1,1,9,10],[380,1,1,10,11],[392,1,1,11,12]]],[28,1,1,12,13,[[877,1,1,12,13]]]],[4678,6130,6202,9172,10900,10916,10917,10924,11415,11456,11485,11743,22316]]],["battle",[138,133,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,4,4,1,5,[[137,1,1,1,2],[147,1,1,2,3],[148,2,2,3,5]]],[4,10,10,5,15,[[154,2,2,5,7],[155,1,1,7,8],[172,6,6,8,14],[181,1,1,14,15]]],[5,4,4,15,19,[[190,1,1,15,16],[194,1,1,16,17],[197,2,2,17,19]]],[6,11,10,19,29,[[218,1,1,19,20],[230,10,9,20,29]]],[8,21,19,29,48,[[239,2,2,29,31],[242,1,1,31,32],[248,1,1,32,33],[249,3,3,33,36],[252,8,7,36,43],[261,1,1,43,44],[264,3,2,44,46],[265,1,1,46,47],[266,1,1,47,48]]],[9,19,19,48,67,[[267,2,2,48,50],[268,1,1,50,51],[269,1,1,51,52],[276,3,3,52,55],[277,2,2,55,57],[284,2,2,57,59],[285,2,2,59,61],[287,4,4,61,65],[288,1,1,65,66],[289,1,1,66,67]]],[10,10,9,67,76,[[298,1,1,67,68],[310,3,3,68,71],[312,6,5,71,76]]],[11,2,2,76,78,[[315,2,2,76,78]]],[12,11,11,78,89,[[342,1,1,78,79],[344,2,2,79,81],[347,1,1,81,82],[348,1,1,82,83],[349,3,3,83,86],[351,1,1,86,87],[356,2,2,87,89]]],[13,11,10,89,99,[[379,2,2,89,91],[384,5,4,91,95],[386,2,2,95,97],[391,2,2,97,99]]],[17,2,2,99,101,[[474,1,1,99,100],[476,1,1,100,101]]],[18,4,4,101,105,[[495,1,1,101,102],[501,1,1,102,103],[553,1,1,103,104],[566,1,1,104,105]]],[19,1,1,105,106,[[648,1,1,105,106]]],[20,1,1,106,107,[[667,1,1,106,107]]],[22,5,5,107,112,[[691,1,1,107,108],[700,1,1,108,109],[705,1,1,109,110],[706,1,1,110,111],[720,1,1,111,112]]],[23,6,6,112,118,[[752,1,1,112,113],[762,1,1,113,114],[790,1,1,114,115],[793,1,1,115,116],[794,2,2,116,118]]],[25,2,2,118,120,[[808,1,1,118,119],[814,1,1,119,120]]],[26,2,2,120,122,[[860,2,2,120,122]]],[27,4,4,122,126,[[862,1,1,122,123],[863,1,1,123,124],[871,2,2,124,126]]],[29,1,1,126,127,[[879,1,1,126,127]]],[30,1,1,127,128,[[888,1,1,127,128]]],[37,5,5,128,133,[[919,1,1,128,129],[920,3,3,129,132],[924,1,1,132,133]]]],[344,4373,4685,4745,4747,4947,4962,4976,5428,5429,5430,5432,5433,5434,5686,5923,6016,6126,6127,6732,7068,7072,7074,7076,7077,7082,7088,7093,7096,7298,7299,7362,7507,7528,7530,7531,7619,7620,7626,7631,7638,7646,7665,7915,7971,7976,8002,8012,8026,8047,8066,8111,8248,8249,8253,8274,8284,8484,8486,8514,8521,8597,8598,8599,8600,8642,8662,9029,9422,9437,9447,9484,9486,9495,9510,9515,9583,9602,10448,10546,10575,10662,10686,10728,10739,10757,10789,10914,10921,11456,11467,11547,11556,11571,11576,11588,11602,11712,11717,13859,13896,14157,14249,15084,15369,17015,17486,17910,18054,18155,18170,18505,19159,19405,20048,20141,20188,20208,20591,20713,22056,22061,22101,22123,22234,22239,22378,22511,23009,23019,23020,23021,23070]]],["battles",[6,6,[[8,3,3,0,3,[[243,1,1,0,1],[253,1,1,1,2],[260,1,1,2,3]]],[12,1,1,3,4,[[363,1,1,3,4]]],[13,1,1,4,5,[[398,1,1,4,5]]],[22,1,1,5,6,[[708,1,1,5,6]]]],[7389,7693,7889,11104,11883,18249]]],["fight",[5,5,[[4,1,1,0,1,[[154,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[10,1,1,2,3,[[310,1,1,2,3]]],[13,1,1,3,4,[[398,1,1,3,4]]],[18,1,1,4,5,[[621,1,1,4,5]]]],[4970,7074,9434,11877,16306]]],["war",[148,145,[[0,1,1,0,1,[[13,1,1,0,1]]],[1,5,5,1,6,[[50,1,1,1,2],[62,1,1,2,3],[64,1,1,3,4],[66,1,1,4,5],[81,1,1,5,6]]],[3,6,6,6,12,[[126,1,1,6,7],[147,3,3,7,10],[148,2,2,10,12]]],[4,7,7,12,19,[[153,1,1,12,13],[154,2,2,13,15],[156,1,1,15,16],[172,2,2,16,18],[173,1,1,18,19]]],[5,12,12,19,31,[[191,2,2,19,21],[192,1,1,21,22],[194,3,3,22,25],[196,2,2,25,27],[197,2,2,27,29],[200,1,1,29,30],[203,1,1,30,31]]],[6,7,7,31,38,[[213,2,2,31,33],[228,3,3,33,36],[230,1,1,36,37],[231,1,1,37,38]]],[8,7,7,38,45,[[243,1,1,38,39],[249,1,1,39,40],[251,1,1,40,41],[252,1,1,41,42],[253,1,1,42,43],[254,1,1,43,44],[258,1,1,44,45]]],[9,9,9,45,54,[[267,1,1,45,46],[269,2,2,46,48],[277,3,3,48,51],[283,1,1,51,52],[287,1,1,52,53],[288,1,1,53,54]]],[10,10,9,54,63,[[292,2,1,54,55],[299,1,1,55,56],[304,1,1,56,57],[305,4,4,57,61],[310,1,1,61,62],[312,1,1,62,63]]],[11,8,8,63,71,[[320,1,1,63,64],[325,1,1,64,65],[326,1,1,65,66],[328,1,1,66,67],[330,1,1,67,68],[336,1,1,68,69],[337,2,2,69,71]]],[12,15,14,71,85,[[342,4,4,71,75],[344,1,1,75,76],[349,6,5,76,81],[357,3,3,81,84],[365,1,1,84,85]]],[13,12,12,85,97,[[372,1,1,85,86],[374,1,1,86,87],[379,2,2,87,89],[380,1,1,89,90],[381,1,1,90,91],[383,1,1,91,92],[384,1,1,92,93],[388,1,1,93,94],[392,1,1,94,95],[398,1,1,95,96],[401,1,1,96,97]]],[17,2,2,97,99,[[440,1,1,97,98],[473,1,1,98,99]]],[18,4,4,99,103,[[495,1,1,99,100],[504,1,1,100,101],[597,1,1,101,102],[617,1,1,102,103]]],[19,2,2,103,105,[[647,1,1,103,104],[651,1,1,104,105]]],[20,2,2,105,107,[[661,1,1,105,106],[666,1,1,106,107]]],[21,1,1,107,108,[[673,1,1,107,108]]],[22,8,8,108,116,[[680,1,1,108,109],[681,2,2,109,111],[685,1,1,111,112],[699,1,1,112,113],[714,1,1,113,114],[719,1,1,114,115],[720,1,1,115,116]]],[23,18,18,116,134,[[748,1,1,116,117],[750,2,2,117,119],[765,1,1,119,120],[772,1,1,120,121],[782,1,1,121,122],[783,1,1,122,123],[785,2,2,123,125],[786,1,1,125,126],[792,1,1,126,127],[793,2,2,127,129],[794,1,1,129,130],[795,2,2,130,132],[796,2,2,132,134]]],[25,5,5,134,139,[[818,1,1,134,135],[828,2,2,135,137],[833,1,1,137,138],[840,1,1,138,139]]],[26,1,1,139,140,[[858,1,1,139,140]]],[28,3,2,140,142,[[877,1,1,140,141],[878,2,1,141,142]]],[32,3,3,142,145,[[894,1,1,142,143],[895,1,1,143,144],[896,1,1,144,145]]]],[338,1542,1884,1923,1999,2455,3997,4691,4692,4713,4724,4738,4933,4952,4954,5038,5439,5447,5457,5938,5940,5952,6003,6005,6013,6071,6088,6114,6125,6198,6276,6570,6578,7004,7009,7010,7071,7124,7381,7560,7613,7651,7681,7714,7818,8049,8082,8087,8266,8277,8278,8457,8595,8637,8775,9073,9248,9255,9256,9265,9281,9426,9481,9755,9896,9903,9968,10044,10218,10226,10241,10438,10446,10447,10450,10539,10721,10753,10755,10756,10758,10930,10931,10932,11146,11316,11355,11455,11456,11481,11509,11536,11545,11649,11745,11881,11987,12971,13816,14152,14288,16081,16265,16972,17085,17367,17466,17579,17689,17709,17732,17783,18050,18335,18463,18493,19046,19093,19112,19444,19626,19899,19927,19960,19973,19989,20094,20129,20153,20196,20232,20244,20283,20301,20842,21131,21148,21275,21468,22014,22318,22352,22603,22613,22623]]],["wars",[9,9,[[3,1,1,0,1,[[137,1,1,0,1]]],[6,1,1,1,2,[[213,1,1,1,2]]],[9,1,1,2,3,[[274,1,1,2,3]]],[10,1,1,3,4,[[295,1,1,3,4]]],[12,1,1,4,5,[[359,1,1,4,5]]],[13,3,3,5,8,[[378,1,1,5,6],[382,1,1,6,7],[393,1,1,7,8]]],[18,1,1,8,9,[[523,1,1,8,9]]]],[4354,6569,8219,8881,10972,11452,11518,11762,14623]]]]},{"k":"H4422","v":[["*",[95,85,[[0,5,4,0,4,[[18,5,4,0,4]]],[6,3,2,4,6,[[213,3,2,4,6]]],[8,13,11,6,17,[[254,5,5,6,11],[255,1,1,11,12],[257,2,2,12,14],[258,1,1,14,15],[262,3,1,15,16],[265,1,1,16,17]]],[9,4,4,17,21,[[267,1,1,17,18],[270,1,1,18,19],[285,2,2,19,21]]],[10,5,4,21,25,[[291,1,1,21,22],[308,1,1,22,23],[309,2,1,23,24],[310,1,1,24,25]]],[11,3,3,25,28,[[322,1,1,25,26],[331,1,1,26,27],[335,1,1,27,28]]],[13,1,1,28,29,[[382,1,1,28,29]]],[16,1,1,29,30,[[429,1,1,29,30]]],[17,11,10,30,40,[[436,4,4,30,34],[441,1,1,34,35],[454,1,1,35,36],[455,1,1,36,37],[457,2,1,37,38],[464,1,1,38,39],[476,1,1,39,40]]],[18,8,7,40,47,[[499,1,1,40,41],[510,1,1,41,42],[518,1,1,42,43],[566,1,1,43,44],[584,1,1,44,45],[593,1,1,45,46],[601,2,1,46,47]]],[19,3,3,47,50,[[638,1,1,47,48],[646,1,1,48,49],[655,1,1,49,50]]],[20,3,3,50,53,[[665,1,1,50,51],[666,1,1,51,52],[667,1,1,52,53]]],[22,9,9,53,62,[[698,1,1,53,54],[709,1,1,54,55],[712,1,1,55,56],[715,1,1,56,57],[724,2,2,57,59],[727,2,2,59,61],[744,1,1,61,62]]],[23,13,12,62,74,[[776,1,1,62,63],[778,1,1,63,64],[782,2,2,64,66],[783,2,1,66,67],[785,1,1,67,68],[790,1,1,68,69],[792,3,3,69,72],[795,2,2,72,74]]],[25,4,3,74,77,[[818,3,2,74,76],[834,1,1,76,77]]],[26,2,2,77,79,[[860,1,1,77,78],[861,1,1,78,79]]],[28,1,1,79,80,[[877,1,1,79,80]]],[29,4,3,80,83,[[880,3,2,80,82],[887,1,1,82,83]]],[37,1,1,83,84,[[912,1,1,83,84]]],[38,1,1,84,85,[[927,1,1,84,85]]]],[474,476,477,479,6594,6597,7716,7717,7718,7723,7724,7759,7788,7807,7823,7931,7995,8025,8126,8516,8520,8729,9381,9404,9428,9817,10098,10183,11516,12775,12884,12885,12886,12888,13001,13317,13346,13419,13544,13907,14209,14383,14543,15374,15719,15852,16109,16709,16930,17222,17455,17466,17490,18035,18255,18318,18390,18588,18590,18660,18661,18929,19735,19804,19913,19918,19941,19972,20051,20086,20088,20099,20218,20257,20840,20843,21285,22077,22082,22343,22393,22394,22496,22906,23135]]],["+",[9,7,[[8,2,1,0,1,[[262,2,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]],[10,1,1,2,3,[[291,1,1,2,3]]],[11,1,1,3,4,[[335,1,1,3,4]]],[20,2,2,4,6,[[666,1,1,4,5],[667,1,1,5,6]]],[23,2,1,6,7,[[783,2,1,6,7]]]],[7931,8516,8729,10183,17466,17490,19941]]],["Deliver",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[13001]]],["Escape",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[474]]],["away",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7759]]],["deliver",[13,12,[[17,1,1,0,1,[[457,1,1,0,1]]],[18,4,4,1,5,[[510,1,1,1,2],[518,1,1,2,3],[566,1,1,3,4],[593,1,1,4,5]]],[22,2,2,5,7,[[724,2,2,5,7]]],[23,2,2,7,9,[[795,2,2,7,9]]],[25,1,1,9,10,[[834,1,1,9,10]]],[29,3,2,10,12,[[880,3,2,10,12]]]],[13419,14383,14543,15374,15852,18588,18590,20218,20257,21285,22393,22394]]],["delivered",[15,15,[[9,1,1,0,1,[[285,1,1,0,1]]],[17,2,2,1,3,[[457,1,1,1,2],[464,1,1,2,3]]],[18,2,2,3,5,[[499,1,1,3,4],[584,1,1,4,5]]],[19,2,2,5,7,[[638,1,1,5,6],[655,1,1,6,7]]],[22,3,3,7,10,[[727,2,2,7,9],[744,1,1,9,10]]],[25,1,1,10,11,[[818,1,1,10,11]]],[26,1,1,11,12,[[861,1,1,11,12]]],[28,1,1,12,13,[[877,1,1,12,13]]],[29,1,1,13,14,[[887,1,1,13,14]]],[38,1,1,14,15,[[927,1,1,14,15]]]],[8520,13419,13544,14209,15719,16709,17222,18660,18661,18929,20840,22082,22343,22496,23135]]],["escape",[20,20,[[0,4,4,0,4,[[18,4,4,0,4]]],[8,1,1,4,5,[[262,1,1,4,5]]],[10,1,1,5,6,[[308,1,1,5,6]]],[11,1,1,6,7,[[322,1,1,6,7]]],[16,1,1,7,8,[[429,1,1,7,8]]],[19,1,1,8,9,[[646,1,1,8,9]]],[20,1,1,9,10,[[665,1,1,9,10]]],[22,1,1,10,11,[[698,1,1,10,11]]],[23,6,6,11,17,[[776,1,1,11,12],[778,1,1,12,13],[782,2,2,13,15],[790,1,1,15,16],[792,1,1,16,17]]],[25,2,2,17,19,[[818,2,2,17,19]]],[26,1,1,19,20,[[860,1,1,19,20]]]],[474,476,477,479,7931,9381,9817,12775,16930,17455,18035,19735,19804,19913,19918,20051,20088,20840,20843,22077]]],["escaped",[25,23,[[6,3,2,0,2,[[213,3,2,0,2]]],[8,8,8,2,10,[[254,4,4,2,6],[257,2,2,6,8],[258,1,1,8,9],[265,1,1,9,10]]],[9,2,2,10,12,[[267,1,1,10,11],[270,1,1,11,12]]],[10,1,1,12,13,[[310,1,1,12,13]]],[11,1,1,13,14,[[331,1,1,13,14]]],[13,1,1,14,15,[[382,1,1,14,15]]],[17,5,5,15,20,[[436,4,4,15,19],[454,1,1,19,20]]],[18,2,1,20,21,[[601,2,1,20,21]]],[22,1,1,21,22,[[715,1,1,21,22]]],[23,1,1,22,23,[[785,1,1,22,23]]]],[6594,6597,7716,7718,7723,7724,7788,7807,7823,7995,8025,8126,9428,10098,11516,12884,12885,12886,12888,13317,16109,18390,19972]]],["escapeth",[3,2,[[10,2,1,0,1,[[309,2,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[9404,20099]]],["lay",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18318]]],["out",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13907]]],["preserve",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18255]]],["save",[3,3,[[8,1,1,0,1,[[254,1,1,0,1]]],[17,1,1,1,2,[[455,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[7717,13346,20086]]],["thyself",[1,1,[[37,1,1,0,1,[[912,1,1,0,1]]]],[22906]]]]},{"k":"H4423","v":[["clay",[1,1,[[23,1,1,0,1,[[787,1,1,0,1]]]],[20006]]]]},{"k":"H4424","v":[["Melatiah",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12334]]]]},{"k":"H4425","v":[["ears",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5525]]]]},{"k":"H4426","v":[["*",[2,2,[[19,1,1,0,1,[[628,1,1,0,1]]],[34,1,1,1,2,[[904,1,1,1,2]]]],[16406,22754]]],["interpretation",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16406]]],["taunting",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22754]]]]},{"k":"H4427","v":[["*",[350,284,[[0,12,10,0,10,[[35,10,9,0,9],[36,2,1,9,10]]],[1,1,1,10,11,[[64,1,1,10,11]]],[5,3,3,11,14,[[199,3,3,11,14]]],[6,8,8,14,22,[[214,1,1,14,15],[219,7,7,15,22]]],[8,17,15,22,37,[[243,4,4,22,26],[246,2,2,26,28],[247,3,3,28,31],[248,2,1,31,32],[250,2,2,32,34],[251,1,1,34,35],[258,1,1,35,36],[259,2,1,36,37]]],[9,12,9,37,46,[[268,3,2,37,39],[269,1,1,39,40],[271,4,2,40,42],[274,1,1,42,43],[276,1,1,43,44],[281,1,1,44,45],[282,1,1,45,46]]],[10,62,51,46,97,[[291,10,9,46,55],[292,4,2,55,57],[293,1,1,57,58],[296,1,1,58,59],[301,5,5,59,64],[302,3,3,64,67],[304,7,4,67,71],[305,11,10,71,81],[306,13,11,81,92],[312,7,5,92,97]]],[11,92,73,97,170,[[313,1,1,97,98],[315,3,2,98,100],[320,9,7,100,107],[321,2,2,107,109],[322,3,3,109,112],[323,3,3,112,115],[324,3,2,115,117],[325,4,4,117,121],[326,7,6,121,127],[327,19,16,127,143],[328,4,3,143,146],[329,2,2,146,148],[330,3,2,148,150],[331,1,1,150,151],[332,1,1,151,152],[333,7,5,152,157],[334,2,1,157,158],[335,8,5,158,163],[336,8,5,163,168],[337,2,2,168,170]]],[12,27,22,170,192,[[338,9,8,170,178],[340,2,1,178,179],[341,1,1,179,180],[348,1,1,180,181],[349,3,2,181,183],[353,1,1,183,184],[355,1,1,184,185],[356,1,1,185,186],[360,1,1,186,187],[365,1,1,187,188],[366,6,4,188,192]]],[13,79,57,192,249,[[367,4,4,192,196],[375,2,2,196,198],[376,2,2,198,200],[377,1,1,200,201],[378,4,2,201,203],[379,2,2,203,205],[380,1,1,205,206],[382,1,1,206,207],[383,2,2,207,209],[386,3,1,209,210],[387,6,4,210,214],[388,5,3,214,217],[389,2,2,217,219],[390,3,2,219,221],[391,2,1,221,222],[392,4,3,222,225],[393,5,3,225,228],[394,3,2,228,230],[395,3,2,230,232],[398,1,1,232,233],[399,6,4,233,237],[400,4,3,237,240],[402,13,9,240,249]]],[15,1,1,249,250,[[417,1,1,249,250]]],[16,4,4,250,254,[[426,2,2,250,252],[427,2,2,252,254]]],[17,1,1,254,255,[[469,1,1,254,255]]],[18,6,6,255,261,[[524,1,1,255,256],[570,1,1,256,257],[573,1,1,257,258],[574,1,1,258,259],[576,1,1,259,260],[623,1,1,260,261]]],[19,2,2,261,263,[[635,1,1,261,262],[657,1,1,262,263]]],[20,1,1,263,264,[[662,1,1,263,264]]],[22,5,5,264,269,[[685,1,1,264,265],[702,1,1,265,266],[710,1,1,266,267],[715,1,1,267,268],[730,1,1,268,269]]],[23,11,9,269,278,[[745,1,1,269,270],[766,2,2,270,272],[767,1,1,272,273],[777,1,1,273,274],[781,2,1,274,275],[795,1,1,275,276],[796,3,2,276,278]]],[25,2,2,278,280,[[818,1,1,278,279],[821,1,1,279,280]]],[26,2,2,280,282,[[858,2,2,280,282]]],[27,1,1,282,283,[[869,1,1,282,283]]],[32,1,1,283,284,[[896,1,1,283,284]]]],[1071,1072,1073,1074,1075,1076,1077,1078,1079,1091,1938,6164,6166,6175,6601,6760,6762,6764,6766,6768,6770,6772,7376,7378,7380,7391,7457,7460,7461,7472,7474,7486,7571,7595,7596,7827,7859,8058,8059,8102,8136,8137,8224,8241,8399,8434,8722,8728,8730,8734,8735,8741,8747,8752,8760,8781,8785,8823,8897,9132,9133,9145,9150,9151,9152,9168,9171,9237,9238,9239,9249,9250,9251,9257,9258,9259,9273,9274,9277,9278,9282,9289,9291,9293,9294,9298,9299,9304,9305,9306,9311,9312,9520,9521,9522,9530,9531,9550,9577,9603,9742,9743,9744,9747,9751,9752,9753,9769,9785,9798,9828,9829,9832,9841,9850,9851,9871,9872,9880,9881,9895,9897,9898,9912,9917,9919,9925,9926,9927,9932,9933,9935,9938,9939,9942,9947,9948,9950,9952,9955,9957,9958,9963,9964,9965,9983,9984,10004,10025,10026,10098,10119,10120,10137,10138,10143,10145,10146,10195,10196,10198,10199,10201,10208,10210,10214,10219,10220,10223,10249,10295,10296,10297,10298,10299,10300,10301,10302,10365,10416,10683,10751,10758,10851,10904,10908,10984,11147,11186,11190,11191,11192,11202,11203,11205,11207,11394,11395,11396,11412,11436,11450,11453,11454,11455,11476,11522,11524,11530,11618,11625,11629,11632,11644,11645,11646,11656,11659,11667,11678,11704,11705,11733,11735,11755,11756,11763,11764,11765,11791,11792,11794,11908,11909,11928,11929,11933,11934,11936,11941,11994,11995,11997,11998,12001,12002,12003,12004,12013,12389,12703,12705,12728,12741,13713,14633,15427,15475,15479,15500,16351,16617,17273,17395,17788,18118,18260,18390,18703,18948,19465,19469,19489,19796,19875,20271,20277,20280,20841,20928,21989,21990,22198,22627]]],["+",[37,34,[[0,2,1,0,1,[[36,2,1,0,1]]],[6,2,2,1,3,[[219,2,2,1,3]]],[8,9,8,3,11,[[243,2,2,3,5],[246,1,1,5,6],[247,1,1,6,7],[250,2,2,7,9],[251,1,1,9,10],[259,2,1,10,11]]],[10,4,4,11,15,[[291,1,1,11,12],[302,2,2,12,14],[305,1,1,14,15]]],[11,7,7,15,22,[[322,1,1,15,16],[323,1,1,16,17],[326,1,1,17,18],[335,3,3,18,21],[336,1,1,21,22]]],[12,4,3,22,25,[[349,3,2,22,24],[360,1,1,24,25]]],[13,6,6,25,31,[[376,1,1,25,26],[387,1,1,26,27],[389,1,1,27,28],[392,1,1,28,29],[399,1,1,29,30],[402,1,1,30,31]]],[17,1,1,31,32,[[469,1,1,31,32]]],[22,1,1,32,33,[[685,1,1,32,33]]],[25,1,1,33,34,[[818,1,1,33,34]]]],[1091,6760,6770,7376,7391,7460,7461,7571,7595,7596,7859,8760,9152,9171,9258,9798,9841,9917,10195,10198,10199,10219,10751,10758,10984,11396,11632,11667,11733,11933,12003,13713,17788,20841]]],["Reign",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6762]]],["consulted",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12389]]],["king",[23,23,[[6,1,1,0,1,[[219,1,1,0,1]]],[8,1,1,1,2,[[258,1,1,1,2]]],[9,1,1,2,3,[[268,1,1,2,3]]],[10,5,5,3,8,[[291,2,2,3,5],[293,1,1,5,6],[306,2,2,6,8]]],[11,5,5,8,13,[[321,1,1,8,9],[329,1,1,9,10],[333,1,1,10,11],[335,1,1,11,12],[336,1,1,12,13]]],[12,2,2,13,15,[[348,1,1,13,14],[365,1,1,14,15]]],[13,6,6,15,21,[[367,2,2,15,17],[377,1,1,17,18],[388,1,1,18,19],[402,2,2,19,21]]],[23,1,1,21,22,[[781,1,1,21,22]]],[26,1,1,22,23,[[858,1,1,22,23]]]],[6772,7827,8058,8722,8752,8823,9299,9304,9769,10004,10143,10199,10219,10683,11147,11203,11205,11436,11645,11994,11997,19875,21989]]],["kings",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22198]]],["made",[2,2,[[11,1,1,0,1,[[320,1,1,0,1]]],[12,1,1,1,2,[[366,1,1,1,2]]]],[9747,11186]]],["queen",[2,2,[[16,2,2,0,2,[[427,2,2,0,2]]]],[12728,12741]]],["reign",[112,111,[[1,1,1,0,1,[[64,1,1,0,1]]],[6,3,3,1,4,[[219,3,3,1,4]]],[8,4,4,4,8,[[243,2,2,4,6],[246,1,1,6,7],[247,1,1,7,8]]],[9,3,3,8,11,[[268,1,1,8,9],[269,1,1,9,10],[271,1,1,10,11]]],[10,20,19,11,30,[[291,6,5,11,16],[292,1,1,16,17],[296,1,1,17,18],[301,1,1,18,19],[304,1,1,19,20],[305,2,2,20,22],[306,5,5,22,27],[312,3,3,27,30]]],[11,37,37,30,67,[[315,1,1,30,31],[320,4,4,31,35],[321,1,1,35,36],[323,2,2,36,38],[324,1,1,38,39],[325,2,2,39,41],[326,2,2,41,43],[327,9,9,43,52],[328,2,2,52,54],[329,1,1,54,55],[330,2,2,55,57],[333,2,2,57,59],[334,1,1,59,60],[335,2,2,60,62],[336,3,3,62,65],[337,2,2,65,67]]],[12,1,1,67,68,[[341,1,1,67,68]]],[13,28,28,68,96,[[367,1,1,68,69],[378,1,1,69,70],[379,1,1,70,71],[382,1,1,71,72],[383,1,1,72,73],[386,1,1,73,74],[387,2,2,74,76],[388,1,1,76,77],[389,1,1,77,78],[390,1,1,78,79],[391,1,1,79,80],[392,1,1,80,81],[393,2,2,81,83],[394,1,1,83,84],[395,2,2,84,86],[399,2,2,86,88],[400,3,3,88,91],[402,5,5,91,96]]],[16,1,1,96,97,[[426,1,1,96,97]]],[18,1,1,97,98,[[623,1,1,97,98]]],[19,1,1,98,99,[[635,1,1,98,99]]],[20,1,1,99,100,[[662,1,1,99,100]]],[22,2,2,100,102,[[702,1,1,100,101],[710,1,1,101,102]]],[23,7,7,102,109,[[745,1,1,102,103],[766,1,1,103,104],[767,1,1,104,105],[777,1,1,105,106],[795,1,1,106,107],[796,2,2,107,109]]],[26,1,1,109,110,[[858,1,1,109,110]]],[32,1,1,110,111,[[896,1,1,110,111]]]],[1938,6764,6766,6768,7378,7380,7457,7472,8059,8102,8136,8728,8730,8734,8741,8747,8785,8897,9145,9239,9274,9282,9291,9294,9298,9306,9312,9521,9522,9531,9577,9743,9744,9752,9753,9785,9832,9850,9851,9872,9881,9898,9919,9926,9927,9933,9938,9942,9948,9952,9957,9958,9964,9965,9984,10025,10026,10120,10138,10146,10196,10201,10210,10214,10220,10223,10249,10416,11202,11450,11454,11522,11530,11618,11629,11644,11646,11659,11678,11705,11735,11756,11763,11765,11792,11794,11909,11929,11934,11936,11941,11995,11998,12002,12004,12013,12705,16351,16617,17395,18118,18260,18948,19469,19489,19796,20271,20277,20280,21990,22627]]],["reigned",[159,146,[[0,10,9,0,9,[[35,10,9,0,9]]],[5,3,3,9,12,[[199,3,3,9,12]]],[6,1,1,12,13,[[214,1,1,12,13]]],[8,2,1,13,14,[[248,2,1,13,14]]],[9,7,6,14,20,[[268,1,1,14,15],[271,3,2,15,17],[274,1,1,17,18],[276,1,1,18,19],[282,1,1,19,20]]],[10,32,28,20,48,[[292,3,1,20,21],[301,4,4,21,25],[302,1,1,25,26],[304,6,4,26,30],[305,8,8,30,38],[306,6,6,38,44],[312,4,4,44,48]]],[11,42,42,48,90,[[313,1,1,48,49],[315,2,2,49,51],[320,4,4,51,55],[322,2,2,55,57],[324,2,2,57,59],[325,2,2,59,61],[326,4,4,61,65],[327,10,10,65,75],[328,2,2,75,77],[330,1,1,77,78],[331,1,1,78,79],[332,1,1,79,80],[333,4,4,80,84],[334,1,1,84,85],[335,2,2,85,87],[336,3,3,87,90]]],[12,18,14,90,104,[[338,9,8,90,98],[340,2,1,98,99],[355,1,1,99,100],[356,1,1,100,101],[366,5,3,101,104]]],[13,39,37,104,141,[[367,1,1,104,105],[375,2,2,105,107],[376,1,1,107,108],[378,3,2,108,110],[379,1,1,110,111],[380,1,1,111,112],[383,1,1,112,113],[386,2,1,113,114],[387,3,3,114,117],[388,3,3,117,120],[390,2,2,120,122],[391,1,1,122,123],[392,2,2,123,125],[393,3,3,125,128],[394,2,2,128,130],[395,1,1,130,131],[398,1,1,131,132],[399,3,3,132,135],[400,1,1,135,136],[402,5,5,136,141]]],[16,1,1,141,142,[[426,1,1,141,142]]],[22,1,1,142,143,[[715,1,1,142,143]]],[23,3,3,143,146,[[766,1,1,143,144],[781,1,1,144,145],[796,1,1,145,146]]]],[1071,1072,1073,1074,1075,1076,1077,1078,1079,6164,6166,6175,6601,7486,8059,8136,8137,8224,8241,8434,8781,9132,9133,9150,9151,9168,9237,9238,9239,9249,9250,9251,9257,9259,9273,9274,9277,9278,9289,9293,9305,9306,9311,9312,9520,9522,9530,9531,9550,9577,9603,9742,9744,9751,9753,9828,9829,9851,9871,9880,9895,9897,9898,9912,9925,9927,9932,9935,9938,9939,9947,9950,9955,9958,9963,9965,9983,10026,10098,10119,10120,10137,10138,10145,10146,10196,10201,10208,10210,10220,10295,10296,10297,10298,10299,10300,10301,10302,10365,10904,10908,11190,11191,11192,11207,11394,11395,11412,11450,11453,11455,11476,11524,11618,11625,11629,11644,11645,11646,11656,11678,11704,11705,11735,11755,11756,11763,11764,11765,11791,11792,11908,11909,11928,11929,11934,11995,11998,12001,12002,12004,12703,18390,19465,19875,20277]]],["reigneth",[11,11,[[8,1,1,0,1,[[247,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]],[10,1,1,2,3,[[291,1,1,2,3]]],[12,1,1,3,4,[[353,1,1,3,4]]],[18,5,5,4,9,[[524,1,1,4,5],[570,1,1,5,6],[573,1,1,6,7],[574,1,1,7,8],[576,1,1,8,9]]],[19,1,1,9,10,[[657,1,1,9,10]]],[22,1,1,10,11,[[730,1,1,10,11]]]],[7474,8399,8735,10851,14633,15427,15475,15479,15500,17273,18703]]],["rule",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20928]]]]},{"k":"H4428","v":[["*",[2521,1919,[[0,41,22,0,22,[[13,27,10,0,10],[16,2,2,10,12],[19,1,1,12,13],[25,2,2,13,15],[34,1,1,15,16],[35,2,1,16,17],[38,1,1,17,18],[39,3,2,18,20],[40,1,1,20,21],[48,1,1,21,22]]],[1,14,14,22,36,[[50,4,4,22,26],[51,1,1,26,27],[52,2,2,27,29],[54,1,1,29,30],[55,4,4,30,34],[63,2,2,34,36]]],[3,20,17,36,53,[[136,2,2,36,38],[137,8,7,38,45],[138,2,2,45,47],[139,2,2,47,49],[140,1,1,49,50],[147,2,1,50,51],[148,2,1,51,52],[149,1,1,52,53]]],[4,26,22,53,75,[[153,2,1,53,54],[154,3,3,54,57],[155,7,7,57,64],[156,3,2,64,66],[159,2,2,66,68],[163,1,1,68,69],[169,3,2,69,71],[180,1,1,71,72],[181,2,1,72,73],[183,1,1,73,74],[185,1,1,74,75]]],[5,109,62,75,137,[[188,3,3,75,78],[191,2,1,78,79],[192,1,1,79,80],[194,6,5,80,85],[195,4,2,85,87],[196,39,16,87,103],[197,11,7,103,110],[198,37,21,110,131],[199,4,4,131,135],[210,2,2,135,137]]],[6,37,32,137,169,[[211,1,1,137,138],[213,7,7,138,145],[214,5,4,145,149],[215,3,2,149,151],[218,4,4,151,155],[219,3,3,155,158],[221,10,7,158,165],[227,1,1,165,166],[228,1,1,166,167],[229,1,1,167,168],[231,1,1,168,169]]],[8,86,75,169,244,[[237,1,1,169,170],[243,9,9,170,179],[245,2,2,179,181],[247,12,9,181,190],[249,1,1,190,191],[250,8,8,191,199],[251,1,1,199,200],[252,3,3,200,203],[253,10,7,203,210],[254,1,1,210,211],[255,4,4,211,215],[256,5,5,215,220],[257,11,8,220,228],[258,2,1,228,229],[259,2,2,229,231],[260,1,1,231,232],[261,8,7,232,239],[262,2,2,239,241],[263,1,1,241,242],[264,2,2,242,244]]],[9,284,204,244,448,[[268,3,3,244,247],[269,12,12,247,259],[270,2,1,259,260],[271,8,6,260,266],[272,3,3,266,269],[273,4,4,269,273],[274,7,7,273,280],[275,11,7,280,287],[276,4,4,287,291],[277,8,7,291,298],[278,2,2,298,300],[279,24,19,300,319],[280,40,23,319,342],[281,22,16,342,358],[282,14,9,358,367],[283,4,4,367,371],[284,26,18,371,389],[285,63,38,389,427],[286,5,5,427,432],[287,6,6,432,438],[288,1,1,438,439],[290,15,9,439,448]]],[10,305,231,448,679,[[291,60,35,448,483],[292,24,19,483,502],[293,13,11,502,513],[294,10,7,513,520],[295,4,3,520,523],[296,1,1,523,524],[297,6,6,524,530],[298,8,8,530,538],[299,9,8,538,546],[300,22,17,546,563],[301,8,8,563,571],[302,13,10,571,581],[303,6,5,581,586],[304,10,8,586,594],[305,20,15,594,609],[306,14,13,609,622],[309,2,2,622,624],[310,29,22,624,646],[311,4,4,646,650],[312,42,29,650,679]]],[11,370,268,679,947,[[313,7,7,679,686],[315,24,14,686,700],[316,1,1,700,701],[317,7,5,701,706],[318,13,10,706,716],[319,12,9,716,725],[320,24,16,725,741],[321,13,11,741,752],[322,7,6,752,758],[323,20,13,758,771],[324,9,6,771,777],[325,15,13,777,790],[326,22,15,790,805],[327,25,20,805,825],[328,27,15,825,840],[329,14,11,840,851],[330,32,21,851,872],[331,16,13,872,885],[332,5,5,885,890],[333,6,6,890,896],[334,12,8,896,904],[335,20,15,904,919],[336,17,11,919,930],[337,22,17,930,947]]],[12,69,60,947,1007,[[338,2,1,947,948],[340,1,1,948,949],[341,2,2,949,951],[342,5,3,951,954],[346,2,2,954,956],[348,3,2,956,958],[351,3,3,958,961],[352,1,1,961,962],[353,1,1,962,963],[354,1,1,963,964],[355,7,6,964,970],[356,4,4,970,974],[357,2,2,974,976],[358,5,5,976,981],[361,2,2,981,983],[362,3,3,983,986],[363,4,3,986,989],[364,8,7,989,996],[365,4,3,996,999],[366,9,8,999,1007]]],[13,277,218,1007,1225,[[367,6,5,1007,1012],[368,4,3,1012,1015],[370,3,3,1015,1018],[371,2,2,1018,1020],[372,1,1,1020,1021],[373,5,4,1021,1025],[374,4,4,1025,1029],[375,21,16,1029,1045],[376,10,7,1045,1052],[377,1,1,1052,1053],[378,9,6,1053,1059],[379,1,1,1059,1060],[381,1,1,1060,1061],[382,11,7,1061,1068],[383,2,1,1068,1069],[384,30,21,1069,1090],[385,3,3,1090,1093],[386,4,3,1093,1096],[387,7,7,1096,1103],[388,8,4,1103,1107],[389,17,11,1107,1118],[390,14,12,1118,1130],[391,15,10,1130,1140],[392,7,6,1140,1146],[393,2,2,1146,1148],[394,15,11,1148,1159],[395,10,10,1159,1169],[396,8,6,1169,1175],[397,2,2,1175,1177],[398,13,12,1177,1189],[399,3,3,1189,1192],[400,15,12,1192,1204],[401,12,11,1204,1215],[402,11,10,1215,1225]]],[14,32,25,1225,1250,[[403,5,4,1225,1229],[404,1,1,1229,1230],[405,2,2,1230,1232],[406,6,4,1232,1236],[408,1,1,1236,1237],[409,8,7,1237,1244],[410,6,4,1244,1248],[411,3,2,1248,1250]]],[15,43,29,1250,1279,[[413,1,1,1250,1251],[414,19,12,1251,1263],[415,2,2,1263,1265],[417,2,2,1265,1267],[418,3,2,1267,1269],[419,1,1,1269,1270],[421,7,5,1270,1275],[423,2,2,1275,1277],[425,6,2,1277,1279]]],[16,196,119,1279,1398,[[426,27,18,1279,1297],[427,30,18,1297,1315],[428,22,11,1315,1326],[429,14,9,1326,1335],[430,23,12,1335,1347],[431,26,13,1347,1360],[432,16,10,1360,1370],[433,22,14,1370,1384],[434,12,11,1384,1395],[435,4,3,1395,1398]]],[17,8,8,1398,1406,[[438,1,1,1398,1399],[447,1,1,1399,1400],[450,1,1,1400,1401],[453,1,1,1401,1402],[464,1,1,1402,1403],[469,1,1,1403,1404],[471,1,1,1404,1405],[476,1,1,1405,1406]]],[18,67,63,1406,1469,[[479,3,3,1406,1409],[482,1,1,1409,1410],[487,1,1,1410,1411],[495,1,1,1411,1412],[497,1,1,1412,1413],[498,2,2,1413,1415],[501,5,4,1415,1419],[506,1,1,1419,1420],[510,1,1,1420,1421],[521,1,1,1421,1422],[522,7,7,1422,1429],[524,3,3,1429,1432],[525,2,2,1432,1434],[538,1,1,1434,1435],[540,1,1,1435,1436],[545,4,4,1436,1440],[549,5,3,1440,1443],[551,1,1,1443,1444],[553,1,1,1444,1445],[561,1,1,1445,1446],[566,2,2,1446,1448],[572,1,1,1448,1449],[575,1,1,1449,1450],[576,1,1,1450,1451],[579,1,1,1451,1452],[582,3,3,1452,1455],[587,1,1,1455,1456],[596,1,1,1456,1457],[612,3,2,1457,1459],[613,4,4,1459,1463],[615,1,1,1463,1464],[621,1,1,1464,1465],[622,1,1,1465,1466],[625,1,1,1466,1467],[626,2,2,1467,1469]]],[19,32,31,1469,1500,[[628,1,1,1469,1470],[635,1,1,1470,1471],[641,2,2,1471,1473],[643,5,5,1473,1478],[646,1,1,1478,1479],[647,4,4,1479,1483],[648,1,1,1483,1484],[649,2,2,1484,1486],[651,1,1,1486,1487],[652,5,5,1487,1492],[656,2,2,1492,1494],[657,3,3,1494,1497],[658,4,3,1497,1500]]],[20,12,12,1500,1512,[[659,2,2,1500,1502],[660,2,2,1502,1504],[662,1,1,1504,1505],[663,1,1,1505,1506],[666,2,2,1506,1508],[667,1,1,1508,1509],[668,3,3,1509,1512]]],[21,5,5,1512,1517,[[671,2,2,1512,1514],[673,2,2,1514,1516],[677,1,1,1516,1517]]],[22,80,71,1517,1588,[[679,1,1,1517,1518],[684,2,2,1518,1520],[685,7,5,1520,1525],[686,3,3,1525,1528],[688,2,2,1528,1530],[692,4,4,1530,1534],[697,2,2,1534,1536],[698,3,3,1536,1539],[701,1,1,1539,1540],[702,1,1,1540,1541],[708,1,1,1541,1542],[710,1,1,1542,1543],[711,2,2,1543,1545],[714,15,11,1545,1556],[715,16,13,1556,1569],[716,2,2,1569,1571],[717,3,3,1571,1574],[719,2,2,1574,1576],[721,1,1,1576,1577],[722,1,1,1577,1578],[723,1,1,1578,1579],[727,2,2,1579,1581],[730,1,1,1581,1582],[735,1,1,1582,1583],[738,4,4,1583,1587],[740,1,1,1587,1588]]],[23,266,211,1588,1799,[[745,4,3,1588,1591],[746,1,1,1591,1592],[747,1,1,1592,1593],[748,1,1,1593,1594],[752,2,2,1594,1596],[754,2,2,1596,1598],[757,2,2,1598,1600],[759,1,1,1600,1601],[761,3,3,1601,1604],[763,3,3,1604,1607],[764,2,2,1607,1609],[765,7,6,1609,1615],[766,8,8,1615,1623],[767,1,1,1623,1624],[768,3,2,1624,1626],[769,21,13,1626,1639],[770,8,7,1639,1646],[771,22,14,1646,1660],[772,7,6,1660,1666],[773,6,5,1666,1671],[774,1,1,1671,1672],[776,10,7,1672,1679],[777,1,1,1679,1680],[778,11,9,1680,1689],[779,2,2,1689,1691],[780,19,15,1691,1706],[781,11,8,1706,1714],[782,24,18,1714,1732],[783,12,8,1732,1740],[784,5,5,1740,1745],[785,6,5,1745,1750],[786,1,1,1750,1751],[787,2,2,1751,1753],[788,6,4,1753,1757],[789,1,1,1757,1758],[790,8,6,1758,1764],[792,1,1,1764,1765],[793,6,6,1765,1771],[794,6,4,1771,1775],[795,6,6,1775,1781],[796,22,18,1781,1799]]],[24,3,3,1799,1802,[[798,2,2,1799,1801],[800,1,1,1801,1802]]],[25,37,31,1802,1833,[[802,1,1,1802,1803],[808,1,1,1803,1804],[818,3,2,1804,1806],[820,1,1,1806,1807],[822,2,2,1807,1809],[825,1,1,1809,1810],[827,3,1,1810,1811],[828,2,2,1811,1813],[829,2,2,1813,1815],[830,4,4,1815,1819],[831,6,5,1819,1824],[832,1,1,1824,1825],[833,4,4,1825,1829],[838,3,2,1829,1831],[844,3,2,1831,1833]]],[26,52,40,1833,1873,[[850,18,13,1833,1846],[851,5,3,1846,1849],[857,6,5,1849,1854],[858,2,2,1854,1856],[859,2,2,1856,1858],[860,19,15,1858,1873]]],[27,19,16,1873,1889,[[862,2,1,1873,1874],[864,2,2,1874,1876],[866,2,2,1876,1878],[868,3,3,1878,1881],[869,1,1,1881,1882],[871,5,4,1882,1886],[872,1,1,1886,1887],[874,3,2,1887,1889]]],[29,7,6,1889,1895,[[879,3,2,1889,1891],[880,1,1,1891,1892],[885,3,3,1892,1895]]],[31,2,2,1895,1897,[[891,2,2,1895,1897]]],[32,5,5,1897,1902,[[893,2,2,1897,1899],[894,1,1,1899,1900],[896,1,1,1900,1901],[898,1,1,1901,1902]]],[33,1,1,1902,1903,[[902,1,1,1902,1903]]],[34,1,1,1903,1904,[[903,1,1,1903,1904]]],[35,3,3,1904,1907,[[906,2,2,1904,1906],[908,1,1,1906,1907]]],[36,2,2,1907,1909,[[909,2,2,1907,1909]]],[37,9,9,1909,1918,[[917,1,1,1909,1910],[919,2,2,1910,1912],[921,1,1,1912,1913],[924,5,5,1913,1918]]],[38,1,1,1918,1919,[[925,1,1,1918,1919]]]],[337,338,341,344,345,346,353,354,357,358,403,413,497,693,700,1022,1071,1169,1173,1177,1241,1493,1540,1547,1549,1550,1577,1597,1598,1636,1666,1668,1682,1684,1894,1897,4325,4328,4341,4361,4362,4366,4369,4373,4374,4379,4385,4423,4437,4453,4672,4751,4800,4896,4962,4964,4968,4976,4977,4978,4981,4983,4986,4996,5050,5051,5119,5135,5211,5378,5379,5647,5686,5732,5815,5871,5872,5879,5935,5951,6003,6004,6016,6025,6031,6038,6047,6065,6067,6069,6070,6080,6081,6086,6087,6088,6092,6094,6097,6101,6103,6104,6106,6108,6109,6112,6117,6119,6124,6125,6131,6132,6134,6135,6137,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6164,6175,6181,6184,6485,6488,6516,6576,6578,6580,6582,6583,6585,6587,6601,6616,6622,6623,6626,6642,6724,6731,6737,6745,6760,6762,6769,6841,6842,6843,6846,6848,6854,6857,6986,6994,7025,7127,7250,7374,7375,7378,7379,7380,7387,7388,7389,7391,7437,7442,7461,7462,7469,7472,7473,7474,7477,7479,7485,7555,7561,7568,7571,7577,7580,7583,7586,7592,7596,7643,7673,7674,7682,7694,7698,7699,7701,7702,7703,7710,7735,7754,7755,7759,7774,7780,7782,7783,7784,7790,7791,7798,7801,7802,7803,7804,7805,7830,7847,7853,7897,7919,7920,7921,7922,7924,7925,7927,7932,7936,7955,7970,7975,8053,8056,8060,8084,8098,8102,8104,8105,8112,8113,8114,8117,8118,8119,8120,8128,8134,8135,8138,8143,8144,8149,8169,8173,8177,8181,8182,8183,8198,8212,8214,8217,8218,8219,8220,8221,8229,8230,8231,8232,8236,8238,8240,8241,8245,8246,8259,8260,8261,8267,8268,8278,8279,8283,8293,8316,8321,8323,8330,8335,8338,8340,8341,8342,8343,8344,8346,8347,8348,8349,8350,8352,8353,8354,8356,8357,8359,8360,8361,8364,8365,8366,8367,8368,8369,8371,8372,8373,8374,8375,8377,8378,8380,8382,8384,8385,8388,8389,8391,8392,8395,8396,8398,8404,8405,8406,8407,8408,8410,8412,8414,8416,8423,8424,8428,8429,8430,8431,8432,8435,8436,8440,8442,8451,8465,8466,8470,8480,8482,8483,8490,8491,8496,8497,8498,8499,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8515,8516,8519,8520,8521,8522,8523,8525,8526,8527,8528,8529,8530,8531,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8556,8557,8558,8575,8576,8582,8585,8586,8587,8588,8594,8653,8694,8695,8696,8701,8712,8713,8714,8715,8716,8718,8719,8720,8721,8726,8730,8731,8732,8733,8735,8736,8737,8738,8739,8740,8741,8742,8744,8745,8746,8748,8749,8750,8751,8753,8754,8755,8756,8760,8761,8762,8764,8765,8768,8770,8787,8788,8789,8790,8792,8793,8795,8796,8799,8800,8801,8805,8806,8808,8809,8812,8814,8815,8816,8817,8820,8829,8832,8838,8839,8840,8841,8842,8843,8844,8845,8849,8851,8863,8868,8871,8878,8879,8891,8895,8898,8947,8948,8974,8979,8980,8985,8986,8987,8990,8999,9047,9048,9049,9051,9052,9061,9062,9065,9066,9067,9077,9079,9082,9085,9088,9089,9091,9092,9094,9095,9096,9097,9100,9101,9102,9105,9106,9107,9108,9109,9122,9126,9131,9134,9135,9145,9148,9153,9157,9163,9164,9166,9167,9169,9174,9178,9179,9188,9190,9191,9192,9195,9220,9232,9237,9243,9244,9245,9246,9247,9250,9256,9258,9265,9266,9267,9268,9269,9271,9272,9274,9277,9280,9281,9282,9288,9291,9293,9297,9298,9299,9301,9303,9306,9310,9312,9314,9316,9402,9403,9409,9410,9412,9415,9417,9419,9420,9421,9424,9428,9429,9430,9431,9432,9436,9439,9440,9446,9447,9448,9449,9451,9452,9461,9464,9469,9482,9483,9484,9485,9486,9488,9489,9490,9492,9493,9495,9496,9498,9506,9507,9509,9510,9511,9512,9513,9514,9515,9517,9519,9521,9524,9525,9527,9531,9536,9539,9542,9544,9548,9550,9551,9577,9580,9581,9582,9583,9585,9586,9587,9588,9589,9590,9597,9599,9602,9616,9648,9652,9653,9654,9655,9682,9683,9684,9685,9686,9695,9698,9700,9702,9704,9709,9713,9716,9718,9719,9721,9722,9724,9725,9730,9731,9732,9733,9734,9735,9736,9740,9743,9745,9747,9750,9752,9753,9755,9756,9759,9762,9768,9770,9771,9772,9774,9775,9777,9783,9790,9797,9799,9800,9801,9806,9827,9831,9833,9834,9836,9837,9839,9840,9841,9843,9845,9846,9848,9849,9856,9857,9860,9867,9868,9869,9872,9874,9875,9878,9879,9881,9883,9884,9885,9887,9889,9893,9895,9897,9901,9904,9905,9907,9909,9910,9911,9912,9913,9914,9918,9919,9924,9925,9926,9930,9931,9933,9936,9938,9940,9942,9944,9945,9946,9948,9950,9951,9952,9954,9956,9957,9961,9962,9964,9966,9968,9969,9970,9971,9972,9973,9974,9975,9978,9979,9980,9981,9982,9984,9985,9986,9987,9988,9989,9990,9991,10007,10009,10010,10025,10029,10031,10033,10034,10035,10037,10038,10039,10040,10041,10042,10043,10045,10047,10052,10053,10054,10055,10057,10060,10062,10065,10066,10067,10069,10070,10071,10072,10074,10078,10081,10093,10097,10104,10110,10112,10116,10118,10122,10130,10136,10142,10143,10144,10148,10154,10155,10156,10157,10161,10163,10165,10166,10167,10168,10169,10170,10176,10177,10178,10184,10186,10187,10188,10190,10193,10194,10203,10207,10209,10212,10213,10214,10215,10217,10218,10219,10222,10223,10224,10226,10227,10228,10230,10231,10233,10241,10242,10243,10244,10245,10246,10249,10250,10252,10295,10363,10408,10426,10434,10445,10454,10616,10633,10675,10676,10775,10776,10782,10820,10841,10879,10893,10895,10899,10900,10901,10907,10908,10912,10914,10916,10927,10928,10937,10938,10940,10957,10958,11021,11046,11048,11051,11052,11103,11107,11109,11110,11133,11134,11140,11141,11142,11143,11144,11145,11147,11165,11170,11173,11184,11187,11188,11189,11193,11206,11208,11209,11210,11211,11214,11222,11223,11257,11262,11263,11271,11274,11285,11328,11329,11330,11335,11356,11357,11361,11364,11369,11372,11373,11375,11376,11378,11379,11380,11381,11384,11385,11386,11387,11389,11390,11391,11397,11401,11407,11408,11410,11411,11413,11417,11439,11443,11446,11447,11448,11450,11454,11506,11510,11511,11512,11513,11515,11516,11520,11542,11545,11546,11547,11549,11550,11551,11553,11554,11556,11557,11559,11561,11567,11568,11570,11571,11572,11573,11574,11575,11576,11577,11578,11587,11602,11621,11622,11626,11630,11632,11636,11637,11641,11644,11645,11649,11650,11655,11659,11661,11663,11665,11666,11667,11668,11669,11671,11672,11676,11683,11685,11688,11689,11691,11693,11694,11698,11699,11700,11702,11704,11707,11711,11720,11721,11722,11725,11727,11728,11729,11730,11734,11743,11745,11750,11753,11755,11760,11762,11766,11769,11771,11780,11783,11784,11785,11786,11787,11790,11791,11806,11809,11810,11811,11814,11815,11816,11818,11820,11821,11829,11831,11833,11839,11851,11853,11857,11867,11876,11879,11882,11883,11884,11885,11886,11895,11896,11897,11898,11907,11919,11926,11933,11944,11949,11951,11952,11953,11955,11957,11959,11961,11962,11963,11964,11969,11970,11973,11976,11981,11982,11984,11986,11987,11989,11993,11996,11997,11999,12001,12003,12006,12010,12011,12015,12016,12017,12018,12023,12024,12028,12104,12107,12112,12113,12115,12117,12173,12174,12179,12180,12181,12184,12200,12201,12202,12223,12226,12237,12244,12246,12307,12308,12309,12310,12311,12312,12313,12314,12315,12316,12321,12325,12326,12342,12352,12386,12396,12407,12408,12426,12533,12535,12543,12545,12548,12611,12612,12677,12697,12704,12707,12709,12710,12711,12712,12713,12714,12715,12716,12717,12718,12719,12720,12721,12722,12723,12724,12725,12726,12727,12728,12730,12732,12733,12736,12737,12738,12739,12740,12741,12742,12743,12745,12746,12747,12748,12749,12750,12754,12755,12756,12757,12758,12759,12760,12762,12764,12765,12767,12768,12769,12770,12773,12775,12778,12780,12781,12782,12783,12784,12785,12787,12788,12790,12791,12792,12793,12794,12795,12796,12797,12798,12799,12800,12801,12802,12803,12804,12805,12807,12808,12809,12810,12811,12812,12813,12814,12815,12816,12817,12818,12819,12820,12821,12822,12824,12825,12826,12827,12828,12829,12831,12832,12834,12835,12836,12837,12838,12845,12846,12847,12848,12850,12854,12859,12867,12868,12869,12918,13146,13227,13290,13557,13701,13743,13922,13947,13951,13955,13975,14057,14168,14191,14192,14198,14248,14249,14250,14251,14318,14382,14575,14598,14602,14606,14608,14610,14611,14612,14627,14631,14632,14636,14638,14825,14850,14912,14914,14924,14929,15001,15010,15011,15060,15093,15262,15344,15353,15457,15496,15503,15536,15620,15626,15636,15791,15944,16185,16186,16213,16214,16215,16216,16235,16315,16321,16382,16387,16393,16401,16617,16800,16807,16850,16852,16853,16854,16855,16937,16956,16962,16980,16982,16985,17026,17044,17100,17114,17115,17116,17118,17119,17228,17238,17278,17279,17282,17285,17287,17288,17316,17327,17341,17345,17394,17406,17460,17462,17489,17509,17510,17513,17541,17549,17580,17582,17632,17655,17770,17774,17783,17788,17798,17799,17802,17811,17814,17828,17858,17862,17932,17937,17946,17956,18008,18015,18030,18033,18035,18092,18116,18250,18260,18296,18301,18331,18332,18334,18336,18338,18343,18344,18345,18346,18348,18351,18353,18356,18357,18358,18360,18361,18362,18363,18365,18370,18373,18385,18389,18396,18399,18413,18415,18419,18453,18472,18520,18539,18562,18643,18659,18711,18774,18824,18831,18832,18837,18856,18948,18949,18964,18991,19008,19036,19154,19172,19208,19211,19279,19284,19319,19376,19377,19382,19410,19411,19420,19426,19427,19441,19442,19444,19447,19450,19451,19455,19456,19458,19460,19465,19472,19478,19479,19489,19525,19532,19535,19537,19543,19545,19546,19548,19552,19553,19554,19556,19558,19559,19560,19573,19582,19590,19591,19593,19594,19595,19597,19599,19602,19603,19604,19605,19607,19608,19609,19610,19613,19614,19616,19617,19619,19620,19621,19622,19629,19632,19637,19638,19651,19656,19657,19676,19732,19733,19734,19735,19759,19763,19767,19779,19802,19803,19804,19805,19806,19807,19808,19809,19822,19824,19834,19843,19851,19854,19858,19862,19863,19864,19866,19867,19868,19869,19870,19871,19872,19874,19875,19877,19881,19891,19892,19893,19894,19895,19898,19899,19900,19902,19903,19904,19905,19906,19909,19911,19912,19913,19914,19917,19918,19920,19921,19922,19924,19926,19927,19928,19929,19931,19934,19936,19946,19948,19950,19952,19955,19958,19959,19966,19967,19975,19986,20003,20007,20019,20027,20031,20040,20041,20047,20058,20062,20063,20070,20071,20095,20128,20130,20155,20157,20161,20165,20183,20184,20207,20209,20223,20240,20243,20246,20269,20271,20279,20280,20281,20283,20284,20285,20286,20287,20288,20289,20291,20296,20301,20302,20303,20307,20308,20310,20338,20341,20432,20466,20604,20837,20841,20890,20963,20965,21058,21107,21154,21156,21169,21174,21185,21186,21201,21202,21214,21225,21226,21228,21229,21232,21250,21258,21259,21277,21419,21421,21579,21581,21738,21739,21740,21741,21742,21745,21747,21750,21752,21755,21756,21757,21758,21760,21761,21762,21962,21981,21982,21984,21988,21994,21996,22016,22028,22038,22039,22041,22042,22043,22044,22045,22047,22049,22050,22051,22061,22063,22072,22076,22095,22132,22133,22153,22165,22181,22183,22185,22204,22228,22231,22232,22240,22245,22276,22277,22365,22379,22380,22465,22474,22477,22564,22565,22580,22593,22608,22629,22653,22730,22741,22788,22795,22835,22841,22855,22963,23004,23008,23034,23073,23077,23078,23084,23085,23103]]],["+",[29,29,[[8,3,3,0,3,[[243,1,1,0,1],[247,1,1,1,2],[250,1,1,2,3]]],[9,6,6,3,9,[[269,1,1,3,4],[275,1,1,4,5],[277,2,2,5,7],[281,1,1,7,8],[285,1,1,8,9]]],[10,4,4,9,13,[[300,1,1,9,10],[301,1,1,10,11],[305,1,1,11,12],[310,1,1,12,13]]],[11,2,2,13,15,[[320,1,1,13,14],[334,1,1,14,15]]],[16,3,3,15,18,[[427,2,2,15,17],[432,1,1,17,18]]],[20,3,3,18,21,[[662,1,1,18,19],[668,2,2,19,21]]],[21,1,1,21,22,[[671,1,1,21,22]]],[22,1,1,22,23,[[685,1,1,22,23]]],[26,5,5,23,28,[[850,4,4,23,27],[860,1,1,27,28]]],[27,1,1,28,29,[[868,1,1,28,29]]]],[7391,7461,7583,8118,8238,8267,8283,8424,8526,9092,9122,9258,9432,9732,10154,12733,12737,12815,17394,17509,17510,17549,17788,21742,21745,21750,21752,22044,22181]]],["King",[33,32,[[18,19,18,0,18,[[482,1,1,0,1],[487,1,1,1,2],[501,5,4,2,6],[506,1,1,6,7],[521,1,1,7,8],[524,3,3,8,11],[525,1,1,11,12],[545,1,1,12,13],[551,1,1,13,14],[561,1,1,14,15],[572,1,1,15,16],[575,1,1,16,17],[626,1,1,17,18]]],[21,1,1,18,19,[[673,1,1,18,19]]],[22,4,4,19,23,[[684,1,1,19,20],[719,1,1,20,21],[721,1,1,21,22],[722,1,1,22,23]]],[23,5,5,23,28,[[754,1,1,23,24],[767,1,1,24,25],[790,1,1,25,26],[792,1,1,26,27],[795,1,1,27,28]]],[37,3,3,28,31,[[919,1,1,28,29],[924,2,2,29,31]]],[38,1,1,31,32,[[925,1,1,31,32]]]],[13975,14057,14248,14249,14250,14251,14318,14575,14627,14631,14632,14636,14924,15060,15262,15457,15496,16387,17580,17774,18472,18520,18539,19208,19489,20063,20095,20269,23008,23084,23085,23103]]],["Kings",[3,3,[[18,2,2,0,2,[[545,1,1,0,1],[625,1,1,1,2]]],[22,1,1,2,3,[[727,1,1,2,3]]]],[14912,16382,18643]]],["Kings'",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14606]]],["king",[1925,1487,[[0,30,15,0,15,[[13,22,8,0,8],[19,1,1,8,9],[25,2,2,9,11],[35,1,1,11,12],[39,3,2,12,14],[40,1,1,14,15]]],[1,14,14,15,29,[[50,4,4,15,19],[51,1,1,19,20],[52,2,2,20,22],[54,1,1,22,23],[55,4,4,23,27],[63,2,2,27,29]]],[3,16,14,29,43,[[136,1,1,29,30],[137,7,6,30,36],[138,2,2,36,38],[139,2,2,38,40],[140,1,1,40,41],[148,2,1,41,42],[149,1,1,42,43]]],[4,21,18,43,61,[[153,2,1,43,44],[154,3,3,44,47],[155,5,5,47,52],[156,2,2,52,54],[159,1,1,54,55],[163,1,1,55,56],[169,3,2,56,58],[180,1,1,58,59],[181,2,1,59,60],[185,1,1,60,61]]],[5,84,44,61,105,[[188,2,2,61,63],[192,1,1,63,64],[194,6,5,64,69],[195,2,1,69,70],[196,29,9,70,79],[197,5,2,79,81],[198,34,19,81,100],[199,4,4,100,104],[210,1,1,104,105]]],[6,30,26,105,131,[[213,7,7,105,112],[214,5,4,112,116],[218,1,1,116,117],[219,3,3,117,120],[221,10,7,120,127],[227,1,1,127,128],[228,1,1,128,129],[229,1,1,129,130],[231,1,1,130,131]]],[8,70,64,131,195,[[237,1,1,131,132],[243,8,8,132,140],[245,2,2,140,142],[247,11,8,142,150],[250,7,7,150,157],[251,1,1,157,158],[252,3,3,158,161],[253,5,5,161,166],[254,1,1,166,167],[255,3,3,167,170],[256,4,4,170,174],[257,10,8,174,182],[258,1,1,182,183],[259,2,2,183,185],[260,1,1,185,186],[261,6,5,186,191],[262,1,1,191,192],[263,1,1,192,193],[264,2,2,193,195]]],[9,247,182,195,377,[[268,3,3,195,198],[269,11,11,198,209],[270,2,1,209,210],[271,8,6,210,216],[272,3,3,216,219],[273,4,4,219,223],[274,7,7,223,230],[275,9,6,230,236],[276,3,3,236,239],[277,2,2,239,241],[278,1,1,241,242],[279,14,12,242,254],[280,35,20,254,274],[281,20,15,274,289],[282,13,9,289,298],[283,4,4,298,302],[284,22,16,302,318],[285,60,38,318,356],[286,5,5,356,361],[287,6,6,361,367],[288,1,1,367,368],[290,14,9,368,377]]],[10,256,202,377,579,[[291,54,34,377,411],[292,23,19,411,430],[293,12,10,430,440],[294,7,4,440,444],[295,4,3,444,447],[296,1,1,447,448],[297,6,6,448,454],[298,8,8,454,462],[299,7,6,462,468],[300,15,14,468,482],[301,7,7,482,489],[302,13,10,489,499],[303,5,5,499,504],[304,6,5,504,509],[305,15,12,509,521],[306,7,7,521,528],[309,2,2,528,530],[310,22,19,530,549],[311,4,4,549,553],[312,38,26,553,579]]],[11,289,211,579,790,[[313,6,6,579,585],[315,20,12,585,597],[316,1,1,597,598],[317,7,5,598,603],[318,13,10,603,613],[319,8,7,613,620],[320,21,14,620,634],[321,12,10,634,644],[322,2,1,644,645],[323,12,9,645,654],[324,5,4,654,658],[325,11,11,658,669],[326,16,10,669,679],[327,16,12,679,691],[328,22,13,691,704],[329,12,9,704,713],[330,29,18,713,731],[331,14,11,731,742],[332,4,4,742,746],[333,4,4,746,750],[334,10,8,750,758],[335,13,10,758,768],[336,13,9,768,777],[337,18,13,777,790]]],[12,53,46,790,836,[[338,1,1,790,791],[340,1,1,791,792],[341,2,2,792,794],[342,5,3,794,797],[348,3,2,797,799],[351,3,3,799,802],[352,1,1,802,803],[354,1,1,803,804],[355,7,6,804,810],[356,3,3,810,813],[357,1,1,813,814],[358,3,3,814,817],[361,2,2,817,819],[362,1,1,819,820],[363,4,3,820,823],[364,3,3,823,826],[365,4,3,826,829],[366,8,7,829,836]]],[13,215,174,836,1010,[[367,2,2,836,838],[368,4,3,838,841],[370,3,3,841,844],[371,2,2,844,846],[372,1,1,846,847],[373,4,3,847,850],[374,4,4,850,854],[375,15,12,854,866],[376,10,7,866,873],[377,1,1,873,874],[378,7,6,874,880],[379,1,1,880,881],[381,1,1,881,882],[382,9,6,882,888],[383,2,1,888,889],[384,28,21,889,910],[385,2,2,910,912],[386,3,2,912,914],[387,3,3,914,917],[388,7,4,917,921],[389,12,9,921,930],[390,8,7,930,937],[391,12,7,937,944],[392,4,4,944,948],[393,1,1,948,949],[394,9,7,949,956],[395,9,9,956,965],[396,7,6,965,971],[397,1,1,971,972],[398,11,10,972,982],[399,2,2,982,984],[400,13,11,984,995],[401,7,6,995,1001],[402,10,9,1001,1010]]],[14,25,21,1010,1031,[[403,5,4,1010,1014],[404,1,1,1014,1015],[405,2,2,1015,1017],[406,6,4,1017,1021],[408,1,1,1021,1022],[409,6,6,1022,1028],[410,4,3,1028,1031]]],[15,28,17,1031,1048,[[414,15,10,1031,1041],[417,1,1,1041,1042],[418,3,2,1042,1044],[419,1,1,1044,1045],[421,2,1,1045,1046],[425,6,2,1046,1048]]],[16,126,90,1048,1138,[[426,20,14,1048,1062],[427,18,14,1062,1076],[428,9,9,1076,1085],[429,5,3,1085,1088],[430,19,10,1088,1098],[431,18,11,1098,1109],[432,13,8,1109,1117],[433,13,10,1117,1127],[434,8,8,1127,1135],[435,3,3,1135,1138]]],[17,5,5,1138,1143,[[450,1,1,1138,1139],[453,1,1,1139,1140],[464,1,1,1140,1141],[469,1,1,1141,1142],[476,1,1,1142,1143]]],[18,18,17,1143,1160,[[479,1,1,1143,1144],[495,1,1,1144,1145],[497,1,1,1145,1146],[498,2,2,1146,1148],[510,1,1,1148,1149],[522,3,3,1149,1152],[540,1,1,1152,1153],[549,1,1,1153,1154],[566,1,1,1154,1155],[582,1,1,1155,1156],[612,2,1,1156,1157],[613,2,2,1157,1159],[622,1,1,1159,1160]]],[19,17,17,1160,1177,[[628,1,1,1160,1161],[643,2,2,1161,1163],[647,4,4,1163,1167],[649,1,1,1167,1168],[651,1,1,1168,1169],[652,3,3,1169,1172],[656,2,2,1172,1174],[657,2,2,1174,1176],[658,1,1,1176,1177]]],[20,7,7,1177,1184,[[659,2,2,1177,1179],[660,1,1,1179,1180],[663,1,1,1180,1181],[666,1,1,1181,1182],[667,1,1,1182,1183],[668,1,1,1183,1184]]],[21,3,3,1184,1187,[[671,1,1,1184,1185],[673,1,1,1185,1186],[677,1,1,1186,1187]]],[22,55,46,1187,1233,[[684,1,1,1187,1188],[685,5,3,1188,1191],[686,3,3,1191,1194],[688,1,1,1194,1195],[692,2,2,1195,1197],[697,1,1,1197,1198],[698,3,3,1198,1201],[701,1,1,1201,1202],[708,1,1,1202,1203],[710,1,1,1203,1204],[711,2,2,1204,1206],[714,14,10,1206,1216],[715,14,11,1216,1227],[716,2,2,1227,1229],[717,3,3,1229,1232],[735,1,1,1232,1233]]],[23,212,167,1233,1400,[[745,3,2,1233,1235],[747,1,1,1235,1236],[748,1,1,1236,1237],[752,1,1,1237,1238],[754,1,1,1238,1239],[757,1,1,1239,1240],[759,1,1,1240,1241],[764,1,1,1241,1242],[765,7,6,1242,1248],[766,6,6,1248,1254],[768,3,2,1254,1256],[769,8,7,1256,1263],[770,7,6,1263,1269],[771,21,13,1269,1282],[772,7,6,1282,1288],[773,6,5,1288,1293],[774,1,1,1293,1294],[776,9,6,1294,1300],[778,10,8,1300,1308],[779,2,2,1308,1310],[780,18,14,1310,1324],[781,11,8,1324,1332],[782,22,18,1332,1350],[783,10,7,1350,1357],[784,5,5,1357,1362],[785,5,4,1362,1366],[786,1,1,1366,1367],[787,1,1,1367,1368],[788,3,1,1368,1369],[789,1,1,1369,1370],[790,6,4,1370,1374],[793,6,6,1374,1380],[794,5,3,1380,1383],[795,3,3,1383,1386],[796,18,14,1386,1400]]],[24,2,2,1400,1402,[[798,2,2,1400,1402]]],[25,28,24,1402,1426,[[802,1,1,1402,1403],[808,1,1,1403,1404],[818,3,2,1404,1406],[820,1,1,1406,1407],[822,2,2,1407,1409],[825,1,1,1409,1410],[827,2,1,1410,1411],[829,1,1,1411,1412],[830,4,4,1412,1416],[831,6,5,1416,1421],[832,1,1,1421,1422],[833,2,2,1422,1424],[838,3,2,1424,1426]]],[26,38,28,1426,1454,[[850,13,9,1426,1435],[851,5,3,1435,1438],[857,4,3,1438,1441],[859,1,1,1441,1442],[860,15,12,1442,1454]]],[27,16,14,1454,1468,[[862,1,1,1454,1455],[864,2,2,1455,1457],[866,2,2,1457,1459],[868,1,1,1459,1460],[869,1,1,1460,1461],[871,5,4,1461,1465],[872,1,1,1465,1466],[874,3,2,1466,1468]]],[29,5,4,1468,1472,[[879,3,2,1468,1470],[880,1,1,1470,1471],[885,1,1,1471,1472]]],[31,2,2,1472,1474,[[891,2,2,1472,1474]]],[32,3,3,1474,1477,[[894,1,1,1474,1475],[896,1,1,1475,1476],[898,1,1,1476,1477]]],[33,1,1,1477,1478,[[902,1,1,1477,1478]]],[35,2,2,1478,1480,[[906,1,1,1478,1479],[908,1,1,1479,1480]]],[36,2,2,1480,1482,[[909,2,2,1480,1482]]],[37,5,5,1482,1487,[[917,1,1,1482,1483],[919,1,1,1483,1484],[921,1,1,1484,1485],[924,2,2,1485,1487]]]],[337,338,344,345,353,354,357,358,497,693,700,1071,1173,1177,1241,1540,1547,1549,1550,1577,1597,1598,1636,1666,1668,1682,1684,1894,1897,4325,4341,4361,4366,4369,4373,4374,4379,4385,4423,4437,4453,4751,4800,4896,4962,4964,4968,4976,4977,4978,4981,4986,5050,5051,5119,5211,5378,5379,5647,5686,5815,5871,5872,5951,6003,6004,6016,6025,6031,6047,6065,6067,6069,6087,6092,6094,6097,6101,6103,6108,6117,6132,6134,6135,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6164,6175,6181,6184,6485,6576,6578,6580,6582,6583,6585,6587,6601,6616,6622,6623,6737,6760,6762,6769,6841,6842,6843,6846,6848,6854,6857,6986,6994,7025,7127,7250,7374,7375,7378,7379,7380,7387,7388,7389,7437,7442,7462,7469,7472,7473,7474,7477,7479,7485,7561,7568,7571,7577,7580,7586,7592,7596,7643,7673,7674,7682,7694,7698,7701,7703,7710,7735,7754,7755,7774,7782,7783,7784,7790,7791,7798,7801,7802,7803,7804,7805,7830,7847,7853,7897,7919,7920,7922,7924,7925,7932,7955,7970,7975,8053,8056,8060,8084,8098,8102,8104,8105,8112,8113,8114,8117,8119,8120,8128,8134,8135,8138,8143,8144,8149,8169,8173,8177,8181,8182,8183,8198,8212,8214,8217,8218,8219,8220,8221,8229,8230,8231,8232,8236,8238,8241,8245,8246,8267,8278,8293,8323,8330,8338,8341,8342,8343,8348,8350,8352,8353,8354,8356,8359,8360,8361,8364,8365,8366,8367,8368,8369,8371,8372,8373,8374,8375,8377,8378,8380,8385,8388,8389,8391,8392,8395,8396,8398,8404,8405,8406,8407,8408,8410,8412,8414,8416,8423,8428,8429,8430,8431,8432,8435,8436,8440,8442,8451,8465,8466,8470,8480,8482,8483,8490,8491,8497,8499,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8515,8516,8519,8520,8521,8522,8523,8525,8526,8527,8528,8529,8530,8531,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8556,8557,8558,8575,8576,8582,8585,8586,8587,8588,8594,8653,8694,8695,8696,8701,8712,8713,8714,8715,8716,8718,8719,8720,8721,8730,8731,8732,8733,8735,8736,8737,8738,8739,8740,8741,8742,8744,8745,8746,8748,8749,8750,8751,8753,8754,8755,8756,8760,8761,8762,8764,8765,8768,8770,8787,8788,8789,8790,8792,8793,8795,8796,8799,8800,8801,8805,8806,8808,8809,8812,8814,8815,8816,8817,8820,8832,8838,8839,8840,8841,8842,8843,8844,8845,8851,8863,8871,8879,8891,8895,8898,8947,8948,8974,8979,8980,8985,8986,8987,8990,8999,9047,9048,9049,9051,9062,9065,9066,9067,9077,9079,9082,9085,9088,9089,9091,9092,9095,9096,9097,9100,9101,9102,9105,9106,9109,9126,9131,9134,9135,9145,9148,9153,9157,9163,9164,9166,9167,9169,9174,9178,9179,9188,9190,9191,9192,9195,9220,9232,9243,9245,9246,9250,9258,9265,9266,9267,9268,9269,9271,9274,9277,9281,9282,9291,9293,9298,9299,9306,9312,9314,9402,9403,9409,9410,9412,9415,9417,9419,9421,9428,9429,9430,9431,9436,9439,9440,9446,9447,9448,9449,9451,9452,9461,9464,9469,9482,9483,9484,9485,9486,9488,9489,9490,9493,9495,9496,9498,9506,9507,9509,9510,9511,9512,9513,9514,9515,9517,9521,9524,9527,9531,9536,9539,9542,9544,9548,9550,9577,9580,9581,9582,9583,9585,9586,9587,9588,9589,9590,9602,9616,9648,9652,9653,9654,9655,9682,9683,9684,9685,9686,9695,9698,9700,9702,9704,9709,9713,9719,9721,9722,9724,9725,9730,9731,9732,9733,9734,9735,9736,9740,9743,9747,9752,9753,9755,9756,9759,9762,9768,9770,9771,9772,9774,9775,9777,9783,9806,9831,9836,9837,9839,9840,9841,9843,9846,9848,9856,9857,9867,9868,9872,9874,9875,9878,9881,9883,9885,9887,9889,9893,9895,9897,9901,9904,9905,9907,9909,9911,9913,9918,9919,9926,9930,9933,9938,9942,9944,9945,9948,9952,9954,9957,9962,9964,9968,9969,9970,9971,9972,9973,9974,9975,9978,9979,9980,9981,9984,9986,9987,9988,9989,9990,10007,10009,10010,10025,10031,10033,10034,10035,10037,10038,10040,10041,10042,10043,10045,10047,10052,10053,10054,10055,10057,10062,10065,10066,10067,10069,10070,10071,10074,10081,10093,10097,10104,10110,10112,10116,10122,10130,10142,10143,10148,10154,10155,10156,10157,10161,10163,10165,10166,10167,10168,10169,10177,10178,10186,10188,10190,10194,10203,10209,10212,10213,10214,10215,10218,10219,10222,10223,10224,10227,10228,10230,10233,10242,10243,10244,10245,10246,10249,10252,10295,10363,10408,10426,10434,10445,10454,10675,10676,10775,10776,10782,10820,10879,10893,10895,10899,10900,10901,10907,10908,10912,10914,10928,10937,10957,10958,11021,11046,11048,11103,11107,11109,11110,11133,11140,11144,11145,11147,11165,11173,11184,11187,11188,11189,11193,11208,11209,11214,11222,11223,11257,11262,11263,11271,11274,11285,11328,11329,11330,11356,11357,11361,11364,11369,11372,11373,11375,11376,11379,11380,11381,11384,11386,11389,11391,11397,11401,11407,11408,11410,11411,11413,11417,11439,11443,11446,11447,11448,11450,11454,11506,11510,11511,11512,11513,11515,11516,11542,11545,11546,11547,11549,11550,11551,11553,11554,11556,11557,11559,11561,11567,11568,11570,11571,11572,11573,11574,11575,11576,11577,11578,11602,11622,11626,11632,11636,11645,11649,11650,11655,11659,11663,11665,11666,11667,11668,11669,11672,11676,11683,11689,11691,11694,11698,11699,11700,11707,11711,11721,11722,11725,11727,11729,11734,11745,11750,11753,11760,11769,11771,11780,11783,11784,11785,11786,11806,11809,11810,11811,11814,11815,11818,11820,11821,11829,11831,11833,11839,11851,11853,11867,11876,11882,11883,11884,11885,11886,11895,11896,11897,11898,11919,11933,11949,11951,11952,11953,11955,11957,11959,11961,11962,11963,11964,11969,11970,11982,11986,11987,11989,11996,11997,11999,12003,12006,12010,12011,12015,12016,12017,12018,12023,12024,12028,12104,12107,12112,12113,12115,12117,12173,12174,12179,12180,12181,12184,12201,12202,12223,12226,12308,12309,12310,12311,12312,12313,12314,12315,12316,12326,12396,12407,12408,12426,12533,12677,12697,12704,12707,12709,12710,12711,12712,12713,12714,12715,12717,12718,12719,12721,12723,12725,12726,12727,12728,12730,12736,12738,12739,12740,12741,12742,12745,12746,12747,12748,12749,12754,12755,12756,12757,12758,12759,12762,12770,12773,12778,12780,12781,12782,12783,12784,12785,12787,12790,12791,12793,12794,12795,12796,12797,12798,12799,12800,12801,12802,12803,12804,12808,12809,12810,12812,12813,12814,12815,12816,12818,12819,12820,12821,12822,12824,12827,12828,12829,12832,12836,12837,12845,12846,12847,12848,12854,12859,12867,12868,12869,13227,13290,13557,13701,13922,13951,14168,14191,14192,14198,14382,14598,14608,14611,14850,15001,15344,15626,16186,16215,16216,16321,16401,16850,16854,16956,16962,16980,16982,17026,17100,17114,17118,17119,17228,17238,17278,17282,17285,17316,17327,17345,17406,17462,17489,17513,17541,17582,17632,17770,17783,17799,17802,17811,17814,17828,17862,17932,17956,18008,18030,18033,18035,18092,18250,18260,18296,18301,18331,18332,18334,18336,18338,18343,18344,18345,18346,18348,18353,18356,18357,18358,18360,18361,18362,18365,18373,18385,18389,18396,18399,18413,18415,18419,18774,18948,18949,19008,19036,19172,19211,19284,19319,19426,19441,19442,19444,19447,19450,19451,19455,19456,19465,19472,19478,19479,19525,19532,19535,19537,19543,19545,19546,19553,19560,19573,19590,19591,19593,19594,19595,19597,19599,19602,19604,19605,19607,19608,19609,19610,19613,19614,19616,19617,19619,19620,19621,19622,19629,19632,19637,19638,19651,19656,19657,19676,19732,19733,19734,19735,19759,19767,19802,19803,19804,19805,19807,19808,19809,19822,19824,19834,19843,19851,19858,19862,19863,19864,19866,19867,19868,19869,19870,19871,19872,19874,19875,19877,19881,19891,19892,19893,19894,19895,19898,19899,19900,19902,19903,19904,19905,19906,19909,19911,19912,19913,19914,19917,19918,19920,19921,19922,19924,19926,19927,19928,19929,19934,19936,19946,19948,19950,19952,19955,19958,19959,19966,19975,19986,20007,20040,20041,20047,20058,20062,20071,20128,20130,20155,20157,20161,20165,20183,20184,20209,20243,20246,20271,20279,20280,20281,20284,20285,20286,20287,20288,20291,20296,20302,20303,20307,20310,20338,20341,20466,20604,20837,20841,20890,20963,20965,21058,21107,21169,21185,21186,21201,21202,21214,21225,21226,21228,21229,21232,21250,21259,21419,21421,21738,21739,21740,21742,21747,21755,21756,21757,21758,21760,21761,21762,21962,21982,21984,22016,22039,22041,22042,22043,22045,22047,22049,22050,22051,22061,22072,22076,22095,22132,22133,22153,22165,22183,22204,22228,22231,22232,22240,22245,22276,22277,22365,22379,22380,22474,22564,22565,22608,22629,22653,22730,22788,22835,22841,22855,22963,23004,23034,23073,23077]]],["king's",[249,229,[[0,2,2,0,2,[[13,1,1,0,1],[38,1,1,1,2]]],[3,2,2,2,4,[[136,1,1,2,3],[137,1,1,3,4]]],[8,11,11,4,15,[[253,5,5,4,9],[255,1,1,9,10],[256,1,1,10,11],[257,1,1,11,12],[258,1,1,12,13],[261,2,2,13,15]]],[9,29,29,15,44,[[275,1,1,15,16],[277,3,3,16,19],[278,1,1,19,20],[279,10,10,20,30],[280,5,5,30,35],[281,1,1,35,36],[282,1,1,36,37],[284,4,4,37,41],[285,2,2,41,43],[290,1,1,43,44]]],[10,20,18,44,62,[[291,6,5,44,49],[292,1,1,49,50],[294,1,1,50,51],[299,2,2,51,53],[300,2,2,53,55],[303,1,1,55,56],[304,2,2,56,58],[305,1,1,58,59],[306,2,1,59,60],[312,2,2,60,62]]],[11,31,30,62,92,[[319,2,2,62,64],[321,1,1,64,65],[322,3,3,65,68],[323,7,7,68,75],[324,2,2,75,77],[325,1,1,77,78],[326,1,1,78,79],[327,2,2,79,81],[328,3,3,81,84],[330,2,2,84,86],[334,1,1,86,87],[336,3,2,87,89],[337,3,3,89,92]]],[12,11,10,92,102,[[346,1,1,92,93],[358,2,2,93,95],[362,2,2,95,97],[364,5,4,97,101],[366,1,1,101,102]]],[13,31,30,102,132,[[367,1,1,102,103],[373,1,1,103,104],[375,2,2,104,106],[378,2,2,106,108],[382,1,1,108,109],[384,2,2,109,111],[385,1,1,111,112],[387,1,1,112,113],[388,1,1,113,114],[389,5,5,114,119],[390,3,2,119,121],[391,2,2,121,123],[392,2,2,123,125],[394,1,1,125,126],[395,1,1,126,127],[397,1,1,127,128],[400,1,1,128,129],[401,3,3,129,132]]],[14,4,3,132,135,[[409,2,2,132,134],[410,2,1,134,135]]],[15,10,10,135,145,[[413,1,1,135,136],[414,4,4,136,140],[415,2,2,140,142],[417,1,1,142,143],[423,2,2,143,145]]],[16,66,52,145,197,[[426,7,7,145,152],[427,10,8,152,160],[428,13,7,160,167],[429,9,7,167,174],[430,4,3,174,177],[431,8,8,177,185],[432,2,2,185,187],[433,9,6,187,193],[434,4,4,193,197]]],[18,6,6,197,203,[[522,3,3,197,200],[538,1,1,200,201],[549,1,1,201,202],[576,1,1,202,203]]],[19,5,5,203,208,[[641,2,2,203,205],[643,1,1,205,206],[646,1,1,206,207],[648,1,1,207,208]]],[20,1,1,208,209,[[666,1,1,208,209]]],[22,1,1,209,210,[[714,1,1,209,210]]],[23,12,12,210,222,[[766,1,1,210,211],[770,1,1,211,212],[780,1,1,212,213],[782,2,2,213,215],[783,2,2,215,217],[785,1,1,217,218],[787,1,1,218,219],[796,3,3,219,222]]],[26,3,3,222,225,[[850,1,1,222,223],[857,1,1,223,224],[860,1,1,224,225]]],[29,2,2,225,227,[[885,2,2,225,227]]],[35,1,1,227,228,[[906,1,1,227,228]]],[37,1,1,228,229,[[924,1,1,228,229]]]],[353,1169,4328,4362,7698,7699,7701,7702,7703,7759,7780,7801,7830,7921,7927,8240,8261,8268,8279,8316,8321,8335,8340,8344,8346,8347,8349,8350,8352,8353,8357,8380,8382,8384,8388,8404,8428,8490,8496,8498,8507,8529,8553,8696,8726,8742,8745,8761,8764,8789,8849,9052,9061,9091,9107,9190,9244,9245,9267,9301,9492,9506,9716,9718,9790,9799,9800,9801,9831,9833,9834,9841,9845,9848,9849,9860,9868,9887,9910,9930,9950,9971,9978,9981,10039,10060,10157,10215,10217,10226,10231,10241,10633,10938,10940,11051,11052,11134,11141,11142,11143,11170,11210,11335,11375,11385,11446,11447,11511,11547,11567,11587,11641,11655,11659,11661,11667,11671,11676,11685,11688,11720,11728,11743,11753,11771,11816,11857,11953,11973,11976,11981,12200,12201,12237,12307,12315,12316,12321,12325,12342,12352,12386,12611,12612,12707,12714,12715,12716,12720,12722,12724,12726,12727,12732,12737,12738,12739,12743,12745,12749,12750,12755,12756,12759,12760,12762,12764,12765,12767,12768,12769,12773,12775,12780,12788,12792,12795,12796,12797,12798,12802,12803,12805,12807,12811,12817,12822,12825,12826,12827,12831,12834,12835,12838,12846,12850,14602,14610,14612,14825,15001,15503,16800,16807,16855,16937,16985,17460,18351,19460,19582,19854,19902,19903,19927,19931,19967,20003,20283,20289,20301,21741,21988,22042,22465,22477,22795,23078]]],["kings",[278,256,[[0,8,8,0,8,[[13,4,4,0,4],[16,2,2,4,6],[34,1,1,6,7],[35,1,1,7,8]]],[3,2,1,8,9,[[147,2,1,8,9]]],[4,5,5,9,14,[[155,2,2,9,11],[156,1,1,11,12],[159,1,1,12,13],[183,1,1,13,14]]],[5,25,22,14,36,[[188,1,1,14,15],[191,2,1,15,16],[195,2,2,16,18],[196,10,9,18,27],[197,6,5,27,32],[198,3,3,32,35],[210,1,1,35,36]]],[6,7,6,36,42,[[211,1,1,36,37],[215,3,2,37,39],[218,3,3,39,42]]],[8,2,2,42,44,[[249,1,1,42,43],[262,1,1,43,44]]],[9,2,2,44,46,[[276,1,1,44,45],[277,1,1,45,46]]],[10,25,22,46,68,[[293,1,1,46,47],[294,2,2,47,49],[300,4,3,49,52],[304,2,2,52,54],[305,3,3,54,57],[306,5,5,57,62],[310,6,4,62,66],[312,2,2,66,68]]],[11,48,46,68,114,[[313,1,1,68,69],[315,4,4,69,73],[319,2,1,73,74],[320,2,2,74,76],[322,2,2,76,78],[323,1,1,78,79],[324,2,2,79,81],[325,3,3,81,84],[326,5,5,84,89],[327,7,7,89,96],[328,2,2,96,98],[329,2,2,98,100],[330,1,1,100,101],[331,2,2,101,103],[332,1,1,103,104],[333,2,2,104,106],[335,7,6,106,112],[336,1,1,112,113],[337,1,1,113,114]]],[12,5,5,114,119,[[338,1,1,114,115],[346,1,1,115,116],[353,1,1,116,117],[356,1,1,117,118],[357,1,1,118,119]]],[13,31,30,119,149,[[367,3,2,119,121],[375,4,4,121,125],[382,1,1,125,126],[386,1,1,126,127],[387,3,3,127,130],[390,3,3,130,133],[391,1,1,133,134],[392,1,1,134,135],[393,1,1,135,136],[394,5,5,136,141],[396,1,1,141,142],[398,2,2,142,144],[399,1,1,144,145],[400,1,1,145,146],[401,2,2,146,148],[402,1,1,148,149]]],[14,3,2,149,151,[[411,3,2,149,151]]],[15,5,4,151,155,[[421,5,4,151,155]]],[16,1,1,155,156,[[435,1,1,155,156]]],[17,3,3,156,159,[[438,1,1,156,157],[447,1,1,157,158],[471,1,1,158,159]]],[18,21,20,159,179,[[479,2,2,159,161],[525,1,1,161,162],[545,2,2,162,164],[549,3,2,164,166],[553,1,1,166,167],[566,1,1,167,168],[579,1,1,168,169],[582,2,2,169,171],[587,1,1,171,172],[596,1,1,172,173],[612,1,1,173,174],[613,2,2,174,176],[615,1,1,176,177],[621,1,1,177,178],[626,1,1,178,179]]],[19,9,8,179,187,[[635,1,1,179,180],[643,2,2,180,182],[649,1,1,182,183],[652,2,2,183,185],[658,3,2,185,187]]],[20,1,1,187,188,[[660,1,1,187,188]]],[22,18,18,188,206,[[679,1,1,188,189],[685,1,1,189,190],[688,1,1,190,191],[692,2,2,191,193],[697,1,1,193,194],[702,1,1,194,195],[715,2,2,195,197],[719,1,1,197,198],[723,1,1,198,199],[727,1,1,199,200],[730,1,1,200,201],[738,4,4,201,205],[740,1,1,205,206]]],[23,37,31,206,237,[[745,1,1,206,207],[746,1,1,207,208],[752,1,1,208,209],[757,1,1,209,210],[761,3,3,210,213],[763,3,3,213,216],[764,1,1,216,217],[766,1,1,217,218],[769,13,7,218,225],[771,1,1,225,226],[776,1,1,226,227],[777,1,1,227,228],[778,1,1,228,229],[788,3,3,229,232],[790,1,1,232,233],[794,1,1,233,234],[795,2,2,234,236],[796,1,1,236,237]]],[24,1,1,237,238,[[800,1,1,237,238]]],[25,9,8,238,246,[[827,1,1,238,239],[828,2,2,239,241],[829,1,1,241,242],[833,2,2,242,244],[844,3,2,244,246]]],[26,5,5,246,251,[[857,1,1,246,247],[858,2,2,247,249],[859,1,1,249,250],[860,1,1,250,251]]],[27,2,2,251,253,[[862,1,1,251,252],[868,1,1,252,253]]],[32,2,2,253,255,[[893,2,2,253,255]]],[34,1,1,255,256,[[903,1,1,255,256]]]],[341,345,346,353,403,413,1022,1071,4672,4983,4996,5051,5135,5732,5879,5935,6038,6047,6069,6070,6080,6081,6086,6087,6088,6104,6106,6109,6112,6119,6124,6125,6131,6137,6154,6488,6516,6626,6642,6724,6731,6745,7555,7936,8259,8260,8829,8868,8878,9094,9102,9108,9237,9247,9256,9272,9280,9288,9297,9303,9310,9316,9409,9420,9424,9439,9519,9525,9551,9586,9589,9597,9599,9713,9745,9750,9797,9827,9848,9868,9869,9879,9883,9884,9911,9912,9914,9924,9925,9931,9936,9940,9946,9951,9956,9961,9966,9982,9985,9991,10029,10072,10078,10118,10136,10144,10170,10176,10177,10184,10187,10193,10207,10250,10295,10616,10841,10916,10927,11206,11211,11378,11386,11387,11390,11520,11621,11630,11637,11644,11693,11702,11704,11730,11755,11762,11766,11780,11787,11790,11791,11833,11879,11907,11926,11944,11984,11993,12001,12244,12246,12535,12543,12545,12548,12868,12918,13146,13743,13947,13955,14638,14914,14929,15010,15011,15093,15353,15536,15620,15636,15791,15944,16185,16213,16214,16235,16315,16393,16617,16852,16853,17044,17115,17116,17287,17288,17341,17655,17798,17858,17937,17946,18015,18116,18363,18370,18453,18562,18659,18711,18824,18831,18832,18837,18856,18964,18991,19154,19279,19376,19377,19382,19410,19411,19420,19427,19458,19548,19552,19554,19556,19558,19559,19560,19603,19763,19779,19806,20019,20027,20031,20070,20207,20223,20240,20308,20432,21107,21154,21156,21174,21258,21277,21579,21581,21981,21994,21996,22028,22038,22095,22185,22580,22593,22741]]],["kings'",[2,2,[[19,1,1,0,1,[[657,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[17279,22063]]],["royal",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1493]]]]},{"k":"H4429","v":[["*",[4,4,[[12,2,2,0,2,[[345,1,1,0,1],[346,1,1,1,2]]],[23,2,2,2,4,[[780,1,1,2,3],[782,1,1,3,4]]]],[10610,10656,19868,19901]]],["Hammelech",[2,2,[[23,2,2,0,2,[[780,1,1,0,1],[782,1,1,1,2]]]],[19868,19901]]],["Melech",[2,2,[[12,2,2,0,2,[[345,1,1,0,1],[346,1,1,1,2]]]],[10610,10656]]]]},{"k":"H4430","v":[["*",[180,131,[[14,45,37,0,37,[[406,15,13,0,13],[407,12,8,13,21],[408,10,9,21,30],[409,8,7,30,37]]],[26,135,94,37,131,[[851,43,28,37,65],[852,21,17,65,82],[853,13,11,82,93],[854,23,15,93,108],[855,31,20,108,128],[856,4,3,128,131]]]],[12118,12121,12122,12123,12124,12125,12126,12127,12129,12130,12132,12133,12134,12140,12141,12142,12145,12146,12147,12148,12151,12152,12154,12155,12159,12161,12163,12164,12165,12166,12185,12187,12188,12193,12194,12196,12199,21762,21763,21765,21766,21768,21769,21770,21772,21773,21774,21779,21781,21782,21783,21784,21785,21786,21787,21788,21789,21794,21795,21802,21803,21804,21805,21806,21807,21808,21809,21810,21812,21814,21816,21817,21819,21820,21823,21824,21825,21829,21831,21834,21835,21837,21838,21855,21856,21859,21860,21861,21864,21865,21867,21868,21874,21875,21876,21877,21879,21880,21881,21882,21883,21884,21885,21886,21887,21891,21892,21904,21907,21908,21911,21912,21913,21914,21917,21918,21919,21920,21921,21922,21923,21924,21925,21926,21927,21928,21929,21930,21934,21950,21957]]],["+",[3,3,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,2,2,1,3,[[851,1,1,1,2],[855,1,1,2,3]]]],[12159,21773,21928]]],["King",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[855,1,1,1,2]]]],[21874,21911]]],["king",[144,111,[[14,33,29,0,29,[[406,9,9,0,9],[407,11,8,9,17],[408,7,6,17,23],[409,6,6,23,29]]],[26,111,82,29,111,[[851,34,24,29,53],[852,18,14,53,67],[853,11,10,67,77],[854,20,14,77,91],[855,27,19,91,110],[856,1,1,110,111]]]],[12118,12121,12122,12123,12124,12126,12127,12133,12134,12140,12141,12142,12145,12146,12147,12148,12151,12152,12154,12161,12164,12165,12166,12185,12187,12188,12194,12196,12199,21762,21763,21765,21766,21768,21769,21770,21773,21774,21782,21783,21784,21785,21786,21787,21788,21789,21794,21795,21803,21804,21805,21806,21807,21808,21809,21810,21812,21814,21816,21817,21819,21820,21823,21824,21825,21831,21837,21838,21855,21856,21859,21860,21861,21864,21865,21867,21868,21875,21876,21877,21879,21881,21882,21883,21884,21885,21886,21887,21891,21892,21904,21907,21908,21911,21912,21913,21914,21917,21918,21919,21920,21921,21922,21923,21924,21925,21926,21927,21929,21930,21934]]],["king's",[15,15,[[14,4,4,0,4,[[406,1,1,0,1],[407,1,1,1,2],[408,1,1,2,3],[409,1,1,3,4]]],[26,11,11,4,15,[[851,3,3,4,7],[852,3,3,7,10],[853,1,1,10,11],[854,3,3,11,14],[855,1,1,14,15]]]],[12124,12151,12155,12193,21768,21772,21781,21829,21834,21835,21868,21879,21880,21882,21917]]],["kings",[15,13,[[14,7,7,0,7,[[406,5,5,0,5],[408,1,1,5,6],[409,1,1,6,7]]],[26,8,6,7,13,[[851,5,4,7,11],[856,3,2,11,13]]]],[12123,12125,12129,12130,12132,12163,12185,21779,21795,21802,21805,21950,21957]]],["royal",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21912]]]]},{"k":"H4431","v":[["counsel",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]]]},{"k":"H4432","v":[["*",[9,9,[[2,5,5,0,5,[[107,1,1,0,1],[109,4,4,1,5]]],[10,1,1,5,6,[[301,1,1,5,6]]],[11,1,1,6,7,[[335,1,1,6,7]]],[23,1,1,7,8,[[776,1,1,7,8]]],[29,1,1,8,9,[[883,1,1,8,9]]]],[3272,3320,3321,3322,3323,9115,10175,19766,22449]]],["Molech",[8,8,[[2,5,5,0,5,[[107,1,1,0,1],[109,4,4,1,5]]],[10,1,1,5,6,[[301,1,1,5,6]]],[11,1,1,6,7,[[335,1,1,6,7]]],[23,1,1,7,8,[[776,1,1,7,8]]]],[3272,3320,3321,3322,3323,9115,10175,19766]]],["Moloch",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22449]]]]},{"k":"H4433","v":[["queen",[2,1,[[26,2,1,0,1,[[854,2,1,0,1]]]],[21884]]]]},{"k":"H4434","v":[["trap",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13286]]]]},{"k":"H4435","v":[["Milcah",[11,10,[[0,7,6,0,6,[[10,2,1,0,1],[21,2,2,1,3],[23,3,3,3,6]]],[3,3,3,6,9,[[142,1,1,6,7],[143,1,1,7,8],[152,1,1,8,9]]],[5,1,1,9,10,[[203,1,1,9,10]]]],[295,567,570,606,615,638,4522,4555,4890,6278]]]]},{"k":"H4436","v":[["*",[35,34,[[10,4,4,0,4,[[300,4,4,0,4]]],[13,4,4,4,8,[[375,4,4,4,8]]],[16,25,24,8,32,[[426,8,7,8,15],[427,1,1,15,16],[429,1,1,16,17],[430,3,3,17,20],[432,7,7,20,27],[433,2,2,27,29],[434,3,3,29,32]]],[21,2,2,32,34,[[676,2,2,32,34]]]],[9080,9083,9089,9092,11365,11367,11373,11376,12711,12713,12714,12717,12718,12719,12720,12746,12766,12781,12782,12791,12808,12809,12810,12812,12813,12814,12815,12818,12824,12846,12863,12865,17622,17623]]],["queen",[33,32,[[10,4,4,0,4,[[300,4,4,0,4]]],[13,4,4,4,8,[[375,4,4,4,8]]],[16,25,24,8,32,[[426,8,7,8,15],[427,1,1,15,16],[429,1,1,16,17],[430,3,3,17,20],[432,7,7,20,27],[433,2,2,27,29],[434,3,3,29,32]]]],[9080,9083,9089,9092,11365,11367,11373,11376,12711,12713,12714,12717,12718,12719,12720,12746,12766,12781,12782,12791,12808,12809,12810,12812,12813,12814,12815,12818,12824,12846,12863,12865]]],["queens",[2,2,[[21,2,2,0,2,[[676,2,2,0,2]]]],[17622,17623]]]]},{"k":"H4437","v":[["*",[57,43,[[14,4,4,0,4,[[406,1,1,0,1],[408,1,1,1,2],[409,2,2,2,4]]],[26,53,39,4,43,[[851,9,6,4,10],[853,13,11,10,21],[854,10,10,21,31],[855,9,6,31,37],[856,12,6,37,43]]]],[12134,12166,12186,12196,21795,21797,21798,21799,21800,21802,21840,21854,21855,21862,21863,21866,21867,21868,21869,21871,21873,21881,21885,21890,21892,21894,21895,21900,21902,21903,21905,21906,21908,21909,21912,21931,21933,21947,21951,21955,21956,21957,21960]]],["kingdom",[47,36,[[26,47,36,0,36,[[851,8,6,0,6],[853,13,11,6,17],[854,9,9,17,26],[855,6,4,26,30],[856,11,6,30,36]]]],[21795,21797,21798,21799,21800,21802,21840,21854,21855,21862,21863,21866,21867,21868,21869,21871,21873,21881,21885,21890,21892,21895,21900,21902,21903,21905,21906,21909,21912,21931,21947,21951,21955,21956,21957,21960]]],["kingdoms",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[856,1,1,1,2]]]],[21802,21956]]],["kingly",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21894]]],["realm",[3,3,[[14,2,2,0,2,[[409,2,2,0,2]]],[26,1,1,2,3,[[855,1,1,2,3]]]],[12186,12196,21908]]],["reign",[4,3,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]],[26,2,1,2,3,[[855,2,1,2,3]]]],[12134,12166,21933]]]]},{"k":"H4438","v":[["*",[91,82,[[3,1,1,0,1,[[140,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[10,1,1,2,3,[[292,1,1,2,3]]],[12,11,11,3,14,[[348,1,1,3,4],[349,1,1,4,5],[351,1,1,5,6],[354,2,2,6,8],[359,1,1,8,9],[363,1,1,9,10],[365,2,2,10,12],[366,2,2,12,14]]],[13,17,17,14,31,[[367,1,1,14,15],[368,2,2,15,17],[369,1,1,17,18],[373,1,1,18,19],[377,1,1,19,20],[378,1,1,20,21],[381,2,2,21,23],[382,2,2,23,25],[386,1,1,25,26],[395,1,1,26,27],[399,1,1,27,28],[401,1,1,28,29],[402,2,2,29,31]]],[14,6,5,31,36,[[403,1,1,31,32],[406,3,2,32,34],[409,1,1,34,35],[410,1,1,35,36]]],[15,2,2,36,38,[[421,1,1,36,37],[424,1,1,37,38]]],[16,26,21,38,59,[[426,9,8,38,46],[427,4,3,46,49],[428,2,2,49,51],[429,1,1,51,52],[430,5,3,52,55],[431,2,1,55,56],[432,1,1,56,57],[433,1,1,57,58],[434,1,1,58,59]]],[18,6,5,59,64,[[522,1,1,59,60],[580,1,1,60,61],[622,4,3,61,64]]],[20,1,1,64,65,[[662,1,1,64,65]]],[23,3,3,65,68,[[754,1,1,65,66],[793,1,1,66,67],[796,1,1,67,68]]],[26,16,14,68,82,[[850,2,2,68,70],[851,1,1,70,71],[857,3,3,71,74],[858,1,1,74,75],[859,1,1,75,76],[860,8,6,76,82]]]],[4453,7761,8782,10683,10743,10776,10874,10877,10974,11108,11148,11150,11189,11194,11195,11212,11223,11231,11342,11431,11438,11500,11509,11510,11521,11617,11810,11921,11985,12013,12015,12017,12115,12116,12174,12202,12546,12646,12704,12706,12709,12711,12713,12716,12721,12722,12727,12740,12741,12753,12755,12776,12780,12782,12785,12801,12809,12832,12864,14603,15568,16331,16332,16333,17395,19208,20161,20307,21738,21757,21759,21962,21983,21984,21989,22028,22038,22040,22045,22053,22056,22057]]],["empire",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12722]]],["estate",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12721]]],["kingdom",[49,46,[[3,1,1,0,1,[[140,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[10,1,1,2,3,[[292,1,1,2,3]]],[12,8,8,3,11,[[348,1,1,3,4],[349,1,1,4,5],[351,1,1,5,6],[354,2,2,6,8],[359,1,1,8,9],[365,2,2,9,11]]],[13,9,9,11,20,[[367,1,1,11,12],[368,2,2,12,14],[373,1,1,14,15],[377,1,1,15,16],[378,1,1,16,17],[399,1,1,17,18],[402,2,2,18,20]]],[14,1,1,20,21,[[403,1,1,20,21]]],[15,1,1,21,22,[[421,1,1,21,22]]],[16,11,11,22,33,[[426,3,3,22,25],[427,1,1,25,26],[428,2,2,26,28],[429,1,1,28,29],[430,2,2,29,31],[432,1,1,31,32],[434,1,1,32,33]]],[18,6,5,33,38,[[522,1,1,33,34],[580,1,1,34,35],[622,4,3,35,38]]],[20,1,1,38,39,[[662,1,1,38,39]]],[26,9,7,39,46,[[857,1,1,39,40],[859,1,1,40,41],[860,7,5,41,46]]]],[4453,7761,8782,10683,10743,10776,10874,10877,10974,11148,11150,11195,11212,11223,11342,11431,11438,11921,12013,12015,12017,12546,12704,12706,12716,12727,12753,12755,12776,12782,12785,12809,12864,14603,15568,16331,16332,16333,17395,21984,22028,22040,22045,22053,22056,22057]]],["kingdoms",[2,2,[[23,1,1,0,1,[[754,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]]],[19208,21983]]],["realm",[4,4,[[13,1,1,0,1,[[386,1,1,0,1]]],[26,3,3,1,4,[[850,1,1,1,2],[858,1,1,2,3],[860,1,1,3,4]]]],[11617,21757,21989,22038]]],["reign",[21,20,[[12,2,2,0,2,[[363,1,1,0,1],[366,1,1,1,2]]],[13,7,7,2,9,[[369,1,1,2,3],[381,2,2,3,5],[382,2,2,5,7],[395,1,1,7,8],[401,1,1,8,9]]],[14,5,4,9,13,[[406,3,2,9,11],[409,1,1,11,12],[410,1,1,12,13]]],[15,1,1,13,14,[[424,1,1,13,14]]],[16,1,1,14,15,[[427,1,1,14,15]]],[23,2,2,15,17,[[793,1,1,15,16],[796,1,1,16,17]]],[26,3,3,17,20,[[850,1,1,17,18],[851,1,1,18,19],[857,1,1,19,20]]]],[11108,11194,11231,11500,11509,11510,11521,11810,11985,12115,12116,12174,12202,12646,12740,20161,20307,21738,21759,21962]]],["royal",[13,10,[[12,1,1,0,1,[[366,1,1,0,1]]],[16,12,9,1,10,[[426,4,4,1,5],[427,2,2,5,7],[430,3,1,7,8],[431,2,1,8,9],[433,1,1,9,10]]]],[11189,12709,12711,12713,12721,12740,12741,12780,12801,12832]]]]},{"k":"H4439","v":[["Malchiel",[3,3,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[12,1,1,2,3,[[344,1,1,2,3]]]],[1403,4534,10566]]]]},{"k":"H4440","v":[["*",[2,2,[[2,1,1,0,1,[[96,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[2912,4534]]],["Malchielites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4534]]],["part",[1,1,[[2,1,1,0,1,[[96,1,1,0,1]]]],[2912]]]]},{"k":"H4441","v":[["*",[16,15,[[12,3,3,0,3,[[343,1,1,0,1],[346,1,1,1,2],[361,1,1,2,3]]],[14,3,2,3,5,[[412,3,2,3,5]]],[15,7,7,5,12,[[415,3,3,5,8],[420,1,1,8,9],[422,1,1,9,10],[423,1,1,10,11],[424,1,1,11,12]]],[23,3,3,12,15,[[765,1,1,12,13],[782,2,2,13,15]]]],[10494,10627,11024,12277,12283,12338,12341,12358,12497,12552,12600,12666,19441,19896,19901]]],["Malchiah",[9,9,[[12,1,1,0,1,[[343,1,1,0,1]]],[14,2,2,1,3,[[412,2,2,1,3]]],[15,4,4,3,7,[[415,2,2,3,5],[420,1,1,5,6],[423,1,1,6,7]]],[23,2,2,7,9,[[782,2,2,7,9]]]],[10494,12277,12283,12341,12358,12497,12600,19896,19901]]],["Malchijah",[6,6,[[12,2,2,0,2,[[346,1,1,0,1],[361,1,1,1,2]]],[14,1,1,2,3,[[412,1,1,2,3]]],[15,3,3,3,6,[[415,1,1,3,4],[422,1,1,4,5],[424,1,1,5,6]]]],[10627,11024,12277,12338,12552,12666]]],["Melchiah",[1,1,[[23,1,1,0,1,[[765,1,1,0,1]]]],[19441]]]]},{"k":"H4442","v":[["Melchizedek",[2,2,[[0,1,1,0,1,[[13,1,1,0,1]]],[18,1,1,1,2,[[587,1,1,1,2]]]],[354,15790]]]]},{"k":"H4443","v":[["Malchiram",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10379]]]]},{"k":"H4444","v":[["*",[5,5,[[8,2,2,0,2,[[249,1,1,0,1],[266,1,1,1,2]]],[12,3,3,2,5,[[345,1,1,2,3],[346,1,1,3,4],[347,1,1,4,5]]]],[7557,8011,10608,10654,10661]]],["Malchishua",[4,4,[[8,1,1,0,1,[[266,1,1,0,1]]],[12,3,3,1,4,[[345,1,1,1,2],[346,1,1,2,3],[347,1,1,3,4]]]],[8011,10608,10654,10661]]],["Melchishua",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7557]]]]},{"k":"H4445","v":[["*",[5,5,[[10,2,2,0,2,[[301,2,2,0,2]]],[11,1,1,2,3,[[335,1,1,2,3]]],[12,1,1,3,4,[[345,1,1,3,4]]],[35,1,1,4,5,[[906,1,1,4,5]]]],[9113,9141,10178,10584,22792]]],["Malcham",[2,2,[[12,1,1,0,1,[[345,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]]],[10584,22792]]],["Milcom",[3,3,[[10,2,2,0,2,[[301,2,2,0,2]]],[11,1,1,2,3,[[335,1,1,2,3]]]],[9113,9141,10178]]]]},{"k":"H4446","v":[["queen",[5,5,[[23,5,5,0,5,[[751,1,1,0,1],[788,4,4,1,5]]]],[19137,20027,20028,20029,20035]]]]},{"k":"H4447","v":[["Hammoleketh",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10553]]]]},{"k":"H4448","v":[["*",[5,5,[[0,1,1,0,1,[[20,1,1,0,1]]],[17,2,2,1,3,[[443,1,1,1,2],[468,1,1,2,3]]],[18,1,1,3,4,[[583,1,1,3,4]]],[19,1,1,4,5,[[633,1,1,4,5]]]],[520,13031,13653,15653,16553]]],["said",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[520]]],["speak",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13031]]],["speaketh",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16553]]],["utter",[2,2,[[17,1,1,0,1,[[468,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]]],[13653,15653]]]]},{"k":"H4449","v":[["*",[5,5,[[26,5,5,0,5,[[855,1,1,0,1],[856,4,4,1,5]]]],[21926,21941,21944,21953,21958]]],["said",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21926]]],["spake",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21944,21953]]],["speak",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21958]]],["speaking",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21941]]]]},{"k":"H4450","v":[["Milalai",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12660]]]]},{"k":"H4451","v":[["goad",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6599]]]]},{"k":"H4452","v":[["are",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16001]]]]},{"k":"H4453","v":[["Melzar",[2,2,[[26,2,2,0,2,[[850,2,2,0,2]]]],[21748,21753]]]]},{"k":"H4454","v":[["+",[2,2,[[2,2,2,0,2,[[90,1,1,0,1],[94,1,1,1,2]]]],[2760,2838]]]]},{"k":"H4455","v":[["*",[8,8,[[3,5,5,0,5,[[147,5,5,0,5]]],[18,1,1,5,6,[[499,1,1,5,6]]],[22,2,2,6,8,[[727,2,2,6,8]]]],[4675,4676,4690,4691,4696,14219,18660,18661]]],["booty",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4696]]],["jaws",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14219]]],["prey",[6,6,[[3,4,4,0,4,[[147,4,4,0,4]]],[22,2,2,4,6,[[727,2,2,4,6]]]],[4675,4676,4690,4691,18660,18661]]]]},{"k":"H4456","v":[["*",[8,8,[[4,1,1,0,1,[[163,1,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]],[19,1,1,2,3,[[643,1,1,2,3]]],[23,2,2,3,5,[[747,1,1,3,4],[749,1,1,4,5]]],[27,1,1,5,6,[[867,1,1,5,6]]],[28,1,1,6,7,[[877,1,1,6,7]]],[37,1,1,7,8,[[920,1,1,7,8]]]],[5222,13555,16855,19005,19082,22170,22334,23017]]],["latter",[2,2,[[23,1,1,0,1,[[749,1,1,0,1]]],[27,1,1,1,2,[[867,1,1,1,2]]]],[19082,22170]]],["rain",[6,6,[[4,1,1,0,1,[[163,1,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]],[19,1,1,2,3,[[643,1,1,2,3]]],[23,1,1,3,4,[[747,1,1,3,4]]],[28,1,1,4,5,[[877,1,1,4,5]]],[37,1,1,5,6,[[920,1,1,5,6]]]],[5222,13555,16855,19005,22334,23017]]]]},{"k":"H4457","v":[["*",[6,6,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]],[10,1,1,3,4,[[297,1,1,3,4]]],[13,1,1,4,5,[[370,1,1,4,5]]],[22,1,1,5,6,[[684,1,1,5,6]]]],[2233,2627,3752,8983,11267,17775]]],["snuffers",[1,1,[[1,1,1,0,1,[[86,1,1,0,1]]]],[2627]]],["tongs",[5,5,[[1,1,1,0,1,[[74,1,1,0,1]]],[3,1,1,1,2,[[120,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[13,1,1,3,4,[[370,1,1,3,4]]],[22,1,1,4,5,[[684,1,1,4,5]]]],[2233,3752,8983,11267,17775]]]]},{"k":"H4458","v":[["vestry",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9815]]]]},{"k":"H4459","v":[["teeth",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14785]]]]},{"k":"H4460","v":[["barns",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22308]]]]},{"k":"H4461","v":[["measures",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13798]]]]},{"k":"H4462","v":[["Memucan",[3,3,[[16,3,3,0,3,[[426,3,3,0,3]]]],[12716,12718,12723]]]]},{"k":"H4463","v":[["deaths",[2,2,[[23,1,1,0,1,[[760,1,1,0,1]]],[25,1,1,1,2,[[829,1,1,1,2]]]],[19340,21165]]]]},{"k":"H4464","v":[["bastard",[2,2,[[4,1,1,0,1,[[175,1,1,0,1]]],[37,1,1,1,2,[[919,1,1,1,2]]]],[5502,23005]]]]},{"k":"H4465","v":[["*",[10,10,[[2,7,7,0,7,[[114,7,7,0,7]]],[4,1,1,7,8,[[170,1,1,7,8]]],[15,1,1,8,9,[[425,1,1,8,9]]],[25,1,1,9,10,[[808,1,1,9,10]]]],[3483,3494,3496,3497,3498,3502,3519,5392,12691,20590]]],["+",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[4,1,1,1,2,[[170,1,1,1,2]]]],[3494,5392]]],["ought",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3483]]],["sale",[2,2,[[2,2,2,0,2,[[114,2,2,0,2]]]],[3496,3519]]],["sold",[4,4,[[2,3,3,0,3,[[114,3,3,0,3]]],[25,1,1,3,4,[[808,1,1,3,4]]]],[3497,3498,3502,20590]]],["ware",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12691]]]]},{"k":"H4466","v":[["+",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3511]]]]},{"k":"H4467","v":[["*",[117,113,[[0,2,2,0,2,[[9,1,1,0,1],[19,1,1,1,2]]],[1,1,1,2,3,[[68,1,1,2,3]]],[3,2,1,3,4,[[148,2,1,3,4]]],[4,7,7,4,11,[[155,4,4,4,8],[169,2,2,8,10],[180,1,1,10,11]]],[5,2,2,11,13,[[196,1,1,11,12],[197,1,1,12,13]]],[8,6,6,13,19,[[245,1,1,13,14],[248,2,2,14,16],[259,1,1,16,17],[262,1,1,17,18],[263,1,1,18,19]]],[9,6,6,19,25,[[269,2,2,19,21],[271,1,1,21,22],[273,3,3,22,25]]],[10,12,11,25,36,[[292,1,1,25,26],[294,1,1,26,27],[299,1,1,27,28],[300,1,1,28,29],[301,4,4,29,33],[302,1,1,33,34],[304,1,1,34,35],[308,2,1,35,36]]],[11,5,5,36,41,[[323,1,1,36,37],[326,1,1,37,38],[327,1,1,38,39],[331,2,2,39,41]]],[12,3,3,41,44,[[353,1,1,41,42],[366,2,2,42,44]]],[13,19,19,44,63,[[375,1,1,44,45],[377,1,1,45,46],[378,1,1,46,47],[379,2,2,47,49],[380,1,1,49,50],[383,2,2,50,52],[386,2,2,52,54],[387,2,2,54,56],[388,2,2,56,58],[389,1,1,58,59],[391,1,1,59,60],[395,1,1,60,61],[398,1,1,61,62],[402,1,1,62,63]]],[14,1,1,63,64,[[403,1,1,63,64]]],[15,1,1,64,65,[[421,1,1,64,65]]],[18,6,6,65,71,[[523,1,1,65,66],[545,1,1,66,67],[556,1,1,67,68],[579,1,1,68,69],[582,1,1,69,70],[612,1,1,70,71]]],[22,14,13,71,84,[[687,1,1,71,72],[688,1,1,72,73],[691,2,2,73,75],[692,1,1,75,76],[695,1,1,76,77],[697,2,1,77,78],[701,2,2,78,80],[715,2,2,80,82],[725,1,1,82,83],[738,1,1,83,84]]],[23,17,17,84,101,[[745,2,2,84,86],[759,1,1,86,87],[762,2,2,87,89],[768,1,1,89,90],[769,1,1,90,91],[771,2,2,91,93],[772,2,2,93,95],[773,1,1,95,96],[778,2,2,96,98],[793,1,1,98,99],[795,2,2,99,101]]],[24,1,1,101,102,[[798,1,1,101,102]]],[25,4,4,102,106,[[818,1,1,102,103],[830,2,2,103,105],[838,1,1,105,106]]],[29,3,3,106,109,[[884,1,1,106,107],[885,1,1,107,108],[887,1,1,108,109]]],[32,1,1,109,110,[[896,1,1,109,110]]],[33,1,1,110,111,[[902,1,1,110,111]]],[35,1,1,111,112,[[908,1,1,111,112]]],[36,2,1,112,113,[[910,2,1,112,113]]]],[244,504,2032,4751,4979,4985,4988,4996,5382,5384,5636,6066,6117,7436,7498,7499,7859,7935,7959,8091,8109,8144,8192,8193,8196,8816,8865,9056,9099,9119,9121,9139,9142,9177,9226,9351,9830,9901,9944,10076,10080,10840,11175,11194,11383,11415,11445,11458,11461,11480,11528,11533,11593,11616,11627,11628,11653,11654,11676,11707,11812,11890,12016,12018,12533,14620,14932,15191,15543,15619,16186,17836,17860,17910,17925,17944,17986,18006,18088,18094,18368,18372,18604,18833,18956,18961,19319,19391,19393,19533,19560,19597,19604,19619,19626,19653,19802,19818,20155,20232,20239,20334,20839,21197,21198,21419,22452,22477,22503,22628,22717,22828,22877]]],["+",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[10840,15619]]],["king's",[1,1,[[29,1,1,0,1,[[885,1,1,0,1]]]],[22477]]],["kingdom",[60,57,[[0,2,2,0,2,[[9,1,1,0,1],[19,1,1,1,2]]],[1,1,1,2,3,[[68,1,1,2,3]]],[3,2,1,3,4,[[148,2,1,3,4]]],[4,5,5,4,9,[[155,3,3,4,7],[169,2,2,7,9]]],[8,4,4,9,13,[[248,2,2,9,11],[259,1,1,11,12],[263,1,1,12,13]]],[9,6,6,13,19,[[269,2,2,13,15],[271,1,1,15,16],[273,3,3,16,19]]],[10,11,10,19,29,[[292,1,1,19,20],[299,1,1,20,21],[300,1,1,21,22],[301,4,4,22,26],[302,1,1,26,27],[304,1,1,27,28],[308,2,1,28,29]]],[11,2,2,29,31,[[326,1,1,29,30],[327,1,1,30,31]]],[12,1,1,31,32,[[366,1,1,31,32]]],[13,13,13,32,45,[[375,1,1,32,33],[377,1,1,33,34],[379,2,2,34,36],[380,1,1,36,37],[383,1,1,37,38],[387,2,2,38,40],[388,1,1,40,41],[389,1,1,41,42],[391,1,1,42,43],[395,1,1,43,44],[398,1,1,44,45]]],[22,5,4,45,49,[[687,1,1,45,46],[695,1,1,46,47],[697,2,1,47,48],[738,1,1,48,49]]],[23,3,3,49,52,[[762,2,2,49,51],[771,1,1,51,52]]],[24,1,1,52,53,[[798,1,1,52,53]]],[25,2,2,53,55,[[818,1,1,53,54],[830,1,1,54,55]]],[29,1,1,55,56,[[887,1,1,55,56]]],[32,1,1,56,57,[[896,1,1,56,57]]]],[244,504,2032,4751,4979,4985,4988,5382,5384,7498,7499,7859,7959,8091,8109,8144,8192,8193,8196,8816,9056,9099,9119,9121,9139,9142,9177,9226,9351,9901,9944,11175,11383,11415,11458,11461,11480,11528,11627,11628,11653,11676,11707,11812,11890,17836,17986,18006,18833,19391,19393,19604,20334,20839,21197,22503,22628]]],["kingdoms",[48,47,[[4,2,2,0,2,[[155,1,1,0,1],[180,1,1,1,2]]],[5,1,1,2,3,[[197,1,1,2,3]]],[8,1,1,3,4,[[245,1,1,3,4]]],[10,1,1,4,5,[[294,1,1,4,5]]],[11,2,2,5,7,[[331,2,2,5,7]]],[12,1,1,7,8,[[366,1,1,7,8]]],[13,5,5,8,13,[[378,1,1,8,9],[383,1,1,9,10],[386,2,2,10,12],[402,1,1,12,13]]],[14,1,1,13,14,[[403,1,1,13,14]]],[15,1,1,14,15,[[421,1,1,14,15]]],[18,5,5,15,20,[[523,1,1,15,16],[545,1,1,16,17],[556,1,1,17,18],[579,1,1,18,19],[612,1,1,19,20]]],[22,9,9,20,29,[[688,1,1,20,21],[691,2,2,21,23],[692,1,1,23,24],[701,2,2,24,26],[715,2,2,26,28],[725,1,1,28,29]]],[23,12,12,29,41,[[745,2,2,29,31],[759,1,1,31,32],[768,1,1,32,33],[769,1,1,33,34],[772,1,1,34,35],[773,1,1,35,36],[778,2,2,36,38],[793,1,1,38,39],[795,2,2,39,41]]],[25,2,2,41,43,[[830,1,1,41,42],[838,1,1,42,43]]],[29,1,1,43,44,[[884,1,1,43,44]]],[33,1,1,44,45,[[902,1,1,44,45]]],[35,1,1,45,46,[[908,1,1,45,46]]],[36,2,1,46,47,[[910,2,1,46,47]]]],[4996,5636,6117,7436,8865,10076,10080,11194,11445,11533,11593,11616,12016,12018,12533,14620,14932,15191,15543,16186,17860,17910,17925,17944,18088,18094,18368,18372,18604,18956,18961,19319,19533,19560,19626,19653,19802,19818,20155,20232,20239,21198,21419,22452,22717,22828,22877]]],["reign",[2,2,[[23,2,2,0,2,[[771,1,1,0,1],[772,1,1,1,2]]]],[19597,19619]]],["royal",[4,4,[[5,1,1,0,1,[[196,1,1,0,1]]],[8,1,1,1,2,[[262,1,1,1,2]]],[11,1,1,2,3,[[323,1,1,2,3]]],[13,1,1,3,4,[[388,1,1,3,4]]]],[6066,7935,9830,11654]]]]},{"k":"H4468","v":[["*",[9,9,[[5,5,5,0,5,[[199,5,5,0,5]]],[8,1,1,5,6,[[250,1,1,5,6]]],[9,1,1,6,7,[[282,1,1,6,7]]],[23,1,1,7,8,[[770,1,1,7,8]]],[27,1,1,8,9,[[862,1,1,8,9]]]],[6166,6175,6181,6184,6185,7588,8429,19573,22098]]],["+",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6181]]],["kingdom",[7,7,[[5,4,4,0,4,[[199,4,4,0,4]]],[8,1,1,4,5,[[250,1,1,4,5]]],[9,1,1,5,6,[[282,1,1,5,6]]],[27,1,1,6,7,[[862,1,1,6,7]]]],[6166,6175,6184,6185,7588,8429,22098]]],["reign",[1,1,[[23,1,1,0,1,[[770,1,1,0,1]]]],[19573]]]]},{"k":"H4469","v":[["*",[2,2,[[19,1,1,0,1,[[650,1,1,0,1]]],[22,1,1,1,2,[[743,1,1,1,2]]]],[17074,18908]]],["offering",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18908]]],["wine",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17074]]]]},{"k":"H4470","v":[["bitterness",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16898]]]]},{"k":"H4471","v":[["Mamre",[10,10,[[0,10,10,0,10,[[12,1,1,0,1],[13,2,2,1,3],[17,1,1,3,4],[22,2,2,4,6],[24,1,1,6,7],[34,1,1,7,8],[48,1,1,8,9],[49,1,1,9,10]]]],[336,349,360,425,588,590,667,1038,1503,1519]]]]},{"k":"H4472","v":[["bitterness",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13069]]]]},{"k":"H4473","v":[["anointed",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21171]]]]},{"k":"H4474","v":[["*",[4,3,[[12,1,1,0,1,[[363,1,1,0,1]]],[26,3,2,1,3,[[860,3,2,1,3]]]],[11083,22039,22041]]],["dominion",[3,2,[[26,3,2,0,2,[[860,3,2,0,2]]]],[22039,22041]]],["ruled",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11083]]]]},{"k":"H4475","v":[["*",[16,15,[[0,2,1,0,1,[[0,2,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[11,1,1,2,3,[[332,1,1,2,3]]],[13,2,2,3,5,[[374,1,1,3,4],[398,1,1,4,5]]],[18,5,5,5,10,[[580,1,1,5,6],[591,1,1,6,7],[613,2,2,7,9],[622,1,1,9,10]]],[22,2,2,10,12,[[700,1,1,10,11],[717,1,1,11,12]]],[23,2,2,12,14,[[778,1,1,12,13],[795,1,1,13,14]]],[32,1,1,14,15,[[896,1,1,14,15]]]],[15,9070,10111,11352,11884,15571,15824,16204,16205,16333,18073,18414,19802,20240,22628]]],["+",[1,1,[[23,1,1,0,1,[[778,1,1,0,1]]]],[19802]]],["dominion",[9,9,[[10,1,1,0,1,[[299,1,1,0,1]]],[11,1,1,1,2,[[332,1,1,1,2]]],[13,1,1,2,3,[[374,1,1,2,3]]],[18,3,3,3,6,[[580,1,1,3,4],[591,1,1,4,5],[622,1,1,5,6]]],[22,1,1,6,7,[[717,1,1,6,7]]],[23,1,1,7,8,[[795,1,1,7,8]]],[32,1,1,8,9,[[896,1,1,8,9]]]],[9070,10111,11352,15571,15824,16333,18414,20240,22628]]],["government",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18073]]],["power",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11884]]],["rule",[4,3,[[0,2,1,0,1,[[0,2,1,0,1]]],[18,2,2,1,3,[[613,2,2,1,3]]]],[15,16204,16205]]]]},{"k":"H4476","v":[["breeding",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22814]]]]},{"k":"H4477","v":[["sweet",[2,2,[[15,1,1,0,1,[[420,1,1,0,1]]],[21,1,1,1,2,[[675,1,1,1,2]]]],[12503,17614]]]]},{"k":"H4478","v":[["*",[14,12,[[1,5,4,0,4,[[65,5,4,0,4]]],[3,3,3,4,7,[[127,3,3,4,7]]],[4,2,2,7,9,[[160,2,2,7,9]]],[5,2,1,9,10,[[191,2,1,9,10]]],[15,1,1,10,11,[[421,1,1,10,11]]],[18,1,1,11,12,[[555,1,1,11,12]]]],[1962,1978,1980,1982,4030,4031,4033,5140,5153,5946,12531,15137]]],["Manna",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1978]]],["manna",[13,11,[[1,4,3,0,3,[[65,4,3,0,3]]],[3,3,3,3,6,[[127,3,3,3,6]]],[4,2,2,6,8,[[160,2,2,6,8]]],[5,2,1,8,9,[[191,2,1,8,9]]],[15,1,1,9,10,[[421,1,1,9,10]]],[18,1,1,10,11,[[555,1,1,10,11]]]],[1962,1980,1982,4030,4031,4033,5140,5153,5946,12531,15137]]]]},{"k":"H4479","v":[["*",[10,10,[[14,3,3,0,3,[[407,3,3,0,3]]],[26,7,7,3,10,[[852,3,3,3,6],[853,3,3,6,9],[854,1,1,9,10]]]],[12137,12138,12143,21813,21818,21822,21854,21862,21869,21895]]],["+",[6,6,[[26,6,6,0,6,[[852,2,2,0,2],[853,3,3,2,5],[854,1,1,5,6]]]],[21813,21818,21854,21862,21869,21895]]],["What",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12138]]],["Who",[2,2,[[14,2,2,0,2,[[407,2,2,0,2]]]],[12137,12143]]],["who",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21822]]]]},{"k":"H4480","v":[["*",[7520,5763,[[0,432,345,0,345,[[0,3,2,0,2],[1,18,13,2,15],[2,21,14,15,29],[3,11,7,29,36],[4,3,1,36,37],[5,17,10,37,47],[6,15,11,47,58],[7,16,13,58,71],[8,9,7,71,78],[9,6,6,78,84],[10,5,5,84,89],[11,8,3,89,92],[12,7,5,92,97],[13,5,4,97,101],[14,3,3,101,104],[15,7,5,104,109],[16,8,6,109,115],[17,7,7,115,122],[18,16,13,122,135],[19,3,3,135,138],[20,6,5,138,143],[21,5,5,143,148],[22,8,6,148,154],[23,20,16,154,170],[24,8,7,170,177],[25,9,8,177,185],[26,18,12,185,197],[27,8,6,197,203],[28,9,8,203,211],[29,6,6,211,217],[30,13,12,217,229],[31,6,4,229,233],[32,4,4,233,237],[33,3,3,237,240],[34,9,8,240,248],[35,8,7,248,255],[36,9,9,255,264],[37,7,7,264,271],[38,5,4,271,275],[39,7,4,275,279],[40,10,10,279,289],[41,9,7,289,296],[42,5,4,296,300],[43,8,7,300,307],[44,5,5,307,312],[45,4,4,312,316],[46,10,9,316,325],[47,10,9,325,334],[48,12,8,334,342],[49,3,3,342,345]]],[1,413,303,345,648,[[50,3,3,345,348],[51,10,9,348,357],[52,13,11,357,368],[53,8,5,368,373],[54,8,7,373,380],[55,11,9,380,389],[56,6,6,389,395],[57,21,9,395,404],[58,13,12,404,416],[59,11,9,416,425],[60,8,6,425,431],[61,30,20,431,451],[62,13,10,451,461],[63,14,8,461,469],[64,2,2,469,471],[65,11,9,471,480],[66,8,7,480,487],[67,14,11,487,498],[68,8,8,498,506],[69,8,5,506,511],[70,3,3,511,514],[71,4,4,514,518],[72,12,10,518,528],[73,4,3,528,531],[74,24,13,531,544],[75,10,7,544,551],[76,5,3,551,554],[77,9,6,554,560],[78,19,13,560,573],[79,12,10,573,583],[80,1,1,583,584],[81,22,15,584,599],[82,10,7,599,606],[83,9,8,606,614],[84,2,2,614,616],[85,8,8,616,624],[86,21,10,624,634],[87,5,4,634,638],[88,8,5,638,643],[89,5,5,643,648]]],[2,370,283,648,931,[[90,12,5,648,653],[91,12,7,653,660],[92,5,5,660,665],[93,25,21,665,686],[94,18,14,686,700],[95,14,12,700,712],[96,25,16,712,728],[97,11,10,728,738],[98,9,6,738,744],[99,8,7,744,751],[100,23,19,751,770],[101,1,1,770,771],[102,19,16,771,787],[103,25,20,787,807],[104,9,9,807,816],[105,18,12,816,828],[106,12,7,828,835],[107,6,5,835,840],[108,8,7,840,847],[109,13,9,847,856],[110,8,7,856,863],[111,16,12,863,875],[112,13,9,875,884],[113,6,5,884,889],[114,24,19,889,908],[115,10,7,908,915],[116,20,16,915,931]]],[3,412,336,931,1267,[[117,16,16,931,947],[118,1,1,947,948],[119,14,13,948,961],[120,11,11,961,972],[121,13,12,972,984],[122,8,5,984,989],[123,4,3,989,992],[124,9,7,992,999],[125,5,5,999,1004],[126,6,6,1004,1010],[127,12,10,1010,1020],[128,6,6,1020,1026],[129,11,8,1026,1034],[130,10,10,1034,1044],[131,11,9,1044,1053],[132,21,17,1053,1070],[133,6,5,1070,1075],[134,19,10,1075,1085],[135,7,6,1085,1091],[136,10,10,1091,1101],[137,20,15,1101,1116],[138,16,12,1116,1128],[139,8,5,1128,1133],[140,11,8,1133,1141],[141,5,5,1141,1146],[142,6,5,1146,1151],[143,3,3,1151,1154],[144,2,2,1154,1156],[145,11,11,1156,1167],[146,2,2,1167,1169],[147,33,17,1169,1186],[148,13,10,1186,1196],[149,49,47,1196,1243],[150,12,9,1243,1252],[151,11,8,1252,1260],[152,10,7,1260,1267]]],[4,373,274,1267,1541,[[153,9,8,1267,1275],[154,22,16,1275,1291],[155,8,7,1291,1298],[156,27,21,1298,1319],[157,12,9,1319,1328],[158,7,6,1328,1334],[159,20,14,1334,1348],[160,6,5,1348,1353],[161,25,17,1353,1370],[162,7,6,1370,1376],[163,8,6,1376,1382],[164,10,7,1382,1389],[165,13,5,1389,1394],[166,8,6,1394,1400],[167,11,8,1400,1408],[168,8,6,1408,1414],[169,9,8,1414,1422],[170,13,10,1422,1432],[171,6,6,1432,1438],[172,9,5,1438,1443],[173,3,3,1443,1446],[174,6,6,1446,1452],[175,11,8,1452,1460],[176,10,7,1460,1467],[177,8,6,1467,1473],[178,11,6,1473,1479],[180,25,18,1479,1497],[181,11,9,1497,1506],[182,6,5,1506,1511],[183,7,7,1511,1518],[184,16,11,1518,1529],[185,20,11,1529,1540],[186,1,1,1540,1541]]],[5,309,228,1541,1769,[[187,3,3,1541,1544],[188,15,12,1544,1556],[189,11,9,1556,1565],[190,16,11,1565,1576],[191,13,8,1576,1584],[192,8,6,1584,1590],[193,12,11,1590,1601],[194,21,16,1601,1617],[195,12,11,1617,1628],[196,17,15,1628,1643],[197,15,8,1643,1651],[198,6,6,1651,1657],[199,13,11,1657,1668],[200,4,4,1668,1672],[201,20,14,1672,1686],[202,7,5,1686,1691],[203,5,4,1691,1695],[204,10,7,1695,1702],[205,12,9,1702,1711],[206,7,4,1711,1715],[207,37,22,1715,1737],[208,16,10,1737,1747],[209,16,11,1747,1758],[210,13,11,1758,1769]]],[6,278,196,1769,1965,[[211,9,6,1769,1775],[212,17,10,1775,1785],[213,8,7,1785,1792],[214,8,5,1792,1797],[215,13,7,1797,1804],[216,17,11,1804,1815],[217,11,7,1815,1822],[218,14,11,1822,1833],[219,16,12,1833,1845],[220,6,3,1845,1848],[221,25,19,1848,1867],[222,4,4,1867,1871],[223,11,8,1871,1879],[224,12,9,1879,1888],[225,9,9,1888,1897],[226,11,8,1897,1905],[227,10,7,1905,1912],[228,14,8,1912,1920],[229,12,7,1920,1927],[230,26,20,1927,1947],[231,25,18,1947,1965]]],[7,35,30,1965,1995,[[232,10,9,1965,1974],[233,13,12,1974,1986],[234,2,2,1986,1988],[235,10,7,1988,1995]]],[8,303,238,1995,2233,[[236,12,9,1995,2004],[237,12,10,2004,2014],[238,7,5,2014,2019],[239,11,9,2019,2028],[240,4,4,2028,2032],[241,8,6,2032,2038],[242,12,6,2038,2044],[243,5,4,2044,2048],[244,13,8,2048,2056],[245,15,11,2056,2067],[246,2,2,2067,2069],[247,11,9,2069,2078],[248,5,5,2078,2083],[249,17,13,2083,2096],[250,19,12,2096,2108],[251,5,4,2108,2112],[252,27,21,2112,2133],[253,12,9,2133,2142],[254,2,2,2142,2144],[255,17,16,2144,2160],[256,5,5,2160,2165],[257,5,4,2165,2169],[258,11,6,2169,2175],[259,10,10,2175,2185],[260,18,16,2185,2201],[261,7,6,2201,2207],[262,3,2,2207,2209],[263,8,8,2209,2217],[264,3,3,2217,2220],[265,13,9,2220,2229],[266,4,4,2229,2233]]],[9,271,195,2233,2428,[[267,14,9,2233,2242],[268,15,11,2242,2253],[269,17,11,2253,2264],[270,7,5,2264,2269],[271,5,4,2269,2273],[272,10,8,2273,2281],[273,17,10,2281,2291],[274,13,6,2291,2297],[275,3,2,2297,2299],[276,11,6,2299,2305],[277,13,10,2305,2315],[278,10,8,2315,2323],[279,14,12,2323,2335],[280,11,10,2335,2345],[281,11,10,2345,2355],[282,6,4,2355,2359],[283,6,4,2359,2363],[284,5,4,2363,2367],[285,14,9,2367,2376],[286,12,10,2376,2386],[287,9,6,2386,2392],[288,25,17,2392,2409],[289,14,12,2409,2421],[290,9,7,2421,2428]]],[10,267,212,2428,2640,[[291,11,10,2428,2438],[292,16,15,2438,2453],[293,3,3,2453,2456],[294,16,9,2456,2465],[295,6,6,2465,2471],[296,13,9,2471,2480],[297,30,20,2480,2500],[298,27,20,2500,2520],[299,12,10,2520,2530],[300,15,9,2530,2539],[301,15,14,2539,2553],[302,13,9,2553,2562],[303,10,9,2562,2571],[304,11,10,2571,2581],[305,5,5,2581,2586],[306,6,6,2586,2592],[307,8,8,2592,2600],[308,7,6,2600,2606],[309,8,7,2606,2613],[310,16,12,2613,2625],[311,7,5,2625,2630],[312,12,10,2630,2640]]],[11,272,218,2640,2858,[[313,13,9,2640,2649],[314,18,13,2649,2662],[315,10,9,2662,2671],[316,12,11,2671,2682],[317,18,15,2682,2697],[318,12,10,2697,2707],[319,8,5,2707,2712],[320,11,9,2712,2721],[321,9,8,2721,2729],[322,11,10,2729,2739],[323,6,5,2739,2744],[324,6,6,2744,2750],[325,7,6,2750,2756],[326,5,4,2756,2760],[327,8,8,2760,2768],[328,12,8,2768,2776],[329,25,17,2776,2793],[330,11,10,2793,2803],[331,8,6,2803,2809],[332,7,4,2809,2813],[333,10,8,2813,2821],[334,3,3,2821,2824],[335,20,17,2824,2841],[336,9,7,2841,2848],[337,13,10,2848,2858]]],[12,209,165,2858,3023,[[338,5,5,2858,2863],[339,4,4,2863,2867],[340,1,1,2867,2868],[341,5,4,2868,2872],[342,6,6,2872,2878],[343,27,16,2878,2894],[345,4,4,2894,2898],[346,17,13,2898,2911],[347,3,3,2911,2914],[348,15,13,2914,2927],[349,21,19,2927,2946],[350,5,4,2946,2950],[351,3,2,2950,2952],[352,4,3,2952,2955],[353,10,9,2955,2964],[354,13,8,2964,2972],[355,11,4,2972,2976],[356,12,8,2976,2984],[357,2,2,2984,2986],[358,8,8,2986,2994],[359,3,2,2994,2996],[360,4,4,2996,3000],[361,5,4,3000,3004],[363,6,5,3004,3009],[364,5,5,3009,3014],[365,3,3,3014,3017],[366,7,6,3017,3023]]],[13,297,230,3023,3253,[[367,4,4,3023,3027],[368,5,5,3027,3032],[369,3,2,3032,3034],[370,10,6,3034,3040],[371,7,7,3040,3047],[372,18,12,3047,3059],[373,7,5,3059,3064],[374,7,6,3064,3070],[375,12,9,3070,3079],[376,8,5,3079,3084],[377,7,6,3084,3090],[378,5,5,3090,3095],[379,7,6,3095,3101],[380,5,4,3101,3105],[381,12,7,3105,3112],[382,6,6,3112,3118],[383,4,4,3118,3122],[384,7,7,3122,3129],[385,6,5,3129,3134],[386,18,14,3134,3148],[387,8,7,3148,3155],[388,3,2,3155,3157],[389,6,5,3157,3162],[390,8,6,3162,3168],[391,15,12,3168,3180],[392,8,7,3180,3187],[394,8,6,3187,3193],[395,11,7,3193,3200],[396,13,10,3200,3210],[397,7,6,3210,3216],[398,18,10,3216,3226],[399,8,7,3226,3233],[400,12,8,3233,3241],[401,8,7,3241,3248],[402,6,5,3248,3253]]],[14,97,81,3253,3334,[[403,5,5,3253,3258],[404,10,8,3258,3266],[405,7,6,3266,3272],[406,1,1,3272,3273],[408,2,1,3273,3274],[409,5,4,3274,3278],[410,30,24,3278,3302],[411,8,8,3302,3310],[412,29,24,3310,3334]]],[15,115,94,3334,3428,[[413,5,3,3334,3337],[415,9,8,3337,3345],[416,10,9,3345,3354],[417,10,7,3354,3361],[418,3,3,3361,3364],[419,12,10,3364,3374],[420,7,6,3374,3380],[421,14,12,3380,3392],[422,3,3,3392,3395],[423,15,12,3395,3407],[424,14,10,3407,3417],[425,13,11,3417,3428]]],[16,49,40,3428,3468,[[426,6,5,3428,3433],[427,7,6,3433,3439],[428,6,5,3439,3444],[429,6,6,3444,3450],[430,1,1,3450,3451],[431,5,5,3451,3456],[432,7,4,3456,3460],[433,5,5,3460,3465],[434,6,3,3465,3468]]],[17,264,223,3468,3691,[[436,11,9,3468,3477],[437,9,6,3477,3483],[438,6,5,3483,3488],[439,9,6,3488,3494],[440,12,8,3494,3502],[441,10,9,3502,3511],[442,5,5,3511,3516],[443,3,3,3516,3519],[444,4,4,3519,3523],[445,5,5,3523,3528],[446,7,6,3528,3534],[447,2,2,3534,3536],[448,4,4,3536,3540],[449,6,6,3540,3546],[450,6,6,3546,3552],[451,2,2,3552,3554],[452,3,3,3554,3557],[453,8,6,3557,3563],[454,6,5,3563,3568],[455,10,7,3568,3575],[456,4,4,3575,3579],[457,6,6,3579,3585],[458,6,4,3585,3589],[459,7,6,3589,3595],[461,3,3,3595,3598],[462,6,6,3598,3604],[463,13,10,3604,3614],[464,1,1,3614,3615],[465,9,7,3615,3622],[466,14,11,3622,3633],[467,7,6,3633,3639],[468,11,10,3639,3649],[469,6,4,3649,3653],[470,9,7,3653,3660],[471,6,6,3660,3666],[472,8,7,3666,3673],[473,6,6,3673,3679],[474,5,4,3679,3683],[475,1,1,3683,3684],[476,5,4,3684,3688],[477,3,3,3688,3691]]],[18,511,408,3691,4099,[[479,2,2,3691,3693],[480,2,2,3693,3695],[481,1,1,3695,3696],[482,1,1,3696,3697],[483,2,2,3697,3699],[484,1,1,3699,3700],[485,2,2,3700,3702],[486,3,2,3702,3704],[487,3,3,3704,3707],[489,4,3,3707,3710],[490,1,1,3710,3711],[491,2,2,3711,3713],[493,2,2,3713,3715],[494,7,5,3715,3720],[495,21,14,3720,3734],[496,9,5,3734,3739],[497,3,2,3739,3741],[498,3,2,3741,3743],[499,12,9,3743,3752],[501,2,1,3752,3753],[502,4,4,3753,3757],[504,4,3,3757,3760],[505,3,2,3760,3762],[507,2,1,3762,3763],[508,10,7,3763,3770],[509,1,1,3770,3771],[510,5,4,3771,3775],[511,9,8,3775,3783],[512,6,3,3783,3786],[513,1,1,3786,3787],[514,6,6,3787,3793],[515,10,8,3793,3801],[516,6,5,3801,3806],[517,5,4,3806,3810],[518,1,1,3810,3811],[519,2,1,3811,3812],[520,2,1,3812,3813],[521,5,4,3813,3817],[522,5,4,3817,3821],[526,2,2,3821,3823],[527,5,4,3823,3827],[528,7,5,3827,3832],[529,4,2,3832,3834],[530,2,2,3834,3836],[531,1,1,3836,3837],[532,9,7,3837,3844],[533,2,1,3844,3845],[534,1,1,3845,3846],[535,2,1,3846,3847],[536,6,3,3847,3850],[537,2,2,3850,3852],[538,3,2,3852,3854],[539,4,4,3854,3858],[540,1,1,3858,3859],[541,3,2,3859,3861],[542,2,2,3861,3863],[543,1,1,3863,3864],[545,12,9,3864,3873],[546,9,7,3873,3880],[548,8,6,3880,3886],[549,6,4,3886,3890],[550,5,5,3890,3895],[551,3,3,3895,3898],[552,4,2,3898,3900],[553,4,4,3900,3904],[554,2,2,3904,3906],[555,11,11,3906,3917],[557,5,5,3917,3922],[558,5,3,3922,3925],[559,1,1,3925,3926],[560,1,1,3926,3927],[561,3,2,3927,3929],[562,3,2,3929,3931],[563,1,1,3931,3932],[564,1,1,3932,3933],[565,6,6,3933,3939],[566,5,5,3939,3944],[567,1,1,3944,3945],[568,8,4,3945,3949],[570,3,2,3949,3951],[571,2,2,3951,3953],[573,2,2,3953,3955],[574,3,2,3955,3957],[578,2,2,3957,3959],[579,6,5,3959,3964],[580,4,3,3964,3967],[581,9,7,3967,3974],[582,3,2,3974,3976],[583,6,5,3976,3981],[584,17,12,3981,3993],[585,2,2,3993,3995],[586,7,6,3995,4001],[587,3,3,4001,4004],[589,1,1,4004,4005],[590,4,3,4005,4008],[591,4,2,4008,4010],[592,1,1,4010,4011],[593,3,1,4011,4012],[595,5,5,4012,4017],[596,34,32,4017,4049],[597,2,1,4049,4050],[598,4,4,4050,4054],[601,1,1,4054,4055],[602,1,1,4055,4056],[604,1,1,4056,4057],[605,1,1,4057,4058],[606,2,2,4058,4060],[607,3,3,4060,4063],[608,2,2,4063,4065],[609,2,1,4065,4066],[611,1,1,4066,4067],[612,5,4,4067,4071],[613,2,2,4071,4073],[614,1,1,4073,4074],[615,1,1,4074,4075],[616,8,7,4075,4082],[617,4,2,4082,4084],[618,1,1,4084,4085],[619,4,3,4085,4088],[620,4,4,4088,4092],[621,6,4,4092,4096],[625,3,3,4096,4099]]],[19,158,133,4099,4232,[[628,4,3,4099,4102],[629,7,4,4102,4106],[630,11,8,4106,4114],[631,8,6,4114,4120],[632,6,5,4120,4125],[633,5,3,4125,4128],[634,3,2,4128,4130],[635,11,7,4130,4137],[637,1,1,4137,4138],[638,3,3,4138,4141],[639,5,5,4141,4146],[640,4,4,4146,4150],[641,5,4,4150,4154],[642,4,4,4154,4158],[643,10,8,4158,4166],[644,4,4,4166,4170],[645,4,4,4170,4174],[646,6,6,4174,4180],[647,4,4,4180,4184],[648,6,6,4184,4190],[649,8,6,4190,4196],[650,3,3,4196,4199],[651,1,1,4199,4200],[652,5,5,4200,4205],[653,3,3,4205,4208],[654,7,6,4208,4214],[655,3,3,4214,4217],[656,3,3,4217,4220],[657,9,7,4220,4227],[658,5,5,4227,4232]]],[20,76,61,4232,4293,[[659,2,2,4232,4234],[660,11,7,4234,4241],[661,8,6,4241,4247],[662,10,9,4247,4256],[663,5,5,4256,4261],[664,8,6,4261,4267],[665,15,11,4267,4278],[666,4,4,4278,4282],[667,4,4,4282,4286],[668,4,3,4286,4289],[669,2,1,4289,4290],[670,3,3,4290,4293]]],[21,38,24,4293,4317,[[671,3,2,4293,4295],[672,2,1,4295,4296],[673,6,5,4296,4301],[674,15,7,4301,4308],[675,5,4,4308,4312],[676,4,3,4312,4315],[678,3,2,4315,4317]]],[22,456,310,4317,4627,[[679,8,6,4317,4323],[680,12,7,4323,4330],[681,2,1,4330,4331],[682,4,2,4331,4333],[683,6,5,4333,4338],[684,6,4,4338,4342],[685,8,7,4342,4349],[686,3,3,4349,4352],[687,4,3,4352,4355],[688,9,6,4355,4361],[689,13,4,4361,4365],[690,1,1,4365,4366],[691,7,5,4366,4371],[692,13,9,4371,4380],[694,5,4,4380,4384],[695,5,4,4384,4388],[696,4,3,4388,4391],[697,6,6,4391,4397],[698,5,3,4397,4400],[699,12,5,4400,4405],[700,7,5,4405,4410],[701,7,4,4410,4414],[702,7,5,4414,4419],[703,7,4,4419,4423],[704,2,2,4423,4425],[705,1,1,4425,4426],[706,8,6,4426,4432],[707,9,5,4432,4437],[708,13,9,4437,4446],[709,5,3,4446,4449],[710,1,1,4449,4450],[711,6,3,4450,4453],[712,11,6,4453,4459],[714,6,5,4459,4464],[715,8,6,4464,4470],[716,8,6,4470,4476],[717,5,2,4476,4478],[718,8,6,4478,4484],[719,11,7,4484,4491],[720,6,5,4491,4496],[721,8,5,4496,4501],[722,10,8,4501,4509],[723,7,4,4509,4513],[724,11,7,4513,4520],[725,4,4,4520,4524],[726,16,12,4524,4536],[727,13,8,4536,4544],[728,5,4,4544,4548],[729,11,9,4548,4557],[730,5,3,4557,4560],[731,9,5,4560,4565],[732,10,7,4565,4572],[733,5,3,4572,4575],[734,7,5,4575,4580],[735,7,6,4580,4586],[736,6,4,4586,4590],[737,17,10,4590,4600],[738,3,3,4600,4603],[740,1,1,4603,4604],[741,11,8,4604,4612],[742,5,5,4612,4617],[743,7,4,4617,4621],[744,9,6,4621,4627]]],[23,549,420,4627,5047,[[745,6,6,4627,4633],[746,10,8,4633,4641],[747,12,11,4641,4652],[748,19,14,4652,4666],[749,7,5,4666,4671],[750,11,7,4671,4678],[751,12,10,4678,4688],[752,8,5,4688,4693],[753,12,10,4693,4703],[754,15,11,4703,4714],[755,8,7,4714,4721],[756,7,5,4721,4726],[757,7,6,4726,4732],[758,1,1,4732,4733],[759,9,8,4733,4741],[760,13,9,4741,4750],[761,13,8,4750,4758],[762,10,8,4758,4766],[763,4,3,4766,4769],[764,9,7,4769,4776],[765,8,5,4776,4781],[766,9,9,4781,4790],[767,16,12,4790,4802],[768,6,6,4802,4808],[769,19,14,4808,4822],[770,8,7,4822,4829],[771,4,4,4829,4833],[772,8,8,4833,4841],[773,10,7,4841,4848],[774,10,7,4848,4855],[775,17,12,4855,4867],[776,14,12,4867,4879],[777,13,8,4879,4887],[778,11,8,4887,4895],[779,5,4,4895,4899],[780,17,14,4899,4913],[781,10,6,4913,4919],[782,12,11,4919,4930],[783,4,4,4930,4934],[784,7,5,4934,4939],[785,13,8,4939,4947],[786,12,8,4947,4955],[787,3,3,4955,4958],[788,14,10,4958,4968],[789,1,1,4968,4969],[790,10,8,4969,4977],[791,4,2,4977,4979],[792,22,14,4979,4993],[793,11,10,4993,5003],[794,17,11,5003,5014],[795,27,21,5014,5035],[796,14,12,5035,5047]]],[24,40,35,5047,5082,[[797,9,8,5047,5055],[798,6,6,5055,5061],[799,10,10,5061,5071],[800,10,7,5071,5078],[801,5,4,5078,5082]]],[25,505,367,5082,5449,[[802,16,12,5082,5094],[803,4,1,5094,5095],[804,12,7,5095,5102],[805,4,4,5102,5106],[806,6,4,5106,5110],[807,2,2,5110,5112],[808,10,6,5112,5118],[809,7,6,5118,5124],[810,3,3,5124,5127],[811,11,8,5127,5135],[812,11,9,5135,5144],[813,7,3,5144,5147],[814,6,6,5147,5153],[815,17,13,5153,5166],[816,3,2,5166,5168],[817,23,21,5168,5189],[818,6,5,5189,5194],[819,12,11,5194,5205],[820,6,6,5205,5211],[821,12,9,5211,5220],[822,7,4,5220,5224],[823,4,4,5224,5228],[824,16,11,5228,5239],[825,5,5,5239,5244],[826,7,3,5244,5247],[827,9,8,5247,5255],[828,13,10,5255,5265],[829,10,8,5265,5273],[830,7,6,5273,5279],[831,5,4,5279,5283],[832,4,3,5283,5286],[833,9,8,5286,5294],[834,19,13,5294,5307],[835,11,8,5307,5315],[836,2,2,5315,5317],[837,13,11,5317,5328],[838,6,5,5328,5333],[839,8,4,5333,5337],[840,15,12,5337,5349],[841,36,20,5349,5369],[842,12,7,5369,5376],[843,8,4,5376,5380],[844,15,12,5380,5392],[845,11,7,5392,5399],[846,19,11,5399,5410],[847,9,5,5410,5415],[848,20,10,5415,5425],[849,27,24,5425,5449]]],[26,53,43,5449,5492,[[850,15,10,5449,5459],[857,11,8,5459,5467],[858,7,6,5467,5473],[859,2,2,5473,5475],[860,13,12,5475,5487],[861,5,5,5487,5492]]],[27,59,47,5492,5539,[[862,2,2,5492,5494],[863,8,6,5494,5500],[865,4,3,5500,5503],[866,3,3,5503,5506],[867,3,3,5506,5509],[868,6,4,5509,5513],[869,3,3,5513,5516],[870,8,5,5516,5521],[871,4,4,5521,5525],[872,6,5,5525,5530],[873,2,2,5530,5532],[874,8,5,5532,5537],[875,2,2,5537,5539]]],[28,19,17,5539,5556,[[876,6,6,5539,5545],[877,5,4,5545,5549],[878,8,7,5549,5556]]],[29,51,36,5556,5592,[[879,7,4,5556,5560],[880,8,5,5560,5565],[881,6,6,5565,5571],[882,3,3,5571,5574],[883,4,4,5574,5578],[884,7,4,5578,5582],[885,3,3,5582,5585],[886,2,1,5585,5586],[887,11,6,5586,5592]]],[30,9,6,5592,5598,[[888,9,6,5592,5598]]],[31,30,22,5598,5620,[[889,9,7,5598,5605],[890,5,4,5605,5609],[891,8,6,5609,5615],[892,8,5,5615,5620]]],[32,51,38,5620,5658,[[893,7,7,5620,5627],[894,6,4,5627,5631],[895,6,4,5631,5635],[896,7,4,5635,5639],[897,9,7,5639,5646],[898,4,3,5646,5649],[899,12,9,5649,5658]]],[33,17,13,5658,5671,[[900,7,5,5658,5663],[901,3,3,5663,5666],[902,7,5,5666,5671]]],[34,20,15,5671,5686,[[903,7,4,5671,5675],[904,8,7,5675,5682],[905,5,4,5682,5686]]],[35,18,12,5686,5698,[[906,8,6,5686,5692],[907,2,2,5692,5694],[908,8,4,5694,5698]]],[36,11,8,5698,5706,[[909,2,2,5698,5700],[910,9,6,5700,5706]]],[37,67,44,5706,5750,[[911,2,2,5706,5708],[912,4,3,5708,5711],[913,3,2,5711,5713],[914,3,3,5713,5716],[915,2,1,5716,5717],[916,8,4,5717,5721],[917,5,3,5721,5724],[918,6,5,5724,5729],[919,10,5,5729,5734],[920,7,3,5734,5737],[921,2,2,5737,5739],[923,4,3,5739,5742],[924,11,8,5742,5750]]],[38,16,13,5750,5763,[[925,6,5,5750,5755],[926,7,6,5755,5761],[927,3,2,5761,5763]]]],[6,8,32,33,36,37,38,39,40,46,47,49,51,52,53,56,57,58,60,61,63,66,67,69,72,74,77,78,79,82,83,89,90,92,93,95,134,139,141,144,150,151,153,154,156,157,158,161,162,163,166,167,174,175,176,179,181,182,185,186,189,190,191,193,194,196,199,200,202,203,204,210,215,216,223,224,226,229,239,245,248,253,264,266,268,272,274,275,297,299,302,306,319,321,327,329,332,351,353,356,359,364,367,378,383,384,387,389,391,403,409,411,413,419,424,426,427,438,440,441,446,449,461,466,468,469,471,473,481,483,486,487,489,491,493,496,501,508,528,529,530,534,543,551,556,558,559,562,574,575,577,579,584,591,594,596,598,599,601,602,608,618,628,631,632,634,637,641,653,655,664,668,676,678,681,687,688,693,708,709,714,715,718,719,723,728,736,746,752,755,757,758,760,766,767,772,773,774,775,779,783,784,789,797,798,799,803,805,814,825,830,832,833,839,844,846,862,874,886,889,897,902,904,906,908,910,912,913,922,938,939,940,941,970,975,978,979,987,999,1006,1012,1018,1019,1020,1022,1024,1027,1032,1042,1046,1047,1073,1074,1076,1077,1086,1087,1097,1100,1101,1104,1105,1108,1111,1120,1133,1136,1138,1139,1143,1145,1150,1154,1158,1160,1186,1187,1189,1191,1196,1197,1198,1209,1213,1226,1227,1235,1237,1241,1254,1255,1259,1267,1268,1276,1278,1292,1299,1301,1324,1331,1332,1333,1341,1352,1353,1356,1359,1361,1377,1381,1383,1389,1391,1412,1420,1421,1422,1430,1433,1435,1438,1441,1442,1450,1458,1461,1463,1464,1466,1467,1468,1470,1473,1482,1483,1485,1493,1497,1498,1503,1505,1519,1530,1531,1541,1542,1544,1555,1558,1560,1561,1564,1565,1569,1573,1577,1581,1583,1584,1585,1586,1587,1589,1590,1591,1596,1601,1604,1608,1610,1611,1627,1636,1637,1640,1643,1651,1652,1655,1656,1661,1662,1664,1666,1668,1680,1681,1682,1687,1689,1690,1703,1706,1709,1718,1719,1721,1722,1723,1734,1739,1740,1741,1746,1748,1749,1753,1757,1760,1762,1766,1767,1770,1772,1775,1780,1782,1783,1788,1794,1795,1800,1803,1805,1807,1808,1811,1813,1814,1816,1820,1821,1823,1825,1826,1828,1831,1833,1835,1838,1845,1847,1849,1851,1853,1855,1857,1858,1862,1867,1870,1875,1876,1877,1881,1882,1883,1885,1886,1887,1894,1900,1901,1908,1911,1914,1918,1919,1942,1943,1948,1951,1953,1963,1966,1967,1974,1976,1979,1984,1986,1988,1989,1995,1997,1999,2000,2003,2008,2009,2010,2012,2013,2017,2020,2021,2024,2027,2028,2029,2031,2040,2043,2044,2047,2053,2055,2069,2072,2073,2091,2106,2113,2117,2120,2125,2127,2149,2151,2159,2160,2165,2169,2172,2173,2174,2175,2178,2186,2193,2197,2198,2206,2210,2213,2214,2216,2217,2226,2227,2228,2230,2231,2239,2248,2249,2259,2263,2268,2270,2274,2277,2293,2294,2301,2303,2320,2321,2335,2348,2350,2356,2357,2358,2359,2361,2362,2363,2364,2366,2370,2382,2384,2386,2392,2396,2397,2398,2401,2415,2418,2420,2434,2439,2442,2444,2445,2446,2449,2450,2453,2457,2461,2465,2466,2468,2470,2471,2474,2478,2479,2480,2484,2488,2489,2507,2511,2512,2514,2520,2525,2526,2529,2536,2551,2569,2570,2571,2572,2577,2585,2595,2599,2606,2611,2612,2621,2622,2623,2625,2626,2629,2631,2635,2637,2648,2659,2665,2669,2684,2685,2695,2726,2727,2729,2738,2743,2746,2747,2748,2755,2759,2764,2765,2770,2771,2772,2775,2778,2779,2781,2784,2787,2792,2797,2800,2801,2802,2803,2805,2807,2808,2811,2812,2813,2814,2816,2817,2820,2821,2822,2825,2826,2829,2830,2832,2833,2834,2835,2836,2838,2839,2840,2842,2843,2845,2846,2847,2848,2852,2854,2855,2856,2860,2864,2865,2866,2867,2871,2876,2879,2882,2893,2894,2895,2896,2897,2899,2900,2904,2906,2908,2911,2912,2913,2914,2915,2928,2929,2934,2940,2941,2943,2945,2946,2947,2950,2963,2964,2970,2972,2975,2977,2979,2981,2982,2984,2989,2990,2991,2999,3001,3005,3006,3007,3008,3010,3018,3019,3022,3029,3030,3031,3032,3034,3035,3036,3037,3042,3051,3054,3055,3056,3064,3072,3073,3077,3078,3082,3083,3084,3086,3093,3098,3108,3110,3114,3118,3119,3125,3126,3127,3128,3130,3136,3137,3138,3139,3140,3141,3148,3149,3151,3152,3156,3164,3170,3171,3181,3183,3184,3196,3198,3199,3200,3203,3206,3213,3215,3216,3217,3219,3220,3221,3228,3231,3235,3238,3239,3243,3244,3245,3247,3248,3272,3275,3277,3280,3281,3287,3289,3295,3303,3313,3315,3317,3320,3321,3322,3323,3324,3336,3341,3342,3344,3352,3355,3357,3359,3362,3366,3367,3371,3372,3373,3375,3376,3382,3387,3391,3394,3396,3399,3402,3413,3417,3418,3419,3431,3432,3434,3440,3445,3449,3454,3455,3460,3469,3481,3483,3484,3486,3491,3494,3502,3505,3507,3510,3511,3512,3513,3514,3517,3518,3519,3520,3524,3530,3532,3534,3537,3561,3567,3569,3573,3575,3576,3577,3578,3579,3581,3586,3587,3588,3592,3594,3598,3599,3600,3601,3605,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3660,3701,3704,3705,3707,3714,3720,3726,3731,3732,3735,3738,3741,3742,3745,3746,3749,3761,3766,3768,3773,3778,3782,3786,3790,3794,3795,3796,3798,3800,3805,3809,3811,3812,3817,3818,3823,3826,3827,3834,3842,3844,3855,3934,3939,3945,3950,3953,3955,3958,3963,3964,3966,3977,3978,3982,3986,3997,3999,4000,4021,4022,4023,4037,4038,4040,4041,4044,4048,4049,4052,4055,4059,4062,4069,4071,4073,4074,4075,4078,4095,4096,4098,4099,4100,4106,4108,4114,4117,4120,4121,4124,4127,4137,4146,4151,4152,4156,4172,4174,4176,4177,4183,4188,4189,4194,4196,4203,4207,4209,4215,4218,4220,4221,4222,4227,4229,4231,4234,4235,4239,4240,4243,4246,4249,4252,4253,4254,4263,4264,4266,4273,4283,4284,4285,4286,4287,4289,4292,4293,4298,4302,4306,4309,4316,4317,4319,4320,4321,4325,4327,4332,4333,4339,4341,4344,4345,4346,4347,4351,4352,4353,4356,4358,4359,4360,4364,4366,4368,4376,4378,4380,4381,4386,4390,4391,4398,4399,4405,4408,4416,4423,4425,4429,4438,4443,4453,4454,4457,4459,4463,4465,4469,4470,4475,4477,4478,4479,4482,4491,4493,4551,4553,4554,4558,4565,4574,4600,4608,4614,4619,4624,4627,4630,4633,4636,4639,4642,4646,4647,4650,4662,4666,4667,4669,4677,4678,4683,4692,4693,4694,4699,4701,4706,4711,4713,4715,4716,4718,4725,4726,4729,4733,4735,4737,4739,4740,4742,4750,4761,4763,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4801,4802,4803,4804,4805,4806,4807,4808,4809,4812,4815,4819,4820,4821,4823,4824,4826,4827,4831,4834,4847,4849,4850,4853,4857,4859,4870,4872,4880,4882,4883,4886,4887,4888,4891,4894,4909,4911,4915,4917,4919,4920,4921,4942,4943,4944,4946,4947,4950,4952,4953,4954,4957,4959,4960,4961,4963,4964,4974,4979,4980,4983,4986,4987,4991,4992,5006,5007,5013,5016,5019,5022,5024,5030,5033,5036,5037,5038,5039,5040,5041,5042,5043,5046,5049,5050,5052,5057,5058,5059,5061,5068,5075,5076,5077,5079,5098,5100,5101,5105,5107,5109,5112,5115,5117,5118,5119,5125,5126,5128,5129,5130,5131,5132,5133,5135,5141,5146,5151,5152,5157,5158,5161,5162,5164,5167,5168,5169,5171,5172,5173,5174,5176,5178,5180,5181,5183,5185,5190,5191,5192,5193,5198,5201,5218,5220,5225,5231,5232,5236,5243,5245,5250,5261,5269,5270,5272,5277,5279,5282,5285,5289,5292,5297,5298,5299,5314,5318,5320,5326,5330,5331,5332,5333,5335,5337,5343,5345,5346,5348,5351,5355,5371,5372,5374,5375,5376,5379,5382,5384,5387,5389,5390,5392,5396,5399,5400,5402,5403,5406,5410,5411,5412,5418,5419,5425,5428,5430,5442,5443,5446,5456,5460,5468,5471,5474,5478,5491,5492,5494,5504,5509,5510,5512,5514,5515,5517,5521,5526,5527,5528,5532,5534,5539,5543,5552,5553,5556,5558,5564,5566,5568,5570,5574,5579,5580,5581,5621,5625,5631,5632,5635,5642,5645,5646,5658,5660,5666,5667,5668,5671,5674,5675,5677,5678,5680,5684,5690,5697,5699,5700,5701,5704,5707,5711,5712,5713,5719,5721,5731,5734,5738,5745,5749,5754,5757,5771,5775,5777,5778,5783,5784,5790,5797,5800,5805,5810,5812,5813,5817,5821,5823,5824,5825,5826,5832,5834,5837,5840,5855,5858,5859,5870,5871,5873,5878,5879,5880,5882,5886,5888,5889,5892,5893,5894,5895,5896,5897,5903,5905,5906,5907,5909,5912,5913,5914,5917,5918,5926,5927,5928,5929,5930,5933,5935,5938,5939,5940,5943,5945,5946,5949,5950,5959,5967,5970,5971,5972,5977,5978,5980,5981,5985,5987,5988,5989,5995,5999,6002,6004,6006,6008,6009,6011,6013,6014,6015,6016,6018,6021,6024,6027,6031,6035,6037,6043,6045,6046,6049,6050,6051,6053,6059,6060,6061,6063,6066,6070,6071,6072,6073,6075,6084,6086,6087,6091,6093,6095,6098,6100,6105,6109,6110,6113,6122,6124,6127,6128,6130,6131,6132,6133,6134,6137,6139,6157,6158,6159,6160,6163,6166,6170,6180,6181,6184,6186,6190,6194,6197,6202,6203,6204,6205,6207,6208,6209,6210,6211,6212,6216,6217,6220,6223,6248,6266,6267,6271,6272,6273,6280,6282,6284,6285,6298,6300,6305,6306,6307,6308,6310,6330,6333,6334,6335,6350,6354,6355,6368,6372,6375,6376,6378,6380,6384,6385,6386,6387,6388,6390,6391,6397,6398,6401,6404,6406,6408,6409,6411,6413,6415,6417,6419,6421,6425,6426,6435,6442,6443,6444,6445,6449,6450,6455,6457,6458,6461,6463,6464,6465,6466,6469,6470,6473,6474,6475,6476,6478,6479,6482,6484,6486,6488,6492,6493,6494,6506,6508,6520,6523,6525,6529,6533,6545,6546,6548,6554,6557,6559,6561,6562,6563,6564,6566,6571,6584,6587,6588,6589,6590,6595,6605,6610,6612,6613,6614,6627,6628,6634,6637,6643,6645,6647,6656,6660,6662,6663,6665,6667,6668,6672,6675,6681,6692,6695,6697,6699,6702,6711,6717,6719,6721,6722,6727,6729,6730,6732,6733,6741,6743,6745,6753,6758,6769,6771,6774,6775,6789,6790,6791,6794,6795,6796,6797,6822,6823,6827,6832,6833,6834,6836,6842,6845,6847,6851,6852,6853,6854,6858,6860,6862,6863,6865,6866,6868,6869,6871,6875,6877,6878,6886,6889,6890,6891,6897,6898,6904,6907,6910,6911,6912,6913,6917,6918,6923,6927,6928,6930,6931,6932,6934,6940,6942,6943,6946,6948,6961,6963,6966,6968,6969,6974,6977,6979,6981,6983,6985,6987,6988,6989,6991,6995,7000,7004,7006,7009,7015,7019,7021,7025,7026,7036,7040,7041,7042,7054,7055,7067,7068,7069,7070,7071,7075,7079,7085,7086,7087,7088,7092,7094,7096,7097,7098,7099,7100,7102,7103,7105,7106,7107,7108,7109,7110,7111,7112,7114,7116,7118,7119,7120,7121,7123,7125,7126,7128,7129,7132,7133,7134,7139,7140,7143,7149,7150,7152,7153,7155,7156,7157,7158,7161,7163,7165,7167,7169,7182,7184,7192,7193,7195,7199,7200,7202,7205,7213,7215,7219,7220,7226,7228,7229,7232,7239,7243,7248,7255,7259,7260,7263,7268,7269,7271,7273,7291,7293,7294,7295,7296,7300,7301,7305,7307,7309,7313,7315,7318,7319,7320,7322,7323,7328,7334,7336,7338,7339,7349,7351,7354,7355,7359,7360,7363,7366,7376,7377,7379,7387,7392,7393,7394,7396,7398,7407,7412,7416,7420,7421,7422,7423,7427,7429,7430,7431,7436,7437,7441,7450,7456,7462,7463,7464,7466,7468,7470,7471,7480,7483,7487,7493,7496,7500,7502,7509,7512,7513,7519,7525,7532,7536,7538,7539,7547,7553,7554,7556,7562,7563,7566,7567,7571,7575,7581,7582,7583,7586,7588,7593,7596,7608,7609,7618,7621,7622,7630,7633,7641,7642,7644,7648,7651,7652,7653,7654,7655,7657,7658,7664,7667,7668,7669,7671,7675,7682,7685,7686,7687,7688,7689,7691,7705,7706,7714,7716,7731,7732,7736,7737,7739,7745,7746,7751,7752,7755,7757,7758,7763,7764,7767,7771,7776,7778,7779,7782,7784,7788,7790,7795,7806,7823,7829,7833,7836,7838,7839,7840,7841,7845,7846,7847,7851,7852,7854,7856,7860,7871,7872,7875,7878,7882,7883,7884,7887,7889,7894,7895,7896,7898,7900,7904,7905,7916,7918,7924,7925,7927,7929,7931,7938,7945,7951,7955,7957,7958,7959,7962,7965,7970,7973,7975,7980,7988,7991,7994,7995,7997,8000,8003,8004,8010,8012,8017,8021,8023,8024,8025,8026,8035,8037,8044,8045,8048,8061,8062,8064,8068,8070,8071,8072,8075,8076,8079,8080,8091,8092,8094,8096,8099,8103,8107,8109,8110,8118,8120,8122,8124,8128,8129,8131,8141,8145,8155,8157,8159,8160,8161,8169,8175,8176,8178,8179,8181,8186,8188,8189,8191,8192,8195,8199,8203,8209,8210,8213,8217,8220,8221,8222,8232,8238,8249,8251,8253,8254,8256,8258,8261,8263,8267,8269,8271,8274,8276,8279,8280,8283,8289,8290,8293,8296,8297,8303,8306,8316,8322,8323,8326,8327,8330,8332,8333,8334,8339,8347,8349,8351,8358,8367,8369,8370,8372,8374,8375,8381,8382,8388,8390,8391,8396,8400,8401,8407,8413,8417,8423,8424,8427,8431,8432,8437,8460,8463,8470,8476,8481,8491,8494,8509,8518,8520,8527,8528,8530,8535,8542,8553,8554,8556,8559,8560,8561,8565,8566,8567,8570,8575,8576,8582,8585,8586,8590,8592,8593,8603,8605,8606,8609,8611,8615,8616,8618,8619,8620,8624,8625,8626,8634,8646,8648,8651,8657,8664,8668,8669,8670,8672,8673,8674,8676,8682,8683,8689,8694,8700,8704,8707,8713,8716,8717,8723,8744,8746,8754,8756,8762,8764,8767,8769,8770,8774,8777,8778,8785,8786,8790,8792,8797,8801,8802,8803,8806,8809,8810,8811,8824,8836,8844,8856,8865,8867,8868,8869,8874,8875,8877,8878,8881,8882,8884,8887,8891,8894,8897,8904,8911,8912,8915,8917,8920,8925,8929,8937,8941,8942,8943,8945,8947,8948,8954,8957,8958,8959,8963,8964,8965,8966,8968,8969,8973,8981,8983,8986,8990,8992,8993,8994,8995,8996,9001,9004,9006,9008,9010,9020,9026,9036,9038,9039,9041,9049,9050,9056,9057,9058,9060,9061,9063,9071,9073,9075,9079,9082,9090,9092,9094,9098,9099,9102,9107,9108,9110,9117,9119,9120,9122,9125,9126,9131,9134,9137,9139,9140,9142,9143,9153,9155,9161,9166,9175,9176,9179,9182,9184,9185,9188,9189,9196,9198,9205,9210,9217,9218,9222,9223,9225,9226,9227,9233,9239,9240,9242,9246,9254,9261,9262,9268,9270,9285,9300,9307,9308,9313,9316,9318,9320,9321,9323,9324,9330,9336,9340,9346,9353,9354,9367,9381,9385,9389,9391,9394,9403,9404,9406,9408,9415,9425,9427,9431,9432,9433,9441,9442,9443,9444,9449,9450,9453,9454,9464,9477,9480,9483,9487,9488,9493,9499,9504,9513,9514,9523,9526,9535,9536,9537,9539,9543,9545,9547,9548,9549,9552,9554,9556,9558,9560,9561,9564,9565,9566,9572,9574,9575,9576,9579,9582,9587,9596,9597,9598,9600,9602,9603,9604,9606,9608,9611,9625,9628,9630,9631,9642,9643,9645,9649,9650,9651,9653,9654,9659,9662,9666,9667,9668,9669,9671,9672,9673,9674,9675,9676,9683,9685,9686,9690,9701,9704,9706,9707,9709,9715,9719,9720,9726,9730,9733,9735,9736,9741,9742,9747,9749,9756,9757,9758,9761,9763,9770,9771,9780,9789,9796,9803,9807,9808,9816,9817,9821,9822,9824,9826,9831,9834,9840,9844,9848,9851,9855,9857,9858,9863,9868,9873,9876,9877,9882,9894,9896,9898,9920,9921,9923,9927,9934,9939,9941,9943,9949,9950,9953,9966,9969,9970,9974,9975,9977,9980,9981,9990,9991,9992,9994,9996,10001,10003,10004,10005,10006,10007,10010,10011,10015,10016,10019,10022,10030,10032,10034,10038,10041,10049,10053,10057,10058,10059,10067,10069,10075,10080,10086,10092,10104,10107,10112,10116,10121,10126,10127,10128,10130,10134,10135,10138,10146,10149,10164,10167,10169,10171,10173,10176,10177,10178,10181,10182,10183,10187,10191,10192,10195,10196,10198,10201,10205,10209,10210,10215,10217,10220,10222,10227,10234,10241,10243,10246,10247,10248,10249,10250,10252,10264,10296,10297,10299,10300,10309,10329,10359,10361,10370,10394,10395,10425,10427,10430,10437,10446,10450,10451,10453,10485,10487,10514,10515,10516,10517,10519,10520,10524,10525,10526,10528,10530,10531,10532,10534,10583,10584,10586,10615,10618,10619,10620,10621,10622,10625,10629,10640,10643,10644,10645,10646,10647,10660,10662,10667,10681,10686,10688,10690,10691,10692,10694,10695,10696,10698,10699,10704,10705,10721,10722,10727,10728,10734,10736,10739,10740,10745,10746,10749,10750,10751,10752,10753,10754,10755,10756,10757,10762,10765,10766,10767,10788,10790,10804,10808,10816,10822,10823,10824,10840,10843,10850,10853,10855,10856,10868,10870,10871,10873,10874,10876,10880,10884,10891,10894,10898,10901,10913,10914,10917,10919,10921,10922,10923,10925,10928,10930,10936,10944,10946,10948,10955,10956,10960,10964,10973,10982,10986,10987,11007,11010,11018,11019,11020,11021,11078,11085,11087,11104,11107,11112,11119,11123,11127,11132,11147,11148,11162,11167,11168,11174,11176,11178,11180,11198,11207,11210,11211,11216,11219,11225,11227,11229,11233,11246,11248,11250,11252,11253,11254,11256,11270,11274,11276,11277,11278,11279,11282,11287,11291,11298,11303,11305,11307,11308,11312,11314,11315,11317,11321,11325,11332,11338,11344,11346,11347,11353,11354,11355,11357,11364,11366,11374,11376,11378,11382,11383,11386,11390,11392,11397,11399,11404,11405,11410,11418,11427,11428,11430,11435,11437,11440,11442,11448,11449,11450,11455,11457,11466,11469,11470,11472,11480,11482,11483,11488,11498,11499,11501,11503,11505,11506,11507,11511,11512,11514,11516,11518,11519,11529,11534,11540,11542,11548,11549,11554,11565,11573,11574,11575,11578,11579,11580,11584,11586,11588,11589,11591,11594,11596,11597,11598,11601,11602,11606,11614,11617,11619,11624,11628,11632,11634,11636,11637,11639,11643,11651,11655,11658,11660,11666,11670,11676,11678,11682,11683,11697,11700,11702,11705,11709,11710,11713,11714,11716,11717,11718,11719,11724,11727,11731,11735,11743,11747,11750,11751,11752,11753,11767,11769,11772,11775,11776,11779,11796,11797,11801,11803,11804,11805,11825,11832,11833,11835,11836,11837,11838,11843,11845,11852,11853,11855,11857,11864,11867,11870,11871,11878,11882,11886,11888,11889,11890,11892,11896,11897,11898,11910,11915,11916,11917,11920,11923,11931,11936,11937,11942,11945,11946,11960,11963,11966,11973,11977,11981,11984,11987,11988,11990,12000,12005,12006,12013,12016,12017,12019,12020,12023,12027,12028,12086,12088,12089,12090,12092,12095,12097,12100,12103,12104,12105,12109,12110,12112,12172,12179,12180,12182,12201,12202,12203,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12216,12219,12220,12221,12222,12223,12224,12225,12232,12236,12238,12239,12240,12242,12244,12245,12248,12250,12253,12254,12255,12258,12260,12261,12263,12266,12270,12272,12273,12274,12275,12276,12277,12278,12279,12280,12281,12282,12285,12286,12295,12296,12298,12299,12305,12342,12346,12347,12348,12351,12352,12354,12355,12361,12364,12368,12371,12372,12373,12375,12378,12380,12387,12391,12394,12395,12396,12397,12399,12409,12410,12417,12422,12426,12481,12483,12484,12485,12487,12490,12491,12493,12495,12496,12497,12498,12510,12511,12513,12516,12518,12524,12526,12529,12530,12531,12538,12539,12543,12546,12558,12577,12580,12589,12592,12598,12603,12604,12605,12610,12612,12613,12618,12619,12624,12651,12652,12653,12655,12659,12661,12662,12663,12667,12670,12674,12675,12677,12679,12684,12690,12691,12692,12696,12699,12701,12703,12707,12709,12721,12722,12730,12733,12736,12737,12741,12745,12748,12754,12755,12757,12760,12766,12767,12770,12773,12775,12776,12788,12795,12799,12802,12803,12806,12813,12814,12815,12816,12819,12826,12830,12832,12834,12850,12856,12862,12870,12872,12876,12877,12879,12881,12885,12888,12890,12893,12894,12898,12901,12902,12903,12908,12914,12915,12923,12925,12939,12941,12942,12943,12947,12950,12952,12955,12956,12957,12966,12971,12972,12973,12981,12984,12991,12992,12994,12995,13000,13001,13003,13014,13022,13023,13024,13027,13039,13047,13048,13054,13057,13076,13085,13093,13100,13104,13105,13106,13114,13116,13117,13123,13125,13128,13131,13150,13155,13166,13173,13174,13185,13187,13190,13192,13193,13199,13213,13214,13216,13221,13225,13233,13244,13254,13264,13267,13272,13280,13290,13291,13292,13293,13294,13306,13310,13319,13323,13326,13329,13330,13331,13341,13350,13351,13355,13364,13369,13371,13375,13393,13396,13406,13407,13411,13412,13426,13431,13434,13436,13437,13440,13443,13444,13445,13448,13471,13472,13478,13486,13487,13494,13502,13503,13504,13506,13508,13509,13513,13515,13516,13522,13524,13525,13532,13549,13558,13562,13565,13567,13568,13574,13587,13590,13595,13604,13605,13606,13607,13608,13610,13611,13616,13619,13629,13630,13632,13634,13640,13643,13656,13662,13667,13668,13671,13673,13674,13675,13678,13680,13693,13710,13713,13716,13722,13723,13725,13727,13729,13731,13732,13739,13743,13746,13752,13757,13761,13770,13771,13778,13779,13786,13788,13791,13794,13801,13805,13806,13808,13822,13856,13859,13860,13863,13870,13907,13908,13909,13913,13924,13925,13934,13948,13953,13961,13963,13972,13983,13992,13993,13996,14014,14017,14024,14034,14046,14057,14059,14067,14071,14073,14075,14082,14087,14096,14100,14105,14110,14112,14116,14117,14121,14124,14126,14130,14133,14134,14135,14139,14140,14141,14149,14161,14163,14166,14173,14174,14178,14180,14181,14184,14188,14195,14201,14205,14213,14214,14215,14224,14225,14227,14228,14229,14246,14257,14266,14268,14273,14286,14289,14294,14300,14306,14322,14335,14342,14343,14344,14346,14351,14353,14362,14374,14379,14380,14385,14392,14394,14401,14402,14404,14405,14407,14408,14420,14427,14432,14446,14458,14466,14473,14477,14489,14490,14493,14494,14495,14498,14499,14501,14508,14511,14513,14514,14520,14522,14525,14527,14530,14536,14537,14555,14561,14567,14578,14581,14587,14589,14599,14604,14605,14610,14662,14663,14669,14670,14672,14677,14693,14698,14700,14702,14705,14713,14715,14721,14725,14732,14733,14735,14740,14743,14744,14750,14753,14768,14771,14782,14791,14792,14802,14811,14818,14821,14822,14828,14831,14832,14836,14842,14851,14852,14863,14868,14893,14901,14902,14908,14922,14923,14926,14929,14931,14935,14939,14940,14949,14952,14958,14963,14966,14980,14981,14982,14988,14993,14996,15008,15014,15015,15016,15027,15028,15039,15040,15047,15059,15060,15070,15077,15079,15085,15087,15088,15089,15098,15104,15115,15117,15129,15136,15143,15155,15163,15168,15178,15183,15184,15206,15211,15212,15214,15216,15223,15227,15233,15237,15245,15266,15269,15274,15282,15297,15303,15313,15316,15317,15322,15323,15326,15345,15349,15359,15370,15374,15380,15398,15400,15401,15402,15428,15430,15443,15444,15467,15474,15483,15488,15517,15521,15523,15525,15526,15531,15540,15553,15561,15566,15578,15583,15584,15585,15586,15592,15606,15619,15630,15661,15662,15674,15698,15699,15701,15702,15705,15712,15713,15716,15718,15719,15727,15733,15738,15740,15746,15754,15765,15770,15772,15775,15779,15786,15788,15789,15793,15810,15815,15816,15820,15823,15829,15848,15856,15874,15877,15878,15892,15895,15908,15916,15917,15919,15920,15926,15927,15935,15941,15949,15950,15951,15970,15996,15997,15998,15999,16000,16001,16002,16008,16013,16014,16016,16018,16025,16032,16048,16050,16053,16055,16059,16076,16082,16083,16088,16089,16109,16112,16126,16131,16133,16134,16141,16146,16148,16149,16151,16162,16175,16180,16182,16183,16196,16207,16220,16225,16237,16241,16245,16246,16251,16254,16257,16258,16264,16267,16285,16290,16292,16293,16298,16300,16302,16304,16312,16315,16316,16318,16372,16375,16378,16415,16431,16433,16439,16445,16449,16455,16462,16464,16469,16470,16476,16480,16481,16482,16495,16505,16511,16513,16514,16517,16520,16524,16525,16532,16535,16545,16549,16564,16580,16594,16612,16613,16621,16624,16625,16630,16637,16658,16692,16696,16712,16721,16728,16732,16733,16745,16749,16758,16761,16766,16779,16786,16788,16799,16823,16824,16831,16836,16841,16846,16848,16856,16857,16859,16872,16873,16874,16883,16886,16896,16920,16921,16923,16925,16926,16929,16932,16939,16947,16952,16957,16958,16963,16978,16987,16993,16997,17000,17003,17007,17016,17020,17021,17024,17030,17042,17048,17057,17058,17097,17117,17120,17130,17137,17138,17148,17153,17157,17172,17174,17177,17178,17179,17191,17202,17205,17219,17244,17245,17250,17253,17258,17259,17263,17265,17269,17281,17294,17298,17300,17305,17315,17323,17325,17339,17340,17342,17343,17346,17357,17358,17364,17370,17373,17378,17379,17381,17382,17383,17384,17385,17387,17389,17390,17394,17395,17398,17402,17405,17412,17416,17419,17420,17422,17425,17426,17427,17430,17431,17432,17434,17437,17439,17447,17448,17452,17455,17457,17461,17468,17470,17471,17479,17491,17492,17493,17494,17498,17507,17523,17528,17534,17535,17539,17541,17563,17575,17577,17578,17579,17580,17583,17584,17585,17590,17591,17592,17597,17602,17605,17607,17608,17619,17620,17621,17642,17645,17660,17666,17669,17670,17678,17683,17687,17688,17691,17695,17704,17706,17707,17708,17737,17739,17745,17748,17752,17762,17765,17771,17773,17775,17780,17784,17786,17790,17793,17795,17799,17804,17818,17824,17825,17836,17841,17843,17852,17853,17860,17868,17874,17877,17885,17895,17896,17900,17903,17911,17912,17915,17918,17919,17931,17936,17937,17940,17941,17947,17953,17957,17959,17970,17973,17979,17982,17984,17986,17992,17996,17998,17999,18004,18005,18009,18020,18021,18024,18027,18031,18034,18035,18036,18038,18045,18046,18050,18055,18056,18063,18071,18076,18078,18084,18092,18094,18105,18109,18111,18113,18117,18119,18120,18122,18126,18147,18151,18163,18171,18173,18183,18184,18186,18193,18197,18199,18206,18208,18211,18218,18223,18228,18231,18234,18238,18244,18248,18250,18254,18258,18259,18274,18282,18294,18298,18306,18307,18309,18310,18313,18319,18332,18340,18348,18349,18350,18358,18360,18366,18372,18378,18384,18396,18397,18399,18402,18403,18407,18415,18419,18422,18435,18437,18441,18446,18447,18453,18455,18460,18475,18476,18477,18479,18487,18490,18491,18494,18505,18509,18510,18511,18516,18518,18535,18539,18540,18541,18544,18548,18551,18557,18567,18569,18582,18584,18589,18592,18593,18595,18596,18597,18598,18611,18612,18613,18614,18615,18616,18617,18618,18619,18620,18621,18622,18630,18633,18634,18635,18637,18641,18642,18648,18651,18653,18655,18660,18663,18664,18668,18673,18677,18679,18680,18685,18686,18690,18691,18694,18695,18698,18707,18710,18713,18714,18716,18719,18722,18724,18731,18732,18733,18737,18738,18740,18749,18750,18751,18755,18756,18758,18759,18764,18766,18773,18774,18776,18779,18781,18793,18795,18798,18799,18801,18802,18805,18809,18811,18813,18814,18815,18819,18821,18825,18827,18830,18864,18867,18869,18877,18878,18881,18882,18883,18885,18886,18887,18888,18889,18892,18906,18911,18913,18917,18928,18933,18941,18942,18943,18945,18947,18951,18954,18959,18960,18963,18970,18971,18980,18985,18990,19000,19001,19002,19003,19006,19011,19013,19016,19020,19021,19022,19025,19026,19027,19028,19031,19033,19034,19035,19039,19040,19041,19042,19043,19044,19053,19055,19056,19061,19064,19073,19080,19083,19090,19097,19102,19109,19111,19114,19118,19120,19126,19131,19134,19141,19144,19145,19147,19151,19153,19154,19156,19163,19169,19172,19177,19178,19179,19182,19185,19186,19187,19194,19196,19197,19203,19204,19206,19207,19208,19210,19211,19214,19215,19218,19223,19227,19230,19233,19237,19241,19245,19246,19251,19253,19261,19262,19263,19272,19273,19280,19283,19286,19291,19309,19316,19322,19323,19327,19330,19332,19334,19336,19341,19345,19348,19349,19350,19351,19352,19353,19355,19361,19362,19365,19366,19369,19373,19379,19383,19385,19392,19395,19398,19402,19404,19406,19407,19408,19418,19421,19425,19430,19432,19434,19435,19439,19440,19441,19442,19444,19447,19452,19457,19465,19473,19474,19475,19476,19478,19479,19484,19487,19491,19492,19493,19494,19498,19499,19500,19506,19507,19514,19523,19525,19526,19527,19529,19532,19534,19537,19539,19544,19549,19550,19551,19561,19562,19564,19566,19567,19569,19571,19572,19573,19575,19581,19582,19589,19592,19595,19597,19606,19612,19616,19619,19621,19624,19626,19628,19629,19630,19634,19636,19637,19639,19649,19652,19655,19657,19668,19674,19675,19677,19684,19686,19688,19694,19699,19701,19702,19704,19707,19711,19723,19725,19727,19728,19729,19732,19735,19740,19748,19752,19755,19758,19761,19762,19768,19771,19774,19780,19783,19785,19787,19793,19796,19799,19801,19802,19804,19809,19813,19814,19815,19822,19823,19824,19827,19834,19838,19843,19844,19845,19846,19848,19849,19851,19853,19859,19860,19863,19869,19871,19874,19879,19883,19885,19886,19891,19895,19903,19904,19905,19906,19907,19908,19909,19913,19918,19920,19922,19927,19933,19937,19940,19942,19945,19948,19950,19953,19958,19962,19963,19966,19971,19972,19973,19975,19976,19977,19979,19982,19983,19986,19991,19992,20002,20007,20009,20013,20015,20017,20022,20027,20028,20029,20032,20033,20038,20041,20050,20055,20061,20064,20065,20068,20070,20072,20075,20076,20082,20083,20089,20090,20091,20093,20098,20107,20112,20113,20114,20122,20124,20125,20132,20134,20141,20143,20146,20148,20156,20159,20163,20165,20169,20172,20174,20175,20179,20182,20192,20194,20207,20210,20212,20214,20217,20218,20219,20228,20229,20237,20238,20241,20243,20246,20249,20256,20257,20260,20262,20265,20266,20267,20274,20276,20277,20279,20283,20284,20291,20292,20301,20303,20305,20307,20308,20310,20312,20313,20314,20316,20317,20323,20326,20330,20333,20335,20340,20341,20349,20354,20371,20372,20387,20392,20398,20403,20404,20405,20409,20420,20426,20427,20428,20429,20433,20438,20439,20450,20451,20452,20456,20468,20469,20472,20474,20475,20477,20483,20485,20486,20489,20490,20491,20498,20511,20514,20518,20519,20520,20521,20522,20537,20539,20540,20543,20549,20550,20552,20553,20572,20577,20585,20588,20592,20599,20603,20604,20606,20609,20610,20615,20619,20621,20624,20625,20628,20635,20636,20637,20639,20640,20649,20651,20652,20662,20664,20670,20672,20673,20674,20677,20678,20679,20683,20696,20699,20710,20725,20728,20729,20730,20731,20732,20735,20736,20737,20738,20739,20740,20742,20744,20746,20748,20750,20752,20756,20757,20765,20767,20771,20778,20779,20782,20789,20790,20795,20796,20799,20803,20804,20808,20809,20813,20814,20816,20819,20823,20825,20830,20832,20834,20838,20847,20857,20859,20866,20870,20872,20873,20875,20876,20877,20879,20880,20884,20886,20888,20889,20891,20895,20896,20901,20904,20905,20912,20929,20933,20936,20942,20947,20948,20949,20963,20981,20991,21002,21006,21015,21018,21024,21025,21028,21029,21034,21035,21047,21049,21055,21062,21068,21069,21072,21081,21090,21092,21096,21104,21107,21110,21115,21116,21117,21118,21120,21126,21127,21128,21133,21135,21137,21139,21150,21154,21155,21160,21172,21173,21175,21180,21181,21182,21183,21187,21191,21193,21196,21198,21201,21210,21213,21217,21226,21235,21242,21246,21252,21254,21261,21263,21267,21269,21275,21278,21282,21286,21287,21288,21289,21291,21292,21294,21298,21299,21301,21308,21310,21318,21321,21323,21325,21326,21331,21338,21340,21351,21355,21362,21363,21366,21370,21379,21383,21384,21385,21388,21391,21392,21406,21409,21410,21418,21420,21433,21437,21440,21445,21450,21451,21458,21462,21465,21467,21470,21471,21472,21475,21476,21477,21479,21482,21484,21487,21489,21490,21496,21498,21500,21503,21504,21511,21514,21516,21517,21518,21521,21523,21525,21526,21527,21528,21541,21543,21545,21546,21552,21557,21558,21561,21566,21574,21578,21581,21582,21583,21586,21587,21591,21592,21593,21595,21597,21602,21605,21609,21614,21621,21629,21630,21631,21632,21633,21634,21637,21639,21643,21644,21645,21649,21650,21657,21671,21672,21673,21678,21680,21681,21686,21689,21691,21694,21696,21697,21698,21699,21703,21704,21705,21706,21707,21708,21709,21710,21713,21714,21716,21718,21721,21723,21724,21725,21726,21727,21728,21729,21730,21731,21732,21737,21739,21740,21742,21743,21745,21747,21752,21755,21756,21757,21964,21965,21966,21968,21970,21971,21972,21983,21989,21993,22001,22003,22004,22013,22027,22032,22038,22040,22041,22043,22044,22049,22058,22059,22067,22071,22077,22080,22082,22083,22087,22088,22092,22096,22105,22107,22112,22115,22120,22122,22123,22139,22145,22152,22155,22158,22165,22169,22173,22175,22182,22183,22191,22194,22198,22200,22204,22209,22214,22219,22220,22223,22230,22231,22234,22240,22241,22242,22246,22250,22251,22261,22265,22268,22269,22270,22280,22281,22286,22290,22296,22300,22303,22304,22306,22307,22313,22317,22327,22331,22349,22350,22354,22355,22359,22361,22362,22365,22366,22369,22372,22382,22388,22389,22390,22393,22396,22397,22399,22400,22406,22407,22415,22417,22421,22434,22442,22446,22450,22452,22454,22460,22464,22475,22479,22481,22493,22497,22498,22499,22502,22503,22510,22511,22514,22518,22519,22520,22521,22534,22536,22539,22541,22542,22543,22546,22549,22550,22552,22554,22563,22564,22565,22566,22567,22568,22571,22573,22574,22576,22579,22581,22582,22583,22586,22590,22591,22595,22598,22603,22604,22607,22610,22611,22612,22614,22621,22622,22627,22630,22635,22639,22640,22643,22645,22646,22647,22652,22653,22656,22666,22668,22669,22676,22677,22679,22680,22681,22684,22689,22690,22695,22697,22698,22707,22708,22712,22716,22719,22720,22723,22728,22738,22739,22743,22744,22756,22757,22759,22761,22764,22765,22768,22771,22772,22781,22785,22789,22790,22791,22793,22794,22797,22810,22816,22826,22830,22831,22838,22850,22852,22860,22864,22870,22871,22873,22874,22882,22895,22903,22905,22912,22914,22916,22923,22925,22934,22939,22948,22952,22957,22959,22973,22974,22976,22980,22983,22985,22986,22999,23004,23006,23007,23009,23010,23017,23020,23026,23034,23041,23061,23063,23064,23070,23072,23073,23076,23078,23084,23085,23089,23094,23098,23099,23100,23102,23108,23109,23110,23111,23115,23116,23127,23134]]],["+",[6220,4897,[[0,353,290,0,290,[[0,3,2,0,2],[1,11,8,2,10],[2,13,10,10,20],[3,9,6,20,26],[4,2,1,26,27],[5,16,10,27,37],[6,10,10,37,47],[7,12,9,47,56],[8,7,5,56,61],[9,5,5,61,66],[10,4,4,66,70],[11,8,3,70,73],[12,6,5,73,78],[13,5,4,78,82],[14,3,3,82,85],[15,6,5,85,90],[16,5,4,90,94],[17,7,7,94,101],[18,12,10,101,111],[19,3,3,111,114],[20,4,3,114,117],[21,2,2,117,119],[22,5,5,119,124],[23,20,16,124,140],[24,6,5,140,145],[25,7,7,145,152],[26,17,12,152,164],[27,8,6,164,170],[28,8,7,170,177],[29,3,3,177,180],[30,12,11,180,191],[31,5,3,191,194],[32,3,3,194,197],[33,2,2,197,199],[34,8,8,199,207],[35,8,7,207,214],[36,8,8,214,222],[37,5,5,222,227],[38,3,3,227,230],[39,5,3,230,233],[40,5,5,233,238],[41,8,6,238,244],[42,5,4,244,248],[43,8,7,248,255],[44,5,5,255,260],[45,4,4,260,264],[46,9,8,264,272],[47,9,8,272,280],[48,12,8,280,288],[49,2,2,288,290]]],[1,326,248,290,538,[[50,1,1,290,291],[51,6,6,291,297],[52,12,11,297,308],[53,7,5,308,313],[54,7,6,313,319],[55,11,9,319,328],[56,4,4,328,332],[57,15,8,332,340],[58,12,11,340,351],[59,8,7,351,358],[60,8,6,358,364],[61,20,14,364,378],[62,13,10,378,388],[63,14,8,388,396],[64,2,2,396,398],[65,5,4,398,402],[66,7,6,402,408],[67,11,9,408,417],[68,4,4,417,421],[69,7,4,421,425],[70,3,3,425,428],[71,4,4,428,432],[72,11,9,432,441],[73,4,3,441,444],[74,15,8,444,452],[75,9,6,452,458],[76,4,2,458,460],[77,8,5,460,465],[78,16,12,465,477],[79,7,7,477,484],[80,1,1,484,485],[81,18,14,485,499],[82,9,7,499,506],[83,8,8,506,514],[84,2,2,514,516],[85,7,7,516,523],[86,12,5,523,528],[87,4,3,528,531],[88,6,3,531,534],[89,4,4,534,538]]],[2,256,212,538,750,[[90,1,1,538,539],[91,9,6,539,545],[92,2,2,545,547],[93,17,13,547,560],[94,9,8,560,568],[95,11,10,568,578],[96,19,14,578,592],[97,8,8,592,600],[98,4,4,600,604],[99,8,7,604,611],[100,17,14,611,625],[101,1,1,625,626],[102,5,5,626,631],[103,13,12,631,643],[104,7,7,643,650],[105,16,12,650,662],[106,8,6,662,668],[107,6,5,668,673],[108,8,7,673,680],[109,10,7,680,687],[110,6,6,687,693],[111,10,8,693,701],[112,13,9,701,710],[113,6,5,710,715],[114,19,16,715,731],[115,5,4,731,735],[116,18,15,735,750]]],[3,354,306,750,1056,[[117,16,16,750,766],[118,1,1,766,767],[119,14,13,767,780],[120,11,11,780,791],[121,10,9,791,800],[122,6,4,800,804],[123,4,3,804,807],[124,9,7,807,814],[125,4,4,814,818],[126,5,5,818,823],[127,8,7,823,830],[128,6,6,830,836],[129,7,6,836,842],[130,7,7,842,849],[131,8,7,849,856],[132,18,16,856,872],[133,6,5,872,877],[134,11,7,877,884],[135,7,6,884,890],[136,7,7,890,897],[137,19,14,897,911],[138,14,11,911,922],[139,7,5,922,927],[140,11,8,927,935],[141,5,5,935,940],[142,5,4,940,944],[143,3,3,944,947],[144,2,2,947,949],[145,11,11,949,960],[146,2,2,960,962],[147,17,14,962,976],[148,13,10,976,986],[149,48,47,986,1033],[150,11,8,1033,1041],[151,11,8,1041,1049],[152,10,7,1049,1056]]],[4,304,234,1056,1290,[[153,5,5,1056,1061],[154,19,14,1061,1075],[155,7,6,1075,1081],[156,22,20,1081,1101],[157,12,9,1101,1110],[158,7,6,1110,1116],[159,16,11,1116,1127],[160,6,5,1127,1132],[161,18,13,1132,1145],[162,5,5,1145,1150],[163,4,4,1150,1154],[164,7,5,1154,1159],[165,10,5,1159,1164],[166,6,5,1164,1169],[167,11,8,1169,1177],[168,7,5,1177,1182],[169,5,5,1182,1187],[170,12,9,1187,1196],[171,5,5,1196,1201],[172,5,5,1201,1206],[173,3,3,1206,1209],[174,3,3,1209,1212],[175,11,8,1212,1220],[176,10,7,1220,1227],[177,7,5,1227,1232],[178,6,5,1232,1237],[180,21,16,1237,1253],[181,11,9,1253,1262],[182,5,4,1262,1266],[183,5,5,1266,1271],[184,14,9,1271,1280],[185,18,9,1280,1289],[186,1,1,1289,1290]]],[5,260,195,1290,1485,[[187,2,2,1290,1292],[188,14,11,1292,1303],[189,11,9,1303,1312],[190,11,7,1312,1319],[191,13,8,1319,1327],[192,6,5,1327,1332],[193,6,5,1332,1337],[194,16,13,1337,1350],[195,10,9,1350,1359],[196,9,8,1359,1367],[197,10,7,1367,1374],[198,6,6,1374,1380],[199,11,10,1380,1390],[200,4,4,1390,1394],[201,19,14,1394,1408],[202,7,5,1408,1413],[203,5,4,1413,1417],[204,8,6,1417,1423],[205,10,8,1423,1431],[206,7,4,1431,1435],[207,36,22,1435,1457],[208,14,9,1457,1466],[209,12,8,1466,1474],[210,13,11,1474,1485]]],[6,230,170,1485,1655,[[211,8,5,1485,1490],[212,14,9,1490,1499],[213,6,6,1499,1505],[214,8,5,1505,1510],[215,10,7,1510,1517],[216,15,11,1517,1528],[217,6,5,1528,1533],[218,12,10,1533,1543],[219,13,9,1543,1552],[220,3,3,1552,1555],[221,23,18,1555,1573],[222,3,3,1573,1576],[223,9,7,1576,1583],[224,11,8,1583,1591],[225,6,6,1591,1597],[226,10,8,1597,1605],[227,10,7,1605,1612],[228,13,7,1612,1619],[229,10,7,1619,1626],[230,18,13,1626,1639],[231,22,16,1639,1655]]],[7,27,24,1655,1679,[[232,8,7,1655,1662],[233,11,11,1662,1673],[235,8,6,1673,1679]]],[8,272,218,1679,1897,[[236,11,9,1679,1688],[237,9,8,1688,1696],[238,4,4,1696,1700],[239,9,8,1700,1708],[240,4,4,1708,1712],[241,7,5,1712,1717],[242,10,6,1717,1723],[243,5,4,1723,1727],[244,11,7,1727,1734],[245,15,11,1734,1745],[246,1,1,1745,1746],[247,11,9,1746,1755],[248,4,4,1755,1759],[249,16,12,1759,1771],[250,18,12,1771,1783],[251,5,4,1783,1787],[252,24,18,1787,1805],[253,12,9,1805,1814],[254,2,2,1814,1816],[255,15,14,1816,1830],[256,5,5,1830,1835],[257,4,3,1835,1838],[258,11,6,1838,1844],[259,7,7,1844,1851],[260,18,16,1851,1867],[261,7,6,1867,1873],[262,2,2,1873,1875],[263,6,6,1875,1881],[264,3,3,1881,1884],[265,12,9,1884,1893],[266,4,4,1893,1897]]],[9,231,172,1897,2069,[[267,11,8,1897,1905],[268,15,11,1905,1916],[269,16,10,1916,1926],[270,6,5,1926,1931],[271,4,3,1931,1934],[272,10,8,1934,1942],[273,14,10,1942,1952],[274,11,5,1952,1957],[275,3,2,1957,1959],[276,9,5,1959,1964],[277,12,10,1964,1974],[278,9,7,1974,1981],[279,12,10,1981,1991],[280,9,8,1991,1999],[281,10,9,1999,2008],[282,6,4,2008,2012],[283,6,4,2012,2016],[284,4,4,2016,2020],[285,10,7,2020,2027],[286,6,5,2027,2032],[287,8,6,2032,2038],[288,21,15,2038,2053],[289,12,10,2053,2063],[290,7,6,2063,2069]]],[10,226,176,2069,2245,[[291,10,9,2069,2078],[292,13,12,2078,2090],[293,3,3,2090,2093],[294,14,7,2093,2100],[295,4,4,2100,2104],[296,11,8,2104,2112],[297,28,18,2112,2130],[298,24,18,2130,2148],[299,11,10,2148,2158],[300,14,8,2158,2166],[301,13,12,2166,2178],[302,13,9,2178,2187],[303,6,5,2187,2192],[304,11,10,2192,2202],[305,4,4,2202,2206],[306,4,4,2206,2210],[307,6,6,2210,2216],[308,6,5,2216,2221],[309,6,5,2221,2226],[310,11,9,2226,2235],[311,6,4,2235,2239],[312,8,6,2239,2245]]],[11,228,190,2245,2435,[[313,5,5,2245,2250],[314,14,11,2250,2261],[315,8,7,2261,2268],[316,9,8,2268,2276],[317,18,15,2276,2291],[318,9,9,2291,2300],[319,5,4,2300,2304],[320,10,8,2304,2312],[321,7,7,2312,2319],[322,8,8,2319,2327],[323,5,4,2327,2331],[324,5,5,2331,2336],[325,6,5,2336,2341],[326,4,3,2341,2344],[327,7,7,2344,2351],[328,12,8,2351,2359],[329,24,16,2359,2375],[330,10,9,2375,2384],[331,8,6,2384,2390],[332,6,4,2390,2394],[333,6,6,2394,2400],[334,3,3,2400,2403],[335,18,15,2403,2418],[336,9,7,2418,2425],[337,12,10,2425,2435]]],[12,137,111,2435,2546,[[338,5,5,2435,2440],[339,4,4,2440,2444],[340,1,1,2444,2445],[341,1,1,2445,2446],[342,3,3,2446,2449],[343,26,15,2449,2464],[345,2,2,2464,2466],[346,2,2,2466,2468],[347,1,1,2468,2469],[348,10,9,2469,2478],[349,11,10,2478,2488],[350,3,3,2488,2491],[351,3,2,2491,2493],[352,1,1,2493,2494],[353,8,7,2494,2501],[354,10,7,2501,2508],[355,9,3,2508,2511],[356,8,7,2511,2518],[357,2,2,2518,2520],[358,6,6,2520,2526],[359,3,2,2526,2528],[360,4,4,2528,2532],[361,1,1,2532,2533],[363,2,2,2533,2535],[364,2,2,2535,2537],[365,3,3,2537,2540],[366,6,6,2540,2546]]],[13,224,181,2546,2727,[[367,4,4,2546,2550],[368,2,2,2550,2552],[369,3,2,2552,2554],[370,10,6,2554,2560],[371,5,5,2560,2565],[372,9,7,2565,2572],[373,6,5,2572,2577],[374,4,4,2577,2581],[375,11,8,2581,2589],[376,7,4,2589,2593],[377,7,6,2593,2599],[378,4,4,2599,2603],[379,5,4,2603,2607],[380,4,4,2607,2611],[381,9,6,2611,2617],[382,5,5,2617,2622],[383,2,2,2622,2624],[384,4,4,2624,2628],[385,4,4,2628,2632],[386,12,10,2632,2642],[387,6,5,2642,2647],[388,3,2,2647,2649],[389,5,4,2649,2653],[390,7,5,2653,2658],[391,14,12,2658,2670],[392,6,6,2670,2676],[394,4,4,2676,2680],[395,2,2,2680,2682],[396,11,8,2682,2690],[397,6,5,2690,2695],[398,18,10,2695,2705],[399,7,7,2705,2712],[400,7,5,2712,2717],[401,6,6,2717,2723],[402,5,4,2723,2727]]],[14,83,71,2727,2798,[[403,5,5,2727,2732],[404,8,6,2732,2738],[405,6,5,2738,2743],[406,1,1,2743,2744],[408,2,1,2744,2745],[409,4,4,2745,2749],[410,27,22,2749,2771],[411,8,8,2771,2779],[412,22,19,2779,2798]]],[15,89,74,2798,2872,[[413,3,2,2798,2800],[415,8,7,2800,2807],[416,9,8,2807,2815],[417,7,5,2815,2820],[418,2,2,2820,2822],[419,9,8,2822,2830],[420,4,4,2830,2834],[421,14,12,2834,2846],[422,2,2,2846,2848],[423,11,8,2848,2856],[424,12,9,2856,2865],[425,8,7,2865,2872]]],[16,45,37,2872,2909,[[426,5,5,2872,2877],[427,7,6,2877,2883],[428,6,5,2883,2888],[429,6,6,2888,2894],[431,4,4,2894,2898],[432,6,3,2898,2901],[433,5,5,2901,2906],[434,6,3,2906,2909]]],[17,213,181,2909,3090,[[436,10,8,2909,2917],[437,9,6,2917,2923],[438,6,5,2923,2928],[439,8,5,2928,2933],[440,12,8,2933,2941],[441,8,7,2941,2948],[442,3,3,2948,2951],[443,3,3,2951,2954],[444,2,2,2954,2956],[445,5,5,2956,2961],[446,6,6,2961,2967],[448,2,2,2967,2969],[449,5,5,2969,2974],[450,3,3,2974,2977],[451,1,1,2977,2978],[452,3,3,2978,2981],[453,7,5,2981,2986],[454,5,5,2986,2991],[455,7,5,2991,2996],[456,2,2,2996,2998],[457,4,4,2998,3002],[458,5,4,3002,3006],[459,7,6,3006,3012],[461,2,2,3012,3014],[462,5,5,3014,3019],[463,11,9,3019,3028],[464,1,1,3028,3029],[465,4,4,3029,3033],[466,12,9,3033,3042],[467,5,4,3042,3046],[468,8,8,3046,3054],[469,6,4,3054,3058],[470,8,6,3058,3064],[471,6,6,3064,3070],[472,7,7,3070,3077],[473,4,4,3077,3081],[474,5,4,3081,3085],[476,5,4,3085,3089],[477,1,1,3089,3090]]],[18,431,344,3090,3434,[[480,2,2,3090,3092],[481,1,1,3092,3093],[482,1,1,3093,3094],[483,1,1,3094,3095],[484,1,1,3095,3096],[485,2,2,3096,3098],[486,3,2,3098,3100],[487,2,2,3100,3102],[489,3,2,3102,3104],[491,2,2,3104,3106],[493,2,2,3106,3108],[494,7,5,3108,3113],[495,15,11,3113,3124],[496,9,5,3124,3129],[497,3,2,3129,3131],[498,2,1,3131,3132],[499,10,7,3132,3139],[501,2,1,3139,3140],[502,4,4,3140,3144],[504,3,2,3144,3146],[505,1,1,3146,3147],[507,1,1,3147,3148],[508,9,7,3148,3155],[509,1,1,3155,3156],[510,4,4,3156,3160],[511,9,8,3160,3168],[512,4,2,3168,3170],[513,1,1,3170,3171],[514,5,5,3171,3176],[515,7,5,3176,3181],[516,6,5,3181,3186],[517,4,3,3186,3189],[518,1,1,3189,3190],[519,2,1,3190,3191],[520,2,1,3191,3192],[521,3,2,3192,3194],[522,3,3,3194,3197],[526,2,2,3197,3199],[527,5,4,3199,3203],[528,6,5,3203,3208],[529,4,2,3208,3210],[530,2,2,3210,3212],[531,1,1,3212,3213],[532,7,5,3213,3218],[533,2,1,3218,3219],[534,1,1,3219,3220],[535,2,1,3220,3221],[536,6,3,3221,3224],[537,2,2,3224,3226],[538,2,2,3226,3228],[539,2,2,3228,3230],[540,1,1,3230,3231],[541,3,2,3231,3233],[542,1,1,3233,3234],[543,1,1,3234,3235],[545,11,8,3235,3243],[546,8,6,3243,3249],[548,7,5,3249,3254],[549,6,4,3254,3258],[550,3,3,3258,3261],[551,2,2,3261,3263],[552,4,2,3263,3265],[553,3,3,3265,3268],[554,2,2,3268,3270],[555,9,9,3270,3279],[557,4,4,3279,3283],[558,5,3,3283,3286],[559,1,1,3286,3287],[560,1,1,3287,3288],[561,3,2,3288,3290],[562,3,2,3290,3292],[563,1,1,3292,3293],[564,1,1,3293,3294],[565,2,2,3294,3296],[566,5,5,3296,3301],[567,1,1,3301,3302],[568,8,4,3302,3306],[570,3,2,3306,3308],[571,2,2,3308,3310],[573,2,2,3310,3312],[574,3,2,3312,3314],[578,1,1,3314,3315],[579,5,4,3315,3319],[580,3,3,3319,3322],[581,5,4,3322,3326],[582,3,2,3326,3328],[583,3,2,3328,3330],[584,17,12,3330,3342],[585,2,2,3342,3344],[586,6,5,3344,3349],[587,3,3,3349,3352],[589,1,1,3352,3353],[590,4,3,3353,3356],[591,4,2,3356,3358],[592,1,1,3358,3359],[593,2,1,3359,3360],[595,4,4,3360,3364],[596,31,29,3364,3393],[597,2,1,3393,3394],[598,4,4,3394,3398],[601,1,1,3398,3399],[602,1,1,3399,3400],[605,1,1,3400,3401],[606,2,2,3401,3403],[607,3,3,3403,3406],[608,1,1,3406,3407],[609,1,1,3407,3408],[611,1,1,3408,3409],[612,5,4,3409,3413],[613,2,2,3413,3415],[614,1,1,3415,3416],[615,1,1,3416,3417],[616,4,3,3417,3420],[617,4,2,3420,3422],[618,1,1,3422,3423],[619,3,3,3423,3426],[620,3,3,3426,3429],[621,6,4,3429,3433],[625,1,1,3433,3434]]],[19,144,123,3434,3557,[[628,4,3,3434,3437],[629,6,4,3437,3441],[630,11,8,3441,3449],[631,5,5,3449,3454],[632,6,5,3454,3459],[633,5,3,3459,3462],[634,3,2,3462,3464],[635,11,7,3464,3471],[637,1,1,3471,3472],[638,3,3,3472,3475],[639,5,5,3475,3480],[640,4,4,3480,3484],[641,5,4,3484,3488],[642,4,4,3488,3492],[643,10,8,3492,3500],[644,4,4,3500,3504],[645,4,4,3504,3508],[646,5,5,3508,3513],[647,4,4,3513,3517],[648,6,6,3517,3523],[649,5,3,3523,3526],[650,2,2,3526,3528],[651,1,1,3528,3529],[652,5,5,3529,3534],[653,2,2,3534,3536],[654,6,6,3536,3542],[655,3,3,3542,3545],[656,2,2,3545,3547],[657,7,5,3547,3552],[658,5,5,3552,3557]]],[20,59,49,3557,3606,[[659,2,2,3557,3559],[660,8,5,3559,3564],[661,5,4,3564,3568],[662,8,7,3568,3575],[663,4,4,3575,3579],[664,3,3,3579,3582],[665,13,10,3582,3592],[666,4,4,3592,3596],[667,3,3,3596,3599],[668,4,3,3599,3602],[669,2,1,3602,3603],[670,3,3,3603,3606]]],[21,28,17,3606,3623,[[671,3,2,3606,3608],[673,4,4,3608,3612],[674,13,5,3612,3617],[675,4,3,3617,3620],[676,2,2,3620,3622],[678,2,1,3622,3623]]],[22,419,286,3623,3909,[[679,7,5,3623,3628],[680,11,6,3628,3634],[681,2,1,3634,3635],[682,4,2,3635,3637],[683,5,4,3637,3641],[684,5,4,3641,3645],[685,7,6,3645,3651],[686,3,3,3651,3654],[687,4,3,3654,3657],[688,9,6,3657,3663],[689,13,4,3663,3667],[690,1,1,3667,3668],[691,6,4,3668,3672],[692,12,9,3672,3681],[694,3,3,3681,3684],[695,5,4,3684,3688],[696,2,2,3688,3690],[697,6,6,3690,3696],[698,4,3,3696,3699],[699,12,5,3699,3704],[700,6,4,3704,3708],[701,7,4,3708,3712],[702,7,5,3712,3717],[703,7,4,3717,3721],[704,2,2,3721,3723],[705,1,1,3723,3724],[706,6,5,3724,3729],[707,8,4,3729,3733],[708,9,7,3733,3740],[709,5,3,3740,3743],[710,1,1,3743,3744],[711,6,3,3744,3747],[712,11,6,3747,3753],[714,6,5,3753,3758],[715,8,6,3758,3764],[716,7,6,3764,3770],[717,4,2,3770,3772],[718,8,6,3772,3778],[719,11,7,3778,3785],[720,6,5,3785,3790],[721,8,5,3790,3795],[722,9,7,3795,3802],[723,7,4,3802,3806],[724,9,6,3806,3812],[725,4,4,3812,3816],[726,16,12,3816,3828],[727,12,7,3828,3835],[728,5,4,3835,3839],[729,11,9,3839,3848],[730,5,3,3848,3851],[731,8,4,3851,3855],[732,9,6,3855,3861],[733,4,2,3861,3863],[734,7,5,3863,3868],[735,6,6,3868,3874],[736,5,3,3874,3877],[737,14,8,3877,3885],[738,3,3,3885,3888],[740,1,1,3888,3889],[741,11,8,3889,3897],[742,4,4,3897,3901],[743,7,4,3901,3905],[744,7,4,3905,3909]]],[23,488,382,3909,4291,[[745,5,5,3909,3914],[746,9,7,3914,3921],[747,12,11,3921,3932],[748,17,13,3932,3945],[749,6,4,3945,3949],[750,10,6,3949,3955],[751,11,10,3955,3965],[752,7,5,3965,3970],[753,12,10,3970,3980],[754,14,10,3980,3990],[755,7,6,3990,3996],[756,7,5,3996,4001],[757,6,5,4001,4006],[758,1,1,4006,4007],[759,9,8,4007,4015],[760,12,8,4015,4023],[761,9,7,4023,4030],[762,9,7,4030,4037],[763,4,3,4037,4040],[764,6,6,4040,4046],[765,5,4,4046,4050],[766,8,8,4050,4058],[767,16,12,4058,4070],[768,5,5,4070,4075],[769,17,12,4075,4087],[770,8,7,4087,4094],[771,4,4,4094,4098],[772,6,6,4098,4104],[773,9,6,4104,4110],[774,7,6,4110,4116],[775,16,12,4116,4128],[776,11,10,4128,4138],[777,13,8,4138,4146],[778,11,8,4146,4154],[779,5,4,4154,4158],[780,16,13,4158,4171],[781,9,6,4171,4177],[782,7,7,4177,4184],[783,2,2,4184,4186],[784,5,4,4186,4190],[785,10,6,4190,4196],[786,10,7,4196,4203],[787,3,3,4203,4206],[788,11,9,4206,4215],[789,1,1,4215,4216],[790,10,8,4216,4224],[791,4,2,4224,4226],[792,21,14,4226,4240],[793,11,10,4240,4250],[794,17,11,4250,4261],[795,24,18,4261,4279],[796,13,12,4279,4291]]],[24,38,33,4291,4324,[[797,7,6,4291,4297],[798,6,6,4297,4303],[799,10,10,4303,4313],[800,10,7,4313,4320],[801,5,4,4320,4324]]],[25,413,309,4324,4633,[[802,14,11,4324,4335],[803,3,1,4335,4336],[804,11,7,4336,4343],[805,4,4,4343,4347],[806,1,1,4347,4348],[807,2,2,4348,4350],[808,8,5,4350,4355],[809,7,6,4355,4361],[810,3,3,4361,4364],[811,10,8,4364,4372],[812,8,7,4372,4379],[813,6,3,4379,4382],[814,5,5,4382,4387],[815,13,9,4387,4396],[816,1,1,4396,4397],[817,16,15,4397,4412],[818,6,5,4412,4417],[819,12,11,4417,4428],[820,6,6,4428,4434],[821,7,7,4434,4441],[822,5,4,4441,4445],[823,1,1,4445,4446],[824,12,9,4446,4455],[825,1,1,4455,4456],[826,4,2,4456,4458],[827,8,7,4458,4465],[828,13,10,4465,4475],[829,9,7,4475,4482],[830,4,4,4482,4486],[831,5,4,4486,4490],[832,4,3,4490,4493],[833,7,7,4493,4500],[834,16,13,4500,4513],[835,7,5,4513,4518],[836,1,1,4518,4519],[837,12,11,4519,4530],[838,6,5,4530,4535],[839,8,4,4535,4539],[840,7,6,4539,4545],[841,36,20,4545,4565],[842,12,7,4565,4572],[843,8,4,4572,4576],[844,12,10,4576,4586],[845,8,5,4586,4591],[846,13,7,4591,4598],[847,9,5,4598,4603],[848,16,7,4603,4610],[849,26,23,4610,4633]]],[26,35,30,4633,4663,[[850,11,8,4633,4641],[857,4,4,4641,4645],[858,6,5,4645,4650],[859,1,1,4650,4651],[860,8,7,4651,4658],[861,5,5,4658,4663]]],[27,48,38,4663,4701,[[862,1,1,4663,4664],[863,7,5,4664,4669],[865,4,3,4669,4672],[866,1,1,4672,4673],[867,3,3,4673,4676],[868,4,3,4676,4679],[869,2,2,4679,4681],[870,7,5,4681,4686],[871,3,3,4686,4689],[872,6,5,4689,4694],[873,2,2,4694,4696],[874,8,5,4696,4701]]],[28,16,14,4701,4715,[[876,5,5,4701,4706],[877,5,4,4706,4710],[878,6,5,4710,4715]]],[29,44,30,4715,4745,[[879,7,4,4715,4719],[880,8,5,4719,4724],[881,4,4,4724,4728],[882,1,1,4728,4729],[883,3,3,4729,4732],[884,5,3,4732,4735],[885,3,3,4735,4738],[886,2,1,4738,4739],[887,11,6,4739,4745]]],[30,8,6,4745,4751,[[888,8,6,4745,4751]]],[31,27,22,4751,4773,[[889,9,7,4751,4758],[890,5,4,4758,4762],[891,7,6,4762,4768],[892,6,5,4768,4773]]],[32,40,31,4773,4804,[[893,5,5,4773,4778],[894,6,4,4778,4782],[895,5,3,4782,4785],[896,7,4,4785,4789],[897,7,6,4789,4795],[898,2,1,4795,4796],[899,8,8,4796,4804]]],[33,13,11,4804,4815,[[900,4,3,4804,4807],[901,3,3,4807,4810],[902,6,5,4810,4815]]],[34,18,14,4815,4829,[[903,5,3,4815,4818],[904,8,7,4818,4825],[905,5,4,4825,4829]]],[35,15,11,4829,4840,[[906,6,5,4829,4834],[907,2,2,4834,4836],[908,7,4,4836,4840]]],[36,6,6,4840,4846,[[909,2,2,4840,4842],[910,4,4,4842,4846]]],[37,58,39,4846,4885,[[911,2,2,4846,4848],[912,4,3,4848,4851],[913,3,2,4851,4853],[914,3,3,4853,4856],[915,2,1,4856,4857],[916,8,4,4857,4861],[917,5,3,4861,4864],[918,5,4,4864,4868],[919,10,5,4868,4873],[920,3,2,4873,4875],[921,2,2,4875,4877],[923,2,2,4877,4879],[924,9,6,4879,4885]]],[38,14,12,4885,4897,[[925,5,5,4885,4890],[926,6,5,4890,4895],[927,3,2,4895,4897]]]],[6,8,32,33,38,40,46,47,51,53,56,57,58,61,63,66,69,77,78,79,82,83,90,92,93,95,134,139,141,144,150,151,153,154,156,157,158,161,162,163,166,174,175,176,179,181,182,186,189,190,191,194,196,200,203,204,210,215,216,224,229,239,248,253,264,266,268,274,275,297,299,302,306,319,321,327,329,332,351,353,356,359,364,367,378,383,384,387,389,391,409,411,419,424,426,427,438,440,441,446,449,461,468,473,481,483,486,487,489,491,493,496,501,508,529,534,543,551,556,574,575,577,579,591,594,596,598,599,601,602,608,618,628,631,632,634,637,641,653,655,664,668,676,678,681,693,708,709,714,715,718,723,728,736,746,752,755,757,758,760,766,767,772,773,774,775,779,783,784,789,798,799,803,805,814,825,830,839,844,862,874,889,897,902,904,906,908,910,912,913,922,938,939,940,970,978,979,999,1006,1012,1018,1019,1020,1022,1024,1027,1032,1042,1046,1047,1073,1074,1076,1077,1086,1087,1097,1100,1101,1104,1105,1108,1120,1133,1138,1139,1143,1150,1154,1160,1187,1189,1191,1196,1226,1227,1237,1241,1254,1255,1259,1267,1276,1278,1292,1299,1301,1324,1331,1332,1333,1341,1352,1353,1356,1359,1361,1377,1381,1383,1389,1391,1412,1420,1421,1422,1430,1433,1435,1441,1442,1450,1458,1461,1463,1464,1466,1467,1468,1473,1482,1483,1485,1493,1497,1498,1503,1505,1519,1531,1544,1555,1558,1560,1565,1569,1573,1581,1583,1584,1585,1586,1587,1589,1590,1591,1596,1601,1604,1608,1610,1611,1627,1636,1637,1643,1651,1652,1655,1656,1661,1662,1664,1666,1668,1680,1681,1682,1687,1689,1690,1709,1718,1719,1721,1722,1734,1739,1740,1741,1746,1748,1749,1753,1760,1762,1766,1767,1770,1772,1775,1780,1783,1788,1794,1795,1800,1805,1807,1808,1811,1813,1814,1816,1820,1828,1831,1833,1835,1838,1845,1847,1851,1853,1855,1857,1858,1867,1870,1875,1876,1877,1881,1882,1883,1885,1886,1887,1894,1900,1901,1908,1911,1914,1918,1919,1942,1943,1948,1953,1976,1979,1984,1986,1988,1995,1997,1999,2000,2003,2008,2009,2010,2012,2020,2021,2024,2027,2028,2031,2044,2053,2055,2069,2072,2091,2106,2113,2117,2120,2125,2127,2149,2151,2159,2165,2169,2172,2173,2174,2175,2178,2186,2193,2197,2198,2206,2213,2214,2216,2217,2227,2239,2248,2249,2259,2268,2270,2277,2293,2294,2303,2320,2321,2335,2348,2350,2356,2357,2359,2361,2362,2363,2364,2366,2370,2382,2386,2392,2396,2397,2398,2415,2420,2434,2439,2442,2444,2445,2446,2449,2450,2453,2457,2461,2465,2468,2470,2471,2474,2478,2479,2480,2484,2488,2489,2507,2511,2512,2514,2520,2525,2526,2529,2536,2551,2569,2570,2571,2572,2577,2585,2595,2606,2611,2612,2622,2631,2637,2648,2659,2684,2685,2695,2726,2727,2729,2743,2746,2764,2765,2770,2772,2775,2778,2781,2787,2797,2800,2805,2807,2808,2811,2816,2817,2821,2822,2825,2829,2830,2834,2835,2836,2838,2839,2840,2843,2847,2852,2854,2856,2860,2864,2866,2867,2871,2876,2879,2893,2895,2896,2897,2899,2900,2904,2906,2908,2911,2912,2913,2914,2915,2929,2934,2940,2943,2945,2946,2947,2950,2964,2970,2975,2977,2979,2981,2982,2984,2989,2990,2991,2999,3001,3005,3006,3007,3008,3018,3022,3029,3031,3032,3035,3037,3042,3051,3054,3055,3064,3093,3098,3114,3119,3125,3126,3128,3130,3136,3141,3151,3152,3156,3164,3170,3171,3181,3183,3196,3198,3199,3203,3206,3213,3215,3216,3217,3219,3220,3221,3228,3231,3235,3238,3239,3243,3244,3245,3248,3272,3275,3277,3280,3281,3287,3289,3295,3303,3313,3315,3317,3320,3321,3322,3323,3324,3336,3341,3352,3355,3359,3362,3366,3367,3371,3372,3373,3382,3387,3394,3396,3402,3413,3417,3418,3419,3431,3432,3434,3440,3445,3449,3454,3455,3460,3469,3483,3484,3486,3494,3505,3507,3510,3511,3512,3513,3514,3517,3518,3519,3520,3524,3534,3537,3561,3569,3573,3575,3576,3577,3578,3579,3581,3586,3587,3588,3592,3594,3598,3600,3601,3605,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3660,3701,3704,3705,3707,3714,3720,3726,3731,3732,3735,3738,3741,3742,3745,3746,3749,3761,3766,3768,3773,3778,3782,3786,3790,3795,3796,3798,3800,3805,3811,3812,3817,3823,3826,3827,3834,3844,3855,3934,3939,3945,3950,3953,3955,3958,3963,3964,3966,3978,3982,3986,3997,3999,4000,4021,4023,4037,4040,4044,4048,4052,4055,4059,4062,4069,4071,4073,4074,4075,4078,4095,4096,4098,4099,4100,4117,4121,4124,4127,4137,4151,4152,4172,4174,4177,4183,4188,4189,4194,4196,4203,4207,4215,4218,4220,4221,4222,4227,4229,4231,4234,4235,4239,4240,4243,4246,4249,4252,4253,4254,4263,4264,4266,4273,4283,4285,4286,4292,4293,4298,4302,4306,4309,4316,4317,4320,4325,4327,4332,4333,4344,4345,4346,4347,4351,4352,4353,4356,4358,4359,4360,4364,4366,4368,4376,4378,4380,4381,4386,4390,4391,4399,4405,4408,4416,4423,4425,4429,4438,4443,4453,4454,4457,4459,4463,4465,4469,4470,4475,4477,4478,4479,4482,4491,4493,4551,4553,4558,4565,4574,4600,4608,4614,4619,4624,4627,4630,4633,4636,4639,4642,4646,4647,4650,4662,4666,4667,4669,4677,4678,4683,4692,4693,4694,4706,4711,4715,4716,4718,4725,4726,4729,4733,4735,4737,4739,4740,4742,4750,4761,4763,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4801,4802,4803,4804,4805,4806,4807,4808,4809,4812,4815,4819,4820,4821,4824,4826,4827,4831,4834,4847,4849,4850,4853,4857,4859,4870,4872,4880,4882,4883,4886,4887,4888,4891,4894,4909,4911,4917,4919,4943,4944,4946,4947,4950,4952,4953,4954,4957,4959,4960,4961,4963,4964,4979,4980,4983,4986,4987,4992,5007,5013,5016,5019,5022,5024,5030,5033,5036,5037,5038,5039,5040,5041,5042,5043,5046,5049,5050,5052,5057,5058,5059,5061,5068,5075,5076,5077,5079,5098,5100,5101,5105,5107,5109,5112,5115,5117,5118,5119,5125,5130,5131,5132,5133,5135,5141,5146,5151,5152,5157,5161,5162,5164,5167,5168,5169,5171,5174,5176,5180,5181,5183,5185,5190,5192,5193,5198,5201,5218,5220,5225,5231,5245,5250,5261,5269,5270,5277,5279,5282,5285,5289,5292,5297,5298,5299,5318,5320,5326,5330,5331,5332,5333,5335,5337,5343,5345,5348,5351,5355,5371,5376,5379,5382,5384,5387,5389,5390,5392,5396,5399,5400,5402,5403,5410,5412,5418,5419,5425,5428,5430,5442,5443,5446,5456,5460,5468,5491,5492,5494,5504,5509,5510,5512,5514,5515,5517,5521,5526,5527,5528,5532,5534,5539,5543,5553,5556,5558,5564,5566,5568,5570,5574,5579,5581,5625,5631,5632,5642,5645,5646,5658,5660,5666,5667,5668,5671,5674,5675,5677,5678,5680,5684,5690,5697,5699,5700,5701,5704,5707,5711,5712,5713,5721,5731,5734,5738,5749,5754,5771,5775,5777,5783,5784,5790,5797,5800,5810,5812,5813,5817,5823,5824,5825,5826,5834,5837,5840,5855,5859,5871,5873,5878,5879,5880,5882,5886,5888,5889,5892,5893,5894,5895,5896,5897,5903,5905,5906,5907,5909,5912,5913,5914,5917,5918,5928,5933,5935,5938,5939,5940,5943,5945,5946,5949,5950,5959,5970,5971,5972,5978,5988,5989,5999,6002,6004,6006,6009,6011,6013,6014,6015,6016,6021,6024,6027,6035,6037,6043,6045,6046,6049,6050,6051,6053,6061,6063,6070,6075,6091,6093,6095,6098,6100,6105,6109,6110,6113,6122,6127,6128,6130,6131,6132,6133,6134,6137,6139,6158,6159,6160,6163,6166,6170,6180,6181,6184,6186,6190,6194,6197,6202,6203,6204,6205,6207,6208,6209,6210,6211,6212,6216,6217,6220,6223,6248,6266,6267,6271,6272,6273,6280,6282,6284,6285,6298,6300,6305,6306,6308,6310,6330,6333,6334,6335,6350,6354,6355,6372,6375,6376,6378,6380,6384,6385,6386,6387,6388,6390,6391,6397,6398,6401,6404,6406,6408,6409,6411,6413,6415,6417,6419,6421,6425,6426,6435,6442,6444,6445,6449,6450,6455,6457,6458,6461,6463,6465,6469,6473,6474,6475,6476,6478,6479,6482,6484,6486,6488,6492,6493,6494,6506,6508,6520,6523,6525,6529,6545,6546,6548,6554,6557,6559,6561,6563,6564,6566,6571,6584,6587,6588,6589,6590,6605,6610,6612,6613,6614,6627,6628,6634,6637,6643,6645,6647,6656,6660,6662,6663,6665,6667,6668,6672,6675,6681,6692,6695,6697,6702,6717,6719,6721,6722,6727,6729,6730,6732,6733,6741,6745,6753,6758,6771,6774,6775,6790,6791,6794,6795,6796,6822,6823,6827,6832,6833,6834,6836,6842,6845,6847,6851,6852,6853,6854,6858,6860,6862,6865,6866,6868,6869,6871,6875,6877,6886,6889,6890,6897,6898,6904,6907,6910,6911,6912,6913,6917,6918,6923,6927,6930,6932,6934,6940,6943,6946,6961,6963,6966,6968,6969,6974,6977,6979,6981,6983,6985,6987,6988,6989,6991,6995,7000,7004,7006,7009,7015,7021,7025,7026,7036,7040,7041,7042,7054,7055,7067,7069,7070,7071,7085,7087,7088,7096,7097,7098,7100,7102,7105,7106,7107,7108,7109,7110,7111,7112,7114,7116,7118,7119,7120,7121,7123,7126,7128,7129,7132,7133,7139,7143,7149,7150,7152,7153,7155,7156,7157,7158,7161,7163,7167,7169,7192,7193,7195,7199,7200,7205,7213,7215,7219,7220,7226,7228,7229,7232,7239,7243,7248,7259,7263,7268,7269,7271,7273,7291,7293,7295,7296,7300,7301,7305,7307,7309,7315,7318,7319,7320,7322,7323,7328,7336,7338,7339,7349,7351,7354,7355,7359,7360,7363,7366,7376,7377,7379,7387,7392,7393,7394,7398,7407,7412,7416,7420,7421,7422,7423,7427,7429,7430,7431,7436,7437,7441,7456,7462,7463,7464,7466,7468,7470,7471,7480,7483,7487,7493,7496,7502,7509,7512,7513,7525,7532,7536,7538,7539,7547,7553,7554,7556,7562,7563,7566,7567,7571,7575,7581,7582,7583,7586,7588,7593,7596,7608,7609,7618,7621,7622,7630,7633,7641,7642,7644,7648,7651,7652,7653,7655,7657,7664,7667,7669,7671,7675,7682,7685,7686,7687,7688,7689,7691,7705,7706,7714,7716,7731,7737,7739,7745,7746,7751,7752,7755,7757,7758,7763,7764,7767,7771,7776,7778,7779,7782,7784,7788,7790,7806,7823,7829,7833,7836,7838,7839,7840,7841,7845,7846,7852,7854,7860,7871,7872,7875,7878,7882,7883,7884,7887,7889,7894,7895,7896,7898,7900,7904,7905,7916,7918,7924,7925,7927,7929,7931,7938,7945,7957,7958,7959,7962,7965,7970,7973,7975,7980,7988,7991,7994,7995,7997,8000,8003,8004,8010,8012,8017,8021,8023,8024,8025,8035,8037,8044,8045,8048,8061,8062,8064,8068,8070,8071,8072,8075,8076,8079,8080,8091,8092,8094,8096,8099,8103,8107,8109,8110,8118,8122,8124,8128,8129,8131,8145,8155,8157,8159,8160,8161,8169,8175,8176,8178,8179,8181,8186,8188,8189,8191,8192,8195,8199,8203,8209,8210,8217,8220,8221,8222,8232,8238,8249,8253,8254,8256,8258,8261,8263,8267,8269,8271,8274,8276,8279,8280,8283,8289,8290,8293,8296,8297,8306,8316,8322,8323,8326,8327,8332,8333,8334,8339,8349,8351,8358,8367,8369,8372,8375,8381,8382,8388,8390,8391,8396,8400,8401,8407,8417,8423,8424,8427,8431,8432,8437,8460,8463,8470,8476,8481,8491,8494,8509,8518,8520,8527,8528,8530,8542,8554,8556,8561,8565,8575,8576,8582,8585,8586,8590,8592,8593,8603,8605,8606,8609,8611,8615,8618,8619,8620,8624,8626,8634,8646,8648,8651,8657,8664,8668,8669,8670,8673,8674,8682,8683,8689,8694,8700,8707,8713,8716,8717,8723,8744,8746,8754,8762,8764,8767,8769,8770,8774,8777,8778,8785,8786,8797,8801,8803,8806,8809,8810,8811,8824,8836,8844,8856,8867,8868,8869,8874,8875,8878,8881,8882,8891,8894,8897,8911,8912,8915,8917,8920,8925,8929,8937,8941,8942,8943,8945,8947,8948,8954,8957,8958,8959,8963,8964,8965,8966,8973,8981,8983,8986,8990,8992,8994,8996,9001,9004,9006,9008,9010,9020,9026,9036,9038,9039,9041,9049,9050,9056,9057,9058,9060,9061,9063,9071,9073,9075,9079,9090,9092,9094,9098,9099,9102,9107,9108,9117,9119,9120,9122,9125,9126,9131,9137,9139,9140,9142,9143,9153,9155,9161,9166,9175,9176,9179,9182,9184,9185,9188,9196,9217,9218,9222,9223,9225,9226,9227,9233,9239,9240,9242,9246,9254,9262,9268,9270,9307,9308,9313,9316,9318,9320,9321,9324,9330,9336,9346,9353,9354,9367,9385,9391,9403,9404,9406,9408,9415,9425,9432,9433,9442,9443,9444,9449,9450,9454,9464,9477,9480,9483,9487,9488,9499,9504,9513,9535,9536,9539,9548,9549,9554,9556,9558,9560,9561,9564,9565,9566,9572,9574,9576,9582,9587,9596,9597,9598,9600,9603,9604,9606,9608,9611,9628,9631,9643,9645,9649,9650,9651,9653,9654,9659,9662,9666,9667,9668,9669,9671,9672,9673,9674,9676,9683,9685,9686,9690,9701,9704,9706,9707,9709,9715,9720,9726,9730,9733,9735,9736,9741,9742,9747,9749,9757,9758,9761,9763,9770,9780,9789,9796,9803,9808,9816,9821,9822,9824,9826,9831,9840,9844,9848,9851,9855,9857,9858,9868,9876,9877,9882,9894,9896,9920,9921,9923,9927,9934,9939,9941,9943,9949,9950,9966,9969,9970,9974,9975,9977,9980,9981,9990,9991,9992,9994,9996,10001,10003,10004,10006,10007,10010,10011,10015,10016,10019,10022,10030,10032,10034,10038,10049,10053,10057,10058,10059,10067,10069,10075,10080,10086,10092,10104,10107,10112,10116,10121,10126,10128,10130,10134,10135,10146,10149,10164,10167,10169,10171,10173,10176,10177,10178,10182,10183,10187,10191,10192,10195,10196,10198,10205,10209,10210,10215,10217,10220,10222,10227,10234,10241,10243,10246,10247,10248,10249,10250,10252,10264,10296,10297,10299,10300,10309,10329,10359,10361,10370,10394,10450,10451,10453,10485,10487,10514,10515,10516,10517,10519,10520,10525,10526,10528,10530,10531,10532,10534,10586,10615,10619,10640,10660,10681,10686,10690,10691,10692,10696,10699,10704,10705,10721,10722,10734,10740,10751,10752,10753,10754,10756,10757,10765,10766,10767,10788,10790,10804,10822,10823,10840,10843,10850,10853,10856,10868,10871,10873,10874,10876,10880,10884,10891,10898,10901,10913,10914,10917,10921,10922,10923,10925,10928,10930,10936,10944,10946,10948,10956,10964,10973,10982,10986,10987,11007,11010,11020,11085,11107,11127,11132,11147,11148,11162,11167,11168,11174,11176,11178,11180,11198,11207,11210,11211,11216,11219,11233,11246,11248,11250,11252,11253,11254,11256,11270,11274,11276,11278,11282,11287,11298,11303,11308,11314,11315,11321,11325,11332,11338,11344,11346,11347,11353,11357,11364,11366,11374,11376,11378,11382,11383,11386,11392,11397,11399,11405,11410,11418,11427,11428,11430,11435,11437,11440,11442,11448,11450,11457,11466,11469,11470,11480,11482,11483,11488,11498,11499,11503,11505,11506,11507,11511,11512,11514,11516,11518,11529,11542,11548,11549,11565,11574,11578,11580,11584,11586,11589,11591,11594,11596,11597,11598,11602,11614,11617,11624,11628,11632,11634,11636,11643,11651,11655,11658,11666,11670,11676,11678,11682,11683,11697,11700,11705,11709,11710,11713,11714,11716,11717,11718,11719,11724,11727,11731,11743,11747,11750,11751,11752,11753,11767,11772,11775,11776,11797,11825,11832,11833,11837,11838,11843,11845,11852,11853,11855,11864,11867,11870,11871,11878,11882,11886,11888,11889,11890,11892,11896,11897,11898,11910,11915,11916,11917,11920,11923,11931,11937,11942,11960,11963,11966,11973,11977,11981,11984,11987,11988,12000,12005,12006,12016,12017,12019,12020,12023,12027,12028,12086,12088,12090,12092,12095,12100,12103,12105,12109,12110,12112,12172,12179,12180,12182,12201,12202,12203,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12216,12219,12220,12223,12224,12225,12232,12236,12238,12239,12240,12242,12244,12245,12248,12250,12253,12254,12258,12260,12261,12263,12270,12272,12273,12274,12277,12278,12279,12280,12281,12282,12285,12286,12295,12298,12305,12342,12346,12348,12351,12352,12354,12355,12361,12364,12368,12371,12372,12373,12378,12380,12387,12391,12395,12396,12397,12409,12417,12422,12426,12481,12483,12485,12487,12490,12491,12495,12497,12498,12510,12513,12516,12518,12524,12526,12529,12530,12531,12538,12539,12543,12546,12558,12577,12592,12604,12605,12610,12612,12613,12618,12619,12651,12653,12655,12659,12661,12662,12663,12667,12670,12674,12675,12690,12691,12696,12699,12701,12703,12707,12709,12721,12722,12730,12733,12736,12737,12741,12745,12748,12754,12755,12757,12760,12766,12767,12770,12773,12775,12776,12795,12802,12803,12806,12813,12814,12815,12819,12826,12830,12832,12834,12850,12856,12862,12870,12872,12876,12877,12879,12881,12888,12890,12893,12894,12898,12901,12902,12903,12908,12914,12915,12923,12925,12939,12941,12943,12947,12950,12952,12955,12956,12957,12966,12971,12972,12973,12981,12984,12992,12995,13000,13001,13003,13022,13023,13024,13039,13047,13048,13057,13085,13093,13100,13104,13105,13106,13114,13116,13117,13123,13125,13128,13173,13174,13185,13187,13190,13193,13199,13213,13216,13221,13244,13264,13267,13272,13280,13290,13291,13292,13294,13306,13310,13319,13323,13326,13329,13331,13350,13351,13355,13364,13375,13393,13396,13411,13412,13426,13431,13434,13436,13437,13440,13443,13444,13445,13448,13472,13478,13487,13494,13502,13503,13504,13506,13508,13513,13515,13516,13522,13524,13525,13532,13549,13567,13568,13574,13587,13590,13604,13606,13607,13608,13610,13611,13616,13619,13629,13630,13634,13643,13656,13662,13667,13668,13671,13674,13675,13678,13693,13710,13713,13716,13722,13723,13727,13729,13731,13732,13739,13743,13746,13752,13757,13761,13770,13771,13778,13779,13786,13788,13791,13801,13805,13808,13822,13856,13859,13860,13863,13907,13908,13909,13913,13934,13961,13963,13972,13983,13992,13996,14014,14017,14024,14034,14046,14057,14067,14071,14082,14087,14096,14100,14105,14110,14112,14116,14117,14124,14126,14130,14133,14134,14135,14139,14141,14149,14161,14166,14173,14174,14178,14180,14181,14184,14188,14201,14205,14213,14214,14224,14225,14227,14229,14246,14257,14266,14268,14273,14286,14289,14306,14322,14335,14342,14343,14344,14346,14351,14353,14362,14374,14379,14380,14385,14392,14394,14401,14402,14404,14405,14407,14408,14420,14427,14446,14458,14466,14473,14489,14490,14493,14495,14498,14501,14508,14513,14514,14520,14522,14525,14527,14530,14537,14555,14561,14567,14578,14587,14599,14604,14610,14662,14663,14669,14670,14672,14677,14693,14698,14700,14702,14705,14713,14715,14721,14725,14732,14733,14735,14740,14750,14753,14768,14771,14782,14791,14792,14802,14811,14818,14821,14822,14831,14836,14842,14851,14852,14868,14893,14901,14902,14908,14922,14923,14926,14929,14935,14939,14949,14952,14958,14963,14966,14980,14981,14982,14993,14996,15008,15014,15015,15016,15027,15028,15040,15059,15060,15077,15079,15085,15087,15088,15098,15104,15117,15129,15136,15143,15163,15168,15178,15183,15184,15206,15211,15212,15214,15223,15227,15233,15237,15245,15266,15269,15274,15282,15297,15303,15313,15323,15345,15349,15359,15370,15374,15380,15398,15400,15401,15402,15428,15430,15443,15444,15467,15474,15483,15488,15521,15525,15526,15531,15540,15553,15561,15566,15583,15584,15586,15592,15619,15630,15661,15674,15701,15702,15705,15712,15713,15716,15718,15719,15727,15733,15738,15740,15746,15754,15765,15770,15775,15779,15786,15788,15789,15793,15810,15815,15816,15820,15823,15829,15848,15856,15877,15878,15892,15895,15908,15916,15919,15920,15926,15935,15941,15949,15950,15951,15970,15996,15997,15998,15999,16000,16001,16002,16008,16014,16016,16018,16025,16032,16048,16050,16053,16055,16059,16076,16082,16083,16088,16089,16109,16112,16131,16133,16134,16141,16146,16148,16151,16162,16175,16180,16182,16183,16196,16207,16220,16225,16237,16241,16246,16257,16264,16267,16285,16290,16292,16293,16298,16302,16304,16312,16315,16316,16318,16375,16415,16431,16433,16439,16445,16449,16455,16462,16464,16469,16470,16476,16480,16481,16482,16495,16505,16511,16513,16517,16520,16524,16525,16532,16535,16545,16549,16564,16580,16594,16612,16613,16621,16624,16625,16630,16637,16658,16692,16696,16712,16721,16728,16732,16733,16745,16749,16758,16761,16766,16779,16786,16788,16799,16823,16824,16831,16836,16841,16846,16848,16856,16857,16859,16872,16873,16874,16883,16886,16896,16920,16921,16923,16925,16926,16929,16939,16947,16952,16957,16958,16963,16978,16987,16993,16997,17000,17003,17007,17016,17024,17042,17057,17058,17097,17117,17120,17130,17137,17138,17148,17157,17172,17174,17177,17178,17179,17191,17202,17205,17219,17245,17250,17253,17258,17263,17265,17281,17294,17298,17300,17305,17315,17323,17325,17340,17342,17343,17346,17357,17364,17370,17373,17381,17382,17384,17385,17387,17389,17394,17395,17398,17402,17405,17412,17419,17422,17426,17430,17431,17432,17434,17437,17439,17447,17448,17455,17457,17461,17468,17470,17471,17491,17492,17493,17494,17498,17507,17523,17528,17534,17535,17539,17541,17577,17578,17579,17580,17583,17585,17590,17591,17592,17605,17607,17608,17619,17621,17642,17660,17666,17670,17678,17683,17687,17688,17691,17695,17704,17706,17708,17737,17739,17745,17748,17752,17765,17771,17773,17775,17780,17784,17786,17790,17793,17799,17804,17818,17824,17825,17836,17841,17843,17852,17853,17860,17868,17874,17877,17885,17895,17896,17900,17903,17911,17912,17918,17919,17931,17936,17937,17940,17941,17947,17953,17957,17959,17970,17973,17982,17984,17986,17992,17996,17998,18004,18005,18009,18020,18021,18024,18027,18031,18034,18035,18036,18038,18045,18046,18050,18055,18063,18071,18076,18078,18084,18092,18094,18105,18109,18111,18113,18117,18119,18120,18122,18126,18147,18151,18163,18173,18183,18184,18186,18193,18197,18199,18208,18211,18228,18231,18234,18238,18244,18248,18250,18254,18258,18259,18274,18282,18294,18298,18306,18307,18309,18310,18313,18319,18332,18340,18348,18349,18350,18358,18360,18366,18372,18378,18384,18396,18397,18399,18402,18403,18407,18415,18419,18422,18435,18437,18441,18446,18447,18453,18455,18460,18475,18476,18477,18479,18487,18490,18491,18494,18505,18509,18510,18511,18516,18518,18535,18539,18540,18541,18544,18551,18557,18567,18569,18582,18584,18592,18593,18595,18596,18597,18598,18611,18612,18613,18614,18615,18616,18617,18618,18619,18620,18621,18622,18630,18633,18634,18635,18637,18641,18642,18648,18651,18655,18660,18663,18664,18668,18673,18677,18679,18680,18685,18686,18690,18691,18694,18695,18698,18707,18710,18713,18716,18719,18722,18724,18732,18733,18737,18738,18740,18749,18751,18755,18756,18758,18759,18764,18766,18773,18774,18776,18779,18781,18793,18795,18799,18801,18802,18805,18813,18814,18815,18819,18821,18825,18827,18830,18864,18867,18869,18877,18878,18881,18882,18883,18885,18886,18887,18888,18889,18906,18911,18913,18917,18928,18933,18942,18945,18951,18954,18959,18960,18963,18970,18971,18980,18985,18990,19001,19002,19003,19006,19011,19013,19016,19020,19021,19022,19025,19026,19027,19028,19031,19033,19034,19039,19040,19041,19042,19043,19044,19053,19055,19056,19061,19064,19073,19080,19090,19102,19109,19111,19114,19118,19120,19126,19131,19134,19141,19144,19145,19147,19151,19153,19154,19156,19163,19169,19172,19177,19178,19179,19182,19185,19186,19187,19194,19196,19197,19203,19204,19207,19208,19210,19211,19214,19215,19218,19223,19227,19230,19233,19237,19241,19245,19251,19253,19261,19262,19263,19272,19280,19283,19286,19291,19309,19316,19322,19323,19327,19330,19332,19334,19336,19341,19348,19349,19350,19351,19352,19353,19355,19361,19365,19366,19369,19373,19379,19383,19385,19392,19395,19398,19402,19406,19407,19408,19418,19421,19425,19430,19432,19435,19439,19440,19441,19442,19444,19452,19457,19473,19474,19475,19476,19478,19479,19484,19487,19491,19492,19493,19494,19498,19499,19500,19506,19507,19514,19523,19525,19526,19527,19532,19534,19539,19549,19550,19551,19561,19562,19564,19566,19567,19569,19571,19572,19573,19575,19581,19582,19589,19592,19595,19597,19606,19612,19616,19619,19624,19628,19629,19630,19634,19636,19637,19639,19649,19652,19655,19668,19674,19675,19677,19684,19688,19694,19699,19701,19702,19704,19707,19711,19723,19725,19727,19728,19729,19732,19735,19740,19752,19755,19761,19762,19768,19771,19774,19780,19783,19785,19787,19793,19796,19799,19801,19802,19804,19809,19813,19814,19815,19822,19823,19824,19827,19834,19838,19843,19844,19845,19846,19848,19849,19851,19853,19859,19860,19863,19869,19874,19879,19883,19885,19886,19891,19895,19903,19904,19905,19906,19907,19913,19918,19937,19940,19942,19948,19950,19953,19958,19962,19966,19972,19973,19975,19976,19977,19982,19983,19986,19991,19992,20002,20007,20009,20013,20015,20017,20022,20027,20028,20029,20032,20033,20041,20050,20055,20061,20064,20065,20068,20070,20072,20075,20076,20082,20083,20089,20090,20091,20093,20098,20107,20112,20113,20114,20122,20124,20125,20132,20134,20141,20143,20146,20148,20156,20159,20163,20165,20169,20172,20174,20175,20179,20182,20192,20194,20207,20210,20212,20214,20217,20218,20219,20228,20229,20241,20243,20246,20249,20256,20257,20260,20262,20265,20266,20274,20276,20277,20279,20283,20284,20291,20292,20301,20303,20305,20307,20308,20310,20312,20313,20314,20317,20323,20330,20333,20335,20340,20341,20349,20354,20371,20372,20387,20392,20398,20403,20404,20405,20409,20420,20426,20427,20428,20429,20433,20438,20439,20450,20451,20452,20456,20468,20469,20472,20474,20475,20483,20485,20486,20489,20490,20491,20498,20511,20514,20518,20519,20520,20521,20522,20537,20539,20540,20543,20549,20572,20577,20585,20588,20592,20603,20604,20606,20609,20610,20615,20619,20621,20624,20625,20628,20635,20636,20637,20639,20640,20649,20651,20652,20662,20664,20670,20674,20677,20678,20679,20683,20696,20699,20710,20728,20729,20730,20731,20732,20735,20736,20737,20738,20739,20740,20742,20746,20756,20765,20767,20771,20778,20779,20789,20790,20795,20799,20803,20808,20816,20819,20823,20825,20830,20832,20834,20838,20847,20857,20859,20866,20870,20872,20873,20875,20876,20877,20879,20880,20884,20886,20888,20889,20891,20895,20896,20901,20904,20905,20912,20933,20942,20947,20948,20949,20963,21002,21015,21018,21025,21028,21029,21034,21035,21047,21049,21069,21092,21096,21107,21110,21115,21116,21117,21118,21120,21126,21127,21128,21133,21135,21137,21139,21150,21154,21155,21160,21172,21173,21175,21180,21181,21183,21187,21193,21196,21201,21210,21213,21217,21226,21235,21242,21246,21254,21261,21263,21267,21269,21275,21278,21282,21286,21287,21288,21289,21291,21292,21294,21298,21299,21301,21308,21310,21318,21321,21323,21325,21340,21355,21362,21363,21366,21370,21379,21383,21384,21385,21388,21391,21392,21406,21409,21410,21418,21420,21433,21437,21440,21445,21450,21451,21462,21465,21467,21475,21479,21482,21484,21487,21489,21490,21496,21498,21500,21503,21504,21511,21514,21516,21517,21518,21521,21523,21525,21526,21527,21528,21541,21543,21545,21546,21552,21557,21558,21561,21566,21574,21578,21582,21583,21586,21587,21591,21592,21593,21595,21602,21609,21614,21621,21629,21632,21637,21639,21643,21645,21649,21650,21657,21671,21672,21673,21678,21680,21686,21689,21691,21697,21698,21699,21703,21704,21705,21706,21707,21708,21709,21710,21713,21714,21718,21721,21723,21724,21725,21726,21727,21728,21729,21730,21731,21732,21737,21739,21740,21742,21743,21745,21752,21755,21756,21965,21968,21970,21983,21989,21993,22001,22003,22004,22032,22038,22040,22043,22044,22058,22077,22080,22082,22083,22087,22088,22092,22096,22107,22112,22115,22120,22122,22139,22145,22152,22165,22169,22173,22175,22182,22183,22194,22200,22204,22209,22214,22219,22220,22223,22231,22234,22240,22241,22242,22246,22250,22251,22261,22265,22268,22269,22270,22280,22281,22296,22300,22304,22306,22307,22313,22317,22327,22331,22349,22354,22355,22359,22361,22365,22366,22369,22372,22382,22388,22389,22390,22393,22396,22397,22399,22407,22421,22442,22446,22450,22452,22454,22464,22475,22479,22481,22493,22497,22498,22499,22502,22503,22510,22511,22514,22518,22519,22520,22521,22534,22536,22539,22541,22542,22543,22546,22549,22550,22552,22554,22563,22564,22565,22566,22567,22568,22571,22573,22574,22576,22579,22581,22582,22583,22586,22591,22598,22603,22604,22607,22610,22611,22614,22621,22622,22627,22630,22635,22640,22643,22645,22646,22647,22652,22668,22669,22676,22677,22679,22680,22681,22684,22689,22697,22698,22707,22708,22712,22716,22719,22720,22723,22728,22739,22743,22744,22756,22757,22759,22761,22764,22765,22768,22771,22772,22781,22785,22789,22790,22793,22794,22797,22810,22816,22826,22830,22831,22838,22850,22852,22860,22870,22871,22873,22882,22895,22903,22905,22912,22914,22916,22923,22925,22934,22939,22948,22952,22957,22959,22973,22974,22976,22980,22983,22985,22999,23004,23006,23007,23009,23010,23017,23026,23034,23041,23063,23064,23072,23073,23076,23078,23084,23085,23094,23098,23099,23100,23102,23108,23109,23110,23115,23116,23127,23134]]],["At",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15578]]],["From",[6,6,[[4,1,1,0,1,[[154,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]],[11,1,1,2,3,[[322,1,1,2,3]]],[15,1,1,3,4,[[425,1,1,3,4]]],[23,1,1,4,5,[[769,1,1,4,5]]],[27,1,1,5,6,[[875,1,1,5,6]]]],[4974,6157,9826,12692,19537,22290]]],["Of",[8,8,[[0,1,1,0,1,[[6,1,1,0,1]]],[10,1,1,1,2,[[301,1,1,1,2]]],[12,4,4,2,6,[[348,1,1,2,3],[349,2,2,3,5],[364,1,1,5,6]]],[14,1,1,6,7,[[412,1,1,6,7]]],[15,1,1,7,8,[[423,1,1,7,8]]]],[167,9110,10694,10745,10746,11112,12276,12598]]],["Since",[3,3,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[23,1,1,2,3,[[751,1,1,2,3]]]],[9001,11287,19144]]],["above",[4,4,[[2,1,1,0,1,[[98,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]],[20,1,1,3,4,[[661,1,1,3,4]]]],[2963,7269,14166,17378]]],["after",[2,2,[[12,1,1,0,1,[[345,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[10583,22059]]],["against",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14863]]],["alone",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13166]]],["among",[8,8,[[2,1,1,0,1,[[100,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]],[15,1,1,2,3,[[417,1,1,2,3]]],[17,1,1,3,4,[[468,1,1,3,4]]],[18,1,1,4,5,[[583,1,1,4,5]]],[25,3,3,5,8,[[823,1,1,5,6],[834,1,1,6,7],[837,1,1,7,8]]]],[3010,10698,12399,13673,15698,21006,21286,21383]]],["at",[3,3,[[18,1,1,0,1,[[581,1,1,0,1]]],[21,1,1,1,2,[[672,1,1,1,2]]],[33,1,1,2,3,[[900,1,1,2,3]]]],[15578,17563,22689]]],["beside",[2,2,[[6,1,1,0,1,[[221,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]]],[6863,11588]]],["both",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8912]]],["by",[9,9,[[0,2,2,0,2,[[15,1,1,0,1],[29,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]],[21,1,1,4,5,[[675,1,1,4,5]]],[26,1,1,5,6,[[857,1,1,5,6]]],[27,2,2,6,8,[[868,1,1,6,7],[869,1,1,7,8]]],[33,1,1,8,9,[[900,1,1,8,9]]]],[383,833,8611,14126,17602,21972,22182,22198,22690]]],["for",[32,30,[[1,1,1,0,1,[[67,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[4,5,5,2,7,[[153,1,1,2,3],[154,1,1,3,4],[166,1,1,4,5],[169,1,1,5,6],[184,1,1,6,7]]],[6,1,1,7,8,[[228,1,1,7,8]]],[7,1,1,8,9,[[232,1,1,8,9]]],[8,2,2,9,11,[[242,1,1,9,10],[244,1,1,10,11]]],[9,4,3,11,14,[[269,1,1,11,12],[276,2,1,12,13],[288,1,1,13,14]]],[10,1,1,14,15,[[309,1,1,14,15]]],[11,2,2,15,17,[[315,1,1,15,16],[318,1,1,16,17]]],[12,2,1,17,18,[[356,2,1,17,18]]],[16,1,1,18,19,[[430,1,1,18,19]]],[17,1,1,19,20,[[477,1,1,19,20]]],[18,5,5,20,25,[[495,1,1,20,21],[512,1,1,21,22],[515,1,1,22,23],[608,1,1,23,24],[616,1,1,24,25]]],[19,1,1,25,26,[[657,1,1,25,26]]],[22,1,1,26,27,[[685,1,1,26,27]]],[23,2,2,27,29,[[776,2,2,27,29]]],[28,1,1,29,30,[[878,1,1,29,30]]]],[2017,4038,4909,4974,5314,5372,5805,7019,7140,7360,7396,8120,8251,8620,9394,9602,9675,10919,12788,13925,14135,14420,14494,16149,16245,17269,17795,19748,19758,22362]]],["from",[418,398,[[0,18,18,0,18,[[1,2,2,0,2],[3,2,2,2,4],[6,1,1,4,5],[7,1,1,5,6],[10,1,1,6,7],[12,1,1,7,8],[21,1,1,8,9],[22,1,1,9,10],[24,1,1,10,11],[25,1,1,11,12],[26,1,1,12,13],[29,1,1,13,14],[30,1,1,14,15],[37,1,1,15,16],[38,1,1,16,17],[46,1,1,17,18]]],[1,18,17,18,35,[[57,3,3,18,21],[58,1,1,21,22],[59,1,1,22,23],[61,2,1,23,24],[65,1,1,24,25],[67,2,2,25,27],[68,1,1,27,28],[69,1,1,28,29],[74,1,1,29,30],[75,1,1,30,31],[81,1,1,31,32],[82,1,1,32,33],[83,1,1,33,34],[85,1,1,34,35]]],[2,15,15,35,50,[[91,1,1,35,36],[93,3,3,36,39],[94,4,4,39,43],[102,1,1,43,44],[103,1,1,44,45],[104,2,2,45,47],[109,2,2,47,49],[111,1,1,49,50]]],[3,9,9,50,59,[[127,1,1,50,51],[131,1,1,51,52],[132,1,1,52,53],[134,2,2,53,55],[136,1,1,55,56],[139,1,1,56,57],[147,1,1,57,58],[150,1,1,58,59]]],[4,27,26,59,85,[[155,1,1,59,60],[156,1,1,60,61],[159,1,1,61,62],[161,2,2,62,64],[162,2,2,64,66],[163,2,1,66,67],[164,2,2,67,69],[165,1,1,69,70],[166,1,1,70,71],[169,2,2,71,73],[171,1,1,73,74],[172,1,1,74,75],[174,3,3,75,78],[178,1,1,78,79],[180,1,1,79,80],[182,1,1,80,81],[183,2,2,81,83],[184,1,1,83,84],[185,1,1,84,85]]],[5,23,20,85,105,[[187,1,1,85,86],[192,1,1,86,87],[193,2,2,87,89],[194,4,4,89,93],[195,1,1,93,94],[196,3,3,94,97],[197,5,2,97,99],[199,1,1,99,100],[201,1,1,100,101],[204,2,2,101,103],[208,1,1,103,104],[209,1,1,104,105]]],[6,18,16,105,121,[[212,1,1,105,106],[213,2,2,106,108],[215,1,1,108,109],[218,1,1,109,110],[219,1,1,110,111],[220,3,1,111,112],[221,1,1,112,113],[222,1,1,113,114],[223,2,2,114,116],[225,1,1,116,117],[226,1,1,117,118],[229,1,1,118,119],[230,2,2,119,121]]],[8,6,5,121,126,[[238,3,2,121,123],[241,1,1,123,124],[248,1,1,124,125],[255,1,1,125,126]]],[9,15,15,126,141,[[267,1,1,126,127],[270,1,1,127,128],[271,1,1,128,129],[273,2,2,129,131],[274,1,1,131,132],[278,1,1,132,133],[279,1,1,133,134],[280,2,2,134,136],[284,1,1,136,137],[285,1,1,137,138],[286,1,1,138,139],[288,2,2,139,141]]],[10,11,11,141,152,[[294,2,2,141,143],[295,1,1,143,144],[300,1,1,144,145],[303,4,4,145,149],[306,1,1,149,150],[310,1,1,150,151],[312,1,1,151,152]]],[11,13,11,152,163,[[313,7,5,152,157],[314,1,1,157,158],[316,1,1,158,159],[327,1,1,159,160],[329,1,1,160,161],[330,1,1,161,162],[332,1,1,162,163]]],[12,9,8,163,171,[[341,1,1,163,164],[342,1,1,164,165],[348,1,1,165,166],[350,1,1,166,167],[353,1,1,167,168],[354,2,1,168,169],[355,1,1,169,170],[358,1,1,170,171]]],[13,23,23,171,194,[[371,1,1,171,172],[372,7,7,172,179],[373,1,1,179,180],[375,1,1,180,181],[378,1,1,181,182],[379,1,1,182,183],[384,1,1,183,184],[386,1,1,184,185],[390,1,1,185,186],[394,2,2,186,188],[395,1,1,188,189],[396,2,2,189,191],[400,1,1,191,192],[401,1,1,192,193],[402,1,1,193,194]]],[14,4,4,194,198,[[404,1,1,194,195],[405,1,1,195,196],[412,2,2,196,198]]],[15,7,7,198,205,[[415,1,1,198,199],[416,1,1,199,200],[418,1,1,200,201],[419,1,1,201,202],[420,2,2,202,204],[424,1,1,204,205]]],[17,17,17,205,222,[[436,1,1,205,206],[441,1,1,206,207],[442,1,1,207,208],[449,1,1,208,209],[453,1,1,209,210],[454,1,1,210,211],[456,2,2,211,213],[457,2,2,213,215],[461,1,1,215,216],[462,1,1,216,217],[465,2,2,217,219],[468,2,2,219,221],[477,1,1,221,222]]],[18,48,48,222,270,[[479,1,1,222,223],[483,1,1,223,224],[489,1,1,224,225],[490,1,1,225,226],[495,2,2,226,228],[499,2,2,228,230],[504,1,1,230,231],[507,1,1,231,232],[508,1,1,232,233],[512,1,1,233,234],[514,1,1,234,235],[515,2,2,235,237],[517,1,1,237,238],[521,2,2,238,240],[528,1,1,240,241],[532,2,2,241,243],[539,2,2,243,245],[546,1,1,245,246],[548,1,1,246,247],[550,1,1,247,248],[553,1,1,248,249],[555,1,1,249,250],[557,1,1,250,251],[565,3,3,251,254],[578,1,1,254,255],[579,1,1,255,256],[580,1,1,256,257],[583,1,1,257,258],[586,1,1,258,259],[593,1,1,259,260],[596,3,3,260,263],[609,1,1,263,264],[616,3,3,264,267],[620,1,1,267,268],[625,2,2,268,270]]],[19,9,8,270,278,[[631,2,1,270,271],[646,1,1,271,272],[649,3,3,272,275],[650,1,1,275,276],[654,1,1,276,277],[657,1,1,277,278]]],[20,4,4,278,282,[[660,1,1,278,279],[661,1,1,279,280],[665,2,2,280,282]]],[21,6,6,282,288,[[673,1,1,282,283],[674,2,2,283,285],[676,2,2,285,287],[678,1,1,287,288]]],[22,20,19,288,307,[[679,1,1,288,289],[680,1,1,289,290],[683,1,1,290,291],[692,1,1,291,292],[696,2,2,292,294],[700,1,1,294,295],[707,1,1,295,296],[708,1,1,296,297],[716,1,1,297,298],[717,1,1,298,299],[724,2,1,299,300],[731,1,1,300,301],[732,1,1,301,302],[733,1,1,302,303],[737,3,3,303,306],[742,1,1,306,307]]],[23,27,23,307,330,[[746,1,1,307,308],[748,2,2,308,310],[749,1,1,310,311],[750,1,1,311,312],[757,1,1,312,313],[761,4,2,313,315],[762,1,1,315,316],[765,3,1,316,317],[769,1,1,317,318],[772,1,1,318,319],[776,1,1,319,320],[780,1,1,320,321],[782,2,2,321,323],[784,2,2,323,325],[785,3,3,325,328],[786,1,1,328,329],[795,1,1,329,330]]],[24,2,2,330,332,[[797,2,2,330,332]]],[25,39,38,332,370,[[804,1,1,332,333],[808,1,1,333,334],[811,1,1,334,335],[812,2,2,335,337],[815,4,4,337,341],[817,2,2,341,343],[821,3,3,343,346],[822,2,2,346,348],[823,1,1,348,349],[824,2,2,349,351],[825,2,2,351,353],[826,2,2,353,355],[827,1,1,355,356],[829,1,1,356,357],[830,1,1,357,358],[834,2,2,358,360],[835,2,1,360,361],[836,1,1,361,362],[840,5,5,362,367],[844,1,1,367,368],[848,2,2,368,370]]],[26,3,3,370,373,[[857,1,1,370,371],[858,1,1,371,372],[859,1,1,372,373]]],[27,6,6,373,379,[[866,2,2,373,375],[868,1,1,375,376],[870,1,1,376,377],[871,1,1,377,378],[875,1,1,378,379]]],[28,1,1,379,380,[[876,1,1,379,380]]],[29,4,4,380,384,[[881,2,2,380,382],[882,1,1,382,383],[883,1,1,383,384]]],[31,2,2,384,386,[[891,1,1,384,385],[892,1,1,385,386]]],[32,6,5,386,391,[[893,1,1,386,387],[895,1,1,387,388],[897,1,1,388,389],[898,1,1,389,390],[899,2,1,390,391]]],[33,1,1,391,392,[[902,1,1,391,392]]],[35,2,2,392,394,[[906,2,2,392,394]]],[36,4,3,394,397,[[910,4,3,394,397]]],[37,1,1,397,398,[[924,1,1,397,398]]]],[36,52,89,90,182,185,272,332,559,577,687,719,772,832,886,1136,1158,1438,1718,1719,1721,1757,1782,1821,1951,2012,2013,2040,2073,2210,2263,2453,2480,2525,2599,2771,2803,2814,2826,2832,2833,2834,2836,3110,3118,3184,3200,3342,3344,3373,4055,4176,4209,4266,4287,4339,4423,4706,4823,4991,5006,5126,5164,5172,5191,5193,5232,5261,5272,5279,5314,5375,5384,5411,5442,5471,5474,5478,5581,5635,5719,5745,5757,5778,5832,5858,5967,5985,5995,6006,6008,6018,6031,6059,6071,6073,6075,6124,6128,6160,6204,6305,6307,6443,6464,6546,6587,6595,6643,6732,6789,6822,6851,6878,6889,6891,6942,6966,7040,7085,7086,7293,7294,7334,7500,7732,8026,8131,8141,8188,8195,8213,8303,8330,8370,8374,8491,8535,8556,8616,8625,8865,8877,8887,9082,9189,9198,9205,9210,9300,9441,9523,9537,9539,9543,9545,9547,9552,9630,9953,10005,10041,10116,10395,10437,10681,10765,10855,10870,10894,10960,11277,11303,11305,11307,11312,11315,11317,11321,11338,11390,11449,11472,11573,11619,11702,11772,11776,11801,11835,11836,11936,11988,12013,12089,12104,12263,12266,12347,12375,12410,12484,12496,12511,12652,12885,12991,13027,13192,13293,13310,13369,13371,13406,13407,13471,13486,13562,13567,13668,13680,13924,13948,13993,14073,14075,14121,14140,14215,14228,14294,14322,14342,14432,14477,14499,14511,14536,14581,14589,14702,14743,14744,14828,14832,14940,14988,15047,15089,15155,15216,15316,15322,15326,15517,15523,15561,15699,15772,15856,15917,15927,16013,16162,16251,16254,16258,16300,16372,16378,16514,16932,17020,17021,17030,17048,17177,17259,17343,17373,17452,17455,17575,17584,17597,17619,17620,17645,17669,17707,17762,17931,17999,18004,18056,18206,18223,18402,18419,18589,18714,18731,18750,18802,18809,18811,18892,19000,19035,19055,19083,19097,19273,19362,19383,19404,19447,19544,19621,19762,19871,19909,19920,19942,19945,19963,19971,19973,19979,20237,20316,20326,20519,20599,20652,20672,20673,20744,20748,20750,20752,20796,20804,20929,20933,20936,20947,20948,20981,21024,21034,21072,21081,21090,21096,21104,21182,21196,21287,21289,21326,21351,21470,21471,21472,21475,21477,21581,21694,21696,21966,22013,22027,22155,22158,22191,22220,22230,22286,22303,22400,22406,22417,22434,22566,22571,22595,22612,22639,22653,22676,22719,22791,22797,22870,22873,22874,23070]]],["how",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15070]]],["in",[8,8,[[0,1,1,0,1,[[20,1,1,0,1]]],[2,4,4,1,5,[[94,2,2,1,3],[103,2,2,3,5]]],[12,1,1,5,6,[[363,1,1,5,6]]],[18,1,1,6,7,[[595,1,1,6,7]]],[23,1,1,7,8,[[781,1,1,7,8]]]],[528,2845,2846,3114,3127,11104,15874,19895]]],["mine",[2,2,[[10,1,1,0,1,[[292,1,1,0,1]]],[23,1,1,1,2,[[788,1,1,1,2]]]],[8792,20038]]],["most",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8672]]],["neither",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7997]]],["of",[629,556,[[0,48,45,0,45,[[1,4,4,0,4],[2,7,6,4,10],[4,1,1,10,11],[5,1,1,11,12],[6,3,2,12,14],[7,3,3,14,17],[8,2,2,17,19],[9,1,1,19,20],[16,3,2,20,22],[18,3,3,22,25],[20,1,1,25,26],[21,2,2,26,28],[22,2,2,28,30],[28,1,1,30,31],[29,1,1,31,32],[31,1,1,32,33],[32,1,1,33,34],[33,1,1,34,35],[34,1,1,35,36],[36,1,1,36,37],[39,2,2,37,39],[40,4,4,39,43],[41,1,1,43,44],[49,1,1,44,45]]],[1,62,50,45,95,[[50,1,1,45,46],[51,4,3,46,49],[52,1,1,49,50],[53,1,1,50,51],[56,2,2,51,53],[57,3,1,53,54],[59,1,1,54,55],[61,7,5,55,60],[65,5,5,60,65],[66,1,1,65,66],[68,3,3,66,69],[72,1,1,69,70],[74,8,5,70,75],[76,1,1,75,76],[77,1,1,76,77],[78,3,3,77,80],[79,4,3,80,83],[81,3,3,83,86],[86,9,6,86,92],[87,1,1,92,93],[88,2,2,93,95]]],[2,78,65,95,160,[[90,11,4,95,99],[91,2,2,99,101],[92,2,2,101,103],[93,5,5,103,108],[94,3,3,108,111],[95,2,2,111,113],[96,6,6,113,119],[97,2,2,119,121],[98,3,2,121,123],[100,5,5,123,128],[102,4,1,128,129],[103,8,7,129,136],[105,2,2,136,138],[106,4,4,138,142],[109,1,1,142,143],[110,2,2,143,145],[111,5,5,145,150],[114,5,5,150,155],[115,4,3,155,158],[116,2,2,158,160]]],[3,45,31,160,191,[[121,3,3,160,163],[122,2,1,163,164],[125,1,1,164,165],[126,1,1,165,166],[127,2,2,166,168],[129,3,2,168,170],[130,2,2,170,172],[131,2,1,172,173],[132,1,1,173,174],[134,6,4,174,178],[136,2,2,178,180],[137,1,1,180,181],[138,2,2,181,183],[142,1,1,183,184],[147,15,6,184,190],[149,1,1,190,191]]],[4,22,22,191,213,[[153,2,2,191,193],[154,1,1,193,194],[156,2,2,194,196],[159,1,1,196,197],[161,3,3,197,200],[163,1,1,200,201],[164,1,1,201,202],[165,2,2,202,204],[168,1,1,204,205],[169,1,1,205,206],[170,1,1,206,207],[172,2,2,207,209],[177,1,1,209,210],[178,1,1,210,211],[180,2,2,211,213]]],[5,19,19,213,232,[[188,1,1,213,214],[190,5,5,214,219],[192,1,1,219,220],[193,4,4,220,224],[194,1,1,224,225],[195,1,1,225,226],[196,4,4,226,230],[207,1,1,230,231],[209,1,1,231,232]]],[6,25,23,232,255,[[211,1,1,232,233],[212,2,2,233,235],[215,2,1,235,236],[216,2,2,236,238],[217,4,3,238,241],[218,1,1,241,242],[219,2,2,242,244],[224,1,1,244,245],[229,1,1,245,246],[230,6,6,246,252],[231,3,3,252,255]]],[7,5,4,255,259,[[232,1,1,255,256],[233,2,2,256,258],[235,2,1,258,259]]],[8,17,16,259,275,[[236,1,1,259,260],[237,2,2,260,262],[239,2,1,262,263],[242,1,1,263,264],[246,1,1,264,265],[249,1,1,265,266],[252,2,2,266,268],[255,1,1,268,269],[257,1,1,269,270],[259,2,2,270,272],[262,1,1,272,273],[263,2,2,273,275]]],[9,14,14,275,289,[[267,2,2,275,277],[274,1,1,277,278],[277,1,1,278,279],[279,1,1,279,280],[281,1,1,280,281],[285,2,2,281,283],[286,3,3,283,286],[287,1,1,286,287],[290,2,2,287,289]]],[10,17,17,289,306,[[291,1,1,289,290],[292,1,1,290,291],[295,1,1,291,292],[296,1,1,292,293],[297,2,2,293,295],[298,1,1,295,296],[299,1,1,296,297],[301,1,1,297,298],[305,1,1,298,299],[306,1,1,299,300],[307,2,2,300,302],[309,1,1,302,303],[310,1,1,303,304],[312,2,2,304,306]]],[11,22,18,306,324,[[314,3,2,306,308],[316,1,1,308,309],[318,2,1,309,310],[319,3,2,310,312],[320,1,1,312,313],[321,2,1,313,314],[322,2,2,314,316],[323,1,1,316,317],[324,1,1,317,318],[326,1,1,318,319],[333,2,2,319,321],[335,2,2,321,323],[337,1,1,323,324]]],[12,51,43,324,367,[[341,3,2,324,326],[342,2,2,326,328],[343,1,1,328,329],[345,1,1,329,330],[346,15,11,330,341],[347,1,1,341,342],[348,2,2,342,344],[349,8,8,344,352],[350,1,1,352,353],[352,3,2,353,355],[353,1,1,355,356],[355,1,1,356,357],[356,2,1,357,358],[358,1,1,358,359],[361,3,2,359,361],[363,3,3,361,364],[364,2,2,364,366],[366,1,1,366,367]]],[13,43,37,367,404,[[368,3,3,367,370],[371,1,1,370,371],[372,1,1,371,372],[374,3,3,372,375],[379,1,1,375,376],[380,1,1,376,377],[381,2,2,377,379],[382,1,1,379,380],[383,2,2,380,382],[384,2,2,382,384],[385,2,2,384,386],[386,4,3,386,389],[387,1,1,389,390],[389,1,1,390,391],[391,1,1,391,392],[392,2,2,392,394],[394,1,1,394,395],[395,8,4,395,399],[397,1,1,399,400],[400,4,3,400,403],[401,1,1,403,404]]],[14,9,9,404,413,[[404,1,1,404,405],[409,1,1,405,406],[410,3,3,406,409],[412,4,4,409,413]]],[15,16,16,413,429,[[413,2,2,413,415],[417,2,2,415,417],[419,2,2,417,419],[420,1,1,419,420],[422,1,1,420,421],[423,3,3,421,424],[424,1,1,424,425],[425,4,4,425,429]]],[16,1,1,429,430,[[432,1,1,429,430]]],[17,16,16,430,446,[[441,1,1,430,431],[444,1,1,431,432],[447,1,1,432,433],[450,2,2,433,435],[455,2,2,435,437],[458,1,1,437,438],[463,2,2,438,440],[466,1,1,440,441],[467,1,1,441,442],[472,1,1,442,443],[473,2,2,443,445],[475,1,1,445,446]]],[18,13,13,446,459,[[479,1,1,446,447],[487,1,1,447,448],[495,1,1,448,449],[498,1,1,449,450],[510,1,1,450,451],[522,1,1,451,452],[545,1,1,452,453],[555,1,1,453,454],[565,1,1,454,455],[581,2,2,455,457],[583,1,1,457,458],[604,1,1,458,459]]],[19,4,4,459,463,[[629,1,1,459,460],[631,1,1,460,461],[653,1,1,461,462],[656,1,1,462,463]]],[20,1,1,463,464,[[661,1,1,463,464]]],[21,1,1,464,465,[[673,1,1,464,465]]],[22,12,11,465,476,[[684,1,1,465,466],[691,1,1,466,467],[694,2,2,467,469],[698,1,1,469,470],[706,1,1,470,471],[708,3,2,471,473],[727,1,1,473,474],[736,1,1,474,475],[744,1,1,475,476]]],[23,22,22,476,498,[[745,1,1,476,477],[752,1,1,477,478],[754,1,1,478,479],[760,1,1,479,480],[764,1,1,480,481],[766,1,1,481,482],[768,1,1,482,483],[772,1,1,483,484],[773,1,1,484,485],[774,3,3,485,488],[782,2,2,488,490],[783,2,2,490,492],[786,1,1,492,493],[788,1,1,493,494],[792,1,1,494,495],[795,2,2,495,497],[796,1,1,497,498]]],[25,35,33,498,531,[[802,2,2,498,500],[803,1,1,500,501],[806,1,1,501,502],[808,1,1,502,503],[812,1,1,503,504],[813,1,1,504,505],[814,1,1,505,506],[816,1,1,506,507],[817,1,1,507,508],[821,2,2,508,510],[823,1,1,510,511],[824,1,1,511,512],[825,2,2,512,514],[826,1,1,514,515],[830,2,2,515,517],[833,1,1,517,518],[835,1,1,518,519],[840,3,2,519,521],[844,2,2,521,523],[845,1,1,523,524],[846,6,5,524,529],[848,1,1,529,530],[849,1,1,530,531]]],[26,8,6,531,537,[[850,2,2,531,533],[857,4,2,533,535],[860,2,2,535,537]]],[27,2,2,537,539,[[862,1,1,537,538],[863,1,1,538,539]]],[28,1,1,539,540,[[878,1,1,539,540]]],[29,1,1,540,541,[[884,1,1,540,541]]],[30,1,1,541,542,[[888,1,1,541,542]]],[31,1,1,542,543,[[892,1,1,542,543]]],[32,5,5,543,548,[[893,1,1,543,544],[897,1,1,544,545],[898,1,1,545,546],[899,2,2,546,548]]],[33,1,1,548,549,[[900,1,1,548,549]]],[34,1,1,549,550,[[903,1,1,549,550]]],[35,1,1,550,551,[[908,1,1,550,551]]],[37,8,4,551,555,[[918,1,1,551,552],[920,4,1,552,553],[923,2,1,553,554],[924,1,1,554,555]]],[38,1,1,555,556,[[926,1,1,555,556]]]],[37,39,47,49,58,66,67,72,74,77,134,157,161,167,193,199,202,223,226,245,403,413,469,471,481,530,558,562,577,584,797,846,941,975,987,1022,1111,1186,1189,1197,1198,1209,1213,1268,1530,1542,1561,1564,1577,1587,1610,1703,1706,1723,1782,1823,1825,1826,1849,1862,1963,1966,1967,1974,1979,1989,2029,2043,2047,2160,2214,2226,2228,2230,2231,2274,2301,2357,2358,2370,2384,2415,2418,2439,2446,2466,2612,2621,2623,2625,2626,2629,2635,2665,2669,2747,2748,2755,2759,2765,2772,2779,2784,2801,2802,2812,2813,2820,2842,2845,2848,2855,2864,2882,2893,2894,2895,2897,2904,2941,2947,2963,2972,3019,3029,3030,3034,3036,3108,3127,3137,3138,3139,3140,3141,3149,3215,3220,3243,3245,3247,3248,3320,3357,3367,3375,3376,3387,3391,3399,3481,3491,3502,3513,3514,3530,3532,3567,3579,3599,3794,3809,3818,3842,3977,4022,4041,4049,4098,4108,4114,4146,4156,4209,4283,4284,4286,4289,4319,4321,4341,4381,4398,4554,4692,4694,4699,4701,4711,4713,4815,4915,4921,4942,5040,5046,5129,5169,5173,5178,5236,5243,5277,5289,5346,5374,5406,5428,5446,5552,5579,5621,5666,5870,5912,5926,5927,5929,5930,5967,5977,5980,5981,5987,6024,6060,6072,6084,6086,6087,6385,6470,6533,6562,6566,6637,6675,6692,6697,6699,6717,6743,6769,6797,6928,7040,7068,7075,7079,7092,7094,7099,7103,7123,7125,7134,7163,7165,7202,7213,7255,7260,7313,7363,7450,7519,7654,7658,7736,7795,7847,7851,7931,7951,7955,8024,8026,8213,8276,8347,8413,8520,8553,8566,8567,8570,8590,8704,8707,8756,8790,8884,8904,8968,8969,8995,9071,9134,9261,9285,9323,9340,9389,9427,9514,9526,9574,9575,9625,9701,9719,9720,9756,9771,9807,9817,9834,9863,9898,10127,10138,10181,10201,10241,10425,10427,10430,10446,10524,10584,10618,10620,10621,10622,10625,10629,10643,10644,10645,10646,10647,10662,10688,10695,10727,10728,10736,10739,10749,10750,10755,10757,10762,10808,10816,10824,10894,10913,10955,11018,11021,11078,11087,11104,11119,11123,11178,11225,11227,11229,11279,11291,11353,11354,11355,11455,11483,11498,11501,11519,11534,11540,11554,11575,11579,11584,11591,11601,11606,11639,11660,11717,11735,11750,11769,11796,11803,11804,11805,11857,11945,11946,11966,11990,12097,12180,12221,12222,12223,12255,12275,12276,12296,12298,12299,12394,12397,12483,12493,12510,12580,12589,12603,12624,12652,12677,12679,12684,12696,12816,12994,13054,13150,13225,13233,13330,13341,13434,13508,13509,13595,13640,13778,13794,13806,13870,13953,14059,14163,14195,14374,14605,14931,15115,15317,15585,15606,15662,16126,16455,16513,17153,17244,17379,17577,17775,17915,17973,17979,18034,18171,18218,18228,18653,18798,18943,18947,19156,19206,19345,19425,19465,19529,19626,19657,19674,19686,19688,19905,19908,19927,19933,19986,20038,20124,20238,20267,20301,20468,20477,20498,20550,20588,20672,20696,20725,20757,20782,20929,20936,20991,21055,21062,21068,21090,21191,21198,21254,21338,21458,21476,21595,21597,21605,21631,21633,21634,21644,21645,21691,21716,21740,21757,21970,21971,22041,22071,22105,22123,22350,22460,22521,22573,22590,22635,22656,22666,22681,22695,22738,22838,22986,23020,23061,23089,23111]]],["off",[1,1,[[11,1,1,0,1,[[313,1,1,0,1]]]],[9549]]],["on",[6,6,[[6,1,1,0,1,[[217,1,1,0,1]]],[12,1,1,1,2,[[347,1,1,1,2]]],[23,3,3,2,5,[[755,1,1,2,3],[764,2,2,3,5]]],[25,1,1,5,6,[[848,1,1,5,6]]]],[6711,10667,19246,19432,19434,21681]]],["or",[1,1,[[25,1,1,0,1,[[845,1,1,0,1]]]],[21630]]],["out",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[8993]]],["over",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7668]]],["part",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22067]]],["since",[5,5,[[4,1,1,0,1,[[156,1,1,0,1]]],[9,1,1,1,2,[[273,1,1,1,2]]],[11,1,1,2,3,[[333,1,1,2,3]]],[12,1,1,3,4,[[354,1,1,3,4]]],[17,1,1,4,5,[[455,1,1,4,5]]]],[5036,8191,10134,10868,13330]]],["somewhat",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11404]]],["than",[80,77,[[0,6,6,0,6,[[18,1,1,0,1],[25,1,1,1,2],[37,1,1,2,3],[38,1,1,3,4],[40,1,1,4,5],[47,1,1,5,6]]],[1,1,1,6,7,[[50,1,1,6,7]]],[2,10,10,7,17,[[102,9,9,7,16],[103,1,1,16,17]]],[3,2,2,17,19,[[129,1,1,17,18],[130,1,1,18,19]]],[4,8,8,19,27,[[153,1,1,19,20],[156,1,1,20,21],[159,2,2,21,23],[161,2,2,23,25],[163,1,1,25,26],[172,1,1,26,27]]],[5,1,1,27,28,[[196,1,1,27,28]]],[6,1,1,28,29,[[225,1,1,28,29]]],[7,2,2,29,31,[[234,2,2,29,31]]],[8,3,3,31,34,[[244,1,1,31,32],[250,1,1,32,33],[259,1,1,33,34]]],[9,4,4,34,38,[[285,1,1,34,35],[286,2,2,35,37],[289,1,1,37,38]]],[10,5,4,38,42,[[292,1,1,38,39],[310,3,2,39,41],[311,1,1,41,42]]],[11,1,1,42,43,[[333,1,1,42,43]]],[12,1,1,43,44,[[361,1,1,43,44]]],[13,2,2,44,46,[[387,1,1,44,45],[399,1,1,45,46]]],[16,1,1,46,47,[[426,1,1,46,47]]],[17,7,7,47,54,[[442,1,1,47,48],[444,1,1,48,49],[446,1,1,49,50],[465,2,2,50,52],[467,1,1,52,53],[470,1,1,53,54]]],[18,2,2,54,56,[[538,1,1,54,55],[619,1,1,55,56]]],[20,7,7,56,63,[[660,1,1,56,57],[662,2,2,57,59],[664,3,3,59,62],[667,1,1,62,63]]],[23,1,1,63,64,[[775,1,1,63,64]]],[25,8,6,64,70,[[806,3,2,64,66],[817,4,3,66,69],[824,1,1,69,70]]],[26,4,4,70,74,[[850,2,2,70,72],[857,1,1,72,73],[860,1,1,73,74]]],[29,1,1,74,75,[[884,1,1,74,75]]],[34,1,1,75,76,[[903,1,1,75,76]]],[36,1,1,76,77,[[910,1,1,76,77]]]],[466,708,1145,1158,1235,1470,1541,3056,3072,3073,3077,3078,3082,3083,3084,3086,3148,4106,4120,4920,5042,5112,5128,5158,5171,5231,5428,6066,6931,7182,7184,7393,7588,7856,8554,8559,8560,8676,8802,9431,9433,9453,10128,11019,11637,11917,12721,13014,13076,13117,13558,13565,13632,13725,14821,16292,17358,17383,17390,17420,17425,17427,17479,19702,20552,20553,20809,20813,20814,21018,21747,21752,21964,22049,22452,22744,22864]]],["that",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5821]]],["theirs",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20038]]],["them",[5,5,[[5,2,2,0,2,[[205,2,2,0,2]]],[10,2,2,2,4,[[308,1,1,2,3],[312,1,1,3,4]]],[22,1,1,4,5,[[744,1,1,4,5]]]],[6330,6368,9381,9493,18941]]],["thereat",[2,2,[[1,2,2,0,2,[[79,1,1,0,1],[89,1,1,1,2]]]],[2401,2738]]],["therefrom",[3,3,[[5,1,1,0,1,[[209,1,1,0,1]]],[11,2,2,1,3,[[315,1,1,1,2],[325,1,1,2,3]]]],[6466,9579,9873]]],["thereof",[21,19,[[0,2,2,0,2,[[1,1,1,0,1],[2,1,1,1,2]]],[1,2,2,2,4,[[54,1,1,2,3],[59,1,1,3,4]]],[2,4,4,4,8,[[92,1,1,4,5],[95,1,1,5,6],[97,1,1,6,7],[98,1,1,7,8]]],[4,4,2,8,10,[[178,3,1,8,9],[180,1,1,9,10]]],[5,1,1,10,11,[[209,1,1,10,11]]],[11,1,1,11,12,[[316,1,1,11,12]]],[17,2,2,12,14,[[439,1,1,12,13],[466,1,1,13,14]]],[20,2,2,14,16,[[663,1,1,14,15],[664,1,1,15,16]]],[22,1,1,16,17,[[722,1,1,16,17]]],[25,2,2,17,19,[[806,1,1,17,18],[816,1,1,18,19]]]],[47,60,1640,1803,2792,2865,2928,2970,5580,5642,6474,9642,12942,13605,17416,17419,18548,20550,20757]]],["thereout",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6948]]],["therewith",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17339]]],["through",[2,2,[[21,1,1,0,1,[[672,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]]],[17563,18171]]],["to",[4,3,[[16,1,1,0,1,[[431,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[18,2,1,2,3,[[505,2,1,2,3]]]],[12799,13131,14300]]],["unto",[3,3,[[3,1,1,0,1,[[132,1,1,0,1]]],[17,1,1,1,2,[[448,1,1,1,2]]],[25,1,1,2,3,[[835,1,1,2,3]]]],[4203,13155,21331]]],["we",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6455]]],["whereby",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14605]]],["whether",[2,2,[[13,1,1,0,1,[[381,1,1,0,1]]],[25,1,1,1,2,[[845,1,1,1,2]]]],[11503,21630]]],["with",[12,12,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[13,1,1,2,3,[[394,1,1,2,3]]],[17,3,3,3,6,[[450,1,1,3,4],[451,1,1,4,5],[465,1,1,5,6]]],[18,1,1,6,7,[[550,1,1,6,7]]],[20,1,1,7,8,[[664,1,1,7,8]]],[22,1,1,8,9,[[735,1,1,8,9]]],[23,1,1,9,10,[[782,1,1,9,10]]],[25,1,1,10,11,[[833,1,1,10,11]]],[29,1,1,11,12,[[882,1,1,11,12]]]],[688,1838,11779,13214,13254,13587,15039,17420,18773,19922,21252,22415]]],["without",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3567]]],["your",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23098]]]]},{"k":"H4481","v":[["*",[114,85,[[14,23,21,0,21,[[406,5,5,0,5],[407,6,5,5,10],[408,7,6,10,16],[409,5,5,16,21]]],[23,2,1,21,22,[[754,2,1,21,22]]],[26,89,63,22,85,[[851,25,18,22,40],[852,6,5,40,45],[853,15,11,45,56],[854,11,7,56,63],[855,15,10,63,73],[856,17,12,73,85]]]],[12122,12125,12129,12131,12133,12145,12146,12148,12150,12151,12155,12156,12157,12159,12162,12165,12186,12187,12193,12196,12199,19212,21763,21764,21766,21773,21774,21776,21778,21781,21783,21788,21791,21793,21797,21799,21800,21803,21805,21807,21822,21824,21829,21833,21836,21843,21849,21850,21851,21853,21860,21862,21863,21868,21869,21870,21876,21877,21887,21893,21894,21895,21898,21907,21909,21912,21915,21917,21918,21925,21928,21931,21932,21936,21937,21940,21941,21943,21944,21949,21950,21952,21953,21956,21957]]],["+",[31,29,[[14,5,5,0,5,[[406,2,2,0,2],[407,1,1,2,3],[408,1,1,3,4],[409,1,1,4,5]]],[23,1,1,5,6,[[754,1,1,5,6]]],[26,25,23,6,29,[[851,6,6,6,12],[852,2,2,12,14],[853,4,4,14,18],[854,3,3,18,21],[855,6,4,21,25],[856,4,4,25,29]]]],[12122,12133,12145,12159,12187,19212,21764,21773,21776,21778,21800,21803,21829,21836,21843,21862,21863,21870,21893,21895,21898,21907,21909,21915,21931,21936,21941,21949,21953]]],["Of",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21805]]],["according",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12165]]],["after",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12146]]],["by",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12196]]],["for",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21893]]],["from",[29,26,[[14,3,3,0,3,[[406,1,1,0,1],[408,2,2,1,3]]],[23,1,1,3,4,[[754,1,1,3,4]]],[26,25,22,4,26,[[851,2,2,4,6],[852,1,1,6,7],[853,10,8,7,15],[854,3,2,15,17],[855,2,2,17,19],[856,7,7,19,26]]]],[12131,12157,12162,19212,21763,21766,21824,21850,21851,21853,21860,21862,21868,21869,21870,21894,21895,21925,21932,21936,21937,21940,21943,21952,21956,21957]]],["of",[36,31,[[14,9,8,0,8,[[406,2,2,0,2],[407,3,2,2,4],[408,2,2,4,6],[409,2,2,6,8]]],[26,27,23,8,31,[[851,7,7,8,15],[852,3,3,15,18],[853,1,1,18,19],[854,4,3,19,22],[855,7,4,22,26],[856,5,5,26,31]]]],[12125,12129,12148,12151,12155,12156,12186,12193,21766,21774,21781,21783,21793,21799,21807,21822,21824,21833,21849,21876,21877,21887,21912,21917,21918,21928,21941,21944,21949,21950,21957]]],["part",[6,3,[[26,6,3,0,3,[[851,6,3,0,3]]]],[21791,21799,21800]]],["partly",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21800]]],["since",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12150]]],["than",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[856,1,1,1,2]]]],[21788,21953]]],["to",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[851,1,1,1,2]]]],[12165,21797]]],["upon",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12199]]]]},{"k":"H4482","v":[["*",[2,2,[[18,2,2,0,2,[[545,1,1,0,1],[627,1,1,1,2]]]],[14923,16398]]],["instruments",[1,1,[[18,1,1,0,1,[[627,1,1,0,1]]]],[16398]]],["same",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14923]]]]},{"k":"H4483","v":[["*",[5,5,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,4,4,1,5,[[851,2,2,1,3],[852,1,1,3,4],[854,1,1,4,5]]]],[12198,21782,21807,21819,21900]]],["numbered",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21900]]],["ordained",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21782]]],["set",[3,3,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,2,2,1,3,[[851,1,1,1,2],[852,1,1,2,3]]]],[12198,21807,21819]]]]},{"k":"H4484","v":[["MENE",[3,2,[[26,3,2,0,2,[[854,3,2,0,2]]]],[21899,21900]]]]},{"k":"H4485","v":[["musick",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20417]]]]},{"k":"H4486","v":[["*",[4,4,[[26,4,4,0,4,[[851,1,1,0,1],[853,2,2,1,3],[854,1,1,3,4]]]],[21779,21871,21873,21886]]],["knowledge",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[854,1,1,1,2]]]],[21779,21886]]],["reason",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21873]]],["understanding",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21871]]]]},{"k":"H4487","v":[["*",[28,27,[[0,2,1,0,1,[[12,2,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[9,1,1,2,3,[[290,1,1,2,3]]],[10,3,3,3,6,[[293,1,1,3,4],[298,1,1,4,5],[310,1,1,5,6]]],[11,1,1,6,7,[[324,1,1,6,7]]],[12,4,4,7,11,[[346,1,1,7,8],[358,2,2,8,10],[364,1,1,10,11]]],[13,1,1,11,12,[[371,1,1,11,12]]],[17,1,1,12,13,[[442,1,1,12,13]]],[18,3,3,13,16,[[538,1,1,13,14],[567,1,1,14,15],[624,1,1,15,16]]],[20,1,1,16,17,[[659,1,1,16,17]]],[22,2,2,17,19,[[731,1,1,17,18],[743,1,1,18,19]]],[23,1,1,19,20,[[777,1,1,19,20]]],[26,3,3,20,23,[[850,3,3,20,23]]],[31,4,4,23,27,[[889,1,1,23,24],[892,3,3,24,27]]]],[334,4426,8693,8824,8990,9433,9860,10644,10935,10951,11133,11274,13011,14826,15390,16355,17330,18723,18909,19788,21742,21747,21748,22548,22574,22575,22576]]],["+",[6,6,[[0,1,1,0,1,[[12,1,1,0,1]]],[9,1,1,1,2,[[290,1,1,1,2]]],[10,1,1,2,3,[[310,1,1,2,3]]],[11,1,1,3,4,[[324,1,1,3,4]]],[12,1,1,4,5,[[358,1,1,4,5]]],[26,1,1,5,6,[[850,1,1,5,6]]]],[334,8693,9433,9860,10935,21747]]],["appointed",[3,3,[[12,1,1,0,1,[[346,1,1,0,1]]],[17,1,1,1,2,[[442,1,1,1,2]]],[26,1,1,2,3,[[850,1,1,2,3]]]],[10644,13011,21742]]],["count",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4426]]],["number",[3,3,[[12,1,1,0,1,[[364,1,1,0,1]]],[18,1,1,1,2,[[567,1,1,1,2]]],[22,1,1,2,3,[[743,1,1,2,3]]]],[11133,15390,18909]]],["numbered",[7,7,[[0,1,1,0,1,[[12,1,1,0,1]]],[10,2,2,1,3,[[293,1,1,1,2],[298,1,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[13,1,1,4,5,[[371,1,1,4,5]]],[20,1,1,5,6,[[659,1,1,5,6]]],[22,1,1,6,7,[[731,1,1,6,7]]]],[334,8824,8990,10951,11274,17330,18723]]],["prepare",[1,1,[[18,1,1,0,1,[[538,1,1,0,1]]]],[14826]]],["prepared",[4,4,[[31,4,4,0,4,[[889,1,1,0,1],[892,3,3,1,4]]]],[22548,22574,22575,22576]]],["set",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21748]]],["telleth",[2,2,[[18,1,1,0,1,[[624,1,1,0,1]]],[23,1,1,1,2,[[777,1,1,1,2]]]],[16355,19788]]]]},{"k":"H4488","v":[["*",[5,5,[[10,1,1,0,1,[[300,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,2,2,2,4,[[419,2,2,2,4]]],[25,1,1,4,5,[[846,1,1,4,5]]]],[9096,12096,12491,12492,21642]]],["maneh",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21642]]],["pound",[4,4,[[10,1,1,0,1,[[300,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,2,2,2,4,[[419,2,2,2,4]]]],[9096,12096,12491,12492]]]]},{"k":"H4489","v":[["times",[2,2,[[0,2,2,0,2,[[30,2,2,0,2]]]],[880,914]]]]},{"k":"H4490","v":[["*",[12,12,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]],[8,3,3,2,5,[[236,2,2,2,4],[244,1,1,4,5]]],[13,1,1,5,6,[[397,1,1,5,6]]],[15,2,2,6,8,[[420,2,2,6,8]]],[16,3,3,8,11,[[427,1,1,8,9],[434,2,2,9,11]]],[23,1,1,11,12,[[757,1,1,11,12]]]],[2362,2946,7216,7217,7414,11873,12503,12505,12733,12853,12856,19291]]],["belonged",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12733]]],["part",[2,2,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]]],[2362,2946]]],["portion",[3,3,[[8,2,2,0,2,[[236,1,1,0,1],[244,1,1,1,2]]],[23,1,1,2,3,[[757,1,1,2,3]]]],[7217,7414,19291]]],["portions",[6,6,[[8,1,1,0,1,[[236,1,1,0,1]]],[13,1,1,1,2,[[397,1,1,1,2]]],[15,2,2,2,4,[[420,2,2,2,4]]],[16,2,2,4,6,[[434,2,2,4,6]]]],[7216,11873,12503,12505,12853,12856]]]]},{"k":"H4491","v":[["driving",[2,1,[[11,2,1,0,1,[[321,2,1,0,1]]]],[9776]]]]},{"k":"H4492","v":[["dens",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6656]]]]},{"k":"H4493","v":[["shaking",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14585]]]]},{"k":"H4494","v":[["*",[7,7,[[0,1,1,0,1,[[7,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[12,1,1,3,4,[[343,1,1,3,4]]],[18,1,1,4,5,[[593,1,1,4,5]]],[22,1,1,5,6,[[712,1,1,5,6]]],[24,1,1,6,7,[[797,1,1,6,7]]]],[192,5676,7173,10485,15855,18317,20313]]],["+",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10485]]],["rest",[6,6,[[0,1,1,0,1,[[7,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[18,1,1,3,4,[[593,1,1,3,4]]],[22,1,1,4,5,[[712,1,1,4,5]]],[24,1,1,5,6,[[797,1,1,5,6]]]],[192,5676,7173,15855,18317,20313]]]]},{"k":"H4495","v":[["Manoah",[18,14,[[6,18,14,0,14,[[223,17,13,0,13],[226,1,1,13,14]]]],[6886,6892,6893,6895,6896,6897,6899,6900,6901,6903,6904,6905,6906,6980]]]]},{"k":"H4496","v":[["*",[21,21,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[126,1,1,1,2]]],[4,1,1,2,3,[[164,1,1,2,3]]],[6,1,1,3,4,[[230,1,1,3,4]]],[7,1,1,4,5,[[232,1,1,4,5]]],[9,1,1,5,6,[[280,1,1,5,6]]],[10,1,1,6,7,[[298,1,1,6,7]]],[12,2,2,7,9,[[359,1,1,7,8],[365,1,1,8,9]]],[18,4,4,9,13,[[500,1,1,9,10],[572,1,1,10,11],[609,2,2,11,13]]],[22,4,4,13,17,[[689,1,1,13,14],[706,1,1,14,15],[710,1,1,15,16],[744,1,1,16,17]]],[23,2,2,17,19,[[789,1,1,17,18],[795,1,1,18,19]]],[32,1,1,19,20,[[894,1,1,19,20]]],[37,1,1,20,21,[[919,1,1,20,21]]]],[1488,4021,5249,7097,7136,8373,9041,10973,11145,14237,15465,16159,16165,17894,18176,18277,18923,20043,20271,22605,23000]]],["comfortable",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8373]]],["ease",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7097]]],["place",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[4021]]],["places",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18277]]],["quiet",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20271]]],["rest",[15,15,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[164,1,1,1,2]]],[7,1,1,2,3,[[232,1,1,2,3]]],[10,1,1,3,4,[[298,1,1,3,4]]],[12,2,2,4,6,[[359,1,1,4,5],[365,1,1,5,6]]],[18,3,3,6,9,[[572,1,1,6,7],[609,2,2,7,9]]],[22,3,3,9,12,[[689,1,1,9,10],[706,1,1,10,11],[744,1,1,11,12]]],[23,1,1,12,13,[[789,1,1,12,13]]],[32,1,1,13,14,[[894,1,1,13,14]]],[37,1,1,14,15,[[919,1,1,14,15]]]],[1488,5249,7136,9041,10973,11145,15465,16159,16165,17894,18176,18923,20043,22605,23000]]],["still",[1,1,[[18,1,1,0,1,[[500,1,1,0,1]]]],[14237]]]]},{"k":"H4497","v":[["son",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17245]]]]},{"k":"H4498","v":[["*",[8,8,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[446,1,1,1,2]]],[18,2,2,2,4,[[536,1,1,2,3],[619,1,1,3,4]]],[23,3,3,4,7,[[760,1,1,4,5],[769,1,1,5,6],[790,1,1,6,7]]],[29,1,1,7,8,[[880,1,1,7,8]]]],[8605,13128,14806,16290,19355,19569,20050,22393]]],["+",[3,3,[[17,1,1,0,1,[[446,1,1,0,1]]],[23,2,2,1,3,[[769,1,1,1,2],[790,1,1,2,3]]]],[13128,19569,20050]]],["flight",[1,1,[[29,1,1,0,1,[[880,1,1,0,1]]]],[22393]]],["refuge",[4,4,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,2,2,1,3,[[536,1,1,1,2],[619,1,1,2,3]]],[23,1,1,3,4,[[760,1,1,3,4]]]],[8605,14806,16290,19355]]]]},{"k":"H4499","v":[["*",[2,2,[[2,1,1,0,1,[[115,1,1,0,1]]],[22,1,1,1,2,[[730,1,1,1,2]]]],[3560,18708]]],["fleeing",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3560]]],["flight",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18708]]]]},{"k":"H4500","v":[["beam",[4,4,[[8,1,1,0,1,[[252,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]],[12,2,2,2,4,[[348,1,1,2,3],[357,1,1,3,4]]]],[7625,8599,10696,10931]]]]},{"k":"H4501","v":[["*",[42,31,[[1,20,16,0,16,[[74,7,5,0,5],[75,1,1,5,6],[79,1,1,6,7],[80,1,1,7,8],[84,1,1,8,9],[86,6,4,9,13],[88,1,1,13,14],[89,2,2,14,16]]],[2,1,1,16,17,[[113,1,1,16,17]]],[3,6,5,17,22,[[119,1,1,17,18],[120,1,1,18,19],[124,4,3,19,22]]],[10,1,1,22,23,[[297,1,1,22,23]]],[11,1,1,23,24,[[316,1,1,23,24]]],[12,7,1,24,25,[[365,7,1,24,25]]],[13,3,3,25,28,[[370,2,2,25,27],[379,1,1,27,28]]],[23,1,1,28,29,[[796,1,1,28,29]]],[37,2,2,29,31,[[914,2,2,29,31]]]],[2226,2227,2228,2229,2230,2270,2409,2428,2545,2621,2622,2623,2624,2701,2711,2731,3450,3723,3752,3941,3942,3943,8983,9613,11158,11253,11266,11464,20295,22924,22933]]],["+",[4,1,[[12,4,1,0,1,[[365,4,1,0,1]]]],[11158]]],["candlestick",[32,27,[[1,20,16,0,16,[[74,7,5,0,5],[75,1,1,5,6],[79,1,1,6,7],[80,1,1,7,8],[84,1,1,8,9],[86,6,4,9,13],[88,1,1,13,14],[89,2,2,14,16]]],[2,1,1,16,17,[[113,1,1,16,17]]],[3,6,5,17,22,[[119,1,1,17,18],[120,1,1,18,19],[124,4,3,19,22]]],[11,1,1,22,23,[[316,1,1,22,23]]],[12,1,1,23,24,[[365,1,1,23,24]]],[13,1,1,24,25,[[379,1,1,24,25]]],[37,2,2,25,27,[[914,2,2,25,27]]]],[2226,2227,2228,2229,2230,2270,2409,2428,2545,2621,2622,2623,2624,2701,2711,2731,3450,3723,3752,3941,3942,3943,9613,11158,11464,22924,22933]]],["candlesticks",[6,5,[[10,1,1,0,1,[[297,1,1,0,1]]],[12,2,1,1,2,[[365,2,1,1,2]]],[13,2,2,2,4,[[370,2,2,2,4]]],[23,1,1,4,5,[[796,1,1,4,5]]]],[8983,11158,11253,11266,20295]]]]},{"k":"H4502","v":[["crowned",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22729]]]]},{"k":"H4503","v":[["*",[211,194,[[0,12,12,0,12,[[3,3,3,0,3],[31,4,4,3,7],[32,1,1,7,8],[42,4,4,8,12]]],[1,3,3,12,15,[[78,1,1,12,13],[79,1,1,13,14],[89,1,1,14,15]]],[2,36,33,15,48,[[91,15,13,15,28],[94,1,1,28,29],[95,6,5,29,34],[96,3,3,34,37],[98,2,2,37,39],[99,1,1,39,40],[103,4,4,40,44],[112,4,4,44,48]]],[3,62,57,48,105,[[120,1,1,48,49],[121,7,4,49,53],[122,2,2,53,55],[123,13,13,55,68],[124,1,1,68,69],[131,4,4,69,73],[132,1,1,73,74],[134,1,1,74,75],[144,10,9,75,84],[145,22,21,84,105]]],[5,2,2,105,107,[[208,2,2,105,107]]],[6,7,6,107,113,[[213,4,3,107,110],[216,1,1,110,111],[223,2,2,111,113]]],[8,6,5,113,118,[[237,3,2,113,115],[238,1,1,115,116],[245,1,1,116,117],[261,1,1,117,118]]],[9,2,2,118,120,[[274,2,2,118,120]]],[10,6,5,120,125,[[294,1,1,120,121],[298,2,1,121,122],[300,1,1,122,123],[308,2,2,123,125]]],[11,10,8,125,133,[[315,1,1,125,126],[320,2,2,126,128],[328,4,2,128,130],[329,2,2,130,132],[332,1,1,132,133]]],[12,5,5,133,138,[[353,1,1,133,134],[355,2,2,134,136],[358,1,1,136,137],[360,1,1,137,138]]],[13,6,6,138,144,[[373,1,1,138,139],[375,1,1,139,140],[383,2,2,140,142],[392,1,1,142,143],[398,1,1,143,144]]],[14,2,2,144,146,[[411,2,2,144,146]]],[15,3,3,146,149,[[422,1,1,146,147],[425,2,2,147,149]]],[18,6,6,149,155,[[497,1,1,149,150],[517,1,1,150,151],[522,1,1,151,152],[549,1,1,152,153],[573,1,1,153,154],[618,1,1,154,155]]],[22,8,7,155,162,[[679,1,1,155,156],[697,1,1,156,157],[717,1,1,157,158],[721,1,1,158,159],[735,1,1,159,160],[744,3,2,160,162]]],[23,4,4,162,166,[[758,1,1,162,163],[761,1,1,163,164],[777,1,1,164,165],[785,1,1,165,166]]],[25,15,12,166,178,[[843,1,1,166,167],[845,1,1,167,168],[846,5,4,168,172],[847,8,6,172,178]]],[26,2,2,178,180,[[858,2,2,178,180]]],[27,1,1,180,181,[[871,1,1,180,181]]],[28,3,3,181,184,[[876,2,2,181,183],[877,1,1,183,184]]],[29,2,2,184,186,[[883,2,2,184,186]]],[35,1,1,186,187,[[908,1,1,186,187]]],[38,7,7,187,194,[[925,3,3,187,190],[926,2,2,190,192],[927,2,2,192,194]]]],[82,83,84,941,946,948,949,970,1301,1305,1315,1316,2377,2391,2736,2763,2765,2766,2767,2768,2769,2770,2771,2772,2773,2775,2776,2777,2843,2863,2864,2869,2870,2872,2888,2889,2916,2957,2970,2989,3121,3131,3132,3142,3415,3418,3420,3439,3759,3807,3810,3817,3818,3838,3840,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3937,3947,4157,4159,4162,4177,4209,4266,4582,4585,4586,4589,4590,4597,4603,4605,4608,4611,4614,4617,4619,4622,4624,4626,4627,4629,4630,4632,4633,4635,4636,4638,4639,4641,4642,4645,4646,4647,6449,6455,6583,6585,6586,6672,6903,6907,7257,7269,7290,7445,7924,8211,8215,8865,9049,9104,9370,9377,9596,9735,9736,9976,9978,9986,9987,10110,10849,10892,10896,10957,11012,11331,11388,11528,11534,11740,11898,12241,12242,12582,12676,12680,14185,14531,14609,15010,15473,16278,17667,18025,18413,18528,18771,18925,18942,19305,19383,19793,19962,21565,21628,21645,21647,21654,21655,21660,21662,21666,21669,21670,21675,22009,22015,22231,22300,22304,22325,22445,22448,22830,23099,23100,23102,23115,23116,23123,23124]]],["+",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2771]]],["gift",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14609]]],["gifts",[6,6,[[9,2,2,0,2,[[274,2,2,0,2]]],[12,2,2,2,4,[[355,2,2,2,4]]],[13,2,2,4,6,[[392,1,1,4,5],[398,1,1,5,6]]]],[8211,8215,10892,10896,11740,11898]]],["meat",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2763]]],["oblation",[5,5,[[22,2,2,0,2,[[697,1,1,0,1],[744,1,1,1,2]]],[23,1,1,2,3,[[758,1,1,2,3]]],[26,2,2,3,5,[[858,2,2,3,5]]]],[18025,18925,19305,22009,22015]]],["oblations",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17667]]],["offering",[149,136,[[0,3,3,0,3,[[3,3,3,0,3]]],[1,3,3,3,6,[[78,1,1,3,4],[79,1,1,4,5],[89,1,1,5,6]]],[2,34,31,6,37,[[91,13,11,6,17],[94,1,1,17,18],[95,6,5,18,23],[96,3,3,23,26],[98,2,2,26,28],[99,1,1,28,29],[103,4,4,29,33],[112,4,4,33,37]]],[3,61,56,37,93,[[120,1,1,37,38],[121,7,4,38,42],[122,2,2,42,44],[123,13,13,44,57],[124,1,1,57,58],[131,4,4,58,62],[132,1,1,62,63],[134,1,1,63,64],[144,10,9,64,73],[145,21,20,73,93]]],[5,1,1,93,94,[[208,1,1,93,94]]],[6,2,2,94,96,[[223,2,2,94,96]]],[8,4,4,96,100,[[237,2,2,96,98],[238,1,1,98,99],[261,1,1,99,100]]],[11,5,3,100,103,[[315,1,1,100,101],[328,4,2,101,103]]],[12,3,3,103,106,[[353,1,1,103,104],[358,1,1,104,105],[360,1,1,105,106]]],[15,2,2,106,108,[[422,1,1,106,107],[425,1,1,107,108]]],[18,2,2,108,110,[[517,1,1,108,109],[573,1,1,109,110]]],[22,4,3,110,113,[[721,1,1,110,111],[735,1,1,111,112],[744,2,1,112,113]]],[25,14,12,113,125,[[843,1,1,113,114],[845,1,1,114,115],[846,4,4,115,119],[847,8,6,119,125]]],[28,3,3,125,128,[[876,2,2,125,127],[877,1,1,127,128]]],[35,1,1,128,129,[[908,1,1,128,129]]],[38,7,7,129,136,[[925,3,3,129,132],[926,2,2,132,134],[927,2,2,134,136]]]],[82,83,84,2377,2391,2736,2765,2766,2767,2768,2769,2770,2772,2773,2775,2776,2777,2843,2863,2864,2869,2870,2872,2888,2889,2916,2957,2970,2989,3121,3131,3132,3142,3415,3418,3420,3439,3759,3807,3810,3817,3818,3838,3840,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3937,3947,4157,4159,4162,4177,4209,4266,4582,4585,4586,4589,4590,4597,4603,4605,4608,4611,4614,4617,4619,4622,4624,4626,4627,4629,4630,4632,4633,4635,4636,4638,4639,4641,4642,4645,4646,6449,6903,6907,7257,7269,7290,7924,9596,9976,9978,10849,10957,11012,12582,12680,14531,15473,18528,18771,18942,21565,21628,21645,21647,21654,21655,21660,21662,21666,21669,21670,21675,22300,22304,22325,22830,23099,23100,23102,23115,23116,23123,23124]]],["offerings",[14,13,[[3,1,1,0,1,[[145,1,1,0,1]]],[5,1,1,1,2,[[208,1,1,1,2]]],[8,1,1,2,3,[[237,1,1,2,3]]],[10,2,1,3,4,[[298,2,1,3,4]]],[13,1,1,4,5,[[373,1,1,4,5]]],[15,1,1,5,6,[[425,1,1,5,6]]],[18,1,1,6,7,[[497,1,1,6,7]]],[23,3,3,7,10,[[761,1,1,7,8],[777,1,1,8,9],[785,1,1,9,10]]],[25,1,1,10,11,[[846,1,1,10,11]]],[29,2,2,11,13,[[883,2,2,11,13]]]],[4647,6455,7269,9049,11331,12676,14185,19383,19793,19962,21647,22445,22448]]],["present",[22,21,[[0,9,9,0,9,[[31,4,4,0,4],[32,1,1,4,5],[42,4,4,5,9]]],[6,5,4,9,13,[[213,4,3,9,12],[216,1,1,12,13]]],[10,1,1,13,14,[[300,1,1,13,14]]],[11,4,4,14,18,[[320,2,2,14,16],[329,1,1,16,17],[332,1,1,17,18]]],[13,1,1,18,19,[[375,1,1,18,19]]],[22,1,1,19,20,[[717,1,1,19,20]]],[27,1,1,20,21,[[871,1,1,20,21]]]],[941,946,948,949,970,1301,1305,1315,1316,6583,6585,6586,6672,9104,9735,9736,9987,10110,11388,18413,22231]]],["presents",[6,6,[[8,1,1,0,1,[[245,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]],[11,1,1,2,3,[[329,1,1,2,3]]],[13,2,2,3,5,[[383,2,2,3,5]]],[18,1,1,5,6,[[549,1,1,5,6]]]],[7445,8865,9986,11528,11534,15010]]],["sacrifice",[5,5,[[10,2,2,0,2,[[308,2,2,0,2]]],[14,2,2,2,4,[[411,2,2,2,4]]],[18,1,1,4,5,[[618,1,1,4,5]]]],[9370,9377,12241,12242,16278]]]]},{"k":"H4504","v":[["offerings",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12190]]]]},{"k":"H4505","v":[["Menahem",[8,8,[[11,8,8,0,8,[[327,8,8,0,8]]]],[9939,9941,9942,9944,9945,9946,9947,9948]]]]},{"k":"H4506","v":[["*",[4,4,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,3,3,1,4,[[338,1,1,1,2],[339,1,1,2,3],[345,1,1,3,4]]]],[1063,10292,10358,10581]]],["Manahath",[3,3,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,2,2,1,3,[[338,1,1,1,2],[345,1,1,2,3]]]],[1063,10292,10581]]],["Manahethites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10358]]]]},{"k":"H4507","v":[["number",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18908]]]]},{"k":"H4508","v":[["Minni",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20239]]]]},{"k":"H4509","v":[["Miniamin",[3,3,[[13,1,1,0,1,[[397,1,1,0,1]]],[15,2,2,1,3,[[424,2,2,1,3]]]],[11869,12641,12665]]]]},{"k":"H4510","v":[["number",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12168]]]]},{"k":"H4511","v":[["Minnith",[2,2,[[6,1,1,0,1,[[221,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[6862,21138]]]]},{"k":"H4512","v":[["perfection",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13232]]]]},{"k":"H4513","v":[["*",[29,29,[[0,1,1,0,1,[[29,1,1,0,1]]],[3,2,2,1,3,[[138,1,1,1,2],[140,1,1,2,3]]],[8,2,2,3,5,[[260,2,2,3,5]]],[9,1,1,5,6,[[279,1,1,5,6]]],[10,1,1,6,7,[[310,1,1,6,7]]],[15,1,1,7,8,[[421,1,1,7,8]]],[17,4,4,8,12,[[455,1,1,8,9],[457,1,1,9,10],[466,1,1,10,11],[473,1,1,11,12]]],[18,2,2,12,14,[[498,1,1,12,13],[561,1,1,13,14]]],[19,5,5,14,19,[[628,1,1,14,15],[630,1,1,15,16],[638,1,1,16,17],[650,1,1,17,18],[657,1,1,18,19]]],[20,1,1,19,20,[[660,1,1,19,20]]],[23,6,6,20,26,[[746,1,1,20,21],[747,1,1,21,22],[749,1,1,22,23],[775,1,1,23,24],[786,1,1,24,25],[792,1,1,25,26]]],[25,1,1,26,27,[[832,1,1,26,27]]],[28,1,1,27,28,[[876,1,1,27,28]]],[29,1,1,28,29,[[882,1,1,28,29]]]],[832,4391,4457,7887,7895,8330,9415,12531,13339,13396,13604,13808,14193,15270,16415,16482,16714,17057,17258,17343,18990,19005,19083,19707,19979,20090,21245,22304,22417]]],["+",[4,4,[[10,1,1,0,1,[[310,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]],[23,1,1,2,3,[[786,1,1,2,3]]],[29,1,1,3,4,[[882,1,1,3,4]]]],[9415,17258,19979,22417]]],["Refrain",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19707]]],["Withhold",[3,3,[[19,2,2,0,2,[[630,1,1,0,1],[650,1,1,1,2]]],[23,1,1,2,3,[[746,1,1,2,3]]]],[16482,17057,18990]]],["back",[3,3,[[3,1,1,0,1,[[140,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[4457,7895,20090]]],["hinder",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4391]]],["refrain",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16415]]],["restrained",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21245]]],["still",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13339]]],["withheld",[3,3,[[0,1,1,0,1,[[29,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]],[20,1,1,2,3,[[660,1,1,2,3]]]],[832,13604,17343]]],["withheldest",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12531]]],["withhold",[2,2,[[9,1,1,0,1,[[279,1,1,0,1]]],[18,1,1,1,2,[[561,1,1,1,2]]]],[8330,15270]]],["withholden",[7,7,[[8,1,1,0,1,[[260,1,1,0,1]]],[17,2,2,1,3,[[457,1,1,1,2],[473,1,1,2,3]]],[18,1,1,3,4,[[498,1,1,3,4]]],[23,2,2,4,6,[[747,1,1,4,5],[749,1,1,5,6]]],[28,1,1,6,7,[[876,1,1,6,7]]]],[7887,13396,13808,14193,19005,19083,22304]]],["withholdeth",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16714]]]]},{"k":"H4514","v":[["*",[6,6,[[15,5,5,0,5,[[415,5,5,0,5]]],[21,1,1,5,6,[[675,1,1,5,6]]]],[12330,12333,12340,12341,12342,17603]]],["lock",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17603]]],["locks",[5,5,[[15,5,5,0,5,[[415,5,5,0,5]]]],[12330,12333,12340,12341,12342]]]]},{"k":"H4515","v":[["shoes",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5835]]]]},{"k":"H4516","v":[["dainties",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16280]]]]},{"k":"H4517","v":[["cornets",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8162]]]]},{"k":"H4518","v":[["*",[4,4,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]],[23,1,1,3,4,[[796,1,1,3,4]]]],[2224,2620,3750,20295]]],["bowls",[3,3,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]]],[2224,2620,3750]]],["cups",[1,1,[[23,1,1,0,1,[[796,1,1,0,1]]]],[20295]]]]},{"k":"H4519","v":[["*",[146,133,[[0,11,9,0,9,[[40,1,1,0,1],[45,1,1,1,2],[47,8,6,2,8],[49,1,1,8,9]]],[3,21,19,9,28,[[117,3,3,9,12],[118,2,1,12,13],[123,1,1,13,14],[126,1,1,14,15],[129,1,1,15,16],[142,3,3,16,19],[143,2,1,19,20],[148,4,4,20,24],[150,2,2,24,26],[152,2,2,26,28]]],[4,4,4,28,32,[[155,2,2,28,30],[185,1,1,30,31],[186,1,1,31,32]]],[5,43,37,32,69,[[187,1,1,32,33],[190,1,1,33,34],[198,1,1,34,35],[199,4,3,35,38],[200,1,1,38,39],[202,2,2,39,41],[203,17,12,41,53],[204,1,1,53,54],[206,1,1,54,55],[207,4,4,55,59],[208,10,10,59,69]]],[6,7,7,69,76,[[211,1,1,69,70],[216,2,2,70,72],[217,1,1,72,73],[221,1,1,73,74],[222,1,1,74,75],[228,1,1,75,76]]],[10,1,1,76,77,[[294,1,1,76,77]]],[11,11,11,77,88,[[332,1,1,77,78],[333,7,7,78,85],[335,2,2,85,87],[336,1,1,87,88]]],[12,19,18,88,106,[[340,1,1,88,89],[342,3,3,89,92],[343,4,4,92,96],[344,3,3,96,99],[346,1,1,99,100],[349,5,4,100,104],[364,2,2,104,106]]],[13,19,18,106,124,[[381,1,1,106,107],[396,4,4,107,111],[397,1,1,111,112],[398,1,1,112,113],[399,10,9,113,122],[400,2,2,122,124]]],[14,2,2,124,126,[[412,2,2,124,126]]],[18,3,3,126,129,[[537,1,1,126,127],[557,1,1,127,128],[585,1,1,128,129]]],[22,2,1,129,130,[[687,2,1,129,130]]],[23,1,1,130,131,[[759,1,1,130,131]]],[25,2,2,131,133,[[849,2,2,131,133]]]],[1246,1406,1452,1456,1464,1465,1468,1471,1529,3614,3638,3639,3678,3904,4011,4086,4517,4518,4523,4555,4751,4757,4758,4759,4830,4839,4880,4891,4988,4989,5827,5841,5863,5922,6136,6161,6183,6185,6191,6269,6274,6276,6277,6278,6280,6281,6282,6283,6284,6285,6286,6287,6292,6300,6380,6386,6387,6406,6408,6427,6433,6435,6436,6437,6439,6441,6447,6456,6457,6536,6669,6689,6717,6858,6873,7023,8857,10119,10120,10128,10130,10135,10136,10137,10139,10177,10191,10205,10374,10446,10451,10454,10515,10516,10524,10525,10549,10552,10564,10618,10739,10740,10751,10757,11129,11130,11499,11828,11837,11838,11845,11855,11908,11909,11917,11918,11919,11921,11926,11928,11930,11931,11939,11942,12282,12285,14814,15200,15750,17850,19319,21706,21707]]],["+",[5,5,[[5,1,1,0,1,[[207,1,1,0,1]]],[12,3,3,1,4,[[343,2,2,1,3],[349,1,1,3,4]]],[22,1,1,4,5,[[687,1,1,4,5]]]],[6406,10524,10525,10740,17850]]],["Manasseh",[136,127,[[0,9,8,0,8,[[40,1,1,0,1],[45,1,1,1,2],[47,6,5,2,7],[49,1,1,7,8]]],[3,21,19,8,27,[[117,3,3,8,11],[118,2,1,11,12],[123,1,1,12,13],[126,1,1,13,14],[129,1,1,14,15],[142,3,3,15,18],[143,2,1,18,19],[148,4,4,19,23],[150,2,2,23,25],[152,2,2,25,27]]],[4,4,4,27,31,[[155,2,2,27,29],[185,1,1,29,30],[186,1,1,30,31]]],[5,40,35,31,66,[[187,1,1,31,32],[190,1,1,32,33],[198,1,1,33,34],[199,4,3,34,37],[200,1,1,37,38],[202,2,2,38,40],[203,15,11,40,51],[204,1,1,51,52],[206,1,1,52,53],[207,3,3,53,56],[208,10,10,56,66]]],[6,6,6,66,72,[[211,1,1,66,67],[216,2,2,67,69],[217,1,1,69,70],[221,1,1,70,71],[228,1,1,71,72]]],[10,1,1,72,73,[[294,1,1,72,73]]],[11,11,11,73,84,[[332,1,1,73,74],[333,7,7,74,81],[335,2,2,81,83],[336,1,1,83,84]]],[12,16,16,84,100,[[340,1,1,84,85],[342,3,3,85,88],[343,2,2,88,90],[344,3,3,90,93],[346,1,1,93,94],[349,4,4,94,98],[364,2,2,98,100]]],[13,19,18,100,118,[[381,1,1,100,101],[396,4,4,101,105],[397,1,1,105,106],[398,1,1,106,107],[399,10,9,107,116],[400,2,2,116,118]]],[14,2,2,118,120,[[412,2,2,118,120]]],[18,3,3,120,123,[[537,1,1,120,121],[557,1,1,121,122],[585,1,1,122,123]]],[22,1,1,123,124,[[687,1,1,123,124]]],[23,1,1,124,125,[[759,1,1,124,125]]],[25,2,2,125,127,[[849,2,2,125,127]]]],[1246,1406,1452,1456,1464,1465,1471,1529,3614,3638,3639,3678,3904,4011,4086,4517,4518,4523,4555,4751,4757,4758,4759,4830,4839,4880,4891,4988,4989,5827,5841,5863,5922,6136,6161,6183,6185,6191,6269,6274,6276,6277,6278,6280,6281,6282,6283,6284,6286,6287,6292,6300,6380,6386,6387,6408,6427,6433,6435,6436,6437,6439,6441,6447,6456,6457,6536,6669,6689,6717,6858,7023,8857,10119,10120,10128,10130,10135,10136,10137,10139,10177,10191,10205,10374,10446,10451,10454,10515,10516,10549,10552,10564,10618,10739,10740,10751,10757,11129,11130,11499,11828,11837,11838,11845,11855,11908,11909,11917,11918,11919,11921,11926,11928,11930,11931,11939,11942,12282,12285,14814,15200,15750,17850,19319,21706,21707]]],["Manasseh's",[4,4,[[0,2,2,0,2,[[47,2,2,0,2]]],[5,2,2,2,4,[[203,2,2,2,4]]]],[1465,1468,6281,6285]]],["Manassites",[1,1,[[6,1,1,0,1,[[222,1,1,0,1]]]],[6873]]]]},{"k":"H4520","v":[["*",[4,4,[[4,2,2,0,2,[[156,1,1,0,1],[181,1,1,1,2]]],[11,1,1,2,3,[[322,1,1,2,3]]],[12,1,1,3,4,[[363,1,1,3,4]]]],[5047,5687,9826,11109]]],["Manasseh",[2,2,[[4,1,1,0,1,[[181,1,1,0,1]]],[12,1,1,1,2,[[363,1,1,1,2]]]],[5687,11109]]],["Manassites",[2,2,[[4,1,1,0,1,[[156,1,1,0,1]]],[11,1,1,1,2,[[322,1,1,1,2]]]],[5047,9826]]]]},{"k":"H4521","v":[["*",[8,8,[[13,2,2,0,2,[[397,2,2,0,2]]],[15,3,3,2,5,[[424,2,2,2,4],[425,1,1,4,5]]],[18,3,3,5,8,[[488,1,1,5,6],[493,1,1,6,7],[540,1,1,7,8]]]],[11857,11858,12668,12671,12681,14065,14097,14849]]],["portion",[5,5,[[13,2,2,0,2,[[397,2,2,0,2]]],[18,3,3,2,5,[[488,1,1,2,3],[493,1,1,3,4],[540,1,1,4,5]]]],[11857,11858,14065,14097,14849]]],["portions",[3,3,[[15,3,3,0,3,[[424,2,2,0,2],[425,1,1,2,3]]]],[12668,12671,12681]]]]},{"k":"H4522","v":[["*",[23,22,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,1,1,1,2,[[50,1,1,1,2]]],[4,1,1,2,3,[[172,1,1,2,3]]],[5,2,2,3,5,[[202,1,1,3,4],[203,1,1,4,5]]],[6,4,4,5,9,[[211,4,4,5,9]]],[9,1,1,9,10,[[286,1,1,9,10]]],[10,7,6,10,16,[[294,1,1,10,11],[295,3,2,11,13],[299,2,2,13,15],[302,1,1,15,16]]],[13,2,2,16,18,[[374,1,1,16,17],[376,1,1,17,18]]],[16,1,1,18,19,[[435,1,1,18,19]]],[19,1,1,19,20,[[639,1,1,19,20]]],[22,1,1,20,21,[[709,1,1,20,21]]],[24,1,1,21,22,[[797,1,1,21,22]]]],[1488,1543,5438,6275,6288,6537,6539,6542,6544,8578,8850,8891,8892,9066,9072,9169,11354,11413,12867,16743,18258,20311]]],["+",[2,2,[[1,1,1,0,1,[[50,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]]],[1543,9072]]],["discomfited",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18258]]],["levy",[4,3,[[10,4,3,0,3,[[295,3,2,0,2],[299,1,1,2,3]]]],[8891,8892,9066]]],["tributaries",[4,4,[[4,1,1,0,1,[[172,1,1,0,1]]],[6,3,3,1,4,[[211,3,3,1,4]]]],[5438,6539,6542,6544]]],["tributary",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20311]]],["tribute",[11,11,[[0,1,1,0,1,[[48,1,1,0,1]]],[5,2,2,1,3,[[202,1,1,1,2],[203,1,1,2,3]]],[6,1,1,3,4,[[211,1,1,3,4]]],[9,1,1,4,5,[[286,1,1,4,5]]],[10,2,2,5,7,[[294,1,1,5,6],[302,1,1,6,7]]],[13,2,2,7,9,[[374,1,1,7,8],[376,1,1,8,9]]],[16,1,1,9,10,[[435,1,1,9,10]]],[19,1,1,10,11,[[639,1,1,10,11]]]],[1488,6275,6288,6537,8578,8850,9169,11354,11413,12867,16743]]]]},{"k":"H4523","v":[["afflicted",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12992]]]]},{"k":"H4524","v":[["*",[5,5,[[10,1,1,0,1,[[296,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]],[17,1,1,2,3,[[472,1,1,2,3]]],[18,1,1,3,4,[[617,1,1,3,4]]],[21,1,1,4,5,[[671,1,1,4,5]]]],[8925,10170,13781,16272,17549]]],["about",[4,4,[[10,1,1,0,1,[[296,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]],[17,1,1,2,3,[[472,1,1,2,3]]],[18,1,1,3,4,[[617,1,1,3,4]]]],[8925,10170,13781,16272]]],["table",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17549]]]]},{"k":"H4525","v":[["*",[7,7,[[11,2,2,0,2,[[336,2,2,0,2]]],[18,1,1,2,3,[[619,1,1,2,3]]],[22,2,2,3,5,[[702,1,1,3,4],[720,1,1,4,5]]],[23,2,2,5,7,[[768,1,1,5,6],[773,1,1,6,7]]]],[10216,10218,16293,18117,18487,19525,19637]]],["+",[2,2,[[18,1,1,0,1,[[619,1,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]]],[16293,18487]]],["prison",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18117]]],["smiths",[4,4,[[11,2,2,0,2,[[336,2,2,0,2]]],[23,2,2,2,4,[[768,1,1,2,3],[773,1,1,3,4]]]],[10216,10218,19525,19637]]]]},{"k":"H4526","v":[["*",[17,14,[[1,6,4,0,4,[[74,3,2,0,2],[86,3,2,2,4]]],[9,1,1,4,5,[[288,1,1,4,5]]],[10,7,6,5,11,[[297,7,6,5,11]]],[11,1,1,11,12,[[328,1,1,11,12]]],[18,1,1,12,13,[[495,1,1,12,13]]],[32,1,1,13,14,[[899,1,1,13,14]]]],[2220,2222,2616,2618,8648,8962,8963,8965,8966,8969,8970,9980,14163,22681]]],["+",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]]],[8648,22681]]],["border",[6,4,[[1,6,4,0,4,[[74,3,2,0,2],[86,3,2,2,4]]]],[2220,2222,2616,2618]]],["borders",[8,7,[[10,7,6,0,6,[[297,7,6,0,6]]],[11,1,1,6,7,[[328,1,1,6,7]]]],[8962,8963,8965,8966,8969,8970,9980]]],["places",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14163]]]]},{"k":"H4527","v":[["+",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8943]]]]},{"k":"H4528","v":[["porch",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6591]]]]},{"k":"H4529","v":[["*",[4,4,[[5,1,1,0,1,[[200,1,1,0,1]]],[18,3,3,1,4,[[483,1,1,1,2],[516,1,1,2,3],[624,1,1,3,4]]]],[6195,13991,14523,16369]]],["away",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14523]]],["melt",[1,1,[[5,1,1,0,1,[[200,1,1,0,1]]]],[6195]]],["melteth",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16369]]],["water",[1,1,[[18,1,1,0,1,[[483,1,1,0,1]]]],[13991]]]]},{"k":"H4530","v":[["tribute",[1,1,[[4,1,1,0,1,[[168,1,1,0,1]]]],[5352]]]]},{"k":"H4531","v":[["*",[5,5,[[4,3,3,0,3,[[156,1,1,0,1],[159,1,1,1,2],[181,1,1,2,3]]],[17,1,1,3,4,[[444,1,1,3,4]]],[18,1,1,4,5,[[572,1,1,4,5]]]],[5038,5130,5682,13074,15462]]],["temptation",[1,1,[[18,1,1,0,1,[[572,1,1,0,1]]]],[15462]]],["temptations",[3,3,[[4,3,3,0,3,[[156,1,1,0,1],[159,1,1,1,2],[181,1,1,2,3]]]],[5038,5130,5682]]],["trial",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13074]]]]},{"k":"H4532","v":[["Massah",[4,4,[[1,1,1,0,1,[[66,1,1,0,1]]],[4,3,3,1,4,[[158,1,1,1,2],[161,1,1,2,3],[185,1,1,3,4]]]],[1990,5102,5179,5818]]]]},{"k":"H4533","v":[["*",[3,3,[[1,3,3,0,3,[[83,3,3,0,3]]]],[2529,2530,2531]]],["+",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2530]]],["vail",[2,2,[[1,2,2,0,2,[[83,2,2,0,2]]]],[2529,2531]]]]},{"k":"H4534","v":[["+",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22668]]]]},{"k":"H4535","v":[["down",[1,1,[[11,1,1,0,1,[[323,1,1,0,1]]]],[9835]]]]},{"k":"H4536","v":[["traffick",[1,1,[[10,1,1,0,1,[[300,1,1,0,1]]]],[9094]]]]},{"k":"H4537","v":[["*",[5,5,[[18,1,1,0,1,[[579,1,1,0,1]]],[19,2,2,1,3,[[636,2,2,1,3]]],[22,2,2,3,5,[[683,1,1,3,4],[697,1,1,4,5]]]],[15530,16640,16643,17761,18018]]],["mingle",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17761]]],["mingled",[4,4,[[18,1,1,0,1,[[579,1,1,0,1]]],[19,2,2,1,3,[[636,2,2,1,3]]],[22,1,1,3,4,[[697,1,1,3,4]]]],[15530,16640,16643,18018]]]]},{"k":"H4538","v":[["mixture",[1,1,[[18,1,1,0,1,[[552,1,1,0,1]]]],[15079]]]]},{"k":"H4539","v":[["*",[25,25,[[1,16,16,0,16,[[75,2,2,0,2],[76,1,1,2,3],[84,3,3,3,6],[85,1,1,6,7],[87,1,1,7,8],[88,3,3,8,11],[89,5,5,11,16]]],[3,6,6,16,22,[[119,3,3,16,19],[120,3,3,19,22]]],[9,1,1,22,23,[[283,1,1,22,23]]],[18,1,1,23,24,[[582,1,1,23,24]]],[22,1,1,24,25,[[700,1,1,24,25]]]],[2271,2272,2288,2543,2546,2548,2603,2651,2698,2702,2704,2712,2715,2728,2735,2740,3717,3718,3723,3748,3768,3769,8468,15645,18060]]],["+",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3748]]],["covering",[6,6,[[1,3,3,0,3,[[84,1,1,0,1],[88,1,1,1,2],[89,1,1,2,3]]],[9,1,1,3,4,[[283,1,1,3,4]]],[18,1,1,4,5,[[582,1,1,4,5]]],[22,1,1,5,6,[[700,1,1,5,6]]]],[2543,2698,2728,8468,15645,18060]]],["curtain",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3718]]],["hanging",[17,17,[[1,13,13,0,13,[[75,2,2,0,2],[76,1,1,2,3],[84,2,2,3,5],[85,1,1,5,6],[87,1,1,6,7],[88,2,2,7,9],[89,4,4,9,13]]],[3,4,4,13,17,[[119,2,2,13,15],[120,2,2,15,17]]]],[2271,2272,2288,2546,2548,2603,2651,2702,2704,2712,2715,2735,2740,3717,3723,3768,3769]]]]},{"k":"H4540","v":[["covering",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21170]]]]},{"k":"H4541","v":[["*",[28,28,[[1,3,3,0,3,[[81,2,2,0,2],[83,1,1,2,3]]],[2,1,1,3,4,[[108,1,1,3,4]]],[3,1,1,4,5,[[149,1,1,4,5]]],[4,3,3,5,8,[[161,2,2,5,7],[179,1,1,7,8]]],[6,5,5,8,13,[[227,2,2,8,10],[228,3,3,10,13]]],[10,1,1,13,14,[[304,1,1,13,14]]],[11,1,1,14,15,[[329,1,1,14,15]]],[13,3,3,15,18,[[394,1,1,15,16],[400,2,2,16,18]]],[15,1,1,18,19,[[421,1,1,18,19]]],[18,1,1,19,20,[[583,1,1,19,20]]],[22,5,5,20,25,[[703,1,1,20,21],[706,1,1,21,22],[708,2,2,22,24],[720,1,1,24,25]]],[27,1,1,25,26,[[874,1,1,25,26]]],[33,1,1,26,27,[[900,1,1,26,27]]],[34,1,1,27,28,[[904,1,1,27,28]]]],[2442,2446,2513,3285,4812,5169,5173,5600,6983,6984,7007,7010,7011,9227,9999,11766,11936,11937,12529,15670,18125,18184,18218,18239,18497,22268,22698,22766]]],["covering",[2,2,[[22,2,2,0,2,[[706,1,1,0,1],[708,1,1,1,2]]]],[18184,18218]]],["image",[10,10,[[4,2,2,0,2,[[161,1,1,0,1],[179,1,1,1,2]]],[6,5,5,2,7,[[227,2,2,2,4],[228,3,3,4,7]]],[18,1,1,7,8,[[583,1,1,7,8]]],[33,1,1,8,9,[[900,1,1,8,9]]],[34,1,1,9,10,[[904,1,1,9,10]]]],[5169,5600,6983,6984,7007,7010,7011,15670,22698,22766]]],["images",[8,8,[[10,1,1,0,1,[[304,1,1,0,1]]],[11,1,1,1,2,[[329,1,1,1,2]]],[13,3,3,2,5,[[394,1,1,2,3],[400,2,2,3,5]]],[22,2,2,5,7,[[708,1,1,5,6],[720,1,1,6,7]]],[27,1,1,7,8,[[874,1,1,7,8]]]],[9227,9999,11766,11936,11937,18239,18497,22268]]],["molten",[7,7,[[1,3,3,0,3,[[81,2,2,0,2],[83,1,1,2,3]]],[2,1,1,3,4,[[108,1,1,3,4]]],[3,1,1,4,5,[[149,1,1,4,5]]],[4,1,1,5,6,[[161,1,1,5,6]]],[15,1,1,6,7,[[421,1,1,6,7]]]],[2442,2446,2513,3285,4812,5173,12529]]],["vail",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18125]]]]},{"k":"H4542","v":[["*",[4,3,[[20,4,3,0,3,[[662,1,1,0,1],[667,3,2,1,3]]]],[17394,17490,17491]]],["man's",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17491]]],["poor",[3,2,[[20,3,2,0,2,[[662,1,1,0,1],[667,2,1,1,2]]]],[17394,17490]]]]},{"k":"H4543","v":[["*",[7,7,[[1,1,1,0,1,[[50,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[13,5,5,2,7,[[374,2,2,2,4],[382,1,1,4,5],[383,1,1,5,6],[398,1,1,6,7]]]],[1543,9070,11350,11352,11513,11535,11903]]],["Storehouses",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11903]]],["store",[5,5,[[10,1,1,0,1,[[299,1,1,0,1]]],[13,4,4,1,5,[[374,2,2,1,3],[382,1,1,3,4],[383,1,1,4,5]]]],[9070,11350,11352,11513,11535]]],["treasure",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1543]]]]},{"k":"H4544","v":[["scarceness",[1,1,[[4,1,1,0,1,[[160,1,1,0,1]]]],[5146]]]]},{"k":"H4545","v":[["web",[2,2,[[6,2,2,0,2,[[226,2,2,0,2]]]],[6962,6963]]]]},{"k":"H4546","v":[["*",[27,26,[[3,1,1,0,1,[[136,1,1,0,1]]],[6,5,5,1,6,[[215,1,1,1,2],[230,3,3,2,5],[231,1,1,5,6]]],[8,1,1,6,7,[[241,1,1,6,7]]],[9,3,2,7,9,[[286,3,2,7,9]]],[11,1,1,9,10,[[330,1,1,9,10]]],[12,2,2,10,12,[[363,2,2,10,12]]],[13,1,1,12,13,[[375,1,1,12,13]]],[18,1,1,13,14,[[561,1,1,13,14]]],[19,1,1,14,15,[[643,1,1,14,15]]],[22,9,9,15,24,[[685,1,1,15,16],[689,1,1,16,17],[697,1,1,17,18],[711,1,1,18,19],[714,1,1,19,20],[718,1,1,20,21],[727,1,1,21,22],[737,1,1,22,23],[740,1,1,23,24]]],[23,1,1,24,25,[[775,1,1,24,25]]],[28,1,1,25,26,[[877,1,1,25,26]]]],[4330,6643,7085,7086,7099,7121,7343,8566,8567,10041,11093,11095,11375,15264,16857,17785,17900,18027,18287,18332,18423,18647,18807,18864,19712,22319]]],["+",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6643]]],["causeway",[2,2,[[12,2,2,0,2,[[363,2,2,0,2]]]],[11093,11095]]],["highway",[14,13,[[6,1,1,0,1,[[231,1,1,0,1]]],[8,1,1,1,2,[[241,1,1,1,2]]],[9,3,2,2,4,[[286,3,2,2,4]]],[11,1,1,4,5,[[330,1,1,4,5]]],[19,1,1,5,6,[[643,1,1,5,6]]],[22,6,6,6,12,[[685,1,1,6,7],[689,1,1,7,8],[697,1,1,8,9],[714,1,1,9,10],[718,1,1,10,11],[740,1,1,11,12]]],[23,1,1,12,13,[[775,1,1,12,13]]]],[7121,7343,8566,8567,10041,16857,17785,17900,18027,18332,18423,18864,19712]]],["highways",[5,5,[[6,3,3,0,3,[[230,3,3,0,3]]],[22,2,2,3,5,[[711,1,1,3,4],[727,1,1,4,5]]]],[7085,7086,7099,18287,18647]]],["path",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22319]]],["paths",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18807]]],["terraces",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11375]]],["way",[1,1,[[3,1,1,0,1,[[136,1,1,0,1]]]],[4330]]],["ways",[1,1,[[18,1,1,0,1,[[561,1,1,0,1]]]],[15264]]]]},{"k":"H4547","v":[["highway",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18328]]]]},{"k":"H4548","v":[["nails",[4,4,[[12,1,1,0,1,[[359,1,1,0,1]]],[13,1,1,1,2,[[369,1,1,1,2]]],[22,1,1,2,3,[[719,1,1,2,3]]],[23,1,1,3,4,[[754,1,1,3,4]]]],[10967,11238,18458,19205]]]]},{"k":"H4549","v":[["*",[21,20,[[1,1,1,0,1,[[65,1,1,0,1]]],[4,2,2,1,3,[[153,1,1,1,2],[172,1,1,2,3]]],[5,3,3,3,6,[[188,1,1,3,4],[191,1,1,4,5],[193,1,1,5,6]]],[6,1,1,6,7,[[225,1,1,6,7]]],[8,1,1,7,8,[[250,1,1,7,8]]],[9,2,1,8,9,[[283,2,1,8,9]]],[18,4,4,9,13,[[499,1,1,9,10],[545,1,1,10,11],[574,1,1,11,12],[589,1,1,12,13]]],[22,4,4,13,17,[[688,1,1,13,14],[691,1,1,14,15],[697,1,1,15,16],[712,1,1,16,17]]],[25,1,1,17,18,[[822,1,1,17,18]]],[32,1,1,18,19,[[893,1,1,18,19]]],[33,1,1,19,20,[[901,1,1,19,20]]]],[1968,4920,5435,5880,5935,5981,6943,7569,8459,14218,14902,15483,15813,17868,17913,18005,18306,20951,22583,22709]]],["+",[3,2,[[4,1,1,0,1,[[153,1,1,0,1]]],[9,2,1,1,2,[[283,2,1,1,2]]]],[4920,8459]]],["away",[1,1,[[18,1,1,0,1,[[589,1,1,0,1]]]],[15813]]],["faint",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5435]]],["fainteth",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17868]]],["loosed",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6943]]],["melt",[4,4,[[5,1,1,0,1,[[188,1,1,0,1]]],[22,2,2,1,3,[[691,1,1,1,2],[697,1,1,2,3]]],[25,1,1,3,4,[[822,1,1,3,4]]]],[5880,17913,18005,20951]]],["melted",[6,6,[[1,1,1,0,1,[[65,1,1,0,1]]],[5,2,2,1,3,[[191,1,1,1,2],[193,1,1,2,3]]],[18,2,2,3,5,[[499,1,1,3,4],[574,1,1,4,5]]],[22,1,1,5,6,[[712,1,1,5,6]]]],[1968,5935,5981,14218,15483,18306]]],["melteth",[2,2,[[18,1,1,0,1,[[545,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[14902,22709]]],["molten",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22583]]],["refuse",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7569]]]]},{"k":"H4550","v":[["*",[12,11,[[0,1,1,0,1,[[12,1,1,0,1]]],[1,3,3,1,4,[[66,1,1,1,2],[89,2,2,2,4]]],[3,7,6,4,10,[[126,4,4,4,8],[149,3,2,8,10]]],[4,1,1,10,11,[[162,1,1,10,11]]]],[321,1984,2743,2745,3990,3994,4000,4016,4761,4762,5197]]],["+",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[3990]]],["journey",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5197]]],["journeyings",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[4016]]],["journeys",[9,8,[[0,1,1,0,1,[[12,1,1,0,1]]],[1,3,3,1,4,[[66,1,1,1,2],[89,2,2,2,4]]],[3,5,4,4,8,[[126,2,2,4,6],[149,3,2,6,8]]]],[321,1984,2743,2745,3994,4000,4761,4762]]]]},{"k":"H4551","v":[["*",[2,2,[[10,1,1,0,1,[[296,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]]],[8903,13914]]],["brought",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8903]]],["dart",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13914]]]]},{"k":"H4552","v":[["pillars",[1,1,[[10,1,1,0,1,[[300,1,1,0,1]]]],[9091]]]]},{"k":"H4553","v":[["*",[16,14,[[0,1,1,0,1,[[49,1,1,0,1]]],[16,1,1,1,2,[[429,1,1,1,2]]],[18,1,1,2,3,[[507,1,1,2,3]]],[22,1,1,3,4,[[700,1,1,3,4]]],[23,2,2,4,6,[[750,1,1,4,5],[792,1,1,5,6]]],[25,1,1,6,7,[[828,1,1,6,7]]],[28,1,1,7,8,[[877,1,1,7,8]]],[29,3,2,8,10,[[883,3,2,8,10]]],[32,2,2,10,12,[[893,2,2,10,12]]],[37,3,2,12,14,[[922,3,2,12,14]]]],[1516,12765,14330,18064,19115,20118,21152,22323,22439,22440,22587,22590,23055,23056]]],["Wailing",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22439]]],["lamentation",[3,3,[[0,1,1,0,1,[[49,1,1,0,1]]],[23,2,2,1,3,[[750,1,1,1,2],[792,1,1,2,3]]]],[1516,19115,20118]]],["mourneth",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23055]]],["mourning",[6,5,[[18,1,1,0,1,[[507,1,1,0,1]]],[22,1,1,1,2,[[700,1,1,1,2]]],[28,1,1,2,3,[[877,1,1,2,3]]],[32,1,1,3,4,[[893,1,1,3,4]]],[37,2,1,4,5,[[922,2,1,4,5]]]],[14330,18064,22323,22590,23056]]],["wailing",[5,5,[[16,1,1,0,1,[[429,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]],[29,2,2,2,4,[[883,2,2,2,4]]],[32,1,1,4,5,[[893,1,1,4,5]]]],[12765,21152,22439,22440,22587]]]]},{"k":"H4554","v":[["provender",[5,5,[[0,4,4,0,4,[[23,2,2,0,2],[41,1,1,2,3],[42,1,1,3,4]]],[6,1,1,4,5,[[229,1,1,4,5]]]],[616,623,1279,1314,7043]]]]},{"k":"H4555","v":[["kerchiefs",[2,2,[[25,2,2,0,2,[[814,2,2,0,2]]]],[20726,20729]]]]},{"k":"H4556","v":[["scab",[3,3,[[2,3,3,0,3,[[102,3,3,0,3]]]],[3058,3059,3060]]]]},{"k":"H4557","v":[["*",[132,128,[[0,2,2,0,2,[[33,1,1,0,1],[40,1,1,1,2]]],[1,2,2,2,4,[[65,1,1,2,3],[72,1,1,3,4]]],[2,4,3,4,7,[[114,4,3,4,7]]],[3,34,33,7,40,[[117,14,14,7,21],[119,5,5,21,26],[125,1,1,26,27],[130,2,2,27,29],[131,2,1,29,30],[139,1,1,30,31],[142,1,1,31,32],[145,7,7,32,39],[147,1,1,39,40]]],[4,4,4,40,44,[[156,1,1,40,41],[177,1,1,41,42],[184,1,1,42,43],[185,1,1,43,44]]],[5,2,2,44,46,[[190,2,2,44,46]]],[6,5,5,46,51,[[216,1,1,46,47],[217,3,3,47,50],[231,1,1,50,51]]],[8,3,3,51,54,[[241,2,2,51,53],[262,1,1,53,54]]],[9,5,5,54,59,[[268,2,2,54,56],[287,1,1,56,57],[290,2,2,57,59]]],[10,1,1,59,60,[[308,1,1,59,60]]],[12,19,18,60,78,[[344,2,2,60,62],[346,1,1,62,63],[348,1,1,63,64],[349,1,1,64,65],[358,2,2,65,67],[359,2,2,67,69],[360,4,4,69,73],[362,2,2,73,75],[364,4,3,75,78]]],[13,5,5,78,83,[[378,1,1,78,79],[392,2,2,79,81],[395,1,1,81,82],[401,1,1,82,83]]],[14,4,4,83,87,[[403,1,1,83,84],[404,1,1,84,85],[405,1,1,85,86],[410,1,1,86,87]]],[15,1,1,87,88,[[419,1,1,87,88]]],[16,1,1,88,89,[[434,1,1,88,89]]],[17,13,13,89,102,[[436,1,1,89,90],[438,1,1,90,91],[440,1,1,91,92],[444,1,1,92,93],[449,1,1,93,94],[450,1,1,94,95],[451,1,1,95,96],[456,2,2,96,98],[460,1,1,98,99],[466,1,1,99,100],[471,1,1,100,101],[473,1,1,101,102]]],[18,6,6,102,108,[[517,1,1,102,103],[581,1,1,103,104],[582,2,2,104,106],[624,2,2,106,108]]],[20,3,3,108,111,[[660,1,1,108,109],[663,1,1,109,110],[664,1,1,110,111]]],[21,1,1,111,112,[[676,1,1,111,112]]],[22,3,3,112,115,[[688,1,1,112,113],[699,1,1,113,114],[718,1,1,114,115]]],[23,6,5,115,120,[[746,2,2,115,117],[755,2,1,117,118],[788,1,1,118,119],[790,1,1,119,120]]],[25,5,5,120,125,[[805,3,3,120,123],[806,1,1,123,124],[813,1,1,124,125]]],[26,1,1,125,126,[[858,1,1,125,126]]],[27,1,1,126,127,[[862,1,1,126,127]]],[28,1,1,127,128,[[876,1,1,127,128]]]],[1010,1244,1963,2170,3484,3485,3519,3606,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3714,3720,3726,3732,3735,3985,4137,4142,4165,4426,4542,4626,4629,4632,4635,4638,4641,4645,4700,5031,5549,5766,5816,5915,5918,6659,6700,6706,6709,7125,7335,7349,7937,8060,8064,8600,8694,8701,9372,10537,10575,10643,10684,10743,10936,10939,10968,10980,10986,11007,11010,11014,11047,11053,11110,11132,11133,11440,11743,11744,11823,11973,12025,12029,12101,12235,12427,12845,12874,12910,12960,13061,13186,13223,13260,13376,13388,13464,13625,13762,13814,14537,15596,15618,15640,16355,16356,17336,17415,17429,17622,17869,18052,18446,18993,18997,19239,20038,20068,20533,20534,20538,20549,20696,21990,22104,22297]]],["+",[8,8,[[9,1,1,0,1,[[268,1,1,0,1]]],[12,2,2,1,3,[[344,1,1,1,2],[359,1,1,2,3]]],[17,1,1,3,4,[[456,1,1,3,4]]],[18,3,3,4,7,[[517,1,1,4,5],[581,1,1,5,6],[624,1,1,6,7]]],[23,1,1,7,8,[[790,1,1,7,8]]]],[8060,10575,10968,13388,14537,15596,16356,20068]]],["account",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11133]]],["all",[3,3,[[20,3,3,0,3,[[660,1,1,0,1],[663,1,1,1,2],[664,1,1,2,3]]]],[17336,17415,17429]]],["few",[5,5,[[3,1,1,0,1,[[125,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[17,1,1,2,3,[[451,1,1,2,3]]],[22,1,1,3,4,[[688,1,1,3,4]]],[25,1,1,4,5,[[813,1,1,4,5]]]],[3985,5816,13260,17869,20696]]],["full",[1,1,[[8,1,1,0,1,[[262,1,1,0,1]]]],[7937]]],["number",[108,105,[[0,2,2,0,2,[[33,1,1,0,1],[40,1,1,1,2]]],[1,2,2,2,4,[[65,1,1,2,3],[72,1,1,3,4]]],[2,4,3,4,7,[[114,4,3,4,7]]],[3,33,32,7,39,[[117,14,14,7,21],[119,5,5,21,26],[130,2,2,26,28],[131,2,1,28,29],[139,1,1,29,30],[142,1,1,30,31],[145,7,7,31,38],[147,1,1,38,39]]],[4,3,3,39,42,[[156,1,1,39,40],[177,1,1,40,41],[184,1,1,41,42]]],[5,2,2,42,44,[[190,2,2,42,44]]],[6,4,4,44,48,[[216,1,1,44,45],[217,2,2,45,47],[231,1,1,47,48]]],[8,2,2,48,50,[[241,2,2,48,50]]],[9,3,3,50,53,[[268,1,1,50,51],[287,1,1,51,52],[290,1,1,52,53]]],[10,1,1,53,54,[[308,1,1,53,54]]],[12,12,12,54,66,[[344,1,1,54,55],[348,1,1,55,56],[358,1,1,56,57],[359,1,1,57,58],[360,3,3,58,61],[362,2,2,61,63],[364,3,3,63,66]]],[13,5,5,66,71,[[378,1,1,66,67],[392,2,2,67,69],[395,1,1,69,70],[401,1,1,70,71]]],[14,4,4,71,75,[[403,1,1,71,72],[404,1,1,72,73],[405,1,1,73,74],[410,1,1,74,75]]],[15,1,1,75,76,[[419,1,1,75,76]]],[16,1,1,76,77,[[434,1,1,76,77]]],[17,11,11,77,88,[[436,1,1,77,78],[438,1,1,78,79],[440,1,1,79,80],[444,1,1,80,81],[449,1,1,81,82],[450,1,1,82,83],[456,1,1,83,84],[460,1,1,84,85],[466,1,1,85,86],[471,1,1,86,87],[473,1,1,87,88]]],[18,3,3,88,91,[[582,2,2,88,90],[624,1,1,90,91]]],[21,1,1,91,92,[[676,1,1,91,92]]],[22,2,2,92,94,[[699,1,1,92,93],[718,1,1,93,94]]],[23,5,4,94,98,[[746,2,2,94,96],[755,2,1,96,97],[788,1,1,97,98]]],[25,4,4,98,102,[[805,3,3,98,101],[806,1,1,101,102]]],[26,1,1,102,103,[[858,1,1,102,103]]],[27,1,1,103,104,[[862,1,1,103,104]]],[28,1,1,104,105,[[876,1,1,104,105]]]],[1010,1244,1963,2170,3484,3485,3519,3606,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3714,3720,3726,3732,3735,4137,4142,4165,4426,4542,4626,4629,4632,4635,4638,4641,4645,4700,5031,5549,5766,5915,5918,6659,6700,6706,7125,7335,7349,8064,8600,8694,9372,10537,10684,10936,10980,10986,11007,11014,11047,11053,11110,11132,11133,11440,11743,11744,11823,11973,12025,12029,12101,12235,12427,12845,12874,12910,12960,13061,13186,13223,13376,13464,13625,13762,13814,15618,15640,16355,17622,18052,18446,18993,18997,19239,20038,20533,20534,20538,20549,21990,22104,22297]]],["numbered",[1,1,[[12,1,1,0,1,[[360,1,1,0,1]]]],[11010]]],["numbers",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10743]]],["sum",[2,2,[[9,1,1,0,1,[[290,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]]],[8701,10939]]],["tale",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10643]]],["telling",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6709]]]]},{"k":"H4558","v":[["Mispar",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12029]]]]},{"k":"H4559","v":[["Mispereth",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12427]]]]},{"k":"H4560","v":[["*",[2,2,[[3,2,2,0,2,[[147,2,2,0,2]]]],[4669,4680]]],["commit",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4680]]],["delivered",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4669]]]]},{"k":"H4561","v":[["instruction",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13666]]]]},{"k":"H4562","v":[["bond",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20932]]]]},{"k":"H4563","v":[["covert",[1,1,[[22,1,1,0,1,[[682,1,1,0,1]]]],[17739]]]]},{"k":"H4564","v":[["hid",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18714]]]]},{"k":"H4565","v":[["*",[10,10,[[18,4,4,0,4,[[487,2,2,0,2],[494,1,1,2,3],[541,1,1,3,4]]],[22,1,1,4,5,[[723,1,1,4,5]]],[23,3,3,5,8,[[757,1,1,5,6],[767,1,1,6,7],[793,1,1,7,8]]],[24,1,1,8,9,[[799,1,1,8,9]]],[34,1,1,9,10,[[905,1,1,9,10]]]],[14049,14050,14115,14854,18564,19283,19508,20137,20364,22782]]],["places",[7,7,[[18,2,2,0,2,[[487,1,1,0,1],[494,1,1,1,2]]],[22,1,1,2,3,[[723,1,1,2,3]]],[23,3,3,3,6,[[757,1,1,3,4],[767,1,1,4,5],[793,1,1,5,6]]],[24,1,1,6,7,[[799,1,1,6,7]]]],[14049,14115,18564,19283,19508,20137,20364]]],["secret",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14854]]],["secretly",[2,2,[[18,1,1,0,1,[[487,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[14050,22782]]]]},{"k":"H4566","v":[["works",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13708]]]]},{"k":"H4567","v":[["works",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21874]]]]},{"k":"H4568","v":[["clay",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[13,1,1,1,2,[[370,1,1,1,2]]]],[8980,11263]]]]},{"k":"H4569","v":[["*",[11,11,[[0,1,1,0,1,[[31,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]],[6,3,3,2,5,[[213,1,1,2,3],[222,2,2,3,5]]],[8,2,2,5,7,[[248,1,1,5,6],[249,1,1,6,7]]],[22,3,3,7,10,[[688,1,1,7,8],[694,1,1,8,9],[708,1,1,9,10]]],[23,1,1,10,11,[[795,1,1,10,11]]]],[950,5876,6596,6874,6875,7508,7512,17879,17971,18249,20244]]],["ford",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[950]]],["fords",[3,3,[[5,1,1,0,1,[[188,1,1,0,1]]],[6,1,1,1,2,[[213,1,1,1,2]]],[22,1,1,2,3,[[694,1,1,2,3]]]],[5876,6596,17971]]],["pass",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18249]]],["passage",[2,2,[[8,1,1,0,1,[[248,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[7508,17879]]],["passages",[4,4,[[6,2,2,0,2,[[222,2,2,0,2]]],[8,1,1,2,3,[[249,1,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]]],[6874,6875,7512,20244]]]]},{"k":"H4570","v":[["*",[16,16,[[8,3,3,0,3,[[252,1,1,0,1],[261,2,2,1,3]]],[18,4,4,3,7,[[494,1,1,3,4],[500,1,1,4,5],[542,1,1,5,6],[617,1,1,6,7]]],[19,7,7,7,14,[[629,3,3,7,10],[631,2,2,10,12],[632,2,2,12,14]]],[22,2,2,14,16,[[704,1,1,14,15],[737,1,1,15,16]]]],[7638,7910,7912,14108,14238,14871,16268,16442,16448,16451,16501,16516,16523,16538,18137,18808]]],["+",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16268]]],["goings",[2,2,[[19,1,1,0,1,[[632,1,1,0,1]]],[22,1,1,1,2,[[737,1,1,1,2]]]],[16538,18808]]],["path",[3,3,[[19,2,2,0,2,[[629,1,1,0,1],[631,1,1,1,2]]],[22,1,1,2,3,[[704,1,1,2,3]]]],[16442,16516,18137]]],["paths",[6,6,[[18,3,3,0,3,[[494,1,1,0,1],[500,1,1,1,2],[542,1,1,2,3]]],[19,3,3,3,6,[[629,2,2,3,5],[631,1,1,5,6]]]],[14108,14238,14871,16448,16451,16501]]],["trench",[3,3,[[8,3,3,0,3,[[252,1,1,0,1],[261,2,2,1,3]]]],[7638,7910,7912]]],["ways",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16523]]]]},{"k":"H4571","v":[["*",[6,6,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[18,4,4,2,6,[[495,1,1,2,3],[503,1,1,3,4],[514,1,1,4,5],[546,1,1,5,6]]]],[8639,13133,14154,14274,14481,14958]]],["shake",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14958]]],["slide",[2,2,[[18,2,2,0,2,[[503,1,1,0,1],[514,1,1,1,2]]]],[14274,14481]]],["slip",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]]],[8639,13133,14154]]]]},{"k":"H4572","v":[["Maadai",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12286]]]]},{"k":"H4573","v":[["Maadiah",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12629]]]]},{"k":"H4574","v":[["*",[4,4,[[0,1,1,0,1,[[48,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]],[19,1,1,2,3,[[656,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]]],[1493,7592,17241,20425]]],["dainties",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1493]]],["delicately",[2,2,[[8,1,1,0,1,[[250,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[7592,20425]]],["delight",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17241]]]]},{"k":"H4575","v":[["influences",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13824]]]]},{"k":"H4576","v":[["mattock",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17807]]]]},{"k":"H4577","v":[["belly",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21790]]]]},{"k":"H4578","v":[["*",[32,30,[[0,2,2,0,2,[[14,1,1,0,1],[24,1,1,1,2]]],[3,1,1,2,3,[[121,1,1,2,3]]],[7,1,1,3,4,[[232,1,1,3,4]]],[9,3,3,4,7,[[273,1,1,4,5],[282,1,1,5,6],[286,1,1,6,7]]],[13,5,4,7,11,[[387,4,3,7,10],[398,1,1,10,11]]],[17,2,2,11,13,[[455,1,1,11,12],[465,1,1,12,13]]],[18,3,3,13,16,[[499,1,1,13,14],[517,1,1,14,15],[548,1,1,15,16]]],[21,2,2,16,18,[[675,2,2,16,18]]],[22,4,4,18,22,[[694,1,1,18,19],[726,1,1,19,20],[727,1,1,20,21],[741,1,1,21,22]]],[23,3,2,22,24,[[748,2,1,22,23],[775,1,1,23,24]]],[24,2,2,24,26,[[797,1,1,24,25],[798,1,1,25,26]]],[25,2,2,26,28,[[804,1,1,26,27],[808,1,1,27,28]]],[31,2,2,28,30,[[889,1,1,28,29],[890,1,1,29,30]]]],[364,681,3814,7138,8192,8437,8564,11639,11642,11643,11896,13340,13584,14218,14533,14982,17602,17612,17980,18633,18637,18881,19046,19711,20330,20343,20505,20596,22548,22549]]],["+",[7,7,[[0,2,2,0,2,[[14,1,1,0,1],[24,1,1,1,2]]],[9,2,2,2,4,[[273,1,1,2,3],[282,1,1,3,4]]],[18,1,1,4,5,[[548,1,1,4,5]]],[22,1,1,5,6,[[727,1,1,5,6]]],[31,1,1,6,7,[[890,1,1,6,7]]]],[364,681,8192,8437,14982,18637,22549]]],["belly",[2,2,[[21,1,1,0,1,[[675,1,1,0,1]]],[31,1,1,1,2,[[889,1,1,1,2]]]],[17612,22548]]],["bowels",[21,19,[[3,1,1,0,1,[[121,1,1,0,1]]],[9,1,1,1,2,[[286,1,1,1,2]]],[13,5,4,2,6,[[387,4,3,2,5],[398,1,1,5,6]]],[17,2,2,6,8,[[455,1,1,6,7],[465,1,1,7,8]]],[18,1,1,8,9,[[499,1,1,8,9]]],[21,1,1,9,10,[[675,1,1,9,10]]],[22,3,3,10,13,[[694,1,1,10,11],[726,1,1,11,12],[741,1,1,12,13]]],[23,3,2,13,15,[[748,2,1,13,14],[775,1,1,14,15]]],[24,2,2,15,17,[[797,1,1,15,16],[798,1,1,16,17]]],[25,2,2,17,19,[[804,1,1,17,18],[808,1,1,18,19]]]],[3814,8564,11639,11642,11643,11896,13340,13584,14218,17602,17980,18633,18881,19046,19711,20330,20343,20505,20596]]],["heart",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14533]]],["womb",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7138]]]]},{"k":"H4579","v":[["gravel",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18633]]]]},{"k":"H4580","v":[["*",[2,2,[[10,1,1,0,1,[[307,1,1,0,1]]],[18,1,1,1,2,[[512,1,1,1,2]]]],[9329,14426]]],["cake",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9329]]],["feasts",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14426]]]]},{"k":"H4581","v":[["*",[36,35,[[6,1,1,0,1,[[216,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[15,1,1,2,3,[[420,1,1,2,3]]],[18,9,9,3,12,[[504,1,1,3,4],[505,1,1,4,5],[508,2,2,5,7],[514,1,1,7,8],[520,1,1,8,9],[529,1,1,9,10],[537,1,1,10,11],[585,1,1,11,12]]],[19,1,1,12,13,[[637,1,1,12,13]]],[22,10,9,13,22,[[695,2,2,13,15],[701,3,3,15,18],[703,2,1,18,19],[705,1,1,19,20],[708,2,2,20,22]]],[23,1,1,22,23,[[760,1,1,22,23]]],[25,2,2,23,25,[[825,1,1,23,24],[831,1,1,24,25]]],[26,7,7,25,32,[[860,7,7,25,32]]],[28,1,1,32,33,[[878,1,1,32,33]]],[33,2,2,33,35,[[900,1,1,33,34],[902,1,1,34,35]]]],[6680,8635,12503,14286,14307,14333,14335,14489,14568,14717,14814,15750,16685,17992,17993,18081,18088,18091,18122,18156,18219,18220,19355,21081,21219,22037,22043,22046,22055,22067,22074,22075,22359,22691,22723]]],["+",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22075]]],["forces",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22074]]],["fort",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22055]]],["fortress",[3,3,[[23,1,1,0,1,[[760,1,1,0,1]]],[26,2,2,1,3,[[860,2,2,1,3]]]],[19355,22043,22046]]],["hold",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22691]]],["holds",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18088]]],["rock",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6680]]],["strength",[24,23,[[9,1,1,0,1,[[288,1,1,0,1]]],[15,1,1,1,2,[[420,1,1,1,2]]],[18,8,8,2,10,[[504,1,1,2,3],[505,1,1,3,4],[508,1,1,4,5],[514,1,1,5,6],[520,1,1,6,7],[529,1,1,7,8],[537,1,1,8,9],[585,1,1,9,10]]],[19,1,1,10,11,[[637,1,1,10,11]]],[22,8,7,11,18,[[695,1,1,11,12],[701,2,2,12,14],[703,2,1,14,15],[705,1,1,15,16],[708,2,2,16,18]]],[25,2,2,18,20,[[825,1,1,18,19],[831,1,1,19,20]]],[26,1,1,20,21,[[860,1,1,20,21]]],[28,1,1,21,22,[[878,1,1,21,22]]],[33,1,1,22,23,[[902,1,1,22,23]]]],[8635,12503,14286,14307,14335,14489,14568,14717,14814,15750,16685,17993,18081,18091,18122,18156,18219,18220,21081,21219,22067,22359,22723]]],["strengthen",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22037]]],["strong",[2,2,[[18,1,1,0,1,[[508,1,1,0,1]]],[22,1,1,1,2,[[695,1,1,1,2]]]],[14333,17992]]]]},{"k":"H4582","v":[["Maoch",[1,1,[[8,1,1,0,1,[[262,1,1,0,1]]]],[7932]]]]},{"k":"H4583","v":[["*",[19,19,[[4,1,1,0,1,[[178,1,1,0,1]]],[8,2,2,1,3,[[237,2,2,1,3]]],[12,1,1,3,4,[[341,1,1,3,4]]],[13,2,2,4,6,[[396,1,1,4,5],[402,1,1,5,6]]],[18,5,5,6,11,[[503,1,1,6,7],[545,1,1,7,8],[548,1,1,8,9],[567,1,1,9,10],[568,1,1,10,11]]],[23,5,5,11,16,[[753,1,1,11,12],[754,1,1,12,13],[769,1,1,13,14],[793,1,1,14,15],[795,1,1,15,16]]],[33,1,1,16,17,[[901,1,1,16,17]]],[35,1,1,17,18,[[908,1,1,17,18]]],[37,1,1,18,19,[[912,1,1,18,19]]]],[5581,7269,7272,10426,11854,12008,14281,14905,14979,15379,15404,19186,19223,19564,20160,20249,22710,22827,22912]]],["+",[3,3,[[4,1,1,0,1,[[178,1,1,0,1]]],[23,1,1,1,2,[[769,1,1,1,2]]],[37,1,1,2,3,[[912,1,1,2,3]]]],[5581,19564,22912]]],["den",[2,2,[[23,2,2,0,2,[[753,1,1,0,1],[754,1,1,1,2]]]],[19186,19223]]],["dwelling",[3,3,[[23,1,1,0,1,[[793,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]],[35,1,1,2,3,[[908,1,1,2,3]]]],[20160,22710,22827]]],["dwellingplace",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20249]]],["habitation",[6,6,[[8,2,2,0,2,[[237,2,2,0,2]]],[18,4,4,2,6,[[503,1,1,2,3],[545,1,1,3,4],[548,1,1,4,5],[568,1,1,5,6]]]],[7269,7272,14281,14905,14979,15404]]],["habitations",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10426]]],["place",[3,3,[[13,2,2,0,2,[[396,1,1,0,1],[402,1,1,1,2]]],[18,1,1,2,3,[[567,1,1,2,3]]]],[11854,12008,15379]]]]},{"k":"H4584","v":[["*",[8,6,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,1,1,1,2,[[220,1,1,1,2]]],[8,4,3,2,5,[[258,3,2,2,4],[260,1,1,4,5]]],[12,2,1,5,6,[[339,2,1,5,6]]]],[6257,6823,7834,7835,7863,10351]]],["Maon",[7,5,[[5,1,1,0,1,[[201,1,1,0,1]]],[8,4,3,1,4,[[258,3,2,1,3],[260,1,1,3,4]]],[12,2,1,4,5,[[339,2,1,4,5]]]],[6257,7834,7835,7863,10351]]],["Maonites",[1,1,[[6,1,1,0,1,[[220,1,1,0,1]]]],[6823]]]]},{"k":"H4585","v":[["*",[9,9,[[4,1,1,0,1,[[185,1,1,0,1]]],[17,2,2,1,3,[[472,1,1,1,2],[473,1,1,2,3]]],[18,2,2,3,5,[[553,1,1,3,4],[581,1,1,4,5]]],[21,1,1,5,6,[[674,1,1,5,6]]],[23,1,1,6,7,[[765,1,1,6,7]]],[29,1,1,7,8,[[881,1,1,7,8]]],[33,1,1,8,9,[[901,1,1,8,9]]]],[5837,13777,13833,15083,15593,17590,19453,22399,22711]]],["+",[2,2,[[21,1,1,0,1,[[674,1,1,0,1]]],[29,1,1,1,2,[[881,1,1,1,2]]]],[17590,22399]]],["dens",[3,3,[[17,1,1,0,1,[[473,1,1,0,1]]],[18,1,1,1,2,[[581,1,1,1,2]]],[33,1,1,2,3,[[901,1,1,2,3]]]],[13833,15593,22711]]],["habitations",[1,1,[[23,1,1,0,1,[[765,1,1,0,1]]]],[19453]]],["place",[1,1,[[18,1,1,0,1,[[553,1,1,0,1]]]],[15083]]],["places",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13777]]],["refuge",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5837]]]]},{"k":"H4586","v":[["*",[3,3,[[13,1,1,0,1,[[392,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,1,1,2,3,[[419,1,1,2,3]]]],[11739,12077,12472]]],["Mehunim",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12077]]],["Mehunims",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11739]]],["Meunim",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12472]]]]},{"k":"H4587","v":[["Meonothai",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10399]]]]},{"k":"H4588","v":[["dimness",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17829]]]]},{"k":"H4589","v":[["nakedness",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22763]]]]},{"k":"H4590","v":[["Maaziah",[2,2,[[12,1,1,0,1,[[361,1,1,0,1]]],[15,1,1,1,2,[[422,1,1,1,2]]]],[11033,12557]]]]},{"k":"H4591","v":[["*",[22,21,[[1,4,4,0,4,[[61,1,1,0,1],[65,2,2,1,3],[79,1,1,3,4]]],[2,3,2,4,6,[[114,2,1,4,5],[115,1,1,5,6]]],[3,4,4,6,10,[[127,1,1,6,7],[142,1,1,7,8],[149,1,1,8,9],[151,1,1,9,10]]],[11,1,1,10,11,[[316,1,1,10,11]]],[15,1,1,11,12,[[421,1,1,11,12]]],[18,2,2,12,14,[[584,2,2,12,14]]],[19,1,1,14,15,[[640,1,1,14,15]]],[20,1,1,15,16,[[670,1,1,15,16]]],[22,1,1,16,17,[[699,1,1,16,17]]],[23,3,3,17,20,[[754,1,1,17,18],[773,1,1,18,19],[774,1,1,19,20]]],[25,1,1,20,21,[[830,1,1,20,21]]]],[1820,1964,1965,2397,3485,3546,4056,4543,4814,4853,9606,12543,15737,15738,16758,17526,18052,19225,19641,19686,21198]]],["+",[3,3,[[2,1,1,0,1,[[115,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]]],[3546,4814,9606]]],["decrease",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15737]]],["diminish",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[25,1,1,1,2,[[830,1,1,1,2]]]],[3485,21198]]],["diminished",[3,3,[[19,1,1,0,1,[[640,1,1,0,1]]],[22,1,1,1,2,[[699,1,1,1,2]]],[23,1,1,2,3,[[773,1,1,2,3]]]],[16758,18052,19641]]],["few",[3,3,[[3,1,1,0,1,[[151,1,1,0,1]]],[20,1,1,1,2,[[670,1,1,1,2]]],[23,1,1,2,3,[[774,1,1,2,3]]]],[4853,17526,19686]]],["fewness",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3485]]],["least",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4056]]],["less",[3,3,[[1,2,2,0,2,[[65,1,1,0,1],[79,1,1,1,2]]],[3,1,1,2,3,[[142,1,1,2,3]]]],[1964,2397,4543]]],["little",[3,3,[[1,2,2,0,2,[[61,1,1,0,1],[65,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]]],[1820,1965,12543]]],["minished",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15738]]],["nothing",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19225]]]]},{"k":"H4592","v":[["*",[101,92,[[0,11,10,0,10,[[17,1,1,0,1],[23,2,2,1,3],[25,1,1,3,4],[29,2,2,4,6],[42,3,2,6,8],[43,1,1,8,9],[46,1,1,9,10]]],[1,3,2,10,12,[[66,1,1,10,11],[72,2,1,11,12]]],[2,1,1,12,13,[[114,1,1,12,13]]],[3,7,7,13,20,[[129,1,1,13,14],[132,2,2,14,16],[142,2,2,16,18],[149,1,1,18,19],[151,1,1,19,20]]],[4,6,5,20,25,[[159,3,2,20,22],[178,1,1,22,23],[180,2,2,23,25]]],[5,2,2,25,27,[[193,1,1,25,26],[208,1,1,26,27]]],[6,1,1,27,28,[[214,1,1,27,28]]],[7,1,1,28,29,[[233,1,1,28,29]]],[8,4,4,29,33,[[249,3,3,29,32],[252,1,1,32,33]]],[9,3,3,33,36,[[278,1,1,33,34],[282,1,1,34,35],[285,1,1,35,36]]],[10,2,2,36,38,[[307,2,2,36,38]]],[11,1,1,38,39,[[322,1,1,38,39]]],[12,1,1,39,40,[[353,1,1,39,40]]],[13,2,2,40,42,[[378,1,1,40,41],[395,1,1,41,42]]],[14,2,1,42,43,[[411,2,1,42,43]]],[15,2,2,43,45,[[414,1,1,43,44],[419,1,1,44,45]]],[17,5,4,45,49,[[445,2,1,45,46],[450,1,1,46,47],[459,1,1,47,48],[467,1,1,48,49]]],[18,10,10,49,59,[[479,1,1,49,50],[485,1,1,50,51],[514,2,2,51,53],[550,1,1,53,54],[558,1,1,54,55],[571,1,1,55,56],[582,1,1,56,57],[586,1,1,57,58],[596,1,1,58,59]]],[19,10,6,59,65,[[632,1,1,59,60],[633,3,1,60,61],[637,1,1,61,62],[642,1,1,62,63],[643,1,1,63,64],[651,3,1,64,65]]],[20,4,4,65,69,[[663,2,2,65,67],[667,1,1,67,68],[668,1,1,68,69]]],[21,1,1,69,70,[[673,1,1,69,70]]],[22,7,7,70,77,[[679,1,1,70,71],[685,1,1,71,72],[688,2,2,72,74],[694,1,1,74,75],[704,1,1,75,76],[707,1,1,76,77]]],[23,2,2,77,79,[[786,1,1,77,78],[795,1,1,78,79]]],[25,5,5,79,84,[[806,1,1,79,80],[812,1,1,80,81],[817,2,2,81,83],[835,1,1,83,84]]],[26,2,2,84,86,[[860,2,2,84,86]]],[27,2,2,86,88,[[862,1,1,86,87],[869,1,1,87,88]]],[36,3,3,88,91,[[909,2,2,88,90],[910,1,1,90,91]]],[37,1,1,91,92,[[911,1,1,91,92]]]],[428,608,634,702,845,860,1292,1301,1349,1429,1987,2174,3521,4093,4203,4207,4543,4545,4814,4853,5118,5133,5571,5649,5673,5979,6443,6618,7156,7514,7537,7551,7646,8294,8427,8547,9327,9329,9811,10839,11444,11825,12245,12319,12424,13106,13214,13460,13650,13957,14017,14460,14466,15022,15231,15448,15618,15763,15985,16531,16550,16676,16823,16848,17112,17399,17409,17489,17494,17575,17663,17795,17857,17875,17983,18150,18210,19977,20245,20549,20671,20782,20809,21331,22059,22070,22098,22204,22846,22849,22861,22893]]],["+",[5,5,[[4,2,2,0,2,[[178,1,1,0,1],[180,1,1,1,2]]],[9,1,1,2,3,[[285,1,1,2,3]]],[18,1,1,3,4,[[485,1,1,3,4]]],[22,1,1,4,5,[[694,1,1,4,5]]]],[5571,5649,8547,14017,17983]]],["almost",[5,5,[[1,1,1,0,1,[[66,1,1,0,1]]],[18,3,3,1,4,[[550,1,1,1,2],[571,1,1,2,3],[596,1,1,3,4]]],[19,1,1,4,5,[[632,1,1,4,5]]]],[1987,15022,15448,15985,16531]]],["few",[22,22,[[0,1,1,0,1,[[46,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[3,4,4,2,6,[[129,1,1,2,3],[142,2,2,3,5],[151,1,1,5,6]]],[4,1,1,6,7,[[180,1,1,6,7]]],[5,1,1,7,8,[[193,1,1,7,8]]],[8,2,2,8,10,[[249,1,1,8,9],[252,1,1,9,10]]],[12,1,1,10,11,[[353,1,1,10,11]]],[13,1,1,11,12,[[395,1,1,11,12]]],[15,2,2,12,14,[[414,1,1,12,13],[419,1,1,13,14]]],[17,1,1,14,15,[[445,1,1,14,15]]],[18,2,2,15,17,[[582,1,1,15,16],[586,1,1,16,17]]],[20,2,2,17,19,[[663,1,1,17,18],[667,1,1,18,19]]],[22,1,1,19,20,[[688,1,1,19,20]]],[23,1,1,20,21,[[786,1,1,20,21]]],[25,1,1,21,22,[[806,1,1,21,22]]]],[1429,3521,4093,4543,4545,4853,5673,5979,7514,7646,10839,11825,12319,12424,13106,15618,15763,17399,17489,17857,19977,20549]]],["fewer",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4814]]],["fewest",[1,1,[[4,1,1,0,1,[[159,1,1,0,1]]]],[5118]]],["lightly",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[702]]],["little",[49,41,[[0,8,7,0,7,[[17,1,1,0,1],[23,2,2,1,3],[29,1,1,3,4],[42,3,2,4,6],[43,1,1,6,7]]],[1,2,1,7,8,[[72,2,1,7,8]]],[4,2,1,8,9,[[159,2,1,8,9]]],[5,1,1,9,10,[[208,1,1,9,10]]],[6,1,1,10,11,[[214,1,1,10,11]]],[7,1,1,11,12,[[233,1,1,11,12]]],[8,2,2,12,14,[[249,2,2,12,14]]],[9,2,2,14,16,[[278,1,1,14,15],[282,1,1,15,16]]],[10,2,2,16,18,[[307,2,2,16,18]]],[11,1,1,18,19,[[322,1,1,18,19]]],[14,2,1,19,20,[[411,2,1,19,20]]],[17,1,1,20,21,[[445,1,1,20,21]]],[18,3,3,21,24,[[479,1,1,21,22],[514,2,2,22,24]]],[19,8,4,24,28,[[633,3,1,24,25],[642,1,1,25,26],[643,1,1,26,27],[651,3,1,27,28]]],[20,2,2,28,30,[[663,1,1,28,29],[668,1,1,29,30]]],[21,1,1,30,31,[[673,1,1,30,31]]],[22,2,2,31,33,[[688,1,1,31,32],[704,1,1,32,33]]],[25,2,2,33,35,[[812,1,1,33,34],[817,1,1,34,35]]],[26,1,1,35,36,[[860,1,1,35,36]]],[27,2,2,36,38,[[862,1,1,36,37],[869,1,1,37,38]]],[36,2,2,38,40,[[909,2,2,38,40]]],[37,1,1,40,41,[[911,1,1,40,41]]]],[428,608,634,860,1292,1301,1349,2174,5133,6443,6618,7156,7537,7551,8294,8427,9327,9329,9811,12245,13106,13957,14460,14466,16550,16823,16848,17112,17409,17494,17575,17875,18150,20671,20809,22070,22098,22204,22846,22849,22893]]],["matter",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[845,20782]]],["small",[3,3,[[17,1,1,0,1,[[450,1,1,0,1]]],[22,1,1,1,2,[[679,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[13214,17663,22059]]],["some",[1,1,[[13,1,1,0,1,[[378,1,1,0,1]]]],[11444]]],["soon",[2,2,[[17,1,1,0,1,[[467,1,1,0,1]]],[18,1,1,1,2,[[558,1,1,1,2]]]],[13650,15231]]],["thing",[4,4,[[3,2,2,0,2,[[132,2,2,0,2]]],[22,1,1,2,3,[[685,1,1,2,3]]],[25,1,1,3,4,[[835,1,1,3,4]]]],[4203,4207,17795,21331]]],["while",[4,4,[[17,1,1,0,1,[[459,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]],[23,1,1,2,3,[[795,1,1,2,3]]],[36,1,1,3,4,[[910,1,1,3,4]]]],[13460,18210,20245,22861]]],["worth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16676]]]]},{"k":"H4593","v":[["up",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20959]]]]},{"k":"H4594","v":[["garment",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18846]]]]},{"k":"H4595","v":[["mantles",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17729]]]]},{"k":"H4596","v":[["heap",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17984]]]]},{"k":"H4597","v":[["Maai",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12660]]]]},{"k":"H4598","v":[["*",[28,27,[[1,9,9,0,9,[[77,3,3,0,3],[78,1,1,3,4],[88,5,5,4,9]]],[2,1,1,9,10,[[97,1,1,9,10]]],[8,7,6,10,16,[[237,1,1,10,11],[250,1,1,11,12],[253,1,1,12,13],[259,3,2,13,15],[263,1,1,15,16]]],[9,1,1,16,17,[[279,1,1,16,17]]],[12,1,1,17,18,[[352,1,1,17,18]]],[14,2,2,18,20,[[411,2,2,18,20]]],[17,3,3,20,23,[[436,1,1,20,21],[437,1,1,21,22],[464,1,1,22,23]]],[18,1,1,23,24,[[586,1,1,23,24]]],[22,2,2,24,26,[[737,1,1,24,25],[739,1,1,25,26]]],[25,1,1,26,27,[[827,1,1,26,27]]]],[2297,2324,2327,2341,2686,2687,2688,2689,2690,2924,7259,7587,7680,7843,7850,7956,8335,10818,12240,12242,12889,12903,13546,15784,18817,18853,21116]]],["cloke",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18817]]],["coat",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7259]]],["mantle",[7,7,[[8,2,2,0,2,[[250,1,1,0,1],[263,1,1,1,2]]],[14,2,2,2,4,[[411,2,2,2,4]]],[17,2,2,4,6,[[436,1,1,4,5],[437,1,1,5,6]]],[18,1,1,6,7,[[586,1,1,6,7]]]],[7587,7956,12240,12242,12889,12903,15784]]],["robe",[17,16,[[1,9,9,0,9,[[77,3,3,0,3],[78,1,1,3,4],[88,5,5,4,9]]],[2,1,1,9,10,[[97,1,1,9,10]]],[8,4,3,10,13,[[253,1,1,10,11],[259,3,2,11,13]]],[12,1,1,13,14,[[352,1,1,13,14]]],[17,1,1,14,15,[[464,1,1,14,15]]],[22,1,1,15,16,[[739,1,1,15,16]]]],[2297,2324,2327,2341,2686,2687,2688,2689,2690,2924,7680,7843,7850,10818,13546,18853]]],["robes",[2,2,[[9,1,1,0,1,[[279,1,1,0,1]]],[25,1,1,1,2,[[827,1,1,1,2]]]],[8335,21116]]]]},{"k":"H4599","v":[["*",[23,23,[[0,2,2,0,2,[[6,1,1,0,1],[7,1,1,1,2]]],[2,1,1,2,3,[[100,1,1,2,3]]],[5,2,2,3,5,[[201,1,1,3,4],[204,1,1,4,5]]],[10,1,1,5,6,[[308,1,1,5,6]]],[11,2,2,6,8,[[315,2,2,6,8]]],[13,1,1,8,9,[[398,1,1,8,9]]],[18,5,5,9,14,[[551,1,1,9,10],[561,1,1,10,11],[564,1,1,11,12],[581,1,1,12,13],[591,1,1,13,14]]],[19,3,3,14,17,[[632,1,1,14,15],[635,1,1,15,16],[652,1,1,16,17]]],[21,2,2,17,19,[[674,2,2,17,19]]],[22,2,2,19,21,[[690,1,1,19,20],[719,1,1,20,21]]],[27,1,1,21,22,[[874,1,1,21,22]]],[28,1,1,22,23,[[878,1,1,22,23]]]],[170,185,3033,6211,6308,9346,9595,9601,11879,15063,15265,15308,15581,15830,16533,16626,17139,17594,17597,17903,18469,22281,22361]]],["+",[1,1,[[22,1,1,0,1,[[690,1,1,0,1]]]],[17903]]],["fountain",[9,9,[[2,1,1,0,1,[[100,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]],[18,2,2,2,4,[[551,1,1,2,3],[591,1,1,3,4]]],[19,1,1,4,5,[[652,1,1,4,5]]],[21,2,2,5,7,[[674,2,2,5,7]]],[27,1,1,7,8,[[874,1,1,7,8]]],[28,1,1,8,9,[[878,1,1,8,9]]]],[3033,6211,15063,15830,17139,17594,17597,22281,22361]]],["fountains",[7,7,[[0,2,2,0,2,[[6,1,1,0,1],[7,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[13,1,1,3,4,[[398,1,1,3,4]]],[19,2,2,4,6,[[632,1,1,4,5],[635,1,1,5,6]]],[22,1,1,6,7,[[719,1,1,6,7]]]],[170,185,9346,11879,16533,16626,18469]]],["springs",[2,2,[[18,2,2,0,2,[[564,1,1,0,1],[581,1,1,1,2]]]],[15308,15581]]],["well",[2,2,[[5,1,1,0,1,[[204,1,1,0,1]]],[18,1,1,1,2,[[561,1,1,1,2]]]],[6308,15265]]],["wells",[2,2,[[11,2,2,0,2,[[315,2,2,0,2]]]],[9595,9601]]]]},{"k":"H4600","v":[["*",[3,3,[[2,1,1,0,1,[[111,1,1,0,1]]],[8,1,1,1,2,[[261,1,1,1,2]]],[25,1,1,2,3,[[824,1,1,2,3]]]],[3393,7912,21010]]],["bruised",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3393]]],["pressed",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21010]]],["stuck",[1,1,[[8,1,1,0,1,[[261,1,1,0,1]]]],[7912]]]]},{"k":"H4601","v":[["*",[23,23,[[0,1,1,0,1,[[21,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]],[9,3,3,2,5,[[269,1,1,2,3],[276,2,2,3,5]]],[10,4,4,5,9,[[292,1,1,5,6],[305,3,3,6,9]]],[12,10,10,9,19,[[339,1,1,9,10],[340,1,1,10,11],[344,2,2,11,13],[345,1,1,13,14],[346,1,1,14,15],[348,1,1,15,16],[356,2,2,16,18],[364,1,1,18,19]]],[13,4,4,19,23,[[377,3,3,19,22],[381,1,1,22,23]]]],[571,6167,8084,8246,8248,8809,9251,9259,9262,10354,10363,10550,10551,10604,10650,10716,10913,10914,11125,11434,11435,11436,11506]]],["+",[1,1,[[12,1,1,0,1,[[356,1,1,0,1]]]],[10913]]],["Maacah",[3,3,[[9,3,3,0,3,[[269,1,1,0,1],[276,2,2,1,3]]]],[8084,8246,8248]]],["Maachah",[18,18,[[0,1,1,0,1,[[21,1,1,0,1]]],[10,4,4,1,5,[[292,1,1,1,2],[305,3,3,2,5]]],[12,9,9,5,14,[[339,1,1,5,6],[340,1,1,6,7],[344,2,2,7,9],[345,1,1,9,10],[346,1,1,10,11],[348,1,1,11,12],[356,1,1,12,13],[364,1,1,13,14]]],[13,4,4,14,18,[[377,3,3,14,17],[381,1,1,17,18]]]],[571,8809,9251,9259,9262,10354,10363,10550,10551,10604,10650,10716,10914,11125,11434,11435,11436,11506]]],["Maachathites",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6167]]]]},{"k":"H4602","v":[["*",[8,8,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,3,3,1,4,[[198,1,1,1,2],[199,2,2,2,4]]],[9,1,1,4,5,[[289,1,1,4,5]]],[11,1,1,5,6,[[337,1,1,5,6]]],[12,1,1,6,7,[[341,1,1,6,7]]],[23,1,1,7,8,[[784,1,1,7,8]]]],[4989,6135,6165,6167,8687,10245,10404,19949]]],["Maachathi",[1,1,[[4,1,1,0,1,[[155,1,1,0,1]]]],[4989]]],["Maachathite",[4,4,[[9,1,1,0,1,[[289,1,1,0,1]]],[11,1,1,1,2,[[337,1,1,1,2]]],[12,1,1,2,3,[[341,1,1,2,3]]],[23,1,1,3,4,[[784,1,1,3,4]]]],[8687,10245,10404,19949]]],["Maachathites",[3,3,[[5,3,3,0,3,[[198,1,1,0,1],[199,2,2,1,3]]]],[6135,6165,6167]]]]},{"k":"H4603","v":[["*",[36,35,[[2,3,3,0,3,[[94,1,1,0,1],[95,1,1,1,2],[115,1,1,2,3]]],[3,3,3,3,6,[[121,3,3,3,6]]],[4,1,1,6,7,[[184,1,1,6,7]]],[5,4,4,7,11,[[193,1,1,7,8],[208,3,3,8,11]]],[12,3,3,11,14,[[339,1,1,11,12],[342,1,1,12,13],[347,1,1,13,14]]],[13,8,8,14,22,[[378,1,1,14,15],[392,2,2,15,17],[394,2,2,17,19],[395,1,1,19,20],[396,1,1,20,21],[402,1,1,21,22]]],[14,2,2,22,24,[[412,2,2,22,24]]],[15,2,2,24,26,[[413,1,1,24,25],[425,1,1,25,26]]],[19,1,1,26,27,[[643,1,1,26,27]]],[25,8,7,27,34,[[815,1,1,27,28],[816,1,1,28,29],[818,2,1,29,30],[819,1,1,30,31],[821,1,1,31,32],[840,2,2,32,34]]],[26,1,1,34,35,[[858,1,1,34,35]]]],[2845,2851,3564,3798,3804,3819,5809,5977,6442,6446,6457,10313,10453,10672,11439,11748,11750,11783,11786,11797,11834,12007,12254,12262,12304,12698,16850,20744,20762,20845,20873,20922,21471,21474,21995]]],["+",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[12007]]],["commit",[4,4,[[2,2,2,0,2,[[94,1,1,0,1],[95,1,1,1,2]]],[3,1,1,2,3,[[121,1,1,2,3]]],[5,1,1,3,4,[[208,1,1,3,4]]]],[2845,2851,3804,6446]]],["committed",[6,6,[[5,3,3,0,3,[[193,1,1,0,1],[208,2,2,1,3]]],[12,1,1,3,4,[[347,1,1,3,4]]],[25,2,2,4,6,[[816,1,1,4,5],[821,1,1,5,6]]]],[5977,6442,6457,10672,20762,20922]]],["do",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3798]]],["done",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3819]]],["transgress",[2,2,[[15,2,2,0,2,[[413,1,1,0,1],[425,1,1,1,2]]]],[12304,12698]]],["transgressed",[6,6,[[12,2,2,0,2,[[339,1,1,0,1],[342,1,1,1,2]]],[13,3,3,2,5,[[378,1,1,2,3],[392,1,1,3,4],[394,1,1,4,5]]],[14,1,1,5,6,[[412,1,1,5,6]]]],[10313,10453,11439,11748,11783,12262]]],["transgresseth",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16850]]],["trespass",[2,2,[[13,1,1,0,1,[[394,1,1,0,1]]],[25,1,1,1,2,[[818,1,1,1,2]]]],[11786,20845]]],["trespassed",[11,11,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[13,3,3,2,5,[[392,1,1,2,3],[395,1,1,3,4],[396,1,1,4,5]]],[14,1,1,5,6,[[412,1,1,5,6]]],[25,4,4,6,10,[[818,1,1,6,7],[819,1,1,7,8],[840,2,2,8,10]]],[26,1,1,10,11,[[858,1,1,10,11]]]],[3564,5809,11750,11797,11834,12254,20845,20873,21471,21474,21995]]],["trespassing",[1,1,[[25,1,1,0,1,[[815,1,1,0,1]]]],[20744]]]]},{"k":"H4604","v":[["*",[28,28,[[2,3,3,0,3,[[94,1,1,0,1],[95,1,1,1,2],[115,1,1,2,3]]],[3,4,4,3,7,[[121,3,3,3,6],[147,1,1,6,7]]],[5,5,5,7,12,[[193,1,1,7,8],[208,4,4,8,12]]],[12,2,2,12,14,[[346,1,1,12,13],[347,1,1,13,14]]],[13,4,4,14,18,[[394,1,1,14,15],[395,1,1,15,16],[399,1,1,16,17],[402,1,1,17,18]]],[14,3,3,18,21,[[411,2,2,18,20],[412,1,1,20,21]]],[17,1,1,21,22,[[456,1,1,21,22]]],[25,5,5,22,27,[[815,1,1,22,23],[816,1,1,23,24],[819,1,1,24,25],[821,1,1,25,26],[840,1,1,26,27]]],[26,1,1,27,28,[[858,1,1,27,28]]]],[2845,2851,3564,3798,3804,3819,4680,5977,6442,6446,6448,6457,10616,10672,11783,11810,11927,12007,12239,12241,12258,13389,20744,20762,20873,20922,21474,21995]]],["+",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[12007]]],["falsehood",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13389]]],["grievously",[1,1,[[25,1,1,0,1,[[815,1,1,0,1]]]],[20744]]],["sore",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11783]]],["transgression",[6,6,[[5,1,1,0,1,[[208,1,1,0,1]]],[12,2,2,1,3,[[346,1,1,1,2],[347,1,1,2,3]]],[13,1,1,3,4,[[395,1,1,3,4]]],[14,2,2,4,6,[[411,1,1,4,5],[412,1,1,5,6]]]],[6448,10616,10672,11810,12241,12258]]],["trespass",[17,17,[[2,3,3,0,3,[[94,1,1,0,1],[95,1,1,1,2],[115,1,1,2,3]]],[3,4,4,3,7,[[121,3,3,3,6],[147,1,1,6,7]]],[5,4,4,7,11,[[193,1,1,7,8],[208,3,3,8,11]]],[13,1,1,11,12,[[399,1,1,11,12]]],[14,1,1,12,13,[[411,1,1,12,13]]],[25,3,3,13,16,[[816,1,1,13,14],[819,1,1,14,15],[821,1,1,15,16]]],[26,1,1,16,17,[[858,1,1,16,17]]]],[2845,2851,3564,3798,3804,3819,4680,5977,6442,6446,6457,11927,12239,20762,20873,20922,21995]]],["trespasses",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21474]]]]},{"k":"H4605","v":[["*",[140,134,[[0,3,3,0,3,[[5,1,1,0,1],[6,1,1,1,2],[21,1,1,2,3]]],[1,13,13,3,16,[[69,1,1,3,4],[74,2,2,4,6],[75,1,1,6,7],[77,1,1,7,8],[79,1,1,8,9],[85,1,1,9,10],[86,1,1,10,11],[87,1,1,11,12],[88,2,2,12,14],[89,2,2,14,16]]],[2,2,2,16,18,[[100,1,1,16,17],[116,1,1,17,18]]],[3,37,37,18,55,[[117,15,15,18,33],[119,7,7,33,40],[120,9,9,40,49],[124,1,1,49,50],[130,1,1,50,51],[142,3,3,51,54],[148,1,1,54,55]]],[4,5,4,55,59,[[156,1,1,55,56],[157,1,1,56,57],[180,3,2,57,59]]],[5,3,3,59,62,[[188,1,1,59,60],[189,2,2,60,62]]],[6,2,2,62,64,[[211,1,1,62,63],[217,1,1,63,64]]],[8,4,4,64,68,[[244,1,1,64,65],[245,1,1,65,66],[251,1,1,66,67],[265,1,1,67,68]]],[10,8,8,68,76,[[297,6,6,68,74],[298,2,2,74,76]]],[11,2,2,76,78,[[315,1,1,76,77],[331,1,1,77,78]]],[12,8,8,78,86,[[351,1,1,78,79],[359,1,1,79,80],[360,4,4,80,84],[366,2,2,84,86]]],[13,11,11,86,97,[[367,1,1,86,87],[370,1,1,87,88],[371,1,1,88,89],[382,1,1,89,90],[383,1,1,90,91],[386,1,1,91,92],[391,1,1,92,93],[392,1,1,93,94],[397,2,2,94,96],[400,1,1,96,97]]],[14,2,2,97,99,[[405,1,1,97,98],[411,1,1,98,99]]],[17,4,4,99,103,[[438,1,1,99,100],[453,1,1,100,101],[466,2,2,101,103]]],[18,2,2,103,105,[[551,1,1,103,104],[555,1,1,104,105]]],[19,2,2,105,107,[[635,1,1,105,106],[642,1,1,106,107]]],[20,1,1,107,108,[[661,1,1,107,108]]],[22,6,6,108,114,[[684,1,1,108,109],[685,1,1,109,110],[686,1,1,110,111],[692,1,1,111,112],[715,1,1,112,113],[723,1,1,113,114]]],[23,5,5,114,119,[[748,1,1,114,115],[775,1,1,115,116],[779,1,1,116,117],[787,1,1,117,118],[796,1,1,118,119]]],[25,15,10,119,129,[[802,5,4,119,123],[809,1,1,123,124],[811,1,1,124,125],[812,1,1,125,126],[838,1,1,126,127],[842,5,1,127,128],[844,1,1,128,129]]],[26,2,2,129,131,[[861,2,2,129,131]]],[29,1,1,131,132,[[880,1,1,131,132]]],[36,2,2,132,134,[[910,2,2,132,134]]]],[153,179,556,2055,2215,2216,2249,2320,2396,2585,2613,2659,2684,2695,2726,2727,3018,3577,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3707,3714,3720,3726,3731,3732,3735,3746,3749,3766,3768,3773,3778,3782,3786,3790,3963,4137,4491,4493,4551,4729,5043,5061,5624,5654,5880,5906,5909,6545,6707,7393,7441,7608,8003,8937,8945,8954,8959,8963,8965,8992,9008,9597,10091,10776,10969,10986,11000,11007,11010,11167,11189,11195,11250,11276,11521,11535,11606,11709,11740,11870,11871,11937,12105,12243,12908,13292,13590,13616,15053,15136,16630,16831,17380,17771,17793,17828,17941,18383,18569,19055,19728,19827,20007,20308,20475,20486,20490,20491,20606,20652,20677,21405,21533,21587,22087,22088,22388,22870,22873]]],["+",[63,58,[[0,3,3,0,3,[[5,1,1,0,1],[6,1,1,1,2],[21,1,1,2,3]]],[1,9,9,3,12,[[69,1,1,3,4],[74,1,1,4,5],[75,1,1,5,6],[77,1,1,6,7],[85,1,1,7,8],[88,2,2,8,10],[89,2,2,10,12]]],[2,1,1,12,13,[[100,1,1,12,13]]],[3,2,2,13,15,[[120,2,2,13,15]]],[4,4,3,15,18,[[156,1,1,15,16],[157,1,1,16,17],[180,2,1,17,18]]],[5,3,3,18,21,[[188,1,1,18,19],[189,2,2,19,21]]],[6,1,1,21,22,[[217,1,1,21,22]]],[10,7,7,22,29,[[297,5,5,22,27],[298,2,2,27,29]]],[12,1,1,29,30,[[360,1,1,29,30]]],[13,4,4,30,34,[[370,1,1,30,31],[371,1,1,31,32],[383,1,1,32,33],[392,1,1,33,34]]],[17,4,4,34,38,[[438,1,1,34,35],[453,1,1,35,36],[466,2,2,36,38]]],[18,2,2,38,40,[[551,1,1,38,39],[555,1,1,39,40]]],[19,1,1,40,41,[[635,1,1,40,41]]],[22,3,3,41,44,[[684,1,1,41,42],[692,1,1,42,43],[723,1,1,43,44]]],[23,5,5,44,49,[[748,1,1,44,45],[775,1,1,45,46],[779,1,1,46,47],[787,1,1,47,48],[796,1,1,48,49]]],[25,10,6,49,55,[[802,4,3,49,52],[811,1,1,52,53],[812,1,1,53,54],[842,4,1,54,55]]],[26,2,2,55,57,[[861,2,2,55,57]]],[29,1,1,57,58,[[880,1,1,57,58]]]],[153,179,556,2055,2216,2249,2320,2585,2684,2695,2726,2727,3018,3749,3768,5043,5061,5654,5880,5906,5909,6707,8937,8945,8954,8959,8963,8992,9008,11000,11250,11276,11535,11740,12908,13292,13590,13616,15053,15136,16630,17771,17941,18569,19055,19728,19827,20007,20308,20475,20486,20490,20652,20677,21533,22087,22088,22388]]],["above",[9,9,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[10,1,1,3,4,[[297,1,1,3,4]]],[12,1,1,4,5,[[360,1,1,4,5]]],[13,1,1,5,6,[[391,1,1,5,6]]],[19,1,1,6,7,[[642,1,1,6,7]]],[22,1,1,7,8,[[685,1,1,7,8]]],[25,1,1,8,9,[[838,1,1,8,9]]]],[2396,3577,5624,8965,11010,11709,16831,17793,21405]]],["exceeding",[2,2,[[12,1,1,0,1,[[359,1,1,0,1]]],[13,1,1,1,2,[[382,1,1,1,2]]]],[10969,11521]]],["exceedingly",[2,2,[[12,1,1,0,1,[[366,1,1,0,1]]],[13,1,1,1,2,[[367,1,1,1,2]]]],[11189,11195]]],["forward",[2,2,[[8,2,2,0,2,[[251,1,1,0,1],[265,1,1,1,2]]]],[7608,8003]]],["high",[5,5,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[12,1,1,2,3,[[351,1,1,2,3]]],[13,2,2,3,5,[[386,1,1,3,4],[400,1,1,4,5]]]],[2215,2613,10776,11606,11937]]],["over",[2,2,[[12,1,1,0,1,[[366,1,1,0,1]]],[14,1,1,1,2,[[411,1,1,1,2]]]],[11167,12243]]],["upward",[55,55,[[1,1,1,0,1,[[87,1,1,0,1]]],[3,35,35,1,36,[[117,15,15,1,16],[119,7,7,16,23],[120,7,7,23,30],[124,1,1,30,31],[130,1,1,31,32],[142,3,3,32,35],[148,1,1,35,36]]],[6,1,1,36,37,[[211,1,1,36,37]]],[8,2,2,37,39,[[244,1,1,37,38],[245,1,1,38,39]]],[11,2,2,39,41,[[315,1,1,39,40],[331,1,1,40,41]]],[12,2,2,41,43,[[360,2,2,41,43]]],[13,2,2,43,45,[[397,2,2,43,45]]],[14,1,1,45,46,[[405,1,1,45,46]]],[20,1,1,46,47,[[661,1,1,46,47]]],[22,2,2,47,49,[[686,1,1,47,48],[715,1,1,48,49]]],[25,4,4,49,53,[[802,1,1,49,50],[809,1,1,50,51],[842,1,1,51,52],[844,1,1,52,53]]],[36,2,2,53,55,[[910,2,2,53,55]]]],[2659,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3707,3714,3720,3726,3731,3732,3735,3746,3766,3773,3778,3782,3786,3790,3963,4137,4491,4493,4551,4729,6545,7393,7441,9597,10091,10986,11007,11870,11871,12105,17380,17828,18383,20491,20606,21533,21587,22870,22873]]]]},{"k":"H4606","v":[["down",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21919]]]]},{"k":"H4607","v":[["up",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12499]]]]},{"k":"H4608","v":[["*",[19,19,[[3,1,1,0,1,[[150,1,1,0,1]]],[5,3,3,1,4,[[196,1,1,1,2],[201,1,1,2,3],[204,1,1,3,4]]],[6,2,2,4,6,[[211,1,1,4,5],[218,1,1,5,6]]],[8,1,1,6,7,[[244,1,1,6,7]]],[9,1,1,7,8,[[281,1,1,7,8]]],[11,1,1,8,9,[[321,1,1,8,9]]],[13,2,2,9,11,[[386,1,1,9,10],[398,1,1,10,11]]],[15,2,2,11,13,[[421,1,1,11,12],[424,1,1,12,13]]],[22,1,1,13,14,[[693,1,1,13,14]]],[23,2,2,14,16,[[777,1,1,14,15],[792,1,1,15,16]]],[25,3,3,16,19,[[841,3,3,16,19]]]],[4820,6074,6209,6310,6545,6732,7402,8419,9783,11603,11908,12515,12661,17965,19781,20085,21508,21511,21514]]],["+",[2,2,[[6,2,2,0,2,[[211,1,1,0,1],[218,1,1,1,2]]]],[6545,6732]]],["ascent",[2,2,[[3,1,1,0,1,[[150,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]]],[4820,8419]]],["bring",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19781]]],["chiefest",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11908]]],["cliff",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11603]]],["hill",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7402]]],["stairs",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12515]]],["up",[10,10,[[5,3,3,0,3,[[196,1,1,0,1],[201,1,1,1,2],[204,1,1,2,3]]],[11,1,1,3,4,[[321,1,1,3,4]]],[15,1,1,4,5,[[424,1,1,4,5]]],[22,1,1,5,6,[[693,1,1,5,6]]],[23,1,1,6,7,[[792,1,1,6,7]]],[25,3,3,7,10,[[841,3,3,7,10]]]],[6074,6209,6310,9783,12661,17965,20085,21508,21511,21514]]]]},{"k":"H4609","v":[["*",[31,24,[[1,1,1,0,1,[[69,1,1,0,1]]],[10,2,2,1,3,[[300,2,2,1,3]]],[11,7,4,3,7,[[321,1,1,3,4],[332,6,3,4,7]]],[12,1,1,7,8,[[354,1,1,7,8]]],[13,2,2,8,10,[[375,2,2,8,10]]],[14,1,1,10,11,[[409,1,1,10,11]]],[15,2,2,11,13,[[415,1,1,11,12],[424,1,1,12,13]]],[22,5,1,13,14,[[716,5,1,13,14]]],[25,9,9,14,23,[[812,1,1,14,15],[841,7,7,15,22],[844,1,1,22,23]]],[29,1,1,23,24,[[887,1,1,23,24]]]],[2077,9098,9099,9769,10107,10108,10109,10880,11382,11383,12182,12342,12661,18398,20660,21483,21499,21503,21508,21511,21514,21526,21589,22501]]],["come",[1,1,[[25,1,1,0,1,[[812,1,1,0,1]]]],[20660]]],["degree",[1,1,[[12,1,1,0,1,[[354,1,1,0,1]]]],[10880]]],["degrees",[9,4,[[11,5,3,0,3,[[332,5,3,0,3]]],[22,4,1,3,4,[[716,4,1,3,4]]]],[10107,10108,10109,18398]]],["dial",[2,2,[[11,1,1,0,1,[[332,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]]],[10109,18398]]],["stairs",[5,5,[[11,1,1,0,1,[[321,1,1,0,1]]],[15,2,2,1,3,[[415,1,1,1,2],[424,1,1,2,3]]],[25,2,2,3,5,[[841,1,1,3,4],[844,1,1,4,5]]]],[9769,12342,12661,21483,21589]]],["steps",[11,11,[[1,1,1,0,1,[[69,1,1,0,1]]],[10,2,2,1,3,[[300,2,2,1,3]]],[13,2,2,3,5,[[375,2,2,3,5]]],[25,6,6,5,11,[[841,6,6,5,11]]]],[2077,9098,9099,11382,11383,21499,21503,21508,21511,21514,21526]]],["stories",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22501]]],["up",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12182]]]]},{"k":"H4610","v":[["Maalehacrabbim",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6205]]]]},{"k":"H4611","v":[["*",[41,41,[[4,1,1,0,1,[[180,1,1,0,1]]],[6,1,1,1,2,[[212,1,1,1,2]]],[8,1,1,2,3,[[260,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[18,5,5,4,9,[[505,1,1,4,5],[554,1,1,5,6],[555,1,1,6,7],[583,2,2,7,9]]],[19,1,1,9,10,[[647,1,1,9,10]]],[22,3,3,10,13,[[679,1,1,10,11],[681,2,2,11,13]]],[23,17,17,13,30,[[748,2,2,13,15],[751,2,2,15,17],[755,1,1,17,18],[761,1,1,18,19],[762,1,1,19,20],[765,2,2,20,22],[767,2,2,22,24],[769,1,1,24,25],[770,2,2,25,27],[776,1,1,27,28],[779,1,1,28,29],[788,1,1,29,30]]],[25,1,1,30,31,[[837,1,1,30,31]]],[27,5,5,31,36,[[865,1,1,31,32],[866,1,1,32,33],[868,1,1,33,34],[870,1,1,34,35],[873,1,1,35,36]]],[32,3,3,36,39,[[894,1,1,36,37],[895,1,1,37,38],[899,1,1,38,39]]],[37,2,2,39,41,[[911,2,2,39,41]]]],[5631,6564,7864,12546,14303,15104,15120,15680,15690,16965,17670,17715,17717,19031,19045,19122,19124,19244,19367,19395,19452,19454,19486,19506,19539,19575,19585,19750,19838,20032,21390,22142,22156,22180,22223,22254,22602,22612,22677,22882,22884]]],["+",[2,2,[[6,1,1,0,1,[[212,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]]],[6564,12546]]],["doings",[34,34,[[4,1,1,0,1,[[180,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]],[19,1,1,2,3,[[647,1,1,2,3]]],[22,3,3,3,6,[[679,1,1,3,4],[681,2,2,4,6]]],[23,17,17,6,23,[[748,2,2,6,8],[751,2,2,8,10],[755,1,1,10,11],[761,1,1,11,12],[762,1,1,12,13],[765,2,2,13,15],[767,2,2,15,17],[769,1,1,17,18],[770,2,2,18,20],[776,1,1,20,21],[779,1,1,21,22],[788,1,1,22,23]]],[25,1,1,23,24,[[837,1,1,23,24]]],[27,5,5,24,29,[[865,1,1,24,25],[866,1,1,25,26],[868,1,1,26,27],[870,1,1,27,28],[873,1,1,28,29]]],[32,3,3,29,32,[[894,1,1,29,30],[895,1,1,30,31],[899,1,1,31,32]]],[37,2,2,32,34,[[911,2,2,32,34]]]],[5631,7864,16965,17670,17715,17717,19031,19045,19122,19124,19244,19367,19395,19452,19454,19486,19506,19539,19575,19585,19750,19838,20032,21390,22142,22156,22180,22223,22254,22602,22612,22677,22882,22884]]],["endeavours",[1,1,[[18,1,1,0,1,[[505,1,1,0,1]]]],[14303]]],["inventions",[2,2,[[18,2,2,0,2,[[583,2,2,0,2]]]],[15680,15690]]],["works",[2,2,[[18,2,2,0,2,[[554,1,1,0,1],[555,1,1,1,2]]]],[15104,15120]]]]},{"k":"H4612","v":[["*",[5,5,[[10,1,1,0,1,[[300,1,1,0,1]]],[12,1,1,1,2,[[360,1,1,1,2]]],[13,2,2,2,4,[[375,1,1,2,3],[401,1,1,3,4]]],[22,1,1,4,5,[[700,1,1,4,5]]]],[9084,11011,11368,11981,18071]]],["+",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18071]]],["attendance",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9084,11368]]],["office",[1,1,[[12,1,1,0,1,[[360,1,1,0,1]]]],[11011]]],["place",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11981]]]]},{"k":"H4613","v":[["standing",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14937]]]]},{"k":"H4614","v":[["burdensome",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23048]]]]},{"k":"H4615","v":[["*",[5,5,[[18,3,3,0,3,[[546,2,2,0,2],[607,1,1,2,3]]],[22,1,1,3,4,[[729,1,1,3,4]]],[25,1,1,4,5,[[828,1,1,4,5]]]],[14937,14949,16141,18683,21155]]],["+",[2,2,[[18,2,2,0,2,[[546,1,1,0,1],[607,1,1,1,2]]]],[14949,16141]]],["deep",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14937]]],["depths",[2,2,[[22,1,1,0,1,[[729,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[18683,21155]]]]},{"k":"H4616","v":[["*",[272,252,[[0,7,6,0,6,[[11,1,1,0,1],[17,3,2,1,3],[26,1,1,3,4],[36,1,1,4,5],[49,1,1,5,6]]],[1,16,16,6,22,[[50,1,1,6,7],[53,1,1,7,8],[57,2,2,8,10],[58,2,2,10,12],[59,2,2,12,14],[60,2,2,14,16],[62,1,1,16,17],[65,2,2,17,19],[69,1,1,19,20],[72,1,1,20,21],[82,1,1,21,22]]],[2,3,3,22,25,[[106,1,1,22,23],[109,1,1,23,24],[112,1,1,24,25]]],[3,4,4,25,29,[[131,1,1,25,26],[132,1,1,26,27],[143,1,1,27,28],[152,1,1,28,29]]],[4,48,44,29,73,[[154,1,1,29,30],[155,1,1,30,31],[156,2,2,31,33],[157,5,4,33,37],[158,4,3,37,40],[160,6,5,40,45],[161,1,1,45,46],[163,3,3,46,49],[164,2,2,49,51],[165,1,1,51,52],[166,2,2,52,54],[168,2,2,54,56],[169,3,3,56,59],[172,1,1,59,60],[174,1,1,60,61],[175,1,1,61,62],[176,1,1,62,63],[177,1,1,63,64],[179,1,1,64,65],[181,4,4,65,69],[182,2,2,69,71],[183,3,2,71,73]]],[5,8,6,73,79,[[187,2,2,73,75],[189,1,1,75,76],[190,3,2,76,78],[197,2,1,78,79]]],[6,2,2,79,81,[[212,1,1,79,80],[213,1,1,80,81]]],[8,2,2,81,83,[[250,1,1,81,82],[252,1,1,82,83]]],[9,1,1,83,84,[[279,1,1,83,84]]],[10,16,14,84,98,[[292,2,2,84,86],[298,4,4,86,90],[301,8,6,90,96],[302,1,1,96,97],[305,1,1,97,98]]],[11,9,7,98,105,[[320,1,1,98,99],[322,1,1,99,100],[325,1,1,100,101],[331,2,1,101,102],[332,2,1,102,103],[334,1,1,103,104],[335,1,1,104,105]]],[12,1,1,105,106,[[365,1,1,105,106]]],[13,9,9,106,115,[[372,3,3,106,109],[376,1,1,109,110],[387,1,1,110,111],[391,1,1,111,112],[397,1,1,112,113],[398,1,1,113,114],[400,1,1,114,115]]],[14,1,1,115,116,[[411,1,1,115,116]]],[15,3,1,116,117,[[418,3,1,116,117]]],[17,3,3,117,120,[[453,1,1,117,118],[454,1,1,118,119],[475,1,1,119,120]]],[18,32,32,120,152,[[482,1,1,120,121],[483,1,1,121,122],[485,1,1,122,123],[486,1,1,123,124],[500,1,1,124,125],[502,2,2,125,127],[504,1,1,127,128],[507,1,1,128,129],[508,1,1,129,130],[521,1,1,130,131],[525,2,2,131,133],[528,1,1,133,134],[537,1,1,134,135],[545,1,1,135,136],[546,1,1,136,137],[555,1,1,137,138],[556,1,1,138,139],[574,1,1,139,140],[583,1,1,140,141],[585,1,1,141,142],[586,1,1,142,143],[596,4,4,143,147],[599,2,2,147,149],[602,1,1,149,150],[607,1,1,150,151],[620,1,1,151,152]]],[19,3,3,152,155,[[629,1,1,152,153],[642,1,1,153,154],[646,1,1,154,155]]],[22,28,24,155,179,[[683,1,1,155,156],[701,1,1,156,157],[706,1,1,157,158],[708,1,1,158,159],[715,2,1,159,160],[719,1,1,160,161],[720,1,1,161,162],[721,4,4,162,166],[722,1,1,166,167],[723,3,3,167,170],[726,3,2,170,172],[727,1,1,172,173],[733,1,1,173,174],[740,2,1,174,175],[741,1,1,175,176],[743,1,1,176,177],[744,3,2,177,179]]],[23,24,23,179,202,[[748,1,1,179,180],[751,4,4,180,184],[754,1,1,184,185],[755,1,1,185,186],[758,2,2,186,188],[769,1,1,188,189],[771,2,2,189,191],[776,3,3,191,194],[779,1,1,194,195],[780,1,1,195,196],[786,1,1,196,197],[787,1,1,197,198],[788,3,2,198,200],[794,1,1,200,201],[795,1,1,201,202]]],[25,37,35,202,237,[[805,1,1,202,203],[807,1,1,203,204],[812,1,1,204,205],[813,2,2,205,207],[815,2,2,207,209],[817,2,2,209,211],[820,1,1,211,212],[821,6,5,212,217],[822,4,3,217,220],[823,4,4,220,224],[824,1,1,224,225],[825,1,1,225,226],[826,1,1,226,227],[827,1,1,227,228],[832,1,1,228,229],[837,4,4,229,233],[839,1,1,233,234],[840,1,1,234,235],[841,1,1,235,236],[847,1,1,236,237]]],[26,2,2,237,239,[[858,2,2,237,239]]],[27,1,1,239,240,[[869,1,1,239,240]]],[28,1,1,240,241,[[878,1,1,240,241]]],[29,4,4,241,245,[[879,1,1,241,242],[880,1,1,242,243],[883,1,1,243,244],[887,1,1,244,245]]],[30,1,1,245,246,[[888,1,1,245,246]]],[32,2,2,246,248,[[898,2,2,246,248]]],[34,2,2,248,250,[[904,2,2,248,250]]],[37,2,2,250,252,[[922,1,1,250,251],[923,1,1,251,252]]]],[311,443,448,752,1105,1526,1543,1606,1720,1732,1758,1771,1778,1779,1813,1815,1876,1951,1979,2063,2156,2486,3240,3321,3445,4193,4234,4574,4887,4968,5001,5005,5044,5067,5069,5082,5086,5088,5104,5109,5138,5139,5140,5153,5155,5162,5216,5217,5229,5265,5268,5289,5313,5319,5345,5362,5380,5383,5384,5445,5477,5520,5544,5562,5588,5685,5688,5692,5698,5714,5727,5740,5747,5858,5859,5897,5916,5934,6127,6567,6570,7575,7646,8322,8773,8774,9025,9026,9028,9045,9120,9121,9140,9142,9144,9147,9166,9253,9746,9812,9894,10095,10104,10162,10189,11151,11313,11314,11315,11410,11631,11724,11858,11893,11958,12249,12414,13280,13326,13872,13981,13989,14014,14035,14238,14258,14262,14296,14331,14334,14597,14645,14647,14695,14812,14923,14953,15119,15194,15486,15659,15748,15776,15909,15969,15978,15999,16097,16098,16113,16144,16304,16453,16831,16945,17758,18093,18177,18218,18387,18471,18501,18515,18519,18530,18531,18542,18564,18565,18567,18623,18625,18643,18745,18855,18883,18905,18927,18933,19041,19129,19137,19138,19142,19219,19231,19300,19314,19541,19606,19611,19745,19760,19766,19830,19845,19981,20000,20018,20039,20200,20251,20546,20569,20675,20696,20699,20736,20742,20816,20825,20890,20904,20909,20917,20921,20939,20954,20959,20972,20982,20985,20988,21003,21028,21067,21093,21120,21244,21364,21381,21389,21391,21441,21460,21481,21673,22005,22007,22198,22349,22377,22386,22437,22507,22519,22653,22664,22750,22763,23052,23063]]],["+",[46,43,[[0,1,1,0,1,[[17,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[4,2,2,2,4,[[172,1,1,2,3],[179,1,1,3,4]]],[5,1,1,4,5,[[189,1,1,4,5]]],[8,1,1,5,6,[[250,1,1,5,6]]],[9,1,1,6,7,[[279,1,1,6,7]]],[10,8,6,7,13,[[298,1,1,7,8],[301,6,4,8,12],[305,1,1,12,13]]],[13,1,1,13,14,[[372,1,1,13,14]]],[18,11,11,14,25,[[483,1,1,14,15],[500,1,1,15,16],[502,2,2,16,18],[508,1,1,18,19],[521,1,1,19,20],[556,1,1,20,21],[583,1,1,21,22],[586,1,1,22,23],[602,1,1,23,24],[620,1,1,24,25]]],[22,8,7,25,32,[[720,1,1,25,26],[723,1,1,26,27],[726,1,1,27,28],[740,2,1,28,29],[741,1,1,29,30],[743,1,1,30,31],[744,1,1,31,32]]],[23,4,4,32,36,[[751,1,1,32,33],[758,2,2,33,35],[786,1,1,35,36]]],[25,6,6,36,42,[[821,4,4,36,40],[837,1,1,40,41],[847,1,1,41,42]]],[26,1,1,42,43,[[858,1,1,42,43]]]],[443,4234,5445,5588,5897,7575,8322,9026,9120,9121,9140,9142,9253,11314,13989,14238,14258,14262,14334,14597,15194,15659,15776,16113,16304,18501,18565,18623,18855,18883,18905,18927,19129,19300,19314,19981,20904,20909,20917,20939,21389,21673,22005]]],["For",[1,1,[[18,1,1,0,1,[[599,1,1,0,1]]]],[16097]]],["That",[30,30,[[1,1,1,0,1,[[53,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[3,1,1,2,3,[[131,1,1,2,3]]],[4,3,3,3,6,[[158,1,1,3,4],[163,1,1,4,5],[181,1,1,5,6]]],[5,2,2,6,8,[[190,2,2,6,8]]],[6,1,1,8,9,[[212,1,1,8,9]]],[10,3,3,9,12,[[292,1,1,9,10],[298,2,2,10,12]]],[13,1,1,12,13,[[372,1,1,12,13]]],[18,5,5,13,18,[[486,1,1,13,14],[537,1,1,14,15],[545,1,1,15,16],[555,1,1,16,17],[585,1,1,17,18]]],[19,1,1,18,19,[[629,1,1,18,19]]],[22,3,3,19,22,[[719,1,1,19,20],[723,1,1,20,21],[744,1,1,21,22]]],[23,1,1,22,23,[[755,1,1,22,23]]],[25,6,6,23,29,[[805,1,1,23,24],[812,1,1,24,25],[815,2,2,25,27],[817,2,2,27,29]]],[29,1,1,29,30,[[887,1,1,29,30]]]],[1606,3445,4193,5088,5229,5692,5916,5934,6567,8774,9025,9045,11313,14035,14812,14923,15119,15748,16453,18471,18567,18933,19231,20546,20675,20736,20742,20816,20825,22507]]],["Therefore",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12414]]],["because",[2,2,[[11,1,1,0,1,[[325,1,1,0,1]]],[22,1,1,1,2,[[733,1,1,1,2]]]],[9894,18745]]],["end",[4,4,[[1,1,1,0,1,[[57,1,1,0,1]]],[2,1,1,1,2,[[106,1,1,1,2]]],[25,2,2,2,4,[[821,1,1,2,3],[832,1,1,3,4]]]],[1732,3240,20921,21244]]],["for",[5,5,[[0,1,1,0,1,[[17,1,1,0,1]]],[10,1,1,1,2,[[301,1,1,1,2]]],[17,1,1,2,3,[[453,1,1,2,3]]],[23,1,1,3,4,[[787,1,1,3,4]]],[25,1,1,4,5,[[824,1,1,4,5]]]],[448,9147,13280,20000,21028]]],["intent",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9812]]],["of",[10,10,[[13,1,1,0,1,[[387,1,1,0,1]]],[18,7,7,1,8,[[482,1,1,1,2],[485,1,1,2,3],[504,1,1,3,4],[525,1,1,4,5],[546,1,1,5,6],[574,1,1,6,7],[599,1,1,7,8]]],[22,1,1,8,9,[[727,1,1,8,9]]],[25,1,1,9,10,[[822,1,1,9,10]]]],[11631,13981,14014,14296,14645,14953,15486,16098,18643,20972]]],["sake",[12,8,[[11,5,3,0,3,[[320,1,1,0,1],[331,2,1,1,2],[332,2,1,2,3]]],[22,6,4,3,7,[[715,2,1,3,4],[721,2,2,4,6],[726,2,1,6,7]]],[26,1,1,7,8,[[858,1,1,7,8]]]],[9746,10095,10104,18387,18519,18530,18625,22007]]],["sakes",[3,3,[[4,1,1,0,1,[[155,1,1,0,1]]],[25,2,2,1,3,[[837,2,2,1,3]]]],[5001,21381,21391]]],["that",[140,134,[[0,4,4,0,4,[[11,1,1,0,1],[17,1,1,1,2],[26,1,1,2,3],[36,1,1,3,4]]],[1,13,13,4,17,[[57,1,1,4,5],[58,2,2,5,7],[59,2,2,7,9],[60,2,2,9,11],[62,1,1,11,12],[65,2,2,12,14],[69,1,1,14,15],[72,1,1,15,16],[82,1,1,16,17]]],[3,2,2,17,19,[[143,1,1,17,18],[152,1,1,18,19]]],[4,40,37,19,56,[[154,1,1,19,20],[156,2,2,20,22],[157,5,4,22,26],[158,3,3,26,29],[160,5,4,29,33],[161,1,1,33,34],[163,2,2,34,36],[164,2,2,36,38],[165,1,1,38,39],[166,2,2,39,41],[168,2,2,41,43],[169,3,3,43,46],[174,1,1,46,47],[175,1,1,47,48],[176,1,1,48,49],[177,1,1,49,50],[181,2,2,50,52],[182,2,2,52,54],[183,3,2,54,56]]],[5,5,4,56,60,[[187,2,2,56,58],[190,1,1,58,59],[197,2,1,59,60]]],[6,1,1,60,61,[[213,1,1,60,61]]],[8,1,1,61,62,[[252,1,1,61,62]]],[10,4,4,62,66,[[292,1,1,62,63],[298,1,1,63,64],[301,1,1,64,65],[302,1,1,65,66]]],[11,2,2,66,68,[[334,1,1,66,67],[335,1,1,67,68]]],[12,1,1,68,69,[[365,1,1,68,69]]],[13,6,6,69,75,[[372,1,1,69,70],[376,1,1,70,71],[391,1,1,71,72],[397,1,1,72,73],[398,1,1,73,74],[400,1,1,74,75]]],[14,1,1,75,76,[[411,1,1,75,76]]],[15,2,1,76,77,[[418,2,1,76,77]]],[17,2,2,77,79,[[454,1,1,77,78],[475,1,1,78,79]]],[18,8,8,79,87,[[507,1,1,79,80],[525,1,1,80,81],[528,1,1,81,82],[596,4,4,82,86],[607,1,1,86,87]]],[19,2,2,87,89,[[642,1,1,87,88],[646,1,1,88,89]]],[22,9,9,89,98,[[683,1,1,89,90],[701,1,1,90,91],[706,1,1,91,92],[708,1,1,92,93],[721,2,2,93,95],[722,1,1,95,96],[723,1,1,96,97],[744,1,1,97,98]]],[23,14,13,98,111,[[748,1,1,98,99],[751,2,2,99,101],[754,1,1,101,102],[769,1,1,102,103],[771,1,1,103,104],[776,1,1,104,105],[779,1,1,105,106],[780,1,1,106,107],[788,3,2,107,109],[794,1,1,109,110],[795,1,1,110,111]]],[25,13,13,111,124,[[807,1,1,111,112],[813,2,2,112,114],[820,1,1,114,115],[821,1,1,115,116],[822,2,2,116,118],[825,1,1,118,119],[826,1,1,119,120],[827,1,1,120,121],[839,1,1,121,122],[840,1,1,122,123],[841,1,1,123,124]]],[27,1,1,124,125,[[869,1,1,124,125]]],[28,1,1,125,126,[[878,1,1,125,126]]],[29,2,2,126,128,[[879,1,1,126,127],[883,1,1,127,128]]],[30,1,1,128,129,[[888,1,1,128,129]]],[32,2,2,129,131,[[898,2,2,129,131]]],[34,2,2,131,133,[[904,2,2,131,133]]],[37,1,1,133,134,[[922,1,1,133,134]]]],[311,443,752,1105,1720,1758,1771,1778,1779,1813,1815,1876,1951,1979,2063,2156,2486,4574,4887,4968,5005,5044,5067,5069,5082,5086,5088,5104,5109,5138,5140,5153,5155,5162,5216,5217,5265,5268,5289,5313,5319,5345,5362,5380,5383,5384,5477,5520,5544,5562,5685,5688,5714,5727,5740,5747,5858,5859,5934,6127,6570,7646,8773,9028,9144,9166,10162,10189,11151,11315,11410,11724,11858,11893,11958,12249,12414,13326,13872,14331,14647,14695,15909,15969,15978,15999,16144,16831,16945,17758,18093,18177,18218,18515,18531,18542,18564,18933,19041,19137,19142,19219,19541,19611,19745,19830,19845,20018,20039,20200,20251,20569,20696,20699,20890,20921,20954,20959,21067,21093,21120,21441,21460,21481,22198,22349,22377,22437,22519,22653,22664,22750,22763,23052]]],["to",[17,17,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,1,1,1,2,[[50,1,1,1,2]]],[2,1,1,2,3,[[109,1,1,2,3]]],[4,2,2,3,5,[[160,1,1,3,4],[181,1,1,4,5]]],[23,4,4,5,9,[[751,1,1,5,6],[771,1,1,6,7],[776,2,2,7,9]]],[25,6,6,9,15,[[822,1,1,9,10],[823,4,4,10,14],[837,1,1,14,15]]],[29,1,1,15,16,[[880,1,1,15,16]]],[37,1,1,16,17,[[923,1,1,16,17]]]],[1526,1543,3321,5139,5698,19138,19606,19760,19766,20954,20982,20985,20988,21003,21364,22386,23063]]]]},{"k":"H4617","v":[["*",[8,8,[[17,2,2,0,2,[[467,2,2,0,2]]],[19,5,5,2,7,[[642,2,2,2,4],[643,2,2,4,6],[656,1,1,6,7]]],[32,1,1,7,8,[[895,1,1,7,8]]]],[13631,13633,16808,16830,16841,16844,17243,22615]]],["answer",[7,7,[[17,2,2,0,2,[[467,2,2,0,2]]],[19,4,4,2,6,[[642,2,2,2,4],[643,1,1,4,5],[656,1,1,5,6]]],[32,1,1,6,7,[[895,1,1,6,7]]]],[13631,13633,16808,16830,16841,17243,22615]]],["himself",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16844]]]]},{"k":"H4618","v":[["*",[2,2,[[8,1,1,0,1,[[249,1,1,0,1]]],[18,1,1,1,2,[[606,1,1,1,2]]]],[7522,16135]]],["acre",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7522]]],["furrows",[1,1,[[18,1,1,0,1,[[606,1,1,0,1]]]],[16135]]]]},{"k":"H4619","v":[["Maaz",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10333]]]]},{"k":"H4620","v":[["sorrow",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18673]]]]},{"k":"H4621","v":[["*",[2,2,[[22,1,1,0,1,[[722,1,1,0,1]]],[23,1,1,1,2,[[754,1,1,1,2]]]],[18545,19204]]],["axe",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19204]]],["tongs",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18545]]]]},{"k":"H4622","v":[["restraint",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7514]]]]},{"k":"H4623","v":[["over",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17141]]]]},{"k":"H4624","v":[["battlement",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5478]]]]},{"k":"H4625","v":[["things",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18496]]]]},{"k":"H4626","v":[["*",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[8970,22717]]],["nakedness",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22717]]],["proportion",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8970]]]]},{"k":"H4627","v":[["*",[9,8,[[25,9,8,0,8,[[828,9,8,0,8]]]],[21130,21134,21138,21140,21146,21148,21154,21155]]],["market",[4,4,[[25,4,4,0,4,[[828,4,4,0,4]]]],[21134,21138,21140,21146]]],["merchandise",[5,4,[[25,5,4,0,4,[[828,5,4,0,4]]]],[21130,21148,21154,21155]]]]},{"k":"H4628","v":[["*",[14,14,[[12,5,5,0,5,[[344,1,1,0,1],[349,1,1,1,2],[363,3,3,2,5]]],[13,2,2,5,7,[[398,1,1,5,6],[399,1,1,6,7]]],[18,3,3,7,10,[[552,1,1,7,8],[580,1,1,8,9],[584,1,1,9,10]]],[22,3,3,10,13,[[721,1,1,10,11],[723,1,1,11,12],[737,1,1,12,13]]],[26,1,1,13,14,[[857,1,1,13,14]]]],[10563,10735,11093,11095,11107,11905,11922,15077,15561,15702,18510,18567,18819,21966]]],["+",[6,6,[[18,3,3,0,3,[[552,1,1,0,1],[580,1,1,1,2],[584,1,1,2,3]]],[22,3,3,3,6,[[721,1,1,3,4],[723,1,1,4,5],[737,1,1,5,6]]]],[15077,15561,15702,18510,18567,18819]]],["side",[2,2,[[13,2,2,0,2,[[398,1,1,0,1],[399,1,1,1,2]]]],[11905,11922]]],["west",[2,2,[[12,1,1,0,1,[[349,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]]],[10735,21966]]],["westward",[4,4,[[12,4,4,0,4,[[344,1,1,0,1],[363,3,3,1,4]]]],[10563,11093,11095,11107]]]]},{"k":"H4629","v":[["+",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7087]]]]},{"k":"H4630","v":[["+",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7641]]]]},{"k":"H4631","v":[["*",[37,34,[[0,11,11,0,11,[[18,1,1,0,1],[22,5,5,1,6],[24,1,1,6,7],[48,3,3,7,10],[49,1,1,10,11]]],[5,8,6,11,17,[[196,8,6,11,17]]],[6,1,1,17,18,[[216,1,1,17,18]]],[8,7,6,18,24,[[248,1,1,18,19],[257,1,1,19,20],[259,5,4,20,24]]],[9,1,1,24,25,[[289,1,1,24,25]]],[10,4,4,25,29,[[308,2,2,25,27],[309,2,2,27,29]]],[12,1,1,29,30,[[348,1,1,29,30]]],[22,2,2,30,32,[[680,1,1,30,31],[710,1,1,31,32]]],[23,1,1,32,33,[[751,1,1,32,33]]],[25,1,1,33,34,[[834,1,1,33,34]]]],[487,580,582,588,590,591,667,1502,1503,1505,1519,6080,6081,6082,6086,6087,6091,6656,7491,7788,7842,7846,7847,7849,8666,9345,9354,9396,9400,10688,17704,18273,19130,21307]]],["+",[2,2,[[5,1,1,0,1,[[196,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]]],[6087,7846]]],["cave",[28,26,[[0,11,11,0,11,[[18,1,1,0,1],[22,5,5,1,6],[24,1,1,6,7],[48,3,3,7,10],[49,1,1,10,11]]],[5,6,5,11,16,[[196,6,5,11,16]]],[8,5,4,16,20,[[257,1,1,16,17],[259,4,3,17,20]]],[9,1,1,20,21,[[289,1,1,20,21]]],[10,4,4,21,25,[[308,2,2,21,23],[309,2,2,23,25]]],[12,1,1,25,26,[[348,1,1,25,26]]]],[487,580,582,588,590,591,667,1502,1503,1505,1519,6080,6081,6082,6086,6091,7788,7842,7847,7849,8666,9345,9354,9396,9400,10688]]],["cave's",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6091]]],["caves",[3,3,[[6,1,1,0,1,[[216,1,1,0,1]]],[8,1,1,1,2,[[248,1,1,1,2]]],[25,1,1,2,3,[[834,1,1,2,3]]]],[6656,7491,21307]]],["den",[1,1,[[23,1,1,0,1,[[751,1,1,0,1]]]],[19130]]],["dens",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18273]]],["holes",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17704]]]]},{"k":"H4632","v":[["Mearah",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6158]]]]},{"k":"H4633","v":[["preparations",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16841]]]]},{"k":"H4634","v":[["*",[19,17,[[1,1,1,0,1,[[88,1,1,0,1]]],[2,1,1,1,2,[[113,1,1,1,2]]],[6,1,1,2,3,[[216,1,1,2,3]]],[8,15,13,3,16,[[239,4,3,3,6],[252,10,9,6,15],[258,1,1,15,16]]],[12,1,1,16,17,[[349,1,1,16,17]]]],[2701,3452,6680,7299,7309,7313,7626,7628,7638,7639,7640,7644,7654,7663,7666,7813,10758]]],["+",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7309]]],["armies",[6,6,[[8,6,6,0,6,[[252,5,5,0,5],[258,1,1,5,6]]]],[7626,7628,7644,7654,7663,7813]]],["army",[7,5,[[8,7,5,0,5,[[239,3,2,0,2],[252,4,3,2,5]]]],[7299,7313,7639,7640,7666]]],["fight",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7638]]],["order",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2701]]],["place",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6680]]],["rank",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10758]]],["rows",[1,1,[[2,1,1,0,1,[[113,1,1,0,1]]]],[3452]]]]},{"k":"H4635","v":[["*",[9,9,[[2,2,2,0,2,[[113,2,2,0,2]]],[12,3,3,2,5,[[346,1,1,2,3],[360,1,1,3,4],[365,1,1,4,5]]],[13,3,3,5,8,[[368,1,1,5,6],[379,1,1,6,7],[395,1,1,7,8]]],[15,1,1,8,9,[[422,1,1,8,9]]]],[3452,3453,10647,11012,11159,11215,11464,11809,12582]]],["+",[4,4,[[12,2,2,0,2,[[346,1,1,0,1],[360,1,1,1,2]]],[13,1,1,2,3,[[379,1,1,2,3]]],[15,1,1,3,4,[[422,1,1,3,4]]]],[10647,11012,11464,12582]]],["row",[2,2,[[2,2,2,0,2,[[113,2,2,0,2]]]],[3452,3453]]],["shewbread",[3,3,[[12,1,1,0,1,[[365,1,1,0,1]]],[13,2,2,1,3,[[368,1,1,1,2],[395,1,1,2,3]]]],[11159,11215,11809]]]]},{"k":"H4636","v":[["naked",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11779]]]]},{"k":"H4637","v":[["terror",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17883]]]]},{"k":"H4638","v":[["Maarath",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6261]]]]},{"k":"H4639","v":[["*",[234,220,[[0,6,6,0,6,[[4,1,1,0,1],[19,1,1,1,2],[39,1,1,2,3],[43,1,1,3,4],[45,1,1,4,5],[46,1,1,5,6]]],[1,39,36,6,42,[[54,2,2,6,8],[72,4,3,8,11],[73,1,1,11,12],[75,3,3,12,15],[76,2,2,15,17],[77,9,8,17,25],[79,2,2,25,27],[81,1,1,27,28],[83,1,1,28,29],[85,3,3,29,32],[86,1,1,32,33],[87,2,2,33,35],[88,8,7,35,42]]],[2,2,1,42,43,[[107,2,1,42,43]]],[3,4,4,43,47,[[124,1,1,43,44],[132,1,1,44,45],[147,2,2,45,47]]],[4,13,13,47,60,[[154,1,1,47,48],[155,1,1,48,49],[156,1,1,49,50],[163,2,2,50,52],[166,1,1,52,53],[167,1,1,53,54],[168,1,1,54,55],[176,1,1,55,56],[179,1,1,56,57],[180,1,1,57,58],[182,1,1,58,59],[183,1,1,59,60]]],[5,1,1,60,61,[[210,1,1,60,61]]],[6,4,4,61,65,[[212,2,2,61,63],[223,1,1,63,64],[229,1,1,64,65]]],[8,4,4,65,69,[[243,1,1,65,66],[254,1,1,66,67],[255,1,1,67,68],[260,1,1,68,69]]],[10,13,11,69,80,[[297,11,9,69,78],[303,1,1,78,79],[306,1,1,79,80]]],[11,4,4,80,84,[[328,1,1,80,81],[331,1,1,81,82],[334,1,1,82,83],[335,1,1,83,84]]],[12,2,2,84,86,[[346,1,1,84,85],[360,1,1,85,86]]],[13,10,10,86,96,[[369,1,1,86,87],[370,2,2,87,89],[382,1,1,89,90],[383,1,1,90,91],[386,1,1,91,92],[397,1,1,92,93],[398,2,2,93,95],[400,1,1,95,96]]],[14,1,1,96,97,[[411,1,1,96,97]]],[15,1,1,97,98,[[418,1,1,97,98]]],[16,1,1,98,99,[[435,1,1,98,99]]],[17,5,5,99,104,[[436,1,1,99,100],[449,1,1,100,101],[468,1,1,101,102],[469,1,1,102,103],[472,1,1,103,104]]],[18,39,38,104,142,[[485,2,2,104,106],[496,1,1,106,107],[505,2,2,107,109],[510,2,2,109,111],[522,1,1,111,112],[539,1,1,112,113],[541,1,1,113,114],[543,1,1,114,115],[563,1,1,115,116],[567,2,1,116,117],[569,2,2,117,119],[579,1,1,119,120],[580,1,1,120,121],[581,3,3,121,124],[583,3,3,124,127],[584,2,2,127,129],[588,3,3,129,132],[592,1,1,132,133],[595,1,1,133,134],[612,1,1,134,135],[615,1,1,135,136],[616,1,1,136,137],[620,1,1,137,138],[622,4,4,138,142]]],[19,3,3,142,145,[[643,2,2,142,144],[658,1,1,144,145]]],[20,21,19,145,164,[[659,1,1,145,146],[660,3,3,146,149],[661,3,3,149,152],[662,2,2,152,154],[663,1,1,154,155],[665,1,1,155,156],[666,6,4,156,160],[667,2,2,160,162],[669,1,1,162,163],[670,1,1,163,164]]],[21,1,1,164,165,[[677,1,1,164,165]]],[22,27,24,165,189,[[680,1,1,165,166],[681,1,1,166,167],[683,2,2,167,169],[688,1,1,169,170],[695,1,1,170,171],[697,3,3,171,174],[704,1,1,174,175],[706,2,1,175,176],[707,3,3,176,179],[710,1,1,179,180],[715,1,1,180,181],[719,1,1,181,182],[732,1,1,182,183],[735,1,1,183,184],[737,3,1,184,185],[738,1,1,185,186],[742,1,1,186,187],[743,1,1,187,188],[744,1,1,188,189]]],[23,14,13,189,202,[[745,1,1,189,190],[751,1,1,190,191],[754,4,3,191,194],[769,3,3,194,197],[776,1,1,197,198],[788,1,1,198,199],[792,1,1,199,200],[795,2,2,200,202]]],[24,2,2,202,204,[[799,1,1,202,203],[800,1,1,203,204]]],[25,7,6,204,210,[[802,2,1,204,205],[807,1,1,205,206],[817,1,1,206,207],[828,2,2,207,209],[847,1,1,209,210]]],[26,1,1,210,211,[[858,1,1,210,211]]],[27,2,2,211,213,[[874,1,1,211,212],[875,1,1,212,213]]],[29,1,1,213,214,[[886,1,1,213,214]]],[31,1,1,214,215,[[891,1,1,214,215]]],[32,2,2,215,217,[[897,1,1,215,216],[898,1,1,216,217]]],[34,1,1,217,218,[[905,1,1,217,218]]],[36,2,2,218,220,[[910,2,2,218,220]]]],[134,504,1189,1339,1419,1423,1636,1645,2156,2160,2168,2187,2236,2266,2271,2276,2288,2299,2301,2304,2307,2308,2315,2325,2332,2407,2417,2454,2506,2574,2601,2603,2633,2637,2651,2667,2669,2672,2679,2686,2691,2693,3254,3943,4222,4684,4715,4945,4999,5032,5211,5215,5319,5329,5357,5544,5600,5623,5717,5757,6507,6552,6555,6896,7040,7377,7710,7749,7863,8942,8951,8953,8956,8960,8962,8963,8965,8967,9195,9290,9973,10079,10162,10184,10646,11011,11239,11251,11252,11523,11527,11624,11875,11894,11905,11958,12250,12415,12868,12879,13196,13667,13702,13776,14015,14018,14169,14303,14304,14370,14381,14598,14839,14859,14876,15292,15395,15415,15416,15546,15571,15584,15595,15602,15664,15686,15690,15721,15723,15795,15799,15800,15834,15886,16190,16239,16253,16298,16324,16329,16330,16337,16843,16851,17315,17329,17337,17344,17350,17370,17376,17381,17384,17385,17403,17442,17467,17469,17472,17475,17482,17485,17518,17537,17628,17693,17731,17751,17758,17862,17991,18018,18019,18029,18142,18185,18208,18209,18216,18276,18371,18480,18739,18777,18806,18842,18893,18919,18940,18962,19132,19204,19210,19216,19540,19541,19548,19761,20018,20087,20222,20230,20418,20422,20480,20569,20792,21137,21139,21656,22002,22268,22285,22488,22568,22646,22664,22785,22869,22872]]],["+",[13,13,[[0,2,2,0,2,[[4,1,1,0,1],[39,1,1,1,2]]],[1,9,9,2,11,[[54,1,1,2,3],[75,1,1,3,4],[76,2,2,4,6],[77,1,1,6,7],[85,1,1,7,8],[87,2,2,8,10],[88,1,1,10,11]]],[13,1,1,11,12,[[382,1,1,11,12]]],[18,1,1,12,13,[[496,1,1,12,13]]]],[134,1189,1636,2271,2276,2288,2332,2603,2637,2651,2693,11523,14169]]],["acts",[4,4,[[4,2,2,0,2,[[163,2,2,0,2]]],[11,1,1,2,3,[[335,1,1,2,3]]],[16,1,1,3,4,[[435,1,1,3,4]]]],[5211,5215,10184,12868]]],["art",[2,2,[[1,2,2,0,2,[[79,2,2,0,2]]]],[2407,2417]]],["business",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7749]]],["deed",[1,1,[[0,1,1,0,1,[[43,1,1,0,1]]]],[1339]]],["deeds",[2,2,[[0,1,1,0,1,[[19,1,1,0,1]]],[14,1,1,1,2,[[411,1,1,1,2]]]],[504,12250]]],["do",[1,1,[[6,1,1,0,1,[[223,1,1,0,1]]]],[6896]]],["doing",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14859]]],["doings",[3,2,[[2,2,1,0,1,[[107,2,1,0,1]]],[13,1,1,1,2,[[383,1,1,1,2]]]],[3254,11527]]],["labour",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22785]]],["labours",[3,2,[[1,2,1,0,1,[[72,2,1,0,1]]],[36,1,1,1,2,[[910,1,1,1,2]]]],[2160,22872]]],["made",[2,2,[[12,1,1,0,1,[[346,1,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]]],[10646,14598]]],["making",[2,2,[[25,2,2,0,2,[[828,2,2,0,2]]]],[21137,21139]]],["occupation",[2,2,[[0,2,2,0,2,[[45,1,1,0,1],[46,1,1,1,2]]]],[1419,1423]]],["offered",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11252]]],["operation",[2,2,[[18,1,1,0,1,[[505,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]]],[14304,17751]]],["possessions",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7863]]],["purpose",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13667]]],["set",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17731]]],["work",[114,104,[[1,24,22,0,22,[[72,1,1,0,1],[73,1,1,1,2],[75,2,2,2,4],[77,8,7,4,11],[81,1,1,11,12],[83,1,1,12,13],[85,2,2,13,15],[86,1,1,15,16],[88,7,6,16,22]]],[3,2,2,22,24,[[124,1,1,22,23],[147,1,1,23,24]]],[4,7,7,24,31,[[156,1,1,24,25],[166,1,1,25,26],[176,1,1,26,27],[179,1,1,27,28],[180,1,1,28,29],[182,1,1,29,30],[183,1,1,30,31]]],[6,1,1,31,32,[[229,1,1,31,32]]],[10,11,9,32,41,[[297,10,8,32,40],[306,1,1,40,41]]],[11,1,1,41,42,[[331,1,1,41,42]]],[12,1,1,42,43,[[360,1,1,42,43]]],[13,4,4,43,47,[[369,1,1,43,44],[370,1,1,44,45],[397,1,1,45,46],[398,1,1,46,47]]],[17,4,4,47,51,[[436,1,1,47,48],[449,1,1,48,49],[469,1,1,49,50],[472,1,1,50,51]]],[18,9,8,51,59,[[485,1,1,51,52],[505,1,1,52,53],[539,1,1,53,54],[567,2,1,54,55],[579,1,1,55,56],[592,1,1,56,57],[612,1,1,57,58],[620,1,1,58,59]]],[19,1,1,59,60,[[643,1,1,59,60]]],[20,15,13,60,73,[[660,1,1,60,61],[661,2,2,61,63],[662,2,2,63,65],[663,1,1,65,66],[665,1,1,66,67],[666,6,4,67,71],[667,1,1,71,72],[670,1,1,72,73]]],[21,1,1,73,74,[[677,1,1,73,74]]],[22,17,16,74,90,[[680,1,1,74,75],[683,1,1,75,76],[688,1,1,76,77],[695,1,1,77,78],[697,3,3,78,81],[706,2,1,81,82],[707,2,2,82,84],[710,1,1,84,85],[715,1,1,85,86],[732,1,1,86,87],[738,1,1,87,88],[742,1,1,88,89],[743,1,1,89,90]]],[23,7,6,90,96,[[754,4,3,90,93],[776,1,1,93,94],[795,2,2,94,96]]],[24,2,2,96,98,[[799,1,1,96,97],[800,1,1,97,98]]],[25,3,2,98,100,[[802,2,1,98,99],[817,1,1,99,100]]],[27,2,2,100,102,[[874,1,1,100,101],[875,1,1,101,102]]],[32,1,1,102,103,[[897,1,1,102,103]]],[36,1,1,103,104,[[910,1,1,103,104]]]],[2156,2187,2236,2266,2299,2301,2304,2307,2308,2315,2325,2454,2506,2574,2601,2633,2667,2669,2672,2679,2686,2691,3943,4684,5032,5319,5544,5600,5623,5717,5757,7040,8942,8951,8953,8956,8962,8963,8965,8967,9290,10079,11011,11239,11251,11875,11894,12879,13196,13702,13776,14015,14303,14839,15395,15546,15834,16190,16298,16851,17350,17370,17376,17384,17385,17403,17442,17467,17469,17472,17475,17485,17537,17628,17693,17758,17862,17991,18018,18019,18029,18185,18209,18216,18276,18371,18739,18842,18893,18919,19204,19210,19216,19761,20222,20230,20418,20422,20480,20792,22268,22285,22646,22869]]],["working",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21656]]],["workmanship",[1,1,[[11,1,1,0,1,[[328,1,1,0,1]]]],[9973]]],["works",[72,70,[[1,2,2,0,2,[[54,1,1,0,1],[72,1,1,1,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[4,4,4,3,7,[[154,1,1,3,4],[155,1,1,4,5],[167,1,1,5,6],[168,1,1,6,7]]],[5,1,1,7,8,[[210,1,1,7,8]]],[6,2,2,8,10,[[212,2,2,8,10]]],[8,2,2,10,12,[[243,1,1,10,11],[254,1,1,11,12]]],[10,1,1,12,13,[[303,1,1,12,13]]],[11,1,1,13,14,[[334,1,1,13,14]]],[13,3,3,14,17,[[386,1,1,14,15],[398,1,1,15,16],[400,1,1,16,17]]],[15,1,1,17,18,[[418,1,1,17,18]]],[18,26,26,18,44,[[485,1,1,18,19],[510,2,2,19,21],[543,1,1,21,22],[563,1,1,22,23],[569,2,2,23,25],[580,1,1,25,26],[581,3,3,26,29],[583,3,3,29,32],[584,2,2,32,34],[588,3,3,34,37],[595,1,1,37,38],[615,1,1,38,39],[616,1,1,39,40],[622,4,4,40,44]]],[19,2,2,44,46,[[643,1,1,44,45],[658,1,1,45,46]]],[20,6,6,46,52,[[659,1,1,46,47],[660,2,2,47,49],[661,1,1,49,50],[667,1,1,50,51],[669,1,1,51,52]]],[22,8,6,52,58,[[704,1,1,52,53],[707,1,1,53,54],[719,1,1,54,55],[735,1,1,55,56],[737,3,1,56,57],[744,1,1,57,58]]],[23,7,7,58,65,[[745,1,1,58,59],[751,1,1,59,60],[769,3,3,60,63],[788,1,1,63,64],[792,1,1,64,65]]],[25,1,1,65,66,[[807,1,1,65,66]]],[26,1,1,66,67,[[858,1,1,66,67]]],[29,1,1,67,68,[[886,1,1,67,68]]],[31,1,1,68,69,[[891,1,1,68,69]]],[32,1,1,69,70,[[898,1,1,69,70]]]],[1645,2168,4222,4945,4999,5329,5357,6507,6552,6555,7377,7710,9195,10162,11624,11905,11958,12415,14018,14370,14381,14876,15292,15415,15416,15571,15584,15595,15602,15664,15686,15690,15721,15723,15795,15799,15800,15886,16239,16253,16324,16329,16330,16337,16843,17315,17329,17337,17344,17381,17482,17518,18142,18208,18480,18777,18806,18940,18962,19132,19540,19541,19548,20018,20087,20569,22002,22488,22568,22664]]],["wrought",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[10,1,1,1,2,[[297,1,1,1,2]]]],[4715,8960]]]]},{"k":"H4640","v":[["*",[2,2,[[1,1,1,0,1,[[67,1,1,0,1]]],[12,1,1,1,2,[[346,1,1,1,2]]]],[2019,10627]]],["Maasiai",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10627]]],["work",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2019]]]]},{"k":"H4641","v":[["Maaseiah",[23,23,[[12,2,2,0,2,[[352,2,2,0,2]]],[13,4,4,2,6,[[389,1,1,2,3],[392,1,1,3,4],[394,1,1,4,5],[400,1,1,5,6]]],[14,4,4,6,10,[[412,4,4,6,10]]],[15,8,8,10,18,[[415,1,1,10,11],[420,2,2,11,13],[422,1,1,13,14],[423,2,2,14,16],[424,2,2,16,18]]],[23,5,5,18,23,[[765,1,1,18,19],[773,2,2,19,21],[779,1,1,21,22],[781,1,1,22,23]]]],[10809,10811,11657,11743,11771,11941,12270,12273,12274,12282,12350,12497,12500,12574,12593,12595,12665,12666,19441,19656,19660,19827,19877]]]]},{"k":"H4642","v":[["*",[2,2,[[19,1,1,0,1,[[655,1,1,0,1]]],[22,1,1,1,2,[[711,1,1,1,2]]]],[17212,18294]]],["oppressions",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18294]]],["oppressor",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17212]]]]},{"k":"H4643","v":[["*",[32,27,[[0,1,1,0,1,[[13,1,1,0,1]]],[2,3,3,1,4,[[116,3,3,1,4]]],[3,6,4,4,8,[[134,6,4,4,8]]],[4,7,6,8,14,[[164,3,3,8,11],[166,2,2,11,13],[178,2,1,13,14]]],[13,4,3,14,17,[[397,4,3,14,17]]],[15,6,5,17,22,[[422,3,2,17,19],[424,1,1,19,20],[425,2,2,20,22]]],[25,2,2,22,24,[[846,2,2,22,24]]],[29,1,1,24,25,[[882,1,1,24,25]]],[38,2,2,25,27,[[927,2,2,25,27]]]],[356,3600,3601,3602,4278,4281,4283,4285,5246,5251,5257,5313,5318,5578,11859,11860,11866,12586,12587,12668,12676,12683,21641,21644,22414,23128,23130]]],["+",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3601]]],["part",[2,2,[[25,2,2,0,2,[[846,2,2,0,2]]]],[21641,21644]]],["tenth",[2,2,[[3,2,2,0,2,[[134,2,2,0,2]]]],[4278,4283]]],["tithe",[11,10,[[2,2,2,0,2,[[116,2,2,0,2]]],[3,1,1,2,3,[[134,1,1,2,3]]],[4,3,3,3,6,[[164,1,1,3,4],[166,2,2,4,6]]],[13,3,2,6,8,[[397,3,2,6,8]]],[15,2,2,8,10,[[422,1,1,8,9],[425,1,1,9,10]]]],[3600,3602,4283,5257,5313,5318,11859,11860,12587,12683]]],["tithes",[15,15,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,3,3,1,4,[[134,3,3,1,4]]],[4,3,3,4,7,[[164,2,2,4,6],[178,1,1,6,7]]],[13,1,1,7,8,[[397,1,1,7,8]]],[15,4,4,8,12,[[422,2,2,8,10],[424,1,1,10,11],[425,1,1,11,12]]],[29,1,1,12,13,[[882,1,1,12,13]]],[38,2,2,13,15,[[927,2,2,13,15]]]],[356,4281,4283,4285,5246,5251,5578,11866,12586,12587,12668,12676,22414,23128,23130]]],["tithing",[1,1,[[4,1,1,0,1,[[178,1,1,0,1]]]],[5578]]]]},{"k":"H4644","v":[["Memphis",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22214]]]]},{"k":"H4645","v":[["mark",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13028]]]]},{"k":"H4646","v":[["up",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13128]]]]},{"k":"H4647","v":[["bellows",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19118]]]]},{"k":"H4648","v":[["Mephibosheth",[15,13,[[9,15,13,0,13,[[270,1,1,0,1],[275,7,5,1,6],[282,2,2,6,8],[285,3,3,8,11],[287,2,2,11,13]]]],[8124,8233,8237,8238,8239,8240,8427,8430,8535,8536,8541,8587,8588]]]]},{"k":"H4649","v":[["Muppim",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1407]]]]},{"k":"H4650","v":[["maul",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17131]]]]},{"k":"H4651","v":[["*",[2,2,[[17,1,1,0,1,[[476,1,1,0,1]]],[29,1,1,1,2,[[886,1,1,1,2]]]],[13911,22487]]],["flakes",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13911]]],["refuse",[1,1,[[29,1,1,0,1,[[886,1,1,0,1]]]],[22487]]]]},{"k":"H4652","v":[["works",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13785]]]]},{"k":"H4653","v":[["divisions",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11978]]]]},{"k":"H4654","v":[["*",[3,3,[[22,3,3,0,3,[[695,1,1,0,1],[701,1,1,1,2],[703,1,1,2,3]]]],[17984,18090,18120]]],["ruin",[2,2,[[22,2,2,0,2,[[701,1,1,0,1],[703,1,1,1,2]]]],[18090,18120]]],["ruinous",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17984]]]]},{"k":"H4655","v":[["escape",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14740]]]]},{"k":"H4656","v":[["idol",[4,2,[[10,2,1,0,1,[[305,2,1,0,1]]],[13,2,1,1,2,[[381,2,1,1,2]]]],[9262,11506]]]]},{"k":"H4657","v":[["balancings",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13785]]]]},{"k":"H4658","v":[["*",[8,8,[[6,1,1,0,1,[[224,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]],[25,6,6,2,8,[[827,2,2,2,4],[828,1,1,4,5],[832,2,2,5,7],[833,1,1,7,8]]]],[6917,17240,21115,21118,21148,21243,21246,21258]]],["carcase",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6917]]],["fall",[5,5,[[19,1,1,0,1,[[656,1,1,0,1]]],[25,4,4,1,5,[[827,2,2,1,3],[832,1,1,3,4],[833,1,1,4,5]]]],[17240,21115,21118,21246,21258]]],["ruin",[2,2,[[25,2,2,0,2,[[828,1,1,0,1],[832,1,1,1,2]]]],[21148,21243]]]]},{"k":"H4659","v":[["works",[3,3,[[18,2,2,0,2,[[523,1,1,0,1],[543,1,1,1,2]]],[19,1,1,2,3,[[635,1,1,2,3]]]],[14622,14878,16624]]]]},{"k":"H4660","v":[["slaughter",[1,1,[[25,1,1,0,1,[[810,1,1,0,1]]]],[20624]]]]},{"k":"H4661","v":[["axe",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20232]]]]},{"k":"H4662","v":[["*",[4,4,[[9,1,1,0,1,[[290,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]],[13,1,1,2,3,[[397,1,1,2,3]]],[25,1,1,3,4,[[844,1,1,3,4]]]],[8701,10939,11867,21593]]],["commandment",[1,1,[[13,1,1,0,1,[[397,1,1,0,1]]]],[11867]]],["number",[2,2,[[9,1,1,0,1,[[290,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]]],[8701,10939]]],["place",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21593]]]]},{"k":"H4663","v":[["Miphkad",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12358]]]]},{"k":"H4664","v":[["breaches",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6640]]]]},{"k":"H4665","v":[["neck",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7315]]]]},{"k":"H4666","v":[["*",[2,2,[[17,1,1,0,1,[[471,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[13765,21128]]],["forth",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21128]]],["spreadings",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13765]]]]},{"k":"H4667","v":[["buttocks",[1,1,[[12,1,1,0,1,[[356,1,1,0,1]]]],[10911]]]]},{"k":"H4668","v":[["*",[3,3,[[6,1,1,0,1,[[213,1,1,0,1]]],[12,1,1,1,2,[[346,1,1,1,2]]],[22,1,1,2,3,[[700,1,1,2,3]]]],[6593,10642,18074]]],["key",[2,2,[[6,1,1,0,1,[[213,1,1,0,1]]],[22,1,1,1,2,[[700,1,1,1,2]]]],[6593,18074]]],["opening",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10642]]]]},{"k":"H4669","v":[["opening",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16608]]]]},{"k":"H4670","v":[["threshold",[8,8,[[8,2,2,0,2,[[240,2,2,0,2]]],[25,5,5,2,7,[[810,1,1,2,3],[811,2,2,3,5],[847,1,1,5,6],[848,1,1,6,7]]],[35,1,1,7,8,[[906,1,1,7,8]]]],[7323,7324,20625,20637,20651,21657,21680,22796]]]]},{"k":"H4671","v":[["chaff",[8,8,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,2,2,1,3,[[478,1,1,1,2],[512,1,1,2,3]]],[22,3,3,3,6,[[695,1,1,3,4],[707,1,1,4,5],[719,1,1,5,6]]],[27,1,1,6,7,[[874,1,1,6,7]]],[35,1,1,7,8,[[907,1,1,7,8]]]],[13373,13943,14415,17996,18198,18466,22269,22807]]]]},{"k":"H4672","v":[["*",[455,425,[[0,56,54,0,54,[[1,1,1,0,1],[3,2,2,1,3],[5,1,1,3,4],[7,1,1,4,5],[10,1,1,5,6],[15,1,1,6,7],[17,8,7,7,14],[18,3,3,14,17],[25,3,3,17,20],[26,1,1,20,21],[29,2,2,21,23],[30,5,5,23,28],[31,2,2,28,30],[32,3,3,30,33],[33,1,1,33,34],[35,1,1,34,35],[36,3,3,35,38],[37,3,3,38,41],[38,1,1,41,42],[40,1,1,42,43],[43,8,7,43,50],[46,3,3,50,53],[49,1,1,53,54]]],[1,22,20,54,74,[[54,1,1,54,55],[58,1,1,55,56],[61,1,1,56,57],[64,1,1,57,58],[65,2,2,58,60],[67,1,1,60,61],[70,1,1,61,62],[71,6,5,62,67],[82,5,4,67,71],[83,1,1,71,72],[84,2,2,72,74]]],[2,8,8,74,82,[[95,2,2,74,76],[98,3,3,76,79],[101,1,1,79,80],[114,2,2,80,82]]],[3,11,10,82,92,[[127,4,3,82,85],[131,2,2,85,87],[136,1,1,87,88],[147,1,1,88,89],[148,2,2,89,91],[151,1,1,91,92]]],[4,25,22,92,114,[[156,2,2,92,94],[169,1,1,94,95],[170,1,1,95,96],[171,1,1,96,97],[172,1,1,97,98],[173,2,2,98,100],[174,10,9,100,109],[176,3,2,109,111],[183,3,2,111,113],[184,1,1,113,114]]],[5,4,4,114,118,[[188,2,2,114,116],[196,1,1,116,117],[203,1,1,117,118]]],[6,14,13,118,131,[[211,1,1,118,119],[215,1,1,119,120],[216,2,2,120,122],[219,1,1,122,123],[224,2,2,123,125],[225,1,1,125,126],[227,2,2,126,128],[230,2,1,128,129],[231,2,2,129,131]]],[7,4,4,131,135,[[232,1,1,131,132],[233,3,3,132,135]]],[8,39,34,135,169,[[236,1,1,135,136],[244,7,5,136,141],[245,6,5,141,146],[247,1,1,146,147],[248,5,4,147,151],[249,1,1,151,152],[251,1,1,152,153],[255,4,4,153,157],[256,1,1,157,158],[258,1,1,158,159],[259,1,1,159,160],[260,3,2,160,162],[262,1,1,162,163],[264,3,3,163,166],[265,1,1,166,167],[266,2,2,167,169]]],[9,10,10,169,179,[[269,1,1,169,170],[273,1,1,170,171],[280,1,1,171,172],[281,1,1,172,173],[282,1,1,173,174],[283,3,3,174,177],[284,1,1,177,178],[286,1,1,178,179]]],[10,16,15,179,194,[[291,2,2,179,181],[301,2,2,181,183],[303,3,3,183,186],[304,1,1,186,187],[308,3,3,187,190],[309,1,1,190,191],[310,2,2,191,193],[311,2,1,193,194]]],[11,25,24,194,218,[[314,1,1,194,195],[316,2,2,195,197],[319,1,1,197,198],[321,2,2,198,200],[322,2,2,200,202],[324,3,3,202,205],[326,1,1,205,206],[328,1,1,206,207],[329,1,1,207,208],[330,1,1,208,209],[331,2,2,209,211],[332,1,1,211,212],[334,3,3,212,215],[335,2,2,215,217],[337,2,1,217,218]]],[12,11,11,218,229,[[341,2,2,218,220],[347,2,2,220,222],[354,1,1,222,223],[357,1,1,223,224],[361,1,1,224,225],[363,1,1,225,226],[365,1,1,226,227],[366,2,2,227,229]]],[13,28,28,229,257,[[368,1,1,229,230],[371,1,1,230,231],[381,3,3,231,234],[385,1,1,234,235],[386,2,2,235,237],[387,1,1,237,238],[388,1,1,238,239],[391,2,2,239,241],[395,2,2,241,243],[396,1,1,243,244],[397,1,1,244,245],[398,1,1,245,246],[400,7,7,246,253],[401,3,3,253,256],[402,1,1,256,257]]],[14,4,4,257,261,[[404,1,1,257,258],[410,2,2,258,260],[412,1,1,260,261]]],[15,8,7,261,268,[[417,1,1,261,262],[419,3,2,262,264],[420,1,1,264,265],[421,2,2,265,267],[425,1,1,267,268]]],[16,8,8,268,276,[[426,1,1,268,269],[427,1,1,269,270],[429,1,1,270,271],[430,1,1,271,272],[431,1,1,272,273],[432,1,1,273,274],[433,2,2,274,276]]],[17,19,18,276,294,[[438,1,1,276,277],[446,2,1,277,278],[452,1,1,278,279],[454,1,1,279,280],[455,1,1,280,281],[458,1,1,281,282],[463,2,2,282,284],[466,2,2,284,286],[467,2,2,286,288],[468,2,2,288,290],[469,1,1,290,291],[472,2,2,291,293],[477,1,1,293,294]]],[18,19,17,294,311,[[487,1,1,294,295],[494,1,1,295,296],[498,2,1,296,297],[509,1,1,297,298],[513,1,1,298,299],[514,1,1,299,300],[523,1,1,300,301],[546,1,1,301,302],[553,1,1,302,303],[561,1,1,303,304],[566,1,1,304,305],[584,1,1,305,306],[593,2,1,306,307],[596,2,2,307,309],[609,2,2,309,311]]],[19,27,25,311,336,[[628,2,2,311,313],[629,1,1,313,314],[630,2,2,314,316],[631,1,1,316,317],[633,2,2,317,319],[634,1,1,319,320],[635,5,4,320,324],[637,1,1,324,325],[643,2,2,325,327],[644,1,1,327,328],[645,2,1,328,329],[646,1,1,329,330],[647,1,1,330,331],[648,1,1,331,332],[651,1,1,332,333],[652,1,1,333,334],[655,1,1,334,335],[658,1,1,335,336]]],[20,17,12,336,348,[[661,1,1,336,337],[665,9,6,337,343],[666,3,1,343,344],[667,2,2,344,346],[669,1,1,346,347],[670,1,1,347,348]]],[21,9,9,348,357,[[673,4,4,348,352],[675,3,3,352,355],[678,2,2,355,357]]],[22,18,18,357,375,[[688,2,2,357,359],[691,1,1,359,360],[700,1,1,360,361],[708,1,1,361,362],[712,1,1,362,363],[713,1,1,363,364],[715,2,2,364,366],[717,1,1,366,367],[719,1,1,367,368],[729,1,1,368,369],[733,1,1,369,370],[735,1,1,370,371],[736,2,2,371,373],[743,2,2,373,375]]],[23,26,24,375,399,[[746,5,4,375,379],[749,2,2,379,381],[750,1,1,381,382],[754,1,1,382,383],[755,1,1,383,384],[758,1,1,384,385],[759,1,1,385,386],[767,1,1,386,387],[773,2,2,387,389],[775,1,1,389,390],[785,3,3,390,393],[789,1,1,393,394],[792,1,1,394,395],[794,3,3,395,398],[796,2,1,398,399]]],[24,4,4,399,403,[[797,2,2,399,401],[798,2,2,401,403]]],[25,4,4,403,407,[[804,1,1,403,404],[823,1,1,404,405],[827,1,1,405,406],[829,1,1,406,407]]],[26,4,4,407,411,[[850,2,2,407,409],[860,1,1,409,410],[861,1,1,410,411]]],[27,8,7,411,418,[[863,2,2,411,413],[866,1,1,413,414],[870,1,1,414,415],[873,3,2,415,417],[875,1,1,417,418]]],[29,1,1,418,419,[[886,1,1,418,419]]],[31,1,1,419,420,[[889,1,1,419,420]]],[32,1,1,420,421,[[893,1,1,420,421]]],[35,1,1,421,422,[[908,1,1,421,422]]],[37,2,2,422,424,[[920,1,1,422,423],[921,1,1,423,424]]],[38,1,1,424,425,[[926,1,1,424,425]]]],[50,93,94,145,192,268,388,427,450,452,453,454,455,456,468,472,476,704,711,724,747,844,857,905,906,907,908,910,933,947,968,970,975,991,1064,1098,1100,1115,1139,1141,1142,1153,1233,1332,1333,1334,1336,1340,1341,1358,1434,1445,1449,1510,1643,1761,1835,1942,1972,1974,2007,2093,2115,2117,2119,2120,2121,2485,2486,2489,2490,2505,2554,2555,2852,2853,2965,2966,2971,3052,3495,3497,4035,4039,4046,4185,4186,4325,4714,4723,4741,4872,5033,5034,5366,5394,5411,5438,5448,5464,5473,5484,5487,5490,5492,5493,5495,5497,5498,5526,5532,5745,5749,5768,5891,5892,6081,6291,6514,6653,6667,6671,6787,6921,6927,6944,6988,6989,7102,7114,7116,7136,7151,7159,7162,7230,7395,7399,7402,7404,7411,7420,7421,7425,7434,7439,7465,7500,7501,7504,7507,7538,7617,7733,7751,7759,7766,7775,7827,7858,7869,7889,7935,7970,7973,7975,7989,8012,8017,8089,8207,8378,8414,8430,8461,8462,8469,8500,8560,8720,8769,9127,9137,9198,9208,9212,9231,9346,9351,9353,9406,9444,9445,9471,9568,9632,9642,9716,9777,9791,9806,9808,9855,9860,9868,9910,9971,9987,10039,10065,10069,10111,10153,10154,10158,10167,10189,10241,10425,10426,10662,10667,10888,10928,11019,11108,11152,11172,11181,11228,11279,11492,11494,11505,11579,11603,11612,11641,11652,11709,11728,11807,11820,11848,11855,11879,11947,11948,11950,11954,11963,11965,11966,11973,11983,11984,12001,12089,12216,12226,12270,12390,12425,12484,12507,12519,12543,12672,12707,12747,12778,12787,12795,12810,12822,12823,12926,13115,13270,13325,13334,13422,13516,13517,13613,13617,13631,13641,13660,13674,13694,13782,13792,13937,14056,14106,14199,14361,14440,14486,14615,14955,15086,15262,15346,15703,15851,16041,16060,16156,16157,16413,16428,16438,16459,16468,16512,16571,16573,16590,16611,16614,16619,16637,16669,16860,16871,16893,16923,16933,16960,17005,17093,17129,17219,17294,17370,17443,17453,17455,17456,17457,17458,17475,17485,17490,17514,17533,17572,17573,17574,17575,17604,17605,17606,17641,17650,17860,17864,17921,18055,18231,18317,18329,18356,18360,18414,18463,18676,18746,18775,18789,18799,18898,18905,18970,18989,18991,18999,19059,19084,19105,19219,19235,19296,19331,19495,19648,19649,19693,19960,19965,19969,20043,20107,20173,20186,20190,20301,20313,20316,20341,20348,20503,21006,21121,21172,21756,21757,22055,22082,22111,22112,22158,22218,22256,22260,22290,22493,22534,22592,22833,23026,23034,23109]]],["+",[34,33,[[0,4,4,0,4,[[30,1,1,0,1],[35,1,1,1,2],[43,2,2,2,4]]],[1,2,1,4,5,[[71,2,1,4,5]]],[2,3,3,5,8,[[101,1,1,5,6],[114,2,2,6,8]]],[3,1,1,8,9,[[148,1,1,8,9]]],[4,2,2,9,11,[[171,1,1,9,10],[174,1,1,10,11]]],[6,1,1,11,12,[[211,1,1,11,12]]],[8,4,4,12,16,[[245,1,1,12,13],[255,1,1,13,14],[259,1,1,14,15],[266,1,1,15,16]]],[10,3,3,16,19,[[291,1,1,16,17],[303,1,1,17,18],[309,1,1,18,19]]],[11,2,2,19,21,[[322,1,1,19,20],[331,1,1,20,21]]],[12,1,1,21,22,[[347,1,1,21,22]]],[13,2,2,22,24,[[388,1,1,22,23],[400,1,1,23,24]]],[15,1,1,24,25,[[421,1,1,24,25]]],[16,1,1,25,26,[[433,1,1,25,26]]],[20,2,2,26,28,[[661,1,1,26,27],[666,1,1,27,28]]],[21,2,2,28,30,[[673,1,1,28,29],[675,1,1,29,30]]],[22,2,2,30,32,[[715,1,1,30,31],[736,1,1,31,32]]],[37,1,1,32,33,[[921,1,1,32,33]]]],[905,1064,1340,1358,2117,3052,3495,3497,4741,5411,5495,6514,7425,7751,7858,8017,8720,9212,9406,9808,10069,10667,11652,11947,12519,12823,17370,17475,17575,17606,18360,18799,23034]]],["befall",[1,1,[[4,1,1,0,1,[[183,1,1,0,1]]]],[5745]]],["befallen",[3,3,[[3,1,1,0,1,[[136,1,1,0,1]]],[4,1,1,1,2,[[183,1,1,1,2]]],[6,1,1,2,3,[[216,1,1,2,3]]]],[4325,5749,6667]]],["befell",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5892]]],["catch",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2119]]],["come",[2,2,[[4,1,1,0,1,[[156,1,1,0,1]]],[17,1,1,1,2,[[472,1,1,1,2]]]],[5034,13782]]],["cometh",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7869]]],["delivered",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8089]]],["enough",[1,1,[[5,1,1,0,1,[[203,1,1,0,1]]]],[6291]]],["find",[81,79,[[0,12,12,0,12,[[17,3,3,0,3],[18,1,1,3,4],[31,2,2,4,6],[32,2,2,6,8],[33,1,1,8,9],[37,1,1,9,10],[40,1,1,10,11],[46,1,1,11,12]]],[1,3,3,12,15,[[54,1,1,12,13],[65,1,1,13,14],[82,1,1,14,15]]],[3,1,1,15,16,[[151,1,1,15,16]]],[4,4,4,16,20,[[156,1,1,16,17],[174,2,2,17,19],[176,1,1,19,20]]],[6,3,3,20,23,[[219,1,1,20,21],[227,2,2,21,23]]],[7,3,3,23,26,[[232,1,1,23,24],[233,2,2,24,26]]],[8,6,5,26,31,[[236,1,1,26,27],[244,2,1,27,28],[245,1,1,28,29],[258,1,1,29,30],[260,1,1,30,31]]],[9,3,3,31,34,[[281,1,1,31,32],[282,1,1,32,33],[283,1,1,33,34]]],[10,2,2,34,36,[[308,2,2,34,36]]],[13,2,2,36,38,[[386,1,1,36,37],[398,1,1,37,38]]],[17,4,4,38,42,[[438,1,1,38,39],[452,1,1,39,40],[458,1,1,40,41],[469,1,1,41,42]]],[18,2,2,42,44,[[487,1,1,42,43],[494,1,1,43,44]]],[19,12,12,44,56,[[628,2,2,44,46],[629,1,1,46,47],[630,1,1,47,48],[631,1,1,48,49],[635,2,2,49,51],[643,1,1,51,52],[646,1,1,52,53],[647,1,1,53,54],[655,1,1,54,55],[658,1,1,55,56]]],[20,6,5,56,61,[[665,3,3,56,59],[666,2,1,59,60],[669,1,1,60,61]]],[21,2,2,61,63,[[675,1,1,61,62],[678,1,1,62,63]]],[22,3,3,63,66,[[712,1,1,63,64],[719,1,1,64,65],[736,1,1,65,66]]],[23,6,6,66,72,[[746,1,1,66,67],[749,1,1,67,68],[750,1,1,68,69],[754,1,1,69,70],[773,1,1,70,71],[789,1,1,71,72]]],[24,2,2,72,74,[[797,1,1,72,73],[798,1,1,73,74]]],[27,4,4,74,78,[[863,2,2,74,76],[866,1,1,76,77],[873,1,1,77,78]]],[29,1,1,78,79,[[886,1,1,78,79]]]],[450,452,454,468,933,947,968,975,991,1141,1233,1445,1643,1972,2486,4872,5033,5493,5498,5526,6787,6988,6989,7136,7151,7162,7230,7404,7420,7827,7869,8414,8430,8469,9346,9353,11603,11879,12926,13270,13422,13694,14056,14106,16413,16428,16438,16459,16512,16611,16619,16860,16933,16960,17219,17294,17443,17455,17457,17475,17514,17604,17641,18317,18463,18789,18989,19059,19105,19219,19648,20043,20316,20341,22111,22112,22158,22260,22493]]],["findest",[1,1,[[25,1,1,0,1,[[804,1,1,0,1]]]],[20503]]],["findeth",[12,10,[[0,1,1,0,1,[[3,1,1,0,1]]],[17,1,1,1,2,[[468,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[19,7,5,3,8,[[630,1,1,3,4],[635,2,1,4,5],[644,1,1,5,6],[645,2,1,6,7],[648,1,1,7,8]]],[20,1,1,8,9,[[667,1,1,8,9]]],[24,1,1,9,10,[[797,1,1,9,10]]]],[93,13660,16060,16468,16637,16893,16923,17005,17485,20313]]],["finding",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[94]]],["found",[249,241,[[0,36,36,0,36,[[1,1,1,0,1],[5,1,1,1,2],[7,1,1,2,3],[10,1,1,3,4],[15,1,1,4,5],[17,5,5,5,10],[18,1,1,10,11],[25,2,2,11,13],[26,1,1,13,14],[29,2,2,14,16],[30,4,4,16,20],[32,1,1,20,21],[36,3,3,21,24],[37,2,2,24,26],[38,1,1,26,27],[43,6,6,27,33],[46,2,2,33,35],[49,1,1,35,36]]],[1,15,15,36,51,[[58,1,1,36,37],[61,1,1,37,38],[64,1,1,38,39],[65,1,1,39,40],[70,1,1,40,41],[71,3,3,41,44],[82,4,4,44,48],[83,1,1,48,49],[84,2,2,49,51]]],[2,2,2,51,53,[[95,2,2,51,53]]],[3,5,5,53,58,[[127,2,2,53,55],[131,2,2,55,57],[148,1,1,57,58]]],[4,14,14,58,72,[[169,1,1,58,59],[170,1,1,59,60],[172,1,1,60,61],[173,1,1,61,62],[174,7,7,62,69],[176,2,2,69,71],[184,1,1,71,72]]],[5,2,2,72,74,[[188,1,1,72,73],[196,1,1,73,74]]],[6,3,3,74,77,[[216,1,1,74,75],[225,1,1,75,76],[231,1,1,76,77]]],[7,1,1,77,78,[[233,1,1,77,78]]],[8,21,19,78,97,[[244,4,3,78,81],[245,3,3,81,84],[247,1,1,84,85],[248,3,2,85,87],[249,1,1,87,88],[251,1,1,88,89],[255,2,2,89,91],[260,1,1,91,92],[262,1,1,92,93],[264,3,3,93,96],[265,1,1,96,97]]],[9,4,4,97,101,[[273,1,1,97,98],[280,1,1,98,99],[283,2,2,99,101]]],[10,10,9,101,110,[[291,1,1,101,102],[301,2,2,102,104],[303,1,1,104,105],[304,1,1,105,106],[308,1,1,106,107],[310,2,2,107,109],[311,2,1,109,110]]],[11,18,17,110,127,[[314,1,1,110,111],[316,1,1,111,112],[321,1,1,112,113],[324,3,3,113,116],[326,1,1,116,117],[328,1,1,117,118],[329,1,1,118,119],[330,1,1,119,120],[332,1,1,120,121],[334,3,3,121,124],[335,2,2,124,126],[337,2,1,126,127]]],[12,8,8,127,135,[[341,2,2,127,129],[354,1,1,129,130],[357,1,1,130,131],[361,1,1,131,132],[363,1,1,132,133],[365,1,1,133,134],[366,1,1,134,135]]],[13,15,15,135,150,[[368,1,1,135,136],[381,3,3,136,139],[385,1,1,139,140],[386,1,1,140,141],[387,1,1,141,142],[391,2,2,142,144],[395,1,1,144,145],[400,4,4,145,149],[402,1,1,149,150]]],[14,3,3,150,153,[[404,1,1,150,151],[410,1,1,151,152],[412,1,1,152,153]]],[15,6,5,153,158,[[417,1,1,153,154],[419,3,2,154,156],[420,1,1,156,157],[425,1,1,157,158]]],[16,4,4,158,162,[[430,1,1,158,159],[431,1,1,159,160],[432,1,1,160,161],[433,1,1,161,162]]],[17,8,8,162,170,[[454,1,1,162,163],[455,1,1,163,164],[463,2,2,164,166],[466,1,1,166,167],[467,1,1,167,168],[468,1,1,168,169],[477,1,1,169,170]]],[18,10,10,170,180,[[509,1,1,170,171],[513,1,1,171,172],[514,1,1,172,173],[546,1,1,173,174],[553,1,1,174,175],[561,1,1,175,176],[566,1,1,176,177],[584,1,1,177,178],[593,1,1,178,179],[609,1,1,179,180]]],[19,6,6,180,186,[[633,1,1,180,181],[634,1,1,181,182],[637,1,1,182,183],[643,1,1,183,184],[651,1,1,184,185],[652,1,1,185,186]]],[20,5,4,186,190,[[665,4,3,186,189],[667,1,1,189,190]]],[21,5,5,190,195,[[673,3,3,190,193],[675,1,1,193,194],[678,1,1,194,195]]],[22,12,12,195,207,[[688,2,2,195,197],[691,1,1,197,198],[700,1,1,198,199],[708,1,1,199,200],[713,1,1,200,201],[717,1,1,201,202],[729,1,1,202,203],[733,1,1,203,204],[735,1,1,204,205],[743,2,2,205,207]]],[23,20,18,207,225,[[746,4,3,207,210],[749,1,1,210,211],[755,1,1,211,212],[758,1,1,212,213],[759,1,1,213,214],[767,1,1,214,215],[773,1,1,215,216],[775,1,1,216,217],[785,3,3,217,220],[792,1,1,220,221],[794,3,3,221,224],[796,2,1,224,225]]],[24,1,1,225,226,[[798,1,1,225,226]]],[25,3,3,226,229,[[823,1,1,226,227],[827,1,1,227,228],[829,1,1,228,229]]],[26,4,4,229,233,[[850,2,2,229,231],[860,1,1,231,232],[861,1,1,232,233]]],[27,3,3,233,236,[[870,1,1,233,234],[873,1,1,234,235],[875,1,1,235,236]]],[31,1,1,236,237,[[889,1,1,236,237]]],[32,1,1,237,238,[[893,1,1,237,238]]],[35,1,1,238,239,[[908,1,1,238,239]]],[37,1,1,239,240,[[920,1,1,239,240]]],[38,1,1,240,241,[[926,1,1,240,241]]]],[50,145,192,268,388,427,453,454,455,456,476,711,724,747,844,857,906,907,908,910,970,1098,1100,1115,1139,1142,1153,1332,1333,1334,1336,1340,1341,1434,1449,1510,1761,1835,1942,1974,2093,2115,2120,2121,2485,2486,2489,2490,2505,2554,2555,2852,2853,4035,4039,4185,4186,4723,5366,5394,5438,5448,5473,5484,5487,5490,5492,5497,5498,5526,5532,5768,5891,6081,6671,6944,7114,7159,7395,7402,7411,7420,7434,7439,7465,7504,7507,7538,7617,7733,7759,7889,7935,7970,7973,7975,7989,8207,8378,8461,8462,8769,9127,9137,9198,9231,9351,9444,9445,9471,9568,9642,9791,9855,9860,9868,9910,9971,9987,10039,10111,10153,10154,10158,10167,10189,10241,10425,10426,10888,10928,11019,11108,11152,11172,11228,11492,11494,11505,11579,11612,11641,11709,11728,11807,11948,11950,11954,11963,12001,12089,12216,12270,12390,12425,12484,12507,12672,12787,12795,12810,12822,13325,13334,13516,13517,13617,13631,13674,13937,14361,14440,14486,14955,15086,15262,15346,15703,15851,16157,16571,16590,16669,16871,17093,17129,17456,17457,17458,17490,17572,17573,17574,17605,17650,17860,17864,17921,18055,18231,18329,18414,18676,18746,18775,18898,18905,18970,18991,18999,19084,19235,19296,19331,19495,19649,19693,19960,19965,19969,20107,20173,20186,20190,20301,20348,21006,21121,21172,21756,21757,22055,22082,22218,22256,22290,22534,22592,22833,23026,23109]]],["get",[2,2,[[9,1,1,0,1,[[286,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]]],[8560,16573]]],["gotten",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]]],[4714,13613]]],["hand",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7102]]],["hath",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5464]]],["here",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[8,1,1,1,2,[[244,1,1,1,2]]]],[472,7399]]],["hit",[2,2,[[8,1,1,0,1,[[266,1,1,0,1]]],[12,1,1,1,2,[[347,1,1,1,2]]]],[8012,10662]]],["left",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10065,18356]]],["meet",[2,2,[[8,1,1,0,1,[[245,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]]],[7421,9632]]],["met",[3,3,[[10,1,1,0,1,[[303,1,1,0,1]]],[11,2,2,1,3,[[321,1,1,1,2],[322,1,1,2,3]]]],[9208,9777,9806]]],["on",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16041]]],["out",[16,14,[[6,2,2,0,2,[[224,2,2,0,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[16,1,1,3,4,[[427,1,1,3,4]]],[17,4,3,4,7,[[446,2,1,4,5],[467,1,1,5,6],[472,1,1,6,7]]],[18,3,2,7,9,[[498,2,1,7,8],[609,1,1,8,9]]],[19,1,1,9,10,[[635,1,1,9,10]]],[20,3,3,10,13,[[665,2,2,10,12],[670,1,1,12,13]]],[27,1,1,13,14,[[873,1,1,13,14]]]],[6921,6927,7766,12747,13115,13641,13792,14199,16156,16614,17453,17456,17533,22260]]],["present",[17,17,[[8,3,3,0,3,[[248,2,2,0,2],[256,1,1,2,3]]],[12,1,1,3,4,[[366,1,1,3,4]]],[13,9,9,4,13,[[371,1,1,4,5],[395,1,1,5,6],[396,1,1,6,7],[397,1,1,7,8],[400,2,2,8,10],[401,3,3,10,13]]],[14,1,1,13,14,[[410,1,1,13,14]]],[16,2,2,14,16,[[426,1,1,14,15],[429,1,1,15,16]]],[18,1,1,16,17,[[523,1,1,16,17]]]],[7500,7501,7775,11181,11279,11820,11848,11855,11965,11966,11973,11983,11984,12226,12707,12778,14615]]],["presented",[3,3,[[2,3,3,0,3,[[98,3,3,0,3]]]],[2965,2966,2971]]],["ready",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8500]]],["received",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[704]]],["sped",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6653]]],["suffice",[2,1,[[3,2,1,0,1,[[127,2,1,0,1]]]],[4046]]],["sufficed",[1,1,[[6,1,1,0,1,[[231,1,1,0,1]]]],[7116]]],["to",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7102]]],["upon",[5,5,[[1,1,1,0,1,[[67,1,1,0,1]]],[4,1,1,1,2,[[183,1,1,1,2]]],[11,1,1,2,3,[[319,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[18,1,1,4,5,[[593,1,1,4,5]]]],[2007,5745,9716,12543,15851]]]]},{"k":"H4673","v":[["*",[10,10,[[5,2,2,0,2,[[190,2,2,0,2]]],[8,6,6,2,8,[[248,1,1,2,3],[249,5,5,3,8]]],[9,1,1,8,9,[[289,1,1,8,9]]],[22,1,1,9,10,[[700,1,1,9,10]]]],[5913,5919,7508,7509,7512,7514,7519,7523,8667,18071]]],["+",[2,2,[[5,1,1,0,1,[[190,1,1,0,1]]],[22,1,1,1,2,[[700,1,1,1,2]]]],[5913,18071]]],["garrison",[7,7,[[8,6,6,0,6,[[248,1,1,0,1],[249,5,5,1,6]]],[9,1,1,6,7,[[289,1,1,6,7]]]],[7508,7509,7512,7514,7519,7523,8667]]],["stood",[1,1,[[5,1,1,0,1,[[190,1,1,0,1]]]],[5919]]]]},{"k":"H4674","v":[["mount",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18196]]]]},{"k":"H4675","v":[["*",[2,2,[[8,1,1,0,1,[[249,1,1,0,1]]],[37,1,1,1,2,[[919,1,1,1,2]]]],[7520,23007]]],["army",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23007]]],["garrison",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7520]]]]},{"k":"H4676","v":[["*",[32,31,[[0,9,8,0,8,[[27,2,2,0,2],[30,5,4,2,6],[34,2,2,6,8]]],[1,3,3,8,11,[[72,1,1,8,9],[73,1,1,9,10],[83,1,1,10,11]]],[2,1,1,11,12,[[115,1,1,11,12]]],[4,3,3,12,15,[[159,1,1,12,13],[164,1,1,13,14],[168,1,1,14,15]]],[10,1,1,15,16,[[304,1,1,15,16]]],[11,6,6,16,22,[[315,1,1,16,17],[322,2,2,17,19],[329,1,1,19,20],[330,1,1,20,21],[335,1,1,21,22]]],[13,2,2,22,24,[[380,1,1,22,23],[397,1,1,23,24]]],[22,1,1,24,25,[[697,1,1,24,25]]],[23,1,1,25,26,[[787,1,1,25,26]]],[25,1,1,26,27,[[827,1,1,26,27]]],[27,3,3,27,30,[[864,1,1,27,28],[871,2,2,28,30]]],[32,1,1,30,31,[[897,1,1,30,31]]]],[791,795,886,918,924,925,1025,1031,2168,2181,2509,3525,5116,5243,5364,9241,9578,9819,9820,9993,10028,10179,11478,11855,18023,20010,21111,22132,22226,22227,22646]]],["+",[1,1,[[13,1,1,0,1,[[397,1,1,0,1]]]],[11855]]],["garrisons",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21111]]],["image",[5,5,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[168,1,1,1,2]]],[11,2,2,2,4,[[315,1,1,2,3],[322,1,1,3,4]]],[27,1,1,4,5,[[864,1,1,4,5]]]],[3525,5364,9578,9820,22132]]],["images",[13,13,[[1,2,2,0,2,[[72,1,1,0,1],[83,1,1,1,2]]],[4,1,1,2,3,[[159,1,1,2,3]]],[10,1,1,3,4,[[304,1,1,3,4]]],[11,4,4,4,8,[[322,1,1,4,5],[329,1,1,5,6],[330,1,1,6,7],[335,1,1,7,8]]],[13,1,1,8,9,[[380,1,1,8,9]]],[23,1,1,9,10,[[787,1,1,9,10]]],[27,2,2,10,12,[[871,2,2,10,12]]],[32,1,1,12,13,[[897,1,1,12,13]]]],[2168,2509,5116,9241,9819,9993,10028,10179,11478,20010,22226,22227,22646]]],["pillar",[10,9,[[0,9,8,0,8,[[27,2,2,0,2],[30,5,4,2,6],[34,2,2,6,8]]],[22,1,1,8,9,[[697,1,1,8,9]]]],[791,795,886,918,924,925,1025,1031,18023]]],["pillars",[2,2,[[1,1,1,0,1,[[73,1,1,0,1]]],[4,1,1,1,2,[[164,1,1,1,2]]]],[2181,5243]]]]},{"k":"H4677","v":[["Mesobaite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10720]]]]},{"k":"H4678","v":[["*",[6,4,[[0,2,2,0,2,[[34,2,2,0,2]]],[9,2,1,2,3,[[284,2,1,2,3]]],[22,2,1,3,4,[[684,2,1,3,4]]]],[1025,1031,8496,17782]]],["pillar",[4,3,[[0,2,2,0,2,[[34,2,2,0,2]]],[9,2,1,2,3,[[284,2,1,2,3]]]],[1025,1031,8496]]],["substance",[2,1,[[22,2,1,0,1,[[684,2,1,0,1]]]],[17782]]]]},{"k":"H4679","v":[["*",[12,12,[[6,1,1,0,1,[[216,1,1,0,1]]],[8,3,3,1,4,[[258,3,3,1,4]]],[12,3,3,4,7,[[348,1,1,4,5],[349,2,2,5,7]]],[22,1,1,7,8,[[711,1,1,7,8]]],[23,2,2,8,10,[[792,1,1,8,9],[795,1,1,9,10]]],[25,2,2,10,12,[[820,1,1,10,11],[834,1,1,11,12]]]],[6656,7824,7829,7839,10680,10728,10736,18295,20121,20242,20890,21307]]],["castle",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10680]]],["forts",[1,1,[[25,1,1,0,1,[[834,1,1,0,1]]]],[21307]]],["hold",[2,2,[[12,2,2,0,2,[[349,2,2,0,2]]]],[10728,10736]]],["holds",[7,7,[[6,1,1,0,1,[[216,1,1,0,1]]],[8,3,3,1,4,[[258,3,3,1,4]]],[23,2,2,4,6,[[792,1,1,4,5],[795,1,1,5,6]]],[25,1,1,6,7,[[820,1,1,6,7]]]],[6656,7824,7829,7839,20121,20242,20890]]],["munitions",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18295]]]]},{"k":"H4680","v":[["*",[7,7,[[2,2,2,0,2,[[90,1,1,0,1],[94,1,1,1,2]]],[6,1,1,2,3,[[216,1,1,2,3]]],[18,2,2,3,5,[[550,1,1,3,4],[552,1,1,4,5]]],[22,1,1,5,6,[[729,1,1,5,6]]],[25,1,1,6,7,[[824,1,1,6,7]]]],[2760,2839,6692,15030,15079,18690,21041]]],["out",[6,6,[[2,2,2,0,2,[[90,1,1,0,1],[94,1,1,1,2]]],[18,2,2,2,4,[[550,1,1,2,3],[552,1,1,3,4]]],[22,1,1,4,5,[[729,1,1,4,5]]],[25,1,1,5,6,[[824,1,1,5,6]]]],[2760,2839,15030,15079,18690,21041]]],["wringed",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6692]]]]},{"k":"H4681","v":[["Mozah",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6319]]]]},{"k":"H4682","v":[["*",[53,42,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,16,12,1,13,[[61,6,6,1,7],[62,2,2,7,9],[72,2,1,9,10],[78,4,2,10,12],[83,2,1,12,13]]],[2,12,8,13,21,[[91,3,2,13,15],[95,1,1,15,16],[96,2,1,16,17],[97,3,2,17,19],[99,1,1,19,20],[112,2,1,20,21]]],[3,7,5,21,26,[[122,5,3,21,24],[125,1,1,24,25],[144,1,1,25,26]]],[4,3,3,26,29,[[168,3,3,26,29]]],[5,1,1,29,30,[[191,1,1,29,30]]],[6,4,3,30,33,[[216,4,3,30,33]]],[8,1,1,33,34,[[263,1,1,33,34]]],[11,1,1,34,35,[[335,1,1,34,35]]],[12,1,1,35,36,[[360,1,1,35,36]]],[13,4,4,36,40,[[374,1,1,36,37],[396,2,2,37,39],[401,1,1,39,40]]],[14,1,1,40,41,[[408,1,1,40,41]]],[25,1,1,41,42,[[846,1,1,41,42]]]],[460,1824,1831,1833,1834,1836,1855,1873,1874,2159,2338,2359,2514,2766,2767,2865,2891,2919,2943,2989,3408,3838,3840,3842,3976,4594,5345,5350,5358,5945,6673,6674,6675,7966,10174,11012,11359,11840,11848,11983,12173,21651]]],["bread",[34,30,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,12,10,1,11,[[61,5,5,1,6],[62,2,2,6,8],[72,2,1,8,9],[78,1,1,9,10],[83,2,1,10,11]]],[2,5,4,11,15,[[95,1,1,11,12],[97,2,2,12,14],[112,2,1,14,15]]],[3,5,4,15,19,[[122,3,2,15,17],[125,1,1,17,18],[144,1,1,18,19]]],[4,3,3,19,22,[[168,3,3,19,22]]],[8,1,1,22,23,[[263,1,1,22,23]]],[11,1,1,23,24,[[335,1,1,23,24]]],[13,4,4,24,28,[[374,1,1,24,25],[396,2,2,25,27],[401,1,1,27,28]]],[14,1,1,28,29,[[408,1,1,28,29]]],[25,1,1,29,30,[[846,1,1,29,30]]]],[460,1824,1831,1833,1834,1836,1873,1874,2159,2359,2514,2865,2919,2943,3408,3838,3840,3976,4594,5345,5350,5358,7966,10174,11359,11840,11848,11983,12173,21651]]],["cakes",[5,4,[[5,1,1,0,1,[[191,1,1,0,1]]],[6,4,3,1,4,[[216,4,3,1,4]]]],[5945,6673,6674,6675]]],["leaven",[1,1,[[2,1,1,0,1,[[99,1,1,0,1]]]],[2989]]],["unleavened",[13,8,[[1,4,2,0,2,[[61,1,1,0,1],[78,3,1,1,2]]],[2,6,4,2,6,[[91,3,2,2,4],[96,2,1,4,5],[97,1,1,5,6]]],[3,2,1,6,7,[[122,2,1,6,7]]],[12,1,1,7,8,[[360,1,1,7,8]]]],[1855,2338,2766,2767,2891,2943,3842,11012]]]]},{"k":"H4683","v":[["*",[3,3,[[19,2,2,0,2,[[640,1,1,0,1],[644,1,1,1,2]]],[22,1,1,2,3,[[736,1,1,2,3]]]],[16757,16892,18790]]],["contention",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16757]]],["debate",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18790]]],["strife",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16892]]]]},{"k":"H4684","v":[["*",[2,2,[[23,2,2,0,2,[[752,1,1,0,1],[757,1,1,1,2]]]],[19169,19293]]],["neighing",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19169]]],["neighings",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19293]]]]},{"k":"H4685","v":[["*",[5,5,[[17,1,1,0,1,[[454,1,1,0,1]]],[19,1,1,1,2,[[639,1,1,1,2]]],[20,2,2,2,4,[[665,1,1,2,3],[667,1,1,3,4]]],[22,1,1,4,5,[[707,1,1,4,5]]]],[13303,16731,17455,17489,18200]]],["bulwarks",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17489]]],["munition",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18200]]],["net",[2,2,[[17,1,1,0,1,[[454,1,1,0,1]]],[19,1,1,1,2,[[639,1,1,1,2]]]],[13303,16731]]],["snares",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17455]]]]},{"k":"H4686","v":[["*",[22,22,[[8,3,3,0,3,[[257,2,2,0,2],[259,1,1,2,3]]],[9,5,5,3,8,[[271,3,3,3,6],[288,1,1,6,7],[289,1,1,7,8]]],[12,2,2,8,10,[[348,2,2,8,10]]],[17,1,1,10,11,[[474,1,1,10,11]]],[18,7,7,11,18,[[495,1,1,11,12],[508,2,2,12,14],[543,1,1,14,15],[548,1,1,15,16],[568,1,1,16,17],[621,1,1,17,18]]],[20,1,1,18,19,[[667,1,1,18,19]]],[25,3,3,19,22,[[813,1,1,19,20],[814,1,1,20,21],[818,1,1,21,22]]]],[7791,7792,7861,8139,8141,8149,8604,8667,10678,10689,13862,14120,14333,14334,14884,14979,15397,16307,17487,20693,20729,20845]]],["castle",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10678]]],["defence",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14333]]],["fort",[1,1,[[9,1,1,0,1,[[271,1,1,0,1]]]],[8141]]],["fortress",[6,6,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,5,5,1,6,[[495,1,1,1,2],[508,1,1,2,3],[548,1,1,3,4],[568,1,1,4,5],[621,1,1,5,6]]]],[8604,14120,14334,14979,15397,16307]]],["hold",[7,7,[[8,3,3,0,3,[[257,2,2,0,2],[259,1,1,2,3]]],[9,3,3,3,6,[[271,2,2,3,5],[289,1,1,5,6]]],[12,1,1,6,7,[[348,1,1,6,7]]]],[7791,7792,7861,8139,8149,8667,10689]]],["hunted",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20729]]],["net",[2,2,[[18,1,1,0,1,[[543,1,1,0,1]]],[20,1,1,1,2,[[667,1,1,1,2]]]],[14884,17487]]],["place",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13862]]],["snare",[2,2,[[25,2,2,0,2,[[813,1,1,0,1],[818,1,1,1,2]]]],[20693,20845]]]]},{"k":"H4687","v":[["*",[181,177,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,4,4,1,5,[[64,1,1,1,2],[65,1,1,2,3],[69,1,1,3,4],[73,1,1,4,5]]],[2,10,10,5,15,[[93,4,4,5,9],[94,1,1,9,10],[111,1,1,10,11],[115,3,3,11,14],[116,1,1,14,15]]],[3,5,5,15,20,[[131,4,4,15,19],[152,1,1,19,20]]],[4,43,42,20,62,[[156,2,2,20,22],[157,3,3,22,25],[158,4,4,25,29],[159,2,2,29,31],[160,4,4,31,35],[162,1,1,35,36],[163,6,6,36,42],[165,2,2,42,44],[167,1,1,44,45],[169,1,1,45,46],[171,1,1,46,47],[178,4,3,47,50],[179,2,2,50,52],[180,5,5,52,57],[182,4,4,57,61],[183,1,1,61,62]]],[5,3,2,62,64,[[208,3,2,62,64]]],[6,2,2,64,66,[[212,1,1,64,65],[213,1,1,65,66]]],[8,1,1,66,67,[[248,1,1,66,67]]],[10,12,12,67,79,[[292,2,2,67,69],[293,1,1,69,70],[296,1,1,70,71],[298,2,2,71,73],[299,1,1,73,74],[301,2,2,74,76],[303,1,1,76,77],[304,1,1,77,78],[308,1,1,78,79]]],[11,8,8,79,87,[[329,5,5,79,84],[330,2,2,84,86],[335,1,1,86,87]]],[12,3,3,87,90,[[365,2,2,87,89],[366,1,1,89,90]]],[13,19,18,90,108,[[373,1,1,90,91],[374,3,3,91,94],[380,1,1,94,95],[383,1,1,95,96],[385,1,1,96,97],[390,2,2,97,99],[395,3,2,99,101],[396,2,2,101,103],[397,1,1,103,104],[400,1,1,104,105],[401,3,3,105,108]]],[14,4,4,108,112,[[409,1,1,108,109],[411,2,2,109,111],[412,1,1,111,112]]],[15,14,14,112,126,[[413,3,3,112,115],[421,5,5,115,120],[422,2,2,120,122],[423,1,1,122,123],[424,2,2,123,125],[425,1,1,125,126]]],[16,1,1,126,127,[[428,1,1,126,127]]],[17,1,1,127,128,[[458,1,1,127,128]]],[18,26,26,128,154,[[496,1,1,128,129],[555,1,1,129,130],[566,1,1,130,131],[589,1,1,131,132],[596,22,22,132,154]]],[19,10,10,154,164,[[629,1,1,154,155],[630,1,1,155,156],[631,1,1,156,157],[633,2,2,157,159],[634,2,2,159,161],[637,1,1,161,162],[640,1,1,162,163],[646,1,1,163,164]]],[20,2,2,164,166,[[666,1,1,164,165],[670,1,1,165,166]]],[22,3,3,166,169,[[707,1,1,166,167],[714,1,1,167,168],[726,1,1,168,169]]],[23,5,4,169,173,[[776,1,1,169,170],[779,4,3,170,173]]],[26,2,2,173,175,[[858,2,2,173,175]]],[38,2,2,175,177,[[926,2,2,175,177]]]],[697,1946,1975,2057,2189,2797,2808,2817,2822,2847,3400,3527,3538,3539,3604,4175,4184,4192,4193,4892,5006,5044,5063,5082,5084,5087,5088,5103,5111,5120,5122,5138,5139,5143,5148,5199,5209,5216,5221,5230,5235,5236,5276,5290,5324,5384,5415,5579,5583,5584,5586,5595,5612,5620,5624,5626,5656,5716,5718,5719,5724,5733,6429,6431,6562,6572,7498,8773,8813,8830,8908,9043,9046,9057,9142,9146,9205,9226,9359,9996,9999,10002,10017,10020,10030,10060,10168,11150,11151,11183,11343,11359,11360,11361,11479,11527,11586,11697,11698,11806,11816,11833,11839,11875,11964,11976,11981,11982,12184,12247,12251,12255,12301,12303,12305,12524,12525,12527,12540,12545,12578,12581,12611,12648,12669,12676,12750,13431,14176,15120,15357,15804,15904,15908,15917,15919,15930,15933,15945,15946,15958,15964,15971,15984,15994,15996,16013,16025,16029,16041,16049,16064,16070,16074,16434,16456,16494,16560,16563,16576,16577,16664,16760,16941,17463,17536,18206,18351,18632,19742,19837,19839,19841,21992,21993,23104,23107]]],["+",[5,5,[[2,1,1,0,1,[[93,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]],[18,2,2,2,4,[[596,2,2,2,4]]],[26,1,1,4,5,[[858,1,1,4,5]]]],[2822,5579,15908,15919,21993]]],["commanded",[2,2,[[13,1,1,0,1,[[374,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]]],[11360,12676]]],["commandment",[43,42,[[3,1,1,0,1,[[131,1,1,0,1]]],[4,2,2,1,3,[[169,1,1,1,2],[182,1,1,2,3]]],[5,2,2,3,5,[[208,2,2,3,5]]],[8,1,1,5,6,[[248,1,1,5,6]]],[10,2,2,6,8,[[292,1,1,6,7],[303,1,1,7,8]]],[11,3,3,8,11,[[329,2,2,8,10],[330,1,1,10,11]]],[13,13,12,11,23,[[374,2,2,11,13],[380,1,1,13,14],[385,1,1,14,15],[390,1,1,15,16],[395,3,2,16,18],[396,2,2,18,20],[401,3,3,20,23]]],[14,1,1,23,24,[[412,1,1,23,24]]],[15,3,3,24,27,[[423,1,1,24,25],[424,2,2,25,27]]],[16,1,1,27,28,[[428,1,1,27,28]]],[17,1,1,28,29,[[458,1,1,28,29]]],[18,2,2,29,31,[[496,1,1,29,30],[596,1,1,30,31]]],[19,4,4,31,35,[[633,2,2,31,33],[640,1,1,33,34],[646,1,1,34,35]]],[20,1,1,35,36,[[666,1,1,35,36]]],[22,1,1,36,37,[[714,1,1,36,37]]],[23,3,3,37,40,[[779,3,3,37,40]]],[38,2,2,40,42,[[926,2,2,40,42]]]],[4184,5384,5719,6429,6431,7498,8813,9205,10017,10020,10060,11359,11361,11479,11586,11698,11806,11816,11833,11839,11976,11981,11982,12255,12611,12648,12669,12750,13431,14176,15994,16560,16563,16760,16941,17463,18351,19837,19839,19841,23104,23107]]],["commandments",[126,126,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,4,4,1,5,[[64,1,1,1,2],[65,1,1,2,3],[69,1,1,3,4],[73,1,1,4,5]]],[2,9,9,5,14,[[93,3,3,5,8],[94,1,1,8,9],[111,1,1,9,10],[115,3,3,10,13],[116,1,1,13,14]]],[3,4,4,14,18,[[131,3,3,14,17],[152,1,1,17,18]]],[4,40,40,18,58,[[156,2,2,18,20],[157,3,3,20,23],[158,4,4,23,27],[159,2,2,27,29],[160,4,4,29,33],[162,1,1,33,34],[163,6,6,34,40],[165,2,2,40,42],[167,1,1,42,43],[171,1,1,43,44],[178,3,3,44,47],[179,2,2,47,49],[180,5,5,49,54],[182,3,3,54,57],[183,1,1,57,58]]],[5,1,1,58,59,[[208,1,1,58,59]]],[6,2,2,59,61,[[212,1,1,59,60],[213,1,1,60,61]]],[10,10,10,61,71,[[292,1,1,61,62],[293,1,1,62,63],[296,1,1,63,64],[298,2,2,64,66],[299,1,1,66,67],[301,2,2,67,69],[304,1,1,69,70],[308,1,1,70,71]]],[11,5,5,71,76,[[329,3,3,71,74],[330,1,1,74,75],[335,1,1,75,76]]],[12,3,3,76,79,[[365,2,2,76,78],[366,1,1,78,79]]],[13,5,5,79,84,[[373,1,1,79,80],[383,1,1,80,81],[390,1,1,81,82],[397,1,1,82,83],[400,1,1,83,84]]],[14,3,3,84,87,[[409,1,1,84,85],[411,2,2,85,87]]],[15,8,8,87,95,[[413,3,3,87,90],[421,4,4,90,94],[422,1,1,94,95]]],[18,22,22,95,117,[[555,1,1,95,96],[566,1,1,96,97],[589,1,1,97,98],[596,19,19,98,117]]],[19,6,6,117,123,[[629,1,1,117,118],[630,1,1,118,119],[631,1,1,119,120],[634,2,2,120,122],[637,1,1,122,123]]],[20,1,1,123,124,[[670,1,1,123,124]]],[22,1,1,124,125,[[726,1,1,124,125]]],[26,1,1,125,126,[[858,1,1,125,126]]]],[697,1946,1975,2057,2189,2797,2808,2817,2847,3400,3527,3538,3539,3604,4175,4192,4193,4892,5006,5044,5063,5082,5084,5087,5088,5103,5111,5120,5122,5138,5139,5143,5148,5199,5209,5216,5221,5230,5235,5236,5276,5290,5324,5415,5579,5583,5584,5586,5595,5612,5620,5624,5626,5656,5716,5718,5724,5733,6431,6562,6572,8773,8830,8908,9043,9046,9057,9142,9146,9226,9359,9996,9999,10002,10030,10168,11150,11151,11183,11343,11527,11697,11875,11964,12184,12247,12251,12301,12303,12305,12524,12527,12540,12545,12578,15120,15357,15804,15904,15917,15930,15933,15945,15946,15958,15964,15971,15984,15996,16013,16025,16029,16041,16049,16064,16070,16074,16434,16456,16494,16576,16577,16664,17536,18632,21992]]],["law",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19742]]],["ordinances",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12581]]],["precept",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18206]]],["precepts",[2,2,[[15,1,1,0,1,[[421,1,1,0,1]]],[23,1,1,1,2,[[779,1,1,1,2]]]],[12525,19841]]]]},{"k":"H4688","v":[["*",[11,11,[[1,1,1,0,1,[[64,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[17,1,1,2,3,[[476,1,1,2,3]]],[18,5,5,3,8,[[545,1,1,3,4],[546,2,2,4,6],[565,1,1,6,7],[584,1,1,7,8]]],[31,1,1,8,9,[[890,1,1,8,9]]],[32,1,1,9,10,[[899,1,1,9,10]]],[37,1,1,10,11,[[920,1,1,10,11]]]],[1925,12522,13919,14922,14937,14950,15314,15723,22551,22683,23027]]],["+",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14922]]],["bottom",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1925]]],["deep",[5,5,[[17,1,1,0,1,[[476,1,1,0,1]]],[18,3,3,1,4,[[546,2,2,1,3],[584,1,1,3,4]]],[31,1,1,4,5,[[890,1,1,4,5]]]],[13919,14937,14950,15723,22551]]],["deeps",[3,3,[[15,1,1,0,1,[[421,1,1,0,1]]],[18,1,1,1,2,[[565,1,1,1,2]]],[37,1,1,2,3,[[920,1,1,2,3]]]],[12522,15314,23027]]],["depths",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22683]]]]},{"k":"H4689","v":[["*",[6,6,[[4,3,3,0,3,[[180,3,3,0,3]]],[8,1,1,3,4,[[257,1,1,3,4]]],[18,1,1,4,5,[[596,1,1,4,5]]],[23,1,1,5,6,[[763,1,1,5,6]]]],[5664,5666,5668,7789,16041,19416]]],["anguish",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16041]]],["distress",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7789]]],["straitness",[4,4,[[4,3,3,0,3,[[180,3,3,0,3]]],[23,1,1,3,4,[[763,1,1,3,4]]]],[5664,5666,5668,19416]]]]},{"k":"H4690","v":[["*",[2,2,[[8,2,2,0,2,[[237,1,1,0,1],[249,1,1,1,2]]]],[7248,7513]]],["pillars",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7248]]],["situate",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7513]]]]},{"k":"H4691","v":[["*",[7,7,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,5,5,1,6,[[502,1,1,1,2],[584,4,4,2,6]]],[35,1,1,6,7,[[906,1,1,6,7]]]],[13227,14268,15705,15712,15718,15727,22802]]],["+",[5,5,[[18,5,5,0,5,[[502,1,1,0,1],[584,4,4,1,5]]]],[14268,15705,15712,15718,15727]]],["anguish",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13227]]],["distress",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22802]]]]},{"k":"H4692","v":[["*",[25,25,[[4,5,5,0,5,[[172,2,2,0,2],[180,3,3,2,5]]],[11,2,2,5,7,[[336,1,1,5,6],[337,1,1,6,7]]],[13,3,3,7,10,[[374,1,1,7,8],[377,1,1,8,9],[398,1,1,9,10]]],[18,2,2,10,12,[[508,1,1,10,11],[537,1,1,11,12]]],[22,1,1,12,13,[[697,1,1,12,13]]],[23,2,2,13,15,[[763,1,1,13,14],[796,1,1,14,15]]],[25,5,5,15,20,[[805,4,4,15,19],[806,1,1,19,20]]],[32,1,1,20,21,[[897,1,1,20,21]]],[33,1,1,21,22,[[902,1,1,21,22]]],[34,1,1,22,23,[[904,1,1,22,23]]],[37,2,2,23,25,[[919,1,1,23,24],[922,1,1,24,25]]]],[5446,5447,5664,5666,5668,10212,10224,11351,11419,11885,14352,14816,18010,19416,20281,20531,20532,20536,20537,20548,22634,22726,22749,23002,23047]]],["+",[3,3,[[11,2,2,0,2,[[336,1,1,0,1],[337,1,1,1,2]]],[23,1,1,2,3,[[796,1,1,2,3]]]],[10212,10224,20281]]],["besieged",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20532]]],["bulwarks",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5447]]],["defence",[2,2,[[13,1,1,0,1,[[377,1,1,0,1]]],[22,1,1,1,2,[[697,1,1,1,2]]]],[11419,18010]]],["fenced",[1,1,[[13,1,1,0,1,[[374,1,1,0,1]]]],[11351]]],["hold",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23002]]],["siege",[13,13,[[4,4,4,0,4,[[172,1,1,0,1],[180,3,3,1,4]]],[13,1,1,4,5,[[398,1,1,4,5]]],[23,1,1,5,6,[[763,1,1,5,6]]],[25,4,4,6,10,[[805,3,3,6,9],[806,1,1,9,10]]],[32,1,1,10,11,[[897,1,1,10,11]]],[33,1,1,11,12,[[902,1,1,11,12]]],[37,1,1,12,13,[[922,1,1,12,13]]]],[5446,5664,5666,5668,11885,19416,20531,20536,20537,20548,22634,22726,23047]]],["strong",[2,2,[[18,2,2,0,2,[[508,1,1,0,1],[537,1,1,1,2]]]],[14352,14816]]],["tower",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22749]]]]},{"k":"H4693","v":[["*",[5,4,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]],[23,1,1,2,3,[[754,1,1,2,3]]],[32,2,1,3,4,[[899,2,1,3,4]]]],[10085,18377,19218,22676]]],["fortified",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22676]]],["fortress",[2,2,[[23,1,1,0,1,[[754,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]]],[19218,22676]]],["places",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10085,18377]]]]},{"k":"H4694","v":[["*",[8,8,[[13,6,6,0,6,[[377,3,3,0,3],[378,1,1,3,4],[380,1,1,4,5],[387,1,1,5,6]]],[22,1,1,6,7,[[707,1,1,6,7]]],[33,1,1,7,8,[[901,1,1,7,8]]]],[11424,11425,11437,11441,11481,11627,18196,22700]]],["fenced",[5,5,[[13,5,5,0,5,[[377,2,2,0,2],[378,1,1,2,3],[380,1,1,3,4],[387,1,1,4,5]]]],[11424,11437,11441,11481,11627]]],["forts",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18196]]],["holds",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11425]]],["munition",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22700]]]]},{"k":"H4695","v":[["contended",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18463]]]]},{"k":"H4696","v":[["*",[13,10,[[1,2,1,0,1,[[77,2,1,0,1]]],[8,2,1,1,2,[[252,2,1,1,2]]],[13,2,2,2,4,[[392,2,2,2,4]]],[22,1,1,4,5,[[726,1,1,4,5]]],[23,1,1,5,6,[[747,1,1,5,6]]],[25,5,4,6,10,[[804,4,3,6,9],[810,1,1,9,10]]]],[2331,7667,11751,11752,18618,19005,20509,20510,20511,20626]]],["+",[1,1,[[25,1,1,0,1,[[804,1,1,0,1]]]],[20509]]],["brow",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18618]]],["forehead",[9,7,[[1,2,1,0,1,[[77,2,1,0,1]]],[8,2,1,1,2,[[252,2,1,1,2]]],[13,2,2,2,4,[[392,2,2,2,4]]],[23,1,1,4,5,[[747,1,1,4,5]]],[25,2,2,5,7,[[804,2,2,5,7]]]],[2331,7667,11751,11752,19005,20510,20511]]],["foreheads",[2,2,[[25,2,2,0,2,[[804,1,1,0,1],[810,1,1,1,2]]]],[20510,20626]]]]},{"k":"H4697","v":[["greaves",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7624]]]]},{"k":"H4698","v":[["bells",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23088]]]]},{"k":"H4699","v":[["bottom",[1,1,[[37,1,1,0,1,[[911,1,1,0,1]]]],[22886]]]]},{"k":"H4700","v":[["cymbals",[13,13,[[12,8,8,0,8,[[350,1,1,0,1],[352,3,3,1,4],[353,2,2,4,6],[362,2,2,6,8]]],[13,3,3,8,11,[[371,2,2,8,10],[395,1,1,10,11]]],[14,1,1,11,12,[[405,1,1,11,12]]],[15,1,1,12,13,[[424,1,1,12,13]]]],[10768,10807,10810,10819,10825,10862,11047,11052,11280,11281,11816,12107,12651]]]]},{"k":"H4701","v":[["*",[12,9,[[1,8,6,0,6,[[77,4,3,0,3],[78,2,1,3,4],[88,2,2,4,6]]],[2,3,2,6,8,[[97,2,1,6,7],[105,1,1,7,8]]],[25,1,1,8,9,[[822,1,1,8,9]]]],[2297,2330,2332,2342,2692,2695,2926,3205,20970]]],["diadem",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20970]]],["mitre",[11,8,[[1,8,6,0,6,[[77,4,3,0,3],[78,2,1,3,4],[88,2,2,4,6]]],[2,3,2,6,8,[[97,2,1,6,7],[105,1,1,7,8]]]],[2297,2330,2332,2342,2692,2695,2926,3205]]]]},{"k":"H4702","v":[["bed",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18184]]]]},{"k":"H4703","v":[["*",[3,3,[[18,1,1,0,1,[[514,1,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[14473,16978,22079]]],["goings",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16978]]],["steps",[2,2,[[18,1,1,0,1,[[514,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[14473,22079]]]]},{"k":"H4704","v":[["+",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21970]]]]},{"k":"H4705","v":[["*",[5,4,[[0,2,1,0,1,[[18,2,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]],[17,1,1,2,3,[[443,1,1,2,3]]],[22,1,1,3,4,[[741,1,1,3,4]]]],[477,11701,13036,18884]]],["company",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11701]]],["one",[2,1,[[0,2,1,0,1,[[18,2,1,0,1]]]],[477]]],["small",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13036]]],["while",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18884]]]]},{"k":"H4706","v":[["Mizar",[1,1,[[18,1,1,0,1,[[519,1,1,0,1]]]],[14561]]]]},{"k":"H4707","v":[["*",[2,2,[[13,1,1,0,1,[[386,1,1,0,1]]],[22,1,1,1,2,[[699,1,1,1,2]]]],[11611,18043]]],["tower",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11611]]],["watchtower",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18043]]]]},{"k":"H4708","v":[["*",[11,10,[[5,3,3,0,3,[[197,1,1,0,1],[201,1,1,1,2],[204,1,1,2,3]]],[6,2,1,3,4,[[221,2,1,3,4]]],[8,1,1,4,5,[[257,1,1,4,5]]],[23,5,5,5,10,[[784,4,4,5,9],[785,1,1,9,10]]]],[6115,6240,6319,6858,7790,19947,19949,19953,19954,19958]]],["+",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6858]]],["Mizpah",[5,5,[[23,5,5,0,5,[[784,4,4,0,4],[785,1,1,4,5]]]],[19947,19949,19953,19954,19958]]],["Mizpeh",[5,5,[[5,3,3,0,3,[[197,1,1,0,1],[201,1,1,1,2],[204,1,1,2,3]]],[6,1,1,3,4,[[221,1,1,3,4]]],[8,1,1,4,5,[[257,1,1,4,5]]]],[6115,6240,6319,6858,7790]]]]},{"k":"H4709","v":[["*",[35,33,[[0,1,1,0,1,[[30,1,1,0,1]]],[5,1,1,1,2,[[197,1,1,1,2]]],[6,8,8,2,10,[[220,1,1,2,3],[221,2,2,3,5],[230,2,2,5,7],[231,3,3,7,10]]],[8,8,7,10,17,[[242,7,6,10,16],[245,1,1,16,17]]],[10,1,1,17,18,[[305,1,1,17,18]]],[11,2,2,18,20,[[337,2,2,18,20]]],[13,1,1,20,21,[[382,1,1,20,21]]],[15,3,3,21,24,[[415,3,3,21,24]]],[23,9,8,24,32,[[784,2,2,24,26],[785,7,6,26,32]]],[27,1,1,32,33,[[866,1,1,32,33]]]],[922,6110,6828,6840,6863,7055,7057,7103,7107,7110,7357,7358,7359,7363,7364,7368,7435,9271,10245,10247,11515,12334,12342,12346,19951,19956,19958,19960,19963,19967,19971,19973,22153]]],["Mizpah",[18,17,[[0,1,1,0,1,[[30,1,1,0,1]]],[10,1,1,1,2,[[305,1,1,1,2]]],[11,2,2,2,4,[[337,2,2,2,4]]],[13,1,1,4,5,[[382,1,1,4,5]]],[15,3,3,5,8,[[415,3,3,5,8]]],[23,9,8,8,16,[[784,2,2,8,10],[785,7,6,10,16]]],[27,1,1,16,17,[[866,1,1,16,17]]]],[922,9271,10245,10247,11515,12334,12342,12346,19951,19956,19958,19960,19963,19967,19971,19973,22153]]],["Mizpeh",[17,16,[[5,1,1,0,1,[[197,1,1,0,1]]],[6,8,8,1,9,[[220,1,1,1,2],[221,2,2,2,4],[230,2,2,4,6],[231,3,3,6,9]]],[8,8,7,9,16,[[242,7,6,9,15],[245,1,1,15,16]]]],[6110,6828,6840,6863,7055,7057,7103,7107,7110,7357,7358,7359,7363,7364,7368,7435]]]]},{"k":"H4710","v":[["things",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22516]]]]},{"k":"H4711","v":[["out",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18933]]]]},{"k":"H4712","v":[["*",[3,3,[[18,2,2,0,2,[[593,1,1,0,1],[595,1,1,1,2]]],[24,1,1,2,3,[[797,1,1,2,3]]]],[15851,15874,20313]]],["distress",[1,1,[[18,1,1,0,1,[[595,1,1,0,1]]]],[15874]]],["pains",[1,1,[[18,1,1,0,1,[[593,1,1,0,1]]]],[15851]]],["straits",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20313]]]]},{"k":"H4713","v":[["*",[30,25,[[0,11,10,0,10,[[11,2,2,0,2],[15,2,2,2,4],[20,1,1,4,5],[24,1,1,5,6],[38,3,3,6,9],[42,2,1,9,10]]],[1,5,5,10,15,[[50,1,1,10,11],[51,4,4,11,15]]],[2,1,1,15,16,[[113,1,1,15,16]]],[4,2,2,16,18,[[175,1,1,16,17],[178,1,1,17,18]]],[5,1,1,18,19,[[210,1,1,18,19]]],[8,2,2,19,21,[[265,2,2,19,21]]],[9,3,1,21,22,[[289,3,1,21,22]]],[12,4,2,22,24,[[339,1,1,22,23],[348,3,1,23,24]]],[14,1,1,24,25,[[411,1,1,24,25]]]],[310,312,382,384,522,670,1150,1151,1154,1322,1551,1565,1566,1568,1573,3456,5507,5572,6483,7989,7991,8674,10340,10696,12238]]],["+",[8,6,[[0,1,1,0,1,[[38,1,1,0,1]]],[1,2,2,1,3,[[51,2,2,1,3]]],[8,1,1,3,4,[[265,1,1,3,4]]],[9,2,1,4,5,[[289,2,1,4,5]]],[12,2,1,5,6,[[348,2,1,5,6]]]],[1150,1565,1573,7989,8674,10696]]],["Egypt",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7991]]],["Egyptian",[12,12,[[0,5,5,0,5,[[15,2,2,0,2],[20,1,1,2,3],[24,1,1,3,4],[38,1,1,4,5]]],[1,3,3,5,8,[[50,1,1,5,6],[51,2,2,6,8]]],[2,1,1,8,9,[[113,1,1,8,9]]],[4,1,1,9,10,[[175,1,1,9,10]]],[9,1,1,10,11,[[289,1,1,10,11]]],[12,1,1,11,12,[[339,1,1,11,12]]]],[382,384,522,670,1151,1551,1566,1568,3456,5507,8674,10340]]],["Egyptian's",[2,2,[[0,1,1,0,1,[[38,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[1154,10696]]],["Egyptians",[7,6,[[0,4,3,0,3,[[11,2,2,0,2],[42,2,1,2,3]]],[4,1,1,3,4,[[178,1,1,3,4]]],[5,1,1,4,5,[[210,1,1,4,5]]],[14,1,1,5,6,[[411,1,1,5,6]]]],[310,312,1322,5572,6483,12238]]]]},{"k":"H4714","v":[["*",[681,602,[[0,88,80,0,80,[[9,2,2,0,2],[11,3,3,2,5],[12,2,2,5,7],[14,1,1,7,8],[20,1,1,8,9],[24,1,1,9,10],[25,1,1,10,11],[36,3,3,11,14],[38,1,1,14,15],[39,3,2,15,17],[40,21,18,17,35],[41,3,3,35,38],[42,3,3,38,41],[44,11,11,41,52],[45,10,9,52,61],[46,14,12,61,73],[47,2,1,73,74],[49,6,6,74,80]]],[1,175,148,80,228,[[50,7,7,80,87],[51,1,1,87,88],[52,13,13,88,101],[53,4,4,101,105],[54,2,2,105,107],[55,11,9,107,116],[56,13,9,116,125],[57,10,8,125,133],[58,11,9,133,142],[59,12,10,142,152],[60,8,7,152,159],[61,22,16,159,175],[62,8,8,175,183],[63,26,19,183,202],[64,1,1,202,203],[65,4,4,203,207],[66,1,1,207,208],[67,5,4,208,212],[68,2,2,212,214],[69,1,1,214,215],[71,1,1,215,216],[72,2,2,216,218],[78,1,1,218,219],[81,7,7,219,226],[82,1,1,226,227],[83,1,1,227,228]]],[2,11,11,228,239,[[100,1,1,228,229],[107,1,1,229,230],[108,2,2,230,232],[111,1,1,232,233],[112,1,1,233,234],[114,3,3,234,237],[115,2,2,237,239]]],[3,33,31,239,270,[[117,1,1,239,240],[119,1,1,240,241],[124,1,1,241,242],[125,1,1,242,243],[127,3,3,243,246],[129,1,1,246,247],[130,6,6,247,253],[131,1,1,253,254],[136,5,3,254,257],[137,1,1,257,258],[138,2,2,258,260],[139,1,1,260,261],[140,1,1,261,262],[142,2,2,262,264],[148,1,1,264,265],[149,4,4,265,269],[150,1,1,269,270]]],[4,50,47,270,317,[[153,2,2,270,272],[156,5,5,272,277],[157,2,2,277,279],[158,4,3,279,282],[159,3,3,282,285],[160,1,1,285,286],[161,3,3,286,289],[162,2,2,289,291],[163,4,3,291,294],[165,2,2,294,296],[167,1,1,296,297],[168,5,4,297,301],[169,1,1,301,302],[172,1,1,302,303],[175,1,1,303,304],[176,3,3,304,307],[177,1,1,307,308],[178,2,2,308,310],[180,3,3,310,313],[181,3,3,313,316],[186,1,1,316,317]]],[5,18,16,317,333,[[188,1,1,317,318],[191,5,4,318,322],[195,1,1,322,323],[199,1,1,323,324],[201,2,2,324,326],[210,8,7,326,333]]],[6,9,9,333,342,[[212,2,2,333,335],[216,3,3,335,338],[220,1,1,338,339],[221,2,2,339,341],[229,1,1,341,342]]],[8,13,11,342,353,[[237,1,1,342,343],[239,1,1,343,344],[241,1,1,344,345],[243,1,1,345,346],[245,2,1,346,347],[247,3,2,347,349],[250,3,3,349,352],[262,1,1,352,353]]],[9,2,2,353,355,[[273,2,2,353,355]]],[10,25,21,355,376,[[293,1,1,355,356],[294,2,2,356,358],[296,1,1,358,359],[298,6,6,359,365],[299,2,2,365,367],[300,2,2,367,369],[301,7,4,369,373],[302,3,2,373,375],[304,1,1,375,376]]],[11,15,11,376,387,[[319,1,1,376,377],[329,4,3,377,380],[330,3,2,380,382],[333,1,1,382,383],[335,2,2,383,385],[336,3,1,385,386],[337,1,1,386,387]]],[12,4,4,387,391,[[338,2,2,387,389],[350,1,1,389,390],[354,1,1,390,391]]],[13,19,17,391,408,[[367,2,2,391,393],[371,1,1,393,394],[372,1,1,394,395],[373,2,2,395,397],[375,2,2,397,399],[376,2,1,399,400],[378,3,3,400,403],[386,1,1,403,404],[392,1,1,404,405],[401,1,1,405,406],[402,3,2,406,408]]],[15,2,2,408,410,[[421,2,2,408,410]]],[18,15,15,410,425,[[545,1,1,410,411],[555,3,3,411,414],[557,1,1,414,415],[558,2,2,415,417],[582,2,2,417,419],[583,2,2,419,421],[591,1,1,421,422],[612,2,2,422,424],[613,1,1,424,425]]],[19,1,1,425,426,[[634,1,1,425,426]]],[22,51,40,426,466,[[685,1,1,426,427],[688,2,2,427,429],[689,3,3,429,432],[697,26,18,432,450],[698,4,3,450,453],[701,1,1,453,454],[705,2,2,454,456],[708,4,3,456,459],[709,2,2,459,461],[714,3,2,461,463],[721,1,1,463,464],[723,1,1,464,465],[730,1,1,465,466]]],[23,62,54,466,520,[[746,3,3,466,469],[751,2,2,469,471],[753,1,1,471,472],[755,2,2,472,474],[760,1,1,474,475],[767,1,1,475,476],[768,1,1,476,477],[769,1,1,477,478],[770,4,3,478,481],[775,1,1,481,482],[776,2,2,482,484],[778,1,1,484,485],[781,2,2,485,487],[785,1,1,487,488],[786,7,6,488,494],[787,7,5,494,499],[788,14,11,499,510],[790,11,10,510,520]]],[24,1,1,520,521,[[801,1,1,520,521]]],[25,54,48,521,569,[[817,1,1,521,522],[818,1,1,522,523],[820,1,1,523,524],[821,8,7,524,531],[824,6,5,531,536],[828,1,1,536,537],[830,12,10,537,547],[831,18,16,547,563],[832,1,1,563,564],[833,5,5,564,569]]],[26,4,4,569,573,[[858,1,1,569,570],[860,3,3,570,573]]],[27,13,13,573,586,[[863,1,1,573,574],[868,2,2,574,576],[869,1,1,576,577],[870,2,2,577,579],[872,3,3,579,582],[873,3,3,582,585],[874,1,1,585,586]]],[28,1,1,586,587,[[878,1,1,586,587]]],[29,7,7,587,594,[[880,1,1,587,588],[881,2,2,588,590],[882,1,1,590,591],[886,1,1,591,592],[887,2,2,592,594]]],[32,2,2,594,596,[[898,1,1,594,595],[899,1,1,595,596]]],[33,1,1,596,597,[[902,1,1,596,597]]],[36,1,1,597,598,[[910,1,1,597,598]]],[37,4,4,598,602,[[920,2,2,598,600],[924,2,2,600,602]]]],[240,247,308,309,312,319,328,378,534,676,694,1108,1111,1119,1150,1173,1177,1203,1214,1224,1225,1228,1229,1231,1236,1238,1239,1240,1241,1243,1248,1249,1250,1251,1252,1253,1254,1255,1292,1305,1322,1360,1362,1366,1367,1371,1376,1377,1378,1381,1383,1384,1389,1390,1392,1393,1394,1406,1412,1413,1420,1426,1431,1433,1434,1435,1440,1441,1446,1447,1448,1449,1450,1456,1509,1513,1517,1520,1528,1532,1533,1537,1540,1545,1547,1549,1550,1577,1586,1587,1588,1589,1590,1591,1595,1596,1597,1598,1599,1600,1601,1619,1620,1621,1622,1636,1644,1660,1661,1662,1666,1668,1681,1682,1683,1684,1688,1689,1690,1696,1703,1704,1706,1707,1709,1715,1716,1717,1726,1727,1731,1734,1736,1746,1748,1751,1753,1760,1764,1765,1766,1767,1779,1783,1784,1789,1790,1791,1792,1796,1798,1799,1807,1809,1810,1811,1812,1813,1815,1817,1828,1829,1833,1839,1843,1845,1846,1849,1851,1852,1855,1856,1857,1858,1867,1870,1875,1876,1881,1882,1883,1884,1885,1893,1894,1896,1897,1898,1899,1900,1901,1902,1906,1907,1909,1912,1913,1914,1915,1916,1919,1920,1946,1948,1950,1953,1979,1986,2000,2007,2008,2009,2027,2030,2053,2134,2153,2159,2382,2439,2442,2445,2446,2449,2450,2461,2474,2514,3042,3254,3315,3317,3402,3445,3507,3511,3524,3537,3569,3605,3705,3956,3966,4029,4042,4044,4097,4110,4111,4112,4121,4127,4130,4194,4316,4326,4327,4345,4380,4386,4438,4454,4493,4548,4729,4761,4763,4764,4798,4821,4919,4922,5024,5038,5041,5049,5050,5059,5068,5098,5107,5108,5119,5126,5129,5151,5164,5169,5183,5205,5208,5211,5212,5218,5277,5282,5334,5343,5345,5348,5354,5380,5428,5504,5534,5543,5547,5564,5571,5574,5638,5671,5679,5681,5695,5704,5850,5879,5938,5939,5940,5943,6046,6157,6206,6249,6480,6481,6482,6483,6490,6493,6508,6546,6557,6662,6663,6667,6822,6842,6845,7054,7267,7305,7337,7377,7436,7466,7468,7562,7566,7567,7938,8186,8203,8817,8865,8874,8897,8994,9001,9006,9036,9038,9050,9060,9067,9107,9108,9125,9126,9129,9148,9153,9179,9243,9713,9987,9990,10019,10045,10048,10134,10194,10199,10209,10248,10260,10263,10765,10884,11210,11211,11278,11287,11332,11346,11390,11392,11397,11439,11440,11446,11597,11740,11986,11996,11997,12520,12529,14931,15125,15156,15164,15206,15222,15227,15629,15644,15658,15672,15823,16183,16184,16206,16591,17800,17874,17876,17895,17899,17900,18005,18006,18007,18008,18016,18017,18018,18019,18020,18021,18022,18023,18024,18025,18026,18027,18028,18029,18032,18033,18034,18082,18163,18164,18219,18220,18224,18251,18253,18336,18339,18508,18575,18700,18971,18983,19001,19141,19144,19201,19230,19233,19350,19491,19532,19553,19593,19594,19595,19723,19751,19752,19814,19879,19881,19974,19989,19990,19991,19992,19993,19994,19999,20004,20008,20009,20010,20011,20018,20022,20023,20024,20025,20034,20036,20037,20038,20040,20047,20053,20056,20058,20059,20062,20064,20065,20069,20070,20448,20788,20840,20885,20900,20901,20902,20903,20904,20905,20931,21010,21015,21026,21028,21034,21128,21185,21186,21189,21192,21193,21195,21196,21197,21202,21203,21208,21210,21212,21213,21214,21215,21217,21219,21220,21222,21223,21225,21226,21227,21229,21230,21232,21250,21260,21263,21264,21266,22003,22044,22078,22079,22120,22189,22194,22207,22211,22214,22241,22245,22251,22253,22261,22265,22270,22362,22389,22396,22404,22420,22489,22500,22502,22652,22679,22721,22860,23026,23027,23086,23087]]],["+",[96,94,[[0,5,5,0,5,[[12,1,1,0,1],[41,1,1,1,2],[42,1,1,2,3],[44,1,1,3,4],[46,1,1,4,5]]],[1,19,18,5,23,[[52,3,3,5,8],[55,2,2,8,10],[58,1,1,10,11],[61,3,2,11,13],[62,5,5,13,18],[63,1,1,18,19],[66,1,1,19,20],[67,1,1,20,21],[72,1,1,21,22],[83,1,1,22,23]]],[3,10,10,23,33,[[127,1,1,23,24],[130,1,1,24,25],[136,2,2,25,27],[137,1,1,27,28],[138,2,2,28,30],[139,1,1,30,31],[140,1,1,31,32],[148,1,1,32,33]]],[4,13,13,33,46,[[156,4,4,33,37],[158,1,1,37,38],[161,2,2,38,40],[168,2,2,40,42],[175,1,1,42,43],[176,1,1,43,44],[177,1,1,44,45],[178,1,1,45,46]]],[5,7,6,46,52,[[188,1,1,46,47],[191,4,3,47,50],[210,2,2,50,52]]],[6,6,6,52,58,[[212,1,1,52,53],[216,2,2,53,55],[220,1,1,55,56],[221,2,2,56,58]]],[8,5,5,58,63,[[243,1,1,58,59],[245,1,1,59,60],[247,1,1,60,61],[250,2,2,61,63]]],[9,2,2,63,65,[[273,2,2,63,65]]],[10,5,5,65,70,[[298,3,3,65,68],[300,2,2,68,70]]],[11,1,1,70,71,[[333,1,1,70,71]]],[12,1,1,71,72,[[354,1,1,71,72]]],[13,6,6,72,78,[[367,2,2,72,74],[371,1,1,74,75],[375,1,1,75,76],[376,1,1,76,77],[378,1,1,77,78]]],[15,1,1,78,79,[[421,1,1,78,79]]],[18,2,2,79,81,[[557,1,1,79,80],[591,1,1,80,81]]],[22,2,2,81,83,[[689,1,1,81,82],[697,1,1,82,83]]],[23,3,3,83,86,[[746,1,1,83,84],[770,1,1,84,85],[781,1,1,85,86]]],[25,4,4,86,90,[[817,1,1,86,87],[824,2,2,87,89],[828,1,1,89,90]]],[27,3,3,90,93,[[872,2,2,90,92],[873,1,1,92,93]]],[36,1,1,93,94,[[910,1,1,93,94]]]],[319,1255,1292,1383,1450,1589,1590,1591,1682,1684,1767,1851,1855,1870,1875,1876,1881,1883,1900,1986,2000,2159,2514,4044,4127,4316,4327,4345,4380,4386,4438,4454,4729,5024,5041,5049,5050,5107,5169,5183,5343,5348,5504,5534,5564,5574,5879,5938,5939,5940,6482,6508,6546,6662,6667,6822,6842,6845,7377,7436,7468,7562,7566,8186,8203,9001,9036,9038,9107,9108,10134,10884,11210,11211,11278,11392,11397,11440,12529,15206,15823,17895,18027,19001,19595,19879,20788,21015,21028,21128,22241,22251,22265,22860]]],["Egypt",[494,451,[[0,72,68,0,68,[[11,3,3,0,3],[12,1,1,3,4],[14,1,1,4,5],[20,1,1,5,6],[24,1,1,6,7],[25,1,1,7,8],[36,3,3,8,11],[38,1,1,11,12],[39,3,2,12,14],[40,19,18,14,32],[41,2,2,32,34],[42,1,1,34,35],[44,9,9,35,44],[45,9,8,44,52],[46,11,11,52,63],[47,2,1,63,64],[49,4,4,64,68]]],[1,104,94,68,162,[[50,6,6,68,74],[51,1,1,74,75],[52,6,6,75,81],[53,4,4,81,85],[54,2,2,85,87],[55,6,5,87,92],[56,9,7,92,99],[57,7,6,99,105],[58,9,7,105,112],[59,11,9,112,121],[60,6,6,121,127],[61,13,11,127,138],[62,3,3,138,141],[63,5,5,141,146],[65,4,4,146,150],[68,1,1,150,151],[69,1,1,151,152],[71,1,1,152,153],[72,1,1,153,154],[78,1,1,154,155],[81,6,6,155,161],[82,1,1,161,162]]],[2,11,11,162,173,[[100,1,1,162,163],[107,1,1,163,164],[108,2,2,164,166],[111,1,1,166,167],[112,1,1,167,168],[114,3,3,168,171],[115,2,2,171,173]]],[3,19,18,173,191,[[117,1,1,173,174],[119,1,1,174,175],[124,1,1,175,176],[125,1,1,176,177],[127,2,2,177,179],[129,1,1,179,180],[130,4,4,180,184],[131,1,1,184,185],[136,2,1,185,186],[142,2,2,186,188],[149,2,2,188,190],[150,1,1,190,191]]],[4,37,35,191,226,[[153,2,2,191,193],[156,1,1,193,194],[157,2,2,194,196],[158,3,3,196,199],[159,3,3,199,202],[160,1,1,202,203],[161,1,1,203,204],[162,2,2,204,206],[163,4,3,206,209],[165,2,2,209,211],[167,1,1,211,212],[168,3,2,212,214],[169,1,1,214,215],[172,1,1,215,216],[176,2,2,216,218],[178,1,1,218,219],[180,3,3,219,222],[181,3,3,222,225],[186,1,1,225,226]]],[5,10,10,226,236,[[191,1,1,226,227],[195,1,1,227,228],[199,1,1,228,229],[201,2,2,229,231],[210,5,5,231,236]]],[6,2,2,236,238,[[212,1,1,236,237],[229,1,1,237,238]]],[8,5,5,238,243,[[237,1,1,238,239],[247,2,2,239,241],[250,1,1,241,242],[262,1,1,242,243]]],[10,20,16,243,259,[[293,1,1,243,244],[294,2,2,244,246],[296,1,1,246,247],[298,3,3,247,250],[299,2,2,250,252],[301,7,4,252,256],[302,3,2,256,258],[304,1,1,258,259]]],[11,13,9,259,268,[[329,4,3,259,262],[330,3,2,262,264],[335,2,2,264,266],[336,3,1,266,267],[337,1,1,267,268]]],[12,1,1,268,269,[[350,1,1,268,269]]],[13,13,12,269,281,[[372,1,1,269,270],[373,2,2,270,272],[375,1,1,272,273],[376,1,1,273,274],[378,2,2,274,276],[386,1,1,276,277],[392,1,1,277,278],[401,1,1,278,279],[402,3,2,279,281]]],[15,1,1,281,282,[[421,1,1,281,282]]],[18,13,13,282,295,[[545,1,1,282,283],[555,3,3,283,286],[558,2,2,286,288],[582,2,2,288,290],[583,2,2,290,292],[612,2,2,292,294],[613,1,1,294,295]]],[19,1,1,295,296,[[634,1,1,295,296]]],[22,39,34,296,330,[[685,1,1,296,297],[688,2,2,297,299],[689,1,1,299,300],[697,19,16,300,316],[698,3,3,316,319],[701,1,1,319,320],[705,2,2,320,322],[708,3,2,322,324],[709,1,1,324,325],[714,3,2,325,327],[721,1,1,327,328],[723,1,1,328,329],[730,1,1,329,330]]],[23,58,51,330,381,[[746,2,2,330,332],[751,2,2,332,334],[753,1,1,334,335],[755,2,2,335,337],[760,1,1,337,338],[767,1,1,338,339],[768,1,1,339,340],[769,1,1,340,341],[770,3,2,341,343],[775,1,1,343,344],[776,2,2,344,346],[778,1,1,346,347],[781,1,1,347,348],[785,1,1,348,349],[786,7,6,349,355],[787,6,5,355,360],[788,14,11,360,371],[790,11,10,371,381]]],[25,46,41,381,422,[[818,1,1,381,382],[820,1,1,382,383],[821,8,7,383,390],[824,4,3,390,393],[830,10,9,393,402],[831,16,14,402,416],[832,1,1,416,417],[833,5,5,417,422]]],[26,4,4,422,426,[[858,1,1,422,423],[860,3,3,423,426]]],[27,10,10,426,436,[[863,1,1,426,427],[868,2,2,427,429],[869,1,1,429,430],[870,2,2,430,432],[872,1,1,432,433],[873,2,2,433,435],[874,1,1,435,436]]],[28,1,1,436,437,[[878,1,1,436,437]]],[29,7,7,437,444,[[880,1,1,437,438],[881,2,2,438,440],[882,1,1,440,441],[886,1,1,441,442],[887,2,2,442,444]]],[32,2,2,444,446,[[898,1,1,444,445],[899,1,1,445,446]]],[33,1,1,446,447,[[902,1,1,446,447]]],[37,4,4,447,451,[[920,2,2,447,449],[924,2,2,449,451]]]],[308,309,312,328,378,534,676,694,1108,1111,1119,1150,1173,1177,1203,1214,1224,1225,1228,1229,1231,1236,1238,1239,1240,1241,1243,1248,1249,1250,1251,1252,1253,1254,1305,1362,1366,1367,1371,1376,1377,1378,1381,1384,1389,1390,1392,1393,1394,1406,1412,1413,1426,1431,1433,1434,1435,1440,1441,1446,1447,1448,1449,1456,1513,1520,1528,1532,1533,1537,1540,1547,1549,1550,1577,1586,1595,1596,1597,1598,1599,1619,1620,1621,1622,1636,1644,1666,1668,1681,1682,1683,1688,1689,1690,1696,1704,1706,1707,1715,1716,1717,1726,1727,1734,1746,1748,1751,1760,1764,1765,1766,1779,1784,1789,1790,1791,1792,1796,1798,1799,1807,1809,1810,1811,1812,1815,1817,1828,1829,1833,1843,1845,1846,1856,1857,1858,1867,1882,1884,1885,1894,1896,1897,1900,1901,1948,1950,1953,1979,2027,2053,2134,2153,2382,2439,2442,2445,2446,2449,2461,2474,3042,3254,3315,3317,3402,3445,3507,3511,3524,3537,3569,3605,3705,3956,3966,4029,4042,4097,4110,4111,4112,4130,4194,4326,4493,4548,4761,4798,4821,4919,4922,5038,5059,5068,5098,5107,5108,5119,5126,5129,5151,5164,5205,5208,5211,5212,5218,5277,5282,5334,5345,5354,5380,5428,5543,5547,5571,5638,5671,5679,5681,5695,5704,5850,5943,6046,6157,6206,6249,6480,6481,6483,6490,6493,6557,7054,7267,7466,7468,7567,7938,8817,8865,8874,8897,8994,9006,9050,9060,9067,9125,9126,9129,9148,9153,9179,9243,9987,9990,10019,10045,10048,10194,10199,10209,10248,10765,11287,11332,11346,11390,11397,11439,11446,11597,11740,11986,11996,11997,12520,14931,15125,15156,15164,15222,15227,15629,15644,15658,15672,16183,16184,16206,16591,17800,17874,17876,17900,18005,18007,18016,18017,18018,18019,18020,18021,18022,18023,18024,18025,18026,18027,18028,18029,18032,18033,18034,18082,18163,18164,18219,18220,18251,18336,18339,18508,18575,18700,18971,18983,19141,19144,19201,19230,19233,19350,19491,19532,19553,19593,19594,19723,19751,19752,19814,19881,19974,19989,19990,19991,19992,19993,19994,19999,20004,20008,20009,20010,20011,20018,20022,20023,20024,20025,20034,20036,20037,20038,20040,20047,20053,20056,20058,20059,20062,20064,20065,20069,20070,20840,20885,20900,20901,20902,20903,20904,20905,20931,21010,21026,21034,21185,21186,21189,21192,21193,21195,21197,21202,21203,21208,21210,21212,21213,21214,21215,21217,21219,21220,21222,21223,21225,21226,21229,21232,21250,21260,21263,21264,21266,22003,22044,22078,22079,22120,22189,22194,22207,22211,22214,22245,22253,22261,22270,22362,22389,22396,22404,22420,22489,22500,22502,22652,22679,22721,23026,23027,23086,23087]]],["Egyptian",[2,2,[[22,2,2,0,2,[[689,1,1,0,1],[697,1,1,1,2]]]],[17899,18027]]],["Egyptians",[85,76,[[0,9,9,0,9,[[40,2,2,0,2],[42,1,1,2,3],[44,1,1,3,4],[45,1,1,4,5],[46,2,2,5,7],[49,2,2,7,9]]],[1,52,44,9,53,[[50,1,1,9,10],[52,4,4,10,14],[55,3,3,14,17],[56,4,4,17,21],[57,3,2,21,23],[58,1,1,23,24],[59,1,1,24,25],[60,2,2,25,27],[61,6,5,27,32],[63,20,15,32,47],[64,1,1,47,48],[67,4,3,48,51],[68,1,1,51,52],[81,1,1,52,53]]],[3,4,4,53,57,[[130,1,1,53,54],[136,1,1,54,55],[149,2,2,55,57]]],[5,1,1,57,58,[[210,1,1,57,58]]],[6,1,1,58,59,[[216,1,1,58,59]]],[8,3,3,59,62,[[239,1,1,59,60],[241,1,1,60,61],[245,1,1,61,62]]],[11,1,1,62,63,[[319,1,1,62,63]]],[22,8,7,63,70,[[697,5,4,63,67],[698,1,1,67,68],[708,1,1,68,69],[709,1,1,69,70]]],[23,1,1,70,71,[[787,1,1,70,71]]],[24,1,1,71,72,[[801,1,1,71,72]]],[25,4,4,72,76,[[830,2,2,72,74],[831,2,2,74,76]]]],[1250,1251,1322,1360,1420,1435,1440,1509,1517,1545,1587,1588,1600,1601,1660,1661,1662,1690,1703,1706,1709,1731,1736,1753,1783,1809,1813,1839,1843,1846,1849,1852,1893,1898,1899,1901,1902,1906,1907,1909,1912,1913,1914,1915,1916,1919,1920,1946,2007,2008,2009,2030,2450,4121,4326,4763,4764,6482,6663,7305,7337,7436,9713,18006,18008,18025,18027,18033,18224,18253,20010,20448,21195,21196,21227,21230]]],["Mizraim",[4,4,[[0,2,2,0,2,[[9,2,2,0,2]]],[12,2,2,2,4,[[338,2,2,2,4]]]],[240,247,10260,10263]]]]},{"k":"H4715","v":[["pot",[2,2,[[19,2,2,0,2,[[644,1,1,0,1],[654,1,1,1,2]]]],[16876,17190]]]]},{"k":"H4716","v":[["*",[2,2,[[22,2,2,0,2,[[681,1,1,0,1],[683,1,1,1,2]]]],[17731,17763]]],["rottenness",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17763]]],["stink",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17731]]]]},{"k":"H4717","v":[["hammers",[2,2,[[22,1,1,0,1,[[722,1,1,0,1]]],[23,1,1,1,2,[[754,1,1,1,2]]]],[18545,19205]]]]},{"k":"H4718","v":[["*",[3,3,[[6,1,1,0,1,[[214,1,1,0,1]]],[10,1,1,1,2,[[296,1,1,1,2]]],[22,1,1,2,3,[[729,1,1,2,3]]]],[6620,8903,18674]]],["hammer",[2,2,[[6,1,1,0,1,[[214,1,1,0,1]]],[10,1,1,1,2,[[296,1,1,1,2]]]],[6620,8903]]],["hole",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18674]]]]},{"k":"H4719","v":[["*",[9,8,[[5,9,8,0,8,[[196,7,6,0,6],[198,1,1,6,7],[201,1,1,7,8]]]],[6074,6080,6081,6085,6092,6093,6146,6243]]],["+",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6093]]],["Makkedah",[8,7,[[5,8,7,0,7,[[196,6,5,0,5],[198,1,1,5,6],[201,1,1,6,7]]]],[6074,6080,6081,6085,6092,6146,6243]]]]},{"k":"H4720","v":[["*",[75,72,[[1,2,2,0,2,[[64,1,1,0,1],[74,1,1,1,2]]],[2,9,8,2,10,[[101,1,1,2,3],[105,1,1,3,4],[108,1,1,4,5],[109,1,1,5,6],[110,3,2,6,8],[115,2,2,8,10]]],[3,5,5,10,15,[[119,1,1,10,11],[126,1,1,11,12],[134,2,2,12,14],[135,1,1,14,15]]],[5,1,1,15,16,[[210,1,1,15,16]]],[12,2,2,16,18,[[359,1,1,16,17],[365,1,1,17,18]]],[13,5,5,18,23,[[386,1,1,18,19],[392,1,1,19,20],[395,1,1,20,21],[396,1,1,21,22],[402,1,1,22,23]]],[15,1,1,23,24,[[422,1,1,23,24]]],[18,5,5,24,29,[[545,1,1,24,25],[550,1,1,25,26],[551,1,1,26,27],[555,1,1,27,28],[573,1,1,28,29]]],[22,4,4,29,33,[[686,1,1,29,30],[694,1,1,30,31],[738,1,1,31,32],[741,1,1,32,33]]],[23,2,2,33,35,[[761,1,1,33,34],[795,1,1,34,35]]],[24,3,3,35,38,[[797,1,1,35,36],[798,2,2,36,38]]],[25,31,29,38,67,[[806,1,1,38,39],[808,1,1,39,40],[809,1,1,40,41],[810,1,1,41,42],[812,1,1,42,43],[822,1,1,43,44],[824,2,2,44,46],[825,1,1,46,47],[826,1,1,47,48],[829,1,1,48,49],[838,2,2,49,51],[844,1,1,51,52],[845,8,8,52,60],[846,5,3,60,63],[848,1,1,63,64],[849,3,3,64,67]]],[26,3,3,67,70,[[857,1,1,67,68],[858,1,1,68,69],[860,1,1,69,70]]],[29,2,2,70,72,[[885,2,2,70,72]]]],[1937,2203,3048,3234,3311,3321,3357,3368,3526,3555,3730,4009,4258,4286,4309,6502,10983,11153,11595,11750,11812,11835,12010,12588,14935,15037,15055,15182,15471,17821,17981,18834,18884,19369,20263,20320,20339,20352,20557,20601,20610,20628,20671,20946,21045,21046,21077,21086,21175,21423,21425,21593,21600,21604,21606,21607,21608,21610,21614,21615,21633,21634,21648,21691,21710,21712,21723,21972,22005,22067,22473,22477]]],["+",[3,3,[[2,1,1,0,1,[[115,1,1,0,1]]],[18,1,1,1,2,[[545,1,1,1,2]]],[25,1,1,2,3,[[810,1,1,2,3]]]],[3555,14935,20628]]],["Sanctuary",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1937]]],["chapel",[1,1,[[29,1,1,0,1,[[885,1,1,0,1]]]],[22477]]],["part",[1,1,[[3,1,1,0,1,[[134,1,1,0,1]]]],[4286]]],["place",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21634]]],["places",[2,2,[[25,2,2,0,2,[[808,1,1,0,1],[822,1,1,1,2]]]],[20601,20946]]],["sanctuaries",[4,4,[[2,1,1,0,1,[[110,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]],[25,1,1,2,3,[[829,1,1,2,3]]],[29,1,1,3,4,[[885,1,1,3,4]]]],[3368,20263,21175,22473]]],["sanctuary",[62,60,[[1,1,1,0,1,[[74,1,1,0,1]]],[2,7,6,1,7,[[101,1,1,1,2],[105,1,1,2,3],[108,1,1,3,4],[109,1,1,4,5],[110,2,1,5,6],[115,1,1,6,7]]],[3,4,4,7,11,[[119,1,1,7,8],[126,1,1,8,9],[134,1,1,9,10],[135,1,1,10,11]]],[5,1,1,11,12,[[210,1,1,11,12]]],[12,2,2,12,14,[[359,1,1,12,13],[365,1,1,13,14]]],[13,5,5,14,19,[[386,1,1,14,15],[392,1,1,15,16],[395,1,1,16,17],[396,1,1,17,18],[402,1,1,18,19]]],[15,1,1,19,20,[[422,1,1,19,20]]],[18,4,4,20,24,[[550,1,1,20,21],[551,1,1,21,22],[555,1,1,22,23],[573,1,1,23,24]]],[22,4,4,24,28,[[686,1,1,24,25],[694,1,1,25,26],[738,1,1,26,27],[741,1,1,27,28]]],[23,1,1,28,29,[[761,1,1,28,29]]],[24,3,3,29,32,[[797,1,1,29,30],[798,2,2,30,32]]],[25,26,25,32,57,[[806,1,1,32,33],[809,1,1,33,34],[812,1,1,34,35],[824,2,2,35,37],[825,1,1,37,38],[826,1,1,38,39],[838,2,2,39,41],[844,1,1,41,42],[845,8,8,42,50],[846,4,3,50,53],[848,1,1,53,54],[849,3,3,54,57]]],[26,3,3,57,60,[[857,1,1,57,58],[858,1,1,58,59],[860,1,1,59,60]]]],[2203,3048,3234,3311,3321,3357,3526,3730,4009,4258,4309,6502,10983,11153,11595,11750,11812,11835,12010,12588,15037,15055,15182,15471,17821,17981,18834,18884,19369,20320,20339,20352,20557,20610,20671,21045,21046,21077,21086,21423,21425,21593,21600,21604,21606,21607,21608,21610,21614,21615,21633,21634,21648,21691,21710,21712,21723,21972,22005,22067]]]]},{"k":"H4721","v":[["congregations",[2,2,[[18,2,2,0,2,[[503,1,1,0,1],[545,1,1,1,2]]]],[14285,14926]]]]},{"k":"H4722","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4785,4786]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4786]]],["Makheloth",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4785]]]]},{"k":"H4723","v":[["*",[12,10,[[0,1,1,0,1,[[0,1,1,0,1]]],[1,1,1,1,2,[[56,1,1,1,2]]],[2,1,1,2,3,[[100,1,1,2,3]]],[10,2,1,3,4,[[300,2,1,3,4]]],[12,1,1,4,5,[[366,1,1,4,5]]],[13,2,1,5,6,[[367,2,1,5,6]]],[14,1,1,6,7,[[412,1,1,6,7]]],[23,3,3,7,10,[[758,1,1,7,8],[761,1,1,8,9],[794,1,1,9,10]]]],[9,1704,3033,9107,11179,11210,12254,19301,19370,20173]]],["+",[2,1,[[10,2,1,0,1,[[300,2,1,0,1]]]],[9107]]],["abiding",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11179]]],["hope",[4,4,[[14,1,1,0,1,[[412,1,1,0,1]]],[23,3,3,1,4,[[758,1,1,1,2],[761,1,1,2,3],[794,1,1,3,4]]]],[12254,19301,19370,20173]]],["plenty",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3033]]],["pools",[1,1,[[1,1,1,0,1,[[56,1,1,0,1]]]],[1704]]],["together",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[9]]],["yarn",[2,1,[[13,2,1,0,1,[[367,2,1,0,1]]]],[11210]]]]},{"k":"H4724","v":[["ditch",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18063]]]]},{"k":"H4725","v":[["*",[401,379,[[0,47,44,0,44,[[0,1,1,0,1],[11,1,1,1,2],[12,3,3,2,5],[17,3,3,5,8],[18,4,4,8,12],[19,2,2,12,14],[20,1,1,14,15],[21,4,4,15,19],[23,3,3,19,22],[25,2,1,22,23],[27,6,4,23,27],[28,3,3,27,30],[29,1,1,30,31],[30,1,1,31,32],[31,2,2,32,34],[32,1,1,34,35],[34,4,4,35,39],[35,1,1,39,40],[37,2,2,40,42],[38,1,1,42,43],[39,1,1,43,44]]],[1,10,10,44,54,[[52,2,2,44,46],[65,1,1,46,47],[66,1,1,47,48],[67,1,1,48,49],[69,1,1,49,50],[70,1,1,50,51],[72,1,1,51,52],[78,1,1,52,53],[82,1,1,53,54]]],[2,24,23,54,77,[[90,1,1,54,55],[93,4,4,55,59],[95,5,5,59,64],[96,2,2,64,66],[99,3,3,66,69],[102,1,1,69,70],[103,6,5,70,75],[105,1,1,75,76],[113,1,1,76,77]]],[3,19,17,77,94,[[125,1,1,77,78],[126,1,1,78,79],[127,2,2,79,81],[129,1,1,81,82],[130,1,1,82,83],[134,1,1,83,84],[135,1,1,84,85],[136,2,1,85,86],[137,1,1,86,87],[138,1,1,87,88],[139,2,2,88,90],[140,2,2,90,92],[148,3,2,92,94]]],[4,33,33,94,127,[[153,2,2,94,96],[161,1,1,96,97],[163,2,2,97,99],[164,9,9,99,108],[166,3,3,108,111],[167,1,1,111,112],[168,6,6,112,118],[169,2,2,118,120],[170,1,1,120,121],[173,1,1,121,122],[175,1,1,122,123],[178,2,2,123,125],[181,1,1,125,126],[183,1,1,126,127]]],[5,9,9,127,136,[[187,1,1,127,128],[189,1,1,128,129],[190,1,1,129,130],[191,2,2,130,132],[193,1,1,132,133],[194,1,1,133,134],[195,1,1,134,135],[206,1,1,135,136]]],[6,14,13,136,149,[[212,1,1,136,137],[217,1,1,137,138],[219,1,1,138,139],[221,1,1,139,140],[225,1,1,140,141],[228,2,2,141,143],[229,3,3,143,146],[230,4,3,146,149]]],[7,3,3,149,152,[[232,1,1,149,150],[234,1,1,150,151],[235,1,1,151,152]]],[8,24,23,152,175,[[237,1,1,152,153],[238,2,2,153,155],[240,2,2,155,157],[241,1,1,157,158],[242,1,1,158,159],[244,1,1,159,160],[247,1,1,160,161],[249,1,1,161,162],[255,4,4,162,166],[256,1,1,166,167],[258,2,2,167,169],[261,4,3,169,172],[262,1,1,172,173],[264,1,1,173,174],[265,1,1,174,175]]],[9,12,12,175,187,[[268,2,2,175,177],[271,1,1,177,178],[272,2,2,178,180],[273,1,1,180,181],[277,1,1,181,182],[281,2,2,182,184],[283,2,2,184,186],[285,1,1,186,187]]],[10,16,14,187,201,[[294,1,1,187,188],[295,1,1,188,189],[298,8,6,189,195],[300,1,1,195,196],[303,3,3,196,199],[310,1,1,199,200],[311,1,1,200,201]]],[11,13,13,201,214,[[317,1,1,201,202],[318,6,6,202,208],[330,1,1,208,209],[334,4,4,209,213],[335,1,1,213,214]]],[12,8,8,214,222,[[350,1,1,214,215],[351,1,1,215,216],[352,2,2,216,218],[353,1,1,218,219],[354,1,1,219,220],[358,2,2,220,222]]],[13,21,18,222,240,[[369,1,1,222,223],[371,2,2,223,225],[372,6,4,225,229],[373,2,2,229,231],[375,1,1,231,232],[386,1,1,232,233],[390,1,1,233,234],[391,2,1,234,235],[399,1,1,235,236],[400,4,4,236,240]]],[14,5,3,240,243,[[403,2,1,240,241],[410,2,1,241,242],[411,1,1,242,243]]],[15,6,6,243,249,[[413,1,1,243,244],[414,1,1,244,245],[416,3,3,245,248],[424,1,1,248,249]]],[16,3,3,249,252,[[429,2,2,249,251],[433,1,1,251,252]]],[17,21,21,252,273,[[437,1,1,252,253],[441,1,1,253,254],[442,1,1,254,255],[443,1,1,255,256],[444,1,1,256,257],[449,1,1,257,258],[451,1,1,258,259],[453,2,2,259,261],[455,1,1,261,262],[462,2,2,262,264],[463,5,5,264,269],[469,1,1,269,270],[472,1,1,270,271],[473,2,2,271,273]]],[18,8,8,273,281,[[501,1,1,273,274],[503,1,1,274,275],[514,1,1,275,276],[521,1,1,276,277],[580,2,2,277,279],[581,1,1,279,280],[609,1,1,280,281]]],[19,3,3,281,284,[[642,1,1,281,282],[652,1,1,282,283],[654,1,1,283,284]]],[20,9,8,284,292,[[659,2,2,284,286],[661,3,2,286,288],[664,1,1,288,289],[666,1,1,289,290],[668,1,1,290,291],[669,1,1,291,292]]],[22,17,16,292,308,[[683,1,1,292,293],[685,1,1,293,294],[691,1,1,294,295],[692,1,1,295,296],[696,1,1,296,297],[700,2,2,297,299],[704,1,1,299,300],[706,1,1,300,301],[711,1,1,301,302],[723,1,1,302,303],[724,1,1,303,304],[727,1,1,304,305],[732,1,1,305,306],[738,2,1,306,307],[744,1,1,307,308]]],[23,46,43,308,351,[[748,1,1,308,309],[751,7,7,309,316],[752,1,1,316,317],[757,1,1,317,318],[758,1,1,318,319],[760,3,3,319,322],[761,1,1,322,323],[763,8,7,323,330],[766,3,3,330,333],[768,2,2,333,335],[771,1,1,335,336],[772,4,3,336,339],[773,3,2,339,341],[776,1,1,341,342],[777,2,2,342,344],[784,2,2,344,346],[786,2,2,346,348],[788,1,1,348,349],[789,1,1,349,350],[795,1,1,350,351]]],[25,17,15,351,366,[[804,1,1,351,352],[807,1,1,352,353],[811,1,1,353,354],[813,2,1,354,355],[818,1,1,355,356],[822,1,1,356,357],[835,1,1,357,358],[839,1,1,358,359],[840,1,1,359,360],[842,1,1,360,361],[843,1,1,361,362],[844,2,1,362,363],[846,1,1,363,364],[847,2,2,364,366]]],[27,2,2,366,368,[[862,1,1,366,367],[866,1,1,367,368]]],[28,1,1,368,369,[[878,1,1,368,369]]],[29,2,2,369,371,[[882,1,1,369,370],[886,1,1,370,371]]],[32,1,1,371,372,[[893,1,1,371,372]]],[33,2,2,372,374,[[900,1,1,372,373],[902,1,1,373,374]]],[35,2,2,374,376,[[906,1,1,374,375],[907,1,1,375,376]]],[36,1,1,376,377,[[910,1,1,376,377]]],[37,1,1,377,378,[[924,1,1,377,378]]],[38,1,1,378,379,[[925,1,1,378,379]]]],[8,304,321,322,332,448,450,457,469,470,471,484,506,508,544,550,551,556,561,614,616,622,699,784,789,790,792,798,817,821,855,928,930,958,977,1018,1024,1025,1026,1080,1140,1141,1169,1175,1584,1587,1976,1990,2022,2075,2090,2164,2367,2494,2761,2807,2819,2824,2828,2860,2865,2874,2875,2876,2881,2885,2990,2991,2994,3071,3124,3139,3151,3152,3156,3225,3455,3982,4017,4027,4058,4099,4148,4288,4298,4316,4343,4401,4429,4443,4457,4471,4719,4735,4923,4925,5164,5213,5232,5242,5243,5245,5251,5253,5254,5258,5261,5266,5313,5314,5315,5339,5344,5348,5349,5353,5357,5358,5372,5374,5390,5466,5516,5568,5575,5686,5739,5854,5896,5928,5943,5949,6002,6021,6064,6376,6550,6701,6809,6848,6946,7003,7005,7037,7040,7052,7076,7087,7090,7134,7176,7200,7260,7278,7285,7322,7330,7333,7368,7413,7468,7554,7749,7755,7757,7767,7774,7832,7838,7910,7918,7930,7935,7971,8009,8065,8072,8152,8165,8174,8190,8275,8408,8410,8458,8461,8550,8872,8887,8991,8992,9006,9014,9015,9020,9098,9192,9200,9206,9432,9470,9658,9675,9676,9680,9682,9683,9684,10049,10161,10162,10164,10165,10179,10771,10785,10792,10794,10847,10872,10956,10959,11230,11275,11276,11302,11303,11308,11322,11336,11339,11382,11613,11688,11714,11927,11957,11958,11960,11961,12020,12218,12245,12305,12321,12371,12372,12379,12651,12765,12776,12834,12902,12995,13018,13047,13057,13199,13256,13280,13297,13335,13502,13504,13505,13510,13516,13524,13527,13709,13770,13805,13812,14244,14281,14460,14590,15565,15571,15579,16156,16810,17119,17177,17320,17322,17375,17379,17423,17468,17497,17516,17747,17805,17919,17930,18004,18075,18077,18151,18172,18300,18580,18593,18656,18725,18834,18923,19034,19122,19125,19126,19131,19133,19139,19151,19156,19273,19306,19338,19339,19345,19369,19410,19411,19413,19414,19418,19419,19420,19457,19465,19466,19529,19533,19618,19621,19622,19624,19645,19649,19768,19785,19787,19943,19953,19993,19997,20039,20045,20274,20514,20576,20644,20683,20841,20974,21325,21440,21459,21537,21565,21579,21634,21674,21675,22104,22167,22350,22416,22484,22582,22692,22729,22791,22816,22864,23078,23100]]],["+",[31,30,[[1,1,1,0,1,[[65,1,1,0,1]]],[5,2,2,1,3,[[189,1,1,1,2],[194,1,1,2,3]]],[6,2,1,3,4,[[230,2,1,3,4]]],[10,1,1,4,5,[[310,1,1,4,5]]],[13,1,1,5,6,[[372,1,1,5,6]]],[16,3,3,6,9,[[429,2,2,6,8],[433,1,1,8,9]]],[17,9,9,9,18,[[437,1,1,9,10],[441,1,1,10,11],[443,1,1,11,12],[444,1,1,12,13],[449,1,1,13,14],[453,1,1,14,15],[462,2,2,15,17],[472,1,1,17,18]]],[19,1,1,18,19,[[654,1,1,18,19]]],[20,1,1,19,20,[[666,1,1,19,20]]],[22,3,3,20,23,[[691,1,1,20,21],[704,1,1,21,22],[724,1,1,22,23]]],[23,2,2,23,25,[[748,1,1,23,24],[772,1,1,24,25]]],[25,3,3,25,28,[[804,1,1,25,26],[813,1,1,26,27],[839,1,1,27,28]]],[32,1,1,28,29,[[893,1,1,28,29]]],[35,1,1,29,30,[[907,1,1,29,30]]]],[1976,5896,6021,7087,9432,11303,12765,12776,12834,12902,12995,13047,13057,13199,13280,13502,13504,13770,17177,17468,17919,18151,18593,19034,19621,20514,20683,21440,22582,22816]]],["country",[1,1,[[0,1,1,0,1,[[28,1,1,0,1]]]],[821]]],["home",[3,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[13,2,1,1,2,[[391,2,1,1,2]]]],[7260,11714]]],["open",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13709]]],["place",[342,326,[[0,42,39,0,39,[[0,1,1,0,1],[11,1,1,1,2],[12,3,3,2,5],[17,3,3,5,8],[18,4,4,8,12],[19,2,2,12,14],[20,1,1,14,15],[21,4,4,15,19],[25,2,1,19,20],[27,6,4,20,24],[28,2,2,24,26],[29,1,1,26,27],[30,1,1,27,28],[31,2,2,28,30],[32,1,1,30,31],[34,4,4,31,35],[37,2,2,35,37],[38,1,1,37,38],[39,1,1,38,39]]],[1,8,8,39,47,[[52,2,2,39,41],[66,1,1,41,42],[67,1,1,42,43],[70,1,1,43,44],[72,1,1,44,45],[78,1,1,45,46],[82,1,1,46,47]]],[2,24,23,47,70,[[90,1,1,47,48],[93,4,4,48,52],[95,5,5,52,57],[96,2,2,57,59],[99,3,3,59,62],[102,1,1,62,63],[103,6,5,63,68],[105,1,1,68,69],[113,1,1,69,70]]],[3,19,17,70,87,[[125,1,1,70,71],[126,1,1,71,72],[127,2,2,72,74],[129,1,1,74,75],[130,1,1,75,76],[134,1,1,76,77],[135,1,1,77,78],[136,2,1,78,79],[137,1,1,79,80],[138,1,1,80,81],[139,2,2,81,83],[140,2,2,83,85],[148,3,2,85,87]]],[4,32,32,87,119,[[153,2,2,87,89],[161,1,1,89,90],[163,2,2,90,92],[164,8,8,92,100],[166,3,3,100,103],[167,1,1,103,104],[168,6,6,104,110],[169,2,2,110,112],[170,1,1,112,113],[173,1,1,113,114],[175,1,1,114,115],[178,2,2,115,117],[181,1,1,117,118],[183,1,1,118,119]]],[5,7,7,119,126,[[187,1,1,119,120],[190,1,1,120,121],[191,2,2,121,123],[193,1,1,123,124],[195,1,1,124,125],[206,1,1,125,126]]],[6,11,11,126,137,[[212,1,1,126,127],[217,1,1,127,128],[219,1,1,128,129],[221,1,1,129,130],[225,1,1,130,131],[228,2,2,131,133],[229,2,2,133,135],[230,2,2,135,137]]],[7,3,3,137,140,[[232,1,1,137,138],[234,1,1,138,139],[235,1,1,139,140]]],[8,20,19,140,159,[[238,2,2,140,142],[240,2,2,142,144],[241,1,1,144,145],[244,1,1,145,146],[247,1,1,146,147],[249,1,1,147,148],[255,4,4,148,152],[256,1,1,152,153],[258,2,2,153,155],[261,3,2,155,157],[262,1,1,157,158],[264,1,1,158,159]]],[9,12,12,159,171,[[268,2,2,159,161],[271,1,1,161,162],[272,2,2,162,164],[273,1,1,164,165],[277,1,1,165,166],[281,2,2,166,168],[283,2,2,168,170],[285,1,1,170,171]]],[10,15,13,171,184,[[294,1,1,171,172],[295,1,1,172,173],[298,8,6,173,179],[300,1,1,179,180],[303,3,3,180,183],[311,1,1,183,184]]],[11,12,12,184,196,[[317,1,1,184,185],[318,6,6,185,191],[330,1,1,191,192],[334,4,4,192,196]]],[12,8,8,196,204,[[350,1,1,196,197],[351,1,1,197,198],[352,2,2,198,200],[353,1,1,200,201],[354,1,1,201,202],[358,2,2,202,204]]],[13,17,16,204,220,[[369,1,1,204,205],[371,2,2,205,207],[372,5,4,207,211],[373,2,2,211,213],[375,1,1,213,214],[386,1,1,214,215],[390,1,1,215,216],[400,4,4,216,220]]],[14,5,3,220,223,[[403,2,1,220,221],[410,2,1,221,222],[411,1,1,222,223]]],[15,3,3,223,226,[[413,1,1,223,224],[414,1,1,224,225],[416,1,1,225,226]]],[17,11,11,226,237,[[442,1,1,226,227],[451,1,1,227,228],[453,1,1,228,229],[455,1,1,229,230],[463,5,5,230,235],[473,2,2,235,237]]],[18,7,7,237,244,[[501,1,1,237,238],[503,1,1,238,239],[514,1,1,239,240],[521,1,1,240,241],[580,1,1,241,242],[581,1,1,242,243],[609,1,1,243,244]]],[19,2,2,244,246,[[642,1,1,244,245],[652,1,1,245,246]]],[20,8,7,246,253,[[659,2,2,246,248],[661,3,2,248,250],[664,1,1,250,251],[668,1,1,251,252],[669,1,1,252,253]]],[22,14,13,253,266,[[683,1,1,253,254],[685,1,1,254,255],[692,1,1,255,256],[696,1,1,256,257],[700,2,2,257,259],[706,1,1,259,260],[711,1,1,260,261],[723,1,1,261,262],[727,1,1,262,263],[732,1,1,263,264],[738,2,1,264,265],[744,1,1,265,266]]],[23,39,38,266,304,[[751,7,7,266,273],[757,1,1,273,274],[758,1,1,274,275],[760,3,3,275,278],[761,1,1,278,279],[763,8,7,279,286],[766,3,3,286,289],[768,1,1,289,290],[771,1,1,290,291],[772,3,3,291,294],[773,2,2,294,296],[776,1,1,296,297],[777,2,2,297,299],[784,1,1,299,300],[786,2,2,300,302],[788,1,1,302,303],[795,1,1,303,304]]],[25,13,12,304,316,[[807,1,1,304,305],[811,1,1,305,306],[813,1,1,306,307],[818,1,1,307,308],[822,1,1,308,309],[840,1,1,309,310],[842,1,1,310,311],[843,1,1,311,312],[844,2,1,312,313],[846,1,1,313,314],[847,2,2,314,316]]],[27,2,2,316,318,[[862,1,1,316,317],[866,1,1,317,318]]],[28,1,1,318,319,[[878,1,1,318,319]]],[29,1,1,319,320,[[886,1,1,319,320]]],[33,2,2,320,322,[[900,1,1,320,321],[902,1,1,321,322]]],[35,1,1,322,323,[[906,1,1,322,323]]],[36,1,1,323,324,[[910,1,1,323,324]]],[37,1,1,324,325,[[924,1,1,324,325]]],[38,1,1,325,326,[[925,1,1,325,326]]]],[8,304,321,322,332,448,450,457,469,470,471,484,506,508,544,550,551,556,561,699,784,789,790,792,798,817,855,928,930,958,977,1018,1024,1025,1026,1140,1141,1169,1175,1584,1587,1990,2022,2090,2164,2367,2494,2761,2807,2819,2824,2828,2860,2865,2874,2875,2876,2881,2885,2990,2991,2994,3071,3124,3139,3151,3152,3156,3225,3455,3982,4017,4027,4058,4099,4148,4288,4298,4316,4343,4401,4429,4443,4457,4471,4719,4735,4923,4925,5164,5213,5232,5243,5245,5251,5253,5254,5258,5261,5266,5313,5314,5315,5339,5344,5348,5349,5353,5357,5358,5372,5374,5390,5466,5516,5568,5575,5686,5739,5854,5928,5943,5949,6002,6064,6376,6550,6701,6809,6848,6946,7003,7005,7040,7052,7076,7090,7134,7176,7200,7278,7285,7322,7330,7333,7413,7468,7554,7749,7755,7757,7767,7774,7832,7838,7910,7930,7935,7971,8065,8072,8152,8165,8174,8190,8275,8408,8410,8458,8461,8550,8872,8887,8991,8992,9006,9014,9015,9020,9098,9192,9200,9206,9470,9658,9675,9676,9680,9682,9683,9684,10049,10161,10162,10164,10165,10771,10785,10792,10794,10847,10872,10956,10959,11230,11275,11276,11302,11303,11308,11322,11336,11339,11382,11613,11688,11957,11958,11960,11961,12020,12218,12245,12305,12321,12379,13018,13256,13297,13335,13505,13510,13516,13524,13527,13805,13812,14244,14281,14460,14590,15565,15579,16156,16810,17119,17320,17322,17375,17379,17423,17497,17516,17747,17805,17930,18004,18075,18077,18172,18300,18580,18656,18725,18834,18923,19122,19125,19126,19131,19133,19139,19151,19273,19306,19338,19339,19345,19369,19410,19411,19413,19414,19418,19419,19420,19457,19465,19466,19529,19618,19621,19622,19624,19645,19649,19768,19785,19787,19943,19993,19997,20039,20274,20576,20644,20683,20841,20974,21459,21537,21565,21579,21634,21674,21675,22104,22167,22350,22484,22692,22729,22791,22864,23078,23100]]],["places",[19,19,[[0,1,1,0,1,[[35,1,1,0,1]]],[1,1,1,1,2,[[69,1,1,1,2]]],[4,1,1,2,3,[[164,1,1,2,3]]],[6,1,1,3,4,[[229,1,1,3,4]]],[8,2,2,4,6,[[242,1,1,4,5],[265,1,1,5,6]]],[11,1,1,6,7,[[335,1,1,6,7]]],[13,1,1,7,8,[[399,1,1,7,8]]],[15,3,3,8,11,[[416,2,2,8,10],[424,1,1,10,11]]],[18,1,1,11,12,[[580,1,1,11,12]]],[23,5,5,12,17,[[752,1,1,12,13],[768,1,1,13,14],[773,1,1,14,15],[784,1,1,15,16],[789,1,1,16,17]]],[25,1,1,17,18,[[835,1,1,17,18]]],[29,1,1,18,19,[[882,1,1,18,19]]]],[1080,2075,5242,7037,7368,8009,10179,11927,12371,12372,12651,15571,19156,19533,19649,19953,20045,21325,22416]]],["room",[3,3,[[0,3,3,0,3,[[23,3,3,0,3]]]],[614,616,622]]],["space",[1,1,[[8,1,1,0,1,[[261,1,1,0,1]]]],[7918]]]]},{"k":"H4726","v":[["*",[18,17,[[2,3,2,0,2,[[101,1,1,0,1],[109,2,1,1,2]]],[18,2,2,2,4,[[513,1,1,2,3],[545,1,1,3,4]]],[19,7,7,4,11,[[632,1,1,4,5],[637,1,1,5,6],[640,1,1,6,7],[641,1,1,7,8],[643,1,1,8,9],[645,1,1,9,10],[652,1,1,10,11]]],[23,4,4,11,15,[[746,1,1,11,12],[753,1,1,12,13],[761,1,1,13,14],[795,1,1,14,15]]],[27,1,1,15,16,[[874,1,1,15,16]]],[37,1,1,16,17,[[923,1,1,16,17]]]],[3051,3336,14447,14926,16535,16667,16761,16799,16862,16905,17139,18978,19176,19370,20248,22281,23060]]],["+",[2,2,[[2,1,1,0,1,[[101,1,1,0,1]]],[18,1,1,1,2,[[545,1,1,1,2]]]],[3051,14926]]],["fountain",[10,9,[[2,2,1,0,1,[[109,2,1,0,1]]],[18,1,1,1,2,[[513,1,1,1,2]]],[19,3,3,2,5,[[632,1,1,2,3],[640,1,1,3,4],[641,1,1,4,5]]],[23,3,3,5,8,[[746,1,1,5,6],[753,1,1,6,7],[761,1,1,7,8]]],[37,1,1,8,9,[[923,1,1,8,9]]]],[3336,14447,16535,16761,16799,18978,19176,19370,23060]]],["spring",[2,2,[[19,1,1,0,1,[[652,1,1,0,1]]],[27,1,1,1,2,[[874,1,1,1,2]]]],[17139,22281]]],["springs",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20248]]],["well",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16667]]],["wellspring",[2,2,[[19,2,2,0,2,[[643,1,1,0,1],[645,1,1,1,2]]]],[16862,16905]]]]},{"k":"H4727","v":[["taking",[1,1,[[13,1,1,0,1,[[385,1,1,0,1]]]],[11583]]]]},{"k":"H4728","v":[["ware",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12580]]]]},{"k":"H4729","v":[["burn",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2383]]]]},{"k":"H4730","v":[["censer",[2,2,[[13,1,1,0,1,[[392,1,1,0,1]]],[25,1,1,1,2,[[809,1,1,1,2]]]],[11751,20615]]]]},{"k":"H4731","v":[["*",[18,16,[[0,7,5,0,5,[[29,6,4,0,4],[31,1,1,4,5]]],[1,1,1,5,6,[[61,1,1,5,6]]],[3,1,1,6,7,[[138,1,1,6,7]]],[8,2,2,7,9,[[252,2,2,7,9]]],[23,2,2,9,11,[[745,1,1,9,10],[792,1,1,10,11]]],[25,1,1,11,12,[[840,1,1,11,12]]],[27,1,1,12,13,[[865,1,1,12,13]]],[37,3,3,13,16,[[921,3,3,13,16]]]],[867,868,869,871,938,1827,4402,7658,7661,18957,20097,21457,22145,23035,23038,23042]]],["+",[2,2,[[25,1,1,0,1,[[840,1,1,0,1]]],[37,1,1,1,2,[[921,1,1,1,2]]]],[21457,23042]]],["rod",[2,2,[[23,2,2,0,2,[[745,1,1,0,1],[792,1,1,1,2]]]],[18957,20097]]],["rods",[6,4,[[0,6,4,0,4,[[29,6,4,0,4]]]],[867,868,869,871]]],["staff",[6,6,[[0,1,1,0,1,[[31,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[3,1,1,2,3,[[138,1,1,2,3]]],[8,1,1,3,4,[[252,1,1,3,4]]],[27,1,1,4,5,[[865,1,1,4,5]]],[37,1,1,5,6,[[921,1,1,5,6]]]],[938,1827,4402,7658,22145,23038]]],["staves",[2,2,[[8,1,1,0,1,[[252,1,1,0,1]]],[37,1,1,1,2,[[921,1,1,1,2]]]],[7661,23035]]]]},{"k":"H4732","v":[["Mikloth",[4,4,[[12,4,4,0,4,[[345,1,1,0,1],[346,2,2,1,3],[364,1,1,3,4]]]],[10607,10652,10653,11113]]]]},{"k":"H4733","v":[["*",[20,20,[[3,11,11,0,11,[[151,11,11,0,11]]],[5,7,7,11,18,[[206,2,2,11,13],[207,5,5,13,18]]],[12,2,2,18,20,[[343,2,2,18,20]]]],[4851,4856,4857,4858,4859,4860,4870,4871,4872,4873,4877,6374,6375,6394,6402,6408,6413,6419,10511,10521]]],["+",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10521]]],["refuge",[19,19,[[3,11,11,0,11,[[151,11,11,0,11]]],[5,7,7,11,18,[[206,2,2,11,13],[207,5,5,13,18]]],[12,1,1,18,19,[[343,1,1,18,19]]]],[4851,4856,4857,4858,4859,4860,4870,4871,4872,4873,4877,6374,6375,6394,6402,6408,6413,6419,10511]]]]},{"k":"H4734","v":[["*",[4,4,[[10,4,4,0,4,[[296,3,3,0,3],[297,1,1,3,4]]]],[8914,8925,8928,8965]]],["carved",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8914]]],["carvings",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8928]]],["figures",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8925]]],["gravings",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8965]]]]},{"k":"H4735","v":[["*",[76,64,[[0,28,21,0,21,[[3,1,1,0,1],[12,3,2,1,3],[25,2,1,3,4],[28,1,1,4,5],[29,1,1,5,6],[30,3,2,6,8],[32,1,1,8,9],[33,2,2,9,11],[35,2,2,11,13],[45,3,3,13,16],[46,8,4,16,20],[48,1,1,20,21]]],[1,13,11,21,32,[[58,9,7,21,28],[59,1,1,28,29],[61,1,1,29,30],[66,1,1,30,31],[83,1,1,31,32]]],[3,8,6,32,38,[[136,1,1,32,33],[147,1,1,33,34],[148,6,4,34,38]]],[4,2,1,38,39,[[155,2,1,38,39]]],[5,3,3,39,42,[[187,1,1,39,40],[200,1,1,40,41],[208,1,1,41,42]]],[6,2,2,42,44,[[216,1,1,42,43],[228,1,1,43,44]]],[8,2,2,44,46,[[258,1,1,44,45],[265,1,1,45,46]]],[11,1,1,46,47,[[315,1,1,46,47]]],[12,4,4,47,51,[[342,2,2,47,49],[344,1,1,49,50],[365,1,1,50,51]]],[13,3,3,51,54,[[380,1,1,51,52],[392,1,1,52,53],[398,1,1,53,54]]],[17,3,3,54,57,[[436,2,2,54,56],[471,1,1,56,57]]],[18,1,1,57,58,[[555,1,1,57,58]]],[20,1,1,58,59,[[660,1,1,58,59]]],[22,1,1,59,60,[[708,1,1,59,60]]],[23,2,2,60,62,[[753,1,1,60,61],[793,1,1,61,62]]],[25,2,2,62,64,[[839,2,2,62,64]]]],[99,320,325,706,802,859,882,891,977,985,1003,1046,1047,1392,1418,1420,1426,1436,1437,1438,1505,1745,1746,1748,1749,1761,1762,1763,1803,1854,1986,2515,4330,4673,4719,4722,4734,4744,4994,5865,6191,6434,6659,7014,7815,7998,9593,10437,10449,10556,11144,11490,11742,11904,12872,12879,13769,15161,17340,18240,19185,20159,21437,21438]]],["+",[3,3,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,2,2,1,3,[[58,2,2,1,3]]]],[1437,1748,1749]]],["cattle",[61,52,[[0,23,18,0,18,[[3,1,1,0,1],[12,3,2,1,3],[28,1,1,3,4],[29,1,1,4,5],[30,3,2,5,7],[32,1,1,7,8],[33,2,2,8,10],[35,2,2,10,12],[45,3,3,12,15],[46,6,3,15,18]]],[1,11,10,18,28,[[58,7,6,18,24],[59,1,1,24,25],[61,1,1,25,26],[66,1,1,26,27],[83,1,1,27,28]]],[3,6,4,28,32,[[136,1,1,28,29],[148,5,3,29,32]]],[4,2,1,32,33,[[155,2,1,32,33]]],[5,3,3,33,36,[[187,1,1,33,34],[200,1,1,34,35],[208,1,1,35,36]]],[6,2,2,36,38,[[216,1,1,36,37],[228,1,1,37,38]]],[8,2,2,38,40,[[258,1,1,38,39],[265,1,1,39,40]]],[11,1,1,40,41,[[315,1,1,40,41]]],[12,3,3,41,44,[[342,2,2,41,43],[344,1,1,43,44]]],[13,2,2,44,46,[[380,1,1,44,45],[392,1,1,45,46]]],[17,1,1,46,47,[[471,1,1,46,47]]],[22,1,1,47,48,[[708,1,1,47,48]]],[23,2,2,48,50,[[753,1,1,48,49],[793,1,1,49,50]]],[25,2,2,50,52,[[839,2,2,50,52]]]],[99,320,325,802,859,882,891,977,985,1003,1046,1047,1392,1418,1420,1426,1436,1437,1745,1746,1748,1761,1762,1763,1803,1854,1986,2515,4330,4719,4722,4734,4994,5865,6191,6434,6659,7014,7815,7998,9593,10437,10449,10556,11490,11742,13769,18240,19185,20159,21437,21438]]],["flocks",[3,3,[[3,2,2,0,2,[[147,1,1,0,1],[148,1,1,1,2]]],[18,1,1,2,3,[[555,1,1,2,3]]]],[4673,4744,15161]]],["herds",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1438]]],["possession",[3,2,[[0,2,1,0,1,[[25,2,1,0,1]]],[12,1,1,1,2,[[365,1,1,1,2]]]],[706,11144]]],["possessions",[2,2,[[13,1,1,0,1,[[398,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[11904,17340]]],["purchase",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1505]]],["substance",[2,2,[[17,2,2,0,2,[[436,2,2,0,2]]]],[12872,12879]]]]},{"k":"H4736","v":[["*",[15,13,[[0,5,5,0,5,[[16,4,4,0,4],[22,1,1,4,5]]],[1,1,1,5,6,[[61,1,1,5,6]]],[2,4,3,6,9,[[114,3,2,6,8],[116,1,1,8,9]]],[23,5,4,9,13,[[776,5,4,9,13]]]],[409,410,420,424,589,1860,3485,3520,3592,19742,19743,19745,19747]]],["bought",[7,7,[[0,4,4,0,4,[[16,4,4,0,4]]],[1,1,1,4,5,[[61,1,1,4,5]]],[2,2,2,5,7,[[114,1,1,5,6],[116,1,1,6,7]]]],[409,410,420,424,1860,3520,3592]]],["possession",[1,1,[[0,1,1,0,1,[[22,1,1,0,1]]]],[589]]],["price",[2,1,[[2,2,1,0,1,[[114,2,1,0,1]]]],[3485]]],["purchase",[5,4,[[23,5,4,0,4,[[776,5,4,0,4]]]],[19742,19743,19745,19747]]]]},{"k":"H4737","v":[["Mikneiah",[2,2,[[12,2,2,0,2,[[352,2,2,0,2]]]],[10809,10812]]]]},{"k":"H4738","v":[["divination",[2,2,[[25,2,2,0,2,[[813,1,1,0,1],[814,1,1,1,2]]]],[20704,20715]]]]},{"k":"H4739","v":[["Makaz",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8853]]]]},{"k":"H4740","v":[["*",[12,10,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]],[13,1,1,2,3,[[392,1,1,2,3]]],[15,4,4,3,7,[[415,4,4,3,7]]],[25,5,3,7,10,[[842,1,1,7,8],[847,4,2,8,10]]]],[2259,2595,11741,12346,12347,12351,12352,21548,21676,21677]]],["+",[2,1,[[25,2,1,0,1,[[847,2,1,0,1]]]],[21676]]],["corners",[5,5,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]],[25,3,3,2,5,[[842,1,1,2,3],[847,2,2,3,5]]]],[2259,2595,21548,21676,21677]]],["turning",[5,5,[[13,1,1,0,1,[[392,1,1,0,1]]],[15,4,4,1,5,[[415,4,4,1,5]]]],[11741,12346,12347,12351,12352]]]]},{"k":"H4741","v":[["planes",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18546]]]]},{"k":"H4742","v":[["corners",[2,2,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]]],[2258,2594]]]]},{"k":"H4743","v":[["*",[10,7,[[2,2,1,0,1,[[115,2,1,0,1]]],[18,1,1,1,2,[[515,1,1,1,2]]],[22,1,1,2,3,[[712,1,1,2,3]]],[25,3,3,3,6,[[805,1,1,3,4],[825,1,1,4,5],[834,1,1,5,6]]],[37,3,1,6,7,[[924,3,1,6,7]]]],[3563,14495,18307,20546,21079,21290,23080]]],["away",[8,5,[[2,2,1,0,1,[[115,2,1,0,1]]],[25,3,3,1,4,[[805,1,1,1,2],[825,1,1,2,3],[834,1,1,3,4]]],[37,3,1,4,5,[[924,3,1,4,5]]]],[3563,20546,21079,21290,23080]]],["corrupt",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14495]]],["dissolved",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18307]]]]},{"k":"H4744","v":[["*",[23,22,[[1,2,1,0,1,[[61,2,1,0,1]]],[2,11,11,1,12,[[112,11,11,1,12]]],[3,7,7,12,19,[[126,1,1,12,13],[144,3,3,13,16],[145,3,3,16,19]]],[15,1,1,19,20,[[420,1,1,19,20]]],[22,2,2,20,22,[[679,1,1,20,21],[682,1,1,21,22]]]],[1832,3404,3405,3406,3409,3410,3423,3426,3429,3437,3438,3439,3990,4595,4602,4603,4609,4615,4620,12501,17667,17738]]],["assemblies",[2,2,[[22,2,2,0,2,[[679,1,1,0,1],[682,1,1,1,2]]]],[17667,17738]]],["calling",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[3990]]],["convocation",[16,15,[[1,2,1,0,1,[[61,2,1,0,1]]],[2,8,8,1,9,[[112,8,8,1,9]]],[3,6,6,9,15,[[144,3,3,9,12],[145,3,3,12,15]]]],[1832,3405,3409,3410,3423,3426,3429,3437,3438,4595,4602,4603,4609,4615,4620]]],["convocations",[3,3,[[2,3,3,0,3,[[112,3,3,0,3]]]],[3404,3406,3439]]],["reading",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12501]]]]},{"k":"H4745","v":[["*",[10,8,[[7,1,1,0,1,[[233,1,1,0,1]]],[8,2,2,1,3,[[241,1,1,1,2],[255,1,1,2,3]]],[20,7,5,3,8,[[660,2,2,3,5],[661,3,1,5,6],[667,2,2,6,8]]]],[7152,7340,7756,17347,17348,17378,17477,17478]]],["+",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17347]]],["befallen",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7756]]],["befalleth",[3,1,[[20,3,1,0,1,[[661,3,1,0,1]]]],[17378]]],["chance",[1,1,[[8,1,1,0,1,[[241,1,1,0,1]]]],[7340]]],["event",[2,2,[[20,2,2,0,2,[[667,2,2,0,2]]]],[17477,17478]]],["hap",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7152]]],["happeneth",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17348]]]]},{"k":"H4746","v":[["building",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17511]]]]},{"k":"H4747","v":[["summer",[2,2,[[6,2,2,0,2,[[213,2,2,0,2]]]],[6588,6592]]]]},{"k":"H4748","v":[["hair",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17731]]]]},{"k":"H4749","v":[["*",[10,9,[[1,6,6,0,6,[[74,3,3,0,3],[86,3,3,3,6]]],[3,3,2,6,8,[[124,2,1,6,7],[126,1,1,7,8]]],[23,1,1,8,9,[[754,1,1,8,9]]]],[2213,2226,2231,2611,2621,2626,3943,3990,19206]]],["beaten",[1,1,[[3,1,1,0,1,[[124,1,1,0,1]]]],[3943]]],["piece",[2,2,[[1,1,1,0,1,[[86,1,1,0,1]]],[3,1,1,1,2,[[126,1,1,1,2]]]],[2611,3990]]],["upright",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19206]]],["work",[6,6,[[1,5,5,0,5,[[74,3,3,0,3],[86,2,2,3,5]]],[3,1,1,5,6,[[124,1,1,5,6]]]],[2213,2226,2231,2621,2626,3943]]]]},{"k":"H4750","v":[["cucumbers",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17662]]]]},{"k":"H4751","v":[["*",[38,35,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[3,6,5,2,7,[[121,6,5,2,7]]],[6,1,1,7,8,[[228,1,1,7,8]]],[8,3,3,8,11,[[236,1,1,8,9],[250,1,1,9,10],[257,1,1,10,11]]],[9,2,2,11,13,[[268,1,1,11,12],[283,1,1,12,13]]],[16,1,1,13,14,[[429,1,1,13,14]]],[17,4,4,14,18,[[438,1,1,14,15],[442,1,1,15,16],[445,1,1,16,17],[456,1,1,17,18]]],[18,1,1,18,19,[[541,1,1,18,19]]],[19,3,3,19,22,[[632,1,1,19,20],[654,1,1,20,21],[658,1,1,21,22]]],[20,1,1,22,23,[[665,1,1,22,23]]],[22,5,4,23,27,[[683,2,1,23,24],[711,1,1,24,25],[716,2,2,25,27]]],[23,2,2,27,29,[[746,1,1,27,28],[748,1,1,28,29]]],[25,4,3,29,32,[[804,1,1,29,30],[828,3,2,30,32]]],[29,1,1,32,33,[[886,1,1,32,33]]],[34,1,1,33,34,[[903,1,1,33,34]]],[35,1,1,34,35,[[906,1,1,34,35]]]],[761,1943,3810,3811,3815,3816,3819,7018,7222,7592,7789,8075,8457,12763,12924,13019,13087,13380,14853,16521,17176,17290,17455,17759,18286,18405,18407,18984,19045,20516,21151,21152,22491,22737,22801]]],["+",[3,3,[[6,1,1,0,1,[[228,1,1,0,1]]],[8,1,1,1,2,[[257,1,1,1,2]]],[22,1,1,2,3,[[716,1,1,2,3]]]],[7018,7789,18407]]],["bitter",[20,18,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[3,6,5,2,7,[[121,6,5,2,7]]],[16,1,1,7,8,[[429,1,1,7,8]]],[17,1,1,8,9,[[438,1,1,8,9]]],[18,1,1,9,10,[[541,1,1,9,10]]],[19,1,1,10,11,[[632,1,1,10,11]]],[20,1,1,11,12,[[665,1,1,11,12]]],[22,2,1,12,13,[[683,2,1,12,13]]],[23,2,2,13,15,[[746,1,1,13,14],[748,1,1,14,15]]],[25,1,1,15,16,[[828,1,1,15,16]]],[29,1,1,16,17,[[886,1,1,16,17]]],[34,1,1,17,18,[[903,1,1,17,18]]]],[761,1943,3810,3811,3815,3816,3819,12763,12924,14853,16521,17455,17759,18984,19045,21152,22491,22737]]],["bitterly",[3,3,[[22,1,1,0,1,[[711,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]],[35,1,1,2,3,[[906,1,1,2,3]]]],[18286,21151,22801]]],["bitterness",[9,9,[[8,2,2,0,2,[[236,1,1,0,1],[250,1,1,1,2]]],[9,1,1,2,3,[[268,1,1,2,3]]],[17,3,3,3,6,[[442,1,1,3,4],[445,1,1,4,5],[456,1,1,5,6]]],[22,1,1,6,7,[[716,1,1,6,7]]],[25,2,2,7,9,[[804,1,1,7,8],[828,1,1,8,9]]]],[7222,7592,8075,13019,13087,13380,18405,20516,21152]]],["chafed",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8457]]],["heavy",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17290]]],["thing",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17176]]]]},{"k":"H4752","v":[["drop",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18435]]]]},{"k":"H4753","v":[["myrrh",[12,11,[[1,1,1,0,1,[[79,1,1,0,1]]],[16,1,1,1,2,[[427,1,1,1,2]]],[18,1,1,2,3,[[522,1,1,2,3]]],[19,1,1,3,4,[[634,1,1,3,4]]],[21,8,7,4,11,[[671,1,1,4,5],[673,1,1,5,6],[674,2,2,6,8],[675,4,3,8,11]]]],[2405,12736,14605,16592,17550,17577,17588,17596,17599,17603,17611]]]]},{"k":"H4754","v":[["herself",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13852]]]]},{"k":"H4755","v":[["Mara",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7147]]]]},{"k":"H4756","v":[["*",[4,4,[[26,4,4,0,4,[[851,1,1,0,1],[853,2,2,1,3],[854,1,1,3,4]]]],[21805,21856,21861,21897]]],["Lord",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[854,1,1,1,2]]]],[21805,21897]]],["lord",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21856,21861]]]]},{"k":"H4757","v":[["Merodachbaladan",[1,1,[[22,1,1,0,1,[[717,1,1,0,1]]]],[18413]]]]},{"k":"H4758","v":[["*",[104,83,[[0,11,10,0,10,[[1,1,1,0,1],[11,1,1,1,2],[23,1,1,2,3],[25,1,1,3,4],[28,1,1,4,5],[38,1,1,5,6],[40,5,4,6,10]]],[1,2,2,10,12,[[52,1,1,10,11],[73,1,1,11,12]]],[2,11,11,12,23,[[102,10,10,12,22],[103,1,1,22,23]]],[3,4,4,23,27,[[124,1,1,23,24],[125,2,2,24,26],[128,1,1,26,27]]],[4,2,2,27,29,[[180,2,2,27,29]]],[5,1,1,29,30,[[208,1,1,29,30]]],[6,2,1,30,31,[[223,2,1,30,31]]],[8,2,2,31,33,[[251,1,1,31,32],[252,1,1,32,33]]],[9,3,3,33,36,[[277,1,1,33,34],[280,1,1,34,35],[289,1,1,35,36]]],[16,4,4,36,40,[[426,1,1,36,37],[427,3,3,37,40]]],[17,2,2,40,42,[[439,1,1,40,41],[476,1,1,41,42]]],[20,2,2,42,44,[[664,1,1,42,43],[669,1,1,43,44]]],[21,3,2,44,46,[[672,2,1,44,45],[675,1,1,45,46]]],[22,3,3,46,49,[[689,1,1,46,47],[730,1,1,47,48],[731,1,1,48,49]]],[25,36,20,49,69,[[802,15,7,49,56],[809,4,2,56,58],[811,4,4,58,62],[812,2,1,62,63],[824,2,2,63,65],[841,2,1,65,66],[842,2,1,66,67],[843,1,1,67,68],[844,4,1,68,69]]],[26,13,12,69,81,[[850,4,3,69,72],[857,4,4,72,76],[858,1,1,76,77],[859,4,4,77,81]]],[28,2,1,81,82,[[877,2,1,81,82]]],[33,1,1,82,83,[[901,1,1,82,83]]]],[39,309,607,699,812,1155,1197,1198,1199,1216,1582,2194,3055,3056,3064,3072,3077,3082,3083,3084,3086,3095,3148,3943,3980,3981,4067,5645,5678,6436,6890,7602,7660,8261,8383,8674,12713,12726,12727,12731,12946,13897,17426,17522,17568,17613,17887,18710,18713,20469,20477,20478,20480,20490,20491,20492,20606,20608,20634,20642,20643,20655,20679,21022,21023,21480,21547,21563,21575,21741,21750,21752,21976,21977,21987,21988,22011,22016,22021,22031,22033,22315,22703]]],["+",[11,10,[[0,1,1,0,1,[[40,1,1,0,1]]],[2,1,1,1,2,[[102,1,1,1,2]]],[4,2,2,2,4,[[180,2,2,2,4]]],[16,3,3,4,7,[[427,3,3,4,7]]],[25,3,2,7,9,[[802,2,1,7,8],[809,1,1,8,9]]],[26,1,1,9,10,[[850,1,1,9,10]]]],[1216,3064,5645,5678,12726,12727,12731,20491,20606,21741]]],["apparently",[1,1,[[3,1,1,0,1,[[128,1,1,0,1]]]],[4067]]],["appearance",[30,20,[[3,2,2,0,2,[[125,2,2,0,2]]],[25,23,14,2,16,[[802,13,7,2,9],[809,2,1,9,10],[811,2,2,10,12],[841,2,1,12,13],[842,2,1,13,14],[843,1,1,14,15],[844,1,1,15,16]]],[26,3,3,16,19,[[857,1,1,16,17],[859,2,2,17,19]]],[28,2,1,19,20,[[877,2,1,19,20]]]],[3980,3981,20469,20477,20478,20480,20490,20491,20492,20606,20634,20642,21480,21547,21563,21575,21976,22021,22033,22315]]],["appearances",[2,2,[[25,2,2,0,2,[[811,2,2,0,2]]]],[20643,20655]]],["appeareth",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3095]]],["beauty",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18713]]],["countenance",[9,7,[[6,2,1,0,1,[[223,2,1,0,1]]],[8,2,2,1,3,[[251,1,1,1,2],[252,1,1,2,3]]],[9,1,1,3,4,[[280,1,1,3,4]]],[21,3,2,4,6,[[672,2,1,4,5],[675,1,1,5,6]]],[26,1,1,6,7,[[850,1,1,6,7]]]],[6890,7602,7660,8383,17568,17613,21750]]],["countenances",[2,2,[[26,2,2,0,2,[[850,2,2,0,2]]]],[21750,21752]]],["favoured",[6,5,[[0,6,5,0,5,[[28,1,1,0,1],[38,1,1,1,2],[40,4,3,2,5]]]],[812,1155,1197,1198,1199]]],["form",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12946]]],["goodly",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8674]]],["look",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8261]]],["on",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12713]]],["pattern",[1,1,[[3,1,1,0,1,[[124,1,1,0,1]]]],[3943]]],["saw",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21023]]],["see",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6436]]],["seem",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22703]]],["sight",[16,16,[[0,1,1,0,1,[[1,1,1,0,1]]],[1,2,2,1,3,[[52,1,1,1,2],[73,1,1,2,3]]],[2,9,9,3,12,[[102,8,8,3,11],[103,1,1,11,12]]],[17,1,1,12,13,[[476,1,1,12,13]]],[20,2,2,13,15,[[664,1,1,13,14],[669,1,1,14,15]]],[22,1,1,15,16,[[689,1,1,15,16]]]],[39,1582,2194,3055,3056,3072,3077,3082,3083,3084,3086,3148,13897,17426,17522,17887]]],["to",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21022]]],["upon",[3,3,[[0,3,3,0,3,[[11,1,1,0,1],[23,1,1,1,2],[25,1,1,2,3]]]],[309,607,699]]],["visage",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18710]]],["vision",[12,9,[[25,6,3,0,3,[[809,1,1,0,1],[812,2,1,1,2],[844,3,1,2,3]]],[26,6,6,3,9,[[857,3,3,3,6],[858,1,1,6,7],[859,2,2,7,9]]]],[20608,20679,21575,21977,21987,21988,22011,22016,22031]]]]},{"k":"H4759","v":[["*",[11,10,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[87,1,1,1,2]]],[3,1,1,2,3,[[128,1,1,2,3]]],[8,1,1,3,4,[[238,1,1,3,4]]],[25,4,4,4,8,[[802,1,1,4,5],[809,1,1,5,6],[841,1,1,6,7],[844,1,1,7,8]]],[26,3,2,8,10,[[859,3,2,8,10]]]],[1388,2641,4065,7291,20465,20607,21479,21575,22022,22023]]],["lookingglasses",[1,1,[[1,1,1,0,1,[[87,1,1,0,1]]]],[2641]]],["vision",[5,4,[[3,1,1,0,1,[[128,1,1,0,1]]],[8,1,1,1,2,[[238,1,1,1,2]]],[26,3,2,2,4,[[859,3,2,2,4]]]],[4065,7291,22022,22023]]],["visions",[5,5,[[0,1,1,0,1,[[45,1,1,0,1]]],[25,4,4,1,5,[[802,1,1,1,2],[809,1,1,2,3],[841,1,1,3,4],[844,1,1,4,5]]]],[1388,20465,20607,21479,21575]]]]},{"k":"H4760","v":[["crop",[1,1,[[2,1,1,0,1,[[90,1,1,0,1]]]],[2761]]]]},{"k":"H4761","v":[["principalities",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19284]]]]},{"k":"H4762","v":[["*",[8,8,[[5,1,1,0,1,[[201,1,1,0,1]]],[12,2,2,1,3,[[339,1,1,1,2],[341,1,1,2,3]]],[13,4,4,3,7,[[377,1,1,3,4],[380,2,2,4,6],[386,1,1,6,7]]],[32,1,1,7,8,[[893,1,1,7,8]]]],[6246,10348,10406,11422,11484,11485,11624,22594]]],["+",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11624]]],["Mareshah",[7,7,[[5,1,1,0,1,[[201,1,1,0,1]]],[12,2,2,1,3,[[339,1,1,1,2],[341,1,1,2,3]]],[13,3,3,3,6,[[377,1,1,3,4],[380,2,2,4,6]]],[32,1,1,6,7,[[893,1,1,6,7]]]],[6246,10348,10406,11422,11484,11485,22594]]]]},{"k":"H4763","v":[["*",[9,9,[[0,2,2,0,2,[[27,2,2,0,2]]],[8,6,6,2,8,[[254,2,2,2,4],[261,4,4,4,8]]],[10,1,1,8,9,[[309,1,1,8,9]]]],[784,791,7719,7722,7912,7916,7917,7921,9393]]],["bolster",[6,6,[[8,6,6,0,6,[[254,2,2,0,2],[261,4,4,2,6]]]],[7719,7722,7912,7916,7917,7921]]],["head",[1,1,[[10,1,1,0,1,[[309,1,1,0,1]]]],[9393]]],["pillows",[2,2,[[0,2,2,0,2,[[27,2,2,0,2]]]],[784,791]]]]},{"k":"H4764","v":[["Merab",[3,3,[[8,3,3,0,3,[[249,1,1,0,1],[253,2,2,1,3]]]],[7557,7693,7695]]]]},{"k":"H4765","v":[["tapestry",[2,2,[[19,2,2,0,2,[[634,1,1,0,1],[658,1,1,1,2]]]],[16591,17306]]]]},{"k":"H4766","v":[["*",[2,2,[[22,2,2,0,2,[[687,1,1,0,1],[711,1,1,1,2]]]],[17836,18302]]],["great",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18302]]],["increase",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17836]]]]},{"k":"H4767","v":[["much",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21039]]]]},{"k":"H4768","v":[["*",[5,5,[[2,1,1,0,1,[[114,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[12,1,1,2,3,[[349,1,1,2,3]]],[13,2,2,3,5,[[375,1,1,3,4],[396,1,1,4,5]]]],[3506,7273,10749,11370,11845]]],["greatness",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11370]]],["increase",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]]],[3506,7273]]],["multitude",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11845]]],["part",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10749]]]]},{"k":"H4769","v":[["*",[2,2,[[25,1,1,0,1,[[826,1,1,0,1]]],[35,1,1,1,2,[[907,1,1,1,2]]]],[21088,22820]]],["couchingplace",[1,1,[[25,1,1,0,1,[[826,1,1,0,1]]]],[21088]]],["down",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22820]]]]},{"k":"H4770","v":[["*",[4,4,[[8,1,1,0,1,[[263,1,1,0,1]]],[23,1,1,1,2,[[790,1,1,1,2]]],[29,1,1,2,3,[[884,1,1,2,3]]],[38,1,1,3,4,[[928,1,1,3,4]]]],[7966,20066,22454,23140]]],["fat",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7966]]],["fatted",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20066]]],["stall",[2,2,[[29,1,1,0,1,[[884,1,1,0,1]]],[38,1,1,1,2,[[928,1,1,1,2]]]],[22454,23140]]]]},{"k":"H4771","v":[["rest",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19105]]]]},{"k":"H4772","v":[["feet",[5,5,[[7,4,4,0,4,[[234,4,4,0,4]]],[26,1,1,4,5,[[859,1,1,4,5]]]],[7176,7179,7180,7186,22021]]]]},{"k":"H4773","v":[["sling",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17149]]]]},{"k":"H4774","v":[["refreshing",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18176]]]]},{"k":"H4775","v":[["*",[25,23,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[5,5,4,2,6,[[208,5,4,2,6]]],[11,4,4,6,10,[[330,2,2,6,8],[336,2,2,8,10]]],[13,2,2,10,12,[[379,1,1,10,11],[402,1,1,11,12]]],[15,3,3,12,15,[[414,1,1,12,13],[418,1,1,13,14],[421,1,1,14,15]]],[17,1,1,15,16,[[459,1,1,15,16]]],[22,1,1,16,17,[[714,1,1,16,17]]],[23,1,1,17,18,[[796,1,1,17,18]]],[25,4,3,18,21,[[803,2,1,18,19],[818,1,1,19,20],[821,1,1,20,21]]],[26,2,2,21,23,[[858,2,2,21,23]]]],[340,4117,6442,6444,6445,6455,10031,10044,10203,10222,11459,12006,12326,12407,12537,13449,18335,20279,20495,20840,20933,21993,21997]]],["rebel",[9,8,[[3,1,1,0,1,[[130,1,1,0,1]]],[5,5,4,1,5,[[208,5,4,1,5]]],[15,2,2,5,7,[[414,1,1,5,6],[418,1,1,6,7]]],[17,1,1,7,8,[[459,1,1,7,8]]]],[4117,6442,6444,6445,6455,12326,12407,13449]]],["rebelled",[12,12,[[0,1,1,0,1,[[13,1,1,0,1]]],[11,3,3,1,4,[[330,1,1,1,2],[336,2,2,2,4]]],[13,2,2,4,6,[[379,1,1,4,5],[402,1,1,5,6]]],[15,1,1,6,7,[[421,1,1,6,7]]],[23,1,1,7,8,[[796,1,1,7,8]]],[25,2,2,8,10,[[803,1,1,8,9],[818,1,1,9,10]]],[26,2,2,10,12,[[858,2,2,10,12]]]],[340,10031,10203,10222,11459,12006,12537,20279,20495,20840,21993,21997]]],["rebellest",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]]],[10044,18335]]],["rebellious",[1,1,[[25,1,1,0,1,[[803,1,1,0,1]]]],[20495]]],["rebels",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20933]]]]},{"k":"H4776","v":[["rebellion",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12129]]]]},{"k":"H4777","v":[["rebellion",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6448]]]]},{"k":"H4778","v":[["Mered",[2,2,[[12,2,2,0,2,[[341,2,2,0,2]]]],[10402,10403]]]]},{"k":"H4779","v":[["rebellious",[2,2,[[14,2,2,0,2,[[406,2,2,0,2]]]],[12122,12125]]]]},{"k":"H4780","v":[["rebellious",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7760]]]]},{"k":"H4781","v":[["Merodach",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20168]]]]},{"k":"H4782","v":[["*",[60,52,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]],[16,58,50,2,52,[[427,11,9,2,11],[428,7,5,11,16],[429,12,11,16,27],[430,4,3,27,30],[431,7,7,30,37],[432,2,2,37,39],[433,6,5,39,44],[434,7,6,44,50],[435,2,2,50,52]]]],[12029,12427,12729,12731,12734,12735,12739,12743,12744,12745,12746,12749,12750,12751,12752,12753,12763,12766,12767,12768,12769,12771,12772,12774,12775,12777,12779,12788,12792,12793,12795,12796,12797,12803,12804,12805,12806,12816,12817,12818,12819,12824,12826,12832,12837,12838,12854,12857,12863,12865,12868,12869]]],["+",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12774]]],["Mordecai",[57,50,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]],[16,55,48,2,50,[[427,10,9,2,11],[428,6,4,11,15],[429,11,10,15,25],[430,4,3,25,28],[431,7,7,28,35],[432,2,2,35,37],[433,6,5,37,42],[434,7,6,42,48],[435,2,2,48,50]]]],[12029,12427,12729,12731,12734,12735,12739,12743,12744,12745,12746,12749,12750,12752,12753,12763,12766,12767,12768,12769,12771,12772,12775,12777,12779,12788,12792,12793,12795,12796,12797,12803,12804,12805,12806,12816,12817,12818,12819,12824,12826,12832,12837,12838,12854,12857,12863,12865,12868,12869]]],["Mordecai's",[2,2,[[16,2,2,0,2,[[427,1,1,0,1],[428,1,1,1,2]]]],[12746,12751]]]]},{"k":"H4783","v":[["persecuted",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17934]]]]},{"k":"H4784","v":[["*",[45,44,[[3,3,3,0,3,[[136,2,2,0,2],[143,1,1,2,3]]],[4,8,8,3,11,[[153,2,2,3,5],[161,3,3,5,8],[173,2,2,8,10],[183,1,1,10,11]]],[5,1,1,11,12,[[187,1,1,11,12]]],[8,2,2,12,14,[[247,2,2,12,14]]],[10,2,2,14,16,[[303,2,2,14,16]]],[11,1,1,16,17,[[326,1,1,16,17]]],[15,1,1,17,18,[[421,1,1,17,18]]],[17,1,1,18,19,[[452,1,1,18,19]]],[18,10,10,19,29,[[482,1,1,19,20],[555,4,4,20,24],[582,1,1,24,25],[583,3,3,25,28],[584,1,1,28,29]]],[22,4,4,29,33,[[679,1,1,29,30],[681,1,1,30,31],[728,1,1,31,32],[741,1,1,32,33]]],[23,2,2,33,35,[[748,1,1,33,34],[749,1,1,34,35]]],[24,4,3,35,38,[[797,3,2,35,37],[799,1,1,37,38]]],[25,4,4,38,42,[[806,1,1,38,39],[821,3,3,39,42]]],[27,1,1,42,43,[[874,1,1,42,43]]],[35,1,1,43,44,[[908,1,1,43,44]]]],[4321,4335,4568,4918,4935,5164,5180,5181,5465,5467,5755,5869,7474,7475,9205,9210,9922,12537,13262,13983,15121,15130,15153,15169,15634,15658,15684,15694,15710,17674,17715,18667,18876,19044,19081,20328,20330,20396,20552,20903,20908,20916,22282,22821]]],["+",[12,11,[[3,1,1,0,1,[[136,1,1,0,1]]],[4,3,3,1,4,[[153,2,2,1,3],[161,1,1,3,4]]],[5,1,1,4,5,[[187,1,1,4,5]]],[8,2,2,5,7,[[247,2,2,5,7]]],[18,2,2,7,9,[[555,1,1,7,8],[583,1,1,8,9]]],[24,2,1,9,10,[[797,2,1,9,10]]],[25,1,1,10,11,[[806,1,1,10,11]]]],[4335,4918,4935,5180,5869,7474,7475,15169,15684,20330,20552]]],["against",[2,2,[[3,1,1,0,1,[[143,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]]],[4568,15710]]],["bitter",[1,1,[[11,1,1,0,1,[[326,1,1,0,1]]]],[9922]]],["disobedient",[2,2,[[10,1,1,0,1,[[303,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]]],[9210,12537]]],["disobeyed",[1,1,[[10,1,1,0,1,[[303,1,1,0,1]]]],[9205]]],["filthy",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22821]]],["provocation",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13262]]],["provoke",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]]],[15153,17715]]],["provoked",[2,2,[[18,2,2,0,2,[[583,2,2,0,2]]]],[15658,15694]]],["provoking",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15130]]],["rebel",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17674]]],["rebelled",[9,9,[[18,2,2,0,2,[[482,1,1,0,1],[582,1,1,1,2]]],[22,1,1,2,3,[[741,1,1,2,3]]],[24,2,2,3,5,[[797,1,1,3,4],[799,1,1,4,5]]],[25,3,3,5,8,[[821,3,3,5,8]]],[27,1,1,8,9,[[874,1,1,8,9]]]],[13983,15634,18876,20328,20396,20903,20908,20916,22282]]],["rebellious",[9,9,[[4,5,5,0,5,[[161,2,2,0,2],[173,2,2,2,4],[183,1,1,4,5]]],[18,1,1,5,6,[[555,1,1,5,6]]],[22,1,1,6,7,[[728,1,1,6,7]]],[23,2,2,7,9,[[748,1,1,7,8],[749,1,1,8,9]]]],[5164,5181,5465,5467,5755,15121,18667,19044,19081]]],["rebels",[1,1,[[3,1,1,0,1,[[136,1,1,0,1]]]],[4321]]]]},{"k":"H4785","v":[["*",[5,3,[[1,3,1,0,1,[[64,3,1,0,1]]],[3,2,2,1,3,[[149,2,2,1,3]]]],[1943,4768,4769]]],["+",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]]],[1943,4769]]],["Marah",[3,2,[[1,2,1,0,1,[[64,2,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]]],[1943,4768]]]]},{"k":"H4786","v":[["grief",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[727]]]]},{"k":"H4787","v":[["bitterness",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16782]]]]},{"k":"H4788","v":[["*",[3,3,[[22,1,1,0,1,[[736,1,1,0,1]]],[24,2,2,1,3,[[797,1,1,1,2],[799,1,1,2,3]]]],[18793,20317,20373]]],["miseries",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20317]]],["misery",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20373]]],["out",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18793]]]]},{"k":"H4789","v":[["Meroz",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6646]]]]},{"k":"H4790","v":[["broken",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3365]]]]},{"k":"H4791","v":[["*",[54,52,[[6,1,1,0,1,[[215,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[11,2,2,2,4,[[331,2,2,2,4]]],[17,5,5,4,9,[[440,1,1,4,5],[451,1,1,5,6],[460,1,1,6,7],[466,1,1,7,8],[474,1,1,8,9]]],[18,13,13,9,22,[[484,1,1,9,10],[487,1,1,10,11],[495,1,1,11,12],[533,1,1,12,13],[545,1,1,13,14],[548,1,1,14,15],[550,1,1,15,16],[552,1,1,16,17],[569,1,1,17,18],[570,1,1,18,19],[579,1,1,19,20],[621,1,1,20,21],[625,1,1,21,22]]],[19,3,3,22,25,[[635,1,1,22,23],[636,2,2,23,25]]],[20,1,1,25,26,[[668,1,1,25,26]]],[22,16,14,26,40,[[700,1,1,26,27],[702,4,3,27,30],[704,1,1,30,31],[710,1,1,31,32],[711,2,2,32,34],[715,3,2,34,36],[716,1,1,36,37],[718,1,1,37,38],[735,1,1,38,39],[736,1,1,39,40]]],[23,5,5,40,45,[[761,1,1,40,41],[769,1,1,41,42],[775,1,1,42,43],[793,1,1,43,44],[795,1,1,44,45]]],[24,1,1,45,46,[[797,1,1,45,46]]],[25,3,3,46,49,[[818,1,1,46,47],[821,1,1,47,48],[835,1,1,48,49]]],[30,1,1,49,50,[[888,1,1,49,50]]],[32,1,1,50,51,[[898,1,1,50,51]]],[34,1,1,51,52,[[904,1,1,51,52]]]],[6641,8619,10083,10084,12962,13257,13463,13590,13852,14002,14046,14134,14757,14918,14995,15028,15076,15419,15430,15540,16312,16372,16604,16641,16652,17499,18068,18099,18113,18116,18135,18274,18284,18295,18375,18376,18404,18446,18780,18790,19369,19564,19703,20143,20265,20323,20848,20935,21327,22513,22654,22757]]],["+",[11,11,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]],[18,4,4,2,6,[[495,1,1,2,3],[550,1,1,3,4],[579,1,1,4,5],[621,1,1,5,6]]],[19,1,1,6,7,[[636,1,1,6,7]]],[22,2,2,7,9,[[702,1,1,7,8],[710,1,1,8,9]]],[23,1,1,9,10,[[769,1,1,9,10]]],[24,1,1,10,11,[[797,1,1,10,11]]]],[8619,13590,14134,15028,15540,16312,16641,18113,18274,19564,20323]]],["High",[1,1,[[18,1,1,0,1,[[533,1,1,0,1]]]],[14757]]],["above",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14046]]],["dignity",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17499]]],["haughty",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18099]]],["height",[8,7,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,2,1,1,2,[[715,2,1,1,2]]],[23,3,3,2,5,[[775,1,1,2,3],[793,1,1,3,4],[795,1,1,4,5]]],[25,2,2,5,7,[[818,1,1,5,6],[821,1,1,6,7]]]],[10084,18376,19703,20143,20265,20848,20935]]],["heights",[1,1,[[18,1,1,0,1,[[625,1,1,0,1]]]],[16372]]],["high",[24,24,[[11,1,1,0,1,[[331,1,1,0,1]]],[17,3,3,1,4,[[440,1,1,1,2],[451,1,1,2,3],[474,1,1,3,4]]],[18,6,6,4,10,[[484,1,1,4,5],[545,1,1,5,6],[548,1,1,6,7],[552,1,1,7,8],[569,1,1,8,9],[570,1,1,9,10]]],[22,9,9,10,19,[[700,1,1,10,11],[702,1,1,11,12],[704,1,1,12,13],[711,2,2,13,15],[715,1,1,15,16],[718,1,1,16,17],[735,1,1,17,18],[736,1,1,18,19]]],[23,1,1,19,20,[[761,1,1,19,20]]],[25,1,1,20,21,[[835,1,1,20,21]]],[30,1,1,21,22,[[888,1,1,21,22]]],[32,1,1,22,23,[[898,1,1,22,23]]],[34,1,1,23,24,[[904,1,1,23,24]]]],[10083,12962,13257,13852,14002,14918,14995,15076,15419,15430,18068,18116,18135,18284,18295,18375,18446,18780,18790,19369,21327,22513,22654,22757]]],["ones",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18116]]],["places",[4,4,[[6,1,1,0,1,[[215,1,1,0,1]]],[17,1,1,1,2,[[460,1,1,1,2]]],[19,2,2,2,4,[[635,1,1,2,3],[636,1,1,3,4]]]],[6641,13463,16604,16652]]],["upward",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18404]]]]},{"k":"H4792","v":[["Merom",[2,2,[[5,2,2,0,2,[[197,2,2,0,2]]]],[6112,6114]]]]},{"k":"H4793","v":[["race",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17486]]]]},{"k":"H4794","v":[["*",[4,3,[[9,2,1,0,1,[[284,2,1,0,1]]],[23,2,2,1,3,[[752,1,1,1,2],[767,1,1,2,3]]]],[8505,19159,19494]]],["course",[2,2,[[23,2,2,0,2,[[752,1,1,0,1],[767,1,1,1,2]]]],[19159,19494]]],["running",[2,1,[[9,2,1,0,1,[[284,2,1,0,1]]]],[8505]]]]},{"k":"H4795","v":[["purifications",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12736]]]]},{"k":"H4796","v":[["Maroth",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22591]]]]},{"k":"H4797","v":[["banquet",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22457]]]]},{"k":"H4798","v":[["mourning",[1,1,[[23,1,1,0,1,[[760,1,1,0,1]]]],[19341]]]]},{"k":"H4799","v":[["plaister",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18411]]]]},{"k":"H4800","v":[["*",[6,6,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,3,3,1,4,[[495,1,1,1,2],[508,1,1,2,3],[595,1,1,3,4]]],[27,1,1,4,5,[[865,1,1,4,5]]],[34,1,1,5,6,[[903,1,1,5,6]]]],[8622,14137,14339,15874,22149,22737]]],["+",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8622]]],["breadth",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22737]]],["place",[3,3,[[18,2,2,0,2,[[495,1,1,0,1],[595,1,1,1,2]]],[27,1,1,2,3,[[865,1,1,2,3]]]],[14137,15874,22149]]],["room",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14339]]]]},{"k":"H4801","v":[["*",[18,18,[[9,1,1,0,1,[[281,1,1,0,1]]],[18,1,1,1,2,[[615,1,1,1,2]]],[19,2,2,2,4,[[652,1,1,2,3],[658,1,1,3,4]]],[22,7,7,4,11,[[686,1,1,4,5],[688,1,1,5,6],[691,1,1,6,7],[695,1,1,7,8],[708,1,1,8,9],[711,1,1,9,10],[724,1,1,10,11]]],[23,5,5,11,16,[[748,1,1,11,12],[749,1,1,12,13],[750,1,1,13,14],[752,1,1,14,15],[775,1,1,15,16]]],[25,1,1,16,17,[[824,1,1,16,17]]],[37,1,1,17,18,[[920,1,1,17,18]]]],[8406,16237,17138,17298,17816,17853,17911,17996,18244,18296,18597,19043,19073,19109,19172,19701,21047,23025]]],["+",[10,10,[[18,1,1,0,1,[[615,1,1,0,1]]],[19,2,2,1,3,[[652,1,1,1,2],[658,1,1,2,3]]],[22,4,4,3,7,[[688,1,1,3,4],[691,1,1,4,5],[695,1,1,5,6],[708,1,1,6,7]]],[23,2,2,7,9,[[749,1,1,7,8],[775,1,1,8,9]]],[25,1,1,9,10,[[824,1,1,9,10]]]],[16237,17138,17298,17853,17911,17996,18244,19073,19701,21047]]],["countries",[1,1,[[37,1,1,0,1,[[920,1,1,0,1]]]],[23025]]],["far",[5,5,[[22,2,2,0,2,[[686,1,1,0,1],[724,1,1,1,2]]],[23,3,3,2,5,[[748,1,1,2,3],[750,1,1,3,4],[752,1,1,4,5]]]],[17816,18597,19043,19109,19172]]],["off",[2,2,[[9,1,1,0,1,[[281,1,1,0,1]]],[22,1,1,1,2,[[711,1,1,1,2]]]],[8406,18296]]]]},{"k":"H4802","v":[["fryingpan",[2,2,[[2,2,2,0,2,[[91,1,1,0,1],[96,1,1,1,2]]]],[2769,2888]]]]},{"k":"H4803","v":[["*",[12,11,[[2,2,2,0,2,[[102,2,2,0,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[14,1,1,3,4,[[411,1,1,3,4]]],[15,1,1,4,5,[[425,1,1,4,5]]],[22,1,1,5,6,[[728,1,1,5,6]]],[25,6,5,6,11,[[822,5,4,6,10],[830,1,1,10,11]]]],[3092,3093,8979,12240,12696,18668,20953,20954,20955,20972,21201]]],["bright",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8979]]],["furbished",[5,4,[[25,5,4,0,4,[[822,5,4,0,4]]]],[20953,20954,20955,20972]]],["hair",[2,2,[[15,1,1,0,1,[[425,1,1,0,1]]],[22,1,1,1,2,[[728,1,1,1,2]]]],[12696,18668]]],["off",[3,3,[[2,2,2,0,2,[[102,2,2,0,2]]],[14,1,1,2,3,[[411,1,1,2,3]]]],[3092,3093,12240]]],["peeled",[1,1,[[25,1,1,0,1,[[830,1,1,0,1]]]],[21201]]]]},{"k":"H4804","v":[["plucked",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21937]]]]},{"k":"H4805","v":[["*",[23,21,[[3,1,1,0,1,[[133,1,1,0,1]]],[4,1,1,1,2,[[183,1,1,1,2]]],[8,1,1,2,3,[[250,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[17,1,1,4,5,[[458,1,1,4,5]]],[19,1,1,5,6,[[644,1,1,5,6]]],[22,1,1,6,7,[[708,1,1,6,7]]],[25,16,14,7,21,[[803,5,4,7,11],[804,3,3,11,14],[813,5,4,14,18],[818,1,1,18,19],[825,1,1,19,20],[845,1,1,20,21]]]],[4254,5755,7583,12528,13421,16884,18226,20497,20498,20499,20500,20511,20528,20529,20682,20683,20689,20705,20837,21059,21605]]],["+",[1,1,[[3,1,1,0,1,[[133,1,1,0,1]]]],[4254]]],["bitter",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13421]]],["rebellion",[4,4,[[4,1,1,0,1,[[183,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[19,1,1,3,4,[[644,1,1,3,4]]]],[5755,7583,12528,16884]]],["rebellious",[17,15,[[22,1,1,0,1,[[708,1,1,0,1]]],[25,16,14,1,15,[[803,5,4,1,5],[804,3,3,5,8],[813,5,4,8,12],[818,1,1,12,13],[825,1,1,13,14],[845,1,1,14,15]]]],[18226,20497,20498,20499,20500,20511,20528,20529,20682,20683,20689,20705,20837,21059,21605]]]]},{"k":"H4806","v":[["*",[8,8,[[9,1,1,0,1,[[272,1,1,0,1]]],[10,3,3,1,4,[[291,3,3,1,4]]],[22,2,2,4,6,[[679,1,1,4,5],[689,1,1,5,6]]],[25,1,1,6,7,[[840,1,1,6,7]]],[29,1,1,7,8,[[883,1,1,7,8]]]],[8170,8726,8736,8742,17665,17890,21466,22445]]],["beasts",[2,2,[[22,1,1,0,1,[[679,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[17665,22445]]],["cattle",[3,3,[[10,3,3,0,3,[[291,3,3,0,3]]]],[8726,8736,8742]]],["fatling",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17890]]],["fatlings",[2,2,[[9,1,1,0,1,[[272,1,1,0,1]]],[25,1,1,1,2,[[840,1,1,1,2]]]],[8170,21466]]]]},{"k":"H4807","v":[["Meribbaal",[3,2,[[12,3,2,0,2,[[345,2,1,0,1],[346,1,1,1,2]]]],[10609,10655]]]]},{"k":"H4808","v":[["*",[5,5,[[0,1,1,0,1,[[12,1,1,0,1]]],[3,1,1,1,2,[[143,1,1,1,2]]],[18,2,2,2,4,[[572,1,1,2,3],[583,1,1,3,4]]],[25,1,1,4,5,[[849,1,1,4,5]]]],[326,4568,15462,15683,21730]]],["provocation",[1,1,[[18,1,1,0,1,[[572,1,1,0,1]]]],[15462]]],["strife",[4,4,[[0,1,1,0,1,[[12,1,1,0,1]]],[3,1,1,1,2,[[143,1,1,1,2]]],[18,1,1,2,3,[[583,1,1,2,3]]],[25,1,1,3,4,[[849,1,1,3,4]]]],[326,4568,15683,21730]]]]},{"k":"H4809","v":[["*",[8,8,[[1,1,1,0,1,[[66,1,1,0,1]]],[3,3,3,1,4,[[136,2,2,1,3],[143,1,1,3,4]]],[4,2,2,4,6,[[184,1,1,4,5],[185,1,1,5,6]]],[18,1,1,6,7,[[558,1,1,6,7]]],[25,1,1,7,8,[[848,1,1,7,8]]]],[1990,4324,4335,4568,5809,5818,15224,21698]]],["+",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5809]]],["Meribah",[6,6,[[1,1,1,0,1,[[66,1,1,0,1]]],[3,3,3,1,4,[[136,2,2,1,3],[143,1,1,3,4]]],[4,1,1,4,5,[[185,1,1,4,5]]],[18,1,1,5,6,[[558,1,1,5,6]]]],[1990,4324,4335,4568,5818,15224]]],["strife",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21698]]]]},{"k":"H4810","v":[["Meribbaal",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10655]]]]},{"k":"H4811","v":[["Meraiah",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12636]]]]},{"k":"H4812","v":[["Meraioth",[7,7,[[12,4,4,0,4,[[343,3,3,0,3],[346,1,1,3,4]]],[14,1,1,4,5,[[409,1,1,4,5]]],[15,2,2,5,7,[[423,1,1,5,6],[424,1,1,6,7]]]],[10460,10461,10506,10626,12176,12599,12639]]]]},{"k":"H4813","v":[["Miriam",[15,13,[[1,2,2,0,2,[[64,2,2,0,2]]],[3,9,7,2,9,[[128,7,5,2,7],[136,1,1,7,8],[142,1,1,8,9]]],[4,1,1,9,10,[[176,1,1,9,10]]],[12,2,2,10,12,[[341,1,1,10,11],[343,1,1,11,12]]],[32,1,1,12,13,[[898,1,1,12,13]]]],[1940,1941,4060,4063,4064,4069,4074,4312,4548,5534,10402,10457,22652]]]]},{"k":"H4814","v":[["bitterness",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20950]]]]},{"k":"H4815","v":[["bitter",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5782]]]]},{"k":"H4816","v":[["faintness",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3560]]]]},{"k":"H4817","v":[["*",[3,3,[[2,1,1,0,1,[[104,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]],[21,1,1,2,3,[[673,1,1,2,3]]]],[3177,8870,17581]]],["+",[1,1,[[2,1,1,0,1,[[104,1,1,0,1]]]],[3177]]],["chariots",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8870]]],["covering",[1,1,[[21,1,1,0,1,[[673,1,1,0,1]]]],[17581]]]]},{"k":"H4818","v":[["*",[44,41,[[0,2,2,0,2,[[40,1,1,0,1],[45,1,1,1,2]]],[1,2,2,2,4,[[63,1,1,2,3],[64,1,1,3,4]]],[5,2,2,4,6,[[197,2,2,4,6]]],[6,2,2,6,8,[[214,1,1,6,7],[215,1,1,7,8]]],[8,2,1,8,9,[[243,2,1,8,9]]],[9,1,1,9,10,[[281,1,1,9,10]]],[10,5,5,10,15,[[297,1,1,10,11],[300,1,1,11,12],[302,1,1,12,13],[310,1,1,13,14],[312,1,1,14,15]]],[11,5,5,15,20,[[317,2,2,15,17],[321,1,1,17,18],[322,1,1,18,19],[335,1,1,19,20]]],[12,1,1,20,21,[[365,1,1,20,21]]],[13,6,6,21,27,[[367,1,1,21,22],[375,1,1,22,23],[376,1,1,23,24],[380,1,1,24,25],[384,1,1,25,26],[401,1,1,26,27]]],[21,1,1,27,28,[[676,1,1,27,28]]],[22,3,3,28,31,[[680,1,1,28,29],[700,1,1,29,30],[744,1,1,30,31]]],[23,1,1,31,32,[[748,1,1,31,32]]],[28,1,1,32,33,[[877,1,1,32,33]]],[32,2,2,33,35,[[893,1,1,33,34],[897,1,1,34,35]]],[33,1,1,35,36,[[902,1,1,35,36]]],[34,1,1,36,37,[[905,1,1,36,37]]],[36,1,1,37,38,[[910,1,1,37,38]]],[37,5,3,38,41,[[916,5,3,38,41]]]],[1238,1415,1914,1924,6113,6116,6614,6651,7380,8390,8967,9108,9169,9441,9515,9668,9673,9783,9808,10176,11161,11211,11389,11413,11484,11576,11990,17626,17692,18070,18937,19040,22316,22592,22643,22714,22776,22877,22948,22949,22950]]],["+",[1,1,[[37,1,1,0,1,[[916,1,1,0,1]]]],[22948]]],["chariot",[23,21,[[0,2,2,0,2,[[40,1,1,0,1],[45,1,1,1,2]]],[1,1,1,2,3,[[63,1,1,2,3]]],[6,1,1,3,4,[[214,1,1,3,4]]],[10,5,5,4,9,[[297,1,1,4,5],[300,1,1,5,6],[302,1,1,6,7],[310,1,1,7,8],[312,1,1,8,9]]],[11,4,4,9,13,[[317,2,2,9,11],[321,1,1,11,12],[322,1,1,12,13]]],[12,1,1,13,14,[[365,1,1,13,14]]],[13,4,4,14,18,[[367,1,1,14,15],[376,1,1,15,16],[384,1,1,16,17],[401,1,1,17,18]]],[32,1,1,18,19,[[893,1,1,18,19]]],[37,4,2,19,21,[[916,4,2,19,21]]]],[1238,1415,1914,6614,8967,9108,9169,9441,9515,9668,9673,9783,9808,11161,11211,11413,11576,11990,22592,22949,22950]]],["chariots",[20,19,[[1,1,1,0,1,[[64,1,1,0,1]]],[5,2,2,1,3,[[197,2,2,1,3]]],[6,1,1,3,4,[[215,1,1,3,4]]],[8,2,1,4,5,[[243,2,1,4,5]]],[9,1,1,5,6,[[281,1,1,5,6]]],[11,1,1,6,7,[[335,1,1,6,7]]],[13,2,2,7,9,[[375,1,1,7,8],[380,1,1,8,9]]],[21,1,1,9,10,[[676,1,1,9,10]]],[22,3,3,10,13,[[680,1,1,10,11],[700,1,1,11,12],[744,1,1,12,13]]],[23,1,1,13,14,[[748,1,1,13,14]]],[28,1,1,14,15,[[877,1,1,14,15]]],[32,1,1,15,16,[[897,1,1,15,16]]],[33,1,1,16,17,[[902,1,1,16,17]]],[34,1,1,17,18,[[905,1,1,17,18]]],[36,1,1,18,19,[[910,1,1,18,19]]]],[1924,6113,6116,6651,7380,8390,10176,11389,11484,17626,17692,18070,18937,19040,22316,22643,22714,22776,22877]]]]},{"k":"H4819","v":[["merchandise",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21145]]]]},{"k":"H4820","v":[["*",[39,38,[[0,2,2,0,2,[[26,1,1,0,1],[33,1,1,1,2]]],[11,1,1,2,3,[[321,1,1,2,3]]],[17,2,2,3,5,[[450,1,1,3,4],[466,1,1,4,5]]],[18,14,14,5,19,[[482,1,1,5,6],[487,1,1,6,7],[494,1,1,7,8],[501,1,1,8,9],[511,1,1,9,10],[512,1,1,10,11],[513,1,1,11,12],[515,1,1,12,13],[520,1,1,13,14],[527,1,1,14,15],[529,1,1,15,16],[532,2,2,16,18],[586,1,1,18,19]]],[19,8,8,19,27,[[638,1,1,19,20],[639,3,3,20,23],[641,2,2,23,25],[647,1,1,25,26],[653,1,1,26,27]]],[22,1,1,27,28,[[731,1,1,27,28]]],[23,4,3,28,31,[[749,1,1,28,29],[753,3,2,29,31]]],[26,2,2,31,33,[[857,1,1,31,32],[860,1,1,32,33]]],[27,2,2,33,35,[[872,1,1,33,34],[873,1,1,34,35]]],[29,1,1,35,36,[[886,1,1,35,36]]],[32,1,1,36,37,[[898,1,1,36,37]]],[35,1,1,37,38,[[906,1,1,37,38]]]],[762,993,9779,13238,13593,13979,14048,14104,14245,14401,14430,14441,14502,14567,14687,14714,14743,14755,15757,16689,16724,16736,16739,16780,16797,16977,17165,18720,19085,19181,19183,21986,22059,22252,22259,22486,22659,22796]]],["Deceit",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16739]]],["craft",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21986]]],["deceit",[18,17,[[17,2,2,0,2,[[450,1,1,0,1],[466,1,1,1,2]]],[18,3,3,2,5,[[487,1,1,2,3],[513,1,1,3,4],[527,1,1,4,5]]],[19,4,4,5,9,[[639,2,2,5,7],[641,1,1,7,8],[653,1,1,8,9]]],[22,1,1,9,10,[[731,1,1,9,10]]],[23,4,3,10,13,[[749,1,1,10,11],[753,3,2,11,13]]],[27,2,2,13,15,[[872,1,1,13,14],[873,1,1,14,15]]],[29,1,1,15,16,[[886,1,1,15,16]]],[35,1,1,16,17,[[906,1,1,16,17]]]],[13238,13593,14048,14441,14687,16724,16736,16780,17165,18720,19085,19181,19183,22252,22259,22486,22796]]],["deceitful",[8,8,[[18,6,6,0,6,[[482,1,1,0,1],[512,1,1,1,2],[520,1,1,2,3],[529,1,1,3,4],[532,1,1,4,5],[586,1,1,5,6]]],[19,1,1,6,7,[[641,1,1,6,7]]],[32,1,1,7,8,[[898,1,1,7,8]]]],[13979,14430,14567,14714,14755,15757,16797,22659]]],["deceitfully",[3,3,[[0,1,1,0,1,[[33,1,1,0,1]]],[18,1,1,1,2,[[501,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[993,14245,22059]]],["deceits",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14502]]],["false",[2,2,[[19,2,2,0,2,[[638,1,1,0,1],[647,1,1,1,2]]]],[16689,16977]]],["feigned",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14104]]],["guile",[2,2,[[18,2,2,0,2,[[511,1,1,0,1],[532,1,1,1,2]]]],[14401,14743]]],["subtilty",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[762]]],["treachery",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9779]]]]},{"k":"H4821","v":[["Mirma",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10585]]]]},{"k":"H4822","v":[["Meremoth",[6,6,[[14,2,2,0,2,[[410,1,1,0,1],[412,1,1,1,2]]],[15,4,4,2,6,[[415,2,2,2,4],[422,1,1,4,5],[424,1,1,5,6]]]],[12234,12288,12331,12348,12554,12627]]]]},{"k":"H4823","v":[["*",[7,7,[[22,4,4,0,4,[[683,1,1,0,1],[685,1,1,1,2],[688,1,1,2,3],[706,1,1,3,4]]],[25,1,1,4,5,[[835,1,1,4,5]]],[26,1,1,5,6,[[857,1,1,5,6]]],[32,1,1,6,7,[[899,1,1,6,7]]]],[17744,17807,17856,18182,21332,21974,22674]]],["down",[4,4,[[22,3,3,0,3,[[683,1,1,0,1],[688,1,1,1,2],[706,1,1,2,3]]],[32,1,1,3,4,[[899,1,1,3,4]]]],[17744,17856,18182,22674]]],["foot",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21974]]],["treading",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17807]]],["trodden",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21332]]]]},{"k":"H4824","v":[["Meronothite",[2,2,[[12,1,1,0,1,[[364,1,1,0,1]]],[15,1,1,1,2,[[415,1,1,1,2]]]],[11139,12334]]]]},{"k":"H4825","v":[["Meres",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12716]]]]},{"k":"H4826","v":[["Marsena",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12716]]]]},{"k":"H4827","v":[["mischief",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22063]]]]},{"k":"H4828","v":[["*",[7,7,[[0,1,1,0,1,[[25,1,1,0,1]]],[6,4,4,1,5,[[224,2,2,1,3],[225,2,2,3,5]]],[9,1,1,5,6,[[269,1,1,5,6]]],[19,1,1,6,7,[[646,1,1,6,7]]]],[718,6920,6929,6931,6935,8089,16932]]],["companion",[3,3,[[6,3,3,0,3,[[224,1,1,0,1],[225,2,2,1,3]]]],[6929,6931,6935]]],["companions",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6920]]],["friends",[3,3,[[0,1,1,0,1,[[25,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]],[19,1,1,2,3,[[646,1,1,2,3]]]],[718,8089,16932]]]]},{"k":"H4829","v":[["*",[13,11,[[0,1,1,0,1,[[46,1,1,0,1]]],[12,3,3,1,4,[[341,3,3,1,4]]],[17,1,1,4,5,[[474,1,1,4,5]]],[22,1,1,5,6,[[710,1,1,5,6]]],[24,1,1,6,7,[[797,1,1,6,7]]],[25,4,2,7,9,[[835,4,2,7,9]]],[28,1,1,9,10,[[876,1,1,9,10]]],[33,1,1,10,11,[[901,1,1,10,11]]]],[1424,10424,10425,10426,13842,18273,20316,21327,21331,22309,22710]]],["feedingplace",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22710]]],["pasture",[11,10,[[0,1,1,0,1,[[46,1,1,0,1]]],[12,3,3,1,4,[[341,3,3,1,4]]],[17,1,1,4,5,[[474,1,1,4,5]]],[22,1,1,5,6,[[710,1,1,5,6]]],[24,1,1,6,7,[[797,1,1,6,7]]],[25,3,2,7,9,[[835,3,2,7,9]]],[28,1,1,9,10,[[876,1,1,9,10]]]],[1424,10424,10425,10426,13842,18273,20316,21327,21331,22309]]],["pastures",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21331]]]]},{"k":"H4830","v":[["*",[10,10,[[18,4,4,0,4,[[551,1,1,0,1],[556,1,1,1,2],[572,1,1,2,3],[577,1,1,3,4]]],[22,1,1,4,5,[[727,1,1,4,5]]],[23,3,3,5,8,[[754,1,1,5,6],[767,1,1,6,7],[769,1,1,7,8]]],[25,1,1,8,9,[[835,1,1,8,9]]],[27,1,1,9,10,[[874,1,1,9,10]]]],[15049,15198,15461,15511,18645,19222,19485,19570,21344,22272]]],["flocks",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19222]]],["pasture",[8,8,[[18,4,4,0,4,[[551,1,1,0,1],[556,1,1,1,2],[572,1,1,2,3],[577,1,1,3,4]]],[23,2,2,4,6,[[767,1,1,4,5],[769,1,1,5,6]]],[25,1,1,6,7,[[835,1,1,6,7]]],[27,1,1,7,8,[[874,1,1,7,8]]]],[15049,15198,15461,15511,19485,19570,21344,22272]]],["pastures",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18645]]]]},{"k":"H4831","v":[["Maralah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6332]]]]},{"k":"H4832","v":[["*",[16,15,[[13,2,2,0,2,[[387,1,1,0,1],[402,1,1,1,2]]],[19,8,8,2,10,[[631,1,1,2,3],[633,1,1,3,4],[639,1,1,4,5],[640,1,1,5,6],[641,1,1,6,7],[642,1,1,7,8],[643,1,1,8,9],[656,1,1,9,10]]],[20,1,1,10,11,[[668,1,1,10,11]]],[23,4,3,11,14,[[752,1,1,11,12],[758,2,1,12,13],[777,1,1,13,14]]],[38,1,1,14,15,[[928,1,1,14,15]]]],[11642,12009,16512,16555,16737,16764,16802,16811,16864,17225,17497,19168,19312,19781,23140]]],["+",[1,1,[[13,1,1,0,1,[[387,1,1,0,1]]]],[11642]]],["cure",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19781]]],["healing",[3,2,[[23,2,1,0,1,[[758,2,1,0,1]]],[38,1,1,1,2,[[928,1,1,1,2]]]],[19312,23140]]],["health",[5,5,[[19,4,4,0,4,[[631,1,1,0,1],[639,1,1,1,2],[640,1,1,2,3],[643,1,1,3,4]]],[23,1,1,4,5,[[752,1,1,4,5]]]],[16512,16737,16764,16864,19168]]],["remedy",[3,3,[[13,1,1,0,1,[[402,1,1,0,1]]],[19,2,2,1,3,[[633,1,1,1,2],[656,1,1,2,3]]]],[12009,16555,17225]]],["sound",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16802]]],["wholesome",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16811]]],["yielding",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17497]]]]},{"k":"H4833","v":[["fouled",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21332]]]]},{"k":"H4834","v":[["*",[4,4,[[10,1,1,0,1,[[292,1,1,0,1]]],[17,2,2,1,3,[[441,1,1,1,2],[451,1,1,2,3]]],[32,1,1,3,4,[[894,1,1,3,4]]]],[8778,13003,13241,22605]]],["emboldeneth",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13241]]],["forcible",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[13003]]],["grievous",[1,1,[[10,1,1,0,1,[[292,1,1,0,1]]]],[8778]]],["sore",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22605]]]]},{"k":"H4835","v":[["violence",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19471]]]]},{"k":"H4836","v":[["aul",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[4,1,1,1,2,[[167,1,1,1,2]]]],[2083,5336]]]]},{"k":"H4837","v":[["pavement",[1,1,[[11,1,1,0,1,[[328,1,1,0,1]]]],[9980]]]]},{"k":"H4838","v":[["*",[3,3,[[2,1,1,0,1,[[95,1,1,0,1]]],[13,1,1,1,2,[[370,1,1,1,2]]],[23,1,1,2,3,[[790,1,1,2,3]]]],[2877,11262,20049]]],["bright",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11262]]],["furbish",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20049]]],["scoured",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2877]]]]},{"k":"H4839","v":[["broth",[2,2,[[6,2,2,0,2,[[216,2,2,0,2]]]],[6673,6674]]]]},{"k":"H4840","v":[["sweet",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17611]]]]},{"k":"H4841","v":[["*",[2,2,[[17,1,1,0,1,[[476,1,1,0,1]]],[25,1,1,1,2,[[825,1,1,1,2]]]],[13919,21066]]],["+",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21066]]],["ointment",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13919]]]]},{"k":"H4842","v":[["*",[3,3,[[1,1,1,0,1,[[79,1,1,0,1]]],[12,1,1,1,2,[[346,1,1,1,2]]],[13,1,1,2,3,[[382,1,1,2,3]]]],[2407,10645,11523]]],["+",[1,1,[[13,1,1,0,1,[[382,1,1,0,1]]]],[11523]]],["compound",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2407]]],["ointment",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10645]]]]},{"k":"H4843","v":[["*",[16,15,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[50,1,1,1,2],[72,1,1,2,3]]],[7,2,2,3,5,[[232,2,2,3,5]]],[8,1,1,5,6,[[265,1,1,5,6]]],[11,1,1,6,7,[[316,1,1,6,7]]],[17,1,1,7,8,[[462,1,1,7,8]]],[22,3,3,8,11,[[700,1,1,8,9],[702,1,1,9,10],[716,1,1,10,11]]],[24,1,1,11,12,[[797,1,1,11,12]]],[26,2,2,12,14,[[857,1,1,12,13],[860,1,1,13,14]]],[37,2,1,14,15,[[922,2,1,14,15]]]],[1496,1546,2165,7140,7147,7984,9630,13483,18056,18104,18407,20314,21968,22047,23055]]],["+",[2,2,[[7,1,1,0,1,[[232,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]]],[7147,18407]]],["bitter",[2,2,[[1,1,1,0,1,[[50,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]]],[1546,18104]]],["bitterly",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18056]]],["bitterness",[3,2,[[24,1,1,0,1,[[797,1,1,0,1]]],[37,2,1,1,2,[[922,2,1,1,2]]]],[20314,23055]]],["choler",[2,2,[[26,2,2,0,2,[[857,1,1,0,1],[860,1,1,1,2]]]],[21968,22047]]],["grieved",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[8,1,1,1,2,[[265,1,1,1,2]]]],[1496,7984]]],["grieveth",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7140]]],["provoke",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2165]]],["vexed",[2,2,[[11,1,1,0,1,[[316,1,1,0,1]]],[17,1,1,1,2,[[462,1,1,1,2]]]],[9630,13483]]]]},{"k":"H4844","v":[["*",[3,3,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[125,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]]],[1824,3976,20369]]],["bitter",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[125,1,1,1,2]]]],[1824,3976]]],["bitterness",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20369]]]]},{"k":"H4845","v":[["gall",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13251]]]]},{"k":"H4846","v":[["*",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,3,3,1,4,[[448,1,1,1,2],[455,2,2,2,4]]]],[5790,13179,13340,13351]]],["+",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13351]]],["bitter",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5790]]],["gall",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13340]]],["things",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13179]]]]},{"k":"H4847","v":[["Merari",[39,38,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,2,2,1,3,[[55,2,2,1,3]]],[3,13,12,3,15,[[119,6,5,3,8],[120,4,4,8,12],[123,1,1,12,13],[126,1,1,13,14],[142,1,1,14,15]]],[5,3,3,15,18,[[207,3,3,15,18]]],[12,17,17,18,35,[[343,8,8,18,26],[346,1,1,26,27],[352,2,2,27,29],[360,2,2,29,31],[361,2,2,31,33],[363,2,2,33,35]]],[13,2,2,35,37,[[395,1,1,35,36],[400,1,1,36,37]]],[14,1,1,37,38,[[410,1,1,37,38]]]],[1397,1671,1674,3709,3712,3725,3727,3728,3772,3776,3785,3788,3858,4005,4546,6388,6415,6421,10455,10470,10473,10483,10498,10501,10517,10531,10629,10797,10808,10989,11004,11041,11042,11087,11096,11803,11945,12220]]]]},{"k":"H4848","v":[["Merarites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4546]]]]},{"k":"H4849","v":[["woman",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11684]]]]},{"k":"H4850","v":[["Merathaim",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20187]]]]},{"k":"H4851","v":[["Mash",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[257]]]]},{"k":"H4852","v":[["+",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[264]]]]},{"k":"H4853","v":[["*",[65,59,[[1,1,1,0,1,[[72,1,1,0,1]]],[3,11,10,1,11,[[120,9,8,1,9],[127,2,2,9,11]]],[4,1,1,11,12,[[153,1,1,11,12]]],[9,2,2,12,14,[[281,1,1,12,13],[285,1,1,13,14]]],[11,3,3,14,17,[[317,1,1,14,15],[320,1,1,15,16],[321,1,1,16,17]]],[12,3,2,17,19,[[352,3,2,17,19]]],[13,4,4,19,23,[[383,1,1,19,20],[386,1,1,20,21],[390,1,1,21,22],[401,1,1,22,23]]],[15,2,2,23,25,[[425,2,2,23,25]]],[17,1,1,25,26,[[442,1,1,25,26]]],[18,1,1,26,27,[[515,1,1,26,27]]],[19,2,2,27,29,[[657,1,1,27,28],[658,1,1,28,29]]],[22,14,14,29,43,[[691,1,1,29,30],[692,1,1,30,31],[693,1,1,31,32],[695,1,1,32,33],[697,1,1,33,34],[699,3,3,34,37],[700,2,2,37,39],[701,1,1,39,40],[708,1,1,40,41],[724,2,2,41,43]]],[23,12,8,43,51,[[761,4,4,43,47],[767,8,4,47,51]]],[25,2,2,51,53,[[813,1,1,51,52],[825,1,1,52,53]]],[27,1,1,53,54,[[869,1,1,53,54]]],[33,1,1,54,55,[[900,1,1,54,55]]],[34,1,1,55,56,[[903,1,1,55,56]]],[37,2,2,56,58,[[919,1,1,56,57],[922,1,1,57,58]]],[38,1,1,58,59,[[925,1,1,58,59]]]],[2149,3758,3762,3767,3770,3774,3775,3790,3792,4035,4041,4904,8422,8546,9664,9736,9781,10813,10818,11534,11612,11704,11969,12686,12690,13028,14494,17252,17285,17907,17956,17961,17984,18005,18036,18046,18048,18053,18077,18078,18223,18587,18588,19378,19379,19381,19384,19517,19518,19520,19522,20690,21081,22204,22685,22732,23000,23046,23090]]],["+",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22204]]],["away",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11612]]],["burden",[51,47,[[1,1,1,0,1,[[72,1,1,0,1]]],[3,8,8,1,9,[[120,6,6,1,7],[127,2,2,7,9]]],[4,1,1,9,10,[[153,1,1,9,10]]],[9,2,2,10,12,[[281,1,1,10,11],[285,1,1,11,12]]],[11,3,3,12,15,[[317,1,1,12,13],[320,1,1,13,14],[321,1,1,14,15]]],[13,1,1,15,16,[[401,1,1,15,16]]],[15,1,1,16,17,[[425,1,1,16,17]]],[17,1,1,17,18,[[442,1,1,17,18]]],[18,1,1,18,19,[[515,1,1,18,19]]],[22,14,14,19,33,[[691,1,1,19,20],[692,1,1,20,21],[693,1,1,21,22],[695,1,1,22,23],[697,1,1,23,24],[699,3,3,24,27],[700,2,2,27,29],[701,1,1,29,30],[708,1,1,30,31],[724,2,2,31,33]]],[23,12,8,33,41,[[761,4,4,33,37],[767,8,4,37,41]]],[25,1,1,41,42,[[813,1,1,41,42]]],[33,1,1,42,43,[[900,1,1,42,43]]],[34,1,1,43,44,[[903,1,1,43,44]]],[37,2,2,44,46,[[919,1,1,44,45],[922,1,1,45,46]]],[38,1,1,46,47,[[925,1,1,46,47]]]],[2149,3758,3762,3774,3775,3790,3792,4035,4041,4904,8422,8546,9664,9736,9781,11969,12690,13028,14494,17907,17956,17961,17984,18005,18036,18046,18048,18053,18077,18078,18223,18587,18588,19378,19379,19381,19384,19517,19518,19520,19522,20690,22685,22732,23000,23046,23090]]],["burdens",[5,4,[[3,3,2,0,2,[[120,3,2,0,2]]],[13,1,1,2,3,[[390,1,1,2,3]]],[15,1,1,3,4,[[425,1,1,3,4]]]],[3767,3770,11704,12686]]],["prophecy",[2,2,[[19,2,2,0,2,[[657,1,1,0,1],[658,1,1,1,2]]]],[17252,17285]]],["set",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21081]]],["song",[3,2,[[12,3,2,0,2,[[352,3,2,0,2]]]],[10813,10818]]],["tribute",[1,1,[[13,1,1,0,1,[[383,1,1,0,1]]]],[11534]]]]},{"k":"H4854","v":[["Massa",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[672,10282]]]]},{"k":"H4855","v":[["*",[3,3,[[15,3,3,0,3,[[417,2,2,0,2],[422,1,1,2,3]]]],[12389,12392,12580]]],["exaction",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12580]]],["usury",[2,2,[[15,2,2,0,2,[[417,2,2,0,2]]]],[12389,12392]]]]},{"k":"H4856","v":[["respect",[1,1,[[13,1,1,0,1,[[385,1,1,0,1]]]],[11583]]]]},{"k":"H4857","v":[["water",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6634]]]]},{"k":"H4858","v":[["burden",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18244]]]]},{"k":"H4859","v":[["*",[2,2,[[4,1,1,0,1,[[176,1,1,0,1]]],[19,1,1,1,2,[[649,1,1,1,2]]]],[5535,17041]]],["debts",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17041]]],["thing",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5535]]]]},{"k":"H4860","v":[["deceit",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17167]]]]},{"k":"H4861","v":[["*",[2,2,[[5,2,2,0,2,[[205,1,1,0,1],[207,1,1,1,2]]]],[6347,6411]]],["Mishal",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6411]]],["Misheal",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6347]]]]},{"k":"H4862","v":[["*",[2,2,[[18,2,2,0,2,[[497,1,1,0,1],[514,1,1,1,2]]]],[14187,14454]]],["desires",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14454]]],["petitions",[1,1,[[18,1,1,0,1,[[497,1,1,0,1]]]],[14187]]]]},{"k":"H4863","v":[["*",[4,4,[[1,2,2,0,2,[[57,1,1,0,1],[61,1,1,1,2]]],[4,2,2,2,4,[[180,2,2,2,4]]]],[1713,1850,5616,5628]]],["kneadingtroughs",[2,2,[[1,2,2,0,2,[[57,1,1,0,1],[61,1,1,1,2]]]],[1713,1850]]],["store",[2,2,[[4,2,2,0,2,[[180,2,2,0,2]]]],[5616,5628]]]]},{"k":"H4864","v":[["*",[16,14,[[0,3,1,0,1,[[42,3,1,0,1]]],[6,2,2,1,3,[[230,2,2,1,3]]],[9,1,1,3,4,[[277,1,1,3,4]]],[13,2,2,4,6,[[390,2,2,4,6]]],[16,1,1,6,7,[[427,1,1,6,7]]],[18,1,1,7,8,[[618,1,1,7,8]]],[23,2,2,8,10,[[750,1,1,8,9],[784,1,1,9,10]]],[24,1,1,10,11,[[798,1,1,10,11]]],[25,1,1,11,12,[[821,1,1,11,12]]],[29,1,1,12,13,[[883,1,1,12,13]]],[35,1,1,13,14,[[908,1,1,13,14]]]],[1324,7092,7094,8267,11683,11686,12742,16278,19090,19946,20346,20935,22434,22838]]],["+",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1324]]],["burden",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22838]]],["burdens",[2,2,[[24,1,1,0,1,[[798,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[20346,22434]]],["collection",[2,2,[[13,2,2,0,2,[[390,2,2,0,2]]]],[11683,11686]]],["fire",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19090]]],["flame",[2,2,[[6,2,2,0,2,[[230,2,2,0,2]]]],[7092,7094]]],["gifts",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12742]]],["mess",[2,2,[[0,1,1,0,1,[[42,1,1,0,1]]],[9,1,1,1,2,[[277,1,1,1,2]]]],[1324,8267]]],["messes",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1324]]],["oblations",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20935]]],["reward",[1,1,[[23,1,1,0,1,[[784,1,1,0,1]]]],[19946]]],["up",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16278]]]]},{"k":"H4865","v":[["*",[9,9,[[1,8,8,0,8,[[77,4,4,0,4],[88,4,4,4,8]]],[18,1,1,8,9,[[522,1,1,8,9]]]],[2304,2306,2307,2318,2670,2677,2680,2682,14610]]],["+",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14610]]],["ouches",[8,8,[[1,8,8,0,8,[[77,4,4,0,4],[88,4,4,4,8]]]],[2304,2306,2307,2318,2670,2677,2680,2682]]]]},{"k":"H4866","v":[["*",[3,3,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]],[27,1,1,2,3,[[874,1,1,2,3]]]],[10064,18355,22279]]],["birth",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10064,18355]]],["forth",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22279]]]]},{"k":"H4867","v":[["*",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,3,3,1,4,[[519,1,1,1,2],[565,1,1,2,3],[570,1,1,3,4]]],[31,1,1,4,5,[[890,1,1,4,5]]]],[8607,14562,15315,15430,22551]]],["billows",[1,1,[[31,1,1,0,1,[[890,1,1,0,1]]]],[22551]]],["waves",[4,4,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,3,3,1,4,[[519,1,1,1,2],[565,1,1,2,3],[570,1,1,3,4]]]],[8607,14562,15315,15430]]]]},{"k":"H4868","v":[["sabbaths",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20317]]]]},{"k":"H4869","v":[["*",[17,16,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,13,12,1,13,[[486,2,1,1,2],[495,1,1,2,3],[523,2,2,3,5],[525,1,1,5,6],[536,3,3,6,9],[539,2,2,9,11],[571,1,1,11,12],[621,1,1,12,13]]],[22,2,2,13,15,[[703,1,1,13,14],[711,1,1,14,15]]],[23,1,1,15,16,[[792,1,1,15,16]]]],[8605,14030,14120,14621,14625,14637,14799,14806,14807,14829,14833,15453,16307,18130,18295,20081]]],["Misgab",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20081]]],["defence",[7,7,[[18,6,6,0,6,[[536,3,3,0,3],[539,2,2,3,5],[571,1,1,5,6]]],[22,1,1,6,7,[[711,1,1,6,7]]]],[14799,14806,14807,14829,14833,15453,18295]]],["fort",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18130]]],["refuge",[5,4,[[18,5,4,0,4,[[486,2,1,0,1],[523,2,2,1,3],[525,1,1,3,4]]]],[14030,14621,14625,14637]]],["tower",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,2,2,1,3,[[495,1,1,1,2],[621,1,1,2,3]]]],[8605,14120,16307]]]]},{"k":"H4870","v":[["oversight",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1302]]]]},{"k":"H4871","v":[["drew",[3,3,[[1,1,1,0,1,[[51,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]]],[1564,8619,14134]]]]},{"k":"H4872","v":[["*",[765,703,[[1,290,261,0,261,[[51,8,6,0,6],[52,9,8,6,14],[53,15,13,14,27],[54,4,4,27,31],[55,13,12,31,43],[56,8,8,43,51],[57,14,13,51,64],[58,13,12,64,76],[59,12,12,76,88],[60,5,5,88,93],[61,7,7,93,100],[62,3,3,100,103],[63,8,8,103,111],[64,3,3,111,114],[65,17,16,114,130],[66,13,11,130,141],[67,20,15,141,156],[68,14,12,156,168],[69,4,4,168,172],[73,14,12,172,184],[74,1,1,184,185],[79,4,4,185,189],[80,3,3,189,192],[81,17,16,192,208],[82,10,8,208,216],[83,15,10,216,226],[84,5,5,226,231],[85,4,4,231,235],[87,2,2,235,237],[88,12,11,237,248],[89,13,13,248,261]]],[2,86,80,261,341,[[90,1,1,261,262],[93,1,1,262,263],[94,1,1,263,264],[95,4,4,264,268],[96,3,3,268,271],[97,25,20,271,291],[98,7,7,291,298],[99,10,10,298,308],[100,1,1,308,309],[101,1,1,309,310],[102,1,1,310,311],[103,2,2,311,313],[104,1,1,313,314],[105,3,3,314,317],[106,1,1,317,318],[107,1,1,318,319],[108,1,1,319,320],[109,1,1,320,321],[110,3,3,321,324],[111,3,3,324,327],[112,6,6,327,333],[113,5,4,333,337],[114,1,1,337,338],[115,1,1,338,339],[116,2,2,339,341]]],[3,233,216,341,557,[[117,6,6,341,347],[118,3,3,347,350],[119,14,12,350,362],[120,12,9,362,371],[121,4,4,371,375],[122,2,2,375,377],[123,5,5,377,382],[124,8,7,382,389],[125,7,7,389,396],[126,5,4,396,400],[127,14,11,400,411],[128,9,9,411,420],[129,7,6,420,426],[130,9,9,426,435],[131,8,8,435,443],[132,21,21,443,464],[133,8,8,464,472],[134,1,1,472,473],[135,1,1,473,474],[136,13,12,474,486],[137,8,7,486,493],[141,5,5,493,498],[142,8,8,498,506],[143,9,9,506,515],[144,1,1,515,516],[145,2,1,516,517],[146,2,2,517,519],[147,21,18,519,537],[148,8,8,537,545],[149,3,3,545,548],[150,3,3,548,551],[151,2,2,551,553],[152,4,4,553,557]]],[4,38,35,557,592,[[153,3,3,557,560],[156,4,4,560,564],[157,1,1,564,565],[179,3,3,565,568],[181,2,2,568,570],[183,11,10,570,580],[184,3,3,580,583],[185,2,2,583,585],[186,9,7,585,592]]],[5,58,51,592,643,[[187,11,9,592,601],[189,1,1,601,602],[190,3,3,602,605],[194,5,4,605,609],[195,1,1,609,610],[197,6,4,610,614],[198,2,1,614,615],[199,9,8,615,623],[200,8,8,623,631],[203,1,1,631,632],[204,1,1,632,633],[206,1,1,633,634],[207,2,2,634,636],[208,5,5,636,641],[209,1,1,641,642],[210,1,1,642,643]]],[6,4,4,643,647,[[211,2,2,643,645],[213,1,1,645,646],[214,1,1,646,647]]],[8,2,2,647,649,[[247,2,2,647,649]]],[10,4,4,649,653,[[292,1,1,649,650],[298,3,3,650,653]]],[11,6,6,653,659,[[326,1,1,653,654],[330,3,3,654,657],[333,1,1,657,658],[335,1,1,658,659]]],[12,9,9,659,668,[[343,2,2,659,661],[352,1,1,661,662],[358,1,1,662,663],[359,1,1,663,664],[360,3,3,664,667],[363,1,1,667,668]]],[13,12,12,668,680,[[367,1,1,668,669],[371,1,1,669,670],[374,1,1,670,671],[389,1,1,671,672],[390,2,2,672,674],[391,1,1,674,675],[396,1,1,675,676],[399,1,1,676,677],[400,1,1,677,678],[401,2,2,678,680]]],[14,2,2,680,682,[[405,1,1,680,681],[409,1,1,681,682]]],[15,7,7,682,689,[[413,2,2,682,684],[420,2,2,684,686],[421,1,1,686,687],[422,1,1,687,688],[425,1,1,688,689]]],[18,7,7,689,696,[[554,1,1,689,690],[576,1,1,690,691],[580,1,1,691,692],[582,1,1,692,693],[583,3,3,693,696]]],[22,2,2,696,698,[[741,2,2,696,698]]],[23,1,1,698,699,[[759,1,1,698,699]]],[26,2,2,699,701,[[858,2,2,699,701]]],[32,1,1,701,702,[[898,1,1,701,702]]],[38,1,1,702,703,[[928,1,1,702,703]]]],[1564,1565,1568,1569,1571,1575,1580,1582,1583,1585,1590,1592,1593,1594,1602,1604,1605,1611,1615,1619,1620,1621,1622,1628,1629,1630,1631,1633,1636,1652,1654,1656,1657,1664,1665,1667,1668,1675,1681,1682,1683,1684,1685,1686,1691,1692,1693,1695,1699,1704,1705,1711,1715,1718,1719,1722,1723,1726,1730,1735,1736,1739,1740,1741,1743,1750,1752,1753,1754,1755,1764,1765,1769,1771,1775,1777,1778,1780,1785,1786,1789,1790,1793,1798,1799,1801,1802,1806,1807,1809,1810,1815,1816,1817,1837,1844,1847,1851,1859,1866,1868,1870,1886,1890,1900,1902,1904,1910,1915,1916,1920,1921,1942,1944,1949,1951,1953,1955,1956,1958,1962,1966,1967,1969,1971,1972,1975,1979,1980,1981,1985,1986,1987,1988,1989,1992,1993,1994,1995,1997,1998,2000,2001,2004,2005,2006,2007,2011,2012,2013,2014,2016,2023,2024,2025,2026,2029,2033,2034,2035,2036,2040,2043,2045,2046,2047,2049,2051,2070,2071,2072,2073,2178,2179,2180,2181,2183,2185,2186,2189,2190,2192,2193,2195,2196,2393,2399,2404,2416,2421,2432,2438,2439,2445,2447,2449,2453,2455,2457,2459,2461,2463,2464,2466,2467,2468,2469,2471,2474,2478,2480,2481,2482,2484,2485,2490,2497,2500,2504,2523,2525,2526,2527,2529,2530,2531,2532,2535,2551,2560,2561,2568,2569,2571,2572,2654,2655,2665,2669,2671,2685,2690,2693,2695,2696,2697,2706,2707,2708,2723,2725,2726,2728,2730,2732,2734,2736,2738,2739,2740,2742,2746,2796,2844,2850,2857,2868,2873,2901,2907,2917,2918,2921,2922,2923,2926,2927,2930,2932,2933,2934,2936,2937,2938,2940,2941,2945,2946,2947,2948,2953,2954,2958,2959,2960,2963,2974,2976,2980,2981,2982,2983,2984,2988,2989,2993,2996,2997,2998,3045,3053,3112,3144,3169,3202,3203,3235,3236,3252,3282,3319,3346,3361,3369,3370,3386,3395,3403,3411,3425,3428,3435,3446,3447,3457,3459,3469,3470,3570,3571,3604,3605,3621,3623,3648,3652,3658,3659,3691,3692,3693,3697,3703,3706,3708,3730,3731,3732,3734,3736,3741,3743,3744,3760,3764,3777,3780,3784,3788,3789,3792,3793,3796,3797,3803,3824,3845,3851,3854,3856,3861,3939,3940,3942,3943,3944,3959,3961,3962,3966,3969,3970,3971,3973,3974,3988,3989,4001,4017,4023,4026,4034,4035,4040,4045,4047,4048,4051,4052,4053,4054,4060,4061,4062,4063,4066,4067,4070,4072,4073,4076,4078,4091,4092,4101,4105,4110,4113,4119,4121,4134,4144,4147,4149,4152,4154,4170,4175,4176,4186,4188,4189,4190,4196,4197,4198,4202,4206,4209,4210,4212,4214,4217,4219,4222,4230,4234,4235,4236,4237,4238,4240,4241,4244,4245,4250,4251,4252,4253,4254,4255,4256,4282,4290,4313,4314,4317,4318,4320,4321,4322,4323,4325,4334,4338,4339,4345,4347,4348,4349,4356,4372,4374,4475,4476,4477,4481,4487,4490,4492,4493,4498,4541,4548,4552,4553,4556,4559,4560,4565,4566,4569,4572,4576,4577,4578,4648,4649,4664,4665,4667,4670,4671,4676,4677,4678,4679,4685,4689,4695,4705,4706,4711,4712,4713,4715,4718,4720,4724,4738,4743,4746,4747,4751,4758,4761,4762,4810,4817,4829,4832,4846,4854,4880,4884,4889,4892,4893,4895,4897,5045,5048,5049,5050,5054,5586,5594,5596,5680,5681,5729,5735,5737,5738,5742,5744,5750,5752,5753,5758,5802,5803,5806,5811,5814,5840,5844,5846,5847,5848,5849,5851,5852,5853,5854,5856,5858,5864,5865,5866,5868,5900,5920,5922,5924,6033,6034,6035,6037,6061,6119,6122,6127,6130,6136,6162,6166,6169,6175,6178,6183,6186,6187,6189,6190,6192,6193,6194,6196,6197,6198,6279,6300,6374,6383,6389,6428,6430,6431,6433,6435,6466,6481,6525,6529,6572,6610,7466,7468,8773,8994,9038,9041,9902,10028,10030,10036,10127,10190,10457,10503,10806,10963,10977,10996,10997,10998,11101,11197,11278,11359,11674,11683,11686,11708,11843,11916,11947,11972,11978,12099,12179,12303,12304,12494,12507,12525,12578,12672,15113,15505,15556,15632,15667,15674,15683,18877,18878,19316,21999,22001,22652,23142]]],["+",[4,4,[[1,3,3,0,3,[[51,1,1,0,1],[85,1,1,1,2],[88,1,1,2,3]]],[26,1,1,3,4,[[858,1,1,3,4]]]],[1575,2569,2697,22001]]],["Moses",[745,693,[[1,275,253,0,253,[[51,7,6,0,6],[52,9,8,6,14],[53,15,13,14,27],[54,4,4,27,31],[55,13,12,31,43],[56,8,8,43,51],[57,14,13,51,64],[58,13,12,64,76],[59,12,12,76,88],[60,5,5,88,93],[61,7,7,93,100],[62,3,3,100,103],[63,8,8,103,111],[64,3,3,111,114],[65,17,16,114,130],[66,12,10,130,140],[67,12,11,140,151],[68,14,12,151,163],[69,4,4,163,167],[73,14,12,167,179],[74,1,1,179,180],[79,4,4,180,184],[80,3,3,184,187],[81,16,15,187,202],[82,10,8,202,210],[83,13,10,210,220],[84,5,5,220,225],[85,3,3,225,228],[87,2,2,228,230],[88,11,10,230,240],[89,13,13,240,253]]],[2,85,80,253,333,[[90,1,1,253,254],[93,1,1,254,255],[94,1,1,255,256],[95,4,4,256,260],[96,3,3,260,263],[97,24,20,263,283],[98,7,7,283,290],[99,10,10,290,300],[100,1,1,300,301],[101,1,1,301,302],[102,1,1,302,303],[103,2,2,303,305],[104,1,1,305,306],[105,3,3,306,309],[106,1,1,309,310],[107,1,1,310,311],[108,1,1,311,312],[109,1,1,312,313],[110,3,3,313,316],[111,3,3,316,319],[112,6,6,319,325],[113,5,4,325,329],[114,1,1,329,330],[115,1,1,330,331],[116,2,2,331,333]]],[3,232,216,333,549,[[117,6,6,333,339],[118,3,3,339,342],[119,14,12,342,354],[120,12,9,354,363],[121,4,4,363,367],[122,2,2,367,369],[123,5,5,369,374],[124,8,7,374,381],[125,7,7,381,388],[126,4,4,388,392],[127,14,11,392,403],[128,9,9,403,412],[129,7,6,412,418],[130,9,9,418,427],[131,8,8,427,435],[132,21,21,435,456],[133,8,8,456,464],[134,1,1,464,465],[135,1,1,465,466],[136,13,12,466,478],[137,8,7,478,485],[141,5,5,485,490],[142,8,8,490,498],[143,9,9,498,507],[144,1,1,507,508],[145,2,1,508,509],[146,2,2,509,511],[147,21,18,511,529],[148,8,8,529,537],[149,3,3,537,540],[150,3,3,540,543],[151,2,2,543,545],[152,4,4,545,549]]],[4,38,35,549,584,[[153,3,3,549,552],[156,4,4,552,556],[157,1,1,556,557],[179,3,3,557,560],[181,2,2,560,562],[183,11,10,562,572],[184,3,3,572,575],[185,2,2,575,577],[186,9,7,577,584]]],[5,57,51,584,635,[[187,10,9,584,593],[189,1,1,593,594],[190,3,3,594,597],[194,5,4,597,601],[195,1,1,601,602],[197,6,4,602,606],[198,2,1,606,607],[199,9,8,607,615],[200,8,8,615,623],[203,1,1,623,624],[204,1,1,624,625],[206,1,1,625,626],[207,2,2,626,628],[208,5,5,628,633],[209,1,1,633,634],[210,1,1,634,635]]],[6,3,3,635,638,[[211,1,1,635,636],[213,1,1,636,637],[214,1,1,637,638]]],[8,2,2,638,640,[[247,2,2,638,640]]],[10,4,4,640,644,[[292,1,1,640,641],[298,3,3,641,644]]],[11,6,6,644,650,[[326,1,1,644,645],[330,3,3,645,648],[333,1,1,648,649],[335,1,1,649,650]]],[12,9,9,650,659,[[343,2,2,650,652],[352,1,1,652,653],[358,1,1,653,654],[359,1,1,654,655],[360,3,3,655,658],[363,1,1,658,659]]],[13,12,12,659,671,[[367,1,1,659,660],[371,1,1,660,661],[374,1,1,661,662],[389,1,1,662,663],[390,2,2,663,665],[391,1,1,665,666],[396,1,1,666,667],[399,1,1,667,668],[400,1,1,668,669],[401,2,2,669,671]]],[14,2,2,671,673,[[405,1,1,671,672],[409,1,1,672,673]]],[15,7,7,673,680,[[413,2,2,673,675],[420,2,2,675,677],[421,1,1,677,678],[422,1,1,678,679],[425,1,1,679,680]]],[18,7,7,680,687,[[554,1,1,680,681],[576,1,1,681,682],[580,1,1,682,683],[582,1,1,683,684],[583,3,3,684,687]]],[22,2,2,687,689,[[741,2,2,687,689]]],[23,1,1,689,690,[[759,1,1,689,690]]],[26,1,1,690,691,[[858,1,1,690,691]]],[32,1,1,691,692,[[898,1,1,691,692]]],[38,1,1,692,693,[[928,1,1,692,693]]]],[1564,1565,1568,1569,1571,1575,1580,1582,1583,1585,1590,1592,1593,1594,1602,1604,1605,1611,1615,1619,1620,1621,1622,1628,1629,1630,1631,1633,1636,1652,1654,1656,1657,1664,1665,1667,1668,1675,1681,1682,1683,1684,1685,1686,1691,1692,1693,1695,1699,1704,1705,1711,1715,1718,1719,1722,1723,1726,1730,1735,1736,1739,1740,1741,1743,1750,1752,1753,1754,1755,1764,1765,1769,1771,1775,1777,1778,1780,1785,1786,1789,1790,1793,1798,1799,1801,1802,1806,1807,1809,1810,1815,1816,1817,1837,1844,1847,1851,1859,1866,1868,1870,1886,1890,1900,1902,1904,1910,1915,1916,1920,1921,1942,1944,1949,1951,1953,1955,1956,1958,1962,1966,1967,1969,1971,1972,1975,1979,1980,1981,1985,1986,1987,1988,1989,1992,1993,1994,1997,1998,2000,2004,2005,2006,2007,2012,2014,2023,2024,2025,2026,2029,2033,2034,2035,2036,2040,2043,2045,2046,2047,2049,2051,2070,2071,2072,2073,2178,2179,2180,2181,2183,2185,2186,2189,2190,2192,2193,2195,2196,2393,2399,2404,2416,2421,2432,2438,2439,2445,2447,2449,2453,2455,2459,2461,2463,2464,2466,2467,2468,2469,2471,2474,2478,2480,2481,2482,2484,2485,2490,2497,2500,2504,2523,2525,2526,2527,2529,2530,2531,2532,2535,2551,2560,2561,2568,2571,2572,2654,2655,2665,2669,2671,2685,2690,2693,2695,2696,2706,2707,2708,2723,2725,2726,2728,2730,2732,2734,2736,2738,2739,2740,2742,2746,2796,2844,2850,2857,2868,2873,2901,2907,2917,2918,2921,2922,2923,2926,2927,2930,2932,2933,2934,2936,2937,2938,2940,2941,2945,2946,2947,2948,2953,2954,2958,2959,2960,2963,2974,2976,2980,2981,2982,2983,2984,2988,2989,2993,2996,2997,2998,3045,3053,3112,3144,3169,3202,3203,3235,3236,3252,3282,3319,3346,3361,3369,3370,3386,3395,3403,3411,3425,3428,3435,3446,3447,3457,3459,3469,3470,3570,3571,3604,3605,3621,3623,3648,3652,3658,3659,3691,3692,3693,3697,3703,3706,3708,3730,3731,3732,3734,3736,3741,3743,3744,3760,3764,3777,3780,3784,3788,3789,3792,3793,3796,3797,3803,3824,3845,3851,3854,3856,3861,3939,3940,3942,3943,3944,3959,3961,3962,3966,3969,3970,3971,3973,3974,3988,3989,4001,4017,4023,4026,4034,4035,4040,4045,4047,4048,4051,4052,4053,4054,4060,4061,4062,4063,4066,4067,4070,4072,4073,4076,4078,4091,4092,4101,4105,4110,4113,4119,4121,4134,4144,4147,4149,4152,4154,4170,4175,4176,4186,4188,4189,4190,4196,4197,4198,4202,4206,4209,4210,4212,4214,4217,4219,4222,4230,4234,4235,4236,4237,4238,4240,4241,4244,4245,4250,4251,4252,4253,4254,4255,4256,4282,4290,4313,4314,4317,4318,4320,4321,4322,4323,4325,4334,4338,4339,4345,4347,4348,4349,4356,4372,4374,4475,4476,4477,4481,4487,4490,4492,4493,4498,4541,4548,4552,4553,4556,4559,4560,4565,4566,4569,4572,4576,4577,4578,4648,4649,4664,4665,4667,4670,4671,4676,4677,4678,4679,4685,4689,4695,4705,4706,4711,4712,4713,4715,4718,4720,4724,4738,4743,4746,4747,4751,4758,4761,4762,4810,4817,4829,4832,4846,4854,4880,4884,4889,4892,4893,4895,4897,5045,5048,5049,5050,5054,5586,5594,5596,5680,5681,5729,5735,5737,5738,5742,5744,5750,5752,5753,5758,5802,5803,5806,5811,5814,5840,5844,5846,5847,5848,5849,5851,5852,5853,5854,5856,5858,5864,5865,5866,5868,5900,5920,5922,5924,6033,6034,6035,6037,6061,6119,6122,6127,6130,6136,6162,6166,6169,6175,6178,6183,6186,6187,6189,6190,6192,6193,6194,6196,6197,6198,6279,6300,6374,6383,6389,6428,6430,6431,6433,6435,6466,6481,6529,6572,6610,7466,7468,8773,8994,9038,9041,9902,10028,10030,10036,10127,10190,10457,10503,10806,10963,10977,10996,10997,10998,11101,11197,11278,11359,11674,11683,11686,11708,11843,11916,11947,11972,11978,12099,12179,12303,12304,12494,12507,12525,12578,12672,15113,15505,15556,15632,15667,15674,15683,18877,18878,19316,21999,22652,23142]]],["Moses'",[16,14,[[1,12,10,0,10,[[66,1,1,0,1],[67,8,6,1,7],[81,1,1,7,8],[83,2,2,8,10]]],[2,1,1,10,11,[[97,1,1,10,11]]],[3,1,1,11,12,[[126,1,1,11,12]]],[5,1,1,12,13,[[187,1,1,12,13]]],[6,1,1,13,14,[[211,1,1,13,14]]]],[1995,2000,2001,2004,2011,2013,2016,2457,2525,2531,2946,4017,5852,6525]]]]},{"k":"H4873","v":[["Moses",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12169]]]]},{"k":"H4874","v":[["+",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5321]]]]},{"k":"H4875","v":[["*",[3,3,[[17,2,2,0,2,[[465,1,1,0,1],[473,1,1,1,2]]],[35,1,1,2,3,[[906,1,1,2,3]]]],[13560,13820,22802]]],["desolation",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22802]]],["waste",[2,2,[[17,2,2,0,2,[[465,1,1,0,1],[473,1,1,1,2]]]],[13560,13820]]]]},{"k":"H4876","v":[["*",[2,2,[[18,2,2,0,2,[[550,1,1,0,1],[551,1,1,1,2]]]],[15038,15051]]],["desolations",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15051]]],["destruction",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15038]]]]},{"k":"H4877","v":[["Meshobab",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10419]]]]},{"k":"H4878","v":[["*",[12,12,[[19,1,1,0,1,[[628,1,1,0,1]]],[23,9,9,1,10,[[746,1,1,1,2],[747,5,5,2,7],[749,1,1,7,8],[752,1,1,8,9],[758,1,1,9,10]]],[27,2,2,10,12,[[872,1,1,10,11],[875,1,1,11,12]]]],[16432,18984,19008,19010,19013,19014,19024,19064,19158,19300,22247,22286]]],["away",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16432]]],["backsliding",[7,7,[[23,5,5,0,5,[[747,4,4,0,4],[752,1,1,4,5]]],[27,2,2,5,7,[[872,1,1,5,6],[875,1,1,6,7]]]],[19008,19010,19013,19014,19158,22247,22286]]],["backslidings",[4,4,[[23,4,4,0,4,[[746,1,1,0,1],[747,1,1,1,2],[749,1,1,2,3],[758,1,1,3,4]]]],[18984,19024,19064,19300]]]]},{"k":"H4879","v":[["error",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13301]]]]},{"k":"H4880","v":[["*",[3,3,[[8,1,1,0,1,[[242,1,1,0,1]]],[25,2,2,1,3,[[828,2,2,1,3]]]],[7368,21127,21150]]],["+",[1,1,[[8,1,1,0,1,[[242,1,1,0,1]]]],[7368]]],["oar",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21150]]],["oars",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21127]]]]},{"k":"H4881","v":[["hedge",[2,2,[[19,1,1,0,1,[[642,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]]],[16826,17744]]]]},{"k":"H4882","v":[["spoil",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18504]]]]},{"k":"H4883","v":[["saw",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17865]]]]},{"k":"H4884","v":[["measure",[4,4,[[2,1,1,0,1,[[108,1,1,0,1]]],[12,1,1,1,2,[[360,1,1,1,2]]],[25,2,2,2,4,[[805,2,2,2,4]]]],[3316,11012,20540,20545]]]]},{"k":"H4885","v":[["*",[17,16,[[17,1,1,0,1,[[443,1,1,0,1]]],[18,1,1,1,2,[[525,1,1,1,2]]],[22,10,9,2,11,[[686,1,1,2,3],[702,3,2,3,5],[710,2,2,5,7],[738,1,1,7,8],[740,1,1,8,9],[743,1,1,9,10],[744,1,1,10,11]]],[23,1,1,11,12,[[793,1,1,11,12]]],[24,2,2,12,14,[[798,1,1,12,13],[801,1,1,13,14]]],[25,1,1,14,15,[[825,1,1,14,15]]],[27,1,1,15,16,[[863,1,1,15,16]]]],[13048,14636,17813,18103,18106,18272,18273,18836,18859,18915,18932,20152,20347,20457,21081,22116]]],["+",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17813]]],["joy",[12,12,[[17,1,1,0,1,[[443,1,1,0,1]]],[18,1,1,1,2,[[525,1,1,1,2]]],[22,6,6,2,8,[[702,1,1,2,3],[710,2,2,3,5],[738,1,1,5,6],[743,1,1,6,7],[744,1,1,7,8]]],[23,1,1,8,9,[[793,1,1,8,9]]],[24,2,2,9,11,[[798,1,1,9,10],[801,1,1,10,11]]],[25,1,1,11,12,[[825,1,1,11,12]]]],[13048,14636,18103,18272,18273,18836,18915,18932,20152,20347,20457,21081]]],["mirth",[3,3,[[22,2,2,0,2,[[702,2,2,0,2]]],[27,1,1,2,3,[[863,1,1,2,3]]]],[18103,18106,22116]]],["rejoiceth",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18859]]]]},{"k":"H4886","v":[["*",[71,67,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,14,12,1,13,[[77,1,1,1,2],[78,4,4,2,6],[79,2,2,6,8],[89,7,5,8,13]]],[2,8,8,13,21,[[91,1,1,13,14],[95,1,1,14,15],[96,2,2,15,17],[97,3,3,17,20],[105,1,1,20,21]]],[3,8,7,21,28,[[119,1,1,21,22],[122,1,1,22,23],[123,5,4,23,27],[151,1,1,27,28]]],[6,2,2,28,30,[[219,2,2,28,30]]],[8,7,7,30,37,[[244,1,1,30,31],[245,1,1,31,32],[250,2,2,32,34],[251,3,3,34,37]]],[9,7,7,37,44,[[268,2,2,37,39],[269,1,1,39,40],[271,2,2,40,42],[278,1,1,42,43],[285,1,1,43,44]]],[10,7,6,44,50,[[291,3,3,44,47],[295,1,1,47,48],[309,3,2,48,50]]],[11,5,5,50,55,[[321,3,3,50,53],[323,1,1,53,54],[335,1,1,54,55]]],[12,3,3,55,58,[[348,1,1,55,56],[351,1,1,56,57],[366,1,1,57,58]]],[13,2,2,58,60,[[388,1,1,58,59],[389,1,1,59,60]]],[18,2,2,60,62,[[522,1,1,60,61],[566,1,1,61,62]]],[22,2,2,62,64,[[699,1,1,62,63],[739,1,1,63,64]]],[23,1,1,64,65,[[766,1,1,64,65]]],[26,1,1,65,66,[[858,1,1,65,66]]],[29,1,1,66,67,[[884,1,1,66,67]]]],[886,2334,2338,2343,2365,2372,2408,2412,2716,2717,2718,2720,2722,2766,2869,2891,2915,2927,2928,2929,3233,3695,3838,3851,3860,3934,3938,4870,6762,6769,7407,7419,7561,7577,7598,7607,7608,8053,8056,8120,8135,8149,8293,8521,8751,8756,8762,8879,9402,9403,9759,9762,9768,9841,10195,10676,10782,11186,11651,11667,14604,15346,18040,18844,19468,22012,22456]]],["+",[13,13,[[1,5,5,0,5,[[79,1,1,0,1],[89,4,4,1,5]]],[2,2,2,5,7,[[97,2,2,5,7]]],[9,3,3,7,10,[[268,1,1,7,8],[271,2,2,8,10]]],[10,2,2,10,12,[[291,1,1,10,11],[309,1,1,11,12]]],[12,1,1,12,13,[[348,1,1,12,13]]]],[2408,2716,2717,2718,2722,2927,2928,8053,8135,8149,8756,9402,10676]]],["anoint",[19,18,[[1,6,6,0,6,[[77,1,1,0,1],[78,2,2,1,3],[79,1,1,3,4],[89,2,2,4,6]]],[2,1,1,6,7,[[105,1,1,6,7]]],[6,2,2,7,9,[[219,2,2,7,9]]],[8,4,4,9,13,[[244,1,1,9,10],[250,1,1,10,11],[251,2,2,11,13]]],[10,3,2,13,15,[[291,1,1,13,14],[309,2,1,14,15]]],[22,1,1,15,16,[[699,1,1,15,16]]],[26,1,1,16,17,[[858,1,1,16,17]]],[29,1,1,17,18,[[884,1,1,17,18]]]],[2334,2343,2372,2412,2720,2722,3233,6762,6769,7407,7561,7598,7607,8751,9403,18040,22012,22456]]],["anointed",[36,35,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,5,5,2,7,[[91,1,1,2,3],[95,1,1,3,4],[96,2,2,4,6],[97,1,1,6,7]]],[3,8,7,7,14,[[119,1,1,7,8],[122,1,1,8,9],[123,5,4,9,13],[151,1,1,13,14]]],[8,3,3,14,17,[[245,1,1,14,15],[250,1,1,15,16],[251,1,1,16,17]]],[9,4,4,17,21,[[268,1,1,17,18],[269,1,1,18,19],[278,1,1,19,20],[285,1,1,20,21]]],[10,2,2,21,23,[[291,1,1,21,22],[295,1,1,22,23]]],[11,5,5,23,28,[[321,3,3,23,26],[323,1,1,26,27],[335,1,1,27,28]]],[12,2,2,28,30,[[351,1,1,28,29],[366,1,1,29,30]]],[13,2,2,30,32,[[388,1,1,30,31],[389,1,1,31,32]]],[18,2,2,32,34,[[522,1,1,32,33],[566,1,1,33,34]]],[22,1,1,34,35,[[739,1,1,34,35]]]],[2338,2365,2766,2869,2891,2915,2929,3695,3838,3851,3860,3934,3938,4870,7419,7577,7608,8056,8120,8293,8521,8762,8879,9759,9762,9768,9841,10195,10782,11186,11651,11667,14604,15346,18844]]],["anointedst",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[886]]],["anointing",[1,1,[[1,1,1,0,1,[[89,1,1,0,1]]]],[2722]]],["painted",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19468]]]]},{"k":"H4887","v":[["oil",[2,2,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]]],[12160,12195]]]]},{"k":"H4888","v":[["*",[24,22,[[1,13,12,0,12,[[74,1,1,0,1],[78,2,2,1,3],[79,3,2,3,5],[80,1,1,5,6],[84,3,3,6,9],[86,1,1,9,10],[88,1,1,10,11],[89,1,1,11,12]]],[2,9,8,12,20,[[96,2,1,12,13],[97,4,4,13,17],[99,1,1,17,18],[110,2,2,18,20]]],[3,2,2,20,22,[[120,1,1,20,21],[134,1,1,21,22]]]],[2201,2343,2357,2407,2413,2431,2539,2546,2559,2633,2702,2716,2914,2919,2927,2929,2947,2984,3355,3357,3759,4265]]],["+",[3,3,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,2,2,1,3,[[97,2,2,1,3]]]],[2357,2929,2947]]],["anointing",[20,19,[[1,11,11,0,11,[[74,1,1,0,1],[78,1,1,1,2],[79,2,2,2,4],[80,1,1,4,5],[84,3,3,5,8],[86,1,1,8,9],[88,1,1,9,10],[89,1,1,10,11]]],[2,7,6,11,17,[[96,2,1,11,12],[97,2,2,12,14],[99,1,1,14,15],[110,2,2,15,17]]],[3,2,2,17,19,[[120,1,1,17,18],[134,1,1,18,19]]]],[2201,2343,2407,2413,2431,2539,2546,2559,2633,2702,2716,2914,2919,2927,2984,3355,3357,3759,4265]]],["ointment",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2407]]]]},{"k":"H4889","v":[["*",[12,12,[[1,1,1,0,1,[[61,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]],[13,2,2,2,4,[[386,1,1,2,3],[388,1,1,3,4]]],[19,1,1,4,5,[[645,1,1,4,5]]],[23,2,2,5,7,[[749,1,1,5,6],[795,1,1,6,7]]],[25,4,4,7,11,[[806,1,1,7,8],[810,1,1,8,9],[822,1,1,9,10],[826,1,1,10,11]]],[26,1,1,11,12,[[859,1,1,11,12]]]],[1829,10178,11610,11648,16910,19084,20237,20562,20628,20975,21098,22023]]],["corruption",[2,2,[[11,1,1,0,1,[[335,1,1,0,1]]],[26,1,1,1,2,[[859,1,1,1,2]]]],[10178,22023]]],["destroy",[4,4,[[1,1,1,0,1,[[61,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]],[25,2,2,2,4,[[822,1,1,2,3],[826,1,1,3,4]]]],[1829,11610,20975,21098]]],["destroying",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20237]]],["destruction",[2,2,[[13,1,1,0,1,[[388,1,1,0,1]]],[25,1,1,1,2,[[806,1,1,1,2]]]],[11648,20562]]],["trap",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19084]]],["utterly",[1,1,[[25,1,1,0,1,[[810,1,1,0,1]]]],[20628]]],["waster",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16910]]]]},{"k":"H4890","v":[["scorn",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22741]]]]},{"k":"H4891","v":[["morning",[1,1,[[18,1,1,0,1,[[587,1,1,0,1]]]],[15789]]]]},{"k":"H4892","v":[["destroying",[1,1,[[25,1,1,0,1,[[810,1,1,0,1]]]],[20623]]]]},{"k":"H4893","v":[["*",[2,2,[[2,1,1,0,1,[[111,1,1,0,1]]],[22,1,1,1,2,[[730,1,1,1,2]]]],[3394,18710]]],["corruption",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3394]]],["marred",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18710]]]]},{"k":"H4894","v":[["*",[3,3,[[25,3,3,0,3,[[827,2,2,0,2],[848,1,1,2,3]]]],[21105,21114,21689]]],["+",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21114]]],["forth",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21689]]],["spreading",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21105]]]]},{"k":"H4895","v":[["hatred",[2,2,[[27,2,2,0,2,[[870,2,2,0,2]]]],[22215,22216]]]]},{"k":"H4896","v":[["dominion",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13826]]]]},{"k":"H4897","v":[["silk",[2,2,[[25,2,2,0,2,[[817,2,2,0,2]]]],[20772,20775]]]]},{"k":"H4898","v":[["Meshezabeel",[3,3,[[15,3,3,0,3,[[415,1,1,0,1],[422,1,1,1,2],[423,1,1,2,3]]]],[12331,12570,12612]]]]},{"k":"H4899","v":[["*",[39,38,[[2,4,4,0,4,[[93,3,3,0,3],[95,1,1,3,4]]],[8,12,11,4,15,[[237,2,2,4,6],[247,2,2,6,8],[251,1,1,8,9],[259,3,2,9,11],[261,4,4,11,15]]],[9,6,6,15,21,[[267,3,3,15,18],[285,1,1,18,19],[288,1,1,19,20],[289,1,1,20,21]]],[12,1,1,21,22,[[353,1,1,21,22]]],[13,1,1,22,23,[[372,1,1,22,23]]],[18,10,10,23,33,[[479,1,1,23,24],[495,1,1,24,25],[497,1,1,25,26],[505,1,1,26,27],[561,1,1,27,28],[566,2,2,28,30],[582,1,1,30,31],[609,2,2,31,33]]],[22,1,1,33,34,[[723,1,1,33,34]]],[24,1,1,34,35,[[800,1,1,34,35]]],[26,2,2,35,37,[[858,2,2,35,37]]],[34,1,1,37,38,[[905,1,1,37,38]]]],[2798,2800,2811,2871,7250,7275,7463,7465,7601,7845,7849,7914,7916,7921,7928,8036,8038,8043,8532,8653,8654,10842,11324,13947,14168,14188,14307,15268,15364,15377,15621,16161,16168,18562,20440,22013,22014,22781]]],["Messiah",[2,2,[[26,2,2,0,2,[[858,2,2,0,2]]]],[22013,22014]]],["anointed",[37,36,[[2,4,4,0,4,[[93,3,3,0,3],[95,1,1,3,4]]],[8,12,11,4,15,[[237,2,2,4,6],[247,2,2,6,8],[251,1,1,8,9],[259,3,2,9,11],[261,4,4,11,15]]],[9,6,6,15,21,[[267,3,3,15,18],[285,1,1,18,19],[288,1,1,19,20],[289,1,1,20,21]]],[12,1,1,21,22,[[353,1,1,21,22]]],[13,1,1,22,23,[[372,1,1,22,23]]],[18,10,10,23,33,[[479,1,1,23,24],[495,1,1,24,25],[497,1,1,25,26],[505,1,1,26,27],[561,1,1,27,28],[566,2,2,28,30],[582,1,1,30,31],[609,2,2,31,33]]],[22,1,1,33,34,[[723,1,1,33,34]]],[24,1,1,34,35,[[800,1,1,34,35]]],[34,1,1,35,36,[[905,1,1,35,36]]]],[2798,2800,2811,2871,7250,7275,7463,7465,7601,7845,7849,7914,7916,7921,7928,8036,8038,8043,8532,8653,8654,10842,11324,13947,14168,14188,14307,15268,15364,15377,15621,16161,16168,18562,20440,22781]]]]},{"k":"H4900","v":[["*",[37,36,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,2,2,1,3,[[61,1,1,1,2],[68,1,1,2,3]]],[4,1,1,3,4,[[173,1,1,3,4]]],[5,2,1,4,5,[[192,2,1,4,5]]],[6,4,4,5,9,[[214,2,2,5,7],[215,1,1,7,8],[230,1,1,8,9]]],[10,1,1,9,10,[[312,1,1,9,10]]],[13,1,1,10,11,[[384,1,1,10,11]]],[15,1,1,11,12,[[421,1,1,11,12]]],[17,3,3,12,15,[[456,1,1,12,13],[459,1,1,13,14],[476,1,1,14,15]]],[18,5,5,15,20,[[487,1,1,15,16],[505,1,1,16,17],[513,1,1,17,18],[562,1,1,18,19],[586,1,1,19,20]]],[19,1,1,20,21,[[640,1,1,20,21]]],[20,1,1,21,22,[[660,1,1,21,22]]],[21,1,1,22,23,[[671,1,1,22,23]]],[22,5,5,23,28,[[683,1,1,23,24],[691,1,1,24,25],[696,2,2,25,27],[744,1,1,27,28]]],[23,2,2,28,30,[[775,1,1,28,29],[782,1,1,29,30]]],[25,3,3,30,33,[[813,2,2,30,32],[833,1,1,32,33]]],[27,2,2,33,35,[[868,1,1,33,34],[872,1,1,34,35]]],[29,1,1,35,36,[[887,1,1,35,36]]]],[1111,1837,2039,5450,5954,6605,6606,6637,7091,9514,11575,12541,13388,13458,13889,14050,14302,14448,15276,15767,16759,17336,17541,17757,17928,17999,18004,18941,19694,19908,20705,20708,21268,22183,22244,22508]]],["+",[3,3,[[15,1,1,0,1,[[421,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]],[23,1,1,2,3,[[782,1,1,2,3]]]],[12541,17336,19908]]],["Draw",[2,2,[[18,1,1,0,1,[[505,1,1,0,1]]],[21,1,1,1,2,[[671,1,1,1,2]]]],[14302,17541]]],["along",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7091]]],["blast",[1,1,[[5,1,1,0,1,[[192,1,1,0,1]]]],[5954]]],["continue",[1,1,[[18,1,1,0,1,[[513,1,1,0,1]]]],[14448]]],["deferred",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16759]]],["draw",[6,6,[[6,2,2,0,2,[[214,2,2,0,2]]],[17,1,1,2,3,[[456,1,1,2,3]]],[22,2,2,3,5,[[683,1,1,3,4],[744,1,1,4,5]]],[25,1,1,5,6,[[833,1,1,5,6]]]],[6605,6606,13388,17757,18941,21268]]],["draweth",[2,2,[[17,1,1,0,1,[[459,1,1,0,1]]],[18,1,1,1,2,[[487,1,1,1,2]]]],[13458,14050]]],["drawn",[2,2,[[4,1,1,0,1,[[173,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[5450,19694]]],["drew",[4,4,[[0,1,1,0,1,[[36,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]],[13,1,1,2,3,[[384,1,1,2,3]]],[27,1,1,3,4,[[872,1,1,3,4]]]],[1111,9514,11575,22244]]],["extend",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15767]]],["handle",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6637]]],["long",[2,2,[[1,1,1,0,1,[[68,1,1,0,1]]],[5,1,1,1,2,[[192,1,1,1,2]]]],[2039,5954]]],["out",[4,4,[[1,1,1,0,1,[[61,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[18,1,1,2,3,[[562,1,1,2,3]]],[27,1,1,3,4,[[868,1,1,3,4]]]],[1837,13889,15276,22183]]],["prolonged",[3,3,[[22,1,1,0,1,[[691,1,1,0,1]]],[25,2,2,1,3,[[813,2,2,1,3]]]],[17928,20705,20708]]],["scattered",[2,2,[[22,2,2,0,2,[[696,2,2,0,2]]]],[17999,18004]]],["soweth",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22508]]]]},{"k":"H4901","v":[["*",[2,2,[[17,1,1,0,1,[[463,1,1,0,1]]],[18,1,1,1,2,[[603,1,1,1,2]]]],[13522,16121]]],["precious",[1,1,[[18,1,1,0,1,[[603,1,1,0,1]]]],[16121]]],["price",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13522]]]]},{"k":"H4902","v":[["*",[9,9,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,2,2,1,3,[[338,2,2,1,3]]],[18,1,1,3,4,[[597,1,1,3,4]]],[25,5,5,4,9,[[828,1,1,4,5],[833,1,1,5,6],[839,2,2,6,8],[840,1,1,8,9]]]],[236,10257,10269,16079,21134,21274,21427,21428,21449]]],["Mesech",[1,1,[[18,1,1,0,1,[[597,1,1,0,1]]]],[16079]]],["Meshech",[8,8,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,2,2,1,3,[[338,2,2,1,3]]],[25,5,5,3,8,[[828,1,1,3,4],[833,1,1,4,5],[839,2,2,5,7],[840,1,1,7,8]]]],[236,10257,10269,21134,21274,21427,21428,21449]]]]},{"k":"H4903","v":[["bed",[6,6,[[26,6,6,0,6,[[851,2,2,0,2],[853,3,3,2,5],[856,1,1,5,6]]]],[21786,21787,21842,21847,21850,21934]]]]},{"k":"H4904","v":[["*",[46,44,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[57,1,1,1,2],[70,1,1,2,3]]],[2,9,8,3,11,[[104,7,6,3,9],[107,1,1,9,10],[109,1,1,10,11]]],[3,3,3,11,14,[[147,3,3,11,14]]],[6,2,2,14,16,[[231,2,2,14,16]]],[9,7,7,16,23,[[270,3,3,16,19],[277,2,2,19,21],[279,1,1,21,22],[283,1,1,22,23]]],[10,1,1,23,24,[[291,1,1,23,24]]],[11,1,1,24,25,[[318,1,1,24,25]]],[13,1,1,25,26,[[382,1,1,25,26]]],[17,3,3,26,29,[[442,1,1,26,27],[468,2,2,27,29]]],[18,4,4,29,33,[[481,1,1,29,30],[513,1,1,30,31],[518,1,1,31,32],[626,1,1,32,33]]],[19,2,2,33,35,[[634,1,1,33,34],[649,1,1,34,35]]],[20,1,1,35,36,[[668,1,1,35,36]]],[21,1,1,36,37,[[673,1,1,36,37]]],[22,4,3,37,40,[[735,4,3,37,40]]],[25,2,2,40,42,[[824,1,1,40,41],[833,1,1,41,42]]],[27,1,1,42,43,[[868,1,1,42,43]]],[32,1,1,43,44,[[894,1,1,43,44]]]],[1477,1713,2095,3172,3173,3189,3191,3192,3194,3273,3331,4681,4682,4699,7113,7114,8125,8127,8131,8261,8272,8322,8477,8764,9686,11523,13021,13665,13669,13969,14442,14545,16390,16592,17042,17513,17572,18767,18772,18773,21024,21273,22192,22596]]],["+",[5,5,[[1,1,1,0,1,[[57,1,1,0,1]]],[6,1,1,1,2,[[231,1,1,1,2]]],[9,1,1,2,3,[[270,1,1,2,3]]],[11,1,1,3,4,[[318,1,1,3,4]]],[20,1,1,4,5,[[668,1,1,4,5]]]],[1713,7113,8127,9686,17513]]],["bed",[29,27,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,1,1,1,2,[[70,1,1,1,2]]],[2,7,6,2,8,[[104,7,6,2,8]]],[9,5,5,8,13,[[270,2,2,8,10],[277,2,2,10,12],[279,1,1,12,13]]],[10,1,1,13,14,[[291,1,1,13,14]]],[13,1,1,14,15,[[382,1,1,14,15]]],[17,2,2,15,17,[[468,2,2,15,17]]],[18,3,3,17,20,[[481,1,1,17,18],[513,1,1,18,19],[518,1,1,19,20]]],[19,2,2,20,22,[[634,1,1,20,21],[649,1,1,21,22]]],[21,1,1,22,23,[[673,1,1,22,23]]],[22,3,2,23,25,[[735,3,2,23,25]]],[25,2,2,25,27,[[824,1,1,25,26],[833,1,1,26,27]]]],[1477,2095,3172,3173,3189,3191,3192,3194,8125,8131,8261,8272,8322,8764,11523,13665,13669,13969,14442,14545,16592,17042,17572,18772,18773,21024,21273]]],["beds",[5,5,[[9,1,1,0,1,[[283,1,1,0,1]]],[18,1,1,1,2,[[626,1,1,1,2]]],[22,1,1,2,3,[[735,1,1,2,3]]],[27,1,1,3,4,[[868,1,1,3,4]]],[32,1,1,4,5,[[894,1,1,4,5]]]],[8477,16390,18767,22192,22596]]],["couch",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13021]]],["lieth",[1,1,[[2,1,1,0,1,[[109,1,1,0,1]]]],[3331]]],["lying",[3,3,[[3,2,2,0,2,[[147,2,2,0,2]]],[6,1,1,2,3,[[231,1,1,2,3]]]],[4681,4682,7114]]],["with",[2,2,[[2,1,1,0,1,[[107,1,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]]],[3273,4699]]]]},{"k":"H4905","v":[]},{"k":"H4906","v":[["*",[6,6,[[2,1,1,0,1,[[115,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]],[18,1,1,2,3,[[550,1,1,2,3]]],[19,2,2,3,5,[[645,1,1,3,4],[652,1,1,4,5]]],[25,1,1,5,6,[[809,1,1,5,6]]]],[3525,4812,15027,16912,17124,20616]]],["conceit",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16912]]],["image",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3525]]],["imagery",[1,1,[[25,1,1,0,1,[[809,1,1,0,1]]]],[20616]]],["pictures",[2,2,[[3,1,1,0,1,[[149,1,1,0,1]]],[19,1,1,1,2,[[652,1,1,1,2]]]],[4812,17124]]],["wish",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15027]]]]},{"k":"H4907","v":[["habitation",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12188]]]]},{"k":"H4908","v":[["*",[139,129,[[1,58,55,0,55,[[74,1,1,0,1],[75,16,15,1,16],[76,2,2,16,18],[84,3,3,18,21],[85,12,11,21,32],[87,4,3,32,35],[88,3,3,35,38],[89,17,17,38,55]]],[2,4,4,55,59,[[97,1,1,55,56],[104,1,1,56,57],[106,1,1,57,58],[115,1,1,58,59]]],[3,42,35,59,94,[[117,7,3,59,62],[119,9,9,62,71],[120,4,4,71,75],[121,1,1,75,76],[123,2,2,76,78],[125,7,5,78,83],[126,4,3,83,86],[132,3,3,86,89],[133,1,1,89,90],[135,1,1,90,91],[140,1,1,91,92],[147,2,2,92,94]]],[5,2,2,94,96,[[208,2,2,94,96]]],[9,1,1,96,97,[[273,1,1,96,97]]],[12,6,6,97,103,[[343,2,2,97,99],[353,1,1,99,100],[354,1,1,100,101],[358,1,1,101,102],[360,1,1,102,103]]],[13,2,2,103,105,[[367,1,1,103,104],[395,1,1,104,105]]],[17,3,3,105,108,[[453,1,1,105,106],[456,1,1,106,107],[474,1,1,107,108]]],[18,11,11,108,119,[[503,1,1,108,109],[520,1,1,109,110],[523,1,1,110,111],[526,1,1,111,112],[551,1,1,112,113],[555,2,2,113,115],[561,1,1,115,116],[564,1,1,116,117],[609,2,2,117,119]]],[21,1,1,119,120,[[671,1,1,119,120]]],[22,3,3,120,123,[[700,1,1,120,121],[710,1,1,121,122],[732,1,1,122,123]]],[23,3,3,123,126,[[753,1,1,123,124],[774,1,1,124,125],[795,1,1,125,126]]],[25,2,2,126,128,[[826,1,1,126,127],[838,1,1,127,128]]],[34,1,1,128,129,[[903,1,1,128,129]]]],[2204,2236,2241,2242,2247,2248,2250,2252,2253,2255,2257,2258,2261,2262,2265,2270,2281,2291,2542,2546,2549,2574,2579,2580,2586,2588,2589,2591,2593,2594,2597,2598,2653,2654,2664,2696,2697,2704,2709,2712,2713,2716,2724,2725,2726,2728,2729,2731,2735,2736,2740,2741,2742,2743,2745,2927,3199,3239,3535,3654,3655,3657,3699,3700,3715,3717,3718,3721,3727,3728,3730,3759,3768,3769,3774,3809,3851,3853,3980,3983,3984,3985,3987,3999,4005,4009,4203,4218,4221,4257,4302,4451,4694,4711,6445,6455,8186,10486,10502,10859,10868,10963,11009,11199,11797,13297,13383,13840,14281,14569,14618,14659,15055,15141,15173,15260,15303,16156,16158,17545,18068,18277,18725,19194,19685,20242,21087,21424,22737]]],["+",[3,3,[[1,1,1,0,1,[[84,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]],[13,1,1,2,3,[[395,1,1,2,3]]]],[2542,10868,11797]]],["dwelleth",[1,1,[[18,1,1,0,1,[[503,1,1,0,1]]]],[14281]]],["dwelling",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13383]]],["dwellingplaces",[3,3,[[23,2,2,0,2,[[774,1,1,0,1],[795,1,1,1,2]]],[34,1,1,2,3,[[903,1,1,2,3]]]],[19685,20242,22737]]],["dwellings",[6,6,[[17,2,2,0,2,[[453,1,1,0,1],[474,1,1,1,2]]],[18,1,1,2,3,[[564,1,1,2,3]]],[22,1,1,3,4,[[710,1,1,3,4]]],[23,1,1,4,5,[[753,1,1,4,5]]],[25,1,1,5,6,[[826,1,1,5,6]]]],[13297,13840,15303,18277,19194,21087]]],["habitation",[2,2,[[18,1,1,0,1,[[609,1,1,0,1]]],[22,1,1,1,2,[[700,1,1,1,2]]]],[16156,18068]]],["habitations",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[22,1,1,1,2,[[732,1,1,1,2]]]],[15141,18725]]],["place",[2,2,[[12,1,1,0,1,[[343,1,1,0,1]]],[18,1,1,1,2,[[551,1,1,1,2]]]],[10486,15055]]],["places",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14659]]],["tabernacle",[112,102,[[1,57,54,0,54,[[74,1,1,0,1],[75,16,15,1,16],[76,2,2,16,18],[84,2,2,18,20],[85,12,11,20,31],[87,4,3,31,34],[88,3,3,34,37],[89,17,17,37,54]]],[2,4,4,54,58,[[97,1,1,54,55],[104,1,1,55,56],[106,1,1,56,57],[115,1,1,57,58]]],[3,41,34,58,92,[[117,7,3,58,61],[119,9,9,61,70],[120,4,4,70,74],[121,1,1,74,75],[123,2,2,75,77],[125,7,5,77,82],[126,4,3,82,85],[132,3,3,85,88],[133,1,1,88,89],[135,1,1,89,90],[147,2,2,90,92]]],[5,2,2,92,94,[[208,2,2,92,94]]],[9,1,1,94,95,[[273,1,1,94,95]]],[12,4,4,95,99,[[343,1,1,95,96],[353,1,1,96,97],[358,1,1,97,98],[360,1,1,98,99]]],[13,1,1,99,100,[[367,1,1,99,100]]],[18,1,1,100,101,[[555,1,1,100,101]]],[25,1,1,101,102,[[838,1,1,101,102]]]],[2204,2236,2241,2242,2247,2248,2250,2252,2253,2255,2257,2258,2261,2262,2265,2270,2281,2291,2546,2549,2574,2579,2580,2586,2588,2589,2591,2593,2594,2597,2598,2653,2654,2664,2696,2697,2704,2709,2712,2713,2716,2724,2725,2726,2728,2729,2731,2735,2736,2740,2741,2742,2743,2745,2927,3199,3239,3535,3654,3655,3657,3699,3700,3715,3717,3718,3721,3727,3728,3730,3759,3768,3769,3774,3809,3851,3853,3980,3983,3984,3985,3987,3999,4005,4009,4203,4218,4221,4257,4302,4694,4711,6445,6455,8186,10502,10859,10963,11009,11199,15173,21424]]],["tabernacles",[5,5,[[3,1,1,0,1,[[140,1,1,0,1]]],[18,4,4,1,5,[[520,1,1,1,2],[523,1,1,2,3],[561,1,1,3,4],[609,1,1,4,5]]]],[4451,14569,14618,15260,16158]]],["tents",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17545]]]]},{"k":"H4909","v":[["*",[4,4,[[0,3,3,0,3,[[28,1,1,0,1],[30,2,2,1,3]]],[7,1,1,3,4,[[233,1,1,3,4]]]],[810,880,914,7161]]],["reward",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7161]]],["wages",[3,3,[[0,3,3,0,3,[[28,1,1,0,1],[30,2,2,1,3]]]],[810,880,914]]]]},{"k":"H4910","v":[["*",[81,74,[[0,8,7,0,7,[[0,1,1,0,1],[2,1,1,1,2],[3,1,1,2,3],[23,1,1,3,4],[36,2,1,4,5],[44,2,2,5,7]]],[1,1,1,7,8,[[70,1,1,7,8]]],[4,2,1,8,9,[[167,2,1,8,9]]],[5,2,2,9,11,[[198,2,2,9,11]]],[6,8,5,11,16,[[218,4,2,11,13],[219,2,1,13,14],[224,1,1,14,15],[225,1,1,15,16]]],[9,2,1,16,17,[[289,2,1,16,17]]],[10,1,1,17,18,[[294,1,1,17,18]]],[12,1,1,18,19,[[366,1,1,18,19]]],[13,4,4,19,23,[[373,1,1,19,20],[375,1,1,20,21],[386,1,1,21,22],[389,1,1,22,23]]],[15,1,1,23,24,[[421,1,1,23,24]]],[17,1,1,24,25,[[460,1,1,24,25]]],[18,10,10,25,35,[[485,1,1,25,26],[496,1,1,26,27],[499,1,1,27,28],[536,1,1,28,29],[543,1,1,29,30],[566,1,1,30,31],[580,1,1,31,32],[582,2,2,32,34],[583,1,1,34,35]]],[19,11,11,35,46,[[633,1,1,35,36],[639,1,1,36,37],[643,1,1,37,38],[644,1,1,38,39],[646,1,1,39,40],[649,1,1,40,41],[650,1,1,41,42],[655,1,1,42,43],[656,3,3,43,46]]],[20,2,2,46,48,[[667,1,1,46,47],[668,1,1,47,48]]],[22,10,10,48,58,[[681,2,2,48,50],[692,1,1,50,51],[694,1,1,51,52],[697,1,1,52,53],[706,1,1,53,54],[718,1,1,54,55],[727,1,1,55,56],[730,1,1,56,57],[741,1,1,57,58]]],[23,5,4,58,62,[[766,1,1,58,59],[774,1,1,59,60],[777,1,1,60,61],[795,2,1,61,62]]],[24,1,1,62,63,[[801,1,1,62,63]]],[25,2,2,63,65,[[820,2,2,63,65]]],[26,5,5,65,70,[[860,5,5,65,70]]],[28,1,1,70,71,[[877,1,1,70,71]]],[32,1,1,71,72,[[897,1,1,71,72]]],[34,1,1,72,73,[[903,1,1,72,73]]],[37,1,1,73,74,[[916,1,1,73,74]]]],[17,71,86,593,1091,1366,1384,2085,5325,6132,6135,6741,6742,6756,6913,6940,8656,8865,11176,11342,11390,11593,11676,12548,13463,14018,14181,14232,14803,14880,15335,15568,15626,15627,15692,16547,16743,16872,16875,16935,17022,17045,17211,17226,17236,17250,17492,17497,17711,17719,17933,17970,18008,18178,18430,18643,18701,18885,19484,19688,19801,20258,20450,20892,20895,22039,22040,22041,22075,22079,22328,22635,22745,22960]]],["+",[3,2,[[0,2,1,0,1,[[36,2,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[1091,11390]]],["Dominion",[1,1,[[17,1,1,0,1,[[460,1,1,0,1]]]],[13463]]],["Rule",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6741]]],["dominion",[5,5,[[6,1,1,0,1,[[224,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[18,2,2,2,4,[[485,1,1,2,3],[496,1,1,3,4]]],[26,1,1,4,5,[[860,1,1,4,5]]]],[6913,12548,14018,14181,22041]]],["governor",[3,3,[[0,1,1,0,1,[[44,1,1,0,1]]],[18,1,1,1,2,[[499,1,1,1,2]]],[23,1,1,2,3,[[774,1,1,2,3]]]],[1384,14232,19688]]],["governors",[1,1,[[13,1,1,0,1,[[389,1,1,0,1]]]],[11676]]],["over",[3,3,[[9,1,1,0,1,[[289,1,1,0,1]]],[22,1,1,1,2,[[730,1,1,1,2]]],[24,1,1,2,3,[[801,1,1,2,3]]]],[8656,18701,20450]]],["power",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[2085,22079]]],["reign",[4,2,[[4,2,1,0,1,[[167,2,1,0,1]]],[6,2,1,1,2,[[219,2,1,1,2]]]],[5325,6756]]],["reigned",[2,2,[[5,1,1,0,1,[[198,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]]],[6135,8865]]],["reignest",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11176]]],["rule",[22,20,[[0,3,3,0,3,[[0,1,1,0,1],[2,1,1,1,2],[3,1,1,2,3]]],[6,3,1,3,4,[[218,3,1,3,4]]],[19,4,4,4,8,[[639,1,1,4,5],[644,1,1,5,6],[646,1,1,6,7],[656,1,1,7,8]]],[22,6,6,8,14,[[681,2,2,8,10],[697,1,1,10,11],[706,1,1,11,12],[718,1,1,12,13],[741,1,1,13,14]]],[25,2,2,14,16,[[820,2,2,14,16]]],[26,2,2,16,18,[[860,2,2,16,18]]],[28,1,1,18,19,[[877,1,1,18,19]]],[37,1,1,19,20,[[916,1,1,19,20]]]],[17,71,86,6742,16743,16875,16935,17226,17711,17719,18008,18178,18430,18885,20892,20895,22039,22075,22328,22960]]],["ruled",[4,4,[[0,1,1,0,1,[[23,1,1,0,1]]],[5,1,1,1,2,[[198,1,1,1,2]]],[18,1,1,2,3,[[583,1,1,2,3]]],[26,1,1,3,4,[[860,1,1,3,4]]]],[593,6132,15692,22040]]],["ruler",[14,13,[[0,1,1,0,1,[[44,1,1,0,1]]],[13,1,1,1,2,[[373,1,1,1,2]]],[18,2,2,2,4,[[582,2,2,2,4]]],[19,4,4,4,8,[[633,1,1,4,5],[650,1,1,5,6],[655,1,1,6,7],[656,1,1,7,8]]],[20,1,1,8,9,[[668,1,1,8,9]]],[22,1,1,9,10,[[694,1,1,9,10]]],[23,2,1,10,11,[[795,2,1,10,11]]],[32,1,1,11,12,[[897,1,1,11,12]]],[34,1,1,12,13,[[903,1,1,12,13]]]],[1366,11342,15626,15627,16547,17045,17211,17236,17497,17970,20258,22635,22745]]],["ruler's",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17250]]],["rulers",[4,4,[[6,1,1,0,1,[[225,1,1,0,1]]],[22,2,2,1,3,[[692,1,1,1,2],[727,1,1,2,3]]],[23,1,1,3,4,[[777,1,1,3,4]]]],[6940,17933,18643,19801]]],["rulest",[2,2,[[13,1,1,0,1,[[386,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]]],[11593,15335]]],["ruleth",[6,6,[[18,3,3,0,3,[[536,1,1,0,1],[543,1,1,1,2],[580,1,1,2,3]]],[19,2,2,3,5,[[643,1,1,3,4],[649,1,1,4,5]]],[20,1,1,5,6,[[667,1,1,5,6]]]],[14803,14880,15568,16872,17022,17492]]],["ruling",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[23,1,1,1,2,[[766,1,1,1,2]]]],[8656,19484]]]]},{"k":"H4911","v":[["*",[16,15,[[3,1,1,0,1,[[137,1,1,0,1]]],[17,1,1,1,2,[[465,1,1,1,2]]],[18,4,4,2,6,[[505,1,1,2,3],[526,2,2,3,5],[620,1,1,5,6]]],[22,2,2,6,8,[[692,1,1,6,7],[724,1,1,7,8]]],[25,8,7,8,15,[[813,1,1,8,9],[817,2,1,9,10],[818,1,1,10,11],[819,2,2,11,13],[821,1,1,13,14],[825,1,1,14,15]]]],[4367,13576,14300,14660,14668,16300,17938,18591,20703,20806,20827,20851,20852,20944,21059]]],["+",[2,2,[[18,1,1,0,1,[[505,1,1,0,1]]],[25,1,1,1,2,[[813,1,1,1,2]]]],[14300,20703]]],["become",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13576]]],["compare",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18591]]],["like",[4,4,[[18,3,3,0,3,[[526,2,2,0,2],[620,1,1,2,3]]],[22,1,1,3,4,[[692,1,1,3,4]]]],[14660,14668,16300,17938]]],["proverb",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20806]]],["proverbs",[2,2,[[3,1,1,0,1,[[137,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[4367,20806]]],["speak",[2,2,[[25,2,2,0,2,[[818,1,1,0,1],[821,1,1,1,2]]]],[20827,20944]]],["use",[2,2,[[25,2,2,0,2,[[819,2,2,0,2]]]],[20851,20852]]],["utter",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21059]]]]},{"k":"H4912","v":[["*",[39,39,[[3,7,7,0,7,[[139,2,2,0,2],[140,5,5,2,7]]],[4,1,1,7,8,[[180,1,1,7,8]]],[8,2,2,8,10,[[245,1,1,8,9],[259,1,1,9,10]]],[10,2,2,10,12,[[294,1,1,10,11],[299,1,1,11,12]]],[13,1,1,12,13,[[373,1,1,12,13]]],[17,3,3,13,16,[[448,1,1,13,14],[462,1,1,14,15],[464,1,1,15,16]]],[18,4,4,16,20,[[521,1,1,16,17],[526,1,1,17,18],[546,1,1,18,19],[555,1,1,19,20]]],[19,6,6,20,26,[[628,2,2,20,22],[637,1,1,22,23],[652,1,1,23,24],[653,2,2,24,26]]],[20,1,1,26,27,[[670,1,1,26,27]]],[22,1,1,27,28,[[692,1,1,27,28]]],[23,1,1,28,29,[[768,1,1,28,29]]],[25,8,8,29,37,[[813,2,2,29,31],[815,1,1,31,32],[818,1,1,32,33],[819,2,2,33,35],[821,1,1,35,36],[825,1,1,36,37]]],[32,1,1,37,38,[[894,1,1,37,38]]],[34,1,1,38,39,[[904,1,1,38,39]]]],[4423,4434,4449,4461,4466,4467,4469,5648,7430,7852,8876,9058,11344,13165,13482,13533,14585,14652,14946,15115,16401,16406,16657,17114,17148,17150,17532,17932,19533,20702,20703,20739,20827,20851,20852,20944,21059,22599,22754]]],["+",[1,1,[[25,1,1,0,1,[[813,1,1,0,1]]]],[20703]]],["byword",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14585]]],["like",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13165]]],["parable",[17,17,[[3,7,7,0,7,[[139,2,2,0,2],[140,5,5,2,7]]],[17,2,2,7,9,[[462,1,1,7,8],[464,1,1,8,9]]],[18,2,2,9,11,[[526,1,1,9,10],[555,1,1,10,11]]],[19,2,2,11,13,[[653,2,2,11,13]]],[25,2,2,13,15,[[818,1,1,13,14],[825,1,1,14,15]]],[32,1,1,15,16,[[894,1,1,15,16]]],[34,1,1,16,17,[[904,1,1,16,17]]]],[4423,4434,4449,4461,4466,4467,4469,13482,13533,14652,15115,17148,17150,20827,21059,22599,22754]]],["parables",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20944]]],["proverb",[13,13,[[4,1,1,0,1,[[180,1,1,0,1]]],[8,2,2,1,3,[[245,1,1,1,2],[259,1,1,2,3]]],[10,1,1,3,4,[[299,1,1,3,4]]],[13,1,1,4,5,[[373,1,1,4,5]]],[18,1,1,5,6,[[546,1,1,5,6]]],[19,1,1,6,7,[[628,1,1,6,7]]],[22,1,1,7,8,[[692,1,1,7,8]]],[23,1,1,8,9,[[768,1,1,8,9]]],[25,4,4,9,13,[[813,1,1,9,10],[815,1,1,10,11],[819,2,2,11,13]]]],[5648,7430,7852,9058,11344,14946,16406,17932,19533,20702,20739,20851,20852]]],["proverbs",[5,5,[[10,1,1,0,1,[[294,1,1,0,1]]],[19,3,3,1,4,[[628,1,1,1,2],[637,1,1,2,3],[652,1,1,3,4]]],[20,1,1,4,5,[[670,1,1,4,5]]]],[8876,16401,16657,17114,17532]]]]},{"k":"H4913","v":[["Mashal",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10528]]]]},{"k":"H4914","v":[["byword",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13266]]]]},{"k":"H4915","v":[["*",[3,3,[[17,1,1,0,1,[[476,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]],[37,1,1,2,3,[[919,1,1,2,3]]]],[13921,22040,23009]]],["dominion",[2,2,[[26,1,1,0,1,[[860,1,1,0,1]]],[37,1,1,1,2,[[919,1,1,1,2]]]],[22040,23009]]],["like",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13921]]]]},{"k":"H4916","v":[["*",[10,10,[[4,6,6,0,6,[[164,2,2,0,2],[167,1,1,2,3],[175,1,1,3,4],[180,2,2,4,6]]],[16,2,2,6,8,[[434,2,2,6,8]]],[22,2,2,8,10,[[685,1,1,8,9],[689,1,1,9,10]]]],[5247,5258,5329,5520,5619,5631,12853,12856,17807,17898]]],["forth",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17807]]],["lay",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17898]]],["put",[1,1,[[4,1,1,0,1,[[164,1,1,0,1]]]],[5247]]],["puttest",[2,2,[[4,2,2,0,2,[[164,1,1,0,1],[167,1,1,1,2]]]],[5258,5329]]],["sending",[2,2,[[16,2,2,0,2,[[434,2,2,0,2]]]],[12853,12856]]],["settest",[3,3,[[4,3,3,0,3,[[175,1,1,0,1],[180,2,2,1,3]]]],[5520,5619,5631]]]]},{"k":"H4917","v":[["*",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[20,1,1,1,2,[[666,1,1,1,2]]]],[15162,17466]]],["discharge",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17466]]],["sending",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15162]]]]},{"k":"H4918","v":[["Meshullam",[25,25,[[11,1,1,0,1,[[334,1,1,0,1]]],[12,7,7,1,8,[[340,1,1,1,2],[342,1,1,2,3],[345,1,1,3,4],[346,4,4,4,8]]],[13,1,1,8,9,[[400,1,1,8,9]]],[14,3,3,9,12,[[410,1,1,9,10],[412,2,2,10,12]]],[15,13,13,12,25,[[415,3,3,12,15],[418,1,1,15,16],[420,1,1,16,17],[422,2,2,17,19],[423,2,2,19,21],[424,4,4,21,25]]]],[10148,10380,10441,10592,10622,10623,10626,10627,11945,12217,12267,12281,12331,12333,12357,12419,12497,12556,12569,12595,12599,12637,12640,12649,12657]]]]},{"k":"H4919","v":[["Meshillemoth",[2,2,[[13,1,1,0,1,[[394,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[11776,12601]]]]},{"k":"H4920","v":[["Meshelemiah",[4,4,[[12,4,4,0,4,[[346,1,1,0,1],[363,3,3,1,4]]]],[10636,11078,11079,11086]]]]},{"k":"H4921","v":[["Meshillemith",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10627]]]]},{"k":"H4922","v":[["Meshullemeth",[1,1,[[11,1,1,0,1,[[333,1,1,0,1]]]],[10138]]]]},{"k":"H4923","v":[["*",[7,7,[[22,1,1,0,1,[[693,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]],[25,5,5,2,7,[[806,1,1,2,3],[807,1,1,3,4],[834,2,2,4,6],[836,1,1,6,7]]]],[17966,20114,20561,20577,21308,21309,21347]]],["+",[3,3,[[25,3,3,0,3,[[834,2,2,0,2],[836,1,1,2,3]]]],[21308,21309,21347]]],["astonishment",[1,1,[[25,1,1,0,1,[[806,1,1,0,1]]]],[20561]]],["desolate",[3,3,[[22,1,1,0,1,[[693,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]],[25,1,1,2,3,[[807,1,1,2,3]]]],[17966,20114,20577]]]]},{"k":"H4924","v":[["*",[7,7,[[0,2,2,0,2,[[26,2,2,0,2]]],[15,1,1,2,3,[[420,1,1,2,3]]],[18,1,1,3,4,[[555,1,1,3,4]]],[22,2,2,4,6,[[688,1,1,4,5],[695,1,1,5,6]]],[26,1,1,6,7,[[860,1,1,6,7]]]],[755,766,12503,15144,17866,17987,22060]]],["+",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[766]]],["fat",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12503]]],["fatness",[2,2,[[0,1,1,0,1,[[26,1,1,0,1]]],[22,1,1,1,2,[[695,1,1,1,2]]]],[755,17987]]],["fattest",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15144]]],["ones",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17866]]],["places",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22060]]]]},{"k":"H4925","v":[["Mishmannah",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10730]]]]},{"k":"H4926","v":[["hearing",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17887]]]]},{"k":"H4927","v":[["Mishma",[4,4,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,3,3,1,4,[[338,1,1,1,2],[341,2,2,2,4]]]],[672,10282,10410,10411]]]]},{"k":"H4928","v":[["*",[4,4,[[8,1,1,0,1,[[257,1,1,0,1]]],[9,1,1,1,2,[[289,1,1,1,2]]],[12,1,1,2,3,[[348,1,1,2,3]]],[22,1,1,3,4,[[689,1,1,3,4]]]],[7801,8676,10698,17898]]],["bidding",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7801]]],["guard",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8676,10698]]],["obey",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17898]]]]},{"k":"H4929","v":[["*",[22,20,[[0,6,6,0,6,[[39,3,3,0,3],[40,1,1,3,4],[41,2,2,4,6]]],[2,1,1,6,7,[[113,1,1,6,7]]],[3,1,1,7,8,[[131,1,1,7,8]]],[12,2,1,8,9,[[363,2,1,8,9]]],[15,8,7,9,16,[[416,3,3,9,12],[419,1,1,12,13],[424,3,2,13,15],[425,1,1,15,16]]],[17,1,1,16,17,[[442,1,1,16,17]]],[19,1,1,17,18,[[631,1,1,17,18]]],[23,1,1,18,19,[[795,1,1,18,19]]],[25,1,1,19,20,[[839,1,1,19,20]]]],[1175,1176,1179,1205,1269,1271,3458,4187,11093,12368,12381,12382,12423,12648,12649,12685,13020,16513,20224,21432]]],["diligence",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16513]]],["guard",[3,3,[[15,2,2,0,2,[[416,2,2,0,2]]],[25,1,1,2,3,[[839,1,1,2,3]]]],[12381,12382,21432]]],["offices",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12685]]],["prison",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1271]]],["ward",[12,10,[[0,5,5,0,5,[[39,3,3,0,3],[40,1,1,3,4],[41,1,1,4,5]]],[2,1,1,5,6,[[113,1,1,5,6]]],[3,1,1,6,7,[[131,1,1,6,7]]],[12,2,1,7,8,[[363,2,1,7,8]]],[15,3,2,8,10,[[424,3,2,8,10]]]],[1175,1176,1179,1205,1269,3458,4187,11093,12648,12649]]],["watch",[4,4,[[15,2,2,0,2,[[416,1,1,0,1],[419,1,1,1,2]]],[17,1,1,2,3,[[442,1,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]]],[12368,12423,13020,20224]]]]},{"k":"H4930","v":[["nails",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17534]]]]},{"k":"H4931","v":[["*",[78,69,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,5,5,1,6,[[61,1,1,1,2],[65,4,4,2,6]]],[2,3,3,6,9,[[97,1,1,6,7],[107,1,1,7,8],[111,1,1,8,9]]],[3,29,24,9,33,[[117,1,1,9,10],[119,10,8,10,18],[120,4,4,18,22],[124,2,1,22,23],[125,2,2,23,25],[133,1,1,25,26],[134,6,4,26,30],[135,1,1,30,31],[147,2,2,31,33]]],[4,1,1,33,34,[[163,1,1,33,34]]],[5,1,1,34,35,[[208,1,1,34,35]]],[8,1,1,35,36,[[257,1,1,35,36]]],[9,1,1,36,37,[[286,1,1,36,37]]],[10,1,1,37,38,[[292,1,1,37,38]]],[11,3,3,38,41,[[323,3,3,38,41]]],[12,8,6,41,47,[[346,2,2,41,43],[349,1,1,43,44],[360,3,1,44,45],[362,1,1,45,46],[363,1,1,46,47]]],[13,7,7,47,54,[[373,1,1,47,48],[374,1,1,48,49],[379,1,1,49,50],[389,1,1,50,51],[397,2,2,51,53],[401,1,1,53,54]]],[15,5,4,54,58,[[419,1,1,54,55],[424,3,2,55,57],[425,1,1,57,58]]],[22,1,1,58,59,[[699,1,1,58,59]]],[25,8,7,59,66,[[841,2,2,59,61],[845,5,4,61,65],[849,1,1,65,66]]],[34,1,1,66,67,[[904,1,1,66,67]]],[37,1,1,67,68,[[913,1,1,67,68]]],[38,1,1,68,69,[[927,1,1,68,69]]]],[697,1822,1970,1979,1980,1981,2952,3281,3378,3657,3699,3700,3717,3720,3723,3724,3728,3730,3770,3771,3774,3775,3965,3984,3988,4254,4260,4261,4262,4265,4298,4694,4711,5209,6429,7810,8557,8773,9834,9835,9836,10638,10642,10749,11015,11054,11089,11330,11360,11464,11662,11870,11871,11968,12423,12633,12669,12701,18043,21522,21523,21607,21613,21614,21615,21713,22749,22919,23134]]],["+",[3,3,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[120,1,1,1,2]]],[9,1,1,2,3,[[286,1,1,2,3]]]],[1822,3770,8557]]],["charge",[45,37,[[0,1,1,0,1,[[25,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]],[3,26,21,2,23,[[117,1,1,2,3],[119,10,8,3,11],[120,3,3,11,14],[124,2,1,14,15],[125,2,2,15,17],[134,6,4,17,21],[147,2,2,21,23]]],[4,1,1,23,24,[[163,1,1,23,24]]],[5,1,1,24,25,[[208,1,1,24,25]]],[10,1,1,25,26,[[292,1,1,25,26]]],[12,4,2,26,28,[[346,1,1,26,27],[360,3,1,27,28]]],[13,1,1,28,29,[[379,1,1,28,29]]],[25,8,7,29,36,[[841,2,2,29,31],[845,5,4,31,35],[849,1,1,35,36]]],[37,1,1,36,37,[[913,1,1,36,37]]]],[697,2952,3657,3699,3700,3717,3720,3723,3724,3728,3730,3771,3774,3775,3965,3984,3988,4260,4261,4262,4265,4694,4711,5209,6429,8773,10642,11015,11464,21522,21523,21607,21613,21614,21615,21713,22919]]],["charges",[4,4,[[13,4,4,0,4,[[374,1,1,0,1],[397,2,2,1,3],[401,1,1,3,4]]]],[11360,11870,11871,11968]]],["kept",[6,6,[[1,4,4,0,4,[[65,4,4,0,4]]],[3,2,2,4,6,[[133,1,1,4,5],[135,1,1,5,6]]]],[1970,1979,1980,1981,4254,4298]]],["offices",[1,1,[[13,1,1,0,1,[[373,1,1,0,1]]]],[11330]]],["ordinance",[3,3,[[2,2,2,0,2,[[107,1,1,0,1],[111,1,1,1,2]]],[38,1,1,2,3,[[927,1,1,2,3]]]],[3281,3378,23134]]],["safeguard",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7810]]],["ward",[5,4,[[12,2,2,0,2,[[349,1,1,0,1],[362,1,1,1,2]]],[15,2,1,2,3,[[424,2,1,2,3]]],[22,1,1,3,4,[[699,1,1,3,4]]]],[10749,11054,12669,18043]]],["wards",[3,3,[[12,2,2,0,2,[[346,1,1,0,1],[363,1,1,1,2]]],[15,1,1,2,3,[[425,1,1,2,3]]]],[10638,11089,12701]]],["watch",[5,5,[[11,3,3,0,3,[[323,3,3,0,3]]],[13,1,1,3,4,[[389,1,1,3,4]]],[34,1,1,4,5,[[904,1,1,4,5]]]],[9834,9835,9836,11662,22749]]],["watches",[2,2,[[15,2,2,0,2,[[419,1,1,0,1],[424,1,1,1,2]]]],[12423,12633]]]]},{"k":"H4932","v":[["*",[35,34,[[0,3,3,0,3,[[40,1,1,0,1],[42,2,2,1,3]]],[1,2,2,3,5,[[65,2,2,3,5]]],[4,2,2,5,7,[[167,1,1,5,6],[169,1,1,6,7]]],[5,1,1,7,8,[[194,1,1,7,8]]],[8,4,4,8,12,[[243,1,1,8,9],[250,1,1,9,10],[252,1,1,10,11],[258,1,1,11,12]]],[9,1,1,12,13,[[269,1,1,12,13]]],[11,3,3,13,16,[[334,1,1,13,14],[335,1,1,14,15],[337,1,1,15,16]]],[12,3,3,16,19,[[342,1,1,16,17],[352,1,1,17,18],[353,1,1,18,19]]],[13,4,4,19,23,[[394,1,1,19,20],[397,1,1,20,21],[400,1,1,21,22],[401,1,1,22,23]]],[14,1,1,23,24,[[403,1,1,23,24]]],[15,2,2,24,26,[[423,2,2,24,26]]],[16,1,1,26,27,[[435,1,1,26,27]]],[17,1,1,27,28,[[477,1,1,27,28]]],[22,2,1,28,29,[[739,2,1,28,29]]],[23,3,3,29,32,[[760,1,1,29,30],[761,1,1,30,31],[796,1,1,31,32]]],[35,1,1,32,33,[[906,1,1,32,33]]],[37,1,1,33,34,[[919,1,1,33,34]]]],[1238,1302,1305,1952,1969,5337,5382,6034,7371,7569,7631,7827,8084,10159,10169,10240,10440,10809,10825,11771,11866,11955,11990,12026,12597,12605,12869,13932,18850,19354,19375,20300,22797,23011]]],["college",[2,2,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]]],[10159,11955]]],["copy",[2,2,[[4,1,1,0,1,[[169,1,1,0,1]]],[5,1,1,1,2,[[194,1,1,1,2]]]],[5382,6034]]],["double",[8,7,[[0,2,2,0,2,[[42,2,2,0,2]]],[4,1,1,2,3,[[167,1,1,2,3]]],[22,2,1,3,4,[[739,2,1,3,4]]],[23,2,2,4,6,[[760,1,1,4,5],[761,1,1,5,6]]],[37,1,1,6,7,[[919,1,1,6,7]]]],[1302,1305,5337,18850,19354,19375,23011]]],["fatlings",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7569]]],["much",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1969]]],["next",[7,7,[[8,2,2,0,2,[[252,1,1,0,1],[258,1,1,1,2]]],[12,2,2,2,4,[[342,1,1,2,3],[353,1,1,3,4]]],[13,2,2,4,6,[[394,1,1,4,5],[397,1,1,5,6]]],[16,1,1,6,7,[[435,1,1,6,7]]]],[7631,7827,10440,10825,11771,11866,12869]]],["order",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10169]]],["second",[11,11,[[0,1,1,0,1,[[40,1,1,0,1]]],[8,1,1,1,2,[[243,1,1,1,2]]],[9,1,1,2,3,[[269,1,1,2,3]]],[11,1,1,3,4,[[337,1,1,3,4]]],[12,1,1,4,5,[[352,1,1,4,5]]],[13,1,1,5,6,[[401,1,1,5,6]]],[14,1,1,6,7,[[403,1,1,6,7]]],[15,2,2,7,9,[[423,2,2,7,9]]],[23,1,1,9,10,[[796,1,1,9,10]]],[35,1,1,10,11,[[906,1,1,10,11]]]],[1238,7371,8084,10240,10809,11990,12026,12597,12605,20300,22797]]],["twice",[2,2,[[1,1,1,0,1,[[65,1,1,0,1]]],[17,1,1,1,2,[[477,1,1,1,2]]]],[1952,13932]]]]},{"k":"H4933","v":[["*",[5,5,[[11,1,1,0,1,[[333,1,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]],[23,1,1,2,3,[[774,1,1,2,3]]],[34,1,1,3,4,[[904,1,1,3,4]]],[35,1,1,4,5,[[906,1,1,4,5]]]],[10133,18502,19683,22755,22800]]],["booties",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22755]]],["booty",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22800]]],["spoil",[3,3,[[11,1,1,0,1,[[333,1,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]],[23,1,1,2,3,[[774,1,1,2,3]]]],[10133,18502,19683]]]]},{"k":"H4934","v":[["path",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4399]]]]},{"k":"H4935","v":[["supple",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20766]]]]},{"k":"H4936","v":[["Misham",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10587]]]]},{"k":"H4937","v":[["stay",[5,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]],[22,3,1,2,3,[[681,3,1,2,3]]]],[8621,14136,17708]]]]},{"k":"H4938","v":[["*",[12,11,[[1,1,1,0,1,[[70,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[6,1,1,2,3,[[216,1,1,2,3]]],[11,4,3,3,6,[[316,3,2,3,5],[330,1,1,5,6]]],[18,1,1,6,7,[[500,1,1,6,7]]],[22,2,2,7,9,[[681,1,1,7,8],[714,1,1,8,9]]],[25,1,1,9,10,[[830,1,1,9,10]]],[37,1,1,10,11,[[918,1,1,10,11]]]],[2096,4358,6675,9632,9634,10045,14239,17708,18336,21189,22980]]],["staff",[11,10,[[1,1,1,0,1,[[70,1,1,0,1]]],[6,1,1,1,2,[[216,1,1,1,2]]],[11,4,3,2,5,[[316,3,2,2,4],[330,1,1,4,5]]],[18,1,1,5,6,[[500,1,1,5,6]]],[22,2,2,6,8,[[681,1,1,6,7],[714,1,1,7,8]]],[25,1,1,8,9,[[830,1,1,8,9]]],[37,1,1,9,10,[[918,1,1,9,10]]]],[2096,6675,9632,9634,10045,14239,17708,18336,21189,22980]]],["staves",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4358]]]]},{"k":"H4939","v":[["oppression",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17746]]]]},{"k":"H4940","v":[["*",[303,224,[[0,12,12,0,12,[[7,1,1,0,1],[9,5,5,1,6],[11,1,1,6,7],[23,3,3,7,10],[27,1,1,10,11],[35,1,1,11,12]]],[1,7,7,12,19,[[55,6,6,12,18],[61,1,1,18,19]]],[2,6,6,19,25,[[109,1,1,19,20],[114,5,5,20,25]]],[3,159,94,25,119,[[117,14,14,25,39],[118,1,1,39,40],[119,21,12,40,52],[120,18,17,52,69],[127,1,1,69,70],[142,94,41,70,111],[143,3,3,111,114],[149,1,1,114,115],[152,6,4,115,119]]],[4,1,1,119,120,[[181,1,1,119,120]]],[5,47,42,120,162,[[192,1,1,120,121],[193,5,2,121,123],[199,6,6,123,129],[201,3,3,129,132],[202,2,2,132,134],[203,2,1,134,135],[204,4,4,135,139],[205,12,12,139,151],[207,12,11,151,162]]],[6,8,8,162,170,[[211,1,1,162,163],[219,1,1,163,164],[223,1,1,164,165],[227,1,1,165,166],[228,3,3,166,169],[231,1,1,169,170]]],[7,2,2,170,172,[[233,2,2,170,172]]],[8,7,5,172,177,[[244,2,1,172,173],[245,2,1,173,174],[253,1,1,174,175],[255,2,2,175,177]]],[9,2,2,177,179,[[280,1,1,177,178],[282,1,1,178,179]]],[12,19,19,179,198,[[339,2,2,179,181],[341,5,5,181,186],[342,1,1,186,187],[343,9,9,187,196],[344,1,1,196,197],[353,1,1,197,198]]],[15,1,1,198,199,[[416,1,1,198,199]]],[16,2,1,199,200,[[434,2,1,199,200]]],[17,2,2,200,202,[[466,1,1,200,201],[467,1,1,201,202]]],[18,3,3,202,205,[[499,1,1,202,203],[573,1,1,203,204],[584,1,1,204,205]]],[23,9,9,205,214,[[745,1,1,205,206],[746,1,1,206,207],[747,1,1,207,208],[752,1,1,208,209],[754,1,1,209,210],[759,1,1,210,211],[769,1,1,211,212],[775,1,1,212,213],[777,1,1,213,214]]],[25,1,1,214,215,[[821,1,1,214,215]]],[29,2,2,215,217,[[881,2,2,215,217]]],[32,1,1,217,218,[[894,1,1,217,218]]],[33,1,1,218,219,[[902,1,1,218,219]]],[37,11,5,219,224,[[922,9,3,219,222],[924,2,2,222,224]]]],[202,239,252,254,265,266,301,629,631,632,787,1080,1669,1670,1672,1674,1679,1680,1837,3323,3479,3510,3514,3516,3518,3606,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3692,3707,3710,3711,3712,3713,3715,3719,3721,3722,3725,3727,3731,3745,3761,3765,3767,3771,3772,3776,3777,3779,3780,3781,3783,3784,3785,3787,3788,3789,4034,4494,4495,4496,4501,4502,4503,4504,4505,4506,4507,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4536,4537,4538,4539,4546,4547,4555,4558,4565,4814,4880,4885,4887,4891,5697,5972,5990,5993,6169,6177,6178,6182,6183,6185,6203,6214,6222,6270,6273,6277,6304,6313,6314,6321,6322,6329,6331,6337,6338,6344,6345,6352,6353,6360,6361,6369,6385,6386,6387,6388,6391,6401,6407,6408,6414,6415,6421,6534,6755,6886,6987,6995,7004,7012,7126,7150,7152,7412,7439,7694,7736,7759,8363,8431,10359,10361,10387,10393,10406,10412,10423,10435,10473,10508,10514,10515,10516,10517,10520,10524,10525,10540,10848,12372,12862,13622,13630,14231,15472,15740,18961,18969,19016,19156,19226,19318,19543,19692,19799,20927,22396,22397,22598,22716,23057,23058,23059,23085,23086]]],["+",[30,27,[[0,1,1,0,1,[[23,1,1,0,1]]],[2,2,2,1,3,[[114,2,2,1,3]]],[3,4,4,3,7,[[143,1,1,3,4],[152,3,3,4,7]]],[5,5,5,7,12,[[207,5,5,7,12]]],[6,4,4,12,16,[[223,1,1,12,13],[227,1,1,13,14],[228,2,2,14,16]]],[7,2,2,16,18,[[233,2,2,16,18]]],[9,1,1,18,19,[[282,1,1,18,19]]],[12,3,3,19,22,[[343,3,3,19,22]]],[16,2,1,22,23,[[434,2,1,22,23]]],[17,1,1,23,24,[[467,1,1,23,24]]],[23,1,1,24,25,[[747,1,1,24,25]]],[37,4,2,25,27,[[922,4,2,25,27]]]],[631,3514,3518,4565,4880,4887,4891,6386,6387,6391,6408,6421,6886,6987,6995,7004,7150,7152,8431,10515,10520,10525,12862,13630,19016,23057,23059]]],["families",[160,153,[[0,8,8,0,8,[[9,5,5,0,5],[11,1,1,5,6],[27,1,1,6,7],[35,1,1,7,8]]],[1,7,7,8,15,[[55,6,6,8,14],[61,1,1,14,15]]],[3,79,73,15,88,[[117,14,14,15,29],[118,1,1,29,30],[119,13,12,30,42],[120,18,17,42,59],[127,1,1,59,60],[142,29,25,60,85],[143,1,1,85,86],[149,1,1,86,87],[152,1,1,87,88]]],[5,37,36,88,124,[[193,1,1,88,89],[199,6,6,89,95],[201,3,3,95,98],[202,2,2,98,100],[203,2,1,100,101],[204,4,4,101,105],[205,12,12,105,117],[207,7,7,117,124]]],[8,2,2,124,126,[[244,1,1,124,125],[245,1,1,125,126]]],[12,13,13,126,139,[[339,2,2,126,128],[341,4,4,128,132],[342,1,1,132,133],[343,5,5,133,138],[344,1,1,138,139]]],[15,1,1,139,140,[[416,1,1,139,140]]],[17,1,1,140,141,[[466,1,1,140,141]]],[18,1,1,141,142,[[584,1,1,141,142]]],[23,6,6,142,148,[[745,1,1,142,143],[746,1,1,143,144],[754,1,1,144,145],[769,1,1,145,146],[775,1,1,146,147],[777,1,1,147,148]]],[25,1,1,148,149,[[821,1,1,148,149]]],[29,1,1,149,150,[[881,1,1,149,150]]],[33,1,1,150,151,[[902,1,1,150,151]]],[37,2,2,151,153,[[922,1,1,151,152],[924,1,1,152,153]]]],[239,252,254,265,266,301,787,1080,1669,1670,1672,1674,1679,1680,1837,3606,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3692,3707,3710,3711,3712,3713,3715,3719,3721,3722,3725,3727,3731,3745,3761,3765,3767,3771,3772,3776,3777,3779,3780,3781,3783,3784,3785,3787,3788,3789,4034,4496,4501,4503,4504,4507,4509,4511,4512,4514,4515,4516,4517,4523,4524,4526,4527,4530,4531,4532,4533,4536,4537,4539,4546,4547,4555,4814,4880,5990,6169,6177,6178,6182,6183,6185,6203,6214,6222,6270,6273,6277,6304,6313,6314,6321,6322,6329,6331,6337,6338,6344,6345,6352,6353,6360,6361,6369,6385,6388,6401,6407,6414,6415,6421,7412,7439,10359,10361,10387,10393,10406,10423,10435,10473,10508,10514,10516,10517,10540,12372,13622,15740,18961,18969,19226,19543,19692,19799,20927,22397,22716,23059,23085]]],["family",[105,59,[[2,4,4,0,4,[[109,1,1,0,1],[114,3,3,1,4]]],[3,76,34,4,38,[[119,8,3,4,7],[142,65,28,7,35],[143,1,1,35,36],[152,2,2,36,38]]],[4,1,1,38,39,[[181,1,1,38,39]]],[5,4,2,39,41,[[193,4,2,39,41]]],[6,4,4,41,45,[[211,1,1,41,42],[219,1,1,42,43],[228,1,1,43,44],[231,1,1,44,45]]],[8,5,5,45,50,[[244,1,1,45,46],[245,1,1,46,47],[253,1,1,47,48],[255,2,2,48,50]]],[9,1,1,50,51,[[280,1,1,50,51]]],[12,2,2,51,53,[[341,1,1,51,52],[343,1,1,52,53]]],[23,1,1,53,54,[[752,1,1,53,54]]],[29,1,1,54,55,[[881,1,1,54,55]]],[32,1,1,55,56,[[894,1,1,55,56]]],[37,5,3,56,59,[[922,4,2,56,58],[924,1,1,58,59]]]],[3323,3479,3510,3516,3713,3719,3725,4494,4495,4501,4502,4504,4505,4506,4509,4510,4512,4513,4515,4518,4519,4520,4521,4524,4525,4527,4528,4529,4531,4533,4534,4537,4538,4546,4547,4558,4885,4891,5697,5990,5993,6534,6755,7012,7126,7412,7439,7694,7736,7759,8363,10412,10524,19156,22396,22598,23057,23058,23086]]],["kindred",[3,3,[[0,2,2,0,2,[[23,2,2,0,2]]],[5,1,1,2,3,[[192,1,1,2,3]]]],[629,632,5972]]],["kindreds",[3,3,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,2,2,1,3,[[499,1,1,1,2],[573,1,1,2,3]]]],[10848,14231,15472]]],["kinds",[2,2,[[0,1,1,0,1,[[7,1,1,0,1]]],[23,1,1,1,2,[[759,1,1,1,2]]]],[202,19318]]]]},{"k":"H4941","v":[["*",[421,406,[[0,3,3,0,3,[[17,2,2,0,2],[39,1,1,2,3]]],[1,11,10,3,13,[[64,1,1,3,4],[70,3,3,4,7],[72,1,1,7,8],[73,1,1,8,9],[75,1,1,9,10],[77,4,3,10,13]]],[2,14,14,13,27,[[94,1,1,13,14],[98,1,1,14,15],[107,3,3,15,18],[108,3,3,18,21],[109,1,1,21,22],[113,1,1,22,23],[114,1,1,23,24],[115,3,3,24,27]]],[3,19,19,27,46,[[125,2,2,27,29],[131,2,2,29,31],[143,3,3,31,34],[145,8,8,34,42],[151,3,3,42,45],[152,1,1,45,46]]],[4,37,36,46,82,[[153,2,1,46,47],[156,5,5,47,52],[157,2,2,52,54],[158,2,2,54,56],[159,2,2,56,58],[160,1,1,58,59],[162,1,1,59,60],[163,2,2,60,62],[164,1,1,62,63],[168,2,2,63,65],[169,3,3,65,68],[170,1,1,68,69],[171,1,1,69,70],[173,2,2,70,72],[176,1,1,72,73],[177,1,1,73,74],[178,2,2,74,76],[179,1,1,76,77],[182,1,1,77,78],[184,2,2,78,80],[185,2,2,80,82]]],[5,3,3,82,85,[[192,1,1,82,83],[206,1,1,83,84],[210,1,1,84,85]]],[6,3,3,85,88,[[214,1,1,85,86],[223,1,1,86,87],[228,1,1,87,88]]],[8,7,7,88,95,[[237,1,1,88,89],[243,3,3,89,92],[245,1,1,92,93],[262,1,1,93,94],[265,1,1,94,95]]],[9,5,5,95,100,[[274,1,1,95,96],[281,3,3,96,99],[288,1,1,99,100]]],[10,18,16,100,116,[[292,1,1,100,101],[293,3,2,101,103],[294,1,1,103,104],[296,2,2,104,106],[297,1,1,106,107],[298,5,4,107,111],[299,1,1,111,112],[300,1,1,112,113],[301,1,1,113,114],[308,1,1,114,115],[310,1,1,115,116]]],[11,11,9,116,125,[[313,1,1,116,117],[323,1,1,117,118],[329,8,6,118,124],[337,1,1,124,125]]],[12,9,9,125,134,[[343,1,1,125,126],[352,1,1,126,127],[353,2,2,127,129],[355,1,1,129,130],[359,1,1,130,131],[360,1,1,131,132],[361,1,1,132,133],[365,1,1,133,134]]],[13,13,13,134,147,[[370,2,2,134,136],[372,2,2,136,138],[373,1,1,138,139],[374,1,1,139,140],[375,1,1,140,141],[385,3,3,141,144],[396,1,1,144,145],[399,1,1,145,146],[401,1,1,146,147]]],[14,2,2,147,149,[[405,1,1,147,148],[409,1,1,148,149]]],[15,5,5,149,154,[[413,1,1,149,150],[420,1,1,150,151],[421,2,2,151,153],[422,1,1,153,154]]],[17,23,23,154,177,[[443,1,1,154,155],[444,2,2,155,157],[448,1,1,157,158],[449,1,1,158,159],[454,1,1,159,160],[457,1,1,160,161],[458,1,1,161,162],[462,1,1,162,163],[464,1,1,163,164],[466,1,1,164,165],[467,1,1,165,166],[469,6,6,166,172],[470,1,1,172,173],[471,2,2,173,175],[472,1,1,175,176],[475,1,1,176,177]]],[18,65,64,177,241,[[478,1,1,177,178],[484,1,1,178,179],[486,3,3,179,182],[487,1,1,182,183],[494,1,1,183,184],[495,1,1,184,185],[496,1,1,185,186],[502,1,1,186,187],[510,1,1,187,188],[512,1,1,188,189],[513,1,1,189,190],[514,3,3,190,193],[525,1,1,193,194],[549,2,2,194,196],[553,1,1,196,197],[558,1,1,197,198],[566,2,2,198,200],[571,1,1,200,201],[574,2,2,201,203],[576,2,1,203,204],[578,1,1,204,205],[580,1,1,205,206],[582,2,2,206,208],[583,1,1,208,209],[588,1,1,209,210],[589,1,1,210,211],[596,23,23,211,234],[599,1,1,234,235],[617,1,1,235,236],[620,1,1,236,237],[623,1,1,237,238],[624,2,2,238,240],[626,1,1,240,241]]],[19,20,20,241,261,[[628,1,1,241,242],[629,2,2,242,244],[635,1,1,244,245],[639,1,1,245,246],[640,1,1,246,247],[643,4,4,247,251],[644,1,1,251,252],[645,1,1,252,253],[646,1,1,253,254],[648,3,3,254,257],[651,1,1,257,258],[655,1,1,258,259],[656,2,2,259,261]]],[20,6,6,261,267,[[661,1,1,261,262],[663,1,1,262,263],[666,2,2,263,265],[669,1,1,265,266],[670,1,1,266,267]]],[22,42,40,267,307,[[679,3,3,267,270],[681,1,1,270,271],[682,1,1,271,272],[683,2,2,272,274],[687,1,1,274,275],[688,1,1,275,276],[694,1,1,276,277],[704,2,2,277,279],[706,4,3,279,282],[708,1,1,282,283],[710,3,3,283,286],[711,1,1,286,287],[712,1,1,287,288],[718,2,2,288,290],[719,1,1,290,291],[720,3,3,291,294],[727,1,1,294,295],[728,1,1,295,296],[729,1,1,296,297],[731,1,1,297,298],[732,1,1,298,299],[734,1,1,299,300],[736,2,1,300,301],[737,5,5,301,306],[739,1,1,306,307]]],[23,32,32,307,339,[[745,1,1,307,308],[748,2,2,308,310],[749,4,4,310,314],[751,1,1,314,315],[752,1,1,315,316],[753,1,1,316,317],[754,1,1,317,318],[756,1,1,318,319],[761,1,1,319,320],[765,1,1,320,321],[766,3,3,321,324],[767,1,1,324,325],[770,2,2,325,327],[774,2,2,327,329],[776,2,2,329,331],[777,1,1,331,332],[783,1,1,332,333],[790,1,1,333,334],[792,2,2,334,336],[793,1,1,336,337],[795,1,1,337,338],[796,1,1,338,339]]],[24,2,2,339,341,[[799,2,2,339,341]]],[25,42,37,341,378,[[806,5,3,341,344],[808,2,2,344,346],[812,3,2,346,348],[817,1,1,348,349],[819,7,7,349,356],[821,8,8,356,364],[822,1,1,364,365],[823,1,1,365,366],[824,4,2,366,368],[834,3,3,368,371],[835,1,1,371,372],[837,1,1,372,373],[838,1,1,373,374],[840,1,1,374,375],[843,1,1,375,376],[845,1,1,376,377],[846,1,1,377,378]]],[26,1,1,378,379,[[858,1,1,378,379]]],[27,6,6,379,385,[[863,1,1,379,380],[866,2,2,380,382],[867,1,1,382,383],[871,1,1,383,384],[873,1,1,384,385]]],[29,4,4,385,389,[[883,3,3,385,388],[884,1,1,388,389]]],[32,5,5,389,394,[[895,3,3,389,392],[898,1,1,392,393],[899,1,1,393,394]]],[34,4,3,394,397,[[903,4,3,394,397]]],[35,4,4,397,401,[[907,1,1,397,398],[908,3,3,398,401]]],[37,2,2,401,403,[[917,1,1,401,402],[918,1,1,402,403]]],[38,3,3,403,406,[[926,1,1,403,404],[927,1,1,404,405],[928,1,1,405,406]]]],[443,449,1185,1945,2078,2086,2108,2150,2180,2265,2308,2322,2323,2840,2969,3255,3256,3277,3296,3316,3318,3340,3468,3487,3539,3567,3570,3968,3979,4169,4177,4559,4565,4575,4614,4626,4629,4632,4635,4638,4641,4645,4857,4869,4874,4892,4909,5005,5009,5012,5018,5049,5054,5084,5087,5106,5122,5123,5148,5204,5209,5240,5241,5360,5361,5372,5373,5375,5387,5412,5464,5469,5542,5548,5582,5583,5604,5724,5762,5799,5820,5831,5964,6378,6501,6604,6896,7000,7253,7372,7378,7380,7443,7941,8003,8224,8391,8393,8395,8625,8773,8827,8844,8872,8908,8934,8941,9030,9034,9043,9044,9055,9088,9141,9369,9448,9540,9843,10009,10010,10016,10017,10020,10023,10228,10486,10804,10832,10834,10904,10977,11014,11034,11150,11253,11266,11317,11321,11341,11360,11372,11582,11584,11586,11843,11916,11979,12101,12183,12303,12511,12524,12540,12578,13032,13070,13083,13171,13184,13304,13393,13423,13483,13546,13601,13637,13687,13688,13689,13695,13700,13706,13722,13742,13753,13792,13872,13944,14001,14025,14028,14037,14046,14105,14140,14177,14260,14371,14433,14444,14456,14478,14480,14645,15001,15002,15090,15221,15340,15356,15446,15480,15486,15503,15514,15555,15611,15613,15654,15800,15808,15905,15911,15918,15928,15937,15941,15950,15960,15973,15982,15989,16000,16004,16006,16018,16019,16030,16035,16047,16054,16058,16062,16073,16094,16275,16295,16348,16370,16371,16394,16403,16441,16442,16622,16724,16770,16848,16850,16851,16873,16896,16906,16953,16987,16991,16999,17102,17201,17228,17250,17375,17405,17463,17464,17522,17537,17671,17675,17681,17721,17737,17746,17755,17836,17852,17974,18138,18139,18170,18181,18190,18235,18260,18266,18275,18284,18308,18434,18447,18452,18481,18483,18484,18640,18670,18677,18719,18740,18754,18788,18808,18809,18811,18814,18815,18851,18962,19029,19039,19059,19062,19063,19086,19124,19160,19199,19225,19250,19368,19452,19457,19467,19469,19489,19583,19588,19678,19685,19738,19739,19790,19928,20073,20101,20127,20139,20221,20285,20389,20413,20552,20553,20554,20600,20604,20667,20675,20800,20854,20857,20858,20866,20868,20870,20876,20906,20908,20911,20913,20914,20916,20919,20920,20971,21005,21031,21052,21294,21296,21299,21329,21386,21421,21469,21563,21623,21639,21993,22124,22153,22163,22172,22229,22258,22430,22438,22447,22462,22609,22616,22617,22656,22673,22735,22738,22743,22808,22825,22828,22835,22971,22992,23120,23125,23142]]],["+",[12,12,[[1,1,1,0,1,[[77,1,1,0,1]]],[4,1,1,1,2,[[171,1,1,1,2]]],[6,1,1,2,3,[[223,1,1,2,3]]],[13,1,1,3,4,[[385,1,1,3,4]]],[18,2,2,4,6,[[596,2,2,4,6]]],[22,3,3,6,9,[[728,1,1,6,7],[731,1,1,7,8],[737,1,1,8,9]]],[23,1,1,9,10,[[766,1,1,9,10]]],[25,1,1,10,11,[[823,1,1,10,11]]],[26,1,1,11,12,[[858,1,1,11,12]]]],[2323,5412,6896,11582,16000,16018,18670,18719,18809,19467,21005,21993]]],["Judgment",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18181]]],["cause",[12,11,[[3,1,1,0,1,[[143,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]],[10,4,3,2,5,[[298,4,3,2,5]]],[13,2,2,5,7,[[372,2,2,5,7]]],[17,3,3,7,10,[[448,1,1,7,8],[458,1,1,8,9],[466,1,1,9,10]]],[24,1,1,10,11,[[799,1,1,10,11]]]],[4559,8393,9030,9034,9044,11317,11321,13171,13423,13601,20413]]],["ceremonies",[1,1,[[3,1,1,0,1,[[125,1,1,0,1]]]],[3968]]],["charge",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8872]]],["crimes",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20600]]],["custom",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[14,1,1,1,2,[[405,1,1,1,2]]]],[7253,12101]]],["deserts",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20604]]],["determination",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22828]]],["discretion",[2,2,[[18,1,1,0,1,[[589,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]]],[15808,18190]]],["disposing",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16873]]],["do",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16030]]],["due",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5387]]],["fashion",[2,2,[[1,1,1,0,1,[[75,1,1,0,1]]],[10,1,1,1,2,[[296,1,1,1,2]]]],[2265,8934]]],["fashions",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21563]]],["form",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11253]]],["judged",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20800]]],["judgment",[184,179,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,5,5,1,6,[[70,1,1,1,2],[72,1,1,2,3],[77,3,3,3,6]]],[2,2,2,6,8,[[108,2,2,6,8]]],[3,4,4,8,12,[[143,2,2,8,10],[151,2,2,10,12]]],[4,13,12,12,24,[[153,2,1,12,13],[162,1,1,13,14],[168,2,2,14,16],[169,3,3,16,19],[176,1,1,19,20],[177,1,1,20,21],[179,1,1,21,22],[184,2,2,22,24]]],[5,1,1,24,25,[[206,1,1,24,25]]],[6,1,1,25,26,[[214,1,1,25,26]]],[8,1,1,26,27,[[243,1,1,26,27]]],[9,3,3,27,30,[[274,1,1,27,28],[281,2,2,28,30]]],[10,6,5,30,35,[[293,3,2,30,32],[297,1,1,32,33],[300,1,1,33,34],[310,1,1,34,35]]],[11,1,1,35,36,[[337,1,1,35,36]]],[12,1,1,36,37,[[355,1,1,36,37]]],[13,2,2,37,39,[[375,1,1,37,38],[385,1,1,38,39]]],[17,15,15,39,54,[[443,1,1,39,40],[444,2,2,40,42],[449,1,1,42,43],[454,1,1,43,44],[457,1,1,44,45],[462,1,1,45,46],[464,1,1,46,47],[467,1,1,47,48],[469,4,4,48,52],[472,1,1,52,53],[475,1,1,53,54]]],[18,28,27,54,81,[[478,1,1,54,55],[484,1,1,55,56],[486,2,2,56,58],[502,1,1,58,59],[510,1,1,59,60],[512,1,1,60,61],[514,3,3,61,64],[549,1,1,64,65],[553,1,1,65,66],[566,1,1,66,67],[571,1,1,67,68],[574,1,1,68,69],[576,2,1,69,70],[578,1,1,70,71],[580,1,1,71,72],[583,1,1,72,73],[588,1,1,73,74],[596,3,3,74,77],[599,1,1,77,78],[620,1,1,78,79],[623,1,1,79,80],[626,1,1,80,81]]],[19,16,16,81,97,[[628,1,1,81,82],[629,2,2,82,84],[635,1,1,84,85],[640,1,1,85,86],[643,1,1,86,87],[644,1,1,87,88],[645,1,1,88,89],[646,1,1,89,90],[648,3,3,90,93],[651,1,1,93,94],[655,1,1,94,95],[656,2,2,95,97]]],[20,6,6,97,103,[[661,1,1,97,98],[663,1,1,98,99],[666,2,2,99,101],[669,1,1,101,102],[670,1,1,102,103]]],[22,31,30,103,133,[[679,3,3,103,106],[681,1,1,106,107],[682,1,1,107,108],[683,2,2,108,110],[687,1,1,110,111],[694,1,1,111,112],[706,2,1,112,113],[708,1,1,113,114],[710,2,2,114,116],[711,1,1,116,117],[712,1,1,117,118],[718,2,2,118,120],[719,1,1,120,121],[720,3,3,121,124],[727,1,1,124,125],[729,1,1,125,126],[732,1,1,126,127],[734,1,1,127,128],[737,4,4,128,132],[739,1,1,132,133]]],[23,19,19,133,152,[[748,1,1,133,134],[749,3,3,134,137],[751,1,1,137,138],[752,1,1,138,139],[753,1,1,139,140],[754,1,1,140,141],[765,1,1,141,142],[766,2,2,142,144],[767,1,1,144,145],[777,1,1,145,146],[783,1,1,146,147],[792,2,2,147,149],[793,1,1,149,150],[795,1,1,150,151],[796,1,1,151,152]]],[25,5,5,152,157,[[819,1,1,152,153],[824,1,1,153,154],[835,1,1,154,155],[840,1,1,155,156],[846,1,1,156,157]]],[27,5,5,157,162,[[863,1,1,157,158],[866,2,2,158,160],[871,1,1,160,161],[873,1,1,161,162]]],[29,4,4,162,166,[[883,3,3,162,165],[884,1,1,165,166]]],[32,4,4,166,170,[[895,3,3,166,169],[899,1,1,169,170]]],[34,4,3,170,173,[[903,4,3,170,173]]],[35,2,2,173,175,[[907,1,1,173,174],[908,1,1,174,175]]],[37,2,2,175,177,[[917,1,1,175,176],[918,1,1,176,177]]],[38,2,2,177,179,[[926,1,1,177,178],[927,1,1,178,179]]]],[443,2108,2150,2308,2322,2323,3296,3316,4565,4575,4857,4874,4909,5204,5360,5361,5372,5373,5375,5542,5548,5604,5762,5799,6378,6604,7372,8224,8391,8395,8827,8844,8941,9088,9448,10228,10904,11372,11584,13032,13070,13083,13184,13304,13393,13483,13546,13637,13687,13688,13695,13706,13792,13872,13944,14001,14028,14037,14260,14371,14433,14456,14478,14480,15002,15090,15340,15446,15480,15503,15514,15555,15654,15800,15982,16019,16047,16094,16295,16348,16394,16403,16441,16442,16622,16770,16850,16896,16906,16953,16987,16991,16999,17102,17201,17228,17250,17375,17405,17463,17464,17522,17537,17671,17675,17681,17721,17737,17746,17755,17836,17974,18170,18235,18260,18275,18284,18308,18434,18447,18452,18481,18483,18484,18640,18677,18740,18754,18808,18811,18814,18815,18851,19029,19059,19062,19063,19124,19160,19199,19225,19452,19457,19469,19489,19790,19928,20101,20127,20139,20221,20285,20857,21031,21329,21469,21639,22124,22153,22163,22229,22258,22430,22438,22447,22462,22609,22616,22617,22673,22735,22738,22743,22808,22825,22971,22992,23120,23125]]],["judgments",[105,103,[[1,2,2,0,2,[[70,1,1,0,1],[73,1,1,1,2]]],[2,9,9,2,11,[[107,3,3,2,5],[108,1,1,5,6],[109,1,1,6,7],[114,1,1,7,8],[115,3,3,8,11]]],[3,2,2,11,13,[[151,1,1,11,12],[152,1,1,12,13]]],[4,20,20,13,33,[[156,5,5,13,18],[157,2,2,18,20],[158,2,2,20,22],[159,2,2,22,24],[160,1,1,24,25],[163,2,2,25,27],[164,1,1,27,28],[178,2,2,28,30],[182,1,1,30,31],[185,2,2,31,33]]],[9,1,1,33,34,[[288,1,1,33,34]]],[10,5,5,34,39,[[292,1,1,34,35],[296,1,1,35,36],[298,1,1,36,37],[299,1,1,37,38],[301,1,1,38,39]]],[12,4,4,39,43,[[353,2,2,39,41],[359,1,1,41,42],[365,1,1,42,43]]],[13,2,2,43,45,[[373,1,1,43,44],[385,1,1,44,45]]],[14,1,1,45,46,[[409,1,1,45,46]]],[15,4,4,46,50,[[413,1,1,46,47],[421,2,2,47,49],[422,1,1,49,50]]],[18,28,28,50,78,[[487,1,1,50,51],[495,1,1,51,52],[496,1,1,52,53],[513,1,1,53,54],[525,1,1,54,55],[549,1,1,55,56],[566,1,1,56,57],[574,1,1,57,58],[582,2,2,58,60],[596,16,16,60,76],[624,2,2,76,78]]],[22,2,2,78,80,[[704,2,2,78,80]]],[23,2,2,80,82,[[745,1,1,80,81],[756,1,1,81,82]]],[25,20,18,82,100,[[806,5,3,82,85],[812,1,1,85,86],[819,2,2,86,88],[821,8,8,88,96],[824,1,1,96,97],[837,1,1,97,98],[838,1,1,98,99],[845,1,1,99,100]]],[27,1,1,100,101,[[867,1,1,100,101]]],[35,1,1,101,102,[[908,1,1,101,102]]],[38,1,1,102,103,[[928,1,1,102,103]]]],[2078,2180,3255,3256,3277,3318,3340,3487,3539,3567,3570,4869,4892,5005,5009,5012,5018,5049,5054,5084,5087,5106,5122,5123,5148,5209,5240,5241,5582,5583,5724,5820,5831,8625,8773,8908,9043,9055,9141,10832,10834,10977,11150,11341,11586,12183,12303,12524,12540,12578,14046,14140,14177,14444,14645,15001,15356,15486,15611,15613,15905,15911,15918,15928,15937,15941,15950,15960,15973,16004,16006,16035,16054,16058,16062,16073,16370,16371,18138,18139,18962,19250,20552,20553,20554,20667,20858,20866,20906,20908,20911,20913,20914,20916,20919,20920,21031,21386,21421,21623,22172,22835,23142]]],["just",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16851]]],["justice",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13753]]],["justly",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22656]]],["law",[2,2,[[2,1,1,0,1,[[113,1,1,0,1]]],[18,1,1,1,2,[[558,1,1,1,2]]]],[3468,15221]]],["lawful",[7,7,[[25,7,7,0,7,[[819,4,4,0,4],[834,3,3,4,7]]]],[20854,20868,20870,20876,21294,21296,21299]]],["manner",[35,34,[[0,1,1,0,1,[[39,1,1,0,1]]],[1,1,1,1,2,[[70,1,1,1,2]]],[2,2,2,2,4,[[94,1,1,2,3],[98,1,1,3,4]]],[3,11,11,4,15,[[125,1,1,4,5],[131,2,2,5,7],[145,8,8,7,15]]],[5,1,1,15,16,[[192,1,1,15,16]]],[6,1,1,16,17,[[228,1,1,16,17]]],[8,4,4,17,21,[[243,2,2,17,19],[245,1,1,19,20],[262,1,1,20,21]]],[10,1,1,21,22,[[308,1,1,21,22]]],[11,7,6,22,28,[[313,1,1,22,23],[323,1,1,23,24],[329,5,4,24,28]]],[12,1,1,28,29,[[361,1,1,28,29]]],[13,2,2,29,31,[[370,1,1,29,30],[396,1,1,30,31]]],[15,1,1,31,32,[[420,1,1,31,32]]],[23,1,1,32,33,[[774,1,1,32,33]]],[25,1,1,33,34,[[824,1,1,33,34]]]],[1185,2086,2840,2969,3979,4169,4177,4614,4626,4629,4632,4635,4638,4641,4645,5964,7000,7378,7380,7443,7941,9369,9540,9843,10009,10010,10016,10023,11034,11266,11843,12511,19685,21052]]],["manners",[2,2,[[11,1,1,0,1,[[329,1,1,0,1]]],[25,1,1,1,2,[[812,1,1,1,2]]]],[10017,20667]]],["measure",[2,2,[[23,2,2,0,2,[[774,1,1,0,1],[790,1,1,1,2]]]],[19678,20073]]],["order",[4,4,[[12,3,3,0,3,[[343,1,1,0,1],[352,1,1,1,2],[360,1,1,2,3]]],[13,1,1,3,4,[[374,1,1,3,4]]]],[10486,10804,11014,11360]]],["ordinance",[5,5,[[1,1,1,0,1,[[64,1,1,0,1]]],[5,1,1,1,2,[[210,1,1,1,2]]],[8,1,1,2,3,[[265,1,1,2,3]]],[13,1,1,3,4,[[401,1,1,3,4]]],[22,1,1,4,5,[[736,1,1,4,5]]]],[1945,6501,8003,11979,18788]]],["ordinances",[6,6,[[11,2,2,0,2,[[329,2,2,0,2]]],[13,1,1,2,3,[[399,1,1,2,3]]],[18,1,1,3,4,[[596,1,1,3,4]]],[22,1,1,4,5,[[736,1,1,4,5]]],[25,1,1,5,6,[[812,1,1,5,6]]]],[10017,10020,11916,15989,18788,20675]]],["right",[18,18,[[0,1,1,0,1,[[17,1,1,0,1]]],[4,1,1,1,2,[[173,1,1,1,2]]],[17,4,4,2,6,[[469,2,2,2,4],[470,1,1,4,5],[471,1,1,5,6]]],[18,2,2,6,8,[[486,1,1,6,7],[617,1,1,7,8]]],[19,2,2,8,10,[[639,1,1,8,9],[643,1,1,9,10]]],[22,2,2,10,12,[[688,1,1,10,11],[710,1,1,11,12]]],[23,4,4,12,16,[[749,1,1,12,13],[761,1,1,13,14],[776,2,2,14,16]]],[24,1,1,16,17,[[799,1,1,16,17]]],[25,1,1,17,18,[[822,1,1,17,18]]]],[449,5464,13689,13700,13722,13742,14025,16275,16724,16848,17852,18266,19086,19368,19738,19739,20389,20971]]],["sentence",[2,2,[[18,1,1,0,1,[[494,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]]],[14105,19039]]],["women",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21052]]],["worthy",[3,3,[[4,1,1,0,1,[[173,1,1,0,1]]],[23,2,2,1,3,[[770,2,2,1,3]]]],[5469,19583,19588]]]]},{"k":"H4942","v":[["*",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]]],[1487,6639]]],["burdens",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1487]]],["sheepfolds",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6639]]]]},{"k":"H4943","v":[["+",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[362]]]]},{"k":"H4944","v":[["fro",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18283]]]]},{"k":"H4945","v":[["*",[19,18,[[0,11,10,0,10,[[12,1,1,0,1],[39,9,8,1,9],[40,1,1,9,10]]],[2,1,1,10,11,[[100,1,1,10,11]]],[10,2,2,11,13,[[300,2,2,11,13]]],[13,2,2,13,15,[[375,2,2,13,15]]],[15,1,1,15,16,[[413,1,1,15,16]]],[22,1,1,16,17,[[710,1,1,16,17]]],[25,1,1,17,18,[[846,1,1,17,18]]]],[328,1173,1174,1177,1181,1185,1192,1193,1195,1204,3031,9084,9100,11368,11384,12307,18265,21645]]],["+",[2,2,[[0,1,1,0,1,[[40,1,1,0,1]]],[25,1,1,1,2,[[846,1,1,1,2]]]],[1204,21645]]],["butler",[7,7,[[0,7,7,0,7,[[39,7,7,0,7]]]],[1173,1177,1181,1185,1192,1193,1195]]],["butlers",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1174]]],["butlership",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1193]]],["cupbearer",[1,1,[[15,1,1,0,1,[[413,1,1,0,1]]]],[12307]]],["cupbearers",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9084,11368]]],["drink",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[22,1,1,1,2,[[710,1,1,1,2]]]],[3031,18265]]],["drinking",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9100,11384]]],["watered",[1,1,[[0,1,1,0,1,[[12,1,1,0,1]]]],[328]]]]},{"k":"H4946","v":[["weight",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20539]]]]},{"k":"H4947","v":[["*",[3,3,[[1,3,3,0,3,[[61,3,3,0,3]]]],[1823,1838,1839]]],["lintel",[2,2,[[1,2,2,0,2,[[61,2,2,0,2]]]],[1838,1839]]],["post",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1823]]]]},{"k":"H4948","v":[["*",[49,42,[[0,3,2,0,2,[[23,2,1,0,1],[42,1,1,1,2]]],[2,2,2,2,4,[[108,1,1,2,3],[115,1,1,3,4]]],[3,12,12,4,16,[[123,12,12,4,16]]],[5,1,1,16,17,[[193,1,1,16,17]]],[6,1,1,17,18,[[218,1,1,17,18]]],[8,1,1,18,19,[[252,1,1,18,19]]],[9,3,2,19,21,[[278,1,1,19,20],[287,2,1,20,21]]],[10,2,2,21,23,[[297,1,1,21,22],[300,1,1,22,23]]],[11,1,1,23,24,[[337,1,1,23,24]]],[12,13,9,24,33,[[357,1,1,24,25],[358,1,1,25,26],[359,2,2,26,28],[365,9,5,28,33]]],[13,3,3,33,36,[[369,1,1,33,34],[370,1,1,34,35],[375,1,1,35,36]]],[14,3,2,36,38,[[410,3,2,36,38]]],[17,1,1,38,39,[[463,1,1,38,39]]],[23,1,1,39,40,[[796,1,1,39,40]]],[25,2,2,40,42,[[805,1,1,40,41],[806,1,1,41,42]]]],[613,1311,3316,3550,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,5997,6745,7623,8316,8596,8981,9093,10238,10928,10959,10967,10978,11157,11158,11159,11160,11161,11238,11264,11377,12231,12235,13529,20296,20545,20547]]],["weigh",[2,2,[[12,1,1,0,1,[[357,1,1,0,1]]],[25,1,1,1,2,[[806,1,1,1,2]]]],[10928,20547]]],["weight",[47,40,[[0,3,2,0,2,[[23,2,1,0,1],[42,1,1,1,2]]],[2,2,2,2,4,[[108,1,1,2,3],[115,1,1,3,4]]],[3,12,12,4,16,[[123,12,12,4,16]]],[5,1,1,16,17,[[193,1,1,16,17]]],[6,1,1,17,18,[[218,1,1,17,18]]],[8,1,1,18,19,[[252,1,1,18,19]]],[9,3,2,19,21,[[278,1,1,19,20],[287,2,1,20,21]]],[10,2,2,21,23,[[297,1,1,21,22],[300,1,1,22,23]]],[11,1,1,23,24,[[337,1,1,23,24]]],[12,12,8,24,32,[[358,1,1,24,25],[359,2,2,25,27],[365,9,5,27,32]]],[13,3,3,32,35,[[369,1,1,32,33],[370,1,1,33,34],[375,1,1,34,35]]],[14,3,2,35,37,[[410,3,2,35,37]]],[17,1,1,37,38,[[463,1,1,37,38]]],[23,1,1,38,39,[[796,1,1,38,39]]],[25,1,1,39,40,[[805,1,1,39,40]]]],[613,1311,3316,3550,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,5997,6745,7623,8316,8596,8981,9093,10238,10959,10967,10978,11157,11158,11159,11160,11161,11238,11264,11377,12231,12235,13529,20296,20545]]]]},{"k":"H4949","v":[["plummet",[2,2,[[11,1,1,0,1,[[333,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]]],[10132,18181]]]]},{"k":"H4950","v":[["deep",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21331]]]]},{"k":"H4951","v":[["government",[2,2,[[22,2,2,0,2,[[687,2,2,0,2]]]],[17835,17836]]]]},{"k":"H4952","v":[["liquor",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3826]]]]},{"k":"H4953","v":[["flute",[4,4,[[26,4,4,0,4,[[852,4,4,0,4]]]],[21812,21814,21817,21822]]]]},{"k":"H4954","v":[["Mishraites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10359]]]]},{"k":"H4955","v":[["burnings",[2,2,[[22,1,1,0,1,[[711,1,1,0,1]]],[23,1,1,1,2,[[778,1,1,1,2]]]],[18291,19806]]]]},{"k":"H4956","v":[["Misrephothmaim",[2,2,[[5,2,2,0,2,[[197,1,1,0,1],[199,1,1,1,2]]]],[6115,6160]]]]},{"k":"H4957","v":[["+",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1076,10299]]]]},{"k":"H4958","v":[["pan",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8326]]]]},{"k":"H4959","v":[["*",[9,8,[[0,4,4,0,4,[[26,2,2,0,2],[30,2,2,2,4]]],[1,1,1,4,5,[[59,1,1,4,5]]],[4,2,1,5,6,[[180,2,1,5,6]]],[17,2,2,6,8,[[440,1,1,6,7],[447,1,1,7,8]]]],[739,749,907,910,1798,5640,12965,13153]]],["+",[2,2,[[0,2,2,0,2,[[30,2,2,0,2]]]],[907,910]]],["feel",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[739]]],["felt",[2,2,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,1,1,1,2,[[59,1,1,1,2]]]],[749,1798]]],["grope",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[17,2,2,1,3,[[440,1,1,1,2],[447,1,1,2,3]]]],[5640,12965,13153]]],["gropeth",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5640]]]]},{"k":"H4960","v":[["*",[46,43,[[0,5,5,0,5,[[18,1,1,0,1],[20,1,1,1,2],[25,1,1,2,3],[28,1,1,3,4],[39,1,1,4,5]]],[6,3,3,5,8,[[224,3,3,5,8]]],[8,2,1,8,9,[[260,2,1,8,9]]],[9,1,1,9,10,[[269,1,1,9,10]]],[10,1,1,10,11,[[293,1,1,10,11]]],[14,1,1,11,12,[[405,1,1,11,12]]],[16,20,19,12,31,[[426,3,3,12,15],[427,2,1,15,16],[430,6,6,16,22],[431,1,1,22,23],[432,3,3,23,26],[433,1,1,26,27],[434,4,4,27,31]]],[17,2,2,31,33,[[436,2,2,31,33]]],[19,1,1,33,34,[[642,1,1,33,34]]],[20,1,1,34,35,[[665,1,1,34,35]]],[22,3,2,35,37,[[683,1,1,35,36],[703,2,1,36,37]]],[23,2,2,37,39,[[760,1,1,37,38],[795,1,1,38,39]]],[26,4,4,39,43,[[850,4,4,39,43]]]],[460,521,722,817,1192,6919,6921,6926,7897,8101,8831,12104,12705,12707,12711,12742,12783,12784,12785,12787,12791,12793,12807,12809,12814,12815,12834,12851,12852,12853,12856,12873,12874,16822,17431,17751,18124,19344,20251,21742,21745,21747,21753]]],["+",[2,2,[[16,1,1,0,1,[[432,1,1,0,1]]],[17,1,1,1,2,[[436,1,1,1,2]]]],[12814,12873]]],["banquet",[9,9,[[16,9,9,0,9,[[430,6,6,0,6],[431,1,1,6,7],[432,2,2,7,9]]]],[12783,12784,12785,12787,12791,12793,12807,12809,12815]]],["drank",[2,2,[[26,2,2,0,2,[[850,2,2,0,2]]]],[21742,21745]]],["drink",[3,3,[[14,1,1,0,1,[[405,1,1,0,1]]],[26,2,2,1,3,[[850,2,2,1,3]]]],[12104,21747,21753]]],["feast",[21,18,[[0,5,5,0,5,[[18,1,1,0,1],[20,1,1,1,2],[25,1,1,2,3],[28,1,1,3,4],[39,1,1,4,5]]],[6,3,3,5,8,[[224,3,3,5,8]]],[8,2,1,8,9,[[260,2,1,8,9]]],[9,1,1,9,10,[[269,1,1,9,10]]],[10,1,1,10,11,[[293,1,1,10,11]]],[16,6,5,11,16,[[426,3,3,11,14],[427,2,1,14,15],[433,1,1,15,16]]],[19,1,1,16,17,[[642,1,1,16,17]]],[22,2,1,17,18,[[703,2,1,17,18]]]],[460,521,722,817,1192,6919,6921,6926,7897,8101,8831,12705,12707,12711,12742,12834,16822,18124]]],["feasting",[7,7,[[16,4,4,0,4,[[434,4,4,0,4]]],[17,1,1,4,5,[[436,1,1,4,5]]],[20,1,1,5,6,[[665,1,1,5,6]]],[23,1,1,6,7,[[760,1,1,6,7]]]],[12851,12852,12853,12856,12874,17431,19344]]],["feasts",[2,2,[[22,1,1,0,1,[[683,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[17751,20251]]]]},{"k":"H4961","v":[["banquet",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21884]]]]},{"k":"H4962","v":[["*",[22,21,[[0,1,1,0,1,[[33,1,1,0,1]]],[4,6,6,1,7,[[154,1,1,1,2],[155,1,1,2,3],[156,1,1,3,4],[178,1,1,4,5],[180,1,1,5,6],[185,1,1,6,7]]],[12,1,1,7,8,[[353,1,1,7,8]]],[17,6,6,8,14,[[446,2,2,8,10],[454,1,1,10,11],[457,1,1,11,12],[459,1,1,12,13],[466,1,1,13,14]]],[18,4,3,14,17,[[494,2,1,14,15],[503,1,1,15,16],[582,1,1,16,17]]],[22,3,3,17,20,[[681,1,1,17,18],[683,1,1,18,19],[719,1,1,19,20]]],[23,1,1,20,21,[[788,1,1,20,21]]]],[1010,4972,4981,5031,5571,5673,5816,10839,13111,13119,13316,13404,13448,13619,14117,14277,15618,17732,17752,18465,20038]]],["+",[3,2,[[4,1,1,0,1,[[178,1,1,0,1]]],[18,2,1,1,2,[[494,2,1,1,2]]]],[5571,14117]]],["Men",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13448]]],["few",[3,3,[[0,1,1,0,1,[[33,1,1,0,1]]],[4,1,1,1,2,[[156,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]]],[1010,5031,10839]]],["friends",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13316]]],["men",[11,11,[[4,3,3,0,3,[[154,1,1,0,1],[155,1,1,1,2],[185,1,1,2,3]]],[17,4,4,3,7,[[446,2,2,3,5],[457,1,1,5,6],[466,1,1,6,7]]],[18,1,1,7,8,[[582,1,1,7,8]]],[22,3,3,8,11,[[681,1,1,8,9],[683,1,1,9,10],[719,1,1,10,11]]]],[4972,4981,5816,13111,13119,13404,13619,15618,17732,17752,18465]]],["number",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5673]]],["persons",[1,1,[[18,1,1,0,1,[[503,1,1,0,1]]]],[14277]]],["small",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20038]]]]},{"k":"H4963","v":[["straw",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18128]]]]},{"k":"H4964","v":[["*",[4,4,[[11,1,1,0,1,[[331,1,1,0,1]]],[18,1,1,1,2,[[509,1,1,1,2]]],[19,1,1,2,3,[[653,1,1,2,3]]],[22,1,1,3,4,[[715,1,1,3,4]]]],[10089,14364,17144,18381]]],["bit",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14364]]],["bridle",[3,3,[[11,1,1,0,1,[[331,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]]],[10089,17144,18381]]]]},{"k":"H4965","v":[["Methegammah",[1,1,[[9,1,1,0,1,[[274,1,1,0,1]]]],[8210]]]]},{"k":"H4966","v":[["*",[12,11,[[6,2,2,0,2,[[224,2,2,0,2]]],[18,1,1,2,3,[[496,1,1,2,3]]],[19,3,3,3,6,[[643,1,1,3,4],[651,1,1,4,5],[654,1,1,5,6]]],[20,2,2,6,8,[[663,1,1,6,7],[669,1,1,7,8]]],[21,1,1,8,9,[[672,1,1,8,9]]],[22,2,1,9,10,[[683,2,1,9,10]]],[25,1,1,10,11,[[804,1,1,10,11]]]],[6923,6927,14178,16864,17092,17176,17409,17520,17557,17759,20505]]],["sweet",[8,7,[[19,3,3,0,3,[[643,1,1,0,1],[651,1,1,1,2],[654,1,1,2,3]]],[20,2,2,3,5,[[663,1,1,3,4],[669,1,1,4,5]]],[21,1,1,5,6,[[672,1,1,5,6]]],[22,2,1,6,7,[[683,2,1,6,7]]]],[16864,17092,17176,17409,17520,17557,17759]]],["sweeter",[2,2,[[6,1,1,0,1,[[224,1,1,0,1]]],[18,1,1,1,2,[[496,1,1,1,2]]]],[6927,14178]]],["sweetness",[2,2,[[6,1,1,0,1,[[224,1,1,0,1]]],[25,1,1,1,2,[[804,1,1,1,2]]]],[6923,20505]]]]},{"k":"H4967","v":[["Methusael",[2,1,[[0,2,1,0,1,[[3,2,1,0,1]]]],[97]]]]},{"k":"H4968","v":[["Methuselah",[6,6,[[0,5,5,0,5,[[4,5,5,0,5]]],[12,1,1,5,6,[[338,1,1,5,6]]]],[126,127,130,131,132,10255]]]]},{"k":"H4969","v":[["out",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18442]]]]},{"k":"H4970","v":[["*",[40,37,[[0,1,1,0,1,[[29,1,1,0,1]]],[1,3,3,1,4,[[57,1,1,1,2],[59,2,2,2,4]]],[3,1,1,4,5,[[130,1,1,4,5]]],[8,1,1,5,6,[[236,1,1,5,6]]],[10,1,1,6,7,[[308,1,1,6,7]]],[15,2,1,7,8,[[414,2,1,7,8]]],[17,1,1,8,9,[[442,1,1,8,9]]],[18,13,12,9,21,[[483,1,1,9,10],[518,1,1,10,11],[519,1,1,11,12],[551,1,1,12,13],[557,1,1,13,14],[559,1,1,14,15],[567,1,1,15,16],[571,3,2,16,18],[578,1,1,18,19],[596,2,2,19,21]]],[19,4,3,21,24,[[628,1,1,21,22],[633,2,1,22,23],[650,1,1,23,24]]],[22,1,1,24,25,[[684,1,1,24,25]]],[23,6,6,25,31,[[748,2,2,25,27],[756,1,1,27,28],[767,1,1,28,29],[775,1,1,29,30],[791,1,1,30,31]]],[26,2,2,31,33,[[857,1,1,31,32],[861,1,1,32,33]]],[27,1,1,33,34,[[869,1,1,33,34]]],[29,1,1,34,35,[[886,1,1,34,35]]],[34,1,1,35,36,[[904,1,1,35,36]]],[37,1,1,36,37,[[911,1,1,36,37]]]],[860,1719,1780,1784,4135,7226,9362,12313,13012,13988,14547,14557,15058,15202,15235,15391,15434,15439,15515,15980,15982,16422,16549,17079,17780,19041,19048,19253,19510,19713,20078,21974,22087,22199,22486,22754,22890]]],["+",[25,24,[[1,2,2,0,2,[[59,2,2,0,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[10,1,1,3,4,[[308,1,1,3,4]]],[18,7,6,4,10,[[483,1,1,4,5],[551,1,1,5,6],[557,1,1,6,7],[559,1,1,7,8],[567,1,1,8,9],[571,2,1,9,10]]],[19,2,2,10,12,[[628,1,1,10,11],[633,1,1,11,12]]],[22,1,1,12,13,[[684,1,1,12,13]]],[23,6,6,13,19,[[748,2,2,13,15],[756,1,1,15,16],[767,1,1,16,17],[775,1,1,17,18],[791,1,1,18,19]]],[26,2,2,19,21,[[857,1,1,19,20],[861,1,1,20,21]]],[27,1,1,21,22,[[869,1,1,21,22]]],[34,1,1,22,23,[[904,1,1,22,23]]],[37,1,1,23,24,[[911,1,1,23,24]]]],[1780,1784,4135,9362,13988,15058,15202,15235,15391,15434,16422,16549,17780,19041,19048,19253,19510,19713,20078,21974,22087,22199,22754,22890]]],["When",[4,4,[[17,1,1,0,1,[[442,1,1,0,1]]],[18,2,2,1,3,[[518,1,1,1,2],[596,1,1,2,3]]],[29,1,1,3,4,[[886,1,1,3,4]]]],[13012,14547,15980,22486]]],["long",[2,2,[[8,1,1,0,1,[[236,1,1,0,1]]],[15,1,1,1,2,[[414,1,1,1,2]]]],[7226,12313]]],["when",[9,9,[[0,1,1,0,1,[[29,1,1,0,1]]],[1,1,1,1,2,[[57,1,1,1,2]]],[15,1,1,2,3,[[414,1,1,2,3]]],[18,4,4,3,7,[[519,1,1,3,4],[571,1,1,4,5],[578,1,1,5,6],[596,1,1,6,7]]],[19,2,2,7,9,[[633,1,1,7,8],[650,1,1,8,9]]]],[860,1719,12313,14557,15439,15515,15982,16549,17079]]]]},{"k":"H4971","v":[["*",[5,5,[[1,3,3,0,3,[[54,1,1,0,1],[79,2,2,1,3]]],[13,1,1,3,4,[[390,1,1,3,4]]],[25,1,1,4,5,[[846,1,1,4,5]]]],[1640,2414,2419,11690,21641]]],["composition",[2,2,[[1,2,2,0,2,[[79,2,2,0,2]]]],[2414,2419]]],["measure",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21641]]],["state",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11690]]],["tale",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1640]]]]},{"k":"H4972","v":[["+",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23102]]]]},{"k":"H4973","v":[["*",[3,3,[[17,1,1,0,1,[[464,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]],[28,1,1,2,3,[[876,1,1,2,3]]]],[13549,17265,22297]]],["jaws",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13549]]],["teeth",[2,2,[[19,1,1,0,1,[[657,1,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]]],[17265,22297]]]]},{"k":"H4974","v":[["*",[4,4,[[6,1,1,0,1,[[230,1,1,0,1]]],[18,2,2,1,3,[[515,2,2,1,3]]],[22,1,1,3,4,[[679,1,1,3,4]]]],[7102,14493,14497,17660]]],["men",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7102]]],["soundness",[3,3,[[18,2,2,0,2,[[515,2,2,0,2]]],[22,1,1,2,3,[[679,1,1,2,3]]]],[14493,14497,17660]]]]},{"k":"H4975","v":[["*",[47,45,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,2,2,1,3,[[61,1,1,1,2],[77,1,1,2,3]]],[4,1,1,3,4,[[185,1,1,3,4]]],[9,1,1,4,5,[[286,1,1,4,5]]],[10,5,5,5,10,[[292,1,1,5,6],[302,1,1,6,7],[308,1,1,7,8],[310,2,2,8,10]]],[11,3,3,10,13,[[313,1,1,10,11],[316,1,1,11,12],[321,1,1,12,13]]],[13,1,1,13,14,[[376,1,1,13,14]]],[15,1,1,14,15,[[416,1,1,14,15]]],[17,2,2,15,17,[[447,1,1,15,16],[475,1,1,16,17]]],[18,2,2,17,19,[[543,1,1,17,18],[546,1,1,18,19]]],[19,2,2,19,21,[[657,1,1,19,20],[658,1,1,20,21]]],[22,4,4,21,25,[[689,1,1,21,22],[698,1,1,22,23],[699,1,1,23,24],[723,1,1,24,25]]],[23,6,6,25,31,[[745,1,1,25,26],[757,4,4,26,30],[792,1,1,30,31]]],[25,12,10,31,41,[[802,2,1,31,32],[809,2,1,32,33],[810,3,3,33,36],[822,1,1,36,37],[824,1,1,37,38],[830,1,1,38,39],[845,1,1,39,40],[848,1,1,40,41]]],[26,1,1,41,42,[[859,1,1,41,42]]],[29,1,1,42,43,[[886,1,1,42,43]]],[33,2,2,43,45,[[901,2,2,43,45]]]],[1117,1827,2335,5821,8562,8775,9161,9387,9439,9440,9541,9632,9757,11405,12377,13146,13880,14884,14958,17282,17301,17889,18031,18038,18562,18963,19267,19268,19270,19277,20117,20491,20606,20624,20625,20633,20950,21022,21190,21617,21683,22020,22491,22700,22709]]],["+",[6,6,[[1,1,1,0,1,[[77,1,1,0,1]]],[10,1,1,1,2,[[302,1,1,1,2]]],[13,1,1,2,3,[[376,1,1,2,3]]],[19,1,1,3,4,[[657,1,1,3,4]]],[25,1,1,4,5,[[809,1,1,4,5]]],[33,1,1,5,6,[[901,1,1,5,6]]]],[2335,9161,11405,17282,20606,22700]]],["loins",[37,36,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[9,1,1,3,4,[[286,1,1,3,4]]],[10,4,4,4,8,[[292,1,1,4,5],[308,1,1,5,6],[310,2,2,6,8]]],[11,3,3,8,11,[[313,1,1,8,9],[316,1,1,9,10],[321,1,1,10,11]]],[17,2,2,11,13,[[447,1,1,11,12],[475,1,1,12,13]]],[18,2,2,13,15,[[543,1,1,13,14],[546,1,1,14,15]]],[19,1,1,15,16,[[658,1,1,15,16]]],[22,4,4,16,20,[[689,1,1,16,17],[698,1,1,17,18],[699,1,1,18,19],[723,1,1,19,20]]],[23,6,6,20,26,[[745,1,1,20,21],[757,4,4,21,25],[792,1,1,25,26]]],[25,8,7,26,33,[[802,2,1,26,27],[809,1,1,27,28],[822,1,1,28,29],[824,1,1,29,30],[830,1,1,30,31],[845,1,1,31,32],[848,1,1,32,33]]],[26,1,1,33,34,[[859,1,1,33,34]]],[29,1,1,34,35,[[886,1,1,34,35]]],[33,1,1,35,36,[[901,1,1,35,36]]]],[1117,1827,5821,8562,8775,9387,9439,9440,9541,9632,9757,13146,13880,14884,14958,17301,17889,18031,18038,18562,18963,19267,19268,19270,19277,20117,20491,20606,20950,21022,21190,21617,21683,22020,22491,22709]]],["side",[4,4,[[15,1,1,0,1,[[416,1,1,0,1]]],[25,3,3,1,4,[[810,3,3,1,4]]]],[12377,20624,20625,20633]]]]},{"k":"H4976","v":[["*",[5,5,[[0,1,1,0,1,[[33,1,1,0,1]]],[3,1,1,1,2,[[134,1,1,1,2]]],[19,3,3,2,5,[[645,1,1,2,3],[646,1,1,3,4],[648,1,1,4,5]]]],[992,4268,16917,16931,16998]]],["+",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16931]]],["gift",[4,4,[[0,1,1,0,1,[[33,1,1,0,1]]],[3,1,1,1,2,[[134,1,1,1,2]]],[19,2,2,2,4,[[645,1,1,2,3],[648,1,1,3,4]]]],[992,4268,16917,16998]]]]},{"k":"H4977","v":[["Mattan",[3,3,[[11,1,1,0,1,[[323,1,1,0,1]]],[13,1,1,1,2,[[389,1,1,1,2]]],[23,1,1,2,3,[[782,1,1,2,3]]]],[9847,11673,19896]]]]},{"k":"H4978","v":[["gifts",[3,3,[[26,3,3,0,3,[[851,2,2,0,2],[854,1,1,2,3]]]],[21764,21806,21891]]]]},{"k":"H4979","v":[["*",[17,17,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,1,1,1,2,[[77,1,1,1,2]]],[2,1,1,2,3,[[112,1,1,2,3]]],[3,3,3,3,6,[[134,3,3,3,6]]],[4,1,1,6,7,[[168,1,1,6,7]]],[13,1,1,7,8,[[387,1,1,7,8]]],[16,1,1,8,9,[[434,1,1,8,9]]],[18,1,1,9,10,[[545,1,1,9,10]]],[19,1,1,10,11,[[642,1,1,10,11]]],[20,1,1,11,12,[[665,1,1,11,12]]],[25,5,5,12,17,[[821,3,3,12,15],[847,2,2,15,17]]]],[664,2331,3440,4263,4264,4286,5359,11627,12856,14918,16834,17436,20921,20926,20934,21671,21672]]],["+",[1,1,[[4,1,1,0,1,[[168,1,1,0,1]]]],[5359]]],["gift",[5,5,[[3,2,2,0,2,[[134,2,2,0,2]]],[20,1,1,2,3,[[665,1,1,2,3]]],[25,2,2,3,5,[[847,2,2,3,5]]]],[4263,4264,17436,21671,21672]]],["gifts",[11,11,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,1,1,1,2,[[77,1,1,1,2]]],[2,1,1,2,3,[[112,1,1,2,3]]],[3,1,1,3,4,[[134,1,1,3,4]]],[13,1,1,4,5,[[387,1,1,4,5]]],[16,1,1,5,6,[[434,1,1,5,6]]],[18,1,1,6,7,[[545,1,1,6,7]]],[19,1,1,7,8,[[642,1,1,7,8]]],[25,3,3,8,11,[[821,3,3,8,11]]]],[664,2331,3440,4286,11627,12856,14918,16834,20921,20926,20934]]]]},{"k":"H4980","v":[["*",[2,2,[[3,2,2,0,2,[[137,2,2,0,2]]]],[4358,4359]]],["+",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4359]]],["Mattanah",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4358]]]]},{"k":"H4981","v":[["Mithnite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10716]]]]},{"k":"H4982","v":[["Mattenai",[3,3,[[14,2,2,0,2,[[412,2,2,0,2]]],[15,1,1,2,3,[[424,1,1,2,3]]]],[12285,12289,12643]]]]},{"k":"H4983","v":[["Mattaniah",[16,16,[[11,1,1,0,1,[[336,1,1,0,1]]],[12,3,3,1,4,[[346,1,1,1,2],[362,2,2,2,4]]],[13,2,2,4,6,[[386,1,1,4,5],[395,1,1,5,6]]],[14,4,4,6,10,[[412,4,4,6,10]]],[15,6,6,10,16,[[423,2,2,10,12],[424,3,3,12,15],[425,1,1,15,16]]]],[10219,10630,11050,11062,11601,11804,12278,12279,12282,12289,12605,12610,12632,12649,12659,12684]]]]},{"k":"H4984","v":[["*",[2,2,[[10,1,1,0,1,[[291,1,1,0,1]]],[12,1,1,1,2,[[366,1,1,1,2]]]],[8722,11175]]],["exalted",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11175]]],["himself",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8722]]]]},{"k":"H4985","v":[["sweet",[5,5,[[1,1,1,0,1,[[64,1,1,0,1]]],[17,2,2,1,3,[[455,1,1,1,2],[456,1,1,2,3]]],[18,1,1,3,4,[[532,1,1,3,4]]],[19,1,1,4,5,[[636,1,1,4,5]]]],[1945,13338,13388,14746,16655]]]]},{"k":"H4986","v":[["sweetness",[2,2,[[19,2,2,0,2,[[643,1,1,0,1],[654,1,1,1,2]]]],[16861,17178]]]]},{"k":"H4987","v":[["sweetness",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6765]]]]},{"k":"H4988","v":[["sweetly",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13456]]]]},{"k":"H4989","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4788,4789]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4789]]],["Mithcah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4788]]]]},{"k":"H4990","v":[["Mithredath",[2,2,[[14,2,2,0,2,[[403,1,1,0,1],[406,1,1,1,2]]]],[12024,12117]]]]},{"k":"H4991","v":[["*",[6,6,[[10,1,1,0,1,[[303,1,1,0,1]]],[19,1,1,1,2,[[652,1,1,1,2]]],[20,2,2,2,4,[[661,1,1,2,3],[663,1,1,3,4]]],[25,2,2,4,6,[[847,2,2,4,6]]]],[9191,17127,17372,17416,21660,21666]]],["+",[2,2,[[25,2,2,0,2,[[847,2,2,0,2]]]],[21660,21666]]],["gift",[3,3,[[19,1,1,0,1,[[652,1,1,0,1]]],[20,2,2,1,3,[[661,1,1,1,2],[663,1,1,2,3]]]],[17127,17372,17416]]],["reward",[1,1,[[10,1,1,0,1,[[303,1,1,0,1]]]],[9191]]]]},{"k":"H4992","v":[["Mattathah",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12285]]]]},{"k":"H4993","v":[["Mattithiah",[8,8,[[12,6,6,0,6,[[346,1,1,0,1],[352,2,2,1,3],[353,1,1,3,4],[362,2,2,4,6]]],[14,1,1,6,7,[[412,1,1,6,7]]],[15,1,1,7,8,[[420,1,1,7,8]]]],[10646,10809,10812,10825,11049,11067,12295,12497]]]]},{"k":"H4994","v":[["*",[403,373,[[0,74,64,0,64,[[11,2,2,0,2],[12,3,3,2,5],[14,1,1,5,6],[15,2,1,6,7],[17,8,7,7,14],[18,9,6,14,20],[21,1,1,20,21],[23,8,8,21,29],[24,1,1,29,30],[25,1,1,30,31],[26,6,6,31,37],[29,2,2,37,39],[30,1,1,39,40],[31,2,2,40,42],[32,5,4,42,46],[33,1,1,46,47],[36,4,4,47,51],[37,2,2,51,53],[39,2,2,53,55],[43,2,2,55,57],[44,1,1,57,58],[46,4,2,58,60],[47,1,1,60,61],[49,5,3,61,64]]],[1,15,13,64,77,[[52,2,2,64,66],[53,3,3,66,69],[54,1,1,69,70],[59,2,2,70,72],[60,1,1,72,73],[81,1,1,73,74],[82,3,2,74,76],[83,2,1,76,77]]],[3,19,18,77,95,[[126,1,1,77,78],[127,1,1,78,79],[128,5,4,79,83],[130,2,2,83,85],[132,2,2,85,87],[136,2,2,87,89],[138,4,4,89,93],[139,2,2,93,95]]],[4,2,2,95,97,[[155,1,1,95,96],[156,1,1,96,97]]],[5,4,3,97,100,[[188,1,1,97,98],[193,2,1,98,99],[208,1,1,99,100]]],[6,31,28,100,128,[[211,1,1,100,101],[214,1,1,101,102],[216,4,3,102,105],[217,1,1,105,106],[218,1,1,106,107],[219,2,2,107,109],[220,1,1,109,110],[221,2,2,110,112],[222,1,1,112,113],[223,3,3,113,116],[224,1,1,116,117],[225,1,1,117,118],[226,4,3,118,121],[228,1,1,121,122],[229,7,6,122,128]]],[7,2,2,128,130,[[233,2,2,128,130]]],[8,36,34,130,164,[[237,1,1,130,131],[238,1,1,131,132],[244,4,3,132,135],[245,1,1,135,136],[249,2,2,136,138],[250,2,2,138,140],[251,4,4,140,144],[252,1,1,144,145],[254,1,1,145,146],[255,3,2,146,148],[257,3,3,148,151],[258,2,2,151,153],[260,4,4,153,157],[261,3,3,157,160],[262,1,1,160,161],[263,2,2,161,163],[265,1,1,163,164]]],[9,36,33,164,197,[[267,2,2,164,166],[268,1,1,166,167],[273,1,1,167,168],[279,10,9,168,177],[280,9,7,177,184],[281,2,2,184,186],[282,1,1,186,187],[283,2,2,187,189],[284,2,2,189,191],[285,1,1,191,192],[286,1,1,192,193],[290,4,4,193,197]]],[10,19,17,197,214,[[291,1,1,197,198],[292,1,1,198,199],[298,1,1,199,200],[303,1,1,200,201],[304,1,1,201,202],[307,3,3,202,205],[308,1,1,205,206],[309,1,1,206,207],[310,6,5,207,212],[312,3,2,212,214]]],[11,34,32,214,246,[[313,1,1,214,215],[314,7,6,215,221],[316,5,5,221,226],[317,6,5,226,231],[318,5,5,231,236],[319,2,2,236,238],[320,1,1,238,239],[321,2,2,239,241],[330,3,3,241,244],[331,1,1,244,245],[332,1,1,245,246]]],[12,5,5,246,251,[[358,3,3,246,249],[359,1,1,249,250],[366,1,1,250,251]]],[13,3,3,251,254,[[372,1,1,251,252],[384,2,2,252,254]]],[14,1,1,254,255,[[412,1,1,254,255]]],[15,6,5,255,260,[[413,4,3,255,258],[417,2,2,258,260]]],[17,23,23,260,283,[[436,1,1,260,261],[437,1,1,261,262],[439,1,1,262,263],[440,1,1,263,264],[441,1,1,264,265],[443,1,1,265,266],[445,1,1,266,267],[447,1,1,267,268],[448,2,2,268,270],[452,2,2,270,272],[457,2,2,272,274],[467,1,1,274,275],[468,2,2,275,277],[473,1,1,277,278],[475,4,4,278,282],[477,1,1,282,283]]],[18,16,15,283,298,[[484,1,1,283,284],[527,1,1,284,285],[557,1,1,285,286],[592,1,1,286,287],[593,2,2,287,289],[595,5,4,289,293],[596,2,2,293,295],[599,1,1,295,296],[601,1,1,296,297],[606,1,1,297,298]]],[20,1,1,298,299,[[660,1,1,298,299]]],[21,2,2,299,301,[[673,1,1,299,300],[677,1,1,300,301]]],[22,17,17,301,318,[[679,1,1,301,302],[683,3,3,302,305],[685,2,2,305,307],[697,1,1,307,308],[707,2,2,308,310],[714,3,3,310,313],[716,1,1,313,314],[725,2,2,314,316],[729,1,1,316,317],[742,1,1,317,318]]],[23,30,28,318,346,[[748,1,1,318,319],[749,3,3,319,322],[751,1,1,322,323],[761,1,1,323,324],[762,3,2,324,326],[765,1,1,326,327],[769,1,1,327,328],[771,1,1,328,329],[772,2,2,329,331],[774,1,1,331,332],[776,1,1,332,333],[779,1,1,333,334],[780,2,2,334,336],[781,3,2,336,338],[782,4,4,338,342],[784,1,1,342,343],[786,1,1,343,344],[788,1,1,344,345],[789,1,1,345,346]]],[24,1,1,346,347,[[797,1,1,346,347]]],[25,5,5,347,352,[[809,2,2,347,349],[818,1,1,349,350],[819,1,1,350,351],[834,1,1,351,352]]],[26,2,2,352,354,[[850,1,1,352,353],[858,1,1,353,354]]],[29,2,2,354,356,[[885,2,2,354,356]]],[31,3,3,356,359,[[889,2,2,356,358],[892,1,1,358,359]]],[32,4,4,359,363,[[895,2,2,359,361],[898,2,2,361,363]]],[36,4,4,363,367,[[910,4,4,363,367]]],[37,3,3,367,370,[[911,1,1,367,368],[913,1,1,368,369],[915,1,1,369,370]]],[38,3,3,370,373,[[925,2,2,370,372],[927,1,1,372,373]]]],[309,311,326,327,332,365,383,427,428,445,451,454,455,456,459,464,465,475,476,477,549,593,603,605,608,614,633,634,636,688,720,729,730,736,746,748,753,844,857,885,939,957,970,971,974,975,988,1089,1097,1099,1115,1135,1144,1180,1186,1342,1357,1362,1424,1449,1460,1510,1511,1523,1582,1597,1607,1614,1619,1635,1788,1794,1808,2470,2486,2491,2505,4019,4039,4065,4070,4071,4072,4125,4127,4202,4220,4321,4328,4381,4391,4392,4394,4429,4443,5000,5036,5881,5995,6452,6533,6618,6671,6672,6693,6697,6724,6756,6792,6826,6846,6848,6875,6887,6888,6899,6921,6931,6955,6959,6977,6998,7030,7032,7033,7035,7047,7048,7151,7156,7276,7293,7394,7397,7409,7433,7525,7537,7585,7590,7610,7611,7612,7617,7635,7708,7759,7766,7790,7794,7799,7821,7832,7869,7885,7886,7889,7913,7916,7924,7935,7950,7964,7985,8026,8031,8063,8182,8322,8323,8324,8330,8334,8341,8342,8343,8345,8358,8367,8368,8371,8373,8374,8377,8396,8420,8435,8450,8454,8497,8500,8548,8570,8694,8702,8706,8709,8729,8787,9011,9190,9220,9327,9328,9338,9384,9407,9415,9439,9440,9443,9445,9485,9493,9546,9553,9555,9557,9560,9567,9570,9612,9613,9616,9625,9629,9654,9655,9662,9664,9669,9675,9676,9677,9691,9692,9719,9720,9731,9768,9790,10043,10047,10050,10080,10101,10942,10947,10951,10969,11184,11322,11546,11554,12266,12302,12304,12307,12392,12393,12880,12896,12937,12952,13007,13037,13095,13135,13159,13171,13263,13270,13410,13411,13649,13651,13652,13796,13871,13874,13879,13880,13926,14004,14690,15212,15832,15862,15866,15871,15872,15873,15894,15974,16006,16097,16103,16133,17334,17573,17635,17672,17740,17742,17744,17785,17795,18016,18204,18205,18334,18338,18341,18393,18611,18612,18694,18894,19058,19059,19079,19082,19131,19372,19395,19397,19442,19539,19614,19625,19633,19673,19739,19838,19857,19859,19877,19894,19899,19907,19915,19920,19956,19977,20014,20043,20328,20609,20612,20837,20874,21310,21749,22004,22466,22469,22539,22545,22571,22609,22617,22649,22653,22857,22866,22870,22873,22882,22920,22941,23097,23098,23130]]],["+",[16,16,[[0,2,2,0,2,[[21,1,1,0,1],[32,1,1,1,2]]],[1,1,1,2,3,[[82,1,1,2,3]]],[6,1,1,3,4,[[211,1,1,3,4]]],[8,3,3,4,7,[[244,1,1,4,5],[255,1,1,5,6],[260,1,1,6,7]]],[9,1,1,7,8,[[279,1,1,7,8]]],[10,1,1,8,9,[[303,1,1,8,9]]],[11,3,3,9,12,[[320,1,1,9,10],[321,1,1,10,11],[332,1,1,11,12]]],[22,1,1,12,13,[[683,1,1,12,13]]],[31,1,1,13,14,[[892,1,1,13,14]]],[32,1,1,14,15,[[898,1,1,14,15]]],[36,1,1,15,16,[[910,1,1,15,16]]]],[549,971,2486,6533,7394,7766,7869,8334,9190,9731,9790,10101,17744,22571,22649,22866]]],["Let",[1,1,[[3,1,1,0,1,[[128,1,1,0,1]]]],[4071]]],["Now",[3,3,[[12,1,1,0,1,[[366,1,1,0,1]]],[18,1,1,1,2,[[527,1,1,1,2]]],[22,1,1,2,3,[[683,1,1,2,3]]]],[11184,14690,17740]]],["Oh",[6,6,[[0,4,4,0,4,[[17,2,2,0,2],[18,2,2,2,4]]],[18,1,1,4,5,[[484,1,1,4,5]]],[23,1,1,5,6,[[788,1,1,5,6]]]],[454,456,475,477,14004,20014]]],["beseech",[2,2,[[15,1,1,0,1,[[413,1,1,0,1]]],[18,1,1,1,2,[[557,1,1,1,2]]]],[12304,15212]]],["go",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19395]]],["now",[156,154,[[0,24,24,0,24,[[11,1,1,0,1],[12,1,1,1,2],[14,1,1,2,3],[15,1,1,3,4],[17,4,4,4,8],[18,4,4,8,12],[23,1,1,12,13],[25,1,1,13,14],[26,3,3,14,17],[30,1,1,17,18],[32,2,2,18,20],[36,1,1,20,21],[46,1,1,21,22],[49,2,2,22,24]]],[1,5,5,24,29,[[52,1,1,24,25],[53,1,1,25,26],[59,1,1,26,27],[60,1,1,27,28],[83,1,1,28,29]]],[3,3,3,29,32,[[128,2,2,29,31],[136,1,1,31,32]]],[4,1,1,32,33,[[156,1,1,32,33]]],[5,2,2,33,35,[[193,1,1,33,34],[208,1,1,34,35]]],[6,7,7,35,42,[[216,2,2,35,37],[222,1,1,37,38],[223,1,1,38,39],[224,1,1,39,40],[229,2,2,40,42]]],[7,1,1,42,43,[[233,1,1,42,43]]],[8,10,9,43,52,[[244,2,1,43,44],[249,1,1,44,45],[251,3,3,45,48],[252,1,1,48,49],[257,2,2,49,51],[262,1,1,51,52]]],[9,16,16,52,68,[[268,1,1,52,53],[273,1,1,53,54],[279,4,4,54,58],[280,5,5,58,63],[283,2,2,63,65],[284,1,1,65,66],[290,2,2,66,68]]],[10,3,3,68,71,[[308,1,1,68,69],[310,1,1,69,70],[312,1,1,70,71]]],[11,9,9,71,80,[[314,1,1,71,72],[316,2,2,72,74],[317,2,2,74,76],[318,1,1,76,77],[319,1,1,77,78],[321,1,1,78,79],[330,1,1,79,80]]],[12,2,2,80,82,[[358,1,1,80,81],[359,1,1,81,82]]],[14,1,1,82,83,[[412,1,1,82,83]]],[15,2,2,83,85,[[413,2,2,83,85]]],[17,15,15,85,100,[[436,1,1,85,86],[437,1,1,86,87],[440,1,1,87,88],[447,1,1,88,89],[448,2,2,89,91],[452,2,2,91,93],[457,1,1,93,94],[468,1,1,94,95],[473,1,1,95,96],[475,4,4,96,100]]],[18,11,10,100,110,[[592,1,1,100,101],[593,2,2,101,103],[595,5,4,103,107],[599,1,1,107,108],[601,1,1,108,109],[606,1,1,109,110]]],[20,1,1,110,111,[[660,1,1,110,111]]],[21,2,2,111,113,[[673,1,1,111,112],[677,1,1,112,113]]],[22,9,9,113,122,[[679,1,1,113,114],[685,2,2,114,116],[697,1,1,116,117],[714,1,1,117,118],[716,1,1,118,119],[725,2,2,119,121],[729,1,1,121,122]]],[23,20,20,122,142,[[748,1,1,122,123],[749,3,3,123,126],[751,1,1,126,127],[761,1,1,127,128],[762,2,2,128,130],[769,1,1,130,131],[771,1,1,131,132],[772,2,2,132,134],[774,1,1,134,135],[779,1,1,135,136],[780,2,2,136,138],[781,1,1,138,139],[782,2,2,139,141],[789,1,1,141,142]]],[25,4,4,142,146,[[809,2,2,142,144],[818,1,1,144,145],[819,1,1,145,146]]],[32,1,1,146,147,[[898,1,1,146,147]]],[36,2,2,147,149,[[910,2,2,147,149]]],[37,3,3,149,152,[[911,1,1,149,150],[913,1,1,150,151],[915,1,1,151,152]]],[38,2,2,152,154,[[925,1,1,152,153],[927,1,1,153,154]]]],[309,332,365,383,427,445,451,455,459,465,476,477,633,720,729,736,753,885,970,975,1115,1449,1510,1523,1582,1607,1788,1808,2505,4065,4072,4321,5036,5995,6452,6671,6693,6875,6887,6921,7033,7048,7151,7397,7525,7610,7611,7612,7635,7794,7799,7935,8063,8182,8324,8341,8342,8345,8358,8371,8373,8374,8377,8450,8454,8497,8694,8706,9384,9439,9493,9567,9612,9616,9655,9662,9675,9719,9768,10043,10947,10969,12266,12302,12307,12880,12896,12952,13135,13159,13171,13263,13270,13410,13652,13796,13871,13874,13879,13880,15832,15862,15866,15871,15872,15873,15894,16097,16103,16133,17334,17573,17635,17672,17785,17795,18016,18334,18393,18611,18612,18694,19058,19059,19079,19082,19131,19372,19395,19397,19539,19614,19625,19633,19673,19838,19857,19859,19877,19907,19920,20043,20609,20612,20837,20874,22653,22857,22873,22882,22920,22941,23097,23130]]],["pray",[7,7,[[5,1,1,0,1,[[188,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[7,1,1,2,3,[[233,1,1,2,3]]],[9,1,1,3,4,[[284,1,1,3,4]]],[15,3,3,4,7,[[413,1,1,4,5],[417,2,2,5,7]]]],[5881,6792,7156,8500,12307,12392,12393]]],["thee",[180,176,[[0,35,34,0,34,[[11,1,1,0,1],[12,2,2,1,3],[15,1,1,3,4],[17,1,1,4,5],[23,7,7,5,12],[24,1,1,12,13],[26,3,3,13,16],[29,2,2,16,18],[31,2,2,18,20],[32,2,2,20,22],[36,2,2,22,24],[37,2,2,24,26],[39,1,1,26,27],[43,2,2,27,29],[46,3,2,29,31],[47,1,1,31,32],[49,2,2,32,34]]],[1,9,9,34,43,[[52,1,1,34,35],[53,2,2,35,37],[54,1,1,37,38],[59,1,1,38,39],[81,1,1,39,40],[82,2,2,40,42],[83,1,1,42,43]]],[3,12,12,43,55,[[126,1,1,43,44],[127,1,1,44,45],[128,2,2,45,47],[130,2,2,47,49],[136,1,1,49,50],[138,3,3,50,53],[139,2,2,53,55]]],[4,1,1,55,56,[[155,1,1,55,56]]],[5,1,1,56,57,[[193,1,1,56,57]]],[6,17,16,57,73,[[214,1,1,57,58],[216,2,2,58,60],[220,1,1,60,61],[221,2,2,61,63],[223,2,2,63,65],[225,1,1,65,66],[226,4,3,66,69],[228,1,1,69,70],[229,3,3,70,73]]],[8,21,20,73,93,[[237,1,1,73,74],[238,1,1,74,75],[244,1,1,75,76],[245,1,1,76,77],[250,2,2,77,79],[251,1,1,79,80],[254,1,1,80,81],[255,2,1,81,82],[257,1,1,82,83],[258,1,1,83,84],[260,3,3,84,87],[261,3,3,87,90],[263,2,2,90,92],[265,1,1,92,93]]],[9,17,17,93,110,[[267,2,2,93,95],[279,5,5,95,100],[280,4,4,100,104],[281,2,2,104,106],[282,1,1,106,107],[285,1,1,107,108],[290,2,2,108,110]]],[10,14,14,110,124,[[291,1,1,110,111],[292,1,1,111,112],[298,1,1,112,113],[304,1,1,113,114],[307,3,3,114,117],[309,1,1,117,118],[310,4,4,118,122],[312,2,2,122,124]]],[11,21,21,124,145,[[313,1,1,124,125],[314,6,6,125,131],[316,3,3,131,134],[317,3,3,134,137],[318,4,4,137,141],[319,1,1,141,142],[330,2,2,142,144],[331,1,1,144,145]]],[12,2,2,145,147,[[358,2,2,145,147]]],[13,3,3,147,150,[[372,1,1,147,148],[384,2,2,148,150]]],[17,6,6,150,156,[[439,1,1,150,151],[443,1,1,151,152],[445,1,1,152,153],[457,1,1,153,154],[468,1,1,154,155],[477,1,1,155,156]]],[18,2,2,156,158,[[596,2,2,156,158]]],[22,5,5,158,163,[[707,2,2,158,160],[714,2,2,160,162],[742,1,1,162,163]]],[23,8,7,163,170,[[765,1,1,163,164],[776,1,1,164,165],[781,2,1,165,166],[782,2,2,166,168],[784,1,1,168,169],[786,1,1,169,170]]],[26,2,2,170,172,[[850,1,1,170,171],[858,1,1,171,172]]],[29,2,2,172,174,[[885,2,2,172,174]]],[31,2,2,174,176,[[889,2,2,174,176]]]],[311,326,327,383,427,593,603,605,608,614,634,636,688,730,746,748,844,857,939,957,970,974,1097,1099,1135,1144,1186,1342,1357,1424,1449,1460,1511,1523,1597,1614,1619,1635,1794,2470,2486,2491,2505,4019,4039,4070,4072,4125,4127,4328,4381,4391,4392,4429,4443,5000,5995,6618,6672,6693,6826,6846,6848,6888,6899,6931,6955,6959,6977,6998,7030,7032,7035,7276,7293,7409,7433,7585,7590,7617,7708,7759,7790,7821,7885,7886,7889,7913,7916,7924,7950,7964,7985,8026,8031,8322,8323,8330,8341,8343,8358,8367,8368,8374,8396,8420,8435,8548,8702,8709,8729,8787,9011,9220,9327,9328,9338,9407,9439,9440,9443,9445,9485,9493,9546,9553,9555,9557,9560,9567,9570,9613,9625,9629,9662,9664,9669,9676,9677,9691,9692,9720,10047,10050,10080,10942,10951,11322,11546,11554,12937,13037,13095,13411,13651,13926,15974,16006,18204,18205,18338,18341,18894,19442,19739,19894,19899,19915,19956,19977,21749,22004,22466,22469,22539,22545]]],["to",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6697]]],["you",[30,30,[[0,9,9,0,9,[[17,1,1,0,1],[18,3,3,1,4],[33,1,1,4,5],[36,1,1,5,6],[39,1,1,6,7],[44,1,1,7,8],[49,1,1,8,9]]],[3,3,3,9,12,[[132,2,2,9,11],[138,1,1,11,12]]],[6,4,4,12,16,[[218,1,1,12,13],[219,1,1,13,14],[229,2,2,14,16]]],[8,2,2,16,18,[[249,1,1,16,17],[258,1,1,17,18]]],[9,1,1,18,19,[[286,1,1,18,19]]],[10,1,1,19,20,[[310,1,1,19,20]]],[11,1,1,20,21,[[317,1,1,20,21]]],[17,2,2,21,23,[[441,1,1,21,22],[467,1,1,22,23]]],[22,1,1,23,24,[[683,1,1,23,24]]],[24,1,1,24,25,[[797,1,1,24,25]]],[25,1,1,25,26,[[834,1,1,25,26]]],[32,2,2,26,28,[[895,2,2,26,28]]],[36,1,1,28,29,[[910,1,1,28,29]]],[38,1,1,29,30,[[925,1,1,29,30]]]],[428,459,464,465,988,1089,1180,1362,1510,4202,4220,4394,6724,6756,7033,7047,7537,7832,8570,9415,9654,13007,13649,17742,20328,21310,22609,22617,22870,23098]]]]},{"k":"H4995","v":[["raw",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1825]]]]},{"k":"H4996","v":[["*",[5,5,[[23,1,1,0,1,[[790,1,1,0,1]]],[25,3,3,1,4,[[831,3,3,1,4]]],[33,1,1,4,5,[[902,1,1,4,5]]]],[20070,21218,21219,21220,22720]]],["+",[2,2,[[23,1,1,0,1,[[790,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[20070,22720]]],["No",[3,3,[[25,3,3,0,3,[[831,3,3,0,3]]]],[21218,21219,21220]]]]},{"k":"H4997","v":[["*",[6,6,[[5,2,2,0,2,[[195,2,2,0,2]]],[6,1,1,2,3,[[214,1,1,2,3]]],[8,1,1,3,4,[[251,1,1,3,4]]],[18,2,2,4,6,[[533,1,1,4,5],[596,1,1,5,6]]]],[6041,6050,6618,7615,14763,15981]]],["bottle",[4,4,[[6,1,1,0,1,[[214,1,1,0,1]]],[8,1,1,1,2,[[251,1,1,1,2]]],[18,2,2,2,4,[[533,1,1,2,3],[596,1,1,3,4]]]],[6618,7615,14763,15981]]],["bottles",[2,2,[[5,2,2,0,2,[[195,2,2,0,2]]]],[6041,6050]]]]},{"k":"H4998","v":[["*",[3,3,[[18,1,1,0,1,[[570,1,1,0,1]]],[21,1,1,1,2,[[671,1,1,1,2]]],[22,1,1,2,3,[[730,1,1,2,3]]]],[15431,17547,18703]]],["beautiful",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18703]]],["becometh",[1,1,[[18,1,1,0,1,[[570,1,1,0,1]]]],[15431]]],["comely",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17547]]]]},{"k":"H4999","v":[["*",[12,12,[[18,4,4,0,4,[[500,1,1,0,1],[542,1,1,1,2],[551,1,1,2,3],[560,1,1,3,4]]],[23,3,3,4,7,[[753,1,1,4,5],[767,1,1,5,6],[769,1,1,6,7]]],[24,1,1,7,8,[[798,1,1,7,8]]],[28,3,3,8,11,[[876,2,2,8,10],[877,1,1,10,11]]],[29,1,1,11,12,[[879,1,1,11,12]]]],[14237,14872,15068,15253,19185,19494,19571,20334,22310,22311,22333,22366]]],["habitations",[5,5,[[18,1,1,0,1,[[551,1,1,0,1]]],[23,2,2,1,3,[[753,1,1,1,2],[769,1,1,2,3]]],[24,1,1,3,4,[[798,1,1,3,4]]],[29,1,1,4,5,[[879,1,1,4,5]]]],[15068,19185,19571,20334,22366]]],["houses",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15253]]],["pastures",[5,5,[[18,2,2,0,2,[[500,1,1,0,1],[542,1,1,1,2]]],[28,3,3,2,5,[[876,2,2,2,4],[877,1,1,4,5]]]],[14237,14872,22310,22311,22333]]],["places",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19494]]]]},{"k":"H5000","v":[["*",[10,10,[[18,2,2,0,2,[[510,1,1,0,1],[624,1,1,1,2]]],[19,3,3,2,5,[[644,1,1,2,3],[646,1,1,3,4],[653,1,1,4,5]]],[21,4,4,5,9,[[671,1,1,5,6],[672,1,1,6,7],[674,1,1,7,8],[676,1,1,8,9]]],[23,1,1,9,10,[[750,1,1,9,10]]]],[14367,16352,16880,16935,17142,17542,17568,17585,17618,19091]]],["becometh",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16880]]],["comely",[7,7,[[18,2,2,0,2,[[510,1,1,0,1],[624,1,1,1,2]]],[21,4,4,2,6,[[671,1,1,2,3],[672,1,1,3,4],[674,1,1,4,5],[676,1,1,5,6]]],[23,1,1,6,7,[[750,1,1,6,7]]]],[14367,16352,17542,17568,17585,17618,19091]]],["seemly",[2,2,[[19,2,2,0,2,[[646,1,1,0,1],[653,1,1,1,2]]]],[16935,17142]]]]},{"k":"H5001","v":[["say",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19515]]]]},{"k":"H5002","v":[["*",[376,358,[[0,1,1,0,1,[[21,1,1,0,1]]],[3,7,5,1,6,[[130,1,1,1,2],[140,6,4,2,6]]],[8,2,1,6,7,[[237,2,1,6,7]]],[9,2,1,7,8,[[289,2,1,7,8]]],[11,4,3,8,11,[[321,2,1,8,9],[331,1,1,9,10],[334,1,1,10,11]]],[13,1,1,11,12,[[400,1,1,11,12]]],[18,2,2,12,14,[[513,1,1,12,13],[587,1,1,13,14]]],[19,1,1,14,15,[[657,1,1,14,15]]],[22,25,23,15,38,[[679,1,1,15,16],[681,1,1,16,17],[692,3,2,17,19],[695,2,2,19,21],[697,1,1,21,22],[700,1,1,22,23],[708,1,1,23,24],[709,1,1,24,25],[715,1,1,25,26],[719,1,1,26,27],[721,2,2,27,29],[727,1,1,29,30],[730,2,1,30,31],[732,1,1,31,32],[733,1,1,32,33],[734,1,1,33,34],[737,1,1,34,35],[744,3,3,35,38]]],[23,176,170,38,208,[[745,3,3,38,41],[746,6,6,41,47],[747,8,7,47,54],[748,3,3,54,57],[749,6,6,57,63],[750,1,1,63,64],[751,5,5,64,69],[752,4,4,69,73],[753,6,6,73,79],[756,1,1,79,80],[757,3,3,80,83],[759,4,4,83,87],[760,4,4,87,91],[761,1,1,91,92],[762,1,1,92,93],[763,2,2,93,95],[765,4,4,95,99],[766,3,3,99,102],[767,18,15,102,117],[769,5,5,117,122],[771,4,4,122,126],[772,1,1,126,127],[773,8,6,127,133],[774,6,6,133,139],[775,14,14,139,153],[776,3,3,153,156],[777,1,1,156,157],[778,3,3,157,160],[779,1,1,160,161],[783,2,2,161,163],[786,1,1,163,164],[788,1,1,164,165],[789,1,1,165,166],[790,5,5,166,171],[792,9,9,171,180],[793,12,12,180,192],[794,8,8,192,200],[795,8,8,200,208]]],[25,85,85,208,293,[[806,1,1,208,209],[812,2,2,209,211],[813,2,2,211,213],[814,4,4,213,217],[815,6,6,217,223],[816,1,1,223,224],[817,9,9,224,233],[818,1,1,233,234],[819,5,5,234,239],[821,6,6,239,245],[822,2,2,245,247],[823,2,2,247,249],[824,1,1,249,250],[825,1,1,250,251],[826,1,1,251,252],[827,3,3,252,255],[829,1,1,255,256],[830,1,1,256,257],[831,1,1,257,258],[832,1,1,258,259],[833,5,5,259,264],[834,1,1,264,265],[835,4,4,265,269],[836,2,2,269,271],[837,4,4,271,275],[838,1,1,275,276],[839,2,2,276,278],[840,6,6,278,284],[844,2,2,284,286],[845,3,3,286,289],[846,2,2,289,291],[848,1,1,291,292],[849,1,1,292,293]]],[27,4,4,293,297,[[863,3,3,293,296],[872,1,1,296,297]]],[28,1,1,297,298,[[877,1,1,297,298]]],[29,21,21,298,319,[[880,2,2,298,300],[881,3,3,300,303],[882,7,7,303,310],[884,2,2,310,312],[886,3,3,312,315],[887,4,4,315,319]]],[30,2,2,319,321,[[888,2,2,319,321]]],[32,2,2,321,323,[[896,1,1,321,322],[897,1,1,322,323]]],[33,2,2,323,325,[[901,1,1,323,324],[902,1,1,324,325]]],[35,5,5,325,330,[[906,3,3,325,328],[907,1,1,328,329],[908,1,1,329,330]]],[36,12,8,330,338,[[909,2,2,330,332],[910,10,6,332,338]]],[37,20,19,338,357,[[911,3,3,338,341],[912,4,3,341,344],[913,2,2,344,346],[915,1,1,346,347],[918,3,3,347,350],[920,1,1,350,351],[921,1,1,351,352],[922,2,2,352,354],[923,3,3,354,357]]],[38,1,1,357,358,[[925,1,1,357,358]]]],[563,4136,4449,4450,4461,4462,7270,8654,9782,10094,10164,11960,14439,15787,17252,17678,17722,17950,17951,17986,17989,18008,18077,18218,18259,18386,18465,18515,18517,18654,18701,18740,18748,18761,18820,18924,18939,18944,18954,18961,18965,18968,18974,18977,18984,18987,18994,19003,19012,19014,19015,19016,19018,19022,19028,19036,19044,19067,19069,19073,19076,19080,19087,19101,19130,19132,19138,19149,19151,19154,19156,19166,19170,19178,19181,19184,19197,19199,19200,19266,19277,19280,19291,19318,19321,19324,19335,19341,19347,19350,19352,19381,19390,19413,19419,19447,19450,19453,19454,19459,19470,19478,19485,19486,19488,19489,19491,19495,19496,19507,19508,19512,19513,19514,19515,19516,19517,19541,19543,19546,19563,19565,19604,19607,19611,19618,19622,19644,19646,19649,19654,19658,19667,19670,19675,19677,19678,19684,19688,19692,19705,19707,19708,19711,19718,19719,19722,19723,19724,19725,19727,19728,19729,19736,19761,19775,19789,19806,19818,19823,19836,19940,19941,19986,20039,20045,20050,20063,20068,20071,20073,20092,20095,20105,20110,20115,20118,20123,20124,20127,20129,20132,20133,20140,20143,20153,20157,20158,20159,20164,20165,20166,20170,20176,20186,20187,20196,20197,20201,20206,20236,20237,20238,20251,20260,20264,20265,20269,20557,20663,20676,20705,20708,20714,20715,20716,20724,20742,20745,20747,20749,20751,20754,20762,20770,20776,20781,20785,20792,20805,20810,20820,20825,20841,20852,20858,20872,20879,20881,20898,20926,20928,20931,20935,20939,20951,20957,20988,21007,21041,21070,21097,21105,21114,21121,21167,21203,21210,21248,21256,21262,21264,21279,21280,21291,21321,21328,21343,21344,21350,21355,21373,21374,21382,21391,21411,21443,21446,21453,21456,21458,21461,21468,21477,21591,21599,21611,21614,21626,21639,21645,21702,21731,22118,22121,22126,22251,22323,22390,22395,22405,22408,22410,22413,22415,22416,22418,22419,22420,22421,22458,22464,22484,22490,22492,22502,22503,22507,22508,22514,22518,22626,22643,22712,22717,22789,22790,22797,22814,22828,22849,22853,22859,22863,22864,22869,22872,22878,22881,22882,22894,22904,22905,22909,22921,22922,22940,22982,22987,22993,23028,23034,23046,23049,23061,23066,23067,23091]]],["+",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8654]]],["said",[8,6,[[3,6,4,0,4,[[140,6,4,0,4]]],[9,1,1,4,5,[[289,1,1,4,5]]],[18,1,1,5,6,[[587,1,1,5,6]]]],[4449,4450,4461,4462,8654,15787]]],["saith",[366,351,[[0,1,1,0,1,[[21,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[8,2,1,2,3,[[237,2,1,2,3]]],[11,4,3,3,6,[[321,2,1,3,4],[331,1,1,4,5],[334,1,1,5,6]]],[13,1,1,6,7,[[400,1,1,6,7]]],[18,1,1,7,8,[[513,1,1,7,8]]],[22,25,23,8,31,[[679,1,1,8,9],[681,1,1,9,10],[692,3,2,10,12],[695,2,2,12,14],[697,1,1,14,15],[700,1,1,15,16],[708,1,1,16,17],[709,1,1,17,18],[715,1,1,18,19],[719,1,1,19,20],[721,2,2,20,22],[727,1,1,22,23],[730,2,1,23,24],[732,1,1,24,25],[733,1,1,25,26],[734,1,1,26,27],[737,1,1,27,28],[744,3,3,28,31]]],[23,176,170,31,201,[[745,3,3,31,34],[746,6,6,34,40],[747,8,7,40,47],[748,3,3,47,50],[749,6,6,50,56],[750,1,1,56,57],[751,5,5,57,62],[752,4,4,62,66],[753,6,6,66,72],[756,1,1,72,73],[757,3,3,73,76],[759,4,4,76,80],[760,4,4,80,84],[761,1,1,84,85],[762,1,1,85,86],[763,2,2,86,88],[765,4,4,88,92],[766,3,3,92,95],[767,18,15,95,110],[769,5,5,110,115],[771,4,4,115,119],[772,1,1,119,120],[773,8,6,120,126],[774,6,6,126,132],[775,14,14,132,146],[776,3,3,146,149],[777,1,1,149,150],[778,3,3,150,153],[779,1,1,153,154],[783,2,2,154,156],[786,1,1,156,157],[788,1,1,157,158],[789,1,1,158,159],[790,5,5,159,164],[792,9,9,164,173],[793,12,12,173,185],[794,8,8,185,193],[795,8,8,193,201]]],[25,85,85,201,286,[[806,1,1,201,202],[812,2,2,202,204],[813,2,2,204,206],[814,4,4,206,210],[815,6,6,210,216],[816,1,1,216,217],[817,9,9,217,226],[818,1,1,226,227],[819,5,5,227,232],[821,6,6,232,238],[822,2,2,238,240],[823,2,2,240,242],[824,1,1,242,243],[825,1,1,243,244],[826,1,1,244,245],[827,3,3,245,248],[829,1,1,248,249],[830,1,1,249,250],[831,1,1,250,251],[832,1,1,251,252],[833,5,5,252,257],[834,1,1,257,258],[835,4,4,258,262],[836,2,2,262,264],[837,4,4,264,268],[838,1,1,268,269],[839,2,2,269,271],[840,6,6,271,277],[844,2,2,277,279],[845,3,3,279,282],[846,2,2,282,284],[848,1,1,284,285],[849,1,1,285,286]]],[27,4,4,286,290,[[863,3,3,286,289],[872,1,1,289,290]]],[28,1,1,290,291,[[877,1,1,290,291]]],[29,21,21,291,312,[[880,2,2,291,293],[881,3,3,293,296],[882,7,7,296,303],[884,2,2,303,305],[886,3,3,305,308],[887,4,4,308,312]]],[30,2,2,312,314,[[888,2,2,312,314]]],[32,2,2,314,316,[[896,1,1,314,315],[897,1,1,315,316]]],[33,2,2,316,318,[[901,1,1,316,317],[902,1,1,317,318]]],[35,5,5,318,323,[[906,3,3,318,321],[907,1,1,321,322],[908,1,1,322,323]]],[36,12,8,323,331,[[909,2,2,323,325],[910,10,6,325,331]]],[37,20,19,331,350,[[911,3,3,331,334],[912,4,3,334,337],[913,2,2,337,339],[915,1,1,339,340],[918,3,3,340,343],[920,1,1,343,344],[921,1,1,344,345],[922,2,2,345,347],[923,3,3,347,350]]],[38,1,1,350,351,[[925,1,1,350,351]]]],[563,4136,7270,9782,10094,10164,11960,14439,17678,17722,17950,17951,17986,17989,18008,18077,18218,18259,18386,18465,18515,18517,18654,18701,18740,18748,18761,18820,18924,18939,18944,18954,18961,18965,18968,18974,18977,18984,18987,18994,19003,19012,19014,19015,19016,19018,19022,19028,19036,19044,19067,19069,19073,19076,19080,19087,19101,19130,19132,19138,19149,19151,19154,19156,19166,19170,19178,19181,19184,19197,19199,19200,19266,19277,19280,19291,19318,19321,19324,19335,19341,19347,19350,19352,19381,19390,19413,19419,19447,19450,19453,19454,19459,19470,19478,19485,19486,19488,19489,19491,19495,19496,19507,19508,19512,19513,19514,19515,19516,19517,19541,19543,19546,19563,19565,19604,19607,19611,19618,19622,19644,19646,19649,19654,19658,19667,19670,19675,19677,19678,19684,19688,19692,19705,19707,19708,19711,19718,19719,19722,19723,19724,19725,19727,19728,19729,19736,19761,19775,19789,19806,19818,19823,19836,19940,19941,19986,20039,20045,20050,20063,20068,20071,20073,20092,20095,20105,20110,20115,20118,20123,20124,20127,20129,20132,20133,20140,20143,20153,20157,20158,20159,20164,20165,20166,20170,20176,20186,20187,20196,20197,20201,20206,20236,20237,20238,20251,20260,20264,20265,20269,20557,20663,20676,20705,20708,20714,20715,20716,20724,20742,20745,20747,20749,20751,20754,20762,20770,20776,20781,20785,20792,20805,20810,20820,20825,20841,20852,20858,20872,20879,20881,20898,20926,20928,20931,20935,20939,20951,20957,20988,21007,21041,21070,21097,21105,21114,21121,21167,21203,21210,21248,21256,21262,21264,21279,21280,21291,21321,21328,21343,21344,21350,21355,21373,21374,21382,21391,21411,21443,21446,21453,21456,21458,21461,21468,21477,21591,21599,21611,21614,21626,21639,21645,21702,21731,22118,22121,22126,22251,22323,22390,22395,22405,22408,22410,22413,22415,22416,22418,22419,22420,22421,22458,22464,22484,22490,22492,22502,22503,22507,22508,22514,22518,22626,22643,22712,22717,22789,22790,22797,22814,22828,22849,22853,22859,22863,22864,22869,22872,22878,22881,22882,22894,22904,22905,22909,22921,22922,22940,22982,22987,22993,23028,23034,23046,23049,23061,23066,23067,23091]]],["spake",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17252]]]]},{"k":"H5003","v":[["*",[31,26,[[1,1,1,0,1,[[69,1,1,0,1]]],[2,4,1,1,2,[[109,4,1,1,2]]],[4,1,1,2,3,[[157,1,1,2,3]]],[17,1,1,3,4,[[459,1,1,3,4]]],[18,1,1,4,5,[[527,1,1,4,5]]],[19,2,2,5,7,[[633,1,1,5,6],[657,1,1,6,7]]],[22,1,1,7,8,[[735,1,1,7,8]]],[23,8,8,8,16,[[747,2,2,8,10],[749,1,1,10,11],[751,1,1,11,12],[753,1,1,12,13],[767,2,2,13,15],[773,1,1,15,16]]],[25,6,4,16,20,[[817,2,2,16,18],[824,4,2,18,20]]],[27,5,5,20,25,[[864,1,1,20,21],[865,3,3,21,24],[868,1,1,24,25]]],[38,1,1,25,26,[[927,1,1,25,26]]]],[2065,3328,5071,13451,14686,16572,17271,18768,19010,19011,19065,19128,19177,19494,19498,19658,20794,20800,21044,21052,22129,22135,22146,22147,22182,23125]]],["adulterer",[3,3,[[2,1,1,0,1,[[109,1,1,0,1]]],[17,1,1,1,2,[[459,1,1,1,2]]],[22,1,1,2,3,[[735,1,1,2,3]]]],[3328,13451,18768]]],["adulterers",[5,5,[[18,1,1,0,1,[[527,1,1,0,1]]],[23,2,2,1,3,[[753,1,1,1,2],[767,1,1,2,3]]],[27,1,1,3,4,[[868,1,1,3,4]]],[38,1,1,4,5,[[927,1,1,4,5]]]],[14686,19177,19494,22182,23125]]],["adulteress",[2,2,[[2,1,1,0,1,[[109,1,1,0,1]]],[27,1,1,1,2,[[864,1,1,1,2]]]],[3328,22129]]],["adulteresses",[2,1,[[25,2,1,0,1,[[824,2,1,0,1]]]],[21052]]],["adulterous",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17271]]],["adultery",[17,15,[[1,1,1,0,1,[[69,1,1,0,1]]],[2,2,1,1,2,[[109,2,1,1,2]]],[4,1,1,2,3,[[157,1,1,2,3]]],[19,1,1,3,4,[[633,1,1,3,4]]],[23,6,6,4,10,[[747,2,2,4,6],[749,1,1,6,7],[751,1,1,7,8],[767,1,1,8,9],[773,1,1,9,10]]],[25,3,2,10,12,[[817,1,1,10,11],[824,2,1,11,12]]],[27,3,3,12,15,[[865,3,3,12,15]]]],[2065,3328,5071,16572,19010,19011,19065,19128,19498,19658,20794,21044,22135,22146,22147]]],["wedlock",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20800]]]]},{"k":"H5004","v":[["adulteries",[2,2,[[23,1,1,0,1,[[757,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[19293,21050]]]]},{"k":"H5005","v":[["adulteries",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22107]]]]},{"k":"H5006","v":[["*",[25,24,[[3,3,3,0,3,[[130,2,2,0,2],[132,1,1,2,3]]],[4,2,2,3,5,[[183,1,1,3,4],[184,1,1,4,5]]],[8,1,1,5,6,[[237,1,1,5,6]]],[9,2,1,6,7,[[278,2,1,6,7]]],[18,5,5,7,12,[[487,2,2,7,9],[551,2,2,9,11],[584,1,1,11,12]]],[19,3,3,12,15,[[628,1,1,12,13],[632,1,1,13,14],[642,1,1,14,15]]],[20,1,1,15,16,[[670,1,1,15,16]]],[22,4,4,16,20,[[679,1,1,16,17],[683,1,1,17,18],[730,1,1,18,19],[738,1,1,19,20]]],[23,3,3,20,23,[[758,1,1,20,21],[767,1,1,21,22],[777,1,1,22,23]]],[24,1,1,23,24,[[798,1,1,23,24]]]],[4119,4131,4224,5748,5777,7257,8300,14044,14054,15058,15066,15710,16430,16529,16812,17528,17658,17763,18701,18835,19314,19501,19799,20338]]],["+",[4,4,[[3,1,1,0,1,[[132,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[9,1,1,2,3,[[278,1,1,2,3]]],[22,1,1,3,4,[[679,1,1,3,4]]]],[4224,7257,8300,17658]]],["abhor",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19314]]],["abhorred",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5777]]],["abhorreth",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14044]]],["blaspheme",[2,2,[[9,1,1,0,1,[[278,1,1,0,1]]],[18,1,1,1,2,[[551,1,1,1,2]]]],[8300,15058]]],["blasphemed",[2,2,[[18,1,1,0,1,[[551,1,1,0,1]]],[22,1,1,1,2,[[730,1,1,1,2]]]],[15066,18701]]],["contemn",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14054]]],["contemned",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15710]]],["despise",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19501]]],["despised",[6,6,[[19,2,2,0,2,[[628,1,1,0,1],[632,1,1,1,2]]],[22,2,2,2,4,[[683,1,1,2,3],[738,1,1,3,4]]],[23,1,1,4,5,[[777,1,1,4,5]]],[24,1,1,5,6,[[798,1,1,5,6]]]],[16430,16529,17763,18835,19799,20338]]],["despiseth",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16812]]],["flourish",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17528]]],["provoke",[2,2,[[3,1,1,0,1,[[130,1,1,0,1]]],[4,1,1,1,2,[[183,1,1,1,2]]]],[4119,5748]]],["provoked",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4131]]]]},{"k":"H5007","v":[["*",[5,5,[[11,1,1,0,1,[[331,1,1,0,1]]],[15,2,2,1,3,[[421,2,2,1,3]]],[22,1,1,3,4,[[715,1,1,3,4]]],[25,1,1,4,5,[[836,1,1,4,5]]]],[10064,12529,12537,18355,21356]]],["blasphemies",[1,1,[[25,1,1,0,1,[[836,1,1,0,1]]]],[21356]]],["blasphemy",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10064,18355]]],["provocations",[2,2,[[15,2,2,0,2,[[421,2,2,0,2]]]],[12529,12537]]]]},{"k":"H5008","v":[["groan",[2,2,[[17,1,1,0,1,[[459,1,1,0,1]]],[25,1,1,1,2,[[831,1,1,1,2]]]],[13448,21228]]]]},{"k":"H5009","v":[["*",[4,4,[[1,2,2,0,2,[[51,1,1,0,1],[55,1,1,1,2]]],[6,1,1,2,3,[[212,1,1,2,3]]],[25,1,1,3,4,[[831,1,1,3,4]]]],[1578,1660,6563,21228]]],["+",[1,1,[[6,1,1,0,1,[[212,1,1,0,1]]]],[6563]]],["groaning",[2,2,[[1,2,2,0,2,[[51,1,1,0,1],[55,1,1,1,2]]]],[1578,1660]]],["groanings",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21228]]]]},{"k":"H5010","v":[["*",[2,2,[[18,1,1,0,1,[[566,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]]],[15365,20339]]],["abhorred",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20339]]],["void",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15365]]]]},{"k":"H5011","v":[["Nob",[6,6,[[8,4,4,0,4,[[256,1,1,0,1],[257,3,3,1,4]]],[15,1,1,4,5,[[423,1,1,4,5]]],[22,1,1,5,6,[[688,1,1,5,6]]]],[7773,7796,7798,7806,12620,17882]]]]},{"k":"H5012","v":[["*",[115,102,[[3,3,3,0,3,[[127,3,3,0,3]]],[8,12,10,3,13,[[245,5,5,3,8],[253,1,1,8,9],[254,6,4,9,13]]],[10,5,5,13,18,[[308,1,1,13,14],[312,4,4,14,18]]],[12,3,3,18,21,[[362,3,3,18,21]]],[13,5,5,21,26,[[384,4,4,21,25],[386,1,1,25,26]]],[23,40,36,26,62,[[746,1,1,26,27],[749,1,1,27,28],[755,1,1,28,29],[758,4,3,29,32],[763,1,1,32,33],[764,2,2,33,35],[767,6,6,35,41],[769,2,2,41,43],[770,6,5,43,48],[771,6,4,48,52],[772,3,3,52,55],[773,5,5,55,60],[776,1,1,60,61],[781,1,1,61,62]]],[25,37,31,62,93,[[805,1,1,62,63],[807,1,1,63,64],[812,3,2,64,66],[813,1,1,66,67],[814,5,3,67,70],[821,1,1,70,71],[822,4,4,71,75],[826,1,1,75,76],[829,1,1,76,77],[830,1,1,77,78],[831,1,1,78,79],[835,2,1,79,80],[836,1,1,80,81],[837,3,3,81,84],[838,7,5,84,89],[839,3,3,89,92],[840,1,1,92,93]]],[28,1,1,93,94,[[877,1,1,93,94]]],[29,6,6,94,100,[[880,1,1,94,95],[881,1,1,95,96],[885,4,4,96,100]]],[37,3,2,100,102,[[923,3,2,100,102]]]],[4049,4050,4051,7423,7424,7428,7429,7431,7686,7726,7727,7729,7730,9370,9488,9490,9492,9498,11047,11048,11049,11549,11551,11553,11559,11624,18973,19089,19247,19307,19308,19309,19421,19423,19428,19497,19500,19505,19509,19510,19516,19547,19564,19581,19583,19584,19590,19592,19606,19610,19611,19612,19624,19626,19627,19644,19656,19661,19662,19666,19734,19893,20536,20565,20659,20668,20707,20710,20724,20725,20941,20946,20953,20958,20972,21085,21178,21185,21206,21315,21346,21360,21362,21365,21401,21404,21406,21407,21409,21427,21439,21442,21449,22339,22391,22403,22476,22477,22479,22480,23062,23063]]],["+",[3,3,[[8,1,1,0,1,[[245,1,1,0,1]]],[23,2,2,1,3,[[764,1,1,1,2],[770,1,1,2,3]]]],[7431,19423,19590]]],["Prophesy",[6,6,[[23,1,1,0,1,[[755,1,1,0,1]]],[25,3,3,1,4,[[837,1,1,1,2],[838,2,2,2,4]]],[29,2,2,4,6,[[880,1,1,4,5],[885,1,1,5,6]]]],[19247,21365,21401,21406,22391,22480]]],["prophesied",[38,35,[[3,2,2,0,2,[[127,2,2,0,2]]],[8,8,7,2,9,[[245,2,2,2,4],[253,1,1,4,5],[254,5,4,5,9]]],[10,3,3,9,12,[[308,1,1,9,10],[312,2,2,10,12]]],[12,2,2,12,14,[[362,2,2,12,14]]],[13,4,4,14,18,[[384,3,3,14,17],[386,1,1,17,18]]],[23,13,12,18,30,[[746,1,1,18,19],[764,1,1,19,20],[767,2,2,20,22],[769,1,1,22,23],[770,4,3,23,26],[772,2,2,26,28],[773,1,1,28,29],[781,1,1,29,30]]],[25,5,4,30,34,[[812,1,1,30,31],[838,3,2,31,33],[839,1,1,33,34]]],[37,1,1,34,35,[[923,1,1,34,35]]]],[4049,4050,7428,7429,7686,7726,7727,7729,7730,9370,9490,9492,11048,11049,11549,11551,11553,11624,18973,19428,19497,19505,19547,19581,19583,19592,19624,19626,19666,19893,20668,21404,21407,21442,23063]]],["prophesieth",[3,3,[[23,1,1,0,1,[[772,1,1,0,1]]],[25,1,1,1,2,[[813,1,1,1,2]]],[37,1,1,2,3,[[923,1,1,2,3]]]],[19627,20707,23062]]],["prophesy",[62,55,[[3,1,1,0,1,[[127,1,1,0,1]]],[8,2,2,1,3,[[245,2,2,1,3]]],[10,2,2,3,5,[[312,2,2,3,5]]],[12,1,1,5,6,[[362,1,1,5,6]]],[13,1,1,6,7,[[384,1,1,6,7]]],[23,21,18,7,25,[[749,1,1,7,8],[758,4,3,8,11],[763,1,1,11,12],[767,4,4,12,16],[769,1,1,16,17],[770,1,1,17,18],[771,6,4,18,22],[773,2,2,22,24],[776,1,1,24,25]]],[25,28,24,25,49,[[805,1,1,25,26],[807,1,1,26,27],[812,2,1,27,28],[814,5,3,28,31],[821,1,1,31,32],[822,4,4,32,36],[826,1,1,36,37],[829,1,1,37,38],[830,1,1,38,39],[831,1,1,39,40],[835,2,1,40,41],[836,1,1,41,42],[837,2,2,42,44],[838,2,2,44,46],[839,2,2,46,48],[840,1,1,48,49]]],[28,1,1,49,50,[[877,1,1,49,50]]],[29,4,4,50,54,[[881,1,1,50,51],[885,3,3,51,54]]],[37,1,1,54,55,[[923,1,1,54,55]]]],[4051,7423,7424,9488,9498,11047,11559,19089,19307,19308,19309,19421,19500,19509,19510,19516,19564,19584,19606,19610,19611,19612,19644,19656,19734,20536,20565,20659,20710,20724,20725,20941,20946,20953,20958,20972,21085,21178,21185,21206,21315,21346,21360,21362,21406,21409,21427,21439,21449,22339,22403,22476,22477,22479,23062]]],["prophesying",[1,1,[[8,1,1,0,1,[[254,1,1,0,1]]]],[7726]]],["prophet",[2,2,[[23,2,2,0,2,[[773,2,2,0,2]]]],[19661,19662]]]]},{"k":"H5013","v":[["prophesied",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12135]]]]},{"k":"H5014","v":[["*",[4,4,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[17,1,1,2,3,[[446,1,1,2,3]]],[23,1,1,3,4,[[796,1,1,3,4]]]],[2280,2640,13120,20297]]],["Hollow",[1,1,[[1,1,1,0,1,[[76,1,1,0,1]]]],[2280]]],["hollow",[2,2,[[1,1,1,0,1,[[87,1,1,0,1]]],[23,1,1,1,2,[[796,1,1,1,2]]]],[2640,20297]]],["vain",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13120]]]]},{"k":"H5015","v":[["Nebo",[13,13,[[3,3,3,0,3,[[148,2,2,0,2],[149,1,1,2,3]]],[4,2,2,3,5,[[184,1,1,3,4],[186,1,1,4,5]]],[12,1,1,5,6,[[342,1,1,5,6]]],[14,2,2,6,8,[[404,1,1,6,7],[412,1,1,7,8]]],[15,1,1,8,9,[[419,1,1,8,9]]],[22,2,2,9,11,[[693,1,1,9,10],[724,1,1,10,11]]],[23,2,2,11,13,[[792,2,2,11,13]]]],[4721,4756,4807,5807,5840,10436,12056,12295,12453,17962,18587,20081,20102]]]]},{"k":"H5016","v":[["prophecy",[3,3,[[13,2,2,0,2,[[375,1,1,0,1],[381,1,1,1,2]]],[15,1,1,2,3,[[418,1,1,2,3]]]],[11393,11498,12413]]]]},{"k":"H5017","v":[["prophesying",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12165]]]]},{"k":"H5018","v":[["Nebuzaradan",[15,15,[[11,3,3,0,3,[[337,3,3,0,3]]],[23,12,12,3,15,[[783,4,4,3,7],[784,1,1,7,8],[785,1,1,8,9],[787,1,1,9,10],[796,5,5,10,15]]]],[10230,10233,10242,19932,19933,19934,19936,19942,19967,20003,20288,20291,20292,20302,20306]]]]},{"k":"H5019","v":[["*",[60,59,[[11,6,6,0,6,[[336,3,3,0,3],[337,3,3,3,6]]],[12,1,1,6,7,[[343,1,1,6,7]]],[13,4,4,7,11,[[402,4,4,7,11]]],[14,2,2,11,13,[[403,1,1,11,12],[404,1,1,12,13]]],[15,1,1,13,14,[[419,1,1,13,14]]],[16,1,1,14,15,[[427,1,1,14,15]]],[23,37,37,15,52,[[765,2,2,15,17],[766,1,1,17,18],[768,1,1,18,19],[769,2,2,19,21],[771,3,3,21,24],[772,3,3,24,27],[773,3,3,27,30],[776,2,2,30,32],[778,1,1,32,33],[779,1,1,33,34],[781,1,1,34,35],[783,3,3,35,38],[787,1,1,38,39],[788,1,1,39,40],[790,3,3,40,43],[793,2,2,43,45],[794,1,1,45,46],[795,1,1,46,47],[796,5,5,47,52]]],[25,4,4,52,56,[[827,1,1,52,53],[830,2,2,53,55],[831,1,1,55,56]]],[26,4,3,56,59,[[850,2,2,56,58],[851,2,1,58,59]]]],[10203,10212,10213,10223,10230,10244,10469,11999,12000,12003,12006,12023,12028,12426,12730,19442,19447,19479,19525,19535,19543,19602,19604,19616,19621,19629,19632,19636,19638,19656,19732,19759,19802,19834,19875,19924,19928,19934,20007,20040,20047,20058,20071,20155,20157,20183,20246,20280,20288,20304,20305,20306,21107,21201,21202,21214,21738,21755,21759]]],["Nebuchadnezzar",[29,28,[[11,6,6,0,6,[[336,3,3,0,3],[337,3,3,3,6]]],[12,1,1,6,7,[[343,1,1,6,7]]],[13,4,4,7,11,[[402,4,4,7,11]]],[14,2,2,11,13,[[403,1,1,11,12],[404,1,1,12,13]]],[15,1,1,13,14,[[419,1,1,13,14]]],[16,1,1,14,15,[[427,1,1,14,15]]],[23,10,10,15,25,[[771,3,3,15,18],[772,3,3,18,21],[773,2,2,21,23],[778,1,1,23,24],[783,1,1,24,25]]],[26,4,3,25,28,[[850,2,2,25,27],[851,2,1,27,28]]]],[10203,10212,10213,10223,10230,10244,10469,11999,12000,12003,12006,12023,12028,12426,12730,19602,19604,19616,19621,19629,19632,19636,19638,19802,19928,21738,21755,21759]]],["Nebuchadrezzar",[31,31,[[23,27,27,0,27,[[765,2,2,0,2],[766,1,1,2,3],[768,1,1,3,4],[769,2,2,4,6],[773,1,1,6,7],[776,2,2,7,9],[779,1,1,9,10],[781,1,1,10,11],[783,2,2,11,13],[787,1,1,13,14],[788,1,1,14,15],[790,3,3,15,18],[793,2,2,18,20],[794,1,1,20,21],[795,1,1,21,22],[796,5,5,22,27]]],[25,4,4,27,31,[[827,1,1,27,28],[830,2,2,28,30],[831,1,1,30,31]]]],[19442,19447,19479,19525,19535,19543,19656,19732,19759,19834,19875,19924,19934,20007,20040,20047,20058,20071,20155,20157,20183,20246,20280,20288,20304,20305,20306,21107,21201,21202,21214]]]]},{"k":"H5020","v":[["Nebuchadnezzar",[31,29,[[14,3,3,0,3,[[407,2,2,0,2],[408,1,1,2,3]]],[26,28,26,3,29,[[851,2,2,3,5],[852,15,13,5,18],[853,8,8,18,26],[854,3,3,26,29]]]],[12146,12148,12156,21786,21804,21808,21809,21810,21812,21814,21816,21820,21821,21823,21826,21831,21833,21835,21838,21841,21855,21865,21868,21870,21871,21874,21876,21885,21892]]]]},{"k":"H5021","v":[["Nebushasban",[1,1,[[23,1,1,0,1,[[783,1,1,0,1]]]],[19936]]]]},{"k":"H5022","v":[["Naboth",[22,18,[[10,19,15,0,15,[[311,19,15,0,15]]],[11,3,3,15,18,[[321,3,3,15,18]]]],[9452,9453,9454,9455,9457,9458,9459,9460,9463,9464,9465,9466,9467,9469,9470,9777,9781,9782]]]]},{"k":"H5023","v":[["rewards",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[854,1,1,1,2]]]],[21764,21891]]]]},{"k":"H5024","v":[["bark",[1,1,[[22,1,1,0,1,[[734,1,1,0,1]]]],[18763]]]]},{"k":"H5025","v":[["Nobah",[3,2,[[3,2,1,0,1,[[148,2,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]]],[4760,6730]]]]},{"k":"H5026","v":[["Nibhaz",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10014]]]]},{"k":"H5027","v":[["*",[69,67,[[0,3,3,0,3,[[14,1,1,0,1],[18,2,2,1,3]]],[1,2,2,3,5,[[52,1,1,3,4],[82,1,1,4,5]]],[3,3,3,5,8,[[128,1,1,5,6],[137,1,1,6,7],[139,1,1,7,8]]],[8,4,4,8,12,[[237,1,1,8,9],[251,1,1,9,10],[252,1,1,10,11],[259,1,1,11,12]]],[10,3,2,12,14,[[308,2,1,12,13],[309,1,1,13,14]]],[11,1,1,14,15,[[315,1,1,14,15]]],[12,1,1,15,16,[[358,1,1,15,16]]],[17,5,5,16,21,[[441,1,1,16,17],[463,1,1,17,18],[470,1,1,18,19],[471,1,1,19,20],[474,1,1,20,21]]],[18,17,17,21,38,[[487,1,1,21,22],[490,1,1,22,23],[499,1,1,23,24],[510,1,1,24,25],[511,1,1,25,26],[551,1,1,26,27],[557,1,1,27,28],[561,1,1,28,29],[568,1,1,29,30],[569,1,1,30,31],[571,1,1,31,32],[579,1,1,32,33],[581,1,1,33,34],[596,3,3,34,37],[619,1,1,37,38]]],[19,1,1,38,39,[[631,1,1,38,39]]],[22,15,15,39,54,[[683,2,2,39,41],[686,1,1,41,42],[696,1,1,42,43],[700,2,2,43,45],[716,1,1,45,46],[720,1,1,46,47],[729,3,3,47,50],[741,2,2,50,52],[742,1,1,52,53],[744,1,1,53,54]]],[24,6,6,54,60,[[797,2,2,54,56],[798,1,1,56,57],[799,1,1,57,58],[800,1,1,58,59],[801,1,1,59,60]]],[29,1,1,60,61,[[883,1,1,60,61]]],[31,1,1,61,62,[[890,1,1,61,62]]],[34,5,4,62,66,[[903,4,3,62,65],[904,1,1,65,66]]],[37,1,1,66,67,[[922,1,1,66,67]]]],[365,474,483,1585,2481,4067,4349,4437,7272,7602,7660,7847,9384,9393,9590,10955,12997,13528,13725,13761,13863,14055,14077,14221,14379,14393,15068,15212,15268,15403,15422,15440,15540,15603,15904,15913,15916,16290,16515,17751,17769,17829,18001,18060,18063,18401,18498,18674,18675,18679,18871,18881,18894,18924,20321,20322,20352,20417,20436,20443,22445,22552,22734,22736,22744,22763,23055]]],["+",[3,3,[[1,1,1,0,1,[[52,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[18,1,1,2,3,[[579,1,1,2,3]]]],[1585,4349,15540]]],["Behold",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20417]]],["Consider",[1,1,[[18,1,1,0,1,[[490,1,1,0,1]]]],[14077]]],["Look",[4,4,[[0,1,1,0,1,[[14,1,1,0,1]]],[8,1,1,1,2,[[251,1,1,1,2]]],[17,1,1,2,3,[[470,1,1,2,3]]],[22,1,1,3,4,[[729,1,1,3,4]]]],[365,7602,13725,18675]]],["about",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7660]]],["beheld",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4437]]],["behold",[8,8,[[3,1,1,0,1,[[128,1,1,0,1]]],[17,2,2,1,3,[[471,1,1,1,2],[474,1,1,2,3]]],[18,2,2,3,5,[[568,1,1,3,4],[596,1,1,4,5]]],[22,1,1,5,6,[[716,1,1,5,6]]],[24,1,1,6,7,[[797,1,1,6,7]]],[34,1,1,7,8,[[903,1,1,7,8]]]],[4067,13761,13863,15403,15916,18401,20322,22734]]],["beholdest",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14055]]],["consider",[4,4,[[22,1,1,0,1,[[696,1,1,0,1]]],[24,3,3,1,4,[[797,1,1,1,2],[798,1,1,2,3],[801,1,1,3,4]]]],[18001,20321,20352,20443]]],["down",[2,2,[[18,1,1,0,1,[[557,1,1,0,1]]],[22,1,1,1,2,[[741,1,1,1,2]]]],[15212,18881]]],["look",[16,16,[[0,1,1,0,1,[[18,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]],[11,1,1,2,3,[[315,1,1,2,3]]],[18,1,1,3,4,[[499,1,1,3,4]]],[19,1,1,4,5,[[631,1,1,4,5]]],[22,7,7,5,12,[[683,1,1,5,6],[686,1,1,6,7],[700,1,1,7,8],[720,1,1,8,9],[729,2,2,9,11],[744,1,1,11,12]]],[31,1,1,12,13,[[890,1,1,12,13]]],[34,2,2,13,15,[[903,1,1,13,14],[904,1,1,14,15]]],[37,1,1,15,16,[[922,1,1,15,16]]]],[474,9384,9590,14221,16515,17769,17829,18060,18498,18674,18679,18924,22552,22744,22763,23055]]],["looked",[11,11,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,1,1,1,2,[[82,1,1,1,2]]],[8,1,1,2,3,[[259,1,1,2,3]]],[10,2,2,3,5,[[308,1,1,3,4],[309,1,1,4,5]]],[12,1,1,5,6,[[358,1,1,5,6]]],[17,1,1,6,7,[[441,1,1,6,7]]],[18,2,2,7,9,[[511,1,1,7,8],[619,1,1,8,9]]],[22,2,2,9,11,[[700,1,1,9,10],[741,1,1,10,11]]]],[483,2481,7847,9384,9393,10955,12997,14393,16290,18063,18871]]],["lookest",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22744]]],["looketh",[3,3,[[17,1,1,0,1,[[463,1,1,0,1]]],[18,2,2,1,3,[[510,1,1,1,2],[581,1,1,2,3]]]],[13528,14379,15603]]],["regard",[4,4,[[22,1,1,0,1,[[683,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]],[29,1,1,2,3,[[883,1,1,2,3]]],[34,1,1,3,4,[[903,1,1,3,4]]]],[17751,20436,22445,22736]]],["respect",[3,3,[[18,3,3,0,3,[[551,1,1,0,1],[596,2,2,1,3]]]],[15068,15904,15913]]],["see",[4,4,[[8,1,1,0,1,[[237,1,1,0,1]]],[18,2,2,1,3,[[569,1,1,1,2],[571,1,1,2,3]]],[22,1,1,3,4,[[742,1,1,3,4]]]],[7272,15422,15440,18894]]],["upon",[1,1,[[18,1,1,0,1,[[561,1,1,0,1]]]],[15268]]]]},{"k":"H5028","v":[["Nebat",[25,25,[[10,9,9,0,9,[[301,1,1,0,1],[302,2,2,1,3],[305,1,1,3,4],[306,3,3,4,7],[311,1,1,7,8],[312,1,1,8,9]]],[11,12,12,9,21,[[315,1,1,9,10],[321,1,1,10,11],[322,1,1,11,12],[325,2,2,12,14],[326,1,1,14,15],[327,4,4,15,19],[329,1,1,19,20],[335,1,1,20,21]]],[13,4,4,21,25,[[375,1,1,21,22],[376,2,2,22,24],[379,1,1,24,25]]]],[9134,9153,9166,9250,9286,9309,9314,9473,9532,9579,9765,9822,9873,9882,9920,9934,9943,9949,9953,10004,10180,11393,11397,11410,11459]]]]},{"k":"H5029","v":[["*",[4,3,[[14,4,3,0,3,[[407,3,2,0,2],[408,1,1,2,3]]]],[12135,12136,12165]]],["prophet",[2,2,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]]],[12135,12165]]],["prophets",[2,2,[[14,2,2,0,2,[[407,2,2,0,2]]]],[12135,12136]]]]},{"k":"H5030","v":[["*",[314,286,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,1,1,1,2,[[56,1,1,1,2]]],[3,2,2,2,4,[[127,1,1,2,3],[128,1,1,3,4]]],[4,10,8,4,12,[[165,3,3,4,7],[170,6,4,7,11],[186,1,1,11,12]]],[6,1,1,12,13,[[216,1,1,12,13]]],[8,12,11,13,24,[[238,1,1,13,14],[244,1,1,14,15],[245,5,4,15,19],[254,2,2,19,21],[257,1,1,21,22],[263,2,2,22,24]]],[9,3,3,24,27,[[273,1,1,24,25],[278,1,1,25,26],[290,1,1,26,27]]],[10,50,45,27,72,[[291,9,9,27,36],[301,1,1,36,37],[303,8,7,37,44],[304,2,2,44,46],[306,2,2,46,48],[308,12,8,48,56],[309,4,4,56,60],[310,5,5,60,65],[312,7,7,65,72]]],[11,33,29,72,101,[[314,4,4,72,76],[315,3,2,76,78],[316,3,2,78,80],[317,4,4,80,84],[318,2,2,84,86],[321,4,3,86,89],[322,1,1,89,90],[326,1,1,90,91],[329,3,2,91,93],[331,1,1,93,94],[332,3,3,94,97],[333,1,1,97,98],[335,2,2,98,100],[336,1,1,100,101]]],[12,3,3,101,104,[[353,1,1,101,102],[354,1,1,102,103],[366,1,1,103,104]]],[13,26,25,104,129,[[375,1,1,104,105],[378,2,2,105,107],[379,1,1,107,108],[381,1,1,108,109],[384,7,7,109,116],[386,1,1,116,117],[387,1,1,117,118],[390,1,1,118,119],[391,2,2,119,121],[392,1,1,121,122],[394,1,1,122,123],[395,2,1,123,124],[398,2,2,124,126],[401,1,1,126,127],[402,2,2,127,129]]],[14,1,1,129,130,[[411,1,1,129,130]]],[15,5,5,130,135,[[418,2,2,130,132],[421,3,3,132,135]]],[18,2,2,135,137,[[551,1,1,135,136],[582,1,1,136,137]]],[22,7,7,137,144,[[681,1,1,137,138],[687,1,1,138,139],[706,1,1,139,140],[707,1,1,140,141],[715,1,1,141,142],[716,1,1,142,143],[717,1,1,143,144]]],[23,95,85,144,229,[[745,1,1,144,145],[746,3,3,145,148],[748,1,1,148,149],[749,2,2,149,151],[750,1,1,151,152],[751,1,1,152,153],[752,2,2,153,155],[757,1,1,155,156],[758,5,4,156,160],[762,1,1,160,161],[764,1,1,161,162],[767,17,15,162,177],[769,2,2,177,179],[770,5,5,179,184],[771,5,5,184,189],[772,16,10,189,199],[773,6,5,199,204],[776,2,2,204,206],[778,1,1,206,207],[779,1,1,207,208],[780,2,2,208,210],[781,5,5,210,215],[782,3,3,215,218],[786,2,2,218,220],[787,1,1,220,221],[788,1,1,221,222],[789,1,1,222,223],[790,2,2,223,225],[791,1,1,225,226],[793,1,1,226,227],[794,1,1,227,228],[795,1,1,228,229]]],[24,4,4,229,233,[[798,3,3,229,232],[800,1,1,232,233]]],[25,17,15,233,248,[[803,1,1,233,234],[808,1,1,234,235],[814,6,5,235,240],[815,5,4,240,244],[823,2,2,244,246],[834,1,1,246,247],[839,1,1,247,248]]],[26,4,4,248,252,[[858,4,4,248,252]]],[27,8,6,252,258,[[865,1,1,252,253],[867,1,1,253,254],[870,2,2,254,256],[873,4,2,256,258]]],[29,5,4,258,262,[[880,2,2,258,260],[881,1,1,260,261],[885,2,1,261,262]]],[32,3,3,262,265,[[895,3,3,262,265]]],[34,2,2,265,267,[[903,1,1,265,266],[905,1,1,266,267]]],[35,1,1,267,268,[[908,1,1,267,268]]],[36,5,5,268,273,[[909,3,3,268,271],[910,2,2,271,273]]],[37,12,12,273,285,[[911,5,5,273,278],[917,3,3,278,281],[918,1,1,281,282],[923,3,3,282,285]]],[38,1,1,285,286,[[928,1,1,285,286]]]],[502,1686,4053,4065,5273,5275,5277,5399,5402,5404,5406,5849,6662,7296,7400,7423,7428,7429,7430,7726,7730,7792,7948,7957,8182,8311,8703,8725,8727,8739,8740,8749,8751,8755,8761,8762,9137,9195,9202,9204,9207,9209,9210,9213,9220,9236,9290,9295,9345,9354,9360,9361,9363,9366,9377,9381,9388,9397,9401,9403,9421,9430,9443,9446,9449,9486,9487,9490,9492,9493,9502,9503,9554,9556,9558,9566,9587,9589,9604,9641,9650,9655,9660,9669,9675,9686,9757,9760,9763,9812,9921,9996,10006,10063,10099,10109,10112,10129,10167,10183,10204,10842,10864,11193,11393,11442,11452,11475,11498,11547,11548,11551,11553,11554,11563,11564,11607,11636,11696,11719,11720,11754,11773,11816,11895,11907,11984,12005,12009,12248,12408,12415,12537,12541,12543,15057,15621,17709,17844,18171,18203,18354,18391,18415,18951,18973,18991,18995,19036,19071,19089,19102,19144,19154,19163,19279,19306,19307,19308,19311,19402,19424,19493,19495,19497,19498,19499,19500,19505,19509,19510,19512,19514,19515,19517,19518,19521,19536,19538,19577,19579,19580,19583,19588,19605,19610,19611,19612,19614,19619,19623,19624,19626,19627,19628,19629,19630,19633,19635,19636,19643,19650,19654,19664,19733,19763,19807,19838,19850,19868,19876,19877,19880,19887,19893,19904,19905,19909,19977,19979,20003,20014,20041,20046,20058,20074,20161,20167,20271,20341,20346,20352,20433,20497,20603,20710,20711,20712,20717,20724,20735,20738,20740,20741,21001,21004,21313,21442,21990,21994,21998,22012,22138,22172,22215,22216,22262,22265,22390,22391,22402,22478,22613,22614,22619,22732,22769,22824,22841,22843,22852,22856,22865,22879,22882,22883,22884,22885,22965,22969,22974,22985,23061,23063,23064,23143]]],["+",[9,9,[[10,4,4,0,4,[[308,2,2,0,2],[310,1,1,2,3],[312,1,1,3,4]]],[23,4,4,4,8,[[750,1,1,4,5],[752,1,1,5,6],[762,1,1,6,7],[782,1,1,7,8]]],[25,1,1,8,9,[[808,1,1,8,9]]]],[9354,9361,9449,9486,19102,19163,19402,19904,20603]]],["Prophet",[3,3,[[4,2,2,0,2,[[170,2,2,0,2]]],[8,1,1,2,3,[[244,1,1,2,3]]]],[5399,5402,7400]]],["prophecy",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22012]]],["prophesy",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20710]]],["prophet",[156,145,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,1,1,1,2,[[56,1,1,1,2]]],[3,1,1,2,3,[[128,1,1,2,3]]],[4,8,6,3,9,[[165,3,3,3,6],[170,4,2,6,8],[186,1,1,8,9]]],[6,1,1,9,10,[[216,1,1,9,10]]],[8,2,2,10,12,[[238,1,1,10,11],[257,1,1,11,12]]],[9,3,3,12,15,[[273,1,1,12,13],[278,1,1,13,14],[290,1,1,14,15]]],[10,29,28,15,43,[[291,9,9,15,24],[301,1,1,24,25],[303,8,7,25,32],[304,2,2,32,34],[306,2,2,34,36],[308,2,2,36,38],[309,1,1,38,39],[310,3,3,39,42],[312,1,1,42,43]]],[11,13,13,43,56,[[315,1,1,43,44],[317,3,3,44,47],[318,1,1,47,48],[321,2,2,48,50],[326,1,1,50,51],[331,1,1,51,52],[332,3,3,52,55],[335,1,1,55,56]]],[12,2,2,56,58,[[354,1,1,56,57],[366,1,1,57,58]]],[13,16,16,58,74,[[375,1,1,58,59],[378,2,2,59,61],[379,1,1,61,62],[381,1,1,62,63],[384,1,1,63,64],[387,1,1,64,65],[391,2,2,65,67],[392,1,1,67,68],[394,1,1,68,69],[395,1,1,69,70],[398,2,2,70,72],[401,1,1,72,73],[402,1,1,73,74]]],[18,1,1,74,75,[[551,1,1,74,75]]],[22,6,6,75,81,[[681,1,1,75,76],[687,1,1,76,77],[706,1,1,77,78],[715,1,1,78,79],[716,1,1,79,80],[717,1,1,80,81]]],[23,46,40,81,121,[[745,1,1,81,82],[758,1,1,82,83],[764,1,1,83,84],[767,5,5,84,89],[769,1,1,89,90],[772,15,9,90,99],[773,2,2,99,101],[776,1,1,101,102],[778,1,1,102,103],[780,2,2,103,105],[781,4,4,105,109],[782,2,2,109,111],[786,2,2,111,113],[787,1,1,113,114],[789,1,1,114,115],[790,2,2,115,117],[791,1,1,117,118],[793,1,1,118,119],[794,1,1,119,120],[795,1,1,120,121]]],[24,1,1,121,122,[[798,1,1,121,122]]],[25,7,6,122,128,[[803,1,1,122,123],[815,5,4,123,127],[834,1,1,127,128]]],[26,1,1,128,129,[[858,1,1,128,129]]],[27,5,4,129,133,[[865,1,1,129,130],[870,2,2,130,132],[873,2,1,132,133]]],[29,1,1,133,134,[[885,1,1,133,134]]],[34,2,2,134,136,[[903,1,1,134,135],[905,1,1,135,136]]],[36,5,5,136,141,[[909,3,3,136,139],[910,2,2,139,141]]],[37,3,3,141,144,[[911,2,2,141,143],[923,1,1,143,144]]],[38,1,1,144,145,[[928,1,1,144,145]]]],[502,1686,4065,5273,5275,5277,5404,5406,5849,6662,7296,7792,8182,8311,8703,8725,8727,8739,8740,8749,8751,8755,8761,8762,9137,9195,9202,9204,9207,9209,9210,9213,9220,9236,9290,9295,9363,9377,9403,9421,9430,9446,9487,9587,9650,9655,9660,9686,9757,9760,9921,10063,10099,10109,10112,10183,10864,11193,11393,11442,11452,11475,11498,11548,11636,11719,11720,11754,11773,11816,11895,11907,11984,12005,15057,17709,17844,18171,18354,18391,18415,18951,19311,19424,19495,19512,19517,19518,19521,19536,19619,19623,19624,19627,19628,19629,19630,19633,19635,19636,19664,19733,19807,19850,19868,19876,19877,19880,19887,19905,19909,19977,19979,20003,20041,20046,20058,20074,20161,20167,20271,20352,20497,20735,20738,20740,20741,21313,21990,22138,22215,22216,22265,22478,22732,22769,22841,22843,22852,22856,22865,22879,22885,23064,23143]]],["prophet's",[1,1,[[29,1,1,0,1,[[885,1,1,0,1]]]],[22478]]],["prophets",[143,133,[[3,1,1,0,1,[[127,1,1,0,1]]],[8,9,8,1,9,[[245,5,4,1,5],[254,2,2,5,7],[263,2,2,7,9]]],[10,17,15,9,24,[[308,8,6,9,15],[309,3,3,15,18],[310,1,1,18,19],[312,5,5,19,24]]],[11,20,17,24,41,[[314,4,4,24,28],[315,2,1,28,29],[316,3,2,29,31],[317,1,1,31,32],[318,1,1,32,33],[321,2,2,33,35],[322,1,1,35,36],[329,3,2,36,38],[333,1,1,38,39],[335,1,1,39,40],[336,1,1,40,41]]],[12,1,1,41,42,[[353,1,1,41,42]]],[13,10,10,42,52,[[384,6,6,42,48],[386,1,1,48,49],[390,1,1,49,50],[395,1,1,50,51],[402,1,1,51,52]]],[14,1,1,52,53,[[411,1,1,52,53]]],[15,5,5,53,58,[[418,2,2,53,55],[421,3,3,55,58]]],[18,1,1,58,59,[[582,1,1,58,59]]],[22,1,1,59,60,[[707,1,1,59,60]]],[23,45,42,60,102,[[746,3,3,60,63],[748,1,1,63,64],[749,2,2,64,66],[751,1,1,66,67],[752,1,1,67,68],[757,1,1,68,69],[758,4,3,69,72],[767,12,10,72,82],[769,1,1,82,83],[770,5,5,83,88],[771,5,5,88,93],[772,1,1,93,94],[773,4,4,94,98],[776,1,1,98,99],[779,1,1,99,100],[781,1,1,100,101],[788,1,1,101,102]]],[24,3,3,102,105,[[798,2,2,102,104],[800,1,1,104,105]]],[25,8,8,105,113,[[814,5,5,105,110],[823,2,2,110,112],[839,1,1,112,113]]],[26,2,2,113,115,[[858,2,2,113,115]]],[27,3,2,115,117,[[867,1,1,115,116],[873,2,1,116,117]]],[29,3,3,117,120,[[880,2,2,117,119],[881,1,1,119,120]]],[32,3,3,120,123,[[895,3,3,120,123]]],[35,1,1,123,124,[[908,1,1,123,124]]],[37,9,9,124,133,[[911,3,3,124,127],[917,3,3,127,130],[918,1,1,130,131],[923,2,2,131,133]]]],[4053,7423,7428,7429,7430,7726,7730,7948,7957,9345,9354,9360,9363,9366,9381,9388,9397,9401,9443,9490,9492,9493,9502,9503,9554,9556,9558,9566,9589,9604,9641,9669,9675,9757,9763,9812,9996,10006,10129,10167,10204,10842,11547,11551,11553,11554,11563,11564,11607,11696,11816,12009,12248,12408,12415,12537,12541,12543,15621,18203,18973,18991,18995,19036,19071,19089,19144,19154,19279,19306,19307,19308,19493,19497,19498,19499,19500,19505,19509,19510,19514,19515,19538,19577,19579,19580,19583,19588,19605,19610,19611,19612,19614,19626,19636,19643,19650,19654,19763,19838,19893,20014,20341,20346,20433,20710,20711,20712,20717,20724,21001,21004,21442,21994,21998,22172,22262,22390,22391,22402,22613,22614,22619,22824,22882,22883,22884,22965,22969,22974,22985,23061,23063]]]]},{"k":"H5031","v":[["*",[6,6,[[1,1,1,0,1,[[64,1,1,0,1]]],[6,1,1,1,2,[[214,1,1,1,2]]],[11,1,1,2,3,[[334,1,1,2,3]]],[13,1,1,3,4,[[400,1,1,3,4]]],[15,1,1,4,5,[[418,1,1,4,5]]],[22,1,1,5,6,[[686,1,1,5,6]]]],[1940,6603,10159,11955,12415,17810]]],["+",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6603]]],["prophetess",[5,5,[[1,1,1,0,1,[[64,1,1,0,1]]],[11,1,1,1,2,[[334,1,1,1,2]]],[13,1,1,2,3,[[400,1,1,2,3]]],[15,1,1,3,4,[[418,1,1,3,4]]],[22,1,1,4,5,[[686,1,1,4,5]]]],[1940,10159,11955,12415,17810]]]]},{"k":"H5032","v":[["*",[5,5,[[0,3,3,0,3,[[24,1,1,0,1],[27,1,1,1,2],[35,1,1,2,3]]],[12,1,1,3,4,[[338,1,1,3,4]]],[22,1,1,4,5,[[738,1,1,4,5]]]],[671,782,1043,10281,18828]]],["Nebaioth",[2,2,[[12,1,1,0,1,[[338,1,1,0,1]]],[22,1,1,1,2,[[738,1,1,1,2]]]],[10281,18828]]],["Nebajoth",[3,3,[[0,3,3,0,3,[[24,1,1,0,1],[27,1,1,1,2],[35,1,1,2,3]]]],[671,782,1043]]]]},{"k":"H5033","v":[["springs",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13809]]]]},{"k":"H5034","v":[["*",[25,21,[[1,2,1,0,1,[[67,2,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[17,1,1,3,4,[[449,1,1,3,4]]],[18,3,3,4,7,[[478,1,1,4,5],[495,1,1,5,6],[514,1,1,6,7]]],[19,1,1,7,8,[[657,1,1,7,8]]],[22,11,8,8,16,[[679,1,1,8,9],[702,2,1,9,10],[706,2,2,10,12],[712,3,1,12,13],[718,2,2,13,15],[742,1,1,15,16]]],[23,2,2,16,18,[[752,1,1,16,17],[758,1,1,17,18]]],[25,1,1,18,19,[[848,1,1,18,19]]],[32,1,1,19,20,[[899,1,1,19,20]]],[33,1,1,20,21,[[902,1,1,20,21]]]],[2017,5773,8648,13199,13942,14163,14452,17283,17684,18099,18165,18168,18307,18427,18428,18891,19166,19314,21691,22670,22718]]],["+",[2,1,[[1,2,1,0,1,[[67,2,1,0,1]]]],[2017]]],["away",[4,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]],[22,2,1,2,3,[[702,2,1,2,3]]]],[8648,14163,18099]]],["disgrace",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19314]]],["dishonoureth",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22670]]],["down",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18307]]],["esteemed",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5773]]],["fade",[3,3,[[22,1,1,0,1,[[742,1,1,0,1]]],[23,1,1,1,2,[[752,1,1,1,2]]],[25,1,1,2,3,[[848,1,1,2,3]]]],[18891,19166,21691]]],["fadeth",[3,3,[[22,3,3,0,3,[[679,1,1,0,1],[718,2,2,1,3]]]],[17684,18427,18428]]],["fading",[2,2,[[22,2,2,0,2,[[706,2,2,0,2]]]],[18165,18168]]],["falling",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18307]]],["foolishly",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17283]]],["nought",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13199]]],["off",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18307]]],["vile",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22718]]],["wither",[2,2,[[18,2,2,0,2,[[478,1,1,0,1],[514,1,1,1,2]]]],[13942,14452]]]]},{"k":"H5035","v":[["*",[38,37,[[8,4,4,0,4,[[236,1,1,0,1],[245,2,2,1,3],[260,1,1,3,4]]],[9,2,2,4,6,[[272,1,1,4,5],[282,1,1,5,6]]],[10,1,1,6,7,[[300,1,1,6,7]]],[12,7,7,7,14,[[350,1,1,7,8],[352,3,3,8,11],[353,1,1,11,12],[362,2,2,12,14]]],[13,4,4,14,18,[[371,1,1,14,15],[375,1,1,15,16],[386,1,1,16,17],[395,1,1,17,18]]],[15,1,1,18,19,[[424,1,1,18,19]]],[17,1,1,19,20,[[473,1,1,19,20]]],[18,8,8,20,28,[[510,1,1,20,21],[534,1,1,21,22],[548,1,1,22,23],[558,1,1,23,24],[569,1,1,24,25],[585,1,1,25,26],[621,1,1,26,27],[627,1,1,27,28]]],[22,4,4,28,32,[[683,1,1,28,29],[692,1,1,29,30],[700,1,1,30,31],[708,1,1,31,32]]],[23,3,2,32,34,[[757,2,1,32,33],[792,1,1,33,34]]],[24,1,1,34,35,[[800,1,1,34,35]]],[29,2,2,35,37,[[883,1,1,35,36],[884,1,1,36,37]]]],[7236,7421,7423,7879,8162,8427,9091,10768,10807,10811,10819,10825,11047,11052,11280,11375,11615,11816,12651,13830,14368,14776,14998,15219,15414,15744,16314,16397,17751,17939,18076,18231,19278,20092,20422,22446,22455]]],["+",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[548,1,1,1,2]]]],[10825,14998]]],["bottle",[5,4,[[8,2,2,0,2,[[236,1,1,0,1],[245,1,1,1,2]]],[9,1,1,2,3,[[282,1,1,2,3]]],[23,2,1,3,4,[[757,2,1,3,4]]]],[7236,7421,8427,19278]]],["bottles",[3,3,[[8,1,1,0,1,[[260,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[7879,13830,20092]]],["flagons",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18076]]],["pitchers",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20422]]],["psalteries",[13,13,[[9,1,1,0,1,[[272,1,1,0,1]]],[10,1,1,1,2,[[300,1,1,1,2]]],[12,6,6,2,8,[[350,1,1,2,3],[352,3,3,3,6],[362,2,2,6,8]]],[13,4,4,8,12,[[371,1,1,8,9],[375,1,1,9,10],[386,1,1,10,11],[395,1,1,11,12]]],[15,1,1,12,13,[[424,1,1,12,13]]]],[8162,9091,10768,10807,10811,10819,11047,11052,11280,11375,11615,11816,12651]]],["psaltery",[8,8,[[8,1,1,0,1,[[245,1,1,0,1]]],[18,7,7,1,8,[[510,1,1,1,2],[534,1,1,2,3],[558,1,1,3,4],[569,1,1,4,5],[585,1,1,5,6],[621,1,1,6,7],[627,1,1,7,8]]]],[7423,14368,14776,15219,15414,15744,16314,16397]]],["vessel",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18231]]],["viol",[2,2,[[22,1,1,0,1,[[683,1,1,0,1]]],[29,1,1,1,2,[[884,1,1,1,2]]]],[17751,22455]]],["viols",[2,2,[[22,1,1,0,1,[[692,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[17939,22446]]]]},{"k":"H5036","v":[["*",[18,18,[[4,2,2,0,2,[[184,2,2,0,2]]],[9,2,2,2,4,[[269,1,1,2,3],[279,1,1,3,4]]],[17,2,2,4,6,[[437,1,1,4,5],[465,1,1,5,6]]],[18,5,5,6,11,[[491,1,1,6,7],[516,1,1,7,8],[530,1,1,8,9],[551,2,2,9,11]]],[19,3,3,11,14,[[644,2,2,11,13],[657,1,1,13,14]]],[22,2,2,14,16,[[710,2,2,14,16]]],[23,1,1,16,17,[[761,1,1,16,17]]],[25,1,1,17,18,[[814,1,1,17,18]]]],[5764,5779,8114,8330,12901,13565,14081,14520,14720,15066,15070,16880,16894,17273,18264,18265,19368,20711]]],["fool",[7,7,[[9,1,1,0,1,[[269,1,1,0,1]]],[18,2,2,1,3,[[491,1,1,1,2],[530,1,1,2,3]]],[19,3,3,3,6,[[644,2,2,3,5],[657,1,1,5,6]]],[23,1,1,6,7,[[761,1,1,6,7]]]],[8114,14081,14720,16880,16894,17273,19368]]],["foolish",[5,5,[[4,2,2,0,2,[[184,2,2,0,2]]],[18,2,2,2,4,[[516,1,1,2,3],[551,1,1,3,4]]],[25,1,1,4,5,[[814,1,1,4,5]]]],[5764,5779,14520,15066,20711]]],["fools",[2,2,[[9,1,1,0,1,[[279,1,1,0,1]]],[17,1,1,1,2,[[465,1,1,1,2]]]],[8330,13565]]],["man",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15070]]],["person",[2,2,[[22,2,2,0,2,[[710,2,2,0,2]]]],[18264,18265]]],["women",[1,1,[[17,1,1,0,1,[[437,1,1,0,1]]]],[12901]]]]},{"k":"H5037","v":[["*",[22,18,[[8,20,16,0,16,[[260,18,14,0,14],[262,1,1,14,15],[265,1,1,15,16]]],[9,2,2,16,18,[[268,1,1,16,17],[269,1,1,17,18]]]],[7864,7865,7866,7870,7871,7875,7880,7886,7887,7895,7897,7898,7899,7900,7933,7983,8051,8084]]],["+",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7898]]],["Nabal",[17,14,[[8,16,13,0,13,[[260,15,12,0,12],[265,1,1,12,13]]],[9,1,1,13,14,[[269,1,1,13,14]]]],[7864,7865,7866,7870,7871,7880,7886,7887,7895,7897,7899,7900,7983,8084]]],["Nabal's",[4,4,[[8,3,3,0,3,[[260,2,2,0,2],[262,1,1,2,3]]],[9,1,1,3,4,[[268,1,1,3,4]]]],[7875,7897,7933,8051]]]]},{"k":"H5038","v":[["*",[48,41,[[2,19,16,0,16,[[94,3,1,0,1],[96,1,1,1,2],[100,13,12,2,14],[106,1,1,14,15],[111,1,1,15,16]]],[4,4,4,16,20,[[166,2,2,16,18],[173,1,1,18,19],[180,1,1,19,20]]],[5,1,1,20,21,[[194,1,1,20,21]]],[10,10,6,21,27,[[303,10,6,21,27]]],[11,1,1,27,28,[[321,1,1,27,28]]],[18,1,1,28,29,[[556,1,1,28,29]]],[22,2,2,29,31,[[683,1,1,29,30],[704,1,1,30,31]]],[23,8,8,31,39,[[751,1,1,31,32],[753,1,1,32,33],[760,2,2,33,35],[763,1,1,35,36],[770,1,1,36,37],[778,1,1,37,38],[780,1,1,38,39]]],[25,2,2,39,41,[[805,1,1,39,40],[845,1,1,40,41]]]],[2832,2903,3005,3008,3021,3022,3024,3025,3032,3033,3034,3035,3036,3037,3250,3377,5298,5311,5470,5637,6031,9206,9208,9209,9212,9213,9214,9793,15187,17764,18149,19152,19197,19340,19354,19414,19595,19821,19872,20543,21630]]],["+",[6,6,[[2,5,5,0,5,[[100,5,5,0,5]]],[5,1,1,5,6,[[194,1,1,5,6]]]],[3008,3022,3032,3035,3037,6031]]],["bodies",[2,2,[[18,1,1,0,1,[[556,1,1,0,1]]],[23,1,1,1,2,[[778,1,1,1,2]]]],[15187,19821]]],["body",[4,4,[[4,1,1,0,1,[[173,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]],[23,2,2,2,4,[[770,1,1,2,3],[780,1,1,3,4]]]],[5470,18149,19595,19872]]],["carcase",[24,18,[[2,11,9,0,9,[[94,3,1,0,1],[100,8,8,1,9]]],[4,2,2,9,11,[[166,1,1,9,10],[180,1,1,10,11]]],[10,10,6,11,17,[[303,10,6,11,17]]],[11,1,1,17,18,[[321,1,1,17,18]]]],[2832,3005,3021,3024,3025,3033,3034,3036,3037,5298,5637,9206,9208,9209,9212,9213,9214,9793]]],["carcases",[6,6,[[22,1,1,0,1,[[683,1,1,0,1]]],[23,5,5,1,6,[[751,1,1,1,2],[753,1,1,2,3],[760,2,2,3,5],[763,1,1,5,6]]]],[17764,19152,19197,19340,19354,19414]]],["died",[1,1,[[2,1,1,0,1,[[106,1,1,0,1]]]],[3250]]],["itself",[5,5,[[2,2,2,0,2,[[96,1,1,0,1],[111,1,1,1,2]]],[4,1,1,2,3,[[166,1,1,2,3]]],[25,2,2,3,5,[[805,1,1,3,4],[845,1,1,4,5]]]],[2903,3377,5311,20543,21630]]]]},{"k":"H5039","v":[["*",[13,13,[[0,1,1,0,1,[[33,1,1,0,1]]],[4,1,1,1,2,[[174,1,1,1,2]]],[5,1,1,2,3,[[193,1,1,2,3]]],[6,4,4,3,7,[[229,2,2,3,5],[230,2,2,5,7]]],[8,1,1,7,8,[[260,1,1,7,8]]],[9,1,1,8,9,[[279,1,1,8,9]]],[17,1,1,9,10,[[477,1,1,9,10]]],[22,2,2,10,12,[[687,1,1,10,11],[710,1,1,11,12]]],[23,1,1,12,13,[[773,1,1,12,13]]]],[987,5491,5991,7047,7048,7060,7064,7886,8329,13930,17846,18265,19658]]],["folly",[10,10,[[0,1,1,0,1,[[33,1,1,0,1]]],[4,1,1,1,2,[[174,1,1,1,2]]],[5,1,1,2,3,[[193,1,1,2,3]]],[6,3,3,3,6,[[229,1,1,3,4],[230,2,2,4,6]]],[8,1,1,6,7,[[260,1,1,6,7]]],[9,1,1,7,8,[[279,1,1,7,8]]],[17,1,1,8,9,[[477,1,1,8,9]]],[22,1,1,9,10,[[687,1,1,9,10]]]],[987,5491,5991,7047,7060,7064,7886,8329,13930,17846]]],["vile",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7048]]],["villany",[2,2,[[22,1,1,0,1,[[710,1,1,0,1]]],[23,1,1,1,2,[[773,1,1,1,2]]]],[18265,19658]]]]},{"k":"H5040","v":[["lewdness",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22115]]]]},{"k":"H5041","v":[["Neballat",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12622]]]]},{"k":"H5042","v":[["*",[11,11,[[18,6,6,0,6,[[496,1,1,0,1],[536,1,1,1,2],[555,1,1,2,3],[571,1,1,3,4],[596,1,1,4,5],[622,1,1,5,6]]],[19,4,4,6,10,[[628,1,1,6,7],[642,2,2,7,9],[645,1,1,9,10]]],[20,1,1,10,11,[[668,1,1,10,11]]]],[14170,14797,15115,15435,16069,16327,16423,16809,16835,16905,17494]]],["flowing",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16905]]],["forth",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17494]]],["out",[4,4,[[18,1,1,0,1,[[536,1,1,0,1]]],[19,3,3,1,4,[[628,1,1,1,2],[642,2,2,2,4]]]],[14797,16423,16809,16835]]],["utter",[4,4,[[18,4,4,0,4,[[555,1,1,0,1],[571,1,1,1,2],[596,1,1,2,3],[622,1,1,3,4]]]],[15115,15435,16069,16327]]],["uttereth",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14170]]]]},{"k":"H5043","v":[["candlestick",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21879]]]]},{"k":"H5044","v":[["Nibshan",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6264]]]]},{"k":"H5045","v":[["*",[112,98,[[0,7,7,0,7,[[11,1,1,0,1],[12,3,3,1,4],[19,1,1,4,5],[23,1,1,5,6],[27,1,1,6,7]]],[1,5,5,7,12,[[75,1,1,7,8],[76,1,1,8,9],[85,1,1,9,10],[87,1,1,10,11],[89,1,1,11,12]]],[3,10,8,12,20,[[129,3,3,12,15],[137,1,1,15,16],[149,1,1,16,17],[150,4,2,17,19],[151,1,1,19,20]]],[4,2,2,20,22,[[153,1,1,20,21],[186,1,1,21,22]]],[5,27,22,22,44,[[196,1,1,22,23],[197,2,2,23,25],[198,1,1,25,26],[201,10,8,26,34],[203,2,2,34,36],[204,9,6,36,42],[205,2,2,42,44]]],[6,4,4,44,48,[[211,3,3,44,47],[231,1,1,47,48]]],[8,9,6,48,54,[[249,1,1,48,49],[255,1,1,49,50],[262,3,1,50,51],[265,4,3,51,54]]],[9,1,1,54,55,[[290,1,1,54,55]]],[10,2,2,55,57,[[297,2,2,55,57]]],[12,3,3,57,60,[[346,1,1,57,58],[363,2,2,58,60]]],[13,3,3,60,63,[[370,2,2,60,62],[394,1,1,62,63]]],[18,1,1,63,64,[[603,1,1,63,64]]],[22,2,2,64,66,[[699,1,1,64,65],[708,1,1,65,66]]],[23,4,4,66,70,[[757,1,1,66,67],[761,1,1,67,68],[776,1,1,68,69],[777,1,1,69,70]]],[25,15,12,70,82,[[821,3,2,70,72],[822,1,1,72,73],[841,1,1,73,74],[847,2,1,74,75],[848,3,2,75,77],[849,5,5,77,82]]],[26,12,11,82,93,[[857,2,2,82,84],[860,10,9,84,93]]],[30,2,2,93,95,[[888,2,2,93,95]]],[37,3,3,95,98,[[917,1,1,95,96],[924,2,2,96,98]]]],[307,319,321,332,496,653,787,2253,2281,2589,2642,2731,4092,4097,4104,4341,4800,4819,4820,4850,4899,5842,6104,6109,6123,6138,6203,6204,6205,6206,6209,6210,6221,6223,6284,6285,6298,6306,6307,6308,6309,6312,6329,6355,6518,6524,6525,7121,7513,7771,7940,7979,7992,8005,8699,8959,8973,10639,11092,11094,11250,11256,11782,16119,18036,18223,19285,19383,19775,19788,20941,20942,20948,21479,21664,21680,21698,21712,21718,21719,21730,21735,21965,21970,22041,22042,22045,22047,22050,22051,22061,22065,22076,22529,22530,22969,23072,23078]]],["+",[15,13,[[0,1,1,0,1,[[12,1,1,0,1]]],[3,2,1,1,2,[[150,2,1,1,2]]],[5,6,5,2,7,[[201,4,3,2,5],[204,2,2,5,7]]],[6,1,1,7,8,[[231,1,1,7,8]]],[8,1,1,8,9,[[249,1,1,8,9]]],[25,4,4,9,13,[[821,1,1,9,10],[822,1,1,10,11],[841,1,1,11,12],[848,1,1,12,13]]]],[321,4820,6205,6209,6210,6298,6306,7121,7513,20942,20948,21479,21680]]],["Southward",[1,1,[[5,1,1,0,1,[[203,1,1,0,1]]]],[6285]]],["country",[1,1,[[5,1,1,0,1,[[197,1,1,0,1]]]],[6123]]],["side",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6355]]],["south",[80,73,[[0,5,5,0,5,[[11,1,1,0,1],[12,1,1,1,2],[19,1,1,2,3],[23,1,1,3,4],[27,1,1,4,5]]],[1,4,4,5,9,[[75,1,1,5,6],[76,1,1,6,7],[85,1,1,7,8],[87,1,1,8,9]]],[3,7,6,9,15,[[129,2,2,9,11],[137,1,1,11,12],[149,1,1,12,13],[150,2,1,13,14],[151,1,1,14,15]]],[4,2,2,15,17,[[153,1,1,15,16],[186,1,1,16,17]]],[5,11,10,17,27,[[196,1,1,17,18],[197,1,1,18,19],[198,1,1,19,20],[201,3,3,20,23],[204,4,3,23,26],[205,1,1,26,27]]],[6,3,3,27,30,[[211,3,3,27,30]]],[8,8,5,30,35,[[255,1,1,30,31],[262,3,1,31,32],[265,4,3,32,35]]],[9,1,1,35,36,[[290,1,1,35,36]]],[10,2,2,36,38,[[297,2,2,36,38]]],[12,1,1,38,39,[[346,1,1,38,39]]],[13,3,3,39,42,[[370,2,2,39,41],[394,1,1,41,42]]],[18,1,1,42,43,[[603,1,1,42,43]]],[22,2,2,43,45,[[699,1,1,43,44],[708,1,1,44,45]]],[23,4,4,45,49,[[757,1,1,45,46],[761,1,1,46,47],[776,1,1,47,48],[777,1,1,48,49]]],[25,10,9,49,58,[[821,2,2,49,51],[847,2,1,51,52],[848,1,1,52,53],[849,5,5,53,58]]],[26,11,10,58,68,[[857,1,1,58,59],[860,10,9,59,68]]],[30,2,2,68,70,[[888,2,2,68,70]]],[37,3,3,70,73,[[917,1,1,70,71],[924,2,2,71,73]]]],[307,319,496,653,787,2253,2281,2589,2642,4097,4104,4341,4800,4819,4850,4899,5842,6104,6109,6138,6204,6206,6221,6308,6309,6312,6329,6518,6524,6525,7771,7940,7979,7992,8005,8699,8959,8973,10639,11250,11256,11782,16119,18036,18223,19285,19383,19775,19788,20941,20942,21664,21698,21712,21718,21719,21730,21735,21970,22041,22042,22045,22047,22050,22051,22061,22065,22076,22529,22530,22969,23072,23078]]],["southward",[14,13,[[0,1,1,0,1,[[12,1,1,0,1]]],[1,1,1,1,2,[[89,1,1,1,2]]],[3,1,1,2,3,[[129,1,1,2,3]]],[5,7,6,3,9,[[201,3,3,3,6],[203,1,1,6,7],[204,3,2,7,9]]],[12,2,2,9,11,[[363,2,2,9,11]]],[25,1,1,11,12,[[848,1,1,11,12]]],[26,1,1,12,13,[[857,1,1,12,13]]]],[332,2731,4092,6203,6204,6223,6284,6306,6307,11092,11094,21698,21965]]]]},{"k":"H5046","v":[["*",[369,343,[[0,36,34,0,34,[[2,1,1,0,1],[8,1,1,1,2],[11,1,1,2,3],[13,1,1,3,4],[20,1,1,4,5],[21,1,1,5,6],[23,4,3,6,9],[25,1,1,9,10],[26,1,1,10,11],[28,3,2,11,13],[30,3,3,13,16],[31,2,2,16,18],[36,2,2,18,20],[37,2,2,20,22],[40,2,2,22,24],[41,1,1,24,25],[42,2,2,25,27],[43,1,1,27,28],[44,2,2,28,30],[45,1,1,30,31],[46,1,1,31,32],[47,1,1,32,33],[48,1,1,33,34]]],[1,6,6,34,40,[[53,1,1,34,35],[62,1,1,35,36],[63,1,1,36,37],[65,1,1,37,38],[68,2,2,38,40]]],[2,2,2,40,42,[[94,1,1,40,41],[103,1,1,41,42]]],[3,2,2,42,44,[[127,1,1,42,43],[139,1,1,43,44]]],[4,9,9,44,53,[[156,1,1,44,45],[157,1,1,45,46],[169,4,4,46,50],[178,1,1,50,51],[182,1,1,51,52],[184,1,1,52,53]]],[5,6,5,53,58,[[188,2,2,53,55],[193,1,1,55,56],[195,2,1,56,57],[196,1,1,57,58]]],[6,28,23,58,81,[[214,1,1,58,59],[219,4,4,59,63],[223,2,2,63,65],[224,14,10,65,75],[226,7,6,75,81]]],[7,6,5,81,86,[[233,3,2,81,83],[234,2,2,83,85],[235,1,1,85,86]]],[8,52,48,86,134,[[238,3,3,86,89],[239,2,2,89,91],[243,1,1,91,92],[244,4,4,92,96],[245,4,2,96,98],[246,1,1,98,99],[249,4,3,99,102],[250,2,2,102,104],[252,1,1,104,105],[253,3,3,105,108],[254,7,7,108,115],[255,2,2,115,117],[257,3,2,117,119],[258,5,5,119,124],[259,2,2,124,126],[260,6,6,126,132],[262,2,2,132,134]]],[9,37,36,134,170,[[267,5,5,134,139],[268,1,1,139,140],[269,1,1,140,141],[270,1,1,141,142],[272,1,1,142,143],[273,1,1,143,144],[276,2,2,144,146],[277,4,4,146,150],[278,1,1,150,151],[279,1,1,151,152],[280,1,1,152,153],[281,4,4,153,157],[283,5,4,157,161],[284,4,4,161,165],[285,3,3,165,168],[287,1,1,168,169],[290,1,1,169,170]]],[10,15,14,170,184,[[291,3,3,170,173],[292,3,3,173,176],[300,3,2,176,178],[304,1,1,178,179],[308,3,3,179,182],[309,1,1,182,183],[310,1,1,183,184]]],[11,22,22,184,206,[[316,4,4,184,188],[317,1,1,188,189],[318,3,3,189,192],[319,5,5,192,197],[320,1,1,197,198],[321,5,5,198,203],[322,1,1,203,204],[330,1,1,204,205],[334,1,1,205,206]]],[12,3,3,206,209,[[354,1,1,206,207],[356,2,2,207,209]]],[13,5,4,209,213,[[375,3,2,209,211],[386,1,1,211,212],[400,1,1,212,213]]],[14,1,1,213,214,[[404,1,1,213,214]]],[15,4,4,214,218,[[414,3,3,214,217],[419,1,1,217,218]]],[16,14,12,218,230,[[427,4,3,218,221],[428,3,2,221,223],[429,5,5,223,228],[431,1,1,228,229],[433,1,1,229,230]]],[17,17,17,230,247,[[436,4,4,230,234],[446,1,1,234,235],[447,1,1,235,236],[450,1,1,236,237],[452,1,1,237,238],[456,1,1,238,239],[461,1,1,239,240],[466,1,1,240,241],[468,1,1,241,242],[471,2,2,242,244],[473,2,2,244,246],[477,1,1,246,247]]],[18,19,19,247,266,[[486,1,1,247,248],[496,1,1,248,249],[499,1,1,249,250],[507,1,1,250,251],[515,1,1,251,252],[517,1,1,252,253],[527,1,1,253,254],[528,1,1,254,255],[541,1,1,255,256],[548,2,2,256,258],[552,1,1,258,259],[569,2,2,259,261],[574,1,1,261,262],[588,1,1,262,263],[619,1,1,263,264],[622,1,1,264,265],[624,1,1,265,266]]],[19,2,2,266,268,[[639,1,1,266,267],[656,1,1,267,268]]],[20,4,4,268,272,[[664,1,1,268,269],[666,1,1,269,270],[668,2,2,270,272]]],[21,2,2,272,274,[[671,1,1,272,273],[675,1,1,273,274]]],[22,32,28,274,302,[[681,1,1,274,275],[685,1,1,275,276],[697,1,1,276,277],[699,3,3,277,280],[714,1,1,280,281],[718,1,1,281,282],[719,5,3,282,285],[720,2,2,285,287],[721,2,2,287,289],[722,3,2,289,291],[723,3,2,291,293],[724,1,1,293,294],[726,5,5,294,299],[735,1,1,299,300],[736,1,1,300,301],[744,1,1,301,302]]],[23,28,24,302,326,[[748,2,2,302,304],[749,1,1,304,305],[753,1,1,305,306],[760,1,1,306,307],[764,2,1,307,308],[775,1,1,308,309],[777,1,1,309,310],[780,5,4,310,314],[782,3,3,314,317],[786,4,4,317,321],[790,1,1,321,322],[792,1,1,322,323],[794,2,2,323,325],[795,3,1,325,326]]],[25,5,5,326,331,[[824,1,1,326,327],[825,1,1,327,328],[838,1,1,328,329],[841,1,1,329,330],[844,1,1,330,331]]],[26,4,4,331,335,[[851,1,1,331,332],[858,1,1,332,333],[859,1,1,333,334],[860,1,1,334,335]]],[27,1,1,335,336,[[865,1,1,335,336]]],[29,1,1,336,337,[[882,1,1,336,337]]],[31,2,2,337,339,[[889,2,2,337,339]]],[32,3,3,339,342,[[893,1,1,339,340],[895,1,1,340,341],[898,1,1,341,342]]],[37,1,1,342,343,[[919,1,1,342,343]]]],[66,227,316,349,539,567,614,619,640,724,769,807,810,893,895,900,933,957,1088,1099,1132,1143,1219,1220,1281,1296,1297,1348,1371,1384,1417,1421,1453,1474,1629,1875,1894,1969,2029,2035,2831,3146,4051,4419,5017,5058,5368,5373,5374,5375,5569,5726,5765,5883,5889,5995,6061,6081,6611,6761,6779,6796,6801,6890,6894,6911,6915,6918,6921,6922,6923,6924,6925,6926,6928,6955,6959,6962,6964,6966,6967,7160,7168,7176,7188,7194,7289,7291,7294,7310,7311,7378,7397,7399,7409,7410,7433,7434,7454,7509,7541,7551,7572,7576,7649,7696,7700,7702,7708,7709,7713,7717,7724,7725,7727,7739,7740,7808,7809,7811,7817,7821,7823,7835,7840,7857,7869,7873,7875,7880,7897,7898,7934,7941,8026,8027,8028,8035,8042,8053,8104,8130,8169,8191,8245,8257,8264,8269,8277,8281,8304,8321,8389,8402,8417,8420,8424,8465,8466,8467,8470,8488,8489,8499,8503,8512,8517,8519,8591,8705,8737,8740,8768,8799,8809,8811,9082,9086,9221,9353,9354,9357,9388,9425,9605,9610,9630,9634,9651,9685,9686,9687,9716,9717,9718,9719,9722,9734,9768,9771,9774,9776,9792,9801,10061,10155,10873,10912,10924,11366,11370,11589,11951,12086,12319,12323,12325,12481,12734,12744,12746,12751,12753,12766,12769,12770,12771,12774,12795,12818,12884,12885,12886,12888,13114,13135,13221,13265,13386,13471,13625,13673,13745,13769,13797,13811,13925,14032,14169,14235,14328,14508,14530,14674,14706,14859,14993,14994,15080,15413,15426,15484,15799,16288,16324,16370,16736,17248,17429,17465,17507,17513,17544,17606,17716,17784,18016,18037,18041,18045,18352,18441,18473,18474,18477,18489,18492,18514,18517,18540,18541,18580,18582,18596,18617,18619,18620,18628,18634,18777,18787,18941,19032,19042,19078,19187,19346,19432,19701,19778,19855,19858,19859,19862,19910,19920,19922,19978,19979,19995,19996,20059,20100,20168,20194,20243,21043,21075,21415,21481,21582,21760,22011,22036,22038,22145,22423,22539,22541,22589,22616,22656,23011]]],["+",[19,14,[[1,1,1,0,1,[[68,1,1,0,1]]],[5,3,2,1,3,[[188,1,1,1,2],[195,2,1,2,3]]],[6,2,1,3,4,[[224,2,1,3,4]]],[8,5,3,4,7,[[238,1,1,4,5],[245,2,1,5,6],[257,2,1,6,7]]],[16,1,1,7,8,[[427,1,1,7,8]]],[22,2,2,8,10,[[726,1,1,8,9],[744,1,1,9,10]]],[23,3,2,10,12,[[780,3,2,10,12]]],[25,2,2,12,14,[[841,1,1,12,13],[844,1,1,13,14]]]],[2035,5889,6061,6921,7291,7434,7809,12734,18628,18941,19858,19862,21481,21582]]],["Declare",[6,6,[[23,5,5,0,5,[[748,1,1,0,1],[749,1,1,1,2],[782,1,1,2,3],[790,1,1,3,4],[794,1,1,4,5]]],[32,1,1,5,6,[[893,1,1,5,6]]]],[19032,19078,19920,20059,20168,22589]]],["Declaring",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18596]]],["Report",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19432]]],["Shew",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18474]]],["Tell",[10,10,[[0,1,1,0,1,[[31,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[8,3,3,2,5,[[244,1,1,2,3],[245,1,1,3,4],[249,1,1,4,5]]],[9,1,1,5,6,[[267,1,1,5,6]]],[21,1,1,6,7,[[671,1,1,6,7]]],[22,1,1,7,8,[[723,1,1,7,8]]],[23,1,1,8,9,[[780,1,1,8,9]]],[31,1,1,9,10,[[889,1,1,9,10]]]],[957,6955,7409,7433,7551,8042,17544,18582,19859,22539]]],["another",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20243]]],["bewrayeth",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17248]]],["certify",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8417]]],["declare",[37,37,[[0,1,1,0,1,[[40,1,1,0,1]]],[6,2,2,1,3,[[224,2,2,1,3]]],[16,1,1,3,4,[[429,1,1,3,4]]],[17,4,4,4,8,[[456,1,1,4,5],[466,1,1,5,6],[473,2,2,6,8]]],[18,10,10,8,18,[[486,1,1,8,9],[499,1,1,9,10],[507,1,1,10,11],[515,1,1,11,12],[517,1,1,12,13],[527,1,1,13,14],[541,1,1,14,15],[552,1,1,15,16],[574,1,1,16,17],[622,1,1,17,18]]],[22,10,10,18,28,[[681,1,1,18,19],[699,1,1,19,20],[720,2,2,20,22],[721,1,1,22,23],[722,1,1,23,24],[723,1,1,24,25],[726,2,2,25,27],[735,1,1,27,28]]],[23,6,6,28,34,[[753,1,1,28,29],[775,1,1,29,30],[782,1,1,30,31],[786,2,2,31,33],[794,1,1,33,34]]],[25,1,1,34,35,[[824,1,1,34,35]]],[32,1,1,35,36,[[895,1,1,35,36]]],[37,1,1,36,37,[[919,1,1,36,37]]]],[1219,6922,6924,12770,13386,13625,13797,13811,14032,14235,14328,14508,14530,14674,14859,15080,15484,16324,17716,18041,18489,18492,18514,18540,18580,18620,18634,18777,19187,19701,19910,19979,19995,20194,21043,22616,23011]]],["declared",[12,12,[[4,1,1,0,1,[[156,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]],[18,1,1,2,3,[[548,1,1,2,3]]],[22,7,7,3,10,[[699,2,2,3,5],[719,1,1,5,6],[721,1,1,6,7],[722,1,1,7,8],[726,2,2,8,10]]],[23,2,2,10,12,[[780,1,1,10,11],[786,1,1,11,12]]]],[5017,8517,14993,18037,18045,18477,18517,18541,18617,18619,19855,19996]]],["declareth",[3,3,[[23,1,1,0,1,[[748,1,1,0,1]]],[27,1,1,1,2,[[865,1,1,1,2]]],[29,1,1,2,3,[[882,1,1,2,3]]]],[19042,22145,22423]]],["denounce",[1,1,[[4,1,1,0,1,[[182,1,1,0,1]]]],[5726]]],["expound",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6923]]],["expounded",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6928]]],["forth",[3,3,[[18,2,2,0,2,[[528,1,1,0,1],[569,1,1,1,2]]],[19,1,1,2,3,[[639,1,1,2,3]]]],[14706,15413,16736]]],["fully",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7160]]],["messenger",[2,2,[[9,1,1,0,1,[[281,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[8402,20243]]],["profess",[1,1,[[4,1,1,0,1,[[178,1,1,0,1]]]],[5569]]],["rehearsed",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7649]]],["report",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19432]]],["shew",[31,30,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[62,1,1,1,2]]],[4,5,5,2,7,[[157,1,1,2,3],[169,3,3,3,6],[184,1,1,6,7]]],[8,3,3,7,10,[[243,1,1,7,8],[244,1,1,8,9],[260,1,1,9,10]]],[11,2,2,10,12,[[318,1,1,10,11],[319,1,1,11,12]]],[14,1,1,12,13,[[404,1,1,12,13]]],[15,1,1,13,14,[[419,1,1,13,14]]],[16,1,1,14,15,[[427,1,1,14,15]]],[17,2,2,15,17,[[446,1,1,15,16],[468,1,1,16,17]]],[18,1,1,17,18,[[569,1,1,17,18]]],[22,4,3,18,21,[[719,2,1,18,19],[722,1,1,19,20],[736,1,1,20,21]]],[23,4,4,21,25,[[760,1,1,21,22],[777,1,1,22,23],[786,1,1,23,24],[795,1,1,24,25]]],[25,1,1,25,26,[[838,1,1,25,26]]],[26,4,4,26,30,[[851,1,1,26,27],[858,1,1,27,28],[859,1,1,28,29],[860,1,1,29,30]]]],[1417,1875,5058,5373,5374,5375,5765,7378,7397,7869,9685,9719,12086,12481,12734,13114,13673,15426,18473,18540,18787,19346,19778,19978,20243,21415,21760,22011,22036,22038]]],["shewed",[18,18,[[0,1,1,0,1,[[40,1,1,0,1]]],[6,3,3,1,4,[[214,1,1,1,2],[223,1,1,2,3],[226,1,1,3,4]]],[7,2,2,4,6,[[233,2,2,4,6]]],[8,4,4,6,10,[[246,1,1,6,7],[254,1,1,7,8],[257,1,1,8,9],[259,1,1,9,10]]],[9,1,1,10,11,[[277,1,1,10,11]]],[11,1,1,11,12,[[334,1,1,11,12]]],[16,2,2,12,14,[[427,1,1,12,13],[428,1,1,13,14]]],[18,3,3,14,17,[[548,1,1,14,15],[588,1,1,15,16],[619,1,1,16,17]]],[32,1,1,17,18,[[898,1,1,17,18]]]],[1220,6611,6894,6967,7160,7168,7454,7713,7808,7857,8281,10155,12744,12753,14994,15799,16288,22656]]],["sheweth",[5,5,[[17,2,2,0,2,[[471,2,2,0,2]]],[18,2,2,2,4,[[496,1,1,2,3],[624,1,1,3,4]]],[22,1,1,4,5,[[719,1,1,4,5]]]],[13745,13769,14169,16370,18477]]],["speaketh",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13265]]],["tell",[56,55,[[0,12,11,0,11,[[11,1,1,0,1],[20,1,1,1,2],[23,3,2,2,4],[28,1,1,4,5],[30,1,1,5,6],[31,1,1,6,7],[36,1,1,7,8],[42,1,1,8,9],[44,1,1,9,10],[48,1,1,10,11]]],[1,1,1,11,12,[[68,1,1,11,12]]],[2,1,1,12,13,[[103,1,1,12,13]]],[3,1,1,13,14,[[139,1,1,13,14]]],[5,1,1,14,15,[[193,1,1,14,15]]],[6,3,3,15,18,[[224,1,1,15,16],[226,2,2,16,18]]],[7,2,2,18,20,[[234,1,1,18,19],[235,1,1,19,20]]],[8,8,8,20,28,[[244,2,2,20,22],[250,1,1,22,23],[254,1,1,23,24],[255,2,2,24,26],[258,1,1,26,27],[262,1,1,27,28]]],[9,6,6,28,34,[[267,1,1,28,29],[278,1,1,29,30],[279,1,1,30,31],[281,1,1,31,32],[283,1,1,32,33],[284,1,1,33,34]]],[10,3,3,34,37,[[291,1,1,34,35],[304,1,1,35,36],[308,1,1,36,37]]],[11,4,4,37,41,[[316,1,1,37,38],[319,1,1,38,39],[321,2,2,39,41]]],[12,1,1,41,42,[[354,1,1,41,42]]],[17,5,5,42,47,[[436,4,4,42,46],[447,1,1,46,47]]],[20,4,4,47,51,[[664,1,1,47,48],[666,1,1,48,49],[668,2,2,49,51]]],[21,1,1,51,52,[[675,1,1,51,52]]],[22,1,1,52,53,[[697,1,1,52,53]]],[23,1,1,53,54,[[792,1,1,53,54]]],[25,1,1,54,55,[[825,1,1,54,55]]]],[316,539,614,640,810,900,933,1099,1296,1371,1474,2029,3146,4419,5995,6925,6959,6962,7176,7194,7399,7410,7576,7709,7739,7740,7821,7941,8026,8304,8321,8424,8465,8499,8737,9221,9353,9605,9716,9768,9771,10873,12884,12885,12886,12888,13135,17429,17465,17507,17513,17606,18016,20100,21075]]],["telleth",[2,2,[[9,1,1,0,1,[[273,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]]],[8191,9686]]],["told",[147,140,[[0,20,19,0,19,[[2,1,1,0,1],[8,1,1,1,2],[13,1,1,2,3],[21,1,1,3,4],[23,1,1,4,5],[25,1,1,5,6],[26,1,1,6,7],[28,2,1,7,8],[30,2,2,8,10],[36,1,1,10,11],[37,2,2,11,13],[41,1,1,13,14],[42,1,1,14,15],[43,1,1,15,16],[44,1,1,16,17],[46,1,1,17,18],[47,1,1,18,19]]],[1,3,3,19,22,[[53,1,1,19,20],[63,1,1,20,21],[65,1,1,21,22]]],[3,1,1,22,23,[[127,1,1,22,23]]],[4,1,1,23,24,[[169,1,1,23,24]]],[5,1,1,24,25,[[196,1,1,24,25]]],[6,15,13,25,38,[[219,4,4,25,29],[223,1,1,29,30],[224,7,5,30,35],[226,3,3,35,38]]],[7,1,1,38,39,[[234,1,1,38,39]]],[8,28,28,39,67,[[238,2,2,39,41],[239,2,2,41,43],[245,1,1,43,44],[249,3,3,44,47],[250,1,1,47,48],[253,3,3,48,51],[254,5,5,51,56],[258,4,4,56,60],[259,1,1,60,61],[260,5,5,61,66],[262,1,1,66,67]]],[9,25,24,67,91,[[267,3,3,67,70],[268,1,1,70,71],[269,1,1,71,72],[270,1,1,72,73],[272,1,1,73,74],[276,2,2,74,76],[277,3,3,76,79],[280,1,1,79,80],[281,1,1,80,81],[283,4,3,81,84],[284,3,3,84,87],[285,2,2,87,89],[287,1,1,89,90],[290,1,1,90,91]]],[10,12,11,91,102,[[291,2,2,91,93],[292,3,3,93,96],[300,3,2,96,98],[308,2,2,98,100],[309,1,1,100,101],[310,1,1,101,102]]],[11,14,14,102,116,[[316,3,3,102,105],[317,1,1,105,106],[318,1,1,106,107],[319,3,3,107,110],[320,1,1,110,111],[321,3,3,111,114],[322,1,1,114,115],[330,1,1,115,116]]],[12,2,2,116,118,[[356,2,2,116,118]]],[13,5,4,118,122,[[375,3,2,118,120],[386,1,1,120,121],[400,1,1,121,122]]],[15,3,3,122,125,[[414,3,3,122,125]]],[16,9,8,125,133,[[427,1,1,125,126],[428,2,1,126,127],[429,4,4,127,131],[431,1,1,131,132],[433,1,1,132,133]]],[17,1,1,133,134,[[450,1,1,133,134]]],[22,4,4,134,138,[[685,1,1,134,135],[714,1,1,135,136],[718,1,1,136,137],[723,1,1,137,138]]],[23,1,1,138,139,[[782,1,1,138,139]]],[31,1,1,139,140,[[889,1,1,139,140]]]],[66,227,349,567,619,724,769,807,893,895,1088,1132,1143,1281,1297,1348,1384,1421,1453,1629,1894,1969,4051,5368,6081,6761,6779,6796,6801,6890,6911,6915,6918,6925,6926,6964,6966,6967,7188,7289,7294,7310,7311,7434,7509,7541,7551,7572,7696,7700,7702,7708,7717,7724,7725,7727,7811,7817,7823,7835,7840,7873,7875,7880,7897,7898,7934,8027,8028,8035,8053,8104,8130,8169,8245,8257,8264,8269,8277,8389,8420,8466,8467,8470,8488,8489,8503,8512,8519,8591,8705,8740,8768,8799,8809,8811,9082,9086,9354,9357,9388,9425,9610,9630,9634,9651,9687,9717,9718,9722,9734,9774,9776,9792,9801,10061,10912,10924,11366,11370,11589,11951,12319,12323,12325,12746,12751,12766,12769,12771,12774,12795,12818,13221,17784,18352,18441,18582,19922,22541]]],["utter",[2,2,[[2,1,1,0,1,[[94,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]]],[2831,5883]]],["uttered",[2,2,[[17,2,2,0,2,[[461,1,1,0,1],[477,1,1,1,2]]]],[13471,13925]]]]},{"k":"H5047","v":[["issued",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21943]]]]},{"k":"H5048","v":[["*",[151,143,[[0,8,7,0,7,[[1,2,2,0,2],[20,2,1,2,3],[30,2,2,3,5],[32,1,1,5,6],[46,1,1,6,7]]],[1,3,3,7,10,[[59,1,1,7,8],[68,1,1,8,9],[83,1,1,9,10]]],[3,3,3,10,13,[[118,1,1,10,11],[138,1,1,11,12],[141,1,1,12,13]]],[4,3,3,13,16,[[180,1,1,13,14],[183,1,1,14,15],[184,1,1,15,16]]],[5,7,7,16,23,[[189,1,1,16,17],[191,1,1,17,18],[192,2,2,18,20],[194,3,3,20,23]]],[6,2,2,23,25,[[219,1,1,23,24],[230,1,1,24,25]]],[7,2,1,25,26,[[235,2,1,25,26]]],[8,6,4,26,30,[[247,2,1,26,27],[250,2,1,27,28],[251,1,1,28,29],[261,1,1,29,30]]],[9,6,5,30,35,[[278,2,1,30,31],[284,1,1,31,32],[288,3,3,32,35]]],[10,5,4,35,39,[[298,1,1,35,36],[310,1,1,36,37],[311,3,2,37,39]]],[11,5,5,39,44,[[313,1,1,39,40],[314,2,2,40,42],[315,1,1,42,43],[316,1,1,43,44]]],[12,3,3,44,47,[[342,1,1,44,45],[345,1,1,45,46],[346,1,1,46,47]]],[13,4,4,47,51,[[372,2,2,47,49],[373,1,1,49,50],[374,1,1,50,51]]],[15,19,19,51,70,[[415,11,11,51,62],[416,1,1,62,63],[419,1,1,63,64],[420,1,1,64,65],[423,1,1,65,66],[424,3,3,66,69],[425,1,1,69,70]]],[17,3,3,70,73,[[439,1,1,70,71],[445,1,1,71,72],[461,1,1,72,73]]],[18,36,36,73,109,[[482,1,1,73,74],[487,1,1,74,75],[493,1,1,75,76],[495,3,3,76,79],[499,1,1,79,80],[500,1,1,80,81],[503,1,1,81,82],[508,2,2,82,84],[513,1,1,84,85],[515,3,3,85,88],[516,2,2,88,90],[521,1,1,90,91],[527,1,1,91,92],[528,1,1,92,93],[529,1,1,93,94],[531,1,1,94,95],[546,1,1,95,96],[555,1,1,96,97],[563,1,1,97,98],[565,1,1,98,99],[566,1,1,99,100],[567,1,1,100,101],[578,2,2,101,103],[586,1,1,103,104],[593,2,2,104,106],[596,2,2,106,108],[615,1,1,108,109]]],[19,4,4,109,113,[[631,1,1,109,110],[641,1,1,110,111],[642,1,1,111,112],[648,1,1,112,113]]],[20,2,2,113,115,[[662,1,1,113,114],[664,1,1,114,115]]],[21,1,1,115,116,[[676,1,1,115,116]]],[22,9,9,116,125,[[679,2,2,116,118],[683,1,1,118,119],[702,1,1,119,120],[718,1,1,120,121],[725,1,1,121,122],[727,1,1,122,123],[737,1,1,123,124],[739,1,1,124,125]]],[23,2,2,125,127,[[760,1,1,125,126],[775,1,1,126,127]]],[24,1,1,127,128,[[799,1,1,127,128]]],[25,7,5,128,133,[[841,2,2,128,130],[842,1,1,130,131],[843,4,2,131,133]]],[26,3,3,133,136,[[857,1,1,133,134],[859,2,2,134,136]]],[27,1,1,136,137,[[868,1,1,136,137]]],[28,1,1,137,138,[[876,1,1,137,138]]],[29,2,2,138,140,[[882,1,1,138,139],[887,1,1,139,140]]],[30,1,1,140,141,[[888,1,1,140,141]]],[31,1,1,141,142,[[890,1,1,141,142]]],[34,1,1,142,143,[[903,1,1,142,143]]]],[48,50,529,905,910,972,1435,1787,2028,2506,3660,4407,4475,5677,5739,5810,5909,5947,5954,5969,6013,6035,6037,6771,7088,7194,7463,7590,7601,7925,8298,8491,8615,8625,8627,9007,9435,9461,9464,9546,9558,9566,9598,9628,10439,10607,10653,11294,11295,11330,11360,12337,12343,12346,12350,12352,12353,12354,12355,12356,12357,12358,12364,12423,12496,12610,12633,12648,12661,12692,12946,13103,13473,13978,14046,14100,14130,14140,14142,14229,14240,14276,14350,14353,14439,14499,14501,14507,14513,14517,14586,14676,14694,14719,14728,14954,15125,15298,15309,15362,15386,15516,15520,15770,15862,15866,15944,16066,16232,16515,16779,16818,17014,17393,17425,17619,17661,17670,17760,18118,18437,18613,18652,18812,18854,19353,19730,20389,21490,21500,21542,21553,21555,21976,22028,22031,22180,22307,22413,22498,22521,22552,22734]]],["+",[29,28,[[0,2,1,0,1,[[20,2,1,0,1]]],[1,1,1,1,2,[[59,1,1,1,2]]],[3,1,1,2,3,[[118,1,1,2,3]]],[4,2,2,3,5,[[180,1,1,3,4],[184,1,1,4,5]]],[6,2,2,5,7,[[219,1,1,5,6],[230,1,1,6,7]]],[8,1,1,7,8,[[261,1,1,7,8]]],[9,1,1,8,9,[[284,1,1,8,9]]],[11,4,4,9,13,[[314,2,2,9,11],[315,1,1,11,12],[316,1,1,12,13]]],[15,3,3,13,16,[[415,3,3,13,16]]],[18,3,3,16,19,[[487,1,1,16,17],[508,1,1,17,18],[515,1,1,18,19]]],[19,1,1,19,20,[[641,1,1,19,20]]],[20,1,1,20,21,[[662,1,1,20,21]]],[21,1,1,21,22,[[676,1,1,21,22]]],[22,1,1,22,23,[[679,1,1,22,23]]],[23,1,1,23,24,[[760,1,1,23,24]]],[26,1,1,24,25,[[859,1,1,24,25]]],[29,1,1,25,26,[[887,1,1,25,26]]],[30,1,1,26,27,[[888,1,1,26,27]]],[31,1,1,27,28,[[890,1,1,27,28]]]],[529,1787,3660,5677,5810,6771,7088,7925,8491,9558,9566,9598,9628,12346,12352,12354,14046,14353,14501,16779,17393,17619,17670,19353,22028,22498,22521,22552]]],["about",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12692]]],["against",[27,26,[[3,1,1,0,1,[[141,1,1,0,1]]],[5,2,2,1,3,[[189,1,1,1,2],[191,1,1,2,3]]],[12,3,3,3,6,[[342,1,1,3,4],[345,1,1,4,5],[346,1,1,5,6]]],[15,12,12,6,18,[[415,8,8,6,14],[419,1,1,14,15],[424,3,3,15,18]]],[17,1,1,18,19,[[445,1,1,18,19]]],[19,1,1,19,20,[[648,1,1,19,20]]],[23,1,1,20,21,[[775,1,1,20,21]]],[25,6,5,21,26,[[841,2,2,21,23],[842,1,1,23,24],[843,3,2,24,26]]]],[4475,5909,5947,10439,10607,10653,12337,12343,12350,12353,12355,12356,12357,12358,12423,12633,12648,12661,13103,17014,19730,21490,21500,21542,21553,21555]]],["before",[77,73,[[0,3,3,0,3,[[30,2,2,0,2],[32,1,1,2,3]]],[1,2,2,3,5,[[68,1,1,3,4],[83,1,1,4,5]]],[3,1,1,5,6,[[138,1,1,5,6]]],[4,1,1,6,7,[[183,1,1,6,7]]],[5,5,5,7,12,[[192,2,2,7,9],[194,3,3,9,12]]],[7,2,1,12,13,[[235,2,1,12,13]]],[8,5,3,13,16,[[247,2,1,13,14],[250,2,1,14,15],[251,1,1,15,16]]],[9,4,3,16,19,[[278,2,1,16,17],[288,2,2,17,19]]],[10,3,3,19,22,[[310,1,1,19,20],[311,2,2,20,22]]],[11,1,1,22,23,[[313,1,1,22,23]]],[13,3,3,23,26,[[372,1,1,23,24],[373,1,1,24,25],[374,1,1,25,26]]],[15,2,2,26,28,[[416,1,1,26,27],[420,1,1,27,28]]],[17,2,2,28,30,[[439,1,1,28,29],[461,1,1,29,30]]],[18,26,26,30,56,[[493,1,1,30,31],[495,2,2,31,33],[499,1,1,33,34],[503,1,1,34,35],[508,1,1,35,36],[513,1,1,36,37],[515,2,2,37,39],[516,2,2,39,41],[521,1,1,41,42],[527,1,1,42,43],[528,1,1,43,44],[529,1,1,44,45],[531,1,1,45,46],[546,1,1,46,47],[563,1,1,47,48],[565,1,1,48,49],[566,1,1,49,50],[567,1,1,50,51],[578,1,1,51,52],[586,1,1,52,53],[596,2,2,53,55],[615,1,1,55,56]]],[19,2,2,56,58,[[631,1,1,56,57],[642,1,1,57,58]]],[20,1,1,58,59,[[664,1,1,58,59]]],[22,6,6,59,65,[[702,1,1,59,60],[718,1,1,60,61],[725,1,1,61,62],[727,1,1,62,63],[737,1,1,63,64],[739,1,1,64,65]]],[24,1,1,65,66,[[799,1,1,65,66]]],[25,1,1,66,67,[[843,1,1,66,67]]],[26,2,2,67,69,[[857,1,1,67,68],[859,1,1,68,69]]],[27,1,1,69,70,[[868,1,1,69,70]]],[28,1,1,70,71,[[876,1,1,70,71]]],[29,1,1,71,72,[[882,1,1,71,72]]],[34,1,1,72,73,[[903,1,1,72,73]]]],[905,910,972,2028,2506,4407,5739,5954,5969,6013,6035,6037,7194,7463,7590,7601,8298,8615,8625,9435,9461,9464,9546,11295,11330,11360,12364,12496,12946,13473,14100,14130,14140,14229,14276,14350,14439,14499,14507,14513,14517,14586,14676,14694,14719,14728,14954,15298,15309,15362,15386,15516,15770,15944,16066,16232,16515,16818,17425,18118,18437,18613,18652,18812,18854,20389,21553,21976,22031,22180,22307,22413,22734]]],["him",[2,2,[[0,2,2,0,2,[[1,2,2,0,2]]]],[48,50]]],["in",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,3,3,1,4,[[482,1,1,1,2],[495,1,1,2,3],[578,1,1,3,4]]],[22,1,1,4,5,[[683,1,1,4,5]]]],[8627,13978,14142,15520,17760]]],["of",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11294]]],["over",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12610]]],["presence",[7,7,[[0,1,1,0,1,[[46,1,1,0,1]]],[10,2,2,1,3,[[298,1,1,1,2],[311,1,1,2,3]]],[18,3,3,3,6,[[500,1,1,3,4],[593,2,2,4,6]]],[22,1,1,6,7,[[679,1,1,6,7]]]],[1435,9007,9464,14240,15862,15866,17661]]],["sight",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15125]]]]},{"k":"H5049","v":[["toward",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21915]]]]},{"k":"H5050","v":[["*",[6,6,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,2,2,1,3,[[453,1,1,1,2],[457,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]],[22,2,2,4,6,[[687,1,1,4,5],[691,1,1,5,6]]]],[8631,13281,13417,14146,17831,17916]]],["enlighten",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14146]]],["lighten",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8631]]],["shine",[3,3,[[17,2,2,0,2,[[453,1,1,0,1],[457,1,1,1,2]]],[22,1,1,2,3,[[691,1,1,2,3]]]],[13281,13417,17916]]],["shined",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17831]]]]},{"k":"H5051","v":[["*",[19,19,[[9,2,2,0,2,[[288,1,1,0,1],[289,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]],[19,1,1,3,4,[[631,1,1,3,4]]],[22,5,5,4,9,[[682,1,1,4,5],[728,1,1,5,6],[738,2,2,6,8],[740,1,1,8,9]]],[25,5,5,9,14,[[802,4,4,9,13],[811,1,1,13,14]]],[28,2,2,14,16,[[877,1,1,14,15],[878,1,1,15,16]]],[29,1,1,16,17,[[883,1,1,16,17]]],[34,2,2,17,19,[[905,2,2,17,19]]]],[8615,8657,14130,16508,17738,18672,18824,18840,18855,20468,20477,20491,20492,20637,22321,22358,22443,22772,22779]]],["+",[3,3,[[9,2,2,0,2,[[288,1,1,0,1],[289,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]]],[8615,8657,14130]]],["bright",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20477]]],["brightness",[9,9,[[22,3,3,0,3,[[738,2,2,0,2],[740,1,1,2,3]]],[25,4,4,3,7,[[802,3,3,3,6],[811,1,1,6,7]]],[29,1,1,7,8,[[883,1,1,7,8]]],[34,1,1,8,9,[[905,1,1,8,9]]]],[18824,18840,18855,20468,20491,20492,20637,22443,22772]]],["light",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18672]]],["shining",[5,5,[[19,1,1,0,1,[[631,1,1,0,1]]],[22,1,1,1,2,[[682,1,1,1,2]]],[28,2,2,2,4,[[877,1,1,2,3],[878,1,1,3,4]]],[34,1,1,4,5,[[905,1,1,4,5]]]],[16508,17738,22321,22358,22779]]]]},{"k":"H5052","v":[["Nogah",[2,2,[[12,2,2,0,2,[[340,1,1,0,1],[351,1,1,1,2]]]],[10368,10780]]]]},{"k":"H5053","v":[["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21924]]]]},{"k":"H5054","v":[["brightness",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18809]]]]},{"k":"H5055","v":[["*",[11,10,[[1,4,3,0,3,[[70,4,3,0,3]]],[4,1,1,3,4,[[185,1,1,3,4]]],[10,1,1,4,5,[[312,1,1,4,5]]],[13,1,1,5,6,[[384,1,1,5,6]]],[18,1,1,6,7,[[521,1,1,6,7]]],[25,1,1,7,8,[[835,1,1,7,8]]],[26,2,2,8,10,[[857,1,1,8,9],[860,1,1,9,10]]]],[2105,2108,2109,5827,9491,11552,14576,21334,21965,22076]]],["+",[3,3,[[1,1,1,0,1,[[70,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]],[13,1,1,2,3,[[384,1,1,2,3]]]],[2105,9491,11552]]],["down",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14576]]],["gored",[2,1,[[1,2,1,0,1,[[70,2,1,0,1]]]],[2108]]],["push",[3,3,[[1,1,1,0,1,[[70,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[2109,5827,22076]]],["pushed",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21334]]],["pushing",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21965]]]]},{"k":"H5056","v":[["*",[2,2,[[1,2,2,0,2,[[70,2,2,0,2]]]],[2106,2113]]],["horn",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2106]]],["push",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2113]]]]},{"k":"H5057","v":[["*",[44,44,[[8,4,4,0,4,[[244,1,1,0,1],[245,1,1,1,2],[248,1,1,2,3],[260,1,1,3,4]]],[9,3,3,4,7,[[271,1,1,4,5],[272,1,1,5,6],[273,1,1,6,7]]],[10,3,3,7,10,[[291,1,1,7,8],[304,1,1,8,9],[306,1,1,9,10]]],[11,1,1,10,11,[[332,1,1,10,11]]],[12,12,12,11,23,[[342,1,1,11,12],[346,2,2,12,14],[348,1,1,14,15],[349,1,1,15,16],[350,1,1,16,17],[354,1,1,17,18],[363,1,1,18,19],[364,2,2,19,21],[365,1,1,21,22],[366,1,1,22,23]]],[13,9,9,23,32,[[372,1,1,23,24],[377,2,2,24,26],[385,1,1,26,27],[394,1,1,27,28],[397,2,2,28,30],[398,1,1,30,31],[401,1,1,31,32]]],[15,1,1,32,33,[[423,1,1,32,33]]],[17,2,2,33,35,[[464,1,1,33,34],[466,1,1,34,35]]],[18,1,1,35,36,[[553,1,1,35,36]]],[19,2,2,36,38,[[635,1,1,36,37],[655,1,1,37,38]]],[22,1,1,38,39,[[733,1,1,38,39]]],[23,1,1,39,40,[[764,1,1,39,40]]],[25,1,1,40,41,[[829,1,1,40,41]]],[26,3,3,41,44,[[858,2,2,41,43],[860,1,1,43,44]]]],[7407,7419,7499,7891,8134,8178,8188,8752,9225,9285,10103,10430,10626,10635,10675,10747,10761,10870,11101,11113,11125,11147,11186,11287,11425,11436,11587,11771,11866,11867,11896,11974,12599,13542,13625,15093,16608,17212,18744,19423,21159,22013,22014,22058]]],["Prince",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22013]]],["captain",[5,5,[[8,3,3,0,3,[[244,1,1,0,1],[245,1,1,1,2],[248,1,1,2,3]]],[9,1,1,3,4,[[271,1,1,3,4]]],[11,1,1,4,5,[[332,1,1,4,5]]]],[7407,7419,7499,8134,10103]]],["captains",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11425]]],["chief",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19423]]],["governor",[2,2,[[12,1,1,0,1,[[366,1,1,0,1]]],[13,1,1,1,2,[[394,1,1,1,2]]]],[11186,11771]]],["leader",[3,3,[[12,2,2,0,2,[[349,1,1,0,1],[350,1,1,1,2]]],[22,1,1,2,3,[[733,1,1,2,3]]]],[10747,10761,18744]]],["leaders",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11896]]],["nobles",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13542]]],["prince",[7,7,[[10,2,2,0,2,[[304,1,1,0,1],[306,1,1,1,2]]],[17,1,1,2,3,[[466,1,1,2,3]]],[19,1,1,3,4,[[655,1,1,3,4]]],[25,1,1,4,5,[[829,1,1,4,5]]],[26,2,2,5,7,[[858,1,1,5,6],[860,1,1,6,7]]]],[9225,9285,13625,17212,21159,22014,22058]]],["princes",[1,1,[[18,1,1,0,1,[[553,1,1,0,1]]]],[15093]]],["ruler",[19,19,[[8,1,1,0,1,[[260,1,1,0,1]]],[9,2,2,1,3,[[272,1,1,1,2],[273,1,1,2,3]]],[10,1,1,3,4,[[291,1,1,3,4]]],[12,9,9,4,13,[[342,1,1,4,5],[346,2,2,5,7],[348,1,1,7,8],[354,1,1,8,9],[363,1,1,9,10],[364,2,2,10,12],[365,1,1,12,13]]],[13,5,5,13,18,[[372,1,1,13,14],[377,1,1,14,15],[385,1,1,15,16],[397,2,2,16,18]]],[15,1,1,18,19,[[423,1,1,18,19]]]],[7891,8178,8188,8752,10430,10626,10635,10675,10870,11101,11113,11125,11147,11287,11436,11587,11866,11867,12599]]],["rulers",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11974]]],["things",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16608]]]]},{"k":"H5058","v":[["*",[7,7,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,2,2,1,3,[[546,1,1,1,2],[554,1,1,2,3]]],[22,1,1,3,4,[[716,1,1,3,4]]],[24,2,2,4,6,[[799,1,1,4,5],[801,1,1,5,6]]],[34,1,1,6,7,[[905,1,1,6,7]]]],[13566,14947,15099,18410,20368,20456,22787]]],["+",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20456]]],["instruments",[2,2,[[22,1,1,0,1,[[716,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[18410,22787]]],["song",[4,4,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,2,2,1,3,[[546,1,1,1,2],[554,1,1,2,3]]],[24,1,1,3,4,[[799,1,1,3,4]]]],[13566,14947,15099,20368]]]]},{"k":"H5059","v":[["*",[15,12,[[8,7,6,0,6,[[251,5,4,0,4],[253,1,1,4,5],[254,1,1,5,6]]],[11,3,1,6,7,[[315,3,1,6,7]]],[18,2,2,7,9,[[510,1,1,7,8],[545,1,1,8,9]]],[22,2,2,9,11,[[701,1,1,9,10],[716,1,1,10,11]]],[25,1,1,11,12,[[834,1,1,11,12]]]],[7611,7612,7613,7618,7686,7715,9591,14369,14925,18093,18410,21312]]],["+",[1,1,[[25,1,1,0,1,[[834,1,1,0,1]]]],[21312]]],["instruments",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14925]]],["melody",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18093]]],["minstrel",[2,1,[[11,2,1,0,1,[[315,2,1,0,1]]]],[9591]]],["play",[3,3,[[8,2,2,0,2,[[251,2,2,0,2]]],[18,1,1,2,3,[[510,1,1,2,3]]]],[7611,7612,14369]]],["played",[4,4,[[8,3,3,0,3,[[251,1,1,0,1],[253,1,1,1,2],[254,1,1,2,3]]],[11,1,1,3,4,[[315,1,1,3,4]]]],[7618,7686,7715,9591]]],["player",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7611]]],["playing",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7613]]],["songs",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18410]]]]},{"k":"H5060","v":[["*",[150,142,[[0,8,8,0,8,[[2,1,1,0,1],[11,1,1,1,2],[19,1,1,2,3],[25,2,2,3,5],[27,1,1,5,6],[31,2,2,6,8]]],[1,7,6,8,14,[[53,1,1,8,9],[61,1,1,9,10],[68,3,2,10,12],[78,1,1,12,13],[79,1,1,13,14]]],[2,28,28,14,42,[[94,3,3,14,17],[95,2,2,17,19],[96,2,2,19,21],[100,7,7,21,28],[101,1,1,28,29],[104,10,10,29,39],[111,3,3,39,42]]],[3,10,9,42,51,[[120,1,1,42,43],[132,1,1,43,44],[135,7,6,44,50],[147,1,1,50,51]]],[4,1,1,51,52,[[166,1,1,51,52]]],[5,2,2,52,54,[[194,1,1,52,53],[195,1,1,53,54]]],[6,3,3,54,57,[[216,1,1,54,55],[230,2,2,55,57]]],[7,1,1,57,58,[[233,1,1,57,58]]],[8,3,3,58,61,[[241,1,1,58,59],[245,1,1,59,60],[249,1,1,60,61]]],[9,3,3,61,64,[[271,1,1,61,62],[280,1,1,62,63],[289,1,1,63,64]]],[10,5,3,64,67,[[296,3,1,64,65],[309,2,2,65,67]]],[11,2,2,67,69,[[325,1,1,67,68],[327,1,1,68,69]]],[12,1,1,69,70,[[353,1,1,69,70]]],[13,5,4,70,74,[[369,3,2,70,72],[392,1,1,72,73],[394,1,1,73,74]]],[14,1,1,74,75,[[405,1,1,74,75]]],[15,1,1,75,76,[[419,1,1,75,76]]],[16,9,9,76,85,[[427,2,2,76,78],[429,2,2,78,80],[430,1,1,80,81],[431,1,1,81,82],[433,1,1,82,83],[434,2,2,83,85]]],[17,8,8,85,93,[[436,2,2,85,87],[437,1,1,87,88],[439,1,1,88,89],[440,1,1,89,90],[441,1,1,90,91],[454,1,1,91,92],[455,1,1,92,93]]],[18,8,8,93,101,[[509,1,1,93,94],[550,2,2,94,96],[565,1,1,96,97],[581,1,1,97,98],[582,1,1,98,99],[584,1,1,99,100],[621,1,1,100,101]]],[19,1,1,101,102,[[633,1,1,101,102]]],[20,3,2,102,104,[[666,2,1,102,103],[670,1,1,103,104]]],[21,1,1,104,105,[[672,1,1,104,105]]],[22,10,9,105,114,[[683,1,1,105,106],[684,2,1,106,107],[686,1,1,107,108],[694,1,1,108,109],[703,1,1,109,110],[704,1,1,110,111],[708,1,1,111,112],[730,1,1,112,113],[731,1,1,113,114]]],[23,6,6,114,120,[[745,1,1,114,115],[748,2,2,115,117],[756,1,1,117,118],[792,1,1,118,119],[795,1,1,119,120]]],[24,3,3,120,123,[[798,1,1,120,121],[800,2,2,121,123]]],[25,3,3,123,126,[[808,1,1,123,124],[814,1,1,124,125],[818,1,1,125,126]]],[26,8,8,126,134,[[857,3,3,126,129],[858,1,1,129,130],[859,3,3,130,133],[861,1,1,133,134]]],[27,1,1,134,135,[[865,1,1,134,135]]],[29,1,1,135,136,[[887,1,1,135,136]]],[31,1,1,136,137,[[891,1,1,136,137]]],[32,1,1,137,138,[[893,1,1,137,138]]],[36,2,2,138,140,[[910,2,2,138,140]]],[37,3,2,140,142,[[912,2,1,140,141],[924,1,1,141,142]]]],[58,315,501,703,721,785,953,960,1626,1838,2038,2039,2373,2411,2832,2833,2837,2867,2876,2898,2900,3005,3021,3023,3024,3028,3033,3036,3048,3173,3175,3178,3179,3180,3187,3189,3190,3191,3195,3373,3374,3375,3758,4220,4300,4302,4305,4307,4310,4311,4683,5298,6017,6056,6675,7088,7095,7158,7340,7444,7517,8140,8366,8660,8923,9392,9394,9892,9930,10842,11240,11241,11752,11773,12098,12493,12736,12739,12765,12776,12781,12807,12834,12835,12860,12880,12888,12896,12935,12970,12985,13318,13332,14361,15025,15034,15311,15603,15621,15717,16310,16569,17472,17524,17566,17747,17776,17815,17977,18130,18135,18221,18707,18715,18955,19037,19045,19263,20112,20221,20334,20434,20435,20589,20722,20835,21966,21968,21979,22009,22025,22031,22033,22093,22135,22500,22564,22588,22867,22868,22907,23073]]],["+",[14,14,[[0,2,2,0,2,[[11,1,1,0,1],[19,1,1,1,2]]],[1,1,1,2,3,[[61,1,1,2,3]]],[2,1,1,3,4,[[94,1,1,3,4]]],[3,1,1,4,5,[[120,1,1,4,5]]],[11,1,1,5,6,[[327,1,1,5,6]]],[17,2,2,6,8,[[437,1,1,6,7],[439,1,1,7,8]]],[20,1,1,8,9,[[666,1,1,8,9]]],[22,1,1,9,10,[[684,1,1,9,10]]],[23,1,1,10,11,[[745,1,1,10,11]]],[26,2,2,11,13,[[858,1,1,11,12],[859,1,1,12,13]]],[36,1,1,13,14,[[910,1,1,13,14]]]],[315,501,1838,2837,3758,9930,12896,12935,17472,17776,18955,22009,22031,22867]]],["Touch",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[10842,15621]]],["beaten",[1,1,[[5,1,1,0,1,[[194,1,1,0,1]]]],[6017]]],["bring",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18130]]],["bringeth",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18135]]],["came",[6,6,[[15,1,1,0,1,[[419,1,1,0,1]]],[16,3,3,1,4,[[429,1,1,1,2],[431,1,1,2,3],[433,1,1,3,4]]],[22,1,1,4,5,[[708,1,1,4,5]]],[31,1,1,5,6,[[891,1,1,5,6]]]],[12493,12765,12807,12834,18221,22564]]],["cast",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1626]]],["close",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21968]]],["come",[10,10,[[6,1,1,0,1,[[230,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[14,1,1,2,3,[[405,1,1,2,3]]],[16,4,4,3,7,[[427,2,2,3,5],[429,1,1,5,6],[434,1,1,6,7]]],[21,1,1,7,8,[[672,1,1,7,8]]],[22,1,1,8,9,[[694,1,1,8,9]]],[32,1,1,9,10,[[893,1,1,9,10]]]],[7095,7517,12098,12736,12739,12776,12860,17566,17977,22588]]],["cometh",[1,1,[[26,1,1,0,1,[[861,1,1,0,1]]]],[22093]]],["down",[2,2,[[24,1,1,0,1,[[798,1,1,0,1]]],[25,1,1,1,2,[[814,1,1,1,2]]]],[20334,20722]]],["happeneth",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17472]]],["join",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17747]]],["laid",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17776]]],["near",[4,4,[[6,1,1,0,1,[[230,1,1,0,1]]],[16,1,1,1,2,[[434,1,1,1,2]]],[18,1,1,2,3,[[584,1,1,2,3]]],[25,1,1,3,4,[[808,1,1,3,4]]]],[7088,12835,15717,20589]]],["nigh",[3,3,[[18,2,2,0,2,[[509,1,1,0,1],[565,1,1,1,2]]],[20,1,1,2,3,[[670,1,1,2,3]]]],[14361,15311,17524]]],["plagued",[2,2,[[18,2,2,0,2,[[550,2,2,0,2]]]],[15025,15034]]],["reach",[4,4,[[17,1,1,0,1,[[455,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[13332,17815,20112,23073]]],["reached",[1,1,[[0,1,1,0,1,[[27,1,1,0,1]]]],[785]]],["reacheth",[3,3,[[23,3,3,0,3,[[748,2,2,0,2],[795,1,1,2,3]]]],[19037,19045,20221]]],["reaching",[3,2,[[13,3,2,0,2,[[369,3,2,0,2]]]],[11240,11241]]],["smitten",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11752]]],["smote",[2,2,[[8,1,1,0,1,[[241,1,1,0,1]]],[17,1,1,1,2,[[436,1,1,1,2]]]],[7340,12888]]],["stricken",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18715]]],["touch",[25,25,[[0,1,1,0,1,[[2,1,1,0,1]]],[1,2,2,1,3,[[68,2,2,1,3]]],[2,7,7,3,10,[[94,2,2,3,5],[95,1,1,5,6],[96,1,1,6,7],[100,2,2,7,9],[101,1,1,9,10]]],[3,1,1,10,11,[[132,1,1,10,11]]],[4,1,1,11,12,[[166,1,1,11,12]]],[5,1,1,12,13,[[195,1,1,12,13]]],[7,1,1,13,14,[[233,1,1,13,14]]],[9,2,2,14,16,[[280,1,1,14,15],[289,1,1,15,16]]],[17,3,3,16,19,[[436,1,1,16,17],[440,1,1,17,18],[441,1,1,18,19]]],[18,1,1,19,20,[[621,1,1,19,20]]],[22,1,1,20,21,[[730,1,1,20,21]]],[23,1,1,21,22,[[756,1,1,21,22]]],[24,2,2,22,24,[[800,2,2,22,24]]],[36,1,1,24,25,[[910,1,1,24,25]]]],[58,2038,2039,2832,2833,2876,2900,3005,3028,3048,4220,5298,6056,7158,8366,8660,12880,12970,12985,16310,18707,19263,20434,20435,22868]]],["touched",[20,18,[[0,3,3,0,3,[[25,1,1,0,1],[31,2,2,1,3]]],[2,1,1,3,4,[[111,1,1,3,4]]],[3,2,2,4,6,[[135,1,1,4,5],[147,1,1,5,6]]],[6,1,1,6,7,[[216,1,1,6,7]]],[8,1,1,7,8,[[245,1,1,7,8]]],[10,5,3,8,11,[[296,3,1,8,9],[309,2,2,9,11]]],[11,1,1,11,12,[[325,1,1,11,12]]],[16,1,1,12,13,[[430,1,1,12,13]]],[17,1,1,13,14,[[454,1,1,13,14]]],[26,4,4,14,18,[[857,2,2,14,16],[859,2,2,16,18]]]],[721,953,960,3375,4307,4683,6675,7444,8923,9392,9394,9892,12781,13318,21966,21979,22025,22033]]],["toucheth",[36,34,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,3,3,1,4,[[68,1,1,1,2],[78,1,1,2,3],[79,1,1,3,4]]],[2,19,19,4,23,[[95,1,1,4,5],[96,1,1,5,6],[100,5,5,6,11],[104,10,10,11,21],[111,2,2,21,23]]],[3,6,5,23,28,[[135,6,5,23,28]]],[18,1,1,28,29,[[581,1,1,28,29]]],[19,1,1,29,30,[[633,1,1,29,30]]],[25,1,1,30,31,[[818,1,1,30,31]]],[27,1,1,31,32,[[865,1,1,31,32]]],[29,1,1,32,33,[[887,1,1,32,33]]],[37,2,1,33,34,[[912,2,1,33,34]]]],[703,2038,2373,2411,2867,2898,3021,3023,3024,3033,3036,3173,3175,3178,3179,3180,3187,3189,3190,3191,3195,3373,3374,4300,4302,4305,4310,4311,15603,16569,20835,22135,22500,22907]]],["up",[2,2,[[9,1,1,0,1,[[271,1,1,0,1]]],[13,1,1,1,2,[[394,1,1,1,2]]]],[8140,11773]]]]},{"k":"H5061","v":[["*",[78,62,[[0,1,1,0,1,[[11,1,1,0,1]]],[1,1,1,1,2,[[60,1,1,1,2]]],[2,61,46,2,48,[[102,47,34,2,36],[103,14,12,36,48]]],[4,4,3,48,51,[[169,2,1,48,49],[173,1,1,49,50],[176,1,1,50,51]]],[9,1,1,51,52,[[273,1,1,51,52]]],[10,2,2,52,54,[[298,2,2,52,54]]],[13,2,2,54,56,[[372,2,2,54,56]]],[18,4,4,56,60,[[515,1,1,56,57],[516,1,1,57,58],[566,1,1,58,59],[568,1,1,59,60]]],[19,1,1,60,61,[[633,1,1,60,61]]],[22,1,1,61,62,[[731,1,1,61,62]]]],[315,1807,3054,3055,3056,3057,3058,3061,3064,3065,3069,3072,3074,3077,3079,3081,3082,3083,3084,3094,3095,3096,3097,3098,3099,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3114,3143,3145,3146,3147,3148,3150,3151,3154,3155,3159,3165,5372,5452,5533,8194,9022,9023,11310,11311,14501,14522,15358,15405,16573,18719]]],["+",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14501]]],["plague",[64,49,[[1,1,1,0,1,[[60,1,1,0,1]]],[2,59,44,1,45,[[102,45,32,1,33],[103,14,12,33,45]]],[4,1,1,45,46,[[176,1,1,45,46]]],[10,2,2,46,48,[[298,2,2,46,48]]],[18,1,1,48,49,[[568,1,1,48,49]]]],[1807,3054,3055,3056,3057,3058,3061,3064,3065,3069,3072,3074,3077,3079,3081,3082,3083,3084,3096,3097,3098,3099,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3114,3143,3145,3146,3147,3148,3150,3151,3154,3155,3159,3165,5533,9022,9023,15405]]],["plagues",[1,1,[[0,1,1,0,1,[[11,1,1,0,1]]]],[315]]],["sore",[4,4,[[2,2,2,0,2,[[102,2,2,0,2]]],[13,2,2,2,4,[[372,2,2,2,4]]]],[3094,3095,11310,11311]]],["stricken",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18719]]],["stripes",[2,2,[[9,1,1,0,1,[[273,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]]],[8194,15358]]],["stroke",[4,3,[[4,3,2,0,2,[[169,2,1,0,1],[173,1,1,1,2]]],[18,1,1,2,3,[[516,1,1,2,3]]]],[5372,5452,14522]]],["wound",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16573]]]]},{"k":"H5062","v":[["*",[49,46,[[1,7,6,0,6,[[57,1,1,0,1],[61,3,2,1,3],[70,2,2,3,5],[81,1,1,5,6]]],[2,1,1,6,7,[[115,1,1,6,7]]],[3,1,1,7,8,[[130,1,1,7,8]]],[4,3,3,8,11,[[153,1,1,8,9],[180,2,2,9,11]]],[5,1,1,11,12,[[210,1,1,11,12]]],[6,5,4,12,16,[[230,5,4,12,16]]],[8,6,6,16,22,[[239,3,3,16,19],[242,1,1,19,20],[260,1,1,20,21],[261,1,1,21,22]]],[9,5,5,22,27,[[268,1,1,22,23],[276,2,2,23,25],[278,1,1,25,26],[284,1,1,26,27]]],[10,1,1,27,28,[[298,1,1,27,28]]],[11,1,1,28,29,[[326,1,1,28,29]]],[12,2,2,29,31,[[356,2,2,29,31]]],[13,8,8,31,39,[[372,1,1,31,32],[379,2,2,32,34],[380,1,1,34,35],[386,1,1,35,36],[387,2,2,36,38],[391,1,1,38,39]]],[18,2,2,39,41,[[566,1,1,39,40],[568,1,1,40,41]]],[19,1,1,41,42,[[630,1,1,41,42]]],[22,2,1,42,43,[[697,2,1,42,43]]],[23,1,1,43,44,[[757,1,1,43,44]]],[37,2,2,44,46,[[924,2,2,44,46]]]],[1712,1839,1843,2099,2112,2473,3541,4150,4934,5618,5636,6481,7086,7089,7090,7093,7299,7300,7307,7362,7899,7915,8066,8255,8259,8301,8485,9018,9908,10923,10926,11306,11468,11473,11487,11609,11638,11642,11726,15349,15407,16478,18026,19282,23080,23086]]],["+",[16,15,[[1,5,5,0,5,[[57,1,1,0,1],[61,2,2,1,3],[70,1,1,3,4],[81,1,1,4,5]]],[5,1,1,5,6,[[210,1,1,5,6]]],[6,3,2,6,8,[[230,3,2,6,8]]],[8,1,1,8,9,[[260,1,1,8,9]]],[9,1,1,9,10,[[278,1,1,9,10]]],[13,2,2,10,12,[[379,1,1,10,11],[380,1,1,11,12]]],[22,1,1,12,13,[[697,1,1,12,13]]],[37,2,2,13,15,[[924,2,2,13,15]]]],[1712,1839,1843,2112,2473,6481,7089,7093,7899,8301,11468,11487,18026,23080,23086]]],["beaten",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8066]]],["dash",[1,1,[[18,1,1,0,1,[[568,1,1,0,1]]]],[15407]]],["down",[2,2,[[6,1,1,0,1,[[230,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]]],[7086,9018]]],["hurt",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2099]]],["plague",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15349]]],["slain",[2,2,[[2,1,1,0,1,[[115,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]]],[3541,8485]]],["smite",[4,4,[[1,1,1,0,1,[[61,1,1,0,1]]],[8,1,1,1,2,[[261,1,1,1,2]]],[13,1,1,2,3,[[387,1,1,2,3]]],[22,1,1,3,4,[[697,1,1,3,4]]]],[1839,7915,11638,18026]]],["smitten",[12,12,[[3,1,1,0,1,[[130,1,1,0,1]]],[4,3,3,1,4,[[153,1,1,1,2],[180,2,2,2,4]]],[6,1,1,4,5,[[230,1,1,4,5]]],[8,4,4,5,9,[[239,3,3,5,8],[242,1,1,8,9]]],[9,2,2,9,11,[[276,2,2,9,11]]],[13,1,1,11,12,[[386,1,1,11,12]]]],[4150,4934,5618,5636,7090,7299,7300,7307,7362,8255,8259,11609]]],["smote",[1,1,[[13,1,1,0,1,[[387,1,1,0,1]]]],[11642]]],["struck",[1,1,[[13,1,1,0,1,[[379,1,1,0,1]]]],[11473]]],["stumble",[2,2,[[19,1,1,0,1,[[630,1,1,0,1]]],[23,1,1,1,2,[[757,1,1,1,2]]]],[16478,19282]]],["worse",[5,5,[[11,1,1,0,1,[[326,1,1,0,1]]],[12,2,2,1,3,[[356,2,2,1,3]]],[13,2,2,3,5,[[372,1,1,3,4],[391,1,1,4,5]]]],[9908,10923,10926,11306,11726]]]]},{"k":"H5063","v":[["*",[7,7,[[1,2,2,0,2,[[61,1,1,0,1],[79,1,1,1,2]]],[3,3,3,2,5,[[124,1,1,2,3],[132,2,2,3,5]]],[5,1,1,5,6,[[208,1,1,5,6]]],[22,1,1,6,7,[[686,1,1,6,7]]]],[1829,2394,3958,4240,4241,6443,17821]]],["plague",[6,6,[[1,2,2,0,2,[[61,1,1,0,1],[79,1,1,1,2]]],[3,3,3,2,5,[[124,1,1,2,3],[132,2,2,3,5]]],[5,1,1,5,6,[[208,1,1,5,6]]]],[1829,2394,3958,4240,4241,6443]]],["stumbling",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17821]]]]},{"k":"H5064","v":[["*",[10,10,[[9,1,1,0,1,[[280,1,1,0,1]]],[17,1,1,1,2,[[455,1,1,1,2]]],[18,3,3,2,5,[[540,1,1,2,3],[552,1,1,3,4],[554,1,1,4,5]]],[23,1,1,5,6,[[762,1,1,5,6]]],[24,1,1,6,7,[[799,1,1,6,7]]],[25,1,1,7,8,[[836,1,1,7,8]]],[32,2,2,8,10,[[893,2,2,8,10]]]],[8370,13354,14849,15079,15095,19405,20403,21349,22583,22585]]],["away",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13354]]],["down",[3,3,[[24,1,1,0,1,[[799,1,1,0,1]]],[32,2,2,1,3,[[893,2,2,1,3]]]],[20403,22583,22585]]],["fall",[1,1,[[18,1,1,0,1,[[540,1,1,0,1]]]],[14849]]],["out",[2,2,[[18,1,1,0,1,[[552,1,1,0,1]]],[23,1,1,1,2,[[762,1,1,1,2]]]],[15079,19405]]],["ran",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15095]]],["shed",[1,1,[[25,1,1,0,1,[[836,1,1,0,1]]]],[21349]]],["spilt",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8370]]]]},{"k":"H5065","v":[["*",[23,23,[[1,5,5,0,5,[[52,1,1,0,1],[54,4,4,1,5]]],[4,2,2,5,7,[[167,2,2,5,7]]],[8,2,2,7,9,[[248,1,1,7,8],[249,1,1,8,9]]],[11,1,1,9,10,[[335,1,1,9,10]]],[17,2,2,10,12,[[438,1,1,10,11],[474,1,1,11,12]]],[22,8,8,12,20,[[681,2,2,12,14],[687,1,1,14,15],[692,2,2,15,17],[731,1,1,17,18],[736,1,1,18,19],[738,1,1,19,20]]],[26,1,1,20,21,[[860,1,1,20,21]]],[37,2,2,21,23,[[919,1,1,21,22],[920,1,1,22,23]]]],[1586,1638,1642,1645,1646,5321,5322,7491,7532,10200,12922,13841,17712,17719,17833,17930,17932,18718,18789,18838,22056,23007,23020]]],["+",[2,2,[[4,1,1,0,1,[[167,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]]],[5321,10200]]],["distressed",[2,2,[[8,2,2,0,2,[[248,1,1,0,1],[249,1,1,1,2]]]],[7491,7532]]],["driver",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13841]]],["exact",[2,2,[[4,1,1,0,1,[[167,1,1,0,1]]],[22,1,1,1,2,[[736,1,1,1,2]]]],[5322,18789]]],["exactors",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18838]]],["oppressed",[2,2,[[22,2,2,0,2,[[681,1,1,0,1],[731,1,1,1,2]]]],[17712,18718]]],["oppressor",[5,5,[[17,1,1,0,1,[[438,1,1,0,1]]],[22,2,2,1,3,[[687,1,1,1,2],[692,1,1,2,3]]],[37,2,2,3,5,[[919,1,1,3,4],[920,1,1,4,5]]]],[12922,17833,17932,23007,23020]]],["oppressors",[2,2,[[22,2,2,0,2,[[681,1,1,0,1],[692,1,1,1,2]]]],[17719,17930]]],["taskmasters",[5,5,[[1,5,5,0,5,[[52,1,1,0,1],[54,4,4,1,5]]]],[1586,1638,1642,1645,1646]]],["taxes",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22056]]]]},{"k":"H5066","v":[["*",[125,112,[[0,20,16,0,16,[[17,1,1,0,1],[18,2,1,1,2],[26,6,5,2,7],[28,1,1,7,8],[32,4,3,8,11],[42,1,1,11,12],[43,1,1,12,13],[44,2,1,13,14],[47,2,2,14,16]]],[1,13,11,16,27,[[68,2,2,16,18],[69,1,1,18,19],[70,2,1,19,20],[73,3,2,20,22],[77,1,1,22,23],[79,1,1,23,24],[81,1,1,24,25],[83,2,2,25,27]]],[2,5,4,27,31,[[91,1,1,27,28],[97,1,1,28,29],[110,3,2,29,31]]],[3,3,3,31,34,[[120,1,1,31,32],[124,1,1,32,33],[148,1,1,33,34]]],[4,4,4,34,38,[[172,1,1,34,35],[173,1,1,35,36],[177,2,2,36,38]]],[5,4,4,38,42,[[189,1,1,38,39],[194,1,1,39,40],[200,1,1,40,41],[207,1,1,41,42]]],[6,3,3,42,45,[[216,1,1,42,43],[219,1,1,43,44],[230,1,1,44,45]]],[7,1,1,45,46,[[233,1,1,45,46]]],[8,15,13,46,59,[[242,1,1,46,47],[244,1,1,47,48],[248,1,1,48,49],[249,4,3,49,52],[250,1,1,52,53],[252,2,2,53,55],[258,1,1,55,56],[263,1,1,56,57],[265,3,2,57,59]]],[9,7,7,59,66,[[267,1,1,59,60],[269,1,1,60,61],[276,1,1,61,62],[277,2,2,62,64],[279,1,1,64,65],[283,1,1,65,66]]],[10,9,8,66,74,[[294,1,1,66,67],[308,4,3,67,70],[310,3,3,70,73],[312,1,1,73,74]]],[11,5,5,74,79,[[314,1,1,74,75],[316,3,3,75,78],[317,1,1,78,79]]],[12,1,1,79,80,[[356,1,1,79,80]]],[13,3,3,80,83,[[384,1,1,80,81],[395,2,2,81,83]]],[14,2,2,83,85,[[406,1,1,83,84],[411,1,1,84,85]]],[17,2,2,85,87,[[475,1,1,85,86],[476,1,1,86,87]]],[18,1,1,87,88,[[568,1,1,87,88]]],[22,9,9,88,97,[[707,1,1,88,89],[719,3,3,89,92],[723,2,2,92,94],[727,1,1,94,95],[728,1,1,95,96],[743,1,1,96,97]]],[23,4,3,97,100,[[774,2,1,97,98],[786,1,1,98,99],[790,1,1,99,100]]],[25,3,2,100,102,[[810,1,1,100,101],[845,2,1,101,102]]],[28,1,1,102,103,[[878,1,1,102,103]]],[29,4,4,103,107,[[883,1,1,103,104],[884,1,1,104,105],[887,2,2,105,107]]],[38,6,5,107,112,[[925,4,3,107,110],[926,1,1,110,111],[927,1,1,111,112]]]],[447,466,748,749,752,753,754,805,963,966,967,1309,1342,1362,1461,1464,2041,2048,2072,2083,2179,2191,2336,2402,2444,2526,2528,2770,2931,3366,3368,3762,3958,4734,5429,5452,5548,5556,5902,6013,6193,6382,6673,6806,7077,7163,7362,7409,7494,7526,7542,7546,7592,7634,7658,7819,7967,7985,7999,8037,8115,8253,8279,8280,8328,8477,8865,9362,9371,9377,9421,9430,9436,9504,9556,9608,9609,9630,9660,10921,11565,11814,11822,12112,12238,13883,13904,15402,18206,18452,18472,18473,18581,18582,18656,18670,18902,19688,19976,20048,20628,21612,22352,22448,22453,22505,22508,23096,23097,23100,23115,23123]]],["+",[14,14,[[0,2,2,0,2,[[32,1,1,0,1],[47,1,1,1,2]]],[1,2,2,2,4,[[73,1,1,2,3],[83,1,1,3,4]]],[2,1,1,4,5,[[97,1,1,4,5]]],[3,1,1,5,6,[[120,1,1,5,6]]],[8,1,1,6,7,[[249,1,1,6,7]]],[9,1,1,7,8,[[277,1,1,7,8]]],[11,1,1,8,9,[[316,1,1,8,9]]],[13,1,1,9,10,[[395,1,1,9,10]]],[18,1,1,10,11,[[568,1,1,10,11]]],[22,1,1,11,12,[[743,1,1,11,12]]],[25,1,1,12,13,[[810,1,1,12,13]]],[38,1,1,13,14,[[927,1,1,13,14]]]],[967,1461,2179,2526,2931,3762,7542,8280,9609,11814,15402,18902,20628,23123]]],["Brought",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8477]]],["Come",[1,1,[[5,1,1,0,1,[[189,1,1,0,1]]]],[5902]]],["Stand",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[466]]],["approach",[4,3,[[4,1,1,0,1,[[172,1,1,0,1]]],[17,1,1,1,2,[[475,1,1,1,2]]],[23,2,1,2,3,[[774,2,1,2,3]]]],[5429,13883,19688]]],["approached",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8279]]],["bring",[3,2,[[1,2,1,0,1,[[70,2,1,0,1]]],[2,1,1,1,2,[[91,1,1,1,2]]]],[2083,2770]]],["brought",[7,7,[[1,1,1,0,1,[[81,1,1,0,1]]],[8,3,3,1,4,[[249,1,1,1,2],[263,1,1,2,3],[265,1,1,3,4]]],[9,1,1,4,5,[[279,1,1,4,5]]],[10,1,1,5,6,[[294,1,1,5,6]]],[11,1,1,6,7,[[316,1,1,6,7]]]],[2444,7542,7967,7985,8328,8865,9608]]],["came",[8,8,[[5,1,1,0,1,[[200,1,1,0,1]]],[10,4,4,1,5,[[308,1,1,1,2],[310,3,3,2,5]]],[11,1,1,5,6,[[314,1,1,5,6]]],[14,2,2,6,8,[[406,1,1,6,7],[411,1,1,7,8]]]],[6193,9362,9421,9430,9436,9556,12112,12238]]],["come",[5,5,[[1,2,2,0,2,[[68,1,1,0,1],[73,1,1,1,2]]],[4,2,2,2,4,[[177,2,2,2,4]]],[7,1,1,4,5,[[233,1,1,4,5]]]],[2041,2191,5548,5556,7163]]],["forth",[2,2,[[22,2,2,0,2,[[719,2,2,0,2]]]],[18472,18473]]],["hard",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6806]]],["hither",[5,5,[[8,5,5,0,5,[[248,1,1,0,1],[249,1,1,1,2],[250,1,1,2,3],[258,1,1,3,4],[265,1,1,4,5]]]],[7494,7526,7592,7819,7985]]],["near",[51,47,[[0,17,15,0,15,[[17,1,1,0,1],[18,1,1,1,2],[26,6,5,2,7],[28,1,1,7,8],[32,3,3,8,11],[42,1,1,11,12],[43,1,1,12,13],[44,2,1,13,14],[47,1,1,14,15]]],[1,4,4,15,19,[[68,1,1,15,16],[69,1,1,16,17],[77,1,1,17,18],[79,1,1,18,19]]],[3,1,1,19,20,[[148,1,1,19,20]]],[4,1,1,20,21,[[173,1,1,20,21]]],[5,1,1,21,22,[[207,1,1,21,22]]],[8,6,6,22,28,[[242,1,1,22,23],[244,1,1,23,24],[249,1,1,24,25],[252,2,2,25,27],[265,1,1,27,28]]],[9,1,1,28,29,[[267,1,1,28,29]]],[10,4,3,29,32,[[308,3,2,29,31],[312,1,1,31,32]]],[11,2,2,32,34,[[316,1,1,32,33],[317,1,1,33,34]]],[13,2,2,34,36,[[384,1,1,34,35],[395,1,1,35,36]]],[17,1,1,36,37,[[476,1,1,36,37]]],[22,5,5,37,42,[[707,1,1,37,38],[719,1,1,38,39],[723,2,2,39,41],[728,1,1,41,42]]],[23,2,2,42,44,[[786,1,1,42,43],[790,1,1,43,44]]],[25,2,1,44,45,[[845,2,1,44,45]]],[28,1,1,45,46,[[878,1,1,45,46]]],[29,1,1,46,47,[[884,1,1,46,47]]]],[447,466,748,749,752,753,754,805,963,966,967,1309,1342,1362,1464,2048,2072,2336,2402,4734,5452,6382,7362,7409,7546,7634,7658,7999,8037,9371,9377,9504,9630,9660,11565,11822,13904,18206,18452,18581,18582,18670,19976,20048,21612,22352,22453]]],["nigh",[9,8,[[1,2,2,0,2,[[73,1,1,0,1],[83,1,1,1,2]]],[2,3,2,2,4,[[110,3,2,2,4]]],[3,1,1,4,5,[[124,1,1,4,5]]],[5,1,1,5,6,[[194,1,1,5,6]]],[9,1,1,6,7,[[276,1,1,6,7]]],[12,1,1,7,8,[[356,1,1,7,8]]]],[2179,2528,3366,3368,3958,6013,8253,10921]]],["offer",[3,2,[[38,3,2,0,2,[[925,3,2,0,2]]]],[23096,23097]]],["offered",[2,2,[[29,1,1,0,1,[[883,1,1,0,1]]],[38,1,1,1,2,[[925,1,1,1,2]]]],[22448,23100]]],["offereth",[1,1,[[38,1,1,0,1,[[926,1,1,0,1]]]],[23115]]],["overtake",[2,2,[[29,2,2,0,2,[[887,2,2,0,2]]]],[22505,22508]]],["place",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18656]]],["presented",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6673]]],["put",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8115]]],["up",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7077]]]]},{"k":"H5067","v":[["heap",[6,6,[[1,1,1,0,1,[[64,1,1,0,1]]],[5,2,2,1,3,[[189,2,2,1,3]]],[18,2,2,3,5,[[510,1,1,3,4],[555,1,1,4,5]]],[22,1,1,5,6,[[695,1,1,5,6]]]],[1928,5906,5909,14373,15126,17994]]]]},{"k":"H5068","v":[["*",[17,15,[[1,3,3,0,3,[[74,1,1,0,1],[84,2,2,1,3]]],[6,2,2,3,5,[[215,2,2,3,5]]],[12,7,5,5,10,[[366,7,5,5,10]]],[13,1,1,10,11,[[383,1,1,10,11]]],[14,3,3,11,14,[[403,1,1,11,12],[404,1,1,12,13],[405,1,1,13,14]]],[15,1,1,14,15,[[423,1,1,14,15]]]],[2197,2552,2560,6625,6632,11169,11170,11173,11178,11181,11539,12022,12095,12102,12590]]],["+",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2560]]],["freely",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12095]]],["himself",[1,1,[[13,1,1,0,1,[[383,1,1,0,1]]]],[11539]]],["offered",[3,3,[[12,1,1,0,1,[[366,1,1,0,1]]],[14,2,2,1,3,[[403,1,1,1,2],[405,1,1,2,3]]]],[11181,12022,12102]]],["themselves",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[6625,12590]]],["willing",[2,2,[[1,1,1,0,1,[[84,1,1,0,1]]],[12,1,1,1,2,[[366,1,1,1,2]]]],[2552,11169]]],["willingly",[7,6,[[1,1,1,0,1,[[74,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[12,5,4,2,6,[[366,5,4,2,6]]]],[2197,6632,11170,11173,11178,11181]]]]},{"k":"H5069","v":[["*",[4,3,[[14,4,3,0,3,[[409,4,3,0,3]]]],[12186,12188,12189]]],["freewill",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12186]]],["offered",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12188]]],["offering",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12189]]],["willingly",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12189]]]]},{"k":"H5070","v":[["Nadab",[20,20,[[1,4,4,0,4,[[55,1,1,0,1],[73,2,2,1,3],[77,1,1,3,4]]],[2,1,1,4,5,[[99,1,1,4,5]]],[3,4,4,5,9,[[119,2,2,5,7],[142,2,2,7,9]]],[10,4,4,9,13,[[304,1,1,9,10],[305,3,3,10,13]]],[12,7,7,13,20,[[339,2,2,13,15],[343,1,1,15,16],[345,1,1,16,17],[346,1,1,17,18],[361,2,2,18,20]]]],[1678,2178,2186,2294,2978,3694,3696,4549,4550,9238,9274,9276,9280,10334,10336,10457,10605,10651,11016,11017]]]]},{"k":"H5071","v":[["*",[26,25,[[1,2,2,0,2,[[84,1,1,0,1],[85,1,1,1,2]]],[2,5,5,2,7,[[96,1,1,2,3],[111,3,3,3,6],[112,1,1,6,7]]],[3,2,2,7,9,[[131,1,1,7,8],[145,1,1,8,9]]],[4,4,4,9,13,[[164,2,2,9,11],[168,1,1,11,12],[175,1,1,12,13]]],[13,2,2,13,15,[[397,1,1,13,14],[401,1,1,14,15]]],[14,3,3,15,18,[[403,1,1,15,16],[405,1,1,16,17],[410,1,1,17,18]]],[18,4,4,18,22,[[531,1,1,18,19],[545,1,1,19,20],[587,1,1,20,21],[596,1,1,21,22]]],[25,2,1,22,23,[[847,2,1,22,23]]],[27,1,1,23,24,[[875,1,1,23,24]]],[29,1,1,24,25,[[882,1,1,24,25]]]],[2560,2569,2895,3387,3390,3392,3440,4156,4647,5246,5257,5352,5523,11868,11974,12020,12102,12229,14731,14909,15789,16006,21667,22286,22415]]],["freely",[2,2,[[18,1,1,0,1,[[531,1,1,0,1]]],[27,1,1,1,2,[[875,1,1,1,2]]]],[14731,22286]]],["offering",[10,10,[[1,1,1,0,1,[[84,1,1,0,1]]],[2,3,3,1,4,[[96,1,1,1,2],[111,2,2,2,4]]],[3,1,1,4,5,[[131,1,1,4,5]]],[4,2,2,5,7,[[168,1,1,5,6],[175,1,1,6,7]]],[14,3,3,7,10,[[403,1,1,7,8],[405,1,1,8,9],[410,1,1,9,10]]]],[2560,2895,3390,3392,4156,5352,5523,12020,12102,12229]]],["offerings",[9,9,[[1,1,1,0,1,[[85,1,1,0,1]]],[2,2,2,1,3,[[111,1,1,1,2],[112,1,1,2,3]]],[3,1,1,3,4,[[145,1,1,3,4]]],[4,2,2,4,6,[[164,2,2,4,6]]],[13,1,1,6,7,[[397,1,1,6,7]]],[18,1,1,7,8,[[596,1,1,7,8]]],[29,1,1,8,9,[[882,1,1,8,9]]]],[2569,3387,3440,4647,5246,5257,11868,16006,22415]]],["plentiful",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14909]]],["voluntarily",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21667]]],["voluntary",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21667]]],["willing",[1,1,[[18,1,1,0,1,[[587,1,1,0,1]]]],[15789]]],["willingly",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11974]]]]},{"k":"H5072","v":[["Nedabiah",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10379]]]]},{"k":"H5073","v":[["*",[2,1,[[14,2,1,0,1,[[408,2,1,0,1]]]],[12155]]],["row",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12155]]],["rows",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12155]]]]},{"k":"H5074","v":[["*",[28,26,[[0,1,1,0,1,[[30,1,1,0,1]]],[9,1,1,1,2,[[289,1,1,1,2]]],[16,1,1,2,3,[[431,1,1,2,3]]],[17,3,3,3,6,[[450,1,1,3,4],[453,1,1,4,5],[455,1,1,5,6]]],[18,5,4,6,10,[[508,1,1,6,7],[532,1,1,7,8],[541,1,1,8,9],[545,2,1,9,10]]],[19,2,1,10,11,[[654,2,1,10,11]]],[22,8,8,11,19,[[688,2,2,11,13],[694,2,2,13,15],[699,2,2,15,17],[700,1,1,17,18],[711,1,1,18,19]]],[23,3,3,19,22,[[748,1,1,19,20],[753,1,1,20,21],[793,1,1,21,22]]],[27,2,2,22,24,[[868,1,1,22,23],[870,1,1,23,24]]],[33,2,2,24,26,[[902,2,2,24,26]]]],[913,8659,12794,13226,13294,13334,14342,14739,14858,14912,17177,17864,17881,17971,17972,18049,18050,18055,18282,19052,19185,20132,22191,22225,22719,22729]]],["+",[2,1,[[18,2,1,0,1,[[545,2,1,0,1]]]],[14912]]],["abroad",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13226]]],["away",[4,4,[[9,1,1,0,1,[[289,1,1,0,1]]],[17,1,1,1,2,[[455,1,1,1,2]]],[18,1,1,2,3,[[541,1,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[8659,13334,14858,22729]]],["chased",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13294]]],["departed",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[913]]],["fled",[8,8,[[18,1,1,0,1,[[508,1,1,0,1]]],[22,4,4,1,5,[[699,2,2,1,3],[700,1,1,3,4],[711,1,1,4,5]]],[23,2,2,5,7,[[748,1,1,5,6],[753,1,1,6,7]]],[27,1,1,7,8,[[868,1,1,7,8]]]],[14342,18049,18050,18055,18282,19052,19185,22191]]],["flee",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22719]]],["moved",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17864]]],["not",[1,1,[[16,1,1,0,1,[[431,1,1,0,1]]]],[12794]]],["removed",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17881]]],["wander",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14739]]],["wanderers",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22225]]],["wandereth",[4,3,[[19,2,1,0,1,[[654,2,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]],[23,1,1,2,3,[[793,1,1,2,3]]]],[17177,17972,20132]]],["wandering",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17971]]]]},{"k":"H5075","v":[["went",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21923]]]]},{"k":"H5076","v":[["fro",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13012]]]]},{"k":"H5077","v":[["*",[2,2,[[22,1,1,0,1,[[744,1,1,0,1]]],[29,1,1,1,2,[[884,1,1,1,2]]]],[18927,22453]]],["away",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22453]]],["out",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18927]]]]},{"k":"H5078","v":[["gifts",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20795]]]]},{"k":"H5079","v":[["*",[29,24,[[2,13,10,0,10,[[101,2,2,0,2],[104,9,6,2,8],[107,1,1,8,9],[109,1,1,9,10]]],[3,6,5,10,15,[[135,5,4,10,14],[147,1,1,14,15]]],[13,1,1,15,16,[[395,1,1,15,16]]],[14,2,1,16,17,[[411,2,1,16,17]]],[24,1,1,17,18,[[797,1,1,17,18]]],[25,5,5,18,23,[[808,2,2,18,20],[819,1,1,20,21],[823,1,1,21,22],[837,1,1,22,23]]],[37,1,1,23,24,[[923,1,1,23,24]]]],[3046,3049,3187,3188,3192,3193,3194,3201,3270,3339,4298,4302,4309,4310,4687,11796,12248,20327,20596,20597,20855,20986,21376,23060]]],["apart",[3,3,[[2,2,2,0,2,[[104,1,1,0,1],[107,1,1,1,2]]],[25,1,1,2,3,[[823,1,1,2,3]]]],[3187,3270,20986]]],["far",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20597]]],["filthiness",[2,2,[[13,1,1,0,1,[[395,1,1,0,1]]],[14,1,1,1,2,[[411,1,1,1,2]]]],[11796,12248]]],["flowers",[2,2,[[2,2,2,0,2,[[104,2,2,0,2]]]],[3192,3201]]],["menstruous",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20855]]],["removed",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20596]]],["separation",[14,10,[[2,8,5,0,5,[[101,2,2,0,2],[104,6,3,2,5]]],[3,6,5,5,10,[[135,5,4,5,9],[147,1,1,9,10]]]],[3046,3049,3188,3193,3194,4298,4302,4309,4310,4687]]],["thing",[1,1,[[2,1,1,0,1,[[109,1,1,0,1]]]],[3339]]],["unclean",[1,1,[[14,1,1,0,1,[[411,1,1,0,1]]]],[12248]]],["uncleanness",[1,1,[[37,1,1,0,1,[[923,1,1,0,1]]]],[23060]]],["woman",[2,2,[[24,1,1,0,1,[[797,1,1,0,1]]],[25,1,1,1,2,[[837,1,1,1,2]]]],[20327,21376]]]]},{"k":"H5080","v":[["*",[53,52,[[4,10,10,0,10,[[156,1,1,0,1],[165,3,3,1,4],[171,1,1,4,5],[172,1,1,5,6],[174,1,1,6,7],[182,3,3,7,10]]],[9,4,3,10,13,[[280,3,2,10,12],[281,1,1,12,13]]],[11,1,1,13,14,[[329,1,1,13,14]]],[13,2,2,14,16,[[379,1,1,14,15],[387,1,1,15,16]]],[15,1,1,16,17,[[413,1,1,16,17]]],[17,1,1,17,18,[[441,1,1,17,18]]],[18,2,2,18,20,[[482,1,1,18,19],[539,1,1,19,20]]],[19,1,1,20,21,[[634,1,1,20,21]]],[22,6,6,21,27,[[686,1,1,21,22],[689,1,1,22,23],[691,1,1,23,24],[694,2,2,24,26],[705,1,1,26,27]]],[23,18,18,27,45,[[752,1,1,27,28],[760,1,1,28,29],[767,3,3,29,32],[768,1,1,32,33],[771,2,2,33,35],[773,2,2,35,37],[774,1,1,37,38],[776,1,1,38,39],[784,1,1,39,40],[787,1,1,40,41],[790,1,1,41,42],[793,2,2,42,44],[794,1,1,44,45]]],[25,3,3,45,48,[[805,1,1,45,46],[835,2,2,46,48]]],[26,1,1,48,49,[[858,1,1,48,49]]],[28,1,1,49,50,[[877,1,1,49,50]]],[32,1,1,50,51,[[896,1,1,50,51]]],[35,1,1,51,52,[[908,1,1,51,52]]]],[5023,5277,5282,5285,5411,5446,5471,5709,5712,5725,8369,8370,8403,10004,11462,11635,12305,12991,13983,14831,16596,17829,17896,17920,17972,17973,18164,19156,19351,19486,19487,19492,19533,19606,19611,19649,19653,19684,19768,19953,20002,20073,20132,20163,20183,20542,21317,21329,21995,22331,22626,22839]]],["+",[7,7,[[4,1,1,0,1,[[165,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]],[11,1,1,2,3,[[329,1,1,2,3]]],[13,2,2,3,5,[[379,1,1,3,4],[387,1,1,4,5]]],[23,2,2,5,7,[[771,2,2,5,7]]]],[5285,8403,10004,11462,11635,19606,19611]]],["Outcast",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19684]]],["astray",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5471]]],["away",[6,6,[[4,2,2,0,2,[[165,1,1,0,1],[182,1,1,1,2]]],[23,2,2,2,4,[[767,1,1,2,3],[794,1,1,3,4]]],[25,2,2,4,6,[[835,2,2,4,6]]]],[5282,5725,19486,20183,21317,21329]]],["banished",[2,2,[[9,2,2,0,2,[[280,2,2,0,2]]]],[8369,8370]]],["chased",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17920]]],["down",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14831]]],["drive",[3,3,[[23,1,1,0,1,[[768,1,1,0,1]]],[25,1,1,1,2,[[805,1,1,1,2]]],[28,1,1,2,3,[[877,1,1,2,3]]]],[19533,20542,22331]]],["driven",[15,15,[[4,2,2,0,2,[[156,1,1,0,1],[182,1,1,1,2]]],[17,1,1,2,3,[[441,1,1,2,3]]],[22,1,1,3,4,[[686,1,1,3,4]]],[23,10,10,4,14,[[752,1,1,4,5],[760,1,1,5,6],[767,2,2,6,8],[773,2,2,8,10],[776,1,1,10,11],[784,1,1,11,12],[787,1,1,12,13],[790,1,1,13,14]]],[26,1,1,14,15,[[858,1,1,14,15]]]],[5023,5709,12991,17829,19156,19351,19487,19492,19649,19653,19768,19953,20002,20073,21995]]],["expelled",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8370]]],["forced",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16596]]],["forcing",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5446]]],["out",[6,6,[[4,1,1,0,1,[[182,1,1,0,1]]],[15,1,1,1,2,[[413,1,1,1,2]]],[18,1,1,2,3,[[482,1,1,2,3]]],[23,1,1,3,4,[[793,1,1,3,4]]],[32,1,1,4,5,[[896,1,1,4,5]]],[35,1,1,5,6,[[908,1,1,5,6]]]],[5712,12305,13983,20132,22626,22839]]],["outcasts",[5,5,[[22,4,4,0,4,[[689,1,1,0,1],[694,2,2,1,3],[705,1,1,3,4]]],[23,1,1,4,5,[[793,1,1,4,5]]]],[17896,17972,17973,18164,20163]]],["stroke",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5411]]],["thrust",[1,1,[[4,1,1,0,1,[[165,1,1,0,1]]]],[5277]]]]},{"k":"H5081","v":[["*",[28,25,[[1,2,2,0,2,[[84,2,2,0,2]]],[3,1,1,2,3,[[137,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[12,1,1,4,5,[[365,1,1,4,5]]],[13,1,1,5,6,[[395,1,1,5,6]]],[17,3,3,6,9,[[447,1,1,6,7],[456,1,1,7,8],[469,1,1,8,9]]],[18,7,6,9,15,[[524,1,1,9,10],[560,1,1,10,11],[584,1,1,11,12],[590,2,1,12,13],[595,1,1,13,14],[623,1,1,14,15]]],[19,5,5,15,20,[[635,1,1,15,16],[644,2,2,16,18],[646,1,1,18,19],[652,1,1,19,20]]],[21,2,2,20,22,[[676,1,1,20,21],[677,1,1,21,22]]],[22,5,3,22,25,[[691,1,1,22,23],[710,4,2,23,25]]]],[2536,2553,4358,7248,11164,11822,13149,13383,13701,14634,15252,15739,15821,15878,16344,16618,16880,16899,16931,17120,17626,17628,17908,18264,18267]]],["+",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17626]]],["free",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11822]]],["liberal",[2,2,[[22,2,2,0,2,[[710,2,2,0,2]]]],[18264,18267]]],["nobles",[4,4,[[3,1,1,0,1,[[137,1,1,0,1]]],[18,1,1,1,2,[[560,1,1,1,2]]],[19,1,1,2,3,[[635,1,1,2,3]]],[22,1,1,3,4,[[691,1,1,3,4]]]],[4358,15252,16618,17908]]],["prince",[4,4,[[17,1,1,0,1,[[456,1,1,0,1]]],[19,3,3,1,4,[[644,1,1,1,2],[646,1,1,2,3],[652,1,1,3,4]]]],[13383,16880,16931,17120]]],["prince's",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17628]]],["princes",[10,9,[[8,1,1,0,1,[[237,1,1,0,1]]],[17,2,2,1,3,[[447,1,1,1,2],[469,1,1,2,3]]],[18,6,5,3,8,[[524,1,1,3,4],[584,1,1,4,5],[590,2,1,5,6],[595,1,1,6,7],[623,1,1,7,8]]],[19,1,1,8,9,[[644,1,1,8,9]]]],[7248,13149,13701,14634,15739,15821,15878,16344,16899]]],["things",[2,1,[[22,2,1,0,1,[[710,2,1,0,1]]]],[18267]]],["willing",[3,3,[[1,2,2,0,2,[[84,2,2,0,2]]],[12,1,1,2,3,[[365,1,1,2,3]]]],[2536,2553,11164]]]]},{"k":"H5082","v":[["*",[2,2,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,1,1,1,2,[[528,1,1,1,2]]]],[13572,14703]]],["free",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14703]]],["soul",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13572]]]]},{"k":"H5083","v":[["gifts",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20795]]]]},{"k":"H5084","v":[["sheath",[1,1,[[12,1,1,0,1,[[358,1,1,0,1]]]],[10961]]]]},{"k":"H5085","v":[["body",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21948]]]]},{"k":"H5086","v":[["*",[9,8,[[2,1,1,0,1,[[115,1,1,0,1]]],[17,2,2,1,3,[[448,1,1,1,2],[467,1,1,2,3]]],[18,3,2,3,5,[[478,1,1,3,4],[545,2,1,4,5]]],[19,1,1,5,6,[[648,1,1,5,6]]],[22,2,2,6,8,[[697,1,1,6,7],[719,1,1,7,8]]]],[3560,13178,13641,13943,14902,16990,18011,18453]]],["away",[4,3,[[18,3,2,0,2,[[478,1,1,0,1],[545,2,1,1,2]]],[22,1,1,2,3,[[697,1,1,2,3]]]],[13943,14902,18011]]],["down",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13641]]],["driven",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18453]]],["fro",[2,2,[[17,1,1,0,1,[[448,1,1,0,1]]],[19,1,1,1,2,[[648,1,1,1,2]]]],[13178,16990]]],["shaken",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3560]]]]},{"k":"H5087","v":[["*",[31,28,[[0,2,2,0,2,[[27,1,1,0,1],[30,1,1,1,2]]],[2,1,1,2,3,[[116,1,1,2,3]]],[3,7,6,3,9,[[122,3,2,3,5],[137,1,1,5,6],[146,3,3,6,9]]],[4,5,5,9,14,[[164,2,2,9,11],[175,3,3,11,14]]],[6,2,2,14,16,[[221,2,2,14,16]]],[8,1,1,16,17,[[236,1,1,16,17]]],[9,2,2,17,19,[[281,2,2,17,19]]],[18,2,2,19,21,[[553,1,1,19,20],[609,1,1,20,21]]],[20,4,2,21,23,[[663,4,2,21,23]]],[22,1,1,23,24,[[697,1,1,23,24]]],[23,1,1,24,25,[[788,1,1,24,25]]],[31,2,2,25,27,[[889,1,1,25,26],[890,1,1,26,27]]],[38,1,1,27,28,[[925,1,1,27,28]]]],[793,886,3578,3825,3844,4342,4650,4651,4658,5251,5257,5521,5522,5523,6859,6868,7223,8396,8397,15092,16153,17401,17402,18025,20035,22547,22557,23103]]],["+",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17402]]],["Vow",[1,1,[[18,1,1,0,1,[[553,1,1,0,1]]]],[15092]]],["made",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22547]]],["vow",[8,8,[[3,3,3,0,3,[[122,1,1,0,1],[146,2,2,1,3]]],[4,3,3,3,6,[[164,1,1,3,4],[175,2,2,4,6]]],[20,1,1,6,7,[[663,1,1,6,7]]],[22,1,1,7,8,[[697,1,1,7,8]]]],[3825,4650,4651,5251,5521,5522,17402,18025]]],["vowed",[16,15,[[0,1,1,0,1,[[27,1,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]],[3,4,3,2,5,[[122,2,1,2,3],[137,1,1,3,4],[146,1,1,4,5]]],[4,1,1,5,6,[[175,1,1,5,6]]],[6,2,2,6,8,[[221,2,2,6,8]]],[8,1,1,8,9,[[236,1,1,8,9]]],[9,2,2,9,11,[[281,2,2,9,11]]],[18,1,1,11,12,[[609,1,1,11,12]]],[20,1,1,12,13,[[663,1,1,12,13]]],[23,1,1,13,14,[[788,1,1,13,14]]],[31,1,1,14,15,[[890,1,1,14,15]]]],[793,3578,3844,4342,4658,5523,6859,6868,7223,8396,8397,16153,17401,20035,22557]]],["vowedst",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[886]]],["vowest",[2,2,[[4,1,1,0,1,[[164,1,1,0,1]]],[20,1,1,1,2,[[663,1,1,1,2]]]],[5257,17401]]],["voweth",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23103]]]]},{"k":"H5088","v":[["*",[60,57,[[0,2,2,0,2,[[27,1,1,0,1],[30,1,1,1,2]]],[2,6,6,2,8,[[96,1,1,2,3],[111,3,3,3,6],[112,1,1,6,7],[116,1,1,7,8]]],[3,20,19,8,27,[[122,3,3,8,11],[131,2,2,11,13],[137,1,1,13,14],[145,1,1,14,15],[146,13,12,15,27]]],[4,6,6,27,33,[[164,4,4,27,31],[175,2,2,31,33]]],[6,2,2,33,35,[[221,2,2,33,35]]],[8,2,2,35,37,[[236,2,2,35,37]]],[9,2,2,37,39,[[281,2,2,37,39]]],[17,1,1,39,40,[[457,1,1,39,40]]],[18,9,9,40,49,[[499,1,1,40,41],[527,1,1,41,42],[533,1,1,42,43],[538,2,2,43,45],[542,1,1,45,46],[543,1,1,46,47],[593,2,2,47,49]]],[19,3,3,49,52,[[634,1,1,49,50],[647,1,1,50,51],[658,1,1,51,52]]],[20,1,1,52,53,[[663,1,1,52,53]]],[22,1,1,53,54,[[697,1,1,53,54]]],[23,3,1,54,55,[[788,3,1,54,55]]],[31,1,1,55,56,[[889,1,1,55,56]]],[33,1,1,56,57,[[900,1,1,56,57]]]],[793,886,2895,3387,3390,3392,3440,3572,3825,3828,3844,4156,4161,4342,4647,4650,4651,4652,4653,4654,4655,4656,4657,4659,4660,4661,4662,5246,5251,5257,5266,5518,5521,6859,6868,7223,7233,8396,8397,13416,14229,14682,14767,14824,14827,14861,14886,15862,15866,16589,16979,17286,17401,18025,20035,22547,22699]]],["+",[2,2,[[3,2,2,0,2,[[145,1,1,0,1],[146,1,1,1,2]]]],[4647,4654]]],["vow",[29,29,[[0,2,2,0,2,[[27,1,1,0,1],[30,1,1,1,2]]],[2,4,4,2,6,[[96,1,1,2,3],[111,2,2,3,5],[116,1,1,5,6]]],[3,12,12,6,18,[[122,3,3,6,9],[131,2,2,9,11],[137,1,1,11,12],[146,6,6,12,18]]],[4,2,2,18,20,[[175,2,2,18,20]]],[6,2,2,20,22,[[221,2,2,20,22]]],[8,2,2,22,24,[[236,2,2,22,24]]],[9,2,2,24,26,[[281,2,2,24,26]]],[18,1,1,26,27,[[542,1,1,26,27]]],[20,1,1,27,28,[[663,1,1,27,28]]],[22,1,1,28,29,[[697,1,1,28,29]]]],[793,886,2895,3390,3392,3572,3825,3828,3844,4156,4161,4342,4650,4651,4652,4656,4657,4661,5518,5521,6859,6868,7223,7233,8396,8397,14861,17401,18025]]],["vows",[29,27,[[2,2,2,0,2,[[111,1,1,0,1],[112,1,1,1,2]]],[3,6,6,2,8,[[146,6,6,2,8]]],[4,4,4,8,12,[[164,4,4,8,12]]],[17,1,1,12,13,[[457,1,1,12,13]]],[18,8,8,13,21,[[499,1,1,13,14],[527,1,1,14,15],[533,1,1,15,16],[538,2,2,16,18],[543,1,1,18,19],[593,2,2,19,21]]],[19,3,3,21,24,[[634,1,1,21,22],[647,1,1,22,23],[658,1,1,23,24]]],[23,3,1,24,25,[[788,3,1,24,25]]],[31,1,1,25,26,[[889,1,1,25,26]]],[33,1,1,26,27,[[900,1,1,26,27]]]],[3387,3440,4652,4653,4655,4659,4660,4662,5246,5251,5257,5266,13416,14229,14682,14767,14824,14827,14886,15862,15866,16589,16979,17286,20035,22547,22699]]]]},{"k":"H5089","v":[["wailing",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20588]]]]},{"k":"H5090","v":[["*",[31,31,[[0,2,2,0,2,[[30,2,2,0,2]]],[1,3,3,2,5,[[52,1,1,2,3],[59,1,1,3,4],[63,1,1,4,5]]],[4,2,2,5,7,[[156,1,1,5,6],[180,1,1,6,7]]],[8,4,4,7,11,[[258,1,1,7,8],[265,3,3,8,11]]],[9,1,1,11,12,[[272,1,1,11,12]]],[11,2,2,12,14,[[316,1,1,12,13],[321,1,1,13,14]]],[12,2,2,14,16,[[350,1,1,14,15],[357,1,1,15,16]]],[13,1,1,16,17,[[391,1,1,16,17]]],[17,1,1,17,18,[[459,1,1,17,18]]],[18,4,4,18,22,[[525,1,1,18,19],[555,2,2,19,21],[557,1,1,21,22]]],[20,1,1,22,23,[[660,1,1,22,23]]],[21,1,1,23,24,[[678,1,1,23,24]]],[22,5,5,24,29,[[689,1,1,24,25],[698,1,1,25,26],[727,1,1,26,27],[738,1,1,27,28],[741,1,1,28,29]]],[24,1,1,29,30,[[799,1,1,29,30]]],[33,1,1,30,31,[[901,1,1,30,31]]]],[891,899,1580,1790,1914,5031,5648,7815,7980,7998,8000,8160,9627,9776,10767,10927,11715,13439,14648,15139,15165,15199,17336,17642,17890,18033,18646,18832,18880,20356,22706]]],["+",[8,8,[[0,2,2,0,2,[[30,2,2,0,2]]],[1,1,1,2,3,[[52,1,1,2,3]]],[8,1,1,3,4,[[258,1,1,3,4]]],[9,1,1,4,5,[[272,1,1,4,5]]],[12,1,1,5,6,[[357,1,1,5,6]]],[13,1,1,6,7,[[391,1,1,6,7]]],[22,1,1,7,8,[[698,1,1,7,8]]]],[891,899,1580,7815,8160,10927,11715,18033]]],["Drive",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9627]]],["acquainting",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17336]]],["away",[3,3,[[8,2,2,0,2,[[265,2,2,0,2]]],[17,1,1,2,3,[[459,1,1,2,3]]]],[7980,8000,13439]]],["brought",[3,3,[[1,1,1,0,1,[[59,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]],[22,1,1,2,3,[[738,1,1,2,3]]]],[1790,15139,18832]]],["drave",[3,3,[[1,1,1,0,1,[[63,1,1,0,1]]],[8,1,1,1,2,[[265,1,1,1,2]]],[12,1,1,2,3,[[350,1,1,2,3]]]],[1914,7998,10767]]],["driveth",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9776]]],["guide",[1,1,[[18,1,1,0,1,[[525,1,1,0,1]]]],[14648]]],["guided",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15165]]],["lead",[7,7,[[4,2,2,0,2,[[156,1,1,0,1],[180,1,1,1,2]]],[21,1,1,2,3,[[678,1,1,2,3]]],[22,3,3,3,6,[[689,1,1,3,4],[727,1,1,4,5],[741,1,1,5,6]]],[33,1,1,6,7,[[901,1,1,6,7]]]],[5031,5648,17642,17890,18646,18880,22706]]],["leadest",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15199]]],["led",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20356]]]]},{"k":"H5091","v":[["*",[3,3,[[8,1,1,0,1,[[242,1,1,0,1]]],[25,1,1,1,2,[[833,1,1,1,2]]],[32,1,1,2,3,[[894,1,1,2,3]]]],[7354,21266,22599]]],["lament",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22599]]],["lamented",[1,1,[[8,1,1,0,1,[[242,1,1,0,1]]]],[7354]]],["wail",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21266]]]]},{"k":"H5092","v":[["*",[7,7,[[23,5,5,0,5,[[753,4,4,0,4],[775,1,1,4,5]]],[29,1,1,5,6,[[883,1,1,5,6]]],[32,1,1,6,7,[[894,1,1,6,7]]]],[19185,19193,19194,19195,19706,22439,22599]]],["lamentation",[3,3,[[23,1,1,0,1,[[775,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]],[32,1,1,2,3,[[894,1,1,2,3]]]],[19706,22439,22599]]],["wailing",[4,4,[[23,4,4,0,4,[[753,4,4,0,4]]]],[19185,19193,19194,19195]]]]},{"k":"H5093","v":[["doleful",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22599]]]]},{"k":"H5094","v":[["light",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[854,2,2,1,3]]]],[21780,21885,21888]]]]},{"k":"H5095","v":[["*",[10,10,[[0,2,2,0,2,[[32,1,1,0,1],[46,1,1,1,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[13,2,2,3,5,[[394,1,1,3,4],[398,1,1,4,5]]],[18,2,2,5,7,[[500,1,1,5,6],[508,1,1,6,7]]],[22,3,3,7,10,[[718,1,1,7,8],[727,1,1,8,9],[729,1,1,9,10]]]],[974,1437,1933,11779,11897,14237,14334,18431,18646,18691]]],["carried",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11779]]],["fed",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1437]]],["guide",[3,3,[[18,1,1,0,1,[[508,1,1,0,1]]],[22,2,2,1,3,[[727,1,1,1,2],[729,1,1,2,3]]]],[14334,18646,18691]]],["guided",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[13,1,1,1,2,[[398,1,1,1,2]]]],[1933,11897]]],["lead",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18431]]],["leadeth",[1,1,[[18,1,1,0,1,[[500,1,1,0,1]]]],[14237]]],["on",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[974]]]]},{"k":"H5096","v":[["*",[3,3,[[5,2,2,0,2,[[205,1,1,0,1],[207,1,1,1,2]]],[6,1,1,2,3,[[211,1,1,2,3]]]],[6336,6416,6539]]],["Nahalal",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6416]]],["Nahallal",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6336]]],["Nahalol",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6539]]]]},{"k":"H5097","v":[["bushes",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17801]]]]},{"k":"H5098","v":[["*",[5,5,[[19,2,2,0,2,[[632,1,1,0,1],[655,1,1,1,2]]],[22,2,2,2,4,[[683,2,2,2,4]]],[25,1,1,4,5,[[825,1,1,4,5]]]],[16528,17211,17768,17769,21079]]],["mourn",[2,2,[[19,1,1,0,1,[[632,1,1,0,1]]],[25,1,1,1,2,[[825,1,1,1,2]]]],[16528,21079]]],["roar",[2,2,[[22,2,2,0,2,[[683,2,2,0,2]]]],[17768,17769]]],["roaring",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17211]]]]},{"k":"H5099","v":[["roaring",[2,2,[[19,2,2,0,2,[[646,1,1,0,1],[647,1,1,1,2]]]],[16937,16956]]]]},{"k":"H5100","v":[["*",[2,2,[[18,1,1,0,1,[[515,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]]],[14498,17769]]],["+",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14498]]],["roaring",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17769]]]]},{"k":"H5101","v":[["*",[2,2,[[17,2,2,0,2,[[441,1,1,0,1],[465,1,1,1,2]]]],[12983,13564]]],["bray",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12983]]],["brayed",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13564]]]]},{"k":"H5102","v":[["*",[6,6,[[18,1,1,0,1,[[511,1,1,0,1]]],[22,2,2,1,3,[[680,1,1,1,2],[738,1,1,2,3]]],[23,2,2,3,5,[[775,1,1,3,4],[795,1,1,4,5]]],[32,1,1,5,6,[[896,1,1,5,6]]]],[14393,17687,18826,19703,20256,22621]]],["flow",[2,2,[[22,1,1,0,1,[[680,1,1,0,1]]],[32,1,1,1,2,[[896,1,1,1,2]]]],[17687,22621]]],["lightened",[1,1,[[18,1,1,0,1,[[511,1,1,0,1]]]],[14393]]],["together",[3,3,[[22,1,1,0,1,[[738,1,1,0,1]]],[23,2,2,1,3,[[775,1,1,1,2],[795,1,1,2,3]]]],[18826,19703,20256]]]]},{"k":"H5103","v":[["*",[15,13,[[14,14,12,0,12,[[406,5,5,0,5],[407,3,2,5,7],[408,4,3,7,10],[409,2,2,10,12]]],[26,1,1,12,13,[[856,1,1,12,13]]]],[12120,12121,12126,12127,12130,12137,12140,12157,12159,12164,12194,12198,21943]]],["river",[14,12,[[14,14,12,0,12,[[406,5,5,0,5],[407,3,2,5,7],[408,4,3,7,10],[409,2,2,10,12]]]],[12120,12121,12126,12127,12130,12137,12140,12157,12159,12164,12194,12198]]],["stream",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21943]]]]},{"k":"H5104","v":[["*",[119,108,[[0,9,6,0,6,[[1,4,3,0,3],[14,3,1,3,4],[30,1,1,4,5],[35,1,1,5,6]]],[1,3,3,6,9,[[56,1,1,6,7],[57,1,1,7,8],[72,1,1,8,9]]],[3,2,2,9,11,[[138,1,1,9,10],[140,1,1,10,11]]],[4,4,2,11,13,[[153,2,1,11,12],[163,2,1,12,13]]],[5,6,5,13,18,[[187,2,1,13,14],[210,4,4,14,18]]],[9,2,2,18,20,[[274,1,1,18,19],[276,1,1,19,20]]],[10,4,3,20,23,[[294,3,2,20,22],[304,1,1,22,23]]],[11,5,5,23,28,[[317,1,1,23,24],[329,1,1,24,25],[330,1,1,25,26],[335,1,1,26,27],[336,1,1,27,28]]],[12,5,5,28,33,[[338,1,1,28,29],[342,2,2,29,31],[355,1,1,31,32],[356,1,1,32,33]]],[13,1,1,33,34,[[375,1,1,33,34]]],[14,4,4,34,38,[[410,4,4,34,38]]],[15,3,3,38,41,[[414,2,2,38,40],[415,1,1,40,41]]],[17,5,5,41,46,[[449,1,1,41,42],[455,1,1,42,43],[457,1,1,43,44],[463,1,1,44,45],[475,1,1,45,46]]],[18,15,13,46,59,[[501,1,1,46,47],[523,1,1,47,48],[543,1,1,48,49],[549,1,1,49,50],[551,1,1,50,51],[555,1,1,51,52],[557,1,1,52,53],[566,1,1,53,54],[570,3,1,54,55],[575,1,1,55,56],[582,1,1,56,57],[584,1,1,57,58],[614,1,1,58,59]]],[21,1,1,59,60,[[678,1,1,59,60]]],[22,21,21,60,81,[[685,1,1,60,61],[686,1,1,61,62],[689,1,1,62,63],[696,3,3,63,66],[697,2,2,66,68],[705,1,1,68,69],[711,1,1,69,70],[719,1,1,70,71],[720,1,1,71,72],[721,3,3,72,75],[722,1,1,75,76],[725,1,1,76,77],[726,1,1,77,78],[728,1,1,78,79],[737,1,1,79,80],[744,1,1,80,81]]],[23,6,6,81,87,[[746,1,1,81,82],[790,5,5,82,87]]],[25,13,12,87,99,[[802,2,2,87,89],[804,2,2,89,91],[811,3,3,91,94],[832,2,2,94,96],[833,3,2,96,98],[844,1,1,98,99]]],[26,1,1,99,100,[[859,1,1,99,100]]],[31,1,1,100,101,[[890,1,1,100,101]]],[32,1,1,101,102,[[899,1,1,101,102]]],[33,2,2,102,104,[[900,1,1,102,103],[901,1,1,103,104]]],[34,3,2,104,106,[[905,3,2,104,106]]],[35,1,1,106,107,[[908,1,1,106,107]]],[37,1,1,107,108,[[919,1,1,107,108]]]],[40,43,44,378,894,1077,1704,1715,2175,4380,4452,4899,5232,5855,6478,6479,6490,6491,8212,8256,8865,8868,9233,9659,9989,10035,10194,10209,10300,10437,10454,10893,10923,11390,12216,12222,12232,12237,12314,12316,12334,13192,13343,13405,13515,13887,14243,14618,14879,15008,15063,15129,15209,15351,15429,15498,15647,15732,16223,17647,17802,17814,17899,17998,17999,18004,18009,18010,18163,18300,18469,18495,18507,18524,18525,18560,18601,18632,18664,18819,18934,18983,20047,20051,20052,20053,20055,20465,20467,20517,20525,20648,20653,20655,21234,21245,21250,21262,21575,22019,22551,22676,22688,22705,22776,22777,22830,23009]]],["+",[6,6,[[0,1,1,0,1,[[14,1,1,0,1]]],[11,1,1,1,2,[[336,1,1,1,2]]],[14,1,1,2,3,[[410,1,1,2,3]]],[18,1,1,3,4,[[549,1,1,3,4]]],[22,1,1,4,5,[[697,1,1,4,5]]],[37,1,1,5,6,[[919,1,1,5,6]]]],[378,10209,12232,15008,18010,23009]]],["flood",[8,8,[[5,4,4,0,4,[[210,4,4,0,4]]],[17,2,2,4,6,[[449,1,1,4,5],[457,1,1,5,6]]],[18,1,1,6,7,[[543,1,1,6,7]]],[22,1,1,7,8,[[737,1,1,7,8]]]],[6478,6479,6490,6491,13192,13405,14879,18819]]],["floods",[10,8,[[17,2,2,0,2,[[455,1,1,0,1],[463,1,1,1,2]]],[18,5,3,2,5,[[501,1,1,2,3],[570,3,1,3,4],[575,1,1,4,5]]],[21,1,1,5,6,[[678,1,1,5,6]]],[25,1,1,6,7,[[832,1,1,6,7]]],[31,1,1,7,8,[[890,1,1,7,8]]]],[13343,13515,14243,15429,15498,17647,21245,22551]]],["river",[62,56,[[0,8,6,0,6,[[1,4,3,0,3],[14,2,1,3,4],[30,1,1,4,5],[35,1,1,5,6]]],[1,1,1,6,7,[[72,1,1,6,7]]],[3,1,1,7,8,[[138,1,1,7,8]]],[4,4,2,8,10,[[153,2,1,8,9],[163,2,1,9,10]]],[5,2,1,10,11,[[187,2,1,10,11]]],[9,2,2,11,13,[[274,1,1,11,12],[276,1,1,12,13]]],[10,4,3,13,16,[[294,3,2,13,15],[304,1,1,15,16]]],[11,3,3,16,19,[[329,1,1,16,17],[330,1,1,17,18],[335,1,1,18,19]]],[12,5,5,19,24,[[338,1,1,19,20],[342,2,2,20,22],[355,1,1,22,23],[356,1,1,23,24]]],[13,1,1,24,25,[[375,1,1,24,25]]],[14,3,3,25,28,[[410,3,3,25,28]]],[15,3,3,28,31,[[414,2,2,28,30],[415,1,1,30,31]]],[17,1,1,31,32,[[475,1,1,31,32]]],[18,3,3,32,35,[[523,1,1,32,33],[557,1,1,33,34],[582,1,1,34,35]]],[22,7,7,35,42,[[685,1,1,35,36],[686,1,1,36,37],[689,1,1,37,38],[697,1,1,38,39],[705,1,1,39,40],[726,1,1,40,41],[744,1,1,41,42]]],[23,4,4,42,46,[[746,1,1,42,43],[790,3,3,43,46]]],[25,8,8,46,54,[[802,2,2,46,48],[804,2,2,48,50],[811,3,3,50,53],[844,1,1,53,54]]],[26,1,1,54,55,[[859,1,1,54,55]]],[32,1,1,55,56,[[899,1,1,55,56]]]],[40,43,44,378,894,1077,2175,4380,4899,5232,5855,8212,8256,8865,8868,9233,9989,10035,10194,10300,10437,10454,10893,10923,11390,12216,12222,12237,12314,12316,12334,13887,14618,15209,15647,17802,17814,17899,18009,18163,18632,18934,18983,20047,20051,20055,20465,20467,20517,20525,20648,20653,20655,21575,22019,22676]]],["river's",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4452]]],["rivers",[30,28,[[11,1,1,0,1,[[317,1,1,0,1]]],[18,5,5,1,6,[[551,1,1,1,2],[555,1,1,2,3],[566,1,1,3,4],[584,1,1,4,5],[614,1,1,5,6]]],[22,12,12,6,18,[[696,3,3,6,9],[711,1,1,9,10],[719,1,1,10,11],[720,1,1,11,12],[721,3,3,12,15],[722,1,1,15,16],[725,1,1,16,17],[728,1,1,17,18]]],[23,2,2,18,20,[[790,2,2,18,20]]],[25,4,3,20,23,[[832,1,1,20,21],[833,3,2,21,23]]],[33,2,2,23,25,[[900,1,1,23,24],[901,1,1,24,25]]],[34,3,2,25,27,[[905,3,2,25,27]]],[35,1,1,27,28,[[908,1,1,27,28]]]],[9659,15063,15129,15351,15732,16223,17998,17999,18004,18300,18469,18495,18507,18524,18525,18560,18601,18664,20052,20053,21234,21250,21262,22688,22705,22776,22777,22830]]],["streams",[2,2,[[1,2,2,0,2,[[56,1,1,0,1],[57,1,1,1,2]]]],[1704,1715]]]]},{"k":"H5105","v":[["light",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12908]]]]},{"k":"H5106","v":[["*",[8,7,[[3,6,5,0,5,[[146,4,3,0,3],[148,2,2,3,5]]],[18,2,2,5,7,[[510,1,1,5,6],[618,1,1,6,7]]]],[4653,4656,4659,4725,4727,14376,16281]]],["+",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4727]]],["break",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16281]]],["disallow",[1,1,[[3,1,1,0,1,[[146,1,1,0,1]]]],[4653]]],["disallowed",[3,3,[[3,3,3,0,3,[[146,3,3,0,3]]]],[4653,4656,4659]]],["discourage",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4725]]],["effect",[1,1,[[18,1,1,0,1,[[510,1,1,0,1]]]],[14376]]]]},{"k":"H5107","v":[["*",[4,4,[[18,2,2,0,2,[[539,1,1,0,1],[569,1,1,1,2]]],[19,1,1,2,3,[[637,1,1,2,3]]],[37,1,1,3,4,[[919,1,1,3,4]]]],[14837,15425,16687,23016]]],["cheerful",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23016]]],["forth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16687]]],["fruit",[1,1,[[18,1,1,0,1,[[569,1,1,0,1]]]],[15425]]],["increase",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14837]]]]},{"k":"H5108","v":[["fruit",[2,2,[[22,1,1,0,1,[[735,1,1,0,1]]],[38,1,1,1,2,[[925,1,1,1,2]]]],[18784,23101]]]]},{"k":"H5109","v":[["Nebai",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12568]]]]},{"k":"H5110","v":[["*",[24,24,[[0,2,2,0,2,[[3,2,2,0,2]]],[10,1,1,2,3,[[304,1,1,2,3]]],[11,1,1,3,4,[[333,1,1,3,4]]],[17,2,2,4,6,[[437,1,1,4,5],[477,1,1,5,6]]],[18,3,3,6,9,[[488,1,1,6,7],[513,1,1,7,8],[546,1,1,8,9]]],[19,1,1,9,10,[[653,1,1,9,10]]],[22,2,2,10,12,[[702,1,1,10,11],[729,1,1,11,12]]],[23,11,11,12,23,[[748,1,1,12,13],[759,1,1,13,14],[760,1,1,14,15],[762,1,1,15,16],[766,1,1,16,17],[775,1,1,17,18],[792,2,2,18,20],[793,1,1,20,21],[794,2,2,21,23]]],[33,1,1,23,24,[[902,1,1,23,24]]]],[91,93,9233,10127,12902,13933,14060,14449,14955,17143,18115,18692,19028,19320,19341,19400,19464,19709,20097,20107,20157,20169,20174,22719]]],["Flee",[1,1,[[18,1,1,0,1,[[488,1,1,0,1]]]],[14060]]],["Remove",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20174]]],["bemoan",[5,5,[[23,4,4,0,4,[[759,1,1,0,1],[760,1,1,1,2],[766,1,1,2,3],[792,1,1,3,4]]],[33,1,1,4,5,[[902,1,1,4,5]]]],[19320,19341,19464,20097,22719]]],["bemoaned",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13933]]],["get",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20157]]],["himself",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19709]]],["joy",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20107]]],["mourn",[1,1,[[17,1,1,0,1,[[437,1,1,0,1]]]],[12902]]],["move",[1,1,[[11,1,1,0,1,[[333,1,1,0,1]]]],[10127]]],["pity",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14955]]],["remove",[3,3,[[18,1,1,0,1,[[513,1,1,0,1]]],[23,2,2,1,3,[[748,1,1,1,2],[794,1,1,2,3]]]],[14449,19028,20169]]],["removed",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18115]]],["shaken",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9233]]],["sorry",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18692]]],["vagabond",[2,2,[[0,2,2,0,2,[[3,2,2,0,2]]]],[91,93]]],["wag",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19400]]],["wandering",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17143]]]]},{"k":"H5111","v":[["away",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21851]]]]},{"k":"H5112","v":[["wanderings",[1,1,[[18,1,1,0,1,[[533,1,1,0,1]]]],[14763]]]]},{"k":"H5113","v":[["Nod",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[95]]]]},{"k":"H5114","v":[["Nodab",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10447]]]]},{"k":"H5115","v":[["*",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[34,1,1,1,2,[[904,1,1,1,2]]]],[1922,22753]]],["habitation",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1922]]],["home",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22753]]]]},{"k":"H5116","v":[["*",[35,34,[[1,1,1,0,1,[[64,1,1,0,1]]],[9,2,2,1,3,[[273,1,1,1,2],[281,1,1,2,3]]],[12,1,1,3,4,[[354,1,1,3,4]]],[17,4,4,4,8,[[440,2,2,4,6],[443,1,1,6,7],[453,1,1,7,8]]],[18,2,2,8,10,[[545,1,1,8,9],[556,1,1,9,10]]],[19,3,3,10,13,[[630,1,1,10,11],[648,1,1,11,12],[651,1,1,12,13]]],[22,6,6,13,19,[[705,1,1,13,14],[710,1,1,14,15],[711,1,1,15,16],[712,1,1,16,17],[713,1,1,17,18],[743,1,1,18,19]]],[23,11,11,19,30,[[754,1,1,19,20],[767,1,1,20,21],[769,1,1,21,22],[775,1,1,22,23],[777,1,1,23,24],[793,2,2,24,26],[794,4,4,26,30]]],[25,3,2,30,32,[[826,1,1,30,31],[835,2,1,31,32]]],[27,1,1,32,33,[[870,1,1,32,33]]],[35,1,1,33,34,[[907,1,1,33,34]]]],[1933,8188,8414,10870,12954,12975,13035,13291,14912,15192,16488,17004,17094,18161,18277,18299,18316,18327,18907,19226,19487,19564,19714,19787,20146,20147,20173,20185,20210,20211,21088,21327,22221,22811]]],["dwelling",[2,2,[[19,2,2,0,2,[[648,1,1,0,1],[651,1,1,1,2]]]],[17004,17094]]],["dwellings",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22811]]],["fold",[3,2,[[22,1,1,0,1,[[743,1,1,0,1]]],[25,2,1,1,2,[[835,2,1,1,2]]]],[18907,21327]]],["folds",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19487]]],["habitation",[21,21,[[1,1,1,0,1,[[64,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]],[17,4,4,2,6,[[440,2,2,2,4],[443,1,1,4,5],[453,1,1,5,6]]],[19,1,1,6,7,[[630,1,1,6,7]]],[22,5,5,7,12,[[705,1,1,7,8],[710,1,1,8,9],[711,1,1,9,10],[712,1,1,10,11],[713,1,1,11,12]]],[23,9,9,12,21,[[754,1,1,12,13],[769,1,1,13,14],[775,1,1,14,15],[777,1,1,15,16],[793,1,1,16,17],[794,4,4,17,21]]]],[1933,8414,12954,12975,13035,13291,16488,18161,18277,18299,18316,18327,19226,19564,19714,19787,20146,20173,20185,20210,20211]]],["habitations",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20147]]],["place",[2,2,[[18,1,1,0,1,[[556,1,1,0,1]]],[27,1,1,1,2,[[870,1,1,1,2]]]],[15192,22221]]],["sheepcote",[2,2,[[9,1,1,0,1,[[273,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]]],[8188,10870]]],["stable",[1,1,[[25,1,1,0,1,[[826,1,1,0,1]]]],[21088]]],["tarried",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14912]]]]},{"k":"H5117","v":[["*",[144,141,[[0,5,5,0,5,[[1,1,1,0,1],[7,1,1,1,2],[18,1,1,2,3],[38,1,1,3,4],[41,1,1,4,5]]],[1,10,10,5,15,[[59,1,1,5,6],[65,4,4,6,10],[66,1,1,10,11],[69,1,1,11,12],[72,1,1,12,13],[81,1,1,13,14],[82,1,1,14,15]]],[2,3,3,15,18,[[96,1,1,15,16],[105,1,1,16,17],[113,1,1,17,18]]],[3,8,8,18,26,[[126,1,1,18,19],[127,2,2,19,21],[131,1,1,21,22],[133,2,2,22,24],[135,1,1,24,25],[148,1,1,25,26]]],[4,7,7,26,33,[[155,1,1,26,27],[157,1,1,27,28],[164,1,1,28,29],[166,1,1,29,30],[177,1,1,30,31],[178,2,2,31,33]]],[5,10,9,33,42,[[187,3,2,33,35],[189,1,1,35,36],[190,2,2,36,38],[192,1,1,38,39],[207,1,1,39,40],[208,1,1,40,41],[209,1,1,41,42]]],[6,5,5,42,47,[[212,1,1,42,43],[213,1,1,43,44],[216,2,2,44,46],[226,1,1,46,47]]],[8,3,3,47,50,[[241,1,1,47,48],[245,1,1,48,49],[260,1,1,49,50]]],[9,7,7,50,57,[[273,2,2,50,52],[282,2,2,52,54],[283,1,1,54,55],[286,1,1,55,56],[287,1,1,56,57]]],[10,7,7,57,64,[[295,1,1,57,58],[297,1,1,58,59],[298,1,1,59,60],[303,3,3,60,63],[309,1,1,63,64]]],[11,3,3,64,67,[[314,1,1,64,65],[329,1,1,65,66],[335,1,1,66,67]]],[12,4,4,67,71,[[353,1,1,67,68],[359,2,2,68,70],[360,1,1,70,71]]],[13,7,7,71,78,[[367,1,1,71,72],[370,1,1,72,73],[375,1,1,73,74],[380,2,2,74,76],[381,1,1,76,77],[386,1,1,77,78]]],[15,1,1,78,79,[[421,1,1,78,79]]],[16,5,5,79,84,[[428,1,1,79,80],[434,4,4,80,84]]],[17,3,3,84,87,[[438,3,3,84,87]]],[18,4,4,87,91,[[494,1,1,87,88],[582,1,1,88,89],[596,1,1,89,90],[602,1,1,90,91]]],[19,3,3,91,94,[[641,1,1,91,92],[648,1,1,92,93],[656,1,1,93,94]]],[20,7,6,94,100,[[660,1,1,94,95],[663,1,1,95,96],[665,2,2,96,98],[668,2,1,98,99],[669,1,1,99,100]]],[22,15,15,100,115,[[685,2,2,100,102],[689,1,1,102,103],[692,3,3,103,106],[701,1,1,106,107],[703,1,1,107,108],[706,2,2,108,110],[708,1,1,110,111],[724,1,1,111,112],[735,1,1,112,113],[741,1,1,113,114],[743,1,1,114,115]]],[23,3,3,115,118,[[758,1,1,115,116],[771,1,1,116,117],[787,1,1,117,118]]],[24,1,1,118,119,[[801,1,1,118,119]]],[25,17,16,119,135,[[806,1,1,119,120],[817,2,2,120,122],[822,1,1,122,123],[823,1,1,123,124],[825,1,1,124,125],[838,2,2,125,127],[841,2,2,127,129],[842,3,2,129,131],[843,2,2,131,133],[845,2,2,133,135]]],[26,1,1,135,136,[[861,1,1,135,136]]],[27,1,1,136,137,[[865,1,1,136,137]]],[29,1,1,137,138,[[883,1,1,137,138]]],[34,1,1,138,139,[[905,1,1,138,139]]],[37,2,2,139,141,[[915,1,1,139,140],[916,1,1,140,141]]]],[45,187,473,1165,1285,1791,1970,1971,1980,1981,1994,2062,2156,2448,2487,2894,3224,3458,4024,4049,4050,4187,4248,4251,4298,4733,4995,5067,5250,5318,5566,5570,5576,5864,5866,5906,5913,5918,5972,6425,6430,6461,6568,6569,6672,6674,6975,7349,7443,7870,8181,8191,8437,8447,8461,8557,8590,8882,8981,8994,9213,9214,9215,9390,9566,10012,10183,10841,10973,10982,11008,11208,11254,11389,11481,11482,11505,11617,12539,12755,12850,12851,12852,12856,12917,12921,12930,14117,15620,16019,16113,16805,17000,17241,17351,17409,17438,17447,17497,17519,17784,17801,17886,17929,17931,17935,18089,18128,18166,18176,18249,18593,18767,18880,18912,19302,19607,20003,20447,20559,20801,20804,20961,20996,21069,21398,21411,21479,21519,21535,21537,21565,21566,21618,21629,22094,22150,22430,22784,22947,22955]]],["+",[14,14,[[1,2,2,0,2,[[65,2,2,0,2]]],[3,1,1,2,3,[[133,1,1,2,3]]],[6,1,1,3,4,[[212,1,1,3,4]]],[8,1,1,4,5,[[241,1,1,4,5]]],[10,4,4,5,9,[[297,1,1,5,6],[303,2,2,6,8],[309,1,1,8,9]]],[20,1,1,9,10,[[660,1,1,9,10]]],[22,1,1,10,11,[[701,1,1,10,11]]],[24,1,1,11,12,[[801,1,1,11,12]]],[25,1,1,12,13,[[841,1,1,12,13]]],[37,1,1,13,14,[[916,1,1,13,14]]]],[1971,1980,4251,6568,7349,8981,9214,9215,9390,17351,18089,20447,21519,22955]]],["Suffer",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6975]]],["alone",[4,4,[[1,1,1,0,1,[[81,1,1,0,1]]],[9,1,1,1,2,[[282,1,1,1,2]]],[11,1,1,2,3,[[335,1,1,2,3]]],[27,1,1,3,4,[[865,1,1,3,4]]]],[2448,8437,10183,22150]]],["bestowed",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11389]]],["ceased",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7870]]],["confederate",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17784]]],["down",[5,5,[[1,1,1,0,1,[[66,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]],[5,1,1,2,3,[[190,1,1,2,3]]],[22,1,1,3,4,[[706,1,1,3,4]]],[25,1,1,4,5,[[838,1,1,4,5]]]],[1994,5570,5918,18166,21398]]],["given",[1,1,[[5,1,1,0,1,[[187,1,1,0,1]]]],[5866]]],["laid",[1,1,[[10,1,1,0,1,[[303,1,1,0,1]]]],[9213]]],["lay",[5,5,[[6,1,1,0,1,[[216,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]],[25,3,3,2,5,[[843,2,2,2,4],[845,1,1,4,5]]]],[6674,18249,21565,21566,21618]]],["leave",[12,12,[[0,1,1,0,1,[[41,1,1,0,1]]],[2,2,2,1,3,[[96,1,1,1,2],[105,1,1,2,3]]],[3,1,1,3,4,[[148,1,1,3,4]]],[5,1,1,4,5,[[190,1,1,4,5]]],[18,2,2,5,7,[[494,1,1,5,6],[596,1,1,6,7]]],[20,1,1,7,8,[[668,1,1,7,8]]],[22,1,1,8,9,[[743,1,1,8,9]]],[23,1,1,9,10,[[758,1,1,9,10]]],[25,2,2,10,12,[[817,1,1,10,11],[823,1,1,11,12]]]],[1285,2894,3224,4733,5913,14117,16019,17497,18912,19302,20801,20996]]],["left",[8,7,[[5,1,1,0,1,[[192,1,1,0,1]]],[6,1,1,1,2,[[213,1,1,1,2]]],[9,2,2,2,4,[[282,1,1,2,3],[286,1,1,3,4]]],[23,1,1,4,5,[[787,1,1,4,5]]],[25,3,2,5,7,[[842,3,2,5,7]]]],[5972,6569,8447,8557,20003,21535,21537]]],["light",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8461]]],["off",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22430]]],["pacifieth",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17497]]],["place",[1,1,[[25,1,1,0,1,[[838,1,1,0,1]]]],[21411]]],["placed",[2,2,[[13,2,2,0,2,[[367,1,1,0,1],[370,1,1,1,2]]]],[11208,11254]]],["put",[5,5,[[0,1,1,0,1,[[1,1,1,0,1]]],[2,1,1,1,2,[[113,1,1,1,2]]],[3,1,1,2,3,[[131,1,1,2,3]]],[10,1,1,3,4,[[298,1,1,3,4]]],[11,1,1,4,5,[[329,1,1,4,5]]]],[45,3458,4187,8994,10012]]],["quiet",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12930]]],["remain",[2,2,[[19,1,1,0,1,[[648,1,1,0,1]]],[23,1,1,1,2,[[771,1,1,1,2]]]],[17000,19607]]],["rest",[45,45,[[1,2,2,0,2,[[72,1,1,0,1],[82,1,1,1,2]]],[4,4,4,2,6,[[155,1,1,2,3],[157,1,1,3,4],[164,1,1,4,5],[177,1,1,5,6]]],[5,6,6,6,12,[[187,2,2,6,8],[189,1,1,8,9],[207,1,1,9,10],[208,1,1,10,11],[209,1,1,11,12]]],[9,3,3,12,15,[[273,2,2,12,14],[287,1,1,14,15]]],[10,1,1,15,16,[[295,1,1,15,16]]],[11,1,1,16,17,[[314,1,1,16,17]]],[12,3,3,17,20,[[359,2,2,17,19],[360,1,1,19,20]]],[13,4,4,20,24,[[380,2,2,20,22],[381,1,1,22,23],[386,1,1,23,24]]],[15,1,1,24,25,[[421,1,1,24,25]]],[16,1,1,25,26,[[434,1,1,25,26]]],[17,2,2,26,28,[[438,2,2,26,28]]],[18,1,1,28,29,[[602,1,1,28,29]]],[19,1,1,29,30,[[656,1,1,29,30]]],[22,8,8,30,38,[[685,1,1,30,31],[689,1,1,31,32],[692,2,2,32,34],[703,1,1,34,35],[706,1,1,35,36],[735,1,1,36,37],[741,1,1,37,38]]],[25,5,5,38,43,[[806,1,1,38,39],[817,1,1,39,40],[822,1,1,40,41],[825,1,1,41,42],[845,1,1,42,43]]],[26,1,1,43,44,[[861,1,1,43,44]]],[34,1,1,44,45,[[905,1,1,44,45]]]],[2156,2487,4995,5067,5250,5566,5864,5866,5906,6425,6430,6461,8181,8191,8590,8882,9566,10973,10982,11008,11481,11482,11505,11617,12539,12850,12917,12921,16113,17241,17801,17886,17931,17935,18128,18176,18767,18880,20559,20804,20961,21069,21629,22094,22784]]],["rested",[9,9,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,2,2,1,3,[[59,1,1,1,2],[69,1,1,2,3]]],[3,3,3,3,6,[[126,1,1,3,4],[127,2,2,4,6]]],[16,3,3,6,9,[[434,3,3,6,9]]]],[187,1791,2062,4024,4049,4050,12851,12852,12856]]],["resteth",[2,2,[[19,1,1,0,1,[[641,1,1,0,1]]],[20,1,1,1,2,[[665,1,1,1,2]]]],[16805,17438]]],["set",[7,7,[[0,1,1,0,1,[[18,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]],[6,1,1,2,3,[[216,1,1,2,3]]],[22,2,2,3,5,[[692,1,1,3,4],[724,1,1,4,5]]],[25,1,1,5,6,[[841,1,1,5,6]]],[37,1,1,6,7,[[915,1,1,6,7]]]],[473,5576,6672,17929,18593,21479,22947]]],["suffer",[2,2,[[16,1,1,0,1,[[428,1,1,0,1]]],[20,1,1,1,2,[[663,1,1,1,2]]]],[12755,17409]]],["suffered",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[10841,15620]]],["up",[7,7,[[0,1,1,0,1,[[38,1,1,0,1]]],[1,2,2,1,3,[[65,2,2,1,3]]],[3,2,2,3,5,[[133,1,1,3,4],[135,1,1,4,5]]],[4,1,1,5,6,[[166,1,1,5,6]]],[8,1,1,6,7,[[245,1,1,6,7]]]],[1165,1970,1981,4248,4298,5318,7443]]],["withdraw",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17447]]],["withhold",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17519]]]]},{"k":"H5118","v":[["place",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11323]]]]},{"k":"H5119","v":[["Nohah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10577]]]]},{"k":"H5120","v":[["moved",[1,1,[[18,1,1,0,1,[[576,1,1,0,1]]]],[15500]]]]},{"k":"H5121","v":[["*",[6,5,[[8,6,5,0,5,[[254,5,4,0,4],[255,1,1,4,5]]]],[7724,7725,7728,7729,7731]]],["+",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7731]]],["Naioth",[5,4,[[8,5,4,0,4,[[254,5,4,0,4]]]],[7724,7725,7728,7729]]]]},{"k":"H5122","v":[["dunghill",[3,3,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,2,2,1,3,[[851,1,1,1,2],[852,1,1,2,3]]]],[12162,21763,21836]]]]},{"k":"H5123","v":[["*",[6,6,[[18,3,3,0,3,[[553,1,1,0,1],[598,2,2,1,3]]],[22,2,2,3,5,[[683,1,1,3,4],[734,1,1,4,5]]],[33,1,1,5,6,[[902,1,1,5,6]]]],[15086,16084,16085,17766,18763,22730]]],["slept",[1,1,[[18,1,1,0,1,[[553,1,1,0,1]]]],[15086]]],["slumber",[5,5,[[18,2,2,0,2,[[598,2,2,0,2]]],[22,2,2,2,4,[[683,1,1,2,3],[734,1,1,3,4]]],[33,1,1,4,5,[[902,1,1,4,5]]]],[16084,16085,17766,18763,22730]]]]},{"k":"H5124","v":[["drowsiness",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17065]]]]},{"k":"H5125","v":[["continued",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15017]]]]},{"k":"H5126","v":[["*",[30,30,[[1,1,1,0,1,[[82,1,1,0,1]]],[3,11,11,1,12,[[127,1,1,1,2],[129,2,2,2,4],[130,3,3,4,7],[142,1,1,7,8],[143,1,1,8,9],[148,2,2,9,11],[150,1,1,11,12]]],[4,4,4,12,16,[[153,1,1,12,13],[183,1,1,13,14],[184,1,1,14,15],[186,1,1,15,16]]],[5,10,10,16,26,[[187,1,1,16,17],[188,2,2,17,19],[192,1,1,19,20],[200,1,1,20,21],[203,1,1,21,22],[205,2,2,22,24],[207,1,1,24,25],[210,1,1,25,26]]],[6,1,1,26,27,[[212,1,1,26,27]]],[10,1,1,27,28,[[306,1,1,27,28]]],[12,1,1,28,29,[[344,1,1,28,29]]],[15,1,1,29,30,[[420,1,1,29,30]]]],[2484,4052,4083,4091,4114,4138,4146,4554,4572,4730,4746,4833,4930,5751,5802,5848,5852,5870,5892,5955,6188,6279,6370,6372,6382,6505,6553,9317,10562,12510]]],["Non",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10562]]],["Nun",[29,29,[[1,1,1,0,1,[[82,1,1,0,1]]],[3,11,11,1,12,[[127,1,1,1,2],[129,2,2,2,4],[130,3,3,4,7],[142,1,1,7,8],[143,1,1,8,9],[148,2,2,9,11],[150,1,1,11,12]]],[4,4,4,12,16,[[153,1,1,12,13],[183,1,1,13,14],[184,1,1,14,15],[186,1,1,15,16]]],[5,10,10,16,26,[[187,1,1,16,17],[188,2,2,17,19],[192,1,1,19,20],[200,1,1,20,21],[203,1,1,21,22],[205,2,2,22,24],[207,1,1,24,25],[210,1,1,25,26]]],[6,1,1,26,27,[[212,1,1,26,27]]],[10,1,1,27,28,[[306,1,1,27,28]]],[15,1,1,28,29,[[420,1,1,28,29]]]],[2484,4052,4083,4091,4114,4138,4146,4554,4572,4730,4746,4833,4930,5751,5802,5848,5852,5870,5892,5955,6188,6279,6370,6372,6382,6505,6553,9317,12510]]]]},{"k":"H5127","v":[["*",[160,142,[[0,7,6,0,6,[[13,2,1,0,1],[18,1,1,1,2],[38,4,4,2,6]]],[1,5,5,6,11,[[53,1,1,6,7],[58,1,1,7,8],[63,2,2,8,10],[70,1,1,10,11]]],[2,2,2,11,13,[[115,2,2,11,13]]],[3,8,8,13,21,[[126,1,1,13,14],[132,1,1,14,15],[151,6,6,15,21]]],[4,11,9,21,30,[[156,2,1,21,22],[171,4,4,22,26],[180,2,2,26,28],[184,2,1,28,29],[186,1,1,29,30]]],[5,13,11,30,41,[[193,1,1,30,31],[194,6,4,31,35],[196,2,2,35,37],[206,4,4,37,41]]],[6,13,13,41,54,[[211,1,1,41,42],[214,2,2,42,44],[216,1,1,44,45],[217,2,2,45,47],[218,1,1,47,48],[219,3,3,48,51],[230,3,3,51,54]]],[8,12,11,54,65,[[239,3,3,54,57],[249,1,1,57,58],[252,2,2,58,60],[254,2,2,60,62],[265,1,1,62,63],[266,3,2,63,65]]],[9,16,13,65,78,[[267,1,1,65,66],[270,2,1,66,67],[276,4,3,67,70],[279,1,1,70,71],[283,1,1,71,72],[284,3,2,72,74],[285,2,2,74,76],[289,1,1,76,77],[290,1,1,77,78]]],[10,6,5,78,83,[[292,2,2,78,80],[302,1,1,80,81],[310,3,2,81,83]]],[11,11,9,83,92,[[315,1,1,83,84],[319,2,1,84,85],[320,1,1,85,86],[321,5,4,86,90],[326,2,2,90,92]]],[12,8,6,92,98,[[347,3,2,92,94],[348,1,1,94,95],[356,4,3,95,98]]],[13,5,5,98,103,[[376,1,1,98,99],[379,1,1,99,100],[380,1,1,100,101],[391,2,2,101,103]]],[18,5,5,103,108,[[537,1,1,103,104],[545,1,1,104,105],[581,1,1,105,106],[591,2,2,106,108]]],[19,2,2,108,110,[[655,2,2,108,110]]],[21,2,2,110,112,[[672,1,1,110,111],[674,1,1,111,112]]],[22,13,12,112,124,[[688,2,2,112,114],[691,1,1,114,115],[695,1,1,115,116],[698,1,1,116,117],[702,1,1,117,118],[708,3,2,118,120],[709,1,1,120,121],[713,1,1,121,122],[729,1,1,122,123],[737,1,1,123,124]]],[23,12,12,124,136,[[790,3,3,124,127],[792,3,3,127,130],[793,3,3,130,133],[794,2,2,133,135],[795,1,1,135,136]]],[29,4,3,136,139,[[880,1,1,136,137],[883,1,1,137,138],[887,2,1,138,139]]],[33,1,1,139,140,[[901,1,1,139,140]]],[37,4,2,140,142,[[912,1,1,140,141],[924,3,1,141,142]]]],[346,477,1161,1162,1164,1167,1604,1762,1914,1916,2090,3541,3560,4023,4228,4851,4856,4860,4870,4871,4877,5046,5409,5410,5411,5417,5618,5636,5788,5846,5980,6007,6008,6017,6022,6075,6080,6375,6376,6378,6381,6515,6614,6616,6665,6715,6716,6731,6775,6794,6805,7086,7099,7101,7307,7313,7314,7530,7642,7669,7714,7716,7995,8010,8016,8026,8124,8253,8254,8258,8346,8451,8481,8495,8514,8519,8664,8705,8798,8799,9169,9428,9438,9600,9714,9748,9759,9766,9779,9783,9908,9915,10660,10666,10686,10921,10922,10925,11413,11469,11487,11726,11731,14811,14901,15578,15825,15827,17197,17213,17571,17588,17853,17879,17920,17996,18035,18113,18233,18234,18258,18330,18684,18819,20050,20051,20066,20086,20099,20125,20135,20151,20157,20182,20194,20218,22395,22442,22496,22707,22905,23073]]],["+",[3,2,[[9,2,1,0,1,[[284,2,1,0,1]]],[23,1,1,1,2,[[790,1,1,1,2]]]],[8481,20050]]],["Flee",[4,4,[[23,4,4,0,4,[[792,1,1,0,1],[793,2,2,1,3],[795,1,1,3,4]]]],[20086,20135,20157,20218]]],["abated",[1,1,[[4,1,1,0,1,[[186,1,1,0,1]]]],[5846]]],["away",[12,12,[[6,3,3,0,3,[[214,2,2,0,2],[219,1,1,2,3]]],[21,2,2,3,5,[[672,1,1,3,4],[674,1,1,4,5]]],[22,2,2,5,7,[[713,1,1,5,6],[729,1,1,6,7]]],[23,2,2,7,9,[[790,2,2,7,9]]],[29,2,2,9,11,[[880,1,1,9,10],[887,1,1,10,11]]],[33,1,1,11,12,[[901,1,1,11,12]]]],[6614,6616,6775,17571,17588,18330,18684,20051,20066,22395,22496,22707]]],["displayed",[1,1,[[18,1,1,0,1,[[537,1,1,0,1]]]],[14811]]],["fled",[80,72,[[0,6,5,0,5,[[13,2,1,0,1],[38,4,4,1,5]]],[1,2,2,5,7,[[53,1,1,5,6],[63,1,1,6,7]]],[3,4,4,7,11,[[132,1,1,7,8],[151,3,3,8,11]]],[5,6,6,11,17,[[193,1,1,11,12],[194,2,2,12,14],[196,2,2,14,16],[206,1,1,16,17]]],[6,8,8,17,25,[[211,1,1,17,18],[217,2,2,18,20],[218,1,1,20,21],[219,2,2,21,23],[230,2,2,23,25]]],[8,12,11,25,36,[[239,3,3,25,28],[249,1,1,28,29],[252,2,2,29,31],[254,2,2,31,33],[265,1,1,33,34],[266,3,2,34,36]]],[9,10,9,36,45,[[267,1,1,36,37],[270,1,1,37,38],[276,4,3,38,41],[279,1,1,41,42],[284,1,1,42,43],[285,1,1,43,44],[289,1,1,44,45]]],[10,5,4,45,49,[[292,2,2,45,47],[310,3,2,47,49]]],[11,10,8,49,57,[[315,1,1,49,50],[319,2,1,50,51],[320,1,1,51,52],[321,4,3,52,55],[326,2,2,55,57]]],[12,8,6,57,63,[[347,3,2,57,59],[348,1,1,59,60],[356,4,3,60,63]]],[13,4,4,63,67,[[379,1,1,63,64],[380,1,1,64,65],[391,2,2,65,67]]],[18,2,2,67,69,[[581,1,1,67,68],[591,1,1,68,69]]],[22,1,1,69,70,[[688,1,1,69,70]]],[23,1,1,70,71,[[792,1,1,70,71]]],[37,1,1,71,72,[[924,1,1,71,72]]]],[346,1161,1162,1164,1167,1604,1916,4228,4870,4871,4877,5980,6017,6022,6075,6080,6378,6515,6715,6716,6731,6794,6805,7099,7101,7307,7313,7314,7530,7642,7669,7714,7716,7995,8010,8016,8026,8124,8253,8254,8258,8346,8495,8519,8664,8798,8799,9428,9438,9600,9714,9748,9766,9779,9783,9908,9915,10660,10666,10686,10921,10922,10925,11469,11487,11726,11731,15578,15825,17879,20125,23073]]],["fleddest",[1,1,[[18,1,1,0,1,[[591,1,1,0,1]]]],[15827]]],["flee",[49,46,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,3,3,1,4,[[58,1,1,1,2],[63,1,1,2,3],[70,1,1,3,4]]],[2,2,2,4,6,[[115,2,2,4,6]]],[3,4,4,6,10,[[126,1,1,6,7],[151,3,3,7,10]]],[4,6,6,10,16,[[156,1,1,10,11],[171,3,3,11,14],[180,2,2,14,16]]],[5,7,6,16,22,[[194,4,3,16,19],[206,3,3,19,22]]],[6,1,1,22,23,[[230,1,1,22,23]]],[9,4,4,23,27,[[270,1,1,23,24],[283,1,1,24,25],[285,1,1,25,26],[290,1,1,26,27]]],[10,1,1,27,28,[[302,1,1,27,28]]],[11,1,1,28,29,[[321,1,1,28,29]]],[13,1,1,29,30,[[376,1,1,29,30]]],[18,1,1,30,31,[[545,1,1,30,31]]],[19,2,2,31,33,[[655,2,2,31,33]]],[22,8,7,33,40,[[688,1,1,33,34],[691,1,1,34,35],[695,1,1,35,36],[698,1,1,36,37],[708,3,2,37,39],[709,1,1,39,40]]],[23,3,3,40,43,[[793,1,1,40,41],[794,2,2,41,43]]],[29,1,1,43,44,[[883,1,1,43,44]]],[37,3,2,44,46,[[912,1,1,44,45],[924,2,1,45,46]]]],[477,1762,1914,2090,3541,3560,4023,4851,4856,4860,5046,5409,5410,5411,5618,5636,6007,6008,6022,6375,6376,6381,7086,8124,8451,8514,8705,9169,9759,11413,14901,17197,17213,17853,17920,17996,18035,18233,18234,18258,20151,20182,20194,22442,22905,23073]]],["fleeing",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5046]]],["fleeth",[4,4,[[4,1,1,0,1,[[171,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]],[29,1,1,3,4,[[887,1,1,3,4]]]],[5417,18113,20099,22496]]],["flight",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5788]]],["hide",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6665]]],["put",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5788]]],["standard",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18819]]]]},{"k":"H5128","v":[["*",[40,36,[[0,2,2,0,2,[[3,2,2,0,2]]],[1,1,1,2,3,[[69,1,1,2,3]]],[3,1,1,3,4,[[148,1,1,3,4]]],[6,3,3,4,7,[[219,3,3,4,7]]],[8,1,1,7,8,[[236,1,1,7,8]]],[9,1,1,8,9,[[281,1,1,8,9]]],[11,2,2,9,11,[[331,1,1,9,10],[335,1,1,10,11]]],[17,2,2,11,13,[[451,1,1,11,12],[463,1,1,12,13]]],[18,7,6,13,19,[[499,1,1,13,14],[536,2,2,14,16],[584,1,1,16,17],[586,3,2,17,19]]],[19,1,1,19,20,[[632,1,1,19,20]]],[22,8,6,20,26,[[684,1,1,20,21],[685,2,1,21,22],[697,1,1,22,23],[702,2,1,23,24],[707,1,1,24,25],[715,1,1,25,26]]],[23,1,1,26,27,[[758,1,1,26,27]]],[24,3,3,27,30,[[798,1,1,27,28],[800,2,2,28,30]]],[26,1,1,30,31,[[859,1,1,30,31]]],[29,4,3,31,34,[[882,1,1,31,32],[886,1,1,32,33],[887,2,1,33,34]]],[33,1,1,34,35,[[902,1,1,34,35]]],[35,1,1,35,36,[[907,1,1,35,36]]]],[91,93,2069,4731,6763,6765,6767,7225,8409,10082,10183,13242,13508,14211,14801,14805,15726,15765,15780,16523,17773,17784,18005,18115,18202,18374,19303,20347,20434,20435,22025,22418,22493,22504,22724,22820]]],["+",[5,3,[[18,2,1,0,1,[[586,2,1,0,1]]],[22,2,1,1,2,[[702,2,1,1,2]]],[29,1,1,2,3,[[887,1,1,2,3]]]],[15765,18115,22504]]],["away",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13508]]],["down",[2,2,[[9,1,1,0,1,[[281,1,1,0,1]]],[18,1,1,1,2,[[536,1,1,1,2]]]],[8409,14805]]],["fugitive",[2,2,[[0,2,2,0,2,[[3,2,2,0,2]]]],[91,93]]],["move",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10183]]],["moveable",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16523]]],["moved",[5,4,[[8,1,1,0,1,[[236,1,1,0,1]]],[22,4,3,1,4,[[684,1,1,1,2],[685,2,1,2,3],[697,1,1,3,4]]]],[7225,17773,17784,18005]]],["promoted",[3,3,[[6,3,3,0,3,[[219,3,3,0,3]]]],[6763,6765,6767]]],["removed",[1,1,[[1,1,1,0,1,[[69,1,1,0,1]]]],[2069]]],["scatter",[1,1,[[18,1,1,0,1,[[536,1,1,0,1]]]],[14801]]],["set",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22025]]],["shake",[2,2,[[17,1,1,0,1,[[451,1,1,0,1]]],[18,1,1,1,2,[[499,1,1,1,2]]]],[13242,14211]]],["shaked",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15780]]],["shaken",[3,3,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]],[33,1,1,2,3,[[902,1,1,2,3]]]],[10082,18374,22724]]],["sifted",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22504]]],["stagger",[2,2,[[18,1,1,0,1,[[584,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]]],[15726,18202]]],["wag",[2,2,[[24,1,1,0,1,[[798,1,1,0,1]]],[35,1,1,1,2,[[907,1,1,1,2]]]],[20347,22820]]],["wander",[3,3,[[3,1,1,0,1,[[148,1,1,0,1]]],[23,1,1,1,2,[[758,1,1,1,2]]],[29,1,1,2,3,[[886,1,1,2,3]]]],[4731,19303,22493]]],["wandered",[3,3,[[24,2,2,0,2,[[800,2,2,0,2]]],[29,1,1,2,3,[[882,1,1,2,3]]]],[20434,20435,22418]]]]},{"k":"H5129","v":[["Noadiah",[2,2,[[14,1,1,0,1,[[410,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]]],[12234,12415]]]]},{"k":"H5130","v":[["*",[37,35,[[1,5,5,0,5,[[69,1,1,0,1],[78,3,3,1,4],[84,1,1,4,5]]],[2,11,10,5,15,[[96,1,1,5,6],[97,2,2,6,8],[98,1,1,8,9],[99,1,1,9,10],[103,2,2,10,12],[112,4,3,12,15]]],[3,6,6,15,21,[[121,1,1,15,16],[122,1,1,16,17],[124,4,4,17,21]]],[4,2,2,21,23,[[175,1,1,21,22],[179,1,1,22,23]]],[5,1,1,23,24,[[194,1,1,23,24]]],[11,1,1,24,25,[[317,1,1,24,25]]],[17,1,1,25,26,[[466,1,1,25,26]]],[18,1,1,26,27,[[545,1,1,26,27]]],[19,1,1,27,28,[[634,1,1,27,28]]],[22,7,6,28,34,[[688,3,2,28,30],[689,1,1,30,31],[691,1,1,31,32],[697,1,1,32,33],[708,1,1,33,34]]],[37,1,1,34,35,[[912,1,1,34,35]]]],[2076,2360,2362,2363,2553,2909,2944,2946,2974,2992,3123,3135,3413,3414,3422,3817,3843,3950,3952,3954,3960,5525,5590,6033,9658,13609,14909,16592,17865,17882,17899,17908,18020,18245,22908]]],["+",[7,7,[[2,3,3,0,3,[[96,1,1,0,1],[112,2,2,1,3]]],[3,2,2,3,5,[[121,1,1,3,4],[124,1,1,4,5]]],[22,1,1,5,6,[[688,1,1,5,6]]],[37,1,1,6,7,[[912,1,1,6,7]]]],[2909,3413,3414,3817,3950,17865,22908]]],["move",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5525]]],["offer",[2,2,[[3,2,2,0,2,[[124,2,2,0,2]]]],[3952,3954]]],["offered",[2,2,[[1,1,1,0,1,[[84,1,1,0,1]]],[3,1,1,1,2,[[124,1,1,1,2]]]],[2553,3960]]],["perfumed",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16592]]],["send",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14909]]],["shake",[3,3,[[22,3,3,0,3,[[688,1,1,0,1],[689,1,1,1,2],[691,1,1,2,3]]]],[17882,17899,17908]]],["shaketh",[2,2,[[22,2,2,0,2,[[688,1,1,0,1],[697,1,1,1,2]]]],[17865,18020]]],["sift",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18245]]],["strike",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9658]]],["up",[4,4,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,1,1,1,2,[[179,1,1,1,2]]],[5,1,1,2,3,[[194,1,1,2,3]]],[17,1,1,3,4,[[466,1,1,3,4]]]],[2076,5590,6033,13609]]],["wave",[8,8,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,5,5,2,7,[[99,1,1,2,3],[103,2,2,3,5],[112,2,2,5,7]]],[3,1,1,7,8,[[122,1,1,7,8]]]],[2360,2362,2992,3123,3135,3413,3422,3843]]],["waved",[4,4,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,3,3,1,4,[[97,2,2,1,3],[98,1,1,3,4]]]],[2363,2944,2946,2974]]]]},{"k":"H5131","v":[["situation",[1,1,[[18,1,1,0,1,[[525,1,1,0,1]]]],[14636]]]]},{"k":"H5132","v":[["*",[3,3,[[21,2,2,0,2,[[676,1,1,0,1],[677,1,1,1,2]]],[24,1,1,2,3,[[800,1,1,2,3]]]],[17625,17639,20435]]],["away",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20435]]],["budded",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17625]]],["forth",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17639]]]]},{"k":"H5133","v":[["*",[4,4,[[2,1,1,0,1,[[90,1,1,0,1]]],[17,1,1,1,2,[[474,1,1,1,2]]],[25,2,2,2,4,[[818,2,2,2,4]]]],[2761,13847,20828,20832]]],["feathers",[3,3,[[2,1,1,0,1,[[90,1,1,0,1]]],[25,2,2,1,3,[[818,2,2,1,3]]]],[2761,20828,20832]]],["ostrich",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13847]]]]},{"k":"H5134","v":[["nursed",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1563]]]]},{"k":"H5135","v":[["*",[17,14,[[26,17,14,0,14,[[852,14,12,0,12],[856,3,2,12,14]]]],[21813,21818,21822,21824,21827,21828,21829,21830,21831,21832,21833,21834,21942,21943]]],["+",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21942,21943]]],["fiery",[8,8,[[26,8,8,0,8,[[852,8,8,0,8]]]],[21813,21818,21822,21824,21827,21828,21830,21833]]],["fire",[7,6,[[26,7,6,0,6,[[852,6,5,0,5],[856,1,1,5,6]]]],[21829,21831,21832,21833,21834,21942]]]]},{"k":"H5136","v":[["heaviness",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14955]]]]},{"k":"H5137","v":[["*",[24,22,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,15,13,1,14,[[93,2,2,1,3],[94,1,1,3,4],[95,2,1,4,5],[97,2,2,5,7],[103,4,4,7,11],[105,4,3,11,14]]],[3,5,5,14,19,[[124,1,1,14,15],[135,4,4,15,19]]],[11,1,1,19,20,[[321,1,1,19,20]]],[22,2,2,20,22,[[730,1,1,20,21],[741,1,1,21,22]]]],[2357,2801,2812,2839,2876,2928,2947,3118,3127,3138,3162,3215,3216,3220,3946,4293,4307,4308,4310,9789,18711,18869]]],["+",[1,1,[[2,1,1,0,1,[[103,1,1,0,1]]]],[3162]]],["Sprinkle",[1,1,[[3,1,1,0,1,[[124,1,1,0,1]]]],[3946]]],["sprinkle",[15,14,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,10,9,1,10,[[93,2,2,1,3],[94,1,1,3,4],[103,3,3,4,7],[105,4,3,7,10]]],[3,3,3,10,13,[[135,3,3,10,13]]],[22,1,1,13,14,[[730,1,1,13,14]]]],[2357,2801,2812,2839,3118,3127,3138,3215,3216,3220,4293,4307,4308,18711]]],["sprinkled",[6,5,[[2,4,3,0,3,[[95,2,1,0,1],[97,2,2,1,3]]],[11,1,1,3,4,[[321,1,1,3,4]]],[22,1,1,4,5,[[741,1,1,4,5]]]],[2876,2928,2947,9789,18869]]],["sprinkleth",[1,1,[[3,1,1,0,1,[[135,1,1,0,1]]]],[4310]]]]},{"k":"H5138","v":[["*",[6,6,[[0,2,2,0,2,[[24,2,2,0,2]]],[11,3,3,2,5,[[316,3,3,2,5]]],[36,1,1,5,6,[[910,1,1,5,6]]]],[687,692,9641,9642,9643,22867]]],["+",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9643]]],["pottage",[5,5,[[0,2,2,0,2,[[24,2,2,0,2]]],[11,2,2,2,4,[[316,2,2,2,4]]],[36,1,1,4,5,[[910,1,1,4,5]]]],[687,692,9641,9642,22867]]]]},{"k":"H5139","v":[["*",[16,16,[[0,1,1,0,1,[[48,1,1,0,1]]],[2,2,2,1,3,[[114,2,2,1,3]]],[3,6,6,3,9,[[122,6,6,3,9]]],[4,1,1,9,10,[[185,1,1,9,10]]],[6,3,3,10,13,[[223,2,2,10,12],[226,1,1,12,13]]],[24,1,1,13,14,[[800,1,1,13,14]]],[29,2,2,14,16,[[880,2,2,14,16]]]],[1499,3474,3480,3825,3836,3841,3842,3843,3844,5826,6889,6891,6966,20427,22390,22391]]],["Nazarite",[9,9,[[3,6,6,0,6,[[122,6,6,0,6]]],[6,3,3,6,9,[[223,2,2,6,8],[226,1,1,8,9]]]],[3825,3836,3841,3842,3843,3844,6889,6891,6966]]],["Nazarites",[3,3,[[24,1,1,0,1,[[800,1,1,0,1]]],[29,2,2,1,3,[[880,2,2,1,3]]]],[20427,22390,22391]]],["from",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1499]]],["separated",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5826]]],["undressed",[2,2,[[2,2,2,0,2,[[114,2,2,0,2]]]],[3474,3480]]]]},{"k":"H5140","v":[["*",[16,16,[[1,1,1,0,1,[[64,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[6,1,1,3,4,[[215,1,1,3,4]]],[17,1,1,4,5,[[471,1,1,4,5]]],[18,3,3,5,8,[[555,2,2,5,7],[624,1,1,7,8]]],[19,1,1,8,9,[[632,1,1,8,9]]],[21,2,2,9,11,[[674,2,2,9,11]]],[22,3,3,11,14,[[722,1,1,11,12],[723,1,1,12,13],[726,1,1,13,14]]],[23,2,2,14,16,[[753,1,1,14,15],[762,1,1,15,16]]]],[1928,4453,5760,6628,13764,15129,15157,16369,16532,17597,17598,18536,18569,18635,19193,19398]]],["+",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15129]]],["distil",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5760]]],["down",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18569]]],["drop",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13764]]],["floods",[3,3,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]],[22,1,1,2,3,[[722,1,1,2,3]]]],[1928,15157,18536]]],["flow",[2,2,[[18,1,1,0,1,[[624,1,1,0,1]]],[22,1,1,1,2,[[726,1,1,1,2]]]],[16369,18635]]],["flowing",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19398]]],["melted",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6628]]],["out",[2,2,[[21,1,1,0,1,[[674,1,1,0,1]]],[23,1,1,1,2,[[753,1,1,1,2]]]],[17598,19193]]],["pour",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4453]]],["streams",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17597]]],["waters",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16532]]]]},{"k":"H5141","v":[["*",[17,16,[[0,4,4,0,4,[[23,3,3,0,3],[34,1,1,3,4]]],[1,3,3,4,7,[[81,2,2,4,6],[84,1,1,6,7]]],[6,4,3,7,10,[[218,4,3,7,10]]],[17,1,1,10,11,[[477,1,1,10,11]]],[19,2,2,11,13,[[638,1,1,11,12],[652,1,1,12,13]]],[22,1,1,13,14,[[681,1,1,13,14]]],[25,1,1,14,15,[[817,1,1,14,15]]],[27,1,1,15,16,[[863,1,1,15,16]]]],[613,621,638,1015,2440,2441,2553,6743,6744,6745,13933,16710,17125,17728,20774,22118]]],["earring",[5,5,[[0,3,3,0,3,[[23,3,3,0,3]]],[17,1,1,3,4,[[477,1,1,3,4]]],[19,1,1,4,5,[[652,1,1,4,5]]]],[613,621,638,13933,17125]]],["earrings",[9,8,[[0,1,1,0,1,[[34,1,1,0,1]]],[1,3,3,1,4,[[81,2,2,1,3],[84,1,1,3,4]]],[6,4,3,4,7,[[218,4,3,4,7]]],[27,1,1,7,8,[[863,1,1,7,8]]]],[1015,2440,2441,2553,6743,6744,6745,22118]]],["jewel",[2,2,[[19,1,1,0,1,[[638,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[16710,20774]]],["jewels",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17728]]]]},{"k":"H5142","v":[["*",[4,4,[[14,3,3,0,3,[[406,3,3,0,3]]],[26,1,1,3,4,[[855,1,1,3,4]]]],[12123,12125,12132,21907]]],["damage",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21907]]],["endamage",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12123]]],["hurt",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12132]]],["hurtful",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12125]]]]},{"k":"H5143","v":[["damage",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12811]]]]},{"k":"H5144","v":[["*",[10,10,[[2,2,2,0,2,[[104,1,1,0,1],[111,1,1,1,2]]],[3,5,5,2,7,[[122,5,5,2,7]]],[25,1,1,7,8,[[815,1,1,7,8]]],[27,1,1,8,9,[[870,1,1,8,9]]],[37,1,1,9,10,[[917,1,1,9,10]]]],[3199,3371,3825,3826,3828,3829,3835,20738,22218,22965]]],["+",[1,1,[[2,1,1,0,1,[[104,1,1,0,1]]]],[3199]]],["consecrate",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3835]]],["himself",[1,1,[[25,1,1,0,1,[[815,1,1,0,1]]]],[20738]]],["myself",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22965]]],["separate",[2,2,[[3,2,2,0,2,[[122,2,2,0,2]]]],[3825,3826]]],["separateth",[2,2,[[3,2,2,0,2,[[122,2,2,0,2]]]],[3828,3829]]],["themselves",[2,2,[[2,1,1,0,1,[[111,1,1,0,1]]],[27,1,1,1,2,[[870,1,1,1,2]]]],[3371,22218]]]]},{"k":"H5145","v":[["*",[25,22,[[1,2,2,0,2,[[78,1,1,0,1],[88,1,1,1,2]]],[2,2,2,2,4,[[97,1,1,2,3],[110,1,1,3,4]]],[3,13,10,4,14,[[122,13,10,4,14]]],[9,1,1,14,15,[[267,1,1,14,15]]],[11,1,1,15,16,[[323,1,1,15,16]]],[13,1,1,16,17,[[389,1,1,16,17]]],[18,2,2,17,19,[[566,1,1,17,18],[609,1,1,18,19]]],[19,1,1,19,20,[[654,1,1,19,20]]],[23,1,1,20,21,[[751,1,1,20,21]]],[37,1,1,21,22,[[919,1,1,21,22]]]],[2342,2694,2926,3357,3827,3828,3830,3831,3832,3835,3836,3841,3842,3844,8032,9841,11667,15365,16169,17193,19148,23015]]],["consecration",[2,2,[[3,2,2,0,2,[[122,2,2,0,2]]]],[3830,3832]]],["crown",[11,11,[[1,2,2,0,2,[[78,1,1,0,1],[88,1,1,1,2]]],[2,2,2,2,4,[[97,1,1,2,3],[110,1,1,3,4]]],[9,1,1,4,5,[[267,1,1,4,5]]],[11,1,1,5,6,[[323,1,1,5,6]]],[13,1,1,6,7,[[389,1,1,6,7]]],[18,2,2,7,9,[[566,1,1,7,8],[609,1,1,8,9]]],[19,1,1,9,10,[[654,1,1,9,10]]],[37,1,1,10,11,[[919,1,1,10,11]]]],[2342,2694,2926,3357,8032,9841,11667,15365,16169,17193,23015]]],["hair",[1,1,[[23,1,1,0,1,[[751,1,1,0,1]]]],[19148]]],["separation",[11,8,[[3,11,8,0,8,[[122,11,8,0,8]]]],[3827,3828,3831,3835,3836,3841,3842,3844]]]]},{"k":"H5146","v":[["*",[46,39,[[0,41,35,0,35,[[4,4,3,0,3],[5,7,5,3,8],[6,12,9,8,17],[7,7,7,17,24],[8,9,9,24,33],[9,2,2,33,35]]],[12,1,1,35,36,[[338,1,1,35,36]]],[22,2,1,36,37,[[732,2,1,36,37]]],[25,2,2,37,39,[[815,2,2,37,39]]]],[134,135,137,145,146,147,150,159,160,164,165,166,168,170,172,174,182,184,189,194,196,198,201,203,206,213,222,223,224,225,229,233,234,235,266,10256,18732,20745,20751]]],["Noah",[44,38,[[0,39,34,0,34,[[4,4,3,0,3],[5,7,5,3,8],[6,10,8,8,16],[7,7,7,16,23],[8,9,9,23,32],[9,2,2,32,34]]],[12,1,1,34,35,[[338,1,1,34,35]]],[22,2,1,35,36,[[732,2,1,35,36]]],[25,2,2,36,38,[[815,2,2,36,38]]]],[134,135,137,145,146,147,150,159,160,164,165,166,168,172,174,182,184,189,194,196,198,201,203,206,213,222,223,224,225,229,233,234,235,266,10256,18732,20745,20751]]],["Noah's",[2,2,[[0,2,2,0,2,[[6,2,2,0,2]]]],[170,172]]]]},{"k":"H5147","v":[["Nahbi",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4089]]]]},{"k":"H5148","v":[["*",[39,39,[[0,2,2,0,2,[[23,2,2,0,2]]],[1,4,4,2,6,[[62,2,2,2,4],[64,1,1,4,5],[81,1,1,5,6]]],[3,1,1,6,7,[[139,1,1,6,7]]],[4,1,1,7,8,[[184,1,1,7,8]]],[8,1,1,8,9,[[257,1,1,8,9]]],[10,1,1,9,10,[[300,1,1,9,10]]],[11,1,1,10,11,[[330,1,1,10,11]]],[15,2,2,11,13,[[421,2,2,11,13]]],[17,3,3,13,16,[[447,1,1,13,14],[466,1,1,14,15],[473,1,1,15,16]]],[18,18,18,16,34,[[482,1,1,16,17],[500,1,1,17,18],[504,1,1,18,19],[508,1,1,19,20],[520,1,1,20,21],[537,1,1,21,22],[538,1,1,22,23],[544,1,1,23,24],[550,1,1,24,25],[554,1,1,25,26],[555,3,3,26,29],[584,1,1,29,30],[585,1,1,30,31],[616,2,2,31,33],[620,1,1,33,34]]],[19,3,3,34,37,[[633,1,1,34,35],[638,1,1,35,36],[645,1,1,36,37]]],[22,2,2,37,39,[[735,1,1,37,38],[736,1,1,38,39]]]],[618,639,1884,1888,1933,2472,4423,5770,7791,9105,10035,12523,12530,13151,13606,13825,13981,14238,14296,14334,14569,14816,14821,14897,15044,15113,15127,15166,15185,15729,15752,16249,16263,16303,16562,16691,16917,18783,18797]]],["+",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2472]]],["Lead",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13981]]],["bestowed",[1,1,[[10,1,1,0,1,[[300,1,1,0,1]]]],[9105]]],["bringeth",[2,2,[[18,1,1,0,1,[[584,1,1,0,1]]],[19,1,1,1,2,[[645,1,1,1,2]]]],[15729,16917]]],["brought",[2,2,[[3,1,1,0,1,[[139,1,1,0,1]]],[8,1,1,1,2,[[257,1,1,1,2]]]],[4423,7791]]],["forth",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1933]]],["govern",[1,1,[[18,1,1,0,1,[[544,1,1,0,1]]]],[14897]]],["guide",[4,4,[[17,1,1,0,1,[[473,1,1,0,1]]],[18,1,1,1,2,[[550,1,1,1,2]]],[19,1,1,2,3,[[638,1,1,2,3]]],[22,1,1,3,4,[[736,1,1,3,4]]]],[13825,15044,16691,18797]]],["guided",[2,2,[[17,1,1,0,1,[[466,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[13606,15185]]],["lead",[14,14,[[1,1,1,0,1,[[62,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[18,9,9,3,12,[[504,1,1,3,4],[508,1,1,4,5],[520,1,1,5,6],[537,1,1,6,7],[538,1,1,7,8],[585,1,1,8,9],[616,2,2,9,11],[620,1,1,11,12]]],[19,1,1,12,13,[[633,1,1,12,13]]],[22,1,1,13,14,[[735,1,1,13,14]]]],[1888,5770,12530,14296,14334,14569,14816,14821,15752,16249,16263,16303,16562,18783]]],["leadeth",[1,1,[[18,1,1,0,1,[[500,1,1,0,1]]]],[14238]]],["led",[5,5,[[0,2,2,0,2,[[23,2,2,0,2]]],[1,1,1,2,3,[[62,1,1,2,3]]],[18,2,2,3,5,[[555,2,2,3,5]]]],[618,639,1884,15127,15166]]],["leddest",[2,2,[[15,1,1,0,1,[[421,1,1,0,1]]],[18,1,1,1,2,[[554,1,1,1,2]]]],[12523,15113]]],["put",[1,1,[[11,1,1,0,1,[[330,1,1,0,1]]]],[10035]]],["straiteneth",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13151]]]]},{"k":"H5149","v":[["Nehum",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12427]]]]},{"k":"H5150","v":[["*",[3,3,[[22,1,1,0,1,[[735,1,1,0,1]]],[27,1,1,1,2,[[872,1,1,1,2]]],[37,1,1,2,3,[[911,1,1,2,3]]]],[18783,22248,22891]]],["comfortable",[1,1,[[37,1,1,0,1,[[911,1,1,0,1]]]],[22891]]],["comforts",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18783]]],["repentings",[1,1,[[27,1,1,0,1,[[872,1,1,0,1]]]],[22248]]]]},{"k":"H5151","v":[["Nahum",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22685]]]]},{"k":"H5152","v":[["*",[18,17,[[0,16,15,0,15,[[10,8,7,0,7],[21,2,2,7,9],[23,4,4,9,13],[28,1,1,13,14],[30,1,1,14,15]]],[5,1,1,15,16,[[210,1,1,15,16]]],[12,1,1,16,17,[[338,1,1,16,17]]]],[288,289,290,291,292,293,295,567,570,601,606,615,638,800,926,6478,10278]]],["Nachor",[1,1,[[5,1,1,0,1,[[210,1,1,0,1]]]],[6478]]],["Nahor",[15,15,[[0,14,14,0,14,[[10,7,7,0,7],[21,2,2,7,9],[23,3,3,9,12],[28,1,1,12,13],[30,1,1,13,14]]],[12,1,1,14,15,[[338,1,1,14,15]]]],[288,289,290,291,292,293,295,567,570,601,606,615,800,926,10278]]],["Nahor's",[2,2,[[0,2,2,0,2,[[10,1,1,0,1],[23,1,1,1,2]]]],[295,638]]]]},{"k":"H5153","v":[["brass",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12990]]]]},{"k":"H5154","v":[["*",[10,10,[[2,1,1,0,1,[[115,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,4,4,2,6,[[455,1,1,2,3],[463,1,1,3,4],[475,1,1,4,5],[476,1,1,5,6]]],[18,1,1,6,7,[[495,1,1,6,7]]],[22,2,2,7,9,[[723,1,1,7,8],[726,1,1,8,9]]],[32,1,1,9,10,[[896,1,1,9,10]]]],[3543,8637,13350,13506,13882,13915,14152,18563,18618,22633]]],["brass",[7,7,[[2,1,1,0,1,[[115,1,1,0,1]]],[17,3,3,1,4,[[463,1,1,1,2],[475,1,1,2,3],[476,1,1,3,4]]],[22,2,2,4,6,[[723,1,1,4,5],[726,1,1,5,6]]],[32,1,1,6,7,[[896,1,1,6,7]]]],[3543,13506,13882,13915,18563,18618,22633]]],["steel",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[455,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]]],[8637,13350,14152]]]]},{"k":"H5155","v":[]},{"k":"H5156","v":[["+",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13908]]]]},{"k":"H5157","v":[["*",[59,57,[[1,3,3,0,3,[[72,1,1,0,1],[81,1,1,1,2],[83,1,1,2,3]]],[2,1,1,3,4,[[114,1,1,3,4]]],[3,13,12,4,16,[[134,3,3,4,7],[142,1,1,7,8],[148,2,2,8,10],[149,2,1,10,11],[150,4,4,11,15],[151,1,1,15,16]]],[4,8,8,16,24,[[153,1,1,16,17],[155,1,1,17,18],[164,1,1,18,19],[171,2,2,19,21],[173,1,1,21,22],[183,1,1,22,23],[184,1,1,23,24]]],[5,9,8,24,32,[[187,1,1,24,25],[199,1,1,25,26],[200,2,1,26,27],[202,1,1,27,28],[203,1,1,28,29],[205,3,3,29,32]]],[6,1,1,32,33,[[221,1,1,32,33]]],[8,1,1,33,34,[[237,1,1,33,34]]],[12,1,1,34,35,[[365,1,1,34,35]]],[17,1,1,35,36,[[442,1,1,35,36]]],[18,3,3,36,39,[[546,1,1,36,37],[559,1,1,37,38],[596,1,1,38,39]]],[19,6,6,39,45,[[630,1,1,39,40],[635,1,1,40,41],[638,1,1,41,42],[640,1,1,42,43],[641,1,1,43,44],[655,1,1,44,45]]],[22,3,3,45,48,[[692,1,1,45,46],[727,1,1,46,47],[735,1,1,47,48]]],[23,3,3,48,51,[[747,1,1,48,49],[756,1,1,49,50],[760,1,1,50,51]]],[25,3,3,51,54,[[847,1,1,51,52],[848,2,2,52,54]]],[35,1,1,54,55,[[907,1,1,54,55]]],[37,2,2,55,57,[[912,1,1,55,56],[918,1,1,56,57]]]],[2174,2451,2505,3515,4277,4280,4281,4544,4736,4737,4814,4829,4833,4834,4845,4853,4930,5003,5250,5409,5420,5463,5735,5766,5857,6186,6188,6269,6281,6330,6370,6372,6831,7248,11151,13011,14971,15241,16009,16490,16623,16717,16769,16790,17206,17930,18644,18778,19020,19263,19355,21673,21692,21693,22814,22911,22988]]],["+",[16,16,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[3,5,5,2,7,[[134,1,1,2,3],[149,1,1,3,4],[150,3,3,4,7]]],[4,3,3,7,10,[[155,1,1,7,8],[164,1,1,8,9],[173,1,1,9,10]]],[5,3,3,10,13,[[187,1,1,10,11],[203,1,1,11,12],[205,1,1,12,13]]],[25,1,1,13,14,[[848,1,1,13,14]]],[37,2,2,14,16,[[912,1,1,14,15],[918,1,1,15,16]]]],[2174,3515,4277,4814,4833,4834,4845,5003,5250,5463,5857,6281,6370,21692,22911,22988]]],["divided",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5766]]],["have",[2,2,[[3,2,2,0,2,[[134,2,2,0,2]]]],[4280,4281]]],["heritage",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16009]]],["inherit",[20,20,[[1,1,1,0,1,[[81,1,1,0,1]]],[3,4,4,1,5,[[142,1,1,1,2],[148,1,1,2,3],[149,1,1,3,4],[150,1,1,4,5]]],[4,4,4,5,9,[[153,1,1,5,6],[171,2,2,6,8],[183,1,1,8,9]]],[6,1,1,9,10,[[221,1,1,9,10]]],[8,1,1,10,11,[[237,1,1,10,11]]],[18,2,2,11,13,[[546,1,1,11,12],[559,1,1,12,13]]],[19,4,4,13,17,[[630,1,1,13,14],[635,1,1,14,15],[638,1,1,15,16],[641,1,1,16,17]]],[22,1,1,17,18,[[727,1,1,17,18]]],[23,1,1,18,19,[[756,1,1,18,19]]],[25,1,1,19,20,[[848,1,1,19,20]]]],[2451,4544,4737,4814,4829,4930,5409,5420,5735,6831,7248,14971,15241,16490,16623,16717,16790,18644,19263,21693]]],["inheritance",[10,10,[[1,1,1,0,1,[[83,1,1,0,1]]],[5,5,5,1,6,[[199,1,1,1,2],[200,1,1,2,3],[202,1,1,3,4],[205,2,2,4,6]]],[12,1,1,6,7,[[365,1,1,6,7]]],[19,1,1,7,8,[[640,1,1,7,8]]],[23,1,1,8,9,[[747,1,1,8,9]]],[25,1,1,9,10,[[847,1,1,9,10]]]],[2505,6186,6188,6269,6330,6372,11151,16769,19020,21673]]],["inherited",[3,3,[[3,1,1,0,1,[[148,1,1,0,1]]],[5,1,1,1,2,[[200,1,1,1,2]]],[23,1,1,2,3,[[760,1,1,2,3]]]],[4736,6188,19355]]],["inheriteth",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4853]]],["possess",[4,4,[[17,1,1,0,1,[[442,1,1,0,1]]],[22,2,2,1,3,[[692,1,1,1,2],[735,1,1,2,3]]],[35,1,1,3,4,[[907,1,1,3,4]]]],[13011,17930,18778,22814]]],["possession",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17206]]]]},{"k":"H5158","v":[["*",[141,123,[[0,3,3,0,3,[[25,2,2,0,2],[31,1,1,2,3]]],[2,3,3,3,6,[[100,2,2,3,5],[112,1,1,5,6]]],[3,8,8,6,14,[[129,2,2,6,8],[137,3,3,8,11],[140,1,1,11,12],[148,1,1,12,13],[150,1,1,13,14]]],[4,20,15,14,29,[[153,1,1,14,15],[154,7,5,15,20],[155,5,3,20,23],[156,1,1,23,24],[160,1,1,24,25],[161,1,1,25,26],[162,1,1,26,27],[173,3,2,27,29]]],[5,16,10,29,39,[[198,4,2,29,31],[199,4,2,31,33],[201,3,3,33,36],[202,1,1,36,37],[203,3,1,37,38],[205,1,1,38,39]]],[6,6,4,39,43,[[214,2,2,39,41],[215,3,1,41,42],[226,1,1,42,43]]],[8,5,5,43,48,[[250,1,1,43,44],[252,1,1,44,45],[265,3,3,45,48]]],[9,5,5,48,53,[[281,1,1,48,49],[283,1,1,49,50],[288,1,1,50,51],[289,1,1,51,52],[290,1,1,52,53]]],[10,10,10,53,63,[[292,1,1,53,54],[298,1,1,54,55],[305,1,1,55,56],[307,5,5,56,61],[308,2,2,61,63]]],[11,7,6,63,69,[[315,2,2,63,65],[322,1,1,65,66],[335,3,2,66,68],[336,1,1,68,69]]],[12,1,1,69,70,[[348,1,1,69,70]]],[13,7,7,70,77,[[373,1,1,70,71],[381,1,1,71,72],[386,1,1,72,73],[395,1,1,73,74],[396,1,1,74,75],[398,1,1,75,76],[399,1,1,76,77]]],[15,1,1,77,78,[[414,1,1,77,78]]],[17,8,7,78,85,[[441,2,1,78,79],[455,1,1,79,80],[456,1,1,80,81],[457,1,1,81,82],[463,1,1,82,83],[465,1,1,83,84],[475,1,1,84,85]]],[18,8,8,85,93,[[495,1,1,85,86],[513,1,1,86,87],[551,1,1,87,88],[555,1,1,88,89],[560,1,1,89,90],[581,1,1,90,91],[587,1,1,91,92],[601,1,1,92,93]]],[19,2,2,93,95,[[645,1,1,93,94],[657,1,1,94,95]]],[20,2,1,95,96,[[659,2,1,95,96]]],[21,1,1,96,97,[[676,1,1,96,97]]],[22,11,11,97,108,[[685,1,1,97,98],[689,1,1,98,99],[693,1,1,99,100],[705,1,1,100,101],[708,2,2,101,103],[712,1,1,103,104],[713,1,1,104,105],[735,2,2,105,107],[744,1,1,107,108]]],[23,3,3,108,111,[[775,2,2,108,110],[791,1,1,110,111]]],[24,1,1,111,112,[[798,1,1,111,112]]],[25,9,7,112,119,[[848,8,6,112,118],[849,1,1,118,119]]],[28,1,1,119,120,[[878,1,1,119,120]]],[29,2,2,120,122,[[883,1,1,120,121],[884,1,1,121,122]]],[32,1,1,122,123,[[898,1,1,122,123]]]],[709,711,951,3006,3007,3442,4098,4099,4352,4354,4355,4452,4727,4821,4916,4951,4952,4962,4974,4975,4983,4987,4991,5052,5144,5178,5193,5451,5453,6131,6132,6163,6170,6206,6209,6249,6273,6284,6332,6606,6612,6644,6953,7565,7658,7987,7988,7999,8412,8462,8607,8683,8697,8807,9050,9262,9320,9321,9322,9323,9324,9346,9381,9592,9593,9826,10171,10177,10209,10705,11332,11506,11603,11807,11841,11879,11922,12322,12993,13343,13388,13413,13508,13563,13886,14122,14446,15063,15133,15250,15581,15793,16106,16905,17268,17322,17625,17801,17899,17967,18163,18245,18250,18312,18326,18770,18771,18934,19700,19731,20075,20350,21684,21685,21686,21688,21691,21698,21730,22361,22447,22464,22655]]],["+",[8,8,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,1,1,1,2,[[198,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[10,1,1,3,4,[[307,1,1,3,4]]],[11,1,1,4,5,[[336,1,1,4,5]]],[12,1,1,5,6,[[348,1,1,5,6]]],[18,1,1,6,7,[[587,1,1,6,7]]],[20,1,1,7,8,[[659,1,1,7,8]]]],[4983,6131,8683,9321,10209,10705,15793,17322]]],["brook",[35,33,[[0,1,1,0,1,[[31,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[3,2,2,2,4,[[129,2,2,2,4]]],[4,4,3,4,7,[[154,3,2,4,6],[161,1,1,6,7]]],[8,4,4,7,11,[[252,1,1,7,8],[265,3,3,8,11]]],[9,1,1,11,12,[[281,1,1,11,12]]],[10,7,7,12,19,[[292,1,1,12,13],[305,1,1,13,14],[307,4,4,14,18],[308,1,1,18,19]]],[11,3,2,19,21,[[335,3,2,19,21]]],[13,5,5,21,26,[[381,1,1,21,22],[386,1,1,22,23],[395,1,1,23,24],[396,1,1,24,25],[398,1,1,25,26]]],[15,1,1,26,27,[[414,1,1,26,27]]],[17,2,2,27,29,[[441,1,1,27,28],[475,1,1,28,29]]],[18,1,1,29,30,[[560,1,1,29,30]]],[19,1,1,30,31,[[645,1,1,30,31]]],[22,1,1,31,32,[[693,1,1,31,32]]],[23,1,1,32,33,[[775,1,1,32,33]]]],[951,3442,4098,4099,4951,4952,5178,7658,7987,7988,7999,8412,8807,9262,9320,9322,9323,9324,9381,10171,10177,11506,11603,11807,11841,11879,12322,12993,13886,15250,16905,17967,19731]]],["brooks",[7,7,[[3,2,2,0,2,[[137,2,2,0,2]]],[4,1,1,2,3,[[160,1,1,2,3]]],[10,1,1,3,4,[[308,1,1,3,4]]],[17,3,3,4,7,[[441,1,1,4,5],[455,1,1,5,6],[457,1,1,6,7]]]],[4354,4355,5144,9346,12993,13343,13413]]],["flood",[3,3,[[17,1,1,0,1,[[463,1,1,0,1]]],[18,1,1,1,2,[[551,1,1,1,2]]],[23,1,1,2,3,[[791,1,1,2,3]]]],[13508,15063,20075]]],["floods",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8607,14122]]],["river",[45,34,[[3,1,1,0,1,[[150,1,1,0,1]]],[4,8,6,1,7,[[154,4,3,1,4],[155,3,2,4,6],[156,1,1,6,7]]],[5,15,9,7,16,[[198,3,1,7,8],[199,4,2,8,10],[201,3,3,10,13],[202,1,1,13,14],[203,3,1,14,15],[205,1,1,15,16]]],[6,5,3,16,19,[[214,2,2,16,18],[215,3,1,18,19]]],[9,2,2,19,21,[[283,1,1,19,20],[290,1,1,20,21]]],[10,1,1,21,22,[[298,1,1,21,22]]],[11,1,1,22,23,[[322,1,1,22,23]]],[13,1,1,23,24,[[373,1,1,23,24]]],[18,1,1,24,25,[[513,1,1,24,25]]],[24,1,1,25,26,[[798,1,1,25,26]]],[25,8,7,26,33,[[848,7,6,26,32],[849,1,1,32,33]]],[29,1,1,33,34,[[884,1,1,33,34]]]],[4821,4962,4974,4975,4987,4991,5052,6132,6163,6170,6206,6209,6249,6273,6284,6332,6606,6612,6644,8462,8697,9050,9826,11332,14446,20350,21684,21685,21686,21688,21691,21698,21730,22464]]],["rivers",[7,7,[[2,2,2,0,2,[[100,2,2,0,2]]],[4,1,1,2,3,[[162,1,1,2,3]]],[20,1,1,3,4,[[659,1,1,3,4]]],[23,1,1,4,5,[[775,1,1,4,5]]],[25,1,1,5,6,[[848,1,1,5,6]]],[32,1,1,6,7,[[898,1,1,6,7]]]],[3006,3007,5193,17322,19700,21688,22655]]],["stream",[7,7,[[18,1,1,0,1,[[601,1,1,0,1]]],[22,5,5,1,6,[[705,1,1,1,2],[708,2,2,2,4],[735,1,1,4,5],[744,1,1,5,6]]],[29,1,1,6,7,[[883,1,1,6,7]]]],[16106,18163,18245,18250,18771,18934,22447]]],["streams",[4,4,[[18,1,1,0,1,[[555,1,1,0,1]]],[22,3,3,1,4,[[689,1,1,1,2],[712,1,1,2,3],[713,1,1,3,4]]]],[15133,17899,18312,18326]]],["valley",[18,17,[[0,2,2,0,2,[[25,2,2,0,2]]],[3,2,2,2,4,[[137,1,1,2,3],[148,1,1,3,4]]],[4,5,4,4,8,[[153,1,1,4,5],[155,1,1,5,6],[173,3,2,6,8]]],[6,1,1,8,9,[[226,1,1,8,9]]],[8,1,1,9,10,[[250,1,1,9,10]]],[11,2,2,10,12,[[315,2,2,10,12]]],[13,1,1,12,13,[[399,1,1,12,13]]],[17,1,1,13,14,[[456,1,1,13,14]]],[19,1,1,14,15,[[657,1,1,14,15]]],[21,1,1,15,16,[[676,1,1,15,16]]],[28,1,1,16,17,[[878,1,1,16,17]]]],[709,711,4352,4727,4916,4991,5451,5453,6953,7565,9592,9593,11922,13388,17268,17625,22361]]],["valleys",[5,5,[[3,1,1,0,1,[[140,1,1,0,1]]],[17,1,1,1,2,[[465,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[22,2,2,3,5,[[685,1,1,3,4],[735,1,1,4,5]]]],[4452,13563,15581,17801,18770]]]]},{"k":"H5159","v":[["*",[222,191,[[0,2,2,0,2,[[30,1,1,0,1],[47,1,1,1,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[3,46,31,3,34,[[132,1,1,3,4],[134,6,5,4,9],[142,6,4,9,13],[143,6,5,13,18],[148,3,3,18,21],[149,2,1,21,22],[150,3,3,22,25],[151,2,2,25,27],[152,17,7,27,34]]],[4,25,22,34,56,[[156,3,3,34,37],[161,2,2,37,39],[162,2,1,39,40],[164,2,2,40,42],[166,2,2,42,44],[167,1,1,44,45],[170,4,2,45,47],[171,2,2,47,49],[172,1,1,49,50],[173,1,1,50,51],[176,1,1,51,52],[177,1,1,52,53],[178,1,1,53,54],[181,1,1,54,55],[184,1,1,55,56]]],[5,50,43,56,99,[[197,1,1,56,57],[199,9,7,57,64],[200,6,5,64,69],[201,1,1,69,70],[202,3,3,70,73],[203,4,3,73,76],[204,6,5,76,81],[205,15,13,81,94],[207,1,1,94,95],[209,1,1,95,96],[210,3,3,96,99]]],[6,7,6,99,105,[[212,2,2,99,101],[228,2,1,101,102],[230,1,1,102,103],[231,2,2,103,105]]],[7,3,3,105,108,[[235,3,3,105,108]]],[8,2,2,108,110,[[245,1,1,108,109],[261,1,1,109,110]]],[9,4,4,110,114,[[280,1,1,110,111],[286,2,2,111,113],[287,1,1,113,114]]],[10,6,6,114,120,[[298,3,3,114,117],[302,1,1,117,118],[311,2,2,118,120]]],[11,1,1,120,121,[[333,1,1,120,121]]],[12,1,1,121,122,[[353,1,1,121,122]]],[13,2,2,122,124,[[372,1,1,122,123],[376,1,1,123,124]]],[15,1,1,124,125,[[423,1,1,124,125]]],[17,4,4,125,129,[[455,1,1,125,126],[462,1,1,126,127],[466,1,1,127,128],[477,1,1,128,129]]],[18,23,22,129,151,[[479,1,1,129,130],[493,1,1,130,131],[505,1,1,131,132],[510,1,1,132,133],[514,1,1,133,134],[524,1,1,134,135],[545,1,1,135,136],[551,1,1,136,137],[555,3,3,137,140],[556,1,1,140,141],[571,2,2,141,143],[582,1,1,143,144],[583,2,2,144,146],[588,1,1,146,147],[604,1,1,147,148],[612,2,1,148,149],[613,2,2,149,151]]],[19,3,3,151,154,[[644,1,1,151,152],[646,1,1,152,153],[647,1,1,153,154]]],[20,1,1,154,155,[[665,1,1,154,155]]],[22,6,6,155,161,[[697,1,1,155,156],[725,1,1,156,157],[727,1,1,157,158],[732,1,1,158,159],[736,1,1,159,160],[741,1,1,160,161]]],[23,12,12,161,173,[[746,1,1,161,162],[747,1,1,162,163],[754,1,1,163,164],[756,5,5,164,169],[760,1,1,169,170],[761,1,1,170,171],[794,1,1,171,172],[795,1,1,172,173]]],[24,1,1,173,174,[[801,1,1,173,174]]],[25,15,11,174,185,[[836,1,1,174,175],[837,1,1,175,176],[845,2,1,176,177],[846,1,1,177,178],[847,5,3,178,181],[848,4,3,181,184],[849,1,1,184,185]]],[28,2,2,185,187,[[877,1,1,185,186],[878,1,1,186,187]]],[32,3,3,187,190,[[894,1,1,187,188],[899,2,2,188,190]]],[38,1,1,190,191,[[925,1,1,190,191]]]],[887,1457,1937,4208,4277,4278,4280,4281,4283,4542,4543,4545,4551,4561,4562,4563,4564,4565,4736,4737,4750,4814,4818,4830,4831,4847,4853,4881,4882,4883,4886,4887,4888,4891,5024,5025,5042,5183,5186,5195,5249,5252,5317,5319,5323,5385,5386,5416,5420,5443,5470,5529,5566,5567,5687,5767,6130,6160,6161,6162,6168,6177,6182,6187,6189,6190,6196,6200,6201,6222,6270,6273,6274,6279,6281,6289,6295,6297,6300,6313,6321,6322,6323,6329,6330,6331,6337,6344,6352,6360,6362,6369,6370,6372,6384,6464,6504,6506,6508,6551,6554,6994,7060,7125,7126,7195,7196,7200,7419,7924,8372,8555,8573,8583,9021,9036,9038,9167,9454,9455,10133,10838,11309,11411,12608,13355,13494,13590,13937,13953,14098,14308,14378,14468,14629,14909,15050,15168,15175,15184,15186,15436,15445,15617,15656,15691,15799,16124,16187,16217,16218,16875,16939,16975,17440,18029,18605,18644,18740,18800,18883,18972,19021,19217,19256,19257,19258,19263,19264,19354,19361,20177,20231,20444,21359,21371,21627,21631,21671,21672,21673,21693,21701,21702,21731,22328,22345,22597,22678,22682,23092]]],["+",[11,11,[[3,3,3,0,3,[[151,1,1,0,1],[152,2,2,1,3]]],[5,2,2,3,5,[[203,1,1,3,4],[207,1,1,4,5]]],[9,1,1,5,6,[[280,1,1,5,6]]],[18,1,1,6,7,[[556,1,1,6,7]]],[23,1,1,7,8,[[761,1,1,7,8]]],[25,3,3,8,11,[[847,2,2,8,10],[849,1,1,10,11]]]],[4847,4882,4883,6281,6384,8372,15186,19361,21672,21673,21731]]],["heritage",[25,24,[[17,2,2,0,2,[[455,1,1,0,1],[462,1,1,1,2]]],[18,8,7,2,9,[[493,1,1,2,3],[571,1,1,3,4],[588,1,1,4,5],[604,1,1,5,6],[612,2,1,6,7],[613,2,2,7,9]]],[22,2,2,9,11,[[732,1,1,9,10],[736,1,1,10,11]]],[23,7,7,11,18,[[746,1,1,11,12],[747,1,1,12,13],[756,4,4,13,17],[794,1,1,17,18]]],[28,2,2,18,20,[[877,1,1,18,19],[878,1,1,19,20]]],[32,3,3,20,23,[[894,1,1,20,21],[899,2,2,21,23]]],[38,1,1,23,24,[[925,1,1,23,24]]]],[13355,13494,14098,15436,15799,16124,16187,16217,16218,18740,18800,18972,19021,19256,19257,19258,19264,20177,22328,22345,22597,22678,22682,23092]]],["heritages",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18644]]],["inherit",[2,2,[[3,1,1,0,1,[[134,1,1,0,1]]],[5,1,1,1,2,[[203,1,1,1,2]]]],[4281,6289]]],["inheritance",[181,155,[[0,2,2,0,2,[[30,1,1,0,1],[47,1,1,1,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[3,41,29,3,32,[[132,1,1,3,4],[134,5,5,4,9],[142,5,3,9,12],[143,6,5,12,17],[148,3,3,17,20],[149,2,1,20,21],[150,3,3,21,24],[151,1,1,24,25],[152,15,7,25,32]]],[4,25,22,32,54,[[156,3,3,32,35],[161,2,2,35,37],[162,2,1,37,38],[164,2,2,38,40],[166,2,2,40,42],[167,1,1,42,43],[170,4,2,43,45],[171,2,2,45,47],[172,1,1,47,48],[173,1,1,48,49],[176,1,1,49,50],[177,1,1,50,51],[178,1,1,51,52],[181,1,1,52,53],[184,1,1,53,54]]],[5,46,39,54,93,[[197,1,1,54,55],[199,9,7,55,62],[200,6,5,62,67],[201,1,1,67,68],[202,3,3,68,71],[203,2,1,71,72],[204,6,5,72,77],[205,14,12,77,89],[209,1,1,89,90],[210,3,3,90,93]]],[6,7,6,93,99,[[212,2,2,93,95],[228,2,1,95,96],[230,1,1,96,97],[231,2,2,97,99]]],[7,3,3,99,102,[[235,3,3,99,102]]],[8,2,2,102,104,[[245,1,1,102,103],[261,1,1,103,104]]],[9,3,3,104,107,[[286,2,2,104,106],[287,1,1,106,107]]],[10,6,6,107,113,[[298,3,3,107,110],[302,1,1,110,111],[311,2,2,111,113]]],[11,1,1,113,114,[[333,1,1,113,114]]],[12,1,1,114,115,[[353,1,1,114,115]]],[13,2,2,115,117,[[372,1,1,115,116],[376,1,1,116,117]]],[15,1,1,117,118,[[423,1,1,117,118]]],[17,2,2,118,120,[[466,1,1,118,119],[477,1,1,119,120]]],[18,14,14,120,134,[[479,1,1,120,121],[505,1,1,121,122],[510,1,1,122,123],[514,1,1,123,124],[524,1,1,124,125],[545,1,1,125,126],[551,1,1,126,127],[555,3,3,127,130],[571,1,1,130,131],[582,1,1,131,132],[583,2,2,132,134]]],[19,3,3,134,137,[[644,1,1,134,135],[646,1,1,135,136],[647,1,1,136,137]]],[20,1,1,137,138,[[665,1,1,137,138]]],[22,3,3,138,141,[[697,1,1,138,139],[725,1,1,139,140],[741,1,1,140,141]]],[23,4,4,141,145,[[754,1,1,141,142],[756,1,1,142,143],[760,1,1,143,144],[795,1,1,144,145]]],[24,1,1,145,146,[[801,1,1,145,146]]],[25,12,9,146,155,[[836,1,1,146,147],[837,1,1,147,148],[845,2,1,148,149],[846,1,1,149,150],[847,3,2,150,152],[848,4,3,152,155]]]],[887,1457,1937,4208,4277,4278,4280,4281,4283,4542,4543,4551,4561,4562,4563,4564,4565,4736,4737,4750,4814,4818,4830,4831,4853,4881,4882,4883,4886,4887,4888,4891,5024,5025,5042,5183,5186,5195,5249,5252,5317,5319,5323,5385,5386,5416,5420,5443,5470,5529,5566,5567,5687,5767,6130,6160,6161,6162,6168,6177,6182,6187,6189,6190,6196,6200,6201,6222,6270,6273,6274,6279,6295,6297,6300,6313,6321,6322,6323,6329,6330,6331,6337,6344,6352,6360,6362,6369,6370,6464,6504,6506,6508,6551,6554,6994,7060,7125,7126,7195,7196,7200,7419,7924,8555,8573,8583,9021,9036,9038,9167,9454,9455,10133,10838,11309,11411,12608,13590,13937,13953,14308,14378,14468,14629,14909,15050,15168,15175,15184,15445,15617,15656,15691,16875,16939,16975,17440,18029,18605,18883,19217,19263,19354,20231,20444,21359,21371,21627,21631,21671,21672,21693,21701,21702]]],["inheritances",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6372]]],["possession",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4545]]]]},{"k":"H5160","v":[["*",[2,1,[[3,2,1,0,1,[[137,2,1,0,1]]]],[4359]]],["+",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4359]]],["Nahaliel",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4359]]]]},{"k":"H5161","v":[["Nehelamite",[3,3,[[23,3,3,0,3,[[773,3,3,0,3]]]],[19659,19666,19667]]]]},{"k":"H5162","v":[["*",[108,100,[[0,9,8,0,8,[[4,1,1,0,1],[5,2,2,1,3],[23,1,1,3,4],[26,1,1,4,5],[36,2,1,5,6],[37,1,1,6,7],[49,1,1,7,8]]],[1,3,3,8,11,[[62,1,1,8,9],[81,2,2,9,11]]],[3,1,1,11,12,[[139,1,1,11,12]]],[4,1,1,12,13,[[184,1,1,12,13]]],[6,3,3,13,16,[[212,1,1,13,14],[231,2,2,14,16]]],[7,1,1,16,17,[[233,1,1,16,17]]],[8,4,3,17,20,[[250,4,3,17,20]]],[9,5,5,20,25,[[276,2,2,20,22],[278,1,1,22,23],[279,1,1,23,24],[290,1,1,24,25]]],[12,5,4,25,29,[[344,1,1,25,26],[356,3,2,26,28],[358,1,1,28,29]]],[17,7,7,29,36,[[437,1,1,29,30],[442,1,1,30,31],[451,1,1,31,32],[456,1,1,32,33],[464,1,1,33,34],[477,2,2,34,36]]],[18,12,12,36,48,[[500,1,1,36,37],[546,1,1,37,38],[548,1,1,38,39],[554,1,1,39,40],[563,1,1,40,41],[567,1,1,41,42],[583,1,1,42,43],[587,1,1,43,44],[596,3,3,44,47],[612,1,1,47,48]]],[20,2,1,48,49,[[662,2,1,48,49]]],[22,17,13,49,62,[[679,1,1,49,50],[690,1,1,50,51],[700,1,1,51,52],[718,2,1,52,53],[727,1,1,53,54],[729,4,3,54,57],[730,1,1,57,58],[732,1,1,58,59],[735,1,1,59,60],[739,1,1,60,61],[744,3,1,61,62]]],[23,14,14,62,76,[[748,1,1,62,63],[752,1,1,63,64],[759,1,1,64,65],[760,1,1,65,66],[762,2,2,66,68],[764,1,1,68,69],[770,3,3,69,72],[775,3,3,72,75],[786,1,1,75,76]]],[24,6,6,76,82,[[797,5,5,76,81],[798,1,1,81,82]]],[25,7,7,82,89,[[806,1,1,82,83],[815,2,2,83,85],[817,1,1,85,86],[825,1,1,86,87],[832,1,1,87,88],[833,1,1,88,89]]],[28,2,2,89,91,[[877,2,2,89,91]]],[29,2,2,91,93,[[885,2,2,91,93]]],[31,3,3,93,96,[[891,2,2,93,95],[892,1,1,95,96]]],[33,1,1,96,97,[[902,1,1,96,97]]],[37,3,3,97,100,[[911,1,1,97,98],[918,1,1,98,99],[920,1,1,99,100]]]],[134,143,144,658,769,1118,1131,1527,1884,2450,2452,4435,5794,6563,7108,7117,7162,7571,7589,7595,8242,8243,8310,8356,8708,10557,10909,10910,10949,12902,13021,13240,13389,13557,13928,13933,14239,14955,14997,15095,15301,15391,15696,15790,15950,15974,15980,16189,17382,17678,17901,18056,18421,18649,18676,18685,18692,18705,18734,18771,18845,18935,19055,19159,19321,19343,19392,19394,19438,19575,19585,19591,19704,19706,19710,19985,20312,20319,20326,20327,20331,20345,20559,20753,20754,20816,21070,21246,21279,22324,22325,22467,22470,22567,22568,22570,22719,22895,22990,23018]]],["+",[2,2,[[9,1,1,0,1,[[278,1,1,0,1]]],[37,1,1,1,2,[[911,1,1,1,2]]]],[8310,22895]]],["Comfort",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18421]]],["comfort",[30,28,[[0,2,2,0,2,[[4,1,1,0,1],[36,1,1,1,2]]],[9,1,1,2,3,[[276,1,1,2,3]]],[12,3,2,3,5,[[344,1,1,3,4],[356,2,1,4,5]]],[17,3,3,5,8,[[437,1,1,5,6],[442,1,1,6,7],[456,1,1,7,8]]],[18,4,4,8,12,[[500,1,1,8,9],[548,1,1,9,10],[596,2,2,10,12]]],[22,8,7,12,19,[[700,1,1,12,13],[718,1,1,13,14],[729,3,2,14,16],[735,1,1,16,17],[739,1,1,17,18],[744,1,1,18,19]]],[23,2,2,19,21,[[760,1,1,19,20],[775,1,1,20,21]]],[24,4,4,21,25,[[797,3,3,21,24],[798,1,1,24,25]]],[25,2,2,25,27,[[815,1,1,25,26],[817,1,1,26,27]]],[37,1,1,27,28,[[920,1,1,27,28]]]],[134,1118,8242,10557,10909,12902,13021,13389,14239,14997,15974,15980,18056,18421,18676,18692,18771,18845,18935,19343,19704,20312,20327,20331,20345,20754,20816,23018]]],["comforted",[18,18,[[0,4,4,0,4,[[23,1,1,0,1],[36,1,1,1,2],[37,1,1,2,3],[49,1,1,3,4]]],[7,1,1,4,5,[[233,1,1,4,5]]],[9,1,1,5,6,[[279,1,1,5,6]]],[17,1,1,6,7,[[477,1,1,6,7]]],[18,2,2,7,9,[[554,1,1,7,8],[563,1,1,8,9]]],[22,4,4,9,13,[[727,1,1,9,10],[730,1,1,10,11],[732,1,1,11,12],[744,1,1,12,13]]],[23,1,1,13,14,[[775,1,1,13,14]]],[25,4,4,14,18,[[806,1,1,14,15],[815,1,1,15,16],[832,1,1,16,17],[833,1,1,17,18]]]],[658,1118,1131,1527,7162,8356,13933,15095,15301,18649,18705,18734,18935,19706,20559,20753,21246,21279]]],["comfortedst",[1,1,[[22,1,1,0,1,[[690,1,1,0,1]]]],[17901]]],["comforter",[4,3,[[20,2,1,0,1,[[662,2,1,0,1]]],[24,2,2,1,3,[[797,2,2,1,3]]]],[17382,20319,20326]]],["comforters",[5,5,[[9,1,1,0,1,[[276,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]],[17,1,1,2,3,[[451,1,1,2,3]]],[18,1,1,3,4,[[546,1,1,3,4]]],[33,1,1,4,5,[[902,1,1,4,5]]]],[8243,10910,13240,14955,22719]]],["comforteth",[3,3,[[17,1,1,0,1,[[464,1,1,0,1]]],[22,2,2,1,3,[[729,1,1,1,2],[744,1,1,2,3]]]],[13557,18685,18935]]],["ease",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17678]]],["him",[2,2,[[9,1,1,0,1,[[290,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]]],[8708,10949]]],["himself",[3,3,[[0,1,1,0,1,[[26,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[18,1,1,2,3,[[612,1,1,2,3]]]],[769,5794,16189]]],["me",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7571]]],["myself",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15950]]],["repent",[17,16,[[1,2,2,0,2,[[62,1,1,0,1],[81,1,1,1,2]]],[3,1,1,2,3,[[139,1,1,2,3]]],[8,2,1,3,4,[[250,2,1,3,4]]],[17,1,1,4,5,[[477,1,1,4,5]]],[18,2,2,5,7,[[567,1,1,5,6],[587,1,1,6,7]]],[23,6,6,7,13,[[748,1,1,7,8],[762,2,2,8,10],[770,2,2,10,12],[786,1,1,12,13]]],[25,1,1,13,14,[[825,1,1,13,14]]],[28,1,1,14,15,[[877,1,1,14,15]]],[31,1,1,15,16,[[891,1,1,15,16]]]],[1884,2450,4435,7589,13928,15391,15790,19055,19392,19394,19575,19585,19985,21070,22325,22567]]],["repented",[14,14,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,1,1,1,2,[[81,1,1,1,2]]],[6,2,2,2,4,[[212,1,1,2,3],[231,1,1,3,4]]],[8,1,1,4,5,[[250,1,1,4,5]]],[18,1,1,5,6,[[583,1,1,5,6]]],[23,4,4,6,10,[[752,1,1,6,7],[764,1,1,7,8],[770,1,1,8,9],[775,1,1,9,10]]],[29,2,2,10,12,[[885,2,2,10,12]]],[31,1,1,12,13,[[891,1,1,12,13]]],[37,1,1,13,14,[[918,1,1,13,14]]]],[143,2452,6563,7108,7595,15696,19159,19438,19591,19710,22467,22470,22568,22990]]],["repentest",[1,1,[[31,1,1,0,1,[[892,1,1,0,1]]]],[22570]]],["repenteth",[2,2,[[0,1,1,0,1,[[5,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[144,22324]]],["repenting",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19321]]],["them",[1,1,[[6,1,1,0,1,[[231,1,1,0,1]]]],[7117]]]]},{"k":"H5163","v":[["Naham",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10404]]]]},{"k":"H5164","v":[["repentance",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22280]]]]},{"k":"H5165","v":[["comfort",[2,2,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[12988,15948]]]]},{"k":"H5166","v":[["Nehemiah",[8,8,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,7,7,1,8,[[413,1,1,1,2],[415,1,1,2,3],[419,1,1,3,4],[420,1,1,4,5],[422,1,1,5,6],[424,2,2,6,8]]]],[12029,12297,12343,12427,12502,12550,12650,12671]]]]},{"k":"H5167","v":[["Nahamani",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12427]]]]},{"k":"H5168","v":[["*",[5,5,[[0,1,1,0,1,[[41,1,1,0,1]]],[1,2,2,1,3,[[65,2,2,1,3]]],[3,1,1,3,4,[[148,1,1,3,4]]],[24,1,1,4,5,[[799,1,1,4,5]]]],[1263,1954,1955,4750,20396]]],["We",[3,3,[[0,1,1,0,1,[[41,1,1,0,1]]],[3,1,1,1,2,[[148,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]]],[1263,4750,20396]]],["we",[2,2,[[1,2,2,0,2,[[65,2,2,0,2]]]],[1954,1955]]]]},{"k":"H5169","v":[["haste",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7780]]]]},{"k":"H5170","v":[["*",[2,2,[[17,1,1,0,1,[[474,1,1,0,1]]],[23,1,1,1,2,[[752,1,1,1,2]]]],[13854,19169]]],["nostrils",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13854]]],["snorting",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19169]]]]},{"k":"H5171","v":[["Naharai",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8690,10712]]]]},{"k":"H5172","v":[["*",[11,9,[[0,5,3,0,3,[[29,1,1,0,1],[43,4,2,1,3]]],[2,1,1,3,4,[[108,1,1,3,4]]],[4,1,1,4,5,[[170,1,1,4,5]]],[10,1,1,5,6,[[310,1,1,5,6]]],[11,2,2,6,8,[[329,1,1,6,7],[333,1,1,7,8]]],[13,1,1,8,9,[[399,1,1,8,9]]]],[857,1329,1339,3307,5394,9441,10000,10125,11914]]],["+",[4,2,[[0,4,2,0,2,[[43,4,2,0,2]]]],[1329,1339]]],["enchanter",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5394]]],["enchantment",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3307]]],["enchantments",[3,3,[[11,2,2,0,2,[[329,1,1,0,1],[333,1,1,1,2]]],[13,1,1,2,3,[[399,1,1,2,3]]]],[10000,10125,11914]]],["experience",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[857]]],["observe",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9441]]]]},{"k":"H5173","v":[["*",[2,2,[[3,2,2,0,2,[[139,1,1,0,1],[140,1,1,1,2]]]],[4439,4447]]],["enchantment",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4439]]],["enchantments",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4447]]]]},{"k":"H5174","v":[["brass",[9,9,[[26,9,9,0,9,[[851,4,4,0,4],[853,2,2,4,6],[854,2,2,6,8],[856,1,1,8,9]]]],[21790,21793,21797,21803,21852,21860,21878,21897,21952]]]]},{"k":"H5175","v":[["*",[31,28,[[0,6,6,0,6,[[2,5,5,0,5],[48,1,1,5,6]]],[1,2,2,6,8,[[53,1,1,6,7],[56,1,1,7,8]]],[3,5,3,8,11,[[137,5,3,8,11]]],[4,1,1,11,12,[[160,1,1,11,12]]],[11,1,1,12,13,[[330,1,1,12,13]]],[17,1,1,13,14,[[461,1,1,13,14]]],[18,2,2,14,16,[[535,1,1,14,15],[617,1,1,15,16]]],[19,2,2,16,18,[[650,1,1,16,17],[657,1,1,17,18]]],[20,2,2,18,20,[[668,2,2,18,20]]],[22,4,3,20,23,[[692,1,1,20,21],[705,2,1,21,22],[743,1,1,22,23]]],[23,2,2,23,25,[[752,1,1,23,24],[790,1,1,24,25]]],[29,2,2,25,27,[[883,1,1,25,26],[887,1,1,26,27]]],[32,1,1,27,28,[[899,1,1,27,28]]]],[56,57,59,68,69,1490,1604,1700,4346,4347,4349,5152,10028,13480,14783,16266,17076,17270,17501,17504,17957,18152,18922,19170,20067,22442,22498,22681]]],["+",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17957]]],["serpent",[25,22,[[0,6,6,0,6,[[2,5,5,0,5],[48,1,1,5,6]]],[1,2,2,6,8,[[53,1,1,6,7],[56,1,1,7,8]]],[3,3,1,8,9,[[137,3,1,8,9]]],[11,1,1,9,10,[[330,1,1,9,10]]],[17,1,1,10,11,[[461,1,1,10,11]]],[18,2,2,11,13,[[535,1,1,11,12],[617,1,1,12,13]]],[19,2,2,13,15,[[650,1,1,13,14],[657,1,1,14,15]]],[20,2,2,15,17,[[668,2,2,15,17]]],[22,2,1,17,18,[[705,2,1,17,18]]],[23,1,1,18,19,[[790,1,1,18,19]]],[29,2,2,19,21,[[883,1,1,19,20],[887,1,1,20,21]]],[32,1,1,21,22,[[899,1,1,21,22]]]],[56,57,59,68,69,1490,1604,1700,4349,10028,13480,14783,16266,17076,17270,17501,17504,18152,20067,22442,22498,22681]]],["serpent's",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18922]]],["serpents",[4,4,[[3,2,2,0,2,[[137,2,2,0,2]]],[4,1,1,2,3,[[160,1,1,2,3]]],[23,1,1,3,4,[[752,1,1,3,4]]]],[4346,4347,5152,19170]]]]},{"k":"H5176","v":[["Nahash",[9,8,[[8,4,3,0,3,[[246,3,2,0,2],[247,1,1,2,3]]],[9,3,3,3,6,[[276,1,1,3,4],[283,2,2,4,6]]],[12,2,2,6,8,[[356,2,2,6,8]]]],[7446,7447,7472,8242,8474,8476,10908,10909]]]]},{"k":"H5177","v":[["*",[10,9,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,5,5,1,6,[[117,1,1,1,2],[118,1,1,2,3],[123,2,2,3,5],[126,1,1,5,6]]],[7,2,1,6,7,[[235,2,1,6,7]]],[12,2,2,7,9,[[339,2,2,7,9]]]],[1678,3611,3661,3862,3867,4002,7210,10316,10317]]],["Naashon",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1678]]],["Nahshon",[9,8,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]],[7,2,1,5,6,[[235,2,1,5,6]]],[12,2,2,6,8,[[339,2,2,6,8]]]],[3611,3661,3862,3867,4002,7210,10316,10317]]]]},{"k":"H5178","v":[["*",[140,119,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,39,34,1,35,[[74,1,1,1,2],[75,2,2,2,4],[76,10,9,4,13],[79,2,1,13,14],[80,1,1,14,15],[84,4,4,15,19],[85,2,2,19,21],[87,15,13,21,34],[88,2,1,34,35]]],[2,1,1,35,36,[[95,1,1,35,36]]],[3,4,3,36,39,[[132,1,1,36,37],[137,2,1,37,38],[147,1,1,38,39]]],[4,3,3,39,42,[[160,1,1,39,40],[180,1,1,40,41],[185,1,1,41,42]]],[5,3,3,42,45,[[192,2,2,42,44],[208,1,1,44,45]]],[6,1,1,45,46,[[226,1,1,45,46]]],[8,5,3,46,49,[[252,5,3,46,49]]],[9,4,4,49,53,[[269,1,1,49,50],[274,2,2,50,52],[287,1,1,52,53]]],[10,13,11,53,64,[[294,1,1,53,54],[297,10,8,54,62],[298,1,1,62,63],[304,1,1,63,64]]],[11,12,9,64,73,[[328,3,3,64,67],[330,1,1,67,68],[337,8,5,68,73]]],[12,11,8,73,81,[[352,1,1,73,74],[355,4,2,74,76],[359,3,3,76,79],[366,3,2,79,81]]],[13,14,14,81,95,[[367,2,2,81,83],[368,2,2,83,85],[370,4,4,85,89],[372,1,1,89,90],[373,1,1,90,91],[378,1,1,91,92],[390,1,1,92,93],[399,1,1,93,94],[402,1,1,94,95]]],[14,1,1,95,96,[[410,1,1,95,96]]],[18,1,1,96,97,[[584,1,1,96,97]]],[22,2,1,97,98,[[738,2,1,97,98]]],[23,14,10,98,108,[[745,1,1,98,99],[750,1,1,99,100],[759,2,2,100,102],[783,1,1,102,103],[796,9,5,103,108]]],[24,1,1,108,109,[[799,1,1,108,109]]],[25,8,8,109,117,[[802,1,1,109,110],[810,1,1,110,111],[817,1,1,111,112],[823,2,2,112,114],[825,1,1,114,115],[828,1,1,115,116],[841,1,1,116,117]]],[26,1,1,117,118,[[859,1,1,117,118]]],[37,1,1,118,119,[[916,1,1,118,119]]]],[101,2198,2246,2272,2274,2275,2276,2278,2282,2283,2289,2290,2291,2400,2424,2536,2547,2555,2563,2584,2604,2635,2636,2637,2638,2639,2641,2643,2644,2650,2652,2653,2662,2663,2703,2877,4233,4349,4686,5146,5634,5835,5968,5973,6434,6970,7623,7624,7656,8115,8217,8219,8596,8857,8948,8949,8950,8961,8964,8972,8979,8981,9049,9245,9977,9978,9980,10028,10229,10235,10236,10238,10239,10810,10898,10900,10967,10978,10980,11166,11171,11199,11200,11218,11225,11247,11255,11262,11264,11295,11331,11447,11689,11919,11999,12228,15715,18838,18964,19117,19327,19335,19930,20287,20293,20294,20296,20298,20361,20471,20624,20798,20994,20996,21067,21134,21480,22021,22948]]],["+",[3,3,[[1,1,1,0,1,[[88,1,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]]],[2703,4686,20361]]],["brasen",[28,27,[[1,7,6,0,6,[[76,1,1,0,1],[84,1,1,1,2],[87,4,3,2,5],[88,1,1,5,6]]],[2,1,1,6,7,[[95,1,1,6,7]]],[3,1,1,7,8,[[132,1,1,7,8]]],[10,4,4,8,12,[[294,1,1,8,9],[297,1,1,9,10],[298,1,1,10,11],[304,1,1,11,12]]],[11,5,5,12,17,[[328,3,3,12,15],[330,1,1,15,16],[337,1,1,16,17]]],[12,1,1,17,18,[[355,1,1,17,18]]],[13,4,4,18,22,[[367,2,2,18,20],[372,1,1,20,21],[373,1,1,21,22]]],[23,4,4,22,26,[[745,1,1,22,23],[759,1,1,23,24],[796,2,2,24,26]]],[25,1,1,26,27,[[810,1,1,26,27]]]],[2276,2547,2637,2643,2663,2703,2877,4233,8857,8964,9049,9245,9977,9978,9980,10028,10235,10898,11199,11200,11295,11331,18964,19335,20293,20296,20624]]],["brass",[101,88,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,31,29,1,30,[[74,1,1,1,2],[75,2,2,2,4],[76,9,9,4,13],[79,2,1,13,14],[80,1,1,14,15],[84,3,3,15,18],[85,2,2,18,20],[87,11,10,20,30]]],[3,2,1,30,31,[[137,2,1,30,31]]],[4,3,3,31,34,[[160,1,1,31,32],[180,1,1,32,33],[185,1,1,33,34]]],[5,3,3,34,37,[[192,2,2,34,36],[208,1,1,36,37]]],[6,1,1,37,38,[[226,1,1,37,38]]],[8,5,3,38,41,[[252,5,3,38,41]]],[9,3,3,41,44,[[274,2,2,41,43],[287,1,1,43,44]]],[10,9,8,44,52,[[297,9,8,44,52]]],[11,7,5,52,57,[[337,7,5,52,57]]],[12,10,8,57,65,[[352,1,1,57,58],[355,3,2,58,60],[359,3,3,60,63],[366,3,2,63,65]]],[13,8,8,65,73,[[368,2,2,65,67],[370,4,4,67,71],[378,1,1,71,72],[390,1,1,72,73]]],[18,1,1,73,74,[[584,1,1,73,74]]],[22,2,1,74,75,[[738,2,1,74,75]]],[23,7,5,75,80,[[750,1,1,75,76],[796,6,4,76,80]]],[25,6,6,80,86,[[802,1,1,80,81],[823,2,2,81,83],[825,1,1,83,84],[828,1,1,84,85],[841,1,1,85,86]]],[26,1,1,86,87,[[859,1,1,86,87]]],[37,1,1,87,88,[[916,1,1,87,88]]]],[101,2198,2246,2272,2274,2275,2276,2278,2282,2283,2289,2290,2291,2400,2424,2536,2555,2563,2584,2604,2635,2636,2638,2639,2641,2644,2650,2652,2653,2662,4349,5146,5634,5835,5968,5973,6434,6970,7623,7624,7656,8217,8219,8596,8948,8949,8950,8961,8964,8972,8979,8981,10229,10235,10236,10238,10239,10810,10898,10900,10967,10978,10980,11166,11171,11218,11225,11247,11255,11262,11264,11447,11689,15715,18838,19117,20293,20294,20296,20298,20471,20994,20996,21067,21134,21480,22021,22948]]],["chains",[2,2,[[23,2,2,0,2,[[783,1,1,0,1],[796,1,1,1,2]]]],[19930,20287]]],["copper",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12228]]],["fetters",[3,3,[[9,1,1,0,1,[[269,1,1,0,1]]],[13,2,2,1,3,[[399,1,1,1,2],[402,1,1,2,3]]]],[8115,11919,11999]]],["filthiness",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20798]]],["steel",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19327]]]]},{"k":"H5179","v":[["Nehushta",[1,1,[[11,1,1,0,1,[[336,1,1,0,1]]]],[10210]]]]},{"k":"H5180","v":[["Nehushtan",[1,1,[[11,1,1,0,1,[[330,1,1,0,1]]]],[10028]]]]},{"k":"H5181","v":[["*",[9,8,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[456,1,1,1,2]]],[18,4,3,2,5,[[495,1,1,2,3],[515,2,1,3,4],[542,1,1,4,5]]],[19,1,1,5,6,[[644,1,1,5,6]]],[23,1,1,6,7,[[765,1,1,6,7]]],[28,1,1,7,8,[[878,1,1,7,8]]]],[8637,13368,14152,14492,14870,16883,19453,22354]]],["+",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14492]]],["broken",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8637,14152]]],["down",[3,3,[[17,1,1,0,1,[[456,1,1,0,1]]],[23,1,1,1,2,[[765,1,1,1,2]]],[28,1,1,2,3,[[878,1,1,2,3]]]],[13368,19453,22354]]],["fast",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14492]]],["more",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16883]]],["settlest",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14870]]]]},{"k":"H5182","v":[["*",[6,6,[[14,3,3,0,3,[[407,1,1,0,1],[408,2,2,1,3]]],[26,3,3,3,6,[[853,2,2,3,5],[854,1,1,5,6]]]],[12149,12152,12156,21850,21860,21894]]],["carry",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12149]]],["deposed",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21894]]],["down",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21850,21860]]],["place",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12156]]],["up",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12152]]]]},{"k":"H5183","v":[["*",[8,8,[[17,2,2,0,2,[[452,1,1,0,1],[471,1,1,1,2]]],[19,1,1,2,3,[[656,1,1,2,3]]],[20,3,3,3,6,[[662,1,1,3,4],[664,1,1,4,5],[667,1,1,5,6]]],[22,2,2,6,8,[[708,2,2,6,8]]]],[13276,13752,17233,17387,17422,17492,18232,18247]]],["down",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18247]]],["quiet",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17492]]],["quietness",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17387]]],["rest",[4,4,[[17,1,1,0,1,[[452,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]],[20,1,1,2,3,[[664,1,1,2,3]]],[22,1,1,3,4,[[708,1,1,3,4]]]],[13276,17233,17422,18232]]],["set",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13752]]]]},{"k":"H5184","v":[["Nahath",[5,5,[[0,2,2,0,2,[[35,2,2,0,2]]],[12,2,2,2,4,[[338,1,1,2,3],[343,1,1,3,4]]],[13,1,1,4,5,[[397,1,1,4,5]]]],[1053,1057,10289,10480,11867]]]]},{"k":"H5185","v":[["down",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9683]]]]},{"k":"H5186","v":[["*",[214,207,[[0,9,9,0,9,[[11,1,1,0,1],[23,1,1,1,2],[25,1,1,2,3],[32,1,1,3,4],[34,1,1,4,5],[37,2,2,5,7],[38,1,1,7,8],[48,1,1,8,9]]],[1,22,21,9,30,[[55,1,1,9,10],[56,2,2,10,12],[57,4,4,12,16],[58,2,2,16,18],[59,4,4,18,22],[63,4,4,22,26],[64,1,1,26,27],[72,3,2,27,29],[82,1,1,29,30]]],[3,10,8,30,38,[[136,2,2,30,32],[137,2,2,32,34],[138,5,3,34,37],[140,1,1,37,38]]],[4,9,9,38,47,[[156,1,1,38,39],[157,1,1,39,40],[159,1,1,40,41],[161,1,1,41,42],[163,1,1,42,43],[168,1,1,43,44],[176,1,1,44,45],[178,1,1,45,46],[179,1,1,46,47]]],[5,5,4,47,51,[[194,4,3,47,50],[210,1,1,50,51]]],[6,4,4,51,55,[[214,1,1,51,52],[219,1,1,52,53],[226,1,1,53,54],[229,1,1,54,55]]],[8,3,2,55,57,[[243,2,1,55,56],[249,1,1,56,57]]],[9,9,9,57,66,[[268,2,2,57,59],[269,1,1,59,60],[272,2,2,60,62],[282,1,1,62,63],[285,1,1,63,64],[287,1,1,64,65],[288,1,1,65,66]]],[10,8,7,66,73,[[292,2,1,66,67],[298,2,2,67,69],[301,4,4,69,73]]],[11,4,4,73,77,[[329,1,1,73,74],[331,1,1,74,75],[332,1,1,75,76],[333,1,1,76,77]]],[12,5,5,77,82,[[350,1,1,77,78],[352,1,1,78,79],[353,1,1,79,80],[358,2,2,80,82]]],[13,2,2,82,84,[[367,1,1,82,83],[372,1,1,83,84]]],[14,2,2,84,86,[[409,1,1,84,85],[411,1,1,85,86]]],[17,9,9,86,95,[[444,1,1,86,87],[450,2,2,87,89],[458,1,1,89,90],[459,1,1,90,91],[461,1,1,91,92],[466,1,1,92,93],[471,1,1,93,94],[473,1,1,94,95]]],[18,29,29,95,124,[[494,2,2,95,97],[495,1,1,97,98],[498,1,1,98,99],[504,1,1,99,100],[508,1,1,100,101],[517,1,1,101,102],[521,1,1,102,103],[522,1,1,103,104],[526,1,1,104,105],[539,1,1,105,106],[548,1,1,106,107],[550,1,1,107,108],[555,1,1,108,109],[563,1,1,109,110],[565,1,1,110,111],[579,2,2,111,113],[581,1,1,113,114],[586,1,1,114,115],[593,1,1,115,116],[596,4,4,116,120],[602,1,1,120,121],[613,1,1,121,122],[618,1,1,122,123],[621,1,1,123,124]]],[19,12,12,124,136,[[628,1,1,124,125],[629,1,1,125,126],[631,3,3,126,129],[632,2,2,129,131],[634,1,1,131,132],[644,1,1,132,133],[645,1,1,133,134],[648,1,1,134,135],[649,1,1,135,136]]],[22,26,25,136,161,[[681,1,1,136,137],[683,2,1,137,138],[687,3,3,138,141],[688,2,2,141,143],[692,2,2,143,145],[701,1,1,145,146],[707,1,1,146,147],[708,1,1,147,148],[709,1,1,148,149],[712,1,1,149,150],[715,1,1,150,151],[718,1,1,151,152],[720,1,1,152,153],[722,3,3,153,156],[723,1,1,156,157],[729,1,1,157,158],[732,1,1,158,159],[733,1,1,159,160],[744,1,1,160,161]]],[23,22,22,161,183,[[749,1,1,161,162],[750,2,2,162,164],[751,2,2,164,166],[754,2,2,166,168],[755,1,1,168,169],[758,1,1,169,170],[759,1,1,170,171],[761,1,1,171,172],[765,1,1,172,173],[769,1,1,173,174],[771,1,1,174,175],[776,2,2,175,177],[778,1,1,177,178],[779,1,1,178,179],[787,1,1,179,180],[788,1,1,180,181],[795,2,2,181,183]]],[24,2,2,183,185,[[798,1,1,183,184],[799,1,1,184,185]]],[25,12,12,185,197,[[802,1,1,185,186],[807,1,1,186,187],[815,2,2,187,189],[817,1,1,189,190],[821,2,2,190,192],[826,3,3,192,195],[831,1,1,195,196],[836,1,1,196,197]]],[26,1,1,197,198,[[858,1,1,197,198]]],[27,1,1,198,199,[[872,1,1,198,199]]],[29,3,3,199,202,[[880,2,2,199,201],[883,1,1,201,202]]],[35,2,2,202,204,[[906,1,1,202,203],[907,1,1,203,204]]],[37,2,2,204,206,[[911,1,1,204,205],[922,1,1,205,206]]],[38,1,1,206,207,[[927,1,1,206,207]]]],[306,605,717,979,1032,1120,1135,1170,1488,1661,1690,1704,1715,1716,1726,1727,1764,1765,1789,1790,1798,1799,1905,1910,1915,1916,1932,2146,2150,2480,4328,4332,4355,4362,4398,4401,4408,4452,5038,5068,5130,5186,5210,5361,5542,5574,5604,6020,6021,6028,6499,6610,6757,6979,7032,7372,7515,8068,8070,8108,8167,8174,8448,8525,8590,8612,8798,9027,9043,9110,9111,9112,9117,10019,10077,10108,10132,10773,10792,10821,10944,10950,11198,11314,12201,12246,13059,13228,13232,13430,13440,13474,13595,13754,13798,14109,14114,14127,14202,14294,14333,14526,14589,14607,14652,14830,14978,15022,15114,15285,15310,15523,15532,15573,15778,15850,15934,15949,16010,16055,16115,16208,16280,16310,16424,16435,16495,16510,16517,16518,16530,16596,16896,16906,16985,17032,17723,17764,17841,17846,17850,17852,17854,17954,17955,18088,18214,18228,18253,18314,18369,18442,18485,18546,18553,18557,18573,18686,18725,18743,18934,19083,19093,19101,19143,19145,19213,19221,19234,19301,19321,19380,19445,19538,19601,19748,19752,19815,19838,20007,20015,20227,20237,20340,20389,20486,20577,20740,20744,20789,20928,20929,21090,21096,21099,21229,21347,22006,22244,22386,22387,22435,22791,22818,22894,23046,23125]]],["+",[39,39,[[0,1,1,0,1,[[38,1,1,0,1]]],[1,13,13,1,14,[[56,1,1,1,2],[57,4,4,2,6],[58,2,2,6,8],[59,2,2,8,10],[63,4,4,10,14]]],[5,1,1,14,15,[[210,1,1,14,15]]],[6,2,2,15,17,[[219,1,1,15,16],[229,1,1,16,17]]],[9,1,1,17,18,[[285,1,1,17,18]]],[10,3,3,18,21,[[301,3,3,18,21]]],[12,1,1,21,22,[[358,1,1,21,22]]],[18,1,1,22,23,[[504,1,1,22,23]]],[23,12,12,23,35,[[750,1,1,23,24],[751,2,2,24,26],[755,1,1,26,27],[759,1,1,27,28],[761,1,1,28,29],[769,1,1,29,30],[778,1,1,30,31],[779,1,1,31,32],[787,1,1,32,33],[788,1,1,33,34],[795,1,1,34,35]]],[25,4,4,35,39,[[807,1,1,35,36],[815,1,1,36,37],[826,1,1,37,38],[831,1,1,38,39]]]],[1170,1690,1715,1716,1726,1727,1764,1765,1790,1799,1905,1910,1915,1916,6499,6757,7032,8525,9110,9111,9112,10944,14294,19101,19143,19145,19234,19321,19380,19538,19815,19838,20007,20015,20237,20577,20740,21090,21229]]],["Bow",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16310]]],["Incline",[4,4,[[18,2,2,0,2,[[596,1,1,0,1],[618,1,1,1,2]]],[22,2,2,2,4,[[715,1,1,2,3],[733,1,1,3,4]]]],[15934,16280,18369,18743]]],["Turn",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16517]]],["apply",[1,1,[[19,1,1,0,1,[[629,1,1,0,1]]]],[16435]]],["aside",[16,16,[[3,1,1,0,1,[[138,1,1,0,1]]],[8,1,1,1,2,[[243,1,1,1,2]]],[9,3,3,2,5,[[268,1,1,2,3],[269,1,1,3,4],[272,1,1,4,5]]],[12,1,1,5,6,[[350,1,1,5,6]]],[18,1,1,6,7,[[602,1,1,6,7]]],[22,4,4,7,11,[[688,1,1,7,8],[707,1,1,8,9],[708,1,1,9,10],[722,1,1,10,11]]],[23,1,1,11,12,[[758,1,1,11,12]]],[24,1,1,12,13,[[799,1,1,12,13]]],[29,2,2,13,15,[[880,1,1,13,14],[883,1,1,14,15]]],[38,1,1,15,16,[[927,1,1,15,16]]]],[4398,7372,8070,8108,8167,10773,16115,17852,18214,18228,18553,19301,20389,22386,22435,23125]]],["away",[2,2,[[3,1,1,0,1,[[136,1,1,0,1]]],[23,1,1,1,2,[[749,1,1,1,2]]]],[4332,19083]]],["bow",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16518]]],["bowed",[4,4,[[0,1,1,0,1,[[48,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]]],[1488,6979,8612,14127]]],["bowing",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14830]]],["decline",[3,3,[[1,1,1,0,1,[[72,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[19,1,1,2,3,[[631,1,1,2,3]]]],[2146,16055,16495]]],["declined",[3,3,[[17,1,1,0,1,[[458,1,1,0,1]]],[18,2,2,1,3,[[521,1,1,1,2],[596,1,1,2,3]]]],[13430,14589,15949]]],["declineth",[2,2,[[18,2,2,0,2,[[579,1,1,0,1],[586,1,1,1,2]]]],[15532,15778]]],["deliver",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13754]]],["down",[9,9,[[0,1,1,0,1,[[23,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[11,2,2,2,4,[[331,1,1,2,3],[332,1,1,3,4]]],[18,3,3,4,7,[[494,1,1,4,5],[508,1,1,5,6],[563,1,1,6,7]]],[19,1,1,7,8,[[649,1,1,7,8]]],[29,1,1,8,9,[[880,1,1,8,9]]]],[605,4355,10077,10108,14114,14333,15285,17032,22387]]],["extend",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18934]]],["extended",[2,2,[[14,2,2,0,2,[[409,1,1,0,1],[411,1,1,1,2]]]],[12201,12246]]],["forth",[10,10,[[3,1,1,0,1,[[140,1,1,0,1]]],[22,5,5,1,6,[[681,1,1,1,2],[683,1,1,2,3],[722,1,1,3,4],[729,1,1,4,5],[732,1,1,5,6]]],[23,1,1,6,7,[[754,1,1,6,7]]],[25,1,1,7,8,[[802,1,1,7,8]]],[37,2,2,8,10,[[911,1,1,8,9],[922,1,1,9,10]]]],[4452,17723,17764,18557,18686,18725,19221,20486,22894,23046]]],["gone",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15022]]],["in",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1120]]],["incline",[10,10,[[10,1,1,0,1,[[298,1,1,0,1]]],[18,7,7,1,8,[[494,1,1,1,2],[522,1,1,2,3],[526,1,1,3,4],[548,1,1,4,5],[555,1,1,5,6],[565,1,1,6,7],[579,1,1,7,8]]],[19,1,1,8,9,[[631,1,1,8,9]]],[26,1,1,9,10,[[858,1,1,9,10]]]],[9043,14109,14607,14652,14978,15114,15310,15523,16510,22006]]],["inclined",[4,4,[[18,3,3,0,3,[[517,1,1,0,1],[593,1,1,1,2],[596,1,1,2,3]]],[19,1,1,3,4,[[632,1,1,3,4]]]],[14526,15850,16010,16530]]],["intended",[1,1,[[18,1,1,0,1,[[498,1,1,0,1]]]],[14202]]],["laid",[1,1,[[27,1,1,0,1,[[872,1,1,0,1]]]],[22244]]],["out",[53,52,[[1,5,5,0,5,[[55,1,1,0,1],[56,1,1,1,2],[59,2,2,2,4],[64,1,1,4,5]]],[4,5,5,5,10,[[156,1,1,5,6],[157,1,1,6,7],[159,1,1,7,8],[161,1,1,8,9],[163,1,1,9,10]]],[5,4,3,10,13,[[194,4,3,10,13]]],[10,1,1,13,14,[[298,1,1,13,14]]],[11,1,1,14,15,[[329,1,1,14,15]]],[12,1,1,15,16,[[358,1,1,15,16]]],[13,1,1,16,17,[[372,1,1,16,17]]],[17,3,3,17,20,[[444,1,1,17,18],[450,1,1,18,19],[461,1,1,19,20]]],[18,2,2,20,22,[[581,1,1,20,21],[613,1,1,21,22]]],[19,1,1,22,23,[[628,1,1,22,23]]],[22,14,14,23,37,[[683,1,1,23,24],[687,3,3,24,27],[688,1,1,27,28],[692,2,2,28,30],[701,1,1,30,31],[709,1,1,31,32],[712,1,1,32,33],[718,1,1,33,34],[720,1,1,34,35],[722,1,1,35,36],[723,1,1,36,37]]],[23,5,5,37,42,[[750,1,1,37,38],[754,1,1,38,39],[776,2,2,39,41],[795,1,1,41,42]]],[24,1,1,42,43,[[798,1,1,42,43]]],[25,7,7,43,50,[[815,1,1,43,44],[817,1,1,44,45],[821,2,2,45,47],[826,2,2,47,49],[836,1,1,49,50]]],[35,2,2,50,52,[[906,1,1,50,51],[907,1,1,51,52]]]],[1661,1704,1789,1798,1932,5038,5068,5130,5186,5210,6020,6021,6028,9027,10019,10950,11314,13059,13228,13474,15573,16208,16424,17764,17841,17846,17850,17854,17954,17955,18088,18253,18314,18442,18485,18546,18573,19093,19213,19748,19752,20227,20340,20744,20789,20928,20929,21096,21099,21347,22791,22818]]],["outstretched",[3,3,[[4,1,1,0,1,[[178,1,1,0,1]]],[23,2,2,1,3,[[765,1,1,1,2],[771,1,1,2,3]]]],[5574,19445,19601]]],["overthrow",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16906]]],["pervert",[2,2,[[4,1,1,0,1,[[176,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]]],[5542,16896]]],["perverted",[1,1,[[8,1,1,0,1,[[243,1,1,0,1]]]],[7372]]],["perverteth",[1,1,[[4,1,1,0,1,[[179,1,1,0,1]]]],[5604]]],["pitched",[8,8,[[0,2,2,0,2,[[11,1,1,0,1],[25,1,1,1,2]]],[1,1,1,2,3,[[82,1,1,2,3]]],[6,1,1,3,4,[[214,1,1,3,4]]],[9,1,1,4,5,[[272,1,1,4,5]]],[12,2,2,5,7,[[352,1,1,5,6],[353,1,1,6,7]]],[13,1,1,7,8,[[367,1,1,7,8]]]],[306,717,2480,6610,8174,10792,10821,11198]]],["prolong",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13232]]],["spread",[4,4,[[0,2,2,0,2,[[32,1,1,0,1],[34,1,1,1,2]]],[9,2,2,2,4,[[282,1,1,2,3],[287,1,1,3,4]]]],[979,1032,8448,8590]]],["stretch",[1,1,[[11,1,1,0,1,[[333,1,1,0,1]]]],[10132]]],["stretched",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13798]]],["turn",[6,6,[[3,4,4,0,4,[[136,1,1,0,1],[137,1,1,1,2],[138,2,2,2,4]]],[8,1,1,4,5,[[249,1,1,4,5]]],[17,1,1,5,6,[[459,1,1,5,6]]]],[4328,4362,4398,4401,7515,13440]]],["turned",[8,6,[[0,1,1,0,1,[[37,1,1,0,1]]],[3,2,1,1,2,[[138,2,1,1,2]]],[9,1,1,2,3,[[268,1,1,2,3]]],[10,3,2,3,5,[[292,2,1,3,4],[301,1,1,4,5]]],[17,1,1,5,6,[[466,1,1,5,6]]]],[1135,4408,8068,8798,9117,13595]]],["turneth",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16985]]],["wrest",[3,3,[[1,2,2,0,2,[[72,2,2,0,2]]],[4,1,1,2,3,[[168,1,1,2,3]]]],[2146,2150,5361]]],["yield",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16596]]]]},{"k":"H5187","v":[["bear",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22798]]]]},{"k":"H5188","v":[["*",[2,2,[[6,1,1,0,1,[[218,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]]],[6745,17726]]],["chains",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17726]]],["collars",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6745]]]]},{"k":"H5189","v":[["*",[3,3,[[22,1,1,0,1,[[696,1,1,0,1]]],[23,2,2,1,3,[[749,1,1,1,2],[792,1,1,2,3]]]],[18002,19068,20112]]],["battlements",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19068]]],["branches",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18002]]],["plants",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20112]]]]},{"k":"H5190","v":[["*",[4,4,[[9,1,1,0,1,[[290,1,1,0,1]]],[22,2,2,1,3,[[718,1,1,1,2],[741,1,1,2,3]]],[24,1,1,3,4,[[799,1,1,3,4]]]],[8704,18435,18875,20382]]],["+",[1,1,[[9,1,1,0,1,[[290,1,1,0,1]]]],[8704]]],["bare",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18875]]],["borne",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20382]]],["up",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18435]]]]},{"k":"H5191","v":[["up",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[856,1,1,1,2]]]],[21871,21937]]]]},{"k":"H5192","v":[["weighty",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17172]]]]},{"k":"H5193","v":[["*",[58,55,[[0,3,3,0,3,[[1,1,1,0,1],[8,1,1,1,2],[20,1,1,2,3]]],[1,1,1,3,4,[[64,1,1,3,4]]],[2,1,1,4,5,[[108,1,1,4,5]]],[3,1,1,5,6,[[140,1,1,5,6]]],[4,5,5,6,11,[[158,1,1,6,7],[168,1,1,7,8],[172,1,1,8,9],[180,2,2,9,11]]],[5,1,1,11,12,[[210,1,1,11,12]]],[9,1,1,12,13,[[273,1,1,12,13]]],[11,1,1,13,14,[[331,1,1,13,14]]],[12,1,1,14,15,[[354,1,1,14,15]]],[18,6,6,15,21,[[521,1,1,15,16],[557,2,2,16,18],[571,1,1,18,19],[581,1,1,19,20],[584,1,1,20,21]]],[19,1,1,21,22,[[658,1,1,21,22]]],[20,5,4,22,26,[[660,2,2,22,24],[661,2,1,24,25],[670,1,1,25,26]]],[22,8,8,26,34,[[683,1,1,26,27],[695,1,1,27,28],[715,1,1,28,29],[718,1,1,29,30],[722,1,1,30,31],[729,1,1,31,32],[743,2,2,32,34]]],[23,16,14,34,48,[[745,1,1,34,35],[746,1,1,35,36],[755,1,1,36,37],[756,1,1,37,38],[762,1,1,38,39],[768,1,1,39,40],[773,2,2,40,42],[775,4,2,42,44],[776,1,1,44,45],[779,1,1,45,46],[786,1,1,46,47],[789,1,1,47,48]]],[25,2,2,48,50,[[829,1,1,48,49],[837,1,1,49,50]]],[26,1,1,50,51,[[860,1,1,50,51]]],[29,3,3,51,54,[[883,1,1,51,52],[887,2,2,52,54]]],[35,1,1,54,55,[[906,1,1,54,55]]]],[38,225,546,1937,3304,4452,5097,5363,5433,5641,5650,6489,8190,10090,10872,14573,15206,15213,15440,15587,15736,17300,17337,17338,17361,17534,17741,17993,18382,18444,18547,18689,18918,18919,18956,18986,19243,19251,19393,19530,19640,19663,19696,19719,19772,19830,19985,20044,21183,21395,22081,22434,22509,22510,22800]]],["fastened",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17534]]],["plant",[31,30,[[1,1,1,0,1,[[64,1,1,0,1]]],[4,3,3,1,4,[[168,1,1,1,2],[180,2,2,2,4]]],[9,1,1,4,5,[[273,1,1,4,5]]],[11,1,1,5,6,[[331,1,1,5,6]]],[12,1,1,6,7,[[354,1,1,6,7]]],[18,1,1,7,8,[[584,1,1,7,8]]],[20,1,1,8,9,[[661,1,1,8,9]]],[22,5,5,9,14,[[695,1,1,9,10],[715,1,1,10,11],[729,1,1,11,12],[743,2,2,12,14]]],[23,11,10,14,24,[[745,1,1,14,15],[762,1,1,15,16],[768,1,1,16,17],[773,2,2,17,19],[775,3,2,19,21],[776,1,1,21,22],[779,1,1,22,23],[786,1,1,23,24]]],[25,2,2,24,26,[[829,1,1,24,25],[837,1,1,25,26]]],[26,1,1,26,27,[[860,1,1,26,27]]],[29,2,2,27,29,[[887,2,2,27,29]]],[35,1,1,29,30,[[906,1,1,29,30]]]],[1937,5363,5641,5650,8190,10090,10872,15736,17361,17993,18382,18689,18918,18919,18956,19393,19530,19640,19663,19696,19719,19772,19830,19985,21183,21395,22081,22509,22510,22800]]],["planted",[21,21,[[0,3,3,0,3,[[1,1,1,0,1],[8,1,1,1,2],[20,1,1,2,3]]],[2,1,1,3,4,[[108,1,1,3,4]]],[3,1,1,4,5,[[140,1,1,4,5]]],[4,1,1,5,6,[[172,1,1,5,6]]],[5,1,1,6,7,[[210,1,1,6,7]]],[18,4,4,7,11,[[557,2,2,7,9],[571,1,1,9,10],[581,1,1,10,11]]],[20,3,3,11,14,[[660,2,2,11,13],[661,1,1,13,14]]],[22,2,2,14,16,[[683,1,1,14,15],[718,1,1,15,16]]],[23,4,4,16,20,[[746,1,1,16,17],[755,1,1,17,18],[756,1,1,18,19],[789,1,1,19,20]]],[29,1,1,20,21,[[883,1,1,20,21]]]],[38,225,546,3304,4452,5433,6489,15206,15213,15440,15587,17337,17338,17361,17741,18444,18986,19243,19251,20044,22434]]],["plantedst",[2,2,[[4,1,1,0,1,[[158,1,1,0,1]]],[18,1,1,1,2,[[521,1,1,1,2]]]],[5097,14573]]],["planters",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19696]]],["planteth",[2,2,[[19,1,1,0,1,[[658,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[17300,18547]]]]},{"k":"H5194","v":[["*",[4,4,[[17,1,1,0,1,[[449,1,1,0,1]]],[22,3,3,1,4,[[683,1,1,1,2],[695,2,2,2,4]]]],[13190,17746,17993,17994]]],["plant",[3,3,[[17,1,1,0,1,[[449,1,1,0,1]]],[22,2,2,1,3,[[683,1,1,1,2],[695,1,1,2,3]]]],[13190,17746,17994]]],["plants",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17993]]]]},{"k":"H5195","v":[["plants",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16317]]]]},{"k":"H5196","v":[["plants",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10408]]]]},{"k":"H5197","v":[["*",[18,14,[[6,2,1,0,1,[[215,2,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]],[18,1,1,2,3,[[545,1,1,2,3]]],[19,1,1,3,4,[[632,1,1,3,4]]],[21,3,3,4,7,[[674,1,1,4,5],[675,2,2,5,7]]],[25,2,2,7,9,[[821,1,1,7,8],[822,1,1,8,9]]],[28,1,1,9,10,[[878,1,1,9,10]]],[29,2,2,10,12,[[885,1,1,10,11],[887,1,1,11,12]]],[32,5,2,12,14,[[894,5,2,12,14]]]],[6627,13554,14908,16520,17593,17603,17611,20941,20946,22361,22480,22508,22601,22606]]],["Prophesy",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22601]]],["down",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22361]]],["drop",[6,6,[[19,1,1,0,1,[[632,1,1,0,1]]],[21,1,1,1,2,[[674,1,1,1,2]]],[25,2,2,2,4,[[821,1,1,2,3],[822,1,1,3,4]]],[29,2,2,4,6,[[885,1,1,4,5],[887,1,1,5,6]]]],[16520,17593,20941,20946,22480,22508]]],["dropped",[5,4,[[6,2,1,0,1,[[215,2,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]],[18,1,1,2,3,[[545,1,1,2,3]]],[21,1,1,3,4,[[675,1,1,3,4]]]],[6627,13554,14908,17603]]],["dropping",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17611]]],["prophesy",[3,2,[[32,3,2,0,2,[[894,3,2,0,2]]]],[22601,22606]]],["prophet",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22606]]]]},{"k":"H5198","v":[["*",[2,2,[[1,1,1,0,1,[[79,1,1,0,1]]],[17,1,1,1,2,[[471,1,1,1,2]]]],[2416,13763]]],["drops",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13763]]],["stacte",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2416]]]]},{"k":"H5199","v":[["Netophah",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12049,12446]]]]},{"k":"H5200","v":[["*",[11,10,[[9,2,2,0,2,[[289,2,2,0,2]]],[11,1,1,2,3,[[337,1,1,2,3]]],[12,6,5,3,8,[[339,1,1,3,4],[346,1,1,4,5],[348,2,1,5,6],[364,2,2,6,8]]],[15,1,1,8,9,[[424,1,1,8,9]]],[23,1,1,9,10,[[784,1,1,9,10]]]],[8681,8682,10245,10360,10631,10703,11122,11124,12652,19949]]],["Netophathi",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12652]]],["Netophathite",[8,7,[[9,2,2,0,2,[[289,2,2,0,2]]],[11,1,1,2,3,[[337,1,1,2,3]]],[12,4,3,3,6,[[348,2,1,3,4],[364,2,2,4,6]]],[23,1,1,6,7,[[784,1,1,6,7]]]],[8681,8682,10245,10703,11122,11124,19949]]],["Netophathites",[2,2,[[12,2,2,0,2,[[339,1,1,0,1],[346,1,1,1,2]]]],[10360,10631]]]]},{"k":"H5201","v":[["*",[9,8,[[2,1,1,0,1,[[108,1,1,0,1]]],[18,1,1,1,2,[[580,1,1,1,2]]],[21,4,3,2,5,[[671,2,1,2,3],[678,2,2,3,5]]],[23,2,2,5,7,[[747,2,2,5,7]]],[33,1,1,7,8,[[900,1,1,7,8]]]],[3299,15558,17543,17651,17652,19007,19014,22686]]],["+",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17652]]],["grudge",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3299]]],["keep",[2,2,[[18,1,1,0,1,[[580,1,1,0,1]]],[23,1,1,1,2,[[747,1,1,1,2]]]],[15558,19014]]],["keeper",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17543]]],["keepers",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17651]]],["kept",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17543]]],["reserve",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19007]]],["reserveth",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22686]]]]},{"k":"H5202","v":[["kept",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21961]]]]},{"k":"H5203","v":[["*",[40,39,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,1,1,1,2,[[72,1,1,1,2]]],[3,1,1,2,3,[[127,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[6,2,2,4,6,[[216,1,1,4,5],[225,1,1,5,6]]],[8,7,7,6,13,[[239,1,1,6,7],[245,1,1,7,8],[247,1,1,8,9],[252,3,3,9,12],[265,1,1,12,13]]],[9,2,2,13,15,[[271,2,2,13,15]]],[10,1,1,15,16,[[298,1,1,15,16]]],[11,1,1,16,17,[[333,1,1,16,17]]],[15,1,1,17,18,[[422,1,1,17,18]]],[18,3,3,18,21,[[504,1,1,18,19],[555,1,1,19,20],[571,1,1,20,21]]],[19,3,3,21,24,[[628,1,1,21,22],[633,1,1,22,23],[644,1,1,23,24]]],[22,5,5,24,29,[[680,1,1,24,25],[694,1,1,25,26],[699,1,1,26,27],[710,1,1,27,28],[711,1,1,28,29]]],[23,5,5,29,34,[[751,1,1,29,30],[756,1,1,30,31],[759,1,1,31,32],[767,2,2,32,34]]],[25,4,3,34,37,[[830,1,1,34,35],[832,2,1,35,36],[833,1,1,36,37]]],[27,1,1,37,38,[[873,1,1,37,38]]],[29,1,1,38,39,[[883,1,1,38,39]]]],[901,2155,4055,5773,6667,6938,7299,7420,7482,7638,7640,7646,7994,8150,8154,9042,10133,12580,14294,15173,15445,16408,16560,16887,17691,17977,18050,18273,18302,19148,19256,19321,19517,19523,21188,21242,21252,22266,22425]]],["+",[8,8,[[8,4,4,0,4,[[245,1,1,0,1],[247,1,1,1,2],[252,2,2,2,4]]],[11,1,1,4,5,[[333,1,1,4,5]]],[15,1,1,5,6,[[422,1,1,5,6]]],[23,2,2,6,8,[[751,1,1,6,7],[756,1,1,7,8]]]],[7420,7482,7638,7640,10133,12580,19148,19256]]],["abroad",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7994]]],["drawn",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18050]]],["fall",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4055]]],["forsake",[5,5,[[10,1,1,0,1,[[298,1,1,0,1]]],[19,2,2,1,3,[[628,1,1,1,2],[633,1,1,2,3]]],[23,2,2,3,5,[[767,2,2,3,5]]]],[9042,16408,16560,19517,19523]]],["forsaken",[5,5,[[6,1,1,0,1,[[216,1,1,0,1]]],[22,2,2,1,3,[[680,1,1,1,2],[710,1,1,2,3]]],[23,1,1,3,4,[[759,1,1,3,4]]],[29,1,1,4,5,[[883,1,1,4,5]]]],[6667,17691,18273,19321,22425]]],["forsook",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[5773,15173]]],["joined",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7299]]],["leave",[4,4,[[18,1,1,0,1,[[504,1,1,0,1]]],[25,2,2,1,3,[[830,1,1,1,2],[833,1,1,2,3]]],[27,1,1,3,4,[[873,1,1,3,4]]]],[14294,21188,21252,22266]]],["left",[3,2,[[8,1,1,0,1,[[252,1,1,0,1]]],[25,2,1,1,2,[[832,2,1,1,2]]]],[7646,21242]]],["loosed",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18302]]],["off",[2,2,[[18,1,1,0,1,[[571,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]]],[15445,16887]]],["out",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17977]]],["still",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2155]]],["suffered",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[901]]],["themselves",[3,3,[[6,1,1,0,1,[[225,1,1,0,1]]],[9,2,2,1,3,[[271,2,2,1,3]]]],[6938,8150,8154]]]]},{"k":"H5204","v":[["wailing",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21153]]]]},{"k":"H5205","v":[["moving",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13243]]]]},{"k":"H5206","v":[["removed",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20318]]]]},{"k":"H5207","v":[["*",[43,43,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,3,3,1,4,[[78,3,3,1,4]]],[2,17,17,4,21,[[90,3,3,4,7],[91,3,3,7,10],[92,2,2,10,12],[93,1,1,12,13],[95,2,2,13,15],[97,2,2,15,17],[106,1,1,17,18],[112,2,2,18,20],[115,1,1,20,21]]],[3,18,18,21,39,[[131,6,6,21,27],[134,1,1,27,28],[144,6,6,28,34],[145,5,5,34,39]]],[25,4,4,39,43,[[807,1,1,39,40],[817,1,1,40,41],[821,2,2,41,43]]]],[204,2354,2361,2377,2754,2758,2762,2764,2771,2774,2783,2794,2826,2864,2870,2938,2945,3241,3415,3420,3555,4156,4160,4163,4166,4167,4177,4274,4579,4583,4585,4590,4601,4604,4610,4614,4616,4621,4644,20576,20781,20923,20936]]],["+",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[204]]],["odours",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3555]]],["sweet",[41,41,[[1,3,3,0,3,[[78,3,3,0,3]]],[2,16,16,3,19,[[90,3,3,3,6],[91,3,3,6,9],[92,2,2,9,11],[93,1,1,11,12],[95,2,2,12,14],[97,2,2,14,16],[106,1,1,16,17],[112,2,2,17,19]]],[3,18,18,19,37,[[131,6,6,19,25],[134,1,1,25,26],[144,6,6,26,32],[145,5,5,32,37]]],[25,4,4,37,41,[[807,1,1,37,38],[817,1,1,38,39],[821,2,2,39,41]]]],[2354,2361,2377,2754,2758,2762,2764,2771,2774,2783,2794,2826,2864,2870,2938,2945,3241,3415,3420,4156,4160,4163,4166,4167,4177,4274,4579,4583,4585,4590,4601,4604,4610,4614,4616,4621,4644,20576,20781,20923,20936]]]]},{"k":"H5208","v":[["*",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[851,1,1,1,2]]]],[12161,21804]]],["odours",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21804]]],["savours",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12161]]]]},{"k":"H5209","v":[["son",[3,3,[[0,1,1,0,1,[[20,1,1,0,1]]],[17,1,1,1,2,[[453,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]]],[536,13295,17950]]]]},{"k":"H5210","v":[["Nineveh",[17,16,[[0,2,2,0,2,[[9,2,2,0,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[22,1,1,3,4,[[715,1,1,3,4]]],[31,9,8,4,12,[[889,1,1,4,5],[891,7,6,5,11],[892,1,1,11,12]]],[33,3,3,12,15,[[900,1,1,12,13],[901,1,1,13,14],[902,1,1,14,15]]],[35,1,1,15,16,[[907,1,1,15,16]]]],[245,246,10097,18389,22533,22560,22561,22562,22563,22564,22565,22579,22685,22707,22719,22818]]]]},{"k":"H5211","v":[["fleeth",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20124]]]]},{"k":"H5212","v":[["Nisan",[2,2,[[15,1,1,0,1,[[414,1,1,0,1]]],[16,1,1,1,2,[[428,1,1,1,2]]]],[12308,12754]]]]},{"k":"H5213","v":[["spark",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17685]]]]},{"k":"H5214","v":[["up",[2,2,[[23,1,1,0,1,[[748,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]]],[19030,22237]]]]},{"k":"H5215","v":[["*",[4,4,[[19,2,2,0,2,[[640,1,1,0,1],[648,1,1,1,2]]],[23,1,1,2,3,[[748,1,1,2,3]]],[27,1,1,3,4,[[871,1,1,3,4]]]],[16770,16988,19030,22237]]],["ground",[2,2,[[23,1,1,0,1,[[748,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]]],[19030,22237]]],["plowing",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16988]]],["tillage",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16770]]]]},{"k":"H5216","v":[["*",[48,42,[[1,11,9,0,9,[[74,2,1,0,1],[76,1,1,1,2],[79,2,2,2,4],[84,1,1,4,5],[86,1,1,5,6],[88,2,1,6,7],[89,2,2,7,9]]],[2,2,2,9,11,[[113,2,2,9,11]]],[3,4,3,11,14,[[120,1,1,11,12],[124,3,2,12,14]]],[8,1,1,14,15,[[238,1,1,14,15]]],[9,2,2,15,17,[[287,1,1,15,16],[288,1,1,16,17]]],[10,3,3,17,20,[[297,1,1,17,18],[301,1,1,18,19],[305,1,1,19,20]]],[11,1,1,20,21,[[320,1,1,20,21]]],[12,3,1,21,22,[[365,3,1,21,22]]],[13,5,5,22,27,[[370,2,2,22,24],[379,1,1,24,25],[387,1,1,25,26],[395,1,1,26,27]]],[17,3,3,27,30,[[453,1,1,27,28],[456,1,1,28,29],[464,1,1,29,30]]],[18,3,3,30,33,[[495,1,1,30,31],[596,1,1,31,32],[609,1,1,32,33]]],[19,6,6,33,39,[[633,1,1,33,34],[640,1,1,34,35],[647,2,2,35,37],[651,1,1,37,38],[658,1,1,38,39]]],[23,1,1,39,40,[[769,1,1,39,40]]],[35,1,1,40,41,[[906,1,1,40,41]]],[37,2,1,41,42,[[914,2,1,41,42]]]],[2232,2292,2389,2390,2545,2627,2701,2711,2732,3448,3450,3752,3941,3942,7279,8597,8631,8983,9144,9253,9746,11158,11266,11267,11464,11631,11798,13282,13372,13535,14146,16003,16168,16563,16756,16974,16981,17099,17302,19544,22799,22924]]],["candle",[8,8,[[17,3,3,0,3,[[453,1,1,0,1],[456,1,1,1,2],[464,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]],[19,3,3,4,7,[[647,1,1,4,5],[651,1,1,5,6],[658,1,1,6,7]]],[23,1,1,7,8,[[769,1,1,7,8]]]],[13282,13372,13535,14146,16981,17099,17302,19544]]],["candles",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22799]]],["lamp",[9,9,[[1,1,1,0,1,[[76,1,1,0,1]]],[8,1,1,1,2,[[238,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[10,1,1,3,4,[[305,1,1,3,4]]],[18,2,2,4,6,[[596,1,1,4,5],[609,1,1,5,6]]],[19,3,3,6,9,[[633,1,1,6,7],[640,1,1,7,8],[647,1,1,8,9]]]],[2292,7279,8631,9253,16003,16168,16563,16756,16974]]],["lamps",[26,20,[[1,10,8,0,8,[[74,2,1,0,1],[79,2,2,1,3],[84,1,1,3,4],[86,1,1,4,5],[88,2,1,5,6],[89,2,2,6,8]]],[2,2,2,8,10,[[113,2,2,8,10]]],[3,4,3,10,13,[[120,1,1,10,11],[124,3,2,11,13]]],[10,1,1,13,14,[[297,1,1,13,14]]],[12,3,1,14,15,[[365,3,1,14,15]]],[13,4,4,15,19,[[370,2,2,15,17],[379,1,1,17,18],[395,1,1,18,19]]],[37,2,1,19,20,[[914,2,1,19,20]]]],[2232,2389,2390,2545,2627,2701,2711,2732,3448,3450,3752,3941,3942,8983,11158,11266,11267,11464,11798,22924]]],["light",[4,4,[[9,1,1,0,1,[[287,1,1,0,1]]],[10,1,1,1,2,[[301,1,1,1,2]]],[11,1,1,2,3,[[320,1,1,2,3]]],[13,1,1,3,4,[[387,1,1,3,4]]]],[8597,9144,9746,11631]]]]},{"k":"H5217","v":[["viler",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13565]]]]},{"k":"H5218","v":[["*",[4,4,[[19,3,3,0,3,[[642,1,1,0,1],[644,1,1,1,2],[645,1,1,2,3]]],[22,1,1,3,4,[[694,1,1,3,4]]]],[16820,16895,16915,17976]]],["broken",[2,2,[[19,2,2,0,2,[[642,1,1,0,1],[644,1,1,1,2]]]],[16820,16895]]],["stricken",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17976]]],["wounded",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16915]]]]},{"k":"H5219","v":[["*",[2,2,[[0,2,2,0,2,[[36,1,1,0,1],[42,1,1,1,2]]]],[1108,1301]]],["spicery",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1108]]],["spices",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1301]]]]},{"k":"H5220","v":[["*",[3,3,[[0,1,1,0,1,[[20,1,1,0,1]]],[17,1,1,1,2,[[453,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]]],[536,13295,17950]]],["nephew",[2,2,[[17,1,1,0,1,[[453,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]]],[13295,17950]]],["son",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[536]]]]},{"k":"H5221","v":[["*",[500,459,[[0,12,12,0,12,[[3,1,1,0,1],[7,1,1,1,2],[13,4,4,2,6],[18,1,1,6,7],[31,2,2,7,9],[33,1,1,9,10],[35,1,1,10,11],[36,1,1,11,12]]],[1,28,27,12,39,[[51,3,3,12,15],[52,1,1,15,16],[54,2,2,16,18],[56,3,3,18,21],[57,2,2,21,23],[58,5,4,23,27],[61,3,3,27,30],[66,2,2,30,32],[70,6,6,32,38],[71,1,1,38,39]]],[2,5,4,39,43,[[113,4,3,39,42],[115,1,1,42,43]]],[3,30,28,43,71,[[119,1,1,43,44],[124,1,1,44,45],[127,1,1,45,46],[130,2,2,46,48],[136,1,1,48,49],[137,2,2,49,51],[138,6,6,51,57],[141,5,4,57,61],[148,1,1,61,62],[149,1,1,62,63],[151,9,8,63,71]]],[4,24,21,71,92,[[153,1,1,71,72],[154,1,1,72,73],[155,1,1,73,74],[156,1,1,74,75],[159,1,1,75,76],[165,2,1,76,77],[171,3,3,77,80],[172,1,1,80,81],[173,1,1,81,82],[177,5,3,82,85],[179,2,2,85,87],[180,4,4,87,91],[181,1,1,91,92]]],[5,38,35,92,127,[[193,3,2,92,94],[194,3,3,94,97],[195,1,1,97,98],[196,14,13,98,111],[197,7,6,111,117],[198,3,3,117,120],[199,2,2,120,122],[201,1,1,122,123],[205,1,1,123,124],[206,3,3,124,127]]],[6,29,29,127,156,[[211,7,7,127,134],[213,3,3,134,137],[216,1,1,137,138],[217,1,1,138,139],[218,1,1,139,140],[219,2,2,140,142],[221,2,2,142,144],[222,1,1,144,145],[224,1,1,145,146],[225,3,3,146,149],[228,1,1,149,150],[230,5,5,150,155],[231,1,1,155,156]]],[8,52,46,156,202,[[237,1,1,156,157],[239,2,2,157,159],[240,3,3,159,162],[241,3,1,162,163],[242,1,1,163,164],[246,1,1,164,165],[248,2,2,165,167],[249,3,3,167,170],[250,2,2,170,172],[252,12,10,172,182],[253,4,4,182,186],[254,4,3,186,189],[255,1,1,189,190],[256,2,2,190,192],[257,1,1,192,193],[258,3,2,193,195],[259,1,1,195,196],[261,1,1,196,197],[262,1,1,197,198],[264,1,1,198,199],[265,2,2,199,201],[266,1,1,201,202]]],[9,48,46,202,248,[[267,2,2,202,204],[268,3,3,204,207],[269,1,1,207,208],[270,2,2,208,210],[271,4,4,210,214],[272,1,1,214,215],[274,7,7,215,222],[276,1,1,222,223],[277,2,2,223,225],[278,1,1,225,226],[279,2,2,226,228],[280,2,2,228,230],[281,1,1,230,231],[283,1,1,231,232],[284,2,2,232,234],[286,1,1,234,235],[287,7,7,235,242],[289,6,4,242,246],[290,2,2,246,248]]],[10,22,17,248,265,[[301,1,1,248,249],[304,1,1,249,250],[305,3,3,250,253],[306,4,4,253,257],[310,11,6,257,263],[312,2,2,263,265]]],[11,56,43,265,308,[[314,3,2,265,267],[315,6,4,267,271],[318,6,3,271,274],[320,3,3,274,277],[321,4,4,277,281],[322,6,5,281,286],[323,1,1,286,287],[324,2,2,287,289],[325,7,4,289,293],[326,6,4,293,297],[327,6,5,297,302],[330,1,1,302,303],[331,2,2,303,305],[333,1,1,305,306],[337,2,2,306,308]]],[12,25,24,308,332,[[338,1,1,308,309],[341,2,2,309,311],[347,1,1,311,312],[348,5,4,312,316],[350,1,1,316,317],[351,3,3,317,320],[355,7,7,320,327],[357,4,4,327,331],[358,1,1,331,332]]],[13,20,19,332,351,[[379,1,1,332,333],[380,2,2,333,335],[382,1,1,335,336],[384,2,2,336,338],[387,1,1,338,339],[388,2,2,339,341],[391,6,6,341,347],[394,4,3,347,350],[399,1,1,350,351]]],[15,1,1,351,352,[[425,1,1,351,352]]],[16,1,1,352,353,[[434,1,1,352,353]]],[17,4,4,353,357,[[436,2,2,353,355],[437,1,1,355,356],[451,1,1,356,357]]],[18,13,13,357,370,[[480,1,1,357,358],[546,1,1,358,359],[555,3,3,359,362],[579,1,1,362,363],[582,2,2,363,365],[598,1,1,365,366],[612,2,2,366,368],[613,2,2,368,370]]],[19,6,6,370,376,[[644,2,2,370,372],[646,1,1,372,373],[650,3,3,373,376]]],[21,1,1,376,377,[[675,1,1,376,377]]],[22,21,20,377,397,[[679,1,1,377,378],[683,1,1,378,379],[687,1,1,379,380],[688,2,2,380,382],[689,2,2,382,384],[692,2,2,384,386],[705,2,1,386,387],[708,1,1,387,388],[715,2,2,388,390],[727,1,1,390,391],[728,1,1,391,392],[731,1,1,392,393],[735,1,1,393,394],[736,1,1,394,395],[738,1,1,395,396],[744,1,1,396,397]]],[23,30,29,397,426,[[746,1,1,397,398],[749,2,2,398,400],[758,1,1,400,401],[762,2,2,401,403],[764,2,2,403,405],[765,2,2,405,407],[770,1,1,407,408],[773,1,1,408,409],[774,1,1,409,410],[777,1,1,410,411],[781,2,2,411,413],[784,3,2,413,415],[785,5,5,415,420],[787,1,1,420,421],[790,2,2,421,423],[791,1,1,423,424],[793,1,1,424,425],[796,1,1,425,426]]],[24,1,1,426,427,[[799,1,1,426,427]]],[25,13,13,427,440,[[806,1,1,427,428],[807,1,1,428,429],[808,1,1,429,430],[810,3,3,430,433],[822,2,2,433,435],[823,1,1,435,436],[833,1,1,436,437],[834,1,1,437,438],[840,1,1,438,439],[841,1,1,439,440]]],[26,1,1,440,441,[[857,1,1,440,441]]],[27,3,3,441,444,[[867,1,1,441,442],[870,1,1,442,443],[875,1,1,443,444]]],[29,4,4,444,448,[[881,1,1,444,445],[882,1,1,445,446],[884,1,1,446,447],[887,1,1,447,448]]],[31,2,2,448,450,[[892,2,2,448,450]]],[32,2,2,450,452,[[897,1,1,450,451],[898,1,1,451,452]]],[36,1,1,452,453,[[910,1,1,452,453]]],[37,6,5,453,458,[[919,1,1,453,454],[920,1,1,454,455],[922,2,1,455,456],[923,2,2,456,458]]],[38,1,1,458,459,[[928,1,1,458,459]]]],[94,204,341,343,351,353,468,936,939,1010,1075,1104,1565,1566,1567,1599,1646,1648,1702,1705,1710,1726,1727,1757,1767,1773,1774,1828,1829,1845,1988,1989,2089,2092,2095,2096,2097,2103,2115,3463,3464,3467,3548,3705,3956,4057,4120,4153,4322,4364,4375,4381,4398,4400,4402,4403,4407,4485,4486,4488,4489,4722,4764,4856,4860,4861,4862,4863,4866,4869,4875,4896,4971,4978,5050,5113,5287,5410,5412,5417,5440,5448,5549,5550,5558,5609,5610,5633,5638,5639,5646,5686,5979,5981,6023,6024,6026,6055,6068,6074,6084,6090,6092,6094,6096,6097,6099,6101,6103,6104,6105,6115,6117,6118,6119,6121,6124,6131,6136,6137,6166,6175,6218,6368,6375,6377,6381,6513,6514,6517,6519,6521,6526,6534,6581,6597,6599,6670,6707,6730,6797,6798,6850,6862,6873,6928,6937,6944,6945,7020,7085,7091,7093,7099,7102,7112,7254,7299,7305,7325,7328,7331,7350,7363,7456,7488,7489,7522,7539,7556,7563,7567,7627,7643,7644,7645,7653,7654,7664,7667,7668,7675,7682,7683,7687,7703,7711,7714,7716,7763,7781,7783,7806,7812,7815,7844,7913,7939,7972,7979,7995,8011,8023,8037,8071,8072,8080,8108,8126,8127,8140,8152,8156,8157,8164,8210,8211,8212,8214,8218,8219,8222,8258,8274,8280,8295,8345,8347,8362,8363,8403,8451,8489,8493,8564,8582,8592,8596,8597,8598,8599,8601,8663,8665,8673,8674,8702,8709,9123,9233,9269,9276,9278,9290,9293,9294,9299,9428,9429,9437,9443,9444,9445,9504,9514,9559,9565,9595,9599,9600,9601,9692,9695,9696,9748,9755,9756,9763,9771,9780,9783,9802,9804,9810,9818,9825,9841,9870,9871,9888,9889,9890,9896,9901,9902,9903,9906,9935,9939,9941,9950,9955,10032,10096,10098,10143,10243,10247,10298,10426,10428,10661,10679,10687,10695,10696,10770,10785,10789,10790,10891,10892,10893,10895,10899,10900,10902,10927,10930,10931,10933,10941,11470,11489,11490,11513,11565,11575,11633,11649,11650,11707,11715,11717,11718,11720,11723,11769,11781,11787,11933,12696,12839,12884,12886,12898,13248,13964,14961,15133,15164,15179,15525,15639,15642,16087,16183,16185,16206,16213,16883,16899,16950,17057,17058,17079,17605,17659,17764,17842,17870,17874,17888,17899,17934,17957,18158,18248,18388,18390,18646,18668,18715,18782,18790,18831,18925,18995,19061,19064,19312,19402,19405,19424,19426,19446,19447,19595,19656,19681,19780,19884,19889,19955,19956,19959,19960,19966,19973,19975,20008,20047,20058,20074,20155,20303,20384,20548,20574,20586,20627,20629,20630,20958,20961,20989,21263,21301,21451,21478,21968,22168,22224,22287,22410,22419,22461,22496,22575,22576,22634,22661,22872,23003,23027,23049,23065,23066,23144]]],["+",[173,164,[[0,4,4,0,4,[[13,3,3,0,3],[35,1,1,3,4]]],[1,10,10,4,14,[[51,1,1,4,5],[52,1,1,5,6],[56,2,2,6,8],[57,2,2,8,10],[66,1,1,10,11],[70,3,3,11,14]]],[3,4,4,14,18,[[136,1,1,14,15],[138,3,3,15,18]]],[4,7,6,18,24,[[153,1,1,18,19],[154,1,1,19,20],[165,2,1,20,21],[171,1,1,21,22],[172,1,1,22,23],[177,1,1,23,24]]],[5,7,7,24,31,[[193,1,1,24,25],[194,1,1,25,26],[196,2,2,26,28],[197,1,1,28,29],[201,1,1,29,30],[206,1,1,30,31]]],[6,11,11,31,42,[[211,5,5,31,36],[213,1,1,36,37],[216,1,1,37,38],[218,1,1,38,39],[222,1,1,39,40],[230,1,1,40,41],[231,1,1,41,42]]],[8,18,18,42,60,[[239,1,1,42,43],[240,1,1,43,44],[246,1,1,44,45],[248,2,2,45,47],[249,1,1,47,48],[250,2,2,48,50],[252,4,4,50,54],[253,1,1,54,55],[254,2,2,55,57],[262,1,1,57,58],[265,1,1,58,59],[266,1,1,59,60]]],[9,21,20,60,80,[[267,1,1,60,61],[271,1,1,61,62],[274,4,4,62,66],[277,1,1,66,67],[278,1,1,67,68],[279,2,2,68,70],[280,1,1,70,71],[283,1,1,71,72],[284,1,1,72,73],[287,4,4,73,77],[289,4,3,77,80]]],[10,8,8,80,88,[[304,1,1,80,81],[305,2,2,81,83],[306,2,2,83,85],[310,1,1,85,86],[312,2,2,86,88]]],[11,28,23,88,111,[[314,3,2,88,90],[315,3,2,90,92],[318,1,1,92,93],[320,2,2,93,95],[321,2,2,95,97],[322,3,3,97,100],[324,1,1,100,101],[325,3,2,101,103],[326,5,3,103,106],[327,2,2,106,108],[330,1,1,108,109],[333,1,1,109,110],[337,1,1,110,111]]],[12,20,19,111,130,[[338,1,1,111,112],[341,2,2,112,114],[347,1,1,114,115],[348,4,3,115,118],[350,1,1,118,119],[351,2,2,119,121],[355,5,5,121,126],[357,3,3,126,129],[358,1,1,129,130]]],[13,11,11,130,141,[[380,1,1,130,131],[382,1,1,131,132],[384,2,2,132,134],[387,1,1,134,135],[388,1,1,135,136],[391,4,4,136,140],[399,1,1,140,141]]],[17,1,1,141,142,[[437,1,1,141,142]]],[18,3,3,142,145,[[480,1,1,142,143],[612,2,2,143,145]]],[19,1,1,145,146,[[644,1,1,145,146]]],[23,12,11,146,157,[[746,1,1,146,147],[764,1,1,147,148],[765,1,1,148,149],[784,3,2,149,151],[785,3,3,151,154],[787,1,1,154,155],[790,1,1,155,156],[791,1,1,156,157]]],[25,2,2,157,159,[[822,1,1,157,158],[833,1,1,158,159]]],[26,1,1,159,160,[[857,1,1,159,160]]],[31,1,1,160,161,[[892,1,1,160,161]]],[32,1,1,161,162,[[897,1,1,161,162]]],[37,1,1,162,163,[[923,1,1,162,163]]],[38,1,1,163,164,[[928,1,1,163,164]]]],[341,343,353,1075,1566,1599,1705,1710,1726,1727,1988,2095,2097,2103,4322,4398,4402,4407,4896,4971,5287,5410,5440,5549,5979,6023,6068,6104,6118,6218,6377,6514,6519,6521,6526,6534,6581,6670,6730,6873,7091,7112,7305,7328,7456,7488,7489,7556,7563,7567,7644,7667,7668,7675,7682,7711,7716,7939,7979,8011,8023,8157,8210,8211,8218,8222,8280,8295,8345,8347,8362,8451,8493,8592,8596,8597,8598,8665,8673,8674,9233,9269,9278,9294,9299,9429,9504,9514,9559,9565,9599,9600,9692,9748,9755,9763,9780,9802,9804,9810,9870,9888,9890,9901,9903,9906,9939,9941,10032,10143,10247,10298,10426,10428,10661,10687,10695,10696,10770,10789,10790,10891,10892,10893,10899,10902,10927,10930,10931,10941,11489,11513,11565,11575,11633,11649,11707,11715,11718,11723,11933,12898,13964,16183,16185,16883,18995,19424,19446,19955,19956,19959,19973,19975,20008,20058,20074,20958,21263,21968,22575,22634,23066,23144]]],["Smite",[7,7,[[10,2,2,0,2,[[310,2,2,0,2]]],[11,2,2,2,4,[[321,1,1,2,3],[325,1,1,3,4]]],[19,1,1,4,5,[[646,1,1,4,5]]],[25,1,1,5,6,[[807,1,1,5,6]]],[29,1,1,6,7,[[887,1,1,6,7]]]],[9443,9445,9783,9889,16950,20574,22496]]],["beat",[4,4,[[4,1,1,0,1,[[177,1,1,0,1]]],[11,1,1,1,2,[[325,1,1,1,2]]],[19,1,1,2,3,[[650,1,1,2,3]]],[31,1,1,3,4,[[892,1,1,3,4]]]],[5550,9896,17058,22576]]],["beaten",[3,3,[[1,2,2,0,2,[[54,2,2,0,2]]],[4,1,1,2,3,[[177,1,1,2,3]]]],[1646,1648,5549]]],["beatest",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17057]]],["clapped",[1,1,[[11,1,1,0,1,[[323,1,1,0,1]]]],[9841]]],["forth",[1,1,[[27,1,1,0,1,[[875,1,1,0,1]]]],[22287]]],["give",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5550]]],["given",[3,3,[[11,2,2,0,2,[[320,1,1,0,1],[321,1,1,1,2]]],[13,1,1,2,3,[[388,1,1,2,3]]]],[9756,9771,11650]]],["kill",[4,3,[[0,2,2,0,2,[[3,1,1,0,1],[36,1,1,1,2]]],[8,2,1,2,3,[[252,2,1,2,3]]]],[94,1104,7627]]],["killed",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9290]]],["killeth",[11,10,[[2,4,3,0,3,[[113,4,3,0,3]]],[3,3,3,3,6,[[151,3,3,3,6]]],[5,2,2,6,8,[[206,2,2,6,8]]],[8,2,2,8,10,[[252,2,2,8,10]]]],[3463,3464,3467,4856,4860,4875,6375,6381,7643,7645]]],["made",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7522]]],["murderers",[1,1,[[11,1,1,0,1,[[326,1,1,0,1]]]],[9902]]],["punish",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3548]]],["slain",[13,12,[[3,4,3,0,3,[[141,4,3,0,3]]],[4,1,1,3,4,[[173,1,1,3,4]]],[6,1,1,4,5,[[225,1,1,4,5]]],[8,2,2,5,7,[[253,1,1,5,6],[256,1,1,6,7]]],[17,2,2,7,9,[[436,2,2,7,9]]],[23,3,3,9,12,[[762,1,1,9,10],[777,1,1,10,11],[785,1,1,11,12]]]],[4485,4486,4489,5448,6945,7683,7783,12884,12886,19405,19780,19966]]],["slay",[9,9,[[0,1,1,0,1,[[33,1,1,0,1]]],[4,2,2,1,3,[[171,1,1,1,2],[179,1,1,2,3]]],[9,1,1,3,4,[[287,1,1,3,4]]],[10,1,1,4,5,[[310,1,1,4,5]]],[11,1,1,5,6,[[322,1,1,5,6]]],[23,3,3,6,9,[[749,1,1,6,7],[764,1,1,7,8],[773,1,1,8,9]]]],[1010,5412,5610,8582,9444,9818,19064,19426,19656]]],["slayer",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4869]]],["slaying",[2,2,[[5,1,1,0,1,[[196,1,1,0,1]]],[25,1,1,1,2,[[810,1,1,1,2]]]],[6084,20630]]],["slew",[28,28,[[5,1,1,0,1,[[196,1,1,0,1]]],[6,7,7,1,8,[[211,1,1,1,2],[213,2,2,2,4],[219,1,1,4,5],[224,1,1,5,6],[225,1,1,6,7],[230,1,1,7,8]]],[8,5,5,8,13,[[239,1,1,8,9],[252,1,1,9,10],[253,1,1,10,11],[254,1,1,11,12],[264,1,1,12,13]]],[9,4,4,13,17,[[274,1,1,13,14],[287,2,2,14,16],[289,1,1,16,17]]],[10,4,4,17,21,[[310,4,4,17,21]]],[12,2,2,21,23,[[355,1,1,21,22],[357,1,1,22,23]]],[13,1,1,23,24,[[379,1,1,23,24]]],[22,1,1,24,25,[[744,1,1,24,25]]],[23,2,2,25,27,[[770,1,1,25,26],[785,1,1,26,27]]],[25,1,1,27,28,[[810,1,1,27,28]]]],[6074,6513,6597,6599,6798,6928,6944,7099,7299,7654,7703,7714,7972,8214,8599,8601,8674,9428,9429,9437,9444,10895,10933,11470,18925,19595,19960,20629]]],["slewest",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7781]]],["smite",[61,57,[[0,3,3,0,3,[[7,1,1,0,1],[31,2,2,1,3]]],[1,5,5,3,8,[[56,1,1,3,4],[58,1,1,4,5],[61,2,2,5,7],[66,1,1,7,8]]],[3,7,7,8,15,[[130,1,1,8,9],[138,1,1,9,10],[141,1,1,10,11],[151,4,4,11,15]]],[4,6,6,15,21,[[159,1,1,15,16],[171,1,1,16,17],[180,4,4,17,21]]],[5,2,2,21,23,[[198,1,1,21,22],[199,1,1,22,23]]],[6,2,2,23,25,[[230,2,2,23,25]]],[8,7,6,25,31,[[252,1,1,25,26],[253,1,1,26,27],[254,1,1,27,28],[255,1,1,28,29],[258,2,1,29,30],[261,1,1,30,31]]],[9,4,4,31,35,[[268,1,1,31,32],[271,1,1,32,33],[281,1,1,33,34],[284,1,1,34,35]]],[10,1,1,35,36,[[310,1,1,35,36]]],[11,5,3,36,39,[[315,1,1,36,37],[318,4,2,37,39]]],[18,1,1,39,40,[[598,1,1,39,40]]],[22,5,5,40,45,[[688,1,1,40,41],[689,2,2,41,43],[727,1,1,43,44],[736,1,1,44,45]]],[23,3,3,45,48,[[762,1,1,45,46],[765,1,1,46,47],[793,1,1,47,48]]],[25,4,4,48,52,[[806,1,1,48,49],[810,1,1,49,50],[822,1,1,50,51],[840,1,1,51,52]]],[29,2,2,52,54,[[881,1,1,52,53],[884,1,1,53,54]]],[37,4,3,54,57,[[919,1,1,54,55],[920,1,1,55,56],[922,2,1,56,57]]]],[204,936,939,1702,1757,1828,1829,1989,4120,4381,4488,4861,4862,4863,4866,5113,5417,5633,5638,5639,5646,6136,6166,7085,7093,7664,7687,7716,7763,7812,7913,8071,8156,8403,8489,9443,9595,9695,9696,16087,17874,17888,17899,18646,18790,19402,19447,20155,20548,20627,20961,21451,22410,22461,23003,23027,23049]]],["smiters",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18668]]],["smitest",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1567]]],["smiteth",[9,9,[[1,2,2,0,2,[[70,2,2,0,2]]],[4,2,2,2,4,[[177,1,1,2,3],[179,1,1,3,4]]],[9,1,1,4,5,[[271,1,1,4,5]]],[12,1,1,5,6,[[348,1,1,5,6]]],[22,1,1,6,7,[[687,1,1,6,7]]],[24,1,1,7,8,[[799,1,1,7,8]]],[25,1,1,8,9,[[808,1,1,8,9]]]],[2089,2092,5558,5609,8140,10679,17842,20384,20586]]],["smiting",[3,3,[[1,1,1,0,1,[[51,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[32,1,1,2,3,[[898,1,1,2,3]]]],[1565,9445,22661]]],["smitten",[30,30,[[1,3,3,0,3,[[58,2,2,0,2],[71,1,1,2,3]]],[3,2,2,3,5,[[138,1,1,3,4],[149,1,1,4,5]]],[6,1,1,5,6,[[211,1,1,5,6]]],[8,2,2,6,8,[[240,1,1,6,7],[241,1,1,7,8]]],[9,3,3,8,11,[[268,1,1,8,9],[274,1,1,9,10],[277,1,1,10,11]]],[10,1,1,11,12,[[301,1,1,11,12]]],[11,1,1,12,13,[[325,1,1,12,13]]],[12,1,1,13,14,[[355,1,1,13,14]]],[13,2,2,14,16,[[391,1,1,14,15],[394,1,1,15,16]]],[17,1,1,16,17,[[451,1,1,16,17]]],[18,2,2,17,19,[[546,1,1,17,18],[579,1,1,18,19]]],[22,3,3,19,22,[[683,1,1,19,20],[705,1,1,20,21],[731,1,1,21,22]]],[23,2,2,22,24,[[758,1,1,22,23],[781,1,1,23,24]]],[25,3,3,24,27,[[823,1,1,24,25],[834,1,1,25,26],[841,1,1,26,27]]],[27,2,2,27,29,[[867,1,1,27,28],[870,1,1,28,29]]],[29,1,1,29,30,[[882,1,1,29,30]]]],[1773,1774,2115,4403,4764,6517,7331,7350,8080,8219,8274,9123,9890,10900,11720,11781,13248,14961,15525,17764,18158,18715,19312,19884,20989,21301,21478,22168,22224,22419]]],["smote",[120,114,[[0,2,2,0,2,[[13,1,1,0,1],[18,1,1,1,2]]],[1,4,3,2,5,[[58,2,1,2,3],[61,1,1,3,4],[70,1,1,4,5]]],[3,9,9,5,14,[[119,1,1,5,6],[124,1,1,6,7],[127,1,1,7,8],[130,1,1,8,9],[137,2,2,9,11],[138,1,1,11,12],[148,1,1,12,13],[151,1,1,13,14]]],[4,3,3,14,17,[[155,1,1,14,15],[156,1,1,15,16],[181,1,1,16,17]]],[5,25,23,17,40,[[193,2,1,17,18],[194,2,2,18,20],[195,1,1,20,21],[196,10,10,21,31],[197,6,5,31,36],[198,2,2,36,38],[199,1,1,38,39],[205,1,1,39,40]]],[6,7,7,40,47,[[217,1,1,40,41],[219,1,1,41,42],[221,2,2,42,44],[225,1,1,44,45],[228,1,1,45,46],[230,1,1,46,47]]],[8,11,9,47,56,[[240,1,1,47,48],[241,2,1,48,49],[242,1,1,49,50],[249,1,1,50,51],[252,2,1,51,52],[257,1,1,52,53],[258,1,1,53,54],[259,1,1,54,55],[265,1,1,55,56]]],[9,14,14,56,70,[[267,1,1,56,57],[268,1,1,57,58],[269,1,1,58,59],[270,2,2,59,61],[271,1,1,61,62],[272,1,1,62,63],[274,1,1,63,64],[276,1,1,64,65],[280,1,1,65,66],[286,1,1,66,67],[289,1,1,67,68],[290,2,2,68,70]]],[10,3,3,70,73,[[305,1,1,70,71],[306,1,1,71,72],[310,1,1,72,73]]],[11,13,13,73,86,[[315,1,1,73,74],[318,1,1,74,75],[322,2,2,75,77],[324,1,1,77,78],[325,1,1,78,79],[327,4,4,79,83],[331,2,2,83,85],[337,1,1,85,86]]],[12,1,1,86,87,[[351,1,1,86,87]]],[13,5,4,87,91,[[380,1,1,87,88],[391,1,1,88,89],[394,3,2,89,91]]],[15,1,1,91,92,[[425,1,1,91,92]]],[16,1,1,92,93,[[434,1,1,92,93]]],[18,7,7,93,100,[[555,3,3,93,96],[582,2,2,96,98],[613,2,2,98,100]]],[21,1,1,100,101,[[675,1,1,100,101]]],[22,9,9,101,110,[[688,1,1,101,102],[692,2,2,102,104],[705,1,1,104,105],[708,1,1,105,106],[715,2,2,106,108],[735,1,1,108,109],[738,1,1,109,110]]],[23,3,3,110,113,[[781,1,1,110,111],[790,1,1,111,112],[796,1,1,112,113]]],[36,1,1,113,114,[[910,1,1,113,114]]]],[351,468,1767,1845,2096,3705,3956,4057,4153,4364,4375,4400,4722,4866,4978,5050,5686,5981,6024,6026,6055,6074,6090,6092,6094,6096,6097,6099,6101,6103,6105,6115,6117,6119,6121,6124,6131,6137,6175,6368,6707,6797,6850,6862,6937,7020,7102,7325,7350,7363,7539,7653,7806,7815,7844,7995,8037,8072,8108,8126,8127,8152,8164,8212,8258,8363,8564,8663,8702,8709,9276,9293,9445,9601,9692,9818,9825,9871,9889,9935,9941,9950,9955,10096,10098,10243,10785,11490,11717,11769,11787,12696,12839,15133,15164,15179,15639,15642,16206,16213,17605,17870,17934,17957,18158,18248,18388,18390,18782,18831,19889,20047,20303,22872]]],["stricken",[3,3,[[19,1,1,0,1,[[650,1,1,0,1]]],[22,1,1,1,2,[[679,1,1,1,2]]],[23,1,1,2,3,[[749,1,1,2,3]]]],[17079,17659,19061]]],["strike",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16899]]],["struck",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7254]]],["went",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9600]]],["wounded",[2,2,[[23,1,1,0,1,[[774,1,1,0,1]]],[37,1,1,1,2,[[923,1,1,1,2]]]],[19681,23065]]]]},{"k":"H5222","v":[["abjects",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14425]]]]},{"k":"H5223","v":[["*",[3,3,[[9,2,2,0,2,[[270,1,1,0,1],[275,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]]],[8124,8230,18924]]],["contrite",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18924]]],["lame",[2,2,[[9,2,2,0,2,[[270,1,1,0,1],[275,1,1,1,2]]]],[8124,8230]]]]},{"k":"H5224","v":[["Necho",[3,3,[[13,3,3,0,3,[[401,2,2,0,2],[402,1,1,2,3]]]],[11986,11988,11997]]]]},{"k":"H5225","v":[["Nachon's",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8163]]]]},{"k":"H5226","v":[["before",[1,1,[[1,1,1,0,1,[[63,1,1,0,1]]]],[1891]]]]},{"k":"H5227","v":[["*",[24,23,[[0,2,2,0,2,[[24,1,1,0,1],[29,1,1,1,2]]],[1,2,2,2,4,[[75,1,1,2,3],[89,1,1,3,4]]],[3,1,1,4,5,[[135,1,1,4,5]]],[5,2,2,5,7,[[201,1,1,5,6],[204,1,1,6,7]]],[6,3,3,7,10,[[228,1,1,7,8],[229,1,1,8,9],[230,1,1,9,10]]],[10,2,2,10,12,[[310,1,1,10,11],[312,1,1,11,12]]],[13,1,1,12,13,[[384,1,1,12,13]]],[16,2,1,13,14,[[430,2,1,13,14]]],[19,2,2,14,16,[[631,1,1,14,15],[632,1,1,15,16]]],[23,1,1,16,17,[[761,1,1,16,17]]],[24,1,1,17,18,[[798,1,1,17,18]]],[25,5,5,18,23,[[815,3,3,18,21],[847,1,1,21,22],[848,1,1,22,23]]]],[679,868,2270,2731,4293,6209,6310,6999,7034,7097,9437,9515,11576,12780,16515,16538,19373,20351,20734,20735,20738,21664,21699]]],["+",[4,4,[[3,1,1,0,1,[[135,1,1,0,1]]],[6,2,2,1,3,[[229,1,1,1,2],[230,1,1,2,3]]],[23,1,1,3,4,[[761,1,1,3,4]]]],[4293,7034,7097,19373]]],["against",[10,9,[[1,2,2,0,2,[[75,1,1,0,1],[89,1,1,1,2]]],[5,1,1,2,3,[[204,1,1,2,3]]],[10,2,2,3,5,[[310,1,1,3,4],[312,1,1,4,5]]],[13,1,1,5,6,[[384,1,1,5,6]]],[16,2,1,6,7,[[430,2,1,6,7]]],[25,2,2,7,9,[[847,1,1,7,8],[848,1,1,8,9]]]],[2270,2731,6310,9437,9515,11576,12780,21664,21699]]],["before",[8,8,[[0,1,1,0,1,[[29,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]],[6,1,1,2,3,[[228,1,1,2,3]]],[19,1,1,3,4,[[632,1,1,3,4]]],[24,1,1,4,5,[[798,1,1,4,5]]],[25,3,3,5,8,[[815,3,3,5,8]]]],[868,6209,6999,16538,20351,20734,20735,20738]]],["for",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[679]]],["on",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16515]]]]},{"k":"H5228","v":[["*",[4,4,[[9,1,1,0,1,[[281,1,1,0,1]]],[19,2,2,1,3,[[635,1,1,1,2],[651,1,1,2,3]]],[22,1,1,3,4,[[735,1,1,3,4]]]],[8392,16611,17105,18767]]],["plain",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16611]]],["right",[2,2,[[9,1,1,0,1,[[281,1,1,0,1]]],[19,1,1,1,2,[[651,1,1,1,2]]]],[8392,17105]]],["uprightness",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18767]]]]},{"k":"H5229","v":[["*",[4,4,[[22,3,3,0,3,[[704,1,1,0,1],[708,1,1,1,2],[737,1,1,2,3]]],[29,1,1,3,4,[[881,1,1,3,4]]]],[18140,18227,18814,22405]]],["equity",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18814]]],["right",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22405]]],["things",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18227]]],["uprightness",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18140]]]]},{"k":"H5230","v":[["*",[4,4,[[0,1,1,0,1,[[36,1,1,0,1]]],[3,1,1,1,2,[[141,1,1,1,2]]],[18,1,1,2,3,[[582,1,1,2,3]]],[38,1,1,3,4,[[925,1,1,3,4]]]],[1101,4489,15631,23103]]],["beguiled",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4489]]],["conspired",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1101]]],["deceiver",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23103]]],["subtilly",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15631]]]]},{"k":"H5231","v":[["wiles",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4489]]]]},{"k":"H5232","v":[["*",[2,2,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]]],[12159,12199]]],["+",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12159]]],["goods",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12199]]]]},{"k":"H5233","v":[["*",[5,5,[[5,1,1,0,1,[[208,1,1,0,1]]],[13,2,2,1,3,[[367,2,2,1,3]]],[20,2,2,3,5,[[663,1,1,3,4],[664,1,1,4,5]]]],[6434,11205,11206,17416,17419]]],["riches",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6434]]],["wealth",[4,4,[[13,2,2,0,2,[[367,2,2,0,2]]],[20,2,2,2,4,[[663,1,1,2,3],[664,1,1,3,4]]]],[11205,11206,17416,17419]]]]},{"k":"H5234","v":[["*",[50,47,[[0,10,8,0,8,[[26,1,1,0,1],[30,1,1,1,2],[36,2,2,2,4],[37,2,2,4,6],[41,4,2,6,8]]],[4,5,5,8,13,[[153,1,1,8,9],[168,1,1,9,10],[173,1,1,10,11],[184,1,1,11,12],[185,1,1,12,13]]],[6,1,1,13,14,[[228,1,1,13,14]]],[7,3,3,14,17,[[233,2,2,14,16],[234,1,1,16,17]]],[8,2,2,17,19,[[258,1,1,17,18],[261,1,1,18,19]]],[9,1,1,19,20,[[269,1,1,19,20]]],[10,5,4,20,24,[[304,3,2,20,22],[308,1,1,22,23],[310,1,1,23,24]]],[14,1,1,24,25,[[405,1,1,24,25]]],[15,2,2,25,27,[[418,1,1,25,26],[425,1,1,26,27]]],[17,8,8,27,35,[[437,1,1,27,28],[439,1,1,28,29],[442,1,1,29,30],[456,1,1,30,31],[459,2,2,31,33],[469,2,2,33,35]]],[18,2,2,35,37,[[580,1,1,35,36],[619,1,1,36,37]]],[19,4,4,37,41,[[647,1,1,37,38],[651,1,1,38,39],[653,1,1,39,40],[655,1,1,40,41]]],[22,2,2,41,43,[[739,1,1,41,42],[741,1,1,42,43]]],[23,2,2,43,45,[[763,1,1,43,44],[768,1,1,44,45]]],[24,1,1,45,46,[[800,1,1,45,46]]],[26,1,1,46,47,[[860,1,1,46,47]]]],[750,905,1115,1116,1144,1145,1259,1260,4909,5361,5464,5785,5819,6996,7159,7168,7186,7817,7922,8117,9223,9224,9348,9449,12110,12413,12695,12903,12946,13018,13384,13449,13453,13702,13708,15565,16290,16965,17102,17165,17217,18852,18882,19411,19529,20428,22075]]],["+",[7,7,[[0,1,1,0,1,[[41,1,1,0,1]]],[6,1,1,1,2,[[228,1,1,1,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[8,1,1,3,4,[[261,1,1,3,4]]],[10,1,1,4,5,[[304,1,1,4,5]]],[23,2,2,5,7,[[763,1,1,5,6],[768,1,1,6,7]]]],[1260,6996,7186,7922,9224,19411,19529]]],["Discern",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1144]]],["acknowledge",[5,5,[[4,2,2,0,2,[[173,1,1,0,1],[185,1,1,1,2]]],[22,2,2,2,4,[[739,1,1,2,3],[741,1,1,3,4]]],[26,1,1,4,5,[[860,1,1,4,5]]]],[5464,5819,18852,18882,22075]]],["acknowledged",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1145]]],["another",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9223]]],["could",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12695]]],["delivered",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7817]]],["discern",[3,3,[[0,1,1,0,1,[[30,1,1,0,1]]],[14,1,1,1,2,[[405,1,1,1,2]]],[17,1,1,2,3,[[439,1,1,2,3]]]],[905,12110,12946]]],["discerned",[2,2,[[0,1,1,0,1,[[26,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]]],[750,9449]]],["dissembleth",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17165]]],["knew",[5,5,[[0,3,3,0,3,[[36,1,1,0,1],[41,2,2,1,3]]],[10,1,1,3,4,[[308,1,1,3,4]]],[17,1,1,4,5,[[437,1,1,4,5]]]],[1116,1259,1260,9348,12903]]],["know",[7,7,[[0,1,1,0,1,[[36,1,1,0,1]]],[17,4,4,1,5,[[442,1,1,1,2],[456,1,1,2,3],[459,2,2,3,5]]],[18,2,2,5,7,[[580,1,1,5,6],[619,1,1,6,7]]]],[1115,13018,13384,13449,13453,15565,16290]]],["knoweth",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13708]]],["knowledge",[2,2,[[7,2,2,0,2,[[233,2,2,0,2]]]],[7159,7168]]],["known",[2,2,[[19,1,1,0,1,[[647,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[16965,20428]]],["notice",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8117]]],["perceived",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12413]]],["regardeth",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13702]]],["respect",[4,4,[[4,2,2,0,2,[[153,1,1,0,1],[168,1,1,1,2]]],[19,2,2,2,4,[[651,1,1,2,3],[655,1,1,3,4]]]],[4909,5361,17102,17217]]],["strange",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1259]]],["strangely",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5785]]],["woman",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9223]]]]},{"k":"H5235","v":[["strange",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13591]]]]},{"k":"H5236","v":[["*",[36,35,[[0,4,4,0,4,[[16,2,2,0,2],[34,2,2,2,4]]],[1,1,1,4,5,[[61,1,1,4,5]]],[2,1,1,5,6,[[111,1,1,5,6]]],[4,2,2,6,8,[[183,1,1,6,7],[184,1,1,7,8]]],[5,2,2,8,10,[[210,2,2,8,10]]],[6,1,1,10,11,[[220,1,1,10,11]]],[8,1,1,11,12,[[242,1,1,11,12]]],[9,2,2,12,14,[[288,2,2,12,14]]],[13,2,2,14,16,[[380,1,1,14,15],[399,1,1,15,16]]],[15,2,2,16,18,[[421,1,1,16,17],[425,1,1,17,18]]],[18,6,6,18,24,[[495,2,2,18,20],[558,1,1,20,21],[614,1,1,21,22],[621,2,2,22,24]]],[22,5,5,24,29,[[734,2,2,24,26],[738,1,1,26,27],[739,1,1,27,28],[740,1,1,28,29]]],[23,2,2,29,31,[[749,1,1,29,30],[752,1,1,30,31]]],[25,3,2,31,33,[[845,3,2,31,33]]],[26,1,1,33,34,[[860,1,1,33,34]]],[38,1,1,34,35,[[926,1,1,34,35]]]],[409,424,1013,1015,1859,3394,5744,5770,6496,6499,6827,7355,8647,8648,11478,11923,12513,12701,14162,14163,15226,16226,16312,16316,18756,18759,18831,18848,18862,19077,19172,21606,21608,22075,23114]]],["+",[12,11,[[0,2,2,0,2,[[16,2,2,0,2]]],[1,1,1,2,3,[[61,1,1,2,3]]],[2,1,1,3,4,[[111,1,1,3,4]]],[9,2,2,4,6,[[288,2,2,4,6]]],[15,1,1,6,7,[[421,1,1,6,7]]],[18,2,2,7,9,[[495,2,2,7,9]]],[25,3,2,9,11,[[845,3,2,9,11]]]],[409,424,1859,3394,8647,8648,12513,14162,14163,21606,21608]]],["alien",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18848]]],["strange",[17,17,[[0,2,2,0,2,[[34,2,2,0,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[5,2,2,3,5,[[210,2,2,3,5]]],[6,1,1,5,6,[[220,1,1,5,6]]],[8,1,1,6,7,[[242,1,1,6,7]]],[13,2,2,7,9,[[380,1,1,7,8],[399,1,1,8,9]]],[18,4,4,9,13,[[558,1,1,9,10],[614,1,1,10,11],[621,2,2,11,13]]],[23,2,2,13,15,[[749,1,1,13,14],[752,1,1,14,15]]],[26,1,1,15,16,[[860,1,1,15,16]]],[38,1,1,16,17,[[926,1,1,16,17]]]],[1013,1015,5770,6496,6499,6827,7355,11478,11923,15226,16226,16312,16316,19077,19172,22075,23114]]],["stranger",[3,3,[[22,3,3,0,3,[[734,2,2,0,2],[740,1,1,2,3]]]],[18756,18759,18862]]],["strangers",[3,3,[[4,1,1,0,1,[[183,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]],[22,1,1,2,3,[[738,1,1,2,3]]]],[5744,12701,18831]]]]},{"k":"H5237","v":[["*",[46,46,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,3,3,1,4,[[51,1,1,1,2],[67,1,1,2,3],[70,1,1,3,4]]],[4,5,5,4,9,[[166,1,1,4,5],[167,1,1,5,6],[169,1,1,6,7],[175,1,1,7,8],[181,1,1,8,9]]],[6,1,1,9,10,[[229,1,1,9,10]]],[7,1,1,10,11,[[233,1,1,10,11]]],[9,1,1,11,12,[[281,1,1,11,12]]],[10,4,4,12,16,[[298,2,2,12,14],[301,2,2,14,16]]],[13,2,2,16,18,[[372,2,2,16,18]]],[14,7,7,18,25,[[412,7,7,18,25]]],[15,2,2,25,27,[[425,2,2,25,27]]],[17,1,1,27,28,[[454,1,1,27,28]]],[18,1,1,28,29,[[546,1,1,28,29]]],[19,9,9,29,38,[[629,1,1,29,30],[632,2,2,30,32],[633,1,1,32,33],[634,1,1,33,34],[647,1,1,34,35],[650,1,1,35,36],[654,2,2,36,38]]],[20,1,1,38,39,[[664,1,1,38,39]]],[22,2,2,39,41,[[680,1,1,39,40],[706,1,1,40,41]]],[23,1,1,41,42,[[746,1,1,41,42]]],[24,1,1,42,43,[[801,1,1,42,43]]],[30,2,2,43,45,[[888,2,2,43,45]]],[35,1,1,45,46,[[906,1,1,45,46]]]],[888,1576,2002,2085,5311,5322,5379,5520,5701,7036,7159,8408,9026,9028,9109,9116,11314,11315,12254,12262,12263,12266,12269,12270,12296,12697,12698,13312,14943,16449,16527,16537,16564,16580,16970,17071,17171,17182,17419,17691,18185,18986,20444,22521,22522,22795]]],["+",[4,4,[[4,1,1,0,1,[[169,1,1,0,1]]],[19,2,2,1,3,[[629,1,1,1,2],[634,1,1,2,3]]],[20,1,1,3,4,[[664,1,1,3,4]]]],[5379,16449,16580,17419]]],["alien",[3,3,[[4,1,1,0,1,[[166,1,1,0,1]]],[17,1,1,1,2,[[454,1,1,1,2]]],[18,1,1,2,3,[[546,1,1,2,3]]]],[5311,13312,14943]]],["aliens",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20444]]],["foreigner",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5322]]],["foreigners",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22521]]],["outlandish",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12697]]],["strange",[17,17,[[1,3,3,0,3,[[51,1,1,0,1],[67,1,1,1,2],[70,1,1,2,3]]],[10,2,2,3,5,[[301,2,2,3,5]]],[14,7,7,5,12,[[412,7,7,5,12]]],[15,1,1,12,13,[[425,1,1,12,13]]],[19,1,1,13,14,[[650,1,1,13,14]]],[22,1,1,14,15,[[706,1,1,14,15]]],[23,1,1,15,16,[[746,1,1,15,16]]],[35,1,1,16,17,[[906,1,1,16,17]]]],[1576,2002,2085,9109,9116,12254,12262,12263,12266,12269,12270,12296,12698,17071,18185,18986,22795]]],["stranger",[13,13,[[4,2,2,0,2,[[175,1,1,0,1],[181,1,1,1,2]]],[6,1,1,2,3,[[229,1,1,2,3]]],[7,1,1,3,4,[[233,1,1,3,4]]],[9,1,1,4,5,[[281,1,1,4,5]]],[10,2,2,5,7,[[298,2,2,5,7]]],[13,2,2,7,9,[[372,2,2,7,9]]],[19,3,3,9,12,[[632,2,2,9,11],[654,1,1,11,12]]],[30,1,1,12,13,[[888,1,1,12,13]]]],[5520,5701,7036,7159,8408,9026,9028,11314,11315,16527,16537,17171,22522]]],["strangers",[2,2,[[0,1,1,0,1,[[30,1,1,0,1]]],[22,1,1,1,2,[[680,1,1,1,2]]]],[888,17691]]],["woman",[3,3,[[19,3,3,0,3,[[633,1,1,0,1],[647,1,1,1,2],[654,1,1,2,3]]]],[16564,16970,17182]]]]},{"k":"H5238","v":[["+",[2,2,[[11,1,1,0,1,[[332,1,1,0,1]]],[22,1,1,1,2,[[717,1,1,1,2]]]],[10111,18414]]]]},{"k":"H5239","v":[["end",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18280]]]]},{"k":"H5240","v":[["vile",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7569]]]]},{"k":"H5241","v":[["Nemuel",[3,3,[[3,2,2,0,2,[[142,2,2,0,2]]],[12,1,1,2,3,[[341,1,1,2,3]]]],[4498,4501,10409]]]]},{"k":"H5242","v":[["Nemuelites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4501]]]]},{"k":"H5243","v":[["*",[4,4,[[17,3,3,0,3,[[449,1,1,0,1],[453,1,1,1,2],[459,1,1,2,3]]],[18,1,1,3,4,[[514,1,1,3,4]]]],[13183,13292,13460,14452]]],["down",[2,2,[[17,1,1,0,1,[[449,1,1,0,1]]],[18,1,1,1,2,[[514,1,1,1,2]]]],[13183,14452]]],["off",[2,2,[[17,2,2,0,2,[[453,1,1,0,1],[459,1,1,1,2]]]],[13292,13460]]]]},{"k":"H5244","v":[["*",[2,2,[[19,2,2,0,2,[[633,1,1,0,1],[657,1,1,1,2]]]],[16546,17276]]],["ant",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16546]]],["ants",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17276]]]]},{"k":"H5245","v":[["leopard",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21939]]]]},{"k":"H5246","v":[["*",[6,6,[[21,1,1,0,1,[[674,1,1,0,1]]],[22,1,1,1,2,[[689,1,1,1,2]]],[23,2,2,2,4,[[749,1,1,2,3],[757,1,1,3,4]]],[27,1,1,4,5,[[874,1,1,4,5]]],[34,1,1,5,6,[[903,1,1,5,6]]]],[17590,17890,19064,19289,22273,22739]]],["+",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22739]]],["leopard",[4,4,[[22,1,1,0,1,[[689,1,1,0,1]]],[23,2,2,1,3,[[749,1,1,1,2],[757,1,1,2,3]]],[27,1,1,3,4,[[874,1,1,3,4]]]],[17890,19064,19289,22273]]],["leopards",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17590]]]]},{"k":"H5247","v":[["Nimrah",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4721]]]]},{"k":"H5248","v":[["Nimrod",[4,4,[[0,2,2,0,2,[[9,2,2,0,2]]],[12,1,1,2,3,[[338,1,1,2,3]]],[32,1,1,3,4,[[897,1,1,3,4]]]],[242,243,10262,22639]]]]},{"k":"H5249","v":[["Nimrim",[2,2,[[22,1,1,0,1,[[693,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[17966,20114]]]]},{"k":"H5250","v":[["Nimshi",[5,5,[[10,1,1,0,1,[[309,1,1,0,1]]],[11,3,3,1,4,[[321,3,3,1,4]]],[13,1,1,4,5,[[388,1,1,4,5]]]],[9403,9758,9770,9776,11651]]]]},{"k":"H5251","v":[["*",[20,20,[[3,3,3,0,3,[[137,2,2,0,2],[142,1,1,2,3]]],[18,1,1,3,4,[[537,1,1,3,4]]],[22,10,10,4,14,[[683,1,1,4,5],[689,2,2,5,7],[691,1,1,7,8],[696,1,1,8,9],[708,1,1,9,10],[709,1,1,10,11],[711,1,1,11,12],[727,1,1,12,13],[740,1,1,13,14]]],[23,5,5,14,19,[[748,2,2,14,16],[794,1,1,16,17],[795,2,2,17,19]]],[25,1,1,19,20,[[828,1,1,19,20]]]],[4348,4349,4499,14811,17765,17894,17896,17908,18000,18234,18259,18302,18658,18864,19033,19048,20168,20224,20239,21128]]],["+",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18259]]],["banner",[2,2,[[18,1,1,0,1,[[537,1,1,0,1]]],[22,1,1,1,2,[[691,1,1,1,2]]]],[14811,17908]]],["ensign",[5,5,[[22,5,5,0,5,[[683,1,1,0,1],[689,2,2,1,3],[696,1,1,3,4],[708,1,1,4,5]]]],[17765,17894,17896,18000,18234]]],["pole",[2,2,[[3,2,2,0,2,[[137,2,2,0,2]]]],[4348,4349]]],["sail",[2,2,[[22,1,1,0,1,[[711,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[18302,21128]]],["sign",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4499]]],["standard",[7,7,[[22,2,2,0,2,[[727,1,1,0,1],[740,1,1,1,2]]],[23,5,5,2,7,[[748,2,2,2,4],[794,1,1,4,5],[795,2,2,5,7]]]],[18658,18864,19033,19048,20168,20224,20239]]]]},{"k":"H5252","v":[["cause",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11410]]]]},{"k":"H5253","v":[["*",[9,9,[[4,2,2,0,2,[[171,1,1,0,1],[179,1,1,1,2]]],[19,2,2,2,4,[[649,1,1,2,3],[650,1,1,3,4]]],[22,2,2,4,6,[[737,2,2,4,6]]],[27,1,1,6,7,[[866,1,1,6,7]]],[32,2,2,7,9,[[894,1,1,7,8],[898,1,1,8,9]]]],[5420,5602,17043,17054,18813,18814,22162,22601,22662]]],["Remove",[2,2,[[19,2,2,0,2,[[649,1,1,0,1],[650,1,1,1,2]]]],[17043,17054]]],["away",[2,2,[[22,2,2,0,2,[[737,2,2,0,2]]]],[18813,18814]]],["hold",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22662]]],["remove",[2,2,[[4,1,1,0,1,[[171,1,1,0,1]]],[27,1,1,1,2,[[866,1,1,1,2]]]],[5420,22162]]],["removeth",[1,1,[[4,1,1,0,1,[[179,1,1,0,1]]]],[5602]]],["take",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22601]]]]},{"k":"H5254","v":[["*",[36,34,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,5,5,1,6,[[64,1,1,1,2],[65,1,1,2,3],[66,2,2,3,5],[69,1,1,5,6]]],[3,1,1,6,7,[[130,1,1,6,7]]],[4,8,7,7,14,[[156,1,1,7,8],[158,2,1,8,9],[160,2,2,9,11],[165,1,1,11,12],[180,1,1,12,13],[185,1,1,13,14]]],[6,4,4,14,18,[[212,1,1,14,15],[213,2,2,15,17],[216,1,1,17,18]]],[8,2,1,18,19,[[252,2,1,18,19]]],[10,1,1,19,20,[[300,1,1,19,20]]],[13,2,2,20,22,[[375,1,1,20,21],[398,1,1,21,22]]],[17,1,1,22,23,[[439,1,1,22,23]]],[18,6,6,23,29,[[503,1,1,23,24],[555,3,3,24,27],[572,1,1,27,28],[583,1,1,28,29]]],[20,2,2,29,31,[[660,1,1,29,30],[665,1,1,30,31]]],[22,1,1,31,32,[[685,1,1,31,32]]],[26,2,2,32,34,[[850,2,2,32,34]]]],[548,1945,1951,1985,1990,2071,4130,5038,5102,5139,5153,5275,5667,5818,6567,6569,6572,6693,7657,9080,11365,11906,12932,14275,15131,15154,15169,15463,15665,17334,17452,17794,21749,21751]]],["+",[11,11,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,2,2,1,3,[[66,2,2,1,3]]],[4,1,1,3,4,[[158,1,1,3,4]]],[6,3,3,4,7,[[212,1,1,4,5],[213,2,2,5,7]]],[13,1,1,7,8,[[375,1,1,7,8]]],[17,1,1,8,9,[[439,1,1,8,9]]],[22,1,1,9,10,[[685,1,1,9,10]]],[26,1,1,10,11,[[850,1,1,10,11]]]],[548,1985,1990,5102,6567,6569,6572,11365,12932,17794,21749]]],["adventure",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5667]]],["assayed",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5038]]],["prove",[9,9,[[1,2,2,0,2,[[65,1,1,0,1],[69,1,1,1,2]]],[4,3,3,2,5,[[160,2,2,2,4],[185,1,1,4,5]]],[6,1,1,5,6,[[216,1,1,5,6]]],[10,1,1,6,7,[[300,1,1,6,7]]],[18,1,1,7,8,[[503,1,1,7,8]]],[20,1,1,8,9,[[660,1,1,8,9]]]],[1951,2071,5139,5153,5818,6693,9080,14275,17334]]],["proved",[5,4,[[1,1,1,0,1,[[64,1,1,0,1]]],[8,2,1,1,2,[[252,2,1,1,2]]],[20,1,1,2,3,[[665,1,1,2,3]]],[26,1,1,3,4,[[850,1,1,3,4]]]],[1945,7657,17452,21751]]],["proveth",[1,1,[[4,1,1,0,1,[[165,1,1,0,1]]]],[5275]]],["tempted",[7,7,[[3,1,1,0,1,[[130,1,1,0,1]]],[4,1,1,1,2,[[158,1,1,1,2]]],[18,5,5,2,7,[[555,3,3,2,5],[572,1,1,5,6],[583,1,1,6,7]]]],[4130,5102,15131,15154,15169,15463,15665]]],["try",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11906]]]]},{"k":"H5255","v":[["*",[4,4,[[4,1,1,0,1,[[180,1,1,0,1]]],[18,1,1,1,2,[[529,1,1,1,2]]],[19,2,2,2,4,[[629,1,1,2,3],[642,1,1,3,4]]]],[5674,14715,16455,16832]]],["destroy",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16832]]],["out",[1,1,[[18,1,1,0,1,[[529,1,1,0,1]]]],[14715]]],["plucked",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5674]]],["rooted",[1,1,[[19,1,1,0,1,[[629,1,1,0,1]]]],[16455]]]]},{"k":"H5256","v":[["down",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12162]]]]},{"k":"H5257","v":[["*",[6,6,[[4,1,1,0,1,[[184,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]],[18,1,1,2,3,[[560,1,1,2,3]]],[25,1,1,3,4,[[833,1,1,3,4]]],[26,1,1,4,5,[[860,1,1,4,5]]],[32,1,1,5,6,[[897,1,1,5,6]]]],[5796,6175,15252,21278,22044,22638]]],["dukes",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6175]]],["offerings",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5796]]],["princes",[3,3,[[18,1,1,0,1,[[560,1,1,0,1]]],[25,1,1,1,2,[[833,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[15252,21278,22044]]],["principal",[1,1,[[32,1,1,0,1,[[897,1,1,0,1]]]],[22638]]]]},{"k":"H5258","v":[["*",[25,24,[[0,1,1,0,1,[[34,1,1,0,1]]],[1,3,3,1,4,[[74,1,1,1,2],[79,1,1,2,3],[86,1,1,3,4]]],[3,1,1,4,5,[[144,1,1,4,5]]],[9,1,1,5,6,[[289,1,1,5,6]]],[11,1,1,6,7,[[328,1,1,6,7]]],[12,1,1,7,8,[[348,1,1,7,8]]],[18,2,2,8,10,[[479,1,1,8,9],[493,1,1,9,10]]],[19,1,1,10,11,[[635,1,1,10,11]]],[22,4,4,11,15,[[707,1,1,11,12],[708,1,1,12,13],[718,1,1,13,14],[722,1,1,14,15]]],[23,8,7,15,22,[[751,1,1,15,16],[763,1,1,16,17],[776,1,1,17,18],[788,5,4,18,22]]],[25,1,1,22,23,[[821,1,1,22,23]]],[27,1,1,23,24,[[870,1,1,23,24]]]],[1025,2224,2391,2620,4584,8669,9976,10691,13951,14096,16625,18203,18218,18439,18543,19137,19420,19760,20027,20028,20029,20035,20923,22212]]],["+",[3,3,[[9,1,1,0,1,[[289,1,1,0,1]]],[11,1,1,1,2,[[328,1,1,1,2]]],[12,1,1,2,3,[[348,1,1,2,3]]]],[8669,9976,10691]]],["cover",[3,3,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]]],[2224,2620,18218]]],["melteth",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18439]]],["molten",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18543]]],["offer",[2,2,[[18,1,1,0,1,[[493,1,1,0,1]]],[27,1,1,1,2,[[870,1,1,1,2]]]],[14096,22212]]],["out",[10,9,[[22,1,1,0,1,[[707,1,1,0,1]]],[23,8,7,1,8,[[751,1,1,1,2],[763,1,1,2,3],[776,1,1,3,4],[788,5,4,4,8]]],[25,1,1,8,9,[[821,1,1,8,9]]]],[18203,19137,19420,19760,20027,20028,20029,20035,20923]]],["pour",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2391]]],["poured",[2,2,[[0,1,1,0,1,[[34,1,1,0,1]]],[3,1,1,1,2,[[144,1,1,1,2]]]],[1025,4584]]],["set",[1,1,[[18,1,1,0,1,[[479,1,1,0,1]]]],[13951]]],["up",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16625]]]]},{"k":"H5259","v":[["spread",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18125]]]]},{"k":"H5260","v":[["offer",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21804]]]]},{"k":"H5261","v":[["offerings",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12190]]]]},{"k":"H5262","v":[["*",[64,62,[[0,1,1,0,1,[[34,1,1,0,1]]],[1,3,3,1,4,[[78,2,2,1,3],[79,1,1,3,4]]],[2,3,3,4,7,[[112,3,3,4,7]]],[3,34,33,7,40,[[120,1,1,7,8],[122,2,2,8,10],[131,4,4,10,14],[144,9,8,14,22],[145,18,18,22,40]]],[11,2,2,40,42,[[328,2,2,40,42]]],[12,1,1,42,43,[[366,1,1,42,43]]],[13,1,1,43,44,[[395,1,1,43,44]]],[18,1,1,44,45,[[493,1,1,44,45]]],[22,3,3,45,48,[[719,1,1,45,46],[726,1,1,46,47],[735,1,1,47,48]]],[23,10,9,48,57,[[751,1,1,48,49],[754,1,1,49,50],[763,1,1,50,51],[776,1,1,51,52],[788,5,4,52,56],[795,1,1,56,57]]],[25,2,2,57,59,[[821,1,1,57,58],[846,1,1,58,59]]],[28,3,3,59,62,[[876,2,2,59,61],[877,1,1,61,62]]]],[1025,2376,2377,2391,3415,3420,3439,3750,3838,3840,4158,4160,4163,4177,4584,4585,4586,4587,4591,4592,4601,4608,4614,4619,4624,4626,4627,4629,4630,4632,4633,4635,4636,4638,4639,4641,4642,4645,4646,4647,9976,9978,11185,11826,14096,18480,18619,18771,19137,19215,19420,19760,20027,20028,20029,20035,20229,20923,21647,22300,22304,22325]]],["cover",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3750]]],["image",[3,3,[[22,1,1,0,1,[[726,1,1,0,1]]],[23,2,2,1,3,[[754,1,1,1,2],[795,1,1,2,3]]]],[18619,19215,20229]]],["images",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18480]]],["offering",[29,28,[[0,1,1,0,1,[[34,1,1,0,1]]],[1,3,3,1,4,[[78,2,2,1,3],[79,1,1,3,4]]],[2,1,1,4,5,[[112,1,1,4,5]]],[3,19,18,5,23,[[122,1,1,5,6],[131,4,4,6,10],[144,7,6,10,16],[145,7,7,16,23]]],[11,1,1,23,24,[[328,1,1,23,24]]],[22,1,1,24,25,[[735,1,1,24,25]]],[28,3,3,25,28,[[876,2,2,25,27],[877,1,1,27,28]]]],[1025,2376,2377,2391,3415,3840,4158,4160,4163,4177,4584,4585,4586,4587,4592,4601,4624,4630,4633,4636,4639,4642,4646,9976,18771,22300,22304,22325]]],["offerings",[30,29,[[2,2,2,0,2,[[112,2,2,0,2]]],[3,14,14,2,16,[[122,1,1,2,3],[144,2,2,3,5],[145,11,11,5,16]]],[11,1,1,16,17,[[328,1,1,16,17]]],[12,1,1,17,18,[[366,1,1,17,18]]],[13,1,1,18,19,[[395,1,1,18,19]]],[18,1,1,19,20,[[493,1,1,19,20]]],[23,8,7,20,27,[[751,1,1,20,21],[763,1,1,21,22],[776,1,1,22,23],[788,5,4,23,27]]],[25,2,2,27,29,[[821,1,1,27,28],[846,1,1,28,29]]]],[3420,3439,3838,4591,4608,4614,4619,4626,4627,4629,4632,4635,4638,4641,4645,4647,9978,11185,11826,14096,19137,19420,19760,20027,20028,20029,20035,20923,21647]]]]},{"k":"H5263","v":[["standardbearer",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17868]]]]},{"k":"H5264","v":[["ensign",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23015]]]]},{"k":"H5265","v":[["*",[146,140,[[0,12,11,0,11,[[10,1,1,0,1],[11,2,1,1,2],[12,1,1,2,3],[19,1,1,3,4],[32,2,2,4,6],[34,3,3,6,9],[36,1,1,9,10],[45,1,1,10,11]]],[1,12,11,11,22,[[61,1,1,11,12],[62,1,1,12,13],[63,4,3,13,16],[64,1,1,16,17],[65,1,1,17,18],[66,1,1,18,19],[68,1,1,19,20],[89,2,2,20,22]]],[3,89,85,22,107,[[117,1,1,22,23],[118,7,6,23,29],[120,2,2,29,31],[125,9,7,31,38],[126,16,15,38,53],[127,2,2,53,55],[128,2,2,55,57],[130,1,1,57,58],[136,1,1,58,59],[137,5,5,59,64],[138,1,1,64,65],[149,42,42,65,107]]],[4,7,7,107,114,[[153,3,3,107,110],[154,2,2,110,112],[162,2,2,112,114]]],[5,4,4,114,118,[[189,3,3,114,117],[195,1,1,117,118]]],[6,3,3,118,121,[[226,2,2,118,120],[228,1,1,120,121]]],[10,1,1,121,122,[[295,1,1,121,122]]],[11,4,4,122,126,[[315,1,1,122,123],[316,1,1,123,124],[331,2,2,124,126]]],[14,1,1,126,127,[[410,1,1,126,127]]],[17,2,2,127,129,[[439,1,1,127,128],[454,1,1,128,129]]],[18,3,3,129,132,[[555,2,2,129,131],[557,1,1,131,132]]],[20,1,1,132,133,[[668,1,1,132,133]]],[22,4,4,133,137,[[711,1,1,133,134],[715,2,2,134,136],[716,1,1,136,137]]],[23,2,2,137,139,[[748,1,1,137,138],[775,1,1,138,139]]],[37,1,1,139,140,[[920,1,1,139,140]]]],[268,307,329,496,972,977,1016,1027,1032,1100,1387,1853,1887,1899,1904,1908,1942,1948,1984,2028,2743,2744,3655,3667,3674,3675,3682,3689,3692,3748,3758,3982,3983,3984,3985,3986,3987,3988,3993,3994,4000,4001,4002,4005,4006,4009,4010,4013,4016,4017,4021,4022,4023,4055,4059,4074,4075,4133,4333,4344,4350,4351,4352,4353,4376,4763,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4801,4802,4803,4804,4805,4806,4807,4808,4899,4911,4932,4939,4962,5192,5193,5894,5896,5907,6054,6952,6963,7004,8895,9603,9607,10069,10097,12232,12951,13307,15139,15165,15206,17502,18299,18360,18389,18402,19034,19715,23018]]],["+",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]]],[1942,6963]]],["aside",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9607]]],["away",[2,2,[[6,1,1,0,1,[[226,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]]],[6952,12951]]],["blow",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15139]]],["brought",[2,2,[[10,1,1,0,1,[[295,1,1,0,1]]],[18,1,1,1,2,[[557,1,1,1,2]]]],[8895,15206]]],["departed",[30,30,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,1,1,1,2,[[68,1,1,1,2]]],[3,20,20,2,22,[[126,1,1,2,3],[149,19,19,3,22]]],[4,1,1,22,23,[[153,1,1,22,23]]],[11,3,3,23,26,[[315,1,1,23,24],[331,2,2,24,26]]],[14,1,1,26,27,[[410,1,1,26,27]]],[22,3,3,27,30,[[715,2,2,27,29],[716,1,1,29,30]]]],[1100,2028,4021,4763,4766,4768,4773,4775,4777,4778,4779,4780,4787,4790,4791,4795,4801,4802,4803,4804,4805,4808,4911,9603,10069,10097,12232,18360,18389,18402]]],["forth",[5,5,[[3,3,3,0,3,[[118,2,2,0,2],[127,1,1,2,3]]],[18,1,1,3,4,[[555,1,1,3,4]]],[23,1,1,4,5,[[775,1,1,4,5]]]],[3667,3674,4055,15165,19715]]],["forward",[18,17,[[1,1,1,0,1,[[63,1,1,0,1]]],[3,17,16,1,17,[[117,1,1,1,2],[118,4,3,2,5],[120,2,2,5,7],[126,8,8,7,15],[137,1,1,15,16],[138,1,1,16,17]]]],[1904,3655,3675,3682,3692,3748,3758,3993,4005,4006,4009,4010,4013,4016,4023,4350,4376]]],["get",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4133]]],["go",[1,1,[[3,1,1,0,1,[[118,1,1,0,1]]]],[3689]]],["journey",[12,12,[[0,2,2,0,2,[[32,1,1,0,1],[45,1,1,1,2]]],[1,2,2,2,4,[[62,1,1,2,3],[65,1,1,3,4]]],[3,3,3,4,7,[[126,2,2,4,6],[149,1,1,6,7]]],[4,5,5,7,12,[[153,2,2,7,9],[154,2,2,9,11],[162,1,1,11,12]]]],[972,1387,1887,1948,3994,4001,4772,4899,4932,4939,4962,5192]]],["journeyed",[28,26,[[0,8,8,0,8,[[10,1,1,0,1],[11,1,1,1,2],[12,1,1,2,3],[19,1,1,3,4],[32,1,1,4,5],[34,3,3,5,8]]],[1,3,3,8,11,[[61,1,1,8,9],[66,1,1,9,10],[89,1,1,10,11]]],[3,15,13,11,24,[[125,9,7,11,18],[127,1,1,18,19],[128,1,1,19,20],[136,1,1,20,21],[137,2,2,21,23],[149,1,1,23,24]]],[4,1,1,24,25,[[162,1,1,24,25]]],[5,1,1,25,26,[[195,1,1,25,26]]]],[268,307,329,496,977,1016,1027,1032,1853,1984,2744,3982,3983,3984,3985,3986,3987,3988,4059,4074,4333,4344,4351,4782,5193,6054]]],["journeying",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[4017]]],["marched",[1,1,[[1,1,1,0,1,[[63,1,1,0,1]]]],[1899]]],["onward",[1,1,[[1,1,1,0,1,[[89,1,1,0,1]]]],[2743]]],["remove",[1,1,[[5,1,1,0,1,[[189,1,1,0,1]]]],[5896]]],["removed",[26,26,[[1,1,1,0,1,[[63,1,1,0,1]]],[3,21,21,1,22,[[128,1,1,1,2],[137,2,2,2,4],[149,18,18,4,22]]],[5,2,2,22,24,[[189,2,2,22,24]]],[17,1,1,24,25,[[454,1,1,24,25]]],[22,1,1,25,26,[[711,1,1,25,26]]]],[1908,4075,4352,4353,4765,4767,4769,4770,4771,4774,4776,4781,4784,4785,4786,4788,4792,4794,4796,4797,4806,4807,5894,5907,13307,18299]]],["removeth",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17502]]],["still",[1,1,[[0,1,1,0,1,[[11,1,1,0,1]]]],[307]]],["took",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[4000]]],["way",[2,2,[[23,1,1,0,1,[[748,1,1,0,1]]],[37,1,1,1,2,[[920,1,1,1,2]]]],[19034,23018]]],["went",[8,8,[[1,1,1,0,1,[[63,1,1,0,1]]],[3,6,6,1,7,[[126,3,3,1,4],[149,3,3,4,7]]],[6,1,1,7,8,[[228,1,1,7,8]]]],[1908,4002,4021,4022,4783,4789,4793,7004]]]]},{"k":"H5266","v":[["up",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16247]]]]},{"k":"H5267","v":[["*",[3,2,[[26,3,2,0,2,[[852,1,1,0,1],[855,2,1,1,2]]]],[21829,21928]]],["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21928]]],["up",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[855,1,1,1,2]]]],[21829,21928]]]]},{"k":"H5268","v":[["Nisroch",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10098,18390]]]]},{"k":"H5269","v":[["Neah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6334]]]]},{"k":"H5270","v":[["Noah",[4,4,[[3,3,3,0,3,[[142,1,1,0,1],[143,1,1,1,2],[152,1,1,2,3]]],[5,1,1,3,4,[[203,1,1,3,4]]]],[4522,4555,4890,6278]]]]},{"k":"H5271","v":[["*",[47,46,[[0,2,2,0,2,[[7,1,1,0,1],[45,1,1,1,2]]],[2,1,1,2,3,[[111,1,1,2,3]]],[3,2,2,3,5,[[146,2,2,3,5]]],[8,2,2,5,7,[[247,1,1,5,6],[252,1,1,6,7]]],[9,1,1,7,8,[[285,1,1,7,8]]],[10,1,1,8,9,[[308,1,1,8,9]]],[17,2,2,9,11,[[448,1,1,9,10],[466,1,1,10,11]]],[18,8,8,11,19,[[502,1,1,11,12],[548,2,2,12,14],[580,1,1,14,15],[604,1,1,15,16],[606,2,2,16,18],[621,1,1,18,19]]],[19,2,2,19,21,[[629,1,1,19,20],[632,1,1,20,21]]],[22,3,3,21,24,[[725,2,2,21,23],[732,1,1,23,24]]],[23,8,8,24,32,[[746,1,1,24,25],[747,3,3,25,28],[766,1,1,28,29],[775,1,1,29,30],[776,1,1,30,31],[792,1,1,31,32]]],[24,1,1,32,33,[[799,1,1,32,33]]],[25,9,8,33,41,[[805,1,1,33,34],[817,3,3,34,37],[824,5,4,37,41]]],[27,1,1,41,42,[[863,1,1,41,42]]],[28,1,1,42,43,[[876,1,1,42,43]]],[37,1,1,43,44,[[923,1,1,43,44]]],[38,2,2,44,46,[[926,2,2,44,46]]]],[204,1420,3382,4651,4664,7462,7651,8518,9353,13179,13606,14258,14981,14993,15554,16125,16133,16134,16317,16450,16535,18611,18614,18729,18967,19006,19026,19027,19475,19710,19761,20091,20381,20543,20784,20805,20822,21010,21015,21026,21028,22120,22299,23064,23117,23118]]],["+",[20,20,[[0,2,2,0,2,[[7,1,1,0,1],[45,1,1,1,2]]],[8,2,2,2,4,[[247,1,1,2,3],[252,1,1,3,4]]],[9,1,1,4,5,[[285,1,1,4,5]]],[10,1,1,5,6,[[308,1,1,5,6]]],[17,1,1,6,7,[[466,1,1,6,7]]],[18,4,4,7,11,[[548,2,2,7,9],[606,2,2,9,11]]],[22,2,2,11,13,[[725,2,2,11,13]]],[23,5,5,13,18,[[747,2,2,13,15],[766,1,1,15,16],[776,1,1,16,17],[792,1,1,17,18]]],[25,1,1,18,19,[[805,1,1,18,19]]],[37,1,1,19,20,[[923,1,1,19,20]]]],[204,1420,7462,7651,8518,9353,13606,14981,14993,16133,16134,18611,18614,19026,19027,19475,19761,20091,20543,23064]]],["youth",[27,26,[[2,1,1,0,1,[[111,1,1,0,1]]],[3,2,2,1,3,[[146,2,2,1,3]]],[17,1,1,3,4,[[448,1,1,3,4]]],[18,4,4,4,8,[[502,1,1,4,5],[580,1,1,5,6],[604,1,1,6,7],[621,1,1,7,8]]],[19,2,2,8,10,[[629,1,1,8,9],[632,1,1,9,10]]],[22,1,1,10,11,[[732,1,1,10,11]]],[23,3,3,11,14,[[746,1,1,11,12],[747,1,1,12,13],[775,1,1,13,14]]],[24,1,1,14,15,[[799,1,1,14,15]]],[25,8,7,15,22,[[817,3,3,15,18],[824,5,4,18,22]]],[27,1,1,22,23,[[863,1,1,22,23]]],[28,1,1,23,24,[[876,1,1,23,24]]],[38,2,2,24,26,[[926,2,2,24,26]]]],[3382,4651,4664,13179,14258,15554,16125,16317,16450,16535,18729,18967,19006,19710,20381,20784,20805,20822,21010,21015,21026,21028,22120,22299,23117,23118]]]]},{"k":"H5272","v":[["Neiel",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6348]]]]},{"k":"H5273","v":[["*",[13,13,[[9,2,2,0,2,[[267,1,1,0,1],[289,1,1,1,2]]],[17,1,1,2,3,[[471,1,1,2,3]]],[18,6,6,3,9,[[493,2,2,3,5],[558,1,1,5,6],[610,1,1,6,7],[612,1,1,7,8],[624,1,1,8,9]]],[19,3,3,9,12,[[649,1,1,9,10],[650,1,1,10,11],[651,1,1,11,12]]],[21,1,1,12,13,[[671,1,1,12,13]]]],[8045,8654,13747,14098,14103,15219,16170,16178,16352,17033,17052,17083,17553]]],["pleasant",[9,9,[[9,1,1,0,1,[[267,1,1,0,1]]],[18,5,5,1,6,[[493,1,1,1,2],[558,1,1,2,3],[610,1,1,3,4],[612,1,1,4,5],[624,1,1,5,6]]],[19,2,2,6,8,[[649,1,1,6,7],[651,1,1,7,8]]],[21,1,1,8,9,[[671,1,1,8,9]]]],[8045,14098,15219,16170,16178,16352,17033,17083,17553]]],["pleasures",[2,2,[[17,1,1,0,1,[[471,1,1,0,1]]],[18,1,1,1,2,[[493,1,1,1,2]]]],[13747,14103]]],["sweet",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[19,1,1,1,2,[[650,1,1,1,2]]]],[8654,17052]]]]},{"k":"H5274","v":[["*",[8,7,[[6,2,2,0,2,[[213,2,2,0,2]]],[9,2,2,2,4,[[279,2,2,2,4]]],[13,1,1,4,5,[[394,1,1,4,5]]],[21,2,1,5,6,[[674,2,1,5,6]]],[25,1,1,6,7,[[817,1,1,6,7]]]],[6591,6592,8334,8335,11779,17594,20772]]],["bolt",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8334]]],["bolted",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8335]]],["inclosed",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17594]]],["locked",[2,2,[[6,2,2,0,2,[[213,2,2,0,2]]]],[6591,6592]]],["shod",[2,2,[[13,1,1,0,1,[[394,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[11779,20772]]],["up",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17594]]]]},{"k":"H5275","v":[["*",[22,22,[[0,1,1,0,1,[[13,1,1,0,1]]],[1,2,2,1,3,[[52,1,1,1,2],[61,1,1,2,3]]],[4,3,3,3,6,[[177,2,2,3,5],[181,1,1,5,6]]],[5,3,3,6,9,[[191,1,1,6,7],[195,2,2,7,9]]],[7,2,2,9,11,[[235,2,2,9,11]]],[10,1,1,11,12,[[292,1,1,11,12]]],[18,2,2,12,14,[[537,1,1,12,13],[585,1,1,13,14]]],[21,1,1,14,15,[[677,1,1,14,15]]],[22,3,3,15,18,[[683,1,1,15,16],[689,1,1,16,17],[698,1,1,17,18]]],[25,2,2,18,20,[[825,2,2,18,20]]],[29,2,2,20,22,[[880,1,1,20,21],[886,1,1,21,22]]]],[359,1584,1827,5556,5557,5684,5949,6042,6050,7197,7198,8775,14815,15751,17628,17766,17899,18031,21073,21079,22385,22487]]],["+",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[359]]],["dryshod",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17899]]],["shoe",[9,9,[[4,3,3,0,3,[[177,2,2,0,2],[181,1,1,2,3]]],[5,1,1,3,4,[[191,1,1,3,4]]],[7,2,2,4,6,[[235,2,2,4,6]]],[18,2,2,6,8,[[537,1,1,6,7],[585,1,1,7,8]]],[22,1,1,8,9,[[698,1,1,8,9]]]],[5556,5557,5684,5949,7197,7198,14815,15751,18031]]],["shoes",[11,11,[[1,2,2,0,2,[[52,1,1,0,1],[61,1,1,1,2]]],[5,2,2,2,4,[[195,2,2,2,4]]],[10,1,1,4,5,[[292,1,1,4,5]]],[21,1,1,5,6,[[677,1,1,5,6]]],[22,1,1,6,7,[[683,1,1,6,7]]],[25,2,2,7,9,[[825,2,2,7,9]]],[29,2,2,9,11,[[880,1,1,9,10],[886,1,1,10,11]]]],[1584,1827,6042,6050,8775,17628,17766,21073,21079,22385,22487]]]]},{"k":"H5276","v":[["*",[8,8,[[0,1,1,0,1,[[48,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]],[18,1,1,2,3,[[618,1,1,2,3]]],[19,3,3,3,6,[[629,1,1,3,4],[636,1,1,4,5],[651,1,1,5,6]]],[21,1,1,6,7,[[677,1,1,6,7]]],[25,1,1,7,8,[[833,1,1,7,8]]]],[1488,8048,16282,16443,16655,17104,17633,21267]]],["beauty",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21267]]],["delight",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17104]]],["pleasant",[5,5,[[0,1,1,0,1,[[48,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]],[19,2,2,2,4,[[629,1,1,2,3],[636,1,1,3,4]]],[21,1,1,4,5,[[677,1,1,4,5]]]],[1488,8048,16443,16655,17633]]],["sweet",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16282]]]]},{"k":"H5277","v":[["Naam",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10400]]]]},{"k":"H5278","v":[["*",[7,7,[[18,2,2,0,2,[[504,1,1,0,1],[567,1,1,1,2]]],[19,3,3,2,5,[[630,1,1,2,3],[642,1,1,3,4],[643,1,1,4,5]]],[37,2,2,5,7,[[921,2,2,5,7]]]],[14289,15395,16472,16833,16864,23035,23038]]],["Beauty",[2,2,[[37,2,2,0,2,[[921,2,2,0,2]]]],[23035,23038]]],["Pleasant",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16864]]],["beauty",[2,2,[[18,2,2,0,2,[[504,1,1,0,1],[567,1,1,1,2]]]],[14289,15395]]],["pleasant",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16833]]],["pleasantness",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16472]]]]},{"k":"H5279","v":[["Naamah",[5,5,[[0,1,1,0,1,[[3,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]],[10,2,2,2,4,[[304,2,2,2,4]]],[13,1,1,4,5,[[378,1,1,4,5]]]],[101,6243,9239,9249,11450]]]]},{"k":"H5280","v":[["Naamites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4529]]]]},{"k":"H5281","v":[["*",[21,20,[[7,21,20,0,20,[[232,8,8,0,8],[233,6,5,8,13],[234,1,1,13,14],[235,6,6,14,20]]]],[7129,7130,7135,7138,7146,7147,7148,7149,7150,7151,7155,7169,7171,7173,7193,7195,7199,7204,7206,7207]]],["Naomi",[20,19,[[7,20,19,0,19,[[232,7,7,0,7],[233,6,5,7,12],[234,1,1,12,13],[235,6,6,13,19]]]],[7129,7135,7138,7146,7147,7148,7149,7150,7151,7155,7169,7171,7173,7193,7195,7199,7204,7206,7207]]],["Naomi's",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7130]]]]},{"k":"H5282","v":[["pleasant",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17993]]]]},{"k":"H5283","v":[["*",[16,14,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,2,1,1,2,[[142,2,1,1,2]]],[11,11,10,2,12,[[317,11,10,2,12]]],[12,2,2,12,14,[[345,2,2,12,14]]]],[1407,4529,9648,9649,9653,9656,9658,9664,9667,9668,9670,9674,10579,10582]]],["Naaman",[15,13,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,2,1,1,2,[[142,2,1,1,2]]],[11,10,9,2,11,[[317,10,9,2,11]]],[12,2,2,11,13,[[345,2,2,11,13]]]],[1407,4529,9648,9653,9656,9658,9664,9667,9668,9670,9674,10579,10582]]],["Naaman's",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9649]]]]},{"k":"H5284","v":[["Naamathite",[4,4,[[17,4,4,0,4,[[437,1,1,0,1],[446,1,1,1,2],[455,1,1,2,3],[477,1,1,3,4]]]],[12902,13109,13327,13931]]]]},{"k":"H5285","v":[["*",[2,2,[[22,2,2,0,2,[[685,1,1,0,1],[733,1,1,1,2]]]],[17801,18753]]],["thorn",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18753]]],["thorns",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17801]]]]},{"k":"H5286","v":[["yell",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20250]]]]},{"k":"H5287","v":[["*",[11,9,[[1,1,1,0,1,[[63,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[15,3,1,2,3,[[417,3,1,2,3]]],[17,1,1,3,4,[[473,1,1,3,4]]],[18,2,2,4,6,[[586,1,1,4,5],[613,1,1,5,6]]],[22,3,3,6,9,[[711,2,2,6,8],[730,1,1,8,9]]]],[1916,6969,12395,13806,15778,16211,18288,18294,18698]]],["+",[2,2,[[1,1,1,0,1,[[63,1,1,0,1]]],[15,1,1,1,2,[[417,1,1,1,2]]]],[1916,12395]]],["down",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15778]]],["myself",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6969]]],["off",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18288]]],["out",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12395]]],["overthrew",[1,1,[[18,1,1,0,1,[[613,1,1,0,1]]]],[16211]]],["shaken",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13806]]],["shaketh",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18294]]],["shook",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12395]]],["thyself",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18698]]]]},{"k":"H5288","v":[["*",[239,221,[[0,27,24,0,24,[[13,1,1,0,1],[17,1,1,1,2],[18,1,1,2,3],[20,6,5,3,8],[21,5,4,8,12],[24,1,1,12,13],[33,1,1,13,14],[36,1,1,14,15],[40,1,1,15,16],[42,1,1,16,17],[43,7,6,17,23],[47,1,1,23,24]]],[1,4,4,24,28,[[51,1,1,24,25],[59,1,1,25,26],[73,1,1,26,27],[82,1,1,27,28]]],[3,2,2,28,30,[[127,1,1,28,29],[138,1,1,29,30]]],[4,1,1,30,31,[[180,1,1,30,31]]],[5,2,2,31,33,[[192,2,2,31,33]]],[6,23,21,33,54,[[217,2,2,33,35],[218,3,2,35,37],[219,2,1,37,38],[223,5,5,38,43],[226,1,1,43,44],[227,3,3,44,47],[228,2,2,47,49],[229,5,5,49,54]]],[7,6,5,54,59,[[233,6,5,54,59]]],[8,60,52,59,111,[[236,5,4,59,63],[237,7,7,63,70],[238,2,2,70,72],[239,1,1,72,73],[244,7,7,73,80],[245,1,1,80,81],[249,2,2,81,83],[251,2,2,83,85],[252,4,4,85,89],[255,12,8,89,97],[256,3,3,97,100],[260,11,8,100,108],[261,1,1,108,109],[265,2,2,109,111]]],[9,26,25,111,136,[[267,4,4,111,115],[268,2,2,115,117],[270,1,1,117,118],[275,1,1,118,119],[278,1,1,119,120],[279,5,5,120,125],[280,1,1,125,126],[282,2,2,126,128],[283,1,1,128,129],[284,6,5,129,134],[285,1,1,134,135],[286,1,1,135,136]]],[10,11,11,136,147,[[293,1,1,136,137],[301,2,2,137,139],[304,2,2,139,141],[308,1,1,141,142],[309,1,1,142,143],[310,4,4,143,147]]],[11,24,21,147,168,[[314,1,1,147,148],[316,13,11,148,159],[317,4,4,159,163],[318,2,2,163,165],[320,1,1,165,166],[321,2,1,166,167],[331,1,1,167,168]]],[12,3,3,168,171,[[349,1,1,168,169],[359,1,1,169,170],[366,1,1,170,171]]],[13,2,2,171,173,[[379,1,1,171,172],[400,1,1,172,173]]],[15,8,8,173,181,[[416,3,3,173,176],[417,3,3,176,179],[418,1,1,179,180],[425,1,1,180,181]]],[16,4,4,181,185,[[427,1,1,181,182],[428,1,1,182,183],[431,2,2,183,185]]],[17,7,7,185,192,[[436,4,4,185,189],[459,1,1,189,190],[464,2,2,190,192]]],[18,3,3,192,195,[[514,1,1,192,193],[596,1,1,193,194],[625,1,1,194,195]]],[19,7,7,195,202,[[628,1,1,195,196],[634,1,1,196,197],[647,1,1,197,198],[649,2,2,198,200],[650,1,1,200,201],[656,1,1,201,202]]],[20,1,1,202,203,[[668,1,1,202,203]]],[22,11,11,203,214,[[681,2,2,203,205],[685,1,1,205,206],[686,1,1,206,207],[688,1,1,207,208],[689,1,1,208,209],[691,1,1,209,210],[698,1,1,210,211],[715,1,1,211,212],[718,1,1,212,213],[743,1,1,213,214]]],[23,3,3,214,217,[[745,2,2,214,216],[795,1,1,216,217]]],[24,2,2,217,219,[[798,1,1,217,218],[801,1,1,218,219]]],[27,1,1,219,220,[[872,1,1,219,220]]],[37,1,1,220,221,[[912,1,1,220,221]]]],[360,431,461,525,530,531,532,533,550,552,559,566,685,999,1085,1207,1298,1346,1354,1355,1356,1357,1358,1467,1560,1786,2182,2484,4051,4397,5661,5970,5972,6704,6705,6733,6739,6808,6889,6891,6892,6896,6908,6975,6987,6991,6992,6996,7008,7027,7033,7035,7037,7043,7154,7155,7158,7164,7170,7234,7236,7237,7239,7251,7253,7255,7257,7258,7261,7266,7277,7284,7318,7394,7396,7398,7399,7401,7413,7418,7432,7509,7514,7606,7613,7651,7660,7673,7676,7751,7765,7766,7767,7768,7769,7770,7771,7774,7776,7777,7866,7869,7870,7873,7875,7880,7886,7888,7927,7991,7995,8027,8028,8035,8037,8063,8070,8132,8236,8302,8334,8345,8346,8349,8351,8377,8427,8428,8467,8483,8490,8493,8507,8510,8528,8565,8823,9125,9136,9221,9235,9384,9390,9422,9423,9425,9427,9574,9615,9622,9625,9627,9628,9632,9633,9634,9635,9638,9641,9661,9667,9669,9670,9689,9691,9731,9760,10067,10748,10969,11165,11460,11936,12375,12381,12382,12392,12397,12398,12406,12690,12726,12760,12796,12798,12884,12885,12886,12888,13441,13537,13540,14475,15907,16383,16404,16582,16965,17021,17030,17057,17239,17509,17711,17712,17798,17811,17869,17890,17924,18033,18358,18450,18917,18952,18953,20234,20353,20455,22241,22903]]],["+",[12,11,[[0,1,1,0,1,[[18,1,1,0,1]]],[5,1,1,1,2,[[192,1,1,1,2]]],[8,4,3,2,5,[[244,1,1,2,3],[260,2,1,3,4],[261,1,1,4,5]]],[9,3,3,5,8,[[267,1,1,5,6],[268,1,1,6,7],[286,1,1,7,8]]],[15,1,1,8,9,[[425,1,1,8,9]]],[16,1,1,9,10,[[428,1,1,9,10]]],[19,1,1,10,11,[[650,1,1,10,11]]]],[461,5970,7394,7875,7927,8037,8070,8565,12690,12760,17057]]],["babe",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1560]]],["boys",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[685]]],["child",[43,41,[[6,5,5,0,5,[[223,5,5,0,5]]],[8,11,11,5,16,[[236,4,4,5,9],[237,4,4,9,13],[238,2,2,13,15],[239,1,1,15,16]]],[9,1,1,16,17,[[278,1,1,16,17]]],[10,4,4,17,21,[[293,1,1,17,18],[301,1,1,18,19],[304,2,2,19,21]]],[11,8,6,21,27,[[316,7,5,21,26],[317,1,1,26,27]]],[19,4,4,27,31,[[647,1,1,27,28],[649,2,2,28,30],[656,1,1,30,31]]],[20,1,1,31,32,[[668,1,1,31,32]]],[22,6,6,32,38,[[681,1,1,32,33],[685,1,1,33,34],[686,1,1,34,35],[688,1,1,35,36],[689,1,1,36,37],[743,1,1,37,38]]],[23,2,2,38,40,[[745,2,2,38,40]]],[27,1,1,40,41,[[872,1,1,40,41]]]],[6889,6891,6892,6896,6908,7234,7236,7237,7239,7251,7258,7261,7266,7277,7284,7318,8302,8823,9125,9221,9235,9632,9633,9634,9635,9638,9661,16965,17021,17030,17239,17509,17712,17798,17811,17869,17890,18917,18952,18953,22241]]],["children",[7,7,[[8,1,1,0,1,[[251,1,1,0,1]]],[11,1,1,1,2,[[314,1,1,1,2]]],[17,2,2,2,4,[[459,1,1,2,3],[464,1,1,3,4]]],[18,1,1,4,5,[[625,1,1,4,5]]],[22,1,1,5,6,[[681,1,1,5,6]]],[24,1,1,6,7,[[801,1,1,6,7]]]],[7606,9574,13441,13537,16383,17711,20455]]],["lad",[32,26,[[0,17,15,0,15,[[20,6,5,0,5],[21,2,2,5,7],[36,1,1,7,8],[42,1,1,8,9],[43,7,6,9,15]]],[6,1,1,15,16,[[226,1,1,15,16]]],[8,12,8,16,24,[[255,12,8,16,24]]],[9,1,1,24,25,[[283,1,1,24,25]]],[11,1,1,25,26,[[316,1,1,25,26]]]],[525,530,531,532,533,552,559,1085,1298,1346,1354,1355,1356,1357,1358,6975,7751,7765,7766,7767,7768,7769,7770,7771,8467,9622]]],["lads",[1,1,[[0,1,1,0,1,[[47,1,1,0,1]]]],[1467]]],["man",[37,34,[[0,3,3,0,3,[[17,1,1,0,1],[33,1,1,1,2],[40,1,1,2,3]]],[1,1,1,3,4,[[82,1,1,3,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[6,9,8,5,13,[[218,1,1,5,6],[219,2,1,6,7],[227,3,3,7,10],[228,2,2,10,12],[229,1,1,12,13]]],[8,4,4,13,17,[[249,2,2,13,15],[252,1,1,15,16],[265,1,1,16,17]]],[9,10,9,17,26,[[267,3,3,17,20],[279,1,1,20,21],[280,1,1,21,22],[284,5,4,22,26]]],[10,1,1,26,27,[[301,1,1,26,27]]],[11,3,2,27,29,[[318,1,1,27,28],[321,2,1,28,29]]],[12,1,1,29,30,[[349,1,1,29,30]]],[18,1,1,30,31,[[596,1,1,30,31]]],[19,2,2,31,33,[[628,1,1,31,32],[634,1,1,32,33]]],[37,1,1,33,34,[[912,1,1,33,34]]]],[431,999,1207,2484,4051,6733,6808,6987,6991,6992,6996,7008,7043,7509,7514,7676,7991,8027,8028,8035,8351,8377,8483,8490,8507,8510,9136,9691,9760,10748,15907,16404,16582,22903]]],["men",[35,32,[[0,4,4,0,4,[[13,1,1,0,1],[21,3,3,1,4]]],[1,1,1,4,5,[[73,1,1,4,5]]],[5,1,1,5,6,[[192,1,1,5,6]]],[7,4,3,6,9,[[233,4,3,6,9]]],[8,11,9,9,18,[[237,1,1,9,10],[256,2,2,10,12],[260,8,6,12,18]]],[9,5,5,18,23,[[268,1,1,18,19],[270,1,1,19,20],[279,1,1,20,21],[282,1,1,21,22],[284,1,1,22,23]]],[10,4,4,23,27,[[310,4,4,23,27]]],[11,2,2,27,29,[[316,1,1,27,28],[317,1,1,28,29]]],[17,2,2,29,31,[[436,1,1,29,30],[464,1,1,30,31]]],[22,1,1,31,32,[[691,1,1,31,32]]]],[360,550,552,566,2182,5972,7158,7164,7170,7257,7776,7777,7866,7869,7870,7873,7886,7888,8063,8132,8349,8428,8493,9422,9423,9425,9427,9625,9669,12888,13540,17924]]],["servant",[32,32,[[6,6,6,0,6,[[217,2,2,0,2],[229,4,4,2,6]]],[7,2,2,6,8,[[233,2,2,6,8]]],[8,9,9,8,17,[[237,2,2,8,10],[244,6,6,10,16],[245,1,1,16,17]]],[9,4,4,17,21,[[275,1,1,17,18],[279,1,1,18,19],[282,1,1,19,20],[285,1,1,20,21]]],[10,2,2,21,23,[[308,1,1,21,22],[309,1,1,22,23]]],[11,7,7,23,30,[[316,4,4,23,27],[317,1,1,27,28],[318,1,1,28,29],[320,1,1,29,30]]],[15,2,2,30,32,[[416,1,1,30,31],[418,1,1,31,32]]]],[6704,6705,7027,7033,7035,7037,7154,7155,7253,7255,7396,7398,7399,7401,7413,7418,7432,8236,8334,8427,8528,9384,9390,9615,9627,9628,9641,9667,9689,9731,12381,12406]]],["servants",[20,20,[[3,1,1,0,1,[[138,1,1,0,1]]],[8,3,3,1,4,[[251,1,1,1,2],[256,1,1,2,3],[260,1,1,3,4]]],[9,2,2,4,6,[[279,2,2,4,6]]],[11,2,2,6,8,[[317,1,1,6,7],[331,1,1,7,8]]],[15,5,5,8,13,[[416,2,2,8,10],[417,3,3,10,13]]],[16,3,3,13,16,[[427,1,1,13,14],[431,2,2,14,16]]],[17,3,3,16,19,[[436,3,3,16,19]]],[22,1,1,19,20,[[715,1,1,19,20]]]],[4397,7613,7774,7880,8345,8346,9670,10067,12375,12382,12392,12397,12398,12726,12796,12798,12884,12885,12886,18358]]],["young",[12,12,[[1,1,1,0,1,[[59,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[8,2,2,2,4,[[236,1,1,2,3],[265,1,1,3,4]]],[12,2,2,4,6,[[359,1,1,4,5],[366,1,1,5,6]]],[13,2,2,6,8,[[379,1,1,6,7],[400,1,1,7,8]]],[18,1,1,8,9,[[514,1,1,8,9]]],[22,1,1,9,10,[[698,1,1,9,10]]],[23,1,1,10,11,[[795,1,1,10,11]]],[24,1,1,11,12,[[798,1,1,11,12]]]],[1786,5661,7236,7995,10969,11165,11460,11936,14475,18033,20234,20353]]],["youth",[5,4,[[6,2,1,0,1,[[218,2,1,0,1]]],[8,3,3,1,4,[[252,3,3,1,4]]]],[6739,7651,7660,7673]]],["youths",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18450]]]]},{"k":"H5289","v":[["one",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23044]]]]},{"k":"H5290","v":[["*",[4,4,[[17,2,2,0,2,[[468,1,1,0,1],[471,1,1,1,2]]],[18,1,1,2,3,[[565,1,1,2,3]]],[19,1,1,3,4,[[656,1,1,3,4]]]],[13675,13750,15323,17245]]],["+",[3,3,[[17,1,1,0,1,[[468,1,1,0,1]]],[18,1,1,1,2,[[565,1,1,1,2]]],[19,1,1,2,3,[[656,1,1,2,3]]]],[13675,15323,17245]]],["youth",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13750]]]]},{"k":"H5291","v":[["*",[63,57,[[0,9,8,0,8,[[23,6,6,0,6],[33,3,2,6,8]]],[1,1,1,8,9,[[51,1,1,8,9]]],[4,14,12,9,21,[[174,14,12,9,21]]],[6,7,7,21,28,[[229,6,6,21,27],[231,1,1,27,28]]],[7,7,7,28,35,[[233,5,5,28,33],[234,1,1,33,34],[235,1,1,34,35]]],[8,2,2,35,37,[[244,1,1,35,36],[260,1,1,36,37]]],[10,3,3,37,40,[[291,3,3,37,40]]],[11,2,2,40,42,[[317,2,2,40,42]]],[16,13,10,42,52,[[427,11,8,42,50],[429,2,2,50,52]]],[17,1,1,52,53,[[476,1,1,52,53]]],[19,3,3,53,56,[[636,1,1,53,54],[654,1,1,54,55],[658,1,1,55,56]]],[29,1,1,56,57,[[880,1,1,56,57]]]],[605,607,619,646,648,652,983,992,1559,5485,5486,5489,5490,5491,5493,5494,5495,5496,5497,5498,5499,7027,7028,7029,7030,7032,7033,7114,7154,7155,7157,7171,7172,7174,7202,7402,7903,8719,8720,8721,9649,9651,12726,12727,12728,12731,12732,12733,12736,12737,12766,12778,13893,16641,17196,17299,22386]]],["+",[2,1,[[16,2,1,0,1,[[427,2,1,0,1]]]],[12736]]],["damsel",[24,22,[[0,8,7,0,7,[[23,5,5,0,5],[33,3,2,5,7]]],[4,11,10,7,17,[[174,11,10,7,17]]],[6,1,1,17,18,[[229,1,1,17,18]]],[7,2,2,18,20,[[233,2,2,18,20]]],[10,2,2,20,22,[[291,2,2,20,22]]]],[605,607,619,646,648,983,992,5485,5489,5490,5491,5493,5494,5495,5496,5497,5498,7027,7154,7155,8720,8721]]],["damsel's",[8,8,[[4,3,3,0,3,[[174,3,3,0,3]]],[6,5,5,3,8,[[229,5,5,3,8]]]],[5485,5486,5499,7028,7029,7030,7032,7033]]],["damsels",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]]],[652,7903]]],["maid",[4,4,[[11,2,2,0,2,[[317,2,2,0,2]]],[16,1,1,2,3,[[427,1,1,2,3]]],[29,1,1,3,4,[[880,1,1,3,4]]]],[9649,9651,12731,22386]]],["maiden",[3,3,[[16,3,3,0,3,[[427,3,3,0,3]]]],[12728,12733,12737]]],["maidens",[13,13,[[1,1,1,0,1,[[51,1,1,0,1]]],[7,4,4,1,5,[[233,3,3,1,4],[234,1,1,4,5]]],[8,1,1,5,6,[[244,1,1,5,6]]],[16,3,3,6,9,[[427,2,2,6,8],[429,1,1,8,9]]],[17,1,1,9,10,[[476,1,1,9,10]]],[19,3,3,10,13,[[636,1,1,10,11],[654,1,1,11,12],[658,1,1,12,13]]]],[1559,7157,7171,7172,7174,7402,12732,12733,12778,13893,16641,17196,17299]]],["maids",[2,2,[[16,2,2,0,2,[[427,1,1,0,1],[429,1,1,1,2]]]],[12733,12766]]],["woman",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7202]]],["young",[4,4,[[6,1,1,0,1,[[231,1,1,0,1]]],[10,1,1,1,2,[[291,1,1,1,2]]],[16,2,2,2,4,[[427,2,2,2,4]]]],[7114,8719,12726,12727]]]]},{"k":"H5292","v":[["*",[4,3,[[5,1,1,0,1,[[202,1,1,0,1]]],[12,3,2,1,3,[[341,3,2,1,3]]]],[6272,10390,10391]]],["Naarah",[3,2,[[12,3,2,0,2,[[341,3,2,0,2]]]],[10390,10391]]],["Naarath",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6272]]]]},{"k":"H5293","v":[["Naarai",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10710]]]]},{"k":"H5294","v":[["Neariah",[3,3,[[12,3,3,0,3,[[340,2,2,0,2],[341,1,1,2,3]]]],[10383,10384,10427]]]]},{"k":"H5295","v":[["Naaran",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10563]]]]},{"k":"H5296","v":[["tow",[2,2,[[6,1,1,0,1,[[226,1,1,0,1]]],[22,1,1,1,2,[[679,1,1,1,2]]]],[6958,17685]]]]},{"k":"H5297","v":[["*",[7,7,[[22,1,1,0,1,[[697,1,1,0,1]]],[23,4,4,1,5,[[746,1,1,1,2],[788,1,1,2,3],[790,2,2,3,5]]],[25,2,2,5,7,[[831,2,2,5,7]]]],[18017,18981,20011,20059,20064,21217,21220]]],["+",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21217]]],["Noph",[6,6,[[22,1,1,0,1,[[697,1,1,0,1]]],[23,4,4,1,5,[[746,1,1,1,2],[788,1,1,2,3],[790,2,2,3,5]]],[25,1,1,5,6,[[831,1,1,5,6]]]],[18017,18981,20011,20059,20064,21220]]]]},{"k":"H5298","v":[["Nepheg",[4,4,[[1,1,1,0,1,[[55,1,1,0,1]]],[9,1,1,1,2,[[271,1,1,1,2]]],[12,2,2,2,4,[[340,1,1,2,3],[351,1,1,3,4]]]],[1676,8147,10368,10780]]]]},{"k":"H5299","v":[["*",[4,4,[[5,2,2,0,2,[[197,1,1,0,1],[198,1,1,1,2]]],[10,1,1,2,3,[[294,1,1,2,3]]],[22,1,1,3,4,[[708,1,1,3,4]]]],[6109,6153,8855,18245]]],["borders",[1,1,[[5,1,1,0,1,[[197,1,1,0,1]]]],[6109]]],["coast",[1,1,[[5,1,1,0,1,[[198,1,1,0,1]]]],[6153]]],["region",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8855]]],["sieve",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18245]]]]},{"k":"H5300","v":[["Nephishesim",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12472]]]]},{"k":"H5301","v":[["*",[12,12,[[0,1,1,0,1,[[1,1,1,0,1]]],[17,3,3,1,4,[[455,1,1,1,2],[466,1,1,2,3],[476,1,1,3,4]]],[22,1,1,4,5,[[732,1,1,4,5]]],[23,2,2,5,7,[[745,1,1,5,6],[759,1,1,6,7]]],[25,3,3,7,10,[[823,2,2,7,9],[838,1,1,9,10]]],[36,1,1,10,11,[[909,1,1,10,11]]],[38,1,1,11,12,[[925,1,1,11,12]]]],[37,13352,13627,13908,18739,18959,19324,20996,20997,21406,22849,23102]]],["at",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23102]]],["blow",[3,3,[[25,2,2,0,2,[[823,2,2,0,2]]],[36,1,1,2,3,[[909,1,1,2,3]]]],[20996,20997,22849]]],["bloweth",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18739]]],["blown",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13352]]],["breathe",[1,1,[[25,1,1,0,1,[[838,1,1,0,1]]]],[21406]]],["breathed",[1,1,[[0,1,1,0,1,[[1,1,1,0,1]]]],[37]]],["lose",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13627]]],["seething",[2,2,[[17,1,1,0,1,[[476,1,1,0,1]]],[23,1,1,1,2,[[745,1,1,1,2]]]],[13908,18959]]],["up",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19324]]]]},{"k":"H5302","v":[["Nophah",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4370]]]]},{"k":"H5303","v":[["giants",[3,2,[[0,1,1,0,1,[[5,1,1,0,1]]],[3,2,1,1,2,[[129,2,1,1,2]]]],[141,4108]]]]},{"k":"H5304","v":[["Nephusim",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12077]]]]},{"k":"H5305","v":[["*",[3,3,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,2,2,1,3,[[338,1,1,1,2],[342,1,1,2,3]]]],[673,10283,10447]]],["Naphish",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[673,10283]]],["Nephish",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10447]]]]},{"k":"H5306","v":[["*",[4,4,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[25,2,2,2,4,[[828,1,1,2,3],[829,1,1,3,4]]]],[2311,2675,21137,21170]]],["emerald",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[25,1,1,2,3,[[829,1,1,2,3]]]],[2311,2675,21170]]],["emeralds",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21137]]]]},{"k":"H5307","v":[["*",[434,403,[[0,18,17,0,17,[[1,1,1,0,1],[3,2,2,1,3],[13,1,1,3,4],[14,2,1,4,5],[16,2,2,5,7],[23,1,1,7,8],[24,1,1,8,9],[32,1,1,9,10],[42,1,1,10,11],[43,1,1,11,12],[44,1,1,12,13],[45,1,1,13,14],[48,1,1,14,15],[49,2,2,15,17]]],[1,6,6,17,23,[[64,1,1,17,18],[68,1,1,18,19],[70,3,3,19,22],[81,1,1,22,23]]],[2,9,9,23,32,[[98,1,1,23,24],[100,5,5,24,29],[115,3,3,29,32]]],[3,17,17,32,49,[[121,3,3,32,35],[122,1,1,35,36],[130,5,5,36,41],[132,3,3,41,44],[136,1,1,44,45],[140,2,2,45,47],[150,1,1,47,48],[151,1,1,48,49]]],[4,8,6,49,55,[[161,3,2,49,51],[173,1,1,51,52],[174,3,2,52,54],[177,1,1,54,55]]],[5,15,14,55,69,[[188,1,1,55,56],[191,1,1,56,57],[192,2,2,57,59],[193,2,2,59,61],[194,2,2,61,63],[197,1,1,63,64],[199,1,1,64,65],[203,1,1,65,66],[207,1,1,66,67],[209,3,2,67,69]]],[6,21,18,69,87,[[212,1,1,69,70],[213,1,1,70,71],[214,2,2,71,73],[215,3,1,73,74],[217,3,2,74,76],[218,1,1,76,77],[219,1,1,77,78],[222,1,1,78,79],[223,1,1,79,80],[225,1,1,80,81],[226,1,1,81,82],[228,1,1,82,83],[229,2,2,83,85],[230,2,2,85,87]]],[7,2,2,87,89,[[233,1,1,87,88],[234,1,1,88,89]]],[8,25,25,89,114,[[238,1,1,89,90],[239,2,2,90,92],[240,2,2,92,94],[246,1,1,94,95],[249,3,3,95,98],[252,3,3,98,101],[253,1,1,101,102],[254,1,1,102,103],[255,1,1,103,104],[260,2,2,104,106],[261,2,2,106,108],[263,1,1,108,109],[264,1,1,109,110],[266,4,4,110,114]]],[9,30,27,114,141,[[267,7,7,114,121],[268,3,2,121,123],[269,4,3,123,126],[270,1,1,126,127],[275,1,1,127,128],[277,1,1,128,129],[280,3,3,129,132],[283,2,2,132,134],[285,1,1,134,135],[286,2,2,135,137],[287,2,2,137,139],[288,1,1,139,140],[290,2,1,140,141]]],[10,8,8,141,149,[[291,1,1,141,142],[298,1,1,142,143],[308,3,3,143,146],[310,2,2,146,148],[312,1,1,148,149]]],[11,16,14,149,163,[[313,1,1,149,150],[314,2,2,150,152],[315,2,2,152,154],[316,1,1,154,155],[317,1,1,155,156],[318,3,2,156,158],[319,1,1,158,159],[322,1,1,159,160],[326,1,1,160,161],[331,1,1,161,162],[337,2,1,162,163]]],[12,19,16,163,179,[[342,2,2,163,165],[347,4,4,165,169],[349,3,2,169,171],[357,1,1,171,172],[358,4,3,172,175],[361,1,1,175,176],[362,1,1,176,177],[363,3,2,177,179]]],[13,9,9,179,188,[[379,1,1,179,180],[380,1,1,180,181],[381,1,1,181,182],[384,1,1,182,183],[386,2,2,183,185],[391,1,1,185,186],[395,1,1,186,187],[398,1,1,187,188]]],[14,1,1,188,189,[[412,1,1,188,189]]],[15,3,3,189,192,[[418,1,1,189,190],[422,1,1,190,191],[423,1,1,191,192]]],[16,11,9,192,201,[[428,1,1,192,193],[431,4,2,193,195],[432,1,1,195,196],[433,2,2,196,198],[434,3,3,198,201]]],[17,13,13,201,214,[[436,4,4,201,205],[439,1,1,205,206],[441,1,1,206,207],[447,1,1,207,208],[448,2,2,208,210],[449,1,1,210,211],[464,1,1,211,212],[466,1,1,212,213],[468,1,1,213,214]]],[18,29,29,214,243,[[482,1,1,214,215],[484,1,1,215,216],[487,1,1,216,217],[493,1,1,217,218],[495,1,1,218,219],[497,1,1,219,220],[499,1,1,220,221],[504,1,1,221,222],[512,1,1,222,223],[513,1,1,223,224],[514,2,2,224,226],[522,1,1,226,227],[532,1,1,227,228],[534,1,1,228,229],[546,1,1,229,230],[550,1,1,230,231],[555,3,3,231,234],[559,1,1,234,235],[568,1,1,235,236],[582,1,1,236,237],[583,2,2,237,239],[595,1,1,239,240],[617,1,1,240,241],[618,1,1,241,242],[622,1,1,242,243]]],[19,15,15,243,258,[[628,1,1,243,244],[634,1,1,244,245],[638,3,3,245,248],[640,1,1,248,249],[644,1,1,249,250],[646,1,1,250,251],[649,1,1,251,252],[651,2,2,252,254],[653,1,1,254,255],[655,3,3,255,258]]],[20,6,4,258,262,[[662,2,1,258,259],[667,1,1,259,260],[668,1,1,260,261],[669,2,1,261,262]]],[22,25,24,262,286,[[681,2,2,262,264],[686,1,1,264,265],[687,2,2,265,267],[688,2,2,267,269],[691,1,1,269,270],[692,1,1,270,271],[694,1,1,271,272],[699,2,1,272,273],[700,1,1,273,274],[702,2,2,274,276],[704,2,2,276,278],[708,2,2,278,280],[709,2,2,280,282],[712,1,1,282,283],[715,1,1,283,284],[725,1,1,284,285],[732,1,1,285,286]]],[23,45,40,286,326,[[747,1,1,286,287],[750,2,1,287,288],[752,3,2,288,290],[753,1,1,290,291],[759,1,1,291,292],[763,1,1,292,293],[764,1,1,293,294],[765,1,1,294,295],[766,1,1,295,296],[767,1,1,296,297],[769,2,2,297,299],[780,1,1,299,300],[781,3,3,300,303],[782,2,2,303,305],[783,3,2,305,307],[786,2,2,307,309],[788,1,1,309,310],[790,3,3,310,313],[792,2,2,313,315],[793,2,2,315,317],[794,3,3,317,320],[795,6,5,320,325],[796,2,1,325,326]]],[24,3,3,326,329,[[797,1,1,326,327],[798,1,1,327,328],[801,1,1,328,329]]],[25,54,50,329,379,[[802,1,1,329,330],[804,1,1,330,331],[806,1,1,331,332],[807,4,4,332,336],[809,1,1,336,337],[810,1,1,337,338],[812,3,3,338,341],[814,4,3,341,344],[818,1,1,344,345],[824,1,1,345,346],[825,2,2,346,348],[826,1,1,348,349],[828,2,2,349,351],[829,1,1,351,352],[830,1,1,352,353],[831,7,6,353,359],[832,1,1,359,360],[833,6,6,360,366],[834,1,1,366,367],[836,1,1,367,368],[839,2,1,368,369],[840,4,4,369,373],[844,1,1,373,374],[845,1,1,374,375],[846,1,1,375,376],[848,3,2,376,378],[849,1,1,378,379]]],[26,8,8,379,387,[[857,2,2,379,381],[858,2,2,381,383],[859,1,1,383,384],[860,3,3,384,387]]],[27,4,4,387,391,[[868,2,2,387,389],[871,1,1,389,390],[874,1,1,390,391]]],[28,1,1,391,392,[[877,1,1,391,392]]],[29,7,7,392,399,[[881,2,2,392,394],[883,1,1,394,395],[885,1,1,395,396],[886,1,1,396,397],[887,2,2,397,399]]],[31,3,1,399,400,[[889,3,1,399,400]]],[32,1,1,400,401,[[899,1,1,400,401]]],[33,1,1,401,402,[[902,1,1,401,402]]],[37,1,1,402,403,[[921,1,1,402,403]]]],[51,84,85,346,372,400,414,655,676,964,1308,1338,1372,1415,1490,1507,1524,1936,2047,2095,2104,2110,2466,2977,3029,3030,3032,3034,3035,3531,3532,3560,3813,3814,3819,3835,4111,4113,4137,4140,4151,4198,4216,4239,4317,4450,4462,4818,4868,5175,5182,5448,5474,5478,5549,5878,5948,5954,5969,5982,5986,6026,6027,6114,6160,6280,6426,6464,6474,6564,6593,6615,6621,6650,6706,6707,6729,6794,6875,6904,6947,6979,6994,7050,7051,7098,7100,7159,7190,7295,7307,7315,7322,7323,7452,7521,7550,7553,7650,7667,7670,7701,7730,7771,7884,7885,7917,7925,7962,7970,8010,8013,8014,8017,8024,8026,8032,8034,8041,8047,8049,8065,8072,8110,8115,8119,8124,8233,8276,8360,8367,8378,8458,8461,8529,8562,8569,8589,8602,8641,8706,8769,9041,9348,9379,9380,9433,9438,9500,9535,9564,9565,9595,9601,9640,9668,9679,9680,9711,9803,9906,10068,10233,10438,10450,10660,10663,10664,10667,10739,10740,10934,10947,10948,10950,11046,11054,11090,11091,11470,11488,11499,11561,11605,11611,11723,11800,11896,12253,12417,12583,12589,12754,12803,12806,12815,12820,12834,12836,12837,12858,12884,12885,12888,12889,12943,13005,13131,13155,13164,13199,13556,13610,13665,13983,14010,14051,14098,14156,14190,14222,14287,14418,14450,14464,14474,14602,14736,14774,14944,15038,15141,15168,15177,15240,15402,15644,15677,15678,15882,16273,16286,16334,16414,16601,16693,16702,16716,16764,16893,16940,17029,17095,17096,17168,17206,17210,17214,17391,17487,17501,17516,17715,17732,17822,17837,17839,17854,17884,17921,17940,17978,18044,18077,18113,18115,18148,18149,18230,18242,18253,18258,18320,18359,18610,18738,19014,19104,19157,19165,19197,19323,19414,19426,19449,19461,19496,19561,19568,19849,19887,19888,19894,19914,19921,19932,19941,19977,19984,20022,20051,20057,20061,20112,20124,20148,20153,20181,20196,20198,20216,20220,20256,20259,20261,20291,20317,20353,20458,20492,20525,20558,20567,20570,20574,20575,20605,20630,20660,20665,20668,20719,20720,20722,20846,21032,21062,21077,21096,21148,21155,21180,21188,21208,21209,21210,21221,21226,21229,21242,21260,21268,21270,21271,21272,21275,21307,21352,21445,21451,21452,21453,21471,21575,21603,21631,21693,21701,21731,21971,21978,22006,22008,22022,22048,22055,22062,22185,22194,22233,22282,22319,22400,22409,22425,22481,22495,22504,22506,22538,22672,22724,23030]]],["+",[12,11,[[5,1,1,0,1,[[209,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[15,1,1,2,3,[[422,1,1,2,3]]],[16,2,1,3,4,[[431,2,1,3,4]]],[17,2,2,4,6,[[441,1,1,4,5],[464,1,1,5,6]]],[20,3,3,6,9,[[662,1,1,6,7],[667,1,1,7,8],[669,1,1,8,9]]],[25,2,2,9,11,[[846,1,1,9,10],[848,1,1,10,11]]]],[6464,9433,12583,12806,13005,13556,17391,17487,17516,21631,21701]]],["Cast",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7550]]],["Fall",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22233]]],["accepted",[2,2,[[23,2,2,0,2,[[781,1,1,0,1],[786,1,1,1,2]]]],[19894,19977]]],["along",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6707]]],["away",[4,4,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,3,3,1,4,[[781,1,1,1,2],[783,1,1,2,3],[796,1,1,3,4]]]],[10233,19887,19932,20291]]],["cast",[14,13,[[3,1,1,0,1,[[151,1,1,0,1]]],[12,4,4,1,5,[[361,1,1,1,2],[362,1,1,2,3],[363,2,2,3,5]]],[15,1,1,5,6,[[423,1,1,5,6]]],[16,2,2,6,8,[[428,1,1,6,7],[434,1,1,7,8]]],[18,2,2,8,10,[[499,1,1,8,9],[617,1,1,9,10]]],[22,1,1,10,11,[[712,1,1,10,11]]],[23,1,1,11,12,[[766,1,1,11,12]]],[31,2,1,12,13,[[889,2,1,12,13]]]],[4868,11046,11054,11090,11091,12589,12754,12858,14222,16273,18320,19461,22538]]],["casteth",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16940]]],["ceased",[1,1,[[6,1,1,0,1,[[212,1,1,0,1]]]],[6564]]],["died",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[676]]],["divided",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15168]]],["down",[40,38,[[0,1,1,0,1,[[49,1,1,0,1]]],[4,5,4,1,5,[[161,3,2,1,3],[174,1,1,3,4],[177,1,1,4,5]]],[5,2,2,5,7,[[192,2,2,5,7]]],[6,4,4,7,11,[[213,1,1,7,8],[215,1,1,8,9],[229,2,2,9,11]]],[8,3,3,11,14,[[252,1,1,11,12],[254,1,1,12,13],[266,1,1,13,14]]],[9,5,4,14,18,[[268,3,2,14,16],[285,1,1,16,17],[286,1,1,17,18]]],[11,2,2,18,20,[[313,1,1,18,19],[317,1,1,19,20]]],[12,2,2,20,22,[[342,1,1,20,21],[347,1,1,21,22]]],[13,1,1,22,23,[[379,1,1,22,23]]],[14,1,1,23,24,[[412,1,1,23,24]]],[15,1,1,24,25,[[418,1,1,24,25]]],[16,1,1,25,26,[[433,1,1,25,26]]],[17,1,1,26,27,[[436,1,1,26,27]]],[18,2,2,27,29,[[514,1,1,27,28],[550,1,1,28,29]]],[19,1,1,29,30,[[634,1,1,29,30]]],[22,2,2,30,32,[[687,1,1,30,31],[709,1,1,31,32]]],[25,3,3,32,35,[[807,1,1,32,33],[812,1,1,33,34],[831,1,1,34,35]]],[26,3,3,35,38,[[857,1,1,35,36],[860,2,2,36,38]]]],[1524,5175,5182,5474,5549,5954,5969,6593,6650,7050,7051,7670,7730,8010,8065,8072,8529,8569,9535,9668,10450,10660,11470,12253,12417,12820,12889,14464,15038,16601,17839,18253,20567,20668,21229,21971,22048,22062]]],["fail",[2,2,[[8,1,1,0,1,[[252,1,1,0,1]]],[16,1,1,1,2,[[431,1,1,1,2]]]],[7650,12803]]],["failed",[4,3,[[5,3,2,0,2,[[207,1,1,0,1],[209,2,1,1,2]]],[10,1,1,2,3,[[298,1,1,2,3]]]],[6426,6474,9041]]],["fall",[146,138,[[0,3,3,0,3,[[1,1,1,0,1],[42,1,1,1,2],[48,1,1,2,3]]],[1,2,2,3,5,[[64,1,1,3,4],[70,1,1,4,5]]],[2,6,6,5,11,[[100,3,3,5,8],[115,3,3,8,11]]],[3,5,5,11,16,[[130,4,4,11,15],[150,1,1,15,16]]],[4,1,1,16,17,[[174,1,1,16,17]]],[6,1,1,17,18,[[225,1,1,17,18]]],[7,1,1,18,19,[[234,1,1,18,19]]],[8,4,4,19,23,[[238,1,1,19,20],[249,1,1,20,21],[253,1,1,21,22],[261,1,1,22,23]]],[9,3,2,23,25,[[280,1,1,23,24],[290,2,1,24,25]]],[10,2,2,25,27,[[291,1,1,25,26],[312,1,1,26,27]]],[11,4,4,27,31,[[319,1,1,27,28],[322,1,1,28,29],[326,1,1,29,30],[331,1,1,30,31]]],[12,3,2,31,33,[[349,1,1,31,32],[358,2,1,32,33]]],[13,2,2,33,35,[[384,1,1,33,34],[391,1,1,34,35]]],[16,1,1,35,36,[[431,1,1,35,36]]],[17,2,2,36,38,[[448,1,1,36,37],[466,1,1,37,38]]],[18,11,11,38,49,[[482,1,1,38,39],[487,1,1,39,40],[512,1,1,40,41],[514,1,1,41,42],[522,1,1,42,43],[555,1,1,43,44],[559,1,1,44,45],[568,1,1,45,46],[595,1,1,46,47],[618,1,1,47,48],[622,1,1,48,49]]],[19,8,8,49,57,[[638,3,3,49,52],[649,1,1,52,53],[653,1,1,53,54],[655,3,3,54,57]]],[20,3,3,57,60,[[662,1,1,57,58],[668,1,1,58,59],[669,1,1,59,60]]],[22,14,14,60,74,[[681,1,1,60,61],[686,1,1,61,62],[688,2,2,62,64],[691,1,1,64,65],[700,1,1,65,66],[702,2,2,66,68],[708,2,2,68,70],[709,1,1,70,71],[715,1,1,71,72],[725,1,1,72,73],[732,1,1,73,74]]],[23,27,24,74,98,[[747,1,1,74,75],[750,2,1,75,76],[752,3,2,76,78],[753,1,1,78,79],[759,1,1,79,80],[763,1,1,80,81],[764,1,1,81,82],[767,1,1,82,83],[769,2,2,83,85],[781,1,1,85,86],[783,1,1,86,87],[788,1,1,87,88],[790,1,1,88,89],[792,1,1,89,90],[793,2,2,90,92],[794,2,2,92,94],[795,5,4,94,98]]],[25,32,29,98,127,[[806,1,1,98,99],[807,3,3,99,102],[812,1,1,102,103],[814,3,2,103,105],[818,1,1,105,106],[824,1,1,106,107],[825,2,2,107,109],[826,1,1,109,110],[828,2,2,110,112],[830,1,1,112,113],[831,6,5,113,118],[833,2,2,118,120],[834,1,1,120,121],[836,1,1,121,122],[839,2,1,122,123],[840,3,3,123,126],[848,1,1,126,127]]],[26,1,1,127,128,[[860,1,1,127,128]]],[27,2,2,128,130,[[868,1,1,128,129],[874,1,1,129,130]]],[28,1,1,130,131,[[877,1,1,130,131]]],[29,5,5,131,136,[[881,2,2,131,133],[885,1,1,133,134],[886,1,1,134,135],[887,1,1,135,136]]],[32,1,1,136,137,[[899,1,1,136,137]]],[33,1,1,137,138,[[902,1,1,137,138]]]],[51,1308,1490,1936,2110,3029,3034,3035,3531,3532,3560,4111,4137,4140,4151,4818,5478,6947,7190,7295,7553,7701,7925,8367,8706,8769,9500,9711,9803,9906,10068,10739,10947,11561,11723,12806,13164,13610,13983,14051,14418,14474,14602,15141,15240,15402,15882,16286,16334,16693,16702,16716,17029,17168,17206,17210,17214,17391,17501,17516,17732,17822,17854,17884,17921,18077,18113,18115,18230,18242,18258,18359,18610,18738,19014,19104,19157,19165,19197,19323,19414,19426,19496,19561,19568,19888,19941,20022,20051,20124,20148,20153,20196,20198,20216,20256,20259,20261,20558,20570,20574,20575,20665,20719,20722,20846,21032,21062,21077,21096,21148,21155,21188,21208,21209,21210,21221,21226,21260,21268,21307,21352,21445,21451,21452,21453,21693,22055,22194,22282,22319,22400,22409,22481,22495,22504,22672,22724]]],["fallen",[52,51,[[0,1,1,0,1,[[3,1,1,0,1]]],[5,2,2,1,3,[[188,1,1,1,2],[194,1,1,2,3]]],[6,1,1,3,4,[[228,1,1,3,4]]],[8,4,4,4,8,[[240,2,2,4,6],[261,1,1,6,7],[266,1,1,7,8]]],[9,8,8,8,16,[[267,6,6,8,14],[269,1,1,14,15],[288,1,1,15,16]]],[12,1,1,16,17,[[347,1,1,16,17]]],[13,2,2,17,19,[[386,1,1,17,18],[395,1,1,18,19]]],[16,1,1,19,20,[[432,1,1,19,20]]],[17,1,1,20,21,[[436,1,1,20,21]]],[18,8,8,21,29,[[484,1,1,21,22],[493,1,1,22,23],[495,1,1,23,24],[497,1,1,24,25],[513,1,1,25,26],[532,1,1,26,27],[534,1,1,27,28],[546,1,1,28,29]]],[22,6,5,29,34,[[681,1,1,29,30],[692,1,1,30,31],[694,1,1,31,32],[699,2,1,32,33],[704,1,1,33,34]]],[23,5,5,34,39,[[782,1,1,34,35],[790,1,1,35,36],[792,1,1,36,37],[794,1,1,37,38],[795,1,1,38,39]]],[24,2,2,39,41,[[798,1,1,39,40],[801,1,1,40,41]]],[25,6,6,41,47,[[814,1,1,41,42],[832,1,1,42,43],[833,4,4,43,47]]],[27,1,1,47,48,[[868,1,1,47,48]]],[29,2,2,48,50,[[883,1,1,48,49],[887,1,1,49,50]]],[37,1,1,50,51,[[921,1,1,50,51]]]],[85,5878,6026,6994,7322,7323,7917,8017,8026,8032,8034,8041,8047,8049,8119,8641,10667,11611,11800,12815,12885,14010,14098,14156,14190,14450,14736,14774,14944,17715,17940,17978,18044,18148,19914,20057,20112,20181,20220,20353,20458,20720,21242,21270,21271,21272,21275,22185,22425,22506,23030]]],["falleth",[12,12,[[2,2,2,0,2,[[100,2,2,0,2]]],[9,3,3,2,5,[[269,2,2,2,4],[283,1,1,4,5]]],[17,2,2,5,7,[[439,1,1,5,6],[468,1,1,6,7]]],[19,4,4,7,11,[[640,1,1,7,8],[644,1,1,8,9],[651,2,2,9,11]]],[23,1,1,11,12,[[765,1,1,11,12]]]],[3030,3032,8110,8115,8461,12943,13665,16764,16893,17095,17096,19449]]],["falling",[3,3,[[3,2,2,0,2,[[140,2,2,0,2]]],[17,1,1,2,3,[[449,1,1,2,3]]]],[4450,4462,13199]]],["fell",[98,96,[[0,11,10,0,10,[[3,1,1,0,1],[13,1,1,1,2],[14,2,1,2,3],[16,2,2,3,5],[32,1,1,5,6],[43,1,1,6,7],[44,1,1,7,8],[45,1,1,8,9],[49,1,1,9,10]]],[1,1,1,10,11,[[81,1,1,10,11]]],[2,1,1,11,12,[[98,1,1,11,12]]],[3,5,5,12,17,[[130,1,1,12,13],[132,3,3,13,16],[136,1,1,16,17]]],[5,5,5,17,22,[[191,1,1,17,18],[193,1,1,18,19],[194,1,1,19,20],[197,1,1,20,21],[203,1,1,21,22]]],[6,10,9,22,31,[[214,1,1,22,23],[215,2,1,23,24],[217,1,1,24,25],[218,1,1,25,26],[222,1,1,26,27],[223,1,1,27,28],[226,1,1,28,29],[230,2,2,29,31]]],[7,1,1,31,32,[[233,1,1,31,32]]],[8,12,12,32,44,[[239,2,2,32,34],[246,1,1,34,35],[249,1,1,35,36],[252,1,1,36,37],[255,1,1,37,38],[260,2,2,38,40],[263,1,1,40,41],[264,1,1,41,42],[266,2,2,42,44]]],[9,8,8,44,52,[[267,1,1,44,45],[270,1,1,45,46],[275,1,1,46,47],[277,1,1,47,48],[280,2,2,48,50],[287,2,2,50,52]]],[10,4,4,52,56,[[308,3,3,52,55],[310,1,1,55,56]]],[11,6,6,56,62,[[314,2,2,56,58],[315,1,1,58,59],[316,1,1,59,60],[318,2,2,60,62]]],[12,9,9,62,71,[[342,1,1,62,63],[347,2,2,63,65],[349,2,2,65,67],[357,1,1,67,68],[358,2,2,68,70],[363,1,1,70,71]]],[13,2,2,71,73,[[381,1,1,71,72],[386,1,1,72,73]]],[16,3,3,73,76,[[433,1,1,73,74],[434,2,2,74,76]]],[17,2,2,76,78,[[436,2,2,76,78]]],[18,3,3,78,81,[[504,1,1,78,79],[555,1,1,79,80],[582,1,1,80,81]]],[23,3,3,81,84,[[783,1,1,81,82],[790,1,1,82,83],[796,1,1,83,84]]],[24,1,1,84,85,[[797,1,1,84,85]]],[25,8,8,85,93,[[802,1,1,85,86],[804,1,1,86,87],[809,1,1,87,88],[810,1,1,88,89],[812,1,1,89,90],[840,1,1,90,91],[844,1,1,91,92],[845,1,1,92,93]]],[26,2,2,93,95,[[857,1,1,93,94],[859,1,1,94,95]]],[31,1,1,95,96,[[889,1,1,95,96]]]],[84,346,372,400,414,964,1338,1372,1415,1507,2466,2977,4113,4198,4216,4239,4317,5948,5982,6027,6114,6280,6615,6650,6707,6729,6875,6904,6979,7098,7100,7159,7307,7315,7452,7521,7667,7771,7884,7885,7962,7970,8013,8014,8024,8124,8233,8276,8360,8378,8589,8602,9348,9379,9380,9438,9564,9565,9595,9640,9679,9680,10438,10663,10664,10739,10740,10934,10948,10950,11091,11499,11605,12834,12836,12837,12884,12888,14287,15177,15644,19932,20061,20291,20317,20492,20525,20605,20630,20660,21471,21575,21603,21978,22022,22538]]],["felled",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9601]]],["fellest",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8115]]],["felling",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9679]]],["fugitives",[1,1,[[11,1,1,0,1,[[337,1,1,0,1]]]],[10233]]],["have",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21701]]],["in",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16414]]],["inferior",[2,2,[[17,2,2,0,2,[[447,1,1,0,1],[448,1,1,1,2]]]],[13131,13155]]],["judged",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21180]]],["keepeth",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2095]]],["lay",[2,2,[[6,2,2,0,2,[[214,1,1,0,1],[217,1,1,1,2]]]],[6621,6706]]],["liest",[1,1,[[5,1,1,0,1,[[193,1,1,0,1]]]],[5986]]],["lighted",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[22,1,1,1,2,[[687,1,1,1,2]]]],[655,17837]]],["lost",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3835]]],["lot",[2,2,[[5,1,1,0,1,[[199,1,1,0,1]]],[25,1,1,1,2,[[849,1,1,1,2]]]],[6160,21731]]],["lying",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5448]]],["man",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5478]]],["out",[3,3,[[1,1,1,0,1,[[70,1,1,0,1]]],[9,1,1,1,2,[[286,1,1,1,2]]],[22,1,1,2,3,[[704,1,1,2,3]]]],[2104,8562,18149]]],["overthrow",[2,2,[[18,2,2,0,2,[[583,2,2,0,2]]]],[15677,15678]]],["overthrown",[3,3,[[6,1,1,0,1,[[219,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[13,1,1,2,3,[[380,1,1,2,3]]]],[6794,8458,11488]]],["perish",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2047]]],["present",[3,3,[[23,2,2,0,2,[[780,1,1,0,1],[786,1,1,1,2]]],[26,1,1,2,3,[[858,1,1,2,3]]]],[19849,19984,22006]]],["presented",[1,1,[[23,1,1,0,1,[[782,1,1,0,1]]]],[19921]]],["presenting",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22008]]],["rot",[3,3,[[3,3,3,0,3,[[121,3,3,0,3]]]],[3813,3814,3819]]],["slew",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11896]]]]},{"k":"H5308","v":[["*",[11,11,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,10,10,1,11,[[851,1,1,1,2],[852,7,7,2,9],[853,1,1,9,10],[856,1,1,10,11]]]],[12193,21804,21812,21813,21814,21817,21818,21822,21830,21868,21953]]],["+",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21813,21818]]],["down",[5,5,[[26,5,5,0,5,[[852,5,5,0,5]]]],[21812,21814,21817,21822,21830]]],["fell",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[853,1,1,1,2],[856,1,1,2,3]]]],[21804,21868,21953]]],["occasion",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12193]]]]},{"k":"H5309","v":[["birth",[3,3,[[17,1,1,0,1,[[438,1,1,0,1]]],[18,1,1,1,2,[[535,1,1,1,2]]],[20,1,1,2,3,[[664,1,1,2,3]]]],[12920,14787,17420]]]]},{"k":"H5310","v":[["*",[22,17,[[0,1,1,0,1,[[8,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]],[8,1,1,2,3,[[248,1,1,2,3]]],[10,1,1,3,4,[[295,1,1,3,4]]],[18,2,2,4,6,[[479,1,1,4,5],[614,1,1,5,6]]],[22,3,3,6,9,[[689,1,1,6,7],[705,1,1,7,8],[711,1,1,8,9]]],[23,12,7,9,16,[[757,1,1,9,10],[766,1,1,10,11],[792,1,1,11,12],[795,9,4,12,16]]],[26,1,1,16,17,[[861,1,1,16,17]]]],[224,6713,7496,8887,13954,16231,17896,18160,18282,19280,19482,20092,20232,20233,20234,20235,22088]]],["+",[1,1,[[18,1,1,0,1,[[614,1,1,0,1]]]],[16231]]],["brake",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6713]]],["break",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20092]]],["broken",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19482]]],["dash",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19280]]],["discharged",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8887]]],["dispersed",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17896]]],["overspread",[1,1,[[0,1,1,0,1,[[8,1,1,0,1]]]],[224]]],["pieces",[10,5,[[18,1,1,0,1,[[479,1,1,0,1]]],[23,9,4,1,5,[[795,9,4,1,5]]]],[13954,20232,20233,20234,20235]]],["scatter",[1,1,[[26,1,1,0,1,[[861,1,1,0,1]]]],[22088]]],["scattered",[2,2,[[8,1,1,0,1,[[248,1,1,0,1]]],[22,1,1,1,2,[[711,1,1,1,2]]]],[7496,18282]]],["sunder",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18160]]]]},{"k":"H5311","v":[["scattering",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18247]]]]},{"k":"H5312","v":[["*",[11,9,[[14,3,2,0,2,[[407,2,1,0,1],[408,1,1,1,2]]],[26,8,7,2,9,[[851,2,2,2,4],[852,2,1,4,5],[854,3,3,5,8],[856,1,1,8,9]]]],[12148,12156,21771,21772,21833,21876,21877,21879,21943]]],["forth",[7,6,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,6,5,1,6,[[851,2,2,1,3],[852,2,1,3,4],[854,1,1,4,5],[856,1,1,5,6]]]],[12156,21771,21772,21833,21879,21943]]],["out",[2,2,[[26,2,2,0,2,[[854,2,2,0,2]]]],[21876,21877]]],["take",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12148]]],["took",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12148]]]]},{"k":"H5313","v":[["expenses",[2,2,[[14,2,2,0,2,[[408,2,2,0,2]]]],[12155,12159]]]]},{"k":"H5314","v":[["*",[3,3,[[1,2,2,0,2,[[72,1,1,0,1],[80,1,1,1,2]]],[9,1,1,2,3,[[282,1,1,2,3]]]],[2156,2437,8440]]],["refreshed",[2,2,[[1,2,2,0,2,[[72,1,1,0,1],[80,1,1,1,2]]]],[2156,2437]]],["themselves",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8440]]]]},{"k":"H5315","v":[["*",[753,682,[[0,42,38,0,38,[[0,4,4,0,4],[1,2,2,4,6],[8,7,6,6,12],[11,2,2,12,14],[13,1,1,14,15],[16,1,1,15,16],[18,3,3,16,19],[22,1,1,19,20],[26,4,4,20,24],[31,1,1,24,25],[33,2,2,25,27],[34,1,1,27,28],[35,1,1,28,29],[41,1,1,29,30],[43,2,1,30,31],[45,8,6,31,37],[48,1,1,37,38]]],[1,17,15,38,53,[[50,2,1,38,39],[53,1,1,39,40],[61,4,4,40,44],[64,1,1,44,45],[65,1,1,45,46],[70,3,2,46,48],[72,1,1,48,49],[79,3,3,49,52],[80,1,1,52,53]]],[2,60,48,53,101,[[91,1,1,53,54],[93,2,2,54,56],[94,5,5,56,61],[95,1,1,61,62],[96,8,5,62,67],[100,5,4,67,71],[105,2,2,71,73],[106,9,5,73,78],[107,1,1,78,79],[108,2,2,79,81],[109,3,2,81,83],[110,2,2,83,85],[111,4,4,85,89],[112,5,4,89,93],[113,4,2,93,95],[115,5,5,95,100],[116,1,1,100,101]]],[3,50,44,101,145,[[121,2,2,101,103],[122,2,2,103,105],[125,4,4,105,109],[127,1,1,109,110],[131,5,4,110,114],[132,1,1,114,115],[135,6,5,115,120],[137,2,2,120,122],[139,1,1,122,123],[145,1,1,123,124],[146,12,11,124,135],[147,8,6,135,141],[151,5,4,141,145]]],[4,35,31,145,176,[[156,3,3,145,148],[158,1,1,148,149],[162,2,2,149,151],[163,2,2,151,153],[164,6,4,153,157],[165,2,2,157,159],[166,2,1,159,160],[170,1,1,160,161],[171,4,3,161,164],[173,1,1,164,165],[174,1,1,165,166],[175,1,1,166,167],[176,3,3,167,170],[178,1,1,170,171],[179,1,1,171,172],[180,1,1,172,173],[182,3,3,173,176]]],[5,16,15,176,191,[[188,2,2,176,178],[195,1,1,178,179],[196,7,6,179,185],[197,1,1,185,186],[206,2,2,186,188],[208,1,1,188,189],[209,2,2,189,191]]],[6,10,8,191,199,[[215,2,2,191,193],[219,1,1,193,194],[220,1,1,194,195],[222,1,1,195,196],[226,2,2,196,198],[228,3,1,198,199]]],[7,1,1,199,200,[[235,1,1,199,200]]],[8,34,28,200,228,[[236,3,3,200,203],[237,3,3,203,206],[252,1,1,206,207],[253,4,2,207,209],[254,2,2,209,211],[255,4,4,211,215],[257,4,3,215,218],[258,2,2,218,220],[259,1,1,220,221],[260,4,2,221,223],[261,3,2,223,225],[263,2,2,225,227],[265,1,1,227,228]]],[9,17,14,228,242,[[267,1,1,228,229],[269,1,1,229,230],[270,2,2,230,232],[271,1,1,232,233],[277,1,1,233,234],[280,3,3,234,237],[282,1,1,237,238],[283,1,1,238,239],[284,1,1,239,240],[285,4,1,240,241],[289,1,1,241,242]]],[10,23,18,242,260,[[291,3,2,242,244],[292,2,2,244,246],[293,1,1,246,247],[298,1,1,247,248],[301,1,1,248,249],[307,2,2,249,251],[309,7,5,251,256],[310,6,4,256,260]]],[11,15,13,260,273,[[313,3,2,260,262],[314,3,3,262,265],[316,2,2,265,267],[319,1,1,267,268],[321,1,1,268,269],[322,2,1,269,270],[324,1,1,270,271],[335,2,2,271,273]]],[12,5,4,273,277,[[342,1,1,273,274],[348,2,1,274,275],[359,1,1,275,276],[365,1,1,276,277]]],[13,4,4,277,281,[[367,1,1,277,278],[372,1,1,278,279],[381,1,1,279,280],[400,1,1,280,281]]],[16,6,6,281,287,[[429,1,1,281,282],[432,2,2,282,284],[433,1,1,284,285],[434,2,2,285,287]]],[17,35,33,287,320,[[437,2,2,287,289],[438,1,1,289,290],[441,2,2,290,292],[442,2,2,292,294],[444,1,1,294,295],[445,2,1,295,296],[446,1,1,296,297],[447,1,1,297,298],[448,1,1,298,299],[449,1,1,299,300],[451,2,1,300,301],[453,1,1,301,302],[454,1,1,302,303],[456,1,1,303,304],[458,1,1,304,305],[459,1,1,305,306],[462,2,2,306,308],[465,2,2,308,310],[466,2,2,310,312],[467,1,1,312,313],[468,5,5,313,318],[471,1,1,318,319],[476,1,1,319,320]]],[18,144,141,320,461,[[480,1,1,320,321],[483,2,2,321,323],[484,2,2,323,325],[487,1,1,325,326],[488,2,2,326,328],[490,1,1,328,329],[493,1,1,329,330],[494,2,2,330,332],[496,1,1,332,333],[499,2,2,333,335],[500,1,1,335,336],[501,1,1,336,337],[502,3,3,337,340],[503,1,1,340,341],[504,1,1,341,342],[507,1,1,342,343],[508,3,3,343,346],[510,2,2,346,348],[511,2,2,348,350],[512,8,8,350,358],[515,1,1,358,359],[517,1,1,359,360],[518,2,2,360,362],[519,6,6,362,368],[520,1,1,368,369],[521,1,1,369,370],[526,3,3,370,373],[531,2,2,373,375],[532,1,1,375,376],[533,2,2,376,378],[534,3,3,378,381],[536,1,1,381,382],[539,2,2,382,384],[540,4,4,384,388],[543,2,2,388,390],[546,3,3,390,393],[547,1,1,393,394],[548,3,3,394,397],[549,2,2,397,399],[551,1,1,399,400],[554,1,1,400,401],[555,2,2,401,403],[561,1,1,403,404],[563,5,4,404,408],[565,2,2,408,410],[566,1,1,410,411],[571,3,3,411,414],[574,1,1,414,415],[580,3,3,415,418],[581,2,2,418,420],[582,2,2,420,422],[583,1,1,422,423],[584,5,4,423,427],[586,2,2,427,429],[593,3,3,429,432],[596,8,8,432,440],[597,2,2,440,442],[598,1,1,442,443],[600,1,1,443,444],[601,3,3,444,447],[607,2,2,447,449],[608,2,1,449,450],[615,1,1,450,451],[616,1,1,451,452],[618,1,1,452,453],[619,2,2,453,455],[620,5,5,455,460],[623,1,1,460,461]]],[19,56,54,461,515,[[628,2,2,461,463],[629,1,1,463,464],[630,1,1,464,465],[633,4,4,465,469],[634,1,1,469,470],[635,1,1,470,471],[637,1,1,471,472],[638,3,3,472,475],[639,1,1,475,476],[640,7,6,476,482],[641,2,2,482,484],[642,1,1,484,485],[643,3,3,485,488],[645,1,1,488,489],[646,5,5,489,494],[647,1,1,494,495],[648,2,2,495,497],[649,3,3,497,500],[650,3,3,500,503],[651,2,2,503,505],[652,2,2,505,507],[654,3,2,507,509],[655,2,2,509,511],[656,3,3,511,514],[658,1,1,514,515]]],[20,7,7,515,522,[[660,1,1,515,516],[662,1,1,516,517],[664,4,4,517,521],[665,1,1,521,522]]],[21,7,7,522,529,[[671,1,1,522,523],[673,4,4,523,527],[675,1,1,527,528],[676,1,1,528,529]]],[22,34,32,529,561,[[679,1,1,529,530],[681,2,2,530,532],[683,1,1,532,533],[688,1,1,533,534],[693,1,1,534,535],[697,1,1,535,536],[704,2,2,536,538],[707,2,1,538,539],[710,1,1,539,540],[716,2,2,540,542],[720,1,1,542,543],[721,1,1,543,544],[722,1,1,544,545],[724,1,1,545,546],[725,1,1,546,547],[727,1,1,547,548],[729,1,1,548,549],[731,3,3,549,552],[733,2,2,552,554],[734,1,1,554,555],[736,5,4,555,559],[739,1,1,559,560],[744,1,1,560,561]]],[23,62,58,561,619,[[746,2,2,561,563],[747,1,1,563,564],[748,4,4,564,568],[749,2,2,568,570],[750,2,2,570,572],[753,1,1,572,573],[755,1,1,573,574],[756,1,1,574,575],[757,1,1,575,576],[758,1,1,576,577],[759,2,2,577,579],[761,1,1,579,580],[762,1,1,580,581],[763,2,2,581,583],[764,1,1,583,584],[765,2,2,584,586],[766,2,2,586,588],[770,1,1,588,589],[775,4,3,589,592],[776,1,1,592,593],[778,3,3,593,596],[781,1,1,596,597],[782,5,4,597,601],[783,1,1,601,602],[784,2,2,602,604],[786,1,1,604,605],[787,1,1,605,606],[788,4,3,606,609],[789,1,1,609,610],[790,1,1,610,611],[792,1,1,611,612],[793,1,1,612,613],[794,1,1,613,614],[795,3,3,614,617],[796,3,2,617,619]]],[24,12,12,619,631,[[797,3,3,619,622],[798,2,2,622,624],[799,6,6,624,630],[801,1,1,630,631]]],[25,42,33,631,664,[[804,2,2,631,633],[805,1,1,633,634],[808,1,1,634,635],[814,8,3,635,638],[815,2,2,638,640],[817,2,2,640,642],[818,1,1,642,643],[819,6,3,643,646],[823,2,2,646,648],[824,5,4,648,652],[825,2,2,652,654],[826,2,2,654,656],[828,2,2,656,658],[833,1,1,658,659],[834,3,3,659,662],[837,1,1,662,663],[848,1,1,663,664]]],[27,2,2,664,666,[[865,1,1,664,665],[870,1,1,665,666]]],[29,3,3,666,669,[[880,2,2,666,668],[884,1,1,668,669]]],[31,5,5,669,674,[[889,1,1,669,670],[890,2,2,670,672],[892,2,2,672,674]]],[32,3,3,674,677,[[898,1,1,674,675],[899,2,2,675,677]]],[34,3,3,677,680,[[904,3,3,677,680]]],[36,1,1,680,681,[[910,1,1,680,681]]],[37,2,1,681,682,[[921,2,1,681,682]]]],[19,20,23,29,37,49,209,210,215,217,220,221,303,311,357,411,474,476,477,579,731,746,752,758,958,983,988,1029,1046,1273,1354,1401,1404,1408,1411,1412,1413,1479,1537,1620,1820,1831,1832,1835,1929,1963,2100,2107,2153,2394,2397,2398,2434,2763,2797,2822,2831,2832,2834,2845,2847,2851,2897,2899,2900,2904,2906,3007,3040,3041,3043,3230,3232,3245,3246,3247,3249,3250,3280,3289,3309,3324,3343,3346,3356,3372,3373,3375,3380,3429,3431,3432,3434,3463,3464,3535,3539,3540,3554,3567,3572,3794,3798,3829,3834,3971,3972,3975,3978,4030,4180,4181,4183,4184,4232,4300,4302,4307,4309,4311,4344,4345,4426,4615,4650,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4683,4692,4699,4704,4710,4714,4856,4860,4875,4876,5013,5019,5033,5091,5198,5208,5221,5226,5255,5260,5261,5263,5275,5278,5316,5390,5412,5417,5427,5461,5496,5524,5531,5532,5540,5582,5610,5676,5710,5714,5718,5882,5883,6061,6092,6094,6096,6099,6101,6103,6118,6375,6381,6431,6471,6474,6641,6644,6771,6827,6872,6965,6979,7018,7205,7222,7227,7238,7256,7273,7275,7673,7677,7679,7711,7717,7731,7733,7734,7747,7789,7809,7810,7825,7830,7850,7887,7890,7926,7929,7951,7963,7984,8031,8102,8128,8129,8140,8270,8363,8370,8375,8437,8457,8491,8516,8670,8729,8746,8774,8793,8827,9033,9145,9338,9339,9389,9390,9391,9397,9401,9439,9440,9447,9450,9546,9547,9553,9555,9557,9630,9633,9714,9771,9817,9854,10168,10190,10449,10692,10983,11152,11205,11320,11502,11964,12775,12810,12814,12828,12850,12865,12895,12897,12924,12985,12989,13019,13023,13072,13087,13128,13138,13167,13203,13242,13280,13299,13380,13432,13448,13483,13489,13573,13582,13618,13627,13630,13668,13670,13672,13678,13680,13750,13909,13959,13988,13989,13997,14000,14044,14060,14064,14076,14102,14112,14116,14175,14224,14233,14238,14245,14252,14264,14271,14282,14297,14322,14338,14340,14344,14385,14386,14390,14410,14413,14414,14417,14419,14422,14423,14427,14435,14502,14539,14544,14546,14556,14557,14559,14560,14561,14566,14571,14596,14656,14663,14666,14728,14729,14750,14761,14768,14769,14772,14774,14793,14828,14832,14840,14844,14847,14848,14882,14889,14936,14945,14953,14973,14986,14989,14999,15013,15014,15067,15095,15131,15163,15261,15286,15288,15297,15298,15311,15322,15374,15448,15450,15452,15488,15550,15551,15571,15572,15606,15624,15628,15666,15704,15708,15717,15725,15775,15786,15852,15855,15856,15918,15923,15926,15979,16007,16027,16065,16073,16076,16080,16088,16102,16106,16107,16109,16145,16146,16150,16234,16253,16284,16290,16293,16296,16299,16301,16304,16305,16342,16418,16419,16443,16477,16556,16566,16570,16572,16598,16638,16659,16705,16713,16718,16729,16749,16750,16751,16755,16766,16772,16782,16797,16839,16857,16864,16866,16908,16927,16933,16940,16941,16943,16956,16994,17007,17020,17038,17040,17046,17051,17058,17091,17093,17126,17138,17176,17178,17213,17221,17234,17241,17248,17290,17357,17389,17419,17420,17424,17426,17457,17544,17572,17573,17574,17575,17604,17626,17668,17716,17727,17753,17868,17964,18014,18138,18139,18201,18265,18405,18407,18481,18509,18553,18588,18613,18643,18696,18721,18722,18723,18742,18743,18764,18789,18791,18796,18797,18853,18925,18989,18999,19013,19037,19046,19057,19058,19067,19087,19097,19105,19184,19247,19256,19283,19312,19316,19324,19378,19404,19414,19416,19435,19447,19449,19479,19481,19591,19703,19705,19716,19772,19817,19821,19822,19883,19897,19911,19912,19915,19941,19955,19956,19995,20003,20017,20024,20040,20045,20071,20086,20164,20185,20218,20226,20257,20305,20306,20321,20326,20329,20344,20351,20371,20374,20378,20379,20405,20412,20451,20521,20523,20543,20596,20726,20727,20728,20745,20751,20767,20789,20842,20853,20869,20876,21001,21003,21024,21025,21029,21035,21077,21081,21089,21098,21134,21152,21258,21285,21286,21289,21364,21688,22141,22212,22393,22394,22458,22545,22553,22555,22571,22576,22655,22665,22667,22752,22753,22758,22868,23036]]],["+",[34,33,[[0,2,2,0,2,[[0,2,2,0,2]]],[2,4,4,2,6,[[100,1,1,2,3],[109,1,1,3,4],[113,2,2,4,6]]],[3,5,4,6,10,[[147,4,3,6,9],[151,1,1,9,10]]],[4,1,1,10,11,[[174,1,1,10,11]]],[6,1,1,11,12,[[228,1,1,11,12]]],[8,1,1,12,13,[[257,1,1,12,13]]],[12,1,1,13,14,[[342,1,1,13,14]]],[17,1,1,14,15,[[451,1,1,14,15]]],[18,3,3,15,18,[[618,1,1,15,16],[619,1,1,16,17],[620,1,1,17,18]]],[19,1,1,18,19,[[654,1,1,18,19]]],[20,1,1,19,20,[[660,1,1,19,20]]],[22,3,3,20,23,[[681,1,1,20,21],[688,1,1,21,22],[734,1,1,22,23]]],[23,5,5,23,28,[[746,1,1,23,24],[766,1,1,24,25],[784,2,2,25,27],[788,1,1,27,28]]],[24,1,1,28,29,[[799,1,1,28,29]]],[25,4,4,29,33,[[814,3,3,29,32],[819,1,1,32,33]]]],[19,29,3040,3343,3463,3464,4699,4704,4710,4875,5496,7018,7789,10449,13242,16284,16293,16304,17178,17357,17727,17868,18764,18989,19481,19955,19956,20024,20371,20726,20727,20728,20876]]],["He",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16866]]],["They",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13750]]],["any",[2,2,[[2,1,1,0,1,[[91,1,1,0,1]]],[4,1,1,1,2,[[176,1,1,1,2]]]],[2763,5532]]],["appetite",[2,2,[[19,1,1,0,1,[[650,1,1,0,1]]],[20,1,1,1,2,[[664,1,1,1,2]]]],[17046,17424]]],["beast",[2,1,[[2,2,1,0,1,[[113,2,1,0,1]]]],[3464]]],["body",[8,8,[[2,1,1,0,1,[[110,1,1,0,1]]],[3,6,6,1,7,[[122,1,1,1,2],[125,3,3,2,5],[135,2,2,5,7]]],[36,1,1,7,8,[[910,1,1,7,8]]]],[3356,3829,3971,3972,3975,4300,4302,22868]]],["breath",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13909]]],["creature",[9,8,[[0,7,7,0,7,[[0,2,2,0,2],[1,1,1,2,3],[8,4,4,3,7]]],[2,2,1,7,8,[[100,2,1,7,8]]]],[20,23,49,215,217,220,221,3043]]],["dead",[5,5,[[2,3,3,0,3,[[108,1,1,0,1],[110,1,1,1,2],[111,1,1,2,3]]],[3,2,2,3,5,[[121,1,1,3,4],[122,1,1,4,5]]]],[3309,3346,3373,3794,3834]]],["deadly",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14112]]],["desire",[3,3,[[20,1,1,0,1,[[664,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[17426,22667,22753]]],["fish",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18014]]],["ghost",[2,2,[[17,1,1,0,1,[[446,1,1,0,1]]],[23,1,1,1,2,[[759,1,1,1,2]]]],[13128,19324]]],["he",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15624]]],["heart",[12,12,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[4,1,1,2,3,[[176,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[9,1,1,4,5,[[269,1,1,4,5]]],[19,2,2,5,7,[[650,1,1,5,6],[655,1,1,6,7]]],[24,1,1,7,8,[[799,1,1,7,8]]],[25,3,3,8,11,[[826,2,2,8,10],[828,1,1,10,11]]],[27,1,1,11,12,[[865,1,1,11,12]]]],[2153,3540,5540,7273,8102,17051,17221,20405,21089,21098,21152,22141]]],["heart's",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14044]]],["hearts",[2,2,[[19,1,1,0,1,[[658,1,1,0,1]]],[23,1,1,1,2,[[786,1,1,1,2]]]],[17290,19995]]],["herself",[2,2,[[22,1,1,0,1,[[683,1,1,0,1]]],[23,1,1,1,2,[[747,1,1,1,2]]]],[17753,19013]]],["him",[2,2,[[4,1,1,0,1,[[171,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]]],[5412,16556]]],["himself",[8,8,[[10,1,1,0,1,[[309,1,1,0,1]]],[17,2,2,1,3,[[453,1,1,1,2],[467,1,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]],[29,3,3,4,7,[[880,2,2,4,6],[884,1,1,6,7]]],[31,1,1,7,8,[[892,1,1,7,8]]]],[9391,13280,13630,20226,22393,22394,22458,22576]]],["it",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14435]]],["life",[100,85,[[0,7,6,0,6,[[8,2,2,0,2],[18,2,2,2,4],[31,1,1,4,5],[43,2,1,5,6]]],[1,4,3,6,9,[[53,1,1,6,7],[70,3,2,7,9]]],[2,4,2,9,11,[[106,4,2,9,11]]],[3,1,1,11,12,[[151,1,1,11,12]]],[4,5,3,12,15,[[164,2,1,12,13],[171,2,1,13,14],[176,1,1,14,15]]],[5,1,1,15,16,[[188,1,1,15,16]]],[6,3,3,16,19,[[219,1,1,16,17],[222,1,1,17,18],[228,1,1,18,19]]],[7,1,1,19,20,[[235,1,1,19,20]]],[8,10,8,20,28,[[254,2,2,20,22],[255,1,1,22,23],[257,2,1,23,24],[258,1,1,24,25],[261,2,1,25,26],[263,2,2,26,28]]],[9,6,6,28,34,[[267,1,1,28,29],[270,1,1,29,30],[280,1,1,30,31],[282,1,1,31,32],[284,1,1,32,33],[285,1,1,33,34]]],[10,15,11,34,45,[[291,2,1,34,35],[292,1,1,35,36],[293,1,1,36,37],[309,6,5,37,42],[310,5,3,42,45]]],[11,6,4,45,49,[[313,3,2,45,47],[319,1,1,47,48],[322,2,1,48,49]]],[13,1,1,49,50,[[367,1,1,49,50]]],[16,3,3,50,53,[[432,2,2,50,52],[433,1,1,52,53]]],[17,5,5,53,58,[[437,2,2,53,55],[441,1,1,55,56],[448,1,1,56,57],[466,1,1,57,58]]],[18,2,2,58,60,[[508,1,1,58,59],[515,1,1,59,60]]],[19,6,6,60,66,[[628,1,1,60,61],[633,1,1,61,62],[634,1,1,62,63],[639,1,1,63,64],[640,2,2,64,66]]],[22,2,2,66,68,[[693,1,1,66,67],[721,1,1,67,68]]],[23,14,13,68,81,[[748,1,1,68,69],[755,1,1,69,70],[765,2,2,70,72],[766,1,1,72,73],[778,2,2,73,75],[782,2,2,75,77],[783,1,1,77,78],[788,2,1,78,79],[789,1,1,79,80],[793,1,1,80,81]]],[24,1,1,81,82,[[798,1,1,81,82]]],[25,1,1,82,83,[[833,1,1,82,83]]],[31,2,2,83,85,[[889,1,1,83,84],[892,1,1,84,85]]]],[209,210,474,476,958,1354,1620,2100,2107,3246,3249,4876,5263,5427,5531,5883,6771,6872,7018,7205,7711,7717,7731,7810,7825,7929,7951,7963,8031,8128,8363,8437,8491,8516,8729,8793,8827,9389,9390,9391,9397,9401,9439,9447,9450,9546,9547,9714,9817,11205,12810,12814,12828,12895,12897,12989,13167,13627,14344,14502,16419,16566,16598,16729,16750,16755,17964,18509,19057,19247,19447,19449,19479,19821,19822,19897,19911,19941,20040,20045,20164,20351,21258,22545,22571]]],["lives",[18,15,[[0,1,1,0,1,[[8,1,1,0,1]]],[5,2,2,1,3,[[188,1,1,1,2],[195,1,1,2,3]]],[6,2,2,3,5,[[215,1,1,3,4],[228,1,1,4,5]]],[9,4,2,5,7,[[285,3,1,5,6],[289,1,1,6,7]]],[12,2,1,7,8,[[348,2,1,7,8]]],[16,1,1,8,9,[[434,1,1,8,9]]],[19,1,1,9,10,[[628,1,1,9,10]]],[23,4,4,10,14,[[763,2,2,10,12],[790,1,1,12,13],[792,1,1,13,14]]],[24,1,1,14,15,[[801,1,1,14,15]]]],[210,5882,6061,6641,7018,8516,8670,10692,12850,16418,19414,19416,20071,20086,20451]]],["lust",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[1929,15131]]],["man",[3,3,[[1,1,1,0,1,[[61,1,1,0,1]]],[11,1,1,1,2,[[324,1,1,1,2]]],[22,1,1,2,3,[[727,1,1,2,3]]]],[1832,9854,18643]]],["me",[3,3,[[3,1,1,0,1,[[139,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[10,1,1,2,3,[[310,1,1,2,3]]]],[4426,6979,9440]]],["mind",[11,10,[[0,1,1,0,1,[[22,1,1,0,1]]],[4,2,2,1,3,[[170,1,1,1,2],[180,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[12,1,1,4,5,[[365,1,1,4,5]]],[23,1,1,5,6,[[759,1,1,5,6]]],[25,5,4,6,10,[[824,5,4,6,10]]]],[579,5390,5676,7275,11152,19316,21024,21025,21029,21035]]],["minds",[4,4,[[9,1,1,0,1,[[283,1,1,0,1]]],[11,1,1,1,2,[[321,1,1,1,2]]],[25,2,2,2,4,[[825,1,1,2,3],[837,1,1,3,4]]]],[8457,9771,21081,21364]]],["mortally",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5417]]],["myself",[1,1,[[18,1,1,0,1,[[608,1,1,0,1]]]],[16150]]],["one",[1,1,[[2,1,1,0,1,[[93,1,1,0,1]]]],[2822]]],["own",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16782]]],["person",[13,13,[[3,5,5,0,5,[[121,1,1,0,1],[147,1,1,1,2],[151,3,3,2,5]]],[4,1,1,5,6,[[179,1,1,5,6]]],[5,2,2,6,8,[[206,2,2,6,8]]],[9,1,1,8,9,[[280,1,1,8,9]]],[19,1,1,9,10,[[655,1,1,9,10]]],[23,1,1,10,11,[[787,1,1,10,11]]],[25,2,2,11,13,[[817,1,1,11,12],[834,1,1,12,13]]]],[3798,4683,4856,4860,4875,5610,6375,6381,8370,17213,20003,20767,21286]]],["persons",[13,12,[[0,2,2,0,2,[[13,1,1,0,1],[35,1,1,1,2]]],[1,1,1,2,3,[[65,1,1,2,3]]],[2,1,1,3,4,[[116,1,1,3,4]]],[3,2,2,4,6,[[135,1,1,4,5],[147,1,1,5,6]]],[4,1,1,6,7,[[162,1,1,6,7]]],[8,1,1,7,8,[[257,1,1,7,8]]],[23,3,2,8,10,[[796,3,2,8,10]]],[25,2,2,10,12,[[818,1,1,10,11],[828,1,1,11,12]]]],[357,1046,1963,3572,4307,4704,5208,7809,20305,20306,20842,21134]]],["pleasure",[3,3,[[4,1,1,0,1,[[175,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]],[23,1,1,2,3,[[778,1,1,2,3]]]],[5524,15628,19817]]],["soul",[409,386,[[0,13,13,0,13,[[1,1,1,0,1],[11,1,1,1,2],[16,1,1,2,3],[18,1,1,3,4],[26,4,4,4,8],[33,2,2,8,10],[34,1,1,10,11],[41,1,1,11,12],[48,1,1,12,13]]],[1,4,4,13,17,[[61,2,2,13,15],[79,1,1,15,16],[80,1,1,16,17]]],[2,32,27,17,44,[[93,1,1,17,18],[94,5,5,18,23],[95,1,1,23,24],[96,8,5,24,29],[106,4,4,29,33],[108,1,1,33,34],[109,2,1,34,35],[111,3,3,35,38],[112,3,2,38,40],[115,4,4,40,44]]],[3,24,22,44,66,[[125,1,1,44,45],[127,1,1,45,46],[131,5,4,46,50],[135,3,3,50,53],[137,2,2,53,55],[146,11,10,55,65],[147,1,1,65,66]]],[4,18,16,66,82,[[156,2,2,66,68],[158,1,1,68,69],[162,1,1,69,70],[163,2,2,70,72],[164,4,3,72,75],[165,2,2,75,77],[166,2,1,77,78],[178,1,1,78,79],[182,3,3,79,82]]],[5,1,1,82,83,[[208,1,1,82,83]]],[6,3,3,83,86,[[215,1,1,83,84],[220,1,1,84,85],[226,1,1,85,86]]],[8,19,16,86,102,[[236,3,3,86,89],[237,1,1,89,90],[252,1,1,90,91],[253,4,2,91,93],[255,3,3,93,96],[258,1,1,96,97],[259,1,1,97,98],[260,3,2,98,100],[261,1,1,100,101],[265,1,1,101,102]]],[9,4,4,102,106,[[270,1,1,102,103],[271,1,1,103,104],[277,1,1,104,105],[280,1,1,105,106]]],[10,6,6,106,112,[[291,1,1,106,107],[292,1,1,107,108],[298,1,1,108,109],[301,1,1,109,110],[307,2,2,110,112]]],[11,7,7,112,119,[[314,3,3,112,115],[316,2,2,115,117],[335,2,2,117,119]]],[12,1,1,119,120,[[359,1,1,119,120]]],[13,3,3,120,123,[[372,1,1,120,121],[381,1,1,121,122],[400,1,1,122,123]]],[17,24,23,123,146,[[438,1,1,123,124],[441,1,1,124,125],[442,2,2,125,127],[444,1,1,127,128],[445,2,1,128,129],[447,1,1,129,130],[449,1,1,130,131],[451,1,1,131,132],[454,1,1,132,133],[456,1,1,133,134],[458,1,1,134,135],[459,1,1,135,136],[462,2,2,136,138],[465,2,2,138,140],[466,1,1,140,141],[468,5,5,141,146]]],[18,128,126,146,272,[[480,1,1,146,147],[483,2,2,147,149],[484,2,2,149,151],[488,2,2,151,153],[490,1,1,153,154],[493,1,1,154,155],[494,1,1,155,156],[496,1,1,156,157],[499,2,2,157,159],[500,1,1,159,160],[501,1,1,160,161],[502,3,3,161,164],[503,1,1,164,165],[507,1,1,165,166],[508,2,2,166,168],[510,2,2,168,170],[511,2,2,170,172],[512,7,7,172,179],[517,1,1,179,180],[518,1,1,180,181],[519,6,6,181,187],[520,1,1,187,188],[521,1,1,188,189],[526,3,3,189,192],[531,2,2,192,194],[532,1,1,194,195],[533,2,2,195,197],[534,3,3,197,200],[536,1,1,200,201],[539,2,2,201,203],[540,4,4,203,207],[543,2,2,207,209],[546,3,3,209,212],[547,1,1,212,213],[548,3,3,213,216],[549,1,1,216,217],[551,1,1,217,218],[554,1,1,218,219],[555,1,1,219,220],[561,1,1,220,221],[563,5,4,221,225],[565,2,2,225,227],[566,1,1,227,228],[571,3,3,228,231],[580,3,3,231,234],[581,2,2,234,236],[583,1,1,236,237],[584,5,4,237,241],[586,2,2,241,243],[593,3,3,243,246],[596,8,8,246,254],[597,2,2,254,256],[598,1,1,256,257],[600,1,1,257,258],[601,3,3,258,261],[607,2,2,261,263],[608,1,1,263,264],[615,1,1,264,265],[616,1,1,265,266],[619,1,1,266,267],[620,4,4,267,271],[623,1,1,271,272]]],[19,38,36,272,308,[[629,1,1,272,273],[630,1,1,273,274],[633,2,2,274,276],[635,1,1,276,277],[637,1,1,277,278],[638,2,2,278,280],[640,5,4,280,284],[642,1,1,284,285],[643,2,2,285,287],[645,1,1,287,288],[646,5,5,288,293],[647,1,1,293,294],[648,2,2,294,296],[649,3,3,296,299],[650,1,1,299,300],[651,2,2,300,302],[652,2,2,302,304],[654,2,1,304,305],[656,3,3,305,308]]],[20,4,4,308,312,[[662,1,1,308,309],[664,2,2,309,311],[665,1,1,311,312]]],[21,7,7,312,319,[[671,1,1,312,313],[673,4,4,313,317],[675,1,1,317,318],[676,1,1,318,319]]],[22,24,22,319,341,[[679,1,1,319,320],[681,1,1,320,321],[704,2,2,321,323],[707,2,1,323,324],[710,1,1,324,325],[716,2,2,325,327],[720,1,1,327,328],[722,1,1,328,329],[729,1,1,329,330],[731,3,3,330,333],[733,2,2,333,335],[736,5,4,335,339],[739,1,1,339,340],[744,1,1,340,341]]],[23,23,22,341,363,[[748,3,3,341,344],[749,2,2,344,346],[750,1,1,346,347],[753,1,1,347,348],[756,1,1,348,349],[757,1,1,349,350],[758,1,1,350,351],[762,1,1,351,352],[764,1,1,352,353],[775,4,3,353,356],[776,1,1,356,357],[782,3,3,357,360],[794,1,1,360,361],[795,2,2,361,363]]],[24,7,7,363,370,[[797,2,2,363,365],[798,1,1,365,366],[799,4,4,366,370]]],[25,10,8,370,378,[[804,2,2,370,372],[805,1,1,372,373],[819,4,2,373,375],[825,1,1,375,376],[834,2,2,376,378]]],[27,1,1,378,379,[[870,1,1,378,379]]],[31,2,2,379,381,[[890,2,2,379,381]]],[32,2,2,381,383,[[898,1,1,381,382],[899,1,1,382,383]]],[34,2,2,383,385,[[904,2,2,383,385]]],[37,2,1,385,386,[[921,2,1,385,386]]]],[37,311,411,477,731,746,752,758,983,988,1029,1273,1479,1831,1835,2394,2434,2797,2831,2832,2834,2845,2847,2851,2897,2899,2900,2904,2906,3245,3246,3247,3250,3289,3324,3372,3375,3380,3431,3432,3535,3539,3554,3567,3978,4030,4180,4181,4183,4184,4302,4309,4311,4344,4345,4650,4652,4653,4654,4655,4656,4658,4659,4660,4661,4692,5013,5033,5091,5198,5221,5226,5255,5260,5261,5275,5278,5316,5582,5710,5714,5718,6431,6644,6827,6965,7222,7227,7238,7256,7673,7677,7679,7733,7734,7747,7830,7850,7887,7890,7926,7984,8129,8140,8270,8375,8746,8774,9033,9145,9338,9339,9553,9555,9557,9630,9633,10168,10190,10983,11320,11502,11964,12924,12985,13019,13023,13072,13087,13138,13203,13242,13299,13380,13432,13448,13483,13489,13573,13582,13618,13668,13670,13672,13678,13680,13959,13988,13989,13997,14000,14060,14064,14076,14102,14116,14175,14224,14233,14238,14245,14252,14264,14271,14282,14322,14338,14340,14385,14386,14390,14410,14413,14414,14417,14419,14422,14423,14427,14539,14546,14556,14557,14559,14560,14561,14566,14571,14596,14656,14663,14666,14728,14729,14750,14761,14768,14769,14772,14774,14793,14828,14832,14840,14844,14847,14848,14882,14889,14936,14945,14953,14973,14986,14989,14999,15014,15067,15095,15163,15261,15286,15288,15297,15298,15311,15322,15374,15448,15450,15452,15550,15551,15571,15572,15606,15666,15704,15708,15717,15725,15775,15786,15852,15855,15856,15918,15923,15926,15979,16007,16027,16065,16073,16076,16080,16088,16102,16106,16107,16109,16145,16146,16150,16234,16253,16290,16296,16299,16301,16305,16342,16443,16477,16570,16572,16638,16659,16705,16713,16749,16751,16766,16772,16839,16857,16864,16908,16927,16933,16940,16941,16943,16956,16994,17007,17020,17038,17040,17058,17091,17093,17126,17138,17176,17234,17241,17248,17389,17419,17420,17457,17544,17572,17573,17574,17575,17604,17626,17668,17716,18138,18139,18201,18265,18405,18407,18481,18553,18696,18721,18722,18723,18742,18743,18789,18791,18796,18797,18853,18925,19037,19046,19058,19067,19087,19097,19184,19256,19283,19312,19404,19435,19703,19705,19716,19772,19911,19912,19915,20185,20218,20257,20321,20326,20344,20374,20378,20379,20412,20521,20523,20543,20853,20869,21077,21285,21289,22212,22553,22555,22655,22665,22752,22758,23036]]],["souls",[54,48,[[0,9,7,0,7,[[11,1,1,0,1],[45,8,6,1,7]]],[1,5,4,7,11,[[50,2,1,7,8],[61,1,1,8,9],[79,2,2,9,11]]],[2,6,6,11,17,[[105,2,2,11,13],[106,1,1,13,14],[107,1,1,14,15],[112,2,2,15,17]]],[3,4,4,17,21,[[132,1,1,17,18],[145,1,1,18,19],[146,1,1,19,20],[147,1,1,20,21]]],[5,9,8,21,29,[[196,7,6,21,27],[197,1,1,27,28],[209,1,1,28,29]]],[8,1,1,29,30,[[260,1,1,29,30]]],[18,2,2,30,32,[[549,1,1,30,31],[574,1,1,31,32]]],[19,2,2,32,34,[[638,1,1,32,33],[641,1,1,33,34]]],[23,4,4,34,38,[[746,1,1,34,35],[750,1,1,35,36],[770,1,1,36,37],[788,1,1,37,38]]],[24,1,1,38,39,[[797,1,1,38,39]]],[25,11,9,39,48,[[808,1,1,39,40],[814,5,3,40,43],[815,2,2,43,45],[819,1,1,45,46],[823,2,2,46,48]]]],[303,1401,1404,1408,1411,1412,1413,1537,1820,2397,2398,3230,3232,3246,3280,3429,3434,4232,4615,4657,4714,6092,6094,6096,6099,6101,6103,6118,6474,7890,15013,15488,16718,16797,18999,19105,19591,20017,20329,20596,20726,20727,20728,20745,20751,20853,21001,21003]]],["themselves",[3,3,[[16,1,1,0,1,[[434,1,1,0,1]]],[22,2,2,1,3,[[724,1,1,1,2],[725,1,1,2,3]]]],[12865,18588,18613]]],["thing",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[25,1,1,1,2,[[848,1,1,1,2]]]],[3007,21688]]],["thyself",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12775]]],["will",[4,4,[[4,1,1,0,1,[[173,1,1,0,1]]],[18,2,2,1,3,[[504,1,1,1,2],[518,1,1,2,3]]],[25,1,1,3,4,[[817,1,1,3,4]]]],[5461,14297,14544,20789]]],["yourselves",[5,5,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[156,1,1,1,2]]],[5,1,1,2,3,[[209,1,1,2,3]]],[23,2,2,3,5,[[761,1,1,3,4],[781,1,1,4,5]]]],[3041,5019,6471,19378,19883]]]]},{"k":"H5316","v":[["countries",[1,1,[[5,1,1,0,1,[[203,1,1,0,1]]]],[6286]]]]},{"k":"H5317","v":[["*",[5,5,[[18,1,1,0,1,[[496,1,1,0,1]]],[19,3,3,1,4,[[632,1,1,1,2],[651,1,1,2,3],[654,1,1,3,4]]],[21,1,1,4,5,[[674,1,1,4,5]]]],[14178,16520,17092,17176,17593]]],["+",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14178]]],["honeycomb",[4,4,[[19,3,3,0,3,[[632,1,1,0,1],[651,1,1,1,2],[654,1,1,2,3]]],[21,1,1,3,4,[[674,1,1,3,4]]]],[16520,17092,17176,17593]]]]},{"k":"H5318","v":[["Nephtoah",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[204,1,1,1,2]]]],[6211,6308]]]]},{"k":"H5319","v":[["wrestlings",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[838]]]]},{"k":"H5320","v":[["*",[3,3,[[0,1,1,0,1,[[9,1,1,0,1]]],[6,1,1,1,2,[[214,1,1,1,2]]],[12,1,1,2,3,[[338,1,1,2,3]]]],[247,6605,10263]]],["+",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6605]]],["Naphtuhim",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[247,10263]]]]},{"k":"H5321","v":[["*",[50,47,[[0,4,4,0,4,[[29,1,1,0,1],[34,1,1,1,2],[45,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[3,11,10,5,15,[[117,3,3,5,8],[118,2,1,8,9],[123,1,1,9,10],[126,1,1,10,11],[129,1,1,11,12],[142,2,2,12,14],[150,1,1,14,15]]],[4,4,3,15,18,[[179,1,1,15,16],[185,2,1,16,17],[186,1,1,17,18]]],[5,6,5,18,23,[[205,3,2,18,20],[206,1,1,20,21],[207,2,2,21,23]]],[6,6,6,23,29,[[211,1,1,23,24],[214,2,2,24,26],[215,1,1,26,27],[216,1,1,27,28],[217,1,1,28,29]]],[10,3,3,29,32,[[294,1,1,29,30],[297,1,1,30,31],[305,1,1,31,32]]],[11,1,1,32,33,[[327,1,1,32,33]]],[12,7,7,33,40,[[339,1,1,33,34],[343,2,2,34,36],[344,1,1,36,37],[349,2,2,37,39],[364,1,1,39,40]]],[13,2,2,40,42,[[382,1,1,40,41],[400,1,1,41,42]]],[18,1,1,42,43,[[545,1,1,42,43]]],[22,1,1,43,44,[[687,1,1,43,44]]],[25,3,3,44,47,[[849,3,3,44,47]]]],[838,1036,1410,1494,1536,3619,3646,3647,3687,3928,4015,4089,4537,4539,4844,5598,5833,5841,6353,6360,6379,6387,6413,6542,6605,6609,6641,6689,6717,8859,8948,9269,9954,10308,10516,10530,10548,10754,10760,11128,11513,11939,14927,17830,21705,21706,21736]]],["+",[4,4,[[5,1,1,0,1,[[207,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]],[12,2,2,2,4,[[343,1,1,2,3],[349,1,1,3,4]]]],[6413,6717,10530,10754]]],["Naphtali",[46,43,[[0,4,4,0,4,[[29,1,1,0,1],[34,1,1,1,2],[45,1,1,2,3],[48,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]],[3,11,10,5,15,[[117,3,3,5,8],[118,2,1,8,9],[123,1,1,9,10],[126,1,1,10,11],[129,1,1,11,12],[142,2,2,12,14],[150,1,1,14,15]]],[4,4,3,15,18,[[179,1,1,15,16],[185,2,1,16,17],[186,1,1,17,18]]],[5,5,4,18,22,[[205,3,2,18,20],[206,1,1,20,21],[207,1,1,21,22]]],[6,5,5,22,27,[[211,1,1,22,23],[214,2,2,23,25],[215,1,1,25,26],[216,1,1,26,27]]],[10,3,3,27,30,[[294,1,1,27,28],[297,1,1,28,29],[305,1,1,29,30]]],[11,1,1,30,31,[[327,1,1,30,31]]],[12,5,5,31,36,[[339,1,1,31,32],[343,1,1,32,33],[344,1,1,33,34],[349,1,1,34,35],[364,1,1,35,36]]],[13,2,2,36,38,[[382,1,1,36,37],[400,1,1,37,38]]],[18,1,1,38,39,[[545,1,1,38,39]]],[22,1,1,39,40,[[687,1,1,39,40]]],[25,3,3,40,43,[[849,3,3,40,43]]]],[838,1036,1410,1494,1536,3619,3646,3647,3687,3928,4015,4089,4537,4539,4844,5598,5833,5841,6353,6360,6379,6387,6542,6605,6609,6641,6689,8859,8948,9269,9954,10308,10516,10548,10760,11128,11513,11939,14927,17830,21705,21706,21736]]]]},{"k":"H5322","v":[["*",[4,4,[[0,1,1,0,1,[[39,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]],[4,1,1,2,3,[[166,1,1,2,3]]],[17,1,1,3,4,[[474,1,1,3,4]]]],[1182,3013,5305,13860]]],["blossoms",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1182]]],["hawk",[3,3,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[17,1,1,2,3,[[474,1,1,2,3]]]],[3013,5305,13860]]]]},{"k":"H5323","v":[["flee",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20089]]]]},{"k":"H5324","v":[["*",[75,75,[[0,12,12,0,12,[[17,1,1,0,1],[20,2,2,1,3],[23,2,2,3,5],[27,2,2,5,7],[32,1,1,7,8],[34,2,2,8,10],[36,1,1,10,11],[44,1,1,11,12]]],[1,8,8,12,20,[[54,1,1,12,13],[56,1,1,13,14],[64,1,1,14,15],[66,1,1,15,16],[67,1,1,16,17],[82,2,2,17,19],[83,1,1,19,20]]],[3,6,6,20,26,[[132,1,1,20,21],[138,3,3,21,24],[139,2,2,24,26]]],[4,2,2,26,28,[[181,1,1,26,27],[184,1,1,27,28]]],[5,1,1,28,29,[[192,1,1,28,29]]],[6,3,3,29,32,[[219,1,1,29,30],[228,2,2,30,32]]],[7,2,2,32,34,[[233,2,2,32,34]]],[8,9,9,34,43,[[236,1,1,34,35],[239,1,1,35,36],[248,1,1,36,37],[250,1,1,37,38],[254,1,1,38,39],[257,4,4,39,43]]],[9,3,3,43,46,[[279,1,1,43,44],[284,2,2,44,46]]],[10,7,7,46,53,[[294,3,3,46,49],[295,1,1,49,50],[299,1,1,50,51],[306,1,1,51,52],[312,1,1,52,53]]],[11,1,1,53,54,[[329,1,1,53,54]]],[12,1,1,54,55,[[355,1,1,54,55]]],[13,1,1,55,56,[[374,1,1,55,56]]],[18,7,7,56,63,[[516,1,1,56,57],[518,1,1,57,58],[522,1,1,58,59],[551,1,1,59,60],[555,1,1,60,61],[559,1,1,61,62],[596,1,1,62,63]]],[19,2,2,63,65,[[635,1,1,63,64],[642,1,1,64,65]]],[22,2,2,65,67,[[681,1,1,65,66],[699,1,1,66,67]]],[23,2,2,67,69,[[749,1,1,67,68],[775,1,1,68,69]]],[24,2,2,69,71,[[798,1,1,69,70],[799,1,1,70,71]]],[29,2,2,71,73,[[885,1,1,71,72],[887,1,1,72,73]]],[33,1,1,73,74,[[901,1,1,73,74]]],[37,1,1,74,75,[[921,1,1,74,75]]]],[426,541,542,604,634,785,786,980,1025,1031,1090,1359,1652,1700,1928,1992,2013,2481,2494,2498,4221,4398,4406,4409,4422,4433,5689,5766,5975,6760,7009,7010,7154,7155,7238,7317,7506,7572,7726,7793,7794,7796,7804,8348,8495,8496,8849,8851,8871,8894,9074,9317,9527,9993,10893,11356,14517,14554,14606,15065,15126,15234,15987,16604,16832,17720,18043,19084,19712,20336,20366,22471,22496,22706,23044]]],["+",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[541]]],["Huzzab",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22706]]],["appointed",[1,1,[[8,1,1,0,1,[[254,1,1,0,1]]]],[7726]]],["by",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8348]]],["deputy",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9527]]],["erected",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[980]]],["establish",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16832]]],["laid",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8495]]],["officers",[6,6,[[10,5,5,0,5,[[294,3,3,0,3],[295,1,1,3,4],[299,1,1,4,5]]],[13,1,1,5,6,[[374,1,1,5,6]]]],[8849,8851,8871,8894,9074,11356]]],["pillar",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6760]]],["set",[10,10,[[0,2,2,0,2,[[20,1,1,0,1],[34,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[7,2,2,3,5,[[233,2,2,3,5]]],[8,1,1,5,6,[[257,1,1,5,6]]],[18,1,1,6,7,[[551,1,1,6,7]]],[22,1,1,7,8,[[699,1,1,7,8]]],[23,1,1,8,9,[[749,1,1,8,9]]],[24,1,1,9,10,[[799,1,1,9,10]]]],[542,1031,5766,7154,7155,7796,15065,18043,19084,20366]]],["settest",[1,1,[[18,1,1,0,1,[[518,1,1,0,1]]]],[14554]]],["settled",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15987]]],["sharpen",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7506]]],["stablish",[1,1,[[12,1,1,0,1,[[355,1,1,0,1]]]],[10893]]],["stand",[9,9,[[0,2,2,0,2,[[23,2,2,0,2]]],[1,4,4,2,6,[[56,1,1,2,3],[66,1,1,3,4],[67,1,1,4,5],[82,1,1,5,6]]],[4,1,1,6,7,[[181,1,1,6,7]]],[18,2,2,7,9,[[522,1,1,7,8],[555,1,1,8,9]]]],[604,634,1700,1992,2013,2494,5689,14606,15126]]],["standeth",[2,2,[[18,1,1,0,1,[[559,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]]],[15234,16604]]],["standing",[4,4,[[3,2,2,0,2,[[138,2,2,0,2]]],[8,1,1,2,3,[[257,1,1,2,3]]],[29,1,1,3,4,[[887,1,1,3,4]]]],[4398,4406,7793,22496]]],["state",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14517]]],["still",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23044]]],["stood",[16,16,[[0,3,3,0,3,[[17,1,1,0,1],[27,1,1,1,2],[44,1,1,2,3]]],[1,2,2,3,5,[[54,1,1,3,4],[82,1,1,4,5]]],[3,3,3,5,8,[[132,1,1,5,6],[139,2,2,6,8]]],[6,2,2,8,10,[[228,2,2,8,10]]],[8,4,4,10,14,[[236,1,1,10,11],[239,1,1,11,12],[257,2,2,12,14]]],[24,1,1,14,15,[[798,1,1,14,15]]],[29,1,1,15,16,[[885,1,1,15,16]]]],[426,786,1359,1652,2481,4221,4422,4433,7009,7010,7238,7317,7794,7804,20336,22471]]],["stoodest",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4409]]],["thyself",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2498]]],["up",[9,9,[[0,2,2,0,2,[[27,1,1,0,1],[34,1,1,1,2]]],[5,1,1,2,3,[[192,1,1,2,3]]],[8,1,1,3,4,[[250,1,1,3,4]]],[9,1,1,4,5,[[284,1,1,4,5]]],[10,1,1,5,6,[[306,1,1,5,6]]],[11,1,1,6,7,[[329,1,1,6,7]]],[22,1,1,7,8,[[681,1,1,7,8]]],[23,1,1,8,9,[[775,1,1,8,9]]]],[785,1025,5975,7572,8496,9317,9993,17720,19712]]],["upright",[2,2,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]]],[1090,1928]]]]},{"k":"H5325","v":[["haft",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6590]]]]},{"k":"H5326","v":[["strength",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21799]]]]},{"k":"H5327","v":[["*",[10,9,[[1,2,2,0,2,[[51,1,1,0,1],[70,1,1,1,2]]],[2,1,1,2,3,[[113,1,1,2,3]]],[3,2,1,3,4,[[142,2,1,3,4]]],[4,1,1,4,5,[[177,1,1,4,5]]],[9,1,1,5,6,[[280,1,1,5,6]]],[11,1,1,6,7,[[331,1,1,6,7]]],[22,1,1,7,8,[[715,1,1,7,8]]],[23,1,1,8,9,[[748,1,1,8,9]]]],[1567,2099,3456,4498,5558,8362,10086,18378,19034]]],["ruinous",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10086,18378]]],["strive",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[4,1,1,1,2,[[177,1,1,1,2]]]],[2099,5558]]],["strove",[2,1,[[3,2,1,0,1,[[142,2,1,0,1]]]],[4498]]],["together",[3,3,[[1,1,1,0,1,[[51,1,1,0,1]]],[2,1,1,1,2,[[113,1,1,1,2]]],[9,1,1,2,3,[[280,1,1,2,3]]]],[1567,3456,8362]]],["waste",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19034]]]]},{"k":"H5328","v":[["flower",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[22,1,1,1,2,[[696,1,1,1,2]]]],[13236,18002]]]]},{"k":"H5329","v":[["*",[10,10,[[12,2,2,0,2,[[352,1,1,0,1],[360,1,1,1,2]]],[13,4,4,2,6,[[368,2,2,2,4],[400,2,2,4,6]]],[14,2,2,6,8,[[405,2,2,6,8]]],[23,1,1,8,9,[[752,1,1,8,9]]],[34,1,1,9,10,[[905,1,1,9,10]]]],[10812,10987,11213,11229,11945,11946,12105,12106,19158,22787]]],["+",[2,2,[[12,1,1,0,1,[[360,1,1,0,1]]],[13,1,1,1,2,[[368,1,1,1,2]]]],[10987,11213]]],["excel",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10812]]],["overseers",[3,3,[[13,3,3,0,3,[[368,1,1,0,1],[400,2,2,1,3]]]],[11229,11945,11946]]],["perpetual",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19158]]],["set",[2,2,[[14,2,2,0,2,[[405,2,2,0,2]]]],[12105,12106]]],["singer",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22787]]]]},{"k":"H5330","v":[["preferred",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21908]]]]},{"k":"H5331","v":[["*",[43,42,[[8,1,1,0,1,[[250,1,1,0,1]]],[9,1,1,1,2,[[268,1,1,1,2]]],[12,1,1,2,3,[[366,1,1,2,3]]],[17,6,6,3,9,[[439,1,1,3,4],[449,1,1,4,5],[455,1,1,5,6],[458,1,1,6,7],[469,1,1,7,8],[471,1,1,8,9]]],[18,18,18,9,27,[[486,2,2,9,11],[487,1,1,11,12],[490,1,1,12,13],[493,1,1,13,14],[521,1,1,14,15],[526,2,2,15,17],[529,1,1,17,18],[545,1,1,18,19],[551,4,4,19,23],[554,1,1,23,24],[556,1,1,24,25],[566,1,1,25,26],[580,1,1,26,27]]],[19,1,1,27,28,[[648,1,1,27,28]]],[22,7,6,28,34,[[691,1,1,28,29],[703,1,1,29,30],[706,1,1,30,31],[711,1,1,31,32],[712,2,1,32,33],[735,1,1,33,34]]],[23,3,3,34,37,[[747,1,1,34,35],[759,1,1,35,36],[794,1,1,36,37]]],[24,2,2,37,39,[[799,1,1,37,38],[801,1,1,38,39]]],[29,2,2,39,41,[[879,1,1,39,40],[886,1,1,40,41]]],[34,1,1,41,42,[[903,1,1,41,42]]]],[7589,8075,11175,12950,13201,13333,13426,13719,13743,14027,14039,14052,14075,14103,14594,14657,14667,14715,14916,15049,15051,15058,15067,15101,15190,15372,15558,17012,17926,18126,18192,18299,18313,18781,19007,19333,20205,20372,20462,22375,22488,22735]]],["+",[6,6,[[18,3,3,0,3,[[486,1,1,0,1],[487,1,1,1,2],[526,1,1,2,3]]],[22,2,2,3,5,[[691,1,1,3,4],[735,1,1,4,5]]],[34,1,1,5,6,[[903,1,1,5,6]]]],[14027,14052,14667,17926,18781,22735]]],["Strength",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7589]]],["alway",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14039]]],["always",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15558]]],["constantly",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17012]]],["end",[2,2,[[17,1,1,0,1,[[469,1,1,0,1]]],[23,1,1,1,2,[[747,1,1,1,2]]]],[13719,19007]]],["ever",[24,23,[[9,1,1,0,1,[[268,1,1,0,1]]],[17,5,5,1,6,[[439,1,1,1,2],[449,1,1,2,3],[455,1,1,3,4],[458,1,1,4,5],[471,1,1,5,6]]],[18,11,11,6,17,[[490,1,1,6,7],[521,1,1,7,8],[526,1,1,8,9],[529,1,1,9,10],[545,1,1,10,11],[551,3,3,11,14],[554,1,1,14,15],[556,1,1,15,16],[566,1,1,16,17]]],[22,4,3,17,20,[[706,1,1,17,18],[711,1,1,18,19],[712,2,1,19,20]]],[23,1,1,20,21,[[794,1,1,20,21]]],[24,1,1,21,22,[[801,1,1,21,22]]],[29,1,1,22,23,[[879,1,1,22,23]]]],[8075,12950,13201,13333,13426,13743,14075,14594,14657,14715,14916,15049,15058,15067,15101,15190,15372,18192,18299,18313,20205,20462,22375]]],["evermore",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14103]]],["never",[1,1,[[29,1,1,0,1,[[886,1,1,0,1]]]],[22488]]],["perpetual",[2,2,[[18,1,1,0,1,[[551,1,1,0,1]]],[23,1,1,1,2,[[759,1,1,1,2]]]],[15051,19333]]],["strength",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20372]]],["victory",[2,2,[[12,1,1,0,1,[[366,1,1,0,1]]],[22,1,1,1,2,[[703,1,1,1,2]]]],[11175,18126]]]]},{"k":"H5332","v":[["*",[2,2,[[22,2,2,0,2,[[741,2,2,0,2]]]],[18869,18872]]],["blood",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18869]]],["strength",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18872]]]]},{"k":"H5333","v":[["*",[11,10,[[0,1,1,0,1,[[18,1,1,0,1]]],[8,3,3,1,4,[[245,1,1,1,2],[248,2,2,2,4]]],[9,3,2,4,6,[[274,3,2,4,6]]],[10,1,1,6,7,[[294,1,1,6,7]]],[12,2,2,7,9,[[348,1,1,7,8],[355,1,1,8,9]]],[13,1,1,9,10,[[383,1,1,9,10]]]],[483,7423,7488,7489,8215,8223,8863,10689,10903,11525]]],["garrison",[4,4,[[8,3,3,0,3,[[245,1,1,0,1],[248,2,2,1,3]]],[12,1,1,3,4,[[348,1,1,3,4]]]],[7423,7488,7489,10689]]],["garrisons",[5,4,[[9,3,2,0,2,[[274,3,2,0,2]]],[12,1,1,2,3,[[355,1,1,2,3]]],[13,1,1,3,4,[[383,1,1,3,4]]]],[8215,8223,10903,11525]]],["officer",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8863]]],["pillar",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[483]]]]},{"k":"H5334","v":[["Nezib",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6245]]]]},{"k":"H5335","v":[["Neziah",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12081,12476]]]]},{"k":"H5336","v":[["preserved",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18642]]]]},{"k":"H5337","v":[["*",[212,193,[[0,6,6,0,6,[[30,2,2,0,2],[31,2,2,2,4],[36,2,2,4,6]]],[1,14,12,6,18,[[51,1,1,6,7],[52,2,2,7,9],[54,2,1,9,10],[55,1,1,10,11],[61,2,2,11,13],[67,5,4,13,17],[82,1,1,17,18]]],[3,1,1,18,19,[[151,1,1,18,19]]],[4,4,4,19,23,[[175,2,2,19,21],[177,1,1,21,22],[184,1,1,22,23]]],[5,4,4,23,27,[[188,1,1,23,24],[195,1,1,24,25],[208,1,1,25,26],[210,1,1,26,27]]],[6,6,6,27,33,[[216,1,1,27,28],[218,1,1,28,29],[219,1,1,29,30],[220,1,1,30,31],[221,1,1,31,32],[228,1,1,32,33]]],[8,17,14,33,47,[[239,1,1,33,34],[242,2,2,34,36],[245,1,1,36,37],[247,3,3,37,40],[249,1,1,40,41],[252,3,2,41,43],[261,1,1,43,44],[265,5,3,44,47]]],[9,9,9,47,56,[[278,1,1,47,48],[280,2,2,48,50],[285,1,1,50,51],[286,1,1,51,52],[288,3,3,52,55],[289,1,1,55,56]]],[11,13,10,56,66,[[329,1,1,56,57],[330,9,6,57,63],[331,2,2,63,65],[332,1,1,65,66]]],[12,2,2,66,68,[[348,1,1,66,67],[353,1,1,67,68]]],[13,10,7,68,75,[[386,1,1,68,69],[391,1,1,69,70],[398,8,5,70,75]]],[14,1,1,75,76,[[410,1,1,75,76]]],[15,1,1,76,77,[[421,1,1,76,77]]],[17,3,3,77,80,[[440,2,2,77,79],[445,1,1,79,80]]],[18,44,43,80,123,[[484,2,2,80,82],[495,2,2,82,84],[499,2,2,84,86],[502,1,1,86,87],[508,2,2,87,89],[510,2,2,89,91],[511,3,3,91,94],[512,1,1,94,95],[516,1,1,95,96],[517,1,1,96,97],[527,1,1,97,98],[528,1,1,98,99],[531,1,1,99,100],[533,1,1,100,101],[536,2,2,101,103],[546,2,1,103,104],[547,1,1,104,105],[548,2,2,105,107],[549,1,1,107,108],[556,1,1,108,109],[559,1,1,109,110],[563,1,1,110,111],[568,1,1,111,112],[574,1,1,112,113],[583,1,1,113,114],[584,1,1,114,115],[586,1,1,115,116],[596,2,2,116,118],[597,1,1,118,119],[619,1,1,119,120],[620,1,1,120,121],[621,2,2,121,123]]],[19,12,12,123,135,[[629,2,2,123,125],[633,2,2,125,127],[637,1,1,127,128],[638,2,2,128,130],[639,1,1,130,131],[641,1,1,131,132],[646,1,1,132,133],[650,1,1,133,134],[651,1,1,134,135]]],[22,22,19,135,154,[[683,1,1,135,136],[697,1,1,136,137],[698,1,1,137,138],[709,1,1,138,139],[714,8,5,139,144],[715,2,2,144,146],[716,1,1,146,147],[720,1,1,147,148],[721,1,1,148,149],[722,2,2,149,151],[725,1,1,151,152],[728,1,1,152,153],[735,1,1,153,154]]],[23,10,10,154,164,[[745,2,2,154,156],[751,1,1,156,157],[759,2,2,157,159],[764,1,1,159,160],[765,1,1,160,161],[766,1,1,161,162],[783,1,1,162,163],[786,1,1,163,164]]],[25,17,14,164,178,[[804,2,2,164,166],[808,1,1,166,167],[814,2,2,167,169],[815,7,4,169,173],[834,2,2,173,175],[835,3,3,175,178]]],[26,2,2,178,180,[[857,2,2,178,180]]],[27,3,3,180,183,[[863,2,2,180,182],[866,1,1,182,183]]],[29,3,2,183,185,[[881,2,1,183,184],[882,1,1,184,185]]],[31,1,1,185,186,[[892,1,1,185,186]]],[32,3,3,186,189,[[896,1,1,186,187],[897,2,2,187,189]]],[34,1,1,189,190,[[904,1,1,189,190]]],[35,1,1,190,191,[[906,1,1,190,191]]],[37,2,2,191,193,[[913,1,1,191,192],[921,1,1,192,193]]]],[882,889,939,958,1104,1105,1573,1587,1601,1655,1661,1843,1852,2003,2007,2008,2009,2479,4870,5514,5515,5558,5797,5882,6063,6457,6486,6663,6753,6771,6826,6855,7021,7305,7355,7366,7436,7470,7471,7481,7556,7653,7655,7929,7986,7996,8000,8293,8362,8372,8520,8560,8603,8620,8651,8665,10022,10053,10054,10056,10057,10058,10059,10072,10073,10104,10687,10855,11612,11719,11886,11888,11889,11890,11892,12232,12539,12955,12970,13093,13996,13997,14135,14166,14212,14224,14271,14333,14346,14382,14385,14392,14405,14407,14420,14520,14538,14690,14705,14732,14768,14791,14792,14949,14972,14978,14987,15012,15194,15237,15297,15398,15488,15694,15705,15776,15941,16068,16076,16292,16302,16312,16316,16445,16449,16543,16545,16658,16692,16694,16725,16797,16944,17058,17090,17768,18024,18035,18255,18344,18345,18348,18349,18350,18363,18364,18396,18502,18518,18550,18553,18613,18664,18778,18954,18965,19129,19335,19336,19435,19452,19457,19940,19986,20521,20523,20596,20729,20731,20745,20747,20749,20751,21289,21292,21323,21325,21340,21965,21968,22114,22115,22166,22407,22421,22574,22630,22639,22641,22757,22805,22914,23034]]],["+",[41,35,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,4,4,1,5,[[52,1,1,1,2],[54,1,1,2,3],[61,1,1,3,4],[67,1,1,4,5]]],[3,1,1,5,6,[[151,1,1,5,6]]],[4,1,1,6,7,[[177,1,1,6,7]]],[5,2,2,7,9,[[188,1,1,7,8],[208,1,1,8,9]]],[6,1,1,9,10,[[218,1,1,9,10]]],[8,4,3,10,13,[[249,1,1,10,11],[265,3,2,11,13]]],[9,3,3,13,16,[[280,2,2,13,15],[286,1,1,15,16]]],[11,7,4,16,20,[[330,7,4,16,20]]],[13,3,3,20,23,[[391,1,1,20,21],[398,2,2,21,23]]],[22,8,6,23,29,[[714,6,4,23,27],[722,1,1,27,28],[725,1,1,28,29]]],[23,2,2,29,31,[[751,1,1,29,30],[764,1,1,30,31]]],[25,4,4,31,35,[[804,2,2,31,33],[814,2,2,33,35]]]],[882,1601,1655,1852,2009,4870,5558,5882,6457,6753,7556,7986,7996,8362,8372,8560,10054,10057,10058,10059,11719,11888,11889,18345,18348,18349,18350,18553,18613,19129,19435,20521,20523,20729,20731]]],["Deliver",[11,11,[[0,1,1,0,1,[[31,1,1,0,1]]],[18,9,9,1,10,[[499,1,1,1,2],[516,1,1,2,3],[528,1,1,3,4],[536,2,2,4,6],[546,1,1,6,7],[548,1,1,7,8],[597,1,1,8,9],[620,1,1,9,10]]],[22,1,1,10,11,[[722,1,1,10,11]]]],[939,14224,14520,14705,14791,14792,14949,14978,16076,16302,18550]]],["all",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1655]]],["defended",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8665]]],["deliver",[86,84,[[1,1,1,0,1,[[52,1,1,0,1]]],[4,2,2,1,3,[[175,1,1,1,2],[184,1,1,2,3]]],[6,1,1,3,4,[[220,1,1,3,4]]],[8,7,7,4,11,[[239,1,1,4,5],[242,2,2,5,7],[247,2,2,7,9],[252,1,1,9,10],[261,1,1,10,11]]],[11,4,4,11,15,[[329,1,1,11,12],[330,2,2,12,14],[332,1,1,14,15]]],[12,1,1,15,16,[[353,1,1,15,16]]],[13,5,4,16,20,[[398,5,4,16,20]]],[15,1,1,20,21,[[421,1,1,20,21]]],[17,3,3,21,24,[[440,2,2,21,23],[445,1,1,23,24]]],[18,20,20,24,44,[[484,2,2,24,26],[499,1,1,26,27],[502,1,1,27,28],[508,2,2,28,30],[510,1,1,30,31],[517,1,1,31,32],[527,1,1,32,33],[547,1,1,33,34],[548,1,1,34,35],[549,1,1,35,36],[556,1,1,36,37],[568,1,1,37,38],[583,1,1,38,39],[586,1,1,39,40],[596,1,1,40,41],[619,1,1,41,42],[621,2,2,42,44]]],[19,7,7,44,51,[[629,2,2,44,46],[638,1,1,46,47],[639,1,1,47,48],[646,1,1,48,49],[650,1,1,49,50],[651,1,1,50,51]]],[22,9,9,51,60,[[683,1,1,51,52],[697,1,1,52,53],[709,1,1,53,54],[714,2,2,54,56],[716,1,1,56,57],[721,1,1,57,58],[728,1,1,58,59],[735,1,1,59,60]]],[23,8,8,60,68,[[745,2,2,60,62],[759,2,2,62,64],[765,1,1,64,65],[766,1,1,65,66],[783,1,1,66,67],[786,1,1,67,68]]],[25,9,8,68,76,[[808,1,1,68,69],[815,5,4,69,73],[834,1,1,73,74],[835,2,2,74,76]]],[26,2,2,76,78,[[857,2,2,76,78]]],[27,1,1,78,79,[[863,1,1,78,79]]],[31,1,1,79,80,[[892,1,1,79,80]]],[32,2,2,80,82,[[897,2,2,80,82]]],[35,1,1,82,83,[[906,1,1,82,83]]],[37,1,1,83,84,[[921,1,1,83,84]]]],[1587,5514,5797,6826,7305,7355,7366,7470,7481,7655,7929,10022,10053,10056,10104,10855,11886,11889,11890,11892,12539,12955,12970,13093,13996,13997,14212,14271,14333,14346,14385,14538,14690,14972,14987,15012,15194,15398,15694,15776,16068,16292,16312,16316,16445,16449,16694,16725,16944,17058,17090,17768,18024,18255,18344,18348,18396,18518,18664,18778,18954,18965,19335,19336,19452,19457,19940,19986,20596,20745,20747,20749,20751,21292,21323,21325,21965,21968,22115,22574,22639,22641,22805,23034]]],["delivered",[41,41,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,6,6,1,7,[[51,1,1,1,2],[61,1,1,2,3],[67,4,4,3,7]]],[5,2,2,7,9,[[195,1,1,7,8],[210,1,1,8,9]]],[6,2,2,9,11,[[216,1,1,9,10],[219,1,1,10,11]]],[8,4,4,11,15,[[245,1,1,11,12],[247,1,1,12,13],[252,2,2,13,15]]],[9,4,4,15,19,[[278,1,1,15,16],[288,3,3,16,19]]],[11,2,2,19,21,[[331,2,2,19,21]]],[12,1,1,21,22,[[348,1,1,21,22]]],[13,1,1,22,23,[[398,1,1,22,23]]],[14,1,1,23,24,[[410,1,1,23,24]]],[18,9,9,24,33,[[495,2,2,24,26],[510,1,1,26,27],[511,1,1,27,28],[531,1,1,28,29],[533,1,1,29,30],[546,1,1,30,31],[563,1,1,31,32],[584,1,1,32,33]]],[22,3,3,33,36,[[698,1,1,33,34],[715,2,2,34,36]]],[25,3,3,36,39,[[815,1,1,36,37],[834,1,1,37,38],[835,1,1,38,39]]],[32,1,1,39,40,[[896,1,1,39,40]]],[34,1,1,40,41,[[904,1,1,40,41]]]],[1104,1573,1843,2003,2007,2008,2009,6063,6486,6663,6771,7436,7471,7653,7655,8293,8603,8620,8651,10072,10073,10687,11892,12232,14135,14166,14382,14392,14732,14768,14949,15297,15705,18035,18363,18364,20747,21289,21340,22630,22757]]],["deliverer",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7021]]],["deliverest",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14420]]],["delivereth",[7,7,[[18,3,3,0,3,[[511,2,2,0,2],[574,1,1,2,3]]],[19,3,3,3,6,[[637,1,1,3,4],[638,1,1,4,5],[641,1,1,5,6]]],[22,1,1,6,7,[[720,1,1,6,7]]]],[14405,14407,15488,16658,16692,16797,18502]]],["escaped",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5515]]],["off",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11612]]],["out",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22407]]],["plucked",[2,2,[[29,1,1,0,1,[[882,1,1,0,1]]],[37,1,1,1,2,[[913,1,1,1,2]]]],[22421,22914]]],["preserved",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[958]]],["recover",[2,2,[[6,1,1,0,1,[[221,1,1,0,1]]],[27,1,1,1,2,[[863,1,1,1,2]]]],[6855,22114]]],["recovered",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[8000]]],["rescue",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22166]]],["rescued",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7996]]],["rid",[3,3,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]],[18,1,1,2,3,[[559,1,1,2,3]]]],[1105,1661,15237]]],["saved",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8520]]],["take",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15941]]],["taken",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[889]]],["taketh",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22407]]],["themselves",[2,2,[[1,1,1,0,1,[[82,1,1,0,1]]],[25,1,1,1,2,[[815,1,1,1,2]]]],[2479,20749]]],["thyself",[2,2,[[19,2,2,0,2,[[633,2,2,0,2]]]],[16543,16545]]]]},{"k":"H5338","v":[["*",[3,3,[[26,3,3,0,3,[[852,1,1,0,1],[855,2,2,1,3]]]],[21836,21919,21932]]],["deliver",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[855,1,1,1,2]]]],[21836,21919]]],["rescueth",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21932]]]]},{"k":"H5339","v":[["flowers",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17566]]]]},{"k":"H5340","v":[["sparkled",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20471]]]]},{"k":"H5341","v":[["*",[62,61,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,2,2,1,3,[[184,1,1,1,2],[185,1,1,2,3]]],[11,2,2,3,5,[[329,1,1,3,4],[330,1,1,4,5]]],[17,2,2,5,7,[[442,1,1,5,6],[462,1,1,6,7]]],[18,24,24,7,31,[[489,1,1,7,8],[502,2,2,8,10],[508,1,1,10,11],[509,1,1,11,12],[511,1,1,12,13],[517,1,1,13,14],[538,1,1,14,15],[541,1,1,15,16],[555,1,1,16,17],[582,1,1,17,18],[596,10,10,18,28],[617,2,2,28,30],[618,1,1,30,31]]],[19,19,19,31,50,[[629,2,2,31,33],[630,2,2,33,35],[631,3,3,35,38],[632,1,1,38,39],[633,1,1,39,40],[634,1,1,40,41],[640,2,2,41,43],[643,1,1,43,44],[647,1,1,44,45],[649,1,1,45,46],[650,1,1,46,47],[651,1,1,47,48],[654,1,1,48,49],[655,1,1,49,50]]],[22,8,7,50,57,[[679,1,1,50,51],[704,1,1,51,52],[705,2,1,52,53],[720,1,1,53,54],[726,1,1,54,55],[727,1,1,55,56],[743,1,1,56,57]]],[23,2,2,57,59,[[748,1,1,57,58],[775,1,1,58,59]]],[25,1,1,59,60,[[807,1,1,59,60]]],[33,1,1,60,61,[[901,1,1,60,61]]]],[2503,5768,5819,9992,10032,13028,13499,14073,14261,14272,14354,14362,14401,14536,14826,14851,15120,15651,15900,15920,15931,15932,15954,15967,15998,16013,16027,16043,16264,16267,16279,16441,16444,16456,16476,16496,16503,16513,16519,16560,16585,16750,16753,16857,16982,17027,17070,17091,17187,17203,17662,18133,18154,18486,18620,18644,18901,19043,19697,20575,22700]]],["+",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16279]]],["Keep",[2,2,[[18,1,1,0,1,[[511,1,1,0,1]]],[19,1,1,1,2,[[631,1,1,1,2]]]],[14401,16513]]],["Keeping",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2503]]],["besieged",[2,2,[[22,1,1,0,1,[[679,1,1,0,1]]],[25,1,1,1,2,[[807,1,1,1,2]]]],[17662,20575]]],["keep",[23,22,[[18,11,11,0,11,[[502,1,1,0,1],[555,1,1,1,2],[582,1,1,2,3],[596,8,8,3,11]]],[19,7,7,11,18,[[629,1,1,11,12],[630,2,2,12,14],[631,2,2,14,16],[632,1,1,16,17],[633,1,1,17,18]]],[22,4,3,18,21,[[704,1,1,18,19],[705,2,1,19,20],[720,1,1,20,21]]],[33,1,1,21,22,[[901,1,1,21,22]]]],[14261,15120,15651,15900,15931,15932,15967,15998,16013,16027,16043,16444,16456,16476,16496,16503,16519,16560,18133,18154,18486,22700]]],["keeper",[1,1,[[17,1,1,0,1,[[462,1,1,0,1]]]],[13499]]],["keepeth",[7,7,[[19,7,7,0,7,[[629,1,1,0,1],[640,2,2,1,3],[643,1,1,3,4],[651,1,1,4,5],[654,1,1,5,6],[655,1,1,6,7]]]],[16441,16750,16753,16857,17091,17187,17203]]],["kept",[4,4,[[4,2,2,0,2,[[184,1,1,0,1],[185,1,1,1,2]]],[18,2,2,2,4,[[596,2,2,2,4]]]],[5768,5819,15920,15954]]],["monuments",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18901]]],["observe",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17070]]],["preserve",[11,11,[[18,8,8,0,8,[[489,1,1,0,1],[502,1,1,1,2],[509,1,1,2,3],[517,1,1,3,4],[538,1,1,4,5],[541,1,1,5,6],[617,2,2,6,8]]],[19,2,2,8,10,[[647,1,1,8,9],[649,1,1,9,10]]],[22,1,1,10,11,[[727,1,1,10,11]]]],[14073,14272,14362,14536,14826,14851,16264,16267,16982,17027,18644]]],["preserver",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13028]]],["preserveth",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14354]]],["subtil",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16585]]],["things",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18620]]],["watchers",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19043]]],["watchmen",[3,3,[[11,2,2,0,2,[[329,1,1,0,1],[330,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]]],[9992,10032,19697]]]]},{"k":"H5342","v":[["*",[4,4,[[22,3,3,0,3,[[689,1,1,0,1],[692,1,1,1,2],[738,1,1,2,3]]],[26,1,1,3,4,[[860,1,1,3,4]]]],[17885,17947,18842,22043]]],["+",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22043]]],["Branch",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17885]]],["branch",[2,2,[[22,2,2,0,2,[[692,1,1,0,1],[738,1,1,1,2]]]],[17947,18842]]]]},{"k":"H5343","v":[["pure",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21942]]]]},{"k":"H5344","v":[["*",[22,21,[[0,1,1,0,1,[[29,1,1,0,1]]],[2,3,2,1,3,[[113,3,2,1,3]]],[3,1,1,3,4,[[117,1,1,3,4]]],[11,2,2,4,6,[[324,1,1,4,5],[330,1,1,5,6]]],[12,2,2,6,8,[[349,1,1,6,7],[353,1,1,7,8]]],[13,2,2,8,10,[[394,1,1,8,9],[397,1,1,9,10]]],[14,1,1,10,11,[[410,1,1,10,11]]],[17,4,4,11,15,[[438,1,1,11,12],[440,1,1,12,13],[475,1,1,13,14],[476,1,1,14,15]]],[19,1,1,15,16,[[651,1,1,15,16]]],[22,2,2,16,18,[[714,1,1,16,17],[740,1,1,17,18]]],[29,1,1,18,19,[[884,1,1,18,19]]],[34,1,1,19,20,[[905,1,1,19,20]]],[36,1,1,20,21,[[909,1,1,20,21]]]],[858,3457,3462,3621,9859,10045,10751,10861,11779,11873,12221,12912,12954,13888,13890,17103,18336,18856,22451,22782,22846]]],["+",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[2,1,1,1,2,[[113,1,1,1,2]]]],[858,3457]]],["blasphemeth",[2,1,[[2,2,1,0,1,[[113,2,1,0,1]]]],[3462]]],["bore",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13890]]],["bored",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9859]]],["curse",[2,2,[[17,1,1,0,1,[[438,1,1,0,1]]],[19,1,1,1,2,[[651,1,1,1,2]]]],[12912,17103]]],["cursed",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12954]]],["expressed",[6,6,[[3,1,1,0,1,[[117,1,1,0,1]]],[12,2,2,1,3,[[349,1,1,1,2],[353,1,1,2,3]]],[13,2,2,3,5,[[394,1,1,3,4],[397,1,1,4,5]]],[14,1,1,5,6,[[410,1,1,5,6]]]],[3621,10751,10861,11779,11873,12221]]],["holes",[1,1,[[36,1,1,0,1,[[909,1,1,0,1]]]],[22846]]],["name",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18856]]],["named",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22451]]],["pierce",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]]],[10045,18336]]],["pierceth",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13888]]],["through",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22782]]]]},{"k":"H5345","v":[["pipes",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21170]]]]},{"k":"H5346","v":[["Nekeb",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6354]]]]},{"k":"H5347","v":[["*",[22,22,[[0,6,6,0,6,[[0,1,1,0,1],[4,1,1,1,2],[5,1,1,2,3],[6,3,3,3,6]]],[2,12,12,6,18,[[92,2,2,6,8],[93,2,2,8,10],[94,1,1,10,11],[101,2,2,11,13],[104,1,1,13,14],[116,4,4,14,18]]],[3,2,2,18,20,[[121,1,1,18,19],[147,1,1,19,20]]],[4,1,1,20,21,[[156,1,1,20,21]]],[23,1,1,21,22,[[775,1,1,21,22]]]],[26,107,156,162,168,175,2779,2784,2823,2827,2836,3049,3051,3201,3574,3575,3576,3577,3795,4679,5020,19713]]],["+",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4679]]],["child",[1,1,[[2,1,1,0,1,[[101,1,1,0,1]]]],[3049]]],["female",[18,18,[[0,6,6,0,6,[[0,1,1,0,1],[4,1,1,1,2],[5,1,1,2,3],[6,3,3,3,6]]],[2,10,10,6,16,[[92,2,2,6,8],[93,2,2,8,10],[94,1,1,10,11],[101,1,1,11,12],[116,4,4,12,16]]],[3,1,1,16,17,[[121,1,1,16,17]]],[4,1,1,17,18,[[156,1,1,17,18]]]],[26,107,156,162,168,175,2779,2784,2823,2827,2836,3051,3574,3575,3576,3577,3795,5020]]],["woman",[2,2,[[2,1,1,0,1,[[104,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[3201,19713]]]]},{"k":"H5348","v":[["speckled",[9,7,[[0,9,7,0,7,[[29,5,4,0,4],[30,4,3,4,7]]]],[862,863,865,869,881,883,885]]]]},{"k":"H5349","v":[["*",[2,2,[[11,1,1,0,1,[[315,1,1,0,1]]],[29,1,1,1,2,[[879,1,1,1,2]]]],[9580,22365]]],["herdmen",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22365]]],["sheepmaster",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9580]]]]},{"k":"H5350","v":[["*",[3,3,[[5,2,2,0,2,[[195,2,2,0,2]]],[10,1,1,2,3,[[304,1,1,2,3]]]],[6042,6049,9221]]],["cracknels",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9221]]],["mouldy",[2,2,[[5,2,2,0,2,[[195,2,2,0,2]]]],[6042,6049]]]]},{"k":"H5351","v":[["studs",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17548]]]]},{"k":"H5352","v":[["*",[44,33,[[0,2,2,0,2,[[23,2,2,0,2]]],[1,4,3,2,5,[[69,1,1,2,3],[70,1,1,3,4],[83,2,1,4,5]]],[3,5,4,5,9,[[121,3,3,5,8],[130,2,1,8,9]]],[4,1,1,9,10,[[157,1,1,9,10]]],[6,1,1,10,11,[[225,1,1,10,11]]],[8,1,1,11,12,[[261,1,1,11,12]]],[10,1,1,12,13,[[292,1,1,12,13]]],[17,2,2,13,15,[[444,1,1,13,14],[445,1,1,14,15]]],[18,2,2,15,17,[[496,2,2,15,17]]],[19,7,7,17,24,[[633,1,1,17,18],[638,1,1,18,19],[643,1,1,19,20],[644,1,1,20,21],[646,2,2,21,23],[655,1,1,23,24]]],[22,1,1,24,25,[[681,1,1,24,25]]],[23,11,5,25,30,[[746,1,1,25,26],[769,3,1,26,27],[774,2,1,27,28],[790,2,1,28,29],[793,3,1,29,30]]],[28,2,1,30,31,[[878,2,1,30,31]]],[33,2,1,31,32,[[900,2,1,31,32]]],[37,2,1,32,33,[[915,2,1,32,33]]]],[599,632,2058,2096,2503,3811,3820,3823,4126,5064,6932,7914,8779,13079,13100,14180,14181,16569,16709,16845,16878,16930,16934,17216,17733,19000,19563,19678,20073,20139,22364,22687,22939]]],["+",[15,9,[[1,3,2,0,2,[[69,1,1,0,1],[83,2,1,1,2]]],[3,2,1,2,3,[[130,2,1,2,3]]],[4,1,1,3,4,[[157,1,1,3,4]]],[10,1,1,4,5,[[292,1,1,4,5]]],[23,6,3,5,8,[[769,2,1,5,6],[774,2,1,6,7],[793,2,1,7,8]]],[33,2,1,8,9,[[900,2,1,8,9]]]],[2058,2503,4126,5064,8779,19563,19678,20139,22687]]],["acquit",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13100]]],["blameless",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6932]]],["cleanse",[2,2,[[18,1,1,0,1,[[496,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]]],[14180,22364]]],["cleansed",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22364]]],["clear",[2,2,[[0,2,2,0,2,[[23,2,2,0,2]]]],[599,632]]],["desolate",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17733]]],["free",[2,2,[[3,2,2,0,2,[[121,2,2,0,2]]]],[3811,3820]]],["guiltless",[2,2,[[3,1,1,0,1,[[121,1,1,0,1]]],[8,1,1,1,2,[[261,1,1,1,2]]]],[3823,7914]]],["innocent",[5,5,[[17,1,1,0,1,[[444,1,1,0,1]]],[18,1,1,1,2,[[496,1,1,1,2]]],[19,2,2,2,4,[[633,1,1,2,3],[655,1,1,3,4]]],[23,1,1,4,5,[[746,1,1,4,5]]]],[13079,14181,16569,17216,19000]]],["off",[2,1,[[37,2,1,0,1,[[915,2,1,0,1]]]],[22939]]],["quit",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2096]]],["unpunished",[8,8,[[19,5,5,0,5,[[638,1,1,0,1],[643,1,1,1,2],[644,1,1,2,3],[646,2,2,3,5]]],[23,3,3,5,8,[[769,1,1,5,6],[790,1,1,6,7],[793,1,1,7,8]]]],[16709,16845,16878,16930,16934,19563,20073,20139]]],["wholly",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20073]]]]},{"k":"H5353","v":[["Nekoda",[4,4,[[14,2,2,0,2,[[404,2,2,0,2]]],[15,2,2,2,4,[[419,2,2,2,4]]]],[12075,12087,12470,12482]]]]},{"k":"H5354","v":[["weary",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13087]]]]},{"k":"H5355","v":[["*",[43,42,[[0,2,2,0,2,[[23,1,1,0,1],[43,1,1,1,2]]],[1,2,2,2,4,[[70,1,1,2,3],[72,1,1,3,4]]],[3,1,1,4,5,[[148,1,1,4,5]]],[4,6,6,5,11,[[171,2,2,5,7],[173,2,2,7,9],[176,1,1,9,10],[179,1,1,10,11]]],[5,3,3,11,14,[[188,3,3,11,14]]],[8,1,1,14,15,[[254,1,1,14,15]]],[9,2,2,15,17,[[269,1,1,15,16],[280,1,1,16,17]]],[10,1,1,17,18,[[305,1,1,17,18]]],[11,3,2,18,20,[[333,1,1,18,19],[336,2,1,19,20]]],[17,6,6,20,26,[[439,1,1,20,21],[444,1,1,21,22],[452,1,1,22,23],[457,2,2,23,25],[462,1,1,25,26]]],[18,5,5,26,31,[[487,1,1,26,27],[492,1,1,27,28],[501,1,1,28,29],[571,1,1,29,30],[583,1,1,30,31]]],[19,2,2,31,33,[[628,1,1,31,32],[633,1,1,32,33]]],[22,1,1,33,34,[[737,1,1,33,34]]],[23,6,6,34,40,[[746,1,1,34,35],[751,1,1,35,36],[763,1,1,36,37],[766,2,2,37,39],[770,1,1,39,40]]],[28,1,1,40,41,[[878,1,1,40,41]]],[31,1,1,41,42,[[889,1,1,41,42]]]],[632,1334,2105,2151,4740,5416,5419,5455,5456,5530,5610,5886,5888,5889,7711,8109,8365,9271,10135,10206,12937,13074,13268,13408,13419,13498,14049,14092,14245,15452,15689,16411,16557,18807,18999,19125,19411,19457,19471,19587,22362,22545]]],["blameless",[2,2,[[0,1,1,0,1,[[43,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]]],[1334,5886]]],["clean",[1,1,[[18,1,1,0,1,[[501,1,1,0,1]]]],[14245]]],["clear",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[632]]],["exempted",[1,1,[[10,1,1,0,1,[[305,1,1,0,1]]]],[9271]]],["free",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5530]]],["guiltless",[4,4,[[3,1,1,0,1,[[148,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]],[9,2,2,2,4,[[269,1,1,2,3],[280,1,1,3,4]]]],[4740,5888,8109,8365]]],["innocent",[29,28,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,5,5,1,6,[[171,2,2,1,3],[173,2,2,3,5],[179,1,1,5,6]]],[8,1,1,6,7,[[254,1,1,6,7]]],[11,3,2,7,9,[[333,1,1,7,8],[336,2,1,8,9]]],[17,6,6,9,15,[[439,1,1,9,10],[444,1,1,10,11],[452,1,1,11,12],[457,2,2,12,14],[462,1,1,14,15]]],[18,4,4,15,19,[[487,1,1,15,16],[492,1,1,16,17],[571,1,1,17,18],[583,1,1,18,19]]],[19,2,2,19,21,[[628,1,1,19,20],[633,1,1,20,21]]],[22,1,1,21,22,[[737,1,1,21,22]]],[23,4,4,22,26,[[751,1,1,22,23],[766,2,2,23,25],[770,1,1,25,26]]],[28,1,1,26,27,[[878,1,1,26,27]]],[31,1,1,27,28,[[889,1,1,27,28]]]],[2151,5416,5419,5455,5456,5610,7711,10135,10206,12937,13074,13268,13408,13419,13498,14049,14092,15452,15689,16411,16557,18807,19125,19457,19471,19587,22362,22545]]],["innocents",[2,2,[[23,2,2,0,2,[[746,1,1,0,1],[763,1,1,1,2]]]],[18999,19411]]],["quit",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]]],[2105,5889]]]]},{"k":"H5356","v":[["*",[5,5,[[0,1,1,0,1,[[19,1,1,0,1]]],[18,2,2,1,3,[[503,1,1,1,2],[550,1,1,2,3]]],[27,1,1,3,4,[[869,1,1,3,4]]],[29,1,1,4,5,[[882,1,1,4,5]]]],[500,14279,15033,22199,22416]]],["cleanness",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22416]]],["innocency",[4,4,[[0,1,1,0,1,[[19,1,1,0,1]]],[18,2,2,1,3,[[503,1,1,1,2],[550,1,1,2,3]]],[27,1,1,3,4,[[869,1,1,3,4]]]],[500,14279,15033,22199]]]]},{"k":"H5357","v":[["*",[3,3,[[22,1,1,0,1,[[685,1,1,0,1]]],[23,2,2,1,3,[[757,1,1,1,2],[760,1,1,2,3]]]],[17801,19270,19352]]],["+",[1,1,[[23,1,1,0,1,[[760,1,1,0,1]]]],[19352]]],["hole",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19270]]],["holes",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17801]]]]},{"k":"H5358","v":[["*",[35,31,[[0,2,2,0,2,[[3,2,2,0,2]]],[1,3,2,2,4,[[70,3,2,2,4]]],[2,2,2,4,6,[[108,1,1,4,5],[115,1,1,5,6]]],[3,1,1,6,7,[[147,1,1,6,7]]],[4,1,1,7,8,[[184,1,1,7,8]]],[5,1,1,8,9,[[196,1,1,8,9]]],[6,2,2,9,11,[[225,1,1,9,10],[226,1,1,10,11]]],[8,3,3,11,14,[[249,1,1,11,12],[253,1,1,12,13],[259,1,1,13,14]]],[11,1,1,14,15,[[321,1,1,14,15]]],[16,1,1,15,16,[[433,1,1,15,16]]],[18,3,3,16,19,[[485,1,1,16,17],[521,1,1,17,18],[576,1,1,18,19]]],[22,1,1,19,20,[[679,1,1,19,20]]],[23,7,7,20,27,[[749,2,2,20,22],[753,1,1,22,23],[759,1,1,23,24],[790,1,1,24,25],[794,1,1,25,26],[795,1,1,26,27]]],[25,4,3,27,30,[[825,1,1,27,28],[826,3,2,28,30]]],[33,3,1,30,31,[[900,3,1,30,31]]]],[94,103,2097,2098,3299,3549,4666,5801,6077,6936,6977,7532,7701,7851,9763,12830,14014,14587,15507,17678,19067,19087,19184,19330,20055,20181,20248,21064,21095,21098,22686]]],["+",[5,4,[[1,2,1,0,1,[[70,2,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]],[6,1,1,2,3,[[226,1,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]]],[2097,4666,6977,20248]]],["avenge",[7,7,[[2,2,2,0,2,[[108,1,1,0,1],[115,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[8,1,1,3,4,[[259,1,1,3,4]]],[11,1,1,4,5,[[321,1,1,4,5]]],[22,1,1,5,6,[[679,1,1,5,6]]],[23,1,1,6,7,[[790,1,1,6,7]]]],[3299,3549,5801,7851,9763,17678,20055]]],["avenged",[8,8,[[0,1,1,0,1,[[3,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[6,1,1,2,3,[[225,1,1,2,3]]],[8,2,2,3,5,[[249,1,1,3,4],[253,1,1,4,5]]],[23,3,3,5,8,[[749,2,2,5,7],[753,1,1,7,8]]]],[103,6077,6936,7532,7701,19067,19087,19184]]],["avenger",[2,2,[[18,2,2,0,2,[[485,1,1,0,1],[521,1,1,1,2]]]],[14014,14587]]],["himself",[1,1,[[25,1,1,0,1,[[826,1,1,0,1]]]],[21095]]],["punished",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2098]]],["revenge",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19330]]],["revengeth",[2,1,[[33,2,1,0,1,[[900,2,1,0,1]]]],[22686]]],["take",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21064]]],["taken",[2,2,[[0,1,1,0,1,[[3,1,1,0,1]]],[25,1,1,1,2,[[826,1,1,1,2]]]],[94,21098]]],["taking",[1,1,[[25,1,1,0,1,[[826,1,1,0,1]]]],[21095]]],["themselves",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12830]]],["vengeance",[3,3,[[18,1,1,0,1,[[576,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]],[33,1,1,2,3,[[900,1,1,2,3]]]],[15507,20181,22686]]]]},{"k":"H5359","v":[["*",[17,17,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,3,3,1,4,[[184,3,3,1,4]]],[6,1,1,4,5,[[226,1,1,4,5]]],[18,1,1,5,6,[[535,1,1,5,6]]],[19,1,1,6,7,[[633,1,1,6,7]]],[22,6,6,7,13,[[712,1,1,7,8],[713,1,1,8,9],[725,1,1,9,10],[737,1,1,10,11],[739,1,1,11,12],[741,1,1,12,13]]],[25,3,3,13,16,[[825,1,1,13,14],[826,2,2,14,16]]],[32,1,1,16,17,[[897,1,1,16,17]]]],[3549,5793,5799,5801,6977,14789,16574,18311,18324,18602,18817,18845,18870,21064,21095,21098,22648]]],["+",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6977]]],["quarrel",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3549]]],["vengeance",[15,15,[[4,3,3,0,3,[[184,3,3,0,3]]],[18,1,1,3,4,[[535,1,1,3,4]]],[19,1,1,4,5,[[633,1,1,4,5]]],[22,6,6,5,11,[[712,1,1,5,6],[713,1,1,6,7],[725,1,1,7,8],[737,1,1,8,9],[739,1,1,9,10],[741,1,1,10,11]]],[25,3,3,11,14,[[825,1,1,11,12],[826,2,2,12,14]]],[32,1,1,14,15,[[897,1,1,14,15]]]],[5793,5799,5801,14789,16574,18311,18324,18602,18817,18845,18870,21064,21095,21098,22648]]]]},{"k":"H5360","v":[["*",[27,22,[[3,2,2,0,2,[[147,2,2,0,2]]],[6,1,1,2,3,[[221,1,1,2,3]]],[9,2,2,3,5,[[270,1,1,3,4],[288,1,1,4,5]]],[18,5,4,5,9,[[495,1,1,5,6],[556,1,1,6,7],[571,2,1,7,8],[626,1,1,8,9]]],[23,11,9,9,18,[[755,1,1,9,10],[764,2,2,10,12],[790,1,1,12,13],[794,3,2,13,15],[795,4,3,15,18]]],[24,1,1,18,19,[[799,1,1,18,19]]],[25,5,3,19,22,[[826,5,3,19,22]]]],[4666,4667,6865,8128,8650,14165,15195,15432,16392,19246,19432,19434,20055,20181,20194,20218,20223,20248,20414,21097,21098,21100]]],["+",[6,6,[[3,2,2,0,2,[[147,2,2,0,2]]],[9,2,2,2,4,[[270,1,1,2,3],[288,1,1,3,4]]],[18,1,1,4,5,[[495,1,1,4,5]]],[23,1,1,5,6,[[795,1,1,5,6]]]],[4666,4667,8128,8650,14165,20248]]],["revenge",[2,2,[[23,1,1,0,1,[[764,1,1,0,1]]],[25,1,1,1,2,[[826,1,1,1,2]]]],[19432,21098]]],["revenging",[1,1,[[18,1,1,0,1,[[556,1,1,0,1]]]],[15195]]],["vengeance",[18,13,[[6,1,1,0,1,[[221,1,1,0,1]]],[18,3,2,1,3,[[571,2,1,1,2],[626,1,1,2,3]]],[23,9,7,3,10,[[755,1,1,3,4],[764,1,1,4,5],[790,1,1,5,6],[794,3,2,6,8],[795,3,2,8,10]]],[24,1,1,10,11,[[799,1,1,10,11]]],[25,4,2,11,13,[[826,4,2,11,13]]]],[6865,15432,16392,19246,19434,20055,20181,20194,20218,20223,20414,21097,21100]]]]},{"k":"H5361","v":[["*",[3,3,[[25,3,3,0,3,[[824,3,3,0,3]]]],[21025,21029,21035]]],["+",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21035]]],["alienated",[2,2,[[25,2,2,0,2,[[824,2,2,0,2]]]],[21025,21029]]]]},{"k":"H5362","v":[["*",[19,19,[[2,1,1,0,1,[[108,1,1,0,1]]],[5,2,2,1,3,[[192,2,2,1,3]]],[10,1,1,3,4,[[297,1,1,3,4]]],[11,2,2,4,6,[[318,1,1,4,5],[323,1,1,5,6]]],[13,2,2,6,8,[[370,1,1,6,7],[389,1,1,7,8]]],[17,3,3,8,11,[[436,1,1,8,9],[454,2,2,9,11]]],[18,4,4,11,15,[[494,1,1,11,12],[499,1,1,12,13],[525,1,1,13,14],[565,1,1,14,15]]],[22,3,3,15,18,[[688,1,1,15,16],[693,1,1,16,17],[707,1,1,17,18]]],[24,1,1,18,19,[[799,1,1,18,19]]]],[3308,5952,5960,8958,9688,9837,11249,11663,12874,13303,13323,14112,14220,14646,15325,17884,17968,18194,20359]]],["+",[9,9,[[5,1,1,0,1,[[192,1,1,0,1]]],[10,1,1,1,2,[[297,1,1,1,2]]],[11,2,2,2,4,[[318,1,1,2,3],[323,1,1,3,4]]],[13,2,2,4,6,[[370,1,1,4,5],[389,1,1,5,6]]],[17,1,1,6,7,[[454,1,1,6,7]]],[18,2,2,7,9,[[494,1,1,7,8],[565,1,1,8,9]]]],[5952,8958,9688,9837,11249,11663,13303,14112,15325]]],["about",[3,3,[[5,1,1,0,1,[[192,1,1,0,1]]],[17,1,1,1,2,[[436,1,1,1,2]]],[18,1,1,2,3,[[525,1,1,2,3]]]],[5960,12874,14646]]],["compassed",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20359]]],["destroy",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13323]]],["down",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17884]]],["inclosed",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14220]]],["kill",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18194]]],["round",[2,2,[[2,1,1,0,1,[[108,1,1,0,1]]],[22,1,1,1,2,[[693,1,1,1,2]]]],[3308,17968]]]]},{"k":"H5363","v":[["shaking",[2,2,[[22,2,2,0,2,[[695,1,1,0,1],[702,1,1,1,2]]]],[17989,18108]]]]},{"k":"H5364","v":[["rent",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17731]]]]},{"k":"H5365","v":[["*",[6,6,[[3,1,1,0,1,[[132,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[8,1,1,2,3,[[246,1,1,2,3]]],[17,1,1,3,4,[[465,1,1,3,4]]],[19,1,1,4,5,[[657,1,1,4,5]]],[22,1,1,5,6,[[729,1,1,5,6]]]],[4208,6970,7447,13574,17268,18674]]],["+",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6970]]],["digged",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18674]]],["out",[3,3,[[3,1,1,0,1,[[132,1,1,0,1]]],[8,1,1,1,2,[[246,1,1,1,2]]],[19,1,1,2,3,[[657,1,1,2,3]]]],[4208,7447,17268]]],["pierced",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13574]]]]},{"k":"H5366","v":[["*",[2,2,[[1,1,1,0,1,[[82,1,1,0,1]]],[22,1,1,1,2,[[680,1,1,1,2]]]],[2495,17706]]],["clefts",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17706]]],["clift",[1,1,[[1,1,1,0,1,[[82,1,1,0,1]]]],[2495]]]]},{"k":"H5367","v":[["*",[4,4,[[4,1,1,0,1,[[164,1,1,0,1]]],[8,1,1,1,2,[[263,1,1,1,2]]],[18,2,2,2,4,[[515,1,1,2,3],[586,1,1,3,4]]]],[5270,7951,14502,15766]]],["catch",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15766]]],["snare",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7951]]],["snared",[1,1,[[4,1,1,0,1,[[164,1,1,0,1]]]],[5270]]],["snares",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14502]]]]},{"k":"H5368","v":[["smote",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21880]]]]},{"k":"H5369","v":[["Ner",[16,16,[[8,4,4,0,4,[[249,2,2,0,2],[261,2,2,2,4]]],[9,6,6,4,10,[[268,2,2,4,6],[269,4,4,6,10]]],[10,2,2,10,12,[[292,2,2,10,12]]],[12,4,4,12,16,[[345,1,1,12,13],[346,2,2,13,15],[363,1,1,15,16]]]],[7558,7559,7910,7919,8057,8061,8104,8106,8109,8118,8775,8802,10608,10651,10654,11105]]]]},{"k":"H5370","v":[["Nergal",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10013]]]]},{"k":"H5371","v":[["Nergalsharezer",[3,2,[[23,3,2,0,2,[[783,3,2,0,2]]]],[19926,19936]]]]},{"k":"H5372","v":[["*",[4,4,[[19,4,4,0,4,[[643,1,1,0,1],[645,1,1,1,2],[653,2,2,2,4]]]],[16868,16909,17161,17163]]],["talebearer",[3,3,[[19,3,3,0,3,[[645,1,1,0,1],[653,2,2,1,3]]]],[16909,17161,17163]]],["whisperer",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16868]]]]},{"k":"H5373","v":[["*",[3,3,[[21,3,3,0,3,[[671,1,1,0,1],[674,2,2,1,3]]]],[17549,17595,17596]]],["Spikenard",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17596]]],["spikenard",[2,2,[[21,2,2,0,2,[[671,1,1,0,1],[674,1,1,1,2]]]],[17549,17595]]]]},{"k":"H5374","v":[["Neriah",[10,10,[[23,10,10,0,10,[[776,2,2,0,2],[780,4,4,2,6],[787,2,2,6,8],[789,1,1,8,9],[795,1,1,9,10]]]],[19743,19747,19846,19850,19856,19874,20000,20003,20041,20271]]]]},{"k":"H5375","v":[["*",[653,610,[[0,46,42,0,42,[[3,1,1,0,1],[6,1,1,1,2],[12,3,3,2,5],[17,3,3,5,8],[18,1,1,8,9],[20,2,2,9,11],[21,2,2,11,13],[23,2,2,13,15],[26,2,2,15,17],[28,2,2,17,19],[30,3,3,19,22],[31,1,1,22,23],[32,2,2,23,25],[35,1,1,25,26],[36,2,1,26,27],[38,1,1,27,28],[39,3,3,28,31],[41,1,1,31,32],[42,2,2,32,34],[43,1,1,34,35],[44,4,3,35,38],[45,2,1,38,39],[46,1,1,39,40],[49,3,2,40,42]]],[1,33,32,42,74,[[55,1,1,42,43],[59,3,3,43,46],[61,1,1,46,47],[63,1,1,47,48],[67,1,1,48,49],[68,1,1,49,50],[69,2,1,50,51],[72,2,2,51,53],[74,3,3,53,56],[76,1,1,56,57],[77,5,5,57,62],[79,2,2,62,64],[81,1,1,64,65],[83,1,1,65,66],[84,2,2,66,68],[85,1,1,68,69],[86,4,4,69,73],[87,1,1,73,74]]],[2,22,22,74,96,[[94,2,2,74,76],[96,1,1,76,77],[98,1,1,77,78],[99,3,3,78,81],[100,3,3,81,84],[104,1,1,84,85],[105,1,1,85,86],[106,1,1,86,87],[108,3,3,87,90],[109,3,3,90,93],[111,2,2,93,95],[113,1,1,95,96]]],[3,47,44,96,140,[[117,3,3,96,99],[119,1,1,99,100],[120,4,4,100,104],[121,1,1,104,105],[122,1,1,105,106],[123,1,1,106,107],[125,1,1,107,108],[126,2,2,108,110],[127,5,3,110,113],[129,1,1,113,114],[130,6,6,114,120],[132,2,2,120,122],[134,5,4,122,126],[139,3,3,126,129],[140,7,7,129,136],[142,1,1,136,137],[146,1,1,137,138],[147,2,2,138,140]]],[4,20,18,140,158,[[153,4,3,140,143],[155,1,1,143,144],[156,1,1,144,145],[157,2,1,145,146],[162,2,2,146,148],[164,1,1,148,149],[166,1,1,149,150],[176,1,1,150,151],[180,2,2,151,153],[183,2,2,153,155],[184,2,2,155,157],[185,1,1,157,158]]],[5,25,21,158,179,[[189,9,7,158,165],[190,6,6,165,171],[191,1,1,171,172],[192,7,5,172,177],[194,1,1,177,178],[210,1,1,178,179]]],[6,10,10,179,189,[[212,1,1,179,180],[213,1,1,180,181],[218,1,1,181,182],[219,3,3,182,185],[226,1,1,185,186],[229,1,1,186,187],[231,2,2,187,189]]],[7,4,4,189,193,[[232,3,3,189,192],[233,1,1,192,193]]],[8,32,27,193,220,[[237,1,1,193,194],[239,1,1,194,195],[241,1,1,195,196],[245,3,1,196,197],[246,1,1,197,198],[249,10,8,198,206],[250,1,1,206,207],[251,1,1,207,208],[252,4,4,208,212],[257,1,1,212,213],[259,1,1,213,214],[260,2,2,214,216],[265,1,1,216,217],[266,4,3,217,220]]],[9,23,23,220,243,[[268,2,2,220,222],[269,1,1,222,223],[270,1,1,223,224],[271,2,2,224,226],[272,3,3,226,229],[274,2,2,229,231],[279,2,2,231,233],[280,1,1,233,234],[281,1,1,234,235],[283,1,1,235,236],[284,3,3,236,239],[285,1,1,239,240],[286,1,1,240,241],[289,2,2,241,243]]],[10,12,12,243,255,[[292,1,1,243,244],[295,2,2,244,246],[298,1,1,246,247],[299,1,1,247,248],[300,3,3,248,251],[303,1,1,251,252],[304,1,1,252,253],[305,1,1,253,254],[308,1,1,254,255]]],[11,23,21,255,276,[[314,1,1,255,256],[315,1,1,256,257],[316,4,4,257,261],[317,2,2,261,263],[319,2,1,263,264],[321,4,3,264,267],[326,2,2,267,269],[330,1,1,269,270],[331,2,2,270,272],[332,1,1,272,273],[335,1,1,273,274],[337,2,2,274,276]]],[12,24,22,276,298,[[342,1,1,276,277],[347,5,4,277,281],[348,2,2,281,283],[349,1,1,283,284],[351,1,1,284,285],[352,5,4,285,289],[353,1,1,289,290],[355,3,3,290,293],[358,2,2,293,295],[360,2,2,295,297],[364,1,1,297,298]]],[13,16,15,298,313,[[371,1,1,298,299],[372,1,1,299,300],[375,2,2,300,302],[377,1,1,302,303],[378,1,1,303,304],[379,1,1,304,305],[380,3,2,305,307],[382,1,1,307,308],[390,2,2,308,310],[391,2,2,310,312],[398,1,1,312,313]]],[14,5,5,313,318,[[403,1,1,313,314],[410,1,1,314,315],[411,2,2,315,317],[412,1,1,317,318]]],[15,4,4,318,322,[[414,1,1,318,319],[416,1,1,319,320],[421,1,1,320,321],[425,1,1,321,322]]],[16,7,7,322,329,[[427,3,3,322,325],[428,1,1,325,326],[430,2,2,326,328],[434,1,1,328,329]]],[17,28,27,329,356,[[437,2,1,329,330],[441,1,1,330,331],[442,2,2,331,333],[445,1,1,333,334],[446,1,1,334,335],[448,3,3,335,338],[456,2,2,338,340],[457,2,2,340,342],[459,1,1,342,343],[462,2,2,343,345],[464,1,1,345,346],[465,1,1,346,347],[466,1,1,347,348],[467,2,2,348,350],[469,2,2,350,352],[471,1,1,352,353],[475,1,1,353,354],[477,2,2,354,356]]],[18,48,43,356,399,[[481,1,1,356,357],[484,1,1,357,358],[487,1,1,358,359],[492,1,1,359,360],[493,1,1,360,361],[501,6,4,361,365],[502,2,2,365,367],[505,2,2,367,369],[509,2,2,369,371],[527,1,1,371,372],[532,1,1,372,373],[540,1,1,373,374],[546,1,1,374,375],[549,1,1,375,376],[558,1,1,376,377],[559,1,1,377,378],[560,1,1,378,379],[562,1,1,379,380],[563,1,1,380,381],[565,1,1,381,382],[566,1,1,382,383],[568,1,1,383,384],[570,3,1,384,385],[571,1,1,385,386],[573,1,1,386,387],[576,1,1,387,388],[579,1,1,388,389],[583,1,1,389,390],[593,1,1,390,391],[596,1,1,391,392],[598,1,1,392,393],[600,1,1,393,394],[603,2,1,394,395],[611,1,1,395,396],[616,2,2,396,398],[620,1,1,398,399]]],[19,9,9,399,408,[[633,1,1,399,400],[636,1,1,400,401],[645,2,2,401,403],[646,2,2,403,405],[657,3,3,405,408]]],[20,2,2,408,410,[[663,2,2,408,410]]],[21,1,1,410,411,[[675,1,1,410,411]]],[22,59,58,411,469,[[679,1,1,411,412],[680,6,6,412,418],[681,2,2,418,420],[683,1,1,420,421],[684,1,1,421,422],[686,1,1,422,423],[687,1,1,423,424],[688,2,2,424,426],[689,1,1,426,427],[691,1,1,427,428],[692,1,1,428,429],[693,1,1,429,430],[696,1,1,430,431],[700,1,1,431,432],[702,1,1,432,433],[704,1,1,433,434],[708,2,2,434,436],[711,2,2,436,438],[715,2,2,438,440],[716,1,1,440,441],[717,1,1,441,442],[718,4,4,442,446],[719,1,1,446,447],[720,2,2,447,449],[723,1,1,449,450],[724,3,3,450,453],[727,3,2,453,455],[729,1,1,455,456],[730,3,3,456,459],[731,2,2,459,461],[735,3,3,461,464],[738,2,2,464,466],[741,1,1,466,467],[742,1,1,467,468],[744,1,1,468,469]]],[23,26,25,469,494,[[747,1,1,469,470],[748,1,1,470,471],[750,1,1,471,472],[751,2,2,472,474],[753,2,2,474,476],[754,3,2,476,478],[755,1,1,478,479],[757,1,1,479,480],[759,1,1,480,481],[761,2,2,481,483],[766,1,1,483,484],[775,1,1,484,485],[788,2,2,485,487],[793,1,1,487,488],[794,1,1,488,489],[795,3,3,489,492],[796,2,2,492,494]]],[24,5,5,494,499,[[798,1,1,494,495],[799,2,2,495,497],[800,1,1,497,498],[801,1,1,498,499]]],[25,76,68,499,567,[[802,5,3,499,502],[804,2,2,502,504],[805,3,3,504,507],[809,3,2,507,509],[811,3,3,509,512],[812,3,3,512,515],[813,3,3,515,518],[815,1,1,518,519],[817,4,3,519,522],[818,4,4,522,526],[819,6,5,526,531],[820,1,1,531,532],[821,8,7,532,539],[824,3,3,539,542],[827,1,1,542,543],[828,2,2,543,545],[829,1,1,545,546],[830,2,2,546,548],[833,4,4,548,552],[834,1,1,552,553],[835,1,1,553,554],[837,5,4,554,558],[839,1,1,558,559],[840,2,2,559,561],[844,1,1,561,562],[845,4,3,562,565],[846,1,1,565,566],[848,1,1,566,567]]],[26,5,5,567,572,[[850,1,1,567,568],[857,1,1,568,569],[859,1,1,569,570],[860,2,2,570,572]]],[27,6,5,572,577,[[862,2,1,572,573],[865,1,1,573,574],[866,1,1,574,575],[874,1,1,575,576],[875,1,1,576,577]]],[28,1,1,577,578,[[877,1,1,577,578]]],[29,4,4,578,582,[[882,1,1,578,579],[883,2,2,579,581],[884,1,1,581,582]]],[31,2,2,582,584,[[889,2,2,582,584]]],[32,7,7,584,591,[[894,2,2,584,586],[896,2,2,586,588],[898,1,1,588,589],[899,2,2,589,591]]],[33,1,1,591,592,[[900,1,1,591,592]]],[34,3,3,592,595,[[903,1,1,592,593],[904,1,1,593,594],[905,1,1,594,595]]],[36,2,2,595,597,[[910,2,2,595,597]]],[37,11,9,597,606,[[911,3,2,597,599],[912,1,1,599,600],[915,5,4,600,604],[916,2,2,604,606]]],[38,4,4,606,610,[[925,2,2,606,608],[926,2,2,608,610]]]],[92,176,324,328,332,426,448,450,478,529,531,551,560,654,655,730,765,796,806,883,885,890,948,961,965,1047,1108,1156,1185,1191,1192,1278,1319,1324,1325,1377,1381,1385,1391,1450,1519,1523,1663,1790,1794,1796,1850,1899,2021,2030,2058,2145,2165,2209,2222,2223,2279,2305,2322,2323,2331,2336,2386,2394,2470,2503,2552,2557,2568,2609,2618,2619,2631,2640,2831,2847,2897,2975,2981,2982,2994,3022,3025,3037,3178,3223,3251,3289,3296,3298,3335,3337,3338,3378,3385,3461,3606,3653,3654,3732,3745,3758,3765,3768,3823,3849,3859,3978,4005,4009,4036,4038,4041,4098,4109,4126,4127,4138,4141,4142,4197,4209,4258,4279,4280,4289,4423,4434,4440,4448,4449,4453,4461,4466,4467,4469,4491,4663,4690,4713,4901,4904,4923,5002,5023,5064,5194,5203,5266,5314,5540,5660,5661,5737,5753,5769,5798,5813,5896,5899,5901,5906,5907,5908,5910,5913,5918,5919,5920,5926,5928,5947,5953,5955,5957,5961,5962,6035,6495,6549,6586,6747,6761,6802,6808,6980,7041,7104,7125,7131,7136,7141,7167,7268,7301,7344,7421,7449,7509,7511,7514,7515,7520,7521,7522,7525,7585,7616,7625,7638,7652,7659,7805,7855,7889,7896,7982,8013,8014,8015,8071,8081,8113,8124,8144,8153,8160,8161,8170,8211,8215,8351,8353,8370,8413,8462,8493,8502,8506,8553,8575,8669,8690,8796,8887,8893,8988,9062,9081,9090,9101,9213,9246,9271,9353,9567,9590,9622,9623,9639,9640,9648,9670,9715,9781,9782,9788,9906,9916,10038,10065,10083,10115,10169,10235,10249,10446,10663,10664,10668,10671,10691,10712,10744,10776,10793,10806,10817,10818,10849,10892,10896,10901,10950,10958,11005,11009,11132,11272,11304,11365,11385,11435,11448,11474,11483,11488,11515,11680,11688,11723,11732,11898,12020,12237,12239,12249,12296,12308,12376,12526,12696,12733,12739,12741,12748,12781,12790,12837,12903,12980,13021,13029,13101,13123,13161,13163,13167,13358,13367,13397,13415,13446,13482,13502,13533,13579,13624,13649,13650,13702,13714,13739,13884,13930,13931,13971,14001,14053,14090,14096,14245,14246,14248,14250,14252,14269,14301,14308,14356,14360,14684,14744,14843,14942,15003,15219,15235,15243,15273,15288,15323,15376,15407,15429,15433,15473,15507,15531,15677,15861,15946,16082,16099,16121,16174,16248,16259,16301,16575,16650,16906,16915,16943,16944,17264,17272,17283,17412,17416,17605,17668,17687,17689,17694,17697,17698,17699,17710,17714,17765,17770,17811,17844,17874,17876,17896,17908,17932,17967,18000,18058,18109,18141,18223,18242,18289,18303,18356,18375,18411,18418,18424,18431,18444,18446,18467,18482,18491,18581,18589,18590,18593,18654,18658,18679,18704,18707,18709,18715,18723,18772,18778,18780,18825,18827,18875,18891,18934,19004,19033,19090,19135,19148,19185,19193,19206,19220,19240,19286,19330,19378,19384,19481,19710,20024,20032,20156,20168,20221,20224,20239,20293,20307,20351,20381,20395,20436,20455,20483,20484,20485,20514,20516,20533,20534,20535,20607,20609,20640,20649,20652,20656,20677,20679,20686,20687,20692,20741,20814,20816,20820,20833,20834,20839,20848,20855,20861,20864,20868,20869,20882,20900,20901,20910,20918,20923,20926,20937,21034,21042,21056,21117,21123,21153,21169,21198,21202,21250,21272,21273,21278,21305,21342,21365,21366,21367,21374,21438,21458,21474,21577,21609,21611,21612,21641,21693,21753,21964,22020,22048,22050,22100,22141,22166,22267,22284,22333,22412,22424,22449,22460,22543,22546,22597,22599,22621,22623,22664,22673,22682,22689,22734,22754,22778,22867,22874,22896,22899,22900,22937,22941,22943,22945,22948,22960,23097,23098,23106,23112]]],["+",[172,161,[[0,21,21,0,21,[[3,1,1,0,1],[6,1,1,1,2],[12,1,1,2,3],[18,1,1,3,4],[20,2,2,4,6],[21,2,2,6,8],[23,1,1,8,9],[28,2,2,9,11],[30,1,1,11,12],[31,1,1,12,13],[32,1,1,13,14],[38,1,1,14,15],[39,3,3,15,18],[41,1,1,18,19],[44,1,1,19,20],[45,1,1,20,21]]],[1,17,16,21,37,[[55,1,1,21,22],[59,2,2,22,24],[61,1,1,24,25],[63,1,1,25,26],[69,2,1,26,27],[74,1,1,27,28],[77,4,4,28,32],[79,1,1,32,33],[84,1,1,33,34],[86,3,3,34,37]]],[2,5,5,37,42,[[98,1,1,37,38],[99,2,2,38,40],[100,2,2,40,42]]],[3,18,17,42,59,[[117,1,1,42,43],[119,1,1,43,44],[120,2,2,44,46],[121,1,1,46,47],[127,2,2,47,49],[130,4,4,49,53],[134,2,1,53,54],[140,1,1,54,55],[142,1,1,55,56],[146,1,1,56,57],[147,2,2,57,59]]],[4,6,5,59,64,[[153,1,1,59,60],[157,2,1,60,61],[162,1,1,61,62],[176,1,1,62,63],[183,1,1,63,64]]],[5,4,3,64,67,[[189,2,1,64,65],[192,2,2,65,67]]],[6,2,2,67,69,[[212,1,1,67,68],[219,1,1,68,69]]],[8,16,13,69,82,[[241,1,1,69,70],[246,1,1,70,71],[249,7,5,71,76],[250,1,1,76,77],[251,1,1,77,78],[265,1,1,78,79],[266,4,3,79,82]]],[9,8,8,82,90,[[268,1,1,82,83],[269,1,1,83,84],[279,1,1,84,85],[281,1,1,85,86],[284,2,2,86,88],[285,1,1,88,89],[289,1,1,89,90]]],[10,5,5,90,95,[[292,1,1,90,91],[298,1,1,91,92],[299,1,1,92,93],[303,1,1,93,94],[305,1,1,94,95]]],[11,6,6,95,101,[[316,1,1,95,96],[317,1,1,96,97],[321,1,1,97,98],[335,1,1,98,99],[337,2,2,99,101]]],[12,12,10,101,111,[[347,5,4,101,105],[348,1,1,105,106],[352,4,3,106,109],[358,1,1,109,110],[360,1,1,110,111]]],[13,2,2,111,113,[[371,1,1,111,112],[382,1,1,112,113]]],[14,1,1,113,114,[[410,1,1,113,114]]],[15,2,2,114,116,[[414,1,1,114,115],[421,1,1,115,116]]],[16,2,2,116,118,[[427,1,1,116,117],[434,1,1,117,118]]],[17,3,3,118,121,[[437,1,1,118,119],[457,1,1,119,120],[477,1,1,120,121]]],[18,2,2,121,123,[[493,1,1,121,122],[600,1,1,122,123]]],[19,1,1,123,124,[[633,1,1,123,124]]],[20,1,1,124,125,[[663,1,1,124,125]]],[21,1,1,125,126,[[675,1,1,125,126]]],[22,4,4,126,130,[[681,1,1,126,127],[687,1,1,127,128],[723,1,1,128,129],[735,1,1,129,130]]],[23,6,5,130,135,[[754,2,1,130,131],[766,1,1,131,132],[788,1,1,132,133],[796,2,2,133,135]]],[25,16,16,135,151,[[805,2,2,135,137],[809,1,1,137,138],[811,2,2,138,140],[812,2,2,140,142],[817,1,1,142,143],[818,1,1,143,144],[820,1,1,144,145],[821,3,3,145,148],[837,1,1,148,149],[840,1,1,149,150],[848,1,1,150,151]]],[26,2,2,151,153,[[850,1,1,151,152],[859,1,1,152,153]]],[27,2,1,153,154,[[862,2,1,153,154]]],[29,2,2,154,156,[[882,1,1,154,155],[883,1,1,155,156]]],[31,1,1,156,157,[[889,1,1,156,157]]],[37,2,2,157,159,[[911,1,1,157,158],[915,1,1,158,159]]],[38,2,2,159,161,[[926,2,2,159,161]]]],[92,176,328,478,529,531,551,560,655,796,806,890,948,965,1156,1185,1191,1192,1278,1377,1391,1663,1790,1796,1850,1899,2058,2222,2305,2322,2323,2331,2394,2557,2609,2618,2619,2975,2981,2994,3025,3037,3654,3732,3745,3768,3823,4036,4038,4109,4138,4141,4142,4258,4448,4491,4663,4690,4713,4923,5064,5194,5540,5737,5899,5955,5961,6549,6808,7344,7449,7515,7520,7521,7522,7525,7585,7616,7982,8013,8014,8015,8081,8113,8351,8413,8502,8506,8553,8690,8796,8988,9062,9213,9271,9640,9648,9781,10169,10235,10249,10663,10664,10668,10671,10712,10793,10806,10818,10950,11009,11272,11515,12237,12308,12526,12739,12837,12903,13397,13931,14096,16099,16575,17416,17605,17710,17844,18581,18778,19206,19481,20024,20293,20307,20533,20535,20607,20649,20652,20656,20677,20820,20834,20882,20918,20923,20937,21366,21474,21693,21753,22020,22100,22412,22449,22546,22896,22945,23106,23112]]],["Carry",[2,2,[[3,1,1,0,1,[[127,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]]],[4036,9622]]],["Forgive",[1,1,[[0,1,1,0,1,[[49,1,1,0,1]]]],[1523]]],["One",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18780]]],["Suffer",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13358]]],["Take",[4,4,[[3,2,2,0,2,[[117,1,1,0,1],[120,1,1,1,2]]],[5,1,1,2,3,[[190,1,1,2,3]]],[18,1,1,3,4,[[558,1,1,3,4]]]],[3606,3765,5913,15219]]],["accept",[7,7,[[17,4,4,0,4,[[448,2,2,0,2],[467,1,1,2,3],[477,1,1,3,4]]],[18,1,1,4,5,[[559,1,1,4,5]]],[19,1,1,5,6,[[645,1,1,5,6]]],[38,1,1,6,7,[[925,1,1,6,7]]]],[13161,13163,13649,13930,15235,16906,23097]]],["accepted",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7896]]],["accepteth",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13702]]],["advanced",[2,2,[[16,2,2,0,2,[[428,1,1,0,1],[430,1,1,1,2]]]],[12748,12790]]],["away",[14,14,[[13,1,1,0,1,[[380,1,1,0,1]]],[17,3,3,1,4,[[459,1,1,1,2],[462,1,1,2,3],[467,1,1,3,4]]],[22,5,5,4,9,[[686,1,1,4,5],[693,1,1,5,6],[718,1,1,6,7],[719,1,1,7,8],[742,1,1,8,9]]],[25,1,1,9,10,[[839,1,1,9,10]]],[26,1,1,10,11,[[860,1,1,10,11]]],[27,2,2,11,13,[[866,1,1,11,12],[875,1,1,12,13]]],[32,1,1,13,14,[[894,1,1,13,14]]]],[11488,13446,13502,13650,17811,17967,18444,18467,18891,21438,22048,22166,22284,22597]]],["bare",[30,28,[[1,1,1,0,1,[[68,1,1,0,1]]],[3,1,1,1,2,[[129,1,1,1,2]]],[4,2,2,2,4,[[153,1,1,2,3],[183,1,1,3,4]]],[5,7,6,4,10,[[189,3,2,4,6],[190,3,3,6,9],[194,1,1,9,10]]],[6,1,1,10,11,[[213,1,1,10,11]]],[8,3,3,11,14,[[249,2,2,11,13],[252,1,1,13,14]]],[9,2,2,14,16,[[272,1,1,14,15],[284,1,1,15,16]]],[10,3,3,16,19,[[295,1,1,16,17],[300,1,1,17,18],[304,1,1,18,19]]],[11,1,1,19,20,[[317,1,1,19,20]]],[12,2,2,20,22,[[349,1,1,20,21],[352,1,1,21,22]]],[13,3,2,22,24,[[375,1,1,22,23],[380,2,1,23,24]]],[15,1,1,24,25,[[416,1,1,24,25]]],[22,2,2,25,27,[[700,1,1,25,26],[731,1,1,26,27]]],[25,1,1,27,28,[[813,1,1,27,28]]]],[2030,4098,4923,5753,5908,5910,5919,5920,5928,6035,6586,7509,7514,7659,8170,8493,8893,9081,9246,9670,10744,10817,11365,11483,12376,18058,18723,20687]]],["bear",[75,72,[[0,2,2,0,2,[[12,1,1,0,1],[35,1,1,1,2]]],[1,6,6,2,8,[[67,1,1,2,3],[76,1,1,3,4],[77,1,1,4,5],[79,1,1,5,6],[86,1,1,6,7],[87,1,1,7,8]]],[2,12,12,8,20,[[94,2,2,8,10],[96,1,1,10,11],[105,1,1,11,12],[106,1,1,12,13],[108,1,1,13,14],[109,3,3,14,17],[111,2,2,17,19],[113,1,1,19,20]]],[3,8,7,20,27,[[120,1,1,20,21],[123,1,1,21,22],[125,1,1,22,23],[127,2,1,23,24],[134,3,3,24,27]]],[4,2,2,27,29,[[153,2,2,27,29]]],[5,5,5,29,34,[[189,2,2,29,31],[190,1,1,31,32],[192,2,2,32,34]]],[11,1,1,34,35,[[330,1,1,34,35]]],[12,1,1,35,36,[[342,1,1,35,36]]],[18,1,1,36,37,[[566,1,1,36,37]]],[19,3,3,37,40,[[636,1,1,37,38],[645,1,1,38,39],[657,1,1,39,40]]],[22,4,4,40,44,[[679,1,1,40,41],[724,2,2,41,43],[730,1,1,43,44]]],[23,5,5,44,49,[[754,1,1,44,45],[761,2,2,45,47],[775,1,1,47,48],[788,1,1,48,49]]],[24,1,1,49,50,[[799,1,1,49,50]]],[25,20,18,50,68,[[805,1,1,50,51],[813,2,2,51,53],[815,1,1,53,54],[817,3,2,54,56],[818,1,1,56,57],[819,3,2,57,59],[824,2,2,59,61],[833,1,1,61,62],[835,1,1,62,63],[837,2,2,63,65],[845,3,3,65,68]]],[32,2,2,68,70,[[898,1,1,68,69],[899,1,1,69,70]]],[36,1,1,70,71,[[910,1,1,70,71]]],[37,1,1,71,72,[[916,1,1,71,72]]]],[324,1047,2021,2279,2336,2386,2631,2640,2831,2847,2897,3223,3251,3289,3335,3337,3338,3378,3385,3461,3758,3859,3978,4041,4279,4280,4289,4901,4904,5901,5906,5926,5953,5955,10038,10446,15376,16650,16915,17272,17668,18590,18593,18707,19220,19378,19384,19710,20032,20381,20534,20686,20692,20741,20814,20816,20833,20868,20869,21042,21056,21278,21342,21366,21374,21609,21611,21612,22664,22673,22867,22960]]],["beareth",[4,4,[[2,2,2,0,2,[[100,1,1,0,1],[104,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[28,1,1,3,4,[[877,1,1,3,4]]]],[3022,3178,5769,22333]]],["bearing",[9,9,[[0,1,1,0,1,[[36,1,1,0,1]]],[3,2,2,1,3,[[126,2,2,1,3]]],[5,4,4,3,7,[[189,2,2,3,5],[192,2,2,5,7]]],[8,1,1,7,8,[[252,1,1,7,8]]],[18,1,1,8,9,[[603,1,1,8,9]]]],[1108,4005,4009,5896,5907,5957,5962,7625,16121]]],["borne",[10,10,[[1,2,2,0,2,[[74,2,2,0,2]]],[17,1,1,2,3,[[469,1,1,2,3]]],[18,2,2,3,5,[[532,1,1,3,4],[546,1,1,4,5]]],[22,2,2,5,7,[[731,1,1,5,6],[744,1,1,6,7]]],[25,3,3,7,10,[[833,2,2,7,9],[837,1,1,9,10]]]],[2209,2223,13714,14744,14942,18715,18934,21272,21273,21365]]],["bring",[7,7,[[4,1,1,0,1,[[180,1,1,0,1]]],[8,1,1,1,2,[[239,1,1,1,2]]],[9,1,1,2,3,[[283,1,1,2,3]]],[12,1,1,3,4,[[353,1,1,3,4]]],[18,2,2,4,6,[[549,1,1,4,5],[573,1,1,5,6]]],[22,1,1,6,7,[[738,1,1,6,7]]]],[5660,7301,8462,10849,15003,15473,18827]]],["bringing",[3,3,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]],[18,1,1,2,3,[[603,1,1,2,3]]]],[9101,11385,16121]]],["brought",[10,10,[[9,4,4,0,4,[[272,2,2,0,2],[274,2,2,2,4]]],[10,1,1,4,5,[[300,1,1,4,5]]],[11,1,1,5,6,[[326,1,1,5,6]]],[12,3,3,6,9,[[355,3,3,6,9]]],[13,1,1,9,10,[[391,1,1,9,10]]]],[8160,8161,8211,8215,9090,9916,10892,10896,10901,11732]]],["burned",[2,2,[[9,1,1,0,1,[[271,1,1,0,1]]],[33,1,1,1,2,[[900,1,1,1,2]]]],[8153,22689]]],["carried",[9,8,[[0,1,1,0,1,[[49,1,1,0,1]]],[2,1,1,1,2,[[99,1,1,1,2]]],[11,3,2,2,4,[[319,2,1,2,3],[332,1,1,3,4]]],[22,4,4,4,8,[[717,1,1,4,5],[724,1,1,5,6],[727,1,1,6,7],[741,1,1,7,8]]]],[1519,2982,9715,10115,18418,18589,18658,18875]]],["carry",[8,8,[[0,4,4,0,4,[[43,1,1,0,1],[44,1,1,1,2],[45,1,1,2,3],[46,1,1,3,4]]],[4,1,1,4,5,[[166,1,1,4,5]]],[10,1,1,5,6,[[308,1,1,5,6]]],[22,2,2,6,8,[[708,1,1,6,7],[718,1,1,7,8]]]],[1325,1385,1391,1450,5314,9353,18223,18431]]],["carrying",[3,1,[[8,3,1,0,1,[[245,3,1,0,1]]]],[7421]]],["contain",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21641]]],["continued",[2,2,[[17,2,2,0,2,[[462,1,1,0,1],[464,1,1,1,2]]]],[13482,13533]]],["ease",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13021]]],["exalted",[6,6,[[3,1,1,0,1,[[140,1,1,0,1]]],[9,1,1,1,2,[[271,1,1,1,2]]],[22,2,2,2,4,[[680,1,1,2,3],[718,1,1,3,4]]],[27,1,1,4,5,[[874,1,1,4,5]]],[32,1,1,5,6,[[896,1,1,5,6]]]],[4453,8144,17687,18424,22267,22621]]],["extolled",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18709]]],["fetch",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13739]]],["fetched",[1,1,[[13,1,1,0,1,[[378,1,1,0,1]]]],[11448]]],["forgavest",[2,2,[[18,2,2,0,2,[[509,1,1,0,1],[576,1,1,1,2]]]],[14360,15507]]],["forgive",[7,7,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,2,2,1,3,[[59,1,1,1,2],[81,1,1,2,3]]],[5,1,1,3,4,[[210,1,1,3,4]]],[8,1,1,4,5,[[260,1,1,4,5]]],[18,1,1,5,6,[[502,1,1,5,6]]],[22,1,1,6,7,[[680,1,1,6,7]]]],[1523,1794,2470,6495,7889,14269,17694]]],["forgiven",[4,4,[[3,1,1,0,1,[[130,1,1,0,1]]],[18,2,2,1,3,[[509,1,1,1,2],[562,1,1,2,3]]],[22,1,1,3,4,[[711,1,1,3,4]]]],[4127,14356,15273,18303]]],["forgiving",[2,2,[[1,1,1,0,1,[[83,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]]],[2503,4126]]],["forth",[3,3,[[17,1,1,0,1,[[475,1,1,0,1]]],[25,1,1,1,2,[[818,1,1,1,2]]],[36,1,1,2,3,[[910,1,1,2,3]]]],[13884,20848,22874]]],["help",[1,1,[[14,1,1,0,1,[[403,1,1,0,1]]]],[12020]]],["high",[2,2,[[22,2,2,0,2,[[708,1,1,0,1],[735,1,1,1,2]]]],[18242,18772]]],["himself",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4440]]],["itself",[1,1,[[25,1,1,0,1,[[830,1,1,0,1]]]],[21198]]],["laden",[2,1,[[0,2,1,0,1,[[44,2,1,0,1]]]],[1381]]],["laid",[2,2,[[13,1,1,0,1,[[372,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]]],[11304,12980]]],["let",[1,1,[[5,1,1,0,1,[[192,1,1,0,1]]]],[5955]]],["magnified",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11898]]],["married",[1,1,[[13,1,1,0,1,[[379,1,1,0,1]]]],[11474]]],["myself",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18289]]],["obtained",[3,3,[[16,3,3,0,3,[[427,2,2,0,2],[430,1,1,2,3]]]],[12733,12741,12781]]],["offer",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20926]]],["pardon",[2,2,[[1,1,1,0,1,[[72,1,1,0,1]]],[17,1,1,1,2,[[442,1,1,1,2]]]],[2165,13029]]],["pardoneth",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22682]]],["raise",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2145]]],["receive",[3,3,[[4,1,1,0,1,[[185,1,1,0,1]]],[10,1,1,1,2,[[295,1,1,1,2]]],[18,1,1,2,3,[[501,1,1,2,3]]]],[5813,8887,14246]]],["regard",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[11,1,1,1,2,[[315,1,1,1,2]]],[38,1,1,2,3,[[925,1,1,2,3]]]],[5661,9590,23098]]],["regardeth",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5203]]],["respect",[2,2,[[2,1,1,0,1,[[108,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]]],[3296,8370]]],["respected",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20436]]],["set",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22141]]],["spare",[3,3,[[0,2,2,0,2,[[17,2,2,0,2]]],[19,1,1,2,3,[[646,1,1,2,3]]]],[448,450,16943]]],["suffer",[3,3,[[2,1,1,0,1,[[108,1,1,0,1]]],[18,1,1,1,2,[[565,1,1,1,2]]],[19,1,1,2,3,[[646,1,1,2,3]]]],[3298,15323,16944]]],["suffered",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19330]]],["swear",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17714]]],["take",[19,19,[[0,1,1,0,1,[[26,1,1,0,1]]],[3,1,1,1,2,[[117,1,1,1,2]]],[4,1,1,2,3,[[164,1,1,2,3]]],[11,1,1,3,4,[[321,1,1,3,4]]],[12,1,1,4,5,[[358,1,1,4,5]]],[14,1,1,5,6,[[411,1,1,5,6]]],[15,1,1,6,7,[[425,1,1,6,7]]],[17,3,3,7,10,[[448,1,1,7,8],[456,1,1,8,9],[466,1,1,9,10]]],[18,4,4,10,14,[[527,1,1,10,11],[593,1,1,11,12],[616,2,2,12,14]]],[20,1,1,14,15,[[663,1,1,14,15]]],[22,1,1,15,16,[[716,1,1,15,16]]],[23,1,1,16,17,[[793,1,1,16,17]]],[25,2,2,17,19,[[830,1,1,17,18],[840,1,1,18,19]]]],[730,3653,5266,9782,10958,12249,12696,13167,13367,13624,14684,15861,16248,16259,17412,18411,20156,21202,21458]]],["taken",[4,4,[[3,1,1,0,1,[[132,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]],[14,2,2,2,4,[[411,1,1,2,3],[412,1,1,3,4]]]],[4209,9623,12239,12296]]],["themselves",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22050]]],["thyself",[3,3,[[18,2,2,0,2,[[484,1,1,0,1],[571,1,1,1,2]]],[19,1,1,2,3,[[657,1,1,2,3]]]],[14001,15433,17283]]],["took",[16,16,[[0,1,1,0,1,[[42,1,1,0,1]]],[6,3,3,1,4,[[219,1,1,1,2],[226,1,1,2,3],[231,1,1,3,4]]],[7,1,1,4,5,[[232,1,1,4,5]]],[8,2,2,5,7,[[252,2,2,5,7]]],[9,1,1,7,8,[[289,1,1,7,8]]],[12,3,3,8,11,[[348,1,1,8,9],[360,1,1,9,10],[364,1,1,10,11]]],[13,3,3,11,14,[[377,1,1,11,12],[390,2,2,12,14]]],[24,1,1,14,15,[[801,1,1,14,15]]],[25,1,1,15,16,[[811,1,1,15,16]]]],[1324,6802,6980,7125,7131,7638,7652,8669,10691,11005,11132,11435,11680,11688,20455,20640]]],["up",[158,149,[[0,9,9,0,9,[[12,1,1,0,1],[17,1,1,1,2],[23,1,1,2,3],[26,1,1,3,4],[30,2,2,4,6],[32,1,1,6,7],[36,1,1,7,8],[42,1,1,8,9]]],[1,2,2,9,11,[[84,1,1,9,10],[85,1,1,10,11]]],[3,8,8,11,19,[[122,1,1,11,12],[139,2,2,12,14],[140,5,5,14,19]]],[4,3,3,19,22,[[155,1,1,19,20],[156,1,1,20,21],[184,1,1,21,22]]],[5,2,2,22,24,[[190,1,1,22,23],[191,1,1,23,24]]],[6,4,4,24,28,[[218,1,1,24,25],[219,1,1,25,26],[229,1,1,26,27],[231,1,1,27,28]]],[7,3,3,28,31,[[232,2,2,28,30],[233,1,1,30,31]]],[8,1,1,31,32,[[259,1,1,31,32]]],[9,4,4,32,36,[[268,1,1,32,33],[270,1,1,33,34],[279,1,1,34,35],[286,1,1,35,36]]],[11,7,7,36,43,[[314,1,1,36,37],[316,1,1,37,38],[321,2,2,38,40],[326,1,1,40,41],[331,2,2,41,43]]],[12,1,1,43,44,[[351,1,1,43,44]]],[13,1,1,44,45,[[391,1,1,44,45]]],[17,5,5,45,50,[[437,1,1,45,46],[445,1,1,46,47],[446,1,1,47,48],[457,1,1,48,49],[465,1,1,49,50]]],[18,24,20,50,70,[[481,1,1,50,51],[487,1,1,51,52],[492,1,1,52,53],[501,5,3,53,56],[502,1,1,56,57],[505,2,2,57,59],[540,1,1,59,60],[560,1,1,60,61],[563,1,1,61,62],[568,1,1,62,63],[570,3,1,63,64],[579,1,1,64,65],[583,1,1,65,66],[596,1,1,66,67],[598,1,1,67,68],[611,1,1,68,69],[620,1,1,69,70]]],[19,1,1,70,71,[[657,1,1,70,71]]],[22,24,24,71,95,[[680,4,4,71,75],[683,1,1,75,76],[684,1,1,76,77],[688,2,2,77,79],[689,1,1,79,80],[691,1,1,80,81],[692,1,1,81,82],[696,1,1,82,83],[702,1,1,83,84],[704,1,1,84,85],[715,2,2,85,87],[718,1,1,87,88],[720,2,2,88,90],[727,2,2,90,92],[729,1,1,92,93],[730,1,1,93,94],[738,1,1,94,95]]],[23,13,13,95,108,[[747,1,1,95,96],[748,1,1,96,97],[750,1,1,97,98],[751,2,2,98,100],[753,2,2,100,102],[755,1,1,102,103],[757,1,1,103,104],[794,1,1,104,105],[795,3,3,105,108]]],[24,2,2,108,110,[[798,1,1,108,109],[799,1,1,109,110]]],[25,27,23,110,133,[[802,5,3,110,113],[804,2,2,113,115],[809,2,1,115,116],[812,1,1,116,117],[818,1,1,117,118],[819,3,3,118,121],[821,4,3,121,124],[824,1,1,124,125],[827,1,1,125,126],[828,2,2,126,128],[829,1,1,128,129],[833,1,1,129,130],[834,1,1,130,131],[844,1,1,131,132],[845,1,1,132,133]]],[26,1,1,133,134,[[857,1,1,133,134]]],[29,2,2,134,136,[[883,1,1,134,135],[884,1,1,135,136]]],[31,1,1,136,137,[[889,1,1,136,137]]],[32,2,2,137,139,[[894,1,1,137,138],[896,1,1,138,139]]],[34,3,3,139,142,[[903,1,1,139,140],[904,1,1,140,141],[905,1,1,141,142]]],[37,8,7,142,149,[[911,2,1,142,143],[912,1,1,143,144],[915,4,4,144,148],[916,1,1,148,149]]]],[332,426,654,765,883,885,961,1108,1319,2552,2568,3849,4423,4434,4449,4461,4466,4467,4469,5002,5023,5798,5918,5947,6747,6761,7041,7104,7136,7141,7167,7855,8071,8124,8353,8575,9567,9639,9781,9788,9906,10065,10083,10776,11723,12903,13101,13123,13415,13579,13971,14053,14090,14245,14248,14250,14252,14301,14308,14843,15243,15288,15407,15429,15531,15677,15946,16082,16174,16301,17264,17689,17697,17698,17699,17765,17770,17874,17876,17896,17908,17932,18000,18109,18141,18356,18375,18446,18482,18491,18654,18658,18679,18704,18825,19004,19033,19090,19135,19148,19185,19193,19240,19286,20168,20221,20224,20239,20351,20395,20483,20484,20485,20514,20516,20609,20679,20839,20855,20861,20864,20900,20901,20910,21034,21117,21123,21153,21169,21250,21305,21577,21611,21964,22424,22460,22543,22599,22623,22734,22754,22778,22899,22900,22937,22941,22943,22945,22948]]],["wear",[2,2,[[8,2,2,0,2,[[237,1,1,0,1],[257,1,1,1,2]]]],[7268,7805]]],["wearing",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7511]]],["yield",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21367]]],["yourselves",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4197]]]]},{"k":"H5376","v":[["*",[3,3,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,1,1,2,3,[[851,1,1,2,3]]]],[12129,12149,21793]]],["+",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21793]]],["Take",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12149]]],["insurrection",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12129]]]]},{"k":"H5377","v":[["*",[15,14,[[0,1,1,0,1,[[2,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[11,2,2,2,4,[[330,1,1,2,3],[331,1,1,3,4]]],[13,1,1,4,5,[[398,1,1,4,5]]],[22,3,3,5,8,[[697,1,1,5,6],[714,1,1,6,7],[715,1,1,7,8]]],[23,5,4,8,12,[[748,2,1,8,9],[773,1,1,9,10],[781,1,1,10,11],[793,1,1,11,12]]],[30,2,2,12,14,[[888,2,2,12,14]]]],[68,9016,10053,10071,11890,18017,18344,18362,19037,19643,19883,20143,22513,22517]]],["+",[2,1,[[23,2,1,0,1,[[748,2,1,0,1]]]],[19037]]],["Deceive",[1,1,[[23,1,1,0,1,[[781,1,1,0,1]]]],[19883]]],["beguiled",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[68]]],["deceive",[6,6,[[11,2,2,0,2,[[330,1,1,0,1],[331,1,1,1,2]]],[13,1,1,2,3,[[398,1,1,2,3]]],[22,2,2,3,5,[[714,1,1,3,4],[715,1,1,4,5]]],[23,1,1,5,6,[[773,1,1,5,6]]]],[10053,10071,11890,18344,18362,19643]]],["deceived",[4,4,[[22,1,1,0,1,[[697,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]],[30,2,2,2,4,[[888,2,2,2,4]]]],[18017,20143,22513,22517]]],["laid",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9016]]]]},{"k":"H5378","v":[["*",[4,4,[[8,1,1,0,1,[[257,1,1,0,1]]],[15,1,1,1,2,[[417,1,1,1,2]]],[18,1,1,2,3,[[566,1,1,2,3]]],[22,1,1,3,4,[[702,1,1,3,4]]]],[7789,12389,15348,18097]]],["debt",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7789]]],["exact",[2,2,[[15,1,1,0,1,[[417,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]]],[12389,15348]]],["usury",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18097]]]]},{"k":"H5379","v":[["+",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8553]]]]},{"k":"H5380","v":[["*",[3,3,[[0,1,1,0,1,[[14,1,1,0,1]]],[18,1,1,1,2,[[624,1,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]]],[371,16369,18427]]],["+",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[371]]],["blow",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16369]]],["bloweth",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18427]]]]},{"k":"H5381","v":[["*",[50,47,[[0,4,4,0,4,[[30,1,1,0,1],[43,2,2,1,3],[46,1,1,3,4]]],[1,2,2,4,6,[[63,1,1,4,5],[64,1,1,5,6]]],[2,12,11,6,17,[[94,1,1,6,7],[103,5,5,7,12],[114,3,3,12,15],[115,2,1,15,16],[116,1,1,16,17]]],[3,1,1,17,18,[[122,1,1,17,18]]],[4,4,4,18,22,[[171,1,1,18,19],[180,3,3,19,22]]],[5,1,1,22,23,[[188,1,1,22,23]]],[8,4,2,23,25,[[249,1,1,23,24],[265,3,1,24,25]]],[9,1,1,25,26,[[281,1,1,25,26]]],[11,1,1,26,27,[[337,1,1,26,27]]],[12,1,1,27,28,[[358,1,1,27,28]]],[17,3,3,28,31,[[459,1,1,28,29],[462,1,1,29,30],[476,1,1,30,31]]],[18,4,4,31,35,[[484,1,1,31,32],[495,1,1,32,33],[517,1,1,33,34],[546,1,1,34,35]]],[19,1,1,35,36,[[629,1,1,35,36]]],[22,3,3,36,39,[[713,1,1,36,37],[729,1,1,37,38],[737,1,1,38,39]]],[23,3,3,39,42,[[783,1,1,39,40],[786,1,1,40,41],[796,1,1,41,42]]],[24,1,1,42,43,[[797,1,1,42,43]]],[25,1,1,43,44,[[847,1,1,43,44]]],[27,2,2,44,46,[[863,1,1,44,45],[871,1,1,45,46]]],[37,1,1,46,47,[[911,1,1,46,47]]]],[898,1328,1330,1429,1898,1929,2841,3132,3133,3141,3142,3143,3495,3516,3518,3529,3578,3844,5412,5613,5626,5656,5874,7534,7986,8403,10227,10946,13438,13501,13914,14000,14155,14537,14959,16452,18330,18684,18809,19928,19991,20284,20313,21662,22112,22234,22884]]],["+",[16,14,[[0,2,2,0,2,[[30,1,1,0,1],[46,1,1,1,2]]],[2,10,9,2,11,[[94,1,1,2,3],[103,4,4,3,7],[114,2,2,7,9],[115,2,1,9,10],[116,1,1,10,11]]],[8,2,1,11,12,[[265,2,1,11,12]]],[23,2,2,12,14,[[783,1,1,12,13],[796,1,1,13,14]]]],[898,1429,2841,3132,3133,3141,3142,3495,3518,3529,3578,7986,19928,20284]]],["attain",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21662]]],["get",[2,2,[[2,1,1,0,1,[[103,1,1,0,1]]],[3,1,1,1,2,[[122,1,1,1,2]]]],[3143,3844]]],["hold",[5,5,[[17,1,1,0,1,[[462,1,1,0,1]]],[18,2,2,1,3,[[517,1,1,1,2],[546,1,1,2,3]]],[19,1,1,3,4,[[629,1,1,3,4]]],[37,1,1,4,5,[[911,1,1,4,5]]]],[13501,14537,14959,16452,22884]]],["layeth",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13914]]],["obtain",[2,2,[[22,2,2,0,2,[[713,1,1,0,1],[729,1,1,1,2]]]],[18330,18684]]],["overtake",[13,13,[[0,1,1,0,1,[[43,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[4,4,4,2,6,[[171,1,1,2,3],[180,3,3,3,6]]],[5,1,1,6,7,[[188,1,1,6,7]]],[8,1,1,7,8,[[265,1,1,7,8]]],[9,1,1,8,9,[[281,1,1,8,9]]],[22,1,1,9,10,[[737,1,1,9,10]]],[23,1,1,10,11,[[786,1,1,10,11]]],[27,2,2,11,13,[[863,1,1,11,12],[871,1,1,12,13]]]],[1328,1929,5412,5613,5626,5656,5874,7986,8403,18809,19991,22112,22234]]],["overtaken",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14155]]],["overtaketh",[1,1,[[12,1,1,0,1,[[358,1,1,0,1]]]],[10946]]],["overtook",[4,4,[[0,1,1,0,1,[[43,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[11,1,1,2,3,[[337,1,1,2,3]]],[24,1,1,3,4,[[797,1,1,3,4]]]],[1330,1898,10227,20313]]],["put",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7534]]],["remove",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13438]]],["rich",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3516]]],["take",[1,1,[[18,1,1,0,1,[[484,1,1,0,1]]]],[14000]]]]},{"k":"H5382","v":[["*",[7,6,[[0,1,1,0,1,[[40,1,1,0,1]]],[17,2,2,1,3,[[446,1,1,1,2],[474,1,1,2,3]]],[22,1,1,3,4,[[722,1,1,3,4]]],[23,2,1,4,5,[[767,2,1,4,5]]],[24,1,1,5,6,[[799,1,1,5,6]]]],[1246,13114,13851,18554,19523,20371]]],["+",[3,2,[[0,1,1,0,1,[[40,1,1,0,1]]],[23,2,1,1,2,[[767,2,1,1,2]]]],[1246,19523]]],["deprived",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13851]]],["exacteth",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13114]]],["forgat",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20371]]],["forgotten",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18554]]]]},{"k":"H5383","v":[["*",[12,11,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,3,3,1,4,[[167,1,1,1,2],[176,2,2,2,4]]],[11,1,1,4,5,[[316,1,1,4,5]]],[15,2,2,5,7,[[417,2,2,5,7]]],[18,1,1,7,8,[[586,1,1,7,8]]],[22,2,2,8,10,[[702,1,1,8,9],[728,1,1,9,10]]],[23,2,1,10,11,[[759,2,1,10,11]]]],[2138,5321,5535,5536,9604,12392,12393,15766,18097,18663,19325]]],["+",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18663]]],["creditor",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9604]]],["exact",[2,2,[[15,2,2,0,2,[[417,2,2,0,2]]]],[12392,12393]]],["extortioner",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15766]]],["lend",[2,2,[[4,2,2,0,2,[[176,2,2,0,2]]]],[5535,5536]]],["lendeth",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5321]]],["usurer",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2138]]],["usury",[3,2,[[22,1,1,0,1,[[702,1,1,0,1]]],[23,2,1,1,2,[[759,2,1,1,2]]]],[18097,19325]]]]},{"k":"H5384","v":[["shrank",[2,1,[[0,2,1,0,1,[[31,2,1,0,1]]]],[960]]]]},{"k":"H5385","v":[["carriages",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18587]]]]},{"k":"H5386","v":[["debt",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9610]]]]},{"k":"H5387","v":[["*",[134,120,[[0,4,4,0,4,[[16,1,1,0,1],[22,1,1,1,2],[24,1,1,2,3],[33,1,1,3,4]]],[1,4,4,4,8,[[65,1,1,4,5],[71,1,1,5,6],[83,1,1,6,7],[84,1,1,7,8]]],[2,1,1,8,9,[[93,1,1,8,9]]],[3,62,55,9,64,[[117,2,2,9,11],[118,12,12,11,23],[119,5,4,23,27],[120,2,2,27,29],[123,19,16,29,45],[126,1,1,45,46],[129,1,1,46,47],[132,1,1,47,48],[133,4,2,48,50],[141,2,2,50,52],[143,1,1,52,53],[147,1,1,53,54],[148,1,1,54,55],[150,9,8,55,63],[152,1,1,63,64]]],[5,13,9,64,73,[[195,6,4,64,68],[199,1,1,68,69],[203,1,1,69,70],[208,5,3,70,73]]],[10,2,2,73,75,[[298,1,1,73,74],[301,1,1,74,75]]],[12,4,4,75,79,[[339,1,1,75,76],[341,1,1,76,77],[342,1,1,77,78],[344,1,1,78,79]]],[13,2,2,79,81,[[367,1,1,79,80],[371,1,1,80,81]]],[14,1,1,81,82,[[403,1,1,81,82]]],[18,1,1,82,83,[[612,1,1,82,83]]],[19,1,1,83,84,[[652,1,1,83,84]]],[23,2,2,84,86,[[754,1,1,84,85],[795,1,1,85,86]]],[25,37,34,86,120,[[808,1,1,86,87],[813,2,2,87,89],[820,1,1,89,90],[822,2,2,90,92],[823,1,1,92,93],[827,1,1,93,94],[828,1,1,94,95],[831,1,1,95,96],[833,1,1,96,97],[835,1,1,97,98],[838,1,1,98,99],[839,2,2,99,101],[840,2,2,101,103],[845,2,1,103,104],[846,6,6,104,110],[847,8,8,110,118],[849,4,2,118,120]]]],[417,577,674,982,1969,2141,2527,2558,2817,3620,3648,3661,3663,3665,3668,3670,3672,3676,3678,3680,3683,3685,3687,3716,3722,3724,3727,3777,3789,3852,3853,3860,3861,3868,3874,3880,3886,3892,3898,3904,3910,3916,3922,3928,3934,3992,4077,4196,4246,4250,4485,4489,4556,4677,4720,4834,4838,4839,4840,4841,4842,4843,4844,4880,6052,6055,6056,6058,6175,6279,6440,6456,6458,8986,9142,10316,10423,10434,10575,11196,11270,12024,16182,17127,19214,20228,20604,20690,20692,20882,20956,20969,20982,21116,21142,21217,21277,21337,21422,21427,21428,21449,21466,21602,21637,21638,21639,21646,21647,21652,21657,21659,21663,21665,21667,21671,21672,21673,21723,21724]]],["+",[7,5,[[3,4,3,0,3,[[123,1,1,0,1],[133,1,1,1,2],[150,2,1,2,3]]],[5,2,1,3,4,[[208,2,1,3,4]]],[25,1,1,4,5,[[846,1,1,4,5]]]],[3861,4250,4834,6440,21647]]],["captain",[12,12,[[3,12,12,0,12,[[118,12,12,0,12]]]],[3661,3663,3665,3668,3670,3672,3676,3678,3680,3683,3685,3687]]],["chief",[9,8,[[3,7,6,0,6,[[119,5,4,0,4],[120,2,2,4,6]]],[10,1,1,6,7,[[298,1,1,6,7]]],[13,1,1,7,8,[[371,1,1,7,8]]]],[3716,3722,3724,3727,3777,3789,8986,11270]]],["clouds",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17127]]],["governor",[1,1,[[13,1,1,0,1,[[367,1,1,0,1]]]],[11196]]],["prince",[54,52,[[0,2,2,0,2,[[22,1,1,0,1],[33,1,1,1,2]]],[3,22,22,2,24,[[123,12,12,2,14],[133,1,1,14,15],[141,2,2,15,17],[150,7,7,17,24]]],[10,1,1,24,25,[[301,1,1,24,25]]],[12,2,2,25,27,[[339,1,1,25,26],[342,1,1,26,27]]],[14,1,1,27,28,[[403,1,1,27,28]]],[25,26,24,28,52,[[808,1,1,28,29],[813,2,2,29,31],[822,1,1,31,32],[831,1,1,32,33],[835,1,1,33,34],[838,1,1,34,35],[839,2,2,35,37],[840,1,1,37,38],[845,2,1,38,39],[846,3,3,39,42],[847,8,8,42,50],[849,3,2,50,52]]]],[577,982,3861,3868,3874,3880,3886,3892,3898,3904,3910,3916,3922,3928,4250,4485,4489,4838,4839,4840,4841,4842,4843,4844,9142,10316,10434,12024,20604,20690,20692,20969,21217,21337,21422,21427,21428,21449,21602,21637,21646,21652,21657,21659,21663,21665,21667,21671,21672,21673,21723,21724]]],["prince's",[1,1,[[25,1,1,0,1,[[849,1,1,0,1]]]],[21724]]],["princes",[40,36,[[0,2,2,0,2,[[16,1,1,0,1],[24,1,1,1,2]]],[3,16,14,2,16,[[117,2,2,2,4],[123,6,4,4,8],[126,1,1,8,9],[132,1,1,9,10],[133,2,2,10,12],[143,1,1,12,13],[147,1,1,13,14],[148,1,1,14,15],[152,1,1,15,16]]],[5,11,9,16,25,[[195,6,4,16,20],[199,1,1,20,21],[203,1,1,21,22],[208,3,3,22,25]]],[12,2,2,25,27,[[341,1,1,25,26],[344,1,1,26,27]]],[25,9,9,27,36,[[820,1,1,27,28],[822,1,1,28,29],[823,1,1,29,30],[827,1,1,30,31],[828,1,1,31,32],[833,1,1,32,33],[840,1,1,33,34],[846,2,2,34,36]]]],[417,674,3620,3648,3852,3853,3860,3934,3992,4196,4246,4250,4556,4677,4720,4880,6052,6055,6056,6058,6175,6279,6440,6456,6458,10423,10575,20882,20956,20982,21116,21142,21277,21466,21638,21639]]],["ruler",[3,3,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,1,1,1,2,[[93,1,1,1,2]]],[3,1,1,2,3,[[129,1,1,2,3]]]],[2141,2817,4077]]],["rulers",[3,3,[[1,3,3,0,3,[[65,1,1,0,1],[83,1,1,1,2],[84,1,1,2,3]]]],[1969,2527,2558]]],["vapours",[3,3,[[18,1,1,0,1,[[612,1,1,0,1]]],[23,2,2,1,3,[[754,1,1,1,2],[795,1,1,2,3]]]],[16182,19214,20228]]]]},{"k":"H5388","v":[["forgetfulness",[1,1,[[18,1,1,0,1,[[565,1,1,0,1]]]],[15320]]]]},{"k":"H5389","v":[["wives",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21929]]]]},{"k":"H5390","v":[["*",[2,2,[[19,1,1,0,1,[[654,1,1,0,1]]],[21,1,1,1,2,[[671,1,1,1,2]]]],[17175,17539]]],["+",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17539]]],["kisses",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17175]]]]},{"k":"H5391","v":[["*",[16,14,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,3,3,1,4,[[137,3,3,1,4]]],[4,4,2,4,6,[[175,4,2,4,6]]],[19,1,1,6,7,[[650,1,1,6,7]]],[20,2,2,7,9,[[668,2,2,7,9]]],[23,1,1,9,10,[[752,1,1,9,10]]],[29,2,2,10,12,[[883,1,1,10,11],[887,1,1,11,12]]],[32,1,1,12,13,[[895,1,1,12,13]]],[34,1,1,13,14,[[904,1,1,13,14]]]],[1490,4346,4348,4349,5519,5520,17076,17501,17504,19170,22442,22498,22613,22755]]],["+",[2,2,[[3,2,2,0,2,[[137,2,2,0,2]]]],[4346,4349]]],["bit",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22442]]],["bite",[6,6,[[20,2,2,0,2,[[668,2,2,0,2]]],[23,1,1,2,3,[[752,1,1,2,3]]],[29,1,1,3,4,[[887,1,1,3,4]]],[32,1,1,4,5,[[895,1,1,4,5]]],[34,1,1,5,6,[[904,1,1,5,6]]]],[17501,17504,19170,22498,22613,22755]]],["biteth",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[19,1,1,1,2,[[650,1,1,1,2]]]],[1490,17076]]],["bitten",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4348]]],["usury",[4,2,[[4,4,2,0,2,[[175,4,2,0,2]]]],[5519,5520]]]]},{"k":"H5392","v":[["usury",[12,10,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,2,2,1,3,[[114,2,2,1,3]]],[4,3,1,3,4,[[175,3,1,3,4]]],[18,1,1,4,5,[[492,1,1,4,5]]],[19,1,1,5,6,[[655,1,1,5,6]]],[25,4,4,6,10,[[819,3,3,6,9],[823,1,1,9,10]]]],[2138,3505,3506,5519,14092,17204,20857,20862,20866,20988]]]]},{"k":"H5393","v":[["*",[3,3,[[15,3,3,0,3,[[415,1,1,0,1],[424,1,1,1,2],[425,1,1,2,3]]]],[12357,12668,12678]]],["chamber",[2,2,[[15,2,2,0,2,[[415,1,1,0,1],[425,1,1,1,2]]]],[12357,12678]]],["chambers",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12668]]]]},{"k":"H5394","v":[["*",[7,7,[[1,1,1,0,1,[[52,1,1,0,1]]],[4,4,4,1,5,[[159,2,2,1,3],[171,1,1,3,4],[180,1,1,4,5]]],[5,1,1,5,6,[[191,1,1,5,6]]],[11,1,1,6,7,[[328,1,1,6,7]]]],[1584,5112,5133,5411,5651,5949,9969]]],["+",[2,2,[[4,1,1,0,1,[[159,1,1,0,1]]],[11,1,1,1,2,[[328,1,1,1,2]]]],[5133,9969]]],["Loose",[1,1,[[5,1,1,0,1,[[191,1,1,0,1]]]],[5949]]],["cast",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5651]]],["off",[1,1,[[1,1,1,0,1,[[52,1,1,0,1]]]],[1584]]],["out",[1,1,[[4,1,1,0,1,[[159,1,1,0,1]]]],[5112]]],["slippeth",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5411]]]]},{"k":"H5395","v":[["destroy",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18494]]]]},{"k":"H5396","v":[["breath",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21897]]]]},{"k":"H5397","v":[["*",[24,24,[[0,2,2,0,2,[[1,1,1,0,1],[6,1,1,1,2]]],[4,1,1,2,3,[[172,1,1,2,3]]],[5,3,3,3,6,[[196,1,1,3,4],[197,2,2,4,6]]],[9,1,1,6,7,[[288,1,1,6,7]]],[10,2,2,7,9,[[305,1,1,7,8],[307,1,1,8,9]]],[17,7,7,9,16,[[439,1,1,9,10],[461,1,1,10,11],[462,1,1,11,12],[467,1,1,12,13],[468,1,1,13,14],[469,1,1,14,15],[472,1,1,15,16]]],[18,2,2,16,18,[[495,1,1,16,17],[627,1,1,17,18]]],[19,1,1,18,19,[[647,1,1,18,19]]],[22,4,4,19,23,[[680,1,1,19,20],[708,1,1,20,21],[720,1,1,21,22],[735,1,1,22,23]]],[26,1,1,23,24,[[859,1,1,23,24]]]],[37,181,5443,6104,6118,6121,8618,9278,9334,12939,13471,13484,13636,13654,13697,13779,14133,16400,16981,17707,18250,18485,18781,22032]]],["+",[5,5,[[0,1,1,0,1,[[6,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,2,2,2,4,[[439,1,1,2,3],[472,1,1,3,4]]],[18,1,1,4,5,[[495,1,1,4,5]]]],[181,8618,12939,13779,14133]]],["breath",[10,10,[[0,1,1,0,1,[[1,1,1,0,1]]],[10,1,1,1,2,[[307,1,1,1,2]]],[17,3,3,2,5,[[462,1,1,2,3],[468,1,1,3,4],[469,1,1,4,5]]],[18,1,1,5,6,[[627,1,1,5,6]]],[22,3,3,6,9,[[680,1,1,6,7],[708,1,1,7,8],[720,1,1,8,9]]],[26,1,1,9,10,[[859,1,1,9,10]]]],[37,9334,13484,13654,13697,16400,17707,18250,18485,22032]]],["breathe",[2,2,[[5,2,2,0,2,[[197,2,2,0,2]]]],[6118,6121]]],["breathed",[2,2,[[5,1,1,0,1,[[196,1,1,0,1]]],[10,1,1,1,2,[[305,1,1,1,2]]]],[6104,9278]]],["breatheth",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5443]]],["inspiration",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13636]]],["souls",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18781]]],["spirit",[2,2,[[17,1,1,0,1,[[461,1,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]]],[13471,16981]]]]},{"k":"H5398","v":[["blow",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[1930,18444]]]]},{"k":"H5399","v":[["*",[12,12,[[8,1,1,0,1,[[265,1,1,0,1]]],[11,2,2,1,3,[[319,2,2,1,3]]],[17,3,3,3,6,[[438,1,1,3,4],[442,1,1,4,5],[459,1,1,5,6]]],[18,1,1,6,7,[[596,1,1,6,7]]],[19,1,1,7,8,[[634,1,1,7,8]]],[22,3,3,8,11,[[683,1,1,8,9],[699,1,1,9,10],[737,1,1,10,11]]],[23,1,1,11,12,[[757,1,1,11,12]]]],[7995,9712,9714,12913,13012,13451,16045,16584,17750,18039,18810,19282]]],["+",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7995]]],["dark",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19282]]],["dawning",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16045]]],["day",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13012]]],["night",[3,3,[[22,3,3,0,3,[[683,1,1,0,1],[699,1,1,1,2],[737,1,1,2,3]]]],[17750,18039,18810]]],["twilight",[5,5,[[11,2,2,0,2,[[319,2,2,0,2]]],[17,2,2,2,4,[[438,1,1,2,3],[459,1,1,3,4]]],[19,1,1,4,5,[[634,1,1,4,5]]]],[9712,9714,12913,13451,16584]]]]},{"k":"H5400","v":[["*",[3,3,[[18,1,1,0,1,[[555,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]],[25,1,1,2,3,[[840,1,1,2,3]]]],[15134,18548,21457]]],["burn",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21457]]],["kindled",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15134]]],["kindleth",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18548]]]]},{"k":"H5401","v":[["*",[35,35,[[0,11,11,0,11,[[26,2,2,0,2],[28,2,2,2,4],[30,2,2,4,6],[32,1,1,6,7],[40,1,1,7,8],[44,1,1,8,9],[47,1,1,9,10],[49,1,1,10,11]]],[1,2,2,11,13,[[53,1,1,11,12],[67,1,1,12,13]]],[7,2,2,13,15,[[232,2,2,13,15]]],[8,2,2,15,17,[[245,1,1,15,16],[255,1,1,16,17]]],[9,4,4,17,21,[[280,1,1,17,18],[281,1,1,18,19],[285,1,1,19,20],[286,1,1,20,21]]],[10,2,2,21,23,[[309,2,2,21,23]]],[12,1,1,23,24,[[349,1,1,23,24]]],[13,1,1,24,25,[[383,1,1,24,25]]],[17,1,1,25,26,[[466,1,1,25,26]]],[18,3,3,26,29,[[479,1,1,26,27],[555,1,1,27,28],[562,1,1,28,29]]],[19,2,2,29,31,[[634,1,1,29,30],[651,1,1,30,31]]],[21,2,2,31,33,[[671,1,1,31,32],[678,1,1,32,33]]],[25,1,1,33,34,[[804,1,1,33,34]]],[27,1,1,34,35,[[874,1,1,34,35]]]],[753,754,806,808,901,928,964,1235,1373,1461,1507,1628,2006,7136,7141,7419,7771,8389,8394,8550,8563,9405,9407,10722,11540,13615,13957,15122,15281,16588,17105,17539,17641,20515,22268]]],["Kiss",[1,1,[[18,1,1,0,1,[[479,1,1,0,1]]]],[13957]]],["armed",[2,2,[[12,1,1,0,1,[[349,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[10722,15122]]],["kiss",[8,8,[[0,2,2,0,2,[[26,1,1,0,1],[30,1,1,1,2]]],[9,1,1,2,3,[[286,1,1,2,3]]],[10,1,1,3,4,[[309,1,1,3,4]]],[19,1,1,4,5,[[651,1,1,4,5]]],[21,2,2,5,7,[[671,1,1,5,6],[678,1,1,6,7]]],[27,1,1,7,8,[[874,1,1,7,8]]]],[753,901,8563,9407,17105,17539,17641,22268]]],["kissed",[21,21,[[0,8,8,0,8,[[26,1,1,0,1],[28,2,2,1,3],[30,1,1,3,4],[32,1,1,4,5],[44,1,1,5,6],[47,1,1,6,7],[49,1,1,7,8]]],[1,2,2,8,10,[[53,1,1,8,9],[67,1,1,9,10]]],[7,2,2,10,12,[[232,2,2,10,12]]],[8,2,2,12,14,[[245,1,1,12,13],[255,1,1,13,14]]],[9,3,3,14,17,[[280,1,1,14,15],[281,1,1,15,16],[285,1,1,16,17]]],[10,1,1,17,18,[[309,1,1,17,18]]],[17,1,1,18,19,[[466,1,1,18,19]]],[18,1,1,19,20,[[562,1,1,19,20]]],[19,1,1,20,21,[[634,1,1,20,21]]]],[754,806,808,928,964,1373,1461,1507,1628,2006,7136,7141,7419,7771,8389,8394,8550,9405,13615,15281,16588]]],["men",[1,1,[[13,1,1,0,1,[[383,1,1,0,1]]]],[11540]]],["ruled",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1235]]],["touched",[1,1,[[25,1,1,0,1,[[804,1,1,0,1]]]],[20515]]]]},{"k":"H5402","v":[["*",[10,10,[[10,1,1,0,1,[[300,1,1,0,1]]],[11,1,1,1,2,[[322,1,1,1,2]]],[13,1,1,2,3,[[375,1,1,2,3]]],[15,1,1,3,4,[[415,1,1,3,4]]],[17,2,2,4,6,[[455,1,1,4,5],[474,1,1,5,6]]],[18,1,1,6,7,[[617,1,1,6,7]]],[22,1,1,7,8,[[700,1,1,7,8]]],[25,2,2,8,10,[[840,2,2,8,10]]]],[9104,9795,11388,12346,13350,13855,16270,18060,21457,21458]]],["+",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13350]]],["armour",[3,3,[[10,1,1,0,1,[[300,1,1,0,1]]],[11,1,1,1,2,[[322,1,1,1,2]]],[22,1,1,2,3,[[700,1,1,2,3]]]],[9104,9795,18060]]],["armoury",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12346]]],["battle",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16270]]],["harness",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11388]]],["men",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13855]]],["weapons",[2,2,[[25,2,2,0,2,[[840,2,2,0,2]]]],[21457,21458]]]]},{"k":"H5403","v":[["*",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[856,1,1,1,2]]]],[21870,21937]]],["+",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21937]]],["eagles'",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21870]]]]},{"k":"H5404","v":[["*",[26,26,[[1,1,1,0,1,[[68,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]],[4,3,3,2,5,[[166,1,1,2,3],[180,1,1,3,4],[184,1,1,4,5]]],[9,1,1,5,6,[[267,1,1,5,6]]],[17,2,2,6,8,[[444,1,1,6,7],[474,1,1,7,8]]],[18,1,1,8,9,[[580,1,1,8,9]]],[19,3,3,9,12,[[650,1,1,9,10],[657,2,2,10,12]]],[22,1,1,12,13,[[718,1,1,12,13]]],[23,4,4,13,17,[[748,1,1,13,14],[792,1,1,14,15],[793,2,2,15,17]]],[24,1,1,17,18,[[800,1,1,17,18]]],[25,4,4,18,22,[[802,1,1,18,19],[811,1,1,19,20],[818,2,2,20,22]]],[27,1,1,22,23,[[869,1,1,22,23]]],[30,1,1,23,24,[[888,1,1,23,24]]],[32,1,1,24,25,[[893,1,1,24,25]]],[34,1,1,25,26,[[903,1,1,25,26]]]],[2030,3010,5302,5660,5769,8045,13077,13861,15554,17049,17268,17270,18451,19040,20120,20143,20149,20439,20474,20647,20828,20832,22195,22514,22595,22739]]],["+",[3,3,[[9,1,1,0,1,[[267,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]],[24,1,1,2,3,[[800,1,1,2,3]]]],[8045,19040,20439]]],["eagle",[19,19,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,3,3,1,4,[[166,1,1,1,2],[180,1,1,2,3],[184,1,1,3,4]]],[17,2,2,4,6,[[444,1,1,4,5],[474,1,1,5,6]]],[19,2,2,6,8,[[650,1,1,6,7],[657,1,1,7,8]]],[23,3,3,8,11,[[792,1,1,8,9],[793,2,2,9,11]]],[25,4,4,11,15,[[802,1,1,11,12],[811,1,1,12,13],[818,2,2,13,15]]],[27,1,1,15,16,[[869,1,1,15,16]]],[30,1,1,16,17,[[888,1,1,16,17]]],[32,1,1,17,18,[[893,1,1,17,18]]],[34,1,1,18,19,[[903,1,1,18,19]]]],[3010,5302,5660,5769,13077,13861,17049,17270,20120,20143,20149,20474,20647,20828,20832,22195,22514,22595,22739]]],["eagle's",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15554]]],["eagles",[2,2,[[19,1,1,0,1,[[657,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[17268,18451]]],["eagles'",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2030]]]]},{"k":"H5405","v":[["*",[3,3,[[22,2,2,0,2,[[697,1,1,0,1],[719,1,1,1,2]]],[23,1,1,2,3,[[795,1,1,2,3]]]],[18009,18468,20242]]],["fail",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18009]]],["failed",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20242]]],["faileth",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18468]]]]},{"k":"H5406","v":[["letter",[2,2,[[14,2,2,0,2,[[406,1,1,0,1],[409,1,1,1,2]]]],[12117,12184]]]]},{"k":"H5407","v":[["letter",[3,3,[[14,3,3,0,3,[[406,2,2,0,2],[407,1,1,2,3]]]],[12128,12133,12139]]]]},{"k":"H5408","v":[["*",[9,9,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,3,3,1,4,[[90,2,2,1,3],[97,1,1,3,4]]],[6,2,2,4,6,[[229,1,1,4,5],[230,1,1,5,6]]],[8,1,1,6,7,[[246,1,1,6,7]]],[10,2,2,7,9,[[308,2,2,7,9]]]],[2353,2751,2757,2937,7053,7060,7452,9364,9374]]],["+",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9374]]],["cut",[4,4,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,3,3,1,4,[[90,2,2,1,3],[97,1,1,3,4]]]],[2353,2751,2757,2937]]],["divided",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7053]]],["pieces",[3,3,[[6,1,1,0,1,[[230,1,1,0,1]]],[8,1,1,1,2,[[246,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]]],[7060,7452,9364]]]]},{"k":"H5409","v":[["*",[13,9,[[1,2,1,0,1,[[78,2,1,0,1]]],[2,6,5,1,6,[[90,3,3,1,4],[97,2,1,4,5],[98,1,1,5,6]]],[6,1,1,6,7,[[229,1,1,6,7]]],[25,4,2,7,9,[[825,4,2,7,9]]]],[2353,2751,2753,2757,2937,2966,7053,21060,21062]]],["+",[1,1,[[2,1,1,0,1,[[90,1,1,0,1]]]],[2753]]],["piece",[3,2,[[25,3,2,0,2,[[825,3,2,0,2]]]],[21060,21062]]],["pieces",[9,7,[[1,2,1,0,1,[[78,2,1,0,1]]],[2,5,4,1,5,[[90,2,2,1,3],[97,2,1,3,4],[98,1,1,4,5]]],[6,1,1,5,6,[[229,1,1,5,6]]],[25,1,1,6,7,[[825,1,1,6,7]]]],[2353,2751,2757,2937,2966,7053,21060]]]]},{"k":"H5410","v":[["*",[26,26,[[6,1,1,0,1,[[215,1,1,0,1]]],[17,7,7,1,8,[[453,1,1,1,2],[454,1,1,2,3],[459,1,1,3,4],[463,1,1,4,5],[465,1,1,5,6],[473,1,1,6,7],[476,1,1,7,8]]],[18,4,4,8,12,[[555,1,1,8,9],[596,2,2,9,11],[619,1,1,11,12]]],[19,6,6,12,18,[[628,1,1,12,13],[630,1,1,13,14],[634,1,1,14,15],[635,2,2,15,17],[639,1,1,17,18]]],[22,4,4,18,22,[[720,1,1,18,19],[721,1,1,19,20],[736,1,1,20,21],[737,1,1,21,22]]],[23,2,2,22,24,[[750,1,1,22,23],[762,1,1,23,24]]],[24,1,1,24,25,[[799,1,1,24,25]]],[27,1,1,25,26,[[863,1,1,25,26]]]],[6629,13286,13305,13449,13511,13570,13813,13920,15163,15933,16003,16289,16415,16472,16600,16604,16622,16747,18496,18521,18798,18808,19105,19399,20363,22111]]],["+",[4,4,[[6,1,1,0,1,[[215,1,1,0,1]]],[19,2,2,1,3,[[628,1,1,1,2],[639,1,1,2,3]]],[24,1,1,3,4,[[799,1,1,3,4]]]],[6629,16415,16747,20363]]],["path",[7,7,[[17,3,3,0,3,[[463,1,1,0,1],[465,1,1,1,2],[476,1,1,2,3]]],[18,3,3,3,6,[[596,2,2,3,5],[619,1,1,5,6]]],[22,1,1,6,7,[[721,1,1,6,7]]]],[13511,13570,13920,15933,16003,16289,18521]]],["paths",[13,13,[[17,3,3,0,3,[[454,1,1,0,1],[459,1,1,1,2],[473,1,1,2,3]]],[19,4,4,3,7,[[630,1,1,3,4],[634,1,1,4,5],[635,2,2,5,7]]],[22,3,3,7,10,[[720,1,1,7,8],[736,1,1,8,9],[737,1,1,9,10]]],[23,2,2,10,12,[[750,1,1,10,11],[762,1,1,11,12]]],[27,1,1,12,13,[[863,1,1,12,13]]]],[13305,13449,13813,16472,16600,16604,16622,18496,18798,18808,19105,19399,22111]]],["way",[2,2,[[17,1,1,0,1,[[453,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[13286,15163]]]]},{"k":"H5411","v":[["Nethinims",[17,15,[[12,1,1,0,1,[[346,1,1,0,1]]],[14,7,6,1,7,[[404,3,3,1,4],[409,1,1,4,5],[410,3,2,5,7]]],[15,9,8,7,15,[[415,2,2,7,9],[419,3,3,9,12],[422,1,1,12,13],[423,3,2,13,15]]]],[10617,12070,12085,12097,12180,12218,12221,12353,12358,12466,12480,12493,12577,12591,12609]]]]},{"k":"H5412","v":[["Nethinims",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12197]]]]},{"k":"H5413","v":[["*",[21,19,[[1,1,1,0,1,[[58,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]],[11,1,1,2,3,[[334,1,1,2,3]]],[13,4,4,3,7,[[378,1,1,3,4],[400,3,3,4,7]]],[17,2,2,7,9,[[438,1,1,7,8],[445,1,1,8,9]]],[23,4,3,9,12,[[751,1,1,9,10],[786,2,1,10,11],[788,1,1,11,12]]],[25,5,4,12,16,[[823,4,3,12,15],[825,1,1,15,16]]],[26,2,2,16,18,[[858,2,2,16,18]]],[33,1,1,18,19,[[900,1,1,18,19]]]],[1775,8590,10154,11444,11950,11954,11958,12928,13096,19139,19993,20016,20996,20997,20998,21067,21999,22015,22690]]],["+",[2,2,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]]],[10154,11950]]],["dropped",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8590]]],["forth",[3,2,[[23,3,2,0,2,[[786,2,1,0,1],[788,1,1,1,2]]]],[19993,20016]]],["melt",[2,1,[[25,2,1,0,1,[[823,2,1,0,1]]]],[20996]]],["melted",[2,2,[[25,2,2,0,2,[[823,2,2,0,2]]]],[20997,20998]]],["molten",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21067]]],["out",[7,7,[[13,3,3,0,3,[[378,1,1,0,1],[400,2,2,1,3]]],[17,2,2,3,5,[[438,1,1,3,4],[445,1,1,4,5]]],[23,1,1,5,6,[[751,1,1,5,6]]],[33,1,1,6,7,[[900,1,1,6,7]]]],[11444,11954,11958,12928,13096,19139,22690]]],["poured",[3,3,[[1,1,1,0,1,[[58,1,1,0,1]]],[26,2,2,1,3,[[858,2,2,1,3]]]],[1775,21999,22015]]]]},{"k":"H5414","v":[["*",[2011,1816,[[0,150,132,0,132,[[0,2,2,0,2],[2,3,2,2,4],[3,1,1,4,5],[8,4,4,5,9],[11,1,1,9,10],[12,2,2,10,12],[13,2,2,12,14],[14,5,5,14,19],[15,2,2,19,21],[16,6,6,21,27],[17,2,2,27,29],[19,3,3,29,32],[20,2,2,32,34],[22,7,4,34,38],[23,7,6,38,44],[24,3,3,44,47],[25,2,2,47,49],[26,3,3,49,52],[27,5,4,52,56],[28,8,7,56,63],[29,12,10,63,73],[30,2,2,73,75],[31,1,1,75,76],[33,8,7,76,83],[34,4,2,83,85],[37,8,7,85,92],[38,5,5,92,97],[39,4,4,97,101],[40,7,6,101,107],[41,5,5,107,112],[42,4,3,112,115],[44,6,4,115,119],[45,2,2,119,121],[46,6,6,121,127],[47,4,3,127,130],[48,2,2,130,132]]],[1,115,101,132,233,[[51,2,2,132,134],[52,2,2,134,136],[54,6,5,136,141],[55,3,2,141,143],[56,3,3,143,146],[58,1,1,146,147],[59,1,1,147,148],[60,1,1,148,149],[61,4,4,149,153],[62,2,2,153,155],[65,6,5,155,160],[66,1,1,160,161],[67,1,1,161,162],[69,1,1,162,163],[70,6,6,163,169],[71,5,5,169,174],[72,2,2,174,176],[73,1,1,176,177],[74,8,5,177,182],[75,4,4,182,186],[76,1,1,186,187],[77,7,6,187,193],[78,5,5,193,198],[79,10,9,198,207],[80,3,2,207,209],[81,3,3,209,212],[82,1,1,212,213],[83,1,1,213,214],[84,1,1,214,215],[85,2,2,215,217],[86,1,1,217,218],[88,8,6,218,224],[89,12,9,224,233]]],[2,86,77,233,310,[[90,1,1,233,234],[91,2,2,234,236],[93,5,5,236,241],[94,2,2,241,243],[95,2,2,243,245],[96,3,3,245,248],[97,7,6,248,254],[98,1,1,254,255],[99,3,3,255,258],[100,1,1,258,259],[103,8,7,259,266],[104,1,1,266,267],[105,4,4,267,271],[106,2,2,271,273],[107,3,3,273,276],[108,4,3,276,279],[109,7,6,279,285],[111,2,2,285,287],[112,2,2,287,289],[113,4,3,289,292],[114,6,5,292,297],[115,14,11,297,308],[116,2,2,308,310]]],[3,120,101,310,411,[[119,5,3,310,313],[120,7,5,313,318],[121,8,7,318,325],[122,2,2,325,327],[123,5,5,327,332],[124,4,2,332,334],[126,1,1,334,335],[127,7,5,335,340],[129,1,1,340,341],[130,3,3,341,344],[131,3,3,344,347],[132,6,6,347,353],[133,1,1,353,354],[134,12,10,354,364],[135,2,2,364,366],[136,5,5,366,371],[137,7,6,371,377],[138,2,2,377,379],[140,1,1,379,380],[141,1,1,380,381],[142,2,2,381,383],[143,8,7,383,390],[147,5,5,390,395],[148,6,6,395,401],[149,1,1,401,402],[150,1,1,402,403],[151,12,7,403,410],[152,2,1,410,411]]],[4,176,165,411,576,[[153,10,9,411,420],[154,15,12,420,432],[155,10,9,432,441],[156,5,5,441,446],[157,4,4,446,450],[158,3,3,450,453],[159,7,7,453,460],[160,2,2,460,462],[161,4,4,462,466],[162,3,3,466,469],[163,11,10,469,479],[164,4,4,479,483],[165,3,3,483,486],[166,3,3,486,489],[167,8,6,489,495],[168,6,5,495,500],[169,3,3,500,503],[170,5,5,503,508],[171,7,6,508,514],[172,3,3,514,517],[173,5,5,517,522],[174,3,3,522,525],[175,2,2,525,527],[176,4,4,527,531],[177,2,2,531,533],[178,12,12,533,545],[179,2,2,545,547],[180,17,16,547,563],[181,2,2,563,565],[182,5,5,565,570],[183,3,3,570,573],[184,2,2,573,575],[186,1,1,575,576]]],[5,89,78,576,654,[[187,8,7,576,583],[188,4,4,583,587],[191,1,1,587,588],[192,3,3,588,591],[193,2,2,591,593],[194,3,3,593,596],[195,2,2,596,598],[196,6,5,598,603],[197,3,3,603,606],[198,2,2,606,608],[199,7,6,608,614],[200,5,4,614,618],[201,7,4,618,622],[203,4,3,622,625],[204,2,2,625,627],[205,2,2,627,629],[206,3,3,629,632],[207,11,10,632,642],[208,4,3,642,645],[209,3,3,645,648],[210,7,6,648,654]]],[6,69,63,654,717,[[211,9,7,654,661],[212,2,2,661,663],[213,4,3,663,666],[214,2,2,666,668],[215,1,1,668,669],[216,3,3,669,672],[217,6,6,672,678],[218,8,7,678,685],[219,2,2,685,687],[221,5,4,687,691],[222,1,1,691,692],[223,1,1,692,693],[224,4,4,693,697],[225,6,6,697,703],[226,3,3,703,706],[227,2,2,706,708],[228,1,1,708,709],[230,3,3,709,712],[231,6,5,712,717]]],[7,8,8,717,725,[[232,2,2,717,719],[233,1,1,719,720],[234,1,1,720,721],[235,4,4,721,725]]],[8,72,65,725,790,[[236,7,6,725,731],[237,4,4,731,735],[241,2,2,735,737],[243,3,3,737,740],[244,4,3,740,743],[245,1,1,743,744],[246,1,1,744,745],[247,3,3,745,748],[249,3,3,748,751],[250,1,1,751,752],[252,6,6,752,758],[253,9,7,758,765],[255,1,1,765,766],[256,3,3,766,769],[257,4,3,769,772],[258,2,2,772,774],[259,3,3,774,777],[260,4,4,777,781],[261,1,1,781,782],[262,2,2,782,784],[263,3,2,784,786],[265,5,4,786,790]]],[9,30,26,790,816,[[269,1,1,790,791],[270,2,2,791,793],[271,3,1,793,794],[275,1,1,794,795],[276,1,1,795,796],[277,1,1,796,797],[278,3,2,797,799],[280,1,1,799,800],[282,1,1,800,801],[284,3,3,801,804],[286,2,2,804,806],[287,4,3,806,809],[288,4,4,809,813],[290,3,3,813,816]]],[10,111,97,816,913,[[291,1,1,816,817],[292,5,4,817,821],[293,8,8,821,829],[294,1,1,829,830],[295,9,8,830,838],[296,3,3,838,841],[297,4,3,841,844],[298,11,9,844,853],[299,7,7,853,860],[300,9,6,860,866],[301,9,8,866,874],[302,3,3,874,877],[303,5,5,877,882],[304,4,4,882,886],[305,3,3,886,889],[306,2,2,889,891],[307,3,3,891,894],[308,5,4,894,898],[309,1,1,898,899],[310,3,3,899,902],[311,11,7,902,909],[312,4,4,909,913]]],[11,60,52,913,965,[[315,3,3,913,916],[316,4,3,916,919],[317,4,4,919,923],[318,2,2,923,925],[320,2,2,925,927],[321,1,1,927,928],[322,2,1,928,929],[323,2,2,929,931],[324,7,5,931,936],[325,2,2,936,938],[326,1,1,938,939],[327,2,2,939,941],[328,2,2,941,943],[329,1,1,943,944],[330,6,5,944,949],[331,3,3,949,952],[333,2,2,952,954],[334,6,5,954,959],[335,6,4,959,963],[337,2,2,963,965]]],[12,40,37,965,1002,[[339,1,1,965,966],[342,2,2,966,968],[343,7,7,968,975],[349,1,1,975,976],[351,3,2,976,978],[353,3,3,978,981],[354,1,1,981,982],[356,1,1,982,983],[358,7,5,983,988],[359,4,4,988,992],[362,1,1,992,993],[365,2,2,993,995],[366,7,7,995,1002]]],[13,114,100,1002,1102,[[367,6,4,1002,1006],[368,4,4,1006,1010],[369,2,1,1010,1011],[370,3,3,1011,1014],[371,2,2,1014,1016],[372,10,8,1016,1024],[373,3,2,1024,1026],[374,2,2,1026,1028],[375,9,6,1028,1034],[376,2,2,1034,1036],[377,3,3,1036,1039],[378,1,1,1039,1040],[379,2,2,1040,1042],[382,3,3,1042,1045],[383,4,3,1045,1048],[384,4,4,1048,1052],[386,4,4,1052,1056],[387,3,2,1056,1058],[388,1,1,1058,1059],[389,2,2,1059,1061],[390,4,4,1061,1065],[391,5,4,1065,1069],[392,1,1,1069,1070],[393,1,1,1070,1071],[394,4,3,1071,1074],[395,2,2,1074,1076],[396,3,3,1076,1079],[397,5,5,1079,1084],[398,4,4,1084,1088],[400,8,7,1088,1095],[401,4,4,1095,1099],[402,3,3,1099,1102]]],[14,19,16,1102,1118,[[403,2,2,1102,1104],[404,1,1,1104,1105],[405,1,1,1105,1106],[409,4,3,1106,1109],[410,2,2,1109,1111],[411,7,5,1111,1116],[412,2,2,1116,1118]]],[15,43,36,1118,1154,[[413,1,1,1118,1119],[414,7,6,1119,1125],[416,1,1,1125,1126],[417,1,1,1126,1127],[419,5,4,1127,1131],[421,19,14,1131,1145],[422,3,3,1145,1148],[424,1,1,1148,1149],[425,5,5,1149,1154]]],[16,29,27,1154,1181,[[426,2,2,1154,1156],[427,5,4,1156,1160],[428,4,4,1160,1164],[429,2,1,1164,1165],[430,3,3,1165,1168],[431,2,2,1168,1170],[432,2,2,1170,1172],[433,6,6,1172,1178],[434,3,3,1178,1181]]],[17,33,31,1181,1212,[[436,2,2,1181,1183],[437,1,1,1183,1184],[438,1,1,1184,1185],[440,1,1,1185,1186],[441,2,1,1186,1187],[444,2,2,1187,1189],[446,1,1,1189,1190],[448,1,1,1190,1191],[449,2,2,1191,1193],[450,1,1,1193,1194],[454,2,1,1194,1195],[458,1,1,1195,1196],[459,1,1,1196,1197],[463,1,1,1197,1198],[464,1,1,1198,1199],[466,3,3,1199,1202],[470,2,2,1202,1204],[471,3,3,1204,1207],[472,1,1,1207,1208],[473,1,1,1208,1209],[474,1,1,1209,1210],[477,2,2,1210,1212]]],[18,95,93,1212,1305,[[478,1,1,1212,1213],[479,1,1,1213,1214],[481,1,1,1214,1215],[485,1,1,1215,1216],[487,1,1,1216,1217],[491,1,1,1217,1218],[492,1,1,1218,1219],[493,1,1,1219,1220],[495,5,5,1220,1225],[497,1,1,1225,1226],[498,2,2,1226,1228],[504,1,1,1228,1229],[505,2,1,1229,1230],[506,1,1,1230,1231],[510,1,1,1231,1232],[514,2,2,1232,1234],[516,1,1,1234,1235],[517,1,1,1235,1236],[518,1,1,1236,1237],[521,1,1,1237,1238],[523,1,1,1238,1239],[526,1,1,1239,1240],[527,1,1,1240,1241],[528,1,1,1241,1242],[530,1,1,1242,1243],[532,2,2,1243,1245],[537,1,1,1245,1246],[538,1,1,1246,1247],[543,1,1,1247,1248],[544,1,1,1248,1249],[545,4,4,1249,1253],[546,3,3,1253,1256],[549,2,2,1256,1258],[551,2,2,1258,1260],[554,1,1,1260,1261],[555,5,5,1261,1266],[556,1,1,1266,1267],[558,1,1,1267,1268],[561,1,1,1268,1269],[562,3,2,1269,1271],[563,1,1,1271,1272],[566,1,1,1272,1273],[576,1,1,1273,1274],[581,3,3,1274,1277],[582,3,3,1277,1280],[583,3,3,1280,1283],[588,2,2,1283,1285],[589,1,1,1285,1286],[592,2,2,1286,1288],[595,1,1,1288,1289],[596,1,1,1289,1290],[597,1,1,1290,1291],[598,1,1,1291,1292],[601,1,1,1292,1293],[604,1,1,1293,1294],[609,1,1,1294,1295],[612,1,1,1295,1296],[613,2,2,1296,1298],[617,1,1,1298,1299],[621,1,1,1299,1300],[622,1,1,1300,1301],[623,1,1,1301,1302],[624,2,2,1302,1304],[625,1,1,1304,1305]]],[19,34,34,1305,1339,[[628,2,2,1305,1307],[629,2,2,1307,1309],[630,2,2,1309,1311],[631,2,2,1311,1313],[632,1,1,1313,1314],[633,2,2,1314,1316],[635,1,1,1316,1317],[636,1,1,1317,1318],[637,2,2,1318,1320],[639,1,1,1320,1321],[640,2,2,1321,1323],[648,1,1,1323,1324],[649,2,2,1324,1326],[650,2,2,1326,1328],[653,1,1,1328,1329],[655,1,1,1329,1330],[656,3,3,1330,1333],[657,1,1,1333,1334],[658,5,5,1334,1339]]],[20,25,22,1339,1361,[[659,3,2,1339,1341],[660,4,2,1341,1343],[661,2,2,1343,1345],[663,4,4,1345,1349],[664,1,1,1349,1350],[665,2,2,1350,1352],[666,3,3,1352,1355],[667,2,2,1355,1357],[668,1,1,1357,1358],[669,1,1,1358,1359],[670,2,2,1359,1361]]],[21,7,7,1361,1368,[[671,1,1,1361,1362],[672,1,1,1362,1363],[677,2,2,1363,1365],[678,3,3,1365,1368]]],[22,56,53,1368,1421,[[681,1,1,1368,1369],[685,1,1,1369,1370],[686,1,1,1370,1371],[687,1,1,1371,1372],[700,2,2,1372,1374],[705,1,1,1374,1375],[707,2,2,1375,1377],[708,2,2,1377,1379],[711,1,1,1379,1380],[712,1,1,1380,1381],[713,1,1,1381,1382],[714,3,2,1382,1384],[715,3,3,1384,1387],[718,2,2,1387,1389],[719,4,3,1389,1392],[720,5,5,1392,1397],[721,7,7,1397,1404],[723,1,1,1404,1405],[724,1,1,1405,1406],[725,1,1,1406,1407],[726,1,1,1407,1408],[727,2,2,1408,1410],[728,2,2,1410,1412],[729,1,1,1412,1413],[731,1,1,1413,1414],[733,2,2,1414,1416],[734,2,1,1416,1417],[739,2,2,1417,1419],[740,2,2,1419,1421]]],[23,148,137,1421,1558,[[745,4,4,1421,1425],[746,1,1,1425,1426],[747,3,3,1426,1429],[748,1,1,1429,1430],[749,2,2,1430,1432],[750,2,2,1432,1434],[751,2,2,1434,1436],[752,2,2,1436,1438],[753,5,4,1438,1442],[754,1,1,1442,1443],[755,1,1,1443,1444],[756,3,3,1444,1447],[757,2,2,1447,1449],[758,2,2,1449,1451],[759,4,4,1451,1455],[760,2,2,1455,1457],[761,3,3,1457,1460],[762,1,1,1460,1461],[763,2,2,1461,1463],[764,5,3,1463,1466],[765,3,3,1466,1469],[766,3,3,1469,1472],[767,2,2,1472,1474],[768,4,4,1474,1478],[769,4,4,1478,1482],[770,5,4,1482,1486],[771,5,4,1486,1490],[772,2,1,1490,1491],[773,7,6,1491,1497],[774,2,2,1497,1499],[775,2,2,1499,1501],[776,16,14,1501,1515],[778,7,7,1515,1522],[779,2,2,1522,1524],[780,1,1,1524,1525],[781,5,5,1525,1530],[782,7,6,1530,1536],[783,3,3,1536,1539],[784,2,2,1539,1541],[786,1,1,1541,1542],[787,1,1,1542,1543],[788,3,2,1543,1545],[789,1,1,1545,1546],[790,2,2,1546,1548],[792,2,2,1548,1550],[793,1,1,1550,1551],[794,1,1,1551,1552],[795,3,3,1552,1555],[796,3,3,1555,1558]]],[24,9,9,1558,1567,[[797,3,3,1558,1561],[798,2,2,1561,1563],[799,3,3,1563,1566],[801,1,1,1566,1567]]],[25,208,189,1567,1756,[[803,1,1,1567,1568],[804,6,6,1568,1574],[805,9,8,1574,1582],[806,1,1,1582,1583],[807,3,3,1583,1586],[808,6,6,1586,1592],[810,1,1,1592,1593],[811,1,1,1593,1594],[812,7,5,1594,1599],[813,1,1,1599,1600],[815,2,2,1600,1602],[816,5,4,1602,1606],[817,19,16,1606,1622],[818,5,5,1622,1627],[819,4,4,1627,1631],[820,2,2,1631,1633],[821,7,6,1633,1639],[822,6,5,1639,1644],[823,2,2,1644,1646],[824,9,9,1646,1655],[825,1,1,1655,1656],[826,8,7,1656,1663],[827,8,8,1663,1671],[828,8,8,1671,1679],[829,6,6,1679,1685],[830,7,7,1685,1692],[831,8,8,1692,1700],[832,4,3,1700,1703],[833,14,11,1703,1714],[834,6,6,1714,1720],[835,3,2,1720,1722],[836,4,4,1722,1726],[837,8,6,1726,1732],[838,7,5,1732,1737],[839,1,1,1737,1738],[840,4,4,1738,1742],[844,3,3,1742,1745],[845,3,3,1745,1748],[846,3,3,1748,1751],[847,2,2,1751,1753],[848,3,3,1753,1756]]],[26,17,17,1756,1773,[[850,5,5,1756,1761],[857,2,2,1761,1763],[858,2,2,1763,1765],[859,2,2,1765,1767],[860,5,5,1767,1772],[861,1,1,1772,1773]]],[27,12,9,1773,1782,[[863,4,4,1773,1777],[866,1,1,1777,1778],[870,3,1,1778,1779],[872,2,1,1779,1780],[874,2,2,1780,1782]]],[28,8,8,1782,1790,[[877,6,6,1782,1788],[878,2,2,1788,1790]]],[29,4,4,1790,1794,[[879,1,1,1790,1791],[881,1,1,1791,1792],[882,1,1,1792,1793],[887,1,1,1793,1794]]],[30,1,1,1794,1795,[[888,1,1,1794,1795]]],[31,2,2,1795,1797,[[889,2,2,1795,1797]]],[32,7,7,1797,1804,[[893,1,1,1797,1798],[895,1,1,1798,1799],[897,1,1,1799,1800],[898,3,3,1800,1803],[899,1,1,1803,1804]]],[34,1,1,1804,1805,[[905,1,1,1804,1805]]],[35,2,2,1805,1807,[[908,2,2,1805,1807]]],[36,1,1,1807,1808,[[910,1,1,1807,1808]]],[37,7,5,1808,1813,[[913,2,2,1808,1810],[917,1,1,1810,1811],[918,3,1,1811,1812],[920,1,1,1812,1813]]],[38,3,3,1813,1816,[[926,3,3,1813,1816]]]],[16,28,61,67,91,207,208,217,218,305,333,335,356,357,362,363,367,370,378,384,386,399,402,403,405,413,417,431,432,501,509,511,527,540,575,580,582,584,598,623,626,627,632,644,663,664,692,695,696,744,755,764,777,786,793,795,814,819,821,822,823,824,828,834,836,839,844,848,856,858,861,865,870,880,882,944,988,989,991,992,994,996,1001,1015,1023,1128,1133,1135,1136,1137,1145,1147,1153,1157,1169,1170,1171,1175,1183,1185,1193,1205,1236,1237,1238,1240,1243,1277,1279,1282,1286,1289,1304,1313,1314,1360,1376,1379,1380,1404,1411,1431,1436,1437,1439,1442,1444,1455,1460,1473,1493,1494,1563,1575,1598,1600,1639,1642,1648,1650,1653,1659,1663,1686,1689,1694,1765,1802,1809,1823,1839,1841,1852,1872,1878,1950,1955,1962,1976,1980,1985,2024,2063,2081,2096,2099,2100,2107,2109,2120,2123,2130,2142,2143,2171,2175,2189,2207,2211,2216,2221,2225,2267,2268,2269,2270,2277,2307,2316,2317,2318,2320,2323,2339,2342,2348,2353,2356,2388,2394,2395,2396,2397,2398,2400,2415,2418,2426,2438,2451,2462,2467,2474,2529,2565,2567,2568,2617,2680,2681,2682,2684,2689,2695,2712,2713,2714,2715,2725,2727,2729,2737,2740,2752,2763,2777,2802,2813,2820,2825,2829,2841,2846,2854,2866,2911,2913,2915,2924,2925,2932,2940,2941,2944,2962,2978,2991,2994,3035,3125,3128,3129,3136,3139,3140,3145,3182,3209,3214,3219,3222,3245,3246,3271,3272,3274,3295,3301,3309,3320,3321,3322,3324,3333,3342,3383,3391,3412,3440,3453,3465,3466,3471,3488,3493,3506,3507,3525,3528,3530,3535,3541,3543,3544,3549,3554,3555,3570,3579,3593,3701,3740,3743,3749,3750,3753,3755,3757,3799,3802,3807,3809,3810,3812,3813,3841,3842,3855,3856,3857,3858,3859,3955,3958,4017,4037,4042,4045,4049,4053,4077,4109,4112,4116,4155,4174,4191,4201,4208,4211,4212,4240,4241,4250,4263,4264,4265,4268,4269,4276,4278,4281,4283,4285,4292,4306,4319,4323,4330,4332,4335,4342,4343,4356,4363,4369,4374,4388,4393,4459,4483,4543,4551,4558,4561,4563,4564,4565,4566,4574,4667,4693,4694,4705,4711,4723,4725,4727,4747,4751,4758,4813,4829,4847,4849,4851,4852,4853,4858,4859,4881,4900,4907,4912,4913,4917,4919,4927,4928,4931,4943,4947,4950,4957,4962,4963,4966,4967,4968,4969,4971,4974,4977,4978,4987,4988,4990,4991,4993,4994,4995,5005,5012,5025,5042,5044,5069,5075,5082,5084,5096,5108,5109,5113,5114,5124,5126,5127,5134,5135,5147,5155,5163,5167,5168,5180,5190,5197,5204,5217,5222,5223,5225,5229,5233,5234,5237,5239,5240,5241,5249,5255,5261,5273,5284,5289,5311,5315,5316,5323,5326,5328,5329,5333,5336,5347,5352,5359,5360,5362,5366,5378,5379,5387,5388,5393,5398,5402,5407,5408,5414,5416,5418,5420,5440,5441,5443,5448,5455,5457,5464,5470,5486,5489,5499,5514,5524,5526,5528,5529,5540,5562,5566,5567,5568,5569,5572,5575,5576,5577,5578,5579,5580,5581,5585,5587,5588,5612,5618,5619,5622,5623,5624,5635,5636,5642,5643,5659,5663,5664,5666,5676,5678,5683,5687,5709,5715,5723,5727,5728,5733,5735,5737,5807,5810,5843,5853,5854,5857,5862,5864,5865,5866,5878,5881,5883,5893,5940,5951,5965,5973,5983,5995,6003,6009,6020,6061,6064,6072,6076,6083,6094,6096,6113,6115,6130,6136,6137,6162,6168,6169,6178,6183,6187,6190,6191,6199,6200,6215,6218,6219,6221,6279,6288,6289,6296,6300,6370,6371,6374,6376,6380,6383,6384,6389,6390,6392,6393,6394,6402,6424,6425,6430,6433,6451,6473,6475,6476,6479,6480,6484,6487,6489,6509,6511,6513,6521,6522,6524,6529,6543,6559,6568,6574,6578,6596,6606,6613,6648,6655,6663,6667,6696,6701,6703,6708,6709,6710,6722,6724,6725,6726,6734,6743,6744,6758,6783,6838,6850,6859,6861,6872,6885,6918,6921,6922,6928,6930,6931,6935,6941,6942,6947,6954,6972,6973,6984,6990,7003,7067,7082,7090,7103,7109,7116,7120,7124,7133,7136,7167,7189,7197,7201,7202,7203,7216,7217,7223,7228,7229,7239,7250,7255,7256,7268,7336,7339,7375,7383,7384,7399,7413,7414,7422,7457,7473,7477,7478,7518,7520,7545,7588,7628,7643,7656,7662,7664,7665,7678,7680,7684,7693,7695,7697,7703,7770,7775,7778,7781,7794,7797,7800,7814,7824,7843,7846,7849,7869,7872,7888,7905,7928,7935,7936,7959,7961,7989,7990,8000,8001,8095,8128,8130,8151,8236,8250,8275,8294,8297,8363,8434,8487,8489,8511,8557,8575,8586,8589,8590,8616,8638,8643,8650,8701,8707,8715,8765,8775,8787,8791,8805,8821,8822,8825,8828,8829,8841,8842,8843,8873,8881,8883,8884,8885,8887,8888,8889,8890,8902,8915,8923,8950,8973,8985,9017,9019,9021,9024,9025,9031,9033,9035,9041,9057,9058,9062,9063,9064,9067,9073,9088,9089,9092,9096,9103,9106,9119,9121,9126,9127,9139,9143,9144,9146,9155,9160,9180,9187,9189,9191,9192,9210,9225,9226,9233,9234,9253,9266,9267,9285,9286,9331,9336,9340,9342,9350,9364,9367,9408,9413,9421,9436,9453,9454,9455,9457,9458,9466,9473,9486,9492,9495,9503,9586,9589,9594,9645,9646,9647,9648,9664,9669,9670,9702,9703,9733,9746,9765,9808,9839,9841,9857,9859,9861,9864,9865,9874,9876,9905,9944,9945,9977,9980,10003,10038,10039,10040,10047,10054,10068,10071,10079,10127,10133,10150,10152,10153,10154,10155,10170,10176,10198,10200,10250,10252,10341,10429,10448,10502,10509,10510,10511,10518,10519,10521,10738,10784,10791,10824,10827,10838,10885,10918,10939,10948,10956,10957,10959,10973,10976,10982,10983,11051,11148,11154,11167,11171,11172,11178,11183,11188,11189,11201,11204,11206,11209,11221,11222,11223,11225,11245,11252,11253,11256,11269,11278,11295,11305,11307,11309,11312,11313,11318,11320,11343,11344,11348,11355,11372,11373,11376,11380,11387,11391,11399,11404,11425,11430,11437,11444,11458,11469,11510,11517,11519,11525,11528,11542,11547,11553,11556,11564,11590,11594,11597,11609,11627,11631,11655,11665,11667,11685,11686,11689,11701,11713,11720,11722,11724,11740,11760,11769,11773,11785,11797,11799,11834,11835,11839,11858,11860,11868,11869,11873,11881,11886,11899,11904,11942,11943,11944,11948,11949,11950,11951,11969,11974,11978,11991,12000,12010,12016,12018,12023,12096,12104,12179,12184,12200,12221,12237,12244,12245,12246,12249,12250,12263,12271,12307,12308,12313,12314,12315,12316,12319,12363,12389,12425,12490,12491,12492,12519,12521,12524,12526,12528,12531,12533,12535,12538,12540,12541,12546,12547,12548,12578,12579,12581,12671,12675,12676,12681,12696,12697,12721,12722,12727,12733,12737,12742,12757,12758,12761,12762,12770,12782,12785,12787,12801,12802,12809,12810,12818,12819,12824,12828,12830,12831,12846,12847,12848,12890,12891,12895,12924,12961,12986,13069,13075,13113,13158,13185,13194,13222,13320,13422,13459,13519,13534,13618,13619,13623,13727,13730,13739,13742,13767,13779,13829,13853,13933,13937,13942,13953,13972,14013,14055,14087,14092,14102,14131,14150,14153,14158,14165,14186,14193,14195,14297,14303,14319,14373,14454,14471,14517,14528,14544,14582,14620,14655,14688,14707,14725,14738,14754,14811,14824,14882,14899,14911,14933,14934,14935,14946,14956,14962,15001,15015,15062,15067,15110,15133,15137,15159,15174,15179,15187,15219,15270,15278,15283,15300,15353,15506,15583,15598,15599,15617,15638,15650,15666,15692,15697,15798,15799,15812,15831,15846,15887,16008,16077,16084,16108,16123,16155,16187,16217,16221,16271,16315,16335,16348,16360,16367,16377,16404,16420,16436,16439,16483,16489,16492,16499,16526,16544,16571,16603,16647,16666,16680,16731,16757,16762,17010,17024,17031,17070,17075,17149,17223,17239,17241,17249,17259,17287,17290,17299,17308,17315,17328,17332,17354,17359,17369,17370,17398,17403,17415,17416,17419,17431,17450,17467,17473,17474,17476,17484,17499,17515,17530,17534,17549,17567,17639,17640,17641,17647,17651,17711,17796,17825,17835,18073,18074,18155,18204,18205,18237,18240,18295,18305,18322,18338,18345,18359,18362,18371,18443,18449,18453,18470,18478,18481,18485,18486,18488,18504,18508,18509,18511,18514,18521,18525,18533,18564,18599,18605,18625,18642,18644,18666,18668,18685,18720,18744,18750,18758,18846,18851,18861,18862,18951,18955,18961,18964,18980,19010,19017,19021,19043,19072,19082,19110,19116,19126,19133,19163,19166,19176,19177,19186,19188,19214,19231,19256,19257,19259,19282,19286,19306,19315,19319,19324,19328,19335,19349,19351,19360,19361,19367,19405,19414,19419,19424,19426,19427,19447,19448,19450,19467,19474,19479,19523,19524,19531,19532,19533,19534,19539,19552,19564,19565,19576,19578,19587,19596,19598,19601,19602,19604,19632,19641,19646,19652,19653,19656,19661,19670,19683,19724,19726,19734,19735,19743,19745,19747,19750,19753,19755,19756,19759,19767,19770,19771,19774,19803,19804,19818,19819,19821,19822,19823,19828,19838,19874,19878,19889,19891,19892,19895,19898,19902,19911,19913,19914,19915,19933,19937,19940,19946,19952,19987,20000,20020,20040,20045,20069,20071,20089,20114,20142,20181,20228,20237,20267,20287,20308,20310,20321,20323,20324,20339,20350,20383,20384,20419,20448,20500,20505,20510,20511,20519,20522,20527,20530,20531,20532,20534,20535,20537,20538,20544,20560,20568,20576,20577,20580,20581,20585,20586,20597,20598,20632,20640,20664,20670,20672,20674,20676,20686,20734,20739,20758,20760,20761,20762,20769,20773,20774,20779,20780,20781,20783,20789,20795,20796,20798,20800,20801,20803,20805,20823,20830,20840,20843,20844,20847,20856,20857,20862,20865,20889,20890,20906,20907,20910,20920,20923,20937,20955,20959,20971,20973,20975,20980,21007,21014,21016,21031,21032,21035,21038,21049,21053,21056,21064,21087,21088,21090,21093,21096,21097,21100,21104,21108,21109,21114,21117,21119,21120,21121,21131,21133,21134,21135,21137,21138,21140,21143,21159,21163,21171,21174,21175,21182,21187,21188,21193,21195,21202,21203,21204,21212,21216,21217,21218,21220,21225,21228,21229,21240,21241,21244,21253,21256,21263,21268,21271,21272,21273,21274,21275,21277,21280,21282,21287,21304,21307,21308,21309,21339,21340,21347,21351,21353,21356,21364,21367,21385,21386,21387,21388,21403,21411,21416,21422,21423,21429,21452,21459,21469,21471,21580,21591,21592,21613,21627,21629,21636,21638,21649,21671,21672,21690,21693,21702,21739,21746,21749,21753,21754,21973,21974,21991,21998,22027,22030,22042,22047,22053,22057,22067,22092,22110,22113,22117,22120,22156,22222,22248,22276,22277,22322,22328,22330,22333,22334,22341,22346,22359,22366,22399,22416,22510,22512,22534,22545,22593,22613,22636,22655,22662,22664,22684,22778,22825,22840,22864,22919,22921,22973,22988,23017,23105,23108,23112]]],["+",[292,272,[[0,14,14,0,14,[[8,1,1,0,1],[11,1,1,1,2],[23,2,2,2,4],[24,1,1,4,5],[25,1,1,5,6],[26,1,1,6,7],[28,1,1,7,8],[33,2,2,8,10],[34,1,1,10,11],[39,1,1,11,12],[44,1,1,12,13],[47,1,1,13,14]]],[1,29,25,14,39,[[56,1,1,14,15],[65,1,1,15,16],[72,2,2,16,18],[74,5,3,18,21],[75,2,2,21,23],[77,3,3,23,26],[78,1,1,26,27],[79,1,1,27,28],[86,1,1,28,29],[88,2,2,29,31],[89,10,8,31,39]]],[2,13,13,39,52,[[97,2,2,39,41],[105,1,1,41,42],[107,2,2,42,44],[109,3,3,44,47],[115,4,4,47,51],[116,1,1,51,52]]],[3,32,25,52,77,[[119,4,2,52,54],[121,3,3,54,57],[124,3,2,57,59],[127,2,1,59,60],[132,1,1,60,61],[133,1,1,61,62],[134,1,1,62,63],[136,2,2,63,65],[137,4,3,65,68],[143,5,4,68,72],[147,2,2,72,74],[148,1,1,74,75],[151,1,1,75,76],[152,2,1,76,77]]],[4,21,19,77,96,[[153,3,3,77,80],[154,4,4,80,84],[155,1,1,84,85],[157,1,1,85,86],[161,1,1,86,87],[163,1,1,87,88],[165,1,1,88,89],[167,2,1,89,90],[174,1,1,90,91],[180,5,4,91,95],[182,1,1,95,96]]],[5,9,9,96,105,[[196,2,2,96,98],[197,1,1,98,99],[201,1,1,99,100],[203,1,1,100,101],[206,2,2,101,103],[207,1,1,103,104],[208,1,1,104,105]]],[6,19,17,105,122,[[211,4,4,105,109],[213,2,2,109,111],[214,1,1,111,112],[217,3,3,112,115],[218,3,2,115,117],[219,1,1,117,118],[221,3,2,118,120],[225,1,1,120,121],[226,1,1,121,122]]],[7,1,1,122,123,[[235,1,1,122,123]]],[8,9,8,123,131,[[244,1,1,123,124],[252,1,1,124,125],[255,1,1,125,126],[258,1,1,126,127],[259,1,1,127,128],[260,1,1,128,129],[263,2,1,129,130],[265,1,1,130,131]]],[9,9,8,131,139,[[270,1,1,131,132],[271,2,1,132,133],[277,1,1,133,134],[280,1,1,134,135],[282,1,1,135,136],[284,1,1,136,137],[288,1,1,137,138],[290,1,1,138,139]]],[10,13,13,139,152,[[292,1,1,139,140],[293,1,1,140,141],[296,1,1,141,142],[297,1,1,142,143],[300,1,1,143,144],[301,2,2,144,146],[304,1,1,146,147],[306,1,1,147,148],[308,1,1,148,149],[310,1,1,149,150],[311,2,2,150,152]]],[11,14,14,152,166,[[315,1,1,152,153],[318,2,2,153,155],[321,1,1,155,156],[323,2,2,156,158],[324,2,2,158,160],[326,1,1,160,161],[331,1,1,161,162],[334,1,1,162,163],[335,2,2,163,165],[337,1,1,165,166]]],[12,6,6,166,172,[[339,1,1,166,167],[343,1,1,167,168],[351,1,1,168,169],[358,1,1,169,170],[359,1,1,170,171],[366,1,1,171,172]]],[13,9,9,172,181,[[367,1,1,172,173],[375,1,1,173,174],[377,1,1,174,175],[386,1,1,175,176],[391,1,1,176,177],[396,1,1,177,178],[400,2,2,178,180],[401,1,1,180,181]]],[14,1,1,181,182,[[410,1,1,181,182]]],[15,3,3,182,185,[[421,2,2,182,184],[425,1,1,184,185]]],[16,2,2,185,187,[[430,1,1,185,186],[433,1,1,186,187]]],[17,1,1,187,188,[[458,1,1,187,188]]],[18,7,7,188,195,[[491,1,1,188,189],[492,1,1,189,190],[495,1,1,190,191],[527,1,1,191,192],[530,1,1,192,193],[581,1,1,193,194],[582,1,1,194,195]]],[19,1,1,195,196,[[633,1,1,195,196]]],[20,5,5,196,201,[[659,1,1,196,197],[661,1,1,197,198],[663,1,1,198,199],[666,2,2,199,201]]],[21,3,3,201,204,[[678,3,3,201,204]]],[22,2,2,204,206,[[715,1,1,204,205],[740,1,1,205,206]]],[23,31,28,206,234,[[746,1,1,206,207],[747,1,1,207,208],[752,1,1,208,209],[753,2,2,209,211],[756,3,3,211,214],[762,1,1,214,215],[763,1,1,215,216],[764,1,1,216,217],[765,1,1,217,218],[768,1,1,218,219],[770,1,1,219,220],[771,2,2,220,222],[775,1,1,222,223],[776,6,5,223,228],[778,2,2,228,230],[782,3,2,230,232],[788,2,1,232,233],[796,1,1,233,234]]],[25,32,32,234,266,[[803,1,1,234,235],[804,2,2,235,237],[807,2,2,237,239],[808,2,2,239,241],[816,3,3,241,244],[817,1,1,244,245],[825,1,1,245,246],[826,3,3,246,249],[829,1,1,249,250],[830,3,3,250,253],[831,2,2,253,255],[832,1,1,255,256],[833,4,4,256,260],[834,2,2,260,262],[835,1,1,262,263],[836,1,1,263,264],[837,1,1,264,265],[840,1,1,265,266]]],[26,4,4,266,270,[[850,2,2,266,268],[858,1,1,268,269],[859,1,1,269,270]]],[29,1,1,270,271,[[881,1,1,270,271]]],[37,1,1,271,272,[[918,1,1,271,272]]]],[218,305,598,627,663,695,744,814,994,996,1023,1183,1360,1455,1689,1950,2171,2175,2211,2216,2221,2268,2269,2307,2316,2317,2342,2397,2617,2680,2689,2712,2713,2714,2715,2725,2727,2729,2740,2924,2944,3214,3271,3274,3321,3324,3333,3543,3544,3554,3555,3593,3701,3743,3810,3812,3813,3955,3958,4053,4241,4250,4264,4330,4332,4342,4343,4363,4561,4563,4564,4565,4667,4705,4758,4859,4881,4900,4913,4928,4943,4947,4969,4974,4990,5082,5168,5237,5273,5329,5486,5618,5635,5666,5678,5715,6076,6096,6113,6218,6288,6376,6380,6425,6451,6511,6513,6521,6529,6578,6596,6613,6696,6701,6708,6726,6744,6783,6850,6859,6947,6972,7201,7414,7662,7770,7814,7843,7905,7961,8001,8128,8151,8275,8363,8434,8511,8650,8701,8805,8841,8923,8973,9106,9139,9146,9234,9286,9350,9436,9454,9473,9594,9702,9703,9765,9839,9841,9861,9865,9905,10079,10153,10198,10200,10250,10341,10511,10791,10939,10982,11188,11209,11391,11430,11590,11722,11835,11942,11948,11969,12237,12519,12540,12676,12787,12818,13422,14087,14092,14165,14688,14725,15583,15617,16571,17328,17370,17398,17467,17474,17641,17647,17651,18371,18862,18980,19010,19163,19177,19186,19256,19257,19259,19405,19419,19427,19447,19532,19578,19602,19604,19724,19734,19735,19743,19747,19759,19803,19819,19898,19902,20040,20308,20500,20505,20510,20568,20577,20585,20586,20760,20761,20762,20795,21064,21088,21097,21100,21163,21193,21195,21202,21225,21228,21244,21253,21263,21275,21280,21308,21309,21340,21351,21364,21469,21739,21746,21991,22027,22399,22988]]],["Add",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14962]]],["Appoint",[1,1,[[5,1,1,0,1,[[206,1,1,0,1]]]],[6374]]],["Ascribe",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14934]]],["Count",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7228]]],["Deliver",[2,2,[[9,1,1,0,1,[[269,1,1,0,1]]],[18,1,1,1,2,[[504,1,1,1,2]]]],[8095,14297]]],["Give",[31,31,[[0,3,3,0,3,[[13,1,1,0,1],[29,2,2,1,3]]],[1,1,1,3,4,[[66,1,1,3,4]]],[3,2,2,4,6,[[127,1,1,4,5],[143,1,1,5,6]]],[5,1,1,6,7,[[201,1,1,6,7]]],[6,1,1,7,8,[[218,1,1,7,8]]],[8,2,2,8,10,[[237,1,1,8,9],[243,1,1,9,10]]],[10,5,5,10,15,[[293,2,2,10,12],[307,1,1,12,13],[311,2,2,13,15]]],[11,2,2,15,17,[[316,2,2,15,17]]],[13,1,1,17,18,[[367,1,1,17,18]]],[18,2,2,18,20,[[505,1,1,18,19],[549,1,1,19,20]]],[19,5,5,20,25,[[633,1,1,20,21],[636,1,1,21,22],[658,3,3,22,25]]],[20,1,1,25,26,[[669,1,1,25,26]]],[23,2,2,26,28,[[757,1,1,26,27],[792,1,1,27,28]]],[24,1,1,28,29,[[799,1,1,28,29]]],[27,2,2,29,31,[[870,1,1,29,30],[874,1,1,30,31]]]],[357,844,856,1985,4037,4558,6221,6724,7255,7375,8825,8843,9336,9453,9457,9645,9646,11204,14303,15001,16544,16647,17287,17290,17315,17515,19282,20089,20419,22222,22276]]],["Grant",[3,3,[[12,1,1,0,1,[[358,1,1,0,1]]],[18,2,2,1,3,[[497,1,1,1,2],[617,1,1,2,3]]]],[10956,14186,16271]]],["Shew",[1,1,[[1,1,1,0,1,[[56,1,1,0,1]]]],[1694]]],["Suffer",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17403]]],["add",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4851]]],["appoint",[3,3,[[1,1,1,0,1,[[79,1,1,0,1]]],[3,1,1,1,2,[[151,1,1,1,2]]],[25,1,1,2,3,[[846,1,1,2,3]]]],[2398,4851,21636]]],["appointed",[6,6,[[11,1,1,0,1,[[320,1,1,0,1]]],[12,2,2,1,3,[[343,1,1,1,2],[353,1,1,2,3]]],[14,1,1,3,4,[[410,1,1,3,4]]],[15,1,1,4,5,[[421,1,1,4,5]]],[25,1,1,5,6,[[805,1,1,5,6]]]],[9733,10502,10824,12221,12528,20535]]],["ascribe",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13739]]],["ascribed",[2,1,[[8,2,1,0,1,[[253,2,1,0,1]]]],[7684]]],["bestow",[2,2,[[1,1,1,0,1,[[81,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[2467,5316]]],["bestowed",[2,2,[[11,1,1,0,1,[[324,1,1,0,1]]],[12,1,1,1,2,[[366,1,1,1,2]]]],[9865,11189]]],["bring",[9,9,[[8,1,1,0,1,[[246,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[17,1,1,2,3,[[449,1,1,2,3]]],[18,1,1,3,4,[[558,1,1,3,4]]],[23,2,2,4,6,[[767,1,1,4,5],[770,1,1,5,6]]],[25,2,2,6,8,[[822,1,1,6,7],[829,1,1,7,8]]],[35,1,1,8,9,[[908,1,1,8,9]]]],[7457,9017,13185,15219,19524,19587,20973,21175,22825]]],["bringeth",[2,2,[[19,1,1,0,1,[[656,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[17249,18443]]],["brought",[1,1,[[13,1,1,0,1,[[383,1,1,0,1]]]],[11528]]],["cast",[2,2,[[2,1,1,0,1,[[105,1,1,0,1]]],[25,1,1,1,2,[[816,1,1,1,2]]]],[3209,20758]]],["cause",[4,4,[[2,1,1,0,1,[[113,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[23,1,1,2,3,[[759,1,1,2,3]]],[25,1,1,3,4,[[827,1,1,3,4]]]],[3465,5636,19319,21117]]],["caused",[6,6,[[2,1,1,0,1,[[113,1,1,0,1]]],[25,5,5,1,6,[[817,1,1,1,2],[833,4,4,2,6]]]],[3466,20769,21271,21272,21273,21274]]],["causeth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16666]]],["charge",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12581]]],["charged",[1,1,[[17,1,1,0,1,[[436,1,1,0,1]]]],[12891]]],["cometh",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16757]]],["commit",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18073]]],["committed",[5,5,[[0,2,2,0,2,[[38,2,2,0,2]]],[13,1,1,2,3,[[400,1,1,2,3]]],[23,1,1,3,4,[[783,1,1,3,4]]],[25,1,1,4,5,[[824,1,1,4,5]]]],[1157,1171,11949,19937,21014]]],["considered",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17476]]],["cried",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4109]]],["deliver",[59,58,[[0,3,3,0,3,[[39,1,1,0,1],[41,2,2,1,3]]],[1,3,3,3,6,[[54,1,1,3,4],[71,2,2,4,6]]],[4,8,8,6,14,[[153,1,1,6,7],[154,1,1,7,8],[155,1,1,8,9],[159,4,4,9,13],[171,1,1,13,14]]],[5,2,2,14,16,[[193,1,1,14,15],[194,1,1,15,16]]],[6,6,6,16,22,[[214,1,1,16,17],[221,1,1,17,18],[225,2,2,18,20],[230,2,2,20,22]]],[8,1,1,22,23,[[249,1,1,22,23]]],[9,2,2,23,25,[[271,1,1,23,24],[286,1,1,24,25]]],[10,6,6,25,31,[[298,1,1,25,26],[310,2,2,26,28],[312,3,3,28,31]]],[11,6,6,31,37,[[315,2,2,31,33],[324,1,1,33,34],[330,1,1,34,35],[333,1,1,35,36],[334,1,1,36,37]]],[12,2,1,37,38,[[351,2,1,37,38]]],[13,4,4,38,42,[[372,1,1,38,39],[384,2,2,39,41],[391,1,1,41,42]]],[18,2,2,42,44,[[518,1,1,42,43],[551,1,1,43,44]]],[22,1,1,44,45,[[707,1,1,44,45]]],[23,8,8,45,53,[[759,1,1,45,46],[768,1,1,46,47],[773,2,2,47,49],[782,2,2,49,51],[787,1,1,51,52],[790,1,1,52,53]]],[25,5,5,53,58,[[812,1,1,53,54],[822,1,1,54,55],[824,1,1,55,56],[826,2,2,56,58]]]],[1185,1286,1289,1650,2120,2123,4919,4968,4977,5113,5127,5134,5135,5418,5983,6009,6606,6838,6941,6942,7067,7082,7545,8151,8575,9031,9413,9421,9486,9492,9495,9586,9589,9857,10047,10133,10150,10784,11318,11547,11553,11724,14544,15067,18204,19324,19533,19653,19656,19914,19915,20000,20071,20664,20975,21035,21087,21090]]],["delivered",[76,75,[[0,2,2,0,2,[[8,1,1,0,1],[31,1,1,1,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[3,1,1,3,4,[[137,1,1,3,4]]],[4,7,7,4,11,[[154,1,1,4,5],[155,1,1,5,6],[157,1,1,6,7],[161,1,1,7,8],[172,1,1,8,9],[173,1,1,9,10],[183,1,1,10,11]]],[5,6,6,11,17,[[188,1,1,11,12],[196,3,3,12,15],[197,1,1,15,16],[210,1,1,16,17]]],[6,11,11,17,28,[[212,2,2,17,19],[216,2,2,19,21],[217,2,2,21,23],[218,1,1,23,24],[221,1,1,24,25],[222,1,1,25,26],[223,1,1,26,27],[226,1,1,27,28]]],[8,5,5,28,33,[[249,2,2,28,30],[258,1,1,30,31],[259,1,1,31,32],[261,1,1,32,33]]],[9,3,3,33,36,[[276,1,1,33,34],[287,2,2,34,36]]],[10,3,3,36,39,[[303,1,1,36,37],[305,1,1,37,38],[307,1,1,38,39]]],[11,7,7,39,46,[[325,1,1,39,40],[329,1,1,40,41],[330,1,1,41,42],[331,1,1,42,43],[334,3,3,43,46]]],[12,3,3,46,49,[[342,1,1,46,47],[353,1,1,47,48],[356,1,1,48,49]]],[13,10,9,49,58,[[379,1,1,49,50],[382,1,1,50,51],[384,1,1,51,52],[389,1,1,52,53],[390,1,1,53,54],[394,3,2,54,56],[395,1,1,56,57],[400,1,1,57,58]]],[14,1,1,58,59,[[411,1,1,58,59]]],[16,1,1,59,60,[[431,1,1,59,60]]],[18,1,1,60,61,[[555,1,1,60,61]]],[22,3,3,61,64,[[707,1,1,61,62],[712,1,1,62,63],[714,1,1,63,64]]],[23,4,4,64,68,[[776,1,1,64,65],[778,1,1,65,66],[781,1,1,66,67],[790,1,1,67,68]]],[24,1,1,68,69,[[797,1,1,68,69]]],[25,6,6,69,75,[[817,2,2,69,71],[824,1,1,71,72],[832,2,2,72,74],[833,1,1,74,75]]]],[207,944,3549,4374,4971,4978,5075,5167,5440,5457,5737,5893,6072,6083,6094,6115,6487,6559,6568,6655,6667,6703,6709,6722,6861,6872,6885,6973,7518,7520,7824,7849,7928,8250,8586,8589,9210,9267,9340,9874,10003,10054,10071,10152,10154,10155,10448,10827,10918,11469,11517,11556,11665,11701,11769,11773,11799,11950,12244,12802,15174,18205,18305,18345,19767,19804,19891,20069,20324,20783,20789,21016,21241,21244,21268]]],["deliveredst",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12538]]],["delivereth",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17308]]],["direct",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18851]]],["distribute",[1,1,[[13,1,1,0,1,[[397,1,1,0,1]]]],[11868]]],["done",[1,1,[[2,1,1,0,1,[[113,1,1,0,1]]]],[3466]]],["fasten",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2318,2695]]],["fastened",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2682]]],["forth",[9,9,[[3,1,1,0,1,[[136,1,1,0,1]]],[18,1,1,1,2,[[478,1,1,1,2]]],[19,1,1,2,3,[[635,1,1,2,3]]],[21,1,1,3,4,[[671,1,1,3,4]]],[22,1,1,4,5,[[721,1,1,4,5]]],[25,4,4,5,9,[[819,2,2,5,7],[828,1,1,7,8],[837,1,1,8,9]]]],[4319,13942,16603,17549,18514,20857,20862,21131,21367]]],["frame",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22156]]],["gave",[230,214,[[0,38,34,0,34,[[2,2,2,0,2],[13,1,1,2,3],[15,1,1,3,4],[17,1,1,4,5],[19,1,1,5,6],[20,2,2,6,8],[23,3,2,8,10],[24,2,2,10,12],[27,1,1,12,13],[28,3,3,13,16],[29,3,3,16,19],[34,2,2,19,21],[37,2,2,21,23],[38,1,1,23,24],[39,1,1,24,25],[40,1,1,25,26],[42,2,1,26,27],[44,4,2,27,29],[45,2,2,29,31],[46,3,3,31,34]]],[1,5,5,34,39,[[51,1,1,34,35],[60,1,1,35,36],[61,1,1,36,37],[80,1,1,37,38],[81,1,1,38,39]]],[3,7,7,39,46,[[123,4,4,39,43],[127,1,1,43,44],[147,1,1,44,45],[148,1,1,45,46]]],[4,6,6,46,52,[[154,1,1,46,47],[155,3,3,47,50],[162,1,1,50,51],[181,1,1,51,52]]],[5,36,34,52,86,[[187,2,2,52,54],[197,1,1,54,55],[198,2,2,55,57],[199,7,6,57,63],[200,3,3,63,66],[201,3,3,66,69],[203,1,1,69,70],[204,1,1,70,71],[205,2,2,71,73],[207,8,8,73,81],[208,2,2,81,83],[210,4,3,83,86]]],[6,12,12,86,98,[[211,2,2,86,88],[213,1,1,88,89],[215,1,1,89,90],[216,1,1,90,91],[219,1,1,91,92],[224,2,2,92,94],[225,1,1,94,95],[227,1,1,95,96],[230,1,1,96,97],[231,1,1,97,98]]],[7,4,4,98,102,[[233,1,1,98,99],[234,1,1,99,100],[235,2,2,100,102]]],[8,11,10,102,112,[[236,2,2,102,104],[244,1,1,104,105],[253,2,2,105,107],[256,1,1,107,108],[257,2,1,108,109],[262,1,1,109,110],[265,2,2,110,112]]],[9,2,1,112,113,[[278,2,1,112,113]]],[10,17,13,113,126,[[294,1,1,113,114],[295,4,3,114,117],[299,1,1,117,118],[300,4,2,118,120],[301,3,2,120,122],[303,1,1,122,123],[304,2,2,123,125],[309,1,1,125,126]]],[11,8,8,126,134,[[322,1,1,126,127],[324,1,1,127,128],[325,1,1,128,129],[327,1,1,129,130],[330,2,2,130,132],[333,1,1,132,133],[335,1,1,133,134]]],[12,10,10,134,144,[[343,5,5,134,139],[358,1,1,139,140],[362,1,1,140,141],[365,1,1,141,142],[366,2,2,142,144]]],[13,16,14,144,158,[[375,3,2,144,146],[377,1,1,146,147],[379,1,1,147,148],[387,2,1,148,149],[390,1,1,149,150],[392,1,1,150,151],[393,1,1,151,152],[394,1,1,152,153],[398,1,1,153,154],[400,2,2,154,156],[401,1,1,156,157],[402,1,1,157,158]]],[14,4,4,158,162,[[404,1,1,158,159],[405,1,1,159,160],[409,1,1,160,161],[412,1,1,161,162]]],[15,7,6,162,168,[[414,2,2,162,164],[419,4,3,164,167],[424,1,1,167,168]]],[16,5,5,168,173,[[427,2,2,168,170],[428,1,1,170,171],[429,1,1,171,172],[433,1,1,172,173]]],[17,3,3,173,176,[[436,1,1,173,174],[477,2,2,174,176]]],[18,11,11,176,187,[[495,1,1,176,177],[545,1,1,177,178],[546,1,1,178,179],[555,1,1,179,180],[576,1,1,180,181],[582,2,2,181,183],[583,2,2,183,185],[612,1,1,185,186],[613,1,1,186,187]]],[20,2,2,187,189,[[659,1,1,187,188],[670,1,1,188,189]]],[22,5,4,189,193,[[719,2,1,189,190],[720,1,1,190,191],[721,1,1,191,192],[728,1,1,192,193]]],[23,10,10,193,203,[[751,2,2,193,195],[760,1,1,195,196],[761,1,1,196,197],[767,1,1,197,198],[768,1,1,198,199],[774,1,1,199,200],[780,1,1,200,201],[783,1,1,201,202],[784,1,1,202,203]]],[25,6,6,203,209,[[817,1,1,203,204],[821,3,3,204,207],[837,1,1,207,208],[840,1,1,208,209]]],[26,2,2,209,211,[[850,2,2,209,211]]],[27,2,2,211,213,[[863,1,1,211,212],[874,1,1,212,213]]],[38,1,1,213,214,[[926,1,1,213,214]]]],[61,67,356,384,431,509,527,540,623,644,664,692,777,819,823,824,834,839,865,1015,1023,1137,1145,1170,1193,1240,1314,1379,1380,1404,1411,1431,1437,1442,1575,1809,1852,2438,2462,3856,3857,3858,3859,4049,4711,4751,4950,4987,4988,4991,5190,5687,5865,5866,6130,6136,6137,6162,6168,6169,6178,6183,6187,6190,6191,6200,6215,6219,6221,6279,6300,6370,6371,6384,6389,6390,6392,6393,6394,6402,6424,6430,6433,6479,6480,6484,6522,6524,6574,6648,6663,6758,6918,6928,6931,6984,7090,7116,7167,7189,7197,7203,7216,7217,7414,7680,7703,7778,7797,7936,7989,7990,8294,8873,8888,8889,8890,9062,9089,9092,9126,9127,9187,9226,9233,9408,9808,9864,9876,9944,10039,10040,10127,10200,10509,10510,10518,10519,10521,10959,11051,11154,11171,11172,11373,11376,11437,11458,11627,11689,11740,11760,11785,11899,11943,11944,11974,12010,12096,12104,12184,12271,12308,12316,12490,12491,12492,12671,12733,12742,12757,12770,12819,12890,13933,13937,14131,14911,14956,15159,15506,15638,15650,15666,15692,16187,16217,17332,17530,18453,18504,18508,18668,19126,19133,19351,19361,19523,19534,19670,19874,19933,19946,20781,20906,20907,20920,21387,21471,21753,21754,22113,22277,23108]]],["gavest",[21,19,[[0,1,1,0,1,[[2,1,1,0,1]]],[10,3,3,1,4,[[298,3,3,1,4]]],[13,4,4,4,8,[[372,3,3,4,7],[386,1,1,7,8]]],[15,11,9,8,17,[[421,11,9,8,17]]],[18,2,2,17,19,[[498,1,1,17,18],[551,1,1,18,19]]]],[67,9019,9025,9033,11307,11313,11320,11594,12524,12526,12531,12533,12535,12538,12541,12546,12547,14195,15062]]],["gift",[1,1,[[3,1,1,0,1,[[124,1,1,0,1]]]],[3958]]],["give",[383,363,[[0,44,39,0,39,[[12,2,2,0,2],[14,2,2,2,4],[16,2,2,4,6],[22,7,4,6,10],[23,1,1,10,11],[25,1,1,11,12],[26,1,1,12,13],[27,4,4,13,17],[28,3,3,17,20],[29,3,2,20,22],[33,6,5,22,27],[34,1,1,27,28],[37,4,4,28,32],[41,2,2,32,34],[42,1,1,34,35],[44,1,1,35,36],[46,3,3,36,39]]],[1,24,23,39,62,[[51,1,1,39,40],[52,1,1,40,41],[54,2,2,41,43],[55,3,2,43,45],[59,1,1,45,46],[61,1,1,46,47],[62,2,2,47,49],[65,1,1,49,50],[70,3,3,50,53],[71,3,3,53,56],[73,1,1,56,57],[79,3,3,57,60],[81,1,1,60,61],[82,1,1,61,62]]],[2,14,14,62,76,[[94,1,1,62,63],[95,1,1,63,64],[96,1,1,64,65],[103,1,1,65,66],[104,1,1,66,67],[109,1,1,67,68],[111,1,1,68,69],[112,2,2,69,71],[114,3,3,71,74],[115,2,2,74,76]]],[3,30,28,76,104,[[119,1,1,76,77],[121,1,1,77,78],[123,1,1,78,79],[126,1,1,79,80],[127,3,3,80,83],[129,1,1,83,84],[130,1,1,84,85],[131,2,2,85,87],[134,1,1,87,88],[135,1,1,88,89],[137,1,1,89,90],[138,1,1,90,91],[140,1,1,91,92],[141,1,1,92,93],[147,2,2,93,95],[148,1,1,95,96],[150,1,1,96,97],[151,9,7,97,104]]],[4,40,39,104,143,[[153,5,5,104,109],[154,4,4,109,113],[156,1,1,113,114],[157,1,1,114,115],[158,2,2,115,117],[159,2,2,117,119],[162,1,1,119,120],[163,3,3,120,123],[166,1,1,123,124],[167,1,1,124,125],[168,1,1,125,126],[170,2,2,126,128],[171,2,1,128,129],[172,1,1,129,130],[174,2,2,130,132],[176,2,2,132,134],[178,1,1,134,135],[180,3,3,135,138],[182,1,1,138,139],[183,1,1,139,140],[184,2,2,140,142],[186,1,1,142,143]]],[5,11,11,143,154,[[187,2,2,143,145],[188,1,1,145,146],[191,1,1,146,147],[194,1,1,147,148],[195,1,1,148,149],[200,1,1,149,150],[201,1,1,150,151],[203,1,1,151,152],[207,2,2,152,154]]],[6,12,12,154,166,[[211,1,1,154,155],[218,3,3,155,158],[224,2,2,158,160],[226,1,1,160,161],[227,1,1,161,162],[231,4,4,162,166]]],[7,1,1,166,167,[[235,1,1,166,167]]],[8,23,22,167,189,[[236,2,1,167,168],[237,3,3,168,171],[241,1,1,171,172],[243,2,2,172,174],[244,1,1,174,175],[245,1,1,175,176],[252,4,4,176,180],[253,2,2,180,182],[256,2,2,182,184],[257,1,1,184,185],[260,2,2,185,187],[262,1,1,187,188],[265,1,1,188,189]]],[9,3,3,189,192,[[278,1,1,189,190],[287,1,1,190,191],[290,1,1,191,192]]],[10,23,21,192,213,[[292,1,1,192,193],[293,2,2,193,195],[295,1,1,195,196],[298,4,4,196,200],[301,4,4,200,204],[303,2,2,204,206],[305,1,1,206,207],[308,1,1,207,208],[311,7,5,208,213]]],[11,6,6,213,219,[[317,1,1,213,214],[320,1,1,214,215],[322,1,1,215,216],[327,1,1,216,217],[334,1,1,217,218],[335,1,1,218,219]]],[12,6,5,219,224,[[353,1,1,219,220],[358,2,1,220,221],[359,2,2,221,223],[366,1,1,223,224]]],[13,10,10,224,234,[[367,2,2,224,226],[368,1,1,226,227],[387,1,1,227,228],[391,1,1,228,229],[396,1,1,229,230],[397,3,3,230,233],[401,1,1,233,234]]],[14,5,3,234,237,[[411,5,3,234,237]]],[15,6,6,237,243,[[414,1,1,237,238],[416,1,1,238,239],[421,2,2,239,241],[422,1,1,241,242],[425,1,1,242,243]]],[16,2,2,243,245,[[426,2,2,243,245]]],[17,1,1,245,246,[[437,1,1,245,246]]],[18,14,14,246,260,[[479,1,1,246,247],[505,1,1,247,248],[506,1,1,248,249],[514,1,1,249,250],[526,1,1,250,251],[528,1,1,251,252],[555,1,1,252,253],[561,1,1,253,254],[562,1,1,254,255],[563,1,1,255,256],[581,1,1,256,257],[588,1,1,257,258],[592,1,1,258,259],[609,1,1,259,260]]],[19,9,9,260,269,[[628,1,1,260,261],[630,1,1,261,262],[631,2,2,262,264],[632,1,1,264,265],[650,1,1,265,266],[656,2,2,266,268],[657,1,1,268,269]]],[20,1,1,269,270,[[660,1,1,269,270]]],[21,3,3,270,273,[[672,1,1,270,271],[677,2,2,271,273]]],[22,19,18,273,291,[[681,1,1,273,274],[685,1,1,274,275],[708,2,2,275,277],[714,1,1,277,278],[719,1,1,278,279],[720,2,2,279,281],[721,2,2,281,283],[723,1,1,283,284],[726,1,1,284,285],[727,2,2,285,287],[733,1,1,287,288],[734,2,1,288,289],[739,1,1,289,290],[740,1,1,290,291]]],[23,26,26,291,317,[[747,2,2,291,293],[755,1,1,293,294],[758,2,2,294,296],[759,1,1,296,297],[761,2,2,297,299],[763,1,1,299,300],[764,2,2,300,302],[766,1,1,302,303],[768,1,1,303,304],[769,1,1,304,305],[770,1,1,305,306],[773,2,2,306,308],[774,1,1,308,309],[776,3,3,309,312],[778,2,2,312,314],[781,1,1,314,315],[782,1,1,315,316],[789,1,1,316,317]]],[24,1,1,317,318,[[798,1,1,317,318]]],[25,32,30,318,348,[[808,1,1,318,319],[812,3,2,319,321],[817,6,6,321,327],[818,1,1,327,328],[821,2,2,328,330],[822,2,2,330,332],[824,2,2,332,334],[826,1,1,334,335],[830,1,1,335,336],[834,1,1,336,337],[837,2,1,337,338],[840,2,2,338,340],[844,1,1,340,341],[845,2,2,341,343],[846,1,1,343,344],[847,2,2,344,346],[848,2,2,346,348]]],[26,4,4,348,352,[[850,1,1,348,349],[857,1,1,349,350],[860,2,2,350,352]]],[27,4,3,352,355,[[863,2,2,352,354],[870,2,1,354,355]]],[28,1,1,355,356,[[877,1,1,355,356]]],[32,2,2,356,358,[[893,1,1,356,357],[898,1,1,357,358]]],[36,1,1,358,359,[[910,1,1,358,359]]],[37,4,3,359,362,[[913,1,1,359,360],[918,2,1,360,361],[920,1,1,361,362]]],[38,1,1,362,363,[[926,1,1,362,363]]]],[333,335,362,367,405,413,575,580,582,584,632,696,755,777,786,793,795,814,821,822,858,861,988,989,991,992,1001,1023,1128,1135,1136,1137,1277,1279,1304,1376,1436,1439,1444,1563,1600,1639,1642,1659,1663,1802,1841,1872,1878,1955,2100,2107,2109,2130,2142,2143,2189,2394,2395,2396,2451,2474,2846,2854,2911,3145,3182,3342,3383,3412,3440,3471,3506,3507,3528,3530,3740,3799,3855,4017,4037,4042,4045,4077,4116,4155,4174,4285,4292,4356,4393,4459,4483,4693,4694,4747,4829,4847,4849,4851,4852,4853,4858,4859,4900,4912,4917,4927,4931,4943,4947,4957,4966,5042,5084,5096,5109,5114,5124,5197,5217,5222,5229,5311,5333,5352,5387,5388,5414,5443,5489,5499,5526,5540,5569,5622,5623,5676,5728,5735,5807,5810,5843,5853,5857,5881,5940,6020,6061,6199,6221,6279,6383,6424,6524,6725,6734,6743,6921,6922,6954,6990,7103,7109,7120,7124,7202,7223,7250,7256,7268,7336,7383,7384,7399,7422,7628,7643,7664,7665,7693,7697,7775,7781,7794,7869,7872,7935,8000,8297,8586,8715,8787,8821,8842,8884,9017,9021,9024,9035,9119,9121,9143,9144,9191,9192,9253,9364,9453,9455,9457,9458,9466,9669,9746,9808,9945,10150,10200,10838,10957,10973,10976,11183,11201,11206,11221,11631,11713,11839,11858,11869,11873,11978,12245,12246,12249,12315,12363,12519,12526,12579,12696,12721,12722,12895,13953,14303,14319,14454,14655,14707,15133,15270,15283,15300,15598,15799,15831,16155,16404,16483,16492,16499,16526,17070,17239,17241,17259,17359,17567,17639,17640,17711,17796,18237,18240,18338,18478,18486,18488,18509,18525,18564,18625,18642,18644,18750,18758,18846,18861,19017,19021,19231,19306,19315,19328,19360,19367,19414,19426,19427,19479,19531,19565,19596,19641,19646,19683,19750,19753,19770,19821,19822,19895,19911,20045,20350,20598,20672,20674,20795,20798,20800,20801,20803,20823,20840,20923,20937,20955,20971,21038,21053,21093,21204,21307,21385,21452,21459,21591,21627,21629,21638,21671,21672,21693,21702,21749,21974,22053,22057,22110,22120,22222,22328,22593,22655,22864,22919,22988,23017,23105]]],["given",[235,231,[[0,17,16,0,16,[[0,1,1,0,1],[8,1,1,1,2],[14,2,2,2,4],[15,1,1,4,5],[19,1,1,5,6],[23,1,1,6,7],[26,1,1,7,8],[28,1,1,8,9],[29,3,2,9,11],[30,1,1,11,12],[37,1,1,12,13],[42,1,1,13,14],[47,2,2,14,16]]],[1,6,6,16,22,[[54,2,2,16,18],[65,2,2,18,20],[70,1,1,20,21],[80,1,1,21,22]]],[2,8,8,22,30,[[95,1,1,22,23],[96,2,2,23,25],[99,2,2,25,27],[106,1,1,27,28],[108,1,1,28,29],[109,1,1,29,30]]],[3,20,19,30,49,[[132,1,1,30,31],[134,9,8,31,39],[136,2,2,39,41],[137,1,1,41,42],[142,2,2,42,44],[143,1,1,44,45],[148,3,3,45,48],[149,1,1,48,49]]],[4,25,24,49,73,[[154,2,2,49,51],[155,4,3,51,54],[160,1,1,54,55],[161,1,1,55,56],[164,2,2,56,58],[165,1,1,58,59],[168,1,1,59,60],[172,1,1,60,61],[178,7,7,61,68],[180,4,4,68,72],[181,1,1,72,73]]],[5,17,17,73,90,[[187,2,2,73,75],[188,2,2,75,77],[192,2,2,77,79],[194,1,1,79,80],[200,1,1,80,81],[201,1,1,81,82],[203,1,1,82,83],[204,1,1,83,84],[208,1,1,84,85],[209,3,3,85,88],[210,2,2,88,90]]],[6,3,3,90,93,[[211,1,1,90,91],[225,1,1,91,92],[228,1,1,92,93]]],[8,8,7,93,100,[[236,1,1,93,94],[250,1,1,94,95],[253,2,1,95,96],[257,1,1,96,97],[260,1,1,97,98],[263,1,1,98,99],[265,1,1,99,100]]],[9,5,5,100,105,[[270,1,1,100,101],[275,1,1,101,102],[284,1,1,102,103],[288,2,2,103,105]]],[10,14,14,105,119,[[291,1,1,105,106],[292,1,1,106,107],[293,3,3,107,110],[295,1,1,110,111],[298,2,2,111,113],[299,4,4,113,117],[303,1,1,117,118],[308,1,1,118,119]]],[11,4,4,119,123,[[317,2,2,119,121],[335,1,1,121,122],[337,1,1,122,123]]],[12,4,4,123,127,[[342,1,1,123,124],[365,1,1,124,125],[366,2,2,125,127]]],[13,7,7,127,134,[[368,1,1,127,128],[372,1,1,128,129],[373,1,1,129,130],[391,1,1,130,131],[398,1,1,131,132],[400,1,1,132,133],[402,1,1,133,134]]],[14,3,3,134,137,[[403,1,1,134,135],[409,1,1,135,136],[411,1,1,136,137]]],[15,3,3,137,140,[[414,1,1,137,138],[422,1,1,138,139],[425,1,1,139,140]]],[16,13,13,140,153,[[427,3,3,140,143],[428,3,3,143,146],[429,1,1,146,147],[430,1,1,147,148],[432,1,1,148,149],[433,3,3,149,152],[434,1,1,152,153]]],[17,7,7,153,160,[[438,1,1,153,154],[444,1,1,154,155],[450,1,1,155,156],[459,1,1,156,157],[472,1,1,157,158],[473,1,1,158,159],[474,1,1,159,160]]],[18,14,14,160,174,[[495,2,2,160,162],[498,1,1,162,163],[521,1,1,163,164],[537,1,1,164,165],[538,1,1,165,166],[549,1,1,166,167],[555,1,1,167,168],[556,1,1,168,169],[588,1,1,169,170],[589,1,1,170,171],[592,1,1,171,172],[597,1,1,172,173],[601,1,1,173,174]]],[20,6,6,174,180,[[659,1,1,174,175],[661,1,1,175,176],[663,1,1,176,177],[664,1,1,177,178],[667,1,1,178,179],[670,1,1,179,180]]],[22,9,9,180,189,[[686,1,1,180,181],[687,1,1,181,182],[711,1,1,182,183],[713,1,1,183,184],[715,1,1,184,185],[721,1,1,185,186],[725,1,1,186,187],[728,1,1,187,188],[733,1,1,188,189]]],[23,16,16,189,205,[[752,1,1,189,190],[757,1,1,190,191],[765,1,1,191,192],[769,1,1,192,193],[771,2,2,193,195],[772,1,1,195,196],[776,4,4,196,200],[779,1,1,200,201],[782,1,1,201,202],[783,1,1,202,203],[794,1,1,203,204],[796,1,1,204,205]]],[24,2,2,205,207,[[797,1,1,205,206],[801,1,1,206,207]]],[25,17,17,207,224,[[805,1,1,207,208],[812,1,1,208,209],[816,1,1,209,210],[817,2,2,210,212],[818,1,1,212,213],[819,2,2,213,215],[821,1,1,215,216],[822,1,1,216,217],[829,1,1,217,218],[830,2,2,218,220],[834,1,1,220,221],[836,1,1,221,222],[838,1,1,222,223],[848,1,1,223,224]]],[26,2,2,224,226,[[857,1,1,224,225],[860,1,1,225,226]]],[27,1,1,226,227,[[863,1,1,226,227]]],[28,2,2,227,229,[[877,1,1,227,228],[878,1,1,228,229]]],[29,2,2,229,231,[[882,1,1,229,230],[887,1,1,230,231]]]],[28,208,363,378,386,511,626,764,828,836,848,882,1133,1313,1460,1473,1648,1650,1962,1976,2081,2426,2866,2913,2915,2991,2994,3246,3301,3321,4208,4263,4265,4268,4269,4276,4278,4281,4283,4323,4335,4369,4543,4551,4566,4723,4725,4727,4813,4957,4962,4993,4994,4995,5147,5180,5255,5261,5284,5359,5441,5575,5576,5577,5578,5579,5580,5581,5642,5643,5663,5664,5683,5854,5864,5878,5883,5951,5965,6003,6190,6221,6289,6296,6433,6473,6475,6476,6489,6509,6524,6935,7003,7239,7588,7695,7800,7888,7959,8001,8130,8236,8489,8638,8643,8765,8791,8822,8828,8829,8885,9021,9041,9058,9063,9064,9067,9189,9367,9648,9664,10176,10252,10429,11148,11167,11178,11223,11309,11344,11713,11904,11951,12016,12018,12179,12250,12314,12578,12681,12727,12733,12737,12758,12761,12762,12770,12782,12810,12824,12830,12831,12848,12924,13075,13222,13459,13779,13829,13853,14153,14158,14193,14582,14811,14824,15015,15137,15187,15798,15812,15846,16077,16108,17328,17369,17416,17419,17484,17534,17825,17835,18295,18322,18362,18533,18605,18666,18744,19166,19286,19450,19539,19601,19602,19632,19753,19755,19756,19774,19838,19913,19940,20181,20310,20321,20448,20544,20670,20760,20779,20796,20843,20856,20865,20910,20955,21182,21188,21203,21304,21356,21422,21690,21973,22047,22117,22334,22346,22416,22510]]],["givest",[6,6,[[4,2,2,0,2,[[167,2,2,0,2]]],[17,1,1,2,3,[[470,1,1,2,3]]],[18,2,2,3,5,[[581,1,1,3,4],[622,1,1,4,5]]],[25,1,1,5,6,[[817,1,1,5,6]]]],[5328,5329,13727,15599,16335,20796]]],["giveth",[76,75,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[65,1,1,1,2],[69,1,1,2,3]]],[2,3,3,3,6,[[109,2,2,3,5],[116,1,1,5,6]]],[3,1,1,6,7,[[121,1,1,6,7]]],[4,34,34,7,41,[[154,1,1,7,8],[156,3,3,8,11],[157,1,1,11,12],[160,1,1,12,13],[161,1,1,13,14],[163,2,2,14,16],[164,2,2,16,18],[167,2,2,18,20],[168,3,3,20,23],[169,2,2,23,25],[170,1,1,25,26],[171,4,4,26,30],[173,2,2,30,32],[176,2,2,32,34],[177,2,2,34,36],[178,2,2,36,38],[179,2,2,38,40],[180,1,1,40,41]]],[5,2,2,41,43,[[187,2,2,41,43]]],[6,1,1,43,44,[[231,1,1,43,44]]],[17,4,4,44,48,[[440,1,1,44,45],[470,1,1,45,46],[471,2,2,46,48]]],[18,8,8,48,56,[[514,1,1,48,49],[545,1,1,49,50],[604,1,1,50,51],[613,1,1,51,52],[621,1,1,52,53],[623,1,1,53,54],[624,2,2,54,56]]],[19,10,10,56,66,[[629,1,1,56,57],[630,1,1,57,58],[640,1,1,58,59],[648,1,1,59,60],[649,2,2,60,62],[650,1,1,62,63],[653,1,1,63,64],[655,1,1,64,65],[658,1,1,65,66]]],[20,4,3,66,69,[[660,2,1,66,67],[663,1,1,67,68],[666,1,1,68,69]]],[22,2,2,69,71,[[718,1,1,69,70],[720,1,1,70,71]]],[23,3,3,71,74,[[749,1,1,71,72],[766,1,1,72,73],[775,1,1,73,74]]],[24,1,1,74,75,[[799,1,1,74,75]]]],[1494,1976,2063,3320,3322,3579,3802,4967,5005,5025,5044,5069,5155,5163,5225,5239,5241,5249,5323,5326,5347,5360,5362,5366,5378,5393,5407,5408,5416,5420,5448,5470,5528,5529,5562,5566,5567,5568,5587,5588,5619,5862,5866,7120,12961,13730,13742,13767,14471,14935,16123,16221,16315,16348,16360,16367,16439,16489,16762,17010,17024,17031,17075,17149,17223,17299,17359,17415,17473,18449,18485,19082,19467,19726,20384]]],["giving",[5,5,[[4,2,2,0,2,[[162,1,1,0,1],[173,1,1,1,2]]],[7,1,1,2,3,[[232,1,1,2,3]]],[10,1,1,3,4,[[295,1,1,3,4]]],[13,1,1,4,5,[[372,1,1,4,5]]]],[5204,5464,7133,8887,11305]]],["gotten",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13519]]],["grant",[8,8,[[2,1,1,0,1,[[114,1,1,0,1]]],[7,1,1,1,2,[[232,1,1,1,2]]],[8,1,1,2,3,[[236,1,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[13,1,1,4,5,[[378,1,1,4,5]]],[15,1,1,5,6,[[413,1,1,5,6]]],[17,1,1,6,7,[[441,1,1,6,7]]],[18,1,1,7,8,[[562,1,1,7,8]]]],[3493,7136,7229,10956,11444,12307,12986,15278]]],["granted",[9,9,[[13,1,1,0,1,[[367,1,1,0,1]]],[14,1,1,1,2,[[409,1,1,1,2]]],[15,1,1,2,3,[[414,1,1,2,3]]],[16,5,5,3,8,[[430,1,1,3,4],[432,1,1,4,5],[433,1,1,5,6],[434,2,2,6,8]]],[19,1,1,8,9,[[637,1,1,8,9]]]],[11206,12179,12315,12785,12809,12828,12846,12847,16680]]],["had",[2,2,[[17,1,1,0,1,[[466,1,1,0,1]]],[18,1,1,1,2,[[532,1,1,1,2]]]],[13619,14738]]],["hang",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2267]]],["laid",[8,8,[[0,1,1,0,1,[[14,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]],[11,1,1,2,3,[[317,1,1,2,3]]],[13,1,1,3,4,[[397,1,1,3,4]]],[18,1,1,4,5,[[596,1,1,4,5]]],[25,2,2,5,7,[[805,1,1,5,6],[833,1,1,6,7]]],[37,1,1,7,8,[[913,1,1,7,8]]]],[370,5572,9670,11860,16008,20534,21277,22921]]],["lay",[16,16,[[4,3,3,0,3,[[159,1,1,0,1],[163,1,1,1,2],[173,1,1,2,3]]],[8,1,1,3,4,[[241,1,1,3,4]]],[10,1,1,4,5,[[308,1,1,4,5]]],[20,1,1,5,6,[[665,1,1,5,6]]],[22,1,1,6,7,[[700,1,1,6,7]]],[23,1,1,7,8,[[750,1,1,7,8]]],[25,7,7,8,15,[[804,1,1,8,9],[805,3,3,9,12],[829,1,1,12,13],[837,1,1,13,14],[838,1,1,14,15]]],[31,1,1,15,16,[[889,1,1,15,16]]]],[5126,5233,5455,7339,9364,17431,18074,19110,20522,20530,20531,20537,21174,21388,21403,22545]]],["leave",[2,2,[[3,1,1,0,1,[[138,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[4388,17354]]],["left",[1,1,[[23,1,1,0,1,[[784,1,1,0,1]]]],[19952]]],["lend",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3506]]],["let",[5,5,[[1,1,1,0,1,[[52,1,1,0,1]]],[2,1,1,1,2,[[107,1,1,1,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[13,2,2,3,5,[[382,1,1,3,4],[386,1,1,4,5]]]],[1598,3272,7678,11510,11597]]],["made",[35,35,[[0,2,2,0,2,[[16,1,1,0,1],[40,1,1,1,2]]],[1,2,2,2,4,[[56,1,1,2,3],[67,1,1,3,4]]],[2,1,1,4,5,[[115,1,1,4,5]]],[4,1,1,5,6,[[153,1,1,5,6]]],[5,1,1,6,7,[[195,1,1,6,7]]],[10,4,4,7,11,[[296,1,1,7,8],[300,1,1,8,9],[304,1,1,9,10],[306,1,1,10,11]]],[12,1,1,11,12,[[349,1,1,11,12]]],[13,7,7,12,19,[[367,1,1,12,13],[368,1,1,13,14],[375,2,2,14,16],[390,1,1,16,17],[391,1,1,17,18],[401,1,1,18,19]]],[15,1,1,19,20,[[425,1,1,19,20]]],[18,4,4,20,24,[[516,1,1,20,21],[546,1,1,21,22],[583,1,1,22,23],[625,1,1,23,24]]],[22,2,2,24,26,[[729,1,1,24,25],[731,1,1,25,26]]],[23,2,2,26,28,[[745,1,1,26,27],[773,1,1,27,28]]],[24,2,2,28,30,[[797,1,1,28,29],[798,1,1,29,30]]],[25,3,3,30,33,[[804,2,2,30,32],[823,1,1,32,33]]],[30,1,1,33,34,[[888,1,1,33,34]]],[38,1,1,34,35,[[926,1,1,34,35]]]],[402,1238,1686,2024,3570,4907,6064,8902,9106,9225,9285,10738,11209,11222,11372,11391,11686,11720,11991,12697,14517,14946,15697,16377,18685,18720,18964,19661,20323,20339,20511,20519,20980,22512,23112]]],["make",[47,47,[[0,5,5,0,5,[[8,1,1,0,1],[16,3,3,1,4],[47,1,1,4,5]]],[2,2,2,5,7,[[108,1,1,5,6],[111,1,1,6,7]]],[3,2,2,7,9,[[121,1,1,7,8],[130,1,1,8,9]]],[4,3,3,9,12,[[168,1,1,9,10],[178,1,1,10,11],[180,1,1,11,12]]],[5,1,1,12,13,[[193,1,1,12,13]]],[10,1,1,13,14,[[299,1,1,13,14]]],[12,1,1,14,15,[[354,1,1,14,15]]],[13,2,2,15,17,[[373,1,1,15,16],[374,1,1,16,17]]],[14,1,1,17,18,[[412,1,1,17,18]]],[18,1,1,18,19,[[566,1,1,18,19]]],[23,11,11,19,30,[[749,1,1,19,20],[753,1,1,20,21],[759,1,1,21,22],[764,1,1,22,23],[769,1,1,23,24],[770,1,1,24,25],[773,1,1,25,26],[778,2,2,26,28],[793,1,1,28,29],[795,1,1,29,30]]],[25,13,13,30,43,[[806,1,1,30,31],[826,2,2,31,33],[827,5,5,33,38],[831,1,1,38,39],[835,1,1,39,40],[836,2,2,40,42],[845,1,1,42,43]]],[27,1,1,43,44,[[872,1,1,43,44]]],[28,1,1,44,45,[[877,1,1,44,45]]],[32,1,1,45,46,[[898,1,1,45,46]]],[35,1,1,46,47,[[908,1,1,46,47]]]],[217,399,403,417,1455,3309,3391,3813,4112,5360,5585,5624,5995,9073,10885,11344,11355,12263,15353,19072,19186,19335,19426,19552,19578,19652,19818,19823,20142,20237,20560,21087,21096,21104,21108,21114,21119,21121,21216,21339,21347,21353,21613,22248,22330,22664,22840]]],["maketh",[2,2,[[18,1,1,0,1,[[495,1,1,0,1]]],[22,1,1,1,2,[[721,1,1,1,2]]]],[14150,18521]]],["might",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12986]]],["occupied",[3,3,[[25,3,3,0,3,[[828,3,3,0,3]]]],[21137,21140,21143]]],["offer",[2,2,[[3,1,1,0,1,[[134,1,1,0,1]]],[25,1,1,1,2,[[807,1,1,1,2]]]],[4269,20576]]],["ordained",[2,2,[[11,1,1,0,1,[[335,1,1,0,1]]],[23,1,1,1,2,[[745,1,1,1,2]]]],[10170,18951]]],["out",[4,4,[[0,1,1,0,1,[[37,1,1,0,1]]],[18,2,2,1,3,[[545,1,1,1,2],[554,1,1,2,3]]],[23,1,1,3,4,[[748,1,1,3,4]]]],[1147,14933,15110,19043]]],["over",[2,2,[[13,1,1,0,1,[[398,1,1,0,1]]],[18,1,1,1,2,[[595,1,1,1,2]]]],[11886,15887]]],["oversight",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12675]]],["paid",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22534]]],["pay",[2,2,[[1,2,2,0,2,[[70,2,2,0,2]]]],[2096,2099]]],["perform",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22684]]],["place",[3,3,[[22,1,1,0,1,[[724,1,1,0,1]]],[25,1,1,1,2,[[838,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[18599,21423,22067]]],["placed",[1,1,[[13,1,1,0,1,[[383,1,1,0,1]]]],[11525]]],["plant",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18470]]],["planted",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20830]]],["pour",[1,1,[[2,1,1,0,1,[[103,1,1,0,1]]]],[3129]]],["presented",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20923]]],["print",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3309]]],["pulled",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22973]]],["put",[155,151,[[0,5,5,0,5,[[38,2,2,0,2],[39,1,1,2,3],[40,2,2,3,5]]],[1,27,26,5,31,[[54,1,1,5,6],[65,1,1,6,7],[74,2,2,7,9],[75,1,1,9,10],[76,1,1,10,11],[77,3,3,11,14],[78,4,4,14,18],[79,4,3,18,21],[80,1,1,21,22],[83,1,1,22,23],[84,1,1,23,24],[85,2,2,24,26],[88,3,3,26,29],[89,2,2,29,31]]],[2,26,26,31,57,[[90,1,1,31,32],[91,2,2,32,34],[93,5,5,34,39],[94,1,1,39,40],[97,5,5,40,45],[98,1,1,45,46],[99,1,1,46,47],[100,1,1,47,48],[103,6,6,48,54],[105,1,1,54,55],[108,1,1,55,56],[113,1,1,56,57]]],[3,18,16,57,73,[[120,7,5,57,62],[121,2,2,62,64],[122,2,2,64,66],[131,1,1,66,67],[132,4,4,67,71],[135,1,1,71,72],[143,1,1,72,73]]],[4,4,4,73,77,[[154,1,1,73,74],[170,1,1,74,75],[175,1,1,75,76],[180,1,1,76,77]]],[5,1,1,77,78,[[192,1,1,77,78]]],[6,1,1,78,79,[[217,1,1,78,79]]],[8,1,1,79,80,[[252,1,1,79,80]]],[9,1,1,80,81,[[286,1,1,80,81]]],[10,10,10,81,91,[[292,2,2,81,83],[295,1,1,83,84],[297,1,1,84,85],[300,2,2,85,87],[302,3,3,87,90],[312,1,1,90,91]]],[11,3,3,91,94,[[324,1,1,91,92],[328,2,2,92,94]]],[13,18,17,94,111,[[368,1,1,94,95],[369,2,1,95,96],[370,1,1,96,97],[371,2,2,97,99],[375,2,2,99,101],[376,2,2,101,103],[377,1,1,103,104],[382,1,1,104,105],[383,1,1,105,106],[384,1,1,106,107],[388,1,1,107,108],[389,1,1,108,109],[400,1,1,109,110],[402,1,1,110,111]]],[14,2,2,111,113,[[403,1,1,111,112],[409,1,1,112,113]]],[15,2,2,113,115,[[414,1,1,113,114],[419,1,1,114,115]]],[18,3,3,115,118,[[481,1,1,115,116],[517,1,1,116,117],[555,1,1,117,118]]],[22,1,1,118,119,[[720,1,1,118,119]]],[23,11,11,119,130,[[745,1,1,119,120],[764,1,1,120,121],[771,1,1,121,122],[772,1,1,122,123],[773,1,1,123,124],[776,2,2,124,126],[781,3,3,126,129],[796,1,1,129,130]]],[25,21,21,130,151,[[804,1,1,130,131],[805,1,1,131,132],[811,1,1,132,133],[812,1,1,133,134],[815,1,1,134,135],[817,2,2,135,137],[820,1,1,137,138],[824,1,1,138,139],[830,1,1,139,140],[831,2,2,140,142],[833,1,1,142,143],[837,2,2,143,145],[838,3,3,145,148],[839,1,1,148,149],[844,1,1,149,150],[846,1,1,150,151]]]],[1153,1169,1175,1205,1237,1653,1980,2207,2211,2270,2277,2318,2320,2323,2339,2348,2353,2356,2388,2400,2418,2426,2529,2565,2567,2568,2681,2682,2684,2714,2737,2752,2763,2777,2802,2813,2820,2825,2829,2841,2924,2925,2932,2940,2941,2962,2978,3035,3125,3128,3136,3139,3140,3145,3219,3295,3453,3749,3750,3753,3755,3757,3807,3809,3841,3842,4191,4201,4211,4212,4240,4306,4574,4963,5402,5524,5659,5973,6710,7656,8557,8775,8805,8881,8985,9096,9103,9155,9160,9180,9503,9859,9977,9980,11225,11245,11252,11269,11278,11380,11387,11399,11404,11425,11519,11542,11564,11655,11667,11943,12000,12023,12200,12319,12425,13972,14528,15179,18481,18955,19424,19598,19632,19661,19745,19771,19878,19889,19892,20287,20527,20538,20640,20674,20734,20773,20774,20890,21049,21187,21217,21229,21273,21385,21386,21403,21411,21416,21429,21592,21649]]],["puttest",[1,1,[[11,1,1,0,1,[[330,1,1,0,1]]]],[10038]]],["putteth",[3,3,[[1,1,1,0,1,[[79,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]],[32,1,1,2,3,[[895,1,1,2,3]]]],[2415,20383,22613]]],["putting",[1,1,[[2,1,1,0,1,[[105,1,1,0,1]]]],[3222]]],["recompense",[7,7,[[25,7,7,0,7,[[808,2,2,0,2],[810,1,1,2,3],[812,1,1,3,4],[817,1,1,4,5],[818,1,1,5,6],[824,1,1,6,7]]]],[20580,20581,20632,20676,20805,20844,21056]]],["recompensed",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[21007]]],["recompensing",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11305]]],["render",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11312]]],["requite",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14055]]],["restored",[1,1,[[13,1,1,0,1,[[374,1,1,0,1]]]],[11348]]],["send",[6,6,[[4,1,1,0,1,[[163,1,1,0,1]]],[8,1,1,1,2,[[247,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[11,1,1,3,4,[[331,1,1,3,4]]],[13,1,1,4,5,[[372,1,1,4,5]]],[22,1,1,5,6,[[715,1,1,5,6]]]],[5223,7477,9342,10068,11309,18359]]],["sendeth",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9331]]],["sent",[4,4,[[1,1,1,0,1,[[58,1,1,0,1]]],[8,1,1,1,2,[[247,1,1,1,2]]],[9,1,1,2,3,[[290,1,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]]],[1765,7478,8707,10948]]],["set",[79,79,[[0,4,4,0,4,[[0,1,1,0,1],[17,1,1,1,2],[29,1,1,2,3],[40,1,1,3,4]]],[1,1,1,4,5,[[74,1,1,4,5]]],[2,3,3,5,8,[[106,1,1,5,6],[115,2,2,6,8]]],[4,8,8,8,16,[[156,1,1,8,9],[163,2,2,9,11],[169,1,1,11,12],[180,1,1,12,13],[182,3,3,13,16]]],[8,1,1,16,17,[[247,1,1,16,17]]],[10,6,6,17,23,[[295,1,1,17,18],[296,1,1,18,19],[297,2,2,19,21],[299,1,1,21,22],[300,1,1,22,23]]],[11,4,4,23,27,[[316,2,2,23,25],[324,1,1,25,26],[330,1,1,26,27]]],[12,1,1,27,28,[[359,1,1,27,28]]],[13,9,9,28,37,[[370,2,2,28,30],[372,1,1,30,31],[373,1,1,31,32],[375,1,1,32,33],[383,1,1,33,34],[386,1,1,34,35],[390,1,1,35,36],[398,1,1,36,37]]],[15,3,3,37,40,[[414,1,1,37,38],[417,1,1,38,39],[421,1,1,39,40]]],[16,1,1,40,41,[[431,1,1,40,41]]],[18,1,1,41,42,[[485,1,1,41,42]]],[20,1,1,42,43,[[668,1,1,42,43]]],[22,2,2,43,45,[[705,1,1,43,44],[714,1,1,44,45]]],[23,7,7,45,52,[[745,1,1,45,46],[750,1,1,46,47],[753,1,1,47,48],[765,1,1,48,49],[770,1,1,49,50],[779,1,1,50,51],[788,1,1,51,52]]],[25,25,25,52,77,[[805,2,2,52,54],[808,1,1,54,55],[813,1,1,55,56],[815,1,1,56,57],[817,2,2,57,59],[818,1,1,59,60],[820,1,1,60,61],[822,1,1,61,62],[824,2,2,62,64],[827,2,2,64,66],[829,2,2,66,68],[831,3,3,68,71],[833,3,3,71,74],[834,2,2,74,76],[838,1,1,76,77]]],[26,2,2,77,79,[[858,1,1,77,78],[859,1,1,78,79]]]],[16,432,870,1236,2225,3245,3535,3541,5012,5234,5240,5379,5612,5709,5723,5727,7473,8883,8915,8950,8973,9057,9088,9646,9647,9859,10047,10983,11253,11256,11295,11343,11372,11525,11609,11685,11881,12313,12389,12548,12801,14013,17499,18155,18338,18961,19116,19188,19448,19576,19828,20020,20531,20532,20597,20686,20739,20780,20781,20847,20889,20959,21031,21032,21109,21120,21159,21171,21212,21218,21220,21256,21271,21273,21282,21287,21423,21998,22030]]],["setting",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21580]]],["shew",[4,4,[[4,1,1,0,1,[[165,1,1,0,1]]],[23,2,2,1,3,[[760,1,1,1,2],[786,1,1,2,3]]],[28,1,1,3,4,[[877,1,1,3,4]]]],[5289,19349,19987,22341]]],["shewed",[1,1,[[4,1,1,0,1,[[158,1,1,0,1]]]],[5108]]],["shewedst",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12521]]],["sit",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7413]]],["strike",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1823]]],["suffer",[9,9,[[1,1,1,0,1,[[61,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[6,2,2,2,4,[[211,1,1,2,3],[225,1,1,3,4]]],[10,1,1,4,5,[[305,1,1,4,5]]],[17,1,1,5,6,[[444,1,1,5,6]]],[18,3,3,6,9,[[493,1,1,6,7],[532,1,1,7,8],[598,1,1,8,9]]]],[1839,6083,6543,6930,9266,13069,14102,14754,16084]]],["suffered",[7,7,[[0,2,2,0,2,[[19,1,1,0,1],[30,1,1,1,2]]],[4,1,1,2,3,[[170,1,1,2,3]]],[6,1,1,3,4,[[213,1,1,3,4]]],[8,1,1,4,5,[[259,1,1,4,5]]],[9,1,1,5,6,[[287,1,1,5,6]]],[17,1,1,6,7,[[466,1,1,6,7]]]],[501,880,5398,6596,7846,8590,13618]]],["suffereth",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14882]]],["take",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17450]]],["thrust",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5336]]],["tied",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2695]]],["took",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1282]]],["traded",[4,4,[[25,4,4,0,4,[[828,4,4,0,4]]]],[21133,21134,21135,21138]]],["turn",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5315]]],["turned",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11797]]],["up",[17,16,[[0,2,1,0,1,[[40,2,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[4,2,2,2,4,[[175,1,1,2,3],[183,1,1,3,4]]],[9,1,1,4,5,[[284,1,1,4,5]]],[13,1,1,5,6,[[396,1,1,5,6]]],[18,1,1,6,7,[[510,1,1,6,7]]],[19,1,1,7,8,[[629,1,1,7,8]]],[22,1,1,8,9,[[721,1,1,8,9]]],[23,1,1,9,10,[[766,1,1,9,10]]],[25,1,1,10,11,[[832,1,1,10,11]]],[26,2,2,11,13,[[860,1,1,11,12],[861,1,1,12,13]]],[27,1,1,13,14,[[872,1,1,13,14]]],[32,2,2,14,16,[[897,1,1,14,15],[898,1,1,15,16]]]],[1243,3525,5514,5733,8487,11834,14373,16436,18511,19474,21240,22042,22092,22248,22636,22662]]],["utter",[4,4,[[23,1,1,0,1,[[769,1,1,0,1]]],[28,2,2,1,3,[[877,1,1,1,2],[878,1,1,2,3]]],[29,1,1,3,4,[[879,1,1,3,4]]]],[19564,22322,22359,22366]]],["uttered",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[523,1,1,1,2]]],[23,2,2,2,4,[[792,1,1,2,3],[795,1,1,3,4]]],[34,1,1,4,5,[[905,1,1,4,5]]]],[8616,14620,20114,20267,22778]]],["uttereth",[3,3,[[19,1,1,0,1,[[628,1,1,0,1]]],[23,2,2,1,3,[[754,1,1,1,2],[795,1,1,2,3]]]],[16420,19214,20228]]],["were",[4,3,[[17,3,2,0,2,[[454,2,1,0,1],[464,1,1,1,2]]],[23,1,1,2,3,[[753,1,1,2,3]]]],[13320,13534,19176]]],["would",[3,3,[[17,3,3,0,3,[[446,1,1,0,1],[448,1,1,1,2],[466,1,1,2,3]]]],[13113,13158,13623]]],["wouldest",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13194]]],["yield",[11,10,[[0,2,2,0,2,[[3,1,1,0,1],[48,1,1,1,2]]],[2,4,3,2,5,[[114,1,1,2,3],[115,3,2,3,5]]],[4,1,1,5,6,[[163,1,1,5,6]]],[18,2,2,6,8,[[544,1,1,6,7],[562,1,1,7,8]]],[25,1,1,8,9,[[835,1,1,8,9]]],[28,1,1,9,10,[[877,1,1,9,10]]]],[91,1493,3488,3528,3544,5225,14899,15283,21340,22333]]],["yieldeth",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16731]]]]},{"k":"H5415","v":[["*",[7,6,[[14,3,2,0,2,[[406,1,1,0,1],[409,2,1,1,2]]],[26,4,4,2,6,[[851,1,1,2,3],[853,3,3,3,6]]]],[12123,12193,21774,21854,21862,21869]]],["bestow",[2,1,[[14,2,1,0,1,[[409,2,1,0,1]]]],[12193]]],["give",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21774]]],["giveth",[3,3,[[26,3,3,0,3,[[853,3,3,0,3]]]],[21854,21862,21869]]],["pay",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12123]]]]},{"k":"H5416","v":[["Nathan",[41,38,[[9,13,12,0,12,[[271,1,1,0,1],[273,4,4,1,5],[278,7,6,5,11],[289,1,1,11,12]]],[10,13,12,12,24,[[291,11,11,12,23],[294,2,1,23,24]]],[12,10,9,24,33,[[339,2,1,24,25],[340,1,1,25,26],[348,1,1,26,27],[351,1,1,27,28],[354,4,4,28,32],[366,1,1,32,33]]],[13,2,2,33,35,[[375,1,1,33,34],[395,1,1,34,35]]],[14,2,2,35,37,[[410,1,1,35,36],[412,1,1,36,37]]],[37,1,1,37,38,[[922,1,1,37,38]]]],[8146,8182,8183,8184,8197,8287,8291,8293,8299,8301,8311,8689,8725,8727,8728,8739,8740,8741,8749,8751,8755,8761,8762,8849,10342,10366,10711,10778,10864,10865,10866,10878,11193,11393,11816,12217,12291,23057]]]]},{"k":"H5417","v":[["Nethaneel",[14,14,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]],[12,4,4,5,9,[[339,1,1,5,6],[352,1,1,6,7],[361,1,1,7,8],[363,1,1,8,9]]],[13,2,2,9,11,[[383,1,1,9,10],[401,1,1,10,11]]],[14,1,1,11,12,[[412,1,1,11,12]]],[15,2,2,12,14,[[424,2,2,12,14]]]],[3612,3663,3868,3873,4003,10320,10815,11021,11081,11530,11975,12274,12645,12660]]]]},{"k":"H5418","v":[["Nethaniah",[20,20,[[11,2,2,0,2,[[337,2,2,0,2]]],[12,2,2,2,4,[[362,2,2,2,4]]],[13,1,1,4,5,[[383,1,1,4,5]]],[23,15,15,5,20,[[780,1,1,5,6],[784,3,3,6,9],[785,11,11,9,20]]]],[10245,10247,11048,11058,11531,19856,19949,19955,19956,19958,19959,19963,19964,19966,19967,19968,19969,19972,19973,19975]]]]},{"k":"H5419","v":[["Nathanmelech",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10176]]]]},{"k":"H5420","v":[["mar",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13570]]]]},{"k":"H5421","v":[["broken",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12940]]]]},{"k":"H5422","v":[["*",[42,41,[[1,1,1,0,1,[[83,1,1,0,1]]],[2,2,2,1,3,[[100,1,1,1,2],[103,1,1,2,3]]],[4,2,2,3,5,[[159,1,1,3,4],[164,1,1,4,5]]],[6,8,8,5,13,[[212,1,1,5,6],[216,4,4,6,10],[218,2,2,10,12],[219,1,1,12,13]]],[11,8,7,13,20,[[322,2,1,13,14],[323,1,1,14,15],[335,4,4,15,19],[337,1,1,19,20]]],[13,6,6,20,26,[[389,1,1,20,21],[397,1,1,21,22],[399,1,1,22,23],[400,2,2,23,25],[402,1,1,25,26]]],[17,1,1,26,27,[[454,1,1,26,27]]],[18,2,2,27,29,[[529,1,1,27,28],[535,1,1,28,29]]],[22,1,1,29,30,[[700,1,1,29,30]]],[23,7,7,30,37,[[745,1,1,30,31],[748,1,1,31,32],[762,1,1,32,33],[775,1,1,33,34],[777,1,1,34,35],[783,1,1,35,36],[796,1,1,36,37]]],[25,3,3,37,40,[[817,1,1,37,38],[827,2,2,38,40]]],[33,1,1,40,41,[[900,1,1,40,41]]]],[2509,3032,3156,5116,5243,6547,6682,6684,6685,6686,6728,6736,6799,9820,9847,10172,10173,10177,10180,10232,11673,11855,11911,11937,11940,12012,13307,14715,14785,18062,18956,19053,19391,19719,19779,19931,20290,20801,21109,21112,22690]]],["+",[16,15,[[1,1,1,0,1,[[83,1,1,0,1]]],[2,1,1,1,2,[[103,1,1,1,2]]],[4,1,1,2,3,[[164,1,1,2,3]]],[6,5,5,3,8,[[216,3,3,3,6],[218,1,1,6,7],[219,1,1,7,8]]],[11,4,3,8,11,[[322,2,1,8,9],[335,2,2,9,11]]],[13,4,4,11,15,[[397,1,1,11,12],[400,2,2,12,14],[402,1,1,14,15]]]],[2509,3156,5243,6684,6685,6686,6728,6799,9820,10172,10173,11855,11937,11940,12012]]],["destroy",[3,3,[[4,1,1,0,1,[[159,1,1,0,1]]],[18,1,1,1,2,[[529,1,1,1,2]]],[25,1,1,2,3,[[827,1,1,2,3]]]],[5116,14715,21112]]],["destroyed",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13307]]],["down",[21,21,[[2,1,1,0,1,[[100,1,1,0,1]]],[6,3,3,1,4,[[212,1,1,1,2],[216,1,1,2,3],[218,1,1,3,4]]],[11,4,4,4,8,[[323,1,1,4,5],[335,2,2,5,7],[337,1,1,7,8]]],[13,2,2,8,10,[[389,1,1,8,9],[399,1,1,9,10]]],[22,1,1,10,11,[[700,1,1,10,11]]],[23,7,7,11,18,[[745,1,1,11,12],[748,1,1,12,13],[762,1,1,13,14],[775,1,1,14,15],[777,1,1,15,16],[783,1,1,16,17],[796,1,1,17,18]]],[25,2,2,18,20,[[817,1,1,18,19],[827,1,1,19,20]]],[33,1,1,20,21,[[900,1,1,20,21]]]],[3032,6547,6682,6736,9847,10177,10180,10232,11673,11911,18062,18956,19053,19391,19719,19779,19931,20290,20801,21109,22690]]],["out",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14785]]]]},{"k":"H5423","v":[["*",[27,26,[[2,1,1,0,1,[[111,1,1,0,1]]],[5,3,3,1,4,[[190,1,1,1,2],[194,2,2,2,4]]],[6,5,4,4,8,[[226,3,2,4,6],[230,2,2,6,8]]],[17,2,2,8,10,[[452,1,1,8,9],[453,1,1,9,10]]],[18,2,2,10,12,[[479,1,1,10,11],[584,1,1,11,12]]],[20,1,1,12,13,[[662,1,1,12,13]]],[22,3,3,13,16,[[683,1,1,13,14],[711,1,1,14,15],[736,1,1,15,16]]],[23,7,7,16,23,[[746,1,1,16,17],[749,1,1,17,18],[750,1,1,18,19],[754,1,1,19,20],[756,1,1,20,21],[766,1,1,21,22],[774,1,1,22,23]]],[25,2,2,23,25,[[818,1,1,23,24],[824,1,1,24,25]]],[33,1,1,25,26,[[900,1,1,25,26]]]],[3393,5928,6008,6018,6958,6961,7085,7086,13271,13290,13948,15713,17393,17766,18299,18792,18985,19063,19118,19221,19252,19478,19675,20834,21041,22697]]],["+",[4,4,[[6,1,1,0,1,[[226,1,1,0,1]]],[18,1,1,1,2,[[479,1,1,1,2]]],[25,1,1,2,3,[[818,1,1,2,3]]],[33,1,1,3,4,[[900,1,1,3,4]]]],[6958,13948,20834,22697]]],["away",[3,3,[[5,1,1,0,1,[[194,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[23,1,1,2,3,[[750,1,1,2,3]]]],[6018,7085,19118]]],["brake",[2,2,[[6,1,1,0,1,[[226,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]]],[6961,15713]]],["break",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18792]]],["broken",[6,6,[[2,1,1,0,1,[[111,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[20,1,1,2,3,[[662,1,1,2,3]]],[22,2,2,3,5,[[683,1,1,3,4],[711,1,1,4,5]]],[23,1,1,5,6,[[754,1,1,5,6]]]],[3393,6958,17393,17766,18299,19221]]],["burst",[3,3,[[23,3,3,0,3,[[746,1,1,0,1],[749,1,1,1,2],[774,1,1,2,3]]]],[18985,19063,19675]]],["draw",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7086]]],["drawn",[1,1,[[5,1,1,0,1,[[194,1,1,0,1]]]],[6008]]],["off",[2,2,[[17,1,1,0,1,[[452,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[13271,21041]]],["out",[2,2,[[17,1,1,0,1,[[453,1,1,0,1]]],[23,1,1,1,2,[[756,1,1,1,2]]]],[13290,19252]]],["pluck",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19478]]],["up",[1,1,[[5,1,1,0,1,[[190,1,1,0,1]]]],[5928]]]]},{"k":"H5424","v":[["scall",[14,9,[[2,14,9,0,9,[[102,13,8,0,8],[103,1,1,8,9]]]],[3082,3083,3084,3085,3086,3087,3088,3089,3165]]]]},{"k":"H5425","v":[["*",[8,8,[[2,1,1,0,1,[[100,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,2,2,2,4,[[441,1,1,2,3],[472,1,1,3,4]]],[18,2,2,4,6,[[582,1,1,4,5],[623,1,1,5,6]]],[22,1,1,6,7,[[736,1,1,6,7]]],[34,1,1,7,8,[[905,1,1,7,8]]]],[3018,8635,12987,13770,15626,16348,18792,22774]]],["asunder",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22774]]],["leap",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3018]]],["loose",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12987]]],["loosed",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15626]]],["looseth",[1,1,[[18,1,1,0,1,[[623,1,1,0,1]]]],[16348]]],["maketh",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8635]]],["moved",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13770]]],["undo",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18792]]]]},{"k":"H5426","v":[["off",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21851]]]]},{"k":"H5427","v":[["nitre",[2,2,[[19,1,1,0,1,[[652,1,1,0,1]]],[23,1,1,1,2,[[746,1,1,1,2]]]],[17133,18987]]]]},{"k":"H5428","v":[["*",[21,19,[[4,1,1,0,1,[[181,1,1,0,1]]],[10,1,1,1,2,[[304,1,1,1,2]]],[13,1,1,2,3,[[373,1,1,2,3]]],[18,1,1,3,4,[[486,1,1,3,4]]],[23,13,11,4,15,[[745,1,1,4,5],[756,5,3,5,8],[762,2,2,8,10],[768,1,1,10,11],[775,2,2,11,13],[786,1,1,13,14],[789,1,1,14,15]]],[25,1,1,15,16,[[820,1,1,15,16]]],[26,1,1,16,17,[[860,1,1,16,17]]],[29,1,1,17,18,[[887,1,1,17,18]]],[32,1,1,18,19,[[897,1,1,18,19]]]],[5707,9233,11344,14027,18956,19263,19264,19266,19391,19398,19530,19719,19731,19985,20044,20893,22040,22510,22647]]],["+",[4,3,[[10,1,1,0,1,[[304,1,1,0,1]]],[23,3,2,1,3,[[756,3,2,1,3]]]],[9233,19264,19266]]],["destroyed",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14027]]],["forsaken",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19398]]],["out",[4,3,[[4,1,1,0,1,[[181,1,1,0,1]]],[23,3,2,1,3,[[745,1,1,1,2],[756,2,1,2,3]]]],[5707,18956,19263]]],["roots",[1,1,[[13,1,1,0,1,[[373,1,1,0,1]]]],[11344]]],["up",[10,10,[[23,6,6,0,6,[[762,1,1,0,1],[768,1,1,1,2],[775,2,2,2,4],[786,1,1,4,5],[789,1,1,5,6]]],[25,1,1,6,7,[[820,1,1,6,7]]],[26,1,1,7,8,[[860,1,1,7,8]]],[29,1,1,8,9,[[887,1,1,8,9]]],[32,1,1,9,10,[[897,1,1,9,10]]]],[19391,19530,19719,19731,19985,20044,20893,22040,22510,22647]]]]},{"k":"H5429","v":[["*",[9,6,[[0,1,1,0,1,[[17,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[11,6,3,3,6,[[319,6,3,3,6]]]],[430,7879,9373,9708,9723,9725]]],["measure",[3,3,[[11,3,3,0,3,[[319,3,3,0,3]]]],[9708,9723,9725]]],["measures",[6,6,[[0,1,1,0,1,[[17,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[11,3,3,3,6,[[319,3,3,3,6]]]],[430,7879,9373,9708,9723,9725]]]]},{"k":"H5430","v":[["battle",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17834]]]]},{"k":"H5431","v":[["warrior",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17834]]]]},{"k":"H5432","v":[["measure",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18159]]]]},{"k":"H5433","v":[["*",[5,5,[[4,1,1,0,1,[[173,1,1,0,1]]],[19,2,2,1,3,[[650,2,2,1,3]]],[22,1,1,3,4,[[734,1,1,3,4]]],[33,1,1,4,5,[[900,1,1,4,5]]]],[5467,17064,17065,18765,22694]]],["+",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17064]]],["drunkard",[2,2,[[4,1,1,0,1,[[173,1,1,0,1]]],[19,1,1,1,2,[[650,1,1,1,2]]]],[5467,17065]]],["drunkards",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22694]]],["fill",[1,1,[[22,1,1,0,1,[[734,1,1,0,1]]]],[18765]]]]},{"k":"H5434","v":[["Seba",[4,4,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[18,1,1,2,3,[[549,1,1,2,3]]],[22,1,1,3,4,[[721,1,1,3,4]]]],[241,10261,15010,18508]]]]},{"k":"H5435","v":[["*",[3,3,[[22,1,1,0,1,[[679,1,1,0,1]]],[27,1,1,1,2,[[865,1,1,1,2]]],[33,1,1,2,3,[[900,1,1,2,3]]]],[17676,22151,22694]]],["drink",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22151]]],["drunken",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22694]]],["wine",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17676]]]]},{"k":"H5436","v":[["Sabeans",[2,2,[[22,1,1,0,1,[[723,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[18575,21049]]]]},{"k":"H5437","v":[["*",[157,148,[[0,5,5,0,5,[[1,2,2,0,2],[18,1,1,2,3],[36,1,1,3,4],[41,1,1,4,5]]],[1,1,1,5,6,[[62,1,1,5,6]]],[3,6,6,6,12,[[137,1,1,6,7],[148,1,1,7,8],[150,2,2,8,10],[152,2,2,10,12]]],[4,3,3,12,15,[[154,2,2,12,14],[184,1,1,14,15]]],[5,13,12,15,27,[[192,7,6,15,21],[193,1,1,21,22],[201,2,2,22,24],[202,1,1,24,25],[204,1,1,25,26],[205,1,1,26,27]]],[6,5,5,27,32,[[221,1,1,27,28],[226,1,1,28,29],[228,1,1,29,30],[229,1,1,30,31],[230,1,1,31,32]]],[8,14,12,32,44,[[240,4,3,32,35],[242,1,1,35,36],[250,2,2,36,38],[251,1,1,38,39],[252,1,1,39,40],[253,1,1,40,41],[257,4,3,41,44]]],[9,10,8,44,52,[[269,1,1,44,45],[271,1,1,45,46],[280,3,2,46,48],[284,3,2,48,50],[286,1,1,50,51],[288,1,1,51,52]]],[10,8,8,52,60,[[292,1,1,52,53],[295,1,1,53,54],[297,3,3,54,57],[298,1,1,57,58],[308,1,1,58,59],[311,1,1,59,60]]],[11,10,10,60,70,[[315,2,2,60,62],[318,1,1,62,63],[320,1,1,63,64],[321,2,2,64,66],[328,1,1,66,67],[332,1,1,67,68],[335,1,1,68,69],[336,1,1,69,70]]],[12,5,5,70,75,[[347,1,1,70,71],[349,1,1,71,72],[350,1,1,72,73],[351,1,1,73,74],[353,1,1,74,75]]],[13,13,13,75,88,[[370,2,2,75,77],[372,1,1,77,78],[379,1,1,78,79],[380,1,1,79,80],[383,1,1,80,81],[384,1,1,81,82],[387,1,1,82,83],[389,1,1,83,84],[395,1,1,84,85],[399,1,1,85,86],[401,1,1,86,87],[402,1,1,87,88]]],[14,1,1,88,89,[[408,1,1,88,89]]],[17,2,2,89,91,[[451,1,1,89,90],[475,1,1,90,91]]],[18,22,21,91,112,[[484,1,1,91,92],[494,1,1,92,93],[495,1,1,93,94],[499,2,2,94,96],[503,1,1,96,97],[509,2,2,97,99],[525,1,1,99,100],[526,1,1,100,101],[532,1,1,101,102],[536,2,2,102,104],[548,1,1,104,105],[565,1,1,105,106],[586,1,1,106,107],[591,2,2,107,109],[595,4,3,109,112]]],[19,1,1,112,113,[[653,1,1,112,113]]],[20,7,5,113,118,[[659,3,1,113,114],[660,1,1,114,115],[665,1,1,115,116],[667,1,1,116,117],[670,1,1,117,118]]],[21,5,5,118,123,[[672,1,1,118,119],[673,2,2,119,121],[675,1,1,121,122],[676,1,1,122,123]]],[22,3,3,123,126,[[701,1,1,123,124],[706,1,1,124,125],[716,1,1,125,126]]],[23,6,6,126,132,[[750,1,1,126,127],[765,1,1,127,128],[775,2,2,128,130],[785,1,1,130,131],[796,1,1,131,132]]],[25,11,10,132,142,[[802,3,3,132,135],[808,1,1,135,136],[811,3,2,136,138],[827,1,1,138,139],[842,1,1,139,140],[843,1,1,140,141],[848,1,1,141,142]]],[27,2,2,142,144,[[868,1,1,142,143],[872,1,1,143,144]]],[31,2,2,144,146,[[890,2,2,144,146]]],[34,1,1,146,147,[[904,1,1,146,147]]],[37,1,1,147,148,[[924,1,1,147,148]]]],[41,43,461,1090,1276,1885,4344,4756,4820,4821,4886,4888,4939,4941,5768,5952,5953,5956,5960,5963,5964,5985,6205,6212,6271,6307,6335,6847,6951,7016,7046,7059,7327,7328,7329,7368,7572,7587,7606,7648,7687,7804,7805,7809,8093,8155,8376,8380,8493,8508,8566,8608,8785,8881,8949,8957,8958,8999,9378,9455,9585,9601,9689,9748,9774,9775,9981,10100,10199,10219,10673,10743,10763,10788,10863,11248,11249,11285,11466,11482,11532,11573,11633,11658,11797,11922,11988,11997,12173,13251,13886,14002,14114,14123,14216,14220,14279,14362,14365,14646,14653,14742,14796,14804,14997,15325,15758,15825,15827,15879,15880,15881,17155,17321,17353,17454,17489,17528,17571,17573,17574,17605,17619,18093,18191,18392,19101,19444,19713,19730,19971,20297,20473,20476,20481,20599,20644,20649,21102,21533,21571,21681,22180,22252,22551,22553,22764,23078]]],["+",[44,42,[[0,3,3,0,3,[[1,2,2,0,2],[18,1,1,2,3]]],[1,1,1,3,4,[[62,1,1,3,4]]],[3,1,1,4,5,[[137,1,1,4,5]]],[4,2,2,5,7,[[154,2,2,5,7]]],[5,8,7,7,14,[[192,7,6,7,13],[193,1,1,13,14]]],[6,3,3,14,17,[[221,1,1,14,15],[229,1,1,15,16],[230,1,1,16,17]]],[8,3,3,17,20,[[240,3,3,17,20]]],[9,4,4,20,24,[[269,1,1,20,21],[271,1,1,21,22],[280,1,1,22,23],[286,1,1,23,24]]],[10,4,4,24,28,[[297,1,1,24,25],[298,1,1,25,26],[308,1,1,26,27],[311,1,1,27,28]]],[11,5,5,28,33,[[318,1,1,28,29],[320,1,1,29,30],[332,1,1,30,31],[335,1,1,31,32],[336,1,1,32,33]]],[12,2,2,33,35,[[347,1,1,33,34],[350,1,1,34,35]]],[13,4,4,35,39,[[372,1,1,35,36],[379,1,1,36,37],[387,1,1,37,38],[402,1,1,38,39]]],[17,1,1,39,40,[[451,1,1,39,40]]],[20,2,1,40,41,[[659,2,1,40,41]]],[23,1,1,41,42,[[765,1,1,41,42]]]],[41,43,461,1885,4344,4939,4941,5952,5953,5956,5960,5963,5964,5985,6847,7046,7059,7327,7328,7329,8093,8155,8376,8566,8949,8999,9378,9455,9689,9748,10100,10199,10219,10673,10763,11285,11466,11633,11997,13251,17321,19444]]],["Turn",[2,2,[[8,2,2,0,2,[[257,2,2,0,2]]]],[7804,7805]]],["about",[47,46,[[0,2,2,0,2,[[36,1,1,0,1],[41,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[5,1,1,3,4,[[202,1,1,3,4]]],[8,3,3,4,7,[[240,1,1,4,5],[250,2,2,5,7]]],[9,2,2,7,9,[[284,1,1,7,8],[288,1,1,8,9]]],[10,1,1,9,10,[[292,1,1,9,10]]],[11,1,1,10,11,[[315,1,1,10,11]]],[13,4,4,11,15,[[380,1,1,11,12],[383,1,1,12,13],[389,1,1,13,14],[399,1,1,14,15]]],[17,1,1,15,16,[[475,1,1,15,16]]],[18,15,14,16,30,[[484,1,1,16,17],[495,1,1,17,18],[509,2,2,18,20],[525,1,1,20,21],[526,1,1,21,22],[532,1,1,22,23],[536,2,2,23,25],[565,1,1,25,26],[586,1,1,26,27],[595,4,3,27,30]]],[20,3,3,30,33,[[659,1,1,30,31],[660,1,1,31,32],[670,1,1,32,33]]],[21,3,3,33,36,[[673,2,2,33,35],[675,1,1,35,36]]],[22,1,1,36,37,[[701,1,1,36,37]]],[23,2,2,37,39,[[775,1,1,37,38],[785,1,1,38,39]]],[25,3,3,39,42,[[842,1,1,39,40],[843,1,1,40,41],[848,1,1,41,42]]],[27,2,2,42,44,[[868,1,1,42,43],[872,1,1,43,44]]],[31,2,2,44,46,[[890,2,2,44,46]]]],[1090,1276,5768,6271,7327,7572,7587,8493,8608,8785,9601,11482,11532,11658,11922,13886,14002,14123,14362,14365,14646,14653,14742,14796,14804,15325,15758,15879,15880,15881,17321,17353,17528,17573,17574,17605,18093,19730,19971,21533,21571,21681,22180,22252,22551,22553]]],["applied",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17454]]],["aside",[2,1,[[9,2,1,0,1,[[284,2,1,0,1]]]],[8508]]],["avoided",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7687]]],["away",[3,3,[[12,1,1,0,1,[[351,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]],[21,1,1,2,3,[[676,1,1,2,3]]]],[10788,11797,17619]]],["besieged",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17489]]],["changed",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4756]]],["circuit",[1,1,[[8,1,1,0,1,[[242,1,1,0,1]]]],[7368]]],["compass",[9,9,[[3,1,1,0,1,[[150,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[11,1,1,3,4,[[315,1,1,3,4]]],[13,2,2,4,6,[[370,2,2,4,6]]],[18,1,1,6,7,[[503,1,1,6,7]]],[23,2,2,7,9,[[775,1,1,7,8],[796,1,1,8,9]]]],[4821,6205,8957,9585,11248,11249,14279,19713,20297]]],["compassed",[7,7,[[5,2,2,0,2,[[201,1,1,0,1],[204,1,1,1,2]]],[6,1,1,2,3,[[226,1,1,2,3]]],[13,1,1,3,4,[[384,1,1,3,4]]],[18,3,3,4,7,[[494,1,1,4,5],[499,2,2,5,7]]]],[6212,6307,6951,11573,14114,14216,14220]]],["compasseth",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6335]]],["compassing",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8958]]],["down",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7606]]],["driven",[2,2,[[18,2,2,0,2,[[591,2,2,0,2]]]],[15825,15827]]],["occasioned",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7809]]],["remove",[2,2,[[3,2,2,0,2,[[152,2,2,0,2]]]],[4886,4888]]],["returned",[2,2,[[9,1,1,0,1,[[280,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]]],[8380,10863]]],["side",[2,2,[[10,1,1,0,1,[[295,1,1,0,1]]],[18,1,1,1,2,[[548,1,1,1,2]]]],[8881,14997]]],["turn",[8,8,[[3,1,1,0,1,[[150,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]],[11,2,2,2,4,[[321,2,2,2,4]]],[12,1,1,4,5,[[349,1,1,4,5]]],[13,1,1,5,6,[[401,1,1,5,6]]],[21,1,1,6,7,[[672,1,1,6,7]]],[25,1,1,7,8,[[808,1,1,7,8]]]],[4820,8380,9774,9775,10743,11988,17571,20599]]],["turned",[17,16,[[6,1,1,0,1,[[228,1,1,0,1]]],[8,2,2,1,3,[[252,1,1,1,2],[257,1,1,2,3]]],[11,1,1,3,4,[[328,1,1,3,4]]],[14,1,1,4,5,[[408,1,1,4,5]]],[22,2,2,5,7,[[706,1,1,5,6],[716,1,1,6,7]]],[23,1,1,7,8,[[750,1,1,7,8]]],[25,7,6,8,14,[[802,3,3,8,11],[811,3,2,11,13],[827,1,1,13,14]]],[34,1,1,14,15,[[904,1,1,14,15]]],[37,1,1,15,16,[[924,1,1,15,16]]]],[7016,7648,7805,9981,12173,18191,18392,19101,20473,20476,20481,20644,20649,21102,22764,23078]]],["turneth",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17155]]]]},{"k":"H5438","v":[["cause",[1,1,[[10,1,1,0,1,[[302,1,1,0,1]]]],[9166]]]]},{"k":"H5439","v":[["*",[334,282,[[0,3,3,0,3,[[22,1,1,0,1],[34,1,1,1,2],[40,1,1,2,3]]],[1,31,25,3,28,[[56,1,1,3,4],[65,1,1,4,5],[68,1,1,5,6],[74,4,3,6,9],[76,1,1,9,10],[77,4,3,10,13],[78,2,2,13,15],[79,2,1,15,16],[86,6,4,16,20],[87,4,3,20,23],[88,3,3,23,26],[89,2,2,26,28]]],[2,15,15,28,43,[[90,2,2,28,30],[92,3,3,30,33],[96,1,1,33,34],[97,3,3,34,37],[98,2,2,37,39],[103,1,1,39,40],[105,1,1,40,41],[114,2,2,41,43]]],[3,18,18,43,61,[[117,2,2,43,45],[118,1,1,45,46],[119,2,2,46,48],[120,2,2,48,50],[127,3,3,50,53],[132,3,3,53,56],[138,1,1,56,57],[148,1,1,57,58],[150,1,1,58,59],[151,2,2,59,61]]],[4,6,6,61,67,[[158,1,1,61,62],[164,1,1,62,63],[165,1,1,63,64],[169,1,1,64,65],[173,1,1,65,66],[177,1,1,66,67]]],[5,7,7,67,74,[[201,1,1,67,68],[204,1,1,68,69],[205,1,1,69,70],[207,3,3,70,73],[209,1,1,73,74]]],[6,6,6,74,80,[[212,2,2,74,76],[217,2,2,76,78],[218,1,1,78,79],[230,1,1,79,80]]],[8,6,6,80,86,[[247,1,1,80,81],[249,2,2,81,83],[261,2,2,83,85],[266,1,1,85,86]]],[9,4,4,86,90,[[271,1,1,86,87],[273,1,1,87,88],[288,1,1,88,89],[290,1,1,89,90]]],[10,19,15,90,105,[[293,1,1,90,91],[294,2,2,91,93],[295,1,1,93,94],[296,4,2,94,96],[297,9,7,96,103],[308,2,2,103,105]]],[11,8,8,105,113,[[318,1,1,105,106],[323,2,2,106,108],[329,1,1,108,109],[337,4,4,109,113]]],[12,9,8,113,121,[[341,1,1,113,114],[343,1,1,114,115],[346,1,1,115,116],[347,1,1,116,117],[348,2,1,117,118],[359,2,2,118,120],[365,1,1,120,121]]],[13,14,11,121,132,[[370,5,2,121,123],[380,2,2,123,125],[381,1,1,125,126],[383,1,1,126,127],[386,1,1,127,128],[389,2,2,128,130],[398,1,1,130,131],[400,1,1,131,132]]],[14,1,1,132,133,[[403,1,1,132,133]]],[15,4,4,133,137,[[417,1,1,133,134],[418,1,1,134,135],[424,2,2,135,137]]],[17,8,8,137,145,[[436,1,1,137,138],[445,1,1,138,139],[453,1,1,139,140],[454,2,2,140,142],[457,1,1,142,143],[464,1,1,143,144],[476,1,1,144,145]]],[18,19,18,145,163,[[480,1,1,145,146],[489,1,1,146,147],[495,1,1,147,148],[504,1,1,148,149],[508,1,1,149,150],[511,1,1,150,151],[521,1,1,151,152],[527,1,1,152,153],[553,1,1,153,154],[555,1,1,154,155],[556,2,2,155,157],[566,2,2,157,159],[574,2,2,159,161],[602,2,1,161,162],[605,1,1,162,163]]],[20,1,1,163,164,[[659,1,1,163,164]]],[21,1,1,164,165,[[673,1,1,164,165]]],[22,3,3,165,168,[[720,1,1,165,166],[727,1,1,166,167],[738,1,1,167,168]]],[23,27,27,168,195,[[745,1,1,168,169],[748,1,1,169,170],[750,2,2,170,172],[756,1,1,172,173],[761,1,1,173,174],[764,1,1,174,175],[765,1,1,175,176],[769,1,1,176,177],[776,1,1,177,178],[777,1,1,178,179],[790,2,2,179,181],[792,2,2,181,183],[793,2,2,183,185],[794,4,4,185,189],[795,1,1,189,190],[796,5,5,190,195]]],[24,3,3,195,198,[[797,1,1,195,196],[798,2,2,196,198]]],[25,111,74,198,272,[[802,5,4,198,202],[805,1,1,202,203],[806,8,7,203,210],[807,2,2,210,212],[809,1,1,212,213],[811,1,1,213,214],[812,1,1,214,215],[813,1,1,215,216],[817,4,3,216,219],[820,1,1,219,220],[824,2,2,220,222],[828,2,1,222,223],[829,3,3,223,226],[832,1,1,226,227],[833,5,5,227,232],[835,1,1,232,233],[837,4,4,233,237],[838,3,2,237,239],[840,1,1,239,240],[841,22,10,240,250],[842,23,10,250,260],[843,6,4,260,264],[844,6,4,264,268],[846,3,2,268,270],[847,3,1,270,271],[849,1,1,271,272]]],[26,1,1,272,273,[[858,1,1,272,273]]],[28,2,2,273,275,[[878,2,2,273,275]]],[29,1,1,275,276,[[881,1,1,275,276]]],[33,1,1,276,277,[[902,1,1,276,277]]],[37,5,5,277,282,[[912,1,1,277,278],[917,1,1,278,279],[922,2,2,279,281],[924,1,1,281,282]]]],[588,1016,1243,1709,1960,2038,2206,2219,2220,2289,2325,2326,2327,2352,2356,2385,2606,2615,2616,2630,2649,2653,2664,2687,2689,2690,2715,2740,2750,2756,2780,2786,2791,2881,2932,2936,2941,2965,2971,3152,3219,3500,3513,3654,3657,3660,3718,3729,3769,3775,4048,4055,4056,4218,4221,4228,4379,4751,4828,4847,4849,5100,5250,5279,5378,5449,5566,6214,6313,6329,6392,6423,6425,6461,6557,6559,6712,6715,6753,7083,7471,7529,7555,7910,7912,8018,8141,8181,8614,8698,8817,8868,8875,8882,8901,8902,8946,8952,8954,8957,8958,8969,8970,9373,9376,9691,9837,9840,9998,10223,10226,10232,10239,10418,10509,10642,10668,10681,10973,10982,11155,11248,11249,11482,11489,11505,11533,11617,11663,11666,11897,11939,12022,12399,12417,12652,12653,12879,13094,13287,13307,13309,13399,13537,13902,13963,14074,14129,14291,14344,14395,14584,14671,15092,15141,15188,15189,15333,15334,15480,15481,16112,16129,17321,17578,18505,18654,18825,18961,19044,19092,19114,19258,19383,19432,19454,19543,19775,19788,20050,20059,20097,20119,20132,20156,20180,20181,20195,20198,20214,20280,20283,20290,20298,20299,20327,20335,20354,20468,20482,20491,20492,20531,20548,20551,20552,20553,20558,20560,20561,20568,20576,20614,20645,20667,20694,20795,20799,20819,20889,21029,21031,21132,21180,21181,21183,21234,21270,21271,21272,21273,21274,21339,21362,21363,21366,21395,21399,21418,21465,21482,21491,21493,21494,21502,21506,21507,21510,21513,21520,21531,21532,21533,21534,21536,21537,21538,21542,21543,21545,21567,21568,21569,21572,21584,21585,21589,21592,21631,21632,21678,21737,22004,22354,22355,22406,22720,22904,22969,23047,23051,23082]]],["+",[99,72,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[3,2,2,2,4,[[132,2,2,2,4]]],[4,2,2,4,6,[[164,1,1,4,5],[177,1,1,5,6]]],[5,2,2,6,8,[[207,1,1,6,7],[209,1,1,7,8]]],[6,3,3,8,11,[[212,1,1,8,9],[218,1,1,9,10],[230,1,1,10,11]]],[8,1,1,11,12,[[247,1,1,11,12]]],[9,1,1,12,13,[[273,1,1,12,13]]],[10,2,2,13,15,[[294,1,1,13,14],[295,1,1,14,15]]],[11,1,1,15,16,[[323,1,1,15,16]]],[12,3,3,16,19,[[348,1,1,16,17],[359,2,2,17,19]]],[13,6,5,19,24,[[370,2,1,19,20],[380,1,1,20,21],[381,1,1,21,22],[386,1,1,22,23],[398,1,1,23,24]]],[17,1,1,24,25,[[436,1,1,24,25]]],[18,1,1,25,26,[[508,1,1,25,26]]],[22,1,1,26,27,[[720,1,1,26,27]]],[23,7,7,27,34,[[748,1,1,27,28],[750,1,1,28,29],[761,1,1,29,30],[764,1,1,30,31],[790,1,1,31,32],[793,1,1,32,33],[795,1,1,33,34]]],[24,1,1,34,35,[[798,1,1,34,35]]],[25,61,35,35,70,[[817,3,3,35,38],[824,1,1,38,39],[829,2,2,39,41],[837,3,3,41,44],[838,3,2,44,46],[840,1,1,46,47],[841,22,10,47,57],[842,20,10,57,67],[843,4,2,67,69],[844,2,1,69,70]]],[28,2,2,70,72,[[878,2,2,70,72]]]],[2326,2690,4218,4221,5250,5566,6425,6461,6559,6753,7083,7471,8181,8868,8882,9840,10681,10973,10982,11249,11482,11505,11617,11897,12879,14344,18505,19044,19114,19383,19432,20050,20156,20214,20354,20795,20799,20819,21029,21180,21183,21362,21363,21366,21399,21418,21465,21482,21491,21493,21494,21502,21506,21507,21510,21513,21520,21531,21532,21533,21534,21536,21537,21538,21542,21543,21545,21567,21572,21584,22354,22355]]],["about",[225,208,[[0,3,3,0,3,[[22,1,1,0,1],[34,1,1,1,2],[40,1,1,2,3]]],[1,29,24,3,27,[[56,1,1,3,4],[65,1,1,4,5],[68,1,1,5,6],[74,4,3,6,9],[76,1,1,9,10],[77,3,3,10,13],[78,2,2,13,15],[79,2,1,15,16],[86,6,4,16,20],[87,4,3,20,23],[88,2,2,23,25],[89,2,2,25,27]]],[2,15,15,27,42,[[90,2,2,27,29],[92,3,3,29,32],[96,1,1,32,33],[97,3,3,33,36],[98,2,2,36,38],[103,1,1,38,39],[105,1,1,39,40],[114,2,2,40,42]]],[3,16,16,42,58,[[117,2,2,42,44],[118,1,1,44,45],[119,2,2,45,47],[120,2,2,47,49],[127,3,3,49,52],[132,1,1,52,53],[138,1,1,53,54],[148,1,1,54,55],[150,1,1,55,56],[151,2,2,56,58]]],[4,4,4,58,62,[[158,1,1,58,59],[165,1,1,59,60],[169,1,1,60,61],[173,1,1,61,62]]],[5,5,5,62,67,[[201,1,1,62,63],[204,1,1,63,64],[205,1,1,64,65],[207,2,2,65,67]]],[6,2,2,67,69,[[212,1,1,67,68],[217,1,1,68,69]]],[8,4,4,69,73,[[249,1,1,69,70],[261,2,2,70,72],[266,1,1,72,73]]],[9,3,3,73,76,[[271,1,1,73,74],[288,1,1,74,75],[290,1,1,75,76]]],[10,16,12,76,88,[[293,1,1,76,77],[294,1,1,77,78],[296,4,2,78,80],[297,8,6,80,86],[308,2,2,86,88]]],[11,7,7,88,95,[[318,1,1,88,89],[323,1,1,89,90],[329,1,1,90,91],[337,4,4,91,95]]],[12,6,6,95,101,[[341,1,1,95,96],[343,1,1,96,97],[346,1,1,97,98],[347,1,1,98,99],[348,1,1,99,100],[365,1,1,100,101]]],[13,7,7,101,108,[[370,2,2,101,103],[380,1,1,103,104],[383,1,1,104,105],[389,2,2,105,107],[400,1,1,107,108]]],[14,1,1,108,109,[[403,1,1,108,109]]],[15,4,4,109,113,[[417,1,1,109,110],[418,1,1,110,111],[424,2,2,111,113]]],[17,5,5,113,118,[[445,1,1,113,114],[454,1,1,114,115],[457,1,1,115,116],[464,1,1,116,117],[476,1,1,117,118]]],[18,17,16,118,134,[[480,1,1,118,119],[495,1,1,119,120],[504,1,1,120,121],[511,1,1,121,122],[521,1,1,122,123],[527,1,1,123,124],[553,1,1,124,125],[555,1,1,125,126],[556,2,2,126,128],[566,2,2,128,130],[574,2,2,130,132],[602,2,1,132,133],[605,1,1,133,134]]],[21,1,1,134,135,[[673,1,1,134,135]]],[22,2,2,135,137,[[727,1,1,135,136],[738,1,1,136,137]]],[23,20,20,137,157,[[745,1,1,137,138],[750,1,1,138,139],[756,1,1,139,140],[765,1,1,140,141],[769,1,1,141,142],[776,1,1,142,143],[777,1,1,143,144],[790,1,1,144,145],[792,2,2,145,147],[793,1,1,147,148],[794,4,4,148,152],[796,5,5,152,157]]],[24,2,2,157,159,[[797,1,1,157,158],[798,1,1,158,159]]],[25,48,41,159,200,[[802,5,4,159,163],[805,1,1,163,164],[806,8,7,164,171],[807,2,2,171,173],[809,1,1,173,174],[811,1,1,174,175],[812,1,1,175,176],[813,1,1,176,177],[817,1,1,177,178],[824,1,1,178,179],[828,2,1,179,180],[829,1,1,180,181],[832,1,1,181,182],[833,5,5,182,187],[835,1,1,187,188],[837,1,1,188,189],[842,2,2,189,191],[843,2,2,191,193],[844,4,3,193,196],[846,3,2,196,198],[847,3,1,198,199],[849,1,1,199,200]]],[26,1,1,200,201,[[858,1,1,200,201]]],[29,1,1,201,202,[[881,1,1,201,202]]],[33,1,1,202,203,[[902,1,1,202,203]]],[37,5,5,203,208,[[912,1,1,203,204],[917,1,1,204,205],[922,2,2,205,207],[924,1,1,207,208]]]],[588,1016,1243,1709,1960,2038,2206,2219,2220,2289,2325,2326,2327,2352,2356,2385,2606,2615,2616,2630,2649,2653,2664,2687,2689,2715,2740,2750,2756,2780,2786,2791,2881,2932,2936,2941,2965,2971,3152,3219,3500,3513,3654,3657,3660,3718,3729,3769,3775,4048,4055,4056,4228,4379,4751,4828,4847,4849,5100,5279,5378,5449,6214,6313,6329,6392,6423,6557,6715,7529,7910,7912,8018,8141,8614,8698,8817,8875,8901,8902,8946,8952,8954,8957,8958,8970,9373,9376,9691,9837,9998,10223,10226,10232,10239,10418,10509,10642,10668,10681,11155,11248,11249,11489,11533,11663,11666,11939,12022,12399,12417,12652,12653,13094,13309,13399,13537,13902,13963,14129,14291,14395,14584,14671,15092,15141,15188,15189,15333,15334,15480,15481,16112,16129,17578,18654,18825,18961,19092,19258,19454,19543,19775,19788,20059,20097,20119,20132,20180,20181,20195,20198,20280,20283,20290,20298,20299,20327,20335,20468,20482,20491,20492,20531,20548,20551,20552,20553,20558,20560,20561,20568,20576,20614,20645,20667,20694,20819,21031,21132,21181,21234,21270,21271,21272,21273,21274,21339,21395,21536,21542,21568,21569,21585,21589,21592,21631,21632,21678,21737,22004,22406,22720,22904,22969,23047,23051,23082]]],["circuits",[1,1,[[20,1,1,0,1,[[659,1,1,0,1]]]],[17321]]],["compass",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[13,1,1,1,2,[[370,1,1,1,2]]]],[8969,11248]]],["side",[7,7,[[6,1,1,0,1,[[217,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[17,2,2,2,4,[[453,1,1,2,3],[454,1,1,3,4]]],[18,1,1,4,5,[[489,1,1,4,5]]],[25,2,2,5,7,[[820,1,1,5,6],[842,1,1,6,7]]]],[6712,7555,13287,13307,14074,20889,21531]]]]},{"k":"H5440","v":[["*",[2,2,[[17,1,1,0,1,[[443,1,1,0,1]]],[33,1,1,1,2,[[900,1,1,1,2]]]],[13046,22694]]],["together",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22694]]],["wrapped",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13046]]]]},{"k":"H5441","v":[["+",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19034]]]]},{"k":"H5442","v":[["*",[4,4,[[0,1,1,0,1,[[21,1,1,0,1]]],[18,1,1,1,2,[[551,1,1,1,2]]],[22,2,2,2,4,[[687,1,1,2,3],[688,1,1,3,4]]]],[560,15053,17847,17884]]],["thick",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15053]]],["thicket",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[560]]],["thickets",[2,2,[[22,2,2,0,2,[[687,1,1,0,1],[688,1,1,1,2]]]],[17847,17884]]]]},{"k":"H5443","v":[["sackbut",[4,4,[[26,4,4,0,4,[[852,4,4,0,4]]]],[21812,21814,21817,21822]]]]},{"k":"H5444","v":[["*",[4,4,[[9,1,1,0,1,[[287,1,1,0,1]]],[12,3,3,1,4,[[348,1,1,1,2],[357,1,1,2,3],[364,1,1,3,4]]]],[8598,10702,10930,11120]]],["Sibbecai",[2,2,[[12,2,2,0,2,[[348,1,1,0,1],[364,1,1,1,2]]]],[10702,11120]]],["Sibbechai",[2,2,[[9,1,1,0,1,[[287,1,1,0,1]]],[12,1,1,1,2,[[357,1,1,1,2]]]],[8598,10930]]]]},{"k":"H5445","v":[["*",[9,8,[[0,1,1,0,1,[[48,1,1,0,1]]],[18,1,1,1,2,[[621,1,1,1,2]]],[20,1,1,2,3,[[670,1,1,2,3]]],[22,5,4,3,7,[[724,3,2,3,5],[731,2,2,5,7]]],[24,1,1,7,8,[[801,1,1,7,8]]]],[1488,16319,17528,18590,18593,18715,18722,20449]]],["bear",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[22,1,1,1,2,[[731,1,1,1,2]]]],[1488,18722]]],["borne",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20449]]],["burden",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17528]]],["carried",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18715]]],["carry",[3,2,[[22,3,2,0,2,[[724,3,2,0,2]]]],[18590,18593]]],["labour",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16319]]]]},{"k":"H5446","v":[["laid",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12154]]]]},{"k":"H5447","v":[["*",[3,3,[[10,1,1,0,1,[[301,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]],[18,1,1,2,3,[[558,1,1,2,3]]]],[9136,12376,15223]]],["+",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15223]]],["burdens",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12376]]],["charge",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9136]]]]},{"k":"H5448","v":[["burden",[3,3,[[22,3,3,0,3,[[687,1,1,0,1],[688,1,1,1,2],[692,1,1,2,3]]]],[17833,17877,17953]]]]},{"k":"H5449","v":[["burdens",[5,5,[[10,1,1,0,1,[[295,1,1,0,1]]],[13,3,3,1,4,[[368,2,2,1,3],[400,1,1,3,4]]],[15,1,1,4,5,[[416,1,1,4,5]]]],[8893,11213,11229,11946,12369]]]]},{"k":"H5450","v":[["*",[6,6,[[1,6,6,0,6,[[50,1,1,0,1],[51,1,1,1,2],[54,2,2,2,4],[55,2,2,4,6]]]],[1543,1565,1636,1637,1661,1662]]],["+",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1637]]],["burdens",[5,5,[[1,5,5,0,5,[[50,1,1,0,1],[51,1,1,1,2],[54,1,1,2,3],[55,2,2,3,5]]]],[1543,1565,1636,1661,1662]]]]},{"k":"H5451","v":[["Sibboleth",[1,1,[[6,1,1,0,1,[[222,1,1,0,1]]]],[6875]]]]},{"k":"H5452","v":[["think",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21958]]]]},{"k":"H5453","v":[["Sibraim",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21695]]]]},{"k":"H5454","v":[["*",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[241,10261]]],["Sabta",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10261]]],["Sabtah",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[241]]]]},{"k":"H5455","v":[["Sabtecha",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[241,10261]]]]},{"k":"H5456","v":[["down",[4,4,[[22,4,4,0,4,[[722,3,3,0,3],[724,1,1,3,4]]]],[18548,18550,18552,18592]]]]},{"k":"H5457","v":[["*",[12,11,[[26,12,11,0,11,[[851,1,1,0,1],[852,11,10,1,11]]]],[21804,21812,21813,21814,21817,21818,21819,21821,21822,21825,21835]]],["worship",[8,7,[[26,8,7,0,7,[[852,8,7,0,7]]]],[21812,21817,21819,21821,21822,21825,21835]]],["worshipped",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21804,21814]]],["worshippeth",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21813,21818]]]]},{"k":"H5458","v":[["caul",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22274]]]]},{"k":"H5459","v":[["*",[8,8,[[1,1,1,0,1,[[68,1,1,0,1]]],[4,3,3,1,4,[[159,1,1,1,2],[166,1,1,2,3],[178,1,1,3,4]]],[12,1,1,4,5,[[366,1,1,4,5]]],[18,1,1,5,6,[[612,1,1,5,6]]],[20,1,1,6,7,[[660,1,1,6,7]]],[38,1,1,7,8,[[927,1,1,7,8]]]],[2031,5117,5292,5584,11167,16179,17341,23137]]],["good",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11167]]],["jewels",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23137]]],["peculiar",[2,2,[[4,2,2,0,2,[[166,1,1,0,1],[178,1,1,1,2]]]],[5292,5584]]],["special",[1,1,[[4,1,1,0,1,[[159,1,1,0,1]]]],[5117]]],["treasure",[3,3,[[1,1,1,0,1,[[68,1,1,0,1]]],[18,1,1,1,2,[[612,1,1,1,2]]],[20,1,1,2,3,[[660,1,1,2,3]]]],[2031,16179,17341]]]]},{"k":"H5460","v":[["governors",[5,5,[[26,5,5,0,5,[[851,1,1,0,1],[852,3,3,1,4],[855,1,1,4,5]]]],[21806,21809,21810,21834,21912]]]]},{"k":"H5461","v":[["*",[17,16,[[14,1,1,0,1,[[411,1,1,0,1]]],[15,9,8,1,9,[[414,2,1,1,2],[416,2,2,2,4],[417,2,2,4,6],[419,1,1,6,7],[424,1,1,7,8],[425,1,1,8,9]]],[22,1,1,9,10,[[719,1,1,9,10]]],[23,3,3,10,13,[[795,3,3,10,13]]],[25,3,3,13,16,[[824,3,3,13,16]]]],[12239,12323,12373,12378,12389,12399,12425,12664,12682,18476,20235,20240,20269,21013,21019,21030]]],["princes",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18476]]],["rulers",[16,15,[[14,1,1,0,1,[[411,1,1,0,1]]],[15,9,8,1,9,[[414,2,1,1,2],[416,2,2,2,4],[417,2,2,4,6],[419,1,1,6,7],[424,1,1,7,8],[425,1,1,8,9]]],[23,3,3,9,12,[[795,3,3,9,12]]],[25,3,3,12,15,[[824,3,3,12,15]]]],[12239,12323,12373,12378,12389,12399,12425,12664,12682,20235,20240,20269,21013,21019,21030]]]]},{"k":"H5462","v":[["*",[93,88,[[0,4,4,0,4,[[1,1,1,0,1],[6,1,1,1,2],[18,2,2,2,4]]],[1,1,1,4,5,[[63,1,1,4,5]]],[2,11,11,5,16,[[102,9,9,5,14],[103,2,2,14,16]]],[3,2,2,16,18,[[128,2,2,16,18]]],[4,2,2,18,20,[[175,1,1,18,19],[184,1,1,19,20]]],[5,5,4,20,24,[[188,2,2,20,22],[192,2,1,22,23],[206,1,1,23,24]]],[6,3,3,24,27,[[213,2,2,24,26],[219,1,1,26,27]]],[8,11,10,27,37,[[236,2,2,27,29],[252,1,1,29,30],[258,5,4,30,34],[259,1,1,34,35],[261,1,1,35,36],[265,1,1,36,37]]],[9,1,1,37,38,[[284,1,1,37,38]]],[10,6,6,38,44,[[296,2,2,38,40],[297,2,2,40,42],[300,1,1,42,43],[301,1,1,43,44]]],[11,5,5,44,49,[[316,4,4,44,48],[318,1,1,48,49]]],[13,5,5,49,54,[[370,2,2,49,51],[375,1,1,51,52],[394,1,1,52,53],[395,1,1,53,54]]],[15,2,2,54,56,[[418,1,1,54,55],[425,1,1,55,56]]],[17,6,6,56,62,[[438,1,1,56,57],[446,1,1,57,58],[447,1,1,58,59],[451,1,1,59,60],[463,1,1,60,61],[476,1,1,61,62]]],[18,7,6,62,68,[[494,1,1,62,63],[508,1,1,63,64],[512,1,1,64,65],[555,4,3,65,68]]],[20,1,1,68,69,[[670,1,1,68,69]]],[22,7,6,69,75,[[700,2,1,69,70],[702,2,2,70,72],[704,1,1,72,73],[723,1,1,73,74],[738,1,1,74,75]]],[23,1,1,75,76,[[757,1,1,75,76]]],[24,1,1,76,77,[[798,1,1,76,77]]],[25,7,6,77,83,[[804,1,1,77,78],[845,3,2,78,80],[847,3,3,80,83]]],[29,3,3,83,86,[[879,2,2,83,85],[884,1,1,85,86]]],[30,1,1,86,87,[[888,1,1,86,87]]],[38,1,1,87,88,[[925,1,1,87,88]]]],[51,175,463,467,1892,3056,3057,3063,3073,3078,3083,3085,3102,3106,3149,3157,4073,4074,5515,5788,5874,5876,5950,6377,6590,6591,6805,7217,7218,7664,7817,7821,7822,7830,7857,7913,7993,8506,8916,8917,8983,8984,9100,9135,9607,9608,9624,9636,9706,11266,11268,11384,11788,11798,12411,12690,12914,13118,13142,13249,13519,13903,14113,14339,14413,15161,15163,15175,17527,18074,18105,18117,18150,18562,18832,19285,20339,20526,21600,21601,21656,21657,21667,22370,22373,22458,22524,23099]]],["+",[15,14,[[0,1,1,0,1,[[6,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[2,1,1,2,3,[[103,1,1,2,3]]],[5,3,2,3,5,[[192,2,1,3,4],[206,1,1,4,5]]],[8,2,2,5,7,[[236,1,1,5,6],[261,1,1,6,7]]],[9,1,1,7,8,[[284,1,1,7,8]]],[10,1,1,8,9,[[301,1,1,8,9]]],[13,1,1,9,10,[[394,1,1,9,10]]],[17,3,3,10,13,[[438,1,1,10,11],[447,1,1,11,12],[463,1,1,12,13]]],[25,1,1,13,14,[[847,1,1,13,14]]]],[175,1892,3149,5950,6377,7218,7913,8506,9135,11788,12914,13142,13519,21667]]],["closed",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6590]]],["deliver",[5,5,[[4,1,1,0,1,[[175,1,1,0,1]]],[8,4,4,1,5,[[252,1,1,1,2],[258,2,2,2,4],[265,1,1,4,5]]]],[5515,7664,7822,7830,7993]]],["delivered",[2,2,[[8,1,1,0,1,[[259,1,1,0,1]]],[17,1,1,1,2,[[451,1,1,1,2]]]],[7857,13249]]],["gave",[2,2,[[18,2,2,0,2,[[555,2,2,0,2]]]],[15163,15175]]],["in",[2,2,[[8,1,1,0,1,[[258,1,1,0,1]]],[18,1,1,1,2,[[494,1,1,1,2]]]],[7817,14113]]],["out",[2,2,[[3,2,2,0,2,[[128,2,2,0,2]]]],[4073,4074]]],["over",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15175]]],["pure",[8,8,[[10,5,5,0,5,[[296,2,2,0,2],[297,2,2,2,4],[300,1,1,4,5]]],[13,3,3,5,8,[[370,2,2,5,7],[375,1,1,7,8]]]],[8916,8917,8983,8984,9100,11266,11268,11384]]],["shut",[23,21,[[0,1,1,0,1,[[18,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]],[6,2,2,2,4,[[213,1,1,2,3],[219,1,1,3,4]]],[11,5,5,4,9,[[316,4,4,4,8],[318,1,1,8,9]]],[15,2,2,9,11,[[418,1,1,9,10],[425,1,1,10,11]]],[20,1,1,11,12,[[670,1,1,11,12]]],[22,5,4,12,16,[[700,2,1,12,13],[704,1,1,13,14],[723,1,1,14,15],[738,1,1,15,16]]],[25,5,4,16,20,[[845,3,2,16,18],[847,2,2,18,20]]],[38,1,1,20,21,[[925,1,1,20,21]]]],[463,5876,6591,6805,9607,9608,9624,9636,9706,12411,12690,17527,18074,18150,18562,18832,21600,21601,21656,21657,23099]]],["shutting",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5874]]],["stop",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14413]]],["thyself",[1,1,[[25,1,1,0,1,[[804,1,1,0,1]]]],[20526]]],["to",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[467]]],["together",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13903]]],["up",[27,27,[[0,1,1,0,1,[[1,1,1,0,1]]],[2,10,10,1,11,[[102,9,9,1,10],[103,1,1,10,11]]],[4,1,1,11,12,[[184,1,1,11,12]]],[8,3,3,12,15,[[236,1,1,12,13],[258,2,2,13,15]]],[13,1,1,15,16,[[395,1,1,15,16]]],[17,1,1,16,17,[[446,1,1,16,17]]],[18,2,2,17,19,[[508,1,1,17,18],[555,1,1,18,19]]],[22,2,2,19,21,[[702,2,2,19,21]]],[23,1,1,21,22,[[757,1,1,21,22]]],[24,1,1,22,23,[[798,1,1,22,23]]],[29,3,3,23,26,[[879,2,2,23,25],[884,1,1,25,26]]],[30,1,1,26,27,[[888,1,1,26,27]]]],[51,3056,3057,3063,3073,3078,3083,3085,3102,3106,3157,5788,7217,7821,7822,11798,13118,14339,15161,18105,18117,19285,20339,22370,22373,22458,22524]]]]},{"k":"H5463","v":[["shut",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21927]]]]},{"k":"H5464","v":[["rainy",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17184]]]]},{"k":"H5465","v":[["stocks",[2,2,[[17,2,2,0,2,[[448,1,1,0,1],[468,1,1,1,2]]]],[13180,13661]]]]},{"k":"H5466","v":[["*",[4,4,[[6,2,2,0,2,[[224,2,2,0,2]]],[19,1,1,2,3,[[658,1,1,2,3]]],[22,1,1,3,4,[[681,1,1,3,4]]]],[6921,6922,17308,17730]]],["linen",[2,2,[[19,1,1,0,1,[[658,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]]],[17308,17730]]],["sheets",[2,2,[[6,2,2,0,2,[[224,2,2,0,2]]]],[6921,6922]]]]},{"k":"H5467","v":[["Sodom",[39,38,[[0,21,20,0,20,[[9,1,1,0,1],[12,3,3,1,4],[13,8,8,4,12],[17,4,4,12,16],[18,5,4,16,20]]],[4,2,2,20,22,[[181,1,1,20,21],[184,1,1,21,22]]],[22,4,4,22,26,[[679,2,2,22,24],[681,1,1,24,25],[691,1,1,25,26]]],[23,3,3,26,29,[[767,1,1,26,27],[793,1,1,27,28],[794,1,1,28,29]]],[24,1,1,29,30,[[800,1,1,29,30]]],[25,6,6,30,36,[[817,6,6,30,36]]],[29,1,1,36,37,[[882,1,1,36,37]]],[35,1,1,37,38,[[907,1,1,37,38]]]],[253,328,330,331,338,344,346,347,348,353,357,358,440,444,446,450,458,461,481,485,5702,5790,17663,17664,17716,17925,19498,20145,20206,20426,20808,20810,20811,20815,20817,20818,22421,22814]]]]},{"k":"H5468","v":[["order",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13108]]]]},{"k":"H5469","v":[["round",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17629]]]]},{"k":"H5470","v":[["+",[8,6,[[0,8,6,0,6,[[38,6,4,0,4],[39,2,2,4,6]]]],[1169,1170,1171,1172,1175,1177]]]]},{"k":"H5471","v":[["So",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[9987]]]]},{"k":"H5472","v":[["*",[14,14,[[18,8,8,0,8,[[512,1,1,0,1],[517,1,1,1,2],[521,1,1,2,3],[530,1,1,3,4],[547,1,1,4,5],[555,1,1,5,6],[557,1,1,6,7],[606,1,1,7,8]]],[19,1,1,8,9,[[641,1,1,8,9]]],[22,2,2,9,11,[[720,1,1,9,10],[728,1,1,10,11]]],[23,2,2,11,13,[[782,1,1,11,12],[790,1,1,12,13]]],[35,1,1,13,14,[[906,1,1,13,14]]]],[14414,14539,14589,14722,14973,15170,15216,16137,16786,18497,18667,19917,20050,22793]]],["away",[3,3,[[22,1,1,0,1,[[728,1,1,0,1]]],[23,2,2,1,3,[[782,1,1,1,2],[790,1,1,2,3]]]],[18667,19917,20050]]],["back",[4,4,[[18,3,3,0,3,[[530,1,1,0,1],[555,1,1,1,2],[557,1,1,2,3]]],[35,1,1,3,4,[[906,1,1,3,4]]]],[14722,15170,15216,22793]]],["backslider",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16786]]],["driven",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14539]]],["turned",[5,5,[[18,4,4,0,4,[[512,1,1,0,1],[521,1,1,1,2],[547,1,1,2,3],[606,1,1,3,4]]],[22,1,1,4,5,[[720,1,1,4,5]]]],[14414,14589,14973,16137,18497]]]]},{"k":"H5473","v":[["about",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17629]]]]},{"k":"H5474","v":[["ward",[1,1,[[25,1,1,0,1,[[820,1,1,0,1]]]],[20890]]]]},{"k":"H5475","v":[["*",[21,21,[[0,1,1,0,1,[[48,1,1,0,1]]],[17,3,3,1,4,[[450,1,1,1,2],[454,1,1,2,3],[464,1,1,3,4]]],[18,6,6,4,10,[[502,1,1,4,5],[532,1,1,5,6],[541,1,1,6,7],[560,1,1,7,8],[566,1,1,8,9],[588,1,1,9,10]]],[19,5,5,10,15,[[630,1,1,10,11],[638,1,1,11,12],[642,1,1,12,13],[647,1,1,13,14],[652,1,1,14,15]]],[23,4,4,15,19,[[750,1,1,15,16],[759,1,1,16,17],[767,2,2,17,19]]],[25,1,1,19,20,[[814,1,1,19,20]]],[29,1,1,20,21,[[881,1,1,20,21]]]],[1479,13211,13316,13536,14265,14746,14852,15244,15333,15794,16487,16701,16829,16973,17122,19100,19332,19502,19506,20717,22402]]],["+",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14852]]],["assembly",[5,5,[[18,2,2,0,2,[[566,1,1,0,1],[588,1,1,1,2]]],[23,2,2,2,4,[[750,1,1,2,3],[759,1,1,3,4]]],[25,1,1,4,5,[[814,1,1,4,5]]]],[15333,15794,19100,19332,20717]]],["counsel",[5,5,[[18,2,2,0,2,[[532,1,1,0,1],[560,1,1,1,2]]],[19,1,1,2,3,[[642,1,1,2,3]]],[23,2,2,3,5,[[767,2,2,3,5]]]],[14746,15244,16829,19502,19506]]],["inward",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13316]]],["secret",[7,7,[[0,1,1,0,1,[[48,1,1,0,1]]],[17,2,2,1,3,[[450,1,1,1,2],[464,1,1,2,3]]],[18,1,1,3,4,[[502,1,1,3,4]]],[19,2,2,4,6,[[630,1,1,4,5],[652,1,1,5,6]]],[29,1,1,6,7,[[881,1,1,6,7]]]],[1479,13211,13536,14265,16487,17122,22402]]],["secrets",[2,2,[[19,2,2,0,2,[[638,1,1,0,1],[647,1,1,1,2]]]],[16701,16973]]]]},{"k":"H5476","v":[["Sodi",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4085]]]]},{"k":"H5477","v":[["Suah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10571]]]]},{"k":"H5478","v":[["+",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17764]]]]},{"k":"H5479","v":[["Sotai",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12082,12477]]]]},{"k":"H5480","v":[["*",[9,8,[[4,1,1,0,1,[[180,1,1,0,1]]],[7,1,1,1,2,[[234,1,1,1,2]]],[9,2,2,2,4,[[278,1,1,2,3],[280,1,1,3,4]]],[13,1,1,4,5,[[394,1,1,4,5]]],[25,1,1,5,6,[[817,1,1,5,6]]],[26,2,1,6,7,[[859,2,1,6,7]]],[32,1,1,7,8,[[898,1,1,7,8]]]],[5651,7175,8306,8358,11779,20771,22018,22663]]],["+",[2,1,[[26,2,1,0,1,[[859,2,1,0,1]]]],[22018]]],["anoint",[4,4,[[4,1,1,0,1,[[180,1,1,0,1]]],[7,1,1,1,2,[[234,1,1,1,2]]],[9,1,1,2,3,[[280,1,1,2,3]]],[32,1,1,3,4,[[898,1,1,3,4]]]],[5651,7175,8358,22663]]],["anointed",[3,3,[[9,1,1,0,1,[[278,1,1,0,1]]],[13,1,1,1,2,[[394,1,1,1,2]]],[25,1,1,2,3,[[817,1,1,2,3]]]],[8306,11779,20771]]]]},{"k":"H5481","v":[["dulcimer",[3,3,[[26,3,3,0,3,[[852,3,3,0,3]]]],[21812,21817,21822]]]]},{"k":"H5482","v":[["Syene",[2,2,[[25,2,2,0,2,[[830,1,1,0,1],[831,1,1,1,2]]]],[21193,21210]]]]},{"k":"H5483","v":[["*",[140,131,[[0,2,2,0,2,[[46,1,1,0,1],[48,1,1,1,2]]],[1,6,6,2,8,[[58,1,1,2,3],[63,2,2,3,5],[64,3,3,5,8]]],[4,4,3,8,11,[[163,1,1,8,9],[169,2,1,9,10],[172,1,1,10,11]]],[5,3,3,11,14,[[197,3,3,11,14]]],[6,1,1,14,15,[[215,1,1,14,15]]],[9,1,1,15,16,[[281,1,1,15,16]]],[10,13,11,16,27,[[294,2,2,16,18],[300,3,3,18,21],[308,1,1,21,22],[310,5,4,22,26],[312,2,1,26,27]]],[11,20,19,27,46,[[314,1,1,27,28],[315,2,1,28,29],[317,1,1,29,30],[318,3,3,30,33],[319,5,5,33,38],[321,3,3,38,41],[322,1,1,41,42],[323,1,1,42,43],[326,1,1,43,44],[330,1,1,44,45],[335,1,1,45,46]]],[13,7,7,46,53,[[367,2,2,46,48],[375,3,3,48,51],[389,1,1,51,52],[391,1,1,52,53]]],[14,1,1,53,54,[[404,1,1,53,54]]],[15,2,2,54,56,[[415,1,1,54,55],[419,1,1,55,56]]],[16,6,5,56,61,[[431,5,4,56,60],[433,1,1,60,61]]],[17,2,2,61,63,[[474,2,2,61,63]]],[18,5,5,63,68,[[497,1,1,63,64],[509,1,1,64,65],[510,1,1,65,66],[553,1,1,66,67],[624,1,1,67,68]]],[19,2,2,68,70,[[648,1,1,68,69],[653,1,1,69,70]]],[20,1,1,70,71,[[668,1,1,70,71]]],[22,10,10,71,81,[[680,1,1,71,72],[683,1,1,72,73],[708,1,1,73,74],[709,2,2,74,76],[714,1,1,76,77],[716,1,1,77,78],[721,1,1,78,79],[741,1,1,79,80],[744,1,1,80,81]]],[23,16,16,81,97,[[748,1,1,81,82],[749,1,1,82,83],[750,1,1,83,84],[752,3,3,84,87],[756,1,1,87,88],[761,1,1,88,89],[766,1,1,89,90],[775,1,1,90,91],[790,2,2,91,93],[794,2,2,93,95],[795,2,2,95,97]]],[25,12,12,97,109,[[818,1,1,97,98],[824,4,4,98,102],[827,3,3,102,105],[828,1,1,105,106],[839,2,2,106,108],[840,1,1,108,109]]],[27,2,2,109,111,[[862,1,1,109,110],[875,1,1,110,111]]],[28,1,1,111,112,[[877,1,1,111,112]]],[29,3,3,112,115,[[880,1,1,112,113],[882,1,1,113,114],[884,1,1,114,115]]],[32,1,1,115,116,[[897,1,1,115,116]]],[33,1,1,116,117,[[902,1,1,116,117]]],[34,3,3,117,120,[[903,1,1,117,118],[905,2,2,118,120]]],[36,1,1,120,121,[[910,1,1,120,121]]],[37,14,10,121,131,[[911,2,1,121,122],[916,5,3,122,125],[919,1,1,125,126],[920,2,2,126,128],[922,2,1,128,129],[924,2,2,129,131]]]],[1437,1490,1745,1898,1912,1921,1939,1941,5212,5380,5428,6111,6113,6116,6645,8390,8870,8872,9104,9107,9108,9346,9409,9428,9429,9433,9484,9562,9583,9656,9688,9689,9691,9713,9714,9717,9720,9721,9774,9775,9789,9795,9845,9916,10047,10176,11210,11211,11388,11389,11392,11671,11732,12093,12355,12488,12801,12802,12803,12804,12827,13852,13853,14189,14364,14383,15087,16361,17015,17144,17500,17692,17767,18233,18251,18253,18338,18404,18522,18879,18942,19040,19066,19112,19159,19160,19169,19254,19382,19458,19731,20049,20054,20203,20208,20233,20239,20840,21013,21019,21027,21030,21107,21110,21111,21135,21429,21440,21468,22101,22285,22315,22394,22420,22462,22643,22714,22739,22776,22783,22877,22886,22949,22950,22953,23009,23019,23021,23049,23083,23088]]],["+",[4,4,[[6,1,1,0,1,[[215,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]],[11,2,2,2,4,[[321,2,2,2,4]]]],[6645,9346,9774,9775]]],["crane",[2,2,[[22,1,1,0,1,[[716,1,1,0,1]]],[23,1,1,1,2,[[752,1,1,1,2]]]],[18404,19160]]],["horse",[35,33,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,3,3,1,4,[[64,3,3,1,4]]],[10,4,3,4,7,[[300,1,1,4,5],[310,3,2,5,7]]],[13,2,2,7,9,[[367,1,1,7,8],[389,1,1,8,9]]],[15,1,1,9,10,[[415,1,1,9,10]]],[16,4,4,10,14,[[431,4,4,10,14]]],[17,2,2,14,16,[[474,2,2,14,16]]],[18,4,4,16,20,[[509,1,1,16,17],[510,1,1,17,18],[553,1,1,18,19],[624,1,1,19,20]]],[19,2,2,20,22,[[648,1,1,20,21],[653,1,1,21,22]]],[22,2,2,22,24,[[721,1,1,22,23],[741,1,1,23,24]]],[23,3,3,24,27,[[752,1,1,24,25],[775,1,1,25,26],[795,1,1,26,27]]],[29,1,1,27,28,[[880,1,1,27,28]]],[37,6,5,28,33,[[911,1,1,28,29],[919,1,1,29,30],[920,1,1,30,31],[922,2,1,31,32],[924,1,1,32,33]]]],[1490,1921,1939,1941,9108,9428,9433,11211,11671,12355,12801,12802,12803,12804,13852,13853,14364,14383,15087,16361,17015,17144,18522,18879,19159,19731,20233,22394,22886,23009,23019,23049,23083]]],["horseback",[2,2,[[16,2,2,0,2,[[431,1,1,0,1],[433,1,1,1,2]]]],[12802,12827]]],["horses",[96,91,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,3,3,1,4,[[58,1,1,1,2],[63,2,2,2,4]]],[4,4,3,4,7,[[163,1,1,4,5],[169,2,1,5,6],[172,1,1,6,7]]],[5,3,3,7,10,[[197,3,3,7,10]]],[9,1,1,10,11,[[281,1,1,10,11]]],[10,8,7,11,18,[[294,2,2,11,13],[300,2,2,13,15],[310,2,2,15,17],[312,2,1,17,18]]],[11,18,17,18,35,[[314,1,1,18,19],[315,2,1,19,20],[317,1,1,20,21],[318,3,3,21,24],[319,5,5,24,29],[321,1,1,29,30],[322,1,1,30,31],[323,1,1,31,32],[326,1,1,32,33],[330,1,1,33,34],[335,1,1,34,35]]],[13,5,5,35,40,[[367,1,1,35,36],[375,3,3,36,39],[391,1,1,39,40]]],[14,1,1,40,41,[[404,1,1,40,41]]],[15,1,1,41,42,[[419,1,1,41,42]]],[18,1,1,42,43,[[497,1,1,42,43]]],[20,1,1,43,44,[[668,1,1,43,44]]],[22,6,6,44,50,[[680,1,1,44,45],[708,1,1,45,46],[709,2,2,46,48],[714,1,1,48,49],[744,1,1,49,50]]],[23,12,12,50,62,[[748,1,1,50,51],[749,1,1,51,52],[750,1,1,52,53],[752,1,1,53,54],[756,1,1,54,55],[761,1,1,55,56],[766,1,1,56,57],[790,2,2,57,59],[794,2,2,59,61],[795,1,1,61,62]]],[25,12,12,62,74,[[818,1,1,62,63],[824,4,4,63,67],[827,3,3,67,70],[828,1,1,70,71],[839,2,2,71,73],[840,1,1,73,74]]],[27,2,2,74,76,[[862,1,1,74,75],[875,1,1,75,76]]],[28,1,1,76,77,[[877,1,1,76,77]]],[29,2,2,77,79,[[882,1,1,77,78],[884,1,1,78,79]]],[32,1,1,79,80,[[897,1,1,79,80]]],[33,1,1,80,81,[[902,1,1,80,81]]],[34,3,3,81,84,[[903,1,1,81,82],[905,2,2,82,84]]],[36,1,1,84,85,[[910,1,1,84,85]]],[37,8,6,85,91,[[911,1,1,85,86],[916,5,3,86,89],[920,1,1,89,90],[924,1,1,90,91]]]],[1437,1745,1898,1912,5212,5380,5428,6111,6113,6116,8390,8870,8872,9104,9107,9409,9429,9484,9562,9583,9656,9688,9689,9691,9713,9714,9717,9720,9721,9789,9795,9845,9916,10047,10176,11210,11388,11389,11392,11732,12093,12488,14189,17500,17692,18233,18251,18253,18338,18942,19040,19066,19112,19169,19254,19382,19458,20049,20054,20203,20208,20239,20840,21013,21019,21027,21030,21107,21110,21111,21135,21429,21440,21468,22101,22285,22315,22420,22462,22643,22714,22739,22776,22783,22877,22886,22949,22950,22953,23021,23088]]],["horses'",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17767]]]]},{"k":"H5484","v":[["horses",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17546]]]]},{"k":"H5485","v":[["Susi",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4086]]]]},{"k":"H5486","v":[["*",[9,7,[[16,1,1,0,1,[[434,1,1,0,1]]],[18,1,1,1,2,[[550,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]],[23,2,1,3,4,[[752,2,1,3,4]]],[29,1,1,4,5,[[881,1,1,4,5]]],[35,3,2,5,7,[[906,3,2,5,7]]]],[12862,15039,18939,19166,22410,22789,22790]]],["+",[4,3,[[18,1,1,0,1,[[550,1,1,0,1]]],[23,2,1,1,2,[[752,2,1,1,2]]],[35,1,1,2,3,[[906,1,1,2,3]]]],[15039,19166,22789]]],["consume",[2,1,[[35,2,1,0,1,[[906,2,1,0,1]]]],[22790]]],["consumed",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18939]]],["end",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22410]]],["perish",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12862]]]]},{"k":"H5487","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21802,21870]]],["consume",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21802]]],["fulfilled",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21870]]]]},{"k":"H5488","v":[["*",[28,28,[[1,7,7,0,7,[[51,2,2,0,2],[59,1,1,2,3],[62,1,1,3,4],[64,2,2,4,6],[72,1,1,6,7]]],[3,4,4,7,11,[[130,1,1,7,8],[137,1,1,8,9],[149,2,2,9,11]]],[4,3,3,11,14,[[153,1,1,11,12],[154,1,1,12,13],[163,1,1,13,14]]],[5,3,3,14,17,[[188,1,1,14,15],[190,1,1,15,16],[210,1,1,16,17]]],[6,1,1,17,18,[[221,1,1,17,18]]],[10,1,1,18,19,[[299,1,1,18,19]]],[15,1,1,19,20,[[421,1,1,19,20]]],[18,5,5,20,25,[[583,3,3,20,23],[613,2,2,23,25]]],[22,1,1,25,26,[[697,1,1,25,26]]],[23,1,1,26,27,[[793,1,1,26,27]]],[31,1,1,27,28,[[890,1,1,27,28]]]],[1557,1559,1796,1885,1924,1942,2175,4133,4344,4770,4771,4932,4939,5212,5879,5933,6482,6845,9077,12520,15658,15660,15673,16209,16211,18010,20148,22553]]],["+",[2,2,[[1,2,2,0,2,[[64,1,1,0,1],[72,1,1,1,2]]]],[1942,2175]]],["Red",[22,22,[[1,3,3,0,3,[[59,1,1,0,1],[62,1,1,1,2],[64,1,1,2,3]]],[3,4,4,3,7,[[130,1,1,3,4],[137,1,1,4,5],[149,2,2,5,7]]],[4,3,3,7,10,[[153,1,1,7,8],[154,1,1,8,9],[163,1,1,9,10]]],[5,3,3,10,13,[[188,1,1,10,11],[190,1,1,11,12],[210,1,1,12,13]]],[6,1,1,13,14,[[221,1,1,13,14]]],[10,1,1,14,15,[[299,1,1,14,15]]],[15,1,1,15,16,[[421,1,1,15,16]]],[18,5,5,16,21,[[583,3,3,16,19],[613,2,2,19,21]]],[23,1,1,21,22,[[793,1,1,21,22]]]],[1796,1885,1924,4133,4344,4770,4771,4932,4939,5212,5879,5933,6482,6845,9077,12520,15658,15660,15673,16209,16211,20148]]],["flags",[3,3,[[1,2,2,0,2,[[51,2,2,0,2]]],[22,1,1,2,3,[[697,1,1,2,3]]]],[1557,1559,18010]]],["weeds",[1,1,[[31,1,1,0,1,[[890,1,1,0,1]]]],[22553]]]]},{"k":"H5489","v":[["Red",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4893]]]]},{"k":"H5490","v":[["*",[5,5,[[13,1,1,0,1,[[386,1,1,0,1]]],[20,3,3,1,4,[[661,1,1,1,2],[665,1,1,2,3],[670,1,1,3,4]]],[28,1,1,4,5,[[877,1,1,4,5]]]],[11603,17370,17431,17536,22331]]],["conclusion",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17536]]],["end",[3,3,[[13,1,1,0,1,[[386,1,1,0,1]]],[20,2,2,1,3,[[661,1,1,1,2],[665,1,1,2,3]]]],[11603,17370,17431]]],["part",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22331]]]]},{"k":"H5491","v":[["end",[5,5,[[26,5,5,0,5,[[853,2,2,0,2],[855,1,1,2,3],[856,2,2,3,5]]]],[21848,21859,21931,21959,21961]]]]},{"k":"H5492","v":[["*",[16,16,[[3,1,1,0,1,[[137,1,1,0,1]]],[17,3,3,1,4,[[456,1,1,1,2],[462,1,1,2,3],[472,1,1,3,4]]],[18,1,1,4,5,[[560,1,1,4,5]]],[19,2,2,5,7,[[628,1,1,5,6],[637,1,1,6,7]]],[22,5,5,7,12,[[683,1,1,7,8],[695,1,1,8,9],[699,1,1,9,10],[707,1,1,10,11],[744,1,1,11,12]]],[23,1,1,12,13,[[748,1,1,12,13]]],[27,1,1,13,14,[[869,1,1,13,14]]],[29,1,1,14,15,[[879,1,1,14,15]]],[33,1,1,15,16,[[900,1,1,15,16]]]],[4354,13373,13501,13778,15256,16427,16681,17767,17996,18036,18199,18937,19040,22201,22378,22687]]],["sea",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4354]]],["storm",[3,3,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,1,1,1,2,[[560,1,1,1,2]]],[22,1,1,2,3,[[707,1,1,2,3]]]],[13373,15256,18199]]],["tempest",[1,1,[[17,1,1,0,1,[[462,1,1,0,1]]]],[13501]]],["whirlwind",[10,10,[[17,1,1,0,1,[[472,1,1,0,1]]],[19,2,2,1,3,[[628,1,1,1,2],[637,1,1,2,3]]],[22,3,3,3,6,[[683,1,1,3,4],[695,1,1,4,5],[744,1,1,5,6]]],[23,1,1,6,7,[[748,1,1,6,7]]],[27,1,1,7,8,[[869,1,1,7,8]]],[29,1,1,8,9,[[879,1,1,8,9]]],[33,1,1,9,10,[[900,1,1,9,10]]]],[13778,16427,16681,17767,17996,18937,19040,22201,22378,22687]]],["whirlwinds",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18036]]]]},{"k":"H5493","v":[["*",[301,282,[[0,11,11,0,11,[[7,1,1,0,1],[18,2,2,1,3],[29,2,2,3,5],[34,1,1,5,6],[37,2,2,6,8],[40,1,1,8,9],[47,1,1,9,10],[48,1,1,10,11]]],[1,13,13,11,24,[[52,2,2,11,13],[57,4,4,13,17],[59,1,1,17,18],[63,1,1,18,19],[72,1,1,19,20],[74,1,1,20,21],[81,1,1,21,22],[82,1,1,22,23],[83,1,1,23,24]]],[2,12,10,24,34,[[90,1,1,24,25],[92,4,4,25,29],[93,5,3,29,32],[96,1,1,32,33],[102,1,1,33,34]]],[3,4,4,34,38,[[128,1,1,34,35],[130,1,1,35,36],[132,1,1,36,37],[137,1,1,37,38]]],[4,15,15,38,53,[[154,1,1,38,39],[156,1,1,39,40],[157,1,1,40,41],[159,2,2,41,43],[161,2,2,43,45],[163,2,2,45,47],[169,3,3,47,50],[173,1,1,50,51],[180,1,1,51,52],[183,1,1,52,53]]],[5,7,6,53,59,[[187,1,1,53,54],[193,1,1,54,55],[197,1,1,55,56],[209,2,1,56,57],[210,2,2,57,59]]],[6,16,14,59,73,[[212,1,1,59,60],[214,3,1,60,61],[219,1,1,61,62],[220,1,1,62,63],[224,1,1,63,64],[226,3,3,64,67],[228,2,2,67,69],[229,3,3,69,72],[230,1,1,72,73]]],[7,2,1,73,74,[[235,2,1,73,74]]],[8,22,21,74,95,[[236,1,1,74,75],[241,2,2,75,77],[242,2,2,77,79],[247,2,2,79,81],[250,3,2,81,83],[251,2,2,83,85],[252,3,3,85,88],[253,2,2,88,90],[256,1,1,90,91],[257,1,1,91,92],[263,3,3,92,95]]],[9,12,10,95,105,[[268,3,3,95,98],[270,1,1,98,99],[271,1,1,99,100],[272,1,1,100,101],[273,3,1,101,102],[278,1,1,102,103],[282,1,1,103,104],[288,1,1,104,105]]],[10,11,10,105,115,[[292,1,1,105,106],[305,4,4,106,110],[310,3,3,110,113],[312,3,2,113,115]]],[11,32,31,115,146,[[315,2,2,115,117],[316,3,3,117,120],[318,1,1,120,121],[322,2,2,121,123],[324,1,1,123,124],[325,3,3,124,127],[326,2,2,127,129],[327,6,6,129,135],[328,1,1,135,136],[329,3,3,136,139],[330,3,3,139,142],[334,1,1,142,143],[335,3,2,143,145],[336,1,1,145,146]]],[12,3,2,146,148,[[350,1,1,146,147],[354,2,1,147,148]]],[13,22,20,148,168,[[374,1,1,148,149],[380,2,2,149,151],[381,2,2,151,153],[383,1,1,153,154],[386,3,3,154,157],[391,1,1,157,158],[396,3,2,158,160],[398,1,1,160,161],[399,2,2,161,163],[400,3,2,163,165],[401,2,2,165,167],[402,1,1,167,168]]],[15,1,1,168,169,[[421,1,1,168,169]]],[16,3,3,169,172,[[428,1,1,169,170],[429,1,1,170,171],[433,1,1,171,172]]],[17,18,17,172,189,[[436,2,2,172,174],[437,1,1,174,175],[444,1,1,175,176],[447,2,2,176,178],[450,2,1,178,179],[454,1,1,179,180],[456,1,1,180,181],[457,1,1,181,182],[462,2,2,182,184],[463,1,1,184,185],[468,1,1,185,186],[469,3,3,186,189]]],[18,13,13,189,202,[[483,1,1,189,190],[491,1,1,190,191],[495,1,1,191,192],[511,1,1,192,193],[514,1,1,193,194],[516,1,1,194,195],[543,1,1,195,196],[558,1,1,196,197],[578,1,1,197,198],[596,3,3,198,201],[616,1,1,201,202]]],[19,17,17,202,219,[[630,1,1,202,203],[631,2,2,203,205],[632,1,1,205,206],[636,2,2,206,208],[638,1,1,208,209],[640,2,2,209,211],[641,2,2,211,213],[642,1,1,213,214],[643,2,2,214,216],[649,1,1,216,217],[654,1,1,217,218],[655,1,1,218,219]]],[20,1,1,219,220,[[669,1,1,219,220]]],[22,25,23,220,243,[[679,2,2,220,222],[681,2,2,222,224],[683,2,2,224,226],[684,1,1,226,227],[685,1,1,227,228],[688,2,2,228,230],[689,1,1,230,231],[692,2,1,231,232],[695,1,1,232,233],[696,1,1,233,234],[703,1,1,234,235],[705,1,1,235,236],[708,1,1,236,237],[709,1,1,237,238],[714,1,1,238,239],[727,1,1,239,240],[730,2,1,240,241],[736,1,1,241,242],[737,1,1,242,243]]],[23,9,9,243,252,[[748,2,2,243,245],[749,2,2,245,247],[750,1,1,247,248],[759,1,1,248,249],[761,1,1,249,250],[776,2,2,250,252]]],[24,4,2,252,254,[[799,1,1,252,253],[800,3,1,253,254]]],[25,10,10,254,264,[[807,1,1,254,255],[812,2,2,255,257],[817,2,2,257,259],[822,1,1,259,260],[824,1,1,260,261],[827,1,1,261,262],[837,1,1,262,263],[846,1,1,263,264]]],[26,4,4,264,268,[[858,2,2,264,266],[860,1,1,266,267],[861,1,1,267,268]]],[27,5,5,268,273,[[863,2,2,268,270],[865,1,1,270,271],[868,1,1,271,272],[870,1,1,272,273]]],[29,2,2,273,275,[[883,1,1,273,274],[884,1,1,274,275]]],[35,2,2,275,277,[[908,2,2,275,277]]],[37,3,3,277,280,[[913,1,1,277,278],[919,1,1,278,279],[920,1,1,279,280]]],[38,2,2,280,282,[[926,1,1,280,281],[927,1,1,281,282]]]],[196,459,460,862,865,1013,1133,1138,1237,1468,1483,1582,1583,1718,1721,1739,1741,1794,1914,2169,2210,2446,2496,2530,2761,2782,2787,2788,2793,2804,2826,2830,2883,3110,4069,4117,4220,4347,4965,5013,5085,5115,5126,5169,5173,5224,5236,5375,5381,5384,5460,5625,5757,5858,5989,6122,6466,6490,6499,6562,6617,6783,6827,6917,6966,6968,6969,6996,7008,7035,7036,7039,7062,7191,7226,7334,7343,7355,7356,7480,7481,7566,7592,7609,7618,7644,7657,7664,7688,7689,7778,7801,7945,7957,7958,8070,8071,8072,8127,8138,8167,8195,8296,8435,8625,8801,9254,9261,9262,9263,9432,9447,9449,9512,9523,9578,9579,9611,9613,9614,9706,9822,9824,9853,9873,9877,9882,9900,9920,9929,9934,9943,9949,9953,9960,9980,10001,10005,10006,10028,10030,10046,10147,10184,10192,10205,10773,10876,11361,11478,11480,11506,11507,11529,11597,11619,11620,11731,11836,11841,11887,11916,11923,11935,11966,11978,11981,11996,12530,12757,12766,12819,12870,12877,12894,13085,13148,13152,13233,13306,13369,13406,13483,13486,13532,13667,13688,13703,13710,13993,14083,14140,14402,14477,14522,14893,15223,15517,15927,16000,16013,16258,16462,16514,16517,16524,16642,16654,16710,16761,16766,16788,16799,16831,16846,16857,17021,17191,17205,17523,17670,17679,17708,17725,17744,17762,17776,17799,17863,17877,17897,17953,17984,18002,18126,18160,18228,18252,18337,18657,18707,18795,18815,19028,19031,19068,19081,19117,19320,19362,19762,19771,20365,20435,20572,20673,20674,20804,20812,20970,21032,21116,21385,21639,21993,21999,22067,22092,22107,22122,22151,22192,22220,22446,22457,22831,22835,22916,23006,23027,23111,23127]]],["+",[56,55,[[0,3,3,0,3,[[7,1,1,0,1],[34,1,1,1,2],[40,1,1,2,3]]],[1,4,4,3,7,[[63,1,1,3,4],[72,1,1,4,5],[82,1,1,5,6],[83,1,1,6,7]]],[2,1,1,7,8,[[90,1,1,7,8]]],[3,1,1,8,9,[[137,1,1,8,9]]],[4,4,4,9,13,[[159,1,1,9,10],[169,2,2,10,12],[173,1,1,12,13]]],[5,2,2,13,15,[[197,1,1,13,14],[210,1,1,14,15]]],[6,2,2,15,17,[[219,1,1,15,16],[220,1,1,16,17]]],[8,7,7,17,24,[[236,1,1,17,18],[241,1,1,18,19],[242,2,2,19,21],[247,2,2,21,23],[252,1,1,23,24]]],[9,3,3,24,27,[[270,1,1,24,25],[272,1,1,25,26],[282,1,1,26,27]]],[10,5,5,27,32,[[305,2,2,27,29],[310,2,2,29,31],[312,1,1,31,32]]],[11,7,6,32,38,[[315,1,1,32,33],[318,1,1,33,34],[329,1,1,34,35],[330,1,1,35,36],[334,1,1,36,37],[335,2,1,37,38]]],[12,1,1,38,39,[[354,1,1,38,39]]],[13,7,7,39,46,[[380,1,1,39,40],[383,1,1,40,41],[396,1,1,41,42],[398,1,1,42,43],[399,2,2,43,45],[400,1,1,45,46]]],[16,2,2,46,48,[[428,1,1,46,47],[433,1,1,47,48]]],[17,1,1,48,49,[[444,1,1,48,49]]],[22,1,1,49,50,[[681,1,1,49,50]]],[25,4,4,50,54,[[812,1,1,50,51],[817,1,1,51,52],[827,1,1,52,53],[837,1,1,53,54]]],[27,1,1,54,55,[[863,1,1,54,55]]]],[196,1013,1237,1914,2169,2496,2530,2761,4347,5115,5381,5384,5460,6122,6490,6783,6827,7226,7343,7355,7356,7480,7481,7664,8127,8167,8435,9254,9261,9432,9449,9523,9578,9706,10006,10028,10147,10192,10876,11478,11529,11841,11887,11916,11923,11966,12757,12819,13085,17725,20673,20812,21116,21385,22122]]],["Depart",[9,9,[[3,1,1,0,1,[[132,1,1,0,1]]],[17,2,2,1,3,[[456,1,1,1,2],[457,1,1,2,3]]],[18,4,4,3,7,[[483,1,1,3,4],[511,1,1,4,5],[514,1,1,5,6],[596,1,1,6,7]]],[22,1,1,7,8,[[730,1,1,7,8]]],[24,1,1,8,9,[[800,1,1,8,9]]]],[4220,13369,13406,13993,14402,14477,16013,18707,20435]]],["Get",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18228]]],["Remove",[3,3,[[18,2,2,0,2,[[516,1,1,0,1],[596,1,1,1,2]]],[25,1,1,2,3,[[822,1,1,2,3]]]],[14522,15927,20970]]],["aside",[24,23,[[1,3,3,0,3,[[52,2,2,0,2],[81,1,1,2,3]]],[4,7,7,3,10,[[157,1,1,3,4],[161,2,2,4,6],[163,2,2,6,8],[180,1,1,8,9],[183,1,1,9,10]]],[5,1,1,10,11,[[209,1,1,10,11]]],[6,3,3,11,14,[[224,1,1,11,12],[229,2,2,12,14]]],[7,2,1,14,15,[[235,2,1,14,15]]],[9,3,3,15,18,[[268,3,3,15,18]]],[10,2,2,18,20,[[310,1,1,18,19],[312,1,1,19,20]]],[18,1,1,20,21,[[491,1,1,20,21]]],[23,1,1,21,22,[[759,1,1,21,22]]],[24,1,1,22,23,[[799,1,1,22,23]]]],[1582,1583,2446,5085,5169,5173,5224,5236,5625,5757,6466,6917,7036,7039,7191,8070,8071,8072,9447,9512,14083,19320,20365]]],["away",[69,66,[[1,2,2,0,2,[[57,1,1,0,1],[59,1,1,1,2]]],[2,9,7,2,9,[[92,3,3,2,5],[93,5,3,5,8],[96,1,1,8,9]]],[4,1,1,9,10,[[159,1,1,9,10]]],[5,2,2,10,12,[[193,1,1,10,11],[210,1,1,11,12]]],[8,2,2,12,14,[[252,1,1,12,13],[263,1,1,13,14]]],[9,3,2,14,16,[[271,1,1,14,15],[273,2,1,15,16]]],[10,2,2,16,18,[[292,1,1,16,17],[312,1,1,17,18]]],[11,4,4,18,22,[[324,1,1,18,19],[326,1,1,19,20],[330,1,1,20,21],[335,1,1,21,22]]],[13,6,6,22,28,[[380,1,1,22,23],[381,1,1,23,24],[386,1,1,24,25],[391,1,1,25,26],[396,2,2,26,28]]],[16,1,1,28,29,[[429,1,1,28,29]]],[17,6,6,29,35,[[447,2,2,29,31],[450,1,1,31,32],[462,1,1,32,33],[469,2,2,33,35]]],[18,2,2,35,37,[[495,1,1,35,36],[543,1,1,36,37]]],[19,2,2,37,39,[[631,1,1,37,38],[655,1,1,38,39]]],[22,13,13,39,52,[[679,2,2,39,41],[681,1,1,41,42],[683,2,2,42,44],[684,1,1,44,45],[688,1,1,45,46],[695,1,1,46,47],[696,1,1,47,48],[703,1,1,48,49],[705,1,1,49,50],[714,1,1,50,51],[736,1,1,51,52]]],[23,3,3,52,55,[[748,2,2,52,54],[749,1,1,54,55]]],[25,1,1,55,56,[[824,1,1,55,56]]],[26,2,2,56,58,[[860,1,1,56,57],[861,1,1,57,58]]],[27,1,1,58,59,[[863,1,1,58,59]]],[29,1,1,59,60,[[883,1,1,59,60]]],[35,2,2,60,62,[[908,2,2,60,62]]],[37,3,3,62,65,[[913,1,1,62,63],[919,1,1,63,64],[920,1,1,64,65]]],[38,1,1,65,66,[[927,1,1,65,66]]]],[1718,1794,2782,2788,2793,2804,2826,2830,2883,5126,5989,6499,7644,7945,8138,8195,8801,9523,9853,9900,10046,10184,11480,11507,11620,11731,11836,11841,12766,13148,13152,13233,13483,13688,13703,14140,14893,16514,17205,17670,17679,17708,17744,17762,17776,17877,17984,18002,18126,18160,18337,18795,19028,19031,19068,21032,22067,22092,22107,22446,22831,22835,22916,23006,23027,23127]]],["back",[2,2,[[17,1,1,0,1,[[469,1,1,0,1]]],[22,1,1,1,2,[[709,1,1,1,2]]]],[13710,18252]]],["brought",[1,1,[[12,1,1,0,1,[[350,1,1,0,1]]]],[10773]]],["by",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1138]]],["decline",[1,1,[[4,1,1,0,1,[[169,1,1,0,1]]]],[5375]]],["declined",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11935]]],["depart",[31,29,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[57,2,2,1,3]]],[4,1,1,3,4,[[156,1,1,3,4]]],[8,1,1,4,5,[[250,1,1,4,5]]],[9,2,2,5,7,[[278,1,1,5,6],[288,1,1,6,7]]],[13,1,1,7,8,[[401,1,1,7,8]]],[17,2,2,8,10,[[450,1,1,8,9],[463,1,1,9,10]]],[18,2,2,10,12,[[578,1,1,10,11],[616,1,1,11,12]]],[19,10,10,12,22,[[630,1,1,12,13],[632,1,1,13,14],[640,2,2,14,16],[641,1,1,16,17],[642,1,1,17,18],[643,2,2,18,20],[649,1,1,20,21],[654,1,1,21,22]]],[22,4,3,22,25,[[689,1,1,22,23],[692,2,1,23,24],[730,1,1,24,25]]],[23,1,1,25,26,[[776,1,1,25,26]]],[24,2,1,26,27,[[800,2,1,26,27]]],[25,1,1,27,28,[[817,1,1,27,28]]],[27,1,1,28,29,[[870,1,1,28,29]]]],[1483,1721,1739,5013,7566,8296,8625,11981,13233,13532,15517,16258,16462,16524,16761,16766,16799,16831,16846,16857,17021,17191,17897,17953,18707,19771,20435,20804,22220]]],["departed",[31,31,[[2,1,1,0,1,[[102,1,1,0,1]]],[3,2,2,1,3,[[128,1,1,1,2],[130,1,1,2,3]]],[6,1,1,3,4,[[226,1,1,3,4]]],[8,6,6,4,10,[[250,1,1,4,5],[251,2,2,5,7],[253,1,1,7,8],[263,2,2,8,10]]],[11,13,13,10,23,[[315,1,1,10,11],[322,2,2,11,13],[325,3,3,13,16],[326,1,1,16,17],[327,4,4,17,21],[329,1,1,21,22],[330,1,1,22,23]]],[13,3,3,23,26,[[374,1,1,23,24],[386,1,1,24,25],[400,1,1,25,26]]],[15,1,1,26,27,[[421,1,1,26,27]]],[18,1,1,27,28,[[596,1,1,27,28]]],[22,1,1,28,29,[[685,1,1,28,29]]],[25,1,1,29,30,[[807,1,1,29,30]]],[38,1,1,30,31,[[926,1,1,30,31]]]],[3110,4069,4117,6969,7566,7609,7618,7688,7957,7958,9579,9822,9824,9873,9877,9882,9920,9934,9943,9949,9953,10005,10030,11361,11619,11966,12530,16000,17799,20572,23111]]],["departeth",[3,3,[[19,1,1,0,1,[[641,1,1,0,1]]],[22,1,1,1,2,[[737,1,1,1,2]]],[23,1,1,2,3,[[761,1,1,2,3]]]],[16788,18815,19362]]],["departing",[2,2,[[26,2,2,0,2,[[858,2,2,0,2]]]],[21993,21999]]],["down",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[11996]]],["eschewed",[1,1,[[17,1,1,0,1,[[436,1,1,0,1]]]],[12870]]],["escheweth",[2,2,[[17,2,2,0,2,[[436,1,1,0,1],[437,1,1,1,2]]]],[12877,12894]]],["fro",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18657]]],["go",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6966]]],["goeth",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7801]]],["grievous",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19117]]],["in",[9,7,[[0,2,2,0,2,[[18,2,2,0,2]]],[6,5,3,2,5,[[214,3,1,2,3],[228,1,1,3,4],[229,1,1,4,5]]],[11,2,2,5,7,[[316,2,2,5,7]]]],[459,460,6617,6996,7035,9611,9613]]],["off",[1,1,[[2,1,1,0,1,[[92,1,1,0,1]]]],[2787]]],["past",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7592]]],["put",[2,2,[[0,1,1,0,1,[[37,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]]],[1133,7657]]],["rebel",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22192]]],["remove",[7,7,[[0,1,1,0,1,[[47,1,1,0,1]]],[11,1,1,1,2,[[336,1,1,1,2]]],[17,1,1,2,3,[[462,1,1,2,3]]],[19,1,1,3,4,[[631,1,1,3,4]]],[20,1,1,4,5,[[669,1,1,4,5]]],[23,1,1,5,6,[[776,1,1,5,6]]],[25,1,1,6,7,[[846,1,1,6,7]]]],[1468,10205,13486,16517,17523,19762,21639]]],["removed",[15,15,[[0,1,1,0,1,[[29,1,1,0,1]]],[1,1,1,1,2,[[57,1,1,1,2]]],[8,2,2,2,4,[[241,1,1,2,3],[253,1,1,3,4]]],[10,2,2,4,6,[[305,2,2,4,6]]],[11,4,4,6,10,[[327,2,2,6,8],[328,1,1,8,9],[329,1,1,9,10]]],[13,2,2,10,12,[[381,1,1,10,11],[401,1,1,11,12]]],[18,1,1,12,13,[[558,1,1,12,13]]],[22,1,1,13,14,[[688,1,1,13,14]]],[29,1,1,14,15,[[884,1,1,14,15]]]],[865,1741,7334,7689,9262,9263,9929,9960,9980,10001,11506,11978,15223,17863,22457]]],["removing",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[862]]],["revolted",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19081]]],["sour",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22151]]],["take",[1,1,[[25,1,1,0,1,[[812,1,1,0,1]]]],[20674]]],["taken",[3,3,[[1,1,1,0,1,[[74,1,1,0,1]]],[8,1,1,1,2,[[256,1,1,1,2]]],[17,1,1,2,3,[[454,1,1,2,3]]]],[2210,7778,13306]]],["took",[2,2,[[9,1,1,0,1,[[273,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]]],[8195,10876]]],["turn",[6,6,[[4,1,1,0,1,[[154,1,1,0,1]]],[5,2,2,1,3,[[187,1,1,1,2],[209,1,1,2,3]]],[6,1,1,3,4,[[230,1,1,3,4]]],[19,2,2,4,6,[[636,2,2,4,6]]]],[4965,5858,6466,7062,16642,16654]]],["turned",[4,4,[[6,2,2,0,2,[[212,1,1,0,1],[228,1,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]],[13,1,1,3,4,[[386,1,1,3,4]]]],[6562,7008,9614,11597]]],["went",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6968]]],["withdraw",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13667]]],["without",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16710]]]]},{"k":"H5494","v":[["degenerate",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18986]]]]},{"k":"H5495","v":[["Sur",[1,1,[[11,1,1,0,1,[[323,1,1,0,1]]]],[9835]]]]},{"k":"H5496","v":[["*",[18,18,[[4,1,1,0,1,[[165,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]],[6,1,1,2,3,[[211,1,1,2,3]]],[8,1,1,3,4,[[261,1,1,3,4]]],[9,1,1,4,5,[[290,1,1,4,5]]],[10,1,1,5,6,[[311,1,1,5,6]]],[11,1,1,6,7,[[330,1,1,6,7]]],[12,1,1,7,8,[[358,1,1,7,8]]],[13,4,4,8,12,[[384,2,2,8,10],[398,2,2,10,12]]],[17,3,3,12,15,[[437,1,1,12,13],[471,2,2,13,15]]],[22,1,1,15,16,[[714,1,1,15,16]]],[23,2,2,16,18,[[782,1,1,16,17],[787,1,1,17,18]]]],[5278,6220,6523,7924,8693,9476,10056,10935,11544,11573,11886,11890,12894,13752,13754,18348,19917,20000]]],["+",[3,3,[[9,1,1,0,1,[[290,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]],[23,1,1,2,3,[[787,1,1,2,3]]]],[8693,10935,20000]]],["away",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13754]]],["entice",[1,1,[[4,1,1,0,1,[[165,1,1,0,1]]]],[5278]]],["moved",[3,3,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]],[13,1,1,2,3,[[384,1,1,2,3]]]],[6220,6523,11573]]],["movedst",[1,1,[[17,1,1,0,1,[[437,1,1,0,1]]]],[12894]]],["persuade",[3,3,[[13,2,2,0,2,[[398,2,2,0,2]]],[22,1,1,2,3,[[714,1,1,2,3]]]],[11886,11890,18348]]],["persuaded",[1,1,[[13,1,1,0,1,[[384,1,1,0,1]]]],[11544]]],["persuadeth",[1,1,[[11,1,1,0,1,[[330,1,1,0,1]]]],[10056]]],["removed",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13752]]],["set",[1,1,[[23,1,1,0,1,[[782,1,1,0,1]]]],[19917]]],["up",[2,2,[[8,1,1,0,1,[[261,1,1,0,1]]],[10,1,1,1,2,[[311,1,1,1,2]]]],[7924,9476]]]]},{"k":"H5497","v":[["clothes",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1484]]]]},{"k":"H5498","v":[["*",[5,5,[[9,1,1,0,1,[[283,1,1,0,1]]],[23,4,4,1,5,[[759,1,1,1,2],[766,1,1,2,3],[793,1,1,3,4],[794,1,1,4,5]]]],[8462,19318,19473,20147,20211]]],["draw",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8462]]],["drawn",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19473]]],["out",[2,2,[[23,2,2,0,2,[[793,1,1,0,1],[794,1,1,1,2]]]],[20147,20211]]],["tear",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19318]]]]},{"k":"H5499","v":[["clouts",[2,2,[[23,2,2,0,2,[[782,2,2,0,2]]]],[19906,19907]]]]},{"k":"H5500","v":[["scrape",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21104]]]]},{"k":"H5501","v":[["offscouring",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20399]]]]},{"k":"H5502","v":[["*",[2,2,[[19,1,1,0,1,[[655,1,1,0,1]]],[23,1,1,1,2,[[790,1,1,1,2]]]],[17199,20060]]],["away",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20060]]],["sweeping",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17199]]]]},{"k":"H5503","v":[["*",[21,20,[[0,5,5,0,5,[[22,1,1,0,1],[33,2,2,1,3],[36,1,1,3,4],[41,1,1,4,5]]],[10,1,1,5,6,[[300,1,1,5,6]]],[13,2,2,6,8,[[367,1,1,6,7],[375,1,1,7,8]]],[18,1,1,8,9,[[515,1,1,8,9]]],[19,1,1,9,10,[[658,1,1,9,10]]],[22,3,3,10,13,[[701,2,2,10,12],[725,1,1,12,13]]],[23,1,1,13,14,[[758,1,1,13,14]]],[25,7,6,14,20,[[828,6,5,14,19],[839,1,1,19,20]]]],[587,990,1001,1111,1286,9107,11210,11378,14500,17298,18079,18085,18614,19311,21133,21137,21139,21142,21157,21438]]],["+",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21142]]],["about",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19311]]],["merchant",[4,4,[[0,1,1,0,1,[[22,1,1,0,1]]],[25,3,3,1,4,[[828,3,3,1,4]]]],[587,21133,21137,21139]]],["merchantmen",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1111]]],["merchants",[9,9,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,2,2,1,3,[[367,1,1,1,2],[375,1,1,2,3]]],[22,3,3,3,6,[[701,2,2,3,5],[725,1,1,5,6]]],[25,3,3,6,9,[[828,2,2,6,8],[839,1,1,8,9]]]],[9107,11210,11378,18079,18085,18614,21142,21157,21438]]],["merchants'",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17298]]],["panteth",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14500]]],["trade",[2,2,[[0,2,2,0,2,[[33,2,2,0,2]]]],[990,1001]]],["traffick",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1286]]]]},{"k":"H5504","v":[["merchandise",[4,3,[[19,2,2,0,2,[[630,1,1,0,1],[658,1,1,1,2]]],[22,2,1,2,3,[[701,2,1,2,3]]]],[16469,17302,18095]]]]},{"k":"H5505","v":[["*",[3,3,[[19,1,1,0,1,[[630,1,1,0,1]]],[22,2,2,1,3,[[701,1,1,1,2],[723,1,1,2,3]]]],[16469,18080,18575]]],["+",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16469]]],["mart",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18080]]],["merchandise",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18575]]]]},{"k":"H5506","v":[["merchandise",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21136]]]]},{"k":"H5507","v":[["buckler",[1,1,[[18,1,1,0,1,[[568,1,1,0,1]]]],[15399]]]]},{"k":"H5508","v":[["marble",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12708]]]]},{"k":"H5509","v":[["dross",[8,7,[[18,1,1,0,1,[[596,1,1,0,1]]],[19,2,2,1,3,[[652,1,1,1,2],[653,1,1,2,3]]],[22,2,2,3,5,[[679,2,2,3,5]]],[25,3,2,5,7,[[823,3,2,5,7]]]],[16017,17117,17164,17676,17679,20994,20995]]]]},{"k":"H5510","v":[["Sivan",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12826]]]]},{"k":"H5511","v":[["Sihon",[37,34,[[3,9,8,0,8,[[137,8,7,0,7],[148,1,1,7,8]]],[4,11,11,8,19,[[153,1,1,8,9],[154,5,5,9,14],[155,2,2,14,16],[156,1,1,16,17],[181,1,1,17,18],[183,1,1,18,19]]],[5,8,7,19,26,[[188,1,1,19,20],[195,1,1,20,21],[198,2,2,21,23],[199,4,3,23,26]]],[6,4,3,26,29,[[221,4,3,26,29]]],[10,1,1,29,30,[[294,1,1,29,30]]],[15,1,1,30,31,[[421,1,1,30,31]]],[18,2,2,31,33,[[612,1,1,31,32],[613,1,1,32,33]]],[23,1,1,33,34,[[792,1,1,33,34]]]],[4361,4363,4366,4367,4368,4369,4374,4751,4896,4962,4964,4968,4969,4970,4977,4981,5050,5686,5732,5879,6047,6132,6135,6164,6175,6181,6848,6849,6850,8863,12533,16186,16215,20125]]]]},{"k":"H5512","v":[["Sin",[6,6,[[1,2,2,0,2,[[65,1,1,0,1],[66,1,1,1,2]]],[3,2,2,2,4,[[149,2,2,2,4]]],[25,2,2,4,6,[[831,2,2,4,6]]]],[1948,1984,4771,4772,21219,21220]]]]},{"k":"H5513","v":[["Sinite",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[251,10267]]]]},{"k":"H5514","v":[["*",[35,34,[[1,13,13,0,13,[[65,1,1,0,1],[68,6,6,1,7],[73,1,1,7,8],[80,1,1,8,9],[83,4,4,9,13]]],[2,5,4,13,17,[[96,2,1,13,14],[114,1,1,14,15],[115,1,1,15,16],[116,1,1,16,17]]],[3,12,12,17,29,[[117,2,2,17,19],[119,3,3,19,22],[125,2,2,22,24],[126,1,1,24,25],[142,1,1,25,26],[144,1,1,26,27],[149,2,2,27,29]]],[4,1,1,29,30,[[185,1,1,29,30]]],[6,1,1,30,31,[[215,1,1,30,31]]],[15,1,1,31,32,[[421,1,1,31,32]]],[18,2,2,32,34,[[545,2,2,32,34]]]],[1948,2027,2028,2037,2044,2046,2049,2193,2438,2498,2500,2525,2528,2917,3470,3570,3604,3605,3623,3693,3696,3706,3966,3970,4000,4553,4583,4775,4776,5812,6628,12524,14908,14917]]],["+",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5812]]],["Sinai",[34,33,[[1,13,13,0,13,[[65,1,1,0,1],[68,6,6,1,7],[73,1,1,7,8],[80,1,1,8,9],[83,4,4,9,13]]],[2,5,4,13,17,[[96,2,1,13,14],[114,1,1,14,15],[115,1,1,15,16],[116,1,1,16,17]]],[3,12,12,17,29,[[117,2,2,17,19],[119,3,3,19,22],[125,2,2,22,24],[126,1,1,24,25],[142,1,1,25,26],[144,1,1,26,27],[149,2,2,27,29]]],[6,1,1,29,30,[[215,1,1,29,30]]],[15,1,1,30,31,[[421,1,1,30,31]]],[18,2,2,31,33,[[545,2,2,31,33]]]],[1948,2027,2028,2037,2044,2046,2049,2193,2438,2498,2500,2525,2528,2917,3470,3570,3604,3605,3623,3693,3696,3706,3966,3970,4000,4553,4583,4775,4776,6628,12524,14908,14917]]]]},{"k":"H5515","v":[["Sinim",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18648]]]]},{"k":"H5516","v":[["Sisera",[21,19,[[6,17,15,0,15,[[214,13,11,0,11],[215,4,4,11,15]]],[8,1,1,15,16,[[247,1,1,15,16]]],[14,1,1,16,17,[[404,1,1,16,17]]],[15,1,1,17,18,[[419,1,1,17,18]]],[18,1,1,18,19,[[560,1,1,18,19]]]],[6601,6606,6608,6611,6612,6613,6614,6615,6616,6617,6621,6643,6649,6651,6653,7469,12080,12475,15250]]]]},{"k":"H5517","v":[["*",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12071,12467]]],["Sia",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12467]]],["Siaha",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12071]]]]},{"k":"H5518","v":[["*",[34,32,[[1,3,3,0,3,[[65,1,1,0,1],[76,1,1,1,2],[87,1,1,2,3]]],[10,1,1,3,4,[[297,1,1,3,4]]],[11,6,5,4,9,[[316,5,4,4,8],[337,1,1,8,9]]],[13,3,3,9,12,[[370,2,2,9,11],[401,1,1,11,12]]],[17,1,1,12,13,[[476,1,1,12,13]]],[18,3,3,13,16,[[535,1,1,13,14],[537,1,1,14,15],[585,1,1,15,16]]],[20,2,1,16,17,[[665,2,1,16,17]]],[22,1,1,17,18,[[712,1,1,17,18]]],[23,3,3,18,21,[[745,1,1,18,19],[796,2,2,19,21]]],[25,5,5,21,26,[[812,3,3,21,24],[825,2,2,24,26]]],[27,1,1,26,27,[[863,1,1,26,27]]],[29,1,1,27,28,[[882,1,1,27,28]]],[32,1,1,28,29,[[895,1,1,28,29]]],[33,1,1,29,30,[[900,1,1,29,30]]],[37,2,2,30,32,[[924,2,2,30,32]]]],[1950,2275,2636,8979,9641,9642,9643,9644,10236,11257,11262,11979,13919,14788,14815,15751,17435,18316,18959,20294,20295,20658,20662,20666,21059,21062,22111,22412,22611,22694,23088,23089]]],["+",[3,3,[[18,2,2,0,2,[[537,1,1,0,1],[585,1,1,1,2]]],[29,1,1,2,3,[[882,1,1,2,3]]]],[14815,15751,22412]]],["caldron",[3,3,[[25,3,3,0,3,[[812,3,3,0,3]]]],[20658,20662,20666]]],["caldrons",[2,2,[[23,2,2,0,2,[[796,2,2,0,2]]]],[20294,20295]]],["pans",[1,1,[[1,1,1,0,1,[[76,1,1,0,1]]]],[2275]]],["pot",[12,11,[[11,5,4,0,4,[[316,5,4,0,4]]],[17,1,1,4,5,[[476,1,1,4,5]]],[20,1,1,5,6,[[665,1,1,5,6]]],[23,1,1,6,7,[[745,1,1,6,7]]],[25,2,2,7,9,[[825,2,2,7,9]]],[32,1,1,9,10,[[895,1,1,9,10]]],[37,1,1,10,11,[[924,1,1,10,11]]]],[9641,9642,9643,9644,13919,17435,18959,21059,21062,22611,23089]]],["pots",[9,9,[[1,2,2,0,2,[[65,1,1,0,1],[87,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[11,1,1,3,4,[[337,1,1,3,4]]],[13,3,3,4,7,[[370,2,2,4,6],[401,1,1,6,7]]],[18,1,1,7,8,[[535,1,1,7,8]]],[37,1,1,8,9,[[924,1,1,8,9]]]],[1950,2636,8979,10236,11257,11262,11979,14788,23088]]],["thorns",[4,4,[[20,1,1,0,1,[[665,1,1,0,1]]],[22,1,1,1,2,[[712,1,1,1,2]]],[27,1,1,2,3,[[863,1,1,2,3]]],[33,1,1,3,4,[[900,1,1,3,4]]]],[17435,18316,22111,22694]]]]},{"k":"H5519","v":[["multitude",[1,1,[[18,1,1,0,1,[[519,1,1,0,1]]]],[14559]]]]},{"k":"H5520","v":[["*",[4,4,[[18,3,3,0,3,[[487,1,1,0,1],[504,1,1,1,2],[553,1,1,2,3]]],[23,1,1,3,4,[[769,1,1,3,4]]]],[14050,14290,15083,19572]]],["covert",[1,1,[[23,1,1,0,1,[[769,1,1,0,1]]]],[19572]]],["den",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14050]]],["pavilion",[1,1,[[18,1,1,0,1,[[504,1,1,0,1]]]],[14290]]],["tabernacle",[1,1,[[18,1,1,0,1,[[553,1,1,0,1]]]],[15083]]]]},{"k":"H5521","v":[["*",[31,29,[[0,1,1,0,1,[[32,1,1,0,1]]],[2,4,3,1,4,[[112,4,3,1,4]]],[4,3,3,4,7,[[168,2,2,4,6],[183,1,1,6,7]]],[9,2,2,7,9,[[277,1,1,7,8],[288,1,1,8,9]]],[10,2,2,9,11,[[310,2,2,9,11]]],[13,1,1,11,12,[[374,1,1,11,12]]],[14,1,1,12,13,[[405,1,1,12,13]]],[15,5,4,13,17,[[420,5,4,13,17]]],[17,3,3,17,20,[[462,1,1,17,18],[471,1,1,18,19],[473,1,1,19,20]]],[18,2,2,20,22,[[495,1,1,20,21],[508,1,1,21,22]]],[22,2,2,22,24,[[679,1,1,22,23],[682,1,1,23,24]]],[29,1,1,24,25,[[887,1,1,24,25]]],[31,1,1,25,26,[[892,1,1,25,26]]],[37,3,3,26,29,[[924,3,3,26,29]]]],[977,3436,3444,3445,5355,5358,5738,8270,8614,9420,9424,11359,12101,12507,12508,12509,12510,13499,13765,13833,14129,14351,17662,17739,22506,22573,23084,23086,23087]]],["booth",[2,2,[[17,1,1,0,1,[[462,1,1,0,1]]],[31,1,1,1,2,[[892,1,1,1,2]]]],[13499,22573]]],["booths",[9,7,[[0,1,1,0,1,[[32,1,1,0,1]]],[2,3,2,1,3,[[112,3,2,1,3]]],[15,5,4,3,7,[[420,5,4,3,7]]]],[977,3444,3445,12507,12508,12509,12510]]],["cottage",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17662]]],["covert",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13833]]],["pavilion",[2,2,[[18,2,2,0,2,[[495,1,1,0,1],[508,1,1,1,2]]]],[14129,14351]]],["pavilions",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[10,2,2,1,3,[[310,2,2,1,3]]]],[8614,9420,9424]]],["tabernacle",[3,3,[[17,1,1,0,1,[[471,1,1,0,1]]],[22,1,1,1,2,[[682,1,1,1,2]]],[29,1,1,2,3,[[887,1,1,2,3]]]],[13765,17739,22506]]],["tabernacles",[9,9,[[2,1,1,0,1,[[112,1,1,0,1]]],[4,3,3,1,4,[[168,2,2,1,3],[183,1,1,3,4]]],[13,1,1,4,5,[[374,1,1,4,5]]],[14,1,1,5,6,[[405,1,1,5,6]]],[37,3,3,6,9,[[924,3,3,6,9]]]],[3436,5355,5358,5738,11359,12101,23084,23086,23087]]],["tents",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8270]]]]},{"k":"H5522","v":[["tabernacle",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22449]]]]},{"k":"H5523","v":[["*",[18,16,[[0,2,1,0,1,[[32,2,1,0,1]]],[1,2,2,1,3,[[61,1,1,1,2],[62,1,1,2,3]]],[3,2,2,3,5,[[149,2,2,3,5]]],[5,1,1,5,6,[[199,1,1,5,6]]],[6,7,6,6,12,[[218,7,6,6,12]]],[10,1,1,12,13,[[297,1,1,12,13]]],[13,1,1,13,14,[[370,1,1,13,14]]],[18,2,2,14,16,[[537,1,1,14,15],[585,1,1,15,16]]]],[977,1853,1887,4765,4766,6181,6724,6725,6727,6733,6734,6735,8980,11263,14813,15749]]],["+",[2,2,[[1,1,1,0,1,[[62,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]]],[1887,4766]]],["Succoth",[16,14,[[0,2,1,0,1,[[32,2,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[3,1,1,2,3,[[149,1,1,2,3]]],[5,1,1,3,4,[[199,1,1,3,4]]],[6,7,6,4,10,[[218,7,6,4,10]]],[10,1,1,10,11,[[297,1,1,10,11]]],[13,1,1,11,12,[[370,1,1,11,12]]],[18,2,2,12,14,[[537,1,1,12,13],[585,1,1,13,14]]]],[977,1853,4765,6181,6724,6725,6727,6733,6734,6735,8980,11263,14813,15749]]]]},{"k":"H5524","v":[["Succothbenoth",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10013]]]]},{"k":"H5525","v":[["Sukkiims",[1,1,[[13,1,1,0,1,[[378,1,1,0,1]]]],[11440]]]]},{"k":"H5526","v":[["*",[23,23,[[1,5,5,0,5,[[74,1,1,0,1],[82,1,1,1,2],[86,1,1,2,3],[89,2,2,3,5]]],[6,1,1,5,6,[[213,1,1,5,6]]],[8,1,1,6,7,[[259,1,1,6,7]]],[10,1,1,7,8,[[298,1,1,7,8]]],[12,1,1,8,9,[[365,1,1,8,9]]],[17,3,3,9,12,[[438,1,1,9,10],[473,1,1,10,11],[475,1,1,11,12]]],[18,4,4,12,16,[[482,1,1,12,13],[568,1,1,13,14],[616,1,1,14,15],[617,1,1,15,16]]],[22,2,2,16,18,[[687,1,1,16,17],[697,1,1,17,18]]],[24,2,2,18,20,[[799,2,2,18,20]]],[25,2,2,20,22,[[829,2,2,20,22]]],[33,1,1,22,23,[[901,1,1,22,23]]]],[2215,2495,2613,2710,2728,6592,7842,8992,11161,12927,13801,13886,13984,15399,16252,16270,17840,18006,20397,20398,21171,21173,22704]]],["+",[8,8,[[1,4,4,0,4,[[74,1,1,0,1],[82,1,1,1,2],[89,2,2,2,4]]],[6,1,1,4,5,[[213,1,1,4,5]]],[8,1,1,5,6,[[259,1,1,5,6]]],[10,1,1,6,7,[[298,1,1,6,7]]],[22,1,1,7,8,[[687,1,1,7,8]]]],[2215,2495,2710,2728,6592,7842,8992,17840]]],["cover",[2,2,[[17,1,1,0,1,[[475,1,1,0,1]]],[18,1,1,1,2,[[568,1,1,1,2]]]],[13886,15399]]],["covered",[6,6,[[1,1,1,0,1,[[86,1,1,0,1]]],[12,1,1,1,2,[[365,1,1,1,2]]],[18,2,2,2,4,[[616,1,1,2,3],[617,1,1,3,4]]],[24,2,2,4,6,[[799,2,2,4,6]]]],[2613,11161,16252,16270,20397,20398]]],["covereth",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21171]]],["covering",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21173]]],["defence",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22704]]],["defendest",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13984]]],["in",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12927]]],["set",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18006]]],["up",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13801]]]]},{"k":"H5527","v":[["Secacah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6263]]]]},{"k":"H5528","v":[["*",[8,8,[[0,1,1,0,1,[[30,1,1,0,1]]],[8,2,2,1,3,[[248,1,1,1,2],[261,1,1,2,3]]],[9,2,2,3,5,[[281,1,1,3,4],[290,1,1,4,5]]],[12,1,1,5,6,[[358,1,1,5,6]]],[13,1,1,6,7,[[382,1,1,6,7]]],[22,1,1,7,8,[[722,1,1,7,8]]]],[901,7498,7926,8420,8702,10942,11518,18558]]],["+",[2,2,[[12,1,1,0,1,[[358,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[10942,18558]]],["fool",[1,1,[[8,1,1,0,1,[[261,1,1,0,1]]]],[7926]]],["foolishly",[4,4,[[0,1,1,0,1,[[30,1,1,0,1]]],[8,1,1,1,2,[[248,1,1,1,2]]],[9,1,1,2,3,[[290,1,1,2,3]]],[13,1,1,3,4,[[382,1,1,3,4]]]],[901,7498,8702,11518]]],["foolishness",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8420]]]]},{"k":"H5529","v":[["Folly",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17499]]]]},{"k":"H5530","v":[["*",[7,6,[[20,5,4,0,4,[[660,1,1,0,1],[665,1,1,1,2],[668,3,2,2,4]]],[23,2,2,4,6,[[748,1,1,4,5],[749,1,1,5,6]]]],[17352,17446,17496,17507,19049,19079]]],["+",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17496]]],["fool",[3,3,[[20,3,3,0,3,[[660,1,1,0,1],[668,2,2,1,3]]]],[17352,17496,17507]]],["foolish",[2,2,[[20,1,1,0,1,[[665,1,1,0,1]]],[23,1,1,1,2,[[749,1,1,1,2]]]],[17446,19079]]],["sottish",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19049]]]]},{"k":"H5531","v":[["*",[7,7,[[20,7,7,0,7,[[659,1,1,0,1],[660,3,3,1,4],[665,1,1,4,5],[668,2,2,5,7]]]],[17332,17336,17345,17346,17454,17494,17506]]],["+",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17346]]],["folly",[4,4,[[20,4,4,0,4,[[659,1,1,0,1],[660,2,2,1,3],[668,1,1,3,4]]]],[17332,17336,17345,17494]]],["foolishness",[2,2,[[20,2,2,0,2,[[665,1,1,0,1],[668,1,1,1,2]]]],[17454,17506]]]]},{"k":"H5532","v":[["*",[12,10,[[3,2,1,0,1,[[138,2,1,0,1]]],[10,2,2,1,3,[[291,2,2,1,3]]],[17,6,5,3,8,[[450,1,1,3,4],[457,3,2,4,6],[469,1,1,6,7],[470,1,1,7,8]]],[18,1,1,8,9,[[616,1,1,8,9]]],[22,1,1,9,10,[[700,1,1,9,10]]]],[4405,8719,8721,13206,13391,13410,13692,13723,16242,18067]]],["+",[3,2,[[3,2,1,0,1,[[138,2,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]]],[4405,13206]]],["Acquaint",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13410]]],["acquainted",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16242]]],["advantage",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13723]]],["cherish",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8719]]],["cherished",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8721]]],["profitable",[2,1,[[17,2,1,0,1,[[457,2,1,0,1]]]],[13391]]],["profiteth",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13692]]],["treasurer",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18067]]]]},{"k":"H5533","v":[["*",[2,2,[[20,1,1,0,1,[[668,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[17502,18440]]],["endangered",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17502]]],["impoverished",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18440]]]]},{"k":"H5534","v":[["*",[3,3,[[0,1,1,0,1,[[7,1,1,0,1]]],[18,1,1,1,2,[[540,1,1,1,2]]],[22,1,1,2,3,[[697,1,1,2,3]]]],[185,14850,18008]]],["over",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18008]]],["stopped",[2,2,[[0,1,1,0,1,[[7,1,1,0,1]]],[18,1,1,1,2,[[540,1,1,1,2]]]],[185,14850]]]]},{"k":"H5535","v":[["heed",[1,1,[[4,1,1,0,1,[[179,1,1,0,1]]]],[5594]]]]},{"k":"H5536","v":[["*",[15,13,[[0,4,3,0,3,[[39,4,3,0,3]]],[1,4,3,3,6,[[78,4,3,3,6]]],[2,3,3,6,9,[[97,3,3,6,9]]],[3,3,3,9,12,[[122,3,3,9,12]]],[6,1,1,12,13,[[216,1,1,12,13]]]],[1188,1189,1190,2339,2359,2368,2919,2943,2948,3838,3840,3842,6673]]],["+",[2,2,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]]],[2359,2943]]],["basket",[11,9,[[0,2,1,0,1,[[39,2,1,0,1]]],[1,3,2,1,3,[[78,3,2,1,3]]],[2,2,2,3,5,[[97,2,2,3,5]]],[3,3,3,5,8,[[122,3,3,5,8]]],[6,1,1,8,9,[[216,1,1,8,9]]]],[1189,2339,2368,2919,2948,3838,3840,3842,6673]]],["baskets",[2,2,[[0,2,2,0,2,[[39,2,2,0,2]]]],[1188,1190]]]]},{"k":"H5537","v":[["comparable",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20422]]]]},{"k":"H5538","v":[["Silla",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9870]]]]},{"k":"H5539","v":[["harden",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12988]]]]},{"k":"H5540","v":[["Seled",[2,1,[[12,2,1,0,1,[[339,2,1,0,1]]]],[10336]]]]},{"k":"H5541","v":[["*",[4,4,[[17,2,2,0,2,[[463,2,2,0,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[24,1,1,3,4,[[797,1,1,3,4]]]],[13520,13523,16016,20325]]],["down",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16016]]],["foot",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20325]]],["valued",[2,2,[[17,2,2,0,2,[[463,2,2,0,2]]]],[13520,13523]]]]},{"k":"H5542","v":[["Selah",[74,74,[[18,71,71,0,71,[[480,3,3,0,3],[481,2,2,3,5],[484,1,1,5,6],[486,2,2,6,8],[497,1,1,8,9],[498,1,1,9,10],[501,2,2,10,12],[509,3,3,12,15],[516,2,2,15,17],[521,1,1,17,18],[523,3,3,18,21],[524,1,1,21,22],[525,1,1,22,23],[526,2,2,23,25],[527,1,1,25,26],[529,2,2,26,28],[531,1,1,28,29],[532,2,2,29,31],[534,2,2,31,33],[536,2,2,33,35],[537,1,1,35,36],[538,1,1,36,37],[539,2,2,37,39],[543,3,3,39,42],[544,2,2,42,44],[545,3,3,44,47],[552,1,1,47,48],[553,2,2,48,50],[554,3,3,50,53],[558,1,1,53,54],[559,1,1,54,55],[560,1,1,55,56],[561,2,2,56,58],[562,1,1,58,59],[564,2,2,59,61],[565,2,2,61,63],[566,4,4,63,67],[617,3,3,67,70],[620,1,1,70,71]]],[34,3,3,71,74,[[905,3,3,71,74]]]],[13959,13961,13965,13967,13969,14000,14037,14041,14185,14193,14247,14251,14359,14360,14362,14517,14523,14579,14617,14621,14625,14629,14642,14661,14663,14674,14713,14715,14728,14739,14751,14771,14774,14795,14803,14811,14823,14831,14835,14877,14880,14888,14894,14897,14907,14919,14932,15074,15084,15090,15096,15102,15108,15224,15235,15249,15263,15267,15273,15304,15307,15315,15318,15330,15363,15371,15374,16266,16268,16271,16299,22771,22777,22781]]]]},{"k":"H5543","v":[["*",[6,6,[[3,1,1,0,1,[[141,1,1,0,1]]],[12,1,1,1,2,[[346,1,1,1,2]]],[15,4,4,2,6,[[423,2,2,2,4],[424,2,2,4,6]]]],[4485,10622,12595,12596,12631,12644]]],["Sallai",[2,2,[[15,2,2,0,2,[[423,1,1,0,1],[424,1,1,1,2]]]],[12596,12644]]],["Sallu",[3,3,[[12,1,1,0,1,[[346,1,1,0,1]]],[15,2,2,1,3,[[423,1,1,1,2],[424,1,1,2,3]]]],[10622,12595,12631]]],["Salu",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4485]]]]},{"k":"H5544","v":[["*",[2,2,[[25,2,2,0,2,[[803,1,1,0,1],[829,1,1,1,2]]]],[20498,21181]]],["brier",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21181]]],["thorns",[1,1,[[25,1,1,0,1,[[803,1,1,0,1]]]],[20498]]]]},{"k":"H5545","v":[["*",[46,45,[[1,1,1,0,1,[[83,1,1,0,1]]],[2,10,10,1,11,[[93,4,4,1,5],[94,4,4,5,9],[95,1,1,9,10],[108,1,1,10,11]]],[3,8,8,11,19,[[130,2,2,11,13],[131,3,3,13,16],[146,3,3,16,19]]],[4,1,1,19,20,[[181,1,1,19,20]]],[10,5,5,20,25,[[298,5,5,20,25]]],[11,3,2,25,27,[[317,2,1,25,26],[336,1,1,26,27]]],[13,6,6,27,33,[[372,5,5,27,32],[373,1,1,32,33]]],[18,2,2,33,35,[[502,1,1,33,34],[580,1,1,34,35]]],[22,1,1,35,36,[[733,1,1,35,36]]],[23,6,6,36,42,[[749,2,2,36,38],[775,1,1,38,39],[777,1,1,39,40],[780,1,1,40,41],[794,1,1,41,42]]],[24,1,1,42,43,[[799,1,1,42,43]]],[26,1,1,43,44,[[858,1,1,43,44]]],[29,1,1,44,45,[[885,1,1,44,45]]]],[2505,2815,2821,2826,2830,2840,2843,2846,2848,2856,3303,4127,4128,4178,4179,4181,4653,4656,4660,5699,9015,9019,9021,9024,9035,9665,10206,11303,11307,11309,11312,11321,11338,14262,15552,18747,19059,19065,19725,19783,19845,20186,20396,22007,22466]]],["Pardon",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4127]]],["forgive",[18,18,[[3,3,3,0,3,[[146,3,3,0,3]]],[10,5,5,3,8,[[298,5,5,3,8]]],[13,6,6,8,14,[[372,5,5,8,13],[373,1,1,13,14]]],[23,2,2,14,16,[[775,1,1,14,15],[780,1,1,15,16]]],[26,1,1,16,17,[[858,1,1,16,17]]],[29,1,1,17,18,[[885,1,1,17,18]]]],[4653,4656,4660,9015,9019,9021,9024,9035,11303,11307,11309,11312,11321,11338,19725,19845,22007,22466]]],["forgiven",[13,13,[[2,10,10,0,10,[[93,4,4,0,4],[94,4,4,4,8],[95,1,1,8,9],[108,1,1,9,10]]],[3,3,3,10,13,[[131,3,3,10,13]]]],[2815,2821,2826,2830,2840,2843,2846,2848,2856,3303,4178,4179,4181]]],["forgiveth",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15552]]],["pardon",[10,9,[[1,1,1,0,1,[[83,1,1,0,1]]],[11,3,2,1,3,[[317,2,1,1,2],[336,1,1,2,3]]],[18,1,1,3,4,[[502,1,1,3,4]]],[22,1,1,4,5,[[733,1,1,4,5]]],[23,4,4,5,9,[[749,2,2,5,7],[777,1,1,7,8],[794,1,1,8,9]]]],[2505,9665,10206,14262,18747,19059,19065,19783,20186]]],["pardoned",[2,2,[[3,1,1,0,1,[[130,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]]],[4128,20396]]],["spare",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5699]]]]},{"k":"H5546","v":[["forgive",[1,1,[[18,1,1,0,1,[[563,1,1,0,1]]]],[15289]]]]},{"k":"H5547","v":[["*",[3,3,[[15,1,1,0,1,[[421,1,1,0,1]]],[18,1,1,1,2,[[607,1,1,1,2]]],[26,1,1,2,3,[[858,1,1,2,3]]]],[12528,16144,21997]]],["forgiveness",[1,1,[[18,1,1,0,1,[[607,1,1,0,1]]]],[16144]]],["forgivenesses",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[21997]]],["pardon",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12528]]]]},{"k":"H5548","v":[["*",[4,4,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,2,2,1,3,[[198,1,1,1,2],[199,1,1,2,3]]],[12,1,1,3,4,[[342,1,1,3,4]]]],[4985,6135,6165,10439]]],["Salcah",[2,2,[[5,2,2,0,2,[[198,1,1,0,1],[199,1,1,1,2]]]],[6135,6165]]],["Salchah",[2,2,[[4,1,1,0,1,[[155,1,1,0,1]]],[12,1,1,1,2,[[342,1,1,1,2]]]],[4985,10439]]]]},{"k":"H5549","v":[["*",[12,10,[[1,1,1,0,1,[[58,1,1,0,1]]],[17,2,2,1,3,[[454,1,1,1,2],[465,1,1,2,3]]],[18,1,1,3,4,[[545,1,1,3,4]]],[19,2,2,4,6,[[631,1,1,4,5],[642,1,1,5,6]]],[22,4,2,6,8,[[735,2,1,6,7],[740,2,1,7,8]]],[23,2,2,8,10,[[762,1,1,8,9],[794,1,1,9,10]]]],[1759,13309,13569,14904,16498,16826,18779,18864,19399,20192]]],["Exalt",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16498]]],["extol",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14904]]],["plain",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16826]]],["thyself",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1759]]],["up",[8,6,[[17,2,2,0,2,[[454,1,1,0,1],[465,1,1,1,2]]],[22,4,2,2,4,[[735,2,1,2,3],[740,2,1,3,4]]],[23,2,2,4,6,[[762,1,1,4,5],[794,1,1,5,6]]]],[13309,13569,18779,18864,19399,20192]]]]},{"k":"H5550","v":[["*",[11,11,[[9,1,1,0,1,[[286,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]],[23,3,3,3,6,[[750,1,1,3,4],[776,1,1,4,5],[777,1,1,5,6]]],[25,4,4,6,10,[[805,1,1,6,7],[818,1,1,7,8],[822,1,1,8,9],[827,1,1,9,10]]],[26,1,1,10,11,[[860,1,1,10,11]]]],[8569,10093,18385,19095,19755,19779,20531,20842,20966,21108,22051]]],["bank",[3,3,[[9,1,1,0,1,[[286,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]]],[8569,10093,18385]]],["mount",[5,5,[[23,1,1,0,1,[[750,1,1,0,1]]],[25,3,3,1,4,[[805,1,1,1,2],[822,1,1,2,3],[827,1,1,3,4]]],[26,1,1,4,5,[[860,1,1,4,5]]]],[19095,20531,20966,21108,22051]]],["mounts",[3,3,[[23,2,2,0,2,[[776,1,1,0,1],[777,1,1,1,2]]],[25,1,1,2,3,[[818,1,1,2,3]]]],[19755,19779,20842]]]]},{"k":"H5551","v":[["ladder",[1,1,[[0,1,1,0,1,[[27,1,1,0,1]]]],[785]]]]},{"k":"H5552","v":[["baskets",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19098]]]]},{"k":"H5553","v":[["*",[61,55,[[3,6,4,0,4,[[136,5,3,0,3],[140,1,1,3,4]]],[4,1,1,4,5,[[184,1,1,4,5]]],[6,9,8,5,13,[[211,1,1,5,6],[216,1,1,6,7],[225,3,3,7,10],[230,3,2,10,12],[231,1,1,12,13]]],[8,5,4,13,17,[[248,1,1,13,14],[249,2,1,14,15],[258,2,2,15,17]]],[9,1,1,17,18,[[288,1,1,17,18]]],[10,1,1,18,19,[[309,1,1,18,19]]],[13,2,1,19,20,[[391,2,1,19,20]]],[15,1,1,20,21,[[421,1,1,20,21]]],[17,3,2,21,23,[[474,3,2,21,23]]],[18,9,9,23,32,[[495,1,1,23,24],[508,1,1,24,25],[517,1,1,25,26],[519,1,1,26,27],[548,1,1,27,28],[555,1,1,28,29],[581,1,1,29,30],[614,1,1,30,31],[618,1,1,31,32]]],[19,1,1,32,33,[[657,1,1,32,33]]],[21,1,1,33,34,[[672,1,1,33,34]]],[22,8,8,34,42,[[680,1,1,34,35],[685,1,1,35,36],[700,1,1,36,37],[709,1,1,37,38],[710,1,1,38,39],[711,1,1,39,40],[720,1,1,40,41],[735,1,1,41,42]]],[23,7,7,42,49,[[749,1,1,42,43],[757,1,1,43,44],[760,1,1,44,45],[767,1,1,45,46],[792,1,1,46,47],[793,1,1,47,48],[795,1,1,48,49]]],[25,4,4,49,53,[[825,2,2,49,51],[827,2,2,51,53]]],[29,1,1,53,54,[[884,1,1,53,54]]],[30,1,1,54,55,[[888,1,1,54,55]]]],[4319,4321,4322,4467,5771,6545,6674,6937,6940,6942,7099,7101,7115,7491,7512,7835,7838,8604,9398,11716,12526,13835,13862,14120,14334,14527,14564,14979,15129,15589,16231,16282,17277,17568,17706,17801,18068,18259,18261,18295,18491,18770,19061,19270,19352,19513,20108,20143,20237,21063,21064,21104,21114,22462,22513]]],["+",[6,6,[[4,1,1,0,1,[[184,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]],[8,1,1,2,3,[[258,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[18,1,1,4,5,[[555,1,1,4,5]]],[23,1,1,5,6,[[749,1,1,5,6]]]],[5771,6545,7838,12526,15129,19061]]],["hold",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18259]]],["rock",[42,36,[[3,6,4,0,4,[[136,5,3,0,3],[140,1,1,3,4]]],[6,8,7,4,11,[[216,1,1,4,5],[225,3,3,5,8],[230,3,2,8,10],[231,1,1,10,11]]],[8,3,2,11,13,[[249,2,1,11,12],[258,1,1,12,13]]],[9,1,1,13,14,[[288,1,1,13,14]]],[13,2,1,14,15,[[391,2,1,14,15]]],[17,3,2,15,17,[[474,3,2,15,17]]],[18,5,5,17,22,[[495,1,1,17,18],[508,1,1,18,19],[517,1,1,19,20],[519,1,1,20,21],[548,1,1,21,22]]],[21,1,1,22,23,[[672,1,1,22,23]]],[22,3,3,23,26,[[700,1,1,23,24],[710,1,1,24,25],[720,1,1,25,26]]],[23,4,4,26,30,[[757,1,1,26,27],[767,1,1,27,28],[792,1,1,28,29],[793,1,1,29,30]]],[25,4,4,30,34,[[825,2,2,30,32],[827,2,2,32,34]]],[29,1,1,34,35,[[884,1,1,34,35]]],[30,1,1,35,36,[[888,1,1,35,36]]]],[4319,4321,4322,4467,6674,6937,6940,6942,7099,7101,7115,7512,7835,8604,11716,13835,13862,14120,14334,14527,14564,14979,17568,18068,18261,18491,19270,19513,20108,20143,21063,21064,21104,21114,22462,22513]]],["rocks",[10,10,[[8,1,1,0,1,[[248,1,1,0,1]]],[10,1,1,1,2,[[309,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[19,1,1,3,4,[[657,1,1,3,4]]],[22,4,4,4,8,[[680,1,1,4,5],[685,1,1,5,6],[711,1,1,6,7],[735,1,1,7,8]]],[23,2,2,8,10,[[760,1,1,8,9],[795,1,1,9,10]]]],[7491,9398,15589,17277,17706,17801,18295,18770,19352,20237]]],["stones",[1,1,[[18,1,1,0,1,[[614,1,1,0,1]]]],[16231]]],["stony",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16282]]]]},{"k":"H5554","v":[["*",[2,2,[[11,1,1,0,1,[[326,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]]],[9903,17970]]],["+",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17970]]],["Selah",[1,1,[[11,1,1,0,1,[[326,1,1,0,1]]]],[9903]]]]},{"k":"H5555","v":[["+",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7838]]]]},{"k":"H5556","v":[["locust",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3019]]]]},{"k":"H5557","v":[["*",[7,7,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,1,1,1,2,[[168,1,1,1,2]]],[17,1,1,2,3,[[447,1,1,2,3]]],[19,4,4,3,7,[[640,1,1,3,4],[646,1,1,4,5],[648,1,1,5,6],[649,1,1,6,7]]]],[2152,5361,13147,16753,16928,16996,17027]]],["overthroweth",[4,4,[[17,1,1,0,1,[[447,1,1,0,1]]],[19,3,3,1,4,[[640,1,1,1,2],[648,1,1,2,3],[649,1,1,3,4]]]],[13147,16753,16996,17027]]],["pervert",[1,1,[[4,1,1,0,1,[[168,1,1,0,1]]]],[5361]]],["perverteth",[2,2,[[1,1,1,0,1,[[72,1,1,0,1]]],[19,1,1,1,2,[[646,1,1,1,2]]]],[2152,16928]]]]},{"k":"H5558","v":[["perverseness",[2,2,[[19,2,2,0,2,[[638,1,1,0,1],[642,1,1,1,2]]]],[16691,16811]]]]},{"k":"H5559","v":[["*",[5,5,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,4,4,1,5,[[851,1,1,1,2],[856,3,3,2,5]]]],[12122,21787,21936,21941,21953]]],["came",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21787]]],["up",[4,4,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,3,3,1,4,[[856,3,3,1,4]]]],[12122,21936,21941,21953]]]]},{"k":"H5560","v":[["*",[53,52,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,2,2,1,3,[[78,2,2,1,3]]],[2,14,14,3,17,[[91,5,5,3,8],[94,1,1,8,9],[95,2,2,9,11],[96,1,1,11,12],[103,2,2,12,14],[112,2,2,14,16],[113,1,1,16,17]]],[3,27,26,17,43,[[122,1,1,17,18],[123,12,12,18,30],[124,1,1,30,31],[131,3,3,31,34],[144,7,6,34,40],[145,3,3,40,43]]],[10,1,1,43,44,[[294,1,1,43,44]]],[11,3,3,44,47,[[319,3,3,44,47]]],[12,2,2,47,49,[[346,1,1,47,48],[360,1,1,48,49]]],[25,3,3,49,52,[[817,2,2,49,51],[847,1,1,51,52]]]],[430,2338,2376,2763,2764,2766,2767,2769,2841,2864,2869,2891,3121,3132,3415,3419,3451,3838,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3947,4157,4159,4162,4582,4586,4589,4590,4597,4605,4611,4617,4622,8866,9708,9723,9725,10644,11012,20775,20781,21669]]],["+",[2,2,[[2,2,2,0,2,[[91,1,1,0,1],[95,1,1,1,2]]]],[2764,2864]]],["fine",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[430]]],["flour",[50,49,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,12,12,2,14,[[91,4,4,2,6],[94,1,1,6,7],[95,1,1,7,8],[96,1,1,8,9],[103,2,2,9,11],[112,2,2,11,13],[113,1,1,13,14]]],[3,27,26,14,40,[[122,1,1,14,15],[123,12,12,15,27],[124,1,1,27,28],[131,3,3,28,31],[144,7,6,31,37],[145,3,3,37,40]]],[10,1,1,40,41,[[294,1,1,40,41]]],[11,3,3,41,44,[[319,3,3,41,44]]],[12,2,2,44,46,[[346,1,1,44,45],[360,1,1,45,46]]],[25,3,3,46,49,[[817,2,2,46,48],[847,1,1,48,49]]]],[2338,2376,2763,2766,2767,2769,2841,2869,2891,3121,3132,3415,3419,3451,3838,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3947,4157,4159,4162,4582,4586,4589,4590,4597,4605,4611,4617,4622,8866,9708,9723,9725,10644,11012,20775,20781,21669]]]]},{"k":"H5561","v":[["*",[16,15,[[1,11,10,0,10,[[74,1,1,0,1],[79,3,2,1,3],[80,1,1,3,4],[84,3,3,4,7],[86,1,1,7,8],[88,1,1,8,9],[89,1,1,9,10]]],[2,2,2,10,12,[[93,1,1,10,11],[105,1,1,11,12]]],[3,1,1,12,13,[[120,1,1,12,13]]],[13,2,2,13,15,[[368,1,1,13,14],[379,1,1,14,15]]]],[2201,2389,2416,2431,2539,2546,2559,2633,2702,2734,2802,3213,3759,11215,11464]]],["spices",[3,2,[[1,3,2,0,2,[[79,2,1,0,1],[86,1,1,1,2]]]],[2416,2633]]],["sweet",[13,13,[[1,8,8,0,8,[[74,1,1,0,1],[79,1,1,1,2],[80,1,1,2,3],[84,3,3,3,6],[88,1,1,6,7],[89,1,1,7,8]]],[2,2,2,8,10,[[93,1,1,8,9],[105,1,1,9,10]]],[3,1,1,10,11,[[120,1,1,10,11]]],[13,2,2,11,13,[[368,1,1,11,12],[379,1,1,12,13]]]],[2201,2389,2431,2539,2546,2559,2702,2734,2802,3213,3759,11215,11464]]]]},{"k":"H5562","v":[["Samgarnebo",[1,1,[[23,1,1,0,1,[[783,1,1,0,1]]]],[19926]]]]},{"k":"H5563","v":[["*",[3,3,[[21,3,3,0,3,[[672,2,2,0,2],[677,1,1,2,3]]]],[17567,17569,17639]]],["grape",[2,2,[[21,2,2,0,2,[[672,1,1,0,1],[677,1,1,1,2]]]],[17567,17639]]],["grapes",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17569]]]]},{"k":"H5564","v":[["*",[48,47,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,3,3,1,4,[[78,3,3,1,4]]],[2,14,14,4,18,[[90,1,1,4,5],[92,3,3,5,8],[93,5,5,8,13],[97,3,3,13,16],[105,1,1,16,17],[113,1,1,17,18]]],[3,4,4,18,22,[[124,2,2,18,20],[143,2,2,20,22]]],[4,1,1,22,23,[[186,1,1,22,23]]],[6,1,1,23,24,[[226,1,1,23,24]]],[11,1,1,24,25,[[330,1,1,24,25]]],[13,2,2,25,27,[[395,1,1,25,26],[398,1,1,26,27]]],[18,11,11,27,38,[[480,1,1,27,28],[514,2,2,28,30],[528,1,1,30,31],[531,1,1,31,32],[548,1,1,32,33],[565,1,1,33,34],[588,1,1,34,35],[589,1,1,35,36],[596,1,1,36,37],[622,1,1,37,38]]],[21,1,1,38,39,[[672,1,1,38,39]]],[22,6,5,39,44,[[704,1,1,39,40],[714,1,1,40,41],[726,1,1,41,42],[737,1,1,42,43],[741,2,1,43,44]]],[25,2,2,44,46,[[825,1,1,44,45],[831,1,1,45,46]]],[29,1,1,46,47,[[883,1,1,46,47]]]],[764,2346,2351,2355,2749,2780,2786,2791,2799,2810,2819,2824,2828,2931,2935,2939,3222,3460,3949,3951,4572,4577,5848,6978,10045,11814,11883,13962,14467,14474,14703,14729,14982,15315,15801,15811,16014,16334,17559,18133,18336,18616,18816,18871,21058,21210,22442]]],["+",[19,19,[[1,3,3,0,3,[[78,3,3,0,3]]],[2,11,11,3,14,[[92,2,2,3,5],[93,4,4,5,9],[97,3,3,9,12],[105,1,1,12,13],[113,1,1,13,14]]],[3,4,4,14,18,[[124,2,2,14,16],[143,2,2,16,18]]],[4,1,1,18,19,[[186,1,1,18,19]]]],[2346,2351,2355,2786,2791,2799,2810,2824,2828,2931,2935,2939,3222,3460,3949,3951,4572,4577,5848]]],["Stay",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17559]]],["Uphold",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16014]]],["established",[1,1,[[18,1,1,0,1,[[589,1,1,0,1]]]],[15811]]],["fast",[1,1,[[18,1,1,0,1,[[588,1,1,0,1]]]],[15801]]],["hard",[1,1,[[18,1,1,0,1,[[565,1,1,0,1]]]],[15315]]],["laid",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11814]]],["lay",[2,2,[[2,2,2,0,2,[[92,1,1,0,1],[93,1,1,1,2]]]],[2780,2819]]],["lean",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]]],[10045,18336]]],["leaned",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22442]]],["put",[1,1,[[2,1,1,0,1,[[90,1,1,0,1]]]],[2749]]],["set",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21058]]],["stayed",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18133]]],["sustained",[3,3,[[0,1,1,0,1,[[26,1,1,0,1]]],[18,1,1,1,2,[[480,1,1,1,2]]],[22,1,1,2,3,[[737,1,1,2,3]]]],[764,13962,18816]]],["themselves",[2,2,[[13,1,1,0,1,[[398,1,1,0,1]]],[22,1,1,1,2,[[726,1,1,1,2]]]],[11883,18616]]],["up",[2,2,[[6,1,1,0,1,[[226,1,1,0,1]]],[18,1,1,1,2,[[548,1,1,1,2]]]],[6978,14982]]],["upheld",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18871]]],["uphold",[4,4,[[18,2,2,0,2,[[528,1,1,0,1],[531,1,1,1,2]]],[22,1,1,2,3,[[741,1,1,2,3]]],[25,1,1,3,4,[[831,1,1,3,4]]]],[14703,14729,18871,21210]]],["upholdeth",[3,3,[[18,3,3,0,3,[[514,2,2,0,2],[622,1,1,2,3]]]],[14467,14474,16334]]]]},{"k":"H5565","v":[["Semachiah",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11084]]]]},{"k":"H5566","v":[["*",[5,5,[[4,1,1,0,1,[[156,1,1,0,1]]],[13,2,2,1,3,[[399,2,2,1,3]]],[25,2,2,3,5,[[809,2,2,3,5]]]],[5020,11915,11923,20607,20609]]],["figure",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5020]]],["idol",[2,2,[[13,2,2,0,2,[[399,2,2,0,2]]]],[11915,11923]]],["image",[2,2,[[25,2,2,0,2,[[809,2,2,0,2]]]],[20607,20609]]]]},{"k":"H5567","v":[["appointed",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18189]]]]},{"k":"H5568","v":[["*",[2,2,[[17,1,1,0,1,[[439,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[12945,16018]]],["trembleth",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16018]]],["up",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12945]]]]},{"k":"H5569","v":[["rough",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20239]]]]},{"k":"H5570","v":[["*",[3,3,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,2,2,1,3,[[415,1,1,1,2],[419,1,1,2,3]]]],[12062,12330,12458]]],["Hassenaah",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12330]]],["Senaah",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12062,12458]]]]},{"k":"H5571","v":[["*",[10,10,[[15,10,10,0,10,[[414,2,2,0,2],[416,2,2,2,4],[418,5,5,4,9],[425,1,1,9,10]]]],[12317,12326,12360,12366,12402,12403,12406,12413,12415,12699]]],["+",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12406]]],["Sanballat",[9,9,[[15,9,9,0,9,[[414,2,2,0,2],[416,2,2,2,4],[418,4,4,4,8],[425,1,1,8,9]]]],[12317,12326,12360,12366,12402,12403,12413,12415,12699]]]]},{"k":"H5572","v":[["bush",[6,4,[[1,5,3,0,3,[[52,5,3,0,3]]],[4,1,1,3,4,[[185,1,1,3,4]]]],[1581,1582,1583,5826]]]]},{"k":"H5573","v":[["Seneh",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7512]]]]},{"k":"H5574","v":[["*",[2,2,[[12,1,1,0,1,[[346,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[10622,12597]]],["Hasenuah",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10622]]],["Senuah",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12597]]]]},{"k":"H5575","v":[["blindness",[3,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[11,2,1,1,2,[[318,2,1,1,2]]]],[468,9692]]]]},{"k":"H5576","v":[["Sennacherib",[13,13,[[11,4,4,0,4,[[330,1,1,0,1],[331,3,3,1,4]]],[13,5,5,4,9,[[398,5,5,4,9]]],[22,4,4,9,13,[[714,1,1,9,10],[715,3,3,10,13]]]],[10037,10077,10081,10097,11876,11877,11884,11885,11897,18331,18369,18373,18389]]]]},{"k":"H5577","v":[["boughs",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17635]]]]},{"k":"H5578","v":[["Sansannah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6233]]]]},{"k":"H5579","v":[["fins",[5,5,[[2,3,3,0,3,[[100,3,3,0,3]]],[4,2,2,3,5,[[166,2,2,3,5]]]],[3006,3007,3009,5299,5300]]]]},{"k":"H5580","v":[["worm",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18681]]]]},{"k":"H5581","v":[["Sisamai",[2,1,[[12,2,1,0,1,[[339,2,1,0,1]]]],[10346]]]]},{"k":"H5582","v":[["*",[12,12,[[0,1,1,0,1,[[17,1,1,0,1]]],[6,2,2,1,3,[[229,2,2,1,3]]],[10,1,1,3,4,[[303,1,1,3,4]]],[18,6,6,4,10,[[495,1,1,4,5],[497,1,1,5,6],[518,1,1,6,7],[571,1,1,7,8],[581,1,1,8,9],[596,1,1,9,10]]],[19,1,1,10,11,[[647,1,1,10,11]]],[22,1,1,11,12,[[687,1,1,11,12]]]],[429,7029,7032,9191,14153,14184,14545,15449,15586,16015,16982,17836]]],["Comfort",[2,2,[[6,2,2,0,2,[[229,2,2,0,2]]]],[7029,7032]]],["comfort",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[429]]],["establish",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17836]]],["refresh",[1,1,[[10,1,1,0,1,[[303,1,1,0,1]]]],[9191]]],["strengthen",[2,2,[[18,2,2,0,2,[[497,1,1,0,1],[518,1,1,1,2]]]],[14184,14545]]],["strengtheneth",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15586]]],["up",[3,3,[[18,3,3,0,3,[[495,1,1,0,1],[571,1,1,1,2],[596,1,1,2,3]]]],[14153,15449,16015]]],["upholden",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16982]]]]},{"k":"H5583","v":[["helping",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12136]]]]},{"k":"H5584","v":[["storm",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14740]]]]},{"k":"H5585","v":[["*",[6,6,[[6,2,2,0,2,[[225,2,2,0,2]]],[22,4,4,2,6,[[680,1,1,2,3],[695,1,1,3,4],[705,1,1,4,5],[735,1,1,5,6]]]],[6937,6940,17706,17989,18161,18770]]],["branches",[2,2,[[22,2,2,0,2,[[695,1,1,0,1],[705,1,1,1,2]]]],[17989,18161]]],["clifts",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18770]]],["top",[2,2,[[6,2,2,0,2,[[225,2,2,0,2]]]],[6937,6940]]],["tops",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17706]]]]},{"k":"H5586","v":[["lop",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17883]]]]},{"k":"H5587","v":[["*",[3,3,[[10,1,1,0,1,[[308,1,1,0,1]]],[17,2,2,1,3,[[439,1,1,1,2],[455,1,1,2,3]]]],[9362,12943,13328]]],["opinions",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9362]]],["thoughts",[2,2,[[17,2,2,0,2,[[439,1,1,0,1],[455,1,1,1,2]]]],[12943,13328]]]]},{"k":"H5588","v":[["thoughts",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16011]]]]},{"k":"H5589","v":[["boughs",[2,2,[[25,2,2,0,2,[[832,2,2,0,2]]]],[21236,21238]]]]},{"k":"H5590","v":[["*",[7,7,[[11,1,1,0,1,[[318,1,1,0,1]]],[22,1,1,1,2,[[732,1,1,1,2]]],[27,1,1,2,3,[[874,1,1,2,3]]],[31,2,2,3,5,[[889,2,2,3,5]]],[34,1,1,5,6,[[905,1,1,5,6]]],[37,1,1,6,7,[[917,1,1,6,7]]]],[9685,18734,22269,22542,22544,22782,22976]]],["tempest",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18734]]],["tempestuous",[2,2,[[31,2,2,0,2,[[889,2,2,0,2]]]],[22542,22544]]],["troubled",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9685]]],["whirlwind",[3,3,[[27,1,1,0,1,[[874,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]],[37,1,1,2,3,[[917,1,1,2,3]]]],[22269,22782,22976]]]]},{"k":"H5591","v":[["*",[24,22,[[11,2,2,0,2,[[314,2,2,0,2]]],[17,2,2,2,4,[[473,1,1,2,3],[475,1,1,3,4]]],[18,5,5,4,9,[[532,1,1,4,5],[560,1,1,5,6],[584,2,2,6,8],[625,1,1,8,9]]],[22,3,3,9,12,[[707,1,1,9,10],[718,1,1,10,11],[719,1,1,11,12]]],[23,5,3,12,15,[[767,2,1,12,13],[769,1,1,13,14],[774,2,1,14,15]]],[25,3,3,15,18,[[802,1,1,15,16],[814,2,2,16,18]]],[29,1,1,18,19,[[879,1,1,18,19]]],[31,2,2,19,21,[[889,2,2,19,21]]],[37,1,1,21,22,[[919,1,1,21,22]]]],[9552,9562,13794,13870,14740,15256,15724,15728,16379,18199,18444,18467,19503,19566,19690,20468,20719,20721,22378,22535,22543,23013]]],["+",[2,2,[[18,1,1,0,1,[[532,1,1,0,1]]],[25,1,1,1,2,[[802,1,1,1,2]]]],[14740,20468]]],["storm",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15728]]],["stormy",[4,4,[[18,2,2,0,2,[[584,1,1,0,1],[625,1,1,1,2]]],[25,2,2,2,4,[[814,2,2,2,4]]]],[15724,16379,20719,20721]]],["tempest",[5,5,[[18,1,1,0,1,[[560,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]],[29,1,1,2,3,[[879,1,1,2,3]]],[31,2,2,3,5,[[889,2,2,3,5]]]],[15256,18199,22378,22535,22543]]],["whirlwind",[11,9,[[11,2,2,0,2,[[314,2,2,0,2]]],[17,2,2,2,4,[[473,1,1,2,3],[475,1,1,3,4]]],[22,2,2,4,6,[[718,1,1,4,5],[719,1,1,5,6]]],[23,5,3,6,9,[[767,2,1,6,7],[769,1,1,7,8],[774,2,1,8,9]]]],[9552,9562,13794,13870,18444,18467,19503,19566,19690]]],["whirlwinds",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23013]]]]},{"k":"H5592","v":[["*",[32,28,[[1,2,1,0,1,[[61,2,1,0,1]]],[6,1,1,1,2,[[229,1,1,1,2]]],[9,1,1,2,3,[[283,1,1,2,3]]],[10,2,2,3,5,[[297,1,1,3,4],[304,1,1,4,5]]],[11,5,5,5,10,[[324,2,2,5,7],[334,1,1,7,8],[335,1,1,8,9],[337,1,1,9,10]]],[12,2,2,10,12,[[346,2,2,10,12]]],[13,3,3,12,15,[[369,1,1,12,13],[389,1,1,13,14],[400,1,1,14,15]]],[16,2,2,15,17,[[427,1,1,15,16],[431,1,1,16,17]]],[22,1,1,17,18,[[684,1,1,17,18]]],[23,3,3,18,21,[[779,1,1,18,19],[796,2,2,19,21]]],[25,7,4,21,25,[[841,3,2,21,23],[842,2,1,23,24],[844,2,1,24,25]]],[29,1,1,25,26,[[887,1,1,25,26]]],[35,1,1,26,27,[[907,1,1,26,27]]],[37,1,1,27,28,[[922,1,1,27,28]]]],[1838,7051,8477,8984,9235,9859,9863,10149,10169,10240,10634,10637,11236,11660,11942,12745,12795,17773,19827,20295,20300,21483,21484,21542,21580,22496,22819,23047]]],["bason",[2,1,[[1,2,1,0,1,[[61,2,1,0,1]]]],[1838]]],["basons",[2,2,[[9,1,1,0,1,[[283,1,1,0,1]]],[23,1,1,1,2,[[796,1,1,1,2]]]],[8477,20295]]],["bowls",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[11,1,1,1,2,[[324,1,1,1,2]]]],[8984,9863]]],["cup",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23047]]],["door",[10,10,[[11,4,4,0,4,[[324,1,1,0,1],[334,1,1,1,2],[335,1,1,2,3],[337,1,1,3,4]]],[16,2,2,4,6,[[427,1,1,4,5],[431,1,1,5,6]]],[22,1,1,6,7,[[684,1,1,6,7]]],[23,2,2,7,9,[[779,1,1,7,8],[796,1,1,8,9]]],[25,1,1,9,10,[[842,1,1,9,10]]]],[9859,10149,10169,10240,12745,12795,17773,19827,20300,21542]]],["doors",[2,2,[[13,2,2,0,2,[[389,1,1,0,1],[400,1,1,1,2]]]],[11660,11942]]],["gates",[2,2,[[12,2,2,0,2,[[346,2,2,0,2]]]],[10634,10637]]],["posts",[3,3,[[13,1,1,0,1,[[369,1,1,0,1]]],[25,1,1,1,2,[[842,1,1,1,2]]],[29,1,1,2,3,[[887,1,1,2,3]]]],[11236,21542,22496]]],["threshold",[6,5,[[6,1,1,0,1,[[229,1,1,0,1]]],[10,1,1,1,2,[[304,1,1,1,2]]],[25,4,3,2,5,[[841,3,2,2,4],[844,1,1,4,5]]]],[7051,9235,21483,21484,21580]]],["thresholds",[2,2,[[25,1,1,0,1,[[844,1,1,0,1]]],[35,1,1,1,2,[[907,1,1,1,2]]]],[21580,22819]]]]},{"k":"H5593","v":[["Saph",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8598]]]]},{"k":"H5594","v":[["*",[30,29,[[0,2,2,0,2,[[22,1,1,0,1],[49,1,1,1,2]]],[8,2,2,2,4,[[260,1,1,2,3],[263,1,1,3,4]]],[9,3,3,4,7,[[267,1,1,4,5],[269,1,1,5,6],[277,1,1,6,7]]],[10,4,4,7,11,[[303,2,2,7,9],[304,2,2,9,11]]],[20,2,2,11,13,[[661,1,1,11,12],[670,1,1,12,13]]],[22,1,1,13,14,[[710,1,1,13,14]]],[23,9,8,14,22,[[748,1,1,14,15],[760,3,3,15,18],[766,2,1,18,19],[769,1,1,19,20],[778,1,1,20,21],[793,1,1,21,22]]],[25,2,2,22,24,[[825,2,2,22,24]]],[28,1,1,24,25,[[876,1,1,24,25]]],[32,1,1,25,26,[[893,1,1,25,26]]],[37,3,3,26,29,[[917,1,1,26,27],[922,2,2,27,29]]]],[573,1516,7862,7945,8034,8112,8285,9213,9214,9231,9236,17363,17528,18271,19035,19340,19341,19342,19472,19567,19806,20130,21072,21079,22304,22587,22967,23055,23057]]],["lament",[9,8,[[22,1,1,0,1,[[710,1,1,0,1]]],[23,7,6,1,7,[[748,1,1,1,2],[760,2,2,2,4],[766,2,1,4,5],[778,1,1,5,6],[793,1,1,6,7]]],[28,1,1,7,8,[[876,1,1,7,8]]]],[18271,19035,19341,19342,19472,19806,20130,22304]]],["lamented",[4,4,[[8,2,2,0,2,[[260,1,1,0,1],[263,1,1,1,2]]],[23,2,2,2,4,[[760,1,1,2,3],[769,1,1,3,4]]]],[7862,7945,19340,19567]]],["mourn",[9,9,[[0,1,1,0,1,[[22,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]],[10,2,2,2,4,[[303,1,1,2,3],[304,1,1,3,4]]],[20,1,1,4,5,[[661,1,1,4,5]]],[25,2,2,5,7,[[825,2,2,5,7]]],[37,2,2,7,9,[[922,2,2,7,9]]]],[573,8112,9213,9231,17363,21072,21079,23055,23057]]],["mourned",[6,6,[[0,1,1,0,1,[[49,1,1,0,1]]],[9,2,2,1,3,[[267,1,1,1,2],[277,1,1,2,3]]],[10,2,2,3,5,[[303,1,1,3,4],[304,1,1,4,5]]],[37,1,1,5,6,[[917,1,1,5,6]]]],[1516,8034,8285,9214,9236,22967]]],["mourners",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17528]]],["wail",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22587]]]]},{"k":"H5595","v":[["*",[20,20,[[0,4,4,0,4,[[17,2,2,0,2],[18,2,2,2,4]]],[3,2,2,4,6,[[132,1,1,4,5],[148,1,1,5,6]]],[4,2,2,6,8,[[181,1,1,6,7],[184,1,1,7,8]]],[8,3,3,8,11,[[247,1,1,8,9],[261,1,1,9,10],[262,1,1,10,11]]],[12,1,1,11,12,[[358,1,1,11,12]]],[18,1,1,12,13,[[517,1,1,12,13]]],[19,1,1,13,14,[[640,1,1,13,14]]],[22,4,4,14,18,[[685,1,1,14,15],[691,1,1,15,16],[707,1,1,16,17],[708,1,1,17,18]]],[23,2,2,18,20,[[751,1,1,18,19],[756,1,1,19,20]]]],[447,448,472,474,4220,4732,5698,5781,7485,7915,7931,10946,14539,16770,17802,17921,18194,18218,19140,19253]]],["+",[2,2,[[3,1,1,0,1,[[148,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]]],[4732,17802]]],["Put",[1,1,[[23,1,1,0,1,[[751,1,1,0,1]]]],[19140]]],["add",[3,3,[[4,1,1,0,1,[[181,1,1,0,1]]],[22,2,2,1,3,[[707,1,1,1,2],[708,1,1,2,3]]]],[5698,18194,18218]]],["consumed",[5,5,[[0,2,2,0,2,[[18,2,2,0,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[8,1,1,3,4,[[247,1,1,3,4]]],[23,1,1,4,5,[[756,1,1,4,5]]]],[472,474,4220,7485,19253]]],["destroy",[3,3,[[0,2,2,0,2,[[17,2,2,0,2]]],[18,1,1,2,3,[[517,1,1,2,3]]]],[447,448,14539]]],["destroyed",[2,2,[[12,1,1,0,1,[[358,1,1,0,1]]],[19,1,1,1,2,[[640,1,1,1,2]]]],[10946,16770]]],["heap",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5781]]],["joined",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17921]]],["perish",[2,2,[[8,2,2,0,2,[[261,1,1,0,1],[262,1,1,1,2]]]],[7915,7931]]]]},{"k":"H5596","v":[["*",[6,6,[[8,2,2,0,2,[[237,1,1,0,1],[261,1,1,1,2]]],[17,1,1,2,3,[[465,1,1,2,3]]],[22,2,2,3,5,[[681,1,1,3,4],[692,1,1,4,5]]],[34,1,1,5,6,[[904,1,1,5,6]]]],[7276,7924,13564,17724,17929,22763]]],["+",[1,1,[[8,1,1,0,1,[[261,1,1,0,1]]]],[7924]]],["Put",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7276]]],["cleave",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17929]]],["puttest",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22763]]],["scab",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17724]]],["together",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13564]]]]},{"k":"H5597","v":[["scab",[2,2,[[2,2,2,0,2,[[102,1,1,0,1],[103,1,1,1,2]]]],[3054,3167]]]]},{"k":"H5598","v":[["Sippai",[1,1,[[12,1,1,0,1,[[357,1,1,0,1]]]],[10930]]]]},{"k":"H5599","v":[["*",[5,5,[[2,2,2,0,2,[[114,2,2,0,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[17,1,1,3,4,[[449,1,1,3,4]]],[22,1,1,4,5,[[715,1,1,4,5]]]],[3474,3480,10090,13200,18382]]],["accord",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3474]]],["grow",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13200]]],["itself",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[3480,18382]]],["themselves",[1,1,[[11,1,1,0,1,[[331,1,1,0,1]]]],[10090]]]]},{"k":"H5600","v":[["ship",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22536]]]]},{"k":"H5601","v":[["*",[11,11,[[1,3,3,0,3,[[73,1,1,0,1],[77,1,1,1,2],[88,1,1,2,3]]],[17,2,2,3,5,[[463,2,2,3,5]]],[21,1,1,5,6,[[675,1,1,5,6]]],[22,1,1,6,7,[[732,1,1,6,7]]],[24,1,1,7,8,[[800,1,1,7,8]]],[25,3,3,8,11,[[802,1,1,8,9],[811,1,1,9,10],[829,1,1,10,11]]]],[2187,2311,2675,13510,13520,17612,18734,20427,20490,20634,21170]]],["sapphire",[7,7,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[17,1,1,2,3,[[463,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]],[25,3,3,4,7,[[802,1,1,4,5],[811,1,1,5,6],[829,1,1,6,7]]]],[2311,2675,13520,20427,20490,20634,21170]]],["sapphires",[3,3,[[17,1,1,0,1,[[463,1,1,0,1]]],[21,1,1,1,2,[[675,1,1,1,2]]],[22,1,1,2,3,[[732,1,1,2,3]]]],[13510,17612,18734]]],["stone",[1,1,[[1,1,1,0,1,[[73,1,1,0,1]]]],[2187]]]]},{"k":"H5602","v":[["*",[2,2,[[6,2,2,0,2,[[215,1,1,0,1],[216,1,1,1,2]]]],[6648,6692]]],["bowl",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6692]]],["dish",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6648]]]]},{"k":"H5603","v":[["*",[6,6,[[4,1,1,0,1,[[185,1,1,0,1]]],[10,3,3,1,4,[[296,1,1,1,2],[297,2,2,2,4]]],[23,1,1,4,5,[[766,1,1,4,5]]],[36,1,1,5,6,[[909,1,1,5,6]]]],[5831,8905,8937,8941,19468,22844]]],["+",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8905]]],["cieled",[2,2,[[23,1,1,0,1,[[766,1,1,0,1]]],[36,1,1,1,2,[[909,1,1,1,2]]]],[19468,22844]]],["covered",[2,2,[[10,2,2,0,2,[[297,2,2,0,2]]]],[8937,8941]]],["seated",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5831]]]]},{"k":"H5604","v":[["cieling",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8911]]]]},{"k":"H5605","v":[["doorkeeper",[1,1,[[18,1,1,0,1,[[561,1,1,0,1]]]],[15269]]]]},{"k":"H5606","v":[["*",[10,10,[[3,1,1,0,1,[[140,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[17,3,3,2,5,[[462,1,1,2,3],[469,2,2,3,5]]],[22,1,1,5,6,[[680,1,1,5,6]]],[23,2,2,6,8,[[775,1,1,6,7],[792,1,1,7,8]]],[24,1,1,8,9,[[798,1,1,8,9]]],[25,1,1,9,10,[[822,1,1,9,10]]]],[4456,9418,13504,13709,13720,17691,19710,20106,20347,20956]]],["+",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4456]]],["clap",[2,2,[[17,1,1,0,1,[[462,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]]],[13504,20347]]],["clappeth",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13720]]],["smite",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20956]]],["smote",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19710]]],["striketh",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13709]]],["suffice",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9418]]],["themselves",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17691]]],["wallow",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20106]]]]},{"k":"H5607","v":[["*",[2,2,[[17,2,2,0,2,[[455,1,1,0,1],[471,1,1,1,2]]]],[13348,13754]]],["stroke",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13754]]],["sufficiency",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13348]]]]},{"k":"H5608","v":[["*",[161,154,[[0,13,12,0,12,[[14,2,1,0,1],[15,1,1,1,2],[23,1,1,2,3],[28,1,1,3,4],[31,1,1,4,5],[36,2,2,5,7],[39,2,2,7,9],[40,3,3,9,12]]],[1,4,4,12,16,[[58,1,1,12,13],[59,1,1,13,14],[67,1,1,14,15],[73,1,1,15,16]]],[2,5,5,16,21,[[104,2,2,16,18],[112,2,2,18,20],[114,1,1,20,21]]],[3,1,1,21,22,[[129,1,1,21,22]]],[4,2,1,22,23,[[168,2,1,22,23]]],[5,1,1,23,24,[[188,1,1,23,24]]],[6,3,3,24,27,[[215,1,1,24,25],[216,1,1,25,26],[217,1,1,26,27]]],[8,1,1,27,28,[[246,1,1,27,28]]],[9,3,3,28,31,[[274,1,1,28,29],[286,1,1,29,30],[290,1,1,30,31]]],[10,5,4,31,35,[[293,1,1,31,32],[294,1,1,32,33],[298,1,1,33,34],[303,2,1,34,35]]],[11,13,13,35,48,[[320,3,3,35,38],[324,1,1,38,39],[330,2,2,39,41],[331,1,1,41,42],[334,5,5,42,47],[337,1,1,47,48]]],[12,7,7,48,55,[[339,1,1,48,49],[353,1,1,49,50],[355,1,1,50,51],[358,1,1,51,52],[360,1,1,52,53],[361,1,1,53,54],[364,1,1,54,55]]],[13,10,9,55,64,[[368,3,2,55,57],[371,1,1,57,58],[390,1,1,58,59],[392,1,1,59,60],[400,4,4,60,64]]],[14,4,3,64,67,[[403,1,1,64,65],[409,3,2,65,67]]],[15,7,7,67,74,[[420,4,4,67,71],[424,2,2,71,73],[425,1,1,73,74]]],[16,4,4,74,78,[[428,1,1,74,75],[430,1,1,75,76],[431,1,1,76,77],[433,1,1,77,78]]],[17,8,8,78,86,[[447,1,1,78,79],[449,1,1,79,80],[450,1,1,80,81],[463,1,1,81,82],[466,1,1,82,83],[472,1,1,83,84],[473,1,1,84,85],[474,1,1,85,86]]],[18,37,37,86,123,[[479,1,1,86,87],[486,2,2,87,89],[496,1,1,89,90],[499,3,3,90,93],[503,1,1,93,94],[517,1,1,94,95],[521,1,1,95,96],[522,1,1,96,97],[525,2,2,97,99],[527,1,1,99,100],[533,1,1,100,101],[536,1,1,101,102],[541,1,1,102,103],[543,1,1,103,104],[546,1,1,104,105],[548,1,1,105,106],[550,2,2,106,108],[552,1,1,108,109],[555,3,3,109,112],[556,1,1,112,113],[564,1,1,113,114],[565,1,1,114,115],[573,1,1,115,116],[579,1,1,116,117],[584,1,1,117,118],[595,1,1,118,119],[596,2,2,119,121],[616,1,1,121,122],[622,1,1,122,123]]],[22,9,8,123,131,[[700,1,1,123,124],[711,2,1,124,125],[714,2,2,125,127],[715,1,1,127,128],[721,2,2,128,130],[730,1,1,130,131]]],[23,17,16,131,147,[[752,1,1,131,132],[767,3,3,132,135],[777,1,1,135,136],[780,8,7,136,143],[781,2,2,143,145],[795,1,1,145,146],[796,1,1,146,147]]],[25,4,4,147,151,[[810,2,2,147,149],[813,1,1,149,150],[845,1,1,150,151]]],[27,1,1,151,152,[[862,1,1,151,152]]],[28,1,1,152,153,[[876,1,1,152,153]]],[34,1,1,153,154,[[903,1,1,153,154]]]],[365,391,657,808,940,1092,1093,1180,1181,1203,1207,1244,1758,1779,2007,2180,3181,3196,3417,3418,3477,4102,5351,5892,6637,6667,6707,7450,8226,8579,8702,8824,8847,8990,9195,9731,9732,9733,9860,10042,10061,10063,10148,10153,10154,10155,10157,10241,10361,10844,10906,10936,10986,11021,11141,11213,11228,11274,11688,11743,11946,11948,11951,11953,12024,12179,12184,12494,12497,12502,12506,12650,12660,12684,12759,12790,12806,12826,13136,13197,13220,13531,13592,13789,13830,13836,13952,14022,14035,14169,14221,14226,14234,14280,14530,14572,14598,14646,14647,14684,14763,14802,14855,14889,14961,14991,15035,15048,15072,15116,15117,15119,15198,15307,15319,15468,15542,15721,15886,15911,15924,16257,16326,18062,18297,18333,18352,18354,18526,18531,18711,19161,19511,19512,19516,19797,19852,19854,19862,19863,19865,19868,19874,19889,19894,20222,20301,20624,20625,20696,21625,22104,22294,22736]]],["+",[9,9,[[0,1,1,0,1,[[39,1,1,0,1]]],[9,1,1,1,2,[[290,1,1,1,2]]],[12,2,2,2,4,[[353,1,1,2,3],[358,1,1,3,4]]],[18,2,2,4,6,[[479,1,1,4,5],[517,1,1,5,6]]],[22,1,1,6,7,[[711,1,1,6,7]]],[23,1,1,7,8,[[780,1,1,7,8]]],[25,1,1,8,9,[[813,1,1,8,9]]]],[1181,8702,10844,10936,13952,14530,18297,19865,20696]]],["Declare",[1,1,[[18,1,1,0,1,[[573,1,1,0,1]]]],[15468]]],["Tell",[2,2,[[11,1,1,0,1,[[320,1,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]]],[9731,22294]]],["accounted",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14234]]],["commune",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14855]]],["count",[4,4,[[2,1,1,0,1,[[112,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]],[18,2,2,2,4,[[564,1,1,2,3],[616,1,1,3,4]]]],[3417,13592,15307,16257]]],["counted",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8824]]],["declare",[16,16,[[17,3,3,0,3,[[447,1,1,0,1],[450,1,1,1,2],[463,1,1,2,3]]],[18,11,11,3,14,[[496,1,1,3,4],[499,1,1,4,5],[527,1,1,5,6],[543,1,1,6,7],[550,1,1,7,8],[552,1,1,8,9],[555,1,1,9,10],[579,1,1,10,11],[584,1,1,11,12],[595,1,1,12,13],[622,1,1,13,14]]],[22,1,1,14,15,[[721,1,1,14,15]]],[23,1,1,15,16,[[795,1,1,15,16]]]],[13136,13220,13531,14169,14226,14684,14889,15048,15072,15119,15542,15721,15886,16326,18531,20222]]],["declared",[4,4,[[1,1,1,0,1,[[58,1,1,0,1]]],[18,3,3,1,4,[[565,1,1,1,2],[596,2,2,2,4]]]],[1758,15319,15911,15924]]],["forth",[5,5,[[18,4,4,0,4,[[486,2,2,0,2],[548,1,1,2,3],[556,1,1,3,4]]],[22,1,1,4,5,[[721,1,1,4,5]]]],[14022,14035,14991,15198,18526]]],["number",[9,8,[[0,1,1,0,1,[[14,1,1,0,1]]],[2,4,4,1,5,[[104,2,2,1,3],[112,1,1,3,4],[114,1,1,4,5]]],[4,2,1,5,6,[[168,2,1,5,6]]],[17,2,2,6,8,[[473,1,1,6,7],[474,1,1,7,8]]]],[365,3181,3196,3418,3477,5351,13830,13836]]],["numbered",[9,8,[[0,2,2,0,2,[[15,1,1,0,1],[31,1,1,1,2]]],[12,1,1,2,3,[[360,1,1,2,3]]],[13,2,1,3,4,[[368,2,1,3,4]]],[14,1,1,4,5,[[403,1,1,4,5]]],[22,1,1,5,6,[[700,1,1,5,6]]],[23,1,1,6,7,[[777,1,1,6,7]]],[27,1,1,7,8,[[862,1,1,7,8]]]],[391,940,10986,11228,12024,18062,19797,22104]]],["numberest",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13197]]],["numbering",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1244]]],["out",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11213]]],["reckon",[1,1,[[25,1,1,0,1,[[845,1,1,0,1]]]],[21625]]],["scribe",[42,41,[[9,2,2,0,2,[[274,1,1,0,1],[286,1,1,1,2]]],[11,10,10,2,12,[[324,1,1,2,3],[330,2,2,3,5],[331,1,1,5,6],[334,5,5,6,11],[337,1,1,11,12]]],[12,3,3,12,15,[[355,1,1,12,13],[361,1,1,13,14],[364,1,1,14,15]]],[13,5,5,15,20,[[390,1,1,15,16],[392,1,1,16,17],[400,3,3,17,20]]],[14,3,2,20,22,[[409,3,2,20,22]]],[15,7,7,22,29,[[420,4,4,22,26],[424,2,2,26,28],[425,1,1,28,29]]],[22,4,4,29,33,[[711,1,1,29,30],[714,2,2,30,32],[715,1,1,32,33]]],[23,8,8,33,41,[[780,5,5,33,38],[781,2,2,38,40],[796,1,1,40,41]]]],[8226,8579,9860,10042,10061,10063,10148,10153,10154,10155,10157,10241,10906,11021,11141,11688,11743,11948,11951,11953,12179,12184,12494,12497,12502,12506,12650,12660,12684,18297,18333,18352,18354,19852,19854,19862,19868,19874,19889,19894,20301]]],["scribe's",[2,2,[[23,2,2,0,2,[[780,2,2,0,2]]]],[19854,19863]]],["scribes",[6,6,[[10,1,1,0,1,[[294,1,1,0,1]]],[12,1,1,1,2,[[339,1,1,1,2]]],[13,1,1,2,3,[[400,1,1,2,3]]],[16,2,2,3,5,[[428,1,1,3,4],[433,1,1,4,5]]],[23,1,1,5,6,[[752,1,1,5,6]]]],[8847,10361,11946,12759,12826,19161]]],["shewing",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15117]]],["speak",[2,2,[[18,2,2,0,2,[[536,1,1,0,1],[550,1,1,1,2]]]],[14802,15035]]],["talk",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14961]]],["tell",[10,10,[[0,2,2,0,2,[[14,1,1,0,1],[39,1,1,1,2]]],[1,1,1,2,3,[[59,1,1,2,3]]],[18,4,4,3,7,[[499,1,1,3,4],[503,1,1,4,5],[525,2,2,5,7]]],[23,3,3,7,10,[[767,3,3,7,10]]]],[365,1180,1779,14221,14280,14646,14647,19511,19512,19516]]],["tellest",[1,1,[[18,1,1,0,1,[[533,1,1,0,1]]]],[14763]]],["telling",[1,1,[[11,1,1,0,1,[[320,1,1,0,1]]]],[9732]]],["told",[25,24,[[0,6,6,0,6,[[23,1,1,0,1],[28,1,1,1,2],[36,2,2,2,4],[40,2,2,4,6]]],[1,2,2,6,8,[[67,1,1,6,7],[73,1,1,7,8]]],[3,1,1,8,9,[[129,1,1,8,9]]],[5,1,1,9,10,[[188,1,1,9,10]]],[6,2,2,10,12,[[216,1,1,10,11],[217,1,1,11,12]]],[8,1,1,12,13,[[246,1,1,12,13]]],[10,3,2,13,15,[[298,1,1,13,14],[303,2,1,14,15]]],[11,1,1,15,16,[[320,1,1,15,16]]],[13,1,1,16,17,[[371,1,1,16,17]]],[16,2,2,17,19,[[430,1,1,17,18],[431,1,1,18,19]]],[17,1,1,19,20,[[472,1,1,19,20]]],[18,2,2,20,22,[[521,1,1,20,21],[555,1,1,21,22]]],[22,1,1,22,23,[[730,1,1,22,23]]],[34,1,1,23,24,[[903,1,1,23,24]]]],[657,808,1092,1093,1203,1207,2007,2180,4102,5892,6667,6707,7450,8990,9195,9733,11274,12790,12806,13789,14572,15116,18711,22736]]],["writer",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]]],[6637,14598]]],["writer's",[2,2,[[25,2,2,0,2,[[810,2,2,0,2]]]],[20624,20625]]]]},{"k":"H5609","v":[["*",[5,4,[[14,4,3,0,3,[[406,2,1,0,1],[408,2,2,1,3]]],[26,1,1,3,4,[[856,1,1,3,4]]]],[12125,12152,12169,21943]]],["book",[3,2,[[14,3,2,0,2,[[406,2,1,0,1],[408,1,1,1,2]]]],[12125,12169]]],["books",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21943]]],["rolls",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12152]]]]},{"k":"H5610","v":[["numbering",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11228]]]]},{"k":"H5611","v":[["Sephar",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[264]]]]},{"k":"H5612","v":[["*",[186,174,[[0,1,1,0,1,[[4,1,1,0,1]]],[1,4,4,1,5,[[66,1,1,1,2],[73,1,1,2,3],[81,2,2,3,5]]],[3,2,2,5,7,[[121,1,1,5,6],[137,1,1,6,7]]],[4,11,11,7,18,[[169,1,1,7,8],[176,2,2,8,10],[180,2,2,10,12],[181,3,3,12,15],[182,1,1,15,16],[183,2,2,16,18]]],[5,7,7,18,25,[[187,1,1,18,19],[194,2,2,19,21],[196,1,1,21,22],[204,1,1,22,23],[209,1,1,23,24],[210,1,1,24,25]]],[8,1,1,25,26,[[245,1,1,25,26]]],[9,3,3,26,29,[[267,1,1,26,27],[277,2,2,27,29]]],[10,16,15,29,44,[[301,1,1,29,30],[304,2,2,30,32],[305,3,3,32,35],[306,4,4,35,39],[311,4,3,39,42],[312,2,2,42,44]]],[11,44,41,44,85,[[313,1,1,44,45],[317,4,3,45,48],[320,1,1,48,49],[322,5,5,49,54],[324,1,1,54,55],[325,2,2,55,57],[326,4,4,57,61],[327,7,7,61,68],[328,1,1,68,69],[331,1,1,69,70],[332,2,2,70,72],[333,2,2,72,74],[334,7,5,74,79],[335,5,5,79,84],[336,1,1,84,85]]],[12,1,1,85,86,[[346,1,1,85,86]]],[13,23,21,86,107,[[382,1,1,86,87],[383,1,1,87,88],[386,1,1,88,89],[390,1,1,89,90],[391,2,2,90,92],[393,1,1,92,93],[394,1,1,93,94],[398,2,2,94,96],[400,10,8,96,104],[401,2,2,104,106],[402,1,1,106,107]]],[15,9,9,107,116,[[419,1,1,107,108],[420,5,5,108,113],[421,1,1,113,114],[424,1,1,114,115],[425,1,1,115,116]]],[16,11,11,116,127,[[426,1,1,116,117],[427,1,1,117,118],[428,1,1,118,119],[431,1,1,119,120],[433,2,2,120,122],[434,4,4,122,126],[435,1,1,126,127]]],[17,2,2,127,129,[[454,1,1,127,128],[466,1,1,128,129]]],[18,4,4,129,133,[[517,1,1,129,130],[533,1,1,130,131],[546,1,1,131,132],[616,1,1,132,133]]],[20,1,1,133,134,[[670,1,1,133,134]]],[22,12,9,134,143,[[707,6,3,134,137],[708,1,1,137,138],[712,2,2,138,140],[715,1,1,140,141],[717,1,1,141,142],[728,1,1,142,143]]],[23,26,23,143,166,[[747,1,1,143,144],[769,1,1,144,145],[773,3,3,145,148],[774,1,1,148,149],[776,9,6,149,155],[780,8,8,155,163],[789,1,1,163,164],[795,2,2,164,166]]],[25,1,1,166,167,[[803,1,1,166,167]]],[26,5,5,167,172,[[850,2,2,167,169],[858,1,1,169,170],[861,2,2,170,172]]],[33,1,1,172,173,[[900,1,1,172,173]]],[38,1,1,173,174,[[927,1,1,173,174]]]],[106,1997,2184,2470,2471,3815,4354,5382,5526,5528,5669,5672,5699,5700,5706,5718,5752,5754,5859,6033,6036,6077,6302,6466,6502,7443,8040,8273,8274,9149,9237,9247,9256,9272,9280,9288,9297,9303,9310,9459,9460,9462,9519,9525,9551,9652,9653,9654,9750,9794,9795,9799,9800,9827,9869,9879,9883,9902,9911,9914,9924,9931,9936,9940,9946,9951,9956,9961,9982,10075,10110,10118,10136,10144,10153,10155,10156,10158,10161,10167,10168,10186,10189,10193,10207,10616,11520,11532,11621,11704,11708,11730,11762,11790,11892,11907,11947,11948,11949,11951,11954,11957,11963,11964,11978,11993,12001,12425,12494,12496,12498,12501,12511,12514,12647,12672,12724,12747,12760,12794,12822,12827,12854,12859,12864,12866,12868,13320,13623,14532,14763,14963,16255,17535,18204,18205,18211,18225,18307,18319,18366,18413,18663,19010,19547,19636,19660,19664,19669,19741,19742,19743,19745,19747,19775,19844,19846,19850,19852,19853,19855,19860,19874,20041,20272,20275,20501,21741,21754,21990,22082,22085,22685,23136]]],["+",[10,9,[[1,2,2,0,2,[[81,2,2,0,2]]],[18,1,1,2,3,[[546,1,1,2,3]]],[22,3,2,3,5,[[707,3,2,3,5]]],[23,4,4,5,9,[[776,1,1,5,6],[780,2,2,6,8],[795,1,1,8,9]]]],[2470,2471,14963,18204,18205,19745,19852,19853,20272]]],["bill",[4,4,[[4,2,2,0,2,[[176,2,2,0,2]]],[22,1,1,2,3,[[728,1,1,2,3]]],[23,1,1,3,4,[[747,1,1,3,4]]]],[5526,5528,18663,19010]]],["book",[130,126,[[0,1,1,0,1,[[4,1,1,0,1]]],[1,2,2,1,3,[[66,1,1,1,2],[73,1,1,2,3]]],[3,2,2,3,5,[[121,1,1,3,4],[137,1,1,4,5]]],[4,9,9,5,14,[[169,1,1,5,6],[180,2,2,6,8],[181,3,3,8,11],[182,1,1,11,12],[183,2,2,12,14]]],[5,7,7,14,21,[[187,1,1,14,15],[194,2,2,15,17],[196,1,1,17,18],[204,1,1,18,19],[209,1,1,19,20],[210,1,1,20,21]]],[8,1,1,21,22,[[245,1,1,21,22]]],[9,1,1,22,23,[[267,1,1,22,23]]],[10,12,12,23,35,[[301,1,1,23,24],[304,2,2,24,26],[305,3,3,26,29],[306,4,4,29,33],[312,2,2,33,35]]],[11,34,32,35,67,[[313,1,1,35,36],[320,1,1,36,37],[322,1,1,37,38],[324,1,1,38,39],[325,2,2,39,41],[326,4,4,41,45],[327,7,7,45,52],[328,1,1,52,53],[332,1,1,53,54],[333,2,2,54,56],[334,7,5,56,61],[335,5,5,61,66],[336,1,1,66,67]]],[12,1,1,67,68,[[346,1,1,67,68]]],[13,22,20,68,88,[[382,1,1,68,69],[383,1,1,69,70],[386,1,1,70,71],[390,1,1,71,72],[391,2,2,72,74],[393,1,1,74,75],[394,1,1,75,76],[398,1,1,76,77],[400,10,8,77,85],[401,2,2,85,87],[402,1,1,87,88]]],[15,8,8,88,96,[[420,5,5,88,93],[421,1,1,93,94],[424,1,1,94,95],[425,1,1,95,96]]],[16,4,4,96,100,[[427,1,1,96,97],[431,1,1,97,98],[434,1,1,98,99],[435,1,1,99,100]]],[17,2,2,100,102,[[454,1,1,100,101],[466,1,1,101,102]]],[18,3,3,102,105,[[517,1,1,102,103],[533,1,1,103,104],[616,1,1,104,105]]],[22,5,5,105,110,[[707,3,3,105,108],[708,1,1,108,109],[712,1,1,109,110]]],[23,11,11,110,121,[[769,1,1,110,111],[774,1,1,111,112],[776,1,1,112,113],[780,6,6,113,119],[789,1,1,119,120],[795,1,1,120,121]]],[25,1,1,121,122,[[803,1,1,121,122]]],[26,2,2,122,124,[[861,2,2,122,124]]],[33,1,1,124,125,[[900,1,1,124,125]]],[38,1,1,125,126,[[927,1,1,125,126]]]],[106,1997,2184,3815,4354,5382,5669,5672,5699,5700,5706,5718,5752,5754,5859,6033,6036,6077,6302,6466,6502,7443,8040,9149,9237,9247,9256,9272,9280,9288,9297,9303,9310,9519,9525,9551,9750,9827,9869,9879,9883,9902,9911,9914,9924,9931,9936,9940,9946,9951,9956,9961,9982,10118,10136,10144,10153,10155,10156,10158,10161,10167,10168,10186,10189,10193,10207,10616,11520,11532,11621,11704,11708,11730,11762,11790,11907,11947,11948,11949,11951,11954,11957,11963,11964,11978,11993,12001,12494,12496,12498,12501,12511,12514,12647,12672,12747,12794,12866,12868,13320,13623,14532,14763,16255,18204,18205,18211,18225,18319,19547,19669,19743,19844,19846,19850,19855,19860,19874,20041,20275,20501,22082,22085,22685,23136]]],["books",[2,2,[[20,1,1,0,1,[[670,1,1,0,1]]],[26,1,1,1,2,[[858,1,1,1,2]]]],[17535,21990]]],["evidence",[6,5,[[23,6,5,0,5,[[776,6,5,0,5]]]],[19741,19742,19743,19745,19747]]],["evidences",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19775]]],["learning",[2,2,[[26,2,2,0,2,[[850,2,2,0,2]]]],[21741,21754]]],["letter",[13,12,[[9,2,2,0,2,[[277,2,2,0,2]]],[11,8,7,2,9,[[317,4,3,2,5],[322,3,3,5,8],[331,1,1,8,9]]],[22,1,1,9,10,[[715,1,1,9,10]]],[23,2,2,10,12,[[773,2,2,10,12]]]],[8273,8274,9652,9653,9654,9795,9799,9800,10075,18366,19636,19664]]],["letters",[16,15,[[10,4,3,0,3,[[311,4,3,0,3]]],[11,2,2,3,5,[[322,1,1,3,4],[332,1,1,4,5]]],[13,1,1,5,6,[[398,1,1,5,6]]],[16,7,7,6,13,[[426,1,1,6,7],[428,1,1,7,8],[433,2,2,8,10],[434,3,3,10,13]]],[22,1,1,13,14,[[717,1,1,13,14]]],[23,1,1,14,15,[[773,1,1,14,15]]]],[9459,9460,9462,9794,10110,11892,12724,12760,12822,12827,12854,12859,12864,18413,19660]]],["register",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12425]]],["scroll",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18307]]]]},{"k":"H5613","v":[["scribe",[6,6,[[14,6,6,0,6,[[406,4,4,0,4],[409,2,2,4,6]]]],[12118,12119,12127,12133,12185,12194]]]]},{"k":"H5614","v":[["Sepharad",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22530]]]]},{"k":"H5615","v":[["numbers",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14991]]]]},{"k":"H5616","v":[["Sepharvites",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10014]]]]},{"k":"H5617","v":[["Sepharvaim",[6,6,[[11,4,4,0,4,[[329,2,2,0,2],[330,1,1,2,3],[331,1,1,3,4]]],[22,2,2,4,6,[[714,1,1,4,5],[715,1,1,5,6]]]],[10007,10014,10058,10074,18349,18365]]]]},{"k":"H5618","v":[["Sophereth",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12082,12477]]]]},{"k":"H5619","v":[["*",[22,20,[[1,8,6,0,6,[[57,1,1,0,1],[66,1,1,1,2],[68,2,1,2,3],[70,4,3,3,6]]],[4,4,4,6,10,[[165,1,1,6,7],[169,1,1,7,8],[174,2,2,8,10]]],[5,1,1,10,11,[[193,1,1,10,11]]],[8,1,1,11,12,[[265,1,1,11,12]]],[9,2,2,12,14,[[282,2,2,12,14]]],[10,4,4,14,18,[[311,4,4,14,18]]],[22,2,2,18,20,[[683,1,1,18,19],[740,1,1,19,20]]]],[1736,1987,2039,2105,2106,2109,5282,5369,5491,5494,6001,7984,8432,8439,9461,9464,9465,9466,17741,18864]]],["+",[4,2,[[1,4,2,0,2,[[68,2,1,0,1],[70,2,1,1,2]]]],[2039,2105]]],["cast",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8432]]],["out",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18864]]],["stone",[7,7,[[1,2,2,0,2,[[57,1,1,0,1],[66,1,1,1,2]]],[4,4,4,2,6,[[165,1,1,2,3],[169,1,1,3,4],[174,2,2,4,6]]],[10,1,1,6,7,[[311,1,1,6,7]]]],[1736,1987,5282,5369,5491,5494,9461]]],["stoned",[6,6,[[1,2,2,0,2,[[70,2,2,0,2]]],[5,1,1,2,3,[[193,1,1,2,3]]],[10,3,3,3,6,[[311,3,3,3,6]]]],[2106,2109,6001,9464,9465,9466]]],["stones",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17741]]],["stoning",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7984]]],["threw",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8439]]]]},{"k":"H5620","v":[["*",[3,3,[[10,3,3,0,3,[[310,1,1,0,1],[311,2,2,1,3]]]],[9451,9455,9456]]],["heavy",[2,2,[[10,2,2,0,2,[[310,1,1,0,1],[311,1,1,1,2]]]],[9451,9455]]],["sad",[1,1,[[10,1,1,0,1,[[311,1,1,0,1]]]],[9456]]]]},{"k":"H5621","v":[["briers",[1,1,[[25,1,1,0,1,[[803,1,1,0,1]]]],[20498]]]]},{"k":"H5622","v":[["coats",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21828,21834]]]]},{"k":"H5623","v":[["Sargon",[1,1,[[22,1,1,0,1,[[698,1,1,0,1]]]],[18030]]]]},{"k":"H5624","v":[["Sered",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1400,4515]]]]},{"k":"H5625","v":[["Sardites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4515]]]]},{"k":"H5626","v":[["Sirah",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8107]]]]},{"k":"H5627","v":[["*",[8,8,[[4,2,2,0,2,[[165,1,1,0,1],[171,1,1,1,2]]],[22,4,4,2,6,[[679,1,1,2,3],[692,1,1,3,4],[709,1,1,4,5],[737,1,1,5,6]]],[23,2,2,6,8,[[772,1,1,6,7],[773,1,1,7,8]]]],[5277,5422,17659,17934,18256,18813,19634,19667]]],["+",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17934]]],["away",[1,1,[[4,1,1,0,1,[[165,1,1,0,1]]]],[5277]]],["rebellion",[2,2,[[23,2,2,0,2,[[772,1,1,0,1],[773,1,1,1,2]]]],[19634,19667]]],["revolt",[2,2,[[22,2,2,0,2,[[679,1,1,0,1],[737,1,1,1,2]]]],[17659,18813]]],["revolted",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18256]]],["wrong",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5422]]]]},{"k":"H5628","v":[["*",[7,7,[[1,2,2,0,2,[[75,2,2,0,2]]],[23,1,1,2,3,[[793,1,1,2,3]]],[25,2,2,3,5,[[818,1,1,3,4],[824,1,1,4,5]]],[29,2,2,5,7,[[884,2,2,5,7]]]],[2247,2248,20134,20831,21022,22454,22457]]],["exceeding",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21022]]],["hang",[2,2,[[1,2,2,0,2,[[75,2,2,0,2]]]],[2247,2248]]],["spreading",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20831]]],["stretch",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22454]]],["stretched",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22457]]],["vanished",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20134]]]]},{"k":"H5629","v":[["remnant",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2247]]]]},{"k":"H5630","v":[["*",[2,2,[[23,2,2,0,2,[[790,1,1,0,1],[795,1,1,1,2]]]],[20049,20215]]],["brigandine",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20215]]],["brigandines",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20049]]]]},{"k":"H5631","v":[["*",[42,42,[[0,4,4,0,4,[[36,1,1,0,1],[38,1,1,1,2],[39,2,2,2,4]]],[8,1,1,4,5,[[243,1,1,4,5]]],[10,1,1,5,6,[[312,1,1,5,6]]],[11,7,7,6,13,[[320,1,1,6,7],[321,1,1,7,8],[332,1,1,8,9],[335,1,1,9,10],[336,2,2,10,12],[337,1,1,12,13]]],[12,1,1,13,14,[[365,1,1,13,14]]],[13,1,1,14,15,[[384,1,1,14,15]]],[16,12,12,15,27,[[426,3,3,15,18],[427,4,4,18,22],[429,2,2,22,24],[431,2,2,24,26],[432,1,1,26,27]]],[22,3,3,27,30,[[717,1,1,27,28],[734,2,2,28,30]]],[23,5,5,30,35,[[773,1,1,30,31],[778,1,1,31,32],[782,1,1,32,33],[785,1,1,33,34],[796,1,1,34,35]]],[26,7,7,35,42,[[850,7,7,35,42]]]],[1119,1150,1174,1179,7384,9489,9733,9788,10116,10176,10214,10217,10241,11144,11550,12712,12714,12717,12727,12738,12739,12745,12766,12767,12795,12807,12816,18419,18756,18757,19637,19820,19902,19973,20301,21740,21744,21745,21746,21747,21748,21755]]],["+",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12767]]],["chamberlain",[4,4,[[11,1,1,0,1,[[335,1,1,0,1]]],[16,3,3,1,4,[[427,3,3,1,4]]]],[10176,12727,12738,12739]]],["chamberlains",[8,8,[[16,8,8,0,8,[[426,3,3,0,3],[427,1,1,3,4],[429,1,1,4,5],[431,2,2,5,7],[432,1,1,7,8]]]],[12712,12714,12717,12745,12766,12795,12807,12816]]],["eunuch",[2,2,[[22,1,1,0,1,[[734,1,1,0,1]]],[23,1,1,1,2,[[796,1,1,1,2]]]],[18756,20301]]],["eunuchs",[15,15,[[11,2,2,0,2,[[321,1,1,0,1],[332,1,1,1,2]]],[22,2,2,2,4,[[717,1,1,2,3],[734,1,1,3,4]]],[23,4,4,4,8,[[773,1,1,4,5],[778,1,1,5,6],[782,1,1,6,7],[785,1,1,7,8]]],[26,7,7,8,15,[[850,7,7,8,15]]]],[9788,10116,18419,18757,19637,19820,19902,19973,21740,21744,21745,21746,21747,21748,21755]]],["officer",[5,5,[[0,2,2,0,2,[[36,1,1,0,1],[38,1,1,1,2]]],[10,1,1,2,3,[[312,1,1,2,3]]],[11,2,2,3,5,[[320,1,1,3,4],[337,1,1,4,5]]]],[1119,1150,9489,9733,10241]]],["officers",[7,7,[[0,2,2,0,2,[[39,2,2,0,2]]],[8,1,1,2,3,[[243,1,1,2,3]]],[11,2,2,3,5,[[336,2,2,3,5]]],[12,1,1,5,6,[[365,1,1,5,6]]],[13,1,1,6,7,[[384,1,1,6,7]]]],[1174,1179,7384,10214,10217,11144,11550]]]]},{"k":"H5632","v":[["presidents",[5,5,[[26,5,5,0,5,[[855,5,5,0,5]]]],[21907,21908,21909,21911,21912]]]]},{"k":"H5633","v":[["*",[22,20,[[5,1,1,0,1,[[199,1,1,0,1]]],[6,8,7,1,8,[[213,1,1,1,2],[226,7,6,2,8]]],[8,11,10,8,18,[[240,2,2,8,10],[241,5,4,10,14],[242,1,1,14,15],[264,3,3,15,18]]],[10,1,1,18,19,[[297,1,1,18,19]]],[12,1,1,19,20,[[349,1,1,19,20]]]],[6157,6571,6954,6957,6967,6972,6976,6979,7327,7330,7335,7343,7347,7349,7359,7969,7973,7974,8964,10739]]],["+",[1,1,[[8,1,1,0,1,[[264,1,1,0,1]]]],[7973]]],["lords",[20,18,[[5,1,1,0,1,[[199,1,1,0,1]]],[6,8,7,1,8,[[213,1,1,1,2],[226,7,6,2,8]]],[8,10,9,8,17,[[240,2,2,8,10],[241,5,4,10,14],[242,1,1,14,15],[264,2,2,15,17]]],[12,1,1,17,18,[[349,1,1,17,18]]]],[6157,6571,6954,6957,6967,6972,6976,6979,7327,7330,7335,7343,7347,7349,7359,7969,7974,10739]]],["plates",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8964]]]]},{"k":"H5634","v":[["boughs",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21235]]]]},{"k":"H5635","v":[["burneth",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22460]]]]},{"k":"H5636","v":[["brier",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18753]]]]},{"k":"H5637","v":[["*",[17,16,[[4,2,2,0,2,[[173,2,2,0,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[18,4,4,3,7,[[543,1,1,3,4],[545,2,2,4,6],[555,1,1,6,7]]],[19,1,1,7,8,[[634,1,1,7,8]]],[22,3,3,8,11,[[679,1,1,8,9],[708,1,1,9,10],[743,1,1,10,11]]],[23,2,2,11,13,[[749,1,1,11,12],[750,1,1,12,13]]],[27,3,2,13,15,[[865,2,1,13,14],[870,1,1,14,15]]],[37,1,1,15,16,[[917,1,1,15,16]]]],[5465,5467,12540,14880,14906,14918,15121,16586,17677,18218,18899,19081,19117,22149,22223,22973]]],["+",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12540]]],["away",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22973]]],["back",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22149]]],["backsliding",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22149]]],["rebellious",[6,6,[[18,3,3,0,3,[[543,1,1,0,1],[545,2,2,1,3]]],[22,3,3,3,6,[[679,1,1,3,4],[708,1,1,4,5],[743,1,1,5,6]]]],[14880,14906,14918,17677,18218,18899]]],["revolters",[2,2,[[23,1,1,0,1,[[750,1,1,0,1]]],[27,1,1,1,2,[[870,1,1,1,2]]]],[19117,22223]]],["revolting",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19081]]],["stubborn",[4,4,[[4,2,2,0,2,[[173,2,2,0,2]]],[18,1,1,2,3,[[555,1,1,2,3]]],[19,1,1,3,4,[[634,1,1,3,4]]]],[5465,5467,15121,16586]]]]},{"k":"H5638","v":[["winter",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17565]]]]},{"k":"H5639","v":[["Sethur",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4088]]]]},{"k":"H5640","v":[["*",[14,14,[[0,2,2,0,2,[[25,2,2,0,2]]],[11,2,2,2,4,[[315,2,2,2,4]]],[13,3,3,4,7,[[398,3,3,4,7]]],[15,1,1,7,8,[[416,1,1,7,8]]],[18,1,1,8,9,[[528,1,1,8,9]]],[24,1,1,9,10,[[799,1,1,9,10]]],[25,1,1,10,11,[[829,1,1,10,11]]],[26,3,3,11,14,[[857,1,1,11,12],[861,2,2,12,14]]]],[707,710,9595,9601,11878,11879,11905,12366,14697,20362,21160,21987,22085,22090]]],["+",[4,4,[[13,3,3,0,3,[[398,3,3,0,3]]],[26,1,1,3,4,[[857,1,1,3,4]]]],[11878,11879,11905,21987]]],["hidden",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14697]]],["out",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20362]]],["secret",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21160]]],["stop",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9595]]],["stopped",[4,4,[[0,2,2,0,2,[[25,2,2,0,2]]],[11,1,1,2,3,[[315,1,1,2,3]]],[15,1,1,3,4,[[416,1,1,3,4]]]],[707,710,9601,12366]]],["up",[2,2,[[26,2,2,0,2,[[861,2,2,0,2]]]],[22085,22090]]]]},{"k":"H5641","v":[["*",[80,79,[[0,2,2,0,2,[[3,1,1,0,1],[30,1,1,1,2]]],[1,1,1,2,3,[[52,1,1,2,3]]],[3,1,1,3,4,[[121,1,1,3,4]]],[4,6,5,4,9,[[159,1,1,4,5],[181,1,1,5,6],[183,3,2,6,8],[184,1,1,8,9]]],[8,6,6,9,15,[[255,4,4,9,13],[258,1,1,13,14],[261,1,1,14,15]]],[10,1,1,15,16,[[307,1,1,15,16]]],[11,1,1,16,17,[[323,1,1,16,17]]],[13,1,1,17,18,[[388,1,1,17,18]]],[17,8,8,18,26,[[438,2,2,18,20],[448,2,2,20,22],[449,1,1,22,23],[463,1,1,23,24],[469,2,2,24,26]]],[18,22,22,26,48,[[487,1,1,26,27],[490,1,1,27,28],[494,1,1,28,29],[496,2,2,29,31],[499,1,1,31,32],[504,2,2,32,34],[507,1,1,34,35],[508,1,1,35,36],[515,1,1,36,37],[521,1,1,37,38],[528,1,1,38,39],[532,1,1,39,40],[541,1,1,40,41],[546,1,1,41,42],[565,1,1,42,43],[566,1,1,43,44],[579,1,1,44,45],[581,1,1,45,46],[596,1,1,46,47],[620,1,1,47,48]]],[19,5,5,48,53,[[649,1,1,48,49],[652,1,1,49,50],[654,2,2,50,52],[655,1,1,52,53]]],[22,14,14,53,67,[[686,1,1,53,54],[694,1,1,54,55],[706,1,1,55,56],[707,2,2,56,58],[718,1,1,58,59],[723,1,1,59,60],[727,1,1,60,61],[728,1,1,61,62],[732,1,1,62,63],[735,1,1,63,64],[737,1,1,64,65],[742,1,1,65,66],[743,1,1,66,67]]],[23,5,5,67,72,[[760,1,1,67,68],[767,1,1,68,69],[777,1,1,69,70],[780,2,2,70,72]]],[25,3,3,72,75,[[840,3,3,72,75]]],[27,1,1,75,76,[[874,1,1,75,76]]],[29,1,1,76,77,[[887,1,1,76,77]]],[32,1,1,77,78,[[895,1,1,77,78]]],[35,1,1,78,79,[[907,1,1,78,79]]]],[93,922,1585,3805,5131,5708,5745,5746,5778,7732,7735,7749,7754,7829,7906,9320,9831,11655,12914,12927,13173,13177,13194,13525,13705,13712,14052,14075,14111,14174,14180,14228,14290,14294,14326,14351,14499,14595,14700,14744,14852,14952,15322,15372,15523,15600,15917,16300,17018,17115,17174,17181,17224,17824,17972,18179,18207,18208,18447,18576,18638,18668,18731,18782,18802,18892,18913,19353,19508,19780,19861,19868,21471,21472,21477,22280,22498,22612,22808]]],["+",[5,4,[[4,2,1,0,1,[[183,2,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[18,2,2,2,4,[[490,1,1,2,3],[496,1,1,3,4]]]],[5746,7732,14075,14180]]],["Hide",[4,4,[[18,4,4,0,4,[[504,1,1,0,1],[528,1,1,1,2],[541,1,1,2,3],[579,1,1,3,4]]]],[14294,14700,14852,15523]]],["absent",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[922]]],["close",[2,2,[[3,1,1,0,1,[[121,1,1,0,1]]],[17,1,1,1,2,[[463,1,1,1,2]]]],[3805,13525]]],["conceal",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17115]]],["hid",[26,26,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,1,1,1,2,[[52,1,1,1,2]]],[11,1,1,2,3,[[323,1,1,2,3]]],[13,1,1,3,4,[[388,1,1,3,4]]],[17,2,2,4,6,[[438,2,2,4,6]]],[18,3,3,6,9,[[496,1,1,6,7],[499,1,1,7,8],[515,1,1,8,9]]],[22,9,9,9,18,[[707,1,1,9,10],[718,1,1,10,11],[727,1,1,11,12],[728,1,1,12,13],[732,1,1,13,14],[735,1,1,14,15],[737,1,1,15,16],[742,1,1,16,17],[743,1,1,17,18]]],[23,3,3,18,21,[[760,1,1,18,19],[777,1,1,19,20],[780,1,1,20,21]]],[25,2,2,21,23,[[840,2,2,21,23]]],[27,1,1,23,24,[[874,1,1,23,24]]],[29,1,1,24,25,[[887,1,1,24,25]]],[35,1,1,25,26,[[907,1,1,25,26]]]],[93,1585,9831,11655,12914,12927,14174,14228,14499,18207,18447,18638,18668,18731,18782,18802,18892,18913,19353,19780,19868,21471,21472,22280,22498,22808]]],["hide",[14,14,[[4,2,2,0,2,[[183,1,1,0,1],[184,1,1,1,2]]],[18,7,7,2,9,[[494,1,1,2,3],[504,1,1,3,4],[507,1,1,4,5],[508,1,1,5,6],[546,1,1,6,7],[596,1,1,7,8],[620,1,1,8,9]]],[22,2,2,9,11,[[694,1,1,9,10],[707,1,1,10,11]]],[23,1,1,11,12,[[780,1,1,11,12]]],[25,1,1,12,13,[[840,1,1,12,13]]],[32,1,1,13,14,[[895,1,1,13,14]]]],[5745,5778,14111,14290,14326,14351,14952,15917,16300,17972,18208,19861,21477,22612]]],["hidest",[4,4,[[17,1,1,0,1,[[448,1,1,0,1]]],[18,3,3,1,4,[[521,1,1,1,2],[565,1,1,2,3],[581,1,1,3,4]]]],[13177,14595,15322,15600]]],["hideth",[3,3,[[17,1,1,0,1,[[469,1,1,0,1]]],[18,1,1,1,2,[[487,1,1,1,2]]],[22,1,1,2,3,[[686,1,1,2,3]]]],[13712,14052,17824]]],["himself",[6,6,[[8,3,3,0,3,[[255,1,1,0,1],[258,1,1,1,2],[261,1,1,2,3]]],[19,2,2,3,5,[[649,1,1,3,4],[654,1,1,4,5]]],[23,1,1,5,6,[[767,1,1,5,6]]]],[7754,7829,7906,17018,17181,19508]]],["myself",[3,3,[[8,1,1,0,1,[[255,1,1,0,1]]],[17,1,1,1,2,[[448,1,1,1,2]]],[18,1,1,2,3,[[532,1,1,2,3]]]],[7735,13173,14744]]],["ourselves",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18179]]],["secret",[3,3,[[4,1,1,0,1,[[181,1,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[19,1,1,2,3,[[654,1,1,2,3]]]],[5708,13194,17174]]],["themselves",[3,3,[[4,1,1,0,1,[[159,1,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[19,1,1,2,3,[[655,1,1,2,3]]]],[5131,13705,17224]]],["thyself",[4,4,[[8,1,1,0,1,[[255,1,1,0,1]]],[10,1,1,1,2,[[307,1,1,1,2]]],[18,1,1,2,3,[[566,1,1,2,3]]],[22,1,1,3,4,[[723,1,1,3,4]]]],[7749,9320,15372,18576]]]]},{"k":"H5642","v":[["*",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[851,1,1,1,2]]]],[12146,21780]]],["destroyed",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12146]]],["things",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21780]]]]},{"k":"H5643","v":[["*",[36,36,[[4,5,5,0,5,[[165,1,1,0,1],[179,2,2,1,3],[180,1,1,3,4],[184,1,1,4,5]]],[6,1,1,5,6,[[213,1,1,5,6]]],[8,2,2,6,8,[[254,1,1,6,7],[260,1,1,7,8]]],[9,1,1,8,9,[[278,1,1,8,9]]],[17,5,5,9,14,[[448,1,1,9,10],[457,1,1,10,11],[459,1,1,11,12],[466,1,1,12,13],[475,1,1,13,14]]],[18,10,10,14,24,[[495,1,1,14,15],[504,1,1,15,16],[508,1,1,16,17],[509,1,1,17,18],[538,1,1,18,19],[558,1,1,19,20],[568,1,1,20,21],[578,1,1,21,22],[596,1,1,22,23],[616,1,1,23,24]]],[19,3,3,24,27,[[636,1,1,24,25],[648,1,1,25,26],[652,1,1,26,27]]],[21,1,1,27,28,[[672,1,1,27,28]]],[22,5,5,28,33,[[694,1,1,28,29],[706,1,1,29,30],[710,1,1,30,31],[723,1,1,31,32],[726,1,1,32,33]]],[23,3,3,33,36,[[781,1,1,33,34],[782,1,1,34,35],[784,1,1,35,36]]]],[5278,5600,5609,5668,5796,6587,7708,7881,8298,13163,13403,13451,13615,13885,14129,14290,14351,14362,14823,15224,15396,15518,16012,16254,16655,16998,17136,17568,17973,18181,18261,18580,18630,19891,19911,19956]]],["+",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13451]]],["backbiting",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17136]]],["covering",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13403]]],["covert",[5,5,[[8,1,1,0,1,[[260,1,1,0,1]]],[17,1,1,1,2,[[475,1,1,1,2]]],[18,1,1,2,3,[[538,1,1,2,3]]],[22,2,2,3,5,[[694,1,1,3,4],[710,1,1,4,5]]]],[7881,13885,14823,17973,18261]]],["place",[6,6,[[18,5,5,0,5,[[495,1,1,0,1],[509,1,1,1,2],[558,1,1,2,3],[568,1,1,3,4],[596,1,1,4,5]]],[22,1,1,5,6,[[706,1,1,5,6]]]],[14129,14362,15224,15396,16012,18181]]],["privily",[1,1,[[18,1,1,0,1,[[578,1,1,0,1]]]],[15518]]],["protection",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5796]]],["secret",[11,11,[[4,1,1,0,1,[[179,1,1,0,1]]],[6,1,1,1,2,[[213,1,1,1,2]]],[8,1,1,2,3,[[254,1,1,2,3]]],[18,3,3,3,6,[[504,1,1,3,4],[508,1,1,4,5],[616,1,1,5,6]]],[19,2,2,6,8,[[636,1,1,6,7],[648,1,1,7,8]]],[21,1,1,8,9,[[672,1,1,8,9]]],[22,2,2,9,11,[[723,1,1,9,10],[726,1,1,10,11]]]],[5600,6587,7708,14290,14351,16254,16655,16998,17568,18580,18630]]],["secretly",[9,9,[[4,3,3,0,3,[[165,1,1,0,1],[179,1,1,1,2],[180,1,1,2,3]]],[9,1,1,3,4,[[278,1,1,3,4]]],[17,2,2,4,6,[[448,1,1,4,5],[466,1,1,5,6]]],[23,3,3,6,9,[[781,1,1,6,7],[782,1,1,7,8],[784,1,1,8,9]]]],[5278,5609,5668,8298,13163,13615,19891,19911,19956]]]]},{"k":"H5644","v":[["Zithri",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1677]]]]},{"k":"H5645","v":[["*",[32,32,[[1,1,1,0,1,[[68,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[9,2,2,2,4,[[288,1,1,2,3],[289,1,1,3,4]]],[10,2,2,4,6,[[308,2,2,4,6]]],[17,8,8,6,14,[[455,1,1,6,7],[457,1,1,7,8],[461,1,1,8,9],[465,1,1,9,10],[471,1,1,10,11],[472,2,2,11,13],[473,1,1,13,14]]],[18,5,5,14,19,[[495,2,2,14,16],[554,1,1,16,17],[581,1,1,17,18],[624,1,1,18,19]]],[19,1,1,19,20,[[643,1,1,19,20]]],[20,3,3,20,23,[[669,2,2,20,22],[670,1,1,22,23]]],[22,7,7,23,30,[[683,1,1,23,24],[692,1,1,24,25],[696,1,1,25,26],[697,1,1,26,27],[703,1,1,27,28],[722,1,1,28,29],[738,1,1,29,30]]],[23,1,1,30,31,[[748,1,1,30,31]]],[25,1,1,31,32,[[842,1,1,31,32]]]],[2035,6627,8614,8657,9385,9386,13332,13403,13475,13572,13765,13780,13785,13827,14129,14130,15110,15574,16359,16855,17516,17517,17525,17745,17942,18001,18005,18123,18555,18829,19056,21551]]],["cloud",[9,9,[[10,1,1,0,1,[[308,1,1,0,1]]],[17,2,2,1,3,[[465,1,1,1,2],[472,1,1,2,3]]],[19,1,1,3,4,[[643,1,1,3,4]]],[22,5,5,4,9,[[696,1,1,4,5],[697,1,1,5,6],[703,1,1,6,7],[722,1,1,7,8],[738,1,1,8,9]]]],[9385,13572,13780,16855,18001,18005,18123,18555,18829]]],["clouds",[20,20,[[6,1,1,0,1,[[215,1,1,0,1]]],[9,2,2,1,3,[[288,1,1,1,2],[289,1,1,2,3]]],[10,1,1,3,4,[[308,1,1,3,4]]],[17,6,6,4,10,[[455,1,1,4,5],[457,1,1,5,6],[461,1,1,6,7],[471,1,1,7,8],[472,1,1,8,9],[473,1,1,9,10]]],[18,5,5,10,15,[[495,2,2,10,12],[554,1,1,12,13],[581,1,1,13,14],[624,1,1,14,15]]],[20,3,3,15,18,[[669,2,2,15,17],[670,1,1,17,18]]],[22,2,2,18,20,[[683,1,1,18,19],[692,1,1,19,20]]]],[6627,8614,8657,9386,13332,13403,13475,13765,13785,13827,14129,14130,15110,15574,16359,17516,17517,17525,17745,17942]]],["thick",[2,2,[[1,1,1,0,1,[[68,1,1,0,1]]],[25,1,1,1,2,[[842,1,1,1,2]]]],[2035,21551]]],["thickets",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19056]]]]},{"k":"H5646","v":[["*",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[25,1,1,1,2,[[842,1,1,1,2]]]],[8940,21552]]],["beam",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8940]]],["planks",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21552]]]]},{"k":"H5647","v":[["*",[288,261,[[0,23,22,0,22,[[1,2,2,0,2],[2,1,1,2,3],[3,2,2,3,5],[13,1,1,5,6],[14,2,2,6,8],[24,1,1,8,9],[26,2,2,9,11],[28,6,6,11,17],[29,3,2,17,19],[30,2,2,19,21],[48,1,1,21,22]]],[1,31,29,22,51,[[50,2,2,22,24],[52,1,1,24,25],[53,1,1,25,26],[54,1,1,26,27],[55,1,1,27,28],[56,1,1,28,29],[57,2,2,29,31],[58,2,2,31,33],[59,7,6,33,39],[61,1,1,39,40],[62,1,1,40,41],[63,3,2,41,43],[69,2,2,43,45],[70,2,2,45,47],[72,3,3,47,50],[83,1,1,50,51]]],[2,3,3,51,54,[[114,3,3,51,54]]],[3,21,21,54,75,[[119,2,2,54,56],[120,7,7,56,63],[123,1,1,63,64],[124,6,6,64,70],[132,1,1,70,71],[134,4,4,71,75]]],[4,35,35,75,110,[[156,2,2,75,77],[157,2,2,77,79],[158,1,1,79,80],[159,2,2,80,82],[160,1,1,82,83],[162,2,2,83,85],[163,2,2,85,87],[164,2,2,87,89],[165,4,4,89,93],[167,3,3,93,96],[169,1,1,96,97],[172,1,1,97,98],[173,2,2,98,100],[180,6,6,100,106],[181,2,2,106,108],[182,1,1,108,109],[183,1,1,109,110]]],[5,21,16,110,126,[[202,1,1,110,111],[208,2,2,111,113],[209,2,2,113,115],[210,16,11,115,126]]],[6,17,14,126,140,[[212,4,4,126,130],[213,4,4,130,134],[219,4,2,134,136],[220,5,4,136,140]]],[8,13,11,140,151,[[239,2,1,140,141],[242,2,2,141,143],[243,1,1,143,144],[246,1,1,144,145],[247,5,4,145,149],[252,1,1,149,150],[261,1,1,150,151]]],[9,6,5,151,156,[[275,1,1,151,152],[276,1,1,152,153],[281,1,1,153,154],[282,2,1,154,155],[288,1,1,155,156]]],[10,8,8,156,164,[[294,1,1,156,157],[299,3,3,157,160],[302,2,2,160,162],[306,1,1,162,163],[312,1,1,163,164]]],[11,18,14,164,178,[[322,8,5,164,169],[329,5,5,169,174],[330,1,1,174,175],[333,3,2,175,177],[337,1,1,177,178]]],[12,2,2,178,180,[[356,1,1,178,179],[365,1,1,179,180]]],[13,12,11,180,191,[[368,1,1,180,181],[373,2,2,181,183],[376,1,1,183,184],[390,1,1,184,185],[396,1,1,185,186],[399,3,3,186,189],[400,2,1,189,190],[401,1,1,190,191]]],[15,1,1,191,192,[[421,1,1,191,192]]],[17,3,3,192,195,[[456,1,1,192,193],[471,1,1,193,194],[474,1,1,194,195]]],[18,8,8,195,203,[[479,1,1,195,196],[495,1,1,196,197],[499,1,1,197,198],[549,1,1,198,199],[574,1,1,199,200],[577,1,1,200,201],[579,1,1,201,202],[583,1,1,202,203]]],[19,2,2,203,205,[[639,1,1,203,204],[655,1,1,204,205]]],[20,2,2,205,207,[[663,2,2,205,207]]],[22,9,9,207,216,[[692,1,1,207,208],[697,3,3,208,211],[706,1,1,211,212],[708,1,1,212,213],[721,2,2,213,215],[738,1,1,215,216]]],[23,35,30,216,246,[[749,2,1,216,217],[752,1,1,217,218],[755,1,1,218,219],[757,1,1,219,220],[760,2,2,220,222],[761,1,1,222,223],[766,2,2,223,225],[769,3,3,225,228],[771,11,9,228,237],[772,2,1,237,238],[774,2,2,238,240],[778,3,3,240,243],[779,1,1,243,244],[784,2,1,244,245],[788,1,1,245,246]]],[25,11,9,246,255,[[821,2,2,246,248],[830,3,2,248,250],[835,1,1,250,251],[837,2,2,251,253],[849,3,2,253,255]]],[27,1,1,255,256,[[873,1,1,255,256]]],[35,1,1,256,257,[[908,1,1,256,257]]],[37,1,1,257,258,[[923,1,1,257,258]]],[38,4,3,258,261,[[927,4,3,258,261]]]],[35,45,78,81,91,340,373,374,681,756,767,810,813,815,820,822,825,856,859,879,914,1488,1545,1546,1591,1624,1650,1660,1701,1711,1730,1743,1755,1780,1784,1785,1788,1801,1803,1847,1872,1894,1901,2056,2060,2079,2083,2168,2169,2177,2517,3508,3509,3515,3699,3700,3766,3767,3769,3773,3780,3784,3790,3855,3950,3954,3958,3961,3964,3965,4203,4263,4264,4278,4280,5023,5032,5062,5066,5099,5115,5127,5156,5198,5206,5221,5224,5242,5270,5274,5276,5278,5285,5331,5337,5338,5367,5438,5450,5451,5625,5647,5650,5658,5659,5675,5697,5705,5725,5748,6275,6431,6453,6467,6476,6478,6490,6491,6492,6494,6495,6496,6497,6498,6500,6507,6552,6556,6558,6564,6574,6575,6576,6582,6782,6792,6817,6821,6824,6827,7306,7355,7356,7377,7446,7470,7474,7480,7484,7627,7924,8237,8259,8397,8445,8646,8865,9057,9060,9072,9155,9158,9314,9533,9811,9812,9814,9815,9816,9995,9999,10016,10018,10024,10031,10122,10140,10246,10926,11152,11229,11343,11346,11399,11695,11835,11911,11924,11930,11966,11969,12546,13370,13747,13843,13956,14161,14234,15011,15485,15510,15543,15687,16730,17215,17406,17409,17931,18013,18025,18027,18185,18241,18528,18529,18833,19077,19155,19236,19276,19347,19349,19361,19463,19467,19540,19545,19548,19602,19603,19604,19605,19607,19608,19609,19610,19613,19632,19675,19676,19810,19811,19815,19838,19950,20013,20934,20935,21201,21203,21340,21368,21393,21720,21721,22264,22829,23064,23134,23137,23138]]],["+",[89,85,[[0,5,5,0,5,[[1,1,1,0,1],[2,1,1,1,2],[3,1,1,2,3],[13,1,1,3,4],[30,1,1,4,5]]],[1,14,12,5,17,[[52,1,1,5,6],[59,6,5,6,11],[61,1,1,11,12],[62,1,1,12,13],[63,3,2,13,15],[72,2,2,15,17]]],[2,1,1,17,18,[[114,1,1,17,18]]],[3,11,11,18,29,[[119,2,2,18,20],[120,1,1,20,21],[123,1,1,21,22],[124,4,4,22,26],[132,1,1,26,27],[134,2,2,27,29]]],[4,6,6,29,35,[[159,1,1,29,30],[162,1,1,30,31],[164,2,2,31,33],[180,1,1,33,34],[181,1,1,34,35]]],[5,7,6,35,41,[[208,1,1,35,36],[210,6,5,36,41]]],[6,10,10,41,51,[[212,2,2,41,43],[213,4,4,43,47],[219,1,1,47,48],[220,3,3,48,51]]],[8,4,4,51,55,[[239,1,1,51,52],[242,1,1,52,53],[247,2,2,53,55]]],[9,2,2,55,57,[[275,1,1,55,56],[281,1,1,56,57]]],[10,4,4,57,61,[[294,1,1,57,58],[299,1,1,58,59],[306,1,1,59,60],[312,1,1,60,61]]],[11,5,5,61,66,[[322,1,1,61,62],[329,2,2,62,64],[333,1,1,64,65],[337,1,1,65,66]]],[13,5,5,66,71,[[368,1,1,66,67],[390,1,1,67,68],[396,1,1,68,69],[399,1,1,69,70],[400,1,1,70,71]]],[18,3,3,71,74,[[479,1,1,71,72],[579,1,1,72,73],[583,1,1,73,74]]],[23,11,10,74,84,[[760,1,1,74,75],[761,1,1,75,76],[769,1,1,76,77],[771,4,4,77,81],[772,1,1,81,82],[774,1,1,82,83],[784,2,1,83,84]]],[37,1,1,84,85,[[923,1,1,84,85]]]],[35,78,91,340,879,1591,1784,1785,1788,1801,1803,1847,1872,1894,1901,2169,2177,3509,3699,3700,3773,3855,3950,3954,3958,3961,4203,4263,4280,5127,5198,5242,5270,5659,5697,6453,6491,6494,6495,6497,6507,6552,6556,6574,6575,6576,6582,6782,6817,6821,6827,7306,7356,7470,7480,8237,8397,8865,9072,9314,9533,9811,9999,10016,10140,10246,11229,11695,11835,11924,11966,13956,15543,15687,19349,19361,19545,19605,19609,19610,19613,19632,19676,19950,23064]]],["Serve",[1,1,[[18,1,1,0,1,[[577,1,1,0,1]]]],[15510]]],["been",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7306]]],["bondage",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1660]]],["bondmen",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3515]]],["do",[4,4,[[3,3,3,0,3,[[120,2,2,0,2],[124,1,1,2,3]]],[22,1,1,3,4,[[697,1,1,3,4]]]],[3766,3790,3965,18025]]],["done",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[856]]],["dress",[2,2,[[0,1,1,0,1,[[1,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]]],[45,5650]]],["ear",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18241]]],["eared",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5451]]],["labour",[2,2,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,1,1,1,2,[[157,1,1,1,2]]]],[2060,5066]]],["man",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17409]]],["pass",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18185]]],["servant",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1488]]],["servants",[2,2,[[11,1,1,0,1,[[322,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]]],[9812,10926]]],["serve",[118,114,[[0,9,9,0,9,[[14,2,2,0,2],[24,1,1,2,3],[26,2,2,3,5],[28,4,4,5,9]]],[1,13,13,9,22,[[50,2,2,9,11],[53,1,1,11,12],[56,1,1,12,13],[57,2,2,13,15],[58,2,2,15,17],[59,1,1,17,18],[69,1,1,18,19],[70,2,2,19,21],[72,1,1,21,22]]],[2,1,1,22,23,[[114,1,1,22,23]]],[3,5,5,23,28,[[120,2,2,23,25],[124,1,1,25,26],[134,2,2,26,28]]],[4,20,20,28,48,[[156,2,2,28,30],[157,1,1,30,31],[158,1,1,31,32],[159,1,1,32,33],[160,1,1,33,34],[162,1,1,34,35],[163,2,2,35,37],[165,4,4,37,41],[167,1,1,41,42],[172,1,1,42,43],[180,3,3,43,46],[182,1,1,46,47],[183,1,1,47,48]]],[5,10,9,48,57,[[202,1,1,48,49],[208,1,1,49,50],[209,1,1,50,51],[210,7,6,51,57]]],[6,4,3,57,60,[[212,1,1,57,58],[219,3,2,58,60]]],[8,7,7,60,67,[[242,1,1,60,61],[246,1,1,61,62],[247,3,3,62,65],[252,1,1,65,66],[261,1,1,66,67]]],[9,2,2,67,69,[[282,1,1,67,68],[288,1,1,68,69]]],[10,3,3,69,72,[[299,1,1,69,70],[302,2,2,70,72]]],[11,2,2,72,74,[[322,1,1,72,73],[329,1,1,73,74]]],[12,1,1,74,75,[[365,1,1,74,75]]],[13,4,4,75,79,[[373,1,1,75,76],[376,1,1,76,77],[400,1,1,77,78],[401,1,1,78,79]]],[17,3,3,79,82,[[456,1,1,79,80],[471,1,1,80,81],[474,1,1,81,82]]],[18,4,4,82,86,[[495,1,1,82,83],[499,1,1,83,84],[549,1,1,84,85],[574,1,1,85,86]]],[22,5,5,86,91,[[692,1,1,86,87],[697,1,1,87,88],[721,2,2,88,90],[738,1,1,90,91]]],[23,17,16,91,107,[[749,1,1,91,92],[755,1,1,92,93],[757,1,1,93,94],[769,2,2,94,96],[771,6,5,96,101],[772,1,1,101,102],[774,1,1,102,103],[778,2,2,103,105],[779,1,1,105,106],[788,1,1,106,107]]],[25,6,5,107,112,[[821,2,2,107,109],[830,1,1,109,110],[849,3,2,110,112]]],[35,1,1,112,113,[[908,1,1,112,113]]],[38,1,1,113,114,[[927,1,1,113,114]]]],[373,374,681,756,767,810,813,820,822,1545,1546,1624,1701,1711,1730,1743,1755,1780,2056,2079,2083,2168,3508,3767,3769,3964,4264,4278,5023,5032,5062,5099,5115,5156,5206,5221,5224,5274,5276,5278,5285,5331,5438,5625,5647,5675,5725,5748,6275,6431,6467,6490,6491,6492,6496,6498,6500,6564,6782,6792,7355,7446,7470,7474,7484,7627,7924,8445,8646,9057,9155,9158,9811,10018,11152,11343,11399,11966,11969,13370,13747,13843,14161,14234,15011,15485,17931,18027,18528,18529,18833,19077,19236,19276,19540,19548,19602,19603,19604,19607,19608,19632,19675,19810,19811,19838,20013,20934,20935,21201,21720,21721,22829,23134]]],["served",[37,37,[[0,5,5,0,5,[[28,2,2,0,2],[29,2,2,2,4],[30,1,1,4,5]]],[4,2,2,5,7,[[169,1,1,5,6],[181,1,1,6,7]]],[5,4,4,7,11,[[209,1,1,7,8],[210,3,3,8,11]]],[6,3,3,11,14,[[212,1,1,11,12],[220,2,2,12,14]]],[8,1,1,14,15,[[243,1,1,14,15]]],[9,2,2,15,17,[[276,1,1,15,16],[282,1,1,16,17]]],[10,1,1,17,18,[[299,1,1,17,18]]],[11,5,5,18,23,[[329,2,2,18,20],[330,1,1,20,21],[333,2,2,21,23]]],[13,3,3,23,26,[[373,1,1,23,24],[399,2,2,24,26]]],[15,1,1,26,27,[[421,1,1,26,27]]],[20,1,1,27,28,[[663,1,1,27,28]]],[23,5,5,28,33,[[749,1,1,28,29],[752,1,1,29,30],[760,1,1,30,31],[766,1,1,31,32],[778,1,1,32,33]]],[25,3,3,33,36,[[830,2,2,33,35],[835,1,1,35,36]]],[27,1,1,36,37,[[873,1,1,36,37]]]],[815,825,856,859,914,5367,5705,6476,6478,6490,6491,6558,6817,6824,7377,8259,8445,9060,9995,10024,10031,10122,10140,11346,11911,11930,12546,17406,19077,19155,19347,19463,19815,21201,21203,21340,22264]]],["servedst",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5658]]],["serveth",[3,2,[[38,3,2,0,2,[[927,3,2,0,2]]]],[23137,23138]]],["service",[3,3,[[3,2,2,0,2,[[120,2,2,0,2]]],[23,1,1,2,3,[[766,1,1,2,3]]]],[3780,3784,19467]]],["serving",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5337]]],["till",[1,1,[[23,1,1,0,1,[[771,1,1,0,1]]]],[19607]]],["tilled",[2,2,[[25,2,2,0,2,[[837,2,2,0,2]]]],[21368,21393]]],["tiller",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[81]]],["tilleth",[2,2,[[19,2,2,0,2,[[639,1,1,0,1],[655,1,1,1,2]]]],[16730,17215]]],["work",[4,4,[[1,2,2,0,2,[[54,1,1,0,1],[83,1,1,1,2]]],[4,1,1,2,3,[[167,1,1,2,3]]],[22,1,1,3,4,[[697,1,1,3,4]]]],[1650,2517,5338,18013]]],["worshippers",[5,4,[[11,5,4,0,4,[[322,5,4,0,4]]]],[9812,9814,9815,9816]]],["wrought",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5450]]]]},{"k":"H5648","v":[["*",[28,25,[[14,15,13,0,13,[[406,3,3,0,3],[407,1,1,3,4],[408,5,5,4,9],[409,6,4,9,13]]],[23,1,1,13,14,[[754,1,1,13,14]]],[26,12,11,14,25,[[851,1,1,14,15],[852,3,3,15,18],[853,3,2,18,20],[854,1,1,20,21],[855,3,3,21,24],[856,1,1,24,25]]]],[12125,12129,12132,12142,12159,12162,12163,12164,12167,12191,12194,12196,12199,19212,21763,21808,21822,21836,21839,21872,21875,21915,21927,21932,21954]]],["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21915]]],["cut",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21763,21836]]],["did",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12164]]],["do",[5,4,[[14,5,4,0,4,[[406,1,1,0,1],[408,1,1,1,2],[409,3,2,2,4]]]],[12132,12159,12191,12199]]],["doest",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21872]]],["doeth",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21872]]],["done",[4,4,[[14,3,3,0,3,[[408,1,1,0,1],[409,2,2,1,3]]],[26,1,1,3,4,[[855,1,1,3,4]]]],[12163,12194,12196,21927]]],["executed",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12199]]],["goeth",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12142]]],["kept",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12167]]],["made",[7,7,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]],[23,1,1,2,3,[[754,1,1,2,3]]],[26,4,4,3,7,[[852,2,2,3,5],[854,1,1,5,6],[856,1,1,6,7]]]],[12129,12162,19212,21808,21822,21875,21954]]],["moved",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12125]]],["worketh",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21932]]],["wrought",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21839]]]]},{"k":"H5649","v":[["*",[7,7,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,5,5,2,7,[[851,2,2,2,4],[852,2,2,4,6],[855,1,1,6,7]]]],[12121,12145,21762,21765,21833,21835,21925]]],["servant",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21925]]],["servants",[6,6,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,4,4,2,6,[[851,2,2,2,4],[852,2,2,4,6]]]],[12121,12145,21762,21765,21833,21835]]]]},{"k":"H5650","v":[["*",[798,712,[[0,88,78,0,78,[[8,4,3,0,3],[11,1,1,3,4],[13,1,1,4,5],[17,2,2,5,7],[18,2,2,7,9],[19,2,2,9,11],[20,1,1,11,12],[23,15,14,12,26],[25,5,5,26,31],[26,1,1,31,32],[29,1,1,32,33],[31,7,6,33,39],[32,2,2,39,41],[38,2,2,41,43],[39,2,1,43,44],[40,4,4,44,48],[41,3,3,48,51],[42,2,2,51,53],[43,20,15,53,68],[44,1,1,68,69],[45,1,1,69,70],[46,5,4,70,74],[49,4,4,74,78]]],[1,43,41,78,119,[[53,1,1,78,79],[54,4,3,79,82],[56,2,2,82,84],[57,8,8,84,92],[58,6,5,92,97],[59,3,3,97,100],[60,2,2,100,102],[61,2,2,102,104],[62,2,2,104,106],[63,2,2,106,108],[69,3,3,108,111],[70,7,7,111,118],[81,1,1,118,119]]],[2,9,6,119,125,[[114,8,5,119,124],[115,1,1,124,125]]],[3,11,11,125,136,[[127,1,1,125,126],[128,2,2,126,128],[130,1,1,128,129],[138,1,1,129,130],[147,1,1,130,131],[148,5,5,131,136]]],[4,29,28,136,164,[[155,1,1,136,137],[157,5,4,137,141],[158,2,2,141,143],[159,1,1,143,144],[160,1,1,144,145],[161,1,1,145,146],[164,2,2,146,148],[165,2,2,148,150],[167,2,2,150,152],[168,3,3,152,155],[175,1,1,155,156],[176,2,2,156,158],[180,1,1,158,159],[181,1,1,159,160],[184,2,2,160,162],[186,2,2,162,164]]],[5,27,25,164,189,[[187,5,5,164,169],[191,1,1,169,170],[194,2,2,170,172],[195,6,5,172,177],[196,1,1,177,178],[197,2,2,178,180],[198,2,1,180,181],[199,1,1,181,182],[200,1,1,182,183],[204,1,1,183,184],[208,3,3,184,187],[210,2,2,187,189]]],[6,6,6,189,195,[[212,1,1,189,190],[213,1,1,190,191],[216,2,2,191,193],[225,1,1,193,194],[229,1,1,194,195]]],[8,62,55,195,250,[[238,2,2,195,197],[243,4,4,197,201],[247,1,1,201,202],[251,3,3,202,205],[252,7,6,205,211],[253,7,6,211,217],[254,2,2,217,219],[255,3,2,219,221],[256,3,3,221,224],[257,8,7,224,231],[258,3,2,231,233],[260,6,5,233,238],[261,2,2,238,240],[262,2,2,240,242],[263,5,4,242,246],[264,3,3,246,249],[265,1,1,249,250]]],[9,106,85,250,335,[[268,6,6,250,256],[269,3,3,256,259],[272,1,1,259,260],[273,12,10,260,270],[274,4,4,270,274],[275,9,6,274,280],[276,5,4,280,284],[277,9,7,284,291],[278,4,3,291,294],[279,6,4,294,298],[280,7,5,298,303],[281,10,7,303,310],[282,2,2,310,312],[283,1,1,312,313],[284,4,3,313,316],[285,17,13,316,329],[286,1,1,329,330],[287,2,2,330,332],[290,3,3,332,335]]],[10,76,65,335,400,[[291,9,8,335,343],[292,5,3,343,346],[293,5,5,346,351],[295,5,3,351,354],[298,15,14,354,368],[299,4,2,368,370],[300,3,3,370,373],[301,8,8,373,381],[302,2,1,381,382],[304,2,2,382,384],[305,2,2,384,386],[306,1,1,386,387],[308,3,3,387,390],[310,9,8,390,398],[312,3,2,398,400]]],[11,58,53,400,453,[[313,1,1,400,401],[314,1,1,401,402],[315,1,1,402,403],[316,3,1,403,404],[317,9,7,404,411],[318,4,4,411,415],[319,2,2,415,417],[320,2,2,417,419],[321,5,4,419,423],[322,3,3,423,426],[324,2,2,426,428],[326,2,2,428,430],[328,1,1,430,431],[329,3,3,431,434],[330,3,3,434,437],[331,2,2,437,439],[332,1,1,439,440],[333,3,3,440,443],[334,2,2,443,445],[335,1,1,445,446],[336,5,5,446,451],[337,2,2,451,453]]],[12,27,25,453,478,[[339,2,2,453,455],[343,1,1,455,456],[353,1,1,456,457],[354,12,10,457,467],[355,4,4,467,471],[356,4,4,471,475],[357,1,1,475,476],[358,2,2,476,478]]],[13,44,37,478,515,[[367,1,1,478,479],[368,5,3,479,482],[372,11,10,482,492],[374,4,2,492,494],[375,6,5,494,499],[376,1,1,499,500],[378,1,1,500,501],[379,1,1,501,502],[390,3,3,502,505],[391,1,1,505,506],[394,1,1,506,507],[398,3,2,507,509],[399,1,1,509,510],[400,2,2,510,512],[401,2,2,512,514],[402,1,1,514,515]]],[14,5,5,515,520,[[404,3,3,515,518],[411,2,2,518,520]]],[15,22,18,520,538,[[413,8,5,520,525],[414,4,4,525,529],[417,1,1,529,530],[419,3,3,530,533],[421,4,3,533,536],[422,1,1,536,537],[423,1,1,537,538]]],[16,7,7,538,545,[[426,1,1,538,539],[427,1,1,539,540],[428,2,2,540,542],[429,1,1,542,543],[430,1,1,543,544],[432,1,1,544,545]]],[17,12,10,545,555,[[436,1,1,545,546],[437,1,1,546,547],[438,1,1,547,548],[439,1,1,548,549],[442,1,1,549,550],[454,1,1,550,551],[466,1,1,551,552],[476,1,1,552,553],[477,4,2,553,555]]],[18,55,54,555,609,[[496,2,2,555,557],[504,1,1,557,558],[508,1,1,558,559],[511,1,1,559,560],[512,1,1,560,561],[546,2,2,561,563],[555,1,1,563,564],[556,2,2,564,566],[563,3,3,566,569],[566,4,4,569,573],[567,2,2,573,575],[579,2,2,575,577],[582,5,5,577,582],[586,1,1,582,583],[590,1,1,583,584],[593,2,1,584,585],[596,14,14,585,599],[600,1,1,599,600],[609,1,1,600,601],[611,1,1,601,602],[612,3,3,602,605],[613,1,1,605,606],[620,2,2,606,608],[621,1,1,608,609]]],[19,10,10,609,619,[[638,1,1,609,610],[639,1,1,610,611],[641,1,1,611,612],[644,1,1,612,613],[646,1,1,613,614],[649,1,1,614,615],[656,2,2,615,617],[657,2,2,617,619]]],[20,4,3,619,622,[[660,1,1,619,620],[665,1,1,620,621],[668,2,1,621,622]]],[22,40,36,622,658,[[692,1,1,622,623],[698,1,1,623,624],[700,1,1,624,625],[702,1,1,625,626],[714,2,2,626,628],[715,3,3,628,631],[719,2,2,631,633],[720,3,2,633,635],[721,1,1,635,636],[722,5,4,636,640],[723,1,1,640,641],[726,1,1,641,642],[727,4,4,642,646],[728,1,1,646,647],[730,1,1,647,648],[731,1,1,648,649],[732,1,1,649,650],[734,1,1,650,651],[741,1,1,651,652],[743,7,5,652,657],[744,1,1,657,658]]],[23,32,30,658,688,[[746,1,1,658,659],[751,1,1,659,660],[765,1,1,660,661],[766,2,2,661,663],[769,3,3,663,666],[770,1,1,666,667],[771,1,1,667,668],[773,1,1,668,669],[774,1,1,669,670],[777,3,3,670,673],[778,7,5,673,678],[779,1,1,678,679],[780,2,2,679,681],[781,2,2,681,683],[787,1,1,683,684],[788,1,1,684,685],[790,3,3,685,688]]],[24,1,1,688,689,[[801,1,1,688,689]]],[25,8,7,689,696,[[829,1,1,689,690],[835,2,2,690,692],[838,3,2,692,694],[839,1,1,694,695],[847,1,1,695,696]]],[26,7,7,696,703,[[850,2,2,696,698],[858,4,4,698,702],[859,1,1,702,703]]],[28,1,1,703,704,[[877,1,1,703,704]]],[29,1,1,704,705,[[881,1,1,704,705]]],[32,1,1,705,706,[[898,1,1,705,706]]],[36,1,1,706,707,[[910,1,1,706,707]]],[37,3,3,707,710,[[911,1,1,707,708],[912,1,1,708,709],[913,1,1,709,710]]],[38,2,2,710,712,[[925,1,1,710,711],[928,1,1,711,712]]]],[230,231,232,314,351,427,429,459,476,503,509,538,593,596,600,601,605,608,625,626,643,644,650,652,656,657,707,711,716,717,724,764,873,932,933,938,944,946,948,965,974,1166,1168,1192,1205,1207,1232,1233,1262,1263,1265,1308,1318,1331,1333,1334,1340,1341,1342,1343,1345,1347,1348,1351,1354,1355,1356,1357,1374,1420,1423,1424,1439,1445,1508,1513,1523,1524,1611,1647,1648,1653,1695,1705,1713,1714,1719,1721,1731,1734,1739,1741,1756,1762,1763,1772,1776,1778,1783,1784,1809,1814,1846,1860,1870,1881,1894,1920,2053,2061,2068,2079,2082,2084,2097,2103,2104,2109,2451,3475,3508,3511,3513,3524,3537,4035,4066,4067,4132,4393,4713,4722,4723,4743,4745,4749,4999,5059,5067,5068,5074,5098,5107,5119,5151,5184,5252,5258,5277,5282,5334,5336,5353,5354,5356,5515,5543,5547,5679,5681,5794,5801,5844,5850,5852,5853,5858,5864,5866,5948,6033,6035,6045,6046,6048,6060,6061,6070,6119,6122,6136,6162,6194,6300,6428,6430,6431,6493,6505,6553,6592,6662,6681,6947,7043,7285,7286,7383,7384,7385,7386,7479,7610,7611,7612,7626,7627,7650,7652,7654,7676,7681,7698,7699,7700,7702,7706,7707,7710,7737,7738,7779,7783,7786,7793,7794,7795,7796,7801,7802,7804,7820,7821,7869,7871,7900,7901,7902,7923,7924,7935,7942,7944,7949,7965,7967,7970,7975,7977,7991,8061,8062,8064,8066,8079,8080,8099,8103,8119,8177,8185,8188,8199,8200,8201,8205,8206,8207,8208,8209,8211,8215,8216,8223,8229,8233,8235,8237,8238,8239,8242,8243,8244,8259,8260,8268,8270,8272,8276,8280,8283,8304,8305,8307,8341,8348,8352,8353,8375,8376,8378,8386,8387,8391,8397,8403,8404,8407,8410,8423,8432,8437,8469,8485,8487,8507,8516,8517,8518,8525,8528,8530,8531,8537,8538,8539,8546,8547,8548,8560,8595,8602,8702,8712,8713,8719,8726,8736,8743,8744,8750,8764,8768,8808,8809,8810,8822,8823,8824,8825,8831,8879,8884,8887,9008,9009,9010,9011,9013,9014,9015,9017,9021,9037,9038,9041,9044,9051,9073,9078,9084,9087,9092,9119,9121,9125,9134,9140,9142,9144,9146,9158,9226,9236,9267,9278,9292,9350,9353,9377,9414,9417,9420,9431,9439,9440,9447,9448,9483,9529,9546,9567,9587,9604,9653,9660,9662,9664,9665,9672,9673,9677,9682,9685,9686,9719,9720,9740,9746,9763,9767,9784,9792,9798,9803,9816,9870,9871,9901,9921,9970,9986,9996,10006,10036,10048,10050,10066,10095,10104,10127,10129,10142,10154,10157,10195,10203,10204,10212,10213,10214,10230,10246,10340,10341,10503,10833,10867,10870,10880,10881,10882,10886,10887,10888,10889,10890,10892,10896,10897,10903,10909,10910,10911,10926,10934,10937,10942,11197,11219,11221,11226,11296,11297,11298,11299,11301,11302,11303,11305,11309,11324,11355,11364,11368,11371,11374,11376,11385,11402,11445,11459,11683,11686,11702,11707,11774,11884,11891,11932,11949,11953,11989,11990,12013,12082,12085,12092,12246,12248,12302,12303,12304,12306,12307,12312,12317,12326,12327,12387,12477,12480,12487,12521,12525,12547,12578,12591,12705,12742,12749,12750,12773,12790,12811,12877,12894,12923,12948,13010,13313,13601,13892,13929,13930,14179,14181,14294,14347,14410,14437,14952,14971,15183,15187,15195,15286,15288,15300,15329,15346,15365,15376,15391,15394,15535,15549,15612,15623,15631,15632,15648,15783,15814,15864,15915,15921,15936,15947,15963,15974,15982,15989,16020,16022,16023,16033,16038,16074,16100,16161,16173,16176,16184,16189,16218,16295,16305,16315,16717,16728,16807,16875,16935,17022,17243,17245,17261,17273,17340,17450,17500,17930,18032,18072,18097,18339,18341,18357,18376,18387,18459,18460,18481,18499,18515,18534,18535,18554,18559,18565,18634,18639,18641,18642,18643,18672,18709,18722,18740,18759,18883,18905,18906,18910,18911,18912,18936,18979,19144,19447,19456,19458,19538,19543,19553,19577,19602,19654,19677,19796,19797,19801,19810,19811,19812,19814,19817,19838,19866,19873,19876,19892,20007,20014,20071,20072,20073,20450,21182,21336,21337,21421,21422,21442,21672,21749,21750,21994,21998,21999,22005,22032,22340,22402,22652,22878,22884,22908,22920,23095,23142]]],["+",[35,34,[[0,2,2,0,2,[[43,1,1,0,1],[49,1,1,1,2]]],[1,4,4,2,6,[[57,3,3,2,5],[58,1,1,5,6]]],[2,2,2,6,8,[[114,2,2,6,8]]],[4,1,1,8,9,[[155,1,1,8,9]]],[5,3,2,9,11,[[195,2,1,9,10],[196,1,1,10,11]]],[6,1,1,11,12,[[216,1,1,11,12]]],[8,1,1,12,13,[[256,1,1,12,13]]],[9,4,4,13,17,[[268,2,2,13,15],[277,2,2,15,17]]],[10,4,4,17,21,[[301,4,4,17,21]]],[11,5,5,21,26,[[315,1,1,21,22],[318,1,1,22,23],[319,1,1,23,24],[322,1,1,24,25],[337,1,1,25,26]]],[12,1,1,26,27,[[354,1,1,26,27]]],[13,1,1,27,28,[[400,1,1,27,28]]],[18,2,2,28,30,[[504,1,1,28,29],[546,1,1,29,30]]],[22,3,3,30,33,[[723,1,1,30,31],[741,1,1,31,32],[743,1,1,32,33]]],[25,1,1,33,34,[[847,1,1,33,34]]]],[1333,1508,1721,1739,1741,1762,3508,3511,4999,6061,6070,6681,7779,8064,8079,8276,8283,9121,9125,9140,9142,9587,9686,9720,9816,10246,10882,11949,14294,14952,18565,18883,18905,21672]]],["Servants",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20450]]],["bondage",[10,10,[[1,3,3,0,3,[[62,2,2,0,2],[69,1,1,2,3]]],[4,5,5,3,8,[[157,1,1,3,4],[158,1,1,4,5],[160,1,1,5,6],[165,2,2,6,8]]],[5,1,1,8,9,[[210,1,1,8,9]]],[6,1,1,9,10,[[216,1,1,9,10]]]],[1870,1881,2053,5059,5098,5151,5277,5282,6493,6662]]],["bondman",[5,5,[[0,1,1,0,1,[[43,1,1,0,1]]],[4,4,4,1,5,[[167,1,1,1,2],[168,1,1,2,3],[176,2,2,3,5]]]],[1357,5334,5354,5543,5547]]],["bondmen",[15,14,[[0,2,2,0,2,[[42,1,1,0,1],[43,1,1,1,2]]],[2,3,2,2,4,[[114,2,1,2,3],[115,1,1,3,4]]],[4,3,3,4,7,[[158,1,1,4,5],[159,1,1,5,6],[180,1,1,6,7]]],[5,1,1,7,8,[[195,1,1,7,8]]],[10,1,1,8,9,[[299,1,1,8,9]]],[11,1,1,9,10,[[316,1,1,9,10]]],[13,1,1,10,11,[[394,1,1,10,11]]],[14,1,1,11,12,[[411,1,1,11,12]]],[16,1,1,12,13,[[432,1,1,12,13]]],[23,1,1,13,14,[[778,1,1,13,14]]]],[1308,1333,3513,3537,5107,5119,5679,6060,9073,9604,11774,12246,12811,19814]]],["manservant",[12,11,[[1,3,3,0,3,[[69,2,2,0,2],[70,1,1,2,3]]],[4,6,5,3,8,[[157,3,2,3,5],[164,1,1,5,6],[168,2,2,6,8]]],[17,1,1,8,9,[[466,1,1,8,9]]],[23,2,2,9,11,[[778,2,2,9,11]]]],[2061,2068,2109,5067,5074,5258,5353,5356,13601,19810,19811]]],["manservant's",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2104]]],["manservants",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12487]]],["menservants",[9,9,[[0,5,5,0,5,[[11,1,1,0,1],[19,1,1,1,2],[23,1,1,2,3],[29,1,1,3,4],[31,1,1,4,5]]],[1,1,1,5,6,[[70,1,1,5,6]]],[4,1,1,6,7,[[164,1,1,6,7]]],[8,1,1,7,8,[[243,1,1,7,8]]],[11,1,1,8,9,[[317,1,1,8,9]]]],[314,509,626,873,933,2084,5252,7385,9673]]],["servant",[355,321,[[0,41,39,0,39,[[8,3,3,0,3],[17,2,2,3,5],[18,1,1,5,6],[23,14,13,6,19],[25,1,1,19,20],[31,4,4,20,24],[32,2,2,24,26],[38,2,2,26,28],[40,1,1,28,29],[42,1,1,29,30],[43,10,9,30,39]]],[1,7,7,39,46,[[53,1,1,39,40],[61,1,1,40,41],[63,1,1,41,42],[70,4,4,42,46]]],[2,1,1,46,47,[[114,1,1,46,47]]],[3,4,4,47,51,[[127,1,1,47,48],[128,2,2,48,50],[130,1,1,50,51]]],[4,4,4,51,55,[[157,1,1,51,52],[167,1,1,52,53],[175,1,1,53,54],[186,1,1,54,55]]],[5,19,18,55,73,[[187,5,5,55,60],[191,1,1,60,61],[194,2,2,61,63],[197,2,2,63,65],[198,2,1,65,66],[199,1,1,66,67],[200,1,1,67,68],[204,1,1,68,69],[208,3,3,69,72],[210,1,1,72,73]]],[6,2,2,73,75,[[212,1,1,73,74],[225,1,1,74,75]]],[8,25,22,75,97,[[238,2,2,75,77],[252,4,4,77,81],[254,1,1,81,82],[255,3,2,82,84],[257,3,2,84,86],[258,3,2,86,88],[260,1,1,88,89],[261,2,2,89,91],[262,2,2,91,93],[263,1,1,93,94],[264,2,2,94,96],[265,1,1,96,97]]],[9,49,36,97,133,[[269,1,1,97,98],[273,11,9,98,107],[275,6,4,107,111],[277,2,2,111,113],[279,3,2,113,115],[280,4,3,115,118],[281,6,4,118,122],[284,2,1,122,123],[285,12,8,123,131],[290,2,2,131,133]]],[10,38,36,133,169,[[291,5,4,133,137],[292,1,1,137,138],[293,4,4,138,142],[298,12,11,142,153],[301,4,4,153,157],[302,1,1,157,158],[304,2,2,158,160],[305,1,1,160,161],[306,1,1,161,162],[308,3,3,162,165],[310,4,4,165,169]]],[11,22,19,169,188,[[316,2,1,169,170],[317,7,5,170,175],[320,1,1,175,176],[321,1,1,176,177],[322,1,1,177,178],[326,1,1,178,179],[328,1,1,179,180],[329,1,1,180,181],[330,1,1,181,182],[331,1,1,182,183],[332,1,1,183,184],[333,1,1,184,185],[334,1,1,185,186],[336,1,1,186,187],[337,1,1,187,188]]],[12,15,13,188,201,[[339,2,2,188,190],[343,1,1,190,191],[353,1,1,191,192],[354,10,8,192,200],[358,1,1,200,201]]],[13,14,13,201,214,[[367,1,1,201,202],[372,8,7,202,209],[379,1,1,209,210],[390,2,2,210,212],[398,1,1,212,213],[400,1,1,213,214]]],[15,10,9,214,223,[[413,5,4,214,218],[414,3,3,218,221],[421,1,1,221,222],[422,1,1,222,223]]],[17,10,8,223,231,[[436,1,1,223,224],[437,1,1,224,225],[438,1,1,225,226],[442,1,1,226,227],[454,1,1,227,228],[476,1,1,228,229],[477,4,2,229,231]]],[18,36,35,231,266,[[496,2,2,231,233],[508,1,1,233,234],[512,1,1,234,235],[555,1,1,235,236],[563,3,3,236,239],[566,3,3,239,242],[582,4,4,242,246],[586,1,1,246,247],[593,2,1,247,248],[596,13,13,248,261],[609,1,1,261,262],[613,1,1,262,263],[620,2,2,263,265],[621,1,1,265,266]]],[19,10,10,266,276,[[638,1,1,266,267],[639,1,1,267,268],[641,1,1,268,269],[644,1,1,269,270],[646,1,1,270,271],[649,1,1,271,272],[656,2,2,272,274],[657,2,2,274,276]]],[20,1,1,276,277,[[665,1,1,276,277]]],[22,23,21,277,298,[[698,1,1,277,278],[700,1,1,278,279],[702,1,1,279,280],[715,1,1,280,281],[719,2,2,281,283],[720,3,2,283,285],[721,1,1,285,286],[722,5,4,286,290],[726,1,1,290,291],[727,4,4,291,295],[728,1,1,295,296],[730,1,1,296,297],[731,1,1,297,298]]],[23,11,11,298,309,[[746,1,1,298,299],[769,1,1,299,300],[771,1,1,300,301],[774,1,1,301,302],[777,3,3,302,305],[778,1,1,305,306],[787,1,1,306,307],[790,2,2,307,309]]],[25,6,5,309,314,[[829,1,1,309,310],[835,2,2,310,312],[838,3,2,312,314]]],[26,3,3,314,317,[[858,2,2,314,316],[859,1,1,316,317]]],[36,1,1,317,318,[[910,1,1,317,318]]],[37,1,1,318,319,[[913,1,1,318,319]]],[38,2,2,319,321,[[925,1,1,319,320],[928,1,1,320,321]]]],[230,231,232,427,429,476,593,596,600,601,605,608,625,643,644,650,652,656,657,716,932,938,946,948,965,974,1166,1168,1207,1318,1334,1341,1342,1348,1351,1354,1355,1356,1357,1611,1860,1920,2079,2082,2097,2103,3475,4035,4066,4067,4132,5068,5336,5515,5844,5852,5853,5858,5864,5866,5948,6033,6035,6119,6122,6136,6162,6194,6300,6428,6430,6431,6505,6553,6947,7285,7286,7650,7652,7654,7676,7710,7737,7738,7795,7802,7820,7821,7900,7923,7924,7935,7942,7944,7970,7975,7991,8099,8185,8188,8200,8201,8205,8206,8207,8208,8209,8229,8233,8235,8238,8280,8283,8341,8352,8375,8376,8378,8391,8397,8410,8423,8507,8530,8531,8537,8538,8539,8546,8547,8548,8702,8713,8736,8743,8744,8768,8808,8822,8823,8824,8825,9009,9010,9011,9013,9014,9015,9037,9038,9041,9044,9051,9119,9134,9144,9146,9158,9226,9236,9278,9292,9350,9353,9377,9417,9440,9447,9448,9604,9653,9662,9664,9665,9672,9740,9792,9803,9921,9970,9986,10036,10095,10104,10127,10157,10203,10230,10340,10341,10503,10833,10867,10870,10881,10886,10887,10888,10889,10890,10942,11197,11297,11298,11299,11301,11302,11303,11324,11459,11683,11686,11891,11953,12302,12303,12304,12307,12312,12317,12326,12525,12578,12877,12894,12923,13010,13313,13892,13929,13930,14179,14181,14347,14437,15183,15286,15288,15300,15329,15346,15365,15612,15623,15632,15648,15783,15864,15915,15921,15936,15947,15963,15974,15982,16020,16022,16023,16033,16038,16074,16161,16218,16295,16305,16315,16717,16728,16807,16875,16935,17022,17243,17245,17261,17273,17450,18032,18072,18097,18387,18459,18460,18481,18499,18515,18534,18535,18554,18559,18634,18639,18641,18642,18643,18672,18709,18722,18979,19543,19602,19677,19796,19797,19801,19817,20007,20072,20073,21182,21336,21337,21421,21422,21999,22005,22032,22878,22920,23095,23142]]],["servant's",[4,4,[[0,1,1,0,1,[[18,1,1,0,1]]],[9,1,1,1,2,[[273,1,1,1,2]]],[11,1,1,2,3,[[320,1,1,2,3]]],[12,1,1,3,4,[[354,1,1,3,4]]]],[459,8199,9746,10880]]],["servants",[348,315,[[0,35,31,0,31,[[8,1,1,0,1],[13,1,1,1,2],[19,1,1,2,3],[20,1,1,3,4],[25,4,4,4,8],[26,1,1,8,9],[31,2,1,9,10],[39,2,1,10,11],[40,3,3,11,14],[41,3,3,14,17],[43,7,6,17,23],[44,1,1,23,24],[46,5,4,24,28],[49,3,3,28,31]]],[1,23,22,31,53,[[54,4,3,31,34],[56,2,2,34,36],[57,4,4,36,40],[58,5,5,40,45],[59,3,3,45,48],[60,2,2,48,50],[61,1,1,50,51],[63,1,1,51,52],[81,1,1,52,53]]],[2,3,2,53,55,[[114,3,2,53,55]]],[3,7,7,55,62,[[138,1,1,55,56],[147,1,1,56,57],[148,5,5,57,62]]],[4,5,5,62,67,[[161,1,1,62,63],[181,1,1,63,64],[184,2,2,64,66],[186,1,1,66,67]]],[5,3,3,67,70,[[195,3,3,67,70]]],[6,2,2,70,72,[[213,1,1,70,71],[229,1,1,71,72]]],[8,35,31,72,103,[[243,3,3,72,75],[247,1,1,75,76],[251,3,3,76,79],[252,3,2,79,81],[253,7,6,81,87],[254,1,1,87,88],[256,2,2,88,90],[257,5,5,90,95],[260,5,4,95,99],[263,4,3,99,102],[264,1,1,102,103]]],[9,52,47,103,150,[[268,4,4,103,107],[269,2,2,107,109],[272,1,1,109,110],[274,4,4,110,114],[275,3,2,114,116],[276,5,4,116,120],[277,5,5,120,125],[278,4,3,125,128],[279,3,3,128,131],[280,3,2,131,133],[281,4,3,133,136],[282,2,2,136,138],[283,1,1,138,139],[284,2,2,139,141],[285,5,5,141,146],[286,1,1,146,147],[287,2,2,147,149],[290,1,1,149,150]]],[10,33,26,150,176,[[291,4,4,150,154],[292,4,2,154,156],[293,1,1,156,157],[295,5,3,157,160],[298,3,3,160,163],[299,3,2,163,165],[300,3,3,165,168],[302,1,1,168,169],[305,1,1,169,170],[310,5,4,170,174],[312,3,2,174,176]]],[11,28,27,176,203,[[313,1,1,176,177],[314,1,1,177,178],[317,1,1,178,179],[318,3,3,179,182],[319,1,1,182,183],[321,4,3,183,186],[322,1,1,186,187],[324,2,2,187,189],[326,1,1,189,190],[329,2,2,190,192],[330,2,2,192,194],[331,1,1,194,195],[333,2,2,195,197],[334,1,1,197,198],[335,1,1,198,199],[336,4,4,199,203]]],[12,10,10,203,213,[[355,4,4,203,207],[356,4,4,207,211],[357,1,1,211,212],[358,1,1,212,213]]],[13,28,23,213,236,[[368,5,3,213,216],[372,3,3,216,219],[374,4,2,219,221],[375,6,5,221,226],[376,1,1,226,227],[378,1,1,227,228],[390,1,1,228,229],[391,1,1,229,230],[398,2,2,230,232],[399,1,1,232,233],[401,2,2,233,235],[402,1,1,235,236]]],[14,4,4,236,240,[[404,3,3,236,239],[411,1,1,239,240]]],[15,11,10,240,250,[[413,3,3,240,243],[414,1,1,243,244],[417,1,1,244,245],[419,2,2,245,247],[421,3,2,247,249],[423,1,1,249,250]]],[16,6,6,250,256,[[426,1,1,250,251],[427,1,1,251,252],[428,2,2,252,254],[429,1,1,254,255],[430,1,1,255,256]]],[17,1,1,256,257,[[439,1,1,256,257]]],[18,17,17,257,274,[[511,1,1,257,258],[546,1,1,258,259],[556,2,2,259,261],[566,1,1,261,262],[567,2,2,262,264],[579,2,2,264,266],[582,1,1,266,267],[590,1,1,267,268],[596,1,1,268,269],[600,1,1,269,270],[611,1,1,270,271],[612,3,3,271,274]]],[20,3,2,274,276,[[660,1,1,274,275],[668,2,1,275,276]]],[22,14,12,276,288,[[692,1,1,276,277],[714,2,2,277,279],[715,2,2,279,281],[732,1,1,281,282],[734,1,1,282,283],[743,6,4,283,287],[744,1,1,287,288]]],[23,18,17,288,305,[[751,1,1,288,289],[765,1,1,289,290],[766,2,2,290,292],[769,2,2,292,294],[770,1,1,294,295],[773,1,1,295,296],[778,3,2,296,298],[779,1,1,298,299],[780,2,2,299,301],[781,2,2,301,303],[788,1,1,303,304],[790,1,1,304,305]]],[25,1,1,305,306,[[839,1,1,305,306]]],[26,4,4,306,310,[[850,2,2,306,308],[858,2,2,308,310]]],[28,1,1,310,311,[[877,1,1,310,311]]],[29,1,1,311,312,[[881,1,1,311,312]]],[32,1,1,312,313,[[898,1,1,312,313]]],[37,2,2,313,315,[[911,1,1,313,314],[912,1,1,314,315]]]],[230,351,503,538,707,711,717,724,764,944,1192,1205,1232,1233,1262,1263,1265,1331,1340,1343,1345,1347,1355,1374,1423,1424,1439,1445,1513,1523,1524,1647,1648,1653,1695,1705,1713,1714,1719,1731,1756,1762,1763,1772,1776,1778,1783,1784,1809,1814,1846,1894,2451,3511,3524,4393,4713,4722,4723,4743,4745,4749,5184,5681,5794,5801,5850,6045,6046,6048,6592,7043,7383,7384,7386,7479,7610,7611,7612,7626,7627,7681,7698,7699,7700,7702,7706,7707,7783,7786,7793,7794,7796,7801,7804,7869,7871,7901,7902,7949,7965,7967,7977,8061,8062,8066,8080,8103,8119,8177,8211,8215,8216,8223,8237,8239,8242,8243,8244,8259,8260,8268,8270,8272,8283,8304,8305,8307,8341,8348,8353,8386,8387,8403,8404,8407,8432,8437,8469,8485,8487,8516,8517,8518,8525,8528,8560,8595,8602,8712,8719,8726,8750,8764,8809,8810,8831,8879,8884,8887,9008,9017,9021,9073,9078,9084,9087,9092,9158,9267,9414,9420,9431,9439,9483,9529,9546,9567,9660,9677,9682,9685,9719,9763,9767,9784,9798,9870,9871,9901,9996,10006,10048,10050,10066,10129,10142,10154,10195,10204,10212,10213,10214,10892,10896,10897,10903,10909,10910,10911,10926,10934,10937,11219,11221,11226,11296,11305,11309,11355,11364,11368,11371,11374,11376,11385,11402,11445,11702,11707,11884,11891,11932,11989,11990,12013,12082,12085,12092,12248,12302,12306,12307,12327,12387,12477,12480,12521,12547,12591,12705,12742,12749,12750,12773,12790,12948,14410,14971,15187,15195,15376,15391,15394,15535,15549,15631,15814,15989,16100,16173,16176,16184,16189,17340,17500,17930,18339,18341,18357,18376,18740,18759,18906,18910,18911,18912,18936,19144,19447,19456,19458,19538,19553,19577,19654,19812,19817,19838,19866,19873,19876,19892,20014,20071,21442,21749,21750,21994,21998,22340,22402,22652,22884,22908]]],["servants'",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[57,1,1,1,2]]]],[1420,1734]]]]},{"k":"H5651","v":[["Ebed",[6,6,[[6,5,5,0,5,[[219,5,5,0,5]]],[14,1,1,5,6,[[410,1,1,5,6]]]],[6780,6782,6784,6785,6789,12207]]]]},{"k":"H5652","v":[["works",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17476]]]]},{"k":"H5653","v":[["Abda",[2,2,[[10,1,1,0,1,[[294,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[8850,12605]]]]},{"k":"H5654","v":[["Obededom",[20,15,[[9,5,3,0,3,[[272,5,3,0,3]]],[12,14,11,3,14,[[350,3,2,3,5],[352,4,4,5,9],[353,3,2,9,11],[363,4,3,11,14]]],[13,1,1,14,15,[[391,1,1,14,15]]]],[8167,8168,8169,10773,10774,10809,10812,10815,10816,10825,10858,11081,11085,11092,11728]]]]},{"k":"H5655","v":[["Abdeel",[1,1,[[23,1,1,0,1,[[780,1,1,0,1]]]],[19868]]]]},{"k":"H5656","v":[["*",[146,125,[[0,2,2,0,2,[[28,1,1,0,1],[29,1,1,1,2]]],[1,23,20,2,22,[[50,3,1,2,3],[51,2,1,3,4],[54,2,2,4,6],[55,2,2,6,8],[61,2,2,8,10],[62,1,1,10,11],[76,1,1,11,12],[79,1,1,12,13],[84,2,2,13,15],[85,3,3,15,18],[87,1,1,18,19],[88,3,3,19,22]]],[2,7,7,22,29,[[112,6,6,22,28],[114,1,1,28,29]]],[3,51,44,29,73,[[119,5,5,29,34],[120,21,16,34,50],[123,5,4,50,54],[124,6,6,54,60],[132,1,1,60,61],[134,7,6,61,67],[144,3,3,67,70],[145,3,3,70,73]]],[4,1,1,73,74,[[178,1,1,73,74]]],[5,1,1,74,75,[[208,1,1,74,75]]],[10,1,1,75,76,[[302,1,1,75,76]]],[12,30,23,76,99,[[341,1,1,76,77],[343,2,2,77,79],[346,3,3,79,82],[360,5,4,82,86],[361,2,2,86,88],[362,3,2,88,90],[363,2,2,90,92],[364,1,1,92,93],[365,10,5,93,98],[366,1,1,98,99]]],[13,15,13,99,112,[[374,1,1,99,100],[376,1,1,100,101],[378,2,1,101,102],[390,1,1,102,103],[395,1,1,103,104],[397,3,3,104,107],[400,2,1,107,108],[401,4,4,108,112]]],[14,1,1,112,113,[[410,1,1,112,113]]],[15,4,4,113,117,[[415,1,1,113,114],[417,1,1,114,115],[422,2,2,115,117]]],[18,2,2,117,119,[[581,2,2,117,119]]],[22,4,3,119,122,[[692,1,1,119,120],[706,2,1,120,121],[710,1,1,121,122]]],[24,1,1,122,123,[[797,1,1,122,123]]],[25,3,2,123,125,[[830,2,1,123,124],[845,1,1,124,125]]]],[822,856,1546,1577,1641,1643,1661,1664,1841,1842,1872,2291,2398,2552,2555,2567,2569,2571,2654,2696,2704,2706,3409,3410,3423,3427,3437,3438,3508,3699,3700,3718,3723,3728,3747,3762,3766,3767,3769,3770,3771,3773,3774,3775,3776,3778,3782,3786,3790,3792,3855,3857,3858,3859,3950,3958,3961,3963,3964,3965,4203,4261,4263,4264,4278,4280,4288,4595,4602,4603,4609,4620,4643,5572,6453,9155,10406,10486,10502,10628,10634,10643,11007,11009,11011,11015,11018,11034,11047,11052,11085,11107,11135,11156,11157,11158,11163,11164,11171,11360,11399,11445,11689,11826,11856,11870,11875,11946,11968,11976,11981,11982,12221,12332,12400,12581,12586,15585,15594,17931,18185,18276,20313,21201,21613]]],["+",[13,9,[[1,4,4,0,4,[[54,2,2,0,2],[55,2,2,2,4]]],[2,1,1,4,5,[[114,1,1,4,5]]],[10,1,1,5,6,[[302,1,1,5,6]]],[12,4,1,6,7,[[365,4,1,6,7]]],[13,3,2,7,9,[[376,1,1,7,8],[400,2,1,8,9]]]],[1641,1643,1661,1664,3508,9155,11157,11399,11946]]],["act",[2,1,[[22,2,1,0,1,[[706,2,1,0,1]]]],[18185]]],["bondage",[6,5,[[1,3,2,0,2,[[50,1,1,0,1],[51,2,1,1,2]]],[4,1,1,2,3,[[178,1,1,2,3]]],[15,1,1,3,4,[[417,1,1,3,4]]],[22,1,1,4,5,[[692,1,1,4,5]]]],[1546,1577,5572,12400,17931]]],["effect",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18276]]],["labour",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15594]]],["ministering",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10643]]],["ministry",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3790]]],["office",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10486]]],["serveth",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3728]]],["service",[94,82,[[0,2,2,0,2,[[28,1,1,0,1],[29,1,1,1,2]]],[1,14,13,2,15,[[50,2,1,2,3],[61,2,2,3,5],[62,1,1,5,6],[76,1,1,6,7],[79,1,1,7,8],[84,2,2,8,10],[85,3,3,10,13],[87,1,1,13,14],[88,1,1,14,15]]],[3,38,33,15,48,[[119,4,4,15,19],[120,15,12,19,31],[123,5,4,31,35],[124,6,6,35,41],[132,1,1,41,42],[134,7,6,42,48]]],[5,1,1,48,49,[[208,1,1,48,49]]],[12,21,17,49,66,[[343,1,1,49,50],[346,2,2,50,52],[360,5,4,52,56],[361,2,2,56,58],[362,3,2,58,60],[363,2,2,60,62],[365,5,3,62,65],[366,1,1,65,66]]],[13,12,11,66,77,[[374,1,1,66,67],[378,2,1,67,68],[390,1,1,68,69],[395,1,1,69,70],[397,3,3,70,73],[401,4,4,73,77]]],[14,1,1,77,78,[[410,1,1,77,78]]],[15,1,1,78,79,[[422,1,1,78,79]]],[18,1,1,79,80,[[581,1,1,79,80]]],[25,3,2,80,82,[[830,2,1,80,81],[845,1,1,81,82]]]],[822,856,1546,1841,1842,1872,2291,2398,2552,2555,2567,2569,2571,2654,2704,3699,3700,3718,3723,3747,3762,3766,3767,3769,3770,3771,3774,3775,3776,3790,3792,3855,3857,3858,3859,3950,3958,3961,3963,3964,3965,4203,4261,4263,4264,4278,4280,4288,6453,10502,10628,10634,11007,11009,11011,11015,11018,11034,11047,11052,11085,11107,11156,11163,11164,11171,11360,11445,11689,11826,11856,11870,11875,11968,11976,11981,11982,12221,12581,15585,21201,21613]]],["servile",[12,12,[[2,6,6,0,6,[[112,6,6,0,6]]],[3,6,6,6,12,[[144,3,3,6,9],[145,3,3,9,12]]]],[3409,3410,3423,3427,3437,3438,4595,4602,4603,4609,4620,4643]]],["servitude",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20313]]],["tillage",[2,2,[[12,1,1,0,1,[[364,1,1,0,1]]],[15,1,1,1,2,[[422,1,1,1,2]]]],[11135,12586]]],["use",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11158]]],["work",[8,8,[[1,2,2,0,2,[[88,2,2,0,2]]],[3,5,5,2,7,[[120,5,5,2,7]]],[15,1,1,7,8,[[415,1,1,7,8]]]],[2696,2706,3766,3773,3778,3782,3786,12332]]],["wrought",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10406]]]]},{"k":"H5657","v":[["*",[2,2,[[0,1,1,0,1,[[25,1,1,0,1]]],[17,1,1,1,2,[[436,1,1,1,2]]]],[706,12872]]],["household",[1,1,[[17,1,1,0,1,[[436,1,1,0,1]]]],[12872]]],["servants",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[706]]]]},{"k":"H5658","v":[["Abdon",[8,8,[[5,1,1,0,1,[[207,1,1,0,1]]],[6,2,2,1,3,[[222,2,2,1,3]]],[12,4,4,3,7,[[343,1,1,3,4],[345,2,2,4,6],[346,1,1,6,7]]],[13,1,1,7,8,[[400,1,1,7,8]]]],[6411,6882,6884,10528,10598,10605,10651,11953]]]]},{"k":"H5659","v":[["bondage",[3,3,[[14,2,2,0,2,[[411,2,2,0,2]]],[15,1,1,2,3,[[421,1,1,2,3]]]],[12245,12246,12528]]]]},{"k":"H5660","v":[["Abdi",[3,3,[[12,1,1,0,1,[[343,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]],[14,1,1,2,3,[[412,1,1,2,3]]]],[10498,11803,12278]]]]},{"k":"H5661","v":[["Abdiel",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10443]]]]},{"k":"H5662","v":[["Obadiah",[20,19,[[10,7,6,0,6,[[308,7,6,0,6]]],[12,7,7,6,13,[[340,1,1,6,7],[344,1,1,7,8],[345,1,1,8,9],[346,2,2,9,11],[349,1,1,11,12],[364,1,1,12,13]]],[13,2,2,13,15,[[383,1,1,13,14],[400,1,1,14,15]]],[14,1,1,15,16,[[410,1,1,15,16]]],[15,2,2,16,18,[[422,1,1,16,17],[424,1,1,17,18]]],[30,1,1,18,19,[[888,1,1,18,19]]]],[9344,9345,9346,9347,9348,9357,10382,10538,10613,10631,10659,10729,11128,11530,11945,12210,12554,12649,22511]]]]},{"k":"H5663","v":[["Ebedmelech",[6,6,[[23,6,6,0,6,[[782,5,5,0,5],[783,1,1,5,6]]]],[19902,19903,19905,19906,19907,19939]]]]},{"k":"H5664","v":[["Abednego",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21744]]]]},{"k":"H5665","v":[["Abednego",[14,13,[[26,14,13,0,13,[[851,1,1,0,1],[852,13,12,1,13]]]],[21807,21819,21820,21821,21823,21826,21827,21829,21830,21833,21835,21836,21837]]]]},{"k":"H5666","v":[["*",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[10,1,1,1,2,[[302,1,1,1,2]]],[13,1,1,2,3,[[376,1,1,2,3]]]],[5773,9161,11405]]],["thick",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5773]]],["thicker",[2,2,[[10,1,1,0,1,[[302,1,1,0,1]]],[13,1,1,1,2,[[376,1,1,1,2]]]],[9161,11405]]]]},{"k":"H5667","v":[["pledge",[4,4,[[4,4,4,0,4,[[176,4,4,0,4]]]],[5535,5536,5537,5538]]]]},{"k":"H5668","v":[["*",[50,47,[[0,15,15,0,15,[[2,1,1,0,1],[7,1,1,1,2],[11,2,2,2,4],[17,4,4,4,8],[20,1,1,8,9],[25,1,1,9,10],[26,4,4,10,14],[45,1,1,14,15]]],[1,7,5,15,20,[[58,3,2,15,17],[62,1,1,17,18],[68,1,1,18,19],[69,2,1,19,20]]],[8,3,3,20,23,[[236,1,1,20,21],[247,1,1,21,22],[258,1,1,22,23]]],[9,13,12,23,35,[[271,1,1,23,24],[272,1,1,24,25],[273,1,1,25,26],[275,2,2,26,28],[276,1,1,28,29],[278,3,2,29,31],[279,1,1,31,32],[280,1,1,32,33],[283,1,1,33,34],[284,1,1,34,35]]],[12,3,3,35,38,[[351,1,1,35,36],[354,1,1,36,37],[356,1,1,37,38]]],[13,1,1,38,39,[[394,1,1,38,39]]],[17,1,1,39,40,[[455,1,1,39,40]]],[18,3,3,40,43,[[582,1,1,40,41],[583,1,1,41,42],[609,1,1,42,43]]],[23,1,1,43,44,[[758,1,1,43,44]]],[29,2,2,44,46,[[880,1,1,44,45],[886,1,1,45,46]]],[32,1,1,46,47,[[894,1,1,46,47]]]],[72,204,311,314,450,453,455,456,543,716,731,737,746,758,1420,1756,1758,1875,2035,2071,7218,7482,7820,8144,8169,8201,8228,8234,8243,8307,8311,8319,8376,8463,8496,10776,10882,10910,11783,13328,15651,15683,16161,19297,22385,22487,22605]]],["+",[9,8,[[0,5,5,0,5,[[7,1,1,0,1],[17,3,3,1,4],[26,1,1,4,5]]],[9,3,2,5,7,[[273,1,1,5,6],[278,2,1,6,7]]],[12,1,1,7,8,[[354,1,1,7,8]]]],[204,453,455,456,737,8201,8307,10882]]],["Because",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19297]]],["That",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15651]]],["To",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8376]]],["because",[4,4,[[1,1,1,0,1,[[62,1,1,0,1]]],[9,2,2,1,3,[[272,1,1,1,2],[278,1,1,2,3]]],[32,1,1,3,4,[[894,1,1,3,4]]]],[1875,8169,8311,22605]]],["for",[8,7,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,2,1,1,2,[[58,2,1,1,2]]],[9,1,1,2,3,[[279,1,1,2,3]]],[12,1,1,3,4,[[356,1,1,3,4]]],[17,1,1,4,5,[[455,1,1,4,5]]],[29,2,2,5,7,[[880,1,1,5,6],[886,1,1,6,7]]]],[716,1758,8319,10910,13328,22385,22487]]],["intent",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8463]]],["of",[2,2,[[12,1,1,0,1,[[351,1,1,0,1]]],[13,1,1,1,2,[[394,1,1,1,2]]]],[10776,11783]]],["sake",[9,9,[[0,3,3,0,3,[[2,1,1,0,1],[11,2,2,1,3]]],[8,2,2,3,5,[[247,1,1,3,4],[258,1,1,4,5]]],[9,3,3,5,8,[[271,1,1,5,6],[275,2,2,6,8]]],[18,1,1,8,9,[[609,1,1,8,9]]]],[72,311,314,7482,7820,8144,8228,8234,16161]]],["sakes",[2,2,[[0,1,1,0,1,[[17,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]]],[450,15683]]],["that",[8,8,[[0,5,5,0,5,[[20,1,1,0,1],[26,3,3,1,4],[45,1,1,4,5]]],[1,3,3,5,8,[[58,1,1,5,6],[68,1,1,6,7],[69,1,1,7,8]]]],[543,731,746,758,1420,1756,2035,2071]]],["to",[4,4,[[1,1,1,0,1,[[69,1,1,0,1]]],[8,1,1,1,2,[[236,1,1,1,2]]],[9,2,2,2,4,[[276,1,1,2,3],[284,1,1,3,4]]]],[2071,7218,8243,8496]]]]},{"k":"H5669","v":[["+",[2,2,[[5,2,2,0,2,[[191,2,2,0,2]]]],[5945,5946]]]]},{"k":"H5670","v":[["*",[6,4,[[4,5,3,0,3,[[167,4,2,0,2],[176,1,1,2,3]]],[28,1,1,3,4,[[877,1,1,3,4]]]],[5325,5327,5535,22318]]],["+",[2,1,[[4,2,1,0,1,[[167,2,1,0,1]]]],[5327]]],["borrow",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5325]]],["break",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22318]]],["fetch",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5535]]],["lend",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5325]]]]},{"k":"H5671","v":[["clay",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22754]]]]},{"k":"H5672","v":[["*",[4,4,[[10,1,1,0,1,[[297,1,1,0,1]]],[13,1,1,1,2,[[370,1,1,1,2]]],[17,1,1,2,3,[[450,1,1,2,3]]],[23,1,1,3,4,[[796,1,1,3,4]]]],[8960,11251,13229,20297]]],["thick",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]]],[8960,13229]]],["thickness",[2,2,[[13,1,1,0,1,[[370,1,1,0,1]]],[23,1,1,1,2,[[796,1,1,1,2]]]],[11251,20297]]]]},{"k":"H5673","v":[["*",[6,6,[[14,4,4,0,4,[[406,1,1,0,1],[407,1,1,1,2],[408,2,2,2,4]]],[26,2,2,4,6,[[851,1,1,4,5],[852,1,1,5,6]]]],[12134,12142,12158,12169,21807,21819]]],["affairs",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21807,21819]]],["service",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12169]]],["work",[3,3,[[14,3,3,0,3,[[406,1,1,0,1],[407,1,1,1,2],[408,1,1,2,3]]]],[12134,12142,12158]]]]},{"k":"H5674","v":[["*",[557,493,[[0,24,21,0,21,[[7,1,1,0,1],[11,1,1,1,2],[14,1,1,2,3],[17,3,2,3,5],[22,1,1,5,6],[29,1,1,6,7],[30,3,2,7,9],[31,7,6,9,15],[32,2,2,15,17],[36,1,1,17,18],[40,1,1,18,19],[46,1,1,19,20],[49,1,1,20,21]]],[1,15,13,21,34,[[61,2,2,21,23],[62,1,1,23,24],[64,2,1,24,25],[66,1,1,25,26],[79,2,2,26,28],[81,1,1,28,29],[82,3,2,29,31],[83,1,1,31,32],[85,1,1,32,33],[87,1,1,33,34]]],[2,5,4,34,38,[[107,1,1,34,35],[114,2,1,35,36],[115,1,1,36,37],[116,1,1,37,38]]],[3,37,31,38,69,[[121,3,2,38,40],[122,1,1,40,41],[124,1,1,41,42],[129,1,1,42,43],[130,2,2,43,45],[136,7,5,45,50],[137,3,2,50,52],[138,2,2,52,54],[140,1,1,54,55],[143,2,2,55,57],[147,2,1,57,58],[148,7,7,58,65],[149,2,2,65,67],[150,2,1,67,68],[151,1,1,68,69]]],[4,49,44,69,113,[[154,12,10,69,79],[155,6,6,79,85],[156,5,4,85,89],[158,1,1,89,90],[161,2,2,90,92],[163,3,3,92,95],[164,1,1,95,96],[169,1,1,96,97],[170,1,1,97,98],[176,1,1,98,99],[178,1,1,99,100],[179,4,4,100,104],[181,3,2,104,106],[182,2,2,106,108],[183,4,3,108,111],[184,1,1,111,112],[186,1,1,112,113]]],[5,59,49,113,162,[[187,4,3,113,116],[188,1,1,116,117],[189,10,8,117,125],[190,13,11,125,136],[191,1,1,136,137],[192,3,2,137,139],[193,5,3,139,142],[196,3,3,142,145],[201,8,6,145,151],[202,2,2,151,153],[204,4,4,153,157],[205,1,1,157,158],[208,1,1,158,159],[209,1,1,159,160],[210,2,2,160,162]]],[6,23,20,162,182,[[212,1,1,162,163],[213,2,2,163,165],[216,1,1,165,166],[218,1,1,166,167],[219,2,2,167,169],[220,1,1,169,170],[221,7,5,170,175],[222,4,3,175,178],[228,1,1,178,179],[229,3,3,179,182]]],[7,2,2,182,184,[[233,1,1,182,183],[235,1,1,183,184]]],[8,26,21,184,205,[[237,1,1,184,185],[244,6,2,185,187],[248,1,1,187,188],[249,5,5,188,193],[250,2,2,193,195],[251,3,3,195,198],[255,1,1,198,199],[260,1,1,199,200],[261,2,2,200,202],[262,1,1,202,203],[264,2,1,203,204],[265,1,1,204,205]]],[9,48,37,205,242,[[268,3,3,205,208],[269,1,1,208,209],[276,1,1,209,210],[277,1,1,210,211],[278,2,2,211,213],[281,9,5,213,218],[282,2,2,218,220],[283,7,5,220,225],[284,2,2,225,227],[285,15,10,227,237],[286,2,2,237,239],[290,3,3,239,242]]],[10,12,12,242,254,[[292,1,1,242,243],[296,1,1,243,244],[299,1,1,244,245],[303,1,1,245,246],[305,1,1,246,247],[308,2,2,247,249],[309,2,2,249,251],[310,1,1,251,252],[312,2,2,252,254]]],[11,18,17,254,271,[[314,3,3,254,257],[316,4,3,257,260],[318,3,3,260,263],[320,1,1,263,264],[324,1,1,264,265],[326,1,1,265,266],[328,1,1,266,267],[329,1,1,267,268],[330,1,1,268,269],[333,1,1,269,270],[335,1,1,270,271]]],[12,4,4,271,275,[[349,1,1,271,272],[356,1,1,272,273],[358,1,1,273,274],[366,1,1,274,275]]],[13,12,12,275,287,[[373,1,1,275,276],[381,1,1,276,277],[384,1,1,277,278],[387,1,1,278,279],[390,1,1,279,280],[391,1,1,280,281],[396,2,2,281,283],[399,1,1,283,284],[401,2,2,284,286],[402,1,1,286,287]]],[14,2,2,287,289,[[403,1,1,287,288],[412,1,1,288,289]]],[15,5,4,289,293,[[414,3,2,289,291],[420,1,1,291,292],[421,1,1,292,293]]],[16,7,7,293,300,[[426,1,1,293,294],[428,1,1,294,295],[429,1,1,295,296],[433,2,2,296,298],[434,2,2,298,300]]],[17,17,17,300,317,[[441,1,1,300,301],[442,1,1,301,302],[444,1,1,302,303],[446,1,1,303,304],[448,1,1,304,305],[449,1,1,305,306],[450,1,1,306,307],[452,1,1,307,308],[454,1,1,308,309],[456,2,2,309,311],[465,1,1,311,312],[468,2,2,312,314],[469,1,1,314,315],[471,1,1,315,316],[472,1,1,316,317]]],[18,33,33,317,350,[[485,1,1,317,318],[494,1,1,318,319],[495,1,1,319,320],[514,1,1,320,321],[515,1,1,321,322],[519,2,2,322,324],[525,1,1,324,325],[534,1,1,325,326],[543,1,1,326,327],[550,1,1,327,328],[555,4,4,328,332],[557,1,1,332,333],[558,1,1,333,334],[561,1,1,334,335],[565,1,1,335,336],[566,2,2,336,338],[567,1,1,338,339],[580,1,1,339,340],[581,1,1,340,341],[596,2,2,341,343],[601,2,2,343,345],[606,1,1,345,346],[613,1,1,346,347],[618,1,1,347,348],[621,1,1,348,349],[625,1,1,349,350]]],[19,15,13,350,363,[[631,2,1,350,351],[634,1,1,351,352],[635,1,1,352,353],[636,1,1,353,354],[637,1,1,354,355],[641,1,1,355,356],[646,1,1,356,357],[647,1,1,357,358],[649,1,1,358,359],[651,1,1,359,360],[653,3,2,360,362],[654,1,1,362,363]]],[20,1,1,363,364,[[669,1,1,363,364]]],[21,5,5,364,369,[[672,1,1,364,365],[673,1,1,365,366],[675,3,3,366,369]]],[22,34,30,369,399,[[686,2,2,369,371],[688,2,2,371,373],[694,1,1,373,374],[701,4,4,374,378],[702,1,1,378,379],[704,1,1,379,380],[706,4,3,380,383],[707,1,1,383,384],[709,1,1,384,385],[711,2,2,385,387],[712,1,1,387,388],[713,1,1,388,389],[718,1,1,389,390],[719,1,1,390,391],[721,1,1,391,392],[723,2,1,392,393],[725,1,1,393,394],[729,3,2,394,396],[732,1,1,396,397],[738,1,1,397,398],[740,2,1,398,399]]],[23,28,26,399,425,[[746,3,3,399,402],[749,3,2,402,404],[752,2,2,404,406],[753,2,2,406,408],[755,1,1,408,409],[757,1,1,409,410],[759,1,1,410,411],[762,1,1,411,412],[763,1,1,412,413],[766,1,1,413,414],[767,1,1,414,415],[776,1,1,415,416],[777,1,1,416,417],[778,3,2,417,419],[785,1,1,419,420],[790,1,1,420,421],[792,1,1,421,422],[793,1,1,422,423],[794,1,1,423,424],[795,1,1,424,425]]],[24,4,4,425,429,[[797,1,1,425,426],[798,1,1,426,427],[799,1,1,427,428],[800,1,1,428,429]]],[25,35,29,429,458,[[806,3,3,429,432],[810,2,2,432,434],[815,3,2,434,436],[817,5,5,436,441],[821,3,3,441,444],[824,1,1,444,445],[830,2,1,445,446],[834,1,1,446,447],[836,1,1,447,448],[837,1,1,448,449],[838,1,1,449,450],[840,6,3,450,453],[847,1,1,453,454],[848,4,3,454,457],[849,1,1,457,458]]],[26,4,4,458,462,[[858,1,1,458,459],[860,3,3,459,462]]],[27,3,3,462,465,[[867,1,1,462,463],[869,1,1,463,464],[871,1,1,464,465]]],[28,1,1,465,466,[[878,1,1,465,466]]],[29,6,6,466,472,[[883,2,2,466,468],[884,1,1,468,469],[885,1,1,469,470],[886,2,2,470,472]]],[31,2,2,472,474,[[890,1,1,472,473],[891,1,1,473,474]]],[32,6,5,474,479,[[893,1,1,474,475],[894,3,2,475,477],[897,1,1,477,478],[899,1,1,478,479]]],[33,4,4,479,483,[[900,3,3,479,482],[902,1,1,482,483]]],[34,2,2,483,485,[[903,1,1,483,484],[905,1,1,484,485]]],[35,3,3,485,488,[[907,2,2,485,487],[908,1,1,487,488]]],[37,6,5,488,493,[[913,1,1,488,489],[917,1,1,489,490],[919,2,1,490,491],[920,1,1,491,492],[923,1,1,492,493]]]],[184,304,377,427,429,587,862,894,925,938,944,949,950,951,959,963,974,1111,1241,1441,1510,1828,1839,1879,1936,1988,2395,2396,2465,2492,2495,2502,2572,2659,3272,3478,3530,3602,3806,3822,3828,3946,4107,4115,4149,4328,4329,4330,4331,4332,4362,4363,4393,4401,4459,4561,4562,4687,4723,4725,4739,4745,4747,4748,4750,4768,4811,4820,4855,4942,4946,4951,4952,4956,4962,4965,4966,4967,4968,4993,4996,5000,5001,5002,5003,5018,5025,5026,5030,5087,5158,5160,5216,5219,5239,5250,5366,5394,5530,5579,5587,5588,5589,5597,5691,5695,5721,5726,5730,5731,5741,5805,5843,5853,5862,5865,5892,5894,5895,5897,5899,5904,5907,5909,5910,5911,5913,5915,5917,5918,5920,5921,5922,5923,5932,5933,5935,5956,5957,5983,5987,5991,6093,6095,6098,6205,6206,6208,6209,6212,6213,6267,6271,6302,6306,6311,6312,6334,6445,6476,6487,6493,6565,6594,6596,6687,6723,6779,6780,6820,6846,6848,6849,6858,6861,6870,6872,6874,7006,7036,7038,7042,7157,7191,7264,7395,7418,7492,7509,7512,7514,7516,7531,7572,7584,7603,7604,7605,7766,7880,7918,7927,7932,7969,7988,8057,8064,8078,8091,8257,8286,8299,8317,8407,8411,8412,8413,8422,8427,8435,8465,8469,8470,8471,8473,8487,8501,8526,8529,8542,8544,8547,8548,8549,8550,8551,8552,8567,8568,8697,8702,8712,8807,8917,9059,9209,9261,9347,9370,9398,9406,9447,9504,9516,9559,9560,9565,9611,9612,9634,9683,9700,9704,9748,9854,9905,9966,10000,10036,10125,10175,10735,10924,10942,11194,11345,11498,11565,11633,11697,11722,11832,11837,11914,11989,11990,12015,12017,12259,12314,12321,12508,12522,12721,12750,12779,12819,12820,12861,12862,12993,13029,13062,13124,13166,13186,13222,13271,13305,13365,13384,13572,13668,13678,13703,13748,13790,14020,14106,14130,14486,14494,14559,14562,14638,14769,14879,15027,15126,15134,15172,15175,15210,15223,15265,15324,15364,15367,15382,15565,15580,15935,15937,16106,16107,16140,16210,16286,16309,16377,16505,16583,16631,16653,16681,16788,16936,16956,17018,17109,17151,17158,17181,17523,17565,17575,17603,17604,17611,17815,17828,17878,17879,17977,18079,18083,18087,18089,18100,18150,18179,18182,18183,18198,18259,18287,18300,18313,18328,18447,18454,18507,18575,18601,18683,18696,18732,18836,18864,18971,18975,18985,19080,19086,19166,19173,19185,19187,19241,19290,19329,19400,19415,19462,19493,19766,19788,19819,19820,19967,20062,20112,20144,20179,20255,20322,20347,20398,20441,20547,20560,20563,20626,20627,20746,20748,20768,20770,20777,20783,20787,20921,20926,20932,21044,21194,21308,21351,21393,21399,21459,21462,21463,21676,21682,21683,21684,21716,21999,22046,22056,22076,22174,22195,22236,22360,22428,22440,22452,22472,22483,22486,22551,22564,22590,22603,22608,22641,22682,22692,22696,22699,22731,22742,22778,22807,22820,22826,22916,22976,23007,23027,23061]]],["+",[107,100,[[0,9,7,0,7,[[17,1,1,0,1],[30,3,2,1,3],[31,5,4,3,7]]],[1,1,1,7,8,[[85,1,1,7,8]]],[3,9,9,8,17,[[124,1,1,8,9],[130,1,1,9,10],[138,1,1,10,11],[140,1,1,11,12],[148,3,3,12,15],[149,1,1,15,16],[151,1,1,16,17]]],[4,19,18,17,35,[[154,5,4,17,21],[155,1,1,21,22],[156,3,3,22,25],[161,1,1,25,26],[163,1,1,26,27],[164,1,1,27,28],[179,3,3,28,31],[182,1,1,31,32],[183,2,2,32,34],[184,1,1,34,35]]],[5,14,12,35,47,[[187,2,2,35,37],[189,2,2,37,39],[190,3,3,39,42],[193,5,3,42,45],[209,1,1,45,46],[210,1,1,46,47]]],[6,5,4,47,51,[[212,1,1,47,48],[213,1,1,48,49],[220,1,1,49,50],[221,2,1,50,51]]],[8,3,3,51,54,[[248,1,1,51,52],[250,1,1,52,53],[265,1,1,53,54]]],[9,16,15,54,69,[[268,1,1,54,55],[276,1,1,55,56],[278,1,1,56,57],[283,4,3,57,60],[284,1,1,60,61],[285,6,6,61,67],[290,2,2,67,69]]],[10,1,1,69,70,[[292,1,1,69,70]]],[11,3,3,70,73,[[316,1,1,70,71],[318,1,1,71,72],[330,1,1,72,73]]],[12,3,3,73,76,[[349,1,1,73,74],[358,1,1,74,75],[366,1,1,75,76]]],[13,3,3,76,79,[[396,2,2,76,78],[402,1,1,78,79]]],[14,2,2,79,81,[[403,1,1,79,80],[412,1,1,80,81]]],[15,1,1,81,82,[[420,1,1,81,82]]],[16,1,1,82,83,[[433,1,1,82,83]]],[17,3,3,83,86,[[442,1,1,83,84],[468,2,2,84,86]]],[19,1,1,86,87,[[636,1,1,86,87]]],[21,1,1,87,88,[[673,1,1,87,88]]],[22,2,2,88,90,[[711,1,1,88,89],[732,1,1,89,90]]],[23,1,1,90,91,[[778,1,1,90,91]]],[24,3,3,91,94,[[797,1,1,91,92],[798,1,1,92,93],[799,1,1,93,94]]],[25,1,1,94,95,[[840,1,1,94,95]]],[26,1,1,95,96,[[858,1,1,95,96]]],[32,2,2,96,98,[[894,1,1,96,97],[899,1,1,97,98]]],[37,2,2,98,100,[[917,1,1,98,99],[919,1,1,99,100]]]],[427,894,925,938,950,951,959,2572,3946,4149,4393,4459,4723,4725,4747,4811,4855,4951,4952,4962,4967,5002,5025,5026,5030,5158,5239,5250,5587,5589,5597,5726,5730,5741,5805,5853,5862,5907,5910,5911,5913,5932,5983,5987,5991,6476,6487,6565,6594,6820,6858,7492,7584,7988,8078,8257,8317,8470,8471,8473,8501,8526,8529,8547,8550,8551,8552,8697,8702,8807,9612,9683,10036,10735,10942,11194,11832,11837,12015,12017,12259,12508,12820,13029,13668,13678,16653,17575,18287,18732,19819,20322,20347,20398,21462,21999,22603,22682,22976,23007]]],["Come",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8544]]],["Go",[1,1,[[25,1,1,0,1,[[810,1,1,0,1]]]],[20627]]],["Pass",[2,2,[[5,1,1,0,1,[[187,1,1,0,1]]],[29,1,1,1,2,[[884,1,1,1,2]]]],[5862,22452]]],["Passing",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16583]]],["alienate",[1,1,[[25,1,1,0,1,[[849,1,1,0,1]]]],[21716]]],["along",[9,8,[[5,8,7,0,7,[[201,5,4,0,4],[202,1,1,4,5],[204,1,1,5,6],[205,1,1,6,7]]],[6,1,1,7,8,[[219,1,1,7,8]]]],[6205,6208,6212,6213,6267,6312,6334,6779]]],["altered",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12721]]],["anger",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16956]]],["apart",[1,1,[[1,1,1,0,1,[[62,1,1,0,1]]]],[1879]]],["away",[19,19,[[9,2,2,0,2,[[278,1,1,0,1],[284,1,1,1,2]]],[10,1,1,2,3,[[305,1,1,2,3]]],[13,2,2,3,5,[[381,1,1,3,4],[401,1,1,4,5]]],[17,4,4,5,9,[[441,1,1,5,6],[446,1,1,6,7],[465,1,1,7,8],[469,1,1,8,9]]],[18,4,4,9,13,[[514,1,1,9,10],[596,2,2,10,12],[621,1,1,12,13]]],[19,1,1,13,14,[[631,1,1,13,14]]],[20,1,1,14,15,[[669,1,1,14,15]]],[22,1,1,15,16,[[707,1,1,15,16]]],[23,2,2,16,18,[[752,1,1,16,17],[757,1,1,17,18]]],[32,1,1,18,19,[[893,1,1,18,19]]]],[8299,8487,9261,11498,11989,12993,13124,13572,13703,14486,15935,15937,16309,16505,17523,18198,19166,19290,22590]]],["beyond",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7766]]],["brought",[2,2,[[25,2,2,0,2,[[848,2,2,0,2]]]],[21682,21683]]],["by",[29,28,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,3,2,1,3,[[82,2,1,1,2],[83,1,1,2,3]]],[4,2,2,3,5,[[154,1,1,3,4],[181,1,1,4,5]]],[5,1,1,5,6,[[202,1,1,5,6]]],[7,1,1,6,7,[[235,1,1,6,7]]],[8,1,1,7,8,[[251,1,1,7,8]]],[10,3,3,8,11,[[303,1,1,8,9],[309,1,1,9,10],[310,1,1,10,11]]],[11,4,4,11,15,[[316,1,1,11,12],[318,2,2,12,14],[326,1,1,14,15]]],[13,1,1,15,16,[[391,1,1,15,16]]],[18,4,4,16,20,[[525,1,1,16,17],[557,1,1,17,18],[566,1,1,18,19],[606,1,1,19,20]]],[19,1,1,20,21,[[653,1,1,20,21]]],[25,4,4,21,25,[[806,1,1,21,22],[817,2,2,22,24],[837,1,1,24,25]]],[29,1,1,25,26,[[886,1,1,25,26]]],[34,1,1,26,27,[[905,1,1,26,27]]],[35,1,1,27,28,[[908,1,1,27,28]]]],[1111,2495,2502,4946,5695,6271,7191,7604,9209,9398,9447,9611,9700,9704,9905,11722,14638,15210,15367,16140,17158,20560,20777,20787,21393,22483,22778,22826]]],["came",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5695]]],["charged",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5530]]],["come",[5,4,[[0,1,1,0,1,[[17,1,1,0,1]]],[3,3,2,1,3,[[121,2,1,1,2],[122,1,1,2,3]]],[17,1,1,3,4,[[448,1,1,3,4]]]],[429,3806,3828,13166]]],["cometh",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3822]]],["current",[1,1,[[0,1,1,0,1,[[22,1,1,0,1]]]],[587]]],["delivered",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15223]]],["enter",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5691]]],["escape",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16286]]],["fail",[2,2,[[16,2,2,0,2,[[434,2,2,0,2]]]],[12861,12862]]],["forth",[2,2,[[13,1,1,0,1,[[387,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]]],[11633,18183]]],["gendereth",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13365]]],["go",[11,10,[[2,1,1,0,1,[[115,1,1,0,1]]],[3,3,2,1,3,[[147,2,1,1,2],[148,1,1,2,3]]],[4,4,4,3,7,[[158,1,1,3,4],[163,2,2,4,6],[182,1,1,6,7]]],[7,1,1,7,8,[[233,1,1,7,8]]],[17,1,1,8,9,[[456,1,1,8,9]]],[25,1,1,9,10,[[815,1,1,9,10]]]],[3530,4687,4739,5087,5216,5219,5721,7157,13384,20748]]],["goeth",[4,4,[[17,1,1,0,1,[[444,1,1,0,1]]],[18,1,1,1,2,[[565,1,1,1,2]]],[23,2,2,2,4,[[793,1,1,2,3],[794,1,1,3,4]]]],[13062,15324,20144,20179]]],["gone",[7,7,[[3,1,1,0,1,[[129,1,1,0,1]]],[18,4,4,1,5,[[519,2,2,1,3],[601,2,2,3,5]]],[21,1,1,5,6,[[675,1,1,5,6]]],[29,1,1,6,7,[[886,1,1,6,7]]]],[4107,14559,14562,16106,16107,17604,22486]]],["in",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2465]]],["laid",[1,1,[[31,1,1,0,1,[[891,1,1,0,1]]]],[22564]]],["meddleth",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17158]]],["more",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15027]]],["on",[26,20,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[66,1,1,1,2]]],[3,2,1,2,3,[[150,2,1,2,3]]],[5,4,3,3,6,[[192,3,2,3,5],[201,1,1,5,6]]],[6,1,1,6,7,[[229,1,1,6,7]]],[8,6,4,7,11,[[244,2,1,7,8],[250,1,1,8,9],[260,1,1,9,10],[264,2,1,10,11]]],[9,7,5,11,16,[[281,3,2,11,13],[285,2,1,13,14],[286,1,1,14,15],[290,1,1,15,16]]],[11,1,1,16,17,[[316,1,1,16,17]]],[15,1,1,17,18,[[414,1,1,17,18]]],[19,2,2,18,20,[[649,1,1,18,19],[654,1,1,19,20]]]],[429,1988,4820,5956,5957,6212,7038,7418,7572,7880,7969,8407,8422,8551,8567,8712,9634,12321,17018,17181]]],["out",[1,1,[[25,1,1,0,1,[[836,1,1,0,1]]]],[21351]]],["over",[105,94,[[0,3,3,0,3,[[31,1,1,0,1],[32,2,2,1,3]]],[1,2,1,3,4,[[64,2,1,3,4]]],[3,3,3,4,7,[[148,3,3,4,7]]],[4,11,10,7,17,[[154,1,1,7,8],[155,3,3,8,11],[156,2,2,11,13],[161,1,1,13,14],[179,1,1,14,15],[183,2,1,15,16],[186,1,1,16,17]]],[5,19,17,17,34,[[188,1,1,17,18],[189,5,5,18,23],[190,10,8,23,31],[191,1,1,31,32],[204,1,1,32,33],[208,1,1,33,34]]],[6,10,10,34,44,[[213,1,1,34,35],[216,1,1,35,36],[218,1,1,36,37],[219,1,1,37,38],[221,2,2,38,40],[222,3,3,40,43],[229,1,1,43,44]]],[8,8,8,44,52,[[249,5,5,44,49],[261,2,2,49,51],[262,1,1,51,52]]],[9,16,12,52,64,[[268,2,2,52,54],[281,5,2,54,56],[282,1,1,56,57],[283,2,2,57,59],[285,6,5,59,64]]],[11,4,4,64,68,[[314,3,3,64,67],[320,1,1,67,68]]],[12,1,1,68,69,[[356,1,1,68,69]]],[15,1,1,69,70,[[414,1,1,69,70]]],[18,2,2,70,72,[[515,1,1,70,71],[581,1,1,71,72]]],[22,16,14,72,86,[[686,1,1,72,73],[688,1,1,73,74],[694,1,1,74,75],[701,3,3,75,78],[706,1,1,78,79],[709,1,1,79,80],[713,1,1,80,81],[718,1,1,81,82],[723,2,1,82,83],[725,1,1,83,84],[729,3,2,84,86]]],[23,4,4,86,90,[[746,1,1,86,87],[749,1,1,87,88],[785,1,1,88,89],[792,1,1,89,90]]],[25,2,1,90,91,[[848,2,1,90,91]]],[26,1,1,91,92,[[860,1,1,91,92]]],[27,1,1,92,93,[[871,1,1,92,93]]],[34,1,1,93,94,[[903,1,1,93,94]]]],[944,963,974,1936,4745,4748,4750,4956,4993,5000,5003,5018,5026,5160,5588,5731,5843,5892,5894,5899,5904,5909,5910,5915,5917,5918,5920,5921,5922,5923,5933,5935,6306,6445,6596,6687,6723,6780,6858,6861,6870,6872,6874,7036,7509,7512,7514,7516,7531,7918,7927,7932,8057,8064,8411,8412,8435,8465,8469,8529,8542,8548,8549,8550,9559,9560,9565,9748,10924,12314,14494,15580,17815,17879,17977,18079,18083,18089,18183,18259,18328,18447,18575,18601,18683,18696,18975,19080,19967,20112,21684,22076,22236,22742]]],["overcome",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19493]]],["overpass",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19086]]],["overpast",[2,2,[[18,1,1,0,1,[[534,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]]],[14769,18150]]],["overrunning",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22692]]],["partition",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8917]]],["pass",[50,49,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,1,1,1,2,[[82,1,1,1,2]]],[3,6,6,2,8,[[136,2,2,2,4],[137,2,2,4,6],[143,2,2,6,8]]],[4,2,2,8,10,[[154,2,2,8,10]]],[5,1,1,10,11,[[187,1,1,10,11]]],[6,3,3,11,14,[[221,3,3,11,14]]],[8,2,2,14,16,[[251,2,2,14,16]]],[10,1,1,16,17,[[308,1,1,16,17]]],[13,1,1,17,18,[[399,1,1,17,18]]],[15,1,1,18,19,[[414,1,1,18,19]]],[17,2,2,19,21,[[449,1,1,19,20],[454,1,1,20,21]]],[18,1,1,21,22,[[625,1,1,21,22]]],[19,3,3,22,25,[[631,1,1,22,23],[635,1,1,23,24],[646,1,1,24,25]]],[22,2,2,25,27,[[686,1,1,25,26],[711,1,1,26,27]]],[23,5,5,27,32,[[749,1,1,27,28],[759,1,1,28,29],[766,1,1,29,30],[777,1,1,30,31],[795,1,1,31,32]]],[25,9,8,32,40,[[806,2,2,32,34],[815,1,1,34,35],[821,2,2,35,37],[830,2,1,37,38],[838,1,1,38,39],[847,1,1,39,40]]],[29,3,3,40,43,[[883,2,2,40,42],[885,1,1,42,43]]],[32,1,1,43,44,[[894,1,1,43,44]]],[35,1,1,44,45,[[907,1,1,44,45]]],[37,4,4,45,49,[[913,1,1,45,46],[919,1,1,46,47],[920,1,1,47,48],[923,1,1,48,49]]]],[184,2492,4328,4329,4362,4363,4561,4562,4965,4968,5865,6846,6848,6849,7603,7605,9347,11914,12321,13186,13305,16377,16505,16631,16936,17828,18300,19080,19329,19462,19788,20255,20547,20563,20746,20926,20932,21194,21399,21676,22428,22440,22472,22608,22807,22916,23007,23027,23061]]],["passage",[1,1,[[3,1,1,0,1,[[136,1,1,0,1]]]],[4332]]],["passed",[26,26,[[0,1,1,0,1,[[14,1,1,0,1]]],[3,1,1,1,2,[[136,1,1,1,2]]],[4,1,1,2,3,[[154,1,1,2,3]]],[5,8,8,3,11,[[189,2,2,3,5],[196,3,3,5,8],[201,1,1,8,9],[204,1,1,9,10],[210,1,1,10,11]]],[6,1,1,11,12,[[228,1,1,11,12]]],[10,1,1,12,13,[[309,1,1,12,13]]],[11,1,1,13,14,[[316,1,1,13,14]]],[17,1,1,14,15,[[450,1,1,14,15]]],[18,1,1,15,16,[[495,1,1,15,16]]],[22,2,2,16,18,[[688,1,1,16,17],[719,1,1,17,18]]],[23,4,4,18,22,[[755,1,1,18,19],[778,2,2,19,21],[790,1,1,21,22]]],[25,2,2,22,24,[[817,2,2,22,24]]],[31,1,1,24,25,[[890,1,1,24,25]]],[33,1,1,25,26,[[902,1,1,25,26]]]],[377,4328,4946,5897,5910,6093,6095,6098,6209,6311,6493,7006,9406,9611,13222,14130,17878,18454,19241,19819,19820,20062,20768,20770,22551,22731]]],["passengers",[3,2,[[25,3,2,0,2,[[840,3,2,0,2]]]],[21459,21463]]],["passest",[1,1,[[4,1,1,0,1,[[155,1,1,0,1]]]],[4996]]],["passeth",[12,12,[[1,2,2,0,2,[[79,2,2,0,2]]],[2,1,1,2,3,[[116,1,1,2,3]]],[10,1,1,3,4,[[299,1,1,3,4]]],[11,1,1,4,5,[[324,1,1,4,5]]],[13,1,1,5,6,[[373,1,1,5,6]]],[17,1,1,6,7,[[472,1,1,6,7]]],[18,1,1,7,8,[[580,1,1,7,8]]],[19,1,1,8,9,[[637,1,1,8,9]]],[23,2,2,9,11,[[762,1,1,9,10],[763,1,1,10,11]]],[35,1,1,11,12,[[907,1,1,11,12]]]],[2395,2396,3602,9059,9854,11345,13790,15565,16681,19400,19415,22820]]],["passing",[4,4,[[6,1,1,0,1,[[229,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]],[18,1,1,2,3,[[561,1,1,2,3]]],[25,1,1,3,4,[[840,1,1,3,4]]]],[7042,8413,15265,21462]]],["past",[9,9,[[0,1,1,0,1,[[49,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[9,2,2,2,4,[[277,1,1,2,3],[282,1,1,3,4]]],[10,1,1,4,5,[[308,1,1,4,5]]],[17,1,1,5,6,[[452,1,1,5,6]]],[18,1,1,6,7,[[567,1,1,6,7]]],[21,1,1,7,8,[[672,1,1,7,8]]],[23,1,1,8,9,[[752,1,1,8,9]]]],[1510,4362,8286,8427,9370,13271,15382,17565,19173]]],["perish",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13748]]],["rageth",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16788]]],["raiser",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22056]]],["removed",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1441]]],["smelling",[2,2,[[21,2,2,0,2,[[675,2,2,0,2]]]],[17603,17611]]],["sound",[2,1,[[2,2,1,0,1,[[114,2,1,0,1]]]],[3478]]],["speedily",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8465]]],["taken",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12819]]],["through",[53,49,[[0,2,2,0,2,[[11,1,1,0,1],[29,1,1,1,2]]],[1,2,2,2,4,[[61,2,2,2,4]]],[2,1,1,4,5,[[107,1,1,4,5]]],[3,5,5,5,10,[[130,1,1,5,6],[136,3,3,6,9],[149,1,1,9,10]]],[4,3,3,10,13,[[154,2,2,10,12],[170,1,1,12,13]]],[5,1,1,13,14,[[204,1,1,13,14]]],[8,4,1,14,15,[[244,4,1,14,15]]],[9,1,1,15,16,[[286,1,1,15,16]]],[11,4,4,16,20,[[328,1,1,16,17],[329,1,1,17,18],[333,1,1,18,19],[335,1,1,19,20]]],[15,1,1,20,21,[[421,1,1,20,21]]],[18,3,3,21,24,[[485,1,1,21,22],[555,1,1,22,23],[613,1,1,23,24]]],[22,8,7,24,31,[[701,1,1,24,25],[706,2,2,25,27],[712,1,1,27,28],[721,1,1,28,29],[738,1,1,29,30],[740,2,1,30,31]]],[23,4,4,31,35,[[746,1,1,31,32],[753,2,2,32,34],[776,1,1,34,35]]],[24,1,1,35,36,[[800,1,1,35,36]]],[25,7,7,36,43,[[810,1,1,36,37],[815,1,1,37,38],[817,1,1,38,39],[821,1,1,39,40],[824,1,1,40,41],[834,1,1,41,42],[840,1,1,42,43]]],[26,1,1,43,44,[[860,1,1,43,44]]],[28,1,1,44,45,[[878,1,1,44,45]]],[32,2,2,45,47,[[894,1,1,45,46],[897,1,1,46,47]]],[33,2,2,47,49,[[900,2,2,47,49]]]],[304,862,1828,1839,3272,4115,4328,4330,4331,4768,4942,4966,5394,6302,7395,8568,9966,10000,10125,10175,12522,14020,15126,16210,18087,18179,18182,18313,18507,18836,18864,18971,19185,19187,19766,20441,20626,20746,20783,20921,21044,21308,21463,22046,22360,22608,22641,22696,22699]]],["took",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11990]]],["toward",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6206]]],["transgress",[4,4,[[8,1,1,0,1,[[237,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]],[18,1,1,2,3,[[494,1,1,2,3]]],[23,1,1,3,4,[[746,1,1,3,4]]]],[7264,11697,14106,18985]]],["transgressed",[4,4,[[4,1,1,0,1,[[178,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]],[27,2,2,2,4,[[867,1,1,2,3],[869,1,1,3,4]]]],[5579,18100,22174,22195]]],["transgressest",[1,1,[[16,1,1,0,1,[[428,1,1,0,1]]]],[12750]]],["transgressing",[1,1,[[4,1,1,0,1,[[169,1,1,0,1]]]],[5366]]],["transgressors",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17151]]],["translate",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8091]]],["way",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12779]]],["went",[11,11,[[0,2,2,0,2,[[31,1,1,0,1],[40,1,1,1,2]]],[1,1,1,2,3,[[87,1,1,2,3]]],[3,1,1,3,4,[[138,1,1,3,4]]],[5,1,1,4,5,[[189,1,1,4,5]]],[6,1,1,5,6,[[222,1,1,5,6]]],[10,2,2,6,8,[[312,2,2,6,8]]],[13,1,1,8,9,[[384,1,1,8,9]]],[18,1,1,9,10,[[543,1,1,9,10]]],[19,1,1,10,11,[[651,1,1,10,11]]]],[949,1241,2659,4401,5895,6870,9504,9516,11565,14879,17109]]],["wroth",[5,5,[[4,1,1,0,1,[[155,1,1,0,1]]],[18,4,4,1,5,[[555,3,3,1,4],[566,1,1,4,5]]]],[5001,15134,15172,15175,15364]]]]},{"k":"H5675","v":[["*",[14,12,[[14,14,12,0,12,[[406,5,5,0,5],[407,3,2,5,7],[408,4,3,7,10],[409,2,2,10,12]]]],[12120,12121,12126,12127,12130,12137,12140,12157,12159,12164,12194,12198]]],["beyond",[7,6,[[14,7,6,0,6,[[406,2,2,0,2],[408,3,2,2,4],[409,2,2,4,6]]]],[12127,12130,12157,12159,12194,12198]]],["side",[7,6,[[14,7,6,0,6,[[406,3,3,0,3],[407,3,2,3,5],[408,1,1,5,6]]]],[12120,12121,12126,12137,12140,12164]]]]},{"k":"H5676","v":[["*",[90,83,[[0,2,2,0,2,[[49,2,2,0,2]]],[1,4,4,2,6,[[74,1,1,2,3],[77,1,1,3,4],[81,1,1,4,5],[88,1,1,5,6]]],[3,7,6,6,12,[[137,1,1,6,7],[138,1,1,7,8],[148,3,2,8,10],[150,1,1,10,11],[151,1,1,11,12]]],[4,12,11,12,23,[[153,2,2,12,14],[155,3,3,14,17],[156,4,4,17,21],[163,1,1,21,22],[182,2,1,22,23]]],[5,23,23,23,46,[[187,2,2,23,25],[188,1,1,25,26],[191,1,1,26,27],[193,1,1,27,28],[195,2,2,28,30],[198,2,2,30,32],[199,3,3,32,35],[200,1,1,35,36],[203,1,1,36,37],[204,1,1,37,38],[206,1,1,38,39],[208,2,2,39,41],[210,5,5,41,46]]],[6,4,4,46,50,[[215,1,1,46,47],[217,1,1,47,48],[220,1,1,48,49],[221,1,1,49,50]]],[8,8,5,50,55,[[249,5,3,50,53],[261,1,1,53,54],[266,2,1,54,55]]],[9,1,1,55,56,[[276,1,1,55,56]]],[10,7,5,56,61,[[294,4,2,56,58],[297,2,2,58,60],[304,1,1,60,61]]],[12,4,4,61,65,[[343,1,1,61,62],[349,1,1,62,63],[356,1,1,63,64],[363,1,1,64,65]]],[13,1,1,65,66,[[386,1,1,65,66]]],[14,1,1,66,67,[[410,1,1,66,67]]],[15,3,3,67,70,[[414,2,2,67,69],[415,1,1,69,70]]],[17,1,1,70,71,[[436,1,1,70,71]]],[22,4,4,71,75,[[685,1,1,71,72],[687,1,1,72,73],[696,1,1,73,74],[725,1,1,74,75]]],[23,4,4,75,79,[[766,1,1,75,76],[769,1,1,76,77],[792,1,1,77,78],[793,1,1,78,79]]],[25,3,3,79,82,[[802,2,2,79,81],[811,1,1,81,82]]],[35,1,1,82,83,[[908,1,1,82,83]]]],[1516,1517,2232,2319,2453,2683,4353,4376,4737,4750,4831,4859,4893,4897,4983,4995,5000,5045,5050,5051,5053,5238,5721,5865,5866,5879,5935,5983,6038,6047,6131,6137,6162,6181,6186,6190,6280,6300,6380,6430,6433,6478,6479,6484,6490,6491,6640,6719,6819,6847,7509,7512,7548,7918,8016,8256,8856,8868,8954,8964,9233,10532,10757,10923,11107,11589,12237,12314,12316,12334,12888,17802,17830,17998,18614,19474,19556,20108,20159,20473,20476,20655,22830]]],["+",[33,30,[[1,1,1,0,1,[[74,1,1,0,1]]],[3,7,6,1,7,[[137,1,1,1,2],[138,1,1,2,3],[148,3,2,3,5],[150,1,1,5,6],[151,1,1,6,7]]],[4,2,1,7,8,[[182,2,1,7,8]]],[5,5,5,8,13,[[199,1,1,8,9],[200,1,1,9,10],[204,1,1,10,11],[206,1,1,11,12],[210,1,1,12,13]]],[6,1,1,13,14,[[217,1,1,13,14]]],[8,3,2,14,16,[[249,3,2,14,16]]],[9,1,1,16,17,[[276,1,1,16,17]]],[10,3,3,17,20,[[294,1,1,17,18],[297,1,1,18,19],[304,1,1,19,20]]],[12,4,4,20,24,[[343,1,1,20,21],[349,1,1,21,22],[356,1,1,22,23],[363,1,1,23,24]]],[13,1,1,24,25,[[386,1,1,24,25]]],[17,1,1,25,26,[[436,1,1,25,26]]],[22,1,1,26,27,[[696,1,1,26,27]]],[23,1,1,27,28,[[766,1,1,27,28]]],[25,1,1,28,29,[[811,1,1,28,29]]],[35,1,1,29,30,[[908,1,1,29,30]]]],[2232,4353,4376,4737,4750,4831,4859,5721,6186,6190,6300,6380,6479,6719,7509,7512,8256,8856,8964,9233,10532,10757,10923,11107,11589,12888,17998,19474,20655,22830]]],["beyond",[12,12,[[0,2,2,0,2,[[49,2,2,0,2]]],[4,2,2,2,4,[[155,2,2,2,4]]],[5,2,2,4,6,[[195,1,1,4,5],[199,1,1,5,6]]],[6,1,1,6,7,[[215,1,1,6,7]]],[15,2,2,7,9,[[414,2,2,7,9]]],[22,2,2,9,11,[[685,1,1,9,10],[687,1,1,10,11]]],[23,1,1,11,12,[[769,1,1,11,12]]]],[1516,1517,4995,5000,6047,6162,6640,12314,12316,17802,17830,19556]]],["by",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8954]]],["quarter",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18614]]],["side",[37,34,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[4,8,8,2,10,[[153,2,2,2,4],[155,1,1,4,5],[156,4,4,5,9],[163,1,1,9,10]]],[5,16,16,10,26,[[187,2,2,10,12],[188,1,1,12,13],[191,1,1,13,14],[193,1,1,14,15],[195,1,1,15,16],[198,2,2,16,18],[199,1,1,18,19],[203,1,1,19,20],[208,2,2,20,22],[210,4,4,22,26]]],[6,2,2,26,28,[[220,1,1,26,27],[221,1,1,27,28]]],[8,5,3,28,31,[[249,2,1,28,29],[261,1,1,29,30],[266,2,1,30,31]]],[10,2,1,31,32,[[294,2,1,31,32]]],[14,1,1,32,33,[[410,1,1,32,33]]],[15,1,1,33,34,[[415,1,1,33,34]]]],[2319,2683,4893,4897,4983,5045,5050,5051,5053,5238,5865,5866,5879,5935,5983,6038,6131,6137,6181,6280,6430,6433,6478,6484,6490,6491,6819,6847,7548,7918,8016,8868,12237,12334]]],["sides",[4,4,[[1,1,1,0,1,[[81,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]],[23,2,2,2,4,[[792,1,1,2,3],[793,1,1,3,4]]]],[2453,8868,20108,20159]]],["straight",[2,2,[[25,2,2,0,2,[[802,2,2,0,2]]]],[20473,20476]]]]},{"k":"H5677","v":[["*",[15,15,[[0,7,7,0,7,[[9,3,3,0,3],[10,4,4,3,7]]],[3,1,1,7,8,[[140,1,1,7,8]]],[12,6,6,8,14,[[338,3,3,8,11],[342,1,1,11,12],[345,2,2,12,14]]],[15,1,1,14,15,[[424,1,1,14,15]]]],[255,258,259,280,281,282,283,4470,10270,10271,10277,10441,10587,10597,12644]]],["Eber",[13,13,[[0,7,7,0,7,[[9,3,3,0,3],[10,4,4,3,7]]],[3,1,1,7,8,[[140,1,1,7,8]]],[12,4,4,8,12,[[338,3,3,8,11],[345,1,1,11,12]]],[15,1,1,12,13,[[424,1,1,12,13]]]],[255,258,259,280,281,282,283,4470,10270,10271,10277,10587,12644]]],["Heber",[2,2,[[12,2,2,0,2,[[342,1,1,0,1],[345,1,1,1,2]]]],[10441,10597]]]]},{"k":"H5678","v":[["*",[34,34,[[0,1,1,0,1,[[48,1,1,0,1]]],[17,2,2,1,3,[[456,1,1,1,2],[475,1,1,2,3]]],[18,5,5,3,8,[[484,1,1,3,4],[555,1,1,4,5],[562,1,1,5,6],[567,2,2,6,8]]],[19,5,5,8,13,[[638,2,2,8,10],[641,1,1,10,11],[648,1,1,11,12],[649,1,1,12,13]]],[22,6,6,13,19,[[687,1,1,13,14],[688,1,1,14,15],[691,2,2,15,17],[692,1,1,17,18],[694,1,1,18,19]]],[23,2,2,19,21,[[751,1,1,19,20],[792,1,1,20,21]]],[24,2,2,21,23,[[798,1,1,21,22],[799,1,1,22,23]]],[25,5,5,23,28,[[808,1,1,23,24],[822,1,1,24,25],[823,2,2,25,27],[839,1,1,27,28]]],[27,2,2,28,30,[[866,1,1,28,29],[874,1,1,29,30]]],[29,1,1,30,31,[[879,1,1,30,31]]],[34,1,1,31,32,[[905,1,1,31,32]]],[35,2,2,32,34,[[906,2,2,32,34]]]],[1480,13385,13875,14001,15162,15274,15387,15389,16692,16711,16807,17008,17023,17848,17856,17915,17919,17934,17975,19148,20110,20334,20355,20596,20975,20997,21007,21444,22162,22277,22375,22776,22802,22805]]],["anger",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17023]]],["rage",[2,2,[[17,1,1,0,1,[[475,1,1,0,1]]],[18,1,1,1,2,[[484,1,1,1,2]]]],[13875,14001]]],["wrath",[31,31,[[0,1,1,0,1,[[48,1,1,0,1]]],[17,1,1,1,2,[[456,1,1,1,2]]],[18,4,4,2,6,[[555,1,1,2,3],[562,1,1,3,4],[567,2,2,4,6]]],[19,4,4,6,10,[[638,2,2,6,8],[641,1,1,8,9],[648,1,1,9,10]]],[22,6,6,10,16,[[687,1,1,10,11],[688,1,1,11,12],[691,2,2,12,14],[692,1,1,14,15],[694,1,1,15,16]]],[23,2,2,16,18,[[751,1,1,16,17],[792,1,1,17,18]]],[24,2,2,18,20,[[798,1,1,18,19],[799,1,1,19,20]]],[25,5,5,20,25,[[808,1,1,20,21],[822,1,1,21,22],[823,2,2,22,24],[839,1,1,24,25]]],[27,2,2,25,27,[[866,1,1,25,26],[874,1,1,26,27]]],[29,1,1,27,28,[[879,1,1,27,28]]],[34,1,1,28,29,[[905,1,1,28,29]]],[35,2,2,29,31,[[906,2,2,29,31]]]],[1480,13385,15162,15274,15387,15389,16692,16711,16807,17008,17848,17856,17915,17919,17934,17975,19148,20110,20334,20355,20596,20975,20997,21007,21444,22162,22277,22375,22776,22802,22805]]]]},{"k":"H5679","v":[["boat",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8529]]]]},{"k":"H5680","v":[["*",[34,32,[[0,6,6,0,6,[[13,1,1,0,1],[38,2,2,1,3],[39,1,1,3,4],[40,1,1,4,5],[42,1,1,5,6]]],[1,14,14,6,20,[[50,3,3,6,9],[51,4,4,9,13],[52,1,1,13,14],[54,1,1,14,15],[56,1,1,15,16],[58,2,2,16,18],[59,1,1,18,19],[70,1,1,19,20]]],[4,2,1,20,21,[[167,2,1,20,21]]],[8,8,8,21,29,[[239,2,2,21,23],[248,3,3,23,26],[249,2,2,26,28],[264,1,1,28,29]]],[23,3,2,29,31,[[778,3,2,29,31]]],[31,1,1,31,32,[[889,1,1,31,32]]]],[349,1163,1166,1187,1207,1322,1547,1548,1551,1560,1561,1565,1567,1597,1635,1701,1743,1755,1780,2079,5331,7303,7306,7488,7492,7504,7519,7529,7970,19810,19815,22540]]],["+",[3,3,[[0,1,1,0,1,[[38,1,1,0,1]]],[1,2,2,1,3,[[51,2,2,1,3]]]],[1163,1560,1565]]],["Hebrew",[8,8,[[0,3,3,0,3,[[13,1,1,0,1],[38,1,1,1,2],[40,1,1,2,3]]],[1,2,2,3,5,[[50,1,1,3,4],[70,1,1,4,5]]],[23,2,2,5,7,[[778,2,2,5,7]]],[31,1,1,7,8,[[889,1,1,7,8]]]],[349,1166,1207,1547,2079,19810,19815,22540]]],["Hebrewess",[1,1,[[23,1,1,0,1,[[778,1,1,0,1]]]],[19810]]],["Hebrews",[17,17,[[0,2,2,0,2,[[39,1,1,0,1],[42,1,1,1,2]]],[1,7,7,2,9,[[51,1,1,2,3],[52,1,1,3,4],[54,1,1,4,5],[56,1,1,5,6],[58,2,2,6,8],[59,1,1,8,9]]],[8,8,8,9,17,[[239,2,2,9,11],[248,3,3,11,14],[249,2,2,14,16],[264,1,1,16,17]]]],[1187,1322,1567,1597,1635,1701,1743,1755,1780,7303,7306,7488,7492,7504,7519,7529,7970]]],["man",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5331]]],["woman",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5331]]],["women",[3,3,[[1,3,3,0,3,[[50,2,2,0,2],[51,1,1,2,3]]]],[1548,1551,1561]]]]},{"k":"H5681","v":[["Ibri",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11042]]]]},{"k":"H5682","v":[["Abarim",[4,4,[[3,3,3,0,3,[[143,1,1,0,1],[149,2,2,1,3]]],[4,1,1,3,4,[[184,1,1,3,4]]]],[4566,4807,4808,5807]]]]},{"k":"H5683","v":[["Hebron",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6349]]]]},{"k":"H5684","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4794,4795]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4795]]],["Ebronah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4794]]]]},{"k":"H5685","v":[["rotten",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22308]]]]},{"k":"H5686","v":[["up",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22667]]]]},{"k":"H5687","v":[["thick",[4,4,[[2,1,1,0,1,[[112,1,1,0,1]]],[15,1,1,1,2,[[420,1,1,1,2]]],[25,2,2,2,4,[[807,1,1,2,3],[821,1,1,3,4]]]],[3442,12508,20576,20923]]]]},{"k":"H5688","v":[["*",[24,23,[[1,8,7,0,7,[[77,5,4,0,4],[88,3,3,4,7]]],[6,4,4,7,11,[[225,2,2,7,9],[226,2,2,9,11]]],[17,1,1,11,12,[[474,1,1,11,12]]],[18,3,3,12,15,[[479,1,1,12,13],[595,1,1,13,14],[606,1,1,14,15]]],[22,1,1,15,16,[[683,1,1,15,16]]],[25,6,6,16,22,[[804,1,1,16,17],[805,1,1,17,18],[820,1,1,18,19],[832,3,3,19,22]]],[27,1,1,22,23,[[872,1,1,22,23]]]],[2307,2315,2317,2318,2679,2681,2682,6942,6943,6960,6961,13844,13948,15896,16136,17757,20527,20537,20892,21233,21240,21244,22244]]],["band",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13844]]],["bands",[3,3,[[25,2,2,0,2,[[804,1,1,0,1],[805,1,1,1,2]]],[27,1,1,2,3,[[872,1,1,2,3]]]],[20527,20537,22244]]],["boughs",[3,3,[[25,3,3,0,3,[[832,3,3,0,3]]]],[21233,21240,21244]]],["branches",[1,1,[[25,1,1,0,1,[[820,1,1,0,1]]]],[20892]]],["chains",[2,2,[[1,2,2,0,2,[[88,2,2,0,2]]]],[2681,2682]]],["cords",[5,5,[[6,2,2,0,2,[[225,2,2,0,2]]],[18,3,3,2,5,[[479,1,1,2,3],[595,1,1,3,4],[606,1,1,4,5]]]],[6942,6943,13948,15896,16136]]],["rope",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17757]]],["ropes",[2,2,[[6,2,2,0,2,[[226,2,2,0,2]]]],[6960,6961]]],["wreathen",[6,5,[[1,6,5,0,5,[[77,5,4,0,4],[88,1,1,4,5]]]],[2307,2315,2317,2318,2679]]]]},{"k":"H5689","v":[["*",[7,7,[[23,1,1,0,1,[[748,1,1,0,1]]],[25,6,6,1,7,[[824,6,6,1,7]]]],[19057,21012,21014,21016,21019,21023,21027]]],["doted",[6,6,[[25,6,6,0,6,[[824,6,6,0,6]]]],[21012,21014,21016,21019,21023,21027]]],["lovers",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19057]]]]},{"k":"H5690","v":[["*",[2,2,[[25,2,2,0,2,[[834,2,2,0,2]]]],[21311,21312]]],["love",[1,1,[[25,1,1,0,1,[[834,1,1,0,1]]]],[21311]]],["lovely",[1,1,[[25,1,1,0,1,[[834,1,1,0,1]]]],[21312]]]]},{"k":"H5691","v":[["love",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21018]]]]},{"k":"H5692","v":[["*",[7,7,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[3,1,1,2,3,[[127,1,1,2,3]]],[10,2,2,3,5,[[307,1,1,3,4],[309,1,1,4,5]]],[25,1,1,5,6,[[805,1,1,5,6]]],[27,1,1,6,7,[[868,1,1,6,7]]]],[430,1855,4032,9330,9393,20541,22186]]],["cake",[3,3,[[10,2,2,0,2,[[307,1,1,0,1],[309,1,1,1,2]]],[27,1,1,2,3,[[868,1,1,2,3]]]],[9330,9393,22186]]],["cakes",[3,3,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[25,1,1,2,3,[[805,1,1,2,3]]]],[1855,4032,20541]]],["hearth",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[430]]]]},{"k":"H5693","v":[["swallow",[2,2,[[22,1,1,0,1,[[716,1,1,0,1]]],[23,1,1,1,2,[[752,1,1,1,2]]]],[18404,19160]]]]},{"k":"H5694","v":[["earrings",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[4714,20774]]]]},{"k":"H5695","v":[["*",[35,35,[[1,6,6,0,6,[[81,6,6,0,6]]],[2,3,3,6,9,[[98,3,3,6,9]]],[4,2,2,9,11,[[161,2,2,9,11]]],[8,1,1,11,12,[[263,1,1,11,12]]],[10,2,2,12,14,[[302,2,2,12,14]]],[11,2,2,14,16,[[322,1,1,14,15],[329,1,1,15,16]]],[13,2,2,16,18,[[377,1,1,16,17],[379,1,1,17,18]]],[15,1,1,18,19,[[421,1,1,18,19]]],[18,3,3,19,22,[[506,1,1,19,20],[545,1,1,20,21],[583,1,1,21,22]]],[22,2,2,22,24,[[689,1,1,22,23],[705,1,1,23,24]]],[23,4,4,24,28,[[775,1,1,24,25],[778,2,2,25,27],[790,1,1,27,28]]],[25,1,1,28,29,[[802,1,1,28,29]]],[27,3,3,29,32,[[869,2,2,29,31],[874,1,1,31,32]]],[29,1,1,32,33,[[884,1,1,32,33]]],[32,1,1,33,34,[[898,1,1,33,34]]],[38,1,1,34,35,[[928,1,1,34,35]]]],[2442,2446,2457,2458,2462,2473,2955,2956,2961,5173,5178,7966,9179,9183,9822,9999,11429,11461,12529,14314,14930,15670,17890,18161,19709,19819,19820,20066,20471,22199,22200,22268,22454,22654,23140]]],["bullock",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19709]]],["bullocks",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20066]]],["calf",[21,21,[[1,6,6,0,6,[[81,6,6,0,6]]],[2,3,3,6,9,[[98,3,3,6,9]]],[4,2,2,9,11,[[161,2,2,9,11]]],[8,1,1,11,12,[[263,1,1,11,12]]],[15,1,1,12,13,[[421,1,1,12,13]]],[18,2,2,13,15,[[506,1,1,13,14],[583,1,1,14,15]]],[22,2,2,15,17,[[689,1,1,15,16],[705,1,1,16,17]]],[23,2,2,17,19,[[778,2,2,17,19]]],[27,2,2,19,21,[[869,2,2,19,21]]]],[2442,2446,2457,2458,2462,2473,2955,2956,2961,5173,5178,7966,12529,14314,15670,17890,18161,19819,19820,22199,22200]]],["calf's",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20471]]],["calves",[11,11,[[10,2,2,0,2,[[302,2,2,0,2]]],[11,2,2,2,4,[[322,1,1,2,3],[329,1,1,3,4]]],[13,2,2,4,6,[[377,1,1,4,5],[379,1,1,5,6]]],[18,1,1,6,7,[[545,1,1,6,7]]],[27,1,1,7,8,[[874,1,1,7,8]]],[29,1,1,8,9,[[884,1,1,8,9]]],[32,1,1,9,10,[[898,1,1,9,10]]],[38,1,1,10,11,[[928,1,1,10,11]]]],[9179,9183,9822,9999,11429,11461,14930,22268,22454,22654,23140]]]]},{"k":"H5696","v":[["round",[6,5,[[10,5,4,0,4,[[297,4,3,0,3],[300,1,1,3,4]]],[13,1,1,4,5,[[370,1,1,4,5]]]],[8957,8965,8969,9098,11248]]]]},{"k":"H5697","v":[["*",[14,13,[[0,1,1,0,1,[[14,1,1,0,1]]],[4,4,3,1,4,[[173,4,3,1,4]]],[6,1,1,4,5,[[224,1,1,4,5]]],[8,1,1,5,6,[[251,1,1,5,6]]],[22,2,2,6,8,[[685,1,1,6,7],[693,1,1,7,8]]],[23,3,3,8,11,[[790,1,1,8,9],[792,1,1,9,10],[794,1,1,10,11]]],[27,2,2,11,13,[[871,2,2,11,13]]]],[369,5450,5451,5453,6927,7597,17803,17965,20065,20114,20177,22230,22236]]],["+",[2,2,[[4,1,1,0,1,[[173,1,1,0,1]]],[8,1,1,1,2,[[251,1,1,1,2]]]],[5450,7597]]],["calves",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22230]]],["cow",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17803]]],["heifer",[9,9,[[0,1,1,0,1,[[14,1,1,0,1]]],[4,2,2,1,3,[[173,2,2,1,3]]],[6,1,1,3,4,[[224,1,1,3,4]]],[22,1,1,4,5,[[693,1,1,4,5]]],[23,3,3,5,8,[[790,1,1,5,6],[792,1,1,6,7],[794,1,1,7,8]]],[27,1,1,8,9,[[871,1,1,8,9]]]],[369,5451,5453,6927,17965,20065,20114,20177,22236]]],["heifer's",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5451]]]]},{"k":"H5698","v":[["Eglah",[2,2,[[9,1,1,0,1,[[269,1,1,0,1]]],[12,1,1,1,2,[[340,1,1,1,2]]]],[8086,10364]]]]},{"k":"H5699","v":[["*",[25,20,[[0,4,4,0,4,[[44,3,3,0,3],[45,1,1,3,4]]],[3,5,4,4,8,[[123,5,4,4,8]]],[8,7,5,8,13,[[241,7,5,8,13]]],[9,2,1,13,14,[[272,2,1,13,14]]],[12,2,1,14,15,[[350,2,1,14,15]]],[18,1,1,15,16,[[523,1,1,15,16]]],[22,3,3,16,19,[[683,1,1,16,17],[706,2,2,17,19]]],[29,1,1,19,20,[[880,1,1,19,20]]]],[1377,1379,1385,1391,3853,3856,3857,3858,7338,7339,7341,7342,7345,8160,10767,14623,17757,18191,18192,22392]]],["cart",[15,11,[[8,7,5,0,5,[[241,7,5,0,5]]],[9,2,1,5,6,[[272,2,1,5,6]]],[12,2,1,6,7,[[350,2,1,6,7]]],[22,3,3,7,10,[[683,1,1,7,8],[706,2,2,8,10]]],[29,1,1,10,11,[[880,1,1,10,11]]]],[7338,7339,7341,7342,7345,8160,10767,17757,18191,18192,22392]]],["chariot",[1,1,[[18,1,1,0,1,[[523,1,1,0,1]]]],[14623]]],["wagon",[1,1,[[3,1,1,0,1,[[123,1,1,0,1]]]],[3853]]],["wagons",[8,8,[[0,4,4,0,4,[[44,3,3,0,3],[45,1,1,3,4]]],[3,4,4,4,8,[[123,4,4,4,8]]]],[1377,1379,1385,1391,3853,3856,3857,3858]]]]},{"k":"H5700","v":[["*",[13,12,[[5,8,8,0,8,[[196,6,6,0,6],[198,1,1,6,7],[201,1,1,7,8]]],[6,5,4,8,12,[[213,5,4,8,12]]]],[6067,6069,6087,6098,6100,6101,6142,6241,6580,6582,6583,6585]]],["+",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6100]]],["Eglon",[12,11,[[5,7,7,0,7,[[196,5,5,0,5],[198,1,1,5,6],[201,1,1,6,7]]],[6,5,4,7,11,[[213,5,4,7,11]]]],[6067,6069,6087,6098,6101,6142,6241,6580,6582,6583,6585]]]]},{"k":"H5701","v":[["grieved",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13582]]]]},{"k":"H5702","v":[["stay",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7140]]]]},{"k":"H5703","v":[["*",[48,48,[[1,1,1,0,1,[[64,1,1,0,1]]],[3,2,2,1,3,[[140,2,2,1,3]]],[17,2,2,3,5,[[454,1,1,3,4],[455,1,1,4,5]]],[18,29,29,5,34,[[486,2,2,5,7],[487,1,1,7,8],[496,1,1,8,9],[498,2,2,9,11],[499,1,1,11,12],[514,1,1,12,13],[522,2,2,13,15],[525,1,1,15,16],[529,1,1,16,17],[538,1,1,17,18],[560,1,1,18,19],[566,1,1,19,20],[569,1,1,20,21],[581,1,1,21,22],[588,3,3,22,25],[589,2,2,25,27],[596,1,1,27,28],[609,2,2,28,30],[622,3,3,30,33],[625,1,1,33,34]]],[19,2,2,34,36,[[639,1,1,34,35],[656,1,1,35,36]]],[22,7,7,36,43,[[687,1,1,36,37],[704,1,1,37,38],[708,1,1,38,39],[723,1,1,39,40],[735,1,1,40,41],[742,1,1,41,42],[743,1,1,42,43]]],[26,1,1,43,44,[[861,1,1,43,44]]],[29,1,1,44,45,[[879,1,1,44,45]]],[32,2,2,45,47,[[896,1,1,45,46],[899,1,1,46,47]]],[34,1,1,47,48,[[905,1,1,47,48]]]],[1938,4466,4470,13321,13330,14026,14039,14057,14177,14195,14197,14230,14479,14603,14614,14648,14718,14827,15258,15355,15418,15576,15796,15801,15803,15806,15812,15942,16163,16165,16321,16322,16341,16377,16738,17238,17835,18134,18225,18578,18780,18894,18915,22084,22375,22625,22682,22774]]],["+",[8,8,[[18,5,5,0,5,[[560,1,1,0,1],[569,1,1,1,2],[581,1,1,2,3],[609,2,2,3,5]]],[22,3,3,5,8,[[704,1,1,5,6],[723,1,1,6,7],[743,1,1,7,8]]]],[15258,15418,15576,16163,16165,18134,18578,18915]]],["eternity",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18780]]],["ever",[35,35,[[1,1,1,0,1,[[64,1,1,0,1]]],[3,2,2,1,3,[[140,2,2,1,3]]],[17,1,1,3,4,[[454,1,1,3,4]]],[18,24,24,4,28,[[486,2,2,4,6],[487,1,1,6,7],[496,1,1,7,8],[498,2,2,8,10],[499,1,1,10,11],[514,1,1,11,12],[522,2,2,12,14],[525,1,1,14,15],[529,1,1,15,16],[538,1,1,16,17],[566,1,1,17,18],[588,3,3,18,21],[589,2,2,21,23],[596,1,1,23,24],[622,3,3,24,27],[625,1,1,27,28]]],[19,2,2,28,30,[[639,1,1,28,29],[656,1,1,29,30]]],[22,2,2,30,32,[[708,1,1,30,31],[742,1,1,31,32]]],[26,1,1,32,33,[[861,1,1,32,33]]],[32,2,2,33,35,[[896,1,1,33,34],[899,1,1,34,35]]]],[1938,4466,4470,13321,14026,14039,14057,14177,14195,14197,14230,14479,14603,14614,14648,14718,14827,15355,15796,15801,15803,15806,15812,15942,16321,16322,16341,16377,16738,17238,18225,18894,22084,22625,22682]]],["everlasting",[2,2,[[22,1,1,0,1,[[687,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[17835,22774]]],["old",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13330]]],["perpetually",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22375]]]]},{"k":"H5704","v":[["*",[1224,1099,[[0,64,56,0,56,[[2,1,1,0,1],[5,3,1,1,2],[6,3,1,2,3],[7,2,2,3,5],[9,2,1,5,6],[10,1,1,6,7],[11,2,1,7,8],[12,4,3,8,11],[13,4,4,11,15],[14,2,2,15,17],[18,3,3,17,20],[21,1,1,20,21],[23,2,2,21,23],[24,1,1,23,24],[25,2,2,24,26],[26,4,4,26,30],[27,1,1,30,31],[28,1,1,31,32],[30,2,2,32,34],[31,3,3,34,37],[32,3,2,37,39],[33,1,1,39,40],[34,1,1,40,41],[37,3,3,41,44],[38,1,1,44,45],[40,1,1,45,46],[42,1,1,46,47],[43,1,1,47,48],[45,1,1,48,49],[46,2,2,49,51],[47,2,2,51,53],[48,2,2,53,55],[49,1,1,55,56]]],[1,49,44,56,100,[[56,1,1,56,57],[58,1,1,57,58],[59,4,4,58,62],[60,2,2,62,64],[61,8,7,64,71],[63,1,1,71,72],[64,2,1,72,73],[65,7,6,73,79],[66,1,1,79,80],[67,2,2,80,82],[71,4,3,82,85],[72,4,3,85,88],[73,1,1,88,89],[76,2,2,89,91],[77,1,1,91,92],[78,1,1,92,93],[81,1,1,93,94],[82,2,2,94,96],[83,2,2,96,98],[87,1,1,98,99],[89,1,1,99,100]]],[2,56,52,100,152,[[95,1,1,100,101],[96,1,1,101,102],[97,1,1,102,103],[100,9,8,103,111],[101,1,1,111,112],[102,1,1,112,113],[103,1,1,113,114],[104,15,14,114,128],[105,1,1,128,129],[106,1,1,129,130],[108,2,2,130,132],[111,3,3,132,135],[112,4,3,135,138],[113,1,1,138,139],[114,8,7,139,146],[115,1,1,146,147],[116,5,5,147,152]]],[3,57,51,152,203,[[119,1,1,152,153],[120,7,7,153,160],[121,1,1,160,161],[122,2,2,161,163],[124,2,1,163,164],[125,3,3,164,167],[126,1,1,167,168],[127,2,1,168,169],[128,1,1,169,170],[129,3,3,170,173],[130,6,5,173,178],[135,5,5,178,183],[136,1,1,183,184],[137,8,5,184,189],[138,1,1,189,190],[139,2,2,190,192],[140,1,1,192,193],[148,5,5,193,198],[149,1,1,198,199],[151,4,4,199,203]]],[4,73,65,203,268,[[153,8,7,203,210],[154,8,7,210,217],[155,9,7,217,224],[156,5,5,224,229],[159,3,3,229,232],[161,3,2,232,234],[162,1,1,234,235],[163,5,4,235,239],[164,2,2,239,241],[165,1,1,241,242],[172,1,1,242,243],[174,1,1,243,244],[175,1,1,244,245],[180,14,12,245,257],[181,3,3,257,260],[182,1,1,260,261],[183,2,2,261,263],[184,1,1,263,264],[186,4,4,264,268]]],[5,94,79,268,347,[[187,3,2,268,270],[188,2,2,270,272],[189,4,4,272,276],[190,5,4,276,280],[191,4,4,280,284],[192,2,2,284,286],[193,5,4,286,290],[194,7,6,290,296],[195,1,1,296,297],[196,10,8,297,305],[197,6,3,305,308],[198,6,5,308,313],[199,13,11,313,324],[200,2,2,324,326],[201,3,3,326,329],[202,4,3,329,332],[203,2,1,332,333],[204,1,1,333,334],[205,5,5,334,339],[206,3,2,339,341],[208,2,2,341,343],[209,4,4,343,347]]],[6,61,52,347,399,[[211,2,2,347,349],[213,3,3,349,352],[214,3,3,352,355],[215,1,1,355,356],[216,5,4,356,360],[217,5,3,360,363],[219,3,2,363,365],[220,1,1,365,366],[221,8,5,366,371],[223,1,1,371,372],[224,1,1,372,373],[225,4,3,373,376],[226,3,3,376,379],[227,1,1,379,380],[228,5,5,380,385],[229,8,7,385,392],[230,6,6,392,398],[231,1,1,398,399]]],[7,10,10,399,409,[[232,2,2,399,401],[233,4,4,401,405],[234,4,4,405,409]]],[8,74,62,409,471,[[236,6,4,409,413],[237,2,2,413,415],[238,4,4,415,419],[240,1,1,419,420],[241,4,2,420,422],[242,3,3,422,425],[243,1,1,425,426],[244,2,2,426,428],[245,2,2,428,430],[246,1,1,430,431],[247,1,1,431,432],[248,1,1,432,433],[249,5,5,433,438],[250,4,4,438,442],[251,2,2,442,444],[252,4,1,444,445],[253,3,1,445,446],[254,2,2,446,448],[255,8,8,448,456],[257,1,1,456,457],[260,4,3,457,460],[262,2,2,460,462],[264,3,3,462,465],[265,8,6,465,471]]],[9,50,47,471,518,[[267,1,1,471,472],[268,3,3,472,475],[269,3,3,475,478],[270,2,2,478,480],[272,4,4,480,484],[273,8,7,484,491],[276,2,2,491,493],[277,1,1,493,494],[278,1,1,494,495],[279,1,1,495,496],[280,1,1,496,497],[281,3,3,497,500],[282,1,1,500,501],[283,4,3,501,504],[284,1,1,504,505],[285,3,3,505,508],[286,3,3,508,511],[287,1,1,511,512],[288,2,2,512,514],[289,2,2,514,516],[290,3,2,516,518]]],[10,46,43,518,561,[[291,1,1,518,519],[292,3,3,519,522],[293,2,2,522,524],[294,6,5,524,529],[295,2,2,529,531],[296,2,2,531,533],[297,4,3,533,536],[298,2,2,536,538],[299,3,3,538,541],[300,2,2,541,543],[301,2,2,543,545],[302,2,2,545,547],[304,1,1,547,548],[305,1,1,548,549],[307,2,2,549,551],[308,7,6,551,557],[309,1,1,557,558],[312,3,3,558,561]]],[11,54,52,561,613,[[314,3,3,561,564],[315,1,1,564,565],[316,3,3,565,568],[318,2,2,568,570],[319,5,5,570,575],[320,4,4,575,579],[321,3,3,579,582],[322,5,5,582,587],[323,1,1,587,588],[325,3,3,588,591],[326,3,3,591,594],[327,1,1,594,595],[328,2,2,595,597],[329,6,5,597,602],[330,4,3,602,605],[331,1,1,605,606],[332,1,1,606,607],[333,2,2,607,609],[335,1,1,609,610],[336,2,2,610,612],[337,1,1,612,613]]],[12,48,46,613,659,[[341,6,6,613,619],[342,6,6,619,625],[343,1,1,625,626],[344,1,1,626,627],[346,1,1,627,628],[348,1,1,628,629],[349,4,4,629,633],[350,3,3,633,636],[351,1,1,636,637],[352,2,2,637,639],[353,1,1,639,640],[354,8,7,640,647],[356,2,2,647,649],[358,2,2,649,651],[359,1,1,651,652],[360,3,2,652,654],[365,4,4,654,658],[366,1,1,658,659]]],[13,54,47,659,706,[[371,1,1,659,660],[373,2,2,660,662],[374,3,2,662,664],[375,3,2,664,666],[376,1,1,666,667],[378,1,1,667,668],[380,2,2,668,670],[381,3,2,670,672],[382,2,2,672,674],[383,1,1,674,675],[384,4,4,675,679],[385,1,1,679,680],[386,1,1,680,681],[387,2,2,681,683],[389,1,1,683,684],[390,1,1,684,685],[391,2,2,685,687],[392,6,4,687,691],[394,1,1,691,692],[395,4,3,692,695],[396,2,2,695,697],[397,2,2,697,699],[398,1,1,699,700],[400,1,1,700,701],[401,2,2,701,703],[402,4,3,703,706]]],[14,13,11,706,717,[[404,1,1,706,707],[405,1,1,707,708],[406,1,1,708,709],[410,1,1,709,710],[411,6,5,710,715],[412,3,2,715,717]]],[15,39,33,717,750,[[414,3,3,717,720],[415,16,11,720,731],[416,3,3,731,734],[417,1,1,734,735],[418,1,1,735,736],[419,3,2,736,738],[420,3,3,738,741],[421,2,2,741,743],[423,1,1,743,744],[424,4,4,744,748],[425,2,2,748,750]]],[16,8,8,750,758,[[426,1,1,750,751],[427,1,1,751,752],[428,1,1,752,753],[429,1,1,753,754],[430,2,2,754,756],[432,1,1,756,757],[433,1,1,757,758]]],[17,31,29,758,787,[[437,1,1,758,759],[439,1,1,759,760],[440,1,1,760,761],[441,1,1,761,762],[442,2,2,762,764],[443,2,2,764,766],[444,2,1,766,767],[446,1,1,767,768],[449,4,4,768,772],[453,1,1,772,773],[454,1,1,773,774],[455,1,1,774,775],[457,1,1,775,776],[458,1,1,776,777],[460,1,1,777,778],[461,1,1,778,779],[462,1,1,779,780],[466,1,1,780,781],[467,3,2,781,783],[469,1,1,783,784],[473,3,3,784,787]]],[18,84,77,787,864,[[481,1,1,787,788],[483,1,1,788,789],[490,4,2,789,791],[495,2,2,791,793],[505,1,1,793,794],[513,1,1,794,795],[515,2,2,795,797],[517,1,1,797,798],[518,1,1,798,799],[519,1,1,799,800],[523,1,1,800,801],[525,1,1,801,802],[526,2,1,802,803],[527,1,1,803,804],[534,3,2,804,806],[537,1,1,806,807],[539,1,1,807,808],[542,1,1,808,809],[546,1,1,809,810],[548,4,3,810,813],[549,3,2,813,815],[550,1,1,815,816],[551,2,2,816,818],[556,1,1,818,819],[557,2,2,819,821],[559,1,1,821,822],[560,1,1,822,823],[566,2,2,823,825],[567,3,3,825,828],[569,1,1,828,829],[571,4,3,829,832],[577,1,1,832,833],[580,1,1,833,834],[581,1,1,834,835],[582,1,1,835,836],[583,2,2,836,838],[584,1,1,838,839],[585,2,2,839,841],[587,1,1,841,842],[589,1,1,842,843],[590,2,2,843,845],[592,1,1,845,846],[595,1,1,846,847],[596,4,4,847,851],[598,1,1,851,852],[600,1,1,852,853],[602,1,1,853,854],[608,1,1,854,855],[609,3,3,855,858],[610,1,1,858,859],[612,1,1,859,860],[614,1,1,860,861],[618,1,1,861,862],[624,2,2,862,864]]],[19,9,9,864,873,[[628,1,1,864,865],[631,1,1,865,866],[633,2,2,866,868],[634,2,2,868,870],[635,1,1,870,871],[639,1,1,871,872],[655,1,1,872,873]]],[20,5,5,873,878,[[660,1,1,873,874],[661,1,1,874,875],[670,3,3,875,878]]],[21,7,6,878,884,[[671,1,1,878,879],[672,1,1,879,880],[673,3,2,880,882],[674,1,1,882,883],[678,1,1,883,884]]],[22,51,45,884,929,[[679,1,1,884,885],[683,1,1,885,886],[684,2,1,886,887],[686,1,1,887,888],[687,2,2,888,890],[691,1,1,890,891],[693,3,3,891,894],[694,1,1,894,895],[697,1,1,895,896],[700,2,2,896,898],[703,1,1,898,899],[704,4,3,899,902],[705,1,1,902,903],[708,3,3,903,906],[710,3,3,906,909],[712,1,1,909,910],[714,1,1,910,911],[715,1,1,911,912],[716,3,2,912,914],[717,1,1,914,915],[720,1,1,915,916],[723,2,2,916,918],[724,2,1,918,919],[725,1,1,919,920],[726,1,1,920,921],[727,1,1,921,922],[735,2,1,922,923],[737,1,1,923,924],[740,3,2,924,926],[742,2,2,926,928],[743,1,1,928,929]]],[23,69,61,929,990,[[745,2,1,929,930],[747,1,1,930,931],[748,4,4,931,935],[750,2,1,935,936],[751,2,2,936,938],[752,2,1,938,939],[753,1,1,939,940],[755,1,1,940,941],[756,2,2,941,943],[761,1,1,943,944],[767,3,2,944,946],[768,1,1,946,947],[769,4,4,947,951],[771,3,3,951,954],[774,2,1,954,955],[775,4,3,955,958],[776,3,3,958,961],[777,2,2,961,963],[779,2,2,963,965],[780,2,2,965,967],[781,1,1,967,968],[782,1,1,968,969],[786,2,2,969,971],[787,1,1,971,972],[788,3,3,972,975],[791,2,2,975,977],[792,5,3,977,980],[793,2,2,980,982],[794,1,1,982,983],[795,3,3,983,986],[796,4,4,986,990]]],[24,3,3,990,993,[[799,2,2,990,992],[801,1,1,992,993]]],[25,42,40,993,1033,[[803,1,1,993,994],[805,4,4,994,998],[811,1,1,998,999],[821,2,2,999,1001],[822,1,1,1001,1002],[823,1,1,1002,1003],[825,1,1,1003,1004],[828,1,1,1004,1005],[829,2,2,1005,1007],[830,1,1,1007,1008],[834,1,1,1008,1009],[835,1,1,1009,1010],[840,1,1,1010,1011],[842,3,3,1011,1014],[844,2,1,1014,1015],[847,2,2,1015,1017],[848,3,3,1017,1020],[849,14,13,1020,1033]]],[26,21,21,1033,1054,[[850,1,1,1033,1034],[857,6,6,1034,1040],[858,3,3,1040,1043],[859,1,1,1043,1044],[860,6,6,1044,1050],[861,4,4,1050,1054]]],[27,5,5,1054,1059,[[866,1,1,1054,1055],[868,1,1,1055,1056],[869,1,1,1056,1057],[871,1,1,1057,1058],[875,1,1,1058,1059]]],[28,2,2,1059,1061,[[877,2,2,1059,1061]]],[29,8,7,1061,1068,[[882,5,5,1061,1066],[884,1,1,1066,1067],[886,2,1,1067,1068]]],[30,2,2,1068,1070,[[888,2,2,1068,1070]]],[31,5,5,1070,1075,[[890,1,1,1070,1071],[891,1,1,1071,1072],[892,3,3,1072,1075]]],[32,15,12,1075,1087,[[893,5,3,1075,1078],[896,4,4,1078,1082],[897,2,2,1082,1084],[898,1,1,1084,1085],[899,3,2,1085,1087]]],[33,1,1,1087,1088,[[900,1,1,1087,1088]]],[34,3,3,1088,1091,[[903,1,1,1088,1089],[904,1,1,1089,1090],[905,1,1,1090,1091]]],[35,1,1,1091,1092,[[907,1,1,1091,1092]]],[36,1,1,1092,1093,[[910,1,1,1092,1093]]],[37,6,3,1093,1096,[[911,1,1,1093,1094],[919,2,1,1094,1095],[924,3,1,1095,1096]]],[38,3,3,1096,1099,[[925,2,2,1096,1098],[927,1,1,1098,1099]]]],[74,144,182,188,190,253,297,304,321,330,333,342,350,351,359,376,378,479,494,495,552,610,624,676,705,725,760,761,771,772,788,803,897,902,932,952,960,963,974,985,1031,1120,1130,1136,1165,1244,1315,1352,1420,1441,1446,1456,1466,1483,1499,1516,1701,1760,1780,1783,1784,1803,1811,1813,1822,1826,1831,1834,1838,1840,1845,1917,1936,1966,1967,1970,1971,1975,1982,1995,2012,2013,2117,2122,2139,2162,2174,2175,2191,2277,2293,2335,2370,2458,2481,2495,2530,2531,2637,2744,2858,2894,2950,3021,3022,3024,3025,3028,3029,3036,3037,3048,3064,3157,3173,3174,3175,3176,3178,3179,3184,3185,3186,3187,3189,3190,3191,3195,3218,3250,3287,3294,3373,3375,3399,3416,3418,3434,3449,3491,3497,3498,3499,3509,3519,3521,3542,3573,3575,3576,3588,3593,3705,3746,3766,3773,3778,3782,3786,3790,3795,3827,3828,3943,3977,3980,3986,4009,4044,4074,4096,4097,4098,4119,4127,4135,4141,4153,4296,4297,4299,4310,4311,4328,4362,4364,4366,4370,4375,4405,4434,4440,4468,4727,4731,4735,4736,4739,4809,4857,4870,4873,4877,4894,4899,4911,4912,4916,4923,4936,4943,4952,4953,4960,4961,4967,4974,4978,4983,4985,4989,4991,4992,4995,5015,5034,5036,5052,5053,5131,5134,5135,5164,5178,5194,5212,5213,5220,5232,5249,5268,5279,5447,5472,5503,5631,5632,5633,5635,5646,5656,5657,5659,5662,5663,5672,5675,5683,5690,5708,5710,5752,5758,5780,5840,5841,5842,5845,5855,5866,5885,5891,5894,5901,5908,5910,5917,5919,5920,5933,5935,5940,5942,5943,5959,5974,5981,5982,5989,6002,6008,6024,6026,6028,6030,6031,6064,6074,6075,6077,6084,6090,6091,6097,6105,6115,6121,6124,6131,6132,6133,6135,6137,6157,6158,6159,6160,6163,6164,6165,6167,6179,6180,6181,6196,6201,6207,6249,6265,6268,6270,6275,6289,6296,6329,6331,6349,6350,6354,6378,6381,6429,6443,6468,6469,6473,6475,6530,6535,6571,6593,6594,6610,6615,6623,6630,6658,6672,6678,6685,6707,6716,6718,6794,6806,6815,6842,6845,6848,6851,6862,6891,6914,6934,6943,6948,6951,6952,6962,6988,6994,6995,7005,7006,7023,7032,7034,7036,7042,7049,7050,7054,7055,7077,7080,7097,7099,7102,7104,7140,7146,7156,7166,7170,7172,7175,7185,7186,7190,7226,7228,7234,7235,7245,7270,7289,7290,7291,7296,7324,7343,7349,7363,7364,7366,7377,7400,7404,7421,7426,7456,7462,7498,7517,7527,7528,7532,7544,7563,7565,7578,7595,7596,7606,7670,7680,7728,7729,7735,7738,7745,7753,7758,7767,7771,7772,7790,7883,7895,7897,7936,7938,7970,7973,7975,7980,7982,7987,7995,7997,8003,8034,8066,8073,8075,8091,8097,8109,8123,8126,8163,8165,8176,8180,8186,8193,8196,8198,8204,8205,8206,8244,8245,8282,8296,8339,8381,8413,8417,8421,8431,8460,8462,8471,8496,8518,8526,8535,8556,8557,8570,8590,8640,8653,8663,8672,8694,8707,8721,8798,8803,8815,8817,8818,8856,8865,8868,8869,8877,8881,8887,8918,8920,8941,8943,8957,8993,9050,9054,9064,9072,9086,9091,9124,9148,9170,9181,9228,9278,9331,9334,9362,9367,9369,9370,9386,9387,9395,9491,9496,9507,9553,9568,9573,9601,9623,9625,9638,9676,9699,9710,9712,9715,9716,9722,9733,9734,9738,9749,9774,9776,9778,9801,9804,9810,9818,9820,9840,9888,9890,9894,9903,9909,9921,9930,9969,9974,9992,10003,10006,10017,10024,10028,10032,10056,10064,10115,10134,10135,10173,10209,10222,10224,10412,10416,10418,10424,10426,10428,10436,10437,10439,10450,10451,10454,10486,10563,10633,10694,10736,10742,10749,10760,10765,10769,10771,10790,10793,10820,10856,10868,10875,10877,10879,10885,10886,10887,10911,10912,10936,10955,10974,10996,11008,11150,11151,11152,11163,11174,11277,11332,11340,11354,11362,11370,11390,11414,11441,11484,11488,11503,11509,11521,11523,11535,11552,11557,11568,11576,11580,11613,11634,11639,11666,11687,11717,11727,11740,11747,11748,11753,11773,11819,11821,11825,11832,11837,11855,11864,11899,11939,11980,11991,12009,12013,12014,12090,12110,12115,12230,12241,12243,12244,12249,12251,12266,12269,12313,12314,12323,12328,12335,12340,12342,12343,12347,12348,12351,12353,12354,12358,12365,12370,12380,12396,12402,12423,12485,12496,12510,12511,12516,12543,12618,12647,12661,12662,12663,12672,12690,12703,12737,12760,12764,12782,12785,12809,12826,12898,12935,12960,12998,13012,13027,13031,13050,13061,13115,13187,13193,13194,13195,13278,13299,13331,13412,13422,13466,13477,13486,13600,13639,13640,13719,13804,13809,13811,13967,13988,14075,14076,14155,14168,14308,14443,14496,14498,14537,14555,14559,14623,14642,14667,14669,14769,14778,14816,14830,14862,14936,14993,14994,14995,15007,15008,15037,15057,15058,15190,15202,15209,15235,15258,15330,15372,15380,15381,15391,15418,15434,15444,15446,15513,15566,15594,15625,15682,15699,15717,15746,15752,15787,15811,15815,15816,15848,15896,15906,15941,15949,16005,16089,16100,16112,16151,16156,16163,16165,16172,16183,16229,16286,16357,16366,16422,16508,16549,16566,16593,16598,16628,16738,17213,17336,17370,17524,17525,17529,17549,17571,17575,17576,17588,17644,17660,17747,17780,17815,17836,17842,17926,17964,17965,17968,17977,18026,18066,18076,18130,18134,18135,18150,18163,18225,18234,18245,18273,18274,18276,18320,18347,18355,18402,18403,18418,18484,18578,18585,18590,18606,18634,18642,18774,18821,18855,18861,18894,18897,18915,18949,19027,19037,19041,19045,19048,19102,19126,19144,19163,19191,19233,19253,19261,19361,19504,19510,19534,19537,19539,19565,19567,19603,19604,19618,19691,19713,19725,19731,19736,19751,19762,19787,19789,19829,19837,19844,19865,19895,19923,19976,19983,20004,20020,20022,20037,20078,20079,20112,20114,20127,20160,20164,20205,20221,20274,20276,20279,20281,20287,20310,20394,20404,20464,20495,20537,20539,20540,20543,20638,20924,20926,20971,20980,21069,21157,21172,21176,21193,21302,21334,21463,21542,21543,21546,21586,21657,21672,21689,21698,21699,21704,21705,21706,21707,21708,21709,21710,21723,21725,21726,21727,21728,21729,21758,21967,21969,21971,21972,21974,21975,22013,22014,22015,22018,22046,22060,22061,22071,22072,22081,22082,22085,22087,22090,22167,22182,22199,22237,22283,22313,22323,22416,22418,22419,22420,22421,22464,22493,22517,22530,22553,22563,22570,22573,22577,22586,22588,22594,22623,22627,22628,22630,22636,22637,22653,22673,22676,22694,22733,22754,22781,22814,22874,22890,23009,23078,23093,23100,23130]]],["+",[226,214,[[0,13,13,0,13,[[12,1,1,0,1],[14,1,1,1,2],[21,1,1,2,3],[23,2,2,3,5],[25,1,1,5,6],[26,2,2,6,8],[27,1,1,8,9],[28,1,1,9,10],[32,1,1,10,11],[43,1,1,11,12],[48,1,1,12,13]]],[1,7,7,13,20,[[56,1,1,13,14],[59,2,2,14,16],[61,1,1,16,17],[65,1,1,17,18],[72,1,1,18,19],[73,1,1,19,20]]],[2,1,1,20,21,[[111,1,1,20,21]]],[3,8,7,21,28,[[127,1,1,21,22],[130,3,2,22,24],[136,1,1,24,25],[137,1,1,25,26],[140,1,1,26,27],[148,1,1,27,28]]],[4,8,8,28,36,[[154,2,2,28,30],[155,1,1,30,31],[164,2,2,31,33],[175,1,1,33,34],[180,1,1,34,35],[181,1,1,35,36]]],[5,7,7,36,43,[[187,1,1,36,37],[189,1,1,37,38],[190,1,1,38,39],[194,1,1,39,40],[200,1,1,40,41],[203,1,1,41,42],[204,1,1,42,43]]],[6,4,4,43,47,[[214,1,1,43,44],[226,1,1,44,45],[229,1,1,45,46],[230,1,1,46,47]]],[7,3,3,47,50,[[232,1,1,47,48],[233,1,1,48,49],[234,1,1,49,50]]],[8,14,14,50,64,[[236,2,2,50,52],[237,1,1,52,53],[238,2,2,53,55],[242,1,1,55,56],[248,1,1,56,57],[251,1,1,57,58],[255,3,3,58,61],[257,1,1,61,62],[260,1,1,62,63],[265,1,1,63,64]]],[9,14,13,64,77,[[268,1,1,64,65],[269,1,1,65,66],[273,7,6,66,72],[278,1,1,72,73],[283,1,1,73,74],[286,1,1,74,75],[288,1,1,75,76],[289,1,1,76,77]]],[10,9,8,77,85,[[291,1,1,77,78],[292,2,2,78,80],[299,1,1,80,81],[300,1,1,81,82],[307,1,1,82,83],[308,3,2,83,85]]],[11,5,5,85,90,[[316,1,1,85,86],[320,1,1,86,87],[329,2,2,87,89],[333,1,1,89,90]]],[12,19,17,90,107,[[346,1,1,90,91],[349,1,1,91,92],[352,1,1,92,93],[353,1,1,93,94],[354,7,6,94,100],[356,1,1,100,101],[359,1,1,101,102],[360,3,2,102,104],[365,2,2,104,106],[366,1,1,106,107]]],[13,9,8,107,115,[[373,1,1,107,108],[375,1,1,108,109],[382,1,1,109,110],[383,1,1,110,111],[384,1,1,111,112],[392,3,2,112,114],[397,1,1,114,115]]],[14,3,2,115,117,[[405,1,1,115,116],[411,2,1,116,117]]],[15,3,3,117,120,[[414,1,1,117,118],[416,1,1,118,119],[425,1,1,119,120]]],[17,9,8,120,128,[[439,1,1,120,121],[440,1,1,121,122],[443,1,1,122,123],[444,2,1,123,124],[453,1,1,124,125],[454,1,1,125,126],[473,2,2,126,128]]],[18,41,38,128,166,[[481,1,1,128,129],[483,1,1,129,130],[490,4,2,130,132],[495,1,1,132,133],[505,1,1,133,134],[515,2,2,134,136],[517,1,1,136,137],[525,1,1,137,138],[526,1,1,138,139],[539,1,1,139,140],[548,1,1,140,141],[551,2,2,141,143],[556,1,1,143,144],[557,1,1,144,145],[559,1,1,145,146],[560,1,1,146,147],[566,2,2,147,149],[567,1,1,149,150],[569,1,1,150,151],[571,2,1,151,152],[583,1,1,152,153],[589,1,1,153,154],[590,1,1,154,155],[592,1,1,155,156],[596,4,4,156,160],[598,1,1,160,161],[602,1,1,161,162],[608,1,1,162,163],[609,2,2,163,165],[610,1,1,165,166]]],[19,2,2,166,168,[[628,1,1,166,167],[633,1,1,167,168]]],[20,3,3,168,171,[[660,1,1,168,169],[670,2,2,169,171]]],[22,15,14,171,185,[[684,2,1,171,172],[687,1,1,172,173],[704,1,1,173,174],[708,2,2,174,176],[710,2,2,176,178],[712,1,1,178,179],[723,1,1,179,180],[735,1,1,180,181],[737,1,1,181,182],[742,2,2,182,184],[743,1,1,184,185]]],[23,12,12,185,197,[[748,2,2,185,187],[751,1,1,187,188],[756,1,1,188,189],[761,1,1,189,190],[767,1,1,190,191],[769,1,1,191,192],[775,1,1,192,193],[779,1,1,193,194],[791,2,2,194,196],[793,1,1,196,197]]],[24,1,1,197,198,[[801,1,1,197,198]]],[25,3,3,198,201,[[828,1,1,198,199],[829,1,1,199,200],[835,1,1,200,201]]],[26,4,4,201,205,[[857,2,2,201,203],[860,1,1,203,204],[861,1,1,204,205]]],[27,2,2,205,207,[[866,1,1,205,206],[869,1,1,206,207]]],[32,2,2,207,209,[[896,2,2,207,209]]],[34,2,2,209,211,[[903,1,1,209,210],[904,1,1,210,211]]],[35,1,1,211,212,[[907,1,1,211,212]]],[37,1,1,212,213,[[911,1,1,212,213]]],[38,1,1,213,214,[[925,1,1,213,214]]]],[333,376,552,610,624,705,760,771,788,803,974,1352,1483,1701,1780,1784,1840,1975,2174,2191,3373,4044,4119,4135,4328,4362,4468,4735,4952,4967,4995,5249,5268,5503,5657,5708,5866,5910,5917,6028,6196,6289,6296,6623,6962,7034,7097,7140,7170,7190,7228,7234,7270,7289,7290,7364,7498,7596,7745,7753,7772,7790,7897,7982,8066,8109,8193,8196,8198,8204,8205,8206,8296,8462,8570,8653,8663,8721,8803,8815,9054,9086,9334,9362,9386,9638,9734,10003,10006,10135,10633,10749,10793,10856,10875,10877,10879,10885,10886,10887,10912,10974,10996,11008,11150,11151,11174,11340,11370,11523,11535,11557,11740,11747,11864,12110,12249,12314,12370,12672,12935,12960,13031,13061,13278,13299,13804,13811,13967,13988,14075,14076,14168,14308,14496,14498,14537,14642,14667,14830,14993,15057,15058,15190,15202,15235,15258,15330,15372,15391,15418,15434,15682,15811,15815,15848,15906,15941,15949,16005,16089,16112,16151,16163,16165,16172,16422,16549,17336,17524,17525,17780,17836,18134,18225,18234,18273,18276,18320,18578,18774,18821,18894,18897,18915,19041,19048,19126,19253,19361,19510,19539,19713,19829,20078,20079,20160,20464,21157,21176,21334,21969,21974,22061,22087,22167,22199,22623,22627,22733,22754,22814,22890,23093]]],["For",[1,1,[[15,1,1,0,1,[[414,1,1,0,1]]]],[12313]]],["How",[2,2,[[8,1,1,0,1,[[236,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]]],[7226,9496]]],["Or",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17529]]],["Thus",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20276]]],["Till",[3,3,[[17,1,1,0,1,[[443,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]]],[13050,16598,20404]]],["Until",[9,9,[[0,1,1,0,1,[[26,1,1,0,1]]],[11,1,1,1,2,[[330,1,1,1,2]]],[18,3,3,2,5,[[550,1,1,2,3],[582,1,1,3,4],[609,1,1,4,5]]],[21,2,2,5,7,[[672,1,1,5,6],[674,1,1,6,7]]],[22,2,2,7,9,[[710,1,1,7,8],[714,1,1,8,9]]]],[772,10056,15037,15625,16156,17571,17588,18274,18347]]],["Unto",[2,2,[[11,1,1,0,1,[[329,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]]],[10017,21975]]],["While",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17549]]],["against",[3,3,[[0,1,1,0,1,[[42,1,1,0,1]]],[3,1,1,1,2,[[126,1,1,1,2]]],[11,1,1,2,3,[[328,1,1,2,3]]]],[1315,4009,9974]]],["also",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6934]]],["and",[13,9,[[0,7,3,0,3,[[5,3,1,0,1],[6,3,1,1,2],[26,1,1,2,3]]],[3,2,2,3,5,[[119,1,1,3,4],[121,1,1,4,5]]],[8,1,1,5,6,[[250,1,1,5,6]]],[15,1,1,6,7,[[421,1,1,6,7]]],[16,1,1,7,8,[[428,1,1,7,8]]],[18,1,1,8,9,[[612,1,1,8,9]]]],[144,182,761,3705,3795,7563,12516,12760,16183]]],["as",[5,5,[[1,1,1,0,1,[[63,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[11,2,2,2,4,[[321,1,1,2,3],[325,1,1,3,4]]],[15,1,1,4,5,[[414,1,1,4,5]]]],[1917,7102,9778,9894,12323]]],["at",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12402]]],["before",[2,2,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]]],[1456,2122]]],["but",[2,2,[[19,1,1,0,1,[[639,1,1,0,1]]],[21,1,1,1,2,[[673,1,1,1,2]]]],[16738,17575]]],["by",[5,5,[[8,2,2,0,2,[[260,2,2,0,2]]],[9,1,1,2,3,[[283,1,1,2,3]]],[12,1,1,3,4,[[356,1,1,3,4]]],[14,1,1,4,5,[[412,1,1,4,5]]]],[7883,7895,8471,10911,12269]]],["either",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7980]]],["even",[4,4,[[3,1,1,0,1,[[127,1,1,0,1]]],[11,1,1,1,2,[[321,1,1,1,2]]],[16,1,1,2,3,[[429,1,1,2,3]]],[17,1,1,3,4,[[460,1,1,3,4]]]],[4044,9776,12764,13466]]],["ever",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11152]]],["far",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20127]]],["for",[5,5,[[2,1,1,0,1,[[115,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[14,1,1,2,3,[[412,1,1,2,3]]],[17,1,1,3,4,[[455,1,1,3,4]]],[26,1,1,4,5,[[860,1,1,4,5]]]],[3542,7738,12266,13331,22060]]],["forasmuch",[1,1,[[5,1,1,0,1,[[203,1,1,0,1]]]],[6289]]],["from",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20205]]],["into",[8,8,[[4,2,2,0,2,[[153,1,1,0,1],[163,1,1,1,2]]],[6,1,1,2,3,[[221,1,1,2,3]]],[9,2,2,3,5,[[270,1,1,3,4],[283,1,1,4,5]]],[17,1,1,5,6,[[473,1,1,5,6]]],[18,2,2,6,8,[[537,1,1,6,7],[585,1,1,7,8]]]],[4923,5213,6848,8126,8462,13809,14816,15752]]],["long",[2,2,[[9,1,1,0,1,[[268,1,1,0,1]]],[18,1,1,1,2,[[549,1,1,1,2]]]],[8075,15007]]],["much",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4943]]],["neither",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7997]]],["nor",[4,3,[[8,2,1,0,1,[[265,2,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[23,1,1,2,3,[[795,1,1,2,3]]]],[7997,8339,20274]]],["of",[2,2,[[8,1,1,0,1,[[241,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]]],[7349,18245]]],["only",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9601]]],["or",[7,5,[[0,2,2,0,2,[[30,2,2,0,2]]],[1,3,2,2,4,[[60,1,1,2,3],[71,2,1,3,4]]],[13,2,1,4,5,[[381,2,1,4,5]]]],[897,902,1813,2117,11503]]],["so",[1,1,[[5,1,1,0,1,[[194,1,1,0,1]]]],[6024]]],["that",[6,6,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[22,1,1,4,5,[[725,1,1,4,5]]],[38,1,1,5,6,[[927,1,1,5,6]]]],[2139,3416,6630,7245,18606,23130]]],["thither",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12998]]],["till",[68,66,[[0,4,4,0,4,[[2,1,1,0,1],[18,1,1,1,2],[37,2,2,2,4]]],[1,5,4,4,8,[[64,2,1,4,5],[65,2,2,5,7],[89,1,1,7,8]]],[3,1,1,8,9,[[128,1,1,8,9]]],[4,1,1,9,10,[[180,1,1,9,10]]],[5,4,4,10,14,[[191,2,2,10,12],[194,1,1,12,13],[196,1,1,13,14]]],[6,6,6,14,20,[[213,1,1,14,15],[216,1,1,15,16],[221,1,1,16,17],[226,1,1,17,18],[229,1,1,18,19],[231,1,1,19,20]]],[8,2,2,20,22,[[245,1,1,20,21],[251,1,1,21,22]]],[10,2,2,22,24,[[304,1,1,22,23],[308,1,1,23,24]]],[11,6,6,24,30,[[314,1,1,24,25],[316,1,1,25,26],[319,1,1,26,27],[322,1,1,27,28],[325,2,2,28,30]]],[13,2,2,30,32,[[395,1,1,30,31],[402,1,1,31,32]]],[14,2,2,32,34,[[404,1,1,32,33],[411,1,1,33,34]]],[15,3,3,34,37,[[416,1,1,34,35],[419,1,1,35,36],[425,1,1,36,37]]],[17,5,5,37,42,[[442,1,1,37,38],[449,3,3,38,41],[462,1,1,41,42]]],[18,1,1,42,43,[[495,1,1,42,43]]],[21,1,1,43,44,[[673,1,1,43,44]]],[22,6,5,44,49,[[683,1,1,44,45],[700,1,1,45,46],[716,1,1,46,47],[720,1,1,47,48],[740,2,1,48,49]]],[23,6,6,49,55,[[753,1,1,49,50],[767,1,1,50,51],[768,1,1,51,52],[793,1,1,52,53],[796,2,2,53,55]]],[25,6,6,55,61,[[805,2,2,55,57],[825,1,1,57,58],[829,1,1,58,59],[840,1,1,59,60],[848,1,1,60,61]]],[26,3,3,61,64,[[859,1,1,61,62],[860,1,1,62,63],[861,1,1,63,64]]],[27,1,1,64,65,[[871,1,1,64,65]]],[31,1,1,65,66,[[892,1,1,65,66]]]],[74,479,1130,1136,1936,1966,1971,2744,4074,5656,5940,5942,6008,6084,6593,6658,6862,6952,7050,7104,7426,7606,9228,9369,9568,9623,9716,9810,9888,9890,11825,12009,12090,12251,12380,12485,12690,13027,13187,13193,13195,13486,14155,17576,17747,18066,18403,18484,18861,19191,19504,19534,20164,20279,20287,20537,20543,21069,21172,21463,21699,22018,22072,22090,22237,22573]]],["to",[172,162,[[0,6,6,0,6,[[12,1,1,0,1],[13,1,1,1,2],[32,1,1,2,3],[37,1,1,3,4],[46,1,1,4,5],[49,1,1,5,6]]],[1,3,3,6,9,[[76,2,2,6,8],[81,1,1,8,9]]],[2,1,1,9,10,[[102,1,1,9,10]]],[3,1,1,10,11,[[122,1,1,10,11]]],[4,2,2,11,13,[[153,1,1,11,12],[156,1,1,12,13]]],[5,8,8,13,21,[[189,2,2,13,15],[196,1,1,15,16],[198,1,1,16,17],[199,1,1,17,18],[202,1,1,18,19],[205,2,2,19,21]]],[6,9,8,21,29,[[217,2,1,21,22],[223,1,1,22,23],[224,1,1,23,24],[227,1,1,24,25],[228,1,1,25,26],[229,2,2,26,28],[230,1,1,28,29]]],[8,13,11,29,40,[[238,1,1,29,30],[244,1,1,30,31],[245,1,1,31,32],[249,1,1,32,33],[250,1,1,33,34],[252,1,1,34,35],[253,3,1,35,36],[254,1,1,36,37],[255,2,2,37,39],[265,1,1,39,40]]],[9,17,16,40,56,[[268,1,1,40,41],[269,2,2,41,43],[272,3,3,43,46],[273,1,1,46,47],[276,1,1,47,48],[280,1,1,48,49],[281,1,1,49,50],[282,1,1,50,51],[283,1,1,51,52],[285,1,1,52,53],[286,1,1,53,54],[290,3,2,54,56]]],[10,7,7,56,63,[[292,1,1,56,57],[294,3,3,57,60],[297,2,2,60,62],[308,1,1,62,63]]],[11,11,11,63,74,[[314,1,1,63,64],[316,1,1,64,65],[319,2,2,65,67],[321,1,1,67,68],[322,1,1,68,69],[323,1,1,69,70],[329,1,1,70,71],[330,1,1,71,72],[331,1,1,72,73],[335,1,1,73,74]]],[12,8,8,74,82,[[341,1,1,74,75],[348,1,1,75,76],[349,1,1,76,77],[350,1,1,77,78],[351,1,1,78,79],[352,1,1,79,80],[358,2,2,80,82]]],[13,10,10,82,92,[[375,1,1,82,83],[378,1,1,83,84],[385,1,1,84,85],[389,1,1,85,86],[391,1,1,86,87],[392,2,2,87,89],[396,1,1,89,90],[398,1,1,90,91],[401,1,1,91,92]]],[15,3,3,92,95,[[415,3,3,92,95]]],[16,3,3,95,98,[[430,2,2,95,97],[432,1,1,97,98]]],[17,4,4,98,102,[[457,1,1,98,99],[458,1,1,99,100],[466,1,1,100,101],[467,1,1,101,102]]],[18,11,11,102,113,[[518,1,1,102,103],[519,1,1,103,104],[526,1,1,104,105],[549,1,1,105,106],[567,2,2,106,108],[577,1,1,108,109],[580,1,1,109,110],[583,1,1,110,111],[614,1,1,111,112],[624,1,1,112,113]]],[19,2,2,113,115,[[633,1,1,113,114],[655,1,1,114,115]]],[20,1,1,115,116,[[661,1,1,115,116]]],[22,14,12,116,128,[[686,1,1,116,117],[691,1,1,117,118],[697,1,1,118,119],[700,1,1,119,120],[703,1,1,120,121],[704,2,1,121,122],[715,1,1,122,123],[716,2,2,123,125],[723,1,1,125,126],[724,2,1,126,127],[726,1,1,127,128]]],[23,7,7,128,135,[[756,1,1,128,129],[769,1,1,129,130],[777,1,1,130,131],[786,1,1,131,132],[787,1,1,132,133],[792,1,1,133,134],[795,1,1,134,135]]],[24,1,1,135,136,[[799,1,1,135,136]]],[25,8,7,136,143,[[805,2,2,136,138],[811,1,1,138,139],[842,1,1,139,140],[844,2,1,140,141],[847,1,1,141,142],[848,1,1,142,143]]],[26,8,8,143,151,[[857,3,3,143,146],[860,3,3,146,149],[861,2,2,149,151]]],[28,2,2,151,153,[[877,2,2,151,153]]],[29,2,1,153,154,[[886,2,1,153,154]]],[30,1,1,154,155,[[888,1,1,154,155]]],[31,2,2,155,157,[[890,1,1,155,156],[891,1,1,156,157]]],[32,5,4,157,161,[[893,2,2,157,159],[896,1,1,159,160],[899,2,1,160,161]]],[37,2,1,161,162,[[919,2,1,161,162]]]],[321,359,963,1120,1441,1516,2277,2293,2458,3064,3827,4911,5034,5894,5901,6074,6133,6158,6268,6329,6350,6716,6891,6914,6988,6995,7036,7042,7055,7296,7400,7421,7528,7565,7670,7680,7728,7758,7767,7987,8073,8091,8097,8163,8165,8176,8186,8244,8381,8421,8431,8460,8526,8556,8694,8707,8798,8856,8868,8869,8941,8957,9387,9553,9625,9712,9715,9774,9818,9840,9992,10032,10064,10173,10412,10694,10736,10771,10790,10820,10936,10955,11390,11441,11580,11666,11727,11740,11748,11832,11899,11991,12343,12348,12358,12782,12785,12809,13412,13422,13600,13639,14555,14559,14667,15008,15380,15381,15513,15566,15699,16229,16357,16566,17213,17370,17815,17926,18026,18076,18130,18135,18355,18402,18403,18585,18590,18634,19261,19565,19789,19983,20004,20112,20221,20394,20539,20540,20638,21542,21586,21672,21698,21967,21971,21972,22046,22071,22081,22082,22085,22313,22323,22493,22517,22553,22563,22586,22588,22630,22676,23009]]],["toward",[4,4,[[0,1,1,0,1,[[12,1,1,0,1]]],[6,1,1,1,2,[[229,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[25,1,1,3,4,[[849,1,1,3,4]]]],[330,7042,8943,21723]]],["until",[247,235,[[0,9,9,0,9,[[7,2,2,0,2],[31,2,2,2,4],[32,1,1,4,5],[33,1,1,5,6],[38,1,1,6,7],[40,1,1,7,8],[45,1,1,8,9]]],[1,17,15,9,24,[[58,1,1,9,10],[59,1,1,10,11],[61,6,5,11,16],[65,4,3,16,19],[66,1,1,19,20],[72,1,1,20,21],[82,1,1,21,22],[83,2,2,22,24]]],[2,38,35,24,59,[[96,1,1,24,25],[97,1,1,25,26],[100,9,8,26,34],[101,1,1,34,35],[103,1,1,35,36],[104,15,14,36,50],[105,1,1,50,51],[106,1,1,51,52],[108,2,2,52,54],[111,2,2,54,56],[112,1,1,56,57],[114,3,2,57,59]]],[3,19,19,59,78,[[120,2,2,59,61],[122,1,1,61,62],[125,1,1,62,63],[130,2,2,63,65],[135,5,5,65,70],[137,1,1,70,71],[139,1,1,71,72],[148,3,3,72,75],[151,3,3,75,78]]],[4,24,22,78,100,[[153,1,1,78,79],[154,2,2,79,81],[155,1,1,81,82],[159,3,3,82,85],[161,2,2,85,87],[163,1,1,87,88],[172,1,1,88,89],[174,1,1,89,90],[180,10,8,90,98],[183,2,2,98,100]]],[5,24,22,100,122,[[188,2,2,100,102],[190,3,2,102,104],[191,1,1,104,105],[192,1,1,105,106],[193,2,2,106,108],[194,2,2,108,110],[196,4,4,110,114],[197,2,2,114,116],[199,1,1,116,117],[206,3,2,117,119],[208,1,1,119,120],[209,2,2,120,122]]],[6,7,6,122,128,[[216,2,1,122,123],[228,1,1,123,124],[229,2,2,124,126],[230,2,2,126,128]]],[7,6,6,128,134,[[232,1,1,128,129],[233,2,2,129,131],[234,3,3,131,134]]],[8,16,15,134,149,[[236,3,2,134,136],[238,1,1,136,137],[242,1,1,137,138],[244,1,1,138,139],[246,1,1,139,140],[249,3,3,140,143],[250,2,2,143,145],[252,1,1,145,146],[254,1,1,146,147],[255,1,1,147,148],[260,1,1,148,149]]],[9,9,9,149,158,[[267,1,1,149,150],[270,1,1,150,151],[276,1,1,151,152],[281,2,2,152,154],[285,2,2,154,156],[287,1,1,156,157],[288,1,1,157,158]]],[10,12,12,158,170,[[293,2,2,158,160],[295,1,1,160,161],[296,1,1,161,162],[301,2,2,162,164],[305,1,1,164,165],[307,1,1,165,166],[308,2,2,166,168],[312,2,2,168,170]]],[11,7,7,170,177,[[318,1,1,170,171],[319,1,1,171,172],[320,2,2,172,174],[322,2,2,174,176],[336,1,1,176,177]]],[12,4,4,177,181,[[342,1,1,177,178],[343,1,1,178,179],[349,1,1,179,180],[365,1,1,180,181]]],[13,15,15,181,196,[[374,2,2,181,183],[382,1,1,183,184],[384,3,3,184,187],[387,1,1,187,188],[390,1,1,188,189],[395,2,2,189,191],[397,1,1,191,192],[401,1,1,192,193],[402,3,3,193,196]]],[14,4,4,196,200,[[406,1,1,196,197],[410,1,1,197,198],[411,1,1,198,199],[412,1,1,199,200]]],[15,3,3,200,203,[[419,1,1,200,201],[420,1,1,201,202],[424,1,1,202,203]]],[17,2,2,203,205,[[449,1,1,203,204],[461,1,1,204,205]]],[18,6,6,205,211,[[534,1,1,205,206],[548,1,1,206,207],[571,1,1,207,208],[581,1,1,208,209],[587,1,1,209,210],[600,1,1,210,211]]],[19,1,1,211,212,[[634,1,1,211,212]]],[21,2,2,212,214,[[673,1,1,212,213],[678,1,1,213,214]]],[22,3,3,214,217,[[704,1,1,214,215],[717,1,1,215,216],[740,1,1,216,217]]],[23,12,11,217,228,[[767,1,1,217,218],[771,3,3,218,221],[774,2,1,221,222],[776,1,1,222,223],[780,1,1,223,224],[781,1,1,224,225],[782,1,1,225,226],[788,1,1,226,227],[796,1,1,227,228]]],[25,3,3,228,231,[[822,1,1,228,229],[834,1,1,229,230],[847,1,1,230,231]]],[26,1,1,231,232,[[858,1,1,231,232]]],[27,1,1,232,233,[[868,1,1,232,233]]],[32,2,2,233,235,[[897,1,1,233,234],[899,1,1,234,235]]]],[188,190,932,952,963,985,1165,1244,1420,1760,1803,1822,1826,1831,1834,1838,1967,1970,1982,1995,2162,2481,2530,2531,2894,2950,3021,3022,3024,3025,3028,3029,3036,3037,3048,3157,3173,3174,3175,3176,3178,3179,3184,3185,3186,3187,3189,3190,3191,3195,3218,3250,3287,3294,3375,3399,3416,3491,3497,3746,3766,3828,3980,4127,4141,4296,4297,4299,4310,4311,4375,4440,4731,4736,4739,4857,4873,4877,4923,4952,4953,4978,5131,5134,5135,5164,5178,5213,5447,5472,5631,5632,5633,5635,5659,5662,5663,5672,5752,5758,5885,5891,5920,5933,5935,5959,5982,5989,6026,6031,6077,6090,6091,6097,6115,6121,6167,6378,6381,6443,6473,6475,6672,7023,7032,7049,7077,7080,7146,7156,7166,7175,7185,7186,7234,7235,7291,7363,7404,7456,7517,7532,7544,7578,7595,7670,7729,7771,7897,8034,8123,8245,8413,8417,8518,8535,8590,8640,8817,8818,8881,8918,9124,9148,9278,9331,9367,9370,9491,9507,9699,9710,9733,9738,9801,9804,10222,10450,10486,10742,11163,11354,11362,11521,11552,11568,11576,11639,11687,11819,11825,11855,11980,12009,12013,12014,12115,12230,12241,12266,12423,12496,12647,13194,13477,14769,14994,15444,15594,15787,16100,16593,17575,17644,18150,18418,18855,19504,19603,19604,19618,19691,19736,19865,19895,19923,20037,20310,20971,21302,21657,22015,22182,22636,22673]]],["unto",[387,352,[[0,19,17,0,17,[[9,2,1,0,1],[10,1,1,1,2],[11,2,1,2,3],[12,1,1,3,4],[13,3,3,4,7],[14,1,1,7,8],[18,2,2,8,10],[24,1,1,10,11],[25,1,1,11,12],[31,1,1,12,13],[34,1,1,13,14],[46,1,1,14,15],[47,1,1,15,16],[48,1,1,16,17]]],[1,10,9,17,26,[[59,1,1,17,18],[60,1,1,18,19],[61,1,1,19,20],[67,2,2,20,22],[72,2,1,22,23],[77,1,1,23,24],[78,1,1,24,25],[87,1,1,25,26]]],[2,12,12,26,38,[[95,1,1,26,27],[112,2,2,27,29],[113,1,1,29,30],[114,3,3,30,33],[116,5,5,33,38]]],[3,24,20,38,58,[[120,5,5,38,43],[124,2,1,43,44],[125,2,2,44,46],[129,3,3,46,49],[130,1,1,49,50],[137,6,3,50,53],[138,1,1,53,54],[139,1,1,54,55],[148,1,1,55,56],[149,1,1,56,57],[151,1,1,57,58]]],[4,35,33,58,91,[[153,5,5,58,63],[154,3,3,63,66],[155,7,5,66,71],[156,4,4,71,75],[161,1,1,75,76],[162,1,1,76,77],[163,3,3,77,80],[165,1,1,80,81],[180,2,2,81,83],[181,2,2,83,85],[182,1,1,85,86],[184,1,1,86,87],[186,4,4,87,91]]],[5,49,43,91,134,[[187,2,1,91,92],[189,1,1,92,93],[190,1,1,93,94],[191,1,1,94,95],[192,1,1,95,96],[193,3,2,96,98],[194,2,2,98,100],[195,1,1,100,101],[196,4,3,101,104],[197,4,2,104,106],[198,5,5,106,111],[199,11,10,111,121],[200,1,1,121,122],[201,3,3,122,125],[202,3,3,125,128],[205,3,3,128,131],[208,1,1,131,132],[209,2,2,132,134]]],[6,26,22,134,156,[[211,2,2,134,136],[213,1,1,136,137],[214,2,2,137,139],[216,1,1,139,140],[217,3,2,140,142],[219,3,2,142,144],[220,1,1,144,145],[221,6,4,145,149],[225,2,2,149,151],[228,3,3,151,154],[229,1,1,154,155],[230,1,1,155,156]]],[7,1,1,156,157,[[233,1,1,156,157]]],[8,17,15,157,172,[[240,1,1,157,158],[241,3,2,158,160],[242,1,1,160,161],[243,1,1,161,162],[247,1,1,162,163],[252,2,1,163,164],[255,1,1,164,165],[262,2,2,165,167],[264,3,3,167,170],[265,2,2,170,172]]],[9,5,5,172,177,[[272,1,1,172,173],[277,1,1,173,174],[284,1,1,174,175],[286,1,1,175,176],[289,1,1,176,177]]],[10,14,14,177,191,[[294,3,3,177,180],[295,1,1,180,181],[296,1,1,181,182],[297,1,1,182,183],[298,2,2,183,185],[299,2,2,185,187],[300,1,1,187,188],[302,2,2,188,190],[309,1,1,190,191]]],[11,18,18,191,209,[[314,1,1,191,192],[318,1,1,192,193],[319,1,1,193,194],[320,1,1,194,195],[322,1,1,195,196],[326,3,3,196,199],[327,1,1,199,200],[328,1,1,200,201],[329,2,2,201,203],[330,2,2,203,205],[332,1,1,205,206],[333,1,1,206,207],[336,1,1,207,208],[337,1,1,208,209]]],[12,15,15,209,224,[[341,5,5,209,214],[342,5,5,214,219],[344,1,1,219,220],[349,1,1,220,221],[350,2,2,221,223],[354,1,1,223,224]]],[13,15,15,224,239,[[371,1,1,224,225],[373,1,1,225,226],[374,1,1,226,227],[375,1,1,227,228],[376,1,1,228,229],[380,2,2,229,231],[381,1,1,231,232],[386,1,1,232,233],[387,1,1,233,234],[391,1,1,234,235],[392,1,1,235,236],[394,1,1,236,237],[396,1,1,237,238],[400,1,1,238,239]]],[14,2,2,239,241,[[411,2,2,239,241]]],[15,22,19,241,260,[[415,13,10,241,251],[416,1,1,251,252],[417,1,1,252,253],[420,2,2,253,255],[421,1,1,255,256],[423,1,1,256,257],[424,3,3,257,260]]],[16,3,3,260,263,[[426,1,1,260,261],[427,1,1,261,262],[433,1,1,262,263]]],[17,5,5,263,268,[[437,1,1,263,264],[442,1,1,264,265],[446,1,1,265,266],[467,1,1,266,267],[469,1,1,267,268]]],[18,14,13,268,281,[[513,1,1,268,269],[523,1,1,269,270],[527,1,1,270,271],[534,2,1,271,272],[542,1,1,272,273],[546,1,1,273,274],[549,1,1,274,275],[557,1,1,275,276],[571,1,1,276,277],[584,1,1,277,278],[585,1,1,278,279],[590,1,1,279,280],[595,1,1,280,281]]],[19,1,1,281,282,[[631,1,1,281,282]]],[22,9,9,282,291,[[679,1,1,282,283],[687,1,1,283,284],[693,3,3,284,287],[694,1,1,287,288],[705,1,1,288,289],[727,1,1,289,290],[735,1,1,290,291]]],[23,27,21,291,312,[[745,2,1,291,292],[747,1,1,292,293],[748,2,2,293,295],[750,2,1,295,296],[751,1,1,296,297],[752,2,1,297,298],[755,1,1,298,299],[769,2,2,299,301],[775,3,2,301,303],[776,2,2,303,305],[779,1,1,305,306],[780,1,1,306,307],[786,1,1,307,308],[788,2,2,308,310],[792,3,1,310,311],[796,1,1,311,312]]],[25,21,20,312,332,[[803,1,1,312,313],[821,2,2,313,315],[823,1,1,315,316],[830,1,1,316,317],[842,2,2,317,319],[848,1,1,319,320],[849,13,12,320,332]]],[26,3,3,332,335,[[850,1,1,332,333],[858,2,2,333,335]]],[27,1,1,335,336,[[875,1,1,335,336]]],[29,6,6,336,342,[[882,5,5,336,341],[884,1,1,341,342]]],[30,1,1,342,343,[[888,1,1,342,343]]],[31,1,1,343,344,[[892,1,1,343,344]]],[32,6,5,344,349,[[893,3,2,344,346],[896,1,1,346,347],[897,1,1,347,348],[898,1,1,348,349]]],[34,1,1,349,350,[[905,1,1,349,350]]],[37,3,1,350,351,[[924,3,1,350,351]]],[38,1,1,351,352,[[925,1,1,351,352]]]],[253,297,304,321,342,350,351,378,494,495,676,725,960,1031,1446,1466,1499,1783,1811,1845,2012,2013,2175,2335,2370,2637,2858,3418,3434,3449,3509,3519,3521,3573,3575,3576,3588,3593,3773,3778,3782,3786,3790,3943,3977,3986,4096,4097,4098,4153,4364,4366,4370,4405,4434,4727,4809,4870,4894,4899,4912,4916,4936,4960,4961,4974,4983,4985,4989,4991,4992,5015,5036,5052,5053,5164,5194,5212,5220,5232,5279,5646,5675,5683,5690,5710,5780,5840,5841,5842,5845,5855,5908,5919,5943,5974,5981,6002,6030,6031,6064,6074,6075,6105,6115,6124,6131,6132,6133,6135,6137,6157,6158,6159,6160,6163,6164,6165,6179,6180,6181,6201,6207,6249,6265,6268,6270,6275,6331,6349,6354,6429,6468,6469,6530,6535,6571,6610,6615,6678,6707,6718,6794,6806,6815,6842,6845,6851,6862,6943,6948,6994,7005,7006,7054,7099,7172,7324,7343,7349,7366,7377,7462,7670,7735,7936,7938,7970,7973,7975,7995,8003,8180,8282,8496,8557,8672,8856,8865,8877,8887,8920,8943,8993,9050,9064,9072,9091,9170,9181,9395,9573,9676,9722,9749,9820,9903,9909,9921,9930,9969,10006,10024,10028,10032,10115,10134,10209,10224,10416,10418,10424,10426,10428,10436,10437,10439,10451,10454,10563,10760,10765,10769,10868,11277,11332,11362,11390,11414,11484,11488,11509,11613,11634,11717,11753,11773,11837,11939,12243,12244,12328,12335,12340,12342,12343,12347,12351,12353,12354,12358,12365,12396,12510,12511,12543,12618,12661,12662,12663,12703,12737,12826,12898,13012,13115,13640,13719,14443,14623,14669,14778,14862,14936,15008,15209,15446,15717,15746,15816,15896,16508,17660,17842,17964,17965,17968,17977,18163,18642,18774,18949,19027,19037,19045,19102,19144,19163,19233,19537,19567,19725,19731,19751,19762,19837,19844,19976,20020,20022,20114,20281,20495,20924,20926,20980,21193,21543,21546,21689,21704,21705,21706,21707,21708,21709,21710,21725,21726,21727,21728,21729,21758,22013,22014,22283,22416,22418,22419,22420,22421,22464,22530,22577,22588,22594,22628,22637,22653,22781,23078,23100]]],["very",[2,2,[[18,2,2,0,2,[[548,1,1,0,1],[624,1,1,1,2]]]],[14995,16366]]],["when",[2,2,[[6,1,1,0,1,[[226,1,1,0,1]]],[18,1,1,1,2,[[548,1,1,1,2]]]],[6951,14994]]],["while",[5,5,[[1,1,1,0,1,[[82,1,1,0,1]]],[6,1,1,1,2,[[213,1,1,1,2]]],[8,1,1,2,3,[[249,1,1,2,3]]],[15,1,1,3,4,[[419,1,1,3,4]]],[33,1,1,4,5,[[900,1,1,4,5]]]],[2495,6594,7527,12423,22694]]],["whilst",[3,3,[[6,1,1,0,1,[[216,1,1,0,1]]],[17,1,1,1,2,[[467,1,1,1,2]]],[18,1,1,2,3,[[618,1,1,2,3]]]],[6685,13639,16286]]],["with",[2,2,[[6,1,1,0,1,[[225,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]]],[6934,11821]]],["within",[2,2,[[2,2,2,0,2,[[114,2,2,0,2]]]],[3498,3499]]],["without",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19787]]],["yet",[3,3,[[19,1,1,0,1,[[635,1,1,0,1]]],[31,1,1,1,2,[[892,1,1,1,2]]],[36,1,1,2,3,[[910,1,1,2,3]]]],[16628,22570,22874]]]]},{"k":"H5705","v":[["*",[35,31,[[14,9,6,0,6,[[406,2,2,0,2],[407,2,2,2,4],[408,1,1,4,5],[409,4,1,5,6]]],[26,26,25,6,31,[[851,3,3,6,9],[853,6,6,9,15],[854,1,1,15,16],[855,5,5,16,21],[856,11,10,21,31]]]],[12131,12134,12139,12150,12166,12195,21767,21778,21792,21845,21854,21860,21862,21869,21870,21895,21912,21917,21919,21929,21931,21937,21942,21944,21945,21946,21951,21955,21958,21959,21961]]],["+",[15,14,[[26,15,14,0,14,[[851,2,2,0,2],[853,4,4,2,6],[854,1,1,6,7],[855,1,1,7,8],[856,7,6,8,14]]]],[21767,21778,21860,21862,21869,21870,21895,21929,21937,21942,21944,21951,21955,21961]]],["Unto",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12195]]],["at",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21845]]],["for",[2,2,[[26,2,2,0,2,[[855,1,1,0,1],[856,1,1,1,2]]]],[21912,21945]]],["on",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12166]]],["till",[3,3,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,2,2,1,3,[[851,1,1,1,2],[855,1,1,2,3]]]],[12139,21792,21919]]],["to",[5,3,[[14,3,1,0,1,[[409,3,1,0,1]]],[26,2,2,1,3,[[853,1,1,1,2],[856,1,1,2,3]]]],[12195,21854,21946]]],["until",[3,3,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,1,1,2,3,[[856,1,1,2,3]]]],[12131,12150,21958]]],["unto",[3,3,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,2,2,1,3,[[855,1,1,1,2],[856,1,1,2,3]]]],[12134,21931,21959]]],["within",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21917]]]]},{"k":"H5706","v":[["prey",[3,3,[[0,1,1,0,1,[[48,1,1,0,1]]],[22,1,1,1,2,[[711,1,1,1,2]]],[35,1,1,2,3,[[908,1,1,2,3]]]],[1500,18302,22828]]]]},{"k":"H5707","v":[["*",[69,59,[[0,4,4,0,4,[[30,4,4,0,4]]],[1,3,3,4,7,[[69,1,1,4,5],[71,1,1,5,6],[72,1,1,6,7]]],[2,1,1,7,8,[[94,1,1,7,8]]],[3,3,2,8,10,[[121,1,1,8,9],[151,2,1,9,10]]],[4,14,9,10,19,[[157,1,1,10,11],[169,4,2,11,13],[171,6,3,13,16],[183,3,3,16,19]]],[5,5,4,19,23,[[208,3,3,19,22],[210,2,1,22,23]]],[7,3,3,23,26,[[235,3,3,23,26]]],[8,3,1,26,27,[[247,3,1,26,27]]],[17,3,3,27,30,[[445,1,1,27,28],[451,2,2,28,30]]],[18,3,3,30,33,[[504,1,1,30,31],[512,1,1,31,32],[566,1,1,32,33]]],[19,11,10,33,43,[[633,1,1,33,34],[639,1,1,34,35],[641,3,2,35,37],[646,3,3,37,40],[648,1,1,40,41],[651,1,1,41,42],[652,1,1,42,43]]],[22,8,8,43,51,[[686,1,1,43,44],[697,1,1,44,45],[721,3,3,45,48],[722,2,2,48,50],[733,1,1,50,51]]],[23,6,6,51,57,[[773,1,1,51,52],[776,4,4,52,56],[786,1,1,56,57]]],[32,1,1,57,58,[[893,1,1,57,58]]],[38,1,1,58,59,[[927,1,1,58,59]]]],[917,921,923,925,2067,2126,2145,2831,3805,4875,5073,5370,5371,5421,5422,5424,5747,5749,5754,6453,6454,6460,6498,7199,7200,7201,7465,13103,13246,13257,14297,14421,15363,16559,16736,16777,16797,16930,16934,16953,17012,17107,17131,17809,18024,18514,18515,18517,18541,18542,18744,19658,19741,19743,19756,19775,19980,22581,23125]]],["witness",[45,41,[[0,4,4,0,4,[[30,4,4,0,4]]],[1,3,3,4,7,[[69,1,1,4,5],[71,1,1,5,6],[72,1,1,6,7]]],[2,1,1,7,8,[[94,1,1,7,8]]],[3,2,2,8,10,[[121,1,1,8,9],[151,1,1,9,10]]],[4,9,8,10,18,[[157,1,1,10,11],[169,1,1,11,12],[171,4,3,12,15],[183,3,3,15,18]]],[5,3,3,18,21,[[208,3,3,18,21]]],[8,3,1,21,22,[[247,3,1,21,22]]],[17,2,2,22,24,[[451,2,2,22,24]]],[18,1,1,24,25,[[566,1,1,24,25]]],[19,11,10,25,35,[[633,1,1,25,26],[639,1,1,26,27],[641,3,2,27,29],[646,3,3,29,32],[648,1,1,32,33],[651,1,1,33,34],[652,1,1,34,35]]],[22,2,2,35,37,[[697,1,1,35,36],[733,1,1,36,37]]],[23,2,2,37,39,[[773,1,1,37,38],[786,1,1,38,39]]],[32,1,1,39,40,[[893,1,1,39,40]]],[38,1,1,40,41,[[927,1,1,40,41]]]],[917,921,923,925,2067,2126,2145,2831,3805,4875,5073,5370,5421,5422,5424,5747,5749,5754,6453,6454,6460,7465,13246,13257,15363,16559,16736,16777,16797,16930,16934,16953,17012,17107,17131,18024,18744,19658,19980,22581,23125]]],["witnesses",[24,21,[[3,1,1,0,1,[[151,1,1,0,1]]],[4,5,3,1,4,[[169,3,2,1,3],[171,2,1,3,4]]],[5,2,1,4,5,[[210,2,1,4,5]]],[7,3,3,5,8,[[235,3,3,5,8]]],[17,1,1,8,9,[[445,1,1,8,9]]],[18,2,2,9,11,[[504,1,1,9,10],[512,1,1,10,11]]],[22,6,6,11,17,[[686,1,1,11,12],[721,3,3,12,15],[722,2,2,15,17]]],[23,4,4,17,21,[[776,4,4,17,21]]]],[4875,5370,5371,5421,6498,7199,7200,7201,13103,14297,14421,17809,18514,18515,18517,18541,18542,19741,19743,19756,19775]]]]},{"k":"H5708","v":[["filthy",[1,1,[[22,1,1,0,1,[[742,1,1,0,1]]]],[18891]]]]},{"k":"H5709","v":[["*",[9,9,[[26,9,9,0,9,[[851,1,1,0,1],[852,1,1,1,2],[853,1,1,2,3],[854,1,1,3,4],[855,2,2,4,6],[856,3,3,6,9]]]],[21779,21834,21868,21894,21913,21917,21945,21947,21959]]],["altereth",[2,2,[[26,2,2,0,2,[[855,2,2,0,2]]]],[21913,21917]]],["away",[3,3,[[26,3,3,0,3,[[856,3,3,0,3]]]],[21945,21947,21959]]],["departed",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21868]]],["passed",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21834]]],["removeth",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21779]]],["took",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21894]]]]},{"k":"H5710","v":[["*",[10,10,[[17,2,2,0,2,[[463,1,1,0,1],[475,1,1,1,2]]],[19,1,1,2,3,[[652,1,1,2,3]]],[22,1,1,3,4,[[739,1,1,3,4]]],[23,2,2,4,6,[[748,1,1,4,5],[775,1,1,5,6]]],[25,3,3,6,9,[[817,2,2,6,8],[824,1,1,8,9]]],[27,1,1,9,10,[[863,1,1,9,10]]]],[13512,13874,17133,18853,19057,19695,20773,20775,21047,22118]]],["Deck",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13874]]],["adorned",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19695]]],["adorneth",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18853]]],["away",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17133]]],["decked",[3,3,[[25,2,2,0,2,[[817,2,2,0,2]]],[27,1,1,2,3,[[863,1,1,2,3]]]],[20773,20775,22118]]],["deckedst",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21047]]],["deckest",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19057]]],["passed",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13512]]]]},{"k":"H5711","v":[["Adah",[8,8,[[0,8,8,0,8,[[3,3,3,0,3],[35,5,5,3,8]]]],[98,99,102,1042,1044,1050,1052,1056]]]]},{"k":"H5712","v":[["*",[149,140,[[1,15,15,0,15,[[61,4,4,0,4],[65,5,5,4,9],[66,1,1,9,10],[83,1,1,10,11],[84,3,3,11,14],[87,1,1,14,15]]],[2,12,12,15,27,[[93,2,2,15,17],[97,3,3,17,20],[98,1,1,20,21],[99,2,2,21,23],[105,1,1,23,24],[108,1,1,24,25],[113,2,2,25,27]]],[3,83,75,27,102,[[117,4,4,27,31],[119,1,1,31,32],[120,1,1,32,33],[124,2,2,33,35],[126,2,2,35,37],[129,2,1,37,38],[130,8,8,38,46],[131,7,6,46,52],[132,19,17,52,69],[135,1,1,69,70],[136,8,7,70,77],[141,2,2,77,79],[142,4,3,79,82],[143,10,9,82,91],[147,6,6,91,97],[148,2,2,97,99],[151,4,3,99,102]]],[5,15,14,102,116,[[195,6,5,102,107],[204,1,1,107,108],[206,2,2,108,110],[208,6,6,110,116]]],[6,5,5,116,121,[[224,1,1,116,117],[230,1,1,117,118],[231,3,3,118,121]]],[10,2,2,121,123,[[298,1,1,121,122],[302,1,1,122,123]]],[13,1,1,123,124,[[371,1,1,123,124]]],[17,2,2,124,126,[[450,1,1,124,125],[451,1,1,125,126]]],[18,10,10,126,136,[[478,1,1,126,127],[484,1,1,127,128],[499,1,1,128,129],[545,1,1,129,130],[551,1,1,130,131],[559,1,1,131,132],[563,1,1,132,133],[583,2,2,133,135],[588,1,1,135,136]]],[19,1,1,136,137,[[632,1,1,136,137]]],[23,2,2,137,139,[[750,1,1,137,138],[774,1,1,138,139]]],[27,1,1,139,140,[[868,1,1,139,140]]]],[1819,1822,1835,1863,1948,1949,1956,1957,1969,1984,2527,2532,2535,2551,2658,2808,2810,2920,2921,2922,2958,2983,2994,3206,3283,3460,3462,3606,3620,3622,3657,3699,3777,3948,3959,3990,3991,4101,4109,4110,4113,4115,4118,4135,4143,4144,4177,4178,4179,4186,4188,4189,4196,4197,4199,4200,4203,4205,4210,4213,4215,4216,4218,4220,4234,4235,4236,4239,4240,4298,4312,4313,4319,4322,4333,4338,4340,4477,4478,4491,4498,4499,4556,4557,4568,4570,4571,4573,4574,4575,4576,4676,4677,4680,4690,4691,4707,4720,4722,4857,4869,4870,6052,6055,6056,6058,6064,6294,6378,6381,6438,6442,6443,6444,6446,6456,6917,7055,7112,7115,7118,8990,9171,11274,13237,13245,13944,14002,14220,14930,15050,15234,15298,15668,15669,15794,16531,19107,19687,22190]]],["+",[4,4,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,2,2,1,3,[[132,1,1,1,2],[136,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]]],[1835,4203,4319,19107]]],["assemblies",[1,1,[[18,1,1,0,1,[[563,1,1,0,1]]]],[15298]]],["assembly",[7,7,[[2,1,1,0,1,[[97,1,1,0,1]]],[3,4,4,1,5,[[124,1,1,1,2],[126,2,2,2,4],[132,1,1,4,5]]],[18,1,1,5,6,[[499,1,1,5,6]]],[19,1,1,6,7,[[632,1,1,6,7]]]],[2921,3948,3990,3991,4196,14220,16531]]],["company",[13,12,[[3,10,9,0,9,[[130,1,1,0,1],[132,5,5,1,6],[142,2,2,6,8],[143,2,1,8,9]]],[17,1,1,9,10,[[451,1,1,9,10]]],[18,2,2,10,12,[[583,2,2,10,12]]]],[4115,4199,4200,4205,4210,4234,4498,4499,4557,13245,15668,15669]]],["congregation",[121,116,[[1,14,14,0,14,[[61,3,3,0,3],[65,5,5,3,8],[66,1,1,8,9],[83,1,1,9,10],[84,3,3,10,13],[87,1,1,13,14]]],[2,10,10,14,24,[[93,2,2,14,16],[97,2,2,16,18],[98,1,1,18,19],[99,1,1,19,20],[105,1,1,20,21],[108,1,1,21,22],[113,2,2,22,24]]],[3,67,63,24,87,[[117,4,4,24,28],[119,1,1,28,29],[120,1,1,29,30],[124,1,1,30,31],[129,2,1,31,32],[130,7,7,32,39],[131,7,6,39,45],[132,12,11,45,56],[135,1,1,56,57],[136,7,7,57,64],[141,2,2,64,66],[142,2,2,66,68],[143,8,8,68,76],[147,6,6,76,82],[148,2,2,82,84],[151,4,3,84,87]]],[5,15,14,87,101,[[195,6,5,87,92],[204,1,1,92,93],[206,2,2,93,95],[208,6,6,95,101]]],[6,4,4,101,105,[[230,1,1,101,102],[231,3,3,102,105]]],[10,2,2,105,107,[[298,1,1,105,106],[302,1,1,106,107]]],[13,1,1,107,108,[[371,1,1,107,108]]],[17,1,1,108,109,[[450,1,1,108,109]]],[18,5,5,109,114,[[478,1,1,109,110],[484,1,1,110,111],[551,1,1,111,112],[559,1,1,112,113],[588,1,1,113,114]]],[23,1,1,114,115,[[774,1,1,114,115]]],[27,1,1,115,116,[[868,1,1,115,116]]]],[1819,1822,1863,1948,1949,1956,1957,1969,1984,2527,2532,2535,2551,2658,2808,2810,2920,2922,2958,2994,3206,3283,3460,3462,3606,3620,3622,3657,3699,3777,3959,4101,4109,4110,4113,4118,4135,4143,4144,4177,4178,4179,4186,4188,4189,4197,4203,4213,4215,4216,4218,4220,4235,4236,4239,4240,4298,4312,4313,4319,4322,4333,4338,4340,4477,4478,4491,4498,4556,4568,4570,4571,4573,4574,4575,4576,4676,4677,4680,4690,4691,4707,4720,4722,4857,4869,4870,6052,6055,6056,6058,6064,6294,6378,6381,6438,6442,6443,6444,6446,6456,7055,7112,7115,7118,8990,9171,11274,13237,13944,14002,15050,15234,15794,19687,22190]]],["multitude",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14930]]],["people",[1,1,[[2,1,1,0,1,[[99,1,1,0,1]]]],[2983]]],["swarm",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6917]]]]},{"k":"H5713","v":[["*",[26,25,[[0,2,2,0,2,[[20,1,1,0,1],[30,1,1,1,2]]],[4,3,3,2,5,[[156,1,1,2,3],[158,2,2,3,5]]],[5,2,1,5,6,[[210,2,1,5,6]]],[18,19,19,6,25,[[502,1,1,6,7],[555,1,1,7,8],[570,1,1,8,9],[576,1,1,9,10],[596,14,14,10,24],[609,1,1,24,25]]]],[543,925,5049,5103,5106,6503,14261,15169,15431,15506,15900,15920,15922,15944,15957,15977,15993,16017,16023,16036,16044,16050,16065,16066,16163]]],["+",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16050]]],["testimonies",[20,20,[[4,3,3,0,3,[[156,1,1,0,1],[158,2,2,1,3]]],[18,17,17,3,20,[[502,1,1,3,4],[555,1,1,4,5],[570,1,1,5,6],[576,1,1,6,7],[596,13,13,7,20]]]],[5049,5103,5106,14261,15169,15431,15506,15900,15920,15922,15944,15957,15977,15993,16017,16023,16036,16044,16065,16066]]],["testimony",[1,1,[[18,1,1,0,1,[[609,1,1,0,1]]]],[16163]]],["witness",[4,3,[[0,2,2,0,2,[[20,1,1,0,1],[30,1,1,1,2]]],[5,2,1,2,3,[[210,2,1,2,3]]]],[543,925,6503]]]]},{"k":"H5714","v":[["Iddo",[10,10,[[10,1,1,0,1,[[294,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]],[13,2,2,2,4,[[378,1,1,2,3],[379,1,1,3,4]]],[14,2,2,4,6,[[407,1,1,4,5],[408,1,1,5,6]]],[15,2,2,6,8,[[424,2,2,6,8]]],[37,2,2,8,10,[[911,2,2,8,10]]]],[8858,10475,11452,11475,12135,12165,12628,12640,22879,22885]]]]},{"k":"H5715","v":[["*",[59,57,[[1,21,20,0,20,[[65,1,1,0,1],[74,3,3,1,4],[75,2,2,4,6],[76,1,1,6,7],[79,4,3,7,10],[80,2,2,10,12],[81,1,1,12,13],[83,1,1,13,14],[87,1,1,14,15],[88,1,1,15,16],[89,4,4,16,20]]],[2,2,2,20,22,[[105,1,1,20,21],[113,1,1,21,22]]],[3,12,11,22,33,[[117,3,2,22,24],[120,1,1,24,25],[123,1,1,25,26],[125,1,1,26,27],[126,1,1,27,28],[133,4,4,28,32],[134,1,1,32,33]]],[5,1,1,33,34,[[190,1,1,33,34]]],[10,1,1,34,35,[[292,1,1,34,35]]],[11,3,3,35,38,[[323,1,1,35,36],[329,1,1,36,37],[335,1,1,37,38]]],[12,1,1,38,39,[[366,1,1,38,39]]],[13,3,3,39,42,[[389,1,1,39,40],[390,1,1,40,41],[400,1,1,41,42]]],[15,1,1,42,43,[[421,1,1,42,43]]],[18,13,13,43,56,[[496,1,1,43,44],[555,1,1,44,45],[558,1,1,45,46],[596,9,9,46,55],[599,1,1,55,56]]],[23,1,1,56,57,[[788,1,1,56,57]]]],[1981,2211,2216,2217,2268,2269,2293,2388,2408,2418,2427,2438,2453,2525,2654,2699,2710,2712,2727,2728,3214,3449,3654,3657,3748,3939,3980,3999,4248,4251,4252,4254,4259,5926,8773,9841,9998,10168,11183,11667,11683,11964,12545,14175,15118,15222,15912,15929,15934,15986,15997,16009,16027,16042,16055,16093,20033]]],["+",[2,2,[[1,1,1,0,1,[[74,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[2217,16055]]],["Testimony",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1981]]],["testimonies",[14,14,[[10,1,1,0,1,[[292,1,1,0,1]]],[11,2,2,1,3,[[329,1,1,1,2],[335,1,1,2,3]]],[12,1,1,3,4,[[366,1,1,3,4]]],[13,1,1,4,5,[[400,1,1,4,5]]],[15,1,1,5,6,[[421,1,1,5,6]]],[18,7,7,6,13,[[596,7,7,6,13]]],[23,1,1,13,14,[[788,1,1,13,14]]]],[8773,9998,10168,11183,11964,12545,15912,15929,15934,15997,16009,16027,16042,20033]]],["testimony",[38,36,[[1,19,18,0,18,[[74,2,2,0,2],[75,2,2,2,4],[76,1,1,4,5],[79,4,3,5,8],[80,2,2,8,10],[81,1,1,10,11],[83,1,1,11,12],[87,1,1,12,13],[88,1,1,13,14],[89,4,4,14,18]]],[2,2,2,18,20,[[105,1,1,18,19],[113,1,1,19,20]]],[3,9,8,20,28,[[117,3,2,20,22],[120,1,1,22,23],[123,1,1,23,24],[125,1,1,24,25],[126,1,1,25,26],[133,2,2,26,28]]],[5,1,1,28,29,[[190,1,1,28,29]]],[11,1,1,29,30,[[323,1,1,29,30]]],[13,1,1,30,31,[[389,1,1,30,31]]],[18,5,5,31,36,[[496,1,1,31,32],[555,1,1,32,33],[558,1,1,33,34],[596,1,1,34,35],[599,1,1,35,36]]]],[2211,2216,2268,2269,2293,2388,2408,2418,2427,2438,2453,2525,2654,2699,2710,2712,2727,2728,3214,3449,3654,3657,3748,3939,3980,3999,4248,4254,5926,9841,11667,14175,15118,15222,15986,16093]]],["witness",[4,4,[[3,3,3,0,3,[[133,2,2,0,2],[134,1,1,2,3]]],[13,1,1,3,4,[[390,1,1,3,4]]]],[4251,4252,4259,11683]]]]},{"k":"H5716","v":[["*",[14,13,[[1,3,3,0,3,[[82,3,3,0,3]]],[9,1,1,3,4,[[267,1,1,3,4]]],[18,2,2,4,6,[[509,1,1,4,5],[580,1,1,5,6]]],[22,1,1,6,7,[[727,1,1,6,7]]],[23,2,2,7,9,[[746,1,1,7,8],[748,1,1,8,9]]],[25,5,4,9,13,[[808,1,1,9,10],[817,3,2,10,12],[824,1,1,12,13]]]],[2477,2478,2479,8046,14364,15554,18654,18997,19057,20597,20769,20773,21047]]],["excellent",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20769]]],["mouth",[2,2,[[18,2,2,0,2,[[509,1,1,0,1],[580,1,1,1,2]]]],[14364,15554]]],["ornament",[2,2,[[22,1,1,0,1,[[727,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]]],[18654,20597]]],["ornaments",[9,9,[[1,3,3,0,3,[[82,3,3,0,3]]],[9,1,1,3,4,[[267,1,1,3,4]]],[23,2,2,4,6,[[746,1,1,4,5],[748,1,1,5,6]]],[25,3,3,6,9,[[817,2,2,6,8],[824,1,1,8,9]]]],[2477,2478,2479,8046,18997,19057,20769,20773,21047]]]]},{"k":"H5717","v":[["Adiel",[3,3,[[12,3,3,0,3,[[341,1,1,0,1],[346,1,1,1,2],[364,1,1,2,3]]]],[10421,10627,11134]]]]},{"k":"H5718","v":[["Adaiah",[9,9,[[11,1,1,0,1,[[334,1,1,0,1]]],[12,3,3,1,4,[[343,1,1,1,2],[345,1,1,2,3],[346,1,1,3,4]]],[13,1,1,4,5,[[389,1,1,4,5]]],[14,2,2,5,7,[[412,2,2,5,7]]],[15,2,2,7,9,[[423,2,2,7,9]]]],[10146,10495,10596,10627,11657,12281,12291,12593,12600]]]]},{"k":"H5719","v":[["pleasures",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18607]]]]},{"k":"H5720","v":[["Adin",[4,4,[[14,2,2,0,2,[[404,1,1,0,1],[410,1,1,1,2]]],[15,2,2,2,4,[[419,1,1,2,3],[422,1,1,3,4]]]],[12042,12207,12440,12565]]]]},{"k":"H5721","v":[["Adina",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10715]]]]},{"k":"H5722","v":[["Adino",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8661]]]]},{"k":"H5723","v":[["Adithaim",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6238]]]]},{"k":"H5724","v":[["Adlai",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11138]]]]},{"k":"H5725","v":[["Adullam",[8,8,[[5,2,2,0,2,[[198,1,1,0,1],[201,1,1,1,2]]],[8,1,1,2,3,[[257,1,1,2,3]]],[9,1,1,3,4,[[289,1,1,3,4]]],[12,1,1,4,5,[[348,1,1,4,5]]],[13,1,1,5,6,[[377,1,1,5,6]]],[15,1,1,6,7,[[423,1,1,6,7]]],[32,1,1,7,8,[[893,1,1,7,8]]]],[6145,6237,7788,8666,10688,11421,12618,22594]]]]},{"k":"H5726","v":[["Adullamite",[3,3,[[0,3,3,0,3,[[37,3,3,0,3]]]],[1120,1131,1139]]]]},{"k":"H5727","v":[["themselves",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12536]]]]},{"k":"H5728","v":[["yet",[2,2,[[20,2,2,0,2,[[662,2,2,0,2]]]],[17383,17384]]]]},{"k":"H5729","v":[["Eden",[3,3,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]],[25,1,1,2,3,[[828,1,1,2,3]]]],[10073,18364,21144]]]]},{"k":"H5730","v":[["*",[4,4,[[0,1,1,0,1,[[17,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]],[18,1,1,2,3,[[513,1,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]]],[436,8046,14446,20246]]],["+",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20246]]],["delights",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8046]]],["pleasure",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[436]]],["pleasures",[1,1,[[18,1,1,0,1,[[513,1,1,0,1]]]],[14446]]]]},{"k":"H5731","v":[["*",[16,15,[[0,6,6,0,6,[[1,3,3,0,3],[2,2,2,3,5],[3,1,1,5,6]]],[13,2,2,6,8,[[395,1,1,6,7],[397,1,1,7,8]]],[22,1,1,8,9,[[729,1,1,8,9]]],[25,6,5,9,14,[[829,1,1,9,10],[832,4,3,10,13],[837,1,1,13,14]]],[28,1,1,14,15,[[877,1,1,14,15]]]],[38,40,45,78,79,95,11803,11869,18676,21170,21239,21246,21248,21394,22314]]],["+",[2,2,[[0,2,2,0,2,[[1,1,1,0,1],[2,1,1,1,2]]]],[40,79]]],["Eden",[14,13,[[0,4,4,0,4,[[1,2,2,0,2],[2,1,1,2,3],[3,1,1,3,4]]],[13,2,2,4,6,[[395,1,1,4,5],[397,1,1,5,6]]],[22,1,1,6,7,[[729,1,1,6,7]]],[25,6,5,7,12,[[829,1,1,7,8],[832,4,3,8,11],[837,1,1,11,12]]],[28,1,1,12,13,[[877,1,1,12,13]]]],[38,45,78,95,11803,11869,18676,21170,21239,21246,21248,21394,22314]]]]},{"k":"H5732","v":[["*",[13,11,[[26,13,11,0,11,[[851,3,3,0,3],[852,2,2,3,5],[853,4,4,5,9],[856,4,2,9,11]]]],[21766,21767,21779,21812,21822,21853,21860,21862,21869,21945,21958]]],["time",[7,6,[[26,7,6,0,6,[[851,2,2,0,2],[852,2,2,2,4],[856,3,2,4,6]]]],[21766,21767,21812,21822,21945,21958]]],["times",[6,6,[[26,6,6,0,6,[[851,1,1,0,1],[853,4,4,1,5],[856,1,1,5,6]]]],[21779,21853,21860,21862,21869,21958]]]]},{"k":"H5733","v":[["Adna",[2,2,[[14,1,1,0,1,[[412,1,1,0,1]]],[15,1,1,1,2,[[424,1,1,1,2]]]],[12282,12639]]]]},{"k":"H5734","v":[["Adnah",[2,2,[[12,1,1,0,1,[[349,1,1,0,1]]],[13,1,1,1,2,[[383,1,1,1,2]]]],[10740,11537]]]]},{"k":"H5735","v":[["Adadah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6224]]]]},{"k":"H5736","v":[["*",[9,8,[[1,5,4,0,4,[[65,2,2,0,2],[75,3,2,2,4]]],[2,1,1,4,5,[[114,1,1,4,5]]],[3,3,3,5,8,[[119,3,3,5,8]]]],[1965,1970,2247,2248,3496,3738,3740,3741]]],["+",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1965]]],["more",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3738]]],["number",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3740]]],["over",[2,2,[[1,1,1,0,1,[[65,1,1,0,1]]],[3,1,1,1,2,[[119,1,1,1,2]]]],[1970,3741]]],["overplus",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3496]]],["remaineth",[3,2,[[1,3,2,0,2,[[75,3,2,0,2]]]],[2247,2248]]]]},{"k":"H5737","v":[["*",[11,11,[[8,1,1,0,1,[[265,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[10,1,1,2,3,[[294,1,1,2,3]]],[12,2,2,3,5,[[349,2,2,3,5]]],[22,5,5,5,10,[[683,1,1,5,6],[685,1,1,6,7],[712,1,1,7,8],[718,1,1,8,9],[737,1,1,9,10]]],[35,1,1,10,11,[[908,1,1,10,11]]]],[7997,8471,8871,10753,10758,17745,17807,18319,18446,18815,22825]]],["+",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18815]]],["digged",[2,2,[[22,2,2,0,2,[[683,1,1,0,1],[685,1,1,1,2]]]],[17745,17807]]],["fail",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18319]]],["faileth",[2,2,[[22,1,1,0,1,[[718,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[18446,22825]]],["keep",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10758]]],["lacked",[2,2,[[9,1,1,0,1,[[283,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]]],[8471,8871]]],["lacking",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7997]]],["rank",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10753]]]]},{"k":"H5738","v":[["Ader",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10590]]]]},{"k":"H5739","v":[["*",[39,34,[[0,10,6,0,6,[[28,4,3,0,3],[29,1,1,3,4],[31,5,2,4,6]]],[6,1,1,6,7,[[215,1,1,6,7]]],[8,1,1,7,8,[[252,1,1,7,8]]],[13,1,1,8,9,[[398,1,1,8,9]]],[17,1,1,9,10,[[459,1,1,9,10]]],[18,1,1,10,11,[[555,1,1,10,11]]],[19,1,1,11,12,[[654,1,1,11,12]]],[21,5,5,12,17,[[671,1,1,12,13],[674,2,2,13,15],[676,2,2,15,17]]],[22,3,3,17,20,[[695,1,1,17,18],[710,1,1,18,19],[718,1,1,19,20]]],[23,6,6,20,26,[[750,1,1,20,21],[757,2,2,21,23],[775,2,2,23,25],[795,1,1,25,26]]],[25,1,1,26,27,[[835,1,1,26,27]]],[28,2,1,27,28,[[876,2,1,27,28]]],[32,3,3,28,31,[[894,1,1,28,29],[896,1,1,29,30],[897,1,1,30,31]]],[35,1,1,31,32,[[907,1,1,31,32]]],[37,1,1,32,33,[[920,1,1,32,33]]],[38,1,1,33,34,[[925,1,1,33,34]]]],[797,798,803,870,944,947,6639,7652,11903,13438,15165,17192,17544,17583,17584,17619,17620,17985,18273,18431,19092,19283,19286,19701,19715,20235,21325,22309,22607,22628,22641,22819,23019,23103]]],["+",[4,3,[[0,2,1,0,1,[[31,2,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[37,1,1,2,3,[[920,1,1,2,3]]]],[944,7652,23019]]],["drove",[2,1,[[0,2,1,0,1,[[31,2,1,0,1]]]],[944]]],["droves",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[947]]],["flock",[14,14,[[18,1,1,0,1,[[555,1,1,0,1]]],[21,4,4,1,5,[[674,2,2,1,3],[676,2,2,3,5]]],[22,1,1,5,6,[[718,1,1,5,6]]],[23,4,4,6,10,[[757,2,2,6,8],[775,1,1,8,9],[795,1,1,9,10]]],[25,1,1,10,11,[[835,1,1,10,11]]],[32,2,2,11,13,[[894,1,1,11,12],[896,1,1,12,13]]],[38,1,1,13,14,[[925,1,1,13,14]]]],[15165,17583,17584,17619,17620,18431,19283,19286,19701,20235,21325,22607,22628,23103]]],["flocks",[16,15,[[0,5,4,0,4,[[28,4,3,0,3],[29,1,1,3,4]]],[6,1,1,4,5,[[215,1,1,4,5]]],[13,1,1,5,6,[[398,1,1,5,6]]],[17,1,1,6,7,[[459,1,1,6,7]]],[21,1,1,7,8,[[671,1,1,7,8]]],[22,2,2,8,10,[[695,1,1,8,9],[710,1,1,9,10]]],[23,2,2,10,12,[[750,1,1,10,11],[775,1,1,11,12]]],[28,1,1,12,13,[[876,1,1,12,13]]],[32,1,1,13,14,[[897,1,1,13,14]]],[35,1,1,14,15,[[907,1,1,14,15]]]],[797,798,803,870,6639,11903,13438,17544,17985,18273,19092,19715,22309,22641,22819]]],["herds",[2,2,[[19,1,1,0,1,[[654,1,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]]],[17192,22309]]]]},{"k":"H5740","v":[["Eder",[3,3,[[5,1,1,0,1,[[201,1,1,0,1]]],[12,2,2,1,3,[[360,1,1,1,2],[361,1,1,2,3]]]],[6223,11006,11045]]]]},{"k":"H5741","v":[["Adriel",[2,2,[[8,1,1,0,1,[[253,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]]],[7695,8588]]]]},{"k":"H5742","v":[["lentiles",[4,4,[[0,1,1,0,1,[[24,1,1,0,1]]],[9,2,2,1,3,[[283,1,1,1,2],[289,1,1,2,3]]],[25,1,1,3,4,[[805,1,1,3,4]]]],[692,8477,8664,20538]]]]},{"k":"H5743","v":[["+",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20333]]]]},{"k":"H5744","v":[["Obed",[10,9,[[7,3,3,0,3,[[235,3,3,0,3]]],[12,6,5,3,8,[[339,4,3,3,6],[348,1,1,6,7],[363,1,1,7,8]]],[13,1,1,8,9,[[389,1,1,8,9]]]],[7207,7211,7212,10318,10343,10344,10720,11084,11657]]]]},{"k":"H5745","v":[["Obal",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[262]]]]},{"k":"H5746","v":[["bake",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20541]]]]},{"k":"H5747","v":[["Og",[22,22,[[3,2,2,0,2,[[137,1,1,0,1],[148,1,1,1,2]]],[4,10,10,2,12,[[153,1,1,2,3],[155,6,6,3,9],[156,1,1,9,10],[181,1,1,10,11],[183,1,1,11,12]]],[5,6,6,12,18,[[188,1,1,12,13],[195,1,1,13,14],[198,1,1,14,15],[199,3,3,15,18]]],[10,1,1,18,19,[[294,1,1,18,19]]],[15,1,1,19,20,[[421,1,1,19,20]]],[18,2,2,20,22,[[612,1,1,20,21],[613,1,1,21,22]]]],[4373,4751,4896,4976,4978,4979,4985,4986,4988,5051,5686,5732,5879,6047,6134,6166,6184,6185,8863,12533,16186,16216]]]]},{"k":"H5748","v":[["*",[4,4,[[0,1,1,0,1,[[3,1,1,0,1]]],[17,2,2,1,3,[[456,1,1,1,2],[465,1,1,2,3]]],[18,1,1,3,4,[[627,1,1,3,4]]]],[100,13367,13588,16398]]],["organ",[3,3,[[0,1,1,0,1,[[3,1,1,0,1]]],[17,2,2,1,3,[[456,1,1,1,2],[465,1,1,2,3]]]],[100,13367,13588]]],["organs",[1,1,[[18,1,1,0,1,[[627,1,1,0,1]]]],[16398]]]]},{"k":"H5749","v":[["*",[45,40,[[0,2,1,0,1,[[42,2,1,0,1]]],[1,3,3,1,4,[[68,2,2,1,3],[70,1,1,3,4]]],[4,6,5,4,9,[[156,2,1,4,5],[160,1,1,5,6],[182,1,1,6,7],[183,1,1,7,8],[184,1,1,8,9]]],[8,2,1,9,10,[[243,2,1,9,10]]],[10,3,3,10,13,[[292,1,1,10,11],[311,2,2,11,13]]],[11,2,2,13,15,[[329,2,2,13,15]]],[13,1,1,15,16,[[390,1,1,15,16]]],[15,6,6,16,22,[[421,4,4,16,20],[425,2,2,20,22]]],[17,1,1,22,23,[[464,1,1,22,23]]],[18,6,6,23,29,[[497,1,1,23,24],[527,1,1,24,25],[558,1,1,25,26],[596,1,1,26,27],[623,1,1,27,28],[624,1,1,28,29]]],[22,1,1,29,30,[[686,1,1,29,30]]],[23,8,6,30,36,[[750,1,1,30,31],[755,3,1,31,32],[776,3,3,32,35],[786,1,1,35,36]]],[24,1,1,36,37,[[798,1,1,36,37]]],[29,1,1,37,38,[[881,1,1,37,38]]],[37,1,1,38,39,[[913,1,1,38,39]]],[38,1,1,39,40,[[926,1,1,39,40]]]],[1293,2047,2049,2106,5030,5156,5727,5756,5804,7378,8812,9461,9464,9996,9998,11696,12537,12540,12541,12545,12686,12692,13543,14190,14675,15225,15959,16350,16357,17809,19099,19233,19741,19756,19775,19994,20345,22408,22918,23117]]],["+",[10,7,[[0,2,1,0,1,[[42,2,1,0,1]]],[4,3,3,1,4,[[156,1,1,1,2],[182,1,1,2,3],[183,1,1,3,4]]],[8,2,1,4,5,[[243,2,1,4,5]]],[22,1,1,5,6,[[686,1,1,5,6]]],[23,2,1,6,7,[[755,2,1,6,7]]]],[1293,5030,5727,5756,7378,17809,19233]]],["admonished",[1,1,[[23,1,1,0,1,[[786,1,1,0,1]]]],[19994]]],["against",[2,2,[[10,2,2,0,2,[[311,2,2,0,2]]]],[9461,9464]]],["charge",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2047]]],["chargedst",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2049]]],["protested",[2,2,[[10,1,1,0,1,[[292,1,1,0,1]]],[37,1,1,1,2,[[913,1,1,1,2]]]],[8812,22918]]],["protesting",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19233]]],["relieveth",[1,1,[[18,1,1,0,1,[[623,1,1,0,1]]]],[16350]]],["robbed",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15959]]],["take",[2,2,[[23,2,2,0,2,[[776,2,2,0,2]]]],[19756,19775]]],["testified",[7,7,[[1,1,1,0,1,[[70,1,1,0,1]]],[11,2,2,1,3,[[329,2,2,1,3]]],[13,1,1,3,4,[[390,1,1,3,4]]],[15,3,3,4,7,[[421,1,1,4,5],[425,2,2,5,7]]]],[2106,9996,9998,11696,12537,12686,12692]]],["testifiedst",[2,2,[[15,2,2,0,2,[[421,2,2,0,2]]]],[12540,12541]]],["testify",[6,6,[[4,2,2,0,2,[[160,1,1,0,1],[184,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[18,2,2,3,5,[[527,1,1,3,4],[558,1,1,4,5]]],[29,1,1,5,6,[[881,1,1,5,6]]]],[5156,5804,12545,14675,15225,22408]]],["took",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19741]]],["up",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16357]]],["upright",[1,1,[[18,1,1,0,1,[[497,1,1,0,1]]]],[14190]]],["warning",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19099]]],["witness",[4,4,[[4,1,1,0,1,[[156,1,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]],[38,1,1,3,4,[[926,1,1,3,4]]]],[5030,13543,20345,23117]]]]},{"k":"H5750","v":[["*",[483,456,[[0,54,50,0,50,[[3,1,1,0,1],[6,1,1,1,2],[7,6,4,2,6],[8,3,2,6,8],[16,1,1,8,9],[17,2,2,9,11],[18,1,1,11,12],[23,1,1,12,13],[24,1,1,13,14],[28,7,7,14,21],[29,2,2,21,23],[30,1,1,23,24],[31,1,1,24,25],[34,3,3,25,28],[36,4,3,28,31],[37,3,3,31,34],[39,2,2,34,36],[42,4,4,36,40],[43,1,1,40,41],[44,5,5,41,46],[45,2,2,46,48],[47,2,2,48,50]]],[1,13,13,50,63,[[51,1,1,50,51],[52,1,1,51,52],[53,2,2,52,54],[58,3,3,54,57],[59,1,1,57,58],[60,1,1,58,59],[63,1,1,59,60],[66,1,1,60,61],[85,2,2,61,63]]],[2,4,4,63,67,[[102,1,1,63,64],[106,1,1,64,65],[114,1,1,65,66],[116,1,1,66,67]]],[3,9,9,67,76,[[124,1,1,67,68],[127,1,1,68,69],[134,2,2,69,71],[135,1,1,71,72],[138,2,2,72,74],[148,2,2,74,76]]],[4,15,15,76,91,[[155,1,1,76,77],[156,2,2,77,79],[157,1,1,79,80],[162,1,1,80,81],[165,1,1,81,82],[169,2,2,82,84],[170,1,1,84,85],[171,2,2,85,87],[180,1,1,87,88],[183,2,2,88,90],[186,1,1,90,91]]],[5,5,5,91,96,[[187,1,1,91,92],[188,1,1,92,93],[191,2,2,93,95],[200,1,1,95,96]]],[6,10,10,96,106,[[212,1,1,96,97],[216,1,1,97,98],[217,1,1,98,99],[218,1,1,99,100],[221,1,1,100,101],[223,2,2,101,103],[228,1,1,103,104],[230,2,2,104,106]]],[7,2,2,106,108,[[232,2,2,106,108]]],[8,17,16,108,124,[[236,1,1,108,109],[238,1,1,109,110],[242,1,1,110,111],[245,2,1,111,112],[248,1,1,112,113],[251,1,1,113,114],[253,2,2,114,116],[255,2,2,116,118],[258,2,2,118,120],[261,1,1,120,121],[262,2,2,121,123],[263,1,1,123,124]]],[9,31,28,124,152,[[267,1,1,124,125],[268,1,1,125,126],[269,2,2,126,128],[271,3,2,128,130],[272,2,2,130,132],[273,3,3,132,135],[275,3,2,135,137],[276,1,1,137,138],[278,2,2,138,140],[280,3,3,140,143],[284,2,2,143,145],[285,4,3,145,148],[287,4,4,148,152]]],[10,12,12,152,164,[[291,3,3,152,155],[298,1,1,155,156],[300,2,2,156,158],[302,2,2,158,160],[310,1,1,160,161],[312,3,3,161,164]]],[11,13,11,164,175,[[314,2,2,164,166],[316,2,1,166,167],[317,1,1,167,168],[318,3,2,168,170],[324,1,1,170,171],[326,1,1,171,172],[327,2,2,172,174],[336,1,1,174,175]]],[12,11,10,175,185,[[349,1,1,175,176],[351,4,3,176,179],[354,2,2,179,181],[356,1,1,181,182],[357,2,2,182,184],[366,1,1,184,185]]],[13,14,14,185,199,[[375,1,1,185,186],[376,1,1,186,187],[379,1,1,187,188],[380,1,1,188,189],[383,1,1,189,190],[384,2,2,190,192],[386,1,1,192,193],[393,1,1,193,194],[394,1,1,194,195],[398,1,1,195,196],[399,1,1,196,197],[400,2,2,197,199]]],[15,1,1,199,200,[[414,1,1,199,200]]],[16,3,3,200,203,[[427,1,1,200,201],[431,1,1,201,202],[434,1,1,202,203]]],[17,19,18,203,221,[[436,3,3,203,206],[437,2,2,206,208],[441,2,2,208,210],[442,2,1,210,211],[443,1,1,211,212],[449,1,1,212,213],[455,1,1,213,214],[459,1,1,214,215],[462,1,1,215,216],[464,1,1,216,217],[467,2,2,217,219],[469,1,1,219,220],[471,1,1,220,221]]],[18,22,22,221,243,[[487,1,1,221,222],[514,1,1,222,223],[516,1,1,223,224],[519,2,2,224,226],[520,1,1,226,227],[526,1,1,227,228],[551,1,1,228,229],[554,1,1,229,230],[555,3,3,230,233],[560,1,1,233,234],[561,1,1,234,235],[565,1,1,235,236],[569,1,1,236,237],[580,1,1,237,238],[581,2,2,238,240],[616,1,1,240,241],[618,1,1,241,242],[623,1,1,242,243]]],[19,6,6,243,249,[[636,1,1,243,244],[638,1,1,244,245],[646,1,1,245,246],[650,1,1,246,247],[658,2,2,247,249]]],[20,6,6,249,255,[[661,1,1,249,250],[662,1,1,250,251],[665,1,1,251,252],[667,2,2,252,254],[670,1,1,254,255]]],[22,47,46,255,301,[[679,1,1,255,256],[680,1,1,256,257],[683,2,2,257,259],[684,1,1,259,260],[685,1,1,260,261],[687,3,3,261,264],[688,4,4,264,268],[692,1,1,268,269],[699,1,1,269,270],[701,2,2,270,272],[704,1,1,272,273],[706,1,1,273,274],[707,1,1,274,275],[708,1,1,275,276],[710,1,1,276,277],[716,1,1,277,278],[723,6,6,278,284],[724,1,1,284,285],[725,2,2,285,287],[727,1,1,287,288],[729,1,1,288,289],[730,1,1,289,290],[732,2,2,290,292],[734,1,1,292,293],[738,3,3,293,296],[740,3,2,296,298],[743,3,3,298,301]]],[23,53,50,301,351,[[746,2,2,301,303],[747,4,3,303,306],[751,1,1,306,307],[754,1,1,307,308],[755,1,1,308,309],[757,1,1,309,310],[759,1,1,310,311],[760,1,1,311,312],[763,2,2,312,314],[764,1,1,314,315],[766,4,4,315,319],[767,3,3,319,322],[772,2,2,322,324],[774,1,1,324,325],[775,10,8,325,333],[776,1,1,333,334],[777,5,5,334,339],[778,1,1,339,340],[780,1,1,340,341],[782,1,1,341,342],[784,1,1,342,343],[786,1,1,343,344],[788,2,2,344,346],[792,1,1,346,347],[793,1,1,347,348],[794,1,1,348,349],[795,2,2,349,351]]],[24,1,1,351,352,[[800,1,1,351,352]]],[25,58,51,352,403,[[806,2,2,352,354],[808,1,1,354,355],[809,3,3,355,358],[813,4,4,358,362],[814,2,2,362,364],[815,2,1,364,365],[816,1,1,365,366],[817,3,3,366,369],[819,1,1,369,370],[820,1,1,370,371],[821,2,2,371,373],[822,1,1,373,374],[824,2,2,374,376],[825,2,2,376,378],[827,3,3,378,381],[829,1,1,381,382],[830,2,2,382,384],[831,1,1,384,385],[833,1,1,385,386],[834,1,1,386,387],[835,5,4,387,391],[837,8,5,391,396],[838,4,2,396,398],[840,3,3,398,401],[844,1,1,401,402],[846,1,1,402,403]]],[26,6,6,403,409,[[858,2,2,403,405],[859,1,1,405,406],[860,3,3,406,409]]],[27,10,9,409,418,[[862,3,2,409,411],[863,2,2,411,413],[864,1,1,413,414],[872,1,1,414,415],[873,1,1,415,416],[875,2,2,416,418]]],[28,3,3,418,421,[[877,2,2,418,420],[878,1,1,420,421]]],[29,7,7,421,428,[[882,1,1,421,422],[884,1,1,422,423],[885,2,2,423,425],[886,2,2,425,427],[887,1,1,427,428]]],[31,1,1,428,429,[[891,1,1,428,429]]],[32,4,4,429,433,[[893,1,1,429,430],[896,1,1,430,431],[897,1,1,431,432],[898,1,1,432,433]]],[33,4,4,433,437,[[900,3,3,433,436],[901,1,1,436,437]]],[34,1,1,437,438,[[904,1,1,437,438]]],[35,3,3,438,441,[[907,1,1,438,439],[908,2,2,439,441]]],[36,2,2,441,443,[[910,2,2,441,443]]],[37,15,12,443,455,[[911,4,1,443,444],[912,1,1,444,445],[918,2,2,445,447],[919,1,1,447,448],[921,2,2,448,450],[922,1,1,450,451],[923,2,2,451,453],[924,2,2,453,455]]],[38,1,1,455,456,[[926,1,1,455,456]]]],[104,163,193,195,204,205,216,220,402,446,453,469,611,664,802,804,822,825,828,829,830,837,849,887,956,1020,1021,1027,1088,1091,1092,1123,1124,1145,1185,1191,1296,1297,1317,1318,1338,1361,1364,1369,1384,1386,1415,1416,1458,1466,1557,1594,1607,1619,1744,1759,1771,1806,1807,1902,1987,2569,2572,3109,3242,3520,3590,3964,4057,4262,4279,4302,4390,4405,4732,4733,5001,5039,5043,5078,5202,5288,5377,5380,5400,5415,5426,5679,5730,5755,5849,5862,5880,5935,5946,6198,6559,6678,6698,6739,6843,6892,6893,7017,7079,7082,7138,7141,7230,7282,7365,7440,7492,7606,7684,7705,7733,7744,7814,7832,7926,7931,7934,7957,8031,8077,8092,8116,8145,8154,8158,8179,8190,8199,8200,8228,8230,8259,8308,8309,8366,8385,8388,8492,8500,8539,8540,8546,8597,8598,8599,8600,8731,8739,8759,9045,9084,9089,9153,9156,9440,9487,9488,9523,9563,9572,9609,9664,9697,9707,9853,9900,9929,9960,10209,10721,10777,10787,10788,10872,10881,10926,10931,10932,11167,11368,11400,11473,11482,11529,11548,11549,11620,11757,11781,11891,11925,11936,11949,12324,12738,12807,12846,12885,12886,12887,12894,12900,12988,13007,13018,13041,13188,13335,13456,13484,13537,13643,13644,13706,13738,14059,14460,14513,14560,14566,14571,14657,15057,15100,15130,15143,15145,15245,15263,15313,15425,15565,15604,15606,16257,16281,16343,16647,16712,16944,17079,17291,17299,17375,17394,17457,17480,17481,17532,17659,17689,17743,17764,17782,17790,17841,17846,17850,17854,17870,17875,17882,17929,18051,18087,18089,18151,18168,18210,18237,18264,18401,18566,18567,18575,18579,18582,18583,18595,18607,18609,18656,18695,18697,18727,18732,18761,18839,18840,18841,18858,18862,18916,18917,18921,18974,18996,19003,19018,19019,19151,19221,19245,19293,19324,19350,19413,19418,19431,19464,19465,19466,19484,19488,19491,19520,19621,19629,19675,19695,19696,19711,19714,19720,19725,19730,19731,19746,19776,19785,19787,19788,19799,19811,19874,19904,19946,19993,20032,20036,20082,20134,20205,20245,20256,20437,20550,20555,20590,20610,20617,20619,20703,20704,20705,20708,20729,20731,20742,20759,20803,20804,20825,20852,20890,20922,20934,20949,21034,21045,21069,21083,21113,21114,21121,21181,21198,21199,21217,21261,21302,21323,21335,21341,21342,21371,21373,21374,21389,21396,21419,21420,21455,21476,21477,21579,21638,22008,22009,22029,22038,22063,22071,22098,22100,22121,22122,22129,22252,22261,22285,22290,22330,22338,22360,22417,22460,22472,22477,22483,22495,22510,22562,22594,22623,22646,22658,22696,22698,22699,22712,22751,22820,22831,22835,22861,22874,22895,22911,22980,22996,23007,23034,23043,23051,23061,23062,23079,23089,23116]]],["+",[24,23,[[0,2,2,0,2,[[7,1,1,0,1],[47,1,1,1,2]]],[3,1,1,2,3,[[138,1,1,2,3]]],[4,2,2,3,5,[[155,1,1,3,4],[157,1,1,4,5]]],[6,1,1,5,6,[[221,1,1,5,6]]],[8,1,1,6,7,[[242,1,1,6,7]]],[11,1,1,7,8,[[318,1,1,7,8]]],[12,1,1,8,9,[[354,1,1,8,9]]],[13,1,1,9,10,[[393,1,1,9,10]]],[18,2,2,10,12,[[487,1,1,10,11],[554,1,1,11,12]]],[22,2,2,12,14,[[725,2,2,12,14]]],[25,7,6,14,20,[[809,3,3,14,17],[825,1,1,17,18],[834,1,1,18,19],[838,2,1,19,20]]],[27,1,1,20,21,[[862,1,1,20,21]]],[33,1,1,21,22,[[900,1,1,21,22]]],[35,1,1,22,23,[[908,1,1,22,23]]]],[204,1466,4405,5001,5078,6843,7365,9697,10881,11757,14059,15100,18607,18609,20610,20617,20619,21083,21302,21419,22100,22699,22831]]],["Again",[4,4,[[9,1,1,0,1,[[272,1,1,0,1]]],[23,3,3,1,4,[[775,1,1,1,2],[777,2,2,2,4]]]],[8158,19695,19785,19787]]],["Moreover",[2,2,[[12,1,1,0,1,[[366,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[11167,21045]]],["While",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[205]]],["Within",[2,2,[[22,1,1,0,1,[[699,1,1,0,1]]],[23,1,1,1,2,[[772,1,1,1,2]]]],[18051,19621]]],["Yet",[8,8,[[0,2,2,0,2,[[39,2,2,0,2]]],[1,1,1,2,3,[[60,1,1,2,3]]],[22,1,1,3,4,[[734,1,1,3,4]]],[25,1,1,4,5,[[821,1,1,4,5]]],[31,1,1,5,6,[[891,1,1,5,6]]],[32,1,1,6,7,[[893,1,1,6,7]]],[36,1,1,7,8,[[910,1,1,7,8]]]],[1185,1191,1807,18761,20922,22562,22594,22861]]],["after",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11400]]],["again",[44,44,[[0,10,10,0,10,[[3,1,1,0,1],[23,1,1,1,2],[28,3,3,2,5],[29,2,2,5,7],[34,1,1,7,8],[37,2,2,8,10]]],[1,1,1,10,11,[[63,1,1,10,11]]],[4,2,2,11,13,[[165,1,1,11,12],[180,1,1,12,13]]],[6,3,3,13,16,[[223,2,2,13,15],[230,1,1,15,16]]],[7,1,1,16,17,[[232,1,1,16,17]]],[9,5,5,17,22,[[269,1,1,17,18],[278,1,1,18,19],[280,1,1,19,20],[287,2,2,20,22]]],[12,3,3,22,25,[[351,1,1,22,23],[357,2,2,23,25]]],[13,3,3,25,28,[[379,1,1,25,26],[394,1,1,26,27],[400,1,1,27,28]]],[17,2,2,28,30,[[441,1,1,28,29],[449,1,1,29,30]]],[19,1,1,30,31,[[650,1,1,30,31]]],[22,2,2,31,33,[[727,1,1,31,32],[729,1,1,32,33]]],[23,5,5,33,38,[[747,1,1,33,34],[763,1,1,34,35],[775,1,1,35,36],[776,1,1,36,37],[777,1,1,37,38]]],[25,2,2,38,40,[[806,1,1,38,39],[827,1,1,39,40]]],[27,1,1,40,41,[[862,1,1,40,41]]],[29,1,1,41,42,[[886,1,1,41,42]]],[37,2,2,42,44,[[912,1,1,42,43],[922,1,1,43,44]]]],[104,611,828,829,830,837,849,1020,1123,1124,1902,5288,5679,6892,6893,7079,7141,8092,8309,8385,8598,8599,10788,10931,10932,11473,11781,11949,13007,13188,17079,18656,18695,19003,19418,19695,19746,19788,20550,21121,22100,22495,22911,23051]]],["being",[2,2,[[18,2,2,0,2,[[581,1,1,0,1],[623,1,1,1,2]]]],[15604,16343]]],["beside",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22820]]],["besides",[4,4,[[0,1,1,0,1,[[18,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]],[13,1,1,2,3,[[384,1,1,2,3]]],[23,1,1,3,4,[[780,1,1,3,4]]]],[469,9487,11548,19874]]],["but",[1,1,[[0,1,1,0,1,[[34,1,1,0,1]]]],[1027]]],["else",[11,11,[[4,2,2,0,2,[[156,2,2,0,2]]],[10,1,1,2,3,[[298,1,1,2,3]]],[22,7,7,3,10,[[723,6,6,3,9],[724,1,1,9,10]]],[28,1,1,10,11,[[877,1,1,10,11]]]],[5039,5043,9045,18566,18567,18575,18579,18582,18583,18595,22338]]],["further",[2,2,[[8,1,1,0,1,[[245,1,1,0,1]]],[16,1,1,1,2,[[434,1,1,1,2]]]],[7440,12846]]],["furthermore",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1607]]],["henceforth",[3,3,[[3,1,1,0,1,[[134,1,1,0,1]]],[11,1,1,1,2,[[317,1,1,1,2]]],[25,1,1,2,3,[[837,1,1,2,3]]]],[4279,9664,21371]]],["longer",[4,4,[[1,1,1,0,1,[[51,1,1,0,1]]],[6,1,1,1,2,[[212,1,1,1,2]]],[11,1,1,2,3,[[318,1,1,2,3]]],[23,1,1,3,4,[[788,1,1,3,4]]]],[1557,6559,9707,20032]]],["more",[190,179,[[0,10,9,0,9,[[7,2,2,0,2],[8,3,2,2,4],[16,1,1,4,5],[31,1,1,5,6],[34,1,1,6,7],[36,1,1,7,8],[37,1,1,8,9]]],[1,3,3,9,12,[[58,1,1,9,10],[59,1,1,10,11],[85,1,1,11,12]]],[2,2,2,12,14,[[106,1,1,12,13],[116,1,1,13,14]]],[3,2,2,14,16,[[124,1,1,14,15],[134,1,1,15,16]]],[4,7,7,16,23,[[162,1,1,16,17],[169,2,2,17,19],[170,1,1,19,20],[171,2,2,20,22],[183,1,1,22,23]]],[5,3,3,23,26,[[188,1,1,23,24],[191,2,2,24,26]]],[6,1,1,26,27,[[228,1,1,26,27]]],[8,6,6,27,33,[[236,1,1,27,28],[253,1,1,28,29],[261,1,1,29,30],[262,2,2,30,32],[263,1,1,32,33]]],[9,10,10,33,43,[[268,1,1,33,34],[271,1,1,34,35],[273,2,2,35,37],[276,1,1,37,38],[280,1,1,38,39],[285,3,3,39,42],[287,1,1,42,43]]],[10,2,2,43,45,[[300,2,2,43,45]]],[11,4,4,45,49,[[314,2,2,45,47],[316,1,1,47,48],[336,1,1,48,49]]],[12,4,3,49,52,[[351,2,1,49,50],[354,1,1,50,51],[356,1,1,51,52]]],[13,1,1,52,53,[[375,1,1,52,53]]],[15,1,1,53,54,[[414,1,1,53,54]]],[16,1,1,54,55,[[427,1,1,54,55]]],[17,7,6,55,61,[[442,2,1,55,56],[455,1,1,56,57],[459,1,1,57,58],[467,2,2,58,60],[469,1,1,60,61]]],[18,5,5,61,66,[[551,1,1,61,62],[560,1,1,62,63],[565,1,1,63,64],[580,1,1,64,65],[581,1,1,65,66]]],[19,1,1,66,67,[[658,1,1,66,67]]],[20,3,3,67,70,[[662,1,1,67,68],[667,2,2,68,70]]],[22,21,20,70,90,[[679,1,1,70,71],[680,1,1,71,72],[683,1,1,72,73],[688,1,1,73,74],[701,2,2,74,76],[704,1,1,76,77],[708,1,1,77,78],[710,1,1,78,79],[716,1,1,79,80],[730,1,1,80,81],[732,2,2,81,83],[738,3,3,83,86],[740,3,2,86,88],[743,2,2,88,90]]],[23,31,29,90,119,[[746,1,1,90,91],[747,3,2,91,93],[751,1,1,93,94],[754,1,1,94,95],[755,1,1,95,96],[760,1,1,96,97],[763,1,1,97,98],[764,1,1,98,99],[766,4,4,99,103],[767,3,3,103,106],[774,1,1,106,107],[775,4,3,107,110],[777,1,1,110,111],[778,1,1,111,112],[782,1,1,112,113],[786,1,1,113,114],[788,1,1,114,115],[792,1,1,115,116],[793,1,1,116,117],[794,1,1,117,118],[795,1,1,118,119]]],[25,43,38,119,157,[[806,1,1,119,120],[813,4,4,120,124],[814,2,2,124,126],[815,2,1,126,127],[817,3,3,127,130],[819,1,1,130,131],[820,1,1,131,132],[821,1,1,132,133],[822,1,1,133,134],[824,1,1,134,135],[825,1,1,135,136],[827,2,2,136,138],[829,1,1,138,139],[830,2,2,139,141],[831,1,1,141,142],[833,1,1,142,143],[835,5,4,143,147],[837,6,3,147,150],[838,2,2,150,152],[840,3,3,152,155],[844,1,1,155,156],[846,1,1,156,157]]],[27,4,4,157,161,[[863,2,2,157,159],[875,2,2,159,161]]],[28,2,2,161,163,[[877,1,1,161,162],[878,1,1,162,163]]],[29,4,4,163,167,[[885,2,2,163,165],[886,1,1,165,166],[887,1,1,166,167]]],[32,2,2,167,169,[[896,1,1,167,168],[897,1,1,168,169]]],[33,3,3,169,172,[[900,2,2,169,171],[901,1,1,171,172]]],[35,1,1,172,173,[[908,1,1,172,173]]],[37,5,5,173,178,[[919,1,1,173,174],[921,1,1,174,175],[923,1,1,175,176],[924,2,2,176,178]]],[38,1,1,178,179,[[926,1,1,178,179]]]],[195,204,216,220,402,956,1021,1092,1145,1771,1806,2572,3242,3590,3964,4262,5202,5377,5380,5400,5415,5426,5730,5880,5935,5946,7017,7230,7684,7926,7931,7934,7957,8077,8145,8190,8200,8259,8366,8539,8540,8546,8597,9084,9089,9563,9572,9609,10209,10777,10872,10926,11368,12324,12738,13018,13335,13456,13643,13644,13706,15057,15245,15313,15565,15606,17291,17394,17480,17481,17659,17689,17743,17870,18087,18089,18151,18237,18264,18401,18697,18727,18732,18839,18840,18841,18858,18862,18916,18917,18996,19018,19019,19151,19221,19245,19350,19413,19431,19464,19465,19466,19484,19488,19491,19520,19675,19720,19725,19731,19799,19811,19904,19993,20036,20082,20134,20205,20256,20555,20703,20704,20705,20708,20729,20731,20742,20803,20804,20825,20852,20890,20934,20949,21034,21069,21113,21114,21181,21198,21199,21217,21261,21323,21335,21341,21342,21373,21374,21389,21419,21420,21455,21476,21477,21579,21638,22121,22122,22285,22290,22330,22360,22472,22477,22483,22510,22623,22646,22696,22698,22712,22835,23007,23034,23061,23079,23089,23116]]],["moreover",[4,4,[[1,1,1,0,1,[[52,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[13,1,1,2,3,[[383,1,1,2,3]]],[20,1,1,3,4,[[661,1,1,3,4]]]],[1594,7733,11529,17375]]],["of",[1,1,[[23,1,1,0,1,[[772,1,1,0,1]]]],[19629]]],["once",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19293]]],["ready",[1,1,[[1,1,1,0,1,[[66,1,1,0,1]]]],[1987]]],["since",[1,1,[[4,1,1,0,1,[[186,1,1,0,1]]]],[5849]]],["still",[21,21,[[1,1,1,0,1,[[58,1,1,0,1]]],[2,1,1,1,2,[[102,1,1,1,2]]],[9,1,1,2,3,[[280,1,1,2,3]]],[11,3,3,3,6,[[324,1,1,3,4],[327,2,2,4,6]]],[13,1,1,6,7,[[399,1,1,6,7]]],[17,2,2,7,9,[[437,2,2,7,9]]],[18,5,5,9,14,[[526,1,1,9,10],[555,1,1,10,11],[561,1,1,11,12],[569,1,1,12,13],[616,1,1,13,14]]],[20,1,1,14,15,[[670,1,1,14,15]]],[22,5,5,15,20,[[683,1,1,15,16],[687,3,3,16,19],[688,1,1,19,20]]],[23,1,1,20,21,[[775,1,1,20,21]]]],[1744,3109,8388,9853,9929,9960,11925,12894,12900,14657,15145,15263,15425,16257,17532,17764,17841,17846,17850,17854,19711]]],["while",[5,5,[[0,1,1,0,1,[[45,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[17,1,1,2,3,[[462,1,1,2,3]]],[18,1,1,3,4,[[516,1,1,3,4]]],[23,1,1,4,5,[[759,1,1,4,5]]]],[1415,8492,13484,14513,19324]]],["whiles",[2,2,[[26,2,2,0,2,[[858,2,2,0,2]]]],[22008,22009]]],["within",[2,2,[[5,1,1,0,1,[[187,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]]],[5862,17790]]],["yet",[140,136,[[0,26,26,0,26,[[6,1,1,0,1],[7,2,2,1,3],[17,2,2,3,5],[24,1,1,5,6],[28,4,4,6,10],[30,1,1,10,11],[36,3,3,11,14],[42,4,4,14,18],[43,1,1,18,19],[44,5,5,19,24],[45,1,1,24,25],[47,1,1,25,26]]],[1,3,3,26,29,[[53,1,1,26,27],[58,1,1,27,28],[85,1,1,28,29]]],[2,1,1,29,30,[[114,1,1,29,30]]],[3,5,5,30,35,[[127,1,1,30,31],[135,1,1,31,32],[138,1,1,32,33],[148,2,2,33,35]]],[4,1,1,35,36,[[183,1,1,35,36]]],[5,1,1,36,37,[[200,1,1,36,37]]],[6,4,4,37,41,[[216,1,1,37,38],[217,1,1,38,39],[218,1,1,39,40],[230,1,1,40,41]]],[7,1,1,41,42,[[232,1,1,41,42]]],[8,8,8,42,50,[[238,1,1,42,43],[245,1,1,43,44],[248,1,1,44,45],[251,1,1,45,46],[253,1,1,46,47],[255,1,1,47,48],[258,2,2,48,50]]],[9,13,12,50,62,[[267,1,1,50,51],[269,1,1,51,52],[271,2,2,52,54],[272,1,1,54,55],[273,1,1,55,56],[275,3,2,56,58],[278,1,1,58,59],[284,1,1,59,60],[285,1,1,60,61],[287,1,1,61,62]]],[10,8,8,62,70,[[291,3,3,62,65],[302,2,2,65,67],[310,1,1,67,68],[312,2,2,68,70]]],[11,3,3,70,73,[[316,1,1,70,71],[318,1,1,71,72],[326,1,1,72,73]]],[12,2,2,73,75,[[349,1,1,73,74],[351,1,1,74,75]]],[13,5,5,75,80,[[380,1,1,75,76],[384,1,1,76,77],[386,1,1,77,78],[398,1,1,78,79],[400,1,1,79,80]]],[16,1,1,80,81,[[431,1,1,80,81]]],[17,7,7,81,88,[[436,3,3,81,84],[441,1,1,84,85],[443,1,1,85,86],[464,1,1,86,87],[471,1,1,87,88]]],[18,7,7,88,95,[[514,1,1,88,89],[519,2,2,89,91],[520,1,1,91,92],[555,2,2,92,94],[618,1,1,94,95]]],[19,4,4,95,99,[[636,1,1,95,96],[638,1,1,96,97],[646,1,1,97,98],[658,1,1,98,99]]],[20,1,1,99,100,[[665,1,1,99,100]]],[22,7,7,100,107,[[684,1,1,100,101],[688,2,2,101,103],[692,1,1,103,104],[706,1,1,104,105],[707,1,1,105,106],[743,1,1,106,107]]],[23,7,7,107,114,[[746,1,1,107,108],[775,3,3,108,111],[777,1,1,111,112],[784,1,1,112,113],[795,1,1,113,114]]],[24,1,1,114,115,[[800,1,1,114,115]]],[25,3,3,115,118,[[808,1,1,115,116],[816,1,1,116,117],[837,1,1,117,118]]],[26,4,4,118,122,[[859,1,1,118,119],[860,3,3,119,122]]],[27,4,4,122,126,[[862,1,1,122,123],[864,1,1,123,124],[872,1,1,124,125],[873,1,1,125,126]]],[29,2,2,126,128,[[882,1,1,126,127],[884,1,1,127,128]]],[32,1,1,128,129,[[898,1,1,128,129]]],[34,1,1,129,130,[[904,1,1,129,130]]],[36,1,1,130,131,[[910,1,1,130,131]]],[37,8,5,131,136,[[911,4,1,131,132],[918,2,2,132,134],[921,1,1,134,135],[923,1,1,135,136]]]],[163,193,195,446,453,664,802,804,822,825,887,1088,1091,1092,1296,1297,1317,1318,1338,1361,1364,1369,1384,1386,1416,1458,1619,1759,2569,3520,4057,4302,4390,4732,4733,5755,6198,6678,6698,6739,7082,7138,7282,7440,7492,7606,7705,7744,7814,7832,8031,8116,8145,8154,8179,8199,8228,8230,8308,8500,8546,8600,8731,8739,8759,9153,9156,9440,9488,9523,9609,9707,9900,10721,10787,11482,11549,11620,11891,11936,12807,12885,12886,12887,12988,13041,13537,13738,14460,14560,14566,14571,15130,15143,16281,16647,16712,16944,17299,17457,17782,17875,17882,17929,18168,18210,18921,18974,19696,19714,19730,19776,19946,20245,20437,20590,20759,21396,22029,22038,22063,22071,22098,22129,22252,22261,22417,22460,22658,22751,22874,22895,22980,22996,23043,23062]]]]},{"k":"H5751","v":[["While",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21868]]]]},{"k":"H5752","v":[["Oded",[3,3,[[13,3,3,0,3,[[381,2,2,0,2],[394,1,1,2,3]]]],[11491,11498,11773]]]]},{"k":"H5753","v":[["*",[17,17,[[8,1,1,0,1,[[255,1,1,0,1]]],[9,3,3,1,4,[[273,1,1,1,2],[285,1,1,2,3],[290,1,1,3,4]]],[10,1,1,4,5,[[298,1,1,4,5]]],[13,1,1,5,6,[[372,1,1,5,6]]],[16,1,1,6,7,[[426,1,1,6,7]]],[17,1,1,7,8,[[468,1,1,7,8]]],[18,2,2,8,10,[[515,1,1,8,9],[583,1,1,9,10]]],[19,1,1,10,11,[[639,1,1,10,11]]],[22,2,2,11,13,[[699,1,1,11,12],[702,1,1,12,13]]],[23,2,2,13,15,[[747,1,1,13,14],[753,1,1,14,15]]],[24,1,1,15,16,[[799,1,1,15,16]]],[26,1,1,16,17,[[858,1,1,16,17]]]],[7760,8194,8530,8709,9032,11319,12718,13677,14496,15657,16727,18038,18096,19023,19180,20363,21993]]],["+",[3,3,[[22,1,1,0,1,[[702,1,1,0,1]]],[23,1,1,1,2,[[747,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]]],[18096,19023,20363]]],["amiss",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11319]]],["down",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18038]]],["iniquity",[4,4,[[9,1,1,0,1,[[273,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]],[23,1,1,2,3,[[753,1,1,2,3]]],[26,1,1,3,4,[[858,1,1,3,4]]]],[8194,15657,19180,21993]]],["perverse",[2,2,[[8,1,1,0,1,[[255,1,1,0,1]]],[19,1,1,1,2,[[639,1,1,1,2]]]],[7760,16727]]],["perversely",[2,2,[[9,1,1,0,1,[[285,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]]],[8530,9032]]],["perverted",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13677]]],["troubled",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14496]]],["wickedly",[1,1,[[9,1,1,0,1,[[290,1,1,0,1]]]],[8709]]],["wrong",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12718]]]]},{"k":"H5754","v":[["overturn",[3,1,[[25,3,1,0,1,[[822,3,1,0,1]]]],[20971]]]]},{"k":"H5755","v":[["*",[4,4,[[11,3,3,0,3,[[329,1,1,0,1],[330,1,1,1,2],[331,1,1,2,3]]],[22,1,1,3,4,[[715,1,1,3,4]]]],[10007,10058,10074,18365]]],["+",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10007]]],["Ivah",[3,3,[[11,2,2,0,2,[[330,1,1,0,1],[331,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]]],[10058,10074,18365]]]]},{"k":"H5756","v":[["*",[4,4,[[1,1,1,0,1,[[58,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]],[23,2,2,2,4,[[748,1,1,2,3],[750,1,1,3,4]]]],[1761,17881,19033,19090]]],["+",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1761]]],["flee",[2,2,[[22,1,1,0,1,[[688,1,1,0,1]]],[23,1,1,1,2,[[750,1,1,1,2]]]],[17881,19090]]],["retire",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19033]]]]},{"k":"H5757","v":[["*",[2,2,[[4,1,1,0,1,[[154,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]]],[4961,6157]]],["Avims",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4961]]],["Avites",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6157]]]]},{"k":"H5758","v":[["iniquities",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]]]},{"k":"H5759","v":[["*",[3,3,[[9,1,1,0,1,[[285,1,1,0,1]]],[17,2,2,1,3,[[454,1,1,1,2],[456,1,1,2,3]]]],[8539,13315,13366]]],["children",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13315]]],["ones",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13366]]],["yet",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8539]]]]},{"k":"H5760","v":[["ungodly",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13249]]]]},{"k":"H5761","v":[["*",[2,2,[[5,1,1,0,1,[[204,1,1,0,1]]],[11,1,1,1,2,[[329,1,1,1,2]]]],[6316,10014]]],["Avim",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6316]]],["Avites",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10014]]]]},{"k":"H5762","v":[["Avith",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1075,10298]]]]},{"k":"H5763","v":[["*",[5,5,[[0,1,1,0,1,[[32,1,1,0,1]]],[8,2,2,1,3,[[241,2,2,1,3]]],[18,1,1,3,4,[[555,1,1,3,4]]],[22,1,1,4,5,[[718,1,1,4,5]]]],[973,7338,7341,15184,18431]]],["milch",[2,2,[[8,2,2,0,2,[[241,2,2,0,2]]]],[7338,7341]]],["young",[3,3,[[0,1,1,0,1,[[32,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]]],[973,15184,18431]]]]},{"k":"H5764","v":[["*",[2,2,[[22,2,2,0,2,[[727,1,1,0,1],[743,1,1,1,2]]]],[18651,18917]]],["child",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18651]]],["infant",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18917]]]]},{"k":"H5765","v":[["*",[2,2,[[18,1,1,0,1,[[548,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]]],[14980,18140]]],["unjustly",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18140]]],["unrighteous",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14980]]]]},{"k":"H5766","v":[["*",[53,51,[[2,2,2,0,2,[[108,2,2,0,2]]],[4,2,2,2,4,[[177,1,1,2,3],[184,1,1,3,4]]],[9,2,2,4,6,[[269,1,1,4,5],[273,1,1,5,6]]],[12,1,1,6,7,[[354,1,1,6,7]]],[13,1,1,7,8,[[385,1,1,7,8]]],[17,12,12,8,20,[[440,1,1,8,9],[441,2,2,9,11],[446,1,1,11,12],[448,1,1,12,13],[450,1,1,13,14],[457,1,1,14,15],[459,1,1,15,16],[462,1,1,16,17],[469,2,2,17,19],[471,1,1,19,20]]],[18,12,12,20,32,[[484,1,1,20,21],[514,1,1,21,22],[520,1,1,22,23],[530,1,1,23,24],[535,1,1,24,25],[541,1,1,25,26],[559,1,1,26,27],[566,1,1,27,28],[569,1,1,28,29],[584,1,1,29,30],[596,1,1,30,31],[602,1,1,31,32]]],[19,2,2,32,34,[[649,1,1,32,33],[656,1,1,33,34]]],[22,1,1,34,35,[[737,1,1,34,35]]],[23,1,1,35,36,[[746,1,1,35,36]]],[25,11,9,36,45,[[804,1,1,36,37],[819,4,3,37,40],[829,2,2,40,42],[834,4,3,42,45]]],[27,1,1,45,46,[[871,1,1,45,46]]],[32,1,1,46,47,[[895,1,1,46,47]]],[34,1,1,47,48,[[904,1,1,47,48]]],[35,2,2,48,50,[[908,2,2,48,50]]],[38,1,1,50,51,[[926,1,1,50,51]]]],[3296,3316,5563,5762,8115,8190,10872,11583,12967,13007,13008,13122,13160,13219,13412,13456,13485,13693,13715,13759,13998,14451,14567,14720,14781,14856,15235,15348,15426,15741,15901,16113,17023,17251,18803,18970,20522,20857,20873,20875,21172,21175,21293,21295,21298,22238,22618,22760,22825,22833,23109]]],["+",[2,2,[[17,1,1,0,1,[[469,1,1,0,1]]],[25,1,1,1,2,[[819,1,1,1,2]]]],[13693,20857]]],["iniquities",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14856]]],["iniquity",[33,31,[[4,1,1,0,1,[[184,1,1,0,1]]],[13,1,1,1,2,[[385,1,1,1,2]]],[17,7,7,2,9,[[440,1,1,2,3],[441,2,2,3,5],[450,1,1,5,6],[457,1,1,6,7],[469,1,1,7,8],[471,1,1,8,9]]],[18,6,6,9,15,[[484,1,1,9,10],[514,1,1,10,11],[530,1,1,11,12],[584,1,1,12,13],[596,1,1,13,14],[602,1,1,14,15]]],[19,1,1,15,16,[[649,1,1,15,16]]],[23,1,1,16,17,[[746,1,1,16,17]]],[25,10,8,17,25,[[804,1,1,17,18],[819,3,2,18,20],[829,2,2,20,22],[834,4,3,22,25]]],[27,1,1,25,26,[[871,1,1,25,26]]],[32,1,1,26,27,[[895,1,1,26,27]]],[34,1,1,27,28,[[904,1,1,27,28]]],[35,2,2,28,30,[[908,2,2,28,30]]],[38,1,1,30,31,[[926,1,1,30,31]]]],[5762,11583,12967,13007,13008,13219,13412,13715,13759,13998,14451,14720,15741,15901,16113,17023,18970,20522,20873,20875,21172,21175,21293,21295,21298,22238,22618,22760,22825,22833,23109]]],["perverseness",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18803]]],["unjust",[2,2,[[18,1,1,0,1,[[520,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]]],[14567,17251]]],["unjustly",[1,1,[[18,1,1,0,1,[[559,1,1,0,1]]]],[15235]]],["unrighteously",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5563]]],["unrighteousness",[3,3,[[2,2,2,0,2,[[108,2,2,0,2]]],[18,1,1,2,3,[[569,1,1,2,3]]]],[3296,3316,15426]]],["wicked",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8115]]],["wickedly",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13160]]],["wickedness",[7,7,[[9,1,1,0,1,[[273,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]],[17,3,3,2,5,[[446,1,1,2,3],[459,1,1,3,4],[462,1,1,4,5]]],[18,2,2,5,7,[[535,1,1,5,6],[566,1,1,6,7]]]],[8190,10872,13122,13456,13485,14781,15348]]]]},{"k":"H5767","v":[["*",[5,5,[[17,4,4,0,4,[[453,1,1,0,1],[462,1,1,1,2],[464,1,1,2,3],[466,1,1,3,4]]],[35,1,1,4,5,[[908,1,1,4,5]]]],[13297,13488,13549,13591,22825]]],["unjust",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22825]]],["unrighteous",[1,1,[[17,1,1,0,1,[[462,1,1,0,1]]]],[13488]]],["wicked",[3,3,[[17,3,3,0,3,[[453,1,1,0,1],[464,1,1,1,2],[466,1,1,2,3]]]],[13297,13549,13591]]]]},{"k":"H5768","v":[["*",[21,21,[[8,2,2,0,2,[[250,1,1,0,1],[257,1,1,1,2]]],[11,1,1,2,3,[[320,1,1,2,3]]],[17,1,1,3,4,[[438,1,1,3,4]]],[18,3,3,4,7,[[485,1,1,4,5],[494,1,1,5,6],[614,1,1,6,7]]],[22,2,2,7,9,[[681,1,1,7,8],[691,1,1,8,9]]],[23,3,3,9,12,[[750,1,1,9,10],[753,1,1,10,11],[788,1,1,11,12]]],[24,5,5,12,17,[[797,1,1,12,13],[798,3,3,13,16],[800,1,1,16,17]]],[27,1,1,17,18,[[874,1,1,17,18]]],[28,1,1,18,19,[[877,1,1,18,19]]],[32,1,1,19,20,[[894,1,1,19,20]]],[33,1,1,20,21,[[902,1,1,20,21]]]],[7563,7806,9739,12920,14014,14117,16231,17719,17922,19100,19196,20017,20315,20343,20351,20352,20424,22282,22327,22604,22722]]],["+",[2,2,[[8,2,2,0,2,[[250,1,1,0,1],[257,1,1,1,2]]]],[7563,7806]]],["babes",[2,2,[[18,2,2,0,2,[[485,1,1,0,1],[494,1,1,1,2]]]],[14014,14117]]],["child",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20017]]],["children",[13,13,[[11,1,1,0,1,[[320,1,1,0,1]]],[22,2,2,1,3,[[681,1,1,1,2],[691,1,1,2,3]]],[23,2,2,3,5,[[750,1,1,3,4],[753,1,1,4,5]]],[24,5,5,5,10,[[797,1,1,5,6],[798,3,3,6,9],[800,1,1,9,10]]],[28,1,1,10,11,[[877,1,1,10,11]]],[32,1,1,11,12,[[894,1,1,11,12]]],[33,1,1,12,13,[[902,1,1,12,13]]]],[9739,17719,17922,19100,19196,20315,20343,20351,20352,20424,22327,22604,22722]]],["infants",[2,2,[[17,1,1,0,1,[[438,1,1,0,1]]],[27,1,1,1,2,[[874,1,1,1,2]]]],[12920,22282]]],["ones",[1,1,[[18,1,1,0,1,[[614,1,1,0,1]]]],[16231]]]]},{"k":"H5769","v":[["*",[438,413,[[0,13,13,0,13,[[2,1,1,0,1],[5,2,2,1,3],[8,2,2,3,5],[12,1,1,5,6],[16,4,4,6,10],[20,1,1,10,11],[47,1,1,11,12],[48,1,1,12,13]]],[1,17,17,13,30,[[52,1,1,13,14],[61,3,3,14,17],[63,1,1,17,18],[64,1,1,18,19],[68,1,1,19,20],[70,1,1,20,21],[76,1,1,21,22],[77,1,1,22,23],[78,2,2,23,25],[79,1,1,25,26],[80,2,2,26,28],[81,1,1,28,29],[89,1,1,29,30]]],[2,21,21,30,51,[[92,1,1,30,31],[95,2,2,31,33],[96,2,2,33,35],[99,2,2,35,37],[105,3,3,37,40],[106,1,1,40,41],[112,4,4,41,45],[113,3,3,45,48],[114,3,3,48,51]]],[3,10,9,51,60,[[126,1,1,51,52],[131,1,1,52,53],[134,5,4,53,57],[135,2,2,57,59],[141,1,1,59,60]]],[4,12,12,60,72,[[157,1,1,60,61],[164,1,1,61,62],[165,1,1,62,63],[167,1,1,63,64],[175,2,2,64,66],[180,1,1,66,67],[181,1,1,67,68],[184,2,2,68,70],[185,2,2,70,72]]],[5,4,4,72,76,[[190,1,1,72,73],[194,1,1,73,74],[200,1,1,74,75],[210,1,1,75,76]]],[6,1,1,76,77,[[212,1,1,76,77]]],[8,10,10,77,87,[[236,1,1,77,78],[237,1,1,78,79],[238,2,2,79,81],[248,1,1,81,82],[255,3,3,82,85],[262,2,2,85,87]]],[9,12,10,87,97,[[269,1,1,87,88],[273,8,6,88,94],[278,1,1,94,95],[288,1,1,95,96],[289,1,1,96,97]]],[10,8,7,97,104,[[291,1,1,97,98],[292,3,2,98,100],[298,1,1,100,101],[299,2,2,101,103],[300,1,1,103,104]]],[11,2,2,104,106,[[317,1,1,104,105],[333,1,1,105,106]]],[12,25,20,106,126,[[352,1,1,106,107],[353,6,5,107,112],[354,8,6,112,118],[359,1,1,118,119],[360,3,2,119,121],[365,3,3,121,124],[366,3,2,124,126]]],[13,12,12,126,138,[[368,1,1,126,127],[371,1,1,127,128],[372,1,1,128,129],[373,3,3,129,132],[375,1,1,132,133],[379,1,1,133,134],[386,2,2,134,136],[396,1,1,136,137],[399,1,1,137,138]]],[14,3,2,138,140,[[405,1,1,138,139],[411,2,1,139,140]]],[15,4,3,140,143,[[414,1,1,140,141],[421,2,1,141,142],[425,1,1,142,143]]],[17,3,3,143,146,[[442,1,1,143,144],[457,1,1,144,145],[476,1,1,145,146]]],[18,143,138,146,284,[[482,1,1,146,147],[486,2,2,147,149],[487,1,1,149,150],[489,1,1,150,151],[492,1,1,151,152],[495,1,1,152,153],[498,1,1,153,154],[501,2,2,154,156],[502,1,1,156,157],[505,1,1,157,158],[506,1,1,158,159],[507,2,2,159,161],[508,1,1,161,162],[510,1,1,162,163],[514,3,3,163,166],[518,3,2,166,168],[521,1,1,168,169],[522,3,3,169,172],[525,2,2,172,174],[526,2,2,174,176],[529,2,2,176,178],[532,1,1,178,179],[538,2,2,179,181],[543,1,1,181,182],[548,1,1,182,183],[549,2,2,183,185],[550,2,2,185,187],[552,1,1,187,188],[554,2,2,188,190],[555,2,2,190,192],[556,1,1,192,193],[558,1,1,193,194],[562,1,1,194,195],[563,1,1,195,196],[566,7,7,196,203],[567,2,1,203,204],[569,1,1,204,205],[570,1,1,205,206],[577,1,1,206,207],[579,1,1,207,208],[580,3,2,208,210],[581,2,2,210,212],[582,2,2,212,214],[583,4,3,214,217],[584,1,1,217,218],[587,1,1,218,219],[588,3,3,219,222],[589,2,1,222,223],[590,1,1,223,224],[592,1,1,224,225],[594,1,1,225,226],[595,5,5,226,231],[596,11,11,231,242],[598,1,1,242,243],[602,2,2,243,245],[608,1,1,245,246],[610,1,1,246,247],[612,1,1,247,248],[613,26,26,248,274],[615,1,1,274,275],[616,1,1,275,276],[620,1,1,276,277],[622,4,4,277,281],[623,2,2,281,283],[625,1,1,283,284]]],[19,6,6,284,290,[[635,1,1,284,285],[637,2,2,285,287],[649,1,1,287,288],[650,1,1,288,289],[654,1,1,289,290]]],[20,7,7,290,297,[[659,2,2,290,292],[660,1,1,292,293],[661,2,2,293,295],[667,1,1,295,296],[670,1,1,296,297]]],[22,46,45,297,342,[[687,1,1,297,298],[692,1,1,298,299],[702,1,1,299,300],[703,1,1,300,301],[704,1,1,301,302],[708,1,1,302,303],[710,2,2,303,305],[711,1,1,305,306],[712,2,2,306,308],[713,1,1,308,309],[718,2,2,309,311],[720,1,1,311,312],[722,1,1,312,313],[723,2,1,313,314],[724,1,1,314,315],[725,1,1,315,316],[729,4,4,316,320],[732,1,1,320,321],[733,2,2,321,323],[734,1,1,323,324],[735,2,2,324,326],[736,1,1,326,327],[737,1,1,327,328],[738,4,4,328,332],[739,3,3,332,335],[741,5,5,335,340],[742,2,2,340,342]]],[23,34,31,342,373,[[746,1,1,342,343],[747,2,2,343,345],[749,2,2,345,347],[750,1,1,347,348],[751,2,1,348,349],[754,1,1,349,350],[761,2,2,350,352],[762,2,2,352,354],[764,2,2,354,356],[767,2,1,356,357],[769,4,3,357,360],[772,1,1,360,361],[775,2,2,361,363],[776,1,1,363,364],[777,1,1,364,365],[779,1,1,365,366],[793,2,2,366,368],[794,1,1,368,369],[795,4,4,369,373]]],[24,3,3,373,376,[[799,2,2,373,375],[801,1,1,375,376]]],[25,18,15,376,391,[[817,1,1,376,377],[826,1,1,377,378],[827,3,2,378,380],[828,1,1,380,381],[829,1,1,381,382],[836,2,2,382,384],[837,1,1,384,385],[838,5,3,385,388],[844,2,2,388,390],[847,1,1,390,391]]],[26,5,4,391,395,[[858,1,1,391,392],[861,4,3,392,395]]],[27,1,1,395,396,[[863,1,1,395,396]]],[28,4,4,396,400,[[877,3,3,396,399],[878,1,1,399,400]]],[29,1,1,400,401,[[887,1,1,400,401]]],[30,1,1,401,402,[[888,1,1,401,402]]],[31,1,1,402,403,[[890,1,1,402,403]]],[32,5,5,403,408,[[894,1,1,403,404],[896,2,2,404,406],[897,1,1,406,407],[899,1,1,407,408]]],[34,2,1,408,409,[[905,2,1,408,409]]],[35,1,1,409,410,[[907,1,1,409,410]]],[37,1,1,410,411,[[911,1,1,410,411]]],[38,2,2,411,413,[[925,1,1,411,412],[927,1,1,412,413]]]],[77,140,141,217,221,333,404,405,410,416,546,1455,1499,1594,1830,1833,1840,1902,1938,2035,2083,2293,2336,2345,2364,2403,2436,2437,2451,2722,2795,2867,2871,2913,2915,2986,2992,3230,3232,3235,3242,3416,3423,3433,3443,3449,3454,3455,3501,3503,3515,3996,4168,4265,4268,4276,4280,4299,4310,4484,5082,5268,5288,5336,5503,5506,5657,5708,5765,5798,5825,5837,5917,6030,6196,6478,6546,7234,7270,7289,7290,7498,7745,7753,7772,7938,7942,8109,8193,8196,8204,8205,8206,8209,8296,8653,8658,8748,8803,8815,8998,9054,9056,9088,9674,10126,10793,10835,10837,10854,10856,10861,10875,10877,10885,10886,10887,10890,10974,10996,11008,11147,11150,11151,11174,11182,11215,11281,11284,11327,11330,11340,11372,11458,11594,11608,11835,11912,12108,12249,12310,12516,12672,13024,13404,13892,13984,14026,14028,14057,14073,14092,14168,14195,14248,14250,14257,14308,14318,14325,14331,14332,14377,14468,14477,14478,14554,14555,14579,14599,14603,14614,14642,14648,14656,14659,14718,14719,14754,14823,14826,14880,14977,15017,15019,15032,15046,15080,15098,15100,15179,15182,15198,15232,15276,15296,15327,15328,15330,15354,15362,15363,15378,15380,15419,15428,15513,15533,15558,15566,15576,15602,15614,15616,15652,15682,15699,15700,15790,15798,15801,15802,15809,15815,15848,15869,15870,15871,15872,15873,15898,15942,15950,15987,15991,15996,16009,16010,16040,16042,16050,16058,16089,16111,16112,16151,16172,16188,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,16215,16216,16217,16218,16219,16220,16221,16222,16239,16263,16296,16321,16322,16333,16341,16347,16351,16377,16625,16681,16686,17043,17054,17193,17319,17325,17349,17370,17373,17481,17528,17836,17948,18100,18120,18134,18225,18273,18276,18293,18313,18320,18330,18428,18448,18494,18540,18578,18595,18606,18679,18681,18682,18684,18731,18743,18753,18758,18776,18781,18798,18821,18836,18840,18841,18842,18847,18850,18851,18875,18877,18878,18882,18885,18889,18890,18985,19007,19014,19073,19080,19105,19126,19211,19361,19382,19399,19400,19433,19439,19524,19539,19543,19546,19626,19694,19731,19771,19786,19829,20140,20160,20171,20238,20251,20269,20274,20360,20385,20461,20822,21098,21120,21121,21157,21176,21349,21353,21361,21422,21423,21425,21579,21581,21669,22012,22083,22084,22088,22124,22313,22337,22338,22363,22506,22520,22554,22604,22625,22627,22635,22678,22774,22814,22883,23093,23124]]],["+",[116,109,[[0,2,2,0,2,[[5,1,1,0,1],[12,1,1,1,2]]],[1,2,2,2,4,[[61,1,1,2,3],[63,1,1,3,4]]],[4,4,4,4,8,[[164,1,1,4,5],[175,1,1,5,6],[180,1,1,6,7],[181,1,1,7,8]]],[5,3,3,8,11,[[190,1,1,8,9],[200,1,1,9,10],[210,1,1,10,11]]],[6,1,1,11,12,[[212,1,1,11,12]]],[8,9,9,12,21,[[236,1,1,12,13],[237,1,1,13,14],[238,2,2,14,16],[248,1,1,16,17],[255,3,3,17,20],[262,1,1,20,21]]],[9,9,8,21,29,[[269,1,1,21,22],[273,6,5,22,27],[278,1,1,27,28],[288,1,1,28,29]]],[10,3,3,29,32,[[292,2,2,29,31],[299,1,1,31,32]]],[12,17,13,32,45,[[352,1,1,32,33],[353,2,1,33,34],[354,6,5,34,39],[359,1,1,39,40],[360,3,2,40,42],[365,2,2,42,44],[366,2,1,44,45]]],[13,1,1,45,46,[[373,1,1,45,46]]],[14,2,1,46,47,[[411,2,1,46,47]]],[15,2,2,47,49,[[421,1,1,47,48],[425,1,1,48,49]]],[18,25,25,49,74,[[492,1,1,49,50],[495,1,1,50,51],[502,1,1,51,52],[505,1,1,52,53],[507,1,1,53,54],[508,1,1,54,55],[518,1,1,55,56],[525,1,1,56,57],[532,1,1,57,58],[548,1,1,58,59],[566,1,1,59,60],[567,1,1,60,61],[570,1,1,61,62],[580,1,1,62,63],[581,1,1,63,64],[583,1,1,64,65],[590,1,1,65,66],[592,1,1,66,67],[596,2,2,67,69],[598,1,1,69,70],[602,1,1,70,71],[608,1,1,71,72],[610,1,1,72,73],[622,1,1,73,74]]],[19,2,2,74,76,[[635,1,1,74,75],[637,1,1,75,76]]],[22,15,15,76,91,[[687,1,1,76,77],[692,1,1,77,78],[703,1,1,78,79],[708,1,1,79,80],[710,2,2,80,82],[712,1,1,82,83],[720,1,1,83,84],[723,1,1,84,85],[724,1,1,85,86],[735,1,1,86,87],[737,1,1,87,88],[741,2,2,88,90],[742,1,1,90,91]]],[23,8,7,91,98,[[746,1,1,91,92],[749,1,1,92,93],[751,2,1,93,94],[761,1,1,94,95],[769,1,1,95,96],[779,1,1,96,97],[793,1,1,97,98]]],[25,4,4,98,102,[[827,2,2,98,100],[828,1,1,100,101],[829,1,1,101,102]]],[28,3,3,102,105,[[877,3,3,102,105]]],[32,2,2,105,107,[[896,1,1,105,106],[897,1,1,106,107]]],[35,1,1,107,108,[[907,1,1,107,108]]],[38,1,1,108,109,[[925,1,1,108,109]]]],[141,333,1840,1902,5268,5503,5657,5708,5917,6196,6478,6546,7234,7270,7289,7290,7498,7745,7753,7772,7938,8109,8193,8196,8204,8205,8206,8296,8653,8803,8815,9054,10793,10856,10875,10877,10885,10886,10887,10974,10996,11008,11150,11151,11174,11340,12249,12516,12672,14092,14168,14257,14308,14325,14332,14555,14642,14754,14977,15330,15380,15428,15566,15576,15682,15815,15848,15950,15991,16089,16112,16151,16172,16333,16625,16686,17836,17948,18120,18225,18273,18276,18320,18494,18578,18595,18776,18821,18882,18885,18889,18985,19073,19126,19361,19539,19829,20160,21120,21121,21157,21176,22313,22337,22338,22627,22635,22814,23093]]],["alway",[2,2,[[17,1,1,0,1,[[442,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[13024,16010]]],["always",[3,3,[[0,1,1,0,1,[[5,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[23,1,1,2,3,[[764,1,1,2,3]]]],[140,10835,19439]]],["ancient",[4,4,[[19,1,1,0,1,[[649,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]],[23,1,1,2,3,[[762,1,1,2,3]]],[25,1,1,3,4,[[837,1,1,3,4]]]],[17043,18540,19399,21361]]],["continuance",[1,1,[[22,1,1,0,1,[[742,1,1,0,1]]]],[18890]]],["eternal",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18836]]],["ever",[203,199,[[0,1,1,0,1,[[2,1,1,0,1]]],[1,12,12,1,13,[[52,1,1,1,2],[61,2,2,2,4],[64,1,1,4,5],[68,1,1,5,6],[70,1,1,6,7],[76,1,1,7,8],[77,1,1,8,9],[78,1,1,9,10],[79,1,1,10,11],[80,1,1,11,12],[81,1,1,12,13]]],[2,15,15,13,28,[[95,2,2,13,15],[96,2,2,15,17],[99,2,2,17,19],[105,2,2,19,21],[106,1,1,21,22],[112,4,4,22,26],[113,1,1,26,27],[114,1,1,27,28]]],[3,8,7,28,35,[[126,1,1,28,29],[131,1,1,29,30],[134,5,4,30,34],[135,1,1,34,35]]],[4,5,5,35,40,[[157,1,1,35,36],[165,1,1,36,37],[167,1,1,37,38],[175,1,1,38,39],[184,1,1,39,40]]],[5,1,1,40,41,[[194,1,1,40,41]]],[8,1,1,41,42,[[262,1,1,41,42]]],[9,2,1,42,43,[[273,2,1,42,43]]],[10,5,5,43,48,[[291,1,1,43,44],[292,1,1,44,45],[298,1,1,45,46],[299,1,1,46,47],[300,1,1,47,48]]],[11,2,2,48,50,[[317,1,1,48,49],[333,1,1,49,50]]],[12,6,5,50,55,[[353,2,2,50,52],[354,2,1,52,53],[365,1,1,53,54],[366,1,1,54,55]]],[13,11,11,55,66,[[368,1,1,55,56],[371,1,1,56,57],[372,1,1,57,58],[373,2,2,58,60],[375,1,1,60,61],[379,1,1,61,62],[386,2,2,62,64],[396,1,1,64,65],[399,1,1,65,66]]],[14,1,1,66,67,[[405,1,1,66,67]]],[15,2,2,67,69,[[414,1,1,67,68],[421,1,1,68,69]]],[17,1,1,69,70,[[476,1,1,69,70]]],[18,95,95,70,165,[[482,1,1,70,71],[486,2,2,71,73],[487,1,1,73,74],[489,1,1,74,75],[498,1,1,75,76],[506,1,1,76,77],[507,1,1,77,78],[510,1,1,78,79],[514,2,2,79,81],[518,1,1,81,82],[521,1,1,82,83],[522,3,3,83,86],[525,1,1,86,87],[526,2,2,87,89],[529,2,2,89,91],[538,2,2,91,93],[543,1,1,93,94],[549,2,2,94,96],[550,1,1,96,97],[552,1,1,97,98],[554,1,1,98,99],[555,1,1,99,100],[556,1,1,100,101],[558,1,1,101,102],[562,1,1,102,103],[566,4,4,103,107],[579,1,1,107,108],[580,1,1,108,109],[581,1,1,109,110],[582,1,1,110,111],[583,1,1,111,112],[584,1,1,112,113],[587,1,1,113,114],[588,3,3,114,117],[589,1,1,117,118],[594,1,1,118,119],[595,5,5,119,124],[596,6,6,124,130],[602,1,1,130,131],[612,1,1,131,132],[613,26,26,132,158],[615,1,1,158,159],[622,3,3,159,162],[623,2,2,162,164],[625,1,1,164,165]]],[19,1,1,165,166,[[654,1,1,165,166]]],[20,4,4,166,170,[[659,1,1,166,167],[660,1,1,167,168],[661,1,1,168,169],[667,1,1,169,170]]],[22,7,7,170,177,[[712,1,1,170,171],[718,1,1,171,172],[725,1,1,172,173],[729,2,2,173,175],[735,1,1,175,176],[738,1,1,176,177]]],[23,8,8,177,185,[[747,2,2,177,179],[761,1,1,179,180],[769,1,1,180,181],[775,1,1,181,182],[777,1,1,182,183],[795,2,2,183,185]]],[24,2,2,185,187,[[799,1,1,185,186],[801,1,1,186,187]]],[25,4,3,187,190,[[838,2,1,187,188],[844,2,2,188,190]]],[26,2,2,190,192,[[861,2,2,190,192]]],[27,1,1,192,193,[[863,1,1,192,193]]],[28,1,1,193,194,[[878,1,1,193,194]]],[30,1,1,194,195,[[888,1,1,194,195]]],[31,1,1,195,196,[[890,1,1,195,196]]],[32,2,2,196,198,[[894,1,1,196,197],[896,1,1,197,198]]],[37,1,1,198,199,[[911,1,1,198,199]]]],[77,1594,1830,1833,1938,2035,2083,2293,2336,2364,2403,2437,2451,2867,2871,2913,2915,2986,2992,3230,3232,3242,3416,3423,3433,3443,3449,3515,3996,4168,4265,4268,4276,4280,4299,5082,5288,5336,5506,5798,6030,7942,8209,8748,8803,8998,9056,9088,9674,10126,10854,10861,10890,11147,11182,11215,11281,11284,11327,11330,11372,11458,11594,11608,11835,11912,12108,12310,12516,13892,13984,14026,14028,14057,14073,14195,14318,14331,14377,14468,14478,14554,14579,14599,14603,14614,14648,14656,14659,14718,14719,14823,14826,14880,15017,15019,15046,15080,15100,15182,15198,15232,15276,15327,15328,15362,15363,15533,15558,15602,15614,15652,15700,15790,15798,15801,15802,15809,15869,15870,15871,15872,15873,15898,15942,15987,15996,16009,16050,16058,16111,16188,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,16215,16216,16217,16218,16219,16220,16221,16222,16239,16321,16322,16341,16347,16351,16377,17193,17319,17349,17373,17481,18313,18428,18606,18679,18681,18781,18842,19007,19014,19382,19539,19731,19786,20238,20274,20385,20461,21422,21579,21581,22084,22088,22124,22363,22520,22554,22604,22625,22883]]],["everlasting",[56,54,[[0,8,8,0,8,[[8,1,1,0,1],[16,4,4,1,5],[20,1,1,5,6],[47,1,1,6,7],[48,1,1,7,8]]],[1,1,1,8,9,[[89,1,1,8,9]]],[2,2,2,9,11,[[105,1,1,9,10],[113,1,1,10,11]]],[3,1,1,11,12,[[141,1,1,11,12]]],[4,1,1,12,13,[[185,1,1,12,13]]],[9,1,1,13,14,[[289,1,1,13,14]]],[12,1,1,14,15,[[353,1,1,14,15]]],[18,13,12,15,27,[[501,2,2,15,17],[518,1,1,17,18],[567,1,1,18,19],[577,1,1,19,20],[580,1,1,20,21],[582,1,1,21,22],[583,2,1,22,23],[589,1,1,23,24],[596,2,2,24,26],[616,1,1,26,27]]],[19,1,1,27,28,[[637,1,1,27,28]]],[22,16,16,28,44,[[702,1,1,28,29],[704,1,1,29,30],[711,1,1,30,31],[713,1,1,31,32],[718,1,1,32,33],[723,1,1,33,34],[729,1,1,34,35],[732,1,1,35,36],[733,2,2,36,38],[734,1,1,38,39],[738,2,2,39,41],[739,2,2,41,43],[741,1,1,43,44]]],[23,5,5,44,49,[[754,1,1,44,45],[764,1,1,45,46],[767,1,1,46,47],[775,1,1,47,48],[776,1,1,48,49]]],[25,2,2,49,51,[[817,1,1,49,50],[838,1,1,50,51]]],[26,3,2,51,53,[[858,1,1,51,52],[861,2,1,52,53]]],[34,1,1,53,54,[[905,1,1,53,54]]]],[221,404,405,410,416,546,1455,1499,2722,3235,3454,4484,5837,8658,10837,14248,14250,14555,15380,15513,15566,15616,15699,15809,16040,16042,16263,16681,18100,18134,18293,18330,18448,18578,18684,18731,18743,18753,18758,18840,18841,18850,18851,18878,19211,19433,19524,19694,19771,20822,21423,22012,22083,22774]]],["evermore",[7,7,[[18,5,5,0,5,[[514,1,1,0,1],[563,1,1,1,2],[566,2,2,2,4],[569,1,1,4,5]]],[25,2,2,5,7,[[838,2,2,5,7]]]],[14477,15296,15354,15378,15419,21423,21425]]],["lasting",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5825]]],["long",[2,2,[[18,1,1,0,1,[[620,1,1,0,1]]],[20,1,1,1,2,[[670,1,1,1,2]]]],[16296,17528]]],["old",[15,15,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[457,1,1,1,2]]],[19,1,1,2,3,[[650,1,1,2,3]]],[22,5,5,3,8,[[729,1,1,3,4],[736,1,1,4,5],[739,1,1,5,6],[741,2,2,6,8]]],[23,2,2,8,10,[[750,1,1,8,9],[772,1,1,9,10]]],[24,1,1,10,11,[[799,1,1,10,11]]],[25,1,1,11,12,[[826,1,1,11,12]]],[29,1,1,12,13,[[887,1,1,12,13]]],[32,1,1,13,14,[[899,1,1,13,14]]],[38,1,1,14,15,[[927,1,1,14,15]]]],[5765,13404,17054,18682,18798,18847,18875,18877,19105,19626,20360,21098,22506,22678,23124]]],["perpetual",[21,21,[[0,1,1,0,1,[[8,1,1,0,1]]],[1,2,2,1,3,[[78,1,1,1,2],[80,1,1,2,3]]],[2,3,3,3,6,[[92,1,1,3,4],[113,1,1,4,5],[114,1,1,5,6]]],[3,1,1,6,7,[[135,1,1,6,7]]],[18,1,1,7,8,[[555,1,1,7,8]]],[23,9,9,8,17,[[749,1,1,8,9],[762,1,1,9,10],[767,1,1,10,11],[769,2,2,11,13],[793,1,1,13,14],[794,1,1,14,15],[795,2,2,15,17]]],[25,3,3,17,20,[[836,2,2,17,19],[847,1,1,19,20]]],[34,1,1,20,21,[[905,1,1,20,21]]]],[217,2345,2436,2795,3455,3503,4310,15179,19080,19400,19524,19543,19546,20140,20171,20251,20269,21349,21353,21669,22774]]],["time",[3,3,[[2,1,1,0,1,[[114,1,1,0,1]]],[20,1,1,1,2,[[659,1,1,1,2]]],[25,1,1,2,3,[[827,1,1,2,3]]]],[3501,17325,21120]]],["times",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15098]]],["world",[2,2,[[18,1,1,0,1,[[550,1,1,0,1]]],[20,1,1,1,2,[[661,1,1,1,2]]]],[15032,17370]]]]},{"k":"H5770","v":[["+",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7685]]]]},{"k":"H5771","v":[["*",[230,213,[[0,4,4,0,4,[[3,1,1,0,1],[14,1,1,1,2],[18,1,1,2,3],[43,1,1,3,4]]],[1,6,5,4,9,[[69,1,1,4,5],[77,2,2,5,7],[83,3,2,7,9]]],[2,18,16,9,25,[[94,2,2,9,11],[96,1,1,11,12],[99,1,1,12,13],[105,2,2,13,15],[106,1,1,15,16],[107,1,1,16,17],[108,1,1,17,18],[109,2,2,18,20],[111,1,1,20,21],[115,6,4,21,25]]],[3,12,9,25,34,[[121,3,2,25,27],[130,4,3,27,30],[131,1,1,30,31],[134,3,2,31,33],[146,1,1,33,34]]],[4,2,2,34,36,[[157,1,1,34,35],[171,1,1,35,36]]],[5,2,2,36,38,[[208,2,2,36,38]]],[8,6,6,38,44,[[238,2,2,38,40],[255,2,2,40,42],[260,1,1,42,43],[263,1,1,43,44]]],[9,6,6,44,50,[[269,1,1,44,45],[280,2,2,45,47],[285,1,1,47,48],[288,1,1,48,49],[290,1,1,49,50]]],[10,1,1,50,51,[[307,1,1,50,51]]],[11,1,1,51,52,[[319,1,1,51,52]]],[12,1,1,52,53,[[358,1,1,52,53]]],[14,3,3,53,56,[[411,3,3,53,56]]],[15,2,2,56,58,[[416,1,1,56,57],[421,1,1,57,58]]],[17,15,15,58,73,[[442,1,1,58,59],[445,2,2,59,61],[446,1,1,61,62],[448,2,2,62,64],[449,1,1,64,65],[450,1,1,65,66],[454,1,1,66,67],[455,1,1,67,68],[457,1,1,68,69],[466,3,3,69,72],[468,1,1,72,73]]],[18,31,29,73,102,[[495,1,1,73,74],[502,1,1,74,75],[508,1,1,75,76],[509,3,2,76,78],[513,1,1,78,79],[515,2,2,79,81],[516,1,1,81,82],[517,1,1,82,83],[526,1,1,83,84],[528,3,3,84,87],[536,1,1,87,88],[542,1,1,88,89],[546,2,1,89,90],[555,1,1,90,91],[556,1,1,91,92],[562,1,1,92,93],[566,1,1,93,94],[567,1,1,94,95],[580,2,2,95,97],[583,1,1,97,98],[584,1,1,98,99],[586,1,1,99,100],[607,2,2,100,102]]],[19,2,2,102,104,[[632,1,1,102,103],[643,1,1,103,104]]],[22,25,24,104,128,[[679,1,1,104,105],[683,1,1,105,106],[684,1,1,106,107],[691,1,1,107,108],[692,1,1,108,109],[700,1,1,109,110],[704,1,1,110,111],[705,1,1,111,112],[708,1,1,112,113],[711,1,1,113,114],[718,1,1,114,115],[721,1,1,115,116],[728,1,1,116,117],[731,3,3,117,120],[735,1,1,120,121],[737,3,3,121,124],[742,3,3,124,127],[743,2,1,127,128]]],[23,24,23,128,151,[[746,1,1,128,129],[747,1,1,129,130],[749,1,1,130,131],[755,1,1,131,132],[757,1,1,132,133],[758,3,3,133,136],[760,3,3,136,139],[762,1,1,139,140],[769,1,1,140,141],[774,2,2,141,143],[775,2,2,143,145],[776,1,1,145,146],[777,2,1,146,147],[780,2,2,147,149],[794,1,1,149,150],[795,1,1,150,151]]],[24,6,5,151,156,[[798,1,1,151,152],[800,4,3,152,155],[801,1,1,155,156]]],[25,44,38,156,194,[[804,2,2,156,158],[805,6,4,158,162],[808,3,3,162,165],[810,1,1,165,166],[815,6,4,166,170],[817,1,1,170,171],[819,6,5,171,176],[822,4,4,176,180],[825,1,1,180,181],[829,1,1,181,182],[830,1,1,182,183],[833,1,1,183,184],[834,3,3,184,187],[836,1,1,187,188],[837,2,2,188,190],[840,1,1,190,191],[844,1,1,191,192],[845,3,2,192,194]]],[26,3,3,194,197,[[858,3,3,194,197]]],[27,10,10,197,207,[[865,1,1,197,198],[866,1,1,198,199],[868,1,1,199,200],[869,1,1,200,201],[870,2,2,201,203],[873,1,1,203,204],[874,1,1,204,205],[875,2,2,205,207]]],[29,1,1,207,208,[[881,1,1,207,208]]],[32,2,2,208,210,[[899,2,2,208,210]]],[37,2,2,210,212,[[913,2,2,210,212]]],[38,1,1,212,213,[[926,1,1,212,213]]]],[92,376,472,1340,2056,2331,2336,2503,2505,2831,2847,2897,2994,3222,3223,3251,3276,3289,3335,3337,3385,3563,3564,3565,3567,3807,3823,4126,4127,4142,4184,4258,4280,4663,5062,5421,6443,6446,7289,7290,7731,7738,7885,7952,8089,8365,8388,8530,8626,8702,9335,9716,10942,12243,12244,12250,12364,12513,13029,13092,13100,13114,13176,13179,13198,13208,13326,13353,13394,13599,13616,13621,13659,14141,14262,14341,14357,14360,14440,14494,14508,14523,14537,14653,14693,14696,14700,14794,14863,14962,15151,15193,15273,15358,15386,15552,15559,15694,15716,15769,16143,16148,16539,16846,17658,17757,17776,17917,17949,18066,18151,18160,18230,18303,18422,18529,18663,18716,18717,18722,18782,18802,18803,18812,18891,18892,18894,18904,18987,19015,19083,19236,19288,19300,19303,19313,19346,19353,19354,19407,19546,19681,19682,19721,19725,19749,19783,19845,19873,20186,20218,20346,20426,20433,20442,20449,20520,20521,20533,20534,20535,20546,20590,20593,20596,20631,20734,20735,20738,20741,20811,20866,20867,20868,20869,20879,20967,20968,20969,20973,21079,21175,21199,21275,21286,21288,21289,21349,21390,21392,21471,21582,21609,21611,22001,22004,22012,22141,22157,22179,22207,22215,22217,22260,22278,22283,22284,22397,22682,22683,22916,22921,23109]]],["+",[15,15,[[3,2,2,0,2,[[121,2,2,0,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[14,1,1,3,4,[[411,1,1,3,4]]],[17,2,2,4,6,[[445,1,1,4,5],[446,1,1,5,6]]],[18,4,4,6,10,[[495,1,1,6,7],[528,1,1,7,8],[542,1,1,8,9],[584,1,1,9,10]]],[22,1,1,10,11,[[731,1,1,10,11]]],[25,2,2,11,13,[[830,1,1,11,12],[844,1,1,12,13]]],[26,1,1,13,14,[[858,1,1,13,14]]],[38,1,1,14,15,[[926,1,1,14,15]]]],[3807,3823,8626,12250,13100,13114,14141,14693,14863,15716,18716,21199,21582,22001,23109]]],["fault",[2,2,[[9,1,1,0,1,[[269,1,1,0,1]]],[18,1,1,1,2,[[536,1,1,1,2]]]],[8089,14794]]],["iniquities",[43,42,[[2,3,3,0,3,[[105,2,2,0,2],[115,1,1,2,3]]],[3,1,1,3,4,[[130,1,1,3,4]]],[14,2,2,4,6,[[411,2,2,4,6]]],[15,1,1,6,7,[[421,1,1,6,7]]],[17,3,3,7,10,[[448,2,2,7,9],[457,1,1,9,10]]],[18,9,9,10,19,[[515,1,1,10,11],[517,1,1,11,12],[528,1,1,12,13],[556,1,1,13,14],[567,1,1,14,15],[580,2,2,15,17],[607,2,2,17,19]]],[19,1,1,19,20,[[632,1,1,19,20]]],[22,9,8,20,28,[[721,1,1,20,21],[728,1,1,21,22],[731,1,1,22,23],[737,2,2,23,25],[742,2,2,25,27],[743,2,1,27,28]]],[23,4,4,28,32,[[749,1,1,28,29],[755,1,1,29,30],[758,1,1,30,31],[777,1,1,31,32]]],[24,2,2,32,34,[[800,1,1,32,33],[801,1,1,33,34]]],[25,5,5,34,39,[[825,1,1,34,35],[829,1,1,35,36],[833,1,1,36,37],[837,2,2,37,39]]],[26,1,1,39,40,[[858,1,1,39,40]]],[29,1,1,40,41,[[881,1,1,40,41]]],[32,1,1,41,42,[[899,1,1,41,42]]]],[3222,3223,3563,4142,12243,12244,12513,13176,13179,13394,14494,14537,14700,15193,15386,15552,15559,16143,16148,16539,18529,18663,18722,18802,18812,18891,18892,18904,19083,19236,19300,19783,20433,20449,21079,21175,21275,21390,21392,22004,22397,22683]]],["iniquity",[163,152,[[0,3,3,0,3,[[14,1,1,0,1],[18,1,1,1,2],[43,1,1,2,3]]],[1,6,5,3,8,[[69,1,1,3,4],[77,2,2,4,6],[83,3,2,6,8]]],[2,15,14,8,22,[[94,2,2,8,10],[96,1,1,10,11],[99,1,1,11,12],[106,1,1,12,13],[107,1,1,13,14],[108,1,1,14,15],[109,2,2,15,17],[111,1,1,17,18],[115,5,4,18,22]]],[3,9,7,22,29,[[121,1,1,22,23],[130,3,2,23,25],[131,1,1,25,26],[134,3,2,26,28],[146,1,1,28,29]]],[4,2,2,29,31,[[157,1,1,29,30],[171,1,1,30,31]]],[5,2,2,31,33,[[208,2,2,31,33]]],[8,5,5,33,38,[[238,2,2,33,35],[255,2,2,35,37],[260,1,1,37,38]]],[9,4,4,38,42,[[280,2,2,38,40],[285,1,1,40,41],[290,1,1,41,42]]],[12,1,1,42,43,[[358,1,1,42,43]]],[15,1,1,43,44,[[416,1,1,43,44]]],[17,9,9,44,53,[[442,1,1,44,45],[445,1,1,45,46],[449,1,1,46,47],[450,1,1,47,48],[455,1,1,48,49],[466,3,3,49,52],[468,1,1,52,53]]],[18,17,15,53,68,[[502,1,1,53,54],[508,1,1,54,55],[509,3,2,55,57],[513,1,1,57,58],[515,1,1,58,59],[516,1,1,59,60],[526,1,1,60,61],[528,1,1,61,62],[546,2,1,62,63],[555,1,1,63,64],[562,1,1,64,65],[566,1,1,65,66],[583,1,1,66,67],[586,1,1,67,68]]],[19,1,1,68,69,[[643,1,1,68,69]]],[22,15,15,69,84,[[679,1,1,69,70],[683,1,1,70,71],[684,1,1,71,72],[691,1,1,72,73],[692,1,1,73,74],[700,1,1,74,75],[704,1,1,75,76],[705,1,1,76,77],[708,1,1,77,78],[711,1,1,78,79],[718,1,1,79,80],[731,1,1,80,81],[735,1,1,81,82],[737,1,1,82,83],[742,1,1,83,84]]],[23,20,20,84,104,[[746,1,1,84,85],[747,1,1,85,86],[757,1,1,86,87],[758,2,2,87,89],[760,3,3,89,92],[762,1,1,92,93],[769,1,1,93,94],[774,2,2,94,96],[775,2,2,96,98],[776,1,1,98,99],[777,1,1,99,100],[780,2,2,100,102],[794,1,1,102,103],[795,1,1,103,104]]],[24,4,3,104,107,[[798,1,1,104,105],[800,3,2,105,107]]],[25,35,31,107,138,[[804,2,2,107,109],[805,6,4,109,113],[808,3,3,113,116],[810,1,1,116,117],[815,4,4,117,121],[817,1,1,121,122],[819,6,5,122,127],[822,4,4,127,131],[834,3,3,131,134],[836,1,1,134,135],[840,1,1,135,136],[845,3,2,136,138]]],[26,1,1,138,139,[[858,1,1,138,139]]],[27,10,10,139,149,[[865,1,1,139,140],[866,1,1,140,141],[868,1,1,141,142],[869,1,1,142,143],[870,2,2,143,145],[873,1,1,145,146],[874,1,1,146,147],[875,2,2,147,149]]],[32,1,1,149,150,[[899,1,1,149,150]]],[37,2,2,150,152,[[913,2,2,150,152]]]],[376,472,1340,2056,2331,2336,2503,2505,2831,2847,2897,2994,3251,3276,3289,3335,3337,3385,3563,3564,3565,3567,3823,4126,4127,4184,4258,4280,4663,5062,5421,6443,6446,7289,7290,7731,7738,7885,8365,8388,8530,8702,10942,12364,13029,13092,13198,13208,13353,13599,13616,13621,13659,14262,14341,14357,14360,14440,14508,14523,14653,14696,14962,15151,15273,15358,15694,15769,16846,17658,17757,17776,17917,17949,18066,18151,18160,18230,18303,18422,18717,18782,18803,18894,18987,19015,19288,19303,19313,19346,19353,19354,19407,19546,19681,19682,19721,19725,19749,19783,19845,19873,20186,20218,20346,20426,20442,20520,20521,20533,20534,20535,20546,20590,20593,20596,20631,20734,20735,20738,20741,20811,20866,20867,20868,20869,20879,20967,20968,20969,20973,21286,21288,21289,21349,21471,21609,21611,22012,22141,22157,22179,22207,22215,22217,22260,22278,22283,22284,22682,22916,22921]]],["mischief",[1,1,[[11,1,1,0,1,[[319,1,1,0,1]]]],[9716]]],["punishment",[4,3,[[0,1,1,0,1,[[3,1,1,0,1]]],[8,1,1,1,2,[[263,1,1,1,2]]],[25,2,1,2,3,[[815,2,1,2,3]]]],[92,7952,20741]]],["punishments",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13326]]],["sin",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9335]]]]},{"k":"H5772","v":[["marriage",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2087]]]]},{"k":"H5773","v":[["perverse",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18018]]]]},{"k":"H5774","v":[["*",[28,27,[[0,1,1,0,1,[[0,1,1,0,1]]],[4,1,1,1,2,[[156,1,1,1,2]]],[6,1,1,2,3,[[214,1,1,2,3]]],[9,2,2,3,5,[[287,1,1,3,4],[288,1,1,4,5]]],[17,3,3,5,8,[[440,1,1,5,6],[446,1,1,6,7],[455,1,1,7,8]]],[18,4,4,8,12,[[495,1,1,8,9],[532,1,1,9,10],[567,1,1,10,11],[568,1,1,11,12]]],[19,3,2,12,14,[[650,2,1,12,13],[653,1,1,13,14]]],[22,7,7,14,21,[[684,2,2,14,16],[689,1,1,16,17],[692,1,1,17,18],[708,1,1,18,19],[709,1,1,19,20],[738,1,1,20,21]]],[25,1,1,21,22,[[833,1,1,21,22]]],[27,1,1,22,23,[[870,1,1,22,23]]],[33,1,1,23,24,[[902,1,1,23,24]]],[34,1,1,24,25,[[903,1,1,24,25]]],[37,2,2,25,27,[[915,2,2,25,27]]]],[19,5021,6620,8595,8613,12958,13125,13334,14128,14738,15388,15400,17049,17143,17771,17775,17898,17957,18223,18255,18829,21258,22219,22728,22739,22937,22938]]],["+",[2,2,[[22,2,2,0,2,[[692,1,1,0,1],[708,1,1,1,2]]]],[17957,18223]]],["away",[6,6,[[17,1,1,0,1,[[455,1,1,0,1]]],[18,2,2,1,3,[[532,1,1,1,2],[567,1,1,2,3]]],[19,1,1,3,4,[[650,1,1,3,4]]],[27,1,1,4,5,[[870,1,1,4,5]]],[33,1,1,5,6,[[902,1,1,5,6]]]],[13334,14738,15388,17049,22219,22728]]],["brandish",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21258]]],["faint",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8595]]],["flew",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17775]]],["flieth",[2,2,[[4,1,1,0,1,[[156,1,1,0,1]]],[18,1,1,1,2,[[568,1,1,1,2]]]],[5021,15400]]],["fly",[8,8,[[0,1,1,0,1,[[0,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,1,1,2,3,[[440,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]],[22,3,3,4,7,[[684,1,1,4,5],[689,1,1,5,6],[738,1,1,6,7]]],[34,1,1,7,8,[[903,1,1,7,8]]]],[19,8613,12958,14128,17771,17898,18829,22739]]],["flying",[4,4,[[19,1,1,0,1,[[653,1,1,0,1]]],[22,1,1,1,2,[[709,1,1,1,2]]],[37,2,2,2,4,[[915,2,2,2,4]]]],[17143,18255,22937,22938]]],["forth",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13125]]],["set",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17049]]],["weary",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6620]]]]},{"k":"H5775","v":[["*",[71,70,[[0,22,22,0,22,[[0,6,6,0,6],[1,2,2,6,8],[5,2,2,8,10],[6,5,5,10,15],[7,3,3,15,18],[8,2,2,18,20],[39,2,2,20,22]]],[2,10,9,22,31,[[90,1,1,22,23],[96,1,1,23,24],[100,5,5,24,29],[106,1,1,29,30],[109,2,1,30,31]]],[4,3,3,31,34,[[166,2,2,31,33],[180,1,1,33,34]]],[8,2,2,34,36,[[252,2,2,34,36]]],[9,1,1,36,37,[[287,1,1,36,37]]],[10,4,4,37,41,[[294,1,1,37,38],[304,1,1,38,39],[306,1,1,39,40],[311,1,1,40,41]]],[17,3,3,41,44,[[447,1,1,41,42],[463,1,1,42,43],[470,1,1,43,44]]],[18,4,4,44,48,[[527,1,1,44,45],[555,1,1,45,46],[556,1,1,46,47],[581,1,1,47,48]]],[20,1,1,48,49,[[668,1,1,48,49]]],[22,1,1,49,50,[[694,1,1,49,50]]],[23,9,9,50,59,[[748,1,1,50,51],[749,1,1,51,52],[751,1,1,52,53],[753,1,1,53,54],[756,1,1,54,55],[759,1,1,55,56],[760,1,1,56,57],[763,1,1,57,58],[778,1,1,58,59]]],[25,6,6,59,65,[[830,1,1,59,60],[832,2,2,60,62],[833,1,1,62,63],[839,1,1,63,64],[845,1,1,64,65]]],[27,4,4,65,69,[[863,1,1,65,66],[865,1,1,66,67],[868,1,1,67,68],[870,1,1,68,69]]],[35,1,1,69,70,[[906,1,1,69,70]]]],[19,20,21,25,27,29,49,50,144,157,162,167,173,180,182,200,202,203,207,215,1189,1191,2759,2905,3010,3017,3018,3020,3043,3248,3343,5309,5310,5637,7662,7664,8590,8877,9229,9287,9475,13135,13525,13731,14679,15140,15187,15583,17513,17971,19052,19085,19152,19185,19253,19318,19340,19414,19821,21188,21236,21243,21252,21445,21630,22123,22136,22190,22219,22790]]],["+",[5,5,[[0,2,2,0,2,[[5,1,1,0,1],[6,1,1,1,2]]],[17,2,2,2,4,[[463,1,1,2,3],[470,1,1,3,4]]],[23,1,1,4,5,[[753,1,1,4,5]]]],[157,162,13525,13731,19185]]],["bird",[3,3,[[20,1,1,0,1,[[668,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]],[27,1,1,2,3,[[870,1,1,2,3]]]],[17513,17971,22219]]],["birds",[6,6,[[0,2,2,0,2,[[39,2,2,0,2]]],[9,1,1,2,3,[[287,1,1,2,3]]],[23,3,3,3,6,[[748,1,1,3,4],[749,1,1,4,5],[756,1,1,5,6]]]],[1189,1191,8590,19052,19085,19253]]],["flieth",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5309]]],["flying",[2,2,[[2,2,2,0,2,[[100,2,2,0,2]]]],[3018,3020]]],["fowl",[22,22,[[0,16,16,0,16,[[0,6,6,0,6],[1,2,2,6,8],[6,3,3,8,11],[7,3,3,11,14],[8,2,2,14,16]]],[2,4,4,16,20,[[96,1,1,16,17],[100,1,1,17,18],[106,1,1,18,19],[109,1,1,19,20]]],[10,1,1,20,21,[[294,1,1,20,21]]],[25,1,1,21,22,[[845,1,1,21,22]]]],[19,20,21,25,27,29,49,50,173,180,182,200,202,203,207,215,2905,3043,3248,3343,8877,21630]]],["fowls",[32,32,[[0,2,2,0,2,[[5,1,1,0,1],[6,1,1,1,2]]],[2,4,4,2,6,[[90,1,1,2,3],[100,2,2,3,5],[109,1,1,5,6]]],[4,2,2,6,8,[[166,1,1,6,7],[180,1,1,7,8]]],[8,2,2,8,10,[[252,2,2,8,10]]],[10,3,3,10,13,[[304,1,1,10,11],[306,1,1,11,12],[311,1,1,12,13]]],[17,1,1,13,14,[[447,1,1,13,14]]],[18,4,4,14,18,[[527,1,1,14,15],[555,1,1,15,16],[556,1,1,16,17],[581,1,1,17,18]]],[23,5,5,18,23,[[751,1,1,18,19],[759,1,1,19,20],[760,1,1,20,21],[763,1,1,21,22],[778,1,1,22,23]]],[25,5,5,23,28,[[830,1,1,23,24],[832,2,2,24,26],[833,1,1,26,27],[839,1,1,27,28]]],[27,3,3,28,31,[[863,1,1,28,29],[865,1,1,29,30],[868,1,1,30,31]]],[35,1,1,31,32,[[906,1,1,31,32]]]],[144,167,2759,3010,3017,3343,5310,5637,7662,7664,9229,9287,9475,13135,14679,15140,15187,15583,19152,19318,19340,19414,19821,21188,21236,21243,21252,21445,22123,22136,22190,22790]]]]},{"k":"H5776","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[856,1,1,1,2]]]],[21796,21939]]],["fowl",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21939]]],["fowls",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21796]]]]},{"k":"H5777","v":[["lead",[9,9,[[1,1,1,0,1,[[64,1,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]],[17,1,1,2,3,[[454,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]],[25,3,3,4,7,[[823,2,2,4,6],[828,1,1,6,7]]],[37,2,2,7,9,[[915,2,2,7,9]]]],[1930,4686,13321,19118,20994,20996,21133,22943,22944]]]]},{"k":"H5778","v":[["Ephai",[1,1,[[23,1,1,0,1,[[784,1,1,0,1]]]],[19949]]]]},{"k":"H5779","v":[["*",[2,2,[[6,1,1,0,1,[[229,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]]],[7054,17817]]],["+",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17817]]],["advice",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7054]]]]},{"k":"H5780","v":[["*",[8,8,[[0,3,3,0,3,[[9,1,1,0,1],[21,1,1,1,2],[35,1,1,2,3]]],[12,2,2,3,5,[[338,2,2,3,5]]],[17,1,1,5,6,[[436,1,1,5,6]]],[23,1,1,6,7,[[769,1,1,6,7]]],[24,1,1,7,8,[[800,1,1,7,8]]]],[257,568,1068,10269,10294,12870,19554,20441]]],["Huz",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[568]]],["Uz",[7,7,[[0,2,2,0,2,[[9,1,1,0,1],[35,1,1,1,2]]],[12,2,2,2,4,[[338,2,2,2,4]]],[17,1,1,4,5,[[436,1,1,4,5]]],[23,1,1,5,6,[[769,1,1,5,6]]],[24,1,1,6,7,[[800,1,1,6,7]]]],[257,1068,10269,10294,12870,19554,20441]]]]},{"k":"H5781","v":[["pressed",[2,1,[[29,2,1,0,1,[[880,2,1,0,1]]]],[22392]]]]},{"k":"H5782","v":[["*",[80,65,[[4,1,1,0,1,[[184,1,1,0,1]]],[6,4,1,1,2,[[215,4,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[12,3,3,3,6,[[342,1,1,3,4],[348,2,2,4,6]]],[13,2,2,6,8,[[387,1,1,6,7],[402,1,1,7,8]]],[14,2,2,8,10,[[403,2,2,8,10]]],[17,6,6,10,16,[[438,1,1,10,11],[443,1,1,11,12],[449,1,1,12,13],[452,1,1,13,14],[466,1,1,14,15],[476,1,1,15,16]]],[18,12,9,16,25,[[484,1,1,16,17],[512,1,1,17,18],[521,1,1,18,19],[534,3,1,19,20],[536,1,1,20,21],[550,1,1,21,22],[555,1,1,22,23],[557,1,1,23,24],[585,2,1,24,25]]],[19,1,1,25,26,[[637,1,1,25,26]]],[21,9,6,26,32,[[672,2,1,26,27],[673,2,1,27,28],[674,1,1,28,29],[675,1,1,29,30],[678,3,2,30,32]]],[22,18,13,32,45,[[688,1,1,32,33],[691,1,1,33,34],[692,1,1,34,35],[693,1,1,35,36],[719,2,2,36,38],[720,1,1,38,39],[723,1,1,39,40],[728,2,1,40,41],[729,5,2,41,43],[730,2,1,43,44],[742,1,1,44,45]]],[23,6,6,45,51,[[750,1,1,45,46],[769,1,1,46,47],[794,2,2,47,49],[795,2,2,49,51]]],[25,1,1,51,52,[[824,1,1,51,52]]],[26,2,2,52,54,[[860,2,2,52,54]]],[27,1,1,54,55,[[868,1,1,54,55]]],[28,3,3,55,58,[[878,3,3,55,58]]],[34,1,1,58,59,[[904,1,1,58,59]]],[36,1,1,59,60,[[909,1,1,59,60]]],[37,5,4,60,64,[[912,1,1,60,61],[914,2,1,61,62],[919,1,1,62,63],[923,1,1,63,64]]],[38,1,1,64,65,[[926,1,1,64,65]]]],[5769,6635,8671,10454,10684,10693,11640,12015,12017,12021,12912,13035,13193,13268,13617,13898,14001,14433,14594,14776,14794,15040,15151,15200,15744,16668,17561,17576,17598,17600,17644,17645,17876,17923,17937,17965,18453,18476,18493,18574,18666,18682,18690,18697,18892,19111,19566,20175,20207,20213,20223,21029,22038,22061,22182,22350,22352,22355,22767,22854,22912,22923,23012,23066,23115]]],["+",[17,15,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,3,3,1,4,[[342,1,1,1,2],[348,2,2,2,4]]],[13,1,1,4,5,[[402,1,1,4,5]]],[14,1,1,5,6,[[403,1,1,5,6]]],[18,1,1,6,7,[[557,1,1,6,7]]],[21,5,3,7,10,[[672,2,1,7,8],[673,2,1,8,9],[678,1,1,9,10]]],[22,1,1,10,11,[[691,1,1,10,11]]],[23,1,1,11,12,[[795,1,1,11,12]]],[25,1,1,12,13,[[824,1,1,12,13]]],[27,1,1,13,14,[[868,1,1,13,14]]],[36,1,1,14,15,[[909,1,1,14,15]]]],[8671,10454,10684,10693,12015,12017,15200,17561,17576,17644,17923,20223,21029,22182,22854]]],["Arise",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22767]]],["Awake",[8,8,[[6,1,1,0,1,[[215,1,1,0,1]]],[18,2,2,1,3,[[521,1,1,1,2],[585,1,1,2,3]]],[21,1,1,3,4,[[674,1,1,3,4]]],[22,3,3,4,7,[[729,2,2,4,6],[730,1,1,6,7]]],[37,1,1,7,8,[[923,1,1,7,8]]]],[6635,14594,15744,17598,18682,18690,18697,23066]]],["awake",[13,9,[[6,3,1,0,1,[[215,3,1,0,1]]],[17,1,1,1,2,[[443,1,1,1,2]]],[18,5,4,2,6,[[484,1,1,2,3],[534,2,1,3,4],[536,1,1,4,5],[585,1,1,5,6]]],[22,4,3,6,9,[[729,3,2,6,8],[730,1,1,8,9]]]],[6635,13035,14001,14776,14794,15744,18682,18690,18697]]],["awakest",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15040]]],["himself",[2,2,[[17,1,1,0,1,[[452,1,1,0,1]]],[22,1,1,1,2,[[742,1,1,1,2]]]],[13268,18892]]],["master",[1,1,[[38,1,1,0,1,[[926,1,1,0,1]]]],[23115]]],["myself",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13617]]],["raise",[2,2,[[23,1,1,0,1,[[794,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]]],[20175,22350]]],["raised",[4,4,[[14,1,1,0,1,[[403,1,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[23,1,1,2,3,[[750,1,1,2,3]]],[37,1,1,3,4,[[919,1,1,3,4]]]],[12021,13193,19111,23012]]],["thyself",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14433]]],["up",[23,23,[[4,1,1,0,1,[[184,1,1,0,1]]],[13,1,1,1,2,[[387,1,1,1,2]]],[17,2,2,2,4,[[438,1,1,2,3],[476,1,1,3,4]]],[18,2,2,4,6,[[534,1,1,4,5],[555,1,1,5,6]]],[19,1,1,6,7,[[637,1,1,6,7]]],[21,2,2,7,9,[[678,2,2,7,9]]],[22,7,7,9,16,[[688,1,1,9,10],[692,1,1,10,11],[693,1,1,11,12],[719,2,2,12,14],[720,1,1,14,15],[723,1,1,15,16]]],[23,3,3,16,19,[[769,1,1,16,17],[794,1,1,17,18],[795,1,1,18,19]]],[26,2,2,19,21,[[860,2,2,19,21]]],[28,1,1,21,22,[[878,1,1,21,22]]],[37,1,1,22,23,[[912,1,1,22,23]]]],[5769,11640,12912,13898,14776,15151,16668,17644,17645,17876,17937,17965,18453,18476,18493,18574,19566,20207,20213,22038,22061,22352,22912]]],["waked",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22923]]],["wakened",[2,2,[[28,1,1,0,1,[[878,1,1,0,1]]],[37,1,1,1,2,[[914,1,1,1,2]]]],[22355,22923]]],["wakeneth",[2,1,[[22,2,1,0,1,[[728,2,1,0,1]]]],[18666]]],["waketh",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17600]]]]},{"k":"H5783","v":[["+",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22777]]]]},{"k":"H5784","v":[["chaff",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21793]]]]},{"k":"H5785","v":[["*",[99,82,[[0,2,2,0,2,[[2,1,1,0,1],[26,1,1,1,2]]],[1,17,11,2,13,[[71,1,1,2,3],[74,2,1,3,4],[75,2,1,4,5],[78,1,1,5,6],[83,3,3,6,9],[84,4,2,9,11],[85,2,1,11,12],[88,2,1,12,13]]],[2,53,44,13,57,[[93,1,1,13,14],[96,1,1,14,15],[97,1,1,15,16],[98,1,1,16,17],[100,1,1,17,18],[102,46,37,18,55],[104,1,1,55,56],[105,1,1,56,57]]],[3,8,8,57,65,[[120,6,6,57,63],[135,1,1,63,64],[147,1,1,64,65]]],[11,1,1,65,66,[[313,1,1,65,66]]],[17,10,8,66,74,[[437,2,1,66,67],[442,1,1,67,68],[445,1,1,68,69],[453,1,1,69,70],[454,3,2,70,72],[465,1,1,72,73],[476,1,1,73,74]]],[23,1,1,74,75,[[757,1,1,74,75]]],[24,3,3,75,78,[[799,1,1,75,76],[800,1,1,76,77],[801,1,1,77,78]]],[25,2,2,78,80,[[838,2,2,78,80]]],[32,2,2,80,82,[[895,2,2,80,82]]]],[76,743,2140,2200,2249,2350,2525,2526,2531,2538,2554,2585,2698,2806,2887,2934,2964,3029,3054,3055,3056,3057,3058,3059,3060,3062,3063,3064,3070,3072,3073,3074,3076,3077,3078,3079,3080,3082,3083,3084,3086,3087,3088,3090,3091,3095,3100,3101,3103,3104,3105,3108,3109,3110,3111,3185,3228,3749,3751,3753,3754,3755,3757,4294,4684,9541,12895,13013,13097,13289,13317,13323,13587,13895,19289,20358,20428,20452,21403,21405,22610,22611]]],["+",[3,2,[[2,1,1,0,1,[[102,1,1,0,1]]],[17,2,1,1,2,[[437,2,1,1,2]]]],[3055,12895]]],["hide",[2,2,[[2,2,2,0,2,[[97,1,1,0,1],[98,1,1,1,2]]]],[2934,2964]]],["leather",[1,1,[[11,1,1,0,1,[[313,1,1,0,1]]]],[9541]]],["skin",[70,61,[[1,5,5,0,5,[[71,1,1,0,1],[78,1,1,1,2],[83,3,3,2,5]]],[2,48,40,5,45,[[93,1,1,5,6],[96,1,1,6,7],[100,1,1,7,8],[102,44,36,8,44],[104,1,1,44,45]]],[3,1,1,45,46,[[135,1,1,45,46]]],[17,8,7,46,53,[[442,1,1,46,47],[445,1,1,47,48],[453,1,1,48,49],[454,3,2,49,51],[465,1,1,51,52],[476,1,1,52,53]]],[23,1,1,53,54,[[757,1,1,53,54]]],[24,3,3,54,57,[[799,1,1,54,55],[800,1,1,55,56],[801,1,1,56,57]]],[25,2,2,57,59,[[838,2,2,57,59]]],[32,2,2,59,61,[[895,2,2,59,61]]]],[2140,2350,2525,2526,2531,2806,2887,3029,3054,3055,3056,3057,3058,3059,3060,3062,3063,3064,3070,3072,3073,3074,3076,3077,3078,3079,3080,3082,3083,3084,3086,3087,3088,3090,3091,3095,3100,3101,3103,3104,3105,3108,3109,3110,3185,4294,13013,13097,13289,13317,13323,13587,13895,19289,20358,20428,20452,21403,21405,22610,22611]]],["skins",[23,17,[[0,2,2,0,2,[[2,1,1,0,1],[26,1,1,1,2]]],[1,12,6,2,8,[[74,2,1,2,3],[75,2,1,3,4],[84,4,2,4,6],[85,2,1,6,7],[88,2,1,7,8]]],[2,2,2,8,10,[[102,1,1,8,9],[105,1,1,9,10]]],[3,7,7,10,17,[[120,6,6,10,16],[147,1,1,16,17]]]],[76,743,2200,2249,2538,2554,2585,2698,3111,3228,3749,3751,3753,3754,3755,3757,4684]]]]},{"k":"H5786","v":[["*",[5,5,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,1,1,1,2,[[168,1,1,1,2]]],[11,1,1,2,3,[[337,1,1,2,3]]],[23,2,2,3,5,[[783,1,1,3,4],[796,1,1,4,5]]]],[2152,5361,10229,19930,20287]]],["+",[1,1,[[11,1,1,0,1,[[337,1,1,0,1]]]],[10229]]],["blind",[1,1,[[4,1,1,0,1,[[168,1,1,0,1]]]],[5361]]],["blindeth",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2152]]],["out",[2,2,[[23,2,2,0,2,[[783,1,1,0,1],[796,1,1,1,2]]]],[19930,20287]]]]},{"k":"H5787","v":[["*",[26,23,[[1,1,1,0,1,[[53,1,1,0,1]]],[2,2,2,1,3,[[108,1,1,1,2],[110,1,1,2,3]]],[4,3,3,3,6,[[167,1,1,3,4],[179,1,1,4,5],[180,1,1,5,6]]],[9,3,2,6,8,[[271,3,2,6,8]]],[17,1,1,8,9,[[464,1,1,8,9]]],[18,1,1,9,10,[[623,1,1,9,10]]],[22,11,9,10,19,[[707,1,1,10,11],[713,1,1,11,12],[720,6,4,12,16],[721,1,1,16,17],[734,1,1,17,18],[737,1,1,18,19]]],[23,1,1,19,20,[[775,1,1,19,20]]],[24,1,1,20,21,[[800,1,1,20,21]]],[35,1,1,21,22,[[906,1,1,21,22]]],[38,1,1,22,23,[[925,1,1,22,23]]]],[1612,3295,3363,5340,5603,5640,8138,8140,13547,16349,18211,18325,18487,18496,18498,18499,18513,18763,18810,19699,20434,22804,23097]]],["blind",[25,22,[[1,1,1,0,1,[[53,1,1,0,1]]],[2,2,2,1,3,[[108,1,1,1,2],[110,1,1,2,3]]],[4,3,3,3,6,[[167,1,1,3,4],[179,1,1,4,5],[180,1,1,5,6]]],[9,3,2,6,8,[[271,3,2,6,8]]],[17,1,1,8,9,[[464,1,1,8,9]]],[18,1,1,9,10,[[623,1,1,9,10]]],[22,11,9,10,19,[[707,1,1,10,11],[713,1,1,11,12],[720,6,4,12,16],[721,1,1,16,17],[734,1,1,17,18],[737,1,1,18,19]]],[23,1,1,19,20,[[775,1,1,19,20]]],[24,1,1,20,21,[[800,1,1,20,21]]],[38,1,1,21,22,[[925,1,1,21,22]]]],[1612,3295,3363,5340,5603,5640,8138,8140,13547,16349,18211,18325,18487,18496,18498,18499,18513,18763,18810,19699,20434,23097]]],["men",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22804]]]]},{"k":"H5788","v":[["*",[3,3,[[2,1,1,0,1,[[111,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[37,1,1,2,3,[[922,1,1,2,3]]]],[3391,5639,23049]]],["Blind",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3391]]],["blindness",[2,2,[[4,1,1,0,1,[[180,1,1,0,1]]],[37,1,1,1,2,[[922,1,1,1,2]]]],[5639,23049]]]]},{"k":"H5789","v":[["Assemble",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22354]]]]},{"k":"H5790","v":[["+",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18666]]]]},{"k":"H5791","v":[["*",[11,10,[[17,4,3,0,3,[[443,2,1,0,1],[454,1,1,1,2],[469,1,1,2,3]]],[18,2,2,3,5,[[596,1,1,3,4],[623,1,1,4,5]]],[20,3,3,5,8,[[659,1,1,5,6],[665,1,1,6,7],[670,1,1,7,8]]],[24,1,1,8,9,[[799,1,1,8,9]]],[29,1,1,9,10,[[886,1,1,9,10]]]],[13032,13303,13695,15976,16350,17330,17442,17526,20390,22486]]],["crooked",[2,2,[[20,2,2,0,2,[[659,1,1,0,1],[665,1,1,1,2]]]],[17330,17442]]],["down",[1,1,[[18,1,1,0,1,[[623,1,1,0,1]]]],[16350]]],["falsifying",[1,1,[[29,1,1,0,1,[[886,1,1,0,1]]]],[22486]]],["overthrown",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13303]]],["perversely",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15976]]],["pervert",[3,2,[[17,3,2,0,2,[[443,2,1,0,1],[469,1,1,1,2]]]],[13032,13695]]],["subvert",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20390]]],["themselves",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17526]]]]},{"k":"H5792","v":[["wrong",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20413]]]]},{"k":"H5793","v":[["Uthai",[2,2,[[12,1,1,0,1,[[346,1,1,0,1]]],[14,1,1,1,2,[[410,1,1,1,2]]]],[10619,12215]]]]},{"k":"H5794","v":[["*",[23,23,[[0,2,2,0,2,[[48,2,2,0,2]]],[1,1,1,2,3,[[63,1,1,2,3]]],[3,2,2,3,5,[[129,1,1,3,4],[137,1,1,4,5]]],[4,1,1,5,6,[[180,1,1,5,6]]],[6,2,2,6,8,[[224,2,2,6,8]]],[9,1,1,8,9,[[288,1,1,8,9]]],[15,1,1,9,10,[[421,1,1,9,10]]],[18,2,2,10,12,[[495,1,1,10,11],[536,1,1,11,12]]],[19,3,3,12,15,[[645,1,1,12,13],[648,1,1,13,14],[657,1,1,14,15]]],[21,1,1,15,16,[[678,1,1,15,16]]],[22,4,4,16,20,[[697,1,1,16,17],[703,1,1,17,18],[721,1,1,18,19],[734,1,1,19,20]]],[25,1,1,20,21,[[808,1,1,20,21]]],[26,1,1,21,22,[[857,1,1,21,22]]],[29,1,1,22,23,[[883,1,1,22,23]]]],[1476,1480,1910,4103,4364,5661,6923,6927,8620,12522,14135,14793,16924,16998,17276,17646,18008,18121,18521,18764,20601,21984,22432]]],["+",[3,3,[[6,1,1,0,1,[[224,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[22,1,1,2,3,[[734,1,1,2,3]]]],[6923,8620,18764]]],["fierce",[4,4,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[22,1,1,2,3,[[697,1,1,2,3]]],[26,1,1,3,4,[[857,1,1,3,4]]]],[1480,5661,18008,21984]]],["mighty",[3,3,[[15,1,1,0,1,[[421,1,1,0,1]]],[18,1,1,1,2,[[536,1,1,1,2]]],[22,1,1,2,3,[[721,1,1,2,3]]]],[12522,14793,18521]]],["power",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1476]]],["roughly",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16924]]],["strong",[10,10,[[1,1,1,0,1,[[63,1,1,0,1]]],[3,2,2,1,3,[[129,1,1,1,2],[137,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]],[19,2,2,4,6,[[648,1,1,4,5],[657,1,1,5,6]]],[21,1,1,6,7,[[678,1,1,6,7]]],[22,1,1,7,8,[[703,1,1,7,8]]],[25,1,1,8,9,[[808,1,1,8,9]]],[29,1,1,9,10,[[883,1,1,9,10]]]],[1910,4103,4364,14135,16998,17276,17646,18121,20601,22432]]],["stronger",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6927]]]]},{"k":"H5795","v":[["*",[74,74,[[0,11,11,0,11,[[14,1,1,0,1],[26,2,2,1,3],[29,3,3,3,6],[30,1,1,6,7],[31,1,1,7,8],[36,1,1,8,9],[37,2,2,9,11]]],[1,7,7,11,18,[[61,1,1,11,12],[74,1,1,12,13],[75,1,1,13,14],[84,3,3,14,17],[85,1,1,17,18]]],[2,12,12,18,30,[[90,1,1,18,19],[92,1,1,19,20],[93,2,2,20,22],[94,1,1,22,23],[96,1,1,23,24],[98,1,1,24,25],[105,1,1,25,26],[106,1,1,26,27],[111,2,2,27,29],[112,1,1,29,30]]],[3,25,25,30,55,[[123,13,13,30,43],[131,3,3,43,46],[134,1,1,46,47],[144,2,2,47,49],[145,5,5,49,54],[147,1,1,54,55]]],[4,1,1,55,56,[[166,1,1,55,56]]],[6,4,4,56,60,[[216,1,1,56,57],[223,2,2,57,59],[225,1,1,59,60]]],[8,4,4,60,64,[[251,1,1,60,61],[254,2,2,61,63],[260,1,1,63,64]]],[10,1,1,64,65,[[310,1,1,64,65]]],[13,2,2,65,67,[[395,1,1,65,66],[401,1,1,66,67]]],[19,1,1,67,68,[[654,1,1,67,68]]],[21,2,2,68,70,[[674,1,1,68,69],[676,1,1,69,70]]],[25,2,2,70,72,[[844,1,1,70,71],[846,1,1,71,72]]],[26,2,2,72,74,[[857,2,2,72,74]]]],[369,736,743,862,863,865,911,942,1114,1136,1139,1821,2199,2242,2537,2554,2557,2580,2755,2790,2818,2823,2836,2902,2956,3206,3238,3388,3396,3421,3866,3872,3878,3884,3890,3896,3902,3908,3914,3920,3926,3932,3937,4164,4177,4180,4274,4592,4607,4613,4619,4624,4627,4633,4684,5294,6673,6899,6903,6930,7615,7719,7722,7863,9435,11812,11973,17196,17583,17619,21594,21653,21966,21969]]],["+",[12,12,[[0,2,2,0,2,[[37,2,2,0,2]]],[4,1,1,2,3,[[166,1,1,2,3]]],[6,4,4,3,7,[[216,1,1,3,4],[223,2,2,4,6],[225,1,1,6,7]]],[8,1,1,7,8,[[251,1,1,7,8]]],[13,2,2,8,10,[[395,1,1,8,9],[401,1,1,9,10]]],[26,2,2,10,12,[[857,2,2,10,12]]]],[1136,1139,5294,6673,6899,6903,6930,7615,11812,11973,21966,21969]]],["goat",[7,7,[[0,1,1,0,1,[[14,1,1,0,1]]],[2,4,4,1,5,[[92,1,1,1,2],[96,1,1,2,3],[106,1,1,3,4],[111,1,1,4,5]]],[3,2,2,5,7,[[131,1,1,5,6],[134,1,1,6,7]]]],[369,2790,2902,3238,3396,4180,4274]]],["goats",[43,43,[[0,8,8,0,8,[[26,2,2,0,2],[29,3,3,2,5],[30,1,1,5,6],[31,1,1,6,7],[36,1,1,7,8]]],[1,1,1,8,9,[[61,1,1,8,9]]],[2,8,8,9,17,[[90,1,1,9,10],[93,2,2,10,12],[94,1,1,12,13],[98,1,1,13,14],[105,1,1,14,15],[111,1,1,15,16],[112,1,1,16,17]]],[3,21,21,17,38,[[123,13,13,17,30],[131,1,1,30,31],[144,2,2,31,33],[145,5,5,33,38]]],[8,1,1,38,39,[[260,1,1,38,39]]],[21,2,2,39,41,[[674,1,1,39,40],[676,1,1,40,41]]],[25,2,2,41,43,[[844,1,1,41,42],[846,1,1,42,43]]]],[736,743,862,863,865,911,942,1114,1821,2755,2818,2823,2836,2956,3206,3388,3421,3866,3872,3878,3884,3890,3896,3902,3908,3914,3920,3926,3932,3937,4177,4592,4607,4613,4619,4624,4627,4633,7863,17583,17619,21594,21653]]],["goats'",[10,10,[[1,6,6,0,6,[[74,1,1,0,1],[75,1,1,1,2],[84,3,3,2,5],[85,1,1,5,6]]],[3,1,1,6,7,[[147,1,1,6,7]]],[8,2,2,7,9,[[254,2,2,7,9]]],[19,1,1,9,10,[[654,1,1,9,10]]]],[2199,2242,2537,2554,2557,2580,4684,7719,7722,17196]]],["kid",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4164]]],["kids",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9435]]]]},{"k":"H5796","v":[["+",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12168]]]]},{"k":"H5797","v":[["*",[93,92,[[1,2,2,0,2,[[64,2,2,0,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[6,2,2,3,5,[[215,1,1,3,4],[219,1,1,4,5]]],[8,1,1,5,6,[[237,1,1,5,6]]],[9,1,1,6,7,[[272,1,1,6,7]]],[12,4,4,7,11,[[350,1,1,7,8],[353,3,3,8,11]]],[13,2,2,11,13,[[372,1,1,11,12],[396,1,1,12,13]]],[14,1,1,13,14,[[410,1,1,13,14]]],[17,4,4,14,18,[[447,1,1,14,15],[461,1,1,15,16],[472,1,1,16,17],[476,1,1,17,18]]],[18,44,43,18,61,[[485,1,1,18,19],[498,2,2,19,21],[505,2,2,21,23],[506,2,2,23,25],[507,1,1,25,26],[523,1,1,26,27],[536,3,3,27,30],[538,1,1,30,31],[539,2,2,31,33],[540,1,1,33,34],[543,1,1,34,35],[545,5,4,35,39],[548,1,1,39,40],[551,1,1,40,41],[554,1,1,41,42],[555,2,2,42,44],[558,1,1,44,45],[561,1,1,45,46],[563,1,1,46,47],[566,2,2,47,49],[567,1,1,49,50],[570,1,1,50,51],[573,2,2,51,53],[576,1,1,53,54],[582,1,1,54,55],[587,1,1,55,56],[595,1,1,56,57],[609,1,1,57,58],[615,1,1,58,59],[617,1,1,59,60],[627,1,1,60,61]]],[19,9,9,61,70,[[637,1,1,61,62],[641,1,1,62,63],[645,3,3,63,66],[648,1,1,66,67],[651,1,1,67,68],[658,2,2,68,70]]],[20,1,1,70,71,[[666,1,1,70,71]]],[22,7,7,71,78,[[690,1,1,71,72],[704,1,1,72,73],[723,1,1,73,74],[727,1,1,74,75],[729,1,1,75,76],[730,1,1,76,77],[740,1,1,77,78]]],[23,3,3,78,81,[[760,1,1,78,79],[792,1,1,79,80],[795,1,1,80,81]]],[25,8,8,81,89,[[820,3,3,81,84],[825,1,1,84,85],[827,1,1,85,86],[831,2,2,86,88],[834,1,1,88,89]]],[29,1,1,89,90,[[881,1,1,89,90]]],[32,1,1,90,91,[[897,1,1,90,91]]],[34,1,1,91,92,[[905,1,1,91,92]]]],[1922,1933,3543,6644,6805,7250,8171,10768,10831,10847,10848,11323,11848,12223,13144,13469,13775,13910,14014,14192,14204,14306,14307,14309,14319,14326,14615,14799,14806,14807,14822,14834,14838,14841,14876,14928,14933,14934,14935,14983,15061,15107,15139,15174,15218,15264,15300,15336,15343,15389,15427,15471,15472,15503,15610,15788,15883,16159,16234,16270,16395,16671,16798,16911,16912,16920,17006,17084,17301,17309,17459,17902,18131,18585,18641,18682,18697,18862,19355,20097,20265,20892,20893,20895,21077,21111,21210,21222,21308,22406,22637,22772]]],["Strength",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17309]]],["boldness",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17459]]],["loud",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11848]]],["might",[2,2,[[9,1,1,0,1,[[272,1,1,0,1]]],[12,1,1,1,2,[[350,1,1,1,2]]]],[8171,10768]]],["mighty",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14933]]],["power",[11,11,[[2,1,1,0,1,[[115,1,1,0,1]]],[14,1,1,1,2,[[410,1,1,1,2]]],[18,7,7,2,9,[[536,1,1,2,3],[539,1,1,3,4],[540,1,1,4,5],[543,1,1,5,6],[555,1,1,6,7],[567,1,1,7,8],[627,1,1,8,9]]],[25,1,1,9,10,[[831,1,1,9,10]]],[34,1,1,10,11,[[905,1,1,10,11]]]],[3543,12223,14806,14838,14841,14876,15139,15389,16395,21210,22772]]],["strength",[59,58,[[1,2,2,0,2,[[64,2,2,0,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[12,3,3,4,7,[[353,3,3,4,7]]],[13,1,1,7,8,[[372,1,1,7,8]]],[17,4,4,8,12,[[447,1,1,8,9],[461,1,1,9,10],[472,1,1,10,11],[476,1,1,11,12]]],[18,32,31,12,43,[[485,1,1,12,13],[498,2,2,13,15],[505,2,2,15,17],[506,2,2,17,19],[523,1,1,19,20],[536,2,2,20,22],[539,1,1,22,23],[545,4,3,23,26],[551,1,1,26,27],[554,1,1,27,28],[555,1,1,28,29],[558,1,1,29,30],[561,1,1,30,31],[563,1,1,31,32],[566,1,1,32,33],[570,1,1,33,34],[573,2,2,34,36],[576,1,1,36,37],[582,1,1,37,38],[587,1,1,38,39],[595,1,1,39,40],[609,1,1,40,41],[615,1,1,41,42],[617,1,1,42,43]]],[19,2,2,43,45,[[648,1,1,43,44],[658,1,1,44,45]]],[22,6,6,45,51,[[690,1,1,45,46],[723,1,1,46,47],[727,1,1,47,48],[729,1,1,48,49],[730,1,1,49,50],[740,1,1,50,51]]],[23,2,2,51,53,[[760,1,1,51,52],[795,1,1,52,53]]],[25,3,3,53,56,[[825,1,1,53,54],[831,1,1,54,55],[834,1,1,55,56]]],[29,1,1,56,57,[[881,1,1,56,57]]],[32,1,1,57,58,[[897,1,1,57,58]]]],[1922,1933,6644,7250,10831,10847,10848,11323,13144,13469,13775,13910,14014,14192,14204,14306,14307,14309,14319,14615,14799,14807,14834,14928,14934,14935,15061,15107,15174,15218,15264,15300,15343,15427,15471,15472,15503,15610,15788,15883,16159,16234,16270,17006,17301,17902,18585,18641,18682,18697,18862,19355,20265,21077,21222,21308,22406,22637]]],["strong",[17,17,[[6,1,1,0,1,[[219,1,1,0,1]]],[18,4,4,1,5,[[507,1,1,1,2],[538,1,1,2,3],[548,1,1,3,4],[566,1,1,4,5]]],[19,6,6,5,11,[[637,1,1,5,6],[641,1,1,6,7],[645,3,3,7,10],[651,1,1,10,11]]],[22,1,1,11,12,[[704,1,1,11,12]]],[23,1,1,12,13,[[792,1,1,12,13]]],[25,4,4,13,17,[[820,3,3,13,16],[827,1,1,16,17]]]],[6805,14326,14822,14983,15336,16671,16798,16911,16912,16920,17084,18131,20097,20892,20893,20895,21111]]]]},{"k":"H5798","v":[["*",[14,14,[[9,4,4,0,4,[[272,4,4,0,4]]],[11,2,2,4,6,[[333,2,2,4,6]]],[12,6,6,6,12,[[343,1,1,6,7],[345,1,1,7,8],[350,4,4,8,12]]],[14,1,1,12,13,[[404,1,1,12,13]]],[15,1,1,13,14,[[419,1,1,13,14]]]],[8160,8163,8164,8165,10137,10145,10483,10582,10767,10769,10770,10771,12076,12471]]],["Uzza",[10,10,[[11,2,2,0,2,[[333,2,2,0,2]]],[12,6,6,2,8,[[343,1,1,2,3],[345,1,1,3,4],[350,4,4,4,8]]],[14,1,1,8,9,[[404,1,1,8,9]]],[15,1,1,9,10,[[419,1,1,9,10]]]],[10137,10145,10483,10582,10767,10769,10770,10771,12076,12471]]],["Uzzah",[4,4,[[9,4,4,0,4,[[272,4,4,0,4]]]],[8160,8163,8164,8165]]]]},{"k":"H5799","v":[["scapegoat",[4,3,[[2,4,3,0,3,[[105,4,3,0,3]]]],[3209,3211,3227]]]]},{"k":"H5800","v":[["*",[215,206,[[0,11,10,0,10,[[1,1,1,0,1],[23,1,1,1,2],[27,1,1,2,3],[38,5,5,3,8],[43,2,1,8,9],[49,1,1,9,10]]],[1,5,3,10,13,[[51,1,1,10,11],[58,1,1,11,12],[72,3,1,12,13]]],[2,3,3,13,16,[[108,1,1,13,14],[112,1,1,14,15],[115,1,1,15,16]]],[3,1,1,16,17,[[126,1,1,16,17]]],[4,9,9,17,26,[[164,1,1,17,18],[166,1,1,18,19],[180,1,1,19,20],[181,1,1,20,21],[183,4,4,21,25],[184,1,1,25,26]]],[5,5,5,26,31,[[187,1,1,26,27],[194,1,1,27,28],[208,1,1,28,29],[210,2,2,29,31]]],[6,6,6,31,37,[[212,3,3,31,34],[220,3,3,34,37]]],[7,4,4,37,41,[[232,1,1,37,38],[233,3,3,38,41]]],[8,4,4,41,45,[[243,1,1,41,42],[247,1,1,42,43],[265,1,1,43,44],[266,1,1,44,45]]],[9,2,2,45,47,[[271,1,1,45,46],[281,1,1,46,47]]],[10,12,12,47,59,[[296,1,1,47,48],[298,1,1,48,49],[299,1,1,49,50],[301,1,1,50,51],[302,2,2,51,53],[304,1,1,53,54],[308,1,1,54,55],[309,3,3,55,58],[311,1,1,58,59]]],[11,11,11,59,70,[[314,3,3,59,62],[316,1,1,62,63],[319,1,1,63,64],[320,1,1,64,65],[321,1,1,65,66],[326,1,1,66,67],[329,1,1,67,68],[333,1,1,68,69],[334,1,1,69,70]]],[12,5,5,70,75,[[347,1,1,70,71],[351,1,1,71,72],[353,1,1,72,73],[365,2,2,73,75]]],[13,23,20,75,95,[[373,2,2,75,77],[376,2,2,77,79],[377,1,1,79,80],[378,3,2,80,82],[379,2,2,82,84],[381,2,1,84,85],[387,1,1,85,86],[390,5,4,86,90],[394,2,2,90,92],[395,1,1,92,93],[398,1,1,93,94],[400,1,1,94,95]]],[14,3,3,95,98,[[410,1,1,95,96],[411,2,2,96,98]]],[15,9,9,98,107,[[415,1,1,98,99],[416,1,1,99,100],[417,1,1,100,101],[421,4,4,101,105],[422,1,1,105,106],[425,1,1,106,107]]],[17,8,8,107,115,[[441,1,1,107,108],[444,1,1,108,109],[445,1,1,109,110],[453,1,1,110,111],[455,2,2,111,113],[474,2,2,113,115]]],[18,22,22,115,137,[[486,1,1,115,116],[487,1,1,116,117],[493,1,1,117,118],[499,1,1,118,119],[504,2,2,119,121],[514,4,4,121,125],[515,2,2,125,127],[517,1,1,127,128],[526,1,1,128,129],[548,3,3,129,132],[566,1,1,132,133],[571,1,1,133,134],[596,3,3,134,137]]],[19,11,11,137,148,[[629,2,2,137,139],[630,1,1,139,140],[631,2,2,140,142],[636,1,1,142,143],[637,1,1,143,144],[642,1,1,144,145],[654,1,1,145,146],[655,2,2,146,148]]],[22,22,21,148,169,[[679,2,2,148,150],[685,1,1,150,151],[688,2,2,151,153],[695,3,2,153,155],[696,1,1,155,156],[705,1,1,156,157],[710,1,1,157,158],[719,1,1,158,159],[720,1,1,159,160],[727,1,1,160,161],[732,2,2,161,163],[733,1,1,163,164],[736,1,1,164,165],[738,1,1,165,166],[740,2,2,166,168],[743,1,1,168,169]]],[23,25,23,169,192,[[745,1,1,169,170],[746,3,3,170,173],[748,1,1,173,174],[749,2,2,174,176],[753,3,3,176,179],[756,1,1,179,180],[758,1,1,180,181],[760,2,1,181,182],[761,3,2,182,184],[762,1,1,184,185],[763,1,1,185,186],[766,1,1,186,187],[769,1,1,187,188],[792,1,1,188,189],[793,2,2,189,191],[795,1,1,191,192]]],[24,1,1,192,193,[[801,1,1,192,193]]],[25,7,7,193,200,[[809,1,1,193,194],[810,1,1,194,195],[821,1,1,195,196],[824,2,2,196,198],[825,1,1,198,199],[837,1,1,199,200]]],[26,1,1,200,201,[[860,1,1,200,201]]],[27,1,1,201,202,[[865,1,1,201,202]]],[31,1,1,202,203,[[890,1,1,202,203]]],[35,1,1,203,204,[[907,1,1,203,204]]],[37,1,1,204,205,[[921,1,1,204,205]]],[38,1,1,205,206,[[928,1,1,205,206]]]],[54,618,788,1155,1161,1162,1164,1167,1346,1514,1574,1763,2149,3291,3424,3567,4019,5259,5317,5631,5704,5734,5736,5744,5745,5794,5856,6019,6429,6492,6496,6557,6558,6566,6817,6821,6824,7143,7160,7165,7169,7377,7470,7991,8016,8153,8405,8909,9042,9060,9141,9159,9164,9228,9359,9397,9401,9407,9472,9553,9555,9557,9633,9714,9733,9764,9922,9999,10141,10162,10666,10786,10857,11152,11163,11343,11346,11403,11408,11428,11438,11442,11463,11464,11492,11634,11695,11697,11701,11702,11770,11778,11797,11906,11958,12223,12246,12247,12335,12361,12392,12528,12530,12539,12542,12588,12682,12992,13078,13087,13280,13339,13345,13845,13848,14031,14055,14102,14205,14294,14295,14458,14475,14478,14483,14500,14511,14537,14658,14985,14987,14994,15356,15445,15906,15951,15985,16446,16450,16458,16492,16496,16644,16673,16817,17179,17200,17209,17658,17682,17798,17853,17864,17985,17992,18003,18161,18273,18468,18496,18650,18729,18730,18747,18788,18836,18858,18866,18908,18962,18978,18982,18984,19056,19065,19077,19177,19188,19194,19256,19298,19347,19368,19370,19398,19411,19463,19572,20108,20138,20152,20221,20462,20616,20631,20903,21015,21036,21077,21363,22066,22143,22556,22809,23045,23139]]],["+",[57,54,[[0,4,3,0,3,[[1,1,1,0,1],[23,1,1,1,2],[43,2,1,2,3]]],[1,5,3,3,6,[[51,1,1,3,4],[58,1,1,4,5],[72,3,1,5,6]]],[4,2,2,6,8,[[164,1,1,6,7],[181,1,1,7,8]]],[5,4,4,8,12,[[194,1,1,8,9],[208,1,1,9,10],[210,2,2,10,12]]],[6,4,4,12,16,[[212,2,2,12,14],[220,2,2,14,16]]],[8,2,2,16,18,[[247,1,1,16,17],[266,1,1,17,18]]],[9,2,2,18,20,[[271,1,1,18,19],[281,1,1,19,20]]],[10,6,6,20,26,[[296,1,1,20,21],[299,1,1,21,22],[302,2,2,22,24],[308,1,1,24,25],[309,1,1,25,26]]],[11,4,4,26,30,[[319,1,1,26,27],[320,1,1,27,28],[329,1,1,28,29],[333,1,1,29,30]]],[12,1,1,30,31,[[351,1,1,30,31]]],[13,11,11,31,42,[[373,1,1,31,32],[376,2,2,32,34],[377,1,1,34,35],[378,1,1,35,36],[387,1,1,36,37],[390,3,3,37,40],[394,2,2,40,42]]],[15,2,2,42,44,[[417,1,1,42,43],[422,1,1,43,44]]],[22,1,1,44,45,[[679,1,1,44,45]]],[23,7,7,45,52,[[746,2,2,45,47],[753,2,2,47,49],[756,1,1,49,50],[761,1,1,50,51],[766,1,1,51,52]]],[25,2,2,52,54,[[809,1,1,52,53],[810,1,1,53,54]]]],[54,618,1346,1574,1763,2149,5259,5704,6019,6429,6492,6496,6557,6558,6817,6821,7470,8016,8153,8405,8909,9060,9159,9164,9359,9407,9714,9733,9999,10141,10786,11346,11403,11408,11428,11438,11634,11695,11697,11701,11770,11778,12392,12588,17658,18982,18984,19177,19188,19256,19370,19463,20616,20631]]],["Forsake",[3,3,[[18,1,1,0,1,[[515,1,1,0,1]]],[19,2,2,1,3,[[631,1,1,1,2],[636,1,1,2,3]]]],[14511,16496,16644]]],["Forsaken",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18858]]],["Leave",[2,2,[[3,1,1,0,1,[[126,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]]],[4019,20138]]],["committeth",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14055]]],["faileth",[2,2,[[18,2,2,0,2,[[515,1,1,0,1],[517,1,1,1,2]]]],[14500,14537]]],["forsake",[38,37,[[4,5,5,0,5,[[166,1,1,0,1],[183,4,4,1,5]]],[5,1,1,5,6,[[187,1,1,5,6]]],[12,2,2,6,8,[[365,2,2,6,8]]],[13,3,2,8,10,[[373,1,1,8,9],[381,2,1,9,10]]],[14,1,1,10,11,[[410,1,1,10,11]]],[15,1,1,11,12,[[421,1,1,11,12]]],[17,1,1,12,13,[[455,1,1,12,13]]],[18,9,9,13,22,[[504,2,2,13,15],[514,1,1,15,16],[548,2,2,16,18],[566,1,1,18,19],[571,1,1,19,20],[596,2,2,20,22]]],[19,4,4,22,26,[[630,1,1,22,23],[631,1,1,23,24],[654,1,1,24,25],[655,1,1,25,26]]],[22,5,5,26,31,[[679,1,1,26,27],[719,1,1,27,28],[720,1,1,28,29],[733,1,1,29,30],[743,1,1,30,31]]],[23,2,2,31,33,[[761,1,1,31,32],[795,1,1,32,33]]],[24,1,1,33,34,[[801,1,1,33,34]]],[25,1,1,34,35,[[821,1,1,34,35]]],[26,1,1,35,36,[[860,1,1,35,36]]],[31,1,1,36,37,[[890,1,1,36,37]]]],[5317,5734,5736,5744,5745,5856,11152,11163,11343,11492,12223,12542,13339,14294,14295,14458,14985,14994,15356,15445,15906,15951,16458,16492,17179,17200,17682,18468,18496,18747,18908,19370,20221,20462,20903,22066,22556]]],["forsaken",[42,41,[[4,1,1,0,1,[[180,1,1,0,1]]],[6,1,1,1,2,[[220,1,1,1,2]]],[8,1,1,2,3,[[243,1,1,2,3]]],[10,3,3,3,6,[[301,1,1,3,4],[309,2,2,4,6]]],[11,1,1,6,7,[[334,1,1,6,7]]],[13,6,6,7,13,[[378,1,1,7,8],[379,2,2,8,10],[390,1,1,10,11],[395,1,1,11,12],[400,1,1,12,13]]],[14,2,2,13,15,[[411,2,2,13,15]]],[15,1,1,15,16,[[425,1,1,15,16]]],[17,2,2,16,18,[[453,1,1,16,17],[455,1,1,17,18]]],[18,4,4,18,22,[[486,1,1,18,19],[499,1,1,19,20],[514,1,1,20,21],[548,1,1,21,22]]],[22,8,8,22,30,[[685,1,1,22,23],[695,2,2,23,25],[727,1,1,25,26],[732,2,2,26,28],[738,1,1,28,29],[740,1,1,29,30]]],[23,10,9,30,39,[[745,1,1,30,31],[746,1,1,31,32],[748,1,1,32,33],[749,2,2,33,35],[753,1,1,35,36],[760,2,1,36,37],[763,1,1,37,38],[769,1,1,38,39]]],[25,1,1,39,40,[[837,1,1,39,40]]],[35,1,1,40,41,[[907,1,1,40,41]]]],[5631,6824,7377,9141,9397,9401,10162,11442,11463,11464,11697,11797,11958,12246,12247,12682,13280,13345,14031,14205,14475,14987,17798,17985,17992,18650,18729,18730,18836,18866,18962,18978,19056,19065,19077,19194,19347,19411,19572,21363,22809]]],["forsaketh",[5,5,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,1,1,1,2,[[514,1,1,1,2]]],[19,3,3,2,5,[[629,1,1,2,3],[642,1,1,3,4],[655,1,1,4,5]]]],[12992,14478,16450,16817,17209]]],["forsook",[4,4,[[12,1,1,0,1,[[347,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[22,1,1,2,3,[[736,1,1,2,3]]],[23,1,1,3,4,[[758,1,1,3,4]]]],[10666,15985,18788,19298]]],["forsookest",[2,2,[[15,2,2,0,2,[[421,2,2,0,2]]]],[12528,12530]]],["fortified",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12335]]],["fortify",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12361]]],["leave",[22,22,[[0,1,1,0,1,[[27,1,1,0,1]]],[2,2,2,1,3,[[108,1,1,1,2],[112,1,1,2,3]]],[7,2,2,3,5,[[232,1,1,3,4],[233,1,1,4,5]]],[10,1,1,5,6,[[298,1,1,5,6]]],[11,4,4,6,10,[[314,3,3,6,9],[316,1,1,9,10]]],[17,2,2,10,12,[[445,1,1,10,11],[474,1,1,11,12]]],[18,3,3,12,15,[[493,1,1,12,13],[514,1,1,13,14],[526,1,1,14,15]]],[19,1,1,15,16,[[629,1,1,15,16]]],[22,1,1,16,17,[[688,1,1,16,17]]],[23,3,3,17,20,[[761,1,1,17,18],[762,1,1,18,19],[792,1,1,19,20]]],[25,1,1,20,21,[[824,1,1,20,21]]],[38,1,1,21,22,[[928,1,1,21,22]]]],[788,3291,3424,7143,7165,9042,9553,9555,9557,9633,13087,13845,14102,14483,14658,16446,17853,19368,19398,20108,21036,23139]]],["leaveth",[2,2,[[17,1,1,0,1,[[474,1,1,0,1]]],[37,1,1,1,2,[[921,1,1,1,2]]]],[13848,23045]]],["left",[27,27,[[0,6,6,0,6,[[38,5,5,0,5],[49,1,1,5,6]]],[2,1,1,6,7,[[115,1,1,6,7]]],[4,1,1,7,8,[[184,1,1,7,8]]],[6,1,1,8,9,[[212,1,1,8,9]]],[7,1,1,9,10,[[233,1,1,9,10]]],[8,1,1,10,11,[[265,1,1,10,11]]],[10,2,2,11,13,[[304,1,1,11,12],[311,1,1,12,13]]],[11,2,2,13,15,[[321,1,1,13,14],[326,1,1,14,15]]],[12,1,1,15,16,[[353,1,1,15,16]]],[13,3,3,16,19,[[378,1,1,16,17],[390,1,1,17,18],[398,1,1,18,19]]],[22,5,5,19,24,[[688,1,1,19,20],[695,1,1,20,21],[696,1,1,21,22],[705,1,1,22,23],[710,1,1,23,24]]],[23,1,1,24,25,[[793,1,1,24,25]]],[25,2,2,25,27,[[824,1,1,25,26],[825,1,1,26,27]]]],[1155,1161,1162,1164,1167,1514,3567,5794,6566,7160,7991,9228,9472,9764,9922,10857,11442,11702,11906,17864,17992,18003,18161,18273,20152,21015,21077]]],["leftest",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12539]]],["off",[3,3,[[7,1,1,0,1,[[233,1,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]],[27,1,1,2,3,[[865,1,1,2,3]]]],[7169,13078,22143]]],["refuseth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16673]]]]},{"k":"H5801","v":[["*",[7,7,[[25,7,7,0,7,[[828,7,7,0,7]]]],[21133,21135,21137,21140,21143,21148,21154]]],["fairs",[6,6,[[25,6,6,0,6,[[828,6,6,0,6]]]],[21133,21135,21137,21140,21143,21148]]],["wares",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21154]]]]},{"k":"H5802","v":[["Azbuk",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12343]]]]},{"k":"H5803","v":[["Azgad",[4,4,[[14,2,2,0,2,[[404,1,1,0,1],[410,1,1,1,2]]],[15,2,2,2,4,[[419,1,1,2,3],[422,1,1,3,4]]]],[12039,12213,12437,12564]]]]},{"k":"H5804","v":[["*",[21,20,[[0,1,1,0,1,[[9,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]],[5,3,3,2,5,[[196,1,1,2,3],[197,1,1,3,4],[201,1,1,4,5]]],[6,4,4,5,9,[[211,1,1,5,6],[216,1,1,6,7],[226,2,2,7,9]]],[8,1,1,9,10,[[241,1,1,9,10]]],[10,1,1,10,11,[[294,1,1,10,11]]],[11,1,1,11,12,[[330,1,1,11,12]]],[12,1,1,12,13,[[344,1,1,12,13]]],[23,3,3,13,16,[[769,1,1,13,14],[791,2,2,14,16]]],[29,2,2,16,18,[[879,2,2,16,18]]],[35,1,1,18,19,[[907,1,1,18,19]]],[37,2,1,19,20,[[919,2,1,19,20]]]],[253,4961,6105,6129,6249,6527,6658,6950,6970,7348,8868,10032,10563,19554,20074,20078,22370,22371,22809,23004]]],["+",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23004]]],["Azzah",[3,3,[[4,1,1,0,1,[[154,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]],[23,1,1,2,3,[[769,1,1,2,3]]]],[4961,8868,19554]]],["Gaza",[17,17,[[0,1,1,0,1,[[9,1,1,0,1]]],[5,3,3,1,4,[[196,1,1,1,2],[197,1,1,2,3],[201,1,1,3,4]]],[6,4,4,4,8,[[211,1,1,4,5],[216,1,1,5,6],[226,2,2,6,8]]],[8,1,1,8,9,[[241,1,1,8,9]]],[11,1,1,9,10,[[330,1,1,9,10]]],[12,1,1,10,11,[[344,1,1,10,11]]],[23,2,2,11,13,[[791,2,2,11,13]]],[29,2,2,13,15,[[879,2,2,13,15]]],[35,1,1,15,16,[[907,1,1,15,16]]],[37,1,1,16,17,[[919,1,1,16,17]]]],[253,6105,6129,6249,6527,6658,6950,6970,7348,10032,10563,20074,20078,22370,22371,22809,23004]]]]},{"k":"H5805","v":[["forsaking",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17781]]]]},{"k":"H5806","v":[["Azubah",[4,4,[[10,1,1,0,1,[[312,1,1,0,1]]],[12,2,2,1,3,[[339,2,2,1,3]]],[13,1,1,3,4,[[386,1,1,3,4]]]],[9522,10324,10325,11618]]]]},{"k":"H5807","v":[["*",[3,3,[[18,2,2,0,2,[[555,1,1,0,1],[622,1,1,1,2]]],[22,1,1,2,3,[[720,1,1,2,3]]]],[15117,16326,18505]]],["might",[1,1,[[18,1,1,0,1,[[622,1,1,0,1]]]],[16326]]],["strength",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]]],[15117,18505]]]]},{"k":"H5808","v":[["*",[2,2,[[18,1,1,0,1,[[501,1,1,0,1]]],[22,1,1,1,2,[[721,1,1,1,2]]]],[14249,18522]]],["power",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18522]]],["strong",[1,1,[[18,1,1,0,1,[[501,1,1,0,1]]]],[14249]]]]},{"k":"H5809","v":[["*",[3,3,[[15,1,1,0,1,[[422,1,1,0,1]]],[23,1,1,1,2,[[772,1,1,1,2]]],[25,1,1,2,3,[[812,1,1,2,3]]]],[12566,19619,20656]]],["Azur",[2,2,[[23,1,1,0,1,[[772,1,1,0,1]]],[25,1,1,1,2,[[812,1,1,1,2]]]],[19619,20656]]],["Azzur",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12566]]]]},{"k":"H5810","v":[["*",[12,12,[[6,2,2,0,2,[[213,1,1,0,1],[216,1,1,1,2]]],[18,4,4,2,6,[[486,1,1,2,3],[529,1,1,3,4],[545,1,1,4,5],[566,1,1,5,6]]],[19,3,3,6,9,[[634,1,1,6,7],[635,1,1,7,8],[648,1,1,8,9]]],[20,1,1,9,10,[[665,1,1,9,10]]],[22,1,1,10,11,[[708,1,1,10,11]]],[26,1,1,11,12,[[860,1,1,11,12]]]],[6578,6656,14040,14717,14928,15339,16588,16630,17013,17448,18219,22048]]],["hardeneth",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17013]]],["impudent",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16588]]],["prevail",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14040]]],["prevailed",[2,2,[[6,2,2,0,2,[[213,1,1,0,1],[216,1,1,1,2]]]],[6578,6656]]],["strengthen",[2,2,[[18,1,1,0,1,[[545,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]]],[14928,18219]]],["strengthened",[3,3,[[18,1,1,0,1,[[529,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[14717,16630,22048]]],["strengtheneth",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17448]]],["strong",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15339]]]]},{"k":"H5811","v":[["Azaz",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10436]]]]},{"k":"H5812","v":[["Azaziah",[3,3,[[12,2,2,0,2,[[352,1,1,0,1],[364,1,1,1,2]]],[13,1,1,2,3,[[397,1,1,2,3]]]],[10812,11129,11867]]]]},{"k":"H5813","v":[["Uzzi",[11,11,[[12,7,7,0,7,[[343,3,3,0,3],[344,3,3,3,6],[346,1,1,6,7]]],[14,1,1,7,8,[[409,1,1,7,8]]],[15,3,3,8,11,[[423,1,1,8,9],[424,2,2,9,11]]]],[10459,10460,10505,10537,10538,10542,10623,12177,12610,12643,12666]]]]},{"k":"H5814","v":[["Uzzia",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10717]]]]},{"k":"H5815","v":[["Aziel",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10811]]]]},{"k":"H5816","v":[["Uzziel",[16,16,[[1,2,2,0,2,[[55,2,2,0,2]]],[2,1,1,2,3,[[99,1,1,2,3]]],[3,2,2,3,5,[[119,2,2,3,5]]],[12,9,9,5,14,[[341,1,1,5,6],[343,2,2,6,8],[344,1,1,8,9],[352,1,1,9,10],[360,2,2,10,12],[361,1,1,12,13],[362,1,1,13,14]]],[13,1,1,14,15,[[395,1,1,14,15]]],[15,1,1,15,16,[[415,1,1,15,16]]]],[1673,1677,2981,3711,3722,10427,10456,10472,10542,10801,10995,11003,11039,11050,11805,12335]]]]},{"k":"H5817","v":[["Uzzielites",[2,2,[[3,1,1,0,1,[[119,1,1,0,1]]],[12,1,1,1,2,[[363,1,1,1,2]]]],[3719,11100]]]]},{"k":"H5818","v":[["Uzziah",[27,26,[[11,4,4,0,4,[[327,4,4,0,4]]],[12,2,2,4,6,[[343,1,1,4,5],[364,1,1,5,6]]],[13,13,12,6,18,[[392,12,11,6,17],[393,1,1,17,18]]],[14,1,1,18,19,[[412,1,1,18,19]]],[15,1,1,19,20,[[423,1,1,19,20]]],[22,3,3,20,23,[[679,1,1,20,21],[684,1,1,21,22],[685,1,1,22,23]]],[27,1,1,23,24,[[862,1,1,23,24]]],[29,1,1,24,25,[[879,1,1,24,25]]],[37,1,1,25,26,[[924,1,1,25,26]]]],[9938,9955,9957,9959,10478,11134,11733,11735,11740,11741,11743,11746,11750,11751,11753,11754,11755,11757,12273,12592,17655,17770,17783,22095,22365,23073]]]]},{"k":"H5819","v":[["Aziza",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12279]]]]},{"k":"H5820","v":[["Azmaveth",[8,8,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,5,5,1,6,[[345,1,1,1,2],[346,1,1,2,3],[348,1,1,3,4],[349,1,1,4,5],[364,1,1,5,6]]],[14,1,1,6,7,[[404,1,1,6,7]]],[15,1,1,7,8,[[424,1,1,7,8]]]],[8684,10611,10657,10706,10723,11134,12051,12653]]]]},{"k":"H5821","v":[["Azzan",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4842]]]]},{"k":"H5822","v":[["ospray",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3010,5302]]]]},{"k":"H5823","v":[["fenced",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17741]]]]},{"k":"H5824","v":[["signet",[2,1,[[26,2,1,0,1,[[855,2,1,0,1]]]],[21922]]]]},{"k":"H5825","v":[["Azekah",[7,7,[[5,3,3,0,3,[[196,2,2,0,2],[201,1,1,2,3]]],[8,1,1,3,4,[[252,1,1,3,4]]],[13,1,1,4,5,[[377,1,1,4,5]]],[15,1,1,5,6,[[423,1,1,5,6]]],[23,1,1,6,7,[[778,1,1,6,7]]]],[6074,6075,6237,7619,11423,12618,19808]]]]},{"k":"H5826","v":[["*",[81,77,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[5,4,4,2,6,[[187,1,1,2,3],[196,3,3,3,6]]],[8,1,1,6,7,[[242,1,1,6,7]]],[9,3,3,7,10,[[274,1,1,7,8],[284,1,1,8,9],[287,1,1,9,10]]],[10,2,2,10,12,[[291,1,1,10,11],[310,1,1,11,12]]],[11,1,1,12,13,[[326,1,1,12,13]]],[12,11,10,13,23,[[342,1,1,13,14],[349,7,6,14,20],[352,1,1,20,21],[355,1,1,21,22],[359,1,1,22,23]]],[13,14,12,23,35,[[380,2,1,23,24],[384,1,1,24,25],[385,1,1,25,26],[386,1,1,26,27],[391,1,1,27,28],[392,3,3,28,31],[394,3,2,31,33],[398,2,2,33,35]]],[14,2,2,35,37,[[410,1,1,35,36],[412,1,1,36,37]]],[17,4,4,37,41,[[444,1,1,37,38],[461,1,1,38,39],[464,1,1,39,40],[465,1,1,40,41]]],[18,17,17,41,58,[[487,1,1,41,42],[499,1,1,42,43],[505,1,1,43,44],[507,1,1,44,45],[514,1,1,45,46],[523,1,1,46,47],[531,1,1,47,48],[549,1,1,48,49],[556,1,1,49,50],[563,1,1,50,51],[584,1,1,51,52],[586,1,1,52,53],[595,2,2,53,55],[596,3,3,55,58]]],[22,12,11,58,69,[[708,1,1,58,59],[709,2,1,59,60],[719,4,4,60,64],[722,1,1,64,65],[727,1,1,65,66],[728,2,2,66,68],[741,1,1,68,69]]],[23,1,1,69,70,[[791,1,1,69,70]]],[24,1,1,70,71,[[797,1,1,70,71]]],[25,2,2,71,73,[[831,1,1,71,72],[833,1,1,72,73]]],[26,3,3,73,76,[[859,1,1,73,74],[860,2,2,74,76]]],[37,1,1,76,77,[[911,1,1,76,77]]]],[1498,5796,5865,6068,6070,6097,7364,8214,8481,8597,8724,9424,9922,10448,10721,10737,10738,10739,10741,10742,10817,10895,10981,11486,11573,11578,11610,11712,11739,11745,11747,11780,11787,11878,11883,12223,12267,13064,13469,13544,13570,14055,14215,14306,14329,14490,14619,14729,15012,15194,15301,15711,15781,15876,15882,15984,16071,16073,18224,18253,18457,18461,18464,18465,18535,18644,18669,18671,18871,20077,20317,21212,21269,22028,22070,22081,22893]]],["+",[3,3,[[5,1,1,0,1,[[196,1,1,0,1]]],[12,2,2,1,3,[[349,1,1,1,2],[352,1,1,2,3]]]],[6097,10741,10817]]],["Help",[2,2,[[18,2,2,0,2,[[556,1,1,0,1],[586,1,1,1,2]]]],[15194,15781]]],["help",[41,39,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[5,3,3,2,5,[[187,1,1,2,3],[196,2,2,3,5]]],[12,4,4,5,9,[[349,2,2,5,7],[355,1,1,7,8],[359,1,1,8,9]]],[13,10,8,9,17,[[380,2,1,9,10],[385,1,1,10,11],[391,1,1,11,12],[392,1,1,12,13],[394,3,2,13,15],[398,2,2,15,17]]],[14,1,1,17,18,[[410,1,1,17,18]]],[17,1,1,18,19,[[464,1,1,18,19]]],[18,8,8,19,27,[[499,1,1,19,20],[514,1,1,20,21],[523,1,1,21,22],[584,1,1,22,23],[595,1,1,23,24],[596,3,3,24,27]]],[22,8,8,27,35,[[708,1,1,27,28],[719,3,3,28,31],[722,1,1,31,32],[728,2,2,32,34],[741,1,1,34,35]]],[24,1,1,35,36,[[797,1,1,35,36]]],[25,1,1,36,37,[[833,1,1,36,37]]],[26,2,2,37,39,[[859,1,1,37,38],[860,1,1,38,39]]]],[1498,5796,5865,6068,6070,10737,10742,10895,10981,11486,11578,11712,11745,11780,11787,11878,11883,12223,13544,14215,14490,14619,15711,15876,15984,16071,16073,18224,18461,18464,18465,18535,18669,18671,18871,20317,21269,22028,22081]]],["helped",[16,16,[[8,1,1,0,1,[[242,1,1,0,1]]],[10,2,2,1,3,[[291,1,1,1,2],[310,1,1,2,3]]],[12,2,2,3,5,[[342,1,1,3,4],[349,1,1,4,5]]],[13,4,4,5,9,[[384,1,1,5,6],[386,1,1,6,7],[392,2,2,7,9]]],[14,1,1,9,10,[[412,1,1,9,10]]],[17,1,1,10,11,[[461,1,1,10,11]]],[18,2,2,11,13,[[505,1,1,11,12],[595,1,1,12,13]]],[22,2,2,13,15,[[719,1,1,13,14],[727,1,1,14,15]]],[37,1,1,15,16,[[911,1,1,15,16]]]],[7364,8724,9424,10448,10739,11573,11610,11739,11747,12267,13469,14306,15882,18457,18644,22893]]],["helper",[7,7,[[11,1,1,0,1,[[326,1,1,0,1]]],[17,1,1,1,2,[[465,1,1,1,2]]],[18,4,4,2,6,[[487,1,1,2,3],[507,1,1,3,4],[531,1,1,4,5],[549,1,1,5,6]]],[23,1,1,6,7,[[791,1,1,6,7]]]],[9922,13570,14055,14329,14729,15012,20077]]],["helpers",[4,4,[[12,2,2,0,2,[[349,2,2,0,2]]],[17,1,1,2,3,[[444,1,1,2,3]]],[25,1,1,3,4,[[831,1,1,3,4]]]],[10721,10738,13064,21212]]],["helpeth",[2,2,[[12,1,1,0,1,[[349,1,1,0,1]]],[22,1,1,1,2,[[709,1,1,1,2]]]],[10738,18253]]],["holpen",[3,3,[[18,1,1,0,1,[[563,1,1,0,1]]],[22,1,1,1,2,[[709,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[15301,18253,22070]]],["succour",[2,2,[[9,2,2,0,2,[[274,1,1,0,1],[284,1,1,1,2]]]],[8214,8481]]],["succoured",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8597]]]]},{"k":"H5827","v":[["Ezer",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10556]]]]},{"k":"H5828","v":[["help",[21,21,[[0,2,2,0,2,[[1,2,2,0,2]]],[1,1,1,2,3,[[67,1,1,2,3]]],[4,3,3,3,6,[[185,3,3,3,6]]],[18,11,11,6,17,[[497,1,1,6,7],[510,1,1,7,8],[547,1,1,8,9],[566,1,1,9,10],[592,3,3,10,13],[598,2,2,13,15],[601,1,1,15,16],[623,1,1,16,17]]],[22,1,1,17,18,[[708,1,1,17,18]]],[25,1,1,18,19,[[813,1,1,18,19]]],[26,1,1,19,20,[[860,1,1,19,20]]],[27,1,1,20,21,[[874,1,1,20,21]]]],[48,50,2003,5817,5836,5839,14184,14386,14976,15345,15839,15840,15841,16082,16083,16110,16346,18222,20694,22070,22275]]]]},{"k":"H5829","v":[["Ezer",[4,4,[[12,2,2,0,2,[[341,1,1,0,1],[349,1,1,1,2]]],[15,2,2,2,4,[[415,1,1,2,3],[424,1,1,3,4]]]],[10389,10729,12346,12666]]]]},{"k":"H5830","v":[["Ezra",[22,22,[[14,10,10,0,10,[[409,4,4,0,4],[412,6,6,4,10]]],[15,12,12,10,22,[[420,7,7,10,17],[424,5,5,17,22]]]],[12174,12179,12183,12184,12253,12254,12257,12258,12262,12268,12494,12495,12497,12498,12499,12502,12506,12625,12637,12650,12657,12660]]]]},{"k":"H5831","v":[["Ezra",[3,3,[[14,3,3,0,3,[[409,3,3,0,3]]]],[12185,12194,12198]]]]},{"k":"H5832","v":[["*",[6,6,[[12,3,3,0,3,[[349,1,1,0,1],[362,1,1,1,2],[364,1,1,2,3]]],[14,1,1,3,4,[[412,1,1,3,4]]],[15,2,2,4,6,[[423,1,1,4,5],[424,1,1,5,6]]]],[10726,11064,11131,12293,12601,12660]]],["Azarael",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12660]]],["Azareel",[5,5,[[12,3,3,0,3,[[349,1,1,0,1],[362,1,1,1,2],[364,1,1,2,3]]],[14,1,1,3,4,[[412,1,1,3,4]]],[15,1,1,4,5,[[423,1,1,4,5]]]],[10726,11064,11131,12293,12601]]]]},{"k":"H5833","v":[["*",[26,25,[[6,2,1,0,1,[[215,2,1,0,1]]],[13,1,1,1,2,[[394,1,1,1,2]]],[17,2,2,2,4,[[441,1,1,2,3],[466,1,1,3,4]]],[18,14,14,4,18,[[499,1,1,4,5],[504,1,1,5,6],[512,1,1,6,7],[515,1,1,7,8],[517,2,2,8,10],[521,1,1,10,11],[523,1,1,11,12],[537,1,1,12,13],[540,1,1,13,14],[547,1,1,14,15],[548,1,1,15,16],[571,1,1,16,17],[585,1,1,17,18]]],[22,4,4,18,22,[[688,1,1,18,19],[698,1,1,19,20],[709,2,2,20,22]]],[23,1,1,22,23,[[781,1,1,22,23]]],[24,1,1,23,24,[[800,1,1,23,24]]],[33,1,1,24,25,[[902,1,1,24,25]]]],[6646,11785,12991,13609,14223,14294,14412,14512,14538,14542,14597,14615,14818,14846,14972,14988,15448,15754,17853,18035,18251,18252,19881,20437,22721]]],["help",[24,23,[[6,2,1,0,1,[[215,2,1,0,1]]],[17,2,2,1,3,[[441,1,1,1,2],[466,1,1,2,3]]],[18,14,14,3,17,[[499,1,1,3,4],[504,1,1,4,5],[512,1,1,5,6],[515,1,1,6,7],[517,2,2,7,9],[521,1,1,9,10],[523,1,1,10,11],[537,1,1,11,12],[540,1,1,12,13],[547,1,1,13,14],[548,1,1,14,15],[571,1,1,15,16],[585,1,1,16,17]]],[22,4,4,17,21,[[688,1,1,17,18],[698,1,1,18,19],[709,2,2,19,21]]],[23,1,1,21,22,[[781,1,1,21,22]]],[24,1,1,22,23,[[800,1,1,22,23]]]],[6646,12991,13609,14223,14294,14412,14512,14538,14542,14597,14615,14818,14846,14972,14988,15448,15754,17853,18035,18251,18252,19881,20437]]],["helped",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11785]]],["helpers",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22721]]]]},{"k":"H5834","v":[["Ezra",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10402]]]]},{"k":"H5835","v":[["*",[9,6,[[13,3,2,0,2,[[370,2,1,0,1],[372,1,1,1,2]]],[25,6,4,2,6,[[844,5,3,2,5],[846,1,1,5,6]]]],[11255,11295,21586,21589,21592,21649]]],["+",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21586]]],["court",[3,2,[[13,3,2,0,2,[[370,2,1,0,1],[372,1,1,1,2]]]],[11255,11295]]],["settle",[5,4,[[25,5,4,0,4,[[844,4,3,0,3],[846,1,1,3,4]]]],[21586,21589,21592,21649]]]]},{"k":"H5836","v":[["Ezri",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11135]]]]},{"k":"H5837","v":[["Azriel",[3,3,[[12,2,2,0,2,[[342,1,1,0,1],[364,1,1,1,2]]],[23,1,1,2,3,[[780,1,1,2,3]]]],[10452,11128,19868]]]]},{"k":"H5838","v":[["Azariah",[48,44,[[10,2,2,0,2,[[294,2,2,0,2]]],[11,8,8,2,10,[[326,1,1,2,3],[327,7,7,3,10]]],[12,12,11,10,21,[[339,3,3,10,13],[340,1,1,13,14],[343,7,6,14,20],[346,1,1,20,21]]],[13,13,10,21,31,[[381,1,1,21,22],[387,2,1,22,23],[388,1,1,23,24],[389,2,1,24,25],[392,2,2,25,27],[394,1,1,27,28],[395,2,1,28,29],[397,2,2,29,31]]],[14,2,2,31,33,[[409,2,2,31,33]]],[15,6,6,33,39,[[415,2,2,33,35],[419,1,1,35,36],[420,1,1,36,37],[422,1,1,37,38],[424,1,1,38,39]]],[23,1,1,39,40,[[787,1,1,39,40]]],[26,4,4,40,44,[[850,4,4,40,44]]]],[8846,8849,9917,9926,9931,9932,9933,9942,9948,9952,10314,10344,10345,10373,10463,10464,10465,10467,10468,10490,10626,11491,11626,11650,11657,11749,11752,11776,11803,11864,11867,12174,12176,12350,12351,12427,12500,12551,12657,19999,21743,21744,21748,21756]]]]},{"k":"H5839","v":[["Azariah",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21775]]]]},{"k":"H5840","v":[["Azrikam",[6,6,[[12,4,4,0,4,[[340,1,1,0,1],[345,1,1,1,2],[346,2,2,2,4]]],[13,1,1,4,5,[[394,1,1,4,5]]],[15,1,1,5,6,[[423,1,1,5,6]]]],[10384,10613,10629,10659,11771,12603]]]]},{"k":"H5841","v":[["*",[2,2,[[5,1,1,0,1,[[199,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]]],[6157,6951]]],["Gazathites",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6157]]],["Gazites",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6951]]]]},{"k":"H5842","v":[["pen",[4,4,[[17,1,1,0,1,[[454,1,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]],[23,2,2,2,4,[[752,1,1,2,3],[761,1,1,3,4]]]],[13321,14598,19161,19358]]]]},{"k":"H5843","v":[["counsel",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21772]]]]},{"k":"H5844","v":[["*",[17,15,[[2,1,1,0,1,[[102,1,1,0,1]]],[8,1,1,1,2,[[263,1,1,1,2]]],[18,6,6,2,8,[[548,1,1,2,3],[561,1,1,3,4],[566,1,1,4,5],[581,1,1,5,6],[586,2,2,6,8]]],[21,1,1,8,9,[[671,1,1,8,9]]],[22,3,2,9,11,[[700,2,1,9,10],[737,1,1,10,11]]],[23,2,1,11,12,[[787,2,1,11,12]]],[25,2,2,12,14,[[825,2,2,12,14]]],[32,1,1,14,15,[[895,1,1,14,15]]]],[3097,7956,14989,15265,15371,15573,15774,15784,17544,18069,18817,20009,21073,21078,22615]]],["+",[6,5,[[18,1,1,0,1,[[566,1,1,0,1]]],[22,2,1,1,2,[[700,2,1,1,2]]],[23,1,1,2,3,[[787,1,1,2,3]]],[25,1,1,3,4,[[825,1,1,3,4]]],[32,1,1,4,5,[[895,1,1,4,5]]]],[15371,18069,20009,21078,22615]]],["aside",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17544]]],["clad",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18817]]],["cover",[2,2,[[18,1,1,0,1,[[586,1,1,0,1]]],[25,1,1,1,2,[[825,1,1,1,2]]]],[15784,21073]]],["covered",[2,2,[[8,1,1,0,1,[[263,1,1,0,1]]],[18,1,1,1,2,[[548,1,1,1,2]]]],[7956,14989]]],["coverest",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15573]]],["covereth",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15774]]],["covering",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3097]]],["filleth",[1,1,[[18,1,1,0,1,[[561,1,1,0,1]]]],[15265]]],["himself",[1,1,[[23,1,1,0,1,[[787,1,1,0,1]]]],[20009]]]]},{"k":"H5845","v":[["breasts",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13379]]]]},{"k":"H5846","v":[["neesings",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13906]]]]},{"k":"H5847","v":[["*",[3,3,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[22,1,1,2,3,[[680,1,1,2,3]]]],[3016,5308,17705]]],["bat",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3016,5308]]],["bats",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17705]]]]},{"k":"H5848","v":[["*",[15,14,[[0,2,1,0,1,[[29,2,1,0,1]]],[17,1,1,1,2,[[458,1,1,1,2]]],[18,7,7,2,9,[[538,1,1,2,3],[542,1,1,3,4],[550,1,1,4,5],[554,1,1,5,6],[584,1,1,6,7],[619,1,1,7,8],[620,1,1,8,9]]],[22,1,1,9,10,[[735,1,1,9,10]]],[24,3,3,10,13,[[798,3,3,10,13]]],[31,1,1,13,14,[[890,1,1,13,14]]]],[872,13428,14821,14873,15026,15096,15704,16289,16297,18781,20343,20344,20351,22555]]],["covereth",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15026]]],["fail",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18781]]],["faint",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20351]]],["fainted",[2,2,[[18,1,1,0,1,[[584,1,1,0,1]]],[31,1,1,1,2,[[890,1,1,1,2]]]],[15704,22555]]],["feeble",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[872]]],["feebler",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[872]]],["hideth",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13428]]],["over",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14873]]],["overwhelmed",[4,4,[[18,4,4,0,4,[[538,1,1,0,1],[554,1,1,1,2],[619,1,1,2,3],[620,1,1,3,4]]]],[14821,15096,16289,16297]]],["swoon",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20343]]],["swooned",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20344]]]]},{"k":"H5849","v":[["*",[7,7,[[8,1,1,0,1,[[258,1,1,0,1]]],[18,4,4,1,5,[[482,1,1,1,2],[485,1,1,2,3],[542,1,1,3,4],[580,1,1,4,5]]],[21,1,1,5,6,[[673,1,1,5,6]]],[22,1,1,6,7,[[701,1,1,6,7]]]],[7836,13985,14017,14871,15553,17582,18085]]],["+",[2,2,[[8,1,1,0,1,[[258,1,1,0,1]]],[21,1,1,1,2,[[673,1,1,1,2]]]],[7836,17582]]],["compass",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13985]]],["crowned",[1,1,[[18,1,1,0,1,[[485,1,1,0,1]]]],[14017]]],["crownest",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14871]]],["crowneth",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15553]]],["crowning",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18085]]]]},{"k":"H5850","v":[["*",[23,23,[[9,1,1,0,1,[[278,1,1,0,1]]],[12,1,1,1,2,[[357,1,1,1,2]]],[16,1,1,2,3,[[433,1,1,2,3]]],[17,2,2,3,5,[[454,1,1,3,4],[466,1,1,4,5]]],[18,1,1,5,6,[[498,1,1,5,6]]],[19,5,5,6,11,[[631,1,1,6,7],[639,1,1,7,8],[641,1,1,8,9],[643,1,1,9,10],[644,1,1,10,11]]],[21,1,1,11,12,[[673,1,1,11,12]]],[22,4,4,12,16,[[706,3,3,12,15],[740,1,1,15,16]]],[23,1,1,16,17,[[757,1,1,16,17]]],[24,1,1,17,18,[[801,1,1,17,18]]],[25,3,3,18,21,[[817,1,1,18,19],[822,1,1,19,20],[824,1,1,20,21]]],[37,2,2,21,23,[[916,2,2,21,23]]]],[8316,10928,12832,13306,13624,14194,16499,16723,16796,16871,16879,17582,18165,18167,18169,18857,19284,20458,20774,20970,21049,22958,22961]]],["crown",[20,20,[[9,1,1,0,1,[[278,1,1,0,1]]],[12,1,1,1,2,[[357,1,1,1,2]]],[16,1,1,2,3,[[433,1,1,2,3]]],[17,2,2,3,5,[[454,1,1,3,4],[466,1,1,4,5]]],[18,1,1,5,6,[[498,1,1,5,6]]],[19,5,5,6,11,[[631,1,1,6,7],[639,1,1,7,8],[641,1,1,8,9],[643,1,1,9,10],[644,1,1,10,11]]],[21,1,1,11,12,[[673,1,1,11,12]]],[22,4,4,12,16,[[706,3,3,12,15],[740,1,1,15,16]]],[23,1,1,16,17,[[757,1,1,16,17]]],[24,1,1,17,18,[[801,1,1,17,18]]],[25,2,2,18,20,[[817,1,1,18,19],[822,1,1,19,20]]]],[8316,10928,12832,13306,13624,14194,16499,16723,16796,16871,16879,17582,18165,18167,18169,18857,19284,20458,20774,20970]]],["crowns",[3,3,[[25,1,1,0,1,[[824,1,1,0,1]]],[37,2,2,1,3,[[916,2,2,1,3]]]],[21049,22958,22961]]]]},{"k":"H5851","v":[["Atarah",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10332]]]]},{"k":"H5852","v":[["*",[5,5,[[3,3,3,0,3,[[148,3,3,0,3]]],[5,2,2,3,5,[[202,2,2,3,5]]]],[4721,4752,4753,6267,6272]]],["Ataroth",[4,4,[[3,2,2,0,2,[[148,2,2,0,2]]],[5,2,2,2,4,[[202,2,2,2,4]]]],[4721,4752,6267,6272]]],["Atroth",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4753]]]]},{"k":"H5853","v":[["*",[2,2,[[5,2,2,0,2,[[202,1,1,0,1],[204,1,1,1,2]]]],[6270,6306]]],["Atarothadar",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6306]]],["Atarothaddar",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6270]]]]},{"k":"H5854","v":[["Joab",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10360]]]]},{"k":"H5855","v":[["Shophan",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4753]]]]},{"k":"H5856","v":[["*",[4,4,[[18,1,1,0,1,[[556,1,1,0,1]]],[23,1,1,1,2,[[770,1,1,1,2]]],[32,2,2,2,4,[[893,1,1,2,3],[895,1,1,3,4]]]],[15186,19590,22585,22620]]],["heap",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22585]]],["heaps",[3,3,[[18,1,1,0,1,[[556,1,1,0,1]]],[23,1,1,1,2,[[770,1,1,1,2]]],[32,1,1,2,3,[[895,1,1,2,3]]]],[15186,19590,22620]]]]},{"k":"H5857","v":[["*",[40,34,[[0,2,2,0,2,[[11,1,1,0,1],[12,1,1,1,2]]],[5,33,27,2,29,[[193,5,4,2,6],[194,23,19,6,25],[195,1,1,25,26],[196,3,2,26,28],[198,1,1,28,29]]],[14,1,1,29,30,[[404,1,1,29,30]]],[15,2,2,30,32,[[419,1,1,30,31],[423,1,1,31,32]]],[22,1,1,32,33,[[688,1,1,32,33]]],[23,1,1,33,34,[[793,1,1,33,34]]]],[306,321,5978,5979,5980,5981,6003,6004,6005,6011,6012,6013,6014,6016,6018,6019,6020,6022,6023,6025,6026,6027,6028,6030,6031,6040,6065,6066,6139,12055,12452,12619,17878,20130]]],["Ai",[36,30,[[5,33,27,0,27,[[193,5,4,0,4],[194,23,19,4,23],[195,1,1,23,24],[196,3,2,24,26],[198,1,1,26,27]]],[14,1,1,27,28,[[404,1,1,27,28]]],[15,1,1,28,29,[[419,1,1,28,29]]],[23,1,1,29,30,[[793,1,1,29,30]]]],[5978,5979,5980,5981,6003,6004,6005,6011,6012,6013,6014,6016,6018,6019,6020,6022,6023,6025,6026,6027,6028,6030,6031,6040,6065,6066,6139,12055,12452,20130]]],["Aiath",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17878]]],["Aija",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12619]]],["Hai",[2,2,[[0,2,2,0,2,[[11,1,1,0,1],[12,1,1,1,2]]]],[306,321]]]]},{"k":"H5858","v":[["Ebal",[8,8,[[0,1,1,0,1,[[35,1,1,0,1]]],[4,3,3,1,4,[[163,1,1,1,2],[179,2,2,2,4]]],[5,2,2,4,6,[[194,2,2,4,6]]],[12,2,2,6,8,[[338,2,2,6,8]]]],[1063,5237,5589,5598,6032,6035,10274,10292]]]]},{"k":"H5859","v":[["Ijon",[3,3,[[10,1,1,0,1,[[305,1,1,0,1]]],[11,1,1,1,2,[[327,1,1,1,2]]],[13,1,1,2,3,[[382,1,1,2,3]]]],[9269,9954,11513]]]]},{"k":"H5860","v":[["*",[2,2,[[8,2,2,0,2,[[250,1,1,0,1],[260,1,1,1,2]]]],[7579,7875]]],["fly",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7579]]],["railed",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7875]]]]},{"k":"H5861","v":[["*",[8,6,[[0,1,1,0,1,[[14,1,1,0,1]]],[17,1,1,1,2,[[463,1,1,1,2]]],[22,3,2,2,4,[[696,2,1,2,3],[724,1,1,3,4]]],[23,2,1,4,5,[[756,2,1,4,5]]],[25,1,1,5,6,[[840,1,1,5,6]]]],[371,13511,18003,18597,19258,21452]]],["bird",[2,2,[[22,1,1,0,1,[[724,1,1,0,1]]],[23,1,1,1,2,[[756,1,1,1,2]]]],[18597,19258]]],["birds",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19258]]],["fowl",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13511]]],["fowls",[3,2,[[0,1,1,0,1,[[14,1,1,0,1]]],[22,2,1,1,2,[[696,2,1,1,2]]]],[371,18003]]],["ravenous",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21452]]]]},{"k":"H5862","v":[["Etam",[5,5,[[6,2,2,0,2,[[225,2,2,0,2]]],[12,2,2,2,4,[[341,2,2,2,4]]],[13,1,1,4,5,[[377,1,1,4,5]]]],[6937,6940,10388,10417,11420]]]]},{"k":"H5863","v":[["Ijeabarim",[2,2,[[3,2,2,0,2,[[137,1,1,0,1],[149,1,1,1,2]]]],[4351,4804]]]]},{"k":"H5864","v":[["*",[2,2,[[3,1,1,0,1,[[149,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]]],[4805,6231]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4805]]],["Iim",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6231]]]]},{"k":"H5865","v":[["ever",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11915]]]]},{"k":"H5866","v":[["Ilai",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10702]]]]},{"k":"H5867","v":[["*",[28,27,[[0,3,3,0,3,[[9,1,1,0,1],[13,2,2,1,3]]],[12,3,3,3,6,[[338,1,1,3,4],[345,1,1,4,5],[363,1,1,5,6]]],[14,5,5,6,11,[[404,2,2,6,8],[410,1,1,8,9],[412,2,2,9,11]]],[15,4,4,11,15,[[419,2,2,11,13],[422,1,1,13,14],[424,1,1,14,15]]],[22,3,3,15,18,[[689,1,1,15,16],[699,1,1,16,17],[700,1,1,17,18]]],[23,8,7,18,25,[[769,1,1,18,19],[793,7,6,19,25]]],[25,1,1,25,26,[[833,1,1,25,26]]],[26,1,1,26,27,[[857,1,1,26,27]]]],[256,337,345,10269,10599,11080,12034,12058,12208,12254,12278,12432,12454,12563,12666,17895,18037,18058,19559,20161,20162,20163,20164,20165,20166,21272,21963]]],["+",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17895]]],["Elam",[27,26,[[0,3,3,0,3,[[9,1,1,0,1],[13,2,2,1,3]]],[12,3,3,3,6,[[338,1,1,3,4],[345,1,1,4,5],[363,1,1,5,6]]],[14,5,5,6,11,[[404,2,2,6,8],[410,1,1,8,9],[412,2,2,9,11]]],[15,4,4,11,15,[[419,2,2,11,13],[422,1,1,13,14],[424,1,1,14,15]]],[22,2,2,15,17,[[699,1,1,15,16],[700,1,1,16,17]]],[23,8,7,17,24,[[769,1,1,17,18],[793,7,6,18,24]]],[25,1,1,24,25,[[833,1,1,24,25]]],[26,1,1,25,26,[[857,1,1,25,26]]]],[256,337,345,10269,10599,11080,12034,12058,12208,12254,12278,12432,12454,12563,12666,18037,18058,19559,20161,20162,20163,20164,20165,20166,21272,21963]]]]},{"k":"H5868","v":[["mighty",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17899]]]]},{"k":"H5869","v":[["*",[883,827,[[0,78,75,0,75,[[2,3,3,0,3],[5,1,1,3,4],[12,2,2,4,6],[15,5,4,6,10],[17,2,2,10,12],[18,3,3,12,15],[19,2,2,15,17],[20,3,3,17,20],[21,2,2,20,22],[22,2,2,22,24],[23,9,9,24,33],[26,2,2,33,35],[27,1,1,35,36],[28,2,2,36,38],[29,2,2,38,40],[30,4,4,40,44],[31,1,1,44,45],[32,5,5,45,50],[33,2,2,50,52],[36,1,1,52,53],[37,2,2,53,55],[38,3,3,55,58],[40,2,1,58,59],[41,1,1,59,60],[42,1,1,60,61],[43,1,1,61,62],[44,5,4,62,66],[45,1,1,66,67],[46,3,3,67,70],[47,2,2,70,72],[48,2,2,72,74],[49,1,1,74,75]]],[1,35,27,75,102,[[52,1,1,75,76],[53,1,1,76,77],[54,2,1,77,78],[56,2,1,78,79],[57,1,1,79,80],[58,1,1,80,81],[59,2,2,81,83],[60,3,1,83,84],[61,1,1,84,85],[62,2,2,85,87],[63,1,1,87,88],[64,2,2,88,90],[66,1,1,90,91],[68,1,1,91,92],[70,6,3,92,95],[73,1,1,95,96],[82,5,4,96,100],[83,1,1,100,101],[89,1,1,101,102]]],[2,16,15,102,117,[[93,1,1,102,103],[99,2,2,103,105],[102,4,4,105,109],[103,1,1,109,110],[109,2,2,110,112],[110,1,1,112,113],[113,2,1,113,114],[114,1,1,114,115],[115,2,2,115,117]]],[3,40,36,117,153,[[121,1,1,117,118],[126,1,1,118,119],[127,6,5,119,124],[129,2,1,124,125],[130,2,1,125,126],[131,2,2,126,128],[132,1,1,128,129],[135,1,1,129,130],[136,3,3,130,133],[138,4,4,133,137],[139,1,1,137,138],[140,6,6,138,144],[141,2,1,144,145],[143,2,2,145,147],[148,2,2,147,149],[149,3,3,149,152],[152,1,1,152,153]]],[4,60,57,153,210,[[153,2,2,153,155],[155,3,2,155,157],[156,6,6,157,163],[158,3,3,163,166],[159,2,2,166,168],[160,1,1,168,169],[161,2,2,169,171],[162,1,1,171,172],[163,3,3,172,175],[164,3,3,175,178],[165,2,2,178,180],[166,1,1,180,181],[167,2,2,181,183],[168,1,1,183,184],[169,1,1,184,185],[171,4,2,185,187],[173,2,2,187,189],[176,1,1,189,190],[177,3,3,190,193],[180,7,7,193,200],[181,3,3,200,203],[183,2,2,203,205],[184,1,1,205,206],[185,1,1,206,207],[186,3,3,207,210]]],[5,11,11,210,221,[[189,1,1,210,211],[190,1,1,211,212],[191,1,1,212,213],[195,1,1,213,214],[196,1,1,214,215],[208,2,2,215,217],[209,1,1,217,218],[210,3,3,218,221]]],[6,19,18,221,239,[[212,1,1,221,222],[213,3,2,222,224],[214,1,1,224,225],[216,3,3,225,228],[220,2,2,228,230],[223,1,1,230,231],[224,2,2,231,233],[226,2,2,233,235],[227,1,1,235,236],[229,2,2,236,238],[231,1,1,238,239]]],[7,4,4,239,243,[[233,4,4,239,243]]],[8,43,40,243,283,[[236,2,2,243,245],[237,1,1,245,246],[238,2,2,246,248],[239,1,1,248,249],[241,1,1,249,250],[243,1,1,250,251],[246,2,2,251,253],[247,3,3,253,256],[249,4,4,256,260],[250,2,2,260,262],[251,3,3,262,265],[253,6,5,265,270],[255,2,2,270,272],[256,1,1,272,273],[259,2,2,273,275],[260,1,1,275,276],[261,3,2,276,278],[262,1,1,278,279],[264,5,4,279,283]]],[9,38,35,283,318,[[269,4,2,283,285],[270,1,1,285,286],[272,2,2,286,288],[273,1,1,288,289],[276,2,2,289,291],[277,2,2,291,293],[278,3,2,293,295],[279,5,5,295,300],[280,1,1,300,301],[281,2,2,301,303],[282,2,2,303,305],[283,1,1,305,306],[284,2,2,306,308],[285,5,5,308,313],[286,1,1,313,314],[288,2,2,314,316],[290,2,2,316,318]]],[10,31,31,318,349,[[291,2,2,318,320],[293,1,1,320,321],[298,2,2,321,323],[299,2,2,323,325],[300,1,1,325,326],[301,4,4,326,330],[304,3,3,330,333],[305,4,4,333,337],[306,4,4,337,341],[310,3,3,341,344],[311,3,3,344,347],[312,2,2,347,349]]],[11,49,45,349,394,[[313,2,2,349,351],[315,2,2,351,353],[316,3,2,353,355],[318,4,2,355,357],[319,2,2,357,359],[320,2,2,359,361],[321,1,1,361,362],[322,2,2,362,364],[324,1,1,364,365],[325,2,2,365,367],[326,2,2,367,369],[327,6,6,369,375],[328,1,1,375,376],[329,2,2,376,378],[330,1,1,378,379],[331,2,2,379,381],[332,1,1,381,382],[333,5,5,382,387],[334,2,2,387,389],[335,2,2,389,391],[336,2,2,391,393],[337,2,1,393,394]]],[12,11,11,394,405,[[339,1,1,394,395],[350,1,1,395,396],[354,1,1,396,397],[356,2,2,397,399],[358,3,3,399,402],[365,1,1,402,403],[366,2,2,403,405]]],[13,30,30,405,435,[[372,2,2,405,407],[373,2,2,407,409],[375,1,1,409,410],[380,1,1,410,411],[382,1,1,411,412],[386,2,2,412,414],[387,1,1,414,415],[388,1,1,415,416],[390,1,1,416,417],[391,1,1,417,418],[392,1,1,418,419],[393,1,1,419,420],[394,1,1,420,421],[395,3,3,421,424],[396,1,1,424,425],[398,2,2,425,427],[399,3,3,427,430],[400,2,2,430,432],[402,3,3,432,435]]],[14,2,2,435,437,[[405,1,1,435,436],[411,1,1,436,437]]],[15,7,7,437,444,[[413,1,1,437,438],[414,2,2,438,440],[415,1,1,440,441],[418,1,1,441,442],[420,1,1,442,443],[424,1,1,443,444]]],[16,13,12,444,456,[[426,2,2,444,446],[427,4,3,446,449],[428,2,2,449,451],[430,2,2,451,453],[432,1,1,453,454],[433,2,2,454,456]]],[17,46,44,456,500,[[437,1,1,456,457],[438,1,1,457,458],[439,1,1,458,459],[442,3,2,459,461],[445,2,2,461,463],[446,2,2,463,465],[448,1,1,465,466],[449,1,1,466,467],[450,2,2,467,469],[451,2,2,469,471],[452,3,3,471,474],[453,1,1,474,475],[454,2,2,475,477],[455,1,1,477,478],[456,2,2,478,480],[457,1,1,480,481],[459,3,2,481,483],[460,1,1,483,484],[462,1,1,484,485],[463,3,3,485,488],[464,2,2,488,490],[466,3,3,490,493],[467,1,1,493,494],[469,1,1,494,495],[471,1,1,495,496],[474,1,1,496,497],[475,1,1,497,498],[476,1,1,498,499],[477,1,1,499,500]]],[18,66,64,500,564,[[482,1,1,500,501],[483,1,1,501,502],[487,1,1,502,503],[488,1,1,503,504],[490,1,1,504,505],[492,1,1,505,506],[494,3,3,506,509],[495,2,2,509,511],[496,1,1,511,512],[502,1,1,512,513],[503,1,1,513,514],[508,2,2,514,516],[509,1,1,516,517],[510,1,1,517,518],[511,1,1,518,519],[512,2,2,519,521],[513,2,2,521,523],[515,1,1,523,524],[527,1,1,524,525],[528,1,1,525,526],[531,1,1,526,527],[543,1,1,527,528],[546,2,2,528,530],[549,1,1,530,531],[550,2,2,531,533],[554,1,1,533,534],[556,1,1,534,535],[565,1,1,535,536],[567,1,1,536,537],[568,1,1,537,538],[569,1,1,538,539],[571,1,1,539,540],[575,1,1,540,541],[578,4,4,541,545],[592,1,1,545,546],[593,2,2,546,548],[595,1,1,548,549],[596,6,6,549,555],[598,1,1,555,556],[600,4,2,556,558],[608,1,1,558,559],[609,1,1,559,560],[612,1,1,560,561],[616,1,1,561,562],[618,1,1,562,563],[622,1,1,563,564]]],[19,48,48,564,612,[[628,1,1,564,565],[630,3,3,565,568],[631,2,2,568,570],[632,1,1,570,571],[633,3,3,571,574],[634,1,1,574,575],[635,1,1,575,576],[637,2,2,576,578],[639,1,1,578,579],[642,2,2,579,581],[643,2,2,581,583],[644,2,2,583,585],[647,3,3,585,588],[648,3,3,588,591],[649,2,2,591,593],[650,6,6,593,599],[651,1,1,599,600],[652,1,1,600,601],[653,3,3,601,604],[654,1,1,604,605],[655,3,3,605,608],[656,1,1,608,609],[657,3,3,609,612]]],[20,9,9,612,621,[[659,1,1,612,613],[660,2,2,613,615],[662,1,1,615,616],[663,1,1,616,617],[664,1,1,617,618],[666,1,1,618,619],[669,2,2,619,621]]],[21,7,7,621,628,[[671,1,1,621,622],[674,2,2,622,624],[675,1,1,624,625],[676,1,1,625,626],[677,1,1,626,627],[678,1,1,627,628]]],[22,45,43,628,671,[[679,2,2,628,630],[680,1,1,630,631],[681,2,2,631,633],[683,2,2,633,635],[684,3,2,635,637],[688,1,1,637,638],[689,1,1,638,639],[691,2,2,639,641],[695,1,1,641,642],[707,2,2,642,644],[708,1,1,644,645],[710,1,1,645,646],[711,3,3,646,649],[713,1,1,649,650],[715,2,2,650,652],[716,2,2,652,654],[718,1,1,654,655],[720,1,1,655,656],[721,2,2,656,658],[722,1,1,658,659],[727,2,2,659,661],[729,1,1,661,662],[730,3,2,662,664],[737,2,2,664,666],[738,1,1,666,667],[742,1,1,667,668],[743,2,2,668,670],[744,1,1,670,671]]],[23,54,45,671,716,[[747,1,1,671,672],[748,1,1,672,673],[749,2,2,673,675],[751,2,2,675,677],[753,2,2,677,679],[757,2,2,679,681],[758,2,2,681,683],[760,3,2,683,685],[762,2,2,685,687],[763,1,1,687,688],[764,1,1,688,689],[766,1,1,689,690],[768,1,1,690,691],[770,1,1,691,692],[771,1,1,692,693],[772,4,3,693,696],[773,1,1,696,697],[775,1,1,697,698],[776,8,5,698,703],[778,3,2,703,705],[783,3,3,705,708],[784,5,2,708,710],[786,1,1,710,711],[787,1,1,711,712],[795,1,1,712,713],[796,3,3,713,716]]],[24,10,9,716,725,[[797,2,1,716,717],[798,3,3,717,720],[799,3,3,720,723],[800,1,1,723,724],[801,1,1,724,725]]],[25,70,64,725,789,[[802,6,6,725,731],[805,1,1,731,732],[806,3,3,732,735],[807,1,1,735,736],[808,2,2,736,738],[809,4,3,738,741],[810,2,2,741,743],[811,4,4,743,747],[813,9,7,747,754],[817,2,2,754,756],[819,3,3,756,759],[821,11,8,759,767],[822,2,2,767,769],[823,2,2,769,771],[824,3,3,771,774],[825,3,3,774,777],[829,2,2,777,779],[834,1,1,779,780],[837,2,2,780,782],[838,1,1,782,783],[839,2,2,783,785],[840,1,1,785,786],[841,1,1,786,787],[844,1,1,787,788],[845,1,1,788,789]]],[26,7,6,789,795,[[857,3,3,789,792],[858,1,1,792,793],[859,3,2,793,795]]],[27,3,3,795,798,[[863,1,1,795,796],[871,1,1,796,797],[874,1,1,797,798]]],[28,1,1,798,799,[[876,1,1,798,799]]],[29,3,3,799,802,[[887,3,3,799,802]]],[31,1,1,802,803,[[890,1,1,802,803]]],[32,2,2,803,805,[[896,1,1,803,804],[899,1,1,804,805]]],[34,1,1,805,806,[[903,1,1,805,806]]],[35,1,1,806,807,[[908,1,1,806,807]]],[36,1,1,807,808,[[910,1,1,807,808]]],[37,19,17,808,825,[[911,1,1,808,809],[912,2,2,809,811],[913,1,1,811,812],[914,1,1,812,813],[915,4,4,813,817],[916,1,1,817,818],[918,2,1,818,819],[919,2,2,819,821],[921,3,2,821,823],[922,1,1,823,824],[924,1,1,824,825]]],[38,2,2,825,827,[[925,1,1,825,826],[926,1,1,826,827]]]],[60,61,62,145,328,332,385,386,387,388,426,427,465,471,476,510,511,524,525,532,551,560,582,589,604,607,620,621,633,634,636,654,655,728,739,781,812,815,857,871,883,885,908,913,933,961,965,968,970,975,991,998,1108,1126,1129,1153,1156,1170,1232,1276,1319,1345,1363,1370,1374,1378,1390,1439,1445,1449,1461,1468,1485,1495,1510,1600,1631,1653,1705,1736,1750,1782,1792,1809,1852,1876,1883,1899,1946,1947,1989,2037,2085,2101,2103,2194,2485,2486,2489,2490,2505,2745,2808,2996,2997,3057,3064,3089,3107,3120,3322,3335,3365,3466,3522,3540,3569,3805,4019,4030,4031,4034,4035,4039,4108,4122,4177,4192,4208,4294,4319,4323,4338,4380,4386,4406,4409,4443,4447,4448,4449,4450,4461,4462,4477,4568,4573,4723,4731,4763,4769,4815,4885,4915,4922,4996,5002,5007,5010,5013,5023,5029,5038,5094,5104,5108,5127,5130,5144,5174,5175,5207,5215,5220,5226,5248,5265,5268,5280,5290,5291,5328,5337,5361,5366,5419,5427,5454,5456,5526,5550,5556,5559,5642,5643,5645,5665,5667,5676,5678,5681,5682,5683,5735,5757,5768,5838,5843,5846,5851,5900,5924,5947,6062,6076,6456,6459,6473,6483,6491,6493,6556,6575,6580,6600,6655,6671,6675,6817,6826,6885,6912,6916,6970,6977,6986,7041,7048,7127,7151,7158,7159,7162,7230,7235,7273,7278,7294,7312,7344,7375,7447,7455,7463,7476,7477,7535,7537,7544,7548,7577,7579,7602,7607,7617,7681,7684,7696,7699,7702,7733,7759,7785,7843,7849,7869,7926,7929,7935,7968,7973,7974,7976,8100,8117,8130,8177,8179,8199,8243,8252,8284,8286,8295,8297,8319,8322,8323,8325,8351,8378,8414,8415,8430,8448,8453,8482,8502,8517,8529,8538,8548,8549,8560,8627,8630,8695,8714,8737,8765,8826,9014,9037,9054,9063,9086,9114,9127,9141,9146,9222,9226,9240,9254,9260,9275,9283,9290,9302,9308,9313,9414,9446,9449,9453,9471,9476,9523,9532,9546,9547,9578,9594,9637,9638,9691,9694,9709,9726,9745,9754,9786,9798,9823,9852,9873,9882,9899,9920,9928,9934,9943,9949,9953,9959,9965,9985,10000,10027,10077,10083,10101,10121,10125,10134,10135,10139,10147,10165,10197,10202,10211,10221,10229,10309,10764,10880,10910,10920,10941,10950,10957,11151,11174,11189,11302,11322,11339,11340,11370,11477,11518,11599,11619,11630,11648,11679,11706,11736,11757,11765,11793,11797,11799,11831,11878,11898,11910,11914,11930,11935,11961,11998,12002,12005,12109,12245,12302,12320,12321,12342,12417,12498,12661,12719,12723,12728,12733,12739,12753,12758,12781,12787,12810,12822,12825,12903,12914,12946,13015,13016,13090,13104,13112,13128,13154,13184,13215,13218,13247,13258,13262,13265,13267,13279,13312,13324,13335,13363,13375,13418,13451,13459,13466,13500,13511,13514,13525,13543,13547,13589,13595,13604,13629,13704,13743,13863,13888,13906,13927,13978,13992,14049,14063,14077,14091,14105,14111,14114,14142,14145,14176,14266,14276,14340,14353,14363,14384,14403,14429,14431,14439,14440,14500,14689,14695,14732,14880,14938,14958,15014,15027,15036,15097,15195,15317,15382,15403,15422,15440,15492,15516,15518,15519,15520,15835,15856,15863,15892,15916,15935,15980,16021,16034,16046,16082,16099,16100,16149,16155,16191,16255,16284,16335,16417,16459,16462,16476,16511,16515,16538,16544,16553,16557,16577,16630,16666,16682,16734,16810,16837,16842,16870,16881,16897,16962,16966,16967,16986,16988,16994,17024,17027,17049,17050,17070,17073,17075,17077,17097,17120,17146,17153,17157,17189,17207,17218,17223,17237,17263,17264,17268,17323,17343,17347,17389,17408,17426,17474,17520,17522,17552,17583,17591,17610,17619,17631,17650,17669,17670,17696,17715,17723,17754,17760,17774,17779,17862,17887,17922,17924,17990,18203,18211,18237,18262,18294,18296,18299,18325,18369,18375,18393,18404,18446,18487,18509,18513,18551,18641,18654,18679,18704,18706,18810,18815,18825,18889,18909,18913,18926,19004,19057,19061,19079,19130,19149,19176,19193,19283,19286,19299,19310,19345,19353,19388,19394,19417,19426,19471,19530,19586,19601,19619,19623,19629,19656,19707,19735,19743,19744,19750,19761,19804,19816,19929,19930,19935,19945,19946,19977,20006,20236,20278,20286,20287,20326,20336,20343,20350,20402,20403,20405,20437,20459,20468,20471,20480,20482,20486,20491,20541,20554,20557,20560,20572,20581,20586,20606,20609,20622,20627,20632,20635,20642,20645,20652,20682,20683,20684,20685,20686,20687,20692,20767,20803,20855,20861,20864,20902,20903,20904,20909,20912,20917,20919,20936,20950,20967,20992,21002,21023,21034,21047,21072,21077,21081,21175,21182,21305,21382,21393,21417,21441,21448,21475,21481,21583,21604,21964,21966,21982,22006,22020,22021,22115,22235,22280,22307,22498,22499,22503,22552,22631,22674,22744,22840,22858,22896,22900,22907,22921,22932,22937,22941,22942,22945,22948,22982,23000,23007,23040,23045,23049,23080,23094,23120]]],["+",[73,69,[[0,11,11,0,11,[[15,1,1,0,1],[19,1,1,1,2],[27,1,1,2,3],[28,1,1,3,4],[30,2,2,4,6],[33,1,1,6,7],[37,1,1,7,8],[44,2,2,8,10],[47,1,1,10,11]]],[1,2,2,11,13,[[70,2,2,11,13]]],[2,4,4,13,17,[[93,1,1,13,14],[99,1,1,14,15],[102,1,1,15,16],[103,1,1,16,17]]],[3,8,8,17,25,[[121,1,1,17,18],[127,1,1,18,19],[131,1,1,19,20],[135,1,1,20,21],[138,1,1,21,22],[139,1,1,22,23],[140,1,1,23,24],[152,1,1,24,25]]],[4,2,2,25,27,[[153,1,1,25,26],[167,1,1,26,27]]],[5,2,2,27,29,[[208,2,2,27,29]]],[6,3,3,29,32,[[216,1,1,29,30],[224,2,2,30,32]]],[8,7,7,32,39,[[243,1,1,32,33],[253,3,3,33,36],[259,1,1,36,37],[264,2,2,37,39]]],[9,7,6,39,45,[[269,3,2,39,41],[277,2,2,41,43],[285,1,1,43,44],[286,1,1,44,45]]],[10,3,3,45,48,[[293,1,1,45,46],[299,1,1,46,47],[311,1,1,47,48]]],[12,1,1,48,49,[[358,1,1,48,49]]],[13,1,1,49,50,[[396,1,1,49,50]]],[16,6,5,50,55,[[426,1,1,50,51],[427,3,2,51,53],[428,1,1,53,54],[433,1,1,54,55]]],[17,3,3,55,58,[[438,1,1,55,56],[457,1,1,56,57],[463,1,1,57,58]]],[19,3,3,58,61,[[630,1,1,58,59],[631,1,1,59,60],[651,1,1,60,61]]],[21,1,1,61,62,[[674,1,1,61,62]]],[22,3,3,62,65,[[707,1,1,62,63],[737,1,1,63,64],[743,1,1,64,65]]],[23,4,2,65,67,[[783,1,1,65,66],[784,3,1,66,67]]],[27,1,1,67,68,[[874,1,1,67,68]]],[37,1,1,68,69,[[921,1,1,68,69]]]],[387,510,781,815,908,913,998,1129,1374,1378,1468,2085,2103,2808,2997,3064,3120,3805,4034,4177,4294,4409,4443,4447,4885,4915,5337,6456,6459,6675,6912,6916,7375,7684,7696,7702,7843,7973,7974,8100,8117,8284,8286,8517,8560,8826,9063,9453,10941,11831,12723,12728,12733,12758,12825,12914,13418,13525,16476,16511,17097,17591,18203,18815,18913,19935,19945,22280,23040]]],["Eye",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2101]]],["Seemeth",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7699]]],["Thinkest",[2,2,[[9,1,1,0,1,[[276,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]]],[8243,10910]]],["appearance",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7602]]],["before",[8,8,[[8,1,1,0,1,[[256,1,1,0,1]]],[12,1,1,1,2,[[366,1,1,1,2]]],[23,3,3,2,5,[[776,3,3,2,5]]],[25,3,3,5,8,[[821,3,3,5,8]]]],[7785,11174,19743,19744,19761,20904,20909,20936]]],["colour",[12,11,[[2,1,1,0,1,[[102,1,1,0,1]]],[3,2,1,1,2,[[127,2,1,1,2]]],[19,1,1,2,3,[[650,1,1,2,3]]],[25,7,7,3,10,[[802,5,5,3,8],[809,1,1,8,9],[811,1,1,9,10]]],[26,1,1,10,11,[[859,1,1,10,11]]]],[3107,4031,17075,20468,20471,20480,20486,20491,20606,20642,22021]]],["conceit",[4,4,[[19,4,4,0,4,[[653,3,3,0,3],[655,1,1,3,4]]]],[17146,17153,17157,17207]]],["countenance",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7607]]],["eye",[76,68,[[1,3,2,0,2,[[70,3,2,0,2]]],[2,3,2,2,4,[[110,1,1,2,3],[113,2,1,3,4]]],[4,12,10,4,14,[[159,1,1,4,5],[165,1,1,5,6],[167,1,1,6,7],[171,4,2,7,9],[177,1,1,9,10],[180,2,2,10,12],[184,1,1,12,13],[186,1,1,13,14]]],[17,14,13,14,27,[[442,2,2,14,16],[445,1,1,16,17],[448,1,1,17,18],[451,1,1,18,19],[452,2,2,19,21],[455,1,1,21,22],[459,2,1,22,23],[463,2,2,23,25],[464,1,1,25,26],[477,1,1,26,27]]],[18,11,11,27,38,[[483,1,1,27,28],[494,1,1,28,29],[508,1,1,29,30],[509,1,1,30,31],[510,1,1,31,32],[512,2,2,32,34],[531,1,1,34,35],[565,1,1,35,36],[569,1,1,36,37],[571,1,1,37,38]]],[19,7,7,38,45,[[634,1,1,38,39],[637,1,1,39,40],[647,1,1,40,41],[649,1,1,41,42],[650,1,1,42,43],[655,1,1,43,44],[657,1,1,44,45]]],[20,2,2,45,47,[[659,1,1,45,46],[662,1,1,46,47]]],[22,4,3,47,50,[[691,1,1,47,48],[730,2,1,48,49],[742,1,1,49,50]]],[23,1,1,50,51,[[757,1,1,50,51]]],[24,7,6,51,57,[[797,2,1,51,52],[798,2,2,52,54],[799,3,3,54,57]]],[25,8,8,57,65,[[806,1,1,57,58],[808,2,2,58,60],[809,1,1,60,61],[810,2,2,61,63],[817,1,1,63,64],[821,1,1,64,65]]],[32,1,1,65,66,[[896,1,1,65,66]]],[37,3,2,66,68,[[912,1,1,66,67],[921,2,1,67,68]]]],[2101,2103,3365,3466,5127,5280,5328,5419,5427,5559,5665,5667,5768,5846,13015,13016,13104,13154,13258,13262,13267,13335,13451,13511,13514,13543,13927,13992,14111,14340,14363,14384,14429,14431,14732,15317,15422,15440,16577,16666,16966,17024,17050,17218,17268,17323,17389,17924,18704,18889,19283,20326,20336,20350,20402,20403,20405,20557,20581,20586,20622,20627,20632,20767,20912,22631,22907,23045]]],["eyed",[1,1,[[0,1,1,0,1,[[28,1,1,0,1]]]],[812]]],["eyes",[409,392,[[0,38,36,0,36,[[2,3,3,0,3],[5,1,1,3,4],[12,2,2,4,6],[15,2,2,6,8],[17,1,1,8,9],[18,1,1,9,10],[19,1,1,10,11],[20,1,1,11,12],[21,2,2,12,14],[23,2,2,14,16],[26,1,1,16,17],[29,2,2,17,19],[30,2,2,19,21],[32,2,2,21,23],[33,1,1,23,24],[36,1,1,24,25],[38,1,1,25,26],[40,2,1,26,27],[41,1,1,27,28],[42,1,1,28,29],[43,1,1,29,30],[44,2,1,30,31],[45,1,1,31,32],[46,1,1,32,33],[47,1,1,33,34],[48,1,1,34,35],[49,1,1,35,36]]],[1,7,6,36,42,[[54,2,1,36,37],[57,1,1,37,38],[62,2,2,38,40],[63,1,1,40,41],[73,1,1,41,42]]],[2,2,2,42,44,[[109,1,1,42,43],[115,1,1,43,44]]],[3,14,14,44,58,[[126,1,1,44,45],[127,1,1,45,46],[131,1,1,46,47],[132,1,1,47,48],[136,2,2,48,50],[138,1,1,50,51],[140,5,5,51,56],[143,1,1,56,57],[149,1,1,57,58]]],[4,31,30,58,88,[[153,1,1,58,59],[155,3,2,59,61],[156,4,4,61,65],[158,2,2,65,67],[159,1,1,67,68],[161,1,1,68,69],[162,1,1,69,70],[163,3,3,70,73],[164,1,1,73,74],[165,1,1,74,75],[166,1,1,75,76],[168,1,1,76,77],[173,1,1,77,78],[176,1,1,78,79],[180,5,5,79,84],[181,3,3,84,87],[186,1,1,87,88]]],[5,3,3,88,91,[[191,1,1,88,89],[209,1,1,89,90],[210,1,1,90,91]]],[6,5,5,91,96,[[226,2,2,91,93],[227,1,1,93,94],[229,1,1,94,95],[231,1,1,95,96]]],[7,2,2,96,98,[[233,2,2,96,98]]],[8,17,16,98,114,[[237,1,1,98,99],[238,1,1,99,100],[239,1,1,100,101],[241,1,1,101,102],[246,1,1,102,103],[247,2,2,103,105],[249,2,2,105,107],[255,2,2,107,109],[259,1,1,109,110],[260,1,1,110,111],[261,3,2,111,113],[262,1,1,113,114]]],[9,8,8,114,122,[[272,1,1,114,115],[278,1,1,115,116],[279,1,1,116,117],[281,1,1,117,118],[284,1,1,118,119],[285,1,1,119,120],[288,1,1,120,121],[290,1,1,121,122]]],[10,14,14,122,136,[[291,2,2,122,124],[298,2,2,124,126],[299,1,1,126,127],[300,1,1,127,128],[301,1,1,128,129],[304,2,2,129,131],[305,2,2,131,133],[306,1,1,133,134],[310,1,1,134,135],[312,1,1,135,136]]],[11,16,12,136,148,[[316,3,2,136,138],[318,4,2,138,140],[319,2,2,140,142],[322,2,2,142,144],[331,2,2,144,146],[334,1,1,146,147],[337,2,1,147,148]]],[12,4,4,148,152,[[350,1,1,148,149],[354,1,1,149,150],[358,2,2,150,152]]],[13,12,12,152,164,[[372,2,2,152,154],[373,2,2,154,156],[375,1,1,156,157],[380,1,1,157,158],[382,1,1,158,159],[386,1,1,159,160],[387,1,1,160,161],[395,2,2,161,163],[400,1,1,163,164]]],[14,2,2,164,166,[[405,1,1,164,165],[411,1,1,165,166]]],[15,2,2,166,168,[[413,1,1,166,167],[418,1,1,167,168]]],[16,2,2,168,170,[[426,1,1,168,169],[433,1,1,169,170]]],[17,25,25,170,195,[[437,1,1,170,171],[439,1,1,171,172],[442,1,1,172,173],[445,1,1,173,174],[446,2,2,174,176],[449,1,1,176,177],[450,1,1,177,178],[451,1,1,178,179],[452,1,1,179,180],[454,1,1,180,181],[456,2,2,181,183],[459,1,1,183,184],[462,1,1,184,185],[464,1,1,185,186],[466,3,3,186,189],[467,1,1,189,190],[469,1,1,190,191],[471,1,1,191,192],[474,1,1,192,193],[475,1,1,193,194],[476,1,1,194,195]]],[18,43,41,195,236,[[487,1,1,195,196],[488,1,1,196,197],[490,1,1,197,198],[492,1,1,198,199],[494,2,2,199,201],[496,1,1,201,202],[502,1,1,202,203],[503,1,1,203,204],[508,1,1,204,205],[511,1,1,205,206],[513,2,2,206,208],[515,1,1,208,209],[527,1,1,209,210],[543,1,1,210,211],[546,2,2,211,213],[550,1,1,213,214],[554,1,1,214,215],[568,1,1,215,216],[578,2,2,216,218],[592,1,1,218,219],[593,1,1,219,220],[595,1,1,220,221],[596,6,6,221,227],[598,1,1,227,228],[600,4,2,228,230],[608,1,1,230,231],[609,1,1,231,232],[612,1,1,232,233],[616,1,1,233,234],[618,1,1,234,235],[622,1,1,235,236]]],[19,28,28,236,264,[[630,1,1,236,237],[631,1,1,237,238],[632,1,1,238,239],[633,2,2,239,241],[637,1,1,241,242],[639,1,1,242,243],[642,2,2,243,245],[643,2,2,245,247],[644,2,2,247,249],[647,2,2,249,251],[648,2,2,251,253],[649,1,1,253,254],[650,4,4,254,258],[652,1,1,258,259],[654,1,1,259,260],[655,1,1,260,261],[656,1,1,261,262],[657,2,2,262,264]]],[20,7,7,264,271,[[660,2,2,264,266],[663,1,1,266,267],[664,1,1,267,268],[666,1,1,268,269],[669,2,2,269,271]]],[21,6,6,271,277,[[671,1,1,271,272],[674,1,1,272,273],[675,1,1,273,274],[676,1,1,274,275],[677,1,1,275,276],[678,1,1,276,277]]],[22,34,33,277,310,[[679,2,2,277,279],[681,2,2,279,281],[683,2,2,281,283],[684,3,2,283,285],[689,1,1,285,286],[691,1,1,286,287],[695,1,1,287,288],[707,1,1,288,289],[708,1,1,289,290],[710,1,1,290,291],[711,3,3,291,294],[713,1,1,294,295],[715,2,2,295,297],[716,1,1,297,298],[718,1,1,298,299],[720,1,1,299,300],[721,1,1,300,301],[722,1,1,301,302],[727,2,2,302,304],[729,1,1,304,305],[730,1,1,305,306],[737,1,1,306,307],[738,1,1,307,308],[743,1,1,308,309],[744,1,1,309,310]]],[23,28,25,310,335,[[747,1,1,310,311],[749,2,2,311,313],[751,1,1,313,314],[753,2,2,314,316],[757,1,1,316,317],[758,2,2,317,319],[760,3,2,319,321],[764,1,1,321,322],[766,1,1,322,323],[768,1,1,323,324],[773,1,1,324,325],[775,1,1,325,326],[776,3,2,326,328],[778,2,1,328,329],[783,2,2,329,331],[786,1,1,331,332],[796,3,3,332,335]]],[24,3,3,335,338,[[798,1,1,335,336],[800,1,1,336,337],[801,1,1,337,338]]],[25,28,27,338,365,[[802,1,1,338,339],[807,1,1,339,340],[809,2,1,340,341],[811,1,1,341,342],[813,2,2,342,344],[819,3,3,344,347],[821,3,3,347,350],[822,1,1,350,351],[823,1,1,351,352],[824,3,3,352,355],[825,3,3,355,358],[834,1,1,358,359],[837,1,1,359,360],[838,1,1,360,361],[839,2,2,361,363],[841,1,1,363,364],[845,1,1,364,365]]],[26,6,6,365,371,[[857,3,3,365,368],[858,1,1,368,369],[859,2,2,369,371]]],[28,1,1,371,372,[[876,1,1,371,372]]],[29,2,2,372,374,[[887,2,2,372,374]]],[32,1,1,374,375,[[899,1,1,374,375]]],[34,1,1,375,376,[[903,1,1,375,376]]],[35,1,1,376,377,[[908,1,1,376,377]]],[36,1,1,377,378,[[910,1,1,377,378]]],[37,14,13,378,391,[[911,1,1,378,379],[912,1,1,379,380],[913,1,1,380,381],[914,1,1,381,382],[915,3,3,382,385],[916,1,1,385,386],[918,2,1,386,387],[919,2,2,387,389],[922,1,1,389,390],[924,1,1,390,391]]],[38,1,1,391,392,[[925,1,1,391,392]]]],[60,61,62,145,328,332,385,386,426,465,511,532,551,560,654,655,728,857,871,883,885,961,965,991,1108,1156,1232,1276,1319,1345,1370,1390,1439,1461,1485,1510,1653,1736,1876,1883,1899,2194,3322,3540,4019,4030,4192,4208,4319,4323,4406,4448,4449,4450,4461,4462,4568,4815,4922,4996,5002,5007,5013,5023,5038,5094,5108,5130,5174,5207,5215,5220,5226,5248,5290,5291,5361,5454,5526,5642,5643,5645,5676,5678,5681,5682,5683,5843,5947,6473,6483,6970,6977,6986,7041,7127,7158,7159,7273,7278,7312,7344,7447,7463,7476,7535,7537,7733,7759,7849,7869,7926,7929,7935,8177,8297,8351,8414,8502,8538,8630,8695,8737,8765,9014,9037,9054,9086,9141,9222,9226,9254,9260,9308,9414,9523,9637,9638,9691,9694,9709,9726,9798,9823,10077,10083,10165,10229,10764,10880,10950,10957,11302,11322,11339,11340,11370,11477,11518,11599,11630,11797,11799,11961,12109,12245,12302,12417,12719,12822,12903,12946,13016,13090,13112,13128,13184,13215,13247,13265,13324,13363,13375,13459,13500,13547,13589,13595,13604,13629,13704,13743,13863,13888,13906,14049,14063,14077,14091,14105,14114,14176,14266,14276,14353,14403,14439,14440,14500,14689,14880,14938,14958,15027,15097,15403,15516,15519,15835,15856,15892,15916,15935,15980,16021,16034,16046,16082,16099,16100,16149,16155,16191,16255,16284,16335,16462,16515,16538,16544,16553,16682,16734,16810,16837,16842,16870,16881,16897,16962,16967,16986,16994,17027,17049,17070,17073,17077,17120,17189,17223,17237,17263,17264,17343,17347,17408,17426,17474,17520,17522,17552,17583,17610,17619,17631,17650,17669,17670,17715,17723,17754,17760,17774,17779,17887,17922,17990,18211,18237,18262,18294,18296,18299,18325,18369,18375,18404,18446,18487,18513,18551,18641,18654,18679,18706,18810,18825,18909,18926,19004,19061,19079,19130,19176,19193,19286,19299,19310,19345,19353,19426,19471,19530,19656,19707,19735,19750,19804,19929,19930,19977,20278,20286,20287,20343,20437,20459,20482,20572,20609,20645,20682,20692,20855,20861,20864,20902,20903,20919,20950,21002,21023,21034,21047,21072,21077,21081,21305,21382,21417,21441,21448,21481,21604,21964,21966,21982,22006,22020,22021,22307,22499,22503,22674,22744,22840,22858,22896,22900,22921,22932,22937,22941,22945,22948,22982,23000,23007,23049,23080,23094]]],["eyesight",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14142]]],["face",[10,9,[[1,2,2,0,2,[[59,2,2,0,2]]],[3,4,3,2,5,[[130,2,1,2,3],[138,2,2,3,5]]],[10,2,2,5,7,[[310,2,2,5,7]]],[11,1,1,7,8,[[321,1,1,7,8]]],[23,1,1,8,9,[[748,1,1,8,9]]]],[1782,1792,4122,4380,4386,9446,9449,9786,19057]]],["for",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15036]]],["fountain",[7,6,[[0,2,1,0,1,[[15,2,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[8,1,1,2,3,[[264,1,1,2,3]]],[15,3,3,3,6,[[414,1,1,3,4],[415,1,1,4,5],[424,1,1,5,6]]]],[388,5838,7968,12321,12342,12661]]],["fountains",[4,4,[[3,1,1,0,1,[[149,1,1,0,1]]],[4,1,1,1,2,[[160,1,1,1,2]]],[13,1,1,2,3,[[398,1,1,2,3]]],[19,1,1,3,4,[[635,1,1,3,4]]]],[4769,5144,11878,16630]]],["furrows",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22235]]],["good",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8100]]],["him",[2,2,[[0,1,1,0,1,[[26,1,1,0,1]]],[9,1,1,1,2,[[290,1,1,1,2]]]],[739,8714]]],["look",[3,3,[[18,1,1,0,1,[[578,1,1,0,1]]],[19,2,2,1,3,[[633,1,1,1,2],[648,1,1,2,3]]]],[15518,16557,16988]]],["looks",[3,3,[[18,1,1,0,1,[[495,1,1,0,1]]],[22,2,2,1,3,[[680,1,1,1,2],[688,1,1,2,3]]]],[14145,17696,17862]]],["presence",[8,7,[[0,2,2,0,2,[[22,2,2,0,2]]],[4,1,1,2,3,[[177,1,1,2,3]]],[23,5,4,3,7,[[772,4,3,3,6],[776,1,1,6,7]]]],[582,589,5556,19619,19623,19629,19743]]],["resemblance",[1,1,[[37,1,1,0,1,[[915,1,1,0,1]]]],[22942]]],["seem",[2,2,[[9,2,2,0,2,[[285,2,2,0,2]]]],[8548,8549]]],["seemed",[2,2,[[23,2,2,0,2,[[762,1,1,0,1],[771,1,1,1,2]]]],[19388,19601]]],["seemeth",[12,12,[[6,1,1,0,1,[[229,1,1,0,1]]],[8,5,5,1,6,[[236,1,1,1,2],[238,1,1,2,3],[246,1,1,3,4],[249,2,2,4,6]]],[9,3,3,6,9,[[276,1,1,6,7],[281,1,1,7,8],[284,1,1,8,9]]],[23,3,3,9,12,[[770,1,1,9,10],[784,2,2,10,12]]]],[7048,7235,7294,7455,7544,7548,8252,8415,8482,19586,19945,19946]]],["sight",[215,204,[[0,13,13,0,13,[[17,1,1,0,1],[18,1,1,1,2],[20,2,2,2,4],[31,1,1,4,5],[32,3,3,5,8],[37,1,1,8,9],[38,2,2,9,11],[46,2,2,11,13]]],[1,19,15,13,28,[[52,1,1,13,14],[53,1,1,14,15],[56,2,1,15,16],[58,1,1,16,17],[60,3,1,17,18],[61,1,1,18,19],[64,1,1,19,20],[66,1,1,20,21],[68,1,1,21,22],[82,5,4,22,26],[83,1,1,26,27],[89,1,1,27,28]]],[2,6,6,28,34,[[99,1,1,28,29],[102,2,2,29,31],[109,1,1,31,32],[114,1,1,32,33],[115,1,1,33,34]]],[3,11,9,34,43,[[127,2,2,34,36],[129,2,1,36,37],[136,1,1,37,38],[141,2,1,38,39],[143,1,1,39,40],[148,2,2,40,42],[149,1,1,42,43]]],[4,11,11,43,54,[[156,2,2,43,45],[158,1,1,45,46],[161,1,1,46,47],[164,2,2,47,49],[169,1,1,49,50],[173,1,1,50,51],[183,2,2,51,53],[186,1,1,53,54]]],[5,4,4,54,58,[[189,1,1,54,55],[190,1,1,55,56],[196,1,1,56,57],[210,1,1,57,58]]],[6,9,8,58,66,[[212,1,1,58,59],[213,3,2,59,61],[214,1,1,61,62],[216,2,2,62,64],[220,1,1,64,65],[223,1,1,65,66]]],[7,2,2,66,68,[[233,2,2,66,68]]],[8,9,8,68,76,[[236,1,1,68,69],[247,1,1,69,70],[250,2,2,70,72],[251,1,1,72,73],[253,2,1,73,74],[264,2,2,74,76]]],[9,11,11,76,87,[[272,1,1,76,77],[273,1,1,77,78],[278,2,2,78,80],[279,3,3,80,83],[280,1,1,83,84],[282,2,2,84,86],[288,1,1,86,87]]],[10,12,12,87,99,[[301,3,3,87,90],[304,1,1,90,91],[305,2,2,91,93],[306,3,3,93,96],[311,2,2,96,98],[312,1,1,98,99]]],[11,32,32,99,131,[[313,2,2,99,101],[315,2,2,101,103],[320,2,2,103,105],[324,1,1,105,106],[325,2,2,106,108],[326,2,2,108,110],[327,6,6,110,116],[328,1,1,116,117],[329,2,2,117,119],[330,1,1,119,120],[332,1,1,120,121],[333,5,5,121,126],[334,1,1,126,127],[335,2,2,127,129],[336,2,2,129,131]]],[12,4,4,131,135,[[339,1,1,131,132],[356,1,1,132,133],[365,1,1,133,134],[366,1,1,134,135]]],[13,16,16,135,151,[[386,1,1,135,136],[388,1,1,136,137],[390,1,1,137,138],[391,1,1,138,139],[392,1,1,139,140],[393,1,1,140,141],[394,1,1,141,142],[395,1,1,142,143],[398,1,1,143,144],[399,3,3,144,147],[400,1,1,147,148],[402,3,3,148,151]]],[15,1,1,151,152,[[420,1,1,151,152]]],[16,4,4,152,156,[[427,1,1,152,153],[430,2,2,153,155],[432,1,1,155,156]]],[17,4,4,156,160,[[450,1,1,156,157],[453,1,1,157,158],[454,1,1,158,159],[460,1,1,159,160]]],[18,8,8,160,168,[[482,1,1,160,161],[528,1,1,161,162],[549,1,1,162,163],[556,1,1,163,164],[567,1,1,164,165],[575,1,1,165,166],[578,1,1,166,167],[593,1,1,167,168]]],[19,2,2,168,170,[[628,1,1,168,169],[630,1,1,169,170]]],[22,2,2,170,172,[[716,1,1,170,171],[721,1,1,171,172]]],[23,7,7,172,179,[[751,1,1,172,173],[762,1,1,173,174],[763,1,1,174,175],[776,1,1,175,176],[778,1,1,176,177],[787,1,1,177,178],[795,1,1,178,179]]],[25,24,21,179,200,[[805,1,1,179,180],[806,2,2,180,182],[811,2,2,182,184],[813,7,5,184,189],[817,1,1,189,190],[821,4,3,190,193],[822,1,1,193,194],[823,1,1,194,195],[829,2,2,195,197],[837,1,1,197,198],[840,1,1,198,199],[844,1,1,199,200]]],[27,1,1,200,201,[[863,1,1,200,201]]],[29,1,1,201,202,[[887,1,1,201,202]]],[31,1,1,202,203,[[890,1,1,202,203]]],[38,1,1,203,204,[[926,1,1,203,204]]]],[427,476,524,525,933,968,970,975,1126,1153,1170,1445,1449,1600,1631,1705,1750,1809,1852,1946,1989,2037,2485,2486,2489,2490,2505,2745,2996,3057,3089,3335,3522,3569,4035,4039,4108,4338,4477,4573,4723,4731,4763,5010,5029,5104,5175,5265,5268,5366,5456,5735,5757,5851,5900,5924,6076,6493,6556,6575,6580,6600,6655,6671,6817,6885,7151,7162,7230,7477,7577,7579,7617,7681,7973,7976,8179,8199,8295,8297,8322,8323,8325,8378,8430,8448,8627,9114,9127,9146,9240,9275,9283,9290,9302,9313,9471,9476,9532,9546,9547,9578,9594,9745,9754,9852,9873,9882,9899,9920,9928,9934,9943,9949,9953,9959,9965,9985,10000,10027,10101,10121,10125,10134,10135,10139,10147,10197,10202,10211,10221,10309,10920,11151,11189,11619,11648,11679,11706,11736,11757,11765,11793,11898,11910,11914,11930,11935,11998,12002,12005,12498,12739,12781,12787,12810,13218,13279,13312,13466,13978,14695,15014,15195,15382,15492,15520,15863,16417,16459,18393,18509,19149,19394,19417,19743,19816,20006,20236,20541,20554,20560,20635,20652,20683,20684,20685,20686,20687,20803,20904,20909,20917,20967,20992,21175,21182,21393,21475,21583,22115,22498,22552,23120]]],["thee",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6062]]],["thinking",[1,1,[[9,1,1,0,1,[[270,1,1,0,1]]]],[8130]]],["thought",[3,3,[[9,2,2,0,2,[[279,1,1,0,1],[285,1,1,1,2]]],[16,1,1,2,3,[[428,1,1,2,3]]]],[8319,8529,12753]]],["unto",[3,3,[[0,1,1,0,1,[[18,1,1,0,1]]],[4,1,1,1,2,[[177,1,1,1,2]]],[6,1,1,2,3,[[220,1,1,2,3]]]],[471,5550,6826]]],["well",[10,10,[[0,8,8,0,8,[[23,7,7,0,7],[48,1,1,7,8]]],[9,1,1,8,9,[[283,1,1,8,9]]],[15,1,1,9,10,[[414,1,1,9,10]]]],[604,607,620,621,633,634,636,1495,8453,12320]]],["wells",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1947]]],["you",[1,1,[[5,1,1,0,1,[[210,1,1,0,1]]]],[6491]]],["yourselves",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1363]]]]},{"k":"H5870","v":[["*",[5,4,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,4,3,1,4,[[853,1,1,1,2],[856,3,2,2,4]]]],[12139,21871,21941,21953]]],["eye",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12139]]],["eyes",[4,3,[[26,4,3,0,3,[[853,1,1,0,1],[856,3,2,1,3]]]],[21871,21941,21953]]]]},{"k":"H5871","v":[["Ain",[5,5,[[3,1,1,0,1,[[150,1,1,0,1]]],[5,3,3,1,4,[[201,1,1,1,2],[205,1,1,2,3],[207,1,1,3,4]]],[12,1,1,4,5,[[341,1,1,4,5]]]],[4827,6234,6328,6397,10417]]]]},{"k":"H5872","v":[["*",[6,6,[[5,1,1,0,1,[[201,1,1,0,1]]],[8,2,2,1,3,[[258,1,1,1,2],[259,1,1,2,3]]],[13,1,1,3,4,[[386,1,1,3,4]]],[21,1,1,4,5,[[671,1,1,4,5]]],[25,1,1,5,6,[[848,1,1,5,6]]]],[6264,7839,7840,11589,17551,21689]]],["+",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21689]]],["Engedi",[5,5,[[5,1,1,0,1,[[201,1,1,0,1]]],[8,2,2,1,3,[[258,1,1,1,2],[259,1,1,2,3]]],[13,1,1,3,4,[[386,1,1,3,4]]],[21,1,1,4,5,[[671,1,1,4,5]]]],[6264,7839,7840,11589,17551]]]]},{"k":"H5873","v":[["Engannim",[3,3,[[5,3,3,0,3,[[201,1,1,0,1],[205,1,1,1,2],[207,1,1,2,3]]]],[6236,6342,6410]]]]},{"k":"H5874","v":[["Endor",[3,3,[[5,1,1,0,1,[[203,1,1,0,1]]],[8,1,1,1,2,[[263,1,1,1,2]]],[18,1,1,2,3,[[560,1,1,2,3]]]],[6286,7949,15251]]]]},{"k":"H5875","v":[["Enhakkore",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6948]]]]},{"k":"H5876","v":[["Enhaddah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6342]]]]},{"k":"H5877","v":[["Enhazor",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6358]]]]},{"k":"H5878","v":[["*",[2,1,[[6,2,1,0,1,[[217,2,1,0,1]]]],[6695]]],["Harod",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6695]]],["well",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6695]]]]},{"k":"H5879","v":[["*",[3,3,[[0,2,2,0,2,[[37,2,2,0,2]]],[5,1,1,2,3,[[201,1,1,2,3]]]],[1133,1140,6236]]],["Enam",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6236]]],["open",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1133]]],["openly",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1140]]]]},{"k":"H5880","v":[["Enmishpat",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[343]]]]},{"k":"H5881","v":[["Enan",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3619,3687,3928,3933,4015]]]]},{"k":"H5882","v":[["Eneglaim",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21689]]]]},{"k":"H5883","v":[["Enrogel",[4,4,[[5,2,2,0,2,[[201,1,1,0,1],[204,1,1,1,2]]],[9,1,1,2,3,[[283,1,1,2,3]]],[10,1,1,3,4,[[291,1,1,3,4]]]],[6209,6309,8466,8726]]]]},{"k":"H5884","v":[["Enrimmon",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12617]]]]},{"k":"H5885","v":[["Enshemesh",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[204,1,1,1,2]]]],[6209,6310]]]]},{"k":"H5886","v":[]},{"k":"H5887","v":[["Entappuah",[1,1,[[5,1,1,0,1,[[203,1,1,0,1]]]],[6282]]]]},{"k":"H5888","v":[["*",[3,3,[[8,2,2,0,2,[[249,2,2,0,2]]],[23,1,1,2,3,[[748,1,1,2,3]]]],[7536,7539,19058]]],["faint",[2,2,[[8,2,2,0,2,[[249,2,2,0,2]]]],[7536,7539]]],["wearied",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19058]]]]},{"k":"H5889","v":[["*",[17,17,[[0,2,2,0,2,[[24,2,2,0,2]]],[4,1,1,2,3,[[177,1,1,2,3]]],[6,2,2,3,5,[[218,2,2,3,5]]],[9,2,2,5,7,[[282,1,1,5,6],[283,1,1,6,7]]],[17,1,1,7,8,[[457,1,1,7,8]]],[18,2,2,8,10,[[540,1,1,8,9],[620,1,1,9,10]]],[19,1,1,10,11,[[652,1,1,10,11]]],[22,5,5,11,16,[[683,1,1,11,12],[706,1,1,12,13],[707,1,1,13,14],[710,1,1,14,15],[724,1,1,15,16]]],[23,1,1,16,17,[[775,1,1,16,17]]]],[687,688,5565,6723,6724,8440,8478,13396,14840,16299,17138,17766,18176,18201,18261,18587,19716]]],["faint",[6,6,[[0,2,2,0,2,[[24,2,2,0,2]]],[4,1,1,2,3,[[177,1,1,2,3]]],[6,2,2,3,5,[[218,2,2,3,5]]],[22,1,1,5,6,[[707,1,1,5,6]]]],[687,688,5565,6723,6724,18201]]],["thirsty",[3,3,[[18,2,2,0,2,[[540,1,1,0,1],[620,1,1,1,2]]],[19,1,1,2,3,[[652,1,1,2,3]]]],[14840,16299,17138]]],["weary",[8,8,[[9,2,2,0,2,[[282,1,1,0,1],[283,1,1,1,2]]],[17,1,1,2,3,[[457,1,1,2,3]]],[22,4,4,3,7,[[683,1,1,3,4],[706,1,1,4,5],[710,1,1,5,6],[724,1,1,6,7]]],[23,1,1,7,8,[[775,1,1,7,8]]]],[8440,8478,13396,17766,18176,18261,18587,19716]]]]},{"k":"H5890","v":[["darkness",[2,2,[[17,1,1,0,1,[[445,1,1,0,1]]],[29,1,1,1,2,[[882,1,1,1,2]]]],[13108,22423]]]]},{"k":"H5891","v":[["Ephah",[5,5,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,3,3,1,4,[[338,1,1,1,2],[339,2,2,2,4]]],[22,1,1,4,5,[[738,1,1,4,5]]]],[662,10285,10352,10353,18827]]]]},{"k":"H5892","v":[["*",[1094,935,[[0,49,42,0,42,[[3,2,1,0,1],[9,2,2,1,3],[10,3,3,3,6],[12,1,1,6,7],[17,3,3,7,10],[18,12,10,10,20],[22,2,2,20,22],[23,3,3,22,25],[25,1,1,25,26],[27,1,1,26,27],[32,2,1,27,28],[33,7,5,28,33],[34,1,1,33,34],[35,3,3,34,37],[40,3,2,37,39],[43,2,2,39,41],[46,1,1,41,42]]],[1,3,3,42,45,[[50,1,1,42,43],[58,2,2,43,45]]],[2,14,12,45,57,[[103,4,4,45,49],[114,7,5,49,54],[115,3,3,54,57]]],[3,49,35,57,92,[[129,2,2,57,59],[136,1,1,59,60],[137,6,5,60,65],[138,1,1,65,66],[140,1,1,66,67],[147,1,1,67,68],[148,8,7,68,75],[151,29,17,75,92]]],[4,58,51,92,143,[[153,2,2,92,94],[154,5,4,94,98],[155,10,7,98,105],[156,2,2,105,107],[158,1,1,107,108],[161,1,1,108,109],[165,4,4,109,113],[171,7,7,113,120],[172,7,6,120,126],[173,8,7,126,133],[174,7,6,133,139],[177,1,1,139,140],[180,2,2,140,142],[186,1,1,142,143]]],[5,158,128,143,271,[[189,1,1,143,144],[192,16,13,144,157],[194,27,20,157,177],[195,2,1,177,178],[196,6,5,178,183],[197,5,5,183,188],[199,10,10,188,198],[200,2,2,198,200],[201,13,12,200,212],[202,2,1,212,213],[203,3,2,213,215],[204,5,5,215,220],[205,16,15,220,235],[206,9,4,235,239],[207,40,31,239,270],[210,1,1,270,271]]],[6,57,49,271,320,[[211,9,7,271,278],[213,1,1,278,279],[216,3,3,279,282],[218,3,3,282,285],[219,11,8,285,293],[220,1,1,293,294],[221,2,2,294,296],[222,1,1,296,297],[224,1,1,297,298],[226,2,2,298,300],[227,1,1,300,301],[228,4,3,301,304],[229,5,5,304,309],[230,12,10,309,319],[231,1,1,319,320]]],[7,4,4,320,324,[[232,1,1,320,321],[233,1,1,321,322],[234,1,1,322,323],[235,1,1,323,324]]],[8,38,32,324,356,[[236,1,1,324,325],[239,2,1,325,326],[240,4,3,326,329],[241,2,1,329,330],[242,1,1,330,331],[243,1,1,331,332],[244,9,8,332,340],[245,1,1,340,341],[250,1,1,341,342],[251,1,1,342,343],[253,1,1,343,344],[255,4,4,344,348],[257,1,1,348,349],[258,2,2,349,351],[262,2,1,351,352],[263,1,1,352,353],[265,3,2,353,355],[266,1,1,355,356]]],[9,45,43,356,399,[[268,2,2,356,358],[271,2,2,358,360],[272,3,3,360,363],[274,1,1,363,364],[276,3,3,364,367],[277,4,4,367,371],[278,7,6,371,377],[281,8,8,377,385],[283,4,3,385,388],[284,1,1,388,389],[285,2,2,389,391],[286,6,6,391,397],[290,2,2,397,399]]],[10,51,47,399,446,[[292,1,1,399,400],[293,1,1,400,401],[294,1,1,401,402],[298,4,4,402,406],[299,8,6,406,412],[300,1,1,412,413],[301,4,4,413,417],[302,1,1,417,418],[303,3,3,418,421],[304,4,4,421,425],[305,4,4,425,429],[306,3,3,429,432],[307,1,1,432,433],[310,6,5,433,438],[311,5,4,438,442],[312,4,4,442,446]]],[11,65,52,446,498,[[314,3,2,446,448],[315,3,2,448,450],[318,3,3,450,453],[319,5,3,453,456],[320,1,1,456,457],[321,2,2,457,459],[322,4,4,459,463],[323,1,1,463,464],[324,1,1,464,465],[325,2,1,465,466],[326,1,1,466,467],[327,2,2,467,469],[328,1,1,469,470],[329,7,5,470,475],[330,4,4,475,479],[331,5,5,479,484],[332,3,2,484,486],[335,7,5,486,491],[336,2,2,491,493],[337,8,5,493,498]]],[12,37,35,498,533,[[338,3,3,498,501],[339,2,2,501,503],[341,3,3,503,506],[343,11,10,506,516],[346,1,1,516,517],[347,1,1,517,518],[348,4,3,518,521],[350,2,2,521,523],[352,2,2,523,525],[355,1,1,525,526],[356,4,4,526,530],[357,2,2,530,532],[364,1,1,532,533]]],[13,88,73,533,606,[[367,1,1,533,534],[371,1,1,534,535],[372,3,3,535,538],[374,7,5,538,543],[375,2,2,543,545],[376,1,1,545,546],[377,5,4,546,550],[378,3,3,550,553],[379,1,1,553,554],[380,6,5,554,559],[381,3,2,559,561],[382,3,2,561,563],[383,7,6,563,569],[384,1,1,569,570],[385,4,2,570,572],[386,1,1,572,573],[387,3,3,573,576],[389,2,2,576,578],[390,3,3,578,581],[391,2,2,581,583],[392,1,1,583,584],[393,2,2,584,586],[394,4,3,586,589],[395,1,1,589,590],[396,2,1,590,591],[397,7,4,591,595],[398,7,7,595,602],[399,3,2,602,604],[400,2,2,604,606]]],[14,7,4,606,610,[[404,3,2,606,608],[405,1,1,608,609],[412,3,1,609,610]]],[15,21,18,610,628,[[414,3,3,610,613],[415,1,1,613,614],[419,4,3,614,617],[420,1,1,617,618],[421,1,1,618,619],[422,1,1,619,620],[423,7,5,620,625],[424,2,2,625,627],[425,1,1,627,628]]],[16,14,11,628,639,[[428,1,1,628,629],[429,2,2,629,631],[431,2,2,631,633],[433,5,3,633,636],[434,4,3,636,639]]],[17,2,2,639,641,[[450,1,1,639,640],[459,1,1,640,641]]],[18,20,19,641,660,[[486,1,1,641,642],[508,1,1,642,643],[523,1,1,643,644],[525,3,2,644,646],[532,1,1,646,647],[536,2,2,647,649],[537,1,1,649,650],[546,1,1,650,651],[549,1,1,651,652],[564,1,1,652,653],[578,1,1,653,654],[584,3,3,654,657],[585,1,1,657,658],[599,1,1,658,659],[604,1,1,659,660]]],[19,4,4,660,664,[[628,1,1,660,661],[643,1,1,661,662],[648,1,1,662,663],[652,1,1,663,664]]],[20,5,5,664,669,[[665,1,1,664,665],[666,1,1,665,666],[667,2,2,666,668],[668,1,1,668,669]]],[21,3,3,669,672,[[673,2,2,669,671],[675,1,1,671,672]]],[22,46,42,672,714,[[679,3,3,672,675],[684,1,1,675,676],[692,3,3,676,679],[695,3,3,679,682],[697,4,2,682,684],[700,2,2,684,686],[701,1,1,686,687],[702,1,1,687,688],[703,2,1,688,689],[704,1,1,689,690],[705,1,1,690,691],[710,2,2,691,693],[711,1,1,693,694],[714,2,2,694,696],[715,5,5,696,701],[716,2,1,701,702],[718,1,1,702,703],[720,1,1,703,704],[722,1,1,704,705],[723,1,1,705,706],[726,1,1,706,707],[730,1,1,707,708],[732,1,1,708,709],[738,1,1,709,710],[739,1,1,710,711],[740,1,1,711,712],[742,1,1,712,713],[744,1,1,713,714]]],[23,138,118,714,832,[[745,2,2,714,716],[746,2,2,716,718],[747,1,1,718,719],[748,6,5,719,724],[749,2,2,724,726],[750,1,1,726,727],[751,2,2,727,729],[752,2,2,729,731],[753,1,1,731,732],[754,1,1,732,733],[755,3,3,733,736],[757,1,1,736,737],[758,1,1,737,738],[759,1,1,738,739],[761,4,3,739,742],[763,5,4,742,746],[764,2,2,746,748],[765,5,5,748,753],[766,3,2,753,755],[767,1,1,755,756],[769,2,2,756,758],[770,7,7,758,765],[771,2,2,765,767],[773,2,2,767,769],[774,1,1,769,770],[775,4,4,770,774],[776,13,8,774,782],[777,8,5,782,787],[778,7,4,787,791],[780,2,2,791,793],[781,3,3,793,796],[782,7,7,796,803],[783,4,4,803,807],[784,2,2,807,809],[785,1,1,809,810],[788,4,4,810,814],[790,1,1,814,815],[791,1,1,815,816],[792,6,5,816,821],[793,3,3,821,824],[794,1,1,824,825],[795,2,2,825,827],[796,9,5,827,832]]],[24,6,6,832,838,[[797,2,2,832,834],[798,2,2,834,836],[799,1,1,836,837],[801,1,1,837,838]]],[25,61,54,838,892,[[805,2,2,838,840],[806,1,1,840,841],[807,1,1,841,842],[808,2,2,842,844],[810,5,5,844,849],[811,1,1,849,850],[812,4,3,850,853],[813,1,1,853,854],[818,1,1,854,855],[820,1,1,855,856],[822,1,1,856,857],[823,2,2,857,859],[825,2,2,859,861],[826,2,1,861,862],[827,4,3,862,865],[830,2,1,865,866],[831,2,1,866,867],[834,1,1,867,868],[836,2,2,868,870],[837,5,5,870,875],[840,2,2,875,877],[841,2,2,877,879],[844,1,1,879,880],[846,3,2,880,882],[849,11,10,882,892]]],[26,6,6,892,898,[[858,5,5,892,897],[860,1,1,897,898]]],[27,5,4,898,902,[[869,2,1,898,899],[872,2,2,899,901],[874,1,1,901,902]]],[28,1,1,902,903,[[877,1,1,902,903]]],[29,11,8,903,911,[[881,2,1,903,904],[882,5,3,904,907],[883,1,1,907,908],[884,1,1,908,909],[885,1,1,909,910],[887,1,1,910,911]]],[30,1,1,911,912,[[888,1,1,911,912]]],[31,8,6,912,918,[[889,1,1,912,913],[891,3,3,913,916],[892,4,2,916,918]]],[32,4,4,918,922,[[897,2,2,918,920],[898,1,1,920,921],[899,1,1,921,922]]],[33,1,1,922,923,[[902,1,1,922,923]]],[34,1,1,923,924,[[904,1,1,923,924]]],[35,4,4,924,928,[[906,1,1,924,925],[907,1,1,925,926],[908,2,2,926,928]]],[37,9,7,928,935,[[911,2,2,928,930],[917,1,1,930,931],[918,3,3,931,934],[924,3,1,934,935]]]],[96,245,246,270,271,274,330,448,450,452,461,469,471,472,473,477,478,479,482,486,581,589,601,602,604,725,792,978,1000,1004,1005,1007,1008,1016,1072,1075,1079,1230,1243,1328,1337,1441,1543,1771,1775,3151,3152,3156,3164,3498,3499,3501,3502,3503,3549,3555,3557,4094,4103,4327,4342,4343,4365,4366,4367,4411,4465,4674,4734,4735,4742,4744,4751,4754,4756,4847,4848,4849,4850,4851,4852,4853,4856,4857,4858,4859,4860,4870,4871,4872,4873,4877,4914,4920,4972,4973,4974,4975,4979,4980,4981,4982,4985,4987,4994,5045,5046,5096,5158,5284,5285,5287,5288,5407,5408,5411,5413,5415,5417,5418,5437,5441,5442,5443,5446,5447,5449,5450,5451,5453,5466,5467,5468,5485,5487,5488,5491,5493,5494,5555,5614,5627,5842,5909,5952,5953,5954,5956,5960,5963,5964,5965,5966,5969,5970,5973,5975,6003,6004,6006,6007,6008,6009,6010,6013,6014,6015,6016,6018,6019,6020,6021,6022,6023,6024,6029,6031,6054,6066,6083,6084,6101,6103,6119,6120,6121,6126,6128,6163,6164,6170,6171,6175,6177,6179,6182,6184,6185,6191,6199,6211,6223,6234,6238,6243,6246,6253,6256,6259,6261,6262,6264,6274,6284,6287,6302,6307,6314,6317,6321,6327,6328,6329,6336,6337,6343,6344,6350,6351,6352,6356,6359,6360,6369,6371,6374,6376,6378,6381,6383,6384,6385,6386,6387,6388,6389,6390,6393,6394,6397,6399,6400,6401,6402,6403,6405,6406,6407,6408,6410,6412,6413,6414,6416,6418,6419,6420,6421,6422,6423,6489,6517,6525,6526,6532,6533,6534,6535,6581,6681,6682,6684,6735,6736,6746,6784,6785,6787,6789,6797,6798,6799,6805,6815,6855,6862,6876,6927,6951,6952,6988,7020,7021,7022,7035,7036,7039,7041,7046,7065,7068,7069,7085,7086,7091,7092,7094,7096,7102,7125,7146,7167,7187,7192,7215,7310,7328,7330,7331,7349,7366,7391,7397,7401,7402,7403,7404,7405,7416,7418,7423,7565,7599,7682,7736,7759,7770,7772,7806,7817,7820,7935,7945,7981,8007,8016,8050,8052,8139,8141,8167,8169,8173,8217,8243,8252,8254,8275,8276,8279,8284,8287,8312,8313,8314,8316,8317,8391,8401,8403,8413,8414,8416,8423,8426,8462,8466,8472,8481,8514,8548,8560,8569,8570,8573,8575,8576,8697,8699,8780,8817,8857,8986,9001,9029,9033,9062,9063,9064,9067,9070,9075,9105,9135,9140,9144,9151,9168,9209,9213,9216,9229,9230,9239,9249,9257,9269,9272,9273,9287,9301,9307,9327,9410,9420,9427,9438,9442,9459,9462,9464,9475,9506,9516,9519,9530,9570,9574,9595,9601,9688,9689,9693,9711,9717,9719,9751,9771,9784,9795,9798,9799,9818,9849,9871,9896,9916,9932,9963,9983,9989,9992,10007,10009,10012,10032,10035,10037,10054,10074,10086,10093,10094,10095,10104,10118,10170,10173,10182,10184,10192,10212,10213,10224,10225,10226,10233,10241,10295,10298,10302,10328,10329,10416,10417,10418,10510,10511,10514,10515,10516,10517,10518,10519,10520,10521,10617,10666,10678,10680,10681,10762,10773,10792,10820,10898,10914,10916,10920,10922,10928,10929,11134,11208,11270,11287,11316,11320,11348,11350,11351,11352,11357,11389,11395,11412,11419,11424,11426,11437,11441,11450,11453,11472,11476,11480,11481,11482,11489,11496,11498,11513,11523,11525,11530,11532,11535,11536,11542,11567,11581,11586,11591,11625,11627,11644,11658,11677,11682,11693,11702,11717,11732,11738,11759,11764,11782,11789,11791,11811,11837,11855,11860,11869,11873,11876,11878,11880,11881,11893,11904,11905,11922,11923,11939,11941,12028,12097,12098,12266,12310,12312,12315,12342,12424,12426,12493,12508,12536,12586,12589,12591,12597,12606,12608,12661,12668,12689,12762,12763,12768,12802,12804,12828,12832,12834,12836,12853,12862,13231,13448,14027,14352,14618,14635,14642,14741,14796,14804,14816,14970,15016,15304,15521,15703,15706,15735,15752,16092,16122,16421,16872,17006,17141,17448,17468,17489,17490,17508,17573,17574,17605,17661,17662,17680,17780,17945,17949,17959,17984,17985,17992,18006,18022,18054,18061,18093,18107,18120,18131,18161,18273,18278,18287,18331,18345,18365,18378,18385,18386,18387,18396,18429,18491,18559,18574,18616,18697,18726,18835,18847,18866,18895,18928,18961,18964,18980,18993,19016,19032,19034,19043,19053,19056,19064,19075,19095,19136,19153,19167,19169,19186,19223,19232,19238,19239,19285,19311,19323,19381,19382,19383,19415,19418,19419,19422,19427,19438,19444,19446,19447,19449,19450,19460,19462,19523,19552,19563,19574,19578,19581,19583,19584,19587,19592,19613,19615,19642,19651,19685,19712,19714,19715,19729,19734,19755,19756,19759,19760,19762,19767,19775,19779,19780,19785,19787,19788,19802,19803,19808,19823,19848,19851,19882,19884,19895,19897,19898,19899,19904,19912,19913,19918,19925,19927,19932,19939,19946,19951,19964,20012,20016,20027,20031,20053,20075,20088,20089,20095,20104,20108,20128,20140,20152,20198,20243,20255,20281,20282,20283,20291,20301,20311,20329,20344,20347,20405,20453,20530,20532,20548,20569,20592,20600,20623,20626,20627,20629,20631,20635,20657,20661,20678,20700,20829,20888,20963,20978,20979,21062,21065,21092,21110,21117,21119,21195,21211,21301,21348,21353,21363,21369,21392,21394,21397,21457,21464,21478,21479,21575,21636,21637,21717,21719,21720,21721,21722,21723,21724,21732,21733,21737,22004,22006,22007,22012,22014,22051,22208,22246,22249,22276,22320,22401,22416,22417,22418,22426,22458,22481,22509,22530,22533,22560,22561,22562,22573,22579,22644,22647,22657,22676,22713,22760,22803,22820,22821,22826,22890,22895,22969,22979,22981,22996,23070]]],["+",[60,50,[[1,1,1,0,1,[[50,1,1,0,1]]],[3,2,2,1,3,[[140,1,1,1,2],[151,1,1,2,3]]],[4,3,3,3,6,[[155,1,1,3,4],[172,2,2,4,6]]],[5,4,3,6,9,[[192,1,1,6,7],[206,1,1,7,8],[207,2,1,8,9]]],[6,5,5,9,14,[[211,1,1,9,10],[227,1,1,10,11],[230,3,3,11,14]]],[8,2,2,14,16,[[236,1,1,14,15],[241,1,1,15,16]]],[9,1,1,16,17,[[284,1,1,16,17]]],[10,2,2,17,19,[[298,1,1,17,18],[299,1,1,18,19]]],[11,2,2,19,21,[[335,2,2,19,21]]],[12,1,1,21,22,[[356,1,1,21,22]]],[13,9,6,22,28,[[371,1,1,22,23],[374,1,1,23,24],[377,2,1,24,25],[394,2,1,25,26],[396,1,1,26,27],[397,2,1,27,28]]],[14,2,1,28,29,[[412,2,1,28,29]]],[15,1,1,29,30,[[415,1,1,29,30]]],[16,6,3,30,33,[[433,4,2,30,32],[434,2,1,32,33]]],[17,1,1,33,34,[[459,1,1,33,34]]],[18,2,2,34,36,[[549,1,1,34,35],[578,1,1,35,36]]],[22,5,4,36,40,[[695,1,1,36,37],[703,2,1,37,38],[726,1,1,38,39],[744,1,1,39,40]]],[23,8,8,40,48,[[747,1,1,40,41],[751,1,1,41,42],[761,1,1,42,43],[763,1,1,43,44],[777,1,1,44,45],[780,2,2,45,47],[796,1,1,47,48]]],[25,2,1,48,49,[[826,2,1,48,49]]],[26,1,1,49,50,[[858,1,1,49,50]]]],[1543,4465,4853,4980,5442,5443,5975,6376,6423,6525,6988,7069,7096,7102,7215,7349,8481,8986,9075,10173,10192,10914,11270,11357,11426,11789,11837,11873,12266,12342,12828,12834,12862,13448,15016,15521,17984,18120,18616,18928,19016,19153,19383,19422,19780,19848,19851,20283,21092,22004]]],["cities",[406,357,[[0,9,7,0,7,[[12,1,1,0,1],[18,4,2,1,3],[34,1,1,3,4],[40,2,2,4,6],[46,1,1,6,7]]],[2,7,6,7,13,[[114,4,3,7,10],[115,3,3,10,13]]],[3,35,25,13,38,[[129,2,2,13,15],[137,4,3,15,18],[147,1,1,18,19],[148,8,7,19,26],[151,20,12,26,38]]],[4,26,24,38,62,[[153,2,2,38,40],[154,3,3,40,43],[155,8,6,43,49],[156,2,2,49,51],[158,1,1,51,52],[161,1,1,52,53],[165,1,1,53,54],[171,6,6,54,60],[172,1,1,60,61],[173,1,1,61,62]]],[5,90,82,62,144,[[195,2,1,62,63],[196,5,5,63,68],[197,4,4,68,72],[199,8,8,72,80],[200,2,2,80,82],[201,12,12,82,94],[202,2,1,94,95],[203,3,2,95,97],[204,4,4,97,101],[205,13,13,101,114],[206,2,2,114,116],[207,32,27,116,143],[210,1,1,143,144]]],[6,7,7,144,151,[[220,1,1,144,145],[221,2,2,145,147],[222,1,1,147,148],[230,2,2,148,150],[231,1,1,150,151]]],[8,6,5,151,156,[[241,1,1,151,152],[242,1,1,152,153],[253,1,1,153,154],[265,2,1,154,155],[266,1,1,155,156]]],[9,7,7,156,163,[[268,2,2,156,158],[274,1,1,158,159],[276,1,1,159,160],[278,1,1,160,161],[286,1,1,161,162],[290,1,1,162,163]]],[10,14,12,163,175,[[294,1,1,163,164],[299,6,4,164,168],[300,1,1,168,169],[302,1,1,169,170],[303,1,1,170,171],[305,2,2,171,173],[310,1,1,173,174],[312,1,1,174,175]]],[11,14,12,175,187,[[315,1,1,175,176],[325,2,1,176,177],[329,6,5,177,182],[330,2,2,182,184],[331,1,1,184,185],[335,2,2,185,187]]],[12,22,21,187,208,[[339,2,2,187,189],[341,3,3,189,192],[343,10,9,192,201],[346,1,1,201,202],[347,1,1,202,203],[350,1,1,203,204],[355,1,1,204,205],[356,1,1,205,206],[357,1,1,206,207],[364,1,1,207,208]]],[13,47,41,208,249,[[367,1,1,208,209],[374,6,4,209,213],[375,1,1,213,214],[376,1,1,214,215],[377,2,2,215,217],[378,1,1,217,218],[379,1,1,218,219],[380,5,4,219,223],[381,1,1,223,224],[382,2,1,224,225],[383,7,6,225,231],[385,2,2,231,233],[386,1,1,233,234],[387,1,1,234,235],[389,1,1,235,236],[390,1,1,236,237],[391,1,1,237,238],[392,1,1,238,239],[393,1,1,239,240],[394,1,1,240,241],[397,5,4,241,245],[398,2,2,245,247],[399,1,1,247,248],[400,1,1,248,249]]],[14,4,3,249,252,[[404,2,1,249,250],[405,1,1,250,251],[412,1,1,251,252]]],[15,10,8,252,260,[[419,2,1,252,253],[420,1,1,253,254],[421,1,1,254,255],[422,1,1,255,256],[423,4,3,256,259],[424,1,1,259,260]]],[16,1,1,260,261,[[434,1,1,260,261]]],[17,1,1,261,262,[[450,1,1,261,262]]],[18,2,2,262,264,[[486,1,1,262,263],[546,1,1,263,264]]],[22,16,16,264,280,[[679,1,1,264,265],[684,1,1,265,266],[692,2,2,266,268],[695,2,2,268,270],[697,1,1,270,271],[711,1,1,271,272],[714,1,1,272,273],[715,1,1,273,274],[718,1,1,274,275],[720,1,1,275,276],[722,1,1,276,277],[732,1,1,277,278],[739,1,1,278,279],[742,1,1,279,280]]],[23,53,45,280,325,[[745,1,1,280,281],[746,2,2,281,283],[748,4,4,283,287],[749,2,2,287,289],[751,1,1,289,290],[752,1,1,290,291],[753,1,1,291,292],[754,1,1,292,293],[755,3,3,293,296],[757,1,1,296,297],[764,1,1,297,298],[766,1,1,298,299],[769,1,1,299,300],[770,1,1,300,301],[775,3,3,301,304],[776,4,1,304,305],[777,6,3,305,308],[778,5,3,308,311],[784,2,2,311,313],[788,4,4,313,317],[792,4,4,317,321],[793,2,2,321,323],[794,1,1,323,324],[795,1,1,324,325]]],[24,1,1,325,326,[[801,1,1,325,326]]],[25,16,14,326,340,[[807,1,1,326,327],[813,1,1,327,328],[820,1,1,328,329],[827,1,1,329,330],[830,2,1,330,331],[831,2,1,331,332],[836,2,2,332,334],[837,5,5,334,339],[840,1,1,339,340]]],[26,1,1,340,341,[[860,1,1,340,341]]],[27,4,3,341,344,[[869,2,1,341,342],[872,1,1,342,343],[874,1,1,343,344]]],[29,3,3,344,347,[[882,2,2,344,346],[887,1,1,346,347]]],[30,1,1,347,348,[[888,1,1,347,348]]],[32,3,3,348,351,[[897,2,2,348,350],[899,1,1,350,351]]],[35,2,2,351,353,[[906,1,1,351,352],[908,1,1,352,353]]],[37,4,4,353,357,[[911,2,2,353,355],[917,1,1,355,356],[918,1,1,356,357]]]],[330,482,486,1016,1230,1243,1441,3501,3502,3503,3549,3555,3557,4094,4103,4342,4343,4365,4674,4734,4735,4742,4744,4751,4754,4756,4847,4848,4849,4850,4851,4852,4853,4856,4857,4858,4859,4860,4914,4920,4972,4973,4975,4979,4980,4982,4985,4987,4994,5045,5046,5096,5158,5284,5407,5408,5411,5413,5415,5417,5442,5449,6054,6066,6083,6084,6101,6103,6119,6120,6121,6128,6164,6171,6175,6177,6179,6182,6184,6185,6191,6199,6211,6223,6234,6238,6243,6246,6253,6256,6259,6261,6262,6264,6274,6284,6287,6302,6314,6317,6321,6327,6328,6329,6336,6337,6343,6344,6351,6352,6356,6359,6360,6369,6374,6381,6383,6384,6385,6386,6387,6388,6389,6390,6397,6399,6400,6401,6403,6405,6406,6407,6408,6410,6412,6413,6414,6416,6418,6420,6421,6422,6423,6489,6815,6855,6862,6876,7068,7102,7125,7349,7366,7682,8007,8016,8050,8052,8217,8252,8317,8560,8699,8857,9062,9063,9064,9070,9105,9168,9216,9269,9272,9442,9519,9601,9896,9989,9992,10007,10009,10012,10035,10037,10086,10170,10184,10328,10329,10416,10417,10418,10511,10514,10515,10516,10517,10518,10519,10520,10521,10617,10666,10762,10898,10920,10929,11134,11208,11348,11350,11351,11352,11389,11412,11419,11424,11441,11472,11480,11481,11482,11489,11498,11513,11525,11530,11532,11535,11536,11542,11581,11586,11591,11627,11658,11682,11717,11738,11759,11782,11855,11860,11869,11873,11876,11904,11922,11939,12097,12098,12266,12493,12508,12536,12586,12589,12591,12608,12668,12836,13231,14027,14970,17661,17780,17945,17949,17985,17992,18022,18287,18331,18378,18429,18491,18559,18726,18847,18895,18961,18980,18993,19032,19034,19043,19053,19064,19075,19136,19167,19186,19223,19232,19238,19239,19285,19438,19460,19552,19574,19712,19714,19715,19775,19785,19787,19788,19802,19808,19823,19946,19951,20012,20016,20027,20031,20089,20095,20104,20108,20128,20140,20198,20255,20453,20569,20700,20888,21119,21195,21211,21348,21353,21363,21369,21392,21394,21397,21457,22051,22208,22246,22276,22416,22418,22509,22530,22644,22647,22676,22803,22826,22890,22895,22969,22996]]],["city",[623,554,[[0,40,36,0,36,[[3,2,1,0,1],[9,2,2,1,3],[10,3,3,3,6],[17,3,3,6,9],[18,8,8,9,17],[22,2,2,17,19],[23,3,3,19,22],[25,1,1,22,23],[27,1,1,23,24],[32,2,1,24,25],[33,7,5,25,30],[35,3,3,30,33],[40,1,1,33,34],[43,2,2,34,36]]],[1,2,2,36,38,[[58,2,2,36,38]]],[2,7,7,38,45,[[103,4,4,38,42],[114,3,3,42,45]]],[3,12,11,45,56,[[136,1,1,45,46],[137,2,2,46,48],[138,1,1,48,49],[151,8,7,49,56]]],[4,29,27,56,83,[[154,2,2,56,58],[155,1,1,58,59],[165,3,3,59,62],[171,1,1,62,63],[172,4,4,63,67],[173,7,6,67,73],[174,7,6,73,79],[177,1,1,79,80],[180,2,2,80,82],[186,1,1,82,83]]],[5,64,49,83,132,[[189,1,1,83,84],[192,15,12,84,96],[194,27,20,96,116],[196,1,1,116,117],[197,1,1,117,118],[199,2,2,118,120],[201,1,1,120,121],[204,1,1,121,122],[205,3,2,122,124],[206,6,2,124,126],[207,6,6,126,132]]],[6,45,38,132,170,[[211,8,6,132,138],[213,1,1,138,139],[216,3,3,139,142],[218,3,3,142,145],[219,11,8,145,153],[224,1,1,153,154],[226,2,2,154,156],[228,4,3,156,159],[229,5,5,159,164],[230,7,6,164,170]]],[7,4,4,170,174,[[232,1,1,170,171],[233,1,1,171,172],[234,1,1,172,173],[235,1,1,173,174]]],[8,27,24,174,198,[[239,2,1,174,175],[240,4,3,175,178],[243,1,1,178,179],[244,9,8,179,187],[245,1,1,187,188],[250,1,1,188,189],[255,4,4,189,193],[257,1,1,193,194],[258,1,1,194,195],[262,1,1,195,196],[263,1,1,196,197],[265,1,1,197,198]]],[9,37,35,198,233,[[271,2,2,198,200],[272,3,3,200,203],[276,2,2,203,205],[277,4,4,205,209],[278,6,5,209,214],[281,8,8,214,222],[283,4,3,222,225],[285,2,2,225,227],[286,5,5,227,232],[290,1,1,232,233]]],[10,35,33,233,266,[[292,1,1,233,234],[293,1,1,234,235],[298,3,3,235,238],[299,1,1,238,239],[301,4,4,239,243],[303,2,2,243,245],[304,4,4,245,249],[305,2,2,249,251],[306,3,3,251,254],[307,1,1,254,255],[310,5,4,255,259],[311,5,4,259,263],[312,3,3,263,266]]],[11,49,40,266,306,[[314,3,2,266,268],[315,2,1,268,269],[318,3,3,269,272],[319,5,3,272,275],[320,1,1,275,276],[321,2,2,276,278],[322,4,4,278,282],[323,1,1,282,283],[324,1,1,283,284],[326,1,1,284,285],[327,2,2,285,287],[328,1,1,287,288],[329,1,1,288,289],[330,2,2,289,291],[331,4,4,291,295],[332,3,2,295,297],[335,3,2,297,299],[336,2,2,299,301],[337,8,5,301,306]]],[12,14,13,306,319,[[338,3,3,306,309],[343,1,1,309,310],[348,4,3,310,313],[350,1,1,313,314],[352,2,2,314,316],[356,2,2,316,318],[357,1,1,318,319]]],[13,32,30,319,349,[[372,3,3,319,322],[375,1,1,322,323],[377,1,1,323,324],[378,2,2,324,326],[380,1,1,326,327],[381,2,1,327,328],[382,1,1,328,329],[384,1,1,329,330],[385,2,1,330,331],[387,2,2,331,333],[389,1,1,333,334],[390,2,2,334,336],[391,1,1,336,337],[393,1,1,337,338],[394,1,1,338,339],[395,1,1,339,340],[396,1,1,340,341],[398,5,5,341,346],[399,2,2,346,348],[400,1,1,348,349]]],[14,1,1,349,350,[[404,1,1,349,350]]],[15,10,10,350,360,[[414,3,3,350,353],[419,2,2,353,355],[423,3,3,355,358],[424,1,1,358,359],[425,1,1,359,360]]],[16,6,6,360,366,[[428,1,1,360,361],[429,2,2,361,363],[431,2,2,363,365],[433,1,1,365,366]]],[18,16,15,366,381,[[508,1,1,366,367],[523,1,1,367,368],[525,3,2,368,370],[532,1,1,370,371],[536,2,2,371,373],[537,1,1,373,374],[564,1,1,374,375],[584,3,3,375,378],[585,1,1,378,379],[599,1,1,379,380],[604,1,1,380,381]]],[19,4,4,381,385,[[628,1,1,381,382],[643,1,1,382,383],[648,1,1,383,384],[652,1,1,384,385]]],[20,5,5,385,390,[[665,1,1,385,386],[666,1,1,386,387],[667,2,2,387,389],[668,1,1,389,390]]],[21,3,3,390,393,[[673,2,2,390,392],[675,1,1,392,393]]],[22,25,23,393,416,[[679,2,2,393,395],[692,1,1,395,396],[697,3,2,396,398],[700,2,2,398,400],[701,1,1,400,401],[702,1,1,401,402],[704,1,1,402,403],[705,1,1,403,404],[710,2,2,404,406],[714,1,1,406,407],[715,4,4,407,411],[716,2,1,411,412],[723,1,1,412,413],[730,1,1,413,414],[738,1,1,414,415],[740,1,1,415,416]]],[23,77,68,416,484,[[745,1,1,416,417],[748,2,1,417,418],[750,1,1,418,419],[752,1,1,419,420],[758,1,1,420,421],[759,1,1,421,422],[761,3,2,422,424],[763,4,4,424,428],[764,1,1,428,429],[765,5,5,429,434],[766,2,1,434,435],[767,1,1,435,436],[769,1,1,436,437],[770,6,6,437,443],[771,2,2,443,445],[773,2,2,445,447],[774,1,1,447,448],[775,1,1,448,449],[776,9,7,449,456],[777,1,1,456,457],[778,2,2,457,459],[781,3,3,459,462],[782,7,7,462,469],[783,4,4,469,473],[785,1,1,473,474],[790,1,1,474,475],[791,1,1,475,476],[792,2,1,476,477],[793,1,1,477,478],[795,1,1,478,479],[796,8,5,479,484]]],[24,5,5,484,489,[[797,2,2,484,486],[798,2,2,486,488],[799,1,1,488,489]]],[25,43,40,489,529,[[805,2,2,489,491],[806,1,1,491,492],[808,2,2,492,494],[810,5,5,494,499],[811,1,1,499,500],[812,4,3,500,503],[818,1,1,503,504],[822,1,1,504,505],[823,2,2,505,507],[825,2,2,507,509],[827,3,3,509,512],[834,1,1,512,513],[840,1,1,513,514],[841,2,2,514,516],[844,1,1,516,517],[846,3,2,517,519],[849,11,10,519,529]]],[26,4,4,529,533,[[858,4,4,529,533]]],[27,1,1,533,534,[[872,1,1,533,534]]],[28,1,1,534,535,[[877,1,1,534,535]]],[29,8,6,535,541,[[881,2,1,535,536],[882,3,2,536,538],[883,1,1,538,539],[884,1,1,539,540],[885,1,1,540,541]]],[31,8,6,541,547,[[889,1,1,541,542],[891,3,3,542,545],[892,4,2,545,547]]],[32,1,1,547,548,[[898,1,1,547,548]]],[33,1,1,548,549,[[902,1,1,548,549]]],[35,2,2,549,551,[[907,1,1,549,550],[908,1,1,550,551]]],[37,5,3,551,554,[[918,2,2,551,553],[924,3,1,553,554]]]],[96,245,246,270,271,274,448,450,452,461,469,471,472,473,477,478,479,581,589,601,602,604,725,792,978,1000,1004,1005,1007,1008,1072,1075,1079,1243,1328,1337,1771,1775,3151,3152,3156,3164,3498,3499,3502,4327,4366,4367,4411,4849,4850,4870,4871,4872,4873,4877,4972,4974,4981,5285,5287,5288,5418,5437,5441,5446,5447,5450,5451,5453,5466,5467,5468,5485,5487,5488,5491,5493,5494,5555,5614,5627,5842,5909,5952,5953,5954,5956,5960,5963,5964,5965,5966,5969,5970,5973,6003,6004,6006,6007,6008,6009,6010,6013,6014,6015,6016,6018,6019,6020,6021,6022,6023,6024,6029,6031,6066,6126,6163,6170,6264,6307,6350,6371,6376,6378,6393,6394,6402,6408,6413,6419,6517,6526,6532,6533,6534,6535,6581,6681,6682,6684,6735,6736,6746,6784,6785,6787,6789,6797,6798,6799,6805,6927,6951,6952,7020,7021,7022,7035,7036,7039,7041,7046,7065,7085,7086,7091,7092,7094,7146,7167,7187,7192,7310,7328,7330,7331,7391,7397,7401,7402,7403,7404,7405,7416,7418,7423,7565,7736,7759,7770,7772,7806,7820,7935,7945,7981,8139,8141,8167,8169,8173,8243,8254,8275,8276,8279,8284,8287,8312,8313,8314,8316,8391,8401,8403,8413,8414,8416,8423,8426,8462,8466,8472,8514,8548,8569,8570,8573,8575,8576,8697,8780,8817,9001,9029,9033,9067,9135,9140,9144,9151,9209,9213,9229,9230,9239,9249,9257,9273,9287,9301,9307,9327,9410,9420,9427,9438,9459,9462,9464,9475,9506,9516,9530,9570,9574,9595,9688,9689,9693,9711,9717,9719,9751,9771,9784,9795,9798,9799,9818,9849,9871,9916,9932,9963,9983,9992,10032,10054,10074,10093,10094,10095,10104,10118,10173,10182,10212,10213,10224,10225,10226,10233,10241,10295,10298,10302,10510,10678,10680,10681,10773,10792,10820,10916,10922,10928,11287,11316,11320,11395,11437,11450,11453,11476,11496,11523,11567,11581,11625,11644,11677,11693,11702,11732,11764,11791,11811,11837,11878,11880,11881,11893,11905,11922,11923,11941,12028,12310,12312,12315,12424,12426,12589,12597,12606,12661,12689,12762,12763,12768,12802,12804,12832,14352,14618,14635,14642,14741,14796,14804,14816,15304,15703,15706,15735,15752,16092,16122,16421,16872,17006,17141,17448,17468,17489,17490,17508,17573,17574,17605,17662,17680,17959,18006,18022,18054,18061,18093,18107,18131,18161,18273,18278,18345,18365,18385,18386,18387,18396,18574,18697,18835,18866,18964,19056,19095,19169,19311,19323,19381,19382,19415,19418,19419,19422,19427,19444,19446,19447,19449,19450,19462,19523,19563,19578,19581,19583,19584,19587,19592,19613,19615,19642,19651,19685,19729,19734,19755,19756,19759,19760,19762,19767,19779,19803,19823,19882,19884,19895,19897,19898,19899,19904,19912,19913,19918,19925,19927,19932,19939,19964,20053,20075,20088,20152,20243,20281,20282,20283,20291,20301,20311,20329,20344,20347,20405,20530,20532,20548,20592,20600,20623,20626,20627,20629,20631,20635,20657,20661,20678,20829,20963,20978,20979,21062,21065,21110,21117,21119,21301,21464,21478,21479,21575,21636,21637,21717,21719,21720,21721,21722,21723,21724,21732,21733,21737,22006,22007,22012,22014,22249,22320,22401,22417,22418,22426,22458,22481,22533,22560,22561,22562,22573,22579,22657,22713,22820,22821,22979,22981,23070]]],["town",[4,4,[[8,3,3,0,3,[[251,1,1,0,1],[258,1,1,1,2],[262,1,1,2,3]]],[34,1,1,3,4,[[904,1,1,3,4]]]],[7599,7817,7935,22760]]],["towns",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12853]]]]},{"k":"H5893","v":[["Ir",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10547]]]]},{"k":"H5894","v":[["*",[3,3,[[26,3,3,0,3,[[853,3,3,0,3]]]],[21850,21854,21860]]],["watcher",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21850,21860]]],["watchers",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21854]]]]},{"k":"H5895","v":[["*",[8,8,[[0,2,2,0,2,[[31,1,1,0,1],[48,1,1,1,2]]],[6,2,2,2,4,[[220,1,1,2,3],[222,1,1,3,4]]],[17,1,1,4,5,[[446,1,1,4,5]]],[22,2,2,5,7,[[708,2,2,5,7]]],[37,1,1,7,8,[[919,1,1,7,8]]]],[943,1484,6815,6883,13120,18223,18241,23008]]],["asses",[2,2,[[22,2,2,0,2,[[708,2,2,0,2]]]],[18223,18241]]],["colt",[2,2,[[17,1,1,0,1,[[446,1,1,0,1]]],[37,1,1,1,2,[[919,1,1,1,2]]]],[13120,23008]]],["colts",[2,2,[[6,2,2,0,2,[[220,1,1,0,1],[222,1,1,1,2]]]],[6815,6883]]],["foal",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1484]]],["foals",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[943]]]]},{"k":"H5896","v":[["Ira",[6,6,[[9,3,3,0,3,[[286,1,1,0,1],[289,2,2,1,3]]],[12,3,3,3,6,[[348,2,2,3,5],[364,1,1,5,6]]]],[8580,8679,8691,10701,10713,11118]]]]},{"k":"H5897","v":[["Irad",[2,1,[[0,2,1,0,1,[[3,2,1,0,1]]]],[97]]]]},{"k":"H5898","v":[["Salt",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6264]]]]},{"k":"H5899","v":[["trees",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11779]]]]},{"k":"H5900","v":[["Iru",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10400]]]]},{"k":"H5901","v":[["Iri",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10542]]]]},{"k":"H5902","v":[["Iram",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1083,10306]]]]},{"k":"H5903","v":[["*",[10,10,[[0,3,3,0,3,[[2,3,3,0,3]]],[4,1,1,3,4,[[180,1,1,3,4]]],[25,6,6,4,10,[[817,3,3,4,7],[819,2,2,7,9],[824,1,1,9,10]]]],[62,65,66,5659,20769,20784,20801,20856,20865,21036]]],["naked",[9,9,[[0,3,3,0,3,[[2,3,3,0,3]]],[25,6,6,3,9,[[817,3,3,3,6],[819,2,2,6,8],[824,1,1,8,9]]]],[62,65,66,20769,20784,20801,20856,20865,21036]]],["nakedness",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5659]]]]},{"k":"H5904","v":[["Irnahash",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10397]]]]},{"k":"H5905","v":[["Irshemesh",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6362]]]]},{"k":"H5906","v":[["Arcturus",[2,2,[[17,2,2,0,2,[[444,1,1,0,1],[473,1,1,1,2]]]],[13060,13825]]]]},{"k":"H5907","v":[["Achbor",[7,7,[[0,2,2,0,2,[[35,2,2,0,2]]],[11,2,2,2,4,[[334,2,2,2,4]]],[12,1,1,4,5,[[338,1,1,4,5]]],[23,2,2,5,7,[[770,1,1,5,6],[780,1,1,6,7]]]],[1078,1079,10157,10159,10301,19594,19854]]]]},{"k":"H5908","v":[["spider's",[2,2,[[17,1,1,0,1,[[443,1,1,0,1]]],[22,1,1,1,2,[[737,1,1,1,2]]]],[13043,18805]]]]},{"k":"H5909","v":[["*",[6,6,[[2,1,1,0,1,[[100,1,1,0,1]]],[8,4,4,1,5,[[241,4,4,1,5]]],[22,1,1,5,6,[[744,1,1,5,6]]]],[3026,7335,7336,7342,7349,18939]]],["mice",[4,4,[[8,4,4,0,4,[[241,4,4,0,4]]]],[7335,7336,7342,7349]]],["mouse",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[22,1,1,1,2,[[744,1,1,1,2]]]],[3026,18939]]]]},{"k":"H5910","v":[["Accho",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6540]]]]},{"k":"H5911","v":[["Achor",[5,5,[[5,3,3,0,3,[[193,2,2,0,2],[201,1,1,2,3]]],[22,1,1,3,4,[[743,1,1,3,4]]],[27,1,1,4,5,[[863,1,1,4,5]]]],[6000,6002,6209,18907,22120]]]]},{"k":"H5912","v":[["Achan",[6,6,[[5,6,6,0,6,[[193,5,5,0,5],[208,1,1,5,6]]]],[5977,5994,5995,5996,6000,6446]]]]},{"k":"H5913","v":[["tinkling",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17723]]]]},{"k":"H5914","v":[["*",[2,2,[[19,1,1,0,1,[[634,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]]],[16597,17725]]],["ornaments",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17725]]],["stocks",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16597]]]]},{"k":"H5915","v":[["Achsah",[3,3,[[5,2,2,0,2,[[201,2,2,0,2]]],[12,1,1,2,3,[[339,1,1,2,3]]]],[6218,6219,10355]]]]},{"k":"H5916","v":[["*",[14,13,[[0,1,1,0,1,[[33,1,1,0,1]]],[5,3,2,1,3,[[192,1,1,1,2],[193,2,1,2,3]]],[6,1,1,3,4,[[221,1,1,3,4]]],[8,1,1,4,5,[[249,1,1,4,5]]],[10,2,2,5,7,[[308,2,2,5,7]]],[12,1,1,7,8,[[339,1,1,7,8]]],[18,1,1,8,9,[[516,1,1,8,9]]],[19,4,4,9,13,[[638,2,2,9,11],[642,2,2,11,13]]]],[1010,5967,6001,6864,7537,9358,9359,10313,14514,16705,16717,16813,16834]]],["+",[2,2,[[8,1,1,0,1,[[249,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]]],[7537,9359]]],["stirred",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14514]]],["trouble",[4,4,[[5,2,2,0,2,[[192,1,1,0,1],[193,1,1,1,2]]],[6,1,1,2,3,[[221,1,1,2,3]]],[19,1,1,3,4,[[642,1,1,3,4]]]],[5967,6001,6864,16813]]],["troubled",[2,2,[[0,1,1,0,1,[[33,1,1,0,1]]],[5,1,1,1,2,[[193,1,1,1,2]]]],[1010,6001]]],["troubler",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10313]]],["troubleth",[4,4,[[10,1,1,0,1,[[308,1,1,0,1]]],[19,3,3,1,4,[[638,2,2,1,3],[642,1,1,3,4]]]],[9358,16705,16717,16834]]]]},{"k":"H5917","v":[["Achar",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10313]]]]},{"k":"H5918","v":[["Ocran",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3617,3685,3922,3927,4014]]]]},{"k":"H5919","v":[["*",[3,3,[[6,2,2,0,2,[[211,2,2,0,2]]],[18,1,1,2,3,[[617,1,1,2,3]]]],[6521,6522,16266]]],["Achsah",[2,2,[[6,2,2,0,2,[[211,2,2,0,2]]]],[6521,6522]]],["adders'",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16266]]]]},{"k":"H5920","v":[["*",[6,6,[[0,2,2,0,2,[[26,1,1,0,1],[48,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[18,1,1,3,4,[[527,1,1,3,4]]],[27,2,2,4,6,[[868,1,1,4,5],[872,1,1,5,6]]]],[766,1498,8654,14672,22194,22247]]],["+",[3,3,[[0,2,2,0,2,[[26,1,1,0,1],[48,1,1,1,2]]],[18,1,1,2,3,[[527,1,1,2,3]]]],[766,1498,14672]]],["High",[2,2,[[27,2,2,0,2,[[868,1,1,0,1],[872,1,1,1,2]]]],[22194,22247]]],["high",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8654]]]]},{"k":"H5921","v":[["*",[5665,4437,[[0,302,248,0,248,[[0,12,10,0,10],[1,4,4,10,14],[2,1,1,14,15],[3,1,1,15,16],[5,4,4,16,20],[6,17,13,20,33],[7,11,10,33,43],[8,6,5,43,48],[9,1,1,48,49],[10,5,4,49,53],[11,2,2,53,55],[12,2,2,55,57],[13,2,2,57,59],[14,3,2,59,61],[15,5,4,61,65],[16,3,3,65,68],[17,8,6,68,74],[18,11,9,74,83],[19,6,5,83,88],[20,6,5,88,93],[21,4,4,93,97],[22,2,2,97,99],[23,18,14,99,113],[24,5,4,113,117],[25,7,7,117,124],[26,7,5,124,129],[27,5,4,129,133],[28,8,6,133,139],[29,6,6,139,145],[30,8,8,145,153],[31,5,4,153,157],[32,7,5,157,162],[33,5,5,162,167],[34,5,4,167,171],[36,5,3,171,174],[37,9,8,174,182],[38,2,2,182,184],[39,12,7,184,191],[40,18,15,191,206],[41,7,6,206,212],[42,6,4,212,216],[43,3,3,216,219],[44,6,4,219,223],[45,3,2,223,225],[46,5,5,225,230],[47,10,7,230,237],[48,7,5,237,242],[49,7,6,242,248]]],[1,373,272,248,520,[[50,4,4,248,252],[51,6,5,252,257],[52,6,4,257,261],[53,1,1,261,262],[54,7,6,262,268],[55,1,1,268,269],[56,8,4,269,273],[57,11,8,273,281],[58,10,4,281,285],[59,10,8,285,293],[60,3,2,293,295],[61,17,11,295,306],[62,3,3,306,309],[63,14,10,309,319],[64,6,6,319,325],[65,12,8,325,333],[66,8,7,333,340],[67,9,9,340,349],[68,5,5,349,354],[69,10,8,354,362],[70,5,4,362,366],[71,8,3,366,369],[72,4,4,369,373],[73,4,3,373,376],[74,13,10,376,386],[75,12,9,386,395],[76,5,4,395,399],[77,36,23,399,422],[78,32,18,422,440],[79,16,11,440,451],[80,1,1,451,452],[81,11,10,452,462],[82,6,6,462,468],[83,14,10,468,478],[85,4,3,478,481],[86,9,6,481,487],[87,4,4,487,491],[88,24,17,491,508],[89,14,12,508,520]]],[2,327,219,520,739,[[90,16,8,520,528],[91,10,7,528,535],[92,24,10,535,545],[93,30,22,545,567],[94,14,9,567,576],[95,19,10,576,586],[96,12,7,586,593],[97,34,19,593,612],[98,9,8,612,620],[99,7,7,620,627],[100,19,14,627,641],[101,3,3,641,644],[102,1,1,644,645],[103,37,19,645,664],[104,19,12,664,676],[105,24,17,676,693],[106,5,4,693,697],[107,2,2,697,699],[108,6,5,699,704],[110,3,3,704,707],[111,4,4,707,711],[112,4,3,711,714],[113,5,5,714,719],[114,3,3,719,722],[115,10,10,722,732],[116,7,7,732,739]]],[3,307,242,739,981,[[117,7,4,739,743],[118,7,7,743,750],[119,10,9,750,759],[120,24,16,759,775],[121,9,6,775,781],[122,13,11,781,792],[123,5,4,792,796],[124,8,6,796,802],[125,15,8,802,810],[126,20,19,810,829],[127,14,9,829,838],[128,4,4,838,842],[129,5,4,842,846],[130,14,10,846,856],[131,8,5,856,861],[132,26,18,861,879],[133,5,4,879,883],[134,6,6,883,889],[135,12,9,889,898],[136,6,5,898,903],[137,7,7,903,910],[138,5,5,910,915],[139,5,5,915,920],[140,3,2,920,922],[141,6,4,922,926],[142,6,4,926,930],[143,7,6,930,936],[144,5,5,936,941],[145,1,1,941,942],[146,14,10,942,952],[147,7,7,952,959],[148,1,1,959,960],[149,9,8,960,968],[150,2,2,968,970],[151,6,6,970,976],[152,5,5,976,981]]],[4,205,169,981,1150,[[153,1,1,981,982],[154,2,2,982,984],[155,2,2,984,986],[156,11,10,986,996],[157,6,5,996,1001],[158,4,4,1001,1005],[159,5,5,1005,1010],[160,4,3,1010,1013],[161,5,5,1013,1018],[162,4,3,1018,1021],[163,12,8,1021,1029],[164,9,7,1029,1036],[165,4,3,1036,1039],[166,1,1,1039,1040],[167,4,4,1040,1044],[168,2,1,1044,1045],[169,12,7,1045,1052],[170,1,1,1052,1053],[171,7,6,1053,1059],[172,7,6,1059,1065],[173,7,7,1065,1072],[174,10,6,1072,1078],[175,6,5,1078,1083],[176,7,5,1083,1088],[177,5,5,1088,1093],[178,2,2,1093,1095],[179,6,6,1095,1101],[180,21,18,1101,1119],[181,6,5,1119,1124],[182,7,5,1124,1129],[183,5,5,1129,1134],[184,12,9,1134,1143],[185,5,4,1143,1147],[186,3,3,1147,1150]]],[5,84,66,1150,1216,[[188,6,5,1150,1155],[189,2,2,1155,1157],[190,2,2,1157,1159],[191,4,3,1159,1162],[193,6,4,1162,1166],[194,5,3,1166,1169],[195,4,3,1169,1172],[196,16,11,1172,1183],[197,4,3,1183,1186],[198,1,1,1186,1187],[199,5,4,1187,1191],[200,2,2,1191,1193],[201,3,3,1193,1196],[203,1,1,1196,1197],[204,6,5,1197,1202],[205,3,3,1202,1205],[208,7,6,1205,1211],[209,6,4,1211,1215],[210,1,1,1215,1216]]],[6,128,103,1216,1319,[[211,1,1,1216,1217],[213,8,6,1217,1223],[214,2,2,1223,1225],[215,5,4,1225,1229],[216,15,13,1229,1242],[217,6,6,1242,1248],[218,2,2,1248,1250],[219,30,24,1250,1274],[220,1,1,1274,1275],[221,7,5,1275,1280],[222,2,2,1280,1282],[223,4,3,1282,1285],[224,4,4,1285,1289],[225,6,4,1289,1293],[226,18,11,1293,1304],[228,5,4,1304,1308],[229,7,7,1308,1315],[230,5,4,1315,1319]]],[7,13,11,1319,1330,[[232,1,1,1319,1320],[233,4,4,1320,1324],[234,4,3,1324,1327],[235,4,3,1327,1330]]],[8,167,147,1330,1477,[[236,6,5,1330,1335],[237,5,5,1335,1340],[239,7,6,1340,1346],[240,5,3,1346,1349],[241,7,5,1349,1354],[242,1,1,1354,1355],[243,4,4,1355,1359],[244,4,4,1359,1363],[245,6,5,1363,1368],[246,5,5,1368,1373],[247,6,5,1373,1378],[248,6,6,1378,1384],[249,9,8,1384,1392],[250,10,9,1392,1401],[251,3,3,1401,1404],[252,14,13,1404,1417],[253,2,2,1417,1419],[254,4,3,1419,1422],[255,7,7,1422,1429],[256,2,2,1429,1431],[257,9,7,1431,1438],[258,5,5,1438,1443],[259,5,5,1443,1448],[260,13,11,1448,1459],[261,6,5,1459,1464],[262,3,2,1464,1466],[263,3,3,1466,1469],[265,8,6,1469,1475],[266,2,2,1475,1477]]],[9,197,154,1477,1631,[[267,19,13,1477,1490],[268,16,10,1490,1500],[269,8,6,1500,1506],[270,4,4,1506,1510],[271,9,7,1510,1517],[272,6,5,1517,1522],[273,8,6,1522,1528],[274,3,3,1528,1531],[275,5,5,1531,1536],[276,1,1,1536,1537],[277,12,8,1537,1545],[278,8,6,1545,1551],[279,14,11,1551,1562],[280,11,9,1562,1571],[281,9,8,1571,1579],[282,3,3,1579,1582],[283,9,6,1582,1588],[284,11,11,1588,1599],[285,11,9,1599,1608],[286,12,8,1608,1616],[287,5,3,1616,1619],[288,5,4,1619,1623],[289,3,3,1623,1626],[290,5,5,1626,1631]]],[10,265,209,1631,1840,[[291,20,16,1631,1647],[292,16,13,1647,1660],[293,4,4,1660,1664],[294,13,8,1664,1672],[295,4,4,1672,1676],[296,11,7,1676,1683],[297,30,20,1683,1703],[298,14,14,1703,1717],[299,12,7,1717,1724],[300,6,5,1724,1729],[301,10,9,1729,1738],[302,12,10,1738,1748],[303,14,8,1748,1756],[304,10,9,1756,1765],[305,14,11,1765,1776],[306,21,18,1776,1794],[307,8,7,1794,1801],[308,13,10,1801,1811],[309,2,2,1811,1813],[310,11,10,1813,1823],[311,5,4,1823,1827],[312,15,13,1827,1840]]],[11,242,192,1840,2032,[[313,3,3,1840,1843],[314,7,6,1843,1849],[315,8,6,1849,1855],[316,14,10,1855,1865],[317,3,3,1865,1868],[318,8,7,1868,1875],[319,5,3,1875,1878],[320,6,5,1878,1883],[321,5,5,1883,1888],[322,13,11,1888,1899],[323,7,7,1899,1906],[324,8,7,1906,1913],[325,11,10,1913,1923],[326,7,6,1923,1929],[327,20,19,1929,1948],[328,13,9,1948,1957],[329,9,8,1957,1965],[330,22,13,1965,1978],[331,6,5,1978,1983],[332,5,4,1983,1987],[333,7,6,1987,1993],[334,13,8,1993,2001],[335,19,16,2001,2017],[336,8,5,2017,2022],[337,15,10,2022,2032]]],[12,170,140,2032,2172,[[342,3,3,2032,2035],[343,7,5,2035,2040],[344,2,2,2040,2042],[346,12,11,2042,2053],[347,4,4,2053,2057],[348,9,9,2057,2066],[349,12,11,2066,2077],[350,6,3,2077,2080],[351,6,6,2080,2086],[352,3,3,2086,2089],[353,3,3,2089,2092],[354,7,6,2092,2098],[355,5,5,2098,2103],[356,2,2,2103,2105],[357,2,1,2105,2106],[358,9,8,2106,2114],[359,7,7,2114,2121],[360,7,5,2121,2126],[362,6,3,2126,2129],[363,8,8,2129,2137],[364,29,22,2137,2159],[365,6,4,2159,2163],[366,15,9,2163,2172]]],[13,312,243,2172,2415,[[367,6,5,2172,2177],[368,4,4,2177,2181],[369,10,9,2181,2190],[370,7,5,2190,2195],[371,4,3,2195,2198],[372,10,9,2198,2207],[373,13,9,2207,2216],[374,6,5,2216,2221],[375,13,9,2221,2230],[376,8,7,2230,2237],[377,1,1,2237,2238],[378,3,3,2238,2241],[379,9,8,2241,2249],[380,3,2,2249,2251],[381,5,5,2251,2256],[382,9,7,2256,2263],[383,5,5,2263,2268],[384,9,8,2268,2276],[385,7,5,2276,2281],[386,18,17,2281,2298],[387,5,4,2298,2302],[388,2,2,2302,2304],[389,9,7,2304,2311],[390,12,10,2311,2321],[391,6,5,2321,2326],[392,14,9,2326,2335],[393,2,2,2335,2337],[394,11,8,2337,2345],[395,10,7,2345,2352],[396,8,7,2352,2359],[397,6,5,2359,2364],[398,24,17,2364,2381],[399,7,7,2381,2388],[400,20,11,2388,2399],[401,15,9,2399,2408],[402,11,7,2408,2415]]],[14,47,41,2415,2456,[[403,3,3,2415,2418],[404,2,2,2418,2420],[405,9,6,2420,2426],[406,3,3,2426,2429],[408,1,1,2429,2430],[409,5,4,2430,2434],[410,11,9,2434,2443],[411,5,5,2443,2448],[412,8,8,2448,2456]]],[15,118,87,2456,2543,[[413,4,2,2456,2458],[414,8,6,2458,2464],[415,16,11,2464,2475],[416,7,7,2475,2482],[417,8,6,2482,2488],[418,5,5,2488,2493],[419,2,2,2493,2495],[420,5,4,2495,2499],[421,17,15,2499,2514],[422,7,5,2514,2519],[423,7,5,2519,2524],[424,16,8,2524,2532],[425,16,11,2532,2543]]],[16,79,57,2543,2600,[[426,10,7,2543,2550],[427,4,4,2550,2554],[428,5,4,2554,2558],[429,8,6,2558,2564],[430,6,6,2564,2570],[431,6,5,2570,2575],[432,7,5,2575,2580],[433,8,7,2580,2587],[434,23,11,2587,2598],[435,2,2,2598,2600]]],[17,200,180,2600,2780,[[436,6,6,2600,2606],[437,4,3,2606,2609],[438,2,2,2609,2611],[439,2,2,2611,2613],[440,2,1,2613,2614],[441,6,5,2614,2619],[442,3,3,2619,2622],[443,5,5,2622,2627],[444,6,6,2627,2633],[445,3,3,2633,2636],[447,2,2,2636,2638],[448,6,6,2638,2644],[449,6,5,2644,2649],[450,1,1,2649,2650],[451,12,9,2650,2659],[452,4,3,2659,2662],[453,7,7,2662,2669],[454,9,8,2669,2677],[455,6,6,2677,2683],[456,8,7,2683,2690],[457,5,5,2690,2695],[458,2,2,2695,2697],[459,3,3,2697,2700],[460,1,1,2700,2701],[461,4,3,2701,2704],[462,5,4,2704,2708],[463,1,1,2708,2709],[464,5,5,2709,2714],[465,10,9,2714,2723],[466,8,7,2723,2730],[467,3,3,2730,2733],[468,7,6,2733,2739],[469,11,10,2739,2749],[471,8,6,2749,2755],[472,5,5,2755,2760],[473,6,6,2760,2766],[474,5,5,2766,2771],[476,6,6,2771,2777],[477,5,3,2777,2780]]],[18,295,264,2780,3044,[[478,2,2,2780,2782],[479,3,2,2782,2784],[480,3,3,2784,2787],[481,2,2,2787,2789],[482,1,1,2789,2790],[484,4,4,2790,2794],[485,1,1,2794,2795],[486,1,1,2795,2796],[487,3,3,2796,2799],[488,2,2,2799,2801],[490,2,2,2801,2803],[491,1,1,2803,2804],[492,3,2,2804,2806],[493,3,3,2806,2809],[494,1,1,2809,2810],[495,6,5,2810,2815],[496,1,1,2815,2816],[498,3,3,2816,2819],[499,4,4,2819,2823],[500,1,1,2823,2824],[501,2,1,2824,2825],[502,1,1,2825,2826],[504,4,3,2826,2829],[506,2,1,2829,2830],[508,5,5,2830,2835],[509,4,4,2835,2839],[510,1,1,2839,2840],[512,6,6,2840,2846],[513,2,1,2846,2847],[514,7,6,2847,2853],[515,2,2,2853,2855],[516,2,2,2855,2857],[517,4,4,2857,2861],[518,5,4,2861,2865],[519,7,6,2865,2871],[520,1,1,2871,2872],[521,2,2,2872,2874],[522,5,5,2874,2879],[523,1,1,2879,2880],[524,3,2,2880,2882],[525,2,2,2882,2884],[526,2,2,2884,2886],[527,3,3,2886,2889],[528,1,1,2889,2890],[529,1,1,2890,2891],[530,1,1,2891,2892],[531,1,1,2892,2893],[532,6,6,2893,2899],[533,3,3,2899,2902],[534,5,3,2902,2905],[536,1,1,2905,2906],[537,2,1,2906,2907],[538,1,1,2907,2908],[539,2,2,2908,2910],[540,2,2,2910,2912],[541,1,1,2912,2913],[543,1,1,2913,2914],[545,2,2,2914,2916],[546,5,5,2916,2921],[547,1,1,2921,2922],[548,1,1,2922,2923],[549,2,2,2923,2925],[551,1,1,2925,2926],[555,2,2,2926,2928],[556,3,2,2928,2930],[557,2,1,2930,2931],[558,3,3,2931,2934],[560,4,3,2934,2937],[563,2,2,2937,2939],[565,3,3,2939,2942],[566,4,4,2942,2946],[567,4,3,2946,2949],[568,2,2,2949,2951],[569,4,2,2951,2953],[571,4,4,2953,2957],[572,1,1,2957,2958],[573,1,1,2958,2959],[574,2,1,2959,2960],[576,2,2,2960,2962],[579,1,1,2962,2963],[580,6,4,2963,2967],[581,5,5,2967,2972],[582,3,3,2972,2975],[583,4,4,2975,2979],[584,1,1,2979,2980],[585,5,3,2980,2983],[586,5,4,2983,2987],[587,4,4,2987,2991],[590,2,1,2991,2992],[592,3,2,2992,2994],[593,2,2,2994,2996],[594,1,1,2996,2997],[596,13,13,2997,3010],[598,1,1,3010,3011],[601,3,3,3011,3014],[602,2,2,3014,3016],[605,1,1,3016,3017],[606,1,1,3017,3018],[608,1,1,3018,3019],[609,2,2,3019,3021],[610,4,2,3021,3023],[612,1,1,3023,3024],[613,1,1,3024,3025],[614,4,4,3025,3029],[615,3,2,3029,3031],[616,3,3,3031,3034],[617,1,1,3034,3035],[618,1,1,3035,3036],[619,2,2,3036,3038],[620,1,1,3038,3039],[622,1,1,3039,3040],[623,1,1,3040,3041],[625,2,2,3041,3043],[626,1,1,3043,3044]]],[19,70,62,3044,3106,[[628,1,1,3044,3045],[629,1,1,3045,3046],[630,3,2,3046,3048],[631,1,1,3048,3049],[632,1,1,3049,3050],[633,5,4,3050,3054],[634,4,3,3054,3057],[635,3,3,3057,3060],[636,2,2,3060,3062],[637,1,1,3062,3063],[640,1,1,3063,3064],[641,2,2,3064,3066],[643,5,5,3066,3071],[644,3,2,3071,3073],[646,3,3,3073,3076],[647,2,2,3076,3078],[648,2,2,3078,3080],[649,2,2,3080,3082],[650,1,1,3082,3083],[651,5,4,3083,3087],[652,7,6,3087,3093],[653,4,3,3093,3096],[654,1,1,3096,3097],[655,3,3,3097,3100],[656,3,2,3100,3102],[657,2,2,3102,3104],[658,2,2,3104,3106]]],[20,37,31,3106,3137,[[659,5,4,3106,3110],[660,2,2,3110,3112],[661,3,3,3112,3115],[663,7,3,3115,3118],[664,1,1,3118,3119],[665,2,2,3119,3121],[666,5,5,3121,3126],[667,2,2,3126,3128],[668,3,2,3128,3130],[669,4,4,3130,3134],[670,3,3,3134,3137]]],[21,25,22,3137,3159,[[671,3,3,3137,3140],[672,4,3,3140,3143],[673,2,2,3143,3145],[674,1,1,3145,3146],[675,5,5,3146,3151],[677,4,4,3151,3155],[678,6,4,3155,3159]]],[22,332,241,3159,3400,[[679,4,4,3159,3163],[680,11,6,3163,3169],[682,3,1,3169,3170],[683,5,3,3170,3173],[684,4,3,3173,3176],[685,8,4,3176,3180],[686,4,2,3180,3182],[687,10,7,3182,3189],[688,15,10,3189,3199],[689,4,3,3199,3202],[691,7,6,3202,3208],[692,14,9,3208,3217],[693,7,5,3217,3222],[694,5,3,3222,3225],[695,2,2,3225,3227],[696,4,3,3227,3230],[697,7,6,3230,3236],[698,4,2,3236,3238],[699,3,2,3238,3240],[700,7,5,3240,3245],[701,3,3,3245,3248],[702,10,7,3248,3255],[703,5,3,3255,3258],[704,1,1,3258,3259],[705,3,3,3259,3262],[706,5,5,3262,3267],[707,8,6,3267,3273],[708,18,10,3273,3283],[709,11,4,3283,3287],[710,9,6,3287,3293],[712,7,5,3293,3298],[713,1,1,3298,3299],[714,14,10,3299,3309],[715,7,7,3309,3316],[716,6,6,3316,3322],[717,1,1,3322,3323],[718,3,3,3323,3326],[719,1,1,3326,3327],[720,5,4,3327,3331],[722,7,4,3331,3335],[723,4,3,3335,3338],[724,2,2,3338,3340],[725,9,6,3340,3346],[726,1,1,3346,3347],[727,4,4,3347,3351],[728,2,1,3351,3352],[729,1,1,3352,3353],[730,3,3,3353,3356],[731,3,3,3356,3359],[732,4,3,3359,3362],[734,4,4,3362,3366],[735,8,7,3366,3373],[736,2,1,3373,3374],[737,5,4,3374,3378],[738,7,6,3378,3384],[739,1,1,3384,3385],[740,4,3,3385,3388],[741,3,3,3388,3391],[742,1,1,3391,3392],[743,6,4,3392,3396],[744,5,4,3396,3400]]],[23,495,375,3400,3775,[[745,10,8,3400,3408],[746,7,7,3408,3415],[747,8,6,3415,3421],[748,7,5,3421,3426],[749,8,7,3426,3433],[750,17,15,3433,3448],[751,14,11,3448,3459],[752,6,5,3459,3464],[753,10,9,3464,3473],[754,5,4,3473,3477],[755,9,9,3477,3486],[756,8,5,3486,3491],[757,9,8,3491,3499],[758,5,5,3499,3504],[759,10,9,3504,3513],[760,19,10,3513,3523],[761,7,5,3523,3528],[762,17,12,3528,3540],[763,7,5,3540,3545],[764,2,2,3545,3547],[765,8,6,3547,3553],[766,17,12,3553,3565],[767,17,16,3565,3581],[768,3,2,3581,3583],[769,16,10,3583,3593],[770,9,6,3593,3599],[771,8,6,3599,3605],[772,7,7,3605,3612],[773,7,5,3612,3617],[774,9,7,3617,3624],[775,15,10,3624,3634],[776,16,11,3634,3645],[777,8,6,3645,3651],[778,8,6,3651,3657],[779,4,4,3657,3661],[780,22,12,3661,3673],[781,9,7,3673,3680],[782,1,1,3680,3681],[783,3,3,3681,3684],[784,3,2,3684,3686],[786,4,3,3686,3689],[787,1,1,3689,3690],[788,12,7,3690,3697],[789,5,4,3697,3701],[790,6,5,3701,3706],[791,1,1,3706,3707],[792,24,14,3707,3721],[793,13,11,3721,3732],[794,15,12,3732,3744],[795,26,23,3744,3767],[796,13,8,3767,3775]]],[24,38,36,3775,3811,[[797,9,9,3775,3784],[798,8,7,3784,3791],[799,11,11,3791,3802],[800,5,5,3802,3807],[801,5,4,3807,3811]]],[25,417,322,3811,4133,[[802,16,11,3811,3822],[803,2,2,3822,3824],[804,6,5,3824,3829],[805,15,9,3829,3838],[806,6,4,3838,3842],[807,3,3,3842,3845],[808,10,7,3845,3852],[809,3,3,3852,3855],[810,8,4,3855,3859],[811,10,7,3859,3866],[812,10,9,3866,3875],[813,4,4,3875,3879],[814,6,5,3879,3884],[815,11,8,3884,3892],[816,1,1,3892,3893],[817,24,16,3893,3909],[818,5,5,3909,3914],[819,6,5,3914,3919],[820,4,3,3919,3922],[821,6,6,3922,3928],[822,5,4,3928,3932],[823,7,7,3932,3939],[824,20,16,3939,3955],[825,9,7,3955,3962],[826,5,5,3962,3967],[827,11,6,3967,3973],[828,10,8,3973,3981],[829,12,10,3981,3991],[830,11,8,3991,3999],[831,2,2,3999,4001],[832,5,3,4001,4004],[833,17,12,4004,4016],[834,10,10,4016,4026],[835,5,4,4026,4030],[836,8,6,4030,4036],[837,17,13,4036,4049],[838,19,13,4049,4062],[839,18,13,4062,4075],[840,12,11,4075,4086],[841,4,3,4086,4089],[842,6,4,4089,4093],[843,2,2,4093,4095],[844,6,5,4095,4100],[845,10,7,4100,4107],[846,4,4,4107,4111],[847,4,3,4111,4114],[848,5,4,4114,4118],[849,17,15,4118,4133]]],[26,61,45,4133,4178,[[850,4,4,4133,4137],[851,1,1,4137,4138],[857,9,7,4138,4145],[858,18,10,4145,4155],[859,9,8,4155,4163],[860,19,14,4163,4177],[861,1,1,4177,4178]]],[27,45,37,4178,4215,[[862,1,1,4178,4179],[863,2,2,4179,4181],[865,6,4,4181,4185],[866,2,2,4185,4187],[867,1,1,4187,4188],[868,4,3,4188,4191],[869,2,1,4191,4192],[870,5,4,4192,4196],[871,11,8,4196,4204],[872,4,4,4204,4208],[873,4,4,4208,4212],[874,2,2,4212,4214],[875,1,1,4214,4215]]],[28,19,16,4215,4231,[[876,6,5,4215,4220],[877,9,8,4220,4228],[878,4,3,4228,4231]]],[29,78,48,4231,4279,[[879,17,7,4231,4238],[880,11,5,4238,4243],[881,11,6,4243,4249],[882,5,3,4249,4252],[883,8,7,4252,4259],[884,5,4,4259,4263],[885,10,8,4263,4271],[886,3,2,4271,4273],[887,8,6,4273,4279]]],[30,5,5,4279,4284,[[888,5,5,4279,4284]]],[31,23,17,4284,4301,[[889,8,7,4284,4291],[890,2,2,4291,4293],[891,3,2,4293,4295],[892,10,6,4295,4301]]],[32,34,28,4301,4329,[[893,5,5,4301,4306],[894,4,4,4306,4310],[895,11,6,4310,4316],[896,3,3,4316,4319],[897,6,5,4319,4324],[898,1,1,4324,4325],[899,4,4,4325,4329]]],[33,13,12,4329,4341,[[900,4,4,4329,4333],[901,2,2,4333,4335],[902,7,6,4335,4341]]],[34,19,14,4341,4355,[[903,5,4,4341,4345],[904,11,7,4345,4352],[905,3,3,4352,4355]]],[35,26,20,4355,4375,[[906,12,8,4355,4363],[907,9,8,4363,4371],[908,5,4,4371,4375]]],[36,13,4,4375,4379,[[909,13,4,4375,4379]]],[37,69,48,4379,4427,[[911,4,4,4379,4383],[912,2,2,4383,4385],[913,6,4,4385,4389],[914,9,5,4389,4394],[915,2,2,4394,4396],[916,3,2,4396,4398],[917,1,1,4398,4399],[919,7,6,4399,4405],[920,3,2,4405,4407],[921,5,4,4407,4411],[922,15,8,4411,4419],[923,3,1,4419,4420],[924,9,7,4420,4427]]],[38,15,10,4427,4437,[[925,2,2,4427,4429],[926,6,4,4429,4433],[927,4,2,4433,4435],[928,3,2,4435,4437]]]],[1,6,10,14,16,19,25,27,28,29,35,46,51,54,69,93,138,144,149,154,162,163,165,167,169,171,173,176,177,178,180,182,183,184,186,187,190,191,192,194,196,200,202,207,219,221,222,228,243,270,274,275,294,315,318,327,329,342,351,371,372,386,388,393,395,400,414,419,426,427,429,432,440,443,461,465,473,474,479,480,481,485,488,498,501,504,506,513,524,525,527,538,544,549,553,556,564,574,590,600,604,606,609,613,621,633,634,636,637,638,640,652,655,664,667,676,688,699,701,702,713,714,724,725,739,740,743,767,768,779,782,786,791,797,798,803,805,829,830,833,836,858,863,867,870,883,885,890,893,907,919,921,923,939,949,959,960,961,964,970,973,977,983,992,1005,1007,1010,1016,1024,1025,1031,1091,1106,1117,1131,1133,1138,1140,1145,1147,1148,1149,1153,1154,1174,1183,1185,1188,1189,1191,1193,1196,1198,1205,1208,1210,1212,1227,1228,1229,1235,1236,1237,1238,1240,1251,1258,1273,1276,1278,1288,1289,1297,1306,1308,1309,1325,1328,1345,1359,1372,1373,1379,1390,1415,1426,1440,1442,1446,1451,1453,1457,1458,1465,1468,1469,1473,1486,1490,1495,1499,1503,1507,1517,1519,1526,1527,1529,1540,1542,1543,1548,1557,1559,1560,1568,1569,1584,1591,1597,1601,1621,1635,1640,1641,1646,1649,1653,1681,1690,1700,1702,1704,1713,1715,1716,1717,1719,1722,1731,1732,1751,1761,1764,1765,1783,1789,1790,1791,1794,1798,1799,1805,1807,1811,1820,1823,1824,1825,1829,1839,1843,1845,1849,1850,1867,1876,1882,1883,1891,1892,1896,1898,1902,1905,1910,1915,1916,1919,1936,1939,1943,1944,1946,1947,1949,1950,1952,1954,1955,1961,1967,1976,1984,1986,1989,1990,1992,1995,1999,2007,2008,2010,2012,2013,2020,2021,2022,2024,2030,2037,2042,2044,2046,2054,2056,2062,2063,2071,2075,2076,2077,2091,2096,2099,2107,2116,2122,2138,2146,2157,2162,2173,2183,2185,2193,2206,2207,2209,2214,2215,2216,2217,2221,2225,2232,2239,2242,2245,2247,2248,2259,2267,2269,2270,2274,2276,2279,2293,2301,2302,2303,2304,2305,2307,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2326,2327,2328,2329,2330,2331,2336,2339,2342,2343,2346,2348,2349,2351,2352,2353,2355,2356,2357,2358,2360,2361,2372,2373,2374,2386,2388,2389,2391,2392,2395,2396,2397,2398,2414,2415,2427,2439,2450,2452,2454,2458,2459,2465,2467,2472,2473,2477,2478,2489,2492,2494,2495,2497,2498,2502,2503,2508,2521,2523,2524,2529,2531,2577,2580,2583,2607,2609,2613,2617,2620,2631,2635,2640,2654,2659,2668,2669,2670,2671,2678,2679,2680,2681,2682,2683,2684,2685,2688,2689,2690,2694,2695,2710,2726,2727,2728,2729,2730,2731,2734,2736,2742,2743,2745,2749,2750,2752,2753,2756,2757,2760,2762,2763,2764,2767,2768,2775,2777,2778,2780,2781,2782,2783,2786,2787,2788,2791,2792,2793,2798,2799,2802,2803,2804,2805,2806,2807,2809,2810,2813,2815,2819,2820,2821,2823,2824,2825,2826,2828,2829,2830,2835,2836,2839,2840,2841,2842,2843,2846,2848,2852,2854,2856,2858,2859,2861,2862,2864,2870,2876,2881,2883,2888,2891,2892,2899,2909,2924,2925,2926,2928,2929,2931,2932,2933,2935,2936,2939,2940,2941,2942,2943,2944,2945,2947,2951,2962,2965,2966,2967,2970,2971,2973,2977,2978,2980,2983,2984,2992,2993,2994,2999,3017,3018,3024,3026,3029,3031,3032,3034,3035,3038,3039,3041,3043,3049,3051,3052,3097,3116,3117,3118,3125,3126,3127,3128,3129,3130,3131,3132,3136,3137,3138,3139,3140,3142,3161,3164,3172,3174,3177,3183,3185,3188,3190,3191,3192,3193,3194,3198,3203,3205,3209,3210,3211,3213,3214,3215,3216,3217,3219,3220,3222,3223,3231,3234,3235,3240,3241,3246,3247,3269,3276,3297,3298,3300,3303,3307,3355,3356,3357,3372,3378,3383,3391,3420,3422,3430,3450,3452,3453,3458,3460,3487,3488,3500,3525,3540,3542,3545,3548,3549,3552,3554,3556,3559,3578,3583,3585,3588,3589,3597,3601,3622,3654,3656,3657,3660,3663,3670,3675,3678,3685,3692,3696,3708,3718,3721,3727,3731,3738,3741,3743,3749,3750,3751,3753,3754,3755,3756,3757,3762,3768,3769,3770,3780,3784,3788,3792,3799,3800,3806,3807,3810,3822,3828,3829,3830,3832,3834,3840,3841,3842,3843,3844,3850,3852,3853,3859,3939,3946,3949,3951,3958,3960,3961,3976,3980,3982,3983,3984,3985,3987,3988,3997,3998,3999,4001,4002,4003,4004,4006,4007,4008,4010,4011,4012,4013,4014,4015,4017,4019,4022,4033,4035,4036,4037,4041,4049,4050,4053,4055,4060,4062,4069,4070,4078,4093,4099,4104,4110,4113,4117,4122,4126,4135,4137,4143,4144,4151,4158,4162,4178,4181,4191,4197,4198,4201,4205,4207,4211,4213,4216,4220,4221,4223,4227,4235,4236,4239,4240,4241,4243,4246,4247,4249,4254,4259,4261,4262,4274,4281,4289,4291,4294,4302,4304,4305,4306,4307,4308,4309,4313,4317,4332,4334,4335,4347,4348,4349,4351,4354,4360,4367,4380,4397,4405,4407,4411,4419,4422,4431,4433,4444,4448,4452,4479,4482,4484,4489,4492,4498,4545,4552,4557,4570,4572,4574,4575,4577,4587,4592,4599,4601,4607,4613,4650,4652,4653,4654,4655,4656,4657,4658,4659,4662,4667,4671,4672,4676,4678,4680,4714,4732,4762,4767,4770,4798,4808,4809,4810,4815,4819,4827,4846,4851,4865,4867,4868,4869,4882,4883,4884,4891,4892,4907,4963,4974,4987,4989,5006,5014,5017,5025,5030,5036,5040,5043,5044,5052,5060,5062,5068,5069,5075,5092,5094,5095,5101,5117,5124,5127,5133,5136,5140,5141,5147,5167,5172,5174,5175,5176,5188,5190,5195,5212,5217,5225,5226,5228,5229,5233,5237,5241,5242,5256,5259,5264,5267,5272,5277,5280,5282,5292,5328,5330,5334,5342,5345,5370,5374,5375,5378,5379,5382,5384,5392,5413,5415,5416,5417,5419,5421,5428,5430,5437,5439,5446,5447,5452,5453,5457,5460,5463,5469,5470,5476,5482,5484,5489,5494,5496,5504,5509,5513,5520,5525,5530,5540,5541,5543,5547,5550,5552,5553,5556,5562,5572,5585,5588,5590,5591,5593,5597,5598,5612,5613,5618,5621,5622,5626,5632,5634,5635,5646,5647,5654,5656,5659,5660,5667,5672,5674,5684,5703,5704,5706,5707,5709,5715,5717,5726,5728,5741,5743,5745,5746,5752,5760,5769,5771,5781,5794,5796,5805,5807,5809,5818,5820,5822,5839,5840,5844,5848,5875,5876,5877,5878,5880,5908,5909,5915,5928,5935,5943,5949,5982,5985,5986,6002,6031,6033,6034,6042,6055,6057,6069,6075,6077,6082,6088,6090,6091,6095,6098,6100,6102,6111,6114,6120,6132,6157,6163,6170,6179,6193,6201,6210,6220,6248,6282,6298,6302,6306,6307,6309,6332,6333,6371,6435,6436,6438,6446,6449,6459,6473,6474,6475,6476,6483,6523,6578,6580,6584,6587,6588,6589,6614,6623,6633,6640,6641,6642,6656,6657,6658,6661,6676,6679,6680,6682,6684,6685,6691,6693,6694,6695,6696,6699,6700,6706,6716,6722,6745,6757,6759,6762,6763,6764,6765,6766,6767,6768,6769,6771,6772,6776,6778,6779,6785,6787,6788,6797,6798,6802,6803,6805,6807,6815,6840,6855,6858,6866,6867,6870,6883,6889,6903,6904,6915,6925,6926,6928,6937,6939,6943,6948,6952,6958,6961,6963,6966,6968,6969,6975,6976,6978,6979,7002,7005,7012,7020,7026,7027,7044,7046,7051,7052,7054,7059,7063,7073,7095,7146,7154,7155,7159,7162,7175,7181,7187,7195,7197,7200,7221,7222,7223,7225,7226,7241,7248,7250,7251,7268,7298,7309,7310,7315,7316,7317,7323,7324,7326,7336,7338,7343,7349,7351,7362,7376,7378,7380,7388,7397,7407,7415,7416,7419,7424,7428,7430,7437,7446,7447,7451,7452,7457,7461,7472,7473,7474,7479,7486,7490,7493,7496,7499,7503,7512,7518,7521,7533,7540,7541,7555,7560,7561,7563,7567,7569,7575,7577,7586,7588,7595,7596,7611,7618,7623,7624,7633,7638,7640,7644,7646,7650,7653,7656,7657,7664,7667,7680,7681,7726,7729,7730,7738,7739,7745,7755,7759,7761,7763,7785,7787,7789,7793,7794,7795,7796,7800,7804,7819,7827,7831,7837,7838,7841,7842,7844,7849,7861,7869,7874,7877,7878,7879,7881,7884,7885,7891,7897,7903,7906,7908,7917,7918,7921,7940,7941,7957,7958,7960,7984,7992,7994,7995,8001,8002,8013,8014,8024,8028,8031,8032,8034,8038,8039,8040,8041,8043,8046,8047,8048,8053,8056,8058,8059,8060,8062,8068,8070,8073,8074,8089,8091,8098,8110,8111,8115,8122,8127,8131,8132,8134,8135,8137,8140,8144,8149,8152,8159,8164,8165,8167,8178,8188,8191,8202,8205,8206,8207,8219,8224,8225,8233,8234,8237,8238,8240,8254,8260,8261,8270,8279,8280,8282,8283,8285,8292,8293,8297,8303,8314,8316,8322,8326,8334,8335,8336,8339,8342,8346,8349,8354,8356,8357,8358,8360,8363,8364,8365,8369,8382,8389,8391,8393,8403,8407,8409,8412,8421,8422,8427,8434,8448,8451,8460,8461,8468,8470,8474,8479,8483,8486,8487,8490,8495,8496,8498,8509,8510,8511,8512,8513,8518,8520,8521,8533,8537,8549,8553,8562,8565,8566,8569,8575,8576,8577,8578,8581,8587,8590,8613,8630,8636,8652,8655,8661,8671,8696,8704,8712,8713,8717,8730,8734,8737,8740,8741,8744,8747,8750,8751,8752,8755,8761,8763,8764,8765,8770,8774,8781,8782,8785,8788,8789,8794,8796,8797,8801,8802,8805,8813,8820,8822,8835,8842,8845,8848,8849,8850,8851,8864,8873,8877,8883,8885,8892,8894,8897,8899,8901,8904,8906,8928,8931,8936,8937,8940,8950,8951,8952,8953,8954,8956,8959,8963,8965,8969,8970,8972,8973,8975,8976,8977,8982,8990,8992,8993,9001,9005,9008,9010,9012,9021,9025,9028,9029,9039,9051,9056,9058,9059,9060,9074,9076,9077,9085,9088,9095,9096,9099,9115,9118,9119,9132,9133,9138,9145,9149,9150,9155,9160,9161,9162,9165,9168,9169,9171,9183,9184,9185,9186,9187,9188,9197,9214,9216,9218,9220,9225,9232,9233,9237,9241,9243,9245,9247,9250,9256,9266,9268,9269,9272,9274,9276,9279,9280,9282,9284,9285,9288,9290,9291,9292,9294,9297,9298,9299,9300,9301,9302,9303,9306,9307,9310,9312,9320,9322,9331,9336,9337,9338,9339,9342,9344,9348,9353,9362,9364,9367,9369,9374,9380,9402,9403,9409,9420,9428,9430,9431,9438,9441,9446,9449,9451,9455,9458,9478,9480,9486,9488,9490,9498,9499,9503,9504,9512,9518,9519,9521,9525,9531,9542,9546,9551,9554,9556,9558,9564,9565,9566,9577,9587,9591,9597,9598,9603,9607,9612,9623,9624,9632,9634,9635,9637,9638,9640,9665,9668,9673,9685,9688,9698,9699,9700,9704,9705,9709,9713,9724,9732,9740,9742,9747,9750,9759,9773,9781,9785,9793,9796,9798,9802,9803,9815,9817,9823,9824,9826,9827,9829,9832,9837,9840,9841,9843,9847,9848,9854,9861,9862,9865,9867,9868,9869,9872,9879,9881,9883,9884,9885,9887,9890,9892,9894,9902,9911,9914,9915,9916,9924,9930,9931,9933,9935,9936,9937,9940,9942,9943,9944,9945,9946,9948,9950,9951,9952,9955,9956,9961,9967,9968,9970,9975,9976,9977,9978,9980,9982,9984,9986,9988,9992,9993,10001,10004,10006,10033,10036,10037,10038,10042,10044,10045,10047,10048,10049,10050,10051,10061,10063,10069,10082,10083,10093,10104,10105,10111,10118,10131,10132,10136,10142,10143,10144,10150,10152,10153,10154,10158,10161,10164,10165,10168,10171,10173,10177,10178,10181,10182,10185,10186,10189,10191,10192,10193,10194,10198,10200,10205,10207,10213,10214,10222,10223,10226,10227,10233,10239,10241,10242,10243,10244,10250,10438,10444,10448,10485,10486,10493,10498,10503,10539,10564,10616,10634,10635,10638,10641,10642,10643,10644,10646,10647,10648,10662,10663,10664,10672,10675,10676,10680,10683,10684,10688,10693,10698,10715,10724,10728,10735,10737,10739,10740,10741,10742,10743,10752,10758,10762,10767,10770,10776,10782,10784,10785,10788,10791,10806,10811,10812,10841,10845,10860,10870,10873,10880,10886,10888,10889,10897,10900,10904,10905,10907,10909,10912,10928,10935,10938,10941,10944,10949,10950,10956,10960,10972,10973,10974,10975,10976,10977,10978,10984,10987,10997,11011,11014,11048,11049,11052,11097,11099,11101,11103,11105,11106,11107,11109,11111,11113,11114,11115,11116,11117,11118,11119,11120,11121,11122,11123,11124,11125,11133,11134,11135,11136,11137,11138,11139,11140,11145,11147,11148,11162,11172,11173,11179,11187,11189,11190,11191,11193,11194,11195,11200,11203,11205,11207,11213,11215,11222,11227,11233,11234,11236,11237,11242,11243,11244,11245,11246,11250,11258,11259,11260,11265,11274,11276,11277,11287,11288,11292,11295,11298,11300,11309,11313,11316,11327,11330,11334,11335,11337,11338,11344,11345,11346,11349,11358,11360,11361,11363,11369,11370,11372,11379,11380,11382,11383,11393,11394,11399,11404,11405,11406,11409,11412,11413,11427,11439,11446,11447,11454,11457,11458,11459,11460,11464,11465,11471,11486,11489,11491,11494,11495,11499,11505,11510,11512,11516,11517,11518,11519,11520,11524,11533,11538,11539,11541,11549,11551,11558,11559,11560,11564,11565,11573,11578,11583,11585,11586,11587,11588,11589,11590,11596,11597,11598,11599,11601,11603,11609,11610,11611,11613,11616,11618,11621,11624,11628,11632,11639,11640,11649,11656,11659,11666,11667,11669,11674,11675,11676,11683,11686,11690,11695,11697,11698,11700,11702,11703,11704,11707,11708,11730,11731,11732,11739,11741,11743,11745,11747,11748,11750,11751,11753,11760,11762,11768,11773,11775,11776,11777,11780,11784,11790,11799,11800,11812,11814,11815,11818,11827,11828,11836,11837,11843,11844,11845,11849,11856,11863,11866,11868,11869,11876,11877,11880,11881,11883,11884,11885,11887,11891,11892,11893,11894,11895,11900,11901,11906,11907,11916,11919,11924,11926,11927,11932,11933,11937,11938,11943,11945,11946,11950,11954,11957,11960,11961,11964,11968,11976,11981,11982,11986,11987,11990,11991,11993,11997,11999,12001,12003,12008,12010,12016,12018,12022,12024,12088,12095,12099,12100,12105,12106,12107,12108,12115,12116,12117,12173,12179,12182,12184,12201,12218,12219,12222,12223,12224,12227,12232,12234,12236,12241,12242,12246,12250,12252,12254,12256,12258,12261,12262,12264,12267,12271,12298,12302,12311,12312,12314,12315,12325,12326,12329,12331,12332,12334,12335,12336,12337,12339,12344,12346,12355,12360,12364,12368,12371,12373,12377,12378,12389,12397,12398,12399,12400,12401,12404,12407,12408,12413,12418,12422,12483,12497,12498,12500,12509,12512,12513,12514,12515,12516,12517,12520,12521,12524,12530,12541,12544,12547,12548,12549,12550,12578,12581,12582,12583,12597,12602,12604,12609,12611,12632,12646,12647,12655,12661,12662,12663,12668,12673,12682,12684,12685,12686,12689,12690,12693,12697,12699,12700,12704,12708,12710,12717,12718,12719,12721,12725,12734,12744,12747,12748,12756,12757,12759,12766,12767,12769,12770,12778,12779,12780,12783,12787,12788,12790,12793,12795,12796,12797,12801,12802,12810,12814,12815,12816,12817,12819,12820,12822,12824,12825,12828,12834,12836,12837,12847,12850,12853,12855,12858,12859,12860,12861,12865,12867,12868,12875,12877,12880,12883,12886,12888,12892,12902,12903,12908,12909,12943,12945,12961,12981,12983,12994,13005,13006,13009,13020,13028,13035,13038,13044,13045,13046,13059,13062,13073,13077,13084,13085,13087,13088,13089,13142,13149,13164,13166,13167,13174,13179,13180,13184,13187,13197,13198,13203,13230,13242,13247,13248,13249,13251,13252,13253,13254,13255,13264,13268,13276,13282,13284,13285,13286,13291,13293,13296,13302,13303,13305,13306,13308,13309,13310,13322,13330,13337,13339,13347,13349,13351,13360,13364,13372,13381,13382,13386,13387,13391,13399,13413,13415,13417,13421,13434,13445,13454,13459,13464,13474,13476,13477,13490,13491,13503,13504,13512,13535,13536,13539,13545,13554,13558,13559,13561,13562,13569,13572,13573,13574,13587,13589,13593,13597,13598,13609,13624,13626,13630,13631,13634,13657,13660,13665,13669,13673,13677,13689,13696,13698,13704,13706,13710,13711,13712,13719,13720,13757,13759,13764,13766,13768,13769,13772,13781,13784,13785,13791,13798,13799,13803,13817,13819,13825,13843,13848,13857,13861,13862,13894,13896,13911,13918,13921,13922,13928,13930,13933,13942,13944,13947,13951,13958,13963,13965,13969,13971,13984,14002,14003,14005,14011,14013,14040,14044,14054,14055,14061,14065,14076,14080,14082,14090,14092,14094,14096,14098,14112,14128,14151,14159,14160,14167,14174,14196,14202,14203,14213,14214,14217,14222,14237,14243,14259,14287,14288,14291,14311,14344,14345,14347,14349,14354,14359,14360,14361,14363,14388,14423,14425,14426,14430,14431,14436,14442,14454,14455,14460,14461,14462,14479,14492,14506,14522,14523,14527,14532,14537,14540,14545,14549,14551,14553,14556,14559,14560,14561,14562,14566,14571,14590,14593,14599,14600,14601,14604,14614,14616,14627,14633,14644,14648,14654,14659,14673,14676,14684,14710,14716,14721,14728,14735,14736,14742,14744,14747,14754,14760,14762,14767,14770,14773,14779,14793,14815,14825,14830,14834,14845,14849,14858,14878,14929,14934,14942,14944,14950,14959,14962,14974,14982,15006,15013,15061,15137,15140,15191,15194,15215,15222,15224,15231,15244,15246,15259,15297,15298,15315,15324,15325,15333,15345,15371,15373,15391,15394,15395,15407,15408,15414,15422,15433,15451,15452,15454,15457,15469,15487,15501,15507,15528,15559,15560,15562,15566,15574,15576,15577,15583,15605,15620,15622,15644,15658,15668,15673,15683,15739,15746,15747,15751,15757,15760,15761,15775,15790,15791,15792,15793,15817,15831,15844,15855,15860,15869,15912,15915,15920,15947,15960,15967,16002,16025,16026,16027,16034,16060,16062,16086,16104,16106,16107,16113,16115,16132,16135,16150,16154,16169,16171,16172,16189,16202,16223,16224,16226,16228,16233,16238,16244,16253,16255,16273,16279,16289,16293,16297,16329,16346,16375,16384,16390,16427,16444,16458,16484,16505,16525,16555,16561,16562,16568,16578,16589,16590,16604,16629,16636,16641,16652,16668,16758,16786,16791,16850,16860,16863,16866,16867,16877,16899,16928,16936,16937,16962,16980,16985,16993,17021,17033,17074,17092,17097,17104,17109,17124,17125,17133,17135,17137,17138,17152,17155,17158,17191,17211,17217,17221,17229,17236,17257,17270,17310,17313,17321,17327,17328,17331,17350,17353,17373,17376,17377,17399,17403,17405,17418,17439,17443,17460,17464,17469,17472,17474,17487,17489,17497,17500,17514,17515,17516,17522,17529,17530,17537,17540,17544,17545,17558,17562,17571,17572,17579,17586,17602,17603,17605,17610,17613,17631,17632,17637,17640,17645,17646,17649,17654,17655,17659,17668,17679,17686,17697,17698,17699,17700,17701,17738,17745,17764,17769,17770,17775,17776,17783,17784,17787,17799,17808,17814,17831,17835,17836,17840,17846,17849,17850,17853,17856,17862,17865,17870,17874,17875,17876,17877,17878,17886,17892,17899,17908,17913,17917,17919,17923,17924,17929,17930,17932,17936,17940,17942,17950,17953,17954,17962,17963,17964,17967,17969,17974,17978,17981,17990,17993,17999,18001,18003,18005,18011,18012,18016,18020,18021,18031,18032,18038,18043,18056,18067,18074,18076,18077,18085,18088,18094,18101,18106,18110,18112,18115,18116,18117,18121,18125,18126,18151,18152,18154,18162,18165,18168,18170,18186,18191,18194,18196,18200,18201,18203,18205,18218,18222,18223,18225,18229,18233,18234,18242,18245,18249,18251,18252,18254,18255,18267,18270,18271,18272,18274,18279,18305,18308,18314,18317,18319,18330,18331,18333,18335,18336,18338,18339,18340,18341,18342,18352,18354,18360,18361,18374,18375,18385,18387,18395,18396,18405,18406,18410,18411,18414,18422,18429,18442,18469,18481,18485,18493,18505,18536,18537,18549,18552,18572,18573,18575,18593,18594,18600,18605,18606,18608,18610,18612,18616,18645,18646,18652,18658,18669,18684,18703,18710,18711,18712,18716,18720,18732,18738,18740,18756,18759,18760,18761,18766,18767,18769,18771,18772,18775,18776,18800,18804,18809,18818,18821,18822,18823,18825,18826,18828,18835,18844,18859,18860,18864,18869,18873,18885,18897,18900,18903,18904,18914,18924,18932,18934,18942,18953,18955,18956,18958,18960,18961,18962,18964,18970,18977,18980,18985,18999,19000,19002,19004,19008,19010,19018,19020,19023,19035,19043,19044,19047,19055,19064,19067,19070,19073,19085,19087,19089,19090,19092,19093,19095,19096,19098,19099,19100,19101,19103,19105,19106,19108,19112,19115,19127,19129,19130,19133,19134,19139,19140,19141,19148,19149,19150,19155,19159,19167,19171,19174,19176,19179,19184,19185,19187,19188,19193,19197,19200,19202,19220,19222,19226,19228,19234,19236,19241,19242,19243,19245,19247,19248,19257,19258,19260,19261,19263,19267,19268,19270,19279,19282,19287,19292,19293,19294,19296,19299,19308,19309,19316,19318,19319,19320,19321,19323,19329,19330,19331,19339,19340,19343,19346,19347,19349,19351,19352,19353,19354,19358,19359,19365,19375,19382,19387,19391,19392,19393,19394,19395,19400,19402,19404,19405,19406,19407,19410,19412,19415,19420,19422,19424,19433,19442,19444,19447,19449,19453,19454,19456,19458,19460,19461,19462,19463,19471,19478,19480,19481,19482,19484,19486,19487,19488,19492,19496,19499,19500,19501,19503,19514,19515,19516,19518,19519,19523,19524,19530,19534,19535,19536,19539,19543,19546,19547,19560,19563,19564,19567,19574,19577,19585,19587,19591,19592,19598,19601,19606,19607,19615,19617,19626,19628,19629,19630,19632,19633,19634,19645,19646,19663,19666,19667,19673,19675,19681,19682,19685,19687,19690,19694,19703,19706,19710,19711,19717,19719,19724,19728,19730,19733,19750,19755,19760,19762,19763,19765,19766,19771,19772,19773,19779,19780,19784,19788,19792,19796,19802,19805,19808,19816,19822,19823,19829,19830,19840,19841,19844,19846,19853,19854,19860,19863,19865,19870,19871,19872,19873,19874,19879,19882,19883,19885,19888,19889,19893,19899,19932,19934,19935,19945,19952,19992,19993,19994,20007,20012,20023,20030,20031,20033,20037,20039,20041,20042,20043,20045,20046,20047,20051,20066,20070,20077,20082,20091,20101,20102,20103,20104,20106,20111,20112,20116,20117,20118,20122,20123,20132,20135,20138,20141,20144,20146,20147,20149,20156,20157,20164,20169,20175,20179,20180,20181,20187,20193,20195,20201,20208,20210,20211,20213,20214,20219,20220,20223,20225,20226,20237,20239,20240,20241,20247,20254,20256,20258,20259,20260,20262,20263,20264,20268,20275,20276,20279,20280,20283,20284,20298,20299,20301,20303,20312,20315,20317,20318,20320,20324,20325,20326,20332,20342,20343,20346,20347,20348,20349,20351,20359,20374,20375,20378,20382,20393,20400,20402,20408,20415,20416,20425,20428,20439,20441,20442,20447,20459,20460,20464,20465,20467,20472,20481,20483,20484,20485,20486,20489,20490,20492,20493,20494,20516,20524,20525,20526,20527,20530,20531,20532,20533,20535,20536,20537,20538,20544,20547,20554,20562,20563,20566,20572,20577,20579,20580,20581,20585,20586,20597,20603,20605,20610,20614,20625,20626,20628,20630,20634,20635,20637,20649,20651,20652,20655,20659,20660,20663,20665,20668,20670,20677,20678,20679,20686,20687,20693,20702,20711,20713,20725,20726,20728,20734,20736,20737,20740,20744,20748,20750,20753,20757,20767,20768,20770,20771,20773,20774,20776,20777,20778,20789,20798,20799,20802,20805,20806,20808,20830,20832,20835,20845,20847,20851,20864,20869,20875,20880,20889,20891,20892,20903,20908,20912,20916,20927,20928,20951,20959,20966,20975,20979,20980,20989,20996,20997,20998,21007,21012,21014,21015,21016,21021,21023,21025,21027,21029,21031,21037,21048,21049,21053,21054,21056,21062,21063,21064,21067,21073,21078,21079,21085,21090,21093,21096,21099,21102,21103,21108,21116,21117,21119,21123,21124,21126,21132,21151,21153,21156,21157,21164,21169,21174,21175,21176,21178,21179,21180,21182,21183,21185,21186,21188,21190,21191,21197,21198,21201,21215,21219,21235,21243,21245,21250,21251,21252,21253,21256,21257,21258,21261,21264,21266,21275,21279,21282,21283,21290,21293,21299,21304,21305,21306,21307,21309,21315,21319,21336,21340,21346,21347,21349,21356,21357,21359,21361,21362,21364,21365,21369,21370,21371,21376,21377,21380,21384,21388,21390,21398,21399,21401,21403,21405,21407,21411,21413,21416,21417,21421,21422,21424,21427,21432,21433,21435,21436,21437,21441,21442,21443,21444,21445,21446,21447,21449,21450,21452,21453,21462,21465,21468,21471,21474,21476,21477,21478,21479,21492,21533,21541,21543,21546,21558,21560,21584,21590,21592,21596,21599,21609,21611,21612,21614,21616,21617,21623,21639,21645,21647,21649,21657,21669,21674,21687,21689,21691,21697,21704,21705,21706,21707,21708,21709,21710,21717,21723,21726,21727,21728,21729,21730,21733,21738,21745,21748,21757,21759,21963,21966,21973,21978,21979,21986,21988,21989,21999,22000,22001,22002,22005,22006,22008,22012,22015,22019,22022,22023,22024,22025,22026,22031,22036,22041,22050,22056,22057,22060,22061,22063,22064,22066,22070,22072,22073,22074,22076,22082,22098,22118,22119,22136,22142,22146,22147,22153,22162,22172,22190,22191,22192,22195,22209,22215,22216,22223,22229,22230,22232,22233,22234,22235,22236,22239,22243,22244,22248,22251,22254,22262,22263,22266,22272,22273,22285,22294,22296,22297,22299,22302,22313,22316,22324,22328,22329,22331,22339,22340,22345,22347,22349,22365,22367,22370,22372,22373,22375,22377,22380,22383,22385,22386,22387,22396,22397,22400,22404,22409,22410,22412,22417,22423,22424,22425,22431,22432,22434,22442,22446,22454,22455,22456,22464,22467,22470,22471,22473,22474,22475,22480,22481,22489,22491,22496,22499,22501,22503,22507,22510,22511,22521,22524,22525,22526,22533,22536,22538,22542,22543,22544,22545,22551,22555,22564,22568,22570,22574,22576,22577,22578,22579,22580,22582,22587,22593,22595,22596,22598,22599,22604,22610,22611,22613,22614,22615,22619,22621,22627,22631,22634,22636,22638,22640,22642,22661,22667,22677,22680,22682,22695,22697,22698,22699,22700,22706,22717,22718,22722,22724,22730,22731,22735,22746,22747,22748,22749,22750,22754,22762,22763,22764,22766,22769,22776,22787,22789,22790,22791,22792,22795,22796,22799,22803,22807,22810,22812,22813,22815,22816,22818,22820,22827,22828,22837,22838,22845,22847,22850,22851,22880,22886,22893,22894,22908,22911,22913,22916,22917,22921,22924,22925,22933,22934,22936,22939,22947,22952,22960,22976,23007,23008,23012,23013,23014,23015,23018,23019,23033,23034,23041,23045,23046,23047,23048,23049,23051,23052,23054,23055,23066,23072,23077,23080,23081,23084,23085,23088,23094,23096,23105,23106,23117,23119,23133,23137,23142,23144]]],["+",[937,875,[[0,86,84,0,84,[[0,1,1,0,1],[1,2,2,1,3],[3,1,1,3,4],[5,1,1,4,5],[6,2,2,5,7],[7,5,5,7,12],[9,1,1,12,13],[10,2,2,13,15],[11,1,1,15,16],[12,2,2,16,18],[15,2,2,18,20],[16,1,1,20,21],[17,3,3,21,24],[18,5,4,24,28],[19,2,2,28,30],[20,3,3,30,33],[22,2,2,33,35],[23,3,3,35,38],[24,4,4,38,42],[25,2,2,42,44],[26,1,1,44,45],[27,2,2,45,47],[28,5,5,47,52],[29,2,2,52,54],[30,1,1,54,55],[31,2,2,55,57],[32,2,2,57,59],[33,2,2,59,61],[34,1,1,61,62],[37,3,3,62,65],[39,3,2,65,67],[40,1,1,67,68],[41,3,3,68,71],[42,3,3,71,74],[43,2,2,74,76],[44,1,1,76,77],[46,2,2,77,79],[47,1,1,79,80],[48,1,1,80,81],[49,3,3,81,84]]],[1,39,38,84,122,[[52,2,1,84,85],[54,2,2,85,87],[57,2,2,87,89],[59,2,2,89,91],[62,1,1,91,92],[63,2,2,92,94],[64,1,1,94,95],[65,2,2,95,97],[66,1,1,97,98],[67,1,1,98,99],[69,3,3,99,102],[74,3,3,102,105],[75,1,1,105,106],[77,2,2,106,108],[78,1,1,108,109],[81,3,3,109,112],[82,3,3,112,115],[83,2,2,115,117],[88,2,2,117,119],[89,3,3,119,122]]],[2,21,19,122,141,[[91,1,1,122,123],[93,1,1,123,124],[95,3,3,124,127],[97,1,1,127,128],[99,1,1,128,129],[100,1,1,129,130],[104,8,6,130,136],[105,2,2,136,138],[106,1,1,138,139],[116,2,2,139,141]]],[3,45,42,141,183,[[120,1,1,141,142],[123,2,2,142,144],[124,1,1,144,145],[125,1,1,145,146],[126,2,2,146,148],[128,2,2,148,150],[129,1,1,150,151],[130,2,2,151,153],[132,3,3,153,156],[133,2,2,156,158],[134,1,1,158,159],[136,2,2,159,161],[137,5,5,161,166],[138,1,1,166,167],[139,1,1,167,168],[141,3,3,168,171],[142,1,1,171,172],[146,12,9,172,181],[148,1,1,181,182],[149,1,1,182,183]]],[4,41,37,183,220,[[156,2,2,183,185],[157,2,2,185,187],[158,1,1,187,188],[160,1,1,188,189],[161,1,1,189,190],[162,1,1,190,191],[163,3,3,191,194],[165,3,2,194,196],[166,1,1,196,197],[167,2,2,197,199],[169,1,1,199,200],[171,2,2,200,202],[172,1,1,202,203],[173,2,2,203,205],[174,2,1,205,206],[175,1,1,206,207],[176,2,2,207,209],[177,1,1,209,210],[180,2,2,210,212],[181,5,4,212,216],[183,1,1,216,217],[184,3,2,217,219],[185,1,1,219,220]]],[5,20,19,220,239,[[189,1,1,220,221],[191,3,2,221,223],[193,2,2,223,225],[196,1,1,225,226],[199,2,2,226,228],[200,2,2,228,230],[201,2,2,230,232],[203,1,1,232,233],[204,2,2,233,235],[205,1,1,235,236],[209,3,3,236,239]]],[6,23,23,239,262,[[211,1,1,239,240],[213,4,4,240,244],[214,1,1,244,245],[216,2,2,245,247],[217,1,1,247,248],[218,2,2,248,250],[221,2,2,250,252],[223,1,1,252,253],[225,2,2,253,255],[226,5,5,255,260],[228,1,1,260,261],[229,1,1,261,262]]],[7,1,1,262,263,[[233,1,1,262,263]]],[8,39,36,263,299,[[236,1,1,263,264],[239,1,1,264,265],[240,1,1,265,266],[241,5,3,266,269],[244,1,1,269,270],[245,1,1,270,271],[248,2,2,271,273],[249,1,1,273,274],[250,4,4,274,278],[251,1,1,278,279],[252,5,4,279,283],[254,1,1,283,284],[255,2,2,284,286],[258,2,2,286,288],[259,3,3,288,291],[260,1,1,291,292],[261,3,3,292,295],[263,3,3,295,298],[265,1,1,298,299]]],[9,44,40,299,339,[[268,1,1,299,300],[269,2,2,300,302],[271,2,2,302,304],[272,2,2,304,306],[273,2,2,306,308],[274,1,1,308,309],[276,1,1,309,310],[277,6,5,310,315],[278,2,2,315,317],[279,4,3,317,320],[280,1,1,320,321],[281,5,4,321,325],[284,2,2,325,327],[285,4,3,327,330],[286,3,3,330,333],[287,2,2,333,335],[288,1,1,335,336],[290,3,3,336,339]]],[10,43,36,339,375,[[291,1,1,339,340],[292,3,2,340,342],[293,1,1,342,343],[296,3,1,343,344],[297,4,3,344,347],[298,3,3,347,350],[299,5,3,350,353],[301,3,2,353,355],[302,2,2,355,357],[303,2,2,357,359],[304,2,2,359,361],[305,1,1,361,362],[306,2,2,362,364],[307,5,5,364,369],[308,2,2,369,371],[310,3,3,371,374],[311,1,1,374,375]]],[11,40,38,375,413,[[314,4,4,375,379],[315,1,1,379,380],[316,1,1,380,381],[317,2,2,381,383],[318,3,3,383,386],[322,1,1,386,387],[323,2,2,387,389],[324,1,1,389,390],[325,1,1,390,391],[327,1,1,391,392],[328,3,2,392,394],[329,5,4,394,398],[330,3,3,398,401],[332,1,1,401,402],[333,1,1,402,403],[334,1,1,403,404],[335,3,3,404,407],[336,3,3,407,410],[337,3,3,410,413]]],[12,14,13,413,426,[[342,1,1,413,414],[348,1,1,414,415],[349,1,1,415,416],[350,2,1,416,417],[351,2,2,417,419],[354,1,1,419,420],[355,1,1,420,421],[357,1,1,421,422],[358,2,2,422,424],[360,1,1,424,425],[366,1,1,425,426]]],[13,46,43,426,469,[[368,1,1,426,427],[369,3,3,427,430],[370,1,1,430,431],[371,2,2,431,433],[372,1,1,433,434],[373,6,4,434,438],[375,1,1,438,439],[376,1,1,439,440],[379,1,1,440,441],[382,3,3,441,444],[383,3,3,444,447],[385,1,1,447,448],[386,3,3,448,451],[387,2,2,451,453],[389,1,1,453,454],[390,1,1,454,455],[392,2,2,455,457],[394,1,1,457,458],[396,2,2,458,460],[397,1,1,460,461],[398,2,2,461,463],[399,2,2,463,465],[400,3,2,465,467],[401,1,1,467,468],[402,1,1,468,469]]],[14,4,4,469,473,[[403,2,2,469,471],[412,2,2,471,473]]],[15,25,23,473,496,[[413,1,1,473,474],[414,3,3,474,477],[415,1,1,477,478],[416,2,2,478,480],[420,1,1,480,481],[421,4,4,481,485],[422,1,1,485,486],[423,2,2,486,488],[424,6,4,488,492],[425,4,4,492,496]]],[16,17,16,496,512,[[426,2,2,496,498],[428,3,3,498,501],[429,2,2,501,503],[430,1,1,503,504],[432,2,2,504,506],[433,2,2,506,508],[434,5,4,508,512]]],[17,42,41,512,553,[[436,2,2,512,514],[440,2,1,514,515],[441,3,3,515,518],[444,2,2,518,520],[445,1,1,520,521],[447,1,1,521,522],[448,2,2,522,524],[449,2,2,524,526],[451,2,2,526,528],[452,1,1,528,529],[454,3,3,529,532],[455,2,2,532,534],[456,1,1,534,535],[457,1,1,535,536],[458,1,1,536,537],[459,1,1,537,538],[461,1,1,538,539],[462,1,1,539,540],[465,3,3,540,543],[467,2,2,543,545],[469,2,2,545,547],[471,2,2,547,549],[472,2,2,549,551],[473,1,1,551,552],[477,1,1,552,553]]],[18,46,44,553,597,[[478,1,1,553,554],[487,1,1,554,555],[494,1,1,555,556],[495,2,2,556,558],[502,1,1,558,559],[508,1,1,559,560],[509,2,2,560,562],[514,1,1,562,563],[515,1,1,563,564],[516,1,1,564,565],[517,1,1,565,566],[519,1,1,566,567],[521,1,1,567,568],[522,4,4,568,572],[523,1,1,572,573],[526,1,1,573,574],[538,1,1,574,575],[540,1,1,575,576],[549,1,1,576,577],[556,2,1,577,578],[565,1,1,578,579],[566,2,2,579,581],[580,3,2,581,583],[581,1,1,583,584],[583,1,1,584,585],[585,1,1,585,586],[586,1,1,586,587],[587,1,1,587,588],[592,1,1,588,589],[596,5,5,589,594],[616,1,1,594,595],[618,1,1,595,596],[625,1,1,596,597]]],[19,15,15,597,612,[[629,1,1,597,598],[631,1,1,598,599],[632,1,1,599,600],[633,2,2,600,602],[634,1,1,602,603],[637,1,1,603,604],[641,1,1,604,605],[643,1,1,605,606],[648,1,1,606,607],[651,1,1,607,608],[652,1,1,608,609],[654,1,1,609,610],[656,1,1,610,611],[658,1,1,611,612]]],[20,5,5,612,617,[[663,2,2,612,614],[666,2,2,614,616],[669,1,1,616,617]]],[21,3,3,617,620,[[671,1,1,617,618],[675,1,1,618,619],[678,1,1,619,620]]],[22,50,43,620,663,[[679,1,1,620,621],[683,2,2,621,623],[684,2,2,623,625],[685,1,1,625,626],[687,1,1,626,627],[688,3,2,627,629],[691,3,3,629,632],[692,3,2,632,634],[693,2,2,634,636],[694,1,1,636,637],[695,1,1,637,638],[696,1,1,638,639],[697,1,1,639,640],[698,2,1,640,641],[699,1,1,641,642],[700,1,1,642,643],[702,4,3,643,646],[703,3,2,646,648],[704,1,1,648,649],[705,3,3,649,652],[708,2,1,652,653],[709,1,1,653,654],[712,1,1,654,655],[714,1,1,655,656],[715,1,1,656,657],[716,1,1,657,658],[718,1,1,658,659],[728,2,1,659,660],[734,1,1,660,661],[735,1,1,661,662],[737,1,1,662,663]]],[23,84,79,663,742,[[745,2,2,663,665],[746,1,1,665,666],[748,1,1,666,667],[749,2,2,667,669],[750,2,2,669,671],[751,2,2,671,673],[752,1,1,673,674],[753,1,1,674,675],[754,1,1,675,676],[755,2,2,676,678],[756,2,2,678,680],[757,1,1,680,681],[758,1,1,681,682],[759,1,1,682,683],[760,5,4,683,687],[764,1,1,687,688],[765,5,5,688,693],[766,3,3,693,696],[767,2,2,696,698],[768,1,1,698,699],[769,2,2,699,701],[771,2,2,701,703],[772,4,4,703,707],[773,2,2,707,709],[774,2,2,709,711],[775,2,2,711,713],[776,5,4,713,717],[778,1,1,717,718],[779,3,3,718,721],[780,3,3,721,724],[781,4,3,724,727],[782,1,1,727,728],[788,4,3,728,731],[790,1,1,731,732],[792,4,3,732,735],[793,1,1,735,736],[794,1,1,736,737],[795,2,2,737,739],[796,3,3,739,742]]],[24,5,5,742,747,[[797,1,1,742,743],[798,1,1,743,744],[799,2,2,744,746],[800,1,1,746,747]]],[25,59,55,747,802,[[802,4,4,747,751],[807,1,1,751,752],[808,4,4,752,756],[809,1,1,756,757],[810,3,2,757,759],[811,3,3,759,762],[812,3,3,762,765],[814,1,1,765,766],[815,3,2,766,768],[817,2,2,768,770],[819,1,1,770,771],[820,1,1,771,772],[821,1,1,772,773],[822,1,1,773,774],[823,1,1,774,775],[824,4,3,775,778],[825,2,2,778,780],[827,1,1,780,781],[832,1,1,781,782],[833,2,2,782,784],[836,1,1,784,785],[838,3,3,785,788],[840,1,1,788,789],[842,4,4,789,793],[843,2,2,793,795],[845,4,3,795,798],[846,2,2,798,800],[849,2,2,800,802]]],[26,6,6,802,808,[[850,1,1,802,803],[857,1,1,803,804],[859,2,2,804,806],[860,2,2,806,808]]],[27,10,10,808,818,[[863,1,1,808,809],[865,4,4,809,813],[867,1,1,813,814],[870,1,1,814,815],[871,1,1,815,816],[873,1,1,816,817],[874,1,1,817,818]]],[28,6,5,818,823,[[877,3,3,818,821],[878,3,2,821,823]]],[29,10,9,823,832,[[881,3,2,823,825],[882,1,1,825,826],[883,1,1,826,827],[885,2,2,827,829],[887,3,3,829,832]]],[31,7,7,832,839,[[889,3,3,832,835],[891,1,1,835,836],[892,3,3,836,839]]],[32,8,7,839,846,[[893,1,1,839,840],[894,1,1,840,841],[895,4,3,841,844],[899,2,2,844,846]]],[33,1,1,846,847,[[900,1,1,846,847]]],[34,7,6,847,853,[[903,5,4,847,851],[904,2,2,851,853]]],[35,6,6,853,859,[[906,5,5,853,858],[908,1,1,858,859]]],[36,3,3,859,862,[[909,3,3,859,862]]],[37,11,10,862,872,[[913,2,1,862,863],[914,1,1,863,864],[919,1,1,864,865],[920,2,2,865,867],[921,3,3,867,870],[924,2,2,870,872]]],[38,5,3,872,875,[[925,1,1,872,873],[926,2,1,873,874],[927,2,1,874,875]]]],[6,46,54,93,144,163,176,186,190,191,194,196,243,275,294,315,327,329,393,395,419,427,429,440,461,465,479,485,501,513,524,538,544,574,590,633,637,655,664,667,676,688,724,725,767,779,786,798,803,805,829,830,836,858,921,949,960,970,977,983,992,1024,1133,1138,1145,1189,1191,1237,1273,1276,1278,1306,1308,1309,1325,1328,1359,1426,1442,1468,1503,1517,1519,1527,1584,1640,1649,1722,1731,1794,1805,1882,1892,1902,1943,1952,1976,1999,2021,2054,2062,2075,2215,2217,2232,2259,2321,2326,2372,2450,2458,2473,2478,2492,2495,2502,2508,2685,2690,2710,2728,2743,2775,2803,2852,2854,2876,2945,2980,3032,3172,3174,3185,3191,3192,3194,3213,3215,3247,3578,3588,3750,3852,3939,3946,3982,3999,4019,4060,4069,4099,4117,4151,4220,4221,4240,4249,4254,4281,4332,4335,4347,4351,4354,4360,4367,4407,4444,4479,4482,4489,4545,4650,4652,4653,4654,4655,4656,4657,4658,4659,4732,4767,5025,5030,5060,5068,5101,5141,5174,5195,5212,5225,5233,5280,5282,5292,5330,5334,5374,5413,5419,5439,5460,5463,5494,5504,5543,5547,5556,5632,5674,5684,5703,5704,5707,5745,5796,5809,5822,5908,5943,5949,5985,6002,6091,6157,6179,6193,6201,6220,6248,6282,6307,6309,6332,6473,6475,6476,6523,6580,6587,6588,6589,6614,6661,6676,6706,6722,6745,6866,6867,6904,6943,6948,6952,6961,6968,6969,6975,7005,7027,7162,7226,7315,7324,7336,7349,7351,7397,7430,7493,7496,7533,7563,7569,7575,7588,7618,7633,7644,7657,7664,7730,7745,7759,7837,7838,7841,7844,7849,7884,7906,7908,7921,7957,7958,7960,7994,8073,8089,8111,8140,8152,8159,8165,8202,8207,8219,8254,8260,8261,8279,8280,8283,8292,8316,8326,8334,8339,8363,8391,8407,8409,8412,8483,8498,8518,8520,8553,8569,8575,8576,8581,8587,8652,8704,8713,8717,8770,8774,8801,8835,8899,8940,8976,8982,8992,8993,9025,9056,9058,9060,9115,9119,9161,9162,9188,9218,9220,9233,9268,9290,9300,9320,9322,9331,9338,9339,9342,9353,9409,9431,9449,9458,9554,9556,9564,9565,9603,9612,9668,9673,9688,9698,9699,9824,9837,9840,9868,9894,9943,9968,9980,9988,10001,10004,10006,10033,10036,10038,10104,10132,10158,10178,10192,10198,10205,10213,10222,10227,10243,10250,10438,10680,10735,10770,10785,10788,10888,10900,10928,10944,10956,10987,11194,11213,11233,11237,11246,11259,11276,11277,11313,11337,11338,11344,11346,11370,11405,11457,11512,11516,11518,11538,11539,11541,11585,11597,11598,11613,11632,11640,11674,11697,11750,11751,11777,11837,11849,11869,11881,11885,11916,11919,11937,11954,11981,12016,12018,12022,12262,12264,12302,12312,12314,12326,12355,12360,12364,12498,12513,12530,12541,12549,12550,12597,12602,12655,12661,12662,12663,12684,12686,12693,12699,12717,12721,12748,12756,12757,12766,12767,12787,12810,12815,12822,12824,12847,12853,12860,12865,12877,12883,12961,12981,13005,13006,13073,13085,13088,13142,13167,13174,13187,13198,13251,13252,13264,13303,13306,13310,13339,13347,13381,13399,13434,13454,13477,13504,13558,13574,13587,13631,13634,13696,13710,13757,13759,13784,13785,13799,13928,13944,14054,14112,14160,14167,14259,14354,14360,14363,14460,14492,14522,14537,14561,14590,14599,14601,14604,14614,14616,14659,14825,14849,15013,15194,15325,15371,15373,15559,15562,15576,15668,15746,15760,15793,15844,15920,16002,16025,16026,16027,16253,16279,16375,16444,16505,16525,16555,16562,16590,16668,16786,16860,16985,17097,17124,17191,17229,17313,17399,17405,17460,17469,17514,17540,17605,17649,17659,17745,17764,17775,17776,17799,17846,17862,17877,17913,17919,17924,17940,17953,17964,17967,17978,17993,17999,18012,18031,18038,18056,18101,18110,18116,18121,18126,18151,18152,18154,18162,18233,18255,18319,18336,18387,18396,18422,18669,18756,18775,18809,18955,18958,18970,19055,19064,19085,19096,19103,19134,19141,19167,19200,19222,19241,19248,19257,19263,19287,19294,19316,19346,19347,19349,19352,19433,19442,19444,19447,19449,19454,19462,19463,19471,19518,19523,19534,19546,19567,19601,19606,19628,19629,19630,19634,19663,19667,19675,19687,19694,19711,19733,19762,19771,19773,19822,19829,19830,19841,19853,19863,19873,19879,19883,19885,19899,20023,20033,20039,20051,20091,20111,20116,20146,20210,20219,20256,20279,20284,20303,20318,20346,20375,20378,20442,20483,20484,20485,20489,20572,20581,20585,20586,20597,20610,20625,20628,20637,20649,20651,20670,20678,20679,20728,20736,20737,20767,20771,20880,20892,20912,20951,20980,21025,21037,21054,21063,21078,21116,21235,21258,21261,21359,21403,21405,21417,21471,21533,21541,21543,21546,21558,21560,21609,21611,21614,21639,21647,21717,21723,21738,21979,22026,22031,22073,22076,22119,22136,22142,22146,22147,22172,22209,22232,22254,22272,22328,22329,22331,22347,22349,22397,22409,22417,22446,22475,22481,22503,22507,22510,22536,22542,22543,22564,22570,22574,22579,22587,22604,22610,22611,22615,22667,22682,22697,22735,22746,22747,22748,22754,22762,22789,22790,22795,22796,22799,22827,22845,22847,22850,22916,22934,23014,23018,23019,23033,23034,23041,23072,23080,23094,23117,23137]]],["According",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[22,1,1,1,2,[[737,1,1,1,2]]]],[6371,18818]]],["Against",[4,4,[[8,1,1,0,1,[[262,1,1,0,1]]],[11,1,1,1,2,[[329,1,1,1,2]]],[13,1,1,2,3,[[402,1,1,2,3]]],[22,1,1,3,4,[[735,1,1,3,4]]]],[7940,9986,11999,18769]]],["At",[4,4,[[3,3,3,0,3,[[120,1,1,0,1],[125,2,2,1,3]]],[4,1,1,3,4,[[169,1,1,3,4]]]],[3770,3983,3988,5370]]],["Because",[3,3,[[10,1,1,0,1,[[305,1,1,0,1]]],[23,2,2,1,3,[[753,1,1,1,2],[776,1,1,2,3]]]],[9279,19188,19763]]],["Besides",[1,1,[[2,1,1,0,1,[[96,1,1,0,1]]]],[2892]]],["By",[3,3,[[18,3,3,0,3,[[548,1,1,0,1],[581,1,1,1,2],[614,1,1,2,3]]]],[14982,15583,16223]]],["For",[18,18,[[1,1,1,0,1,[[71,1,1,0,1]]],[10,1,1,1,2,[[306,1,1,1,2]]],[15,1,1,2,3,[[414,1,1,2,3]]],[18,1,1,3,4,[[509,1,1,3,4]]],[23,4,4,4,8,[[748,2,2,4,6],[752,1,1,6,7],[753,1,1,7,8]]],[24,2,2,8,10,[[797,1,1,8,9],[801,1,1,9,10]]],[29,8,8,10,18,[[879,5,5,10,15],[880,3,3,15,18]]]],[2122,9302,12311,14361,19035,19055,19174,19185,20326,20459,22367,22370,22373,22375,22377,22380,22383,22385]]],["In",[3,3,[[2,1,1,0,1,[[95,1,1,0,1]]],[18,1,1,1,2,[[539,1,1,1,2]]],[23,1,1,2,3,[[747,1,1,2,3]]]],[2870,14834,19004]]],["Over",[2,2,[[12,2,2,0,2,[[364,2,2,0,2]]]],[11111,11139]]],["To",[2,2,[[23,1,1,0,1,[[750,1,1,0,1]]],[25,1,1,1,2,[[842,1,1,1,2]]]],[19099,21543]]],["Upon",[12,12,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,1,1,1,2,[[79,1,1,1,2]]],[11,1,1,2,3,[[328,1,1,2,3]]],[17,2,2,3,5,[[465,1,1,3,4],[476,1,1,4,5]]],[18,2,2,5,7,[[488,1,1,5,6],[569,1,1,6,7]]],[22,2,2,7,9,[[710,1,1,7,8],[735,1,1,8,9]]],[23,1,1,9,10,[[775,1,1,9,10]]],[25,2,2,10,12,[[832,1,1,10,11],[844,1,1,11,12]]]],[740,2414,9978,13569,13921,14065,15414,18272,18772,19717,21243,21584]]],["With",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13768]]],["about",[12,12,[[0,1,1,0,1,[[40,1,1,0,1]]],[3,2,2,1,3,[[120,1,1,1,2],[132,1,1,2,3]]],[7,1,1,3,4,[[232,1,1,3,4]]],[8,3,3,4,7,[[257,3,3,4,7]]],[13,1,1,7,8,[[384,1,1,7,8]]],[14,1,1,8,9,[[412,1,1,8,9]]],[17,1,1,9,10,[[443,1,1,9,10]]],[19,2,2,10,12,[[630,1,1,10,11],[633,1,1,11,12]]]],[1237,3757,4243,7146,7793,7794,7804,11573,12267,13046,16458,16561]]],["above",[53,47,[[0,4,4,0,4,[[0,1,1,0,1],[27,1,1,1,2],[47,1,1,2,3],[48,1,1,3,4]]],[1,4,4,4,8,[[67,1,1,4,5],[77,1,1,5,6],[78,1,1,6,7],[88,1,1,7,8]]],[2,5,5,8,13,[[92,3,3,8,11],[93,1,1,11,12],[96,1,1,12,13]]],[3,2,2,13,15,[[119,1,1,13,14],[132,1,1,14,15]]],[4,4,4,15,19,[[177,1,1,15,16],[178,1,1,16,17],[180,2,2,17,19]]],[12,2,2,19,21,[[353,1,1,19,20],[364,1,1,20,21]]],[15,3,2,21,23,[[421,1,1,21,22],[424,2,1,22,23]]],[16,1,1,23,24,[[430,1,1,23,24]]],[18,21,16,24,40,[[485,1,1,24,25],[504,1,1,25,26],[534,4,2,26,28],[572,1,1,28,29],[573,1,1,29,30],[574,2,1,30,31],[576,1,1,31,32],[580,1,1,32,33],[581,1,1,33,34],[585,2,1,34,35],[590,2,1,35,36],[613,1,1,36,37],[614,1,1,37,38],[615,1,1,38,39],[625,1,1,39,40]]],[22,1,1,40,41,[[692,1,1,40,41]]],[25,3,3,41,44,[[811,1,1,41,42],[817,1,1,42,43],[830,1,1,43,44]]],[26,3,3,44,47,[[860,3,3,44,47]]]],[19,786,1473,1499,2010,2321,2349,2685,2782,2788,2793,2804,2883,3741,4197,5550,5585,5612,5654,10845,11115,12516,12663,12790,14013,14291,14773,14779,15457,15469,15487,15501,15560,15577,15747,15817,16202,16228,16233,16384,17942,20634,20805,21198,22041,22072,22073]]],["according",[5,5,[[1,1,1,0,1,[[87,1,1,0,1]]],[5,1,1,1,2,[[208,1,1,1,2]]],[11,1,1,2,3,[[335,1,1,2,3]]],[20,1,1,3,4,[[659,1,1,3,4]]],[22,1,1,4,5,[[741,1,1,4,5]]]],[2654,6435,10200,17321,18873]]],["accordingly",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18818]]],["after",[20,20,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,1,1,1,2,[[83,1,1,1,2]]],[3,3,3,2,5,[[117,1,1,2,3],[122,1,1,3,4],[132,1,1,4,5]]],[4,1,1,5,6,[[155,1,1,5,6]]],[9,2,2,6,8,[[278,1,1,6,7],[284,1,1,7,8]]],[10,1,1,8,9,[[306,1,1,8,9]]],[13,1,1,9,10,[[397,1,1,9,10]]],[14,2,2,10,12,[[404,1,1,10,11],[405,1,1,11,12]]],[15,1,1,12,13,[[419,1,1,12,13]]],[16,1,1,13,14,[[434,1,1,13,14]]],[17,1,1,14,15,[[465,1,1,14,15]]],[18,2,2,15,17,[[519,1,1,15,16],[587,1,1,16,17]]],[23,1,1,17,18,[[774,1,1,17,18]]],[25,1,1,18,19,[[849,1,1,18,19]]],[29,1,1,19,20,[[880,1,1,19,20]]]],[1457,2523,3622,3844,4223,4989,8314,8496,9307,11856,12088,12107,12483,12860,13562,14556,15790,19685,21733,22386]]],["against",[533,451,[[0,8,6,0,6,[[13,1,1,0,1],[33,1,1,1,2],[39,3,1,2,3],[41,1,1,3,4],[42,1,1,4,5],[49,1,1,5,6]]],[1,9,6,6,12,[[64,1,1,6,7],[65,6,3,7,10],[66,1,1,10,11],[72,1,1,11,12]]],[2,2,2,12,14,[[93,1,1,12,13],[108,1,1,13,14]]],[3,27,18,14,32,[[126,1,1,14,15],[130,7,5,15,20],[132,9,5,20,25],[133,1,1,25,26],[136,2,1,26,27],[142,3,1,27,28],[143,1,1,28,29],[146,1,1,29,30],[147,2,2,30,32]]],[4,16,15,32,47,[[161,1,1,32,33],[167,1,1,33,34],[171,1,1,34,35],[172,6,5,35,40],[173,1,1,40,41],[174,1,1,41,42],[175,2,2,42,44],[176,1,1,44,45],[180,2,2,45,47]]],[5,10,9,47,56,[[195,1,1,47,48],[196,6,5,48,53],[197,1,1,53,54],[208,2,2,54,56]]],[6,18,18,56,74,[[213,2,2,56,58],[214,1,1,58,59],[216,4,4,59,63],[217,1,1,63,64],[219,4,4,64,68],[225,1,1,68,69],[228,1,1,69,70],[229,1,1,70,71],[230,3,3,71,74]]],[8,11,10,74,84,[[246,1,1,74,75],[247,1,1,75,76],[249,1,1,76,77],[252,1,1,77,78],[257,3,2,78,80],[258,1,1,80,81],[260,1,1,81,82],[262,1,1,82,83],[265,1,1,83,84]]],[9,11,11,84,95,[[277,1,1,84,85],[278,2,2,85,87],[280,2,2,87,89],[283,1,1,89,90],[284,2,2,90,92],[289,2,2,92,94],[290,1,1,94,95]]],[10,19,17,95,112,[[296,2,2,95,97],[298,1,1,97,98],[303,5,3,98,101],[304,1,1,101,102],[305,3,3,102,105],[306,3,3,105,108],[310,2,2,108,110],[312,2,2,110,112]]],[11,30,25,112,137,[[315,1,1,112,113],[319,1,1,113,114],[322,1,1,114,115],[324,1,1,115,116],[326,1,1,116,117],[327,4,4,117,121],[328,1,1,121,122],[329,1,1,122,123],[330,4,3,123,126],[331,4,3,126,129],[333,2,2,129,131],[334,2,1,131,132],[335,2,2,132,134],[336,1,1,134,135],[337,4,2,135,137]]],[12,11,11,137,148,[[342,1,1,137,138],[347,2,2,138,140],[348,2,2,140,142],[349,2,2,142,144],[351,1,1,144,145],[358,2,2,145,147],[364,1,1,147,148]]],[13,44,41,148,189,[[372,1,1,148,149],[374,1,1,149,150],[375,1,1,150,151],[378,2,2,151,153],[379,3,3,153,156],[380,1,1,156,157],[382,1,1,157,158],[383,1,1,158,159],[384,1,1,159,160],[386,7,7,160,167],[387,1,1,167,168],[388,1,1,168,169],[390,4,4,169,173],[391,1,1,173,174],[392,3,2,174,176],[393,1,1,176,177],[394,2,2,177,179],[398,7,6,179,185],[399,2,2,185,187],[400,2,1,187,188],[401,1,1,188,189]]],[14,3,3,189,192,[[406,2,2,189,191],[410,1,1,191,192]]],[15,6,6,192,198,[[414,1,1,192,193],[416,1,1,193,194],[417,1,1,194,195],[418,1,1,195,196],[421,1,1,196,197],[425,1,1,197,198]]],[16,5,5,198,203,[[427,1,1,198,199],[430,1,1,199,200],[433,1,1,200,201],[434,2,2,201,203]]],[17,18,16,203,219,[[448,1,1,203,204],[451,2,2,204,206],[452,1,1,206,207],[453,1,1,207,208],[454,4,3,208,211],[456,1,1,211,212],[465,1,1,212,213],[466,2,2,213,215],[468,1,1,215,216],[469,3,2,216,218],[474,1,1,218,219]]],[18,37,33,219,252,[[479,2,1,219,220],[480,2,2,220,222],[492,2,2,222,224],[498,2,2,224,226],[504,2,1,226,227],[508,2,2,227,229],[512,4,4,229,233],[515,1,1,233,234],[518,3,2,234,236],[531,1,1,236,237],[532,1,1,237,238],[533,1,1,238,239],[536,1,1,239,240],[539,1,1,240,241],[558,1,1,241,242],[560,3,2,242,244],[563,1,1,244,245],[569,1,1,245,246],[571,1,1,246,247],[586,2,2,247,249],[596,1,1,249,250],[601,1,1,250,251],[615,1,1,251,252]]],[19,2,2,252,254,[[630,1,1,252,253],[646,1,1,253,254]]],[20,2,2,254,256,[[667,1,1,254,255],[668,1,1,255,256]]],[22,33,28,256,284,[[683,2,2,256,258],[685,3,2,258,260],[687,2,2,260,262],[688,4,3,262,265],[691,1,1,265,266],[692,3,3,266,269],[697,1,1,269,270],[701,1,1,270,271],[707,5,3,271,274],[709,3,2,274,276],[714,2,2,276,278],[715,3,3,278,281],[720,1,1,281,282],[732,1,1,282,283],[735,1,1,283,284]]],[23,88,69,284,353,[[745,3,2,284,286],[748,3,2,286,288],[750,4,4,288,292],[752,1,1,292,293],[755,2,2,293,295],[756,3,3,295,298],[759,2,2,298,300],[760,1,1,300,301],[762,5,4,301,305],[763,1,1,305,306],[765,2,2,306,308],[766,1,1,308,309],[767,4,4,309,313],[769,5,2,313,315],[770,5,3,315,318],[772,1,1,318,319],[773,1,1,319,320],[776,2,2,320,322],[778,5,3,322,325],[779,1,1,325,326],[780,3,1,326,327],[781,3,2,327,329],[788,1,1,329,330],[790,2,2,330,332],[792,3,3,332,335],[793,3,2,335,337],[794,8,7,337,344],[795,10,8,344,352],[796,3,1,352,353]]],[24,7,7,353,360,[[797,1,1,353,354],[798,1,1,354,355],[799,4,4,355,359],[801,1,1,359,360]]],[25,58,43,360,403,[[805,7,3,360,363],[806,1,1,363,364],[812,1,1,364,365],[814,1,1,365,366],[817,3,3,366,369],[820,1,1,369,370],[822,3,3,370,373],[823,1,1,373,374],[824,4,2,374,376],[826,1,1,376,377],[827,6,3,377,380],[828,1,1,380,381],[829,3,3,381,384],[830,5,3,384,387],[831,1,1,387,388],[835,1,1,388,389],[836,6,4,389,393],[837,3,2,393,395],[839,7,6,395,401],[840,1,1,401,402],[845,1,1,402,403]]],[26,11,9,403,412,[[857,2,2,403,405],[858,2,1,405,406],[860,7,6,406,412]]],[27,5,4,412,416,[[868,1,1,412,413],[869,2,1,413,414],[871,2,2,414,416]]],[29,11,8,416,424,[[879,1,1,416,417],[881,2,1,417,418],[883,3,2,418,420],[884,1,1,420,421],[885,4,3,421,424]]],[30,1,1,424,425,[[888,1,1,424,425]]],[31,2,2,425,427,[[889,2,2,425,427]]],[32,6,6,427,433,[[894,2,2,427,429],[895,1,1,429,430],[896,1,1,430,431],[897,2,2,431,433]]],[33,1,1,433,434,[[900,1,1,433,434]]],[34,1,1,434,435,[[904,1,1,434,435]]],[35,6,5,435,440,[[906,2,1,435,436],[907,4,4,436,440]]],[37,12,10,440,450,[[919,1,1,440,441],[920,1,1,441,442],[922,5,4,442,446],[923,2,1,446,447],[924,3,3,447,450]]],[38,2,1,450,451,[[927,2,1,450,451]]]],[351,1010,1174,1288,1308,1526,1944,1949,1954,1955,1986,2173,2809,3297,3997,4110,4135,4137,4143,4144,4197,4205,4213,4235,4236,4249,4313,4498,4557,4657,4667,4671,5176,5328,5417,5428,5430,5437,5446,5447,5457,5496,5504,5509,5540,5618,5660,6055,6069,6095,6098,6100,6102,6114,6438,6459,6578,6580,6623,6656,6657,6658,6685,6696,6772,6785,6788,6797,6939,7002,7026,7059,7063,7073,7446,7472,7560,7653,7795,7800,7819,7878,7940,8001,8282,8297,8314,8363,8369,8470,8509,8510,8661,8671,8696,8901,8906,9029,9186,9188,9216,9243,9266,9269,9276,9284,9292,9298,9420,9430,9486,9512,9603,9713,9802,9867,9915,9935,9944,9950,9955,9970,9992,10033,10037,10049,10069,10083,10093,10142,10143,10164,10182,10194,10213,10223,10226,10448,10662,10672,10684,10693,10739,10741,10784,10935,10938,11133,11316,11349,11393,11439,11446,11459,11460,11465,11486,11510,11524,11564,11588,11589,11599,11603,11609,11610,11624,11640,11649,11698,11700,11702,11703,11731,11739,11745,11760,11776,11777,11876,11877,11884,11891,11892,11894,11932,11933,11960,11987,12115,12116,12223,12326,12368,12389,12413,12521,12673,12725,12788,12820,12858,12859,13179,13242,13248,13268,13285,13302,13308,13309,13382,13569,13609,13626,13660,13689,13712,13857,13947,13958,13963,14090,14092,14202,14203,14288,14344,14349,14425,14430,14431,14436,14506,14549,14551,14728,14744,14760,14793,14830,15231,15244,15246,15298,15422,15452,15757,15775,15967,16104,16238,16484,16928,17489,17497,17764,17769,17783,17787,17840,17850,17856,17865,17874,17923,17932,17936,17950,18021,18085,18196,18200,18201,18252,18254,18331,18340,18360,18375,18385,18493,18740,18769,18961,18964,19043,19044,19092,19093,19095,19112,19171,19243,19245,19257,19258,19263,19321,19323,19346,19392,19395,19402,19407,19422,19442,19453,19461,19486,19514,19515,19516,19543,19547,19585,19591,19592,19626,19667,19755,19760,19802,19808,19823,19840,19844,19882,19893,20039,20046,20047,20082,20106,20122,20141,20157,20169,20175,20180,20181,20187,20195,20208,20213,20214,20223,20226,20239,20240,20241,20258,20280,20325,20348,20359,20400,20415,20416,20464,20531,20532,20536,20554,20659,20725,20799,20802,20806,20889,20959,20966,20975,20979,21029,21031,21085,21102,21103,21108,21151,21164,21178,21179,21185,21186,21201,21215,21315,21346,21347,21356,21357,21361,21364,21427,21433,21441,21442,21443,21446,21449,21611,21973,21986,22000,22050,22060,22061,22064,22066,22072,22191,22195,22234,22235,22372,22396,22424,22432,22464,22473,22474,22480,22511,22533,22544,22598,22599,22613,22631,22634,22638,22695,22754,22803,22810,22813,22815,22818,23012,23019,23047,23048,23052,23054,23066,23080,23081,23084,23133]]],["among",[7,7,[[1,2,2,0,2,[[79,2,2,0,2]]],[12,1,1,2,3,[[363,1,1,2,3]]],[13,1,1,3,4,[[399,1,1,3,4]]],[16,1,1,4,5,[[434,1,1,4,5]]],[20,1,1,5,6,[[664,1,1,5,6]]],[37,1,1,6,7,[[917,1,1,6,7]]]],[2395,2396,11107,11927,12855,17418,22976]]],["and",[2,2,[[6,1,1,0,1,[[225,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[6937,17862]]],["as",[3,3,[[2,1,1,0,1,[[114,1,1,0,1]]],[17,1,1,1,2,[[457,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]]],[3500,13413,15912]]],["at",[84,78,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]],[2,2,2,2,4,[[90,1,1,2,3],[115,1,1,3,4]]],[3,9,7,4,11,[[119,1,1,4,5],[122,1,1,5,6],[125,3,2,6,8],[143,2,1,8,9],[149,1,1,9,10],[151,1,1,10,11]]],[4,4,3,11,14,[[169,1,1,11,12],[171,2,1,12,13],[185,1,1,13,14]]],[6,1,1,14,15,[[229,1,1,14,15]]],[8,2,2,15,17,[[255,1,1,15,16],[260,1,1,16,17]]],[9,4,4,17,21,[[275,4,4,17,21]]],[11,2,2,21,23,[[316,1,1,21,22],[336,1,1,22,23]]],[12,1,1,23,24,[[349,1,1,23,24]]],[13,7,5,24,29,[[374,1,1,24,25],[381,1,1,25,26],[389,2,2,26,28],[392,3,1,28,29]]],[14,1,1,29,30,[[410,1,1,29,30]]],[15,3,3,30,33,[[417,1,1,30,31],[424,1,1,31,32],[425,1,1,32,33]]],[17,6,6,33,39,[[451,1,1,33,34],[452,1,1,34,35],[453,1,1,35,36],[462,1,1,36,37],[466,1,1,37,38],[474,1,1,38,39]]],[18,8,8,39,47,[[529,1,1,39,40],[545,1,1,40,41],[558,1,1,41,42],[583,2,2,42,44],[586,1,1,44,45],[587,1,1,45,46],[596,1,1,46,47]]],[19,3,3,47,50,[[635,1,1,47,48],[641,1,1,48,49],[650,1,1,49,50]]],[20,3,3,50,53,[[663,2,2,50,52],[670,1,1,52,53]]],[21,1,1,53,54,[[677,1,1,53,54]]],[22,5,5,54,59,[[730,2,2,54,56],[738,2,2,56,58],[744,1,1,58,59]]],[23,3,3,59,62,[[746,1,1,59,60],[793,1,1,60,61],[794,1,1,61,62]]],[24,3,2,62,64,[[797,1,1,62,63],[798,2,1,63,64]]],[25,11,11,64,75,[[817,1,1,64,65],[823,1,1,65,66],[827,1,1,66,67],[828,3,3,67,70],[829,1,1,70,71],[833,1,1,71,72],[840,1,1,72,73],[847,2,2,73,75]]],[26,2,2,75,77,[[857,1,1,75,76],[860,1,1,76,77]]],[37,1,1,77,78,[[913,1,1,77,78]]]],[621,1559,2760,3556,3731,3829,3983,3988,4575,4798,4865,5370,5421,5818,7046,7763,7885,8234,8237,8238,8240,9640,10205,10752,11363,11505,11669,11675,11741,12222,12399,12661,12690,13242,13268,13296,13504,13597,13861,14716,14929,15224,15658,15683,15761,15791,16060,16636,16791,17074,17403,17405,17529,17640,18710,18711,18825,18835,18924,18977,20144,20179,20317,20347,20808,20989,21116,21124,21156,21157,21176,21258,21468,21657,21674,21988,22063,22913]]],["because",[29,29,[[1,1,1,0,1,[[66,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[9,1,1,2,3,[[287,1,1,2,3]]],[10,1,1,3,4,[[311,1,1,3,4]]],[11,1,1,4,5,[[335,1,1,4,5]]],[14,5,5,5,10,[[405,1,1,5,6],[411,2,2,6,8],[412,2,2,8,10]]],[15,1,1,10,11,[[425,1,1,10,11]]],[17,2,2,11,13,[[467,1,1,11,12],[469,1,1,12,13]]],[18,2,2,13,15,[[537,1,1,13,14],[596,1,1,14,15]]],[22,2,2,15,17,[[700,1,1,15,16],[731,1,1,16,17]]],[23,3,3,17,20,[[746,1,1,17,18],[760,1,1,18,19],[763,1,1,19,20]]],[25,1,1,20,21,[[817,1,1,20,21]]],[29,8,8,21,29,[[879,5,5,21,26],[880,3,3,26,29]]]],[1990,7650,8587,9455,10191,12108,12241,12252,12258,12261,12700,13630,13719,14815,16034,18056,18720,19000,19354,19415,20777,22367,22370,22373,22375,22377,22380,22383,22385]]],["before",[12,11,[[1,2,2,0,2,[[69,1,1,0,1],[76,1,1,1,2]]],[5,2,2,2,4,[[196,1,1,2,3],[201,1,1,3,4]]],[6,2,2,4,6,[[224,2,2,4,6]]],[17,4,3,6,9,[[436,1,1,6,7],[437,2,1,7,8],[439,1,1,8,9]]],[33,1,1,9,10,[[901,1,1,9,10]]],[37,1,1,10,11,[[916,1,1,10,11]]]],[2071,2293,6069,6210,6925,6926,12875,12892,12945,22700,22952]]],["beside",[14,14,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[2,1,1,2,3,[[107,1,1,2,3]]],[3,5,5,3,8,[[140,1,1,3,4],[144,3,3,4,7],[147,1,1,7,8]]],[4,1,1,8,9,[[171,1,1,8,9]]],[6,1,1,9,10,[[217,1,1,9,10]]],[8,1,1,10,11,[[239,1,1,10,11]]],[18,1,1,11,12,[[500,1,1,11,12]]],[21,1,1,12,13,[[671,1,1,12,13]]],[22,1,1,13,14,[[710,1,1,13,14]]]],[923,1898,3269,4452,4587,4592,4601,4672,5415,6695,7298,14237,17545,18279]]],["between",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9362]]],["beyond",[1,1,[[2,1,1,0,1,[[104,1,1,0,1]]]],[3193]]],["by",[210,200,[[0,17,16,0,16,[[13,1,1,0,1],[15,2,1,1,2],[17,2,2,2,4],[23,3,3,4,7],[26,1,1,7,8],[28,1,1,8,9],[37,2,2,9,11],[40,1,1,11,12],[44,1,1,12,13],[47,1,1,13,14],[48,2,2,14,16]]],[1,19,19,16,35,[[51,3,3,16,19],[56,1,1,19,20],[61,1,1,20,21],[63,2,2,21,23],[64,1,1,23,24],[65,1,1,24,25],[67,2,2,25,27],[74,1,1,27,28],[79,2,2,28,30],[81,1,1,30,31],[86,3,3,31,34],[88,1,1,34,35]]],[2,5,5,35,40,[[92,3,3,35,38],[93,1,1,38,39],[96,1,1,39,40]]],[3,34,30,40,70,[[117,2,1,40,41],[118,4,4,41,45],[119,2,1,45,46],[120,2,1,46,47],[122,2,2,47,49],[127,1,1,49,50],[129,3,2,50,52],[136,1,1,52,53],[138,1,1,53,54],[139,4,4,54,58],[140,1,1,58,59],[142,2,2,59,61],[147,1,1,61,62],[149,5,5,62,67],[150,1,1,67,68],[151,1,1,68,69],[152,1,1,69,70]]],[4,8,7,70,77,[[154,1,1,70,71],[155,1,1,71,72],[156,1,1,72,73],[160,2,1,73,74],[173,1,1,74,75],[180,1,1,75,76],[185,1,1,76,77]]],[5,5,5,77,82,[[191,1,1,77,78],[196,1,1,78,79],[197,1,1,79,80],[199,1,1,80,81],[208,1,1,81,82]]],[6,7,7,82,89,[[215,2,2,82,84],[216,3,3,84,87],[219,1,1,87,88],[221,1,1,88,89]]],[8,5,5,89,94,[[236,1,1,89,90],[259,1,1,90,91],[260,1,1,91,92],[261,1,1,92,93],[265,1,1,93,94]]],[9,5,5,94,99,[[268,1,1,94,95],[279,1,1,95,96],[283,1,1,96,97],[286,2,2,97,99]]],[10,6,6,99,105,[[294,1,1,99,100],[298,1,1,100,101],[299,1,1,101,102],[303,1,1,102,103],[310,1,1,103,104],[312,1,1,104,105]]],[11,6,6,105,111,[[314,2,2,105,107],[322,1,1,107,108],[323,1,1,108,109],[335,1,1,109,110],[337,1,1,110,111]]],[12,2,2,111,113,[[344,1,1,111,112],[366,1,1,112,113]]],[13,6,6,113,119,[[368,1,1,113,114],[373,1,1,114,115],[387,1,1,115,116],[389,2,2,116,118],[401,1,1,118,119]]],[14,3,3,119,122,[[403,1,1,119,120],[410,2,2,120,122]]],[15,4,4,122,126,[[416,1,1,122,123],[421,1,1,123,124],[424,1,1,124,125],[425,1,1,125,126]]],[17,6,6,126,132,[[444,1,1,126,127],[463,1,1,127,128],[465,1,1,128,129],[466,1,1,129,130],[471,1,1,130,131],[474,1,1,131,132]]],[18,5,5,132,137,[[478,1,1,132,133],[527,1,1,133,134],[533,1,1,134,135],[571,1,1,135,136],[583,1,1,136,137]]],[19,4,3,137,140,[[635,1,1,137,138],[640,1,1,138,139],[651,2,1,139,140]]],[21,3,3,140,143,[[671,1,1,140,141],[675,1,1,141,142],[677,1,1,142,143]]],[22,7,6,143,149,[[697,2,1,143,144],[710,1,1,144,145],[716,1,1,145,146],[722,1,1,146,147],[727,1,1,147,148],[741,1,1,148,149]]],[23,19,17,149,166,[[749,1,1,149,150],[751,4,4,150,154],[759,1,1,154,155],[761,3,2,155,157],[762,1,1,157,158],[766,1,1,158,159],[769,1,1,159,160],[776,1,1,160,161],[778,1,1,161,162],[790,1,1,162,163],[793,1,1,163,164],[794,1,1,164,165],[796,2,1,165,166]]],[25,25,25,166,191,[[802,2,2,166,168],[804,1,1,168,169],[811,1,1,169,170],[817,2,2,170,172],[818,1,1,172,173],[820,1,1,173,174],[836,1,1,174,175],[838,1,1,175,176],[841,1,1,176,177],[847,1,1,177,178],[848,1,1,178,179],[849,12,12,179,191]]],[26,3,3,191,194,[[857,1,1,191,192],[858,1,1,192,193],[859,1,1,193,194]]],[27,3,3,194,197,[[872,1,1,194,195],[873,1,1,195,196],[874,1,1,196,197]]],[35,1,1,197,198,[[907,1,1,197,198]]],[37,2,2,198,200,[[914,2,2,198,200]]]],[342,388,426,432,604,621,634,767,797,1133,1140,1196,1359,1458,1490,1495,1557,1559,1569,1700,1867,1891,1898,1947,1950,2012,2013,2209,2386,2388,2465,2607,2609,2631,2668,2782,2788,2793,2804,2883,3656,3660,3670,3678,3685,3718,3769,3832,3834,4055,4078,4104,4334,4380,4419,4422,4431,4433,4452,4492,4552,4676,4762,4770,4808,4809,4810,4819,4846,4892,4974,4987,5052,5140,5452,5621,5822,5935,6082,6114,6170,6436,6633,6642,6679,6682,6684,6779,6855,7221,7842,7874,7908,8002,8062,8349,8460,8565,8566,8864,9028,9059,9185,9446,9499,9558,9564,9826,9843,10168,10226,10564,11172,11227,11345,11639,11666,11669,11986,12024,12232,12234,12377,12520,12661,12697,13062,13512,13561,13597,13768,13843,13942,14673,14762,15451,15673,16604,16758,17109,17544,17610,17631,18011,18267,18406,18537,18646,18885,19089,19129,19130,19133,19149,19331,19359,19365,19405,19462,19563,19765,19816,20047,20144,20179,20283,20465,20467,20525,20655,20768,20770,20830,20891,21349,21399,21479,21657,21691,21704,21705,21706,21707,21708,21709,21710,21726,21727,21728,21729,21730,21963,22006,22019,22243,22262,22273,22820,22925,22936]]],["captain",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8474]]],["concerning",[78,63,[[0,3,3,0,3,[[11,1,1,0,1],[23,1,1,1,2],[41,1,1,2,3]]],[1,1,1,3,4,[[73,1,1,3,4]]],[2,1,1,4,5,[[94,1,1,4,5]]],[3,2,2,5,7,[[124,1,1,5,6],[126,1,1,6,7]]],[5,1,1,7,8,[[209,1,1,7,8]]],[7,2,1,8,9,[[235,2,1,8,9]]],[8,1,1,9,10,[[260,1,1,9,10]]],[9,4,3,10,13,[[273,2,1,10,11],[279,1,1,11,12],[280,1,1,12,13]]],[10,6,6,13,19,[[292,2,2,13,15],[301,1,1,15,16],[312,3,3,16,19]]],[11,4,3,19,22,[[322,1,1,19,20],[331,1,1,20,21],[334,2,1,21,22]]],[12,6,5,22,27,[[348,1,1,22,23],[354,2,1,23,24],[356,1,1,24,25],[359,2,2,25,27]]],[13,2,2,27,29,[[397,1,1,27,28],[400,1,1,28,29]]],[14,1,1,29,30,[[412,1,1,29,30]]],[15,4,3,30,33,[[413,2,1,30,31],[423,1,1,31,32],[425,1,1,32,33]]],[16,1,1,33,34,[[434,1,1,33,34]]],[17,2,1,34,35,[[471,2,1,34,35]]],[18,2,2,35,37,[[567,1,1,35,36],[612,1,1,36,37]]],[20,3,3,37,40,[[659,1,1,37,38],[661,1,1,38,39],[665,1,1,39,40]]],[22,6,5,40,45,[[679,1,1,40,41],[680,1,1,41,42],[715,2,2,42,44],[723,2,1,44,45]]],[23,19,11,45,56,[[758,1,1,45,46],[760,4,1,46,47],[762,4,2,47,49],[767,1,1,49,50],[769,1,1,50,51],[771,4,2,51,53],[777,2,1,53,54],[783,1,1,54,55],[786,1,1,55,56]]],[25,3,3,56,59,[[815,1,1,56,57],[819,1,1,57,58],[837,1,1,58,59]]],[29,1,1,59,60,[[879,1,1,59,60]]],[32,2,2,60,62,[[893,1,1,60,61],[895,1,1,61,62]]],[33,1,1,62,63,[[900,1,1,62,63]]]],[318,600,1273,2185,2848,3961,4017,6474,7197,7891,8205,8356,8364,8774,8797,9118,9488,9498,9503,9803,10082,10158,10683,10886,10909,10976,10977,11863,11954,12254,12298,12611,12685,12860,13769,15391,16189,17328,17377,17439,17655,17686,18361,18374,18572,19308,19339,19391,19393,19499,19535,19615,19617,19779,19934,19994,20753,20851,21365,22365,22580,22613,22698]]],["employed",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10648]]],["for",[292,242,[[0,13,12,0,12,[[18,1,1,0,1],[19,2,2,1,3],[23,1,1,3,4],[25,4,4,4,8],[29,1,1,8,9],[36,3,2,9,11],[40,1,1,11,12]]],[1,15,9,12,21,[[61,1,1,12,13],[67,2,2,13,15],[71,5,1,15,16],[78,4,3,16,19],[79,3,2,19,21]]],[2,43,39,21,60,[[90,1,1,21,22],[93,6,6,22,28],[94,6,5,28,33],[95,2,1,33,34],[96,1,1,34,35],[97,1,1,35,36],[99,1,1,36,37],[101,2,2,37,39],[103,7,7,39,46],[104,2,2,46,48],[105,6,5,48,53],[106,1,1,53,54],[108,2,1,54,55],[111,1,1,55,56],[112,1,1,56,57],[115,3,3,57,60]]],[3,19,17,60,77,[[121,2,2,60,62],[122,2,2,62,64],[123,1,1,64,65],[124,3,3,65,68],[131,4,2,68,70],[132,2,2,70,72],[141,1,1,72,73],[144,2,2,73,75],[145,1,1,75,76],[147,1,1,76,77]]],[4,5,4,77,81,[[160,1,1,77,78],[176,2,1,78,79],[183,1,1,79,80],[184,1,1,80,81]]],[6,1,1,81,82,[[219,1,1,81,82]]],[8,4,3,82,85,[[239,1,1,82,83],[257,1,1,83,84],[265,2,1,84,85]]],[9,13,10,85,95,[[267,5,2,85,87],[269,1,1,87,88],[272,1,1,88,89],[277,1,1,89,90],[279,1,1,90,91],[280,1,1,91,92],[285,3,3,92,95]]],[10,4,4,95,99,[[292,2,2,95,97],[298,1,1,97,98],[306,1,1,98,99]]],[11,7,5,99,104,[[318,1,1,99,100],[320,2,1,100,101],[322,1,1,101,102],[324,1,1,102,103],[326,2,1,103,104]]],[12,2,2,104,106,[[343,1,1,104,105],[366,1,1,105,106]]],[13,12,9,106,115,[[373,1,1,106,107],[391,2,1,107,108],[395,5,3,108,111],[396,1,1,111,112],[398,1,1,112,113],[401,2,2,113,115]]],[14,3,3,115,118,[[410,2,2,115,117],[412,1,1,117,118]]],[15,10,9,118,127,[[413,1,1,118,119],[416,1,1,119,120],[417,1,1,120,121],[418,1,1,121,122],[422,3,3,122,125],[423,1,1,125,126],[424,2,1,126,127]]],[16,11,10,127,137,[[429,2,2,127,129],[431,1,1,129,130],[432,2,2,130,132],[433,2,2,132,134],[434,4,3,134,137]]],[17,5,5,137,142,[[441,1,1,137,138],[443,1,1,138,139],[451,1,1,139,140],[473,1,1,140,141],[477,1,1,141,142]]],[18,9,8,142,150,[[516,1,1,142,143],[517,1,1,143,144],[521,1,1,144,145],[527,1,1,145,146],[534,1,1,146,147],[547,1,1,147,148],[592,2,1,148,149],[615,1,1,149,150]]],[19,3,3,150,153,[[644,1,1,150,151],[655,1,1,151,152],[656,1,1,152,153]]],[20,2,2,153,155,[[661,1,1,153,154],[669,1,1,154,155]]],[21,1,1,155,156,[[675,1,1,155,156]]],[22,15,10,156,166,[[688,1,1,156,157],[691,2,1,157,158],[694,2,1,158,159],[702,1,1,159,160],[709,2,1,160,161],[710,3,1,161,162],[732,1,1,162,163],[740,1,1,163,164],[742,1,1,164,165],[744,1,1,165,166]]],[23,34,24,166,190,[[747,1,1,166,167],[749,2,2,167,169],[753,5,5,169,174],[754,1,1,174,175],[759,2,2,175,177],[760,3,1,177,178],[762,1,1,178,179],[766,3,1,179,180],[774,3,2,180,182],[775,7,3,182,185],[777,3,2,185,187],[792,1,1,187,188],[795,2,2,188,190]]],[24,7,7,190,197,[[797,2,2,190,192],[798,2,2,192,194],[799,2,2,194,196],[801,1,1,196,197]]],[25,20,16,197,213,[[810,1,1,197,198],[814,1,1,198,199],[827,1,1,199,200],[828,2,2,200,202],[830,1,1,202,203],[832,3,1,203,204],[833,5,4,204,208],[837,4,3,208,211],[846,1,1,211,212],[847,1,1,212,213]]],[26,5,4,213,217,[[858,4,3,213,216],[861,1,1,216,217]]],[27,4,4,217,221,[[868,1,1,217,218],[870,2,2,218,220],[871,1,1,220,221]]],[28,4,3,221,224,[[876,3,2,221,223],[878,1,1,223,224]]],[29,12,12,224,236,[[879,5,5,224,229],[880,3,3,229,232],[884,1,1,232,233],[885,2,2,233,235],[886,1,1,235,236]]],[31,1,1,236,237,[[892,1,1,236,237]]],[32,1,1,237,238,[[893,1,1,237,238]]],[33,1,1,238,239,[[902,1,1,238,239]]],[37,5,2,239,241,[[922,5,2,239,241]]],[38,1,1,241,242,[[928,1,1,241,242]]]],[474,498,506,613,699,701,713,714,863,1091,1117,1227,1820,2007,2008,2122,2361,2372,2373,2397,2398,2749,2798,2815,2821,2823,2826,2830,2836,2840,2843,2846,2848,2856,2891,2951,2994,3051,3052,3129,3130,3131,3132,3140,3142,3164,3183,3198,3217,3219,3231,3234,3235,3246,3303,3378,3430,3542,3548,3552,3800,3807,3834,3844,3853,3951,3958,3960,4178,4181,4240,4241,4484,4599,4607,4613,4714,5147,5541,5746,5794,6771,7310,7795,7984,8034,8048,8089,8164,8285,8354,8358,8512,8513,8553,8788,8789,9051,9290,9685,9732,9796,9862,9902,10503,11173,11334,11708,11800,11812,11815,11845,11895,11990,11991,12224,12236,12271,12302,12373,12401,12407,12581,12582,12583,12611,12668,12770,12778,12796,12814,12816,12825,12828,12850,12860,12865,13005,13035,13255,13803,13930,14523,14540,14593,14676,14770,14974,15831,16233,16899,17217,17229,17376,17522,17602,17876,17917,17978,18106,18254,18271,18738,18864,18897,18932,19010,19067,19087,19176,19184,19185,19187,19193,19220,19319,19330,19343,19404,19471,19681,19682,19703,19706,19728,19780,19784,20111,20220,20260,20315,20332,20343,20351,20393,20402,20459,20626,20713,21117,21123,21126,21201,21245,21250,21258,21264,21266,21377,21380,21390,21645,21669,22006,22008,22015,22082,22192,22215,22223,22230,22299,22302,22345,22367,22370,22373,22375,22377,22380,22383,22385,22456,22467,22470,22489,22577,22595,22722,23046,23055,23142]]],["forward",[2,2,[[14,2,2,0,2,[[405,2,2,0,2]]]],[12105,12106]]],["from",[3,3,[[4,1,1,0,1,[[165,1,1,0,1]]],[25,1,1,1,2,[[841,1,1,1,2]]],[26,1,1,2,3,[[851,1,1,2,3]]]],[5277,21492,21759]]],["governor",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9344]]],["have",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14098]]],["her",[3,3,[[16,3,3,0,3,[[427,2,2,0,2],[429,1,1,2,3]]]],[12734,12744,12770]]],["him",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12779]]],["how",[1,1,[[12,1,1,0,1,[[356,1,1,0,1]]]],[10912]]],["in",[315,293,[[0,4,4,0,4,[[0,1,1,0,1],[24,1,1,1,2],[29,1,1,2,3],[48,1,1,3,4]]],[1,19,16,4,20,[[57,1,1,4,5],[58,1,1,5,6],[72,1,1,6,7],[74,4,2,7,9],[75,1,1,9,10],[76,1,1,10,11],[77,3,3,11,14],[78,2,1,14,15],[83,2,2,15,17],[88,3,3,17,20]]],[2,13,13,20,33,[[91,1,1,20,21],[94,1,1,21,22],[95,1,1,22,23],[96,1,1,23,24],[101,1,1,24,25],[103,6,6,25,31],[106,1,1,31,32],[114,1,1,32,33]]],[3,14,13,33,46,[[118,1,1,33,34],[119,1,1,34,35],[121,1,1,35,36],[122,1,1,36,37],[131,1,1,37,38],[132,2,2,38,40],[135,1,1,40,41],[138,1,1,41,42],[141,2,1,42,43],[147,1,1,43,44],[149,1,1,44,45],[152,1,1,45,46]]],[4,22,20,46,66,[[157,2,2,46,48],[158,1,1,48,49],[159,1,1,49,50],[161,1,1,50,51],[162,1,1,51,52],[163,4,3,52,55],[169,2,2,55,57],[175,1,1,57,58],[177,2,2,58,60],[180,3,2,60,62],[182,1,1,62,63],[183,2,2,63,65],[184,1,1,65,66]]],[5,7,6,66,72,[[188,1,1,66,67],[196,2,2,67,69],[197,1,1,69,70],[204,3,2,70,72]]],[6,4,4,72,76,[[215,3,3,72,75],[219,1,1,75,76]]],[8,3,3,76,79,[[236,1,1,76,77],[252,1,1,77,78],[260,1,1,78,79]]],[9,5,5,79,84,[[267,2,2,79,81],[277,1,1,81,82],[284,1,1,82,83],[289,1,1,83,84]]],[10,13,13,84,97,[[301,1,1,84,85],[304,2,2,85,87],[305,3,3,87,90],[306,4,4,90,94],[312,3,3,94,97]]],[11,27,27,97,124,[[313,1,1,97,98],[315,1,1,98,99],[320,1,1,99,100],[322,1,1,100,101],[324,1,1,101,102],[325,2,2,102,104],[326,3,3,104,107],[327,7,7,107,114],[328,1,1,114,115],[329,1,1,115,116],[332,1,1,116,117],[333,2,2,117,119],[335,4,4,119,123],[336,1,1,123,124]]],[12,21,17,124,141,[[346,1,1,124,125],[350,1,1,125,126],[360,3,1,126,127],[364,12,12,127,139],[366,4,2,139,141]]],[13,30,25,141,166,[[367,1,1,141,142],[369,1,1,142,143],[375,2,1,143,144],[382,1,1,144,145],[386,1,1,145,146],[389,1,1,146,147],[390,2,2,147,149],[391,1,1,149,150],[393,1,1,150,151],[394,1,1,151,152],[396,1,1,152,153],[398,1,1,153,154],[399,1,1,154,155],[400,5,4,155,159],[401,8,6,159,165],[402,2,1,165,166]]],[14,1,1,166,167,[[404,1,1,166,167]]],[15,6,6,167,173,[[420,1,1,167,168],[421,3,3,168,171],[424,1,1,171,172],[425,1,1,172,173]]],[16,1,1,173,174,[[435,1,1,173,174]]],[17,13,13,174,187,[[443,1,1,174,175],[452,1,1,175,176],[453,2,2,176,178],[454,1,1,178,179],[455,1,1,179,180],[456,2,2,180,182],[457,1,1,182,183],[462,1,1,183,184],[474,1,1,184,185],[476,1,1,185,186],[477,1,1,186,187]]],[18,16,16,187,203,[[484,1,1,187,188],[486,1,1,188,189],[508,1,1,189,190],[513,1,1,190,191],[514,3,3,191,194],[519,2,2,194,196],[526,1,1,196,197],[527,1,1,197,198],[551,1,1,198,199],[568,1,1,199,200],[614,1,1,200,201],[616,1,1,201,202],[623,1,1,202,203]]],[19,9,9,203,212,[[643,2,2,203,205],[647,1,1,205,206],[648,1,1,206,207],[649,2,2,207,209],[652,1,1,209,210],[655,1,1,210,211],[658,1,1,211,212]]],[20,1,1,212,213,[[659,1,1,212,213]]],[22,25,21,213,234,[[686,1,1,213,214],[687,1,1,214,215],[688,1,1,215,216],[692,2,2,216,218],[699,1,1,218,219],[702,2,1,219,220],[706,1,1,220,221],[708,3,2,221,223],[709,2,1,223,224],[714,2,1,224,225],[716,2,2,225,227],[719,1,1,227,228],[725,1,1,228,229],[727,1,1,229,230],[735,2,2,230,232],[736,1,1,232,233],[737,1,1,233,234]]],[23,21,20,234,254,[[750,2,2,234,236],[751,1,1,236,237],[752,1,1,237,238],[753,1,1,238,239],[758,1,1,239,240],[760,1,1,240,241],[764,1,1,241,242],[767,1,1,242,243],[769,1,1,243,244],[771,1,1,244,245],[772,1,1,245,246],[773,1,1,246,247],[775,1,1,247,248],[780,4,3,248,251],[789,2,2,251,253],[793,1,1,253,254]]],[24,2,2,254,256,[[799,1,1,254,255],[800,1,1,255,256]]],[25,18,18,256,274,[[812,1,1,256,257],[813,1,1,257,258],[815,1,1,258,259],[817,1,1,259,260],[818,1,1,260,261],[819,1,1,261,262],[829,1,1,262,263],[834,1,1,263,264],[835,1,1,264,265],[837,2,2,265,267],[838,3,3,267,270],[839,2,2,270,272],[840,1,1,272,273],[845,1,1,273,274]]],[26,7,7,274,281,[[850,1,1,274,275],[858,1,1,275,276],[859,2,2,276,278],[860,3,3,278,281]]],[27,4,4,281,285,[[870,1,1,281,282],[871,1,1,282,283],[872,1,1,283,284],[873,1,1,284,285]]],[29,5,4,285,289,[[881,3,2,285,287],[885,1,1,287,288],[887,1,1,288,289]]],[30,1,1,289,290,[[888,1,1,289,290]]],[31,2,2,290,292,[[891,1,1,290,291],[892,1,1,291,292]]],[37,1,1,292,293,[[912,1,1,292,293]]]],[19,676,867,1490,1732,1751,2146,2207,2221,2245,2276,2317,2318,2319,2360,2497,2498,2680,2681,2682,2767,2835,2852,2888,3049,3127,3128,3129,3138,3139,3140,3240,3487,3675,3696,3810,3841,4191,4201,4211,4305,4411,4489,4680,4815,4891,5069,5075,5092,5124,5172,5188,5217,5226,5229,5382,5384,5520,5553,5562,5622,5646,5728,5741,5752,5805,5880,6077,6091,6120,6298,6302,6633,6640,6641,6779,7225,7640,7869,8040,8047,8270,8490,8655,9149,9237,9247,9256,9272,9280,9288,9297,9303,9310,9518,9519,9525,9551,9597,9750,9827,9869,9879,9883,9911,9914,9924,9931,9936,9940,9946,9951,9956,9961,9982,9993,10118,10136,10144,10168,10186,10189,10193,10207,10616,10767,11011,11111,11113,11114,11116,11117,11118,11119,11120,11121,11122,11123,11124,11189,11193,11195,11233,11393,11520,11621,11674,11690,11704,11730,11762,11790,11843,11907,11926,11943,11954,11957,11964,11968,11976,11981,11990,11991,11993,12001,12095,12500,12514,12544,12547,12647,12682,12868,13045,13276,13286,13293,13305,13337,13381,13387,13415,13491,13848,13911,13928,14003,14040,14345,14442,14454,14455,14461,14559,14560,14654,14684,15061,15407,16226,16255,16346,16850,16867,16962,16993,17021,17033,17137,17221,17310,17331,17808,17846,17875,17929,17930,18043,18117,18170,18225,18245,18251,18336,18405,18410,18469,18600,18645,18767,18771,18800,18804,19090,19105,19127,19171,19179,19299,19343,19424,19492,19539,19607,19633,19666,19724,19860,19865,19870,20041,20045,20138,20374,20425,20665,20702,20734,20774,20835,20875,21182,21307,21340,21362,21376,21399,21411,21422,21437,21444,21474,21623,21745,22002,22023,22036,22056,22057,22074,22216,22229,22251,22263,22400,22404,22481,22501,22524,22564,22570,22911]]],["into",[48,47,[[0,3,3,0,3,[[39,2,2,0,2],[41,1,1,2,3]]],[1,1,1,3,4,[[78,1,1,3,4]]],[2,3,3,4,7,[[103,3,3,4,7]]],[9,1,1,7,8,[[272,1,1,7,8]]],[10,2,2,8,10,[[296,1,1,8,9],[310,1,1,9,10]]],[11,8,8,10,18,[[316,1,1,10,11],[322,1,1,11,12],[324,3,3,12,15],[334,3,3,15,18]]],[13,2,2,18,20,[[373,1,1,18,19],[400,1,1,19,20]]],[17,1,1,20,21,[[451,1,1,20,21]]],[18,3,3,21,24,[[493,1,1,21,22],[512,1,1,22,23],[609,1,1,23,24]]],[22,3,3,24,27,[[718,1,1,24,25],[743,2,2,25,27]]],[23,14,13,27,40,[[750,1,1,27,28],[751,1,1,28,29],[760,2,2,29,31],[763,1,1,31,32],[766,3,3,32,35],[776,1,1,35,36],[780,2,1,36,37],[788,1,1,37,38],[795,2,2,38,40]]],[25,5,5,40,45,[[821,1,1,40,41],[830,1,1,41,42],[833,1,1,42,43],[839,1,1,43,44],[848,1,1,44,45]]],[32,1,1,45,46,[[895,1,1,45,46]]],[33,1,1,46,47,[[902,1,1,46,47]]]],[1183,1193,1289,2339,3118,3126,3137,8167,8904,9441,9607,9817,9854,9861,9865,10150,10152,10154,11335,11950,13249,14096,14423,16154,18429,18903,18914,19098,19150,19349,19351,19412,19461,19480,19482,19766,19854,20031,20262,20263,20927,21197,21257,21435,21687,22613,22724]]],["me",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17668]]],["near",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6306]]],["of",[84,75,[[0,5,4,0,4,[[17,1,1,0,1],[20,2,1,1,2],[26,1,1,2,3],[40,1,1,3,4]]],[1,5,5,4,9,[[61,1,1,4,5],[66,1,1,5,6],[72,1,1,6,7],[81,2,2,7,9]]],[2,1,1,9,10,[[95,1,1,9,10]]],[3,1,1,10,11,[[134,1,1,10,11]]],[4,2,2,11,13,[[161,1,1,11,12],[170,1,1,12,13]]],[5,1,1,13,14,[[195,1,1,13,14]]],[6,2,2,14,16,[[219,1,1,14,15],[229,1,1,15,16]]],[9,3,2,16,18,[[268,2,1,16,17],[285,1,1,17,18]]],[10,7,2,18,20,[[294,5,1,18,19],[300,2,1,19,20]]],[11,3,2,20,22,[[319,1,1,20,21],[327,2,1,21,22]]],[12,6,6,22,28,[[346,1,1,22,23],[354,1,1,23,24],[358,1,1,24,25],[359,1,1,25,26],[360,1,1,26,27],[363,1,1,27,28]]],[13,9,8,28,36,[[375,3,2,28,30],[382,1,1,30,31],[389,1,1,31,32],[390,1,1,32,33],[396,1,1,33,34],[400,1,1,34,35],[401,1,1,35,36]]],[15,1,1,36,37,[[418,1,1,36,37]]],[16,1,1,37,38,[[431,1,1,37,38]]],[17,2,2,38,40,[[459,1,1,38,39],[476,1,1,39,40]]],[18,9,9,40,49,[[484,1,1,40,41],[487,1,1,41,42],[517,1,1,42,43],[566,1,1,43,44],[576,1,1,44,45],[581,1,1,45,46],[596,2,2,46,48],[608,1,1,48,49]]],[19,1,1,49,50,[[643,1,1,49,50]]],[20,1,1,50,51,[[660,1,1,50,51]]],[22,2,2,51,53,[[708,1,1,51,52],[717,1,1,52,53]]],[23,9,9,53,62,[[752,1,1,53,54],[755,1,1,54,55],[762,2,2,55,57],[776,1,1,57,58],[778,1,1,58,59],[780,1,1,59,60],[791,1,1,60,61],[796,1,1,61,62]]],[24,1,1,62,63,[[801,1,1,62,63]]],[25,3,3,63,66,[[829,1,1,63,64],[834,2,2,64,66]]],[28,3,3,66,69,[[876,2,2,66,68],[877,1,1,68,69]]],[31,3,3,69,72,[[891,1,1,69,70],[892,2,2,70,72]]],[32,2,2,72,74,[[898,1,1,72,73],[899,1,1,73,74]]],[35,1,1,74,75,[[908,1,1,74,75]]]],[443,525,768,1210,1823,1990,2157,2450,2452,2858,4289,5175,5392,6057,6757,7054,8062,8549,8877,9085,9724,9945,10643,10880,10949,10975,10997,11101,11369,11382,11519,11659,11683,11844,11945,11991,12408,12795,13445,13894,14005,14044,14532,15333,15507,15605,15960,16062,16150,16866,17353,18222,18414,19159,19247,19392,19394,19762,19805,19872,20077,20301,20460,21174,21304,21309,22294,22296,22324,22568,22570,22574,22661,22677,22838]]],["off",[1,1,[[2,1,1,0,1,[[93,1,1,0,1]]]],[2826]]],["office",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12684]]],["on",[290,267,[[0,14,12,0,12,[[5,1,1,0,1],[7,1,1,1,2],[16,1,1,2,3],[19,2,1,3,4],[20,1,1,4,5],[21,1,1,5,6],[23,1,1,6,7],[32,1,1,7,8],[36,1,1,8,9],[39,2,2,9,11],[45,2,1,11,12]]],[1,34,31,12,43,[[51,1,1,12,13],[61,4,3,13,16],[65,1,1,16,17],[66,1,1,17,18],[68,1,1,18,19],[70,1,1,19,20],[73,2,2,20,22],[74,1,1,22,23],[75,3,2,23,25],[77,7,6,25,31],[82,1,1,31,32],[83,1,1,32,33],[85,1,1,33,34],[87,2,2,34,36],[88,5,5,36,41],[89,2,2,41,43]]],[2,19,17,43,60,[[90,4,3,43,46],[92,2,2,46,48],[93,1,1,48,49],[95,2,2,49,51],[96,1,1,51,52],[97,1,1,52,53],[98,1,1,53,54],[100,3,3,54,57],[104,3,2,57,59],[105,1,1,59,60]]],[3,4,4,60,64,[[119,2,2,60,62],[120,1,1,62,63],[130,1,1,63,64]]],[4,10,10,64,74,[[159,1,1,64,65],[161,1,1,65,66],[162,2,2,66,68],[173,1,1,68,69],[174,1,1,69,70],[180,1,1,70,71],[182,1,1,71,72],[184,2,2,72,74]]],[5,4,4,74,78,[[194,1,1,74,75],[196,1,1,75,76],[199,1,1,76,77],[208,1,1,77,78]]],[6,8,8,78,86,[[216,2,2,78,80],[219,1,1,80,81],[220,1,1,81,82],[222,1,1,82,83],[223,2,2,83,85],[226,1,1,85,86]]],[7,2,2,86,88,[[233,1,1,86,87],[234,1,1,87,88]]],[8,11,11,88,99,[[240,1,1,88,89],[241,1,1,89,90],[246,1,1,90,91],[248,1,1,91,92],[256,1,1,92,93],[258,1,1,93,94],[260,3,3,94,97],[261,1,1,97,98],[262,1,1,98,99]]],[9,17,14,99,113,[[267,1,1,99,100],[268,1,1,100,101],[269,1,1,101,102],[270,1,1,102,103],[275,1,1,103,104],[278,1,1,104,105],[279,4,2,105,107],[280,5,4,107,111],[283,1,1,111,112],[287,1,1,112,113]]],[10,40,35,113,148,[[291,4,4,113,117],[292,3,3,117,120],[293,1,1,120,121],[294,1,1,121,122],[297,9,7,122,129],[298,5,5,129,134],[299,1,1,134,135],[300,2,2,135,137],[301,1,1,137,138],[304,1,1,138,139],[306,1,1,139,140],[308,7,4,140,144],[310,1,1,144,145],[312,3,3,145,148]]],[11,31,30,148,178,[[313,2,2,148,150],[314,1,1,150,151],[315,1,1,151,152],[316,2,2,152,154],[317,1,1,154,155],[318,1,1,155,156],[319,2,2,156,158],[320,1,1,158,159],[321,2,2,159,161],[322,2,2,161,163],[323,1,1,163,164],[325,1,1,164,165],[326,1,1,165,166],[327,1,1,166,167],[328,2,2,167,169],[330,7,6,169,175],[332,1,1,175,176],[335,2,2,176,178]]],[12,11,11,178,189,[[343,4,4,178,182],[347,1,1,182,183],[352,2,2,183,185],[355,1,1,185,186],[366,3,3,186,189]]],[13,25,22,189,211,[[369,4,4,189,193],[370,2,1,193,194],[372,2,2,194,196],[373,1,1,196,197],[374,1,1,197,198],[375,1,1,198,199],[380,1,1,199,200],[382,3,2,200,202],[384,2,2,202,204],[386,1,1,204,205],[390,1,1,205,206],[392,1,1,206,207],[394,1,1,207,208],[395,1,1,208,209],[398,1,1,209,210],[402,2,1,210,211]]],[15,1,1,211,212,[[420,1,1,211,212]]],[16,6,6,212,218,[[426,1,1,212,213],[427,1,1,213,214],[431,2,2,214,216],[432,1,1,216,217],[434,1,1,217,218]]],[17,5,5,218,223,[[439,1,1,218,219],[448,1,1,219,220],[450,1,1,220,221],[451,1,1,221,222],[473,1,1,222,223]]],[19,1,1,223,224,[[636,1,1,223,224]]],[21,1,1,224,225,[[673,1,1,224,225]]],[22,15,13,225,238,[[687,2,1,225,226],[689,2,1,226,227],[693,1,1,227,228],[694,1,1,228,229],[706,2,2,229,231],[708,1,1,231,232],[709,2,2,232,234],[714,4,4,234,238]]],[23,6,6,238,244,[[751,1,1,238,239],[757,2,2,239,241],[762,1,1,241,242],[774,1,1,242,243],[780,1,1,243,244]]],[24,1,1,244,245,[[797,1,1,244,245]]],[25,8,8,245,253,[[802,1,1,245,246],[804,1,1,246,247],[805,1,1,247,248],[817,3,3,248,251],[824,1,1,251,252],[844,1,1,252,253]]],[26,3,3,253,256,[[857,2,2,253,255],[859,1,1,255,256]]],[27,4,3,256,259,[[871,3,2,256,258],[872,1,1,258,259]]],[28,1,1,259,260,[[877,1,1,259,260]]],[29,1,1,260,261,[[883,1,1,260,261]]],[31,1,1,261,262,[[892,1,1,261,262]]],[34,2,2,262,264,[[904,2,2,262,264]]],[35,2,2,264,266,[[906,2,2,264,266]]],[37,2,1,266,267,[[922,2,1,266,267]]]],[138,192,400,504,527,556,636,964,1106,1188,1191,1415,1560,1823,1839,1845,1961,1992,2030,2107,2183,2185,2214,2245,2270,2302,2303,2316,2318,2320,2330,2477,2529,2577,2635,2640,2671,2681,2682,2683,2684,2727,2731,2753,2756,2757,2782,2783,2807,2859,2861,2883,2943,2977,2999,3024,3031,3174,3191,3211,3721,3727,3755,4113,5136,5167,5188,5190,5469,5476,5613,5715,5769,5771,6031,6090,6170,6446,6691,6694,6802,6815,6883,6889,6904,6978,7159,7187,7324,7338,7452,7490,7785,7831,7879,7881,7884,7918,7941,8032,8074,8110,8127,8233,8316,8322,8336,8360,8365,8382,8389,8461,8590,8737,8744,8763,8765,8785,8789,8794,8822,8873,8937,8963,8969,8970,8973,8975,8977,9005,9008,9010,9012,9039,9077,9088,9099,9138,9241,9294,9348,9364,9374,9380,9428,9490,9499,9504,9542,9546,9566,9587,9623,9624,9665,9705,9709,9724,9742,9759,9773,9796,9823,9848,9892,9916,9937,9967,9977,10038,10044,10045,10048,10050,10051,10105,10173,10177,10486,10493,10498,10503,10664,10811,10812,10897,11179,11187,11189,11236,11242,11244,11245,11258,11292,11300,11330,11358,11372,11486,11516,11517,11551,11560,11616,11702,11747,11768,11812,11893,12008,12497,12704,12747,12797,12802,12817,12859,12943,13166,13230,13254,13819,16652,17572,17849,17892,17963,17981,18165,18168,18234,18251,18254,18335,18336,18339,18341,19148,19268,19293,19387,19673,19865,20312,20472,20525,20535,20773,20774,20777,21012,21592,21966,21979,22024,22230,22233,22244,22316,22442,22578,22763,22764,22796,22799,23051]]],["ourselves",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12581]]],["over",[414,371,[[0,16,16,0,16,[[7,1,1,0,1],[8,1,1,1,2],[36,1,1,2,3],[38,2,2,3,5],[40,7,7,5,12],[41,1,1,12,13],[46,2,2,13,15],[48,1,1,15,16]]],[1,29,27,16,43,[[50,2,2,16,18],[51,1,1,18,19],[54,1,1,19,20],[57,5,3,20,23],[59,4,4,23,27],[61,3,3,27,30],[63,5,5,30,35],[67,2,2,35,37],[75,2,2,37,39],[79,1,1,39,40],[85,1,1,40,41],[86,1,1,41,42],[89,1,1,42,43]]],[2,5,5,43,48,[[103,3,3,43,46],[105,1,1,46,47],[115,1,1,47,48]]],[3,20,17,48,65,[[117,3,1,48,49],[126,14,13,49,62],[130,1,1,62,63],[132,1,1,63,64],[143,1,1,64,65]]],[4,16,12,65,77,[[153,1,1,65,66],[169,4,2,66,68],[173,1,1,68,69],[180,4,3,69,72],[182,2,1,72,73],[183,1,1,73,74],[184,2,2,74,76],[186,1,1,76,77]]],[5,3,3,77,80,[[190,1,1,77,78],[193,1,1,78,79],[194,1,1,79,80]]],[6,12,11,80,91,[[219,11,10,80,90],[221,1,1,90,91]]],[7,3,3,91,94,[[233,2,2,91,93],[234,1,1,93,94]]],[8,29,28,94,122,[[237,1,1,94,95],[243,4,4,95,99],[244,1,1,99,100],[245,2,2,100,102],[246,1,1,102,103],[247,4,4,103,107],[248,2,2,107,109],[249,1,1,109,110],[250,6,5,110,115],[251,1,1,115,116],[253,1,1,116,117],[254,1,1,117,118],[257,2,2,118,120],[258,1,1,120,121],[260,1,1,121,122]]],[9,38,29,122,151,[[267,2,1,122,123],[268,7,5,123,128],[269,4,3,128,131],[270,1,1,131,132],[271,7,5,132,137],[272,2,1,137,138],[273,4,3,138,141],[274,2,2,141,143],[278,1,1,143,144],[283,1,1,144,145],[284,2,2,145,147],[285,2,2,147,149],[286,3,2,149,151]]],[10,43,38,151,189,[[291,3,2,151,153],[292,2,2,153,155],[294,6,5,155,160],[295,3,3,160,163],[296,1,1,163,164],[298,1,1,164,165],[299,1,1,165,166],[301,3,3,166,169],[302,3,3,169,172],[303,1,1,172,173],[304,3,3,173,176],[305,4,3,176,179],[306,7,6,179,185],[309,2,2,185,187],[312,3,2,187,189]]],[11,25,24,189,213,[[315,1,1,189,190],[320,2,2,190,192],[321,1,1,192,193],[322,4,3,193,196],[323,2,2,196,198],[325,3,3,198,201],[327,5,5,201,206],[329,1,1,206,207],[330,2,2,207,209],[331,1,1,209,210],[333,1,1,210,211],[337,2,2,211,213]]],[12,47,40,213,253,[[343,1,1,213,214],[346,6,5,214,219],[348,3,3,219,222],[349,2,2,222,224],[351,2,2,224,226],[354,2,2,226,228],[355,3,3,228,231],[358,1,1,231,232],[359,1,1,232,233],[360,1,1,233,234],[363,5,5,234,239],[364,13,9,239,248],[365,3,2,248,250],[366,4,3,250,253]]],[13,23,23,253,276,[[367,3,3,253,256],[368,1,1,256,257],[371,1,1,257,258],[372,2,2,258,260],[375,2,2,260,262],[376,2,2,262,264],[379,2,2,264,266],[385,1,1,266,267],[386,1,1,267,268],[388,1,1,268,269],[392,1,1,269,270],[397,2,2,270,272],[398,1,1,272,273],[400,1,1,273,274],[402,2,2,274,276]]],[15,10,9,276,285,[[417,1,1,276,277],[419,1,1,277,278],[421,2,1,278,279],[423,2,2,279,281],[424,2,2,281,283],[425,2,2,283,285]]],[16,2,2,285,287,[[428,1,1,285,286],[433,1,1,286,287]]],[17,6,6,287,293,[[441,1,1,287,288],[442,1,1,288,289],[449,1,1,289,290],[461,1,1,290,291],[476,1,1,291,292],[477,1,1,292,293]]],[18,16,15,293,308,[[490,1,1,293,294],[518,1,1,294,295],[519,1,1,295,296],[524,2,2,296,298],[537,1,1,298,299],[545,1,1,299,300],[560,1,1,300,301],[565,1,1,301,302],[585,2,1,302,303],[586,1,1,303,304],[587,1,1,304,305],[601,2,2,305,307],[622,1,1,307,308]]],[19,3,3,308,311,[[646,1,1,308,309],[647,1,1,309,310],[655,1,1,310,311]]],[20,1,1,311,312,[[659,1,1,311,312]]],[21,1,1,312,313,[[672,1,1,312,313]]],[22,16,12,313,325,[[686,2,1,313,314],[689,1,1,314,315],[693,2,1,315,316],[697,1,1,316,317],[700,1,1,317,318],[701,1,1,318,319],[703,2,1,319,320],[714,2,2,320,322],[715,1,1,322,323],[732,1,1,323,324],[740,2,1,324,325]]],[23,14,12,325,337,[[745,2,1,325,326],[749,1,1,326,327],[750,1,1,327,328],[757,1,1,328,329],[759,1,1,329,330],[767,1,1,330,331],[775,2,1,331,332],[776,1,1,332,333],[784,1,1,333,334],[787,1,1,334,335],[788,1,1,335,336],[793,1,1,336,337]]],[24,2,2,337,339,[[798,1,1,337,338],[799,1,1,338,339]]],[25,19,19,339,358,[[802,3,3,339,342],[811,5,5,342,347],[812,1,1,347,348],[817,2,2,348,350],[820,1,1,350,351],[821,1,1,351,352],[828,1,1,352,353],[833,3,3,353,356],[835,1,1,356,357],[838,1,1,357,358]]],[26,2,2,358,360,[[850,1,1,358,359],[858,1,1,359,360]]],[27,1,1,360,361,[[871,1,1,360,361]]],[31,2,2,361,363,[[890,1,1,361,362],[892,1,1,362,363]]],[32,3,2,363,365,[[895,2,1,363,364],[896,1,1,364,365]]],[33,1,1,365,366,[[902,1,1,365,366]]],[35,2,1,366,367,[[908,2,1,366,367]]],[36,1,1,367,368,[[909,1,1,367,368]]],[37,3,3,368,371,[[915,1,1,368,369],[919,1,1,369,370],[924,1,1,370,371]]]],[184,219,1091,1153,1154,1228,1229,1235,1236,1238,1240,1251,1258,1440,1446,1495,1540,1543,1568,1646,1715,1716,1719,1789,1790,1791,1798,1829,1839,1843,1896,1905,1910,1915,1916,2020,2024,2247,2248,2388,2580,2613,2726,3116,3117,3161,3222,3540,3654,3998,4002,4003,4004,4006,4007,4008,4010,4011,4012,4013,4014,4015,4122,4207,4570,4907,5378,5379,5453,5634,5647,5674,5717,5743,5769,5807,5840,5928,6002,6033,6762,6763,6764,6765,6766,6767,6768,6769,6772,6776,6840,7154,7155,7181,7241,7376,7378,7380,7388,7407,7419,7437,7457,7461,7472,7473,7474,7486,7499,7555,7561,7567,7577,7586,7595,7596,7681,7726,7789,7796,7827,7891,8039,8053,8056,8058,8059,8060,8091,8098,8115,8132,8134,8135,8137,8144,8149,8178,8188,8191,8206,8224,8225,8293,8468,8479,8486,8521,8533,8577,8578,8751,8752,8781,8805,8845,8848,8849,8850,8851,8885,8892,8894,8897,9001,9074,9133,9145,9150,9168,9169,9171,9214,9220,9225,9232,9250,9274,9282,9285,9291,9299,9301,9306,9312,9402,9403,9521,9531,9577,9740,9747,9785,9798,9815,9829,9832,9847,9872,9881,9885,9930,9933,9942,9948,9952,9984,10042,10061,10063,10132,10241,10244,10485,10634,10635,10641,10646,10647,10675,10676,10698,10724,10758,10776,10782,10870,10873,10904,10905,10907,10950,10974,10984,11097,11099,11103,11106,11109,11113,11125,11134,11135,11136,11137,11138,11139,11140,11147,11148,11190,11191,11194,11203,11205,11207,11222,11276,11287,11288,11372,11394,11412,11413,11454,11458,11587,11618,11656,11753,11866,11868,11881,11946,11997,12003,12397,12422,12548,12597,12609,12632,12668,12684,12697,12759,12819,12983,13020,13197,13474,13922,13933,14076,14553,14562,14627,14633,14815,14934,15259,15324,15751,15761,15792,16106,16107,16329,16936,16980,17211,17327,17558,17814,17899,17962,18020,18067,18088,18125,18333,18352,18354,18732,18859,18956,19064,19106,19287,19318,19488,19719,19772,19952,20007,20037,20149,20349,20408,20486,20489,20490,20634,20635,20637,20651,20652,20677,20770,20789,20889,20928,21153,21251,21256,21279,21336,21421,21748,21989,22230,22551,22574,22614,22627,22731,22837,22850,22939,23013,23077]]],["oversee",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10644]]],["oversight",[2,2,[[12,1,1,0,1,[[346,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[10638,12604]]],["presence",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7787]]],["provocation",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19762]]],["sake",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14942]]],["sakes",[3,3,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,2,2,1,3,[[484,1,1,1,2],[582,1,1,2,3]]]],[10841,14002,15620]]],["steward",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9292]]],["than",[5,5,[[3,1,1,0,1,[[119,1,1,0,1]]],[17,1,1,1,2,[[458,1,1,1,2]]],[20,2,2,2,4,[[659,1,1,2,3],[663,1,1,3,4]]],[26,1,1,4,5,[[850,1,1,4,5]]]],[3738,13421,17331,17405,21757]]],["that",[3,3,[[0,1,1,0,1,[[30,1,1,0,1]]],[2,1,1,1,2,[[113,1,1,1,2]]],[13,1,1,2,3,[[395,1,1,2,3]]]],[893,3458,11827]]],["thee",[1,1,[[10,1,1,0,1,[[292,1,1,0,1]]]],[8813]]],["them",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13984]]],["thereby",[3,3,[[23,2,2,0,2,[[762,1,1,0,1],[763,1,1,1,2]]],[25,1,1,2,3,[[834,1,1,2,3]]]],[19400,19415,21299]]],["therein",[10,10,[[2,1,1,0,1,[[114,1,1,0,1]]],[3,2,2,1,3,[[129,1,1,1,2],[132,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[18,1,1,4,5,[[514,1,1,4,5]]],[23,2,2,5,7,[[780,2,2,5,7]]],[25,2,2,7,9,[[829,1,1,7,8],[838,1,1,8,9]]],[34,1,1,9,10,[[904,1,1,9,10]]]],[3488,4093,4240,12517,14479,19871,19874,21183,21422,22766]]],["thereon",[43,39,[[0,2,1,0,1,[[34,2,1,0,1]]],[1,7,6,1,7,[[66,1,1,1,2],[69,1,1,2,3],[79,3,2,3,5],[89,2,2,5,7]]],[2,7,7,7,14,[[91,3,3,7,10],[94,1,1,10,11],[95,1,1,11,12],[99,1,1,12,13],[100,1,1,13,14]]],[3,5,5,14,19,[[120,3,3,14,17],[121,1,1,17,18],[125,1,1,18,19]]],[4,1,1,19,20,[[179,1,1,19,20]]],[5,4,3,20,23,[[194,2,2,20,22],[208,2,1,22,23]]],[9,2,2,23,25,[[283,1,1,23,24],[285,1,1,24,25]]],[10,1,1,25,26,[[303,1,1,25,26]]],[11,1,1,26,27,[[328,1,1,26,27]]],[12,1,1,27,28,[[352,1,1,27,28]]],[13,3,3,28,31,[[369,2,2,28,30],[399,1,1,30,31]]],[14,2,2,31,33,[[405,2,2,31,33]]],[16,2,2,33,35,[[430,1,1,33,34],[432,1,1,34,35]]],[22,1,1,35,36,[[708,1,1,35,36]]],[25,3,2,36,38,[[816,1,1,36,37],[844,2,1,37,38]]],[37,1,1,38,39,[[914,1,1,38,39]]]],[1025,1995,2077,2389,2391,2734,2742,2763,2768,2777,2841,2861,2978,3035,3749,3750,3756,3807,3987,5591,6031,6033,6449,8468,8537,9197,9975,10806,11234,11243,11924,12099,12100,12793,12816,18229,20757,21590,22924]]],["thereto",[8,8,[[2,4,4,0,4,[[94,1,1,0,1],[95,1,1,1,2],[116,2,2,2,4]]],[3,1,1,4,5,[[135,1,1,4,5]]],[4,1,1,5,6,[[164,1,1,5,6]]],[12,1,1,6,7,[[359,1,1,6,7]]],[13,1,1,7,8,[[376,1,1,7,8]]]],[2846,2854,3597,3601,4306,5272,10978,11409]]],["thereupon",[3,3,[[1,1,1,0,1,[[80,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]],[35,1,1,2,3,[[907,1,1,2,3]]]],[2427,20778,22812]]],["therewith",[2,2,[[4,1,1,0,1,[[168,1,1,0,1]]],[25,1,1,1,2,[[805,1,1,1,2]]]],[5345,20544]]],["through",[6,6,[[11,1,1,0,1,[[336,1,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]],[18,1,1,2,3,[[558,1,1,2,3]]],[23,1,1,3,4,[[796,1,1,3,4]]],[26,1,1,4,5,[[857,1,1,4,5]]],[37,1,1,5,6,[[919,1,1,5,6]]]],[10222,13539,15222,20279,21986,23007]]],["throughout",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11590]]],["to",[193,174,[[0,5,4,0,4,[[17,1,1,0,1],[23,2,1,1,2],[42,1,1,2,3],[44,1,1,3,4]]],[1,9,8,4,12,[[55,1,1,4,5],[66,1,1,5,6],[67,1,1,6,7],[77,2,2,7,9],[83,1,1,9,10],[87,1,1,10,11],[88,2,1,11,12]]],[2,3,3,12,15,[[93,1,1,12,13],[94,1,1,13,14],[110,1,1,14,15]]],[3,17,14,15,29,[[118,1,1,15,16],[119,2,2,16,18],[120,7,5,18,23],[125,2,1,23,24],[126,1,1,24,25],[151,2,2,25,27],[152,2,2,27,29]]],[4,4,3,29,32,[[169,2,1,29,30],[179,1,1,30,31],[186,1,1,31,32]]],[6,2,2,32,34,[[219,2,2,32,34]]],[8,4,4,34,38,[[237,1,1,34,35],[240,1,1,35,36],[241,1,1,36,37],[248,1,1,37,38]]],[9,7,5,38,43,[[268,4,2,38,40],[270,1,1,40,41],[278,1,1,41,42],[284,1,1,42,43]]],[10,8,8,43,51,[[291,1,1,43,44],[299,1,1,44,45],[300,2,2,45,47],[302,2,2,47,49],[305,1,1,49,50],[310,1,1,50,51]]],[11,8,7,51,58,[[324,1,1,51,52],[328,1,1,52,53],[330,2,1,53,54],[335,1,1,54,55],[336,1,1,55,56],[337,2,2,56,58]]],[12,10,10,58,68,[[348,1,1,58,59],[349,4,4,59,63],[350,1,1,63,64],[359,1,1,64,65],[362,3,3,65,68]]],[13,20,17,68,85,[[367,1,1,68,69],[368,1,1,69,70],[374,2,1,70,71],[375,2,2,71,73],[376,1,1,73,74],[377,1,1,74,75],[378,1,1,75,76],[381,1,1,76,77],[385,1,1,77,78],[387,1,1,78,79],[391,1,1,79,80],[394,2,1,80,81],[396,2,1,81,82],[398,1,1,82,83],[400,1,1,83,84],[402,1,1,84,85]]],[14,1,1,85,86,[[409,1,1,85,86]]],[15,5,5,86,91,[[414,1,1,86,87],[415,2,2,87,89],[422,1,1,89,90],[424,1,1,90,91]]],[16,9,7,91,98,[[426,5,3,91,94],[428,1,1,94,95],[429,2,2,95,97],[431,1,1,97,98]]],[17,5,5,98,103,[[436,1,1,98,99],[442,1,1,99,100],[444,1,1,100,101],[456,1,1,101,102],[466,1,1,102,103]]],[18,3,3,103,106,[[493,1,1,103,104],[571,1,1,104,105],[610,1,1,105,106]]],[19,8,7,106,113,[[643,1,1,106,107],[644,2,1,107,108],[651,1,1,108,109],[652,2,2,109,111],[653,1,1,111,112],[656,1,1,112,113]]],[20,3,3,113,116,[[661,1,1,113,114],[665,1,1,114,115],[670,1,1,115,116]]],[22,21,21,116,137,[[688,2,2,116,118],[692,1,1,118,119],[693,1,1,119,120],[695,1,1,120,121],[707,2,2,121,123],[708,2,2,123,125],[712,1,1,125,126],[714,1,1,126,127],[720,1,1,127,128],[724,1,1,128,129],[725,1,1,129,130],[731,1,1,130,131],[734,2,2,131,133],[735,2,2,133,135],[743,1,1,135,136],[744,1,1,136,137]]],[23,25,23,137,160,[[745,1,1,137,138],[747,2,2,138,140],[755,2,2,140,142],[756,1,1,142,143],[758,1,1,143,144],[762,1,1,144,145],[765,1,1,145,146],[766,1,1,146,147],[767,2,2,147,149],[768,1,1,149,150],[769,1,1,150,151],[770,1,1,151,152],[773,1,1,152,153],[780,1,1,153,154],[781,1,1,154,155],[783,2,2,155,157],[788,3,1,157,158],[789,1,1,158,159],[795,1,1,159,160]]],[24,1,1,160,161,[[800,1,1,160,161]]],[25,7,7,161,168,[[814,1,1,161,162],[829,1,1,162,163],[834,1,1,163,164],[839,1,1,164,165],[840,1,1,165,166],[842,1,1,166,167],[845,1,1,167,168]]],[26,2,2,168,170,[[860,2,2,168,170]]],[29,1,1,170,171,[[884,1,1,170,171]]],[32,1,1,171,172,[[893,1,1,171,172]]],[38,4,2,172,174,[[926,2,1,172,173],[928,2,1,173,174]]]],[429,640,1297,1379,1681,1984,2022,2307,2314,2503,2659,2678,2830,2842,3356,3692,3708,3743,3762,3780,3784,3788,3792,3985,4001,4851,4869,4882,4884,5375,5598,5844,6803,6805,7251,7323,7343,7503,8068,8070,8122,8303,8511,8755,9056,9095,9096,9162,9165,9276,9451,9867,9975,10051,10194,10214,10233,10242,10688,10739,10740,10742,10743,10770,10972,11048,11049,11052,11200,11215,11360,11379,11380,11406,11427,11447,11499,11586,11628,11707,11777,11828,11880,11950,12008,12184,12314,12329,12346,12578,12646,12708,12710,12718,12756,12767,12769,12802,12880,13028,13077,13386,13593,14094,15433,16171,16863,16877,17092,17133,17138,17152,17236,17373,17443,17530,17853,17878,17929,17967,17990,18194,18205,18218,18223,18317,18342,18505,18594,18606,18712,18759,18761,18766,18776,18900,18942,18953,19018,19020,19228,19236,19260,19296,19395,19449,19481,19487,19519,19530,19535,19577,19666,19871,19888,19932,19935,20030,20043,20275,20428,20726,21174,21293,21436,21465,21533,21612,22057,22070,22455,22593,23105,23144]]],["touching",[2,2,[[2,1,1,0,1,[[94,1,1,0,1]]],[23,1,1,1,2,[[745,1,1,1,2]]]],[2843,18962]]],["toward",[20,20,[[1,4,4,0,4,[[58,2,2,0,2],[59,2,2,2,4]]],[5,1,1,4,5,[[189,1,1,4,5]]],[9,2,2,5,7,[[280,1,1,5,6],[290,1,1,6,7]]],[13,1,1,7,8,[[386,1,1,7,8]]],[14,1,1,8,9,[[405,1,1,8,9]]],[18,5,5,9,14,[[543,1,1,9,10],[563,1,1,10,11],[580,1,1,11,12],[593,1,1,12,13],[594,1,1,13,14]]],[21,1,1,14,15,[[677,1,1,14,15]]],[23,2,2,15,17,[[773,2,2,15,17]]],[25,3,3,17,20,[[818,1,1,17,18],[849,2,2,18,20]]]],[1764,1765,1798,1799,5909,8357,8712,11611,12108,14878,15297,15560,15860,15869,17637,19645,19646,20832,21723,21730]]],["under",[8,8,[[12,4,4,0,4,[[362,3,3,0,3],[363,1,1,3,4]]],[13,2,2,4,6,[[392,2,2,4,6]]],[23,1,1,6,7,[[777,1,1,6,7]]],[24,1,1,7,8,[[801,1,1,7,8]]]],[11048,11049,11052,11105,11743,11745,19788,20447]]],["unto",[165,155,[[0,14,12,0,12,[[18,2,2,0,2],[27,1,1,2,3],[29,1,1,3,4],[32,3,1,4,5],[37,1,1,5,6],[39,2,2,6,8],[40,2,2,8,10],[47,1,1,10,11],[48,1,1,11,12]]],[1,8,7,12,19,[[50,1,1,12,13],[69,2,2,13,15],[78,2,1,15,16],[81,1,1,16,17],[83,1,1,17,18],[88,1,1,18,19]]],[2,5,5,19,24,[[111,1,1,19,20],[115,1,1,20,21],[116,3,3,21,24]]],[3,13,13,24,37,[[118,1,1,24,25],[120,1,1,25,26],[121,1,1,26,27],[123,1,1,27,28],[127,3,3,28,31],[130,1,1,31,32],[134,2,2,32,34],[149,1,1,34,35],[150,1,1,35,36],[152,1,1,36,37]]],[4,4,4,37,41,[[156,1,1,37,38],[157,1,1,38,39],[175,1,1,39,40],[177,1,1,40,41]]],[5,3,3,41,44,[[188,2,2,41,43],[205,1,1,43,44]]],[6,3,2,44,46,[[217,1,1,44,45],[228,2,1,45,46]]],[8,7,7,46,53,[[236,1,1,46,47],[239,1,1,47,48],[247,1,1,48,49],[249,2,2,49,51],[259,1,1,51,52],[260,1,1,52,53]]],[9,5,5,53,58,[[279,1,1,53,54],[281,2,2,54,56],[283,1,1,56,57],[286,1,1,57,58]]],[10,4,4,58,62,[[292,1,1,58,59],[298,1,1,59,60],[301,1,1,60,61],[304,1,1,61,62]]],[11,6,6,62,68,[[330,1,1,62,63],[332,2,2,63,65],[334,3,3,65,68]]],[12,6,5,68,73,[[349,1,1,68,69],[350,2,1,69,70],[354,1,1,70,71],[359,1,1,71,72],[360,1,1,72,73]]],[13,14,13,73,86,[[371,1,1,73,74],[374,1,1,74,75],[379,1,1,75,76],[381,1,1,76,77],[384,2,2,77,79],[394,2,2,79,81],[396,1,1,81,82],[398,5,4,82,86]]],[14,7,7,86,93,[[406,1,1,86,87],[408,1,1,87,88],[409,1,1,88,89],[410,2,2,89,91],[411,1,1,91,92],[412,1,1,92,93]]],[15,18,14,93,107,[[415,13,9,93,102],[416,1,1,102,103],[417,2,2,103,105],[418,2,2,105,107]]],[16,3,3,107,110,[[426,1,1,107,108],[430,1,1,108,109],[434,1,1,109,110]]],[17,5,5,110,115,[[457,1,1,110,111],[469,3,3,111,114],[472,1,1,114,115]]],[18,8,8,115,123,[[487,1,1,115,116],[495,1,1,116,117],[496,1,1,117,118],[514,1,1,118,119],[525,2,2,119,121],[546,1,1,121,122],[567,1,1,122,123]]],[19,1,1,123,124,[[657,1,1,123,124]]],[20,1,1,124,125,[[660,1,1,124,125]]],[22,5,5,125,130,[[700,1,1,125,126],[709,1,1,126,127],[716,1,1,127,128],[723,1,1,128,129],[738,1,1,129,130]]],[23,15,15,130,145,[[747,1,1,130,131],[750,1,1,131,132],[751,1,1,132,133],[754,1,1,133,134],[756,1,1,134,135],[766,1,1,135,136],[767,1,1,136,137],[769,1,1,137,138],[770,2,2,138,140],[780,1,1,140,141],[784,1,1,141,142],[789,1,1,142,143],[793,1,1,143,144],[794,1,1,144,145]]],[24,1,1,145,146,[[800,1,1,145,146]]],[25,5,5,146,151,[[814,1,1,146,147],[839,1,1,147,148],[840,1,1,148,149],[841,1,1,149,150],[848,1,1,150,151]]],[32,2,2,151,153,[[896,1,1,151,152],[897,1,1,152,153]]],[34,1,1,153,154,[[904,1,1,153,154]]],[35,1,1,154,155,[[907,1,1,154,155]]]],[473,488,782,870,961,1131,1185,1193,1208,1235,1468,1486,1542,2056,2077,2353,2439,2503,2695,3383,3525,3583,3585,3589,3663,3770,3799,3859,4036,4037,4049,4126,4259,4261,4767,4827,4883,5006,5062,5525,5552,5876,5877,6333,6716,7020,7222,7317,7479,7512,7518,7861,7877,8342,8393,8422,8460,8562,8796,8990,9132,9245,10038,10104,10111,10153,10158,10165,10737,10762,10889,10973,11014,11274,11361,11460,11494,11549,11559,11780,11784,11836,11884,11893,11900,11906,12117,12173,12201,12218,12227,12246,12256,12329,12331,12332,12334,12335,12336,12337,12339,12344,12371,12397,12398,12404,12418,12719,12783,12861,13391,13698,13711,13720,13772,14055,14159,14174,14455,14644,14648,14962,15394,17257,17350,18067,18251,18395,18575,18826,19004,19108,19140,19202,19260,19460,19500,19536,19574,19587,19874,19945,20042,20156,20193,20441,20711,21432,21476,21492,21697,22621,22636,22764,22816]]],["upon",[1543,1305,[[0,99,87,0,87,[[0,9,8,0,8],[1,2,2,8,10],[2,1,1,10,11],[5,2,2,11,13],[6,15,13,13,26],[7,4,3,26,29],[8,5,4,29,33],[10,3,3,33,36],[14,3,2,36,38],[15,1,1,38,39],[16,1,1,39,40],[17,1,1,40,41],[18,3,2,41,43],[21,3,3,43,46],[23,6,5,46,51],[25,1,1,51,52],[26,3,2,52,54],[27,1,1,54,55],[28,2,2,55,57],[29,1,1,57,58],[30,5,5,58,63],[31,2,2,63,65],[33,2,2,65,67],[34,2,2,67,69],[37,3,3,69,72],[40,3,3,72,75],[42,1,1,75,76],[43,1,1,76,77],[44,3,2,77,79],[45,1,1,79,80],[46,1,1,80,81],[47,5,4,81,85],[49,3,2,85,87]]],[1,145,116,87,203,[[50,1,1,87,88],[52,3,2,88,90],[53,1,1,90,91],[54,3,3,91,94],[56,7,3,94,97],[57,3,3,97,100],[58,7,4,100,104],[59,2,2,104,106],[60,3,2,106,108],[61,4,4,108,112],[62,2,2,112,114],[63,4,2,114,116],[64,3,3,116,119],[65,1,1,119,120],[66,1,1,120,121],[68,4,4,121,125],[69,3,3,125,128],[70,4,4,128,132],[71,2,2,132,134],[73,1,1,134,135],[74,4,4,135,139],[75,5,4,139,143],[76,3,3,143,146],[77,18,14,146,160],[78,21,12,160,172],[79,4,3,172,175],[81,4,4,175,179],[82,2,2,179,181],[83,5,4,181,185],[85,2,1,185,186],[86,5,4,186,190],[88,7,7,190,197],[89,6,6,197,203]]],[2,157,119,203,322,[[90,10,7,203,210],[91,2,2,210,212],[92,13,9,212,221],[93,13,13,221,234],[94,2,2,234,236],[95,7,6,236,242],[96,2,2,242,244],[97,31,18,244,262],[98,8,8,262,270],[99,2,2,270,272],[100,14,11,272,283],[102,1,1,283,284],[103,17,7,284,291],[104,5,4,291,295],[105,13,10,295,305],[106,2,2,305,307],[107,1,1,307,308],[108,2,2,308,310],[110,2,2,310,312],[111,2,2,312,314],[113,4,4,314,318],[115,4,4,318,322]]],[3,70,62,322,384,[[117,1,1,322,323],[120,7,6,323,329],[121,4,3,329,332],[122,4,4,332,336],[123,1,1,336,337],[124,3,3,337,340],[125,5,5,340,345],[126,1,1,345,346],[127,10,7,346,353],[128,2,2,353,355],[130,2,2,355,357],[131,1,1,357,358],[132,4,4,358,362],[133,2,2,362,364],[134,2,2,364,366],[135,9,6,366,372],[136,1,1,372,373],[137,2,2,373,375],[138,2,2,375,377],[140,1,1,377,378],[143,3,3,378,381],[146,1,1,381,382],[151,2,2,382,384]]],[4,59,54,384,438,[[154,1,1,384,385],[156,7,7,385,392],[157,1,1,392,393],[158,2,2,393,395],[159,3,3,395,398],[163,5,4,398,402],[164,8,6,402,408],[167,1,1,408,409],[169,1,1,409,410],[171,1,1,410,411],[173,1,1,411,412],[174,5,4,412,416],[175,1,1,416,417],[176,1,1,417,418],[178,1,1,418,419],[179,4,4,419,423],[180,6,6,423,429],[181,1,1,429,430],[182,3,3,430,433],[184,3,2,433,435],[185,2,2,435,437],[186,1,1,437,438]]],[5,20,17,438,455,[[188,3,3,438,441],[190,1,1,441,442],[193,3,2,442,444],[194,1,1,444,445],[195,2,2,445,447],[196,4,3,447,450],[197,1,1,450,451],[198,1,1,451,452],[199,1,1,452,453],[209,2,1,453,454],[210,1,1,454,455]]],[6,43,40,455,495,[[213,2,2,455,457],[216,4,4,457,461],[217,2,2,461,463],[219,8,7,463,470],[221,3,3,470,473],[222,1,1,473,474],[223,1,1,474,475],[224,2,2,475,477],[225,2,1,477,478],[226,12,11,478,489],[228,1,1,489,490],[229,3,3,490,493],[230,2,2,493,495]]],[7,4,4,495,499,[[234,2,2,495,497],[235,2,2,497,499]]],[8,38,35,499,534,[[236,2,2,499,501],[237,3,3,501,504],[239,3,3,504,507],[240,2,1,507,508],[242,1,1,508,509],[244,2,2,509,511],[245,3,3,511,514],[246,2,2,514,516],[249,2,1,516,517],[251,1,1,517,518],[252,4,4,518,522],[253,1,1,522,523],[254,2,2,523,525],[255,3,3,525,528],[260,1,1,528,529],[261,1,1,529,530],[265,3,2,530,532],[266,2,2,532,534]]],[9,32,29,534,563,[[267,9,8,534,542],[270,1,1,542,543],[277,3,3,543,546],[279,2,2,546,548],[281,2,2,548,550],[282,3,3,550,553],[283,2,2,553,555],[284,2,2,555,557],[286,3,2,557,559],[287,1,1,559,560],[288,4,3,560,563]]],[10,59,50,563,613,[[291,10,10,563,573],[292,2,2,573,575],[293,2,2,575,577],[295,1,1,577,578],[296,4,2,578,580],[297,17,13,580,593],[298,1,1,593,594],[299,3,3,594,597],[302,5,4,597,601],[303,4,2,601,603],[307,3,3,603,606],[308,2,2,606,608],[310,2,2,608,610],[311,3,3,610,613]]],[11,37,28,613,641,[[315,3,3,613,616],[316,9,5,616,621],[318,3,2,621,623],[319,1,1,623,624],[321,2,2,624,626],[323,1,1,626,627],[325,3,2,627,629],[328,3,3,629,632],[330,3,2,632,634],[333,1,1,634,635],[334,2,2,635,637],[335,4,3,637,640],[337,2,1,640,641]]],[12,14,14,641,655,[[342,1,1,641,642],[343,1,1,642,643],[346,1,1,643,644],[347,1,1,644,645],[349,1,1,645,646],[351,1,1,646,647],[353,1,1,647,648],[357,1,1,648,649],[358,2,2,649,651],[365,3,3,651,654],[366,1,1,654,655]]],[13,55,47,655,702,[[367,1,1,655,656],[370,3,2,656,658],[372,4,3,658,661],[373,3,2,661,663],[375,1,1,663,664],[376,3,3,664,667],[379,2,2,667,669],[380,1,1,669,670],[381,2,2,670,672],[383,1,1,672,673],[384,3,3,673,676],[385,4,3,676,679],[386,3,3,679,682],[389,2,2,682,684],[390,3,3,684,687],[391,1,1,687,688],[392,2,2,688,690],[394,1,1,690,691],[395,2,2,691,693],[398,5,4,693,697],[400,5,3,697,700],[401,1,1,700,701],[402,2,1,701,702]]],[14,10,9,702,711,[[405,2,1,702,703],[409,3,3,703,706],[410,3,3,706,709],[411,2,2,709,711]]],[15,14,12,711,723,[[414,2,2,711,713],[416,1,1,713,714],[417,1,1,714,715],[420,2,2,715,717],[421,4,4,717,721],[422,1,1,721,722],[425,3,1,722,723]]],[16,14,12,723,735,[[426,1,1,723,724],[430,1,1,724,725],[431,1,1,725,726],[432,1,1,726,727],[433,2,2,727,729],[434,7,5,729,734],[435,1,1,734,735]]],[17,63,62,735,797,[[436,2,2,735,737],[437,2,2,737,739],[438,2,2,739,741],[442,1,1,741,742],[443,2,2,742,744],[444,2,2,744,746],[445,2,2,746,748],[447,1,1,748,749],[448,2,2,749,751],[449,2,2,751,753],[451,4,4,753,757],[453,2,2,757,759],[454,1,1,759,760],[455,3,3,760,763],[456,3,3,763,766],[457,1,1,766,767],[459,1,1,767,768],[460,1,1,768,769],[461,2,2,769,771],[462,2,2,771,773],[464,4,4,773,777],[465,2,2,777,779],[466,3,3,779,782],[468,5,4,782,786],[469,2,2,786,788],[471,2,2,788,790],[472,1,1,790,791],[473,2,2,791,793],[474,1,1,793,794],[476,2,2,794,796],[477,1,1,796,797]]],[18,76,70,797,867,[[479,1,1,797,798],[480,1,1,798,799],[481,2,2,799,801],[484,1,1,801,802],[488,1,1,802,803],[491,1,1,803,804],[495,3,2,804,806],[498,1,1,806,807],[499,4,4,807,811],[501,2,1,811,812],[504,1,1,812,813],[506,2,1,813,814],[508,1,1,814,815],[509,1,1,815,816],[510,1,1,816,817],[512,1,1,817,818],[513,1,1,818,819],[514,1,1,819,820],[517,1,1,820,821],[518,1,1,821,822],[522,1,1,822,823],[524,1,1,823,824],[528,1,1,824,825],[530,1,1,825,826],[532,5,5,826,831],[533,1,1,831,832],[540,1,1,832,833],[541,1,1,833,834],[546,3,3,834,837],[549,1,1,837,838],[555,2,2,838,840],[556,1,1,840,841],[557,2,1,841,842],[565,1,1,842,843],[566,1,1,843,844],[567,2,1,844,845],[568,1,1,845,846],[569,1,1,846,847],[571,1,1,847,848],[579,1,1,848,849],[580,1,1,849,850],[581,1,1,850,851],[582,2,2,851,853],[584,1,1,853,854],[596,1,1,854,855],[598,1,1,855,856],[602,2,2,856,858],[605,1,1,858,859],[606,1,1,859,860],[609,1,1,860,861],[610,3,2,861,863],[614,1,1,863,864],[616,1,1,864,865],[617,1,1,865,866],[626,1,1,866,867]]],[19,16,14,867,881,[[628,1,1,867,868],[630,1,1,868,869],[633,2,2,869,871],[634,2,1,871,872],[635,1,1,872,873],[636,1,1,873,874],[646,1,1,874,875],[651,1,1,875,876],[652,3,3,876,879],[653,2,1,879,880],[657,1,1,880,881]]],[20,9,8,881,889,[[663,1,1,881,882],[666,3,3,882,885],[667,1,1,885,886],[668,2,1,886,887],[669,2,2,887,889]]],[21,12,10,889,899,[[672,3,2,889,891],[673,1,1,891,892],[675,2,2,892,894],[677,1,1,894,895],[678,5,4,895,899]]],[22,110,83,899,982,[[679,1,1,899,900],[680,10,5,900,905],[682,3,1,905,906],[683,1,1,906,907],[684,2,2,907,909],[685,3,1,909,910],[686,1,1,910,911],[687,4,3,911,914],[688,3,2,914,916],[689,1,1,916,917],[691,1,1,917,918],[692,3,2,918,920],[693,1,1,920,921],[694,1,1,921,922],[696,3,2,922,924],[697,2,2,924,926],[698,2,1,926,927],[699,1,1,927,928],[700,3,3,928,931],[701,1,1,931,932],[702,3,3,932,935],[706,2,2,935,937],[707,1,1,937,938],[708,8,5,938,943],[710,3,3,943,946],[712,5,3,946,949],[713,1,1,949,950],[714,2,2,950,952],[716,1,1,952,953],[718,1,1,953,954],[720,3,3,954,957],[722,5,2,957,959],[723,1,1,959,960],[724,1,1,960,961],[725,6,4,961,965],[726,1,1,965,966],[727,2,2,966,968],[729,1,1,968,969],[730,1,1,969,970],[731,1,1,970,971],[734,1,1,971,972],[736,1,1,972,973],[737,1,1,973,974],[738,3,2,974,976],[739,1,1,976,977],[740,1,1,977,978],[741,1,1,978,979],[743,3,2,979,981],[744,2,1,981,982]]],[23,116,98,982,1080,[[745,1,1,982,983],[746,4,4,983,987],[747,2,2,987,989],[748,1,1,989,990],[749,2,2,990,992],[750,5,4,992,996],[751,4,1,996,997],[752,1,1,997,998],[753,1,1,998,999],[754,2,1,999,1000],[755,2,2,1000,1002],[756,1,1,1002,1003],[757,5,5,1003,1008],[758,1,1,1008,1009],[759,3,3,1009,1012],[760,2,2,1012,1014],[761,4,4,1014,1018],[762,1,1,1018,1019],[763,3,3,1019,1022],[766,4,4,1022,1026],[767,5,5,1026,1031],[768,1,1,1031,1032],[769,4,4,1032,1036],[770,1,1,1036,1037],[771,1,1,1037,1038],[772,1,1,1038,1039],[774,2,2,1039,1041],[775,2,2,1041,1043],[776,3,3,1043,1046],[777,2,2,1046,1048],[780,4,3,1048,1051],[784,1,1,1051,1052],[786,3,2,1052,1054],[788,2,1,1054,1055],[789,1,1,1055,1056],[790,1,1,1056,1057],[792,16,8,1057,1065],[793,3,3,1065,1068],[794,2,2,1068,1070],[795,9,8,1070,1078],[796,3,2,1078,1080]]],[24,5,5,1080,1085,[[797,2,2,1080,1082],[798,1,1,1082,1083],[799,1,1,1083,1084],[800,1,1,1084,1085]]],[25,146,126,1085,1211,[[802,6,5,1085,1090],[803,2,2,1090,1092],[804,4,4,1092,1096],[805,6,4,1096,1100],[806,5,3,1100,1103],[807,2,2,1103,1105],[808,6,5,1105,1110],[809,2,2,1110,1112],[810,4,3,1112,1115],[812,4,4,1115,1119],[813,3,3,1119,1122],[814,1,1,1122,1123],[815,6,5,1123,1128],[817,3,3,1128,1131],[818,2,2,1131,1133],[819,3,2,1133,1135],[821,3,3,1135,1138],[822,1,1,1138,1139],[823,4,4,1139,1143],[824,9,9,1143,1152],[825,7,6,1152,1158],[826,3,3,1158,1161],[827,2,2,1161,1163],[828,3,2,1163,1165],[829,4,4,1165,1169],[830,3,3,1169,1172],[831,1,1,1172,1173],[833,5,4,1173,1177],[834,4,4,1177,1181],[835,2,1,1181,1182],[837,7,6,1182,1188],[838,8,6,1188,1194],[839,6,3,1194,1197],[840,6,6,1197,1203],[841,1,1,1203,1204],[844,2,2,1204,1206],[845,3,2,1206,1208],[846,1,1,1208,1209],[848,2,2,1209,1211]]],[26,13,11,1211,1222,[[857,1,1,1211,1212],[858,9,7,1212,1219],[859,3,3,1219,1222]]],[27,13,12,1222,1234,[[862,1,1,1222,1223],[863,1,1,1223,1224],[865,2,1,1224,1225],[866,2,2,1225,1227],[868,2,2,1227,1229],[870,1,1,1229,1230],[871,2,2,1230,1232],[873,1,1,1232,1233],[875,1,1,1233,1234]]],[28,5,4,1234,1238,[[876,1,1,1234,1235],[877,4,3,1235,1238]]],[29,19,16,1238,1254,[[880,1,1,1238,1239],[881,2,2,1239,1241],[882,4,3,1241,1244],[883,3,3,1244,1247],[884,2,1,1247,1248],[885,1,1,1248,1249],[886,2,1,1249,1250],[887,4,4,1250,1254]]],[30,3,3,1254,1257,[[888,3,3,1254,1257]]],[31,4,4,1257,1261,[[889,3,3,1257,1260],[892,1,1,1260,1261]]],[32,8,7,1261,1268,[[893,1,1,1261,1262],[894,1,1,1262,1263],[895,2,1,1263,1264],[897,3,3,1264,1267],[899,1,1,1267,1268]]],[33,6,6,1268,1274,[[900,1,1,1268,1269],[901,1,1,1269,1270],[902,4,4,1270,1274]]],[34,6,5,1274,1279,[[904,3,2,1274,1276],[905,3,3,1276,1279]]],[35,6,4,1279,1283,[[906,3,2,1279,1281],[907,2,1,1281,1282],[908,1,1,1282,1283]]],[36,9,1,1283,1284,[[909,9,1,1283,1284]]],[37,26,19,1284,1303,[[911,2,2,1284,1286],[912,1,1,1286,1287],[913,3,2,1287,1289],[914,5,3,1289,1292],[915,1,1,1292,1293],[916,2,1,1293,1294],[919,3,2,1294,1296],[921,2,1,1296,1297],[922,3,2,1297,1299],[923,1,1,1299,1300],[924,3,3,1300,1303]]],[38,2,2,1303,1305,[[925,1,1,1303,1304],[926,1,1,1304,1305]]]],[1,10,14,16,25,27,28,29,35,51,69,149,154,162,163,165,167,169,171,173,176,177,178,180,182,183,187,200,202,207,221,222,228,270,274,275,371,372,386,414,443,480,481,549,553,564,606,609,621,638,652,702,739,743,791,797,798,833,883,885,890,907,919,959,960,1005,1007,1016,1031,1147,1148,1149,1198,1212,1237,1308,1345,1372,1373,1390,1451,1453,1465,1468,1469,1507,1529,1548,1591,1601,1621,1640,1641,1653,1690,1702,1704,1713,1715,1717,1751,1761,1764,1765,1783,1789,1807,1811,1829,1839,1849,1850,1876,1883,1915,1919,1936,1939,1946,1961,1989,2037,2042,2044,2046,2056,2063,2076,2091,2096,2099,2107,2116,2138,2193,2206,2216,2217,2225,2239,2242,2267,2269,2274,2276,2279,2301,2305,2315,2316,2319,2322,2323,2326,2327,2328,2329,2330,2331,2336,2342,2343,2346,2348,2349,2351,2352,2355,2356,2357,2358,2374,2386,2392,2415,2454,2459,2467,2472,2489,2494,2497,2503,2524,2531,2583,2607,2617,2620,2631,2669,2679,2683,2688,2689,2694,2695,2726,2727,2729,2730,2736,2745,2749,2750,2752,2753,2756,2757,2762,2763,2777,2780,2781,2783,2786,2787,2788,2791,2792,2793,2799,2802,2803,2804,2805,2810,2813,2819,2820,2824,2825,2828,2829,2839,2841,2858,2859,2861,2862,2864,2876,2881,2899,2924,2925,2926,2928,2929,2931,2932,2933,2935,2936,2939,2940,2941,2942,2943,2944,2945,2947,2962,2965,2966,2967,2970,2971,2973,2977,2983,2984,3017,3018,3024,3026,3029,3034,3035,3038,3039,3041,3043,3097,3118,3125,3128,3129,3136,3139,3140,3177,3188,3190,3192,3203,3205,3209,3210,3214,3216,3219,3220,3222,3223,3241,3246,3276,3298,3300,3355,3357,3372,3391,3450,3452,3453,3460,3545,3549,3554,3559,3657,3750,3751,3753,3754,3757,3768,3806,3807,3822,3828,3830,3842,3850,3939,3946,3949,3951,3980,3983,3984,3985,3987,4022,4033,4035,4041,4049,4050,4053,4055,4062,4070,4126,4144,4191,4198,4216,4227,4239,4246,4247,4262,4274,4291,4302,4304,4307,4308,4309,4317,4348,4349,4397,4405,4448,4572,4574,4577,4662,4867,4868,4963,5014,5017,5030,5036,5040,5043,5044,5062,5094,5095,5117,5127,5133,5226,5228,5229,5237,5241,5242,5256,5259,5264,5267,5342,5382,5416,5470,5476,5482,5484,5489,5513,5540,5572,5588,5590,5593,5597,5626,5635,5656,5659,5667,5672,5706,5709,5715,5726,5760,5781,5820,5839,5848,5875,5877,5878,5915,5982,5986,6034,6042,6057,6075,6088,6090,6111,6132,6163,6475,6483,6578,6584,6680,6682,6691,6693,6699,6700,6759,6772,6778,6787,6798,6803,6807,6858,6866,6867,6870,6903,6915,6928,6943,6952,6958,6961,6963,6966,6968,6969,6975,6976,6978,6979,7012,7044,7051,7052,7059,7095,7175,7187,7195,7200,7221,7223,7248,7250,7268,7309,7310,7316,7326,7362,7415,7416,7419,7424,7428,7447,7451,7521,7611,7623,7624,7656,7667,7680,7726,7729,7739,7755,7761,7903,7917,7992,7995,8013,8014,8024,8028,8031,8032,8038,8041,8043,8046,8131,8261,8280,8282,8335,8346,8403,8421,8427,8434,8448,8451,8461,8487,8495,8562,8566,8590,8613,8630,8636,8730,8734,8737,8741,8747,8750,8752,8755,8761,8764,8782,8802,8820,8842,8883,8928,8931,8936,8937,8950,8951,8952,8953,8954,8956,8959,8963,8965,8972,8975,9021,9056,9060,9076,9155,9160,9183,9184,9186,9187,9336,9337,9338,9367,9369,9438,9446,9455,9478,9480,9591,9598,9603,9632,9634,9635,9637,9638,9700,9704,9713,9781,9793,9841,9884,9887,9976,9978,9980,10045,10047,10131,10161,10165,10171,10181,10185,10239,10444,10503,10642,10663,10728,10791,10860,10928,10950,10960,11145,11148,11162,11189,11200,11250,11260,11295,11298,11309,11327,11346,11383,11399,11404,11406,11464,11471,11489,11491,11495,11533,11558,11560,11565,11578,11583,11586,11596,11599,11601,11667,11676,11686,11695,11704,11732,11747,11748,11775,11799,11814,11883,11887,11900,11901,11938,11957,11961,11982,12010,12100,12179,12182,12201,12219,12223,12232,12242,12250,12315,12325,12378,12400,12497,12509,12512,12515,12524,12544,12583,12689,12708,12780,12801,12815,12824,12834,12836,12837,12847,12859,12861,12867,12886,12888,12902,12903,12908,12909,13009,13038,13044,13059,13084,13087,13089,13149,13164,13180,13184,13203,13247,13248,13252,13253,13284,13291,13322,13330,13349,13351,13360,13364,13372,13417,13459,13464,13474,13476,13490,13503,13535,13536,13545,13554,13572,13573,13589,13598,13624,13657,13665,13669,13677,13704,13706,13764,13766,13781,13798,13817,13862,13896,13918,13933,13951,13965,13969,13971,14011,14061,14082,14128,14151,14196,14213,14214,14217,14222,14243,14287,14311,14347,14359,14388,14426,14442,14462,14527,14545,14600,14633,14710,14721,14735,14736,14742,14747,14754,14767,14845,14858,14944,14950,14959,15006,15137,15140,15191,15215,15315,15345,15395,15408,15414,15454,15528,15566,15574,15622,15644,15739,15947,16086,16113,16115,16132,16135,16169,16171,16172,16224,16244,16273,16390,16427,16458,16561,16568,16578,16629,16641,16937,17104,17125,17133,17135,17155,17270,17399,17464,17472,17474,17487,17500,17515,17516,17562,17571,17579,17603,17613,17632,17645,17646,17649,17654,17679,17697,17698,17699,17700,17701,17738,17745,17770,17776,17799,17814,17831,17835,17836,17870,17876,17886,17908,17953,17954,17969,17974,18001,18003,18005,18016,18032,18043,18074,18076,18077,18094,18112,18115,18116,18186,18191,18203,18223,18233,18234,18242,18249,18270,18272,18274,18305,18308,18314,18330,18338,18342,18411,18442,18481,18485,18505,18536,18552,18573,18593,18605,18608,18610,18612,18616,18652,18658,18684,18703,18716,18760,18800,18821,18822,18823,18844,18860,18869,18900,18904,18934,18960,18980,18985,18999,19002,19008,19023,19047,19070,19073,19100,19101,19112,19115,19139,19155,19197,19226,19234,19242,19261,19267,19270,19279,19282,19292,19309,19320,19323,19329,19340,19353,19358,19359,19375,19382,19406,19410,19420,19422,19456,19458,19478,19484,19486,19496,19501,19503,19524,19530,19547,19560,19563,19564,19587,19598,19632,19685,19690,19710,19730,19750,19760,19773,19792,19796,19846,19872,19873,19945,19992,19993,20012,20045,20066,20101,20102,20103,20104,20112,20117,20118,20123,20132,20135,20164,20201,20208,20225,20237,20247,20254,20259,20264,20268,20276,20298,20299,20320,20324,20342,20382,20439,20467,20481,20486,20490,20492,20493,20494,20516,20524,20526,20527,20530,20533,20537,20538,20547,20562,20563,20566,20577,20579,20580,20581,20585,20603,20605,20614,20626,20628,20630,20660,20663,20668,20678,20686,20687,20693,20726,20740,20744,20748,20750,20753,20767,20773,20776,20845,20847,20864,20869,20903,20908,20916,20975,20996,20997,20998,21007,21015,21016,21021,21023,21027,21048,21049,21053,21056,21062,21063,21064,21067,21073,21079,21090,21096,21099,21116,21119,21132,21151,21164,21169,21175,21180,21188,21190,21191,21219,21252,21253,21256,21275,21282,21283,21290,21306,21319,21369,21370,21371,21377,21384,21388,21398,21401,21403,21405,21407,21413,21437,21445,21447,21450,21452,21453,21462,21465,21477,21478,21596,21599,21616,21617,21649,21689,21691,21978,21999,22000,22001,22002,22005,22012,22015,22022,22025,22031,22098,22118,22146,22153,22162,22190,22192,22209,22236,22239,22266,22285,22297,22313,22339,22340,22387,22404,22409,22412,22417,22423,22425,22431,22434,22454,22471,22491,22496,22499,22501,22510,22521,22525,22526,22538,22543,22545,22576,22582,22596,22619,22634,22640,22642,22680,22699,22706,22717,22718,22730,22731,22749,22750,22769,22776,22787,22791,22792,22807,22828,22851,22886,22894,22908,22917,22921,22924,22925,22933,22947,22960,23008,23015,23045,23049,23055,23066,23072,23085,23088,23096,23106]]],["when",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22749]]],["where",[1,1,[[2,1,1,0,1,[[93,1,1,0,1]]]],[2807]]],["wherein",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12994]]],["whereon",[2,2,[[13,1,1,0,1,[[370,1,1,0,1]]],[21,1,1,1,2,[[674,1,1,1,2]]]],[11265,17586]]],["whereupon",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21048]]],["whom",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13559]]],["with",[103,97,[[0,3,3,0,3,[[31,1,1,0,1],[32,1,1,1,2],[40,1,1,2,3]]],[1,13,11,3,14,[[52,1,1,3,4],[54,1,1,4,5],[61,3,2,5,7],[65,1,1,7,8],[72,1,1,8,9],[77,3,2,9,11],[83,1,1,11,12],[88,2,2,12,14]]],[2,21,19,14,33,[[91,3,3,14,17],[92,3,3,17,20],[93,3,2,20,22],[96,4,4,22,26],[99,2,2,26,28],[103,1,1,28,29],[105,1,1,29,30],[108,1,1,30,31],[112,3,2,31,33]]],[3,8,8,33,41,[[122,2,2,33,35],[125,1,1,35,36],[131,2,2,36,38],[132,1,1,38,39],[135,1,1,39,40],[147,1,1,40,41]]],[4,3,3,41,44,[[168,1,1,41,42],[174,1,1,42,43],[176,1,1,43,44]]],[8,5,5,44,49,[[249,2,2,44,46],[252,2,2,46,48],[255,1,1,48,49]]],[10,2,2,49,51,[[291,1,1,49,50],[305,1,1,50,51]]],[11,2,2,51,53,[[325,1,1,51,52],[337,1,1,52,53]]],[12,3,3,53,56,[[344,1,1,53,54],[348,1,1,54,55],[358,1,1,55,56]]],[13,3,3,56,59,[[394,1,1,56,57],[395,1,1,57,58],[397,1,1,58,59]]],[15,1,1,59,60,[[417,1,1,59,60]]],[17,4,4,60,64,[[453,1,1,60,61],[468,1,1,61,62],[472,1,1,62,63],[473,1,1,63,64]]],[18,6,6,64,70,[[490,1,1,64,65],[492,1,1,65,66],[569,1,1,66,67],[593,1,1,67,68],[596,1,1,68,69],[619,1,1,69,70]]],[19,2,2,70,72,[[634,1,1,70,71],[653,1,1,71,72]]],[20,2,2,72,74,[[663,1,1,72,73],[670,1,1,73,74]]],[22,6,6,74,80,[[685,1,1,74,75],[692,1,1,75,76],[722,1,1,76,77],[725,1,1,77,78],[732,1,1,78,79],[738,1,1,79,80]]],[23,5,5,80,85,[[747,1,1,80,81],[781,1,1,81,82],[790,1,1,82,83],[793,1,1,83,84],[794,1,1,84,85]]],[25,9,7,85,92,[[817,4,2,85,87],[824,1,1,87,88],[826,1,1,88,89],[834,1,1,89,90],[838,2,2,90,92]]],[26,1,1,92,93,[[860,1,1,92,93]]],[29,1,1,93,94,[[881,1,1,93,94]]],[37,2,2,94,96,[[911,2,2,94,96]]],[38,1,1,96,97,[[926,1,1,96,97]]]],[939,973,1205,1597,1635,1824,1825,1967,2162,2304,2314,2521,2670,2678,2764,2775,2778,2782,2788,2793,2804,2806,2883,2891,2892,2909,2992,2993,3142,3211,3307,3420,3422,3840,3843,3976,4158,4162,4216,4294,4678,5345,5476,5530,7540,7541,7638,7646,7738,8740,9269,9890,10239,10539,10715,10941,11773,11818,11863,12389,13282,13673,13791,13825,14080,14090,15414,15855,15915,16293,16589,17158,17399,17537,17784,17929,18549,18605,18732,18828,19020,19889,20070,20147,20211,20798,20799,21014,21093,21305,21416,21424,22066,22410,22880,22893,23119]]],["within",[9,9,[[8,1,1,0,1,[[260,1,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[18,5,5,2,7,[[519,2,2,2,4],[520,1,1,4,5],[619,1,1,5,6],[620,1,1,6,7]]],[27,1,1,7,8,[[872,1,1,7,8]]],[31,1,1,8,9,[[890,1,1,8,9]]]],[7897,13203,14561,14566,14571,16289,16297,22248,22555]]]]},{"k":"H5922","v":[["*",[103,86,[[14,34,27,0,27,[[406,12,11,0,11],[407,11,7,11,18],[408,5,4,18,22],[409,6,5,22,27]]],[26,69,59,27,86,[[851,12,11,27,38],[852,7,5,38,43],[853,17,15,43,58],[854,10,8,58,66],[855,15,13,66,79],[856,8,7,79,86]]]],[12118,12121,12122,12124,12125,12127,12128,12129,12130,12132,12133,12135,12137,12139,12140,12141,12149,12151,12158,12162,12168,12169,12187,12190,12191,12196,12197,21768,21773,21776,21782,21786,21787,21788,21792,21804,21806,21807,21819,21823,21826,21835,21836,21842,21847,21850,21853,21854,21860,21861,21862,21864,21865,21866,21869,21870,21871,21873,21879,21881,21883,21888,21890,21895,21897,21903,21906,21908,21909,21910,21911,21915,21917,21918,21919,21920,21922,21923,21928,21934,21937,21939,21949,21952,21953,21961]]],["+",[6,6,[[14,2,2,0,2,[[406,2,2,0,2]]],[26,4,4,2,6,[[851,2,2,2,4],[852,1,1,4,5],[855,1,1,5,6]]]],[12124,12132,21773,21788,21819,21918]]],["about",[3,3,[[26,3,3,0,3,[[854,3,3,0,3]]]],[21881,21890,21903]]],["above",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21908]]],["against",[7,7,[[14,3,3,0,3,[[406,2,2,0,2],[409,1,1,2,3]]],[26,4,4,3,7,[[852,2,2,3,5],[854,1,1,5,6],[855,1,1,6,7]]]],[12118,12129,12196,21826,21836,21897,21910]]],["concerning",[6,6,[[14,3,3,0,3,[[407,2,2,0,2],[409,1,1,2,3]]],[26,3,3,3,6,[[851,1,1,3,4],[854,1,1,4,5],[855,1,1,5,6]]]],[12139,12151,12187,21776,21903,21917]]],["for",[5,5,[[14,4,4,0,4,[[406,1,1,0,1],[408,3,3,1,4]]],[26,1,1,4,5,[[855,1,1,4,5]]]],[12125,12162,12168,12169,21928]]],["from",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21923]]],["in",[10,10,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]],[26,8,8,2,10,[[852,2,2,2,4],[853,3,3,4,7],[854,1,1,7,8],[855,1,1,8,9],[856,1,1,9,10]]]],[12149,12158,21823,21835,21847,21866,21873,21883,21909,21961]]],["more",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21826]]],["of",[5,5,[[26,5,5,0,5,[[854,2,2,0,2],[856,3,3,2,5]]]],[21888,21890,21949,21952,21953]]],["on",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21919]]],["over",[13,12,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,12,11,1,12,[[851,3,2,1,3],[852,1,1,3,4],[853,5,5,4,9],[854,1,1,9,10],[855,2,2,10,12]]]],[12130,21806,21807,21819,21853,21854,21860,21862,21869,21895,21906,21908]]],["thereon",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12162]]],["to",[7,5,[[14,6,4,0,4,[[406,1,1,0,1],[407,3,2,1,3],[409,2,1,3,4]]],[26,1,1,4,5,[[855,1,1,4,5]]]],[12122,12137,12151,12191,21911]]],["unto",[16,13,[[14,9,7,0,7,[[406,5,4,0,4],[407,4,3,4,7]]],[26,7,6,7,13,[[851,1,1,7,8],[853,4,3,8,11],[855,1,1,11,12],[856,1,1,12,13]]]],[12121,12127,12128,12133,12135,12140,12141,21782,21864,21871,21873,21920,21949]]],["upon",[19,19,[[14,3,3,0,3,[[407,1,1,0,1],[409,2,2,1,3]]],[26,16,16,3,19,[[851,5,5,3,8],[853,5,5,8,13],[854,1,1,13,14],[855,2,2,14,16],[856,3,3,16,19]]]],[12139,12190,12197,21768,21786,21787,21792,21804,21842,21850,21861,21865,21870,21879,21915,21922,21934,21937,21939]]],["with",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21919]]]]},{"k":"H5923","v":[["*",[40,34,[[0,1,1,0,1,[[26,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,1,1,2,3,[[135,1,1,2,3]]],[4,2,2,3,5,[[173,1,1,3,4],[180,1,1,4,5]]],[8,1,1,5,6,[[241,1,1,5,6]]],[10,8,5,6,11,[[302,8,5,6,11]]],[13,7,5,11,16,[[376,7,5,11,16]]],[22,5,4,16,20,[[687,1,1,16,17],[688,2,1,17,18],[692,1,1,18,19],[725,1,1,19,20]]],[23,10,10,20,30,[[746,1,1,20,21],[749,1,1,21,22],[771,3,3,22,25],[772,4,4,25,29],[774,1,1,29,30]]],[24,2,2,30,32,[[797,1,1,30,31],[799,1,1,31,32]]],[25,1,1,32,33,[[835,1,1,32,33]]],[27,1,1,33,34,[[872,1,1,33,34]]]],[767,3537,4291,5450,5659,7338,9155,9160,9161,9162,9165,11399,11404,11405,11406,11409,17833,17877,17953,18605,18985,19063,19604,19607,19608,19620,19622,19629,19632,19675,20324,20381,21340,22244]]],["+",[4,4,[[10,1,1,0,1,[[302,1,1,0,1]]],[13,3,3,1,4,[[376,3,3,1,4]]]],[9155,11399,11405,11409]]],["yoke",[36,32,[[0,1,1,0,1,[[26,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,1,1,2,3,[[135,1,1,2,3]]],[4,2,2,3,5,[[173,1,1,3,4],[180,1,1,4,5]]],[8,1,1,5,6,[[241,1,1,5,6]]],[10,7,5,6,11,[[302,7,5,6,11]]],[13,4,3,11,14,[[376,4,3,11,14]]],[22,5,4,14,18,[[687,1,1,14,15],[688,2,1,15,16],[692,1,1,16,17],[725,1,1,17,18]]],[23,10,10,18,28,[[746,1,1,18,19],[749,1,1,19,20],[771,3,3,20,23],[772,4,4,23,27],[774,1,1,27,28]]],[24,2,2,28,30,[[797,1,1,28,29],[799,1,1,29,30]]],[25,1,1,30,31,[[835,1,1,30,31]]],[27,1,1,31,32,[[872,1,1,31,32]]]],[767,3537,4291,5450,5659,7338,9155,9160,9161,9162,9165,11399,11404,11406,17833,17877,17953,18605,18985,19063,19604,19607,19608,19620,19622,19629,19632,19675,20324,20381,21340,22244]]]]},{"k":"H5924","v":[["*",[4,4,[[26,4,4,0,4,[[851,1,1,0,1],[853,1,1,1,2],[854,1,1,2,3],[855,1,1,3,4]]]],[21782,21843,21881,21907]]],["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21907]]],["in",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[853,1,1,1,2],[854,1,1,2,3]]]],[21782,21843,21881]]]]},{"k":"H5925","v":[["Ulla",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10574]]]]},{"k":"H5926","v":[["stammerers",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18263]]]]},{"k":"H5927","v":[["*",[890,816,[[0,51,48,0,48,[[1,1,1,0,1],[7,1,1,1,2],[12,1,1,2,3],[16,1,1,3,4],[18,3,3,4,7],[21,2,2,7,9],[23,1,1,9,10],[25,1,1,10,11],[27,1,1,11,12],[30,2,2,12,14],[31,2,2,14,16],[34,3,3,16,19],[36,1,1,19,20],[37,2,2,20,22],[39,1,1,22,23],[40,7,7,23,30],[43,4,4,30,34],[44,2,2,34,36],[45,4,3,36,39],[48,3,2,39,41],[49,8,7,41,48]]],[1,62,59,48,107,[[50,1,1,48,49],[51,1,1,49,50],[52,2,2,50,52],[57,5,5,52,57],[59,2,2,57,59],[61,1,1,59,60],[62,2,2,60,62],[65,2,2,62,64],[66,2,2,64,66],[68,8,7,66,73],[69,1,1,73,74],[73,8,8,74,82],[74,1,1,82,83],[76,1,1,83,84],[79,2,2,84,86],[81,7,7,86,93],[82,6,5,93,98],[83,4,4,98,102],[89,6,5,102,107]]],[2,14,13,107,120,[[91,1,1,107,108],[100,7,6,108,114],[103,1,1,114,115],[105,2,2,115,117],[106,1,1,117,118],[108,1,1,118,119],[113,1,1,119,120]]],[3,42,37,120,157,[[124,2,2,120,122],[125,4,3,122,125],[126,1,1,125,126],[129,8,5,126,131],[130,5,4,131,135],[132,5,5,135,140],[135,1,1,140,141],[136,4,4,141,145],[137,3,3,145,148],[138,1,1,148,149],[139,4,4,149,153],[143,1,1,153,154],[148,2,2,154,156],[149,1,1,156,157]]],[4,32,30,157,187,[[153,9,8,157,165],[155,2,2,165,167],[157,1,1,167,168],[161,2,2,168,170],[162,2,2,170,172],[164,2,2,172,174],[166,3,2,174,176],[169,1,1,176,177],[172,1,1,177,178],[177,1,1,178,179],[179,1,1,179,180],[180,2,2,180,182],[181,1,1,182,183],[182,1,1,183,184],[184,2,2,184,186],[186,1,1,186,187]]],[5,55,49,187,236,[[188,2,2,187,189],[190,4,4,189,193],[192,3,3,193,196],[193,7,5,196,201],[194,7,7,201,208],[196,7,7,208,215],[197,1,1,215,216],[198,1,1,216,217],[200,1,1,217,218],[201,8,5,218,223],[202,1,1,223,224],[203,1,1,224,225],[204,3,2,225,227],[205,4,4,227,231],[208,3,3,231,234],[210,2,2,234,236]]],[6,73,60,236,296,[[211,6,6,236,242],[212,2,1,242,243],[214,4,3,243,246],[216,9,8,246,254],[218,2,2,254,256],[219,2,2,256,258],[221,3,3,258,261],[222,1,1,261,262],[223,5,4,262,266],[224,2,2,266,268],[225,5,4,268,272],[226,8,6,272,278],[228,4,3,278,281],[229,2,2,281,283],[230,13,9,283,292],[231,5,4,292,296]]],[7,1,1,296,297,[[235,1,1,296,297]]],[8,70,63,297,360,[[236,6,6,297,303],[237,5,4,303,307],[240,1,1,307,308],[241,6,6,308,314],[242,4,4,314,318],[243,1,1,318,319],[244,7,5,319,324],[245,3,3,324,327],[246,1,1,327,328],[247,1,1,328,329],[248,5,5,329,334],[249,8,6,334,340],[250,3,3,340,343],[252,3,2,343,345],[254,1,1,345,346],[258,2,2,346,348],[259,1,1,348,349],[260,3,3,349,352],[262,1,1,352,353],[263,6,5,353,358],[264,2,2,358,360]]],[9,36,30,360,390,[[267,1,1,360,361],[268,6,4,361,365],[271,5,4,365,369],[272,5,5,369,374],[273,1,1,374,375],[277,1,1,375,376],[281,5,2,376,378],[283,1,1,378,379],[284,1,1,379,380],[285,1,1,380,381],[286,1,1,381,382],[287,1,1,382,383],[288,1,1,383,384],[289,1,1,384,385],[290,5,5,385,390]]],[10,53,47,390,437,[[291,3,3,390,393],[292,1,1,393,394],[293,2,2,394,396],[295,1,1,396,397],[296,1,1,397,398],[298,3,2,398,400],[299,5,5,400,405],[300,4,4,405,409],[301,1,1,409,410],[302,8,6,410,416],[304,1,1,416,417],[305,2,2,417,419],[306,1,1,419,420],[307,1,1,420,421],[308,9,6,421,427],[310,4,4,427,431],[312,6,6,431,437]]],[11,60,51,437,488,[[313,9,7,437,444],[314,6,3,444,447],[315,5,5,447,452],[316,3,3,452,455],[318,1,1,455,456],[322,1,1,456,457],[324,5,4,457,461],[326,1,1,461,462],[327,1,1,462,463],[328,4,4,463,467],[329,6,5,467,472],[330,6,4,472,476],[331,3,3,476,479],[332,2,2,479,481],[334,1,1,481,482],[335,3,3,482,485],[336,2,2,485,487],[337,1,1,487,488]]],[12,24,22,488,510,[[348,1,1,488,489],[350,2,1,489,490],[351,5,4,490,494],[352,5,5,494,499],[353,2,2,499,501],[354,1,1,501,502],[358,4,4,502,506],[360,1,1,506,507],[363,1,1,507,508],[364,1,1,508,509],[366,1,1,509,510]]],[13,53,50,510,560,[[367,4,3,510,513],[368,1,1,513,514],[369,2,2,514,516],[371,3,2,516,518],[374,4,4,518,522],[375,3,3,522,525],[376,1,1,525,526],[377,1,1,526,527],[378,2,2,527,529],[382,2,2,529,531],[384,7,7,531,538],[386,2,2,538,540],[387,1,1,540,541],[389,1,1,541,542],[390,4,3,542,545],[391,1,1,545,546],[395,5,5,546,551],[398,1,1,551,552],[400,1,1,552,553],[401,3,3,553,556],[402,4,4,556,560]]],[14,14,13,560,573,[[403,4,3,560,563],[404,2,2,563,565],[405,3,3,565,568],[406,1,1,568,569],[409,3,3,569,572],[410,1,1,572,573]]],[15,13,13,573,586,[[414,1,1,573,574],[415,1,1,574,575],[416,3,3,575,578],[419,3,3,578,581],[421,1,1,581,582],[422,1,1,582,583],[424,3,3,583,586]]],[17,8,8,586,594,[[436,1,1,586,587],[440,1,1,587,588],[441,1,1,588,589],[442,1,1,589,590],[455,1,1,590,591],[471,2,2,591,593],[477,1,1,593,594]]],[18,23,23,594,617,[[495,1,1,594,595],[501,1,1,595,596],[507,1,1,596,597],[517,1,1,597,598],[524,2,2,598,600],[528,1,1,600,601],[539,1,1,601,602],[543,1,1,602,603],[545,1,1,603,604],[548,1,1,604,605],[551,1,1,605,606],[555,2,2,606,608],[558,1,1,608,609],[574,1,1,609,610],[579,1,1,610,611],[581,1,1,611,612],[584,1,1,612,613],[599,1,1,613,614],[609,1,1,614,615],[612,1,1,615,616],[614,1,1,616,617]]],[19,7,7,617,624,[[642,1,1,617,618],[648,1,1,618,619],[651,1,1,619,620],[652,1,1,620,621],[653,1,1,621,622],[657,1,1,622,623],[658,1,1,623,624]]],[20,2,2,624,626,[[661,1,1,624,625],[668,1,1,625,626]]],[21,5,5,626,631,[[673,1,1,626,627],[674,1,1,627,628],[676,1,1,628,629],[677,1,1,629,630],[678,1,1,630,631]]],[22,40,37,631,668,[[680,1,1,631,632],[683,2,2,632,634],[685,2,2,634,636],[686,2,1,636,637],[689,1,1,637,638],[692,3,3,638,641],[693,2,2,641,643],[699,1,1,643,644],[700,1,1,644,645],[702,1,1,645,646],[710,1,1,646,647],[712,3,3,647,650],[713,1,1,650,651],[714,3,2,651,653],[715,3,3,653,656],[716,1,1,656,657],[718,2,2,657,659],[731,1,1,659,660],[733,2,1,660,661],[735,3,3,661,664],[738,1,1,664,665],[741,1,1,665,666],[743,1,1,666,667],[744,1,1,667,668]]],[23,63,62,668,730,[[746,1,1,668,669],[747,1,1,669,670],[748,3,3,670,673],[749,1,1,673,674],[750,2,2,674,676],[751,1,1,676,677],[752,1,1,677,678],[753,1,1,678,679],[754,1,1,679,680],[755,1,1,680,681],[758,2,2,681,683],[760,2,2,683,685],[763,1,1,685,686],[765,1,1,686,687],[766,1,1,687,688],[767,2,2,688,690],[770,1,1,690,691],[771,1,1,691,692],[774,1,1,692,693],[775,1,1,693,694],[776,1,1,694,695],[777,1,1,695,696],[778,1,1,696,697],[779,1,1,697,698],[781,2,2,698,700],[782,2,2,700,702],[783,1,1,702,703],[788,1,1,703,704],[790,6,5,704,709],[791,1,1,709,710],[792,5,5,710,715],[793,4,4,715,719],[794,4,4,719,723],[795,6,6,723,729],[796,1,1,729,730]]],[24,2,2,730,732,[[797,1,1,730,731],[798,1,1,731,732]]],[25,39,38,732,770,[[809,1,1,732,733],[810,1,1,733,734],[812,2,2,734,736],[814,1,1,736,737],[815,3,3,737,740],[817,1,1,740,741],[820,1,1,741,742],[821,1,1,742,743],[824,1,1,743,744],[825,1,1,744,745],[827,3,2,745,747],[828,1,1,747,748],[830,1,1,748,749],[833,1,1,749,750],[837,1,1,750,751],[838,4,4,751,755],[839,5,5,755,760],[840,1,1,760,761],[841,4,4,761,765],[842,1,1,765,766],[844,2,2,766,768],[845,1,1,768,769],[848,1,1,769,770]]],[26,3,3,770,773,[[857,2,2,770,772],[860,1,1,772,773]]],[27,7,7,773,780,[[862,1,1,773,774],[863,1,1,774,775],[865,1,1,775,776],[869,1,1,776,777],[871,1,1,777,778],[873,1,1,778,779],[874,1,1,779,780]]],[28,7,6,780,786,[[876,1,1,780,781],[877,4,3,781,784],[878,2,2,784,786]]],[29,11,11,786,797,[[880,1,1,786,787],[881,2,2,787,789],[882,1,1,789,790],[883,1,1,790,791],[885,1,1,791,792],[886,2,2,792,794],[887,3,3,794,797]]],[30,1,1,797,798,[[888,1,1,797,798]]],[31,4,4,798,802,[[889,1,1,798,799],[890,1,1,799,800],[892,2,2,800,802]]],[32,3,3,802,805,[[894,1,1,802,803],[896,1,1,803,804],[898,1,1,804,805]]],[33,3,3,805,808,[[901,2,2,805,807],[902,1,1,807,808]]],[34,2,2,808,810,[[903,1,1,808,809],[905,1,1,809,810]]],[36,1,1,810,811,[[909,1,1,810,811]]],[37,6,5,811,816,[[924,6,5,811,816]]]],[36,203,319,419,472,485,487,549,560,607,715,785,883,885,952,954,1012,1014,1024,1111,1131,1132,1182,1197,1198,1200,1213,1214,1217,1222,1341,1348,1357,1358,1367,1383,1390,1415,1417,1477,1482,1511,1512,1513,1515,1520,1530,1531,1542,1577,1587,1596,1713,1714,1715,1716,1717,1789,1791,1854,1885,1886,1960,1961,1986,1993,2029,2038,2039,2044,2046,2049,2050,2077,2178,2179,2182,2186,2189,2190,2192,2195,2232,2292,2390,2391,2439,2442,2444,2445,2446,2461,2468,2474,2476,2478,2485,2488,2498,2499,2500,2520,2711,2732,2736,2743,2744,2774,3000,3001,3002,3003,3023,3042,3131,3210,3211,3243,3300,3448,3941,3942,3982,3986,3987,3999,4092,4096,4097,4105,4106,4121,4148,4150,4152,4206,4207,4208,4218,4221,4291,4316,4330,4336,4338,4345,4357,4373,4416,4418,4420,4430,4446,4566,4727,4729,4798,4913,4914,4916,4918,4920,4933,4934,4935,4976,5002,5058,5166,5180,5187,5189,5253,5254,5296,5297,5372,5428,5554,5591,5654,5672,5702,5720,5807,5808,5840,5875,5877,5926,5927,5928,5929,5954,5964,5969,5978,5979,5980,5982,6000,6003,6005,6012,6013,6022,6023,6033,6068,6069,6070,6071,6073,6097,6100,6124,6137,6195,6205,6208,6209,6210,6217,6266,6290,6304,6305,6331,6332,6333,6368,6438,6449,6459,6493,6508,6510,6511,6512,6513,6525,6531,6546,6604,6609,6611,6657,6659,6662,6667,6675,6680,6682,6689,6727,6730,6802,6805,6842,6845,6860,6872,6889,6900,6903,6904,6911,6928,6935,6938,6939,6942,6952,6954,6957,6966,6967,6980,7002,7005,7010,7049,7054,7057,7072,7077,7080,7082,7084,7085,7092,7094,7106,7107,7110,7121,7191,7215,7219,7223,7233,7234,7236,7246,7254,7259,7268,7331,7338,7340,7345,7346,7351,7352,7353,7359,7361,7362,7377,7402,7404,7405,7410,7417,7421,7426,7436,7446,7466,7490,7494,7495,7497,7500,7517,7518,7520,7521,7529,7554,7562,7566,7594,7641,7643,7721,7829,7839,7861,7866,7874,7896,7938,7950,7953,7955,7956,7957,7976,7978,8046,8050,8051,8052,8076,8149,8151,8154,8155,8159,8169,8172,8174,8175,8186,8279,8413,8419,8470,8511,8545,8556,8593,8611,8662,8710,8711,8714,8716,8717,8752,8757,8762,8804,8820,8831,8891,8904,8986,8989,9066,9067,9072,9075,9076,9084,9095,9096,9108,9123,9169,9175,9178,9179,9183,9184,9243,9266,9268,9300,9336,9370,9377,9382,9383,9384,9385,9409,9430,9434,9441,9486,9492,9495,9500,9509,9515,9536,9537,9539,9540,9542,9546,9549,9552,9562,9574,9583,9584,9596,9597,9603,9624,9637,9638,9698,9808,9854,9860,9867,9868,9907,9939,9968,9970,9972,9975,9986,9987,9988,9990,10019,10033,10037,10041,10049,10075,10084,10089,10103,10106,10149,10167,10174,10194,10203,10212,10228,10679,10766,10782,10784,10785,10788,10794,10803,10805,10816,10819,10822,10860,10868,10952,10953,10958,10960,11014,11093,11133,11185,11198,11200,11211,11227,11234,11243,11270,11273,11354,11357,11358,11359,11368,11379,11380,11413,11418,11439,11446,11510,11512,11544,11547,11553,11556,11561,11570,11576,11603,11621,11641,11674,11690,11691,11700,11725,11798,11811,11812,11818,11820,11880,11963,11980,11982,11986,11999,12009,12010,12016,12019,12021,12027,12028,12086,12099,12100,12103,12112,12179,12180,12201,12202,12322,12346,12362,12366,12380,12425,12426,12481,12529,12587,12625,12655,12661,12874,12977,12996,13017,13332,13756,13769,13930,14126,14244,14322,14527,14630,14634,14710,14836,14888,14918,14996,15071,15134,15144,15227,15487,15545,15579,15725,16093,16154,16182,16228,16808,17006,17110,17120,17150,17255,17313,17380,17497,17577,17584,17620,17635,17645,17688,17745,17763,17783,17788,17814,17900,17936,17941,17942,17962,17965,18037,18053,18113,18272,18306,18313,18316,18329,18331,18340,18366,18376,18381,18412,18429,18451,18713,18753,18771,18772,18773,18828,18877,18914,18925,18971,19018,19034,19040,19056,19068,19093,19094,19150,19175,19196,19214,19233,19295,19305,19350,19351,19412,19442,19474,19491,19492,19582,19618,19684,19697,19766,19793,19822,19834,19879,19885,19905,19908,19928,20031,20049,20052,20053,20054,20056,20075,20085,20095,20098,20115,20124,20146,20149,20155,20158,20169,20175,20187,20210,20215,20228,20239,20254,20262,20265,20285,20324,20342,20615,20625,20678,20679,20713,20734,20735,20738,20802,20884,20927,21053,21064,21103,21119,21151,21187,21251,21362,21403,21405,21409,21410,21434,21435,21436,21441,21443,21450,21483,21499,21517,21526,21533,21590,21596,21616,21691,21964,21969,22059,22105,22120,22148,22203,22233,22265,22281,22297,22318,22320,22331,22352,22355,22389,22396,22400,22420,22445,22465,22489,22491,22497,22500,22502,22531,22533,22554,22574,22575,22608,22622,22652,22700,22706,22715,22746,22784,22848,23081,23084,23085,23086,23087]]],["+",[92,88,[[0,4,3,0,3,[[36,1,1,0,1],[45,2,1,1,2],[49,1,1,2,3]]],[1,8,8,3,11,[[52,1,1,3,4],[57,1,1,4,5],[62,1,1,5,6],[74,1,1,6,7],[79,1,1,7,8],[82,2,2,8,10],[89,1,1,10,11]]],[2,3,3,11,14,[[100,2,2,11,13],[103,1,1,13,14]]],[3,6,5,14,19,[[124,1,1,14,15],[129,2,1,15,16],[130,2,2,16,18],[136,1,1,18,19]]],[4,4,4,19,23,[[153,2,2,19,21],[157,1,1,21,22],[166,1,1,22,23]]],[6,5,4,23,27,[[212,1,1,23,24],[216,1,1,24,25],[231,3,2,25,27]]],[7,1,1,27,28,[[235,1,1,27,28]]],[8,9,9,28,37,[[236,1,1,28,29],[241,1,1,29,30],[242,1,1,30,31],[243,1,1,31,32],[245,1,1,32,33],[247,1,1,33,34],[254,1,1,34,35],[263,2,2,35,37]]],[9,4,4,37,41,[[272,3,3,37,40],[273,1,1,40,41]]],[10,3,3,41,44,[[298,2,2,41,43],[302,1,1,43,44]]],[11,5,5,44,49,[[314,1,1,44,45],[329,2,2,45,47],[335,1,1,47,48],[337,1,1,48,49]]],[12,9,9,49,58,[[348,1,1,49,50],[351,1,1,50,51],[352,5,5,51,56],[353,1,1,56,57],[354,1,1,57,58]]],[13,5,5,58,63,[[368,1,1,58,59],[371,2,2,59,61],[390,2,2,61,63]]],[14,1,1,63,64,[[406,1,1,63,64]]],[15,5,5,64,69,[[414,1,1,64,65],[416,2,2,65,67],[422,1,1,67,68],[424,1,1,68,69]]],[19,1,1,69,70,[[658,1,1,69,70]]],[21,2,2,70,72,[[674,1,1,70,71],[676,1,1,71,72]]],[23,7,7,72,79,[[746,1,1,72,73],[755,1,1,73,74],[760,2,2,74,76],[767,1,1,76,77],[782,2,2,77,79]]],[25,4,4,79,83,[[815,1,1,79,80],[827,1,1,80,81],[838,1,1,81,82],[844,1,1,82,83]]],[27,1,1,83,84,[[873,1,1,83,84]]],[29,2,2,84,86,[[880,1,1,84,85],[887,1,1,85,86]]],[37,3,2,86,88,[[924,3,2,86,88]]]],[1111,1390,1531,1596,1717,1886,2232,2390,2485,2488,2711,3001,3042,3131,3941,4105,4121,4150,4336,4934,4935,5058,5297,6546,6662,7107,7110,7191,7234,7352,7353,7377,7436,7466,7721,7953,7957,8169,8172,8175,8186,8986,8989,9179,9552,9990,10019,10174,10228,10679,10788,10794,10803,10805,10816,10819,10822,10868,11227,11270,11273,11690,11691,12112,12322,12366,12380,12587,12655,17313,17584,17620,18971,19233,19350,19351,19491,19905,19908,20735,21119,21410,21596,22265,22389,22502,23086,23087]]],["Go",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9495]]],["arise",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8279]]],["ariseth",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9385]]],["arose",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[13,1,1,1,2,[[402,1,1,1,2]]]],[472,12009]]],["ascend",[7,7,[[18,2,2,0,2,[[501,1,1,0,1],[612,1,1,1,2]]],[22,2,2,2,4,[[692,2,2,2,4]]],[23,2,2,4,6,[[754,1,1,4,5],[795,1,1,5,6]]],[25,1,1,6,7,[[839,1,1,6,7]]]],[14244,16182,17941,17942,19214,20228,21434]]],["ascended",[6,6,[[1,1,1,0,1,[[68,1,1,0,1]]],[3,1,1,1,2,[[129,1,1,1,2]]],[5,2,2,2,4,[[194,1,1,2,3],[196,1,1,3,4]]],[6,1,1,4,5,[[223,1,1,4,5]]],[18,1,1,5,6,[[545,1,1,5,6]]]],[2044,4097,6023,6071,6904,14918]]],["ascending",[2,2,[[0,1,1,0,1,[[27,1,1,0,1]]],[8,1,1,1,2,[[263,1,1,1,2]]]],[785,7955]]],["away",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[11,1,1,1,2,[[324,1,1,1,2]]]],[8662,9868]]],["breaketh",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[954]]],["breaking",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[952]]],["bring",[3,3,[[0,1,1,0,1,[[49,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[8,1,1,2,3,[[263,1,1,2,3]]]],[1530,5672,7950]]],["brought",[8,8,[[5,2,2,0,2,[[193,1,1,0,1],[210,1,1,1,2]]],[6,1,1,2,3,[[226,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[10,1,1,4,5,[[302,1,1,4,5]]],[11,1,1,5,6,[[329,1,1,5,6]]],[13,1,1,6,7,[[402,1,1,6,7]]],[18,1,1,7,8,[[558,1,1,7,8]]]],[6000,6493,6967,7259,9179,9987,12010,15227]]],["broughtest",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2445]]],["burn",[2,2,[[1,1,1,0,1,[[76,1,1,0,1]]],[2,1,1,1,2,[[113,1,1,1,2]]]],[2292,3448]]],["burnt",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2774]]],["came",[7,7,[[3,1,1,0,1,[[135,1,1,0,1]]],[11,1,1,1,2,[[313,1,1,1,2]]],[18,1,1,2,3,[[555,1,1,2,3]]],[23,4,4,3,7,[[751,1,1,3,4],[763,1,1,4,5],[776,1,1,5,6],[788,1,1,6,7]]]],[4291,9539,15144,19150,19412,19766,20031]]],["chew",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5297]]],["cheweth",[6,6,[[2,5,5,0,5,[[100,5,5,0,5]]],[4,1,1,5,6,[[166,1,1,5,6]]]],[3000,3001,3002,3003,3023,5296]]],["climb",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22318]]],["come",[11,11,[[2,1,1,0,1,[[108,1,1,0,1]]],[6,2,2,1,3,[[223,1,1,1,2],[226,1,1,2,3]]],[8,2,2,3,5,[[236,1,1,3,4],[241,1,1,4,5]]],[22,1,1,5,6,[[743,1,1,5,6]]],[23,3,3,6,9,[[747,1,1,6,7],[792,1,1,7,8],[795,1,1,8,9]]],[25,2,2,9,11,[[839,1,1,9,10],[845,1,1,10,11]]]],[3300,6889,6966,7223,7338,18914,19018,20098,20262,21435,21616]]],["cometh",[3,3,[[11,1,1,0,1,[[324,1,1,0,1]]],[21,1,1,1,2,[[673,1,1,1,2]]],[25,1,1,2,3,[[821,1,1,2,3]]]],[9854,17577,20927]]],["dawning",[1,1,[[5,1,1,0,1,[[192,1,1,0,1]]]],[5964]]],["depart",[2,2,[[10,1,1,0,1,[[305,1,1,0,1]]],[13,1,1,1,2,[[382,1,1,1,2]]]],[9268,11512]]],["departed",[1,1,[[23,1,1,0,1,[[781,1,1,0,1]]]],[19879]]],["exalted",[2,2,[[18,2,2,0,2,[[524,1,1,0,1],[574,1,1,1,2]]]],[14634,15487]]],["fell",[2,2,[[2,2,2,0,2,[[105,2,2,0,2]]]],[3210,3211]]],["forth",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1182]]],["go",[4,4,[[3,1,1,0,1,[[136,1,1,0,1]]],[5,1,1,1,2,[[208,1,1,1,2]]],[17,1,1,2,3,[[441,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]]],[4330,6438,12996,19094]]],["goeth",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17380]]],["grow",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21691]]],["groweth",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5702]]],["in",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12977]]],["increased",[3,3,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]],[25,1,1,2,3,[[842,1,1,2,3]]]],[9515,11576,21533]]],["increaseth",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15071]]],["laid",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14836]]],["leap",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[885]]],["leaped",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[883]]],["levy",[1,1,[[10,1,1,0,1,[[299,1,1,0,1]]]],[9072]]],["lighted",[2,2,[[1,1,1,0,1,[[89,1,1,0,1]]],[3,1,1,1,2,[[124,1,1,1,2]]]],[2732,3942]]],["mentioned",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11621]]],["off",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13756]]],["offer",[29,29,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,1,1,1,2,[[79,1,1,1,2]]],[4,3,3,2,5,[[164,2,2,2,4],[179,1,1,4,5]]],[5,1,1,5,6,[[208,1,1,5,6]]],[6,2,2,6,8,[[216,1,1,6,7],[223,1,1,7,8]]],[8,2,2,8,10,[[237,1,1,8,9],[245,1,1,9,10]]],[9,1,1,10,11,[[290,1,1,10,11]]],[10,2,2,11,13,[[293,1,1,11,12],[299,1,1,12,13]]],[12,3,3,13,16,[[353,1,1,13,14],[358,1,1,14,15],[360,1,1,15,16]]],[13,5,5,16,21,[[389,1,1,16,17],[390,1,1,17,18],[395,2,2,18,20],[401,1,1,20,21]]],[14,2,2,21,23,[[405,2,2,21,23]]],[18,2,2,23,25,[[528,1,1,23,24],[543,1,1,24,25]]],[23,2,2,25,27,[[758,1,1,25,26],[777,1,1,26,27]]],[25,1,1,27,28,[[844,1,1,27,28]]],[29,1,1,28,29,[[883,1,1,28,29]]]],[549,2391,5253,5254,5591,6449,6680,6900,7268,7426,8716,8820,9076,10860,10958,11014,11674,11691,11812,11818,11982,12099,12103,14710,14888,19305,19793,21590,22445]]],["offered",[34,33,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,3,3,1,4,[[73,1,1,1,2],[81,1,1,2,3],[89,1,1,3,4]]],[3,4,4,4,8,[[139,4,4,4,8]]],[5,1,1,8,9,[[194,1,1,8,9]]],[6,4,4,9,13,[[216,1,1,9,10],[223,1,1,10,11],[230,1,1,11,12],[231,1,1,12,13]]],[8,5,5,13,18,[[241,2,2,13,15],[242,1,1,15,16],[248,2,2,16,18]]],[9,2,2,18,20,[[272,1,1,18,19],[290,1,1,19,20]]],[10,3,2,20,22,[[302,3,2,20,22]]],[11,3,3,22,25,[[315,2,2,22,24],[328,1,1,24,25]]],[12,2,2,25,27,[[358,1,1,25,26],[366,1,1,26,27]]],[13,3,3,27,30,[[367,1,1,27,28],[374,1,1,28,29],[395,1,1,29,30]]],[14,1,1,30,31,[[405,1,1,30,31]]],[17,1,1,31,32,[[436,1,1,31,32]]],[22,1,1,32,33,[[735,1,1,32,33]]]],[203,2182,2444,2736,4418,4420,4430,4446,6033,6682,6903,7080,7106,7345,7346,7361,7494,7497,8174,8717,9183,9184,9596,9603,9975,10960,11185,11200,11358,11798,12100,12874,18771]]],["offereth",[3,3,[[2,1,1,0,1,[[106,1,1,0,1]]],[22,1,1,1,2,[[744,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[3243,18925,20115]]],["offering",[6,6,[[8,1,1,0,1,[[248,1,1,0,1]]],[10,2,2,1,3,[[308,2,2,1,3]]],[13,3,3,3,6,[[374,1,1,3,4],[395,1,1,4,5],[401,1,1,5,6]]]],[7495,9370,9377,11359,11820,11980]]],["on",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8046]]],["over",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17110]]],["pay",[1,1,[[13,1,1,0,1,[[374,1,1,0,1]]]],[11354]]],["prefer",[1,1,[[18,1,1,0,1,[[614,1,1,0,1]]]],[16228]]],["put",[2,2,[[5,1,1,0,1,[[193,1,1,0,1]]],[12,1,1,1,2,[[364,1,1,1,2]]]],[5982,11133]]],["raised",[2,2,[[10,2,2,0,2,[[295,1,1,0,1],[299,1,1,1,2]]]],[8891,9066]]],["recovered",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19175]]],["restore",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19684]]],["rose",[1,1,[[31,1,1,0,1,[[892,1,1,0,1]]]],[22575]]],["scaleth",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17006]]],["set",[1,1,[[13,1,1,0,1,[[369,1,1,0,1]]]],[11234]]],["spring",[2,2,[[6,1,1,0,1,[[229,1,1,0,1]]],[8,1,1,1,2,[[244,1,1,1,2]]]],[7049,7417]]],["take",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15545]]],["up",[606,553,[[0,37,35,0,35,[[1,1,1,0,1],[12,1,1,1,2],[16,1,1,2,3],[18,2,2,3,5],[21,1,1,5,6],[23,1,1,6,7],[25,1,1,7,8],[34,3,3,8,11],[37,2,2,11,13],[40,7,7,13,20],[43,4,4,20,24],[44,2,2,24,26],[45,2,2,26,28],[48,3,2,28,30],[49,6,5,30,35]]],[1,46,43,35,78,[[50,1,1,35,36],[51,1,1,36,37],[52,1,1,37,38],[57,4,4,38,42],[59,2,2,42,44],[61,1,1,44,45],[62,1,1,45,46],[65,2,2,46,48],[66,2,2,48,50],[68,7,6,50,56],[69,1,1,56,57],[73,7,7,57,64],[81,5,5,64,69],[82,4,3,69,72],[83,4,4,72,76],[89,3,2,76,78]]],[3,28,24,78,102,[[125,4,3,78,81],[126,1,1,81,82],[129,5,3,82,85],[130,3,2,85,87],[132,5,5,87,92],[136,2,2,92,94],[137,3,3,94,97],[138,1,1,97,98],[143,1,1,98,99],[148,2,2,99,101],[149,1,1,101,102]]],[4,21,20,102,122,[[153,7,6,102,108],[155,2,2,108,110],[161,2,2,110,112],[162,2,2,112,114],[169,1,1,114,115],[172,1,1,115,116],[177,1,1,116,117],[180,1,1,117,118],[182,1,1,118,119],[184,2,2,119,121],[186,1,1,121,122]]],[5,46,40,122,162,[[188,2,2,122,124],[190,4,4,124,128],[192,2,2,128,130],[193,5,3,130,133],[194,5,5,133,138],[196,6,6,138,144],[197,1,1,144,145],[198,1,1,145,146],[200,1,1,146,147],[201,8,5,147,152],[202,1,1,152,153],[203,1,1,153,154],[204,3,2,154,156],[205,4,4,156,160],[208,1,1,160,161],[210,1,1,161,162]]],[6,56,49,162,211,[[211,6,6,162,168],[212,1,1,168,169],[214,4,3,169,172],[216,6,5,172,177],[218,2,2,177,179],[219,2,2,179,181],[221,3,3,181,184],[222,1,1,184,185],[223,1,1,185,186],[224,2,2,186,188],[225,5,4,188,192],[226,6,5,192,197],[228,3,3,197,200],[229,1,1,200,201],[230,12,9,201,210],[231,1,1,210,211]]],[8,47,42,211,253,[[236,4,4,211,215],[237,3,3,215,218],[240,1,1,218,219],[241,2,2,219,221],[242,2,2,221,223],[244,6,4,223,227],[245,1,1,227,228],[246,1,1,228,229],[248,2,2,229,231],[249,8,6,231,237],[250,3,3,237,240],[252,3,2,240,242],[258,2,2,242,244],[259,1,1,244,245],[260,3,3,245,248],[262,1,1,248,249],[263,2,2,249,251],[264,2,2,251,253]]],[9,26,20,253,273,[[268,6,4,253,257],[271,5,4,257,261],[272,1,1,261,262],[281,5,2,262,264],[283,1,1,264,265],[284,1,1,265,266],[285,1,1,266,267],[286,1,1,267,268],[287,1,1,268,269],[288,1,1,269,270],[290,3,3,270,273]]],[10,33,31,273,304,[[291,3,3,273,276],[292,1,1,276,277],[293,1,1,277,278],[296,1,1,278,279],[298,1,1,279,280],[299,2,2,280,282],[300,2,2,282,284],[301,1,1,284,285],[302,3,3,285,288],[304,1,1,288,289],[305,1,1,289,290],[306,1,1,290,291],[307,1,1,291,292],[308,6,4,292,296],[310,4,4,296,300],[312,4,4,300,304]]],[11,48,40,304,344,[[313,8,7,304,311],[314,5,2,311,313],[315,3,3,313,316],[316,3,3,316,319],[318,1,1,319,320],[322,1,1,320,321],[324,3,2,321,323],[326,1,1,323,324],[327,1,1,324,325],[328,3,3,325,328],[329,3,2,328,330],[330,6,4,330,334],[331,3,3,334,337],[332,2,2,337,339],[334,1,1,339,340],[335,2,2,340,342],[336,2,2,342,344]]],[12,9,7,344,351,[[350,2,1,344,345],[351,4,3,345,348],[358,2,2,348,350],[363,1,1,350,351]]],[13,27,27,351,378,[[367,3,3,351,354],[371,1,1,354,355],[374,1,1,355,356],[375,1,1,356,357],[376,1,1,357,358],[377,1,1,358,359],[378,2,2,359,361],[382,1,1,361,362],[384,6,6,362,368],[386,1,1,368,369],[387,1,1,369,370],[390,1,1,370,371],[391,1,1,371,372],[395,1,1,372,373],[398,1,1,373,374],[400,1,1,374,375],[401,1,1,375,376],[402,2,2,376,378]]],[14,10,9,378,387,[[403,4,3,378,381],[404,2,2,381,383],[409,3,3,383,386],[410,1,1,386,387]]],[15,8,8,387,395,[[415,1,1,387,388],[416,1,1,388,389],[419,3,3,389,392],[421,1,1,392,393],[424,2,2,393,395]]],[17,3,3,395,398,[[442,1,1,395,396],[455,1,1,396,397],[477,1,1,397,398]]],[18,10,10,398,408,[[495,1,1,398,399],[507,1,1,399,400],[517,1,1,400,401],[524,1,1,401,402],[548,1,1,402,403],[555,1,1,403,404],[581,1,1,404,405],[584,1,1,405,406],[599,1,1,406,407],[609,1,1,407,408]]],[19,4,4,408,412,[[642,1,1,408,409],[652,1,1,409,410],[653,1,1,410,411],[657,1,1,411,412]]],[20,1,1,412,413,[[668,1,1,412,413]]],[21,2,2,413,415,[[677,1,1,413,414],[678,1,1,414,415]]],[22,35,32,415,447,[[680,1,1,415,416],[683,2,2,416,418],[685,2,2,418,420],[686,2,1,420,421],[689,1,1,421,422],[692,1,1,422,423],[693,2,2,423,425],[699,1,1,425,426],[700,1,1,426,427],[702,1,1,427,428],[710,1,1,428,429],[712,3,3,429,432],[713,1,1,432,433],[714,3,2,433,435],[715,3,3,435,438],[716,1,1,438,439],[718,2,2,439,441],[731,1,1,441,442],[733,2,1,442,443],[735,2,2,443,445],[738,1,1,445,446],[741,1,1,446,447]]],[23,40,39,447,486,[[748,3,3,447,450],[749,1,1,450,451],[750,1,1,451,452],[753,1,1,452,453],[758,1,1,453,454],[765,1,1,454,455],[766,1,1,455,456],[767,1,1,456,457],[770,1,1,457,458],[771,1,1,458,459],[775,1,1,459,460],[778,1,1,460,461],[779,1,1,461,462],[781,1,1,462,463],[783,1,1,463,464],[790,6,5,464,469],[791,1,1,469,470],[792,3,3,470,473],[793,4,4,473,477],[794,4,4,477,481],[795,4,4,481,485],[796,1,1,485,486]]],[24,2,2,486,488,[[797,1,1,486,487],[798,1,1,487,488]]],[25,28,27,488,515,[[809,1,1,488,489],[810,1,1,489,490],[812,2,2,490,492],[814,1,1,492,493],[815,2,2,493,495],[817,1,1,495,496],[820,1,1,496,497],[824,1,1,497,498],[825,1,1,498,499],[827,2,1,499,500],[828,1,1,500,501],[830,1,1,501,502],[833,1,1,502,503],[837,1,1,503,504],[838,3,3,504,507],[839,3,3,507,510],[840,1,1,510,511],[841,4,4,511,515]]],[26,3,3,515,518,[[857,2,2,515,517],[860,1,1,517,518]]],[27,6,6,518,524,[[862,1,1,518,519],[863,1,1,519,520],[865,1,1,520,521],[869,1,1,521,522],[871,1,1,522,523],[874,1,1,523,524]]],[28,6,5,524,529,[[876,1,1,524,525],[877,3,2,525,527],[878,2,2,527,529]]],[29,8,8,529,537,[[881,2,2,529,531],[882,1,1,531,532],[885,1,1,532,533],[886,2,2,533,535],[887,2,2,535,537]]],[30,1,1,537,538,[[888,1,1,537,538]]],[31,3,3,538,541,[[889,1,1,538,539],[890,1,1,539,540],[892,1,1,540,541]]],[32,3,3,541,544,[[894,1,1,541,542],[896,1,1,542,543],[898,1,1,543,544]]],[33,3,3,544,547,[[901,2,2,544,546],[902,1,1,546,547]]],[34,2,2,547,549,[[903,1,1,547,548],[905,1,1,548,549]]],[36,1,1,549,550,[[909,1,1,549,550]]],[37,3,3,550,553,[[924,3,3,550,553]]]],[36,319,419,485,487,560,607,715,1012,1014,1024,1131,1132,1197,1198,1200,1213,1214,1217,1222,1341,1348,1357,1358,1367,1383,1415,1417,1477,1482,1511,1512,1513,1515,1520,1542,1577,1587,1713,1714,1715,1716,1789,1791,1854,1885,1960,1961,1986,1993,2029,2038,2039,2046,2049,2050,2077,2178,2179,2186,2189,2190,2192,2195,2439,2442,2446,2461,2468,2474,2476,2478,2498,2499,2500,2520,2743,2744,3982,3986,3987,3999,4092,4096,4106,4148,4152,4206,4207,4208,4218,4221,4316,4338,4345,4357,4373,4416,4566,4727,4729,4798,4913,4914,4916,4918,4920,4933,4976,5002,5166,5180,5187,5189,5372,5428,5554,5654,5720,5807,5808,5840,5875,5877,5926,5927,5928,5929,5954,5969,5978,5979,5980,6003,6005,6012,6013,6022,6068,6069,6070,6073,6097,6100,6124,6137,6195,6205,6208,6209,6210,6217,6266,6290,6304,6305,6331,6332,6333,6368,6459,6508,6510,6511,6512,6513,6525,6531,6546,6604,6609,6611,6657,6659,6667,6675,6689,6727,6730,6802,6805,6842,6845,6860,6872,6904,6911,6928,6935,6938,6939,6942,6952,6954,6957,6967,6980,7002,7005,7010,7054,7057,7072,7077,7080,7082,7084,7085,7092,7094,7121,7215,7219,7233,7236,7246,7254,7259,7331,7340,7351,7359,7362,7402,7404,7405,7410,7421,7446,7490,7500,7517,7518,7520,7521,7529,7554,7562,7566,7594,7641,7643,7829,7839,7861,7866,7874,7896,7938,7953,7956,7976,7978,8050,8051,8052,8076,8149,8151,8154,8155,8159,8413,8419,8470,8511,8545,8556,8593,8611,8710,8711,8714,8752,8757,8762,8804,8831,8904,8989,9067,9075,9084,9108,9123,9169,9175,9178,9243,9266,9300,9336,9382,9383,9384,9385,9409,9430,9434,9441,9486,9492,9500,9509,9536,9537,9539,9540,9542,9546,9549,9562,9574,9583,9584,9597,9624,9637,9638,9698,9808,9860,9867,9907,9939,9968,9970,9972,9986,9988,10033,10037,10041,10049,10075,10084,10089,10103,10106,10149,10167,10194,10203,10212,10766,10782,10784,10785,10952,10953,11093,11198,11200,11211,11273,11357,11368,11413,11418,11439,11446,11510,11544,11547,11553,11556,11561,11570,11603,11641,11700,11725,11811,11880,11963,11986,11999,12016,12019,12021,12027,12028,12086,12179,12180,12201,12202,12346,12362,12425,12426,12481,12529,12625,12661,13017,13332,13930,14126,14322,14527,14630,14996,15134,15579,15725,16093,16154,16808,17120,17150,17255,17497,17635,17645,17688,17745,17763,17783,17788,17814,17900,17936,17962,17965,18037,18053,18113,18272,18306,18313,18316,18329,18331,18340,18366,18376,18381,18412,18429,18451,18713,18753,18772,18773,18828,18877,19034,19040,19056,19068,19093,19196,19295,19442,19474,19492,19582,19618,19697,19822,19834,19885,19928,20049,20052,20053,20054,20056,20075,20085,20095,20124,20146,20149,20155,20158,20169,20175,20187,20210,20215,20239,20254,20265,20285,20324,20342,20615,20625,20678,20679,20713,20734,20738,20802,20884,21053,21064,21103,21151,21187,21251,21362,21403,21405,21409,21436,21441,21443,21450,21483,21499,21517,21526,21964,21969,22059,22105,22120,22148,22203,22233,22281,22297,22320,22331,22352,22355,22396,22400,22420,22465,22489,22491,22497,22500,22531,22533,22554,22574,22608,22622,22652,22700,22706,22715,22746,22784,22848,23081,23084,23085]]],["vapour",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13769]]],["went",[5,5,[[6,1,1,0,1,[[228,1,1,0,1]]],[10,2,2,1,3,[[300,2,2,1,3]]],[13,2,2,3,5,[[375,2,2,3,5]]]],[7010,9095,9096,11379,11380]]],["wrought",[1,1,[[13,1,1,0,1,[[369,1,1,0,1]]]],[11243]]]]},{"k":"H5928","v":[["offerings",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12160]]]]},{"k":"H5929","v":[["*",[18,13,[[0,2,2,0,2,[[2,1,1,0,1],[7,1,1,1,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[15,5,1,3,4,[[420,5,1,3,4]]],[17,1,1,4,5,[[448,1,1,4,5]]],[18,1,1,5,6,[[478,1,1,5,6]]],[19,1,1,6,7,[[638,1,1,6,7]]],[22,3,3,7,10,[[679,1,1,7,8],[712,1,1,8,9],[742,1,1,9,10]]],[23,2,2,10,12,[[752,1,1,10,11],[761,1,1,11,12]]],[25,2,1,12,13,[[848,2,1,12,13]]]],[62,194,3560,12508,13178,13942,16716,17684,18307,18891,19166,19365,21691]]],["branch",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16716]]],["branches",[5,1,[[15,5,1,0,1,[[420,5,1,0,1]]]],[12508]]],["leaf",[11,10,[[0,1,1,0,1,[[7,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[17,1,1,2,3,[[448,1,1,2,3]]],[18,1,1,3,4,[[478,1,1,3,4]]],[22,3,3,4,7,[[679,1,1,4,5],[712,1,1,5,6],[742,1,1,6,7]]],[23,2,2,7,9,[[752,1,1,7,8],[761,1,1,8,9]]],[25,2,1,9,10,[[848,2,1,9,10]]]],[194,3560,13178,13942,17684,18307,18891,19166,19365,21691]]],["leaves",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[62]]]]},{"k":"H5930","v":[["*",[288,262,[[0,7,7,0,7,[[7,1,1,0,1],[21,6,6,1,7]]],[1,17,16,7,23,[[59,1,1,7,8],[67,1,1,8,9],[69,1,1,9,10],[73,1,1,10,11],[78,3,3,11,14],[79,2,2,14,16],[80,1,1,16,17],[81,1,1,17,18],[84,1,1,18,19],[87,1,1,19,20],[89,4,3,20,23]]],[2,62,58,23,81,[[90,8,8,23,31],[92,1,1,31,32],[93,10,9,32,41],[94,2,2,41,43],[95,5,4,43,47],[96,4,3,47,50],[97,3,3,50,53],[98,10,10,53,63],[99,1,1,63,64],[101,2,2,64,66],[103,5,5,66,71],[104,2,2,71,73],[105,4,3,73,76],[106,1,1,76,77],[111,1,1,77,78],[112,3,3,78,81]]],[3,56,53,81,134,[[122,3,3,81,84],[123,13,13,84,97],[124,1,1,97,98],[126,1,1,98,99],[131,4,4,99,103],[139,4,4,103,107],[144,14,12,107,119],[145,16,15,119,134]]],[4,6,6,134,140,[[164,5,5,134,139],[179,1,1,139,140]]],[5,6,6,140,146,[[194,1,1,140,141],[208,5,5,141,146]]],[6,6,6,146,152,[[216,1,1,146,147],[221,1,1,147,148],[223,2,2,148,150],[230,1,1,150,151],[231,1,1,151,152]]],[8,10,9,152,161,[[241,2,2,152,154],[242,2,2,154,156],[245,1,1,156,157],[248,4,3,157,160],[250,1,1,160,161]]],[9,5,5,161,166,[[272,2,2,161,163],[290,3,3,163,166]]],[10,8,7,166,173,[[293,2,2,166,168],[298,2,1,168,169],[299,1,1,169,170],[300,1,1,170,171],[308,2,2,171,173]]],[11,9,6,173,179,[[315,1,1,173,174],[317,1,1,174,175],[322,2,2,175,177],[328,5,2,177,179]]],[12,13,11,179,190,[[343,1,1,179,180],[353,4,3,180,183],[358,5,4,183,187],[359,1,1,187,188],[360,1,1,188,189],[366,1,1,189,190]]],[13,30,24,190,214,[[367,1,1,190,191],[368,1,1,191,192],[370,1,1,192,193],[373,3,2,193,195],[374,1,1,195,196],[379,1,1,196,197],[389,1,1,197,198],[390,1,1,198,199],[395,12,9,199,208],[396,1,1,208,209],[397,4,2,209,211],[401,3,3,211,214]]],[14,8,6,214,220,[[405,6,5,214,219],[410,2,1,219,220]]],[15,1,1,220,221,[[422,1,1,220,221]]],[17,2,2,221,223,[[436,1,1,221,222],[477,1,1,222,223]]],[18,7,7,223,230,[[497,1,1,223,224],[517,1,1,224,225],[527,1,1,225,226],[528,2,2,226,228],[543,2,2,228,230]]],[22,5,5,230,235,[[679,1,1,230,231],[718,1,1,231,232],[721,1,1,232,233],[734,1,1,233,234],[739,1,1,234,235]]],[23,7,7,235,242,[[750,1,1,235,236],[751,2,2,236,238],[758,1,1,238,239],[761,1,1,239,240],[763,1,1,240,241],[777,1,1,241,242]]],[25,20,17,242,259,[[841,5,4,242,246],[844,3,3,246,249],[845,1,1,249,250],[846,5,4,250,254],[847,6,5,254,259]]],[27,1,1,259,260,[[867,1,1,259,260]]],[29,1,1,260,261,[[883,1,1,260,261]]],[32,1,1,261,262,[[898,1,1,261,262]]]],[203,549,550,553,554,555,560,1802,2011,2075,2182,2354,2361,2378,2391,2410,2429,2444,2547,2634,2713,2717,2736,2748,2749,2751,2754,2755,2758,2759,2762,2783,2802,2805,2813,2819,2820,2824,2825,2828,2829,2837,2840,2858,2859,2861,2874,2881,2887,2916,2935,2938,2945,2955,2956,2960,2965,2966,2967,2969,2970,2975,2977,2996,3050,3052,3124,3130,3131,3133,3142,3183,3198,3204,3206,3225,3243,3387,3414,3420,3439,3834,3837,3839,3865,3871,3877,3883,3889,3895,3901,3907,3913,3919,3925,3931,3937,3951,3998,4156,4158,4161,4177,4419,4422,4431,4433,4580,4583,4587,4588,4590,4591,4592,4596,4600,4601,4604,4608,4610,4614,4616,4619,4621,4624,4627,4630,4633,4636,4639,4642,4644,4646,4647,5246,5251,5253,5254,5267,5591,6033,6449,6452,6453,6454,6455,6680,6860,6900,6907,7080,7106,7345,7346,7361,7362,7426,7494,7495,7497,7582,8174,8175,8714,8716,8717,8820,8831,9049,9076,9084,9374,9379,9603,9664,9817,9818,9976,9978,10503,10821,10822,10860,10957,10958,10960,10963,10965,11014,11185,11200,11215,11252,11325,11331,11358,11464,11674,11691,11798,11809,11815,11818,11819,11822,11823,11825,11826,11842,11856,11857,11978,11980,11982,12099,12100,12101,12102,12103,12236,12582,12874,13930,14185,14531,14676,14707,14710,14886,14888,17665,18436,18528,18760,18851,19109,19140,19141,19305,19383,19412,19793,21503,21515,21516,21519,21590,21596,21599,21610,21645,21647,21653,21655,21657,21659,21667,21668,21670,22173,22445,22654]]],["+",[1,1,[[27,1,1,0,1,[[867,1,1,0,1]]]],[22173]]],["ascent",[1,1,[[10,1,1,0,1,[[300,1,1,0,1]]]],[9084]]],["burnt",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6452]]],["offering",[182,168,[[0,6,6,0,6,[[21,6,6,0,6]]],[1,12,11,6,17,[[67,1,1,6,7],[78,3,3,7,10],[79,1,1,10,11],[80,1,1,11,12],[84,1,1,12,13],[87,1,1,13,14],[89,4,3,14,17]]],[2,53,49,17,66,[[90,2,2,17,19],[93,10,9,19,28],[94,2,2,28,30],[95,5,4,30,34],[96,4,3,34,37],[97,2,2,37,39],[98,9,9,39,48],[99,1,1,48,49],[101,2,2,49,51],[103,5,5,51,56],[104,2,2,56,58],[105,4,3,58,61],[106,1,1,61,62],[111,1,1,62,63],[112,3,3,63,66]]],[3,53,50,66,116,[[122,3,3,66,69],[123,13,13,69,82],[124,1,1,82,83],[131,4,4,83,87],[139,3,3,87,90],[144,14,12,90,102],[145,15,14,102,116]]],[5,1,1,116,117,[[208,1,1,116,117]]],[6,3,3,117,120,[[221,1,1,117,118],[223,2,2,118,120]]],[8,7,6,120,126,[[241,1,1,120,121],[242,2,2,121,123],[248,4,3,123,126]]],[11,7,5,126,131,[[315,1,1,126,127],[317,1,1,127,128],[322,1,1,128,129],[328,4,2,129,131]]],[12,5,5,131,136,[[343,1,1,131,132],[353,1,1,132,133],[358,2,2,133,135],[359,1,1,135,136]]],[13,9,8,136,144,[[370,1,1,136,137],[373,1,1,137,138],[395,7,6,138,144]]],[14,2,2,144,146,[[405,1,1,144,145],[410,1,1,145,146]]],[15,1,1,146,147,[[422,1,1,146,147]]],[17,1,1,147,148,[[477,1,1,147,148]]],[18,3,3,148,151,[[517,1,1,148,149],[528,2,2,149,151]]],[22,2,2,151,153,[[718,1,1,151,152],[739,1,1,152,153]]],[23,1,1,153,154,[[758,1,1,153,154]]],[25,16,14,154,168,[[841,4,3,154,157],[844,1,1,157,158],[845,1,1,158,159],[846,4,4,159,163],[847,6,5,163,168]]]],[549,550,553,554,555,560,2011,2354,2361,2378,2410,2429,2547,2634,2713,2717,2736,2749,2751,2802,2805,2813,2819,2820,2824,2825,2828,2829,2837,2840,2858,2859,2861,2874,2881,2887,2916,2935,2945,2955,2956,2960,2965,2966,2967,2969,2975,2977,2996,3050,3052,3124,3130,3131,3133,3142,3183,3198,3204,3206,3225,3243,3387,3414,3420,3439,3834,3837,3839,3865,3871,3877,3883,3889,3895,3901,3907,3913,3919,3925,3931,3937,3951,4156,4158,4161,4177,4419,4431,4433,4580,4583,4587,4588,4590,4591,4592,4596,4600,4601,4604,4608,4610,4614,4616,4619,4621,4624,4627,4630,4633,4636,4639,4642,4644,4646,6449,6860,6900,6907,7345,7361,7362,7494,7495,7497,9603,9664,9818,9976,9978,10503,10860,10960,10963,10965,11252,11325,11809,11815,11818,11819,11823,11826,12102,12236,12582,13930,14531,14707,14710,18436,18851,19305,21515,21516,21519,21596,21610,21645,21647,21653,21655,21657,21659,21667,21668,21670]]],["offerings",[81,76,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,4,4,1,5,[[59,1,1,1,2],[69,1,1,2,3],[73,1,1,3,4],[81,1,1,4,5]]],[3,2,2,5,7,[[126,1,1,5,6],[145,1,1,6,7]]],[4,6,6,7,13,[[164,5,5,7,12],[179,1,1,12,13]]],[5,4,4,13,17,[[194,1,1,13,14],[208,3,3,14,17]]],[6,2,2,17,19,[[230,1,1,17,18],[231,1,1,18,19]]],[8,3,3,19,22,[[241,1,1,19,20],[245,1,1,20,21],[250,1,1,21,22]]],[9,4,4,22,26,[[272,2,2,22,24],[290,2,2,24,26]]],[10,5,4,26,30,[[293,2,2,26,28],[298,2,1,28,29],[299,1,1,29,30]]],[11,1,1,30,31,[[322,1,1,30,31]]],[12,6,6,31,37,[[353,2,2,31,33],[358,3,3,33,36],[366,1,1,36,37]]],[13,20,17,37,54,[[367,1,1,37,38],[368,1,1,38,39],[373,2,1,39,40],[374,1,1,40,41],[389,1,1,41,42],[390,1,1,42,43],[395,5,5,43,48],[396,1,1,48,49],[397,4,2,49,51],[401,3,3,51,54]]],[14,6,5,54,59,[[405,5,4,54,58],[410,1,1,58,59]]],[17,1,1,59,60,[[436,1,1,59,60]]],[18,2,2,60,62,[[527,1,1,60,61],[543,1,1,61,62]]],[22,3,3,62,65,[[679,1,1,62,63],[721,1,1,63,64],[734,1,1,64,65]]],[23,6,6,65,71,[[750,1,1,65,66],[751,2,2,66,68],[761,1,1,68,69],[763,1,1,69,70],[777,1,1,70,71]]],[25,3,3,71,74,[[844,2,2,71,73],[846,1,1,73,74]]],[29,1,1,74,75,[[883,1,1,74,75]]],[32,1,1,75,76,[[898,1,1,75,76]]]],[203,1802,2075,2182,2444,3998,4647,5246,5251,5253,5254,5267,5591,6033,6453,6454,6455,7080,7106,7346,7426,7582,8174,8175,8716,8717,8820,8831,9049,9076,9817,10822,10860,10957,10958,10960,11185,11200,11215,11331,11358,11674,11691,11798,11822,11823,11825,11826,11842,11856,11857,11978,11980,11982,12099,12100,12101,12103,12236,12874,14676,14886,17665,18528,18760,19109,19140,19141,19383,19412,19793,21590,21599,21647,22445,22654]]],["sacrifice",[17,17,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,9,9,1,10,[[90,6,6,1,7],[92,1,1,7,8],[97,1,1,8,9],[98,1,1,9,10]]],[3,1,1,10,11,[[139,1,1,10,11]]],[6,1,1,11,12,[[216,1,1,11,12]]],[9,1,1,12,13,[[290,1,1,12,13]]],[10,2,2,13,15,[[308,2,2,13,15]]],[11,1,1,15,16,[[328,1,1,15,16]]],[18,1,1,16,17,[[497,1,1,16,17]]]],[2391,2748,2754,2755,2758,2759,2762,2783,2938,2970,4422,6680,8714,9374,9379,9978,14185]]],["sacrifices",[4,4,[[12,2,2,0,2,[[353,1,1,0,1],[360,1,1,1,2]]],[13,1,1,2,3,[[379,1,1,2,3]]],[18,1,1,3,4,[[543,1,1,3,4]]]],[10821,11014,11464,14888]]],["up",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21503]]]]},{"k":"H5931","v":[["occasion",[3,2,[[26,3,2,0,2,[[855,3,2,0,2]]]],[21909,21910]]]]},{"k":"H5932","v":[["iniquity",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22234]]]]},{"k":"H5933","v":[["*",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1080,10303]]],["Aliah",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10303]]],["Alvah",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1080]]]]},{"k":"H5934","v":[["youth",[4,4,[[17,2,2,0,2,[[455,1,1,0,1],[468,1,1,1,2]]],[18,1,1,2,3,[[566,1,1,2,3]]],[22,1,1,3,4,[[732,1,1,3,4]]]],[13337,13675,15371,18727]]]]},{"k":"H5935","v":[["*",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1063,10292]]],["Alian",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10292]]],["Alvan",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1063]]]]},{"k":"H5936","v":[["horseleach",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17266]]]]},{"k":"H5937","v":[["*",[16,16,[[9,1,1,0,1,[[267,1,1,0,1]]],[18,7,7,1,8,[[505,1,1,1,2],[537,1,1,2,3],[545,1,1,3,4],[571,1,1,4,5],[573,1,1,5,6],[585,1,1,6,7],[626,1,1,7,8]]],[19,1,1,8,9,[[650,1,1,8,9]]],[22,1,1,9,10,[[701,1,1,9,10]]],[23,4,4,10,14,[[755,1,1,10,11],[759,1,1,11,12],[794,1,1,12,13],[795,1,1,13,14]]],[34,1,1,14,15,[[905,1,1,14,15]]],[35,1,1,15,16,[[908,1,1,15,16]]]],[8042,14306,14813,14904,15434,15477,15749,16390,17060,18089,19241,19332,20177,20251,22786,22834]]],["joyful",[2,2,[[18,2,2,0,2,[[573,1,1,0,1],[626,1,1,1,2]]]],[15477,16390]]],["rejoice",[8,8,[[18,3,3,0,3,[[537,1,1,0,1],[545,1,1,1,2],[585,1,1,2,3]]],[19,1,1,3,4,[[650,1,1,3,4]]],[22,1,1,4,5,[[701,1,1,4,5]]],[23,1,1,5,6,[[795,1,1,5,6]]],[34,1,1,6,7,[[905,1,1,6,7]]],[35,1,1,7,8,[[908,1,1,7,8]]]],[14813,14904,15749,17060,18089,20251,22786,22834]]],["rejoiced",[2,2,[[23,2,2,0,2,[[759,1,1,0,1],[794,1,1,1,2]]]],[19332,20177]]],["rejoicest",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19241]]],["rejoiceth",[1,1,[[18,1,1,0,1,[[505,1,1,0,1]]]],[14306]]],["triumph",[2,2,[[9,1,1,0,1,[[267,1,1,0,1]]],[18,1,1,1,2,[[571,1,1,1,2]]]],[8042,15434]]]]},{"k":"H5938","v":[["rejoiceth",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17753]]]]},{"k":"H5939","v":[["*",[4,4,[[0,1,1,0,1,[[14,1,1,0,1]]],[25,3,3,1,4,[[813,3,3,1,4]]]],[377,20686,20687,20692]]],["dark",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[377]]],["twilight",[3,3,[[25,3,3,0,3,[[813,3,3,0,3]]]],[20686,20687,20692]]]]},{"k":"H5940","v":[["pestle",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17191]]]]},{"k":"H5941","v":[["*",[33,30,[[8,32,29,0,29,[[236,7,7,0,7],[237,5,5,7,12],[238,12,10,12,22],[239,7,6,22,28],[249,1,1,28,29]]],[10,1,1,29,30,[[292,1,1,29,30]]]],[7215,7221,7224,7225,7226,7229,7237,7251,7252,7260,7262,7267,7277,7278,7281,7282,7284,7285,7288,7290,7291,7292,7301,7308,7310,7311,7312,7313,7511,8797]]],["+",[2,2,[[8,2,2,0,2,[[238,2,2,0,2]]]],[7288,7291]]],["Eli",[30,28,[[8,29,27,0,27,[[236,7,7,0,7],[237,5,5,7,12],[238,9,8,12,20],[239,7,6,20,26],[249,1,1,26,27]]],[10,1,1,27,28,[[292,1,1,27,28]]]],[7215,7221,7224,7225,7226,7229,7237,7251,7252,7260,7262,7267,7277,7278,7281,7282,7284,7285,7290,7292,7301,7308,7310,7311,7312,7313,7511,8797]]],["Eli's",[1,1,[[8,1,1,0,1,[[238,1,1,0,1]]]],[7290]]]]},{"k":"H5942","v":[["upper",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]]],[6221,6524]]]]},{"k":"H5943","v":[["*",[10,10,[[26,10,10,0,10,[[852,1,1,0,1],[853,6,6,1,7],[854,2,2,7,9],[856,1,1,9,10]]]],[21833,21839,21854,21861,21862,21869,21871,21892,21895,21958]]],["High",[6,6,[[26,6,6,0,6,[[853,5,5,0,5],[856,1,1,5,6]]]],[21854,21861,21862,21869,21871,21958]]],["high",[4,4,[[26,4,4,0,4,[[852,1,1,0,1],[853,1,1,1,2],[854,2,2,2,4]]]],[21833,21839,21892,21895]]]]},{"k":"H5944","v":[["*",[20,20,[[6,4,4,0,4,[[213,4,4,0,4]]],[9,1,1,4,5,[[284,1,1,4,5]]],[10,2,2,5,7,[[307,2,2,5,7]]],[11,4,4,7,11,[[313,1,1,7,8],[316,2,2,8,10],[335,1,1,10,11]]],[12,1,1,11,12,[[365,1,1,11,12]]],[13,2,2,12,14,[[369,1,1,12,13],[375,1,1,13,14]]],[15,2,2,14,16,[[415,2,2,14,16]]],[18,2,2,16,18,[[581,2,2,16,18]]],[23,2,2,18,20,[[766,2,2,18,20]]]],[6588,6591,6592,6593,8511,9336,9340,9535,9613,9614,10177,11154,11238,11368,12358,12359,15574,15584,19467,19468]]],["+",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15584]]],["ascent",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11368]]],["chamber",[6,6,[[9,1,1,0,1,[[284,1,1,0,1]]],[10,1,1,1,2,[[307,1,1,1,2]]],[11,4,4,2,6,[[313,1,1,2,3],[316,2,2,3,5],[335,1,1,5,6]]]],[8511,9340,9535,9613,9614,10177]]],["chambers",[5,5,[[12,1,1,0,1,[[365,1,1,0,1]]],[13,1,1,1,2,[[369,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[23,2,2,3,5,[[766,2,2,3,5]]]],[11154,11238,15574,19467,19468]]],["loft",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9336]]],["parlour",[4,4,[[6,4,4,0,4,[[213,4,4,0,4]]]],[6588,6591,6592,6593]]],["up",[2,2,[[15,2,2,0,2,[[415,2,2,0,2]]]],[12358,12359]]]]},{"k":"H5945","v":[["*",[53,53,[[0,5,5,0,5,[[13,4,4,0,4],[39,1,1,4,5]]],[3,1,1,5,6,[[140,1,1,5,6]]],[4,3,3,6,9,[[178,1,1,6,7],[180,1,1,7,8],[184,1,1,8,9]]],[5,1,1,9,10,[[202,1,1,9,10]]],[9,1,1,10,11,[[288,1,1,10,11]]],[10,1,1,11,12,[[299,1,1,11,12]]],[11,2,2,12,14,[[327,1,1,12,13],[330,1,1,13,14]]],[12,1,1,14,15,[[344,1,1,14,15]]],[13,5,5,15,20,[[373,1,1,15,16],[374,1,1,16,17],[389,1,1,17,18],[393,1,1,18,19],[398,1,1,19,20]]],[15,1,1,20,21,[[415,1,1,20,21]]],[18,22,22,21,43,[[484,1,1,21,22],[486,1,1,22,23],[495,1,1,23,24],[498,1,1,24,25],[523,1,1,25,26],[524,1,1,26,27],[527,1,1,27,28],[534,1,1,28,29],[550,1,1,29,30],[554,1,1,30,31],[555,3,3,31,34],[559,1,1,34,35],[560,1,1,35,36],[564,1,1,36,37],[566,1,1,37,38],[568,2,2,38,40],[569,1,1,40,41],[574,1,1,41,42],[584,1,1,42,43]]],[22,3,3,43,46,[[685,1,1,43,44],[692,1,1,44,45],[714,1,1,45,46]]],[23,2,2,46,48,[[764,1,1,46,47],[780,1,1,47,48]]],[24,2,2,48,50,[[799,2,2,48,50]]],[25,3,3,50,53,[[810,1,1,50,51],[842,1,1,51,52],[843,1,1,52,53]]]],[354,355,356,358,1189,4462,5585,5612,5766,6270,8616,9059,9960,10041,10559,11345,11351,11676,11758,11905,12352,14012,14023,14131,14198,14618,14627,14682,14770,15031,15103,15130,15148,15169,15239,15259,15306,15353,15396,15404,15412,15487,15710,17785,17942,18332,19424,19852,20389,20392,20624,21533,21557]]],["High",[18,18,[[3,1,1,0,1,[[140,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[18,12,12,3,15,[[486,1,1,3,4],[498,1,1,4,5],[523,1,1,5,6],[527,1,1,6,7],[550,1,1,7,8],[554,1,1,8,9],[555,1,1,9,10],[559,1,1,10,11],[568,2,2,11,13],[569,1,1,13,14],[584,1,1,14,15]]],[22,1,1,15,16,[[692,1,1,15,16]]],[24,2,2,16,18,[[799,2,2,16,18]]]],[4462,5766,8616,14023,14198,14618,14682,15031,15103,15130,15239,15396,15404,15412,15710,17942,20389,20392]]],["Highest",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14131]]],["high",[19,19,[[0,4,4,0,4,[[13,4,4,0,4]]],[4,2,2,4,6,[[178,1,1,4,5],[180,1,1,5,6]]],[10,1,1,6,7,[[299,1,1,6,7]]],[13,3,3,7,10,[[373,1,1,7,8],[389,1,1,8,9],[393,1,1,9,10]]],[15,1,1,10,11,[[415,1,1,10,11]]],[18,7,7,11,18,[[484,1,1,11,12],[524,1,1,12,13],[534,1,1,13,14],[555,2,2,14,16],[560,1,1,16,17],[574,1,1,17,18]]],[23,1,1,18,19,[[764,1,1,18,19]]]],[354,355,356,358,5585,5612,9059,11345,11676,11758,12352,14012,14627,14770,15148,15169,15259,15487,19424]]],["higher",[4,4,[[11,1,1,0,1,[[327,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]],[23,1,1,2,3,[[780,1,1,2,3]]],[25,1,1,3,4,[[810,1,1,3,4]]]],[9960,15353,19852,20624]]],["highest",[2,2,[[18,1,1,0,1,[[564,1,1,0,1]]],[25,1,1,1,2,[[842,1,1,1,2]]]],[15306,21533]]],["upper",[8,8,[[5,1,1,0,1,[[202,1,1,0,1]]],[11,1,1,1,2,[[330,1,1,1,2]]],[12,1,1,2,3,[[344,1,1,2,3]]],[13,2,2,3,5,[[374,1,1,3,4],[398,1,1,4,5]]],[22,2,2,5,7,[[685,1,1,5,6],[714,1,1,6,7]]],[25,1,1,7,8,[[843,1,1,7,8]]]],[6270,10041,10559,11351,11905,17785,18332,21557]]],["uppermost",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1189]]]]},{"k":"H5946","v":[["High",[4,4,[[26,4,4,0,4,[[856,4,4,0,4]]]],[21951,21955,21958,21960]]]]},{"k":"H5947","v":[["*",[7,7,[[22,5,5,0,5,[[691,1,1,0,1],[700,1,1,1,2],[701,1,1,2,3],[702,1,1,3,4],[710,1,1,4,5]]],[35,2,2,5,7,[[907,1,1,5,6],[908,1,1,6,7]]]],[17909,18054,18084,18103,18272,22820,22831]]],["joyous",[3,3,[[22,3,3,0,3,[[700,1,1,0,1],[701,1,1,1,2],[710,1,1,2,3]]]],[18054,18084,18272]]],["rejoice",[3,3,[[22,2,2,0,2,[[691,1,1,0,1],[702,1,1,1,2]]],[35,1,1,2,3,[[908,1,1,2,3]]]],[17909,18103,22831]]],["rejoicing",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22820]]]]},{"k":"H5948","v":[["furnace",[1,1,[[18,1,1,0,1,[[489,1,1,0,1]]]],[14072]]]]},{"k":"H5949","v":[["*",[24,24,[[4,2,2,0,2,[[174,2,2,0,2]]],[8,1,1,2,3,[[237,1,1,2,3]]],[12,1,1,3,4,[[353,1,1,3,4]]],[18,9,9,4,13,[[486,1,1,4,5],[491,1,1,5,6],[543,1,1,6,7],[554,1,1,7,8],[555,1,1,8,9],[576,1,1,9,10],[580,1,1,10,11],[582,1,1,11,12],[618,1,1,12,13]]],[22,1,1,13,14,[[690,1,1,13,14]]],[25,8,8,14,22,[[815,2,2,14,16],[821,2,2,16,18],[822,1,1,18,19],[825,1,1,19,20],[837,2,2,20,22]]],[35,2,2,22,24,[[908,2,2,22,24]]]],[5484,5487,7243,10828,14032,14081,14878,15105,15124,15507,15556,15607,16280,17904,20753,20754,20938,20939,20968,21070,21376,21378,22827,22831]]],["actions",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7243]]],["acts",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15556]]],["deeds",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[10828,15607]]],["doing",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14878]]],["doings",[13,13,[[18,2,2,0,2,[[486,1,1,0,1],[554,1,1,1,2]]],[22,1,1,2,3,[[690,1,1,2,3]]],[25,8,8,3,11,[[815,2,2,3,5],[821,2,2,5,7],[822,1,1,7,8],[825,1,1,8,9],[837,2,2,9,11]]],[35,2,2,11,13,[[908,2,2,11,13]]]],[14032,15105,17904,20753,20754,20938,20939,20968,21070,21376,21378,22827,22831]]],["inventions",[1,1,[[18,1,1,0,1,[[576,1,1,0,1]]]],[15507]]],["occasions",[2,2,[[4,2,2,0,2,[[174,2,2,0,2]]]],[5484,5487]]],["works",[3,3,[[18,3,3,0,3,[[491,1,1,0,1],[555,1,1,1,2],[618,1,1,2,3]]]],[14081,15124,16280]]]]},{"k":"H5950","v":[["work",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19750]]]]},{"k":"H5951","v":[["rejoicing",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22782]]]]},{"k":"H5952","v":[["chamber",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21915]]]]},{"k":"H5953","v":[["*",[19,17,[[1,1,1,0,1,[[59,1,1,0,1]]],[2,1,1,1,2,[[108,1,1,1,2]]],[3,1,1,2,3,[[138,1,1,2,3]]],[4,1,1,3,4,[[176,1,1,3,4]]],[6,2,2,4,6,[[229,1,1,4,5],[230,1,1,5,6]]],[8,2,2,6,8,[[241,1,1,6,7],[266,1,1,7,8]]],[12,1,1,8,9,[[347,1,1,8,9]]],[17,1,1,9,10,[[451,1,1,9,10]]],[18,1,1,10,11,[[618,1,1,10,11]]],[23,3,2,11,13,[[750,2,1,11,12],[782,1,1,12,13]]],[24,5,4,13,17,[[797,3,2,13,15],[798,1,1,15,16],[799,1,1,16,17]]]],[1779,3291,4404,5546,7049,7099,7337,8013,10663,13253,16280,19098,19914,20322,20332,20352,20405]]],["+",[2,1,[[23,2,1,0,1,[[750,2,1,0,1]]]],[19098]]],["abuse",[2,2,[[8,1,1,0,1,[[266,1,1,0,1]]],[12,1,1,1,2,[[347,1,1,1,2]]]],[8013,10663]]],["abused",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7049]]],["affecteth",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20405]]],["defiled",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13253]]],["do",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20332]]],["done",[3,3,[[24,3,3,0,3,[[797,2,2,0,2],[798,1,1,2,3]]]],[20322,20332,20352]]],["glean",[2,2,[[2,1,1,0,1,[[108,1,1,0,1]]],[4,1,1,1,2,[[176,1,1,1,2]]]],[3291,5546]]],["gleaned",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7099]]],["mock",[1,1,[[23,1,1,0,1,[[782,1,1,0,1]]]],[19914]]],["mocked",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4404]]],["practise",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16280]]],["wonderfully",[1,1,[[8,1,1,0,1,[[241,1,1,0,1]]]],[7337]]],["wrought",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1779]]]]},{"k":"H5954","v":[["*",[11,11,[[26,11,11,0,11,[[851,3,3,0,3],[853,2,2,3,5],[854,4,4,5,9],[855,2,2,9,11]]]],[21774,21782,21783,21844,21845,21882,21884,21887,21889,21915,21923]]],["brought",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21923]]],["came",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21884]]],["in",[8,8,[[26,8,8,0,8,[[851,3,3,0,3],[853,2,2,3,5],[854,3,3,5,8]]]],[21774,21782,21783,21844,21845,21882,21887,21889]]],["went",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21915]]]]},{"k":"H5955","v":[["*",[6,6,[[6,1,1,0,1,[[218,1,1,0,1]]],[22,2,2,1,3,[[695,1,1,1,2],[702,1,1,2,3]]],[23,1,1,3,4,[[793,1,1,3,4]]],[30,1,1,4,5,[[888,1,1,4,5]]],[32,1,1,5,6,[[899,1,1,5,6]]]],[6721,17989,18108,20136,22515,22665]]],["grapegleanings",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22665]]],["grapes",[5,5,[[6,1,1,0,1,[[218,1,1,0,1]]],[22,2,2,1,3,[[695,1,1,1,2],[702,1,1,2,3]]],[23,1,1,3,4,[[793,1,1,3,4]]],[30,1,1,4,5,[[888,1,1,4,5]]]],[6721,17989,18108,20136,22515]]]]},{"k":"H5956","v":[["*",[28,27,[[2,6,5,0,5,[[93,1,1,0,1],[94,3,3,1,4],[109,2,1,4,5]]],[3,1,1,5,6,[[121,1,1,5,6]]],[4,3,3,6,9,[[174,3,3,6,9]]],[8,1,1,9,10,[[247,1,1,9,10]]],[10,1,1,10,11,[[300,1,1,10,11]]],[11,1,1,11,12,[[316,1,1,11,12]]],[13,1,1,12,13,[[375,1,1,12,13]]],[17,3,3,13,16,[[441,1,1,13,14],[463,1,1,14,15],[477,1,1,15,16]]],[18,4,4,16,20,[[487,1,1,16,17],[503,1,1,17,18],[532,1,1,18,19],[567,1,1,19,20]]],[19,1,1,20,21,[[655,1,1,20,21]]],[20,1,1,21,22,[[670,1,1,21,22]]],[22,2,2,22,24,[[679,1,1,22,23],[736,1,1,23,24]]],[24,1,1,24,25,[[799,1,1,24,25]]],[25,1,1,25,26,[[823,1,1,25,26]]],[33,1,1,26,27,[[902,1,1,26,27]]]],[2808,2832,2833,2834,3322,3805,5471,5473,5474,7463,9082,9630,11366,12994,13525,13925,14042,14277,14733,15386,17223,17537,17669,18793,20410,21002,22723]]],["+",[4,3,[[2,2,1,0,1,[[109,2,1,0,1]]],[18,1,1,1,2,[[532,1,1,1,2]]],[22,1,1,2,3,[[736,1,1,2,3]]]],[3322,14733,18793]]],["blind",[1,1,[[8,1,1,0,1,[[247,1,1,0,1]]]],[7463]]],["dissemblers",[1,1,[[18,1,1,0,1,[[503,1,1,0,1]]]],[14277]]],["hid",[11,11,[[2,3,3,0,3,[[93,1,1,0,1],[94,2,2,1,3]]],[3,1,1,3,4,[[121,1,1,3,4]]],[10,1,1,4,5,[[300,1,1,4,5]]],[11,1,1,5,6,[[316,1,1,5,6]]],[13,1,1,6,7,[[375,1,1,6,7]]],[17,2,2,7,9,[[441,1,1,7,8],[463,1,1,8,9]]],[25,1,1,9,10,[[823,1,1,9,10]]],[33,1,1,10,11,[[902,1,1,10,11]]]],[2808,2833,2834,3805,9082,9630,11366,12994,13525,21002,22723]]],["hidden",[1,1,[[2,1,1,0,1,[[94,1,1,0,1]]]],[2832]]],["hide",[2,2,[[22,1,1,0,1,[[679,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]]],[17669,20410]]],["hidest",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14042]]],["hideth",[2,2,[[17,1,1,0,1,[[477,1,1,0,1]]],[19,1,1,1,2,[[655,1,1,1,2]]]],[13925,17223]]],["secret",[1,1,[[18,1,1,0,1,[[567,1,1,0,1]]]],[15386]]],["thing",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17537]]],["thyself",[3,3,[[4,3,3,0,3,[[174,3,3,0,3]]]],[5471,5473,5474]]]]},{"k":"H5957","v":[["*",[20,15,[[14,2,2,0,2,[[406,2,2,0,2]]],[26,18,13,2,15,[[851,5,3,2,5],[852,1,1,5,6],[853,3,2,6,8],[854,1,1,8,9],[855,3,3,9,12],[856,5,3,12,15]]]],[12125,12129,21762,21778,21802,21816,21840,21871,21884,21911,21926,21931,21947,21951,21960]]],["+",[5,3,[[26,5,3,0,3,[[851,3,2,0,2],[856,2,1,2,3]]]],[21778,21802,21951]]],["ever",[9,9,[[26,9,9,0,9,[[851,2,2,0,2],[852,1,1,2,3],[853,1,1,3,4],[854,1,1,4,5],[855,3,3,5,8],[856,1,1,8,9]]]],[21762,21802,21816,21871,21884,21911,21926,21931,21951]]],["everlasting",[4,4,[[26,4,4,0,4,[[853,2,2,0,2],[856,2,2,2,4]]]],[21840,21871,21947,21960]]],["old",[2,2,[[14,2,2,0,2,[[406,2,2,0,2]]]],[12125,12129]]]]},{"k":"H5958","v":[["*",[2,2,[[8,2,2,0,2,[[252,1,1,0,1],[255,1,1,1,2]]]],[7674,7752]]],["man",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7752]]],["stripling",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7674]]]]},{"k":"H5959","v":[["*",[7,7,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]],[18,1,1,2,3,[[545,1,1,2,3]]],[19,1,1,3,4,[[657,1,1,3,4]]],[21,2,2,4,6,[[671,1,1,4,5],[676,1,1,5,6]]],[22,1,1,6,7,[[685,1,1,6,7]]]],[634,1562,14925,17270,17540,17622,17796]]],["damsels",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14925]]],["maid",[2,2,[[1,1,1,0,1,[[51,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[1562,17270]]],["virgin",[2,2,[[0,1,1,0,1,[[23,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]]],[634,17796]]],["virgins",[2,2,[[21,2,2,0,2,[[671,1,1,0,1],[676,1,1,1,2]]]],[17540,17622]]]]},{"k":"H5960","v":[["Almon",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6399]]]]},{"k":"H5961","v":[["Alamoth",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10811]]]]},{"k":"H5962","v":[["Elamites",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12119]]]]},{"k":"H5963","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4806,4807]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4807]]],["Almondiblathaim",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4806]]]]},{"k":"H5964","v":[["*",[4,4,[[12,4,4,0,4,[[343,1,1,0,1],[344,1,1,1,2],[345,1,1,2,3],[346,1,1,3,4]]]],[10514,10543,10611,10657]]],["Alameth",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10543]]],["Alemeth",[3,3,[[12,3,3,0,3,[[343,1,1,0,1],[345,1,1,1,2],[346,1,1,2,3]]]],[10514,10611,10657]]]]},{"k":"H5965","v":[["*",[3,3,[[17,2,2,0,2,[[455,1,1,0,1],[474,1,1,1,2]]],[19,1,1,2,3,[[634,1,1,2,3]]]],[13344,13847,16593]]],["goodly",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13847]]],["ourselves",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16593]]],["rejoice",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13344]]]]},{"k":"H5966","v":[["up",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13864]]]]},{"k":"H5967","v":[["ribs",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21938]]]]},{"k":"H5968","v":[["*",[5,5,[[0,1,1,0,1,[[37,1,1,0,1]]],[21,1,1,1,2,[[675,1,1,1,2]]],[22,1,1,2,3,[[729,1,1,2,3]]],[29,1,1,3,4,[[886,1,1,3,4]]],[31,1,1,4,5,[[892,1,1,4,5]]]],[1133,17612,18693,22494,22576]]],["faint",[1,1,[[29,1,1,0,1,[[886,1,1,0,1]]]],[22494]]],["fainted",[2,2,[[22,1,1,0,1,[[729,1,1,0,1]]],[31,1,1,1,2,[[892,1,1,1,2]]]],[18693,22576]]],["herself",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1133]]],["overlaid",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17612]]]]},{"k":"H5969","v":[["fainted",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21245]]]]},{"k":"H5970","v":[["*",[8,8,[[8,1,1,0,1,[[237,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[18,4,4,2,6,[[482,1,1,2,3],[486,1,1,3,4],[502,1,1,4,5],[545,1,1,5,6]]],[19,2,2,6,8,[[638,1,1,6,7],[655,1,1,7,8]]]],[7241,10852,13984,14023,14253,14903,16698,17208]]],["joyful",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13984]]],["rejoice",[4,4,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,2,2,1,3,[[486,1,1,1,2],[545,1,1,2,3]]],[19,1,1,3,4,[[655,1,1,3,4]]]],[10852,14023,14903,17208]]],["rejoiceth",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[19,1,1,1,2,[[638,1,1,1,2]]]],[7241,16698]]],["triumph",[1,1,[[18,1,1,0,1,[[502,1,1,0,1]]]],[14253]]]]},{"k":"H5971","v":[["*",[1868,1655,[[0,33,33,0,33,[[10,1,1,0,1],[13,1,1,1,2],[16,2,2,2,4],[18,1,1,4,5],[22,4,4,5,9],[24,2,2,9,11],[25,2,2,11,13],[26,1,1,13,14],[27,1,1,14,15],[31,1,1,15,16],[32,1,1,16,17],[33,2,2,17,19],[34,2,2,19,21],[40,2,2,21,23],[41,1,1,23,24],[46,2,2,24,26],[47,2,2,26,28],[48,4,4,28,32],[49,1,1,32,33]]],[1,175,149,33,182,[[50,4,3,33,36],[52,4,4,36,40],[53,4,4,40,44],[54,12,10,44,54],[55,1,1,54,55],[56,3,3,55,58],[57,17,13,58,71],[58,7,7,71,78],[59,2,2,78,80],[60,4,3,80,83],[61,5,5,83,88],[62,5,4,88,92],[63,5,4,92,96],[64,5,4,96,100],[65,3,3,100,103],[66,8,7,103,110],[67,15,12,110,122],[68,18,15,122,137],[69,4,3,137,140],[70,1,1,140,141],[71,2,2,141,143],[72,2,2,143,145],[73,5,4,145,149],[79,2,2,149,151],[80,1,1,151,152],[81,19,17,152,169],[82,12,9,169,178],[83,3,2,178,180],[85,2,2,180,182]]],[2,43,39,182,221,[[93,2,2,182,184],[96,4,4,184,188],[98,9,6,188,194],[99,1,1,194,195],[105,4,3,195,198],[106,3,3,198,201],[107,1,1,201,202],[108,3,3,202,205],[109,9,9,205,214],[110,4,4,214,218],[112,2,2,218,220],[115,1,1,220,221]]],[3,87,76,221,297,[[121,2,2,221,223],[125,1,1,223,224],[127,20,18,224,242],[128,2,2,242,244],[129,5,5,244,249],[130,10,9,249,258],[131,2,2,258,260],[132,3,2,260,262],[136,4,4,262,266],[137,15,12,266,278],[138,8,7,278,285],[139,2,2,285,287],[140,3,1,287,288],[141,4,3,288,291],[143,1,1,291,292],[147,3,3,292,295],[148,1,1,295,296],[149,1,1,296,297]]],[4,107,96,297,393,[[153,1,1,297,298],[154,7,7,298,305],[155,4,4,305,309],[156,7,6,309,315],[157,1,1,315,316],[158,1,1,316,317],[159,8,5,317,322],[161,8,7,322,329],[162,2,2,329,331],[165,2,2,331,333],[166,4,2,333,335],[168,1,1,335,336],[169,3,3,336,339],[170,1,1,339,340],[172,8,7,340,347],[173,2,1,347,348],[178,3,3,348,351],[179,16,16,351,367],[180,6,6,367,373],[181,1,1,373,374],[182,1,1,374,375],[183,3,3,375,378],[184,10,8,378,386],[185,7,7,386,393]]],[5,70,58,393,451,[[187,4,4,393,397],[189,7,5,397,402],[190,7,5,402,407],[191,3,2,407,409],[192,10,6,409,415],[193,6,5,415,420],[194,13,11,420,431],[196,3,3,431,434],[197,2,2,434,436],[200,1,1,436,437],[203,3,3,437,440],[210,11,11,440,451]]],[6,67,61,451,512,[[211,1,1,451,452],[212,4,4,452,456],[213,1,1,456,457],[214,1,1,457,458],[215,6,6,458,464],[217,9,8,464,472],[218,1,1,472,473],[219,16,13,473,486],[220,1,1,486,487],[221,4,4,487,491],[222,1,1,491,492],[224,3,3,492,495],[226,2,2,495,497],[228,4,4,497,501],[230,9,7,501,508],[231,4,4,508,512]]],[7,10,9,512,521,[[232,5,4,512,516],[233,1,1,516,517],[234,1,1,517,518],[235,3,3,518,521]]],[8,110,89,521,610,[[237,4,4,521,525],[239,3,3,525,528],[240,2,2,528,530],[241,3,1,530,531],[243,4,4,531,535],[244,8,6,535,541],[245,9,5,541,546],[246,8,7,546,553],[247,6,5,553,558],[248,12,11,558,569],[249,26,19,569,588],[250,8,8,588,596],[252,2,2,596,598],[253,2,2,598,600],[258,1,1,600,601],[261,5,4,601,605],[262,1,1,605,606],[265,5,3,606,609],[266,1,1,609,610]]],[9,103,85,610,695,[[267,3,2,610,612],[268,4,4,612,616],[269,8,7,616,623],[271,2,2,623,625],[272,5,4,625,629],[273,9,6,629,635],[274,1,1,635,636],[276,3,3,636,639],[277,2,2,639,641],[278,4,3,641,644],[279,1,1,644,645],[280,2,2,645,647],[281,6,5,647,652],[282,4,4,652,656],[283,9,7,656,663],[284,11,9,663,672],[285,10,6,672,678],[286,3,3,678,681],[288,4,3,681,684],[289,2,2,684,686],[290,10,9,686,695]]],[10,83,67,695,762,[[291,3,2,695,697],[293,5,3,697,700],[294,1,1,700,701],[295,2,2,701,703],[296,1,1,703,704],[298,21,17,704,721],[299,3,3,721,724],[302,14,13,724,737],[303,1,1,737,738],[304,3,2,738,740],[306,8,5,740,745],[308,8,6,745,751],[309,1,1,751,752],[310,5,4,752,756],[311,3,3,756,759],[312,4,3,759,762]]],[11,53,47,762,809,[[315,2,1,762,763],[316,4,4,763,767],[318,1,1,767,768],[319,3,3,768,771],[320,1,1,771,772],[321,1,1,772,773],[322,2,2,773,775],[323,9,6,775,781],[324,2,2,781,783],[325,1,1,783,784],[326,2,2,784,786],[327,4,4,786,790],[328,1,1,790,791],[330,2,2,791,793],[332,1,1,793,794],[333,2,1,794,795],[334,2,2,795,797],[335,6,6,797,803],[336,1,1,803,804],[337,6,5,804,809]]],[12,45,39,809,848,[[342,1,1,809,810],[347,1,1,810,811],[348,3,2,811,813],[350,1,1,813,814],[351,1,1,814,815],[353,8,8,815,823],[354,9,6,823,829],[355,1,1,829,830],[356,4,4,830,834],[357,2,1,834,835],[358,6,5,835,840],[359,1,1,840,841],[360,1,1,841,842],[365,2,2,842,844],[366,4,4,844,848]]],[13,112,98,848,946,[[367,4,3,848,851],[368,2,2,851,853],[372,14,11,853,864],[373,7,6,864,870],[374,2,2,870,872],[376,8,8,872,880],[378,1,1,880,881],[379,2,2,881,883],[380,1,1,883,884],[382,1,1,884,885],[383,1,1,885,886],[384,4,3,886,889],[385,1,1,889,890],[386,4,4,890,894],[387,2,2,894,896],[389,12,9,896,905],[390,4,3,905,908],[391,3,2,908,910],[392,2,2,910,912],[393,1,1,912,913],[395,2,1,913,914],[396,5,5,914,919],[397,3,3,919,922],[398,10,9,922,931],[399,4,3,931,934],[400,1,1,934,935],[401,6,6,935,941],[402,5,5,941,946]]],[14,23,19,946,965,[[403,1,1,946,947],[404,2,2,947,949],[405,6,4,949,953],[406,2,1,953,954],[410,2,2,954,956],[411,5,4,956,960],[412,5,5,960,965]]],[15,53,44,965,1009,[[413,2,2,965,967],[416,5,5,967,972],[417,6,5,972,977],[419,5,5,977,982],[420,15,10,982,992],[421,5,5,992,997],[422,6,5,997,1002],[423,4,3,1002,1005],[424,2,2,1005,1007],[425,3,2,1007,1009]]],[16,31,22,1009,1031,[[426,6,4,1009,1013],[427,2,2,1013,1015],[428,11,5,1015,1020],[429,2,2,1020,1022],[432,2,2,1022,1024],[433,6,5,1024,1029],[434,1,1,1029,1030],[435,1,1,1030,1031]]],[17,8,8,1031,1039,[[447,2,2,1031,1033],[452,1,1,1033,1034],[453,1,1,1034,1035],[469,2,2,1035,1037],[471,2,2,1037,1039]]],[18,120,112,1039,1151,[[480,2,2,1039,1041],[484,1,1,1041,1042],[486,1,1,1042,1043],[491,2,2,1043,1045],[495,4,3,1045,1048],[499,2,2,1048,1050],[505,1,1,1050,1051],[506,2,1,1051,1052],[510,2,2,1052,1054],[512,1,1,1054,1055],[521,1,1,1055,1056],[522,4,4,1056,1060],[524,4,3,1060,1063],[526,1,1,1063,1064],[527,2,2,1064,1066],[530,2,2,1066,1068],[533,1,1,1068,1069],[534,1,1,1069,1070],[536,1,1,1070,1071],[537,1,1,1071,1072],[539,1,1,1072,1073],[543,1,1,1073,1074],[544,5,3,1074,1077],[545,4,3,1077,1080],[549,3,3,1080,1083],[550,1,1,1083,1084],[551,2,2,1084,1086],[554,3,3,1086,1089],[555,5,5,1089,1094],[556,1,1,1094,1095],[557,1,1,1095,1096],[558,3,3,1096,1099],[560,1,1,1099,1100],[562,3,3,1100,1103],[564,1,1,1103,1104],[566,3,3,1104,1107],[571,3,3,1107,1110],[572,2,2,1110,1112],[573,5,5,1112,1117],[574,1,1,1117,1118],[575,1,1,1118,1119],[576,2,2,1119,1121],[577,1,1,1121,1122],[579,2,2,1122,1124],[582,6,6,1124,1130],[583,4,4,1130,1134],[584,1,1,1134,1135],[585,1,1,1135,1136],[587,1,1,1136,1137],[588,2,2,1137,1139],[590,1,1,1139,1140],[591,1,1,1140,1141],[593,2,2,1141,1143],[602,1,1,1143,1144],[612,2,2,1144,1146],[613,1,1,1146,1147],[621,3,2,1147,1149],[625,2,1,1149,1150],[626,1,1,1150,1151]]],[19,9,8,1151,1159,[[638,1,1,1151,1152],[641,1,1,1152,1153],[651,1,1,1153,1154],[655,1,1,1154,1155],[656,3,2,1155,1157],[657,2,2,1157,1159]]],[20,2,2,1159,1161,[[662,1,1,1159,1160],[670,1,1,1160,1161]]],[21,1,1,1161,1162,[[676,1,1,1161,1162]]],[22,130,125,1162,1287,[[679,3,3,1162,1165],[680,3,3,1165,1168],[681,7,6,1168,1174],[683,2,2,1174,1176],[684,3,3,1176,1179],[685,3,3,1179,1182],[686,5,5,1182,1187],[687,5,5,1187,1192],[688,6,6,1192,1198],[689,3,3,1198,1201],[690,1,1,1201,1202],[691,2,2,1202,1204],[692,4,4,1204,1208],[695,1,1,1208,1209],[696,3,2,1209,1211],[697,1,1,1211,1212],[700,1,1,1212,1213],[701,1,1,1213,1214],[702,3,3,1214,1217],[703,4,4,1217,1221],[704,2,2,1221,1223],[705,1,1,1223,1224],[706,3,3,1224,1227],[707,2,2,1227,1229],[708,6,6,1229,1235],[710,2,2,1235,1237],[711,5,4,1237,1241],[712,1,1,1241,1242],[714,1,1,1242,1243],[718,2,2,1243,1245],[720,3,3,1245,1248],[721,3,3,1248,1251],[722,1,1,1251,1252],[725,1,1,1252,1253],[727,3,3,1253,1256],[729,6,5,1256,1261],[730,4,4,1261,1265],[731,1,1,1265,1266],[734,2,2,1266,1268],[735,1,1,1268,1269],[736,1,1,1269,1270],[738,1,1,1270,1271],[739,1,1,1271,1272],[740,3,2,1272,1274],[741,6,6,1274,1280],[742,1,1,1280,1281],[743,6,6,1281,1287]]],[23,165,151,1287,1438,[[745,1,1,1287,1288],[746,4,4,1288,1292],[748,4,3,1292,1295],[749,5,5,1295,1300],[750,6,6,1300,1306],[751,4,4,1306,1310],[752,6,6,1310,1316],[753,4,4,1316,1320],[754,1,1,1320,1321],[755,2,2,1321,1323],[756,4,2,1323,1325],[757,2,2,1325,1327],[758,4,4,1327,1331],[759,3,3,1331,1334],[760,2,2,1334,1336],[761,1,1,1336,1337],[762,1,1,1337,1338],[763,3,3,1338,1341],[765,2,2,1341,1343],[766,2,2,1343,1345],[767,8,7,1345,1352],[768,1,1,1352,1353],[769,3,3,1353,1356],[770,11,10,1356,1366],[771,3,3,1366,1369],[772,5,5,1369,1374],[773,5,4,1374,1378],[774,2,2,1378,1380],[775,5,5,1380,1385],[776,3,3,1385,1388],[777,2,1,1388,1389],[778,4,4,1389,1393],[779,1,1,1393,1394],[780,7,6,1394,1400],[781,4,4,1400,1404],[782,3,2,1404,1406],[783,5,4,1406,1410],[784,2,2,1410,1412],[785,5,4,1412,1416],[786,2,2,1416,1418],[787,2,2,1418,1420],[788,5,4,1420,1424],[790,2,2,1424,1426],[792,2,2,1426,1428],[793,1,1,1428,1429],[794,3,3,1429,1432],[795,2,2,1432,1434],[796,6,4,1434,1438]]],[24,11,11,1438,1449,[[797,4,4,1438,1442],[798,1,1,1442,1443],[799,3,3,1443,1446],[800,3,3,1446,1449]]],[25,98,91,1449,1540,[[804,3,3,1449,1452],[808,1,1,1452,1453],[812,3,3,1453,1456],[813,1,1,1456,1457],[814,8,7,1457,1464],[815,3,3,1464,1467],[818,2,2,1467,1469],[819,1,1,1469,1470],[821,3,3,1470,1473],[822,2,1,1473,1474],[823,1,1,1474,1475],[824,1,1,1475,1476],[825,2,2,1476,1478],[826,2,2,1478,1480],[827,4,4,1480,1484],[828,3,3,1484,1487],[829,2,2,1487,1489],[830,1,1,1489,1490],[831,1,1,1490,1491],[832,1,1,1491,1492],[833,3,3,1492,1495],[834,9,7,1495,1502],[835,2,2,1502,1504],[837,6,6,1504,1510],[838,5,5,1510,1515],[839,9,8,1515,1523],[840,4,4,1523,1527],[843,1,1,1527,1528],[845,4,3,1528,1531],[846,4,4,1531,1535],[847,6,5,1535,1540]]],[26,16,15,1540,1555,[[857,1,1,1540,1541],[858,7,7,1541,1548],[859,1,1,1548,1549],[860,4,4,1549,1553],[861,3,2,1553,1555]]],[27,18,17,1555,1572,[[862,2,2,1555,1557],[863,3,2,1557,1559],[865,6,6,1559,1565],[867,1,1,1565,1566],[868,1,1,1566,1567],[870,1,1,1567,1568],[871,3,3,1568,1571],[872,1,1,1571,1572]]],[28,13,12,1572,1584,[[877,10,9,1572,1581],[878,3,3,1581,1584]]],[29,7,7,1584,1591,[[879,1,1,1584,1585],[881,1,1,1585,1586],[885,2,2,1586,1588],[886,1,1,1588,1589],[887,2,2,1589,1591]]],[30,1,1,1591,1592,[[888,1,1,1591,1592]]],[31,1,1,1592,1593,[[889,1,1,1592,1593]]],[32,19,19,1593,1612,[[893,2,2,1593,1595],[894,4,4,1595,1599],[895,2,2,1599,1601],[896,4,4,1601,1605],[897,2,2,1605,1607],[898,4,4,1607,1611],[899,1,1,1611,1612]]],[33,2,2,1612,1614,[[902,2,2,1612,1614]]],[34,6,6,1614,1620,[[904,4,4,1614,1618],[905,2,2,1618,1620]]],[35,7,7,1620,1627,[[906,1,1,1620,1621],[907,3,3,1621,1624],[908,3,3,1624,1627]]],[36,8,7,1627,1634,[[909,5,4,1627,1631],[910,3,3,1631,1634]]],[37,19,19,1634,1653,[[912,1,1,1634,1635],[917,1,1,1635,1636],[918,7,7,1636,1643],[919,1,1,1643,1644],[920,1,1,1644,1645],[921,1,1,1645,1646],[922,4,4,1646,1650],[923,1,1,1650,1651],[924,2,2,1651,1653]]],[38,2,2,1653,1655,[[925,1,1,1653,1654],[926,1,1,1654,1655]]]],[272,352,411,413,461,578,582,583,584,666,675,702,703,756,776,935,975,996,1002,1017,1040,1235,1250,1258,1441,1443,1455,1470,1483,1489,1502,1506,1526,1541,1552,1554,1586,1589,1591,1600,1617,1622,1631,1632,1633,1636,1637,1638,1639,1642,1644,1648,1654,1655,1662,1689,1699,1701,1711,1713,1714,1718,1719,1721,1730,1731,1732,1733,1739,1741,1742,1743,1749,1755,1756,1757,1759,1769,1780,1781,1808,1809,1814,1843,1847,1849,1850,1852,1870,1884,1885,1889,1894,1895,1902,1920,1933,1934,1936,1944,1951,1974,1977,1984,1985,1986,1987,1988,1989,1996,2000,2009,2012,2013,2014,2017,2018,2020,2021,2022,2024,2025,2031,2033,2034,2035,2036,2037,2038,2040,2041,2042,2043,2047,2049,2050,2051,2069,2071,2072,2085,2138,2141,2155,2171,2179,2180,2184,2185,2415,2420,2434,2439,2441,2444,2445,2447,2449,2450,2452,2455,2459,2460,2463,2466,2468,2469,2472,2473,2474,2476,2477,2478,2481,2483,2485,2486,2489,2505,2506,2571,2572,2798,2822,2899,2900,2904,2906,2960,2968,2971,2975,2976,2977,2980,3216,3225,3234,3239,3244,3245,3280,3289,3297,3299,3320,3321,3322,3323,3324,3335,3336,3342,3344,3346,3349,3359,3360,3431,3432,3536,3813,3819,3978,4025,4026,4032,4034,4035,4036,4037,4038,4040,4041,4042,4045,4048,4053,4056,4057,4058,4059,4074,4075,4093,4103,4105,4106,4107,4109,4117,4119,4121,4122,4123,4124,4127,4147,4179,4183,4235,4241,4312,4314,4331,4335,4342,4344,4345,4346,4347,4356,4358,4363,4369,4373,4374,4375,4378,4380,4381,4386,4387,4392,4416,4425,4440,4460,4472,4473,4475,4567,4666,4667,4696,4733,4774,4920,4942,4948,4954,4959,4963,4970,4971,4976,4977,4978,5003,5010,5014,5023,5024,5031,5037,5081,5100,5117,5118,5125,5127,5130,5159,5163,5169,5170,5183,5184,5186,5197,5201,5279,5281,5292,5311,5360,5371,5377,5380,5387,5428,5429,5432,5435,5436,5438,5443,5455,5581,5584,5585,5586,5594,5596,5597,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5620,5621,5643,5644,5648,5675,5692,5711,5735,5740,5744,5764,5766,5767,5779,5794,5801,5802,5808,5813,5815,5817,5827,5829,5831,5839,5853,5857,5861,5862,5896,5898,5899,5907,5909,5912,5920,5921,5929,5934,5938,5939,5954,5956,5957,5959,5965,5969,5979,5980,5981,5983,5989,6003,6005,6007,6011,6012,6013,6015,6016,6018,6022,6035,6071,6085,6097,6111,6114,6195,6289,6290,6292,6478,6492,6493,6494,6495,6497,6498,6500,6501,6503,6504,6525,6549,6551,6552,6557,6586,6612,6625,6632,6634,6636,6637,6641,6695,6696,6697,6698,6699,6700,6701,6702,6724,6783,6786,6787,6788,6789,6790,6791,6792,6796,6797,6799,6802,6803,6829,6840,6849,6850,6852,6871,6912,6925,6926,6973,6979,7000,7003,7013,7020,7056,7062,7064,7070,7076,7080,7085,7104,7106,7111,7117,7133,7137,7142,7143,7160,7183,7194,7199,7201,7253,7263,7264,7269,7300,7301,7314,7329,7330,7350,7376,7379,7388,7390,7393,7403,7404,7407,7408,7415,7429,7435,7441,7442,7443,7449,7450,7452,7456,7457,7459,7460,7466,7478,7479,7480,7482,7487,7489,7490,7491,7492,7493,7496,7499,7500,7501,7507,7510,7511,7523,7525,7528,7532,7534,7535,7536,7538,7539,7540,7541,7542,7546,7547,7548,7549,7553,7561,7564,7568,7569,7575,7581,7584,7590,7645,7648,7681,7689,7818,7910,7912,7919,7920,7942,7982,7984,7999,8018,8026,8034,8075,8076,8077,8079,8099,8112,8113,8115,8116,8117,8118,8134,8144,8159,8175,8176,8178,8187,8188,8190,8191,8203,8204,8224,8250,8252,8253,8266,8276,8314,8315,8317,8351,8369,8371,8401,8406,8412,8413,8419,8432,8440,8441,8444,8451,8452,8457,8458,8465,8471,8478,8479,8480,8481,8482,8483,8484,8485,8486,8494,8513,8514,8519,8520,8550,8551,8566,8569,8576,8630,8646,8650,8663,8664,8694,8695,8696,8701,8702,8707,8708,8709,8713,8756,8757,8818,8824,8825,8878,8885,8894,8909,9001,9015,9018,9019,9021,9023,9026,9028,9029,9035,9036,9037,9038,9041,9044,9045,9051,9058,9071,9074,9156,9157,9158,9160,9161,9163,9164,9166,9167,9174,9178,9181,9182,9217,9220,9225,9285,9298,9299,9304,9305,9362,9363,9365,9371,9378,9380,9408,9416,9418,9423,9450,9460,9463,9464,9484,9508,9523,9583,9616,9644,9645,9646,9704,9723,9724,9727,9748,9762,9802,9811,9842,9843,9846,9847,9848,9849,9853,9858,9878,9900,9917,9929,9930,9935,9960,9978,10050,10060,10103,10143,10149,10158,10167,10168,10171,10186,10195,10200,10216,10225,10233,10241,10244,10248,10453,10668,10675,10686,10764,10776,10822,10828,10840,10844,10846,10848,10856,10863,10869,10870,10872,10873,10884,10885,10904,10914,10918,10920,10921,10929,10936,10937,10939,10951,10956,10982,11008,11145,11164,11173,11178,11181,11182,11203,11204,11205,11222,11229,11287,11288,11303,11306,11307,11309,11311,11314,11315,11316,11321,11328,11329,11334,11337,11338,11344,11353,11356,11400,11401,11402,11404,11405,11407,11410,11411,11440,11462,11470,11488,11519,11532,11544,11545,11569,11580,11594,11608,11612,11620,11638,11643,11661,11662,11666,11668,11669,11672,11673,11676,11677,11687,11697,11700,11715,11719,11733,11753,11757,11827,11830,11840,11845,11847,11854,11858,11862,11864,11879,11881,11883,11888,11889,11890,11892,11893,11894,11918,11925,11933,11963,11969,11971,11973,11974,11978,11979,11994,12007,12008,12009,12016,12019,12029,12097,12098,12100,12108,12110,12114,12216,12237,12238,12239,12248,12251,12253,12254,12261,12263,12265,12304,12306,12365,12372,12373,12378,12381,12383,12395,12397,12400,12401,12424,12425,12427,12492,12493,12494,12496,12498,12499,12500,12502,12504,12505,12506,12509,12521,12533,12535,12541,12543,12563,12577,12579,12580,12583,12589,12590,12612,12654,12662,12672,12695,12707,12713,12718,12724,12734,12744,12753,12755,12758,12759,12761,12770,12773,12810,12811,12823,12826,12828,12830,12834,12836,12869,13130,13152,13266,13295,13703,13713,13756,13767,13963,13965,14003,14032,14084,14087,14145,14161,14165,14210,14235,14308,14319,14376,14378,14428,14583,14602,14607,14609,14614,14626,14628,14634,14649,14672,14675,14723,14725,14762,14777,14801,14810,14835,14881,14896,14897,14898,14907,14930,14935,15002,15003,15004,15030,15062,15066,15107,15108,15113,15114,15133,15165,15175,15184,15198,15202,15225,15228,15230,15244,15273,15277,15279,15307,15341,15345,15376,15436,15439,15445,15461,15464,15468,15470,15472,15475,15478,15484,15499,15500,15501,15511,15539,15543,15607,15619,15626,15630,15631,15649,15655,15685,15691,15699,15731,15745,15789,15799,15802,15821,15823,15862,15866,16112,16187,16189,16212,16307,16320,16385,16389,16702,16800,17103,17211,17226,17242,17276,17277,17397,17532,17626,17657,17658,17664,17688,17689,17691,17712,17714,17719,17720,17721,17722,17752,17764,17774,17778,17779,17784,17790,17799,17813,17816,17818,17819,17826,17831,17838,17842,17845,17848,17852,17856,17863,17864,17872,17874,17894,17895,17900,17904,17910,17920,17930,17934,17948,17960,17995,17999,18004,18029,18056,18090,18097,18099,18108,18121,18124,18125,18126,18141,18150,18162,18169,18175,18178,18206,18207,18222,18223,18226,18236,18243,18245,18272,18277,18282,18291,18298,18303,18308,18341,18421,18427,18485,18486,18502,18513,18525,18526,18540,18605,18644,18649,18658,18677,18678,18680,18689,18695,18700,18701,18702,18705,18719,18756,18760,18779,18787,18842,18852,18864,18866,18869,18872,18874,18877,18880,18884,18894,18899,18900,18907,18915,18916,18919,18964,18976,18978,18996,18997,19037,19038,19049,19072,19079,19081,19084,19089,19103,19108,19110,19111,19115,19116,19131,19135,19142,19152,19158,19160,19164,19172,19174,19175,19176,19177,19182,19190,19204,19230,19240,19263,19265,19276,19277,19303,19304,19309,19310,19316,19322,19335,19341,19346,19376,19399,19408,19418,19421,19447,19448,19456,19458,19486,19497,19506,19511,19516,19517,19518,19531,19535,19536,19553,19579,19580,19581,19583,19584,19588,19589,19590,19595,19596,19608,19609,19612,19619,19623,19625,19629,19633,19636,19651,19660,19667,19670,19689,19692,19693,19698,19705,19724,19752,19769,19773,19799,19802,19809,19811,19820,19839,19848,19849,19851,19852,19855,19856,19876,19878,19886,19892,19896,19899,19931,19932,19933,19937,19946,19947,19967,19970,19971,19973,19976,19983,19998,20001,20025,20030,20031,20034,20061,20069,20122,20126,20128,20172,20182,20207,20257,20270,20282,20291,20301,20304,20311,20317,20321,20328,20343,20368,20399,20402,20423,20426,20430,20507,20508,20513,20604,20656,20672,20675,20699,20717,20718,20725,20726,20727,20729,20731,20739,20740,20742,20834,20840,20867,20929,20930,20936,20956,21005,21031,21074,21075,21090,21097,21102,21107,21111,21120,21124,21154,21157,21176,21182,21196,21215,21242,21251,21257,21258,21282,21283,21286,21292,21297,21310,21311,21326,21343,21362,21367,21371,21374,21379,21387,21409,21410,21415,21420,21424,21431,21433,21434,21437,21439,21440,21441,21447,21452,21455,21461,21475,21566,21610,21618,21622,21638,21639,21646,21652,21658,21664,21673,21675,21679,21985,21994,22003,22004,22007,22008,22012,22014,22029,22050,22051,22068,22069,22082,22088,22103,22104,22106,22128,22137,22139,22141,22142,22145,22147,22178,22186,22209,22230,22235,22239,22247,22313,22316,22317,22327,22328,22329,22330,22337,22338,22345,22346,22359,22369,22401,22472,22479,22483,22505,22509,22523,22539,22581,22588,22599,22603,22604,22606,22611,22613,22621,22623,22625,22633,22640,22641,22650,22651,22653,22664,22678,22725,22730,22753,22756,22758,22761,22781,22784,22798,22813,22814,22815,22829,22832,22840,22842,22852,22853,22854,22857,22859,22869,22910,22967,22982,22983,22984,22987,22988,22996,22998,23015,23025,23038,23047,23048,23049,23051,23068,23070,23080,23093,23112]]],["+",[88,81,[[0,2,2,0,2,[[16,1,1,0,1],[49,1,1,1,2]]],[1,11,11,2,13,[[52,1,1,2,3],[57,4,4,3,7],[60,1,1,7,8],[61,1,1,8,9],[62,1,1,9,10],[73,1,1,10,11],[79,2,2,11,13]]],[2,10,10,13,23,[[93,1,1,13,14],[96,4,4,14,18],[106,1,1,18,19],[108,1,1,19,20],[109,1,1,20,21],[110,1,1,21,22],[112,1,1,22,23]]],[3,4,4,23,27,[[125,1,1,23,24],[127,1,1,24,25],[137,2,2,25,27]]],[4,3,3,27,30,[[156,1,1,27,28],[178,1,1,28,29],[183,1,1,29,30]]],[6,4,4,30,34,[[219,2,2,30,32],[221,1,1,32,33],[230,1,1,33,34]]],[8,6,5,34,39,[[245,2,2,34,36],[249,3,2,36,38],[250,1,1,38,39]]],[9,3,3,39,42,[[268,1,1,39,40],[271,1,1,40,41],[273,1,1,41,42]]],[10,2,2,42,44,[[298,2,2,42,44]]],[11,1,1,44,45,[[337,1,1,44,45]]],[12,1,1,45,46,[[348,1,1,45,46]]],[13,6,6,46,52,[[372,1,1,46,47],[390,1,1,47,48],[401,4,4,48,52]]],[14,4,4,52,56,[[405,1,1,52,53],[411,1,1,53,54],[412,2,2,54,56]]],[15,1,1,56,57,[[422,1,1,56,57]]],[16,9,4,57,61,[[426,2,1,57,58],[428,4,1,58,59],[433,3,2,59,61]]],[18,2,2,61,63,[[566,1,1,61,62],[591,1,1,62,63]]],[21,1,1,63,64,[[676,1,1,63,64]]],[22,4,4,64,68,[[681,1,1,64,65],[685,1,1,65,66],[696,1,1,66,67],[741,1,1,67,68]]],[23,9,9,68,77,[[756,1,1,68,69],[760,1,1,69,70],[767,2,2,70,72],[775,1,1,72,73],[776,1,1,73,74],[787,1,1,74,75],[792,1,1,75,76],[796,1,1,76,77]]],[25,4,3,77,80,[[833,1,1,77,78],[839,2,1,78,79],[847,1,1,79,80]]],[26,1,1,80,81,[[858,1,1,80,81]]]],[411,1526,1600,1718,1721,1739,1741,1809,1852,1885,2180,2415,2420,2822,2899,2900,2904,2906,3244,3289,3335,3359,3431,3978,4048,4356,4363,5014,5581,5740,6790,6791,6849,7085,7435,7443,7535,7536,7564,8079,8134,8187,9001,9026,10241,10675,11314,11700,11971,11973,11978,11979,12100,12238,12254,12263,12577,12724,12759,12826,12834,15345,15823,17626,17722,17790,18004,18869,19263,19346,19497,19516,19698,19752,19998,20122,20301,21258,21433,21673,22003]]],["Ammi",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22106]]],["each",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12695]]],["folk",[2,2,[[0,1,1,0,1,[[32,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[975,17277]]],["men",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4696]]],["nation",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]]],[2085,5644]]],["nations",[14,14,[[4,7,7,0,7,[[154,1,1,0,1],[156,3,3,1,4],[166,1,1,4,5],[180,1,1,5,6],[182,1,1,6,7]]],[12,1,1,7,8,[[353,1,1,7,8]]],[13,2,2,8,10,[[373,1,1,8,9],[379,1,1,9,10]]],[15,2,2,10,12,[[413,1,1,10,11],[421,1,1,11,12]]],[18,2,2,12,14,[[573,1,1,12,13],[583,1,1,13,14]]]],[4963,5010,5023,5031,5292,5648,5711,10844,11344,11462,12304,12533,15470,15685]]],["people",[1758,1576,[[0,30,30,0,30,[[10,1,1,0,1],[13,1,1,1,2],[16,1,1,2,3],[18,1,1,3,4],[22,4,4,4,8],[24,2,2,8,10],[25,2,2,10,12],[26,1,1,12,13],[27,1,1,13,14],[31,1,1,14,15],[33,2,2,15,17],[34,2,2,17,19],[40,2,2,19,21],[41,1,1,21,22],[46,2,2,22,24],[47,2,2,24,26],[48,4,4,26,30]]],[1,163,141,30,171,[[50,4,3,30,33],[52,3,3,33,36],[53,4,4,36,40],[54,12,10,40,50],[55,1,1,50,51],[56,3,3,51,54],[57,13,11,54,65],[58,7,7,65,72],[59,2,2,72,74],[60,3,3,74,77],[61,4,4,77,81],[62,4,3,81,84],[63,5,4,84,88],[64,5,4,88,92],[65,3,3,92,95],[66,8,7,95,102],[67,15,12,102,114],[68,18,15,114,129],[69,4,3,129,132],[71,2,2,132,134],[72,2,2,134,136],[73,4,4,136,140],[80,1,1,140,141],[81,19,17,141,158],[82,12,9,158,167],[83,3,2,167,169],[85,2,2,169,171]]],[2,32,29,171,200,[[93,1,1,171,172],[98,8,6,172,178],[99,1,1,178,179],[105,4,3,179,182],[106,2,2,182,184],[107,1,1,184,185],[108,2,2,185,187],[109,8,8,187,195],[110,3,3,195,198],[112,1,1,198,199],[115,1,1,199,200]]],[3,82,72,200,272,[[121,2,2,200,202],[127,19,18,202,220],[128,2,2,220,222],[129,5,5,222,227],[130,10,9,227,236],[131,2,2,236,238],[132,3,2,238,240],[136,4,4,240,244],[137,13,10,244,254],[138,8,7,254,261],[139,2,2,261,263],[140,3,1,263,264],[141,4,3,264,267],[143,1,1,267,268],[147,2,2,268,270],[148,1,1,270,271],[149,1,1,271,272]]],[4,96,87,272,359,[[153,1,1,272,273],[154,6,6,273,279],[155,4,4,279,283],[156,3,3,283,286],[157,1,1,286,287],[158,1,1,287,288],[159,8,5,288,293],[161,8,7,293,300],[162,2,2,300,302],[165,2,2,302,304],[166,3,2,304,306],[168,1,1,306,307],[169,3,3,307,310],[170,1,1,310,311],[172,8,7,311,318],[173,2,1,318,319],[178,2,2,319,321],[179,16,16,321,337],[180,4,4,337,341],[181,1,1,341,342],[183,2,2,342,344],[184,10,8,344,352],[185,7,7,352,359]]],[5,70,58,359,417,[[187,4,4,359,363],[189,7,5,363,368],[190,7,5,368,373],[191,3,2,373,375],[192,10,6,375,381],[193,6,5,381,386],[194,13,11,386,397],[196,3,3,397,400],[197,2,2,400,402],[200,1,1,402,403],[203,3,3,403,406],[210,11,11,406,417]]],[6,63,59,417,476,[[211,1,1,417,418],[212,4,4,418,422],[213,1,1,422,423],[214,1,1,423,424],[215,6,6,424,430],[217,9,8,430,438],[218,1,1,438,439],[219,14,12,439,451],[220,1,1,451,452],[221,3,3,452,455],[222,1,1,455,456],[224,3,3,456,459],[226,2,2,459,461],[228,4,4,461,465],[230,8,7,465,472],[231,4,4,472,476]]],[7,10,9,476,485,[[232,5,4,476,480],[233,1,1,480,481],[234,1,1,481,482],[235,3,3,482,485]]],[8,104,86,485,571,[[237,4,4,485,489],[239,3,3,489,492],[240,2,2,492,494],[241,3,1,494,495],[243,4,4,495,499],[244,8,6,499,505],[245,7,4,505,509],[246,8,7,509,516],[247,6,5,516,521],[248,12,11,521,532],[249,23,18,532,550],[250,7,7,550,557],[252,2,2,557,559],[253,2,2,559,561],[258,1,1,561,562],[261,5,4,562,566],[262,1,1,566,567],[265,5,3,567,570],[266,1,1,570,571]]],[9,100,82,571,653,[[267,3,2,571,573],[268,3,3,573,576],[269,8,7,576,583],[271,1,1,583,584],[272,5,4,584,588],[273,8,5,588,593],[274,1,1,593,594],[276,3,3,594,597],[277,2,2,597,599],[278,4,3,599,602],[279,1,1,602,603],[280,2,2,603,605],[281,6,5,605,610],[282,4,4,610,614],[283,9,7,614,621],[284,11,9,621,630],[285,10,6,630,636],[286,3,3,636,639],[288,4,3,639,642],[289,2,2,642,644],[290,10,9,644,653]]],[10,81,66,653,719,[[291,3,2,653,655],[293,5,3,655,658],[294,1,1,658,659],[295,2,2,659,661],[296,1,1,661,662],[298,19,16,662,678],[299,3,3,678,681],[302,14,13,681,694],[303,1,1,694,695],[304,3,2,695,697],[306,8,5,697,702],[308,8,6,702,708],[309,1,1,708,709],[310,5,4,709,713],[311,3,3,713,716],[312,4,3,716,719]]],[11,52,47,719,766,[[315,2,1,719,720],[316,4,4,720,724],[318,1,1,724,725],[319,3,3,725,728],[320,1,1,728,729],[321,1,1,729,730],[322,2,2,730,732],[323,9,6,732,738],[324,2,2,738,740],[325,1,1,740,741],[326,2,2,741,743],[327,4,4,743,747],[328,1,1,747,748],[330,2,2,748,750],[332,1,1,750,751],[333,2,1,751,752],[334,2,2,752,754],[335,6,6,754,760],[336,1,1,760,761],[337,5,5,761,766]]],[12,43,38,766,804,[[342,1,1,766,767],[347,1,1,767,768],[348,2,2,768,770],[350,1,1,770,771],[351,1,1,771,772],[353,7,7,772,779],[354,9,6,779,785],[355,1,1,785,786],[356,4,4,786,790],[357,2,1,790,791],[358,6,5,791,796],[359,1,1,796,797],[360,1,1,797,798],[365,2,2,798,800],[366,4,4,800,804]]],[13,104,91,804,895,[[367,4,3,804,807],[368,2,2,807,809],[372,13,10,809,819],[373,6,5,819,824],[374,2,2,824,826],[376,8,8,826,834],[378,1,1,834,835],[379,1,1,835,836],[380,1,1,836,837],[382,1,1,837,838],[383,1,1,838,839],[384,4,3,839,842],[385,1,1,842,843],[386,4,4,843,847],[387,2,2,847,849],[389,12,9,849,858],[390,3,3,858,861],[391,3,2,861,863],[392,2,2,863,865],[393,1,1,865,866],[395,2,1,866,867],[396,5,5,867,872],[397,3,3,872,875],[398,10,9,875,884],[399,4,3,884,887],[400,1,1,887,888],[401,2,2,888,890],[402,5,5,890,895]]],[14,19,16,895,911,[[403,1,1,895,896],[404,2,2,896,898],[405,5,3,898,901],[406,2,1,901,902],[410,2,2,902,904],[411,4,4,904,908],[412,3,3,908,911]]],[15,49,42,911,953,[[413,1,1,911,912],[416,5,5,912,917],[417,6,5,917,922],[419,5,5,922,927],[420,15,10,927,937],[421,4,4,937,941],[422,5,5,941,946],[423,4,3,946,949],[424,2,2,949,951],[425,2,2,951,953]]],[16,22,19,953,972,[[426,4,4,953,957],[427,2,2,957,959],[428,7,4,959,963],[429,2,2,963,965],[432,2,2,965,967],[433,3,3,967,970],[434,1,1,970,971],[435,1,1,971,972]]],[17,8,8,972,980,[[447,2,2,972,974],[452,1,1,974,975],[453,1,1,975,976],[469,2,2,976,978],[471,2,2,978,980]]],[18,116,108,980,1088,[[480,2,2,980,982],[484,1,1,982,983],[486,1,1,983,984],[491,2,2,984,986],[495,4,3,986,989],[499,2,2,989,991],[505,1,1,991,992],[506,2,1,992,993],[510,2,2,993,995],[512,1,1,995,996],[521,1,1,996,997],[522,4,4,997,1001],[524,4,3,1001,1004],[526,1,1,1004,1005],[527,2,2,1005,1007],[530,2,2,1007,1009],[533,1,1,1009,1010],[534,1,1,1010,1011],[536,1,1,1011,1012],[537,1,1,1012,1013],[539,1,1,1013,1014],[543,1,1,1014,1015],[544,5,3,1015,1018],[545,4,3,1018,1021],[549,3,3,1021,1024],[550,1,1,1024,1025],[551,2,2,1025,1027],[554,3,3,1027,1030],[555,5,5,1030,1035],[556,1,1,1035,1036],[557,1,1,1036,1037],[558,3,3,1037,1040],[560,1,1,1040,1041],[562,3,3,1041,1044],[564,1,1,1044,1045],[566,2,2,1045,1047],[571,3,3,1047,1050],[572,2,2,1050,1052],[573,4,4,1052,1056],[574,1,1,1056,1057],[575,1,1,1057,1058],[576,2,2,1058,1060],[577,1,1,1060,1061],[579,2,2,1061,1063],[582,6,6,1063,1069],[583,3,3,1069,1072],[584,1,1,1072,1073],[585,1,1,1073,1074],[587,1,1,1074,1075],[588,2,2,1075,1077],[590,1,1,1077,1078],[593,2,2,1078,1080],[602,1,1,1080,1081],[612,2,2,1081,1083],[613,1,1,1083,1084],[621,3,2,1084,1086],[625,2,1,1086,1087],[626,1,1,1087,1088]]],[19,8,7,1088,1095,[[638,1,1,1088,1089],[641,1,1,1089,1090],[651,1,1,1090,1091],[655,1,1,1091,1092],[656,3,2,1092,1094],[657,1,1,1094,1095]]],[20,2,2,1095,1097,[[662,1,1,1095,1096],[670,1,1,1096,1097]]],[22,126,122,1097,1219,[[679,3,3,1097,1100],[680,3,3,1100,1103],[681,6,5,1103,1108],[683,2,2,1108,1110],[684,3,3,1110,1113],[685,2,2,1113,1115],[686,5,5,1115,1120],[687,5,5,1120,1125],[688,6,6,1125,1131],[689,3,3,1131,1134],[690,1,1,1134,1135],[691,2,2,1135,1137],[692,4,4,1137,1141],[695,1,1,1141,1142],[696,2,2,1142,1144],[697,1,1,1144,1145],[700,1,1,1145,1146],[701,1,1,1146,1147],[702,3,3,1147,1150],[703,4,4,1150,1154],[704,2,2,1154,1156],[705,1,1,1156,1157],[706,3,3,1157,1160],[707,2,2,1160,1162],[708,6,6,1162,1168],[710,2,2,1168,1170],[711,5,4,1170,1174],[712,1,1,1174,1175],[714,1,1,1175,1176],[718,2,2,1176,1178],[720,3,3,1178,1181],[721,3,3,1181,1184],[722,1,1,1184,1185],[725,1,1,1185,1186],[727,3,3,1186,1189],[729,6,5,1189,1194],[730,4,4,1194,1198],[731,1,1,1198,1199],[734,2,2,1199,1201],[735,1,1,1201,1202],[736,1,1,1202,1203],[738,1,1,1203,1204],[739,1,1,1204,1205],[740,3,2,1205,1207],[741,5,5,1207,1212],[742,1,1,1212,1213],[743,6,6,1213,1219]]],[23,156,144,1219,1363,[[745,1,1,1219,1220],[746,4,4,1220,1224],[748,4,3,1224,1227],[749,5,5,1227,1232],[750,6,6,1232,1238],[751,4,4,1238,1242],[752,6,6,1242,1248],[753,4,4,1248,1252],[754,1,1,1252,1253],[755,2,2,1253,1255],[756,3,1,1255,1256],[757,2,2,1256,1258],[758,4,4,1258,1262],[759,3,3,1262,1265],[760,1,1,1265,1266],[761,1,1,1266,1267],[762,1,1,1267,1268],[763,3,3,1268,1271],[765,2,2,1271,1273],[766,2,2,1273,1275],[767,6,6,1275,1281],[768,1,1,1281,1282],[769,3,3,1282,1285],[770,11,10,1285,1295],[771,3,3,1295,1298],[772,5,5,1298,1303],[773,5,4,1303,1307],[774,2,2,1307,1309],[775,4,4,1309,1313],[776,2,2,1313,1315],[777,2,1,1315,1316],[778,4,4,1316,1320],[779,1,1,1320,1321],[780,7,6,1321,1327],[781,4,4,1327,1331],[782,3,2,1331,1333],[783,5,4,1333,1337],[784,2,2,1337,1339],[785,5,4,1339,1343],[786,2,2,1343,1345],[787,1,1,1345,1346],[788,5,4,1346,1350],[790,2,2,1350,1352],[792,1,1,1352,1353],[793,1,1,1353,1354],[794,3,3,1354,1357],[795,2,2,1357,1359],[796,5,4,1359,1363]]],[24,11,11,1363,1374,[[797,4,4,1363,1367],[798,1,1,1367,1368],[799,3,3,1368,1371],[800,3,3,1371,1374]]],[25,94,89,1374,1463,[[804,3,3,1374,1377],[808,1,1,1377,1378],[812,3,3,1378,1381],[813,1,1,1381,1382],[814,8,7,1382,1389],[815,3,3,1389,1392],[818,2,2,1392,1394],[819,1,1,1394,1395],[821,3,3,1395,1398],[822,2,1,1398,1399],[823,1,1,1399,1400],[824,1,1,1400,1401],[825,2,2,1401,1403],[826,2,2,1403,1405],[827,4,4,1405,1409],[828,3,3,1409,1412],[829,2,2,1412,1414],[830,1,1,1414,1415],[831,1,1,1415,1416],[832,1,1,1416,1417],[833,2,2,1417,1419],[834,9,7,1419,1426],[835,2,2,1426,1428],[837,6,6,1428,1434],[838,5,5,1434,1439],[839,7,7,1439,1446],[840,4,4,1446,1450],[843,1,1,1450,1451],[845,4,3,1451,1454],[846,4,4,1454,1458],[847,5,5,1458,1463]]],[26,15,14,1463,1477,[[857,1,1,1463,1464],[858,6,6,1464,1470],[859,1,1,1470,1471],[860,4,4,1471,1475],[861,3,2,1475,1477]]],[27,17,16,1477,1493,[[862,2,2,1477,1479],[863,2,1,1479,1480],[865,6,6,1480,1486],[867,1,1,1486,1487],[868,1,1,1487,1488],[870,1,1,1488,1489],[871,3,3,1489,1492],[872,1,1,1492,1493]]],[28,13,12,1493,1505,[[877,10,9,1493,1502],[878,3,3,1502,1505]]],[29,7,7,1505,1512,[[879,1,1,1505,1506],[881,1,1,1506,1507],[885,2,2,1507,1509],[886,1,1,1509,1510],[887,2,2,1510,1512]]],[30,1,1,1512,1513,[[888,1,1,1512,1513]]],[31,1,1,1513,1514,[[889,1,1,1513,1514]]],[32,19,19,1514,1533,[[893,2,2,1514,1516],[894,4,4,1516,1520],[895,2,2,1520,1522],[896,4,4,1522,1526],[897,2,2,1526,1528],[898,4,4,1528,1532],[899,1,1,1532,1533]]],[33,2,2,1533,1535,[[902,2,2,1533,1535]]],[34,6,6,1535,1541,[[904,4,4,1535,1539],[905,2,2,1539,1541]]],[35,7,7,1541,1548,[[906,1,1,1541,1542],[907,3,3,1542,1545],[908,3,3,1545,1548]]],[36,8,7,1548,1555,[[909,5,4,1548,1552],[910,3,3,1552,1555]]],[37,19,19,1555,1574,[[912,1,1,1555,1556],[917,1,1,1556,1557],[918,7,7,1557,1564],[919,1,1,1564,1565],[920,1,1,1565,1566],[921,1,1,1566,1567],[922,4,4,1567,1571],[923,1,1,1571,1572],[924,2,2,1572,1574]]],[38,2,2,1574,1576,[[925,1,1,1574,1575],[926,1,1,1575,1576]]]],[272,352,413,461,578,582,583,584,666,675,702,703,756,776,935,996,1002,1017,1040,1235,1250,1258,1441,1443,1455,1470,1483,1489,1502,1506,1541,1552,1554,1586,1589,1591,1617,1622,1631,1632,1633,1636,1637,1638,1639,1642,1644,1648,1654,1655,1662,1689,1699,1701,1711,1713,1714,1718,1719,1730,1731,1732,1733,1739,1742,1743,1749,1755,1756,1757,1759,1769,1780,1781,1808,1809,1814,1843,1847,1849,1850,1870,1884,1889,1894,1895,1902,1920,1933,1934,1936,1944,1951,1974,1977,1984,1985,1986,1987,1988,1989,1996,2000,2009,2012,2013,2014,2017,2018,2020,2021,2022,2024,2025,2031,2033,2034,2035,2036,2037,2038,2040,2041,2042,2043,2047,2049,2050,2051,2069,2071,2072,2138,2141,2155,2171,2179,2180,2184,2185,2434,2439,2441,2444,2445,2447,2449,2450,2452,2455,2459,2460,2463,2466,2468,2469,2472,2473,2474,2476,2477,2478,2481,2483,2485,2486,2489,2505,2506,2571,2572,2798,2960,2968,2971,2975,2976,2977,2980,3216,3225,3234,3239,3245,3280,3297,3299,3320,3321,3322,3323,3324,3336,3342,3344,3346,3349,3360,3432,3536,3813,3819,4025,4026,4032,4034,4035,4036,4037,4038,4040,4041,4042,4045,4048,4053,4056,4057,4058,4059,4074,4075,4093,4103,4105,4106,4107,4109,4117,4119,4121,4122,4123,4124,4127,4147,4179,4183,4235,4241,4312,4314,4331,4335,4342,4344,4345,4346,4347,4358,4369,4373,4374,4375,4378,4380,4381,4386,4387,4392,4416,4425,4440,4460,4472,4473,4475,4567,4666,4667,4733,4774,4920,4942,4948,4954,4959,4970,4971,4976,4977,4978,5003,5010,5024,5037,5081,5100,5117,5118,5125,5127,5130,5159,5163,5169,5170,5183,5184,5186,5197,5201,5279,5281,5292,5311,5360,5371,5377,5380,5387,5428,5429,5432,5435,5436,5438,5443,5455,5584,5585,5586,5594,5596,5597,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5620,5621,5643,5675,5692,5735,5744,5764,5766,5767,5779,5794,5801,5802,5808,5813,5815,5817,5827,5829,5831,5839,5853,5857,5861,5862,5896,5898,5899,5907,5909,5912,5920,5921,5929,5934,5938,5939,5954,5956,5957,5959,5965,5969,5979,5980,5981,5983,5989,6003,6005,6007,6011,6012,6013,6015,6016,6018,6022,6035,6071,6085,6097,6111,6114,6195,6289,6290,6292,6478,6492,6493,6494,6495,6497,6498,6500,6501,6503,6504,6525,6549,6551,6552,6557,6586,6612,6625,6632,6634,6636,6637,6641,6695,6696,6697,6698,6699,6700,6701,6702,6724,6783,6786,6787,6788,6789,6790,6792,6796,6797,6799,6802,6803,6829,6840,6850,6852,6871,6912,6925,6926,6973,6979,7000,7003,7013,7020,7056,7062,7064,7070,7076,7080,7085,7104,7106,7111,7117,7133,7137,7142,7143,7160,7183,7194,7199,7201,7253,7263,7264,7269,7300,7301,7314,7329,7330,7350,7376,7379,7388,7390,7393,7403,7404,7407,7408,7415,7429,7441,7442,7443,7449,7450,7452,7456,7457,7459,7460,7466,7478,7479,7480,7482,7487,7489,7490,7491,7492,7493,7496,7499,7500,7501,7507,7510,7511,7523,7525,7528,7532,7534,7536,7538,7539,7540,7541,7542,7546,7547,7548,7549,7553,7561,7568,7569,7575,7581,7584,7590,7645,7648,7681,7689,7818,7910,7912,7919,7920,7942,7982,7984,7999,8018,8026,8034,8075,8076,8077,8099,8112,8113,8115,8116,8117,8118,8144,8159,8175,8176,8178,8188,8190,8191,8203,8204,8224,8250,8252,8253,8266,8276,8314,8315,8317,8351,8369,8371,8401,8406,8412,8413,8419,8432,8440,8441,8444,8451,8452,8457,8458,8465,8471,8478,8479,8480,8481,8482,8483,8484,8485,8486,8494,8513,8514,8519,8520,8550,8551,8566,8569,8576,8630,8646,8650,8663,8664,8694,8695,8696,8701,8702,8707,8708,8709,8713,8756,8757,8818,8824,8825,8878,8885,8894,8909,9001,9015,9018,9019,9021,9023,9028,9029,9035,9036,9037,9038,9041,9044,9045,9051,9058,9071,9074,9156,9157,9158,9160,9161,9163,9164,9166,9167,9174,9178,9181,9182,9217,9220,9225,9285,9298,9299,9304,9305,9362,9363,9365,9371,9378,9380,9408,9416,9418,9423,9450,9460,9463,9464,9484,9508,9523,9583,9616,9644,9645,9646,9704,9723,9724,9727,9748,9762,9802,9811,9842,9843,9846,9847,9848,9849,9853,9858,9878,9900,9917,9929,9930,9935,9960,9978,10050,10060,10103,10143,10149,10158,10167,10168,10171,10186,10195,10200,10216,10225,10233,10241,10244,10248,10453,10668,10675,10686,10764,10776,10822,10828,10840,10846,10848,10856,10863,10869,10870,10872,10873,10884,10885,10904,10914,10918,10920,10921,10929,10936,10937,10939,10951,10956,10982,11008,11145,11164,11173,11178,11181,11182,11203,11204,11205,11222,11229,11287,11288,11303,11306,11307,11309,11311,11315,11316,11321,11328,11329,11334,11337,11338,11353,11356,11400,11401,11402,11404,11405,11407,11410,11411,11440,11470,11488,11519,11532,11544,11545,11569,11580,11594,11608,11612,11620,11638,11643,11661,11662,11666,11668,11669,11672,11673,11676,11677,11687,11697,11700,11715,11719,11733,11753,11757,11827,11830,11840,11845,11847,11854,11858,11862,11864,11879,11881,11883,11888,11889,11890,11892,11893,11894,11918,11925,11933,11963,11969,11974,11994,12007,12008,12009,12016,12019,12029,12097,12098,12108,12110,12114,12216,12237,12238,12239,12248,12251,12253,12261,12265,12306,12365,12372,12373,12378,12381,12383,12395,12397,12400,12401,12424,12425,12427,12492,12493,12494,12496,12498,12499,12500,12502,12504,12505,12506,12509,12521,12535,12541,12543,12563,12577,12579,12580,12583,12589,12590,12612,12654,12662,12672,12695,12707,12713,12718,12724,12734,12744,12753,12755,12758,12761,12770,12773,12810,12811,12823,12828,12830,12836,12869,13130,13152,13266,13295,13703,13713,13756,13767,13963,13965,14003,14032,14084,14087,14145,14161,14165,14210,14235,14308,14319,14376,14378,14428,14583,14602,14607,14609,14614,14626,14628,14634,14649,14672,14675,14723,14725,14762,14777,14801,14810,14835,14881,14896,14897,14898,14907,14930,14935,15002,15003,15004,15030,15062,15066,15107,15108,15113,15114,15133,15165,15175,15184,15198,15202,15225,15228,15230,15244,15273,15277,15279,15307,15341,15376,15436,15439,15445,15461,15464,15468,15472,15475,15478,15484,15499,15500,15501,15511,15539,15543,15607,15619,15626,15630,15631,15649,15655,15691,15699,15731,15745,15789,15799,15802,15821,15862,15866,16112,16187,16189,16212,16307,16320,16385,16389,16702,16800,17103,17211,17226,17242,17276,17397,17532,17657,17658,17664,17688,17689,17691,17712,17714,17719,17720,17721,17752,17764,17774,17778,17779,17784,17799,17813,17816,17818,17819,17826,17831,17838,17842,17845,17848,17852,17856,17863,17864,17872,17874,17894,17895,17900,17904,17910,17920,17930,17934,17948,17960,17995,17999,18004,18029,18056,18090,18097,18099,18108,18121,18124,18125,18126,18141,18150,18162,18169,18175,18178,18206,18207,18222,18223,18226,18236,18243,18245,18272,18277,18282,18291,18298,18303,18308,18341,18421,18427,18485,18486,18502,18513,18525,18526,18540,18605,18644,18649,18658,18677,18678,18680,18689,18695,18700,18701,18702,18705,18719,18756,18760,18779,18787,18842,18852,18864,18866,18872,18874,18877,18880,18884,18894,18899,18900,18907,18915,18916,18919,18964,18976,18978,18996,18997,19037,19038,19049,19072,19079,19081,19084,19089,19103,19108,19110,19111,19115,19116,19131,19135,19142,19152,19158,19160,19164,19172,19174,19175,19176,19177,19182,19190,19204,19230,19240,19265,19276,19277,19303,19304,19309,19310,19316,19322,19335,19341,19376,19399,19408,19418,19421,19447,19448,19456,19458,19486,19506,19511,19516,19517,19518,19531,19535,19536,19553,19579,19580,19581,19583,19584,19588,19589,19590,19595,19596,19608,19609,19612,19619,19623,19625,19629,19633,19636,19651,19660,19667,19670,19689,19692,19693,19705,19724,19769,19773,19799,19802,19809,19811,19820,19839,19848,19849,19851,19852,19855,19856,19876,19878,19886,19892,19896,19899,19931,19932,19933,19937,19946,19947,19967,19970,19971,19973,19976,19983,20001,20025,20030,20031,20034,20061,20069,20126,20128,20172,20182,20207,20257,20270,20282,20291,20301,20304,20311,20317,20321,20328,20343,20368,20399,20402,20423,20426,20430,20507,20508,20513,20604,20656,20672,20675,20699,20717,20718,20725,20726,20727,20729,20731,20739,20740,20742,20834,20840,20867,20929,20930,20936,20956,21005,21031,21074,21075,21090,21097,21102,21107,21111,21120,21124,21154,21157,21176,21182,21196,21215,21242,21251,21257,21282,21283,21286,21292,21297,21310,21311,21326,21343,21362,21367,21371,21374,21379,21387,21409,21410,21415,21420,21424,21431,21434,21437,21439,21440,21441,21447,21452,21455,21461,21475,21566,21610,21618,21622,21638,21639,21646,21652,21658,21664,21673,21675,21679,21985,21994,22004,22007,22008,22012,22014,22029,22050,22051,22068,22069,22082,22088,22103,22104,22128,22137,22139,22141,22142,22145,22147,22178,22186,22209,22230,22235,22239,22247,22313,22316,22317,22327,22328,22329,22330,22337,22338,22345,22346,22359,22369,22401,22472,22479,22483,22505,22509,22523,22539,22581,22588,22599,22603,22604,22606,22611,22613,22621,22623,22625,22633,22640,22641,22650,22651,22653,22664,22678,22725,22730,22753,22756,22758,22761,22781,22784,22798,22813,22814,22815,22829,22832,22840,22842,22852,22853,22854,22857,22859,22869,22910,22967,22982,22983,22984,22987,22988,22996,22998,23015,23025,23038,23047,23048,23049,23051,23068,23070,23080,23093,23112]]],["people's",[1,1,[[2,1,1,0,1,[[98,1,1,0,1]]]],[2968]]]]},{"k":"H5972","v":[["*",[14,13,[[14,4,4,0,4,[[407,1,1,0,1],[408,1,1,1,2],[409,2,2,2,4]]],[26,10,9,4,13,[[851,1,1,4,5],[852,4,3,5,8],[853,1,1,8,9],[854,1,1,9,10],[855,1,1,10,11],[856,2,2,11,13]]]],[12146,12163,12186,12198,21802,21811,21814,21836,21838,21893,21930,21947,21960]]],["+",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12146]]],["people",[13,12,[[14,3,3,0,3,[[408,1,1,0,1],[409,2,2,1,3]]],[26,10,9,3,12,[[851,1,1,3,4],[852,4,3,4,7],[853,1,1,7,8],[854,1,1,8,9],[855,1,1,9,10],[856,2,2,10,12]]]],[12163,12186,12198,21802,21811,21814,21836,21838,21893,21930,21947,21960]]]]},{"k":"H5973","v":[["*",[1060,929,[[0,92,84,0,84,[[2,2,2,0,2],[12,2,2,2,4],[17,3,3,4,7],[18,5,5,7,12],[19,2,2,12,14],[20,5,3,14,17],[21,1,1,17,18],[22,2,1,18,19],[23,5,5,19,24],[24,1,1,24,25],[25,7,5,25,30],[26,1,1,30,31],[27,2,2,31,33],[28,8,7,33,40],[29,3,3,40,43],[30,11,10,43,53],[31,8,7,53,60],[32,2,2,60,62],[34,4,4,62,66],[38,4,4,66,70],[39,1,1,70,71],[40,1,1,71,72],[41,1,1,72,73],[42,1,1,73,74],[43,3,3,74,77],[45,1,1,77,78],[46,2,2,78,80],[47,3,3,80,83],[49,1,1,83,84]]],[1,49,46,84,130,[[52,1,1,84,85],[53,3,2,85,87],[57,3,3,87,90],[58,1,1,90,91],[59,5,5,91,96],[60,1,1,96,97],[62,1,1,97,98],[63,1,1,98,99],[66,2,2,99,101],[67,4,4,101,105],[68,2,2,105,107],[69,3,2,107,109],[70,2,2,109,111],[71,8,7,111,118],[72,2,2,118,120],[73,3,3,120,123],[82,3,3,123,126],[83,4,4,126,130]]],[2,27,20,130,150,[[104,1,1,130,131],[114,19,12,131,143],[115,7,7,143,150]]],[3,20,18,150,168,[[126,2,1,150,151],[127,2,2,151,153],[129,1,1,153,154],[130,2,2,154,156],[136,1,1,156,157],[138,11,10,157,167],[139,1,1,167,168]]],[4,65,57,168,225,[[154,1,1,168,169],[156,1,1,169,170],[157,2,2,170,172],[160,1,1,172,173],[161,4,4,173,177],[162,2,2,177,179],[164,1,1,179,180],[166,2,2,180,182],[167,6,5,182,187],[169,1,1,187,188],[170,4,4,188,192],[172,6,4,192,196],[174,9,7,196,203],[175,3,3,203,206],[179,4,4,206,210],[181,6,5,210,215],[183,6,5,215,220],[184,5,4,220,224],[185,1,1,224,225]]],[5,41,35,225,260,[[187,5,3,225,228],[188,3,2,228,230],[189,2,1,230,231],[190,2,2,231,233],[193,3,3,233,236],[194,1,1,236,237],[195,2,1,237,238],[196,9,8,238,246],[197,4,4,246,250],[199,1,1,250,251],[200,2,2,251,253],[205,2,2,253,255],[206,1,1,255,256],[208,3,3,256,259],[210,1,1,259,260]]],[6,58,52,260,312,[[211,2,2,260,262],[212,1,1,262,263],[213,1,1,263,264],[214,6,4,264,268],[215,2,2,268,270],[216,4,4,270,274],[217,1,1,274,275],[218,3,2,275,277],[219,9,7,277,284],[221,7,7,284,291],[222,1,1,291,292],[223,1,1,292,293],[225,1,1,293,294],[226,3,3,294,297],[228,6,6,297,303],[229,5,4,303,307],[230,5,5,307,312]]],[7,15,12,312,324,[[232,6,4,312,316],[233,8,7,316,323],[235,1,1,323,324]]],[8,93,82,324,406,[[236,4,4,324,328],[237,5,4,328,332],[238,1,1,332,333],[239,1,1,333,334],[240,1,1,334,335],[244,5,5,335,340],[245,7,6,340,346],[247,1,1,346,347],[248,5,4,347,351],[249,7,5,351,356],[250,5,4,356,360],[251,3,3,360,363],[252,7,7,363,370],[253,5,4,370,374],[255,13,12,374,386],[257,5,5,386,391],[258,1,1,391,392],[260,3,3,392,395],[261,1,1,395,396],[262,3,3,396,399],[263,3,2,399,401],[264,4,3,401,404],[265,2,1,404,405],[266,1,1,405,406]]],[9,77,67,406,473,[[267,2,2,406,408],[268,4,3,408,411],[269,9,7,411,418],[271,1,1,418,419],[272,3,3,419,422],[273,3,3,422,425],[274,1,1,425,426],[275,3,3,426,429],[276,4,3,429,432],[277,4,4,432,436],[278,4,3,436,439],[279,7,7,439,446],[280,1,1,446,447],[281,7,6,447,453],[283,1,1,453,454],[284,1,1,454,455],[285,8,7,455,462],[286,1,1,462,463],[287,5,4,463,467],[288,4,2,467,469],[289,2,2,469,471],[290,2,2,471,473]]],[10,62,54,473,527,[[291,10,8,473,481],[292,3,3,481,484],[293,3,2,484,486],[295,1,1,486,487],[298,10,8,487,495],[299,1,1,495,496],[300,3,3,496,499],[301,8,8,499,507],[302,3,3,507,510],[303,1,1,510,511],[304,4,3,511,514],[305,5,4,514,518],[306,3,3,518,521],[307,1,1,521,522],[310,1,1,522,523],[312,5,4,523,527]]],[11,38,31,527,558,[[314,1,1,527,528],[318,1,1,528,529],[320,4,3,529,532],[321,1,1,532,533],[322,3,3,533,536],[323,1,1,536,537],[324,1,1,537,538],[325,4,3,538,541],[326,8,6,541,547],[327,6,4,547,551],[328,2,1,551,552],[330,3,3,552,555],[332,1,1,555,556],[333,1,1,556,557],[336,1,1,557,558]]],[12,55,53,558,611,[[341,2,2,558,560],[342,3,3,560,563],[345,1,1,563,564],[346,3,3,564,567],[348,4,3,567,570],[349,6,6,570,576],[350,3,3,576,579],[352,1,1,579,580],[353,2,2,580,582],[354,4,4,582,586],[355,1,1,586,587],[356,6,5,587,592],[357,1,1,592,593],[358,2,2,593,595],[359,5,5,595,600],[361,1,1,600,601],[362,2,2,601,603],[363,1,1,603,604],[364,1,1,604,605],[365,5,5,605,610],[366,1,1,610,611]]],[13,113,95,611,706,[[367,6,6,611,617],[368,5,4,617,621],[371,2,2,621,623],[372,4,3,623,626],[373,1,1,626,627],[374,1,1,627,628],[375,5,4,628,632],[376,1,1,632,633],[377,2,2,633,635],[378,3,3,635,638],[379,4,3,638,641],[380,4,3,641,644],[381,4,2,644,646],[382,3,3,646,649],[383,10,9,649,658],[384,3,2,658,660],[385,4,4,660,664],[386,8,7,664,671],[387,6,4,671,675],[388,2,2,675,677],[389,3,3,677,680],[390,4,3,680,683],[391,6,5,683,688],[392,5,4,688,692],[393,2,2,692,694],[394,2,2,694,696],[395,1,1,696,697],[398,8,5,697,702],[399,1,1,702,703],[401,1,1,703,704],[402,2,2,704,706]]],[14,24,23,706,729,[[403,3,3,706,709],[404,1,1,709,710],[406,1,1,710,711],[409,1,1,711,712],[410,16,15,712,727],[412,2,2,727,729]]],[15,13,12,729,741,[[414,3,2,729,731],[416,1,1,731,732],[417,1,1,732,733],[419,1,1,733,734],[421,3,3,734,737],[422,1,1,737,738],[424,2,2,738,740],[425,1,1,740,741]]],[16,11,9,741,750,[[427,3,2,741,743],[430,3,2,743,745],[431,2,2,745,747],[432,2,2,747,749],[434,1,1,749,750]]],[17,48,46,750,796,[[436,2,2,750,752],[438,2,2,752,754],[440,1,1,754,755],[444,4,4,755,759],[445,3,2,759,761],[446,1,1,761,762],[447,3,3,762,765],[449,1,1,765,766],[450,2,2,766,768],[451,1,1,768,769],[452,1,1,769,770],[455,1,1,770,771],[456,1,1,771,772],[457,2,2,772,774],[458,2,2,774,776],[460,2,2,776,778],[462,2,2,778,780],[463,1,1,780,781],[464,1,1,781,782],[465,1,1,782,783],[466,1,1,783,784],[468,1,1,784,785],[469,4,3,785,788],[470,1,1,788,789],[471,1,1,789,790],[472,1,1,790,791],[475,2,2,791,793],[476,1,1,793,794],[477,2,2,794,796]]],[18,65,54,796,850,[[495,5,3,796,799],[503,5,3,799,802],[505,4,2,802,804],[513,1,1,804,805],[516,1,1,805,806],[519,1,1,806,807],[523,2,2,807,809],[527,2,1,809,810],[543,2,1,810,811],[546,1,1,811,812],[549,1,1,812,813],[550,4,4,813,817],[554,1,1,817,818],[555,1,1,818,819],[558,1,1,819,820],[560,2,2,820,822],[562,1,1,822,823],[563,1,1,823,824],[564,1,1,824,825],[565,1,1,825,826],[566,4,4,826,830],[568,1,1,830,831],[571,2,1,831,832],[581,1,1,832,833],[583,2,2,833,835],[590,2,1,835,836],[592,1,1,836,837],[596,2,2,837,839],[597,3,3,839,842],[598,1,1,842,843],[603,2,2,843,845],[607,3,2,845,847],[616,1,1,847,848],[620,1,1,848,849],[625,1,1,849,850]]],[19,8,8,850,858,[[630,1,1,850,851],[637,1,1,851,852],[645,1,1,852,853],[650,1,1,853,854],[651,1,1,854,855],[656,1,1,855,856],[657,1,1,856,857],[658,1,1,857,858]]],[20,8,7,858,865,[[659,2,2,858,860],[660,2,1,860,861],[662,1,1,861,862],[664,1,1,862,863],[665,1,1,863,864],[667,1,1,864,865]]],[21,9,5,865,870,[[671,1,1,865,866],[674,4,2,866,868],[675,3,1,868,869],[676,1,1,869,870]]],[22,15,13,870,883,[[681,1,1,870,871],[685,1,1,871,872],[686,2,2,872,874],[689,2,1,874,875],[703,1,1,875,876],[706,2,2,876,878],[707,1,1,878,879],[712,2,1,879,880],[714,1,1,880,881],[716,1,1,881,882],[719,1,1,882,883]]],[23,7,6,883,889,[[750,2,1,883,884],[776,1,1,884,885],[778,1,1,885,886],[783,1,1,886,887],[785,1,1,887,888],[795,1,1,888,889]]],[26,17,15,889,904,[[850,1,1,889,890],[857,1,1,890,891],[858,1,1,891,892],[859,7,7,892,899],[860,7,5,899,904]]],[27,14,11,904,915,[[863,2,1,904,905],[865,4,3,905,908],[866,1,1,908,909],[870,1,1,909,910],[872,2,1,910,911],[873,3,3,911,914],[875,1,1,914,915]]],[28,2,2,915,917,[[877,1,1,915,916],[878,1,1,916,917]]],[29,3,3,917,920,[[880,1,1,917,918],[882,1,1,918,919],[884,1,1,919,920]]],[31,1,1,920,921,[[889,1,1,920,921]]],[32,4,3,921,924,[[894,1,1,921,922],[898,3,2,922,924]]],[33,1,1,924,925,[[902,1,1,924,925]]],[35,1,1,925,926,[[906,1,1,925,926]]],[37,4,3,926,929,[[918,2,1,926,927],[920,1,1,927,928],[924,1,1,928,929]]]],[61,67,319,332,440,447,449,476,487,489,491,492,504,508,523,535,536,552,575,603,605,618,645,649,669,695,708,712,720,721,771,788,793,801,804,809,814,820,822,825,838,845,846,875,876,878,896,897,902,904,905,911,923,932,934,937,940,952,953,956,961,975,1013,1014,1015,1017,1156,1159,1161,1163,1186,1227,1290,1324,1353,1356,1357,1390,1449,1450,1452,1463,1472,1515,1591,1613,1616,1722,1739,1740,1775,1783,1787,1795,1801,1803,1814,1886,1895,1985,1991,2005,2011,2017,2018,2035,2050,2070,2073,2080,2091,2125,2127,2128,2129,2132,2138,2143,2145,2149,2179,2185,2191,2482,2485,2489,2499,2501,2506,2524,3201,3475,3492,3504,3505,3508,3509,3510,3514,3516,3519,3522,3523,3545,3547,3548,3551,3552,3564,3565,4020,4040,4041,4106,4132,4151,4314,4383,4384,4387,4388,4389,4394,4396,4397,4410,4414,4437,4945,5027,5055,5057,5142,5164,5166,5167,5181,5195,5198,5263,5317,5319,5328,5331,5332,5335,5337,5383,5385,5397,5400,5403,5428,5431,5439,5447,5472,5474,5492,5493,5495,5498,5499,5515,5516,5521,5605,5606,5607,5608,5691,5694,5696,5697,5704,5734,5736,5744,5751,5755,5770,5772,5782,5783,5831,5856,5860,5868,5881,5883,5900,5913,5918,5978,5988,6000,6003,6039,6071,6079,6093,6095,6098,6100,6102,6107,6111,6112,6114,6128,6162,6194,6195,6367,6368,6376,6433,6434,6440,6503,6531,6533,6563,6595,6605,6607,6608,6609,6638,6643,6666,6667,6670,6671,6698,6729,6754,6760,6770,6773,6788,6791,6798,6802,6832,6833,6834,6837,6840,6849,6854,6870,6893,6932,6952,6962,6979,6996,7000,7012,7015,7018,7021,7027,7034,7035,7043,7068,7072,7074,7077,7082,7134,7135,7138,7149,7153,7155,7157,7161,7168,7170,7171,7200,7229,7236,7238,7239,7248,7261,7266,7273,7295,7301,7326,7396,7410,7414,7415,7416,7420,7424,7425,7427,7429,7444,7484,7487,7490,7500,7501,7510,7515,7525,7529,7553,7566,7585,7586,7590,7607,7609,7613,7637,7641,7644,7650,7651,7655,7660,7688,7689,7690,7704,7735,7737,7738,7739,7743,7744,7745,7746,7758,7763,7764,7765,7789,7791,7795,7804,7810,7829,7868,7877,7886,7911,7932,7933,7935,7950,7961,7969,7971,7976,8000,8014,8024,8046,8052,8054,8055,8089,8093,8096,8098,8103,8107,8109,8142,8161,8164,8179,8183,8189,8195,8220,8228,8230,8234,8242,8253,8257,8260,8263,8270,8272,8289,8297,8310,8328,8333,8337,8339,8340,8341,8343,8373,8408,8409,8417,8420,8424,8425,8473,8480,8527,8528,8536,8544,8548,8551,8552,8562,8584,8595,8598,8599,8628,8629,8658,8662,8708,8713,8724,8725,8726,8731,8738,8739,8750,8754,8778,8780,8803,8822,8833,8884,8994,9002,9003,9006,9042,9046,9047,9050,9078,9081,9101,9105,9112,9117,9119,9126,9129,9130,9146,9151,9166,9172,9175,9192,9223,9238,9249,9252,9257,9263,9273,9289,9300,9311,9337,9434,9520,9524,9529,9530,9560,9707,9748,9751,9755,9784,9808,9816,9828,9838,9871,9880,9883,9884,9906,9911,9912,9916,9918,9925,9932,9947,9950,9963,9983,10031,10050,10051,10119,10137,10208,10395,10408,10438,10447,10448,10607,10635,10640,10653,10682,10683,10686,10738,10739,10741,10747,10754,10759,10761,10762,10774,10809,10861,10862,10865,10871,10874,10876,10901,10909,10913,10921,10924,10926,10930,10949,10954,10971,10975,10979,10980,10982,11020,11053,11054,11093,11141,11144,11145,11155,11163,11164,11194,11195,11197,11202,11203,11205,11208,11214,11218,11219,11225,11278,11280,11289,11290,11293,11332,11364,11365,11385,11389,11395,11410,11415,11418,11438,11440,11453,11456,11461,11465,11476,11486,11488,11492,11499,11518,11519,11522,11526,11531,11532,11533,11537,11538,11539,11540,11541,11544,11545,11579,11582,11583,11587,11588,11593,11604,11616,11622,11623,11624,11625,11627,11633,11643,11651,11652,11657,11659,11664,11681,11693,11699,11711,11717,11723,11728,11732,11734,11749,11751,11755,11760,11764,11774,11791,11801,11878,11882,11883,11884,11908,11928,11987,12003,12016,12019,12020,12027,12029,12112,12201,12202,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12225,12234,12256,12266,12316,12319,12372,12400,12427,12519,12524,12528,12587,12625,12664,12696,12730,12737,12791,12793,12796,12807,12808,12815,12859,12873,12881,12918,12919,12974,13053,13054,13065,13077,13099,13103,13113,13130,13141,13144,13184,13212,13214,13259,13263,13337,13363,13393,13410,13426,13433,13463,13465,13492,13494,13508,13550,13558,13593,13679,13691,13692,13716,13724,13740,13787,13866,13879,13892,13930,13933,14141,14143,14144,14277,14278,14282,14300,14302,14447,14524,14563,14621,14625,14686,14888,14963,15005,15025,15042,15043,15045,15099,15150,15219,15248,15249,15275,15301,15305,15312,15347,15350,15359,15364,15410,15447,15596,15656,15657,15821,15843,15963,16022,16078,16079,16080,16083,16117,16118,16144,16147,16257,16300,16383,16485,16678,16904,17051,17100,17248,17282,17307,17326,17331,17349,17396,17427,17440,17484,17548,17595,17596,17599,17615,17721,17793,17817,17825,17890,18129,18179,18193,18199,18310,18342,18401,18461,19100,19735,19815,19935,19969,20252,21750,21979,22010,22022,22026,22030,22032,22034,22035,22036,22044,22047,22053,22075,22076,22123,22134,22138,22147,22157,22216,22252,22253,22254,22256,22284,22337,22345,22382,22420,22460,22534,22602,22650,22656,22724,22791,22999,23021,23073]]],["+",[91,89,[[0,9,9,0,9,[[12,1,1,0,1],[23,1,1,1,2],[25,1,1,2,3],[30,1,1,3,4],[31,1,1,4,5],[40,1,1,5,6],[43,2,2,6,8],[47,1,1,8,9]]],[1,10,10,9,19,[[57,3,3,9,12],[58,1,1,12,13],[59,2,2,13,15],[60,1,1,15,16],[70,1,1,16,17],[71,2,2,17,19]]],[2,2,2,19,21,[[114,2,2,19,21]]],[4,11,11,21,32,[[162,1,1,21,22],[167,4,4,22,26],[170,2,2,26,28],[174,1,1,28,29],[175,2,2,29,31],[181,1,1,31,32]]],[5,1,1,32,33,[[188,1,1,32,33]]],[6,5,4,33,37,[[211,1,1,33,34],[219,2,1,34,35],[225,1,1,35,36],[226,1,1,36,37]]],[7,2,2,37,39,[[233,1,1,37,38],[235,1,1,38,39]]],[8,16,16,39,55,[[236,2,2,39,41],[237,1,1,41,42],[245,2,2,42,44],[249,1,1,44,45],[251,1,1,45,46],[253,2,2,46,48],[255,7,7,48,55]]],[9,10,9,55,64,[[267,1,1,55,56],[269,4,3,56,59],[273,1,1,59,60],[275,2,2,60,62],[281,1,1,62,63],[290,1,1,63,64]]],[10,4,4,64,68,[[292,1,1,64,65],[301,1,1,65,66],[302,1,1,66,67],[304,1,1,67,68]]],[11,1,1,68,69,[[314,1,1,68,69]]],[12,3,3,69,72,[[342,1,1,69,70],[349,1,1,70,71],[354,1,1,71,72]]],[13,4,4,72,76,[[376,1,1,72,73],[386,1,1,73,74],[390,1,1,74,75],[398,1,1,75,76]]],[17,3,3,76,79,[[436,1,1,76,77],[463,1,1,77,78],[469,1,1,78,79]]],[18,4,4,79,83,[[505,1,1,79,80],[563,1,1,80,81],[566,1,1,81,82],[598,1,1,82,83]]],[22,4,4,83,87,[[685,1,1,83,84],[686,1,1,84,85],[706,1,1,85,86],[707,1,1,86,87]]],[23,1,1,87,88,[[778,1,1,87,88]]],[29,1,1,88,89,[[882,1,1,88,89]]]],[332,618,708,904,940,1227,1353,1356,1463,1722,1739,1740,1775,1783,1795,1814,2091,2125,2127,3509,3510,5198,5331,5332,5335,5337,5400,5403,5474,5515,5521,5697,5881,6533,6791,6932,6952,7161,7200,7229,7239,7273,7420,7427,7525,7609,7688,7689,7737,7739,7744,7745,7758,7763,7764,8024,8096,8107,8109,8195,8228,8234,8417,8713,8803,9117,9166,9223,9560,10448,10741,10876,11410,11593,11681,11882,12881,13508,13716,14300,15301,15359,16083,17793,17825,18193,18199,19815,22420]]],["With",[12,12,[[0,1,1,0,1,[[30,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]],[9,2,2,2,4,[[288,2,2,2,4]]],[12,1,1,4,5,[[366,1,1,4,5]]],[13,1,1,5,6,[[398,1,1,5,6]]],[17,3,3,6,9,[[438,1,1,6,7],[447,2,2,7,9]]],[18,3,3,9,12,[[495,2,2,9,11],[566,1,1,11,12]]]],[905,6162,8628,8629,11194,11883,12918,13141,13144,14143,14144,15347]]],["accompanying",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8161]]],["against",[35,34,[[4,5,5,0,5,[[161,2,2,0,2],[172,2,2,2,4],[183,1,1,4,5]]],[5,3,3,5,8,[[196,1,1,5,6],[197,1,1,6,7],[205,1,1,7,8]]],[6,10,10,8,18,[[215,1,1,8,9],[221,4,4,9,13],[230,5,5,13,18]]],[10,3,3,18,21,[[302,2,2,18,20],[310,1,1,20,21]]],[11,2,2,21,23,[[320,1,1,21,22],[325,1,1,22,23]]],[13,7,7,23,30,[[377,2,2,23,25],[379,2,2,25,27],[380,1,1,27,28],[383,1,1,28,29],[386,1,1,29,30]]],[17,2,2,30,32,[[445,1,1,30,31],[446,1,1,31,32]]],[18,2,1,32,33,[[571,2,1,32,33]]],[19,1,1,33,34,[[657,1,1,33,34]]]],[5164,5181,5431,5439,5755,6093,6112,6368,6643,6833,6834,6849,6854,7068,7072,7074,7077,7082,9172,9175,9434,9755,9883,11415,11418,11456,11465,11486,11533,11616,13103,13113,15447,17282]]],["all",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12400]]],["among",[10,10,[[2,1,1,0,1,[[114,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[5,2,2,2,4,[[206,1,1,2,3],[208,1,1,3,4]]],[6,1,1,4,5,[[228,1,1,4,5]]],[8,2,2,5,7,[[237,1,1,5,6],[245,1,1,6,7]]],[13,1,1,7,8,[[390,1,1,7,8]]],[15,1,1,8,9,[[421,1,1,8,9]]],[19,1,1,9,10,[[658,1,1,9,10]]]],[3514,5696,6376,6433,7018,7248,7429,11693,12528,17307]]],["and",[3,3,[[18,3,3,0,3,[[581,1,1,0,1],[592,1,1,1,2],[625,1,1,2,3]]]],[15596,15843,16383]]],["as",[3,3,[[12,1,1,0,1,[[362,1,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]],[20,1,1,2,3,[[660,1,1,2,3]]]],[11054,13077,17349]]],["at",[2,2,[[9,1,1,0,1,[[286,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[8562,22076]]],["before",[4,4,[[8,1,1,0,1,[[237,1,1,0,1]]],[16,1,1,1,2,[[432,1,1,1,2]]],[18,2,2,2,4,[[495,1,1,2,3],[550,1,1,3,4]]]],[7261,12815,14141,15042]]],["beside",[4,4,[[5,1,1,0,1,[[193,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[14,1,1,2,3,[[403,1,1,2,3]]],[18,1,1,3,4,[[550,1,1,3,4]]]],[5978,8340,12020,15045]]],["by",[22,20,[[0,2,2,0,2,[[24,1,1,0,1],[34,1,1,1,2]]],[1,1,1,2,3,[[71,1,1,2,3]]],[2,4,2,3,5,[[114,4,2,3,5]]],[6,3,3,5,8,[[219,1,1,5,6],[228,1,1,6,7],[229,1,1,7,8]]],[7,2,2,8,10,[[233,2,2,8,10]]],[8,4,4,10,14,[[236,1,1,10,11],[244,1,1,11,12],[245,1,1,12,13],[252,1,1,13,14]]],[9,3,3,14,17,[[272,1,1,14,15],[285,1,1,15,16],[290,1,1,16,17]]],[10,1,1,17,18,[[291,1,1,17,18]]],[12,1,1,18,19,[[358,1,1,18,19]]],[16,1,1,19,20,[[434,1,1,19,20]]]],[669,1015,2138,3508,3516,6760,6996,7035,7157,7170,7238,7414,7420,7644,8164,8548,8708,8726,10949,12859]]],["for",[4,4,[[8,1,1,0,1,[[247,1,1,0,1]]],[16,1,1,1,2,[[431,1,1,1,2]]],[18,2,2,2,4,[[603,2,2,2,4]]]],[7484,12796,16117,16118]]],["her",[3,3,[[7,2,2,0,2,[[232,2,2,0,2]]],[9,1,1,2,3,[[277,1,1,2,3]]]],[7134,7149,8263]]],["him",[1,1,[[13,1,1,0,1,[[383,1,1,0,1]]]],[11539]]],["in",[19,17,[[4,2,2,0,2,[[160,1,1,0,1],[167,1,1,1,2]]],[5,1,1,2,3,[[200,1,1,2,3]]],[10,4,3,3,6,[[298,3,2,3,5],[300,1,1,5,6]]],[12,2,2,6,8,[[359,1,1,6,7],[365,1,1,7,8]]],[13,7,6,8,14,[[367,1,1,8,9],[372,3,2,9,11],[375,1,1,11,12],[385,1,1,12,13],[395,1,1,13,14]]],[17,2,2,14,16,[[450,1,1,14,15],[464,1,1,15,16]]],[18,1,1,16,17,[[597,1,1,16,17]]]],[5142,5328,6194,9002,9003,9081,10971,11145,11205,11289,11290,11365,11579,11801,13212,13550,16079]]],["like",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15025]]],["long",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15005]]],["near",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7015]]],["of",[8,7,[[8,1,1,0,1,[[252,1,1,0,1]]],[9,3,2,1,3,[[272,1,1,1,2],[287,2,1,2,3]]],[10,1,1,3,4,[[301,1,1,3,4]]],[12,1,1,4,5,[[365,1,1,4,5]]],[13,2,2,5,7,[[382,1,1,5,6],[387,1,1,6,7]]]],[7660,8179,8584,9119,11155,11518,11643]]],["side",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10738]]],["than",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17349]]],["thee",[3,3,[[4,1,1,0,1,[[183,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]],[19,1,1,2,3,[[650,1,1,2,3]]]],[5736,16257,17051]]],["them",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7424]]],["to",[10,10,[[0,3,3,0,3,[[20,1,1,0,1],[30,2,2,1,3]]],[6,1,1,3,4,[[218,1,1,3,4]]],[8,1,1,4,5,[[250,1,1,4,5]]],[12,2,2,5,7,[[356,2,2,5,7]]],[13,1,1,7,8,[[390,1,1,7,8]]],[18,1,1,8,9,[[505,1,1,8,9]]],[32,1,1,9,10,[[894,1,1,9,10]]]],[536,897,902,6754,7566,10909,10913,11699,14302,22602]]],["toward",[3,3,[[0,1,1,0,1,[[30,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]],[18,1,1,2,3,[[562,1,1,2,3]]]],[875,11693,15275]]],["unto",[38,36,[[0,8,8,0,8,[[18,1,1,0,1],[19,2,2,1,3],[20,1,1,3,4],[23,2,2,4,6],[25,1,1,6,7],[39,1,1,7,8]]],[2,7,7,8,15,[[115,7,7,8,15]]],[3,2,2,15,17,[[126,1,1,15,16],[138,1,1,16,17]]],[5,2,2,17,19,[[188,1,1,17,18],[210,1,1,18,19]]],[6,1,1,19,20,[[218,1,1,19,20]]],[9,9,7,20,27,[[268,3,2,20,22],[269,1,1,22,23],[275,1,1,23,24],[276,2,1,24,25],[279,2,2,25,27]]],[10,1,1,27,28,[[293,1,1,27,28]]],[12,1,1,28,29,[[356,1,1,28,29]]],[13,2,2,29,31,[[367,2,2,29,31]]],[18,1,1,31,32,[[620,1,1,31,32]]],[23,1,1,32,33,[[783,1,1,32,33]]],[26,3,3,33,36,[[859,3,3,33,36]]]],[476,504,508,536,603,605,721,1186,3545,3547,3548,3551,3552,3564,3565,4020,4394,5881,6503,6754,8054,8055,8089,8230,8242,8333,8339,8822,10909,11202,11203,16300,19935,22026,22030,22034]]],["upon",[2,2,[[13,1,1,0,1,[[388,1,1,0,1]]],[17,1,1,1,2,[[445,1,1,1,2]]]],[11652,13103]]],["us",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17817]]],["with",[773,685,[[0,68,62,0,62,[[2,2,2,0,2],[12,1,1,2,3],[17,3,3,3,6],[18,4,4,6,10],[20,3,2,10,12],[21,1,1,12,13],[22,2,1,13,14],[23,2,2,14,16],[25,5,3,16,19],[26,1,1,19,20],[27,2,2,20,22],[28,8,7,22,29],[29,3,3,29,32],[30,6,6,32,38],[31,7,6,38,44],[32,2,2,44,46],[34,3,3,46,49],[38,4,4,49,53],[41,1,1,53,54],[42,1,1,54,55],[43,1,1,55,56],[45,1,1,56,57],[46,2,2,57,59],[47,2,2,59,61],[49,1,1,61,62]]],[1,38,36,62,98,[[52,1,1,62,63],[53,3,2,63,65],[59,3,3,65,68],[62,1,1,68,69],[63,1,1,69,70],[66,2,2,70,72],[67,4,4,72,76],[68,2,2,76,78],[69,3,2,78,80],[70,1,1,80,81],[71,5,5,81,86],[72,2,2,86,88],[73,3,3,88,91],[82,3,3,91,94],[83,4,4,94,98]]],[2,13,11,98,109,[[104,1,1,98,99],[114,12,10,99,109]]],[3,18,17,109,126,[[126,1,1,109,110],[127,2,2,110,112],[129,1,1,112,113],[130,2,2,113,115],[136,1,1,115,116],[138,10,9,116,125],[139,1,1,125,126]]],[4,45,41,126,167,[[154,1,1,126,127],[156,1,1,127,128],[157,2,2,128,130],[161,2,2,130,132],[162,1,1,132,133],[164,1,1,133,134],[166,2,2,134,136],[167,1,1,136,137],[169,1,1,137,138],[170,2,2,138,140],[172,4,4,140,144],[174,8,6,144,150],[175,1,1,150,151],[179,4,4,151,155],[181,4,3,155,158],[183,4,4,158,162],[184,5,4,162,166],[185,1,1,166,167]]],[5,30,26,167,193,[[187,5,3,167,170],[188,1,1,170,171],[189,2,1,171,172],[190,2,2,172,174],[193,2,2,174,176],[194,1,1,176,177],[195,2,1,177,178],[196,8,8,178,186],[197,3,3,186,189],[200,1,1,189,190],[205,1,1,190,191],[208,2,2,191,193]]],[6,36,32,193,225,[[211,1,1,193,194],[212,1,1,194,195],[213,1,1,195,196],[214,6,4,196,200],[215,1,1,200,201],[216,4,4,201,205],[217,1,1,205,206],[218,1,1,206,207],[219,6,5,207,212],[221,3,3,212,215],[222,1,1,215,216],[223,1,1,216,217],[226,2,2,217,219],[228,3,3,219,222],[229,4,3,222,225]]],[7,9,6,225,231,[[232,4,2,225,227],[233,5,4,227,231]]],[8,65,57,231,288,[[236,1,1,231,232],[237,2,1,232,233],[238,1,1,233,234],[239,1,1,234,235],[240,1,1,235,236],[244,4,4,236,240],[245,2,2,240,242],[248,5,4,242,246],[249,6,4,246,250],[250,4,4,250,254],[251,1,1,254,255],[252,5,5,255,260],[253,3,3,260,263],[255,6,5,263,268],[257,5,5,268,273],[258,1,1,273,274],[260,3,3,274,277],[261,1,1,277,278],[262,3,3,278,281],[263,3,2,281,283],[264,4,3,283,286],[265,2,1,286,287],[266,1,1,287,288]]],[9,46,43,288,331,[[267,1,1,288,289],[268,1,1,289,290],[269,4,3,290,293],[271,1,1,293,294],[273,2,2,294,296],[274,1,1,296,297],[276,2,2,297,299],[277,3,3,299,302],[278,4,3,302,305],[279,4,4,305,309],[280,1,1,309,310],[281,6,5,310,315],[283,1,1,315,316],[284,1,1,316,317],[285,7,7,317,324],[287,3,3,324,327],[288,2,2,327,329],[289,2,2,329,331]]],[10,48,42,331,373,[[291,9,7,331,338],[292,2,2,338,340],[293,2,2,340,342],[295,1,1,342,343],[298,7,6,343,349],[299,1,1,349,350],[300,2,2,350,352],[301,6,6,352,358],[303,1,1,358,359],[304,3,2,359,361],[305,5,4,361,365],[306,3,3,365,368],[307,1,1,368,369],[312,5,4,369,373]]],[11,35,28,373,401,[[318,1,1,373,374],[320,3,2,374,376],[321,1,1,376,377],[322,3,3,377,380],[323,1,1,380,381],[324,1,1,381,382],[325,3,2,382,384],[326,8,6,384,390],[327,6,4,390,394],[328,2,1,394,395],[330,3,3,395,398],[332,1,1,398,399],[333,1,1,399,400],[336,1,1,400,401]]],[12,42,41,401,442,[[341,2,2,401,403],[342,2,2,403,405],[345,1,1,405,406],[346,3,3,406,409],[348,4,3,409,412],[349,4,4,412,416],[350,3,3,416,419],[352,1,1,419,420],[353,2,2,420,422],[354,3,3,422,425],[355,1,1,425,426],[356,3,3,426,429],[357,1,1,429,430],[358,1,1,430,431],[359,4,4,431,435],[361,1,1,435,436],[362,1,1,436,437],[363,1,1,437,438],[364,1,1,438,439],[365,3,3,439,442]]],[13,85,74,442,516,[[367,3,3,442,445],[368,5,4,445,449],[371,2,2,449,451],[372,1,1,451,452],[373,1,1,452,453],[374,1,1,453,454],[375,4,4,454,458],[378,3,3,458,461],[379,2,2,461,463],[380,3,3,463,466],[381,4,2,466,468],[382,2,2,468,470],[383,8,7,470,477],[384,3,2,477,479],[385,3,3,479,482],[386,6,5,482,487],[387,5,3,487,490],[388,1,1,490,491],[389,3,3,491,494],[391,6,5,494,499],[392,5,4,499,503],[393,2,2,503,505],[394,2,2,505,507],[398,6,5,507,512],[399,1,1,512,513],[401,1,1,513,514],[402,2,2,514,516]]],[14,23,22,516,538,[[403,2,2,516,518],[404,1,1,518,519],[406,1,1,519,520],[409,1,1,520,521],[410,16,15,521,536],[412,2,2,536,538]]],[15,11,10,538,548,[[414,3,2,538,540],[416,1,1,540,541],[419,1,1,541,542],[421,2,2,542,544],[422,1,1,544,545],[424,2,2,545,547],[425,1,1,547,548]]],[16,8,6,548,554,[[427,3,2,548,550],[430,3,2,550,552],[431,1,1,552,553],[432,1,1,553,554]]],[17,36,35,554,589,[[436,1,1,554,555],[438,1,1,555,556],[440,1,1,556,557],[444,3,3,557,560],[445,1,1,560,561],[447,1,1,561,562],[449,1,1,562,563],[450,1,1,563,564],[451,1,1,564,565],[452,1,1,565,566],[455,1,1,566,567],[456,1,1,567,568],[457,2,2,568,570],[458,2,2,570,572],[460,2,2,572,574],[462,2,2,574,576],[465,1,1,576,577],[466,1,1,577,578],[468,1,1,578,579],[469,3,2,579,581],[470,1,1,581,582],[471,1,1,582,583],[472,1,1,583,584],[475,2,2,584,586],[476,1,1,586,587],[477,2,2,587,589]]],[18,41,34,589,623,[[495,2,2,589,591],[503,5,3,591,594],[505,2,1,594,595],[513,1,1,595,596],[516,1,1,596,597],[519,1,1,597,598],[523,2,2,598,600],[527,2,1,600,601],[543,2,1,601,602],[546,1,1,602,603],[550,1,1,603,604],[554,1,1,604,605],[555,1,1,605,606],[558,1,1,606,607],[560,2,2,607,609],[564,1,1,609,610],[565,1,1,610,611],[566,2,2,611,613],[568,1,1,613,614],[583,2,2,614,616],[590,2,1,616,617],[596,2,2,617,619],[597,2,2,619,621],[607,3,2,621,623]]],[19,5,5,623,628,[[630,1,1,623,624],[637,1,1,624,625],[645,1,1,625,626],[651,1,1,626,627],[656,1,1,627,628]]],[20,6,6,628,634,[[659,2,2,628,630],[662,1,1,630,631],[664,1,1,631,632],[665,1,1,632,633],[667,1,1,633,634]]],[21,9,5,634,639,[[671,1,1,634,635],[674,4,2,635,637],[675,3,1,637,638],[676,1,1,638,639]]],[22,10,8,639,647,[[681,1,1,639,640],[689,2,1,640,641],[703,1,1,641,642],[706,1,1,642,643],[712,2,1,643,644],[714,1,1,644,645],[716,1,1,645,646],[719,1,1,646,647]]],[23,5,4,647,651,[[750,2,1,647,648],[776,1,1,648,649],[785,1,1,649,650],[795,1,1,650,651]]],[26,13,11,651,662,[[850,1,1,651,652],[857,1,1,652,653],[858,1,1,653,654],[859,4,4,654,658],[860,6,4,658,662]]],[27,14,11,662,673,[[863,2,1,662,663],[865,4,3,663,666],[866,1,1,666,667],[870,1,1,667,668],[872,2,1,668,669],[873,3,3,669,672],[875,1,1,672,673]]],[28,2,2,673,675,[[877,1,1,673,674],[878,1,1,674,675]]],[29,2,2,675,677,[[880,1,1,675,676],[884,1,1,676,677]]],[31,1,1,677,678,[[889,1,1,677,678]]],[32,3,2,678,680,[[898,3,2,678,680]]],[33,1,1,680,681,[[902,1,1,680,681]]],[35,1,1,681,682,[[906,1,1,681,682]]],[37,4,3,682,685,[[918,2,1,682,683],[920,1,1,683,684],[924,1,1,684,685]]]],[61,67,319,440,447,449,487,489,491,492,523,535,552,575,645,649,695,712,720,771,788,793,801,804,809,814,820,822,825,838,845,846,876,878,896,905,911,923,932,934,937,952,953,956,961,975,1013,1014,1017,1156,1159,1161,1163,1290,1324,1357,1390,1449,1450,1452,1472,1515,1591,1613,1616,1787,1801,1803,1886,1895,1985,1991,2005,2011,2017,2018,2035,2050,2070,2073,2080,2127,2128,2129,2132,2143,2145,2149,2179,2185,2191,2482,2485,2489,2499,2501,2506,2524,3201,3475,3492,3504,3505,3509,3510,3514,3519,3522,3523,4020,4040,4041,4106,4132,4151,4314,4383,4384,4387,4388,4389,4396,4397,4410,4414,4437,4945,5027,5055,5057,5166,5167,5195,5263,5317,5319,5335,5383,5385,5397,5428,5431,5439,5447,5472,5492,5493,5495,5498,5499,5516,5605,5606,5607,5608,5691,5694,5704,5734,5744,5751,5755,5770,5772,5782,5783,5831,5856,5860,5868,5883,5900,5913,5918,5988,6000,6003,6039,6071,6079,6093,6095,6098,6100,6102,6107,6111,6114,6128,6195,6367,6434,6440,6531,6563,6595,6605,6607,6608,6609,6638,6666,6667,6670,6671,6698,6729,6770,6773,6788,6798,6802,6832,6837,6840,6870,6893,6962,6979,7000,7012,7021,7027,7034,7043,7135,7138,7153,7155,7168,7171,7236,7266,7295,7301,7326,7396,7410,7415,7416,7425,7444,7487,7490,7500,7501,7510,7515,7529,7553,7566,7585,7586,7590,7613,7637,7641,7650,7651,7655,7688,7690,7704,7735,7738,7743,7746,7765,7789,7791,7795,7804,7810,7829,7868,7877,7886,7911,7932,7933,7935,7950,7961,7969,7971,7976,8000,8014,8046,8052,8093,8098,8103,8142,8183,8189,8220,8253,8257,8260,8270,8272,8289,8297,8310,8328,8337,8341,8343,8373,8408,8409,8420,8424,8425,8473,8480,8527,8528,8536,8544,8548,8551,8552,8595,8598,8599,8628,8629,8658,8662,8724,8725,8731,8738,8739,8750,8754,8778,8780,8822,8833,8884,8994,9006,9042,9046,9047,9050,9078,9101,9105,9112,9126,9129,9130,9146,9151,9192,9238,9249,9252,9257,9263,9273,9289,9300,9311,9337,9520,9524,9529,9530,9707,9748,9751,9784,9808,9816,9828,9838,9871,9880,9884,9906,9911,9912,9916,9918,9925,9932,9947,9950,9963,9983,10031,10050,10051,10119,10137,10208,10395,10408,10438,10447,10607,10635,10640,10653,10682,10683,10686,10739,10747,10754,10759,10761,10762,10774,10809,10861,10862,10865,10871,10874,10901,10921,10924,10926,10930,10954,10975,10979,10980,10982,11020,11053,11093,11141,11144,11163,11164,11195,11197,11208,11214,11218,11219,11225,11278,11280,11293,11332,11364,11365,11385,11389,11395,11438,11440,11453,11461,11465,11476,11486,11488,11492,11499,11519,11522,11526,11531,11532,11537,11538,11540,11541,11544,11545,11582,11583,11587,11588,11604,11622,11623,11624,11625,11627,11633,11651,11657,11659,11664,11711,11717,11723,11728,11732,11734,11749,11751,11755,11760,11764,11774,11791,11878,11882,11883,11884,11908,11928,11987,12003,12016,12019,12027,12029,12112,12201,12202,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12225,12234,12256,12266,12316,12319,12372,12427,12519,12524,12587,12625,12664,12696,12730,12737,12791,12793,12807,12808,12873,12919,12974,13053,13054,13065,13099,13130,13184,13214,13259,13263,13337,13363,13393,13410,13426,13433,13463,13465,13492,13494,13558,13593,13679,13691,13692,13724,13740,13787,13866,13879,13892,13930,13933,14143,14144,14277,14278,14282,14302,14447,14524,14563,14621,14625,14686,14888,14963,15043,15099,15150,15219,15248,15249,15305,15312,15350,15364,15410,15656,15657,15821,15963,16022,16078,16080,16144,16147,16485,16678,16904,17100,17248,17326,17331,17396,17427,17440,17484,17548,17595,17596,17599,17615,17721,17890,18129,18179,18310,18342,18401,18461,19100,19735,19969,20252,21750,21979,22010,22022,22032,22035,22036,22044,22047,22053,22075,22123,22134,22138,22147,22157,22216,22252,22253,22254,22256,22284,22337,22345,22382,22460,22534,22650,22656,22724,22791,22999,23021,23073]]],["withal",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7607]]]]},{"k":"H5974","v":[["*",[23,20,[[14,5,4,0,4,[[407,1,1,0,1],[408,1,1,1,2],[409,3,2,2,4]]],[26,18,16,4,20,[[851,5,4,4,8],[853,7,7,8,15],[854,2,1,15,16],[855,1,1,16,17],[856,3,3,17,20]]]],[12136,12159,12186,12189,21769,21776,21780,21801,21839,21840,21852,21860,21862,21869,21871,21895,21926,21935,21946,21954]]],["by",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21935]]],["from",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21840,21871]]],["like",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21895]]],["people",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12189]]],["to",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[851,1,1,1,2]]]],[12159,21801]]],["toward",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21839]]],["unto",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21926]]],["with",[14,14,[[14,3,3,0,3,[[407,1,1,0,1],[409,2,2,1,3]]],[26,11,11,3,14,[[851,4,4,3,7],[853,4,4,7,11],[854,1,1,11,12],[856,2,2,12,14]]]],[12136,12186,12189,21769,21776,21780,21801,21852,21860,21862,21869,21895,21946,21954]]]]},{"k":"H5975","v":[["*",[521,496,[[0,16,16,0,16,[[17,2,2,0,2],[18,2,2,2,4],[23,2,2,4,6],[28,1,1,6,7],[29,1,1,7,8],[40,4,4,8,12],[42,1,1,12,13],[44,2,2,13,15],[46,1,1,15,16]]],[1,18,18,16,34,[[52,1,1,16,17],[57,1,1,17,18],[58,4,4,18,22],[63,1,1,22,23],[66,1,1,23,24],[67,2,2,24,26],[69,2,2,26,28],[70,1,1,28,29],[75,1,1,29,30],[81,1,1,30,31],[82,2,2,31,33],[85,1,1,33,34]]],[2,12,12,34,46,[[98,1,1,34,35],[102,4,4,35,39],[103,1,1,39,40],[105,2,2,40,42],[107,1,1,42,43],[108,1,1,43,44],[116,2,2,44,46]]],[3,21,21,46,67,[[117,1,1,46,47],[119,1,1,47,48],[121,3,3,48,51],[123,1,1,51,52],[124,1,1,52,53],[125,1,1,53,54],[127,1,1,54,55],[128,1,1,55,56],[130,1,1,56,57],[132,3,3,57,60],[138,2,2,60,62],[143,4,4,62,66],[151,1,1,66,67]]],[4,17,17,67,84,[[153,1,1,67,68],[156,2,2,68,70],[157,2,2,70,72],[162,2,2,72,74],[169,1,1,74,75],[170,2,2,75,77],[171,1,1,77,78],[176,1,1,78,79],[177,1,1,79,80],[179,2,2,80,82],[181,1,1,82,83],[183,1,1,83,84]]],[5,20,18,84,102,[[189,4,4,84,88],[190,1,1,88,89],[191,2,2,89,91],[194,1,1,91,92],[196,4,3,92,95],[197,1,1,95,96],[204,2,1,96,97],[206,3,3,97,100],[207,1,1,100,101],[209,1,1,101,102]]],[6,10,10,102,112,[[212,1,1,102,103],[213,1,1,103,104],[214,1,1,104,105],[216,1,1,105,106],[217,1,1,106,107],[219,3,3,107,110],[226,1,1,110,111],[230,1,1,111,112]]],[7,1,1,112,113,[[233,1,1,112,113]]],[8,17,16,113,129,[[241,2,2,113,115],[244,1,1,115,116],[249,1,1,116,117],[251,2,2,117,119],[252,5,4,119,123],[254,2,2,123,125],[255,1,1,125,126],[261,1,1,126,127],[265,2,2,127,129]]],[9,16,15,129,144,[[267,2,2,129,131],[268,3,3,131,134],[281,2,2,134,136],[283,1,1,136,137],[284,2,2,137,139],[286,5,4,139,143],[288,1,1,143,144]]],[10,29,28,144,172,[[291,2,2,144,146],[293,2,2,146,148],[297,1,1,148,149],[298,4,4,149,153],[300,3,3,153,156],[302,3,3,156,159],[303,5,4,159,163],[305,1,1,163,164],[307,1,1,164,165],[308,1,1,165,166],[309,2,2,166,168],[310,1,1,168,169],[312,3,3,169,172]]],[11,29,26,172,198,[[314,3,2,172,174],[315,2,2,174,176],[316,3,3,176,179],[317,5,5,179,184],[318,1,1,184,185],[320,2,2,185,187],[321,1,1,187,188],[322,3,2,188,190],[323,2,2,190,192],[325,2,2,192,194],[327,1,1,194,195],[330,2,2,195,197],[335,2,1,197,198]]],[12,14,14,198,212,[[343,4,4,198,202],[352,2,2,202,204],[353,1,1,204,205],[354,1,1,205,206],[357,1,1,206,207],[358,3,3,207,210],[359,1,1,210,211],[360,1,1,211,212]]],[13,51,50,212,262,[[369,1,1,212,213],[370,1,1,213,214],[371,2,2,214,216],[372,3,3,216,219],[373,2,1,219,220],[374,1,1,220,221],[375,4,4,221,225],[376,2,2,225,227],[377,2,2,227,229],[384,3,3,229,232],[385,2,2,232,234],[386,7,7,234,241],[389,3,3,241,244],[390,2,2,244,246],[391,2,2,246,248],[392,1,1,248,249],[395,3,3,249,252],[396,2,2,252,254],[397,1,1,254,255],[399,2,2,255,257],[400,2,2,257,259],[401,3,3,259,262]]],[14,10,10,262,272,[[404,2,2,262,264],[405,3,3,264,267],[411,2,2,267,269],[412,3,3,269,272]]],[15,27,24,272,296,[[415,6,6,272,278],[416,3,2,278,280],[418,2,2,280,282],[419,4,3,282,285],[420,3,2,285,287],[421,1,1,287,288],[422,1,1,288,289],[424,4,4,289,293],[425,3,3,293,296]]],[16,12,12,296,308,[[428,1,1,296,297],[429,2,2,297,299],[430,2,2,299,301],[431,1,1,301,302],[432,2,2,302,304],[433,2,2,304,306],[434,2,2,306,308]]],[17,8,8,308,316,[[439,1,1,308,309],[443,1,1,309,310],[449,1,1,310,311],[464,1,1,311,312],[465,1,1,312,313],[467,1,1,313,314],[469,1,1,314,315],[472,1,1,315,316]]],[18,32,31,316,347,[[478,1,1,316,317],[487,1,1,317,318],[495,1,1,318,319],[496,1,1,319,320],[503,1,1,320,321],[507,1,1,321,322],[508,1,1,322,323],[510,2,2,323,325],[515,2,1,325,326],[553,1,1,326,327],[579,1,1,327,328],[581,1,1,328,329],[582,1,1,329,330],[583,2,2,330,332],[584,1,1,332,333],[586,2,2,333,335],[588,2,2,335,337],[589,2,2,337,339],[596,2,2,339,341],[599,1,1,341,342],[607,1,1,342,343],[611,1,1,343,344],[612,1,1,344,345],[624,1,1,345,346],[625,1,1,346,347]]],[19,4,4,347,351,[[639,1,1,347,348],[652,1,1,348,349],[654,1,1,349,350],[656,1,1,350,351]]],[20,5,5,351,356,[[659,1,1,351,352],[660,1,1,352,353],[662,2,2,353,355],[666,1,1,355,356]]],[21,1,1,356,357,[[672,1,1,356,357]]],[22,18,17,357,374,[[681,1,1,357,358],[684,1,1,358,359],[688,1,1,359,360],[689,1,1,360,361],[699,2,2,361,363],[714,2,2,363,365],[722,1,1,365,366],[724,1,1,366,367],[725,2,2,367,369],[726,1,1,369,370],[728,1,1,370,371],[737,1,1,371,372],[739,1,1,372,373],[744,2,1,373,374]]],[23,28,28,374,402,[[748,1,1,374,375],[750,1,1,375,376],[751,2,2,376,378],[758,1,1,378,379],[759,2,2,379,381],[761,1,1,381,382],[762,1,1,382,383],[763,1,1,383,384],[767,2,2,384,386],[770,1,1,386,387],[772,1,1,387,388],[776,1,1,388,389],[779,1,1,389,390],[780,1,1,390,391],[784,1,1,391,392],[788,1,1,392,393],[790,2,2,393,395],[792,3,3,395,398],[793,1,1,398,399],[794,1,1,399,400],[795,1,1,400,401],[796,1,1,401,402]]],[25,35,32,402,434,[[802,4,3,402,405],[803,2,2,405,407],[804,2,2,407,409],[809,2,1,409,410],[810,1,1,410,411],[811,6,5,411,416],[812,1,1,416,417],[814,1,1,417,418],[818,1,1,418,419],[822,1,1,419,420],[823,2,2,420,422],[825,1,1,422,423],[828,1,1,423,424],[832,1,1,424,425],[834,1,1,425,426],[838,1,1,426,427],[841,1,1,427,428],[844,1,1,428,429],[845,3,3,429,432],[847,1,1,432,433],[848,1,1,433,434]]],[26,43,37,434,471,[[850,3,3,434,437],[851,1,1,437,438],[857,10,9,438,447],[859,5,4,447,451],[860,20,17,451,468],[861,4,3,468,471]]],[27,2,2,471,473,[[871,1,1,471,472],[874,1,1,472,473]]],[29,1,1,473,474,[[880,1,1,473,474]]],[30,2,2,474,476,[[888,2,2,474,476]]],[31,1,1,476,477,[[889,1,1,476,477]]],[32,1,1,477,478,[[897,1,1,477,478]]],[33,3,2,478,480,[[900,1,1,478,479],[901,2,1,479,480]]],[34,3,3,480,483,[[904,1,1,480,481],[905,2,2,481,483]]],[36,1,1,483,484,[[910,1,1,483,484]]],[37,12,11,484,495,[[911,3,3,484,487],[913,6,5,487,492],[914,1,1,492,493],[924,2,2,493,495]]],[38,1,1,495,496,[[927,1,1,495,496]]]],[432,446,474,484,621,622,830,839,1196,1198,1212,1241,1305,1359,1367,1427,1584,1732,1752,1753,1758,1770,1908,1989,2012,2022,2069,2072,2098,2250,2464,2482,2483,2586,2958,3057,3075,3080,3089,3122,3208,3211,3274,3297,3578,3581,3609,3698,3808,3810,3822,3852,3952,3973,4048,4064,4122,4203,4212,4242,4399,4401,4556,4573,4575,4576,4857,4930,5014,5015,5058,5084,5194,5196,5376,5389,5391,5423,5536,5555,5597,5598,5694,5743,5901,5906,5909,5910,5920,5947,5949,6035,6072,6077,6083,6120,6298,6376,6378,6381,6425,6469,6559,6587,6619,6685,6715,6761,6789,6798,6974,7082,7156,7345,7351,7418,7517,7616,7617,7621,7626,7644,7669,7709,7726,7768,7918,7987,7988,8031,8032,8072,8074,8077,8391,8406,8466,8482,8508,8558,8565,8566,8569,8636,8719,8745,8831,8832,8959,8996,8999,9007,9040,9087,9098,9099,9157,9159,9183,9185,9208,9209,9212,9253,9318,9356,9398,9400,9446,9499,9501,9515,9558,9564,9590,9597,9609,9615,9618,9656,9658,9662,9663,9672,9705,9736,9738,9773,9797,9802,9840,9843,9877,9889,9945,10041,10052,10168,10485,10486,10487,10493,10807,10808,10837,10877,10930,10935,10949,10950,10966,11013,11242,11250,11280,11282,11285,11294,11295,11330,11360,11371,11372,11382,11383,11401,11403,11429,11436,11560,11562,11576,11581,11584,11592,11596,11600,11604,11607,11608,11610,11666,11669,11675,11690,11697,11709,11718,11750,11802,11816,11817,11832,11843,11856,11916,11927,11964,11965,11968,11971,11976,12090,12095,12105,12106,12107,12246,12252,12265,12266,12267,12328,12330,12333,12340,12341,12342,12368,12372,12402,12408,12421,12423,12485,12497,12498,12513,12581,12655,12663,12664,12668,12682,12690,12701,12751,12767,12776,12780,12781,12798,12814,12816,12821,12828,12836,12850,12946,13044,13183,13540,13577,13644,13707,13783,13940,14042,14151,14177,14285,14326,14339,14375,14377,14501,15088,15547,15577,15616,15674,15681,15724,15761,15786,15796,15803,15806,15812,15988,15989,16091,16143,16173,16177,16368,16377,16726,17119,17173,17228,17319,17342,17393,17396,17461,17563,17720,17771,17882,17894,18041,18043,18332,18343,18544,18593,18611,18612,18627,18670,18814,18848,18944,19033,19105,19121,19129,19299,19316,19334,19376,19404,19421,19502,19506,19574,19623,19745,19842,19863,19951,20025,20060,20066,20091,20099,20125,20146,20210,20262,20288,20485,20488,20489,20493,20494,20525,20526,20615,20624,20636,20639,20650,20651,20652,20678,20713,20839,20965,20990,21006,21067,21150,21244,21306,21407,21480,21578,21610,21614,21623,21657,21689,21741,21742,21756,21760,21964,21965,21967,21968,21976,21979,21983,21984,21986,22026,22028,22031,22032,22037,22038,22039,22040,22042,22043,22044,22047,22049,22050,22051,22052,22053,22056,22057,22061,22067,22082,22086,22094,22234,22279,22394,22521,22524,22546,22637,22690,22707,22749,22774,22779,22860,22886,22888,22889,22913,22915,22916,22917,22919,22936,23072,23080,23122]]],["+",[29,29,[[0,1,1,0,1,[[18,1,1,0,1]]],[2,2,2,1,3,[[103,1,1,1,2],[116,1,1,2,3]]],[3,3,3,3,6,[[121,2,2,3,5],[124,1,1,5,6]]],[8,1,1,6,7,[[244,1,1,6,7]]],[10,2,2,7,9,[[302,1,1,7,8],[305,1,1,8,9]]],[11,1,1,9,10,[[320,1,1,9,10]]],[12,2,2,10,12,[[352,2,2,10,12]]],[13,7,7,12,19,[[377,1,1,12,13],[384,1,1,13,14],[389,1,1,14,15],[390,1,1,15,16],[392,1,1,16,17],[395,1,1,17,18],[397,1,1,18,19]]],[14,2,2,19,21,[[405,1,1,19,20],[411,1,1,20,21]]],[15,1,1,21,22,[[416,1,1,21,22]]],[18,1,1,22,23,[[612,1,1,22,23]]],[20,1,1,23,24,[[662,1,1,23,24]]],[23,3,3,24,27,[[784,1,1,24,25],[795,1,1,25,26],[796,1,1,26,27]]],[25,1,1,27,28,[[844,1,1,27,28]]],[26,1,1,28,29,[[859,1,1,28,29]]]],[484,3122,3581,3810,3822,3952,7418,9157,9253,9738,10807,10808,11436,11576,11666,11690,11750,11816,11856,12105,12246,12372,16177,17393,19951,20262,20288,21578,22028]]],["Stand",[7,7,[[6,1,1,0,1,[[214,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]],[22,1,1,2,3,[[725,1,1,2,3]]],[23,3,3,3,6,[[750,1,1,3,4],[751,1,1,4,5],[770,1,1,5,6]]],[33,1,1,6,7,[[901,1,1,6,7]]]],[6619,8031,18611,19105,19121,19574,22707]]],["abide",[2,1,[[5,2,1,0,1,[[204,2,1,0,1]]]],[6298]]],["abideth",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[20,1,1,1,2,[[659,1,1,1,2]]]],[15988,17319]]],["aloof",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14501]]],["appoint",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12423]]],["appointed",[7,7,[[13,3,3,0,3,[[374,1,1,0,1],[386,1,1,1,2],[399,1,1,2,3]]],[15,3,3,3,6,[[418,1,1,3,4],[424,1,1,4,5],[425,1,1,5,6]]],[16,1,1,6,7,[[429,1,1,6,7]]]],[11360,11608,11916,12408,12655,12701,12767]]],["arise",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12776]]],["arose",[1,1,[[12,1,1,0,1,[[357,1,1,0,1]]]],[10930]]],["behind",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7988]]],["by",[2,2,[[23,1,1,0,1,[[788,1,1,0,1]]],[37,1,1,1,2,[[913,1,1,1,2]]]],[20025,22917]]],["ceased",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22546]]],["confirmed",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[10837,15616]]],["continue",[4,4,[[1,1,1,0,1,[[70,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[23,1,1,2,3,[[776,1,1,2,3]]],[26,1,1,3,4,[[860,1,1,3,4]]]],[2098,15989,19745,22044]]],["continued",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7156]]],["continueth",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13183]]],["dwell",[1,1,[[1,1,1,0,1,[[57,1,1,0,1]]]],[1732]]],["employed",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12267]]],["endure",[3,3,[[1,1,1,0,1,[[67,1,1,0,1]]],[18,1,1,1,2,[[579,1,1,1,2]]],[25,1,1,2,3,[[823,1,1,2,3]]]],[2022,15547,20990]]],["endureth",[4,4,[[18,4,4,0,4,[[588,2,2,0,2],[589,2,2,2,4]]]],[15796,15803,15806,15812]]],["enduring",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14177]]],["establish",[2,2,[[13,1,1,0,1,[[375,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[11372,22050]]],["established",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11832]]],["establisheth",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17228]]],["fast",[1,1,[[18,1,1,0,1,[[510,1,1,0,1]]]],[14375]]],["forth",[2,2,[[26,2,2,0,2,[[860,2,2,0,2]]]],[22047,22049]]],["himself",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3578]]],["left",[2,2,[[0,2,2,0,2,[[28,1,1,0,1],[29,1,1,1,2]]]],[830,839]]],["made",[2,2,[[13,1,1,0,1,[[391,1,1,0,1]]],[15,1,1,1,2,[[422,1,1,1,2]]]],[11709,12581]]],["ordained",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11429]]],["over",[1,1,[[3,1,1,0,1,[[123,1,1,0,1]]]],[3852]]],["placed",[1,1,[[10,1,1,0,1,[[302,1,1,0,1]]]],[9183]]],["present",[3,3,[[2,1,1,0,1,[[105,1,1,0,1]]],[3,1,1,1,2,[[119,1,1,1,2]]],[9,1,1,2,3,[[286,1,1,2,3]]]],[3208,3698,8558]]],["presented",[1,1,[[2,1,1,0,1,[[105,1,1,0,1]]]],[3211]]],["raiseth",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15724]]],["remain",[3,2,[[22,3,2,0,2,[[688,1,1,0,1],[744,2,1,1,2]]]],[17882,18944]]],["remained",[4,4,[[11,1,1,0,1,[[325,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]],[26,1,1,3,4,[[859,1,1,3,4]]]],[9877,17342,20091,22032]]],["remaineth",[1,1,[[36,1,1,0,1,[[910,1,1,0,1]]]],[22860]]],["set",[24,24,[[0,1,1,0,1,[[46,1,1,0,1]]],[3,4,4,1,5,[[121,1,1,1,2],[127,1,1,2,3],[143,2,2,3,5]]],[6,1,1,5,6,[[226,1,1,5,6]]],[12,2,2,6,8,[[343,1,1,6,7],[359,1,1,7,8]]],[13,4,4,8,12,[[385,2,2,8,10],[389,1,1,10,11],[401,1,1,11,12]]],[14,1,1,12,13,[[405,1,1,12,13]]],[15,4,4,13,17,[[416,2,2,13,15],[425,2,2,15,17]]],[17,1,1,17,18,[[469,1,1,17,18]]],[18,1,1,18,19,[[508,1,1,18,19]]],[22,1,1,19,20,[[699,1,1,19,20]]],[25,3,3,20,23,[[803,1,1,20,21],[804,1,1,21,22],[825,1,1,22,23]]],[26,1,1,23,24,[[857,1,1,23,24]]]],[1427,3808,4048,4573,4576,6974,10485,10966,11581,11584,11675,11968,12107,12368,12372,12682,12690,13707,14339,18041,20494,20526,21067,21979]]],["setteth",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8636,14151]]],["settle",[1,1,[[12,1,1,0,1,[[354,1,1,0,1]]]],[10877]]],["stablished",[1,1,[[18,1,1,0,1,[[625,1,1,0,1]]]],[16377]]],["stand",[113,112,[[1,3,3,0,3,[[58,1,1,0,1],[66,1,1,1,2],[82,1,1,2,3]]],[2,2,2,3,5,[[107,1,1,3,4],[108,1,1,4,5]]],[3,4,4,5,9,[[117,1,1,5,6],[132,1,1,6,7],[143,1,1,7,8],[151,1,1,8,9]]],[4,9,9,9,18,[[157,1,1,9,10],[162,1,1,10,11],[170,2,2,11,13],[171,1,1,13,14],[176,1,1,14,15],[177,1,1,15,16],[179,2,2,16,18]]],[5,5,5,18,23,[[189,1,1,18,19],[196,1,1,19,20],[206,2,2,20,22],[209,1,1,22,23]]],[6,1,1,23,24,[[212,1,1,23,24]]],[8,3,3,24,27,[[241,1,1,24,25],[251,1,1,25,26],[254,1,1,26,27]]],[10,6,6,27,33,[[291,1,1,27,28],[298,1,1,28,29],[300,1,1,29,30],[307,1,1,30,31],[308,1,1,31,32],[309,1,1,32,33]]],[11,5,5,33,38,[[315,1,1,33,34],[317,2,2,34,36],[318,1,1,36,37],[322,1,1,37,38]]],[12,2,2,38,40,[[358,1,1,38,39],[360,1,1,39,40]]],[13,7,7,40,47,[[371,1,1,40,41],[375,1,1,41,42],[386,2,2,42,44],[395,1,1,44,45],[400,1,1,45,46],[401,1,1,46,47]]],[14,3,3,47,50,[[411,1,1,47,48],[412,2,2,48,50]]],[15,1,1,50,51,[[419,1,1,50,51]]],[16,2,2,51,53,[[428,1,1,51,52],[433,1,1,52,53]]],[17,1,1,53,54,[[443,1,1,53,54]]],[18,9,9,54,63,[[507,1,1,54,55],[515,1,1,55,56],[553,1,1,56,57],[586,2,2,57,59],[599,1,1,59,60],[607,1,1,60,61],[611,1,1,61,62],[624,1,1,62,63]]],[19,3,3,63,66,[[639,1,1,63,64],[652,1,1,64,65],[654,1,1,65,66]]],[20,1,1,66,67,[[666,1,1,66,67]]],[22,4,4,67,71,[[689,1,1,67,68],[699,1,1,68,69],[728,1,1,69,70],[739,1,1,70,71]]],[23,9,9,71,80,[[751,1,1,71,72],[758,1,1,72,73],[759,1,1,73,74],[761,1,1,74,75],[779,1,1,75,76],[790,1,1,76,77],[792,1,1,77,78],[793,1,1,78,79],[794,1,1,79,80]]],[25,11,11,80,91,[[803,1,1,80,81],[814,1,1,81,82],[818,1,1,82,83],[823,1,1,83,84],[828,1,1,84,85],[834,1,1,85,86],[845,3,3,86,89],[847,1,1,89,90],[848,1,1,90,91]]],[26,12,11,91,102,[[850,2,2,91,93],[857,2,2,93,95],[859,1,1,95,96],[860,6,5,96,101],[861,1,1,101,102]]],[29,1,1,102,103,[[880,1,1,102,103]]],[32,1,1,103,104,[[897,1,1,103,104]]],[33,2,2,104,106,[[900,1,1,104,105],[901,1,1,105,106]]],[34,1,1,106,107,[[904,1,1,106,107]]],[37,4,4,107,111,[[913,1,1,107,108],[914,1,1,108,109],[924,2,2,109,111]]],[38,1,1,111,112,[[927,1,1,111,112]]]],[1753,1989,2483,3274,3297,3609,4203,4575,4857,5084,5194,5389,5391,5423,5536,5555,5597,5598,5906,6072,6376,6378,6469,6559,7351,7617,7709,8719,8996,9087,9318,9356,9398,9590,9658,9663,9705,9797,10950,11013,11282,11371,11596,11604,11802,11965,11971,12252,12265,12266,12423,12751,12828,13044,14326,14501,15088,15761,15786,16091,16143,16173,16368,16726,17119,17173,17461,17894,18043,18670,18848,19129,19299,19334,19376,19842,20066,20099,20146,20210,20493,20713,20839,21006,21150,21306,21610,21614,21623,21657,21689,21741,21742,21965,21968,22026,22042,22052,22053,22061,22067,22094,22394,22637,22690,22707,22749,22919,22936,23072,23080,23122]]],["standest",[4,4,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,1,1,1,2,[[52,1,1,1,2]]],[5,1,1,2,3,[[191,1,1,2,3]]],[18,1,1,3,4,[[487,1,1,3,4]]]],[622,1584,5949,14042]]],["standeth",[14,14,[[3,1,1,0,1,[[130,1,1,0,1]]],[4,3,3,1,4,[[153,1,1,1,2],[169,1,1,2,3],[181,1,1,3,4]]],[16,2,2,4,6,[[431,1,1,4,5],[432,1,1,5,6]]],[18,3,3,6,9,[[478,1,1,6,7],[503,1,1,7,8],[510,1,1,8,9]]],[21,1,1,9,10,[[672,1,1,9,10]]],[22,3,3,10,13,[[681,1,1,10,11],[724,1,1,11,12],[737,1,1,12,13]]],[26,1,1,13,14,[[861,1,1,13,14]]]],[4122,4930,5376,5694,12798,12816,13940,14285,14377,17563,17720,18593,18814,22082]]],["standing",[10,9,[[8,1,1,0,1,[[254,1,1,0,1]]],[10,3,3,1,4,[[303,2,2,1,3],[312,1,1,3,4]]],[13,2,2,4,6,[[375,1,1,4,5],[384,1,1,5,6]]],[16,1,1,6,7,[[430,1,1,6,7]]],[26,1,1,7,8,[[857,1,1,7,8]]],[37,2,1,8,9,[[913,2,1,8,9]]]],[7726,9209,9212,9499,11382,11560,12781,21967,22913]]],["stay",[10,10,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,1,1,1,2,[[58,1,1,1,2]]],[2,4,4,2,6,[[102,4,4,2,6]]],[5,1,1,6,7,[[196,1,1,6,7]]],[8,1,1,7,8,[[255,1,1,7,8]]],[23,1,1,8,9,[[748,1,1,8,9]]],[27,1,1,9,10,[[874,1,1,9,10]]]],[474,1770,3057,3075,3080,3089,6083,7768,19033,22279]]],["stayed",[7,7,[[4,1,1,0,1,[[162,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[8,1,1,2,3,[[265,1,1,2,3]]],[9,1,1,3,4,[[283,1,1,3,4]]],[11,3,3,4,7,[[316,1,1,4,5],[325,1,1,5,6],[327,1,1,6,7]]]],[5196,6077,7987,8466,9609,9889,9945]]],["still",[13,12,[[3,1,1,0,1,[[125,1,1,0,1]]],[5,2,2,1,3,[[189,1,1,1,2],[197,1,1,2,3]]],[8,1,1,3,4,[[249,1,1,3,4]]],[9,4,3,4,7,[[268,1,1,4,5],[284,1,1,5,6],[286,2,1,6,7]]],[15,1,1,7,8,[[424,1,1,7,8]]],[17,3,3,8,11,[[439,1,1,8,9],[467,1,1,9,10],[472,1,1,10,11]]],[34,1,1,11,12,[[905,1,1,11,12]]]],[3973,5901,6120,7517,8072,8508,8566,12663,12946,13644,13783,22779]]],["stood",[168,160,[[0,9,9,0,9,[[17,2,2,0,2],[23,1,1,2,3],[40,4,4,3,7],[42,1,1,7,8],[44,1,1,8,9]]],[1,7,7,9,16,[[58,1,1,9,10],[63,1,1,10,11],[67,1,1,11,12],[69,2,2,12,14],[81,1,1,14,15],[82,1,1,15,16]]],[2,1,1,16,17,[[98,1,1,16,17]]],[3,6,6,17,23,[[128,1,1,17,18],[132,2,2,18,20],[138,2,2,20,22],[143,1,1,22,23]]],[4,3,3,23,26,[[156,1,1,23,24],[157,1,1,24,25],[183,1,1,25,26]]],[5,8,8,26,34,[[189,2,2,26,28],[190,1,1,28,29],[191,1,1,29,30],[194,1,1,30,31],[196,1,1,31,32],[206,1,1,32,33],[207,1,1,33,34]]],[6,7,7,34,41,[[213,1,1,34,35],[216,1,1,35,36],[217,1,1,36,37],[219,3,3,37,40],[230,1,1,40,41]]],[8,8,7,41,48,[[241,1,1,41,42],[251,1,1,42,43],[252,5,4,43,47],[261,1,1,47,48]]],[9,7,7,48,55,[[267,1,1,48,49],[268,2,2,49,51],[281,1,1,51,52],[284,1,1,52,53],[286,2,2,53,55]]],[10,15,14,55,69,[[291,1,1,55,56],[293,2,2,56,58],[297,1,1,58,59],[298,3,3,59,62],[300,2,2,62,64],[302,1,1,64,65],[303,3,2,65,67],[309,1,1,67,68],[312,1,1,68,69]]],[11,19,17,69,86,[[314,3,2,69,71],[315,1,1,71,72],[316,2,2,72,74],[317,3,3,74,77],[320,1,1,77,78],[321,1,1,78,79],[322,2,2,79,81],[323,2,2,81,83],[330,2,2,83,85],[335,2,1,85,86]]],[12,2,2,86,88,[[343,1,1,86,87],[358,1,1,87,88]]],[13,20,20,88,108,[[369,1,1,88,89],[370,1,1,89,90],[371,1,1,90,91],[372,3,3,91,94],[373,1,1,94,95],[375,1,1,95,96],[376,2,2,96,98],[384,1,1,98,99],[386,3,3,99,102],[389,1,1,102,103],[390,1,1,103,104],[395,1,1,104,105],[396,1,1,105,106],[400,1,1,106,107],[401,1,1,107,108]]],[14,1,1,108,109,[[405,1,1,108,109]]],[15,5,4,109,113,[[419,1,1,109,110],[420,2,1,110,111],[421,1,1,111,112],[424,1,1,112,113]]],[16,3,3,113,116,[[430,1,1,113,114],[433,1,1,114,115],[434,1,1,115,116]]],[18,2,2,116,118,[[581,1,1,116,117],[583,1,1,117,118]]],[22,3,3,118,121,[[684,1,1,118,119],[714,2,2,119,121]]],[23,9,9,121,130,[[759,1,1,121,122],[762,1,1,122,123],[763,1,1,123,124],[767,2,2,124,126],[772,1,1,126,127],[780,1,1,127,128],[790,1,1,128,129],[792,1,1,129,130]]],[25,17,14,130,144,[[802,4,3,130,133],[804,1,1,133,134],[809,2,1,134,135],[810,1,1,135,136],[811,6,5,136,141],[812,1,1,141,142],[822,1,1,142,143],[841,1,1,143,144]]],[26,8,8,144,152,[[850,1,1,144,145],[851,1,1,145,146],[857,2,2,146,148],[859,2,2,148,150],[860,1,1,150,151],[861,1,1,151,152]]],[27,1,1,152,153,[[871,1,1,152,153]]],[30,1,1,153,154,[[888,1,1,153,154]]],[34,1,1,154,155,[[905,1,1,154,155]]],[37,5,5,155,160,[[911,3,3,155,158],[913,2,2,158,160]]]],[432,446,621,1196,1198,1212,1241,1305,1359,1752,1908,2012,2069,2072,2464,2482,2958,4064,4212,4242,4399,4401,4556,5015,5058,5743,5909,5910,5920,5947,6035,6077,6381,6425,6587,6685,6715,6761,6789,6798,7082,7345,7616,7621,7626,7644,7669,7918,8032,8074,8077,8391,8482,8565,8569,8745,8831,8832,8959,8999,9007,9040,9098,9099,9159,9185,9208,9400,9501,9558,9564,9597,9615,9618,9656,9662,9672,9736,9773,9797,9802,9840,9843,10041,10052,10168,10493,10949,11242,11250,11280,11285,11294,11295,11330,11383,11401,11403,11562,11592,11600,11607,11669,11697,11817,11843,11964,11976,12106,12485,12497,12513,12664,12780,12821,12850,15577,15674,17771,18332,18343,19316,19404,19421,19502,19506,19623,19863,20060,20125,20485,20488,20489,20525,20615,20624,20636,20639,20650,20651,20652,20678,20965,21480,21756,21760,21964,21976,22026,22031,22037,22086,22234,22524,22774,22886,22888,22889,22915,22916]]],["stoodest",[2,2,[[4,1,1,0,1,[[156,1,1,0,1]]],[30,1,1,1,2,[[888,1,1,1,2]]]],[5014,22521]]],["tarried",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8406]]],["tarry",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1367]]],["up",[41,40,[[1,3,3,0,3,[[58,1,1,0,1],[75,1,1,1,2],[85,1,1,2,3]]],[10,1,1,3,4,[[312,1,1,3,4]]],[12,1,1,4,5,[[358,1,1,4,5]]],[13,3,3,5,8,[[386,1,1,5,6],[391,1,1,6,7],[399,1,1,7,8]]],[14,2,2,8,10,[[404,2,2,8,10]]],[15,9,9,10,19,[[415,6,6,10,16],[418,1,1,16,17],[419,1,1,17,18],[420,1,1,18,19]]],[16,1,1,19,20,[[432,1,1,19,20]]],[17,2,2,20,22,[[464,1,1,20,21],[465,1,1,21,22]]],[18,1,1,22,23,[[583,1,1,22,23]]],[20,1,1,23,24,[[662,1,1,23,24]]],[22,3,3,24,27,[[722,1,1,24,25],[725,1,1,25,26],[726,1,1,26,27]]],[25,2,2,27,29,[[832,1,1,27,28],[838,1,1,28,29]]],[26,12,11,29,40,[[857,4,3,29,32],[860,7,7,32,39],[861,1,1,39,40]]]],[1758,2250,2586,9515,10935,11610,11718,11927,12090,12095,12328,12330,12333,12340,12341,12342,12402,12421,12498,12814,13540,13577,15681,17396,18544,18612,18627,21244,21407,21983,21984,21986,22038,22039,22040,22043,22050,22056,22057,22082]]],["waited",[5,5,[[10,1,1,0,1,[[310,1,1,0,1]]],[12,2,2,1,3,[[343,2,2,1,3]]],[13,1,1,3,4,[[373,1,1,3,4]]],[15,1,1,4,5,[[424,1,1,4,5]]]],[9446,10486,10487,11330,12668]]],["withstand",[3,2,[[16,1,1,0,1,[[434,1,1,0,1]]],[26,2,1,1,2,[[860,2,1,1,2]]]],[12836,22051]]]]},{"k":"H5976","v":[["stand",[1,1,[[25,1,1,0,1,[[830,1,1,0,1]]]],[21190]]]]},{"k":"H5977","v":[["*",[9,9,[[13,3,3,0,3,[[396,1,1,0,1],[400,1,1,1,2],[401,1,1,2,3]]],[15,3,3,3,6,[[420,1,1,3,4],[421,1,1,4,5],[425,1,1,5,6]]],[26,3,3,6,9,[[857,2,2,6,8],[859,1,1,8,9]]]],[11843,11964,11976,12500,12514,12682,21978,21979,22026]]],["+",[2,2,[[26,2,2,0,2,[[857,1,1,0,1],[859,1,1,1,2]]]],[21979,22026]]],["place",[6,6,[[13,3,3,0,3,[[396,1,1,0,1],[400,1,1,1,2],[401,1,1,2,3]]],[15,3,3,3,6,[[420,1,1,3,4],[421,1,1,4,5],[425,1,1,5,6]]]],[11843,11964,11976,12500,12514,12682]]],["stood",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21978]]]]},{"k":"H5978","v":[["*",[24,24,[[0,2,2,0,2,[[20,1,1,0,1],[30,1,1,1,2]]],[1,1,1,2,3,[[66,1,1,2,3]]],[4,3,3,3,6,[[157,1,1,3,4],[184,2,2,4,6]]],[6,1,1,6,7,[[227,1,1,6,7]]],[17,13,13,7,20,[[441,1,1,7,8],[444,1,1,8,9],[445,1,1,9,10],[448,2,2,10,12],[452,1,1,12,13],[458,2,2,13,15],[463,1,1,15,16],[464,3,3,16,19],[466,1,1,19,20]]],[18,4,4,20,24,[[500,1,1,20,21],[527,1,1,21,22],[532,1,1,22,23],[578,1,1,23,24]]]],[536,880,1985,5084,5792,5797,6990,12982,13086,13098,13172,13173,13262,13425,13429,13518,13537,13538,13552,13601,14239,14679,14750,15519]]],["+",[3,3,[[0,1,1,0,1,[[30,1,1,0,1]]],[17,2,2,1,3,[[445,1,1,1,2],[464,1,1,2,3]]]],[880,13098,13538]]],["against",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13425]]],["by",[1,1,[[4,1,1,0,1,[[157,1,1,0,1]]]],[5084]]],["in",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13552]]],["mine",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14679]]],["take",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13429]]],["unto",[2,2,[[0,1,1,0,1,[[20,1,1,0,1]]],[17,1,1,1,2,[[448,1,1,1,2]]]],[536,13173]]],["with",[13,13,[[1,1,1,0,1,[[66,1,1,0,1]]],[4,2,2,1,3,[[184,2,2,1,3]]],[6,1,1,3,4,[[227,1,1,3,4]]],[17,6,6,4,10,[[444,1,1,4,5],[448,1,1,5,6],[452,1,1,6,7],[463,1,1,7,8],[464,1,1,8,9],[466,1,1,9,10]]],[18,3,3,10,13,[[500,1,1,10,11],[532,1,1,11,12],[578,1,1,12,13]]]],[1985,5792,5797,6990,13086,13172,13262,13518,13537,13601,14239,14750,15519]]],["within",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12982]]]]},{"k":"H5979","v":[["standing",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22590]]]]},{"k":"H5980","v":[["*",[32,28,[[1,5,5,0,5,[[74,1,1,0,1],[77,1,1,1,2],[86,1,1,2,3],[87,1,1,3,4],[88,1,1,4,5]]],[2,1,1,5,6,[[92,1,1,5,6]]],[9,2,1,6,7,[[282,2,1,6,7]]],[10,1,1,7,8,[[297,1,1,7,8]]],[12,5,4,8,12,[[361,2,1,8,9],[362,1,1,9,10],[363,2,2,10,12]]],[15,1,1,12,13,[[424,1,1,12,13]]],[20,2,2,13,15,[[663,1,1,13,14],[665,1,1,14,15]]],[25,15,13,15,28,[[802,2,2,15,17],[804,3,2,17,19],[811,1,1,19,20],[812,1,1,20,21],[841,1,1,21,22],[843,1,1,22,23],[846,2,2,23,25],[849,4,3,25,28]]]],[2222,2320,2618,2651,2684,2787,8439,8954,11046,11054,11089,11093,12648,17413,17443,20484,20485,20510,20515,20652,20677,21495,21559,21636,21637,21715,21720,21723]]],["+",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[12,1,1,1,2,[[363,1,1,1,2]]]],[8954,11089]]],["against",[24,21,[[1,4,4,0,4,[[74,1,1,0,1],[77,1,1,1,2],[86,1,1,2,3],[88,1,1,3,4]]],[9,1,1,4,5,[[282,1,1,4,5]]],[12,4,3,5,8,[[361,2,1,5,6],[362,1,1,6,7],[363,1,1,7,8]]],[15,1,1,8,9,[[424,1,1,8,9]]],[20,1,1,9,10,[[665,1,1,9,10]]],[25,13,11,10,21,[[802,2,2,10,12],[804,3,2,12,14],[841,1,1,14,15],[843,1,1,15,16],[846,2,2,16,18],[849,4,3,18,21]]]],[2222,2320,2618,2684,8439,11046,11054,11093,12648,17443,20484,20485,20510,20515,21495,21559,21636,21637,21715,21720,21723]]],["at",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8439]]],["beside",[2,2,[[25,2,2,0,2,[[811,1,1,0,1],[812,1,1,1,2]]]],[20652,20677]]],["by",[1,1,[[2,1,1,0,1,[[92,1,1,0,1]]]],[2787]]],["points",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17413]]],["to",[1,1,[[1,1,1,0,1,[[87,1,1,0,1]]]],[2651]]]]},{"k":"H5981","v":[["Ummah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6351]]]]},{"k":"H5982","v":[["*",[111,84,[[1,39,30,0,30,[[62,4,2,0,2],[63,2,2,2,4],[75,2,2,4,6],[76,9,7,6,13],[82,2,2,13,15],[84,2,2,15,17],[85,2,2,17,19],[87,13,8,19,27],[88,2,2,27,29],[89,1,1,29,30]]],[3,7,6,30,36,[[119,2,2,30,32],[120,2,2,32,34],[128,1,1,34,35],[130,2,1,35,36]]],[4,2,1,36,37,[[183,2,1,36,37]]],[6,4,4,37,41,[[226,3,3,37,40],[230,1,1,40,41]]],[10,22,13,41,54,[[297,22,13,41,54]]],[11,6,5,54,59,[[323,1,1,54,55],[335,1,1,55,56],[337,4,3,56,59]]],[12,1,1,59,60,[[355,1,1,59,60]]],[13,8,6,60,66,[[369,3,3,60,63],[370,4,2,63,65],[389,1,1,65,66]]],[15,4,2,66,68,[[421,4,2,66,68]]],[16,1,1,68,69,[[426,1,1,68,69]]],[17,2,2,69,71,[[444,1,1,69,70],[461,1,1,70,71]]],[18,2,2,71,73,[[552,1,1,71,72],[576,1,1,72,73]]],[19,1,1,73,74,[[636,1,1,73,74]]],[21,2,2,74,76,[[673,1,1,74,75],[675,1,1,75,76]]],[23,7,6,76,82,[[745,1,1,76,77],[771,1,1,77,78],[796,5,4,78,82]]],[25,3,2,82,84,[[841,1,1,82,83],[843,2,1,83,84]]]],[1888,1889,1908,1913,2267,2272,2282,2283,2284,2286,2287,2288,2289,2482,2483,2542,2548,2602,2604,2643,2644,2645,2647,2648,2650,2652,2661,2697,2704,2725,3728,3729,3774,3775,4064,4122,5743,6974,6975,6978,7094,8936,8937,8940,8949,8950,8951,8952,8953,8954,8955,8956,8975,8976,9843,10168,10235,10238,10239,10898,11244,11245,11246,11258,11259,11669,12523,12530,12708,13057,13478,15074,15506,16639,17581,17613,18964,19615,20293,20296,20297,20298,21526,21558]]],["+",[2,1,[[10,2,1,0,1,[[297,2,1,0,1]]]],[8949]]],["pillar",[29,21,[[1,8,6,0,6,[[62,4,2,0,2],[63,2,2,2,4],[82,2,2,4,6]]],[3,3,2,6,8,[[128,1,1,6,7],[130,2,1,7,8]]],[4,2,1,8,9,[[183,2,1,8,9]]],[6,1,1,9,10,[[230,1,1,9,10]]],[10,2,1,10,11,[[297,2,1,10,11]]],[11,4,3,11,14,[[323,1,1,11,12],[335,1,1,12,13],[337,2,1,13,14]]],[13,1,1,14,15,[[389,1,1,14,15]]],[15,4,2,15,17,[[421,4,2,15,17]]],[18,1,1,17,18,[[576,1,1,17,18]]],[23,3,3,18,21,[[745,1,1,18,19],[796,2,2,19,21]]]],[1888,1889,1908,1913,2482,2483,4064,4122,5743,7094,8955,9843,10168,10239,11669,12523,12530,15506,18964,20297,20298]]],["pillars",[80,65,[[1,31,24,0,24,[[75,2,2,0,2],[76,9,7,2,9],[84,2,2,9,11],[85,2,2,11,13],[87,13,8,13,21],[88,2,2,21,23],[89,1,1,23,24]]],[3,4,4,24,28,[[119,2,2,24,26],[120,2,2,26,28]]],[6,3,3,28,31,[[226,3,3,28,31]]],[10,18,13,31,44,[[297,18,13,31,44]]],[11,2,2,44,46,[[337,2,2,44,46]]],[12,1,1,46,47,[[355,1,1,46,47]]],[13,7,5,47,52,[[369,3,3,47,50],[370,4,2,50,52]]],[16,1,1,52,53,[[426,1,1,52,53]]],[17,2,2,53,55,[[444,1,1,53,54],[461,1,1,54,55]]],[18,1,1,55,56,[[552,1,1,55,56]]],[19,1,1,56,57,[[636,1,1,56,57]]],[21,2,2,57,59,[[673,1,1,57,58],[675,1,1,58,59]]],[23,4,4,59,63,[[771,1,1,59,60],[796,3,3,60,63]]],[25,3,2,63,65,[[841,1,1,63,64],[843,2,1,64,65]]]],[2267,2272,2282,2283,2284,2286,2287,2288,2289,2542,2548,2602,2604,2643,2644,2645,2647,2648,2650,2652,2661,2697,2704,2725,3728,3729,3774,3775,6974,6975,6978,8936,8937,8940,8949,8950,8951,8952,8953,8954,8955,8956,8975,8976,10235,10238,10898,11244,11245,11246,11258,11259,12708,13057,13478,15074,16639,17581,17613,19615,20293,20296,20297,21526,21558]]]]},{"k":"H5983","v":[["*",[105,97,[[0,1,1,0,1,[[18,1,1,0,1]]],[3,2,1,1,2,[[137,2,1,1,2]]],[4,5,4,2,6,[[154,3,2,2,4],[155,2,2,4,6]]],[5,3,3,6,9,[[198,1,1,6,7],[199,2,2,7,9]]],[6,27,27,9,36,[[213,1,1,9,10],[220,6,6,10,16],[221,17,17,16,33],[222,3,3,33,36]]],[8,3,3,36,39,[[246,1,1,36,37],[247,1,1,37,38],[249,1,1,38,39]]],[9,17,15,39,54,[[274,1,1,39,40],[276,11,9,40,49],[277,1,1,49,50],[278,3,3,50,53],[283,1,1,53,54]]],[10,2,2,54,56,[[301,2,2,54,56]]],[11,2,2,56,58,[[335,1,1,56,57],[336,1,1,57,58]]],[12,14,13,58,71,[[355,1,1,58,59],[356,11,10,59,69],[357,2,2,69,71]]],[13,7,5,71,76,[[386,4,4,71,75],[393,3,1,75,76]]],[18,1,1,76,77,[[560,1,1,76,77]]],[22,1,1,77,78,[[689,1,1,77,78]]],[23,9,9,78,87,[[753,1,1,78,79],[769,1,1,79,80],[771,1,1,80,81],[784,2,2,81,83],[785,2,2,83,85],[793,2,2,85,87]]],[25,7,6,87,93,[[822,2,2,87,89],[826,5,4,89,93]]],[26,1,1,93,94,[[860,1,1,93,94]]],[29,1,1,94,95,[[879,1,1,94,95]]],[35,2,2,95,97,[[907,2,2,95,97]]]],[495,4364,4957,4975,4986,4991,6132,6164,6179,6581,6817,6818,6820,6822,6828,6829,6833,6834,6835,6837,6838,6841,6842,6843,6844,6856,6857,6858,6859,6860,6861,6862,6865,6870,6871,6872,7456,7472,7555,8221,8241,8242,8243,8246,8248,8250,8251,8254,8259,8260,8295,8312,8317,8476,9115,9141,10178,10204,10901,10908,10909,10910,10913,10914,10916,10918,10919,10922,10926,10927,10929,11588,11597,11609,11610,11760,15248,17898,19201,19555,19599,19952,19955,19967,19972,20129,20133,20964,20972,21085,21086,21088,21093,22077,22377,22813,22814]]],["+",[14,13,[[13,1,1,0,1,[[393,1,1,0,1]]],[23,6,6,1,7,[[771,1,1,1,2],[784,2,2,2,4],[785,2,2,4,6],[793,1,1,6,7]]],[25,7,6,7,13,[[822,2,2,7,9],[826,5,4,9,13]]]],[11760,19599,19952,19955,19967,19972,20129,20964,20972,21085,21086,21088,21093]]],["Ammon",[90,84,[[0,1,1,0,1,[[18,1,1,0,1]]],[3,2,1,1,2,[[137,2,1,1,2]]],[4,5,4,2,6,[[154,3,2,2,4],[155,2,2,4,6]]],[5,3,3,6,9,[[198,1,1,6,7],[199,2,2,7,9]]],[6,27,27,9,36,[[213,1,1,9,10],[220,6,6,10,16],[221,17,17,16,33],[222,3,3,33,36]]],[8,2,2,36,38,[[247,1,1,36,37],[249,1,1,37,38]]],[9,17,15,38,53,[[274,1,1,38,39],[276,11,9,39,48],[277,1,1,48,49],[278,3,3,49,52],[283,1,1,52,53]]],[10,2,2,53,55,[[301,2,2,53,55]]],[11,2,2,55,57,[[335,1,1,55,56],[336,1,1,56,57]]],[12,14,13,57,70,[[355,1,1,57,58],[356,11,10,58,68],[357,2,2,68,70]]],[13,6,5,70,75,[[386,4,4,70,74],[393,2,1,74,75]]],[18,1,1,75,76,[[560,1,1,75,76]]],[22,1,1,76,77,[[689,1,1,76,77]]],[23,3,3,77,80,[[753,1,1,77,78],[769,1,1,78,79],[793,1,1,79,80]]],[26,1,1,80,81,[[860,1,1,80,81]]],[29,1,1,81,82,[[879,1,1,81,82]]],[35,2,2,82,84,[[907,2,2,82,84]]]],[495,4364,4957,4975,4986,4991,6132,6164,6179,6581,6817,6818,6820,6822,6828,6829,6833,6834,6835,6837,6838,6841,6842,6843,6844,6856,6857,6858,6859,6860,6861,6862,6865,6870,6871,6872,7472,7555,8221,8241,8242,8243,8246,8248,8250,8251,8254,8259,8260,8295,8312,8317,8476,9115,9141,10178,10204,10901,10908,10909,10910,10913,10914,10916,10918,10919,10922,10926,10927,10929,11588,11597,11609,11610,11760,15248,17898,19201,19555,20133,22077,22377,22813,22814]]],["Ammonites",[1,1,[[8,1,1,0,1,[[246,1,1,0,1]]]],[7456]]]]},{"k":"H5984","v":[["*",[22,22,[[4,2,2,0,2,[[154,1,1,0,1],[175,1,1,1,2]]],[8,2,2,2,4,[[246,2,2,2,4]]],[9,1,1,4,5,[[289,1,1,4,5]]],[10,4,4,5,9,[[301,2,2,5,7],[304,2,2,7,9]]],[12,1,1,9,10,[[348,1,1,9,10]]],[13,4,4,10,14,[[378,1,1,10,11],[386,1,1,11,12],[390,1,1,12,13],[392,1,1,13,14]]],[14,1,1,14,15,[[411,1,1,14,15]]],[15,6,6,15,21,[[414,2,2,15,17],[416,2,2,17,19],[425,2,2,19,21]]],[23,1,1,21,22,[[793,1,1,21,22]]]],[4958,5503,7446,7447,8690,9109,9113,9239,9249,10712,11450,11588,11703,11740,12238,12317,12326,12362,12366,12672,12694,20128]]],["+",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20128]]],["Ammon",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12694]]],["Ammonite",[9,9,[[4,1,1,0,1,[[175,1,1,0,1]]],[8,2,2,1,3,[[246,2,2,1,3]]],[9,1,1,3,4,[[289,1,1,3,4]]],[12,1,1,4,5,[[348,1,1,4,5]]],[15,4,4,5,9,[[414,2,2,5,7],[416,1,1,7,8],[425,1,1,8,9]]]],[5503,7446,7447,8690,10712,12317,12326,12362,12672]]],["Ammonites",[7,7,[[4,1,1,0,1,[[154,1,1,0,1]]],[10,2,2,1,3,[[301,2,2,1,3]]],[13,2,2,3,5,[[386,1,1,3,4],[392,1,1,4,5]]],[14,1,1,5,6,[[411,1,1,5,6]]],[15,1,1,6,7,[[416,1,1,6,7]]]],[4958,9109,9113,11588,11740,12238,12366]]],["Ammonitess",[4,4,[[10,2,2,0,2,[[304,2,2,0,2]]],[13,2,2,2,4,[[378,1,1,2,3],[390,1,1,3,4]]]],[9239,9249,11450,11703]]]]},{"k":"H5985","v":[]},{"k":"H5986","v":[["Amos",[7,7,[[29,7,7,0,7,[[879,1,1,0,1],[885,5,5,1,6],[886,1,1,6,7]]]],[22365,22472,22474,22475,22476,22478,22483]]]]},{"k":"H5987","v":[["Amok",[2,2,[[15,2,2,0,2,[[424,2,2,0,2]]]],[12631,12644]]]]},{"k":"H5988","v":[["Ammiel",[6,6,[[3,1,1,0,1,[[129,1,1,0,1]]],[9,3,3,1,4,[[275,2,2,1,3],[283,1,1,3,4]]],[12,2,2,4,6,[[340,1,1,4,5],[363,1,1,5,6]]]],[4087,8231,8232,8476,10366,11082]]]]},{"k":"H5989","v":[["Ammihud",[10,10,[[3,7,7,0,7,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5],[150,2,2,5,7]]],[9,1,1,7,8,[[279,1,1,7,8]]],[12,2,2,8,10,[[344,1,1,8,9],[346,1,1,9,10]]]],[3614,3676,3898,3903,4010,4836,4844,8354,10561,10619]]]]},{"k":"H5990","v":[["Ammizabad",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11115]]]]},{"k":"H5991","v":[]},{"k":"H5992","v":[["Amminadab",[13,12,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,5,5,1,6,[[117,1,1,1,2],[118,1,1,2,3],[123,2,2,3,5],[126,1,1,5,6]]],[7,2,2,6,8,[[235,2,2,6,8]]],[12,5,4,8,12,[[339,2,1,8,9],[343,1,1,9,10],[352,2,2,10,12]]]],[1678,3611,3661,3862,3867,4002,7209,7210,10316,10476,10801,10802]]]]},{"k":"H5993","v":[]},{"k":"H5994","v":[["deep",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21780]]]]},{"k":"H5995","v":[["*",[4,4,[[23,1,1,0,1,[[753,1,1,0,1]]],[29,1,1,1,2,[[880,1,1,1,2]]],[32,1,1,2,3,[[896,1,1,2,3]]],[37,1,1,3,4,[[922,1,1,3,4]]]],[19197,22392,22632,23051]]],["handful",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19197]]],["sheaf",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23051]]],["sheaves",[2,2,[[29,1,1,0,1,[[880,1,1,0,1]]],[32,1,1,1,2,[[896,1,1,1,2]]]],[22392,22632]]]]},{"k":"H5996","v":[["Ammishaddai",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3616,3683,3916,3921,4013]]]]},{"k":"H5997","v":[["*",[12,10,[[2,11,9,0,9,[[95,2,1,0,1],[107,1,1,1,2],[108,3,3,2,5],[113,1,1,5,6],[114,4,3,6,9]]],[37,1,1,9,10,[[923,1,1,9,10]]]],[2851,3271,3292,3296,3298,3465,3483,3484,3486,23066]]],["+",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3483]]],["another",[2,2,[[2,2,2,0,2,[[108,1,1,0,1],[114,1,1,1,2]]]],[3292,3486]]],["fellow",[1,1,[[37,1,1,0,1,[[923,1,1,0,1]]]],[23066]]],["neighbour",[7,6,[[2,7,6,0,6,[[95,2,1,0,1],[108,2,2,1,3],[113,1,1,3,4],[114,2,2,4,6]]]],[2851,3296,3298,3465,3483,3484]]],["neighbour's",[1,1,[[2,1,1,0,1,[[107,1,1,0,1]]]],[3271]]]]},{"k":"H5998","v":[["*",[11,11,[[18,1,1,0,1,[[604,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]],[20,8,8,2,10,[[659,1,1,2,3],[660,4,4,3,7],[663,2,2,7,9],[666,1,1,9,10]]],[31,1,1,10,11,[[892,1,1,10,11]]]],[16122,16866,17318,17344,17352,17353,17354,17413,17415,17475,22578]]],["+",[6,6,[[20,6,6,0,6,[[659,1,1,0,1],[660,3,3,1,4],[663,2,2,4,6]]]],[17318,17344,17352,17353,17413,17415]]],["labour",[2,2,[[18,1,1,0,1,[[604,1,1,0,1]]],[20,1,1,1,2,[[666,1,1,1,2]]]],[16122,17475]]],["laboured",[2,2,[[20,1,1,0,1,[[660,1,1,0,1]]],[31,1,1,1,2,[[892,1,1,1,2]]]],[17354,22578]]],["laboureth",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16866]]]]},{"k":"H5999","v":[["*",[55,54,[[0,1,1,0,1,[[40,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[4,1,1,2,3,[[178,1,1,2,3]]],[6,1,1,3,4,[[220,1,1,3,4]]],[17,8,8,4,12,[[438,1,1,4,5],[439,1,1,5,6],[440,2,2,6,8],[442,1,1,8,9],[446,1,1,9,10],[450,1,1,10,11],[451,1,1,11,12]]],[18,13,13,12,25,[[484,2,2,12,14],[487,2,2,14,16],[502,1,1,16,17],[532,1,1,17,18],[550,2,2,18,20],[567,1,1,20,21],[571,1,1,21,22],[582,1,1,22,23],[584,1,1,23,24],[617,1,1,24,25]]],[19,2,2,25,27,[[651,1,1,25,26],[658,1,1,26,27]]],[20,22,21,27,48,[[659,1,1,27,28],[660,9,8,28,36],[661,1,1,36,37],[662,4,4,37,41],[663,3,3,41,44],[664,1,1,44,45],[666,1,1,45,46],[667,1,1,46,47],[668,1,1,47,48]]],[22,3,3,48,51,[[688,1,1,48,49],[731,1,1,49,50],[737,1,1,50,51]]],[23,1,1,51,52,[[764,1,1,51,52]]],[34,2,2,52,54,[[903,2,2,52,54]]]],[1246,4437,5573,6827,12914,12938,12957,12958,13011,13124,13238,13240,14009,14011,14048,14055,14269,14742,15025,15036,15388,15451,15650,15711,16272,17081,17291,17318,17343,17344,17351,17352,17353,17354,17355,17357,17372,17385,17387,17389,17390,17412,17415,17416,17424,17473,17484,17508,17851,18722,18804,19440,22734,22744]]],["+",[2,2,[[20,1,1,0,1,[[660,1,1,0,1]]],[22,1,1,1,2,[[731,1,1,1,2]]]],[17354,18722]]],["grievance",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22734]]],["grievousness",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17851]]],["iniquity",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22744]]],["labour",[24,23,[[4,1,1,0,1,[[178,1,1,0,1]]],[18,3,3,1,4,[[567,1,1,1,2],[582,1,1,2,3],[584,1,1,3,4]]],[20,19,18,4,22,[[659,1,1,4,5],[660,8,7,5,12],[661,1,1,12,13],[662,2,2,13,15],[663,3,3,15,18],[664,1,1,18,19],[666,1,1,19,20],[667,1,1,20,21],[668,1,1,21,22]]],[23,1,1,22,23,[[764,1,1,22,23]]]],[5573,15388,15650,15711,17318,17343,17344,17351,17352,17353,17355,17357,17372,17389,17390,17412,17415,17416,17424,17473,17484,17508,19440]]],["mischief",[9,9,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,6,6,1,7,[[484,2,2,1,3],[487,2,2,3,5],[571,1,1,5,6],[617,1,1,6,7]]],[19,1,1,7,8,[[651,1,1,7,8]]],[22,1,1,8,9,[[737,1,1,8,9]]]],[13238,14009,14011,14048,14055,15451,16272,17081,18804]]],["miserable",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13240]]],["misery",[3,3,[[6,1,1,0,1,[[220,1,1,0,1]]],[17,1,1,1,2,[[446,1,1,1,2]]],[19,1,1,2,3,[[658,1,1,2,3]]]],[6827,13124,17291]]],["pain",[1,1,[[18,1,1,0,1,[[502,1,1,0,1]]]],[14269]]],["painful",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15036]]],["perverseness",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4437]]],["sorrow",[2,2,[[17,1,1,0,1,[[438,1,1,0,1]]],[18,1,1,1,2,[[532,1,1,1,2]]]],[12914,14742]]],["toil",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1246]]],["travail",[2,2,[[20,2,2,0,2,[[662,2,2,0,2]]]],[17385,17387]]],["trouble",[3,3,[[17,2,2,0,2,[[440,2,2,0,2]]],[18,1,1,2,3,[[550,1,1,2,3]]]],[12957,12958,15025]]],["wearisome",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13011]]],["wickedness",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12938]]]]},{"k":"H6000","v":[["Amal",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10570]]]]},{"k":"H6001","v":[["*",[9,9,[[6,1,1,0,1,[[215,1,1,0,1]]],[17,2,2,1,3,[[438,1,1,1,2],[455,1,1,2,3]]],[19,1,1,3,4,[[643,1,1,3,4]]],[20,5,5,4,9,[[660,2,2,4,6],[661,1,1,6,7],[662,1,1,7,8],[667,1,1,8,9]]]],[6649,12924,13348,16866,17351,17355,17368,17389,17484]]],["labour",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17389]]],["laboured",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17355]]],["laboureth",[2,2,[[19,1,1,0,1,[[643,1,1,0,1]]],[20,1,1,1,2,[[661,1,1,1,2]]]],[16866,17368]]],["misery",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12924]]],["taken",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17351]]],["takest",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17484]]],["wicked",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13348]]],["workmen's",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6649]]]]},{"k":"H6002","v":[["*",[35,33,[[0,2,2,0,2,[[35,2,2,0,2]]],[1,7,7,2,9,[[66,7,7,2,9]]],[3,2,1,9,10,[[140,2,1,9,10]]],[4,2,2,10,12,[[177,2,2,10,12]]],[6,3,3,12,15,[[213,1,1,12,13],[215,1,1,13,14],[220,1,1,14,15]]],[8,13,12,15,27,[[249,1,1,15,16],[250,10,9,16,25],[263,1,1,25,26],[265,1,1,26,27]]],[9,2,2,27,29,[[267,1,1,27,28],[274,1,1,28,29]]],[12,3,3,29,32,[[338,1,1,29,30],[341,1,1,30,31],[355,1,1,31,32]]],[18,1,1,32,33,[[560,1,1,32,33]]]],[1052,1056,1991,1992,1993,1994,1996,1997,1999,4466,5564,5566,6581,6637,6823,7556,7562,7563,7565,7566,7567,7568,7578,7580,7592,7960,7996,8023,8221,10288,10428,10901,15248]]],["+",[2,2,[[9,1,1,0,1,[[274,1,1,0,1]]],[12,1,1,1,2,[[355,1,1,1,2]]]],[8221,10901]]],["Amalek",[22,21,[[0,2,2,0,2,[[35,2,2,0,2]]],[1,7,7,2,9,[[66,7,7,2,9]]],[3,2,1,9,10,[[140,2,1,9,10]]],[4,2,2,10,12,[[177,2,2,10,12]]],[6,2,2,12,14,[[213,1,1,12,13],[215,1,1,13,14]]],[8,5,5,14,19,[[250,4,4,14,18],[263,1,1,18,19]]],[12,1,1,19,20,[[338,1,1,19,20]]],[18,1,1,20,21,[[560,1,1,20,21]]]],[1052,1056,1991,1992,1993,1994,1996,1997,1999,4466,5564,5566,6581,6637,7562,7563,7565,7580,7960,10288,15248]]],["Amalekites",[11,11,[[6,1,1,0,1,[[220,1,1,0,1]]],[8,8,8,1,9,[[249,1,1,1,2],[250,6,6,2,8],[265,1,1,8,9]]],[9,1,1,9,10,[[267,1,1,9,10]]],[12,1,1,10,11,[[341,1,1,10,11]]]],[6823,7556,7566,7567,7568,7578,7580,7592,7996,8023,10428]]]]},{"k":"H6003","v":[["*",[16,16,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,4,4,1,5,[[129,1,1,1,2],[130,3,3,2,5]]],[6,4,4,5,9,[[216,2,2,5,7],[217,1,1,7,8],[222,1,1,8,9]]],[8,5,5,9,14,[[250,2,2,9,11],[262,1,1,11,12],[265,2,2,12,14]]],[9,2,2,14,16,[[267,2,2,14,16]]]],[343,4104,4133,4151,4153,6657,6687,6706,6884,7566,7575,7938,7979,7991,8030,8035]]],["+",[2,2,[[8,2,2,0,2,[[250,1,1,0,1],[265,1,1,1,2]]]],[7575,7991]]],["Amalekite",[2,2,[[9,2,2,0,2,[[267,2,2,0,2]]]],[8030,8035]]],["Amalekites",[12,12,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,4,4,1,5,[[129,1,1,1,2],[130,3,3,2,5]]],[6,4,4,5,9,[[216,2,2,5,7],[217,1,1,7,8],[222,1,1,8,9]]],[8,3,3,9,12,[[250,1,1,9,10],[262,1,1,10,11],[265,1,1,11,12]]]],[343,4104,4133,4151,4153,6657,6687,6706,6884,7566,7938,7979]]]]},{"k":"H6004","v":[["*",[3,3,[[24,1,1,0,1,[[800,1,1,0,1]]],[25,2,2,1,3,[[829,1,1,1,2],[832,1,1,2,3]]]],[20421,21160,21238]]],["dim",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20421]]],["hide",[2,2,[[25,2,2,0,2,[[829,1,1,0,1],[832,1,1,1,2]]]],[21160,21238]]]]},{"k":"H6005","v":[["Immanuel",[2,2,[[22,2,2,0,2,[[685,1,1,0,1],[686,1,1,1,2]]]],[17796,17815]]]]},{"k":"H6006","v":[["*",[9,9,[[0,1,1,0,1,[[43,1,1,0,1]]],[10,1,1,1,2,[[302,1,1,1,2]]],[13,1,1,2,3,[[376,1,1,2,3]]],[15,2,2,3,5,[[416,1,1,3,4],[425,1,1,4,5]]],[18,1,1,5,6,[[545,1,1,5,6]]],[22,2,2,6,8,[[724,2,2,6,8]]],[37,1,1,8,9,[[922,1,1,8,9]]]],[1337,9162,11406,12376,12686,14919,18587,18589,23048]]],["+",[2,2,[[10,1,1,0,1,[[302,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]]],[9162,12686]]],["borne",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18589]]],["burden",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23048]]],["laded",[2,2,[[0,1,1,0,1,[[43,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]]],[1337,12376]]],["loaden",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18587]]],["loadeth",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14919]]],["put",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11406]]]]},{"k":"H6007","v":[["Amasiah",[1,1,[[13,1,1,0,1,[[383,1,1,0,1]]]],[11539]]]]},{"k":"H6008","v":[["Amad",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6347]]]]},{"k":"H6009","v":[["*",[9,9,[[18,1,1,0,1,[[569,1,1,0,1]]],[22,4,4,1,5,[[685,1,1,1,2],[707,1,1,2,3],[708,1,1,3,4],[709,1,1,4,5]]],[23,2,2,5,7,[[793,2,2,5,7]]],[27,2,2,7,9,[[866,1,1,7,8],[870,1,1,8,9]]]],[15416,17793,18208,18250,18256,20135,20157,22154,22217]]],["deep",[5,5,[[18,1,1,0,1,[[569,1,1,0,1]]],[22,2,2,1,3,[[707,1,1,1,2],[708,1,1,2,3]]],[23,2,2,3,5,[[793,2,2,3,5]]]],[15416,18208,18250,20135,20157]]],["deeply",[2,2,[[22,1,1,0,1,[[709,1,1,0,1]]],[27,1,1,1,2,[[870,1,1,1,2]]]],[18256,22217]]],["depth",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17793]]],["profound",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22154]]]]},{"k":"H6010","v":[["*",[69,64,[[0,6,5,0,5,[[13,5,4,0,4],[36,1,1,4,5]]],[3,1,1,5,6,[[130,1,1,5,6]]],[5,12,11,6,17,[[193,2,2,6,8],[194,1,1,8,9],[196,1,1,9,10],[199,2,2,10,12],[201,2,2,12,14],[203,2,1,14,15],[204,2,2,15,17]]],[6,8,8,17,25,[[211,2,2,17,19],[215,1,1,19,20],[216,1,1,20,21],[217,3,3,21,24],[228,1,1,24,25]]],[8,5,5,25,30,[[241,1,1,25,26],[252,2,2,26,28],[256,1,1,28,29],[266,1,1,29,30]]],[9,4,4,30,34,[[271,2,2,30,32],[284,1,1,32,33],[289,1,1,33,34]]],[10,1,1,34,35,[[310,1,1,34,35]]],[12,6,6,35,41,[[347,1,1,35,36],[348,1,1,36,37],[349,1,1,37,38],[351,2,2,38,40],[364,1,1,40,41]]],[13,2,1,41,42,[[386,2,1,41,42]]],[17,2,2,42,44,[[474,2,2,42,44]]],[18,4,4,44,48,[[537,1,1,44,45],[542,1,1,45,46],[561,1,1,46,47],[585,1,1,47,48]]],[21,1,1,48,49,[[672,1,1,48,49]]],[22,4,4,49,53,[[695,1,1,49,50],[700,1,1,50,51],[706,1,1,51,52],[743,1,1,52,53]]],[23,6,5,53,58,[[765,1,1,53,54],[775,1,1,54,55],[791,1,1,55,56],[792,1,1,56,57],[793,2,1,57,58]]],[27,2,2,58,60,[[862,1,1,58,59],[863,1,1,59,60]]],[28,4,3,60,63,[[878,4,3,60,63]]],[32,1,1,63,64,[[893,1,1,63,64]]]],[339,344,346,353,1097,4133,6000,6002,6015,6076,6173,6181,6209,6210,6291,6309,6314,6528,6543,6638,6687,6695,6702,6706,7021,7344,7620,7637,7781,8016,8150,8154,8496,8666,9436,10666,10688,10735,10783,10787,11138,11613,13844,13855,14813,14873,15265,15749,17555,17988,18059,18185,18907,19453,19731,20078,20088,20131,22099,22120,22345,22355,22357,22583]]],["+",[2,2,[[0,1,1,0,1,[[36,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]]],[1097,6209]]],["dale",[2,2,[[0,1,1,0,1,[[13,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]]],[353,8496]]],["vale",[3,3,[[0,3,3,0,3,[[13,3,3,0,3]]]],[339,344,346]]],["valley",[53,50,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[5,11,10,2,12,[[193,2,2,2,4],[194,1,1,4,5],[196,1,1,5,6],[199,2,2,6,8],[201,1,1,8,9],[203,2,1,9,10],[204,2,2,10,12]]],[6,8,8,12,20,[[211,2,2,12,14],[215,1,1,14,15],[216,1,1,15,16],[217,3,3,16,19],[228,1,1,19,20]]],[8,5,5,20,25,[[241,1,1,20,21],[252,2,2,21,23],[256,1,1,23,24],[266,1,1,24,25]]],[9,3,3,25,28,[[271,2,2,25,27],[289,1,1,27,28]]],[12,4,4,28,32,[[347,1,1,28,29],[348,1,1,29,30],[351,2,2,30,32]]],[13,2,1,32,33,[[386,2,1,32,33]]],[17,1,1,33,34,[[474,1,1,33,34]]],[18,3,3,34,37,[[537,1,1,34,35],[561,1,1,35,36],[585,1,1,36,37]]],[22,3,3,37,40,[[695,1,1,37,38],[706,1,1,38,39],[743,1,1,39,40]]],[23,5,5,40,45,[[765,1,1,40,41],[775,1,1,41,42],[791,1,1,42,43],[792,1,1,43,44],[793,1,1,44,45]]],[27,2,2,45,47,[[862,1,1,45,46],[863,1,1,46,47]]],[28,4,3,47,50,[[878,4,3,47,50]]]],[353,4133,6000,6002,6015,6076,6173,6181,6210,6291,6309,6314,6528,6543,6638,6687,6695,6702,6706,7021,7344,7620,7637,7781,8016,8150,8154,8666,10666,10688,10783,10787,11613,13855,14813,15265,15749,17988,18185,18907,19453,19731,20078,20088,20131,22099,22120,22345,22355,22357]]],["valleys",[9,9,[[10,1,1,0,1,[[310,1,1,0,1]]],[12,2,2,1,3,[[349,1,1,1,2],[364,1,1,2,3]]],[17,1,1,3,4,[[474,1,1,3,4]]],[18,1,1,4,5,[[542,1,1,4,5]]],[21,1,1,5,6,[[672,1,1,5,6]]],[22,1,1,6,7,[[700,1,1,6,7]]],[23,1,1,7,8,[[793,1,1,7,8]]],[32,1,1,8,9,[[893,1,1,8,9]]]],[9436,10735,11138,13844,14873,17555,18059,20131,22583]]]]},{"k":"H6011","v":[["*",[2,2,[[19,2,2,0,2,[[636,1,1,0,1],[652,1,1,1,2]]]],[16656,17116]]],["depth",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17116]]],["depths",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16656]]]]},{"k":"H6012","v":[["*",[3,3,[[22,1,1,0,1,[[711,1,1,0,1]]],[25,2,2,1,3,[[804,2,2,1,3]]]],[18298,20507,20508]]],["deeper",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18298]]],["strange",[2,2,[[25,2,2,0,2,[[804,2,2,0,2]]]],[20507,20508]]]]},{"k":"H6013","v":[["*",[17,16,[[2,7,7,0,7,[[102,7,7,0,7]]],[17,2,2,7,9,[[446,1,1,7,8],[447,1,1,8,9]]],[18,1,1,9,10,[[541,1,1,9,10]]],[19,4,4,10,14,[[645,1,1,10,11],[647,1,1,11,12],[649,1,1,12,13],[650,1,1,13,14]]],[20,2,1,14,15,[[665,2,1,14,15]]],[25,1,1,15,16,[[824,1,1,15,16]]]],[3055,3056,3077,3082,3083,3084,3086,13116,13150,14856,16905,16959,17029,17071,17453,21039]]],["+",[2,1,[[20,2,1,0,1,[[665,2,1,0,1]]]],[17453]]],["deep",[6,6,[[18,1,1,0,1,[[541,1,1,0,1]]],[19,4,4,1,5,[[645,1,1,1,2],[647,1,1,2,3],[649,1,1,3,4],[650,1,1,4,5]]],[25,1,1,5,6,[[824,1,1,5,6]]]],[14856,16905,16959,17029,17071,21039]]],["deeper",[8,8,[[2,7,7,0,7,[[102,7,7,0,7]]],[17,1,1,7,8,[[446,1,1,7,8]]]],[3055,3056,3077,3082,3083,3084,3086,13116]]],["things",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13150]]]]},{"k":"H6014","v":[["*",[3,3,[[4,2,2,0,2,[[173,1,1,0,1],[176,1,1,1,2]]],[18,1,1,2,3,[[606,1,1,2,3]]]],[5461,5532,16139]]],["bindeth",[1,1,[[18,1,1,0,1,[[606,1,1,0,1]]]],[16139]]],["merchandise",[2,2,[[4,2,2,0,2,[[173,1,1,0,1],[176,1,1,1,2]]]],[5461,5532]]]]},{"k":"H6015","v":[["wool",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21942]]]]},{"k":"H6016","v":[["*",[14,14,[[1,6,6,0,6,[[65,6,6,0,6]]],[2,4,4,6,10,[[112,4,4,6,10]]],[4,1,1,10,11,[[176,1,1,10,11]]],[7,2,2,11,13,[[233,2,2,11,13]]],[17,1,1,13,14,[[459,1,1,13,14]]]],[1963,1965,1969,1979,1980,1983,3412,3413,3414,3417,5544,7156,7164,13446]]],["omer",[5,5,[[1,5,5,0,5,[[65,5,5,0,5]]]],[1963,1965,1979,1980,1983]]],["omers",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1969]]],["sheaf",[6,6,[[2,4,4,0,4,[[112,4,4,0,4]]],[4,1,1,4,5,[[176,1,1,4,5]]],[17,1,1,5,6,[[459,1,1,5,6]]]],[3412,3413,3414,3417,5544,13446]]],["sheaves",[2,2,[[7,2,2,0,2,[[233,2,2,0,2]]]],[7156,7164]]]]},{"k":"H6017","v":[["Gomorrah",[19,19,[[0,9,9,0,9,[[9,1,1,0,1],[12,1,1,1,2],[13,4,4,2,6],[17,1,1,6,7],[18,2,2,7,9]]],[4,2,2,9,11,[[181,1,1,9,10],[184,1,1,10,11]]],[22,3,3,11,14,[[679,2,2,11,13],[691,1,1,13,14]]],[23,3,3,14,17,[[767,1,1,14,15],[793,1,1,15,16],[794,1,1,16,17]]],[29,1,1,17,18,[[882,1,1,17,18]]],[35,1,1,18,19,[[907,1,1,18,19]]]],[253,328,338,344,346,347,444,481,485,5702,5790,17663,17664,17925,19498,20145,20206,22421,22814]]]]},{"k":"H6018","v":[["Omri",[18,16,[[10,12,10,0,10,[[306,12,10,0,10]]],[11,1,1,10,11,[[320,1,1,10,11]]],[12,3,3,11,14,[[344,1,1,11,12],[346,1,1,12,13],[364,1,1,13,14]]],[13,1,1,14,15,[[388,1,1,14,15]]],[32,1,1,15,16,[[898,1,1,15,16]]]],[9299,9300,9304,9305,9306,9308,9310,9311,9312,9313,9753,10543,10619,11127,11646,22664]]]]},{"k":"H6019","v":[["*",[14,12,[[1,3,2,0,2,[[55,3,2,0,2]]],[3,4,3,2,5,[[119,1,1,2,3],[142,3,2,3,5]]],[12,6,6,5,11,[[343,3,3,5,8],[360,2,2,8,10],[361,1,1,10,11]]],[14,1,1,11,12,[[412,1,1,11,12]]]],[1673,1675,3711,4547,4548,10456,10457,10472,10995,10996,11035,12286]]],["+",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4548]]],["Amram",[12,11,[[1,3,2,0,2,[[55,3,2,0,2]]],[3,2,2,2,4,[[119,1,1,2,3],[142,1,1,3,4]]],[12,6,6,4,10,[[343,3,3,4,7],[360,2,2,7,9],[361,1,1,9,10]]],[14,1,1,10,11,[[412,1,1,10,11]]]],[1673,1675,3711,4547,10456,10457,10472,10995,10996,11035,12286]]],["Amram's",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4548]]]]},{"k":"H6020","v":[["Amramites",[2,2,[[3,1,1,0,1,[[119,1,1,0,1]]],[12,1,1,1,2,[[363,1,1,1,2]]]],[3719,11100]]]]},{"k":"H6021","v":[["Amasa",[16,12,[[9,11,8,0,8,[[283,2,1,0,1],[285,1,1,1,2],[286,8,6,2,8]]],[10,2,2,8,10,[[292,2,2,8,10]]],[12,2,1,10,11,[[339,2,1,10,11]]],[13,1,1,11,12,[[394,1,1,11,12]]]],[8474,8524,8558,8559,8562,8563,8564,8566,8775,8802,10323,11776]]]]},{"k":"H6022","v":[["Amasai",[5,5,[[12,4,4,0,4,[[343,2,2,0,2],[349,1,1,2,3],[352,1,1,3,4]]],[13,1,1,4,5,[[395,1,1,4,5]]]],[10479,10489,10738,10815,11803]]]]},{"k":"H6023","v":[["Amashai",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12601]]]]},{"k":"H6024","v":[["Anab",[2,2,[[5,2,2,0,2,[[197,1,1,0,1],[201,1,1,1,2]]]],[6128,6252]]]]},{"k":"H6025","v":[["*",[19,17,[[0,3,3,0,3,[[39,2,2,0,2],[48,1,1,2,3]]],[2,1,1,3,4,[[114,1,1,3,4]]],[3,4,3,4,7,[[122,2,1,4,5],[129,2,2,5,7]]],[4,4,3,7,10,[[175,1,1,7,8],[184,3,2,8,10]]],[15,1,1,10,11,[[425,1,1,10,11]]],[22,2,2,11,13,[[683,2,2,11,13]]],[23,1,1,13,14,[[752,1,1,13,14]]],[27,2,2,14,16,[[864,1,1,14,15],[870,1,1,15,16]]],[29,1,1,16,17,[[887,1,1,16,17]]]],[1182,1183,1484,3474,3826,4095,4098,5524,5772,5790,12686,17741,17743,19166,22129,22218,22508]]],["grape",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5772]]],["grapes",[17,15,[[0,3,3,0,3,[[39,2,2,0,2],[48,1,1,2,3]]],[2,1,1,3,4,[[114,1,1,3,4]]],[3,4,3,4,7,[[122,2,1,4,5],[129,2,2,5,7]]],[4,3,2,7,9,[[175,1,1,7,8],[184,2,1,8,9]]],[15,1,1,9,10,[[425,1,1,9,10]]],[22,2,2,10,12,[[683,2,2,10,12]]],[23,1,1,12,13,[[752,1,1,12,13]]],[27,1,1,13,14,[[870,1,1,13,14]]],[29,1,1,14,15,[[887,1,1,14,15]]]],[1182,1183,1484,3474,3826,4095,4098,5524,5790,12686,17741,17743,19166,22218,22508]]],["wine",[1,1,[[27,1,1,0,1,[[864,1,1,0,1]]]],[22129]]]]},{"k":"H6026","v":[["*",[10,10,[[4,1,1,0,1,[[180,1,1,0,1]]],[17,2,2,1,3,[[457,1,1,1,2],[462,1,1,2,3]]],[18,2,2,3,5,[[514,2,2,3,5]]],[22,4,4,5,9,[[733,1,1,5,6],[735,1,1,6,7],[736,1,1,7,8],[744,1,1,8,9]]],[23,1,1,9,10,[[750,1,1,9,10]]]],[5667,13415,13491,14454,14461,18742,18769,18800,18933,19091]]],["+",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5667]]],["delicate",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19091]]],["delight",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13415]]],["delighted",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18933]]],["himself",[1,1,[[17,1,1,0,1,[[462,1,1,0,1]]]],[13491]]],["itself",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18742]]],["themselves",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14461]]],["thyself",[2,2,[[18,1,1,0,1,[[514,1,1,0,1]]],[22,1,1,1,2,[[736,1,1,1,2]]]],[14454,18800]]],["yourselves",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18769]]]]},{"k":"H6027","v":[["*",[2,2,[[22,2,2,0,2,[[691,1,1,0,1],[736,1,1,1,2]]]],[17928,18799]]],["delight",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18799]]],["pleasant",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17928]]]]},{"k":"H6028","v":[["*",[3,3,[[4,2,2,0,2,[[180,2,2,0,2]]],[22,1,1,2,3,[[725,1,1,2,3]]]],[5665,5667,18600]]],["delicate",[2,2,[[4,1,1,0,1,[[180,1,1,0,1]]],[22,1,1,1,2,[[725,1,1,1,2]]]],[5665,18600]]],["woman",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5667]]]]},{"k":"H6029","v":[["*",[2,2,[[17,1,1,0,1,[[466,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]]],[13624,16561]]],["bind",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13624]]],["tie",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16561]]]]},{"k":"H6030","v":[["*",[329,317,[[0,19,18,0,18,[[17,1,1,0,1],[22,3,3,1,4],[23,1,1,4,5],[26,2,2,5,7],[29,1,1,7,8],[30,4,4,8,12],[33,1,1,12,13],[34,1,1,13,14],[39,1,1,14,15],[40,2,1,15,16],[41,1,1,16,17],[44,1,1,17,18]]],[1,9,8,18,26,[[53,1,1,18,19],[64,1,1,19,20],[68,2,2,20,22],[69,1,1,22,23],[72,1,1,23,24],[73,1,1,24,25],[81,2,1,25,26]]],[3,7,7,26,33,[[127,1,1,26,27],[137,1,1,27,28],[138,1,1,28,29],[139,2,2,29,31],[148,1,1,31,32],[151,1,1,32,33]]],[4,12,12,33,45,[[153,2,2,33,35],[157,1,1,35,36],[171,2,2,36,38],[172,1,1,38,39],[173,1,1,39,40],[177,1,1,40,41],[178,1,1,41,42],[179,2,2,42,44],[183,1,1,44,45]]],[5,5,5,45,50,[[187,1,1,45,46],[193,1,1,46,47],[195,1,1,47,48],[208,1,1,48,49],[210,1,1,49,50]]],[6,7,6,50,56,[[215,1,1,50,51],[217,1,1,51,52],[218,2,1,52,53],[228,1,1,53,54],[229,1,1,54,55],[230,1,1,55,56]]],[7,3,3,56,59,[[232,1,1,56,57],[233,2,2,57,59]]],[8,38,37,59,96,[[236,2,2,59,61],[239,2,2,61,63],[242,1,1,63,64],[243,1,1,64,65],[244,5,5,65,70],[245,1,1,70,71],[247,1,1,71,72],[249,4,4,72,76],[251,1,1,76,77],[253,1,1,77,78],[255,3,3,78,81],[256,3,3,81,84],[257,2,2,84,86],[258,1,1,86,87],[260,1,1,87,88],[261,4,3,88,91],[263,2,2,91,93],[264,2,2,93,95],[265,1,1,95,96]]],[9,11,11,96,107,[[267,1,1,96,97],[270,1,1,97,98],[279,1,1,98,99],[280,2,2,99,101],[281,1,1,101,102],[285,3,3,102,105],[286,1,1,105,106],[288,1,1,106,107]]],[10,19,16,107,123,[[291,3,3,107,110],[292,2,2,110,112],[293,1,1,112,113],[302,2,2,113,115],[303,1,1,115,116],[308,8,5,116,121],[310,2,2,121,123]]],[11,10,9,123,132,[[313,3,3,123,126],[315,1,1,126,127],[316,1,1,127,128],[319,3,3,128,131],[330,2,1,131,132]]],[12,3,3,132,135,[[349,1,1,132,133],[358,2,2,133,135]]],[13,3,3,135,138,[[376,1,1,135,136],[395,1,1,136,137],[400,1,1,137,138]]],[14,3,3,138,141,[[405,1,1,138,139],[412,2,2,139,141]]],[15,1,1,141,142,[[420,1,1,141,142]]],[16,2,2,142,144,[[430,1,1,142,143],[432,1,1,143,144]]],[17,60,60,144,204,[[436,2,2,144,146],[437,2,2,146,148],[438,1,1,148,149],[439,1,1,149,150],[440,1,1,150,151],[441,1,1,151,152],[443,1,1,152,153],[444,6,6,153,159],[446,2,2,159,161],[447,2,2,161,163],[448,1,1,163,164],[449,1,1,164,165],[450,3,3,165,168],[451,3,3,168,171],[453,1,1,171,172],[454,3,3,172,175],[455,2,2,175,177],[456,1,1,177,178],[457,1,1,178,179],[458,2,2,179,181],[460,1,1,181,182],[461,1,1,182,183],[465,1,1,183,184],[466,1,1,184,185],[467,7,7,185,192],[468,2,2,192,194],[469,1,1,194,195],[470,2,2,195,197],[473,1,1,197,198],[475,5,5,198,203],[477,1,1,203,204]]],[18,38,38,204,242,[[480,1,1,204,205],[481,1,1,205,206],[490,1,1,206,207],[494,1,1,207,208],[495,1,1,208,209],[497,3,3,209,212],[499,2,2,212,214],[504,1,1,214,215],[511,1,1,215,216],[515,1,1,216,217],[532,1,1,217,218],[537,1,1,218,219],[542,1,1,219,220],[546,3,3,220,223],[558,1,1,223,224],[563,2,2,224,226],[568,1,1,226,227],[576,2,2,227,229],[579,1,1,229,230],[585,1,1,230,231],[595,2,2,231,233],[596,4,4,233,237],[597,1,1,237,238],[615,1,1,238,239],[620,2,2,239,241],[624,1,1,241,242]]],[19,7,7,242,249,[[628,1,1,242,243],[642,1,1,243,244],[645,1,1,244,245],[648,1,1,245,246],[652,1,1,246,247],[653,2,2,247,249]]],[20,2,2,249,251,[[663,1,1,249,250],[668,1,1,250,251]]],[21,2,2,251,253,[[672,1,1,251,252],[675,1,1,252,253]]],[22,18,17,253,270,[[681,1,1,253,254],[691,1,1,254,255],[692,2,2,255,257],[699,1,1,257,258],[703,1,1,258,259],[708,1,1,259,260],[714,2,1,260,261],[719,1,1,261,262],[724,1,1,262,263],[727,1,1,263,264],[728,1,1,264,265],[736,1,1,265,266],[737,1,1,266,267],[743,2,2,267,269],[744,1,1,269,270]]],[23,13,13,270,283,[[751,2,2,270,272],[755,1,1,272,273],[758,1,1,273,274],[767,2,2,274,276],[769,1,1,276,277],[777,1,1,277,278],[779,1,1,278,279],[786,1,1,279,280],[788,2,2,280,282],[795,1,1,282,283]]],[25,2,2,283,285,[[815,2,2,283,285]]],[27,9,6,285,291,[[863,6,3,285,288],[866,1,1,288,289],[868,1,1,289,290],[875,1,1,290,291]]],[28,1,1,291,292,[[877,1,1,291,292]]],[29,1,1,292,293,[[885,1,1,292,293]]],[31,1,1,293,294,[[890,1,1,293,294]]],[32,3,3,294,297,[[895,1,1,294,295],[898,2,2,295,297]]],[34,2,2,297,299,[[904,2,2,297,299]]],[36,3,3,299,302,[[910,3,3,299,302]]],[37,14,14,302,316,[[911,4,4,302,306],[913,1,1,306,307],[914,5,5,307,312],[916,2,2,312,314],[920,1,1,314,315],[923,1,1,315,316]]],[38,1,1,316,317,[[926,1,1,316,317]]]],[451,576,581,585,641,764,766,863,887,904,909,916,993,1014,1190,1211,1274,1361,1602,1941,2034,2045,2067,2146,2180,2456,4052,4357,4393,4428,4442,4749,4875,4906,4933,5073,5422,5424,5438,5454,5556,5571,5599,5600,5749,5867,5996,6061,6447,6492,6652,6708,6727,7007,7052,7058,7148,7155,7160,7227,7229,7314,7317,7361,7387,7399,7403,7408,7410,7412,7430,7463,7520,7536,7545,7547,7613,7683,7740,7758,7762,7776,7777,7783,7796,7801,7814,7871,7911,7919,7927,7948,7957,7972,7976,8000,8038,8129,8349,8374,8375,8410,8532,8553,8554,8574,8644,8745,8753,8760,8792,8800,8843,9158,9164,9190,9362,9365,9367,9370,9378,9412,9419,9543,9544,9545,9587,9632,9709,9720,9726,10060,10737,10960,10962,11408,11822,11948,12108,12254,12264,12499,12786,12810,12876,12878,12893,12895,12906,12931,12952,12979,13030,13052,13054,13065,13066,13067,13083,13109,13110,13129,13132,13175,13196,13204,13205,13209,13239,13241,13246,13277,13298,13304,13313,13327,13329,13356,13390,13420,13424,13462,13468,13577,13623,13629,13634,13640,13643,13644,13645,13648,13662,13663,13684,13721,13732,13794,13865,13866,13867,13869,13870,13923,13961,13966,14077,14109,14159,14183,14188,14191,14206,14225,14292,14392,14505,14734,14812,14865,14948,14951,14952,15224,15285,15291,15410,15505,15507,15523,15748,15874,15890,15924,15940,16043,16070,16075,16234,16294,16300,16358,16428,16835,16924,16997,17131,17145,17146,17417,17512,17564,17604,17716,17928,17938,17960,18044,18123,18236,18351,18468,18593,18644,18664,18795,18812,18909,18921,18926,19132,19146,19231,19300,19519,19521,19564,19778,19840,19979,20025,20030,20226,20735,20738,22120,22126,22127,22157,22188,22290,22330,22478,22550,22612,22651,22653,22750,22759,22867,22868,22869,22888,22889,22890,22891,22916,22926,22927,22928,22933,22934,22951,22952,23022,23068,23115]]],["+",[45,42,[[0,6,5,0,5,[[22,3,3,0,3],[33,1,1,3,4],[40,2,1,4,5]]],[5,3,3,5,8,[[187,1,1,5,6],[193,1,1,6,7],[195,1,1,7,8]]],[8,9,9,8,17,[[244,2,2,8,10],[249,1,1,10,11],[255,2,2,11,13],[256,2,2,13,15],[257,1,1,15,16],[260,1,1,16,17]]],[9,4,4,17,21,[[270,1,1,17,18],[281,1,1,18,19],[285,2,2,19,21]]],[10,2,2,21,23,[[291,1,1,21,22],[302,1,1,22,23]]],[11,2,2,23,25,[[319,2,2,23,25]]],[17,9,9,25,34,[[436,2,2,25,27],[437,2,2,27,29],[467,1,1,29,30],[473,1,1,30,31],[475,2,2,31,33],[477,1,1,33,34]]],[20,1,1,34,35,[[668,1,1,34,35]]],[21,1,1,35,36,[[675,1,1,35,36]]],[23,2,2,36,38,[[788,2,2,36,38]]],[27,4,2,38,40,[[863,4,2,38,40]]],[37,2,2,40,42,[[911,2,2,40,42]]]],[576,581,585,993,1211,5867,5996,6061,7399,7410,7520,7758,7762,7776,7777,7801,7871,8129,8410,8553,8554,8753,9164,9709,9726,12876,12878,12893,12895,13629,13794,13865,13867,13923,17512,17604,20025,20030,22126,22127,22889,22891]]],["Answer",[4,4,[[11,1,1,0,1,[[330,1,1,0,1]]],[19,2,2,1,3,[[653,2,2,1,3]]],[22,1,1,3,4,[[714,1,1,3,4]]]],[10060,17145,17146,18351]]],["Answerest",[1,1,[[8,1,1,0,1,[[261,1,1,0,1]]]],[7919]]],["Hear",[4,4,[[10,1,1,0,1,[[308,1,1,0,1]]],[18,3,3,1,4,[[481,1,1,1,2],[546,1,1,2,3],[620,1,1,3,4]]]],[9378,13966,14951,16300]]],["Sing",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16358]]],["account",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13663]]],["another",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7783]]],["answer",[52,52,[[0,2,2,0,2,[[29,1,1,0,1],[44,1,1,1,2]]],[4,4,4,2,6,[[172,1,1,2,3],[173,1,1,3,4],[177,1,1,4,5],[179,1,1,5,6]]],[8,1,1,6,7,[[255,1,1,6,7]]],[10,2,2,7,9,[[302,1,1,7,8],[308,1,1,8,9]]],[11,1,1,9,10,[[316,1,1,9,10]]],[17,17,17,10,27,[[440,1,1,10,11],[444,4,4,11,15],[448,1,1,15,16],[449,1,1,16,17],[454,1,1,17,18],[455,1,1,18,19],[458,1,1,19,20],[466,1,1,20,21],[467,2,2,21,23],[468,1,1,23,24],[470,1,1,24,25],[475,2,2,25,27]]],[18,8,8,27,35,[[504,1,1,27,28],[542,1,1,28,29],[563,1,1,29,30],[568,1,1,30,31],[579,1,1,31,32],[585,1,1,32,33],[596,1,1,33,34],[620,1,1,34,35]]],[19,2,2,35,37,[[628,1,1,35,36],[642,1,1,36,37]]],[22,8,8,37,45,[[692,1,1,37,38],[708,1,1,38,39],[724,1,1,39,40],[728,1,1,40,41],[736,1,1,41,42],[743,2,2,42,44],[744,1,1,44,45]]],[23,3,3,45,48,[[751,1,1,45,46],[777,1,1,46,47],[786,1,1,47,48]]],[25,2,2,48,50,[[815,2,2,48,50]]],[28,1,1,50,51,[[877,1,1,50,51]]],[34,1,1,51,52,[[904,1,1,51,52]]]],[863,1361,5438,5454,5556,5600,7740,9158,9370,9632,12952,13054,13065,13066,13083,13175,13196,13313,13329,13424,13623,13645,13648,13662,13732,13866,13869,14292,14865,15291,15410,15523,15748,15940,16294,16428,16835,17960,18236,18593,18664,18795,18909,18921,18926,19146,19778,19979,20735,20738,22330,22759]]],["answered",[139,138,[[0,11,11,0,11,[[17,1,1,0,1],[23,1,1,1,2],[26,2,2,2,4],[30,4,4,4,8],[34,1,1,8,9],[39,1,1,9,10],[41,1,1,10,11]]],[1,5,5,11,16,[[53,1,1,11,12],[64,1,1,12,13],[68,2,2,13,15],[73,1,1,15,16]]],[3,5,5,16,21,[[127,1,1,16,17],[138,1,1,17,18],[139,2,2,18,20],[148,1,1,20,21]]],[4,2,2,21,23,[[153,2,2,21,23]]],[5,2,2,23,25,[[208,1,1,23,24],[210,1,1,24,25]]],[6,7,6,25,31,[[215,1,1,25,26],[217,1,1,26,27],[218,2,1,27,28],[228,1,1,28,29],[229,1,1,29,30],[230,1,1,30,31]]],[7,2,2,31,33,[[233,2,2,31,33]]],[8,20,20,33,53,[[236,2,2,33,35],[239,2,2,35,37],[244,2,2,37,39],[245,1,1,39,40],[249,3,3,40,43],[251,1,1,43,44],[253,1,1,44,45],[257,1,1,45,46],[258,1,1,46,47],[261,3,3,47,50],[263,1,1,50,51],[264,1,1,51,52],[265,1,1,52,53]]],[9,6,6,53,59,[[279,1,1,53,54],[280,2,2,54,56],[285,1,1,56,57],[286,1,1,57,58],[288,1,1,58,59]]],[10,11,11,59,70,[[291,2,2,59,61],[292,2,2,61,63],[293,1,1,63,64],[303,1,1,64,65],[308,3,3,65,68],[310,2,2,68,70]]],[11,6,6,70,76,[[313,3,3,70,73],[315,1,1,73,74],[319,1,1,74,75],[330,1,1,75,76]]],[12,3,3,76,79,[[349,1,1,76,77],[358,2,2,77,79]]],[13,3,3,79,82,[[376,1,1,79,80],[395,1,1,80,81],[400,1,1,81,82]]],[14,2,2,82,84,[[412,2,2,82,84]]],[15,1,1,84,85,[[420,1,1,84,85]]],[16,2,2,85,87,[[430,1,1,85,86],[432,1,1,86,87]]],[17,24,24,87,111,[[439,1,1,87,88],[441,1,1,88,89],[443,1,1,89,90],[444,2,2,90,92],[446,2,2,92,94],[447,1,1,94,95],[450,1,1,95,96],[451,1,1,96,97],[453,1,1,97,98],[454,1,1,98,99],[455,1,1,99,100],[456,1,1,100,101],[457,1,1,101,102],[458,1,1,102,103],[460,1,1,103,104],[461,1,1,104,105],[467,4,4,105,109],[469,1,1,109,110],[475,1,1,110,111]]],[18,4,4,111,115,[[495,1,1,111,112],[558,1,1,112,113],[576,1,1,113,114],[595,1,1,114,115]]],[22,2,2,115,117,[[699,1,1,115,116],[714,1,1,116,117]]],[23,5,5,117,122,[[751,1,1,117,118],[755,1,1,118,119],[767,2,2,119,121],[779,1,1,121,122]]],[29,1,1,122,123,[[885,1,1,122,123]]],[32,1,1,123,124,[[898,1,1,123,124]]],[34,1,1,124,125,[[904,1,1,124,125]]],[36,3,3,125,128,[[910,3,3,125,128]]],[37,10,10,128,138,[[911,2,2,128,130],[913,1,1,130,131],[914,5,5,131,136],[916,2,2,136,138]]]],[451,641,764,766,887,904,909,916,1014,1190,1274,1602,1941,2034,2045,2180,4052,4393,4428,4442,4749,4906,4933,6447,6492,6652,6708,6727,7007,7052,7058,7155,7160,7227,7229,7314,7317,7403,7412,7430,7536,7545,7547,7613,7683,7796,7814,7911,7919,7927,7948,7976,8000,8349,8374,8375,8532,8574,8644,8745,8760,8792,8800,8843,9190,9362,9365,9367,9412,9419,9543,9544,9545,9587,9720,10060,10737,10960,10962,11408,11822,11948,12254,12264,12499,12786,12810,12931,12979,13030,13052,13067,13109,13110,13129,13204,13239,13277,13298,13327,13356,13390,13420,13462,13468,13634,13640,13643,13644,13684,13870,14159,15224,15505,15874,18044,18351,19132,19231,19519,19521,19840,22478,22653,22750,22867,22868,22869,22888,22890,22916,22926,22927,22928,22933,22934,22951,22952]]],["answeredst",[2,2,[[18,2,2,0,2,[[576,1,1,0,1],[615,1,1,1,2]]]],[15507,16234]]],["answerest",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13241]]],["answereth",[5,5,[[8,1,1,0,1,[[263,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]],[17,1,1,2,3,[[447,1,1,2,3]]],[19,1,1,3,4,[[645,1,1,3,4]]],[20,1,1,4,5,[[663,1,1,4,5]]]],[7957,9365,13132,16924,17417]]],["bear",[2,2,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,1,1,1,2,[[157,1,1,1,2]]]],[2067,5073]]],["beareth",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17131]]],["course",[1,1,[[14,1,1,0,1,[[405,1,1,0,1]]]],[12108]]],["cry",[2,2,[[1,1,1,0,1,[[81,1,1,0,1]]],[22,1,1,1,2,[[691,1,1,1,2]]]],[2456,17928]]],["give",[1,1,[[23,1,1,0,1,[[769,1,1,0,1]]]],[19564]]],["hear",[21,21,[[8,1,1,0,1,[[243,1,1,0,1]]],[10,2,2,1,3,[[308,2,2,1,3]]],[17,1,1,3,4,[[465,1,1,3,4]]],[18,12,12,4,16,[[490,1,1,4,5],[494,1,1,5,6],[497,3,3,6,9],[515,1,1,9,10],[532,1,1,10,11],[537,1,1,11,12],[546,2,2,12,14],[563,1,1,14,15],[596,1,1,15,16]]],[22,1,1,16,17,[[719,1,1,16,17]]],[27,1,1,17,18,[[863,1,1,17,18]]],[32,1,1,18,19,[[895,1,1,18,19]]],[37,2,2,19,21,[[920,1,1,19,20],[923,1,1,20,21]]]],[7387,9367,9378,13577,14077,14109,14183,14188,14191,14505,14734,14812,14948,14952,15285,16043,18468,22126,22612,23022,23068]]],["heard",[11,11,[[8,1,1,0,1,[[242,1,1,0,1]]],[17,1,1,1,2,[[454,1,1,1,2]]],[18,5,5,2,7,[[480,1,1,2,3],[499,1,1,3,4],[511,1,1,4,5],[595,1,1,5,6],[597,1,1,6,7]]],[19,1,1,7,8,[[648,1,1,7,8]]],[22,1,1,8,9,[[727,1,1,8,9]]],[27,1,1,9,10,[[875,1,1,9,10]]],[31,1,1,10,11,[[890,1,1,10,11]]]],[7361,13304,13961,14225,14392,15890,16075,16997,18644,22290,22550]]],["heardest",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15924]]],["hearest",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14206]]],["low",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18123]]],["said",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7408]]],["sang",[1,1,[[8,1,1,0,1,[[264,1,1,0,1]]]],[7972]]],["scholar",[1,1,[[38,1,1,0,1,[[926,1,1,0,1]]]],[23115]]],["shout",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2456]]],["sing",[2,2,[[3,1,1,0,1,[[137,1,1,0,1]]],[27,1,1,1,2,[[863,1,1,1,2]]]],[4357,22120]]],["spake",[3,3,[[17,2,2,0,2,[[438,1,1,0,1],[470,1,1,1,2]]],[21,1,1,2,3,[[672,1,1,2,3]]]],[12906,13721,17564]]],["speak",[5,5,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,2,2,1,3,[[178,1,1,1,2],[179,1,1,2,3]]],[18,1,1,3,4,[[596,1,1,3,4]]],[22,1,1,4,5,[[692,1,1,4,5]]]],[2146,5571,5599,16070,17938]]],["testified",[3,3,[[4,1,1,0,1,[[171,1,1,0,1]]],[7,1,1,1,2,[[232,1,1,1,2]]],[9,1,1,2,3,[[267,1,1,2,3]]]],[5424,7148,8038]]],["testifieth",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22188]]],["testify",[8,8,[[3,1,1,0,1,[[151,1,1,0,1]]],[4,2,2,1,3,[[171,1,1,1,2],[183,1,1,2,3]]],[17,1,1,3,4,[[450,1,1,3,4]]],[22,1,1,4,5,[[737,1,1,4,5]]],[23,1,1,5,6,[[758,1,1,5,6]]],[27,1,1,6,7,[[866,1,1,6,7]]],[32,1,1,7,8,[[898,1,1,7,8]]]],[4875,5422,5749,13209,18812,19300,22157,22651]]],["up",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20226]]],["utter",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13205]]],["witness",[3,3,[[8,1,1,0,1,[[247,1,1,0,1]]],[17,1,1,1,2,[[451,1,1,1,2]]],[22,1,1,2,3,[[681,1,1,2,3]]]],[7463,13246,17716]]]]},{"k":"H6031","v":[["*",[82,78,[[0,5,5,0,5,[[14,1,1,0,1],[15,2,2,1,3],[30,1,1,3,4],[33,1,1,4,5]]],[1,7,6,5,11,[[50,2,2,5,7],[59,1,1,7,8],[71,3,2,8,10],[81,1,1,10,11]]],[2,5,5,11,16,[[105,2,2,11,13],[112,3,3,13,16]]],[3,4,3,16,19,[[140,2,1,16,17],[145,1,1,17,18],[146,1,1,18,19]]],[4,7,7,19,26,[[160,3,3,19,22],[173,1,1,22,23],[174,2,2,23,25],[178,1,1,25,26]]],[6,5,5,26,31,[[226,3,3,26,29],[229,1,1,29,30],[230,1,1,30,31]]],[9,5,5,31,36,[[273,1,1,31,32],[279,4,4,32,36]]],[10,4,3,36,39,[[292,2,1,36,37],[298,1,1,37,38],[301,1,1,38,39]]],[11,1,1,39,40,[[329,1,1,39,40]]],[13,1,1,40,41,[[372,1,1,40,41]]],[14,1,1,41,42,[[410,1,1,41,42]]],[17,2,2,42,44,[[465,1,1,42,43],[472,1,1,43,44]]],[18,15,15,44,59,[[512,1,1,44,45],[532,1,1,45,46],[565,1,1,46,47],[566,1,1,47,48],[567,1,1,48,49],[571,1,1,49,50],[579,1,1,50,51],[582,1,1,51,52],[584,1,1,52,53],[593,1,1,53,54],[596,4,4,54,58],[609,1,1,58,59]]],[20,2,2,59,61,[[659,1,1,59,60],[661,1,1,60,61]]],[22,9,9,61,70,[[705,1,1,61,62],[709,1,1,62,63],[731,2,2,63,65],[736,3,3,65,68],[738,1,1,68,69],[742,1,1,69,70]]],[24,2,2,70,72,[[799,1,1,70,71],[801,1,1,71,72]]],[25,2,2,72,74,[[823,2,2,72,74]]],[26,1,1,74,75,[[859,1,1,74,75]]],[33,2,1,75,76,[[900,2,1,75,76]]],[35,1,1,76,77,[[908,1,1,76,77]]],[37,1,1,77,78,[[920,1,1,77,78]]]],[373,387,390,923,982,1543,1544,1780,2135,2136,2456,3230,3232,3429,3431,3434,4470,4615,4661,5139,5140,5153,5461,5494,5499,5572,6954,6955,6968,7048,7059,8190,8329,8331,8339,8349,8796,9020,9147,10003,11308,12222,13568,13792,14423,14751,15315,15348,15393,15436,15544,15624,15716,15858,15965,15969,15973,16005,16152,17328,17369,18153,18254,18715,18718,18789,18791,18796,18835,18897,20387,20453,20986,20987,22027,22696,22839,23018]]],["+",[13,12,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,2,1,1,2,[[71,2,1,1,2]]],[2,4,4,2,6,[[105,2,2,2,4],[112,2,2,4,6]]],[3,1,1,6,7,[[145,1,1,6,7]]],[4,1,1,7,8,[[174,1,1,7,8]]],[9,2,2,8,10,[[279,2,2,8,10]]],[10,1,1,10,11,[[301,1,1,10,11]]],[25,1,1,11,12,[[823,1,1,11,12]]]],[923,2136,3230,3232,3429,3434,4615,5494,8339,8349,9147,20987]]],["abase",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18254]]],["afflict",[20,19,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,2,2,1,3,[[50,1,1,1,2],[71,1,1,2,3]]],[3,3,2,3,5,[[140,2,1,3,4],[146,1,1,4,5]]],[6,3,3,5,8,[[226,3,3,5,8]]],[9,1,1,8,9,[[273,1,1,8,9]]],[13,1,1,9,10,[[372,1,1,9,10]]],[17,1,1,10,11,[[472,1,1,10,11]]],[18,3,3,11,14,[[532,1,1,11,12],[566,1,1,12,13],[571,1,1,13,14]]],[22,2,2,14,16,[[736,1,1,14,15],[742,1,1,15,16]]],[24,1,1,16,17,[[799,1,1,16,17]]],[33,1,1,17,18,[[900,1,1,17,18]]],[35,1,1,18,19,[[908,1,1,18,19]]]],[373,1543,2135,4470,4661,6954,6955,6968,8190,11308,13792,14751,15348,15436,18791,18897,20387,22696,22839]]],["afflicted",[21,20,[[1,1,1,0,1,[[50,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[4,1,1,2,3,[[178,1,1,2,3]]],[10,2,1,3,4,[[292,2,1,3,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[17,1,1,5,6,[[465,1,1,5,6]]],[18,8,8,6,14,[[565,1,1,6,7],[567,1,1,7,8],[584,1,1,8,9],[593,1,1,9,10],[596,4,4,10,14]]],[22,5,5,14,19,[[731,2,2,14,16],[736,2,2,16,18],[738,1,1,18,19]]],[33,1,1,19,20,[[900,1,1,19,20]]]],[1544,3431,5572,8796,10003,13568,15315,15393,15716,15858,15965,15969,15973,16005,18715,18718,18789,18796,18835,22696]]],["afflictest",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9020]]],["afflictions",[1,1,[[18,1,1,0,1,[[609,1,1,0,1]]]],[16152]]],["defiled",[1,1,[[0,1,1,0,1,[[33,1,1,0,1]]]],[982]]],["exercised",[2,2,[[20,2,2,0,2,[[659,1,1,0,1],[661,1,1,1,2]]]],[17328,17369]]],["force",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8329]]],["forced",[2,2,[[6,1,1,0,1,[[230,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]]],[7059,8331]]],["hardly",[1,1,[[0,1,1,0,1,[[15,1,1,0,1]]]],[387]]],["humble",[3,3,[[4,2,2,0,2,[[160,2,2,0,2]]],[6,1,1,2,3,[[229,1,1,2,3]]]],[5139,5153,7048]]],["humbled",[5,5,[[4,3,3,0,3,[[160,1,1,0,1],[173,1,1,1,2],[174,1,1,2,3]]],[18,1,1,3,4,[[512,1,1,3,4]]],[25,1,1,4,5,[[823,1,1,4,5]]]],[5140,5461,5499,14423,20986]]],["hurt",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15624]]],["ourselves",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12222]]],["ravished",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20453]]],["sing",[2,2,[[1,1,1,0,1,[[81,1,1,0,1]]],[22,1,1,1,2,[[705,1,1,1,2]]]],[2456,18153]]],["thyself",[3,3,[[0,1,1,0,1,[[15,1,1,0,1]]],[1,1,1,1,2,[[59,1,1,1,2]]],[26,1,1,2,3,[[859,1,1,2,3]]]],[390,1780,22027]]],["troubled",[1,1,[[37,1,1,0,1,[[920,1,1,0,1]]]],[23018]]],["weakened",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15544]]]]},{"k":"H6032","v":[["*",[30,28,[[26,30,28,0,28,[[851,9,9,0,9],[852,9,8,9,17],[853,3,2,17,19],[854,4,4,19,23],[855,4,4,23,27],[856,1,1,27,28]]]],[21763,21765,21766,21768,21773,21778,21784,21785,21805,21816,21821,21823,21826,21831,21832,21833,21835,21856,21867,21881,21884,21887,21891,21917,21918,21921,21925,21935]]],["answered",[16,16,[[26,16,16,0,16,[[851,9,9,0,9],[852,3,3,9,12],[853,1,1,12,13],[854,1,1,13,14],[855,2,2,14,16]]]],[21763,21765,21766,21768,21773,21778,21784,21785,21805,21823,21831,21832,21856,21891,21917,21918]]],["spake",[14,14,[[26,14,14,0,14,[[852,6,6,0,6],[853,2,2,6,8],[854,3,3,8,11],[855,2,2,11,13],[856,1,1,13,14]]]],[21816,21821,21826,21831,21833,21835,21856,21867,21881,21884,21887,21921,21925,21935]]]]},{"k":"H6033","v":[["poor",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]]]},{"k":"H6034","v":[["Anah",[12,10,[[0,9,7,0,7,[[35,9,7,0,7]]],[12,3,3,7,10,[[338,3,3,7,10]]]],[1042,1054,1058,1060,1064,1065,1069,10290,10292,10293]]]]},{"k":"H6035","v":[["*",[21,20,[[3,1,1,0,1,[[128,1,1,0,1]]],[18,12,11,1,12,[[486,1,1,1,2],[487,2,2,2,4],[499,1,1,4,5],[502,2,1,5,6],[511,1,1,6,7],[514,1,1,7,8],[546,1,1,8,9],[553,1,1,9,10],[624,1,1,10,11],[626,1,1,11,12]]],[19,3,3,12,15,[[630,1,1,12,13],[641,1,1,13,14],[643,1,1,14,15]]],[22,3,3,15,18,[[689,1,1,15,16],[707,1,1,16,17],[739,1,1,17,18]]],[29,1,1,18,19,[[880,1,1,18,19]]],[35,1,1,19,20,[[907,1,1,19,20]]]],[4062,14033,14053,14058,14230,14260,14390,14461,14967,15090,16357,16389,16489,16793,16859,17888,18212,18844,22386,22808]]],["humble",[5,5,[[18,5,5,0,5,[[486,1,1,0,1],[487,2,2,1,3],[511,1,1,3,4],[546,1,1,4,5]]]],[14033,14053,14058,14390,14967]]],["lowly",[2,2,[[19,2,2,0,2,[[630,1,1,0,1],[643,1,1,1,2]]]],[16489,16859]]],["meek",[13,12,[[3,1,1,0,1,[[128,1,1,0,1]]],[18,7,6,1,7,[[499,1,1,1,2],[502,2,1,2,3],[514,1,1,3,4],[553,1,1,4,5],[624,1,1,5,6],[626,1,1,6,7]]],[22,3,3,7,10,[[689,1,1,7,8],[707,1,1,8,9],[739,1,1,9,10]]],[29,1,1,10,11,[[880,1,1,10,11]]],[35,1,1,11,12,[[907,1,1,11,12]]]],[4062,14230,14260,14461,15090,16357,16389,17888,18212,18844,22386,22808]]],["poor",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16793]]]]},{"k":"H6036","v":[["Anub",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10393]]]]},{"k":"H6037","v":[["meekness",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14601]]]]},{"k":"H6038","v":[["*",[6,6,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]],[19,3,3,2,5,[[642,1,1,2,3],[645,1,1,3,4],[649,1,1,4,5]]],[35,1,1,5,6,[[907,1,1,5,6]]]],[8638,14153,16840,16913,17019,22808]]],["gentleness",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8638,14153]]],["humility",[3,3,[[19,3,3,0,3,[[642,1,1,0,1],[645,1,1,1,2],[649,1,1,2,3]]]],[16840,16913,17019]]],["meekness",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22808]]]]},{"k":"H6039","v":[["affliction",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14228]]]]},{"k":"H6040","v":[["*",[37,37,[[0,4,4,0,4,[[15,1,1,0,1],[28,1,1,1,2],[30,1,1,2,3],[40,1,1,3,4]]],[1,3,3,4,7,[[52,2,2,4,6],[53,1,1,6,7]]],[4,2,2,7,9,[[168,1,1,7,8],[178,1,1,8,9]]],[8,1,1,9,10,[[236,1,1,9,10]]],[9,1,1,10,11,[[282,1,1,10,11]]],[11,1,1,11,12,[[326,1,1,11,12]]],[12,1,1,12,13,[[359,1,1,12,13]]],[15,1,1,13,14,[[421,1,1,13,14]]],[17,6,6,14,20,[[445,1,1,14,15],[465,2,2,15,17],[471,3,3,17,20]]],[18,10,10,20,30,[[486,1,1,20,21],[502,1,1,21,22],[508,1,1,22,23],[521,1,1,23,24],[565,1,1,24,25],[584,2,2,25,27],[596,3,3,27,30]]],[19,1,1,30,31,[[658,1,1,30,31]]],[22,1,1,31,32,[[726,1,1,31,32]]],[24,5,5,32,37,[[797,3,3,32,35],[799,2,2,35,37]]]],[392,827,915,1247,1586,1596,1632,5345,5573,7223,8438,9922,10978,12520,13101,13573,13584,13744,13751,13757,14034,14269,14338,14595,15317,15709,15740,15948,15990,16051,17289,18624,20313,20317,20319,20355,20373]]],["+",[5,5,[[1,1,1,0,1,[[52,1,1,0,1]]],[17,1,1,1,2,[[471,1,1,1,2]]],[18,1,1,2,3,[[584,1,1,2,3]]],[19,1,1,3,4,[[658,1,1,3,4]]],[24,1,1,4,5,[[797,1,1,4,5]]]],[1596,13757,15740,17289,20313]]],["affliction",[29,29,[[0,4,4,0,4,[[15,1,1,0,1],[28,1,1,1,2],[30,1,1,2,3],[40,1,1,3,4]]],[1,2,2,4,6,[[52,1,1,4,5],[53,1,1,5,6]]],[4,2,2,6,8,[[168,1,1,6,7],[178,1,1,7,8]]],[8,1,1,8,9,[[236,1,1,8,9]]],[9,1,1,9,10,[[282,1,1,9,10]]],[11,1,1,10,11,[[326,1,1,10,11]]],[15,1,1,11,12,[[421,1,1,11,12]]],[17,5,5,12,17,[[445,1,1,12,13],[465,2,2,13,15],[471,2,2,15,17]]],[18,7,7,17,24,[[502,1,1,17,18],[521,1,1,18,19],[565,1,1,19,20],[584,1,1,20,21],[596,3,3,21,24]]],[22,1,1,24,25,[[726,1,1,24,25]]],[24,4,4,25,29,[[797,2,2,25,27],[799,2,2,27,29]]]],[392,827,915,1247,1586,1632,5345,5573,7223,8438,9922,12520,13101,13573,13584,13744,13751,14269,14595,15317,15709,15948,15990,16051,18624,20317,20319,20355,20373]]],["trouble",[3,3,[[12,1,1,0,1,[[359,1,1,0,1]]],[18,2,2,1,3,[[486,1,1,1,2],[508,1,1,2,3]]]],[10978,14034,14338]]]]},{"k":"H6041","v":[["*",[74,72,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,2,2,1,3,[[108,1,1,1,2],[112,1,1,2,3]]],[4,4,4,3,7,[[167,1,1,3,4],[176,3,3,4,7]]],[9,1,1,7,8,[[288,1,1,7,8]]],[17,7,7,8,15,[[459,3,3,8,11],[464,1,1,11,12],[469,1,1,12,13],[471,2,2,13,15]]],[18,28,26,15,41,[[486,1,1,15,16],[487,3,2,16,18],[489,1,1,18,19],[491,1,1,19,20],[495,1,1,20,21],[499,1,1,21,22],[502,1,1,22,23],[511,1,1,23,24],[512,2,1,24,25],[514,1,1,25,26],[517,1,1,26,27],[545,1,1,27,28],[546,1,1,28,29],[547,1,1,29,30],[549,3,3,30,33],[551,2,2,33,35],[559,1,1,35,36],[563,1,1,36,37],[565,1,1,37,38],[586,2,2,38,40],[617,1,1,40,41]]],[19,5,5,41,46,[[642,1,1,41,42],[649,1,1,42,43],[657,1,1,43,44],[658,2,2,44,46]]],[20,1,1,46,47,[[664,1,1,46,47]]],[22,13,13,47,60,[[681,2,2,47,49],[688,2,2,49,51],[692,1,1,51,52],[704,1,1,52,53],[710,1,1,53,54],[719,1,1,54,55],[727,1,1,55,56],[729,1,1,56,57],[732,1,1,57,58],[736,1,1,58,59],[744,1,1,59,60]]],[23,1,1,60,61,[[766,1,1,60,61]]],[25,4,4,61,65,[[817,1,1,61,62],[819,2,2,62,64],[823,1,1,64,65]]],[29,1,1,65,66,[[886,1,1,65,66]]],[34,1,1,66,67,[[905,1,1,66,67]]],[35,1,1,67,68,[[908,1,1,67,68]]],[37,4,4,68,72,[[917,1,1,68,69],[919,1,1,69,70],[921,2,2,70,72]]]],[2138,3291,3424,5330,5537,5539,5540,8630,13440,13445,13450,13544,13711,13742,13751,14039,14043,14050,14071,14086,14145,14228,14267,14394,14420,14464,14542,14910,14964,14976,15002,15004,15012,15067,15069,15236,15285,15323,15771,15777,16275,16822,17037,17265,17293,17304,17425,17721,17722,17852,17880,17960,18136,18266,18468,18649,18694,18734,18793,18924,19470,20811,20861,20866,21005,22485,22782,22832,22972,23008,23035,23039]]],["+",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20866]]],["afflicted",[14,14,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[18,6,6,2,8,[[495,1,1,2,3],[499,1,1,3,4],[502,1,1,4,5],[559,1,1,5,6],[565,1,1,6,7],[617,1,1,7,8]]],[19,2,2,8,10,[[642,1,1,8,9],[649,1,1,9,10]]],[22,3,3,10,13,[[727,1,1,10,11],[729,1,1,11,12],[732,1,1,12,13]]],[35,1,1,13,14,[[908,1,1,13,14]]]],[8630,13711,14145,14228,14267,15236,15323,16275,16822,17037,18649,18694,18734,22832]]],["lowly",[1,1,[[37,1,1,0,1,[[919,1,1,0,1]]]],[23008]]],["poor",[58,56,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,2,2,1,3,[[108,1,1,1,2],[112,1,1,2,3]]],[4,4,4,3,7,[[167,1,1,3,4],[176,3,3,4,7]]],[17,6,6,7,13,[[459,3,3,7,10],[464,1,1,10,11],[471,2,2,11,13]]],[18,22,20,13,33,[[486,1,1,13,14],[487,3,2,14,16],[489,1,1,16,17],[491,1,1,17,18],[511,1,1,18,19],[512,2,1,19,20],[514,1,1,20,21],[517,1,1,21,22],[545,1,1,22,23],[546,1,1,23,24],[547,1,1,24,25],[549,3,3,25,28],[551,2,2,28,30],[563,1,1,30,31],[586,2,2,31,33]]],[19,3,3,33,36,[[657,1,1,33,34],[658,2,2,34,36]]],[20,1,1,36,37,[[664,1,1,36,37]]],[22,10,10,37,47,[[681,2,2,37,39],[688,2,2,39,41],[692,1,1,41,42],[704,1,1,42,43],[710,1,1,43,44],[719,1,1,44,45],[736,1,1,45,46],[744,1,1,46,47]]],[23,1,1,47,48,[[766,1,1,47,48]]],[25,3,3,48,51,[[817,1,1,48,49],[819,1,1,49,50],[823,1,1,50,51]]],[29,1,1,51,52,[[886,1,1,51,52]]],[34,1,1,52,53,[[905,1,1,52,53]]],[37,3,3,53,56,[[917,1,1,53,54],[921,2,2,54,56]]]],[2138,3291,3424,5330,5537,5539,5540,13440,13445,13450,13544,13742,13751,14039,14043,14050,14071,14086,14394,14420,14464,14542,14910,14964,14976,15002,15004,15012,15067,15069,15285,15771,15777,17265,17293,17304,17425,17721,17722,17852,17880,17960,18136,18266,18468,18793,18924,19470,20811,20861,21005,22485,22782,22972,23035,23039]]]]},{"k":"H6042","v":[["Unni",[3,3,[[12,2,2,0,2,[[352,2,2,0,2]]],[15,1,1,2,3,[[424,1,1,2,3]]]],[10809,10811,12633]]]]},{"k":"H6043","v":[["Anaiah",[2,2,[[15,2,2,0,2,[[420,1,1,0,1],[422,1,1,1,2]]]],[12497,12571]]]]},{"k":"H6044","v":[["Anim",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6252]]]]},{"k":"H6045","v":[["*",[8,8,[[20,8,8,0,8,[[659,1,1,0,1],[660,2,2,1,3],[661,1,1,3,4],[662,1,1,4,5],[663,2,2,5,7],[666,1,1,7,8]]]],[17328,17356,17359,17369,17389,17400,17411,17474]]],["business",[2,2,[[20,2,2,0,2,[[663,1,1,0,1],[666,1,1,1,2]]]],[17400,17474]]],["travail",[6,6,[[20,6,6,0,6,[[659,1,1,0,1],[660,2,2,1,3],[661,1,1,3,4],[662,1,1,4,5],[663,1,1,5,6]]]],[17328,17356,17359,17369,17389,17411]]]]},{"k":"H6046","v":[["Anem",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10527]]]]},{"k":"H6047","v":[["Anamim",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[247,10263]]]]},{"k":"H6048","v":[["Anammelech",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10014]]]]},{"k":"H6049","v":[["*",[11,11,[[0,1,1,0,1,[[8,1,1,0,1]]],[2,1,1,1,2,[[108,1,1,1,2]]],[4,2,2,2,4,[[170,2,2,2,4]]],[6,1,1,4,5,[[219,1,1,4,5]]],[11,1,1,5,6,[[333,1,1,5,6]]],[13,1,1,6,7,[[399,1,1,6,7]]],[22,2,2,7,9,[[680,1,1,7,8],[735,1,1,8,9]]],[23,1,1,9,10,[[771,1,1,9,10]]],[32,1,1,10,11,[[897,1,1,10,11]]]],[219,3307,5394,5398,6791,10125,11914,17691,18768,19605,22645]]],["Meonenim",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6791]]],["bring",[1,1,[[0,1,1,0,1,[[8,1,1,0,1]]]],[219]]],["enchanters",[1,1,[[23,1,1,0,1,[[771,1,1,0,1]]]],[19605]]],["soothsayers",[2,2,[[22,1,1,0,1,[[680,1,1,0,1]]],[32,1,1,1,2,[[897,1,1,1,2]]]],[17691,22645]]],["sorceress",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18768]]],["times",[5,5,[[2,1,1,0,1,[[108,1,1,0,1]]],[4,2,2,1,3,[[170,2,2,1,3]]],[11,1,1,3,4,[[333,1,1,3,4]]],[13,1,1,4,5,[[399,1,1,4,5]]]],[3307,5394,5398,10125,11914]]]]},{"k":"H6050","v":[["clouds",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21946]]]]},{"k":"H6051","v":[["*",[87,80,[[0,4,3,0,3,[[8,4,3,0,3]]],[1,20,19,3,22,[[62,2,2,3,5],[63,3,3,5,8],[65,1,1,8,9],[68,2,2,9,11],[73,4,3,11,14],[82,2,2,14,16],[83,1,1,16,17],[89,5,5,17,22]]],[2,2,2,22,24,[[105,2,2,22,24]]],[3,20,16,24,40,[[125,11,8,24,32],[126,3,3,32,35],[127,1,1,35,36],[128,2,2,36,38],[130,2,1,38,39],[132,1,1,39,40]]],[4,5,4,40,44,[[153,1,1,40,41],[156,1,1,41,42],[157,1,1,42,43],[183,2,1,43,44]]],[10,2,2,44,46,[[298,2,2,44,46]]],[13,2,2,46,48,[[371,2,2,46,48]]],[15,2,2,48,50,[[421,2,2,48,50]]],[17,6,6,50,56,[[442,1,1,50,51],[461,2,2,51,53],[472,2,2,53,55],[473,1,1,55,56]]],[18,4,4,56,60,[[555,1,1,56,57],[574,1,1,57,58],[576,1,1,58,59],[582,1,1,59,60]]],[22,2,2,60,62,[[682,1,1,60,61],[722,1,1,61,62]]],[23,1,1,62,63,[[748,1,1,62,63]]],[24,1,1,63,64,[[799,1,1,63,64]]],[25,11,11,64,75,[[802,2,2,64,66],[809,1,1,66,67],[811,2,2,67,69],[831,2,2,69,71],[833,1,1,71,72],[835,1,1,72,73],[839,2,2,73,75]]],[27,2,2,75,77,[[867,1,1,75,76],[874,1,1,76,77]]],[28,1,1,77,78,[[877,1,1,77,78]]],[33,1,1,78,79,[[900,1,1,78,79]]],[35,1,1,79,80,[[906,1,1,79,80]]]],[218,219,221,1888,1889,1908,1909,1913,1957,2035,2042,2192,2193,2195,2482,2483,2501,2741,2742,2743,2744,2745,3203,3214,3980,3981,3982,3983,3984,3985,3986,3987,3999,4000,4022,4049,4064,4069,4122,4236,4925,5015,5075,5743,8995,8996,11281,11282,12523,12530,13017,13475,13476,13780,13784,13802,15127,15480,15506,15645,17738,18555,19040,20398,20468,20492,20615,20636,20637,21207,21222,21255,21325,21434,21441,22171,22269,22313,22687,22802]]],["Clouds",[1,1,[[18,1,1,0,1,[[574,1,1,0,1]]]],[15480]]],["cloud",[75,68,[[0,4,3,0,3,[[8,4,3,0,3]]],[1,18,17,3,20,[[62,2,2,3,5],[63,3,3,5,8],[65,1,1,8,9],[68,2,2,9,11],[73,4,3,11,14],[83,1,1,14,15],[89,5,5,15,20]]],[2,2,2,20,22,[[105,2,2,20,22]]],[3,20,16,22,38,[[125,11,8,22,30],[126,3,3,30,33],[127,1,1,33,34],[128,2,2,34,36],[130,2,1,36,37],[132,1,1,37,38]]],[4,4,3,38,41,[[153,1,1,38,39],[157,1,1,39,40],[183,2,1,40,41]]],[10,2,2,41,43,[[298,2,2,41,43]]],[13,2,2,43,45,[[371,2,2,43,45]]],[15,1,1,45,46,[[421,1,1,45,46]]],[17,6,6,46,52,[[442,1,1,46,47],[461,2,2,47,49],[472,2,2,49,51],[473,1,1,51,52]]],[18,2,2,52,54,[[555,1,1,52,53],[582,1,1,53,54]]],[22,2,2,54,56,[[682,1,1,54,55],[722,1,1,55,56]]],[24,1,1,56,57,[[799,1,1,56,57]]],[25,9,9,57,66,[[802,2,2,57,59],[809,1,1,59,60],[811,2,2,60,62],[831,1,1,62,63],[833,1,1,63,64],[839,2,2,64,66]]],[27,2,2,66,68,[[867,1,1,66,67],[874,1,1,67,68]]]],[218,219,221,1888,1889,1908,1909,1913,1957,2035,2042,2192,2193,2195,2501,2741,2742,2743,2744,2745,3203,3214,3980,3981,3982,3983,3984,3985,3986,3987,3999,4000,4022,4049,4064,4069,4122,4236,4925,5075,5743,8995,8996,11281,11282,12530,13017,13475,13476,13780,13784,13802,15127,15645,17738,18555,20398,20468,20492,20615,20636,20637,21222,21255,21434,21441,22171,22269]]],["clouds",[5,5,[[4,1,1,0,1,[[156,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]],[28,1,1,2,3,[[877,1,1,2,3]]],[33,1,1,3,4,[[900,1,1,3,4]]],[35,1,1,4,5,[[906,1,1,4,5]]]],[5015,19040,22313,22687,22802]]],["cloudy",[6,6,[[1,2,2,0,2,[[82,2,2,0,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[18,1,1,3,4,[[576,1,1,3,4]]],[25,2,2,4,6,[[831,1,1,4,5],[835,1,1,5,6]]]],[2482,2483,12523,15506,21207,21325]]]]},{"k":"H6052","v":[["Anan",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12575]]]]},{"k":"H6053","v":[["cloud",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12909]]]]},{"k":"H6054","v":[["Anani",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10385]]]]},{"k":"H6055","v":[["Ananiah",[2,2,[[15,2,2,0,2,[[415,1,1,0,1],[423,1,1,1,2]]]],[12350,12620]]]]},{"k":"H6056","v":[["*",[4,3,[[26,4,3,0,3,[[853,4,3,0,3]]]],[21849,21851,21858]]],["boughs",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21849]]],["branches",[3,2,[[26,3,2,0,2,[[853,3,2,0,2]]]],[21851,21858]]]]},{"k":"H6057","v":[["*",[7,7,[[2,1,1,0,1,[[112,1,1,0,1]]],[18,1,1,1,2,[[557,1,1,1,2]]],[25,4,4,2,6,[[818,2,2,2,4],[832,1,1,4,5],[837,1,1,5,6]]],[38,1,1,6,7,[[928,1,1,6,7]]]],[3442,15208,20833,20848,21233,21367,23139]]],["boughs",[3,3,[[2,1,1,0,1,[[112,1,1,0,1]]],[18,1,1,1,2,[[557,1,1,1,2]]],[25,1,1,2,3,[[818,1,1,2,3]]]],[3442,15208,20848]]],["branch",[1,1,[[38,1,1,0,1,[[928,1,1,0,1]]]],[23139]]],["branches",[3,3,[[25,3,3,0,3,[[818,1,1,0,1],[832,1,1,1,2],[837,1,1,2,3]]]],[20833,21233,21367]]]]},{"k":"H6058","v":[["branches",[1,1,[[25,1,1,0,1,[[820,1,1,0,1]]]],[20891]]]]},{"k":"H6059","v":[["*",[3,2,[[4,2,1,0,1,[[167,2,1,0,1]]],[18,1,1,1,2,[[550,1,1,1,2]]]],[5333,15026]]],["+",[2,1,[[4,2,1,0,1,[[167,2,1,0,1]]]],[5333]]],["chain",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15026]]]]},{"k":"H6060","v":[["*",[3,3,[[6,1,1,0,1,[[218,1,1,0,1]]],[19,1,1,1,2,[[628,1,1,1,2]]],[21,1,1,2,3,[[674,1,1,2,3]]]],[6745,16409,17591]]],["chain",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17591]]],["chains",[2,2,[[6,1,1,0,1,[[218,1,1,0,1]]],[19,1,1,1,2,[[628,1,1,1,2]]]],[6745,16409]]]]},{"k":"H6061","v":[["*",[9,8,[[3,3,3,0,3,[[129,3,3,0,3]]],[4,1,1,3,4,[[161,1,1,3,4]]],[5,4,3,4,7,[[201,3,2,4,6],[207,1,1,6,7]]],[6,1,1,7,8,[[211,1,1,7,8]]]],[4097,4103,4108,5159,6215,6216,6392,6529]]],["+",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6216]]],["Anak",[8,8,[[3,3,3,0,3,[[129,3,3,0,3]]],[4,1,1,3,4,[[161,1,1,3,4]]],[5,3,3,4,7,[[201,2,2,4,6],[207,1,1,6,7]]],[6,1,1,7,8,[[211,1,1,7,8]]]],[4097,4103,4108,5159,6215,6216,6392,6529]]]]},{"k":"H6062","v":[["Anakims",[9,9,[[4,5,5,0,5,[[153,1,1,0,1],[154,3,3,1,4],[161,1,1,4,5]]],[5,4,4,5,9,[[197,2,2,5,7],[200,2,2,7,9]]]],[4920,4948,4949,4959,5159,6128,6129,6199,6202]]]]},{"k":"H6063","v":[["Aner",[3,3,[[0,2,2,0,2,[[13,2,2,0,2]]],[12,1,1,2,3,[[343,1,1,2,3]]]],[349,360,10524]]]]},{"k":"H6064","v":[["*",[9,8,[[1,2,1,0,1,[[70,2,1,0,1]]],[4,1,1,1,2,[[174,1,1,1,2]]],[13,1,1,2,3,[[402,1,1,2,3]]],[19,4,4,3,7,[[644,1,1,3,4],[648,1,1,4,5],[649,1,1,5,6],[654,1,1,6,7]]],[29,1,1,7,8,[[880,1,1,7,8]]]],[2099,5489,11996,16899,16995,17018,17181,22387]]],["+",[3,2,[[1,2,1,0,1,[[70,2,1,0,1]]],[13,1,1,1,2,[[402,1,1,1,2]]]],[2099,11996]]],["amerce",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5489]]],["condemned",[1,1,[[29,1,1,0,1,[[880,1,1,0,1]]]],[22387]]],["punish",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16899]]],["punished",[3,3,[[19,3,3,0,3,[[648,1,1,0,1],[649,1,1,1,2],[654,1,1,2,3]]]],[16995,17018,17181]]]]},{"k":"H6065","v":[["confiscation",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12199]]]]},{"k":"H6066","v":[["*",[2,2,[[11,1,1,0,1,[[335,1,1,0,1]]],[19,1,1,1,2,[[646,1,1,1,2]]]],[10198,16944]]],["punishment",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16944]]],["tribute",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10198]]]]},{"k":"H6067","v":[["Anath",[2,2,[[6,2,2,0,2,[[213,1,1,0,1],[215,1,1,1,2]]]],[6599,6629]]]]},{"k":"H6068","v":[["Anathoth",[15,15,[[5,1,1,0,1,[[207,1,1,0,1]]],[10,1,1,1,2,[[292,1,1,1,2]]],[12,2,2,2,4,[[343,1,1,2,3],[344,1,1,3,4]]],[14,1,1,4,5,[[404,1,1,4,5]]],[15,3,3,5,8,[[419,1,1,5,6],[422,1,1,6,7],[423,1,1,7,8]]],[22,1,1,8,9,[[688,1,1,8,9]]],[23,6,6,9,15,[[745,1,1,9,10],[755,2,2,10,12],[776,3,3,12,15]]]],[6399,8796,10514,10543,12050,12447,12568,12620,17880,18947,19247,19249,19738,19739,19740]]]]},{"k":"H6069","v":[["*",[5,5,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,3,3,1,4,[[348,1,1,1,2],[349,1,1,2,3],[364,1,1,3,4]]],[23,1,1,4,5,[[773,1,1,4,5]]]],[8680,10701,10723,11121,19662]]],["Anathoth",[1,1,[[23,1,1,0,1,[[773,1,1,0,1]]]],[19662]]],["Anethothite",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8680]]],["Anetothite",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11121]]],["Antothite",[2,2,[[12,2,2,0,2,[[348,1,1,0,1],[349,1,1,1,2]]]],[10701,10723]]]]},{"k":"H6070","v":[["Antothijah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10599]]]]},{"k":"H6071","v":[["*",[5,5,[[21,1,1,0,1,[[678,1,1,0,1]]],[22,1,1,1,2,[[727,1,1,1,2]]],[28,2,2,2,4,[[876,1,1,2,3],[878,1,1,3,4]]],[29,1,1,4,5,[[887,1,1,4,5]]]],[17642,18662,22296,22361,22508]]],["+",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17642]]],["wine",[4,4,[[22,1,1,0,1,[[727,1,1,0,1]]],[28,2,2,1,3,[[876,1,1,1,2],[878,1,1,2,3]]],[29,1,1,3,4,[[887,1,1,3,4]]]],[18662,22296,22361,22508]]]]},{"k":"H6072","v":[["down",[1,1,[[38,1,1,0,1,[[928,1,1,0,1]]]],[23141]]]]},{"k":"H6073","v":[["branches",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15583]]]]},{"k":"H6074","v":[["leaves",[3,3,[[26,3,3,0,3,[[853,3,3,0,3]]]],[21849,21851,21858]]]]},{"k":"H6075","v":[["*",[2,2,[[3,1,1,0,1,[[130,1,1,0,1]]],[34,1,1,1,2,[[904,1,1,1,2]]]],[4152,22752]]],["presumed",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4152]]],["up",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22752]]]]},{"k":"H6076","v":[["*",[9,9,[[4,1,1,0,1,[[180,1,1,0,1]]],[8,5,5,1,6,[[240,3,3,1,4],[241,2,2,4,6]]],[11,1,1,6,7,[[317,1,1,6,7]]],[22,1,1,7,8,[[710,1,1,7,8]]],[32,1,1,8,9,[[896,1,1,8,9]]]],[5638,7325,7328,7331,7335,7336,9671,18273,22628]]],["emerods",[6,6,[[4,1,1,0,1,[[180,1,1,0,1]]],[8,5,5,1,6,[[240,3,3,1,4],[241,2,2,4,6]]]],[5638,7325,7328,7331,7335,7336]]],["forts",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18273]]],["hold",[1,1,[[32,1,1,0,1,[[896,1,1,0,1]]]],[22628]]],["tower",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9671]]]]},{"k":"H6077","v":[["Ophel",[5,5,[[13,2,2,0,2,[[393,1,1,0,1],[399,1,1,1,2]]],[15,3,3,2,5,[[415,2,2,2,4],[423,1,1,4,5]]]],[11758,11922,12353,12354,12609]]]]},{"k":"H6078","v":[["Ophni",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6317]]]]},{"k":"H6079","v":[["*",[10,10,[[17,3,3,0,3,[[438,1,1,0,1],[451,1,1,1,2],[476,1,1,2,3]]],[18,2,2,3,5,[[488,1,1,3,4],[609,1,1,4,5]]],[19,4,4,5,9,[[631,1,1,5,6],[633,2,2,6,8],[657,1,1,8,9]]],[23,1,1,9,10,[[753,1,1,9,10]]]],[12913,13254,13906,14063,16155,16515,16544,16565,17264,19193]]],["dawning",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12913]]],["eyelids",[9,9,[[17,2,2,0,2,[[451,1,1,0,1],[476,1,1,1,2]]],[18,2,2,2,4,[[488,1,1,2,3],[609,1,1,3,4]]],[19,4,4,4,8,[[631,1,1,4,5],[633,2,2,5,7],[657,1,1,7,8]]],[23,1,1,8,9,[[753,1,1,8,9]]]],[13254,13906,14063,16155,16515,16544,16565,17264,19193]]]]},{"k":"H6080","v":[["cast",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8439]]]]},{"k":"H6081","v":[["Epher",[4,4,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,3,3,1,4,[[338,1,1,1,2],[341,1,1,2,3],[342,1,1,3,4]]]],[662,10285,10402,10452]]]]},{"k":"H6082","v":[["young",[5,5,[[21,5,5,0,5,[[672,2,2,0,2],[674,1,1,2,3],[677,1,1,3,4],[678,1,1,4,5]]]],[17563,17571,17587,17630,17654]]]]},{"k":"H6083","v":[["*",[110,103,[[0,9,7,0,7,[[1,1,1,0,1],[2,3,2,1,3],[12,2,1,3,4],[17,1,1,4,5],[25,1,1,5,6],[27,1,1,6,7]]],[1,3,2,7,9,[[57,3,2,7,9]]],[2,4,4,9,13,[[103,3,3,9,12],[106,1,1,12,13]]],[3,3,3,13,16,[[121,1,1,13,14],[135,1,1,14,15],[139,1,1,15,16]]],[4,4,3,16,19,[[161,2,1,16,17],[180,1,1,17,18],[184,1,1,18,19]]],[5,1,1,19,20,[[193,1,1,19,20]]],[8,1,1,20,21,[[237,1,1,20,21]]],[9,2,2,21,23,[[282,1,1,21,22],[288,1,1,22,23]]],[10,3,3,23,26,[[306,1,1,23,24],[308,1,1,24,25],[310,1,1,25,26]]],[11,6,5,26,31,[[325,1,1,26,27],[335,5,4,27,31]]],[13,1,1,31,32,[[367,1,1,31,32]]],[15,2,2,32,34,[[416,2,2,32,34]]],[17,26,26,34,60,[[437,1,1,34,35],[439,1,1,35,36],[440,1,1,36,37],[442,2,2,37,39],[443,1,1,39,40],[445,1,1,40,41],[449,2,2,41,43],[451,1,1,43,44],[452,1,1,44,45],[454,1,1,45,46],[455,1,1,46,47],[456,1,1,47,48],[457,1,1,48,49],[462,1,1,49,50],[463,2,2,50,52],[465,2,2,52,54],[469,1,1,54,55],[473,1,1,55,56],[474,1,1,56,57],[475,1,1,57,58],[476,1,1,58,59],[477,1,1,59,60]]],[18,13,13,60,73,[[484,1,1,60,61],[495,1,1,61,62],[499,2,2,62,64],[507,1,1,64,65],[521,1,1,65,66],[549,1,1,66,67],[555,1,1,67,68],[579,1,1,68,69],[580,1,1,69,70],[581,1,1,70,71],[590,1,1,71,72],[596,1,1,72,73]]],[19,1,1,73,74,[[635,1,1,73,74]]],[20,3,2,74,76,[[661,2,1,74,75],[670,1,1,75,76]]],[22,15,14,76,90,[[680,2,2,76,78],[703,1,1,78,79],[704,2,2,79,81],[707,2,1,81,82],[712,2,2,82,84],[718,1,1,84,85],[719,1,1,85,86],[725,1,1,86,87],[727,1,1,87,88],[730,1,1,88,89],[743,1,1,89,90]]],[24,2,2,90,92,[[798,1,1,90,91],[799,1,1,91,92]]],[25,4,4,92,96,[[825,1,1,92,93],[827,2,2,93,95],[828,1,1,95,96]]],[26,1,1,96,97,[[861,1,1,96,97]]],[29,1,1,97,98,[[880,1,1,97,98]]],[32,2,2,98,100,[[893,1,1,98,99],[899,1,1,99,100]]],[34,1,1,100,101,[[903,1,1,100,101]]],[35,1,1,101,102,[[906,1,1,101,102]]],[37,1,1,102,103,[[919,1,1,102,103]]]],[37,69,74,334,451,707,787,1726,1727,3152,3153,3156,3248,3809,4306,4426,5178,5635,5782,5982,7248,8439,8645,9285,9379,9418,9878,10169,10171,10177,10180,11203,12361,12369,12903,12949,12957,13013,13029,13048,13095,13189,13200,13253,13276,13322,13337,13381,13413,13497,13506,13510,13563,13576,13698,13831,13848,13877,13921,13928,14000,14160,14219,14233,14328,14596,15009,15140,15535,15563,15600,15820,15923,16628,17379,17530,17695,17704,18130,18135,18149,18197,18310,18312,18432,18453,18600,18659,18698,18922,20342,20383,21063,21104,21112,21151,22083,22386,22589,22681,22741,22804,23002]]],["+",[11,10,[[3,1,1,0,1,[[135,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[17,4,4,2,6,[[440,1,1,2,3],[443,1,1,3,4],[445,1,1,4,5],[463,1,1,5,6]]],[18,1,1,6,7,[[590,1,1,6,7]]],[20,1,1,7,8,[[661,1,1,7,8]]],[22,3,2,8,10,[[707,2,1,8,9],[730,1,1,9,10]]]],[4306,7248,12957,13048,13095,13506,15820,17379,18197,18698]]],["ashes",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10169]]],["dust",[85,81,[[0,8,6,0,6,[[1,1,1,0,1],[2,3,2,1,3],[12,2,1,3,4],[17,1,1,4,5],[27,1,1,5,6]]],[1,3,2,6,8,[[57,3,2,6,8]]],[2,2,2,8,10,[[103,1,1,8,9],[106,1,1,9,10]]],[3,2,2,10,12,[[121,1,1,10,11],[139,1,1,11,12]]],[4,4,3,12,15,[[161,2,1,12,13],[180,1,1,13,14],[184,1,1,14,15]]],[5,1,1,15,16,[[193,1,1,15,16]]],[9,2,2,16,18,[[282,1,1,16,17],[288,1,1,17,18]]],[10,3,3,18,21,[[306,1,1,18,19],[308,1,1,19,20],[310,1,1,20,21]]],[11,2,2,21,23,[[325,1,1,21,22],[335,1,1,22,23]]],[13,1,1,23,24,[[367,1,1,23,24]]],[17,18,18,24,42,[[437,1,1,24,25],[439,1,1,25,26],[442,2,2,26,28],[449,1,1,28,29],[451,1,1,29,30],[452,1,1,30,31],[455,1,1,31,32],[456,1,1,32,33],[457,1,1,33,34],[462,1,1,34,35],[463,1,1,35,36],[465,1,1,36,37],[469,1,1,37,38],[473,1,1,38,39],[474,1,1,39,40],[475,1,1,40,41],[477,1,1,41,42]]],[18,12,12,42,54,[[484,1,1,42,43],[495,1,1,43,44],[499,2,2,44,46],[507,1,1,46,47],[521,1,1,47,48],[549,1,1,48,49],[555,1,1,49,50],[579,1,1,50,51],[580,1,1,51,52],[581,1,1,52,53],[596,1,1,53,54]]],[19,1,1,54,55,[[635,1,1,54,55]]],[20,2,2,55,57,[[661,1,1,55,56],[670,1,1,56,57]]],[22,11,11,57,68,[[680,1,1,57,58],[703,1,1,58,59],[704,2,2,59,61],[712,2,2,61,63],[718,1,1,63,64],[719,1,1,64,65],[725,1,1,65,66],[727,1,1,66,67],[743,1,1,67,68]]],[24,2,2,68,70,[[798,1,1,68,69],[799,1,1,69,70]]],[25,4,4,70,74,[[825,1,1,70,71],[827,2,2,71,73],[828,1,1,73,74]]],[26,1,1,74,75,[[861,1,1,74,75]]],[29,1,1,75,76,[[880,1,1,75,76]]],[32,2,2,76,78,[[893,1,1,76,77],[899,1,1,77,78]]],[34,1,1,78,79,[[903,1,1,78,79]]],[35,1,1,79,80,[[906,1,1,79,80]]],[37,1,1,80,81,[[919,1,1,80,81]]]],[37,69,74,334,451,787,1726,1727,3152,3248,3809,4426,5178,5635,5782,5982,8439,8645,9285,9379,9418,9878,10177,11203,12903,12949,13013,13029,13200,13253,13276,13337,13381,13413,13497,13510,13576,13698,13831,13848,13877,13928,14000,14160,14219,14233,14328,14596,15009,15140,15535,15563,15600,15923,16628,17379,17530,17695,18130,18135,18149,18310,18312,18432,18453,18600,18659,18922,20342,20383,21063,21104,21112,21151,22083,22386,22589,22681,22741,22804,23002]]],["earth",[5,5,[[0,1,1,0,1,[[25,1,1,0,1]]],[17,3,3,1,4,[[454,1,1,1,2],[465,1,1,2,3],[476,1,1,3,4]]],[22,1,1,4,5,[[680,1,1,4,5]]]],[707,13322,13563,13921,17704]]],["ground",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13189]]],["morter",[2,2,[[2,2,2,0,2,[[103,2,2,0,2]]]],[3153,3156]]],["powder",[3,2,[[11,3,2,0,2,[[335,3,2,0,2]]]],[10171,10180]]],["rubbish",[2,2,[[15,2,2,0,2,[[416,2,2,0,2]]]],[12361,12369]]]]},{"k":"H6084","v":[["Ophrah",[8,8,[[5,1,1,0,1,[[204,1,1,0,1]]],[6,5,5,1,6,[[216,2,2,1,3],[218,2,2,3,5],[219,1,1,5,6]]],[8,1,1,6,7,[[248,1,1,6,7]]],[12,1,1,7,8,[[341,1,1,7,8]]]],[6316,6665,6678,6746,6751,6759,7502,10399]]]]},{"k":"H6085","v":[["*",[14,12,[[0,12,10,0,10,[[22,8,6,0,6],[24,1,1,6,7],[48,2,2,7,9],[49,1,1,9,10]]],[5,1,1,10,11,[[201,1,1,10,11]]],[13,1,1,11,12,[[379,1,1,11,12]]]],[579,581,584,585,587,588,667,1502,1503,1519,6211,11472]]],["+",[1,1,[[0,1,1,0,1,[[22,1,1,0,1]]]],[587]]],["Ephrain",[1,1,[[13,1,1,0,1,[[379,1,1,0,1]]]],[11472]]],["Ephron",[12,11,[[0,11,10,0,10,[[22,7,6,0,6],[24,1,1,6,7],[48,2,2,7,9],[49,1,1,9,10]]],[5,1,1,10,11,[[201,1,1,10,11]]]],[579,581,584,585,587,588,667,1502,1503,1519,6211]]]]},{"k":"H6086","v":[["*",[329,287,[[0,30,25,0,25,[[0,4,3,0,3],[1,5,3,3,6],[2,11,10,6,16],[5,1,1,16,17],[17,2,2,17,19],[21,5,4,19,23],[22,1,1,23,24],[39,1,1,24,25]]],[1,31,30,25,55,[[56,1,1,25,26],[58,1,1,26,27],[59,3,2,27,29],[64,1,1,29,30],[74,5,5,30,35],[75,2,2,35,37],[76,2,2,37,39],[79,2,2,39,41],[80,1,1,41,42],[84,3,3,42,45],[85,2,2,45,47],[86,6,6,47,53],[87,2,2,53,55]]],[2,21,20,55,75,[[90,4,4,55,59],[92,1,1,59,60],[93,1,1,60,61],[95,1,1,61,62],[100,1,1,62,63],[103,6,6,63,69],[104,1,1,69,70],[108,1,1,70,71],[112,2,1,71,72],[115,2,2,72,74],[116,1,1,74,75]]],[3,6,6,75,81,[[129,1,1,75,76],[131,2,2,76,78],[135,1,1,78,79],[147,1,1,79,80],[151,1,1,80,81]]],[4,20,16,81,97,[[156,1,1,81,82],[162,2,2,82,84],[164,1,1,84,85],[168,1,1,85,86],[171,3,1,86,87],[172,4,2,87,89],[173,2,2,89,91],[174,1,1,91,92],[180,3,3,92,95],[181,2,2,95,97]]],[5,9,7,97,104,[[188,1,1,97,98],[194,2,1,98,99],[195,3,3,99,102],[196,3,2,102,104]]],[6,10,10,104,114,[[216,1,1,104,105],[219,9,9,105,114]]],[8,1,1,114,115,[[241,1,1,114,115]]],[9,6,5,115,120,[[271,2,1,115,116],[272,1,1,116,117],[287,1,1,117,118],[289,1,1,118,119],[290,1,1,119,120]]],[10,29,22,120,142,[[294,1,1,120,121],[295,6,4,121,125],[296,7,7,125,132],[299,2,1,132,133],[300,3,2,133,135],[304,1,1,135,136],[305,1,1,136,137],[307,2,2,137,139],[308,6,3,139,142]]],[11,10,10,142,152,[[315,2,2,142,144],[318,2,2,144,146],[324,2,2,146,148],[328,1,1,148,149],[329,1,1,149,150],[331,1,1,150,151],[334,1,1,151,152]]],[12,11,8,152,160,[[351,2,1,152,153],[353,1,1,153,154],[357,1,1,154,155],[358,1,1,155,156],[359,4,3,156,159],[366,2,1,159,160]]],[13,12,11,160,171,[[368,6,5,160,165],[369,1,1,165,166],[375,2,2,166,168],[382,1,1,168,169],[394,1,1,169,170],[400,1,1,170,171]]],[14,1,1,171,172,[[405,1,1,171,172]]],[15,9,8,172,180,[[414,1,1,172,173],[420,3,2,173,175],[421,1,1,175,176],[422,3,3,176,179],[425,1,1,179,180]]],[16,9,8,180,188,[[427,1,1,180,181],[430,2,1,181,182],[431,1,1,182,183],[432,2,2,183,185],[433,1,1,185,186],[434,2,2,186,188]]],[17,4,4,188,192,[[449,1,1,188,189],[454,1,1,189,190],[459,1,1,190,191],[476,1,1,191,192]]],[18,6,6,192,198,[[478,1,1,192,193],[551,1,1,193,194],[573,1,1,194,195],[581,1,1,195,196],[582,1,1,196,197],[625,1,1,197,198]]],[19,6,6,198,204,[[630,1,1,198,199],[638,1,1,199,200],[640,1,1,200,201],[642,1,1,201,202],[653,2,2,202,204]]],[20,5,4,204,208,[[660,2,2,204,206],[668,1,1,206,207],[669,2,1,207,208]]],[21,3,3,208,211,[[672,1,1,208,209],[673,1,1,209,210],[674,1,1,210,211]]],[22,17,17,211,228,[[685,1,1,211,212],[688,2,2,212,214],[708,1,1,214,215],[715,1,1,215,216],[718,1,1,216,217],[719,1,1,217,218],[722,4,4,218,222],[723,1,1,222,223],[733,1,1,223,224],[734,1,1,224,225],[735,1,1,225,226],[738,1,1,226,227],[743,1,1,227,228]]],[23,15,15,228,243,[[746,2,2,228,230],[747,3,3,230,233],[749,1,1,233,234],[751,2,2,234,236],[754,2,2,236,238],[755,1,1,238,239],[761,2,2,239,241],[772,1,1,241,242],[790,1,1,242,243]]],[24,3,3,243,246,[[800,1,1,243,244],[801,2,2,244,246]]],[25,45,31,246,277,[[807,1,1,246,247],[816,6,3,247,250],[818,5,1,250,251],[821,4,3,251,254],[822,1,1,254,255],[825,1,1,255,256],[827,1,1,256,257],[832,9,8,257,265],[835,1,1,265,266],[837,1,1,266,267],[838,8,4,267,271],[840,1,1,271,272],[842,4,3,272,275],[848,2,2,275,277]]],[27,1,1,277,278,[[865,1,1,277,278]]],[28,3,3,278,281,[[876,2,2,278,280],[877,1,1,280,281]]],[34,2,2,281,283,[[904,2,2,281,283]]],[36,2,2,283,285,[[909,1,1,283,284],[910,1,1,284,285]]],[37,2,2,285,287,[[915,1,1,285,286],[922,1,1,286,287]]]],[10,11,28,39,46,47,56,57,58,61,63,66,67,72,77,79,151,428,432,550,553,554,556,588,1191,1704,1767,1782,1792,1945,2200,2205,2208,2218,2223,2250,2261,2273,2278,2383,2387,2425,2538,2555,2564,2586,2597,2605,2608,2614,2619,2629,2632,2634,2639,2752,2753,2757,2762,2783,2807,2861,3029,3115,3117,3156,3160,3162,3163,3180,3304,3442,3528,3544,3600,4095,4185,4186,4295,4684,4863,5032,5187,5189,5242,5363,5411,5446,5447,5469,5470,5476,5647,5653,5675,5690,5696,5875,6031,6058,6060,6064,6090,6091,6680,6762,6763,6764,6765,6766,6767,6768,6769,6802,7345,8143,8162,8599,8660,8714,8877,8884,8886,8888,8896,8906,8911,8919,8927,8928,8929,8930,9062,9090,9091,9241,9271,9327,9329,9364,9374,9379,9595,9601,9678,9680,9861,9862,9967,9993,10079,10151,10775,10853,10931,10957,10968,10978,10979,11166,11219,11220,11221,11225,11227,11234,11374,11375,11515,11768,11944,12104,12315,12497,12508,12536,12583,12584,12586,12702,12747,12793,12797,12816,12817,12824,12847,12859,13188,13307,13456,13915,13942,15053,15477,15587,15639,16380,16473,16718,16759,16811,17161,17162,17338,17339,17502,17516,17557,17580,17596,17784,17865,17869,18250,18371,18440,18470,18546,18547,18552,18556,18581,18752,18756,18770,18838,18919,18985,18992,19008,19011,19015,19072,19137,19139,19204,19209,19245,19359,19365,19631,20067,20428,20446,20455,20576,20756,20757,20760,20849,20923,20927,20942,20954,21066,21112,21234,21235,21238,21239,21244,21245,21246,21248,21340,21389,21413,21414,21416,21417,21458,21542,21548,21551,21686,21691,22145,22303,22310,22333,22759,22767,22848,22874,22940,23051]]],["+",[12,12,[[0,3,3,0,3,[[1,1,1,0,1],[2,1,1,1,2],[21,1,1,2,3]]],[2,1,1,3,4,[[90,1,1,3,4]]],[5,1,1,4,5,[[196,1,1,4,5]]],[9,1,1,5,6,[[271,1,1,5,6]]],[11,1,1,6,7,[[324,1,1,6,7]]],[12,1,1,7,8,[[351,1,1,7,8]]],[15,1,1,8,9,[[420,1,1,8,9]]],[21,1,1,9,10,[[673,1,1,9,10]]],[22,1,1,10,11,[[722,1,1,10,11]]],[34,1,1,11,12,[[904,1,1,11,12]]]],[47,77,556,2752,6091,8143,9861,10775,12508,17580,18546,22759]]],["gallows",[8,7,[[16,8,7,0,7,[[430,2,1,0,1],[431,1,1,1,2],[432,2,2,2,4],[433,1,1,4,5],[434,2,2,5,7]]]],[12793,12797,12816,12817,12824,12847,12859]]],["helve",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5411]]],["planks",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21551]]],["staff",[3,3,[[9,2,2,0,2,[[287,1,1,0,1],[289,1,1,1,2]]],[12,1,1,2,3,[[357,1,1,2,3]]]],[8599,8660,10931]]],["stalks",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5875]]],["stick",[9,5,[[11,1,1,0,1,[[318,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]],[25,7,3,2,5,[[838,7,3,2,5]]]],[9680,20428,21413,21414,21416]]],["sticks",[5,5,[[3,2,2,0,2,[[131,2,2,0,2]]],[10,2,2,2,4,[[307,2,2,2,4]]],[25,1,1,4,5,[[838,1,1,4,5]]]],[4185,4186,9327,9329,21417]]],["stock",[2,2,[[23,2,2,0,2,[[746,1,1,0,1],[754,1,1,1,2]]]],[18992,19209]]],["stocks",[2,2,[[23,1,1,0,1,[[747,1,1,0,1]]],[27,1,1,1,2,[[865,1,1,1,2]]]],[19011,22145]]],["timber",[22,21,[[1,1,1,0,1,[[80,1,1,0,1]]],[2,1,1,1,2,[[103,1,1,1,2]]],[10,6,5,2,7,[[295,4,3,2,5],[296,1,1,5,6],[305,1,1,6,7]]],[11,2,2,7,9,[[324,1,1,7,8],[334,1,1,8,9]]],[12,3,3,9,12,[[351,1,1,9,10],[359,2,2,10,12]]],[13,6,6,12,18,[[368,4,4,12,16],[382,1,1,16,17],[400,1,1,17,18]]],[15,1,1,18,19,[[414,1,1,18,19]]],[25,1,1,19,20,[[827,1,1,19,20]]],[37,1,1,20,21,[[915,1,1,20,21]]]],[2425,3156,8884,8886,8896,8906,9271,9862,10151,10775,10978,10979,11219,11220,11221,11225,11515,11944,12315,21112,22940]]],["tree",[82,71,[[0,19,15,0,15,[[0,4,3,0,3],[1,4,2,3,5],[2,8,7,5,12],[17,2,2,12,14],[39,1,1,14,15]]],[1,3,3,15,18,[[58,1,1,15,16],[59,1,1,16,17],[64,1,1,17,18]]],[2,1,1,18,19,[[116,1,1,18,19]]],[4,6,6,19,25,[[164,1,1,19,20],[171,1,1,20,21],[172,1,1,21,22],[173,2,2,22,24],[174,1,1,24,25]]],[5,2,1,25,26,[[194,2,1,25,26]]],[10,6,6,26,32,[[296,5,5,26,31],[304,1,1,31,32]]],[11,3,3,32,35,[[315,1,1,32,33],[328,1,1,33,34],[329,1,1,34,35]]],[13,2,2,35,37,[[369,1,1,35,36],[394,1,1,36,37]]],[16,1,1,37,38,[[427,1,1,37,38]]],[17,3,3,38,41,[[449,1,1,38,39],[454,1,1,39,40],[459,1,1,40,41]]],[18,1,1,41,42,[[478,1,1,41,42]]],[19,4,4,42,46,[[630,1,1,42,43],[638,1,1,43,44],[640,1,1,44,45],[642,1,1,45,46]]],[20,2,1,46,47,[[669,2,1,46,47]]],[22,7,7,47,54,[[718,1,1,47,48],[719,1,1,48,49],[722,2,2,49,51],[734,1,1,51,52],[735,1,1,52,53],[743,1,1,53,54]]],[23,6,6,54,60,[[746,1,1,54,55],[747,2,2,55,57],[754,1,1,57,58],[755,1,1,58,59],[761,1,1,59,60]]],[25,14,9,60,69,[[807,1,1,60,61],[816,3,2,61,63],[818,4,1,63,64],[821,2,1,64,65],[822,1,1,65,66],[832,1,1,66,67],[835,1,1,67,68],[837,1,1,68,69]]],[28,1,1,69,70,[[877,1,1,69,70]]],[36,1,1,70,71,[[910,1,1,70,71]]]],[10,11,28,39,46,56,58,61,66,67,72,79,428,432,1191,1767,1782,1945,3600,5242,5411,5446,5469,5470,5476,6031,8919,8927,8928,8929,8930,9241,9595,9967,9993,11234,11768,12747,13188,13307,13456,13942,16473,16718,16759,16811,17516,18440,18470,18552,18556,18756,18770,18919,18985,19008,19015,19204,19245,19365,20576,20756,20760,20849,20942,20954,21238,21340,21389,22333,22874]]],["trees",[77,69,[[0,3,3,0,3,[[2,2,2,0,2],[22,1,1,2,3]]],[1,2,1,3,4,[[59,2,1,3,4]]],[2,5,4,4,8,[[108,1,1,4,5],[112,2,1,5,6],[115,2,2,6,8]]],[4,5,4,8,12,[[168,1,1,8,9],[172,3,2,9,11],[180,1,1,11,12]]],[5,2,1,12,13,[[196,2,1,12,13]]],[6,9,9,13,22,[[219,9,9,13,22]]],[9,1,1,22,23,[[271,1,1,22,23]]],[10,8,5,23,28,[[294,1,1,23,24],[295,2,1,24,25],[299,2,1,25,26],[300,3,2,26,28]]],[11,1,1,28,29,[[315,1,1,28,29]]],[12,2,2,29,31,[[353,1,1,29,30],[359,1,1,30,31]]],[13,3,3,31,34,[[368,1,1,31,32],[375,2,2,32,34]]],[14,1,1,34,35,[[405,1,1,34,35]]],[15,4,4,35,39,[[420,1,1,35,36],[421,1,1,36,37],[422,2,2,37,39]]],[18,5,5,39,44,[[551,1,1,39,40],[573,1,1,40,41],[581,1,1,41,42],[582,1,1,42,43],[625,1,1,43,44]]],[20,2,2,44,46,[[660,2,2,44,46]]],[21,2,2,46,48,[[672,1,1,46,47],[674,1,1,47,48]]],[22,4,4,48,52,[[685,1,1,48,49],[688,1,1,49,50],[722,1,1,50,51],[733,1,1,51,52]]],[23,2,2,52,54,[[751,1,1,52,53],[761,1,1,53,54]]],[25,14,13,54,67,[[816,2,2,54,56],[818,1,1,56,57],[821,1,1,57,58],[832,8,7,58,65],[848,2,2,65,67]]],[28,2,2,67,69,[[876,2,2,67,69]]]],[57,63,588,1792,3304,3442,3528,3544,5363,5446,5447,5653,6090,6762,6763,6764,6765,6766,6767,6768,6769,6802,8143,8877,8888,9062,9090,9091,9601,10853,10968,11219,11374,11375,12104,12508,12536,12584,12586,15053,15477,15587,15639,16380,17338,17339,17557,17596,17784,17869,18547,18752,19139,19359,20756,20760,20849,20923,21234,21235,21239,21244,21245,21246,21248,21686,21691,22303,22310]]],["wood",[104,99,[[0,5,5,0,5,[[5,1,1,0,1],[21,4,4,1,5]]],[1,25,25,5,30,[[56,1,1,5,6],[74,5,5,6,11],[75,2,2,11,13],[76,2,2,13,15],[79,2,2,15,17],[84,3,3,17,20],[85,2,2,20,22],[86,6,6,22,28],[87,2,2,28,30]]],[2,13,13,30,43,[[90,3,3,30,33],[92,1,1,33,34],[93,1,1,34,35],[95,1,1,35,36],[100,1,1,36,37],[103,5,5,37,42],[104,1,1,42,43]]],[3,4,4,43,47,[[129,1,1,43,44],[135,1,1,44,45],[147,1,1,45,46],[151,1,1,46,47]]],[4,8,8,47,55,[[156,1,1,47,48],[162,2,2,48,50],[171,1,1,50,51],[180,2,2,51,53],[181,2,2,53,55]]],[5,3,3,55,58,[[195,3,3,55,58]]],[6,1,1,58,59,[[216,1,1,58,59]]],[8,1,1,59,60,[[241,1,1,59,60]]],[9,2,2,60,62,[[272,1,1,60,61],[290,1,1,61,62]]],[10,7,4,62,66,[[296,1,1,62,63],[308,6,3,63,66]]],[11,2,2,66,68,[[318,1,1,66,67],[331,1,1,67,68]]],[12,4,3,68,71,[[358,1,1,68,69],[359,1,1,69,70],[366,2,1,70,71]]],[13,1,1,71,72,[[368,1,1,71,72]]],[15,3,3,72,75,[[420,1,1,72,73],[422,1,1,73,74],[425,1,1,74,75]]],[17,1,1,75,76,[[476,1,1,75,76]]],[19,2,2,76,78,[[653,2,2,76,78]]],[20,1,1,78,79,[[668,1,1,78,79]]],[22,5,5,79,84,[[688,1,1,79,80],[708,1,1,80,81],[715,1,1,81,82],[723,1,1,82,83],[738,1,1,83,84]]],[23,4,4,84,88,[[749,1,1,84,85],[751,1,1,85,86],[772,1,1,86,87],[790,1,1,87,88]]],[24,2,2,88,90,[[801,2,2,88,90]]],[25,7,6,90,96,[[816,1,1,90,91],[821,1,1,91,92],[825,1,1,92,93],[840,1,1,93,94],[842,3,2,94,96]]],[34,1,1,96,97,[[904,1,1,96,97]]],[36,1,1,97,98,[[909,1,1,97,98]]],[37,1,1,98,99,[[922,1,1,98,99]]]],[151,550,553,554,556,1704,2200,2205,2208,2218,2223,2250,2261,2273,2278,2383,2387,2538,2555,2564,2586,2597,2605,2608,2614,2619,2629,2632,2634,2639,2753,2757,2762,2783,2807,2861,3029,3115,3117,3160,3162,3163,3180,4095,4295,4684,4863,5032,5187,5189,5411,5647,5675,5690,5696,6058,6060,6064,6680,7345,8162,8714,8911,9364,9374,9379,9678,10079,10957,10968,11166,11227,12497,12583,12702,13915,17161,17162,17502,17865,18250,18371,18581,18838,19072,19137,19631,20067,20446,20455,20757,20927,21066,21458,21542,21548,22767,22848,23051]]]]},{"k":"H6087","v":[["*",[17,17,[[0,3,3,0,3,[[5,1,1,0,1],[33,1,1,1,2],[44,1,1,2,3]]],[8,2,2,3,5,[[255,2,2,3,5]]],[9,1,1,5,6,[[285,1,1,5,6]]],[10,1,1,6,7,[[291,1,1,6,7]]],[12,1,1,7,8,[[341,1,1,7,8]]],[15,2,2,8,10,[[420,2,2,8,10]]],[17,1,1,10,11,[[445,1,1,10,11]]],[18,2,2,11,13,[[533,1,1,11,12],[555,1,1,12,13]]],[20,1,1,13,14,[[668,1,1,13,14]]],[22,2,2,14,16,[[732,1,1,14,15],[741,1,1,15,16]]],[23,1,1,16,17,[[788,1,1,16,17]]]],[143,987,1363,7733,7764,8513,8723,10395,12503,12504,13094,14760,15153,17502,18729,18876,20029]]],["+",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18876]]],["displeased",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8723]]],["grieve",[2,2,[[12,1,1,0,1,[[341,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[10395,15153]]],["grieved",[8,8,[[0,3,3,0,3,[[5,1,1,0,1],[33,1,1,1,2],[44,1,1,2,3]]],[8,2,2,3,5,[[255,2,2,3,5]]],[9,1,1,5,6,[[285,1,1,5,6]]],[15,1,1,6,7,[[420,1,1,6,7]]],[22,1,1,7,8,[[732,1,1,7,8]]]],[143,987,1363,7733,7764,8513,12504,18729]]],["hurt",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17502]]],["made",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13094]]],["sorry",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12503]]],["worship",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20029]]],["wrest",[1,1,[[18,1,1,0,1,[[533,1,1,0,1]]]],[14760]]]]},{"k":"H6088","v":[["lamentable",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21925]]]]},{"k":"H6089","v":[["*",[7,7,[[0,1,1,0,1,[[2,1,1,0,1]]],[18,1,1,1,2,[[604,1,1,1,2]]],[19,4,4,2,6,[[632,1,1,2,3],[637,1,1,3,4],[641,1,1,4,5],[642,1,1,5,6]]],[23,1,1,6,7,[[766,1,1,6,7]]]],[71,16123,16527,16678,16795,16808,19482]]],["grievous",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16808]]],["idol",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19482]]],["labour",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16795]]],["labours",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16527]]],["sorrow",[2,2,[[0,1,1,0,1,[[2,1,1,0,1]]],[19,1,1,1,2,[[637,1,1,1,2]]]],[71,16678]]],["sorrows",[1,1,[[18,1,1,0,1,[[604,1,1,0,1]]]],[16123]]]]},{"k":"H6090","v":[["*",[4,4,[[12,1,1,0,1,[[341,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]],[22,2,2,2,4,[[692,1,1,2,3],[726,1,1,3,4]]]],[10394,16263,17931,18619]]],["+",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17931]]],["idol",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18619]]],["sorrow",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10394]]],["wicked",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16263]]]]},{"k":"H6091","v":[["*",[17,17,[[8,1,1,0,1,[[266,1,1,0,1]]],[9,1,1,1,2,[[271,1,1,1,2]]],[12,1,1,2,3,[[347,1,1,2,3]]],[13,1,1,3,4,[[390,1,1,3,4]]],[18,4,4,4,8,[[583,2,2,4,6],[592,1,1,6,7],[612,1,1,7,8]]],[22,2,2,8,10,[[688,1,1,8,9],[724,1,1,9,10]]],[23,1,1,10,11,[[794,1,1,10,11]]],[27,4,4,11,15,[[865,1,1,11,12],[869,1,1,12,13],[874,1,1,13,14],[875,1,1,14,15]]],[32,1,1,15,16,[[893,1,1,15,16]]],[37,1,1,16,17,[[923,1,1,16,17]]]],[8018,8153,10668,11695,15687,15689,15834,16190,17861,18587,20168,22150,22198,22268,22290,22586,23061]]],["idols",[16,16,[[8,1,1,0,1,[[266,1,1,0,1]]],[12,1,1,1,2,[[347,1,1,1,2]]],[13,1,1,2,3,[[390,1,1,2,3]]],[18,4,4,3,7,[[583,2,2,3,5],[592,1,1,5,6],[612,1,1,6,7]]],[22,2,2,7,9,[[688,1,1,7,8],[724,1,1,8,9]]],[23,1,1,9,10,[[794,1,1,9,10]]],[27,4,4,10,14,[[865,1,1,10,11],[869,1,1,11,12],[874,1,1,12,13],[875,1,1,13,14]]],[32,1,1,14,15,[[893,1,1,14,15]]],[37,1,1,15,16,[[923,1,1,15,16]]]],[8018,10668,11695,15687,15689,15834,16190,17861,18587,20168,22150,22198,22268,22290,22586,23061]]],["images",[1,1,[[9,1,1,0,1,[[271,1,1,0,1]]]],[8153]]]]},{"k":"H6092","v":[["labours",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18789]]]]},{"k":"H6093","v":[["*",[3,3,[[0,3,3,0,3,[[2,2,2,0,2],[4,1,1,2,3]]]],[71,72,134]]],["+",[1,1,[[0,1,1,0,1,[[4,1,1,0,1]]]],[134]]],["sorrow",[2,2,[[0,2,2,0,2,[[2,2,2,0,2]]]],[71,72]]]]},{"k":"H6094","v":[["*",[5,5,[[17,1,1,0,1,[[444,1,1,0,1]]],[18,2,2,1,3,[[493,1,1,1,2],[624,1,1,2,3]]],[19,2,2,3,5,[[637,1,1,3,4],[642,1,1,4,5]]]],[13079,14096,16354,16666,16820]]],["sorrow",[2,2,[[19,2,2,0,2,[[637,1,1,0,1],[642,1,1,1,2]]]],[16666,16820]]],["sorrows",[2,2,[[17,1,1,0,1,[[444,1,1,0,1]]],[18,1,1,1,2,[[493,1,1,1,2]]]],[13079,14096]]],["wounds",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16354]]]]},{"k":"H6095","v":[["shutteth",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16870]]]]},{"k":"H6096","v":[["backbone",[1,1,[[2,1,1,0,1,[[92,1,1,0,1]]]],[2787]]]]},{"k":"H6097","v":[["trees",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19095]]]]},{"k":"H6098","v":[["*",[88,85,[[4,1,1,0,1,[[184,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[9,10,7,2,9,[[281,2,2,2,4],[282,3,2,4,6],[283,5,3,6,9]]],[10,4,4,9,13,[[291,1,1,9,10],[302,3,3,10,13]]],[11,1,1,13,14,[[330,1,1,13,14]]],[12,1,1,14,15,[[349,1,1,14,15]]],[13,5,5,15,20,[[376,3,3,15,18],[388,1,1,18,19],[391,1,1,19,20]]],[14,3,3,20,23,[[406,1,1,20,21],[412,2,2,21,23]]],[15,1,1,23,24,[[416,1,1,23,24]]],[17,9,9,24,33,[[440,1,1,24,25],[445,1,1,25,26],[447,1,1,26,27],[453,1,1,27,28],[456,1,1,28,29],[457,1,1,29,30],[464,1,1,30,31],[473,1,1,31,32],[477,1,1,32,33]]],[18,11,11,33,44,[[478,1,1,33,34],[490,1,1,34,35],[491,1,1,35,36],[497,1,1,36,37],[510,2,2,37,39],[550,1,1,39,40],[583,2,2,40,42],[584,1,1,42,43],[596,1,1,43,44]]],[19,10,10,44,54,[[628,2,2,44,46],[635,1,1,46,47],[639,1,1,47,48],[646,2,2,48,50],[647,2,2,50,52],[648,1,1,52,53],[654,1,1,53,54]]],[22,18,18,54,72,[[683,1,1,54,55],[686,1,1,55,56],[689,1,1,56,57],[692,1,1,57,58],[694,1,1,58,59],[697,3,3,59,62],[703,1,1,62,63],[706,1,1,63,64],[707,1,1,64,65],[708,1,1,65,66],[714,1,1,66,67],[718,1,1,67,68],[722,1,1,68,69],[724,2,2,69,71],[725,1,1,71,72]]],[23,8,8,72,80,[[762,2,2,72,74],[763,1,1,74,75],[776,1,1,75,76],[793,3,3,76,79],[794,1,1,79,80]]],[25,2,2,80,82,[[808,1,1,80,81],[812,1,1,81,82]]],[27,1,1,82,83,[[871,1,1,82,83]]],[32,1,1,83,84,[[896,1,1,83,84]]],[37,1,1,84,85,[[916,1,1,84,85]]]],[5786,7061,8420,8423,8446,8449,8456,8463,8472,8729,9159,9164,9165,10044,10739,11403,11408,11409,11649,11720,12115,12255,12260,12374,12964,13089,13141,13283,13371,13407,13553,13795,13925,13940,14076,14086,14186,14376,14377,15044,15664,15694,15710,15922,16425,16430,16616,16734,16945,16946,16959,16972,17014,17178,17758,17817,17886,17954,17972,18007,18015,18021,18119,18193,18208,18218,18335,18433,18559,18596,18597,18612,19402,19407,19414,19750,20134,20147,20157,20211,20603,20657,22231,22632,22960]]],["+",[7,7,[[9,1,1,0,1,[[283,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[19,1,1,3,4,[[654,1,1,3,4]]],[22,2,2,4,6,[[686,1,1,4,5],[718,1,1,5,6]]],[27,1,1,6,7,[[871,1,1,6,7]]]],[8463,12374,15922,17178,17817,18433,22231]]],["Counsel",[2,2,[[19,2,2,0,2,[[635,1,1,0,1],[647,1,1,1,2]]]],[16616,16959]]],["advice",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11409]]],["advisement",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10739]]],["counsel",[73,71,[[4,1,1,0,1,[[184,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[9,9,7,2,9,[[281,2,2,2,4],[282,3,2,4,6],[283,4,3,6,9]]],[10,4,4,9,13,[[291,1,1,9,10],[302,3,3,10,13]]],[11,1,1,13,14,[[330,1,1,13,14]]],[13,4,4,14,18,[[376,2,2,14,16],[388,1,1,16,17],[391,1,1,17,18]]],[14,2,2,18,20,[[412,2,2,18,20]]],[17,9,9,20,29,[[440,1,1,20,21],[445,1,1,21,22],[447,1,1,22,23],[453,1,1,23,24],[456,1,1,24,25],[457,1,1,25,26],[464,1,1,26,27],[473,1,1,27,28],[477,1,1,28,29]]],[18,10,10,29,39,[[478,1,1,29,30],[490,1,1,30,31],[491,1,1,31,32],[497,1,1,32,33],[510,2,2,33,35],[550,1,1,35,36],[583,2,2,36,38],[584,1,1,38,39]]],[19,7,7,39,46,[[628,2,2,39,41],[639,1,1,41,42],[646,2,2,42,44],[647,1,1,44,45],[648,1,1,45,46]]],[22,13,13,46,59,[[683,1,1,46,47],[689,1,1,47,48],[694,1,1,48,49],[697,3,3,49,52],[706,1,1,52,53],[707,1,1,53,54],[708,1,1,54,55],[714,1,1,55,56],[722,1,1,56,57],[724,2,2,57,59]]],[23,8,8,59,67,[[762,2,2,59,61],[763,1,1,61,62],[776,1,1,62,63],[793,3,3,63,66],[794,1,1,66,67]]],[25,2,2,67,69,[[808,1,1,67,68],[812,1,1,68,69]]],[32,1,1,69,70,[[896,1,1,69,70]]],[37,1,1,70,71,[[916,1,1,70,71]]]],[5786,7061,8420,8423,8446,8449,8456,8463,8472,8729,9159,9164,9165,10044,11403,11408,11649,11720,12255,12260,12964,13089,13141,13283,13371,13407,13553,13795,13925,13940,14076,14086,14186,14376,14377,15044,15664,15694,15710,16425,16430,16734,16945,16946,16972,17014,17758,17886,17972,18007,18015,18021,18193,18208,18218,18335,18559,18596,18597,19402,19407,19414,19750,20134,20147,20157,20211,20603,20657,22632,22960]]],["counsels",[2,2,[[22,2,2,0,2,[[703,1,1,0,1],[725,1,1,1,2]]]],[18119,18612]]],["purpose",[2,2,[[14,1,1,0,1,[[406,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]]],[12115,17954]]]]},{"k":"H6099","v":[["*",[31,31,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[50,1,1,1,2]]],[3,3,3,2,5,[[130,1,1,2,3],[138,1,1,3,4],[148,1,1,4,5]]],[4,6,6,5,11,[[156,1,1,5,6],[159,1,1,6,7],[161,2,2,7,9],[163,1,1,9,10],[178,1,1,10,11]]],[5,1,1,11,12,[[209,1,1,11,12]]],[18,3,3,12,15,[[487,1,1,12,13],[512,1,1,13,14],[612,1,1,14,15]]],[19,3,3,15,18,[[634,1,1,15,16],[645,1,1,16,17],[657,1,1,17,18]]],[22,3,3,18,21,[[686,1,1,18,19],[731,1,1,19,20],[738,1,1,20,21]]],[26,2,2,21,23,[[857,1,1,21,22],[860,1,1,22,23]]],[28,4,4,23,27,[[876,1,1,23,24],[877,3,3,24,27]]],[29,1,1,27,28,[[883,1,1,27,28]]],[32,2,2,28,30,[[896,2,2,28,30]]],[37,1,1,30,31,[[918,1,1,30,31]]]],[442,1541,4120,4381,4719,5042,5112,5158,5171,5231,5571,6469,14051,14428,16185,16601,16919,17277,17814,18723,18843,21985,22061,22297,22313,22316,22322,22435,22623,22627,22998]]],["+",[2,2,[[3,1,1,0,1,[[138,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[4381,17277]]],["great",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4719]]],["mightier",[7,7,[[1,1,1,0,1,[[50,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[4,5,5,2,7,[[156,1,1,2,3],[159,1,1,3,4],[161,2,2,4,6],[163,1,1,6,7]]]],[1541,4120,5042,5112,5158,5171,5231]]],["mighty",[7,7,[[0,1,1,0,1,[[17,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]],[18,1,1,2,3,[[612,1,1,2,3]]],[19,1,1,3,4,[[645,1,1,3,4]]],[26,2,2,4,6,[[857,1,1,4,5],[860,1,1,5,6]]],[29,1,1,6,7,[[883,1,1,6,7]]]],[442,5571,16185,16919,21985,22061,22435]]],["much",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14428]]],["ones",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14051]]],["strong",[12,12,[[5,1,1,0,1,[[209,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]],[22,3,3,2,5,[[686,1,1,2,3],[731,1,1,3,4],[738,1,1,4,5]]],[28,4,4,5,9,[[876,1,1,5,6],[877,3,3,6,9]]],[32,2,2,9,11,[[896,2,2,9,11]]],[37,1,1,11,12,[[918,1,1,11,12]]]],[6469,16601,17814,18723,18843,22297,22313,22316,22322,22623,22627,22998]]]]},{"k":"H6100","v":[["*",[7,7,[[3,2,2,0,2,[[149,2,2,0,2]]],[4,1,1,2,3,[[154,1,1,2,3]]],[10,2,2,3,5,[[299,1,1,3,4],[312,1,1,4,5]]],[13,2,2,5,7,[[374,1,1,5,6],[386,1,1,6,7]]]],[4795,4796,4946,9077,9528,11363,11623]]],["+",[2,2,[[3,1,1,0,1,[[149,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]]],[4796,4946]]],["Eziongaber",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4795]]],["Eziongeber",[4,4,[[10,2,2,0,2,[[299,1,1,0,1],[312,1,1,1,2]]],[13,2,2,2,4,[[374,1,1,2,3],[386,1,1,3,4]]]],[9077,9528,11363,11623]]]]},{"k":"H6101","v":[["+",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7002]]]]},{"k":"H6102","v":[["*",[14,14,[[19,14,14,0,14,[[633,2,2,0,2],[637,1,1,2,3],[640,1,1,3,4],[642,1,1,4,5],[646,1,1,5,6],[647,1,1,6,7],[648,1,1,7,8],[649,1,1,8,9],[651,1,1,9,10],[653,4,4,10,14]]]],[16546,16549,16682,16751,16826,16949,16958,17009,17028,17109,17154,17155,17156,17157]]],["+",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17109]]],["slothful",[7,7,[[19,7,7,0,7,[[642,1,1,0,1],[646,1,1,1,2],[648,1,1,2,3],[649,1,1,3,4],[653,3,3,4,7]]]],[16826,16949,17009,17028,17154,17155,17156]]],["sluggard",[6,6,[[19,6,6,0,6,[[633,2,2,0,2],[637,1,1,2,3],[640,1,1,3,4],[647,1,1,4,5],[653,1,1,5,6]]]],[16546,16549,16682,16751,16958,17157]]]]},{"k":"H6103","v":[["*",[2,2,[[19,1,1,0,1,[[646,1,1,0,1]]],[20,1,1,1,2,[[668,1,1,1,2]]]],[16940,17511]]],["Slothfulness",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16940]]],["slothfulness",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17511]]]]},{"k":"H6104","v":[["idleness",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17311]]]]},{"k":"H6105","v":[["*",[20,20,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,2,2,1,3,[[50,2,2,1,3]]],[18,6,6,3,9,[[515,1,1,3,4],[517,2,2,4,6],[546,1,1,6,7],[582,1,1,7,8],[616,1,1,8,9]]],[22,3,3,9,12,[[707,1,1,9,10],[709,1,1,10,11],[711,1,1,11,12]]],[23,5,5,12,17,[[749,1,1,12,13],[759,1,1,13,14],[774,2,2,14,16],[794,1,1,16,17]]],[26,3,3,17,20,[[857,2,2,17,19],[860,1,1,19,20]]]],[708,1539,1552,14509,14530,14537,14939,15630,16256,18203,18251,18294,19064,19323,19681,19682,20183,21969,21985,22059]]],["+",[5,5,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,2,2,1,3,[[50,2,2,1,3]]],[22,2,2,3,5,[[707,1,1,3,4],[709,1,1,4,5]]]],[708,1539,1552,18203,18251]]],["bones",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20183]]],["great",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16256]]],["increased",[4,4,[[23,4,4,0,4,[[749,1,1,0,1],[759,1,1,1,2],[774,2,2,2,4]]]],[19064,19323,19681,19682]]],["mighty",[2,2,[[18,1,1,0,1,[[546,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]]],[14939,21985]]],["more",[2,2,[[18,2,2,0,2,[[517,2,2,0,2]]]],[14530,14537]]],["shutteth",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18294]]],["strong",[3,3,[[18,1,1,0,1,[[515,1,1,0,1]]],[26,2,2,1,3,[[857,1,1,1,2],[860,1,1,2,3]]]],[14509,21969,22059]]],["stronger",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15630]]]]},{"k":"H6106","v":[["*",[126,108,[[0,7,6,0,6,[[1,2,1,0,1],[6,1,1,1,2],[16,2,2,2,4],[28,1,1,4,5],[49,1,1,5,6]]],[1,7,6,6,12,[[61,4,4,6,10],[62,2,1,10,11],[73,1,1,11,12]]],[2,5,5,12,17,[[112,5,5,12,17]]],[3,4,4,17,21,[[125,1,1,17,18],[135,2,2,18,20],[140,1,1,20,21]]],[4,1,1,21,22,[[184,1,1,21,22]]],[5,3,3,22,25,[[191,1,1,22,23],[196,1,1,23,24],[210,1,1,24,25]]],[6,2,2,25,27,[[219,1,1,25,26],[229,1,1,26,27]]],[8,1,1,27,28,[[266,1,1,27,28]]],[9,9,6,28,34,[[271,1,1,28,29],[285,2,2,29,31],[287,6,3,31,34]]],[10,3,2,34,36,[[303,3,2,34,36]]],[11,7,5,36,41,[[325,1,1,36,37],[335,6,4,37,41]]],[12,2,2,41,43,[[347,1,1,41,42],[348,1,1,42,43]]],[13,1,1,43,44,[[400,1,1,43,44]]],[17,13,13,44,57,[[437,1,1,44,45],[439,1,1,45,46],[442,1,1,46,47],[445,1,1,47,48],[454,1,1,48,49],[455,1,1,49,50],[456,2,2,50,52],[465,2,2,52,54],[468,2,2,54,56],[475,1,1,56,57]]],[18,15,15,57,72,[[483,1,1,57,58],[499,2,2,58,60],[508,1,1,60,61],[509,1,1,61,62],[511,1,1,62,63],[512,1,1,63,64],[515,1,1,64,65],[519,1,1,65,66],[528,1,1,66,67],[530,1,1,67,68],[579,2,2,68,70],[586,1,1,70,71],[618,1,1,71,72]]],[19,5,5,72,77,[[630,1,1,72,73],[639,1,1,73,74],[641,1,1,74,75],[642,1,1,75,76],[643,1,1,76,77]]],[20,1,1,77,78,[[669,1,1,77,78]]],[22,3,3,78,81,[[716,1,1,78,79],[736,1,1,79,80],[744,1,1,80,81]]],[23,7,3,81,84,[[752,5,1,81,82],[764,1,1,82,83],[767,1,1,83,84]]],[24,4,4,84,88,[[797,1,1,84,85],[799,1,1,85,86],[800,2,2,86,88]]],[25,21,15,88,103,[[803,1,1,88,89],[807,1,1,89,90],[825,6,4,90,94],[833,1,1,94,95],[838,10,6,95,101],[840,1,1,101,102],[841,1,1,102,103]]],[29,2,2,103,105,[[880,1,1,103,104],[884,1,1,104,105]]],[32,2,2,105,107,[[895,2,2,105,107]]],[34,1,1,107,108,[[905,1,1,107,108]]]],[53,172,420,423,809,1531,1833,1857,1862,1867,1886,2187,3416,3423,3430,3431,3432,3977,4305,4307,4454,5806,5945,6091,6508,6756,7053,8022,8133,8523,8524,8592,8593,8594,9186,9215,9892,10179,10181,10183,10185,10671,10674,11938,12896,12944,13023,13097,13317,13337,13378,13379,13574,13587,13669,13671,13882,13987,14218,14221,14341,14358,14408,14420,14493,14565,14699,14724,15524,15526,15773,16283,16463,16723,16802,16837,16864,17518,18403,18797,18936,19154,19431,19493,20323,20358,20427,20428,20495,20568,21058,21060,21061,21066,21275,21398,21400,21401,21402,21404,21408,21463,21478,22380,22460,22610,22611,22784]]],["+",[13,13,[[0,4,4,0,4,[[1,1,1,0,1],[6,1,1,1,2],[16,2,2,2,4]]],[1,3,3,4,7,[[61,2,2,4,6],[62,1,1,6,7]]],[2,2,2,7,9,[[112,2,2,7,9]]],[5,1,1,9,10,[[191,1,1,9,10]]],[11,1,1,10,11,[[335,1,1,10,11]]],[17,1,1,11,12,[[442,1,1,11,12]]],[25,1,1,12,13,[[841,1,1,12,13]]]],[53,172,420,423,1857,1867,1886,3416,3423,5945,10183,13023,21478]]],["body",[2,2,[[1,1,1,0,1,[[73,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[2187,20427]]],["bone",[15,14,[[0,2,2,0,2,[[1,1,1,0,1],[28,1,1,1,2]]],[1,1,1,2,3,[[61,1,1,2,3]]],[3,3,3,3,6,[[125,1,1,3,4],[135,2,2,4,6]]],[6,1,1,6,7,[[219,1,1,6,7]]],[9,2,2,7,9,[[271,1,1,7,8],[285,1,1,8,9]]],[12,1,1,9,10,[[348,1,1,9,10]]],[17,2,2,10,12,[[437,1,1,10,11],[454,1,1,11,12]]],[25,3,2,12,14,[[838,2,1,12,13],[840,1,1,13,14]]]],[53,809,1862,3977,4305,4307,6756,8133,8524,10674,12896,13317,21404,21463]]],["bones",[86,74,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,1,1,1,2,[[62,1,1,1,2]]],[3,1,1,2,3,[[140,1,1,2,3]]],[5,1,1,3,4,[[210,1,1,3,4]]],[6,1,1,4,5,[[229,1,1,4,5]]],[8,1,1,5,6,[[266,1,1,5,6]]],[9,7,4,6,10,[[285,1,1,6,7],[287,6,3,7,10]]],[10,3,2,10,12,[[303,3,2,10,12]]],[11,6,5,12,17,[[325,1,1,12,13],[335,5,4,13,17]]],[12,1,1,17,18,[[347,1,1,17,18]]],[13,1,1,18,19,[[400,1,1,18,19]]],[17,9,9,19,28,[[439,1,1,19,20],[445,1,1,20,21],[455,1,1,21,22],[456,1,1,22,23],[465,2,2,23,25],[468,2,2,25,27],[475,1,1,27,28]]],[18,15,15,28,43,[[483,1,1,28,29],[499,2,2,29,31],[508,1,1,31,32],[509,1,1,32,33],[511,1,1,33,34],[512,1,1,34,35],[515,1,1,35,36],[519,1,1,36,37],[528,1,1,37,38],[530,1,1,38,39],[579,2,2,39,41],[586,1,1,41,42],[618,1,1,42,43]]],[19,5,5,43,48,[[630,1,1,43,44],[639,1,1,44,45],[641,1,1,45,46],[642,1,1,46,47],[643,1,1,47,48]]],[20,1,1,48,49,[[669,1,1,48,49]]],[22,3,3,49,52,[[716,1,1,49,50],[736,1,1,50,51],[744,1,1,51,52]]],[23,7,3,52,55,[[752,5,1,52,53],[764,1,1,53,54],[767,1,1,54,55]]],[24,3,3,55,58,[[797,1,1,55,56],[799,1,1,56,57],[800,1,1,57,58]]],[25,14,11,58,69,[[807,1,1,58,59],[825,4,3,59,62],[833,1,1,62,63],[838,8,6,63,69]]],[29,2,2,69,71,[[880,1,1,69,70],[884,1,1,70,71]]],[32,2,2,71,73,[[895,2,2,71,73]]],[34,1,1,73,74,[[905,1,1,73,74]]]],[1531,1886,4454,6508,7053,8022,8523,8592,8593,8594,9186,9215,9892,10179,10181,10183,10185,10671,11938,12944,13097,13337,13379,13574,13587,13669,13671,13882,13987,14218,14221,14341,14358,14408,14420,14493,14565,14699,14724,15524,15526,15773,16283,16463,16723,16802,16837,16864,17518,18403,18797,18936,19154,19431,19493,20323,20358,20428,20568,21060,21061,21066,21275,21398,21400,21401,21402,21404,21408,22380,22460,22610,22611,22784]]],["same",[5,4,[[2,3,3,0,3,[[112,3,3,0,3]]],[25,2,1,3,4,[[825,2,1,3,4]]]],[3430,3431,3432,21058]]],["selfsame",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]]],[1833,5806]]],["strength",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13378]]],["very",[2,2,[[5,1,1,0,1,[[196,1,1,0,1]]],[25,1,1,1,2,[[803,1,1,1,2]]]],[6091,20495]]]]},{"k":"H6107","v":[["*",[3,3,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]],[12,1,1,2,3,[[341,1,1,2,3]]]],[6231,6324,10414]]],["Azem",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]]],[6231,6324]]],["Ezem",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10414]]]]},{"k":"H6108","v":[["*",[3,3,[[4,1,1,0,1,[[160,1,1,0,1]]],[17,1,1,1,2,[[465,1,1,1,2]]],[18,1,1,2,3,[[616,1,1,2,3]]]],[5154,13578,16254]]],["might",[1,1,[[4,1,1,0,1,[[160,1,1,0,1]]]],[5154]]],["strong",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13578]]],["substance",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16254]]]]},{"k":"H6109","v":[["*",[3,3,[[22,2,2,0,2,[[718,1,1,0,1],[725,1,1,1,2]]],[33,1,1,2,3,[[902,1,1,2,3]]]],[18449,18608,22721]]],["abundance",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18608]]],["strength",[2,2,[[22,1,1,0,1,[[718,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[18449,22721]]]]},{"k":"H6110","v":[["strong",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18472]]]]},{"k":"H6111","v":[["*",[3,3,[[3,2,2,0,2,[[150,2,2,0,2]]],[5,1,1,2,3,[[201,1,1,2,3]]]],[4820,4821,6206]]],["+",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4821]]],["Azmon",[2,2,[[3,1,1,0,1,[[150,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]]],[4820,6206]]]]},{"k":"H6112","v":[["Eznite",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8661]]]]},{"k":"H6113","v":[["*",[46,45,[[0,3,2,0,2,[[15,1,1,0,1],[19,2,1,1,2]]],[3,3,3,2,5,[[132,2,2,2,4],[141,1,1,4,5]]],[4,2,2,5,7,[[163,1,1,5,6],[184,1,1,6,7]]],[6,2,2,7,9,[[223,2,2,7,9]]],[8,3,3,9,12,[[244,1,1,9,10],[256,2,2,10,12]]],[9,2,2,12,14,[[290,2,2,12,14]]],[10,4,4,14,18,[[298,1,1,14,15],[304,1,1,15,16],[308,1,1,16,17],[311,1,1,17,18]]],[11,4,4,18,22,[[316,1,1,18,19],[321,1,1,19,20],[326,1,1,20,21],[329,1,1,21,22]]],[12,3,3,22,25,[[349,1,1,22,23],[358,1,1,23,24],[366,1,1,24,25]]],[13,7,7,25,32,[[368,1,1,25,26],[372,1,1,26,27],[373,1,1,27,28],[379,1,1,28,29],[380,1,1,29,30],[386,1,1,30,31],[388,1,1,31,32]]],[15,1,1,32,33,[[418,1,1,32,33]]],[17,3,3,33,36,[[439,1,1,33,34],[447,1,1,34,35],[464,1,1,35,36]]],[18,1,1,36,37,[[583,1,1,36,37]]],[22,1,1,37,38,[[744,1,1,37,38]]],[23,4,4,38,42,[[764,1,1,38,39],[777,1,1,39,40],[780,1,1,40,41],[783,1,1,41,42]]],[26,3,3,42,45,[[859,2,2,42,44],[860,1,1,44,45]]]],[383,513,4242,4244,4479,5225,5794,6899,6900,7408,7777,7779,8713,8717,9020,9228,9385,9472,9627,9764,9922,9987,10721,10956,11178,11217,11308,11337,11473,11486,11624,11653,12411,12932,13143,13541,15681,18931,19431,19776,19847,19938,22023,22031,22042]]],["+",[6,5,[[0,2,1,0,1,[[19,2,1,0,1]]],[4,1,1,1,2,[[163,1,1,1,2]]],[12,1,1,2,3,[[366,1,1,2,3]]],[13,2,2,3,5,[[368,1,1,3,4],[386,1,1,4,5]]]],[513,5225,11178,11217,11624]]],["close",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10721]]],["detain",[2,2,[[6,2,2,0,2,[[223,2,2,0,2]]]],[6899,6900]]],["detained",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7779]]],["kept",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7777]]],["prevail",[1,1,[[13,1,1,0,1,[[380,1,1,0,1]]]],[11486]]],["recover",[1,1,[[13,1,1,0,1,[[379,1,1,0,1]]]],[11473]]],["refrained",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13541]]],["reign",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7408]]],["restrained",[1,1,[[0,1,1,0,1,[[15,1,1,0,1]]]],[383]]],["retain",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22042]]],["retained",[2,2,[[26,2,2,0,2,[[859,2,2,0,2]]]],[22023,22031]]],["shut",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18931]]],["slack",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9627]]],["stayed",[7,7,[[3,3,3,0,3,[[132,2,2,0,2],[141,1,1,2,3]]],[9,2,2,3,5,[[290,2,2,3,5]]],[12,1,1,5,6,[[358,1,1,5,6]]],[18,1,1,6,7,[[583,1,1,6,7]]]],[4242,4244,4479,8713,8717,10956,15681]]],["still",[1,1,[[13,1,1,0,1,[[388,1,1,0,1]]]],[11653]]],["stop",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9385]]],["up",[14,14,[[4,1,1,0,1,[[184,1,1,0,1]]],[10,3,3,1,4,[[298,1,1,1,2],[304,1,1,2,3],[311,1,1,3,4]]],[11,3,3,4,7,[[321,1,1,4,5],[326,1,1,5,6],[329,1,1,6,7]]],[13,2,2,7,9,[[372,1,1,7,8],[373,1,1,8,9]]],[15,1,1,9,10,[[418,1,1,9,10]]],[23,4,4,10,14,[[764,1,1,10,11],[777,1,1,11,12],[780,1,1,12,13],[783,1,1,13,14]]]],[5794,9020,9228,9472,9764,9922,9987,11308,11337,12411,19431,19776,19847,19938]]],["withhold",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12932]]],["withholdeth",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13143]]]]},{"k":"H6114","v":[["+",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7000]]]]},{"k":"H6115","v":[["*",[3,3,[[18,1,1,0,1,[[584,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]],[22,1,1,2,3,[[731,1,1,2,3]]]],[15738,17267,18719]]],["+",[2,2,[[18,1,1,0,1,[[584,1,1,0,1]]],[22,1,1,1,2,[[731,1,1,1,2]]]],[15738,18719]]],["barren",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17267]]]]},{"k":"H6116","v":[["*",[11,11,[[2,1,1,0,1,[[112,1,1,0,1]]],[3,1,1,1,2,[[145,1,1,1,2]]],[4,1,1,2,3,[[168,1,1,2,3]]],[11,1,1,3,4,[[322,1,1,3,4]]],[13,1,1,4,5,[[373,1,1,4,5]]],[15,1,1,5,6,[[420,1,1,5,6]]],[22,1,1,6,7,[[679,1,1,6,7]]],[23,1,1,7,8,[[753,1,1,7,8]]],[28,2,2,8,10,[[876,1,1,8,9],[877,1,1,9,10]]],[29,1,1,10,11,[[883,1,1,10,11]]]],[3438,4643,5350,9813,11333,12511,17667,19177,22305,22326,22444]]],["assemblies",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22444]]],["assembly",[9,9,[[2,1,1,0,1,[[112,1,1,0,1]]],[3,1,1,1,2,[[145,1,1,1,2]]],[4,1,1,2,3,[[168,1,1,2,3]]],[11,1,1,3,4,[[322,1,1,3,4]]],[13,1,1,4,5,[[373,1,1,4,5]]],[15,1,1,5,6,[[420,1,1,5,6]]],[23,1,1,6,7,[[753,1,1,6,7]]],[28,2,2,7,9,[[876,1,1,7,8],[877,1,1,8,9]]]],[3438,4643,5350,9813,11333,12511,19177,22305,22326]]],["meeting",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17667]]]]},{"k":"H6117","v":[["*",[5,4,[[0,1,1,0,1,[[26,1,1,0,1]]],[17,1,1,1,2,[[472,1,1,1,2]]],[23,2,1,2,3,[[753,2,1,2,3]]],[27,1,1,3,4,[[873,1,1,3,4]]]],[763,13773,19179,22255]]],["+",[3,2,[[23,2,1,0,1,[[753,2,1,0,1]]],[27,1,1,1,2,[[873,1,1,1,2]]]],[19179,22255]]],["stay",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13773]]],["supplanted",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[763]]]]},{"k":"H6118","v":[["*",[15,15,[[0,2,2,0,2,[[21,1,1,0,1],[25,1,1,1,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[4,2,2,3,5,[[159,1,1,3,4],[160,1,1,4,5]]],[9,2,2,5,7,[[278,2,2,5,7]]],[18,5,5,7,12,[[496,1,1,7,8],[517,1,1,8,9],[547,1,1,9,10],[596,2,2,10,12]]],[19,1,1,12,13,[[649,1,1,12,13]]],[22,1,1,13,14,[[683,1,1,13,14]]],[29,1,1,14,15,[[882,1,1,14,15]]]],[565,697,4132,5123,5157,8292,8296,14179,14540,14974,15931,16010,17019,17762,22422]]],["+",[4,4,[[0,1,1,0,1,[[21,1,1,0,1]]],[9,2,2,1,3,[[278,2,2,1,3]]],[29,1,1,3,4,[[882,1,1,3,4]]]],[565,8292,8296,22422]]],["Because",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[697]]],["By",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17019]]],["because",[2,2,[[3,1,1,0,1,[[130,1,1,0,1]]],[4,1,1,1,2,[[160,1,1,1,2]]]],[4132,5157]]],["end",[2,2,[[18,2,2,0,2,[[596,2,2,0,2]]]],[15931,16010]]],["for",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17762]]],["if",[1,1,[[4,1,1,0,1,[[159,1,1,0,1]]]],[5123]]],["reward",[3,3,[[18,3,3,0,3,[[496,1,1,0,1],[517,1,1,1,2],[547,1,1,2,3]]]],[14179,14540,14974]]]]},{"k":"H6119","v":[["*",[13,13,[[0,4,4,0,4,[[2,1,1,0,1],[24,1,1,1,2],[48,2,2,2,4]]],[5,1,1,4,5,[[194,1,1,4,5]]],[6,1,1,5,6,[[215,1,1,5,6]]],[17,1,1,6,7,[[453,1,1,6,7]]],[18,4,4,7,11,[[518,1,1,7,8],[533,1,1,8,9],[554,1,1,9,10],[566,1,1,10,11]]],[21,1,1,11,12,[[671,1,1,11,12]]],[23,1,1,12,13,[[757,1,1,12,13]]]],[70,684,1490,1492,6015,6645,13285,14551,14761,15112,15377,17545,19288]]],["+",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6645]]],["footsteps",[3,3,[[18,2,2,0,2,[[554,1,1,0,1],[566,1,1,1,2]]],[21,1,1,2,3,[[671,1,1,2,3]]]],[15112,15377,17545]]],["heel",[4,4,[[0,2,2,0,2,[[2,1,1,0,1],[24,1,1,1,2]]],[17,1,1,2,3,[[453,1,1,2,3]]],[18,1,1,3,4,[[518,1,1,3,4]]]],[70,684,13285,14551]]],["heels",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[23,1,1,1,2,[[757,1,1,1,2]]]],[1490,19288]]],["last",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1492]]],["steps",[1,1,[[18,1,1,0,1,[[533,1,1,0,1]]]],[14761]]],["wait",[1,1,[[5,1,1,0,1,[[194,1,1,0,1]]]],[6015]]]]},{"k":"H6120","v":[["heels",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14653]]]]},{"k":"H6121","v":[["*",[3,3,[[22,1,1,0,1,[[718,1,1,0,1]]],[23,1,1,1,2,[[761,1,1,1,2]]],[27,1,1,2,3,[[867,1,1,2,3]]]],[18424,19366,22175]]],["crooked",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18424]]],["deceitful",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19366]]],["polluted",[1,1,[[27,1,1,0,1,[[867,1,1,0,1]]]],[22175]]]]},{"k":"H6122","v":[["subtilty",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9812]]]]},{"k":"H6123","v":[["+",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[556]]]]},{"k":"H6124","v":[["ringstraked",[7,6,[[0,7,6,0,6,[[29,3,3,0,3],[30,4,3,3,6]]]],[865,869,870,881,883,885]]]]},{"k":"H6125","v":[["oppression",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14735]]]]},{"k":"H6126","v":[["Akkub",[8,8,[[12,2,2,0,2,[[340,1,1,0,1],[346,1,1,1,2]]],[14,2,2,2,4,[[404,2,2,2,4]]],[15,4,4,4,8,[[419,1,1,4,5],[420,1,1,5,6],[423,1,1,6,7],[424,1,1,7,8]]]],[10385,10632,12069,12072,12465,12500,12607,12649]]]]},{"k":"H6127","v":[["wrong",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22735]]]]},{"k":"H6128","v":[["*",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[18,1,1,1,2,[[602,1,1,1,2]]]],[6629,16115]]],["+",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6629]]],["ways",[1,1,[[18,1,1,0,1,[[602,1,1,0,1]]]],[16115]]]]},{"k":"H6129","v":[["crooked",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18152]]]]},{"k":"H6130","v":[["Akan",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1067]]]]},{"k":"H6131","v":[["*",[7,7,[[0,1,1,0,1,[[48,1,1,0,1]]],[5,2,2,1,3,[[197,2,2,1,3]]],[9,1,1,3,4,[[274,1,1,3,4]]],[12,1,1,4,5,[[355,1,1,4,5]]],[20,1,1,5,6,[[661,1,1,5,6]]],[35,1,1,6,7,[[907,1,1,6,7]]]],[1479,6113,6116,8213,10894,17361,22809]]],["+",[4,4,[[5,2,2,0,2,[[197,2,2,0,2]]],[9,1,1,2,3,[[274,1,1,2,3]]],[12,1,1,3,4,[[355,1,1,3,4]]]],[6113,6116,8213,10894]]],["down",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1479]]],["up",[2,2,[[20,1,1,0,1,[[661,1,1,0,1]]],[35,1,1,1,2,[[907,1,1,1,2]]]],[17361,22809]]]]},{"k":"H6132","v":[["roots",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21941]]]]},{"k":"H6133","v":[["stock",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3516]]]]},{"k":"H6134","v":[["Eker",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10333]]]]},{"k":"H6135","v":[["*",[12,11,[[0,3,3,0,3,[[10,1,1,0,1],[24,1,1,1,2],[28,1,1,2,3]]],[1,1,1,3,4,[[72,1,1,3,4]]],[4,2,1,4,5,[[159,2,1,4,5]]],[6,2,2,5,7,[[223,2,2,5,7]]],[8,1,1,7,8,[[237,1,1,7,8]]],[17,1,1,8,9,[[459,1,1,8,9]]],[18,1,1,9,10,[[590,1,1,9,10]]],[22,1,1,10,11,[[732,1,1,10,11]]]],[296,679,826,2170,5125,6886,6887,7245,13457,15822,18724]]],["barren",[11,11,[[0,3,3,0,3,[[10,1,1,0,1],[24,1,1,1,2],[28,1,1,2,3]]],[1,1,1,3,4,[[72,1,1,3,4]]],[4,1,1,4,5,[[159,1,1,4,5]]],[6,2,2,5,7,[[223,2,2,5,7]]],[8,1,1,7,8,[[237,1,1,7,8]]],[17,1,1,8,9,[[459,1,1,8,9]]],[18,1,1,9,10,[[590,1,1,9,10]]],[22,1,1,10,11,[[732,1,1,10,11]]]],[296,679,826,2170,5125,6886,6887,7245,13457,15822,18724]]],["male",[1,1,[[4,1,1,0,1,[[159,1,1,0,1]]]],[5125]]]]},{"k":"H6136","v":[["stump",[3,3,[[26,3,3,0,3,[[853,3,3,0,3]]]],[21852,21860,21863]]]]},{"k":"H6137","v":[["*",[8,8,[[3,1,1,0,1,[[150,1,1,0,1]]],[4,1,1,1,2,[[160,1,1,1,2]]],[6,1,1,2,3,[[211,1,1,2,3]]],[10,2,2,3,5,[[302,2,2,3,5]]],[13,2,2,5,7,[[376,2,2,5,7]]],[25,1,1,7,8,[[803,1,1,7,8]]]],[4820,5152,6545,9162,9165,11406,11409,20498]]],["Akrabbim",[2,2,[[3,1,1,0,1,[[150,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]]],[4820,6545]]],["scorpions",[6,6,[[4,1,1,0,1,[[160,1,1,0,1]]],[10,2,2,1,3,[[302,2,2,1,3]]],[13,2,2,3,5,[[376,2,2,3,5]]],[25,1,1,5,6,[[803,1,1,5,6]]]],[5152,9162,9165,11406,11409,20498]]]]},{"k":"H6138","v":[["*",[22,20,[[5,5,5,0,5,[[199,1,1,0,1],[201,3,3,1,4],[205,1,1,4,5]]],[6,1,1,5,6,[[211,1,1,5,6]]],[8,7,5,6,11,[[240,2,1,6,7],[241,2,2,7,9],[242,1,1,9,10],[252,2,1,10,11]]],[11,4,4,11,15,[[313,4,4,11,15]]],[23,1,1,15,16,[[769,1,1,15,16]]],[29,1,1,16,17,[[879,1,1,16,17]]],[35,1,1,17,18,[[907,1,1,17,18]]],[37,2,2,18,20,[[919,2,2,18,20]]]],[6157,6213,6247,6248,6364,6527,7329,7347,7348,7366,7670,9535,9536,9539,9549,19554,22372,22809,23004,23006]]],["+",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[8,1,1,1,2,[[242,1,1,1,2]]]],[6248,7366]]],["Ekron",[20,18,[[5,4,4,0,4,[[199,1,1,0,1],[201,2,2,1,3],[205,1,1,3,4]]],[6,1,1,4,5,[[211,1,1,4,5]]],[8,6,4,5,9,[[240,2,1,5,6],[241,2,2,6,8],[252,2,1,8,9]]],[11,4,4,9,13,[[313,4,4,9,13]]],[23,1,1,13,14,[[769,1,1,13,14]]],[29,1,1,14,15,[[879,1,1,14,15]]],[35,1,1,15,16,[[907,1,1,15,16]]],[37,2,2,16,18,[[919,2,2,16,18]]]],[6157,6213,6247,6364,6527,7329,7347,7348,7670,9535,9536,9539,9549,19554,22372,22809,23004,23006]]]]},{"k":"H6139","v":[["Ekronites",[2,2,[[5,1,1,0,1,[[199,1,1,0,1]]],[8,1,1,1,2,[[240,1,1,1,2]]]],[6157,7329]]]]},{"k":"H6140","v":[["*",[5,5,[[17,1,1,0,1,[[444,1,1,0,1]]],[19,2,2,1,3,[[637,1,1,1,2],[655,1,1,2,3]]],[22,1,1,3,4,[[737,1,1,3,4]]],[32,1,1,4,5,[[895,1,1,4,5]]]],[13071,16665,17214,18808,22617]]],["crooked",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18808]]],["perverse",[2,2,[[17,1,1,0,1,[[444,1,1,0,1]]],[19,1,1,1,2,[[655,1,1,1,2]]]],[13071,17214]]],["pervert",[1,1,[[32,1,1,0,1,[[895,1,1,0,1]]]],[22617]]],["perverteth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16665]]]]},{"k":"H6141","v":[["*",[11,11,[[4,1,1,0,1,[[184,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,2,2,2,4,[[495,1,1,2,3],[578,1,1,3,4]]],[19,7,7,4,11,[[629,1,1,4,5],[635,1,1,5,6],[638,1,1,6,7],[644,1,1,7,8],[646,1,1,8,9],[649,1,1,9,10],[655,1,1,10,11]]]],[5763,8629,14144,15517,16448,16610,16708,16893,16926,17020,17202]]],["+",[2,2,[[19,2,2,0,2,[[646,1,1,0,1],[655,1,1,1,2]]]],[16926,17202]]],["crooked",[1,1,[[19,1,1,0,1,[[629,1,1,0,1]]]],[16448]]],["froward",[6,6,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,2,2,1,3,[[495,1,1,1,2],[578,1,1,2,3]]],[19,3,3,3,6,[[638,1,1,3,4],[644,1,1,4,5],[649,1,1,5,6]]]],[8629,14144,15517,16708,16893,17020]]],["perverse",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]]],[5763,16610]]]]},{"k":"H6142","v":[["Ikkesh",[3,3,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,2,2,1,3,[[348,1,1,1,2],[364,1,1,2,3]]]],[8679,10701,11118]]]]},{"k":"H6143","v":[["froward",[2,2,[[19,2,2,0,2,[[631,1,1,0,1],[633,1,1,1,2]]]],[16514,16552]]]]},{"k":"H6144","v":[["*",[6,6,[[3,2,2,0,2,[[137,2,2,0,2]]],[4,3,3,2,5,[[154,3,3,2,5]]],[22,1,1,5,6,[[693,1,1,5,6]]]],[4355,4368,4947,4956,4967,17961]]],["+",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4956]]],["Ar",[5,5,[[3,2,2,0,2,[[137,2,2,0,2]]],[4,2,2,2,4,[[154,2,2,2,4]]],[22,1,1,4,5,[[693,1,1,4,5]]]],[4355,4368,4947,4967,17961]]]]},{"k":"H6145","v":[["*",[2,2,[[8,1,1,0,1,[[263,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]]],[7958,16259]]],["enemies",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16259]]],["enemy",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7958]]]]},{"k":"H6146","v":[["enemies",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21856]]]]},{"k":"H6147","v":[["Er",[10,7,[[0,5,4,0,4,[[37,3,3,0,3],[45,2,1,3,4]]],[3,2,1,4,5,[[142,2,1,4,5]]],[12,3,2,5,7,[[339,2,1,5,6],[341,1,1,6,7]]]],[1122,1125,1126,1398,4508,10309,10406]]]]},{"k":"H6148","v":[["*",[18,18,[[0,2,2,0,2,[[42,1,1,0,1],[43,1,1,1,2]]],[14,1,1,2,3,[[411,1,1,2,3]]],[15,1,1,3,4,[[417,1,1,3,4]]],[17,1,1,4,5,[[452,1,1,4,5]]],[18,2,2,5,7,[[583,1,1,5,6],[596,1,1,6,7]]],[19,9,9,7,16,[[633,1,1,7,8],[638,1,1,8,9],[641,1,1,9,10],[644,1,1,10,11],[647,2,2,11,13],[649,1,1,13,14],[651,1,1,14,15],[654,1,1,15,16]]],[23,1,1,16,17,[[774,1,1,16,17]]],[25,1,1,17,18,[[828,1,1,17,18]]]],[1299,1356,12239,12385,13263,15686,16020,16541,16703,16782,16891,16970,16973,17041,17100,17182,19688,21148]]],["+",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19688]]],["becometh",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16891]]],["intermeddle",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16782]]],["meddle",[2,2,[[19,2,2,0,2,[[647,1,1,0,1],[651,1,1,1,2]]]],[16973,17100]]],["mingled",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15686]]],["mortgaged",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12385]]],["occupiers",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21148]]],["sureties",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17041]]],["surety",[8,8,[[0,2,2,0,2,[[42,1,1,0,1],[43,1,1,1,2]]],[17,1,1,2,3,[[452,1,1,2,3]]],[18,1,1,3,4,[[596,1,1,3,4]]],[19,4,4,4,8,[[633,1,1,4,5],[638,1,1,5,6],[647,1,1,6,7],[654,1,1,7,8]]]],[1299,1356,13263,16020,16541,16703,16970,17182]]],["themselves",[1,1,[[14,1,1,0,1,[[411,1,1,0,1]]]],[12239]]]]},{"k":"H6149","v":[["*",[12,12,[[11,1,1,0,1,[[330,1,1,0,1]]],[18,1,1,1,2,[[581,1,1,1,2]]],[19,2,2,2,4,[[630,1,1,2,3],[640,1,1,3,4]]],[22,2,2,4,6,[[714,1,1,4,5],[716,1,1,5,6]]],[23,2,2,6,8,[[750,1,1,6,7],[775,1,1,7,8]]],[25,2,2,8,10,[[817,1,1,8,9],[828,1,1,9,10]]],[27,1,1,10,11,[[870,1,1,10,11]]],[38,1,1,11,12,[[927,1,1,11,12]]]],[10047,15605,16479,16766,18338,18404,19109,19717,20799,21130,22212,23124]]],["occupy",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21130]]],["pleasant",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23124]]],["pleasing",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22212]]],["pleasure",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20799]]],["pledges",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]]],[10047,18338]]],["sweet",[5,5,[[18,1,1,0,1,[[581,1,1,0,1]]],[19,2,2,1,3,[[630,1,1,1,2],[640,1,1,2,3]]],[23,2,2,3,5,[[750,1,1,3,4],[775,1,1,4,5]]]],[15605,16479,16766,19109,19717]]],["undertake",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18404]]]]},{"k":"H6150","v":[["*",[3,3,[[6,1,1,0,1,[[229,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[22,1,1,2,3,[[702,1,1,2,3]]]],[7033,7634,18106]]],["darkened",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18106]]],["evening",[2,2,[[6,1,1,0,1,[[229,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]]],[7033,7634]]]]},{"k":"H6151","v":[["*",[4,2,[[26,4,2,0,2,[[851,4,2,0,2]]]],[21799,21801]]],["mixed",[3,2,[[26,3,2,0,2,[[851,3,2,0,2]]]],[21799,21801]]],["themselves",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21801]]]]},{"k":"H6152","v":[["Arabia",[5,4,[[13,1,1,0,1,[[375,1,1,0,1]]],[22,2,1,1,2,[[699,2,1,1,2]]],[23,1,1,2,3,[[769,1,1,2,3]]],[25,1,1,3,4,[[828,1,1,3,4]]]],[11378,18048,19558,21142]]]]},{"k":"H6153","v":[["*",[134,125,[[0,13,13,0,13,[[0,6,6,0,6],[7,1,1,6,7],[18,1,1,7,8],[23,2,2,8,10],[28,1,1,10,11],[29,1,1,11,12],[48,1,1,12,13]]],[1,13,12,13,25,[[61,3,2,13,15],[65,4,4,15,19],[67,2,2,19,21],[76,1,1,21,22],[78,2,2,22,24],[79,1,1,24,25]]],[2,33,29,25,54,[[95,1,1,25,26],[100,9,8,26,34],[103,1,1,34,35],[104,15,14,35,49],[106,1,1,49,50],[111,1,1,50,51],[112,4,2,51,53],[113,1,1,53,54]]],[3,13,13,54,67,[[125,5,5,54,59],[135,6,6,59,65],[144,2,2,65,67]]],[4,5,4,67,71,[[168,2,2,67,69],[175,1,1,69,70],[180,2,1,70,71]]],[5,4,4,71,75,[[191,1,1,71,72],[193,1,1,72,73],[194,1,1,73,74],[196,1,1,74,75]]],[6,4,4,75,79,[[229,1,1,75,76],[230,2,2,76,78],[231,1,1,78,79]]],[7,1,1,79,80,[[233,1,1,79,80]]],[8,3,3,80,83,[[249,1,1,80,81],[255,1,1,81,82],[265,1,1,82,83]]],[9,3,3,83,86,[[267,1,1,83,84],[277,2,2,84,86]]],[10,2,2,86,88,[[307,1,1,86,87],[312,1,1,87,88]]],[11,1,1,88,89,[[328,1,1,88,89]]],[12,2,2,89,91,[[353,1,1,89,90],[360,1,1,90,91]]],[13,7,4,91,95,[[368,1,1,91,92],[379,4,1,92,93],[384,1,1,93,94],[397,1,1,94,95]]],[14,3,3,95,98,[[405,1,1,95,96],[411,2,2,96,98]]],[16,1,1,98,99,[[427,1,1,98,99]]],[17,2,2,99,101,[[439,1,1,99,100],[442,1,1,100,101]]],[18,8,8,101,109,[[507,1,1,101,102],[532,1,1,102,103],[536,2,2,103,105],[542,1,1,105,106],[567,1,1,106,107],[581,1,1,107,108],[618,1,1,108,109]]],[19,1,1,109,110,[[634,1,1,109,110]]],[20,1,1,110,111,[[669,1,1,110,111]]],[22,1,1,111,112,[[695,1,1,111,112]]],[23,1,1,112,113,[[750,1,1,112,113]]],[25,5,5,113,118,[[813,2,2,113,115],[825,1,1,115,116],[834,1,1,116,117],[847,1,1,117,118]]],[26,3,3,118,121,[[857,2,2,118,120],[858,1,1,120,121]]],[34,1,1,121,122,[[903,1,1,121,122]]],[35,2,2,122,124,[[907,1,1,122,123],[908,1,1,123,124]]],[37,1,1,124,125,[[924,1,1,124,125]]]],[4,7,12,18,22,30,194,458,602,654,818,846,1500,1822,1834,1953,1955,1959,1960,2012,2013,2293,2375,2377,2390,2869,3021,3022,3024,3025,3028,3029,3036,3037,3157,3173,3174,3175,3176,3178,3179,3184,3185,3186,3187,3189,3190,3191,3195,3250,3375,3407,3434,3449,3968,3970,3976,3980,3986,4296,4297,4299,4308,4310,4311,4581,4585,5346,5348,5511,5678,5944,5982,6031,6090,7040,7077,7080,7104,7166,7532,7735,7995,8034,8261,8272,9323,9515,9978,10860,11013,11215,11464,11576,11857,12100,12241,12242,12738,12950,13012,14324,14749,14796,14804,14868,15384,15594,16278,16584,17519,17997,19093,20684,20687,21074,21302,21657,21975,21987,22009,22739,22812,22823,23075]]],["+",[14,11,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,1,1,1,2,[[76,1,1,1,2]]],[2,2,2,2,4,[[112,1,1,2,3],[113,1,1,3,4]]],[3,1,1,4,5,[[125,1,1,4,5]]],[5,1,1,5,6,[[194,1,1,5,6]]],[9,1,1,6,7,[[277,1,1,6,7]]],[13,4,1,7,8,[[379,4,1,7,8]]],[19,1,1,8,9,[[634,1,1,8,9]]],[22,1,1,9,10,[[695,1,1,9,10]]],[26,1,1,10,11,[[857,1,1,10,11]]]],[654,2293,3434,3449,3986,6031,8261,11464,16584,17997,21975]]],["Evening",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14749]]],["even",[71,66,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,9,8,1,9,[[61,2,1,1,2],[65,3,3,2,5],[67,1,1,5,6],[78,2,2,6,8],[79,1,1,8,9]]],[2,30,27,9,36,[[100,9,8,9,17],[103,1,1,17,18],[104,15,14,18,32],[106,1,1,32,33],[111,1,1,33,34],[112,3,2,34,36]]],[3,12,12,36,48,[[125,4,4,36,40],[135,6,6,40,46],[144,2,2,46,48]]],[4,4,3,48,51,[[168,2,2,48,50],[180,2,1,50,51]]],[5,1,1,51,52,[[191,1,1,51,52]]],[6,4,4,52,56,[[229,1,1,52,53],[230,2,2,53,55],[231,1,1,55,56]]],[7,1,1,56,57,[[233,1,1,56,57]]],[8,1,1,57,58,[[255,1,1,57,58]]],[9,2,2,58,60,[[267,1,1,58,59],[277,1,1,59,60]]],[10,1,1,60,61,[[312,1,1,60,61]]],[12,1,1,61,62,[[360,1,1,61,62]]],[13,1,1,62,63,[[384,1,1,62,63]]],[25,3,3,63,66,[[813,2,2,63,65],[825,1,1,65,66]]]],[458,1834,1953,1959,1960,2013,2375,2377,2390,3021,3022,3024,3025,3028,3029,3036,3037,3157,3173,3174,3175,3176,3178,3179,3184,3185,3186,3187,3189,3190,3191,3195,3250,3375,3407,3434,3968,3970,3976,3980,4296,4297,4299,4308,4310,4311,4581,4585,5346,5348,5678,5944,7040,7077,7080,7104,7166,7735,8034,8272,9515,11013,11576,20684,20687,21074]]],["evening",[43,43,[[0,10,10,0,10,[[0,6,6,0,6],[7,1,1,6,7],[23,1,1,7,8],[28,1,1,8,9],[29,1,1,9,10]]],[1,3,3,10,13,[[61,1,1,10,11],[65,1,1,11,12],[67,1,1,12,13]]],[4,1,1,13,14,[[175,1,1,13,14]]],[5,1,1,14,15,[[196,1,1,14,15]]],[8,2,2,15,17,[[249,1,1,15,16],[265,1,1,16,17]]],[10,1,1,17,18,[[307,1,1,17,18]]],[11,1,1,18,19,[[328,1,1,18,19]]],[12,1,1,19,20,[[353,1,1,19,20]]],[13,2,2,20,22,[[368,1,1,20,21],[397,1,1,21,22]]],[14,3,3,22,25,[[405,1,1,22,23],[411,2,2,23,25]]],[16,1,1,25,26,[[427,1,1,25,26]]],[17,1,1,26,27,[[439,1,1,26,27]]],[18,6,6,27,33,[[536,2,2,27,29],[542,1,1,29,30],[567,1,1,30,31],[581,1,1,31,32],[618,1,1,32,33]]],[20,1,1,33,34,[[669,1,1,33,34]]],[23,1,1,34,35,[[750,1,1,34,35]]],[25,2,2,35,37,[[834,1,1,35,36],[847,1,1,36,37]]],[26,2,2,37,39,[[857,1,1,37,38],[858,1,1,38,39]]],[34,1,1,39,40,[[903,1,1,39,40]]],[35,2,2,40,42,[[907,1,1,40,41],[908,1,1,41,42]]],[37,1,1,42,43,[[924,1,1,42,43]]]],[4,7,12,18,22,30,194,602,818,846,1822,1955,2012,5511,6090,7532,7995,9323,9978,10860,11215,11857,12100,12241,12242,12738,12950,14796,14804,14868,15384,15594,16278,17519,19093,21302,21657,21987,22009,22739,22812,22823,23075]]],["eventide",[1,1,[[5,1,1,0,1,[[193,1,1,0,1]]]],[5982]]],["night",[4,4,[[0,1,1,0,1,[[48,1,1,0,1]]],[2,1,1,1,2,[[95,1,1,1,2]]],[17,1,1,2,3,[[442,1,1,2,3]]],[18,1,1,3,4,[[507,1,1,3,4]]]],[1500,2869,13012,14324]]]]},{"k":"H6154","v":[["*",[16,16,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,9,9,1,10,[[102,9,9,1,10]]],[10,1,1,10,11,[[300,1,1,10,11]]],[15,1,1,11,12,[[425,1,1,11,12]]],[23,3,3,12,15,[[769,2,2,12,14],[794,1,1,14,15]]],[25,1,1,15,16,[[831,1,1,15,16]]]],[1854,3100,3101,3103,3104,3105,3108,3109,3110,3111,9094,12674,19554,19558,20203,21209]]],["Arabia",[1,1,[[10,1,1,0,1,[[300,1,1,0,1]]]],[9094]]],["mixed",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1854]]],["multitude",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12674]]],["people",[4,4,[[23,3,3,0,3,[[769,2,2,0,2],[794,1,1,2,3]]],[25,1,1,3,4,[[831,1,1,3,4]]]],[19554,19558,20203,21209]]],["woof",[9,9,[[2,9,9,0,9,[[102,9,9,0,9]]]],[3100,3101,3103,3104,3105,3108,3109,3110,3111]]]]},{"k":"H6155","v":[["willows",[5,5,[[2,1,1,0,1,[[112,1,1,0,1]]],[17,1,1,1,2,[[475,1,1,1,2]]],[18,1,1,2,3,[[614,1,1,2,3]]],[22,2,2,3,5,[[693,1,1,3,4],[722,1,1,4,5]]]],[3442,13886,16224,17967,18537]]]]},{"k":"H6156","v":[["sweet",[2,2,[[19,1,1,0,1,[[647,1,1,0,1]]],[21,1,1,1,2,[[672,1,1,1,2]]]],[16971,17568]]]]},{"k":"H6157","v":[["*",[9,7,[[1,7,5,0,5,[[57,7,5,0,5]]],[18,2,2,5,7,[[555,1,1,5,6],[582,1,1,6,7]]]],[1731,1732,1734,1739,1741,15158,15637]]],["flies",[2,2,[[18,2,2,0,2,[[555,1,1,0,1],[582,1,1,1,2]]]],[15158,15637]]],["swarm",[2,1,[[1,2,1,0,1,[[57,2,1,0,1]]]],[1734]]],["swarms",[5,4,[[1,5,4,0,4,[[57,5,4,0,4]]]],[1731,1732,1739,1741]]]]},{"k":"H6158","v":[["*",[10,10,[[0,1,1,0,1,[[7,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]],[4,1,1,2,3,[[166,1,1,2,3]]],[10,2,2,3,5,[[307,2,2,3,5]]],[17,1,1,5,6,[[473,1,1,5,6]]],[18,1,1,6,7,[[624,1,1,6,7]]],[19,1,1,7,8,[[657,1,1,7,8]]],[21,1,1,8,9,[[675,1,1,8,9]]],[22,1,1,9,10,[[712,1,1,9,10]]]],[190,3012,5304,9321,9323,13834,16360,17268,17609,18314]]],["raven",[6,6,[[0,1,1,0,1,[[7,1,1,0,1]]],[2,1,1,1,2,[[100,1,1,1,2]]],[4,1,1,2,3,[[166,1,1,2,3]]],[17,1,1,3,4,[[473,1,1,3,4]]],[21,1,1,4,5,[[675,1,1,4,5]]],[22,1,1,5,6,[[712,1,1,5,6]]]],[190,3012,5304,13834,17609,18314]]],["ravens",[4,4,[[10,2,2,0,2,[[307,2,2,0,2]]],[18,1,1,2,3,[[624,1,1,2,3]]],[19,1,1,3,4,[[657,1,1,3,4]]]],[9321,9323,16360,17268]]]]},{"k":"H6159","v":[["Oreb",[7,4,[[6,5,2,0,2,[[217,4,1,0,1],[218,1,1,1,2]]],[18,1,1,2,3,[[560,1,1,2,3]]],[22,1,1,3,4,[[688,1,1,3,4]]]],[6719,6722,15252,17876]]]]},{"k":"H6160","v":[["*",[61,57,[[3,9,9,0,9,[[138,1,1,0,1],[142,2,2,1,3],[147,1,1,3,4],[149,3,3,4,7],[151,1,1,7,8],[152,1,1,8,9]]],[4,10,8,9,17,[[153,2,2,9,11],[154,1,1,11,12],[155,2,1,12,13],[156,2,1,13,14],[163,1,1,14,15],[186,2,2,15,17]]],[5,13,11,17,28,[[189,1,1,17,18],[190,1,1,18,19],[191,1,1,19,20],[194,1,1,20,21],[197,2,2,21,23],[198,4,3,23,26],[199,1,1,26,27],[204,2,1,27,28]]],[8,1,1,28,29,[[258,1,1,28,29]]],[9,4,4,29,33,[[268,1,1,29,30],[270,1,1,30,31],[281,1,1,31,32],[283,1,1,32,33]]],[11,3,3,33,36,[[326,1,1,33,34],[337,2,2,34,36]]],[17,2,2,36,38,[[459,1,1,36,37],[474,1,1,37,38]]],[18,1,1,38,39,[[545,1,1,38,39]]],[22,6,6,39,45,[[711,1,1,39,40],[713,2,2,40,42],[718,1,1,42,43],[719,1,1,43,44],[729,1,1,44,45]]],[23,9,9,45,54,[[746,1,1,45,46],[749,1,1,46,47],[761,1,1,47,48],[783,2,2,48,50],[794,1,1,50,51],[795,1,1,51,52],[796,2,2,52,54]]],[25,1,1,54,55,[[848,1,1,54,55]]],[29,1,1,55,56,[[884,1,1,55,56]]],[37,1,1,56,57,[[924,1,1,56,57]]]],[4376,4492,4552,4676,4808,4809,4810,4846,4892,4893,4899,4946,4992,5053,5238,5840,5847,5909,5923,5944,6016,6109,6123,6131,6133,6138,6186,6311,7834,8078,8127,8417,8465,9921,10226,10227,13441,13840,14904,18288,18321,18326,18423,18470,18676,18971,19064,19363,19927,19928,20178,20255,20283,20284,21687,22464,23078]]],["+",[1,1,[[4,1,1,0,1,[[186,1,1,0,1]]]],[5840]]],["Arabah",[2,1,[[5,2,1,0,1,[[204,2,1,0,1]]]],[6311]]],["champaign",[1,1,[[4,1,1,0,1,[[163,1,1,0,1]]]],[5238]]],["desert",[8,8,[[22,5,5,0,5,[[713,2,2,0,2],[718,1,1,2,3],[719,1,1,3,4],[729,1,1,4,5]]],[23,2,2,5,7,[[761,1,1,5,6],[794,1,1,6,7]]],[25,1,1,7,8,[[848,1,1,7,8]]]],[18321,18326,18423,18470,18676,19363,20178,21687]]],["deserts",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18971]]],["evenings",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19064]]],["heavens",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14904]]],["plain",[22,19,[[4,7,5,0,5,[[153,2,2,0,2],[154,1,1,2,3],[155,2,1,3,4],[156,2,1,4,5]]],[5,6,5,5,10,[[189,1,1,5,6],[194,1,1,6,7],[197,1,1,7,8],[198,3,2,8,10]]],[8,1,1,10,11,[[258,1,1,10,11]]],[9,3,3,11,14,[[268,1,1,11,12],[270,1,1,12,13],[281,1,1,13,14]]],[11,2,2,14,16,[[326,1,1,14,15],[337,1,1,15,16]]],[23,2,2,16,18,[[783,1,1,16,17],[796,1,1,17,18]]],[37,1,1,18,19,[[924,1,1,18,19]]]],[4893,4899,4946,4992,5053,5909,6016,6123,6131,6133,7834,8078,8127,8417,9921,10226,19927,20283,23078]]],["plains",[19,19,[[3,9,9,0,9,[[138,1,1,0,1],[142,2,2,1,3],[147,1,1,3,4],[149,3,3,4,7],[151,1,1,7,8],[152,1,1,8,9]]],[4,1,1,9,10,[[186,1,1,9,10]]],[5,5,5,10,15,[[190,1,1,10,11],[191,1,1,11,12],[197,1,1,12,13],[198,1,1,13,14],[199,1,1,14,15]]],[9,1,1,15,16,[[283,1,1,15,16]]],[11,1,1,16,17,[[337,1,1,16,17]]],[23,2,2,17,19,[[783,1,1,17,18],[796,1,1,18,19]]]],[4376,4492,4552,4676,4808,4809,4810,4846,4892,5847,5923,5944,6109,6138,6186,8465,10227,19928,20284]]],["wilderness",[5,5,[[17,2,2,0,2,[[459,1,1,0,1],[474,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]],[29,1,1,4,5,[[884,1,1,4,5]]]],[13441,13840,18288,20255,22464]]]]},{"k":"H6161","v":[["*",[2,2,[[8,1,1,0,1,[[252,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]]],[7636,16891]]],["pledge",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7636]]],["surety",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16891]]]]},{"k":"H6162","v":[["pledge",[3,3,[[0,3,3,0,3,[[37,3,3,0,3]]]],[1136,1137,1139]]]]},{"k":"H6163","v":[["*",[9,9,[[13,4,4,0,4,[[383,1,1,0,1],[387,1,1,1,2],[388,1,1,2,3],[392,1,1,3,4]]],[15,3,3,4,7,[[414,1,1,4,5],[416,1,1,5,6],[418,1,1,6,7]]],[22,1,1,7,8,[[691,1,1,7,8]]],[23,1,1,8,9,[[747,1,1,8,9]]]],[11534,11640,11645,11739,12326,12366,12402,17926,19004]]],["Arabian",[4,4,[[15,2,2,0,2,[[414,1,1,0,1],[418,1,1,1,2]]],[22,1,1,2,3,[[691,1,1,2,3]]],[23,1,1,3,4,[[747,1,1,3,4]]]],[12326,12402,17926,19004]]],["Arabians",[5,5,[[13,4,4,0,4,[[383,1,1,0,1],[387,1,1,1,2],[388,1,1,2,3],[392,1,1,3,4]]],[15,1,1,4,5,[[416,1,1,4,5]]]],[11534,11640,11645,11739,12366]]]]},{"k":"H6164","v":[["Arbathite",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8684,10705]]]]},{"k":"H6165","v":[["*",[3,2,[[18,2,1,0,1,[[519,2,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]]],[14556,22311]]],["cry",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22311]]],["panteth",[2,1,[[18,2,1,0,1,[[519,2,1,0,1]]]],[14556]]]]},{"k":"H6166","v":[["Arad",[5,5,[[3,2,2,0,2,[[137,1,1,0,1],[149,1,1,1,2]]],[5,1,1,2,3,[[198,1,1,2,3]]],[6,1,1,3,4,[[211,1,1,3,4]]],[12,1,1,4,5,[[345,1,1,4,5]]]],[4341,4800,6144,6525,10590]]]]},{"k":"H6167","v":[["asses",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21895]]]]},{"k":"H6168","v":[["*",[15,14,[[0,1,1,0,1,[[23,1,1,0,1]]],[2,2,2,1,3,[[109,2,2,1,3]]],[13,1,1,3,4,[[390,1,1,3,4]]],[18,4,3,4,7,[[514,1,1,4,5],[614,2,1,5,6],[618,1,1,6,7]]],[22,4,4,7,11,[[681,1,1,7,8],[700,1,1,8,9],[710,1,1,9,10],[731,1,1,10,11]]],[24,1,1,11,12,[[800,1,1,11,12]]],[34,1,1,12,13,[[905,1,1,12,13]]],[35,1,1,13,14,[[907,1,1,13,14]]]],[611,3336,3337,11688,14485,16229,16284,17724,18058,18274,18723,20441,22781,22819]]],["+",[4,4,[[2,2,2,0,2,[[109,2,2,0,2]]],[13,1,1,2,3,[[390,1,1,2,3]]],[18,1,1,3,4,[[618,1,1,3,4]]]],[3336,3337,11688,16284]]],["Rase",[1,1,[[18,1,1,0,1,[[614,1,1,0,1]]]],[16229]]],["discover",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17724]]],["discovering",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22781]]],["emptied",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[611]]],["himself",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14485]]],["naked",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20441]]],["out",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18723]]],["poured",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18274]]],["rase",[1,1,[[18,1,1,0,1,[[614,1,1,0,1]]]],[16229]]],["uncover",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22819]]],["uncovered",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18058]]]]},{"k":"H6169","v":[["reeds",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18011]]]]},{"k":"H6170","v":[["*",[4,4,[[21,2,2,0,2,[[675,1,1,0,1],[676,1,1,1,2]]],[25,2,2,2,4,[[818,2,2,2,4]]]],[17611,17616,20832,20835]]],["+",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20832]]],["bed",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17611]]],["beds",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17616]]],["furrows",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20835]]]]},{"k":"H6171","v":[["ass",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13839]]]]},{"k":"H6172","v":[["*",[54,40,[[0,5,4,0,4,[[8,3,2,0,2],[41,2,2,2,4]]],[1,2,2,4,6,[[69,1,1,4,5],[77,1,1,5,6]]],[2,32,20,6,26,[[107,24,14,6,20],[109,8,6,20,26]]],[4,2,2,26,28,[[175,1,1,26,27],[176,1,1,27,28]]],[8,1,1,28,29,[[255,1,1,28,29]]],[22,2,2,29,31,[[698,1,1,29,30],[725,1,1,30,31]]],[24,1,1,31,32,[[797,1,1,31,32]]],[25,8,7,32,39,[[817,4,3,32,35],[823,1,1,35,36],[824,3,3,36,39]]],[27,1,1,39,40,[[863,1,1,39,40]]]],[227,228,1261,1264,2077,2335,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3329,3335,3336,3337,3338,3339,5514,5526,7760,18033,18602,20318,20770,20798,20799,20986,21017,21025,21036,22114]]],["+",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2335]]],["nakedness",[50,36,[[0,5,4,0,4,[[8,3,2,0,2],[41,2,2,2,4]]],[1,1,1,4,5,[[69,1,1,4,5]]],[2,32,20,5,25,[[107,24,14,5,19],[109,8,6,19,25]]],[8,1,1,25,26,[[255,1,1,25,26]]],[22,1,1,26,27,[[725,1,1,26,27]]],[24,1,1,27,28,[[797,1,1,27,28]]],[25,8,7,28,35,[[817,4,3,28,31],[823,1,1,31,32],[824,3,3,32,35]]],[27,1,1,35,36,[[863,1,1,35,36]]]],[227,228,1261,1264,2077,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3329,3335,3336,3337,3338,3339,7760,18602,20318,20770,20798,20799,20986,21017,21025,21036,22114]]],["shame",[1,1,[[22,1,1,0,1,[[698,1,1,0,1]]]],[18033]]],["unclean",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5514]]],["uncleanness",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5526]]]]},{"k":"H6173","v":[["dishonour",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12124]]]]},{"k":"H6174","v":[["*",[16,15,[[0,1,1,0,1,[[1,1,1,0,1]]],[8,1,1,1,2,[[254,1,1,1,2]]],[17,6,5,2,7,[[436,2,1,2,3],[457,1,1,3,4],[459,2,2,4,6],[461,1,1,6,7]]],[20,1,1,7,8,[[663,1,1,7,8]]],[22,4,4,8,12,[[698,3,3,8,11],[736,1,1,11,12]]],[27,1,1,12,13,[[863,1,1,12,13]]],[29,1,1,13,14,[[880,1,1,13,14]]],[32,1,1,14,15,[[893,1,1,14,15]]]],[55,7730,12890,13395,13443,13446,13473,17412,18031,18032,18033,18793,22108,22395,22587]]],["Naked",[1,1,[[17,1,1,0,1,[[436,1,1,0,1]]]],[12890]]],["naked",[15,15,[[0,1,1,0,1,[[1,1,1,0,1]]],[8,1,1,1,2,[[254,1,1,1,2]]],[17,5,5,2,7,[[436,1,1,2,3],[457,1,1,3,4],[459,2,2,4,6],[461,1,1,6,7]]],[20,1,1,7,8,[[663,1,1,7,8]]],[22,4,4,8,12,[[698,3,3,8,11],[736,1,1,11,12]]],[27,1,1,12,13,[[863,1,1,12,13]]],[29,1,1,13,14,[[880,1,1,13,14]]],[32,1,1,14,15,[[893,1,1,14,15]]]],[55,7730,12890,13395,13443,13446,13473,17412,18031,18032,18033,18793,22108,22395,22587]]]]},{"k":"H6175","v":[["*",[11,11,[[0,1,1,0,1,[[2,1,1,0,1]]],[17,2,2,1,3,[[440,1,1,1,2],[450,1,1,2,3]]],[19,8,8,3,11,[[639,2,2,3,5],[640,1,1,5,6],[641,3,3,6,9],[649,1,1,9,10],[654,1,1,10,11]]]],[56,12963,13208,16735,16742,16763,16780,16787,16790,17018,17181]]],["crafty",[2,2,[[17,2,2,0,2,[[440,1,1,0,1],[450,1,1,1,2]]]],[12963,13208]]],["prudent",[8,8,[[19,8,8,0,8,[[639,2,2,0,2],[640,1,1,2,3],[641,3,3,3,6],[649,1,1,6,7],[654,1,1,7,8]]]],[16735,16742,16763,16780,16787,16790,17018,17181]]],["subtil",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[56]]]]},{"k":"H6176","v":[["heath",[2,2,[[23,2,2,0,2,[[761,1,1,0,1],[792,1,1,1,2]]]],[19363,20086]]]]},{"k":"H6177","v":[["*",[16,16,[[3,1,1,0,1,[[148,1,1,0,1]]],[4,3,3,1,4,[[154,1,1,1,2],[155,1,1,2,3],[156,1,1,3,4]]],[5,4,4,4,8,[[198,1,1,4,5],[199,3,3,5,8]]],[6,2,2,8,10,[[221,2,2,8,10]]],[8,1,1,10,11,[[265,1,1,10,11]]],[9,1,1,11,12,[[290,1,1,11,12]]],[11,1,1,12,13,[[322,1,1,12,13]]],[12,1,1,13,14,[[342,1,1,13,14]]],[22,1,1,14,15,[[695,1,1,14,15]]],[23,1,1,15,16,[[792,1,1,15,16]]]],[4752,4974,4987,5052,6132,6163,6170,6179,6855,6862,8006,8697,9826,10436,17985,20099]]],["+",[7,7,[[4,2,2,0,2,[[155,1,1,0,1],[156,1,1,1,2]]],[5,3,3,2,5,[[198,1,1,2,3],[199,2,2,3,5]]],[6,1,1,5,6,[[221,1,1,5,6]]],[11,1,1,6,7,[[322,1,1,6,7]]]],[4987,5052,6132,6163,6170,6862,9826]]],["Aroer",[9,9,[[3,1,1,0,1,[[148,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]],[5,1,1,2,3,[[199,1,1,2,3]]],[6,1,1,3,4,[[221,1,1,3,4]]],[8,1,1,4,5,[[265,1,1,4,5]]],[9,1,1,5,6,[[290,1,1,5,6]]],[12,1,1,6,7,[[342,1,1,6,7]]],[22,1,1,7,8,[[695,1,1,7,8]]],[23,1,1,8,9,[[792,1,1,8,9]]]],[4752,4974,6179,6855,8006,8697,10436,17985,20099]]]]},{"k":"H6178","v":[["clifts",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13563]]]]},{"k":"H6179","v":[["Eri",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1402,4505]]]]},{"k":"H6180","v":[["Erites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4505]]]]},{"k":"H6181","v":[["*",[6,6,[[25,4,4,0,4,[[817,3,3,0,3],[824,1,1,3,4]]],[32,1,1,4,5,[[893,1,1,4,5]]],[34,1,1,5,6,[[905,1,1,5,6]]]],[20769,20784,20801,21036,22590,22777]]],["+",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22777]]],["bare",[4,4,[[25,4,4,0,4,[[817,3,3,0,3],[824,1,1,3,4]]]],[20769,20784,20801,21036]]],["naked",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22590]]]]},{"k":"H6182","v":[["dough",[4,4,[[3,2,2,0,2,[[131,2,2,0,2]]],[15,1,1,2,3,[[422,1,1,2,3]]],[25,1,1,3,4,[[845,1,1,3,4]]]],[4173,4174,12586,21629]]]]},{"k":"H6183","v":[["heavens",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17769]]]]},{"k":"H6184","v":[["*",[20,20,[[17,3,3,0,3,[[441,1,1,0,1],[450,1,1,1,2],[462,1,1,2,3]]],[18,3,3,3,6,[[514,1,1,3,4],[531,1,1,4,5],[563,1,1,5,6]]],[19,1,1,6,7,[[638,1,1,6,7]]],[22,7,7,7,14,[[691,1,1,7,8],[703,3,3,8,11],[707,2,2,11,13],[727,1,1,13,14]]],[23,2,2,14,16,[[759,1,1,14,15],[764,1,1,15,16]]],[25,4,4,16,20,[[829,1,1,16,17],[831,1,1,17,18],[832,1,1,18,19],[833,1,1,19,20]]]],[13001,13223,13494,14485,14728,15298,16704,17917,18121,18122,18123,18198,18213,18661,19336,19433,21164,21215,21242,21260]]],["mighty",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[13001]]],["one",[2,2,[[22,1,1,0,1,[[707,1,1,0,1]]],[23,1,1,1,2,[[764,1,1,1,2]]]],[18213,19433]]],["ones",[3,3,[[22,3,3,0,3,[[703,2,2,0,2],[707,1,1,2,3]]]],[18122,18123,18198]]],["oppressor",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13223]]],["oppressors",[2,2,[[17,1,1,0,1,[[462,1,1,0,1]]],[18,1,1,1,2,[[531,1,1,1,2]]]],[13494,14728]]],["power",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14485]]],["strong",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16704]]],["terrible",[8,8,[[22,3,3,0,3,[[691,1,1,0,1],[703,1,1,1,2],[727,1,1,2,3]]],[23,1,1,3,4,[[759,1,1,3,4]]],[25,4,4,4,8,[[829,1,1,4,5],[831,1,1,5,6],[832,1,1,6,7],[833,1,1,7,8]]]],[17917,18121,18661,19336,21164,21215,21242,21260]]],["violent",[1,1,[[18,1,1,0,1,[[563,1,1,0,1]]]],[15298]]]]},{"k":"H6185","v":[["childless",[4,4,[[0,1,1,0,1,[[14,1,1,0,1]]],[2,2,2,1,3,[[109,2,2,1,3]]],[23,1,1,3,4,[[766,1,1,3,4]]]],[362,3338,3339,19484]]]]},{"k":"H6186","v":[["*",[76,71,[[0,2,2,0,2,[[13,1,1,0,1],[21,1,1,1,2]]],[1,3,3,2,5,[[76,1,1,2,3],[89,2,2,3,5]]],[2,12,10,5,15,[[90,3,3,5,8],[95,1,1,8,9],[113,3,3,9,12],[116,5,3,12,15]]],[3,1,1,15,16,[[139,1,1,15,16]]],[5,1,1,16,17,[[188,1,1,16,17]]],[6,6,4,17,21,[[230,6,4,17,21]]],[8,4,4,21,25,[[239,1,1,21,22],[252,3,3,22,25]]],[9,5,5,25,30,[[276,4,4,25,29],[289,1,1,29,30]]],[10,1,1,30,31,[[308,1,1,30,31]]],[11,1,1,31,32,[[335,1,1,31,32]]],[12,9,8,32,40,[[349,4,4,32,36],[356,5,4,36,40]]],[13,2,2,40,42,[[379,1,1,40,41],[380,1,1,41,42]]],[17,9,9,42,51,[[441,1,1,42,43],[448,1,1,43,44],[458,1,1,44,45],[463,2,2,45,47],[467,1,1,47,48],[468,1,1,48,49],[471,1,1,49,50],[472,1,1,50,51]]],[18,7,7,51,58,[[482,1,1,51,52],[500,1,1,52,53],[517,1,1,53,54],[527,1,1,54,55],[555,1,1,55,56],[566,1,1,56,57],[609,1,1,57,58]]],[19,1,1,58,59,[[636,1,1,58,59]]],[22,5,5,59,64,[[699,1,1,59,60],[708,1,1,60,61],[718,1,1,61,62],[722,1,1,62,63],[743,1,1,63,64]]],[23,5,5,64,69,[[750,1,1,64,65],[790,1,1,65,66],[794,3,3,66,69]]],[25,1,1,69,70,[[824,1,1,69,70]]],[28,1,1,70,71,[[877,1,1,70,71]]]],[344,556,2293,2711,2730,2752,2753,2757,2861,3449,3450,3454,3578,3582,3584,4420,5875,7074,7076,7084,7087,7299,7620,7626,7639,8248,8249,8250,8257,8658,9374,10200,10728,10753,10755,10756,10916,10917,10918,10924,11456,11485,12982,13171,13423,13521,13523,13642,13655,13755,13788,13976,14240,14530,14689,15132,15332,16168,16640,18040,18250,18438,18540,18908,19112,20048,20175,20180,20208,21048,22316]]],["+",[14,14,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,1,1,1,2,[[89,1,1,1,2]]],[2,4,4,2,6,[[90,3,3,2,5],[113,1,1,5,6]]],[3,1,1,6,7,[[139,1,1,6,7]]],[10,1,1,7,8,[[308,1,1,7,8]]],[11,1,1,8,9,[[335,1,1,8,9]]],[12,2,2,9,11,[[356,2,2,9,11]]],[13,2,2,11,13,[[379,1,1,11,12],[380,1,1,12,13]]],[28,1,1,13,14,[[877,1,1,13,14]]]],[556,2711,2752,2753,2757,3450,4420,9374,10200,10916,10924,11456,11485,22316]]],["Order",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20048]]],["Prepare",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18040]]],["against",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12982]]],["array",[20,19,[[6,5,4,0,4,[[230,5,4,0,4]]],[8,4,4,4,8,[[239,1,1,4,5],[252,3,3,5,8]]],[9,4,4,8,12,[[276,4,4,8,12]]],[12,3,3,12,15,[[356,3,3,12,15]]],[23,4,4,15,19,[[750,1,1,15,16],[794,3,3,16,19]]]],[7074,7076,7084,7087,7299,7620,7626,7639,8248,8249,8250,8257,10917,10918,10924,19112,20175,20180,20208]]],["compare",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18438]]],["compared",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15332]]],["direct",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13976]]],["directed",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13642]]],["equal",[2,2,[[17,2,2,0,2,[[463,2,2,0,2]]]],[13521,13523]]],["esteem",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13755]]],["estimate",[2,1,[[2,2,1,0,1,[[116,2,1,0,1]]]],[3584]]],["expert",[3,3,[[12,3,3,0,3,[[349,3,3,0,3]]]],[10753,10755,10756]]],["furnish",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15132]]],["furnished",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16640]]],["handle",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10728]]],["joined",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[344]]],["lay",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2861]]],["ordained",[2,2,[[18,1,1,0,1,[[609,1,1,0,1]]],[22,1,1,1,2,[[708,1,1,1,2]]]],[16168,18250]]],["order",[10,10,[[1,1,1,0,1,[[76,1,1,0,1]]],[2,2,2,1,3,[[113,2,2,1,3]]],[5,1,1,3,4,[[188,1,1,3,4]]],[17,3,3,4,7,[[458,1,1,4,5],[468,1,1,5,6],[472,1,1,6,7]]],[18,2,2,7,9,[[517,1,1,7,8],[527,1,1,8,9]]],[22,1,1,9,10,[[722,1,1,9,10]]]],[2293,3449,3454,5875,13423,13655,13788,14530,14689,18540]]],["ordered",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[17,1,1,1,2,[[448,1,1,1,2]]]],[8658,13171]]],["prepare",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18908]]],["prepared",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21048]]],["preparest",[1,1,[[18,1,1,0,1,[[500,1,1,0,1]]]],[14240]]],["set",[2,2,[[1,1,1,0,1,[[89,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]]],[2730,7076]]],["value",[3,2,[[2,3,2,0,2,[[116,3,2,0,2]]]],[3578,3582]]]]},{"k":"H6187","v":[["*",[33,29,[[1,2,2,0,2,[[89,2,2,0,2]]],[2,24,20,2,22,[[94,2,2,2,4],[95,1,1,4,5],[116,21,17,5,22]]],[3,1,1,22,23,[[134,1,1,22,23]]],[6,1,1,23,24,[[227,1,1,23,24]]],[11,2,2,24,26,[[324,1,1,24,25],[335,1,1,25,26]]],[17,2,2,26,28,[[463,1,1,26,27],[476,1,1,27,28]]],[18,1,1,28,29,[[532,1,1,28,29]]]],[2711,2730,2845,2848,2855,3572,3573,3574,3575,3576,3577,3578,3582,3583,3585,3586,3587,3588,3589,3593,3595,3597,4273,6990,9854,10200,13517,13900,14745]]],["+",[2,2,[[2,2,2,0,2,[[116,2,2,0,2]]]],[3578,3588]]],["at",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9854]]],["equal",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14745]]],["estimation",[21,17,[[2,20,16,0,16,[[94,2,2,0,2],[95,1,1,2,3],[116,17,13,3,16]]],[3,1,1,16,17,[[134,1,1,16,17]]]],[2845,2848,2855,3572,3573,3574,3575,3576,3577,3583,3585,3586,3587,3589,3593,3597,4273]]],["estimations",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3595]]],["order",[2,2,[[1,2,2,0,2,[[89,2,2,0,2]]]],[2711,2730]]],["price",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13517]]],["proportion",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13900]]],["suit",[1,1,[[6,1,1,0,1,[[227,1,1,0,1]]]],[6990]]],["taxation",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10200]]],["valuest",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3582]]]]},{"k":"H6188","v":[["*",[2,2,[[2,1,1,0,1,[[108,1,1,0,1]]],[34,1,1,1,2,[[904,1,1,1,2]]]],[3304,22764]]],["+",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3304]]],["uncovered",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22764]]]]},{"k":"H6189","v":[["*",[36,32,[[0,1,1,0,1,[[16,1,1,0,1]]],[1,3,3,1,4,[[55,2,2,1,3],[61,1,1,3,4]]],[2,3,2,4,6,[[108,2,1,4,5],[115,1,1,5,6]]],[5,1,1,6,7,[[191,1,1,6,7]]],[6,2,2,7,9,[[224,1,1,7,8],[225,1,1,8,9]]],[8,4,4,9,13,[[249,1,1,9,10],[252,2,2,10,12],[266,1,1,12,13]]],[9,1,1,13,14,[[267,1,1,13,14]]],[12,1,1,14,15,[[347,1,1,14,15]]],[22,1,1,15,16,[[730,1,1,15,16]]],[23,3,2,16,18,[[750,1,1,16,17],[753,2,1,17,18]]],[25,16,14,18,32,[[829,1,1,18,19],[832,1,1,19,20],[833,10,10,20,30],[845,4,2,30,32]]]],[411,1667,1685,1864,3304,3565,5941,6912,6947,7514,7644,7654,8013,8042,10663,18697,19099,19201,21167,21248,21267,21269,21272,21273,21274,21275,21276,21277,21278,21280,21606,21608]]],["+",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[25,1,1,1,2,[[833,1,1,1,2]]]],[1864,21275]]],["uncircumcised",[34,30,[[0,1,1,0,1,[[16,1,1,0,1]]],[1,2,2,1,3,[[55,2,2,1,3]]],[2,3,2,3,5,[[108,2,1,3,4],[115,1,1,4,5]]],[5,1,1,5,6,[[191,1,1,5,6]]],[6,2,2,6,8,[[224,1,1,6,7],[225,1,1,7,8]]],[8,4,4,8,12,[[249,1,1,8,9],[252,2,2,9,11],[266,1,1,11,12]]],[9,1,1,12,13,[[267,1,1,12,13]]],[12,1,1,13,14,[[347,1,1,13,14]]],[22,1,1,14,15,[[730,1,1,14,15]]],[23,3,2,15,17,[[750,1,1,15,16],[753,2,1,16,17]]],[25,15,13,17,30,[[829,1,1,17,18],[832,1,1,18,19],[833,9,9,19,28],[845,4,2,28,30]]]],[411,1667,1685,3304,3565,5941,6912,6947,7514,7644,7654,8013,8042,10663,18697,19099,19201,21167,21248,21267,21269,21272,21273,21274,21276,21277,21278,21280,21606,21608]]]]},{"k":"H6190","v":[["*",[15,15,[[0,6,6,0,6,[[16,5,5,0,5],[33,1,1,5,6]]],[1,1,1,6,7,[[53,1,1,6,7]]],[2,1,1,7,8,[[101,1,1,7,8]]],[4,1,1,8,9,[[162,1,1,8,9]]],[5,1,1,9,10,[[191,1,1,9,10]]],[8,2,2,10,12,[[253,2,2,10,12]]],[9,1,1,12,13,[[269,1,1,12,13]]],[23,2,2,13,15,[[748,1,1,13,14],[753,1,1,14,15]]]],[408,411,420,421,422,994,1626,3047,5202,5937,7701,7703,8095,19031,19200]]],["foreskin",[8,8,[[0,5,5,0,5,[[16,5,5,0,5]]],[1,1,1,5,6,[[53,1,1,5,6]]],[2,1,1,6,7,[[101,1,1,6,7]]],[4,1,1,7,8,[[162,1,1,7,8]]]],[408,411,420,421,422,1626,3047,5202]]],["foreskins",[5,5,[[5,1,1,0,1,[[191,1,1,0,1]]],[8,2,2,1,3,[[253,2,2,1,3]]],[9,1,1,3,4,[[269,1,1,3,4]]],[23,1,1,4,5,[[748,1,1,4,5]]]],[5937,7701,7703,8095,19031]]],["uncircumcised",[2,2,[[0,1,1,0,1,[[33,1,1,0,1]]],[23,1,1,1,2,[[753,1,1,1,2]]]],[994,19200]]]]},{"k":"H6191","v":[["*",[5,4,[[8,2,1,0,1,[[258,2,1,0,1]]],[18,1,1,1,2,[[560,1,1,1,2]]],[19,2,2,2,4,[[642,1,1,2,3],[646,1,1,3,4]]]],[7832,15244,16812,16950]]],["+",[2,1,[[8,2,1,0,1,[[258,2,1,0,1]]]],[7832]]],["beware",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16950]]],["crafty",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15244]]],["prudent",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16812]]]]},{"k":"H6192","v":[["together",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1928]]]]},{"k":"H6193","v":[["craftiness",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12964]]]]},{"k":"H6194","v":[["*",[11,10,[[7,1,1,0,1,[[234,1,1,0,1]]],[13,5,4,1,5,[[397,5,4,1,5]]],[15,2,2,5,7,[[416,1,1,5,6],[425,1,1,6,7]]],[21,1,1,7,8,[[677,1,1,7,8]]],[23,1,1,8,9,[[794,1,1,8,9]]],[36,1,1,9,10,[[910,1,1,9,10]]]],[7179,11860,11861,11862,11863,12361,12686,17629,20192,22871]]],["+",[3,2,[[13,2,1,0,1,[[397,2,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]]],[11860,12361]]],["corn",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7179]]],["heap",[2,2,[[21,1,1,0,1,[[677,1,1,0,1]]],[36,1,1,1,2,[[910,1,1,1,2]]]],[17629,22871]]],["heaps",[4,4,[[13,3,3,0,3,[[397,3,3,0,3]]],[23,1,1,3,4,[[794,1,1,3,4]]]],[11861,11862,11863,20192]]],["sheaves",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12686]]]]},{"k":"H6195","v":[["*",[5,5,[[1,1,1,0,1,[[70,1,1,0,1]]],[5,1,1,1,2,[[195,1,1,1,2]]],[19,3,3,2,5,[[628,1,1,2,3],[635,2,2,3,5]]]],[2091,6041,16404,16607,16614]]],["guile",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2091]]],["prudence",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16614]]],["subtilty",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16404]]],["wilily",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6041]]],["wisdom",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16607]]]]},{"k":"H6196","v":[["*",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[25,1,1,1,2,[[832,1,1,1,2]]]],[867,21238]]],["tree",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[867]]],["trees",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21238]]]]},{"k":"H6197","v":[["Eran",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4525]]]]},{"k":"H6198","v":[["Eranites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4525]]]]},{"k":"H6199","v":[["destitute",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15538]]]]},{"k":"H6200","v":[["Aroerite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10717]]]]},{"k":"H6201","v":[["*",[2,2,[[4,2,2,0,2,[[184,1,1,0,1],[185,1,1,1,2]]]],[5760,5838]]],["down",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5838]]],["drop",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5760]]]]},{"k":"H6202","v":[["*",[5,5,[[1,2,2,0,2,[[62,1,1,0,1],[83,1,1,1,2]]],[4,1,1,2,3,[[173,1,1,2,3]]],[22,1,1,3,4,[[744,1,1,3,4]]],[27,1,1,4,5,[[871,1,1,4,5]]]],[1880,2516,5453,18925,22227]]],["+",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18925]]],["beheaded",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5453]]],["down",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22227]]],["neck",[2,2,[[1,2,2,0,2,[[62,1,1,0,1],[83,1,1,1,2]]]],[1880,2516]]]]},{"k":"H6203","v":[["*",[35,33,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,5,5,1,6,[[72,1,1,1,2],[81,1,1,2,3],[82,2,2,3,5],[83,1,1,5,6]]],[2,1,1,6,7,[[94,1,1,6,7]]],[4,6,5,7,12,[[161,2,2,7,9],[162,1,1,9,10],[173,2,1,10,11],[183,1,1,11,12]]],[5,2,2,12,14,[[193,2,2,12,14]]],[9,1,1,14,15,[[288,1,1,14,15]]],[11,2,1,15,16,[[329,2,1,15,16]]],[13,3,3,16,19,[[395,1,1,16,17],[396,1,1,17,18],[402,1,1,18,19]]],[15,3,3,19,22,[[421,3,3,19,22]]],[17,1,1,22,23,[[451,1,1,22,23]]],[18,1,1,23,24,[[495,1,1,23,24]]],[19,1,1,24,25,[[656,1,1,24,25]]],[22,1,1,25,26,[[726,1,1,25,26]]],[23,7,7,26,33,[[746,1,1,26,27],[751,1,1,27,28],[761,1,1,28,29],[762,1,1,29,30],[763,1,1,30,31],[776,1,1,31,32],[792,1,1,32,33]]]],[1481,2171,2447,2476,2478,2505,2838,5163,5170,5202,5451,5755,5984,5988,8643,9997,11797,11835,12006,12527,12528,12540,13250,14158,17225,18618,18992,19145,19380,19401,19422,19764,20119]]],["+",[9,9,[[1,4,4,0,4,[[81,1,1,0,1],[82,2,2,1,3],[83,1,1,3,4]]],[4,4,4,4,8,[[161,2,2,4,6],[162,1,1,6,7],[173,1,1,7,8]]],[13,1,1,8,9,[[396,1,1,8,9]]]],[2447,2476,2478,2505,5163,5170,5202,5451,11835]]],["back",[4,4,[[23,4,4,0,4,[[746,1,1,0,1],[762,1,1,1,2],[776,1,1,2,3],[792,1,1,3,4]]]],[18992,19401,19764,20119]]],["backs",[4,4,[[1,1,1,0,1,[[72,1,1,0,1]]],[5,2,2,1,3,[[193,2,2,1,3]]],[13,1,1,3,4,[[395,1,1,3,4]]]],[2171,5984,5988,11797]]],["neck",[12,12,[[0,1,1,0,1,[[48,1,1,0,1]]],[2,1,1,1,2,[[94,1,1,1,2]]],[4,2,2,2,4,[[173,1,1,2,3],[183,1,1,3,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[13,1,1,5,6,[[402,1,1,5,6]]],[15,1,1,6,7,[[421,1,1,6,7]]],[17,1,1,7,8,[[451,1,1,7,8]]],[19,1,1,8,9,[[656,1,1,8,9]]],[22,1,1,9,10,[[726,1,1,9,10]]],[23,2,2,10,12,[[751,1,1,10,11],[761,1,1,11,12]]]],[1481,2838,5451,5755,9997,12006,12540,13250,17225,18618,19145,19380]]],["necks",[6,6,[[9,1,1,0,1,[[288,1,1,0,1]]],[11,1,1,1,2,[[329,1,1,1,2]]],[15,2,2,2,4,[[421,2,2,2,4]]],[18,1,1,4,5,[[495,1,1,4,5]]],[23,1,1,5,6,[[763,1,1,5,6]]]],[8643,9997,12527,12528,14158,19422]]]]},{"k":"H6204","v":[["Orpah",[2,2,[[7,2,2,0,2,[[232,2,2,0,2]]]],[7131,7141]]]]},{"k":"H6205","v":[["*",[15,15,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[157,1,1,2,3]]],[9,1,1,3,4,[[288,1,1,3,4]]],[10,1,1,4,5,[[298,1,1,4,5]]],[13,1,1,5,6,[[372,1,1,5,6]]],[17,2,2,6,8,[[457,1,1,6,7],[473,1,1,7,8]]],[18,2,2,8,10,[[495,1,1,8,9],[574,1,1,9,10]]],[22,1,1,10,11,[[738,1,1,10,11]]],[23,1,1,11,12,[[757,1,1,11,12]]],[25,1,1,12,13,[[835,1,1,12,13]]],[28,1,1,13,14,[[877,1,1,13,14]]],[35,1,1,14,15,[[906,1,1,14,15]]]],[2072,5015,5075,8612,8997,11283,13402,13802,14127,15480,18823,19282,21325,22313,22802]]],["cloud",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13402]]],["dark",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21325]]],["darkness",[13,13,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[157,1,1,2,3]]],[9,1,1,3,4,[[288,1,1,3,4]]],[10,1,1,4,5,[[298,1,1,4,5]]],[13,1,1,5,6,[[372,1,1,5,6]]],[17,1,1,6,7,[[473,1,1,6,7]]],[18,2,2,7,9,[[495,1,1,7,8],[574,1,1,8,9]]],[22,1,1,9,10,[[738,1,1,9,10]]],[23,1,1,10,11,[[757,1,1,10,11]]],[28,1,1,11,12,[[877,1,1,11,12]]],[35,1,1,12,13,[[906,1,1,12,13]]]],[2072,5015,5075,8612,8997,11283,13802,14127,15480,18823,19282,22313,22802]]]]},{"k":"H6206","v":[["*",[15,15,[[4,4,4,0,4,[[153,1,1,0,1],[159,1,1,1,2],[172,1,1,2,3],[183,1,1,3,4]]],[5,1,1,4,5,[[187,1,1,4,5]]],[17,2,2,5,7,[[448,1,1,5,6],[466,1,1,6,7]]],[18,2,2,7,9,[[487,1,1,7,8],[566,1,1,8,9]]],[22,6,6,9,15,[[680,2,2,9,11],[686,2,2,11,13],[707,1,1,13,14],[725,1,1,14,15]]]],[4921,5132,5430,5734,5860,13178,13622,14059,15333,17704,17706,17819,17820,18216,18611]]],["+",[1,1,[[5,1,1,0,1,[[187,1,1,0,1]]]],[5860]]],["Dread",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4921]]],["affrighted",[1,1,[[4,1,1,0,1,[[159,1,1,0,1]]]],[5132]]],["afraid",[2,2,[[4,1,1,0,1,[[183,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]]],[5734,17819]]],["break",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13178]]],["dread",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17820]]],["fear",[2,2,[[17,1,1,0,1,[[466,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]]],[13622,18216]]],["feared",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15333]]],["oppress",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14059]]],["prevail",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18611]]],["terribly",[2,2,[[22,2,2,0,2,[[680,2,2,0,2]]]],[17704,17706]]],["terrified",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5430]]]]},{"k":"H6207","v":[["*",[2,2,[[17,2,2,0,2,[[465,2,2,0,2]]]],[13560,13574]]],["fleeing",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13560]]],["sinews",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13574]]]]},{"k":"H6208","v":[["Arkite",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[251,10267]]]]},{"k":"H6209","v":[["*",[4,3,[[22,2,2,0,2,[[701,1,1,0,1],[710,1,1,1,2]]],[23,2,1,2,3,[[795,2,1,2,3]]]],[18090,18270,20270]]],["+",[2,1,[[23,2,1,0,1,[[795,2,1,0,1]]]],[20270]]],["bare",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18270]]],["up",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18090]]]]},{"k":"H6210","v":[["*",[10,9,[[4,2,1,0,1,[[155,2,1,0,1]]],[17,1,1,1,2,[[442,1,1,1,2]]],[18,3,3,2,5,[[483,1,1,2,3],[518,1,1,3,4],[609,1,1,4,5]]],[19,1,1,5,6,[[634,1,1,5,6]]],[21,1,1,6,7,[[671,1,1,6,7]]],[29,2,2,7,9,[[881,1,1,7,8],[884,1,1,8,9]]]],[4986,13021,13991,14545,16154,16591,17553,22407,22454]]],["+",[1,1,[[18,1,1,0,1,[[609,1,1,0,1]]]],[16154]]],["bed",[4,4,[[17,1,1,0,1,[[442,1,1,0,1]]],[18,1,1,1,2,[[518,1,1,1,2]]],[19,1,1,2,3,[[634,1,1,2,3]]],[21,1,1,3,4,[[671,1,1,3,4]]]],[13021,14545,16591,17553]]],["bedstead",[2,1,[[4,2,1,0,1,[[155,2,1,0,1]]]],[4986]]],["couch",[2,2,[[18,1,1,0,1,[[483,1,1,0,1]]],[29,1,1,1,2,[[881,1,1,1,2]]]],[13991,22407]]],["couches",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22454]]]]},{"k":"H6211","v":[["*",[12,12,[[17,3,3,0,3,[[439,1,1,0,1],[448,1,1,1,2],[462,1,1,2,3]]],[18,1,1,3,4,[[516,1,1,3,4]]],[22,2,2,4,6,[[728,1,1,4,5],[729,1,1,5,6]]],[26,5,5,6,11,[[853,4,4,6,10],[854,1,1,10,11]]],[27,1,1,11,12,[[866,1,1,11,12]]]],[12949,13181,13499,14523,18671,18681,21852,21862,21869,21870,21895,22164]]],["grass",[5,5,[[26,5,5,0,5,[[853,4,4,0,4],[854,1,1,4,5]]]],[21852,21862,21869,21870,21895]]],["moth",[7,7,[[17,3,3,0,3,[[439,1,1,0,1],[448,1,1,1,2],[462,1,1,2,3]]],[18,1,1,3,4,[[516,1,1,3,4]]],[22,2,2,4,6,[[728,1,1,4,5],[729,1,1,5,6]]],[27,1,1,6,7,[[866,1,1,6,7]]]],[12949,13181,13499,14523,18671,18681,22164]]]]},{"k":"H6212","v":[["*",[33,32,[[0,7,7,0,7,[[0,4,4,0,4],[1,1,1,4,5],[2,1,1,5,6],[8,1,1,6,7]]],[1,5,4,7,11,[[58,2,2,7,9],[59,3,2,9,11]]],[4,3,3,11,14,[[163,1,1,11,12],[181,1,1,12,13],[184,1,1,13,14]]],[11,1,1,14,15,[[331,1,1,14,15]]],[17,1,1,15,16,[[440,1,1,15,16]]],[18,7,7,16,23,[[549,1,1,16,17],[569,1,1,17,18],[579,2,2,18,20],[581,1,1,20,21],[582,1,1,21,22],[583,1,1,22,23]]],[19,2,2,23,25,[[646,1,1,23,24],[654,1,1,24,25]]],[22,2,2,25,27,[[715,1,1,25,26],[720,1,1,26,27]]],[23,2,2,27,29,[[756,1,1,27,28],[758,1,1,28,29]]],[29,1,1,29,30,[[885,1,1,29,30]]],[32,1,1,30,31,[[897,1,1,30,31]]],[37,1,1,31,32,[[920,1,1,31,32]]]],[10,11,28,29,35,73,208,1764,1767,1789,1792,5223,5702,5760,10087,12976,15016,15418,15525,15532,15585,15641,15671,16937,17194,18379,18495,19253,19299,22466,22640,23017]]],["grass",[16,16,[[4,3,3,0,3,[[163,1,1,0,1],[181,1,1,1,2],[184,1,1,2,3]]],[11,1,1,3,4,[[331,1,1,3,4]]],[17,1,1,4,5,[[440,1,1,4,5]]],[18,5,5,5,10,[[549,1,1,5,6],[569,1,1,6,7],[579,2,2,7,9],[583,1,1,9,10]]],[19,1,1,10,11,[[646,1,1,10,11]]],[22,1,1,11,12,[[715,1,1,11,12]]],[23,1,1,12,13,[[758,1,1,12,13]]],[29,1,1,13,14,[[885,1,1,13,14]]],[32,1,1,14,15,[[897,1,1,14,15]]],[37,1,1,15,16,[[920,1,1,15,16]]]],[5223,5702,5760,10087,12976,15016,15418,15525,15532,15671,16937,18379,19299,22466,22640,23017]]],["herb",[12,12,[[0,7,7,0,7,[[0,4,4,0,4],[1,1,1,4,5],[2,1,1,5,6],[8,1,1,6,7]]],[1,4,4,7,11,[[58,2,2,7,9],[59,2,2,9,11]]],[18,1,1,11,12,[[581,1,1,11,12]]]],[10,11,28,29,35,73,208,1764,1767,1789,1792,15585]]],["herbs",[5,5,[[1,1,1,0,1,[[59,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]],[19,1,1,2,3,[[654,1,1,2,3]]],[22,1,1,3,4,[[720,1,1,3,4]]],[23,1,1,4,5,[[756,1,1,4,5]]]],[1792,15641,17194,18495,19253]]]]},{"k":"H6213","v":[["*",[2633,2287,[[0,153,140,0,140,[[0,7,7,0,7],[1,5,4,7,11],[2,5,5,11,16],[3,1,1,16,17],[4,1,1,17,18],[5,9,6,18,24],[6,2,2,24,26],[7,2,2,26,28],[8,2,2,28,30],[10,3,2,30,32],[11,3,3,32,35],[12,1,1,35,36],[13,1,1,36,37],[15,1,1,37,38],[17,11,10,38,48],[18,5,4,48,52],[19,7,5,52,57],[20,7,6,57,63],[21,2,2,63,65],[23,4,4,65,69],[25,4,3,69,72],[26,9,9,72,81],[27,1,1,81,82],[28,4,4,82,86],[29,2,2,86,88],[30,8,8,88,96],[31,1,1,96,97],[32,1,1,97,98],[33,5,4,98,102],[34,2,2,102,104],[36,1,1,104,105],[37,1,1,105,106],[38,7,6,106,112],[39,3,3,112,115],[40,6,6,115,121],[41,4,4,121,125],[42,2,2,125,127],[43,5,5,127,132],[44,3,3,132,135],[46,2,2,135,137],[49,3,3,137,140]]],[1,323,270,140,410,[[50,3,3,140,143],[51,1,1,143,144],[52,2,2,144,146],[53,4,4,146,150],[54,4,4,150,154],[55,1,1,154,155],[56,6,5,155,160],[57,7,7,160,167],[58,2,2,167,169],[59,1,1,169,170],[60,1,1,170,171],[61,12,8,171,179],[62,1,1,179,180],[63,5,5,180,185],[64,2,2,185,187],[65,1,1,187,188],[66,3,3,188,191],[67,10,9,191,200],[68,2,2,200,202],[69,9,8,202,210],[70,3,3,210,213],[71,1,1,213,214],[72,4,4,214,218],[73,2,2,218,220],[74,23,18,220,238],[75,24,19,238,257],[76,10,7,257,264],[77,24,18,264,282],[78,9,7,282,289],[79,13,10,289,299],[80,9,8,299,307],[81,12,11,307,318],[82,2,2,318,320],[83,4,3,320,323],[84,9,7,323,330],[85,38,29,330,359],[86,22,19,359,378],[87,13,12,378,390],[88,22,19,390,409],[89,2,1,409,410]]],[2,94,78,410,488,[[91,3,3,410,413],[93,11,5,413,418],[94,3,2,418,420],[95,4,4,420,424],[96,2,2,424,426],[97,5,4,426,430],[98,5,4,430,434],[99,1,1,434,435],[100,1,1,435,436],[102,1,1,436,437],[103,2,2,437,439],[104,2,2,439,441],[105,7,6,441,447],[106,1,1,447,448],[107,10,7,448,455],[108,4,4,455,459],[109,5,5,459,464],[111,3,3,464,467],[112,13,12,467,479],[113,3,2,479,481],[114,3,2,481,483],[115,5,5,483,488]]],[3,127,108,488,596,[[117,2,1,488,489],[118,1,1,489,490],[120,3,3,490,493],[121,5,4,493,497],[122,6,5,497,502],[124,8,7,502,509],[125,13,10,509,519],[126,2,1,519,520],[127,2,2,520,522],[130,5,5,522,527],[131,21,16,527,543],[132,3,3,543,546],[133,2,1,546,547],[136,1,1,547,548],[137,4,3,548,551],[138,6,6,551,557],[139,5,5,557,562],[140,3,3,562,565],[143,1,1,565,566],[144,15,12,566,578],[145,6,6,578,584],[146,1,1,584,585],[147,1,1,585,586],[148,7,7,586,593],[149,3,2,593,595],[152,1,1,595,596]]],[4,163,148,596,744,[[153,4,4,596,600],[154,3,3,600,603],[155,6,4,603,607],[156,11,10,607,617],[157,9,9,617,626],[158,5,5,626,631],[159,5,5,631,636],[160,3,3,636,639],[161,5,5,639,644],[162,5,5,644,649],[163,7,7,649,656],[164,12,10,656,666],[165,3,3,666,669],[166,1,1,669,670],[167,4,4,670,674],[168,6,6,674,680],[169,8,7,680,687],[170,2,2,687,689],[171,4,3,689,692],[172,5,4,692,696],[173,2,2,696,698],[174,8,6,698,704],[175,1,1,704,705],[176,5,4,705,709],[177,4,3,709,712],[178,4,3,712,715],[179,3,3,715,718],[180,5,5,718,723],[181,5,4,723,727],[182,4,4,727,731],[183,7,6,731,737],[184,3,3,737,740],[185,1,1,740,741],[186,3,3,741,744]]],[5,64,55,744,799,[[187,3,3,744,747],[188,4,3,747,750],[189,1,1,750,751],[190,2,2,751,753],[191,4,4,753,757],[192,2,2,757,759],[193,4,4,759,763],[194,3,2,763,765],[195,11,9,765,774],[196,14,9,774,783],[197,3,3,783,786],[200,1,1,786,787],[208,5,5,787,792],[209,3,3,792,795],[210,4,4,795,799]]],[6,91,74,799,873,[[211,2,2,799,801],[212,5,5,801,806],[213,4,3,806,809],[214,1,1,809,810],[216,11,8,810,818],[217,3,1,818,819],[218,6,5,819,824],[219,9,6,824,830],[220,2,2,830,832],[221,6,5,832,837],[223,5,5,837,842],[224,3,2,842,844],[225,8,5,844,849],[226,1,1,849,850],[227,5,5,850,855],[228,7,7,855,862],[229,3,2,862,864],[230,4,3,864,867],[231,6,6,867,873]]],[7,13,10,873,883,[[232,3,2,873,875],[233,4,2,875,877],[234,5,5,877,882],[235,1,1,882,883]]],[8,88,83,883,966,[[236,2,2,883,885],[237,5,5,885,890],[238,3,3,890,893],[240,1,1,893,894],[241,5,5,894,899],[243,4,3,899,902],[245,3,3,902,905],[246,3,3,905,908],[247,6,6,908,914],[248,2,2,914,916],[249,10,9,916,925],[250,3,3,925,928],[251,2,2,928,930],[252,4,4,930,934],[254,2,2,934,936],[255,7,7,936,943],[257,1,1,943,944],[259,4,4,944,948],[260,6,5,948,953],[261,4,3,953,956],[262,1,1,956,957],[263,6,5,957,962],[264,2,2,962,964],[265,1,1,964,965],[266,1,1,965,966]]],[9,85,74,966,1040,[[268,4,2,966,968],[269,10,9,968,977],[271,1,1,977,978],[273,6,6,978,984],[274,2,2,984,986],[275,5,4,986,990],[276,3,2,990,992],[277,2,2,992,994],[278,10,8,994,1002],[279,8,7,1002,1009],[280,4,4,1009,1013],[281,3,3,1013,1016],[282,2,2,1016,1018],[283,2,2,1018,1020],[284,2,2,1020,1022],[285,8,6,1022,1028],[287,4,4,1028,1032],[288,1,1,1032,1033],[289,5,4,1033,1037],[290,3,3,1037,1040]]],[10,154,133,1040,1173,[[291,3,3,1040,1043],[292,11,10,1043,1053],[293,5,4,1053,1057],[295,3,3,1057,1060],[296,6,6,1060,1066],[297,18,14,1066,1080],[298,9,9,1080,1089],[299,5,5,1089,1094],[300,5,5,1094,1099],[301,8,7,1099,1106],[302,11,6,1106,1112],[303,2,2,1112,1114],[304,11,9,1114,1123],[305,10,10,1123,1133],[306,11,8,1133,1141],[307,6,4,1141,1145],[308,7,6,1145,1151],[309,3,3,1151,1154],[310,7,6,1154,1160],[311,5,5,1160,1165],[312,8,8,1165,1173]]],[11,158,126,1173,1299,[[313,1,1,1173,1174],[314,1,1,1174,1175],[315,3,2,1175,1177],[316,4,4,1177,1181],[317,2,2,1181,1183],[318,3,3,1183,1186],[319,4,4,1186,1190],[320,8,7,1190,1197],[322,9,7,1197,1204],[323,2,2,1204,1206],[324,8,6,1206,1212],[325,4,4,1212,1216],[326,6,4,1216,1220],[327,15,11,1220,1231],[328,4,4,1231,1235],[329,24,17,1235,1252],[330,5,4,1252,1256],[331,5,5,1256,1261],[332,3,3,1261,1264],[333,16,12,1264,1276],[334,6,5,1276,1281],[335,16,11,1281,1292],[336,8,6,1292,1298],[337,1,1,1298,1299]]],[12,39,37,1299,1336,[[341,1,1,1299,1300],[342,2,2,1300,1302],[347,1,1,1302,1303],[348,3,2,1303,1305],[349,1,1,1305,1306],[350,1,1,1306,1307],[351,1,1,1307,1308],[352,1,1,1308,1309],[353,2,2,1309,1311],[354,4,4,1311,1315],[355,2,2,1315,1317],[356,3,2,1317,1319],[357,1,1,1319,1320],[358,5,5,1320,1325],[359,4,4,1325,1329],[360,2,2,1329,1331],[364,1,1,1331,1332],[365,3,3,1332,1335],[366,1,1,1335,1336]]],[13,160,136,1336,1472,[[367,3,3,1336,1339],[368,5,5,1339,1344],[369,6,5,1344,1349],[370,15,11,1349,1360],[371,1,1,1360,1361],[372,5,5,1361,1366],[373,10,8,1366,1374],[375,5,5,1374,1379],[377,2,2,1379,1381],[378,3,3,1381,1384],[379,2,2,1384,1386],[380,2,2,1386,1388],[381,1,1,1388,1389],[384,2,2,1389,1391],[385,5,5,1391,1396],[386,5,4,1396,1400],[387,4,3,1400,1403],[388,1,1,1403,1404],[389,2,2,1404,1406],[390,11,10,1406,1416],[391,4,4,1416,1420],[392,5,4,1420,1424],[393,2,1,1424,1425],[394,4,4,1425,1429],[395,3,2,1429,1431],[396,10,8,1431,1439],[397,3,2,1439,1441],[398,5,5,1441,1446],[399,10,7,1446,1453],[400,11,9,1453,1462],[401,9,6,1462,1468],[402,4,4,1468,1472]]],[14,11,11,1472,1483,[[405,2,2,1472,1474],[408,2,2,1474,1476],[409,1,1,1476,1477],[412,6,6,1477,1483]]],[15,55,49,1483,1532,[[413,1,1,1483,1484],[414,4,3,1484,1487],[415,1,1,1487,1488],[416,6,6,1488,1494],[417,8,6,1494,1500],[418,5,5,1500,1505],[420,7,6,1505,1511],[421,12,11,1511,1522],[422,1,1,1522,1523],[423,1,1,1523,1524],[424,1,1,1524,1525],[425,8,7,1525,1532]]],[16,55,46,1532,1578,[[426,8,7,1532,1539],[427,6,5,1539,1544],[428,3,3,1544,1547],[429,2,2,1547,1549],[430,10,6,1549,1555],[431,8,6,1555,1561],[432,3,3,1561,1564],[434,15,14,1564,1578]]],[17,36,35,1578,1613,[[436,2,2,1578,1580],[439,1,1,1580,1581],[440,2,2,1581,1583],[444,3,3,1583,1586],[445,3,3,1586,1589],[447,1,1,1589,1590],[448,1,1,1590,1591],[449,2,2,1591,1593],[450,1,1,1593,1594],[456,1,1,1594,1595],[458,2,2,1595,1597],[460,1,1,1597,1598],[462,1,1,1598,1599],[463,2,2,1599,1601],[466,3,2,1601,1603],[467,1,1,1603,1604],[468,1,1,1604,1605],[470,2,2,1605,1607],[472,1,1,1607,1608],[475,2,2,1608,1610],[476,1,1,1610,1611],[477,2,2,1611,1613]]],[18,110,110,1613,1723,[[478,1,1,1613,1614],[484,1,1,1614,1615],[486,3,3,1615,1618],[491,2,2,1618,1620],[492,2,2,1620,1622],[495,1,1,1622,1623],[499,1,1,1623,1624],[508,1,1,1624,1625],[510,1,1,1625,1626],[511,2,2,1626,1628],[514,5,5,1628,1633],[516,1,1,1633,1634],[517,2,2,1634,1636],[527,1,1,1636,1637],[528,1,1,1637,1638],[529,2,2,1638,1640],[530,2,2,1640,1642],[533,2,2,1642,1644],[537,1,1,1644,1645],[543,2,2,1645,1647],[548,1,1,1647,1648],[549,1,1,1648,1649],[554,1,1,1649,1650],[555,2,2,1650,1652],[560,1,1,1652,1653],[563,3,3,1653,1656],[565,1,1,1656,1657],[572,2,2,1657,1659],[573,1,1,1659,1660],[575,1,1,1660,1661],[576,1,1,1661,1662],[577,1,1,1662,1663],[578,2,2,1663,1665],[580,5,5,1665,1670],[581,3,3,1670,1673],[582,1,1,1673,1674],[583,3,3,1674,1677],[584,2,2,1677,1679],[585,1,1,1679,1680],[586,3,3,1680,1683],[588,3,3,1683,1686],[592,3,3,1686,1689],[595,4,4,1689,1693],[596,8,8,1693,1701],[598,1,1,1701,1702],[601,1,1,1702,1703],[603,2,2,1703,1705],[611,1,1,1705,1706],[612,3,3,1706,1709],[613,3,3,1709,1712],[616,1,1,1712,1713],[617,1,1,1713,1714],[620,1,1,1714,1715],[622,1,1,1715,1716],[623,2,2,1716,1718],[624,1,1,1718,1719],[625,1,1,1719,1720],[626,3,3,1720,1723]]],[19,34,32,1723,1755,[[629,1,1,1723,1724],[630,1,1,1724,1725],[633,2,2,1725,1727],[635,1,1,1727,1728],[637,2,2,1728,1730],[638,1,1,1730,1731],[639,1,1,1731,1732],[640,1,1,1732,1733],[641,2,2,1733,1735],[643,1,1,1735,1736],[644,1,1,1736,1737],[647,2,2,1737,1739],[648,5,5,1739,1744],[649,2,2,1744,1746],[650,2,1,1746,1747],[651,3,2,1747,1749],[652,1,1,1749,1750],[653,1,1,1750,1751],[658,4,4,1751,1755]]],[20,43,37,1755,1792,[[659,4,3,1755,1758],[660,9,8,1758,1766],[661,6,4,1766,1770],[662,2,2,1770,1772],[663,1,1,1772,1773],[664,1,1,1773,1774],[665,3,3,1774,1777],[666,10,9,1777,1786],[667,4,3,1786,1789],[668,1,1,1789,1790],[669,1,1,1790,1791],[670,1,1,1791,1792]]],[21,4,4,1792,1796,[[671,1,1,1792,1793],[673,2,2,1793,1795],[678,1,1,1795,1796]]],[22,102,87,1796,1883,[[680,2,2,1796,1798],[681,1,1,1798,1799],[683,9,4,1799,1803],[685,1,1,1803,1804],[687,1,1,1804,1805],[688,5,4,1805,1809],[690,1,1,1809,1810],[693,1,1,1810,1811],[694,1,1,1811,1812],[695,2,2,1812,1814],[697,2,2,1814,1816],[698,1,1,1816,1817],[700,2,1,1817,1818],[703,2,2,1818,1820],[704,1,1,1820,1821],[705,3,2,1821,1823],[706,2,2,1823,1825],[707,2,1,1825,1826],[708,1,1,1826,1827],[709,1,1,1827,1828],[710,2,1,1828,1829],[711,1,1,1829,1830],[714,1,1,1830,1831],[715,5,5,1831,1836],[716,3,3,1836,1839],[718,1,1,1839,1840],[719,2,2,1840,1842],[720,1,1,1842,1843],[721,2,2,1843,1845],[722,8,7,1845,1852],[723,5,4,1852,1856],[724,5,4,1856,1860],[726,4,4,1860,1864],[729,1,1,1864,1865],[731,1,1,1865,1866],[732,1,1,1866,1867],[733,1,1,1867,1868],[734,3,2,1868,1870],[735,1,1,1870,1871],[736,3,2,1871,1873],[741,2,2,1873,1875],[742,3,3,1875,1878],[743,2,2,1878,1880],[744,3,3,1880,1883]]],[23,154,135,1883,2018,[[745,1,1,1883,1884],[746,4,4,1884,1888],[747,4,4,1888,1892],[748,3,3,1892,1895],[749,6,6,1895,1901],[750,3,3,1901,1904],[751,10,8,1904,1912],[752,4,4,1912,1916],[753,2,2,1916,1918],[754,2,2,1918,1920],[755,6,5,1920,1925],[756,3,3,1925,1928],[758,2,2,1928,1930],[759,1,1,1930,1931],[760,2,2,1931,1933],[761,4,4,1933,1937],[762,10,8,1937,1945],[763,1,1,1945,1946],[765,1,1,1946,1947],[766,6,5,1947,1952],[767,2,2,1952,1954],[770,3,3,1954,1957],[771,2,2,1957,1959],[772,2,2,1959,1961],[773,2,2,1961,1963],[774,4,3,1963,1966],[775,1,1,1966,1967],[776,8,7,1967,1974],[777,5,4,1974,1978],[778,1,1,1978,1979],[779,2,2,1979,1981],[780,2,2,1981,1983],[781,1,1,1983,1984],[782,3,3,1984,1987],[783,2,1,1987,1988],[784,2,2,1988,1990],[785,2,2,1990,1992],[786,4,4,1992,1996],[788,13,8,1996,2004],[790,3,2,2004,2006],[792,3,3,2006,2009],[794,5,3,2009,2012],[795,4,4,2012,2016],[796,3,2,2016,2018]]],[24,2,2,2018,2020,[[797,1,1,2018,2019],[798,1,1,2019,2020]]],[25,219,180,2020,2200,[[804,2,1,2020,2021],[805,2,2,2021,2023],[806,8,5,2023,2028],[807,2,2,2028,2030],[808,3,3,2030,2033],[809,8,6,2033,2039],[810,2,2,2039,2041],[812,5,4,2041,2045],[813,8,6,2045,2051],[814,1,1,2051,2052],[815,2,1,2052,2053],[816,3,2,2053,2055],[817,17,15,2055,2070],[818,7,7,2070,2077],[819,27,18,2077,2095],[821,12,11,2095,2106],[822,1,1,2106,2107],[823,8,7,2107,2114],[824,10,10,2114,2124],[825,8,6,2124,2130],[826,5,5,2130,2135],[828,3,2,2135,2137],[829,4,3,2137,2140],[830,3,3,2140,2143],[831,2,2,2143,2145],[832,3,2,2145,2147],[834,12,10,2147,2157],[836,5,4,2157,2161],[837,6,5,2161,2166],[838,4,4,2166,2170],[839,1,1,2170,2171],[840,2,2,2171,2173],[841,2,2,2173,2175],[842,5,4,2175,2179],[844,7,5,2179,2184],[845,2,2,2184,2186],[846,7,7,2186,2193],[847,10,7,2193,2200]]],[26,24,21,2200,2221,[[850,1,1,2200,2201],[857,4,4,2201,2205],[858,5,4,2205,2209],[860,14,12,2209,2221]]],[27,15,13,2221,2234,[[863,1,1,2221,2222],[867,3,2,2222,2224],[869,5,4,2224,2228],[870,2,2,2228,2230],[871,2,2,2230,2232],[872,1,1,2232,2233],[874,1,1,2233,2234]]],[28,4,4,2234,2238,[[877,4,4,2234,2238]]],[29,10,9,2238,2247,[[881,3,3,2238,2241],[882,3,2,2241,2243],[883,2,2,2243,2245],[887,2,2,2245,2247]]],[30,2,1,2247,2248,[[888,2,1,2247,2248]]],[31,7,6,2248,2254,[[889,4,4,2248,2252],[891,2,1,2252,2253],[892,1,1,2253,2254]]],[32,6,6,2254,2260,[[893,1,1,2254,2255],[894,1,1,2255,2256],[897,1,1,2256,2257],[898,2,2,2257,2259],[899,1,1,2259,2260]]],[33,2,2,2260,2262,[[900,2,2,2260,2262]]],[34,3,3,2262,2265,[[903,1,1,2262,2263],[904,1,1,2263,2264],[905,1,1,2264,2265]]],[35,4,4,2265,2269,[[906,1,1,2265,2266],[908,3,3,2266,2269]]],[36,2,2,2269,2271,[[909,1,1,2269,2270],[910,1,1,2270,2271]]],[37,8,7,2271,2278,[[911,3,2,2271,2273],[916,1,1,2273,2274],[917,2,2,2274,2276],[918,1,1,2276,2277],[920,1,1,2277,2278]]],[38,9,9,2278,2287,[[926,5,5,2278,2283],[927,2,2,2283,2285],[928,2,2,2285,2287]]]],[6,10,11,15,24,25,30,32,33,34,48,56,62,68,69,76,89,106,143,144,151,152,153,159,163,164,189,204,211,229,270,272,300,303,316,322,338,387,429,430,431,432,441,443,445,449,453,454,460,465,476,479,500,501,504,505,508,514,519,521,535,536,539,559,563,603,605,640,657,702,721,722,731,734,736,741,744,746,758,764,772,788,817,820,821,823,860,861,874,885,889,899,901,902,916,919,938,977,987,994,999,1011,1012,1014,1086,1129,1152,1158,1160,1168,1171,1172,1186,1187,1192,1220,1223,1227,1229,1242,1250,1270,1272,1277,1280,1301,1307,1326,1329,1331,1339,1341,1375,1377,1379,1449,1450,1516,1518,1526,1549,1550,1553,1558,1595,1599,1616,1618,1622,1631,1640,1641,1647,1648,1656,1691,1695,1696,1705,1707,1717,1723,1727,1728,1734,1736,1741,1747,1748,1802,1816,1828,1832,1844,1851,1855,1863,1864,1866,1875,1893,1894,1900,1902,1920,1931,1946,1964,1987,1989,1993,2000,2007,2008,2013,2016,2017,2019,2022,2023,2030,2034,2055,2057,2060,2061,2062,2074,2075,2076,2086,2088,2108,2143,2155,2156,2166,2168,2180,2184,2203,2204,2205,2206,2208,2212,2213,2214,2218,2219,2220,2221,2223,2224,2226,2232,2234,2235,2236,2239,2240,2241,2242,2245,2246,2249,2250,2252,2253,2254,2257,2258,2261,2264,2266,2271,2272,2273,2274,2275,2276,2278,2280,2281,2295,2296,2297,2299,2304,2306,2307,2308,2315,2316,2319,2320,2324,2326,2329,2332,2333,2335,2337,2338,2371,2372,2374,2375,2377,2383,2385,2386,2387,2400,2407,2414,2417,2419,2420,2424,2425,2426,2431,2434,2435,2436,2437,2439,2442,2446,2448,2452,2458,2459,2461,2466,2469,2473,2478,2490,2506,2513,2518,2532,2533,2541,2560,2563,2564,2566,2567,2568,2569,2570,2571,2572,2573,2574,2577,2578,2579,2580,2583,2584,2585,2586,2588,2589,2590,2591,2593,2594,2595,2597,2599,2600,2601,2602,2603,2605,2606,2608,2610,2611,2612,2614,2615,2616,2619,2620,2621,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2639,2640,2641,2642,2655,2657,2661,2663,2665,2666,2667,2668,2670,2672,2673,2679,2680,2683,2684,2686,2688,2689,2691,2694,2696,2706,2707,2723,2769,2770,2773,2797,2808,2815,2817,2822,2840,2847,2852,2856,2870,2871,2888,2903,2921,2922,2951,2953,2959,2960,2969,2975,2984,3029,3103,3130,3141,3183,3198,3210,3216,3217,3225,3230,3235,3244,3254,3255,3256,3277,3278,3280,3281,3285,3296,3316,3318,3326,3330,3331,3340,3341,3392,3393,3400,3405,3409,3410,3414,3421,3423,3427,3430,3432,3433,3437,3438,3465,3469,3487,3490,3525,3527,3538,3539,3540,3658,3692,3746,3762,3769,3796,3798,3799,3822,3827,3834,3839,3840,3844,3942,3943,3946,3951,3959,3961,3965,3967,3968,3969,3970,3971,3975,3976,3977,3978,3979,3990,4032,4039,4119,4120,4130,4136,4143,4156,4158,4159,4161,4164,4165,4166,4167,4175,4177,4182,4183,4187,4191,4192,4193,4200,4222,4232,4255,4338,4348,4349,4374,4377,4392,4393,4395,4403,4405,4418,4427,4435,4442,4446,4459,4460,4464,4576,4581,4583,4585,4592,4595,4597,4598,4600,4601,4602,4603,4608,4609,4610,4615,4620,4643,4647,4650,4695,4726,4731,4738,4741,4742,4743,4749,4764,4816,4889,4906,4910,4922,4936,4950,4960,4967,4977,4981,4996,4999,5005,5007,5009,5010,5017,5018,5020,5027,5029,5038,5054,5061,5063,5066,5067,5068,5080,5084,5085,5087,5089,5104,5110,5111,5116,5122,5123,5129,5130,5138,5154,5155,5169,5171,5173,5175,5178,5187,5189,5191,5204,5207,5211,5212,5213,5214,5215,5230,5240,5241,5244,5248,5254,5265,5267,5268,5270,5271,5272,5283,5286,5290,5319,5320,5324,5336,5337,5343,5350,5352,5354,5355,5363,5366,5368,5369,5374,5375,5376,5383,5393,5396,5415,5425,5426,5439,5442,5445,5447,5456,5459,5473,5475,5478,5482,5491,5496,5523,5533,5534,5543,5547,5556,5563,5564,5580,5582,5585,5595,5600,5611,5612,5624,5626,5631,5669,5681,5688,5703,5708,5716,5720,5721,5722,5732,5733,5740,5746,5749,5757,5764,5773,5804,5831,5848,5850,5851,5858,5859,5867,5879,5881,5883,5898,5918,5933,5936,5937,5944,5949,5952,5963,5985,5991,5995,5996,6004,6010,6040,6041,6046,6047,6052,6057,6061,6062,6063,6065,6087,6089,6092,6094,6096,6099,6101,6103,6116,6122,6125,6192,6431,6449,6450,6452,6454,6463,6466,6468,6481,6483,6493,6507,6516,6533,6547,6552,6555,6556,6562,6575,6580,6584,6600,6655,6656,6671,6673,6674,6681,6683,6694,6711,6720,6721,6722,6746,6754,6770,6773,6781,6787,6802,6810,6817,6826,6839,6856,6865,6866,6868,6885,6892,6899,6900,6903,6915,6919,6932,6935,6936,6939,6940,6960,6983,6984,6985,6986,6988,6996,6997,7007,7011,7017,7020,7024,7047,7048,7060,7063,7064,7109,7113,7117,7118,7125,7127,7135,7144,7160,7168,7176,7177,7178,7183,7188,7201,7219,7235,7254,7259,7262,7263,7275,7287,7293,7294,7327,7333,7336,7338,7340,7341,7377,7381,7385,7420,7425,7426,7452,7455,7458,7466,7467,7476,7477,7480,7482,7496,7504,7514,7515,7540,7544,7548,7551,7552,7553,7556,7562,7566,7579,7598,7599,7643,7644,7645,7647,7711,7724,7731,7732,7734,7738,7743,7744,7762,7790,7843,7845,7857,7858,7878,7879,7883,7889,7891,7921,7923,7930,7941,7944,7951,7957,7959,7960,7974,7975,8001,8020,8054,8055,8089,8090,8099,8101,8105,8106,8116,8117,8120,8157,8183,8189,8191,8201,8203,8205,8222,8224,8228,8230,8234,8238,8242,8252,8270,8286,8290,8291,8292,8295,8298,8304,8307,8317,8319,8322,8324,8327,8329,8333,8346,8371,8376,8377,8378,8390,8395,8415,8436,8446,8455,8472,8482,8491,8524,8529,8535,8538,8548,8549,8583,8584,8591,8594,8653,8663,8665,8670,8675,8702,8704,8709,8722,8723,8747,8773,8775,8776,8777,8779,8793,8794,8801,8808,8814,8822,8828,8831,8844,8886,8887,8894,8900,8901,8908,8919,8927,8929,8940,8941,8942,8948,8950,8952,8957,8961,8971,8972,8974,8979,8982,8985,9017,9024,9028,9030,9034,9044,9049,9050,9051,9052,9055,9059,9074,9077,9088,9091,9095,9097,9099,9114,9116,9120,9136,9141,9146,9149,9172,9178,9179,9182,9183,9184,9195,9217,9222,9226,9227,9233,9240,9242,9244,9245,9247,9252,9254,9256,9260,9261,9262,9272,9275,9280,9283,9288,9290,9297,9302,9308,9310,9313,9316,9322,9329,9330,9332,9354,9364,9366,9367,9373,9377,9388,9389,9407,9417,9418,9430,9432,9433,9448,9458,9462,9471,9476,9477,9491,9502,9519,9523,9525,9528,9532,9533,9551,9560,9578,9592,9605,9613,9616,9617,9660,9664,9676,9689,9705,9709,9716,9719,9726,9729,9731,9739,9740,9745,9750,9754,9798,9803,9812,9817,9818,9823,9827,9834,9838,9852,9861,9863,9864,9865,9869,9873,9879,9882,9883,9899,9911,9920,9924,9928,9931,9934,9943,9946,9949,9951,9953,9956,9959,9961,9965,9974,9979,9982,9985,9991,9994,9995,9998,9999,10000,10002,10005,10012,10013,10014,10015,10017,10020,10023,10024,10027,10028,10036,10055,10072,10076,10086,10091,10092,10101,10107,10118,10121,10122,10125,10126,10127,10128,10130,10134,10135,10136,10139,10144,10147,10150,10152,10154,10158,10169,10177,10180,10182,10184,10186,10187,10188,10193,10197,10202,10205,10207,10211,10215,10218,10221,10238,10395,10438,10447,10670,10692,10697,10752,10764,10790,10792,10832,10846,10865,10871,10882,10886,10898,10904,10909,10920,10929,10942,10944,10951,10957,10963,10972,10977,10979,10980,10988,11007,11135,11150,11153,11163,11183,11197,11199,11202,11214,11218,11223,11225,11229,11237,11239,11243,11244,11245,11247,11248,11252,11253,11254,11255,11257,11260,11262,11264,11265,11269,11295,11305,11315,11317,11321,11330,11331,11332,11333,11334,11335,11341,11345,11372,11375,11379,11381,11383,11415,11429,11446,11447,11451,11461,11462,11477,11479,11506,11552,11563,11582,11583,11585,11586,11587,11599,11619,11622,11623,11630,11635,11643,11648,11660,11664,11679,11684,11685,11688,11689,11690,11691,11693,11699,11701,11706,11712,11713,11720,11736,11743,11745,11747,11757,11765,11766,11788,11789,11793,11797,11828,11829,11830,11832,11839,11840,11848,11850,11874,11875,11880,11888,11902,11904,11908,11910,11911,11914,11915,11916,11917,11930,11935,11943,11945,11946,11949,11950,11954,11964,11965,11967,11972,11982,11983,11984,11985,11998,12001,12002,12005,12101,12106,12170,12173,12183,12255,12256,12257,12263,12264,12268,12305,12319,12323,12326,12343,12361,12365,12367,12375,12376,12380,12391,12394,12395,12397,12400,12401,12403,12404,12410,12414,12417,12497,12505,12508,12509,12510,12511,12517,12521,12528,12529,12535,12537,12539,12540,12542,12544,12545,12578,12600,12651,12676,12678,12681,12685,12688,12689,12698,12705,12707,12710,12711,12717,12722,12723,12725,12728,12735,12742,12744,12755,12756,12758,12763,12779,12783,12784,12785,12787,12791,12793,12796,12799,12802,12803,12804,12807,12809,12812,12816,12835,12837,12839,12846,12847,12848,12851,12852,12853,12855,12856,12857,12861,12862,12873,12874,12947,12960,12963,13060,13061,13063,13094,13095,13098,13137,13173,13186,13190,13230,13386,13428,13432,13463,13499,13529,13530,13602,13603,13650,13654,13726,13730,13774,13879,13883,13921,13930,13931,13942,13998,14025,14036,14037,14081,14083,14090,14092,14168,14235,14354,14372,14402,14404,14451,14453,14455,14457,14477,14521,14530,14533,14689,14695,14712,14719,14720,14722,14759,14766,14819,14888,14889,14995,15018,15107,15117,15125,15250,15293,15294,15301,15318,15459,15460,15470,15491,15503,15511,15516,15520,15555,15559,15567,15569,15570,15575,15590,15595,15611,15654,15670,15672,15722,15736,15755,15771,15776,15782,15797,15801,15803,15833,15838,15845,15875,15884,15885,15893,15963,15971,15982,16010,16019,16022,16024,16064,16083,16110,16117,16118,16175,16181,16182,16193,16200,16201,16203,16254,16275,16303,16339,16347,16348,16371,16379,16387,16392,16394,16447,16482,16543,16572,16628,16660,16679,16706,16741,16763,16789,16803,16852,16878,16966,16972,16987,16991,16999,17008,17009,17017,17043,17049,17085,17108,17121,17169,17297,17306,17308,17313,17324,17328,17329,17335,17336,17338,17339,17341,17344,17345,17350,17368,17370,17371,17373,17382,17384,17398,17429,17443,17449,17458,17461,17462,17467,17468,17469,17470,17472,17474,17475,17478,17481,17485,17512,17518,17535,17548,17580,17581,17648,17693,17705,17718,17741,17743,17744,17749,17804,17836,17853,17861,17863,17873,17905,17967,17972,17990,17991,18014,18019,18031,18063,18119,18124,18148,18156,18162,18179,18185,18209,18218,18257,18265,18292,18346,18363,18368,18378,18383,18384,18393,18397,18405,18443,18455,18471,18496,18512,18524,18535,18546,18548,18550,18552,18556,18557,18568,18570,18573,18579,18590,18592,18596,18597,18617,18619,18625,18628,18686,18720,18728,18751,18754,18755,18781,18788,18799,18878,18880,18888,18889,18890,18905,18909,18924,18926,18944,18958,18978,18982,18988,18993,19007,19008,19009,19018,19045,19054,19057,19059,19068,19071,19076,19077,19089,19102,19104,19115,19124,19129,19131,19132,19133,19136,19137,19149,19159,19161,19163,19165,19182,19199,19213,19214,19230,19232,19234,19241,19243,19251,19254,19260,19300,19315,19319,19348,19356,19365,19368,19379,19381,19387,19388,19390,19392,19394,19396,19397,19407,19419,19442,19457,19458,19462,19469,19471,19489,19504,19575,19586,19591,19598,19601,19624,19631,19658,19667,19678,19682,19691,19728,19748,19749,19751,19754,19761,19763,19766,19777,19784,19790,19793,19816,19833,19841,19845,19850,19889,19904,19907,19911,19935,19944,19957,19966,19968,19978,19980,19985,19995,20013,20014,20017,20019,20027,20029,20032,20035,20064,20073,20090,20110,20116,20181,20187,20195,20224,20227,20228,20236,20278,20296,20331,20349,20522,20538,20544,20553,20554,20555,20556,20561,20572,20573,20597,20600,20604,20610,20613,20616,20617,20621,20622,20626,20633,20664,20667,20668,20675,20683,20687,20689,20691,20705,20708,20726,20754,20757,20759,20767,20778,20779,20786,20792,20793,20803,20805,20809,20810,20812,20813,20816,20821,20825,20831,20833,20840,20842,20843,20848,20849,20854,20857,20858,20859,20860,20861,20862,20863,20866,20867,20868,20870,20871,20873,20875,20876,20877,20880,20904,20906,20908,20909,20912,20914,20916,20917,20919,20938,20939,20959,20979,20980,20983,20985,20987,20989,20990,21010,21015,21017,21028,21032,21036,21037,21045,21046,21055,21070,21073,21074,21075,21078,21080,21094,21095,21097,21098,21100,21126,21127,21161,21179,21183,21186,21192,21203,21218,21223,21239,21241,21293,21294,21295,21296,21298,21299,21306,21309,21311,21312,21350,21355,21358,21359,21381,21386,21391,21395,21396,21411,21416,21419,21421,21437,21469,21472,21491,21494,21544,21545,21546,21551,21580,21583,21590,21597,21599,21612,21613,21639,21647,21650,21652,21653,21654,21655,21657,21662,21667,21668,21669,21670,21678,21750,21965,21973,21985,21988,22000,22002,22003,22007,22039,22042,22043,22052,22053,22059,22060,22064,22066,22068,22072,22075,22113,22171,22176,22198,22200,22201,22208,22213,22224,22228,22240,22249,22268,22322,22331,22332,22337,22401,22402,22405,22422,22423,22431,22449,22507,22509,22525,22540,22541,22542,22545,22568,22573,22587,22596,22648,22651,22656,22673,22692,22693,22745,22766,22785,22805,22825,22833,22839,22854,22859,22884,22899,22958,22965,22971,22992,23017,23114,23115,23116,23118,23120,23135,23137,23139,23141]]],["+",[288,271,[[0,14,14,0,14,[[0,3,3,0,3],[5,2,2,3,5],[17,1,1,5,6],[19,1,1,6,7],[20,1,1,7,8],[21,1,1,8,9],[27,1,1,9,10],[30,1,1,10,11],[33,1,1,11,12],[43,2,2,12,14]]],[1,52,52,14,66,[[53,1,1,14,15],[58,1,1,15,16],[60,1,1,16,17],[67,1,1,17,18],[69,1,1,18,19],[74,2,2,19,21],[75,2,2,21,23],[76,2,2,23,25],[77,3,3,25,28],[79,1,1,28,29],[80,3,3,29,32],[81,1,1,32,33],[82,1,1,33,34],[84,1,1,34,35],[85,6,6,35,41],[86,9,9,41,50],[87,7,7,50,57],[88,9,9,57,66]]],[2,15,14,66,80,[[97,1,1,66,67],[98,3,2,67,69],[103,2,2,69,71],[104,1,1,71,72],[105,1,1,72,73],[107,2,2,73,75],[109,1,1,75,76],[114,2,2,76,78],[115,2,2,78,80]]],[3,12,12,80,92,[[122,1,1,80,81],[124,2,2,81,83],[125,2,2,83,85],[131,3,3,85,88],[132,2,2,88,90],[144,1,1,90,91],[148,1,1,91,92]]],[4,21,21,92,113,[[157,1,1,92,93],[158,2,2,93,95],[163,1,1,95,96],[167,1,1,96,97],[168,1,1,97,98],[169,2,2,98,100],[173,1,1,100,101],[176,2,2,101,103],[178,1,1,103,104],[179,1,1,104,105],[180,3,3,105,108],[181,1,1,108,109],[182,1,1,109,110],[183,2,2,110,112],[184,1,1,112,113]]],[5,6,6,113,119,[[188,1,1,113,114],[191,1,1,114,115],[195,1,1,115,116],[208,2,2,116,118],[209,1,1,118,119]]],[6,8,8,119,127,[[211,1,1,119,120],[212,1,1,120,121],[213,2,2,121,123],[216,1,1,123,124],[225,1,1,124,125],[226,1,1,125,126],[227,1,1,126,127]]],[8,10,8,127,135,[[247,2,2,127,129],[251,1,1,129,130],[255,1,1,130,131],[259,1,1,131,132],[260,2,1,132,133],[261,2,1,133,134],[264,1,1,134,135]]],[9,14,13,135,148,[[273,1,1,135,136],[275,3,2,136,138],[277,1,1,138,139],[278,3,3,139,142],[279,1,1,142,143],[280,4,4,143,147],[289,1,1,147,148]]],[10,20,19,148,167,[[295,2,2,148,150],[297,8,7,150,157],[298,2,2,157,159],[301,1,1,159,160],[302,2,2,160,162],[304,1,1,162,163],[306,1,1,163,164],[308,2,2,164,166],[311,1,1,166,167]]],[11,11,9,167,176,[[322,1,1,167,168],[324,2,2,168,170],[329,4,2,170,172],[331,1,1,172,173],[332,2,2,173,175],[333,1,1,175,176]]],[12,7,7,176,183,[[348,1,1,176,177],[354,1,1,177,178],[355,2,2,178,180],[358,1,1,180,181],[359,2,2,181,183]]],[13,22,20,183,203,[[368,1,1,183,184],[369,2,2,184,186],[370,5,4,186,190],[373,1,1,190,191],[375,1,1,191,192],[377,1,1,192,193],[386,1,1,193,194],[390,1,1,194,195],[392,1,1,195,196],[396,2,2,196,198],[399,1,1,198,199],[400,4,3,199,202],[401,1,1,202,203]]],[14,2,2,203,205,[[405,1,1,203,204],[408,1,1,204,205]]],[15,5,5,205,210,[[416,1,1,205,206],[421,2,2,206,208],[422,1,1,208,209],[425,1,1,209,210]]],[16,8,8,210,218,[[426,1,1,210,211],[430,2,2,211,213],[434,5,5,213,218]]],[17,3,3,218,221,[[436,1,1,218,219],[439,1,1,219,220],[445,1,1,220,221]]],[18,2,2,221,223,[[514,1,1,221,222],[563,1,1,222,223]]],[19,2,1,223,224,[[650,2,1,223,224]]],[20,9,8,224,232,[[659,3,2,224,226],[660,2,2,226,228],[661,1,1,228,229],[665,2,2,229,231],[669,1,1,231,232]]],[22,5,5,232,237,[[715,1,1,232,233],[716,1,1,233,234],[733,1,1,234,235],[734,1,1,235,236],[736,1,1,236,237]]],[23,21,16,237,253,[[747,1,1,237,238],[751,4,3,238,241],[758,1,1,241,242],[761,1,1,242,243],[766,1,1,243,244],[771,1,1,244,245],[776,2,2,245,247],[778,1,1,247,248],[784,1,1,248,249],[788,6,2,249,251],[790,1,1,251,252],[795,1,1,252,253]]],[25,16,15,253,268,[[805,1,1,253,254],[809,1,1,254,255],[817,2,2,255,257],[819,1,1,257,258],[821,3,3,258,261],[822,1,1,261,262],[832,2,1,262,263],[844,1,1,263,264],[846,1,1,264,265],[847,3,3,265,268]]],[26,1,1,268,269,[[857,1,1,268,269]]],[31,1,1,269,270,[[889,1,1,269,270]]],[35,1,1,270,271,[[908,1,1,270,271]]]],[6,15,24,143,151,449,505,539,563,788,874,1011,1331,1341,1618,1748,1816,2022,2062,2214,2223,2250,2253,2273,2281,2296,2299,2324,2387,2426,2436,2437,2473,2490,2541,2567,2570,2586,2589,2599,2601,2605,2614,2619,2620,2621,2627,2629,2632,2633,2634,2636,2639,2641,2642,2655,2663,2665,2666,2670,2672,2673,2686,2691,2694,2706,2953,2960,2975,3130,3141,3198,3225,3255,3281,3341,3487,3490,3538,3539,3839,3943,3951,3967,3970,4166,4175,4193,4222,4232,4600,4738,5068,5110,5111,5240,5324,5354,5366,5369,5459,5543,5547,5582,5595,5612,5626,5669,5708,5716,5740,5757,5804,5881,5944,6061,6431,6450,6466,6533,6556,6575,6580,6681,6932,6960,6988,7466,7480,7599,7744,7845,7889,7930,7974,8201,8228,8234,8270,8292,8298,8304,8322,8371,8376,8377,8378,8670,8886,8887,8948,8952,8957,8961,8971,8974,8982,9049,9050,9136,9172,9182,9233,9316,9364,9377,9458,9803,9864,9865,9995,10013,10076,10107,10118,10128,10692,10882,10898,10904,10942,10977,10979,11223,11237,11243,11248,11253,11257,11265,11332,11375,11415,11622,11690,11743,11840,11848,11916,11943,11950,11964,11983,12106,12170,12367,12517,12542,12578,12698,12717,12784,12787,12837,12853,12855,12857,12861,12873,12947,13098,14457,15301,17049,17324,17329,17344,17350,17370,17443,17458,17518,18368,18397,18751,18755,18799,19009,19124,19129,19132,19315,19365,19458,19601,19748,19754,19816,19957,20027,20035,20064,20224,20544,20621,20792,20805,20862,20906,20908,20916,20959,21241,21599,21647,21657,21667,21670,21988,22540,22839]]],["Deal",[2,2,[[13,1,1,0,1,[[385,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[11587,16022]]],["Did",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12689]]],["Do",[9,9,[[8,4,4,0,4,[[236,1,1,0,1],[249,3,3,1,4]]],[10,2,2,4,6,[[292,2,2,4,6]]],[12,1,1,6,7,[[354,1,1,6,7]]],[18,1,1,7,8,[[560,1,1,7,8]]],[19,1,1,8,9,[[633,1,1,8,9]]]],[7235,7515,7544,7548,8776,8801,10865,15250,16543]]],["Execute",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19457]]],["Keep",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10186]]],["Make",[11,11,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,2,2,1,3,[[54,1,1,1,2],[81,1,1,2,3]]],[3,2,2,3,5,[[126,1,1,3,4],[137,1,1,4,5]]],[5,1,1,5,6,[[191,1,1,5,6]]],[11,2,2,6,8,[[315,1,1,6,7],[330,1,1,7,8]]],[22,1,1,8,9,[[714,1,1,8,9]]],[23,1,1,9,10,[[771,1,1,9,10]]],[25,1,1,10,11,[[808,1,1,10,11]]]],[151,1648,2461,3990,4348,5936,9592,10055,18346,19598,20600]]],["Maker",[5,5,[[19,2,2,0,2,[[641,1,1,0,1],[644,1,1,1,2]]],[22,2,2,2,4,[[695,1,1,2,3],[732,1,1,3,4]]],[27,1,1,4,5,[[869,1,1,4,5]]]],[16803,16878,17990,18728,22208]]],["about",[1,1,[[4,1,1,0,1,[[183,1,1,0,1]]]],[5749]]],["appointed",[2,2,[[17,1,1,0,1,[[449,1,1,0,1]]],[18,1,1,1,2,[[581,1,1,1,2]]]],[13186,15590]]],["apt",[1,1,[[11,1,1,0,1,[[336,1,1,0,1]]]],[10218]]],["at",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18179]]],["bear",[4,4,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]],[25,1,1,2,3,[[818,1,1,2,3]]],[27,1,1,3,4,[[870,1,1,3,4]]]],[10091,18383,20848,22224]]],["become",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12735]]],["bestow",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11684]]],["bruised",[2,2,[[25,2,2,0,2,[[824,2,2,0,2]]]],[21010,21015]]],["bruising",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21028]]],["busy",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9448]]],["cause",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21386]]],["charge",[1,1,[[16,1,1,0,1,[[428,1,1,0,1]]]],[12756]]],["commit",[13,12,[[2,4,3,0,3,[[94,1,1,0,1],[107,3,2,1,3]]],[3,1,1,3,4,[[121,1,1,3,4]]],[4,1,1,4,5,[[171,1,1,4,5]]],[19,1,1,5,6,[[643,1,1,5,6]]],[23,1,1,6,7,[[788,1,1,6,7]]],[25,4,4,7,11,[[804,1,1,7,8],[809,1,1,8,9],[823,1,1,9,10],[834,1,1,10,11]]],[27,1,1,11,12,[[867,1,1,11,12]]]],[2847,3277,3280,3798,5426,16852,20017,20522,20621,20985,21293,22176]]],["committed",[25,25,[[2,2,2,0,2,[[107,1,1,0,1],[109,1,1,1,2]]],[3,1,1,2,3,[[131,1,1,2,3]]],[6,1,1,3,4,[[230,1,1,3,4]]],[23,7,7,4,11,[[746,1,1,4,5],[750,1,1,5,6],[752,1,1,6,7],[773,1,1,7,8],[788,3,3,8,11]]],[25,13,13,11,24,[[807,1,1,11,12],[817,1,1,12,13],[819,5,5,13,18],[821,1,1,18,19],[823,1,1,19,20],[834,2,2,20,22],[844,1,1,22,23],[845,1,1,23,24]]],[38,1,1,24,25,[[926,1,1,24,25]]]],[3281,3331,4177,7060,18978,19104,19165,19658,20013,20019,20032,20572,20812,20861,20870,20871,20876,20877,20938,20987,21293,21309,21580,21612,23114]]],["committeth",[4,4,[[25,4,4,0,4,[[809,1,1,0,1],[819,2,2,1,3],[834,1,1,3,4]]]],[20610,20873,20875,21298]]],["committing",[1,1,[[25,1,1,0,1,[[834,1,1,0,1]]]],[21295]]],["deal",[22,22,[[0,2,2,0,2,[[23,1,1,0,1],[46,1,1,1,2]]],[1,2,2,2,4,[[70,1,1,2,3],[72,1,1,3,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[4,1,1,5,6,[[159,1,1,5,6]]],[5,1,1,6,7,[[188,1,1,6,7]]],[7,1,1,7,8,[[232,1,1,7,8]]],[8,1,1,8,9,[[255,1,1,8,9]]],[13,1,1,9,10,[[368,1,1,9,10]]],[17,1,1,10,11,[[477,1,1,10,11]]],[19,1,1,11,12,[[639,1,1,11,12]]],[23,2,2,12,14,[[762,1,1,12,13],[765,1,1,13,14]]],[25,6,6,14,20,[[809,1,1,14,15],[817,1,1,15,16],[819,1,1,16,17],[823,1,1,17,18],[824,2,2,18,20]]],[26,2,2,20,22,[[850,1,1,20,21],[860,1,1,21,22]]]],[640,1449,2086,2155,4039,5116,5883,7135,7738,11214,13930,16741,19407,19442,20622,20821,20858,20990,21032,21036,21750,22043]]],["dealest",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1647]]],["dealeth",[7,7,[[6,1,1,0,1,[[228,1,1,0,1]]],[19,4,4,1,5,[[637,1,1,1,2],[640,1,1,2,3],[641,1,1,3,4],[648,1,1,4,5]]],[23,2,2,5,7,[[750,1,1,5,6],[752,1,1,6,7]]]],[6997,16660,16763,16789,17008,19102,19163]]],["dealt",[17,17,[[1,1,1,0,1,[[63,1,1,0,1]]],[6,2,2,1,3,[[219,2,2,1,3]]],[7,1,1,3,4,[[232,1,1,3,4]]],[8,1,1,4,5,[[259,1,1,4,5]]],[11,3,3,5,8,[[324,1,1,5,6],[333,1,1,6,7],[334,1,1,7,8]]],[12,1,1,8,9,[[357,1,1,8,9]]],[18,3,3,9,12,[[580,1,1,9,10],[596,1,1,10,11],[624,1,1,11,12]]],[25,3,3,12,15,[[823,1,1,12,13],[826,2,2,13,15]]],[28,1,1,15,16,[[877,1,1,15,16]]],[37,1,1,16,17,[[911,1,1,16,17]]]],[1900,6770,6773,7135,7857,9865,10125,10152,10929,15559,15963,16371,20983,21095,21098,22337,22884]]],["deckedst",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20778]]],["did",[310,286,[[0,16,15,0,15,[[5,2,1,0,1],[6,1,1,1,2],[20,1,1,2,3],[28,1,1,3,4],[37,1,1,4,5],[38,4,4,5,9],[41,2,2,9,11],[42,1,1,11,12],[43,1,1,12,13],[44,1,1,13,14],[49,1,1,14,15]]],[1,35,30,15,45,[[50,1,1,15,16],[53,1,1,16,17],[56,6,5,17,22],[57,6,6,22,28],[61,5,3,28,31],[62,1,1,31,32],[63,2,2,32,34],[65,1,1,34,35],[66,2,2,35,37],[67,2,2,37,39],[68,1,1,39,40],[81,2,2,40,42],[85,1,1,42,43],[88,2,1,43,44],[89,2,1,44,45]]],[2,6,6,45,51,[[93,1,1,45,46],[97,1,1,46,47],[99,1,1,47,48],[105,2,2,48,50],[113,1,1,50,51]]],[3,20,16,51,67,[[117,2,1,51,52],[118,1,1,52,53],[121,2,1,53,54],[124,4,3,54,57],[125,1,1,57,58],[130,1,1,58,59],[133,2,1,59,60],[136,1,1,60,61],[139,2,2,61,63],[143,1,1,63,64],[147,1,1,64,65],[148,1,1,65,66],[152,1,1,66,67]]],[4,18,18,67,85,[[153,1,1,67,68],[154,3,3,68,71],[155,1,1,71,72],[156,2,2,72,74],[159,1,1,74,75],[163,5,5,75,80],[176,1,1,80,81],[177,1,1,81,82],[181,1,1,82,83],[183,1,1,83,84],[186,1,1,84,85]]],[5,19,17,85,102,[[188,1,1,85,86],[190,2,2,86,88],[191,1,1,88,89],[192,1,1,89,90],[195,3,3,90,93],[196,6,4,93,97],[197,2,2,97,99],[200,1,1,99,100],[210,2,2,100,102]]],[6,18,17,102,119,[[212,2,2,102,104],[213,1,1,104,105],[214,1,1,105,106],[216,5,4,106,110],[219,1,1,110,111],[220,1,1,111,112],[221,1,1,112,113],[223,2,2,113,115],[225,1,1,115,116],[227,1,1,116,117],[231,2,2,117,119]]],[7,1,1,119,120,[[234,1,1,119,120]]],[8,7,7,120,127,[[236,1,1,120,121],[237,2,2,121,123],[241,1,1,123,124],[247,1,1,124,125],[250,1,1,125,126],[262,1,1,126,127]]],[9,7,7,127,134,[[269,1,1,127,128],[271,1,1,128,129],[278,1,1,129,130],[279,1,1,130,131],[281,1,1,131,132],[289,2,2,132,134]]],[10,34,33,134,167,[[292,2,1,134,135],[297,1,1,135,136],[301,4,4,136,140],[302,1,1,140,141],[304,4,4,141,145],[305,7,7,145,152],[306,7,7,152,159],[307,2,2,159,161],[308,1,1,161,162],[310,1,1,162,163],[311,2,2,163,165],[312,2,2,165,167]]],[11,59,53,167,220,[[313,1,1,167,168],[320,5,4,168,172],[322,2,2,172,174],[323,1,1,174,175],[324,3,3,175,178],[325,4,4,178,182],[326,6,4,182,186],[327,12,11,186,197],[328,3,3,197,200],[329,4,4,200,204],[330,2,1,204,205],[333,7,6,205,211],[334,1,1,211,212],[335,4,4,212,216],[336,4,4,216,220]]],[12,5,5,220,225,[[348,2,2,220,222],[351,1,1,222,223],[360,1,1,223,224],[364,1,1,224,225]]],[13,29,26,225,251,[[378,1,1,225,226],[380,1,1,226,227],[387,1,1,227,228],[388,1,1,228,229],[389,1,1,229,230],[390,3,3,230,233],[391,1,1,233,234],[392,2,1,234,235],[393,2,1,235,236],[394,1,1,236,237],[395,1,1,237,238],[397,2,2,238,240],[398,1,1,240,241],[399,3,2,241,243],[400,3,3,243,246],[401,1,1,246,247],[402,4,4,247,251]]],[14,1,1,251,252,[[412,1,1,251,252]]],[15,8,7,252,259,[[414,2,1,252,253],[417,2,2,253,255],[421,1,1,255,256],[423,1,1,256,257],[425,2,2,257,259]]],[16,5,5,259,264,[[426,1,1,259,260],[427,2,2,260,262],[429,1,1,262,263],[434,1,1,263,264]]],[17,2,2,264,266,[[436,1,1,264,265],[477,1,1,265,266]]],[18,2,2,266,268,[[555,1,1,266,267],[612,1,1,267,268]]],[22,5,5,268,273,[[698,1,1,268,269],[726,1,1,269,270],[736,1,1,270,271],[743,1,1,271,272],[744,1,1,272,273]]],[23,6,6,273,279,[[751,1,1,273,274],[755,1,1,274,275],[759,1,1,275,276],[780,1,1,276,277],[782,1,1,277,278],[796,1,1,278,279]]],[25,4,4,279,283,[[813,1,1,279,280],[819,1,1,280,281],[825,1,1,281,282],[847,1,1,282,283]]],[26,1,1,283,284,[[857,1,1,283,284]]],[31,1,1,284,285,[[891,1,1,284,285]]],[36,1,1,285,286,[[909,1,1,285,286]]]],[159,164,514,823,1129,1152,1168,1171,1172,1272,1277,1307,1326,1379,1518,1549,1631,1691,1695,1696,1705,1707,1717,1723,1727,1728,1734,1741,1844,1851,1866,1875,1893,1920,1964,1989,1993,2013,2023,2030,2459,2466,2595,2696,2723,2815,2921,2984,3216,3235,3469,3658,3692,3796,3942,3959,3961,3970,4130,4255,4338,4418,4446,4576,4695,4726,4889,4922,4950,4960,4967,4981,5007,5038,5129,5211,5212,5213,5214,5215,5534,5564,5681,5732,5848,5879,5918,5933,5949,5963,6046,6047,6063,6087,6092,6094,6103,6116,6122,6192,6481,6493,6552,6562,6580,6600,6655,6674,6681,6694,6810,6817,6868,6885,6903,6940,6986,7125,7127,7178,7219,7254,7262,7341,7467,7562,7941,8117,8157,8317,8346,8395,8670,8675,8775,8952,9114,9116,9146,9149,9183,9222,9240,9242,9247,9254,9256,9260,9272,9275,9280,9283,9288,9290,9297,9302,9310,9313,9316,9322,9332,9354,9433,9462,9477,9519,9532,9551,9729,9745,9750,9754,9812,9827,9838,9852,9861,9869,9873,9879,9882,9883,9899,9911,9920,9924,9928,9931,9934,9943,9946,9949,9951,9953,9956,9959,9961,9965,9979,9982,9985,10005,10023,10024,10027,10121,10122,10130,10136,10139,10144,10147,10184,10193,10197,10202,10205,10207,10211,10221,10692,10697,10790,11007,11135,11451,11477,11630,11648,11664,11679,11688,11689,11706,11736,11757,11765,11793,11874,11875,11908,11910,11930,11935,11945,11965,11984,11998,12001,12002,12005,12268,12323,12395,12397,12539,12600,12678,12681,12723,12728,12744,12779,12839,12874,13931,15125,16181,18031,18617,18788,18909,18926,19131,19234,19319,19850,19907,20278,20687,20867,21074,21667,21965,22568,22854]]],["didst",[11,11,[[0,1,1,0,1,[[19,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[4,1,1,2,3,[[155,1,1,2,3]]],[5,1,1,3,4,[[194,1,1,3,4]]],[8,1,1,4,5,[[250,1,1,4,5]]],[9,2,2,5,7,[[278,1,1,5,6],[279,1,1,6,7]]],[10,1,1,7,8,[[292,1,1,7,8]]],[15,1,1,8,9,[[421,1,1,8,9]]],[18,1,1,9,10,[[516,1,1,9,10]]],[22,1,1,10,11,[[742,1,1,10,11]]]],[501,4374,4977,6004,7579,8298,8333,8814,12528,14521,18888]]],["do",[543,513,[[0,33,31,0,31,[[10,2,1,0,1],[15,1,1,1,2],[17,6,6,2,8],[18,3,2,8,10],[20,1,1,10,11],[21,1,1,11,12],[25,1,1,12,13],[26,1,1,13,14],[29,1,1,14,15],[30,3,3,15,18],[33,2,2,18,20],[38,2,2,20,22],[40,4,4,22,26],[41,1,1,26,27],[42,1,1,27,28],[44,2,2,28,30],[46,1,1,30,31]]],[1,30,29,31,60,[[52,1,1,31,32],[53,2,2,32,34],[55,1,1,34,35],[57,1,1,35,36],[58,1,1,36,37],[64,1,1,37,38],[66,1,1,38,39],[67,1,1,39,40],[68,1,1,40,41],[69,2,2,41,43],[70,1,1,43,44],[71,1,1,44,45],[72,3,3,45,48],[73,2,2,48,50],[78,3,3,50,53],[80,1,1,53,54],[81,1,1,54,55],[82,1,1,55,56],[83,2,1,56,57],[84,2,2,57,59],[85,1,1,59,60]]],[2,29,27,60,87,[[93,3,2,60,62],[97,1,1,62,63],[98,1,1,63,64],[105,3,3,64,67],[107,3,2,67,69],[108,3,3,69,72],[109,2,2,72,74],[111,1,1,74,75],[112,9,9,75,84],[114,1,1,84,85],[115,2,2,85,87]]],[3,38,36,87,123,[[120,2,2,87,89],[122,1,1,89,90],[124,2,2,90,92],[125,1,1,92,93],[130,2,2,93,95],[131,4,3,95,98],[132,1,1,98,99],[137,1,1,99,100],[138,4,4,100,104],[139,2,2,104,106],[140,3,3,106,109],[144,3,3,109,112],[145,5,5,112,117],[146,1,1,117,118],[148,4,4,118,122],[149,2,1,122,123]]],[4,71,64,123,187,[[153,3,3,123,126],[155,3,3,126,129],[156,5,5,129,134],[157,6,6,134,140],[158,3,3,140,143],[159,3,3,143,146],[160,1,1,146,147],[163,1,1,147,148],[164,9,8,148,156],[165,2,2,156,158],[167,1,1,158,159],[168,1,1,159,160],[169,5,4,160,164],[170,2,2,164,166],[171,2,2,166,168],[172,2,2,168,170],[173,1,1,170,171],[174,5,3,171,174],[176,2,1,174,175],[177,2,1,175,176],[178,1,1,176,177],[179,1,1,177,178],[180,2,2,178,180],[181,2,1,180,181],[182,3,3,181,184],[183,2,2,184,186],[186,1,1,186,187]]],[5,12,11,187,198,[[187,3,3,187,190],[189,1,1,190,191],[192,1,1,191,192],[193,1,1,192,193],[194,2,2,193,195],[195,3,2,195,197],[196,1,1,197,198]]],[6,23,19,198,217,[[217,3,1,198,199],[218,1,1,199,200],[219,3,2,200,202],[220,1,1,202,203],[221,2,2,203,205],[223,1,1,205,206],[224,1,1,206,207],[225,1,1,207,208],[228,2,2,208,210],[229,3,2,210,212],[230,2,2,212,214],[231,3,3,214,217]]],[7,5,5,217,222,[[232,1,1,217,218],[234,3,3,218,221],[235,1,1,221,222]]],[8,25,25,222,247,[[237,2,2,222,224],[238,3,3,224,227],[240,1,1,227,228],[241,1,1,228,229],[243,1,1,229,230],[245,3,3,230,233],[246,1,1,233,234],[247,1,1,234,235],[249,1,1,235,236],[251,1,1,236,237],[255,3,3,237,240],[257,1,1,240,241],[259,1,1,241,242],[260,2,2,242,244],[263,2,2,244,246],[265,1,1,246,247]]],[9,25,23,247,270,[[269,4,3,247,250],[273,3,3,250,253],[275,1,1,253,254],[276,1,1,254,255],[278,1,1,255,256],[279,2,2,256,258],[281,1,1,258,259],[282,1,1,259,260],[283,1,1,260,261],[284,1,1,261,262],[285,6,5,262,267],[287,2,2,267,269],[290,1,1,269,270]]],[10,23,22,270,292,[[291,1,1,270,271],[292,3,3,271,274],[293,1,1,274,275],[298,3,3,275,278],[299,2,2,278,280],[300,1,1,280,281],[301,3,3,281,284],[302,1,1,284,285],[304,1,1,285,286],[307,1,1,286,287],[309,1,1,287,288],[310,4,3,288,291],[312,1,1,291,292]]],[11,21,19,292,311,[[314,1,1,292,293],[316,1,1,293,294],[318,2,2,294,296],[319,1,1,296,297],[320,2,2,297,299],[322,2,1,299,300],[323,1,1,300,301],[329,6,5,301,306],[330,1,1,306,307],[331,1,1,307,308],[333,1,1,308,309],[334,2,2,309,311]]],[12,10,10,311,321,[[349,1,1,311,312],[350,1,1,312,313],[354,1,1,313,314],[356,1,1,314,315],[358,2,2,315,317],[365,3,3,317,320],[366,1,1,320,321]]],[13,19,19,321,340,[[372,2,2,321,323],[373,1,1,323,324],[375,1,1,324,325],[380,1,1,325,326],[384,1,1,326,327],[385,4,4,327,331],[386,1,1,331,332],[389,1,1,332,333],[391,2,2,333,335],[396,1,1,335,336],[399,1,1,336,337],[400,2,2,337,339],[401,1,1,339,340]]],[14,5,5,340,345,[[409,1,1,340,341],[412,4,4,341,345]]],[15,12,11,345,356,[[413,1,1,345,346],[414,2,2,346,348],[416,1,1,348,349],[417,3,2,349,351],[418,2,2,351,353],[421,2,2,353,355],[425,1,1,355,356]]],[16,8,8,356,364,[[426,2,2,356,358],[428,1,1,358,359],[430,1,1,359,360],[431,2,2,360,362],[432,1,1,362,363],[434,1,1,363,364]]],[17,2,2,364,366,[[448,1,1,364,365],[466,1,1,365,366]]],[18,17,17,366,383,[[511,2,2,366,368],[514,2,2,368,370],[517,1,1,370,371],[533,2,2,371,373],[537,1,1,373,374],[580,3,3,374,377],[584,1,1,377,378],[585,1,1,378,379],[586,1,1,379,380],[588,1,1,380,381],[595,1,1,381,382],[620,1,1,382,383]]],[19,8,8,383,391,[[629,1,1,383,384],[630,1,1,384,385],[637,1,1,385,386],[648,3,3,386,389],[651,1,1,389,390],[652,1,1,390,391]]],[20,8,7,391,398,[[660,2,2,391,393],[661,1,1,393,394],[663,1,1,394,395],[666,2,2,395,397],[667,2,1,397,398]]],[21,1,1,398,399,[[678,1,1,398,399]]],[22,15,15,399,414,[[683,1,1,399,400],[688,2,2,400,402],[697,1,1,402,403],[706,1,1,403,404],[715,1,1,404,405],[720,1,1,405,406],[721,1,1,406,407],[723,1,1,407,408],[724,2,2,408,410],[726,2,2,410,412],[734,1,1,412,413],[743,1,1,413,414]]],[23,36,35,414,449,[[748,1,1,414,415],[749,1,1,415,416],[751,2,2,416,418],[753,1,1,418,419],[755,3,3,419,422],[756,1,1,422,423],[758,1,1,423,424],[761,2,2,424,426],[762,4,4,426,430],[763,1,1,430,431],[766,2,2,431,433],[770,2,2,433,435],[772,1,1,435,436],[773,1,1,436,437],[776,2,2,437,439],[777,1,1,439,440],[780,1,1,440,441],[783,2,1,441,442],[786,3,3,442,445],[788,1,1,445,446],[794,3,3,446,449]]],[25,37,36,449,485,[[806,2,1,449,450],[807,1,1,450,451],[808,1,1,451,452],[809,4,4,452,456],[812,1,1,456,457],[816,1,1,457,458],[817,1,1,458,459],[819,2,2,459,461],[821,2,2,461,463],[823,1,1,463,464],[824,2,2,464,466],[825,3,3,466,469],[826,1,1,469,470],[834,4,4,470,474],[836,2,2,474,476],[837,5,5,476,481],[838,1,1,481,482],[844,1,1,482,483],[846,2,2,483,485]]],[26,10,10,485,495,[[858,1,1,485,486],[860,9,9,486,495]]],[27,5,4,495,499,[[867,2,1,495,496],[870,1,1,496,497],[871,2,2,497,499]]],[28,1,1,499,500,[[877,1,1,499,500]]],[29,4,3,500,503,[[881,2,2,500,502],[882,2,1,502,503]]],[31,2,2,503,505,[[889,1,1,503,504],[891,1,1,504,505]]],[32,1,1,505,506,[[898,1,1,505,506]]],[35,2,2,506,508,[[908,2,2,506,508]]],[37,3,3,508,511,[[911,2,2,508,510],[918,1,1,510,511]]],[38,2,2,511,513,[[928,2,2,511,513]]]],[272,387,429,441,443,449,453,454,465,479,536,559,721,764,861,889,902,916,994,999,1158,1160,1220,1223,1229,1250,1270,1301,1375,1377,1450,1599,1616,1622,1656,1736,1747,1946,1987,2019,2034,2060,2061,2088,2143,2156,2166,2168,2180,2184,2337,2371,2377,2431,2452,2478,2506,2532,2566,2568,2797,2815,2951,2959,3216,3217,3230,3254,3256,3296,3316,3318,3326,3340,3400,3405,3409,3410,3423,3427,3430,3433,3437,3438,3487,3527,3540,3746,3762,3844,3946,3965,3979,4136,4143,4165,4167,4192,4200,4374,4392,4393,4395,4405,4435,4442,4459,4460,4464,4595,4602,4603,4609,4615,4620,4643,4647,4650,4741,4742,4743,4749,4816,4906,4910,4936,4977,4996,4999,5005,5009,5010,5018,5029,5054,5066,5067,5080,5084,5085,5087,5089,5104,5122,5123,5130,5138,5230,5241,5244,5248,5254,5265,5270,5271,5272,5283,5290,5336,5350,5374,5375,5376,5383,5393,5396,5415,5425,5442,5445,5456,5473,5475,5496,5533,5563,5582,5611,5624,5631,5688,5720,5721,5722,5732,5733,5850,5858,5859,5867,5898,5952,5985,6004,6010,6057,6062,6089,6711,6722,6787,6802,6826,6839,6865,6892,6919,6939,7007,7011,7047,7048,7063,7064,7109,7113,7118,7144,7176,7177,7183,7201,7263,7275,7287,7293,7294,7327,7333,7377,7420,7425,7426,7455,7476,7552,7598,7732,7734,7743,7790,7843,7878,7883,7944,7957,8001,8090,8099,8116,8183,8203,8205,8238,8252,8295,8319,8329,8415,8446,8455,8482,8524,8529,8538,8548,8549,8583,8584,8704,8747,8779,8793,8808,8844,9017,9024,9028,9052,9055,9088,9120,9141,9146,9178,9226,9330,9389,9417,9418,9432,9502,9560,9605,9689,9705,9716,9739,9740,9798,9834,9998,10000,10017,10020,10024,10036,10092,10127,10154,10158,10752,10764,10886,10920,10944,10957,11150,11153,11163,11183,11305,11315,11341,11372,11479,11563,11582,11583,11585,11586,11599,11660,11712,11713,11839,11917,11949,11954,11972,12183,12256,12257,12263,12264,12305,12319,12326,12361,12391,12394,12403,12414,12535,12540,12688,12710,12717,12758,12787,12799,12803,12812,12847,13173,13602,14402,14404,14453,14477,14533,14759,14766,14819,15567,15569,15570,15722,15755,15776,15803,15875,16303,16447,16482,16679,16987,16991,16999,17108,17121,17336,17344,17371,17398,17469,17470,17485,17648,17744,17853,17861,18019,18185,18384,18496,18524,18568,18596,18597,18625,18628,18754,18905,19057,19089,19133,19136,19182,19230,19232,19234,19254,19300,19379,19381,19390,19392,19394,19396,19419,19469,19471,19575,19586,19624,19667,19754,19766,19793,19845,19935,19978,19980,19995,20014,20181,20187,20195,20555,20573,20604,20610,20613,20616,20617,20675,20757,20767,20854,20870,20914,20916,20990,21037,21055,21070,21078,21080,21097,21294,21299,21311,21312,21355,21359,21381,21386,21391,21395,21396,21421,21583,21650,21655,22007,22039,22052,22053,22060,22064,22066,22068,22072,22075,22171,22213,22228,22240,22332,22402,22405,22422,22542,22568,22656,22825,22833,22884,22899,22992,23139,23141]]],["doer",[3,3,[[0,1,1,0,1,[[38,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]],[18,1,1,2,3,[[508,1,1,2,3]]]],[1171,8120,14354]]],["doers",[2,1,[[11,2,1,0,1,[[334,2,1,0,1]]]],[10150]]],["doest",[17,17,[[0,1,1,0,1,[[20,1,1,0,1]]],[1,2,2,1,3,[[67,2,2,1,3]]],[4,3,3,3,6,[[164,1,1,3,4],[166,1,1,4,5],[167,1,1,5,6]]],[6,1,1,6,7,[[221,1,1,6,7]]],[9,1,1,7,8,[[269,1,1,7,8]]],[10,2,2,8,10,[[292,1,1,8,9],[310,1,1,9,10]]],[17,2,2,10,12,[[444,1,1,10,11],[470,1,1,11,12]]],[18,2,2,12,14,[[554,1,1,12,13],[563,1,1,13,14]]],[20,1,1,14,15,[[666,1,1,14,15]]],[25,2,2,15,17,[[813,1,1,15,16],[825,1,1,16,17]]]],[535,2013,2016,5268,5319,5337,6856,8106,8773,9430,13063,13726,15107,15294,17462,20689,21075]]],["doeth",[44,42,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,3,3,1,4,[[80,2,2,1,3],[84,1,1,3,4]]],[2,3,3,4,7,[[93,1,1,4,5],[95,1,1,5,6],[112,1,1,6,7]]],[3,1,1,7,8,[[131,1,1,7,8]]],[17,4,4,8,12,[[440,1,1,8,9],[444,1,1,9,10],[458,1,1,10,11],[472,1,1,11,12]]],[18,12,12,12,24,[[478,1,1,12,13],[491,2,2,13,15],[492,2,2,15,17],[530,2,2,17,19],[549,1,1,19,20],[583,1,1,20,21],[595,2,2,21,23],[613,1,1,23,24]]],[19,1,1,24,25,[[633,1,1,24,25]]],[20,5,4,25,29,[[660,1,1,25,26],[661,2,1,26,27],[665,1,1,27,28],[666,1,1,28,29]]],[22,1,1,29,30,[[734,1,1,29,30]]],[23,2,2,30,32,[[749,1,1,30,31],[792,1,1,31,32]]],[25,7,6,32,38,[[818,1,1,32,33],[819,6,5,33,38]]],[26,1,1,38,39,[[858,1,1,38,39]]],[29,1,1,39,40,[[887,1,1,39,40]]],[38,2,2,40,42,[[926,2,2,40,42]]]],[885,2434,2435,2533,2822,2852,3432,4183,12960,13061,13432,13774,13942,14081,14083,14090,14092,14720,14722,15018,15654,15884,15885,16200,16572,17335,17373,17449,17461,18755,19077,20090,20840,20859,20860,20863,20873,20876,22002,22507,23115,23120]]],["doing",[11,11,[[0,2,2,0,2,[[30,1,1,0,1],[43,1,1,1,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[4,1,1,3,4,[[161,1,1,3,4]]],[10,2,2,4,6,[[306,1,1,4,5],[312,1,1,5,6]]],[11,1,1,6,7,[[333,1,1,6,7]]],[12,1,1,7,8,[[359,1,1,7,8]]],[13,1,1,8,9,[[386,1,1,8,9]]],[15,1,1,9,10,[[418,1,1,9,10]]],[22,1,1,10,11,[[736,1,1,10,11]]]],[901,1329,1931,5175,9302,9523,10135,10980,11619,12404,18799]]],["done",[315,294,[[0,24,22,0,22,[[2,2,2,0,2],[3,1,1,2,3],[7,1,1,3,4],[8,1,1,4,5],[11,1,1,5,6],[17,1,1,6,7],[19,4,2,7,9],[20,1,1,9,10],[23,1,1,10,11],[25,2,2,11,13],[26,2,2,13,15],[28,2,2,15,17],[30,1,1,17,18],[33,1,1,18,19],[39,1,1,19,20],[41,1,1,20,21],[43,1,1,21,22]]],[1,14,12,22,34,[[50,1,1,22,23],[51,1,1,23,24],[52,1,1,24,25],[61,2,1,25,26],[63,1,1,26,27],[67,3,3,27,30],[70,1,1,30,31],[80,1,1,31,32],[84,1,1,32,33],[88,2,1,33,34]]],[2,15,12,34,46,[[93,6,4,34,38],[94,1,1,38,39],[95,1,1,39,40],[97,2,2,40,42],[100,1,1,42,43],[107,1,1,43,44],[112,1,1,44,45],[113,2,1,45,46]]],[3,7,7,46,53,[[121,1,1,46,47],[131,2,2,47,49],[138,2,2,49,51],[139,1,1,51,52],[148,1,1,52,53]]],[4,8,8,53,61,[[155,1,1,53,54],[162,1,1,54,55],[164,1,1,55,56],[171,1,1,56,57],[172,1,1,57,58],[177,1,1,58,59],[178,1,1,59,60],[181,1,1,60,61]]],[5,14,12,61,73,[[193,2,2,61,63],[195,1,1,63,64],[196,7,5,64,69],[209,2,2,69,71],[210,2,2,71,73]]],[6,15,12,73,85,[[211,1,1,73,74],[212,2,2,74,76],[216,2,1,76,77],[218,1,1,77,78],[219,2,1,78,79],[221,1,1,79,80],[224,1,1,80,81],[225,5,4,81,85]]],[7,2,2,85,87,[[233,1,1,85,86],[234,1,1,86,87]]],[8,21,21,87,108,[[241,1,1,87,88],[243,1,1,88,89],[246,1,1,89,90],[247,1,1,90,91],[248,1,1,91,92],[249,1,1,92,93],[252,3,3,93,96],[254,1,1,96,97],[255,2,2,97,99],[259,1,1,99,100],[260,1,1,100,101],[261,2,2,101,103],[263,3,3,103,106],[264,1,1,106,107],[266,1,1,107,108]]],[9,10,10,108,118,[[268,1,1,108,109],[269,1,1,109,110],[277,1,1,110,111],[278,2,2,111,113],[279,1,1,113,114],[282,1,1,114,115],[287,1,1,115,116],[290,2,2,116,118]]],[10,11,11,118,129,[[291,1,1,118,119],[293,1,1,119,120],[298,1,1,120,121],[299,1,1,121,122],[303,1,1,122,123],[304,2,2,123,125],[305,1,1,125,126],[309,2,2,126,128],[312,1,1,128,129]]],[11,20,20,129,149,[[316,2,2,129,131],[317,1,1,131,132],[319,1,1,132,133],[320,1,1,133,134],[322,1,1,134,135],[327,3,3,135,138],[331,2,2,138,140],[332,1,1,140,141],[333,2,2,141,143],[335,4,4,143,147],[336,2,2,147,149]]],[12,3,3,149,152,[[347,1,1,149,150],[353,1,1,150,151],[358,1,1,151,152]]],[13,8,8,152,160,[[373,1,1,152,153],[390,2,2,153,155],[391,1,1,155,156],[395,2,2,156,158],[396,1,1,158,159],[398,1,1,159,160]]],[14,1,1,160,161,[[412,1,1,160,161]]],[15,5,5,161,166,[[417,1,1,161,162],[418,1,1,162,163],[420,1,1,163,164],[421,1,1,164,165],[425,1,1,165,166]]],[16,10,8,166,174,[[427,1,1,166,167],[429,1,1,167,168],[431,5,4,168,172],[434,3,2,172,174]]],[17,1,1,174,175,[[456,1,1,174,175]]],[18,19,19,175,194,[[484,1,1,175,176],[499,1,1,176,177],[517,1,1,177,178],[527,1,1,178,179],[528,1,1,179,180],[529,1,1,180,181],[543,1,1,181,182],[548,1,1,182,183],[555,1,1,183,184],[575,1,1,184,185],[582,1,1,185,186],[583,1,1,186,187],[586,1,1,187,188],[588,1,1,188,189],[592,1,1,189,190],[596,2,2,190,192],[603,2,2,192,194]]],[19,2,2,194,196,[[651,1,1,194,195],[658,1,1,195,196]]],[20,11,11,196,207,[[659,1,1,196,197],[660,1,1,197,198],[662,2,2,198,200],[666,5,5,200,205],[667,2,2,205,207]]],[22,17,16,207,223,[[683,2,1,207,208],[688,2,2,208,210],[690,1,1,210,211],[703,1,1,211,212],[711,1,1,212,213],[715,2,2,213,215],[716,2,2,215,217],[719,2,2,217,219],[722,1,1,219,220],[724,1,1,220,221],[726,1,1,221,222],[731,1,1,222,223]]],[23,28,28,223,251,[[746,1,1,223,224],[747,3,3,224,227],[749,1,1,227,228],[751,2,2,228,230],[752,1,1,230,231],[755,1,1,231,232],[760,1,1,232,233],[762,1,1,233,234],[766,1,1,234,235],[774,2,2,235,237],[775,1,1,237,238],[776,2,2,238,240],[779,2,2,240,242],[782,1,1,242,243],[784,1,1,243,244],[785,1,1,244,245],[786,1,1,245,246],[788,1,1,246,247],[794,2,2,247,249],[795,1,1,249,250],[796,1,1,250,251]]],[24,2,2,251,253,[[797,1,1,251,252],[798,1,1,252,253]]],[25,34,30,253,283,[[804,1,1,253,254],[806,2,2,254,256],[810,2,2,256,258],[812,1,1,258,259],[813,3,2,259,261],[815,2,1,261,262],[817,7,6,262,268],[818,2,2,268,270],[819,6,5,270,275],[824,2,2,275,277],[825,2,2,277,279],[834,1,1,279,280],[840,1,1,280,281],[844,1,1,281,282],[845,1,1,282,283]]],[26,4,3,283,286,[[858,2,1,283,284],[860,2,2,284,286]]],[28,1,1,286,287,[[877,1,1,286,287]]],[29,1,1,287,288,[[881,1,1,287,288]]],[30,2,1,288,289,[[888,2,1,288,289]]],[31,2,2,289,291,[[889,2,2,289,291]]],[32,1,1,291,292,[[898,1,1,291,292]]],[37,1,1,292,293,[[917,1,1,292,293]]],[38,1,1,293,294,[[926,1,1,293,294]]]],[68,69,89,204,229,316,445,500,504,536,657,702,721,746,772,820,821,899,987,1187,1280,1339,1550,1558,1595,1832,1894,2000,2007,2008,2108,2435,2533,2707,2797,2808,2817,2822,2847,2856,2922,2951,3029,3278,3405,3465,3799,4164,4187,4377,4403,4427,4731,4996,5207,5271,5425,5445,5556,5580,5703,5995,5996,6040,6065,6096,6099,6101,6103,6463,6468,6483,6507,6516,6547,6555,6683,6721,6770,6866,6915,6935,6936,6939,6940,7160,7188,7340,7377,7452,7477,7496,7551,7644,7645,7647,7724,7731,7762,7858,7891,7921,7923,7951,7959,7960,7975,8020,8055,8105,8286,8291,8307,8329,8436,8591,8702,8709,8723,8828,9051,9059,9195,9227,9240,9252,9388,9407,9533,9616,9617,9660,9719,9731,9823,9928,9934,9959,10072,10086,10101,10130,10134,10182,10184,10197,10202,10211,10221,10670,10832,10951,11345,11693,11699,11720,11793,11797,11832,11888,12255,12401,12410,12510,12544,12685,12725,12763,12796,12799,12802,12804,12846,12848,13386,13998,14235,14530,14689,14695,14719,14889,14995,15117,15491,15611,15672,15782,15801,15833,16019,16064,16117,16118,17108,17313,17328,17345,17382,17384,17467,17468,17472,17474,17475,17478,17481,17743,17861,17863,17905,18119,18292,18363,18378,18393,18405,18455,18471,18556,18596,18619,18720,18988,19007,19008,19018,19071,19133,19149,19159,19243,19348,19397,19462,19682,19691,19728,19761,19763,19833,19841,19904,19944,19968,19985,20027,20181,20195,20236,20278,20331,20349,20522,20553,20555,20626,20633,20667,20691,20708,20754,20809,20810,20813,20816,20821,20825,20843,20849,20863,20868,20871,20873,20875,21045,21046,21078,21080,21296,21472,21583,21613,22000,22060,22072,22331,22401,22525,22541,22545,22651,22965,23116]]],["dress",[5,5,[[0,1,1,0,1,[[17,1,1,0,1]]],[9,2,2,1,3,[[278,1,1,1,2],[279,1,1,2,3]]],[10,2,2,3,5,[[307,1,1,3,4],[308,1,1,4,5]]]],[431,8290,8324,9329,9366]]],["dressed",[6,6,[[0,1,1,0,1,[[17,1,1,0,1]]],[2,1,1,1,2,[[96,1,1,1,2]]],[8,1,1,2,3,[[260,1,1,2,3]]],[9,2,2,3,5,[[278,1,1,3,4],[285,1,1,4,5]]],[10,1,1,5,6,[[308,1,1,5,6]]]],[432,2888,7879,8290,8535,9367]]],["effect",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20110]]],["execute",[23,23,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[121,1,1,1,2]]],[4,1,1,2,3,[[162,1,1,2,3]]],[10,1,1,3,4,[[296,1,1,3,4]]],[18,3,3,4,7,[[596,1,1,4,5],[626,2,2,5,7]]],[22,1,1,7,8,[[694,1,1,7,8]]],[23,2,2,8,10,[[767,1,1,8,9],[777,1,1,9,10]]],[25,10,10,10,20,[[806,3,3,10,13],[812,1,1,13,14],[817,1,1,14,15],[826,2,2,15,17],[831,2,2,17,19],[846,1,1,19,20]]],[27,1,1,20,21,[[872,1,1,20,21]]],[32,2,2,21,23,[[897,1,1,21,22],[899,1,1,22,23]]]],[1828,3822,5204,8908,15982,16392,16394,17972,19489,19790,20554,20556,20561,20664,20803,21094,21100,21218,21223,21639,22249,22648,22673]]],["executed",[14,14,[[3,1,1,0,1,[[149,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[9,1,1,2,3,[[274,1,1,2,3]]],[13,1,1,3,4,[[390,1,1,3,4]]],[20,1,1,4,5,[[666,1,1,4,5]]],[23,1,1,5,6,[[767,1,1,5,6]]],[25,8,8,6,14,[[812,1,1,6,7],[819,2,2,7,9],[821,1,1,9,10],[824,1,1,10,11],[829,2,2,11,13],[840,1,1,13,14]]]],[4764,5831,8224,11701,17469,19504,20667,20857,20866,20919,21017,21179,21183,21469]]],["executedst",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7960]]],["executest",[1,1,[[18,1,1,0,1,[[576,1,1,0,1]]]],[15503]]],["executeth",[5,5,[[18,3,3,0,3,[[486,1,1,0,1],[580,1,1,1,2],[623,1,1,2,3]]],[23,1,1,3,4,[[749,1,1,3,4]]],[28,1,1,4,5,[[877,1,1,4,5]]]],[14037,15555,16348,19059,22322]]],["executing",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9823]]],["execution",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12835]]],["exercise",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19199]]],["fashioned",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13094]]],["fitteth",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18546]]],["flew",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7540]]],["followed",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8472]]],["forth",[9,7,[[0,1,1,0,1,[[40,1,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[22,4,2,2,4,[[683,4,2,2,4]]],[23,1,1,4,5,[[756,1,1,4,5]]],[25,2,2,5,7,[[818,2,2,5,7]]]],[1242,13190,17741,17743,19251,20831,20833]]],["fulfil",[1,1,[[18,1,1,0,1,[[622,1,1,0,1]]]],[16339]]],["fulfilling",[1,1,[[18,1,1,0,1,[[625,1,1,0,1]]]],[16379]]],["gat",[2,2,[[9,1,1,0,1,[[274,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[8222,17341]]],["gathered",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7556]]],["get",[2,2,[[4,1,1,0,1,[[160,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]]],[5155,12521]]],["getteth",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19368]]],["give",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17804]]],["given",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17718]]],["gotten",[8,7,[[0,1,1,0,1,[[11,1,1,0,1]]],[4,1,1,1,2,[[160,1,1,1,2]]],[22,1,1,2,3,[[693,1,1,2,3]]],[23,1,1,3,4,[[792,1,1,3,4]]],[25,3,2,4,6,[[829,2,1,4,5],[839,1,1,5,6]]],[26,1,1,6,7,[[858,1,1,6,7]]]],[303,5154,17967,20116,21161,21437,22003]]],["holden",[2,2,[[11,2,2,0,2,[[335,2,2,0,2]]]],[10187,10188]]],["indeed",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19458]]],["keep",[24,22,[[1,3,2,0,2,[[61,3,2,0,2]]],[3,9,8,2,10,[[125,9,8,2,10]]],[4,2,2,10,12,[[168,2,2,10,12]]],[12,1,1,12,13,[[341,1,1,12,13]]],[13,7,7,13,20,[[396,5,5,13,18],[401,2,2,18,20]]],[15,1,1,20,21,[[424,1,1,20,21]]],[16,1,1,21,22,[[428,1,1,21,22]]]],[1863,1864,3968,3969,3971,3975,3976,3977,3978,3979,5343,5352,10395,11828,11829,11830,11832,11850,11982,11984,12651,12755]]],["kept",[12,11,[[13,6,5,0,5,[[373,1,1,0,1],[396,1,1,1,2],[401,4,3,2,5]]],[14,2,2,5,7,[[405,1,1,5,6],[408,1,1,6,7]]],[15,2,2,7,9,[[420,1,1,7,8],[421,1,1,8,9]]],[16,1,1,9,10,[[434,1,1,9,10]]],[25,1,1,10,11,[[806,1,1,10,11]]]],[11333,11850,11967,11984,11985,12101,12173,12511,12545,12862,20553]]],["labour",[2,2,[[1,1,1,0,1,[[54,1,1,0,1]]],[19,1,1,1,2,[[648,1,1,1,2]]]],[1641,17009]]],["laboured",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12380]]],["made",[327,305,[[0,26,25,0,25,[[0,1,1,0,1],[1,4,3,1,4],[2,2,2,4,6],[4,1,1,6,7],[5,1,1,7,8],[6,1,1,8,9],[7,1,1,9,10],[8,1,1,10,11],[12,1,1,11,12],[13,1,1,12,13],[18,1,1,13,14],[20,2,2,14,16],[25,1,1,16,17],[26,2,2,17,19],[28,1,1,19,20],[30,1,1,20,21],[32,1,1,21,22],[36,1,1,22,23],[39,1,1,23,24],[49,1,1,24,25]]],[1,58,51,25,76,[[50,1,1,25,26],[74,1,1,26,27],[75,1,1,27,28],[81,5,5,28,33],[84,1,1,33,34],[85,23,18,34,52],[86,13,11,52,63],[87,5,5,63,68],[88,8,8,68,76]]],[2,5,5,76,81,[[91,3,3,76,79],[95,1,1,79,80],[102,1,1,80,81]]],[3,4,4,81,85,[[120,1,1,81,82],[122,1,1,82,83],[127,1,1,83,84],[137,1,1,84,85]]],[4,8,8,85,93,[[161,3,3,85,88],[162,2,2,88,90],[178,1,1,90,91],[184,2,2,91,93]]],[5,5,4,93,97,[[191,1,1,93,94],[195,2,1,94,95],[197,1,1,95,96],[208,1,1,96,97]]],[6,11,11,97,108,[[213,1,1,97,98],[216,1,1,98,99],[218,1,1,99,100],[219,1,1,100,101],[224,1,1,101,102],[227,2,2,102,104],[228,3,3,104,107],[231,1,1,107,108]]],[8,1,1,108,109,[[237,1,1,108,109]]],[9,3,3,109,112,[[269,1,1,109,110],[273,1,1,110,111],[279,1,1,111,112]]],[10,35,34,112,146,[[292,1,1,112,113],[293,1,1,113,114],[296,5,5,114,119],[297,8,8,119,127],[299,1,1,127,128],[300,4,4,128,132],[302,5,4,132,136],[303,1,1,136,137],[304,3,3,137,140],[305,2,2,140,142],[308,2,2,142,144],[312,2,2,144,146]]],[11,21,18,146,164,[[315,1,1,146,147],[324,1,1,147,148],[328,1,1,148,149],[329,8,6,149,155],[330,1,1,155,156],[333,2,2,156,158],[335,5,4,158,162],[336,1,1,162,163],[337,1,1,163,164]]],[12,8,8,164,172,[[342,2,2,164,166],[352,1,1,166,167],[353,1,1,167,168],[354,1,1,168,169],[358,1,1,169,170],[359,1,1,170,171],[360,1,1,171,172]]],[13,44,41,172,213,[[367,2,2,172,174],[369,4,3,174,177],[370,8,6,177,183],[371,1,1,183,184],[372,1,1,184,185],[373,3,3,185,188],[375,3,3,188,191],[377,1,1,191,192],[378,2,2,192,194],[379,2,2,194,196],[381,1,1,196,197],[384,1,1,197,198],[386,1,1,198,199],[387,2,2,199,201],[390,2,2,201,203],[392,2,2,203,205],[394,3,3,205,208],[398,2,2,208,210],[399,3,3,210,213]]],[15,5,5,213,218,[[415,1,1,213,214],[420,3,3,214,217],[421,1,1,217,218]]],[16,10,8,218,226,[[426,3,3,218,221],[427,2,1,221,222],[430,2,1,222,223],[432,1,1,223,224],[434,2,2,224,226]]],[17,7,7,226,233,[[445,1,1,226,227],[463,1,1,227,228],[466,1,1,228,229],[468,1,1,229,230],[475,2,2,230,232],[476,1,1,232,233]]],[18,20,20,233,253,[[486,1,1,233,234],[510,1,1,234,235],[563,1,1,235,236],[572,1,1,236,237],[573,1,1,237,238],[577,1,1,238,239],[581,1,1,239,240],[583,1,1,240,241],[588,1,1,241,242],[592,1,1,242,243],[595,1,1,243,244],[596,1,1,244,245],[598,1,1,245,246],[601,1,1,246,247],[611,1,1,247,248],[613,2,2,248,250],[616,1,1,250,251],[623,1,1,251,252],[626,1,1,252,253]]],[19,2,2,253,255,[[635,1,1,253,254],[647,1,1,254,255]]],[20,3,3,255,258,[[660,2,2,255,257],[668,1,1,257,258]]],[21,2,2,258,260,[[673,2,2,258,260]]],[22,15,14,260,274,[[680,2,2,260,262],[695,1,1,262,263],[700,1,1,263,264],[705,1,1,264,265],[707,2,1,265,266],[709,1,1,266,267],[721,1,1,267,268],[722,1,1,268,269],[723,2,2,269,271],[724,1,1,271,272],[735,1,1,272,273],[744,1,1,273,274]]],[23,12,11,274,285,[[746,1,1,274,275],[752,1,1,275,276],[754,1,1,276,277],[756,1,1,277,278],[762,2,1,278,279],[776,1,1,279,280],[781,1,1,280,281],[782,1,1,281,282],[785,1,1,282,283],[795,1,1,283,284],[796,1,1,284,285]]],[25,17,15,285,300,[[808,1,1,285,286],[817,1,1,286,287],[823,2,2,287,289],[828,2,1,289,290],[830,2,2,290,292],[832,1,1,292,293],[841,2,2,293,295],[842,5,4,295,299],[847,1,1,299,300]]],[27,3,3,300,303,[[869,2,2,300,302],[874,1,1,302,303]]],[29,1,1,303,304,[[883,1,1,303,304]]],[31,1,1,304,305,[[892,1,1,304,305]]]],[30,32,33,34,56,62,106,144,163,189,211,322,338,460,519,521,722,741,758,817,919,977,1086,1192,1516,1553,2226,2266,2442,2446,2458,2469,2473,2560,2570,2574,2577,2578,2579,2580,2583,2584,2585,2590,2591,2593,2594,2597,2600,2601,2602,2603,2606,2608,2610,2611,2612,2615,2616,2621,2628,2630,2631,2635,2636,2637,2640,2661,2665,2668,2679,2680,2683,2684,2688,2689,2769,2770,2773,2870,3103,3769,3827,4032,4349,5169,5173,5178,5189,5191,5585,5764,5773,5937,6052,6125,6454,6584,6656,6746,6781,6919,6984,6985,7017,7020,7024,7117,7259,8101,8189,8327,8794,8831,8900,8901,8919,8927,8929,8940,8941,8942,8950,8972,8974,8979,8985,9077,9091,9095,9097,9099,9179,9182,9183,9184,9217,9227,9244,9245,9261,9262,9367,9373,9491,9528,9578,9863,9974,9991,9999,10002,10012,10014,10015,10028,10122,10126,10169,10177,10180,10184,10215,10238,10438,10447,10792,10846,10871,10963,10972,10988,11197,11199,11239,11244,11245,11247,11252,11254,11255,11260,11264,11269,11295,11330,11331,11333,11379,11381,11383,11429,11446,11447,11461,11462,11506,11552,11623,11635,11643,11685,11691,11745,11747,11766,11788,11789,11880,11902,11911,11915,11930,12343,12497,12509,12510,12529,12705,12707,12711,12742,12793,12816,12851,12852,13095,13530,13603,13654,13879,13883,13921,14036,14372,15293,15459,15470,15511,15595,15670,15797,15845,15893,15971,16083,16110,16175,16201,16203,16254,16347,16387,16628,16966,17338,17339,17512,17580,17581,17693,17705,17991,18063,18162,18209,18257,18512,18535,18573,18579,18590,18781,18924,18993,19161,19213,19260,19388,19751,19889,19911,19966,20227,20296,20597,20786,20980,20989,21127,21186,21192,21239,21491,21494,21544,21545,21546,21551,21678,22198,22200,22268,22449,22573]]],["madest",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20779]]],["maintain",[6,6,[[10,3,3,0,3,[[298,3,3,0,3]]],[13,2,2,3,5,[[372,2,2,3,5]]],[18,1,1,5,6,[[617,1,1,5,6]]]],[9030,9034,9044,11317,11321,16275]]],["maintained",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14025]]],["make",[205,179,[[0,14,13,0,13,[[0,1,1,0,1],[1,1,1,1,2],[2,1,1,2,3],[5,3,2,3,5],[10,1,1,5,6],[11,1,1,6,7],[17,1,1,7,8],[26,3,3,8,11],[34,2,2,11,13]]],[1,98,78,13,91,[[54,1,1,13,14],[69,5,4,14,18],[74,20,17,18,35],[75,21,17,35,52],[76,8,5,52,57],[77,21,15,57,72],[78,1,1,72,73],[79,12,9,73,82],[81,2,2,82,84],[83,1,1,84,85],[84,1,1,85,86],[85,5,5,86,91]]],[2,3,3,91,94,[[108,1,1,91,92],[111,1,1,92,93],[115,1,1,93,94]]],[3,5,4,94,98,[[126,1,1,94,95],[130,1,1,95,96],[131,3,2,96,98]]],[4,11,11,98,109,[[156,3,3,98,101],[157,1,1,101,102],[161,1,1,102,103],[162,1,1,103,104],[167,1,1,104,105],[168,1,1,105,106],[172,1,1,106,107],[174,2,2,107,109]]],[6,1,1,109,110,[[227,1,1,109,110]]],[8,6,6,110,116,[[241,2,2,110,112],[243,1,1,112,113],[247,1,1,113,114],[248,1,1,114,115],[252,1,1,115,116]]],[9,1,1,116,117,[[273,1,1,116,117]]],[10,2,1,117,118,[[307,2,1,117,118]]],[11,4,4,118,122,[[316,1,1,118,119],[318,1,1,119,120],[319,2,2,120,122]]],[13,4,4,122,126,[[370,2,2,122,124],[373,1,1,124,125],[386,1,1,125,126]]],[15,2,2,126,128,[[420,2,2,126,128]]],[16,2,2,128,130,[[426,1,1,128,129],[434,1,1,129,130]]],[17,2,2,130,132,[[463,1,1,130,131],[466,1,1,131,132]]],[18,2,2,132,134,[[592,1,1,132,133],[612,1,1,133,134]]],[19,2,2,134,136,[[647,1,1,134,135],[651,1,1,135,136]]],[21,1,1,136,137,[[671,1,1,136,137]]],[22,10,9,137,146,[[688,1,1,137,138],[697,1,1,138,139],[703,1,1,139,140],[705,2,1,140,141],[722,1,1,141,142],[723,1,1,142,143],[741,2,2,143,145],[744,1,1,145,146]]],[23,13,11,146,157,[[748,1,1,146,147],[749,2,2,147,149],[750,1,1,149,150],[751,1,1,150,151],[760,1,1,151,152],[762,1,1,152,153],[772,1,1,153,154],[774,2,1,154,155],[788,1,1,155,156],[790,2,1,156,157]]],[25,12,12,157,169,[[805,1,1,157,158],[812,1,1,158,159],[814,1,1,159,160],[818,1,1,160,161],[819,1,1,161,162],[821,1,1,162,163],[825,1,1,163,164],[828,1,1,164,165],[836,1,1,165,166],[838,2,2,166,168],[844,1,1,168,169]]],[26,1,1,169,170,[[860,1,1,169,170]]],[29,1,1,170,171,[[887,1,1,170,171]]],[32,1,1,171,172,[[893,1,1,171,172]]],[33,2,2,172,174,[[900,2,2,172,174]]],[34,1,1,174,175,[[904,1,1,174,175]]],[35,1,1,175,176,[[906,1,1,175,176]]],[37,2,2,176,178,[[916,1,1,176,177],[920,1,1,177,178]]],[38,1,1,178,179,[[926,1,1,178,179]]]],[25,48,76,152,153,270,300,430,731,734,736,1012,1014,1640,2055,2074,2075,2076,2203,2204,2205,2206,2208,2212,2213,2214,2218,2219,2220,2221,2224,2226,2232,2234,2235,2236,2239,2240,2241,2242,2245,2246,2249,2252,2254,2257,2258,2261,2264,2266,2271,2272,2274,2275,2276,2278,2280,2295,2297,2304,2306,2307,2308,2315,2316,2319,2320,2326,2329,2332,2333,2335,2338,2383,2385,2386,2400,2407,2414,2417,2419,2420,2439,2448,2513,2564,2569,2571,2572,2573,2588,3285,3393,3525,3990,4120,4156,4191,5020,5027,5029,5061,5171,5187,5320,5363,5439,5478,5482,6983,7336,7338,7381,7482,7504,7643,8191,9330,9613,9676,9709,9726,11257,11262,11335,11623,12505,12508,12722,12856,13529,13603,15838,16193,16972,17085,17548,17873,18014,18124,18156,18552,18568,18878,18880,18944,19054,19068,19076,19115,19137,19356,19388,19631,19678,20029,20073,20538,20668,20726,20842,20880,20912,21073,21126,21358,21416,21419,21590,22042,22509,22587,22692,22693,22766,22805,22958,23017,23118]]],["maker",[7,7,[[17,2,2,0,2,[[467,1,1,0,1],[470,1,1,1,2]]],[18,1,1,2,3,[[572,1,1,2,3]]],[19,1,1,3,4,[[649,1,1,3,4]]],[22,2,2,4,6,[[700,1,1,4,5],[729,1,1,5,6]]],[23,1,1,6,7,[[777,1,1,6,7]]]],[13650,13730,15460,17017,18063,18686,19777]]],["makest",[4,4,[[6,1,1,0,1,[[228,1,1,0,1]]],[22,1,1,1,2,[[723,1,1,1,2]]],[25,1,1,2,3,[[817,1,1,2,3]]],[34,1,1,3,4,[[903,1,1,3,4]]]],[6996,18570,20793,22745]]],["maketh",[22,22,[[4,2,2,0,2,[[172,1,1,0,1],[179,1,1,1,2]]],[17,4,4,2,6,[[444,1,1,2,3],[450,1,1,3,4],[460,1,1,4,5],[462,1,1,5,6]]],[18,2,2,6,8,[[581,1,1,6,7],[612,1,1,7,8]]],[19,2,2,8,10,[[658,2,2,8,10]]],[20,1,1,10,11,[[661,1,1,10,11]]],[22,6,6,11,17,[[718,1,1,11,12],[722,4,4,12,16],[724,1,1,16,17]]],[23,2,2,17,19,[[754,1,1,17,18],[795,1,1,18,19]]],[25,1,1,19,20,[[823,1,1,19,20]]],[29,2,2,20,22,[[882,1,1,20,21],[883,1,1,21,22]]]],[5447,5600,13060,13230,13463,13499,15575,16182,17306,17308,17370,18443,18546,18548,18550,18557,18592,19214,20228,20979,22423,22431]]],["making",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17535]]],["meet",[2,1,[[25,2,1,0,1,[[816,2,1,0,1]]]],[20759]]],["observe",[2,2,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,1,1,1,2,[[168,1,1,1,2]]]],[2518,5355]]],["occupied",[1,1,[[1,1,1,0,1,[[87,1,1,0,1]]]],[2657]]],["offer",[32,28,[[1,5,4,0,4,[[78,5,4,0,4]]],[2,7,7,4,11,[[94,1,1,4,5],[95,1,1,5,6],[104,1,1,6,7],[105,1,1,7,8],[106,1,1,8,9],[111,1,1,9,10],[112,1,1,10,11]]],[3,14,11,11,22,[[122,3,2,11,13],[131,2,2,13,15],[144,8,6,15,21],[145,1,1,21,22]]],[4,1,1,22,23,[[164,1,1,22,23]]],[5,1,1,23,24,[[208,1,1,23,24]]],[6,1,1,24,25,[[223,1,1,24,25]]],[11,2,2,25,27,[[317,1,1,25,26],[322,1,1,26,27]]],[18,1,1,27,28,[[543,1,1,27,28]]]],[2372,2374,2375,2377,2840,2871,3183,3210,3244,3392,3414,3834,3840,4167,4177,4581,4585,4597,4598,4601,4608,4610,5267,6449,6900,9664,9817,14888]]],["offered",[5,5,[[2,1,1,0,1,[[98,1,1,0,1]]],[3,2,2,1,3,[[144,2,2,1,3]]],[10,1,1,3,4,[[293,1,1,3,4]]],[13,1,1,4,5,[[373,1,1,4,5]]]],[2969,4592,4601,8831,11331]]],["offering",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9818]]],["ordained",[3,3,[[3,1,1,0,1,[[144,1,1,0,1]]],[10,2,2,1,3,[[302,2,2,1,3]]]],[4583,9183,9184]]],["pass",[4,4,[[0,2,2,0,2,[[40,1,1,0,1],[49,1,1,1,2]]],[18,1,1,2,3,[[514,1,1,2,3]]],[25,1,1,3,4,[[813,1,1,3,4]]]],[1227,1526,14455,20705]]],["perform",[8,8,[[1,1,1,0,1,[[67,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[175,1,1,2,3]]],[17,1,1,3,4,[[440,1,1,3,4]]],[18,1,1,4,5,[[596,1,1,4,5]]],[22,1,1,5,6,[[687,1,1,5,6]]],[23,1,1,6,7,[[745,1,1,6,7]]],[25,1,1,7,8,[[813,1,1,7,8]]]],[2017,5017,5523,12963,16010,17836,18958,20705]]],["performed",[4,4,[[9,1,1,0,1,[[287,1,1,0,1]]],[16,2,2,1,3,[[430,1,1,1,2],[432,1,1,2,3]]],[25,1,1,3,4,[[838,1,1,3,4]]]],[8594,12785,12809,21411]]],["practise",[3,3,[[22,1,1,0,1,[[710,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]],[32,1,1,2,3,[[894,1,1,2,3]]]],[18265,21985,22596]]],["practised",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21973]]],["prepare",[17,15,[[3,3,3,0,3,[[131,3,3,0,3]]],[5,1,1,3,4,[[208,1,1,3,4]]],[16,1,1,4,5,[[430,1,1,4,5]]],[25,12,10,5,15,[[813,1,1,5,6],[836,1,1,6,7],[844,2,1,7,8],[846,3,3,8,11],[847,5,4,11,15]]]],[4158,4159,4165,6452,12787,20683,21350,21597,21652,21653,21654,21662,21667,21668,21669]]],["prepared",[13,12,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[9,1,1,2,3,[[281,1,1,2,3]]],[10,1,1,3,4,[[291,1,1,3,4]]],[15,3,2,4,6,[[417,2,1,4,5],[425,1,1,5,6]]],[16,4,4,6,10,[[430,3,3,6,9],[431,1,1,9,10]]],[22,1,1,10,11,[[742,1,1,10,11]]],[27,1,1,11,12,[[863,1,1,11,12]]]],[744,1855,8390,8722,12400,12676,12783,12784,12791,12807,18889,22113]]],["preparest",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4161]]],["preparing",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12678]]],["procure",[2,2,[[23,2,2,0,2,[[770,1,1,0,1],[777,1,1,1,2]]]],[19591,19784]]],["procured",[2,2,[[23,2,2,0,2,[[746,1,1,0,1],[748,1,1,1,2]]]],[18982,19045]]],["provide",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[860]]],["provided",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11904]]],["put",[1,1,[[8,1,1,0,1,[[243,1,1,0,1]]]],[7385]]],["ready",[2,2,[[6,2,2,0,2,[[216,1,1,0,1],[223,1,1,1,2]]]],[6673,6899]]],["requite",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8055]]],["sacrifice",[2,2,[[1,1,1,0,1,[[59,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]]],[1802,3421]]],["sacrificed",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10015]]],["served",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6720]]],["set",[2,2,[[13,1,1,0,1,[[368,1,1,0,1]]],[19,1,1,1,2,[[649,1,1,1,2]]]],[11229,17043]]],["shew",[16,16,[[0,3,3,0,3,[[19,1,1,0,1],[23,1,1,1,2],[39,1,1,2,3]]],[1,1,1,3,4,[[63,1,1,3,4]]],[5,1,1,4,5,[[188,1,1,4,5]]],[6,1,1,5,6,[[216,1,1,5,6]]],[9,4,4,6,10,[[268,1,1,6,7],[269,1,1,7,8],[275,1,1,8,9],[276,1,1,9,10]]],[10,1,1,10,11,[[292,1,1,10,11]]],[12,1,1,11,12,[[356,1,1,11,12]]],[18,2,2,12,14,[[565,1,1,12,13],[586,1,1,13,14]]],[25,1,1,14,15,[[834,1,1,14,15]]],[37,1,1,15,16,[[917,1,1,15,16]]]],[508,603,1186,1902,5881,6671,8055,8089,8230,8242,8777,10909,15318,15771,21311,22971]]],["shewed",[16,15,[[0,3,3,0,3,[[18,1,1,0,1],[23,1,1,1,2],[31,1,1,2,3]]],[3,1,1,3,4,[[130,1,1,3,4]]],[4,1,1,4,5,[[186,1,1,4,5]]],[6,2,1,5,6,[[218,2,1,5,6]]],[8,1,1,6,7,[[250,1,1,6,7]]],[9,2,2,7,9,[[268,1,1,7,8],[276,1,1,8,9]]],[10,3,3,9,12,[[293,1,1,9,10],[306,1,1,10,11],[312,1,1,11,12]]],[12,1,1,12,13,[[356,1,1,12,13]]],[13,2,2,13,15,[[367,1,1,13,14],[373,1,1,14,15]]]],[476,605,938,4119,5851,6754,7566,8054,8242,8822,9310,9525,10909,11202,11334]]],["shewest",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19749]]],["sheweth",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8653,14168]]],["shewing",[2,2,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,1,1,1,2,[[157,1,1,1,2]]]],[2057,5063]]],["sinneth",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4182]]],["spendeth",[1,1,[[20,1,1,0,1,[[664,1,1,0,1]]]],[17429]]],["take",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18218]]],["taken",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6865]]],["trimmed",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8535]]],["unto",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19784]]],["up",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23137]]],["used",[2,2,[[2,1,1,0,1,[[96,1,1,0,1]]],[25,1,1,1,2,[[836,1,1,1,2]]]],[2903,21355]]],["with",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11914]]],["work",[21,21,[[1,5,5,0,5,[[80,2,2,0,2],[84,2,2,2,4],[88,1,1,4,5]]],[5,1,1,5,6,[[195,1,1,5,6]]],[8,1,1,6,7,[[249,1,1,6,7]]],[10,3,3,7,10,[[297,1,1,7,8],[311,2,2,8,10]]],[13,2,2,10,12,[[368,2,2,10,12]]],[15,1,1,12,13,[[416,1,1,12,13]]],[17,1,1,13,14,[[458,1,1,13,14]]],[18,2,2,14,16,[[578,1,1,14,15],[596,1,1,15,16]]],[22,1,1,16,17,[[710,1,1,16,17]]],[25,1,1,17,18,[[834,1,1,17,18]]],[26,1,1,18,19,[[860,1,1,18,19]]],[36,1,1,19,20,[[910,1,1,19,20]]],[38,1,1,20,21,[[927,1,1,20,21]]]],[2424,2425,2563,2566,2667,6041,7514,8948,9471,9476,11218,11225,12365,13428,15516,16024,18265,21306,22059,22859,23135]]],["workers",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14451]]],["worketh",[6,6,[[18,1,1,0,1,[[578,1,1,0,1]]],[19,3,3,1,4,[[638,1,1,1,2],[653,1,1,2,3],[658,1,1,3,4]]],[20,1,1,4,5,[[661,1,1,4,5]]],[22,1,1,5,6,[[742,1,1,5,6]]]],[15520,16706,17169,17297,17368,18890]]],["working",[1,1,[[18,1,1,0,1,[[529,1,1,0,1]]]],[14712]]],["wrought",[46,44,[[0,1,1,0,1,[[33,1,1,0,1]]],[1,2,2,1,3,[[85,2,2,1,3]]],[2,1,1,3,4,[[109,1,1,3,4]]],[4,4,4,4,8,[[165,1,1,4,5],[169,1,1,5,6],[174,1,1,6,7],[183,1,1,7,8]]],[5,1,1,8,9,[[193,1,1,8,9]]],[6,1,1,9,10,[[230,1,1,9,10]]],[7,2,1,10,11,[[233,2,1,10,11]]],[8,4,3,11,14,[[246,1,1,11,12],[249,2,1,12,13],[254,1,1,13,14]]],[9,3,3,14,17,[[284,1,1,14,15],[289,2,2,15,17]]],[10,3,3,17,20,[[295,1,1,17,18],[299,1,1,18,19],[306,1,1,19,20]]],[11,4,4,20,24,[[315,1,1,20,21],[324,1,1,21,22],[329,1,1,22,23],[333,1,1,23,24]]],[13,6,6,24,30,[[387,1,1,24,25],[390,1,1,25,26],[397,1,1,26,27],[399,1,1,27,28],[400,2,2,28,30]]],[15,5,5,30,35,[[416,2,2,30,32],[418,1,1,32,33],[421,2,2,33,35]]],[17,1,1,35,36,[[447,1,1,35,36]]],[22,1,1,36,37,[[704,1,1,36,37]]],[23,2,2,37,39,[[755,1,1,37,38],[762,1,1,38,39]]],[25,5,5,39,44,[[821,4,4,39,43],[830,1,1,43,44]]]],[987,2567,2574,3330,5286,5368,5491,5746,5991,7064,7168,7458,7553,7711,8491,8663,8665,8894,9074,9308,9578,9861,9994,10125,11630,11690,11874,11914,11943,11946,12375,12376,12417,12529,12537,13137,18148,19241,19387,20904,20909,20917,20939,21203]]],["wroughtest",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7168]]],["yield",[6,4,[[18,1,1,0,1,[[584,1,1,0,1]]],[22,2,1,1,2,[[683,2,1,1,2]]],[27,2,1,2,3,[[869,2,1,2,3]]],[34,1,1,3,4,[[905,1,1,3,4]]]],[15736,17749,22201,22785]]],["yielding",[2,2,[[0,2,2,0,2,[[0,2,2,0,2]]]],[10,11]]]]},{"k":"H6214","v":[["Asahel",[18,17,[[9,12,11,0,11,[[268,9,8,0,8],[269,2,2,8,10],[289,1,1,10,11]]],[12,3,3,11,14,[[339,1,1,11,12],[348,1,1,12,13],[364,1,1,13,14]]],[13,2,2,14,16,[[383,1,1,14,15],[397,1,1,15,16]]],[14,1,1,16,17,[[412,1,1,16,17]]]],[8067,8068,8069,8070,8071,8072,8079,8081,8108,8111,8677,10322,10699,11116,11531,11867,12267]]]]},{"k":"H6215","v":[["*",[97,82,[[0,76,63,0,63,[[24,9,8,0,8],[25,1,1,8,9],[26,21,17,9,26],[27,4,4,26,30],[31,9,9,30,39],[32,5,5,39,44],[34,2,2,44,46],[35,25,17,46,63]]],[4,6,6,63,69,[[154,6,6,63,69]]],[5,2,1,69,70,[[210,2,1,69,70]]],[12,2,2,70,72,[[338,2,2,70,72]]],[23,2,2,72,74,[[793,2,2,72,74]]],[30,7,6,74,80,[[888,7,6,74,80]]],[38,2,2,80,82,[[925,2,2,80,82]]]],[683,684,685,686,687,688,690,692,726,728,732,733,738,742,746,748,749,750,751,757,759,761,764,765,768,769,778,779,781,782,931,932,934,936,939,941,945,946,947,961,964,969,975,976,1012,1040,1041,1042,1044,1045,1046,1048,1049,1050,1052,1053,1054,1055,1057,1058,1059,1080,1083,4942,4943,4946,4950,4960,4967,6480,10286,10287,20135,20137,22516,22518,22519,22528,22529,22531,23091,23092]]],["+",[3,3,[[0,2,2,0,2,[[35,2,2,0,2]]],[5,1,1,2,3,[[210,1,1,2,3]]]],[1044,1054,6480]]],["Esau",[82,73,[[0,62,54,0,54,[[24,8,7,0,7],[25,1,1,7,8],[26,20,16,8,24],[27,3,3,24,27],[31,9,9,27,36],[32,5,5,36,41],[34,2,2,41,43],[35,14,11,43,54]]],[4,6,6,54,60,[[154,6,6,54,60]]],[5,1,1,60,61,[[210,1,1,60,61]]],[12,2,2,61,63,[[338,2,2,61,63]]],[23,2,2,63,65,[[793,2,2,63,65]]],[30,7,6,65,71,[[888,7,6,65,71]]],[38,2,2,71,73,[[925,2,2,71,73]]]],[683,685,686,687,688,690,692,726,728,732,733,738,742,746,748,749,751,757,759,761,764,765,768,769,779,781,782,931,932,934,936,939,941,945,946,947,961,964,969,975,976,1012,1040,1041,1042,1045,1046,1048,1049,1050,1055,1059,1080,1083,4942,4943,4946,4950,4960,4967,6480,10286,10287,20135,20137,22516,22518,22519,22528,22529,22531,23091,23092]]],["Esau's",[12,9,[[0,12,9,0,9,[[24,1,1,0,1],[26,1,1,1,2],[27,1,1,2,3],[35,9,6,3,9]]]],[684,750,778,1050,1052,1053,1054,1057,1058]]]]},{"k":"H6216","v":[["oppressor",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19457]]]]},{"k":"H6217","v":[["*",[4,3,[[17,1,1,0,1,[[470,1,1,0,1]]],[20,2,1,1,2,[[662,2,1,1,2]]],[29,1,1,2,3,[[881,1,1,2,3]]]],[13729,17382,22404]]],["oppressed",[2,2,[[20,1,1,0,1,[[662,1,1,0,1]]],[29,1,1,1,2,[[881,1,1,1,2]]]],[17382,22404]]],["oppressions",[2,2,[[17,1,1,0,1,[[470,1,1,0,1]]],[20,1,1,1,2,[[662,1,1,1,2]]]],[13729,17382]]]]},{"k":"H6218","v":[["*",[16,16,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[2,3,3,2,5,[[105,1,1,2,3],[112,1,1,3,4],[114,1,1,4,5]]],[3,1,1,5,6,[[145,1,1,5,6]]],[5,1,1,6,7,[[190,1,1,6,7]]],[11,1,1,7,8,[[337,1,1,7,8]]],[18,3,3,8,11,[[510,1,1,8,9],[569,1,1,9,10],[621,1,1,10,11]]],[23,2,2,11,13,[[796,2,2,11,13]]],[25,3,3,13,16,[[821,1,1,13,14],[825,1,1,14,15],[841,1,1,15,16]]]],[646,1819,3230,3429,3478,4615,5929,10223,14368,15414,16314,20280,20288,20896,21057,21478]]],["strings",[3,3,[[18,3,3,0,3,[[510,1,1,0,1],[569,1,1,1,2],[621,1,1,2,3]]]],[14368,15414,16314]]],["ten",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[646]]],["tenth",[12,12,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,3,3,1,4,[[105,1,1,1,2],[112,1,1,2,3],[114,1,1,3,4]]],[3,1,1,4,5,[[145,1,1,4,5]]],[5,1,1,5,6,[[190,1,1,5,6]]],[11,1,1,6,7,[[337,1,1,6,7]]],[23,2,2,7,9,[[796,2,2,7,9]]],[25,3,3,9,12,[[821,1,1,9,10],[825,1,1,10,11],[841,1,1,11,12]]]],[1819,3230,3429,3478,4615,5929,10223,20280,20288,20896,21057,21478]]]]},{"k":"H6219","v":[["bright",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21140]]]]},{"k":"H6220","v":[["Ashvath",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10568]]]]},{"k":"H6221","v":[["Asiel",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10420]]]]},{"k":"H6222","v":[["*",[8,8,[[11,2,2,0,2,[[334,2,2,0,2]]],[12,5,5,2,7,[[341,1,1,2,3],[343,1,1,3,4],[346,1,1,4,5],[352,2,2,5,7]]],[13,1,1,7,8,[[400,1,1,7,8]]]],[10157,10159,10421,10484,10620,10797,10802,11953]]],["Asahiah",[2,2,[[11,2,2,0,2,[[334,2,2,0,2]]]],[10157,10159]]],["Asaiah",[6,6,[[12,5,5,0,5,[[341,1,1,0,1],[343,1,1,1,2],[346,1,1,2,3],[352,2,2,3,5]]],[13,1,1,5,6,[[400,1,1,5,6]]]],[10421,10484,10620,10797,10802,11953]]]]},{"k":"H6223","v":[["*",[23,23,[[1,1,1,0,1,[[79,1,1,0,1]]],[7,1,1,1,2,[[234,1,1,1,2]]],[9,3,3,2,5,[[278,3,3,2,5]]],[17,1,1,5,6,[[462,1,1,5,6]]],[18,2,2,6,8,[[522,1,1,6,7],[526,1,1,7,8]]],[19,9,9,8,17,[[637,1,1,8,9],[641,1,1,9,10],[645,2,2,10,12],[649,3,3,12,15],[655,2,2,15,17]]],[20,3,3,17,20,[[663,1,1,17,18],[668,2,2,18,20]]],[22,1,1,20,21,[[731,1,1,20,21]]],[23,1,1,21,22,[[753,1,1,21,22]]],[32,1,1,22,23,[[898,1,1,22,23]]]],[2397,7182,8287,8288,8290,13500,14609,14650,16671,16792,16912,16924,17017,17022,17031,17202,17207,17409,17499,17513,18720,19198,22660]]],["man",[1,1,[[17,1,1,0,1,[[462,1,1,0,1]]]],[13500]]],["man's",[2,2,[[19,2,2,0,2,[[637,1,1,0,1],[645,1,1,1,2]]]],[16671,16912]]],["men",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22660]]],["rich",[19,19,[[1,1,1,0,1,[[79,1,1,0,1]]],[7,1,1,1,2,[[234,1,1,1,2]]],[9,3,3,2,5,[[278,3,3,2,5]]],[18,2,2,5,7,[[522,1,1,5,6],[526,1,1,6,7]]],[19,7,7,7,14,[[641,1,1,7,8],[645,1,1,8,9],[649,3,3,9,12],[655,2,2,12,14]]],[20,3,3,14,17,[[663,1,1,14,15],[668,2,2,15,17]]],[22,1,1,17,18,[[731,1,1,17,18]]],[23,1,1,18,19,[[753,1,1,18,19]]]],[2397,7182,8287,8288,8290,14609,14650,16792,16924,17017,17022,17031,17202,17207,17409,17499,17513,18720,19198]]]]},{"k":"H6224","v":[["*",[29,26,[[0,2,1,0,1,[[7,2,1,0,1]]],[1,1,1,1,2,[[65,1,1,1,2]]],[2,3,3,2,5,[[94,1,1,2,3],[95,1,1,3,4],[116,1,1,4,5]]],[3,3,3,5,8,[[121,1,1,5,6],[123,1,1,6,7],[144,1,1,7,8]]],[4,2,2,8,10,[[175,2,2,8,10]]],[11,1,1,10,11,[[337,1,1,10,11]]],[12,5,4,11,15,[[349,1,1,11,12],[361,1,1,12,13],[362,1,1,13,14],[364,2,1,14,15]]],[14,1,1,15,16,[[412,1,1,15,16]]],[16,1,1,16,17,[[427,1,1,16,17]]],[22,1,1,17,18,[[684,1,1,17,18]]],[23,3,3,18,21,[[776,1,1,18,19],[783,1,1,19,20],[796,1,1,20,21]]],[25,5,4,21,25,[[825,1,1,21,22],[830,2,1,22,23],[834,1,1,23,24],[846,1,1,24,25]]],[37,1,1,25,26,[[918,1,1,25,26]]]],[188,1983,2841,2869,3602,3807,3916,4582,5502,5503,10223,10733,11026,11063,11122,12268,12740,17782,19732,19924,20280,21057,21184,21301,21641,22995]]],["part",[3,3,[[2,2,2,0,2,[[94,1,1,0,1],[95,1,1,1,2]]],[25,1,1,2,3,[[846,1,1,2,3]]]],[2841,2869,21641]]],["tenth",[26,23,[[0,2,1,0,1,[[7,2,1,0,1]]],[1,1,1,1,2,[[65,1,1,1,2]]],[2,1,1,2,3,[[116,1,1,2,3]]],[3,3,3,3,6,[[121,1,1,3,4],[123,1,1,4,5],[144,1,1,5,6]]],[4,2,2,6,8,[[175,2,2,6,8]]],[11,1,1,8,9,[[337,1,1,8,9]]],[12,5,4,9,13,[[349,1,1,9,10],[361,1,1,10,11],[362,1,1,11,12],[364,2,1,12,13]]],[14,1,1,13,14,[[412,1,1,13,14]]],[16,1,1,14,15,[[427,1,1,14,15]]],[22,1,1,15,16,[[684,1,1,15,16]]],[23,3,3,16,19,[[776,1,1,16,17],[783,1,1,17,18],[796,1,1,18,19]]],[25,4,3,19,22,[[825,1,1,19,20],[830,2,1,20,21],[834,1,1,21,22]]],[37,1,1,22,23,[[918,1,1,22,23]]]],[188,1983,3602,3807,3916,4582,5502,5503,10223,10733,11026,11063,11122,12268,12740,17782,19732,19924,20280,21057,21184,21301,22995]]]]},{"k":"H6225","v":[["*",[6,6,[[1,1,1,0,1,[[68,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[18,4,4,2,6,[[551,1,1,2,3],[557,1,1,3,4],[581,1,1,4,5],[621,1,1,5,6]]]],[2044,5699,15049,15202,15603,16310]]],["angry",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15202]]],["smoke",[5,5,[[1,1,1,0,1,[[68,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[18,3,3,2,5,[[551,1,1,2,3],[581,1,1,3,4],[621,1,1,4,5]]]],[2044,5699,15049,15603,16310]]]]},{"k":"H6226","v":[["smoking",[2,2,[[1,1,1,0,1,[[69,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]]],[2069,17786]]]]},{"k":"H6227","v":[["*",[25,24,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,2,1,1,2,[[68,2,1,1,2]]],[5,2,2,2,4,[[194,2,2,2,4]]],[6,2,2,4,6,[[230,2,2,4,6]]],[9,1,1,6,7,[[288,1,1,6,7]]],[17,1,1,7,8,[[476,1,1,7,8]]],[18,4,4,8,12,[[495,1,1,8,9],[514,1,1,9,10],[545,1,1,10,11],[579,1,1,11,12]]],[19,1,1,12,13,[[637,1,1,12,13]]],[21,1,1,13,14,[[673,1,1,13,14]]],[22,7,7,14,21,[[682,1,1,14,15],[684,1,1,15,16],[687,1,1,16,17],[692,1,1,17,18],[712,1,1,18,19],[729,1,1,19,20],[743,1,1,20,21]]],[27,1,1,21,22,[[874,1,1,21,22]]],[28,1,1,22,23,[[877,1,1,22,23]]],[33,1,1,23,24,[[901,1,1,23,24]]]],[377,2044,6022,6023,7092,7094,8611,13908,14126,14470,14902,15524,16682,17577,17738,17773,17847,17959,18313,18679,18902,22269,22341,22712]]],["smoke",[24,23,[[1,2,1,0,1,[[68,2,1,0,1]]],[5,2,2,1,3,[[194,2,2,1,3]]],[6,2,2,3,5,[[230,2,2,3,5]]],[9,1,1,5,6,[[288,1,1,5,6]]],[17,1,1,6,7,[[476,1,1,6,7]]],[18,4,4,7,11,[[495,1,1,7,8],[514,1,1,8,9],[545,1,1,9,10],[579,1,1,10,11]]],[19,1,1,11,12,[[637,1,1,11,12]]],[21,1,1,12,13,[[673,1,1,12,13]]],[22,7,7,13,20,[[682,1,1,13,14],[684,1,1,14,15],[687,1,1,15,16],[692,1,1,16,17],[712,1,1,17,18],[729,1,1,18,19],[743,1,1,19,20]]],[27,1,1,20,21,[[874,1,1,20,21]]],[28,1,1,21,22,[[877,1,1,21,22]]],[33,1,1,22,23,[[901,1,1,22,23]]]],[2044,6022,6023,7092,7094,8611,13908,14126,14470,14902,15524,16682,17577,17738,17773,17847,17959,18313,18679,18902,22269,22341,22712]]],["smoking",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[377]]]]},{"k":"H6228","v":[["Ashan",[4,4,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]],[12,2,2,2,4,[[341,1,1,2,3],[343,1,1,3,4]]]],[6244,6328,10417,10513]]]]},{"k":"H6229","v":[["strove",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[712]]]]},{"k":"H6230","v":[["Esek",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[712]]]]},{"k":"H6231","v":[["*",[36,35,[[2,3,3,0,3,[[95,2,2,0,2],[108,1,1,2,3]]],[4,3,3,3,6,[[176,1,1,3,4],[180,2,2,4,6]]],[8,2,2,6,8,[[247,2,2,6,8]]],[12,1,1,8,9,[[353,1,1,8,9]]],[17,2,2,9,11,[[445,1,1,9,10],[475,1,1,10,11]]],[18,6,6,11,17,[[549,1,1,11,12],[580,1,1,12,13],[582,1,1,13,14],[596,2,2,14,16],[623,1,1,16,17]]],[19,4,4,17,21,[[641,1,1,17,18],[649,1,1,18,19],[655,2,2,19,21]]],[20,1,1,21,22,[[662,1,1,21,22]]],[22,2,2,22,24,[[701,1,1,22,23],[730,1,1,23,24]]],[23,3,3,24,27,[[751,1,1,24,25],[765,1,1,25,26],[794,1,1,26,27]]],[25,3,2,27,29,[[819,1,1,27,28],[823,2,1,28,29]]],[27,2,2,29,31,[[866,1,1,29,30],[873,1,1,30,31]]],[29,1,1,31,32,[[882,1,1,31,32]]],[32,1,1,32,33,[[894,1,1,32,33]]],[37,1,1,33,34,[[917,1,1,33,34]]],[38,1,1,34,35,[[927,1,1,34,35]]]],[2851,2853,3294,5539,5640,5644,7463,7464,10841,13089,13887,15004,15555,15620,16019,16020,16348,16803,17031,17199,17213,17382,18089,18700,19125,19452,20199,20867,21005,22163,22259,22411,22597,22972,23125]]],["+",[4,4,[[2,2,2,0,2,[[95,1,1,0,1],[108,1,1,1,2]]],[8,1,1,2,3,[[247,1,1,2,3]]],[25,1,1,3,4,[[819,1,1,3,4]]]],[2851,3294,7463,20867]]],["defrauded",[1,1,[[8,1,1,0,1,[[247,1,1,0,1]]]],[7464]]],["gotten",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2853]]],["oppress",[9,9,[[4,1,1,0,1,[[176,1,1,0,1]]],[17,1,1,1,2,[[445,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[23,1,1,3,4,[[751,1,1,3,4]]],[27,1,1,4,5,[[873,1,1,4,5]]],[29,1,1,5,6,[[882,1,1,5,6]]],[32,1,1,6,7,[[894,1,1,6,7]]],[37,1,1,7,8,[[917,1,1,7,8]]],[38,1,1,8,9,[[927,1,1,8,9]]]],[5539,13089,16020,19125,22259,22411,22597,22972,23125]]],["oppressed",[9,9,[[4,2,2,0,2,[[180,2,2,0,2]]],[18,2,2,2,4,[[580,1,1,2,3],[623,1,1,3,4]]],[22,2,2,4,6,[[701,1,1,4,5],[730,1,1,5,6]]],[23,1,1,6,7,[[794,1,1,6,7]]],[25,1,1,7,8,[[823,1,1,7,8]]],[27,1,1,8,9,[[866,1,1,8,9]]]],[5640,5644,15555,16348,18089,18700,20199,21005,22163]]],["oppresseth",[3,3,[[19,3,3,0,3,[[641,1,1,0,1],[649,1,1,1,2],[655,1,1,2,3]]]],[16803,17031,17199]]],["oppressor",[2,2,[[18,1,1,0,1,[[549,1,1,0,1]]],[23,1,1,1,2,[[765,1,1,1,2]]]],[15004,19452]]],["oppressors",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[20,1,1,1,2,[[662,1,1,1,2]]]],[16019,17382]]],["up",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13887]]],["used",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[21005]]],["violence",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17213]]],["wrong",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[10841,15620]]]]},{"k":"H6232","v":[["Eshek",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10614]]]]},{"k":"H6233","v":[["*",[15,15,[[2,1,1,0,1,[[95,1,1,0,1]]],[18,3,3,1,4,[[539,1,1,1,2],[550,1,1,2,3],[596,1,1,3,4]]],[20,2,2,4,6,[[663,1,1,4,5],[665,1,1,5,6]]],[22,3,3,6,9,[[708,1,1,6,7],[732,1,1,7,8],[737,1,1,8,9]]],[23,2,2,9,11,[[750,1,1,9,10],[766,1,1,10,11]]],[25,4,4,11,15,[[819,1,1,11,12],[823,3,3,12,15]]]],[2853,14837,15028,16032,17405,17436,18229,18737,18813,19095,19471,20867,20983,20988,21005]]],["+",[3,3,[[18,1,1,0,1,[[596,1,1,0,1]]],[22,1,1,1,2,[[732,1,1,1,2]]],[25,1,1,2,3,[[819,1,1,2,3]]]],[16032,18737,20867]]],["extortion",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[20988]]],["oppression",[10,10,[[18,2,2,0,2,[[539,1,1,0,1],[550,1,1,1,2]]],[20,2,2,2,4,[[663,1,1,2,3],[665,1,1,3,4]]],[22,2,2,4,6,[[708,1,1,4,5],[737,1,1,5,6]]],[23,2,2,6,8,[[750,1,1,6,7],[766,1,1,7,8]]],[25,2,2,8,10,[[823,2,2,8,10]]]],[14837,15028,17405,17436,18229,18813,19095,19471,20983,21005]]],["thing",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2853]]]]},{"k":"H6234","v":[["oppressed",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18404]]]]},{"k":"H6235","v":[["*",[174,155,[[0,15,12,0,12,[[4,1,1,0,1],[15,1,1,1,2],[17,2,1,2,3],[23,2,2,3,5],[30,2,2,5,7],[31,2,1,7,8],[41,1,1,8,9],[44,2,1,9,10],[49,2,2,10,12]]],[1,11,9,12,21,[[67,2,2,12,14],[75,2,2,14,16],[76,2,1,16,17],[83,1,1,17,18],[85,2,2,18,20],[87,2,1,20,21]]],[2,3,3,21,24,[[115,1,1,21,22],[116,2,2,22,24]]],[3,18,17,24,41,[[123,14,13,24,37],[127,2,2,37,39],[130,1,1,39,40],[145,1,1,40,41]]],[4,3,3,41,44,[[153,1,1,41,42],[156,1,1,42,43],[162,1,1,43,44]]],[5,6,6,44,50,[[201,1,1,44,45],[203,1,1,45,46],[207,2,2,46,48],[208,1,1,48,49],[210,1,1,49,50]]],[6,12,12,50,62,[[211,1,1,50,51],[212,1,1,51,52],[213,1,1,52,53],[214,3,3,53,56],[216,1,1,56,57],[217,1,1,57,58],[222,1,1,58,59],[227,1,1,59,60],[230,2,2,60,62]]],[7,2,2,62,64,[[232,1,1,62,63],[235,1,1,63,64]]],[8,6,6,64,70,[[236,1,1,64,65],[250,1,1,65,66],[252,2,2,66,68],[260,2,2,68,70]]],[9,6,6,70,76,[[281,1,1,70,71],[284,3,3,71,74],[285,1,1,74,75],[286,1,1,75,76]]],[10,20,17,76,93,[[294,1,1,76,77],[295,1,1,77,78],[296,5,5,78,83],[297,9,7,83,90],[301,3,2,90,92],[304,1,1,92,93]]],[11,13,9,93,102,[[317,2,1,93,94],[325,2,1,94,95],[326,1,1,95,96],[327,1,1,96,97],[332,5,3,97,100],[336,1,1,100,101],[337,1,1,101,102]]],[12,2,2,102,104,[[343,1,1,102,103],[366,1,1,103,104]]],[13,13,12,104,116,[[370,6,6,104,110],[380,1,1,110,111],[391,2,2,111,113],[393,2,1,113,114],[396,1,1,114,115],[402,1,1,115,116]]],[14,3,3,116,119,[[403,1,1,116,117],[410,2,2,117,119]]],[15,3,3,119,122,[[416,1,1,119,120],[417,1,1,120,121],[423,1,1,121,122]]],[16,5,5,122,127,[[428,1,1,122,123],[434,4,4,123,127]]],[17,1,1,127,128,[[454,1,1,127,128]]],[20,1,1,128,129,[[665,1,1,128,129]]],[22,3,2,129,131,[[683,1,1,129,130],[716,2,1,130,131]]],[23,4,4,131,135,[[785,3,3,131,134],[786,1,1,134,135]]],[25,15,11,135,146,[[841,1,1,135,136],[842,1,1,136,137],[843,1,1,137,138],[846,5,4,138,142],[849,7,4,142,146]]],[26,4,4,146,150,[[850,4,4,146,150]]],[29,2,2,150,152,[[883,1,1,150,151],[884,1,1,151,152]]],[36,1,1,152,153,[[910,1,1,152,153]]],[37,2,2,153,155,[[915,1,1,153,154],[918,1,1,154,155]]]],[119,384,456,601,613,880,914,943,1255,1381,1528,1532,2020,2024,2236,2251,2284,2524,2574,2587,2645,3550,3575,3577,3864,3870,3876,3882,3888,3894,3900,3906,3912,3918,3924,3930,3936,4043,4056,4130,4631,4907,5017,5190,6259,6280,6386,6407,6440,6505,6513,6553,6597,6605,6609,6613,6681,6697,6880,6990,7064,7088,7131,7192,7220,7564,7635,7636,7866,7899,8405,8481,8489,8493,8554,8557,8867,8892,8899,8919,8920,8921,8922,8944,8957,8958,8961,8971,8972,8977,9139,9143,9221,9652,9878,9903,9942,10107,10108,10109,10216,10247,10515,11171,11247,11248,11249,11252,11253,11254,11476,11715,11716,11760,11851,12002,12026,12213,12225,12371,12400,12589,12756,12844,12846,12847,12848,13300,17448,17749,18398,19958,19959,19965,19982,21488,21528,21556,21631,21633,21635,21644,21711,21712,21715,21720,21749,21751,21752,21757,22426,22459,22871,22938,22999]]],["+",[5,4,[[0,1,1,0,1,[[17,1,1,0,1]]],[3,2,1,1,2,[[123,2,1,1,2]]],[8,1,1,2,3,[[236,1,1,2,3]]],[20,1,1,3,4,[[665,1,1,3,4]]]],[456,3936,7220,17448]]],["Ten",[2,2,[[1,1,1,0,1,[[75,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]]],[2251,8867]]],["ten",[164,147,[[0,14,12,0,12,[[4,1,1,0,1],[15,1,1,1,2],[17,1,1,2,3],[23,2,2,3,5],[30,2,2,5,7],[31,2,1,7,8],[41,1,1,8,9],[44,2,1,9,10],[49,2,2,10,12]]],[1,8,6,12,18,[[75,1,1,12,13],[76,2,1,13,14],[83,1,1,14,15],[85,2,2,15,17],[87,2,1,17,18]]],[2,3,3,18,21,[[115,1,1,18,19],[116,2,2,19,21]]],[3,16,16,21,37,[[123,12,12,21,33],[127,2,2,33,35],[130,1,1,35,36],[145,1,1,36,37]]],[4,2,2,37,39,[[156,1,1,37,38],[162,1,1,38,39]]],[5,6,6,39,45,[[201,1,1,39,40],[203,1,1,40,41],[207,2,2,41,43],[208,1,1,43,44],[210,1,1,44,45]]],[6,12,12,45,57,[[211,1,1,45,46],[212,1,1,46,47],[213,1,1,47,48],[214,3,3,48,51],[216,1,1,51,52],[217,1,1,52,53],[222,1,1,53,54],[227,1,1,54,55],[230,2,2,55,57]]],[7,2,2,57,59,[[232,1,1,57,58],[235,1,1,58,59]]],[8,5,5,59,64,[[250,1,1,59,60],[252,2,2,60,62],[260,2,2,62,64]]],[9,6,6,64,70,[[281,1,1,64,65],[284,3,3,65,68],[285,1,1,68,69],[286,1,1,69,70]]],[10,19,16,70,86,[[295,1,1,70,71],[296,5,5,71,76],[297,9,7,76,83],[301,3,2,83,85],[304,1,1,85,86]]],[11,13,9,86,95,[[317,2,1,86,87],[325,2,1,87,88],[326,1,1,88,89],[327,1,1,89,90],[332,5,3,90,93],[336,1,1,93,94],[337,1,1,94,95]]],[12,2,2,95,97,[[343,1,1,95,96],[366,1,1,96,97]]],[13,13,12,97,109,[[370,6,6,97,103],[380,1,1,103,104],[391,2,2,104,106],[393,2,1,106,107],[396,1,1,107,108],[402,1,1,108,109]]],[14,3,3,109,112,[[403,1,1,109,110],[410,2,2,110,112]]],[15,3,3,112,115,[[416,1,1,112,113],[417,1,1,113,114],[423,1,1,114,115]]],[16,5,5,115,120,[[428,1,1,115,116],[434,4,4,116,120]]],[17,1,1,120,121,[[454,1,1,120,121]]],[22,3,2,121,123,[[683,1,1,121,122],[716,2,1,122,123]]],[23,4,4,123,127,[[785,3,3,123,126],[786,1,1,126,127]]],[25,15,11,127,138,[[841,1,1,127,128],[842,1,1,128,129],[843,1,1,129,130],[846,5,4,130,134],[849,7,4,134,138]]],[26,4,4,138,142,[[850,4,4,138,142]]],[29,2,2,142,144,[[883,1,1,142,143],[884,1,1,143,144]]],[36,1,1,144,145,[[910,1,1,144,145]]],[37,2,2,145,147,[[915,1,1,145,146],[918,1,1,146,147]]]],[119,384,456,601,613,880,914,943,1255,1381,1528,1532,2236,2284,2524,2574,2587,2645,3550,3575,3577,3864,3870,3876,3882,3888,3894,3900,3906,3912,3918,3924,3930,4043,4056,4130,4631,5017,5190,6259,6280,6386,6407,6440,6505,6513,6553,6597,6605,6609,6613,6681,6697,6880,6990,7064,7088,7131,7192,7564,7635,7636,7866,7899,8405,8481,8489,8493,8554,8557,8892,8899,8919,8920,8921,8922,8944,8957,8958,8961,8971,8972,8977,9139,9143,9221,9652,9878,9903,9942,10107,10108,10109,10216,10247,10515,11171,11247,11248,11249,11252,11253,11254,11476,11715,11716,11760,11851,12002,12026,12213,12225,12371,12400,12589,12756,12844,12846,12847,12848,13300,17749,18398,19958,19959,19965,19982,21488,21528,21556,21631,21633,21635,21644,21711,21712,21715,21720,21749,21751,21752,21757,22426,22459,22871,22938,22999]]],["tens",[3,3,[[1,2,2,0,2,[[67,2,2,0,2]]],[4,1,1,2,3,[[153,1,1,2,3]]]],[2020,2024,4907]]]]},{"k":"H6236","v":[["*",[6,5,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,5,4,1,5,[[853,1,1,1,2],[856,4,3,2,5]]]],[12168,21866,21940,21953,21957]]],["+",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[12168,21866]]],["ten",[4,3,[[26,4,3,0,3,[[856,4,3,0,3]]]],[21940,21953,21957]]]]},{"k":"H6237","v":[["*",[9,7,[[0,2,1,0,1,[[27,2,1,0,1]]],[4,3,2,1,3,[[166,2,1,1,2],[178,1,1,2,3]]],[8,2,2,3,5,[[243,2,2,3,5]]],[15,2,2,5,7,[[422,2,2,5,7]]]],[795,5312,5578,7384,7386,12586,12587]]],["+",[5,3,[[0,2,1,0,1,[[27,2,1,0,1]]],[4,3,2,1,3,[[166,2,1,1,2],[178,1,1,2,3]]]],[795,5312,5578]]],["tenth",[2,2,[[8,2,2,0,2,[[243,2,2,0,2]]]],[7384,7386]]],["tithes",[2,2,[[15,2,2,0,2,[[422,2,2,0,2]]]],[12586,12587]]]]},{"k":"H6238","v":[["*",[17,17,[[0,1,1,0,1,[[13,1,1,0,1]]],[8,2,2,1,3,[[237,1,1,1,2],[252,1,1,2,3]]],[17,1,1,3,4,[[450,1,1,3,4]]],[18,2,2,4,6,[[526,1,1,4,5],[542,1,1,5,6]]],[19,6,6,6,12,[[637,2,2,6,8],[640,1,1,8,9],[648,1,1,9,10],[650,1,1,10,11],[655,1,1,11,12]]],[23,1,1,12,13,[[749,1,1,12,13]]],[25,1,1,13,14,[[828,1,1,13,14]]],[26,1,1,14,15,[[860,1,1,14,15]]],[27,1,1,15,16,[[873,1,1,15,16]]],[37,1,1,16,17,[[921,1,1,16,17]]]],[359,7247,7643,13232,14664,14869,16660,16678,16754,17001,17048,17216,19085,21154,22038,22260,23033]]],["+",[2,2,[[0,1,1,0,1,[[13,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[359,22038]]],["enrich",[2,2,[[8,1,1,0,1,[[252,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[7643,21154]]],["enrichest",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14869]]],["rich",[12,12,[[8,1,1,0,1,[[237,1,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]],[18,1,1,2,3,[[526,1,1,2,3]]],[19,6,6,3,9,[[637,2,2,3,5],[640,1,1,5,6],[648,1,1,6,7],[650,1,1,7,8],[655,1,1,8,9]]],[23,1,1,9,10,[[749,1,1,9,10]]],[27,1,1,10,11,[[873,1,1,10,11]]],[37,1,1,11,12,[[921,1,1,11,12]]]],[7247,13232,14664,16660,16678,16754,17001,17048,17216,19085,22260,23033]]]]},{"k":"H6239","v":[["*",[37,36,[[0,1,1,0,1,[[30,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[10,3,3,2,5,[[293,2,2,2,4],[300,1,1,4,5]]],[12,2,2,5,7,[[366,2,2,5,7]]],[13,6,6,7,13,[[367,2,2,7,9],[375,1,1,9,10],[383,1,1,10,11],[384,1,1,11,12],[398,1,1,12,13]]],[16,2,2,13,15,[[426,1,1,13,14],[430,1,1,14,15]]],[18,3,3,15,18,[[526,1,1,15,16],[529,1,1,16,17],[589,1,1,17,18]]],[19,9,9,18,27,[[630,1,1,18,19],[635,1,1,19,20],[638,2,2,20,22],[640,1,1,22,23],[641,1,1,23,24],[649,2,2,24,26],[657,1,1,26,27]]],[20,6,6,27,33,[[662,1,1,27,28],[663,3,3,28,31],[664,1,1,31,32],[667,1,1,32,33]]],[23,2,2,33,35,[[753,1,1,33,34],[761,1,1,34,35]]],[26,2,1,35,36,[[860,2,1,35,36]]]],[889,7643,8827,8829,9102,11176,11192,11205,11206,11386,11528,11543,11902,12706,12790,14654,14717,15806,16471,16620,16704,16716,16755,16796,17016,17019,17259,17389,17410,17411,17416,17419,17486,19198,19368,22038]]],["+",[2,2,[[19,1,1,0,1,[[649,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[17016,22038]]],["Riches",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16620]]],["riches",[34,34,[[0,1,1,0,1,[[30,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[10,3,3,2,5,[[293,2,2,2,4],[300,1,1,4,5]]],[12,2,2,5,7,[[366,2,2,5,7]]],[13,6,6,7,13,[[367,2,2,7,9],[375,1,1,9,10],[383,1,1,10,11],[384,1,1,11,12],[398,1,1,12,13]]],[16,2,2,13,15,[[426,1,1,13,14],[430,1,1,14,15]]],[18,3,3,15,18,[[526,1,1,15,16],[529,1,1,16,17],[589,1,1,17,18]]],[19,7,7,18,25,[[630,1,1,18,19],[638,2,2,19,21],[640,1,1,21,22],[641,1,1,22,23],[649,1,1,23,24],[657,1,1,24,25]]],[20,6,6,25,31,[[662,1,1,25,26],[663,3,3,26,29],[664,1,1,29,30],[667,1,1,30,31]]],[23,2,2,31,33,[[753,1,1,31,32],[761,1,1,32,33]]],[26,1,1,33,34,[[860,1,1,33,34]]]],[889,7643,8827,8829,9102,11176,11192,11205,11206,11386,11528,11543,11902,12706,12790,14654,14717,15806,16471,16704,16716,16755,16796,17019,17259,17389,17410,17411,17416,17419,17486,19198,19368,22038]]]]},{"k":"H6240","v":[["+",[338,292,[[0,24,23,0,23,[[4,2,2,0,2],[6,2,2,2,4],[7,1,1,4,5],[10,1,1,5,6],[13,4,3,6,9],[16,2,2,9,11],[24,1,1,11,12],[30,1,1,12,13],[31,1,1,13,14],[34,1,1,14,15],[36,2,2,15,17],[41,2,2,17,19],[45,2,2,19,21],[46,1,1,21,22],[48,1,1,22,23]]],[1,20,17,23,40,[[61,2,2,23,25],[64,1,1,25,26],[65,1,1,26,27],[73,2,1,27,28],[75,3,3,28,31],[76,2,2,31,33],[77,2,1,33,34],[85,3,3,34,37],[87,2,2,37,39],[88,2,1,39,40]]],[2,6,6,40,46,[[112,4,4,40,44],[113,1,1,44,45],[116,1,1,45,46]]],[3,39,31,46,77,[[117,1,1,46,47],[123,11,6,47,53],[125,3,3,53,56],[132,1,1,56,57],[133,2,2,57,59],[144,2,2,59,61],[145,13,10,61,71],[147,4,4,71,75],[149,2,2,75,77]]],[4,3,3,77,80,[[153,3,3,77,80]]],[5,24,24,80,104,[[189,1,1,80,81],[190,6,6,81,87],[191,1,1,87,88],[194,1,1,88,89],[201,3,3,89,92],[204,2,2,92,94],[205,4,4,94,98],[207,6,6,98,104]]],[6,7,7,104,111,[[213,1,1,104,105],[218,1,1,105,106],[220,1,1,106,107],[229,1,1,107,108],[230,2,2,108,110],[231,1,1,110,111]]],[9,8,7,111,118,[[268,3,2,111,113],[274,1,1,113,114],[275,1,1,114,115],[276,1,1,115,116],[283,1,1,116,117],[285,1,1,117,118]]],[10,22,20,118,138,[[294,2,2,118,120],[296,1,1,120,121],[297,6,5,121,126],[298,1,1,126,127],[300,2,2,127,129],[301,1,1,129,130],[302,2,2,130,132],[304,1,1,132,133],[305,1,1,133,134],[306,1,1,134,135],[308,1,1,135,136],[309,2,1,136,137],[312,1,1,137,138]]],[11,26,25,138,163,[[315,2,1,138,139],[320,1,1,139,140],[321,1,1,140,141],[325,2,2,141,143],[326,3,3,143,146],[327,2,2,146,148],[328,2,2,148,150],[329,1,1,150,151],[330,1,1,151,152],[332,1,1,152,153],[333,1,1,153,154],[334,1,1,154,155],[335,2,2,155,157],[336,2,2,157,159],[337,4,4,159,163]]],[12,59,44,163,207,[[341,1,1,163,164],[343,3,3,164,167],[344,1,1,167,168],[346,1,1,168,169],[349,2,2,169,171],[352,1,1,171,172],[355,1,1,172,173],[361,10,6,173,179],[362,33,24,179,203],[363,2,2,203,205],[364,4,2,205,207]]],[13,26,25,207,232,[[367,1,1,207,208],[370,2,2,208,210],[375,2,2,210,212],[377,1,1,212,213],[378,1,1,213,214],[379,3,2,214,216],[381,1,1,216,217],[391,1,1,217,218],[392,2,2,218,220],[393,2,2,220,222],[394,1,1,222,223],[395,1,1,223,224],[396,1,1,224,225],[399,1,1,225,226],[400,2,2,226,228],[401,2,2,228,230],[402,2,2,230,232]]],[14,10,9,232,241,[[404,3,3,232,235],[408,1,1,235,236],[410,6,5,236,241]]],[15,4,4,241,245,[[417,1,1,241,242],[419,3,3,242,245]]],[16,19,11,245,256,[[427,1,1,245,246],[428,5,3,246,249],[433,2,1,249,250],[434,11,6,250,256]]],[17,1,1,256,257,[[477,1,1,256,257]]],[22,2,2,257,259,[[714,1,1,257,258],[716,1,1,258,259]]],[23,14,13,259,272,[[745,2,2,259,261],[769,1,1,261,262],[776,2,2,262,264],[783,1,1,264,265],[796,8,7,265,272]]],[25,21,17,272,289,[[827,1,1,272,273],[830,1,1,273,274],[831,1,1,274,275],[832,1,1,275,276],[833,4,2,276,278],[834,1,1,278,279],[841,3,3,279,282],[844,4,2,282,284],[846,3,3,284,287],[848,1,1,287,288],[849,1,1,288,289]]],[27,1,1,289,290,[[864,1,1,289,290]]],[31,1,1,290,291,[[892,1,1,290,291]]],[37,1,1,291,292,[[911,1,1,291,292]]]],[113,115,170,179,187,291,340,341,350,417,422,674,914,950,1033,1085,1092,1265,1284,1404,1408,1448,1501,1822,1834,1947,1948,2181,2242,2243,2260,2286,2287,2314,2580,2581,2596,2647,2648,2678,3407,3408,3436,3441,3451,3577,3648,3853,3922,3928,3934,3936,3937,3968,3970,3976,4243,4246,4250,4593,4594,4620,4621,4622,4623,4625,4628,4631,4634,4637,4640,4669,4704,4710,4716,4763,4769,4894,4895,4915,5905,5912,5913,5914,5918,5919,5930,5944,6027,6238,6243,6253,6317,6321,6327,6336,6343,6359,6385,6387,6388,6400,6414,6421,6582,6729,6819,7053,7079,7098,7112,8064,8079,8222,8237,8246,8450,8528,8851,8870,8934,8935,8937,8949,8959,8978,9050,9099,9105,9138,9183,9184,9239,9250,9306,9372,9406,9531,9577,9752,9785,9872,9881,9913,9917,9919,9927,9958,9964,9965,9984,10037,10104,10120,10148,10188,10201,10210,10220,10224,10230,10239,10249,10412,10514,10516,10517,10546,10637,10733,10751,10801,10902,11019,11027,11028,11029,11030,11031,11051,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11086,11088,11123,11124,11208,11250,11261,11383,11389,11435,11450,11454,11474,11500,11729,11733,11735,11756,11763,11765,11808,11842,11909,11936,11941,11967,11985,11998,12004,12033,12045,12066,12170,12210,12219,12225,12232,12236,12396,12431,12444,12462,12736,12754,12759,12760,12829,12835,12849,12851,12852,12853,12855,13934,18331,18395,18948,18949,19537,19732,19740,19925,20277,20281,20288,20296,20297,20305,20307,21101,21184,21224,21231,21249,21265,21301,21478,21488,21526,21588,21589,21642,21651,21655,21692,21737,22130,22579,22885]]]]},{"k":"H6241","v":[["*",[33,22,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,5,5,1,6,[[103,2,2,1,3],[112,2,2,3,5],[113,1,1,5,6]]],[3,27,16,6,22,[[131,3,3,6,9],[144,13,7,9,16],[145,11,6,16,22]]]],[2376,3121,3132,3415,3419,3451,4157,4159,4162,4586,4589,4590,4597,4598,4605,4606,4611,4612,4617,4618,4622,4623]]],["+",[10,5,[[3,10,5,0,5,[[144,6,3,0,3],[145,4,2,3,5]]]],[4590,4598,4606,4618,4623]]],["deal",[4,4,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,1,1,1,2,[[103,1,1,1,2]]],[3,2,2,2,4,[[131,1,1,2,3],[145,1,1,3,4]]]],[2376,3132,4157,4612]]],["deals",[19,13,[[2,4,4,0,4,[[103,1,1,0,1],[112,2,2,1,3],[113,1,1,3,4]]],[3,15,9,4,13,[[131,2,2,4,6],[144,7,4,6,10],[145,6,3,10,13]]]],[3121,3415,3419,3451,4159,4162,4586,4589,4597,4605,4611,4617,4622]]]]},{"k":"H6242","v":[["*",[315,281,[[0,12,10,0,10,[[5,1,1,0,1],[7,1,1,1,2],[10,1,1,2,3],[17,2,1,3,4],[22,1,1,4,5],[30,2,2,5,7],[31,3,2,7,9],[36,1,1,9,10]]],[1,23,19,10,29,[[61,1,1,10,11],[75,4,4,11,15],[76,5,3,15,18],[79,2,2,18,20],[85,4,4,20,24],[87,7,5,24,29]]],[2,4,3,29,32,[[116,4,3,29,32]]],[3,32,32,32,64,[[117,15,15,32,47],[119,3,3,47,50],[123,2,2,50,52],[124,1,1,52,53],[126,1,1,53,54],[127,1,1,54,55],[130,1,1,55,56],[134,1,1,56,57],[141,1,1,57,58],[142,4,4,58,62],[148,1,1,62,63],[149,1,1,63,64]]],[4,2,2,64,66,[[183,1,1,64,65],[186,1,1,65,66]]],[5,2,2,66,68,[[201,1,1,66,67],[205,1,1,67,68]]],[6,12,12,68,80,[[214,1,1,68,69],[217,1,1,69,70],[218,1,1,70,71],[220,2,2,71,73],[221,1,1,73,74],[225,1,1,74,75],[226,1,1,75,76],[230,4,4,76,80]]],[8,2,2,80,82,[[242,1,1,80,81],[249,1,1,81,82]]],[9,9,9,82,91,[[269,1,1,82,83],[274,2,2,83,85],[275,1,1,85,86],[276,1,1,86,87],[284,1,1,87,88],[285,1,1,88,89],[287,1,1,89,90],[290,1,1,90,91]]],[10,25,21,91,112,[[294,1,1,91,92],[295,2,1,92,93],[296,6,4,93,97],[298,2,1,97,98],[299,4,4,98,102],[300,1,1,102,103],[304,1,1,103,104],[305,2,2,104,106],[306,4,4,106,110],[310,1,1,110,111],[312,1,1,111,112]]],[11,19,17,112,129,[[316,1,1,112,113],[320,1,1,113,114],[322,1,1,114,115],[324,1,1,115,116],[325,1,1,116,117],[326,2,1,117,118],[327,4,4,118,122],[328,1,1,122,123],[330,2,1,123,124],[333,1,1,124,125],[335,2,2,125,127],[336,1,1,127,128],[337,1,1,128,129]]],[12,41,39,129,168,[[339,1,1,129,130],[344,4,4,130,134],[349,4,4,134,138],[352,2,2,138,140],[355,2,2,140,142],[357,1,1,142,143],[360,3,3,143,146],[361,5,3,146,149],[362,5,5,149,154],[364,14,14,154,168]]],[13,36,27,168,195,[[368,4,1,168,169],[369,7,5,169,174],[370,2,1,174,175],[371,1,1,175,176],[373,3,2,176,178],[374,1,1,178,179],[375,1,1,179,180],[377,1,1,180,181],[379,1,1,181,182],[386,1,1,182,183],[391,3,2,183,185],[393,2,2,185,187],[394,2,2,187,189],[395,2,1,189,190],[397,1,1,190,191],[399,1,1,191,192],[402,3,3,192,195]]],[14,20,20,195,215,[[403,1,1,195,196],[404,13,13,196,209],[405,1,1,209,210],[410,4,4,210,214],[412,1,1,214,215]]],[15,19,19,215,234,[[413,1,1,215,216],[414,1,1,216,217],[417,1,1,217,218],[418,1,1,218,219],[419,11,11,219,230],[421,1,1,230,231],[423,3,3,231,234]]],[16,4,3,234,237,[[426,1,1,234,235],[433,2,1,235,236],[434,1,1,236,237]]],[23,5,5,237,242,[[769,1,1,237,238],[796,4,4,238,242]]],[25,37,29,242,271,[[805,1,1,242,243],[809,1,1,243,244],[812,1,1,244,245],[830,1,1,245,246],[841,9,9,246,255],[842,4,3,255,258],[843,1,1,258,259],[846,8,5,259,264],[849,11,7,264,271]]],[26,2,2,271,273,[[859,2,2,271,273]]],[36,7,6,273,279,[[909,1,1,273,274],[910,6,5,274,279]]],[37,2,2,279,281,[[911,1,1,279,280],[915,1,1,280,281]]]],[140,197,290,455,572,911,914,942,943,1111,1834,2237,2253,2254,2255,2282,2283,2288,2395,2396,2575,2589,2590,2591,2643,2644,2651,2657,2659,3573,3575,3595,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3731,3735,3739,3936,3938,3963,3999,4043,4137,4273,4480,4491,4493,4503,4551,4729,4799,5730,5846,6234,6351,6602,6697,6729,6813,6814,6862,6949,6980,7069,7075,7089,7100,7354,7522,8101,8213,8214,8237,8246,8485,8528,8600,8700,8867,8889,8898,8899,8912,8916,9048,9061,9062,9065,9079,9089,9238,9258,9282,9291,9293,9298,9312,9438,9522,9645,9753,9829,9856,9872,9898,9926,9952,9955,9958,9965,10026,10138,10196,10201,10220,10249,10328,10537,10542,10544,10575,10748,10750,10755,10757,10796,10797,10894,10895,10932,10987,11007,11010,11031,11032,11033,11073,11074,11075,11076,11077,11110,11111,11113,11114,11116,11117,11118,11119,11120,11121,11122,11123,11124,11132,11221,11232,11233,11237,11240,11242,11247,11280,11329,11334,11347,11373,11435,11474,11618,11705,11709,11756,11763,11765,11770,11792,11871,11929,11995,11998,12004,12025,12038,12039,12044,12046,12048,12050,12053,12054,12055,12059,12060,12068,12094,12105,12212,12220,12221,12228,12261,12297,12308,12396,12416,12436,12437,12442,12443,12447,12450,12451,12452,12455,12457,12489,12512,12596,12600,12602,12703,12826,12864,19537,20277,20304,20306,20307,20539,20620,20656,21200,21478,21490,21498,21502,21506,21507,21510,21513,21526,21528,21530,21536,21555,21631,21633,21635,21636,21642,21710,21711,21712,21715,21717,21722,21723,22019,22028,22855,22856,22865,22871,22873,22875,22885,22938]]],["+",[7,7,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[87,1,1,1,2]]],[2,1,1,2,3,[[116,1,1,2,3]]],[10,1,1,3,4,[[299,1,1,3,4]]],[12,2,2,4,6,[[360,1,1,4,5],[364,1,1,5,6]]],[14,1,1,6,7,[[405,1,1,6,7]]]],[455,2659,3573,9065,11010,11132,12105]]],["Twenty",[2,2,[[11,2,2,0,2,[[328,1,1,0,1],[330,1,1,1,2]]]],[9965,10026]]],["twentieth",[36,34,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[3,1,1,2,3,[[126,1,1,2,3]]],[10,1,1,3,4,[[305,1,1,3,4]]],[11,4,4,4,8,[[324,1,1,4,5],[325,1,1,5,6],[327,1,1,6,7],[337,1,1,7,8]]],[12,10,8,8,16,[[361,5,3,8,11],[362,5,5,11,16]]],[13,1,1,16,17,[[373,1,1,16,17]]],[14,1,1,17,18,[[412,1,1,17,18]]],[15,3,3,18,21,[[413,1,1,18,19],[414,1,1,19,20],[417,1,1,20,21]]],[16,1,1,21,22,[[433,1,1,21,22]]],[23,3,3,22,25,[[769,1,1,22,23],[796,2,2,23,25]]],[25,2,2,25,27,[[830,1,1,25,26],[841,1,1,26,27]]],[26,1,1,27,28,[[859,1,1,27,28]]],[36,5,5,28,33,[[909,1,1,28,29],[910,4,4,29,33]]],[37,1,1,33,34,[[911,1,1,33,34]]]],[197,1834,3999,9258,9856,9872,9955,10249,11031,11032,11033,11073,11074,11075,11076,11077,11334,12261,12297,12308,12396,12826,19537,20306,20307,21200,21478,22019,22855,22856,22865,22873,22875,22885]]],["twenty",[270,241,[[0,10,9,0,9,[[5,1,1,0,1],[10,1,1,1,2],[17,1,1,2,3],[22,1,1,3,4],[30,2,2,4,6],[31,3,2,6,8],[36,1,1,8,9]]],[1,21,17,9,26,[[75,4,4,9,13],[76,5,3,13,16],[79,2,2,16,18],[85,4,4,18,22],[87,6,4,22,26]]],[2,3,2,26,28,[[116,3,2,26,28]]],[3,31,31,28,59,[[117,15,15,28,43],[119,3,3,43,46],[123,2,2,46,48],[124,1,1,48,49],[127,1,1,49,50],[130,1,1,50,51],[134,1,1,51,52],[141,1,1,52,53],[142,4,4,53,57],[148,1,1,57,58],[149,1,1,58,59]]],[4,2,2,59,61,[[183,1,1,59,60],[186,1,1,60,61]]],[5,2,2,61,63,[[201,1,1,61,62],[205,1,1,62,63]]],[6,12,12,63,75,[[214,1,1,63,64],[217,1,1,64,65],[218,1,1,65,66],[220,2,2,66,68],[221,1,1,68,69],[225,1,1,69,70],[226,1,1,70,71],[230,4,4,71,75]]],[8,2,2,75,77,[[242,1,1,75,76],[249,1,1,76,77]]],[9,9,9,77,86,[[269,1,1,77,78],[274,2,2,78,80],[275,1,1,80,81],[276,1,1,81,82],[284,1,1,82,83],[285,1,1,83,84],[287,1,1,84,85],[290,1,1,85,86]]],[10,23,19,86,105,[[294,1,1,86,87],[295,2,1,87,88],[296,6,4,88,92],[298,2,1,92,93],[299,3,3,93,96],[300,1,1,96,97],[304,1,1,97,98],[305,1,1,98,99],[306,4,4,99,103],[310,1,1,103,104],[312,1,1,104,105]]],[11,13,12,105,117,[[316,1,1,105,106],[320,1,1,106,107],[322,1,1,107,108],[326,2,1,108,109],[327,3,3,109,112],[330,1,1,112,113],[333,1,1,113,114],[335,2,2,114,116],[336,1,1,116,117]]],[12,29,29,117,146,[[339,1,1,117,118],[344,4,4,118,122],[349,4,4,122,126],[352,2,2,126,128],[355,2,2,128,130],[357,1,1,130,131],[360,2,2,131,133],[364,13,13,133,146]]],[13,35,26,146,172,[[368,4,1,146,147],[369,7,5,147,152],[370,2,1,152,153],[371,1,1,153,154],[373,2,1,154,155],[374,1,1,155,156],[375,1,1,156,157],[377,1,1,157,158],[379,1,1,158,159],[386,1,1,159,160],[391,3,2,160,162],[393,2,2,162,164],[394,2,2,164,166],[395,2,1,166,167],[397,1,1,167,168],[399,1,1,168,169],[402,3,3,169,172]]],[14,18,18,172,190,[[403,1,1,172,173],[404,13,13,173,186],[410,4,4,186,190]]],[15,16,16,190,206,[[418,1,1,190,191],[419,11,11,191,202],[421,1,1,202,203],[423,3,3,203,206]]],[16,3,3,206,209,[[426,1,1,206,207],[433,1,1,207,208],[434,1,1,208,209]]],[23,2,2,209,211,[[796,2,2,209,211]]],[25,35,27,211,238,[[805,1,1,211,212],[809,1,1,212,213],[812,1,1,213,214],[841,8,8,214,222],[842,4,3,222,225],[843,1,1,225,226],[846,8,5,226,231],[849,11,7,231,238]]],[26,1,1,238,239,[[859,1,1,238,239]]],[36,2,1,239,240,[[910,2,1,239,240]]],[37,1,1,240,241,[[915,1,1,240,241]]]],[140,290,455,572,911,914,942,943,1111,2237,2253,2254,2255,2282,2283,2288,2395,2396,2575,2589,2590,2591,2643,2644,2651,2657,3575,3595,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3731,3735,3739,3936,3938,3963,4043,4137,4273,4480,4491,4493,4503,4551,4729,4799,5730,5846,6234,6351,6602,6697,6729,6813,6814,6862,6949,6980,7069,7075,7089,7100,7354,7522,8101,8213,8214,8237,8246,8485,8528,8600,8700,8867,8889,8898,8899,8912,8916,9048,9061,9062,9079,9089,9238,9282,9291,9293,9298,9312,9438,9522,9645,9753,9829,9898,9926,9952,9958,10026,10138,10196,10201,10220,10328,10537,10542,10544,10575,10748,10750,10755,10757,10796,10797,10894,10895,10932,10987,11007,11110,11111,11113,11114,11116,11117,11118,11119,11120,11121,11122,11123,11124,11221,11232,11233,11237,11240,11242,11247,11280,11329,11347,11373,11435,11474,11618,11705,11709,11756,11763,11765,11770,11792,11871,11929,11995,11998,12004,12025,12038,12039,12044,12046,12048,12050,12053,12054,12055,12059,12060,12068,12094,12212,12220,12221,12228,12416,12436,12437,12442,12443,12447,12450,12451,12452,12455,12457,12489,12512,12596,12600,12602,12703,12826,12864,20277,20304,20539,20620,20656,21490,21498,21502,21506,21507,21510,21513,21526,21528,21530,21536,21555,21631,21633,21635,21636,21642,21710,21711,21712,21715,21717,21722,21723,22028,22871,22938]]]]},{"k":"H6243","v":[["twenty",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21906]]]]},{"k":"H6244","v":[["consumed",[3,3,[[18,3,3,0,3,[[483,1,1,0,1],[508,2,2,1,3]]]],[13992,14340,14341]]]]},{"k":"H6245","v":[["*",[2,2,[[23,1,1,0,1,[[749,1,1,0,1]]],[31,1,1,1,2,[[889,1,1,1,2]]]],[19086,22537]]],["shine",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19086]]],["think",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22537]]]]},{"k":"H6246","v":[["thought",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21908]]]]},{"k":"H6247","v":[["bright",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17612]]]]},{"k":"H6248","v":[["thought",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13133]]]]},{"k":"H6249","v":[["+",[19,18,[[1,4,4,0,4,[[75,2,2,0,2],[85,2,2,2,4]]],[3,2,2,4,6,[[123,1,1,4,5],[145,1,1,5,6]]],[4,1,1,6,7,[[153,1,1,6,7]]],[11,1,1,7,8,[[337,1,1,7,8]]],[12,5,4,8,12,[[349,1,1,8,9],[361,1,1,9,10],[362,1,1,10,11],[364,2,1,11,12]]],[23,3,3,12,15,[[745,1,1,12,13],[783,1,1,13,14],[796,1,1,14,15]]],[25,2,2,15,17,[[827,1,1,15,16],[841,1,1,16,17]]],[37,1,1,17,18,[[911,1,1,17,18]]]],[2242,2243,2580,2581,3922,4628,4895,10224,10733,11027,11064,11123,18949,19925,20281,21101,21526,22885]]]]},{"k":"H6250","v":[["thoughts",[1,1,[[18,1,1,0,1,[[623,1,1,0,1]]]],[16345]]]]},{"k":"H6251","v":[["flocks",[4,4,[[4,4,4,0,4,[[159,1,1,0,1],[180,3,3,1,4]]]],[5124,5615,5629,5662]]]]},{"k":"H6252","v":[["*",[12,12,[[4,1,1,0,1,[[153,1,1,0,1]]],[5,4,4,1,5,[[195,1,1,1,2],[198,1,1,2,3],[199,2,2,3,5]]],[6,2,2,5,7,[[212,1,1,5,6],[220,1,1,6,7]]],[8,4,4,7,11,[[242,2,2,7,9],[247,1,1,9,10],[266,1,1,10,11]]],[12,1,1,11,12,[[343,1,1,11,12]]]],[4896,6047,6134,6166,6185,6558,6817,7355,7356,7470,8019,10525]]],["Ashtaroth",[11,11,[[5,4,4,0,4,[[195,1,1,0,1],[198,1,1,1,2],[199,2,2,2,4]]],[6,2,2,4,6,[[212,1,1,4,5],[220,1,1,5,6]]],[8,4,4,6,10,[[242,2,2,6,8],[247,1,1,8,9],[266,1,1,9,10]]],[12,1,1,10,11,[[343,1,1,10,11]]]],[6047,6134,6166,6185,6558,6817,7355,7356,7470,8019,10525]]],["Astaroth",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4896]]]]},{"k":"H6253","v":[["Ashtoreth",[3,3,[[10,2,2,0,2,[[301,2,2,0,2]]],[11,1,1,2,3,[[335,1,1,2,3]]]],[9113,9141,10178]]]]},{"k":"H6254","v":[["Ashterathite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10717]]]]},{"k":"H6255","v":[["Karnaim",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[341]]]]},{"k":"H6256","v":[["*",[296,258,[[0,10,9,0,9,[[7,1,1,0,1],[17,2,2,1,3],[20,1,1,3,4],[23,2,1,4,5],[28,1,1,5,6],[30,1,1,6,7],[37,2,2,7,9]]],[1,3,3,9,12,[[58,1,1,9,10],[67,2,2,10,12]]],[2,3,3,12,15,[[104,1,1,12,13],[105,1,1,13,14],[115,1,1,14,15]]],[3,2,2,15,17,[[138,1,1,15,16],[139,1,1,16,17]]],[4,18,18,17,35,[[153,3,3,17,20],[154,1,1,20,21],[155,6,6,21,27],[156,1,1,27,28],[157,1,1,28,29],[161,1,1,29,30],[162,2,2,30,32],[163,1,1,32,33],[180,1,1,33,34],[184,1,1,34,35]]],[5,7,7,35,42,[[191,1,1,35,36],[192,1,1,36,37],[194,1,1,37,38],[196,1,1,38,39],[197,3,3,39,42]]],[6,10,10,42,52,[[213,1,1,42,43],[214,1,1,43,44],[220,1,1,44,45],[221,1,1,45,46],[222,1,1,46,47],[223,1,1,47,48],[224,1,1,48,49],[231,3,3,49,52]]],[7,1,1,52,53,[[233,1,1,52,53]]],[8,4,4,53,57,[[239,1,1,53,54],[244,1,1,54,55],[253,1,1,55,56],[255,1,1,56,57]]],[9,3,3,57,60,[[277,2,2,57,59],[290,1,1,59,60]]],[10,7,7,60,67,[[298,1,1,60,61],[301,2,2,61,63],[304,1,1,63,64],[305,1,1,64,65],[309,1,1,65,66],[310,1,1,66,67]]],[11,11,11,67,78,[[316,2,2,67,69],[317,1,1,69,70],[319,2,2,70,72],[320,1,1,72,73],[322,1,1,73,74],[328,1,1,74,75],[330,1,1,75,76],[332,1,1,76,77],[336,1,1,77,78]]],[12,9,7,78,85,[[346,2,1,78,79],[349,2,2,79,81],[357,2,1,81,82],[358,2,2,82,84],[366,1,1,84,85]]],[13,16,16,85,101,[[373,1,1,85,86],[379,1,1,86,87],[381,1,1,87,88],[382,2,2,88,90],[384,1,1,90,91],[386,1,1,91,92],[387,2,2,92,94],[390,1,1,94,95],[391,1,1,95,96],[394,2,2,96,98],[395,1,1,98,99],[396,1,1,99,100],[401,1,1,100,101]]],[14,3,3,101,104,[[410,1,1,101,102],[412,2,2,102,104]]],[15,7,7,104,111,[[416,1,1,104,105],[418,1,1,105,106],[421,2,2,106,108],[422,1,1,108,109],[425,2,2,109,111]]],[16,5,4,111,115,[[426,1,1,111,112],[429,2,1,112,113],[430,1,1,113,114],[433,1,1,114,115]]],[17,10,10,115,125,[[440,1,1,115,116],[441,1,1,116,117],[457,1,1,117,118],[459,1,1,118,119],[462,1,1,119,120],[473,2,2,120,122],[474,3,3,122,125]]],[18,22,22,125,147,[[478,1,1,125,126],[481,1,1,126,127],[486,1,1,127,128],[487,2,2,128,130],[498,1,1,130,131],[508,1,1,131,132],[509,1,1,132,133],[511,1,1,133,134],[514,2,2,134,136],[539,1,1,136,137],[546,1,1,137,138],[548,1,1,138,139],[558,1,1,139,140],[579,1,1,140,141],[581,1,1,141,142],[582,1,1,142,143],[583,1,1,143,144],[596,2,2,144,146],[622,1,1,146,147]]],[19,5,5,147,152,[[632,1,1,147,148],[633,1,1,148,149],[635,1,1,149,150],[642,1,1,150,151],[644,1,1,151,152]]],[20,40,18,152,170,[[661,31,10,152,162],[665,1,1,162,163],[666,3,3,163,166],[667,4,3,166,169],[668,1,1,169,170]]],[21,1,1,170,171,[[672,1,1,170,171]]],[22,11,11,171,182,[[687,1,1,171,172],[691,1,1,172,173],[695,1,1,173,174],[696,1,1,174,175],[698,1,1,175,176],[711,2,2,176,178],[717,1,1,178,179],[726,1,1,179,180],[727,1,1,180,181],[738,1,1,181,182]]],[23,36,34,182,216,[[746,3,3,182,185],[747,1,1,185,186],[748,1,1,186,187],[749,1,1,187,188],[750,1,1,188,189],[752,4,4,189,193],[754,1,1,193,194],[755,2,2,194,196],[758,2,2,196,198],[759,2,1,198,199],[762,1,1,199,200],[764,1,1,200,201],[771,1,1,201,202],[774,1,1,202,203],[775,1,1,203,204],[777,2,2,204,206],[790,1,1,206,207],[793,1,1,207,208],[794,5,5,208,213],[795,4,3,213,216]]],[25,18,14,216,230,[[805,4,2,216,218],[808,2,2,218,220],[813,1,1,220,221],[817,3,2,221,223],[822,2,2,223,225],[823,1,1,225,226],[828,1,1,226,227],[831,1,1,227,228],[835,1,1,228,229],[836,2,1,229,230]]],[26,16,13,230,243,[[857,1,1,230,231],[858,2,2,231,233],[860,6,6,233,239],[861,7,4,239,243]]],[27,3,3,243,246,[[863,1,1,243,244],[871,1,1,244,245],[874,1,1,245,246]]],[28,1,1,246,247,[[878,1,1,246,247]]],[29,2,1,247,248,[[883,2,1,247,248]]],[32,3,3,248,251,[[894,1,1,248,249],[895,1,1,249,250],[897,1,1,250,251]]],[35,4,3,251,254,[[906,1,1,251,252],[908,3,2,252,254]]],[36,3,2,254,256,[[909,3,2,254,256]]],[37,2,2,256,258,[[920,1,1,256,257],[924,1,1,257,258]]]],[194,434,438,535,602,802,883,1120,1146,1760,2021,2025,3193,3203,3528,4379,4439,4901,4908,4910,4972,4979,4983,4987,4993,4996,4998,5018,5058,5177,5187,5194,5222,5623,5793,5936,5975,6031,6091,6113,6117,6128,6597,6603,6825,6855,6875,6907,6913,7116,7124,7126,7163,7317,7407,7695,7742,8260,8261,8707,9050,9112,9137,9219,9272,9389,9414,9619,9620,9673,9708,9725,9749,9799,9969,10040,10110,10212,10640,10742,10752,10927,10962,10963,11194,11332,11471,11495,11516,11519,11576,11609,11634,11643,11688,11731,11780,11786,11818,11830,11983,12235,12265,12266,12381,12402,12538,12539,12583,12692,12702,12715,12776,12792,12826,12977,12995,13405,13437,13491,13816,13825,13835,13836,13852,13942,13972,14030,14042,14046,14200,14346,14361,14389,14469,14489,14835,14948,14985,15232,15534,15598,15625,15654,15918,16024,16335,16536,16554,16632,16830,16890,17360,17361,17362,17363,17364,17365,17366,17367,17370,17376,17446,17463,17464,17467,17483,17486,17487,17510,17566,17830,17928,17997,18004,18031,18281,18285,18413,18630,18644,18843,18982,18992,18993,19019,19038,19082,19104,19154,19160,19165,19168,19216,19238,19240,19301,19312,19326,19407,19438,19603,19674,19692,19790,19795,20066,20135,20170,20182,20186,20193,20197,20218,20230,20245,20539,20540,20584,20589,20707,20770,20819,20969,20973,20979,21155,21207,21339,21349,21978,22009,22013,22042,22049,22050,22060,22071,22076,22082,22085,22090,22092,22114,22237,22279,22344,22436,22598,22612,22636,22799,22839,22840,22842,22844,23017,23075]]],["+",[21,21,[[4,1,1,0,1,[[153,1,1,0,1]]],[5,1,1,1,2,[[194,1,1,1,2]]],[7,1,1,2,3,[[233,1,1,2,3]]],[9,1,1,3,4,[[277,1,1,3,4]]],[12,1,1,4,5,[[346,1,1,4,5]]],[13,3,3,5,8,[[387,1,1,5,6],[390,1,1,6,7],[391,1,1,7,8]]],[16,1,1,8,9,[[430,1,1,8,9]]],[17,1,1,9,10,[[462,1,1,9,10]]],[18,2,2,10,12,[[481,1,1,10,11],[487,1,1,11,12]]],[19,2,2,12,14,[[633,1,1,12,13],[635,1,1,13,14]]],[20,1,1,14,15,[[667,1,1,14,15]]],[22,2,2,15,17,[[695,1,1,15,16],[726,1,1,16,17]]],[23,1,1,17,18,[[764,1,1,17,18]]],[25,2,2,18,20,[[805,2,2,18,20]]],[26,1,1,20,21,[[861,1,1,20,21]]]],[4910,6031,7163,8261,10640,11643,11688,11731,12792,13491,13972,14046,16554,16632,17483,17997,18630,19438,20539,20540,22092]]],["after",[1,1,[[12,1,1,0,1,[[357,1,1,0,1]]]],[10927]]],["certain",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22049]]],["in",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[194]]],["long",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22279]]],["season",[14,14,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,2,2,1,3,[[163,1,1,1,2],[180,1,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[17,2,2,4,6,[[440,1,1,4,5],[473,1,1,5,6]]],[18,3,3,6,9,[[478,1,1,6,7],[581,1,1,7,8],[622,1,1,8,9]]],[19,1,1,9,10,[[642,1,1,9,10]]],[20,1,1,10,11,[[668,1,1,10,11]]],[23,2,2,11,13,[[749,1,1,11,12],[777,1,1,12,13]]],[25,1,1,13,14,[[835,1,1,13,14]]]],[3528,5222,5623,10963,12977,13825,13942,15598,16335,16830,17510,19082,19795,21339]]],["seasons",[2,2,[[1,2,2,0,2,[[67,2,2,0,2]]]],[2021,2025]]],["time",[224,190,[[0,9,8,0,8,[[17,2,2,0,2],[20,1,1,2,3],[23,2,1,3,4],[28,1,1,4,5],[30,1,1,5,6],[37,2,2,6,8]]],[1,1,1,8,9,[[58,1,1,8,9]]],[2,1,1,9,10,[[104,1,1,9,10]]],[3,2,2,10,12,[[138,1,1,10,11],[139,1,1,11,12]]],[4,15,15,12,27,[[153,2,2,12,14],[154,1,1,14,15],[155,6,6,15,21],[156,1,1,21,22],[157,1,1,22,23],[161,1,1,23,24],[162,2,2,24,26],[184,1,1,26,27]]],[5,6,6,27,33,[[191,1,1,27,28],[192,1,1,28,29],[196,1,1,29,30],[197,3,3,30,33]]],[6,10,10,33,43,[[213,1,1,33,34],[214,1,1,34,35],[220,1,1,35,36],[221,1,1,36,37],[222,1,1,37,38],[223,1,1,38,39],[224,1,1,39,40],[231,3,3,40,43]]],[8,4,4,43,47,[[239,1,1,43,44],[244,1,1,44,45],[253,1,1,45,46],[255,1,1,46,47]]],[9,2,2,47,49,[[277,1,1,47,48],[290,1,1,48,49]]],[10,6,6,49,55,[[298,1,1,49,50],[301,1,1,50,51],[304,1,1,51,52],[305,1,1,52,53],[309,1,1,53,54],[310,1,1,54,55]]],[11,11,11,55,66,[[316,2,2,55,57],[317,1,1,57,58],[319,2,2,58,60],[320,1,1,60,61],[322,1,1,61,62],[328,1,1,62,63],[330,1,1,63,64],[332,1,1,64,65],[336,1,1,65,66]]],[12,4,4,66,70,[[346,1,1,66,67],[349,1,1,67,68],[357,1,1,68,69],[358,1,1,69,70]]],[13,10,10,70,80,[[373,1,1,70,71],[379,1,1,71,72],[382,2,2,72,74],[384,1,1,74,75],[387,1,1,75,76],[394,2,2,76,78],[396,1,1,78,79],[401,1,1,79,80]]],[14,2,2,80,82,[[410,1,1,80,81],[412,1,1,81,82]]],[15,4,4,82,86,[[416,1,1,82,83],[418,1,1,83,84],[421,1,1,84,85],[425,1,1,85,86]]],[16,3,2,86,88,[[429,2,1,86,87],[433,1,1,87,88]]],[17,6,6,88,94,[[441,1,1,88,89],[457,1,1,89,90],[473,1,1,90,91],[474,3,3,91,94]]],[18,10,10,94,104,[[498,1,1,94,95],[509,1,1,95,96],[514,2,2,96,98],[546,1,1,98,99],[548,1,1,99,100],[558,1,1,100,101],[579,1,1,101,102],[582,1,1,102,103],[596,1,1,103,104]]],[20,38,16,104,120,[[661,31,10,104,114],[665,1,1,114,115],[666,3,3,115,118],[667,3,2,118,120]]],[21,1,1,120,121,[[672,1,1,120,121]]],[22,7,7,121,128,[[691,1,1,121,122],[696,1,1,122,123],[698,1,1,123,124],[711,1,1,124,125],[717,1,1,125,126],[727,1,1,126,127],[738,1,1,127,128]]],[23,32,30,128,158,[[746,2,2,128,130],[747,1,1,130,131],[748,1,1,131,132],[750,1,1,132,133],[752,4,4,133,137],[754,1,1,137,138],[755,2,2,138,140],[758,2,2,140,142],[759,2,1,142,143],[762,1,1,143,144],[771,1,1,144,145],[774,1,1,145,146],[775,1,1,146,147],[777,1,1,147,148],[790,1,1,148,149],[793,1,1,149,150],[794,5,5,150,155],[795,4,3,155,158]]],[25,12,10,158,168,[[805,2,2,158,160],[808,2,2,160,162],[817,3,2,162,164],[823,1,1,164,165],[828,1,1,165,166],[831,1,1,166,167],[836,2,1,167,168]]],[26,11,8,168,176,[[857,1,1,168,169],[858,1,1,169,170],[860,3,3,170,173],[861,6,3,173,176]]],[27,2,2,176,178,[[863,1,1,176,177],[871,1,1,177,178]]],[28,1,1,178,179,[[878,1,1,178,179]]],[29,2,1,179,180,[[883,2,1,179,180]]],[32,3,3,180,183,[[894,1,1,180,181],[895,1,1,181,182],[897,1,1,182,183]]],[35,4,3,183,186,[[906,1,1,183,184],[908,3,2,184,186]]],[36,3,2,186,188,[[909,3,2,186,188]]],[37,2,2,188,190,[[920,1,1,188,189],[924,1,1,189,190]]]],[434,438,535,602,802,883,1120,1146,1760,3193,4379,4439,4901,4908,4972,4979,4983,4987,4993,4996,4998,5018,5058,5177,5187,5194,5793,5936,5975,6091,6113,6117,6128,6597,6603,6825,6855,6875,6907,6913,7116,7124,7126,7317,7407,7695,7742,8260,8707,9050,9137,9219,9272,9389,9414,9619,9620,9673,9708,9725,9749,9799,9969,10040,10110,10212,10640,10742,10927,10962,11332,11471,11516,11519,11576,11634,11780,11786,11830,11983,12235,12265,12381,12402,12538,12692,12776,12826,12995,13405,13816,13835,13836,13852,14200,14361,14469,14489,14948,14985,15232,15534,15625,16024,17360,17361,17362,17363,17364,17365,17366,17367,17370,17376,17446,17463,17464,17467,17486,17487,17566,17928,18004,18031,18281,18413,18644,18843,18992,18993,19019,19038,19104,19154,19160,19165,19168,19216,19238,19240,19301,19312,19326,19407,19603,19674,19692,19790,20066,20135,20170,20182,20186,20193,20197,20218,20230,20245,20539,20540,20584,20589,20770,20819,20979,21155,21207,21349,21978,22009,22060,22071,22076,22082,22085,22090,22114,22237,22344,22436,22598,22612,22636,22799,22839,22840,22842,22844,23017,23075]]],["times",[24,24,[[2,1,1,0,1,[[105,1,1,0,1]]],[12,2,2,1,3,[[349,1,1,1,2],[366,1,1,2,3]]],[13,1,1,3,4,[[381,1,1,3,4]]],[14,1,1,4,5,[[412,1,1,4,5]]],[15,3,3,5,8,[[421,1,1,5,6],[422,1,1,6,7],[425,1,1,7,8]]],[16,1,1,8,9,[[426,1,1,8,9]]],[17,1,1,9,10,[[459,1,1,9,10]]],[18,7,7,10,17,[[486,1,1,10,11],[487,1,1,11,12],[508,1,1,12,13],[511,1,1,13,14],[539,1,1,14,15],[583,1,1,15,16],[596,1,1,16,17]]],[19,2,2,17,19,[[632,1,1,17,18],[644,1,1,18,19]]],[22,1,1,19,20,[[711,1,1,19,20]]],[25,1,1,20,21,[[813,1,1,20,21]]],[26,3,3,21,24,[[858,1,1,21,22],[860,2,2,22,24]]]],[3203,10752,11194,11495,12266,12539,12583,12702,12715,13437,14030,14042,14346,14389,14835,15654,15918,16536,16890,18285,20707,22013,22042,22050]]],["when",[7,7,[[10,1,1,0,1,[[301,1,1,0,1]]],[13,2,2,1,3,[[386,1,1,1,2],[395,1,1,2,3]]],[22,1,1,3,4,[[687,1,1,3,4]]],[23,1,1,4,5,[[746,1,1,4,5]]],[25,2,2,5,7,[[822,2,2,5,7]]]],[9112,11609,11818,17830,18982,20969,20973]]]]},{"k":"H6257","v":[["*",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[19,1,1,1,2,[[651,1,1,1,2]]]],[13231,17106]]],["fit",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17106]]],["ready",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13231]]]]},{"k":"H6258","v":[["*",[433,422,[[0,40,40,0,40,[[2,1,1,0,1],[3,1,1,1,2],[10,1,1,2,3],[11,1,1,3,4],[18,1,1,4,5],[19,1,1,5,6],[20,1,1,6,7],[21,1,1,7,8],[23,1,1,8,9],[25,2,2,9,11],[26,4,4,11,15],[28,2,2,15,17],[29,1,1,17,18],[30,6,6,18,24],[31,2,2,24,26],[36,1,1,26,27],[40,1,1,27,28],[42,1,1,28,29],[43,3,3,29,32],[44,2,2,32,34],[45,1,1,34,35],[46,1,1,35,36],[47,1,1,36,37],[49,3,3,37,40]]],[1,20,20,40,60,[[52,3,3,40,43],[53,1,1,43,44],[54,2,2,44,46],[55,1,1,46,47],[58,3,3,47,50],[59,1,1,50,51],[67,2,2,51,53],[68,1,1,53,54],[81,4,4,54,58],[82,2,2,58,60]]],[3,15,15,60,75,[[127,2,2,60,62],[130,1,1,62,63],[138,8,8,63,71],[140,3,3,71,74],[147,1,1,74,75]]],[4,9,9,75,84,[[154,1,1,75,76],[156,1,1,76,77],[157,1,1,77,78],[162,2,2,78,80],[164,1,1,80,81],[178,1,1,81,82],[183,1,1,82,83],[184,1,1,83,84]]],[5,19,17,84,101,[[187,1,1,84,85],[188,1,1,85,86],[189,1,1,86,87],[191,1,1,87,88],[195,6,6,88,94],[199,1,1,94,95],[200,4,3,95,98],[208,2,1,98,99],[210,2,2,99,101]]],[6,24,24,101,125,[[216,1,1,101,102],[217,1,1,102,103],[218,3,3,103,106],[219,3,3,106,109],[221,5,5,109,114],[223,3,3,114,117],[224,1,1,117,118],[225,1,1,118,119],[226,1,1,119,120],[227,2,2,120,122],[228,1,1,122,123],[230,2,2,123,125]]],[7,4,4,125,129,[[233,1,1,125,126],[234,3,3,126,129]]],[8,46,44,129,173,[[236,1,1,129,130],[237,2,2,130,132],[241,1,1,132,133],[243,2,2,133,135],[244,2,2,135,137],[245,1,1,137,138],[247,5,5,138,143],[248,3,3,143,146],[249,1,1,146,147],[250,4,4,147,151],[252,1,1,151,152],[253,1,1,152,153],[254,1,1,153,154],[255,2,2,154,156],[256,1,1,156,157],[258,1,1,157,158],[259,2,2,158,160],[260,6,4,160,164],[261,5,5,164,169],[262,1,1,169,170],[263,1,1,170,171],[264,2,2,171,173]]],[9,30,28,173,201,[[268,2,2,173,175],[269,1,1,175,176],[270,1,1,176,177],[273,4,4,177,181],[278,3,3,181,184],[279,3,3,184,187],[280,2,2,187,189],[281,1,1,189,190],[282,1,1,190,191],[283,2,2,191,193],[284,2,1,193,194],[285,4,3,194,197],[286,1,1,197,198],[290,3,3,198,201]]],[10,23,22,201,223,[[291,3,2,201,203],[292,3,3,203,206],[293,1,1,206,207],[295,2,2,207,209],[298,2,2,209,211],[302,4,4,211,215],[304,1,1,215,216],[307,1,1,216,217],[308,3,3,217,220],[309,1,1,220,221],[311,1,1,221,222],[312,1,1,222,223]]],[11,22,22,223,245,[[313,1,1,223,224],[315,2,2,224,226],[316,1,1,226,227],[317,3,3,227,230],[319,2,2,230,232],[320,1,1,232,233],[321,1,1,233,234],[322,2,2,234,236],[324,1,1,236,237],[325,2,2,237,239],[330,4,4,239,243],[331,2,2,243,245]]],[12,13,13,245,258,[[354,4,4,245,249],[358,3,3,249,252],[359,2,2,252,254],[365,2,2,254,256],[366,2,2,256,258]]],[13,29,29,258,287,[[367,2,2,258,260],[368,3,3,260,263],[372,4,4,263,267],[373,2,2,267,269],[376,3,3,269,272],[379,1,1,272,273],[382,1,1,273,274],[384,1,1,274,275],[385,1,1,275,276],[386,1,1,276,277],[391,1,1,277,278],[394,2,2,278,280],[395,4,4,280,284],[396,1,1,284,285],[398,1,1,285,286],[401,1,1,286,287]]],[14,6,6,287,293,[[411,3,3,287,290],[412,3,3,290,293]]],[15,5,4,293,297,[[417,1,1,293,294],[418,3,2,294,296],[421,1,1,296,297]]],[17,18,18,297,315,[[438,1,1,297,298],[439,1,1,298,299],[441,3,3,299,302],[442,1,1,302,303],[443,1,1,303,304],[448,1,1,304,305],[449,1,1,305,306],[451,2,2,306,308],[465,3,3,308,311],[470,1,1,311,312],[472,1,1,312,313],[477,2,2,313,315]]],[18,13,13,315,328,[[479,1,1,315,316],[489,1,1,316,317],[494,1,1,317,318],[497,1,1,318,319],[504,1,1,319,320],[516,1,1,320,321],[551,1,1,321,322],[590,1,1,322,323],[592,1,1,323,324],[596,1,1,324,325],[598,1,1,325,326],[602,1,1,326,327],[608,1,1,327,328]]],[19,3,3,328,331,[[632,1,1,328,329],[634,1,1,329,330],[635,1,1,330,331]]],[22,29,26,331,357,[[679,1,1,331,332],[683,2,2,332,334],[687,1,1,334,335],[694,1,1,335,336],[706,1,1,336,337],[707,2,1,337,338],[708,1,1,338,339],[711,3,1,339,340],[714,3,3,340,343],[715,2,2,343,345],[721,2,2,345,347],[722,1,1,347,348],[725,1,1,348,349],[726,3,3,349,352],[727,2,2,352,354],[730,1,1,354,355],[737,1,1,355,356],[742,1,1,356,357]]],[23,16,16,357,373,[[746,1,1,357,358],[747,1,1,358,359],[748,1,1,359,360],[751,1,1,360,361],[758,1,1,361,362],[762,1,1,362,363],[770,1,1,363,364],[771,2,2,364,366],[773,1,1,366,367],[776,1,1,367,368],[781,1,1,368,369],[784,1,1,369,370],[786,2,2,370,372],[788,1,1,372,373]]],[25,8,8,373,381,[[805,1,1,373,374],[808,2,2,374,376],[820,1,1,376,377],[824,1,1,377,378],[827,1,1,378,379],[840,1,1,379,380],[844,1,1,380,381]]],[26,7,7,381,388,[[858,3,3,381,384],[859,3,3,384,387],[860,1,1,387,388]]],[27,12,12,388,400,[[863,2,2,388,390],[865,1,1,390,391],[866,2,2,391,393],[868,1,1,393,394],[869,3,3,394,397],[871,2,2,397,399],[874,1,1,399,400]]],[28,1,1,400,401,[[877,1,1,400,401]]],[29,2,2,401,403,[[884,1,1,401,402],[885,1,1,402,403]]],[31,1,1,403,404,[[892,1,1,403,404]]],[32,8,8,404,412,[[896,4,4,404,408],[897,2,2,408,410],[899,2,2,410,412]]],[33,1,1,412,413,[[900,1,1,412,413]]],[36,4,4,413,417,[[909,1,1,413,414],[910,3,3,414,417]]],[37,2,2,417,419,[[918,1,1,417,418],[919,1,1,418,419]]],[38,3,3,419,422,[[925,1,1,419,420],[926,1,1,420,421],[927,1,1,421,422]]]],[77,90,272,317,466,502,536,559,640,714,721,730,735,763,770,827,829,860,886,889,901,903,915,917,932,938,1103,1228,1300,1334,1354,1357,1363,1366,1420,1424,1456,1511,1523,1527,1588,1589,1597,1613,1637,1650,1656,1757,1760,1761,1794,2010,2018,2031,2448,2468,2470,2472,2478,2486,4030,4047,4125,4379,4381,4386,4394,4404,4408,4409,4413,4457,4460,4463,4681,4951,5005,5078,5198,5208,5249,5576,5747,5797,5853,5881,5905,5948,6043,6048,6049,6056,6060,6062,6161,6197,6198,6199,6430,6490,6499,6667,6697,6721,6725,6734,6770,6786,6792,6836,6837,6842,6852,6854,6888,6891,6896,6911,6947,6959,6983,6993,7007,7063,7067,7156,7174,7183,7184,7228,7256,7270,7338,7374,7378,7403,7404,7437,7462,7467,7470,7473,7476,7497,7498,7499,7538,7561,7563,7585,7590,7647,7698,7708,7759,7761,7775,7830,7859,7860,7868,7878,7887,7888,7913,7916,7921,7924,7925,7931,7964,7974,7977,8055,8056,8099,8131,8188,8205,8208,8209,8296,8309,8314,8330,8337,8350,8371,8388,8423,8437,8458,8465,8481,8518,8520,8521,8560,8702,8705,8708,8729,8735,8779,8786,8794,8823,8882,8884,9010,9011,9155,9162,9167,9177,9232,9341,9352,9355,9360,9391,9458,9503,9547,9591,9599,9629,9653,9662,9669,9711,9716,9733,9782,9795,9812,9857,9890,9894,10044,10045,10047,10049,10080,10086,10870,10886,10889,10890,10942,10946,10949,10975,10983,11151,11153,11177,11181,11203,11204,11218,11224,11226,11298,11299,11322,11323,11339,11340,11399,11406,11411,11461,11518,11564,11583,11597,11723,11774,11775,11796,11801,11802,11822,11835,11890,11969,12245,12247,12249,12254,12255,12263,12387,12408,12410,12543,12917,12935,12981,12999,13006,13029,13035,13172,13197,13245,13257,13558,13566,13573,13735,13790,13927,13930,13955,14071,14114,14188,14291,14519,15054,15815,15848,15965,16089,16112,16151,16524,16599,16634,17675,17742,17744,17836,17983,18186,18215,18225,18289,18335,18338,18340,18372,18378,18506,18524,18534,18607,18620,18621,18630,18641,18655,18701,18821,18893,18983,19006,19039,19132,19303,19395,19585,19602,19612,19662,19767,19894,19945,19990,19997,20017,20543,20580,20585,20894,21050,21118,21473,21581,22003,22005,22010,22026,22032,22035,22038,22112,22115,22149,22155,22159,22180,22202,22204,22207,22227,22228,22268,22323,22457,22480,22571,22627,22629,22630,22631,22634,22637,22668,22674,22697,22845,22858,22859,22870,22987,23007,23098,23104,23135]]],["+",[20,20,[[4,1,1,0,1,[[164,1,1,0,1]]],[7,1,1,1,2,[[234,1,1,1,2]]],[8,2,2,2,4,[[236,1,1,2,3],[261,1,1,3,4]]],[11,1,1,4,5,[[317,1,1,4,5]]],[13,3,3,5,8,[[382,1,1,5,6],[395,1,1,6,7],[401,1,1,7,8]]],[18,5,5,8,13,[[590,1,1,8,9],[592,1,1,9,10],[598,1,1,10,11],[602,1,1,11,12],[608,1,1,12,13]]],[22,3,3,13,16,[[687,1,1,13,14],[726,1,1,14,15],[737,1,1,15,16]]],[23,1,1,16,17,[[747,1,1,16,17]]],[26,1,1,17,18,[[859,1,1,17,18]]],[27,1,1,18,19,[[863,1,1,18,19]]],[32,1,1,19,20,[[896,1,1,19,20]]]],[5249,7184,7228,7916,9669,11518,11796,11969,15815,15848,16089,16112,16151,17836,18620,18821,19006,22032,22112,22627]]],["Now",[134,134,[[0,14,14,0,14,[[19,1,1,0,1],[20,1,1,1,2],[26,3,3,2,5],[28,1,1,5,6],[30,1,1,6,7],[40,1,1,7,8],[43,3,3,8,11],[44,1,1,11,12],[49,2,2,12,14]]],[1,8,8,14,22,[[52,1,1,14,15],[53,1,1,15,16],[55,1,1,16,17],[59,1,1,17,18],[67,1,1,18,19],[68,1,1,19,20],[81,1,1,20,21],[82,1,1,21,22]]],[3,3,3,22,25,[[138,2,2,22,24],[147,1,1,24,25]]],[4,4,4,25,29,[[154,1,1,25,26],[156,1,1,26,27],[157,1,1,27,28],[183,1,1,28,29]]],[5,6,6,29,35,[[188,1,1,29,30],[189,1,1,30,31],[195,1,1,31,32],[199,1,1,32,33],[200,1,1,33,34],[210,1,1,34,35]]],[6,7,7,35,42,[[217,1,1,35,36],[219,2,2,36,38],[223,2,2,38,40],[227,1,1,40,41],[230,1,1,41,42]]],[8,16,16,42,58,[[241,1,1,42,43],[243,1,1,43,44],[244,1,1,44,45],[245,1,1,45,46],[247,3,3,46,49],[250,2,2,49,51],[256,1,1,51,52],[258,1,1,52,53],[260,2,2,53,55],[261,2,2,55,57],[263,1,1,57,58]]],[9,11,11,58,69,[[269,1,1,58,59],[273,1,1,59,60],[278,2,2,60,62],[279,2,2,62,64],[280,1,1,64,65],[283,1,1,65,66],[285,2,2,66,68],[286,1,1,68,69]]],[10,8,8,69,77,[[291,1,1,69,70],[292,2,2,70,72],[295,1,1,72,73],[302,1,1,73,74],[307,1,1,74,75],[308,1,1,75,76],[312,1,1,76,77]]],[11,9,9,77,86,[[317,1,1,77,78],[319,1,1,78,79],[321,1,1,79,80],[322,2,2,80,82],[330,3,3,82,85],[331,1,1,85,86]]],[12,7,7,86,93,[[354,2,2,86,88],[358,1,1,88,89],[359,2,2,89,91],[365,1,1,91,92],[366,1,1,92,93]]],[13,13,13,93,106,[[367,1,1,93,94],[368,1,1,94,95],[372,4,4,95,99],[373,1,1,99,100],[384,1,1,100,101],[394,1,1,101,102],[395,2,2,102,104],[396,1,1,104,105],[398,1,1,105,106]]],[14,3,3,106,109,[[411,1,1,106,107],[412,2,2,107,109]]],[15,2,2,109,111,[[418,1,1,109,110],[421,1,1,110,111]]],[17,1,1,111,112,[[441,1,1,111,112]]],[18,1,1,112,113,[[497,1,1,112,113]]],[19,1,1,113,114,[[635,1,1,113,114]]],[22,6,6,114,120,[[706,1,1,114,115],[708,1,1,115,116],[711,1,1,116,117],[714,1,1,117,118],[715,1,1,118,119],[730,1,1,119,120]]],[23,3,3,120,123,[[762,1,1,120,121],[773,1,1,121,122],[786,1,1,122,123]]],[25,5,5,123,128,[[808,2,2,123,125],[827,1,1,125,126],[840,1,1,126,127],[844,1,1,127,128]]],[26,1,1,128,129,[[858,1,1,128,129]]],[29,1,1,129,130,[[885,1,1,129,130]]],[32,3,3,130,133,[[896,2,2,130,132],[897,1,1,132,133]]],[36,1,1,133,134,[[909,1,1,133,134]]]],[502,536,730,735,770,829,917,1228,1334,1354,1357,1363,1511,1527,1588,1613,1656,1794,2010,2031,2448,2486,4379,4394,4681,4951,5005,5078,5747,5881,5905,6060,6161,6199,6499,6697,6770,6786,6888,6896,6993,7067,7338,7378,7404,7437,7467,7473,7476,7563,7585,7775,7830,7878,7887,7924,7925,7964,8099,8188,8296,8314,8330,8350,8371,8465,8518,8521,8560,8729,8779,8794,8884,9177,9341,9360,9503,9653,9711,9782,9795,9812,10044,10045,10047,10080,10870,10890,10946,10975,10983,11151,11177,11203,11226,11298,11299,11322,11323,11339,11564,11775,11801,11822,11835,11890,12249,12255,12263,12410,12543,13006,14188,16634,18186,18225,18289,18338,18372,18701,19395,19662,19997,20580,20585,21118,21473,21581,22005,22480,22629,22631,22634,22845]]],["now",[275,267,[[0,25,25,0,25,[[2,1,1,0,1],[3,1,1,1,2],[10,1,1,2,3],[18,1,1,3,4],[21,1,1,4,5],[23,1,1,5,6],[25,2,2,6,8],[26,1,1,8,9],[28,1,1,9,10],[29,1,1,10,11],[30,5,5,11,16],[31,2,2,16,18],[36,1,1,18,19],[42,1,1,19,20],[44,1,1,20,21],[45,1,1,21,22],[46,1,1,22,23],[47,1,1,23,24],[49,1,1,24,25]]],[1,12,12,25,37,[[52,2,2,25,27],[54,2,2,27,29],[58,3,3,29,32],[67,1,1,32,33],[81,3,3,33,36],[82,1,1,36,37]]],[3,12,12,37,49,[[127,2,2,37,39],[130,1,1,39,40],[138,6,6,40,46],[140,3,3,46,49]]],[4,4,4,49,53,[[162,2,2,49,51],[178,1,1,51,52],[184,1,1,52,53]]],[5,12,10,53,63,[[187,1,1,53,54],[191,1,1,54,55],[195,5,5,55,60],[200,3,2,60,62],[208,2,1,62,63]]],[6,17,17,63,80,[[216,1,1,63,64],[218,3,3,64,67],[219,1,1,67,68],[221,5,5,68,73],[223,1,1,73,74],[224,1,1,74,75],[225,1,1,75,76],[226,1,1,76,77],[227,1,1,77,78],[228,1,1,78,79],[230,1,1,79,80]]],[7,3,3,80,83,[[233,1,1,80,81],[234,2,2,81,83]]],[8,28,27,83,110,[[237,2,2,83,85],[243,1,1,85,86],[244,1,1,86,87],[247,2,2,87,89],[248,3,3,89,92],[249,1,1,92,93],[250,2,2,93,95],[252,1,1,95,96],[253,1,1,96,97],[254,1,1,97,98],[255,2,2,98,100],[259,2,2,100,102],[260,4,3,102,105],[261,2,2,105,107],[262,1,1,107,108],[264,2,2,108,110]]],[9,19,18,110,128,[[268,2,2,110,112],[270,1,1,112,113],[273,3,3,113,116],[278,1,1,116,117],[279,1,1,117,118],[280,1,1,118,119],[281,1,1,119,120],[282,1,1,120,121],[283,1,1,121,122],[284,2,1,122,123],[285,2,2,123,125],[290,3,3,125,128]]],[10,15,14,128,142,[[291,2,1,128,129],[292,1,1,129,130],[293,1,1,130,131],[295,1,1,131,132],[298,2,2,132,134],[302,3,3,134,137],[304,1,1,137,138],[308,2,2,138,140],[309,1,1,140,141],[311,1,1,141,142]]],[11,11,11,142,153,[[313,1,1,142,143],[315,2,2,143,145],[316,1,1,145,146],[317,1,1,146,147],[319,1,1,147,148],[320,1,1,148,149],[324,1,1,149,150],[325,1,1,150,151],[330,1,1,151,152],[331,1,1,152,153]]],[12,6,6,153,159,[[354,2,2,153,155],[358,2,2,155,157],[365,1,1,157,158],[366,1,1,158,159]]],[13,12,12,159,171,[[367,1,1,159,160],[368,2,2,160,162],[373,1,1,162,163],[376,2,2,163,165],[379,1,1,165,166],[385,1,1,166,167],[386,1,1,167,168],[391,1,1,168,169],[394,1,1,169,170],[395,1,1,170,171]]],[14,3,3,171,174,[[411,2,2,171,173],[412,1,1,173,174]]],[15,3,2,174,176,[[417,1,1,174,175],[418,2,1,175,176]]],[17,17,17,176,193,[[438,1,1,176,177],[439,1,1,177,178],[441,2,2,178,180],[442,1,1,180,181],[443,1,1,181,182],[448,1,1,182,183],[449,1,1,183,184],[451,2,2,184,186],[465,3,3,186,189],[470,1,1,189,190],[472,1,1,190,191],[477,2,2,191,193]]],[18,7,7,193,200,[[479,1,1,193,194],[489,1,1,194,195],[494,1,1,195,196],[504,1,1,196,197],[516,1,1,197,198],[551,1,1,198,199],[596,1,1,199,200]]],[19,2,2,200,202,[[632,1,1,200,201],[634,1,1,201,202]]],[22,20,18,202,220,[[679,1,1,202,203],[683,2,2,203,205],[694,1,1,205,206],[707,2,1,206,207],[711,2,1,207,208],[714,2,2,208,210],[715,1,1,210,211],[721,2,2,211,213],[722,1,1,213,214],[725,1,1,214,215],[726,2,2,215,217],[727,2,2,217,219],[742,1,1,219,220]]],[23,12,12,220,232,[[746,1,1,220,221],[748,1,1,221,222],[751,1,1,222,223],[758,1,1,223,224],[770,1,1,224,225],[771,2,2,225,227],[776,1,1,227,228],[781,1,1,228,229],[784,1,1,229,230],[786,1,1,230,231],[788,1,1,231,232]]],[25,3,3,232,235,[[805,1,1,232,233],[820,1,1,233,234],[824,1,1,234,235]]],[26,5,5,235,240,[[858,2,2,235,237],[859,2,2,237,239],[860,1,1,239,240]]],[27,11,11,240,251,[[863,1,1,240,241],[865,1,1,241,242],[866,2,2,242,244],[868,1,1,244,245],[869,3,3,245,248],[871,2,2,248,250],[874,1,1,250,251]]],[28,1,1,251,252,[[877,1,1,251,252]]],[29,1,1,252,253,[[884,1,1,252,253]]],[31,1,1,253,254,[[892,1,1,253,254]]],[32,4,4,254,258,[[896,1,1,254,255],[897,1,1,255,256],[899,2,2,256,258]]],[33,1,1,258,259,[[900,1,1,258,259]]],[36,3,3,259,262,[[910,3,3,259,262]]],[37,2,2,262,264,[[918,1,1,262,263],[919,1,1,263,264]]],[38,3,3,264,267,[[925,1,1,264,265],[926,1,1,265,266],[927,1,1,266,267]]]],[77,90,272,466,559,640,714,721,763,827,860,886,889,901,903,915,932,938,1103,1300,1366,1420,1424,1456,1523,1589,1597,1637,1650,1757,1760,1761,2018,2468,2470,2472,2478,4030,4047,4125,4381,4386,4404,4408,4409,4413,4457,4460,4463,5198,5208,5576,5797,5853,5948,6043,6048,6049,6056,6062,6197,6198,6430,6667,6721,6725,6734,6792,6836,6837,6842,6852,6854,6891,6911,6947,6959,6983,7007,7063,7156,7174,7183,7256,7270,7374,7403,7462,7470,7497,7498,7499,7538,7561,7590,7647,7698,7708,7759,7761,7859,7860,7868,7887,7888,7913,7921,7931,7974,7977,8055,8056,8131,8205,8208,8209,8309,8337,8388,8423,8437,8458,8481,8518,8520,8702,8705,8708,8735,8786,8823,8882,9010,9011,9155,9162,9167,9232,9352,9355,9391,9458,9547,9591,9599,9629,9662,9716,9733,9857,9890,10049,10086,10886,10889,10942,10949,11153,11181,11204,11218,11224,11340,11399,11411,11461,11583,11597,11723,11774,11802,12245,12247,12254,12387,12408,12917,12935,12981,12999,13029,13035,13172,13197,13245,13257,13558,13566,13573,13735,13790,13927,13930,13955,14071,14114,14291,14519,15054,15965,16524,16599,17675,17742,17744,17983,18215,18289,18335,18340,18378,18506,18524,18534,18607,18621,18630,18641,18655,18893,18983,19039,19132,19303,19585,19602,19612,19767,19894,19945,19990,20017,20543,20894,21050,22003,22010,22026,22035,22038,22115,22149,22155,22159,22180,22202,22204,22207,22227,22228,22268,22323,22457,22571,22630,22637,22668,22674,22697,22858,22859,22870,22987,23007,23098,23104,23135]]],["therefore",[2,2,[[0,1,1,0,1,[[11,1,1,0,1]]],[5,1,1,1,2,[[210,1,1,1,2]]]],[317,6490]]],["whereas",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11406]]],["yet",[1,1,[[11,1,1,0,1,[[325,1,1,0,1]]]],[9894]]]]},{"k":"H6259","v":[["*",[2,2,[[22,1,1,0,1,[[688,1,1,0,1]]],[23,1,1,1,2,[[796,1,1,1,2]]]],[17863,20277]]],["+",[1,1,[[23,1,1,0,1,[[796,1,1,0,1]]]],[20277]]],["treasures",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17863]]]]},{"k":"H6260","v":[["*",[29,29,[[0,2,2,0,2,[[30,2,2,0,2]]],[3,13,13,2,15,[[123,13,13,2,15]]],[4,1,1,15,16,[[184,1,1,15,16]]],[18,3,3,16,19,[[527,2,2,16,18],[543,1,1,18,19]]],[19,1,1,19,20,[[654,1,1,19,20]]],[22,3,3,20,23,[[679,1,1,20,21],[692,1,1,21,22],[712,1,1,22,23]]],[23,2,2,23,25,[[794,1,1,23,24],[795,1,1,24,25]]],[25,3,3,25,28,[[828,1,1,25,26],[835,1,1,26,27],[840,1,1,27,28]]],[37,1,1,28,29,[[920,1,1,28,29]]]],[883,885,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3938,5772,14677,14681,14888,17195,17665,17937,18309,20174,20252,21142,21330,21466,23019]]],["goats",[26,26,[[3,13,13,0,13,[[123,13,13,0,13]]],[4,1,1,13,14,[[184,1,1,13,14]]],[18,3,3,14,17,[[527,2,2,14,16],[543,1,1,16,17]]],[19,1,1,17,18,[[654,1,1,17,18]]],[22,2,2,18,20,[[679,1,1,18,19],[712,1,1,19,20]]],[23,2,2,20,22,[[794,1,1,20,21],[795,1,1,21,22]]],[25,3,3,22,25,[[828,1,1,22,23],[835,1,1,23,24],[840,1,1,24,25]]],[37,1,1,25,26,[[920,1,1,25,26]]]],[3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3938,5772,14677,14681,14888,17195,17665,18309,20174,20252,21142,21330,21466,23019]]],["ones",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17937]]],["rams",[2,2,[[0,2,2,0,2,[[30,2,2,0,2]]]],[883,885]]]]},{"k":"H6261","v":[["fit",[1,1,[[2,1,1,0,1,[[105,1,1,0,1]]]],[3222]]]]},{"k":"H6262","v":[["Attai",[4,4,[[12,3,3,0,3,[[339,2,2,0,2],[349,1,1,2,3]]],[13,1,1,3,4,[[377,1,1,3,4]]]],[10341,10342,10731,11434]]]]},{"k":"H6263","v":[["ready",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21822]]]]},{"k":"H6264","v":[["*",[5,5,[[4,1,1,0,1,[[184,1,1,0,1]]],[16,2,2,1,3,[[428,1,1,1,2],[433,1,1,2,3]]],[17,2,2,3,5,[[438,1,1,3,4],[450,1,1,4,5]]]],[5793,12761,12830,12912,13227]]],["come",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5793]]],["ready",[4,4,[[16,2,2,0,2,[[428,1,1,0,1],[433,1,1,1,2]]],[17,2,2,2,4,[[438,1,1,2,3],[450,1,1,3,4]]]],[12761,12830,12912,13227]]]]},{"k":"H6265","v":[["Athaiah",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12592]]]]},{"k":"H6266","v":[["durable",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18095]]]]},{"k":"H6267","v":[["*",[2,2,[[12,1,1,0,1,[[341,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]]],[10407,18173]]],["ancient",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10407]]],["drawn",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18173]]]]},{"k":"H6268","v":[["Ancient",[3,3,[[26,3,3,0,3,[[856,3,3,0,3]]]],[21942,21946,21955]]]]},{"k":"H6269","v":[["Athach",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[8008]]]]},{"k":"H6270","v":[["Athlai",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12280]]]]},{"k":"H6271","v":[["Athaliah",[17,17,[[11,7,7,0,7,[[320,1,1,0,1],[323,6,6,1,7]]],[12,1,1,7,8,[[345,1,1,7,8]]],[13,8,8,8,16,[[388,4,4,8,12],[389,3,3,12,15],[390,1,1,15,16]]],[14,1,1,16,17,[[410,1,1,16,17]]]],[9753,9830,9831,9832,9842,9843,9849,10601,11646,11654,11655,11656,11668,11669,11677,11684,12208]]]]},{"k":"H6272","v":[["darkened",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17848]]]]},{"k":"H6273","v":[["Othni",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11084]]]]},{"k":"H6274","v":[["Othniel",[7,6,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,3,3,1,4,[[211,1,1,1,2],[213,2,2,2,4]]],[12,3,2,4,6,[[341,2,1,4,5],[364,1,1,5,6]]]],[6219,6522,6577,6579,10398,11124]]]]},{"k":"H6275","v":[["*",[9,9,[[0,2,2,0,2,[[11,1,1,0,1],[25,1,1,1,2]]],[17,5,5,2,7,[[444,1,1,2,3],[449,1,1,3,4],[453,1,1,4,5],[456,1,1,5,6],[467,1,1,6,7]]],[18,1,1,7,8,[[483,1,1,7,8]]],[19,1,1,8,9,[[652,1,1,8,9]]]],[306,714,13056,13199,13280,13362,13643,13992,17114]]],["+",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13643]]],["old",[2,2,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,1,1,1,2,[[483,1,1,1,2]]]],[13362,13992]]],["out",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17114]]],["removed",[4,4,[[0,2,2,0,2,[[11,1,1,0,1],[25,1,1,1,2]]],[17,2,2,2,4,[[449,1,1,2,3],[453,1,1,3,4]]]],[306,714,13199,13280]]],["removeth",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13056]]]]},{"k":"H6276","v":[["durable",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16620]]]]},{"k":"H6277","v":[["*",[4,4,[[8,1,1,0,1,[[237,1,1,0,1]]],[18,3,3,1,4,[[508,1,1,1,2],[552,1,1,2,3],[571,1,1,3,4]]]],[7243,14349,15076,15435]]],["arrogancy",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7243]]],["stiff",[1,1,[[18,1,1,0,1,[[552,1,1,0,1]]]],[15076]]],["things",[2,2,[[18,2,2,0,2,[[508,1,1,0,1],[571,1,1,1,2]]]],[14349,15435]]]]},{"k":"H6278","v":[["Ittahkazin",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6334]]]]},{"k":"H6279","v":[["*",[20,19,[[0,2,1,0,1,[[24,2,1,0,1]]],[1,8,8,1,9,[[57,5,5,1,6],[58,1,1,6,7],[59,2,2,7,9]]],[6,1,1,9,10,[[223,1,1,9,10]]],[9,2,2,10,12,[[287,1,1,10,11],[290,1,1,11,12]]],[12,1,1,12,13,[[342,1,1,12,13]]],[13,2,2,13,15,[[399,2,2,13,15]]],[14,1,1,15,16,[[410,1,1,15,16]]],[17,2,2,16,18,[[457,1,1,16,17],[468,1,1,17,18]]],[22,1,1,18,19,[[697,1,1,18,19]]]],[679,1718,1719,1738,1739,1740,1770,1794,1795,6892,8594,8717,10448,11921,11927,12224,13416,13676,18026]]],["+",[6,6,[[1,5,5,0,5,[[57,3,3,0,3],[58,1,1,3,4],[59,1,1,4,5]]],[6,1,1,5,6,[[223,1,1,5,6]]]],[1718,1739,1740,1770,1795,6892]]],["intreat",[3,3,[[1,3,3,0,3,[[57,2,2,0,2],[59,1,1,2,3]]]],[1719,1738,1794]]],["intreated",[9,8,[[0,2,1,0,1,[[24,2,1,0,1]]],[9,2,2,1,3,[[287,1,1,1,2],[290,1,1,2,3]]],[12,1,1,3,4,[[342,1,1,3,4]]],[13,2,2,4,6,[[399,2,2,4,6]]],[14,1,1,6,7,[[410,1,1,6,7]]],[22,1,1,7,8,[[697,1,1,7,8]]]],[679,8594,8717,10448,11921,11927,12224,18026]]],["pray",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13676]]],["prayer",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13416]]]]},{"k":"H6280","v":[["*",[2,2,[[19,1,1,0,1,[[654,1,1,0,1]]],[25,1,1,1,2,[[836,1,1,1,2]]]],[17175,21357]]],["deceitful",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17175]]],["multiplied",[1,1,[[25,1,1,0,1,[[836,1,1,0,1]]]],[21357]]]]},{"k":"H6281","v":[["Ether",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]]],[6244,6328]]]]},{"k":"H6282","v":[["*",[2,2,[[25,1,1,0,1,[[809,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[20615,22830]]],["suppliants",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22830]]],["thick",[1,1,[[25,1,1,0,1,[[809,1,1,0,1]]]],[20615]]]]},{"k":"H6283","v":[["abundance",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19781]]]]},{"k":"H6284","v":[["corners",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5784]]]]},{"k":"H6285","v":[["*",[86,59,[[1,15,14,0,14,[[74,1,1,0,1],[75,2,2,1,3],[76,5,4,3,7],[85,2,2,7,9],[86,1,1,9,10],[87,4,4,10,14]]],[2,6,5,14,19,[[102,1,1,14,15],[108,3,2,15,17],[110,1,1,17,18],[112,1,1,18,19]]],[3,6,3,19,22,[[140,1,1,19,20],[150,1,1,20,21],[151,4,1,21,22]]],[5,6,5,22,27,[[201,1,1,22,23],[204,5,4,23,27]]],[15,1,1,27,28,[[421,1,1,27,28]]],[23,4,4,28,32,[[753,1,1,28,29],[769,1,1,29,30],[792,1,1,30,31],[793,1,1,31,32]]],[25,47,26,32,58,[[842,1,1,32,33],[846,2,1,33,34],[848,8,5,34,39],[849,36,19,39,58]]],[29,1,1,58,59,[[881,1,1,58,59]]]],[2221,2253,2255,2281,2283,2284,2285,2589,2591,2617,2642,2644,2645,2646,3093,3290,3308,3350,3424,4463,4819,4850,6207,6305,6307,6308,6313,12533,19201,19557,20125,20159,21538,21637,21694,21696,21697,21698,21699,21703,21704,21705,21706,21707,21708,21709,21710,21718,21725,21726,21727,21728,21729,21730,21732,21734,21735,21736,22407]]],["+",[18,16,[[2,1,1,0,1,[[102,1,1,0,1]]],[25,17,15,1,16,[[846,2,1,1,2],[849,15,14,2,16]]]],[3093,21637,21704,21705,21706,21707,21708,21709,21710,21718,21725,21726,21727,21728,21729,21732]]],["corner",[5,5,[[1,1,1,0,1,[[85,1,1,0,1]]],[2,1,1,1,2,[[110,1,1,1,2]]],[5,1,1,2,3,[[204,1,1,2,3]]],[23,1,1,3,4,[[792,1,1,3,4]]],[29,1,1,4,5,[[881,1,1,4,5]]]],[2591,3350,6307,20125,22407]]],["corners",[11,10,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[2,4,3,2,5,[[108,3,2,2,4],[112,1,1,4,5]]],[3,1,1,5,6,[[140,1,1,5,6]]],[15,1,1,6,7,[[421,1,1,6,7]]],[23,3,3,7,10,[[753,1,1,7,8],[769,1,1,8,9],[793,1,1,9,10]]]],[2221,2617,3290,3308,3424,4463,12533,19201,19557,20159]]],["end",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21538]]],["quarter",[4,4,[[3,1,1,0,1,[[150,1,1,0,1]]],[5,3,3,1,4,[[201,1,1,1,2],[204,2,2,2,4]]]],[4819,6207,6307,6308]]],["side",[46,36,[[1,12,11,0,11,[[75,2,2,0,2],[76,5,4,2,6],[85,1,1,6,7],[87,4,4,7,11]]],[3,4,1,11,12,[[151,4,1,11,12]]],[5,2,2,12,14,[[204,2,2,12,14]]],[25,28,22,14,36,[[848,8,5,14,19],[849,20,17,19,36]]]],[2253,2255,2281,2283,2284,2285,2589,2642,2644,2645,2646,4850,6305,6313,21694,21696,21697,21698,21699,21704,21705,21706,21707,21708,21709,21710,21718,21725,21726,21727,21728,21729,21730,21734,21735,21736]]],["sides",[1,1,[[25,1,1,0,1,[[849,1,1,0,1]]]],[21703]]]]},{"k":"H6286","v":[["*",[14,14,[[1,1,1,0,1,[[57,1,1,0,1]]],[4,1,1,1,2,[[176,1,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]],[14,1,1,3,4,[[409,1,1,3,4]]],[18,1,1,4,5,[[626,1,1,4,5]]],[22,9,9,5,14,[[688,1,1,5,6],[722,1,1,6,7],[727,1,1,7,8],[733,1,1,8,9],[738,4,4,9,13],[739,1,1,13,14]]]],[1719,5545,6696,12200,16389,17865,18556,18639,18745,18828,18830,18834,18842,18846]]],["+",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12200]]],["Glory",[1,1,[[1,1,1,0,1,[[57,1,1,0,1]]]],[1719]]],["beautify",[2,2,[[18,1,1,0,1,[[626,1,1,0,1]]],[22,1,1,1,2,[[738,1,1,1,2]]]],[16389,18834]]],["boughs",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5545]]],["glorified",[5,5,[[22,5,5,0,5,[[727,1,1,0,1],[733,1,1,1,2],[738,2,2,2,4],[739,1,1,4,5]]]],[18639,18745,18830,18842,18846]]],["glorify",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18828]]],["himself",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18556]]],["itself",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17865]]],["themselves",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6696]]]]},{"k":"H6287","v":[["*",[7,7,[[1,1,1,0,1,[[88,1,1,0,1]]],[22,3,3,1,4,[[681,1,1,1,2],[739,2,2,2,4]]],[25,3,3,4,7,[[825,2,2,4,6],[845,1,1,6,7]]]],[2692,17727,18846,18853,21073,21079,21617]]],["beauty",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18846]]],["bonnets",[2,2,[[22,1,1,0,1,[[681,1,1,0,1]]],[25,1,1,1,2,[[845,1,1,1,2]]]],[17727,21617]]],["goodly",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2692]]],["head",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21073]]],["ornaments",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18853]]],["tires",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21079]]]]},{"k":"H6288","v":[["*",[7,7,[[22,1,1,0,1,[[688,1,1,0,1]]],[25,6,6,1,7,[[818,1,1,1,2],[832,5,5,2,7]]]],[17883,20831,21235,21236,21238,21242,21243]]],["bough",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17883]]],["boughs",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21242]]],["branches",[4,4,[[25,4,4,0,4,[[832,4,4,0,4]]]],[21235,21236,21238,21243]]],["sprigs",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20831]]]]},{"k":"H6289","v":[["blackness",[2,2,[[28,1,1,0,1,[[877,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[22317,22709]]]]},{"k":"H6290","v":[["*",[11,10,[[0,1,1,0,1,[[20,1,1,0,1]]],[3,4,4,1,5,[[126,1,1,1,2],[128,1,1,2,3],[129,2,2,3,5]]],[4,2,2,5,7,[[153,1,1,5,6],[185,1,1,6,7]]],[8,1,1,7,8,[[260,1,1,7,8]]],[10,2,1,8,9,[[301,2,1,8,9]]],[34,1,1,9,10,[[905,1,1,9,10]]]],[534,4000,4075,4078,4101,4893,5812,7862,9126,22771]]],["+",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9126]]],["Paran",[10,10,[[0,1,1,0,1,[[20,1,1,0,1]]],[3,4,4,1,5,[[126,1,1,1,2],[128,1,1,2,3],[129,2,2,3,5]]],[4,2,2,5,7,[[153,1,1,5,6],[185,1,1,6,7]]],[8,1,1,7,8,[[260,1,1,7,8]]],[10,1,1,8,9,[[301,1,1,8,9]]],[34,1,1,9,10,[[905,1,1,9,10]]]],[534,4000,4075,4078,4101,4893,5812,7862,9126,22771]]]]},{"k":"H6291","v":[["figs",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17567]]]]},{"k":"H6292","v":[["*",[4,4,[[2,2,2,0,2,[[96,1,1,0,1],[108,1,1,1,2]]],[22,1,1,2,3,[[743,1,1,2,3]]],[25,1,1,3,4,[[805,1,1,3,4]]]],[2897,3288,18901,20543]]],["abominable",[3,3,[[2,1,1,0,1,[[108,1,1,0,1]]],[22,1,1,1,2,[[743,1,1,1,2]]],[25,1,1,2,3,[[805,1,1,2,3]]]],[3288,18901,20543]]],["abomination",[1,1,[[2,1,1,0,1,[[96,1,1,0,1]]]],[2897]]]]},{"k":"H6293","v":[["*",[46,43,[[0,3,3,0,3,[[22,1,1,0,1],[27,1,1,1,2],[31,1,1,2,3]]],[1,3,3,3,6,[[54,2,2,3,5],[72,1,1,5,6]]],[3,2,2,6,8,[[151,2,2,6,8]]],[5,10,8,8,16,[[188,1,1,8,9],[202,1,1,9,10],[203,1,1,10,11],[205,7,5,11,16]]],[6,3,3,16,19,[[218,1,1,16,17],[225,1,1,17,18],[228,1,1,18,19]]],[7,2,2,19,21,[[232,1,1,19,20],[233,1,1,20,21]]],[8,4,3,21,24,[[245,1,1,21,22],[257,3,2,22,24]]],[9,1,1,24,25,[[267,1,1,24,25]]],[10,6,6,25,31,[[292,6,6,25,31]]],[17,2,2,31,33,[[456,1,1,31,32],[471,1,1,32,33]]],[22,5,5,33,38,[[725,1,1,33,34],[731,2,2,34,36],[737,1,1,36,37],[742,1,1,37,38]]],[23,4,4,38,42,[[751,1,1,38,39],[759,1,1,39,40],[771,1,1,40,41],[780,1,1,41,42]]],[29,1,1,42,43,[[883,1,1,42,43]]]],[579,784,929,1635,1652,2148,4864,4866,5885,6272,6285,6332,6343,6347,6348,6355,6740,6941,7018,7143,7171,7423,7804,7805,8037,8795,8799,8801,8802,8804,8816,13370,13768,18602,18717,18723,18816,18890,19135,19326,19614,19867,22442]]],["+",[2,2,[[1,1,1,0,1,[[54,1,1,0,1]]],[22,1,1,1,2,[[742,1,1,1,2]]]],[1652,18890]]],["Intreat",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7143]]],["betwixt",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13768]]],["came",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6272]]],["entreat",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19326]]],["fall",[7,7,[[6,2,2,0,2,[[218,1,1,0,1],[225,1,1,1,2]]],[8,2,2,2,4,[[257,2,2,2,4]]],[9,1,1,4,5,[[267,1,1,4,5]]],[10,2,2,5,7,[[292,2,2,5,7]]]],[6740,6941,7804,7805,8037,8799,8801]]],["fell",[5,5,[[8,1,1,0,1,[[257,1,1,0,1]]],[10,4,4,1,5,[[292,4,4,1,5]]]],[7805,8795,8802,8804,8816]]],["intercession",[4,4,[[22,1,1,0,1,[[731,1,1,0,1]]],[23,3,3,1,4,[[751,1,1,1,2],[771,1,1,2,3],[780,1,1,3,4]]]],[18723,19135,19614,19867]]],["intercessor",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18816]]],["intreat",[1,1,[[0,1,1,0,1,[[22,1,1,0,1]]]],[579]]],["laid",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18717]]],["lighted",[1,1,[[0,1,1,0,1,[[27,1,1,0,1]]]],[784]]],["meet",[5,5,[[1,1,1,0,1,[[72,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]],[7,1,1,2,3,[[233,1,1,2,3]]],[8,1,1,3,4,[[245,1,1,3,4]]],[22,1,1,4,5,[[725,1,1,4,5]]]],[2148,5885,7171,7423,18602]]],["meeteth",[2,2,[[3,2,2,0,2,[[151,2,2,0,2]]]],[4864,4866]]],["met",[2,2,[[0,1,1,0,1,[[31,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[929,22442]]],["pray",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13370]]],["reached",[2,1,[[5,2,1,0,1,[[205,2,1,0,1]]]],[6332]]],["reacheth",[5,4,[[5,5,4,0,4,[[205,5,4,0,4]]]],[6343,6347,6348,6355]]],["run",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7018]]],["together",[1,1,[[5,1,1,0,1,[[203,1,1,0,1]]]],[6285]]],["upon",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1635]]]]},{"k":"H6294","v":[["*",[2,2,[[10,1,1,0,1,[[295,1,1,0,1]]],[20,1,1,1,2,[[667,1,1,1,2]]]],[8882,17486]]],["chance",[1,1,[[20,1,1,0,1,[[667,1,1,0,1]]]],[17486]]],["occurrent",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8882]]]]},{"k":"H6295","v":[["Pagiel",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3617,3685,3922,3927,4014]]]]},{"k":"H6296","v":[["faint",[2,2,[[8,2,2,0,2,[[265,2,2,0,2]]]],[7988,7999]]]]},{"k":"H6297","v":[["*",[22,21,[[0,1,1,0,1,[[14,1,1,0,1]]],[2,2,1,1,2,[[115,2,1,1,2]]],[3,3,3,2,5,[[130,3,3,2,5]]],[8,1,1,5,6,[[252,1,1,5,6]]],[11,1,1,6,7,[[331,1,1,6,7]]],[13,2,2,7,9,[[386,2,2,7,9]]],[22,4,4,9,13,[[692,1,1,9,10],[712,1,1,10,11],[715,1,1,11,12],[744,1,1,12,13]]],[23,3,3,13,16,[[775,1,1,13,14],[777,1,1,14,15],[785,1,1,15,16]]],[25,3,3,16,19,[[807,1,1,16,17],[844,2,2,17,19]]],[29,1,1,19,20,[[886,1,1,19,20]]],[33,1,1,20,21,[[902,1,1,20,21]]]],[371,3554,4137,4140,4141,7664,10096,11611,11612,17947,18306,18388,18946,19731,19780,19966,20568,21579,21581,22484,22715]]],["bodies",[6,6,[[13,2,2,0,2,[[386,2,2,0,2]]],[23,3,3,2,5,[[775,1,1,2,3],[777,1,1,3,4],[785,1,1,4,5]]],[29,1,1,5,6,[[886,1,1,5,6]]]],[11611,11612,19731,19780,19966,22484]]],["carcase",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17947]]],["carcases",[13,12,[[0,1,1,0,1,[[14,1,1,0,1]]],[2,2,1,1,2,[[115,2,1,1,2]]],[3,3,3,2,5,[[130,3,3,2,5]]],[8,1,1,5,6,[[252,1,1,5,6]]],[22,2,2,6,8,[[712,1,1,6,7],[744,1,1,7,8]]],[25,3,3,8,11,[[807,1,1,8,9],[844,2,2,9,11]]],[33,1,1,11,12,[[902,1,1,11,12]]]],[371,3554,4137,4140,4141,7664,18306,18946,20568,21579,21581,22715]]],["corpses",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10096,18388]]]]},{"k":"H6298","v":[["*",[14,14,[[0,2,2,0,2,[[31,1,1,0,1],[32,1,1,1,2]]],[1,2,2,2,4,[[53,2,2,2,4]]],[8,1,1,4,5,[[260,1,1,4,5]]],[9,1,1,5,6,[[268,1,1,5,6]]],[17,1,1,6,7,[[440,1,1,6,7]]],[18,1,1,7,8,[[562,1,1,7,8]]],[19,3,3,8,11,[[644,1,1,8,9],[649,1,1,9,10],[656,1,1,10,11]]],[22,1,1,11,12,[[712,1,1,11,12]]],[23,1,1,12,13,[[785,1,1,12,13]]],[27,1,1,13,14,[[874,1,1,13,14]]]],[945,968,1625,1628,7881,8062,12965,15281,16885,17017,17237,18317,19963,22274]]],["meet",[4,4,[[17,1,1,0,1,[[440,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]],[22,1,1,2,3,[[712,1,1,2,3]]],[27,1,1,3,4,[[874,1,1,3,4]]]],[12965,16885,18317,22274]]],["meeteth",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[945]]],["met",[6,6,[[0,1,1,0,1,[[32,1,1,0,1]]],[1,2,2,1,3,[[53,2,2,1,3]]],[8,1,1,3,4,[[260,1,1,3,4]]],[9,1,1,4,5,[[268,1,1,4,5]]],[23,1,1,5,6,[[785,1,1,5,6]]]],[968,1625,1628,7881,8062,19963]]],["together",[3,3,[[18,1,1,0,1,[[562,1,1,0,1]]],[19,2,2,1,3,[[649,1,1,1,2],[656,1,1,2,3]]]],[15281,17017,17237]]]]},{"k":"H6299","v":[["*",[59,48,[[1,8,4,0,4,[[62,4,2,0,2],[70,1,1,2,3],[83,3,1,3,4]]],[2,4,3,4,7,[[108,2,1,4,5],[116,2,2,5,7]]],[3,6,3,7,10,[[134,6,3,7,10]]],[4,6,6,10,16,[[159,1,1,10,11],[161,1,1,11,12],[165,1,1,12,13],[167,1,1,13,14],[173,1,1,14,15],[176,1,1,15,16]]],[8,1,1,16,17,[[249,1,1,16,17]]],[9,3,2,17,19,[[270,1,1,17,18],[273,2,1,18,19]]],[10,1,1,19,20,[[291,1,1,19,20]]],[12,2,1,20,21,[[354,2,1,20,21]]],[15,1,1,21,22,[[413,1,1,21,22]]],[17,3,3,22,25,[[440,1,1,22,23],[441,1,1,23,24],[468,1,1,24,25]]],[18,14,13,25,38,[[502,1,1,25,26],[503,1,1,26,27],[508,1,1,27,28],[511,1,1,28,29],[521,1,1,29,30],[526,3,2,30,32],[532,1,1,32,33],[546,1,1,33,34],[548,1,1,34,35],[555,1,1,35,36],[596,1,1,36,37],[607,1,1,37,38]]],[22,4,4,38,42,[[679,1,1,38,39],[707,1,1,39,40],[713,1,1,40,41],[729,1,1,41,42]]],[23,2,2,42,44,[[759,1,1,42,43],[775,1,1,43,44]]],[27,2,2,44,46,[[868,1,1,44,45],[874,1,1,45,46]]],[32,1,1,46,47,[[898,1,1,46,47]]],[37,1,1,47,48,[[920,1,1,47,48]]]],[1880,1882,2085,2516,3301,3597,3599,4272,4273,4274,5119,5183,5277,5334,5455,5543,7553,8129,8203,8746,10884,12306,12971,13001,13678,14273,14284,14336,14410,14597,14655,14663,14750,14953,14999,15155,16032,16148,17681,18215,18330,18684,19336,19702,22191,22280,22652,23024]]],["+",[11,9,[[2,2,1,0,1,[[108,2,1,0,1]]],[3,2,1,1,2,[[134,2,1,1,2]]],[8,1,1,2,3,[[249,1,1,2,3]]],[9,1,1,3,4,[[270,1,1,3,4]]],[10,1,1,4,5,[[291,1,1,4,5]]],[18,2,2,5,7,[[502,1,1,5,6],[607,1,1,6,7]]],[22,1,1,7,8,[[707,1,1,7,8]]],[23,1,1,8,9,[[775,1,1,8,9]]]],[3301,4272,7553,8129,8746,14273,16148,18215,19702]]],["Deliver",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16032]]],["Redeem",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[13001]]],["deliver",[2,2,[[17,1,1,0,1,[[468,1,1,0,1]]],[18,1,1,1,2,[[546,1,1,1,2]]]],[13678,14953]]],["delivered",[2,2,[[18,2,2,0,2,[[532,1,1,0,1],[555,1,1,1,2]]]],[14750,15155]]],["means",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14655]]],["ransom",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22280]]],["ransomed",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18330]]],["redeem",[19,15,[[1,7,3,0,3,[[62,4,2,0,2],[83,3,1,2,3]]],[2,1,1,3,4,[[116,1,1,3,4]]],[3,3,3,4,7,[[134,3,3,4,7]]],[9,1,1,7,8,[[273,1,1,7,8]]],[12,1,1,8,9,[[354,1,1,8,9]]],[17,1,1,9,10,[[440,1,1,9,10]]],[18,4,4,10,14,[[503,1,1,10,11],[521,1,1,11,12],[526,2,2,12,14]]],[23,1,1,14,15,[[759,1,1,14,15]]]],[1880,1882,2516,3597,4272,4273,4274,8203,10884,12971,14284,14597,14655,14663,19336]]],["redeemed",[18,18,[[1,1,1,0,1,[[70,1,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]],[3,1,1,2,3,[[134,1,1,2,3]]],[4,6,6,3,9,[[159,1,1,3,4],[161,1,1,4,5],[165,1,1,5,6],[167,1,1,6,7],[173,1,1,7,8],[176,1,1,8,9]]],[12,1,1,9,10,[[354,1,1,9,10]]],[15,1,1,10,11,[[413,1,1,10,11]]],[18,2,2,11,13,[[508,1,1,11,12],[548,1,1,12,13]]],[22,2,2,13,15,[[679,1,1,13,14],[729,1,1,14,15]]],[27,1,1,15,16,[[868,1,1,15,16]]],[32,1,1,16,17,[[898,1,1,16,17]]],[37,1,1,17,18,[[920,1,1,17,18]]]],[2085,3599,4273,5119,5183,5277,5334,5455,5543,10884,12306,14336,14999,17681,18684,22191,22652,23024]]],["redeemedst",[1,1,[[9,1,1,0,1,[[273,1,1,0,1]]]],[8203]]],["redeemeth",[1,1,[[18,1,1,0,1,[[511,1,1,0,1]]]],[14410]]]]},{"k":"H6300","v":[["Pedahel",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4844]]]]},{"k":"H6301","v":[["Pedahzur",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3614,3678,3904,3909,4011]]]]},{"k":"H6302","v":[["redeemed",[2,2,[[3,2,2,0,2,[[119,2,2,0,2]]]],[3738,3740]]]]},{"k":"H6303","v":[["Padon",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12071,12467]]]]},{"k":"H6304","v":[["*",[4,4,[[1,1,1,0,1,[[57,1,1,0,1]]],[18,2,2,1,3,[[588,1,1,1,2],[607,1,1,2,3]]],[22,1,1,3,4,[[728,1,1,3,4]]]],[1733,15802,16147,18664]]],["+",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18664]]],["division",[1,1,[[1,1,1,0,1,[[57,1,1,0,1]]]],[1733]]],["redemption",[2,2,[[18,2,2,0,2,[[588,1,1,0,1],[607,1,1,1,2]]]],[15802,16147]]]]},{"k":"H6305","v":[["Pedaiah",[8,8,[[11,1,1,0,1,[[335,1,1,0,1]]],[12,3,3,1,4,[[340,2,2,1,3],[364,1,1,3,4]]],[15,4,4,4,8,[[415,1,1,4,5],[420,1,1,5,6],[423,1,1,6,7],[425,1,1,7,8]]]],[10201,10379,10380,11129,12352,12497,12595,12684]]]]},{"k":"H6306","v":[["*",[5,4,[[1,1,1,0,1,[[70,1,1,0,1]]],[3,3,2,1,3,[[119,3,2,1,3]]],[18,1,1,3,4,[[526,1,1,3,4]]]],[2107,3741,3743,14656]]],["+",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3741]]],["ransom",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2107]]],["redeemed",[2,2,[[3,2,2,0,2,[[119,2,2,0,2]]]],[3741,3743]]],["redemption",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14656]]]]},{"k":"H6307","v":[["*",[11,11,[[0,11,11,0,11,[[24,1,1,0,1],[27,4,4,1,5],[30,1,1,5,6],[32,1,1,6,7],[34,2,2,7,9],[45,1,1,9,10],[47,1,1,10,11]]]],[678,775,778,779,780,891,978,1020,1037,1401,1458]]],["+",[4,4,[[0,4,4,0,4,[[24,1,1,0,1],[32,1,1,1,2],[34,1,1,2,3],[47,1,1,3,4]]]],[678,978,1020,1458]]],["Padanaram",[7,7,[[0,7,7,0,7,[[27,4,4,0,4],[30,1,1,4,5],[34,1,1,5,6],[45,1,1,6,7]]]],[775,778,779,780,891,1037,1401]]]]},{"k":"H6308","v":[["Deliver",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13674]]]]},{"k":"H6309","v":[["fat",[3,3,[[2,3,3,0,3,[[90,2,2,0,2],[97,1,1,2,3]]]],[2753,2757,2937]]]]},{"k":"H6310","v":[["*",[497,459,[[0,21,20,0,20,[[3,1,1,0,1],[7,1,1,1,2],[23,1,1,2,3],[24,1,1,3,4],[28,5,4,4,8],[33,1,1,8,9],[40,1,1,9,10],[41,1,1,10,11],[42,3,3,11,14],[43,3,3,14,17],[44,2,2,17,19],[46,1,1,19,20]]],[1,23,17,20,37,[[53,7,5,20,25],[61,1,1,25,26],[62,1,1,26,27],[65,3,3,27,30],[66,2,2,30,32],[72,1,1,32,33],[77,3,1,33,34],[83,1,1,34,35],[87,1,1,35,36],[88,3,1,36,37]]],[2,8,7,37,44,[[113,1,1,37,38],[114,4,3,38,41],[116,3,3,41,44]]],[3,49,43,44,87,[[119,3,3,44,47],[120,5,5,47,52],[122,1,1,52,53],[123,3,3,53,56],[125,8,4,56,60],[126,1,1,60,61],[128,2,1,61,62],[129,1,1,62,63],[130,1,1,63,64],[132,2,2,64,66],[136,1,1,66,67],[137,1,1,67,68],[138,3,3,68,71],[139,3,3,71,74],[140,1,1,74,75],[142,3,3,75,78],[143,3,2,78,80],[146,1,1,80,81],[148,1,1,81,82],[149,2,2,82,84],[151,2,2,84,86],[152,1,1,86,87]]],[4,23,20,87,107,[[153,2,2,87,89],[160,1,1,89,90],[161,1,1,90,91],[163,1,1,91,92],[165,2,1,92,93],[169,4,3,93,96],[170,1,1,96,97],[171,2,1,97,98],[172,1,1,98,99],[173,2,2,99,101],[175,1,1,101,102],[182,1,1,102,103],[183,2,2,103,105],[184,1,1,105,106],[186,1,1,106,107]]],[5,27,26,107,133,[[187,2,2,107,109],[192,2,2,109,111],[194,2,1,111,112],[195,2,2,112,114],[196,9,9,114,123],[197,3,3,123,126],[201,1,1,126,127],[203,1,1,127,128],[204,1,1,128,129],[205,2,2,129,131],[207,1,1,131,132],[208,1,1,132,133]]],[6,14,13,133,146,[[211,2,2,133,135],[214,2,2,135,137],[217,1,1,137,138],[219,1,1,138,139],[221,3,2,139,141],[228,2,2,141,143],[230,2,2,143,145],[231,1,1,145,146]]],[8,13,12,146,158,[[236,1,1,146,147],[237,2,2,147,149],[247,2,2,149,151],[248,1,1,151,152],[249,2,2,152,154],[250,2,2,154,156],[252,1,1,156,157],[257,2,1,157,158]]],[9,8,8,158,166,[[267,1,1,158,159],[279,1,1,159,160],[280,2,2,160,162],[281,1,1,162,163],[283,1,1,163,164],[284,1,1,164,165],[288,1,1,165,166]]],[10,13,11,166,177,[[297,3,1,166,167],[298,2,2,167,169],[303,2,2,169,171],[307,2,2,171,173],[309,1,1,173,174],[312,3,3,174,177]]],[11,10,7,177,184,[[314,1,1,177,178],[316,2,1,178,179],[322,3,2,179,181],[333,2,1,181,182],[335,1,1,182,183],[336,1,1,183,184]]],[12,3,3,184,187,[[349,2,2,184,186],[353,1,1,186,187]]],[13,10,10,187,197,[[372,2,2,187,189],[384,3,3,189,192],[397,1,1,192,193],[401,1,1,193,194],[402,3,3,194,197]]],[14,4,3,197,200,[[403,1,1,197,198],[410,1,1,198,199],[411,2,1,199,200]]],[15,1,1,200,201,[[421,1,1,200,201]]],[16,1,1,201,202,[[432,1,1,201,202]]],[17,36,36,202,238,[[436,2,2,202,204],[438,1,1,204,205],[440,2,2,205,207],[442,1,1,207,208],[443,2,2,208,210],[444,1,1,210,211],[450,4,4,211,215],[451,2,2,215,217],[454,1,1,217,218],[455,1,1,218,219],[456,1,1,219,220],[457,1,1,220,221],[458,2,2,221,223],[464,2,2,223,225],[465,1,1,225,226],[466,1,1,226,227],[467,1,1,227,228],[468,2,2,228,230],[470,1,1,230,231],[471,1,1,231,232],[472,1,1,232,233],[474,1,1,233,234],[475,2,2,234,236],[476,2,2,236,238]]],[18,67,66,238,304,[[482,1,1,238,239],[485,1,1,239,240],[487,1,1,240,241],[494,2,2,241,243],[495,1,1,243,244],[496,1,1,244,245],[499,2,2,245,247],[510,1,1,247,248],[511,1,1,248,249],[512,1,1,249,250],[513,1,1,250,251],[514,1,1,251,252],[515,2,2,252,254],[516,2,2,254,256],[517,1,1,256,257],[526,2,2,257,259],[527,2,2,259,261],[528,1,1,261,262],[531,1,1,262,263],[532,1,1,263,264],[535,1,1,264,265],[536,2,2,265,267],[539,1,1,267,268],[540,2,2,268,270],[543,2,2,270,272],[546,1,1,272,273],[548,2,2,273,275],[550,1,1,275,276],[555,4,4,276,280],[558,1,1,280,281],[566,1,1,281,282],[582,1,1,282,283],[584,1,1,283,284],[586,3,2,284,286],[592,1,1,286,287],[596,7,7,287,294],[603,1,1,294,295],[610,1,1,295,296],[612,2,2,296,298],[615,1,1,298,299],[618,2,2,299,301],[621,2,2,301,303],[622,1,1,303,304]]],[19,56,54,304,358,[[629,1,1,304,305],[631,2,2,305,307],[632,2,2,307,309],[633,3,2,309,311],[634,1,1,311,312],[635,4,4,312,316],[637,6,5,316,321],[638,2,2,321,323],[639,3,3,323,326],[640,2,2,326,328],[641,1,1,328,329],[642,4,4,329,333],[643,3,3,333,336],[645,4,4,336,340],[646,2,2,340,342],[647,1,1,342,343],[648,1,1,343,344],[649,2,2,344,346],[651,1,1,346,347],[653,4,4,347,351],[654,2,2,351,353],[657,2,2,353,355],[658,3,3,355,358]]],[20,7,6,358,364,[[663,2,2,358,360],[664,1,1,360,361],[666,1,1,361,362],[668,3,2,362,364]]],[21,1,1,364,365,[[671,1,1,364,365]]],[22,28,24,365,389,[[679,1,1,365,366],[683,1,1,366,367],[684,1,1,367,368],[687,2,2,368,370],[688,1,1,370,371],[689,1,1,371,372],[697,1,1,372,373],[707,1,1,373,374],[708,1,1,374,375],[712,1,1,375,376],[718,1,1,376,377],[723,1,1,377,378],[726,1,1,378,379],[727,1,1,379,380],[729,1,1,380,381],[730,1,1,381,382],[731,3,2,382,384],[733,1,1,384,385],[735,1,1,385,386],[736,1,1,386,387],[737,4,1,387,388],[740,1,1,388,389]]],[23,28,25,389,414,[[745,2,1,389,390],[749,1,1,390,391],[751,1,1,391,392],[753,3,3,392,395],[756,1,1,395,396],[759,1,1,396,397],[765,1,1,397,398],[767,1,1,398,399],[773,1,1,399,400],[776,2,1,400,401],[778,2,1,401,402],[780,6,6,402,408],[788,3,3,408,411],[789,1,1,411,412],[792,1,1,412,413],[795,1,1,413,414]]],[24,5,5,414,419,[[797,1,1,414,415],[798,1,1,415,416],[799,3,3,416,419]]],[25,17,16,419,435,[[803,1,1,419,420],[804,4,4,420,424],[805,1,1,424,425],[817,2,2,425,427],[822,1,1,427,428],[825,1,1,428,429],[830,1,1,429,430],[834,4,3,430,433],[835,1,1,433,434],[836,1,1,434,435]]],[26,2,2,435,437,[[859,2,2,435,437]]],[27,3,3,437,440,[[863,1,1,437,438],[867,1,1,438,439],[871,1,1,439,440]]],[28,1,1,440,441,[[876,1,1,440,441]]],[29,2,2,441,443,[[881,1,1,441,442],[884,1,1,442,443]]],[30,1,1,443,444,[[888,1,1,443,444]]],[32,5,5,444,449,[[895,1,1,444,445],[896,1,1,445,446],[898,1,1,446,447],[899,2,2,447,449]]],[33,1,1,449,450,[[902,1,1,449,450]]],[35,1,1,450,451,[[908,1,1,450,451]]],[37,5,5,451,456,[[915,1,1,451,452],[918,1,1,452,453],[919,1,1,453,454],[923,1,1,454,455],[924,1,1,455,456]]],[38,3,3,456,459,[[926,3,3,456,459]]]],[90,194,648,686,797,798,803,805,1006,1235,1279,1297,1302,1311,1325,1326,1332,1370,1379,1432,1611,1612,1613,1616,1617,1820,1876,1963,1965,1968,1984,1996,2157,2325,2523,2654,2687,3458,3485,3520,3521,3578,3586,3588,3708,3731,3743,3770,3780,3784,3788,3792,3844,3855,3857,3858,3982,3983,3985,3988,4001,4067,4078,4149,4224,4226,4335,4364,4393,4403,4413,4421,4428,4432,4459,4499,4543,4545,4568,4575,4650,4742,4762,4798,4853,4875,4884,4918,4935,5140,5180,5214,5287,5370,5374,5375,5402,5421,5440,5452,5464,5523,5722,5747,5749,5759,5844,5859,5869,5959,5970,6026,6039,6051,6082,6086,6091,6092,6094,6096,6099,6101,6103,6118,6119,6121,6215,6279,6297,6368,6371,6384,6435,6517,6534,6614,6615,6700,6792,6864,6865,7012,7020,7091,7102,7112,7224,7241,7243,7474,7475,7506,7534,7535,7568,7584,7653,7806,8038,8349,8359,8375,8403,8454,8503,8611,8965,9000,9009,9205,9210,9318,9341,9405,9493,9502,9503,9560,9637,9814,9818,10135,10200,10205,10743,10752,10832,11286,11297,11554,11563,11564,11856,11988,12005,12014,12015,12017,12218,12248,12531,12815,12884,12886,12905,12966,12967,13019,13031,13050,13071,13208,13209,13216,13233,13243,13248,13313,13338,13360,13411,13423,13431,13541,13555,13575,13615,13633,13652,13656,13736,13752,13771,13861,13868,13887,13907,13909,13982,14014,14048,14106,14113,14126,14182,14217,14225,14372,14389,14431,14441,14480,14503,14504,14513,14521,14528,14651,14661,14684,14687,14706,14727,14753,14785,14797,14802,14831,14844,14850,14887,14890,14950,14984,14991,15029,15114,15115,15143,15149,15227,15327,15611,15741,15757,15785,15835,15911,15941,15970,15986,16001,16006,16029,16117,16171,16191,16192,16235,16279,16283,16313,16316,16341,16439,16495,16514,16521,16524,16542,16552,16599,16605,16610,16615,16631,16662,16667,16670,16687,16688,16697,16699,16725,16727,16733,16749,16750,16775,16809,16821,16830,16835,16850,16863,16866,16905,16907,16908,16921,16949,16953,16971,17007,17021,17029,17086,17148,17150,17156,17169,17171,17190,17271,17283,17292,17293,17310,17399,17403,17424,17460,17505,17506,17539,17674,17753,17776,17841,17846,17864,17888,18011,18206,18219,18319,18425,18584,18617,18638,18689,18711,18718,18720,18751,18769,18800,18821,18856,18955,19072,19147,19183,19187,19195,19251,19334,19447,19500,19645,19735,19804,19846,19848,19859,19860,19869,19874,20027,20035,20036,20041,20108,20256,20328,20348,20383,20392,20400,20500,20504,20505,20519,20529,20543,20818,20825,20966,21083,21204,21287,21302,21311,21323,21357,22018,22031,22122,22172,22237,22296,22407,22455,22522,22613,22624,22660,22669,22680,22724,22833,22944,22985,23006,23067,23080,23109,23110,23112]]],["+",[63,61,[[2,2,2,0,2,[[116,2,2,0,2]]],[3,3,3,2,5,[[142,1,1,2,3],[146,1,1,3,4],[148,1,1,4,5]]],[4,2,2,5,7,[[169,1,1,5,6],[183,1,1,6,7]]],[5,2,2,7,9,[[187,1,1,7,8],[192,1,1,8,9]]],[6,1,1,9,10,[[221,1,1,9,10]]],[8,3,3,10,13,[[237,1,1,10,11],[248,1,1,11,12],[252,1,1,12,13]]],[9,1,1,13,14,[[288,1,1,13,14]]],[13,2,2,14,16,[[401,1,1,14,15],[402,1,1,15,16]]],[14,3,3,16,19,[[403,1,1,16,17],[410,1,1,17,18],[411,1,1,18,19]]],[15,1,1,19,20,[[421,1,1,19,20]]],[16,1,1,20,21,[[432,1,1,20,21]]],[17,7,7,21,28,[[440,1,1,21,22],[450,1,1,22,23],[457,1,1,23,24],[471,1,1,24,25],[472,1,1,25,26],[476,2,2,26,28]]],[18,4,4,28,32,[[485,1,1,28,29],[495,1,1,29,30],[499,1,1,30,31],[596,1,1,31,32]]],[19,2,2,32,34,[[629,1,1,32,33],[646,1,1,33,34]]],[22,6,4,34,38,[[723,1,1,34,35],[726,1,1,35,36],[733,1,1,36,37],[737,3,1,37,38]]],[23,11,11,38,49,[[751,1,1,38,39],[767,1,1,39,40],[780,6,6,40,46],[788,1,1,46,47],[789,1,1,47,48],[795,1,1,48,49]]],[24,1,1,49,50,[[799,1,1,49,50]]],[25,3,3,50,53,[[804,1,1,50,51],[834,1,1,51,52],[835,1,1,52,53]]],[27,1,1,53,54,[[863,1,1,53,54]]],[28,1,1,54,55,[[876,1,1,54,55]]],[29,1,1,55,56,[[881,1,1,55,56]]],[30,1,1,56,57,[[888,1,1,56,57]]],[37,2,2,57,59,[[918,1,1,57,58],[919,1,1,58,59]]],[38,2,2,59,61,[[926,2,2,59,61]]]],[3578,3588,4545,4650,4742,5374,5749,5859,5959,6865,7243,7506,7653,8611,11988,12005,12017,12218,12248,12531,12815,12966,13216,13411,13752,13771,13907,13909,14014,14126,14225,15941,16439,16949,18584,18617,18751,18821,19147,19500,19846,19848,19859,19860,19869,19874,20027,20041,20256,20392,20519,21287,21323,22122,22296,22407,22522,22985,23006,23110,23112]]],["accord",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6039]]],["according",[3,3,[[5,1,1,0,1,[[204,1,1,0,1]]],[10,1,1,1,2,[[307,1,1,1,2]]],[19,1,1,2,3,[[639,1,1,2,3]]]],[6297,9318,16727]]],["after",[1,1,[[23,1,1,0,1,[[773,1,1,0,1]]]],[19645]]],["another",[3,3,[[11,2,2,0,2,[[322,1,1,0,1],[333,1,1,1,2]]],[14,1,1,2,3,[[411,1,1,2,3]]]],[9814,10135,12248]]],["appointment",[2,2,[[3,1,1,0,1,[[120,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]]],[3770,8349]]],["assent",[1,1,[[13,1,1,0,1,[[384,1,1,0,1]]]],[11554]]],["collar",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13575]]],["command",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13861]]],["commandment",[37,33,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,2,2,1,3,[[66,1,1,1,2],[87,1,1,2,3]]],[3,18,14,3,17,[[119,1,1,3,4],[120,3,3,4,7],[125,7,3,7,10],[126,1,1,10,11],[129,1,1,11,12],[130,1,1,12,13],[140,1,1,13,14],[143,1,1,14,15],[149,2,2,15,17]]],[4,3,3,17,20,[[153,2,2,17,19],[161,1,1,19,20]]],[5,4,4,20,24,[[187,1,1,20,21],[201,1,1,21,22],[203,1,1,22,23],[207,1,1,23,24]]],[8,3,3,24,27,[[247,2,2,24,26],[250,1,1,26,27]]],[11,2,2,27,29,[[335,1,1,27,28],[336,1,1,28,29]]],[12,1,1,29,30,[[349,1,1,29,30]]],[19,1,1,30,31,[[635,1,1,30,31]]],[20,1,1,31,32,[[666,1,1,31,32]]],[24,1,1,32,33,[[797,1,1,32,33]]]],[1379,1984,2654,3731,3780,3784,3792,3983,3985,3988,4001,4078,4149,4459,4568,4762,4798,4918,4935,5180,5869,6215,6279,6384,7474,7475,7584,10200,10205,10752,16631,17460,20328]]],["eat",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[686]]],["edge",[35,32,[[0,1,1,0,1,[[33,1,1,0,1]]],[1,1,1,1,2,[[66,1,1,1,2]]],[3,1,1,2,3,[[137,1,1,2,3]]],[4,3,2,3,5,[[165,2,1,3,4],[172,1,1,4,5]]],[5,13,12,5,17,[[192,1,1,5,6],[194,2,1,6,7],[196,6,6,7,13],[197,3,3,13,16],[205,1,1,16,17]]],[6,8,8,17,25,[[211,2,2,17,19],[214,2,2,19,21],[228,1,1,21,22],[230,2,2,22,24],[231,1,1,24,25]]],[8,3,2,25,27,[[250,1,1,25,26],[257,2,1,26,27]]],[9,1,1,27,28,[[281,1,1,27,28]]],[11,1,1,28,29,[[322,1,1,28,29]]],[17,2,2,29,31,[[436,2,2,29,31]]],[23,1,1,31,32,[[765,1,1,31,32]]]],[1006,1996,4364,5287,5440,5970,6026,6092,6094,6096,6099,6101,6103,6118,6119,6121,6368,6517,6534,6614,6615,7020,7091,7102,7112,7568,7806,8403,9818,12884,12886,19447]]],["end",[2,2,[[11,2,2,0,2,[[322,1,1,0,1],[333,1,1,1,2]]]],[9814,10135]]],["entry",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16605]]],["go",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17021]]],["hole",[6,2,[[1,6,2,0,2,[[77,3,1,0,1],[88,3,1,1,2]]]],[2325,2687]]],["in",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22237]]],["mind",[1,1,[[2,1,1,0,1,[[113,1,1,0,1]]]],[3458]]],["mouth",[277,260,[[0,14,13,0,13,[[3,1,1,0,1],[7,1,1,1,2],[23,1,1,2,3],[28,5,4,3,7],[41,1,1,7,8],[42,2,2,8,10],[43,2,2,10,12],[44,1,1,12,13]]],[1,8,6,13,19,[[53,6,4,13,17],[62,1,1,17,18],[72,1,1,18,19]]],[3,11,10,19,29,[[128,2,1,19,20],[132,2,2,20,22],[138,2,2,22,24],[139,3,3,24,27],[142,1,1,27,28],[151,1,1,28,29]]],[4,10,8,29,37,[[160,1,1,29,30],[163,1,1,30,31],[169,2,1,31,32],[170,1,1,32,33],[171,2,1,33,34],[175,1,1,34,35],[182,1,1,35,36],[184,1,1,36,37]]],[5,4,4,37,41,[[195,1,1,37,38],[196,3,3,38,41]]],[6,5,5,41,46,[[217,1,1,41,42],[219,1,1,42,43],[221,2,2,43,45],[228,1,1,45,46]]],[8,4,4,46,50,[[236,1,1,46,47],[237,1,1,47,48],[249,2,2,48,50]]],[9,4,4,50,54,[[267,1,1,50,51],[280,2,2,51,53],[284,1,1,53,54]]],[10,11,9,54,63,[[297,3,1,54,55],[298,2,2,55,57],[303,1,1,57,58],[307,1,1,58,59],[309,1,1,59,60],[312,3,3,60,63]]],[11,2,1,63,64,[[316,2,1,63,64]]],[12,1,1,64,65,[[353,1,1,64,65]]],[13,6,6,65,71,[[372,2,2,65,67],[384,2,2,67,69],[402,2,2,69,71]]],[17,24,24,71,95,[[438,1,1,71,72],[440,1,1,72,73],[442,1,1,73,74],[443,2,2,74,76],[444,1,1,76,77],[450,3,3,77,80],[451,2,2,80,82],[454,1,1,82,83],[455,1,1,83,84],[456,1,1,84,85],[458,2,2,85,87],[464,2,2,87,89],[466,1,1,89,90],[467,1,1,90,91],[468,1,1,91,92],[470,1,1,92,93],[475,2,2,93,95]]],[18,56,55,95,150,[[482,1,1,95,96],[487,1,1,96,97],[494,2,2,97,99],[496,1,1,99,100],[510,1,1,100,101],[511,1,1,101,102],[512,1,1,102,103],[513,1,1,103,104],[514,1,1,104,105],[515,2,2,105,107],[516,2,2,107,109],[517,1,1,109,110],[526,1,1,110,111],[527,2,2,111,113],[528,1,1,113,114],[531,1,1,114,115],[532,1,1,115,116],[535,1,1,116,117],[536,2,2,117,119],[539,1,1,119,120],[540,2,2,120,122],[543,2,2,122,124],[546,1,1,124,125],[548,2,2,125,127],[550,1,1,127,128],[555,3,3,128,131],[558,1,1,131,132],[566,1,1,132,133],[582,1,1,133,134],[584,1,1,134,135],[586,3,2,135,137],[596,6,6,137,143],[603,1,1,143,144],[615,1,1,144,145],[618,2,2,145,147],[621,2,2,147,149],[622,1,1,149,150]]],[19,48,46,150,196,[[631,2,2,150,152],[632,1,1,152,153],[633,3,2,153,155],[634,1,1,155,156],[635,2,2,156,158],[637,6,5,158,163],[638,2,2,163,165],[639,2,2,165,167],[640,2,2,167,169],[641,1,1,169,170],[642,4,4,170,174],[643,3,3,174,177],[645,4,4,177,181],[646,1,1,181,182],[647,1,1,182,183],[648,1,1,183,184],[649,1,1,184,185],[651,1,1,185,186],[653,4,4,186,190],[654,1,1,190,191],[657,2,2,191,193],[658,3,3,193,196]]],[20,5,5,196,201,[[663,2,2,196,198],[664,1,1,198,199],[668,2,2,199,201]]],[21,1,1,201,202,[[671,1,1,201,202]]],[22,21,20,202,222,[[679,1,1,202,203],[683,1,1,203,204],[684,1,1,204,205],[687,2,2,205,207],[688,1,1,207,208],[689,1,1,208,209],[697,1,1,209,210],[707,1,1,210,211],[708,1,1,211,212],[712,1,1,212,213],[718,1,1,213,214],[727,1,1,214,215],[729,1,1,215,216],[731,3,2,216,218],[735,1,1,218,219],[736,1,1,219,220],[737,1,1,220,221],[740,1,1,221,222]]],[23,14,11,222,233,[[745,2,1,222,223],[749,1,1,223,224],[753,3,3,224,227],[756,1,1,227,228],[759,1,1,228,229],[776,2,1,229,230],[778,2,1,230,231],[788,1,1,231,232],[792,1,1,232,233]]],[24,2,2,233,235,[[798,1,1,233,234],[799,1,1,234,235]]],[25,14,13,235,248,[[803,1,1,235,236],[804,3,3,236,239],[805,1,1,239,240],[817,2,2,240,242],[822,1,1,242,243],[825,1,1,243,244],[830,1,1,244,245],[834,3,2,245,247],[836,1,1,247,248]]],[26,2,2,248,250,[[859,2,2,248,250]]],[27,1,1,250,251,[[867,1,1,250,251]]],[32,4,4,251,255,[[896,1,1,251,252],[898,1,1,252,253],[899,2,2,253,255]]],[33,1,1,255,256,[[902,1,1,255,256]]],[35,1,1,256,257,[[908,1,1,256,257]]],[37,2,2,257,259,[[915,1,1,257,258],[924,1,1,258,259]]],[38,1,1,259,260,[[926,1,1,259,260]]]],[90,194,648,797,798,803,805,1279,1302,1311,1325,1326,1370,1612,1613,1616,1617,1876,2157,4067,4224,4226,4403,4413,4421,4428,4432,4499,4875,5140,5214,5370,5402,5421,5523,5722,5759,6051,6082,6086,6091,6700,6792,6864,6865,7012,7224,7241,7534,7535,8038,8359,8375,8503,8965,9000,9009,9205,9341,9405,9493,9502,9503,9637,10832,11286,11297,11563,11564,12014,12015,12905,12967,13019,13031,13050,13071,13208,13209,13233,13243,13248,13313,13338,13360,13423,13431,13541,13555,13615,13633,13652,13736,13868,13887,13982,14048,14106,14113,14182,14372,14389,14431,14441,14480,14503,14504,14513,14521,14528,14651,14684,14687,14706,14727,14753,14785,14797,14802,14831,14844,14850,14887,14890,14950,14984,14991,15029,15114,15115,15149,15227,15327,15611,15741,15757,15785,15911,15970,15986,16001,16006,16029,16117,16235,16279,16283,16313,16316,16341,16495,16514,16524,16542,16552,16599,16610,16615,16662,16667,16670,16687,16688,16697,16699,16725,16733,16749,16750,16775,16809,16821,16830,16835,16850,16863,16866,16905,16907,16908,16921,16953,16971,17007,17029,17086,17148,17150,17156,17169,17171,17271,17283,17292,17293,17310,17399,17403,17424,17505,17506,17539,17674,17753,17776,17841,17846,17864,17888,18011,18206,18219,18319,18425,18638,18689,18718,18720,18769,18800,18821,18856,18955,19072,19183,19187,19195,19251,19334,19735,19804,20036,20108,20348,20383,20500,20504,20505,20529,20543,20818,20825,20966,21083,21204,21302,21311,21357,22018,22031,22172,22624,22660,22669,22680,22724,22833,22944,23080,23109]]],["mouths",[11,11,[[0,1,1,0,1,[[43,1,1,0,1]]],[4,1,1,1,2,[[183,1,1,1,2]]],[18,5,5,2,7,[[499,1,1,2,3],[555,1,1,3,4],[592,1,1,4,5],[612,2,2,5,7]]],[22,1,1,7,8,[[730,1,1,7,8]]],[23,1,1,8,9,[[788,1,1,8,9]]],[24,1,1,9,10,[[799,1,1,9,10]]],[32,1,1,10,11,[[895,1,1,10,11]]]],[1332,5747,14217,15143,15835,16191,16192,18711,20035,20400,22613]]],["parts",[1,1,[[37,1,1,0,1,[[923,1,1,0,1]]]],[23067]]],["portion",[2,2,[[4,1,1,0,1,[[173,1,1,0,1]]],[11,1,1,1,2,[[314,1,1,1,2]]]],[5464,9560]]],["saith",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8454]]],["sayings",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14661]]],["sentence",[1,1,[[4,1,1,0,1,[[169,1,1,0,1]]]],[5375]]],["skirts",[1,1,[[18,1,1,0,1,[[610,1,1,0,1]]]],[16171]]],["sound",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22455]]],["speech",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1611]]],["talk",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17506]]],["tenor",[2,2,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,1,1,1,2,[[83,1,1,1,2]]]],[1297,2523]]],["to",[15,14,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,4,4,1,5,[[61,1,1,1,2],[65,3,3,2,5]]],[2,3,2,5,7,[[114,2,1,5,6],[116,1,1,6,7]]],[3,5,5,7,12,[[122,1,1,7,8],[123,2,2,8,10],[142,1,1,10,11],[151,1,1,11,12]]],[13,1,1,12,13,[[397,1,1,12,13]]],[19,1,1,13,14,[[654,1,1,13,14]]]],[1432,1820,1963,1965,1968,3485,3586,3844,3855,3857,4543,4853,11856,17190]]],["twoedged",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16521]]],["unto",[3,3,[[2,2,2,0,2,[[114,2,2,0,2]]],[3,1,1,2,3,[[123,1,1,2,3]]]],[3520,3521,3858]]],["when",[1,1,[[3,1,1,0,1,[[125,1,1,0,1]]]],[3982]]],["wish",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13656]]],["word",[15,14,[[0,1,1,0,1,[[40,1,1,0,1]]],[3,8,7,1,8,[[119,2,2,1,3],[120,1,1,3,4],[136,1,1,4,5],[138,1,1,5,6],[143,2,1,6,7],[152,1,1,7,8]]],[4,2,2,8,10,[[173,1,1,8,9],[186,1,1,9,10]]],[5,2,2,10,12,[[205,1,1,10,11],[208,1,1,11,12]]],[10,1,1,12,13,[[303,1,1,12,13]]],[12,1,1,13,14,[[349,1,1,13,14]]]],[1235,3708,3743,3788,4335,4393,4575,4884,5452,5844,6371,6435,9210,10743]]]]},{"k":"H6311","v":[["*",[82,57,[[0,3,3,0,3,[[18,1,1,0,1],[21,1,1,1,2],[39,1,1,2,3]]],[3,3,3,3,6,[[138,1,1,3,4],[148,2,2,4,6]]],[4,5,4,6,10,[[157,2,2,6,8],[164,1,1,8,9],[181,2,1,9,10]]],[5,2,2,10,12,[[204,2,2,10,12]]],[6,3,3,12,15,[[214,1,1,12,13],[228,1,1,13,14],[229,1,1,14,15]]],[7,2,2,15,17,[[235,2,2,15,17]]],[8,3,3,17,20,[[251,1,1,17,18],[256,1,1,18,19],[258,1,1,19,20]]],[9,1,1,20,21,[[286,1,1,20,21]]],[10,4,4,21,25,[[292,1,1,21,22],[309,2,2,22,24],[312,1,1,24,25]]],[11,8,7,25,32,[[314,3,3,25,28],[315,2,1,28,29],[319,2,2,29,31],[322,1,1,31,32]]],[12,1,1,32,33,[[366,1,1,32,33]]],[13,1,1,33,34,[[384,1,1,33,34]]],[14,1,1,34,35,[[406,1,1,34,35]]],[17,2,1,35,36,[[473,2,1,35,36]]],[18,1,1,36,37,[[609,1,1,36,37]]],[22,4,2,37,39,[[700,3,1,37,38],[730,1,1,38,39]]],[25,38,18,39,57,[[809,3,3,39,42],[841,25,10,42,52],[842,10,5,52,57]]]],[469,552,1187,4383,4724,4734,5056,5084,5248,5694,6299,6301,6619,6996,7033,7191,7192,7606,7780,7813,8558,8800,9396,9400,9487,9553,9555,9557,9587,9710,9711,9816,11181,11548,12112,13804,16165,18068,18701,20610,20613,20621,21487,21489,21498,21503,21511,21514,21516,21518,21525,21526,21527,21528,21541,21545,21552]]],["+",[36,16,[[17,1,1,0,1,[[473,1,1,0,1]]],[25,35,15,1,16,[[841,25,10,1,11],[842,10,5,11,16]]]],[13804,21487,21489,21498,21503,21511,21514,21516,21518,21525,21526,21527,21528,21541,21545,21552]]],["Here",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9587]]],["here",[43,40,[[0,3,3,0,3,[[18,1,1,0,1],[21,1,1,1,2],[39,1,1,2,3]]],[3,3,3,3,6,[[138,1,1,3,4],[148,2,2,4,6]]],[4,5,4,6,10,[[157,2,2,6,8],[164,1,1,8,9],[181,2,1,9,10]]],[5,2,2,10,12,[[204,2,2,10,12]]],[6,3,3,12,15,[[214,1,1,12,13],[228,1,1,13,14],[229,1,1,14,15]]],[7,2,2,15,17,[[235,2,2,15,17]]],[8,2,2,17,19,[[256,1,1,17,18],[258,1,1,18,19]]],[9,1,1,19,20,[[286,1,1,19,20]]],[10,4,4,20,24,[[292,1,1,20,21],[309,2,2,21,23],[312,1,1,23,24]]],[11,7,7,24,31,[[314,3,3,24,27],[315,1,1,27,28],[319,2,2,28,30],[322,1,1,30,31]]],[12,1,1,31,32,[[366,1,1,31,32]]],[13,1,1,32,33,[[384,1,1,32,33]]],[17,1,1,33,34,[[473,1,1,33,34]]],[18,1,1,34,35,[[609,1,1,34,35]]],[22,4,2,35,37,[[700,3,1,35,36],[730,1,1,36,37]]],[25,3,3,37,40,[[809,3,3,37,40]]]],[469,552,1187,4383,4724,4734,5056,5084,5248,5694,6299,6301,6619,6996,7033,7191,7192,7780,7813,8558,8800,9396,9400,9487,9553,9555,9557,9587,9710,9711,9816,11181,11548,13804,16165,18068,18701,20610,20613,20621]]],["hither",[2,2,[[8,1,1,0,1,[[251,1,1,0,1]]],[14,1,1,1,2,[[406,1,1,1,2]]]],[7606,12112]]]]},{"k":"H6312","v":[["*",[4,4,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[6,1,1,2,3,[[220,1,1,2,3]]],[12,1,1,3,4,[[344,1,1,3,4]]]],[1399,4512,6812,10536]]],["Phuvah",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1399]]],["Pua",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4512]]],["Puah",[2,2,[[6,1,1,0,1,[[220,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]]],[6812,10536]]]]},{"k":"H6313","v":[["*",[4,4,[[0,1,1,0,1,[[44,1,1,0,1]]],[18,2,2,1,3,[[515,1,1,1,2],[554,1,1,2,3]]],[34,1,1,3,4,[[903,1,1,3,4]]]],[1384,14498,15095,22735]]],["ceased",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15095]]],["fainted",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1384]]],["feeble",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14498]]],["slacked",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22735]]]]},{"k":"H6314","v":[["rest",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20350]]]]},{"k":"H6315","v":[["*",[14,14,[[18,2,2,0,2,[[487,1,1,0,1],[489,1,1,1,2]]],[19,7,7,2,9,[[633,1,1,2,3],[639,1,1,3,4],[641,2,2,4,6],[646,2,2,6,8],[656,1,1,8,9]]],[21,3,3,9,12,[[672,1,1,9,10],[674,2,2,10,12]]],[25,1,1,12,13,[[822,1,1,12,13]]],[34,1,1,13,14,[[904,1,1,13,14]]]],[14046,14071,16559,16736,16777,16797,16930,16934,17232,17571,17588,17598,20975,22751]]],["+",[2,2,[[19,1,1,0,1,[[656,1,1,0,1]]],[21,1,1,1,2,[[674,1,1,1,2]]]],[17232,17588]]],["blow",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20975]]],["break",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17571]]],["puffeth",[2,2,[[18,2,2,0,2,[[487,1,1,0,1],[489,1,1,1,2]]]],[14046,14071]]],["speak",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22751]]],["speaketh",[5,5,[[19,5,5,0,5,[[633,1,1,0,1],[639,1,1,1,2],[641,1,1,2,3],[646,2,2,3,5]]]],[16559,16736,16797,16930,16934]]],["upon",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17598]]],["utter",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16777]]]]},{"k":"H6316","v":[["*",[7,7,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[23,1,1,2,3,[[790,1,1,2,3]]],[25,3,3,3,6,[[828,1,1,3,4],[831,1,1,4,5],[839,1,1,5,6]]],[33,1,1,6,7,[[902,1,1,6,7]]]],[240,10260,20054,21131,21209,21430,22721]]],["Libya",[2,2,[[25,2,2,0,2,[[831,1,1,0,1],[839,1,1,1,2]]]],[21209,21430]]],["Libyans",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20054]]],["Phut",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[240,21131]]],["Put",[2,2,[[12,1,1,0,1,[[338,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[10260,22721]]]]},{"k":"H6317","v":[["Putiel",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1680]]]]},{"k":"H6318","v":[["Potiphar",[2,2,[[0,2,2,0,2,[[36,1,1,0,1],[38,1,1,1,2]]]],[1119,1150]]]]},{"k":"H6319","v":[["Potipherah",[3,3,[[0,3,3,0,3,[[40,2,2,0,2],[45,1,1,2,3]]]],[1240,1245,1406]]]]},{"k":"H6320","v":[["*",[4,4,[[11,1,1,0,1,[[321,1,1,0,1]]],[12,1,1,1,2,[[366,1,1,1,2]]],[22,1,1,2,3,[[732,1,1,2,3]]],[23,1,1,3,4,[[748,1,1,3,4]]]],[9786,11166,18734,19057]]],["+",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9786]]],["colours",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18734]]],["glistering",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11166]]],["painting",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19057]]]]},{"k":"H6321","v":[["beans",[2,2,[[9,1,1,0,1,[[283,1,1,0,1]]],[25,1,1,1,2,[[805,1,1,1,2]]]],[8477,20538]]]]},{"k":"H6322","v":[["Pul",[4,3,[[11,2,1,0,1,[[327,2,1,0,1]]],[12,1,1,1,2,[[342,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]]],[9944,10454,18941]]]]},{"k":"H6323","v":[["distracted",[1,1,[[18,1,1,0,1,[[565,1,1,0,1]]]],[15323]]]]},{"k":"H6324","v":[["Punites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4512]]]]},{"k":"H6325","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4802,4803]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4803]]],["Punon",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4802]]]]},{"k":"H6326","v":[["Puah",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1547]]]]},{"k":"H6327","v":[["*",[67,66,[[0,5,5,0,5,[[9,1,1,0,1],[10,3,3,1,4],[48,1,1,4,5]]],[1,1,1,5,6,[[54,1,1,5,6]]],[3,1,1,6,7,[[126,1,1,6,7]]],[4,3,3,7,10,[[156,1,1,7,8],[180,1,1,8,9],[182,1,1,9,10]]],[8,3,3,10,13,[[246,1,1,10,11],[248,1,1,11,12],[249,1,1,12,13]]],[9,3,3,13,16,[[284,1,1,13,14],[286,1,1,14,15],[288,1,1,15,16]]],[10,1,1,16,17,[[312,1,1,16,17]]],[11,1,1,17,18,[[337,1,1,17,18]]],[13,1,1,18,19,[[384,1,1,18,19]]],[15,1,1,19,20,[[413,1,1,19,20]]],[17,5,5,20,25,[[451,1,1,20,21],[453,1,1,21,22],[472,1,1,22,23],[473,1,1,23,24],[475,1,1,24,25]]],[18,3,3,25,28,[[495,1,1,25,26],[545,1,1,26,27],[621,1,1,27,28]]],[19,1,1,28,29,[[632,1,1,28,29]]],[22,3,3,29,32,[[702,1,1,29,30],[706,1,1,30,31],[719,1,1,31,32]]],[23,10,10,32,42,[[753,1,1,32,33],[754,1,1,33,34],[757,1,1,34,35],[762,1,1,35,36],[767,3,3,36,39],[774,1,1,39,40],[784,1,1,40,41],[796,1,1,41,42]]],[25,19,18,42,60,[[812,2,2,42,44],[813,1,1,44,45],[821,3,3,45,48],[823,1,1,48,49],[829,1,1,49,50],[830,2,2,50,52],[831,2,2,52,54],[835,5,4,54,58],[837,1,1,58,59],[847,1,1,59,60]]],[33,1,1,60,61,[[901,1,1,60,61]]],[34,2,2,61,63,[[905,2,2,61,63]]],[35,1,1,63,64,[[908,1,1,63,64]]],[37,2,2,64,66,[[911,1,1,64,65],[923,1,1,65,66]]]],[252,270,274,275,1480,1644,4023,5031,5675,5711,7456,7493,7542,8486,8576,8617,9497,10227,11558,12304,13250,13287,13780,13817,13875,14132,14901,16311,16533,18096,18189,18467,19191,19222,19290,19401,19485,19486,19513,19678,19956,20284,20671,20672,20695,20918,20929,20936,20991,21182,21195,21196,21227,21230,21318,21319,21325,21334,21378,21673,22700,22774,22782,22830,22895,23066]]],["+",[7,7,[[0,1,1,0,1,[[10,1,1,0,1]]],[15,1,1,1,2,[[413,1,1,1,2]]],[23,2,2,2,4,[[767,2,2,2,4]]],[25,3,3,4,7,[[830,1,1,4,5],[831,2,2,5,7]]]],[274,12304,19485,19486,21195,21227,21230]]],["abroad",[8,8,[[0,3,3,0,3,[[9,1,1,0,1],[10,2,2,1,3]]],[1,1,1,3,4,[[54,1,1,3,4]]],[17,1,1,4,5,[[475,1,1,4,5]]],[22,2,2,5,7,[[702,1,1,5,6],[706,1,1,6,7]]],[37,1,1,7,8,[[911,1,1,7,8]]]],[252,270,275,1644,13875,18096,18189,22895]]],["breaketh",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19513]]],["dispersed",[2,2,[[19,1,1,0,1,[[632,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[16533,22830]]],["drive",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13287]]],["pieces",[2,2,[[17,1,1,0,1,[[451,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[13250,22700]]],["retired",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8576]]],["scatter",[12,12,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[180,1,1,2,3]]],[18,1,1,3,4,[[621,1,1,3,4]]],[22,1,1,4,5,[[719,1,1,4,5]]],[23,3,3,5,8,[[753,1,1,5,6],[757,1,1,6,7],[762,1,1,7,8]]],[25,3,3,8,11,[[813,1,1,8,9],[821,1,1,9,10],[823,1,1,10,11]]],[34,1,1,11,12,[[905,1,1,11,12]]]],[1480,5031,5675,16311,18467,19191,19290,19401,20695,20918,20991,22782]]],["scattered",[30,29,[[3,1,1,0,1,[[126,1,1,0,1]]],[4,1,1,1,2,[[182,1,1,1,2]]],[8,2,2,2,4,[[246,1,1,2,3],[248,1,1,3,4]]],[9,2,2,4,6,[[284,1,1,4,5],[288,1,1,5,6]]],[10,1,1,6,7,[[312,1,1,6,7]]],[11,1,1,7,8,[[337,1,1,7,8]]],[13,1,1,8,9,[[384,1,1,8,9]]],[18,2,2,9,11,[[495,1,1,9,10],[545,1,1,10,11]]],[23,4,4,11,15,[[754,1,1,11,12],[774,1,1,12,13],[784,1,1,13,14],[796,1,1,14,15]]],[25,13,12,15,27,[[812,2,2,15,17],[821,2,2,17,19],[829,1,1,19,20],[830,1,1,20,21],[835,5,4,21,25],[837,1,1,25,26],[847,1,1,26,27]]],[34,1,1,27,28,[[905,1,1,27,28]]],[37,1,1,28,29,[[923,1,1,28,29]]]],[4023,5711,7456,7493,8486,8617,9497,10227,11558,14132,14901,19222,19678,19956,20284,20671,20672,20929,20936,21182,21196,21318,21319,21325,21334,21378,21673,22774,23066]]],["scattereth",[2,2,[[17,2,2,0,2,[[472,1,1,0,1],[473,1,1,1,2]]]],[13780,13817]]],["yourselves",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7542]]]]},{"k":"H6328","v":[["*",[2,2,[[22,1,1,0,1,[[706,1,1,0,1]]],[23,1,1,1,2,[[754,1,1,1,2]]]],[18171,19205]]],["move",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19205]]],["stumble",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18171]]]]},{"k":"H6329","v":[["*",[7,7,[[18,2,2,0,2,[[617,1,1,0,1],[621,1,1,1,2]]],[19,4,4,2,6,[[630,1,1,2,3],[635,1,1,3,4],[639,1,1,4,5],[645,1,1,5,6]]],[22,1,1,6,7,[[736,1,1,6,7]]]],[16271,16318,16468,16637,16721,16923,18796]]],["affording",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16318]]],["further",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16271]]],["getteth",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16468]]],["obtain",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16637]]],["obtaineth",[2,2,[[19,2,2,0,2,[[639,1,1,0,1],[645,1,1,1,2]]]],[16721,16923]]],["out",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18796]]]]},{"k":"H6330","v":[["grief",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7892]]]]},{"k":"H6331","v":[["*",[2,2,[[18,2,2,0,2,[[510,1,1,0,1],[566,1,1,1,2]]]],[14376,15359]]],["nought",[1,1,[[18,1,1,0,1,[[510,1,1,0,1]]]],[14376]]],["take",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15359]]]]},{"k":"H6332","v":[["*",[8,7,[[16,8,7,0,7,[[428,1,1,0,1],[434,7,6,1,7]]]],[12754,12858,12860,12862,12863,12865,12866]]],["Pur",[3,3,[[16,3,3,0,3,[[428,1,1,0,1],[434,2,2,1,3]]]],[12754,12858,12860]]],["Purim",[5,5,[[16,5,5,0,5,[[434,5,5,0,5]]]],[12860,12862,12863,12865,12866]]]]},{"k":"H6333","v":[["*",[2,2,[[22,1,1,0,1,[[741,1,1,0,1]]],[36,1,1,1,2,[[910,1,1,1,2]]]],[18869,22871]]],["press",[1,1,[[36,1,1,0,1,[[910,1,1,0,1]]]],[22871]]],["winepress",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18869]]]]},{"k":"H6334","v":[["Poratha",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12842]]]]},{"k":"H6335","v":[["*",[4,4,[[23,1,1,0,1,[[794,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]],[34,1,1,2,3,[[903,1,1,2,3]]],[38,1,1,3,4,[[928,1,1,3,4]]]],[20177,22730,22739,23140]]],["fat",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20177]]],["scattered",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22730]]],["spread",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22739]]],["up",[1,1,[[38,1,1,0,1,[[928,1,1,0,1]]]],[23140]]]]},{"k":"H6336","v":[["Puhites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10359]]]]},{"k":"H6337","v":[["*",[9,9,[[17,1,1,0,1,[[463,1,1,0,1]]],[18,3,3,1,4,[[496,1,1,1,2],[498,1,1,2,3],[596,1,1,3,4]]],[19,1,1,4,5,[[635,1,1,4,5]]],[21,2,2,5,7,[[675,2,2,5,7]]],[22,1,1,7,8,[[691,1,1,7,8]]],[24,1,1,8,9,[[800,1,1,8,9]]]],[13521,14178,14194,16025,16621,17609,17613,17918,20422]]],["+",[4,4,[[18,2,2,0,2,[[496,1,1,0,1],[596,1,1,1,2]]],[19,1,1,2,3,[[635,1,1,2,3]]],[22,1,1,3,4,[[691,1,1,3,4]]]],[14178,16025,16621,17918]]],["gold",[5,5,[[17,1,1,0,1,[[463,1,1,0,1]]],[18,1,1,1,2,[[498,1,1,1,2]]],[21,2,2,2,4,[[675,2,2,2,4]]],[24,1,1,4,5,[[800,1,1,4,5]]]],[13521,14194,17609,17613,20422]]]]},{"k":"H6338","v":[["best",[1,1,[[10,1,1,0,1,[[300,1,1,0,1]]]],[9097]]]]},{"k":"H6339","v":[["*",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[9,1,1,1,2,[[272,1,1,1,2]]]],[1497,8173]]],["leaping",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8173]]],["strong",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1497]]]]},{"k":"H6340","v":[["*",[10,10,[[16,1,1,0,1,[[428,1,1,0,1]]],[18,5,5,1,6,[[530,1,1,1,2],[566,1,1,2,3],[589,1,1,3,4],[618,1,1,4,5],[624,1,1,5,6]]],[19,1,1,6,7,[[638,1,1,6,7]]],[23,2,2,7,9,[[747,1,1,7,8],[794,1,1,8,9]]],[28,1,1,9,10,[[878,1,1,9,10]]]],[12755,14724,15336,15812,16283,16367,16712,19015,20183,22345]]],["+",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19015]]],["abroad",[1,1,[[16,1,1,0,1,[[428,1,1,0,1]]]],[12755]]],["dispersed",[1,1,[[18,1,1,0,1,[[589,1,1,0,1]]]],[15812]]],["scattered",[5,5,[[18,3,3,0,3,[[530,1,1,0,1],[566,1,1,1,2],[618,1,1,2,3]]],[23,1,1,3,4,[[794,1,1,3,4]]],[28,1,1,4,5,[[878,1,1,4,5]]]],[14724,15336,16283,20183,22345]]],["scattereth",[2,2,[[18,1,1,0,1,[[624,1,1,0,1]]],[19,1,1,1,2,[[638,1,1,1,2]]]],[16367,16712]]]]},{"k":"H6341","v":[["*",[27,25,[[1,1,1,0,1,[[88,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[5,1,1,2,3,[[209,1,1,2,3]]],[17,2,2,3,5,[[453,1,1,3,4],[457,1,1,4,5]]],[18,9,8,5,13,[[488,1,1,5,6],[546,1,1,6,7],[568,1,1,7,8],[596,1,1,8,9],[601,2,1,9,10],[617,1,1,10,11],[618,1,1,11,12],[619,1,1,12,13]]],[19,2,2,13,15,[[634,1,1,13,14],[649,1,1,14,15]]],[20,1,1,15,16,[[667,1,1,15,16]]],[22,3,3,16,19,[[686,1,1,16,17],[702,2,2,17,19]]],[23,3,3,19,22,[[762,1,1,19,20],[792,2,2,20,22]]],[27,2,2,22,24,[[866,1,1,22,23],[870,1,1,23,24]]],[29,2,1,24,25,[[881,2,1,24,25]]]],[2667,4232,6473,13285,13399,14065,14957,15398,16008,16109,16268,16285,16289,16598,17020,17487,17821,18112,18113,19406,20123,20124,22153,22216,22400]]],["+",[2,2,[[18,2,2,0,2,[[568,1,1,0,1],[601,1,1,1,2]]]],[15398,16109]]],["gin",[2,2,[[17,1,1,0,1,[[453,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]]],[13285,17821]]],["plates",[2,2,[[1,1,1,0,1,[[88,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]]],[2667,4232]]],["snare",[15,14,[[18,5,5,0,5,[[546,1,1,0,1],[596,1,1,1,2],[601,1,1,2,3],[617,1,1,3,4],[619,1,1,4,5]]],[19,1,1,5,6,[[634,1,1,5,6]]],[20,1,1,6,7,[[667,1,1,6,7]]],[22,2,2,7,9,[[702,2,2,7,9]]],[23,2,2,9,11,[[792,2,2,9,11]]],[27,2,2,11,13,[[866,1,1,11,12],[870,1,1,12,13]]],[29,2,1,13,14,[[881,2,1,13,14]]]],[14957,16008,16109,16268,16289,16598,17487,18112,18113,20123,20124,22153,22216,22400]]],["snares",[6,6,[[5,1,1,0,1,[[209,1,1,0,1]]],[17,1,1,1,2,[[457,1,1,1,2]]],[18,2,2,2,4,[[488,1,1,2,3],[618,1,1,3,4]]],[19,1,1,4,5,[[649,1,1,4,5]]],[23,1,1,5,6,[[762,1,1,5,6]]]],[6473,13399,14065,16285,17020,19406]]]]},{"k":"H6342","v":[["*",[25,25,[[4,2,2,0,2,[[180,2,2,0,2]]],[17,3,3,2,5,[[438,1,1,2,3],[439,1,1,3,4],[458,1,1,4,5]]],[18,5,5,5,10,[[491,1,1,5,6],[504,1,1,6,7],[530,1,1,7,8],[555,1,1,8,9],[596,1,1,9,10]]],[19,2,2,10,12,[[630,1,1,10,11],[655,1,1,11,12]]],[22,8,8,12,20,[[690,1,1,12,13],[697,2,2,13,15],[711,1,1,15,16],[722,2,2,16,18],[729,1,1,18,19],[738,1,1,19,20]]],[23,3,3,20,23,[[777,1,1,20,21],[780,2,2,21,23]]],[27,1,1,23,24,[[864,1,1,23,24]]],[32,1,1,24,25,[[899,1,1,24,25]]]],[5677,5678,12929,12944,13434,14085,14286,14724,15166,16059,16479,17210,17902,18020,18021,18293,18541,18544,18686,18826,19784,19858,19866,22133,22681]]],["+",[4,4,[[17,1,1,0,1,[[438,1,1,0,1]]],[18,2,2,1,3,[[491,1,1,1,2],[530,1,1,2,3]]],[27,1,1,3,4,[[864,1,1,3,4]]]],[12929,14085,14724,22133]]],["Fear",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18541]]],["afraid",[9,9,[[17,1,1,0,1,[[458,1,1,0,1]]],[18,1,1,1,2,[[504,1,1,1,2]]],[19,1,1,2,3,[[630,1,1,2,3]]],[22,3,3,3,6,[[690,1,1,3,4],[697,1,1,4,5],[711,1,1,5,6]]],[23,2,2,6,8,[[780,2,2,6,8]]],[32,1,1,8,9,[[899,1,1,8,9]]]],[13434,14286,16479,17902,18021,18293,19858,19866,22681]]],["awe",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16059]]],["fear",[6,6,[[4,2,2,0,2,[[180,2,2,0,2]]],[22,3,3,2,5,[[697,1,1,2,3],[722,1,1,3,4],[738,1,1,4,5]]],[23,1,1,5,6,[[777,1,1,5,6]]]],[5677,5678,18020,18544,18826,19784]]],["feared",[2,2,[[18,1,1,0,1,[[555,1,1,0,1]]],[22,1,1,1,2,[[729,1,1,1,2]]]],[15166,18686]]],["feareth",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17210]]],["shake",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12944]]]]},{"k":"H6343","v":[["*",[49,48,[[0,2,2,0,2,[[30,2,2,0,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[4,3,3,3,6,[[154,1,1,3,4],[163,1,1,4,5],[180,1,1,5,6]]],[8,1,1,6,7,[[246,1,1,6,7]]],[12,1,1,7,8,[[351,1,1,7,8]]],[13,4,4,8,12,[[380,1,1,8,9],[383,1,1,9,10],[385,1,1,10,11],[386,1,1,11,12]]],[16,3,3,12,15,[[433,1,1,12,13],[434,2,2,13,15]]],[17,10,10,15,25,[[438,1,1,15,16],[439,1,1,16,17],[448,1,1,17,18],[450,1,1,18,19],[456,1,1,19,20],[457,1,1,20,21],[460,1,1,21,22],[466,1,1,22,23],[474,2,2,23,25]]],[18,9,8,25,33,[[491,1,1,25,26],[508,1,1,26,27],[513,1,1,27,28],[530,2,1,28,29],[541,1,1,29,30],[568,1,1,30,31],[582,1,1,31,32],[596,1,1,32,33]]],[19,4,4,33,37,[[628,3,3,33,36],[630,1,1,36,37]]],[21,1,1,37,38,[[673,1,1,37,38]]],[22,5,5,38,43,[[680,3,3,38,41],[702,2,2,41,43]]],[23,4,4,43,47,[[774,1,1,43,44],[792,2,2,44,46],[793,1,1,46,47]]],[24,1,1,47,48,[[799,1,1,47,48]]]],[915,926,1936,4963,5233,5678,7452,10791,11489,11533,11583,11616,12834,12836,12837,12929,12944,13164,13224,13364,13399,13463,13611,13850,13856,14085,14342,14439,14724,14851,15400,15644,16018,16426,16427,16433,16480,17579,17695,17704,17706,18112,18113,19672,20123,20124,20132,20401]]],["+",[11,11,[[4,1,1,0,1,[[180,1,1,0,1]]],[17,2,2,1,3,[[438,1,1,1,2],[456,1,1,2,3]]],[18,5,5,3,8,[[491,1,1,3,4],[530,1,1,4,5],[541,1,1,5,6],[568,1,1,6,7],[596,1,1,7,8]]],[19,2,2,8,10,[[628,1,1,8,9],[630,1,1,9,10]]],[21,1,1,10,11,[[673,1,1,10,11]]]],[5678,12929,13364,14085,14724,14851,15400,16018,16433,16480,17579]]],["Fear",[4,4,[[17,1,1,0,1,[[439,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]],[24,1,1,3,4,[[799,1,1,3,4]]]],[12944,18112,20123,20401]]],["dread",[3,3,[[1,1,1,0,1,[[64,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]],[17,1,1,2,3,[[448,1,1,2,3]]]],[1936,4963,13164]]],["dreadful",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13224]]],["fear",[29,29,[[0,2,2,0,2,[[30,2,2,0,2]]],[4,1,1,2,3,[[163,1,1,2,3]]],[8,1,1,3,4,[[246,1,1,3,4]]],[12,1,1,4,5,[[351,1,1,4,5]]],[13,4,4,5,9,[[380,1,1,5,6],[383,1,1,6,7],[385,1,1,7,8],[386,1,1,8,9]]],[16,3,3,9,12,[[433,1,1,9,10],[434,2,2,10,12]]],[17,4,4,12,16,[[457,1,1,12,13],[460,1,1,13,14],[474,2,2,14,16]]],[18,4,4,16,20,[[508,1,1,16,17],[513,1,1,17,18],[530,1,1,18,19],[582,1,1,19,20]]],[19,2,2,20,22,[[628,2,2,20,22]]],[22,4,4,22,26,[[680,3,3,22,25],[702,1,1,25,26]]],[23,3,3,26,29,[[774,1,1,26,27],[792,1,1,27,28],[793,1,1,28,29]]]],[915,926,5233,7452,10791,11489,11533,11583,11616,12834,12836,12837,13399,13463,13850,13856,14342,14439,14724,15644,16426,16427,17695,17704,17706,18113,19672,20124,20132]]],["terror",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13611]]]]},{"k":"H6344","v":[["stones",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13881]]]]},{"k":"H6345","v":[["fear",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18984]]]]},{"k":"H6346","v":[["*",[28,27,[[10,2,2,0,2,[[300,1,1,0,1],[310,1,1,1,2]]],[11,1,1,2,3,[[330,1,1,2,3]]],[13,1,1,3,4,[[375,1,1,3,4]]],[14,1,1,4,5,[[410,1,1,4,5]]],[15,8,7,5,12,[[414,2,2,5,7],[415,1,1,7,8],[417,4,3,8,11],[424,1,1,11,12]]],[16,3,3,12,15,[[428,1,1,12,13],[433,1,1,13,14],[434,1,1,14,15]]],[22,1,1,15,16,[[714,1,1,15,16]]],[23,3,3,16,19,[[795,3,3,16,19]]],[25,3,3,19,22,[[824,3,3,19,22]]],[36,4,4,22,26,[[909,2,2,22,24],[910,2,2,24,26]]],[38,1,1,26,27,[[925,1,1,26,27]]]],[9094,9432,10048,11378,12237,12314,12316,12334,12396,12397,12400,12650,12759,12826,12837,18339,20235,20240,20269,21013,21019,21030,22841,22854,22857,22876,23097]]],["captain",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]]],[10048,18339]]],["captains",[7,7,[[10,1,1,0,1,[[310,1,1,0,1]]],[23,3,3,1,4,[[795,3,3,1,4]]],[25,3,3,4,7,[[824,3,3,4,7]]]],[9432,20235,20240,20269,21013,21019,21030]]],["deputies",[2,2,[[16,2,2,0,2,[[433,1,1,0,1],[434,1,1,1,2]]]],[12826,12837]]],["governor",[10,9,[[15,5,4,0,4,[[415,1,1,0,1],[417,3,2,1,3],[424,1,1,3,4]]],[36,4,4,4,8,[[909,2,2,4,6],[910,2,2,6,8]]],[38,1,1,8,9,[[925,1,1,8,9]]]],[12334,12396,12400,12650,22841,22854,22857,22876,23097]]],["governors",[7,7,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]],[14,1,1,2,3,[[410,1,1,2,3]]],[15,3,3,3,6,[[414,2,2,3,5],[417,1,1,5,6]]],[16,1,1,6,7,[[428,1,1,6,7]]]],[9094,11378,12237,12314,12316,12397,12759]]]]},{"k":"H6347","v":[["*",[10,10,[[14,6,6,0,6,[[407,3,3,0,3],[408,3,3,3,6]]],[26,4,4,6,10,[[852,3,3,6,9],[855,1,1,9,10]]]],[12137,12140,12148,12157,12158,12164,21809,21810,21834,21912]]],["captains",[4,4,[[26,4,4,0,4,[[852,3,3,0,3],[855,1,1,3,4]]]],[21809,21810,21834,21912]]],["governor",[6,6,[[14,6,6,0,6,[[407,3,3,0,3],[408,3,3,3,6]]]],[12137,12140,12148,12157,12158,12164]]]]},{"k":"H6348","v":[["light",[2,2,[[6,1,1,0,1,[[219,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[6758,22824]]]]},{"k":"H6349","v":[["Unstable",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1477]]]]},{"k":"H6350","v":[["lightness",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19516]]]]},{"k":"H6351","v":[["snared",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18502]]]]},{"k":"H6352","v":[["coals",[3,3,[[19,1,1,0,1,[[653,1,1,0,1]]],[22,2,2,1,3,[[722,1,1,1,2],[732,1,1,2,3]]]],[17162,18545,18739]]]]},{"k":"H6353","v":[["potters'",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21799]]]]},{"k":"H6354","v":[["*",[10,8,[[9,2,2,0,2,[[283,1,1,0,1],[284,1,1,1,2]]],[22,3,2,2,4,[[702,3,2,2,4]]],[23,4,3,4,7,[[792,4,3,4,7]]],[24,1,1,7,8,[[799,1,1,7,8]]]],[8458,8495,18112,18113,20108,20123,20124,20401]]],["hole's",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20108]]],["pit",[8,6,[[9,2,2,0,2,[[283,1,1,0,1],[284,1,1,1,2]]],[22,3,2,2,4,[[702,3,2,2,4]]],[23,3,2,4,6,[[792,3,2,4,6]]]],[8458,8495,18112,18113,20123,20124]]],["snare",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20401]]]]},{"k":"H6355","v":[["Pahathmoab",[6,6,[[14,3,3,0,3,[[404,1,1,0,1],[410,1,1,1,2],[412,1,1,2,3]]],[15,3,3,3,6,[[415,1,1,3,4],[419,1,1,4,5],[422,1,1,5,6]]]],[12033,12205,12282,12338,12431,12563]]]]},{"k":"H6356","v":[["inward",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3107]]]]},{"k":"H6357","v":[["topaz",[4,4,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[17,1,1,2,3,[[463,1,1,2,3]]],[25,1,1,3,4,[[829,1,1,3,4]]]],[2310,2674,13523,21170]]]]},{"k":"H6358","v":[["open",[4,4,[[10,4,4,0,4,[[296,4,4,0,4]]]],[8914,8925,8928,8931]]]]},{"k":"H6359","v":[]},{"k":"H6360","v":[["*",[3,3,[[22,1,1,0,1,[[719,1,1,0,1]]],[23,2,2,1,3,[[767,1,1,1,2],[794,1,1,2,3]]]],[18458,19513,20189]]],["+",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18458]]],["hammer",[2,2,[[23,2,2,0,2,[[767,1,1,0,1],[794,1,1,1,2]]]],[19513,20189]]]]},{"k":"H6361","v":[["hosen",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21828]]]]},{"k":"H6362","v":[["*",[5,5,[[8,1,1,0,1,[[254,1,1,0,1]]],[12,1,1,1,2,[[346,1,1,1,2]]],[13,1,1,2,3,[[389,1,1,2,3]]],[18,1,1,3,4,[[499,1,1,3,4]]],[19,1,1,4,5,[[644,1,1,4,5]]]],[7716,10648,11664,14211,16887]]],["away",[1,1,[[8,1,1,0,1,[[254,1,1,0,1]]]],[7716]]],["dismissed",[1,1,[[13,1,1,0,1,[[389,1,1,0,1]]]],[11664]]],["free",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10648]]],["out",[2,2,[[18,1,1,0,1,[[499,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]]],[14211,16887]]]]},{"k":"H6363","v":[["*",[12,10,[[1,8,6,0,6,[[62,5,4,0,4],[83,3,2,4,6]]],[3,3,3,6,9,[[119,1,1,6,7],[124,1,1,7,8],[134,1,1,8,9]]],[25,1,1,9,10,[[821,1,1,9,10]]]],[1869,1879,1880,1882,2515,2516,3704,3955,4272,20921]]],["firstling",[4,4,[[1,4,4,0,4,[[62,2,2,0,2],[83,2,2,2,4]]]],[1879,1880,2515,2516]]],["open",[1,1,[[3,1,1,0,1,[[124,1,1,0,1]]]],[3955]]],["openeth",[7,7,[[1,4,4,0,4,[[62,3,3,0,3],[83,1,1,3,4]]],[3,2,2,4,6,[[119,1,1,4,5],[134,1,1,5,6]]],[25,1,1,6,7,[[821,1,1,6,7]]]],[1869,1879,1882,2515,3704,4272,20921]]]]},{"k":"H6364","v":[["Pibeseth",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21221]]]]},{"k":"H6365","v":[["*",[3,3,[[17,2,2,0,2,[[465,1,1,0,1],[466,1,1,1,2]]],[19,1,1,2,3,[[651,1,1,2,3]]]],[13581,13617,17101]]],["destruction",[2,2,[[17,2,2,0,2,[[465,1,1,0,1],[466,1,1,1,2]]]],[13581,13617]]],["ruin",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17101]]]]},{"k":"H6366","v":[["edges",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6584]]]]},{"k":"H6367","v":[["Pihahiroth",[4,4,[[1,2,2,0,2,[[63,2,2,0,2]]],[3,2,2,2,4,[[149,2,2,2,4]]]],[1891,1898,4767,4768]]]]},{"k":"H6368","v":[["ashes",[2,2,[[1,2,2,0,2,[[58,2,2,0,2]]]],[1750,1752]]]]},{"k":"H6369","v":[["Phichol",[3,3,[[0,3,3,0,3,[[20,2,2,0,2],[25,1,1,2,3]]]],[535,545,718]]]]},{"k":"H6370","v":[["*",[37,35,[[0,4,4,0,4,[[21,1,1,0,1],[24,1,1,1,2],[34,1,1,2,3],[35,1,1,3,4]]],[6,12,12,4,16,[[218,1,1,4,5],[229,8,8,5,13],[230,3,3,13,16]]],[9,9,8,16,24,[[269,2,1,16,17],[271,1,1,17,18],[281,1,1,18,19],[282,2,2,19,21],[285,1,1,21,22],[286,1,1,22,23],[287,1,1,23,24]]],[10,1,1,24,25,[[301,1,1,24,25]]],[12,5,5,25,30,[[338,1,1,25,26],[339,2,2,26,28],[340,1,1,28,29],[344,1,1,29,30]]],[13,2,1,30,31,[[377,2,1,30,31]]],[16,1,1,31,32,[[427,1,1,31,32]]],[21,2,2,32,34,[[676,2,2,32,34]]],[25,1,1,34,35,[[824,1,1,34,35]]]],[571,664,1033,1052,6750,7025,7026,7033,7034,7048,7049,7051,7053,7058,7059,7060,8088,8145,8405,8447,8448,8516,8557,8591,9111,10284,10352,10354,10370,10549,11435,12738,17622,17623,21027]]],["+",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7025]]],["concubine",[21,20,[[0,3,3,0,3,[[21,1,1,0,1],[34,1,1,1,2],[35,1,1,2,3]]],[6,11,11,3,14,[[218,1,1,3,4],[229,7,7,4,11],[230,3,3,11,14]]],[9,3,2,14,16,[[269,2,1,14,15],[287,1,1,15,16]]],[12,4,4,16,20,[[338,1,1,16,17],[339,2,2,17,19],[344,1,1,19,20]]]],[571,1033,1052,6750,7026,7033,7034,7048,7049,7051,7053,7058,7059,7060,8088,8591,10284,10352,10354,10549]]],["concubines",[14,13,[[0,1,1,0,1,[[24,1,1,0,1]]],[9,6,6,1,7,[[271,1,1,1,2],[281,1,1,2,3],[282,2,2,3,5],[285,1,1,5,6],[286,1,1,6,7]]],[10,1,1,7,8,[[301,1,1,7,8]]],[12,1,1,8,9,[[340,1,1,8,9]]],[13,2,1,9,10,[[377,2,1,9,10]]],[16,1,1,10,11,[[427,1,1,10,11]]],[21,2,2,11,13,[[676,2,2,11,13]]]],[664,8145,8405,8447,8448,8516,8557,9111,10370,11435,12738,17622,17623]]],["paramours",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21027]]]]},{"k":"H6371","v":[["fat",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13230]]]]},{"k":"H6372","v":[["*",[25,24,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,3,3,1,4,[[141,2,2,1,3],[147,1,1,3,4]]],[5,5,5,4,9,[[208,4,4,4,8],[210,1,1,8,9]]],[6,1,1,9,10,[[230,1,1,9,10]]],[8,7,7,10,17,[[236,1,1,10,11],[237,1,1,11,12],[239,4,4,12,16],[249,1,1,16,17]]],[12,4,3,17,20,[[343,3,2,17,19],[346,1,1,19,20]]],[14,3,3,20,23,[[409,1,1,20,21],[410,2,2,21,23]]],[18,1,1,23,24,[[583,1,1,23,24]]]],[1680,4478,4482,4670,6439,6456,6457,6458,6509,7082,7215,7274,7301,7308,7314,7316,7511,10458,10504,10635,12178,12203,12234,15681]]],["Phinehas",[24,23,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,3,3,1,4,[[141,2,2,1,3],[147,1,1,3,4]]],[5,5,5,4,9,[[208,4,4,4,8],[210,1,1,8,9]]],[6,1,1,9,10,[[230,1,1,9,10]]],[8,6,6,10,16,[[236,1,1,10,11],[237,1,1,11,12],[239,3,3,12,15],[249,1,1,15,16]]],[12,4,3,16,19,[[343,3,2,16,18],[346,1,1,18,19]]],[14,3,3,19,22,[[409,1,1,19,20],[410,2,2,20,22]]],[18,1,1,22,23,[[583,1,1,22,23]]]],[1680,4478,4482,4670,6439,6456,6457,6458,6509,7082,7215,7274,7301,7308,7314,7511,10458,10504,10635,12178,12203,12234,15681]]],["Phinehas'",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7316]]]]},{"k":"H6373","v":[["Pinon",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1081,10304]]]]},{"k":"H6374","v":[["*",[2,2,[[18,1,1,0,1,[[626,1,1,0,1]]],[22,1,1,1,2,[[719,1,1,1,2]]]],[16391,18466]]],["teeth",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18466]]],["twoedged",[1,1,[[18,1,1,0,1,[[626,1,1,0,1]]]],[16391]]]]},{"k":"H6375","v":[["together",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22709]]]]},{"k":"H6376","v":[["Pison",[1,1,[[0,1,1,0,1,[[1,1,1,0,1]]]],[41]]]]},{"k":"H6377","v":[["Pithon",[2,2,[[12,2,2,0,2,[[345,1,1,0,1],[346,1,1,1,2]]]],[10610,10656]]]]},{"k":"H6378","v":[["*",[3,3,[[8,1,1,0,1,[[245,1,1,0,1]]],[11,2,2,1,3,[[321,2,2,1,3]]]],[7419,9757,9759]]],["box",[2,2,[[11,2,2,0,2,[[321,2,2,0,2]]]],[9757,9759]]],["vial",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7419]]]]},{"k":"H6379","v":[["out",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21681]]]]},{"k":"H6380","v":[["*",[3,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,2,1,1,2,[[419,2,1,1,2]]]],[12084,12479]]],["Pochereth",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12479]]],["Zebaim",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12084,12479]]]]},{"k":"H6381","v":[["*",[71,69,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,2,2,1,3,[[52,1,1,1,2],[83,1,1,2,3]]],[2,2,2,3,5,[[111,1,1,3,4],[116,1,1,4,5]]],[3,3,3,5,8,[[122,1,1,5,6],[131,2,2,6,8]]],[4,3,3,8,11,[[169,1,1,8,9],[180,1,1,9,10],[182,1,1,10,11]]],[5,1,1,11,12,[[189,1,1,11,12]]],[6,2,2,12,14,[[216,1,1,12,13],[223,1,1,13,14]]],[9,2,2,14,16,[[267,1,1,14,15],[279,1,1,15,16]]],[12,3,3,16,19,[[353,3,3,16,19]]],[13,2,2,19,21,[[368,1,1,19,20],[392,1,1,20,21]]],[15,1,1,21,22,[[421,1,1,21,22]]],[17,6,6,22,28,[[440,1,1,22,23],[444,1,1,23,24],[445,1,1,24,25],[472,2,2,25,27],[477,1,1,27,28]]],[18,30,30,28,58,[[486,1,1,28,29],[503,1,1,29,30],[508,1,1,30,31],[517,1,1,31,32],[548,1,1,32,33],[549,1,1,33,34],[552,1,1,34,35],[555,3,3,35,38],[563,1,1,38,39],[573,1,1,39,40],[575,1,1,40,41],[582,2,2,41,43],[583,2,2,43,45],[584,5,5,45,50],[588,1,1,50,51],[595,1,1,51,52],[596,2,2,52,54],[608,1,1,54,55],[613,1,1,55,56],[616,1,1,56,57],[622,1,1,57,58]]],[19,1,1,58,59,[[657,1,1,58,59]]],[22,3,2,59,61,[[706,1,1,59,60],[707,2,1,60,61]]],[23,3,3,61,64,[[765,1,1,61,62],[776,2,2,62,64]]],[26,2,2,64,66,[[857,1,1,64,65],[860,1,1,65,66]]],[28,1,1,66,67,[[877,1,1,66,67]]],[32,1,1,67,68,[[899,1,1,67,68]]],[37,2,1,68,69,[[918,2,1,68,69]]]],[438,1599,2506,3390,3572,3825,4156,4161,5372,5670,5719,5898,6667,6903,8048,8319,10829,10832,10844,11220,11747,12528,12960,13061,13102,13774,13783,13925,14022,14280,14352,14530,14993,15018,15072,15117,15124,15145,15294,15468,15491,15608,15611,15658,15673,15707,15714,15720,15723,15730,15797,15892,15916,15925,16149,16200,16253,16325,17269,18193,18207,19442,19748,19758,21985,22072,22337,22679,22982]]],["+",[2,2,[[4,1,1,0,1,[[169,1,1,0,1]]],[18,1,1,1,2,[[508,1,1,1,2]]]],[5372,14352]]],["accomplish",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3390]]],["hard",[4,4,[[0,1,1,0,1,[[17,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[23,2,2,2,4,[[776,2,2,2,4]]]],[438,8319,19748,19758]]],["hidden",[1,1,[[4,1,1,0,1,[[182,1,1,0,1]]]],[5719]]],["high",[1,1,[[18,1,1,0,1,[[608,1,1,0,1]]]],[16149]]],["marvellous",[6,5,[[17,1,1,0,1,[[445,1,1,0,1]]],[18,2,2,1,3,[[595,1,1,1,2],[616,1,1,2,3]]],[32,1,1,3,4,[[899,1,1,3,4]]],[37,2,1,4,5,[[918,2,1,4,5]]]],[13102,15892,16253,22679,22982]]],["marvellously",[2,2,[[13,1,1,0,1,[[392,1,1,0,1]]],[17,1,1,1,2,[[472,1,1,1,2]]]],[11747,13774]]],["marvels",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2506]]],["miracles",[1,1,[[6,1,1,0,1,[[216,1,1,0,1]]]],[6667]]],["performing",[2,2,[[3,2,2,0,2,[[131,2,2,0,2]]]],[4156,4161]]],["separate",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3825]]],["singular",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3572]]],["things",[6,6,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,4,4,1,5,[[549,1,1,1,2],[563,1,1,2,3],[575,1,1,3,4],[596,1,1,4,5]]],[26,1,1,5,6,[[860,1,1,5,6]]]],[12960,15018,15294,15491,15916,22072]]],["wonderful",[6,6,[[4,1,1,0,1,[[180,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]],[13,1,1,2,3,[[368,1,1,2,3]]],[17,1,1,3,4,[[477,1,1,3,4]]],[19,1,1,4,5,[[657,1,1,4,5]]],[22,1,1,5,6,[[706,1,1,5,6]]]],[5670,8048,11220,13925,17269,18193]]],["wonderfully",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21985]]],["wonders",[9,9,[[1,1,1,0,1,[[52,1,1,0,1]]],[5,1,1,1,2,[[189,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[17,1,1,3,4,[[444,1,1,3,4]]],[18,5,5,4,9,[[555,1,1,4,5],[573,1,1,5,6],[583,1,1,6,7],[584,1,1,7,8],[613,1,1,8,9]]]],[1599,5898,12528,13061,15124,15468,15658,15723,16200]]],["wondrous",[2,2,[[17,1,1,0,1,[[472,1,1,0,1]]],[18,1,1,1,2,[[622,1,1,1,2]]]],[13783,16325]]],["wondrously",[2,2,[[6,1,1,0,1,[[223,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[6903,22337]]],["work",[2,1,[[22,2,1,0,1,[[707,2,1,0,1]]]],[18207]]],["works",[20,20,[[12,3,3,0,3,[[353,3,3,0,3]]],[18,16,16,3,19,[[486,1,1,3,4],[503,1,1,4,5],[517,1,1,5,6],[548,1,1,6,7],[552,1,1,7,8],[555,2,2,8,10],[582,2,2,10,12],[583,1,1,12,13],[584,4,4,13,17],[588,1,1,17,18],[596,1,1,18,19]]],[23,1,1,19,20,[[765,1,1,19,20]]]],[10829,10832,10844,14022,14280,14530,14993,15072,15117,15145,15608,15611,15673,15707,15714,15720,15730,15797,15925,19442]]]]},{"k":"H6382","v":[["*",[13,13,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,7,7,1,8,[[554,2,2,1,3],[555,1,1,3,4],[565,2,2,4,6],[566,1,1,6,7],[596,1,1,7,8]]],[22,3,3,8,11,[[687,1,1,8,9],[703,1,1,9,10],[707,1,1,10,11]]],[24,1,1,11,12,[[797,1,1,11,12]]],[26,1,1,12,13,[[861,1,1,12,13]]]],[1931,15104,15107,15125,15318,15320,15331,16027,17835,18119,18207,20319,22087]]],["Wonderful",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17835]]],["things",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15125]]],["wonder",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18207]]],["wonderful",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[22,1,1,1,2,[[703,1,1,1,2]]]],[16027,18119]]],["wonderfully",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20319]]],["wonders",[7,7,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,5,5,1,6,[[554,2,2,1,3],[565,2,2,3,5],[566,1,1,5,6]]],[26,1,1,6,7,[[861,1,1,6,7]]]],[1931,15104,15107,15318,15320,15331,22087]]]]},{"k":"H6383","v":[["*",[2,2,[[6,1,1,0,1,[[223,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]]],[6902,16245]]],["secret",[1,1,[[6,1,1,0,1,[[223,1,1,0,1]]]],[6902]]],["wonderful",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16245]]]]},{"k":"H6384","v":[["Palluites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4494]]]]},{"k":"H6385","v":[["*",[4,4,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[17,1,1,2,3,[[473,1,1,2,3]]],[18,1,1,3,4,[[532,1,1,3,4]]]],[259,10271,13818,14741]]],["divide",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14741]]],["divided",[3,3,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[17,1,1,2,3,[[473,1,1,2,3]]]],[259,10271,13818]]]]},{"k":"H6386","v":[["divided",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21799]]]]},{"k":"H6387","v":[["dividing",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21958]]]]},{"k":"H6388","v":[["*",[10,10,[[17,1,1,0,1,[[464,1,1,0,1]]],[18,4,4,1,5,[[478,1,1,1,2],[523,1,1,2,3],[542,1,1,3,4],[596,1,1,4,5]]],[19,2,2,5,7,[[632,1,1,5,6],[648,1,1,6,7]]],[22,2,2,7,9,[[708,1,1,7,8],[710,1,1,8,9]]],[24,1,1,9,10,[[799,1,1,9,10]]]],[13538,13942,14618,14869,16034,16533,16985,18242,18261,20402]]],["Rivers",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16034]]],["river",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14869]]],["rivers",[7,7,[[17,1,1,0,1,[[464,1,1,0,1]]],[18,1,1,1,2,[[478,1,1,1,2]]],[19,2,2,2,4,[[632,1,1,2,3],[648,1,1,3,4]]],[22,2,2,4,6,[[708,1,1,4,5],[710,1,1,5,6]]],[24,1,1,6,7,[[799,1,1,6,7]]]],[13538,13942,16533,16985,18242,18261,20402]]],["streams",[1,1,[[18,1,1,0,1,[[523,1,1,0,1]]]],[14618]]]]},{"k":"H6389","v":[["Peleg",[7,7,[[0,5,5,0,5,[[9,1,1,0,1],[10,4,4,1,5]]],[12,2,2,5,7,[[338,2,2,5,7]]]],[259,282,283,284,285,10271,10277]]]]},{"k":"H6390","v":[["rivers",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13343]]]]},{"k":"H6391","v":[["divisions",[3,3,[[6,2,2,0,2,[[215,2,2,0,2]]],[13,1,1,2,3,[[401,1,1,2,3]]]],[6638,6639,11971]]]]},{"k":"H6392","v":[["divisions",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12169]]]]},{"k":"H6393","v":[["torches",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22702]]]]},{"k":"H6394","v":[["Pildash",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[569]]]]},{"k":"H6395","v":[["*",[7,7,[[1,4,4,0,4,[[57,1,1,0,1],[58,1,1,1,2],[60,1,1,2,3],[82,1,1,3,4]]],[18,3,3,4,7,[[481,1,1,4,5],[494,1,1,5,6],[616,1,1,6,7]]]],[1732,1746,1813,2489,13968,14110,16253]]],["+",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14110]]],["apart",[1,1,[[18,1,1,0,1,[[481,1,1,0,1]]]],[13968]]],["difference",[1,1,[[1,1,1,0,1,[[60,1,1,0,1]]]],[1813]]],["separated",[1,1,[[1,1,1,0,1,[[82,1,1,0,1]]]],[2489]]],["sever",[2,2,[[1,2,2,0,2,[[57,1,1,0,1],[58,1,1,1,2]]]],[1732,1746]]],["wonderfully",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16253]]]]},{"k":"H6396","v":[["*",[5,5,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]],[3,2,2,2,4,[[142,2,2,2,4]]],[12,1,1,4,5,[[342,1,1,4,5]]]],[1395,1669,4494,4497,10431]]],["Pallu",[4,4,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,2,2,1,3,[[142,2,2,1,3]]],[12,1,1,3,4,[[342,1,1,3,4]]]],[1669,4494,4497,10431]]],["Phallu",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1395]]]]},{"k":"H6397","v":[["Pelonite",[3,3,[[12,3,3,0,3,[[348,2,2,0,2],[364,1,1,2,3]]]],[10700,10709,11119]]]]},{"k":"H6398","v":[["*",[5,5,[[11,1,1,0,1,[[316,1,1,0,1]]],[17,2,2,1,3,[[451,1,1,1,2],[474,1,1,2,3]]],[18,1,1,3,4,[[618,1,1,3,4]]],[19,1,1,4,5,[[634,1,1,4,5]]]],[9642,13251,13837,16283,16598]]],["cleaveth",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13251]]],["cutteth",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16283]]],["forth",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13837]]],["shred",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9642]]],["through",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16598]]]]},{"k":"H6399","v":[["*",[10,10,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,9,9,1,10,[[852,5,5,1,6],[855,2,2,6,8],[856,2,2,8,10]]]],[12197,21819,21821,21824,21825,21835,21921,21925,21947,21960]]],["ministers",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12197]]],["serve",[7,7,[[26,7,7,0,7,[[852,5,5,0,5],[856,2,2,5,7]]]],[21819,21821,21824,21825,21835,21947,21960]]],["servest",[2,2,[[26,2,2,0,2,[[855,2,2,0,2]]]],[21921,21925]]]]},{"k":"H6400","v":[["piece",[6,6,[[6,1,1,0,1,[[219,1,1,0,1]]],[8,1,1,1,2,[[265,1,1,1,2]]],[9,1,1,2,3,[[277,1,1,2,3]]],[17,1,1,3,4,[[476,1,1,3,4]]],[21,2,2,4,6,[[674,1,1,4,5],[676,1,1,5,6]]]],[6807,7990,8280,13912,17585,17621]]]]},{"k":"H6401","v":[["Pileha",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12573]]]]},{"k":"H6402","v":[["service",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12192]]]]},{"k":"H6403","v":[["*",[26,24,[[9,2,2,0,2,[[288,2,2,0,2]]],[17,2,2,2,4,[[456,1,1,2,3],[458,1,1,3,4]]],[18,18,17,4,21,[[494,1,1,4,5],[495,3,3,5,8],[499,2,2,8,10],[508,1,1,10,11],[514,2,1,11,12],[517,1,1,12,13],[520,1,1,13,14],[533,1,1,14,15],[547,1,1,15,16],[548,2,2,16,18],[559,1,1,18,19],[568,1,1,19,20],[621,1,1,20,21]]],[22,1,1,21,22,[[683,1,1,21,22]]],[25,1,1,22,23,[[808,1,1,22,23]]],[32,2,1,23,24,[[898,2,1,23,24]]]],[8604,8646,13365,13426,14116,14120,14161,14166,14208,14212,14332,14490,14542,14567,14762,14976,14978,14980,15237,15409,16307,17768,20593,22662]]],["Deliver",[2,2,[[18,2,2,0,2,[[548,1,1,0,1],[559,1,1,1,2]]]],[14980,15237]]],["calveth",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13365]]],["deliver",[9,8,[[18,8,7,0,7,[[494,1,1,0,1],[499,2,2,1,3],[508,1,1,3,4],[514,2,1,4,5],[520,1,1,5,6],[568,1,1,6,7]]],[32,1,1,7,8,[[898,1,1,7,8]]]],[14116,14208,14212,14332,14490,14567,15409,22662]]],["delivered",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[458,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]]],[8646,13426,14161]]],["deliverer",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,4,4,1,5,[[495,1,1,1,2],[517,1,1,2,3],[547,1,1,3,4],[621,1,1,4,5]]]],[8604,14120,14542,14976,16307]]],["deliverest",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22662]]],["delivereth",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14166]]],["escape",[3,3,[[18,2,2,0,2,[[533,1,1,0,1],[548,1,1,1,2]]],[25,1,1,2,3,[[808,1,1,2,3]]]],[14762,14978,20593]]],["safe",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17768]]]]},{"k":"H6404","v":[["Pelet",[2,2,[[12,2,2,0,2,[[339,1,1,0,1],[349,1,1,1,2]]]],[10353,10723]]]]},{"k":"H6405","v":[["deliverance",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14362]]]]},{"k":"H6406","v":[["*",[2,2,[[3,1,1,0,1,[[129,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]]],[4084,7905]]],["Palti",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4084]]],["Phalti",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7905]]]]},{"k":"H6407","v":[["Paltite",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8679]]]]},{"k":"H6408","v":[["Piltai",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12641]]]]},{"k":"H6409","v":[["*",[2,2,[[3,1,1,0,1,[[150,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]]],[4842,8096]]],["Paltiel",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4842]]],["Phaltiel",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8096]]]]},{"k":"H6410","v":[["Pelatiah",[5,5,[[12,2,2,0,2,[[340,1,1,0,1],[341,1,1,1,2]]],[15,1,1,2,3,[[422,1,1,2,3]]],[25,2,2,3,5,[[812,2,2,3,5]]]],[10382,10427,12571,20656,20668]]]]},{"k":"H6411","v":[["Pelaiah",[3,3,[[12,1,1,0,1,[[340,1,1,0,1]]],[15,2,2,1,3,[[420,1,1,1,2],[422,1,1,2,3]]]],[10385,12500,12559]]]]},{"k":"H6412","v":[["*",[24,23,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[5,1,1,2,3,[[194,1,1,2,3]]],[6,2,2,3,5,[[222,2,2,3,5]]],[11,1,1,5,6,[[321,1,1,5,6]]],[22,2,2,6,8,[[723,1,1,6,7],[744,1,1,7,8]]],[23,6,5,8,13,[[786,1,1,8,9],[788,3,2,9,11],[794,1,1,11,12],[795,1,1,12,13]]],[24,1,1,13,14,[[798,1,1,13,14]]],[25,7,7,14,21,[[807,2,2,14,16],[808,1,1,16,17],[825,2,2,17,19],[834,2,2,19,21]]],[29,1,1,21,22,[[887,1,1,21,22]]],[30,1,1,22,23,[[888,1,1,22,23]]]],[349,4369,6024,6873,6874,9771,18581,18941,19992,20024,20038,20194,20262,20354,20571,20572,20593,21082,21083,21301,21302,22496,22524]]],["+",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20354]]],["escape",[12,11,[[5,1,1,0,1,[[194,1,1,0,1]]],[11,1,1,1,2,[[321,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]],[23,5,4,3,7,[[786,1,1,3,4],[788,3,2,4,6],[794,1,1,6,7]]],[25,3,3,7,10,[[807,2,2,7,9],[808,1,1,9,10]]],[30,1,1,10,11,[[888,1,1,10,11]]]],[6024,9771,18941,19992,20024,20038,20194,20571,20572,20593,22524]]],["escaped",[8,8,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[6,1,1,2,3,[[222,1,1,2,3]]],[22,1,1,3,4,[[723,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]],[25,3,3,5,8,[[825,1,1,5,6],[834,2,2,6,8]]]],[349,4369,6874,18581,20262,21083,21301,21302]]],["escapeth",[2,2,[[25,1,1,0,1,[[825,1,1,0,1]]],[29,1,1,1,2,[[887,1,1,1,2]]]],[21082,22496]]],["fugitives",[1,1,[[6,1,1,0,1,[[222,1,1,0,1]]]],[6873]]]]},{"k":"H6413","v":[["*",[28,28,[[0,2,2,0,2,[[31,1,1,0,1],[44,1,1,1,2]]],[1,1,1,2,3,[[59,1,1,2,3]]],[6,1,1,3,4,[[231,1,1,3,4]]],[9,1,1,4,5,[[281,1,1,4,5]]],[11,2,2,5,7,[[331,2,2,5,7]]],[12,1,1,7,8,[[341,1,1,7,8]]],[13,3,3,8,11,[[378,1,1,8,9],[386,1,1,9,10],[396,1,1,10,11]]],[14,4,4,11,15,[[411,4,4,11,15]]],[15,1,1,15,16,[[413,1,1,15,16]]],[22,5,5,16,21,[[682,1,1,16,17],[688,1,1,17,18],[693,1,1,18,19],[715,2,2,19,21]]],[23,2,2,21,23,[[769,1,1,21,22],[794,1,1,22,23]]],[25,1,1,23,24,[[815,1,1,23,24]]],[26,1,1,24,25,[[860,1,1,24,25]]],[28,2,2,25,27,[[877,2,2,25,27]]],[30,1,1,27,28,[[888,1,1,27,28]]]],[936,1365,1782,7119,8403,10091,10092,10428,11444,11611,11833,12245,12250,12251,12252,12298,17735,17870,17969,18383,18384,19569,20195,20753,22078,22314,22343,22527]]],["+",[2,2,[[26,1,1,0,1,[[860,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[22078,22314]]],["deliverance",[5,5,[[0,1,1,0,1,[[44,1,1,0,1]]],[13,1,1,1,2,[[378,1,1,1,2]]],[14,1,1,2,3,[[411,1,1,2,3]]],[28,1,1,3,4,[[877,1,1,3,4]]],[30,1,1,4,5,[[888,1,1,4,5]]]],[1365,11444,12250,22343,22527]]],["escape",[7,7,[[0,1,1,0,1,[[31,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[14,1,1,3,4,[[411,1,1,3,4]]],[22,1,1,4,5,[[715,1,1,4,5]]],[23,2,2,5,7,[[769,1,1,5,6],[794,1,1,6,7]]]],[936,8403,10092,12245,18384,19569,20195]]],["escaped",[11,11,[[1,1,1,0,1,[[59,1,1,0,1]]],[6,1,1,1,2,[[231,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[12,1,1,3,4,[[341,1,1,3,4]]],[13,2,2,4,6,[[386,1,1,4,5],[396,1,1,5,6]]],[14,1,1,6,7,[[411,1,1,6,7]]],[15,1,1,7,8,[[413,1,1,7,8]]],[22,3,3,8,11,[[682,1,1,8,9],[688,1,1,9,10],[715,1,1,10,11]]]],[1782,7119,10091,10428,11611,11833,12252,12298,17735,17870,18383]]],["escapeth",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17969]]],["escaping",[1,1,[[14,1,1,0,1,[[411,1,1,0,1]]]],[12251]]],["remnant",[1,1,[[25,1,1,0,1,[[815,1,1,0,1]]]],[20753]]]]},{"k":"H6414","v":[["judges",[3,3,[[1,1,1,0,1,[[70,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[17,1,1,2,3,[[466,1,1,2,3]]]],[2099,5789,13599]]]]},{"k":"H6415","v":[["judgment",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17972]]]]},{"k":"H6416","v":[["judge",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13616]]]]},{"k":"H6417","v":[["judgment",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18171]]]]},{"k":"H6418","v":[["*",[10,9,[[9,1,1,0,1,[[269,1,1,0,1]]],[15,8,7,1,8,[[415,8,7,1,8]]],[19,1,1,8,9,[[658,1,1,8,9]]]],[8110,12336,12339,12341,12342,12343,12344,12345,17303]]],["distaff",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17303]]],["part",[8,7,[[15,8,7,0,7,[[415,8,7,0,7]]]],[12336,12339,12341,12342,12343,12344,12345]]],["staff",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8110]]]]},{"k":"H6419","v":[["*",[84,82,[[0,3,3,0,3,[[19,2,2,0,2],[47,1,1,2,3]]],[3,3,2,3,5,[[127,1,1,3,4],[137,2,1,4,5]]],[4,2,2,5,7,[[161,2,2,5,7]]],[8,11,10,7,17,[[236,4,4,7,11],[237,3,2,11,13],[242,1,1,13,14],[243,1,1,14,15],[247,2,2,15,17]]],[9,1,1,17,18,[[273,1,1,17,18]]],[10,10,10,18,28,[[298,9,9,18,27],[303,1,1,27,28]]],[11,6,6,28,34,[[316,1,1,28,29],[318,2,2,29,31],[331,2,2,31,33],[332,1,1,33,34]]],[12,1,1,34,35,[[354,1,1,34,35]]],[13,14,14,35,49,[[372,8,8,35,43],[373,2,2,43,45],[396,1,1,45,46],[398,2,2,46,48],[399,1,1,48,49]]],[14,1,1,49,50,[[412,1,1,49,50]]],[15,4,4,50,54,[[413,2,2,50,52],[414,1,1,52,53],[416,1,1,53,54]]],[17,2,2,54,56,[[477,2,2,54,56]]],[18,4,4,56,60,[[482,1,1,56,57],[509,1,1,57,58],[549,1,1,58,59],[583,1,1,59,60]]],[22,7,7,60,67,[[694,1,1,60,61],[715,2,2,61,63],[716,1,1,63,64],[722,1,1,64,65],[723,2,2,65,67]]],[23,10,10,67,77,[[751,1,1,67,68],[755,1,1,68,69],[758,1,1,69,70],[773,2,2,70,72],[776,1,1,72,73],[781,1,1,73,74],[786,3,3,74,77]]],[25,1,1,77,78,[[817,1,1,77,78]]],[26,2,2,78,80,[[858,2,2,78,80]]],[31,2,2,80,82,[[890,1,1,80,81],[892,1,1,81,82]]]],[502,512,1462,4026,4347,5177,5183,7222,7224,7238,7239,7241,7265,7357,7375,7479,7483,8207,9013,9014,9015,9018,9020,9027,9029,9033,9039,9190,9636,9691,9692,10076,10081,10100,10888,11301,11302,11303,11306,11308,11314,11316,11320,11325,11338,11845,11895,11899,11921,12253,12300,12302,12311,12368,13930,13932,13975,14361,15015,15681,17981,18367,18373,18392,18550,18575,18581,19135,19240,19304,19642,19647,19747,19877,19977,19979,19995,20814,21992,22008,22549,22570]]],["+",[2,2,[[9,1,1,0,1,[[273,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]]],[8207,9039]]],["Pray",[4,4,[[8,1,1,0,1,[[247,1,1,0,1]]],[23,3,3,1,4,[[758,1,1,1,2],[781,1,1,2,3],[786,1,1,3,4]]]],[7479,19304,19877,19995]]],["intreat",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7265]]],["judge",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7265]]],["judged",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20814]]],["judgment",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15681]]],["make",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]]],[9014,11303]]],["pray",[30,30,[[0,1,1,0,1,[[19,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[8,2,2,2,4,[[242,1,1,2,3],[247,1,1,3,4]]],[10,7,7,4,11,[[298,6,6,4,10],[303,1,1,10,11]]],[12,1,1,11,12,[[354,1,1,11,12]]],[13,6,6,12,18,[[372,5,5,12,17],[373,1,1,17,18]]],[15,1,1,18,19,[[413,1,1,18,19]]],[17,1,1,19,20,[[477,1,1,19,20]]],[18,2,2,20,22,[[482,1,1,20,21],[509,1,1,21,22]]],[22,2,2,22,24,[[694,1,1,22,23],[723,1,1,23,24]]],[23,6,6,24,30,[[751,1,1,24,25],[755,1,1,25,26],[773,2,2,26,28],[786,2,2,28,30]]]],[502,4347,7357,7483,9015,9018,9020,9027,9029,9033,9190,10888,11306,11308,11314,11316,11320,11338,12302,13930,13975,14361,17981,18581,19135,19240,19642,19647,19977,19979]]],["prayed",[30,30,[[0,1,1,0,1,[[19,1,1,0,1]]],[3,2,2,1,3,[[127,1,1,1,2],[137,1,1,2,3]]],[4,2,2,3,5,[[161,2,2,3,5]]],[8,4,4,5,9,[[236,2,2,5,7],[237,1,1,7,8],[243,1,1,8,9]]],[11,6,6,9,15,[[316,1,1,9,10],[318,2,2,10,12],[331,2,2,12,14],[332,1,1,14,15]]],[13,4,4,15,19,[[396,1,1,15,16],[398,2,2,16,18],[399,1,1,18,19]]],[14,1,1,19,20,[[412,1,1,19,20]]],[15,2,2,20,22,[[413,1,1,20,21],[414,1,1,21,22]]],[17,1,1,22,23,[[477,1,1,22,23]]],[22,3,3,23,26,[[715,2,2,23,25],[716,1,1,25,26]]],[23,1,1,26,27,[[776,1,1,26,27]]],[26,1,1,27,28,[[858,1,1,27,28]]],[31,2,2,28,30,[[890,1,1,28,29],[892,1,1,29,30]]]],[512,4026,4347,5177,5183,7222,7239,7241,7375,9636,9691,9692,10076,10081,10100,11845,11895,11899,11921,12253,12300,12311,13932,18367,18373,18392,19747,21992,22549,22570]]],["prayer",[2,2,[[15,1,1,0,1,[[416,1,1,0,1]]],[18,1,1,1,2,[[549,1,1,1,2]]]],[12368,15015]]],["prayeth",[4,4,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,2,2,1,3,[[372,2,2,1,3]]],[22,1,1,3,4,[[722,1,1,3,4]]]],[9013,11301,11302,18550]]],["praying",[4,4,[[8,2,2,0,2,[[236,2,2,0,2]]],[13,1,1,2,3,[[373,1,1,2,3]]],[26,1,1,3,4,[[858,1,1,3,4]]]],[7224,7238,11325,22008]]],["supplication",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18575]]],["thought",[1,1,[[0,1,1,0,1,[[47,1,1,0,1]]]],[1462]]]]},{"k":"H6420","v":[["Palal",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12352]]]]},{"k":"H6421","v":[["Pelaliah",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12600]]]]},{"k":"H6422","v":[["certain",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21974]]]]},{"k":"H6423","v":[["*",[3,3,[[7,1,1,0,1,[[235,1,1,0,1]]],[8,1,1,1,2,[[256,1,1,1,2]]],[11,1,1,2,3,[[318,1,1,2,3]]]],[7191,7774,9682]]],["+",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9682]]],["such",[2,2,[[7,1,1,0,1,[[235,1,1,0,1]]],[8,1,1,1,2,[[256,1,1,1,2]]]],[7191,7774]]]]},{"k":"H6424","v":[["*",[6,6,[[18,2,2,0,2,[[535,1,1,0,1],[555,1,1,1,2]]],[19,3,3,2,5,[[631,1,1,2,3],[632,2,2,3,5]]],[22,1,1,5,6,[[704,1,1,5,6]]]],[14781,15163,16516,16523,16538,18137]]],["Ponder",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16516]]],["made",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15163]]],["ponder",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16523]]],["pondereth",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16538]]],["weigh",[2,2,[[18,1,1,0,1,[[535,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]]],[14781,18137]]]]},{"k":"H6425","v":[["*",[2,2,[[19,1,1,0,1,[[643,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[16851,18432]]],["scales",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18432]]],["weight",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16851]]]]},{"k":"H6426","v":[["tremble",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13057]]]]},{"k":"H6427","v":[["*",[4,4,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,1,1,1,2,[[532,1,1,1,2]]],[22,1,1,2,3,[[699,1,1,2,3]]],[25,1,1,3,4,[[808,1,1,3,4]]]],[13361,14737,18039,20595]]],["fearfulness",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18039]]],["horror",[2,2,[[18,1,1,0,1,[[532,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]]],[14737,20595]]],["trembling",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13361]]]]},{"k":"H6428","v":[["*",[4,4,[[23,2,2,0,2,[[750,1,1,0,1],[769,1,1,1,2]]],[25,1,1,2,3,[[828,1,1,2,3]]],[32,1,1,3,4,[[893,1,1,3,4]]]],[19115,19568,21151,22589]]],["themselves",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21151]]],["thyself",[2,2,[[23,1,1,0,1,[[750,1,1,0,1]]],[32,1,1,1,2,[[893,1,1,1,2]]]],[19115,22589]]],["yourselves",[1,1,[[23,1,1,0,1,[[769,1,1,0,1]]]],[19568]]]]},{"k":"H6429","v":[["*",[8,8,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,4,4,1,5,[[537,1,1,1,2],[560,1,1,2,3],[564,1,1,3,4],[585,1,1,4,5]]],[22,2,2,5,7,[[692,2,2,5,7]]],[28,1,1,7,8,[[878,1,1,7,8]]]],[1934,14815,15248,15305,15751,17957,17959,22347]]],["Palestina",[3,3,[[1,1,1,0,1,[[64,1,1,0,1]]],[22,2,2,1,3,[[692,2,2,1,3]]]],[1934,17957,17959]]],["Palestine",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22347]]],["Philistia",[3,3,[[18,3,3,0,3,[[537,1,1,0,1],[564,1,1,1,2],[585,1,1,2,3]]]],[14815,15305,15751]]],["Philistines",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15248]]]]},{"k":"H6430","v":[["*",[287,243,[[0,8,8,0,8,[[9,1,1,0,1],[20,2,2,1,3],[25,5,5,3,8]]],[1,2,2,8,10,[[62,1,1,8,9],[72,1,1,9,10]]],[5,2,2,10,12,[[199,2,2,10,12]]],[6,34,31,12,43,[[213,2,2,12,14],[220,3,3,14,17],[223,2,2,17,19],[224,5,4,19,23],[225,9,8,23,31],[226,13,12,31,43]]],[8,152,125,43,168,[[239,10,8,43,51],[240,4,4,51,55],[241,8,8,55,63],[242,12,7,63,70],[244,1,1,70,71],[245,1,1,71,72],[247,1,1,72,73],[248,12,10,73,83],[249,15,13,83,96],[252,40,32,96,128],[253,7,6,128,134],[254,2,2,134,136],[256,1,1,136,137],[257,1,1,137,138],[258,8,7,138,145],[259,1,1,145,146],[262,3,3,146,149],[263,6,5,149,154],[264,10,7,154,161],[265,1,1,161,162],[266,8,6,162,168]]],[9,30,24,168,192,[[267,1,1,168,169],[269,2,2,169,171],[271,8,6,171,177],[274,3,2,177,179],[285,1,1,179,180],[287,7,5,180,185],[289,8,7,185,192]]],[10,3,3,192,195,[[294,1,1,192,193],[305,1,1,193,194],[306,1,1,194,195]]],[11,3,3,195,198,[[320,2,2,195,197],[330,1,1,197,198]]],[12,29,23,198,221,[[338,1,1,198,199],[347,8,6,199,205],[348,6,5,205,210],[349,2,1,210,211],[351,7,6,211,217],[355,3,2,217,219],[357,2,2,219,221]]],[13,7,6,221,227,[[375,1,1,221,222],[383,1,1,222,223],[387,1,1,223,224],[392,3,2,224,226],[394,1,1,226,227]]],[22,3,3,227,230,[[680,1,1,227,228],[687,1,1,228,229],[689,1,1,229,230]]],[23,4,3,230,233,[[769,1,1,230,231],[791,3,2,231,233]]],[25,4,4,233,237,[[817,2,2,233,235],[826,2,2,235,237]]],[29,3,3,237,240,[[879,1,1,237,238],[884,1,1,238,239],[887,1,1,239,240]]],[30,1,1,240,241,[[888,1,1,240,241]]],[35,1,1,241,242,[[907,1,1,241,242]]],[37,1,1,242,243,[[919,1,1,242,243]]]],[248,545,547,693,700,706,707,710,1884,2175,6156,6157,6571,6599,6817,6818,6822,6885,6889,6910,6911,6912,6913,6932,6934,6935,6938,6940,6941,6943,6949,6954,6957,6958,6961,6963,6967,6969,6970,6972,6976,6977,6979,7298,7299,7300,7303,7304,7306,7307,7314,7320,7321,7327,7330,7332,7333,7335,7343,7347,7348,7349,7352,7355,7359,7360,7362,7363,7365,7366,7407,7423,7469,7488,7489,7490,7496,7497,7501,7502,7504,7505,7508,7509,7512,7519,7527,7529,7530,7538,7539,7544,7545,7554,7555,7560,7619,7620,7621,7622,7626,7628,7629,7634,7637,7639,7641,7644,7650,7651,7654,7655,7658,7659,7660,7661,7662,7663,7664,7666,7667,7668,7669,7670,7671,7672,7673,7675,7682,7693,7697,7701,7703,7706,7711,7714,7781,7797,7811,7812,7813,7814,7815,7837,7838,7840,7931,7937,7941,7943,7946,7947,7957,7961,7968,7969,7970,7971,7974,7976,7978,7994,8010,8011,8016,8017,8018,8020,8042,8095,8099,8149,8150,8151,8154,8156,8157,8210,8221,8520,8592,8595,8597,8598,8599,8662,8663,8664,8665,8666,8667,8669,8865,9276,9298,9729,9730,10032,10264,10660,10661,10666,10667,10668,10670,10686,10687,10688,10689,10691,10739,10782,10783,10784,10787,10789,10790,10891,10901,10930,10931,11390,11534,11640,11738,11739,11782,17691,17841,17898,19554,20074,20077,20789,20819,21098,21099,22372,22452,22502,22529,22810,23005]]],["+",[6,6,[[6,4,4,0,4,[[224,2,2,0,2],[225,1,1,2,3],[226,1,1,3,4]]],[9,1,1,4,5,[[274,1,1,4,5]]],[12,1,1,5,6,[[355,1,1,5,6]]]],[6912,6913,6932,6977,8221,10901]]],["Philistim",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[248]]],["Philistine",[33,28,[[8,32,27,0,27,[[252,28,23,0,23],[253,1,1,23,24],[254,1,1,24,25],[256,1,1,25,26],[257,1,1,26,27]]],[9,1,1,27,28,[[287,1,1,27,28]]]],[7626,7628,7629,7634,7641,7644,7650,7651,7654,7655,7658,7659,7660,7661,7662,7663,7666,7667,7668,7669,7672,7673,7675,7682,7711,7781,7797,8597]]],["Philistines",[243,207,[[0,6,6,0,6,[[20,1,1,0,1],[25,5,5,1,6]]],[1,2,2,6,8,[[62,1,1,6,7],[72,1,1,7,8]]],[5,2,2,8,10,[[199,2,2,8,10]]],[6,30,28,10,38,[[213,2,2,10,12],[220,3,3,12,15],[223,2,2,15,17],[224,3,3,17,20],[225,8,7,20,27],[226,12,11,27,38]]],[8,118,98,38,136,[[239,10,8,38,46],[240,4,4,46,50],[241,8,8,50,58],[242,12,7,58,65],[244,1,1,65,66],[245,1,1,66,67],[247,1,1,67,68],[248,12,10,68,78],[249,13,11,78,89],[252,12,11,89,100],[253,6,5,100,105],[254,1,1,105,106],[258,8,7,106,113],[259,1,1,113,114],[262,3,3,114,117],[263,6,5,117,122],[264,10,7,122,129],[265,1,1,129,130],[266,8,6,130,136]]],[9,28,22,136,158,[[267,1,1,136,137],[269,2,2,137,139],[271,8,6,139,145],[274,2,1,145,146],[285,1,1,146,147],[287,6,4,147,151],[289,8,7,151,158]]],[10,3,3,158,161,[[294,1,1,158,159],[305,1,1,159,160],[306,1,1,160,161]]],[11,3,3,161,164,[[320,2,2,161,163],[330,1,1,163,164]]],[12,27,21,164,185,[[338,1,1,164,165],[347,8,6,165,171],[348,5,4,171,175],[349,2,1,175,176],[351,7,6,176,182],[355,2,1,182,183],[357,2,2,183,185]]],[13,7,6,185,191,[[375,1,1,185,186],[383,1,1,186,187],[387,1,1,187,188],[392,3,2,188,190],[394,1,1,190,191]]],[22,3,3,191,194,[[680,1,1,191,192],[687,1,1,192,193],[689,1,1,193,194]]],[23,4,3,194,197,[[769,1,1,194,195],[791,3,2,195,197]]],[25,4,4,197,201,[[817,2,2,197,199],[826,2,2,199,201]]],[29,3,3,201,204,[[879,1,1,201,202],[884,1,1,202,203],[887,1,1,203,204]]],[30,1,1,204,205,[[888,1,1,204,205]]],[35,1,1,205,206,[[907,1,1,205,206]]],[37,1,1,206,207,[[919,1,1,206,207]]]],[545,693,700,706,707,710,1884,2175,6156,6157,6571,6599,6817,6818,6822,6885,6889,6910,6911,6913,6934,6935,6938,6940,6941,6943,6949,6954,6957,6958,6961,6963,6967,6969,6970,6972,6976,6979,7298,7299,7300,7303,7304,7306,7307,7314,7320,7321,7327,7330,7332,7333,7335,7343,7347,7348,7349,7352,7355,7359,7360,7362,7363,7365,7366,7407,7423,7469,7488,7489,7490,7496,7497,7501,7502,7504,7505,7508,7519,7527,7529,7530,7538,7539,7544,7545,7554,7555,7560,7619,7620,7621,7622,7637,7639,7641,7664,7669,7670,7671,7693,7697,7701,7703,7706,7714,7811,7812,7813,7814,7815,7837,7838,7840,7931,7937,7941,7943,7946,7947,7957,7961,7968,7969,7970,7971,7974,7976,7978,7994,8010,8011,8016,8017,8018,8020,8042,8095,8099,8149,8150,8151,8154,8156,8157,8210,8520,8592,8595,8598,8599,8662,8663,8664,8665,8666,8667,8669,8865,9276,9298,9729,9730,10032,10264,10660,10661,10666,10667,10668,10670,10686,10687,10688,10691,10739,10782,10783,10784,10787,10789,10790,10891,10930,10931,11390,11534,11640,11738,11739,11782,17691,17841,17898,19554,20074,20077,20789,20819,21098,21099,22372,22452,22502,22529,22810,23005]]],["Philistines'",[4,4,[[0,1,1,0,1,[[20,1,1,0,1]]],[8,2,2,1,3,[[249,2,2,1,3]]],[12,1,1,3,4,[[348,1,1,3,4]]]],[547,7509,7512,10689]]]]},{"k":"H6431","v":[["Peleth",[2,2,[[3,1,1,0,1,[[132,1,1,0,1]]],[12,1,1,1,2,[[339,1,1,1,2]]]],[4195,10339]]]]},{"k":"H6432","v":[["Pelethites",[7,7,[[9,4,4,0,4,[[274,1,1,0,1],[281,1,1,1,2],[286,2,2,2,4]]],[10,2,2,4,6,[[291,2,2,4,6]]],[12,1,1,6,7,[[355,1,1,6,7]]]],[8227,8407,8561,8577,8755,8761,10907]]]]},{"k":"H6433","v":[["*",[6,6,[[26,6,6,0,6,[[853,1,1,0,1],[855,2,2,1,3],[856,3,3,3,6]]]],[21868,21922,21927,21938,21941,21953]]],["mouth",[5,5,[[26,5,5,0,5,[[853,1,1,0,1],[855,1,1,1,2],[856,3,3,2,5]]]],[21868,21922,21938,21941,21953]]],["mouths",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21927]]]]},{"k":"H6434","v":[["corner",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23078]]]]},{"k":"H6435","v":[["*",[132,124,[[0,17,17,0,17,[[2,2,2,0,2],[10,1,1,2,3],[18,3,3,3,6],[23,1,1,6,7],[25,2,2,7,9],[30,2,2,9,11],[31,1,1,11,12],[37,2,2,12,14],[41,1,1,14,15],[43,1,1,15,16],[44,1,1,16,17]]],[1,13,12,17,29,[[50,1,1,17,18],[54,1,1,18,19],[62,1,1,19,20],[68,3,3,20,23],[69,1,1,23,24],[72,2,2,24,26],[82,1,1,26,27],[83,3,2,27,29]]],[2,1,1,29,30,[[99,1,1,29,30]]],[3,3,3,30,33,[[132,2,2,30,32],[136,1,1,32,33]]],[4,28,24,33,57,[[156,5,4,33,37],[158,2,2,37,39],[159,2,2,39,41],[160,2,2,41,43],[161,1,1,43,44],[163,1,1,44,45],[164,4,3,45,48],[167,1,1,48,49],[171,1,1,49,50],[172,3,3,50,53],[174,1,1,53,54],[177,1,1,54,55],[181,2,1,55,56],[184,2,1,56,57]]],[5,3,3,57,60,[[188,1,1,57,58],[192,1,1,58,59],[210,1,1,59,60]]],[6,5,5,60,65,[[217,1,1,60,61],[219,1,1,61,62],[224,1,1,62,63],[225,1,1,63,64],[228,1,1,64,65]]],[7,1,1,65,66,[[235,1,1,65,66]]],[8,6,6,66,72,[[244,1,1,66,67],[248,1,1,67,68],[250,1,1,68,69],[255,1,1,69,70],[262,1,1,70,71],[266,1,1,71,72]]],[9,6,5,72,77,[[267,2,1,72,73],[278,1,1,73,74],[281,1,1,74,75],[283,1,1,75,76],[286,1,1,76,77]]],[11,2,2,77,79,[[314,1,1,77,78],[322,1,1,78,79]]],[12,1,1,79,80,[[347,1,1,79,80]]],[17,2,2,80,82,[[467,1,1,80,81],[471,1,1,81,82]]],[18,9,9,82,91,[[479,1,1,82,83],[484,1,1,83,84],[490,2,2,84,86],[505,1,1,86,87],[515,1,1,87,88],[527,1,1,88,89],[536,1,1,89,90],[568,1,1,90,91]]],[19,18,17,91,108,[[632,3,3,91,94],[636,1,1,94,95],[647,1,1,95,96],[649,1,1,96,97],[651,1,1,97,98],[652,4,4,98,102],[653,2,2,102,104],[657,4,3,104,107],[658,1,1,107,108]]],[22,6,6,108,114,[[684,1,1,108,109],[705,1,1,109,110],[706,1,1,110,111],[714,1,1,111,112],[726,2,2,112,114]]],[23,8,7,114,121,[[745,1,1,114,115],[748,1,1,115,116],[750,2,1,116,117],[754,1,1,117,118],[765,1,1,118,119],[782,1,1,119,120],[795,1,1,120,121]]],[27,1,1,121,122,[[863,1,1,121,122]]],[29,1,1,122,123,[[883,1,1,122,123]]],[38,1,1,123,124,[[928,1,1,123,124]]]],[58,77,270,472,474,476,597,699,701,897,904,939,1130,1142,1256,1358,1369,1542,1635,1884,2047,2048,2050,2070,2173,2177,2476,2508,2511,2984,4220,4228,4329,5013,5020,5023,5027,5098,5101,5133,5136,5148,5149,5185,5224,5253,5259,5270,5328,5412,5432,5433,5434,5479,5550,5697,5785,5885,5967,6503,6696,6808,6924,6941,7018,7196,7396,7504,7566,7733,7941,8013,8042,8314,8403,8465,8560,9567,9816,10663,13641,13754,13957,13997,14077,14078,14300,14506,14690,14801,15407,16523,16526,16527,16646,16967,17040,17097,17121,17123,17129,17130,17145,17146,17257,17260,17261,17289,17779,18154,18186,18348,18619,18621,18963,19031,19097,19225,19452,19914,20258,22108,22429,23144]]],["+",[2,2,[[4,2,2,0,2,[[160,1,1,0,1],[164,1,1,1,2]]]],[5148,5259]]],["Lest",[22,22,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,1,1,1,2,[[83,1,1,1,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[4,5,5,3,8,[[156,1,1,3,4],[160,1,1,4,5],[161,1,1,5,6],[171,1,1,6,7],[181,1,1,7,8]]],[8,2,2,8,10,[[248,1,1,8,9],[262,1,1,9,10]]],[17,1,1,10,11,[[467,1,1,10,11]]],[18,2,2,11,13,[[484,1,1,11,12],[490,1,1,12,13]]],[19,8,8,13,21,[[632,3,3,13,16],[649,1,1,16,17],[651,1,1,17,18],[652,1,1,18,19],[657,1,1,19,20],[658,1,1,20,21]]],[27,1,1,21,22,[[863,1,1,21,22]]]],[701,2511,4228,5020,5149,5185,5412,5697,7504,7941,13641,13997,14078,16523,16526,16527,17040,17097,17123,17260,17289,22108]]],["Peradventure",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[904]]],["lest",[92,87,[[0,10,10,0,10,[[2,2,2,0,2],[10,1,1,2,3],[18,3,3,3,6],[25,1,1,6,7],[31,1,1,7,8],[37,1,1,8,9],[44,1,1,9,10]]],[1,11,10,10,20,[[50,1,1,10,11],[54,1,1,11,12],[68,3,3,12,15],[69,1,1,15,16],[72,2,2,16,18],[82,1,1,18,19],[83,2,1,19,20]]],[2,1,1,20,21,[[99,1,1,20,21]]],[3,2,2,21,23,[[132,1,1,21,22],[136,1,1,22,23]]],[4,16,14,23,37,[[156,4,3,23,26],[158,2,2,26,28],[159,2,2,28,30],[172,3,3,30,33],[174,1,1,33,34],[177,1,1,34,35],[181,1,1,35,36],[184,2,1,36,37]]],[5,3,3,37,40,[[188,1,1,37,38],[192,1,1,38,39],[210,1,1,39,40]]],[6,3,3,40,43,[[217,1,1,40,41],[224,1,1,41,42],[228,1,1,42,43]]],[7,1,1,43,44,[[235,1,1,43,44]]],[8,4,4,44,48,[[244,1,1,44,45],[250,1,1,45,46],[255,1,1,46,47],[266,1,1,47,48]]],[9,6,5,48,53,[[267,2,1,48,49],[278,1,1,49,50],[281,1,1,50,51],[283,1,1,51,52],[286,1,1,52,53]]],[12,1,1,53,54,[[347,1,1,53,54]]],[17,1,1,54,55,[[471,1,1,54,55]]],[18,7,7,55,62,[[479,1,1,55,56],[490,1,1,56,57],[505,1,1,57,58],[515,1,1,58,59],[527,1,1,59,60],[536,1,1,60,61],[568,1,1,61,62]]],[19,10,10,62,72,[[636,1,1,62,63],[647,1,1,63,64],[652,3,3,64,67],[653,2,2,67,69],[657,3,3,69,72]]],[22,6,6,72,78,[[684,1,1,72,73],[705,1,1,73,74],[706,1,1,74,75],[714,1,1,75,76],[726,2,2,76,78]]],[23,8,7,78,85,[[745,1,1,78,79],[748,1,1,79,80],[750,2,1,80,81],[754,1,1,81,82],[765,1,1,82,83],[782,1,1,83,84],[795,1,1,84,85]]],[29,1,1,85,86,[[883,1,1,85,86]]],[38,1,1,86,87,[[928,1,1,86,87]]]],[58,77,270,472,474,476,699,939,1142,1369,1542,1635,2047,2048,2050,2070,2173,2177,2476,2508,2984,4220,4329,5013,5023,5027,5098,5101,5133,5136,5432,5433,5434,5479,5550,5697,5785,5885,5967,6503,6696,6924,7018,7196,7396,7566,7733,8013,8042,8314,8403,8465,8560,10663,13754,13957,14077,14300,14506,14690,14801,15407,16646,16967,17121,17129,17130,17145,17146,17257,17260,17261,17779,18154,18186,18348,18619,18621,18963,19031,19097,19225,19452,19914,20258,22429,23144]]],["peradventure",[5,5,[[0,3,3,0,3,[[37,1,1,0,1],[41,1,1,1,2],[43,1,1,2,3]]],[1,1,1,3,4,[[62,1,1,3,4]]],[11,1,1,4,5,[[314,1,1,4,5]]]],[1130,1256,1358,1884,9567]]],["that",[10,9,[[0,2,2,0,2,[[23,1,1,0,1],[30,1,1,1,2]]],[4,5,4,2,6,[[163,1,1,2,3],[164,3,2,3,5],[167,1,1,5,6]]],[6,2,2,6,8,[[219,1,1,6,7],[225,1,1,7,8]]],[11,1,1,8,9,[[322,1,1,8,9]]]],[597,897,5224,5253,5270,5328,6808,6941,9816]]]]},{"k":"H6436","v":[["Pannag",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21138]]]]},{"k":"H6437","v":[["*",[134,127,[[0,4,4,0,4,[[17,1,1,0,1],[23,3,3,1,4]]],[1,6,6,4,10,[[51,1,1,4,5],[56,1,1,5,6],[59,1,1,6,7],[63,1,1,7,8],[65,1,1,8,9],[81,1,1,9,10]]],[2,5,5,10,15,[[103,1,1,10,11],[108,2,2,11,13],[109,1,1,13,14],[115,1,1,14,15]]],[3,5,5,15,20,[[128,1,1,15,16],[130,1,1,16,17],[132,2,2,17,19],[137,1,1,19,20]]],[4,16,16,20,36,[[153,3,3,20,23],[154,3,3,23,26],[155,1,1,26,27],[161,2,2,27,29],[162,1,1,29,30],[168,1,1,30,31],[175,1,1,31,32],[181,1,1,32,33],[182,1,1,33,34],[183,2,2,34,36]]],[5,5,5,36,41,[[193,1,1,36,37],[194,1,1,37,38],[201,2,2,38,40],[208,1,1,40,41]]],[6,9,9,41,50,[[216,1,1,41,42],[225,1,1,42,43],[228,2,2,43,45],[229,1,1,45,46],[230,4,4,46,50]]],[8,5,4,50,54,[[245,1,1,50,51],[248,3,2,51,53],[249,1,1,53,54]]],[9,3,3,54,57,[[267,1,1,54,55],[268,1,1,55,56],[275,1,1,56,57]]],[10,8,5,57,62,[[292,1,1,57,58],[297,4,1,58,59],[298,1,1,59,60],[300,1,1,60,61],[307,1,1,61,62]]],[11,4,4,62,66,[[314,1,1,62,63],[317,1,1,63,64],[325,1,1,64,65],[335,1,1,65,66]]],[13,8,5,66,71,[[370,4,1,66,67],[372,1,1,67,68],[379,1,1,68,69],[386,1,1,69,70],[392,1,1,70,71]]],[17,5,5,71,76,[[440,1,1,71,72],[441,1,1,72,73],[456,1,1,73,74],[459,1,1,74,75],[471,1,1,75,76]]],[18,9,9,76,85,[[502,1,1,76,77],[517,1,1,77,78],[523,1,1,78,79],[546,1,1,79,80],[557,1,1,80,81],[563,1,1,81,82],[567,1,1,82,83],[579,1,1,83,84],[596,1,1,84,85]]],[19,1,1,85,86,[[644,1,1,85,86]]],[20,2,2,86,88,[[660,2,2,86,88]]],[21,1,1,88,89,[[676,1,1,88,89]]],[22,8,8,89,97,[[686,1,1,89,90],[691,1,1,90,91],[718,1,1,91,92],[723,1,1,92,93],[731,1,1,93,94],[734,1,1,94,95],[735,1,1,95,96],[740,1,1,96,97]]],[23,10,10,97,107,[[746,1,1,97,98],[750,1,1,98,99],[776,1,1,99,100],[790,2,2,100,102],[791,1,1,102,103],[792,1,1,103,104],[793,2,2,104,106],[794,1,1,106,107]]],[25,14,14,107,121,[[809,1,1,107,108],[810,1,1,108,109],[811,1,1,109,110],[812,1,1,110,111],[818,1,1,111,112],[830,1,1,112,113],[837,1,1,113,114],[844,2,2,114,116],[845,1,1,116,117],[847,3,3,117,120],[848,1,1,120,121]]],[27,1,1,121,122,[[864,1,1,121,122]]],[33,1,1,122,123,[[901,1,1,122,123]]],[35,1,1,123,124,[[908,1,1,123,124]]],[36,1,1,124,125,[[909,1,1,124,125]]],[38,2,2,125,127,[[926,1,1,125,126],[927,1,1,126,127]]]],[446,622,640,654,1566,1708,1783,1916,1957,2453,3147,3285,3312,3324,3533,4069,4133,4209,4236,4373,4899,4916,4932,4939,4941,4946,4976,5172,5184,5191,5349,5511,5697,5725,5746,5748,5988,6022,6204,6209,6430,6668,6933,7014,7019,7050,7094,7096,7099,7101,7427,7502,7503,7555,8029,8069,8235,8773,8959,9013,9092,9320,9575,9659,9894,10181,11250,11301,11467,11611,11752,12952,13006,13360,13454,13757,14267,14529,14619,14951,15207,15300,15387,15538,16030,16881,17344,17345,17615,17828,17920,18423,18583,18717,18764,18779,18864,18992,19093,19764,20050,20066,20076,20119,20135,20151,20182,20607,20624,20644,20656,20831,21199,21368,21573,21589,21600,21656,21667,21674,21681,22129,22707,22835,22849,23116,23121]]],["+",[9,9,[[0,1,1,0,1,[[23,1,1,0,1]]],[2,1,1,1,2,[[103,1,1,1,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[17,2,2,3,5,[[456,1,1,3,4],[471,1,1,4,5]]],[18,2,2,5,7,[[517,1,1,5,6],[579,1,1,6,7]]],[23,1,1,7,8,[[790,1,1,7,8]]],[38,1,1,8,9,[[926,1,1,8,9]]]],[654,3147,4209,13360,13757,14529,15538,20050,23116]]],["Look",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[22,1,1,1,2,[[723,1,1,1,2]]]],[16030,18583]]],["Prepare",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18423]]],["Regard",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3312]]],["Turn",[3,3,[[2,1,1,0,1,[[108,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[18,1,1,2,3,[[502,1,1,2,3]]]],[3285,4899,14267]]],["appeared",[1,1,[[1,1,1,0,1,[[63,1,1,0,1]]]],[1916]]],["aside",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17615]]],["away",[4,4,[[4,2,2,0,2,[[181,1,1,0,1],[182,1,1,1,2]]],[18,1,1,2,3,[[567,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]]],[5697,5725,15387,19093]]],["back",[5,5,[[13,1,1,0,1,[[379,1,1,0,1]]],[23,3,3,1,4,[[790,1,1,1,2],[791,1,1,2,3],[793,1,1,3,4]]],[33,1,1,4,5,[[901,1,1,4,5]]]],[11467,20066,20076,20135,22707]]],["beholdeth",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13454]]],["dawning",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7050]]],["faces",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[446]]],["herself",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20151]]],["lieth",[1,1,[[25,1,1,0,1,[[810,1,1,0,1]]]],[20624]]],["look",[8,8,[[4,1,1,0,1,[[161,1,1,0,1]]],[9,1,1,1,2,[[275,1,1,1,2]]],[17,1,1,2,3,[[441,1,1,2,3]]],[22,2,2,3,5,[[686,1,1,3,4],[734,1,1,4,5]]],[25,2,2,5,7,[[830,1,1,5,6],[844,1,1,6,7]]],[27,1,1,7,8,[[864,1,1,7,8]]]],[5184,8235,13006,17828,18764,21199,21589,22129]]],["looked",[15,15,[[1,2,2,0,2,[[51,1,1,0,1],[65,1,1,1,2]]],[3,2,2,2,4,[[128,1,1,2,3],[132,1,1,3,4]]],[5,1,1,4,5,[[194,1,1,4,5]]],[6,2,2,5,7,[[216,1,1,5,6],[230,1,1,6,7]]],[9,2,2,7,9,[[267,1,1,7,8],[268,1,1,8,9]]],[13,2,2,9,11,[[386,1,1,9,10],[392,1,1,10,11]]],[20,1,1,11,12,[[660,1,1,11,12]]],[25,2,2,12,14,[[811,1,1,12,13],[847,1,1,13,14]]],[36,1,1,14,15,[[909,1,1,14,15]]]],[1566,1957,4069,4236,6022,6668,7094,8029,8069,11611,11752,17344,20644,21674,22849]]],["looketh",[8,8,[[5,1,1,0,1,[[201,1,1,0,1]]],[25,7,7,1,8,[[809,1,1,1,2],[812,1,1,2,3],[844,1,1,3,4],[845,1,1,4,5],[847,2,2,5,7],[848,1,1,7,8]]]],[6204,20607,20656,21573,21600,21656,21667,21681]]],["looking",[9,3,[[5,1,1,0,1,[[201,1,1,0,1]]],[10,4,1,1,2,[[297,4,1,1,2]]],[13,4,1,2,3,[[370,4,1,2,3]]]],[6209,8959,11250]]],["myself",[1,1,[[4,1,1,0,1,[[162,1,1,0,1]]]],[5191]]],["on",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5511]]],["out",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22835]]],["prepare",[3,3,[[22,2,2,0,2,[[735,1,1,0,1],[740,1,1,1,2]]],[38,1,1,2,3,[[927,1,1,2,3]]]],[18779,18864,23121]]],["prepared",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[622]]],["preparedst",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15207]]],["respect",[4,4,[[2,1,1,0,1,[[115,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[11,1,1,2,3,[[325,1,1,2,3]]],[13,1,1,3,4,[[372,1,1,3,4]]]],[3533,9013,9894,11301]]],["return",[1,1,[[5,1,1,0,1,[[208,1,1,0,1]]]],[6430]]],["right",[1,1,[[18,1,1,0,1,[[523,1,1,0,1]]]],[14619]]],["turn",[13,13,[[0,1,1,0,1,[[23,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[4,4,4,2,6,[[153,1,1,2,3],[154,1,1,3,4],[168,1,1,4,5],[183,1,1,5,6]]],[10,1,1,6,7,[[307,1,1,6,7]]],[17,1,1,7,8,[[440,1,1,7,8]]],[18,2,2,8,10,[[546,1,1,8,9],[563,1,1,9,10]]],[22,1,1,10,11,[[691,1,1,10,11]]],[23,1,1,11,12,[[794,1,1,11,12]]],[25,1,1,12,13,[[837,1,1,12,13]]]],[640,4133,4932,4941,5349,5748,9320,12952,14951,15300,17920,20182,21368]]],["turned",[32,31,[[1,3,3,0,3,[[56,1,1,0,1],[59,1,1,1,2],[81,1,1,2,3]]],[3,1,1,3,4,[[137,1,1,3,4]]],[4,6,6,4,10,[[153,1,1,4,5],[154,2,2,5,7],[155,1,1,7,8],[161,1,1,8,9],[183,1,1,9,10]]],[5,1,1,10,11,[[193,1,1,10,11]]],[6,6,6,11,17,[[225,1,1,11,12],[228,2,2,12,14],[230,3,3,14,17]]],[8,5,4,17,21,[[245,1,1,17,18],[248,3,2,18,20],[249,1,1,20,21]]],[10,1,1,21,22,[[300,1,1,21,22]]],[11,3,3,22,25,[[314,1,1,22,23],[317,1,1,23,24],[335,1,1,24,25]]],[20,1,1,25,26,[[660,1,1,25,26]]],[22,1,1,26,27,[[731,1,1,26,27]]],[23,3,3,27,30,[[746,1,1,27,28],[776,1,1,28,29],[792,1,1,29,30]]],[25,1,1,30,31,[[818,1,1,30,31]]]],[1708,1783,2453,4373,4916,4939,4946,4976,5172,5746,5988,6933,7014,7019,7096,7099,7101,7427,7502,7503,7555,9092,9575,9659,10181,17345,18717,18992,19764,20119,20831]]],["turnest",[1,1,[[10,1,1,0,1,[[292,1,1,0,1]]]],[8773]]],["turneth",[2,2,[[2,1,1,0,1,[[109,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]]],[3324,16881]]]]},{"k":"H6438","v":[["*",[30,30,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[6,1,1,2,3,[[230,1,1,2,3]]],[8,1,1,3,4,[[249,1,1,3,4]]],[10,1,1,4,5,[[297,1,1,4,5]]],[11,1,1,5,6,[[326,1,1,5,6]]],[13,4,4,6,10,[[391,1,1,6,7],[392,2,2,7,9],[394,1,1,9,10]]],[15,3,3,10,13,[[415,3,3,10,13]]],[17,2,2,13,15,[[436,1,1,13,14],[473,1,1,14,15]]],[18,1,1,15,16,[[595,1,1,15,16]]],[19,4,4,16,20,[[634,2,2,16,18],[648,1,1,18,19],[652,1,1,19,20]]],[22,2,2,20,22,[[697,1,1,20,21],[706,1,1,21,22]]],[23,3,3,22,25,[[775,2,2,22,24],[795,1,1,24,25]]],[25,2,2,25,27,[[844,1,1,25,26],[846,1,1,26,27]]],[35,2,2,27,29,[[906,1,1,27,28],[908,1,1,28,29]]],[37,1,1,29,30,[[920,1,1,29,30]]]],[2274,2635,7056,7546,8968,9909,11727,11741,11747,11788,12351,12358,12359,12888,13799,15891,16583,16587,16993,17137,18017,18180,19729,19731,20238,21592,21649,22803,22826,23020]]],["bulwarks",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11747]]],["chief",[2,2,[[6,1,1,0,1,[[230,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]]],[7056,7546]]],["corner",[18,18,[[11,1,1,0,1,[[326,1,1,0,1]]],[13,3,3,1,4,[[391,1,1,1,2],[392,1,1,2,3],[394,1,1,3,4]]],[15,3,3,4,7,[[415,3,3,4,7]]],[17,1,1,7,8,[[473,1,1,7,8]]],[18,1,1,8,9,[[595,1,1,8,9]]],[19,4,4,9,13,[[634,2,2,9,11],[648,1,1,11,12],[652,1,1,12,13]]],[22,1,1,13,14,[[706,1,1,13,14]]],[23,3,3,14,17,[[775,2,2,14,16],[795,1,1,16,17]]],[37,1,1,17,18,[[920,1,1,17,18]]]],[9909,11727,11741,11788,12351,12358,12359,13799,15891,16583,16587,16993,17137,18180,19729,19731,20238,23020]]],["corners",[6,6,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[17,1,1,3,4,[[436,1,1,3,4]]],[25,2,2,4,6,[[844,1,1,4,5],[846,1,1,5,6]]]],[2274,2635,8968,12888,21592,21649]]],["stay",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18017]]],["towers",[2,2,[[35,2,2,0,2,[[906,1,1,0,1],[908,1,1,1,2]]]],[22803,22826]]]]},{"k":"H6439","v":[["*",[9,8,[[0,2,2,0,2,[[31,2,2,0,2]]],[6,4,3,2,5,[[218,4,3,2,5]]],[10,1,1,5,6,[[302,1,1,5,6]]],[12,2,2,6,8,[[341,1,1,6,7],[345,1,1,7,8]]]],[958,959,6727,6728,6736,9176,10389,10600]]],["Peniel",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[958]]],["Penuel",[8,7,[[0,1,1,0,1,[[31,1,1,0,1]]],[6,4,3,1,4,[[218,4,3,1,4]]],[10,1,1,4,5,[[302,1,1,4,5]]],[12,2,2,5,7,[[341,1,1,5,6],[345,1,1,6,7]]]],[959,6727,6728,6736,9176,10389,10600]]]]},{"k":"H6440","v":[["*",[2116,1881,[[0,141,126,0,126,[[0,4,3,0,3],[1,1,1,3,4],[2,1,1,4,5],[3,5,4,5,9],[5,5,4,9,13],[6,6,6,13,19],[7,3,3,19,22],[8,1,1,22,23],[9,2,1,23,24],[10,4,4,24,28],[12,2,2,28,30],[15,3,3,30,33],[16,4,4,33,37],[17,3,3,37,40],[18,5,4,40,44],[19,1,1,44,45],[22,6,6,45,51],[23,5,5,51,56],[24,3,2,56,58],[26,6,5,58,63],[28,1,1,63,64],[29,3,3,64,67],[30,4,4,67,71],[31,10,6,71,77],[32,6,4,77,81],[33,2,2,81,83],[34,2,2,83,85],[35,3,3,85,88],[37,1,1,88,89],[39,2,2,89,91],[40,5,4,91,95],[42,8,8,95,103],[43,4,4,103,107],[44,3,3,107,110],[45,3,2,110,112],[46,6,6,112,118],[47,3,3,118,121],[48,1,1,121,122],[49,4,4,122,126]]],[1,127,111,126,237,[[50,1,1,126,127],[51,1,1,127,128],[52,2,2,128,130],[53,2,2,130,132],[55,2,2,132,134],[56,3,2,134,136],[57,2,2,136,138],[58,5,4,138,142],[59,7,6,142,148],[60,1,1,148,149],[62,2,2,149,151],[63,6,4,151,155],[65,4,4,155,159],[66,2,2,159,161],[67,1,1,161,162],[68,2,2,162,164],[69,2,2,164,166],[70,1,1,166,167],[72,11,10,167,177],[74,5,3,177,180],[75,1,1,180,181],[76,1,1,181,182],[77,9,8,182,190],[78,7,7,190,197],[79,5,4,197,201],[81,6,6,201,207],[82,10,8,207,215],[83,13,10,215,225],[84,2,2,225,227],[85,1,1,227,228],[86,2,1,228,229],[88,3,3,229,232],[89,5,5,232,237]]],[2,107,94,237,331,[[90,3,3,237,240],[92,5,5,240,245],[93,12,8,245,253],[95,4,3,253,256],[96,1,1,256,257],[97,4,4,257,261],[98,7,5,261,266],[99,8,7,266,273],[101,1,1,273,274],[102,1,1,274,275],[103,11,11,275,286],[104,3,3,286,289],[105,11,10,289,299],[106,3,3,299,302],[107,5,5,302,307],[108,6,4,307,311],[109,4,4,311,315],[111,1,1,315,316],[112,4,4,316,320],[113,4,4,320,324],[115,7,5,324,329],[116,2,2,329,331]]],[3,119,96,331,427,[[119,7,4,331,335],[120,1,1,335,336],[121,4,4,336,340],[122,4,4,340,344],[123,3,2,344,346],[124,10,8,346,354],[125,2,1,354,355],[126,4,4,355,359],[127,2,2,359,361],[128,2,2,361,363],[129,1,1,363,364],[130,6,5,364,369],[131,3,3,369,372],[132,12,12,372,384],[133,4,4,384,388],[134,2,2,388,390],[135,3,3,390,393],[136,5,4,393,397],[137,2,2,397,399],[138,4,2,399,401],[139,1,1,401,402],[140,1,1,402,403],[142,1,1,403,404],[143,12,6,404,410],[147,2,2,410,412],[148,12,8,412,420],[149,6,5,420,425],[151,1,1,425,426],[152,2,1,426,427]]],[4,131,114,427,541,[[153,10,9,427,436],[154,10,9,436,445],[155,2,2,445,447],[156,6,6,447,453],[157,4,3,453,456],[158,3,3,456,459],[159,11,10,459,469],[160,1,1,469,470],[161,9,7,470,477],[162,3,3,477,480],[163,6,5,480,485],[164,6,5,485,490],[166,3,3,490,493],[167,1,1,493,494],[168,4,3,494,497],[169,1,1,497,498],[170,2,2,498,500],[171,2,1,500,501],[172,2,2,501,503],[173,1,1,503,504],[174,2,2,504,506],[175,1,1,506,507],[176,2,2,507,509],[177,2,2,509,511],[178,5,4,511,515],[179,1,1,515,516],[180,9,6,516,522],[181,2,2,522,524],[182,3,3,524,527],[183,10,8,527,535],[184,2,2,535,537],[185,2,2,537,539],[186,3,2,539,541]]],[5,90,76,541,617,[[187,2,2,541,543],[188,4,4,543,547],[189,5,4,547,551],[190,7,6,551,557],[191,3,2,557,559],[192,9,8,559,567],[193,10,8,567,575],[194,7,6,575,581],[195,2,1,581,582],[196,5,5,582,587],[197,3,2,587,589],[199,3,3,589,592],[200,1,1,592,593],[201,1,1,593,594],[203,4,2,594,596],[204,6,6,596,602],[205,2,2,602,604],[206,2,2,604,606],[207,1,1,606,607],[208,2,2,607,609],[209,6,4,609,613],[210,5,4,613,617]]],[6,46,43,617,660,[[211,3,3,617,620],[212,4,4,620,624],[213,2,2,624,626],[214,3,3,626,629],[215,2,1,629,630],[216,7,6,630,636],[218,1,1,636,637],[219,3,3,637,640],[221,6,6,640,646],[223,2,2,646,648],[226,2,2,648,650],[228,2,2,650,652],[230,8,7,652,659],[231,1,1,659,660]]],[7,2,2,660,662,[[233,1,1,660,661],[235,1,1,661,662]]],[8,98,89,662,751,[[236,6,6,662,668],[237,6,6,668,674],[238,1,1,674,675],[239,3,3,675,678],[240,4,2,678,680],[241,1,1,680,681],[242,3,3,681,684],[243,3,3,684,687],[244,8,6,687,693],[245,4,4,693,697],[246,2,1,697,698],[247,3,2,698,700],[248,1,1,700,701],[249,2,2,701,703],[250,2,2,703,705],[251,5,5,705,710],[252,6,6,710,716],[253,6,6,716,722],[254,4,4,722,726],[255,3,2,726,728],[256,5,4,728,732],[257,1,1,732,733],[258,3,3,733,736],[259,1,1,736,737],[260,4,4,737,741],[261,4,4,741,745],[263,3,2,745,747],[264,1,1,747,748],[265,2,2,748,750],[266,1,1,750,751]]],[9,73,66,751,817,[[268,4,4,751,755],[269,6,4,755,759],[271,3,3,759,762],[272,7,6,762,768],[273,7,7,768,775],[275,1,1,775,776],[276,8,7,776,783],[277,3,3,783,786],[279,1,1,786,787],[280,8,7,787,794],[281,4,4,794,798],[282,3,1,798,799],[283,2,2,799,801],[284,3,3,801,804],[285,7,7,804,811],[286,1,1,811,812],[287,2,2,812,814],[289,1,1,814,815],[290,2,2,815,817]]],[10,100,88,817,905,[[291,8,7,817,824],[292,9,8,824,832],[293,7,7,832,839],[295,1,1,839,840],[296,6,4,840,844],[297,5,4,844,848],[298,21,18,848,866],[299,6,5,866,871],[300,2,2,871,873],[301,2,2,873,875],[302,4,4,875,879],[303,3,2,879,881],[304,2,2,881,883],[305,1,1,883,884],[306,3,3,884,887],[307,4,4,887,891],[308,6,6,891,897],[309,4,3,897,900],[311,4,3,900,903],[312,2,2,903,905]]],[11,73,68,905,973,[[313,1,1,905,906],[315,3,2,906,908],[316,7,6,908,914],[317,8,7,914,921],[318,3,3,921,924],[320,3,3,924,927],[321,3,3,927,930],[322,1,1,930,931],[323,2,2,931,933],[324,1,1,933,934],[325,3,3,934,937],[326,3,3,937,940],[328,4,3,940,943],[329,6,6,943,949],[330,3,3,949,952],[331,4,4,952,956],[332,2,2,956,958],[333,4,4,958,962],[334,3,2,962,964],[335,4,4,964,968],[336,2,2,968,970],[337,3,3,970,973]]],[12,63,56,973,1029,[[338,1,1,973,974],[341,1,1,974,975],[342,2,2,975,977],[343,1,1,977,978],[346,1,1,978,979],[347,1,1,979,980],[348,2,2,980,982],[349,4,3,982,985],[350,2,2,985,987],[351,2,2,987,989],[352,1,1,989,990],[353,11,10,990,1000],[354,7,7,1000,1007],[356,10,7,1007,1014],[358,4,3,1014,1017],[359,4,3,1017,1020],[360,2,2,1020,1022],[361,3,3,1022,1025],[366,4,4,1025,1029]]],[13,118,105,1029,1134,[[367,5,5,1029,1034],[368,2,2,1034,1036],[369,6,5,1036,1041],[370,3,3,1041,1044],[371,3,3,1044,1047],[372,12,10,1047,1057],[373,6,6,1057,1063],[374,1,1,1063,1064],[375,3,3,1064,1067],[376,3,3,1067,1070],[378,1,1,1070,1071],[379,5,5,1071,1076],[380,7,5,1076,1081],[381,2,2,1081,1083],[384,2,2,1083,1085],[385,4,3,1085,1088],[386,12,11,1088,1099],[388,1,1,1099,1100],[389,1,1,1100,1101],[390,1,1,1101,1102],[391,5,5,1102,1107],[392,1,1,1107,1108],[393,1,1,1108,1109],[394,3,3,1109,1112],[395,4,4,1112,1116],[396,2,1,1116,1117],[397,1,1,1117,1118],[398,5,4,1118,1122],[399,6,5,1122,1127],[400,8,5,1127,1132],[401,1,1,1132,1133],[402,1,1,1133,1134]]],[14,10,9,1134,1143,[[409,1,1,1134,1135],[410,2,2,1135,1137],[411,5,4,1137,1141],[412,2,2,1141,1143]]],[15,31,28,1143,1171,[[413,3,3,1143,1146],[414,7,6,1146,1152],[416,4,4,1152,1156],[417,2,1,1156,1157],[418,1,1,1157,1158],[420,4,3,1158,1161],[421,6,6,1161,1167],[424,1,1,1167,1168],[425,3,3,1168,1171]]],[16,36,32,1171,1203,[[426,9,8,1171,1179],[427,4,4,1179,1183],[428,1,1,1183,1184],[429,4,4,1184,1188],[430,1,1,1188,1189],[431,5,4,1189,1193],[432,3,3,1193,1196],[433,7,5,1196,1201],[434,2,2,1201,1203]]],[17,70,67,1203,1270,[[436,2,2,1203,1205],[437,2,2,1205,1207],[438,1,1,1207,1208],[439,2,2,1208,1210],[440,2,1,1210,1211],[441,1,1,1211,1212],[443,2,2,1212,1214],[444,2,2,1214,1216],[446,2,2,1216,1218],[448,6,6,1218,1224],[449,1,1,1224,1225],[450,3,3,1225,1228],[451,3,3,1228,1231],[452,2,2,1231,1233],[453,1,1,1233,1234],[454,1,1,1234,1235],[456,4,4,1235,1239],[457,2,2,1239,1241],[458,4,3,1241,1244],[459,2,2,1244,1246],[461,2,2,1246,1248],[464,1,1,1248,1249],[465,2,2,1249,1251],[467,1,1,1251,1252],[468,2,2,1252,1254],[469,3,2,1254,1256],[470,2,2,1256,1258],[472,2,2,1258,1260],[473,1,1,1260,1261],[474,1,1,1261,1262],[475,1,1,1262,1263],[476,4,4,1263,1267],[477,3,3,1267,1270]]],[18,129,122,1270,1392,[[481,1,1,1270,1271],[482,1,1,1271,1272],[486,2,2,1272,1274],[487,1,1,1274,1275],[488,1,1,1275,1276],[490,1,1,1276,1277],[493,1,1,1277,1278],[494,4,4,1278,1282],[495,2,2,1282,1284],[496,1,1,1284,1285],[498,3,3,1285,1288],[499,3,3,1288,1291],[500,1,1,1291,1292],[501,1,1,1292,1293],[504,3,2,1293,1295],[507,1,1,1295,1296],[508,2,2,1296,1298],[511,2,2,1298,1300],[512,1,1,1300,1301],[515,3,2,1301,1303],[518,1,1,1303,1304],[519,3,3,1304,1307],[520,1,1,1307,1308],[521,4,4,1308,1312],[522,1,1,1312,1313],[527,1,1,1313,1314],[528,2,2,1314,1316],[532,1,1,1316,1317],[533,1,1,1317,1318],[534,1,1,1318,1319],[537,1,1,1319,1320],[538,2,2,1320,1322],[539,1,1,1322,1323],[544,1,1,1323,1324],[545,8,6,1324,1330],[546,3,3,1330,1333],[549,3,3,1333,1336],[553,1,1,1336,1337],[555,1,1,1337,1338],[556,1,1,1338,1339],[557,6,6,1339,1345],[559,1,1,1345,1346],[560,2,2,1346,1348],[561,1,1,1348,1349],[562,1,1,1349,1350],[563,1,1,1350,1351],[565,2,2,1351,1353],[566,3,3,1353,1356],[567,1,1,1356,1357],[572,2,2,1357,1359],[573,3,3,1359,1362],[574,3,2,1362,1364],[575,2,2,1364,1366],[577,1,1,1366,1367],[579,4,4,1367,1371],[581,3,3,1371,1374],[582,2,2,1374,1376],[583,2,2,1376,1378],[591,2,1,1378,1379],[593,1,1,1379,1380],[596,4,4,1380,1384],[609,1,1,1384,1385],[616,1,1,1385,1386],[617,1,1,1386,1387],[618,1,1,1387,1388],[619,2,1,1388,1389],[620,2,2,1389,1391],[624,1,1,1391,1392]]],[19,42,38,1392,1430,[[631,1,1,1392,1393],[633,1,1,1393,1394],[634,2,2,1394,1396],[635,3,3,1396,1399],[641,2,2,1399,1401],[642,2,2,1401,1403],[643,4,3,1403,1406],[644,3,3,1406,1409],[645,4,3,1409,1412],[646,1,1,1412,1413],[648,1,1,1413,1414],[649,2,1,1414,1415],[650,1,1,1415,1416],[651,2,2,1416,1418],[652,5,5,1418,1423],[654,5,4,1423,1427],[655,1,1,1427,1428],[656,1,1,1428,1429],[657,1,1,1429,1430]]],[20,21,19,1430,1449,[[659,2,2,1430,1432],[660,4,3,1432,1435],[661,1,1,1435,1436],[662,1,1,1436,1437],[663,2,2,1437,1439],[665,2,2,1439,1441],[666,5,4,1441,1445],[667,1,1,1445,1446],[668,2,2,1446,1448],[669,1,1,1448,1449]]],[21,2,2,1449,1451,[[677,1,1,1449,1450],[678,1,1,1450,1451]]],[22,88,81,1451,1532,[[679,1,1,1451,1452],[680,3,3,1452,1455],[681,3,3,1455,1458],[683,1,1,1458,1459],[684,1,1,1459,1460],[685,1,1,1460,1461],[686,2,2,1461,1463],[687,2,2,1463,1465],[688,1,1,1465,1466],[691,2,1,1466,1467],[692,1,1,1467,1468],[694,1,1,1468,1469],[695,3,2,1469,1471],[696,2,2,1471,1473],[697,5,5,1473,1478],[698,1,1,1478,1479],[699,4,1,1479,1480],[701,2,2,1480,1482],[702,1,1,1482,1483],[703,2,2,1483,1485],[704,1,1,1485,1486],[705,1,1,1486,1487],[706,1,1,1487,1488],[707,1,1,1488,1489],[708,3,2,1489,1491],[709,1,1,1491,1492],[714,2,2,1492,1494],[715,3,3,1494,1497],[716,2,2,1497,1499],[718,1,1,1499,1500],[719,2,2,1500,1502],[720,1,1,1502,1503],[721,1,1,1503,1504],[723,3,2,1504,1506],[726,2,2,1506,1508],[728,2,2,1508,1510],[729,1,1,1510,1511],[730,1,1,1511,1512],[731,3,3,1512,1515],[732,1,1,1515,1516],[733,1,1,1516,1517],[735,2,2,1517,1519],[736,1,1,1519,1520],[737,1,1,1520,1521],[740,1,1,1521,1522],[741,2,2,1522,1524],[742,4,4,1524,1528],[743,2,2,1528,1530],[744,2,2,1530,1532]]],[23,129,111,1532,1643,[[745,5,3,1532,1535],[746,2,2,1535,1537],[747,1,1,1537,1538],[748,4,3,1538,1541],[749,2,2,1541,1543],[750,1,1,1543,1544],[751,5,5,1544,1549],[752,1,1,1549,1550],[753,3,3,1550,1553],[757,2,2,1553,1555],[758,1,1,1555,1556],[759,5,4,1556,1560],[760,2,2,1560,1562],[761,2,1,1562,1563],[762,5,3,1563,1566],[763,1,1,1566,1567],[765,3,3,1567,1570],[766,1,1,1570,1571],[767,4,3,1571,1574],[768,1,1,1574,1575],[769,7,6,1575,1581],[770,3,3,1581,1584],[771,1,1,1584,1585],[772,3,2,1585,1587],[774,2,2,1587,1589],[775,2,1,1589,1590],[776,3,3,1590,1593],[777,3,3,1593,1596],[778,3,3,1596,1599],[779,5,4,1599,1603],[780,3,3,1603,1606],[781,2,2,1606,1608],[782,2,2,1608,1610],[783,2,2,1610,1612],[784,2,2,1612,1614],[785,4,3,1614,1617],[786,7,5,1617,1622],[788,8,6,1622,1628],[790,1,1,1628,1629],[792,1,1,1629,1630],[793,4,3,1630,1633],[794,4,4,1633,1637],[795,2,2,1637,1639],[796,4,4,1639,1643]]],[24,11,10,1643,1653,[[797,3,3,1643,1646],[798,2,2,1646,1648],[799,1,1,1648,1649],[800,2,1,1649,1650],[801,3,3,1650,1653]]],[25,155,129,1653,1782,[[802,12,8,1653,1661],[803,4,3,1661,1664],[804,5,4,1664,1668],[805,3,3,1668,1671],[807,4,4,1671,1675],[808,2,2,1675,1677],[809,3,3,1677,1680],[810,2,2,1680,1682],[811,11,3,1682,1685],[812,1,1,1685,1686],[813,2,2,1686,1688],[814,1,1,1688,1689],[815,7,7,1689,1696],[816,2,1,1696,1697],[817,5,5,1697,1702],[821,6,5,1702,1707],[822,2,2,1707,1709],[823,1,1,1709,1710],[824,2,2,1710,1712],[826,1,1,1712,1713],[828,1,1,1713,1714],[829,3,3,1714,1717],[830,2,2,1717,1719],[831,2,2,1719,1721],[833,2,2,1721,1723],[834,3,3,1723,1726],[835,1,1,1726,1727],[836,1,1,1727,1728],[837,2,2,1728,1730],[838,1,1,1730,1731],[839,3,2,1731,1733],[840,5,5,1733,1738],[841,15,11,1738,1749],[842,10,9,1749,1758],[843,11,10,1758,1768],[844,3,3,1768,1771],[845,6,5,1771,1776],[846,2,1,1776,1777],[847,2,2,1777,1779],[848,1,1,1779,1780],[849,3,2,1780,1782]]],[26,33,32,1782,1814,[[850,6,6,1782,1788],[851,1,1,1788,1789],[857,8,8,1789,1797],[858,8,8,1797,1805],[859,5,4,1805,1809],[860,5,5,1809,1814]]],[27,9,9,1814,1823,[[863,1,1,1814,1815],[866,2,2,1815,1817],[867,1,1,1817,1818],[868,2,2,1818,1820],[871,2,2,1820,1822],[872,1,1,1822,1823]]],[28,8,6,1823,1829,[[877,8,6,1823,1829]]],[29,7,7,1829,1836,[[879,1,1,1829,1830],[880,1,1,1830,1831],[883,2,2,1831,1833],[887,3,3,1833,1836]]],[31,4,3,1836,1839,[[889,4,3,1836,1839]]],[32,5,4,1839,1843,[[893,1,1,1839,1840],[894,2,1,1840,1841],[895,1,1,1841,1842],[898,1,1,1842,1843]]],[33,5,5,1843,1848,[[900,2,2,1843,1845],[901,2,2,1845,1847],[902,1,1,1847,1848]]],[34,3,3,1848,1851,[[903,1,1,1848,1849],[904,1,1,1849,1850],[905,1,1,1850,1851]]],[35,3,3,1851,1854,[[906,3,3,1851,1854]]],[36,2,2,1854,1856,[[909,1,1,1854,1855],[910,1,1,1855,1856]]],[37,16,16,1856,1872,[[912,1,1,1856,1857],[913,5,5,1857,1862],[914,1,1,1862,1863],[915,1,1,1863,1864],[917,1,1,1864,1865],[918,3,3,1865,1868],[922,1,1,1868,1869],[924,3,3,1869,1872]]],[38,9,9,1872,1881,[[925,2,2,1872,1874],[926,3,3,1874,1877],[927,3,3,1877,1880],[928,1,1,1880,1881]]]],[1,19,28,36,63,84,85,93,95,138,144,148,150,160,162,163,166,177,182,191,192,196,228,243,270,274,275,294,327,328,387,389,393,398,400,414,415,432,440,446,470,478,484,485,510,574,575,579,583,588,590,598,603,624,631,642,667,676,734,737,747,757,773,821,860,863,870,875,878,894,908,931,944,945,948,949,958,963,970,974,978,990,1001,1012,1018,1046,1047,1071,1134,1179,1181,1226,1238,1241,1251,1293,1295,1299,1304,1305,1321,1323,1324,1338,1347,1350,1353,1361,1363,1365,1414,1416,1422,1426,1427,1430,1433,1438,1462,1466,1471,1503,1507,1519,1522,1524,1544,1569,1585,1586,1604,1622,1667,1685,1694,1695,1730,1734,1752,1753,1755,1772,1780,1787,1788,1791,1805,1806,1816,1888,1889,1891,1898,1908,1914,1956,1961,1980,1981,1988,1989,2011,2033,2044,2054,2071,2078,2159,2161,2164,2165,2167,2171,2172,2173,2174,2175,2215,2225,2232,2244,2293,2305,2318,2320,2322,2323,2328,2330,2331,2346,2347,2359,2360,2361,2362,2378,2388,2390,2398,2418,2439,2443,2450,2458,2461,2472,2475,2484,2487,2488,2489,2492,2493,2496,2502,2507,2516,2519,2520,2525,2526,2529,2530,2531,2544,2551,2569,2613,2682,2684,2700,2712,2713,2730,2732,2733,2748,2750,2756,2779,2785,2786,2790,2791,2799,2801,2802,2809,2810,2812,2813,2819,2856,2863,2874,2909,2926,2943,2944,2946,2955,2957,2958,2974,2977,2978,2979,2980,2981,2992,2994,2996,3051,3093,3118,3122,3123,3127,3129,3134,3135,3138,3140,3142,3164,3182,3183,3198,3202,3203,3208,3211,3213,3214,3215,3216,3219,3231,3239,3240,3245,3274,3275,3278,3279,3281,3295,3296,3303,3313,3321,3323,3324,3341,3372,3413,3422,3430,3442,3449,3450,3452,3454,3531,3532,3534,3541,3561,3578,3581,3696,3698,3699,3730,3750,3808,3810,3817,3822,3839,3843,3848,3849,3853,3860,3941,3942,3948,3949,3950,3952,3960,3961,3971,3997,3998,4021,4023,4044,4055,4062,4073,4097,4113,4122,4145,4150,4151,4168,4178,4181,4196,4198,4201,4203,4210,4211,4216,4232,4234,4237,4239,4240,4248,4251,4253,4254,4259,4276,4292,4293,4305,4314,4317,4320,4321,4351,4360,4378,4408,4444,4447,4550,4556,4559,4571,4573,4575,4576,4714,4718,4722,4735,4738,4739,4740,4745,4747,4750,4767,4768,4807,4812,4815,4857,4880,4900,4909,4913,4914,4922,4925,4930,4934,4937,4948,4950,4958,4959,4960,4963,4969,4971,4974,4993,5003,5012,5014,5036,5041,5042,5048,5057,5058,5060,5101,5105,5111,5112,5113,5117,5121,5130,5131,5132,5133,5134,5135,5157,5159,5160,5161,5162,5175,5176,5182,5194,5197,5203,5212,5231,5233,5234,5240,5247,5252,5258,5269,5270,5292,5313,5316,5339,5353,5358,5361,5382,5391,5396,5423,5430,5446,5463,5476,5487,5514,5529,5538,5549,5556,5570,5571,5576,5579,5592,5618,5631,5636,5642,5661,5671,5689,5694,5709,5723,5727,5731,5733,5734,5736,5739,5745,5746,5749,5778,5807,5811,5837,5840,5849,5856,5865,5878,5879,5880,5893,5899,5903,5904,5907,5915,5917,5921,5922,5923,5933,5935,5948,5950,5953,5955,5956,5957,5958,5962,5975,5980,5981,5982,5984,5986,5988,5989,5999,6007,6008,6012,6016,6017,6034,6061,6072,6074,6075,6076,6078,6113,6117,6157,6160,6179,6202,6217,6279,6282,6294,6299,6301,6303,6307,6309,6332,6372,6378,6381,6425,6453,6455,6463,6465,6469,6473,6477,6484,6488,6494,6519,6520,6532,6548,6559,6563,6566,6570,6595,6613,6614,6622,6628,6656,6660,6663,6665,6672,6676,6747,6775,6793,6794,6832,6838,6840,6852,6853,6862,6899,6904,6952,6974,7014,7016,7077,7080,7082,7086,7089,7093,7096,7104,7159,7197,7224,7227,7228,7230,7231,7234,7251,7257,7258,7268,7270,7275,7277,7299,7300,7314,7322,7323,7351,7358,7359,7362,7380,7387,7389,7400,7403,7406,7410,7415,7418,7423,7426,7437,7443,7460,7462,7467,7497,7521,7533,7567,7593,7603,7605,7611,7616,7617,7625,7642,7649,7659,7667,7675,7687,7688,7689,7691,7692,7705,7713,7714,7716,7730,7731,7745,7778,7779,7782,7784,7791,7828,7834,7836,7841,7871,7880,7884,7896,7906,7908,7924,7925,7964,7967,7975,7994,7998,8010,8063,8066,8071,8073,8094,8112,8115,8116,8135,8152,8156,8161,8162,8171,8173,8174,8178,8189,8195,8196,8198,8203,8206,8209,8233,8249,8253,8254,8255,8256,8258,8259,8270,8272,8274,8326,8363,8376,8378,8380,8384,8388,8389,8390,8403,8407,8412,8445,8460,8468,8485,8486,8492,8515,8516,8519,8524,8528,8529,8539,8562,8581,8589,8664,8696,8705,8719,8722,8740,8742,8745,8749,8767,8774,8777,8785,8786,8787,8790,8796,8815,8822,8828,8831,8832,8838,8840,8844,8881,8899,8916,8917,8925,8940,8976,8982,8983,8990,8993,8996,8999,9007,9008,9010,9013,9016,9018,9025,9031,9035,9039,9044,9047,9049,9050,9054,9055,9057,9058,9076,9087,9103,9115,9144,9153,9157,9159,9181,9190,9218,9227,9242,9252,9308,9313,9316,9318,9320,9322,9331,9342,9348,9356,9380,9383,9387,9398,9400,9406,9455,9477,9480,9490,9501,9548,9590,9600,9615,9632,9634,9641,9646,9647,9648,9649,9650,9662,9663,9670,9674,9675,9696,9706,9736,9738,9742,9770,9788,9793,9797,9831,9847,9867,9875,9885,9894,9904,9907,9908,9966,9977,9981,9985,9991,9994,10001,10003,10006,10029,10046,10048,10067,10075,10076,10087,10100,10101,10121,10128,10130,10132,10155,10164,10168,10178,10190,10192,10205,10222,10241,10248,10251,10295,10425,10438,10453,10486,10635,10660,10676,10686,10721,10728,10737,10768,10770,10782,10789,10815,10821,10824,10826,10831,10847,10849,10850,10853,10857,10859,10871,10876,10879,10884,10887,10888,10890,10914,10917,10921,10922,10923,10925,10926,10946,10950,10964,10969,10972,10982,10996,11014,11017,11021,11046,11176,11179,11186,11189,11199,11200,11204,11206,11207,11215,11217,11233,11237,11242,11244,11246,11259,11265,11266,11274,11277,11282,11285,11294,11296,11298,11301,11304,11306,11313,11318,11324,11328,11331,11338,11341,11343,11344,11358,11371,11375,11387,11397,11401,11403,11442,11460,11466,11467,11468,11469,11480,11482,11485,11487,11488,11492,11498,11551,11562,11578,11583,11587,11590,11592,11594,11596,11599,11600,11602,11603,11604,11605,11608,11655,11673,11691,11712,11718,11721,11725,11726,11751,11761,11767,11773,11778,11797,11802,11810,11814,11836,11874,11877,11882,11887,11896,11910,11917,11920,11927,11931,11937,11951,11957,11960,11964,11988,12005,12201,12222,12230,12243,12244,12246,12252,12253,12258,12300,12302,12307,12308,12309,12310,12312,12313,12320,12361,12364,12368,12373,12397,12420,12494,12495,12496,12519,12522,12535,12539,12543,12546,12660,12675,12676,12690,12705,12712,12713,12715,12716,12718,12719,12721,12733,12735,12741,12747,12754,12764,12767,12768,12770,12793,12794,12802,12804,12806,12813,12815,12816,12818,12820,12821,12822,12832,12845,12859,12880,12881,12896,12898,12928,12945,12949,12961,13006,13041,13045,13075,13078,13123,13127,13161,13163,13168,13169,13173,13177,13201,13207,13210,13230,13246,13252,13254,13266,13272,13293,13326,13363,13373,13386,13388,13397,13415,13423,13434,13436,13451,13454,13476,13477,13556,13567,13568,13649,13655,13676,13702,13712,13732,13734,13781,13788,13823,13856,13877,13898,13901,13902,13910,13930,13931,13933,13971,13981,14024,14040,14052,14066,14075,14103,14105,14112,14116,14118,14124,14160,14182,14197,14200,14203,14228,14231,14233,14240,14247,14293,14294,14326,14347,14351,14393,14404,14415,14493,14495,14554,14557,14560,14566,14571,14574,14586,14587,14595,14609,14671,14700,14702,14735,14768,14774,14811,14822,14826,14835,14894,14901,14902,14903,14904,14907,14908,14942,14952,14957,15005,15009,15017,15088,15168,15196,15200,15201,15205,15207,15214,15217,15235,15254,15257,15268,15284,15293,15310,15322,15340,15341,15349,15386,15456,15460,15471,15474,15478,15481,15483,15496,15499,15510,15523,15531,15546,15549,15586,15600,15601,15610,15623,15674,15697,15829,15857,15956,16033,16067,16068,16161,16246,16276,16278,16288,16295,16300,16368,16493,16575,16588,16590,16627,16629,16632,16784,16791,16820,16840,16855,16858,16865,16887,16891,16897,16906,16913,16917,16931,17013,17044,17045,17102,17110,17118,17119,17120,17136,17139,17173,17186,17188,17192,17217,17250,17281,17325,17331,17340,17342,17359,17373,17397,17399,17403,17432,17455,17459,17461,17470,17471,17476,17498,17503,17514,17631,17652,17666,17695,17704,17706,17710,17716,17722,17760,17771,17784,17811,17824,17832,17844,17877,17914,17949,17973,17992,17996,17999,18002,18005,18012,18020,18021,18024,18035,18050,18094,18095,18096,18125,18126,18147,18157,18189,18215,18228,18234,18258,18337,18339,18358,18366,18379,18392,18393,18430,18453,18477,18496,18515,18562,18563,18621,18633,18668,18669,18686,18708,18713,18714,18718,18731,18752,18766,18781,18794,18802,18865,18875,18878,18886,18887,18888,18892,18900,18903,18944,18945,18954,18959,18963,18987,18992,19014,19028,19031,19053,19061,19080,19096,19129,19131,19134,19138,19143,19155,19182,19188,19197,19283,19292,19309,19316,19324,19332,19334,19340,19353,19373,19401,19404,19407,19414,19448,19450,19452,19479,19493,19494,19523,19525,19550,19560,19561,19567,19571,19572,19575,19576,19591,19601,19626,19634,19673,19687,19727,19755,19762,19764,19780,19793,19799,19806,19816,19819,19828,19830,19834,19842,19849,19851,19864,19885,19894,19904,19921,19939,19940,19945,19951,19966,19972,19975,19977,19984,19986,19990,19992,20013,20020,20021,20022,20032,20033,20061,20124,20132,20146,20164,20171,20174,20182,20210,20263,20276,20279,20288,20301,20309,20315,20316,20332,20335,20351,20389,20436,20451,20452,20454,20470,20472,20473,20474,20475,20476,20479,20492,20496,20498,20502,20510,20511,20522,20525,20530,20532,20536,20565,20567,20568,20572,20595,20599,20605,20615,20620,20628,20630,20647,20654,20655,20668,20686,20692,20725,20732,20734,20735,20737,20738,20739,20746,20761,20767,20780,20781,20812,20825,20896,20930,20938,20941,20942,20946,20960,21006,21031,21048,21085,21156,21166,21174,21178,21185,21188,21213,21228,21252,21258,21302,21307,21311,21319,21346,21376,21390,21399,21427,21445,21453,21462,21471,21472,21477,21483,21489,21492,21496,21497,21499,21503,21521,21522,21523,21524,21530,21538,21540,21541,21544,21545,21547,21548,21551,21554,21555,21556,21559,21560,21562,21563,21564,21565,21567,21575,21576,21596,21602,21603,21610,21611,21614,21637,21658,21664,21680,21717,21723,21742,21746,21747,21750,21755,21756,21760,21964,21965,21966,21967,21968,21978,21979,21984,21991,21995,21996,21998,22001,22005,22006,22008,22021,22024,22027,22030,22052,22053,22054,22055,22058,22107,22157,22167,22169,22180,22188,22232,22240,22242,22314,22317,22321,22322,22331,22342,22365,22388,22431,22442,22499,22501,22503,22533,22534,22541,22583,22608,22612,22652,22689,22690,22700,22709,22717,22740,22768,22773,22789,22790,22794,22852,22869,22912,22913,22915,22916,22920,22921,22929,22939,22964,22986,22997,22998,23053,23072,23073,23088,23097,23098,23106,23108,23112,23121,23134,23136,23143]]],["+",[547,506,[[0,36,34,0,34,[[2,1,1,0,1],[3,2,2,1,3],[5,1,1,3,4],[6,1,1,4,5],[10,1,1,5,6],[15,3,3,6,9],[17,1,1,9,10],[18,3,2,10,12],[22,4,4,12,16],[23,1,1,16,17],[24,2,2,17,19],[26,1,1,19,20],[30,1,1,20,21],[31,3,2,21,23],[34,2,2,23,25],[35,2,2,25,27],[40,2,2,27,29],[44,1,1,29,30],[46,2,2,30,32],[48,1,1,32,33],[49,1,1,33,34]]],[1,35,35,34,69,[[50,1,1,34,35],[51,1,1,35,36],[52,1,1,36,37],[53,1,1,37,38],[57,1,1,38,39],[58,2,2,39,41],[59,2,2,41,43],[63,2,2,43,45],[68,2,2,45,47],[69,1,1,47,48],[72,6,6,48,54],[74,2,2,54,56],[75,1,1,56,57],[77,2,2,57,59],[81,1,1,59,60],[82,1,1,60,61],[83,3,3,61,64],[84,2,2,64,66],[85,1,1,66,67],[88,2,2,67,69]]],[2,15,15,69,84,[[95,1,1,69,70],[97,1,1,70,71],[98,2,2,71,73],[99,2,2,73,75],[105,3,3,75,78],[107,1,1,78,79],[108,1,1,79,80],[109,1,1,80,81],[111,1,1,81,82],[115,2,2,82,84]]],[3,21,20,84,104,[[124,2,2,84,86],[126,1,1,86,87],[132,2,2,87,89],[133,1,1,89,90],[136,3,3,90,93],[137,2,2,93,95],[138,3,2,95,97],[139,1,1,97,98],[148,2,2,98,100],[149,4,4,100,104]]],[4,38,36,104,140,[[153,1,1,104,105],[154,4,4,105,109],[156,1,1,109,110],[157,4,3,110,113],[158,1,1,113,114],[159,5,5,114,119],[160,1,1,119,120],[161,4,3,120,123],[163,3,3,123,126],[164,2,2,126,128],[166,1,1,128,129],[169,1,1,129,130],[170,1,1,130,131],[172,2,2,131,133],[173,1,1,133,134],[180,3,3,134,137],[183,2,2,137,139],[185,1,1,139,140]]],[5,30,26,140,166,[[188,4,4,140,144],[189,1,1,144,145],[190,3,2,145,147],[191,2,1,147,148],[192,1,1,148,149],[195,2,1,149,150],[196,1,1,150,151],[197,1,1,151,152],[199,3,3,152,155],[203,1,1,155,156],[204,2,2,156,158],[205,1,1,158,159],[209,5,4,159,163],[210,3,3,163,166]]],[6,17,16,166,182,[[212,3,3,166,169],[215,2,1,169,170],[216,4,4,170,174],[219,2,2,174,176],[221,4,4,176,180],[226,2,2,180,182]]],[8,22,21,182,203,[[242,1,1,182,183],[243,1,1,183,184],[249,1,1,184,185],[252,1,1,185,186],[253,4,4,186,190],[254,2,2,190,192],[255,1,1,192,193],[256,4,3,193,196],[258,1,1,196,197],[259,1,1,197,198],[260,1,1,198,199],[261,2,2,199,201],[265,1,1,201,202],[266,1,1,202,203]]],[9,14,14,203,217,[[268,1,1,203,204],[273,3,3,204,207],[276,4,4,207,211],[277,1,1,211,212],[280,1,1,212,213],[281,2,2,213,215],[287,1,1,215,216],[289,1,1,216,217]]],[10,33,28,217,245,[[291,1,1,217,218],[292,5,4,218,222],[293,1,1,222,223],[295,1,1,223,224],[296,4,2,224,226],[297,4,3,226,229],[298,5,5,229,234],[299,1,1,234,235],[301,1,1,235,236],[302,1,1,236,237],[303,1,1,237,238],[304,1,1,238,239],[307,3,3,239,242],[308,1,1,242,243],[311,3,2,243,245]]],[11,21,21,245,266,[[313,1,1,245,246],[315,1,1,246,247],[317,3,3,247,250],[318,1,1,250,251],[321,1,1,251,252],[323,1,1,252,253],[325,1,1,253,254],[328,2,2,254,256],[329,3,3,256,259],[331,1,1,259,260],[333,3,3,260,263],[334,1,1,263,264],[335,1,1,264,265],[337,1,1,265,266]]],[12,16,16,266,282,[[342,2,2,266,268],[347,1,1,268,269],[348,1,1,269,270],[349,1,1,270,271],[353,2,2,271,273],[354,2,2,273,275],[356,4,4,275,279],[358,2,2,279,281],[366,1,1,281,282]]],[13,30,27,282,309,[[367,1,1,282,283],[369,3,3,283,286],[370,2,2,286,288],[371,2,2,288,290],[372,2,2,290,292],[376,1,1,292,293],[378,1,1,293,294],[379,2,2,294,296],[385,2,1,296,297],[386,2,2,297,299],[388,1,1,299,300],[394,1,1,300,301],[398,2,1,301,302],[399,5,4,302,306],[400,2,2,306,308],[402,1,1,308,309]]],[14,1,1,309,310,[[412,1,1,309,310]]],[15,7,7,310,317,[[414,2,2,310,312],[416,3,3,312,315],[417,1,1,315,316],[425,1,1,316,317]]],[16,5,5,317,322,[[426,1,1,317,318],[429,1,1,318,319],[430,1,1,319,320],[432,1,1,320,321],[433,1,1,321,322]]],[17,21,19,322,341,[[440,2,1,322,323],[441,1,1,323,324],[448,2,2,324,326],[451,1,1,326,327],[452,1,1,327,328],[453,1,1,328,329],[454,1,1,329,330],[457,1,1,330,331],[458,3,2,331,333],[459,1,1,333,334],[461,1,1,334,335],[465,2,2,335,337],[470,1,1,337,338],[472,1,1,338,339],[474,1,1,339,340],[477,1,1,340,341]]],[18,27,22,341,363,[[486,1,1,341,342],[494,3,3,342,345],[495,1,1,345,346],[515,3,2,346,348],[521,1,1,348,349],[528,1,1,349,350],[532,1,1,350,351],[537,1,1,351,352],[538,1,1,352,353],[545,5,3,353,356],[555,1,1,356,357],[566,1,1,357,358],[573,1,1,358,359],[574,2,1,359,360],[579,1,1,360,361],[591,2,1,361,362],[616,1,1,362,363]]],[19,3,3,363,366,[[633,1,1,363,364],[644,1,1,364,365],[657,1,1,365,366]]],[20,8,8,366,374,[[659,1,1,366,367],[661,1,1,367,368],[665,1,1,368,369],[666,3,3,369,372],[668,1,1,372,373],[669,1,1,373,374]]],[22,37,33,374,407,[[680,3,3,374,377],[681,1,1,377,378],[685,1,1,378,379],[687,1,1,379,380],[688,1,1,380,381],[691,1,1,381,382],[694,1,1,382,383],[695,1,1,383,384],[696,1,1,384,385],[697,5,5,385,390],[698,1,1,390,391],[699,4,1,391,392],[702,1,1,392,393],[704,1,1,393,394],[708,3,2,394,396],[709,1,1,396,397],[715,1,1,397,398],[719,1,1,398,399],[726,1,1,399,400],[729,1,1,400,401],[735,2,2,401,403],[741,1,1,403,404],[742,3,3,404,407]]],[23,57,50,407,457,[[745,3,3,407,410],[748,4,3,410,413],[749,1,1,413,414],[750,1,1,414,415],[751,1,1,415,416],[753,1,1,416,417],[757,1,1,417,418],[758,1,1,418,419],[759,1,1,419,420],[760,1,1,420,421],[761,1,1,421,422],[762,1,1,422,423],[765,1,1,423,424],[766,1,1,424,425],[767,3,2,425,427],[769,6,5,427,432],[770,2,2,432,434],[771,1,1,434,435],[775,1,1,435,436],[776,1,1,436,437],[777,1,1,437,438],[779,3,2,438,440],[781,1,1,440,441],[782,1,1,441,442],[783,1,1,442,443],[784,1,1,443,444],[785,4,3,444,447],[786,3,2,447,449],[788,4,3,449,452],[790,1,1,452,453],[792,1,1,453,454],[794,1,1,454,455],[795,1,1,455,456],[796,1,1,456,457]]],[24,3,3,457,460,[[798,1,1,457,458],[801,2,2,458,460]]],[25,26,23,460,483,[[803,2,2,460,462],[804,1,1,462,463],[811,2,2,463,465],[815,1,1,465,466],[817,1,1,466,467],[831,1,1,467,468],[833,1,1,468,469],[839,1,1,469,470],[841,1,1,470,471],[842,3,3,471,474],[843,6,5,474,479],[845,1,1,479,480],[846,2,1,480,481],[849,3,2,481,483]]],[26,1,1,483,484,[[860,1,1,483,484]]],[27,4,4,484,488,[[863,1,1,484,485],[871,2,2,485,487],[872,1,1,487,488]]],[28,1,1,488,489,[[877,1,1,488,489]]],[29,2,2,489,491,[[880,1,1,489,490],[883,1,1,490,491]]],[31,3,2,491,493,[[889,3,2,491,493]]],[32,1,1,493,494,[[893,1,1,493,494]]],[33,1,1,494,495,[[900,1,1,494,495]]],[34,1,1,495,496,[[904,1,1,495,496]]],[35,3,3,496,499,[[906,3,3,496,499]]],[36,1,1,499,500,[[909,1,1,499,500]]],[37,3,3,500,503,[[912,1,1,500,501],[924,2,2,501,503]]],[38,3,3,503,506,[[926,2,2,503,505],[927,1,1,505,506]]]],[63,93,95,150,166,294,387,389,393,440,478,485,574,575,579,590,603,667,676,773,908,948,949,1012,1018,1046,1047,1226,1241,1361,1430,1433,1503,1519,1544,1569,1586,1604,1734,1753,1772,1780,1787,1908,1914,2033,2044,2054,2161,2165,2172,2173,2174,2175,2225,2232,2244,2318,2330,2458,2492,2502,2507,2520,2544,2551,2569,2682,2700,2863,2926,2958,2977,2979,2980,3203,3213,3215,3275,3313,3341,3372,3534,3561,3941,3942,4023,4237,4240,4253,4317,4320,4321,4351,4360,4378,4408,4444,4735,4739,4767,4768,4812,4815,4909,4950,4959,4960,4963,5042,5057,5058,5060,5105,5112,5130,5131,5132,5133,5157,5161,5162,5176,5212,5231,5233,5269,5270,5292,5382,5396,5430,5446,5463,5631,5642,5671,5731,5734,5837,5878,5879,5880,5893,5903,5917,5933,5935,5950,6061,6075,6113,6157,6160,6179,6282,6307,6309,6332,6463,6465,6469,6473,6484,6488,6494,6548,6563,6566,6628,6656,6660,6663,6665,6775,6794,6832,6852,6853,6862,6952,6974,7359,7387,7533,7642,7687,7688,7691,7705,7714,7716,7745,7778,7782,7784,7836,7841,7871,7906,7908,7994,8010,8073,8189,8195,8203,8249,8253,8254,8258,8274,8363,8407,8412,8581,8664,8767,8777,8786,8787,8790,8844,8881,8899,8925,8940,8976,8982,8993,8996,9010,9025,9039,9058,9115,9153,9190,9242,9320,9322,9331,9342,9477,9480,9548,9600,9648,9649,9674,9706,9770,9831,9875,9966,9981,9991,9994,10003,10067,10121,10128,10132,10164,10178,10248,10438,10453,10660,10686,10721,10850,10853,10871,10884,10917,10921,10922,10925,10946,10964,11176,11207,11233,11237,11246,11259,11265,11277,11282,11298,11313,11397,11442,11460,11469,11578,11594,11602,11655,11767,11882,11910,11917,11920,11931,11937,11960,12005,12258,12313,12320,12364,12368,12373,12397,12676,12721,12770,12793,12813,12832,12961,13006,13168,13173,13252,13272,13293,13326,13397,13434,13436,13454,13477,13567,13568,13732,13788,13856,13931,14024,14105,14112,14116,14160,14493,14495,14587,14702,14735,14811,14822,14901,14902,14908,15168,15349,15474,15483,15531,15829,16246,16575,16897,17281,17325,17373,17455,17461,17470,17471,17498,17514,17695,17704,17706,17710,17784,17844,17877,17914,17973,17992,17999,18005,18012,18020,18021,18024,18035,18050,18096,18147,18228,18234,18258,18358,18477,18633,18686,18766,18781,18878,18886,18887,18888,18954,18959,18963,19028,19031,19053,19080,19096,19131,19182,19283,19309,19332,19353,19373,19407,19452,19479,19493,19494,19550,19561,19567,19571,19572,19575,19591,19601,19727,19755,19793,19830,19834,19885,19904,19940,19951,19966,19972,19975,19986,19992,20013,20032,20033,20061,20124,20182,20276,20288,20335,20451,20452,20496,20498,20511,20654,20655,20746,20825,21213,21258,21445,21496,21530,21538,21541,21554,21555,21560,21562,21565,21603,21637,21717,21723,22058,22107,22232,22240,22242,22317,22388,22442,22534,22541,22583,22689,22768,22789,22790,22794,22852,22912,23072,23073,23108,23112,23134]]],["Before",[5,5,[[18,3,3,0,3,[[557,1,1,0,1],[573,1,1,1,2],[575,1,1,2,3]]],[19,1,1,3,4,[[645,1,1,3,4]]],[34,1,1,4,5,[[905,1,1,4,5]]]],[15200,15478,15499,16913,22773]]],["Beforetime",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7400]]],["afore",[2,2,[[22,1,1,0,1,[[696,1,1,0,1]]],[25,1,1,1,2,[[834,1,1,1,2]]]],[18002,21302]]],["aforetime",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13266]]],["against",[9,9,[[1,1,1,0,1,[[63,1,1,0,1]]],[4,3,3,1,4,[[183,1,1,1,2],[184,1,1,2,3],[186,1,1,3,4]]],[8,1,1,4,5,[[250,1,1,4,5]]],[12,1,1,5,6,[[351,1,1,5,6]]],[13,3,3,6,9,[[380,1,1,6,7],[386,2,2,7,9]]]],[1891,5749,5807,5840,7567,10782,11485,11599,11604]]],["anger",[3,3,[[18,1,1,0,1,[[498,1,1,0,1]]],[23,1,1,1,2,[[747,1,1,1,2]]],[24,1,1,2,3,[[800,1,1,2,3]]]],[14200,19014,20436]]],["at",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12820]]],["before",[971,904,[[0,51,48,0,48,[[5,2,2,0,2],[6,1,1,2,3],[9,2,1,3,4],[12,2,2,4,6],[16,2,2,6,8],[17,2,2,8,10],[18,1,1,10,11],[19,1,1,11,12],[22,2,2,12,14],[23,4,4,14,18],[26,3,2,18,20],[28,1,1,20,21],[29,1,1,21,22],[31,4,4,22,26],[32,4,3,26,29],[33,1,1,29,30],[35,1,1,30,31],[39,1,1,31,32],[40,2,2,32,34],[42,5,5,34,39],[43,1,1,39,40],[44,2,2,40,42],[45,1,1,42,43],[46,2,2,43,45],[47,2,2,45,47],[49,1,1,47,48]]],[1,64,61,48,109,[[53,1,1,48,49],[55,2,2,49,51],[56,3,2,51,53],[57,1,1,53,54],[58,3,3,54,57],[59,1,1,57,58],[60,1,1,58,59],[62,2,2,59,61],[63,3,3,61,64],[65,3,3,64,67],[66,2,2,67,69],[67,1,1,69,70],[70,1,1,70,71],[72,5,5,71,76],[74,1,1,76,77],[76,1,1,77,78],[77,6,5,78,83],[78,7,7,83,90],[79,5,4,90,94],[81,4,4,94,98],[82,2,2,98,100],[83,4,4,100,104],[89,5,5,104,109]]],[2,79,75,109,184,[[90,3,3,109,112],[92,5,5,112,117],[93,12,8,117,125],[95,3,3,125,128],[96,1,1,128,129],[97,3,3,129,132],[98,4,4,132,136],[99,6,6,136,142],[101,1,1,142,143],[103,9,9,143,152],[104,3,3,152,155],[105,8,8,155,163],[106,1,1,163,164],[107,4,4,164,168],[108,2,2,168,170],[112,4,4,170,174],[113,4,4,174,178],[115,4,4,178,182],[116,2,2,182,184]]],[3,83,68,184,252,[[119,6,4,184,188],[121,4,4,188,192],[122,2,2,192,194],[123,3,2,194,196],[124,8,6,196,202],[125,2,1,202,203],[126,3,3,203,206],[127,1,1,206,207],[129,1,1,207,208],[130,5,5,208,213],[131,3,3,213,216],[132,7,7,216,223],[133,3,3,223,226],[134,2,2,226,228],[135,2,2,228,230],[136,1,1,230,231],[142,1,1,231,232],[143,12,6,232,238],[147,2,2,238,240],[148,10,8,240,248],[149,2,2,248,250],[151,1,1,250,251],[152,2,1,251,252]]],[4,65,59,252,311,[[153,8,8,252,260],[154,2,2,260,262],[155,2,2,262,264],[156,4,4,264,268],[158,1,1,268,269],[159,2,2,269,271],[161,4,4,271,275],[162,2,2,275,277],[163,3,3,277,280],[164,4,3,280,283],[166,2,2,283,285],[167,1,1,285,286],[168,3,2,286,288],[170,1,1,288,289],[171,2,1,289,290],[174,2,2,290,292],[175,1,1,292,293],[176,2,2,293,295],[178,5,4,295,299],[179,1,1,299,300],[180,3,2,300,302],[181,2,2,302,304],[182,3,3,304,307],[183,4,3,307,310],[185,1,1,310,311]]],[5,54,48,311,359,[[187,2,2,311,313],[189,4,3,313,316],[190,3,3,316,319],[192,8,7,319,326],[193,8,7,326,333],[194,6,5,333,338],[196,4,4,338,342],[197,1,1,342,343],[200,1,1,343,344],[201,1,1,344,345],[203,3,1,345,346],[204,4,4,346,350],[205,1,1,350,351],[206,2,2,351,353],[207,1,1,353,354],[208,2,2,354,356],[209,1,1,356,357],[210,2,2,357,359]]],[6,24,23,359,382,[[211,3,3,359,362],[212,1,1,362,363],[213,2,2,363,365],[214,3,3,365,368],[216,1,1,368,369],[218,1,1,369,370],[219,1,1,370,371],[221,2,2,371,373],[228,1,1,373,374],[230,8,7,374,381],[231,1,1,381,382]]],[8,62,57,382,439,[[236,4,4,382,386],[237,6,6,386,392],[238,1,1,392,393],[239,3,3,393,396],[240,2,2,396,398],[241,1,1,398,399],[242,2,2,399,401],[243,2,2,401,403],[244,6,5,403,408],[245,4,4,408,412],[246,2,1,412,413],[247,3,2,413,415],[249,1,1,415,416],[250,1,1,416,417],[251,5,5,417,422],[252,4,4,422,426],[253,2,2,426,428],[254,1,1,428,429],[255,2,1,429,430],[256,1,1,430,431],[257,1,1,431,432],[258,2,2,432,434],[260,1,1,434,435],[261,1,1,435,436],[263,3,2,436,438],[265,1,1,438,439]]],[9,34,33,439,472,[[268,2,2,439,441],[269,2,2,441,443],[271,3,3,443,446],[272,7,6,446,452],[273,4,4,452,456],[276,3,3,456,459],[277,1,1,459,460],[279,1,1,460,461],[280,1,1,461,462],[281,1,1,462,463],[284,1,1,463,464],[285,5,5,464,469],[286,1,1,469,470],[287,1,1,470,471],[290,1,1,471,472]]],[10,53,50,472,522,[[291,6,6,472,478],[292,3,3,478,481],[293,6,6,481,487],[296,1,1,487,488],[297,1,1,488,489],[298,14,12,489,501],[299,4,4,501,505],[300,1,1,505,506],[301,1,1,506,507],[302,3,3,507,510],[304,1,1,510,511],[305,1,1,511,512],[306,3,3,512,515],[307,1,1,515,516],[308,2,2,516,518],[309,3,2,518,520],[312,2,2,520,522]]],[11,28,28,522,550,[[315,1,1,522,523],[316,5,5,523,528],[317,3,3,528,531],[318,1,1,531,532],[320,1,1,532,533],[322,1,1,533,534],[323,1,1,534,535],[326,1,1,535,536],[328,1,1,536,537],[329,1,1,537,538],[330,2,2,538,540],[331,3,3,540,543],[332,1,1,543,544],[333,1,1,544,545],[334,2,2,545,547],[335,2,2,547,549],[337,1,1,549,550]]],[12,36,33,550,583,[[338,1,1,550,551],[343,1,1,551,552],[348,1,1,552,553],[350,2,2,553,555],[351,1,1,555,556],[352,1,1,556,557],[353,7,6,557,563],[354,5,5,563,568],[356,6,5,568,573],[358,1,1,573,574],[359,3,2,574,576],[360,2,2,576,578],[361,2,2,578,580],[366,3,3,580,583]]],[13,66,62,583,645,[[367,4,4,583,587],[368,2,2,587,589],[369,1,1,589,590],[370,1,1,590,591],[371,1,1,591,592],[372,8,7,592,599],[373,4,4,599,603],[374,1,1,603,604],[375,2,2,604,606],[376,2,2,606,608],[379,3,3,608,611],[380,6,4,611,615],[381,1,1,615,616],[384,2,2,616,618],[385,1,1,618,619],[386,6,6,619,625],[389,1,1,625,626],[390,1,1,626,627],[391,3,3,627,630],[392,1,1,630,631],[393,1,1,631,632],[394,2,2,632,634],[395,3,3,634,637],[396,1,1,637,638],[397,1,1,638,639],[398,1,1,639,640],[399,1,1,640,641],[400,5,4,641,645]]],[14,6,5,645,650,[[409,1,1,645,646],[410,2,2,646,648],[411,2,1,648,649],[412,1,1,649,650]]],[15,19,18,650,668,[[413,2,2,650,652],[414,1,1,652,653],[416,1,1,653,654],[417,1,1,654,655],[418,1,1,655,656],[420,4,3,656,659],[421,6,6,659,665],[424,1,1,665,666],[425,2,2,666,668]]],[16,22,21,668,689,[[426,5,5,668,673],[427,2,2,673,675],[428,1,1,675,676],[429,2,2,676,678],[431,5,4,678,682],[432,1,1,682,683],[433,4,4,683,687],[434,2,2,687,689]]],[17,15,15,689,704,[[438,1,1,689,690],[439,1,1,690,691],[443,2,2,691,693],[448,1,1,693,694],[450,2,2,694,696],[456,2,2,696,698],[458,1,1,698,699],[468,1,1,699,700],[470,1,1,700,701],[476,2,2,701,703],[477,1,1,703,704]]],[18,36,35,704,739,[[495,1,1,704,705],[499,2,2,705,707],[500,1,1,707,708],[512,1,1,708,709],[519,1,1,709,710],[527,1,1,710,711],[533,1,1,711,712],[534,1,1,712,713],[538,1,1,713,714],[539,1,1,714,715],[545,3,3,715,718],[546,1,1,718,719],[549,1,1,719,720],[556,1,1,720,721],[557,1,1,721,722],[560,1,1,722,723],[562,1,1,723,724],[563,1,1,724,725],[565,1,1,725,726],[572,1,1,726,727],[573,1,1,727,728],[574,1,1,728,729],[575,1,1,729,730],[579,1,1,730,731],[582,1,1,731,732],[583,1,1,732,733],[593,1,1,733,734],[596,2,2,734,736],[618,1,1,736,737],[619,2,1,737,738],[624,1,1,738,739]]],[19,15,13,739,752,[[635,2,2,739,741],[641,1,1,741,742],[642,1,1,742,743],[643,2,1,743,744],[644,1,1,744,745],[645,2,2,745,747],[649,2,1,747,748],[650,1,1,748,749],[652,2,2,749,751],[654,1,1,751,752]]],[20,8,8,752,760,[[659,1,1,752,753],[660,3,3,753,756],[662,1,1,756,757],[663,2,2,757,759],[667,1,1,759,760]]],[21,1,1,760,761,[[678,1,1,760,761]]],[22,27,25,761,786,[[679,1,1,761,762],[686,1,1,762,763],[687,1,1,763,764],[695,2,1,764,765],[701,1,1,765,766],[714,1,1,766,767],[715,2,2,767,769],[716,1,1,769,770],[718,1,1,770,771],[719,1,1,771,772],[720,1,1,772,773],[721,1,1,773,774],[723,3,2,774,776],[726,1,1,776,777],[730,1,1,777,778],[731,2,2,778,780],[733,1,1,780,781],[736,1,1,781,782],[740,1,1,782,783],[743,1,1,783,784],[744,2,2,784,786]]],[23,41,38,786,824,[[745,1,1,786,787],[746,1,1,787,788],[751,1,1,788,789],[753,1,1,789,790],[759,3,3,790,793],[762,3,3,793,796],[763,1,1,796,797],[765,1,1,797,798],[768,1,1,798,799],[770,1,1,799,800],[772,2,1,800,801],[774,1,1,801,802],[775,1,1,802,803],[777,1,1,803,804],[778,3,3,804,807],[779,2,2,807,809],[780,3,3,809,812],[781,1,1,812,813],[782,1,1,813,814],[783,1,1,814,815],[784,1,1,815,816],[786,2,2,816,818],[788,2,1,818,819],[793,3,2,819,821],[794,2,2,821,823],[796,1,1,823,824]]],[24,3,3,824,827,[[797,3,3,824,827]]],[25,36,36,827,863,[[803,1,1,827,828],[804,1,1,828,829],[805,1,1,829,830],[807,2,2,830,832],[809,2,2,832,834],[810,1,1,834,835],[815,1,1,835,836],[817,3,3,836,839],[821,1,1,839,840],[823,1,1,840,841],[824,2,2,841,843],[829,2,2,843,845],[831,1,1,845,846],[834,1,1,846,847],[837,1,1,847,848],[841,4,4,848,852],[842,1,1,852,853],[843,3,3,853,856],[844,1,1,856,857],[845,4,4,857,861],[847,2,2,861,863]]],[26,15,15,863,878,[[850,4,4,863,867],[851,1,1,867,868],[857,4,4,868,872],[858,4,4,872,876],[859,1,1,876,877],[860,1,1,877,878]]],[28,5,4,878,882,[[877,5,4,878,882]]],[29,2,2,882,884,[[879,1,1,882,883],[887,1,1,883,884]]],[31,1,1,884,885,[[889,1,1,884,885]]],[32,3,2,885,887,[[894,2,1,885,886],[898,1,1,886,887]]],[33,1,1,887,888,[[900,1,1,887,888]]],[36,1,1,888,889,[[910,1,1,888,889]]],[37,12,12,889,901,[[913,5,5,889,894],[914,1,1,894,895],[917,1,1,895,896],[918,3,3,896,899],[922,1,1,899,900],[924,1,1,900,901]]],[38,3,3,901,904,[[927,2,2,901,903],[928,1,1,903,904]]]],[148,150,160,243,327,328,398,415,432,446,484,510,583,588,598,624,631,642,734,737,821,860,931,944,945,948,963,974,978,990,1071,1181,1238,1241,1299,1304,1305,1323,1324,1338,1363,1365,1414,1426,1427,1466,1471,1522,1622,1667,1685,1694,1695,1730,1752,1753,1755,1791,1816,1888,1889,1891,1898,1908,1956,1980,1981,1988,1989,2011,2078,2159,2164,2167,2171,2172,2225,2293,2305,2322,2323,2328,2331,2346,2347,2359,2360,2361,2362,2378,2388,2390,2398,2418,2439,2443,2461,2472,2475,2492,2516,2519,2520,2530,2712,2713,2730,2732,2733,2748,2750,2756,2779,2785,2786,2790,2791,2799,2801,2802,2809,2810,2812,2813,2819,2856,2863,2874,2909,2943,2944,2946,2955,2957,2958,2974,2978,2979,2981,2992,2994,2996,3051,3122,3123,3127,3129,3134,3135,3138,3140,3142,3182,3183,3198,3202,3208,3211,3214,3215,3216,3219,3231,3239,3274,3278,3279,3281,3295,3303,3413,3422,3430,3442,3449,3450,3452,3454,3531,3532,3541,3561,3578,3581,3696,3698,3699,3730,3808,3810,3817,3822,3839,3843,3853,3860,3948,3949,3950,3952,3960,3961,3971,3997,3998,4021,4044,4097,4113,4122,4145,4150,4151,4168,4178,4181,4196,4201,4203,4210,4211,4232,4234,4248,4251,4254,4259,4276,4292,4293,4314,4550,4556,4559,4571,4573,4575,4576,4714,4718,4722,4735,4738,4739,4740,4745,4747,4750,4767,4807,4857,4880,4900,4913,4914,4922,4925,4930,4934,4937,4969,4971,4993,5003,5012,5014,5036,5048,5111,5113,5135,5159,5160,5175,5182,5194,5197,5233,5234,5240,5247,5252,5258,5313,5316,5339,5353,5358,5391,5423,5476,5487,5514,5529,5538,5570,5571,5576,5579,5592,5618,5636,5689,5694,5709,5723,5727,5731,5736,5739,5811,5856,5865,5899,5904,5907,5915,5922,5923,5953,5955,5956,5957,5958,5962,5975,5980,5981,5982,5984,5988,5989,5999,6007,6008,6012,6016,6017,6072,6074,6076,6078,6113,6202,6217,6279,6294,6299,6301,6303,6372,6378,6381,6425,6453,6455,6469,6477,6488,6519,6520,6532,6559,6570,6595,6613,6614,6622,6672,6747,6793,6838,6840,7014,7077,7080,7082,7086,7089,7093,7096,7104,7224,7227,7231,7234,7251,7257,7258,7268,7270,7275,7277,7299,7300,7314,7322,7323,7351,7358,7362,7380,7389,7403,7406,7410,7415,7418,7423,7426,7437,7443,7460,7462,7467,7521,7593,7603,7605,7611,7616,7617,7625,7649,7659,7675,7689,7692,7730,7731,7779,7791,7828,7834,7880,7924,7964,7967,7998,8063,8066,8112,8115,8135,8152,8156,8161,8162,8171,8173,8174,8178,8196,8198,8206,8209,8255,8256,8259,8272,8326,8389,8390,8485,8519,8524,8528,8529,8539,8562,8589,8705,8719,8722,8740,8742,8745,8749,8774,8796,8815,8822,8828,8831,8832,8838,8840,8917,8983,8990,9007,9008,9010,9013,9016,9018,9035,9044,9047,9049,9050,9054,9055,9057,9076,9087,9144,9157,9159,9181,9227,9252,9308,9313,9316,9318,9356,9387,9398,9406,9490,9501,9590,9615,9634,9641,9646,9647,9662,9663,9670,9696,9736,9797,9847,9908,9977,9985,10029,10046,10075,10076,10087,10101,10130,10155,10164,10168,10190,10251,10295,10486,10676,10768,10770,10789,10815,10821,10824,10826,10849,10857,10859,10876,10879,10887,10888,10890,10914,10917,10921,10923,10926,10964,10969,10982,10996,11014,11017,11021,11179,11186,11189,11199,11200,11204,11206,11215,11217,11244,11266,11274,11294,11296,11298,11301,11304,11306,11318,11328,11331,11341,11343,11358,11371,11375,11401,11403,11466,11467,11468,11480,11482,11487,11488,11498,11551,11562,11587,11592,11596,11600,11603,11605,11608,11673,11691,11712,11718,11726,11751,11761,11773,11778,11802,11810,11814,11836,11874,11887,11927,11951,11957,11960,11964,12201,12222,12230,12252,12253,12300,12302,12308,12361,12397,12420,12494,12495,12496,12519,12522,12535,12539,12543,12546,12660,12675,12690,12705,12713,12718,12719,12721,12735,12747,12754,12764,12768,12794,12802,12804,12806,12816,12818,12820,12821,12822,12845,12859,12928,12949,13041,13045,13169,13207,13210,13373,13388,13423,13655,13734,13898,13910,13933,14124,14231,14233,14240,14415,14557,14671,14768,14774,14826,14835,14903,14904,14907,14957,15009,15196,15207,15254,15284,15293,15310,15460,15471,15481,15496,15549,15623,15674,15857,16067,16068,16278,16288,16368,16627,16632,16791,16840,16858,16887,16913,16917,17044,17045,17118,17139,17173,17331,17340,17342,17359,17397,17399,17403,17476,17652,17666,17811,17832,17996,18095,18337,18366,18379,18393,18430,18453,18496,18515,18562,18563,18621,18708,18713,18718,18752,18794,18865,18903,18944,18945,18963,18987,19129,19188,19316,19324,19334,19401,19404,19407,19414,19448,19525,19576,19626,19687,19727,19799,19806,19816,19819,19828,19842,19849,19851,19864,19894,19921,19939,19945,19977,19984,20020,20146,20164,20174,20210,20309,20315,20316,20332,20502,20522,20530,20567,20568,20605,20615,20628,20732,20780,20781,20812,20896,21006,21031,21048,21166,21174,21228,21311,21376,21489,21499,21503,21524,21548,21556,21563,21564,21596,21602,21610,21611,21614,21658,21664,21742,21750,21755,21756,21760,21964,21965,21967,21968,21998,22001,22006,22008,22027,22052,22314,22321,22322,22342,22365,22499,22533,22608,22652,22690,22869,22913,22915,22916,22920,22921,22929,22964,22986,22997,22998,23053,23088,23121,23136,23143]]],["beforetime",[3,3,[[4,1,1,0,1,[[154,1,1,0,1]]],[5,1,1,1,2,[[197,1,1,1,2]]],[8,1,1,2,3,[[244,1,1,2,3]]]],[4950,6117,7400]]],["countenance",[30,30,[[0,4,4,0,4,[[3,2,2,0,2],[30,2,2,2,4]]],[3,1,1,4,5,[[122,1,1,4,5]]],[4,1,1,5,6,[[180,1,1,5,6]]],[8,1,1,6,7,[[236,1,1,6,7]]],[11,1,1,7,8,[[320,1,1,7,8]]],[15,2,2,8,10,[[414,2,2,8,10]]],[17,2,2,10,12,[[449,1,1,10,11],[464,1,1,11,12]]],[18,10,10,12,22,[[481,1,1,12,13],[488,1,1,13,14],[498,1,1,14,15],[519,2,2,15,17],[520,1,1,17,18],[521,1,1,18,19],[557,1,1,19,20],[566,1,1,20,21],[567,1,1,21,22]]],[19,4,4,22,26,[[642,1,1,22,23],[643,1,1,23,24],[652,1,1,24,25],[654,1,1,25,26]]],[20,1,1,26,27,[[665,1,1,26,27]]],[22,1,1,27,28,[[681,1,1,27,28]]],[25,1,1,28,29,[[828,1,1,28,29]]],[26,1,1,29,30,[[857,1,1,29,30]]]],[84,85,875,878,3849,5661,7230,9738,12309,12310,13201,13556,13971,14066,14197,14560,14566,14571,14574,15214,15341,15386,16820,16855,17136,17186,17432,17716,21156,21984]]],["edge",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17503]]],["endure",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15005]]],["face",[306,278,[[0,39,36,0,36,[[0,3,2,0,2],[1,1,1,2,3],[3,1,1,3,4],[5,2,2,4,6],[6,4,4,6,10],[7,3,3,10,13],[10,3,3,13,16],[16,2,2,16,18],[18,1,1,18,19],[29,1,1,19,20],[30,1,1,20,21],[31,3,2,21,23],[32,2,1,23,24],[37,1,1,24,25],[40,1,1,25,26],[42,3,3,26,29],[43,2,2,29,31],[45,2,2,31,33],[47,1,1,33,34],[49,2,2,34,36]]],[1,17,13,36,49,[[52,1,1,36,37],[59,3,2,37,39],[65,1,1,39,40],[81,1,1,40,41],[82,5,4,41,45],[83,6,4,45,49]]],[2,7,7,49,56,[[102,1,1,49,50],[106,1,1,50,51],[108,1,1,51,52],[109,3,3,52,55],[115,1,1,55,56]]],[3,6,6,56,62,[[122,1,1,56,57],[127,1,1,57,58],[128,2,2,58,60],[132,1,1,60,61],[140,1,1,61,62]]],[4,14,12,62,74,[[158,1,1,62,63],[159,3,2,63,65],[161,1,1,65,66],[177,2,2,66,68],[180,1,1,68,69],[183,3,3,69,72],[184,1,1,72,73],[186,2,1,73,74]]],[5,3,3,74,77,[[191,1,1,74,75],[193,2,2,75,77]]],[6,2,1,77,78,[[216,2,1,77,78]]],[7,1,1,78,79,[[233,1,1,78,79]]],[8,5,5,79,84,[[240,2,2,79,81],[252,1,1,81,82],[260,1,1,82,83],[261,1,1,83,84]]],[9,11,9,84,93,[[268,1,1,84,85],[269,2,1,85,86],[275,1,1,86,87],[280,5,4,87,91],[284,1,1,91,92],[285,1,1,92,93]]],[10,7,7,93,100,[[298,1,1,93,94],[303,2,2,94,96],[308,2,2,96,98],[309,1,1,98,99],[311,1,1,99,100]]],[11,11,11,100,111,[[316,2,2,100,102],[320,1,1,102,103],[321,2,2,103,105],[324,1,1,105,106],[325,1,1,106,107],[326,2,2,107,109],[330,1,1,109,110],[332,1,1,110,111]]],[12,1,1,111,112,[[353,1,1,111,112]]],[13,8,8,112,120,[[372,2,2,112,114],[373,1,1,114,115],[391,2,2,115,117],[396,1,1,117,118],[398,1,1,118,119],[401,1,1,119,120]]],[14,2,2,120,122,[[411,2,2,120,122]]],[16,2,2,122,124,[[426,1,1,122,123],[432,1,1,123,124]]],[17,18,18,124,142,[[436,1,1,124,125],[437,1,1,125,126],[439,1,1,126,127],[446,1,1,127,128],[448,1,1,128,129],[450,1,1,129,130],[451,2,2,130,132],[456,1,1,132,133],[457,1,1,133,134],[459,1,1,134,135],[461,1,1,135,136],[468,1,1,136,137],[469,1,1,137,138],[472,1,1,138,139],[473,1,1,139,140],[476,2,2,140,142]]],[18,34,33,142,175,[[482,1,1,142,143],[487,1,1,143,144],[490,1,1,144,145],[494,1,1,145,146],[498,1,1,146,147],[499,1,1,147,148],[501,1,1,148,149],[504,3,2,149,151],[507,1,1,151,152],[508,1,1,152,153],[511,1,1,153,154],[518,1,1,154,155],[521,2,2,155,157],[528,1,1,157,158],[544,1,1,158,159],[546,2,2,159,161],[557,3,3,161,164],[561,1,1,164,165],[565,1,1,165,166],[566,1,1,166,167],[579,1,1,167,168],[581,3,3,168,171],[582,1,1,171,172],[596,1,1,172,173],[609,1,1,173,174],[620,1,1,174,175]]],[19,7,6,175,181,[[634,2,2,175,177],[635,1,1,177,178],[648,1,1,178,179],[651,1,1,179,180],[654,2,1,180,181]]],[20,2,1,181,182,[[666,2,1,181,182]]],[22,16,16,182,198,[[684,1,1,182,183],[686,1,1,183,184],[692,1,1,184,185],[701,1,1,185,186],[703,1,1,186,187],[705,1,1,187,188],[706,1,1,188,189],[707,1,1,189,190],[714,1,1,190,191],[716,1,1,191,192],[728,2,2,192,194],[732,1,1,194,195],[737,1,1,195,196],[742,1,1,196,197],[743,1,1,197,198]]],[23,13,13,198,211,[[745,1,1,198,199],[746,1,1,199,200],[752,1,1,200,201],[757,1,1,201,202],[760,1,1,202,203],[762,1,1,203,204],[765,1,1,204,205],[769,1,1,205,206],[772,1,1,206,207],[776,2,2,207,209],[777,1,1,209,210],[788,1,1,210,211]]],[24,2,2,211,213,[[798,1,1,211,212],[799,1,1,212,213]]],[25,53,41,213,254,[[802,5,2,213,215],[804,2,2,215,217],[805,2,2,217,219],[807,1,1,219,220],[808,1,1,220,221],[810,1,1,221,222],[811,6,1,222,223],[812,1,1,223,224],[813,2,2,224,226],[814,1,1,226,227],[815,4,4,227,231],[816,2,1,231,232],[821,3,2,232,234],[822,2,2,234,236],[826,1,1,236,237],[829,1,1,237,238],[830,1,1,238,239],[835,1,1,239,240],[836,1,1,240,241],[839,2,2,241,243],[840,4,4,243,247],[841,2,1,247,248],[842,5,4,248,252],[844,1,1,252,253],[845,1,1,253,254]]],[26,13,12,254,266,[[857,3,3,254,257],[858,3,3,257,260],[859,4,3,260,263],[860,3,3,263,266]]],[27,4,4,266,270,[[866,2,2,266,268],[868,2,2,268,270]]],[28,1,1,270,271,[[877,1,1,270,271]]],[29,3,3,271,274,[[883,1,1,271,272],[887,2,2,272,274]]],[32,1,1,274,275,[[895,1,1,274,275]]],[33,2,2,275,277,[[901,1,1,275,276],[902,1,1,276,277]]],[37,1,1,277,278,[[915,1,1,277,278]]]],[1,28,36,93,138,144,162,163,177,182,191,192,196,270,274,275,400,414,470,863,894,948,958,970,1134,1251,1293,1295,1321,1347,1350,1414,1416,1462,1507,1524,1585,1805,1806,1961,2450,2484,2489,2493,2496,2525,2526,2529,2531,3093,3245,3313,3321,3323,3324,3541,3848,4055,4062,4073,4198,4447,5101,5117,5121,5160,5549,5556,5618,5733,5745,5746,5778,5849,5948,5982,5986,6676,7159,7322,7323,7667,7884,7925,8071,8094,8233,8378,8380,8384,8388,8486,8515,8999,9190,9218,9348,9383,9400,9455,9632,9634,9742,9788,9793,9867,9885,9904,9907,10048,10100,10831,11285,11324,11338,11721,11725,11836,11896,11988,12243,12244,12716,12815,12880,12896,12945,13123,13177,13230,13246,13254,13386,13415,13451,13476,13676,13712,13781,13823,13901,13902,13981,14052,14075,14118,14203,14228,14247,14293,14294,14326,14347,14404,14554,14586,14595,14700,14894,14942,14952,15201,15205,15217,15268,15322,15340,15523,15586,15600,15601,15610,16033,16161,16300,16588,16590,16629,17013,17110,17188,17459,17771,17824,17949,18094,18125,18157,18189,18215,18339,18392,18668,18669,18731,18802,18892,18900,18959,18992,19155,19292,19340,19401,19450,19560,19634,19762,19764,19780,20021,20351,20389,20474,20492,20510,20525,20532,20536,20565,20599,20630,20647,20668,20686,20692,20725,20734,20735,20738,20739,20761,20930,20941,20946,20960,21085,21178,21185,21319,21346,21427,21445,21462,21471,21472,21477,21492,21540,21545,21547,21551,21575,21603,21966,21978,21979,21991,21996,22005,22021,22024,22030,22053,22054,22055,22157,22167,22180,22188,22331,22431,22501,22503,22612,22700,22717,22939]]],["faces",[59,55,[[0,2,2,0,2,[[8,1,1,0,1],[29,1,1,1,2]]],[1,5,3,2,5,[[69,1,1,2,3],[74,2,1,3,4],[86,2,1,4,5]]],[2,1,1,5,6,[[98,1,1,5,6]]],[3,4,4,6,10,[[130,1,1,6,7],[132,2,2,7,9],[136,1,1,9,10]]],[6,2,2,10,12,[[223,1,1,10,11],[228,1,1,11,12]]],[9,1,1,12,13,[[285,1,1,12,13]]],[10,2,2,13,15,[[292,1,1,13,14],[308,1,1,14,15]]],[12,3,2,15,17,[[349,2,1,15,16],[358,1,1,16,17]]],[13,2,2,17,19,[[369,1,1,17,18],[395,1,1,18,19]]],[17,2,2,19,21,[[444,1,1,19,20],[475,1,1,20,21]]],[18,2,2,21,23,[[511,1,1,21,22],[560,1,1,22,23]]],[22,4,4,23,27,[[681,1,1,23,24],[691,1,1,24,25],[703,1,1,25,26],[731,1,1,26,27]]],[23,8,8,27,35,[[749,1,1,27,28],[751,1,1,28,29],[774,1,1,29,30],[786,2,2,30,32],[788,1,1,32,33],[794,1,1,33,34],[795,1,1,34,35]]],[24,1,1,35,36,[[801,1,1,35,36]]],[25,14,13,36,49,[[802,5,5,36,41],[804,1,1,41,42],[808,1,1,42,43],[809,1,1,43,44],[811,3,2,44,46],[815,1,1,46,47],[821,1,1,47,48],[842,1,1,48,49]]],[26,2,2,49,51,[[850,1,1,49,50],[858,1,1,50,51]]],[28,1,1,51,52,[[877,1,1,51,52]]],[33,1,1,52,53,[[901,1,1,52,53]]],[34,1,1,53,54,[[903,1,1,53,54]]],[38,1,1,54,55,[[926,1,1,54,55]]]],[228,870,2071,2215,2613,2977,4113,4216,4239,4317,6904,7016,8516,8785,9380,10728,10950,11242,11797,13075,13877,14393,15257,17722,17914,18126,18714,19061,19138,19673,19990,19992,20022,20171,20263,20454,20470,20472,20474,20475,20479,20510,20595,20620,20647,20655,20737,20942,21544,21747,21995,22317,22709,22740,23106]]],["favour",[4,4,[[18,2,2,0,2,[[522,1,1,0,1],[596,1,1,1,2]]],[19,2,2,2,4,[[646,1,1,2,3],[656,1,1,3,4]]]],[14609,15956,16931,17250]]],["first",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8094]]],["for",[3,3,[[0,1,1,0,1,[[33,1,1,0,1]]],[6,1,1,1,2,[[223,1,1,1,2]]],[8,1,1,2,3,[[236,1,1,2,3]]]],[1001,6899,7228]]],["forefront",[3,3,[[11,1,1,0,1,[[328,1,1,0,1]]],[25,2,2,1,3,[[841,1,1,1,2],[848,1,1,2,3]]]],[9977,21496,21680]]],["forepart",[4,4,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[10,1,1,2,3,[[296,1,1,2,3]]],[25,1,1,3,4,[[843,1,1,3,4]]]],[2320,2684,8916,21559]]],["form",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8376]]],["forth",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20132]]],["forward",[3,3,[[23,1,1,0,1,[[751,1,1,0,1]]],[25,2,2,1,3,[[802,2,2,1,3]]]],[19143,20473,20476]]],["from",[2,2,[[3,1,1,0,1,[[138,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]]],[4408,8403]]],["front",[2,2,[[9,1,1,0,1,[[276,1,1,0,1]]],[13,1,1,1,2,[[369,1,1,1,2]]]],[8249,11233]]],["heaviness",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13078]]],["him",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13930]]],["himself",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11590]]],["long",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15017]]],["look",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1179]]],["looked",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21497]]],["looketh",[2,2,[[25,2,2,0,2,[[841,2,2,0,2]]]],[21483,21499]]],["me",[1,1,[[0,1,1,0,1,[[43,1,1,0,1]]]],[1353]]],["meet",[2,2,[[12,1,1,0,1,[[349,1,1,0,1]]],[13,1,1,1,2,[[381,1,1,1,2]]]],[10737,11492]]],["mouth",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8468]]],["of",[3,3,[[16,1,1,0,1,[[427,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]],[23,1,1,2,3,[[761,1,1,2,3]]]],[12733,15697,19373]]],["old",[2,2,[[12,1,1,0,1,[[341,1,1,0,1]]],[18,1,1,1,2,[[579,1,1,1,2]]]],[10425,15546]]],["open",[13,13,[[0,1,1,0,1,[[0,1,1,0,1]]],[2,3,3,1,4,[[103,2,2,1,3],[106,1,1,3,4]]],[3,1,1,4,5,[[135,1,1,4,5]]],[9,1,1,5,6,[[277,1,1,5,6]]],[23,1,1,6,7,[[753,1,1,6,7]]],[25,6,6,7,13,[[817,1,1,7,8],[830,1,1,8,9],[833,1,1,9,10],[834,1,1,10,11],[838,1,1,11,12],[840,1,1,12,13]]]],[19,3118,3164,3240,4305,8270,19197,20767,21188,21252,21307,21399,21453]]],["past",[2,2,[[4,1,1,0,1,[[154,1,1,0,1]]],[12,1,1,1,2,[[346,1,1,1,2]]]],[4948,10635]]],["person",[10,9,[[2,2,1,0,1,[[108,2,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[8,1,1,2,3,[[260,1,1,2,3]]],[9,1,1,3,4,[[283,1,1,3,4]]],[17,2,2,4,6,[[448,1,1,4,5],[467,1,1,5,6]]],[19,1,1,6,7,[[645,1,1,6,7]]],[23,1,1,7,8,[[796,1,1,7,8]]],[38,1,1,8,9,[[925,1,1,8,9]]]],[3296,5661,7896,8460,13161,13649,16906,20301,23097]]],["persons",[11,11,[[4,3,3,0,3,[[153,1,1,0,1],[162,1,1,1,2],[168,1,1,2,3]]],[13,1,1,3,4,[[385,1,1,3,4]]],[17,2,2,4,6,[[448,1,1,4,5],[469,1,1,5,6]]],[18,1,1,6,7,[[559,1,1,6,7]]],[19,2,2,7,9,[[651,1,1,7,8],[655,1,1,8,9]]],[24,1,1,9,10,[[800,1,1,9,10]]],[38,1,1,10,11,[[925,1,1,10,11]]]],[4909,5203,5361,11583,13163,13702,15235,17102,17217,20436,23098]]],["presence",[37,35,[[0,2,2,0,2,[[24,1,1,0,1],[26,1,1,1,2]]],[1,3,3,2,5,[[59,1,1,2,3],[82,2,2,3,5]]],[5,2,2,5,7,[[190,1,1,5,6],[194,1,1,6,7]]],[8,1,1,7,8,[[254,1,1,7,8]]],[9,4,2,8,10,[[282,3,1,8,9],[290,1,1,9,10]]],[10,1,1,10,11,[[291,1,1,10,11]]],[11,4,4,11,15,[[315,1,1,11,12],[325,1,1,12,13],[336,1,1,13,14],[337,1,1,14,15]]],[12,2,2,15,17,[[353,1,1,15,16],[361,1,1,16,17]]],[13,3,3,17,20,[[375,1,1,17,18],[386,1,1,18,19],[400,1,1,19,20]]],[15,1,1,20,21,[[414,1,1,20,21]]],[16,1,1,21,22,[[426,1,1,21,22]]],[17,2,2,22,24,[[436,1,1,22,23],[437,1,1,23,24]]],[18,5,5,24,29,[[493,1,1,24,25],[508,1,1,25,26],[572,1,1,26,27],[577,1,1,27,28],[617,1,1,28,29]]],[19,3,3,29,32,[[644,1,1,29,30],[652,2,2,30,32]]],[22,1,1,32,33,[[741,1,1,32,33]]],[23,2,2,33,35,[[767,1,1,33,34],[796,1,1,34,35]]]],[676,757,1788,2487,2488,5921,6034,7713,8445,8696,8745,9590,9894,10222,10241,10847,11046,11387,11596,11937,12308,12712,12881,12898,14103,14351,15456,15510,16276,16891,17119,17120,18875,19523,20279]]],["prospect",[6,5,[[25,6,5,0,5,[[841,4,3,0,3],[843,1,1,3,4],[844,1,1,4,5]]]],[21521,21522,21523,21567,21576]]],["purposed",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11877]]],["seemeth",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16865]]],["shewbread",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3750]]],["sight",[28,28,[[0,1,1,0,1,[[46,1,1,0,1]]],[3,1,1,1,2,[[119,1,1,1,2]]],[4,1,1,2,3,[[156,1,1,2,3]]],[10,1,1,3,4,[[299,1,1,3,4]]],[11,4,4,4,8,[[329,2,2,4,6],[335,1,1,6,7],[336,1,1,7,8]]],[12,1,1,8,9,[[359,1,1,8,9]]],[13,1,1,9,10,[[373,1,1,9,10]]],[14,1,1,10,11,[[411,1,1,10,11]]],[15,2,2,11,13,[[413,1,1,11,12],[414,1,1,12,13]]],[16,2,2,13,15,[[427,1,1,13,14],[433,1,1,14,15]]],[17,1,1,15,16,[[456,1,1,15,16]]],[18,4,4,16,20,[[486,1,1,16,17],[496,1,1,17,18],[553,1,1,18,19],[620,1,1,19,20]]],[19,1,1,20,21,[[631,1,1,20,21]]],[20,1,1,21,22,[[660,1,1,21,22]]],[22,1,1,22,23,[[683,1,1,22,23]]],[23,2,2,23,25,[[751,1,1,23,24],[759,1,1,24,25]]],[25,2,2,25,27,[[821,1,1,25,26],[837,1,1,26,27]]],[27,1,1,27,28,[[867,1,1,27,28]]]],[1438,3696,5041,9058,10001,10006,10192,10205,10972,11344,12246,12307,12312,12741,12822,13363,14040,14182,15088,16295,16493,17359,17760,19134,19316,20938,21390,22169]]],["state",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17192]]],["than",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13702]]],["themselves",[1,1,[[25,1,1,0,1,[[807,1,1,0,1]]]],[20572]]],["till",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8116]]],["time",[2,2,[[4,1,1,0,1,[[154,1,1,0,1]]],[7,1,1,1,2,[[235,1,1,1,2]]]],[4958,7197]]],["to",[3,3,[[0,1,1,0,1,[[26,1,1,0,1]]],[10,2,2,1,3,[[298,1,1,1,2],[300,1,1,2,3]]]],[747,9031,9103]]],["toward",[2,2,[[16,1,1,0,1,[[426,1,1,0,1]]],[21,1,1,1,2,[[677,1,1,1,2]]]],[12715,17631]]],["unto",[6,6,[[0,1,1,0,1,[[46,1,1,0,1]]],[4,2,2,1,3,[[154,1,1,1,2],[159,1,1,2,3]]],[8,1,1,3,4,[[248,1,1,3,4]]],[17,1,1,4,5,[[446,1,1,4,5]]],[19,1,1,5,6,[[641,1,1,5,6]]]],[1422,4974,5134,7497,13127,16784]]],["upon",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12767]]],["with",[6,6,[[8,1,1,0,1,[[264,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[11,3,3,2,5,[[317,2,2,2,4],[318,1,1,4,5]]],[26,1,1,5,6,[[850,1,1,5,6]]]],[7975,8492,9648,9650,9675,21746]]],["within",[1,1,[[25,1,1,0,1,[[803,1,1,0,1]]]],[20502]]]]},{"k":"H6441","v":[["*",[13,12,[[2,1,1,0,1,[[99,1,1,0,1]]],[10,4,4,1,5,[[296,4,4,1,5]]],[11,1,1,5,6,[[319,1,1,5,6]]],[13,3,3,6,9,[[369,1,1,6,7],[395,2,2,7,9]]],[18,1,1,9,10,[[522,1,1,9,10]]],[25,3,2,10,12,[[841,2,1,10,11],[842,1,1,11,12]]]],[2995,8914,8915,8917,8926,9718,11233,11807,11809,14610,21493,21529]]],["+",[4,4,[[2,1,1,0,1,[[99,1,1,0,1]]],[10,2,2,1,3,[[296,2,2,1,3]]],[13,1,1,3,4,[[369,1,1,3,4]]]],[2995,8915,8917,11233]]],["in",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11809]]],["inward",[2,2,[[25,2,2,0,2,[[841,1,1,0,1],[842,1,1,1,2]]]],[21493,21529]]],["part",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11807]]],["within",[5,5,[[10,2,2,0,2,[[296,2,2,0,2]]],[11,1,1,2,3,[[319,1,1,2,3]]],[18,1,1,3,4,[[522,1,1,3,4]]],[25,1,1,4,5,[[841,1,1,4,5]]]],[8914,8926,9718,14610,21493]]]]},{"k":"H6442","v":[["*",[32,29,[[10,4,4,0,4,[[296,2,2,0,2],[297,2,2,2,4]]],[12,1,1,4,5,[[365,1,1,4,5]]],[13,1,1,5,6,[[370,1,1,5,6]]],[16,2,2,6,8,[[429,1,1,6,7],[430,1,1,7,8]]],[25,24,21,8,29,[[809,2,2,8,10],[811,1,1,10,11],[841,8,7,11,18],[842,3,2,18,20],[843,3,3,20,23],[844,1,1,23,24],[845,4,3,24,27],[846,1,1,27,28],[847,1,1,28,29]]]],[8923,8932,8946,8984,11154,11268,12773,12780,20607,20620,20636,21492,21496,21500,21504,21505,21509,21521,21541,21543,21555,21556,21567,21577,21616,21620,21626,21649,21656]]],["+",[2,2,[[10,1,1,0,1,[[296,1,1,0,1]]],[25,1,1,1,2,[[811,1,1,1,2]]]],[8932,20636]]],["inner",[28,26,[[10,3,3,0,3,[[296,1,1,0,1],[297,2,2,1,3]]],[12,1,1,3,4,[[365,1,1,3,4]]],[13,1,1,4,5,[[370,1,1,4,5]]],[16,2,2,5,7,[[429,1,1,5,6],[430,1,1,6,7]]],[25,21,19,7,26,[[809,2,2,7,9],[841,8,7,9,16],[842,2,2,16,18],[843,2,2,18,20],[844,1,1,20,21],[845,4,3,21,24],[846,1,1,24,25],[847,1,1,25,26]]]],[8923,8946,8984,11154,11268,12773,12780,20607,20620,21492,21496,21500,21504,21505,21509,21521,21541,21543,21555,21567,21577,21616,21620,21626,21649,21656]]],["inward",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21556]]],["within",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21543]]]]},{"k":"H6443","v":[["*",[6,6,[[17,1,1,0,1,[[463,1,1,0,1]]],[19,4,4,1,5,[[630,1,1,1,2],[635,1,1,2,3],[647,1,1,3,4],[658,1,1,4,5]]],[24,1,1,5,6,[[800,1,1,5,6]]]],[13522,16470,16613,16969,17294,20427]]],["+",[5,5,[[17,1,1,0,1,[[463,1,1,0,1]]],[19,3,3,1,4,[[630,1,1,1,2],[635,1,1,2,3],[658,1,1,3,4]]],[24,1,1,4,5,[[800,1,1,4,5]]]],[13522,16470,16613,17294,20427]]],["rubies",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16969]]]]},{"k":"H6444","v":[["Peninnah",[3,2,[[8,3,2,0,2,[[236,3,2,0,2]]]],[7214,7216]]]]},{"k":"H6445","v":[["up",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17245]]]]},{"k":"H6446","v":[["colours",[5,5,[[0,3,3,0,3,[[36,3,3,0,3]]],[9,2,2,3,5,[[279,2,2,3,5]]]],[1086,1106,1115,8335,8336]]]]},{"k":"H6447","v":[["part",[2,2,[[26,2,2,0,2,[[854,2,2,0,2]]]],[21879,21898]]]]},{"k":"H6448","v":[["consider",[1,1,[[18,1,1,0,1,[[525,1,1,0,1]]]],[14647]]]]},{"k":"H6449","v":[["*",[6,6,[[3,2,2,0,2,[[137,1,1,0,1],[139,1,1,1,2]]],[4,4,4,2,6,[[155,2,2,2,4],[156,1,1,4,5],[186,1,1,5,6]]]],[4360,4430,4992,5002,5053,5840]]],["+",[1,1,[[4,1,1,0,1,[[155,1,1,0,1]]]],[4992]]],["Pisgah",[5,5,[[3,2,2,0,2,[[137,1,1,0,1],[139,1,1,1,2]]],[4,3,3,2,5,[[155,1,1,2,3],[156,1,1,3,4],[186,1,1,4,5]]]],[4360,4430,5002,5053,5840]]]]},{"k":"H6450","v":[["Pasdammim",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10686]]]]},{"k":"H6451","v":[["handful",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15016]]]]},{"k":"H6452","v":[["*",[7,7,[[1,3,3,0,3,[[61,3,3,0,3]]],[9,1,1,3,4,[[270,1,1,3,4]]],[10,2,2,4,6,[[308,2,2,4,6]]],[22,1,1,6,7,[[709,1,1,6,7]]]],[1829,1839,1843,8124,9362,9367,18255]]],["halt",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9362]]],["lame",[1,1,[[9,1,1,0,1,[[270,1,1,0,1]]]],[8124]]],["leaped",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9367]]],["over",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18255]]],["pass",[2,2,[[1,2,2,0,2,[[61,2,2,0,2]]]],[1829,1839]]],["passed",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1843]]]]},{"k":"H6453","v":[["*",[49,46,[[1,6,6,0,6,[[61,5,5,0,5],[83,1,1,5,6]]],[2,1,1,6,7,[[112,1,1,6,7]]],[3,11,10,7,17,[[125,9,8,7,15],[144,1,1,15,16],[149,1,1,16,17]]],[4,4,4,17,21,[[168,4,4,17,21]]],[5,2,2,21,23,[[191,2,2,21,23]]],[11,3,3,23,26,[[335,3,3,23,26]]],[13,19,17,26,43,[[396,6,6,26,32],[401,13,11,32,43]]],[14,2,2,43,45,[[408,2,2,43,45]]],[25,1,1,45,46,[[846,1,1,45,46]]]],[1827,1837,1843,1859,1864,2521,3407,3967,3969,3970,3971,3975,3977,3978,3979,4593,4763,5343,5344,5347,5348,5944,5945,10186,10187,10188,11828,11829,11832,11842,11844,11845,11967,11972,11973,11974,11975,11977,11979,11982,11983,11984,11985,12170,12171,21651]]],["offerings",[3,3,[[13,3,3,0,3,[[401,3,3,0,3]]]],[11973,11974,11975]]],["passover",[45,42,[[1,6,6,0,6,[[61,5,5,0,5],[83,1,1,5,6]]],[2,1,1,6,7,[[112,1,1,6,7]]],[3,11,10,7,17,[[125,9,8,7,15],[144,1,1,15,16],[149,1,1,16,17]]],[4,4,4,17,21,[[168,4,4,17,21]]],[5,2,2,21,23,[[191,2,2,21,23]]],[11,3,3,23,26,[[335,3,3,23,26]]],[13,15,13,26,39,[[396,5,5,26,31],[401,10,8,31,39]]],[14,2,2,39,41,[[408,2,2,39,41]]],[25,1,1,41,42,[[846,1,1,41,42]]]],[1827,1837,1843,1859,1864,2521,3407,3967,3969,3970,3971,3975,3977,3978,3979,4593,4763,5343,5344,5347,5348,5944,5945,10186,10187,10188,11828,11829,11832,11842,11845,11967,11972,11977,11979,11982,11983,11984,11985,12170,12171,21651]]],["passovers",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11844]]]]},{"k":"H6454","v":[["*",[4,4,[[12,1,1,0,1,[[341,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,2,2,2,4,[[415,1,1,2,3],[419,1,1,3,4]]]],[10397,12076,12333,12471]]],["Paseah",[3,3,[[12,1,1,0,1,[[341,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,1,1,2,3,[[415,1,1,2,3]]]],[10397,12076,12333]]],["Phaseah",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12471]]]]},{"k":"H6455","v":[["*",[14,13,[[2,1,1,0,1,[[110,1,1,0,1]]],[4,1,1,1,2,[[167,1,1,1,2]]],[9,5,4,2,6,[[271,3,2,2,4],[275,1,1,4,5],[285,1,1,5,6]]],[17,1,1,6,7,[[464,1,1,6,7]]],[19,1,1,7,8,[[653,1,1,7,8]]],[22,2,2,8,10,[[711,1,1,8,9],[713,1,1,9,10]]],[23,1,1,10,11,[[775,1,1,10,11]]],[38,2,2,11,13,[[925,2,2,11,13]]]],[3363,5340,8138,8140,8240,8537,13547,17148,18302,18326,19699,23097,23102]]],["+",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17148]]],["lame",[13,12,[[2,1,1,0,1,[[110,1,1,0,1]]],[4,1,1,1,2,[[167,1,1,1,2]]],[9,5,4,2,6,[[271,3,2,2,4],[275,1,1,4,5],[285,1,1,5,6]]],[17,1,1,6,7,[[464,1,1,6,7]]],[22,2,2,7,9,[[711,1,1,7,8],[713,1,1,8,9]]],[23,1,1,9,10,[[775,1,1,9,10]]],[38,2,2,10,12,[[925,2,2,10,12]]]],[3363,5340,8138,8140,8240,8537,13547,18302,18326,19699,23097,23102]]]]},{"k":"H6456","v":[["*",[23,23,[[4,3,3,0,3,[[159,2,2,0,2],[164,1,1,2,3]]],[6,2,2,3,5,[[213,2,2,3,5]]],[11,1,1,5,6,[[329,1,1,5,6]]],[13,5,5,6,11,[[399,2,2,6,8],[400,3,3,8,11]]],[18,1,1,11,12,[[555,1,1,11,12]]],[22,4,4,12,16,[[688,1,1,12,13],[699,1,1,13,14],[708,1,1,14,15],[720,1,1,15,16]]],[23,4,4,16,20,[[752,1,1,16,17],[794,1,1,17,18],[795,2,2,18,20]]],[27,1,1,20,21,[[872,1,1,20,21]]],[32,2,2,21,23,[[893,1,1,21,22],[897,1,1,22,23]]]],[5116,5136,5243,6587,6594,10024,11927,11930,11936,11937,11940,15171,17860,18044,18239,18488,19172,20204,20259,20264,22242,22586,22646]]],["images",[21,21,[[4,3,3,0,3,[[159,2,2,0,2],[164,1,1,2,3]]],[11,1,1,3,4,[[329,1,1,3,4]]],[13,5,5,4,9,[[399,2,2,4,6],[400,3,3,6,9]]],[18,1,1,9,10,[[555,1,1,9,10]]],[22,4,4,10,14,[[688,1,1,10,11],[699,1,1,11,12],[708,1,1,12,13],[720,1,1,13,14]]],[23,4,4,14,18,[[752,1,1,14,15],[794,1,1,15,16],[795,2,2,16,18]]],[27,1,1,18,19,[[872,1,1,18,19]]],[32,2,2,19,21,[[893,1,1,19,20],[897,1,1,20,21]]]],[5116,5136,5243,10024,11927,11930,11936,11937,11940,15171,17860,18044,18239,18488,19172,20204,20259,20264,22242,22586,22646]]],["quarries",[2,2,[[6,2,2,0,2,[[213,2,2,0,2]]]],[6587,6594]]]]},{"k":"H6457","v":[["Pasach",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10568]]]]},{"k":"H6458","v":[["*",[6,6,[[1,2,2,0,2,[[83,2,2,0,2]]],[4,2,2,2,4,[[162,2,2,2,4]]],[10,1,1,4,5,[[295,1,1,4,5]]],[34,1,1,5,6,[[904,1,1,5,6]]]],[2497,2500,5187,5189,8896,22766]]],["Hew",[2,2,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,1,1,1,2,[[162,1,1,1,2]]]],[2497,5187]]],["graven",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22766]]],["hew",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8896]]],["hewed",[2,2,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,1,1,1,2,[[162,1,1,1,2]]]],[2500,5189]]]]},{"k":"H6459","v":[["*",[31,31,[[1,1,1,0,1,[[69,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[4,5,5,2,7,[[156,3,3,2,5],[157,1,1,5,6],[179,1,1,6,7]]],[6,8,8,7,15,[[227,2,2,7,9],[228,6,6,9,15]]],[11,1,1,15,16,[[333,1,1,15,16]]],[13,1,1,16,17,[[399,1,1,16,17]]],[18,1,1,17,18,[[574,1,1,17,18]]],[22,9,9,18,27,[[718,2,2,18,20],[720,1,1,20,21],[722,4,4,21,25],[723,1,1,25,26],[726,1,1,26,27]]],[23,2,2,27,29,[[754,1,1,27,28],[795,1,1,28,29]]],[33,1,1,29,30,[[900,1,1,29,30]]],[34,1,1,30,31,[[904,1,1,30,31]]]],[2055,3525,5020,5027,5029,5061,5600,6983,6984,7007,7010,7011,7013,7023,7024,10126,11915,15485,18439,18440,18497,18542,18543,18548,18550,18581,18619,19215,20229,22698,22766]]],["+",[2,2,[[23,2,2,0,2,[[754,1,1,0,1],[795,1,1,1,2]]]],[19215,20229]]],["graven",[1,1,[[4,1,1,0,1,[[179,1,1,0,1]]]],[5600]]],["image",[26,26,[[1,1,1,0,1,[[69,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[4,4,4,2,6,[[156,3,3,2,5],[157,1,1,5,6]]],[6,8,8,6,14,[[227,2,2,6,8],[228,6,6,8,14]]],[11,1,1,14,15,[[333,1,1,14,15]]],[13,1,1,15,16,[[399,1,1,15,16]]],[22,8,8,16,24,[[718,2,2,16,18],[722,4,4,18,22],[723,1,1,22,23],[726,1,1,23,24]]],[33,1,1,24,25,[[900,1,1,24,25]]],[34,1,1,25,26,[[904,1,1,25,26]]]],[2055,3525,5020,5027,5029,5061,6983,6984,7007,7010,7011,7013,7023,7024,10126,11915,18439,18440,18542,18543,18548,18550,18581,18619,22698,22766]]],["images",[2,2,[[18,1,1,0,1,[[574,1,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]]],[15485,18497]]]]},{"k":"H6460","v":[["psaltery",[4,4,[[26,4,4,0,4,[[852,4,4,0,4]]]],[21812,21814,21817,21822]]]]},{"k":"H6461","v":[["fail",[1,1,[[18,1,1,0,1,[[489,1,1,0,1]]]],[14067]]]]},{"k":"H6462","v":[["Pispah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10573]]]]},{"k":"H6463","v":[["cry",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18494]]]]},{"k":"H6464","v":[["*",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1079,10302]]],["Pai",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10302]]],["Pau",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1079]]]]},{"k":"H6465","v":[["*",[5,4,[[3,4,3,0,3,[[139,1,1,0,1],[141,2,1,1,2],[147,1,1,2,3]]],[5,1,1,3,4,[[208,1,1,3,4]]]],[4444,4489,4680,6443]]],["+",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4489]]],["Peor",[4,4,[[3,3,3,0,3,[[139,1,1,0,1],[141,1,1,1,2],[147,1,1,2,3]]],[5,1,1,3,4,[[208,1,1,3,4]]]],[4444,4489,4680,6443]]]]},{"k":"H6466","v":[["*",[57,56,[[1,1,1,0,1,[[64,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[17,12,12,3,15,[[442,1,1,3,4],[446,1,1,4,5],[457,1,1,5,6],[466,1,1,6,7],[468,1,1,7,8],[469,3,3,8,11],[470,1,1,11,12],[471,2,2,12,14],[472,1,1,14,15]]],[18,26,26,15,41,[[482,1,1,15,16],[483,1,1,16,17],[484,2,2,17,19],[488,1,1,19,20],[491,1,1,20,21],[492,1,1,21,22],[505,1,1,22,23],[508,1,1,23,24],[513,1,1,24,25],[521,1,1,25,26],[530,1,1,26,27],[535,1,1,27,28],[536,1,1,28,29],[541,1,1,29,30],[545,1,1,30,31],[551,1,1,31,32],[569,2,2,32,34],[571,2,2,34,36],[578,1,1,36,37],[596,1,1,37,38],[602,1,1,38,39],[618,2,2,39,41]]],[19,4,4,41,45,[[637,1,1,41,42],[643,1,1,42,43],[648,1,1,43,44],[657,1,1,44,45]]],[22,7,6,45,51,[[704,1,1,45,46],[709,1,1,46,47],[719,1,1,47,48],[721,1,1,48,49],[722,3,2,49,51]]],[27,2,2,51,53,[[867,1,1,51,52],[868,1,1,52,53]]],[32,1,1,53,54,[[894,1,1,53,54]]],[34,1,1,54,55,[[903,1,1,54,55]]],[35,1,1,55,56,[[907,1,1,55,56]]]],[1937,4439,5785,13028,13116,13406,13591,13679,13691,13705,13715,13726,13739,13759,13781,13978,13993,14008,14010,14062,14084,14089,14302,14350,14450,14572,14723,14781,14792,14852,14928,15060,15418,15420,15435,15447,15521,15901,16115,16280,16285,16685,16844,16999,17271,18142,18252,18455,18518,18545,18548,22175,22179,22596,22736,22808]]],["+",[1,1,[[18,1,1,0,1,[[536,1,1,0,1]]]],[14792]]],["Maker",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13739]]],["commit",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22179]]],["didst",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14572]]],["do",[6,6,[[17,4,4,0,4,[[442,1,1,0,1],[446,1,1,1,2],[457,1,1,2,3],[472,1,1,3,4]]],[18,2,2,4,6,[[488,1,1,4,5],[596,1,1,5,6]]]],[13028,13116,13406,13781,14062,15901]]],["doers",[1,1,[[18,1,1,0,1,[[578,1,1,0,1]]]],[15521]]],["doest",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13726]]],["done",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[19,1,1,2,3,[[657,1,1,2,3]]]],[5785,13715,17271]]],["made",[3,3,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,1,1,1,2,[[484,1,1,1,2]]],[19,1,1,2,3,[[643,1,1,2,3]]]],[1937,14010,16844]]],["maketh",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18548]]],["ordaineth",[1,1,[[18,1,1,0,1,[[484,1,1,0,1]]]],[14008]]],["work",[7,7,[[18,2,2,0,2,[[535,1,1,0,1],[618,1,1,1,2]]],[22,2,2,2,4,[[709,1,1,2,3],[721,1,1,3,4]]],[27,1,1,4,5,[[867,1,1,4,5]]],[32,1,1,5,6,[[894,1,1,5,6]]],[34,1,1,6,7,[[903,1,1,6,7]]]],[14781,16280,18252,18518,22175,22596,22736]]],["workers",[18,18,[[17,3,3,0,3,[[466,1,1,0,1],[469,2,2,1,3]]],[18,13,13,3,16,[[482,1,1,3,4],[483,1,1,4,5],[491,1,1,5,6],[505,1,1,6,7],[513,1,1,7,8],[530,1,1,8,9],[541,1,1,9,10],[569,2,2,10,12],[571,2,2,12,14],[602,1,1,14,15],[618,1,1,15,16]]],[19,2,2,16,18,[[637,1,1,16,17],[648,1,1,17,18]]]],[13591,13691,13705,13978,13993,14084,14302,14450,14723,14852,15418,15420,15435,15447,16115,16285,16685,16999]]],["worketh",[4,3,[[17,1,1,0,1,[[468,1,1,0,1]]],[18,1,1,1,2,[[492,1,1,1,2]]],[22,2,1,2,3,[[722,2,1,2,3]]]],[13679,14089,18545]]],["working",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15060]]],["wrought",[7,7,[[3,1,1,0,1,[[139,1,1,0,1]]],[17,1,1,1,2,[[471,1,1,1,2]]],[18,2,2,2,4,[[508,1,1,2,3],[545,1,1,3,4]]],[22,2,2,4,6,[[704,1,1,4,5],[719,1,1,5,6]]],[35,1,1,6,7,[[907,1,1,6,7]]]],[4439,13759,14350,14928,18142,18455,22808]]]]},{"k":"H6467","v":[["*",[37,37,[[4,2,2,0,2,[[184,1,1,0,1],[185,1,1,1,2]]],[7,1,1,2,3,[[233,1,1,2,3]]],[9,1,1,3,4,[[289,1,1,3,4]]],[12,1,1,4,5,[[348,1,1,4,5]]],[17,5,5,5,10,[[442,1,1,5,6],[459,1,1,6,7],[469,1,1,7,8],[471,2,2,8,10]]],[18,11,11,10,21,[[486,1,1,10,11],[505,1,1,11,12],[521,1,1,12,13],[541,1,1,13,14],[554,1,1,14,15],[567,1,1,15,16],[569,1,1,16,17],[572,1,1,17,18],[581,1,1,18,19],[588,1,1,19,20],[620,1,1,20,21]]],[19,5,5,21,26,[[647,1,1,21,22],[648,2,2,22,24],[651,2,2,24,26]]],[22,6,6,26,32,[[679,1,1,26,27],[683,1,1,27,28],[719,1,1,28,29],[723,2,2,29,31],[737,1,1,31,32]]],[23,3,3,32,35,[[766,1,1,32,33],[769,1,1,33,34],[794,1,1,34,35]]],[34,2,2,35,37,[[903,1,1,35,36],[905,1,1,36,37]]]],[5762,5821,7161,8673,10695,13010,13441,13694,13745,13760,14037,14303,14572,14859,15105,15394,15415,15463,15594,15796,16298,16965,16990,16992,17091,17108,17685,17751,18475,18570,18572,18806,19467,19548,20195,22736,22770]]],["+",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8673]]],["act",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18806]]],["acts",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10695]]],["deeds",[2,2,[[18,1,1,0,1,[[505,1,1,0,1]]],[23,1,1,1,2,[[769,1,1,1,2]]]],[14303,19548]]],["getting",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16990]]],["maker",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17685]]],["work",[28,28,[[4,2,2,0,2,[[184,1,1,0,1],[185,1,1,1,2]]],[7,1,1,2,3,[[233,1,1,2,3]]],[17,5,5,3,8,[[442,1,1,3,4],[459,1,1,4,5],[469,1,1,5,6],[471,2,2,6,8]]],[18,9,9,8,17,[[486,1,1,8,9],[521,1,1,9,10],[541,1,1,10,11],[554,1,1,11,12],[567,1,1,12,13],[569,1,1,13,14],[572,1,1,14,15],[581,1,1,15,16],[588,1,1,16,17]]],[19,3,3,17,20,[[647,1,1,17,18],[648,1,1,18,19],[651,1,1,19,20]]],[22,4,4,20,24,[[683,1,1,20,21],[719,1,1,21,22],[723,2,2,22,24]]],[23,2,2,24,26,[[766,1,1,24,25],[794,1,1,25,26]]],[34,2,2,26,28,[[903,1,1,26,27],[905,1,1,27,28]]]],[5762,5821,7161,13010,13441,13694,13745,13760,14037,14572,14859,15105,15394,15415,15463,15594,15796,16965,16992,17108,17751,18475,18570,18572,19467,20195,22736,22770]]],["works",[2,2,[[18,1,1,0,1,[[620,1,1,0,1]]],[19,1,1,1,2,[[651,1,1,1,2]]]],[16298,17091]]]]},{"k":"H6468","v":[["*",[14,14,[[2,1,1,0,1,[[108,1,1,0,1]]],[13,1,1,1,2,[[381,1,1,1,2]]],[18,3,3,2,5,[[494,1,1,2,3],[505,1,1,3,4],[586,1,1,4,5]]],[19,2,2,5,7,[[637,1,1,5,6],[638,1,1,6,7]]],[22,5,5,7,12,[[718,1,1,7,8],[727,1,1,8,9],[739,1,1,9,10],[740,1,1,10,11],[743,1,1,11,12]]],[23,1,1,12,13,[[775,1,1,12,13]]],[25,1,1,13,14,[[830,1,1,13,14]]]],[3294,11497,14107,14304,15775,16672,16706,18430,18640,18851,18865,18904,19707,21203]]],["labour",[2,2,[[19,1,1,0,1,[[637,1,1,0,1]]],[25,1,1,1,2,[[830,1,1,1,2]]]],[16672,21203]]],["reward",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15775]]],["wages",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3294]]],["work",[8,8,[[13,1,1,0,1,[[381,1,1,0,1]]],[19,1,1,1,2,[[638,1,1,1,2]]],[22,5,5,2,7,[[718,1,1,2,3],[727,1,1,3,4],[739,1,1,4,5],[740,1,1,5,6],[743,1,1,6,7]]],[23,1,1,7,8,[[775,1,1,7,8]]]],[11497,16706,18430,18640,18851,18865,18904,19707]]],["works",[2,2,[[18,2,2,0,2,[[494,1,1,0,1],[505,1,1,1,2]]]],[14107,14304]]]]},{"k":"H6469","v":[["Peulthai",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11082]]]]},{"k":"H6470","v":[["*",[5,5,[[0,1,1,0,1,[[40,1,1,0,1]]],[6,1,1,1,2,[[223,1,1,1,2]]],[18,1,1,2,3,[[554,1,1,2,3]]],[26,2,2,3,5,[[851,2,2,3,5]]]],[1203,6909,15097,21759,21761]]],["move",[1,1,[[6,1,1,0,1,[[223,1,1,0,1]]]],[6909]]],["troubled",[4,4,[[0,1,1,0,1,[[40,1,1,0,1]]],[18,1,1,1,2,[[554,1,1,1,2]]],[26,2,2,2,4,[[851,2,2,2,4]]]],[1203,15097,21759,21761]]]]},{"k":"H6471","v":[["*",[118,108,[[0,10,10,0,10,[[1,1,1,0,1],[17,1,1,1,2],[26,1,1,2,3],[28,2,2,3,5],[29,1,1,5,6],[32,1,1,6,7],[40,1,1,7,8],[42,1,1,8,9],[45,1,1,9,10]]],[1,9,9,10,19,[[57,1,1,10,11],[58,2,2,11,13],[59,1,1,13,14],[72,1,1,14,15],[74,1,1,15,16],[83,2,2,16,18],[86,1,1,18,19]]],[2,10,10,19,29,[[93,2,2,19,21],[97,1,1,21,22],[103,4,4,22,26],[105,2,2,26,28],[114,1,1,28,29]]],[3,6,5,29,34,[[130,1,1,29,30],[135,1,1,30,31],[136,1,1,31,32],[140,3,2,32,34]]],[4,4,4,34,38,[[153,1,1,34,35],[161,1,1,35,36],[162,1,1,36,37],[168,1,1,37,38]]],[5,8,7,38,45,[[192,7,6,38,44],[196,1,1,44,45]]],[6,13,9,45,54,[[215,1,1,45,46],[216,2,1,46,47],[225,1,1,47,48],[226,5,4,48,52],[230,4,2,52,54]]],[8,7,5,54,59,[[238,2,1,54,55],[253,1,1,55,56],[255,3,2,56,58],[261,1,1,58,59]]],[9,3,3,59,62,[[283,1,1,59,60],[289,1,1,60,61],[290,1,1,61,62]]],[10,8,8,62,70,[[297,3,3,62,65],[299,1,1,65,66],[301,1,1,66,67],[307,1,1,67,68],[308,1,1,68,69],[312,1,1,69,70]]],[11,8,7,70,77,[[316,1,1,70,71],[317,2,2,71,73],[325,4,3,73,76],[331,1,1,76,77]]],[12,2,2,77,79,[[348,1,1,77,78],[358,1,1,78,79]]],[13,2,2,79,81,[[374,1,1,79,80],[384,1,1,80,81]]],[15,4,4,81,85,[[416,1,1,81,82],[418,2,2,82,84],[425,1,1,84,85]]],[17,2,2,85,87,[[454,1,1,85,86],[468,1,1,86,87]]],[18,8,8,87,95,[[494,1,1,87,88],[534,1,1,88,89],[535,1,1,89,90],[551,1,1,90,91],[562,1,1,91,92],[583,1,1,92,93],[596,1,1,93,94],[617,1,1,94,95]]],[19,3,2,95,97,[[634,2,1,95,96],[656,1,1,96,97]]],[20,2,2,97,99,[[664,1,1,97,98],[665,1,1,98,99]]],[21,1,1,99,100,[[677,1,1,99,100]]],[22,4,4,100,104,[[704,1,1,100,101],[715,1,1,101,102],[719,1,1,102,103],[744,1,1,103,104]]],[23,2,2,104,106,[[754,1,1,104,105],[760,1,1,105,106]]],[25,1,1,106,107,[[842,1,1,106,107]]],[33,1,1,107,108,[[900,1,1,107,108]]]],[53,456,763,829,830,850,963,1227,1300,1416,1742,1756,1769,1794,2161,2207,2519,2520,2607,2801,2812,2928,3118,3127,3138,3162,3215,3220,3477,4130,4293,4322,4447,4456,4903,5176,5196,5358,5952,5953,5960,5963,5964,5965,6106,6651,6693,6932,6964,6967,6969,6977,7084,7085,7286,7687,7755,7771,7913,8456,8661,8695,8938,8939,8964,9076,9117,9338,9384,9496,9638,9657,9661,9889,9890,9896,10085,10684,10937,11359,11557,12371,12405,12406,12691,13300,13679,14108,14774,14789,15051,15284,15694,16031,16267,16587,17229,17423,17451,17628,18136,18377,18458,18930,19219,19357,21532,22693]]],["+",[24,18,[[1,2,2,0,2,[[83,2,2,0,2]]],[3,2,1,2,3,[[140,2,1,2,3]]],[5,3,3,3,6,[[192,3,3,3,6]]],[6,6,3,6,9,[[226,2,1,6,7],[230,4,2,7,9]]],[8,5,3,9,12,[[238,2,1,9,10],[255,2,1,10,11],[261,1,1,11,12]]],[9,1,1,12,13,[[290,1,1,12,13]]],[11,2,2,13,15,[[325,2,2,13,15]]],[17,1,1,15,16,[[468,1,1,15,16]]],[20,1,1,16,17,[[665,1,1,16,17]]],[22,1,1,17,18,[[744,1,1,17,18]]]],[2519,2520,4447,5952,5960,5963,6969,7084,7085,7286,7755,7913,8695,9889,9890,13679,17451,18930]]],["Now",[4,4,[[0,2,2,0,2,[[28,1,1,0,1],[45,1,1,1,2]]],[6,1,1,2,3,[[225,1,1,2,3]]],[19,1,1,3,4,[[634,1,1,3,4]]]],[830,1416,6932,16587]]],["anvil",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18458]]],["corners",[3,3,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]]],[2207,2607,8964]]],["feet",[6,6,[[11,1,1,0,1,[[331,1,1,0,1]]],[18,2,2,1,3,[[535,1,1,1,2],[551,1,1,2,3]]],[19,1,1,3,4,[[656,1,1,3,4]]],[21,1,1,4,5,[[677,1,1,4,5]]],[22,1,1,5,6,[[715,1,1,5,6]]]],[10085,14789,15051,17229,17628,18377]]],["footsteps",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14108]]],["goings",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16267]]],["now",[3,3,[[0,2,2,0,2,[[1,1,1,0,1],[29,1,1,1,2]]],[19,1,1,2,3,[[634,1,1,2,3]]]],[53,850,16587]]],["once",[9,8,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[59,1,1,1,2]]],[6,4,3,2,5,[[216,2,1,2,3],[226,2,2,3,5]]],[15,1,1,5,6,[[425,1,1,5,6]]],[23,2,2,6,8,[[754,1,1,6,7],[760,1,1,7,8]]]],[456,1794,6693,6967,6977,12691,19219,19357]]],["order",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21532]]],["ranks",[2,2,[[10,2,2,0,2,[[297,2,2,0,2]]]],[8938,8939]]],["steps",[4,4,[[18,3,3,0,3,[[534,1,1,0,1],[562,1,1,1,2],[596,1,1,2,3]]],[22,1,1,3,4,[[704,1,1,3,4]]]],[14774,15284,16031,18136]]],["time",[14,14,[[0,2,2,0,2,[[28,1,1,0,1],[42,1,1,1,2]]],[1,3,3,2,5,[[57,1,1,2,3],[58,2,2,3,5]]],[4,2,2,5,7,[[161,1,1,5,6],[162,1,1,6,7]]],[5,2,2,7,9,[[192,1,1,7,8],[196,1,1,8,9]]],[9,2,2,9,11,[[283,1,1,9,10],[289,1,1,10,11]]],[12,1,1,11,12,[[348,1,1,11,12]]],[15,1,1,12,13,[[418,1,1,12,13]]],[33,1,1,13,14,[[900,1,1,13,14]]]],[829,1300,1742,1756,1769,5176,5196,5965,6106,8456,8661,10684,12406,22693]]],["times",[39,38,[[0,2,2,0,2,[[26,1,1,0,1],[32,1,1,1,2]]],[1,1,1,2,3,[[72,1,1,2,3]]],[2,10,10,3,13,[[93,2,2,3,5],[97,1,1,5,6],[103,4,4,6,10],[105,2,2,10,12],[114,1,1,12,13]]],[3,3,3,13,16,[[130,1,1,13,14],[135,1,1,14,15],[140,1,1,15,16]]],[4,2,2,16,18,[[153,1,1,16,17],[168,1,1,17,18]]],[5,3,2,18,20,[[192,3,2,18,20]]],[6,1,1,20,21,[[226,1,1,20,21]]],[8,1,1,21,22,[[255,1,1,21,22]]],[10,4,4,22,26,[[299,1,1,22,23],[307,1,1,23,24],[308,1,1,24,25],[312,1,1,25,26]]],[11,5,5,26,31,[[316,1,1,26,27],[317,2,2,27,29],[325,2,2,29,31]]],[12,1,1,31,32,[[358,1,1,31,32]]],[13,2,2,32,34,[[374,1,1,32,33],[384,1,1,33,34]]],[15,2,2,34,36,[[416,1,1,34,35],[418,1,1,35,36]]],[17,1,1,36,37,[[454,1,1,36,37]]],[18,1,1,37,38,[[583,1,1,37,38]]]],[763,963,2161,2801,2812,2928,3118,3127,3138,3162,3215,3220,3477,4130,4293,4456,4903,5358,5953,5964,6964,7771,9076,9338,9384,9496,9638,9657,9661,9890,9896,10937,11359,11557,12371,12405,13300,15694]]],["twice",[5,5,[[0,1,1,0,1,[[40,1,1,0,1]]],[3,1,1,1,2,[[136,1,1,1,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[10,1,1,3,4,[[301,1,1,3,4]]],[20,1,1,4,5,[[664,1,1,4,5]]]],[1227,4322,7687,9117,17423]]],["wheels",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6651]]]]},{"k":"H6472","v":[["*",[7,4,[[1,7,4,0,4,[[77,3,2,0,2],[88,4,2,2,4]]]],[2326,2327,2689,2690]]],["bell",[4,2,[[1,4,2,0,2,[[77,2,1,0,1],[88,2,1,1,2]]]],[2327,2690]]],["bells",[3,2,[[1,3,2,0,2,[[77,1,1,0,1],[88,2,1,1,2]]]],[2326,2689]]]]},{"k":"H6473","v":[["*",[4,4,[[17,2,2,0,2,[[451,1,1,0,1],[464,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[22,1,1,3,4,[[683,1,1,3,4]]]],[13248,13555,16029,17753]]],["gaped",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13248]]],["opened",[3,3,[[17,1,1,0,1,[[464,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[22,1,1,2,3,[[683,1,1,2,3]]]],[13555,16029,17753]]]]},{"k":"H6474","v":[["Paarai",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8688]]]]},{"k":"H6475","v":[["*",[15,15,[[0,1,1,0,1,[[3,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[4,1,1,2,3,[[163,1,1,2,3]]],[6,2,2,3,5,[[221,2,2,3,5]]],[17,1,1,5,6,[[470,1,1,5,6]]],[18,5,5,6,11,[[499,1,1,6,7],[543,1,1,7,8],[621,3,3,8,11]]],[22,1,1,11,12,[[688,1,1,11,12]]],[24,2,2,12,14,[[798,1,1,12,13],[799,1,1,13,14]]],[25,1,1,14,15,[[803,1,1,14,15]]]],[90,4224,5214,6864,6865,13736,14217,14887,16312,16315,16316,17864,20348,20400,20500]]],["+",[5,5,[[0,1,1,0,1,[[3,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[4,1,1,2,3,[[163,1,1,2,3]]],[6,1,1,3,4,[[221,1,1,3,4]]],[18,1,1,4,5,[[621,1,1,4,5]]]],[90,4224,5214,6865,16315]]],["Rid",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16316]]],["gaped",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14217]]],["open",[2,2,[[17,1,1,0,1,[[470,1,1,0,1]]],[25,1,1,1,2,[[803,1,1,1,2]]]],[13736,20500]]],["opened",[4,4,[[6,1,1,0,1,[[221,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]],[24,2,2,2,4,[[798,1,1,2,3],[799,1,1,3,4]]]],[6864,17864,20348,20400]]],["rid",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16312]]],["uttered",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14887]]]]},{"k":"H6476","v":[["*",[8,8,[[18,1,1,0,1,[[575,1,1,0,1]]],[22,6,6,1,7,[[692,1,1,1,2],[722,1,1,2,3],[727,1,1,3,4],[730,1,1,4,5],[732,1,1,5,6],[733,1,1,6,7]]],[32,1,1,7,8,[[895,1,1,7,8]]]],[15494,17935,18556,18649,18705,18724,18752,22611]]],["break",[1,1,[[32,1,1,0,1,[[895,1,1,0,1]]]],[22611]]],["forth",[5,5,[[22,5,5,0,5,[[692,1,1,0,1],[722,1,1,1,2],[727,1,1,2,3],[732,1,1,3,4],[733,1,1,4,5]]]],[17935,18556,18649,18724,18752]]],["joy",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18705]]],["noise",[1,1,[[18,1,1,0,1,[[575,1,1,0,1]]]],[15494]]]]},{"k":"H6477","v":[["+",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7506]]]]},{"k":"H6478","v":[["pilled",[2,2,[[0,2,2,0,2,[[29,2,2,0,2]]]],[867,868]]]]},{"k":"H6479","v":[["strakes",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[867]]]]},{"k":"H6480","v":[["broken",[1,1,[[18,1,1,0,1,[[537,1,1,0,1]]]],[14809]]]]},{"k":"H6481","v":[["*",[3,3,[[4,1,1,0,1,[[175,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[21,1,1,2,3,[[675,1,1,2,3]]]],[5501,9445,17605]]],["+",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5501]]],["wounded",[2,2,[[10,1,1,0,1,[[310,1,1,0,1]]],[21,1,1,1,2,[[675,1,1,1,2]]]],[9445,17605]]]]},{"k":"H6482","v":[["*",[8,7,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,2,1,1,2,[[70,2,1,1,2]]],[17,1,1,2,3,[[444,1,1,2,3]]],[19,3,3,3,6,[[647,1,1,3,4],[650,1,1,4,5],[654,1,1,5,6]]],[22,1,1,6,7,[[679,1,1,6,7]]]],[102,2102,13068,16984,17073,17175,17660]]],["wound",[3,2,[[1,2,1,0,1,[[70,2,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]]],[2102,16984]]],["wounding",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[102]]],["wounds",[4,4,[[17,1,1,0,1,[[444,1,1,0,1]]],[19,2,2,1,3,[[650,1,1,1,2],[654,1,1,2,3]]],[22,1,1,3,4,[[679,1,1,3,4]]]],[13068,17073,17175,17660]]]]},{"k":"H6483","v":[["Aphses",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11030]]]]},{"k":"H6484","v":[["*",[7,7,[[0,3,3,0,3,[[18,2,2,0,2],[32,1,1,2,3]]],[6,1,1,3,4,[[229,1,1,3,4]]],[8,1,1,4,5,[[250,1,1,4,5]]],[11,2,2,5,7,[[314,1,1,5,6],[317,1,1,6,7]]]],[460,466,971,7031,7583,9568,9663]]],["pressed",[2,2,[[0,2,2,0,2,[[18,2,2,0,2]]]],[460,466]]],["stubbornness",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7583]]],["urged",[4,4,[[0,1,1,0,1,[[32,1,1,0,1]]],[6,1,1,1,2,[[229,1,1,1,2]]],[11,2,2,2,4,[[314,1,1,2,3],[317,1,1,3,4]]]],[971,7031,9568,9663]]]]},{"k":"H6485","v":[["*",[303,269,[[0,9,7,0,7,[[20,1,1,0,1],[38,2,2,1,3],[39,1,1,3,4],[40,1,1,4,5],[49,4,2,5,7]]],[1,18,12,7,19,[[52,2,1,7,8],[53,1,1,8,9],[62,2,1,9,10],[69,1,1,10,11],[79,5,3,11,14],[81,2,1,14,15],[83,1,1,15,16],[87,4,3,16,19]]],[2,3,3,19,22,[[95,1,1,19,20],[107,1,1,20,21],[115,1,1,21,22]]],[3,103,90,22,112,[[117,22,21,22,43],[118,19,18,43,61],[119,12,9,61,70],[120,22,17,70,87],[123,1,1,87,88],[130,2,2,88,90],[132,1,1,90,91],[142,20,17,91,108],[143,1,1,108,109],[147,3,3,109,112]]],[4,2,2,112,114,[[157,1,1,112,113],[172,1,1,113,114]]],[5,2,2,114,116,[[194,1,1,114,115],[196,1,1,115,116]]],[6,6,5,116,121,[[225,1,1,116,117],[230,3,2,117,119],[231,2,2,119,121]]],[7,1,1,121,122,[[232,1,1,121,122]]],[8,18,15,122,137,[[237,1,1,122,123],[246,1,1,123,124],[248,1,1,124,125],[249,2,1,125,126],[250,2,2,126,128],[252,1,1,128,129],[255,6,4,129,133],[260,3,3,133,136],[264,1,1,136,137]]],[9,5,5,137,142,[[268,1,1,137,138],[269,1,1,138,139],[284,1,1,139,140],[290,2,2,140,142]]],[10,8,6,142,148,[[301,1,1,142,143],[304,1,1,143,144],[310,6,4,144,148]]],[11,12,11,148,159,[[315,1,1,148,149],[317,1,1,149,150],[319,1,1,150,151],[321,1,1,151,152],[322,2,1,152,153],[323,1,1,153,154],[324,1,1,154,155],[334,2,2,155,157],[337,2,2,157,159]]],[12,3,3,159,162,[[358,1,1,159,160],[360,1,1,160,161],[363,1,1,161,162]]],[13,7,7,162,169,[[378,1,1,162,163],[389,1,1,163,164],[391,1,1,164,165],[400,3,3,165,168],[402,1,1,168,169]]],[14,1,1,169,170,[[403,1,1,169,170]]],[15,2,2,170,172,[[419,1,1,170,171],[424,1,1,171,172]]],[16,1,1,172,173,[[427,1,1,172,173]]],[17,6,6,173,179,[[440,1,1,173,174],[442,1,1,174,175],[466,1,1,175,176],[469,1,1,176,177],[470,1,1,177,178],[471,1,1,178,179]]],[18,9,9,179,188,[[485,1,1,179,180],[494,1,1,180,181],[508,1,1,181,182],[536,1,1,182,183],[542,1,1,183,184],[557,1,1,184,185],[566,1,1,185,186],[583,1,1,186,187],[586,1,1,187,188]]],[19,1,1,188,189,[[646,1,1,188,189]]],[22,16,16,189,205,[[688,2,2,189,191],[691,2,2,191,193],[701,1,1,193,194],[702,2,2,194,196],[704,3,3,196,199],[705,2,2,199,201],[707,1,1,201,202],[712,1,1,202,203],[716,1,1,203,204],[740,1,1,204,205]]],[23,49,45,205,250,[[745,1,1,205,206],[747,1,1,206,207],[749,2,2,207,209],[750,2,2,209,211],[753,2,2,211,213],[755,1,1,213,214],[757,1,1,214,215],[758,1,1,215,216],[759,2,2,216,218],[765,1,1,218,219],[767,4,3,219,222],[769,1,1,222,223],[771,2,2,223,225],[773,2,2,225,227],[774,1,1,227,228],[776,1,1,228,229],[780,2,2,229,231],[781,1,1,231,232],[784,4,3,232,235],[785,3,3,235,238],[788,3,2,238,240],[790,1,1,240,241],[793,2,2,241,243],[794,4,3,243,246],[795,4,4,246,250]]],[24,1,1,250,251,[[800,1,1,250,251]]],[25,2,2,251,253,[[824,1,1,251,252],[839,1,1,252,253]]],[27,7,7,253,260,[[862,1,1,253,254],[863,1,1,254,255],[865,2,2,255,257],[869,1,1,257,258],[870,1,1,258,259],[873,1,1,259,260]]],[29,3,2,260,262,[[881,3,2,260,262]]],[35,5,5,262,267,[[906,3,3,262,265],[907,1,1,265,266],[908,1,1,266,267]]],[37,3,2,267,269,[[920,2,1,267,268],[921,1,1,268,269]]]],[514,1153,1154,1176,1229,1530,1531,1595,1632,1886,2056,2394,2395,2396,2472,2503,2654,2658,2659,2853,3276,3540,3607,3623,3625,3626,3627,3629,3631,3633,3635,3637,3639,3641,3643,3645,3647,3648,3649,3650,3651,3653,3654,3662,3664,3666,3667,3669,3671,3673,3674,3677,3679,3681,3682,3684,3686,3688,3689,3690,3691,3702,3707,3708,3714,3726,3731,3732,3734,3735,3766,3770,3772,3773,3775,3777,3779,3780,3781,3783,3784,3785,3787,3788,3789,3791,3792,3852,4126,4137,4223,4496,4507,4511,4514,4516,4523,4526,4530,4532,4536,4539,4540,4543,4546,4551,4552,4553,4570,4678,4712,4713,5062,5436,6012,6082,6930,7069,7071,7105,7111,7133,7261,7453,7500,7525,7562,7564,7636,7736,7748,7755,7757,7868,7876,7882,7971,8079,8089,8479,8694,8696,9136,9245,9423,9434,9435,9447,9582,9671,9724,9790,9812,9844,9861,10150,10154,10244,10245,10940,11007,11109,11447,11670,11709,11943,11945,11950,12016,12018,12421,12668,12727,12975,13026,13602,13696,13735,13759,14016,14106,14336,14795,14869,15212,15358,15655,15761,16948,17862,17878,17910,17917,18094,18116,18117,18144,18146,18151,18152,18154,18199,18319,18400,18860,18956,19018,19067,19087,19095,19104,19184,19200,19248,19287,19303,19318,19330,19454,19486,19488,19518,19546,19604,19618,19645,19667,19687,19736,19862,19873,19895,19946,19948,19952,19959,19967,19975,20023,20039,20070,20135,20146,20184,20197,20210,20239,20256,20259,20264,20442,21028,21433,22098,22118,22142,22147,22207,22217,22254,22397,22409,22795,22796,22799,22812,22827,23019,23044]]],["+",[80,69,[[0,7,5,0,5,[[20,1,1,0,1],[38,1,1,1,2],[39,1,1,2,3],[49,4,2,3,5]]],[1,5,3,5,8,[[52,2,1,5,6],[53,1,1,6,7],[62,2,1,7,8]]],[2,1,1,8,9,[[95,1,1,8,9]]],[3,10,9,9,18,[[117,2,2,9,11],[119,1,1,11,12],[120,3,3,12,15],[123,1,1,15,16],[142,3,2,16,18]]],[5,1,1,18,19,[[194,1,1,18,19]]],[6,1,1,19,20,[[225,1,1,19,20]]],[7,1,1,20,21,[[232,1,1,20,21]]],[8,4,3,21,24,[[237,1,1,21,22],[248,1,1,22,23],[255,2,1,23,24]]],[9,3,3,24,27,[[269,1,1,24,25],[284,1,1,25,26],[290,1,1,26,27]]],[10,6,4,27,31,[[301,1,1,27,28],[310,5,3,28,31]]],[11,2,2,31,33,[[315,1,1,31,32],[319,1,1,32,33]]],[13,1,1,33,34,[[402,1,1,33,34]]],[14,1,1,34,35,[[403,1,1,34,35]]],[17,2,2,35,37,[[469,1,1,35,36],[471,1,1,36,37]]],[22,5,5,37,42,[[688,1,1,37,38],[701,1,1,38,39],[702,1,1,39,40],[705,2,2,40,42]]],[23,17,15,42,57,[[753,1,1,42,43],[755,1,1,43,44],[757,1,1,44,45],[765,1,1,45,46],[767,1,1,46,47],[769,1,1,47,48],[773,1,1,48,49],[774,1,1,49,50],[780,1,1,50,51],[781,1,1,51,52],[788,3,2,52,54],[790,1,1,54,55],[794,2,1,55,56],[795,1,1,56,57]]],[25,1,1,57,58,[[824,1,1,57,58]]],[27,4,4,58,62,[[862,1,1,58,59],[865,2,2,59,61],[873,1,1,61,62]]],[29,2,2,62,64,[[881,2,2,62,64]]],[35,4,4,64,68,[[906,3,3,64,67],[908,1,1,67,68]]],[37,2,1,68,69,[[920,2,1,68,69]]]],[514,1154,1176,1530,1531,1595,1632,1886,2853,3653,3654,3707,3775,3777,3789,3852,4552,4553,6012,6930,7133,7261,7500,7736,8089,8479,8696,9136,9423,9434,9447,9582,9724,12016,12018,13696,13759,17862,18094,18116,18152,18154,19200,19248,19287,19454,19518,19546,19667,19687,19873,19895,20023,20039,20070,20184,20256,21028,22098,22142,22147,22254,22397,22409,22795,22796,22799,22827,23019]]],["Number",[2,2,[[3,1,1,0,1,[[119,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]]],[3732,7525]]],["Set",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15761]]],["appoint",[9,9,[[0,1,1,0,1,[[40,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,2,2,2,4,[[119,1,1,2,3],[120,1,1,3,4]]],[16,1,1,4,5,[[427,1,1,4,5]]],[23,4,4,5,9,[[759,1,1,5,6],[793,1,1,6,7],[794,1,1,7,8],[795,1,1,8,9]]]],[1229,3540,3702,3770,12727,19318,20146,20210,20239]]],["appointed",[3,3,[[8,1,1,0,1,[[264,1,1,0,1]]],[15,2,2,1,3,[[419,1,1,1,2],[424,1,1,2,3]]]],[7971,12421,12668]]],["bestowed",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9671]]],["commit",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14336]]],["committed",[4,4,[[10,1,1,0,1,[[304,1,1,0,1]]],[13,1,1,1,2,[[378,1,1,1,2]]],[23,2,2,2,4,[[784,1,1,2,3],[785,1,1,3,4]]]],[9245,11447,19948,19967]]],["counted",[3,3,[[1,1,1,0,1,[[87,1,1,0,1]]],[12,2,2,1,3,[[358,1,1,1,2],[360,1,1,2,3]]]],[2654,10940,11007]]],["deprived",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18400]]],["empty",[3,3,[[8,3,3,0,3,[[255,3,3,0,3]]]],[7748,7755,7757]]],["forward",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11945]]],["governor",[5,5,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,4,4,1,5,[[784,2,2,1,3],[785,2,2,3,5]]]],[10245,19946,19948,19959,19975]]],["how",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7636]]],["judgment",[2,2,[[23,2,2,0,2,[[795,2,2,0,2]]]],[20259,20264]]],["lacked",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8079]]],["lacketh",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4713]]],["lacking",[2,2,[[6,1,1,0,1,[[231,1,1,0,1]]],[23,1,1,1,2,[[767,1,1,1,2]]]],[7105,19488]]],["make",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5436]]],["missed",[3,3,[[8,3,3,0,3,[[255,1,1,0,1],[260,2,2,1,3]]]],[7748,7876,7882]]],["missing",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7868]]],["mustereth",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17910]]],["number",[9,9,[[1,1,1,0,1,[[79,1,1,0,1]]],[3,7,7,1,8,[[117,1,1,1,2],[119,1,1,2,3],[120,5,5,3,8]]],[9,1,1,8,9,[[290,1,1,8,9]]]],[2394,3607,3707,3766,3772,3773,3780,3784,8694]]],["numbered",[90,82,[[1,4,4,0,4,[[79,2,2,0,2],[87,2,2,2,4]]],[3,77,70,4,74,[[117,19,18,4,22],[118,19,18,22,40],[119,8,6,40,46],[120,13,11,46,57],[130,1,1,57,58],[142,17,16,58,74]]],[6,4,3,74,77,[[230,3,2,74,76],[231,1,1,76,77]]],[8,3,3,77,80,[[246,1,1,77,78],[249,1,1,78,79],[250,1,1,79,80]]],[10,1,1,80,81,[[310,1,1,80,81]]],[13,1,1,81,82,[[391,1,1,81,82]]]],[2395,2396,2658,2659,3623,3625,3626,3627,3629,3631,3633,3635,3637,3639,3641,3643,3645,3647,3648,3649,3650,3651,3662,3664,3666,3667,3669,3671,3673,3674,3677,3679,3681,3682,3684,3686,3688,3689,3690,3691,3708,3714,3726,3731,3734,3735,3779,3780,3781,3783,3784,3785,3787,3788,3789,3791,3792,4137,4496,4507,4511,4514,4516,4523,4526,4530,4532,4536,4539,4540,4543,4546,4551,4552,7069,7071,7111,7453,7525,7564,9435,11709]]],["numberest",[2,1,[[1,2,1,0,1,[[79,2,1,0,1]]]],[2394]]],["officers",[3,3,[[3,2,2,0,2,[[147,2,2,0,2]]],[11,1,1,2,3,[[323,1,1,2,3]]]],[4678,4712,9844]]],["over",[1,1,[[13,1,1,0,1,[[389,1,1,0,1]]]],[11670]]],["overseer",[1,1,[[0,1,1,0,1,[[38,1,1,0,1]]]],[1153]]],["overseers",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11950]]],["oversight",[4,4,[[11,3,3,0,3,[[324,1,1,0,1],[334,2,2,1,3]]],[13,1,1,3,4,[[400,1,1,3,4]]]],[9861,10150,10154,11943]]],["punish",[3,3,[[22,2,2,0,2,[[691,1,1,0,1],[704,1,1,1,2]]],[23,1,1,2,3,[[771,1,1,2,3]]]],[17917,18151,19604]]],["remember",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7562]]],["ruler",[1,1,[[11,1,1,0,1,[[337,1,1,0,1]]]],[10244]]],["rulers",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11109]]],["see",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9790]]],["set",[5,5,[[3,1,1,0,1,[[143,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[22,1,1,2,3,[[740,1,1,2,3]]],[23,2,2,3,5,[[745,1,1,3,4],[784,1,1,4,5]]]],[4570,6082,18860,18956,19952]]],["sum",[1,1,[[1,1,1,0,1,[[87,1,1,0,1]]]],[2654]]],["up",[2,2,[[22,1,1,0,1,[[688,1,1,0,1]]],[23,1,1,1,2,[[780,1,1,1,2]]]],[17878,19862]]],["visit",[29,28,[[1,2,1,0,1,[[81,2,1,0,1]]],[2,1,1,1,2,[[107,1,1,1,2]]],[17,2,2,2,4,[[440,1,1,2,3],[442,1,1,3,4]]],[18,4,4,4,8,[[536,1,1,4,5],[557,1,1,5,6],[566,1,1,6,7],[583,1,1,7,8]]],[23,13,13,8,21,[[747,1,1,8,9],[749,2,2,9,11],[750,1,1,11,12],[753,1,1,12,13],[758,1,1,13,14],[759,1,1,14,15],[767,1,1,15,16],[771,1,1,16,17],[773,1,1,17,18],[776,1,1,18,19],[793,1,1,19,20],[794,1,1,20,21]]],[24,1,1,21,22,[[800,1,1,21,22]]],[27,3,3,22,25,[[863,1,1,22,23],[869,1,1,23,24],[870,1,1,24,25]]],[29,1,1,25,26,[[881,1,1,25,26]]],[35,1,1,26,27,[[907,1,1,26,27]]],[37,1,1,27,28,[[921,1,1,27,28]]]],[2472,3276,12975,13026,14795,15212,15358,15655,19018,19067,19087,19104,19184,19303,19330,19486,19618,19645,19736,20135,20197,20442,22118,22207,22217,22409,22812,23044]]],["visited",[11,11,[[3,1,1,0,1,[[132,1,1,0,1]]],[17,1,1,1,2,[[470,1,1,1,2]]],[18,1,1,2,3,[[494,1,1,2,3]]],[19,1,1,3,4,[[646,1,1,3,4]]],[22,4,4,4,8,[[702,1,1,4,5],[704,2,2,5,7],[707,1,1,7,8]]],[23,2,2,8,10,[[750,1,1,8,9],[767,1,1,9,10]]],[25,1,1,10,11,[[839,1,1,10,11]]]],[4223,13735,14106,16948,18117,18144,18146,18199,19095,19486,21433]]],["visitest",[2,2,[[18,2,2,0,2,[[485,1,1,0,1],[542,1,1,1,2]]]],[14016,14869]]],["visiteth",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13602]]],["visiting",[4,4,[[1,2,2,0,2,[[69,1,1,0,1],[83,1,1,1,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[4,1,1,3,4,[[157,1,1,3,4]]]],[2056,2503,4126,5062]]],["want",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18319]]],["wanting",[2,1,[[11,2,1,0,1,[[322,2,1,0,1]]]],[9812]]]]},{"k":"H6486","v":[["*",[32,31,[[3,5,4,0,4,[[119,2,2,0,2],[120,2,1,2,3],[132,1,1,3,4]]],[11,1,1,4,5,[[323,1,1,4,5]]],[12,4,4,5,9,[[360,1,1,5,6],[361,2,2,6,8],[363,1,1,8,9]]],[13,4,4,9,13,[[383,1,1,9,10],[389,1,1,10,11],[390,1,1,11,12],[392,1,1,12,13]]],[17,1,1,13,14,[[445,1,1,13,14]]],[18,1,1,14,15,[[586,1,1,14,15]]],[22,3,3,15,18,[[688,1,1,15,16],[693,1,1,16,17],[738,1,1,17,18]]],[23,9,9,18,27,[[752,1,1,18,19],[754,1,1,19,20],[755,1,1,20,21],[767,1,1,21,22],[790,1,1,22,23],[792,1,1,23,24],[794,1,1,24,25],[795,1,1,25,26],[796,1,1,26,27]]],[25,2,2,27,29,[[810,1,1,27,28],[845,1,1,28,29]]],[27,1,1,29,30,[[870,1,1,29,30]]],[32,1,1,30,31,[[899,1,1,30,31]]]],[3724,3728,3759,4223,9847,10994,11018,11034,11107,11537,11674,11688,11743,13098,15763,17853,17967,18838,19165,19216,19249,19496,20066,20124,20193,20230,20287,20623,21610,22215,22668]]],["+",[1,1,[[23,1,1,0,1,[[796,1,1,0,1]]]],[20287]]],["account",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11743]]],["charge",[2,2,[[25,2,2,0,2,[[810,1,1,0,1],[845,1,1,1,2]]]],[20623,21610]]],["custody",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3728]]],["numbers",[1,1,[[13,1,1,0,1,[[383,1,1,0,1]]]],[11537]]],["office",[3,3,[[3,1,1,0,1,[[120,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]],[18,1,1,2,3,[[586,1,1,2,3]]]],[3759,11688,15763]]],["officers",[3,3,[[11,1,1,0,1,[[323,1,1,0,1]]],[12,1,1,1,2,[[363,1,1,1,2]]],[22,1,1,2,3,[[738,1,1,2,3]]]],[9847,11107,18838]]],["offices",[2,2,[[12,1,1,0,1,[[361,1,1,0,1]]],[13,1,1,1,2,[[389,1,1,1,2]]]],[11018,11674]]],["orderings",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11034]]],["oversight",[2,2,[[3,2,2,0,2,[[119,1,1,0,1],[120,1,1,1,2]]]],[3724,3759]]],["reckoning",[1,1,[[12,1,1,0,1,[[360,1,1,0,1]]]],[10994]]],["up",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17967]]],["visitation",[13,13,[[3,1,1,0,1,[[132,1,1,0,1]]],[17,1,1,1,2,[[445,1,1,1,2]]],[22,1,1,2,3,[[688,1,1,2,3]]],[23,8,8,3,11,[[752,1,1,3,4],[754,1,1,4,5],[755,1,1,5,6],[767,1,1,6,7],[790,1,1,7,8],[792,1,1,8,9],[794,1,1,9,10],[795,1,1,10,11]]],[27,1,1,11,12,[[870,1,1,11,12]]],[32,1,1,12,13,[[899,1,1,12,13]]]],[4223,13098,17853,19165,19216,19249,19496,20066,20124,20193,20230,22215,22668]]]]},{"k":"H6487","v":[["*",[3,3,[[0,1,1,0,1,[[40,1,1,0,1]]],[2,2,2,1,3,[[95,2,2,1,3]]]],[1231,2851,2853]]],["keep",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2851]]],["store",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1231]]],["that",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2853]]]]},{"k":"H6488","v":[["ward",[1,1,[[23,1,1,0,1,[[781,1,1,0,1]]]],[19887]]]]},{"k":"H6489","v":[["Pekod",[2,2,[[23,1,1,0,1,[[794,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[20187,21030]]]]},{"k":"H6490","v":[["*",[24,24,[[18,24,24,0,24,[[496,1,1,0,1],[580,1,1,1,2],[588,1,1,2,3],[596,21,21,3,24]]]],[14176,15567,15800,15902,15913,15925,15938,15943,15954,15961,15967,15976,15985,15991,15992,15998,16002,16008,16026,16032,16039,16057,16066,16071]]],["+",[2,2,[[18,2,2,0,2,[[596,2,2,0,2]]]],[16002,16008]]],["commandments",[2,2,[[18,2,2,0,2,[[580,1,1,0,1],[588,1,1,1,2]]]],[15567,15800]]],["precepts",[19,19,[[18,19,19,0,19,[[596,19,19,0,19]]]],[15902,15913,15925,15938,15943,15954,15961,15967,15976,15985,15991,15992,15998,16026,16032,16039,16057,16066,16071]]],["statutes",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14176]]]]},{"k":"H6491","v":[["*",[20,18,[[0,3,3,0,3,[[2,2,2,0,2],[20,1,1,2,3]]],[11,6,4,3,7,[[316,1,1,3,4],[318,4,2,4,6],[331,1,1,6,7]]],[17,2,2,7,9,[[449,1,1,7,8],[462,1,1,8,9]]],[18,1,1,9,10,[[623,1,1,9,10]]],[19,1,1,10,11,[[647,1,1,10,11]]],[22,4,4,11,15,[[713,1,1,11,12],[715,1,1,12,13],[720,2,2,13,15]]],[23,1,1,15,16,[[776,1,1,15,16]]],[26,1,1,16,17,[[858,1,1,16,17]]],[37,1,1,17,18,[[922,1,1,17,18]]]],[60,62,532,9638,9691,9694,10077,13184,13500,16349,16967,18325,18369,18487,18500,19750,22006,23049]]],["+",[7,5,[[0,1,1,0,1,[[20,1,1,0,1]]],[11,5,3,1,4,[[316,1,1,1,2],[318,4,2,2,4]]],[37,1,1,4,5,[[922,1,1,4,5]]]],[532,9638,9691,9694,23049]]],["open",[7,7,[[11,1,1,0,1,[[331,1,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[19,1,1,2,3,[[647,1,1,2,3]]],[22,2,2,3,5,[[715,1,1,3,4],[720,1,1,4,5]]],[23,1,1,5,6,[[776,1,1,5,6]]],[26,1,1,6,7,[[858,1,1,6,7]]]],[10077,13184,16967,18369,18487,19750,22006]]],["opened",[3,3,[[0,2,2,0,2,[[2,2,2,0,2]]],[22,1,1,2,3,[[713,1,1,2,3]]]],[60,62,18325]]],["openeth",[2,2,[[17,1,1,0,1,[[462,1,1,0,1]]],[18,1,1,1,2,[[623,1,1,1,2]]]],[13500,16349]]],["opening",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18500]]]]},{"k":"H6492","v":[["Pekah",[11,11,[[11,9,9,0,9,[[327,7,7,0,7],[328,2,2,7,9]]],[13,1,1,9,10,[[394,1,1,9,10]]],[22,1,1,10,11,[[685,1,1,10,11]]]],[9950,9952,9954,9955,9956,9957,9962,9964,9968,11770,17783]]]]},{"k":"H6493","v":[["*",[2,2,[[1,2,2,0,2,[[53,1,1,0,1],[72,1,1,1,2]]]],[1612,2152]]],["seeing",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1612]]],["wise",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2152]]]]},{"k":"H6494","v":[["Pekahiah",[3,3,[[11,3,3,0,3,[[327,3,3,0,3]]]],[9947,9948,9951]]]]},{"k":"H6495","v":[["prison",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18844]]]]},{"k":"H6496","v":[["*",[13,13,[[0,1,1,0,1,[[40,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[11,1,1,2,3,[[337,1,1,2,3]]],[13,2,2,3,5,[[390,1,1,3,4],[397,1,1,4,5]]],[15,4,4,5,9,[[423,3,3,5,8],[424,1,1,8,9]]],[16,1,1,9,10,[[427,1,1,9,10]]],[23,3,3,10,13,[[764,1,1,10,11],[773,1,1,11,12],[796,1,1,12,13]]]],[1229,6782,10241,11688,11867,12597,12602,12610,12666,12727,19423,19661,20301]]],["+",[2,2,[[15,2,2,0,2,[[423,2,2,0,2]]]],[12597,12602]]],["charge",[1,1,[[23,1,1,0,1,[[796,1,1,0,1]]]],[20301]]],["governor",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19423]]],["officer",[2,2,[[6,1,1,0,1,[[219,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]]],[6782,11688]]],["officers",[3,3,[[0,1,1,0,1,[[40,1,1,0,1]]],[16,1,1,1,2,[[427,1,1,1,2]]],[23,1,1,2,3,[[773,1,1,2,3]]]],[1229,12727,19661]]],["overseer",[2,2,[[15,2,2,0,2,[[423,1,1,0,1],[424,1,1,1,2]]]],[12610,12666]]],["overseers",[1,1,[[13,1,1,0,1,[[397,1,1,0,1]]]],[11867]]],["set",[1,1,[[11,1,1,0,1,[[337,1,1,0,1]]]],[10241]]]]},{"k":"H6497","v":[["knops",[3,2,[[10,3,2,0,2,[[296,1,1,0,1],[297,2,1,1,2]]]],[8914,8958]]]]},{"k":"H6498","v":[["gourds",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9642]]]]},{"k":"H6499","v":[["*",[133,119,[[0,1,1,0,1,[[31,1,1,0,1]]],[1,9,8,1,9,[[73,1,1,1,2],[78,8,7,2,9]]],[2,30,23,9,32,[[93,17,12,9,21],[97,4,3,21,24],[105,8,7,24,31],[112,1,1,31,32]]],[3,52,50,32,82,[[123,14,14,32,46],[124,3,2,46,48],[131,1,1,48,49],[139,6,6,49,55],[144,7,7,55,62],[145,21,20,62,82]]],[6,4,3,82,85,[[216,4,3,82,85]]],[8,2,2,85,87,[[236,2,2,85,87]]],[10,6,4,87,91,[[308,6,4,87,91]]],[12,2,2,91,93,[[352,1,1,91,92],[366,1,1,92,93]]],[13,4,3,93,96,[[379,1,1,93,94],[395,1,1,94,95],[396,2,1,95,96]]],[14,1,1,96,97,[[410,1,1,96,97]]],[17,1,1,97,98,[[477,1,1,97,98]]],[18,4,4,98,102,[[499,1,1,98,99],[527,1,1,99,100],[528,1,1,100,101],[546,1,1,101,102]]],[22,2,2,102,104,[[679,1,1,102,103],[712,1,1,103,104]]],[23,1,1,104,105,[[794,1,1,104,105]]],[25,13,13,105,118,[[840,1,1,105,106],[844,5,5,106,111],[846,4,4,111,115],[847,3,3,115,118]]],[27,1,1,118,119,[[875,1,1,118,119]]]],[943,2182,2337,2339,2346,2347,2348,2350,2372,2798,2799,2800,2802,2803,2806,2807,2809,2810,2811,2815,2816,2919,2931,2934,3204,3207,3212,3215,3216,3219,3228,3420,3865,3871,3877,3883,3889,3895,3901,3907,3913,3919,3925,3931,3937,3938,3947,3951,4177,4417,4418,4420,4430,4445,4446,4588,4589,4591,4596,4597,4604,4605,4610,4611,4616,4617,4621,4622,4625,4626,4628,4629,4631,4632,4634,4635,4637,4638,4640,4641,4644,4645,6679,6680,6682,7236,7237,9364,9366,9367,9374,10817,11185,11462,11812,11851,12236,13930,14216,14677,14710,14966,17665,18310,20193,21466,21591,21593,21594,21595,21597,21648,21652,21653,21654,21661,21662,21666,22284]]],["+",[3,3,[[2,2,2,0,2,[[93,2,2,0,2]]],[6,1,1,2,3,[[216,1,1,2,3]]]],[2800,2811,6679]]],["bullock",[88,79,[[1,8,7,0,7,[[78,8,7,0,7]]],[2,27,21,7,28,[[93,14,10,7,17],[97,4,3,17,20],[105,8,7,20,27],[112,1,1,27,28]]],[3,30,29,28,57,[[123,12,12,28,40],[124,2,1,40,41],[131,1,1,41,42],[139,4,4,42,46],[144,4,4,46,50],[145,7,7,50,57]]],[6,3,3,57,60,[[216,3,3,57,60]]],[8,1,1,60,61,[[236,1,1,60,61]]],[10,5,4,61,65,[[308,5,4,61,65]]],[13,1,1,65,66,[[379,1,1,65,66]]],[18,2,2,66,68,[[527,1,1,66,67],[546,1,1,67,68]]],[25,11,11,68,79,[[844,5,5,68,73],[846,3,3,73,76],[847,3,3,76,79]]]],[2337,2339,2346,2347,2348,2350,2372,2798,2799,2802,2803,2806,2807,2809,2810,2815,2816,2919,2931,2934,3204,3207,3212,3215,3216,3219,3228,3420,3865,3871,3877,3883,3889,3895,3901,3907,3913,3919,3925,3931,3947,4177,4418,4420,4430,4446,4589,4591,4597,4605,4610,4611,4616,4617,4622,4644,4645,6679,6680,6682,7237,9364,9366,9367,9374,11462,14677,14966,21591,21593,21594,21595,21597,21648,21652,21654,21661,21662,21666]]],["bullock's",[1,1,[[2,1,1,0,1,[[93,1,1,0,1]]]],[2799]]],["bullocks",[36,35,[[3,21,21,0,21,[[123,2,2,0,2],[124,1,1,2,3],[139,1,1,3,4],[144,3,3,4,7],[145,14,14,7,21]]],[8,1,1,21,22,[[236,1,1,21,22]]],[10,1,1,22,23,[[308,1,1,22,23]]],[12,2,2,23,25,[[352,1,1,23,24],[366,1,1,24,25]]],[13,3,2,25,27,[[395,1,1,25,26],[396,2,1,26,27]]],[14,1,1,27,28,[[410,1,1,27,28]]],[17,1,1,28,29,[[477,1,1,28,29]]],[18,1,1,29,30,[[528,1,1,29,30]]],[22,2,2,30,32,[[679,1,1,30,31],[712,1,1,31,32]]],[23,1,1,32,33,[[794,1,1,32,33]]],[25,2,2,33,35,[[840,1,1,33,34],[846,1,1,34,35]]]],[3937,3938,3951,4445,4588,4596,4604,4621,4622,4625,4626,4628,4629,4631,4632,4634,4635,4637,4638,4640,4641,7236,9364,10817,11185,11812,11851,12236,13930,14710,17665,18310,20193,21466,21653]]],["bulls",[2,2,[[0,1,1,0,1,[[31,1,1,0,1]]],[18,1,1,1,2,[[499,1,1,1,2]]]],[943,14216]]],["calves",[1,1,[[27,1,1,0,1,[[875,1,1,0,1]]]],[22284]]],["oxen",[2,2,[[1,1,1,0,1,[[73,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]]],[2182,4417]]]]},{"k":"H6500","v":[["fruitful",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22281]]]]},{"k":"H6501","v":[["*",[10,10,[[0,1,1,0,1,[[15,1,1,0,1]]],[17,4,4,1,5,[[441,1,1,1,2],[446,1,1,2,3],[459,1,1,3,4],[474,1,1,4,5]]],[18,1,1,5,6,[[581,1,1,5,6]]],[22,1,1,6,7,[[710,1,1,6,7]]],[23,2,2,7,9,[[746,1,1,7,8],[758,1,1,8,9]]],[27,1,1,9,10,[[869,1,1,9,10]]]],[393,12983,13120,13441,13839,15582,18273,18989,19299,22203]]],["ass",[4,4,[[17,2,2,0,2,[[441,1,1,0,1],[474,1,1,1,2]]],[23,1,1,2,3,[[746,1,1,2,3]]],[27,1,1,3,4,[[869,1,1,3,4]]]],[12983,13839,18989,22203]]],["ass's",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13120]]],["asses",[4,4,[[17,1,1,0,1,[[459,1,1,0,1]]],[18,1,1,1,2,[[581,1,1,1,2]]],[22,1,1,2,3,[[710,1,1,2,3]]],[23,1,1,3,4,[[758,1,1,3,4]]]],[13441,15582,18273,19299]]],["wild",[1,1,[[0,1,1,0,1,[[15,1,1,0,1]]]],[393]]]]},{"k":"H6502","v":[["Piram",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6067]]]]},{"k":"H6503","v":[["*",[3,2,[[11,1,1,0,1,[[335,1,1,0,1]]],[12,2,1,1,2,[[363,2,1,1,2]]]],[10176,11095]]],["Parbar",[2,1,[[12,2,1,0,1,[[363,2,1,0,1]]]],[11095]]],["suburbs",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10176]]]]},{"k":"H6504","v":[["*",[26,26,[[0,8,8,0,8,[[1,1,1,0,1],[9,2,2,1,3],[12,3,3,3,6],[24,1,1,6,7],[29,1,1,7,8]]],[4,1,1,8,9,[[184,1,1,8,9]]],[6,1,1,9,10,[[214,1,1,9,10]]],[7,1,1,10,11,[[232,1,1,10,11]]],[9,1,1,11,12,[[267,1,1,11,12]]],[11,1,1,12,13,[[314,1,1,12,13]]],[15,1,1,13,14,[[416,1,1,13,14]]],[16,1,1,14,15,[[428,1,1,14,15]]],[17,2,2,15,17,[[439,1,1,15,16],[476,1,1,16,17]]],[18,2,2,17,19,[[499,1,1,17,18],[569,1,1,18,19]]],[19,5,5,19,24,[[643,1,1,19,20],[644,1,1,20,21],[645,2,2,21,23],[646,1,1,23,24]]],[25,1,1,24,25,[[802,1,1,24,25]]],[27,1,1,25,26,[[865,1,1,25,26]]]],[40,239,266,327,329,332,681,870,5766,6610,7144,8045,9562,12378,12755,12941,13905,14218,15420,16868,16882,16902,16919,16929,20475,22147]]],["abroad",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12941]]],["dispersed",[1,1,[[16,1,1,0,1,[[428,1,1,0,1]]]],[12755]]],["divided",[3,3,[[0,2,2,0,2,[[9,2,2,0,2]]],[9,1,1,2,3,[[267,1,1,2,3]]]],[239,266,8045]]],["himself",[2,2,[[6,1,1,0,1,[[214,1,1,0,1]]],[19,1,1,1,2,[[645,1,1,1,2]]]],[6610,16902]]],["joint",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14218]]],["part",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7144]]],["parted",[2,2,[[0,1,1,0,1,[[1,1,1,0,1]]],[11,1,1,1,2,[[314,1,1,1,2]]]],[40,9562]]],["parteth",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16919]]],["scattered",[1,1,[[18,1,1,0,1,[[569,1,1,0,1]]]],[15420]]],["separate",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[870]]],["separated",[6,6,[[0,2,2,0,2,[[12,1,1,0,1],[24,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[15,1,1,3,4,[[416,1,1,3,4]]],[19,1,1,4,5,[[646,1,1,4,5]]],[27,1,1,5,6,[[865,1,1,5,6]]]],[332,681,5766,12378,16929,22147]]],["separateth",[2,2,[[19,2,2,0,2,[[643,1,1,0,1],[644,1,1,1,2]]]],[16868,16882]]],["stretched",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20475]]],["sundered",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13905]]],["themselves",[1,1,[[0,1,1,0,1,[[12,1,1,0,1]]]],[329]]],["thyself",[1,1,[[0,1,1,0,1,[[12,1,1,0,1]]]],[327]]]]},{"k":"H6505","v":[["*",[15,13,[[9,4,2,0,2,[[279,1,1,0,1],[284,3,1,1,2]]],[10,2,2,2,4,[[300,1,1,2,3],[308,1,1,3,4]]],[11,1,1,4,5,[[317,1,1,4,5]]],[12,1,1,5,6,[[349,1,1,5,6]]],[13,1,1,6,7,[[375,1,1,6,7]]],[14,1,1,7,8,[[404,1,1,7,8]]],[15,1,1,8,9,[[419,1,1,8,9]]],[18,1,1,9,10,[[509,1,1,9,10]]],[22,1,1,10,11,[[744,1,1,10,11]]],[25,1,1,11,12,[[828,1,1,11,12]]],[37,1,1,12,13,[[924,1,1,12,13]]]],[8346,8487,9104,9346,9664,10760,11388,12093,12488,14364,18942,21135,23083]]],["+",[2,2,[[10,1,1,0,1,[[308,1,1,0,1]]],[11,1,1,1,2,[[317,1,1,1,2]]]],[9346,9664]]],["mule",[6,4,[[9,4,2,0,2,[[279,1,1,0,1],[284,3,1,1,2]]],[18,1,1,2,3,[[509,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[8346,8487,14364,23083]]],["mules",[7,7,[[10,1,1,0,1,[[300,1,1,0,1]]],[12,1,1,1,2,[[349,1,1,1,2]]],[13,1,1,2,3,[[375,1,1,2,3]]],[14,1,1,3,4,[[404,1,1,3,4]]],[15,1,1,4,5,[[419,1,1,4,5]]],[22,1,1,5,6,[[744,1,1,5,6]]],[25,1,1,6,7,[[828,1,1,6,7]]]],[9104,10760,11388,12093,12488,18942,21135]]]]},{"k":"H6506","v":[["mule",[3,3,[[10,3,3,0,3,[[291,3,3,0,3]]]],[8750,8755,8761]]]]},{"k":"H6507","v":[["seed",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22308]]]]},{"k":"H6508","v":[["*",[3,3,[[15,1,1,0,1,[[414,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]],[21,1,1,2,3,[[674,1,1,2,3]]]],[12315,17338,17595]]],["forest",[1,1,[[15,1,1,0,1,[[414,1,1,0,1]]]],[12315]]],["orchard",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17595]]],["orchards",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17338]]]]},{"k":"H6509","v":[["*",[29,28,[[0,15,14,0,14,[[0,2,2,0,2],[7,1,1,2,3],[8,2,2,3,5],[16,2,2,5,7],[25,1,1,7,8],[27,1,1,8,9],[34,1,1,9,10],[40,1,1,10,11],[46,1,1,11,12],[47,1,1,12,13],[48,2,1,13,14]]],[1,2,2,14,16,[[50,1,1,14,15],[72,1,1,15,16]]],[2,1,1,16,17,[[115,1,1,16,17]]],[4,1,1,17,18,[[181,1,1,17,18]]],[18,2,2,18,20,[[582,1,1,18,19],[605,1,1,19,20]]],[22,4,4,20,24,[[689,1,1,20,21],[695,1,1,21,22],[710,1,1,22,23],[723,1,1,23,24]]],[23,2,2,24,26,[[747,1,1,24,25],[767,1,1,25,26]]],[25,2,2,26,28,[[820,1,1,26,27],[837,1,1,27,28]]]],[21,27,200,206,212,403,417,714,776,1022,1247,1447,1455,1495,1539,2174,3533,5697,15630,16129,17885,17989,18271,18569,19018,19487,20891,21370]]],["+",[3,3,[[0,1,1,0,1,[[16,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[18,1,1,2,3,[[582,1,1,2,3]]]],[417,3533,15630]]],["beareth",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5697]]],["forth",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18569]]],["fruit",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21370]]],["fruitful",[19,18,[[0,13,12,0,12,[[0,2,2,0,2],[7,1,1,2,3],[8,2,2,3,5],[16,1,1,5,6],[25,1,1,6,7],[27,1,1,7,8],[34,1,1,8,9],[40,1,1,9,10],[47,1,1,10,11],[48,2,1,11,12]]],[1,1,1,12,13,[[50,1,1,12,13]]],[18,1,1,13,14,[[605,1,1,13,14]]],[22,2,2,14,16,[[695,1,1,14,15],[710,1,1,15,16]]],[23,1,1,16,17,[[767,1,1,16,17]]],[25,1,1,17,18,[[820,1,1,17,18]]]],[21,27,200,206,212,403,714,776,1022,1247,1455,1495,1539,16129,17989,18271,19487,20891]]],["grew",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1447]]],["grow",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17885]]],["increased",[2,2,[[1,1,1,0,1,[[72,1,1,0,1]]],[23,1,1,1,2,[[747,1,1,1,2]]]],[2174,19018]]]]},{"k":"H6510","v":[["*",[26,22,[[0,12,9,0,9,[[31,1,1,0,1],[40,11,8,1,9]]],[3,5,5,9,14,[[135,5,5,9,14]]],[8,5,4,14,18,[[241,5,4,14,18]]],[17,1,1,18,19,[[456,1,1,18,19]]],[22,1,1,19,20,[[689,1,1,19,20]]],[27,1,1,20,21,[[865,1,1,20,21]]],[29,1,1,21,22,[[882,1,1,21,22]]]],[943,1197,1198,1199,1213,1214,1215,1221,1222,4291,4294,4295,4298,4299,7338,7341,7343,7345,13365,17891,22149,22411]]],["cow",[2,2,[[17,1,1,0,1,[[456,1,1,0,1]]],[22,1,1,1,2,[[689,1,1,1,2]]]],[13365,17891]]],["heifer",[6,6,[[3,5,5,0,5,[[135,5,5,0,5]]],[27,1,1,5,6,[[865,1,1,5,6]]]],[4291,4294,4295,4298,4299,22149]]],["kine",[18,14,[[0,12,9,0,9,[[31,1,1,0,1],[40,11,8,1,9]]],[8,5,4,9,13,[[241,5,4,9,13]]],[29,1,1,13,14,[[882,1,1,13,14]]]],[943,1197,1198,1199,1213,1214,1215,1221,1222,7338,7341,7343,7345,22411]]]]},{"k":"H6511","v":[["Parah",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6316]]]]},{"k":"H6512","v":[["+",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17705]]]]},{"k":"H6513","v":[["Phurah",[2,2,[[6,2,2,0,2,[[217,2,2,0,2]]]],[6704,6705]]]]},{"k":"H6514","v":[["*",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12082,12477]]],["Perida",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12477]]],["Peruda",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12082]]]]},{"k":"H6515","v":[["Paruah",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8861]]]]},{"k":"H6516","v":[["Parvaim",[1,1,[[13,1,1,0,1,[[369,1,1,0,1]]]],[11235]]]]},{"k":"H6517","v":[["*",[3,3,[[3,1,1,0,1,[[127,1,1,0,1]]],[6,1,1,1,2,[[216,1,1,1,2]]],[8,1,1,2,3,[[237,1,1,2,3]]]],[4032,6673,7254]]],["pans",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4032]]],["pot",[2,2,[[6,1,1,0,1,[[216,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]]],[6673,7254]]]]},{"k":"H6518","v":[["villages",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22782]]]]},{"k":"H6519","v":[["*",[3,3,[[16,1,1,0,1,[[434,1,1,0,1]]],[25,1,1,1,2,[[839,1,1,1,2]]],[37,1,1,2,3,[[912,1,1,2,3]]]],[12853,21436,22903]]],["unwalled",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12853]]],["villages",[1,1,[[25,1,1,0,1,[[839,1,1,0,1]]]],[21436]]],["walls",[1,1,[[37,1,1,0,1,[[912,1,1,0,1]]]],[22903]]]]},{"k":"H6520","v":[["villages",[2,2,[[6,2,2,0,2,[[215,2,2,0,2]]]],[6630,6634]]]]},{"k":"H6521","v":[["*",[3,3,[[4,1,1,0,1,[[155,1,1,0,1]]],[8,1,1,1,2,[[241,1,1,1,2]]],[16,1,1,2,3,[[434,1,1,2,3]]]],[4980,7349,12853]]],["country",[1,1,[[8,1,1,0,1,[[241,1,1,0,1]]]],[7349]]],["unwalled",[1,1,[[4,1,1,0,1,[[155,1,1,0,1]]]],[4980]]],["villages",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12853]]]]},{"k":"H6522","v":[["*",[23,23,[[0,3,3,0,3,[[12,1,1,0,1],[14,1,1,1,2],[33,1,1,2,3]]],[1,5,5,3,8,[[52,2,2,3,5],[72,1,1,5,6],[82,1,1,6,7],[83,1,1,7,8]]],[4,2,2,8,10,[[159,1,1,8,9],[172,1,1,9,10]]],[5,6,6,10,16,[[189,1,1,10,11],[195,1,1,11,12],[197,1,1,12,13],[198,1,1,13,14],[203,1,1,14,15],[210,1,1,15,16]]],[6,3,3,16,19,[[211,2,2,16,18],[213,1,1,18,19]]],[10,1,1,19,20,[[299,1,1,19,20]]],[13,1,1,20,21,[[374,1,1,20,21]]],[14,1,1,21,22,[[411,1,1,21,22]]],[15,1,1,22,23,[[421,1,1,22,23]]]],[325,380,1010,1587,1596,2167,2475,2507,5112,5444,5903,6038,6110,6138,6290,6487,6513,6514,6573,9071,11353,12238,12519]]],["Perizzite",[5,5,[[0,1,1,0,1,[[12,1,1,0,1]]],[1,2,2,1,3,[[82,1,1,1,2],[83,1,1,2,3]]],[5,2,2,3,5,[[195,1,1,3,4],[197,1,1,4,5]]]],[325,2475,2507,6038,6110]]],["Perizzites",[18,18,[[0,2,2,0,2,[[14,1,1,0,1],[33,1,1,1,2]]],[1,3,3,2,5,[[52,2,2,2,4],[72,1,1,4,5]]],[4,2,2,5,7,[[159,1,1,5,6],[172,1,1,6,7]]],[5,4,4,7,11,[[189,1,1,7,8],[198,1,1,8,9],[203,1,1,9,10],[210,1,1,10,11]]],[6,3,3,11,14,[[211,2,2,11,13],[213,1,1,13,14]]],[10,1,1,14,15,[[299,1,1,14,15]]],[13,1,1,15,16,[[374,1,1,15,16]]],[14,1,1,16,17,[[411,1,1,16,17]]],[15,1,1,17,18,[[421,1,1,17,18]]]],[380,1010,1587,1596,2167,5112,5444,5903,6138,6290,6487,6513,6514,6573,9071,11353,12238,12519]]]]},{"k":"H6523","v":[["*",[20,14,[[26,20,14,0,14,[[851,14,8,0,8],[853,2,2,8,10],[854,2,2,10,12],[856,2,2,12,14]]]],[21791,21792,21793,21798,21799,21800,21801,21803,21852,21860,21878,21897,21940,21952]]],["+",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21940]]],["iron",[19,13,[[26,19,13,0,13,[[851,14,8,0,8],[853,2,2,8,10],[854,2,2,10,12],[856,1,1,12,13]]]],[21791,21792,21793,21798,21799,21800,21801,21803,21852,21860,21878,21897,21952]]]]},{"k":"H6524","v":[["*",[37,33,[[0,1,1,0,1,[[39,1,1,0,1]]],[1,2,2,1,3,[[58,2,2,1,3]]],[2,8,7,3,10,[[102,7,6,3,9],[103,1,1,9,10]]],[3,2,2,10,12,[[133,2,2,10,12]]],[17,1,1,12,13,[[449,1,1,12,13]]],[18,4,4,13,17,[[549,1,1,13,14],[569,3,3,14,17]]],[19,2,2,17,19,[[638,1,1,17,18],[641,1,1,18,19]]],[21,3,2,19,21,[[676,1,1,19,20],[677,2,1,20,21]]],[22,6,5,21,26,[[695,1,1,21,22],[705,1,1,22,23],[713,3,2,23,25],[744,1,1,25,26]]],[25,4,3,26,29,[[808,1,1,26,27],[814,2,1,27,28],[818,1,1,28,29]]],[27,3,3,29,32,[[871,1,1,29,30],[875,2,2,30,32]]],[34,1,1,32,33,[[905,1,1,32,33]]]],[1182,1751,1752,3064,3072,3077,3091,3094,3109,3154,4249,4252,13190,15007,15418,15423,15424,16716,16783,17625,17639,17994,18157,18321,18322,18936,20587,20728,20849,22229,22287,22289,22785]]],["+",[4,2,[[2,2,1,0,1,[[102,2,1,0,1]]],[22,2,1,1,2,[[713,2,1,1,2]]]],[3064,18322]]],["appear",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17639]]],["blossom",[3,3,[[3,1,1,0,1,[[133,1,1,0,1]]],[22,1,1,1,2,[[713,1,1,1,2]]],[34,1,1,2,3,[[905,1,1,2,3]]]],[4249,18321,22785]]],["bud",[2,2,[[17,1,1,0,1,[[449,1,1,0,1]]],[22,1,1,1,2,[[705,1,1,1,2]]]],[13190,18157]]],["budded",[3,3,[[0,1,1,0,1,[[39,1,1,0,1]]],[3,1,1,1,2,[[133,1,1,1,2]]],[25,1,1,2,3,[[808,1,1,2,3]]]],[1182,4252,20587]]],["flourish",[9,9,[[18,3,3,0,3,[[549,1,1,0,1],[569,2,2,1,3]]],[19,2,2,3,5,[[638,1,1,3,4],[641,1,1,4,5]]],[21,1,1,5,6,[[677,1,1,5,6]]],[22,2,2,6,8,[[695,1,1,6,7],[744,1,1,7,8]]],[25,1,1,8,9,[[818,1,1,8,9]]]],[15007,15423,15424,16716,16783,17639,17994,18936,20849]]],["flourished",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17625]]],["fly",[2,1,[[25,2,1,0,1,[[814,2,1,0,1]]]],[20728]]],["forth",[2,2,[[1,2,2,0,2,[[58,2,2,0,2]]]],[1751,1752]]],["grow",[2,2,[[27,2,2,0,2,[[875,2,2,0,2]]]],[22287,22289]]],["groweth",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3091]]],["out",[3,3,[[2,3,3,0,3,[[102,2,2,0,2],[103,1,1,2,3]]]],[3072,3077,3154]]],["spreading",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3109]]],["spring",[1,1,[[18,1,1,0,1,[[569,1,1,0,1]]]],[15418]]],["up",[2,2,[[2,1,1,0,1,[[102,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]]],[3094,22229]]]]},{"k":"H6525","v":[["*",[17,15,[[1,8,6,0,6,[[74,4,3,0,3],[86,4,3,3,6]]],[3,2,2,6,8,[[124,1,1,6,7],[133,1,1,7,8]]],[10,2,2,8,10,[[297,2,2,8,10]]],[13,2,2,10,12,[[370,2,2,10,12]]],[22,2,2,12,14,[[683,1,1,12,13],[696,1,1,13,14]]],[33,1,1,14,15,[[900,1,1,14,15]]]],[2226,2228,2229,2621,2623,2624,3943,4252,8960,8983,11251,11267,17763,18002,22688]]],["blossom",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17763]]],["bud",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18002]]],["buds",[1,1,[[3,1,1,0,1,[[133,1,1,0,1]]]],[4252]]],["flower",[5,3,[[1,4,2,0,2,[[74,2,1,0,1],[86,2,1,1,2]]],[33,1,1,2,3,[[900,1,1,2,3]]]],[2228,2623,22688]]],["flowers",[9,9,[[1,4,4,0,4,[[74,2,2,0,2],[86,2,2,2,4]]],[3,1,1,4,5,[[124,1,1,4,5]]],[10,2,2,5,7,[[297,2,2,5,7]]],[13,2,2,7,9,[[370,2,2,7,9]]]],[2226,2229,2621,2624,3943,8960,8983,11251,11267]]]]},{"k":"H6526","v":[["youth",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13569]]]]},{"k":"H6527","v":[["chant",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22455]]]]},{"k":"H6528","v":[["grape",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3291]]]]},{"k":"H6529","v":[["*",[119,107,[[0,9,8,0,8,[[0,4,3,0,3],[2,3,3,3,6],[3,1,1,6,7],[29,1,1,7,8]]],[1,1,1,8,9,[[59,1,1,8,9]]],[2,8,8,9,17,[[108,3,3,9,12],[112,1,1,12,13],[114,1,1,13,14],[115,2,2,14,16],[116,1,1,16,17]]],[3,3,3,17,20,[[129,3,3,17,20]]],[4,21,12,20,32,[[153,1,1,20,21],[159,2,1,21,22],[178,2,2,22,24],[180,13,7,24,31],[182,3,1,31,32]]],[11,2,2,32,34,[[331,2,2,32,34]]],[15,3,3,34,37,[[421,1,1,34,35],[422,2,2,35,37]]],[18,11,11,37,48,[[478,1,1,37,38],[498,1,1,38,39],[535,1,1,39,40],[549,1,1,40,41],[581,1,1,41,42],[582,1,1,42,43],[584,2,2,43,45],[604,1,1,45,46],[609,1,1,46,47],[625,1,1,47,48]]],[19,10,10,48,58,[[628,1,1,48,49],[635,1,1,49,50],[638,1,1,50,51],[639,1,1,51,52],[640,1,1,52,53],[645,2,2,53,55],[654,1,1,55,56],[658,2,2,56,58]]],[20,1,1,58,59,[[660,1,1,58,59]]],[21,5,5,59,64,[[672,1,1,59,60],[674,2,2,60,62],[678,2,2,62,64]]],[22,9,9,64,73,[[681,1,1,64,65],[682,1,1,65,66],[688,1,1,66,67],[691,1,1,67,68],[692,1,1,68,69],[705,1,1,69,70],[715,2,2,70,72],[743,1,1,72,73]]],[23,11,11,73,84,[[746,1,1,73,74],[750,1,1,74,75],[751,1,1,75,76],[755,1,1,76,77],[756,1,1,77,78],[761,2,2,78,80],[765,1,1,80,81],[773,2,2,81,83],[776,1,1,83,84]]],[24,1,1,84,85,[[798,1,1,84,85]]],[25,11,10,85,95,[[818,3,3,85,88],[820,2,2,88,90],[826,1,1,90,91],[835,1,1,91,92],[837,2,2,92,94],[848,2,1,94,95]]],[27,5,4,95,99,[[870,1,1,95,96],[871,3,2,96,98],[875,1,1,98,99]]],[28,1,1,99,100,[[877,1,1,99,100]]],[29,3,3,100,103,[[880,1,1,100,101],[884,1,1,101,102],[887,1,1,102,103]]],[32,2,2,103,105,[[898,1,1,103,104],[899,1,1,104,105]]],[37,1,1,105,106,[[918,1,1,105,106]]],[38,1,1,106,107,[[927,1,1,106,107]]]],[10,11,28,57,58,61,82,832,1792,3304,3305,3306,3442,3488,3528,3544,3600,4095,4101,4102,4917,5124,5568,5576,5615,5622,5629,5644,5653,5662,5664,5717,10090,10091,12547,12584,12586,13942,14201,14790,15016,15584,15641,15733,15736,16124,16162,16380,16431,16621,16718,16733,16749,16921,16922,17187,17300,17315,17338,17557,17595,17598,17651,17652,17717,17735,17862,17924,17957,18160,18382,18383,18918,18972,19108,19139,19242,19251,19365,19367,19454,19640,19663,19750,20352,20833,20834,20848,20893,20895,21087,21340,21367,21389,21691,22224,22226,22238,22290,22333,22388,22462,22509,22655,22677,22988,23131]]],["+",[17,17,[[0,4,4,0,4,[[2,3,3,0,3],[3,1,1,3,4]]],[2,1,1,4,5,[[116,1,1,4,5]]],[3,1,1,5,6,[[129,1,1,5,6]]],[4,2,2,6,8,[[153,1,1,6,7],[178,1,1,7,8]]],[18,2,2,8,10,[[581,1,1,8,9],[609,1,1,9,10]]],[19,6,6,10,16,[[628,1,1,10,11],[639,1,1,11,12],[640,1,1,12,13],[645,1,1,13,14],[658,2,2,14,16]]],[32,1,1,16,17,[[899,1,1,16,17]]]],[57,58,61,82,3600,4095,4917,5576,15584,16162,16431,16733,16749,16921,17300,17315,22677]]],["boughs",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3442]]],["fruit",[91,79,[[0,5,4,0,4,[[0,4,3,0,3],[29,1,1,3,4]]],[1,1,1,4,5,[[59,1,1,4,5]]],[2,5,5,5,10,[[108,3,3,5,8],[114,1,1,8,9],[115,1,1,9,10]]],[3,2,2,10,12,[[129,2,2,10,12]]],[4,19,10,12,22,[[159,2,1,12,13],[178,1,1,13,14],[180,13,7,14,21],[182,3,1,21,22]]],[11,1,1,22,23,[[331,1,1,22,23]]],[15,3,3,23,26,[[421,1,1,23,24],[422,2,2,24,26]]],[18,5,5,26,31,[[478,1,1,26,27],[498,1,1,27,28],[549,1,1,28,29],[582,1,1,29,30],[604,1,1,30,31]]],[19,4,4,31,35,[[635,1,1,31,32],[638,1,1,32,33],[645,1,1,33,34],[654,1,1,34,35]]],[21,3,3,35,38,[[672,1,1,35,36],[678,2,2,36,38]]],[22,9,9,38,47,[[681,1,1,38,39],[682,1,1,39,40],[688,1,1,40,41],[691,1,1,41,42],[692,1,1,42,43],[705,1,1,43,44],[715,2,2,44,46],[743,1,1,46,47]]],[23,11,11,47,58,[[746,1,1,47,48],[750,1,1,48,49],[751,1,1,49,50],[755,1,1,50,51],[756,1,1,51,52],[761,2,2,52,54],[765,1,1,54,55],[773,2,2,55,57],[776,1,1,57,58]]],[24,1,1,58,59,[[798,1,1,58,59]]],[25,11,10,59,69,[[818,3,3,59,62],[820,2,2,62,64],[826,1,1,64,65],[835,1,1,65,66],[837,2,2,66,68],[848,2,1,68,69]]],[27,5,4,69,73,[[870,1,1,69,70],[871,3,2,70,72],[875,1,1,72,73]]],[28,1,1,73,74,[[877,1,1,73,74]]],[29,3,3,74,77,[[880,1,1,74,75],[884,1,1,75,76],[887,1,1,76,77]]],[32,1,1,77,78,[[898,1,1,77,78]]],[37,1,1,78,79,[[918,1,1,78,79]]]],[10,11,28,832,1792,3304,3305,3306,3488,3528,4101,4102,5124,5568,5615,5622,5629,5644,5653,5662,5664,5717,10091,12547,12584,12586,13942,14201,15016,15641,16124,16621,16718,16922,17187,17557,17651,17652,17717,17735,17862,17924,17957,18160,18382,18383,18918,18972,19108,19139,19242,19251,19365,19367,19454,19640,19663,19750,20352,20833,20834,20848,20893,20895,21087,21340,21367,21389,21691,22224,22226,22238,22290,22333,22388,22462,22509,22655,22988]]],["fruitful",[2,2,[[18,2,2,0,2,[[584,1,1,0,1],[625,1,1,1,2]]]],[15733,16380]]],["fruits",[7,7,[[2,1,1,0,1,[[115,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[18,1,1,2,3,[[584,1,1,2,3]]],[20,1,1,3,4,[[660,1,1,3,4]]],[21,2,2,4,6,[[674,2,2,4,6]]],[38,1,1,6,7,[[927,1,1,6,7]]]],[3544,10090,15736,17338,17595,17598,23131]]],["reward",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14790]]]]},{"k":"H6530","v":[["*",[6,6,[[18,1,1,0,1,[[494,1,1,0,1]]],[22,1,1,1,2,[[713,1,1,1,2]]],[23,1,1,2,3,[[751,1,1,2,3]]],[25,2,2,3,5,[[808,1,1,3,4],[819,1,1,4,5]]],[26,1,1,5,6,[[860,1,1,5,6]]]],[14107,18329,19130,20599,20859,22050]]],["+",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22050]]],["destroyer",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14107]]],["ravenous",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18329]]],["robber",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20859]]],["robbers",[2,2,[[23,1,1,0,1,[[751,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]]],[19130,20599]]]]},{"k":"H6531","v":[["*",[6,6,[[1,2,2,0,2,[[50,2,2,0,2]]],[2,3,3,2,5,[[114,3,3,2,5]]],[25,1,1,5,6,[[835,1,1,5,6]]]],[1545,1546,3512,3515,3522,21317]]],["+",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3522]]],["cruelty",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21317]]],["rigour",[4,4,[[1,2,2,0,2,[[50,2,2,0,2]]],[2,2,2,2,4,[[114,2,2,2,4]]]],[1545,1546,3512,3515]]]]},{"k":"H6532","v":[["*",[25,23,[[1,15,13,0,13,[[75,5,3,0,3],[76,1,1,3,4],[79,1,1,4,5],[84,1,1,5,6],[85,1,1,6,7],[87,1,1,7,8],[88,1,1,8,9],[89,4,4,9,13]]],[2,7,7,13,20,[[93,2,2,13,15],[105,3,3,15,18],[110,1,1,18,19],[113,1,1,19,20]]],[3,2,2,20,22,[[120,1,1,20,21],[134,1,1,21,22]]],[13,1,1,22,23,[[369,1,1,22,23]]]],[2266,2268,2270,2293,2388,2543,2601,2660,2698,2710,2728,2729,2733,2801,2812,3203,3213,3216,3368,3449,3748,4264,11243]]],["+",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2268]]],["vail",[24,23,[[1,14,13,0,13,[[75,4,3,0,3],[76,1,1,3,4],[79,1,1,4,5],[84,1,1,5,6],[85,1,1,6,7],[87,1,1,7,8],[88,1,1,8,9],[89,4,4,9,13]]],[2,7,7,13,20,[[93,2,2,13,15],[105,3,3,15,18],[110,1,1,18,19],[113,1,1,19,20]]],[3,2,2,20,22,[[120,1,1,20,21],[134,1,1,21,22]]],[13,1,1,22,23,[[369,1,1,22,23]]]],[2266,2268,2270,2293,2388,2543,2601,2660,2698,2710,2728,2729,2733,2801,2812,3203,3213,3216,3368,3449,3748,4264,11243]]]]},{"k":"H6533","v":[["*",[3,3,[[2,3,3,0,3,[[99,1,1,0,1],[102,1,1,1,2],[110,1,1,2,3]]]],[2983,3097,3355]]],["rend",[2,2,[[2,2,2,0,2,[[99,1,1,0,1],[110,1,1,1,2]]]],[2983,3355]]],["rent",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3097]]]]},{"k":"H6534","v":[["Parmashta",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12843]]]]},{"k":"H6535","v":[["Parnach",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4841]]]]},{"k":"H6536","v":[["*",[14,12,[[2,7,6,0,6,[[100,7,6,0,6]]],[4,4,3,6,9,[[166,4,3,6,9]]],[18,1,1,9,10,[[546,1,1,9,10]]],[22,1,1,10,11,[[736,1,1,10,11]]],[23,1,1,11,12,[[760,1,1,11,12]]]],[3000,3001,3002,3003,3004,3023,5296,5297,5298,14966,18793,19343]]],["+",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3001,5297]]],["deal",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18793]]],["divide",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3004,5297]]],["divideth",[5,5,[[2,4,4,0,4,[[100,4,4,0,4]]],[4,1,1,4,5,[[166,1,1,4,5]]]],[3001,3002,3003,3023,5298]]],["hoofs",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14966]]],["parteth",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3000,5296]]],["tear",[1,1,[[23,1,1,0,1,[[760,1,1,0,1]]]],[19343]]]]},{"k":"H6537","v":[["*",[3,2,[[26,3,2,0,2,[[854,3,2,0,2]]]],[21899,21902]]],["PERES",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21902]]],["UPHARSIN",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21899]]],["divided",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21902]]]]},{"k":"H6538","v":[["ossifrage",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3010,5302]]]]},{"k":"H6539","v":[["*",[28,24,[[13,4,3,0,3,[[402,4,3,0,3]]],[14,11,9,3,12,[[403,4,3,3,6],[405,1,1,6,7],[406,4,3,7,10],[409,1,1,10,11],[411,1,1,11,12]]],[16,5,5,12,17,[[426,4,4,12,16],[435,1,1,16,17]]],[25,2,2,17,19,[[828,1,1,17,18],[839,1,1,18,19]]],[26,6,5,19,24,[[857,1,1,19,20],[859,4,3,20,23],[860,1,1,23,24]]]],[12013,12015,12016,12017,12018,12024,12104,12113,12115,12117,12174,12246,12705,12716,12720,12721,12868,21131,21430,21981,22016,22028,22035,22038]]],["Persia",[27,23,[[13,4,3,0,3,[[402,4,3,0,3]]],[14,11,9,3,12,[[403,4,3,3,6],[405,1,1,6,7],[406,4,3,7,10],[409,1,1,10,11],[411,1,1,11,12]]],[16,4,4,12,16,[[426,3,3,12,15],[435,1,1,15,16]]],[25,2,2,16,18,[[828,1,1,16,17],[839,1,1,17,18]]],[26,6,5,18,23,[[857,1,1,18,19],[859,4,3,19,22],[860,1,1,22,23]]]],[12013,12015,12016,12017,12018,12024,12104,12113,12115,12117,12174,12246,12705,12716,12720,12868,21131,21430,21981,22016,22028,22035,22038]]],["Persians",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12721]]]]},{"k":"H6540","v":[["*",[6,6,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]],[26,4,4,2,6,[[854,1,1,2,3],[855,3,3,3,6]]]],[12134,12165,21902,21913,21917,21920]]],["Persia",[2,2,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]]],[12134,12165]]],["Persians",[4,4,[[26,4,4,0,4,[[854,1,1,0,1],[855,3,3,1,4]]]],[21902,21913,21917,21920]]]]},{"k":"H6541","v":[["*",[21,16,[[1,1,1,0,1,[[59,1,1,0,1]]],[2,9,6,1,7,[[100,9,6,1,7]]],[4,5,3,7,10,[[166,5,3,7,10]]],[22,1,1,10,11,[[683,1,1,10,11]]],[23,1,1,11,12,[[791,1,1,11,12]]],[25,2,2,12,14,[[827,1,1,12,13],[833,1,1,13,14]]],[32,1,1,14,15,[[896,1,1,14,15]]],[37,1,1,15,16,[[921,1,1,15,16]]]],[1803,3000,3001,3002,3003,3004,3023,5296,5297,5298,17767,20076,21111,21261,22633,23044]]],["+",[3,3,[[2,2,2,0,2,[[100,2,2,0,2]]],[37,1,1,2,3,[[921,1,1,2,3]]]],[3000,3004,23044]]],["claws",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5296]]],["hoof",[12,10,[[1,1,1,0,1,[[59,1,1,0,1]]],[2,7,6,1,7,[[100,7,6,1,7]]],[4,4,3,7,10,[[166,4,3,7,10]]]],[1803,3000,3001,3002,3003,3004,3023,5296,5297,5298]]],["hoofs",[5,5,[[22,1,1,0,1,[[683,1,1,0,1]]],[23,1,1,1,2,[[791,1,1,1,2]]],[25,2,2,2,4,[[827,1,1,2,3],[833,1,1,3,4]]],[32,1,1,4,5,[[896,1,1,4,5]]]],[17767,20076,21111,21261,22633]]]]},{"k":"H6542","v":[["Persian",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12646]]]]},{"k":"H6543","v":[["Persian",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21933]]]]},{"k":"H6544","v":[["*",[16,15,[[1,3,2,0,2,[[54,1,1,0,1],[81,2,1,1,2]]],[2,3,3,2,5,[[99,1,1,2,3],[102,1,1,3,4],[110,1,1,4,5]]],[3,1,1,5,6,[[121,1,1,5,6]]],[6,1,1,6,7,[[215,1,1,6,7]]],[13,1,1,7,8,[[394,1,1,7,8]]],[19,6,6,8,14,[[628,1,1,8,9],[631,1,1,9,10],[635,1,1,10,11],[640,1,1,11,12],[642,1,1,12,13],[656,1,1,13,14]]],[25,1,1,14,15,[[825,1,1,14,15]]]],[1636,2463,2983,3097,3355,3810,6625,11783,16425,16505,16635,16765,16839,17242,21070]]],["+",[5,5,[[1,1,1,0,1,[[54,1,1,0,1]]],[2,1,1,1,2,[[110,1,1,1,2]]],[3,1,1,2,3,[[121,1,1,2,3]]],[6,1,1,3,4,[[215,1,1,3,4]]],[13,1,1,4,5,[[394,1,1,4,5]]]],[1636,3355,3810,6625,11783]]],["Avoid",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16505]]],["Uncover",[1,1,[[2,1,1,0,1,[[99,1,1,0,1]]]],[2983]]],["back",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21070]]],["bare",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3097]]],["naked",[2,1,[[1,2,1,0,1,[[81,2,1,0,1]]]],[2463]]],["nought",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16425]]],["perish",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17242]]],["refuse",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16635]]],["refuseth",[2,2,[[19,2,2,0,2,[[640,1,1,0,1],[642,1,1,1,2]]]],[16765,16839]]]]},{"k":"H6545","v":[["locks",[2,2,[[3,1,1,0,1,[[122,1,1,0,1]]],[25,1,1,1,2,[[845,1,1,1,2]]]],[3828,21619]]]]},{"k":"H6546","v":[["*",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]]],[5800,6625]]],["+",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6625]]],["revenges",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5800]]]]},{"k":"H6547","v":[["*",[268,230,[[0,94,72,0,72,[[11,6,4,0,4],[36,1,1,4,5],[38,1,1,5,6],[39,12,9,6,15],[40,34,25,15,40],[41,2,2,40,42],[43,1,1,42,43],[44,6,5,43,48],[45,3,3,48,51],[46,24,18,51,69],[49,4,3,69,72]]],[1,115,106,72,178,[[50,3,3,72,75],[51,7,6,75,81],[52,2,2,81,83],[53,2,2,83,85],[54,10,10,85,95],[55,7,7,95,102],[56,16,14,102,116],[57,17,14,116,130],[58,12,11,130,141],[59,12,12,141,153],[60,7,6,153,159],[61,2,2,159,161],[62,2,2,161,163],[63,11,10,163,173],[64,2,2,173,175],[67,3,3,175,178]]],[4,7,7,178,185,[[158,2,2,178,180],[159,2,2,180,182],[163,1,1,182,183],[181,1,1,183,184],[186,1,1,184,185]]],[8,2,2,185,187,[[237,1,1,185,186],[241,1,1,186,187]]],[10,13,10,187,197,[[293,2,1,187,188],[297,1,1,188,189],[299,2,2,189,191],[301,8,6,191,197]]],[11,4,3,197,200,[[329,1,1,197,198],[330,1,1,198,199],[335,2,1,199,200]]],[12,1,1,200,201,[[341,1,1,200,201]]],[13,1,1,201,202,[[374,1,1,201,202]]],[15,1,1,202,203,[[421,1,1,202,203]]],[18,2,2,203,205,[[612,1,1,203,204],[613,1,1,204,205]]],[21,1,1,205,206,[[671,1,1,205,206]]],[22,5,4,206,210,[[697,2,1,206,207],[708,2,2,207,209],[714,1,1,209,210]]],[23,9,8,210,218,[[769,1,1,210,211],[781,3,3,211,214],[787,1,1,214,215],[790,3,2,215,217],[791,1,1,217,218]]],[25,13,12,218,230,[[818,1,1,218,219],[830,2,2,219,221],[831,4,4,221,225],[832,2,2,225,227],[833,4,3,227,230]]]],[313,315,316,318,1119,1150,1174,1179,1183,1185,1186,1189,1191,1192,1193,1196,1199,1202,1203,1204,1205,1209,1210,1211,1212,1220,1223,1227,1228,1229,1230,1232,1233,1234,1236,1237,1239,1240,1241,1250,1267,1268,1342,1360,1366,1374,1375,1379,1391,1417,1419,1421,1422,1423,1424,1425,1427,1428,1429,1430,1431,1434,1439,1440,1442,1443,1444,1445,1446,1510,1512,1513,1543,1551,1554,1559,1561,1562,1563,1564,1569,1589,1590,1622,1623,1633,1634,1637,1638,1642,1646,1647,1652,1653,1655,1656,1666,1667,1668,1682,1684,1685,1686,1687,1688,1689,1692,1694,1695,1696,1698,1699,1700,1705,1707,1708,1711,1718,1719,1722,1725,1729,1730,1734,1735,1738,1739,1740,1741,1742,1743,1749,1750,1752,1754,1755,1762,1769,1775,1776,1777,1778,1780,1783,1784,1785,1788,1793,1795,1797,1801,1804,1805,1807,1809,1811,1814,1815,1816,1845,1846,1882,1884,1892,1893,1894,1897,1898,1899,1906,1907,1912,1917,1924,1939,2003,2007,2009,5107,5108,5119,5129,5211,5681,5850,7267,7337,8817,8942,9067,9075,9109,9126,9127,9128,9129,9130,9990,10045,10200,10403,11357,12521,16184,16211,17546,18015,18219,18220,18336,19553,19879,19881,19885,20006,20062,20070,20074,20842,21185,21186,21225,21226,21228,21229,21232,21248,21250,21279,21280]]],["+",[5,5,[[0,3,3,0,3,[[40,2,2,0,2],[44,1,1,2,3]]],[1,2,2,3,5,[[57,2,2,3,5]]]],[1211,1220,1374,1739,1741]]],["Pharaoh",[217,195,[[0,77,64,0,64,[[11,5,4,0,4],[38,1,1,4,5],[39,5,5,5,10],[40,32,25,10,35],[41,2,2,35,37],[43,1,1,37,38],[44,4,4,38,42],[45,3,3,42,45],[46,20,16,45,61],[49,4,3,61,64]]],[1,94,89,64,153,[[50,3,3,64,67],[51,3,2,67,69],[52,2,2,69,71],[53,2,2,71,73],[54,9,9,73,82],[55,7,7,82,89],[56,12,10,89,99],[57,14,13,99,112],[58,12,11,112,123],[59,8,8,123,131],[60,5,5,131,136],[61,2,2,136,138],[62,2,2,138,140],[63,9,9,140,149],[64,1,1,149,150],[67,3,3,150,153]]],[4,6,6,153,159,[[158,1,1,153,154],[159,2,2,154,156],[163,1,1,156,157],[181,1,1,157,158],[186,1,1,158,159]]],[8,1,1,159,160,[[241,1,1,159,160]]],[10,8,8,160,168,[[293,1,1,160,161],[299,1,1,161,162],[301,6,6,162,168]]],[11,4,3,168,171,[[329,1,1,168,169],[330,1,1,169,170],[335,2,1,170,171]]],[12,1,1,171,172,[[341,1,1,171,172]]],[13,1,1,172,173,[[374,1,1,172,173]]],[15,1,1,173,174,[[421,1,1,173,174]]],[18,2,2,174,176,[[612,1,1,174,175],[613,1,1,175,176]]],[22,5,4,176,180,[[697,2,1,176,177],[708,2,2,177,179],[714,1,1,179,180]]],[23,5,4,180,184,[[769,1,1,180,181],[790,3,2,181,183],[791,1,1,183,184]]],[25,12,11,184,195,[[818,1,1,184,185],[830,2,2,185,187],[831,3,3,187,190],[832,2,2,190,192],[833,4,3,192,195]]]],[313,315,316,318,1150,1174,1185,1186,1189,1191,1196,1199,1202,1203,1204,1205,1209,1210,1211,1212,1220,1223,1227,1228,1229,1230,1232,1233,1234,1236,1237,1239,1240,1241,1250,1267,1268,1342,1360,1366,1375,1379,1391,1417,1419,1421,1422,1423,1424,1425,1427,1428,1429,1430,1431,1439,1440,1442,1443,1444,1446,1510,1512,1513,1543,1551,1554,1559,1569,1589,1590,1622,1623,1633,1634,1637,1638,1642,1647,1652,1653,1655,1656,1666,1667,1668,1682,1684,1685,1686,1687,1689,1692,1694,1695,1696,1700,1705,1708,1711,1718,1719,1722,1725,1729,1730,1734,1735,1738,1739,1740,1742,1743,1749,1750,1752,1754,1755,1762,1769,1775,1776,1777,1778,1780,1783,1785,1793,1795,1801,1805,1807,1811,1814,1815,1816,1845,1846,1882,1884,1892,1893,1894,1897,1898,1899,1906,1907,1917,1939,2003,2007,2009,5108,5119,5129,5211,5681,5850,7337,8817,9067,9109,9126,9127,9128,9129,9130,9990,10045,10200,10403,11357,12521,16184,16211,18015,18219,18220,18336,19553,20062,20070,20074,20842,21185,21186,21225,21226,21229,21232,21248,21250,21279,21280]]],["Pharaoh's",[46,43,[[0,14,12,0,12,[[11,1,1,0,1],[36,1,1,1,2],[39,7,5,2,7],[44,1,1,7,8],[46,4,4,8,12]]],[1,19,19,12,31,[[51,4,4,12,16],[54,1,1,16,17],[56,4,4,17,21],[57,1,1,21,22],[59,4,4,22,26],[60,2,2,26,28],[63,2,2,28,30],[64,1,1,30,31]]],[4,1,1,31,32,[[158,1,1,31,32]]],[8,1,1,32,33,[[237,1,1,32,33]]],[10,5,4,33,37,[[293,1,1,33,34],[297,1,1,34,35],[299,1,1,35,36],[301,2,1,36,37]]],[21,1,1,37,38,[[671,1,1,37,38]]],[23,4,4,38,42,[[781,3,3,38,41],[787,1,1,41,42]]],[25,1,1,42,43,[[831,1,1,42,43]]]],[313,1119,1179,1183,1185,1192,1193,1374,1434,1440,1445,1446,1561,1562,1563,1564,1646,1688,1698,1699,1707,1729,1784,1788,1797,1804,1809,1816,1893,1912,1924,5107,7267,8817,8942,9075,9128,17546,19879,19881,19885,20006,21228]]]]},{"k":"H6548","v":[["Pharaohhophra",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20040]]]]},{"k":"H6549","v":[["*",[5,5,[[11,4,4,0,4,[[335,4,4,0,4]]],[23,1,1,4,5,[[790,1,1,4,5]]]],[10194,10198,10199,10200,20047]]],["Pharaohnecho",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20047]]],["Pharaohnechoh",[4,4,[[11,4,4,0,4,[[335,4,4,0,4]]]],[10194,10198,10199,10200]]]]},{"k":"H6550","v":[["flea",[2,2,[[8,2,2,0,2,[[259,1,1,0,1],[261,1,1,1,2]]]],[7853,7925]]]]},{"k":"H6551","v":[["*",[6,6,[[14,3,3,0,3,[[404,1,1,0,1],[410,1,1,1,2],[412,1,1,2,3]]],[15,3,3,3,6,[[415,1,1,3,4],[419,1,1,4,5],[422,1,1,5,6]]]],[12030,12204,12277,12352,12428,12563]]],["Parosh",[5,5,[[14,2,2,0,2,[[404,1,1,0,1],[412,1,1,1,2]]],[15,3,3,2,5,[[415,1,1,2,3],[419,1,1,3,4],[422,1,1,4,5]]]],[12030,12277,12352,12428,12563]]],["Pharosh",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12204]]]]},{"k":"H6552","v":[["Pirathon",[1,1,[[6,1,1,0,1,[[222,1,1,0,1]]]],[6884]]]]},{"k":"H6553","v":[["Pirathonite",[5,5,[[6,2,2,0,2,[[222,2,2,0,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[12,2,2,3,5,[[348,1,1,3,4],[364,1,1,4,5]]]],[6882,6884,8683,10704,11123]]]]},{"k":"H6554","v":[["Pharpar",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9659]]]]},{"k":"H6555","v":[["*",[49,48,[[0,4,4,0,4,[[27,1,1,0,1],[29,2,2,1,3],[37,1,1,3,4]]],[1,3,3,4,7,[[50,1,1,4,5],[68,2,2,5,7]]],[8,3,3,7,10,[[238,1,1,7,8],[260,1,1,8,9],[263,1,1,9,10]]],[9,4,4,10,14,[[271,1,1,10,11],[272,1,1,11,12],[279,2,2,12,14]]],[11,2,2,14,16,[[317,1,1,14,15],[326,1,1,15,16]]],[12,5,5,16,21,[[341,1,1,16,17],[350,2,2,17,19],[351,1,1,19,20],[352,1,1,20,21]]],[13,7,7,21,28,[[377,1,1,21,22],[386,1,1,22,23],[390,1,1,23,24],[391,1,1,24,25],[392,1,1,25,26],[397,1,1,26,27],[398,1,1,27,28]]],[15,4,4,28,32,[[413,1,1,28,29],[414,1,1,29,30],[416,2,2,30,32]]],[17,3,3,32,35,[[436,1,1,32,33],[451,1,1,33,34],[463,1,1,34,35]]],[18,4,4,35,39,[[537,1,1,35,36],[557,1,1,36,37],[566,1,1,37,38],[583,1,1,38,39]]],[19,2,2,39,41,[[630,1,1,39,40],[652,1,1,40,41]]],[20,2,2,41,43,[[661,1,1,41,42],[668,1,1,42,43]]],[22,2,2,43,45,[[683,1,1,43,44],[732,1,1,44,45]]],[27,2,2,45,47,[[865,2,2,45,47]]],[32,2,1,47,48,[[894,2,1,47,48]]]],[787,860,873,1148,1544,2048,2050,7277,7871,7965,8152,8165,8342,8344,9670,9909,10423,10762,10771,10785,10804,11437,11624,11684,11727,11738,11859,11880,12299,12320,12362,12366,12879,13252,13508,14808,15210,15366,15680,16465,17141,17362,17501,17744,18726,22135,22143,22608]]],["+",[6,6,[[1,1,1,0,1,[[50,1,1,0,1]]],[9,1,1,1,2,[[271,1,1,1,2]]],[12,1,1,2,3,[[351,1,1,2,3]]],[13,3,3,3,6,[[386,1,1,3,4],[390,1,1,4,5],[392,1,1,5,6]]]],[1544,8152,10785,11624,11684,11738]]],["abroad",[3,3,[[0,1,1,0,1,[[27,1,1,0,1]]],[12,1,1,1,2,[[350,1,1,1,2]]],[13,1,1,2,3,[[397,1,1,2,3]]]],[787,10762,11859]]],["away",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7871]]],["breach",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10804]]],["breaches",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12366]]],["breaker",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22608]]],["breaketh",[2,2,[[17,1,1,0,1,[[451,1,1,0,1]]],[20,1,1,1,2,[[668,1,1,1,2]]]],[13252,17501]]],["broken",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11880]]],["compelled",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7965]]],["dispersed",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11437]]],["down",[10,10,[[11,1,1,0,1,[[326,1,1,0,1]]],[13,1,1,1,2,[[391,1,1,1,2]]],[15,3,3,2,5,[[413,1,1,2,3],[414,1,1,3,4],[416,1,1,4,5]]],[18,2,2,5,7,[[557,1,1,5,6],[566,1,1,6,7]]],[19,1,1,7,8,[[652,1,1,7,8]]],[20,1,1,8,9,[[661,1,1,8,9]]],[22,1,1,9,10,[[683,1,1,9,10]]]],[9909,11727,12299,12320,12362,15210,15366,17141,17362,17744]]],["forth",[4,4,[[0,1,1,0,1,[[37,1,1,0,1]]],[1,2,2,1,3,[[68,2,2,1,3]]],[22,1,1,3,4,[[732,1,1,3,4]]]],[1148,2048,2050,18726]]],["in",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15680]]],["increase",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22143]]],["increased",[4,4,[[0,2,2,0,2,[[29,2,2,0,2]]],[12,1,1,2,3,[[341,1,1,2,3]]],[17,1,1,3,4,[[436,1,1,3,4]]]],[860,873,10423,12879]]],["made",[2,2,[[9,1,1,0,1,[[272,1,1,0,1]]],[12,1,1,1,2,[[350,1,1,1,2]]]],[8165,10771]]],["open",[1,1,[[8,1,1,0,1,[[238,1,1,0,1]]]],[7277]]],["out",[3,3,[[17,1,1,0,1,[[463,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]],[27,1,1,2,3,[[865,1,1,2,3]]]],[13508,16465,22135]]],["pressed",[2,2,[[9,2,2,0,2,[[279,2,2,0,2]]]],[8342,8344]]],["scattered",[1,1,[[18,1,1,0,1,[[537,1,1,0,1]]]],[14808]]],["up",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22608]]],["urged",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9670]]]]},{"k":"H6556","v":[["*",[19,18,[[0,1,1,0,1,[[37,1,1,0,1]]],[6,1,1,1,2,[[231,1,1,1,2]]],[9,2,2,2,4,[[271,1,1,2,3],[272,1,1,3,4]]],[10,1,1,4,5,[[301,1,1,4,5]]],[12,2,2,5,7,[[350,1,1,5,6],[351,1,1,6,7]]],[15,1,1,7,8,[[418,1,1,7,8]]],[17,3,2,8,10,[[451,2,1,8,9],[465,1,1,9,10]]],[18,2,2,10,12,[[583,1,1,10,11],[621,1,1,11,12]]],[22,2,2,12,14,[[708,1,1,12,13],[736,1,1,13,14]]],[25,2,2,14,16,[[814,1,1,14,15],[823,1,1,15,16]]],[29,2,2,16,18,[[882,1,1,16,17],[887,1,1,17,18]]]],[1148,7117,8152,8165,9135,10771,10785,12402,13252,13571,15674,16319,18230,18798,20713,21006,22413,22506]]],["breach",[11,10,[[0,1,1,0,1,[[37,1,1,0,1]]],[6,1,1,1,2,[[231,1,1,1,2]]],[9,2,2,2,4,[[271,1,1,2,3],[272,1,1,3,4]]],[12,1,1,4,5,[[350,1,1,4,5]]],[15,1,1,5,6,[[418,1,1,5,6]]],[17,2,1,6,7,[[451,2,1,6,7]]],[18,1,1,7,8,[[583,1,1,7,8]]],[22,2,2,8,10,[[708,1,1,8,9],[736,1,1,9,10]]]],[1148,7117,8152,8165,10771,12402,13252,15674,18230,18798]]],["breaches",[3,3,[[10,1,1,0,1,[[301,1,1,0,1]]],[29,2,2,1,3,[[882,1,1,1,2],[887,1,1,2,3]]]],[9135,22413,22506]]],["forth",[1,1,[[12,1,1,0,1,[[351,1,1,0,1]]]],[10785]]],["gap",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[21006]]],["gaps",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20713]]],["in",[2,2,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,1,1,1,2,[[621,1,1,1,2]]]],[13571,16319]]]]},{"k":"H6557","v":[["*",[15,13,[[0,3,2,0,2,[[37,1,1,0,1],[45,2,1,1,2]]],[3,2,2,2,4,[[142,2,2,2,4]]],[7,3,2,4,6,[[235,3,2,4,6]]],[12,5,5,6,11,[[339,2,2,6,8],[341,1,1,8,9],[346,1,1,9,10],[364,1,1,10,11]]],[15,2,2,11,13,[[423,2,2,11,13]]]],[1148,1398,4509,4510,7202,7208,10310,10311,10386,10619,11112,12592,12594]]],["Perez",[3,3,[[12,1,1,0,1,[[364,1,1,0,1]]],[15,2,2,1,3,[[423,2,2,1,3]]]],[11112,12592,12594]]],["Pharez",[12,10,[[0,3,2,0,2,[[37,1,1,0,1],[45,2,1,1,2]]],[3,2,2,2,4,[[142,2,2,2,4]]],[7,3,2,4,6,[[235,3,2,4,6]]],[12,4,4,6,10,[[339,2,2,6,8],[341,1,1,8,9],[346,1,1,9,10]]]],[1148,1398,4509,4510,7202,7208,10310,10311,10386,10619]]]]},{"k":"H6558","v":[["Pharzites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4509]]]]},{"k":"H6559","v":[["Perazim",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18185]]]]},{"k":"H6560","v":[["*",[2,2,[[9,1,1,0,1,[[272,1,1,0,1]]],[12,1,1,1,2,[[350,1,1,1,2]]]],[8165,10771]]],["Perezuzza",[1,1,[[12,1,1,0,1,[[350,1,1,0,1]]]],[10771]]],["Perezuzzah",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8165]]]]},{"k":"H6561","v":[["*",[10,10,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,3,3,1,4,[[81,3,3,1,4]]],[10,1,1,4,5,[[309,1,1,4,5]]],[18,2,2,5,7,[[484,1,1,5,6],[613,1,1,6,7]]],[24,1,1,7,8,[[801,1,1,7,8]]],[25,1,1,8,9,[[820,1,1,8,9]]],[37,1,1,9,10,[[921,1,1,9,10]]]],[767,2440,2441,2462,9398,13997,16220,20450,20893,23044]]],["+",[2,2,[[1,1,1,0,1,[[81,1,1,0,1]]],[37,1,1,1,2,[[921,1,1,1,2]]]],[2441,23044]]],["break",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[767]]],["broken",[1,1,[[25,1,1,0,1,[[820,1,1,0,1]]]],[20893]]],["deliver",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20450]]],["off",[2,2,[[1,2,2,0,2,[[81,2,2,0,2]]]],[2440,2462]]],["pieces",[1,1,[[18,1,1,0,1,[[484,1,1,0,1]]]],[13997]]],["redeemed",[1,1,[[18,1,1,0,1,[[613,1,1,0,1]]]],[16220]]],["rent",[1,1,[[10,1,1,0,1,[[309,1,1,0,1]]]],[9398]]]]},{"k":"H6562","v":[["break",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]]]},{"k":"H6563","v":[["*",[2,2,[[30,1,1,0,1,[[888,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[22524,22713]]],["crossway",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22524]]],["robbery",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22713]]]]},{"k":"H6564","v":[["broth",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18901]]]]},{"k":"H6565","v":[["*",[51,47,[[0,1,1,0,1,[[16,1,1,0,1]]],[2,2,2,1,3,[[115,2,2,1,3]]],[3,8,5,3,8,[[131,1,1,3,4],[146,7,4,4,8]]],[4,2,2,8,10,[[183,2,2,8,10]]],[6,1,1,10,11,[[212,1,1,10,11]]],[9,2,2,11,13,[[281,1,1,11,12],[283,1,1,12,13]]],[10,1,1,13,14,[[305,1,1,13,14]]],[13,1,1,14,15,[[382,1,1,14,15]]],[14,2,2,15,17,[[406,1,1,15,16],[411,1,1,16,17]]],[15,1,1,17,18,[[416,1,1,17,18]]],[17,4,4,18,22,[[440,1,1,18,19],[450,1,1,19,20],[451,1,1,20,21],[475,1,1,21,22]]],[18,3,3,22,25,[[551,1,1,22,23],[562,1,1,23,24],[596,1,1,24,25]]],[19,1,1,25,26,[[642,1,1,25,26]]],[20,1,1,26,27,[[670,1,1,26,27]]],[22,7,6,27,33,[[686,1,1,27,28],[692,1,1,28,29],[702,3,2,29,31],[711,1,1,31,32],[722,1,1,32,33]]],[23,5,5,33,38,[[755,1,1,33,34],[758,1,1,34,35],[775,1,1,35,36],[777,2,2,36,38]]],[25,6,6,38,44,[[817,1,1,38,39],[818,4,4,39,43],[845,1,1,43,44]]],[37,3,3,44,47,[[921,3,3,44,47]]]],[411,3539,3568,4184,4656,4660,4661,4663,5744,5748,6546,8423,8463,9268,11512,12115,12251,12374,12963,13207,13250,13872,15061,15275,16024,16829,17528,17817,17955,18100,18114,18287,18558,19236,19314,19723,19795,19796,20821,20840,20841,20843,20844,21606,23038,23039,23042]]],["+",[19,16,[[0,1,1,0,1,[[16,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,4,2,2,4,[[146,4,2,2,4]]],[4,2,2,4,6,[[183,2,2,4,6]]],[9,2,2,6,8,[[281,1,1,6,7],[283,1,1,7,8]]],[10,1,1,8,9,[[305,1,1,8,9]]],[15,1,1,9,10,[[416,1,1,9,10]]],[22,2,1,10,11,[[702,2,1,10,11]]],[23,2,2,11,13,[[755,1,1,11,12],[777,1,1,12,13]]],[25,1,1,13,14,[[845,1,1,13,14]]],[37,2,2,14,16,[[921,2,2,14,16]]]],[411,3539,4660,4663,5744,5748,8423,8463,9268,12374,18114,19236,19795,21606,23038,23042]]],["asunder",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13250]]],["brake",[2,2,[[23,1,1,0,1,[[775,1,1,0,1]]],[25,1,1,1,2,[[818,1,1,1,2]]]],[19723,20841]]],["break",[6,6,[[2,1,1,0,1,[[115,1,1,0,1]]],[6,1,1,1,2,[[212,1,1,1,2]]],[13,1,1,2,3,[[382,1,1,2,3]]],[14,1,1,3,4,[[411,1,1,3,4]]],[23,1,1,4,5,[[758,1,1,4,5]]],[25,1,1,5,6,[[818,1,1,5,6]]]],[3568,6546,11512,12251,19314,20840]]],["breaking",[2,2,[[25,2,2,0,2,[[817,1,1,0,1],[818,1,1,1,2]]]],[20821,20843]]],["broken",[6,6,[[3,1,1,0,1,[[131,1,1,0,1]]],[22,2,2,1,3,[[702,1,1,1,2],[711,1,1,2,3]]],[23,1,1,3,4,[[777,1,1,3,4]]],[25,1,1,4,5,[[818,1,1,4,5]]],[37,1,1,5,6,[[921,1,1,5,6]]]],[4184,18100,18287,19796,20844,23039]]],["cease",[1,1,[[18,1,1,0,1,[[562,1,1,0,1]]]],[15275]]],["disannul",[2,2,[[17,1,1,0,1,[[475,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]]],[13872,17955]]],["disappointed",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16829]]],["disappointeth",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12963]]],["divide",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15061]]],["effect",[1,1,[[3,1,1,0,1,[[146,1,1,0,1]]]],[4656]]],["fail",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17528]]],["frustrate",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12115]]],["frustrateth",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18558]]],["nought",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17817]]],["off",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13207]]],["void",[3,3,[[3,2,2,0,2,[[146,2,2,0,2]]],[18,1,1,2,3,[[596,1,1,2,3]]]],[4660,4661,16024]]]]},{"k":"H6566","v":[["*",[68,67,[[1,5,5,0,5,[[58,2,2,0,2],[74,1,1,2,3],[86,1,1,3,4],[89,1,1,4,5]]],[3,6,6,5,11,[[120,6,6,5,11]]],[4,2,2,11,13,[[174,1,1,11,12],[184,1,1,12,13]]],[6,1,1,13,14,[[218,1,1,13,14]]],[7,1,1,14,15,[[234,1,1,14,15]]],[9,1,1,15,16,[[283,1,1,15,16]]],[10,5,5,16,21,[[296,1,1,16,17],[298,4,4,17,21]]],[11,2,2,21,23,[[320,1,1,21,22],[331,1,1,22,23]]],[12,1,1,23,24,[[365,1,1,23,24]]],[13,5,5,24,29,[[369,1,1,24,25],[371,1,1,25,26],[372,3,3,26,29]]],[14,1,1,29,30,[[411,1,1,29,30]]],[17,3,3,30,33,[[446,1,1,30,31],[471,1,1,31,32],[474,1,1,32,33]]],[18,5,5,33,38,[[521,1,1,33,34],[545,1,1,34,35],[582,1,1,35,36],[617,1,1,36,37],[620,1,1,37,38]]],[19,3,3,38,41,[[640,1,1,38,39],[656,1,1,39,40],[658,1,1,40,41]]],[22,7,6,41,47,[[679,1,1,41,42],[697,1,1,42,43],[703,2,1,43,44],[711,1,1,44,45],[715,1,1,45,46],[743,1,1,46,47]]],[23,3,3,47,50,[[748,1,1,47,48],[792,1,1,48,49],[793,1,1,49,50]]],[24,4,4,50,54,[[797,3,3,50,53],[800,1,1,53,54]]],[25,8,8,54,62,[[803,1,1,54,55],[813,1,1,55,56],[817,1,1,56,57],[818,2,2,57,59],[820,1,1,59,60],[833,1,1,60,61],[835,1,1,61,62]]],[27,2,2,62,64,[[866,1,1,62,63],[868,1,1,63,64]]],[28,1,1,64,65,[[877,1,1,64,65]]],[32,1,1,65,66,[[895,1,1,65,66]]],[37,1,1,66,67,[[912,1,1,66,67]]]],[1771,1775,2215,2613,2726,3749,3750,3751,3754,3756,3757,5487,5769,6744,7181,8468,8923,8992,9007,9023,9039,9742,10075,11161,11242,11276,11294,11295,11311,12242,13121,13766,13860,14591,14914,15645,16268,16299,16763,17229,17304,17669,18012,18129,18302,18366,18899,19058,20120,20149,20320,20323,20327,20424,20502,20693,20770,20845,20846,20889,21251,21325,22153,22190,22313,22611,22905]]],["+",[8,8,[[1,2,2,0,2,[[58,1,1,0,1],[89,1,1,1,2]]],[6,1,1,2,3,[[218,1,1,2,3]]],[9,1,1,3,4,[[283,1,1,3,4]]],[10,1,1,4,5,[[296,1,1,4,5]]],[13,1,1,5,6,[[371,1,1,5,6]]],[25,1,1,6,7,[[833,1,1,6,7]]],[37,1,1,7,8,[[912,1,1,7,8]]]],[1771,2726,6744,8468,8923,11276,21251,22905]]],["abroad",[2,2,[[1,1,1,0,1,[[58,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]]],[1775,5769]]],["breaketh",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20424]]],["forth",[13,12,[[1,1,1,0,1,[[74,1,1,0,1]]],[10,3,3,1,4,[[298,3,3,1,4]]],[13,4,4,4,8,[[369,1,1,4,5],[372,3,3,5,8]]],[18,1,1,8,9,[[620,1,1,8,9]]],[22,3,2,9,11,[[679,1,1,9,10],[703,2,1,10,11]]],[24,1,1,11,12,[[797,1,1,11,12]]]],[2215,8992,9007,9023,11242,11294,11295,11311,16299,17669,18129,20327]]],["open",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16763]]],["out",[8,8,[[1,1,1,0,1,[[86,1,1,0,1]]],[12,1,1,1,2,[[365,1,1,1,2]]],[14,1,1,2,3,[[411,1,1,2,3]]],[17,1,1,3,4,[[446,1,1,3,4]]],[18,1,1,4,5,[[521,1,1,4,5]]],[19,1,1,5,6,[[658,1,1,5,6]]],[22,1,1,6,7,[[743,1,1,6,7]]],[24,1,1,7,8,[[797,1,1,7,8]]]],[2613,11161,12242,13121,14591,17304,18899,20320]]],["pieces",[1,1,[[32,1,1,0,1,[[895,1,1,0,1]]]],[22611]]],["scattered",[3,3,[[18,1,1,0,1,[[545,1,1,0,1]]],[25,2,2,1,3,[[818,1,1,1,2],[835,1,1,2,3]]]],[14914,20846,21325]]],["spread",[26,26,[[3,6,6,0,6,[[120,6,6,0,6]]],[4,1,1,6,7,[[174,1,1,6,7]]],[7,1,1,7,8,[[234,1,1,7,8]]],[11,2,2,8,10,[[320,1,1,8,9],[331,1,1,9,10]]],[18,2,2,10,12,[[582,1,1,10,11],[617,1,1,11,12]]],[22,3,3,12,15,[[697,1,1,12,13],[711,1,1,13,14],[715,1,1,14,15]]],[23,2,2,15,17,[[792,1,1,15,16],[793,1,1,16,17]]],[24,1,1,17,18,[[797,1,1,17,18]]],[25,5,5,18,23,[[803,1,1,18,19],[813,1,1,19,20],[817,1,1,20,21],[818,1,1,21,22],[820,1,1,22,23]]],[27,2,2,23,25,[[866,1,1,23,24],[868,1,1,24,25]]],[28,1,1,25,26,[[877,1,1,25,26]]]],[3749,3750,3751,3754,3756,3757,5487,7181,9742,10075,15645,16268,18012,18302,18366,20120,20149,20323,20502,20693,20770,20845,20889,22153,22190,22313]]],["spreadeth",[3,3,[[17,1,1,0,1,[[471,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]],[23,1,1,2,3,[[748,1,1,2,3]]]],[13766,17229,19058]]],["stretch",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13860]]],["up",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9039]]]]},{"k":"H6567","v":[["*",[4,4,[[2,1,1,0,1,[[113,1,1,0,1]]],[3,1,1,1,2,[[131,1,1,1,2]]],[15,1,1,2,3,[[420,1,1,2,3]]],[19,1,1,3,4,[[650,1,1,3,4]]]],[3458,4187,12501,17076]]],["declared",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4187]]],["distinctly",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12501]]],["shewed",[1,1,[[2,1,1,0,1,[[113,1,1,0,1]]]],[3458]]],["stingeth",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17076]]]]},{"k":"H6568","v":[["plainly",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12128]]]]},{"k":"H6569","v":[["dung",[7,6,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,3,3,1,4,[[93,1,1,1,2],[97,1,1,2,3],[105,1,1,3,4]]],[3,1,1,4,5,[[135,1,1,4,5]]],[38,2,1,5,6,[[926,2,1,5,6]]]],[2350,2806,2934,3228,4294,23106]]]]},{"k":"H6570","v":[["Peresh",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10551]]]]},{"k":"H6571","v":[["*",[57,54,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,7,7,1,8,[[63,6,6,1,7],[64,1,1,7,8]]],[5,1,1,8,9,[[210,1,1,8,9]]],[8,2,2,9,11,[[243,1,1,9,10],[248,1,1,10,11]]],[9,3,3,11,14,[[267,1,1,11,12],[274,1,1,12,13],[276,1,1,13,14]]],[10,7,6,14,20,[[291,1,1,14,15],[294,1,1,15,16],[299,2,2,16,18],[300,2,1,18,19],[310,1,1,19,20]]],[11,4,4,20,24,[[314,1,1,20,21],[325,2,2,21,23],[330,1,1,23,24]]],[12,2,2,24,26,[[355,1,1,24,25],[356,1,1,25,26]]],[13,7,6,26,32,[[367,2,1,26,27],[374,2,2,27,29],[375,1,1,29,30],[378,1,1,30,31],[382,1,1,31,32]]],[14,1,1,32,33,[[410,1,1,32,33]]],[15,1,1,33,34,[[414,1,1,33,34]]],[22,7,7,34,41,[[699,2,2,34,36],[700,2,2,36,38],[706,1,1,38,39],[709,1,1,39,40],[714,1,1,40,41]]],[23,2,2,41,43,[[748,1,1,41,42],[790,1,1,42,43]]],[25,6,6,43,49,[[824,2,2,43,45],[827,2,2,45,47],[828,1,1,47,48],[839,1,1,48,49]]],[26,1,1,49,50,[[860,1,1,49,50]]],[27,1,1,50,51,[[862,1,1,50,51]]],[28,1,1,51,52,[[877,1,1,51,52]]],[33,1,1,52,53,[[902,1,1,52,53]]],[34,2,1,53,54,[[903,2,1,53,54]]]],[1515,1898,1906,1907,1912,1915,1917,1939,6482,7380,7490,8028,8213,8258,8722,8870,9070,9073,9105,9428,9563,9878,9885,10048,10894,10913,11208,11352,11355,11389,11440,11517,12223,12316,18042,18044,18058,18059,18192,18251,18339,19056,20049,21013,21019,21107,21110,21135,21429,22076,22101,22315,22715,22739]]],["+",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8028]]],["horseman",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22715]]],["horsemen",[55,52,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,7,7,1,8,[[63,6,6,1,7],[64,1,1,7,8]]],[5,1,1,8,9,[[210,1,1,8,9]]],[8,2,2,9,11,[[243,1,1,9,10],[248,1,1,10,11]]],[9,2,2,11,13,[[274,1,1,11,12],[276,1,1,12,13]]],[10,7,6,13,19,[[291,1,1,13,14],[294,1,1,14,15],[299,2,2,15,17],[300,2,1,17,18],[310,1,1,18,19]]],[11,4,4,19,23,[[314,1,1,19,20],[325,2,2,20,22],[330,1,1,22,23]]],[12,2,2,23,25,[[355,1,1,23,24],[356,1,1,24,25]]],[13,7,6,25,31,[[367,2,1,25,26],[374,2,2,26,28],[375,1,1,28,29],[378,1,1,29,30],[382,1,1,30,31]]],[14,1,1,31,32,[[410,1,1,31,32]]],[15,1,1,32,33,[[414,1,1,32,33]]],[22,7,7,33,40,[[699,2,2,33,35],[700,2,2,35,37],[706,1,1,37,38],[709,1,1,38,39],[714,1,1,39,40]]],[23,2,2,40,42,[[748,1,1,40,41],[790,1,1,41,42]]],[25,6,6,42,48,[[824,2,2,42,44],[827,2,2,44,46],[828,1,1,46,47],[839,1,1,47,48]]],[26,1,1,48,49,[[860,1,1,48,49]]],[27,1,1,49,50,[[862,1,1,49,50]]],[28,1,1,50,51,[[877,1,1,50,51]]],[34,2,1,51,52,[[903,2,1,51,52]]]],[1515,1898,1906,1907,1912,1915,1917,1939,6482,7380,7490,8213,8258,8722,8870,9070,9073,9105,9428,9563,9878,9885,10048,10894,10913,11208,11352,11355,11389,11440,11517,12223,12316,18042,18044,18058,18059,18192,18251,18339,19056,20049,21013,21019,21107,21110,21135,21429,22076,22101,22315,22739]]]]},{"k":"H6572","v":[["copy",[4,4,[[14,1,1,0,1,[[409,1,1,0,1]]],[16,3,3,1,4,[[428,1,1,1,2],[429,1,1,2,3],[433,1,1,3,4]]]],[12184,12761,12770,12830]]]]},{"k":"H6573","v":[["copy",[3,3,[[14,3,3,0,3,[[406,2,2,0,2],[407,1,1,2,3]]]],[12121,12133,12140]]]]},{"k":"H6574","v":[["dirt",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6590]]]]},{"k":"H6575","v":[["*",[2,2,[[16,2,2,0,2,[[429,1,1,0,1],[435,1,1,1,2]]]],[12769,12868]]],["declaration",[1,1,[[16,1,1,0,1,[[435,1,1,0,1]]]],[12868]]],["sum",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12769]]]]},{"k":"H6576","v":[["spreadeth",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13476]]]]},{"k":"H6577","v":[["Parshandatha",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12841]]]]},{"k":"H6578","v":[["Euphrates",[19,19,[[0,2,2,0,2,[[1,1,1,0,1],[14,1,1,1,2]]],[4,2,2,2,4,[[153,1,1,2,3],[163,1,1,3,4]]],[5,1,1,4,5,[[187,1,1,4,5]]],[9,1,1,5,6,[[274,1,1,5,6]]],[11,2,2,6,8,[[335,1,1,6,7],[336,1,1,7,8]]],[12,2,2,8,10,[[342,1,1,8,9],[355,1,1,9,10]]],[13,1,1,10,11,[[401,1,1,10,11]]],[23,8,8,11,19,[[757,4,4,11,15],[790,3,3,15,18],[795,1,1,18,19]]]],[44,378,4899,5232,5855,8212,10194,10209,10437,10893,11986,19270,19271,19272,19273,20047,20051,20055,20275]]]]},{"k":"H6579","v":[["*",[3,3,[[16,2,2,0,2,[[426,1,1,0,1],[431,1,1,1,2]]],[26,1,1,2,3,[[850,1,1,2,3]]]],[12705,12802,21740]]],["noble",[1,1,[[16,1,1,0,1,[[431,1,1,0,1]]]],[12802]]],["nobles",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12705]]],["princes",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21740]]]]},{"k":"H6580","v":[["extremity",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13735]]]]},{"k":"H6581","v":[["*",[22,18,[[2,22,18,0,18,[[102,19,15,0,15],[103,3,3,15,18]]]],[3057,3058,3059,3060,3074,3075,3079,3080,3084,3086,3087,3088,3103,3105,3107,3150,3155,3159]]],["+",[8,4,[[2,8,4,0,4,[[102,8,4,0,4]]]],[3059,3074,3079,3087]]],["spread",[13,13,[[2,13,13,0,13,[[102,10,10,0,10],[103,3,3,10,13]]]],[3057,3058,3075,3080,3084,3086,3088,3103,3105,3107,3150,3155,3159]]],["spreadeth",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3060]]]]},{"k":"H6582","v":[["pieces",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20365]]]]},{"k":"H6583","v":[["Pashur",[14,12,[[12,1,1,0,1,[[346,1,1,0,1]]],[14,2,2,1,3,[[404,1,1,1,2],[412,1,1,2,3]]],[15,3,3,3,6,[[419,1,1,3,4],[422,1,1,4,5],[423,1,1,5,6]]],[23,8,6,6,12,[[764,5,4,6,10],[765,1,1,10,11],[782,2,1,11,12]]]],[10627,12065,12274,12461,12552,12600,19423,19424,19425,19428,19441,19896]]]]},{"k":"H6584","v":[["*",[43,42,[[0,1,1,0,1,[[36,1,1,0,1]]],[2,3,3,1,4,[[90,1,1,1,2],[95,1,1,2,3],[105,1,1,3,4]]],[3,2,2,4,6,[[136,2,2,4,6]]],[6,4,3,6,9,[[219,3,2,6,8],[230,1,1,8,9]]],[8,9,9,9,18,[[253,1,1,9,10],[254,1,1,10,11],[258,1,1,11,12],[262,2,2,12,14],[265,2,2,14,16],[266,2,2,16,18]]],[9,1,1,18,19,[[289,1,1,18,19]]],[12,4,4,19,23,[[347,2,2,19,21],[351,2,2,21,23]]],[13,4,4,23,27,[[391,1,1,23,24],[394,1,1,24,25],[395,1,1,25,26],[401,1,1,26,27]]],[15,1,1,27,28,[[416,1,1,27,28]]],[17,3,3,28,31,[[436,1,1,28,29],[454,1,1,29,30],[457,1,1,30,31]]],[21,1,1,31,32,[[675,1,1,31,32]]],[22,1,1,32,33,[[710,1,1,32,33]]],[25,4,4,33,37,[[817,1,1,33,34],[824,1,1,34,35],[827,1,1,35,36],[845,1,1,36,37]]],[27,2,2,37,39,[[863,1,1,37,38],[868,1,1,38,39]]],[32,2,2,39,41,[[894,1,1,39,40],[895,1,1,40,41]]],[33,1,1,41,42,[[902,1,1,41,42]]]],[1106,2751,2860,3224,4337,4339,6787,6798,7091,7680,7730,7837,7938,7940,7979,7992,8017,8018,8663,10667,10668,10783,10787,11717,11782,11825,11977,12382,12886,13306,13395,17601,18270,20801,21033,21116,21618,22108,22179,22603,22611,22728]]],["+",[16,16,[[0,1,1,0,1,[[36,1,1,0,1]]],[2,3,3,1,4,[[90,1,1,1,2],[95,1,1,2,3],[105,1,1,3,4]]],[3,2,2,4,6,[[136,2,2,4,6]]],[8,5,5,6,11,[[258,1,1,6,7],[262,1,1,7,8],[265,1,1,8,9],[266,2,2,9,11]]],[12,1,1,11,12,[[347,1,1,11,12]]],[13,1,1,12,13,[[395,1,1,12,13]]],[17,1,1,13,14,[[454,1,1,13,14]]],[21,1,1,14,15,[[675,1,1,14,15]]],[25,1,1,15,16,[[845,1,1,15,16]]]],[1106,2751,2860,3224,4337,4339,7837,7938,7979,8017,8018,10667,11825,13306,17601,21618]]],["abroad",[1,1,[[12,1,1,0,1,[[351,1,1,0,1]]]],[10787]]],["fell",[1,1,[[17,1,1,0,1,[[436,1,1,0,1]]]],[12886]]],["flay",[1,1,[[32,1,1,0,1,[[895,1,1,0,1]]]],[22611]]],["flayed",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11977]]],["forward",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6798]]],["himself",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7680]]],["invaded",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11782]]],["invasion",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7992]]],["off",[4,4,[[8,1,1,0,1,[[254,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]],[25,1,1,2,3,[[827,1,1,2,3]]],[32,1,1,3,4,[[894,1,1,3,4]]]],[7730,12382,21116,22603]]],["ran",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6798]]],["road",[1,1,[[8,1,1,0,1,[[262,1,1,0,1]]]],[7940]]],["rushed",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7091]]],["set",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6787]]],["spoil",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8663]]],["spoileth",[2,2,[[27,1,1,0,1,[[868,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[22179,22728]]],["spread",[1,1,[[12,1,1,0,1,[[351,1,1,0,1]]]],[10783]]],["strip",[4,4,[[22,1,1,0,1,[[710,1,1,0,1]]],[25,2,2,1,3,[[817,1,1,1,2],[824,1,1,2,3]]],[27,1,1,3,4,[[863,1,1,3,4]]]],[18270,20801,21033,22108]]],["stripped",[2,2,[[12,1,1,0,1,[[347,1,1,0,1]]],[17,1,1,1,2,[[457,1,1,1,2]]]],[10668,13395]]],["upon",[1,1,[[13,1,1,0,1,[[391,1,1,0,1]]]],[11717]]]]},{"k":"H6585","v":[["go",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18155]]]]},{"k":"H6586","v":[["*",[41,37,[[10,2,2,0,2,[[298,1,1,0,1],[302,1,1,1,2]]],[11,6,5,2,7,[[313,1,1,2,3],[315,2,2,3,5],[320,3,2,5,7]]],[13,4,3,7,10,[[376,1,1,7,8],[387,3,2,8,10]]],[14,1,1,10,11,[[412,1,1,10,11]]],[18,2,2,11,13,[[514,1,1,11,12],[528,1,1,12,13]]],[19,2,2,13,15,[[645,1,1,13,14],[655,1,1,14,15]]],[22,9,8,15,23,[[679,2,2,15,17],[721,1,1,17,18],[724,1,1,18,19],[726,1,1,19,20],[731,2,1,20,21],[737,1,1,21,22],[744,1,1,22,23]]],[23,4,4,23,27,[[746,2,2,23,25],[747,1,1,25,26],[777,1,1,26,27]]],[24,1,1,27,28,[[799,1,1,27,28]]],[25,3,3,28,31,[[803,1,1,28,29],[819,1,1,29,30],[821,1,1,30,31]]],[26,1,1,31,32,[[857,1,1,31,32]]],[27,3,3,32,35,[[868,1,1,32,33],[869,1,1,33,34],[875,1,1,34,35]]],[29,2,1,35,36,[[882,2,1,35,36]]],[35,1,1,36,37,[[908,1,1,36,37]]]],[9035,9170,9534,9581,9583,9747,9749,11414,11632,11634,12265,14488,14704,16920,17217,17656,17682,18532,18594,18622,18723,18813,18946,18973,18994,19015,19783,20396,20495,20880,20933,21984,22191,22195,22291,22414,22831]]],["offended",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16920]]],["rebelled",[6,6,[[10,1,1,0,1,[[302,1,1,0,1]]],[11,3,3,1,4,[[313,1,1,1,2],[315,2,2,2,4]]],[13,1,1,4,5,[[376,1,1,4,5]]],[22,1,1,5,6,[[679,1,1,5,6]]]],[9170,9534,9581,9583,11414,17656]]],["revolt",[1,1,[[13,1,1,0,1,[[387,1,1,0,1]]]],[11634]]],["revolted",[5,4,[[11,3,2,0,2,[[320,3,2,0,2]]],[13,2,2,2,4,[[387,2,2,2,4]]]],[9747,9749,11632,11634]]],["transgress",[3,3,[[19,1,1,0,1,[[655,1,1,0,1]]],[25,1,1,1,2,[[821,1,1,1,2]]],[29,1,1,2,3,[[882,1,1,2,3]]]],[17217,20933,22414]]],["transgressed",[13,13,[[10,1,1,0,1,[[298,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]],[22,2,2,2,4,[[721,1,1,2,3],[744,1,1,3,4]]],[23,4,4,4,8,[[746,2,2,4,6],[747,1,1,6,7],[777,1,1,7,8]]],[24,1,1,8,9,[[799,1,1,8,9]]],[25,2,2,9,11,[[803,1,1,9,10],[819,1,1,10,11]]],[27,1,1,11,12,[[868,1,1,11,12]]],[35,1,1,12,13,[[908,1,1,12,13]]]],[9035,12265,18532,18946,18973,18994,19015,19783,20396,20495,20880,22191,22831]]],["transgressing",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18813]]],["transgression",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22414]]],["transgressor",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18622]]],["transgressors",[8,7,[[18,2,2,0,2,[[514,1,1,0,1],[528,1,1,1,2]]],[22,4,3,2,5,[[679,1,1,2,3],[724,1,1,3,4],[731,2,1,4,5]]],[26,1,1,5,6,[[857,1,1,5,6]]],[27,1,1,6,7,[[875,1,1,6,7]]]],[14488,14704,17682,18594,18723,21984,22291]]],["trespassed",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22195]]]]},{"k":"H6587","v":[["step",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7733]]]]},{"k":"H6588","v":[["*",[93,90,[[0,3,2,0,2,[[30,1,1,0,1],[49,2,1,1,2]]],[1,3,3,2,5,[[71,1,1,2,3],[72,1,1,3,4],[83,1,1,4,5]]],[2,2,2,5,7,[[105,2,2,5,7]]],[3,1,1,7,8,[[130,1,1,7,8]]],[5,1,1,8,9,[[210,1,1,8,9]]],[8,2,2,9,11,[[259,1,1,9,10],[260,1,1,10,11]]],[10,1,1,11,12,[[298,1,1,11,12]]],[17,10,10,12,22,[[442,1,1,12,13],[443,1,1,13,14],[448,1,1,14,15],[449,1,1,15,16],[466,1,1,16,17],[468,1,1,17,18],[469,2,2,18,20],[470,1,1,20,21],[471,1,1,21,22]]],[18,14,14,22,36,[[482,1,1,22,23],[496,1,1,23,24],[502,1,1,24,25],[509,2,2,25,27],[513,1,1,27,28],[516,1,1,28,29],[528,2,2,29,31],[536,1,1,31,32],[542,1,1,32,33],[566,1,1,33,34],[580,1,1,34,35],[584,1,1,35,36]]],[19,12,12,36,48,[[637,2,2,36,38],[639,1,1,38,39],[644,2,2,39,41],[646,1,1,41,42],[655,3,3,42,45],[656,3,3,45,48]]],[22,11,10,48,58,[[702,1,1,48,49],[721,1,1,49,50],[722,1,1,50,51],[728,1,1,51,52],[731,2,2,52,54],[735,1,1,54,55],[736,1,1,55,56],[737,3,2,56,58]]],[23,1,1,58,59,[[749,1,1,58,59]]],[24,3,3,59,62,[[797,3,3,59,62]]],[25,10,10,62,72,[[815,1,1,62,63],[819,4,4,63,67],[822,1,1,67,68],[834,2,2,68,70],[838,1,1,70,71],[840,1,1,71,72]]],[26,3,3,72,75,[[857,2,2,72,74],[858,1,1,74,75]]],[29,10,10,75,85,[[879,5,5,75,80],[880,3,3,80,83],[881,1,1,83,84],[883,1,1,84,85]]],[32,6,5,85,90,[[893,3,2,85,87],[895,1,1,87,88],[898,1,1,88,89],[899,1,1,89,90]]]],[909,1523,2122,2165,2503,3217,3222,4126,6495,7850,7889,9035,13029,13033,13176,13198,13621,13659,13689,13720,13726,13745,13983,14181,14258,14356,14360,14439,14520,14692,14694,14793,14863,15358,15561,15716,16668,16675,16732,16882,16892,16936,17198,17209,17220,17230,17240,17246,18115,18530,18555,18663,18716,18719,18769,18787,18812,18820,19064,20315,20324,20332,20742,20871,20877,20879,20880,20968,21290,21292,21420,21472,21973,21974,22012,22367,22370,22373,22375,22377,22380,22383,22385,22409,22435,22584,22592,22616,22655,22682]]],["+",[5,5,[[2,1,1,0,1,[[105,1,1,0,1]]],[18,2,2,1,3,[[496,1,1,1,2],[509,1,1,2,3]]],[22,2,2,3,5,[[731,2,2,3,5]]]],[3217,14181,14360,18716,18719]]],["rebellion",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13720]]],["sin",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16675]]],["sins",[2,2,[[19,2,2,0,2,[[637,1,1,0,1],[655,1,1,1,2]]]],[16668,17209]]],["transgression",[36,35,[[1,1,1,0,1,[[83,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[8,1,1,2,3,[[259,1,1,2,3]]],[17,6,6,3,9,[[442,1,1,3,4],[443,1,1,4,5],[448,1,1,5,6],[449,1,1,6,7],[468,1,1,7,8],[469,1,1,8,9]]],[18,5,5,9,14,[[509,1,1,9,10],[513,1,1,10,11],[536,1,1,11,12],[566,1,1,12,13],[584,1,1,13,14]]],[19,9,9,14,23,[[639,1,1,14,15],[644,2,2,15,17],[646,1,1,17,18],[655,2,2,18,20],[656,3,3,20,23]]],[22,4,4,23,27,[[702,1,1,23,24],[735,1,1,24,25],[736,1,1,25,26],[737,1,1,26,27]]],[25,1,1,27,28,[[834,1,1,27,28]]],[26,3,3,28,31,[[857,2,2,28,30],[858,1,1,30,31]]],[32,5,4,31,35,[[893,2,1,31,32],[895,1,1,32,33],[898,1,1,33,34],[899,1,1,34,35]]]],[2503,4126,7850,13029,13033,13176,13198,13659,13689,14356,14439,14793,15358,15716,16732,16882,16892,16936,17198,17220,17230,17240,17246,18115,18769,18787,18820,21292,21973,21974,22012,22584,22616,22655,22682]]],["transgressions",[43,42,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,1,1,1,2,[[105,1,1,1,2]]],[5,1,1,2,3,[[210,1,1,2,3]]],[10,1,1,3,4,[[298,1,1,3,4]]],[17,3,3,4,7,[[466,1,1,4,5],[470,1,1,5,6],[471,1,1,6,7]]],[18,7,7,7,14,[[482,1,1,7,8],[502,1,1,8,9],[516,1,1,9,10],[528,2,2,10,12],[542,1,1,12,13],[580,1,1,13,14]]],[22,5,4,14,18,[[721,1,1,14,15],[722,1,1,15,16],[728,1,1,16,17],[737,2,1,17,18]]],[23,1,1,18,19,[[749,1,1,18,19]]],[24,3,3,19,22,[[797,3,3,19,22]]],[25,9,9,22,31,[[815,1,1,22,23],[819,4,4,23,27],[822,1,1,27,28],[834,1,1,28,29],[838,1,1,29,30],[840,1,1,30,31]]],[29,10,10,31,41,[[879,5,5,31,36],[880,3,3,36,39],[881,1,1,39,40],[883,1,1,40,41]]],[32,1,1,41,42,[[893,1,1,41,42]]]],[2165,3222,6495,9035,13621,13726,13745,13983,14258,14520,14692,14694,14863,15561,18530,18555,18663,18812,19064,20315,20324,20332,20742,20871,20877,20879,20880,20968,21290,21420,21472,22367,22370,22373,22375,22377,22380,22383,22385,22409,22435,22592]]],["trespass",[5,4,[[0,3,2,0,2,[[30,1,1,0,1],[49,2,1,1,2]]],[1,1,1,2,3,[[71,1,1,2,3]]],[8,1,1,3,4,[[260,1,1,3,4]]]],[909,1523,2122,7889]]]]},{"k":"H6589","v":[["*",[2,2,[[19,1,1,0,1,[[640,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[16750,20787]]],["+",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20787]]],["wide",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16750]]]]},{"k":"H6590","v":[["make",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21890]]]]},{"k":"H6591","v":[["*",[32,26,[[26,32,26,0,26,[[851,13,12,0,12],[853,8,6,12,18],[854,10,7,18,25],[856,1,1,25,26]]]],[21762,21763,21764,21765,21767,21774,21782,21783,21784,21788,21794,21803,21843,21844,21846,21855,21856,21861,21881,21882,21886,21889,21890,21891,21900,21949]]],["interpretation",[30,26,[[26,30,26,0,26,[[851,13,12,0,12],[853,8,6,12,18],[854,8,7,18,25],[856,1,1,25,26]]]],[21762,21763,21764,21765,21767,21774,21782,21783,21784,21788,21794,21803,21843,21844,21846,21855,21856,21861,21881,21882,21886,21889,21890,21891,21900,21949]]],["interpretations",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21890]]],["interpreting",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21886]]]]},{"k":"H6592","v":[["interpretation",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17459]]]]},{"k":"H6593","v":[["*",[16,15,[[2,4,4,0,4,[[102,4,4,0,4]]],[4,1,1,4,5,[[174,1,1,4,5]]],[5,1,1,5,6,[[188,1,1,5,6]]],[6,1,1,6,7,[[225,1,1,6,7]]],[19,1,1,7,8,[[658,1,1,7,8]]],[22,1,1,8,9,[[697,1,1,8,9]]],[23,1,1,9,10,[[757,1,1,9,10]]],[25,4,3,10,13,[[841,1,1,10,11],[845,3,2,11,13]]],[27,2,2,13,15,[[863,2,2,13,15]]]],[3099,3100,3104,3111,5481,5875,6943,17297,18013,19267,21480,21616,21617,22110,22114]]],["flax",[7,7,[[5,1,1,0,1,[[188,1,1,0,1]]],[6,1,1,1,2,[[225,1,1,1,2]]],[19,1,1,2,3,[[658,1,1,2,3]]],[22,1,1,3,4,[[697,1,1,3,4]]],[25,1,1,4,5,[[841,1,1,4,5]]],[27,2,2,5,7,[[863,2,2,5,7]]]],[5875,6943,17297,18013,21480,22110,22114]]],["linen",[9,8,[[2,4,4,0,4,[[102,4,4,0,4]]],[4,1,1,4,5,[[174,1,1,4,5]]],[23,1,1,5,6,[[757,1,1,5,6]]],[25,3,2,6,8,[[845,3,2,6,8]]]],[3099,3100,3104,3111,5481,19267,21616,21617]]]]},{"k":"H6594","v":[["*",[4,3,[[1,2,1,0,1,[[58,2,1,0,1]]],[22,2,2,1,3,[[720,1,1,1,2],[721,1,1,2,3]]]],[1773,18483,18522]]],["flax",[3,2,[[1,2,1,0,1,[[58,2,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]]],[1773,18483]]],["tow",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18522]]]]},{"k":"H6595","v":[["*",[15,15,[[0,1,1,0,1,[[17,1,1,0,1]]],[2,2,2,1,3,[[91,1,1,1,2],[95,1,1,2,3]]],[6,1,1,3,4,[[229,1,1,3,4]]],[7,1,1,4,5,[[233,1,1,4,5]]],[8,2,2,5,7,[[237,1,1,5,6],[263,1,1,6,7]]],[9,1,1,7,8,[[278,1,1,7,8]]],[10,1,1,8,9,[[307,1,1,8,9]]],[17,1,1,9,10,[[466,1,1,9,10]]],[18,1,1,10,11,[[624,1,1,10,11]]],[19,3,3,11,14,[[644,1,1,11,12],[650,1,1,12,13],[655,1,1,13,14]]],[25,1,1,14,15,[[814,1,1,14,15]]]],[429,2768,2870,7029,7163,7276,7964,8289,9328,13605,16368,16874,17052,17217,20727]]],["+",[1,1,[[9,1,1,0,1,[[278,1,1,0,1]]]],[8289]]],["morsel",[8,8,[[0,1,1,0,1,[[17,1,1,0,1]]],[6,1,1,1,2,[[229,1,1,1,2]]],[7,1,1,2,3,[[233,1,1,2,3]]],[8,1,1,3,4,[[263,1,1,3,4]]],[10,1,1,4,5,[[307,1,1,4,5]]],[17,1,1,5,6,[[466,1,1,5,6]]],[19,2,2,6,8,[[644,1,1,6,7],[650,1,1,7,8]]]],[429,7029,7163,7964,9328,13605,16874,17052]]],["morsels",[1,1,[[18,1,1,0,1,[[624,1,1,0,1]]]],[16368]]],["piece",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[19,1,1,1,2,[[655,1,1,1,2]]]],[7276,17217]]],["pieces",[3,3,[[2,2,2,0,2,[[91,1,1,0,1],[95,1,1,1,2]]],[25,1,1,2,3,[[814,1,1,2,3]]]],[2768,2870,20727]]]]},{"k":"H6596","v":[["*",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]]],[8984,17724]]],["hinges",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8984]]],["parts",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17724]]]]},{"k":"H6597","v":[["*",[25,25,[[3,2,2,0,2,[[122,1,1,0,1],[128,1,1,1,2]]],[5,2,2,2,4,[[196,1,1,2,3],[197,1,1,3,4]]],[13,1,1,4,5,[[395,1,1,4,5]]],[17,3,3,5,8,[[440,1,1,5,6],[444,1,1,6,7],[457,1,1,7,8]]],[18,2,2,8,10,[[541,2,2,8,10]]],[19,4,4,10,14,[[630,1,1,10,11],[633,1,1,11,12],[634,1,1,12,13],[651,1,1,13,14]]],[20,1,1,14,15,[[667,1,1,14,15]]],[22,4,4,15,19,[[707,1,1,15,16],[708,1,1,16,17],[725,1,1,17,18],[726,1,1,18,19]]],[23,5,5,19,24,[[748,1,1,19,20],[750,1,1,20,21],[759,1,1,21,22],[762,1,1,22,23],[795,1,1,23,24]]],[38,1,1,24,25,[[927,1,1,24,25]]]],[3832,4063,6073,6114,11827,12954,13074,13399,14854,14857,16480,16555,16597,17101,17487,18198,18230,18610,18617,19047,19115,19323,19406,20220,23121]]],["straightway",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16597]]],["sudden",[2,2,[[17,1,1,0,1,[[457,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]]],[13399,16480]]],["suddenly",[22,22,[[3,2,2,0,2,[[122,1,1,0,1],[128,1,1,1,2]]],[5,2,2,2,4,[[196,1,1,2,3],[197,1,1,3,4]]],[13,1,1,4,5,[[395,1,1,4,5]]],[17,2,2,5,7,[[440,1,1,5,6],[444,1,1,6,7]]],[18,2,2,7,9,[[541,2,2,7,9]]],[19,2,2,9,11,[[633,1,1,9,10],[651,1,1,10,11]]],[20,1,1,11,12,[[667,1,1,11,12]]],[22,4,4,12,16,[[707,1,1,12,13],[708,1,1,13,14],[725,1,1,14,15],[726,1,1,15,16]]],[23,5,5,16,21,[[748,1,1,16,17],[750,1,1,17,18],[759,1,1,18,19],[762,1,1,19,20],[795,1,1,20,21]]],[38,1,1,21,22,[[927,1,1,21,22]]]],[3832,4063,6073,6114,11827,12954,13074,14854,14857,16555,17101,17487,18198,18230,18610,18617,19047,19115,19323,19406,20220,23121]]]]},{"k":"H6598","v":[["*",[6,6,[[26,6,6,0,6,[[850,5,5,0,5],[860,1,1,5,6]]]],[21742,21745,21750,21752,21753,22062]]],["+",[4,4,[[26,4,4,0,4,[[850,4,4,0,4]]]],[21742,21745,21750,21752]]],["meat",[2,2,[[26,2,2,0,2,[[850,1,1,0,1],[860,1,1,1,2]]]],[21753,22062]]]]},{"k":"H6599","v":[["*",[2,2,[[16,1,1,0,1,[[426,1,1,0,1]]],[20,1,1,1,2,[[666,1,1,1,2]]]],[12722,17469]]],["against",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17469]]],["decree",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12722]]]]},{"k":"H6600","v":[["*",[6,6,[[14,4,4,0,4,[[406,1,1,0,1],[407,2,2,1,3],[408,1,1,3,4]]],[26,2,2,4,6,[[852,1,1,4,5],[853,1,1,5,6]]]],[12127,12141,12145,12162,21823,21854]]],["answer",[2,2,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]]],[12127,12145]]],["letter",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12141]]],["matter",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[853,1,1,1,2]]]],[21823,21854]]],["word",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12162]]]]},{"k":"H6601","v":[["*",[28,26,[[0,1,1,0,1,[[8,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[4,1,1,2,3,[[163,1,1,2,3]]],[6,2,2,3,5,[[224,1,1,3,4],[226,1,1,4,5]]],[9,1,1,5,6,[[269,1,1,5,6]]],[10,3,3,6,9,[[312,3,3,6,9]]],[13,3,3,9,12,[[384,3,3,9,12]]],[17,3,3,12,15,[[440,1,1,12,13],[466,2,2,13,15]]],[18,1,1,15,16,[[555,1,1,15,16]]],[19,5,5,16,21,[[628,1,1,16,17],[643,1,1,17,18],[647,1,1,18,19],[651,1,1,19,20],[652,1,1,20,21]]],[23,3,2,21,23,[[764,3,2,21,23]]],[25,2,1,23,24,[[815,2,1,23,24]]],[27,2,2,24,26,[[863,1,1,24,25],[868,1,1,25,26]]]],[232,2129,5224,6924,6954,8106,9500,9501,9502,11561,11562,11563,12953,13597,13615,15149,16410,16869,16973,17107,17128,19429,19432,20740,22119,22189]]],["+",[4,4,[[6,1,1,0,1,[[224,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]],[13,1,1,2,3,[[384,1,1,2,3]]],[25,1,1,3,4,[[815,1,1,3,4]]]],[6924,9500,11561,20740]]],["Entice",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6954]]],["allure",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22119]]],["deceive",[2,2,[[9,1,1,0,1,[[269,1,1,0,1]]],[19,1,1,1,2,[[651,1,1,1,2]]]],[8106,17107]]],["deceived",[5,4,[[4,1,1,0,1,[[163,1,1,0,1]]],[17,1,1,1,2,[[466,1,1,1,2]]],[23,2,1,2,3,[[764,2,1,2,3]]],[25,1,1,3,4,[[815,1,1,3,4]]]],[5224,13597,19429,20740]]],["enlarge",[1,1,[[0,1,1,0,1,[[8,1,1,0,1]]]],[232]]],["entice",[4,4,[[1,1,1,0,1,[[71,1,1,0,1]]],[13,2,2,1,3,[[384,2,2,1,3]]],[19,1,1,3,4,[[628,1,1,3,4]]]],[2129,11562,11563,16410]]],["enticed",[2,2,[[17,1,1,0,1,[[466,1,1,0,1]]],[23,1,1,1,2,[[764,1,1,1,2]]]],[13615,19432]]],["enticeth",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16869]]],["flatter",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15149]]],["flattereth",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16973]]],["persuade",[2,2,[[10,2,2,0,2,[[312,2,2,0,2]]]],[9501,9502]]],["persuaded",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17128]]],["silly",[2,2,[[17,1,1,0,1,[[440,1,1,0,1]]],[27,1,1,1,2,[[868,1,1,1,2]]]],[12953,22189]]]]},{"k":"H6602","v":[["Pethuel",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22292]]]]},{"k":"H6603","v":[["*",[11,11,[[1,6,6,0,6,[[77,3,3,0,3],[88,3,3,3,6]]],[10,1,1,6,7,[[296,1,1,6,7]]],[13,2,2,7,9,[[368,2,2,7,9]]],[18,1,1,9,10,[[551,1,1,9,10]]],[37,1,1,10,11,[[913,1,1,10,11]]]],[2304,2314,2329,2670,2678,2694,8925,11218,11225,15054,22921]]],["+",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11218]]],["carved",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8925]]],["engravings",[5,5,[[1,5,5,0,5,[[77,3,3,0,3],[88,2,2,3,5]]]],[2304,2314,2329,2678,2694]]],["graven",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2670]]],["graving",[2,2,[[13,1,1,0,1,[[368,1,1,0,1]]],[37,1,1,1,2,[[913,1,1,1,2]]]],[11225,22921]]],["work",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15054]]]]},{"k":"H6604","v":[["*",[2,2,[[3,1,1,0,1,[[138,1,1,0,1]]],[4,1,1,1,2,[[175,1,1,1,2]]]],[4380,5504]]],["+",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5504]]],["Pethor",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4380]]]]},{"k":"H6605","v":[["*",[143,132,[[0,9,9,0,9,[[6,1,1,0,1],[7,1,1,1,2],[23,1,1,2,3],[28,1,1,3,4],[29,1,1,4,5],[40,1,1,5,6],[41,1,1,6,7],[42,1,1,7,8],[43,1,1,8,9]]],[1,6,6,9,15,[[51,1,1,9,10],[70,1,1,10,11],[77,3,3,11,14],[88,1,1,14,15]]],[3,4,4,15,19,[[132,1,1,15,16],[135,1,1,16,17],[138,1,1,17,18],[142,1,1,18,19]]],[4,6,4,19,23,[[167,4,2,19,21],[172,1,1,21,22],[180,1,1,22,23]]],[5,2,2,23,25,[[194,1,1,23,24],[196,1,1,24,25]]],[6,4,3,25,28,[[213,2,1,25,26],[214,1,1,26,27],[229,1,1,27,28]]],[8,1,1,28,29,[[238,1,1,28,29]]],[10,4,4,29,33,[[297,1,1,29,30],[298,2,2,30,32],[310,1,1,32,33]]],[11,5,4,33,37,[[321,2,2,33,35],[325,2,1,35,36],[327,1,1,36,37]]],[13,7,7,37,44,[[368,2,2,37,39],[369,1,1,39,40],[372,2,2,40,42],[373,1,1,42,43],[395,1,1,43,44]]],[15,6,5,44,49,[[413,1,1,44,45],[418,1,1,45,46],[419,1,1,46,47],[420,2,1,47,48],[425,1,1,48,49]]],[17,13,13,49,62,[[438,1,1,49,50],[446,1,1,50,51],[447,2,2,51,53],[464,1,1,53,54],[465,1,1,54,55],[466,1,1,55,56],[467,2,2,56,58],[468,1,1,58,59],[473,1,1,59,60],[474,1,1,60,61],[476,1,1,61,62]]],[18,18,18,62,80,[[482,1,1,62,63],[507,1,1,63,64],[514,1,1,64,65],[515,1,1,65,66],[516,1,1,66,67],[526,1,1,67,68],[528,1,1,68,69],[555,2,2,69,71],[579,1,1,71,72],[581,1,1,72,73],[582,2,2,73,75],[583,1,1,75,76],[586,1,1,76,77],[593,1,1,77,78],[595,1,1,78,79],[622,1,1,79,80]]],[19,4,4,80,84,[[651,1,1,80,81],[658,3,3,81,84]]],[21,3,3,84,87,[[675,3,3,84,87]]],[22,21,18,87,105,[[683,1,1,87,88],[692,1,1,88,89],[698,1,1,89,90],[700,2,1,90,91],[702,1,1,91,92],[704,1,1,92,93],[706,1,1,93,94],[713,1,1,94,95],[719,1,1,95,96],[723,3,2,96,98],[726,1,1,98,99],[728,1,1,99,100],[729,1,1,100,101],[730,1,1,101,102],[731,2,1,102,103],[736,1,1,103,104],[738,1,1,104,105]]],[23,6,6,105,111,[[745,1,1,105,106],[749,1,1,106,107],[757,1,1,107,108],[784,1,1,108,109],[794,2,2,109,111]]],[25,15,13,111,124,[[802,1,1,111,112],[804,2,2,112,114],[822,2,2,114,116],[825,1,1,116,117],[826,1,1,117,118],[834,2,1,118,119],[838,2,2,119,121],[845,1,1,121,122],[847,3,2,122,124]]],[26,1,1,124,125,[[859,1,1,124,125]]],[29,1,1,125,126,[[886,1,1,125,126]]],[33,3,2,126,128,[[901,1,1,126,127],[902,2,1,127,128]]],[37,3,3,128,131,[[913,1,1,128,129],[921,1,1,129,130],[923,1,1,130,131]]],[38,1,1,131,132,[[927,1,1,131,132]]]],[170,189,623,826,852,1251,1279,1311,1335,1560,2110,2302,2304,2329,2670,4226,4304,4403,4499,5327,5330,5438,5623,6019,6086,6593,6618,7051,7291,8970,9014,9037,9419,9759,9766,9888,9941,11218,11225,11236,11302,11322,11339,11794,12302,12406,12423,12498,12690,12905,13113,13142,13146,13551,13568,13620,13647,13648,13652,13824,13839,13902,13982,14330,14464,14503,14521,14652,14706,15115,15136,15541,15599,15626,15647,15668,15757,15864,15888,16336,17086,17292,17293,17310,17600,17603,17604,17766,17945,18031,18074,18113,18132,18188,18325,18469,18562,18569,18622,18667,18687,18698,18718,18792,18832,18960,19074,19285,19945,20191,20192,20465,20504,20529,20966,20972,21083,21092,21302,21409,21410,21601,21656,21667,22031,22486,22705,22725,22921,23029,23060,23130]]],["+",[29,28,[[0,6,6,0,6,[[7,1,1,0,1],[28,1,1,1,2],[29,1,1,2,3],[40,1,1,3,4],[41,1,1,4,5],[42,1,1,5,6]]],[1,1,1,6,7,[[77,1,1,6,7]]],[3,3,3,7,10,[[132,1,1,7,8],[138,1,1,8,9],[142,1,1,9,10]]],[4,2,2,10,12,[[167,2,2,10,12]]],[5,1,1,12,13,[[196,1,1,12,13]]],[6,1,1,13,14,[[214,1,1,13,14]]],[8,1,1,14,15,[[238,1,1,14,15]]],[13,2,2,15,17,[[368,1,1,15,16],[395,1,1,16,17]]],[17,1,1,17,18,[[447,1,1,17,18]]],[18,1,1,18,19,[[622,1,1,18,19]]],[23,1,1,19,20,[[794,1,1,19,20]]],[25,7,7,20,27,[[804,2,2,20,22],[825,1,1,22,23],[826,1,1,23,24],[834,1,1,24,25],[838,2,2,25,27]]],[33,2,1,27,28,[[902,2,1,27,28]]]],[189,826,852,1251,1279,1311,2304,4226,4403,4499,5327,5330,6086,6618,7291,11218,11794,13142,16336,20191,20504,20529,21083,21092,21302,21409,21410,22725]]],["Open",[7,7,[[11,1,1,0,1,[[325,1,1,0,1]]],[18,1,1,1,2,[[595,1,1,1,2]]],[19,2,2,2,4,[[658,2,2,2,4]]],[21,1,1,4,5,[[675,1,1,4,5]]],[22,1,1,5,6,[[704,1,1,5,6]]],[37,1,1,6,7,[[921,1,1,6,7]]]],[9888,15888,17292,17293,17600,18132,23029]]],["drawn",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20972]]],["engrave",[1,1,[[37,1,1,0,1,[[913,1,1,0,1]]]],[22921]]],["forth",[2,2,[[23,1,1,0,1,[[745,1,1,0,1]]],[29,1,1,1,2,[[886,1,1,1,2]]]],[18960,22486]]],["free",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15626]]],["grave",[3,3,[[1,2,2,0,2,[[77,2,2,0,2]]],[13,1,1,2,3,[[368,1,1,2,3]]]],[2302,2329,11225]]],["graved",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[13,1,1,1,2,[[369,1,1,1,2]]]],[8970,11236]]],["graven",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2670]]],["loose",[6,6,[[17,1,1,0,1,[[473,1,1,0,1]]],[18,1,1,1,2,[[579,1,1,1,2]]],[22,3,3,2,5,[[698,1,1,2,3],[723,1,1,3,4],[736,1,1,4,5]]],[23,1,1,5,6,[[784,1,1,5,6]]]],[13824,15541,18031,18562,18792,19945]]],["loosed",[5,5,[[17,2,2,0,2,[[465,1,1,0,1],[474,1,1,1,2]]],[18,1,1,2,3,[[593,1,1,2,3]]],[22,2,2,3,5,[[683,1,1,3,4],[729,1,1,4,5]]]],[13568,13839,15864,17766,18687]]],["looseth",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13146]]],["off",[2,2,[[10,1,1,0,1,[[310,1,1,0,1]]],[18,1,1,1,2,[[507,1,1,1,2]]]],[9419,14330]]],["open",[35,34,[[1,1,1,0,1,[[70,1,1,0,1]]],[3,1,1,1,2,[[135,1,1,1,2]]],[4,2,2,2,4,[[172,1,1,2,3],[180,1,1,3,4]]],[5,1,1,4,5,[[194,1,1,4,5]]],[10,2,2,5,7,[[298,2,2,5,7]]],[11,1,1,7,8,[[321,1,1,7,8]]],[13,3,3,8,11,[[372,2,2,8,10],[373,1,1,10,11]]],[15,2,2,11,13,[[413,1,1,11,12],[418,1,1,12,13]]],[17,3,3,13,16,[[446,1,1,13,14],[467,1,1,14,15],[476,1,1,15,16]]],[18,4,4,16,20,[[482,1,1,16,17],[526,1,1,17,18],[528,1,1,18,19],[555,1,1,19,20]]],[21,1,1,20,21,[[675,1,1,20,21]]],[22,8,7,21,28,[[700,2,1,21,22],[702,1,1,22,23],[706,1,1,23,24],[719,1,1,24,25],[723,2,2,25,27],[738,1,1,27,28]]],[23,3,3,28,31,[[749,1,1,28,29],[757,1,1,29,30],[794,1,1,30,31]]],[25,2,2,31,33,[[822,1,1,31,32],[847,1,1,32,33]]],[38,1,1,33,34,[[927,1,1,33,34]]]],[2110,4304,5438,5623,6019,9014,9037,9759,11302,11322,11339,12302,12406,13113,13648,13902,13982,14652,14706,15115,17603,18074,18113,18188,18469,18562,18569,18832,19074,19285,20192,20966,21667,23130]]],["opened",[34,31,[[0,2,2,0,2,[[6,1,1,0,1],[43,1,1,1,2]]],[1,1,1,2,3,[[51,1,1,2,3]]],[6,3,2,3,5,[[213,2,1,3,4],[229,1,1,4,5]]],[11,3,3,5,8,[[321,1,1,5,6],[325,1,1,6,7],[327,1,1,7,8]]],[15,4,3,8,11,[[419,1,1,8,9],[420,2,1,9,10],[425,1,1,10,11]]],[17,3,3,11,14,[[438,1,1,11,12],[466,1,1,12,13],[468,1,1,13,14]]],[18,5,5,14,19,[[516,1,1,14,15],[555,1,1,15,16],[582,1,1,16,17],[583,1,1,17,18],[586,1,1,18,19]]],[21,1,1,19,20,[[675,1,1,19,20]]],[22,4,4,20,24,[[692,1,1,20,21],[726,1,1,21,22],[728,1,1,22,23],[731,1,1,23,24]]],[25,5,4,24,28,[[802,1,1,24,25],[834,1,1,25,26],[845,1,1,26,27],[847,2,1,27,28]]],[26,1,1,28,29,[[859,1,1,28,29]]],[33,1,1,29,30,[[901,1,1,29,30]]],[37,1,1,30,31,[[923,1,1,30,31]]]],[170,1335,1560,6593,7051,9766,9888,9941,12423,12498,12690,12905,13620,13652,14521,15136,15647,15668,15757,17604,17945,18622,18667,18718,20465,21302,21601,21656,22031,22705,23060]]],["openest",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15599]]],["openeth",[4,4,[[18,1,1,0,1,[[515,1,1,0,1]]],[19,2,2,1,3,[[651,1,1,1,2],[658,1,1,2,3]]],[22,1,1,3,4,[[731,1,1,3,4]]]],[14503,17086,17310,18718]]],["out",[2,2,[[17,1,1,0,1,[[464,1,1,0,1]]],[18,1,1,1,2,[[514,1,1,1,2]]]],[13551,14464]]],["thyself",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18698]]],["ungirded",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[623]]],["unstopped",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18325]]],["vent",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13647]]],["wide",[2,2,[[4,2,2,0,2,[[167,2,2,0,2]]]],[5327,5330]]]]},{"k":"H6606","v":[["*",[2,2,[[26,2,2,0,2,[[855,1,1,0,1],[856,1,1,1,2]]]],[21915,21943]]],["open",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21915]]],["opened",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21943]]]]},{"k":"H6607","v":[["*",[164,154,[[0,10,9,0,9,[[3,1,1,0,1],[5,1,1,1,2],[17,3,3,2,5],[18,3,2,5,7],[37,1,1,7,8],[42,1,1,8,9]]],[1,22,20,9,29,[[61,2,2,9,11],[75,1,1,11,12],[78,4,4,12,16],[82,4,3,16,19],[84,2,1,19,20],[85,1,1,20,21],[87,2,2,21,23],[88,1,1,23,24],[89,5,5,24,29]]],[2,24,24,29,53,[[90,2,2,29,31],[92,1,1,31,32],[93,3,3,32,35],[97,5,5,35,40],[99,1,1,40,41],[101,1,1,41,42],[103,3,3,42,45],[104,2,2,45,47],[105,1,1,47,48],[106,4,4,48,52],[108,1,1,52,53]]],[3,17,17,53,70,[[119,2,2,53,55],[120,2,2,55,57],[122,3,3,57,60],[126,1,1,60,61],[127,1,1,61,62],[128,1,1,62,63],[132,4,4,63,67],[136,1,1,67,68],[141,1,1,68,69],[143,1,1,69,70]]],[4,2,2,70,72,[[174,1,1,70,71],[183,1,1,71,72]]],[5,3,3,72,75,[[194,1,1,72,73],[205,1,1,73,74],[206,1,1,74,75]]],[6,9,9,75,84,[[214,1,1,75,76],[219,4,4,76,80],[228,2,2,80,82],[229,2,2,82,84]]],[8,1,1,84,85,[[237,1,1,84,85]]],[9,3,3,85,88,[[276,1,1,85,86],[277,2,2,86,88]]],[10,9,9,88,97,[[296,3,3,88,91],[297,1,1,91,92],[304,2,2,92,94],[307,1,1,94,95],[309,1,1,95,96],[312,1,1,96,97]]],[11,5,5,97,102,[[316,1,1,97,98],[317,1,1,98,99],[319,1,1,99,100],[322,1,1,100,101],[335,1,1,101,102]]],[12,2,2,102,104,[[346,1,1,102,103],[356,1,1,103,104]]],[13,3,3,104,107,[[370,1,1,104,105],[378,1,1,105,106],[384,1,1,106,107]]],[15,2,2,107,109,[[415,2,2,107,109]]],[16,1,1,109,110,[[430,1,1,109,110]]],[17,2,2,110,112,[[466,2,2,110,112]]],[18,2,2,112,114,[[501,2,2,112,114]]],[19,6,6,114,120,[[628,1,1,114,115],[632,1,1,115,116],[635,2,2,116,118],[636,1,1,118,119],[644,1,1,119,120]]],[21,1,1,120,121,[[677,1,1,120,121]]],[22,2,2,121,123,[[681,1,1,121,122],[691,1,1,122,123]]],[23,5,5,123,128,[[745,1,1,123,124],[763,1,1,124,125],[770,1,1,125,126],[780,1,1,126,127],[787,1,1,127,128]]],[25,30,23,128,151,[[809,5,5,128,133],[811,1,1,133,134],[812,1,1,134,135],[834,1,1,135,136],[841,5,4,136,140],[842,10,5,140,145],[843,5,4,145,149],[847,1,1,149,150],[848,1,1,150,151]]],[27,1,1,151,152,[[863,1,1,151,152]]],[32,2,2,152,154,[[897,1,1,152,153],[899,1,1,153,154]]]],[86,153,425,426,434,463,468,1133,1309,1838,1839,2271,2340,2347,2368,2378,2481,2482,2483,2546,2603,2641,2663,2702,2712,2713,2719,2735,2736,2748,2750,2780,2799,2802,2813,2920,2921,2948,2950,2952,2984,3050,3122,3134,3149,3182,3197,3208,3239,3240,3241,3244,3302,3717,3718,3768,3769,3833,3836,3841,3991,4034,4064,4212,4213,4221,4244,4317,4477,4556,5491,5743,6031,6372,6376,6619,6789,6794,6798,6806,7009,7010,7050,7051,7262,8248,8268,8282,8904,8927,8929,8939,9224,9245,9327,9400,9490,9618,9656,9710,9801,10173,10636,10916,11268,11447,11551,12347,12348,12780,13597,13622,14248,14250,16421,16525,16605,16636,16652,16892,17640,17733,17908,18961,19409,19582,19852,20006,20607,20611,20612,20618,20620,20652,20656,21310,21488,21490,21515,21517,21528,21529,21537,21543,21546,21554,21556,21563,21564,21658,21680,22120,22639,22669]]],["+",[5,5,[[0,1,1,0,1,[[17,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[2,2,2,2,4,[[97,1,1,2,3],[99,1,1,3,4]]],[15,1,1,4,5,[[415,1,1,4,5]]]],[426,1838,2950,2984,12348]]],["door",[111,104,[[0,8,7,0,7,[[3,1,1,0,1],[5,1,1,1,2],[17,2,2,2,4],[18,3,2,4,6],[42,1,1,6,7]]],[1,20,19,7,26,[[61,1,1,7,8],[75,1,1,8,9],[78,4,4,9,13],[82,4,3,13,16],[84,1,1,16,17],[85,1,1,17,18],[87,2,2,18,20],[88,1,1,20,21],[89,5,5,21,26]]],[2,22,22,26,48,[[90,2,2,26,28],[92,1,1,28,29],[93,3,3,29,32],[97,4,4,32,36],[101,1,1,36,37],[103,3,3,37,40],[104,2,2,40,42],[105,1,1,42,43],[106,4,4,43,47],[108,1,1,47,48]]],[3,17,17,48,65,[[119,2,2,48,50],[120,2,2,50,52],[122,3,3,52,55],[126,1,1,55,56],[127,1,1,56,57],[128,1,1,57,58],[132,4,4,58,62],[136,1,1,62,63],[141,1,1,63,64],[143,1,1,64,65]]],[4,2,2,65,67,[[174,1,1,65,66],[183,1,1,66,67]]],[5,1,1,67,68,[[205,1,1,67,68]]],[6,4,4,68,72,[[214,1,1,68,69],[219,1,1,69,70],[229,2,2,70,72]]],[8,1,1,72,73,[[237,1,1,72,73]]],[9,1,1,73,74,[[277,1,1,73,74]]],[10,4,4,74,78,[[296,2,2,74,76],[304,2,2,76,78]]],[11,2,2,78,80,[[316,1,1,78,79],[317,1,1,79,80]]],[12,1,1,80,81,[[346,1,1,80,81]]],[15,1,1,81,82,[[415,1,1,81,82]]],[17,2,2,82,84,[[466,2,2,82,84]]],[19,2,2,84,86,[[632,1,1,84,85],[636,1,1,85,86]]],[25,22,17,86,103,[[809,5,5,86,91],[811,1,1,91,92],[812,1,1,92,93],[841,2,1,93,94],[842,9,5,94,99],[843,2,2,99,101],[847,1,1,101,102],[848,1,1,102,103]]],[27,1,1,103,104,[[863,1,1,103,104]]]],[86,153,425,434,463,468,1309,1839,2271,2340,2347,2368,2378,2481,2482,2483,2546,2603,2641,2663,2702,2712,2713,2719,2735,2736,2748,2750,2780,2799,2802,2813,2920,2921,2948,2952,3050,3122,3134,3149,3182,3197,3208,3239,3240,3241,3244,3302,3717,3718,3768,3769,3833,3836,3841,3991,4034,4064,4212,4213,4221,4244,4317,4477,4556,5491,5743,6372,6619,6806,7050,7051,7262,8268,8904,8929,9224,9245,9618,9656,10636,12347,13597,13622,16525,16652,20607,20611,20612,20618,20620,20652,20656,21490,21528,21529,21537,21543,21546,21554,21564,21658,21680,22120]]],["doors",[11,11,[[10,1,1,0,1,[[297,1,1,0,1]]],[18,2,2,1,3,[[501,2,2,1,3]]],[19,2,2,3,5,[[635,2,2,3,5]]],[25,5,5,5,10,[[834,1,1,5,6],[842,1,1,6,7],[843,3,3,7,10]]],[32,1,1,10,11,[[899,1,1,10,11]]]],[8939,14248,14250,16605,16636,21310,21537,21556,21563,21564,22669]]],["entering",[11,11,[[5,2,2,0,2,[[194,1,1,0,1],[206,1,1,1,2]]],[6,5,5,2,7,[[219,3,3,2,5],[228,2,2,5,7]]],[9,2,2,7,9,[[276,1,1,7,8],[277,1,1,8,9]]],[10,1,1,9,10,[[296,1,1,9,10]]],[23,1,1,10,11,[[745,1,1,10,11]]]],[6031,6376,6789,6794,6798,7009,7010,8248,8282,8927,18961]]],["entrance",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[378,1,1,1,2]]]],[9490,11447]]],["entrances",[1,1,[[32,1,1,0,1,[[897,1,1,0,1]]]],[22639]]],["entries",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21515]]],["entry",[7,7,[[13,1,1,0,1,[[370,1,1,0,1]]],[23,4,4,1,5,[[763,1,1,1,2],[770,1,1,2,3],[780,1,1,3,4],[787,1,1,4,5]]],[25,2,2,5,7,[[841,2,2,5,7]]]],[11268,19409,19582,19852,20006,21488,21517]]],["gate",[4,4,[[10,1,1,0,1,[[307,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]],[16,1,1,2,3,[[430,1,1,2,3]]],[19,1,1,3,4,[[644,1,1,3,4]]]],[9327,10916,12780,16892]]],["gates",[3,3,[[21,1,1,0,1,[[677,1,1,0,1]]],[22,2,2,1,3,[[681,1,1,1,2],[691,1,1,2,3]]]],[17640,17733,17908]]],["in",[6,6,[[1,1,1,0,1,[[84,1,1,0,1]]],[10,1,1,1,2,[[309,1,1,1,2]]],[11,3,3,2,5,[[319,1,1,2,3],[322,1,1,3,4],[335,1,1,4,5]]],[13,1,1,5,6,[[384,1,1,5,6]]]],[2546,9400,9710,9801,10173,11551]]],["openings",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16421]]],["place",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1133]]]]},{"k":"H6608","v":[["entrance",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16028]]]]},{"k":"H6609","v":[["swords",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14753]]]]},{"k":"H6610","v":[["*",[2,2,[[25,2,2,0,2,[[817,1,1,0,1],[830,1,1,1,2]]]],[20825,21204]]],["open",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20825]]],["opening",[1,1,[[25,1,1,0,1,[[830,1,1,0,1]]]],[21204]]]]},{"k":"H6611","v":[["Pethahiah",[4,4,[[12,1,1,0,1,[[361,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]],[15,2,2,2,4,[[421,1,1,2,3],[423,1,1,3,4]]]],[11031,12275,12516,12612]]]]},{"k":"H6612","v":[["*",[19,18,[[18,3,3,0,3,[[496,1,1,0,1],[593,1,1,1,2],[596,1,1,2,3]]],[19,15,14,3,17,[[628,4,3,3,6],[634,1,1,6,7],[635,1,1,7,8],[636,3,3,8,11],[641,2,2,11,13],[646,1,1,13,14],[648,1,1,14,15],[649,1,1,15,16],[654,1,1,16,17]]],[25,1,1,17,18,[[846,1,1,17,18]]]],[14175,15854,16028,16404,16422,16432,16582,16607,16642,16644,16654,16787,16790,16950,16995,17018,17181,21650]]],["+",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21650]]],["foolish",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16644]]],["ones",[2,2,[[19,2,2,0,2,[[628,1,1,0,1],[634,1,1,1,2]]]],[16422,16582]]],["simple",[14,14,[[18,3,3,0,3,[[496,1,1,0,1],[593,1,1,1,2],[596,1,1,2,3]]],[19,11,11,3,14,[[628,2,2,3,5],[635,1,1,5,6],[636,2,2,6,8],[641,2,2,8,10],[646,1,1,10,11],[648,1,1,11,12],[649,1,1,12,13],[654,1,1,13,14]]]],[14175,15854,16028,16404,16432,16607,16642,16654,16787,16790,16950,16995,17018,17181]]],["simplicity",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16422]]]]},{"k":"H6613","v":[["breadth",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[852,1,1,1,2]]]],[12154,21808]]]]},{"k":"H6614","v":[["stomacher",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17731]]]]},{"k":"H6615","v":[["simple",[1,1,[[19,1,1,0,1,[[636,1,1,0,1]]]],[16651]]]]},{"k":"H6616","v":[["*",[11,11,[[0,2,2,0,2,[[37,2,2,0,2]]],[1,5,5,2,7,[[77,2,2,2,4],[88,3,3,4,7]]],[3,2,2,7,9,[[131,1,1,7,8],[135,1,1,8,9]]],[6,1,1,9,10,[[226,1,1,9,10]]],[25,1,1,10,11,[[841,1,1,10,11]]]],[1137,1144,2321,2330,2667,2685,2695,4191,4304,6958,21480]]],["bound",[1,1,[[3,1,1,0,1,[[135,1,1,0,1]]]],[4304]]],["bracelets",[2,2,[[0,2,2,0,2,[[37,2,2,0,2]]]],[1137,1144]]],["lace",[4,4,[[1,4,4,0,4,[[77,2,2,0,2],[88,2,2,2,4]]]],[2321,2330,2685,2695]]],["line",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21480]]],["ribband",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4191]]],["thread",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6958]]],["wires",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2667]]]]},{"k":"H6617","v":[["*",[5,5,[[0,1,1,0,1,[[29,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,1,1,2,3,[[440,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]],[19,1,1,4,5,[[635,1,1,4,5]]]],[838,8629,12964,14144,16610]]],["froward",[3,3,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]],[19,1,1,2,3,[[635,1,1,2,3]]]],[12964,14144,16610]]],["unsavoury",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8629]]],["wrestled",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[838]]]]},{"k":"H6618","v":[["crooked",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5763]]]]},{"k":"H6619","v":[["Pithom",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1543]]]]},{"k":"H6620","v":[["*",[6,6,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,2,2,1,3,[[455,2,2,1,3]]],[18,2,2,3,5,[[535,1,1,3,4],[568,1,1,4,5]]],[22,1,1,5,6,[[689,1,1,5,6]]]],[5791,13340,13342,14783,15408,17892]]],["adder",[2,2,[[18,2,2,0,2,[[535,1,1,0,1],[568,1,1,1,2]]]],[14783,15408]]],["asp",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17892]]],["asps",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,2,2,1,3,[[455,2,2,1,3]]]],[5791,13340,13342]]]]},{"k":"H6621","v":[["*",[7,7,[[3,2,2,0,2,[[122,1,1,0,1],[151,1,1,1,2]]],[19,2,2,2,4,[[633,1,1,2,3],[656,1,1,3,4]]],[22,2,2,4,6,[[707,1,1,4,5],[708,1,1,5,6]]],[34,1,1,6,7,[[904,1,1,6,7]]]],[3832,4867,16555,17225,18198,18230,22755]]],["instant",[2,2,[[22,2,2,0,2,[[707,1,1,0,1],[708,1,1,1,2]]]],[18198,18230]]],["suddenly",[4,4,[[3,1,1,0,1,[[151,1,1,0,1]]],[19,2,2,1,3,[[633,1,1,1,2],[656,1,1,2,3]]],[34,1,1,3,4,[[904,1,1,3,4]]]],[4867,16555,17225,22755]]],["very",[1,1,[[3,1,1,0,1,[[122,1,1,0,1]]]],[3832]]]]},{"k":"H6622","v":[["*",[9,7,[[0,9,7,0,7,[[39,3,3,0,3],[40,6,4,3,7]]]],[1180,1188,1194,1203,1207,1208,1210]]],["interpret",[4,3,[[0,4,3,0,3,[[40,4,3,0,3]]]],[1203,1207,1210]]],["interpretation",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1188]]],["interpreted",[3,3,[[0,3,3,0,3,[[39,1,1,0,1],[40,2,2,1,3]]]],[1194,1207,1208]]],["interpreter",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1180]]]]},{"k":"H6623","v":[["*",[5,5,[[0,5,5,0,5,[[39,4,4,0,4],[40,1,1,4,5]]]],[1177,1180,1184,1190,1206]]],["interpretation",[4,4,[[0,4,4,0,4,[[39,3,3,0,3],[40,1,1,3,4]]]],[1177,1184,1190,1206]]],["interpretations",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1180]]]]},{"k":"H6624","v":[["*",[5,5,[[22,1,1,0,1,[[689,1,1,0,1]]],[23,2,2,1,3,[[788,2,2,1,3]]],[25,2,2,3,5,[[830,1,1,3,4],[831,1,1,4,5]]]],[17895,20011,20025,21197,21218]]],["+",[2,2,[[22,1,1,0,1,[[689,1,1,0,1]]],[25,1,1,1,2,[[831,1,1,1,2]]]],[17895,21218]]],["Pathros",[3,3,[[23,2,2,0,2,[[788,2,2,0,2]]],[25,1,1,2,3,[[830,1,1,2,3]]]],[20011,20025,21197]]]]},{"k":"H6625","v":[["Pathrusim",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[248,10264]]]]},{"k":"H6626","v":[["part",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2768]]]]},{"k":"H6627","v":[["*",[2,2,[[4,1,1,0,1,[[175,1,1,0,1]]],[25,1,1,1,2,[[805,1,1,1,2]]]],[5513,20541]]],["cometh",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5513]]],["out",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20541]]]]},{"k":"H6628","v":[["trees",[2,2,[[17,2,2,0,2,[[475,2,2,0,2]]]],[13885,13886]]]]},{"k":"H6629","v":[["*",[274,247,[[0,63,52,0,52,[[3,2,2,0,2],[11,1,1,2,3],[12,1,1,3,4],[19,1,1,4,5],[20,2,2,5,7],[23,1,1,7,8],[25,1,1,8,9],[26,1,1,9,10],[28,8,7,10,17],[29,14,9,17,26],[30,11,8,26,34],[31,2,2,34,36],[32,2,1,36,37],[33,1,1,37,38],[36,3,3,38,41],[37,3,3,41,44],[44,1,1,44,45],[45,3,2,45,47],[46,4,4,47,51],[49,1,1,51,52]]],[1,15,14,52,66,[[51,3,3,52,55],[52,2,1,55,56],[58,1,1,56,57],[59,2,2,57,59],[61,3,3,59,62],[69,1,1,62,63],[71,2,2,63,65],[83,1,1,65,66]]],[2,9,9,66,75,[[90,2,2,66,68],[92,1,1,68,69],[94,3,3,69,72],[95,1,1,72,73],[111,1,1,73,74],[116,1,1,74,75]]],[3,12,12,75,87,[[127,1,1,75,76],[131,1,1,76,77],[138,1,1,77,78],[143,1,1,78,79],[147,6,6,79,85],[148,2,2,85,87]]],[4,17,16,87,103,[[159,1,1,87,88],[160,1,1,88,89],[164,3,3,89,92],[166,2,2,92,94],[167,3,2,94,96],[168,1,1,96,97],[170,1,1,97,98],[180,4,4,98,102],[184,1,1,102,103]]],[5,1,1,103,104,[[193,1,1,103,104]]],[8,20,19,104,123,[[243,1,1,104,105],[249,1,1,105,106],[250,4,4,106,110],[251,2,2,110,112],[252,4,4,112,116],[259,1,1,116,117],[260,5,4,117,121],[262,1,1,121,122],[265,1,1,122,123]]],[9,5,5,123,128,[[273,1,1,123,124],[278,2,2,124,126],[283,1,1,126,127],[290,1,1,127,128]]],[10,7,7,128,135,[[291,3,3,128,131],[294,1,1,131,132],[298,2,2,132,134],[312,1,1,134,135]]],[11,1,1,135,136,[[317,1,1,135,136]]],[12,7,7,136,143,[[341,2,2,136,138],[342,1,1,138,139],[349,1,1,139,140],[354,1,1,140,141],[358,1,1,141,142],[364,1,1,142,143]]],[13,13,12,143,155,[[371,1,1,143,144],[373,1,1,144,145],[380,1,1,145,146],[381,1,1,146,147],[383,1,1,147,148],[384,2,2,148,150],[395,1,1,150,151],[396,2,1,151,152],[397,1,1,152,153],[398,1,1,153,154],[401,1,1,154,155]]],[14,1,1,155,156,[[412,1,1,155,156]]],[15,5,5,156,161,[[415,2,2,156,158],[417,1,1,158,159],[422,1,1,159,160],[424,1,1,160,161]]],[17,5,5,161,166,[[436,2,2,161,163],[456,1,1,163,164],[465,1,1,164,165],[477,1,1,165,166]]],[18,16,16,166,182,[[521,2,2,166,168],[526,1,1,168,169],[542,1,1,169,170],[551,1,1,170,171],[554,1,1,171,172],[555,2,2,172,174],[556,1,1,174,175],[557,1,1,175,176],[572,1,1,176,177],[577,1,1,177,178],[584,1,1,178,179],[591,2,2,179,181],[621,1,1,181,182]]],[19,1,1,182,183,[[654,1,1,182,183]]],[20,1,1,183,184,[[660,1,1,183,184]]],[21,1,1,184,185,[[671,1,1,184,185]]],[22,8,8,185,193,[[685,1,1,185,186],[691,1,1,186,187],[700,1,1,187,188],[731,1,1,188,189],[738,1,1,189,190],[739,1,1,190,191],[741,1,1,191,192],[743,1,1,192,193]]],[23,18,18,193,211,[[747,1,1,193,194],[749,1,1,194,195],[756,1,1,195,196],[757,1,1,196,197],[767,3,3,197,200],[769,3,3,200,203],[775,1,1,203,204],[777,2,2,204,206],[793,2,2,206,208],[794,3,3,208,211]]],[25,29,19,211,230,[[825,1,1,211,212],[826,1,1,212,213],[835,20,12,213,225],[837,4,2,225,227],[844,2,2,227,229],[846,1,1,229,230]]],[27,1,1,230,231,[[866,1,1,230,231]]],[28,1,1,231,232,[[876,1,1,231,232]]],[29,2,2,232,234,[[884,1,1,232,233],[885,1,1,233,234]]],[31,1,1,234,235,[[891,1,1,234,235]]],[32,3,3,235,238,[[894,1,1,235,236],[897,1,1,236,237],[899,1,1,237,238]]],[34,1,1,238,239,[[905,1,1,238,239]]],[35,1,1,239,240,[[907,1,1,239,240]]],[37,9,7,240,247,[[919,1,1,240,241],[920,1,1,241,242],[921,6,4,242,246],[923,1,1,246,247]]]],[81,83,314,323,509,540,541,626,706,736,797,798,801,802,803,804,805,861,862,866,868,869,870,871,872,873,877,881,883,885,892,911,914,916,933,935,973,1008,1085,1095,1097,1131,1132,1136,1368,1418,1420,1421,1423,1424,1437,1514,1570,1571,1573,1580,1745,1786,1801,1837,1848,1854,2075,2114,2143,2499,2747,2755,2784,2836,2845,2848,2855,3390,3602,4046,4156,4415,4571,4692,4694,4696,4700,4701,4707,4734,4754,5124,5150,5246,5257,5261,5313,5316,5333,5338,5344,5388,5615,5629,5642,5662,5772,6000,7386,7540,7569,7574,7575,7581,7606,7614,7633,7638,7646,7652,7842,7863,7865,7877,7879,7939,7998,8188,8288,8290,8478,8709,8726,8736,8742,8867,8990,9048,9497,9673,10424,10426,10449,10760,10870,10951,11140,11274,11329,11490,11501,11534,11544,11558,11824,11851,11860,11904,11973,12271,12328,12359,12400,12585,12663,12872,12885,13366,13558,13934,14582,14593,14662,14873,15049,15113,15165,15183,15198,15199,15461,15511,15740,15826,15828,16318,17192,17340,17545,17803,17920,18065,18717,18828,18848,18877,18907,19026,19075,19252,19286,19485,19486,19487,19568,19569,19570,19703,19787,19788,20147,20156,20172,20174,20211,21061,21088,21315,21316,21319,21321,21323,21324,21325,21328,21330,21332,21335,21344,21396,21397,21595,21597,21645,22158,22309,22454,22479,22565,22607,22641,22678,22785,22811,23015,23018,23032,23035,23039,23045,23066]]],["+",[14,14,[[0,5,5,0,5,[[37,1,1,0,1],[45,2,2,1,3],[46,2,2,3,5]]],[3,1,1,5,6,[[148,1,1,5,6]]],[4,2,2,6,8,[[164,1,1,6,7],[167,1,1,7,8]]],[8,1,1,8,9,[[259,1,1,8,9]]],[9,1,1,9,10,[[278,1,1,9,10]]],[18,3,3,10,13,[[555,1,1,10,11],[591,2,2,11,13]]],[29,1,1,13,14,[[884,1,1,13,14]]]],[1131,1418,1420,1423,1437,4734,5261,5333,7842,8290,15183,15826,15828,22454]]],["cattle",[15,11,[[0,14,10,0,10,[[29,6,5,0,5],[30,8,5,5,10]]],[20,1,1,10,11,[[660,1,1,10,11]]]],[869,870,871,872,873,881,883,885,914,916,17340]]],["flock",[80,70,[[0,13,13,0,13,[[3,1,1,0,1],[20,1,1,1,2],[26,1,1,2,3],[28,1,1,3,4],[29,3,3,4,7],[30,2,2,7,9],[32,1,1,9,10],[36,2,2,10,12],[37,1,1,12,13]]],[1,5,4,13,17,[[51,3,3,13,16],[52,2,1,16,17]]],[2,6,6,17,23,[[90,1,1,17,18],[92,1,1,18,19],[94,2,2,19,21],[95,1,1,21,22],[116,1,1,22,23]]],[3,1,1,23,24,[[131,1,1,23,24]]],[4,3,3,24,27,[[164,1,1,24,25],[167,1,1,25,26],[168,1,1,26,27]]],[13,1,1,27,28,[[401,1,1,27,28]]],[14,1,1,28,29,[[412,1,1,28,29]]],[17,2,2,29,31,[[456,1,1,29,30],[465,1,1,30,31]]],[18,3,3,31,34,[[554,1,1,31,32],[557,1,1,32,33],[584,1,1,33,34]]],[21,1,1,34,35,[[671,1,1,34,35]]],[22,1,1,35,36,[[741,1,1,35,36]]],[23,9,9,36,45,[[757,1,1,36,37],[767,2,2,37,39],[769,3,3,39,42],[775,1,1,42,43],[793,1,1,43,44],[794,1,1,44,45]]],[25,22,15,45,60,[[825,1,1,45,46],[835,15,9,46,55],[837,3,2,55,57],[844,2,2,57,59],[846,1,1,59,60]]],[29,1,1,60,61,[[885,1,1,60,61]]],[31,1,1,61,62,[[891,1,1,61,62]]],[32,1,1,62,63,[[899,1,1,62,63]]],[34,1,1,63,64,[[905,1,1,63,64]]],[37,8,6,64,70,[[919,1,1,64,65],[920,1,1,65,66],[921,6,4,66,70]]]],[83,541,736,805,861,862,870,877,911,973,1085,1095,1136,1570,1571,1573,1580,2747,2784,2836,2848,2855,3602,4156,5257,5338,5344,11973,12271,13366,13558,15113,15199,15740,17545,18877,19286,19486,19487,19568,19569,19570,19703,20147,20211,21061,21316,21319,21321,21323,21328,21330,21332,21335,21344,21396,21397,21595,21597,21645,22479,22565,22678,22785,23015,23018,23032,23035,23039,23045]]],["flocks",[53,52,[[0,17,16,0,16,[[12,1,1,0,1],[23,1,1,1,2],[25,1,1,2,3],[29,5,4,3,7],[31,2,2,7,9],[32,1,1,9,10],[36,1,1,10,11],[44,1,1,11,12],[45,1,1,12,13],[46,2,2,13,15],[49,1,1,15,16]]],[1,5,5,16,21,[[59,2,2,16,18],[61,2,2,18,20],[83,1,1,20,21]]],[2,2,2,21,23,[[90,1,1,21,22],[94,1,1,22,23]]],[3,2,2,23,25,[[127,1,1,23,24],[147,1,1,24,25]]],[4,3,3,25,28,[[160,1,1,25,26],[164,1,1,26,27],[166,1,1,27,28]]],[8,1,1,28,29,[[265,1,1,28,29]]],[9,1,1,29,30,[[278,1,1,29,30]]],[12,3,3,30,33,[[341,2,2,30,32],[364,1,1,32,33]]],[13,2,2,33,35,[[383,1,1,33,34],[398,1,1,34,35]]],[15,1,1,35,36,[[422,1,1,35,36]]],[18,1,1,36,37,[[542,1,1,36,37]]],[19,1,1,37,38,[[654,1,1,37,38]]],[22,3,3,38,41,[[738,1,1,38,39],[739,1,1,39,40],[743,1,1,40,41]]],[23,6,6,41,47,[[747,1,1,41,42],[749,1,1,42,43],[777,2,2,43,45],[793,1,1,45,46],[794,1,1,46,47]]],[25,3,3,47,50,[[826,1,1,47,48],[835,1,1,48,49],[837,1,1,49,50]]],[27,1,1,50,51,[[866,1,1,50,51]]],[35,1,1,51,52,[[907,1,1,51,52]]]],[323,626,706,866,868,869,870,933,935,973,1097,1368,1418,1421,1424,1514,1786,1801,1848,1854,2499,2755,2845,4046,4694,5150,5246,5313,7998,8288,10424,10426,11140,11534,11904,12585,14873,17192,18828,18848,18907,19026,19075,19787,19788,20156,20174,21088,21315,21397,22158,22811]]],["lamb",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1837]]],["sheep",[111,108,[[0,14,14,0,14,[[3,1,1,0,1],[11,1,1,1,2],[19,1,1,2,3],[20,1,1,3,4],[28,7,7,4,11],[30,1,1,11,12],[33,1,1,12,13],[37,1,1,13,14]]],[1,4,4,14,18,[[58,1,1,14,15],[69,1,1,15,16],[71,2,2,16,18]]],[2,1,1,18,19,[[111,1,1,18,19]]],[3,8,8,19,27,[[138,1,1,19,20],[143,1,1,20,21],[147,5,5,21,26],[148,1,1,26,27]]],[4,9,9,27,36,[[159,1,1,27,28],[166,1,1,28,29],[167,1,1,29,30],[170,1,1,30,31],[180,4,4,31,35],[184,1,1,35,36]]],[5,1,1,36,37,[[193,1,1,36,37]]],[8,18,17,37,54,[[243,1,1,37,38],[249,1,1,38,39],[250,4,4,39,43],[251,2,2,43,45],[252,4,4,45,49],[260,5,4,49,53],[262,1,1,53,54]]],[9,3,3,54,57,[[273,1,1,54,55],[283,1,1,55,56],[290,1,1,56,57]]],[10,7,7,57,64,[[291,3,3,57,60],[294,1,1,60,61],[298,2,2,61,63],[312,1,1,63,64]]],[11,1,1,64,65,[[317,1,1,64,65]]],[12,4,4,65,69,[[342,1,1,65,66],[349,1,1,66,67],[354,1,1,67,68],[358,1,1,68,69]]],[13,10,9,69,78,[[371,1,1,69,70],[373,1,1,70,71],[380,1,1,71,72],[381,1,1,72,73],[384,2,2,73,75],[395,1,1,75,76],[396,2,1,76,77],[397,1,1,77,78]]],[15,4,4,78,82,[[415,2,2,78,80],[417,1,1,80,81],[424,1,1,81,82]]],[17,3,3,82,85,[[436,2,2,82,84],[477,1,1,84,85]]],[18,9,9,85,94,[[521,2,2,85,87],[526,1,1,87,88],[551,1,1,88,89],[555,1,1,89,90],[556,1,1,90,91],[572,1,1,91,92],[577,1,1,92,93],[621,1,1,93,94]]],[22,4,4,94,98,[[685,1,1,94,95],[691,1,1,95,96],[700,1,1,96,97],[731,1,1,97,98]]],[23,3,3,98,101,[[756,1,1,98,99],[767,1,1,99,100],[794,1,1,100,101]]],[25,4,3,101,104,[[835,4,3,101,104]]],[28,1,1,104,105,[[876,1,1,104,105]]],[32,2,2,105,107,[[894,1,1,105,106],[897,1,1,106,107]]],[37,1,1,107,108,[[923,1,1,107,108]]]],[81,314,509,540,797,798,801,802,803,804,805,892,1008,1132,1745,2075,2114,2143,3390,4415,4571,4692,4696,4700,4701,4707,4754,5124,5316,5338,5388,5615,5629,5642,5662,5772,6000,7386,7540,7569,7574,7575,7581,7606,7614,7633,7638,7646,7652,7863,7865,7877,7879,7939,8188,8478,8709,8726,8736,8742,8867,8990,9048,9497,9673,10449,10760,10870,10951,11274,11329,11490,11501,11544,11558,11824,11851,11860,12328,12359,12400,12663,12872,12885,13934,14582,14593,14662,15049,15165,15198,15461,15511,16318,17803,17920,18065,18717,19252,19485,20172,21319,21324,21325,22309,22607,22641,23066]]]]},{"k":"H6630","v":[["Zaanan",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22590]]]]},{"k":"H6631","v":[["*",[11,11,[[17,4,4,0,4,[[440,1,1,0,1],[456,1,1,1,2],[462,1,1,2,3],[466,1,1,3,4]]],[22,7,7,4,11,[[700,1,1,4,5],[712,1,1,5,6],[720,1,1,6,7],[722,1,1,7,8],[726,1,1,8,9],[739,1,1,9,10],[743,1,1,10,11]]]],[12976,13363,13495,13596,18076,18304,18485,18536,18633,18852,18920]]],["forth",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18304]]],["offspring",[9,9,[[17,4,4,0,4,[[440,1,1,0,1],[456,1,1,1,2],[462,1,1,2,3],[466,1,1,3,4]]],[22,5,5,4,9,[[700,1,1,4,5],[722,1,1,5,6],[726,1,1,6,7],[739,1,1,7,8],[743,1,1,8,9]]]],[12976,13363,13495,13596,18076,18536,18633,18852,18920]]],["out",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18485]]]]},{"k":"H6632","v":[["*",[3,3,[[2,1,1,0,1,[[100,1,1,0,1]]],[3,1,1,1,2,[[123,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]]],[3026,3853,18942]]],["covered",[1,1,[[3,1,1,0,1,[[123,1,1,0,1]]]],[3853]]],["litters",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18942]]],["tortoise",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3026]]]]},{"k":"H6633","v":[["*",[14,12,[[1,2,1,0,1,[[87,2,1,0,1]]],[3,4,4,1,5,[[120,1,1,1,2],[124,1,1,2,3],[147,2,2,3,5]]],[8,1,1,5,6,[[237,1,1,5,6]]],[11,1,1,6,7,[[337,1,1,6,7]]],[22,4,3,7,10,[[707,3,2,7,9],[709,1,1,9,10]]],[23,1,1,10,11,[[796,1,1,10,11]]],[37,1,1,11,12,[[924,1,1,11,12]]]],[2641,3766,3963,4671,4706,7262,10241,18200,18201,18254,20301,23080]]],["+",[3,3,[[3,1,1,0,1,[[124,1,1,0,1]]],[11,1,1,1,2,[[337,1,1,1,2]]],[23,1,1,2,3,[[796,1,1,2,3]]]],[3963,10241,20301]]],["assembled",[2,2,[[1,1,1,0,1,[[87,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]]],[2641,7262]]],["assembling",[1,1,[[1,1,1,0,1,[[87,1,1,0,1]]]],[2641]]],["fight",[4,3,[[22,4,3,0,3,[[707,3,2,0,2],[709,1,1,2,3]]]],[18200,18201,18254]]],["fought",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23080]]],["perform",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3766]]],["warred",[2,2,[[3,2,2,0,2,[[147,2,2,0,2]]]],[4671,4706]]]]},{"k":"H6634","v":[["*",[10,7,[[26,10,7,0,7,[[853,4,4,0,4],[854,5,2,4,6],[856,1,1,6,7]]]],[21854,21862,21869,21872,21893,21895,21952]]],["+",[4,1,[[26,4,1,0,1,[[854,4,1,0,1]]]],[21893]]],["will",[5,5,[[26,5,5,0,5,[[853,4,4,0,4],[854,1,1,4,5]]]],[21854,21862,21869,21872,21895]]],["would",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21952]]]]},{"k":"H6635","v":[["*",[484,461,[[0,4,4,0,4,[[1,1,1,0,1],[20,2,2,1,3],[25,1,1,3,4]]],[1,5,5,4,9,[[55,1,1,4,5],[56,1,1,5,6],[61,3,3,6,9]]],[3,76,70,9,79,[[117,16,15,9,24],[118,20,20,24,44],[120,5,5,44,49],[124,2,2,49,51],[126,17,13,51,64],[142,1,1,64,65],[147,13,12,65,77],[148,1,1,77,78],[149,1,1,78,79]]],[4,4,4,79,83,[[156,1,1,79,80],[169,1,1,80,81],[172,1,1,81,82],[176,1,1,82,83]]],[5,5,5,83,88,[[190,1,1,83,84],[191,2,2,84,86],[208,2,2,86,88]]],[6,4,4,88,92,[[214,2,2,88,90],[218,1,1,90,91],[219,1,1,91,92]]],[8,10,10,92,102,[[236,2,2,92,94],[239,1,1,94,95],[247,1,1,95,96],[249,1,1,96,97],[250,1,1,97,98],[252,2,2,98,100],[261,1,1,100,101],[263,1,1,101,102]]],[9,15,15,102,117,[[268,1,1,102,103],[269,1,1,103,104],[271,1,1,104,105],[272,2,2,105,107],[273,3,3,107,110],[274,1,1,110,111],[276,3,3,111,114],[283,1,1,114,115],[285,1,1,115,116],[286,1,1,116,117]]],[10,14,13,117,130,[[291,2,2,117,119],[292,4,3,119,122],[294,1,1,122,123],[301,2,2,123,125],[306,1,1,125,126],[308,1,1,126,127],[309,2,2,127,129],[312,1,1,129,130]]],[11,9,9,130,139,[[315,1,1,130,131],[316,1,1,131,132],[317,1,1,132,133],[329,1,1,133,134],[333,2,2,134,136],[335,2,2,136,138],[337,1,1,138,139]]],[12,26,26,139,165,[[342,1,1,139,140],[344,3,3,140,143],[348,1,1,143,144],[349,9,9,144,153],[354,2,2,153,155],[355,1,1,155,156],[356,3,3,156,159],[357,1,1,159,160],[362,1,1,160,161],[363,1,1,161,162],[364,3,3,162,165]]],[13,12,12,165,177,[[383,1,1,165,166],[384,1,1,166,167],[391,2,2,167,169],[392,3,3,169,172],[394,2,2,172,174],[399,3,3,174,177]]],[15,2,1,177,178,[[421,2,1,177,178]]],[17,3,3,178,181,[[442,1,1,178,179],[445,1,1,179,180],[449,1,1,180,181]]],[18,23,23,181,204,[[501,1,1,181,182],[510,1,1,182,183],[521,1,1,183,184],[523,2,2,184,186],[525,1,1,186,187],[536,1,1,187,188],[537,1,1,188,189],[545,2,2,189,191],[546,1,1,191,192],[557,4,4,192,196],[561,4,4,196,200],[566,1,1,200,201],[580,1,1,201,202],[585,1,1,202,203],[625,1,1,203,204]]],[22,70,66,204,270,[[679,2,2,204,206],[680,1,1,206,207],[681,2,2,207,209],[683,4,4,209,213],[684,2,2,213,215],[686,2,2,215,217],[687,3,3,217,220],[688,5,5,220,225],[691,3,2,225,227],[692,4,4,227,231],[695,1,1,231,232],[696,2,1,232,233],[697,7,7,233,240],[699,1,1,240,241],[700,6,5,241,246],[701,1,1,246,247],[702,2,2,247,249],[703,1,1,249,250],[706,3,3,250,253],[707,1,1,253,254],[709,2,2,254,256],[712,3,2,256,258],[715,2,2,258,260],[717,1,1,260,261],[718,2,2,261,263],[722,1,1,263,264],[723,2,2,264,266],[725,1,1,266,267],[726,1,1,267,268],[729,1,1,268,269],[732,1,1,269,270]]],[23,88,87,270,357,[[746,1,1,270,271],[747,1,1,271,272],[749,1,1,272,273],[750,2,2,273,275],[751,2,2,275,277],[752,2,2,277,279],[753,3,3,279,282],[754,1,1,282,283],[755,3,3,283,286],[759,1,1,286,287],[760,1,1,287,288],[763,4,4,288,292],[764,1,1,292,293],[767,3,3,293,296],[769,5,5,296,301],[770,1,1,301,302],[771,4,4,302,306],[772,2,2,306,308],[773,5,5,308,313],[774,1,1,313,314],[775,2,2,314,316],[776,3,3,316,319],[777,3,3,319,322],[779,4,4,322,326],[782,1,1,326,327],[783,1,1,327,328],[786,2,2,328,330],[787,1,1,330,331],[788,4,4,331,335],[790,4,3,335,338],[792,2,2,338,340],[793,4,4,340,344],[794,5,5,344,349],[795,7,7,349,356],[796,1,1,356,357]]],[26,6,5,357,362,[[857,5,4,357,361],[859,1,1,361,362]]],[27,1,1,362,363,[[873,1,1,362,363]]],[29,9,9,363,372,[[881,1,1,363,364],[882,1,1,364,365],[883,4,4,365,369],[884,2,2,369,371],[887,1,1,371,372]]],[32,1,1,372,373,[[896,1,1,372,373]]],[33,2,2,373,375,[[901,1,1,373,374],[902,1,1,374,375]]],[34,1,1,375,376,[[904,1,1,375,376]]],[35,3,3,376,379,[[906,1,1,376,377],[907,2,2,377,379]]],[36,14,12,379,391,[[909,5,5,379,384],[910,9,7,384,391]]],[37,53,46,391,437,[[911,9,7,391,398],[912,3,3,398,401],[913,3,3,401,404],[914,2,2,404,406],[915,1,1,406,407],[916,2,2,407,409],[917,6,5,409,414],[918,18,15,414,429],[919,1,1,429,430],[920,1,1,430,431],[922,1,1,431,432],[923,2,2,432,434],[924,4,3,434,437]]],[38,24,24,437,461,[[925,8,8,437,445],[926,6,6,445,451],[927,8,8,451,459],[928,2,2,459,461]]]],[31,535,545,718,1681,1689,1833,1857,1867,3607,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3656,3661,3662,3664,3666,3667,3668,3669,3671,3673,3674,3676,3677,3679,3681,3682,3683,3684,3686,3688,3690,3746,3773,3778,3782,3786,3963,3964,4002,4003,4004,4006,4007,4008,4010,4011,4012,4013,4014,4015,4016,4491,4667,4668,4669,4670,4678,4685,4691,4692,4696,4700,4712,4717,4745,4761,5023,5367,5436,5530,5923,5948,5949,6438,6459,6601,6606,6725,6783,7215,7223,7301,7469,7558,7562,7663,7673,7910,7943,8057,8104,8142,8159,8175,8188,8206,8207,8225,8247,8256,8258,8474,8524,8577,8736,8742,8775,8802,8805,8848,9123,9129,9299,9356,9397,9401,9499,9590,9616,9648,9999,10122,10124,10169,10170,10241,10446,10539,10546,10575,10682,10728,10734,10741,10743,10744,10745,10753,10756,10757,10870,10887,10905,10915,10923,10925,10927,11047,11103,11112,11114,11143,11541,11560,11709,11711,11743,11745,11746,11773,11776,11911,11913,11919,12517,13009,13103,13195,14251,14372,14580,14621,14625,14642,14795,14817,14911,14912,14941,15202,15205,15212,15217,15260,15262,15267,15271,15334,15570,15753,16373,17663,17678,17697,17708,17722,17746,17748,17755,17763,17772,17774,17820,17825,17836,17842,17848,17866,17873,17874,17876,17883,17910,17919,17950,17951,17952,17955,17986,18004,18008,18016,18020,18021,18022,18024,18029,18045,18057,18064,18066,18067,18077,18086,18116,18118,18124,18169,18186,18193,18199,18254,18255,18305,18307,18368,18384,18417,18422,18446,18539,18573,18574,18603,18616,18688,18728,18984,19021,19072,19095,19098,19122,19140,19155,19156,19182,19190,19192,19217,19243,19246,19248,19331,19345,19410,19418,19420,19422,19434,19499,19500,19520,19542,19561,19562,19563,19566,19590,19600,19614,19615,19617,19620,19632,19639,19643,19652,19656,19660,19675,19714,19726,19745,19746,19749,19786,19787,19797,19836,19840,19841,19842,19912,19939,19990,19993,20007,20012,20017,20021,20035,20055,20063,20070,20081,20095,20132,20134,20153,20162,20184,20191,20197,20199,20200,20215,20217,20226,20231,20245,20269,20270,20301,21971,21972,21973,21974,22016,22257,22408,22423,22437,22438,22439,22450,22458,22464,22500,22624,22712,22717,22761,22792,22814,22815,22842,22845,22847,22849,22854,22859,22861,22862,22863,22864,22866,22878,22881,22882,22884,22890,22892,22894,22895,22907,22908,22910,22919,22921,22922,22928,22931,22940,22959,22962,22965,22966,22971,22974,22975,22977,22978,22979,22980,22982,22983,22985,22987,22990,22994,22995,22996,22997,22998,22999,23014,23019,23050,23061,23066,23084,23085,23089,23093,23095,23097,23098,23099,23100,23102,23103,23105,23107,23110,23111,23115,23119,23121,23125,23127,23130,23131,23132,23134,23137,23139,23141]]],["+",[5,5,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,3,3,1,4,[[124,2,2,1,3],[147,1,1,3,4]]],[13,1,1,4,5,[[392,1,1,4,5]]]],[1833,3963,3964,4678,11745]]],["appointed",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22016]]],["armies",[21,21,[[1,3,3,0,3,[[55,1,1,0,1],[56,1,1,1,2],[61,1,1,2,3]]],[3,13,13,3,16,[[117,1,1,3,4],[118,7,7,4,11],[126,4,4,11,15],[149,1,1,15,16]]],[4,1,1,16,17,[[172,1,1,16,17]]],[18,3,3,17,20,[[521,1,1,17,18],[537,1,1,18,19],[545,1,1,19,20]]],[22,1,1,20,21,[[712,1,1,20,21]]]],[1681,1689,1867,3607,3661,3667,3668,3674,3676,3682,3683,4002,4006,4010,4016,4761,5436,14580,14817,14912,18305]]],["army",[7,7,[[0,1,1,0,1,[[25,1,1,0,1]]],[6,3,3,1,4,[[214,1,1,1,2],[218,1,1,2,3],[219,1,1,3,4]]],[12,2,2,4,6,[[357,1,1,4,5],[364,1,1,5,6]]],[13,1,1,6,7,[[391,1,1,6,7]]]],[718,6606,6725,6783,10927,11143,11711]]],["battle",[5,5,[[3,2,2,0,2,[[147,2,2,0,2]]],[5,1,1,2,3,[[208,1,1,2,3]]],[12,2,2,3,5,[[349,2,2,3,5]]]],[4691,4692,6459,10753,10756]]],["company",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14911]]],["host",[100,96,[[0,3,3,0,3,[[1,1,1,0,1],[20,2,2,1,3]]],[3,26,26,3,29,[[118,12,12,3,15],[120,1,1,15,16],[126,12,12,16,28],[147,1,1,28,29]]],[4,2,2,29,31,[[156,1,1,29,30],[169,1,1,30,31]]],[5,2,2,31,33,[[191,2,2,31,33]]],[6,1,1,33,34,[[214,1,1,33,34]]],[8,4,4,34,38,[[247,1,1,34,35],[249,1,1,35,36],[252,1,1,36,37],[261,1,1,37,38]]],[9,9,9,38,47,[[268,1,1,38,39],[269,1,1,39,40],[274,1,1,40,41],[276,3,3,41,44],[283,1,1,44,45],[285,1,1,45,46],[286,1,1,46,47]]],[10,10,9,47,56,[[291,2,2,47,49],[292,3,2,49,51],[294,1,1,51,52],[301,2,2,52,54],[306,1,1,54,55],[312,1,1,55,56]]],[11,8,8,56,64,[[316,1,1,56,57],[317,1,1,57,58],[329,1,1,58,59],[333,2,2,59,61],[335,2,2,61,63],[337,1,1,63,64]]],[12,10,10,64,74,[[349,2,2,64,66],[355,1,1,66,67],[356,3,3,67,70],[362,1,1,70,71],[363,1,1,71,72],[364,2,2,72,74]]],[13,5,5,74,79,[[384,1,1,74,75],[392,1,1,75,76],[394,1,1,76,77],[399,2,2,77,79]]],[15,2,1,79,80,[[421,2,1,79,80]]],[18,1,1,80,81,[[510,1,1,80,81]]],[22,6,5,81,86,[[691,1,1,81,82],[702,1,1,82,83],[712,2,1,83,84],[718,1,1,84,85],[723,1,1,85,86]]],[23,5,5,86,91,[[752,1,1,86,87],[763,1,1,87,88],[777,1,1,88,89],[795,1,1,89,90],[796,1,1,90,91]]],[26,5,4,91,95,[[857,5,4,91,95]]],[35,1,1,95,96,[[906,1,1,95,96]]]],[31,535,545,3662,3664,3666,3669,3671,3673,3677,3679,3681,3684,3686,3688,3746,4002,4003,4004,4006,4007,4008,4010,4011,4012,4013,4014,4015,4712,5023,5367,5948,5949,6601,7469,7558,7673,7910,8057,8104,8225,8247,8256,8258,8474,8524,8577,8736,8742,8802,8805,8848,9123,9129,9299,9499,9616,9648,9999,10122,10124,10169,10170,10241,10734,10741,10905,10915,10923,10925,11047,11103,11112,11114,11560,11746,11773,11911,11913,12517,14372,17910,18116,18307,18446,18573,19155,19420,19797,20215,20301,21971,21972,21973,21974,22792]]],["hosts",[293,281,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,3,3,1,4,[[117,1,1,1,2],[118,1,1,2,3],[126,1,1,3,4]]],[8,5,5,4,9,[[236,2,2,4,6],[239,1,1,6,7],[250,1,1,7,8],[252,1,1,8,9]]],[9,6,6,9,15,[[271,1,1,9,10],[272,2,2,10,12],[273,3,3,12,15]]],[10,4,4,15,19,[[292,1,1,15,16],[308,1,1,16,17],[309,2,2,17,19]]],[11,1,1,19,20,[[315,1,1,19,20]]],[12,3,3,20,23,[[348,1,1,20,21],[354,2,2,21,23]]],[18,18,18,23,41,[[501,1,1,23,24],[523,2,2,24,26],[525,1,1,26,27],[536,1,1,27,28],[546,1,1,28,29],[557,4,4,29,33],[561,4,4,33,37],[566,1,1,37,38],[580,1,1,38,39],[585,1,1,39,40],[625,1,1,40,41]]],[22,62,60,41,101,[[679,2,2,41,43],[680,1,1,43,44],[681,2,2,44,46],[683,4,4,46,50],[684,2,2,50,52],[686,2,2,52,54],[687,3,3,54,57],[688,5,5,57,62],[691,2,2,62,64],[692,4,4,64,68],[695,1,1,68,69],[696,2,1,69,70],[697,7,7,70,77],[699,1,1,77,78],[700,6,5,78,83],[701,1,1,83,84],[702,1,1,84,85],[703,1,1,85,86],[706,3,3,86,89],[707,1,1,89,90],[709,2,2,90,92],[715,2,2,92,94],[717,1,1,94,95],[722,1,1,95,96],[723,1,1,96,97],[725,1,1,97,98],[726,1,1,98,99],[729,1,1,99,100],[732,1,1,100,101]]],[23,83,82,101,183,[[746,1,1,101,102],[747,1,1,102,103],[749,1,1,103,104],[750,2,2,104,106],[751,2,2,106,108],[752,1,1,108,109],[753,3,3,109,112],[754,1,1,112,113],[755,3,3,113,116],[759,1,1,116,117],[760,1,1,117,118],[763,3,3,118,121],[764,1,1,121,122],[767,3,3,122,125],[769,5,5,125,130],[770,1,1,130,131],[771,4,4,131,135],[772,2,2,135,137],[773,5,5,137,142],[774,1,1,142,143],[775,2,2,143,145],[776,3,3,145,148],[777,2,2,148,150],[779,4,4,150,154],[782,1,1,154,155],[783,1,1,155,156],[786,2,2,156,158],[787,1,1,158,159],[788,4,4,159,163],[790,4,3,163,166],[792,2,2,166,168],[793,4,4,168,172],[794,5,5,172,177],[795,6,6,177,183]]],[27,1,1,183,184,[[873,1,1,183,184]]],[29,9,9,184,193,[[881,1,1,184,185],[882,1,1,185,186],[883,4,4,186,190],[884,2,2,190,192],[887,1,1,192,193]]],[32,1,1,193,194,[[896,1,1,193,194]]],[33,2,2,194,196,[[901,1,1,194,195],[902,1,1,195,196]]],[34,1,1,196,197,[[904,1,1,196,197]]],[35,2,2,197,199,[[907,2,2,197,199]]],[36,14,12,199,211,[[909,5,5,199,204],[910,9,7,204,211]]],[37,53,46,211,257,[[911,9,7,211,218],[912,3,3,218,221],[913,3,3,221,224],[914,2,2,224,226],[915,1,1,226,227],[916,2,2,227,229],[917,6,5,229,234],[918,18,15,234,249],[919,1,1,249,250],[920,1,1,250,251],[922,1,1,251,252],[923,2,2,252,254],[924,4,3,254,257]]],[38,24,24,257,281,[[925,8,8,257,265],[926,6,6,265,271],[927,8,8,271,279],[928,2,2,279,281]]]],[1857,3656,3690,4013,7215,7223,7301,7562,7663,8142,8159,8175,8188,8206,8207,8775,9356,9397,9401,9590,10682,10870,10887,14251,14621,14625,14642,14795,14941,15202,15205,15212,15217,15260,15262,15267,15271,15334,15570,15753,16373,17663,17678,17697,17708,17722,17746,17748,17755,17763,17772,17774,17820,17825,17836,17842,17848,17866,17873,17874,17876,17883,17910,17919,17950,17951,17952,17955,17986,18004,18008,18016,18020,18021,18022,18024,18029,18045,18057,18064,18066,18067,18077,18086,18118,18124,18169,18186,18193,18199,18254,18255,18368,18384,18417,18539,18574,18603,18616,18688,18728,18984,19021,19072,19095,19098,19122,19140,19156,19182,19190,19192,19217,19243,19246,19248,19331,19345,19410,19418,19422,19434,19499,19500,19520,19542,19561,19562,19563,19566,19590,19600,19614,19615,19617,19620,19632,19639,19643,19652,19656,19660,19675,19714,19726,19745,19746,19749,19786,19787,19836,19840,19841,19842,19912,19939,19990,19993,20007,20012,20017,20021,20035,20055,20063,20070,20081,20095,20132,20134,20153,20162,20184,20191,20197,20199,20200,20217,20226,20231,20245,20269,20270,22257,22408,22423,22437,22438,22439,22450,22458,22464,22500,22624,22712,22717,22761,22814,22815,22842,22845,22847,22849,22854,22859,22861,22862,22863,22864,22866,22878,22881,22882,22884,22890,22892,22894,22895,22907,22908,22910,22919,22921,22922,22928,22931,22940,22959,22962,22965,22966,22971,22974,22975,22977,22978,22979,22980,22982,22983,22985,22987,22990,22994,22995,22996,22997,22998,22999,23014,23019,23050,23061,23066,23084,23085,23089,23093,23095,23097,23098,23099,23100,23102,23103,23105,23107,23110,23111,23115,23119,23121,23125,23127,23130,23131,23132,23134,23137,23139,23141]]],["of",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11919]]],["service",[4,4,[[3,4,4,0,4,[[120,4,4,0,4]]]],[3773,3778,3782,3786]]],["soldiers",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10539]]],["time",[2,2,[[17,2,2,0,2,[[442,1,1,0,1],[449,1,1,1,2]]]],[13009,13195]]],["war",[41,40,[[3,25,24,0,24,[[117,14,14,0,14],[142,1,1,14,15],[147,9,8,15,23],[148,1,1,23,24]]],[4,1,1,24,25,[[176,1,1,24,25]]],[5,2,2,25,27,[[190,1,1,25,26],[208,1,1,26,27]]],[12,8,8,27,35,[[342,1,1,27,28],[344,2,2,28,30],[349,5,5,30,35]]],[13,4,4,35,39,[[383,1,1,35,36],[391,1,1,36,37],[392,1,1,37,38],[394,1,1,38,39]]],[17,1,1,39,40,[[445,1,1,39,40]]]],[3607,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,4491,4667,4668,4669,4670,4685,4696,4700,4717,4745,5530,5923,6438,10446,10546,10575,10728,10743,10744,10745,10757,11541,11709,11743,11776,13103]]],["warfare",[2,2,[[8,1,1,0,1,[[263,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[7943,18422]]]]},{"k":"H6636","v":[["*",[5,5,[[0,3,3,0,3,[[9,1,1,0,1],[13,2,2,1,3]]],[4,1,1,3,4,[[181,1,1,3,4]]],[27,1,1,4,5,[[872,1,1,4,5]]]],[253,338,344,5702,22248]]],["Zeboiim",[2,2,[[0,2,2,0,2,[[13,2,2,0,2]]]],[338,344]]],["Zeboim",[3,3,[[0,1,1,0,1,[[9,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[27,1,1,2,3,[[872,1,1,2,3]]]],[253,5702,22248]]]]},{"k":"H6637","v":[["Zobebah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10393]]]]},{"k":"H6638","v":[["swell",[2,2,[[3,2,2,0,2,[[121,2,2,0,2]]]],[3814,3819]]]]},{"k":"H6639","v":[["swell",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3813]]]]},{"k":"H6640","v":[["purpose",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21922]]]]},{"k":"H6641","v":[["speckled",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19258]]]]},{"k":"H6642","v":[["reached",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7163]]]]},{"k":"H6643","v":[["*",[32,32,[[4,4,4,0,4,[[164,2,2,0,2],[166,1,1,2,3],[167,1,1,3,4]]],[9,2,2,4,6,[[267,1,1,4,5],[268,1,1,5,6]]],[10,1,1,6,7,[[294,1,1,6,7]]],[12,1,1,7,8,[[349,1,1,7,8]]],[19,1,1,8,9,[[633,1,1,8,9]]],[21,5,5,9,14,[[672,3,3,9,12],[673,1,1,12,13],[678,1,1,13,14]]],[22,8,8,14,22,[[682,1,1,14,15],[691,2,2,15,17],[701,1,1,17,18],[702,1,1,18,19],[706,3,3,19,22]]],[23,1,1,22,23,[[747,1,1,22,23]]],[25,5,5,23,28,[[808,1,1,23,24],[821,2,2,24,26],[826,1,1,26,27],[827,1,1,27,28]]],[26,4,4,28,32,[[857,1,1,28,29],[860,3,3,29,32]]]],[5255,5262,5295,5341,8041,8067,8867,10728,16545,17561,17563,17571,17576,17654,17735,17920,17925,18086,18111,18165,18168,18169,19021,20597,20901,20910,21092,21120,21970,22052,22077,22081]]],["beautiful",[1,1,[[22,1,1,0,1,[[682,1,1,0,1]]]],[17735]]],["beauty",[2,2,[[9,1,1,0,1,[[267,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]]],[8041,20597]]],["glorious",[5,5,[[22,2,2,0,2,[[706,2,2,0,2]]],[26,3,3,2,5,[[860,3,3,2,5]]]],[18165,18168,22052,22077,22081]]],["glory",[8,8,[[22,4,4,0,4,[[691,1,1,0,1],[701,1,1,1,2],[702,1,1,2,3],[706,1,1,3,4]]],[25,4,4,4,8,[[821,2,2,4,6],[826,1,1,6,7],[827,1,1,7,8]]]],[17925,18086,18111,18169,20901,20910,21092,21120]]],["goodly",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19021]]],["pleasant",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21970]]],["roe",[6,6,[[9,1,1,0,1,[[268,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]],[21,3,3,2,5,[[672,2,2,2,4],[678,1,1,4,5]]],[22,1,1,5,6,[[691,1,1,5,6]]]],[8067,16545,17563,17571,17654,17920]]],["roebuck",[4,4,[[4,4,4,0,4,[[164,2,2,0,2],[166,1,1,2,3],[167,1,1,3,4]]]],[5255,5262,5295,5341]]],["roebucks",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8867]]],["roes",[3,3,[[12,1,1,0,1,[[349,1,1,0,1]]],[21,2,2,1,3,[[672,1,1,1,2],[673,1,1,2,3]]]],[10728,17561,17576]]]]},{"k":"H6644","v":[["Zibia",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10584]]]]},{"k":"H6645","v":[["Zibiah",[2,2,[[11,1,1,0,1,[[324,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]]],[9851,11678]]]]},{"k":"H6646","v":[["roes",[2,2,[[21,2,2,0,2,[[674,1,1,0,1],[677,1,1,1,2]]]],[17587,17630]]]]},{"k":"H6647","v":[["wet",[5,5,[[26,5,5,0,5,[[853,4,4,0,4],[854,1,1,4,5]]]],[21852,21860,21862,21870,21895]]]]},{"k":"H6648","v":[["colours",[3,1,[[6,3,1,0,1,[[215,3,1,0,1]]]],[6653]]]]},{"k":"H6649","v":[["Zibeon",[8,7,[[0,6,5,0,5,[[35,6,5,0,5]]],[12,2,2,5,7,[[338,2,2,5,7]]]],[1042,1054,1060,1064,1069,10290,10292]]]]},{"k":"H6650","v":[["Zeboim",[2,2,[[8,1,1,0,1,[[248,1,1,0,1]]],[15,1,1,1,2,[[423,1,1,1,2]]]],[7503,12622]]]]},{"k":"H6651","v":[["*",[7,7,[[0,2,2,0,2,[[40,2,2,0,2]]],[1,1,1,2,3,[[57,1,1,2,3]]],[17,1,1,3,4,[[462,1,1,3,4]]],[18,1,1,4,5,[[516,1,1,4,5]]],[34,1,1,5,6,[[903,1,1,5,6]]],[37,1,1,6,7,[[919,1,1,6,7]]]],[1230,1244,1724,13497,14518,22741,23002]]],["+",[1,1,[[1,1,1,0,1,[[57,1,1,0,1]]]],[1724]]],["gathered",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1244]]],["heap",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22741]]],["up",[4,4,[[0,1,1,0,1,[[40,1,1,0,1]]],[17,1,1,1,2,[[462,1,1,1,2]]],[18,1,1,2,3,[[516,1,1,2,3]]],[37,1,1,3,4,[[919,1,1,3,4]]]],[1230,13497,14518,23002]]]]},{"k":"H6652","v":[["heaps",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9801]]]]},{"k":"H6653","v":[["handfuls",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7165]]]]},{"k":"H6654","v":[["*",[33,27,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,9,5,1,6,[[74,3,1,1,2],[75,1,1,2,3],[79,1,1,3,4],[86,4,2,4,6]]],[3,1,1,6,7,[[149,1,1,6,7]]],[4,1,1,7,8,[[183,1,1,7,8]]],[5,3,3,8,11,[[189,1,1,8,9],[198,1,1,9,10],[209,1,1,10,11]]],[6,1,1,11,12,[[212,1,1,11,12]]],[7,1,1,12,13,[[233,1,1,12,13]]],[8,5,4,13,17,[[241,1,1,13,14],[255,2,2,14,16],[258,2,1,16,17]]],[9,2,2,17,19,[[268,1,1,17,18],[279,1,1,18,19]]],[18,1,1,19,20,[[568,1,1,19,20]]],[22,2,2,20,22,[[738,1,1,20,21],[744,1,1,21,22]]],[25,6,5,22,27,[[805,5,4,22,26],[835,1,1,26,27]]]],[153,2227,2248,2386,2622,2631,4815,5754,5909,6139,6473,6548,7163,7339,7750,7755,7836,8065,8351,15402,18825,18934,20533,20535,20537,20538,21334]]],["+",[17,12,[[1,6,2,0,2,[[74,3,1,0,1],[86,3,1,1,2]]],[4,1,1,2,3,[[183,1,1,2,3]]],[5,2,2,3,5,[[189,1,1,3,4],[198,1,1,4,5]]],[7,1,1,5,6,[[233,1,1,5,6]]],[8,4,3,6,9,[[241,1,1,6,7],[255,1,1,7,8],[258,2,1,8,9]]],[9,1,1,9,10,[[279,1,1,9,10]]],[18,1,1,10,11,[[568,1,1,10,11]]],[25,1,1,11,12,[[805,1,1,11,12]]]],[2227,2622,5754,5909,6139,7163,7339,7755,7836,8351,15402,20537]]],["another",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20537]]],["side",[8,8,[[0,1,1,0,1,[[5,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[9,1,1,2,3,[[268,1,1,2,3]]],[22,1,1,3,4,[[738,1,1,3,4]]],[25,4,4,4,8,[[805,3,3,4,7],[835,1,1,7,8]]]],[153,7750,8065,18825,20533,20535,20538,21334]]],["sides",[7,7,[[1,3,3,0,3,[[75,1,1,0,1],[79,1,1,1,2],[86,1,1,2,3]]],[3,1,1,3,4,[[149,1,1,3,4]]],[5,1,1,4,5,[[209,1,1,4,5]]],[6,1,1,5,6,[[212,1,1,5,6]]],[22,1,1,6,7,[[744,1,1,6,7]]]],[2248,2386,2631,4815,6473,6548,18934]]]]},{"k":"H6655","v":[["*",[2,2,[[26,2,2,0,2,[[855,1,1,0,1],[856,1,1,1,2]]]],[21909,21958]]],["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21909]]],["against",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21958]]]]},{"k":"H6656","v":[["true",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21821]]]]},{"k":"H6657","v":[["Zedad",[2,2,[[3,1,1,0,1,[[150,1,1,0,1]]],[25,1,1,1,2,[[848,1,1,1,2]]]],[4824,21694]]]]},{"k":"H6658","v":[["*",[3,3,[[1,1,1,0,1,[[70,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]],[35,1,1,2,3,[[908,1,1,2,3]]]],[2090,7850,22826]]],["+",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]]],[2090,7850]]],["destroyed",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22826]]]]},{"k":"H6659","v":[["*",[53,50,[[9,14,13,0,13,[[274,1,1,0,1],[281,7,6,1,7],[283,1,1,7,8],[284,3,3,8,11],[285,1,1,11,12],[286,1,1,12,13]]],[10,11,11,13,24,[[291,8,8,13,21],[292,1,1,21,22],[294,2,2,22,24]]],[11,1,1,24,25,[[327,1,1,24,25]]],[12,15,13,25,38,[[343,5,3,25,28],[346,1,1,28,29],[349,1,1,29,30],[352,1,1,30,31],[353,1,1,31,32],[355,1,1,32,33],[361,3,3,33,36],[364,1,1,36,37],[366,1,1,37,38]]],[13,2,2,38,40,[[393,1,1,38,39],[397,1,1,39,40]]],[14,1,1,40,41,[[409,1,1,40,41]]],[15,5,5,41,46,[[415,2,2,41,43],[422,1,1,43,44],[423,1,1,44,45],[425,1,1,45,46]]],[25,4,4,46,50,[[841,1,1,46,47],[844,1,1,47,48],[845,1,1,48,49],[849,1,1,49,50]]]],[8226,8413,8414,8416,8418,8424,8425,8464,8497,8500,8505,8522,8579,8725,8743,8749,8751,8755,8756,8761,8762,8805,8846,8848,9958,10462,10466,10507,10626,10748,10802,10859,10906,11018,11021,11046,11126,11186,11756,11864,12175,12331,12356,12570,12599,12684,21523,21591,21614,21713]]],["Zadok",[52,49,[[9,13,12,0,12,[[274,1,1,0,1],[281,6,5,1,6],[283,1,1,6,7],[284,3,3,7,10],[285,1,1,10,11],[286,1,1,11,12]]],[10,11,11,12,23,[[291,8,8,12,20],[292,1,1,20,21],[294,2,2,21,23]]],[11,1,1,23,24,[[327,1,1,23,24]]],[12,15,13,24,37,[[343,5,3,24,27],[346,1,1,27,28],[349,1,1,28,29],[352,1,1,29,30],[353,1,1,30,31],[355,1,1,31,32],[361,3,3,32,35],[364,1,1,35,36],[366,1,1,36,37]]],[13,2,2,37,39,[[393,1,1,37,38],[397,1,1,38,39]]],[14,1,1,39,40,[[409,1,1,39,40]]],[15,5,5,40,45,[[415,2,2,40,42],[422,1,1,42,43],[423,1,1,43,44],[425,1,1,44,45]]],[25,4,4,45,49,[[841,1,1,45,46],[844,1,1,46,47],[845,1,1,47,48],[849,1,1,48,49]]]],[8226,8413,8414,8416,8418,8424,8464,8497,8500,8505,8522,8579,8725,8743,8749,8751,8755,8756,8761,8762,8805,8846,8848,9958,10462,10466,10507,10626,10748,10802,10859,10906,11018,11021,11046,11126,11186,11756,11864,12175,12331,12356,12570,12599,12684,21523,21591,21614,21713]]],["Zadok's",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8425]]]]},{"k":"H6660","v":[["wait",[2,2,[[3,2,2,0,2,[[151,2,2,0,2]]]],[4865,4867]]]]},{"k":"H6661","v":[["Ziddim",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6356]]]]},{"k":"H6662","v":[["*",[206,197,[[0,10,8,0,8,[[5,1,1,0,1],[6,1,1,1,2],[17,7,5,2,7],[19,1,1,7,8]]],[1,3,3,8,11,[[58,1,1,8,9],[72,2,2,9,11]]],[4,4,4,11,15,[[156,1,1,11,12],[168,1,1,12,13],[177,1,1,13,14],[184,1,1,14,15]]],[8,1,1,15,16,[[259,1,1,15,16]]],[9,2,2,16,18,[[270,1,1,16,17],[289,1,1,17,18]]],[10,2,2,18,20,[[292,1,1,18,19],[298,1,1,19,20]]],[11,1,1,20,21,[[322,1,1,20,21]]],[13,2,2,21,23,[[372,1,1,21,22],[378,1,1,22,23]]],[14,1,1,23,24,[[411,1,1,23,24]]],[15,2,2,24,26,[[421,2,2,24,26]]],[17,7,7,26,33,[[447,1,1,26,27],[452,1,1,27,28],[457,1,1,28,29],[462,1,1,29,30],[467,1,1,30,31],[469,1,1,31,32],[471,1,1,32,33]]],[18,52,50,33,83,[[478,2,2,33,35],[482,1,1,35,36],[484,3,2,36,38],[488,3,3,38,41],[491,1,1,41,42],[508,1,1,42,43],[509,1,1,43,44],[510,1,1,44,45],[511,3,3,45,48],[514,9,9,48,57],[529,1,1,57,58],[532,1,1,58,59],[535,2,2,59,61],[541,1,1,61,62],[545,1,1,62,63],[546,1,1,63,64],[549,1,1,64,65],[552,1,1,65,66],[569,1,1,66,67],[571,1,1,67,68],[574,2,2,68,70],[589,2,2,70,72],[593,1,1,72,73],[595,2,2,73,75],[596,1,1,75,76],[602,2,1,76,77],[606,1,1,77,78],[617,1,1,78,79],[618,1,1,79,80],[619,1,1,80,81],[622,1,1,81,82],[623,1,1,82,83]]],[19,66,66,83,149,[[629,1,1,83,84],[630,1,1,84,85],[631,1,1,85,86],[636,1,1,86,87],[637,13,13,87,100],[638,8,8,100,108],[639,8,8,108,116],[640,5,5,116,121],[641,2,2,121,123],[642,3,3,123,126],[644,2,2,126,128],[645,3,3,128,131],[647,1,1,131,132],[648,4,4,132,136],[650,1,1,136,137],[651,3,3,137,140],[652,1,1,140,141],[655,3,3,141,144],[656,5,5,144,149]]],[20,8,7,149,156,[[661,1,1,149,150],[665,3,3,150,153],[666,2,1,153,154],[667,2,2,154,156]]],[22,14,12,156,168,[[681,1,1,156,157],[683,1,1,157,158],[702,1,1,158,159],[704,3,2,159,161],[707,1,1,161,162],[719,1,1,162,163],[723,1,1,163,164],[727,1,1,164,165],[731,1,1,165,166],[735,2,1,166,167],[738,1,1,167,168]]],[23,3,3,168,171,[[756,1,1,168,169],[764,1,1,169,170],[767,1,1,170,171]]],[24,2,2,171,173,[[797,1,1,171,172],[800,1,1,172,173]]],[25,16,14,173,187,[[804,3,2,173,175],[814,1,1,175,176],[819,5,5,176,181],[822,2,2,181,183],[824,1,1,183,184],[834,4,3,184,187]]],[26,1,1,187,188,[[858,1,1,187,188]]],[27,1,1,188,189,[[875,1,1,188,189]]],[29,2,2,189,191,[[880,1,1,189,190],[883,1,1,190,191]]],[34,3,3,191,194,[[903,2,2,191,193],[904,1,1,193,194]]],[35,1,1,194,195,[[908,1,1,194,195]]],[37,1,1,195,196,[[919,1,1,195,196]]],[38,1,1,196,197,[[927,1,1,196,197]]]],[146,160,447,448,449,450,452,499,1769,2151,2152,5012,5361,5548,5762,7856,8131,8656,8802,9017,9802,11305,11443,12252,12519,12544,13132,13269,13408,13498,13629,13700,13743,13944,13945,13985,14004,14006,14062,14064,14066,14085,14349,14366,14367,14403,14407,14409,14462,14466,14467,14471,14475,14479,14480,14482,14489,14716,14754,14789,14790,14860,14903,14963,15007,15081,15423,15452,15489,15490,15807,15809,15853,15884,15889,16035,16113,16136,16276,16281,16293,16337,16349,16453,16488,16508,16647,16659,16662,16663,16667,16672,16676,16677,16680,16681,16684,16686,16687,16688,16696,16697,16698,16709,16711,16716,16718,16719,16722,16724,16726,16729,16731,16732,16740,16745,16752,16756,16768,16769,16772,16791,16804,16813,16835,16836,16888,16899,16906,16911,16918,16961,16996,16999,17002,17010,17068,17094,17095,17103,17139,17197,17208,17224,17226,17230,17231,17240,17251,17376,17444,17445,17449,17472,17476,17477,17717,17762,18111,18132,18137,18214,18477,18582,18660,18722,18766,18842,19250,19434,19489,20328,20433,20522,20523,20730,20854,20858,20869,20873,20875,20947,20948,21052,21292,21293,21298,22002,22291,22385,22435,22735,22744,22752,22825,23008,23138]]],["+",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13743]]],["Righteous",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[23,1,1,1,2,[[756,1,1,1,2]]]],[16035,19250]]],["just",[42,41,[[0,1,1,0,1,[[5,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[17,3,3,4,7,[[447,1,1,4,5],[462,1,1,5,6],[469,1,1,6,7]]],[18,2,2,7,9,[[484,1,1,7,8],[514,1,1,8,9]]],[19,18,18,9,27,[[630,1,1,9,10],[631,1,1,10,11],[636,1,1,11,12],[637,4,4,12,16],[638,1,1,16,17],[639,2,2,17,19],[640,1,1,19,20],[644,2,2,20,22],[645,1,1,22,23],[647,1,1,23,24],[648,1,1,24,25],[651,1,1,25,26],[656,1,1,26,27]]],[20,3,3,27,30,[[665,2,2,27,29],[666,1,1,29,30]]],[22,4,3,30,33,[[704,2,1,30,31],[707,1,1,31,32],[723,1,1,32,33]]],[24,1,1,33,34,[[800,1,1,33,34]]],[25,2,2,34,36,[[819,2,2,34,36]]],[27,1,1,36,37,[[875,1,1,36,37]]],[29,1,1,37,38,[[883,1,1,37,38]]],[34,1,1,38,39,[[904,1,1,38,39]]],[35,1,1,39,40,[[908,1,1,39,40]]],[37,1,1,40,41,[[919,1,1,40,41]]]],[146,5762,8656,12544,13132,13498,13700,14004,14462,16488,16508,16647,16662,16663,16676,16687,16697,16732,16740,16769,16888,16899,16918,16961,16999,17095,17251,17444,17449,17472,18137,18214,18582,20433,20854,20858,22291,22435,22752,22825,23008]]],["lawful",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18660]]],["righteous",[160,154,[[0,9,7,0,7,[[6,1,1,0,1],[17,7,5,1,6],[19,1,1,6,7]]],[1,3,3,7,10,[[58,1,1,7,8],[72,2,2,8,10]]],[4,3,3,10,13,[[156,1,1,10,11],[168,1,1,11,12],[177,1,1,12,13]]],[8,1,1,13,14,[[259,1,1,13,14]]],[9,1,1,14,15,[[270,1,1,14,15]]],[10,2,2,15,17,[[292,1,1,15,16],[298,1,1,16,17]]],[11,1,1,17,18,[[322,1,1,17,18]]],[13,2,2,18,20,[[372,1,1,18,19],[378,1,1,19,20]]],[14,1,1,20,21,[[411,1,1,20,21]]],[15,1,1,21,22,[[421,1,1,21,22]]],[17,3,3,22,25,[[452,1,1,22,23],[457,1,1,23,24],[467,1,1,24,25]]],[18,49,48,25,73,[[478,2,2,25,27],[482,1,1,27,28],[484,2,2,28,30],[488,3,3,30,33],[491,1,1,33,34],[508,1,1,34,35],[509,1,1,35,36],[510,1,1,36,37],[511,3,3,37,40],[514,8,8,40,48],[529,1,1,48,49],[532,1,1,49,50],[535,2,2,50,52],[541,1,1,52,53],[545,1,1,53,54],[546,1,1,54,55],[549,1,1,55,56],[552,1,1,56,57],[569,1,1,57,58],[571,1,1,58,59],[574,2,2,59,61],[589,2,2,61,63],[593,1,1,63,64],[595,2,2,64,66],[602,2,1,66,67],[606,1,1,67,68],[617,1,1,68,69],[618,1,1,69,70],[619,1,1,70,71],[622,1,1,71,72],[623,1,1,72,73]]],[19,48,48,73,121,[[629,1,1,73,74],[637,9,9,74,83],[638,7,7,83,90],[639,6,6,90,96],[640,4,4,96,100],[641,2,2,100,102],[642,3,3,102,105],[645,2,2,105,107],[648,3,3,107,110],[650,1,1,110,111],[651,2,2,111,113],[652,1,1,113,114],[655,3,3,114,117],[656,4,4,117,121]]],[20,5,5,121,126,[[661,1,1,121,122],[665,1,1,122,123],[666,1,1,123,124],[667,2,2,124,126]]],[22,9,8,126,134,[[681,1,1,126,127],[683,1,1,127,128],[702,1,1,128,129],[704,1,1,129,130],[719,1,1,130,131],[731,1,1,131,132],[735,2,1,132,133],[738,1,1,133,134]]],[23,2,2,134,136,[[764,1,1,134,135],[767,1,1,135,136]]],[24,1,1,136,137,[[797,1,1,136,137]]],[25,14,12,137,149,[[804,3,2,137,139],[814,1,1,139,140],[819,3,3,140,143],[822,2,2,143,145],[824,1,1,145,146],[834,4,3,146,149]]],[26,1,1,149,150,[[858,1,1,149,150]]],[29,1,1,150,151,[[880,1,1,150,151]]],[34,2,2,151,153,[[903,2,2,151,153]]],[38,1,1,153,154,[[927,1,1,153,154]]]],[160,447,448,449,450,452,499,1769,2151,2152,5012,5361,5548,7856,8131,8802,9017,9802,11305,11443,12252,12519,13269,13408,13629,13944,13945,13985,14004,14006,14062,14064,14066,14085,14349,14366,14367,14403,14407,14409,14466,14467,14471,14475,14479,14480,14482,14489,14716,14754,14789,14790,14860,14903,14963,15007,15081,15423,15452,15489,15490,15807,15809,15853,15884,15889,16113,16136,16276,16281,16293,16337,16349,16453,16659,16667,16672,16677,16680,16681,16684,16686,16688,16696,16698,16709,16711,16716,16718,16719,16722,16724,16726,16729,16731,16745,16752,16756,16768,16772,16791,16804,16813,16835,16836,16906,16911,16996,17002,17010,17068,17094,17103,17139,17197,17208,17224,17226,17230,17231,17240,17376,17445,17472,17476,17477,17717,17762,18111,18132,18477,18722,18766,18842,19434,19489,20328,20522,20523,20730,20869,20873,20875,20947,20948,21052,21292,21293,21298,22002,22385,22735,22744,23138]]]]},{"k":"H6663","v":[["*",[41,40,[[0,2,2,0,2,[[37,1,1,0,1],[43,1,1,1,2]]],[1,1,1,2,3,[[72,1,1,2,3]]],[4,1,1,3,4,[[177,1,1,3,4]]],[9,1,1,4,5,[[281,1,1,4,5]]],[10,1,1,5,6,[[298,1,1,5,6]]],[13,1,1,6,7,[[372,1,1,6,7]]],[17,17,17,7,24,[[439,1,1,7,8],[444,3,3,8,11],[445,1,1,11,12],[446,1,1,12,13],[448,1,1,13,14],[450,1,1,14,15],[457,1,1,15,16],[460,1,1,16,17],[462,1,1,17,18],[467,1,1,18,19],[468,2,2,19,21],[469,1,1,21,22],[470,1,1,22,23],[475,1,1,23,24]]],[18,4,4,24,28,[[496,1,1,24,25],[528,1,1,25,26],[559,1,1,26,27],[620,1,1,27,28]]],[19,1,1,28,29,[[644,1,1,28,29]]],[22,6,6,29,35,[[683,1,1,29,30],[721,2,2,30,32],[723,1,1,32,33],[728,1,1,33,34],[731,1,1,34,35]]],[23,1,1,35,36,[[747,1,1,35,36]]],[25,3,2,36,38,[[817,3,2,36,38]]],[26,2,2,38,40,[[857,1,1,38,39],[861,1,1,39,40]]]],[1145,1340,2151,5548,8393,9017,11305,12947,13053,13066,13071,13101,13110,13171,13217,13392,13465,13486,13630,13662,13682,13688,13727,13872,14177,14695,15236,16295,16888,17762,18514,18531,18586,18670,18722,19013,20813,20814,21975,22084]]],["+",[4,4,[[4,1,1,0,1,[[177,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]],[25,1,1,2,3,[[817,1,1,2,3]]],[26,1,1,3,4,[[861,1,1,3,4]]]],[5548,12947,20813,22084]]],["cleansed",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21975]]],["just",[2,2,[[17,2,2,0,2,[[444,1,1,0,1],[468,1,1,1,2]]]],[13053,13662]]],["justice",[2,2,[[9,1,1,0,1,[[281,1,1,0,1]]],[18,1,1,1,2,[[559,1,1,1,2]]]],[8393,15236]]],["justified",[11,11,[[17,4,4,0,4,[[446,1,1,0,1],[448,1,1,1,2],[460,1,1,2,3],[467,1,1,3,4]]],[18,2,2,4,6,[[528,1,1,4,5],[620,1,1,5,6]]],[22,3,3,6,9,[[721,2,2,6,8],[723,1,1,8,9]]],[23,1,1,9,10,[[747,1,1,9,10]]],[25,1,1,10,11,[[817,1,1,10,11]]]],[13110,13171,13465,13630,14695,16295,18514,18531,18586,19013,20814]]],["justifieth",[2,2,[[19,1,1,0,1,[[644,1,1,0,1]]],[22,1,1,1,2,[[728,1,1,1,2]]]],[16888,18670]]],["justify",[6,6,[[1,1,1,0,1,[[72,1,1,0,1]]],[17,3,3,1,4,[[444,1,1,1,2],[462,1,1,2,3],[468,1,1,3,4]]],[22,2,2,4,6,[[683,1,1,4,5],[731,1,1,5,6]]]],[2151,13071,13486,13682,17762,18722]]],["justifying",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]]],[9017,11305]]],["ourselves",[1,1,[[0,1,1,0,1,[[43,1,1,0,1]]]],[1340]]],["righteous",[10,10,[[0,1,1,0,1,[[37,1,1,0,1]]],[17,7,7,1,8,[[444,1,1,1,2],[445,1,1,2,3],[450,1,1,3,4],[457,1,1,4,5],[469,1,1,5,6],[470,1,1,6,7],[475,1,1,7,8]]],[18,1,1,8,9,[[496,1,1,8,9]]],[25,1,1,9,10,[[817,1,1,9,10]]]],[1145,13066,13101,13217,13392,13688,13727,13872,14177,20814]]]]},{"k":"H6664","v":[["*",[118,111,[[2,5,2,0,2,[[108,5,2,0,2]]],[4,7,5,2,7,[[153,1,1,2,3],[168,3,2,3,5],[177,2,1,5,6],[185,1,1,6,7]]],[17,7,7,7,14,[[441,1,1,7,8],[443,2,2,8,10],[464,1,1,10,11],[466,1,1,11,12],[470,1,1,12,13],[471,1,1,13,14]]],[18,49,49,14,63,[[481,2,2,14,16],[484,2,2,16,18],[486,2,2,18,20],[492,1,1,20,21],[494,2,2,21,23],[495,2,2,23,25],[500,1,1,25,26],[512,3,3,26,29],[514,1,1,29,30],[517,1,1,30,31],[522,2,2,31,33],[525,1,1,33,34],[527,1,1,34,35],[528,1,1,35,36],[529,1,1,36,37],[535,1,1,37,38],[542,1,1,38,39],[549,1,1,39,40],[562,3,3,40,43],[566,1,1,43,44],[571,1,1,44,45],[573,1,1,45,46],[574,2,2,46,48],[575,1,1,48,49],[595,1,1,49,50],[596,12,12,50,62],[609,1,1,62,63]]],[19,8,8,63,71,[[628,1,1,63,64],[629,1,1,64,65],[635,2,2,65,67],[639,1,1,67,68],[643,1,1,68,69],[652,1,1,69,70],[658,1,1,70,71]]],[20,3,3,71,74,[[661,1,1,71,72],[663,1,1,72,73],[665,1,1,73,74]]],[22,25,25,74,99,[[679,2,2,74,76],[689,2,2,76,78],[694,1,1,78,79],[704,2,2,79,81],[710,1,1,81,82],[719,2,2,82,84],[720,2,2,84,86],[723,3,3,86,89],[729,3,3,89,92],[736,2,2,92,94],[737,1,1,94,95],[739,1,1,95,96],[740,2,2,96,98],[742,1,1,98,99]]],[23,6,6,99,105,[[755,1,1,99,100],[766,1,1,100,101],[767,1,1,101,102],[775,1,1,102,103],[777,1,1,103,104],[794,1,1,104,105]]],[25,4,2,105,107,[[804,1,1,105,106],[846,3,1,106,107]]],[26,1,1,107,108,[[858,1,1,107,108]]],[27,2,2,108,110,[[863,1,1,108,109],[871,1,1,109,110]]],[35,1,1,110,111,[[907,1,1,110,111]]]],[3296,3317,4908,5360,5362,5562,5829,13007,13032,13035,13546,13594,13722,13739,13966,13970,14003,14012,14025,14029,14089,14104,14118,14138,14142,14238,14434,14437,14438,14456,14534,14601,14604,14644,14674,14710,14713,14780,14865,15002,15281,15282,15284,15340,15446,15478,15480,15484,15499,15888,15905,15960,15973,16004,16019,16021,16036,16040,16042,16058,16062,16070,16160,16403,16442,16610,16617,16736,16853,17118,17293,17375,17405,17444,17675,17680,17888,17889,17974,18139,18140,18260,18453,18461,18486,18501,18569,18574,18580,18674,18678,18680,18788,18794,18804,18846,18855,18856,18890,19246,19467,19490,19714,19791,20173,20522,21640,22012,22124,22237,22808]]],["+",[5,4,[[4,2,1,0,1,[[168,2,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]],[23,1,1,2,3,[[766,1,1,2,3]]],[25,1,1,3,4,[[804,1,1,3,4]]]],[5362,18501,19467,20522]]],["Just",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3317]]],["Justice",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15340]]],["RIGHTEOUSNESS",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19490]]],["Righteous",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16853]]],["Righteousness",[1,1,[[18,1,1,0,1,[[562,1,1,0,1]]]],[15284]]],["cause",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14437]]],["even",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13594]]],["just",[9,4,[[2,3,1,0,1,[[108,3,1,0,1]]],[4,3,2,1,3,[[168,1,1,1,2],[177,2,1,2,3]]],[25,3,1,3,4,[[846,3,1,3,4]]]],[3317,5360,5562,21640]]],["justice",[9,9,[[17,1,1,0,1,[[443,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[19,2,2,2,4,[[628,1,1,2,3],[635,1,1,3,4]]],[20,1,1,4,5,[[663,1,1,4,5]]],[22,2,2,5,7,[[736,1,1,5,6],[737,1,1,6,7]]],[23,2,2,7,9,[[775,1,1,7,8],[794,1,1,8,9]]]],[13032,16019,16403,16617,17405,18788,18804,19714,20173]]],["right",[3,3,[[18,3,3,0,3,[[486,1,1,0,1],[494,1,1,1,2],[596,1,1,2,3]]]],[14025,14104,15973]]],["righteous",[7,7,[[18,6,6,0,6,[[596,6,6,0,6]]],[22,1,1,6,7,[[719,1,1,6,7]]]],[15905,15960,16004,16036,16058,16062,18453]]],["righteously",[3,3,[[4,1,1,0,1,[[153,1,1,0,1]]],[19,1,1,1,2,[[658,1,1,1,2]]],[23,1,1,2,3,[[755,1,1,2,3]]]],[4908,17293,19246]]],["righteousness",[75,75,[[2,1,1,0,1,[[108,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[17,5,5,2,7,[[441,1,1,2,3],[443,1,1,3,4],[464,1,1,4,5],[470,1,1,5,6],[471,1,1,6,7]]],[18,36,36,7,43,[[481,2,2,7,9],[484,2,2,9,11],[486,1,1,11,12],[492,1,1,12,13],[494,1,1,13,14],[495,2,2,14,16],[500,1,1,16,17],[512,2,2,17,19],[514,1,1,19,20],[517,1,1,20,21],[522,2,2,21,23],[525,1,1,23,24],[527,1,1,24,25],[528,1,1,25,26],[529,1,1,26,27],[535,1,1,27,28],[542,1,1,28,29],[549,1,1,29,30],[562,2,2,30,32],[571,1,1,32,33],[573,1,1,33,34],[574,2,2,34,36],[575,1,1,36,37],[595,1,1,37,38],[596,4,4,38,42],[609,1,1,42,43]]],[19,4,4,43,47,[[629,1,1,43,44],[635,1,1,44,45],[639,1,1,45,46],[652,1,1,46,47]]],[20,2,2,47,49,[[661,1,1,47,48],[665,1,1,48,49]]],[22,21,21,49,70,[[679,2,2,49,51],[689,2,2,51,53],[694,1,1,53,54],[704,2,2,54,56],[710,1,1,56,57],[719,1,1,57,58],[720,1,1,58,59],[723,3,3,59,62],[729,3,3,62,65],[736,1,1,65,66],[739,1,1,66,67],[740,2,2,67,69],[742,1,1,69,70]]],[23,1,1,70,71,[[777,1,1,70,71]]],[26,1,1,71,72,[[858,1,1,71,72]]],[27,2,2,72,74,[[863,1,1,72,73],[871,1,1,73,74]]],[35,1,1,74,75,[[907,1,1,74,75]]]],[3296,5829,13007,13035,13546,13722,13739,13966,13970,14003,14012,14029,14089,14118,14138,14142,14238,14434,14438,14456,14534,14601,14604,14644,14674,14710,14713,14780,14865,15002,15281,15282,15446,15478,15480,15484,15499,15888,16021,16040,16042,16070,16160,16442,16610,16736,17118,17375,17444,17675,17680,17888,17889,17974,18139,18140,18260,18461,18486,18569,18574,18580,18674,18678,18680,18794,18846,18855,18856,18890,19791,22012,22124,22237,22808]]]]},{"k":"H6665","v":[["righteousness",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]]]},{"k":"H6666","v":[["*",[157,150,[[0,3,3,0,3,[[14,1,1,0,1],[17,1,1,1,2],[29,1,1,2,3]]],[4,6,6,3,9,[[158,1,1,3,4],[161,3,3,4,7],[176,1,1,7,8],[185,1,1,8,9]]],[6,2,1,9,10,[[215,2,1,9,10]]],[8,2,2,10,12,[[247,1,1,10,11],[261,1,1,11,12]]],[9,4,4,12,16,[[274,1,1,12,13],[285,1,1,13,14],[288,2,2,14,16]]],[10,3,3,16,19,[[293,1,1,16,17],[298,1,1,17,18],[300,1,1,18,19]]],[12,1,1,19,20,[[355,1,1,19,20]]],[13,2,2,20,22,[[372,1,1,20,21],[375,1,1,21,22]]],[15,1,1,22,23,[[414,1,1,22,23]]],[17,4,4,23,27,[[462,1,1,23,24],[468,1,1,24,25],[470,1,1,25,26],[472,1,1,26,27]]],[18,34,34,27,61,[[482,1,1,27,28],[488,1,1,28,29],[499,1,1,29,30],[501,1,1,30,31],[508,1,1,31,32],[510,1,1,32,33],[513,2,2,33,35],[517,1,1,35,36],[528,1,1,36,37],[546,1,1,37,38],[548,5,5,38,43],[549,2,2,43,45],[565,1,1,45,46],[566,1,1,46,47],[575,1,1,47,48],[576,1,1,48,49],[580,2,2,49,51],[583,2,2,51,53],[588,1,1,53,54],[589,2,2,54,56],[596,2,2,56,58],[620,2,2,58,60],[622,1,1,60,61]]],[19,18,17,61,78,[[635,2,2,61,63],[637,1,1,63,64],[638,5,5,64,69],[639,1,1,69,70],[640,1,1,70,71],[641,1,1,71,72],[642,1,1,72,73],[643,3,3,73,76],[648,3,2,76,78]]],[22,36,34,78,112,[[679,1,1,78,79],[683,3,3,79,82],[687,1,1,82,83],[688,1,1,83,84],[706,1,1,84,85],[710,3,2,85,87],[711,2,2,87,89],[723,3,3,89,92],[724,2,2,92,94],[726,2,2,94,96],[729,2,2,96,98],[732,2,2,98,100],[734,2,1,100,101],[735,1,1,101,102],[736,1,1,102,103],[737,4,4,103,107],[738,1,1,107,108],[739,2,2,108,110],[741,1,1,110,111],[742,1,1,111,112]]],[23,8,7,112,119,[[748,1,1,112,113],[753,1,1,113,114],[766,2,2,114,116],[767,1,1,116,117],[777,2,1,117,118],[795,1,1,118,119]]],[25,20,18,119,137,[[804,1,1,119,120],[815,2,2,120,122],[819,9,8,122,130],[834,7,6,130,136],[846,1,1,136,137]]],[26,3,3,137,140,[[858,3,3,137,140]]],[27,1,1,140,141,[[871,1,1,140,141]]],[28,1,1,141,142,[[877,1,1,141,142]]],[29,3,3,142,145,[[883,2,2,142,144],[884,1,1,144,145]]],[32,2,2,145,147,[[898,1,1,145,146],[899,1,1,146,147]]],[37,1,1,147,148,[[918,1,1,147,148]]],[38,2,2,148,150,[[927,1,1,148,149],[928,1,1,149,150]]]],[366,443,863,5111,5161,5162,5163,5538,5831,6634,7467,7928,8224,8539,8623,8627,8822,9017,9088,10904,11305,11372,12327,13487,13676,13728,13792,13981,14066,14235,14246,14332,14371,14444,14448,14535,14705,14962,14978,14991,14992,14995,15000,15001,15003,15320,15342,15492,15503,15555,15566,15654,15682,15796,15806,15812,15938,16040,16294,16304,16327,16620,16622,16658,16692,16693,16694,16706,16707,16747,16753,16806,16816,16848,16852,16871,16987,17005,17681,17746,17755,17762,17836,17872,18181,18275,18276,18284,18294,18569,18584,18585,18598,18599,18615,18632,18679,18681,18737,18740,18754,18777,18788,18809,18814,18816,18817,18838,18853,18854,18867,18891,19029,19199,19457,19469,19489,19790,20222,20522,20745,20751,20854,20868,20869,20870,20871,20873,20875,20876,21292,21293,21294,21296,21298,21299,21639,21995,22004,22006,22237,22334,22430,22447,22462,22653,22673,22984,23123,23140]]],["+",[4,4,[[22,1,1,0,1,[[724,1,1,0,1]]],[25,3,3,1,4,[[819,2,2,1,3],[834,1,1,3,4]]]],[18598,20873,20875,21298]]],["Righteousness",[2,2,[[19,2,2,0,2,[[640,1,1,0,1],[641,1,1,1,2]]]],[16753,16806]]],["acts",[3,2,[[6,2,1,0,1,[[215,2,1,0,1]]],[8,1,1,1,2,[[247,1,1,1,2]]]],[6634,7467]]],["justice",[15,15,[[0,1,1,0,1,[[17,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[9,1,1,2,3,[[274,1,1,2,3]]],[10,1,1,3,4,[[300,1,1,3,4]]],[12,1,1,4,5,[[355,1,1,4,5]]],[13,1,1,5,6,[[375,1,1,5,6]]],[17,1,1,6,7,[[472,1,1,6,7]]],[19,1,1,7,8,[[648,1,1,7,8]]],[22,4,4,8,12,[[687,1,1,8,9],[734,1,1,9,10],[737,2,2,10,12]]],[23,2,2,12,14,[[766,1,1,12,13],[767,1,1,13,14]]],[25,1,1,14,15,[[846,1,1,14,15]]]],[443,5831,8224,9088,10904,11372,13792,16987,17836,18754,18809,18814,19469,19489,21639]]],["moderately",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22334]]],["right",[9,9,[[9,1,1,0,1,[[285,1,1,0,1]]],[15,1,1,1,2,[[414,1,1,1,2]]],[25,7,7,2,9,[[819,4,4,2,6],[834,3,3,6,9]]]],[8539,12327,20854,20868,20870,20876,21294,21296,21299]]],["righteously",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18294]]],["righteousness",[118,115,[[0,2,2,0,2,[[14,1,1,0,1],[29,1,1,1,2]]],[4,5,5,2,7,[[158,1,1,2,3],[161,3,3,3,6],[176,1,1,6,7]]],[8,1,1,7,8,[[261,1,1,7,8]]],[9,2,2,8,10,[[288,2,2,8,10]]],[10,2,2,10,12,[[293,1,1,10,11],[298,1,1,11,12]]],[13,1,1,12,13,[[372,1,1,12,13]]],[17,3,3,13,16,[[462,1,1,13,14],[468,1,1,14,15],[470,1,1,15,16]]],[18,33,33,16,49,[[482,1,1,16,17],[488,1,1,17,18],[499,1,1,18,19],[501,1,1,19,20],[508,1,1,20,21],[510,1,1,21,22],[513,2,2,22,24],[517,1,1,24,25],[528,1,1,25,26],[546,1,1,26,27],[548,5,5,27,32],[549,2,2,32,34],[565,1,1,34,35],[566,1,1,35,36],[575,1,1,36,37],[576,1,1,37,38],[580,2,2,38,40],[583,2,2,40,42],[588,1,1,42,43],[589,2,2,43,45],[596,2,2,45,47],[620,1,1,47,48],[622,1,1,48,49]]],[19,15,14,49,63,[[635,2,2,49,51],[637,1,1,51,52],[638,5,5,52,57],[639,1,1,57,58],[642,1,1,58,59],[643,3,3,59,62],[648,2,1,62,63]]],[22,29,28,63,91,[[679,1,1,63,64],[683,3,3,64,67],[688,1,1,67,68],[706,1,1,68,69],[710,3,2,69,71],[711,1,1,71,72],[723,3,3,72,75],[724,1,1,75,76],[726,2,2,76,78],[729,2,2,78,80],[732,2,2,80,82],[734,1,1,82,83],[735,1,1,83,84],[736,1,1,84,85],[737,2,2,85,87],[738,1,1,87,88],[739,2,2,88,90],[741,1,1,90,91]]],[23,6,5,91,96,[[748,1,1,91,92],[753,1,1,92,93],[766,1,1,93,94],[777,2,1,94,95],[795,1,1,95,96]]],[25,8,8,96,104,[[804,1,1,96,97],[815,2,2,97,99],[819,3,3,99,102],[834,2,2,102,104]]],[26,2,2,104,106,[[858,2,2,104,106]]],[27,1,1,106,107,[[871,1,1,106,107]]],[29,3,3,107,110,[[883,2,2,107,109],[884,1,1,109,110]]],[32,2,2,110,112,[[898,1,1,110,111],[899,1,1,111,112]]],[37,1,1,112,113,[[918,1,1,112,113]]],[38,2,2,113,115,[[927,1,1,113,114],[928,1,1,114,115]]]],[366,863,5111,5161,5162,5163,5538,7928,8623,8627,8822,9017,11305,13487,13676,13728,13981,14066,14235,14246,14332,14371,14444,14448,14535,14705,14962,14978,14991,14992,14995,15000,15001,15003,15320,15342,15492,15503,15555,15566,15654,15682,15796,15806,15812,15938,16040,16294,16327,16620,16622,16658,16692,16693,16694,16706,16707,16747,16816,16848,16852,16871,17005,17681,17746,17755,17762,17872,18181,18275,18276,18284,18569,18584,18585,18599,18615,18632,18679,18681,18737,18740,18754,18777,18788,18816,18817,18838,18853,18854,18867,19029,19199,19457,19790,20222,20522,20745,20751,20869,20871,20873,21292,21293,21995,22004,22237,22430,22447,22462,22653,22673,22984,23123,23140]]],["righteousness'",[1,1,[[18,1,1,0,1,[[620,1,1,0,1]]]],[16304]]],["righteousnesses",[3,3,[[22,1,1,0,1,[[742,1,1,0,1]]],[25,1,1,1,2,[[834,1,1,1,2]]],[26,1,1,2,3,[[858,1,1,2,3]]]],[18891,21293,22006]]]]},{"k":"H6667","v":[["*",[62,61,[[10,2,2,0,2,[[312,2,2,0,2]]],[11,6,5,2,7,[[336,3,3,2,5],[337,3,2,5,7]]],[12,2,2,7,9,[[340,2,2,7,9]]],[13,4,4,9,13,[[384,2,2,9,11],[402,2,2,11,13]]],[15,1,1,13,14,[[422,1,1,13,14]]],[23,47,47,14,61,[[745,1,1,14,15],[765,3,3,15,18],[768,1,1,18,19],[771,2,2,19,21],[772,1,1,21,22],[773,3,3,22,25],[776,4,4,25,29],[778,5,5,29,34],[780,1,1,34,35],[781,5,5,35,40],[782,7,7,40,47],[783,5,5,47,52],[788,1,1,52,53],[793,1,1,53,54],[795,1,1,54,55],[796,6,6,55,61]]]],[9491,9504,10219,10220,10222,10224,10229,10376,10377,11552,11565,12003,12004,12550,18949,19441,19443,19447,19532,19599,19608,19619,19638,19656,19657,19732,19734,19735,19736,19803,19805,19807,19809,19822,19854,19875,19877,19891,19892,19895,19900,19909,19910,19911,19912,19914,19919,19924,19925,19927,19928,19929,20040,20161,20271,20277,20279,20281,20284,20286,20287]]],["Zedekiah",[61,60,[[10,2,2,0,2,[[312,2,2,0,2]]],[11,6,5,2,7,[[336,3,3,2,5],[337,3,2,5,7]]],[12,2,2,7,9,[[340,2,2,7,9]]],[13,4,4,9,13,[[384,2,2,9,11],[402,2,2,11,13]]],[23,47,47,13,60,[[745,1,1,13,14],[765,3,3,14,17],[768,1,1,17,18],[771,2,2,18,20],[772,1,1,20,21],[773,3,3,21,24],[776,4,4,24,28],[778,5,5,28,33],[780,1,1,33,34],[781,5,5,34,39],[782,7,7,39,46],[783,5,5,46,51],[788,1,1,51,52],[793,1,1,52,53],[795,1,1,53,54],[796,6,6,54,60]]]],[9491,9504,10219,10220,10222,10224,10229,10376,10377,11552,11565,12003,12004,18949,19441,19443,19447,19532,19599,19608,19619,19638,19656,19657,19732,19734,19735,19736,19803,19805,19807,19809,19822,19854,19875,19877,19891,19892,19895,19900,19909,19910,19911,19912,19914,19919,19924,19925,19927,19928,19929,20040,20161,20271,20277,20279,20281,20284,20286,20287]]],["Zidkijah",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12550]]]]},{"k":"H6668","v":[["+",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12228]]]]},{"k":"H6669","v":[["yellow",[3,3,[[2,3,3,0,3,[[102,3,3,0,3]]]],[3082,3084,3088]]]]},{"k":"H6670","v":[["*",[9,9,[[16,1,1,0,1,[[433,1,1,0,1]]],[18,1,1,1,2,[[581,1,1,1,2]]],[22,4,4,2,6,[[688,1,1,2,3],[690,1,1,3,4],[702,1,1,4,5],[732,1,1,5,6]]],[23,3,3,6,9,[[749,1,1,6,7],[775,1,1,7,8],[794,1,1,8,9]]]],[12832,15586,17880,17906,18109,18724,19066,19698,20177]]],["aloud",[2,2,[[22,2,2,0,2,[[702,1,1,0,1],[732,1,1,1,2]]]],[18109,18724]]],["bellow",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20177]]],["neighed",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19066]]],["out",[1,1,[[22,1,1,0,1,[[690,1,1,0,1]]]],[17906]]],["rejoiced",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12832]]],["shine",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15586]]],["shout",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19698]]],["up",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17880]]]]},{"k":"H6671","v":[["oil",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13447]]]]},{"k":"H6672","v":[["*",[24,24,[[0,3,3,0,3,[[5,1,1,0,1],[42,2,2,1,3]]],[4,1,1,3,4,[[180,1,1,3,4]]],[9,1,1,4,5,[[270,1,1,4,5]]],[10,4,4,5,9,[[308,3,3,5,8],[310,1,1,8,9]]],[11,1,1,9,10,[[316,1,1,9,10]]],[17,2,2,10,12,[[440,1,1,10,11],[446,1,1,11,12]]],[18,3,3,12,15,[[514,1,1,12,13],[532,1,1,13,14],[568,1,1,14,15]]],[21,1,1,15,16,[[671,1,1,15,16]]],[22,3,3,16,19,[[694,1,1,16,17],[736,1,1,17,18],[737,1,1,18,19]]],[23,3,3,19,22,[[750,1,1,19,20],[759,1,1,20,21],[764,1,1,21,22]]],[29,1,1,22,23,[[886,1,1,22,23]]],[35,1,1,23,24,[[907,1,1,23,24]]]],[153,1306,1315,5640,8125,9367,9368,9370,9424,9623,12965,13125,14456,14749,15401,17544,17972,18796,18810,19093,19323,19438,22490,22809]]],["+",[2,2,[[17,1,1,0,1,[[446,1,1,0,1]]],[23,1,1,1,2,[[764,1,1,1,2]]]],[13125,19438]]],["day",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22809]]],["midday",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9370]]],["noon",[11,11,[[0,2,2,0,2,[[42,2,2,0,2]]],[9,1,1,2,3,[[270,1,1,2,3]]],[10,3,3,3,6,[[308,2,2,3,5],[310,1,1,5,6]]],[11,1,1,6,7,[[316,1,1,6,7]]],[18,1,1,7,8,[[532,1,1,7,8]]],[21,1,1,8,9,[[671,1,1,8,9]]],[23,1,1,9,10,[[750,1,1,9,10]]],[29,1,1,10,11,[[886,1,1,10,11]]]],[1306,1315,8125,9367,9368,9424,9623,14749,17544,19093,22490]]],["noonday",[8,8,[[4,1,1,0,1,[[180,1,1,0,1]]],[17,1,1,1,2,[[440,1,1,1,2]]],[18,2,2,2,4,[[514,1,1,2,3],[568,1,1,3,4]]],[22,3,3,4,7,[[694,1,1,4,5],[736,1,1,5,6],[737,1,1,6,7]]],[23,1,1,7,8,[[759,1,1,7,8]]]],[5640,12965,14456,15401,17972,18796,18810,19323]]],["window",[1,1,[[0,1,1,0,1,[[5,1,1,0,1]]]],[153]]]]},{"k":"H6673","v":[["*",[9,3,[[22,8,2,0,2,[[706,8,2,0,2]]],[27,1,1,2,3,[[866,1,1,2,3]]]],[18174,18177,22163]]],["commandment",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22163]]],["precept",[8,2,[[22,8,2,0,2,[[706,8,2,0,2]]]],[18174,18177]]]]},{"k":"H6674","v":[["filthy",[2,2,[[37,2,2,0,2,[[913,2,2,0,2]]]],[22915,22916]]]]},{"k":"H6675","v":[["*",[3,3,[[19,1,1,0,1,[[657,1,1,0,1]]],[22,2,2,1,3,[[682,1,1,1,2],[706,1,1,2,3]]]],[17263,17737,18172]]],["+",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17263]]],["filth",[1,1,[[22,1,1,0,1,[[682,1,1,0,1]]]],[17737]]],["filthiness",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18172]]]]},{"k":"H6676","v":[["neck",[3,3,[[26,3,3,0,3,[[854,3,3,0,3]]]],[21881,21890,21903]]]]},{"k":"H6677","v":[["*",[43,40,[[0,8,6,0,6,[[26,2,2,0,2],[32,1,1,2,3],[40,1,1,3,4],[44,2,1,4,5],[45,2,1,5,6]]],[4,1,1,6,7,[[180,1,1,6,7]]],[5,2,1,7,8,[[196,2,1,7,8]]],[6,3,3,8,11,[[215,1,1,8,9],[218,2,2,9,11]]],[15,1,1,11,12,[[415,1,1,11,12]]],[17,3,3,12,15,[[450,1,1,12,13],[474,1,1,13,14],[476,1,1,14,15]]],[18,1,1,15,16,[[552,1,1,15,16]]],[21,4,4,16,20,[[671,1,1,16,17],[674,2,2,17,19],[677,1,1,19,20]]],[22,4,4,20,24,[[686,1,1,20,21],[688,1,1,21,22],[708,1,1,22,23],[730,1,1,23,24]]],[23,10,10,24,34,[[771,4,4,24,28],[772,4,4,28,32],[774,1,1,32,33],[783,1,1,33,34]]],[24,2,2,34,36,[[797,1,1,34,35],[801,1,1,35,36]]],[25,1,1,36,37,[[822,1,1,36,37]]],[27,1,1,37,38,[[871,1,1,37,38]]],[32,1,1,38,39,[[894,1,1,38,39]]],[34,1,1,39,40,[[905,1,1,39,40]]]],[743,767,964,1237,1372,1415,5659,6088,6653,6740,6745,12332,13229,13853,13910,15076,17547,17586,17591,17631,17815,17877,18245,18698,19598,19604,19607,19608,19628,19629,19630,19632,19675,19930,20324,20447,20973,22236,22598,22781]]],["+",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17591]]],["Zedekiah's",[1,1,[[23,1,1,0,1,[[783,1,1,0,1]]]],[19930]]],["neck",[31,29,[[0,8,6,0,6,[[26,2,2,0,2],[32,1,1,2,3],[40,1,1,3,4],[44,2,1,4,5],[45,2,1,5,6]]],[4,1,1,6,7,[[180,1,1,6,7]]],[17,3,3,7,10,[[450,1,1,7,8],[474,1,1,8,9],[476,1,1,9,10]]],[18,1,1,10,11,[[552,1,1,10,11]]],[21,3,3,11,14,[[671,1,1,11,12],[674,1,1,12,13],[677,1,1,13,14]]],[22,4,4,14,18,[[686,1,1,14,15],[688,1,1,15,16],[708,1,1,16,17],[730,1,1,17,18]]],[23,8,8,18,26,[[771,3,3,18,21],[772,4,4,21,25],[774,1,1,25,26]]],[24,1,1,26,27,[[797,1,1,26,27]]],[27,1,1,27,28,[[871,1,1,27,28]]],[34,1,1,28,29,[[905,1,1,28,29]]]],[743,767,964,1237,1372,1415,5659,13229,13853,13910,15076,17547,17586,17631,17815,17877,18245,18698,19598,19604,19607,19628,19629,19630,19632,19675,20324,22236,22781]]],["necks",[10,9,[[5,2,1,0,1,[[196,2,1,0,1]]],[6,3,3,1,4,[[215,1,1,1,2],[218,2,2,2,4]]],[15,1,1,4,5,[[415,1,1,4,5]]],[23,1,1,5,6,[[771,1,1,5,6]]],[24,1,1,6,7,[[801,1,1,6,7]]],[25,1,1,7,8,[[822,1,1,7,8]]],[32,1,1,8,9,[[894,1,1,8,9]]]],[6088,6653,6740,6745,12332,19608,20447,20973,22598]]]]},{"k":"H6678","v":[["*",[12,12,[[8,1,1,0,1,[[249,1,1,0,1]]],[9,6,6,1,7,[[274,3,3,1,4],[276,2,2,4,6],[289,1,1,6,7]]],[10,1,1,7,8,[[301,1,1,7,8]]],[12,4,4,8,12,[[355,3,3,8,11],[356,1,1,11,12]]]],[7555,8212,8214,8221,8246,8248,8689,9131,10893,10895,10899,10913]]],["+",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]]],[8689,10913]]],["Zoba",[2,2,[[9,2,2,0,2,[[276,2,2,0,2]]]],[8246,8248]]],["Zobah",[8,8,[[8,1,1,0,1,[[249,1,1,0,1]]],[9,3,3,1,4,[[274,3,3,1,4]]],[10,1,1,4,5,[[301,1,1,4,5]]],[12,3,3,5,8,[[355,3,3,5,8]]]],[7555,8212,8214,8221,9131,10893,10895,10899]]]]},{"k":"H6679","v":[["*",[18,15,[[0,3,3,0,3,[[26,3,3,0,3]]],[2,1,1,3,4,[[106,1,1,3,4]]],[5,1,1,4,5,[[195,1,1,4,5]]],[17,2,2,5,7,[[445,1,1,5,6],[473,1,1,6,7]]],[18,1,1,7,8,[[617,1,1,7,8]]],[19,1,1,8,9,[[633,1,1,8,9]]],[23,1,1,9,10,[[760,1,1,9,10]]],[24,3,2,10,12,[[799,2,1,10,11],[800,1,1,11,12]]],[25,4,2,12,14,[[814,4,2,12,14]]],[32,1,1,14,15,[[899,1,1,14,15]]]],[730,732,760,3248,6049,13102,13832,16274,16566,19352,20406,20438,20726,20728,22666]]],["+",[3,2,[[24,2,1,0,1,[[799,2,1,0,1]]],[25,1,1,1,2,[[814,1,1,1,2]]]],[20406,20728]]],["hunt",[10,9,[[0,1,1,0,1,[[26,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]],[18,1,1,2,3,[[617,1,1,2,3]]],[19,1,1,3,4,[[633,1,1,3,4]]],[23,1,1,4,5,[[760,1,1,4,5]]],[24,1,1,5,6,[[800,1,1,5,6]]],[25,3,2,6,8,[[814,3,2,6,8]]],[32,1,1,8,9,[[899,1,1,8,9]]]],[732,13832,16274,16566,19352,20438,20726,20728,22666]]],["huntest",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13102]]],["hunteth",[1,1,[[2,1,1,0,1,[[106,1,1,0,1]]]],[3248]]],["provision",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6049]]],["take",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[730]]],["taken",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[760]]]]},{"k":"H6680","v":[["*",[494,475,[[0,27,26,0,26,[[1,1,1,0,1],[2,2,2,1,3],[5,1,1,3,4],[6,3,3,4,7],[11,1,1,7,8],[17,1,1,8,9],[20,1,1,9,10],[25,1,1,10,11],[26,1,1,11,12],[27,2,2,12,14],[31,3,3,14,17],[41,1,1,17,18],[43,1,1,18,19],[44,1,1,19,20],[46,1,1,20,21],[48,2,2,21,23],[49,4,3,23,26]]],[1,54,54,26,80,[[50,1,1,26,27],[53,1,1,27,28],[54,1,1,28,29],[55,1,1,29,30],[56,4,4,30,34],[61,2,2,34,36],[65,4,4,36,40],[67,1,1,40,41],[68,1,1,41,42],[72,1,1,42,43],[74,1,1,43,44],[76,1,1,44,45],[78,1,1,45,46],[80,2,2,46,48],[81,1,1,48,49],[83,5,5,49,54],[84,4,4,54,58],[85,3,3,58,61],[87,1,1,61,62],[88,10,10,62,72],[89,8,8,72,80]]],[2,35,34,80,114,[[95,1,1,80,81],[96,3,2,81,83],[97,11,11,83,94],[98,5,5,94,99],[99,4,4,99,103],[102,1,1,103,104],[103,4,4,104,108],[105,1,1,108,109],[106,1,1,109,110],[113,2,2,110,112],[114,1,1,112,113],[116,1,1,113,114]]],[3,48,45,114,159,[[117,2,2,114,116],[118,2,2,116,118],[119,3,3,118,121],[120,1,1,121,122],[121,1,1,122,123],[124,3,3,123,126],[125,2,2,126,128],[131,3,2,128,130],[133,1,1,130,131],[135,1,1,131,132],[136,2,2,132,134],[142,1,1,134,135],[143,4,4,135,139],[144,1,1,139,140],[145,1,1,140,141],[146,2,2,141,143],[147,5,5,143,148],[148,2,2,148,150],[150,4,3,150,153],[151,1,1,153,154],[152,6,5,154,159]]],[4,88,86,159,245,[[153,5,5,159,164],[154,2,2,164,166],[155,3,3,166,169],[156,7,6,169,175],[157,5,5,175,180],[158,7,7,180,187],[159,1,1,187,188],[160,2,2,188,190],[161,2,2,190,192],[162,2,2,192,194],[163,5,5,194,199],[164,5,5,199,204],[165,2,2,204,206],[167,3,3,206,209],[169,1,1,209,210],[170,2,2,210,212],[171,2,2,212,214],[172,1,1,214,215],[176,3,3,215,218],[178,3,3,218,221],[179,5,4,221,225],[180,6,6,225,231],[181,1,1,231,232],[182,4,4,232,236],[183,6,6,236,242],[184,1,1,242,243],[185,1,1,243,244],[186,1,1,244,245]]],[5,43,39,245,284,[[187,7,7,245,252],[189,2,2,252,254],[190,6,5,254,259],[192,1,1,259,260],[193,1,1,260,261],[194,7,7,261,268],[195,1,1,268,269],[196,2,2,269,271],[197,5,3,271,274],[199,1,1,274,275],[200,2,2,275,277],[203,1,1,277,278],[204,1,1,278,279],[207,2,2,279,281],[208,3,2,281,283],[209,1,1,283,284]]],[6,6,6,284,290,[[212,1,1,284,285],[213,1,1,285,286],[214,1,1,286,287],[223,1,1,287,288],[231,2,2,288,290]]],[7,3,3,290,293,[[233,2,2,290,292],[234,1,1,292,293]]],[8,10,8,293,301,[[237,1,1,293,294],[248,3,2,294,296],[252,1,1,296,297],[253,1,1,297,298],[255,1,1,298,299],[256,2,1,299,300],[260,1,1,300,301]]],[9,19,17,301,318,[[270,1,1,301,302],[271,1,1,302,303],[272,1,1,303,304],[273,2,2,304,306],[275,1,1,306,307],[277,1,1,307,308],[279,3,2,308,310],[280,2,2,310,312],[283,2,2,312,314],[284,3,2,314,316],[287,1,1,316,317],[290,1,1,317,318]]],[10,18,17,318,335,[[291,1,1,318,319],[292,3,3,319,322],[295,2,2,322,324],[298,1,1,324,325],[299,1,1,325,326],[301,4,3,326,329],[303,2,2,329,331],[305,1,1,331,332],[307,2,2,332,334],[312,1,1,334,335]]],[11,19,18,335,353,[[323,3,3,335,338],[326,1,1,338,339],[328,2,2,339,341],[329,5,5,341,346],[330,2,2,346,348],[332,1,1,348,349],[333,2,1,349,350],[334,1,1,350,351],[335,2,2,351,353]]],[12,12,12,353,365,[[343,1,1,353,354],[351,1,1,354,355],[352,1,1,355,356],[353,2,2,356,358],[354,2,2,358,360],[359,4,4,360,364],[361,1,1,364,365]]],[13,8,8,365,373,[[373,2,2,365,367],[384,1,1,367,368],[385,1,1,368,369],[389,1,1,369,370],[391,1,1,370,371],[399,1,1,371,372],[400,1,1,372,373]]],[14,3,3,373,376,[[406,1,1,373,374],[410,1,1,374,375],[411,1,1,375,376]]],[15,7,7,376,383,[[413,2,2,376,378],[417,1,1,378,379],[419,1,1,379,380],[420,2,2,380,382],[421,1,1,382,383]]],[16,9,9,383,392,[[427,2,2,383,385],[428,2,2,385,387],[429,4,4,387,391],[433,1,1,391,392]]],[17,3,3,392,395,[[471,1,1,392,393],[472,1,1,393,394],[473,1,1,394,395]]],[18,15,15,395,410,[[484,1,1,395,396],[510,1,1,396,397],[519,1,1,397,398],[521,1,1,398,399],[545,1,1,399,400],[548,1,1,400,401],[555,2,2,401,403],[568,1,1,403,404],[582,1,1,404,405],[588,1,1,405,406],[596,2,2,406,408],[610,1,1,408,409],[625,1,1,409,410]]],[22,10,10,410,420,[[683,1,1,410,411],[688,1,1,411,412],[691,1,1,412,413],[701,1,1,413,414],[712,1,1,414,415],[716,1,1,415,416],[723,2,2,416,418],[726,1,1,418,419],[733,1,1,419,420]]],[23,39,37,420,457,[[745,2,2,420,422],[751,4,3,422,425],[755,3,2,425,427],[757,2,2,427,429],[758,1,1,429,430],[761,1,1,430,431],[763,1,1,431,432],[767,1,1,432,433],[770,2,2,433,435],[771,1,1,435,436],[773,1,1,436,437],[776,3,3,437,440],[778,1,1,440,441],[779,6,6,441,447],[780,3,3,447,450],[781,1,1,450,451],[782,2,2,451,453],[783,1,1,453,454],[791,1,1,454,455],[794,1,1,455,456],[795,1,1,456,457]]],[24,4,4,457,461,[[797,2,2,457,459],[798,1,1,459,460],[799,1,1,460,461]]],[25,6,6,461,467,[[810,1,1,461,462],[811,1,1,462,463],[813,1,1,463,464],[825,1,1,464,465],[838,2,2,465,467]]],[29,5,5,467,472,[[880,1,1,467,468],[884,1,1,468,469],[887,3,3,469,472]]],[33,1,1,472,473,[[900,1,1,472,473]]],[37,1,1,473,474,[[911,1,1,473,474]]],[38,1,1,474,475,[[928,1,1,474,475]]]],[46,66,72,159,164,168,175,318,443,517,703,735,774,779,932,945,947,1277,1325,1377,1431,1502,1506,1508,1518,1522,1554,1629,1638,1668,1687,1691,1695,1705,1844,1866,1963,1971,1979,1981,2022,2033,2159,2217,2292,2371,2426,2431,2446,2500,2507,2514,2528,2530,2532,2535,2541,2560,2567,2571,2572,2655,2665,2669,2671,2685,2690,2693,2695,2696,2706,2707,2723,2726,2728,2730,2732,2734,2736,2739,2858,2915,2917,2921,2922,2926,2930,2934,2938,2946,2948,2951,2952,2953,2958,2959,2960,2963,2974,2978,2990,2992,2995,3106,3115,3116,3147,3151,3235,3237,3448,3469,3490,3604,3623,3658,3691,3692,3708,3734,3743,3792,3794,3942,3959,3961,3970,3973,4176,4189,4255,4291,4320,4338,4493,4565,4573,4576,4577,4579,4648,4649,4664,4671,4685,4695,4705,4711,4743,4746,4818,4829,4845,4847,4881,4884,4885,4889,4892,4895,4908,4910,4911,4933,4942,4975,4993,4996,5003,5006,5009,5017,5018,5027,5044,5065,5068,5069,5085,5086,5087,5088,5092,5103,5106,5110,5111,5122,5138,5148,5169,5173,5191,5199,5216,5221,5230,5235,5236,5251,5254,5261,5268,5272,5277,5290,5324,5330,5334,5367,5402,5404,5413,5415,5444,5533,5543,5547,5579,5580,5582,5586,5589,5595,5596,5612,5619,5624,5625,5626,5656,5680,5710,5716,5719,5724,5733,5738,5742,5751,5753,5757,5804,5814,5848,5858,5860,5861,5862,5864,5867,5869,5896,5901,5913,5918,5920,5926,5927,5959,5987,6006,6010,6029,6031,6033,6035,6037,6061,6091,6104,6119,6122,6127,6160,6189,6192,6279,6301,6383,6389,6428,6431,6476,6565,6572,6605,6898,7112,7122,7158,7164,7178,7269,7498,7499,7638,7698,7759,7774,7891,8132,8157,8178,8187,8191,8238,8278,8345,8346,8364,8375,8463,8472,8483,8490,8594,8711,8752,8771,8813,8816,8884,8895,9043,9055,9118,9119,9146,9193,9205,9254,9321,9326,9511,9834,9838,9844,9902,9978,9979,9996,9998,10010,10017,10018,10030,10036,10099,10127,10157,10169,10186,10503,10790,10806,10835,10860,10869,10873,10970,10976,10977,10981,11034,11337,11341,11572,11585,11664,11708,11916,11953,12113,12218,12248,12303,12304,12396,12422,12494,12507,12525,12734,12744,12749,12759,12767,12770,12772,12779,12826,13768,13781,13805,14001,14375,14563,14575,14928,14979,15118,15136,15406,15614,15802,15902,16036,16172,16376,17745,17856,17909,18088,18319,18391,18572,18573,18619,18744,18953,18963,19141,19142,19150,19230,19234,19271,19272,19307,19379,19412,19516,19574,19580,19600,19658,19744,19754,19766,19823,19829,19831,19833,19837,19839,19841,19847,19850,19868,19895,19905,19922,19934,20080,20187,20271,20320,20327,20349,20391,20633,20639,20687,21074,21404,21407,22391,22461,22498,22499,22504,22698,22884,23142]]],["+",[157,153,[[0,9,9,0,9,[[1,1,1,0,1],[6,1,1,1,2],[17,1,1,2,3],[25,1,1,3,4],[27,1,1,4,5],[31,1,1,5,6],[43,1,1,6,7],[48,1,1,7,8],[49,1,1,8,9]]],[1,23,23,9,32,[[61,2,2,9,11],[65,1,1,11,12],[74,1,1,12,13],[76,1,1,13,14],[83,1,1,14,15],[87,1,1,15,16],[88,9,9,16,25],[89,7,7,25,32]]],[2,15,14,32,46,[[95,1,1,32,33],[96,2,1,33,34],[97,5,5,34,39],[98,1,1,39,40],[103,1,1,40,41],[105,1,1,41,42],[113,2,2,42,44],[114,1,1,44,45],[116,1,1,45,46]]],[3,31,31,46,77,[[117,2,2,46,48],[118,2,2,48,50],[119,1,1,50,51],[120,1,1,51,52],[121,1,1,52,53],[124,3,3,53,56],[125,1,1,56,57],[131,2,2,57,59],[142,1,1,59,60],[143,2,2,60,62],[144,1,1,62,63],[145,1,1,63,64],[146,1,1,64,65],[147,5,5,65,70],[148,1,1,70,71],[150,2,2,71,73],[151,1,1,73,74],[152,3,3,74,77]]],[4,11,11,77,88,[[153,2,2,77,79],[155,1,1,79,80],[179,2,2,80,82],[180,1,1,82,83],[181,1,1,83,84],[183,2,2,84,86],[184,1,1,86,87],[186,1,1,87,88]]],[5,17,14,88,102,[[187,2,2,88,90],[189,2,2,90,92],[190,4,3,92,95],[194,2,2,95,97],[197,4,2,97,99],[200,1,1,99,100],[203,1,1,100,101],[204,1,1,101,102]]],[6,3,3,102,105,[[212,1,1,102,103],[213,1,1,103,104],[231,1,1,104,105]]],[7,2,2,105,107,[[233,2,2,105,107]]],[8,1,1,107,108,[[253,1,1,107,108]]],[9,6,6,108,114,[[270,1,1,108,109],[275,1,1,109,110],[277,1,1,110,111],[279,1,1,111,112],[283,1,1,112,113],[284,1,1,113,114]]],[10,6,6,114,120,[[292,2,2,114,116],[298,1,1,116,117],[301,2,2,117,119],[312,1,1,119,120]]],[11,9,9,120,129,[[323,1,1,120,121],[328,1,1,121,122],[329,2,2,122,124],[330,1,1,124,125],[332,1,1,125,126],[334,1,1,126,127],[335,2,2,127,129]]],[12,1,1,129,130,[[359,1,1,129,130]]],[13,4,4,130,134,[[373,1,1,130,131],[384,1,1,131,132],[385,1,1,132,133],[400,1,1,133,134]]],[14,1,1,134,135,[[410,1,1,134,135]]],[15,2,2,135,137,[[413,2,2,135,137]]],[18,2,2,137,139,[[555,1,1,137,138],[610,1,1,138,139]]],[22,2,2,139,141,[[683,1,1,139,140],[716,1,1,140,141]]],[23,8,8,141,149,[[755,1,1,141,142],[776,1,1,142,143],[779,2,2,143,145],[780,2,2,145,147],[782,1,1,147,148],[795,1,1,148,149]]],[25,1,1,149,150,[[811,1,1,149,150]]],[29,2,2,150,152,[[887,2,2,150,152]]],[37,1,1,152,153,[[911,1,1,152,153]]]],[46,168,443,703,779,945,1325,1506,1508,1844,1866,1981,2217,2292,2528,2655,2665,2669,2671,2685,2690,2693,2695,2696,2706,2726,2728,2730,2732,2734,2736,2739,2858,2917,2926,2930,2934,2938,2946,2963,3116,3235,3448,3469,3490,3604,3623,3658,3691,3692,3743,3792,3794,3942,3959,3961,3970,4176,4189,4493,4565,4573,4579,4648,4664,4671,4685,4695,4705,4711,4746,4818,4829,4847,4881,4884,4889,4895,4908,5003,5586,5596,5619,5680,5751,5753,5804,5848,5861,5862,5896,5901,5920,5926,5927,6029,6033,6122,6127,6192,6279,6301,6565,6572,7122,7158,7164,7698,8132,8238,8278,8345,8472,8483,8771,8816,9043,9118,9119,9511,9844,9978,9996,10017,10030,10099,10157,10169,10186,10977,11337,11572,11585,11953,12218,12303,12304,15118,16172,17745,18391,19230,19744,19829,19837,19847,19868,19905,20271,20639,22498,22499,22884]]],["appoint",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8178]]],["appointed",[4,4,[[8,1,1,0,1,[[260,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[10,1,1,2,3,[[291,1,1,2,3]]],[15,1,1,3,4,[[417,1,1,3,4]]]],[7891,8463,8752,12396]]],["bade",[3,3,[[1,1,1,0,1,[[65,1,1,0,1]]],[7,1,1,1,2,[[234,1,1,1,2]]],[9,1,1,2,3,[[280,1,1,2,3]]]],[1971,7178,8375]]],["charge",[12,12,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,1,1,1,2,[[143,1,1,1,2]]],[4,1,1,2,3,[[183,1,1,2,3]]],[9,2,2,3,5,[[280,1,1,3,4],[284,1,1,4,5]]],[12,1,1,5,6,[[359,1,1,5,6]]],[15,1,1,6,7,[[419,1,1,6,7]]],[16,1,1,7,8,[[429,1,1,7,8]]],[18,1,1,8,9,[[568,1,1,8,9]]],[22,1,1,9,10,[[688,1,1,9,10]]],[23,2,2,10,12,[[783,1,1,10,11],[791,1,1,11,12]]]],[1668,4577,5742,8364,8483,10976,12422,12770,15406,17856,19934,20080]]],["charged",[13,13,[[0,2,2,0,2,[[27,1,1,0,1],[48,1,1,1,2]]],[1,1,1,2,3,[[50,1,1,2,3]]],[5,1,1,3,4,[[208,1,1,3,4]]],[9,1,1,4,5,[[284,1,1,4,5]]],[10,2,2,5,7,[[292,1,1,5,6],[303,1,1,6,7]]],[11,2,2,7,9,[[329,2,2,7,9]]],[12,1,1,9,10,[[359,1,1,9,10]]],[16,2,2,10,12,[[427,2,2,10,12]]],[23,1,1,12,13,[[779,1,1,12,13]]]],[774,1502,1554,6431,8490,8813,9193,9998,10018,10970,12734,12744,19831]]],["command",[64,63,[[0,2,2,0,2,[[26,1,1,0,1],[49,1,1,1,2]]],[1,3,3,2,5,[[56,1,1,2,3],[67,1,1,3,4],[83,1,1,4,5]]],[2,4,4,5,9,[[102,1,1,5,6],[103,3,3,6,9]]],[3,2,2,9,11,[[125,1,1,9,10],[152,1,1,10,11]]],[4,39,38,11,49,[[154,1,1,11,12],[156,3,2,12,14],[158,2,2,14,16],[159,1,1,16,17],[160,2,2,17,19],[162,1,1,19,20],[163,5,5,20,25],[164,4,4,25,29],[165,1,1,29,30],[167,3,3,30,33],[170,1,1,33,34],[171,2,2,34,36],[176,2,2,36,38],[179,3,3,38,41],[180,4,4,41,45],[182,4,4,45,49]]],[5,1,1,49,50,[[190,1,1,49,50]]],[10,2,2,50,52,[[295,1,1,50,51],[301,1,1,51,52]]],[18,2,2,52,54,[[519,1,1,52,53],[521,1,1,53,54]]],[22,1,1,54,55,[[723,1,1,54,55]]],[23,6,6,55,61,[[745,2,2,55,57],[755,1,1,57,58],[770,1,1,58,59],[771,1,1,59,60],[778,1,1,60,61]]],[24,1,1,61,62,[[797,1,1,61,62]]],[29,1,1,62,63,[[887,1,1,62,63]]]],[735,1522,1687,2022,2507,3106,3115,3147,3151,3973,4885,4942,5006,5044,5088,5092,5122,5138,5148,5199,5216,5221,5230,5235,5236,5251,5254,5268,5272,5290,5324,5330,5334,5402,5413,5415,5543,5547,5586,5589,5595,5612,5624,5625,5626,5710,5716,5719,5724,5913,8884,9146,14563,14575,18572,18953,18963,19230,19574,19600,19823,20320,22504]]],["commanded",[219,214,[[0,13,13,0,13,[[2,2,2,0,2],[5,1,1,2,3],[6,2,2,3,5],[11,1,1,5,6],[20,1,1,6,7],[31,2,2,7,9],[41,1,1,9,10],[44,1,1,10,11],[46,1,1,11,12],[49,1,1,12,13]]],[1,23,23,13,36,[[53,1,1,13,14],[54,1,1,14,15],[56,3,3,15,18],[65,1,1,18,19],[68,1,1,19,20],[72,1,1,20,21],[78,1,1,21,22],[80,2,2,22,24],[81,1,1,24,25],[83,3,3,25,28],[84,4,4,28,32],[85,2,2,32,34],[88,1,1,34,35],[89,1,1,35,36]]],[2,16,16,36,52,[[96,1,1,36,37],[97,6,6,37,43],[98,4,4,43,47],[99,4,4,47,51],[106,1,1,51,52]]],[3,13,13,52,65,[[119,2,2,52,54],[131,1,1,54,55],[133,1,1,55,56],[135,1,1,56,57],[136,2,2,57,59],[143,1,1,59,60],[146,1,1,60,61],[150,2,2,61,63],[152,2,2,63,65]]],[4,35,35,65,100,[[153,3,3,65,68],[155,2,2,68,70],[156,3,3,70,73],[157,5,5,73,78],[158,5,5,78,83],[161,2,2,83,85],[162,1,1,85,86],[164,1,1,86,87],[165,1,1,87,88],[169,1,1,88,89],[170,1,1,89,90],[172,1,1,90,91],[176,1,1,91,92],[178,3,3,92,95],[180,1,1,95,96],[183,3,3,96,99],[185,1,1,99,100]]],[5,22,21,100,121,[[187,3,3,100,103],[190,1,1,103,104],[192,1,1,104,105],[193,1,1,105,106],[194,5,5,106,111],[195,1,1,111,112],[196,2,2,112,114],[197,1,1,114,115],[199,1,1,115,116],[200,1,1,116,117],[207,2,2,117,119],[208,2,1,119,120],[209,1,1,120,121]]],[6,3,3,121,124,[[214,1,1,121,122],[223,1,1,122,123],[231,1,1,123,124]]],[8,8,6,124,130,[[237,1,1,124,125],[248,3,2,125,127],[252,1,1,127,128],[255,1,1,128,129],[256,2,1,129,130]]],[9,7,7,130,137,[[271,1,1,130,131],[273,2,2,131,133],[279,2,2,133,135],[287,1,1,135,136],[290,1,1,136,137]]],[10,7,7,137,144,[[295,1,1,137,138],[299,1,1,138,139],[301,1,1,139,140],[303,1,1,140,141],[305,1,1,141,142],[307,2,2,142,144]]],[11,8,7,144,151,[[323,2,2,144,146],[326,1,1,146,147],[328,1,1,147,148],[329,1,1,148,149],[330,1,1,149,150],[333,2,1,150,151]]],[12,9,9,151,160,[[343,1,1,151,152],[351,1,1,152,153],[352,1,1,153,154],[353,2,2,154,156],[354,2,2,156,158],[359,1,1,158,159],[361,1,1,159,160]]],[13,4,4,160,164,[[373,1,1,160,161],[389,1,1,161,162],[391,1,1,162,163],[399,1,1,163,164]]],[14,2,2,164,166,[[406,1,1,164,165],[411,1,1,165,166]]],[15,2,2,166,168,[[420,2,2,166,168]]],[16,4,4,168,172,[[428,2,2,168,170],[429,1,1,170,171],[433,1,1,171,172]]],[17,1,1,172,173,[[473,1,1,172,173]]],[18,9,9,173,182,[[484,1,1,173,174],[510,1,1,174,175],[545,1,1,175,176],[555,1,1,176,177],[582,1,1,177,178],[588,1,1,178,179],[596,2,2,179,181],[625,1,1,181,182]]],[22,4,4,182,186,[[691,1,1,182,183],[712,1,1,183,184],[723,1,1,184,185],[726,1,1,185,186]]],[23,21,20,186,206,[[751,4,3,186,189],[755,1,1,189,190],[757,2,2,190,192],[758,1,1,192,193],[761,1,1,193,194],[763,1,1,194,195],[767,1,1,195,196],[770,1,1,196,197],[773,1,1,197,198],[776,1,1,198,199],[779,3,3,199,202],[780,1,1,202,203],[781,1,1,203,204],[782,1,1,204,205],[794,1,1,205,206]]],[24,2,2,206,208,[[797,1,1,206,207],[798,1,1,207,208]]],[25,5,5,208,213,[[810,1,1,208,209],[813,1,1,209,210],[825,1,1,210,211],[838,2,2,211,213]]],[29,1,1,213,214,[[880,1,1,213,214]]]],[66,72,159,164,175,318,517,932,947,1277,1377,1431,1518,1629,1638,1691,1695,1705,1963,2033,2159,2371,2426,2431,2446,2500,2514,2530,2532,2535,2541,2560,2567,2571,2707,2723,2915,2921,2922,2948,2951,2952,2953,2958,2959,2960,2974,2978,2990,2992,2995,3237,3708,3734,4176,4255,4291,4320,4338,4576,4649,4829,4845,4881,4892,4910,4911,4933,4993,4996,5009,5017,5018,5065,5068,5069,5085,5086,5087,5103,5106,5110,5111,5169,5173,5191,5261,5277,5367,5404,5444,5533,5579,5580,5582,5656,5733,5738,5757,5814,5858,5860,5864,5918,5959,5987,6006,6010,6031,6035,6037,6061,6091,6104,6119,6160,6189,6383,6389,6428,6476,6605,6898,7112,7269,7498,7499,7638,7759,7774,8157,8187,8191,8345,8346,8594,8711,8895,9055,9118,9205,9254,9321,9326,9834,9838,9902,9979,10010,10036,10127,10503,10790,10806,10835,10860,10869,10873,10981,11034,11341,11664,11708,11916,12113,12248,12494,12507,12749,12759,12779,12826,13805,14001,14375,14928,15136,15614,15802,15902,16036,16376,17909,18319,18573,18619,19141,19142,19150,19234,19271,19272,19307,19379,19412,19516,19580,19658,19766,19833,19839,19841,19850,19895,19922,20187,20327,20349,20633,20687,21074,21404,21407,22391]]],["commandedst",[2,2,[[15,1,1,0,1,[[421,1,1,0,1]]],[23,1,1,1,2,[[776,1,1,1,2]]]],[12525,19754]]],["commander",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18744]]],["commandest",[2,2,[[5,2,2,0,2,[[187,2,2,0,2]]]],[5867,5869]]],["commandeth",[6,6,[[1,1,1,0,1,[[65,1,1,0,1]]],[3,1,1,1,2,[[148,1,1,1,2]]],[17,2,2,2,4,[[471,1,1,2,3],[472,1,1,3,4]]],[24,1,1,4,5,[[799,1,1,4,5]]],[29,1,1,5,6,[[884,1,1,5,6]]]],[1979,4743,13768,13781,20391,22461]]],["commandment",[6,6,[[1,1,1,0,1,[[85,1,1,0,1]]],[16,2,2,1,3,[[429,2,2,1,3]]],[18,1,1,3,4,[[548,1,1,3,4]]],[22,1,1,4,5,[[701,1,1,4,5]]],[33,1,1,5,6,[[900,1,1,5,6]]]],[2572,12767,12772,14979,18088,22698]]],["forbad",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4975]]],["forbidden",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5027]]],["messenger",[1,1,[[0,1,1,0,1,[[49,1,1,0,1]]]],[1522]]],["unto",[1,1,[[38,1,1,0,1,[[928,1,1,0,1]]]],[23142]]]]},{"k":"H6681","v":[["shout",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18491]]]]},{"k":"H6682","v":[["*",[4,4,[[18,1,1,0,1,[[621,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]],[23,2,2,2,4,[[758,1,1,2,3],[790,1,1,3,4]]]],[16319,18106,19295,20057]]],["complaining",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16319]]],["cry",[2,2,[[23,2,2,0,2,[[758,1,1,0,1],[790,1,1,1,2]]]],[19295,20057]]],["crying",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18106]]]]},{"k":"H6683","v":[["deep",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18560]]]]},{"k":"H6684","v":[["*",[21,17,[[6,1,1,0,1,[[230,1,1,0,1]]],[8,2,2,1,3,[[242,1,1,1,2],[266,1,1,2,3]]],[9,5,5,3,8,[[267,1,1,3,4],[278,4,4,4,8]]],[10,1,1,8,9,[[311,1,1,8,9]]],[12,1,1,9,10,[[347,1,1,9,10]]],[14,1,1,10,11,[[410,1,1,10,11]]],[15,1,1,11,12,[[413,1,1,11,12]]],[16,2,1,12,13,[[429,2,1,12,13]]],[22,3,2,13,15,[[736,3,2,13,15]]],[23,1,1,15,16,[[758,1,1,15,16]]],[37,3,1,16,17,[[917,3,1,16,17]]]],[7080,7358,8022,8034,8302,8307,8308,8309,9478,10671,12224,12300,12778,18789,18790,19305,22967]]],["+",[4,3,[[9,1,1,0,1,[[278,1,1,0,1]]],[15,1,1,1,2,[[413,1,1,1,2]]],[37,2,1,2,3,[[917,2,1,2,3]]]],[8302,12300,22967]]],["fast",[7,5,[[9,2,2,0,2,[[278,2,2,0,2]]],[16,2,1,2,3,[[429,2,1,2,3]]],[22,2,1,3,4,[[736,2,1,3,4]]],[23,1,1,4,5,[[758,1,1,4,5]]]],[8307,8309,12778,18790,19305]]],["fasted",[10,10,[[6,1,1,0,1,[[230,1,1,0,1]]],[8,2,2,1,3,[[242,1,1,1,2],[266,1,1,2,3]]],[9,2,2,3,5,[[267,1,1,3,4],[278,1,1,4,5]]],[10,1,1,5,6,[[311,1,1,5,6]]],[12,1,1,6,7,[[347,1,1,6,7]]],[14,1,1,7,8,[[410,1,1,7,8]]],[22,1,1,8,9,[[736,1,1,8,9]]],[37,1,1,9,10,[[917,1,1,9,10]]]],[7080,7358,8022,8034,8308,9478,10671,12224,18789,22967]]]]},{"k":"H6685","v":[["*",[26,22,[[9,1,1,0,1,[[278,1,1,0,1]]],[10,2,2,1,3,[[311,2,2,1,3]]],[13,1,1,3,4,[[386,1,1,3,4]]],[14,1,1,4,5,[[410,1,1,4,5]]],[15,1,1,5,6,[[421,1,1,5,6]]],[16,2,2,6,8,[[429,1,1,6,7],[434,1,1,7,8]]],[18,3,3,8,11,[[512,1,1,8,9],[546,1,1,9,10],[586,1,1,10,11]]],[22,4,3,11,14,[[736,4,3,11,14]]],[23,2,2,14,16,[[780,2,2,14,16]]],[26,1,1,16,17,[[858,1,1,16,17]]],[28,3,3,17,20,[[876,1,1,17,18],[877,2,2,18,20]]],[31,1,1,20,21,[[891,1,1,20,21]]],[37,4,1,21,22,[[918,4,1,21,22]]]],[8302,9460,9463,11590,12222,12512,12765,12865,14423,14945,15779,18789,18791,18792,19848,19851,21991,22305,22323,22326,22563,22995]]],["+",[2,2,[[9,1,1,0,1,[[278,1,1,0,1]]],[18,1,1,1,2,[[586,1,1,1,2]]]],[8302,15779]]],["fast",[16,12,[[10,2,2,0,2,[[311,2,2,0,2]]],[13,1,1,2,3,[[386,1,1,2,3]]],[14,1,1,3,4,[[410,1,1,3,4]]],[22,4,3,4,7,[[736,4,3,4,7]]],[23,1,1,7,8,[[780,1,1,7,8]]],[28,2,2,8,10,[[876,1,1,8,9],[877,1,1,9,10]]],[31,1,1,10,11,[[891,1,1,10,11]]],[37,4,1,11,12,[[918,4,1,11,12]]]],[9460,9463,11590,12222,18789,18791,18792,19851,22305,22326,22563,22995]]],["fasting",[7,7,[[15,1,1,0,1,[[421,1,1,0,1]]],[16,1,1,1,2,[[429,1,1,1,2]]],[18,2,2,2,4,[[512,1,1,2,3],[546,1,1,3,4]]],[23,1,1,4,5,[[780,1,1,4,5]]],[26,1,1,5,6,[[858,1,1,5,6]]],[28,1,1,6,7,[[877,1,1,6,7]]]],[12512,12765,14423,14945,19848,21991,22323]]],["fastings",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12865]]]]},{"k":"H6686","v":[["Zuar",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3612,3663,3868,3873,4003]]]]},{"k":"H6687","v":[["*",[3,3,[[4,1,1,0,1,[[163,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]]],[5212,9680,20408]]],["+",[1,1,[[4,1,1,0,1,[[163,1,1,0,1]]]],[5212]]],["flowed",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20408]]],["swim",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9680]]]]},{"k":"H6688","v":[["+",[2,2,[[18,1,1,0,1,[[496,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]]],[14178,16864]]]]},{"k":"H6689","v":[["*",[4,4,[[8,2,2,0,2,[[236,1,1,0,1],[244,1,1,1,2]]],[12,2,2,2,4,[[343,2,2,2,4]]]],[7213,7396,10480,10489]]],["Zophai",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10480]]],["Zuph",[3,3,[[8,2,2,0,2,[[236,1,1,0,1],[244,1,1,1,2]]],[12,1,1,2,3,[[343,1,1,2,3]]]],[7213,7396,10489]]]]},{"k":"H6690","v":[["Zophah",[2,2,[[12,2,2,0,2,[[344,2,2,0,2]]]],[10570,10571]]]]},{"k":"H6691","v":[["Zophar",[4,4,[[17,4,4,0,4,[[437,1,1,0,1],[446,1,1,1,2],[455,1,1,2,3],[477,1,1,3,4]]]],[12902,13109,13327,13931]]]]},{"k":"H6692","v":[["*",[9,9,[[3,1,1,0,1,[[133,1,1,0,1]]],[18,5,5,1,6,[[549,1,1,1,2],[567,1,1,2,3],[569,1,1,3,4],[580,1,1,4,5],[609,1,1,5,6]]],[21,1,1,6,7,[[672,1,1,6,7]]],[22,1,1,7,8,[[705,1,1,7,8]]],[25,1,1,8,9,[[808,1,1,8,9]]]],[4252,15016,15384,15418,15564,16169,17563,18157,20587]]],["bloomed",[1,1,[[3,1,1,0,1,[[133,1,1,0,1]]]],[4252]]],["blossom",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18157]]],["blossomed",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20587]]],["flourish",[3,3,[[18,3,3,0,3,[[549,1,1,0,1],[569,1,1,1,2],[609,1,1,2,3]]]],[15016,15418,16169]]],["flourisheth",[2,2,[[18,2,2,0,2,[[567,1,1,0,1],[580,1,1,1,2]]]],[15384,15564]]],["himself",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17563]]]]},{"k":"H6693","v":[["*",[11,10,[[4,3,3,0,3,[[180,3,3,0,3]]],[6,2,2,3,5,[[224,1,1,3,4],[226,1,1,4,5]]],[17,1,1,5,6,[[467,1,1,5,6]]],[22,4,3,6,9,[[707,2,2,6,8],[729,2,1,8,9]]],[23,1,1,9,10,[[763,1,1,9,10]]]],[5664,5666,5668,6926,6965,13646,18195,18200,18686,19416]]],["constraineth",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13646]]],["distress",[5,5,[[4,3,3,0,3,[[180,3,3,0,3]]],[22,2,2,3,5,[[707,2,2,3,5]]]],[5664,5666,5668,18195,18200]]],["oppressor",[2,1,[[22,2,1,0,1,[[729,2,1,0,1]]]],[18686]]],["pressed",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6965]]],["sore",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6926]]],["straiten",[1,1,[[23,1,1,0,1,[[763,1,1,0,1]]]],[19416]]]]},{"k":"H6694","v":[["*",[3,3,[[17,2,2,0,2,[[463,1,1,0,1],[464,1,1,1,2]]],[22,1,1,2,3,[[704,1,1,2,3]]]],[13506,13538,18146]]],["+",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13538]]],["molten",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13506]]],["out",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18146]]]]},{"k":"H6695","v":[["*",[4,4,[[19,1,1,0,1,[[628,1,1,0,1]]],[22,2,2,1,3,[[686,1,1,1,2],[708,1,1,2,3]]],[26,1,1,3,4,[[858,1,1,3,4]]]],[16427,17829,18223,22013]]],["anguish",[3,3,[[19,1,1,0,1,[[628,1,1,0,1]]],[22,2,2,1,3,[[686,1,1,1,2],[708,1,1,2,3]]]],[16427,17829,18223]]],["troublous",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22013]]]]},{"k":"H6696","v":[["*",[38,38,[[1,2,2,0,2,[[72,1,1,0,1],[81,1,1,1,2]]],[4,5,5,2,7,[[154,2,2,2,4],[166,1,1,4,5],[172,2,2,5,7]]],[6,1,1,7,8,[[219,1,1,7,8]]],[8,1,1,8,9,[[258,1,1,8,9]]],[9,2,2,9,11,[[277,1,1,9,10],[286,1,1,10,11]]],[10,4,4,11,15,[[297,1,1,11,12],[305,1,1,12,13],[306,1,1,13,14],[310,1,1,14,15]]],[11,8,8,15,23,[[317,1,1,15,16],[318,2,2,16,18],[324,1,1,18,19],[328,1,1,19,20],[329,1,1,20,21],[330,1,1,21,22],[336,1,1,22,23]]],[12,1,1,23,24,[[357,1,1,23,24]]],[13,1,1,24,25,[[394,1,1,24,25]]],[16,1,1,25,26,[[433,1,1,25,26]]],[18,1,1,26,27,[[616,1,1,26,27]]],[21,1,1,27,28,[[678,1,1,27,28]]],[22,2,2,28,30,[[699,1,1,28,29],[707,1,1,29,30]]],[23,5,5,30,35,[[765,2,2,30,32],[776,1,1,32,33],[781,1,1,33,34],[783,1,1,34,35]]],[25,2,2,35,37,[[805,1,1,35,36],[806,1,1,36,37]]],[26,1,1,37,38,[[850,1,1,37,38]]]],[2166,2442,4947,4957,5315,5439,5446,6785,7818,8260,8569,8949,9276,9300,9409,9670,9698,9699,9860,9968,9988,10033,10213,10927,11784,12828,16244,17649,18037,18196,19444,19449,19733,19879,19924,20532,20549,21738]]],["+",[23,23,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,2,2,1,3,[[172,2,2,1,3]]],[6,1,1,3,4,[[219,1,1,3,4]]],[8,1,1,4,5,[[258,1,1,4,5]]],[9,2,2,5,7,[[277,1,1,5,6],[286,1,1,6,7]]],[10,3,3,7,10,[[297,1,1,7,8],[306,1,1,8,9],[310,1,1,9,10]]],[11,6,6,10,16,[[318,2,2,10,12],[328,1,1,12,13],[329,1,1,13,14],[330,1,1,14,15],[336,1,1,15,16]]],[12,1,1,16,17,[[357,1,1,16,17]]],[21,1,1,17,18,[[678,1,1,17,18]]],[23,4,4,18,22,[[765,2,2,18,20],[776,1,1,20,21],[781,1,1,21,22]]],[26,1,1,22,23,[[850,1,1,22,23]]]],[2166,5439,5446,6785,7818,8260,8569,8949,9300,9409,9698,9699,9968,9988,10033,10213,10927,17649,19444,19449,19733,19879,21738]]],["Distress",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4947]]],["assault",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12828]]],["bags",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9860]]],["beset",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16244]]],["besiege",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18037]]],["besieged",[1,1,[[23,1,1,0,1,[[783,1,1,0,1]]]],[19924]]],["bind",[1,1,[[25,1,1,0,1,[[806,1,1,0,1]]]],[20549]]],["bound",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9670]]],["distress",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4957]]],["distressed",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11784]]],["fashioned",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2442]]],["siege",[3,3,[[10,1,1,0,1,[[305,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]],[25,1,1,2,3,[[805,1,1,2,3]]]],[9276,18196,20532]]],["up",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5315]]]]},{"k":"H6697","v":[["*",[76,72,[[1,4,3,0,3,[[66,2,1,0,1],[82,2,2,1,3]]],[3,1,1,3,4,[[139,1,1,3,4]]],[4,9,8,4,12,[[160,1,1,4,5],[184,8,7,5,12]]],[6,3,3,12,15,[[216,1,1,12,13],[217,1,1,13,14],[223,1,1,14,15]]],[8,2,2,15,17,[[237,1,1,15,16],[259,1,1,16,17]]],[9,6,5,17,22,[[287,1,1,17,18],[288,4,3,18,21],[289,1,1,21,22]]],[12,1,1,22,23,[[348,1,1,22,23]]],[17,7,7,23,30,[[449,1,1,23,24],[453,1,1,24,25],[454,1,1,25,26],[457,1,1,26,27],[459,1,1,27,28],[463,1,1,28,29],[464,1,1,29,30]]],[18,26,26,30,56,[[495,3,3,30,33],[496,1,1,33,34],[504,1,1,34,35],[505,1,1,35,36],[508,1,1,36,37],[526,1,1,37,38],[538,1,1,38,39],[539,3,3,39,42],[548,1,1,42,43],[550,1,1,43,44],[555,3,3,44,47],[558,1,1,47,48],[566,2,2,48,50],[569,1,1,50,51],[571,1,1,51,52],[572,1,1,52,53],[582,1,1,53,54],[591,1,1,54,55],[621,1,1,55,56]]],[19,1,1,56,57,[[657,1,1,56,57]]],[22,12,11,57,68,[[680,3,3,57,60],[686,1,1,60,61],[688,1,1,61,62],[695,1,1,62,63],[704,1,1,63,64],[708,1,1,64,65],[722,1,1,65,66],[726,2,1,66,67],[729,1,1,67,68]]],[23,2,2,68,70,[[762,1,1,68,69],[765,1,1,69,70]]],[33,1,1,70,71,[[900,1,1,70,71]]],[34,1,1,71,72,[[903,1,1,71,72]]]],[1989,2494,2495,4425,5152,5762,5771,5773,5776,5788,5789,5795,6675,6719,6903,7242,7841,8590,8605,8634,8649,8656,10688,13199,13280,13321,13413,13444,13514,13538,14120,14149,14164,14182,14290,14300,14333,14662,14821,14829,14833,14834,14979,15046,15128,15133,15148,15233,15352,15369,15426,15453,15455,15647,15830,16306,17270,17695,17704,17706,17821,17876,17993,18134,18246,18541,18635,18674,19398,19453,22690,22743]]],["+",[4,4,[[4,1,1,0,1,[[160,1,1,0,1]]],[18,1,1,1,2,[[558,1,1,1,2]]],[22,1,1,2,3,[[726,1,1,2,3]]],[23,1,1,3,4,[[762,1,1,3,4]]]],[5152,15233,18635,19398]]],["God",[2,2,[[22,1,1,0,1,[[722,1,1,0,1]]],[34,1,1,1,2,[[903,1,1,1,2]]]],[18541,22743]]],["One",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18246]]],["Rock",[6,6,[[4,5,5,0,5,[[184,5,5,0,5]]],[9,1,1,5,6,[[289,1,1,5,6]]]],[5762,5773,5776,5788,5789,8656]]],["beauty",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14662]]],["edge",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15369]]],["rock",[47,45,[[1,4,3,0,3,[[66,2,1,0,1],[82,2,2,1,3]]],[4,3,3,3,6,[[184,3,3,3,6]]],[6,3,3,6,9,[[216,1,1,6,7],[217,1,1,7,8],[223,1,1,8,9]]],[8,1,1,9,10,[[237,1,1,9,10]]],[9,5,4,10,14,[[287,1,1,10,11],[288,4,3,11,14]]],[12,1,1,14,15,[[348,1,1,14,15]]],[17,5,5,15,20,[[449,1,1,15,16],[453,1,1,16,17],[454,1,1,17,18],[459,1,1,18,19],[464,1,1,19,20]]],[18,17,17,20,37,[[495,2,2,20,22],[504,1,1,22,23],[505,1,1,23,24],[508,1,1,24,25],[538,1,1,25,26],[539,3,3,26,29],[555,2,2,29,31],[566,1,1,31,32],[569,1,1,32,33],[571,1,1,33,34],[572,1,1,34,35],[582,1,1,35,36],[591,1,1,36,37]]],[19,1,1,37,38,[[657,1,1,37,38]]],[22,6,6,38,44,[[680,1,1,38,39],[686,1,1,39,40],[688,1,1,40,41],[695,1,1,41,42],[726,1,1,42,43],[729,1,1,43,44]]],[23,1,1,44,45,[[765,1,1,44,45]]]],[1989,2494,2495,5771,5789,5795,6675,6719,6903,7242,8590,8605,8634,8649,10688,13199,13280,13321,13444,13538,14149,14164,14290,14300,14333,14821,14829,14833,14834,15133,15148,15352,15426,15453,15455,15647,15830,17270,17695,17821,17876,17993,18635,18674,19453]]],["rocks",[7,7,[[3,1,1,0,1,[[139,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]],[17,1,1,2,3,[[463,1,1,2,3]]],[18,1,1,3,4,[[555,1,1,3,4]]],[22,2,2,4,6,[[680,2,2,4,6]]],[33,1,1,6,7,[[900,1,1,6,7]]]],[4425,7841,13514,15128,17704,17706,22690]]],["stones",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13413]]],["strength",[5,5,[[18,4,4,0,4,[[495,1,1,0,1],[496,1,1,1,2],[550,1,1,2,3],[621,1,1,3,4]]],[22,1,1,4,5,[[704,1,1,4,5]]]],[14120,14182,15046,16306,18134]]],["strong",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14979]]]]},{"k":"H6698","v":[["Zur",[5,5,[[3,2,2,0,2,[[141,1,1,0,1],[147,1,1,1,2]]],[5,1,1,2,3,[[199,1,1,2,3]]],[12,2,2,3,5,[[345,1,1,3,4],[346,1,1,4,5]]]],[4486,4672,6175,10605,10651]]]]},{"k":"H6699","v":[["*",[4,1,[[25,4,1,0,1,[[844,4,1,0,1]]]],[21583]]],["form",[2,1,[[25,2,1,0,1,[[844,2,1,0,1]]]],[21583]]],["forms",[2,1,[[25,2,1,0,1,[[844,2,1,0,1]]]],[21583]]]]},{"k":"H6700","v":[["Zuriel",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3727]]]]},{"k":"H6701","v":[["Zurishaddai",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3610,3670,3886,3891,4007]]]]},{"k":"H6702","v":[["burn",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18155]]]]},{"k":"H6703","v":[["*",[4,4,[[21,1,1,0,1,[[675,1,1,0,1]]],[22,2,2,1,3,[[696,1,1,1,2],[710,1,1,2,3]]],[23,1,1,3,4,[[748,1,1,3,4]]]],[17608,18001,18263,19038]]],["clear",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18001]]],["dry",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19038]]],["plainly",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18263]]],["white",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17608]]]]},{"k":"H6704","v":[["up",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17752]]]]},{"k":"H6705","v":[["whiter",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20427]]]]},{"k":"H6706","v":[["*",[5,5,[[15,1,1,0,1,[[416,1,1,0,1]]],[25,4,4,1,5,[[825,2,2,1,3],[827,2,2,3,5]]]],[12372,21063,21064,21104,21114]]],["places",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12372]]],["top",[4,4,[[25,4,4,0,4,[[825,2,2,0,2],[827,2,2,2,4]]]],[21063,21064,21104,21114]]]]},{"k":"H6707","v":[["dry",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14906]]]]},{"k":"H6708","v":[]},{"k":"H6709","v":[["savour",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22331]]]]},{"k":"H6710","v":[["drought",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18797]]]]},{"k":"H6711","v":[["*",[13,12,[[0,11,10,0,10,[[16,1,1,0,1],[17,4,3,1,4],[18,1,1,4,5],[20,2,2,5,7],[25,1,1,7,8],[38,2,2,8,10]]],[1,1,1,10,11,[[81,1,1,10,11]]],[6,1,1,11,12,[[226,1,1,11,12]]]],[414,436,437,439,471,519,522,700,1163,1166,2444,6974]]],["+",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6974]]],["laugh",[3,3,[[0,3,3,0,3,[[17,2,2,0,2],[20,1,1,2,3]]]],[437,439,519]]],["laughed",[3,3,[[0,3,3,0,3,[[16,1,1,0,1],[17,2,2,1,3]]]],[414,436,439]]],["mock",[2,2,[[0,2,2,0,2,[[38,2,2,0,2]]]],[1163,1166]]],["mocked",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[471]]],["mocking",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[522]]],["play",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2444]]],["sporting",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[700]]]]},{"k":"H6712","v":[["*",[2,2,[[0,1,1,0,1,[[20,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[519,21039]]],["laugh",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[519]]],["scorn",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21039]]]]},{"k":"H6713","v":[["white",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21139]]]]},{"k":"H6714","v":[["Zohar",[4,4,[[0,3,3,0,3,[[22,1,1,0,1],[24,1,1,1,2],[45,1,1,2,3]]],[1,1,1,3,4,[[55,1,1,3,4]]]],[579,667,1396,1670]]]]},{"k":"H6715","v":[["white",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6633]]]]},{"k":"H6716","v":[["*",[4,4,[[3,1,1,0,1,[[140,1,1,0,1]]],[22,1,1,1,2,[[711,1,1,1,2]]],[25,1,1,2,3,[[831,1,1,2,3]]],[26,1,1,3,4,[[860,1,1,3,4]]]],[4470,18300,21213,22066]]],["ship",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18300]]],["ships",[3,3,[[3,1,1,0,1,[[140,1,1,0,1]]],[25,1,1,1,2,[[831,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[4470,21213,22066]]]]},{"k":"H6717","v":[["Ziba",[16,13,[[9,16,13,0,13,[[275,8,7,0,7],[282,6,4,7,11],[285,2,2,11,13]]]],[8229,8230,8231,8236,8237,8238,8239,8427,8428,8429,8430,8528,8540]]]]},{"k":"H6718","v":[["*",[19,18,[[0,12,11,0,11,[[9,2,1,0,1],[24,2,2,1,3],[26,8,8,3,11]]],[2,1,1,11,12,[[106,1,1,11,12]]],[5,2,2,12,14,[[195,2,2,12,14]]],[15,1,1,14,15,[[425,1,1,14,15]]],[17,1,1,15,16,[[473,1,1,15,16]]],[18,1,1,16,17,[[609,1,1,16,17]]],[19,1,1,17,18,[[639,1,1,17,18]]]],[243,685,686,730,732,734,746,752,757,758,760,3248,6042,6051,12686,13834,16166,16746]]],["+",[5,5,[[0,4,4,0,4,[[26,4,4,0,4]]],[5,1,1,4,5,[[195,1,1,4,5]]]],[746,752,757,758,6051]]],["catcheth",[1,1,[[2,1,1,0,1,[[106,1,1,0,1]]]],[3248]]],["food",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13834]]],["hunter",[3,2,[[0,3,2,0,2,[[9,2,1,0,1],[24,1,1,1,2]]]],[243,685]]],["hunting",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16746]]],["provision",[2,2,[[5,1,1,0,1,[[195,1,1,0,1]]],[18,1,1,1,2,[[609,1,1,1,2]]]],[6042,16166]]],["venison",[5,5,[[0,5,5,0,5,[[24,1,1,0,1],[26,4,4,1,5]]]],[686,730,732,734,760]]],["victuals",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12686]]]]},{"k":"H6719","v":[["hunters",[1,1,[[23,1,1,0,1,[[760,1,1,0,1]]]],[19352]]]]},{"k":"H6720","v":[["*",[9,9,[[0,2,2,0,2,[[41,1,1,0,1],[44,1,1,1,2]]],[1,1,1,2,3,[[61,1,1,2,3]]],[5,2,2,3,5,[[187,1,1,3,4],[195,1,1,4,5]]],[6,2,2,5,7,[[217,1,1,5,6],[230,1,1,6,7]]],[8,1,1,7,8,[[257,1,1,7,8]]],[18,1,1,8,9,[[555,1,1,8,9]]]],[1277,1379,1855,5862,6048,6702,7064,7797,15138]]],["meat",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15138]]],["provision",[2,2,[[0,2,2,0,2,[[41,1,1,0,1],[44,1,1,1,2]]]],[1277,1379]]],["victual",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]]],[1855,7064]]],["victuals",[4,4,[[5,2,2,0,2,[[187,1,1,0,1],[195,1,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]],[8,1,1,3,4,[[257,1,1,3,4]]]],[5862,6048,6702,7797]]]]},{"k":"H6721","v":[["*",[23,23,[[0,3,3,0,3,[[9,2,2,0,2],[48,1,1,2,3]]],[5,2,2,3,5,[[197,1,1,3,4],[205,1,1,4,5]]],[6,3,3,5,8,[[211,1,1,5,6],[220,1,1,6,7],[228,1,1,7,8]]],[9,1,1,8,9,[[290,1,1,8,9]]],[10,2,2,9,11,[[301,1,1,9,10],[307,1,1,10,11]]],[12,1,1,11,12,[[338,1,1,11,12]]],[22,3,3,12,15,[[701,3,3,12,15]]],[23,3,3,15,18,[[769,1,1,15,16],[771,1,1,16,17],[791,1,1,17,18]]],[25,3,3,18,21,[[828,1,1,18,19],[829,2,2,19,21]]],[28,1,1,21,22,[[878,1,1,21,22]]],[37,1,1,22,23,[[919,1,1,22,23]]]],[249,253,1486,6115,6349,6540,6817,7021,8698,9141,9326,10265,18079,18081,18089,19556,19599,20077,21129,21178,21179,22347,23001]]],["+",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[6,1,1,1,2,[[228,1,1,1,2]]]],[253,7021]]],["Sidon",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[249]]],["Zidon",[19,19,[[0,1,1,0,1,[[48,1,1,0,1]]],[5,2,2,1,3,[[197,1,1,1,2],[205,1,1,2,3]]],[6,2,2,3,5,[[211,1,1,3,4],[220,1,1,4,5]]],[9,1,1,5,6,[[290,1,1,5,6]]],[10,1,1,6,7,[[307,1,1,6,7]]],[12,1,1,7,8,[[338,1,1,7,8]]],[22,3,3,8,11,[[701,3,3,8,11]]],[23,3,3,11,14,[[769,1,1,11,12],[771,1,1,12,13],[791,1,1,13,14]]],[25,3,3,14,17,[[828,1,1,14,15],[829,2,2,15,17]]],[28,1,1,17,18,[[878,1,1,17,18]]],[37,1,1,18,19,[[919,1,1,18,19]]]],[1486,6115,6349,6540,6817,8698,9326,10265,18079,18081,18089,19556,19599,20077,21129,21178,21179,22347,23001]]],["Zidonians",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9141]]]]},{"k":"H6722","v":[["*",[15,14,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,2,2,1,3,[[199,2,2,1,3]]],[6,4,3,3,6,[[213,1,1,3,4],[220,1,1,4,5],[228,2,1,5,6]]],[10,4,4,6,10,[[295,1,1,6,7],[301,2,2,7,9],[306,1,1,9,10]]],[11,1,1,10,11,[[335,1,1,10,11]]],[12,1,1,11,12,[[359,1,1,11,12]]],[14,1,1,12,13,[[405,1,1,12,13]]],[25,1,1,13,14,[[833,1,1,13,14]]]],[4984,6158,6160,6571,6823,7000,8884,9109,9113,9314,10178,10968,12104,21278]]],["+",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7000]]],["Sidonians",[5,5,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,2,2,1,3,[[199,2,2,1,3]]],[6,1,1,3,4,[[213,1,1,3,4]]],[10,1,1,4,5,[[295,1,1,4,5]]]],[4984,6158,6160,6571,8884]]],["Zidon",[1,1,[[14,1,1,0,1,[[405,1,1,0,1]]]],[12104]]],["Zidonians",[8,8,[[6,2,2,0,2,[[220,1,1,0,1],[228,1,1,1,2]]],[10,3,3,2,5,[[301,2,2,2,4],[306,1,1,4,5]]],[11,1,1,5,6,[[335,1,1,5,6]]],[12,1,1,6,7,[[359,1,1,6,7]]],[25,1,1,7,8,[[833,1,1,7,8]]]],[6823,7000,9109,9113,9314,10178,10968,21278]]]]},{"k":"H6723","v":[["*",[16,16,[[17,2,2,0,2,[[459,1,1,0,1],[465,1,1,1,2]]],[18,4,4,2,6,[[540,1,1,2,3],[555,1,1,3,4],[582,1,1,4,5],[584,1,1,5,6]]],[22,3,3,6,9,[[713,1,1,6,7],[719,1,1,7,8],[731,1,1,8,9]]],[23,3,3,9,12,[[746,1,1,9,10],[794,1,1,10,11],[795,1,1,11,12]]],[25,1,1,12,13,[[820,1,1,12,13]]],[27,1,1,13,14,[[863,1,1,13,14]]],[28,1,1,14,15,[[877,1,1,14,15]]],[35,1,1,15,16,[[907,1,1,15,16]]]],[13455,13560,14840,15130,15647,15734,18321,18469,18713,18971,20178,20255,20894,22108,22331,22818]]],["Drought",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13455]]],["barren",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22331]]],["drought",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18971]]],["dry",[8,8,[[18,2,2,0,2,[[540,1,1,0,1],[584,1,1,1,2]]],[22,2,2,2,4,[[719,1,1,2,3],[731,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]],[25,1,1,5,6,[[820,1,1,5,6]]],[27,1,1,6,7,[[863,1,1,6,7]]],[35,1,1,7,8,[[907,1,1,7,8]]]],[14840,15734,18469,18713,20255,20894,22108,22818]]],["land",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20178]]],["place",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18321]]],["places",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15647]]],["wilderness",[2,2,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[13560,15130]]]]},{"k":"H6724","v":[["place",[2,2,[[22,2,2,0,2,[[703,1,1,0,1],[710,1,1,1,2]]]],[18123,18261]]]]},{"k":"H6725","v":[["*",[3,3,[[11,1,1,0,1,[[335,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]],[25,1,1,2,3,[[840,1,1,2,3]]]],[10182,19712,21463]]],["sign",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21463]]],["title",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10182]]],["waymarks",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19712]]]]},{"k":"H6726","v":[["*",[154,154,[[9,1,1,0,1,[[271,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[11,2,2,2,4,[[331,2,2,2,4]]],[12,1,1,4,5,[[348,1,1,4,5]]],[13,1,1,5,6,[[371,1,1,5,6]]],[18,38,38,6,44,[[479,1,1,6,7],[486,2,2,7,9],[491,1,1,9,10],[497,1,1,10,11],[525,3,3,11,14],[527,1,1,14,15],[528,1,1,15,16],[530,1,1,16,17],[542,1,1,17,18],[546,1,1,18,19],[551,1,1,19,20],[553,1,1,20,21],[555,1,1,21,22],[561,1,1,22,23],[564,2,2,23,25],[574,1,1,25,26],[576,1,1,26,27],[579,3,3,27,30],[587,1,1,30,31],[602,1,1,31,32],[603,1,1,32,33],[605,1,1,33,34],[606,1,1,34,35],[609,1,1,35,36],[610,1,1,36,37],[611,1,1,37,38],[612,1,1,38,39],[614,2,2,39,41],[623,1,1,41,42],[624,1,1,42,43],[626,1,1,43,44]]],[21,1,1,44,45,[[673,1,1,44,45]]],[22,47,47,45,92,[[679,2,2,45,47],[680,1,1,47,48],[681,2,2,48,50],[682,3,3,50,53],[686,1,1,53,54],[688,3,3,54,57],[690,1,1,57,58],[692,1,1,58,59],[694,1,1,59,60],[696,1,1,60,61],[702,1,1,61,62],[706,1,1,62,63],[707,1,1,63,64],[708,1,1,64,65],[709,2,2,65,67],[711,3,3,67,70],[712,1,1,70,71],[713,1,1,71,72],[715,2,2,72,74],[718,1,1,74,75],[719,1,1,75,76],[724,1,1,76,77],[727,1,1,77,78],[729,3,3,78,81],[730,4,4,81,85],[737,1,1,85,86],[738,1,1,86,87],[739,1,1,87,88],[740,2,2,88,90],[742,1,1,90,91],[744,1,1,91,92]]],[23,17,17,92,109,[[747,1,1,92,93],[748,2,2,93,95],[750,2,2,95,97],[752,1,1,97,98],[753,1,1,98,99],[758,1,1,99,100],[770,1,1,100,101],[774,1,1,101,102],[775,2,2,102,104],[794,2,2,104,106],[795,3,3,106,109]]],[24,15,15,109,124,[[797,3,3,109,112],[798,7,7,112,119],[800,3,3,119,122],[801,2,2,122,124]]],[28,7,7,124,131,[[877,4,4,124,128],[878,3,3,128,131]]],[29,2,2,131,133,[[879,1,1,131,132],[884,1,1,132,133]]],[30,2,2,133,135,[[888,2,2,133,135]]],[32,9,9,135,144,[[893,1,1,135,136],[895,2,2,136,138],[896,6,6,138,144]]],[35,2,2,144,146,[[908,2,2,144,146]]],[37,8,8,146,154,[[911,2,2,146,148],[912,2,2,148,150],[918,2,2,150,152],[919,2,2,152,154]]]],[8139,8986,10082,10092,10678,11270,13951,14032,14035,14087,14184,14636,14645,14646,14670,14709,14725,14861,14970,15050,15083,15181,15266,15303,15306,15486,15501,15534,15537,15542,15788,16111,16116,16131,16137,16164,16172,16175,16196,16223,16225,16351,16363,16387,17582,17662,17681,17688,17723,17724,17736,17737,17738,17825,17862,17874,17882,17906,17960,17970,18004,18118,18180,18201,18236,18254,18259,18284,18293,18299,18311,18330,18374,18384,18429,18478,18599,18650,18676,18684,18689,18697,18698,18703,18704,18820,18835,18846,18855,18865,18895,18930,19016,19033,19058,19091,19112,19172,19194,19312,19590,19684,19697,19703,20171,20194,20222,20236,20247,20314,20316,20327,20333,20336,20338,20340,20342,20345,20350,20422,20431,20442,20453,20460,22312,22326,22334,22343,22359,22360,22364,22366,22451,22527,22531,22592,22618,22620,22622,22627,22628,22630,22631,22633,22834,22836,22892,22895,22906,22909,22978,22979,23008,23012]]],["+",[16,16,[[18,8,8,0,8,[[491,1,1,0,1],[497,1,1,1,2],[527,1,1,2,3],[530,1,1,3,4],[587,1,1,4,5],[605,1,1,5,6],[611,1,1,6,7],[612,1,1,7,8]]],[22,2,2,8,10,[[680,1,1,8,9],[740,1,1,9,10]]],[23,3,3,10,13,[[753,1,1,10,11],[794,1,1,11,12],[795,1,1,12,13]]],[28,1,1,13,14,[[878,1,1,13,14]]],[29,1,1,14,15,[[879,1,1,14,15]]],[32,1,1,15,16,[[896,1,1,15,16]]]],[14087,14184,14670,14725,15788,16131,16175,16196,17688,18855,19194,20194,20222,22359,22366,22622]]],["Sion",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14861]]],["Zion",[137,137,[[9,1,1,0,1,[[271,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[11,2,2,2,4,[[331,2,2,2,4]]],[12,1,1,4,5,[[348,1,1,4,5]]],[13,1,1,5,6,[[371,1,1,5,6]]],[18,29,29,6,35,[[479,1,1,6,7],[486,2,2,7,9],[525,3,3,9,12],[528,1,1,12,13],[546,1,1,13,14],[551,1,1,14,15],[553,1,1,15,16],[555,1,1,16,17],[561,1,1,17,18],[564,2,2,18,20],[574,1,1,20,21],[576,1,1,21,22],[579,3,3,22,25],[602,1,1,25,26],[603,1,1,26,27],[606,1,1,27,28],[609,1,1,28,29],[610,1,1,29,30],[614,2,2,30,32],[623,1,1,32,33],[624,1,1,33,34],[626,1,1,34,35]]],[21,1,1,35,36,[[673,1,1,35,36]]],[22,45,45,36,81,[[679,2,2,36,38],[681,2,2,38,40],[682,3,3,40,43],[686,1,1,43,44],[688,3,3,44,47],[690,1,1,47,48],[692,1,1,48,49],[694,1,1,49,50],[696,1,1,50,51],[702,1,1,51,52],[706,1,1,52,53],[707,1,1,53,54],[708,1,1,54,55],[709,2,2,55,57],[711,3,3,57,60],[712,1,1,60,61],[713,1,1,61,62],[715,2,2,62,64],[718,1,1,64,65],[719,1,1,65,66],[724,1,1,66,67],[727,1,1,67,68],[729,3,3,68,71],[730,4,4,71,75],[737,1,1,75,76],[738,1,1,76,77],[739,1,1,77,78],[740,1,1,78,79],[742,1,1,79,80],[744,1,1,80,81]]],[23,14,14,81,95,[[747,1,1,81,82],[748,2,2,82,84],[750,2,2,84,86],[752,1,1,86,87],[758,1,1,87,88],[770,1,1,88,89],[774,1,1,89,90],[775,2,2,90,92],[794,1,1,92,93],[795,2,2,93,95]]],[24,15,15,95,110,[[797,3,3,95,98],[798,7,7,98,105],[800,3,3,105,108],[801,2,2,108,110]]],[28,6,6,110,116,[[877,4,4,110,114],[878,2,2,114,116]]],[29,1,1,116,117,[[884,1,1,116,117]]],[30,2,2,117,119,[[888,2,2,117,119]]],[32,8,8,119,127,[[893,1,1,119,120],[895,2,2,120,122],[896,5,5,122,127]]],[35,2,2,127,129,[[908,2,2,127,129]]],[37,8,8,129,137,[[911,2,2,129,131],[912,2,2,131,133],[918,2,2,133,135],[919,2,2,135,137]]]],[8139,8986,10082,10092,10678,11270,13951,14032,14035,14636,14645,14646,14709,14970,15050,15083,15181,15266,15303,15306,15486,15501,15534,15537,15542,16111,16116,16137,16164,16172,16223,16225,16351,16363,16387,17582,17662,17681,17723,17724,17736,17737,17738,17825,17862,17874,17882,17906,17960,17970,18004,18118,18180,18201,18236,18254,18259,18284,18293,18299,18311,18330,18374,18384,18429,18478,18599,18650,18676,18684,18689,18697,18698,18703,18704,18820,18835,18846,18865,18895,18930,19016,19033,19058,19091,19112,19172,19312,19590,19684,19697,19703,20171,20236,20247,20314,20316,20327,20333,20336,20338,20340,20342,20345,20350,20422,20431,20442,20453,20460,22312,22326,22334,22343,22360,22364,22451,22527,22531,22592,22618,22620,22627,22628,22630,22631,22633,22834,22836,22892,22895,22906,22909,22978,22979,23008,23012]]]]},{"k":"H6727","v":[["Ziha",[3,3,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,2,2,1,3,[[419,1,1,1,2],[423,1,1,2,3]]]],[12070,12466,12609]]]]},{"k":"H6728","v":[["*",[6,6,[[18,2,2,0,2,[[549,1,1,0,1],[551,1,1,1,2]]],[22,3,3,2,5,[[691,1,1,2,3],[701,1,1,3,4],[712,1,1,4,5]]],[23,1,1,5,6,[[794,1,1,5,6]]]],[15009,15062,17927,18090,18317,20205]]],["desert",[3,3,[[22,2,2,0,2,[[691,1,1,0,1],[712,1,1,1,2]]],[23,1,1,2,3,[[794,1,1,2,3]]]],[17927,18317,20205]]],["wilderness",[3,3,[[18,2,2,0,2,[[549,1,1,0,1],[551,1,1,1,2]]],[22,1,1,2,3,[[701,1,1,2,3]]]],[15009,15062,18090]]]]},{"k":"H6729","v":[["stocks",[1,1,[[23,1,1,0,1,[[773,1,1,0,1]]]],[19661]]]]},{"k":"H6730","v":[["Zior",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6256]]]]},{"k":"H6731","v":[["*",[15,15,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[2,1,1,2,3,[[97,1,1,2,3]]],[3,1,1,3,4,[[133,1,1,3,4]]],[10,4,4,4,8,[[296,4,4,4,8]]],[17,1,1,8,9,[[449,1,1,8,9]]],[18,1,1,9,10,[[580,1,1,9,10]]],[22,4,4,10,14,[[706,1,1,10,11],[718,3,3,11,14]]],[23,1,1,14,15,[[792,1,1,14,15]]]],[2329,2694,2926,4252,8914,8925,8928,8931,13183,15564,18165,18426,18427,18428,20089]]],["blossoms",[1,1,[[3,1,1,0,1,[[133,1,1,0,1]]]],[4252]]],["flower",[6,6,[[17,1,1,0,1,[[449,1,1,0,1]]],[18,1,1,1,2,[[580,1,1,1,2]]],[22,4,4,2,6,[[706,1,1,2,3],[718,3,3,3,6]]]],[13183,15564,18165,18426,18427,18428]]],["flowers",[4,4,[[10,4,4,0,4,[[296,4,4,0,4]]]],[8914,8925,8928,8931]]],["plate",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[2,1,1,2,3,[[97,1,1,2,3]]]],[2329,2694,2926]]],["wings",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20089]]]]},{"k":"H6732","v":[["Ziz",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11603]]]]},{"k":"H6733","v":[["flower",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18168]]]]},{"k":"H6734","v":[["*",[4,3,[[3,3,2,0,2,[[131,3,2,0,2]]],[25,1,1,2,3,[[809,1,1,2,3]]]],[4191,4192,20607]]],["fringe",[2,2,[[3,2,2,0,2,[[131,2,2,0,2]]]],[4191,4192]]],["fringes",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4191]]],["lock",[1,1,[[25,1,1,0,1,[[809,1,1,0,1]]]],[20607]]]]},{"k":"H6735","v":[["*",[12,11,[[8,1,1,0,1,[[239,1,1,0,1]]],[19,3,3,1,4,[[640,1,1,1,2],[652,1,1,2,3],[653,1,1,3,4]]],[22,5,4,4,8,[[691,1,1,4,5],[696,1,1,5,6],[699,2,1,6,7],[735,1,1,7,8]]],[23,1,1,8,9,[[793,1,1,8,9]]],[26,1,1,9,10,[[859,1,1,9,10]]],[30,1,1,10,11,[[888,1,1,10,11]]]],[7316,16764,17126,17155,17914,17999,18038,18774,20141,22031,22511]]],["ambassador",[3,3,[[19,1,1,0,1,[[640,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]],[30,1,1,2,3,[[888,1,1,2,3]]]],[16764,20141,22511]]],["ambassadors",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[17999]]],["hinges",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17155]]],["messenger",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17126]]],["messengers",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18774]]],["pains",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7316]]],["pangs",[3,2,[[22,3,2,0,2,[[691,1,1,0,1],[699,2,1,1,2]]]],[17914,18038]]],["sorrows",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22031]]]]},{"k":"H6736","v":[["idols",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18577]]]]},{"k":"H6737","v":[["ambassadors",[1,1,[[5,1,1,0,1,[[195,1,1,0,1]]]],[6041]]]]},{"k":"H6738","v":[["*",[49,47,[[0,1,1,0,1,[[18,1,1,0,1]]],[3,1,1,1,2,[[130,1,1,1,2]]],[6,2,2,2,4,[[219,2,2,2,4]]],[11,4,3,4,7,[[332,4,3,4,7]]],[12,1,1,7,8,[[366,1,1,7,8]]],[17,4,4,8,12,[[442,1,1,8,9],[443,1,1,9,10],[449,1,1,10,11],[452,1,1,11,12]]],[18,10,10,12,22,[[494,1,1,12,13],[513,1,1,13,14],[534,1,1,14,15],[540,1,1,15,16],[557,1,1,16,17],[568,1,1,17,18],[579,1,1,18,19],[586,1,1,19,20],[598,1,1,20,21],[621,1,1,21,22]]],[20,4,3,22,25,[[664,1,1,22,23],[665,2,1,23,24],[666,1,1,24,25]]],[21,1,1,25,26,[[672,1,1,25,26]]],[22,11,11,26,37,[[682,1,1,26,27],[694,1,1,27,28],[703,2,2,28,30],[708,2,2,30,32],[710,1,1,32,33],[712,1,1,33,34],[716,1,1,34,35],[727,1,1,35,36],[729,1,1,36,37]]],[23,1,1,37,38,[[792,1,1,37,38]]],[24,1,1,38,39,[[800,1,1,38,39]]],[25,4,4,39,43,[[818,1,1,39,40],[832,3,3,40,43]]],[27,2,2,43,45,[[865,1,1,43,44],[875,1,1,44,45]]],[31,2,2,45,47,[[892,2,2,45,47]]]],[465,4117,6769,6790,10107,10108,10109,11179,13010,13038,13183,13267,14111,14445,14769,14846,15208,15396,15532,15778,16086,16309,17429,17441,17471,17557,17739,17972,18122,18123,18219,18220,18261,18318,18398,18638,18689,20125,20440,20848,21236,21242,21247,22146,22289,22573,22574]]],["+",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21242]]],["defence",[3,2,[[3,1,1,0,1,[[130,1,1,0,1]]],[20,2,1,1,2,[[665,2,1,1,2]]]],[4117,17441]]],["shade",[1,1,[[18,1,1,0,1,[[598,1,1,0,1]]]],[16086]]],["shadow",[44,43,[[0,1,1,0,1,[[18,1,1,0,1]]],[6,2,2,1,3,[[219,2,2,1,3]]],[11,4,3,3,6,[[332,4,3,3,6]]],[12,1,1,6,7,[[366,1,1,6,7]]],[17,4,4,7,11,[[442,1,1,7,8],[443,1,1,8,9],[449,1,1,9,10],[452,1,1,10,11]]],[18,9,9,11,20,[[494,1,1,11,12],[513,1,1,12,13],[534,1,1,13,14],[540,1,1,14,15],[557,1,1,15,16],[568,1,1,16,17],[579,1,1,17,18],[586,1,1,18,19],[621,1,1,19,20]]],[20,2,2,20,22,[[664,1,1,20,21],[666,1,1,21,22]]],[21,1,1,22,23,[[672,1,1,22,23]]],[22,11,11,23,34,[[682,1,1,23,24],[694,1,1,24,25],[703,2,2,25,27],[708,2,2,27,29],[710,1,1,29,30],[712,1,1,30,31],[716,1,1,31,32],[727,1,1,32,33],[729,1,1,33,34]]],[23,1,1,34,35,[[792,1,1,34,35]]],[24,1,1,35,36,[[800,1,1,35,36]]],[25,3,3,36,39,[[818,1,1,36,37],[832,2,2,37,39]]],[27,2,2,39,41,[[865,1,1,39,40],[875,1,1,40,41]]],[31,2,2,41,43,[[892,2,2,41,43]]]],[465,6769,6790,10107,10108,10109,11179,13010,13038,13183,13267,14111,14445,14769,14846,15208,15396,15532,15778,16309,17429,17471,17557,17739,17972,18122,18123,18219,18220,18261,18318,18398,18638,18689,20125,20440,20848,21236,21247,22146,22289,22573,22574]]]]},{"k":"H6739","v":[["*",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[855,1,1,1,2]]]],[12161,21915]]],["pray",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12161]]],["prayed",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21915]]]]},{"k":"H6740","v":[["*",[3,3,[[8,1,1,0,1,[[237,1,1,0,1]]],[22,2,2,1,3,[[722,2,2,1,3]]]],[7255,18549,18552]]],["roast",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7255]]],["roasted",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18552]]],["roasteth",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18549]]]]},{"k":"H6741","v":[["Zillah",[3,3,[[0,3,3,0,3,[[3,3,3,0,3]]]],[98,101,102]]]]},{"k":"H6742","v":[["cake",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6707]]]]},{"k":"H6743","v":[["*",[66,64,[[0,7,7,0,7,[[23,4,4,0,4],[38,3,3,4,7]]],[3,1,1,7,8,[[130,1,1,7,8]]],[4,1,1,8,9,[[180,1,1,8,9]]],[5,2,1,9,10,[[187,2,1,9,10]]],[6,4,4,10,14,[[224,2,2,10,12],[225,1,1,12,13],[228,1,1,13,14]]],[8,5,5,14,19,[[245,2,2,14,16],[246,1,1,16,17],[251,1,1,17,18],[253,1,1,18,19]]],[9,1,1,19,20,[[285,1,1,19,20]]],[10,2,2,20,22,[[312,2,2,20,22]]],[12,3,3,22,25,[[359,2,2,22,24],[366,1,1,24,25]]],[13,10,10,25,35,[[373,1,1,25,26],[379,1,1,26,27],[380,1,1,27,28],[384,2,2,28,30],[386,1,1,30,31],[390,1,1,31,32],[392,1,1,32,33],[397,1,1,33,34],[398,1,1,34,35]]],[15,2,2,35,37,[[413,1,1,35,36],[414,1,1,36,37]]],[18,4,4,37,41,[[478,1,1,37,38],[514,1,1,38,39],[522,1,1,39,40],[595,1,1,40,41]]],[19,1,1,41,42,[[655,1,1,41,42]]],[22,4,4,42,46,[[726,1,1,42,43],[731,1,1,43,44],[732,1,1,44,45],[733,1,1,45,46]]],[23,8,7,46,53,[[746,1,1,46,47],[749,1,1,47,48],[756,1,1,48,49],[757,2,2,49,51],[766,2,1,51,52],[776,1,1,52,53]]],[25,5,5,53,58,[[816,1,1,53,54],[817,1,1,54,55],[818,3,3,55,58]]],[26,5,5,58,63,[[857,3,3,58,61],[860,2,2,61,63]]],[29,1,1,63,64,[[883,1,1,63,64]]]],[612,631,633,647,1151,1152,1172,4149,5640,5859,6915,6928,6943,6998,7424,7428,7451,7608,7686,8528,9492,9495,10975,10977,11187,11335,11465,11482,11553,11556,11607,11697,11737,11875,11905,12307,12327,13942,14457,14601,15894,17209,18629,18721,18740,18751,19002,19086,19250,19273,19276,19484,19736,20758,20775,20834,20835,20840,21973,21985,21986,22063,22072,22429]]],["+",[2,2,[[4,1,1,0,1,[[180,1,1,0,1]]],[5,1,1,1,2,[[187,1,1,1,2]]]],[5640,5859]]],["came",[5,5,[[6,1,1,0,1,[[224,1,1,0,1]]],[8,4,4,1,5,[[245,1,1,1,2],[246,1,1,2,3],[251,1,1,3,4],[253,1,1,4,5]]]],[6928,7428,7451,7608,7686]]],["come",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7424]]],["effected",[1,1,[[13,1,1,0,1,[[373,1,1,0,1]]]],[11335]]],["good",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19276]]],["meet",[1,1,[[25,1,1,0,1,[[816,1,1,0,1]]]],[20758]]],["mightily",[2,2,[[6,2,2,0,2,[[224,1,1,0,1],[225,1,1,1,2]]]],[6915,6943]]],["out",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22429]]],["over",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8528]]],["profitable",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19273]]],["prosper",[36,35,[[0,4,4,0,4,[[23,2,2,0,2],[38,2,2,2,4]]],[3,1,1,4,5,[[130,1,1,4,5]]],[10,2,2,5,7,[[312,2,2,5,7]]],[12,2,2,7,9,[[359,2,2,7,9]]],[13,6,6,9,15,[[379,1,1,9,10],[384,2,2,10,12],[386,1,1,12,13],[390,1,1,13,14],[392,1,1,14,15]]],[15,2,2,15,17,[[413,1,1,15,16],[414,1,1,16,17]]],[18,1,1,17,18,[[478,1,1,17,18]]],[19,1,1,18,19,[[655,1,1,18,19]]],[22,3,3,19,22,[[731,1,1,19,20],[732,1,1,20,21],[733,1,1,21,22]]],[23,6,5,22,27,[[746,1,1,22,23],[749,1,1,23,24],[756,1,1,24,25],[766,2,1,25,26],[776,1,1,26,27]]],[25,4,4,27,31,[[817,1,1,27,28],[818,3,3,28,31]]],[26,4,4,31,35,[[857,2,2,31,33],[860,2,2,33,35]]]],[631,633,1152,1172,4149,9492,9495,10975,10977,11465,11553,11556,11607,11697,11737,12307,12327,13942,17209,18721,18740,18751,19002,19086,19250,19484,19736,20775,20834,20835,20840,21985,21986,22063,22072]]],["prospered",[6,6,[[0,1,1,0,1,[[23,1,1,0,1]]],[12,1,1,1,2,[[366,1,1,1,2]]],[13,3,3,2,5,[[380,1,1,2,3],[397,1,1,3,4],[398,1,1,4,5]]],[26,1,1,5,6,[[857,1,1,5,6]]]],[647,11187,11482,11875,11905,21973]]],["prospereth",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14457]]],["prosperity",[1,1,[[18,1,1,0,1,[[595,1,1,0,1]]]],[15894]]],["prosperous",[5,5,[[0,2,2,0,2,[[23,1,1,0,1],[38,1,1,1,2]]],[5,1,1,2,3,[[187,1,1,2,3]]],[6,1,1,3,4,[[228,1,1,3,4]]],[22,1,1,4,5,[[726,1,1,4,5]]]],[612,1151,5859,6998,18629]]],["prosperously",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14601]]]]},{"k":"H6744","v":[["*",[4,4,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]],[26,2,2,2,4,[[852,1,1,2,3],[855,1,1,3,4]]]],[12142,12165,21837,21933]]],["promoted",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21837]]],["prospered",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[855,1,1,1,2]]]],[12165,21933]]],["prospereth",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12142]]]]},{"k":"H6745","v":[["pans",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11979]]]]},{"k":"H6746","v":[["cruse",[1,1,[[11,1,1,0,1,[[314,1,1,0,1]]]],[9571]]]]},{"k":"H6747","v":[["*",[3,3,[[11,1,1,0,1,[[333,1,1,0,1]]],[19,2,2,1,3,[[646,1,1,1,2],[653,1,1,2,3]]]],[10132,16949,17156]]],["bosom",[2,2,[[19,2,2,0,2,[[646,1,1,0,1],[653,1,1,1,2]]]],[16949,17156]]],["dish",[1,1,[[11,1,1,0,1,[[333,1,1,0,1]]]],[10132]]]]},{"k":"H6748","v":[["roast",[3,3,[[1,2,2,0,2,[[61,2,2,0,2]]],[22,1,1,2,3,[[722,1,1,2,3]]]],[1824,1825,18549]]]]},{"k":"H6749","v":[["sank",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1930]]]]},{"k":"H6750","v":[["*",[4,4,[[8,1,1,0,1,[[238,1,1,0,1]]],[11,1,1,1,2,[[333,1,1,1,2]]],[23,1,1,2,3,[[763,1,1,2,3]]],[34,1,1,3,4,[[905,1,1,3,4]]]],[7287,10131,19410,22784]]],["quivered",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22784]]],["tingle",[3,3,[[8,1,1,0,1,[[238,1,1,0,1]]],[11,1,1,1,2,[[333,1,1,1,2]]],[23,1,1,2,3,[[763,1,1,2,3]]]],[7287,10131,19410]]]]},{"k":"H6751","v":[["*",[2,2,[[15,1,1,0,1,[[425,1,1,0,1]]],[25,1,1,1,2,[[832,1,1,1,2]]]],[12690,21233]]],["dark",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12690]]],["shadowing",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21233]]]]},{"k":"H6752","v":[["*",[4,4,[[17,1,1,0,1,[[475,1,1,0,1]]],[21,2,2,1,3,[[672,1,1,1,2],[674,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]]],[13886,17571,17588,19093]]],["shadow",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13886]]],["shadows",[3,3,[[21,2,2,0,2,[[672,1,1,0,1],[674,1,1,1,2]]],[23,1,1,2,3,[[750,1,1,2,3]]]],[17571,17588,19093]]]]},{"k":"H6753","v":[["Hazelelponi",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10388]]]]},{"k":"H6754","v":[["*",[17,15,[[0,5,4,0,4,[[0,3,2,0,2],[4,1,1,2,3],[8,1,1,3,4]]],[3,1,1,4,5,[[149,1,1,4,5]]],[8,3,2,5,7,[[241,3,2,5,7]]],[11,1,1,7,8,[[323,1,1,7,8]]],[13,1,1,8,9,[[389,1,1,8,9]]],[18,2,2,9,11,[[516,1,1,9,10],[550,1,1,10,11]]],[25,3,3,11,14,[[808,1,1,11,12],[817,1,1,12,13],[824,1,1,13,14]]],[29,1,1,14,15,[[883,1,1,14,15]]]],[25,26,108,211,4812,7336,7342,9847,11673,14518,15040,20597,20779,21021,22449]]],["image",[6,5,[[0,5,4,0,4,[[0,3,2,0,2],[4,1,1,2,3],[8,1,1,3,4]]],[18,1,1,4,5,[[550,1,1,4,5]]]],[25,26,108,211,15040]]],["images",[10,9,[[3,1,1,0,1,[[149,1,1,0,1]]],[8,3,2,1,3,[[241,3,2,1,3]]],[11,1,1,3,4,[[323,1,1,3,4]]],[13,1,1,4,5,[[389,1,1,4,5]]],[25,3,3,5,8,[[808,1,1,5,6],[817,1,1,6,7],[824,1,1,7,8]]],[29,1,1,8,9,[[883,1,1,8,9]]]],[4812,7336,7342,9847,11673,20597,20779,21021,22449]]],["shew",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14518]]]]},{"k":"H6755","v":[["*",[17,15,[[26,17,15,0,15,[[851,5,4,0,4],[852,12,11,4,15]]]],[21789,21790,21792,21793,21808,21809,21810,21812,21814,21817,21819,21821,21822,21825,21826]]],["form",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21826]]],["image",[15,13,[[26,15,13,0,13,[[851,4,3,0,3],[852,11,10,3,13]]]],[21789,21792,21793,21808,21809,21810,21812,21814,21817,21819,21821,21822,21825]]],["image's",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21790]]]]},{"k":"H6756","v":[["*",[3,3,[[6,1,1,0,1,[[219,1,1,0,1]]],[9,1,1,1,2,[[289,1,1,1,2]]],[18,1,1,2,3,[[545,1,1,2,3]]]],[6802,8681,14914]]],["Salmon",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14914]]],["Zalmon",[2,2,[[6,1,1,0,1,[[219,1,1,0,1]]],[9,1,1,1,2,[[289,1,1,1,2]]]],[6802,8681]]]]},{"k":"H6757","v":[["death",[18,17,[[17,10,9,0,9,[[438,1,1,0,1],[445,2,2,1,3],[447,1,1,3,4],[451,1,1,4,5],[459,2,1,5,6],[463,1,1,6,7],[469,1,1,7,8],[473,1,1,8,9]]],[18,4,4,9,13,[[500,1,1,9,10],[521,1,1,10,11],[584,2,2,11,13]]],[22,1,1,13,14,[[687,1,1,13,14]]],[23,2,2,14,16,[[746,1,1,14,15],[757,1,1,15,16]]],[29,1,1,16,17,[[883,1,1,16,17]]]],[12909,13107,13108,13150,13254,13453,13507,13705,13810,14239,14590,15709,15713,17831,18971,19282,22431]]]]},{"k":"H6758","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4801,4802]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4802]]],["Zalmonah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4801]]]]},{"k":"H6759","v":[["Zalmunna",[12,9,[[6,11,8,0,8,[[218,11,8,0,8]]],[18,1,1,8,9,[[560,1,1,8,9]]]],[6724,6725,6726,6729,6731,6734,6737,6740,15252]]]]},{"k":"H6760","v":[["*",[4,4,[[0,1,1,0,1,[[31,1,1,0,1]]],[32,2,2,1,3,[[896,2,2,1,3]]],[35,1,1,3,4,[[908,1,1,3,4]]]],[959,22626,22627,22839]]],["halted",[2,2,[[0,1,1,0,1,[[31,1,1,0,1]]],[32,1,1,1,2,[[896,1,1,1,2]]]],[959,22627]]],["halteth",[2,2,[[32,1,1,0,1,[[896,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[22626,22839]]]]},{"k":"H6761","v":[["*",[3,3,[[18,2,2,0,2,[[512,1,1,0,1],[515,1,1,1,2]]],[23,1,1,2,3,[[764,1,1,2,3]]]],[14425,14507,19432]]],["adversity",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14425]]],["halt",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14507]]],["halting",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19432]]]]},{"k":"H6762","v":[["Zelah",[2,2,[[5,1,1,0,1,[[204,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]]],[6321,8594]]]]},{"k":"H6763","v":[["*",[41,32,[[0,2,2,0,2,[[1,2,2,0,2]]],[1,19,15,2,17,[[74,3,2,2,4],[75,6,4,4,8],[76,1,1,8,9],[79,1,1,9,10],[85,3,3,10,13],[86,4,3,13,16],[87,1,1,16,17]]],[9,1,1,17,18,[[282,1,1,17,18]]],[10,7,6,18,24,[[296,6,5,18,23],[297,1,1,23,24]]],[17,1,1,24,25,[[453,1,1,24,25]]],[25,11,7,25,32,[[842,11,7,25,32]]]],[51,52,2207,2209,2255,2261,2262,2270,2279,2386,2591,2597,2598,2607,2609,2631,2640,8439,8901,8904,8911,8912,8930,8937,13288,21531,21532,21533,21534,21535,21537,21552]]],["+",[1,1,[[0,1,1,0,1,[[1,1,1,0,1]]]],[51]]],["another",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21532]]],["beams",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8937]]],["boards",[2,2,[[10,2,2,0,2,[[296,2,2,0,2]]]],[8911,8912]]],["chamber",[3,3,[[10,1,1,0,1,[[296,1,1,0,1]]],[25,2,2,1,3,[[842,2,2,1,3]]]],[8904,21531,21535]]],["chambers",[8,7,[[10,1,1,0,1,[[296,1,1,0,1]]],[25,7,6,1,7,[[842,7,6,1,7]]]],[8901,21532,21533,21534,21535,21537,21552]]],["corners",[2,2,[[1,2,2,0,2,[[79,1,1,0,1],[86,1,1,1,2]]]],[2386,2631]]],["leaves",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8930]]],["one",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21532]]],["planks",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8911]]],["rib",[1,1,[[0,1,1,0,1,[[1,1,1,0,1]]]],[52]]],["side",[15,11,[[1,13,9,0,9,[[74,2,1,0,1],[75,6,4,1,5],[85,3,3,5,8],[86,2,1,8,9]]],[9,1,1,9,10,[[282,1,1,9,10]]],[17,1,1,10,11,[[453,1,1,10,11]]]],[2207,2255,2261,2262,2270,2591,2597,2598,2607,8439,13288]]],["sides",[4,4,[[1,4,4,0,4,[[74,1,1,0,1],[76,1,1,1,2],[86,1,1,2,3],[87,1,1,3,4]]]],[2209,2279,2609,2640]]]]},{"k":"H6764","v":[["Zalaph",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12357]]]]},{"k":"H6765","v":[["Zelophehad",[11,9,[[3,8,7,0,7,[[142,2,1,0,1],[143,2,2,1,3],[152,4,4,3,7]]],[5,1,1,7,8,[[203,1,1,7,8]]],[12,2,1,8,9,[[344,2,1,8,9]]]],[4522,4555,4561,4881,4885,4889,4890,6278,10550]]]]},{"k":"H6766","v":[["Zelzah",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7420]]]]},{"k":"H6767","v":[["*",[6,5,[[4,1,1,0,1,[[180,1,1,0,1]]],[9,1,1,1,2,[[272,1,1,1,2]]],[17,1,1,2,3,[[476,1,1,2,3]]],[18,2,1,3,4,[[627,2,1,3,4]]],[22,1,1,4,5,[[696,1,1,4,5]]]],[5653,8162,13895,16399,17998]]],["cymbals",[3,2,[[9,1,1,0,1,[[272,1,1,0,1]]],[18,2,1,1,2,[[627,2,1,1,2]]]],[8162,16399]]],["locust",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5653]]],["shadowing",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[17998]]],["spears",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13895]]]]},{"k":"H6768","v":[["Zelek",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8690,10712]]]]},{"k":"H6769","v":[["Zilthai",[2,2,[[12,2,2,0,2,[[345,1,1,0,1],[349,1,1,1,2]]]],[10595,10740]]]]},{"k":"H6770","v":[["*",[10,10,[[1,1,1,0,1,[[66,1,1,0,1]]],[6,2,2,1,3,[[214,1,1,1,2],[225,1,1,2,3]]],[7,1,1,3,4,[[233,1,1,3,4]]],[17,1,1,4,5,[[459,1,1,4,5]]],[18,2,2,5,7,[[519,1,1,5,6],[540,1,1,6,7]]],[22,3,3,7,10,[[726,1,1,7,8],[727,1,1,8,9],[743,1,1,9,10]]]],[1986,6618,6947,7158,13447,14557,14840,18635,18646,18910]]],["+",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6947]]],["athirst",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7158]]],["thirst",[2,2,[[17,1,1,0,1,[[459,1,1,0,1]]],[22,1,1,1,2,[[727,1,1,1,2]]]],[13447,18646]]],["thirsted",[2,2,[[1,1,1,0,1,[[66,1,1,0,1]]],[22,1,1,1,2,[[726,1,1,1,2]]]],[1986,18635]]],["thirsteth",[2,2,[[18,2,2,0,2,[[519,1,1,0,1],[540,1,1,1,2]]]],[14557,14840]]],["thirsty",[2,2,[[6,1,1,0,1,[[214,1,1,0,1]]],[22,1,1,1,2,[[743,1,1,1,2]]]],[6618,18910]]]]},{"k":"H6771","v":[["*",[9,9,[[4,1,1,0,1,[[181,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[18,1,1,2,3,[[584,1,1,2,3]]],[19,1,1,3,4,[[652,1,1,3,4]]],[22,5,5,4,9,[[699,1,1,4,5],[707,1,1,5,6],[710,1,1,6,7],[722,1,1,7,8],[733,1,1,8,9]]]],[5698,8478,15704,17134,18049,18201,18265,18536,18741]]],["man",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18201]]],["thirst",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5698]]],["thirsteth",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18741]]],["thirsty",[6,6,[[9,1,1,0,1,[[283,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]],[19,1,1,2,3,[[652,1,1,2,3]]],[22,3,3,3,6,[[699,1,1,3,4],[710,1,1,4,5],[722,1,1,5,6]]]],[8478,15704,17134,18049,18265,18536]]]]},{"k":"H6772","v":[["*",[17,17,[[1,1,1,0,1,[[66,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[6,1,1,2,3,[[225,1,1,2,3]]],[13,1,1,3,4,[[398,1,1,3,4]]],[15,2,2,4,6,[[421,2,2,4,6]]],[18,2,2,6,8,[[546,1,1,6,7],[581,1,1,7,8]]],[22,3,3,8,11,[[683,1,1,8,9],[719,1,1,9,10],[728,1,1,10,11]]],[23,1,1,11,12,[[792,1,1,11,12]]],[24,1,1,12,13,[[800,1,1,12,13]]],[25,1,1,13,14,[[820,1,1,13,14]]],[27,1,1,14,15,[[863,1,1,14,15]]],[29,2,2,15,17,[[886,2,2,15,17]]]],[1986,5659,6947,11886,12526,12531,14956,15582,17752,18468,18664,20098,20424,20894,22108,22492,22494]]],["thirst",[16,16,[[1,1,1,0,1,[[66,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[6,1,1,2,3,[[225,1,1,2,3]]],[13,1,1,3,4,[[398,1,1,3,4]]],[15,2,2,4,6,[[421,2,2,4,6]]],[18,2,2,6,8,[[546,1,1,6,7],[581,1,1,7,8]]],[22,3,3,8,11,[[683,1,1,8,9],[719,1,1,9,10],[728,1,1,10,11]]],[23,1,1,11,12,[[792,1,1,11,12]]],[24,1,1,12,13,[[800,1,1,12,13]]],[27,1,1,13,14,[[863,1,1,13,14]]],[29,2,2,14,16,[[886,2,2,14,16]]]],[1986,5659,6947,11886,12526,12531,14956,15582,17752,18468,18664,20098,20424,22108,22492,22494]]],["thirsty",[1,1,[[25,1,1,0,1,[[820,1,1,0,1]]]],[20894]]]]},{"k":"H6773","v":[["+",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18990]]]]},{"k":"H6774","v":[["*",[3,3,[[4,1,1,0,1,[[160,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]],[22,1,1,2,3,[[713,1,1,2,3]]]],[5152,15732,18327]]],["drought",[1,1,[[4,1,1,0,1,[[160,1,1,0,1]]]],[5152]]],["ground",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15732]]],["land",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18327]]]]},{"k":"H6775","v":[["*",[5,5,[[3,2,2,0,2,[[141,2,2,0,2]]],[9,1,1,2,3,[[286,1,1,2,3]]],[18,2,2,3,5,[[527,1,1,3,4],[583,1,1,4,5]]]],[4474,4476,8562,14687,15679]]],["fastened",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8562]]],["frameth",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14687]]],["himself",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4474]]],["joined",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4476]]],["themselves",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15679]]]]},{"k":"H6776","v":[["*",[15,15,[[6,2,2,0,2,[[229,2,2,0,2]]],[8,2,2,2,4,[[246,1,1,2,3],[249,1,1,3,4]]],[9,1,1,4,5,[[282,1,1,4,5]]],[10,2,2,5,7,[[309,2,2,5,7]]],[11,2,2,7,9,[[317,1,1,7,8],[321,1,1,8,9]]],[17,2,2,9,11,[[436,1,1,9,10],[477,1,1,10,11]]],[22,3,3,11,14,[[683,1,1,11,12],[699,2,2,12,14]]],[23,1,1,14,15,[[795,1,1,14,15]]]],[7027,7034,7452,7522,8427,9406,9408,9664,9781,12872,13934,17749,18042,18044,20235]]],["+",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9664]]],["acres",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17749]]],["couple",[4,4,[[6,1,1,0,1,[[229,1,1,0,1]]],[9,1,1,1,2,[[282,1,1,1,2]]],[22,2,2,2,4,[[699,2,2,2,4]]]],[7027,8427,18042,18044]]],["oxen",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20235]]],["together",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9781]]],["two",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7034]]],["yoke",[6,6,[[8,2,2,0,2,[[246,1,1,0,1],[249,1,1,1,2]]],[10,2,2,2,4,[[309,2,2,2,4]]],[17,2,2,4,6,[[436,1,1,4,5],[477,1,1,5,6]]]],[7452,7522,9406,9408,12872,13934]]]]},{"k":"H6777","v":[["locks",[4,4,[[21,3,3,0,3,[[674,2,2,0,2],[676,1,1,2,3]]],[22,1,1,3,4,[[725,1,1,3,4]]]],[17583,17585,17621,18601]]]]},{"k":"H6778","v":[["raisins",[4,4,[[8,2,2,0,2,[[260,1,1,0,1],[265,1,1,1,2]]],[9,1,1,2,3,[[282,1,1,2,3]]],[12,1,1,3,4,[[349,1,1,3,4]]]],[7879,7990,8427,10760]]]]},{"k":"H6779","v":[["*",[33,32,[[0,5,5,0,5,[[1,2,2,0,2],[2,1,1,2,3],[40,2,2,3,5]]],[1,1,1,5,6,[[59,1,1,5,6]]],[2,1,1,6,7,[[102,1,1,6,7]]],[4,1,1,7,8,[[181,1,1,7,8]]],[6,1,1,8,9,[[226,1,1,8,9]]],[9,2,2,9,11,[[276,1,1,9,10],[289,1,1,10,11]]],[12,1,1,11,12,[[356,1,1,11,12]]],[17,3,3,12,15,[[440,1,1,12,13],[443,1,1,13,14],[473,1,1,14,15]]],[18,4,4,15,19,[[562,1,1,15,16],[581,1,1,16,17],[609,1,1,17,18],[624,1,1,18,19]]],[20,1,1,19,20,[[660,1,1,19,20]]],[22,8,7,20,27,[[720,1,1,20,21],[721,1,1,21,22],[722,1,1,22,23],[723,1,1,23,24],[733,1,1,24,25],[736,1,1,25,26],[739,2,1,26,27]]],[23,1,1,27,28,[[777,1,1,27,28]]],[25,3,3,28,31,[[817,1,1,28,29],[818,1,1,29,30],[830,1,1,30,31]]],[37,1,1,31,32,[[916,1,1,31,32]]]],[35,39,73,1201,1218,1782,3089,5702,6971,8245,8658,10912,12957,13048,13820,15282,15585,16168,16359,17339,18489,18524,18537,18569,18750,18794,18854,19790,20769,20831,21204,22959]]],["again",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6971]]],["beareth",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5702]]],["bud",[2,2,[[18,1,1,0,1,[[609,1,1,0,1]]],[22,1,1,1,2,[[733,1,1,1,2]]]],[16168,18750]]],["forth",[9,8,[[0,1,1,0,1,[[2,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]],[20,1,1,2,3,[[660,1,1,2,3]]],[22,5,4,3,7,[[720,1,1,3,4],[721,1,1,4,5],[736,1,1,5,6],[739,2,1,6,7]]],[25,1,1,7,8,[[830,1,1,7,8]]]],[73,13820,17339,18489,18524,18794,18854,21204]]],["grew",[2,2,[[0,1,1,0,1,[[1,1,1,0,1]]],[25,1,1,1,2,[[818,1,1,1,2]]]],[35,20831]]],["grow",[5,5,[[0,1,1,0,1,[[1,1,1,0,1]]],[9,1,1,1,2,[[289,1,1,1,2]]],[17,1,1,2,3,[[443,1,1,2,3]]],[18,2,2,3,5,[[581,1,1,3,4],[624,1,1,4,5]]]],[39,8658,13048,15585,16359]]],["groweth",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1782]]],["grown",[3,3,[[9,1,1,0,1,[[276,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]],[25,1,1,2,3,[[817,1,1,2,3]]]],[8245,10912,20769]]],["spring",[2,2,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,1,1,1,2,[[562,1,1,1,2]]]],[12957,15282]]],["up",[7,7,[[0,2,2,0,2,[[40,2,2,0,2]]],[2,1,1,2,3,[[102,1,1,2,3]]],[22,2,2,3,5,[[722,1,1,3,4],[723,1,1,4,5]]],[23,1,1,5,6,[[777,1,1,5,6]]],[37,1,1,6,7,[[916,1,1,6,7]]]],[1201,1218,3089,18537,18569,19790,22959]]]]},{"k":"H6780","v":[["*",[12,12,[[0,1,1,0,1,[[18,1,1,0,1]]],[18,1,1,1,2,[[542,1,1,1,2]]],[22,2,2,2,4,[[682,1,1,2,3],[739,1,1,3,4]]],[23,2,2,4,6,[[767,1,1,4,5],[777,1,1,5,6]]],[25,3,3,6,9,[[817,1,1,6,7],[818,2,2,7,9]]],[27,1,1,9,10,[[869,1,1,9,10]]],[37,2,2,10,12,[[913,1,1,10,11],[916,1,1,11,12]]]],[482,14870,17735,18854,19489,19790,20769,20834,20835,22201,22920,22959]]],["BRANCH",[2,2,[[37,2,2,0,2,[[913,1,1,0,1],[916,1,1,1,2]]]],[22920,22959]]],["Branch",[2,2,[[23,2,2,0,2,[[767,1,1,0,1],[777,1,1,1,2]]]],[19489,19790]]],["branch",[1,1,[[22,1,1,0,1,[[682,1,1,0,1]]]],[17735]]],["bud",[3,3,[[22,1,1,0,1,[[739,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]],[27,1,1,2,3,[[869,1,1,2,3]]]],[18854,20769,22201]]],["grew",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[25,1,1,1,2,[[818,1,1,1,2]]]],[482,20835]]],["spring",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20834]]],["springing",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14870]]]]},{"k":"H6781","v":[["*",[7,7,[[0,3,3,0,3,[[23,3,3,0,3]]],[3,2,2,3,5,[[135,1,1,3,4],[147,1,1,4,5]]],[25,2,2,5,7,[[817,1,1,5,6],[824,1,1,6,7]]]],[613,621,638,4304,4714,20773,21049]]],["bracelets",[6,6,[[0,3,3,0,3,[[23,3,3,0,3]]],[3,1,1,3,4,[[147,1,1,3,4]]],[25,2,2,4,6,[[817,1,1,4,5],[824,1,1,5,6]]]],[613,621,638,4714,20773,21049]]],["covering",[1,1,[[3,1,1,0,1,[[135,1,1,0,1]]]],[4304]]]]},{"k":"H6782","v":[["robber",[2,2,[[17,2,2,0,2,[[440,1,1,0,1],[453,1,1,1,2]]]],[12956,13285]]]]},{"k":"H6783","v":[["ever",[2,2,[[2,2,2,0,2,[[114,2,2,0,2]]]],[3492,3499]]]]},{"k":"H6784","v":[["dry",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22222]]]]},{"k":"H6785","v":[["*",[16,16,[[2,4,4,0,4,[[102,4,4,0,4]]],[4,1,1,4,5,[[174,1,1,4,5]]],[6,1,1,5,6,[[216,1,1,5,6]]],[11,1,1,6,7,[[315,1,1,6,7]]],[18,1,1,7,8,[[624,1,1,7,8]]],[19,1,1,8,9,[[658,1,1,8,9]]],[22,2,2,9,11,[[679,1,1,9,10],[729,1,1,10,11]]],[25,3,3,11,14,[[828,1,1,11,12],[835,1,1,12,13],[845,1,1,13,14]]],[27,2,2,14,16,[[863,2,2,14,16]]]],[3099,3100,3104,3111,5481,6691,9580,16367,17297,17672,18681,21139,21316,21616,22110,22114]]],["wool",[11,11,[[6,1,1,0,1,[[216,1,1,0,1]]],[11,1,1,1,2,[[315,1,1,1,2]]],[18,1,1,2,3,[[624,1,1,2,3]]],[19,1,1,3,4,[[658,1,1,3,4]]],[22,2,2,4,6,[[679,1,1,4,5],[729,1,1,5,6]]],[25,3,3,6,9,[[828,1,1,6,7],[835,1,1,7,8],[845,1,1,8,9]]],[27,2,2,9,11,[[863,2,2,9,11]]]],[6691,9580,16367,17297,17672,18681,21139,21316,21616,22110,22114]]],["woollen",[5,5,[[2,4,4,0,4,[[102,4,4,0,4]]],[4,1,1,4,5,[[174,1,1,4,5]]]],[3099,3100,3104,3111,5481]]]]},{"k":"H6786","v":[["Zemarite",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[252,10268]]]]},{"k":"H6787","v":[["Zemaraim",[2,2,[[5,1,1,0,1,[[204,1,1,0,1]]],[13,1,1,1,2,[[379,1,1,1,2]]]],[6315,11457]]]]},{"k":"H6788","v":[["*",[5,5,[[25,5,5,0,5,[[818,2,2,0,2],[832,3,3,2,5]]]],[20828,20847,21233,21240,21244]]],["+",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20847]]],["branch",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20828]]],["top",[3,3,[[25,3,3,0,3,[[832,3,3,0,3]]]],[21233,21240,21244]]]]},{"k":"H6789","v":[["*",[15,14,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,2,2,1,3,[[441,1,1,1,2],[458,1,1,2,3]]],[18,11,10,3,13,[[495,1,1,3,4],[531,1,1,4,5],[546,1,1,5,6],[550,1,1,6,7],[565,1,1,7,8],[571,2,1,8,9],[578,2,2,9,11],[596,1,1,11,12],[620,1,1,12,13]]],[24,1,1,13,14,[[799,1,1,13,14]]]],[8643,12995,13436,14158,14730,14939,15047,15324,15454,15518,15521,16037,16305,20407]]],["consumed",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16037]]],["destroy",[4,4,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,3,3,1,4,[[495,1,1,1,2],[546,1,1,2,3],[578,1,1,3,4]]]],[8643,14158,14939,15521]]],["destroyed",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15047]]],["off",[8,7,[[17,1,1,0,1,[[458,1,1,0,1]]],[18,6,5,1,6,[[531,1,1,1,2],[565,1,1,2,3],[571,2,1,3,4],[578,1,1,4,5],[620,1,1,5,6]]],[24,1,1,6,7,[[799,1,1,6,7]]]],[13436,14730,15324,15454,15518,16305,20407]]],["vanish",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12995]]]]},{"k":"H6790","v":[["Zin",[10,9,[[3,7,6,0,6,[[129,1,1,0,1],[136,1,1,1,2],[143,2,1,2,3],[149,1,1,3,4],[150,2,2,4,6]]],[4,1,1,6,7,[[184,1,1,6,7]]],[5,2,2,7,9,[[201,2,2,7,9]]]],[4096,4312,4568,4796,4819,4820,5809,6203,6205]]]]},{"k":"H6791","v":[["*",[2,2,[[17,1,1,0,1,[[440,1,1,0,1]]],[19,1,1,1,2,[[649,1,1,1,2]]]],[12956,17020]]],["+",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12956]]],["Thorns",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17020]]]]},{"k":"H6792","v":[["sheep",[2,2,[[3,1,1,0,1,[[148,1,1,0,1]]],[18,1,1,1,2,[[485,1,1,1,2]]]],[4742,14019]]]]},{"k":"H6793","v":[["*",[22,20,[[8,2,2,0,2,[[252,2,2,0,2]]],[10,2,1,2,3,[[300,2,1,2,3]]],[12,3,3,3,6,[[349,3,3,3,6]]],[13,5,4,6,10,[[375,2,1,6,7],[377,1,1,7,8],[380,1,1,8,9],[391,1,1,9,10]]],[18,3,3,10,13,[[482,1,1,10,11],[512,1,1,11,12],[568,1,1,12,13]]],[19,1,1,13,14,[[652,1,1,13,14]]],[23,1,1,14,15,[[790,1,1,14,15]]],[25,4,4,15,19,[[824,1,1,15,16],[827,1,1,16,17],[839,1,1,17,18],[840,1,1,18,19]]],[29,1,1,19,20,[[882,1,1,19,20]]]],[7625,7659,9095,10728,10744,10754,11379,11426,11483,11709,13985,14412,15399,17126,20048,21031,21108,21429,21457,22412]]],["buckler",[3,3,[[18,1,1,0,1,[[512,1,1,0,1]]],[25,2,2,1,3,[[824,1,1,1,2],[827,1,1,2,3]]]],[14412,21031,21108]]],["bucklers",[2,2,[[25,2,2,0,2,[[839,1,1,0,1],[840,1,1,1,2]]]],[21429,21457]]],["cold",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17126]]],["hooks",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22412]]],["shield",[9,9,[[8,2,2,0,2,[[252,2,2,0,2]]],[12,3,3,2,5,[[349,3,3,2,5]]],[13,1,1,5,6,[[391,1,1,5,6]]],[18,2,2,6,8,[[482,1,1,6,7],[568,1,1,7,8]]],[23,1,1,8,9,[[790,1,1,8,9]]]],[7625,7659,10728,10744,10754,11709,13985,15399,20048]]],["shields",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11426]]],["target",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9095,11379]]],["targets",[3,3,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,2,2,1,3,[[375,1,1,1,2],[380,1,1,2,3]]]],[9095,11379,11483]]]]},{"k":"H6794","v":[["*",[2,2,[[9,1,1,0,1,[[271,1,1,0,1]]],[18,1,1,1,2,[[519,1,1,1,2]]]],[8140,14562]]],["gutter",[1,1,[[9,1,1,0,1,[[271,1,1,0,1]]]],[8140]]],["waterspouts",[1,1,[[18,1,1,0,1,[[519,1,1,0,1]]]],[14562]]]]},{"k":"H6795","v":[["*",[3,3,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,2,2,1,3,[[211,1,1,1,2],[214,1,1,2,3]]]],[6220,6523,6620]]],["fastened",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6620]]],["lighted",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]]],[6220,6523]]]]},{"k":"H6796","v":[["thorns",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4815]]]]},{"k":"H6797","v":[["*",[5,4,[[17,1,1,0,1,[[464,1,1,0,1]]],[22,2,2,1,3,[[681,1,1,1,2],[740,1,1,2,3]]],[37,2,1,3,4,[[913,2,1,3,4]]]],[13546,17730,18857,22917]]],["diadem",[2,2,[[17,1,1,0,1,[[464,1,1,0,1]]],[22,1,1,1,2,[[740,1,1,1,2]]]],[13546,18857]]],["hoods",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17730]]],["mitre",[2,1,[[37,2,1,0,1,[[913,2,1,0,1]]]],[22917]]]]},{"k":"H6798","v":[["withered",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1218]]]]},{"k":"H6799","v":[["Zenan",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6239]]]]},{"k":"H6800","v":[["*",[2,2,[[19,1,1,0,1,[[638,1,1,0,1]]],[32,1,1,1,2,[[898,1,1,1,2]]]],[16690,22656]]],["humbly",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22656]]],["lowly",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16690]]]]},{"k":"H6801","v":[["*",[3,2,[[2,1,1,0,1,[[105,1,1,0,1]]],[22,2,1,1,2,[[700,2,1,1,2]]]],[3205,18070]]],["+",[2,1,[[22,2,1,0,1,[[700,2,1,0,1]]]],[18070]]],["attired",[1,1,[[2,1,1,0,1,[[105,1,1,0,1]]]],[3205]]]]},{"k":"H6802","v":[["toss",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18070]]]]},{"k":"H6803","v":[["pot",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1980]]]]},{"k":"H6804","v":[["pipes",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22934]]]]},{"k":"H6805","v":[["*",[8,8,[[0,1,1,0,1,[[48,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[9,1,1,2,3,[[272,1,1,2,3]]],[17,1,1,3,4,[[453,1,1,3,4]]],[18,1,1,4,5,[[545,1,1,4,5]]],[19,1,1,5,6,[[634,1,1,5,6]]],[23,1,1,6,7,[[754,1,1,6,7]]],[34,1,1,7,8,[[905,1,1,7,8]]]],[1495,6627,8170,13290,14907,16583,19206,22780]]],["bring",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13290]]],["go",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19206]]],["gone",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8170]]],["march",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14907]]],["marchedst",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6627]]],["run",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1495]]],["through",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22780]]],["went",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16583]]]]},{"k":"H6806","v":[["*",[14,14,[[9,2,2,0,2,[[272,1,1,0,1],[288,1,1,1,2]]],[17,5,5,2,7,[[449,1,1,2,3],[453,1,1,3,4],[466,2,2,4,6],[469,1,1,6,7]]],[18,1,1,7,8,[[495,1,1,7,8]]],[19,4,4,8,12,[[631,1,1,8,9],[632,1,1,9,10],[643,1,1,10,11],[657,1,1,11,12]]],[23,1,1,12,13,[[754,1,1,12,13]]],[24,1,1,13,14,[[800,1,1,13,14]]]],[8170,8639,13197,13283,13592,13625,13704,14154,16502,16522,16849,17280,19224,20438]]],["go",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17280]]],["goings",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13704]]],["paces",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8170]]],["steps",[11,11,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,4,4,1,5,[[449,1,1,1,2],[453,1,1,2,3],[466,2,2,3,5]]],[18,1,1,5,6,[[495,1,1,5,6]]],[19,3,3,6,9,[[631,1,1,6,7],[632,1,1,7,8],[643,1,1,8,9]]],[23,1,1,9,10,[[754,1,1,9,10]]],[24,1,1,10,11,[[800,1,1,10,11]]]],[8639,13197,13283,13592,13625,14154,16502,16522,16849,19224,20438]]]]},{"k":"H6807","v":[["*",[3,3,[[9,1,1,0,1,[[271,1,1,0,1]]],[12,1,1,1,2,[[351,1,1,1,2]]],[22,1,1,2,3,[[681,1,1,2,3]]]],[8156,10789,17727]]],["going",[2,2,[[9,1,1,0,1,[[271,1,1,0,1]]],[12,1,1,1,2,[[351,1,1,1,2]]]],[8156,10789]]],["legs",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17727]]]]},{"k":"H6808","v":[["*",[5,4,[[22,2,2,0,2,[[729,1,1,0,1],[741,1,1,1,2]]],[23,3,2,2,4,[[746,1,1,2,3],[792,2,1,3,4]]]],[18687,18867,18985,20092]]],["exile",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18687]]],["travelling",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18867]]],["wander",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20092]]],["wanderers",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20092]]],["wanderest",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18985]]]]},{"k":"H6809","v":[["vail",[3,3,[[0,3,3,0,3,[[23,1,1,0,1],[37,2,2,1,3]]]],[656,1133,1138]]]]},{"k":"H6810","v":[["*",[22,22,[[0,8,8,0,8,[[18,4,4,0,4],[24,1,1,4,5],[28,1,1,5,6],[42,1,1,6,7],[47,1,1,7,8]]],[5,1,1,8,9,[[192,1,1,8,9]]],[6,1,1,9,10,[[216,1,1,9,10]]],[8,1,1,10,11,[[244,1,1,10,11]]],[10,1,1,11,12,[[306,1,1,11,12]]],[17,2,2,12,14,[[465,1,1,12,13],[467,1,1,13,14]]],[18,2,2,14,16,[[545,1,1,14,15],[596,1,1,15,16]]],[22,1,1,16,17,[[738,1,1,16,17]]],[23,4,4,17,21,[[758,1,1,17,18],[792,1,1,18,19],[793,1,1,19,20],[794,1,1,20,21]]],[32,1,1,21,22,[[897,1,1,21,22]]]],[488,491,492,495,681,821,1323,1465,5975,6669,7412,9317,13558,13634,14927,16039,18843,19296,20084,20147,20211,22635]]],["+",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13558]]],["least",[4,4,[[6,1,1,0,1,[[216,1,1,0,1]]],[8,1,1,1,2,[[244,1,1,1,2]]],[23,2,2,2,4,[[793,1,1,2,3],[794,1,1,3,4]]]],[6669,7412,20147,20211]]],["little",[2,2,[[18,1,1,0,1,[[545,1,1,0,1]]],[32,1,1,1,2,[[897,1,1,1,2]]]],[14927,22635]]],["one",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18843]]],["ones",[2,2,[[23,2,2,0,2,[[758,1,1,0,1],[792,1,1,1,2]]]],[19296,20084]]],["small",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16039]]],["young",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13634]]],["younger",[7,7,[[0,7,7,0,7,[[18,4,4,0,4],[24,1,1,4,5],[28,1,1,5,6],[47,1,1,6,7]]]],[488,491,492,495,681,821,1465]]],["youngest",[3,3,[[0,1,1,0,1,[[42,1,1,0,1]]],[5,1,1,1,2,[[192,1,1,1,2]]],[10,1,1,2,3,[[306,1,1,2,3]]]],[1323,5975,9317]]]]},{"k":"H6811","v":[["Zair",[1,1,[[11,1,1,0,1,[[320,1,1,0,1]]]],[9748]]]]},{"k":"H6812","v":[["youth",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1323]]]]},{"k":"H6813","v":[["down",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18299]]]]},{"k":"H6814","v":[["Zoan",[7,7,[[3,1,1,0,1,[[129,1,1,0,1]]],[18,2,2,1,3,[[555,2,2,1,3]]],[22,3,3,3,6,[[697,2,2,3,5],[708,1,1,5,6]]],[25,1,1,6,7,[[831,1,1,6,7]]]],[4097,15125,15156,18015,18017,18221,21218]]]]},{"k":"H6815","v":[["*",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[6,1,1,1,2,[[214,1,1,1,2]]]],[6354,6610]]],["Zaanaim",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6610]]],["Zaanannim",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6354]]]]},{"k":"H6816","v":[["image",[1,1,[[13,1,1,0,1,[[369,1,1,0,1]]]],[11239]]]]},{"k":"H6817","v":[["*",[55,53,[[0,3,3,0,3,[[3,1,1,0,1],[26,1,1,1,2],[40,1,1,2,3]]],[1,10,9,3,12,[[54,2,2,3,5],[57,1,1,5,6],[63,2,2,6,8],[64,1,1,8,9],[66,1,1,9,10],[71,3,2,10,12]]],[3,3,3,12,15,[[127,1,1,12,13],[128,1,1,13,14],[136,1,1,14,15]]],[4,3,3,15,18,[[174,2,2,15,17],[178,1,1,17,18]]],[5,1,1,18,19,[[210,1,1,18,19]]],[6,6,6,19,25,[[214,1,1,19,20],[217,2,2,20,22],[220,2,2,22,24],[222,1,1,24,25]]],[8,2,2,25,27,[[245,1,1,25,26],[248,1,1,26,27]]],[10,1,1,27,28,[[310,1,1,27,28]]],[11,8,8,28,36,[[314,1,1,28,29],[315,1,1,29,30],[316,2,2,30,32],[318,2,2,32,34],[320,2,2,34,36]]],[13,1,1,36,37,[[379,1,1,36,37]]],[15,1,1,37,38,[[421,1,1,37,38]]],[17,2,2,38,40,[[454,1,1,38,39],[470,1,1,39,40]]],[18,5,5,40,45,[[511,1,1,40,41],[554,1,1,41,42],[565,1,1,42,43],[584,2,2,43,45]]],[22,5,5,45,50,[[697,1,1,45,46],[711,1,1,46,47],[720,1,1,47,48],[724,1,1,48,49],[743,1,1,49,50]]],[23,3,2,50,52,[[766,2,1,50,51],[793,1,1,51,52]]],[24,1,1,52,53,[[798,1,1,52,53]]]],[89,761,1250,1640,1647,1722,1899,1904,1945,1987,2136,2140,4026,4072,4327,5494,5497,5573,6483,6602,6717,6718,6823,6828,6870,7435,7489,9447,9563,9597,9604,9643,9679,9700,9730,9732,11467,12538,13304,13732,14405,15094,15309,15705,15727,18024,18286,18482,18593,18911,19474,20130,20350]]],["+",[4,3,[[1,2,1,0,1,[[71,2,1,0,1]]],[8,1,1,1,2,[[245,1,1,1,2]]],[11,1,1,2,3,[[315,1,1,2,3]]]],[2136,7435,9597]]],["cried",[27,27,[[0,2,2,0,2,[[26,1,1,0,1],[40,1,1,1,2]]],[1,4,4,2,6,[[54,1,1,2,3],[57,1,1,3,4],[64,1,1,4,5],[66,1,1,5,6]]],[3,3,3,6,9,[[127,1,1,6,7],[128,1,1,7,8],[136,1,1,8,9]]],[4,3,3,9,12,[[174,2,2,9,11],[178,1,1,11,12]]],[5,1,1,12,13,[[210,1,1,12,13]]],[6,2,2,13,15,[[214,1,1,13,14],[220,1,1,14,15]]],[10,1,1,15,16,[[310,1,1,15,16]]],[11,5,5,16,21,[[314,1,1,16,17],[316,1,1,17,18],[318,2,2,18,20],[320,1,1,20,21]]],[13,1,1,21,22,[[379,1,1,21,22]]],[15,1,1,22,23,[[421,1,1,22,23]]],[18,3,3,23,26,[[554,1,1,23,24],[565,1,1,24,25],[584,1,1,25,26]]],[24,1,1,26,27,[[798,1,1,26,27]]]],[761,1250,1647,1722,1945,1987,4026,4072,4327,5494,5497,5573,6483,6602,6823,9447,9563,9604,9679,9700,9732,11467,12538,15094,15309,15705,20350]]],["criest",[1,1,[[1,1,1,0,1,[[63,1,1,0,1]]]],[1904]]],["crieth",[2,2,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]]],[89,2140]]],["cry",[13,12,[[1,1,1,0,1,[[54,1,1,0,1]]],[11,1,1,1,2,[[320,1,1,1,2]]],[17,1,1,2,3,[[470,1,1,2,3]]],[18,2,2,3,5,[[511,1,1,3,4],[584,1,1,4,5]]],[22,5,5,5,10,[[697,1,1,5,6],[711,1,1,6,7],[720,1,1,7,8],[724,1,1,8,9],[743,1,1,9,10]]],[23,3,2,10,12,[[766,2,1,10,11],[793,1,1,11,12]]]],[1640,9730,13732,14405,15727,18024,18286,18482,18593,18911,19474,20130]]],["out",[3,3,[[1,1,1,0,1,[[63,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]],[17,1,1,2,3,[[454,1,1,2,3]]]],[1899,9643,13304]]],["together",[5,5,[[6,4,4,0,4,[[217,2,2,0,2],[220,1,1,2,3],[222,1,1,3,4]]],[8,1,1,4,5,[[248,1,1,4,5]]]],[6717,6718,6828,6870,7489]]]]},{"k":"H6818","v":[["*",[21,20,[[0,3,3,0,3,[[17,1,1,0,1],[18,1,1,1,2],[26,1,1,2,3]]],[1,5,5,3,8,[[52,2,2,3,5],[60,1,1,5,6],[61,1,1,6,7],[71,1,1,7,8]]],[8,2,2,8,10,[[239,1,1,8,9],[244,1,1,9,10]]],[15,1,1,10,11,[[417,1,1,10,11]]],[17,3,2,11,13,[[462,1,1,11,12],[469,2,1,12,13]]],[18,1,1,13,14,[[486,1,1,13,14]]],[22,1,1,14,15,[[683,1,1,14,15]]],[23,4,4,15,19,[[769,1,1,15,16],[792,2,2,16,18],[793,1,1,18,19]]],[35,1,1,19,20,[[906,1,1,19,20]]]],[445,470,761,1586,1588,1812,1846,2136,7311,7407,12383,13490,13711,14033,17746,19570,20083,20085,20148,22797]]],["cry",[19,18,[[0,3,3,0,3,[[17,1,1,0,1],[18,1,1,1,2],[26,1,1,2,3]]],[1,5,5,3,8,[[52,2,2,3,5],[60,1,1,5,6],[61,1,1,6,7],[71,1,1,7,8]]],[8,1,1,8,9,[[244,1,1,8,9]]],[15,1,1,9,10,[[417,1,1,9,10]]],[17,3,2,10,12,[[462,1,1,10,11],[469,2,1,11,12]]],[18,1,1,12,13,[[486,1,1,12,13]]],[22,1,1,13,14,[[683,1,1,13,14]]],[23,3,3,14,17,[[769,1,1,14,15],[792,1,1,15,16],[793,1,1,16,17]]],[35,1,1,17,18,[[906,1,1,17,18]]]],[445,470,761,1586,1588,1812,1846,2136,7407,12383,13490,13711,14033,17746,19570,20085,20148,22797]]],["crying",[2,2,[[8,1,1,0,1,[[239,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[7311,20083]]]]},{"k":"H6819","v":[["*",[3,3,[[17,1,1,0,1,[[449,1,1,0,1]]],[23,1,1,1,2,[[774,1,1,1,2]]],[37,1,1,2,3,[[923,1,1,2,3]]]],[13202,19686,23066]]],["low",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13202]]],["ones",[1,1,[[37,1,1,0,1,[[923,1,1,0,1]]]],[23066]]],["small",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19686]]]]},{"k":"H6820","v":[["*",[10,9,[[0,7,6,0,6,[[12,1,1,0,1],[13,2,2,1,3],[18,4,3,3,6]]],[4,1,1,6,7,[[186,1,1,6,7]]],[22,1,1,7,8,[[693,1,1,7,8]]],[23,1,1,8,9,[[792,1,1,8,9]]]],[328,338,344,479,480,487,5842,17965,20114]]],["+",[2,2,[[0,1,1,0,1,[[18,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[487,20114]]],["Zoar",[8,8,[[0,6,6,0,6,[[12,1,1,0,1],[13,2,2,1,3],[18,3,3,3,6]]],[4,1,1,6,7,[[186,1,1,6,7]]],[22,1,1,7,8,[[693,1,1,7,8]]]],[328,338,344,479,480,487,5842,17965]]]]},{"k":"H6821","v":[["cleaveth",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20428]]]]},{"k":"H6822","v":[["*",[36,34,[[0,1,1,0,1,[[30,1,1,0,1]]],[8,2,2,1,3,[[239,1,1,1,2],[249,1,1,2,3]]],[9,6,5,3,8,[[279,1,1,3,4],[284,5,4,4,8]]],[11,3,3,8,11,[[321,3,3,8,11]]],[17,1,1,11,12,[[450,1,1,11,12]]],[18,3,3,12,15,[[482,1,1,12,13],[514,1,1,13,14],[543,1,1,14,15]]],[19,2,2,15,17,[[642,1,1,15,16],[658,1,1,16,17]]],[21,1,1,17,18,[[677,1,1,17,18]]],[22,4,4,18,22,[[699,2,2,18,20],[730,1,1,20,21],[734,1,1,21,22]]],[23,2,2,22,24,[[750,1,1,22,23],[792,1,1,23,24]]],[24,1,1,24,25,[[800,1,1,24,25]]],[25,5,4,25,29,[[804,1,1,25,26],[834,4,3,26,29]]],[27,1,1,29,30,[[870,1,1,29,30]]],[32,2,2,30,32,[[899,2,2,30,32]]],[33,1,1,32,33,[[901,1,1,32,33]]],[34,1,1,33,34,[[904,1,1,33,34]]]],[922,7310,7524,8351,8502,8503,8504,8505,9773,9774,9776,13225,13976,14482,14880,16810,17311,17631,18040,18041,18704,18763,19106,20099,20437,20519,21282,21286,21287,22216,22668,22671,22700,22749]]],["behold",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14880]]],["beholding",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16810]]],["espy",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20099]]],["for",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13225]]],["look",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22671]]],["looketh",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17631]]],["up",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13976]]],["watch",[5,5,[[0,1,1,0,1,[[30,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[22,1,1,2,3,[[699,1,1,2,3]]],[33,1,1,3,4,[[901,1,1,3,4]]],[34,1,1,4,5,[[904,1,1,4,5]]]],[922,8351,18040,22700,22749]]],["watched",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20437]]],["watcheth",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14482]]],["watching",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7310]]],["watchman",[14,13,[[9,5,4,0,4,[[284,5,4,0,4]]],[11,3,3,4,7,[[321,3,3,4,7]]],[22,1,1,7,8,[[699,1,1,7,8]]],[25,4,4,8,12,[[804,1,1,8,9],[834,3,3,9,12]]],[27,1,1,12,13,[[870,1,1,12,13]]]],[8502,8503,8504,8505,9773,9774,9776,18041,20519,21282,21286,21287,22216]]],["watchman's",[1,1,[[25,1,1,0,1,[[834,1,1,0,1]]]],[21286]]],["watchmen",[5,5,[[8,1,1,0,1,[[249,1,1,0,1]]],[22,2,2,1,3,[[730,1,1,1,2],[734,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]],[32,1,1,4,5,[[899,1,1,4,5]]]],[7524,18704,18763,19106,22668]]],["well",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17311]]]]},{"k":"H6823","v":[["*",[46,39,[[1,26,23,0,23,[[74,5,4,0,4],[75,4,3,4,7],[76,2,2,7,9],[79,2,2,9,11],[85,4,3,11,14],[86,6,6,14,20],[87,3,3,20,23]]],[10,13,9,23,32,[[296,12,8,23,31],[300,1,1,31,32]]],[11,1,1,32,33,[[330,1,1,32,33]]],[13,5,5,33,38,[[369,3,3,33,36],[370,1,1,36,37],[375,1,1,37,38]]],[19,1,1,38,39,[[653,1,1,38,39]]]],[2206,2208,2219,2223,2264,2267,2272,2274,2278,2385,2387,2600,2602,2604,2606,2608,2615,2619,2630,2632,2635,2639,2661,8911,8916,8917,8918,8924,8926,8928,8931,9097,10040,11233,11235,11239,11255,11381,17164]]],["+",[6,6,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]],[10,3,3,2,5,[[296,3,3,2,5]]],[13,1,1,5,6,[[369,1,1,5,6]]]],[2264,2600,8911,8917,8924,11235]]],["covered",[4,4,[[10,3,3,0,3,[[296,3,3,0,3]]],[19,1,1,3,4,[[653,1,1,3,4]]]],[8911,8916,8931,17164]]],["overlaid",[25,24,[[1,13,13,0,13,[[75,1,1,0,1],[85,3,3,1,4],[86,6,6,4,10],[87,3,3,10,13]]],[10,7,6,13,19,[[296,6,5,13,18],[300,1,1,18,19]]],[11,1,1,19,20,[[330,1,1,19,20]]],[13,4,4,20,24,[[369,2,2,20,22],[370,1,1,22,23],[375,1,1,23,24]]]],[2267,2600,2602,2604,2606,2608,2615,2619,2630,2632,2635,2639,2661,8916,8917,8918,8926,8928,9097,10040,11233,11239,11255,11381]]],["overlay",[11,10,[[1,11,10,0,10,[[74,5,4,0,4],[75,2,2,4,6],[76,2,2,6,8],[79,2,2,8,10]]]],[2206,2208,2219,2223,2264,2272,2274,2278,2385,2387]]]]},{"k":"H6824","v":[["swimmest",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21254]]]]},{"k":"H6825","v":[["*",[3,3,[[0,2,2,0,2,[[35,2,2,0,2]]],[12,1,1,2,3,[[338,1,1,2,3]]]],[1051,1055,10288]]],["Zephi",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10288]]],["Zepho",[2,2,[[0,2,2,0,2,[[35,2,2,0,2]]]],[1051,1055]]]]},{"k":"H6826","v":[["*",[5,5,[[1,2,2,0,2,[[87,2,2,0,2]]],[3,2,2,2,4,[[132,2,2,2,4]]],[22,1,1,4,5,[[708,1,1,4,5]]]],[2650,2652,4232,4233,18239]]],["covering",[3,3,[[3,2,2,0,2,[[132,2,2,0,2]]],[22,1,1,2,3,[[708,1,1,2,3]]]],[4232,4233,18239]]],["overlaying",[2,2,[[1,2,2,0,2,[[87,2,2,0,2]]]],[2650,2652]]]]},{"k":"H6827","v":[["Zephon",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4504]]]]},{"k":"H6828","v":[["*",[153,141,[[0,2,2,0,2,[[12,1,1,0,1],[27,1,1,1,2]]],[1,6,6,2,8,[[75,2,2,2,4],[76,1,1,4,5],[85,1,1,5,6],[87,1,1,6,7],[89,1,1,7,8]]],[2,1,1,8,9,[[90,1,1,8,9]]],[3,5,5,9,14,[[118,1,1,9,10],[119,1,1,10,11],[150,2,2,11,13],[151,1,1,13,14]]],[4,2,2,14,16,[[154,1,1,14,15],[155,1,1,15,16]]],[5,25,22,16,38,[[194,2,2,16,18],[197,1,1,18,19],[199,1,1,19,20],[201,6,6,20,26],[202,1,1,26,27],[203,3,2,27,29],[204,8,6,29,35],[205,2,2,35,37],[210,1,1,37,38]]],[6,4,4,38,42,[[212,1,1,38,39],[217,1,1,39,40],[222,1,1,40,41],[231,1,1,41,42]]],[8,1,1,42,43,[[249,1,1,42,43]]],[10,1,1,43,44,[[297,1,1,43,44]]],[11,1,1,44,45,[[328,1,1,44,45]]],[12,3,3,45,48,[[346,1,1,45,46],[363,2,2,46,48]]],[13,1,1,48,49,[[370,1,1,48,49]]],[17,2,2,49,51,[[461,1,1,49,50],[472,1,1,50,51]]],[18,3,3,51,54,[[525,1,1,51,52],[566,1,1,52,53],[584,1,1,53,54]]],[19,1,1,54,55,[[652,1,1,54,55]]],[20,2,2,55,57,[[659,1,1,55,56],[669,1,1,56,57]]],[21,1,1,57,58,[[674,1,1,57,58]]],[22,5,5,58,63,[[692,2,2,58,60],[719,1,1,60,61],[721,1,1,61,62],[727,1,1,62,63]]],[23,25,25,63,88,[[745,3,3,63,66],[747,2,2,66,68],[748,1,1,68,69],[750,2,2,69,71],[754,1,1,71,72],[757,1,1,72,73],[759,1,1,73,74],[760,1,1,74,75],[767,1,1,75,76],[769,2,2,76,78],[775,1,1,78,79],[790,4,4,79,83],[791,1,1,83,84],[794,3,3,84,87],[795,1,1,87,88]]],[25,46,38,88,126,[[802,1,1,88,89],[809,5,3,89,92],[810,1,1,92,93],[821,1,1,93,94],[822,1,1,94,95],[827,1,1,95,96],[833,1,1,96,97],[839,2,2,97,99],[840,1,1,99,100],[841,8,7,100,107],[842,1,1,107,108],[843,7,6,108,114],[845,1,1,114,115],[847,3,2,115,117],[848,5,3,117,120],[849,7,6,120,126]]],[26,9,9,126,135,[[857,1,1,126,127],[860,8,8,127,135]]],[29,1,1,135,136,[[886,1,1,135,136]]],[35,1,1,136,137,[[907,1,1,136,137]]],[37,5,4,137,141,[[912,1,1,137,138],[916,3,2,138,140],[924,1,1,140,141]]]],[332,787,2255,2270,2283,2591,2644,2729,2756,3683,3727,4823,4825,4850,4941,5002,6013,6015,6109,6157,6207,6208,6209,6210,6212,6213,6271,6284,6285,6298,6305,6309,6310,6311,6312,6335,6348,6506,6554,6695,6870,7121,7513,8959,9977,10639,11091,11094,11250,13474,13791,14636,15338,15702,17136,17321,17516,17598,17941,17959,18476,18511,18648,18959,18960,18961,19014,19020,19033,19090,19111,19223,19286,19327,19351,19492,19543,19560,19699,20051,20055,20065,20069,20075,20169,20175,20207,20260,20468,20607,20609,20618,20624,20942,20948,21107,21278,21431,21440,21450,21496,21497,21500,21512,21517,21521,21523,21537,21553,21554,21556,21563,21565,21569,21603,21664,21674,21681,21694,21696,21703,21712,21718,21719,21732,21733,21965,22042,22043,22044,22047,22049,22051,22076,22080,22493,22818,22905,22953,22955,23072]]],["+",[37,37,[[5,13,13,0,13,[[194,2,2,0,2],[197,1,1,2,3],[201,2,2,3,5],[202,1,1,5,6],[203,2,2,6,8],[204,3,3,8,11],[205,1,1,11,12],[210,1,1,12,13]]],[6,3,3,13,16,[[212,1,1,13,14],[217,1,1,14,15],[231,1,1,15,16]]],[8,1,1,16,17,[[249,1,1,16,17]]],[17,1,1,17,18,[[472,1,1,17,18]]],[18,1,1,18,19,[[584,1,1,18,19]]],[22,3,3,19,22,[[692,1,1,19,20],[719,1,1,20,21],[727,1,1,21,22]]],[23,11,11,22,33,[[745,1,1,22,23],[748,1,1,23,24],[750,1,1,24,25],[754,1,1,25,26],[757,1,1,26,27],[759,1,1,27,28],[790,1,1,28,29],[791,1,1,29,30],[794,2,2,30,32],[795,1,1,32,33]]],[25,2,2,33,35,[[809,1,1,33,34],[827,1,1,34,35]]],[26,1,1,35,36,[[860,1,1,35,36]]],[29,1,1,36,37,[[886,1,1,36,37]]]],[6013,6015,6109,6208,6212,6271,6284,6285,6298,6305,6310,6335,6506,6554,6695,7121,7513,13791,15702,17959,18476,18648,18960,19033,19090,19223,19286,19327,20065,20075,20169,20207,20260,20609,21107,22080,22493]]],["north",[92,86,[[0,1,1,0,1,[[27,1,1,0,1]]],[1,5,5,1,6,[[75,2,2,1,3],[76,1,1,3,4],[85,1,1,4,5],[87,1,1,5,6]]],[3,3,3,6,9,[[150,2,2,6,8],[151,1,1,8,9]]],[5,4,4,9,13,[[201,1,1,9,10],[204,3,3,10,13]]],[10,1,1,13,14,[[297,1,1,13,14]]],[11,1,1,14,15,[[328,1,1,14,15]]],[12,1,1,15,16,[[346,1,1,15,16]]],[13,1,1,16,17,[[370,1,1,16,17]]],[17,1,1,17,18,[[461,1,1,17,18]]],[18,2,2,18,20,[[525,1,1,18,19],[566,1,1,19,20]]],[19,1,1,20,21,[[652,1,1,20,21]]],[20,2,2,21,23,[[659,1,1,21,22],[669,1,1,22,23]]],[21,1,1,23,24,[[674,1,1,23,24]]],[22,2,2,24,26,[[692,1,1,24,25],[721,1,1,25,26]]],[23,14,14,26,40,[[745,2,2,26,28],[747,2,2,28,30],[750,1,1,30,31],[760,1,1,31,32],[767,1,1,32,33],[769,2,2,33,35],[775,1,1,35,36],[790,3,3,36,39],[794,1,1,39,40]]],[25,39,34,40,74,[[802,1,1,40,41],[809,4,3,41,44],[810,1,1,44,45],[821,1,1,45,46],[822,1,1,46,47],[833,1,1,47,48],[839,2,2,48,50],[840,1,1,50,51],[841,7,6,51,57],[842,1,1,57,58],[843,7,6,58,64],[845,1,1,64,65],[847,3,2,65,67],[848,3,2,67,69],[849,5,5,69,74]]],[26,7,7,74,81,[[860,7,7,74,81]]],[35,1,1,81,82,[[907,1,1,81,82]]],[37,5,4,82,86,[[912,1,1,82,83],[916,3,2,83,85],[924,1,1,85,86]]]],[787,2255,2270,2283,2591,2644,4823,4825,4850,6207,6305,6309,6312,8959,9977,10639,11250,13474,14636,15338,17136,17321,17516,17598,17941,18511,18959,18961,19014,19020,19111,19351,19492,19543,19560,19699,20051,20055,20069,20175,20468,20607,20609,20618,20624,20942,20948,21278,21431,21440,21450,21497,21500,21512,21517,21521,21523,21537,21553,21554,21556,21563,21565,21569,21603,21664,21674,21694,21696,21703,21712,21718,21719,21732,22042,22043,22044,22047,22049,22051,22076,22818,22905,22953,22955,23072]]],["northward",[22,22,[[0,1,1,0,1,[[12,1,1,0,1]]],[1,1,1,1,2,[[89,1,1,1,2]]],[2,1,1,2,3,[[90,1,1,2,3]]],[3,1,1,3,4,[[119,1,1,3,4]]],[4,2,2,4,6,[[154,1,1,4,5],[155,1,1,5,6]]],[5,7,7,6,13,[[199,1,1,6,7],[201,3,3,7,10],[203,1,1,10,11],[204,2,2,11,13]]],[6,1,1,13,14,[[222,1,1,13,14]]],[12,2,2,14,16,[[363,2,2,14,16]]],[25,5,5,16,21,[[841,1,1,16,17],[848,2,2,17,19],[849,2,2,19,21]]],[26,1,1,21,22,[[857,1,1,21,22]]]],[332,2729,2756,3727,4941,5002,6157,6209,6210,6213,6285,6311,6312,6870,11091,11094,21496,21681,21696,21703,21733,21965]]],["side",[2,2,[[3,1,1,0,1,[[118,1,1,0,1]]],[5,1,1,1,2,[[205,1,1,1,2]]]],[3683,6348]]]]},{"k":"H6829","v":[["Zaphon",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6181]]]]},{"k":"H6830","v":[["northern",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22331]]]]},{"k":"H6831","v":[["Zephonites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4504]]]]},{"k":"H6832","v":[["dung",[1,1,[[25,1,1,0,1,[[805,1,1,0,1]]]],[20544]]]]},{"k":"H6833","v":[["*",[40,36,[[0,2,2,0,2,[[6,1,1,0,1],[14,1,1,1,2]]],[2,13,9,2,11,[[103,13,9,2,11]]],[4,3,3,11,14,[[156,1,1,11,12],[166,1,1,12,13],[174,1,1,13,14]]],[15,1,1,14,15,[[417,1,1,14,15]]],[17,1,1,15,16,[[476,1,1,15,16]]],[18,7,7,16,23,[[485,1,1,16,17],[488,1,1,17,18],[561,1,1,18,19],[579,1,1,19,20],[581,1,1,20,21],[601,1,1,21,22],[625,1,1,22,23]]],[19,4,4,23,27,[[633,1,1,23,24],[634,1,1,24,25],[653,1,1,25,26],[654,1,1,26,27]]],[20,2,2,27,29,[[667,1,1,27,28],[670,1,1,28,29]]],[22,1,1,29,30,[[709,1,1,29,30]]],[24,1,1,30,31,[[799,1,1,30,31]]],[25,3,3,31,34,[[818,1,1,31,32],[840,2,2,32,34]]],[27,1,1,34,35,[[872,1,1,34,35]]],[29,1,1,35,36,[[881,1,1,35,36]]]],[173,370,3115,3116,3117,3118,3160,3161,3162,3163,3164,5021,5301,5476,12400,13893,14020,14060,15262,15528,15588,16109,16381,16545,16598,17143,17177,17487,17527,18255,20406,20848,21452,21465,22251,22400]]],["bird",[21,17,[[0,1,1,0,1,[[6,1,1,0,1]]],[2,9,5,1,6,[[103,9,5,1,6]]],[17,1,1,6,7,[[476,1,1,6,7]]],[18,2,2,7,9,[[488,1,1,7,8],[601,1,1,8,9]]],[19,4,4,9,13,[[633,1,1,9,10],[634,1,1,10,11],[653,1,1,11,12],[654,1,1,12,13]]],[20,1,1,13,14,[[670,1,1,13,14]]],[24,1,1,14,15,[[799,1,1,14,15]]],[27,1,1,15,16,[[872,1,1,15,16]]],[29,1,1,16,17,[[881,1,1,16,17]]]],[173,3117,3118,3162,3163,3164,13893,14060,16109,16545,16598,17143,17177,17527,20406,22251,22400]]],["bird's",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5476]]],["birds",[10,10,[[0,1,1,0,1,[[14,1,1,0,1]]],[2,4,4,1,5,[[103,4,4,1,5]]],[4,1,1,5,6,[[166,1,1,5,6]]],[18,1,1,6,7,[[581,1,1,6,7]]],[20,1,1,7,8,[[667,1,1,7,8]]],[22,1,1,8,9,[[709,1,1,8,9]]],[25,1,1,9,10,[[840,1,1,9,10]]]],[370,3115,3116,3160,3161,5301,15588,17487,18255,21452]]],["fowl",[5,5,[[4,1,1,0,1,[[156,1,1,0,1]]],[18,2,2,1,3,[[485,1,1,1,2],[625,1,1,2,3]]],[25,2,2,3,5,[[818,1,1,3,4],[840,1,1,4,5]]]],[5021,14020,16381,20848,21465]]],["fowls",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12400]]],["sparrow",[2,2,[[18,2,2,0,2,[[561,1,1,0,1],[579,1,1,1,2]]]],[15262,15528]]]]},{"k":"H6834","v":[["Zippor",[7,7,[[3,5,5,0,5,[[138,4,4,0,4],[139,1,1,4,5]]],[5,1,1,5,6,[[210,1,1,5,6]]],[6,1,1,6,7,[[221,1,1,6,7]]]],[4377,4379,4385,4391,4434,6485,6854]]]]},{"k":"H6835","v":[["cruse",[7,7,[[8,3,3,0,3,[[261,3,3,0,3]]],[10,4,4,3,7,[[307,3,3,3,6],[309,1,1,6,7]]]],[7916,7917,7921,9329,9331,9333,9393]]]]},{"k":"H6836","v":[["watching",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20437]]]]},{"k":"H6837","v":[["Ziphion",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1402]]]]},{"k":"H6838","v":[["wafers",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1978]]]]},{"k":"H6839","v":[["Zophim",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4430]]]]},{"k":"H6840","v":[]},{"k":"H6841","v":[["+",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12168]]]]},{"k":"H6842","v":[["*",[6,5,[[13,1,1,0,1,[[395,1,1,0,1]]],[14,1,1,1,2,[[410,1,1,1,2]]],[26,4,3,2,5,[[857,4,3,2,5]]]],[11812,12236,21966,21969,21982]]],["+",[3,3,[[13,1,1,0,1,[[395,1,1,0,1]]],[26,2,2,1,3,[[857,2,2,1,3]]]],[11812,21966,21969]]],["goat",[2,2,[[26,2,2,0,2,[[857,2,2,0,2]]]],[21966,21982]]],["goats",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12236]]]]},{"k":"H6843","v":[["*",[3,3,[[22,1,1,0,1,[[706,1,1,0,1]]],[25,2,2,1,3,[[808,2,2,1,3]]]],[18169,20584,20587]]],["diadem",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18169]]],["morning",[2,2,[[25,2,2,0,2,[[808,2,2,0,2]]]],[20584,20587]]]]},{"k":"H6844","v":[["watchtower",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18040]]]]},{"k":"H6845","v":[["*",[32,31,[[1,2,2,0,2,[[51,2,2,0,2]]],[5,1,1,2,3,[[188,1,1,2,3]]],[17,8,8,3,11,[[445,1,1,3,4],[449,1,1,4,5],[450,1,1,5,6],[452,1,1,6,7],[455,1,1,7,8],[456,1,1,8,9],[458,1,1,9,10],[459,1,1,10,11]]],[18,8,8,11,19,[[487,1,1,11,12],[494,1,1,12,13],[504,1,1,13,14],[508,2,2,14,16],[533,1,1,16,17],[560,1,1,17,18],[596,1,1,18,19]]],[19,9,8,19,27,[[628,2,2,19,21],[629,2,2,21,23],[634,1,1,23,24],[637,1,1,24,25],[640,1,1,25,26],[654,2,1,26,27]]],[21,1,1,27,28,[[677,1,1,27,28]]],[23,1,1,28,29,[[760,1,1,28,29]]],[25,1,1,29,30,[[808,1,1,29,30]]],[27,1,1,30,31,[[874,1,1,30,31]]]],[1556,1557,5873,13099,13194,13223,13264,13352,13374,13431,13437,14049,14117,14290,14350,14351,14761,15244,15909,16411,16418,16434,16440,16576,16670,16769,17185,17640,19353,20599,22278]]],["esteemed",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13431]]],["hid",[8,8,[[1,1,1,0,1,[[51,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]],[17,2,2,2,4,[[445,1,1,2,3],[452,1,1,3,4]]],[18,2,2,4,6,[[494,1,1,4,5],[596,1,1,5,6]]],[23,1,1,6,7,[[760,1,1,6,7]]],[27,1,1,7,8,[[874,1,1,7,8]]]],[1556,5873,13099,13264,14117,15909,19353,22278]]],["hidden",[2,2,[[17,2,2,0,2,[[450,1,1,0,1],[459,1,1,1,2]]]],[13223,13437]]],["hide",[5,5,[[1,1,1,0,1,[[51,1,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[18,2,2,2,4,[[504,1,1,2,3],[533,1,1,3,4]]],[19,1,1,4,5,[[629,1,1,4,5]]]],[1557,13194,14290,14761,16434]]],["hideth",[2,1,[[19,2,1,0,1,[[654,2,1,0,1]]]],[17185]]],["ones",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15244]]],["places",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13352]]],["privily",[2,2,[[19,2,2,0,2,[[628,2,2,0,2]]]],[16411,16418]]],["secret",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20599]]],["secretly",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14351]]],["set",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14049]]],["up",[7,7,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,1,1,1,2,[[508,1,1,1,2]]],[19,4,4,2,6,[[629,1,1,2,3],[634,1,1,3,4],[637,1,1,4,5],[640,1,1,5,6]]],[21,1,1,6,7,[[677,1,1,6,7]]]],[13374,14350,16440,16576,16670,16769,17640]]]]},{"k":"H6846","v":[["Zephaniah",[10,10,[[11,1,1,0,1,[[337,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]],[23,5,5,2,7,[[765,1,1,2,3],[773,2,2,3,5],[781,1,1,5,6],[796,1,1,6,7]]],[35,1,1,7,8,[[906,1,1,7,8]]],[37,2,2,8,10,[[916,2,2,8,10]]]],[10240,10490,19441,19660,19664,19877,20300,22788,22957,22961]]]]},{"k":"H6847","v":[["Zaphnathpaaneah",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1240]]]]},{"k":"H6848","v":[["*",[5,5,[[19,1,1,0,1,[[650,1,1,0,1]]],[22,3,3,1,4,[[689,1,1,1,2],[692,1,1,2,3],[737,1,1,3,4]]],[23,1,1,4,5,[[752,1,1,4,5]]]],[17076,17892,17957,18805,19170]]],["adder",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17076]]],["cockatrice",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17957]]],["cockatrice'",[2,2,[[22,2,2,0,2,[[689,1,1,0,1],[737,1,1,1,2]]]],[17892,18805]]],["cockatrices",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19170]]]]},{"k":"H6849","v":[["issue",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18076]]]]},{"k":"H6850","v":[["*",[4,4,[[22,4,4,0,4,[[686,1,1,0,1],[688,1,1,1,2],[707,1,1,2,3],[716,1,1,3,4]]]],[17826,17864,18197,18404]]],["chatter",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18404]]],["peep",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17826]]],["peeped",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17864]]],["whisper",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18197]]]]},{"k":"H6851","v":[["tree",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20830]]]]},{"k":"H6852","v":[["early",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6697]]]]},{"k":"H6853","v":[["*",[4,4,[[26,4,4,0,4,[[853,4,4,0,4]]]],[21849,21851,21858,21870]]],["birds'",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21870]]],["fowls",[3,3,[[26,3,3,0,3,[[853,3,3,0,3]]]],[21849,21851,21858]]]]},{"k":"H6854","v":[["*",[13,13,[[1,11,11,0,11,[[57,11,11,0,11]]],[18,2,2,11,13,[[555,1,1,11,12],[582,1,1,12,13]]]],[1712,1713,1714,1715,1716,1717,1718,1719,1721,1722,1723,15158,15636]]],["+",[2,2,[[1,1,1,0,1,[[57,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[1713,15636]]],["frogs",[11,11,[[1,10,10,0,10,[[57,10,10,0,10]]],[18,1,1,10,11,[[555,1,1,10,11]]]],[1712,1714,1715,1716,1717,1718,1719,1721,1722,1723,15158]]]]},{"k":"H6855","v":[["Zipporah",[3,3,[[1,3,3,0,3,[[51,1,1,0,1],[53,1,1,1,2],[67,1,1,2,3]]]],[1575,1626,2001]]]]},{"k":"H6856","v":[["*",[2,2,[[4,1,1,0,1,[[173,1,1,0,1]]],[23,1,1,1,2,[[761,1,1,1,2]]]],[5459,19358]]],["nails",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5459]]],["point",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19358]]]]},{"k":"H6857","v":[["Zephath",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6526]]]]},{"k":"H6858","v":[["chapiter",[1,1,[[13,1,1,0,1,[[369,1,1,0,1]]]],[11244]]]]},{"k":"H6859","v":[["Zephathah",[1,1,[[13,1,1,0,1,[[380,1,1,0,1]]]],[11485]]]]},{"k":"H6860","v":[["Ziklag",[15,12,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]],[8,7,4,2,6,[[262,2,1,2,3],[265,5,3,3,6]]],[9,2,2,6,8,[[267,1,1,6,7],[270,1,1,7,8]]],[12,3,3,8,11,[[341,1,1,8,9],[349,2,2,9,11]]],[15,1,1,11,12,[[423,1,1,11,12]]]],[6233,6326,7936,7979,7992,8004,8023,8130,10415,10721,10740,12616]]]]},{"k":"H6861","v":[["husk",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9645]]]]},{"k":"H6862","v":[["*",[109,106,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,3,3,1,4,[[126,1,1,1,2],[138,1,1,2,3],[140,1,1,3,4]]],[4,5,5,4,9,[[156,1,1,4,5],[184,3,3,5,8],[185,1,1,8,9]]],[5,1,1,9,10,[[191,1,1,9,10]]],[6,1,1,10,11,[[221,1,1,10,11]]],[8,1,1,11,12,[[237,1,1,11,12]]],[9,3,3,12,15,[[288,1,1,12,13],[290,2,2,13,15]]],[11,1,1,15,16,[[318,1,1,15,16]]],[12,2,2,16,18,[[349,1,1,16,17],[358,1,1,17,18]]],[13,1,1,18,19,[[381,1,1,18,19]]],[14,1,1,19,20,[[406,1,1,19,20]]],[15,3,2,20,22,[[416,1,1,20,21],[421,2,1,21,22]]],[16,2,2,22,24,[[432,2,2,22,24]]],[17,8,8,24,32,[[441,1,1,24,25],[442,1,1,25,26],[450,1,1,26,27],[451,1,1,27,28],[454,1,1,28,29],[471,1,1,29,30],[473,1,1,30,31],[476,1,1,31,32]]],[18,40,40,32,72,[[480,1,1,32,33],[481,1,1,33,34],[490,1,1,34,35],[495,1,1,35,36],[504,2,2,36,38],[508,1,1,38,39],[509,1,1,39,40],[521,3,3,40,43],[536,1,1,43,44],[537,2,2,44,46],[543,1,1,46,47],[546,1,1,47,48],[551,1,1,48,49],[555,3,3,49,52],[558,1,1,52,53],[566,2,2,53,55],[574,1,1,55,56],[579,1,1,56,57],[582,1,1,57,58],[583,2,2,58,60],[584,5,5,60,65],[585,2,2,65,67],[589,1,1,67,68],[596,3,3,68,71],[613,1,1,71,72]]],[19,2,2,72,74,[[650,1,1,72,73],[651,1,1,73,74]]],[22,13,13,74,87,[[679,1,1,74,75],[683,1,1,75,76],[687,1,1,76,77],[703,1,1,77,78],[704,2,2,78,80],[708,1,1,80,81],[727,1,1,81,82],[737,2,2,82,84],[741,2,2,84,86],[742,1,1,86,87]]],[23,4,4,87,91,[[774,1,1,87,88],[790,1,1,88,89],[792,1,1,89,90],[794,1,1,90,91]]],[24,10,8,91,99,[[797,7,5,91,96],[798,2,2,96,98],[800,1,1,98,99]]],[25,2,2,99,101,[[831,1,1,99,100],[840,1,1,100,101]]],[27,1,1,101,102,[[866,1,1,101,102]]],[29,1,1,102,103,[[881,1,1,102,103]]],[32,1,1,103,104,[[897,1,1,103,104]]],[33,1,1,104,105,[[900,1,1,104,105]]],[37,1,1,105,106,[[918,1,1,105,106]]]],[356,3997,4401,4454,5034,5785,5799,5801,5817,5947,6836,7272,8609,8705,8706,9675,10737,10946,11494,12111,12370,12538,12811,12813,13001,13019,13227,13247,13308,13752,13816,13903,13958,13966,14078,14124,14287,14297,14340,14362,14576,14578,14581,14806,14818,14819,14887,14952,15058,15155,15174,15179,15231,15349,15368,15481,15523,15630,15662,15695,15701,15705,15712,15718,15727,15754,15755,15811,16037,16041,16055,16220,17071,17089,17678,17769,17840,18122,18141,18146,18237,18656,18818,18819,18875,18884,18887,19683,20055,20085,20173,20315,20317,20320,20327,20330,20336,20349,20432,21220,21471,22167,22406,22642,22686,22986]]],["+",[12,12,[[4,1,1,0,1,[[185,1,1,0,1]]],[16,1,1,1,2,[[432,1,1,1,2]]],[17,2,2,2,4,[[441,1,1,2,3],[471,1,1,3,4]]],[18,6,6,4,10,[[509,1,1,4,5],[521,1,1,5,6],[537,1,1,6,7],[582,1,1,7,8],[585,1,1,8,9],[613,1,1,9,10]]],[22,1,1,10,11,[[679,1,1,10,11]]],[23,1,1,11,12,[[790,1,1,11,12]]]],[5817,12813,13001,13752,14362,14578,14818,15630,15754,16220,17678,20055]]],["Trouble",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[13227,16041]]],["adversaries",[19,19,[[4,2,2,0,2,[[184,2,2,0,2]]],[5,1,1,2,3,[[191,1,1,2,3]]],[14,1,1,3,4,[[406,1,1,3,4]]],[15,1,1,4,5,[[416,1,1,4,5]]],[18,2,2,5,7,[[558,1,1,5,6],[566,1,1,6,7]]],[22,4,4,7,11,[[687,1,1,7,8],[737,1,1,8,9],[741,1,1,9,10],[742,1,1,10,11]]],[23,2,2,11,13,[[774,1,1,11,12],[794,1,1,12,13]]],[24,4,4,13,17,[[797,3,3,13,16],[798,1,1,16,17]]],[32,1,1,17,18,[[897,1,1,17,18]]],[33,1,1,18,19,[[900,1,1,18,19]]]],[5785,5801,5947,12111,12370,15231,15368,17840,18818,18884,18887,19683,20173,20315,20317,20327,20349,22642,22686]]],["adversary",[5,5,[[18,1,1,0,1,[[551,1,1,0,1]]],[24,3,3,1,4,[[797,1,1,1,2],[798,1,1,2,3],[800,1,1,3,4]]],[29,1,1,4,5,[[881,1,1,4,5]]]],[15058,20320,20336,20432,22406]]],["adversity",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18237]]],["afflicted",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18875]]],["affliction",[3,3,[[18,1,1,0,1,[[583,1,1,0,1]]],[27,1,1,1,2,[[866,1,1,1,2]]],[37,1,1,2,3,[[918,1,1,2,3]]]],[15695,22167,22986]]],["anguish",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13019]]],["close",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13903]]],["distress",[6,6,[[6,1,1,0,1,[[221,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,2,2,2,4,[[481,1,1,2,3],[495,1,1,3,4]]],[22,1,1,4,5,[[703,1,1,4,5]]],[24,1,1,5,6,[[797,1,1,5,6]]]],[6836,8609,13966,14124,18122,20330]]],["distresses",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21220]]],["enemies",[22,21,[[0,1,1,0,1,[[13,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[9,1,1,3,4,[[290,1,1,3,4]]],[12,1,1,4,5,[[349,1,1,4,5]]],[15,2,1,5,6,[[421,2,1,5,6]]],[17,1,1,6,7,[[454,1,1,6,7]]],[18,11,11,7,18,[[504,2,2,7,9],[521,1,1,9,10],[537,1,1,10,11],[555,1,1,11,12],[574,1,1,12,13],[583,1,1,13,14],[585,1,1,14,15],[589,1,1,15,16],[596,2,2,16,18]]],[22,1,1,18,19,[[704,1,1,18,19]]],[23,1,1,19,20,[[792,1,1,19,20]]],[25,1,1,20,21,[[840,1,1,20,21]]]],[356,4454,5799,8705,10737,12538,13308,14287,14297,14576,14819,15179,15481,15662,15755,15811,16037,16055,18141,20085,21471]]],["enemy",[10,10,[[3,1,1,0,1,[[126,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[16,1,1,2,3,[[432,1,1,2,3]]],[17,1,1,3,4,[[451,1,1,3,4]]],[18,3,3,4,7,[[521,1,1,4,5],[555,1,1,5,6],[584,1,1,6,7]]],[22,1,1,7,8,[[737,1,1,7,8]]],[24,2,2,8,10,[[797,2,2,8,10]]]],[3997,7272,12811,13247,14581,15155,15701,18819,20315,20317]]],["enemy's",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15174]]],["foes",[2,2,[[12,1,1,0,1,[[358,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]]],[10946,15349]]],["narrow",[2,2,[[3,1,1,0,1,[[138,1,1,0,1]]],[19,1,1,1,2,[[650,1,1,1,2]]]],[4401,17071]]],["small",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17089]]],["sorrow",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17769]]],["strait",[3,3,[[9,1,1,0,1,[[290,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]],[22,1,1,2,3,[[727,1,1,2,3]]]],[8706,9675,18656]]],["tribulation",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5034]]],["trouble",[14,14,[[13,1,1,0,1,[[381,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]],[18,11,11,2,13,[[480,1,1,2,3],[490,1,1,3,4],[508,1,1,4,5],[536,1,1,5,6],[543,1,1,6,7],[546,1,1,7,8],[579,1,1,8,9],[584,4,4,9,13]]],[22,1,1,13,14,[[704,1,1,13,14]]]],[11494,13816,13958,14078,14340,14806,14887,14952,15523,15705,15712,15718,15727,18146]]]]},{"k":"H6863","v":[["Zer",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6356]]]]},{"k":"H6864","v":[["*",[5,5,[[1,1,1,0,1,[[53,1,1,0,1]]],[5,2,2,1,3,[[191,2,2,1,3]]],[22,1,1,3,4,[[683,1,1,3,4]]],[25,1,1,4,5,[[804,1,1,4,5]]]],[1626,5936,5937,17767,20511]]],["+",[1,1,[[25,1,1,0,1,[[804,1,1,0,1]]]],[20511]]],["flint",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17767]]],["sharp",[2,2,[[5,2,2,0,2,[[191,2,2,0,2]]]],[5936,5937]]],["stone",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1626]]]]},{"k":"H6865","v":[["*",[42,39,[[5,1,1,0,1,[[205,1,1,0,1]]],[9,2,2,1,3,[[271,1,1,1,2],[290,1,1,2,3]]],[10,4,4,3,7,[[295,1,1,3,4],[297,1,1,4,5],[299,2,2,5,7]]],[12,1,1,7,8,[[351,1,1,7,8]]],[13,2,2,8,10,[[368,2,2,8,10]]],[18,3,3,10,13,[[522,1,1,10,11],[560,1,1,11,12],[564,1,1,12,13]]],[22,6,5,13,18,[[701,6,5,13,18]]],[23,3,3,18,21,[[769,1,1,18,19],[771,1,1,19,20],[791,1,1,20,21]]],[25,14,12,21,33,[[827,5,5,21,26],[828,5,4,26,30],[829,2,2,30,32],[830,2,1,32,33]]],[27,1,1,33,34,[[870,1,1,33,34]]],[28,1,1,34,35,[[878,1,1,34,35]]],[29,2,2,35,37,[[879,2,2,35,37]]],[37,2,2,37,39,[[919,2,2,37,39]]]],[6350,8143,8699,8879,8947,9062,9063,10775,11214,11222,14609,15248,15305,18078,18082,18085,18092,18094,19556,19599,20077,21102,21103,21104,21107,21115,21123,21124,21129,21153,21159,21169,21201,22221,22347,22373,22374,23001,23002]]],["+",[3,3,[[10,2,2,0,2,[[297,1,1,0,1],[299,1,1,1,2]]],[25,1,1,2,3,[[830,1,1,2,3]]]],[8947,9063,21201]]],["Tyre",[18,17,[[5,1,1,0,1,[[205,1,1,0,1]]],[9,2,2,1,3,[[271,1,1,1,2],[290,1,1,2,3]]],[10,2,2,3,5,[[295,1,1,3,4],[299,1,1,4,5]]],[12,1,1,5,6,[[351,1,1,5,6]]],[13,2,2,6,8,[[368,2,2,6,8]]],[18,3,3,8,11,[[522,1,1,8,9],[560,1,1,9,10],[564,1,1,10,11]]],[22,6,5,11,16,[[701,6,5,11,16]]],[28,1,1,16,17,[[878,1,1,16,17]]]],[6350,8143,8699,8879,9062,10775,11214,11222,14609,15248,15305,18078,18082,18085,18092,18094,22347]]],["Tyrus",[21,20,[[23,3,3,0,3,[[769,1,1,0,1],[771,1,1,1,2],[791,1,1,2,3]]],[25,13,12,3,15,[[827,5,5,3,8],[828,5,4,8,12],[829,2,2,12,14],[830,1,1,14,15]]],[27,1,1,15,16,[[870,1,1,15,16]]],[29,2,2,16,18,[[879,2,2,16,18]]],[37,2,2,18,20,[[919,2,2,18,20]]]],[19556,19599,20077,21102,21103,21104,21107,21115,21123,21124,21129,21153,21159,21169,21201,22221,22373,22374,23001,23002]]]]},{"k":"H6866","v":[["burned",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20942]]]]},{"k":"H6867","v":[["*",[3,3,[[2,2,2,0,2,[[102,2,2,0,2]]],[19,1,1,2,3,[[643,1,1,2,3]]]],[3075,3080,16867]]],["burning",[2,2,[[2,1,1,0,1,[[102,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]]],[3075,16867]]],["inflammation",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3080]]]]},{"k":"H6868","v":[["*",[2,2,[[10,1,1,0,1,[[301,1,1,0,1]]],[13,1,1,1,2,[[370,1,1,1,2]]]],[9134,11263]]],["Zereda",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9134]]],["Zeredathah",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11263]]]]},{"k":"H6869","v":[["*",[73,72,[[0,3,2,0,2,[[34,1,1,0,1],[41,2,1,1,2]]],[4,2,2,2,4,[[183,2,2,2,4]]],[6,1,1,4,5,[[220,1,1,4,5]]],[8,3,3,5,8,[[236,1,1,5,6],[245,1,1,6,7],[261,1,1,7,8]]],[9,1,1,8,9,[[270,1,1,8,9]]],[10,1,1,9,10,[[291,1,1,9,10]]],[11,1,1,10,11,[[331,1,1,10,11]]],[13,2,2,11,13,[[381,1,1,11,12],[386,1,1,12,13]]],[15,2,2,13,15,[[421,2,2,13,15]]],[17,2,2,15,17,[[440,1,1,15,16],[462,1,1,16,17]]],[18,24,24,17,41,[[486,1,1,17,18],[487,1,1,18,19],[497,1,1,19,20],[499,1,1,20,21],[502,2,2,21,23],[508,1,1,23,24],[511,2,2,24,26],[514,1,1,26,27],[523,1,1,27,28],[527,1,1,28,29],[531,1,1,29,30],[548,1,1,30,31],[554,1,1,31,32],[555,1,1,32,33],[558,1,1,33,34],[563,1,1,34,35],[568,1,1,35,36],[593,1,1,36,37],[597,1,1,37,38],[615,1,1,38,39],[619,1,1,39,40],[620,1,1,40,41]]],[19,7,7,41,48,[[628,1,1,41,42],[638,1,1,42,43],[639,1,1,43,44],[644,1,1,44,45],[648,1,1,45,46],[651,1,1,46,47],[652,1,1,47,48]]],[22,7,7,48,55,[[686,1,1,48,49],[708,1,1,49,50],[711,1,1,50,51],[715,1,1,51,52],[724,1,1,52,53],[741,1,1,53,54],[743,1,1,54,55]]],[23,8,8,55,63,[[748,1,1,55,56],[750,1,1,56,57],[758,1,1,57,58],[759,1,1,58,59],[760,1,1,59,60],[774,1,1,60,61],[793,1,1,61,62],[794,1,1,62,63]]],[26,1,1,63,64,[[861,1,1,63,64]]],[30,2,2,64,66,[[888,2,2,64,66]]],[31,1,1,66,67,[[890,1,1,66,67]]],[33,2,2,67,69,[[900,2,2,67,69]]],[34,1,1,69,70,[[905,1,1,69,70]]],[35,1,1,70,71,[[906,1,1,70,71]]],[37,1,1,71,72,[[920,1,1,71,72]]]],[1014,1273,5745,5749,6825,7218,7437,7929,8129,8746,10064,11496,11596,12538,12548,12970,13490,14030,14042,14183,14215,14268,14273,14338,14394,14405,14489,14615,14683,14732,14996,15095,15162,15224,15291,15410,15851,16075,16238,16288,16304,16427,16696,16732,16890,17007,17089,17132,17829,18223,18281,18355,18593,18875,18913,19058,19113,19301,19326,19355,19674,20151,20209,22082,22522,22524,22550,22691,22693,22784,22802,23027]]],["+",[7,7,[[13,1,1,0,1,[[386,1,1,0,1]]],[18,1,1,1,2,[[620,1,1,1,2]]],[19,3,3,2,5,[[638,1,1,2,3],[639,1,1,3,4],[648,1,1,4,5]]],[22,1,1,5,6,[[724,1,1,5,6]]],[31,1,1,6,7,[[890,1,1,6,7]]]],[11596,16304,16696,16732,17007,18593,22550]]],["adversary",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7218]]],["adversities",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14338]]],["adversity",[4,4,[[9,1,1,0,1,[[270,1,1,0,1]]],[13,1,1,1,2,[[381,1,1,1,2]]],[19,2,2,2,4,[[644,1,1,2,3],[651,1,1,3,4]]]],[8129,11496,16890,17089]]],["affliction",[5,5,[[22,1,1,0,1,[[741,1,1,0,1]]],[23,2,2,1,3,[[759,1,1,1,2],[760,1,1,2,3]]],[33,1,1,3,4,[[900,1,1,3,4]]],[37,1,1,4,5,[[920,1,1,4,5]]]],[18875,19326,19355,22693,23027]]],["anguish",[5,5,[[0,1,1,0,1,[[41,1,1,0,1]]],[23,4,4,1,5,[[748,1,1,1,2],[750,1,1,2,3],[793,1,1,3,4],[794,1,1,4,5]]]],[1273,19058,19113,20151,20209]]],["distress",[8,8,[[0,2,2,0,2,[[34,1,1,0,1],[41,1,1,1,2]]],[10,1,1,2,3,[[291,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[18,1,1,4,5,[[597,1,1,4,5]]],[19,1,1,5,6,[[628,1,1,5,6]]],[30,2,2,6,8,[[888,2,2,6,8]]]],[1014,1273,8746,12548,16075,16427,22522,22524]]],["tribulation",[2,2,[[6,1,1,0,1,[[220,1,1,0,1]]],[8,1,1,1,2,[[261,1,1,1,2]]]],[6825,7929]]],["tribulations",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7437]]],["trouble",[30,30,[[11,1,1,0,1,[[331,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[17,1,1,2,3,[[462,1,1,2,3]]],[18,16,16,3,19,[[486,1,1,3,4],[487,1,1,4,5],[497,1,1,5,6],[499,1,1,6,7],[514,1,1,7,8],[523,1,1,8,9],[527,1,1,9,10],[531,1,1,10,11],[554,1,1,11,12],[555,1,1,12,13],[558,1,1,13,14],[563,1,1,14,15],[568,1,1,15,16],[593,1,1,16,17],[615,1,1,17,18],[619,1,1,18,19]]],[19,1,1,19,20,[[652,1,1,19,20]]],[22,4,4,20,24,[[686,1,1,20,21],[708,1,1,21,22],[711,1,1,22,23],[715,1,1,23,24]]],[23,2,2,24,26,[[758,1,1,24,25],[774,1,1,25,26]]],[26,1,1,26,27,[[861,1,1,26,27]]],[33,1,1,27,28,[[900,1,1,27,28]]],[34,1,1,28,29,[[905,1,1,28,29]]],[35,1,1,29,30,[[906,1,1,29,30]]]],[10064,12538,13490,14030,14042,14183,14215,14489,14615,14683,14732,15095,15162,15224,15291,15410,15851,16238,16288,17132,17829,18223,18281,18355,19301,19674,22082,22691,22784,22802]]],["troubles",[9,9,[[4,2,2,0,2,[[183,2,2,0,2]]],[17,1,1,2,3,[[440,1,1,2,3]]],[18,5,5,3,8,[[502,2,2,3,5],[511,2,2,5,7],[548,1,1,7,8]]],[22,1,1,8,9,[[743,1,1,8,9]]]],[5745,5749,12970,14268,14273,14394,14405,14996,18913]]]]},{"k":"H6870","v":[["Zeruiah",[26,25,[[8,1,1,0,1,[[261,1,1,0,1]]],[9,14,14,1,15,[[268,2,2,1,3],[269,1,1,3,4],[274,1,1,4,5],[280,1,1,5,6],[282,2,2,6,8],[283,1,1,8,9],[284,1,1,9,10],[285,2,2,10,12],[287,1,1,12,13],[289,2,2,13,15]]],[10,3,3,15,18,[[291,1,1,15,16],[292,2,2,16,18]]],[12,8,7,18,25,[[339,2,1,18,19],[348,2,2,19,21],[355,2,2,21,23],[363,1,1,23,24],[364,1,1,24,25]]]],[7911,8062,8067,8120,8225,8357,8435,8436,8474,8480,8532,8533,8597,8671,8690,8724,8775,8792,10322,10679,10712,10902,10905,11105,11133]]]]},{"k":"H6871","v":[["Zeruah",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9134]]]]},{"k":"H6872","v":[["*",[10,9,[[0,2,1,0,1,[[41,2,1,0,1]]],[8,2,2,1,3,[[244,1,1,1,2],[260,1,1,2,3]]],[9,1,1,3,4,[[283,1,1,3,4]]],[17,1,1,4,5,[[449,1,1,4,5]]],[19,1,1,5,6,[[634,1,1,5,6]]],[21,1,1,6,7,[[671,1,1,6,7]]],[29,1,1,7,8,[[887,1,1,7,8]]],[36,1,1,8,9,[[909,1,1,8,9]]]],[1287,7392,7890,8462,13198,16595,17550,22504,22846]]],["Zeror",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7392]]],["bag",[3,3,[[17,1,1,0,1,[[449,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]],[36,1,1,2,3,[[909,1,1,2,3]]]],[13198,16595,22846]]],["bundle",[3,3,[[0,1,1,0,1,[[41,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]],[21,1,1,2,3,[[671,1,1,2,3]]]],[1287,7890,17550]]],["bundles",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1287]]],["grain",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22504]]],["stone",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8462]]]]},{"k":"H6873","v":[["*",[2,2,[[22,1,1,0,1,[[720,1,1,0,1]]],[35,1,1,1,2,[[906,1,1,1,2]]]],[18493,22801]]],["cry",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22801]]],["roar",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18493]]]]},{"k":"H6874","v":[["Zeri",[1,1,[[12,1,1,0,1,[[362,1,1,0,1]]]],[11049]]]]},{"k":"H6875","v":[["balm",[6,6,[[0,2,2,0,2,[[36,1,1,0,1],[42,1,1,1,2]]],[23,3,3,2,5,[[752,1,1,2,3],[790,1,1,3,4],[795,1,1,4,5]]],[25,1,1,5,6,[[828,1,1,5,6]]]],[1108,1301,19175,20056,20220,21138]]]]},{"k":"H6876","v":[["Tyre",[5,5,[[10,1,1,0,1,[[297,1,1,0,1]]],[12,1,1,1,2,[[359,1,1,1,2]]],[13,1,1,2,3,[[368,1,1,2,3]]],[14,1,1,3,4,[[405,1,1,3,4]]],[15,1,1,4,5,[[425,1,1,4,5]]]],[8948,10968,11225,12104,12687]]]]},{"k":"H6877","v":[["*",[4,3,[[6,3,2,0,2,[[219,3,2,0,2]]],[8,1,1,2,3,[[248,1,1,2,3]]]],[6800,6803,7491]]],["hold",[3,2,[[6,3,2,0,2,[[219,3,2,0,2]]]],[6800,6803]]],["places",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7491]]]]},{"k":"H6878","v":[["need",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11227]]]]},{"k":"H6879","v":[["*",[20,18,[[1,1,1,0,1,[[53,1,1,0,1]]],[2,5,5,1,6,[[102,2,2,1,3],[103,2,2,3,5],[111,1,1,5,6]]],[3,3,2,6,8,[[121,1,1,6,7],[128,2,1,7,8]]],[9,1,1,8,9,[[269,1,1,8,9]]],[11,6,6,9,15,[[317,3,3,9,12],[319,2,2,12,14],[327,1,1,14,15]]],[13,4,3,15,18,[[392,4,3,15,18]]]],[1607,3096,3097,3113,3114,3373,3794,4069,8110,9648,9658,9674,9710,9715,9930,11752,11753,11755]]],["leper",[13,12,[[2,4,4,0,4,[[102,1,1,0,1],[103,2,2,1,3],[111,1,1,3,4]]],[3,1,1,4,5,[[121,1,1,4,5]]],[9,1,1,5,6,[[269,1,1,5,6]]],[11,4,4,6,10,[[317,3,3,6,9],[327,1,1,9,10]]],[13,3,2,10,12,[[392,3,2,10,12]]]],[3097,3113,3114,3373,3794,8110,9648,9658,9674,9930,11753,11755]]],["lepers",[1,1,[[11,1,1,0,1,[[319,1,1,0,1]]]],[9715]]],["leprous",[6,5,[[1,1,1,0,1,[[53,1,1,0,1]]],[2,1,1,1,2,[[102,1,1,1,2]]],[3,2,1,2,3,[[128,2,1,2,3]]],[11,1,1,3,4,[[319,1,1,3,4]]],[13,1,1,4,5,[[392,1,1,4,5]]]],[1607,3096,4069,9710,11752]]]]},{"k":"H6880","v":[["*",[3,3,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,1,1,1,2,[[159,1,1,1,2]]],[5,1,1,2,3,[[210,1,1,2,3]]]],[2172,5131,6488]]],["hornet",[2,2,[[4,1,1,0,1,[[159,1,1,0,1]]],[5,1,1,1,2,[[210,1,1,1,2]]]],[5131,6488]]],["hornets",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2172]]]]},{"k":"H6881","v":[["*",[10,10,[[5,2,2,0,2,[[201,1,1,0,1],[205,1,1,1,2]]],[6,6,6,2,8,[[223,2,2,2,4],[226,1,1,4,5],[228,3,3,5,8]]],[13,1,1,8,9,[[377,1,1,8,9]]],[15,1,1,9,10,[[423,1,1,9,10]]]],[6235,6362,6886,6909,6980,6995,7001,7004,11424,12617]]],["+",[3,3,[[6,3,3,0,3,[[223,1,1,0,1],[228,2,2,1,3]]]],[6886,6995,7004]]],["Zareah",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12617]]],["Zorah",[5,5,[[5,1,1,0,1,[[205,1,1,0,1]]],[6,3,3,1,4,[[223,1,1,1,2],[226,1,1,2,3],[228,1,1,3,4]]],[13,1,1,4,5,[[377,1,1,4,5]]]],[6362,6909,6980,7001,11424]]],["Zoreah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6235]]]]},{"k":"H6882","v":[["*",[3,3,[[12,3,3,0,3,[[339,2,2,0,2],[341,1,1,2,3]]]],[10359,10360,10387]]],["Zareathites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10359]]],["Zorathites",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10387]]],["Zorites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10360]]]]},{"k":"H6883","v":[["*",[35,33,[[2,29,27,0,27,[[102,21,19,0,19],[103,8,8,19,27]]],[4,1,1,27,28,[[176,1,1,27,28]]],[11,4,4,28,32,[[317,4,4,28,32]]],[13,1,1,32,33,[[392,1,1,32,33]]]],[3054,3055,3060,3061,3063,3064,3065,3067,3072,3077,3079,3082,3094,3095,3099,3101,3103,3104,3111,3114,3118,3143,3145,3155,3165,3166,3168,5533,9650,9653,9654,9674,11751]]],["+",[3,3,[[11,3,3,0,3,[[317,3,3,0,3]]]],[9650,9653,9654]]],["leprosy",[32,30,[[2,29,27,0,27,[[102,21,19,0,19],[103,8,8,19,27]]],[4,1,1,27,28,[[176,1,1,27,28]]],[11,1,1,28,29,[[317,1,1,28,29]]],[13,1,1,29,30,[[392,1,1,29,30]]]],[3054,3055,3060,3061,3063,3064,3065,3067,3072,3077,3079,3082,3094,3095,3099,3101,3103,3104,3111,3114,3118,3143,3145,3155,3165,3166,3168,5533,9674,11751]]]]},{"k":"H6884","v":[["*",[33,29,[[6,2,2,0,2,[[217,1,1,0,1],[227,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[15,2,2,3,5,[[415,2,2,3,5]]],[18,8,7,5,12,[[489,1,1,5,6],[494,1,1,6,7],[495,1,1,7,8],[503,1,1,8,9],[543,2,1,9,10],[582,1,1,10,11],[596,1,1,11,12]]],[19,2,2,12,14,[[652,1,1,12,13],[657,1,1,13,14]]],[22,6,5,14,19,[[679,1,1,14,15],[718,2,1,15,16],[719,1,1,16,17],[724,1,1,17,18],[726,1,1,18,19]]],[23,6,5,19,24,[[750,2,1,19,20],[753,1,1,20,21],[754,2,2,21,23],[795,1,1,23,24]]],[26,2,2,24,26,[[860,1,1,24,25],[861,1,1,25,26]]],[37,2,1,26,27,[[923,2,1,26,27]]],[38,2,2,27,29,[[927,2,2,27,29]]]],[6698,6984,8633,12335,12359,14072,14106,14148,14275,14883,15625,16038,17117,17256,17679,18439,18458,18592,18624,19118,19182,19210,19215,20229,22071,22091,23068,23122,23123]]],["away",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17679]]],["casteth",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18439]]],["finer",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17117]]],["founder",[5,5,[[6,1,1,0,1,[[227,1,1,0,1]]],[23,4,4,1,5,[[750,1,1,1,2],[754,2,2,2,4],[795,1,1,4,5]]]],[6984,19118,19210,19215,20229]]],["goldsmith",[3,3,[[22,3,3,0,3,[[718,1,1,0,1],[719,1,1,1,2],[724,1,1,2,3]]]],[18439,18458,18592]]],["goldsmiths",[2,2,[[15,2,2,0,2,[[415,2,2,0,2]]]],[12335,12359]]],["melt",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19182]]],["melteth",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19118]]],["pure",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[16038,17256]]],["refine",[1,1,[[37,1,1,0,1,[[923,1,1,0,1]]]],[23068]]],["refined",[2,2,[[22,1,1,0,1,[[726,1,1,0,1]]],[37,1,1,1,2,[[923,1,1,1,2]]]],[18624,23068]]],["refiner",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23123]]],["refiner's",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23122]]],["tried",[8,7,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,6,5,1,6,[[489,1,1,1,2],[494,1,1,2,3],[495,1,1,3,4],[543,2,1,4,5],[582,1,1,5,6]]],[26,1,1,6,7,[[861,1,1,6,7]]]],[8633,14072,14106,14148,14883,15625,22091]]],["try",[3,3,[[6,1,1,0,1,[[217,1,1,0,1]]],[18,1,1,1,2,[[503,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[6698,14275,22071]]]]},{"k":"H6885","v":[["goldsmith's",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12358]]]]},{"k":"H6886","v":[["Zarephath",[3,3,[[10,2,2,0,2,[[307,2,2,0,2]]],[30,1,1,2,3,[[888,1,1,2,3]]]],[9326,9327,22530]]]]},{"k":"H6887","v":[["*",[54,52,[[1,2,2,0,2,[[61,1,1,0,1],[72,1,1,1,2]]],[2,1,1,2,3,[[107,1,1,2,3]]],[3,4,4,3,7,[[126,1,1,3,4],[141,2,2,4,6],[149,1,1,6,7]]],[4,2,1,7,8,[[180,2,1,7,8]]],[5,1,1,8,9,[[195,1,1,8,9]]],[8,3,3,9,12,[[248,1,1,9,10],[260,1,1,10,11],[263,1,1,11,12]]],[9,3,3,12,15,[[267,1,1,12,13],[279,1,1,13,14],[286,1,1,14,15]]],[10,1,1,15,16,[[298,1,1,15,16]]],[12,1,1,16,17,[[358,1,1,16,17]]],[13,3,3,17,20,[[372,1,1,17,18],[394,1,1,18,19],[399,1,1,19,20]]],[15,1,1,20,21,[[421,1,1,20,21]]],[16,4,4,21,25,[[428,1,1,21,22],[433,1,1,22,23],[434,2,2,23,25]]],[17,1,1,25,26,[[461,1,1,25,26]]],[18,14,14,26,40,[[483,1,1,26,27],[484,2,2,27,29],[485,1,1,29,30],[487,1,1,30,31],[500,1,1,31,32],[508,1,1,32,33],[519,1,1,33,34],[546,1,1,34,35],[551,2,2,35,37],[606,2,2,37,39],[620,1,1,39,40]]],[19,2,2,40,42,[[653,1,1,40,41],[657,1,1,41,42]]],[22,4,3,42,45,[[686,1,1,42,43],[689,2,1,43,44],[706,1,1,44,45]]],[23,3,3,45,48,[[754,1,1,45,46],[792,1,1,46,47],[793,1,1,47,48]]],[27,2,2,48,50,[[865,1,1,48,49],[874,1,1,49,50]]],[29,1,1,50,51,[[883,1,1,50,51]]],[35,1,1,51,52,[[906,1,1,51,52]]]],[1850,2166,3269,3997,4488,4489,4815,5663,6041,7491,7890,7957,8048,8319,8557,9022,10947,11310,11786,11920,12538,12757,12818,12844,12858,13475,13992,13999,14001,14014,14046,14240,14342,14565,14954,15052,15071,16133,16134,16305,17149,17255,17823,17897,18184,19219,20121,20149,22152,22278,22435,22804]]],["+",[4,4,[[3,1,1,0,1,[[141,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]],[22,1,1,2,3,[[689,1,1,2,3]]],[27,1,1,3,4,[[865,1,1,3,4]]]],[4488,10947,17897,22152]]],["adversaries",[3,3,[[1,1,1,0,1,[[72,1,1,0,1]]],[18,1,1,1,2,[[546,1,1,1,2]]],[22,1,1,2,3,[[689,1,1,2,3]]]],[2166,14954,17897]]],["afflict",[2,2,[[18,1,1,0,1,[[620,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[16305,22435]]],["afflicted",[2,2,[[18,2,2,0,2,[[606,2,2,0,2]]]],[16133,16134]]],["affliction",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11920]]],["besiege",[4,3,[[4,2,1,0,1,[[180,2,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[13,1,1,2,3,[[372,1,1,2,3]]]],[5663,9022,11310]]],["bindeth",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17149]]],["bound",[2,2,[[8,1,1,0,1,[[260,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[7890,17255]]],["distress",[3,3,[[13,1,1,0,1,[[394,1,1,0,1]]],[23,1,1,1,2,[[754,1,1,1,2]]],[35,1,1,2,3,[[906,1,1,2,3]]]],[11786,19219,22804]]],["distressed",[2,2,[[8,1,1,0,1,[[263,1,1,0,1]]],[9,1,1,1,2,[[267,1,1,1,2]]]],[7957,8048]]],["enemies",[9,9,[[18,9,9,0,9,[[483,1,1,0,1],[484,1,1,1,2],[485,1,1,2,3],[487,1,1,3,4],[500,1,1,4,5],[508,1,1,5,6],[519,1,1,6,7],[551,2,2,7,9]]]],[13992,14001,14014,14046,14240,14342,14565,15052,15071]]],["enemy",[5,5,[[16,4,4,0,4,[[428,1,1,0,1],[433,1,1,1,2],[434,2,2,2,4]]],[18,1,1,4,5,[[484,1,1,4,5]]]],[12757,12818,12844,12858,13999]]],["narrower",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18184]]],["oppresseth",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[3997]]],["pangs",[2,2,[[23,2,2,0,2,[[792,1,1,0,1],[793,1,1,1,2]]]],[20121,20149]]],["strait",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7491]]],["up",[6,6,[[1,1,1,0,1,[[61,1,1,0,1]]],[5,1,1,1,2,[[195,1,1,1,2]]],[9,1,1,2,3,[[286,1,1,2,3]]],[17,1,1,3,4,[[461,1,1,3,4]]],[22,1,1,4,5,[[686,1,1,4,5]]],[27,1,1,5,6,[[874,1,1,5,6]]]],[1850,6041,8557,13475,17823,22278]]],["vex",[3,3,[[2,1,1,0,1,[[107,1,1,0,1]]],[3,2,2,1,3,[[141,1,1,1,2],[149,1,1,2,3]]]],[3269,4489,4815]]],["vexed",[2,2,[[9,1,1,0,1,[[279,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]]],[8319,12538]]]]},{"k":"H6888","v":[["Zererath",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6716]]]]},{"k":"H6889","v":[["Zereth",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10392]]]]},{"k":"H6890","v":[["Zarethshahar",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6173]]]]},{"k":"H6891","v":[["*",[3,3,[[5,1,1,0,1,[[189,1,1,0,1]]],[10,2,2,1,3,[[294,1,1,1,2],[297,1,1,2,3]]]],[5909,8856,8980]]],["Zaretan",[1,1,[[5,1,1,0,1,[[189,1,1,0,1]]]],[5909]]],["Zartanah",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8856]]],["Zarthan",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8980]]]]},{"k":"H6892","v":[["vomit",[4,4,[[19,1,1,0,1,[[653,1,1,0,1]]],[22,2,2,1,3,[[697,1,1,1,2],[706,1,1,2,3]]],[23,1,1,3,4,[[792,1,1,3,4]]]],[17152,18018,18172,20106]]]]},{"k":"H6893","v":[["*",[5,5,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[18,1,1,2,3,[[579,1,1,2,3]]],[22,1,1,3,4,[[712,1,1,3,4]]],[35,1,1,4,5,[[907,1,1,4,5]]]],[3015,5307,15527,18314,22819]]],["cormorant",[2,2,[[22,1,1,0,1,[[712,1,1,0,1]]],[35,1,1,1,2,[[907,1,1,1,2]]]],[18314,22819]]],["pelican",[3,3,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[18,1,1,2,3,[[579,1,1,2,3]]]],[3015,5307,15527]]]]},{"k":"H6894","v":[["cab",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9699]]]]},{"k":"H6895","v":[["*",[11,9,[[3,10,8,0,8,[[138,2,2,0,2],[139,7,5,2,7],[140,1,1,7,8]]],[19,1,1,8,9,[[638,1,1,8,9]]]],[4386,4392,4424,4427,4429,4441,4443,4456,16714]]],["+",[2,1,[[3,2,1,0,1,[[139,2,1,0,1]]]],[4441]]],["curse",[8,8,[[3,7,7,0,7,[[138,2,2,0,2],[139,4,4,2,6],[140,1,1,6,7]]],[19,1,1,7,8,[[638,1,1,7,8]]]],[4386,4392,4424,4427,4429,4443,4456,16714]]],["cursed",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4424]]]]},{"k":"H6896","v":[["maw",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5387]]]]},{"k":"H6897","v":[["belly",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4479]]]]},{"k":"H6898","v":[["tent",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4479]]]]},{"k":"H6899","v":[["companies",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18778]]]]},{"k":"H6900","v":[["*",[14,13,[[0,3,2,0,2,[[34,2,1,0,1],[46,1,1,1,2]]],[4,1,1,2,3,[[186,1,1,2,3]]],[8,1,1,3,4,[[245,1,1,3,4]]],[11,3,3,4,7,[[321,1,1,4,5],[333,1,1,5,6],[335,1,1,6,7]]],[13,1,1,7,8,[[392,1,1,7,8]]],[20,1,1,8,9,[[664,1,1,8,9]]],[22,1,1,9,10,[[692,1,1,9,10]]],[23,1,1,10,11,[[766,1,1,10,11]]],[25,2,2,11,13,[[833,2,2,11,13]]]],[1031,1450,5845,7420,9784,10145,10195,11755,17420,17948,19473,21271,21272]]],["burial",[4,4,[[13,1,1,0,1,[[392,1,1,0,1]]],[20,1,1,1,2,[[664,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]],[23,1,1,3,4,[[766,1,1,3,4]]]],[11755,17420,17948,19473]]],["buryingplace",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1450]]],["grave",[4,3,[[0,2,1,0,1,[[34,2,1,0,1]]],[25,2,2,1,3,[[833,2,2,1,3]]]],[1031,21271,21272]]],["sepulchre",[5,5,[[4,1,1,0,1,[[186,1,1,0,1]]],[8,1,1,1,2,[[245,1,1,1,2]]],[11,3,3,2,5,[[321,1,1,2,3],[333,1,1,3,4],[335,1,1,4,5]]]],[5845,7420,9784,10145,10195]]]]},{"k":"H6901","v":[["*",[13,12,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]],[12,2,2,2,4,[[349,1,1,2,3],[358,1,1,3,4]]],[13,2,2,4,6,[[395,2,2,4,6]]],[14,1,1,6,7,[[410,1,1,6,7]]],[16,3,3,7,10,[[429,1,1,7,8],[434,2,2,8,10]]],[17,2,1,10,11,[[437,2,1,10,11]]],[19,1,1,11,12,[[646,1,1,11,12]]]],[2240,2578,10738,10945,11807,11813,12231,12766,12857,12861,12901,16945]]],["+",[2,2,[[13,1,1,0,1,[[395,1,1,0,1]]],[17,1,1,1,2,[[437,1,1,1,2]]]],[11813,12901]]],["Choose",[1,1,[[12,1,1,0,1,[[358,1,1,0,1]]]],[10945]]],["held",[1,1,[[1,1,1,0,1,[[85,1,1,0,1]]]],[2578]]],["hold",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2240]]],["receive",[2,2,[[17,1,1,0,1,[[437,1,1,0,1]]],[19,1,1,1,2,[[646,1,1,1,2]]]],[12901,16945]]],["received",[2,2,[[12,1,1,0,1,[[349,1,1,0,1]]],[16,1,1,1,2,[[429,1,1,1,2]]]],[10738,12766]]],["took",[3,3,[[13,1,1,0,1,[[395,1,1,0,1]]],[14,1,1,1,2,[[410,1,1,1,2]]],[16,1,1,2,3,[[434,1,1,2,3]]]],[11807,12231,12861]]],["undertook",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12857]]]]},{"k":"H6902","v":[["*",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[854,1,1,1,2],[856,1,1,2,3]]]],[21764,21905,21951]]],["receive",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21764]]],["take",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21951]]],["took",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21905]]]]},{"k":"H6903","v":[["*",[29,29,[[14,5,5,0,5,[[406,2,2,0,2],[408,1,1,2,3],[409,2,2,3,5]]],[26,24,24,5,29,[[851,8,8,5,13],[852,5,5,13,18],[853,1,1,18,19],[854,5,5,19,24],[855,5,5,24,29]]]],[12124,12126,12164,12187,12190,21766,21768,21770,21782,21789,21798,21799,21803,21810,21814,21815,21829,21836,21855,21875,21879,21884,21886,21896,21908,21909,21914,21915,21927]]],["+",[22,22,[[14,3,3,0,3,[[406,1,1,0,1],[409,2,2,1,3]]],[26,19,19,3,22,[[851,7,7,3,10],[852,4,4,10,14],[853,1,1,14,15],[854,2,2,15,17],[855,5,5,17,22]]]],[12124,12187,12190,21766,21768,21770,21782,21798,21799,21803,21814,21815,21829,21836,21855,21886,21896,21908,21909,21914,21915,21927]]],["against",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21879]]],["before",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[852,1,1,1,2],[854,1,1,2,3]]]],[21789,21810,21875]]],["means",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12126]]],["of",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21884]]],["to",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12164]]]]},{"k":"H6904","v":[["war",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21109]]]]},{"k":"H6905","v":[["before",[1,1,[[11,1,1,0,1,[[327,1,1,0,1]]]],[9935]]]]},{"k":"H6906","v":[["*",[6,3,[[19,2,1,0,1,[[649,2,1,0,1]]],[38,4,2,1,3,[[927,4,2,1,3]]]],[17038,23128,23129]]],["rob",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23128]]],["robbed",[3,2,[[38,3,2,0,2,[[927,3,2,0,2]]]],[23128,23129]]],["spoil",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17038]]],["spoiled",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17038]]]]},{"k":"H6907","v":[["dregs",[2,2,[[22,2,2,0,2,[[729,2,2,0,2]]]],[18690,18695]]]]},{"k":"H6908","v":[["*",[127,121,[[0,3,3,0,3,[[40,2,2,0,2],[48,1,1,2,3]]],[4,3,3,3,6,[[165,1,1,3,4],[182,2,2,4,6]]],[5,2,2,6,8,[[195,1,1,6,7],[196,1,1,7,8]]],[6,2,2,8,10,[[219,1,1,8,9],[222,1,1,9,10]]],[8,10,9,10,19,[[242,3,3,10,13],[243,1,1,13,14],[257,1,1,14,15],[260,1,1,15,16],[263,3,2,16,18],[264,1,1,18,19]]],[9,3,3,19,22,[[268,2,2,19,21],[269,1,1,21,22]]],[10,5,5,22,27,[[301,1,1,22,23],[308,2,2,23,25],[310,1,1,25,26],[312,1,1,26,27]]],[11,2,2,27,29,[[318,1,1,27,28],[322,1,1,28,29]]],[12,3,3,29,32,[[348,1,1,29,30],[350,1,1,30,31],[353,1,1,31,32]]],[13,11,10,32,42,[[379,1,1,32,33],[381,2,2,33,35],[384,1,1,35,36],[386,1,1,36,37],[389,1,1,37,38],[390,2,1,38,39],[391,1,1,39,40],[398,2,2,40,42]]],[14,5,5,42,47,[[409,1,1,42,43],[410,1,1,43,44],[412,3,3,44,47]]],[15,5,5,47,52,[[413,1,1,47,48],[416,1,1,48,49],[417,1,1,49,50],[419,1,1,50,51],[425,1,1,51,52]]],[16,3,3,52,55,[[427,3,3,52,55]]],[18,4,4,55,59,[[518,1,1,55,56],[579,1,1,56,57],[583,1,1,57,58],[584,1,1,58,59]]],[19,2,2,59,61,[[640,1,1,59,60],[655,1,1,60,61]]],[22,20,18,61,79,[[689,1,1,61,62],[691,1,1,62,63],[700,1,1,63,64],[712,2,2,64,66],[718,1,1,66,67],[721,2,2,67,69],[722,1,1,69,70],[723,1,1,70,71],[726,1,1,71,72],[727,1,1,72,73],[732,1,1,73,74],[734,3,1,74,75],[738,2,2,75,77],[740,1,1,77,78],[744,1,1,78,79]]],[23,8,8,79,87,[[767,1,1,79,80],[773,1,1,80,81],[775,2,2,81,83],[776,1,1,83,84],[784,1,1,84,85],[793,2,2,85,87]]],[25,16,15,87,102,[[812,1,1,87,88],[817,2,1,88,89],[821,2,2,89,91],[823,2,2,91,93],[829,1,1,93,94],[830,2,2,94,96],[835,1,1,96,97],[837,1,1,97,98],[838,1,1,98,99],[839,1,1,99,100],[840,2,2,100,102]]],[27,3,3,102,105,[[862,1,1,102,103],[869,1,1,103,104],[870,1,1,104,105]]],[28,4,4,105,109,[[877,2,2,105,107],[878,2,2,107,109]]],[32,5,4,109,113,[[893,1,1,109,110],[894,2,1,110,111],[896,2,2,111,113]]],[33,2,2,113,115,[[901,1,1,113,114],[902,1,1,114,115]]],[34,1,1,115,116,[[904,1,1,115,116]]],[35,3,3,116,119,[[908,3,3,116,119]]],[37,2,2,119,121,[[920,2,2,119,121]]]],[1230,1243,1475,5288,5711,5712,6039,6070,6801,6873,7357,7358,7359,7373,7789,7862,7943,7946,7968,8074,8079,8102,9132,9360,9361,9409,9486,9698,9811,10674,10762,10855,11460,11499,11500,11547,11591,11658,11682,11709,11879,11881,12201,12216,12253,12259,12261,12305,12379,12398,12425,12682,12727,12732,12743,14548,15543,15698,15702,16758,17204,17896,17920,18061,18318,18319,18431,18510,18514,18544,18581,18628,18654,18730,18761,18825,18828,18863,18940,19487,19649,19699,19701,19768,19956,20132,20141,20672,20799,20929,20936,20995,20996,21182,21188,21196,21326,21383,21418,21433,21465,21475,22105,22204,22214,22317,22327,22345,22354,22586,22607,22626,22632,22709,22730,22753,22828,22839,22840,23024,23026]]],["+",[31,30,[[0,2,2,0,2,[[40,2,2,0,2]]],[6,1,1,2,3,[[222,1,1,2,3]]],[8,4,4,3,7,[[242,1,1,3,4],[263,2,2,4,6],[264,1,1,6,7]]],[9,2,2,7,9,[[268,1,1,7,8],[269,1,1,8,9]]],[10,3,3,9,12,[[308,1,1,9,10],[310,1,1,10,11],[312,1,1,11,12]]],[11,2,2,12,14,[[318,1,1,12,13],[322,1,1,13,14]]],[13,5,5,14,19,[[381,1,1,14,15],[384,1,1,15,16],[389,1,1,16,17],[390,1,1,17,18],[391,1,1,18,19]]],[15,1,1,19,20,[[419,1,1,19,20]]],[16,1,1,20,21,[[427,1,1,20,21]]],[22,2,2,21,23,[[700,1,1,21,22],[744,1,1,22,23]]],[23,1,1,23,24,[[767,1,1,23,24]]],[25,3,3,24,27,[[817,1,1,24,25],[829,1,1,25,26],[830,1,1,26,27]]],[27,1,1,27,28,[[862,1,1,27,28]]],[28,1,1,28,29,[[878,1,1,28,29]]],[32,2,1,29,30,[[894,2,1,29,30]]]],[1230,1243,6873,7357,7943,7946,7968,8079,8102,9361,9409,9486,9698,9811,11499,11547,11658,11682,11709,12425,12727,18061,18940,19487,20799,21182,21196,22105,22345,22607]]],["assemble",[2,2,[[28,1,1,0,1,[[877,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[22327,22828]]],["assembled",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12253]]],["gather",[34,34,[[4,3,3,0,3,[[165,1,1,0,1],[182,2,2,1,3]]],[10,1,1,3,4,[[308,1,1,3,4]]],[13,1,1,4,5,[[390,1,1,4,5]]],[15,1,1,5,6,[[413,1,1,5,6]]],[18,1,1,6,7,[[583,1,1,6,7]]],[19,1,1,7,8,[[655,1,1,7,8]]],[22,4,4,8,12,[[718,1,1,8,9],[721,1,1,9,10],[732,1,1,10,11],[734,1,1,11,12]]],[23,4,4,12,16,[[773,1,1,12,13],[775,2,2,13,15],[776,1,1,15,16]]],[25,9,9,16,25,[[812,1,1,16,17],[817,1,1,17,18],[821,2,2,18,20],[823,2,2,20,22],[835,1,1,22,23],[837,1,1,23,24],[838,1,1,24,25]]],[27,1,1,25,26,[[869,1,1,25,26]]],[28,1,1,26,27,[[877,1,1,26,27]]],[32,2,2,27,29,[[896,2,2,27,29]]],[33,1,1,29,30,[[901,1,1,29,30]]],[35,2,2,30,32,[[908,2,2,30,32]]],[37,2,2,32,34,[[920,2,2,32,34]]]],[5288,5711,5712,9360,11682,12305,15698,17204,18431,18510,18730,18761,19649,19699,19701,19768,20672,20799,20929,20936,20995,20996,21326,21383,21418,22204,22317,22626,22632,22709,22839,22840,23024,23026]]],["gathered",[15,15,[[10,1,1,0,1,[[301,1,1,0,1]]],[13,2,2,1,3,[[379,1,1,1,2],[398,1,1,2,3]]],[15,1,1,3,4,[[417,1,1,3,4]]],[18,2,2,4,6,[[579,1,1,4,5],[584,1,1,5,6]]],[22,4,4,6,10,[[712,2,2,6,8],[721,1,1,8,9],[734,1,1,9,10]]],[23,1,1,10,11,[[784,1,1,10,11]]],[25,3,3,11,14,[[830,1,1,11,12],[839,1,1,12,13],[840,1,1,13,14]]],[32,1,1,14,15,[[893,1,1,14,15]]]],[9132,11460,11879,12398,15543,15702,18318,18319,18514,18761,19956,21188,21433,21475,22586]]],["gathereth",[4,4,[[18,1,1,0,1,[[518,1,1,0,1]]],[19,1,1,1,2,[[640,1,1,1,2]]],[22,1,1,2,3,[[734,1,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[14548,16758,18761,22730]]],["heapeth",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22753]]],["resort",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12379]]],["themselves",[4,4,[[5,1,1,0,1,[[195,1,1,0,1]]],[8,1,1,1,2,[[257,1,1,1,2]]],[12,2,2,2,4,[[348,1,1,2,3],[350,1,1,3,4]]]],[6039,7789,10674,10762]]],["together",[28,28,[[0,1,1,0,1,[[48,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[6,1,1,2,3,[[219,1,1,2,3]]],[8,5,5,3,8,[[242,2,2,3,5],[243,1,1,5,6],[260,1,1,6,7],[263,1,1,7,8]]],[9,1,1,8,9,[[268,1,1,8,9]]],[12,1,1,9,10,[[353,1,1,9,10]]],[13,3,3,10,13,[[381,1,1,10,11],[386,1,1,11,12],[398,1,1,12,13]]],[14,4,4,13,17,[[409,1,1,13,14],[410,1,1,14,15],[412,2,2,15,17]]],[15,1,1,17,18,[[425,1,1,17,18]]],[16,2,2,18,20,[[427,2,2,18,20]]],[22,6,6,20,26,[[689,1,1,20,21],[722,1,1,21,22],[727,1,1,22,23],[738,2,2,23,25],[740,1,1,25,26]]],[23,1,1,26,27,[[793,1,1,26,27]]],[28,1,1,27,28,[[878,1,1,27,28]]]],[1475,6070,6801,7358,7359,7373,7862,7946,8074,10855,11500,11591,11881,12201,12216,12259,12261,12682,12732,12743,17896,18544,18654,18825,18828,18863,20141,22354]]],["up",[3,3,[[22,1,1,0,1,[[691,1,1,0,1]]],[23,1,1,1,2,[[793,1,1,1,2]]],[27,1,1,2,3,[[870,1,1,2,3]]]],[17920,20132,22214]]],["yourselves",[3,3,[[22,2,2,0,2,[[723,1,1,0,1],[726,1,1,1,2]]],[25,1,1,2,3,[[840,1,1,2,3]]]],[18581,18628,21465]]]]},{"k":"H6909","v":[["*",[3,3,[[5,1,1,0,1,[[201,1,1,0,1]]],[9,1,1,1,2,[[289,1,1,1,2]]],[12,1,1,2,3,[[348,1,1,2,3]]]],[6223,8673,10695]]],["+",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8673]]],["Kabzeel",[2,2,[[5,1,1,0,1,[[201,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[6223,10695]]]]},{"k":"H6910","v":[["gather",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[20996]]]]},{"k":"H6911","v":[["Kibzaim",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6403]]]]},{"k":"H6912","v":[["*",[133,122,[[0,28,23,0,23,[[14,1,1,0,1],[22,8,7,1,8],[24,2,2,8,10],[34,3,3,10,13],[46,2,2,13,15],[47,1,1,15,16],[48,4,2,16,18],[49,7,5,18,23]]],[3,3,3,23,26,[[127,1,1,23,24],[136,1,1,24,25],[149,1,1,25,26]]],[4,4,3,26,29,[[162,1,1,26,27],[173,2,1,27,28],[186,1,1,28,29]]],[5,3,3,29,32,[[210,3,3,29,32]]],[6,9,9,32,41,[[212,1,1,32,33],[218,1,1,33,34],[220,2,2,34,36],[222,4,4,36,40],[226,1,1,40,41]]],[7,1,1,41,42,[[232,1,1,41,42]]],[8,3,3,42,45,[[260,1,1,42,43],[263,1,1,43,44],[266,1,1,44,45]]],[9,7,7,45,52,[[268,3,3,45,48],[269,1,1,48,49],[270,1,1,49,50],[283,1,1,50,51],[287,1,1,51,52]]],[10,18,16,52,68,[[292,3,3,52,55],[301,2,2,55,57],[303,4,2,57,59],[304,3,3,59,62],[305,2,2,62,64],[306,2,2,64,66],[312,2,2,66,68]]],[11,19,19,68,87,[[320,1,1,68,69],[321,4,4,69,73],[322,1,1,73,74],[324,1,1,74,75],[325,4,4,75,79],[326,2,2,79,81],[327,2,2,81,83],[328,1,1,83,84],[333,2,2,84,86],[335,1,1,86,87]]],[12,1,1,87,88,[[347,1,1,87,88]]],[13,17,16,88,104,[[375,1,1,88,89],[378,1,1,89,90],[380,1,1,90,91],[382,1,1,91,92],[387,2,2,92,94],[388,1,1,94,95],[390,3,2,95,97],[391,1,1,97,98],[392,1,1,98,99],[393,1,1,99,100],[394,1,1,100,101],[398,1,1,101,102],[399,1,1,102,103],[401,1,1,103,104]]],[17,1,1,104,105,[[462,1,1,104,105]]],[18,1,1,105,106,[[556,1,1,105,106]]],[20,1,1,106,107,[[666,1,1,106,107]]],[23,10,9,107,116,[[751,1,1,107,108],[752,1,1,108,109],[758,1,1,109,110],[760,2,2,110,112],[763,2,1,112,113],[764,1,1,113,114],[766,1,1,114,115],[769,1,1,115,116]]],[25,6,5,116,121,[[840,6,5,116,121]]],[27,1,1,121,122,[[870,1,1,121,122]]]],[375,575,577,579,582,584,586,590,667,668,1019,1030,1040,1449,1450,1458,1502,1504,1511,1512,1513,1519,1520,4058,4312,4764,5192,5470,5845,6506,6508,6509,6554,6751,6813,6816,6876,6879,6881,6884,6980,7144,7862,7945,8022,8053,8054,8081,8113,8132,8472,8594,8780,8801,8804,9123,9151,9213,9215,9231,9236,9249,9257,9273,9289,9311,9517,9530,9751,9766,9784,9790,9791,9828,9871,9880,9884,9891,9892,9912,9916,9932,9963,9983,10137,10145,10195,10671,11395,11453,11476,11523,11625,11644,11653,11693,11702,11732,11755,11764,11791,11908,11928,11990,13496,15188,17468,19151,19155,19309,19340,19342,19418,19428,19473,19567,21459,21460,21461,21462,21463,22214]]],["+",[23,18,[[0,13,9,0,9,[[22,5,4,0,4],[48,3,1,4,5],[49,5,4,5,9]]],[3,1,1,9,10,[[127,1,1,9,10]]],[4,2,1,10,11,[[173,2,1,10,11]]],[9,2,2,11,13,[[268,1,1,11,12],[269,1,1,12,13]]],[10,2,2,13,15,[[301,1,1,13,14],[312,1,1,14,15]]],[12,1,1,15,16,[[347,1,1,15,16]]],[25,2,2,16,18,[[840,2,2,16,18]]]],[577,579,584,590,1504,1511,1512,1513,1520,4058,5470,8053,8113,9123,9517,10671,21459,21462]]],["buried",[86,84,[[0,8,8,0,8,[[14,1,1,0,1],[24,2,2,1,3],[34,3,3,3,6],[47,1,1,6,7],[49,1,1,7,8]]],[3,2,2,8,10,[[136,1,1,8,9],[149,1,1,9,10]]],[4,2,2,10,12,[[162,1,1,10,11],[186,1,1,11,12]]],[5,3,3,12,15,[[210,3,3,12,15]]],[6,9,9,15,24,[[212,1,1,15,16],[218,1,1,16,17],[220,2,2,17,19],[222,4,4,19,23],[226,1,1,23,24]]],[7,1,1,24,25,[[232,1,1,24,25]]],[8,3,3,25,28,[[260,1,1,25,26],[263,1,1,26,27],[266,1,1,27,28]]],[9,5,5,28,33,[[268,2,2,28,30],[270,1,1,30,31],[283,1,1,31,32],[287,1,1,32,33]]],[10,12,11,33,44,[[292,2,2,33,35],[301,1,1,35,36],[303,2,1,36,37],[304,2,2,37,39],[305,2,2,39,41],[306,2,2,41,43],[312,1,1,43,44]]],[11,15,15,44,59,[[320,1,1,44,45],[321,1,1,45,46],[322,1,1,46,47],[324,1,1,47,48],[325,3,3,48,51],[326,2,2,51,53],[327,2,2,53,55],[328,1,1,55,56],[333,2,2,56,58],[335,1,1,58,59]]],[13,17,16,59,75,[[375,1,1,59,60],[378,1,1,60,61],[380,1,1,61,62],[382,1,1,62,63],[387,2,2,63,65],[388,1,1,65,66],[390,3,2,66,68],[391,1,1,68,69],[392,1,1,69,70],[393,1,1,70,71],[394,1,1,71,72],[398,1,1,72,73],[399,1,1,73,74],[401,1,1,74,75]]],[17,1,1,75,76,[[462,1,1,75,76]]],[20,1,1,76,77,[[666,1,1,76,77]]],[23,6,6,77,83,[[752,1,1,77,78],[760,2,2,78,80],[764,1,1,80,81],[766,1,1,81,82],[769,1,1,82,83]]],[25,1,1,83,84,[[840,1,1,83,84]]]],[375,667,668,1019,1030,1040,1458,1519,4312,4764,5192,5845,6506,6508,6509,6554,6751,6813,6816,6876,6879,6881,6884,6980,7144,7862,7945,8022,8054,8081,8132,8472,8594,8780,8804,9151,9215,9236,9249,9257,9273,9289,9311,9530,9751,9784,9828,9871,9880,9884,9891,9912,9916,9932,9963,9983,10137,10145,10195,11395,11453,11476,11523,11625,11644,11653,11693,11702,11732,11755,11764,11791,11908,11928,11990,13496,17468,19155,19340,19342,19428,19473,19567,21463]]],["buriers",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21463]]],["bury",[21,20,[[0,7,7,0,7,[[22,3,3,0,3],[46,2,2,3,5],[48,1,1,5,6],[49,1,1,6,7]]],[10,4,4,7,11,[[292,1,1,7,8],[303,2,2,8,10],[304,1,1,10,11]]],[11,3,3,11,14,[[321,3,3,11,14]]],[18,1,1,14,15,[[556,1,1,14,15]]],[23,4,3,15,18,[[751,1,1,15,16],[758,1,1,16,17],[763,2,1,17,18]]],[25,1,1,18,19,[[840,1,1,18,19]]],[27,1,1,19,20,[[870,1,1,19,20]]]],[575,582,586,1449,1450,1502,1511,8801,9213,9215,9231,9766,9790,9791,15188,19151,19309,19418,21461,22214]]],["burying",[2,2,[[11,1,1,0,1,[[325,1,1,0,1]]],[25,1,1,1,2,[[840,1,1,1,2]]]],[9892,21460]]]]},{"k":"H6913","v":[["*",[67,62,[[0,8,7,0,7,[[22,5,4,0,4],[48,1,1,4,5],[49,2,2,5,7]]],[1,1,1,7,8,[[63,1,1,7,8]]],[3,2,2,8,10,[[135,2,2,8,10]]],[6,2,2,10,12,[[218,1,1,10,11],[226,1,1,11,12]]],[9,6,6,12,18,[[268,1,1,12,13],[269,1,1,13,14],[270,1,1,14,15],[283,1,1,15,16],[285,1,1,16,17],[287,1,1,17,18]]],[10,4,4,18,22,[[303,3,3,18,21],[304,1,1,21,22]]],[11,6,5,22,27,[[325,1,1,22,23],[334,1,1,23,24],[335,4,3,24,27]]],[13,8,8,27,35,[[382,1,1,27,28],[387,1,1,28,29],[390,1,1,29,30],[394,1,1,30,31],[398,1,1,31,32],[400,2,2,32,34],[401,1,1,34,35]]],[15,3,3,35,38,[[414,2,2,35,37],[415,1,1,37,38]]],[17,5,5,38,43,[[438,1,1,38,39],[440,1,1,39,40],[445,1,1,40,41],[452,1,1,41,42],[456,1,1,42,43]]],[18,3,3,43,46,[[482,1,1,43,44],[565,2,2,44,46]]],[22,5,4,46,50,[[692,1,1,46,47],[700,2,1,47,48],[731,1,1,48,49],[743,1,1,49,50]]],[23,4,4,50,54,[[749,1,1,50,51],[752,1,1,51,52],[764,1,1,52,53],[770,1,1,53,54]]],[25,9,7,54,61,[[833,4,4,54,58],[838,4,2,58,60],[840,1,1,60,61]]],[33,1,1,61,62,[[900,1,1,61,62]]]],[575,577,580,591,1503,1511,1519,1900,4305,4307,6751,6980,8081,8113,8132,8472,8548,8594,9206,9214,9215,9231,9892,10165,10171,10181,10182,11523,11644,11702,11791,11908,11937,11961,11990,12310,12312,12343,12926,12977,13105,13261,13387,13982,15313,15319,17947,18068,18720,18901,19074,19154,19439,19595,21270,21271,21273,21274,21409,21410,21459,22698]]],["+",[4,4,[[22,1,1,0,1,[[692,1,1,0,1]]],[23,1,1,1,2,[[752,1,1,1,2]]],[25,2,2,2,4,[[838,2,2,2,4]]]],[17947,19154,21409,21410]]],["buryingplace",[6,6,[[0,5,5,0,5,[[22,3,3,0,3],[48,1,1,3,4],[49,1,1,4,5]]],[6,1,1,5,6,[[226,1,1,5,6]]]],[575,580,591,1503,1519,6980]]],["grave",[18,18,[[0,1,1,0,1,[[49,1,1,0,1]]],[3,2,2,1,3,[[135,2,2,1,3]]],[9,2,2,3,5,[[269,1,1,3,4],[285,1,1,4,5]]],[10,2,2,5,7,[[303,1,1,5,6],[304,1,1,6,7]]],[11,1,1,7,8,[[334,1,1,7,8]]],[13,1,1,8,9,[[400,1,1,8,9]]],[17,4,4,9,13,[[438,1,1,9,10],[440,1,1,10,11],[445,1,1,11,12],[456,1,1,12,13]]],[18,2,2,13,15,[[565,2,2,13,15]]],[22,1,1,15,16,[[731,1,1,15,16]]],[23,1,1,16,17,[[764,1,1,16,17]]],[33,1,1,17,18,[[900,1,1,17,18]]]],[1511,4305,4307,8113,8548,9214,9231,10165,11961,12926,12977,13105,13387,15313,15319,18720,19439,22698]]],["graves",[13,13,[[1,1,1,0,1,[[63,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]],[13,1,1,2,3,[[400,1,1,2,3]]],[17,1,1,3,4,[[452,1,1,3,4]]],[22,1,1,4,5,[[743,1,1,4,5]]],[23,1,1,5,6,[[770,1,1,5,6]]],[25,7,7,6,13,[[833,4,4,6,10],[838,2,2,10,12],[840,1,1,12,13]]]],[1900,10171,11937,13261,18901,19595,21270,21271,21273,21274,21409,21410,21459]]],["sepulchre",[14,13,[[0,1,1,0,1,[[22,1,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]],[9,4,4,2,6,[[268,1,1,2,3],[270,1,1,3,4],[283,1,1,4,5],[287,1,1,5,6]]],[10,2,2,6,8,[[303,2,2,6,8]]],[11,2,2,8,10,[[325,1,1,8,9],[335,1,1,9,10]]],[18,1,1,10,11,[[482,1,1,10,11]]],[22,2,1,11,12,[[700,2,1,11,12]]],[23,1,1,12,13,[[749,1,1,12,13]]]],[577,6751,8081,8132,8472,8594,9206,9215,9892,10182,13982,18068,19074]]],["sepulchres",[12,11,[[0,1,1,0,1,[[22,1,1,0,1]]],[11,2,1,1,2,[[335,2,1,1,2]]],[13,6,6,2,8,[[382,1,1,2,3],[387,1,1,3,4],[390,1,1,4,5],[394,1,1,5,6],[398,1,1,6,7],[401,1,1,7,8]]],[15,3,3,8,11,[[414,2,2,8,10],[415,1,1,10,11]]]],[577,10181,11523,11644,11702,11791,11908,11990,12310,12312,12343]]]]},{"k":"H6914","v":[["*",[5,5,[[3,4,4,0,4,[[127,2,2,0,2],[149,2,2,2,4]]],[4,1,1,4,5,[[161,1,1,4,5]]]],[4058,4059,4776,4777,5179]]],["+",[2,2,[[3,2,2,0,2,[[127,1,1,0,1],[149,1,1,1,2]]]],[4059,4777]]],["Kibrothhattaavah",[3,3,[[3,2,2,0,2,[[127,1,1,0,1],[149,1,1,1,2]]],[4,1,1,2,3,[[161,1,1,2,3]]]],[4058,4776,5179]]]]},{"k":"H6915","v":[["*",[15,15,[[0,3,3,0,3,[[23,2,2,0,2],[42,1,1,2,3]]],[1,3,3,3,6,[[53,1,1,3,4],[61,1,1,4,5],[83,1,1,5,6]]],[3,1,1,6,7,[[138,1,1,6,7]]],[8,2,2,7,9,[[259,1,1,7,8],[263,1,1,8,9]]],[10,2,2,9,11,[[291,2,2,9,11]]],[12,1,1,11,12,[[366,1,1,11,12]]],[13,2,2,12,14,[[386,1,1,12,13],[395,1,1,13,14]]],[15,1,1,14,15,[[420,1,1,14,15]]]],[617,639,1318,1632,1843,2504,4406,7847,7956,8733,8748,11184,11605,11821,12499]]],["bowed",[3,3,[[10,2,2,0,2,[[291,2,2,0,2]]],[15,1,1,2,3,[[420,1,1,2,3]]]],[8733,8748,12499]]],["head",[6,6,[[0,2,2,0,2,[[23,2,2,0,2]]],[1,2,2,2,4,[[61,1,1,2,3],[83,1,1,3,4]]],[3,1,1,4,5,[[138,1,1,4,5]]],[13,1,1,5,6,[[386,1,1,5,6]]]],[617,639,1843,2504,4406,11605]]],["heads",[4,4,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,1,1,1,2,[[53,1,1,1,2]]],[12,1,1,2,3,[[366,1,1,2,3]]],[13,1,1,3,4,[[395,1,1,3,4]]]],[1318,1632,11184,11821]]],["stooped",[2,2,[[8,2,2,0,2,[[259,1,1,0,1],[263,1,1,1,2]]]],[7847,7956]]]]},{"k":"H6916","v":[["cassia",[2,2,[[1,1,1,0,1,[[79,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[2406,21140]]]]},{"k":"H6917","v":[["ancient",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6644]]]]},{"k":"H6918","v":[["*",[116,106,[[1,2,2,0,2,[[68,1,1,0,1],[78,1,1,1,2]]],[2,20,15,2,17,[[95,3,3,2,5],[96,1,1,5,6],[99,1,1,6,7],[100,4,2,7,9],[105,1,1,9,10],[108,2,1,10,11],[109,3,2,11,13],[110,4,3,13,16],[113,1,1,16,17]]],[3,7,7,17,24,[[121,1,1,17,18],[122,2,2,18,20],[131,1,1,20,21],[132,3,3,21,24]]],[4,7,7,24,31,[[159,1,1,24,25],[166,2,2,25,27],[175,1,1,27,28],[178,1,1,28,29],[180,1,1,29,30],[185,1,1,30,31]]],[5,1,1,31,32,[[210,1,1,31,32]]],[8,2,2,32,34,[[237,1,1,32,33],[241,1,1,33,34]]],[11,2,2,34,36,[[316,1,1,34,35],[331,1,1,35,36]]],[13,1,1,36,37,[[401,1,1,36,37]]],[15,3,3,37,40,[[420,3,3,37,40]]],[17,3,3,40,43,[[440,1,1,40,41],[441,1,1,41,42],[450,1,1,42,43]]],[18,15,15,43,58,[[493,1,1,43,44],[499,1,1,44,45],[511,1,1,45,46],[523,1,1,46,47],[542,1,1,47,48],[548,1,1,48,49],[555,1,1,49,50],[566,3,3,50,53],[576,3,3,53,56],[583,1,1,56,57],[588,1,1,57,58]]],[19,2,2,58,60,[[636,1,1,58,59],[657,1,1,59,60]]],[20,1,1,60,61,[[666,1,1,60,61]]],[22,38,34,61,95,[[679,1,1,61,62],[682,1,1,62,63],[683,3,3,63,66],[684,3,1,66,67],[688,2,2,67,69],[690,1,1,69,70],[695,1,1,70,71],[707,2,2,71,73],[708,3,3,73,76],[709,1,1,76,77],[715,1,1,77,78],[718,1,1,78,79],[719,3,3,79,82],[721,3,3,82,85],[723,1,1,85,86],[725,1,1,86,87],[726,1,1,87,88],[727,2,1,88,89],[732,1,1,89,90],[733,1,1,90,91],[735,2,1,91,92],[736,1,1,92,93],[738,2,2,93,95]]],[23,2,2,95,97,[[794,1,1,95,96],[795,1,1,96,97]]],[25,2,2,97,99,[[840,1,1,97,98],[843,1,1,98,99]]],[26,3,2,99,101,[[857,3,2,99,101]]],[27,2,2,101,103,[[872,2,2,101,103]]],[34,2,2,103,105,[[903,1,1,103,104],[905,1,1,104,105]]],[37,1,1,105,106,[[924,1,1,105,106]]]],[2032,2367,2865,2875,2876,2885,2990,3041,3042,3225,3283,3325,3344,3351,3352,3353,3455,3809,3828,3831,4193,4197,4199,4201,5117,5292,5311,5514,5585,5620,5813,6495,7242,7351,9612,10083,11969,12502,12503,12504,12952,12988,13218,14095,14207,14397,14618,14864,14998,15154,15331,15333,15344,15502,15504,15508,15667,15802,16648,17254,17468,17658,17736,17755,17758,17763,17772,17867,17870,17906,17990,18212,18216,18228,18229,18232,18251,18375,18445,18465,18467,18471,18508,18519,18520,18572,18603,18631,18643,18728,18745,18780,18799,18830,18835,20195,20217,21455,21565,21974,21985,22249,22252,22743,22771,23073]]],["+",[2,2,[[17,1,1,0,1,[[440,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[12952,20217]]],["Holy",[3,3,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,2,2,1,3,[[684,1,1,1,2],[735,1,1,2,3]]]],[10083,17772,18780]]],["One",[39,38,[[17,1,1,0,1,[[441,1,1,0,1]]],[18,3,3,1,4,[[548,1,1,1,2],[555,1,1,2,3],[566,1,1,3,4]]],[22,30,29,4,33,[[679,1,1,4,5],[683,2,2,5,7],[688,2,2,7,9],[690,1,1,9,10],[695,1,1,10,11],[707,2,2,11,13],[708,3,3,13,16],[709,1,1,16,17],[715,1,1,17,18],[718,1,1,18,19],[719,3,3,19,22],[721,3,3,22,25],[723,1,1,25,26],[725,1,1,26,27],[726,1,1,27,28],[727,2,1,28,29],[732,1,1,29,30],[733,1,1,30,31],[738,2,2,31,33]]],[23,1,1,33,34,[[794,1,1,33,34]]],[25,1,1,34,35,[[840,1,1,34,35]]],[27,1,1,35,36,[[872,1,1,35,36]]],[34,2,2,36,38,[[903,1,1,36,37],[905,1,1,37,38]]]],[12988,14998,15154,15344,17658,17758,17763,17867,17870,17906,17990,18212,18216,18228,18229,18232,18251,18375,18445,18465,18467,18471,18508,18519,18520,18572,18603,18631,18643,18728,18745,18830,18835,20195,21455,22249,22743,22771]]],["holy",[61,55,[[1,2,2,0,2,[[68,1,1,0,1],[78,1,1,1,2]]],[2,20,15,2,17,[[95,3,3,2,5],[96,1,1,5,6],[99,1,1,6,7],[100,4,2,7,9],[105,1,1,9,10],[108,2,1,10,11],[109,3,2,11,13],[110,4,3,13,16],[113,1,1,16,17]]],[3,7,7,17,24,[[121,1,1,17,18],[122,2,2,18,20],[131,1,1,20,21],[132,3,3,21,24]]],[4,6,6,24,30,[[159,1,1,24,25],[166,2,2,25,27],[175,1,1,27,28],[178,1,1,28,29],[180,1,1,29,30]]],[5,1,1,30,31,[[210,1,1,30,31]]],[8,2,2,31,33,[[237,1,1,31,32],[241,1,1,32,33]]],[11,1,1,33,34,[[316,1,1,33,34]]],[13,1,1,34,35,[[401,1,1,34,35]]],[15,3,3,35,38,[[420,3,3,35,38]]],[18,7,7,38,45,[[499,1,1,38,39],[523,1,1,39,40],[542,1,1,40,41],[576,3,3,41,44],[588,1,1,44,45]]],[19,2,2,45,47,[[636,1,1,45,46],[657,1,1,46,47]]],[20,1,1,47,48,[[666,1,1,47,48]]],[22,6,5,48,53,[[682,1,1,48,49],[683,1,1,49,50],[684,2,1,50,51],[735,1,1,51,52],[736,1,1,52,53]]],[25,1,1,53,54,[[843,1,1,53,54]]],[26,1,1,54,55,[[857,1,1,54,55]]]],[2032,2367,2865,2875,2876,2885,2990,3041,3042,3225,3283,3325,3344,3351,3352,3353,3455,3809,3828,3831,4193,4197,4199,4201,5117,5292,5311,5514,5585,5620,6495,7242,7351,9612,11969,12502,12503,12504,14207,14618,14864,15502,15504,15508,15802,16648,17254,17468,17736,17755,17772,18780,18799,21565,21985]]],["saint",[3,2,[[18,1,1,0,1,[[583,1,1,0,1]]],[26,2,1,1,2,[[857,2,1,1,2]]]],[15667,21974]]],["saints",[8,8,[[4,1,1,0,1,[[185,1,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]],[18,4,4,2,6,[[493,1,1,2,3],[511,1,1,3,4],[566,2,2,4,6]]],[27,1,1,6,7,[[872,1,1,6,7]]],[37,1,1,7,8,[[924,1,1,7,8]]]],[5813,13218,14095,14397,15331,15333,22252,23073]]]]},{"k":"H6919","v":[["*",[5,5,[[4,1,1,0,1,[[184,1,1,0,1]]],[22,2,2,1,3,[[728,1,1,1,2],[742,1,1,2,3]]],[23,2,2,3,5,[[759,1,1,3,4],[761,1,1,4,5]]]],[5780,18673,18887,19329,19361]]],["burneth",[1,1,[[22,1,1,0,1,[[742,1,1,0,1]]]],[18887]]],["kindle",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18673]]],["kindled",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[23,2,2,1,3,[[759,1,1,1,2],[761,1,1,2,3]]]],[5780,19329,19361]]]]},{"k":"H6920","v":[["*",[2,2,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]]],[3540,5633]]],["ague",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3540]]],["fever",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5633]]]]},{"k":"H6921","v":[["*",[69,64,[[0,3,3,0,3,[[40,3,3,0,3]]],[1,3,2,3,5,[[59,2,1,3,4],[63,1,1,4,5]]],[17,3,3,5,8,[[450,1,1,5,6],[462,1,1,6,7],[473,1,1,7,8]]],[18,2,2,8,10,[[525,1,1,8,9],[555,1,1,9,10]]],[22,1,1,10,11,[[705,1,1,10,11]]],[23,1,1,11,12,[[762,1,1,11,12]]],[25,52,48,12,60,[[812,1,1,12,13],[818,1,1,13,14],[820,1,1,14,15],[828,1,1,15,16],[841,7,7,16,23],[842,1,1,23,24],[843,5,5,24,29],[844,4,4,29,33],[845,1,1,33,34],[846,2,1,34,35],[847,2,2,35,37],[848,6,4,37,41],[849,20,19,41,60]]],[27,2,2,60,62,[[873,1,1,60,61],[874,1,1,61,62]]],[31,1,1,62,63,[[892,1,1,62,63]]],[34,1,1,63,64,[[903,1,1,63,64]]]],[1201,1218,1222,1790,1910,13205,13502,13817,14641,15139,18159,19401,20656,20835,20893,21147,21483,21487,21496,21499,21500,21509,21521,21540,21561,21562,21564,21567,21568,21573,21574,21576,21589,21600,21637,21656,21667,21680,21681,21682,21697,21703,21704,21705,21706,21707,21708,21709,21710,21712,21718,21719,21720,21723,21725,21726,21727,21728,21729,21734,22253,22281,22576,22740]]],["+",[2,2,[[25,2,2,0,2,[[841,1,1,0,1],[843,1,1,1,2]]]],[21487,21561]]],["east",[49,46,[[1,3,2,0,2,[[59,2,1,0,1],[63,1,1,1,2]]],[18,1,1,2,3,[[525,1,1,2,3]]],[23,1,1,3,4,[[762,1,1,3,4]]],[25,43,41,4,45,[[818,1,1,4,5],[820,1,1,5,6],[828,1,1,6,7],[841,5,5,7,12],[842,1,1,12,13],[843,4,4,13,17],[844,4,4,17,21],[845,1,1,21,22],[846,1,1,22,23],[847,2,2,23,25],[848,3,2,25,27],[849,19,18,27,45]]],[31,1,1,45,46,[[892,1,1,45,46]]]],[1790,1910,14641,19401,20835,20893,21147,21483,21499,21500,21509,21521,21540,21562,21564,21567,21568,21573,21574,21576,21589,21600,21637,21656,21667,21680,21697,21703,21704,21705,21706,21707,21708,21709,21710,21712,21718,21719,21723,21725,21726,21727,21728,21729,21734,22576]]],["eastward",[7,7,[[25,7,7,0,7,[[812,1,1,0,1],[841,1,1,1,2],[846,1,1,2,3],[848,3,3,3,6],[849,1,1,6,7]]]],[20656,21496,21637,21680,21681,21682,21720]]],["wind",[11,11,[[0,3,3,0,3,[[40,3,3,0,3]]],[17,3,3,3,6,[[450,1,1,3,4],[462,1,1,4,5],[473,1,1,5,6]]],[18,1,1,6,7,[[555,1,1,6,7]]],[22,1,1,7,8,[[705,1,1,7,8]]],[27,2,2,8,10,[[873,1,1,8,9],[874,1,1,9,10]]],[34,1,1,10,11,[[903,1,1,10,11]]]],[1201,1218,1222,13205,13502,13817,15139,18159,22253,22281,22740]]]]},{"k":"H6922","v":[["*",[13,12,[[26,13,12,0,12,[[853,6,6,0,6],[854,1,1,6,7],[856,6,5,7,12]]]],[21845,21846,21850,21854,21855,21860,21885,21951,21954,21955,21958,21960]]],["holy",[4,4,[[26,4,4,0,4,[[853,3,3,0,3],[854,1,1,3,4]]]],[21845,21846,21855,21885]]],["one",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21850,21860]]],["ones",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21854]]],["saints",[6,5,[[26,6,5,0,5,[[856,6,5,0,5]]]],[21951,21954,21955,21958,21960]]]]},{"k":"H6923","v":[["*",[26,25,[[4,1,1,0,1,[[175,1,1,0,1]]],[9,2,2,1,3,[[288,2,2,1,3]]],[11,1,1,3,4,[[331,1,1,3,4]]],[15,1,1,4,5,[[425,1,1,4,5]]],[17,3,3,5,8,[[438,1,1,5,6],[465,1,1,6,7],[476,1,1,7,8]]],[18,12,12,8,20,[[494,1,1,8,9],[495,2,2,9,11],[498,1,1,11,12],[536,1,1,12,13],[545,1,1,13,14],[556,1,1,14,15],[565,1,1,15,16],[566,1,1,16,17],[572,1,1,17,18],[596,2,2,18,20]]],[22,2,2,20,22,[[699,1,1,20,21],[715,1,1,21,22]]],[29,1,1,22,23,[[887,1,1,22,23]]],[31,1,1,23,24,[[892,1,1,23,24]]],[32,2,1,24,25,[[898,2,1,24,25]]]],[5504,8608,8621,10093,12673,12916,13584,13899,14116,14123,14136,14194,14800,14925,15193,15321,15340,15456,16045,16046,18049,18385,22505,22570,22654]]],["+",[2,2,[[18,1,1,0,1,[[494,1,1,0,1]]],[29,1,1,1,2,[[887,1,1,1,2]]]],[14116,22505]]],["before",[7,6,[[11,1,1,0,1,[[331,1,1,0,1]]],[18,2,2,1,3,[[545,1,1,1,2],[572,1,1,2,3]]],[22,1,1,3,4,[[715,1,1,3,4]]],[31,1,1,4,5,[[892,1,1,4,5]]],[32,2,1,5,6,[[898,2,1,5,6]]]],[10093,14925,15456,18385,22570,22654]]],["go",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15340]]],["met",[2,2,[[4,1,1,0,1,[[175,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]]],[5504,12673]]],["prevent",[5,5,[[17,1,1,0,1,[[438,1,1,0,1]]],[18,4,4,1,5,[[536,1,1,1,2],[556,1,1,2,3],[565,1,1,3,4],[596,1,1,4,5]]]],[12916,14800,15193,15321,16046]]],["prevented",[8,8,[[9,2,2,0,2,[[288,2,2,0,2]]],[17,2,2,2,4,[[465,1,1,2,3],[476,1,1,3,4]]],[18,3,3,4,7,[[495,2,2,4,6],[596,1,1,6,7]]],[22,1,1,7,8,[[699,1,1,7,8]]]],[8608,8621,13584,13899,14123,14136,16045,18049]]],["preventest",[1,1,[[18,1,1,0,1,[[498,1,1,0,1]]]],[14194]]]]},{"k":"H6924","v":[["*",[87,83,[[0,12,10,0,10,[[1,1,1,0,1],[2,1,1,1,2],[9,1,1,2,3],[10,1,1,3,4],[11,2,1,4,5],[12,2,2,5,7],[24,2,1,7,8],[27,1,1,8,9],[28,1,1,9,10]]],[1,2,2,10,12,[[76,1,1,10,11],[87,1,1,11,12]]],[2,2,2,12,14,[[90,1,1,12,13],[105,1,1,13,14]]],[3,10,9,14,23,[[118,1,1,14,15],[119,1,1,15,16],[126,1,1,16,17],[139,1,1,17,18],[150,5,4,18,22],[151,1,1,22,23]]],[4,2,2,23,25,[[185,2,2,23,25]]],[5,5,5,25,30,[[193,1,1,25,26],[201,1,1,26,27],[204,1,1,27,28],[205,2,2,28,30]]],[6,5,5,30,35,[[216,2,2,30,32],[217,1,1,32,33],[218,2,2,33,35]]],[10,3,3,35,38,[[294,1,1,35,36],[297,1,1,36,37],[307,1,1,37,38]]],[11,2,2,38,40,[[325,1,1,38,39],[331,1,1,39,40]]],[13,1,1,40,41,[[370,1,1,40,41]]],[15,1,1,41,42,[[424,1,1,41,42]]],[17,3,3,42,45,[[436,1,1,42,43],[458,1,1,43,44],[464,1,1,44,45]]],[18,11,11,45,56,[[521,1,1,45,46],[532,1,1,46,47],[545,1,1,47,48],[551,2,2,48,50],[554,2,2,50,52],[555,1,1,52,53],[596,1,1,53,54],[616,1,1,54,55],[620,1,1,55,56]]],[19,2,2,56,58,[[635,2,2,56,58]]],[22,9,9,58,67,[[680,1,1,58,59],[687,1,1,59,60],[689,1,1,60,61],[697,1,1,61,62],[701,1,1,62,63],[715,1,1,63,64],[723,1,1,64,65],[724,1,1,65,66],[729,1,1,66,67]]],[23,3,3,67,70,[[774,1,1,67,68],[790,1,1,68,69],[793,1,1,69,70]]],[24,3,3,70,73,[[797,1,1,70,71],[798,1,1,71,72],[801,1,1,72,73]]],[25,6,5,73,78,[[809,2,1,73,74],[812,1,1,74,75],[826,2,2,75,77],[846,1,1,77,78]]],[31,1,1,78,79,[[892,1,1,78,79]]],[32,2,2,79,81,[[897,1,1,79,80],[899,1,1,80,81]]],[34,1,1,81,82,[[903,1,1,81,82]]],[37,1,1,82,83,[[924,1,1,82,83]]]],[38,79,264,268,306,329,332,664,787,796,2285,2646,2761,3215,3661,3730,3993,4423,4819,4826,4827,4831,4850,5825,5837,5978,6207,6313,6333,6334,6657,6687,6706,6729,6730,8874,8973,9320,9888,10086,11256,12670,12872,13427,13534,14572,14751,14933,15050,15060,15098,15104,15115,16050,16244,16298,16624,16625,17691,17841,17898,18015,18084,18378,18582,18596,18682,19687,20071,20155,20317,20349,20463,20620,20678,21087,21093,21637,22573,22635,22684,22743,23072]]],["+",[25,24,[[0,6,5,0,5,[[1,1,1,0,1],[2,1,1,1,2],[10,1,1,2,3],[11,2,1,3,4],[12,1,1,4,5]]],[3,1,1,5,6,[[150,1,1,5,6]]],[5,1,1,6,7,[[193,1,1,6,7]]],[6,1,1,7,8,[[218,1,1,7,8]]],[11,1,1,8,9,[[331,1,1,8,9]]],[15,1,1,9,10,[[424,1,1,9,10]]],[18,4,4,10,14,[[551,1,1,10,11],[554,2,2,11,13],[620,1,1,13,14]]],[19,1,1,14,15,[[635,1,1,14,15]]],[22,4,4,15,19,[[680,1,1,15,16],[687,1,1,16,17],[723,1,1,17,18],[724,1,1,18,19]]],[25,1,1,19,20,[[812,1,1,19,20]]],[31,1,1,20,21,[[892,1,1,20,21]]],[32,1,1,21,22,[[897,1,1,21,22]]],[34,1,1,22,23,[[903,1,1,22,23]]],[37,1,1,23,24,[[924,1,1,23,24]]]],[38,79,268,306,329,4827,5978,6730,10086,12670,15060,15098,15104,16298,16625,17691,17841,18582,18596,20678,22573,22635,22743,23072]]],["aforetime",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19687]]],["ancient",[5,5,[[4,1,1,0,1,[[185,1,1,0,1]]],[22,4,4,1,5,[[697,1,1,1,2],[701,1,1,2,3],[715,1,1,3,4],[729,1,1,4,5]]]],[5825,18015,18084,18378,18682]]],["before",[2,2,[[18,1,1,0,1,[[616,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]]],[16244,16624]]],["country",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8874]]],["east",[25,24,[[0,4,4,0,4,[[9,1,1,0,1],[24,1,1,1,2],[27,1,1,2,3],[28,1,1,3,4]]],[1,2,2,4,6,[[76,1,1,4,5],[87,1,1,5,6]]],[3,4,4,6,10,[[119,1,1,6,7],[139,1,1,7,8],[150,1,1,8,9],[151,1,1,9,10]]],[5,3,3,10,13,[[201,1,1,10,11],[204,1,1,11,12],[205,1,1,12,13]]],[6,4,4,13,17,[[216,2,2,13,15],[217,1,1,15,16],[218,1,1,16,17]]],[17,1,1,17,18,[[436,1,1,17,18]]],[22,1,1,18,19,[[689,1,1,18,19]]],[23,1,1,19,20,[[793,1,1,19,20]]],[25,5,4,20,24,[[809,2,1,20,21],[826,2,2,21,23],[846,1,1,23,24]]]],[264,664,787,796,2285,2646,3730,4423,4826,4850,6207,6313,6334,6657,6687,6706,6729,12872,17898,20155,20620,21087,21093,21637]]],["eastward",[10,10,[[0,2,2,0,2,[[12,1,1,0,1],[24,1,1,1,2]]],[2,1,1,2,3,[[105,1,1,2,3]]],[3,3,3,3,6,[[150,3,3,3,6]]],[5,1,1,6,7,[[205,1,1,6,7]]],[10,2,2,7,9,[[297,1,1,7,8],[307,1,1,8,9]]],[11,1,1,9,10,[[325,1,1,9,10]]]],[332,664,3215,4819,4827,4831,6333,8973,9320,9888]]],["end",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11256]]],["eternal",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5837]]],["forward",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13427]]],["old",[11,11,[[18,6,6,0,6,[[521,1,1,0,1],[532,1,1,1,2],[545,1,1,2,3],[551,1,1,3,4],[555,1,1,4,5],[596,1,1,5,6]]],[23,1,1,6,7,[[790,1,1,6,7]]],[24,3,3,7,10,[[797,1,1,7,8],[798,1,1,8,9],[801,1,1,9,10]]],[32,1,1,10,11,[[899,1,1,10,11]]]],[14572,14751,14933,15050,15115,16050,20071,20317,20349,20463,22684]]],["part",[1,1,[[2,1,1,0,1,[[90,1,1,0,1]]]],[2761]]],["parts",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[3993]]],["past",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13534]]],["side",[1,1,[[3,1,1,0,1,[[118,1,1,0,1]]]],[3661]]]]},{"k":"H6925","v":[["*",[42,38,[[14,4,4,0,4,[[406,2,2,0,2],[409,2,2,2,4]]],[26,38,34,4,38,[[851,10,10,4,14],[852,1,1,14,15],[853,5,4,15,19],[854,6,6,19,25],[855,10,8,25,33],[856,6,5,33,38]]]],[12128,12133,12187,12192,21764,21767,21768,21769,21773,21776,21782,21783,21785,21794,21820,21839,21843,21844,21845,21887,21889,21891,21893,21897,21898,21906,21915,21916,21917,21918,21923,21927,21931,21940,21941,21943,21946,21953]]],["+",[12,11,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,11,10,1,11,[[851,3,3,1,4],[853,1,1,4,5],[854,2,2,5,7],[855,3,2,7,9],[856,2,2,9,11]]]],[12187,21764,21773,21776,21839,21893,21898,21906,21931,21941,21953]]],["before",[29,26,[[14,3,3,0,3,[[406,2,2,0,2],[409,1,1,2,3]]],[26,26,23,3,26,[[851,6,6,3,9],[852,1,1,9,10],[853,4,3,10,13],[854,4,4,13,17],[855,7,6,17,23],[856,4,3,23,26]]]],[12128,12133,12192,21767,21768,21769,21782,21783,21794,21820,21843,21844,21845,21887,21889,21891,21897,21915,21916,21917,21918,21923,21927,21940,21943,21946]]],["of",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21785]]]]},{"k":"H6926","v":[["*",[4,4,[[0,2,2,0,2,[[1,1,1,0,1],[3,1,1,1,2]]],[8,1,1,2,3,[[248,1,1,2,3]]],[25,1,1,3,4,[[840,1,1,3,4]]]],[44,95,7490,21459]]],["east",[3,3,[[0,2,2,0,2,[[1,1,1,0,1],[3,1,1,1,2]]],[25,1,1,2,3,[[840,1,1,2,3]]]],[44,95,21459]]],["eastward",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7490]]]]},{"k":"H6927","v":[["*",[6,4,[[18,1,1,0,1,[[606,1,1,0,1]]],[22,1,1,1,2,[[701,1,1,1,2]]],[25,4,2,2,4,[[817,3,1,2,3],[837,1,1,3,4]]]],[16138,18084,20817,21370]]],["+",[1,1,[[18,1,1,0,1,[[606,1,1,0,1]]]],[16138]]],["antiquity",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18084]]],["estate",[3,1,[[25,3,1,0,1,[[817,3,1,0,1]]]],[20817]]],["estates",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21370]]]]},{"k":"H6928","v":[["+",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[855,1,1,1,2]]]],[12145,21915]]]]},{"k":"H6929","v":[["Kedemah",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[673,10283]]]]},{"k":"H6930","v":[["east",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21687]]]]},{"k":"H6931","v":[["*",[10,10,[[8,1,1,0,1,[[259,1,1,0,1]]],[17,1,1,1,2,[[453,1,1,1,2]]],[22,1,1,2,3,[[721,1,1,2,3]]],[25,4,4,3,7,[[811,1,1,3,4],[812,1,1,4,5],[839,1,1,5,6],[848,1,1,6,7]]],[28,1,1,7,8,[[877,1,1,7,8]]],[37,1,1,8,9,[[924,1,1,8,9]]],[38,1,1,9,10,[[927,1,1,9,10]]]],[7852,13296,18523,20652,20656,21442,21697,22331,23076,23124]]],["ancients",[1,1,[[8,1,1,0,1,[[259,1,1,0,1]]]],[7852]]],["before",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13296]]],["east",[4,4,[[25,3,3,0,3,[[811,1,1,0,1],[812,1,1,1,2],[848,1,1,2,3]]],[28,1,1,3,4,[[877,1,1,3,4]]]],[20652,20656,21697,22331]]],["former",[2,2,[[37,1,1,0,1,[[924,1,1,0,1]]],[38,1,1,1,2,[[927,1,1,1,2]]]],[23076,23124]]],["old",[2,2,[[22,1,1,0,1,[[721,1,1,0,1]]],[25,1,1,1,2,[[839,1,1,1,2]]]],[18523,21442]]]]},{"k":"H6932","v":[["Kedemoth",[4,4,[[4,1,1,0,1,[[154,1,1,0,1]]],[5,2,2,1,3,[[199,1,1,1,2],[207,1,1,2,3]]],[12,1,1,3,4,[[343,1,1,3,4]]]],[4964,6172,6418,10533]]]]},{"k":"H6933","v":[["first",[3,3,[[26,3,3,0,3,[[856,3,3,0,3]]]],[21937,21941,21957]]]]},{"k":"H6934","v":[["Kadmiel",[8,8,[[14,2,2,0,2,[[404,1,1,0,1],[405,1,1,1,2]]],[15,6,6,2,8,[[419,1,1,2,3],[421,2,2,3,5],[422,1,1,5,6],[424,2,2,6,8]]]],[12067,12106,12463,12515,12516,12558,12632,12648]]]]},{"k":"H6935","v":[["Kadmonites",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[379]]]]},{"k":"H6936","v":[["*",[11,11,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,3,3,1,4,[[180,1,1,1,2],[185,2,2,2,4]]],[9,1,1,4,5,[[280,1,1,4,5]]],[17,1,1,5,6,[[437,1,1,5,6]]],[18,2,2,6,8,[[484,1,1,6,7],[545,1,1,7,8]]],[22,1,1,8,9,[[681,1,1,8,9]]],[23,2,2,9,11,[[746,1,1,9,10],[792,1,1,10,11]]]],[1499,5646,5826,5830,8381,12898,14011,14921,17724,18981,20125]]],["crown",[1,1,[[17,1,1,0,1,[[437,1,1,0,1]]]],[12898]]],["head",[8,8,[[0,1,1,0,1,[[48,1,1,0,1]]],[4,3,3,1,4,[[180,1,1,1,2],[185,2,2,2,4]]],[9,1,1,4,5,[[280,1,1,4,5]]],[22,1,1,5,6,[[681,1,1,5,6]]],[23,2,2,6,8,[[746,1,1,6,7],[792,1,1,7,8]]]],[1499,5646,5826,5830,8381,17724,18981,20125]]],["pate",[1,1,[[18,1,1,0,1,[[484,1,1,0,1]]]],[14011]]],["scalp",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14921]]]]},{"k":"H6937","v":[["*",[17,17,[[10,1,1,0,1,[[308,1,1,0,1]]],[17,3,3,1,4,[[440,1,1,1,2],[441,1,1,2,3],[465,1,1,3,4]]],[18,4,4,4,8,[[512,1,1,4,5],[515,1,1,5,6],[519,1,1,6,7],[520,1,1,7,8]]],[23,3,3,8,11,[[748,1,1,8,9],[752,1,1,9,10],[758,1,1,10,11]]],[25,3,3,11,14,[[832,1,1,11,12],[833,2,2,12,14]]],[28,2,2,14,16,[[877,1,1,14,15],[878,1,1,15,16]]],[32,1,1,16,17,[[895,1,1,16,17]]]],[9386,12962,12994,13585,14424,14496,14564,14568,19055,19174,19295,21245,21255,21256,22321,22358,22614]]],["+",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21255]]],["black",[4,4,[[10,1,1,0,1,[[308,1,1,0,1]]],[23,3,3,1,4,[[748,1,1,1,2],[752,1,1,2,3],[758,1,1,3,4]]]],[9386,19055,19174,19295]]],["blackish",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12994]]],["dark",[3,3,[[25,1,1,0,1,[[833,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]],[32,1,1,2,3,[[895,1,1,2,3]]]],[21256,22321,22614]]],["darkened",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22358]]],["heavily",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14424]]],["mourn",[2,2,[[17,1,1,0,1,[[440,1,1,0,1]]],[25,1,1,1,2,[[832,1,1,1,2]]]],[12962,21245]]],["mourning",[4,4,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,3,3,1,4,[[515,1,1,1,2],[519,1,1,2,3],[520,1,1,3,4]]]],[13585,14496,14564,14568]]]]},{"k":"H6938","v":[["Kedar",[12,11,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[18,1,1,2,3,[[597,1,1,2,3]]],[21,1,1,3,4,[[671,1,1,3,4]]],[22,4,4,4,8,[[699,2,2,4,6],[720,1,1,6,7],[738,1,1,7,8]]],[23,3,2,8,10,[[746,1,1,8,9],[793,2,1,9,10]]],[25,1,1,10,11,[[828,1,1,10,11]]]],[671,10281,16079,17542,18051,18052,18491,18828,18975,20155,21142]]]]},{"k":"H6939","v":[["Kidron",[11,10,[[9,1,1,0,1,[[281,1,1,0,1]]],[10,2,2,1,3,[[292,1,1,1,2],[305,1,1,2,3]]],[11,4,3,3,6,[[335,4,3,3,6]]],[13,3,3,6,9,[[381,1,1,6,7],[395,1,1,7,8],[396,1,1,8,9]]],[23,1,1,9,10,[[775,1,1,9,10]]]],[8412,8807,9262,10169,10171,10177,11506,11807,11841,19731]]]]},{"k":"H6940","v":[["blackness",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18665]]]]},{"k":"H6941","v":[["mournfully",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23134]]]]},{"k":"H6942","v":[["*",[171,152,[[0,1,1,0,1,[[1,1,1,0,1]]],[1,28,25,1,26,[[62,1,1,1,2],[68,4,4,2,6],[69,2,2,6,8],[77,3,3,8,11],[78,10,8,11,19],[79,3,2,19,21],[80,1,1,21,22],[89,4,4,22,26]]],[2,31,29,26,55,[[95,2,2,26,28],[97,5,5,28,33],[99,1,1,33,34],[100,1,1,34,35],[105,1,1,35,36],[109,2,2,36,38],[110,4,3,38,41],[111,6,5,41,46],[114,1,1,46,47],[116,8,8,47,55]]],[3,11,10,55,65,[[119,1,1,55,56],[122,1,1,56,57],[123,2,1,57,58],[124,1,1,58,59],[127,1,1,59,60],[132,2,2,60,62],[136,2,2,62,64],[143,1,1,64,65]]],[4,4,4,65,69,[[157,1,1,65,66],[167,1,1,66,67],[174,1,1,67,68],[184,1,1,68,69]]],[5,4,3,69,72,[[189,1,1,69,70],[193,2,1,70,71],[206,1,1,71,72]]],[6,2,1,72,73,[[227,2,1,72,73]]],[8,4,3,73,76,[[242,1,1,73,74],[251,2,1,74,75],[256,1,1,75,76]]],[9,3,2,76,78,[[274,2,1,76,77],[277,1,1,77,78]]],[10,3,3,78,81,[[298,1,1,78,79],[299,2,2,79,81]]],[11,2,2,81,83,[[322,1,1,81,82],[324,1,1,82,83]]],[12,8,7,83,90,[[352,2,2,83,85],[355,1,1,85,86],[360,1,1,86,87],[363,4,3,87,90]]],[13,24,20,90,110,[[368,1,1,90,91],[371,1,1,91,92],[373,3,3,92,95],[392,1,1,95,96],[395,8,5,96,101],[396,6,5,101,106],[397,2,2,106,108],[401,1,1,108,109],[402,1,1,109,110]]],[14,1,1,110,111,[[405,1,1,110,111]]],[15,5,3,111,114,[[415,2,1,111,112],[424,2,1,112,113],[425,1,1,113,114]]],[17,1,1,114,115,[[436,1,1,114,115]]],[22,8,7,115,122,[[683,1,1,115,116],[686,1,1,116,117],[691,1,1,117,118],[707,2,1,118,119],[708,1,1,119,120],[743,1,1,120,121],[744,1,1,121,122]]],[23,9,9,122,131,[[745,1,1,122,123],[750,1,1,123,124],[756,1,1,124,125],[761,3,3,125,128],[766,1,1,128,129],[795,2,2,129,131]]],[25,15,14,131,145,[[821,3,3,131,134],[829,2,2,134,136],[837,2,1,136,137],[838,1,1,137,138],[839,2,2,138,140],[840,1,1,140,141],[845,2,2,141,143],[847,1,1,143,144],[849,1,1,144,145]]],[28,4,4,145,149,[[876,1,1,145,146],[877,2,2,146,148],[878,1,1,148,149]]],[32,1,1,149,150,[[895,1,1,149,150]]],[35,1,1,150,151,[[906,1,1,150,151]]],[36,1,1,151,152,[[910,1,1,151,152]]]],[33,1869,2036,2040,2048,2049,2059,2062,2296,2331,2334,2337,2357,2363,2369,2372,2373,2379,2380,2411,2412,2433,2716,2717,2718,2720,2867,2876,2927,2928,2929,2932,2947,2980,3041,3220,3325,3326,3353,3360,3368,3371,3372,3378,3385,3401,3479,3584,3585,3586,3587,3588,3589,3592,3596,3705,3834,3851,3956,4042,4231,4232,4323,4324,4568,5065,5338,5479,5809,5898,5989,6379,6983,7353,7600,7777,8220,8263,9049,9054,9058,9813,9868,10803,10805,10901,10996,11103,11104,11105,11215,11279,11331,11340,11344,11750,11796,11806,11808,11810,11825,11830,11835,11842,11844,11851,11860,11872,11972,12007,12102,12328,12671,12693,12874,17755,17820,17909,18216,18246,18902,18939,18951,19093,19252,19379,19381,19384,19461,20239,20240,20907,20915,20936,21179,21182,21382,21425,21441,21448,21475,21618,21623,21675,21713,22305,22326,22327,22352,22613,22794,22867]]],["+",[31,29,[[1,4,4,0,4,[[68,1,1,0,1],[78,2,2,1,3],[89,1,1,3,4]]],[2,4,4,4,8,[[97,1,1,4,5],[114,1,1,5,6],[116,2,2,6,8]]],[3,1,1,8,9,[[122,1,1,8,9]]],[5,2,2,9,11,[[193,1,1,9,10],[206,1,1,10,11]]],[6,2,1,11,12,[[227,2,1,11,12]]],[8,1,1,12,13,[[251,1,1,12,13]]],[10,2,2,13,15,[[298,1,1,13,14],[299,1,1,14,15]]],[13,5,4,15,19,[[373,2,2,15,17],[395,3,2,17,19]]],[15,1,1,19,20,[[425,1,1,19,20]]],[22,3,3,20,23,[[686,1,1,20,21],[707,1,1,21,22],[708,1,1,22,23]]],[23,2,2,23,25,[[761,2,2,23,25]]],[25,4,4,25,29,[[837,1,1,25,26],[838,1,1,26,27],[845,1,1,27,28],[847,1,1,28,29]]]],[2040,2363,2380,2717,2947,3479,3584,3589,3834,5989,6379,6983,7600,9049,9054,11331,11340,11796,11808,12693,17820,18216,18246,19381,19384,21382,21425,21618,21675]]],["Prepare",[3,3,[[23,2,2,0,2,[[750,1,1,0,1],[795,1,1,1,2]]],[28,1,1,2,3,[[878,1,1,2,3]]]],[19093,20240,22352]]],["Proclaim",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9813]]],["Sanctify",[2,2,[[1,1,1,0,1,[[62,1,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]]],[1869,22305]]],["bid",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22794]]],["consecrate",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[79,1,1,1,2]]]],[2296,2412]]],["consecrated",[3,3,[[13,2,2,0,2,[[392,1,1,0,1],[397,1,1,1,2]]],[14,1,1,2,3,[[405,1,1,2,3]]]],[11750,11860,12102]]],["dedicate",[3,3,[[9,1,1,0,1,[[274,1,1,0,1]]],[12,1,1,1,2,[[363,1,1,1,2]]],[13,1,1,2,3,[[368,1,1,2,3]]]],[8220,11104,11215]]],["dedicated",[6,5,[[9,1,1,0,1,[[274,1,1,0,1]]],[11,1,1,1,2,[[324,1,1,1,2]]],[12,4,3,2,5,[[355,1,1,2,3],[363,3,2,3,5]]]],[8220,9868,10901,11103,11105]]],["defiled",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5479]]],["hallow",[10,10,[[1,3,3,0,3,[[77,1,1,0,1],[78,1,1,1,2],[89,1,1,2,3]]],[2,4,4,3,7,[[105,1,1,3,4],[111,3,3,4,7]]],[23,1,1,7,8,[[761,1,1,7,8]]],[25,2,2,8,10,[[821,1,1,8,9],[845,1,1,9,10]]]],[2331,2337,2716,3220,3371,3372,3401,19379,20915,21623]]],["hallowed",[8,8,[[1,2,2,0,2,[[69,1,1,0,1],[78,1,1,1,2]]],[2,1,1,2,3,[[111,1,1,2,3]]],[3,3,3,3,6,[[119,1,1,3,4],[132,2,2,4,6]]],[10,1,1,6,7,[[299,1,1,6,7]]],[13,1,1,7,8,[[402,1,1,7,8]]]],[2062,2357,3401,3705,4231,4232,9058,12007]]],["holier",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18902]]],["holy",[6,6,[[1,3,3,0,3,[[69,1,1,0,1],[78,1,1,1,2],[79,1,1,2,3]]],[2,2,2,3,5,[[95,2,2,3,5]]],[36,1,1,5,6,[[910,1,1,5,6]]]],[2059,2373,2411,2867,2876,22867]]],["myself",[1,1,[[25,1,1,0,1,[[839,1,1,0,1]]]],[21448]]],["ones",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17909]]],["prepare",[4,4,[[23,3,3,0,3,[[756,1,1,0,1],[766,1,1,1,2],[795,1,1,2,3]]],[32,1,1,3,4,[[895,1,1,3,4]]]],[19252,19461,20239,22613]]],["purified",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8263]]],["sanctified",[32,29,[[0,1,1,0,1,[[1,1,1,0,1]]],[1,1,1,1,2,[[78,1,1,1,2]]],[2,4,4,2,6,[[97,2,2,2,4],[99,1,1,4,5],[116,1,1,5,6]]],[3,4,3,6,9,[[123,2,1,6,7],[124,1,1,7,8],[136,1,1,8,9]]],[4,1,1,9,10,[[184,1,1,9,10]]],[8,2,2,10,12,[[242,1,1,10,11],[256,1,1,11,12]]],[13,5,5,12,17,[[371,1,1,12,13],[373,1,1,13,14],[395,1,1,14,15],[396,2,2,15,17]]],[15,4,2,17,19,[[415,2,1,17,18],[424,2,1,18,19]]],[17,1,1,19,20,[[436,1,1,19,20]]],[22,1,1,20,21,[[683,1,1,20,21]]],[23,1,1,21,22,[[745,1,1,21,22]]],[25,7,7,22,29,[[821,1,1,22,23],[829,2,2,23,25],[837,1,1,25,26],[839,1,1,26,27],[840,1,1,27,28],[849,1,1,28,29]]]],[33,2379,2927,2932,2980,3585,3851,3956,4324,5809,7353,7777,11279,11344,11810,11835,11844,12328,12671,12874,17755,18951,20936,21179,21182,21382,21441,21475,21713]]],["sanctify",[36,35,[[1,11,11,0,11,[[68,2,2,0,2],[77,1,1,2,3],[78,4,4,3,7],[79,1,1,7,8],[80,1,1,8,9],[89,2,2,9,11]]],[2,14,13,11,24,[[97,2,2,11,13],[109,1,1,13,14],[110,4,3,14,17],[111,2,2,17,19],[116,5,5,19,24]]],[3,2,2,24,26,[[136,1,1,24,25],[143,1,1,25,26]]],[4,2,2,26,28,[[157,1,1,26,27],[167,1,1,27,28]]],[12,1,1,28,29,[[360,1,1,28,29]]],[13,2,2,29,31,[[395,1,1,29,30],[396,1,1,30,31]]],[22,1,1,31,32,[[707,1,1,31,32]]],[25,1,1,32,33,[[821,1,1,32,33]]],[28,2,2,33,35,[[877,2,2,33,35]]]],[2036,2049,2334,2369,2372,2373,2380,2411,2433,2718,2720,2928,2929,3326,3353,3360,3368,3378,3385,3586,3587,3588,3592,3596,4323,4568,5065,5338,10996,11808,11844,18216,20907,22326,22327]]],["themselves",[10,9,[[1,1,1,0,1,[[68,1,1,0,1]]],[12,1,1,1,2,[[352,1,1,1,2]]],[13,7,6,2,8,[[395,3,2,2,4],[396,3,3,4,7],[397,1,1,7,8]]],[22,1,1,8,9,[[744,1,1,8,9]]]],[2048,10805,11806,11825,11830,11842,11851,11872,18939]]],["yourselves",[8,8,[[2,2,2,0,2,[[100,1,1,0,1],[109,1,1,1,2]]],[3,1,1,2,3,[[127,1,1,2,3]]],[5,2,2,3,5,[[189,1,1,3,4],[193,1,1,4,5]]],[8,1,1,5,6,[[251,1,1,5,6]]],[12,1,1,6,7,[[352,1,1,6,7]]],[13,1,1,7,8,[[401,1,1,7,8]]]],[3041,3325,4042,5898,5989,7600,10803,11972]]]]},{"k":"H6943","v":[["*",[12,12,[[5,5,5,0,5,[[198,1,1,0,1],[201,1,1,1,2],[205,1,1,2,3],[206,1,1,3,4],[207,1,1,4,5]]],[6,4,4,5,9,[[214,4,4,5,9]]],[11,1,1,9,10,[[327,1,1,9,10]]],[12,2,2,10,12,[[343,2,2,10,12]]]],[6152,6225,6358,6379,6413,6605,6608,6609,6610,9954,10526,10530]]],["+",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6605]]],["Kedesh",[11,11,[[5,5,5,0,5,[[198,1,1,0,1],[201,1,1,1,2],[205,1,1,2,3],[206,1,1,3,4],[207,1,1,4,5]]],[6,3,3,5,8,[[214,3,3,5,8]]],[11,1,1,8,9,[[327,1,1,8,9]]],[12,2,2,9,11,[[343,2,2,9,11]]]],[6152,6225,6358,6379,6413,6608,6609,6610,9954,10526,10530]]]]},{"k":"H6944","v":[["*",[470,382,[[1,70,53,0,53,[[52,1,1,0,1],[61,2,1,1,2],[64,2,2,2,4],[65,1,1,4,5],[71,1,1,5,6],[75,5,2,6,8],[77,8,7,8,15],[78,7,6,15,21],[79,15,10,21,31],[80,4,4,31,35],[84,4,3,35,38],[85,4,4,38,42],[86,1,1,42,43],[87,5,4,43,47],[88,6,3,47,50],[89,4,3,50,53]]],[2,92,70,53,123,[[91,4,2,53,55],[93,1,1,55,56],[94,3,2,56,58],[95,7,4,58,62],[96,4,2,62,64],[97,1,1,64,65],[99,9,5,65,70],[101,1,1,70,71],[103,3,1,71,72],[105,11,10,72,82],[108,2,2,82,84],[109,1,1,84,85],[110,4,2,85,87],[111,14,11,87,98],[112,12,12,98,110],[113,2,1,110,111],[114,1,1,111,112],[116,12,11,112,123]]],[3,57,48,123,171,[[119,5,5,123,128],[120,10,6,128,134],[121,2,2,134,136],[122,1,1,136,137],[123,15,15,137,152],[124,1,1,152,153],[134,14,9,153,162],[144,4,4,162,166],[145,3,3,166,169],[147,1,1,169,170],[151,1,1,170,171]]],[4,4,4,171,175,[[164,1,1,171,172],[178,2,2,172,174],[185,1,1,174,175]]],[5,2,2,175,177,[[191,1,1,175,176],[192,1,1,176,177]]],[8,3,3,177,180,[[256,3,3,177,180]]],[10,12,8,180,188,[[296,2,1,180,181],[297,3,2,181,183],[298,5,4,183,187],[305,2,1,187,188]]],[11,3,2,188,190,[[324,3,2,188,190]]],[12,17,15,190,205,[[343,2,1,190,191],[346,1,1,191,192],[353,3,3,192,195],[359,1,1,195,196],[360,4,3,196,199],[361,1,1,199,200],[363,2,2,200,202],[365,1,1,202,203],[366,2,2,203,205]]],[13,31,24,205,229,[[369,4,2,205,207],[370,2,1,207,208],[371,6,4,208,212],[374,1,1,212,213],[381,2,1,213,214],[386,1,1,214,215],[389,1,1,215,216],[390,1,1,216,217],[395,3,3,217,220],[396,2,2,220,222],[397,5,4,222,226],[401,3,3,226,229]]],[14,6,4,229,233,[[404,2,1,229,230],[410,2,1,230,231],[411,2,2,231,233]]],[15,7,6,233,239,[[419,2,1,233,234],[421,1,1,234,235],[422,2,2,235,237],[423,2,2,237,239]]],[18,45,45,239,284,[[479,1,1,239,240],[480,1,1,240,241],[482,1,1,241,242],[488,1,1,242,243],[492,1,1,243,244],[497,2,2,244,246],[501,1,1,246,247],[505,1,1,247,248],[506,1,1,248,249],[507,1,1,249,250],[510,1,1,250,251],[520,1,1,251,252],[524,1,1,252,253],[525,1,1,253,254],[528,1,1,254,255],[537,1,1,255,256],[540,1,1,256,257],[545,3,3,257,260],[551,1,1,260,261],[554,1,1,261,262],[555,1,1,262,263],[556,1,1,263,264],[564,1,1,264,265],[566,2,2,265,267],[570,1,1,267,268],[573,1,1,268,269],[574,1,1,269,270],[575,1,1,270,271],[576,1,1,271,272],[579,1,1,272,273],[580,1,1,273,274],[582,2,2,274,276],[583,1,1,276,277],[585,1,1,277,278],[587,1,1,278,279],[591,1,1,279,280],[611,1,1,280,281],[615,1,1,281,282],[622,1,1,282,283],[627,1,1,283,284]]],[19,1,1,284,285,[[647,1,1,284,285]]],[22,23,23,285,308,[[684,1,1,285,286],[689,1,1,286,287],[701,1,1,287,288],[705,1,1,288,289],[713,1,1,289,290],[721,1,1,290,291],[726,1,1,291,292],[730,2,2,292,294],[734,1,1,294,295],[735,1,1,295,296],[736,1,1,296,297],[740,2,2,297,299],[741,4,4,299,303],[742,2,2,303,305],[743,2,2,305,307],[744,1,1,307,308]]],[23,6,6,308,314,[[746,1,1,308,309],[755,1,1,309,310],[767,1,1,310,311],[769,1,1,311,312],[775,2,2,312,314]]],[24,1,1,314,315,[[800,1,1,314,315]]],[25,57,38,315,353,[[821,3,2,315,317],[823,3,2,317,319],[829,1,1,319,320],[837,4,4,320,324],[840,3,2,324,326],[842,4,3,326,329],[843,8,3,329,332],[844,4,3,332,335],[845,8,5,335,340],[846,9,6,340,346],[847,1,1,346,347],[849,9,6,347,353]]],[26,13,10,353,363,[[857,2,2,353,355],[858,6,4,355,359],[860,4,3,359,362],[861,1,1,362,363]]],[28,3,2,363,365,[[877,1,1,363,364],[878,2,1,364,365]]],[29,2,2,365,367,[[880,1,1,365,366],[882,1,1,366,367]]],[30,2,2,367,369,[[888,2,2,367,369]]],[31,2,2,369,371,[[890,2,2,369,371]]],[32,1,1,371,372,[[893,1,1,371,372]]],[34,1,1,372,373,[[904,1,1,372,373]]],[35,2,2,373,375,[[908,2,2,373,375]]],[36,1,1,375,376,[[910,1,1,375,376]]],[37,5,5,376,381,[[912,2,2,376,378],[918,1,1,378,379],[924,2,2,379,381]]],[38,1,1,381,382,[[926,1,1,381,382]]]],[1584,1832,1931,1933,1970,2144,2268,2269,2295,2297,2322,2328,2329,2331,2336,2342,2365,2366,2369,2370,2373,2392,2395,2406,2407,2411,2413,2414,2417,2418,2419,2430,2431,2434,2435,2533,2550,2552,2567,2569,2570,2572,2633,2657,2658,2659,2660,2665,2694,2705,2716,2717,2720,2765,2772,2801,2845,2846,2866,2874,2878,2879,2880,2885,2926,2981,2987,2989,2994,2995,3048,3124,3203,3204,3205,3217,3218,3221,3224,3228,3233,3234,3289,3305,3321,3351,3367,3371,3372,3373,3375,3376,3379,3381,3383,3384,3385,3401,3404,3405,3406,3409,3410,3422,3423,3426,3429,3437,3438,3439,3455,3481,3573,3579,3580,3584,3591,3593,3595,3598,3600,3602,3603,3720,3723,3724,3739,3742,3747,3755,3758,3759,3762,3763,3801,3802,3843,3859,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935,3936,3958,4260,4262,4265,4266,4267,4273,4274,4276,4289,4584,4595,4602,4603,4609,4615,4620,4670,4870,5266,5579,5581,5812,5949,5968,7776,7777,7778,8912,8984,8985,8989,8991,8993,8995,9264,9854,9868,10503,10644,10830,10849,10855,10983,10996,11011,11015,11020,11097,11103,11155,11167,11180,11237,11239,11268,11269,11273,11275,11279,11357,11508,11608,11662,11684,11796,11798,11824,11846,11854,11860,11866,11868,11872,11969,11971,11979,12090,12229,12239,12245,12485,12525,12580,12582,12589,12606,13951,13961,13980,14063,14088,14184,14188,14244,14301,14310,14323,14387,14569,14633,14635,14702,14813,14841,14905,14917,14924,15051,15106,15167,15186,15302,15346,15361,15431,15474,15490,15491,15508,15540,15550,15609,15648,15698,15749,15789,15824,16174,16233,16341,16395,16979,17782,17893,18095,18164,18328,18533,18616,18697,18706,18760,18778,18799,18863,18866,18876,18877,18881,18884,18895,18896,18908,18922,18942,18968,19241,19493,19564,19714,19731,20421,20934,20935,20984,21002,21171,21379,21380,21381,21397,21455,21473,21530,21547,21549,21565,21566,21572,21579,21580,21584,21607,21612,21618,21622,21626,21631,21632,21633,21634,21636,21637,21674,21712,21714,21716,21720,21722,21723,21974,21975,22004,22008,22012,22014,22064,22066,22081,22088,22312,22360,22386,22412,22526,22527,22552,22555,22581,22768,22824,22831,22867,22911,22912,22979,23088,23089,23114]]],["+",[89,44,[[1,14,7,0,7,[[75,4,2,0,2],[78,2,1,2,3],[79,6,3,3,6],[89,2,1,6,7]]],[2,27,14,7,21,[[91,4,2,7,9],[95,6,3,9,12],[96,4,2,12,14],[99,4,2,14,16],[103,2,1,16,17],[110,2,1,17,18],[111,1,1,18,19],[113,2,1,19,20],[116,2,1,20,21]]],[3,10,4,21,25,[[120,4,2,21,23],[134,6,2,23,25]]],[10,2,1,25,26,[[296,2,1,25,26]]],[12,4,2,26,28,[[343,2,1,26,27],[360,2,1,27,28]]],[13,10,5,28,33,[[369,4,2,28,30],[370,2,1,30,31],[371,2,1,31,32],[397,2,1,32,33]]],[14,2,1,33,34,[[404,2,1,33,34]]],[15,2,1,34,35,[[419,2,1,34,35]]],[18,1,1,35,36,[[497,1,1,35,36]]],[25,15,7,36,43,[[842,2,1,36,37],[843,5,2,37,39],[844,2,1,39,40],[845,2,1,40,41],[846,2,1,41,42],[849,2,1,42,43]]],[26,2,1,43,44,[[858,2,1,43,44]]]],[2268,2269,2373,2392,2411,2418,2717,2765,2772,2866,2874,2878,2880,2885,2989,2994,3124,3367,3371,3455,3598,3747,3762,4266,4267,8912,10503,10996,11237,11239,11268,11275,11868,12090,12485,14184,21530,21565,21566,21584,21612,21633,21714,22012]]],["HOLINESS",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[37,1,1,2,3,[[924,1,1,2,3]]]],[2329,2694,23088]]],["consecrated",[1,1,[[5,1,1,0,1,[[192,1,1,0,1]]]],[5968]]],["dedicated",[7,5,[[10,3,2,0,2,[[297,1,1,0,1],[305,2,1,1,2]]],[13,4,3,2,5,[[371,1,1,2,3],[381,2,1,3,4],[397,1,1,4,5]]]],[8985,9264,11269,11508,11866]]],["hallowed",[2,2,[[8,2,2,0,2,[[256,2,2,0,2]]]],[7776,7778]]],["holiness",[27,27,[[1,1,1,0,1,[[64,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[13,2,2,2,4,[[386,1,1,2,3],[397,1,1,3,4]]],[18,11,11,4,15,[[506,1,1,4,5],[507,1,1,5,6],[524,1,1,6,7],[525,1,1,7,8],[537,1,1,8,9],[566,1,1,9,10],[570,1,1,10,11],[573,1,1,11,12],[574,1,1,12,13],[585,1,1,13,14],[587,1,1,14,15]]],[22,5,5,15,20,[[701,1,1,15,16],[713,1,1,16,17],[740,1,1,17,18],[741,2,2,18,20]]],[23,3,3,20,23,[[746,1,1,20,21],[767,1,1,21,22],[775,1,1,22,23]]],[29,1,1,23,24,[[882,1,1,23,24]]],[30,1,1,24,25,[[888,1,1,24,25]]],[37,1,1,25,26,[[924,1,1,25,26]]],[38,1,1,26,27,[[926,1,1,26,27]]]],[1931,10849,11608,11872,14310,14323,14633,14635,14813,15361,15431,15474,15490,15749,15789,18095,18328,18863,18881,18884,18968,19493,19714,22412,22527,23089,23114]]],["holy",[228,213,[[1,42,36,0,36,[[52,1,1,0,1],[61,2,1,1,2],[64,1,1,2,3],[65,1,1,3,4],[71,1,1,4,5],[75,1,1,5,6],[77,6,6,6,12],[78,5,5,12,17],[79,7,5,17,22],[80,4,4,22,26],[84,4,3,26,29],[86,1,1,29,30],[87,1,1,30,31],[88,5,3,31,34],[89,2,2,34,36]]],[2,44,42,36,78,[[95,1,1,36,37],[97,1,1,37,38],[99,4,3,38,41],[103,1,1,41,42],[105,11,10,42,52],[108,1,1,52,53],[109,1,1,53,54],[110,2,2,54,56],[111,2,2,56,58],[112,12,12,58,70],[114,1,1,70,71],[116,7,7,71,78]]],[3,12,12,78,90,[[122,1,1,78,79],[134,2,2,79,81],[144,4,4,81,85],[145,3,3,85,88],[147,1,1,88,89],[151,1,1,89,90]]],[4,1,1,90,91,[[178,1,1,90,91]]],[5,1,1,91,92,[[191,1,1,91,92]]],[8,1,1,92,93,[[256,1,1,92,93]]],[10,5,5,93,98,[[297,1,1,93,94],[298,4,4,94,98]]],[12,6,6,98,104,[[353,2,2,98,100],[359,1,1,100,101],[360,1,1,101,102],[366,2,2,102,104]]],[13,10,10,104,114,[[371,2,2,104,106],[374,1,1,106,107],[389,1,1,107,108],[395,2,2,108,110],[396,1,1,110,111],[401,3,3,111,114]]],[14,4,3,114,117,[[410,2,1,114,115],[411,2,2,115,117]]],[15,5,5,117,122,[[421,1,1,117,118],[422,2,2,118,120],[423,2,2,120,122]]],[18,24,24,122,146,[[479,1,1,122,123],[480,1,1,123,124],[482,1,1,124,125],[488,1,1,125,126],[492,1,1,126,127],[497,1,1,127,128],[501,1,1,128,129],[505,1,1,129,130],[510,1,1,130,131],[520,1,1,131,132],[528,1,1,132,133],[545,2,2,133,135],[556,1,1,135,136],[564,1,1,136,137],[566,1,1,137,138],[575,1,1,138,139],[576,1,1,139,140],[580,1,1,140,141],[582,2,2,141,143],[583,1,1,143,144],[615,1,1,144,145],[622,1,1,145,146]]],[19,1,1,146,147,[[647,1,1,146,147]]],[22,17,17,147,164,[[684,1,1,147,148],[689,1,1,148,149],[705,1,1,149,150],[726,1,1,150,151],[730,2,2,151,153],[734,1,1,153,154],[735,1,1,154,155],[736,1,1,155,156],[740,1,1,156,157],[741,2,2,157,159],[742,2,2,159,161],[743,2,2,161,163],[744,1,1,163,164]]],[23,3,3,164,167,[[755,1,1,164,165],[769,1,1,165,166],[775,1,1,166,167]]],[25,30,26,167,193,[[821,2,2,167,169],[823,1,1,169,170],[829,1,1,170,171],[837,4,4,171,175],[840,3,2,175,177],[843,2,2,177,179],[844,2,2,179,181],[845,2,2,181,183],[846,5,4,183,187],[847,1,1,187,188],[849,7,5,188,193]]],[26,8,7,193,200,[[858,3,3,193,196],[860,4,3,196,199],[861,1,1,199,200]]],[28,3,2,200,202,[[877,1,1,200,201],[878,2,1,201,202]]],[29,1,1,202,203,[[880,1,1,202,203]]],[30,1,1,203,204,[[888,1,1,203,204]]],[31,2,2,204,206,[[890,2,2,204,206]]],[32,1,1,206,207,[[893,1,1,206,207]]],[34,1,1,207,208,[[904,1,1,207,208]]],[35,1,1,208,209,[[908,1,1,208,209]]],[36,1,1,209,210,[[910,1,1,209,210]]],[37,3,3,210,213,[[912,2,2,210,212],[918,1,1,212,213]]]],[1584,1832,1933,1970,2144,2268,2295,2297,2322,2328,2331,2336,2342,2365,2366,2369,2370,2407,2413,2414,2417,2419,2430,2431,2434,2435,2533,2550,2552,2633,2657,2665,2694,2705,2716,2720,2879,2926,2987,2994,2995,3124,3203,3204,3205,3217,3218,3221,3224,3228,3233,3234,3305,3321,3351,3367,3371,3401,3404,3405,3406,3409,3410,3422,3423,3426,3429,3437,3438,3439,3481,3579,3580,3584,3591,3600,3602,3603,3843,4267,4274,4584,4595,4602,4603,4609,4615,4620,4670,4870,5581,5949,7777,8984,8989,8991,8993,8995,10830,10855,10983,11015,11167,11180,11273,11279,11357,11662,11796,11798,11854,11969,11971,11979,12229,12239,12245,12525,12580,12582,12589,12606,13951,13961,13980,14063,14088,14188,14244,14301,14387,14569,14702,14905,14917,15186,15302,15346,15491,15508,15550,15609,15648,15698,16233,16341,16979,17782,17893,18164,18616,18697,18706,18760,18778,18799,18866,18876,18877,18895,18896,18908,18922,18942,19241,19564,19731,20934,20935,21002,21171,21379,21380,21381,21397,21455,21473,21565,21566,21579,21580,21618,21622,21631,21634,21636,21637,21674,21712,21716,21720,21722,21723,22004,22008,22012,22064,22066,22081,22088,22312,22360,22386,22526,22552,22555,22581,22768,22831,22867,22911,22912,22979]]],["most",[2,2,[[10,2,2,0,2,[[297,1,1,0,1],[298,1,1,1,2]]]],[8984,8991]]],["portion",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21631]]],["saints",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5812]]],["sanctuary",[67,65,[[1,10,10,0,10,[[79,2,2,0,2],[85,4,4,2,6],[87,4,4,6,10]]],[2,5,5,10,15,[[93,1,1,10,11],[94,1,1,11,12],[99,1,1,12,13],[116,2,2,13,15]]],[3,28,27,15,42,[[119,5,5,15,20],[120,4,3,20,23],[123,15,15,23,38],[124,1,1,38,39],[134,3,3,39,42]]],[12,2,2,42,44,[[346,1,1,42,43],[361,1,1,43,44]]],[13,1,1,44,45,[[396,1,1,44,45]]],[18,9,9,45,54,[[540,1,1,45,46],[545,1,1,46,47],[551,1,1,47,48],[554,1,1,48,49],[555,1,1,49,50],[579,1,1,50,51],[591,1,1,51,52],[611,1,1,52,53],[627,1,1,53,54]]],[22,1,1,54,55,[[721,1,1,54,55]]],[24,1,1,55,56,[[800,1,1,55,56]]],[25,6,5,56,61,[[842,2,2,56,58],[843,1,1,58,59],[845,2,1,59,60],[846,1,1,60,61]]],[26,3,3,61,64,[[857,2,2,61,63],[858,1,1,63,64]]],[35,1,1,64,65,[[908,1,1,64,65]]]],[2395,2406,2567,2569,2570,2572,2657,2658,2659,2660,2801,2845,2981,3573,3595,3720,3723,3724,3739,3742,3755,3758,3759,3859,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935,3936,3958,4260,4262,4273,10644,11020,11846,14841,14924,15051,15106,15167,15540,15824,16174,16395,18533,20421,21547,21549,21572,21626,21632,21974,21975,22014,22824]]],["thing",[9,7,[[2,8,6,0,6,[[94,1,1,0,1],[101,1,1,1,2],[108,1,1,2,3],[111,4,2,3,5],[116,1,1,5,6]]],[3,1,1,6,7,[[120,1,1,6,7]]]],[2846,3048,3289,3379,3383,3593,3758]]],["things",[33,32,[[1,1,1,0,1,[[77,1,1,0,1]]],[2,8,8,1,9,[[94,1,1,1,2],[111,7,7,2,9]]],[3,6,6,9,15,[[120,1,1,9,10],[121,2,2,10,12],[134,3,3,12,15]]],[4,2,2,15,17,[[164,1,1,15,16],[178,1,1,16,17]]],[11,3,2,17,19,[[324,3,2,17,19]]],[12,4,4,19,23,[[360,1,1,19,20],[363,2,2,20,22],[365,1,1,22,23]]],[13,4,4,23,27,[[371,1,1,23,24],[390,1,1,24,25],[395,1,1,25,26],[397,1,1,26,27]]],[25,5,5,27,32,[[821,1,1,27,28],[823,2,2,28,30],[845,2,2,30,32]]]],[2331,2845,3372,3373,3375,3376,3381,3384,3385,3763,3801,3802,4265,4276,4289,5266,5579,9854,9868,11011,11097,11103,11155,11269,11684,11824,11860,20935,20984,21002,21607,21612]]]]},{"k":"H6945","v":[["*",[6,6,[[4,1,1,0,1,[[175,1,1,0,1]]],[10,3,3,1,4,[[304,1,1,1,2],[305,1,1,2,3],[312,1,1,3,4]]],[11,1,1,4,5,[[335,1,1,4,5]]],[17,1,1,5,6,[[471,1,1,5,6]]]],[5517,9242,9261,9526,10172,13750]]],["sodomite",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5517]]],["sodomites",[4,4,[[10,3,3,0,3,[[304,1,1,0,1],[305,1,1,1,2],[312,1,1,2,3]]],[11,1,1,3,4,[[335,1,1,3,4]]]],[9242,9261,9526,10172]]],["unclean",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13750]]]]},{"k":"H6946","v":[["*",[18,18,[[0,3,3,0,3,[[13,1,1,0,1],[15,1,1,1,2],[19,1,1,2,3]]],[3,8,8,3,11,[[129,1,1,3,4],[136,4,4,4,8],[143,1,1,8,9],[149,2,2,9,11]]],[4,2,2,11,13,[[153,1,1,11,12],[184,1,1,12,13]]],[6,2,2,13,15,[[221,2,2,13,15]]],[18,1,1,15,16,[[506,1,1,15,16]]],[25,2,2,16,18,[[848,1,1,16,17],[849,1,1,17,18]]]],[343,395,496,4101,4312,4325,4327,4333,4568,4796,4797,4938,5809,6845,6846,14316,21698,21730]]],["+",[4,4,[[3,3,3,0,3,[[136,2,2,0,2],[149,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]]],[4325,4333,4797,5809]]],["Kadesh",[14,14,[[0,3,3,0,3,[[13,1,1,0,1],[15,1,1,1,2],[19,1,1,2,3]]],[3,5,5,3,8,[[129,1,1,3,4],[136,2,2,4,6],[143,1,1,6,7],[149,1,1,7,8]]],[4,1,1,8,9,[[153,1,1,8,9]]],[6,2,2,9,11,[[221,2,2,9,11]]],[18,1,1,11,12,[[506,1,1,11,12]]],[25,2,2,12,14,[[848,1,1,12,13],[849,1,1,13,14]]]],[343,395,496,4101,4312,4327,4568,4796,4938,6845,6846,14316,21698,21730]]]]},{"k":"H6947","v":[["*",[10,10,[[3,2,2,0,2,[[148,1,1,0,1],[150,1,1,1,2]]],[4,4,4,2,6,[[153,2,2,2,4],[154,1,1,4,5],[161,1,1,5,6]]],[5,4,4,6,10,[[196,1,1,6,7],[200,2,2,7,9],[201,1,1,9,10]]]],[4726,4820,4894,4911,4952,5180,6105,6193,6194,6205]]],["+",[5,5,[[3,1,1,0,1,[[148,1,1,0,1]]],[4,2,2,1,3,[[154,1,1,1,2],[161,1,1,2,3]]],[5,2,2,3,5,[[196,1,1,3,4],[200,1,1,4,5]]]],[4726,4952,5180,6105,6194]]],["Kadeshbarnea",[5,5,[[3,1,1,0,1,[[150,1,1,0,1]]],[4,2,2,1,3,[[153,2,2,1,3]]],[5,2,2,3,5,[[200,1,1,3,4],[201,1,1,4,5]]]],[4820,4894,4911,6193,6205]]]]},{"k":"H6948","v":[["*",[5,4,[[0,3,2,0,2,[[37,3,2,0,2]]],[4,1,1,2,3,[[175,1,1,2,3]]],[27,1,1,3,4,[[865,1,1,3,4]]]],[1140,1141,5517,22147]]],["harlot",[3,2,[[0,3,2,0,2,[[37,3,2,0,2]]]],[1140,1141]]],["harlots",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22147]]],["whore",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5517]]]]},{"k":"H6949","v":[["*",[4,4,[[20,1,1,0,1,[[668,1,1,0,1]]],[23,2,2,1,3,[[775,2,2,1,3]]],[25,1,1,3,4,[[819,1,1,3,4]]]],[17503,19720,19721,20851]]],["blunt",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17503]]],["edge",[3,3,[[23,2,2,0,2,[[775,2,2,0,2]]],[25,1,1,2,3,[[819,1,1,2,3]]]],[19720,19721,20851]]]]},{"k":"H6950","v":[["*",[38,38,[[1,2,2,0,2,[[81,1,1,0,1],[84,1,1,1,2]]],[2,2,2,2,4,[[97,2,2,2,4]]],[3,9,9,4,13,[[117,1,1,4,5],[124,1,1,5,6],[126,1,1,6,7],[132,3,3,7,10],[136,3,3,10,13]]],[4,3,3,13,16,[[156,1,1,13,14],[183,2,2,14,16]]],[5,2,2,16,18,[[204,1,1,16,17],[208,1,1,17,18]]],[6,1,1,18,19,[[230,1,1,18,19]]],[10,3,3,19,22,[[298,2,2,19,21],[302,1,1,21,22]]],[12,3,3,22,25,[[350,1,1,22,23],[352,1,1,23,24],[365,1,1,24,25]]],[13,4,4,25,29,[[371,2,2,25,27],[377,1,1,27,28],[386,1,1,28,29]]],[16,5,5,29,34,[[433,1,1,29,30],[434,4,4,30,34]]],[17,1,1,34,35,[[446,1,1,34,35]]],[23,1,1,35,36,[[770,1,1,35,36]]],[25,2,2,36,38,[[839,2,2,36,38]]]],[2439,2532,2920,2921,3622,3948,3995,4197,4213,4236,4313,4319,4321,5014,5740,5756,6294,6438,7055,8986,8987,9172,10765,10794,11144,11270,11271,11415,11613,12828,12836,12849,12850,12852,13118,19581,21432,21438]]],["+",[14,14,[[1,1,1,0,1,[[84,1,1,0,1]]],[3,4,4,1,5,[[124,1,1,1,2],[132,1,1,2,3],[136,2,2,3,5]]],[4,2,2,5,7,[[156,1,1,5,6],[183,1,1,6,7]]],[10,2,2,7,9,[[298,1,1,7,8],[302,1,1,8,9]]],[12,3,3,9,12,[[350,1,1,9,10],[352,1,1,10,11],[365,1,1,11,12]]],[13,2,2,12,14,[[371,1,1,12,13],[377,1,1,13,14]]]],[2532,3948,4213,4319,4321,5014,5740,8986,9172,10765,10794,11144,11270,11415]]],["Gather",[1,1,[[4,1,1,0,1,[[183,1,1,0,1]]]],[5756]]],["assembled",[2,2,[[3,1,1,0,1,[[117,1,1,0,1]]],[25,1,1,1,2,[[839,1,1,1,2]]]],[3622,21432]]],["gather",[1,1,[[2,1,1,0,1,[[97,1,1,0,1]]]],[2920]]],["gathered",[3,3,[[3,1,1,0,1,[[132,1,1,0,1]]],[23,1,1,1,2,[[770,1,1,1,2]]],[25,1,1,2,3,[[839,1,1,2,3]]]],[4236,19581,21438]]],["themselves",[3,3,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,2,2,1,3,[[371,1,1,1,2],[386,1,1,2,3]]]],[8987,11271,11613]]],["together",[14,14,[[1,1,1,0,1,[[81,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]],[3,3,3,2,5,[[126,1,1,2,3],[132,1,1,3,4],[136,1,1,4,5]]],[5,2,2,5,7,[[204,1,1,5,6],[208,1,1,6,7]]],[6,1,1,7,8,[[230,1,1,7,8]]],[16,5,5,8,13,[[433,1,1,8,9],[434,4,4,9,13]]],[17,1,1,13,14,[[446,1,1,13,14]]]],[2439,2921,3995,4197,4313,6294,6438,7055,12828,12836,12849,12850,12852,13118]]]]},{"k":"H6951","v":[["*",[123,116,[[0,4,4,0,4,[[27,1,1,0,1],[34,1,1,1,2],[47,1,1,2,3],[48,1,1,3,4]]],[1,2,2,4,6,[[61,1,1,4,5],[65,1,1,5,6]]],[2,5,5,6,11,[[93,3,3,6,9],[105,2,2,9,11]]],[3,12,12,11,23,[[126,1,1,11,12],[130,1,1,12,13],[131,1,1,13,14],[132,3,3,14,17],[135,1,1,17,18],[136,4,4,18,22],[138,1,1,22,23]]],[4,11,9,23,32,[[157,1,1,23,24],[161,1,1,24,25],[162,1,1,25,26],[170,1,1,26,27],[175,6,4,27,31],[183,1,1,31,32]]],[5,1,1,32,33,[[194,1,1,32,33]]],[6,3,3,33,36,[[230,1,1,33,34],[231,2,2,34,36]]],[8,1,1,36,37,[[252,1,1,36,37]]],[10,6,5,37,42,[[298,5,4,37,41],[302,1,1,41,42]]],[12,7,6,42,48,[[350,2,2,42,44],[365,1,1,44,45],[366,4,3,45,48]]],[13,26,23,48,71,[[367,2,2,48,50],[372,4,3,50,53],[373,1,1,53,54],[386,2,2,54,56],[389,1,1,56,57],[390,1,1,57,58],[394,1,1,58,59],[395,4,4,59,63],[396,9,7,63,70],[397,1,1,70,71]]],[14,5,5,71,76,[[404,1,1,71,72],[412,4,4,72,76]]],[15,5,5,76,81,[[417,1,1,76,77],[419,1,1,77,78],[420,2,2,78,80],[425,1,1,80,81]]],[17,1,1,81,82,[[465,1,1,81,82]]],[18,9,9,82,91,[[499,2,2,82,84],[503,1,1,84,85],[512,1,1,85,86],[517,2,2,86,88],[566,1,1,88,89],[584,1,1,89,90],[626,1,1,90,91]]],[19,3,3,91,94,[[632,1,1,91,92],[648,1,1,92,93],[653,1,1,93,94]]],[23,4,4,94,98,[[770,1,1,94,95],[775,1,1,95,96],[788,1,1,96,97],[794,1,1,97,98]]],[24,1,1,98,99,[[797,1,1,98,99]]],[25,15,15,99,114,[[817,1,1,99,100],[818,1,1,100,101],[824,3,3,101,104],[827,1,1,104,105],[828,2,2,105,107],[833,3,3,107,110],[839,4,4,110,114]]],[28,1,1,114,115,[[877,1,1,114,115]]],[32,1,1,115,116,[[894,1,1,115,116]]]],[776,1022,1455,1479,1822,1950,2808,2809,2816,3218,3234,3995,4113,4168,4197,4227,4241,4309,4315,4317,4321,4323,4379,5075,5167,5190,5400,5501,5502,5503,5508,5758,6037,7056,7107,7110,7665,8999,9007,9040,9050,9154,10762,10764,11151,11165,11174,11184,11197,11199,11285,11294,11295,11332,11592,11601,11659,11683,11778,11814,11819,11822,11823,11829,11831,11840,11844,11850,11851,11852,11872,12091,12253,12260,12264,12266,12395,12486,12495,12510,12672,13585,14226,14229,14278,14428,14534,14535,15331,15731,16386,16531,17000,17167,19589,19699,20025,20175,20320,20802,20842,21031,21053,21054,21107,21148,21155,21251,21270,21271,21429,21432,21438,21440,22327,22600]]],["+",[2,2,[[3,1,1,0,1,[[136,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]]],[4321,12260]]],["assembly",[17,17,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[61,1,1,1,2],[65,1,1,2,3]]],[2,1,1,3,4,[[93,1,1,3,4]]],[3,2,2,4,6,[[130,1,1,4,5],[136,1,1,5,6]]],[4,4,4,6,10,[[157,1,1,6,7],[161,1,1,7,8],[162,1,1,8,9],[170,1,1,9,10]]],[6,2,2,10,12,[[230,1,1,10,11],[231,1,1,11,12]]],[8,1,1,12,13,[[252,1,1,12,13]]],[13,1,1,13,14,[[396,1,1,13,14]]],[23,2,2,14,16,[[770,1,1,14,15],[794,1,1,15,16]]],[25,1,1,16,17,[[824,1,1,16,17]]]],[1479,1822,1950,2808,4113,4317,5075,5167,5190,5400,7056,7110,7665,11850,19589,20175,21031]]],["companies",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21107]]],["company",[16,16,[[0,1,1,0,1,[[34,1,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]],[25,13,13,3,16,[[817,1,1,3,4],[818,1,1,4,5],[824,2,2,5,7],[828,2,2,7,9],[833,3,3,9,12],[839,4,4,12,16]]]],[1022,4379,19699,20802,20842,21053,21054,21148,21155,21251,21270,21271,21429,21432,21438,21440]]],["congregation",[84,77,[[2,4,4,0,4,[[93,2,2,0,2],[105,2,2,2,4]]],[3,8,8,4,12,[[126,1,1,4,5],[131,1,1,5,6],[132,3,3,6,9],[135,1,1,9,10],[136,2,2,10,12]]],[4,7,5,12,17,[[175,6,4,12,16],[183,1,1,16,17]]],[5,1,1,17,18,[[194,1,1,17,18]]],[6,1,1,18,19,[[231,1,1,18,19]]],[10,6,5,19,24,[[298,5,4,19,23],[302,1,1,23,24]]],[12,7,6,24,30,[[350,2,2,24,26],[365,1,1,26,27],[366,4,3,27,30]]],[13,25,22,30,52,[[367,2,2,30,32],[372,4,3,32,35],[373,1,1,35,36],[386,2,2,36,38],[389,1,1,38,39],[390,1,1,39,40],[394,1,1,40,41],[395,4,4,41,45],[396,8,6,45,51],[397,1,1,51,52]]],[14,4,4,52,56,[[404,1,1,52,53],[412,3,3,53,56]]],[15,5,5,56,61,[[417,1,1,56,57],[419,1,1,57,58],[420,2,2,58,60],[425,1,1,60,61]]],[17,1,1,61,62,[[465,1,1,61,62]]],[18,9,9,62,71,[[499,2,2,62,64],[503,1,1,64,65],[512,1,1,65,66],[517,2,2,66,68],[566,1,1,68,69],[584,1,1,69,70],[626,1,1,70,71]]],[19,3,3,71,74,[[632,1,1,71,72],[648,1,1,72,73],[653,1,1,73,74]]],[24,1,1,74,75,[[797,1,1,74,75]]],[28,1,1,75,76,[[877,1,1,75,76]]],[32,1,1,76,77,[[894,1,1,76,77]]]],[2809,2816,3218,3234,3995,4168,4197,4227,4241,4309,4315,4323,5501,5502,5503,5508,5758,6037,7107,8999,9007,9040,9050,9154,10762,10764,11151,11165,11174,11184,11197,11199,11285,11294,11295,11332,11592,11601,11659,11683,11778,11814,11819,11822,11823,11829,11831,11840,11844,11851,11852,11872,12091,12253,12264,12266,12395,12486,12495,12510,12672,13585,14226,14229,14278,14428,14534,14535,15331,15731,16386,16531,17000,17167,20320,22327,22600]]],["multitude",[3,3,[[0,2,2,0,2,[[27,1,1,0,1],[47,1,1,1,2]]],[23,1,1,2,3,[[788,1,1,2,3]]]],[776,1455,20025]]]]},{"k":"H6952","v":[["*",[2,2,[[4,1,1,0,1,[[185,1,1,0,1]]],[15,1,1,1,2,[[417,1,1,1,2]]]],[5814,12389]]],["assembly",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12389]]],["congregation",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5814]]]]},{"k":"H6953","v":[["*",[7,7,[[20,7,7,0,7,[[659,3,3,0,3],[665,1,1,3,4],[670,3,3,4,7]]]],[17316,17317,17327,17456,17531,17532,17533]]],["Preacher",[3,3,[[20,3,3,0,3,[[659,3,3,0,3]]]],[17316,17317,17327]]],["preacher",[4,4,[[20,4,4,0,4,[[665,1,1,0,1],[670,3,3,1,4]]]],[17456,17531,17532,17533]]]]},{"k":"H6954","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4782,4783]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4783]]],["Kehelathah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4782]]]]},{"k":"H6955","v":[["Kohath",[32,29,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,3,2,1,3,[[55,3,2,1,3]]],[3,12,11,3,14,[[119,4,4,3,7],[120,4,3,7,10],[123,1,1,10,11],[132,1,1,11,12],[142,2,2,12,14]]],[5,4,3,14,17,[[207,4,3,14,17]]],[12,12,12,17,29,[[343,9,9,17,26],[352,1,1,26,27],[360,2,2,27,29]]]],[1397,1671,1673,3709,3711,3719,3721,3745,3747,3758,3859,4195,4546,4547,6386,6401,6407,10455,10456,10470,10472,10476,10492,10515,10520,10524,10796,10989,10995]]]]},{"k":"H6956","v":[["Kohathites",[15,15,[[3,7,7,0,7,[[119,2,2,0,2],[120,3,3,2,5],[126,1,1,5,6],[142,1,1,6,7]]],[5,2,2,7,9,[[207,2,2,7,9]]],[12,3,3,9,12,[[343,2,2,9,11],[346,1,1,11,12]]],[13,3,3,12,15,[[386,1,1,12,13],[395,1,1,13,14],[400,1,1,14,15]]]],[3719,3722,3761,3777,3780,4009,4546,6385,6391,10487,10508,10647,11606,11803,11945]]]]},{"k":"H6957","v":[["*",[21,15,[[10,1,1,0,1,[[297,1,1,0,1]]],[11,1,1,1,2,[[333,1,1,1,2]]],[13,1,1,2,3,[[370,1,1,2,3]]],[17,1,1,3,4,[[473,1,1,3,4]]],[18,1,1,4,5,[[496,1,1,4,5]]],[22,12,6,5,11,[[706,9,3,5,8],[712,2,2,8,10],[722,1,1,10,11]]],[23,1,1,11,12,[[775,1,1,11,12]]],[24,1,1,12,13,[[798,1,1,12,13]]],[25,1,1,13,14,[[848,1,1,13,14]]],[37,1,1,14,15,[[911,1,1,14,15]]]],[8957,10132,11248,13798,14172,18174,18177,18181,18314,18320,18546,19730,20340,21682,22894]]],["line",[20,14,[[10,1,1,0,1,[[297,1,1,0,1]]],[11,1,1,1,2,[[333,1,1,1,2]]],[13,1,1,2,3,[[370,1,1,2,3]]],[17,1,1,3,4,[[473,1,1,3,4]]],[18,1,1,4,5,[[496,1,1,4,5]]],[22,11,5,5,10,[[706,9,3,5,8],[712,2,2,8,10]]],[23,1,1,10,11,[[775,1,1,10,11]]],[24,1,1,11,12,[[798,1,1,11,12]]],[25,1,1,12,13,[[848,1,1,12,13]]],[37,1,1,13,14,[[911,1,1,13,14]]]],[8957,10132,11248,13798,14172,18174,18177,18181,18314,18320,19730,20340,21682,22894]]],["rule",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18546]]]]},{"k":"H6958","v":[["*",[8,7,[[2,4,3,0,3,[[107,3,2,0,2],[109,1,1,2,3]]],[17,1,1,3,4,[[455,1,1,3,4]]],[19,2,2,4,6,[[650,1,1,4,5],[652,1,1,5,6]]],[31,1,1,6,7,[[890,1,1,6,7]]]],[3276,3279,3340,13341,17052,17129,22558]]],["+",[5,4,[[2,4,3,0,3,[[107,3,2,0,2],[109,1,1,2,3]]],[31,1,1,3,4,[[890,1,1,3,4]]]],[3276,3279,3340,22558]]],["again",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13341]]],["up",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17052]]],["vomit",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17129]]]]},{"k":"H6959","v":[["helmet",[2,2,[[8,1,1,0,1,[[252,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[7656,21031]]]]},{"k":"H6960","v":[["*",[49,45,[[0,2,2,0,2,[[0,1,1,0,1],[48,1,1,1,2]]],[17,5,5,2,7,[[438,1,1,2,3],[441,1,1,3,4],[442,1,1,4,5],[452,1,1,5,6],[465,1,1,6,7]]],[18,17,14,7,21,[[502,3,3,7,10],[504,2,1,10,11],[514,2,2,11,13],[516,1,1,13,14],[517,2,1,14,15],[529,1,1,15,16],[533,1,1,16,17],[546,2,2,17,19],[596,1,1,19,20],[607,2,1,20,21]]],[19,1,1,21,22,[[647,1,1,21,22]]],[22,15,14,22,36,[[683,3,3,22,25],[686,1,1,25,26],[703,2,1,26,27],[704,1,1,27,28],[711,1,1,28,29],[718,1,1,29,30],[727,1,1,30,31],[729,1,1,31,32],[737,2,2,32,34],[738,1,1,34,35],[742,1,1,35,36]]],[23,5,5,36,41,[[747,1,1,36,37],[752,1,1,37,38],[757,1,1,38,39],[758,2,2,39,41]]],[24,2,2,41,43,[[798,1,1,41,42],[799,1,1,42,43]]],[27,1,1,43,44,[[873,1,1,43,44]]],[32,1,1,44,45,[[897,1,1,44,45]]]],[8,1491,12913,12997,13010,13273,13583,14254,14256,14272,14299,14459,14484,14519,14526,14719,14761,14941,14955,15993,16145,16976,17741,17743,17746,17824,18127,18138,18281,18451,18659,18678,18809,18811,18830,18888,19019,19168,19282,19312,19315,20348,20379,22258,22640]]],["+",[2,2,[[22,1,1,0,1,[[742,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]]],[18888,20348]]],["Wait",[2,2,[[18,2,2,0,2,[[504,1,1,0,1],[514,1,1,1,2]]]],[14299,14484]]],["for",[5,5,[[17,2,2,0,2,[[442,1,1,0,1],[465,1,1,1,2]]],[18,2,2,2,4,[[533,1,1,2,3],[607,1,1,3,4]]],[24,1,1,4,5,[[799,1,1,4,5]]]],[13010,13583,14761,16145,20379]]],["gathered",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19019]]],["look",[4,4,[[17,1,1,0,1,[[438,1,1,0,1]]],[22,2,2,1,3,[[686,1,1,1,2],[737,1,1,2,3]]],[23,1,1,3,4,[[757,1,1,3,4]]]],[12913,17824,18811,19282]]],["looked",[6,6,[[18,1,1,0,1,[[546,1,1,0,1]]],[22,3,3,1,4,[[683,3,3,1,4]]],[23,2,2,4,6,[[752,1,1,4,5],[758,1,1,5,6]]]],[14955,17741,17743,17746,19168,19312]]],["on",[3,3,[[18,3,3,0,3,[[502,1,1,0,1],[529,1,1,1,2],[546,1,1,2,3]]]],[14272,14719,14941]]],["patiently",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14526]]],["tarrieth",[1,1,[[32,1,1,0,1,[[897,1,1,0,1]]]],[22640]]],["together",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[8]]],["upon",[2,2,[[18,1,1,0,1,[[514,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[14459,18451]]],["wait",[13,13,[[17,1,1,0,1,[[452,1,1,0,1]]],[18,5,5,1,6,[[502,2,2,1,3],[504,1,1,3,4],[516,1,1,4,5],[607,1,1,5,6]]],[19,1,1,6,7,[[647,1,1,6,7]]],[22,4,4,7,11,[[727,1,1,7,8],[729,1,1,8,9],[737,1,1,9,10],[738,1,1,10,11]]],[23,1,1,11,12,[[758,1,1,11,12]]],[27,1,1,12,13,[[873,1,1,12,13]]]],[13273,14254,14256,14299,14519,16145,16976,18659,18678,18809,18830,19315,22258]]],["waited",[8,7,[[0,1,1,0,1,[[48,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]],[18,2,2,2,4,[[517,1,1,2,3],[596,1,1,3,4]]],[22,4,3,4,7,[[703,2,1,4,5],[704,1,1,5,6],[711,1,1,6,7]]]],[1491,12997,14526,15993,18127,18138,18281]]]]},{"k":"H6961","v":[]},{"k":"H6962","v":[["*",[6,6,[[18,3,3,0,3,[[572,1,1,0,1],[596,1,1,1,2],[616,1,1,2,3]]],[25,3,3,3,6,[[807,1,1,3,4],[821,1,1,4,5],[837,1,1,5,6]]]],[15464,16056,16260,20572,20938,21390]]],["grieved",[3,3,[[18,3,3,0,3,[[572,1,1,0,1],[596,1,1,1,2],[616,1,1,2,3]]]],[15464,16056,16260]]],["lothe",[1,1,[[25,1,1,0,1,[[807,1,1,0,1]]]],[20572]]],["yourselves",[2,2,[[25,2,2,0,2,[[821,1,1,0,1],[837,1,1,1,2]]]],[20938,21390]]]]},{"k":"H6963","v":[["*",[506,436,[[0,25,23,0,23,[[2,3,3,0,3],[3,2,2,3,5],[15,1,1,5,6],[20,4,3,6,9],[21,1,1,9,10],[25,1,1,10,11],[26,6,5,11,16],[28,1,1,16,17],[29,1,1,17,18],[38,3,3,18,21],[44,2,2,21,23]]],[1,31,24,23,47,[[52,1,1,23,24],[53,4,3,24,27],[54,1,1,27,28],[58,5,5,28,33],[64,1,1,33,34],[67,2,2,34,36],[68,5,3,36,39],[69,2,1,39,40],[72,2,2,40,42],[73,1,1,42,43],[77,1,1,43,44],[81,5,2,44,46],[85,1,1,46,47]]],[2,2,2,47,49,[[94,1,1,47,48],[115,1,1,48,49]]],[3,6,6,49,55,[[123,1,1,49,50],[130,2,2,50,52],[132,1,1,52,53],[136,1,1,53,54],[137,1,1,54,55]]],[4,38,35,55,90,[[153,2,2,55,57],[156,5,4,57,61],[157,7,6,61,67],[160,1,1,67,68],[161,1,1,68,69],[165,2,2,69,71],[167,1,1,71,72],[170,1,1,72,73],[173,3,2,73,75],[178,3,3,75,78],[179,2,2,78,80],[180,5,5,80,85],[182,4,4,85,89],[185,1,1,89,90]]],[5,7,7,90,97,[[191,1,1,90,91],[192,3,3,91,94],[196,1,1,94,95],[208,1,1,95,96],[210,1,1,96,97]]],[6,11,11,97,108,[[212,3,3,97,100],[215,1,1,100,101],[216,1,1,101,102],[219,1,1,102,103],[223,1,1,103,104],[228,2,2,104,106],[230,1,1,106,107],[231,1,1,107,108]]],[7,2,2,108,110,[[232,2,2,108,110]]],[8,37,31,110,141,[[236,1,1,110,111],[237,1,1,111,112],[239,4,2,112,114],[242,1,1,114,115],[243,4,4,115,119],[246,1,1,119,120],[247,5,5,120,125],[250,7,6,125,131],[254,1,1,131,132],[259,2,1,132,133],[260,1,1,133,134],[261,3,1,134,135],[263,5,5,135,140],[265,1,1,140,141]]],[9,12,12,141,153,[[269,1,1,141,142],[271,1,1,142,143],[272,1,1,143,144],[278,1,1,144,145],[279,2,2,145,147],[281,2,2,147,149],[285,2,2,149,151],[288,2,2,151,153]]],[10,16,15,153,168,[[291,4,3,153,156],[298,1,1,156,157],[304,1,1,157,158],[307,1,1,158,159],[308,5,5,159,164],[309,2,2,164,166],[310,2,2,166,168]]],[11,11,9,168,177,[[316,1,1,168,169],[318,1,1,169,170],[319,4,2,170,172],[322,1,1,172,173],[323,1,1,173,174],[330,2,2,174,176],[331,1,1,176,177]]],[12,3,3,177,180,[[351,1,1,177,178],[352,2,2,178,180]]],[13,10,9,180,189,[[371,2,1,180,181],[381,1,1,181,182],[386,1,1,182,183],[389,1,1,183,184],[390,1,1,184,185],[396,2,2,185,187],[398,1,1,187,188],[402,1,1,188,189]]],[14,8,5,189,194,[[403,1,1,189,190],[405,5,2,190,192],[412,2,2,192,194]]],[15,3,3,194,197,[[416,1,1,194,195],[420,1,1,195,196],[421,1,1,196,197]]],[17,21,19,197,216,[[437,1,1,197,198],[438,1,1,198,199],[439,2,2,199,201],[444,1,1,201,202],[450,1,1,202,203],[456,1,1,203,204],[463,1,1,204,205],[464,1,1,205,206],[465,1,1,206,207],[468,1,1,207,208],[469,1,1,208,209],[472,5,3,209,212],[473,2,2,212,214],[474,1,1,214,215],[475,1,1,215,216]]],[18,59,54,216,270,[[480,1,1,216,217],[482,2,2,217,219],[483,1,1,219,220],[495,2,2,220,222],[496,1,1,222,223],[503,1,1,223,224],[504,1,1,224,225],[505,2,2,225,227],[506,7,6,227,233],[508,1,1,233,234],[519,2,2,234,236],[521,1,1,236,237],[523,1,1,237,238],[524,2,2,238,240],[532,2,2,240,242],[535,1,1,242,243],[541,1,1,243,244],[543,2,2,244,246],[545,2,1,246,247],[551,1,1,247,248],[554,4,3,248,251],[558,1,1,251,252],[563,1,1,252,253],[570,2,2,253,255],[572,1,1,255,256],[575,2,2,256,258],[579,1,1,258,259],[580,1,1,259,260],[581,2,2,260,262],[583,1,1,262,263],[593,1,1,263,264],[595,1,1,264,265],[596,1,1,265,266],[607,2,1,266,267],[617,1,1,267,268],[618,1,1,268,269],[619,2,1,269,270]]],[19,7,7,270,277,[[628,1,1,270,271],[629,1,1,271,272],[632,1,1,272,273],[635,2,2,273,275],[653,1,1,275,276],[654,1,1,276,277]]],[20,6,5,277,282,[[663,2,2,277,279],[665,1,1,279,280],[668,1,1,280,281],[670,2,1,281,282]]],[21,6,5,282,287,[[672,4,3,282,285],[675,1,1,285,286],[678,1,1,286,287]]],[22,36,31,287,318,[[684,2,2,287,289],[688,1,1,289,290],[691,3,2,290,292],[693,1,1,292,293],[702,2,2,293,295],[706,1,1,295,296],[707,2,2,296,298],[708,3,3,298,301],[709,1,1,301,302],[710,1,1,302,303],[711,1,1,303,304],[714,1,1,304,305],[715,1,1,305,306],[718,3,3,306,309],[720,1,1,309,310],[726,1,1,310,311],[728,1,1,311,312],[729,1,1,312,313],[730,2,1,313,314],[736,2,2,314,316],[743,2,1,316,317],[744,3,1,317,318]]],[23,82,64,318,382,[[746,1,1,318,319],[747,4,4,319,323],[748,7,6,323,329],[750,2,2,329,331],[751,6,3,331,334],[752,2,2,334,336],[753,3,3,336,339],[754,2,2,339,341],[755,3,3,341,344],[756,1,1,344,345],[760,4,1,345,346],[762,2,2,346,348],[766,2,2,348,350],[769,7,3,350,353],[770,1,1,353,354],[774,2,2,354,356],[775,2,2,356,358],[776,1,1,358,359],[777,5,1,359,360],[779,1,1,360,361],[782,1,1,361,362],[784,1,1,362,363],[786,5,4,363,367],[787,2,2,367,369],[788,1,1,369,370],[790,1,1,370,371],[791,1,1,371,372],[792,2,2,372,374],[793,2,1,374,375],[794,4,4,375,379],[795,4,3,379,382]]],[24,2,2,382,384,[[798,1,1,382,383],[799,1,1,383,384]]],[25,32,24,384,408,[[802,7,3,384,387],[804,4,2,387,389],[809,1,1,389,390],[810,1,1,390,391],[811,2,1,391,392],[812,1,1,392,393],[820,2,2,393,395],[822,1,1,395,396],[824,1,1,396,397],[827,3,3,397,400],[828,2,2,400,402],[832,1,1,402,403],[834,3,3,403,406],[838,1,1,406,407],[844,2,1,407,408]]],[26,8,6,408,414,[[857,1,1,408,409],[858,3,3,409,412],[859,4,2,412,414]]],[28,4,3,414,417,[[877,3,2,414,416],[878,1,1,416,417]]],[29,3,3,417,420,[[879,1,1,417,418],[880,1,1,418,419],[881,1,1,419,420]]],[31,2,2,420,422,[[890,2,2,420,422]]],[32,2,2,422,424,[[898,2,2,422,424]]],[33,4,3,424,427,[[901,2,2,424,426],[902,2,1,426,427]]],[34,2,2,427,429,[[905,2,2,427,429]]],[35,4,4,429,433,[[906,2,2,429,431],[907,1,1,431,432],[908,1,1,432,433]]],[36,1,1,433,434,[[909,1,1,433,434]]],[37,3,2,434,436,[[916,1,1,434,435],[921,2,1,435,436]]]],[63,65,72,89,102,383,525,529,530,565,697,735,740,749,765,770,806,836,1163,1164,1167,1360,1374,1597,1602,1609,1610,1634,1765,1770,1771,1775,1776,1946,2018,2023,2031,2042,2045,2069,2165,2166,2180,2328,2455,2456,2572,2831,3560,3939,4109,4130,4228,4327,4343,4926,4937,5016,5034,5037,5040,5075,5076,5077,5078,5079,5081,5157,5180,5276,5290,5324,5400,5465,5467,5573,5580,5583,5595,5599,5612,5613,5626,5656,5673,5710,5716,5718,5728,5817,5940,5954,5959,5969,6078,6428,6500,6547,6549,6565,6634,6664,6761,6893,6996,7018,7067,7104,7136,7141,7225,7265,7303,7311,7362,7376,7378,7388,7391,7449,7461,7474,7475,7477,7478,7561,7574,7579,7580,7582,7584,7712,7855,7896,7922,7954,7960,7963,7964,7965,7982,8113,8156,8172,8304,8331,8353,8399,8412,8515,8546,8609,8616,8757,8758,8762,9040,9224,9339,9367,9368,9369,9370,9382,9399,9400,9433,9444,9634,9706,9713,9717,9799,9842,10036,10052,10083,10789,10807,10819,11281,11504,11606,11668,11686,11832,11854,11893,12015,12017,12109,12110,12259,12264,12379,12508,12515,12903,12922,12940,12946,13067,13224,13367,13530,13542,13588,13658,13699,13771,13773,13774,13818,13827,13858,13873,13961,13975,13976,13993,14124,14131,14171,14280,14292,14301,14305,14311,14312,14313,14315,14316,14317,14353,14559,14562,14587,14620,14626,14630,14735,14749,14784,14851,14881,14892,14933,15071,15094,15110,15111,15228,15290,15429,15430,15461,15495,15496,15526,15569,15578,15583,15676,15849,15884,16047,16142,16269,16277,16287,16420,16436,16530,16603,16606,17166,17183,17400,17403,17435,17513,17527,17562,17566,17568,17600,17653,17773,17777,17880,17908,17910,17964,18109,18113,18187,18197,18199,18236,18247,18248,18254,18268,18282,18343,18375,18423,18426,18429,18482,18634,18672,18676,18704,18787,18790,18916,18928,18980,19011,19015,19023,19027,19042,19043,19046,19048,19056,19058,19106,19112,19142,19147,19153,19169,19172,19185,19188,19194,19214,19223,19230,19233,19242,19257,19345,19394,19403,19474,19475,19544,19564,19570,19585,19672,19686,19706,19707,19754,19786,19831,19915,19944,19981,19988,19989,19996,20001,20004,20033,20067,20076,20083,20114,20148,20188,20194,20208,20212,20228,20266,20267,20339,20410,20488,20489,20492,20514,20515,20622,20623,20638,20668,20888,20890,20966,21049,21110,21113,21115,21149,21151,21246,21284,21285,21312,21404,21574,21977,21998,21999,22002,22021,22024,22316,22322,22359,22366,22381,22399,22550,22557,22649,22657,22706,22712,22714,22778,22784,22797,22801,22819,22822,22852,22962,23031]]],["+",[35,35,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,2,2,1,3,[[68,1,1,1,2],[85,1,1,2,3]]],[6,1,1,3,4,[[215,1,1,3,4]]],[10,2,2,4,6,[[308,2,2,4,6]]],[13,2,2,6,8,[[396,1,1,6,7],[402,1,1,7,8]]],[14,3,3,8,11,[[403,1,1,8,9],[405,1,1,9,10],[412,1,1,10,11]]],[15,1,1,11,12,[[420,1,1,11,12]]],[18,5,5,12,17,[[521,1,1,12,13],[532,1,1,13,14],[570,1,1,14,15],[579,1,1,15,16],[581,1,1,16,17]]],[22,5,5,17,22,[[684,1,1,17,18],[702,1,1,18,19],[708,1,1,19,20],[709,1,1,20,21],[711,1,1,21,22]]],[23,8,8,22,30,[[746,1,1,22,23],[747,1,1,23,24],[748,1,1,24,25],[752,1,1,25,26],[756,1,1,26,27],[791,1,1,27,28],[793,1,1,28,29],[794,1,1,29,30]]],[25,4,4,30,34,[[820,1,1,30,31],[827,2,2,31,33],[832,1,1,33,34]]],[29,1,1,34,35,[[881,1,1,34,35]]]],[1360,2031,2572,6634,9368,9369,11832,12015,12017,12109,12259,12508,14587,14735,15430,15526,15583,17773,18113,18248,18254,18282,18980,19011,19056,19169,19257,20076,20148,20212,20888,21110,21115,21246,22399]]],["bleating",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7574]]],["crackling",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17435]]],["cry",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4228]]],["fame",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1374]]],["lowing",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7574]]],["noise",[39,25,[[1,4,3,0,3,[[69,1,1,0,1],[81,3,2,1,3]]],[8,4,2,3,5,[[239,4,2,3,5]]],[10,2,2,5,7,[[291,2,2,5,7]]],[11,4,2,7,9,[[319,3,1,7,8],[323,1,1,8,9]]],[13,1,1,9,10,[[389,1,1,9,10]]],[14,3,1,10,11,[[405,3,1,10,11]]],[18,1,1,11,12,[[519,1,1,11,12]]],[22,3,2,12,14,[[691,2,1,12,13],[707,1,1,13,14]]],[23,3,3,14,17,[[754,1,1,14,15],[755,1,1,15,16],[793,1,1,16,17]]],[24,1,1,17,18,[[798,1,1,17,18]]],[25,8,4,18,22,[[802,3,1,18,19],[804,3,1,19,20],[838,1,1,20,21],[844,1,1,21,22]]],[28,2,1,22,23,[[877,2,1,22,23]]],[33,2,1,23,24,[[902,2,1,23,24]]],[35,1,1,24,25,[[906,1,1,24,25]]]],[2069,2455,2456,7303,7311,8758,8762,9713,9842,11668,12110,14562,17910,18199,19223,19242,20148,20339,20488,20515,21404,21574,22316,22714,22797]]],["peace",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13542]]],["proclamation",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11686]]],["sound",[36,36,[[1,1,1,0,1,[[77,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[5,2,2,2,4,[[192,2,2,2,4]]],[9,3,3,4,7,[[271,1,1,4,5],[272,1,1,5,6],[281,1,1,6,7]]],[10,4,4,7,11,[[291,2,2,7,9],[304,1,1,9,10],[308,1,1,10,11]]],[11,1,1,11,12,[[318,1,1,11,12]]],[12,2,2,12,14,[[351,1,1,12,13],[352,1,1,13,14]]],[13,1,1,14,15,[[371,1,1,14,15]]],[15,1,1,15,16,[[416,1,1,15,16]]],[17,3,3,16,19,[[450,1,1,16,17],[456,1,1,17,18],[474,1,1,18,19]]],[18,3,3,19,22,[[524,1,1,19,20],[554,1,1,20,21],[575,1,1,21,22]]],[20,1,1,22,23,[[670,1,1,22,23]]],[23,7,7,23,30,[[748,2,2,23,25],[750,1,1,25,26],[769,1,1,26,27],[786,1,1,27,28],[794,1,1,28,29],[795,1,1,29,30]]],[25,5,5,30,35,[[811,1,1,30,31],[827,1,1,31,32],[828,1,1,32,33],[834,2,2,33,35]]],[29,1,1,35,36,[[880,1,1,35,36]]]],[2328,3560,5954,5969,8156,8172,8399,8757,8758,9224,9382,9706,10789,10819,11281,12379,13224,13367,13858,14630,15110,15496,17527,19046,19048,19106,19544,19989,20188,20266,20638,21113,21149,21284,21285,22381]]],["speaketh",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17166]]],["thunder",[7,7,[[1,2,2,0,2,[[58,2,2,0,2]]],[8,3,3,2,5,[[242,1,1,2,3],[247,2,2,3,5]]],[17,2,2,5,7,[[463,1,1,5,6],[473,1,1,6,7]]]],[1765,1771,7362,7477,7478,13530,13818]]],["thunderings",[2,2,[[1,2,2,0,2,[[58,1,1,0,1],[69,1,1,1,2]]]],[1770,2069]]],["thunders",[3,3,[[1,3,3,0,3,[[58,2,2,0,2],[68,1,1,2,3]]]],[1775,1776,2042]]],["voice",[374,331,[[0,23,21,0,21,[[2,3,3,0,3],[3,2,2,3,5],[15,1,1,5,6],[20,4,3,6,9],[21,1,1,9,10],[25,1,1,10,11],[26,6,5,11,16],[28,1,1,16,17],[29,1,1,17,18],[38,3,3,18,21]]],[1,17,14,21,35,[[52,1,1,21,22],[53,4,3,22,25],[54,1,1,25,26],[64,1,1,26,27],[67,2,2,27,29],[68,3,2,29,31],[72,2,2,31,33],[73,1,1,33,34],[81,2,1,34,35]]],[2,1,1,35,36,[[94,1,1,35,36]]],[3,5,5,36,41,[[123,1,1,36,37],[130,2,2,37,39],[136,1,1,39,40],[137,1,1,40,41]]],[4,38,35,41,76,[[153,2,2,41,43],[156,5,4,43,47],[157,7,6,47,53],[160,1,1,53,54],[161,1,1,54,55],[165,2,2,55,57],[167,1,1,57,58],[170,1,1,58,59],[173,3,2,59,61],[178,3,3,61,64],[179,2,2,64,66],[180,5,5,66,71],[182,4,4,71,75],[185,1,1,75,76]]],[5,5,5,76,81,[[191,1,1,76,77],[192,1,1,77,78],[196,1,1,78,79],[208,1,1,79,80],[210,1,1,80,81]]],[6,9,9,81,90,[[212,3,3,81,84],[216,1,1,84,85],[219,1,1,85,86],[223,1,1,86,87],[228,2,2,87,89],[230,1,1,89,90]]],[7,2,2,90,92,[[232,2,2,90,92]]],[8,27,24,92,116,[[236,1,1,92,93],[237,1,1,93,94],[243,4,4,94,98],[247,3,3,98,101],[250,5,5,101,106],[254,1,1,106,107],[259,2,1,107,108],[260,1,1,108,109],[261,3,1,109,110],[263,5,5,110,115],[265,1,1,115,116]]],[9,9,9,116,125,[[269,1,1,116,117],[278,1,1,117,118],[279,2,2,118,120],[281,1,1,120,121],[285,2,2,121,123],[288,2,2,123,125]]],[10,8,8,125,133,[[298,1,1,125,126],[307,1,1,126,127],[308,2,2,127,129],[309,2,2,129,131],[310,2,2,131,133]]],[11,6,6,133,139,[[316,1,1,133,134],[319,1,1,134,135],[322,1,1,135,136],[330,2,2,136,138],[331,1,1,138,139]]],[12,1,1,139,140,[[352,1,1,139,140]]],[13,5,5,140,145,[[371,1,1,140,141],[381,1,1,141,142],[386,1,1,142,143],[396,1,1,143,144],[398,1,1,144,145]]],[14,2,2,145,147,[[405,1,1,145,146],[412,1,1,146,147]]],[15,1,1,147,148,[[421,1,1,147,148]]],[17,15,13,148,161,[[437,1,1,148,149],[438,1,1,149,150],[439,2,2,150,152],[444,1,1,152,153],[465,1,1,153,154],[468,1,1,154,155],[469,1,1,155,156],[472,5,3,156,159],[473,1,1,159,160],[475,1,1,160,161]]],[18,50,45,161,206,[[480,1,1,161,162],[482,2,2,162,164],[483,1,1,164,165],[495,2,2,165,167],[496,1,1,167,168],[503,1,1,168,169],[504,1,1,169,170],[505,2,2,170,172],[506,7,6,172,178],[508,1,1,178,179],[519,1,1,179,180],[523,1,1,180,181],[524,1,1,181,182],[532,1,1,182,183],[535,1,1,183,184],[541,1,1,184,185],[543,2,2,185,187],[545,2,1,187,188],[551,1,1,188,189],[554,3,2,189,191],[558,1,1,191,192],[563,1,1,192,193],[570,1,1,193,194],[572,1,1,194,195],[575,1,1,195,196],[580,1,1,196,197],[581,1,1,197,198],[583,1,1,198,199],[593,1,1,199,200],[595,1,1,200,201],[596,1,1,201,202],[607,2,1,202,203],[617,1,1,203,204],[618,1,1,204,205],[619,2,1,205,206]]],[19,6,6,206,212,[[628,1,1,206,207],[629,1,1,207,208],[632,1,1,208,209],[635,2,2,209,211],[654,1,1,211,212]]],[20,4,4,212,216,[[663,2,2,212,214],[668,1,1,214,215],[670,1,1,215,216]]],[21,6,5,216,221,[[672,4,3,216,219],[675,1,1,219,220],[678,1,1,220,221]]],[22,28,24,221,245,[[684,1,1,221,222],[688,1,1,222,223],[691,1,1,223,224],[693,1,1,224,225],[702,1,1,225,226],[706,1,1,226,227],[707,1,1,227,228],[708,2,2,228,230],[710,1,1,230,231],[714,1,1,231,232],[715,1,1,232,233],[718,3,3,233,236],[720,1,1,236,237],[726,1,1,237,238],[728,1,1,238,239],[729,1,1,239,240],[730,2,1,240,241],[736,2,2,241,243],[743,2,1,243,244],[744,3,1,244,245]]],[23,64,48,245,293,[[747,3,3,245,248],[748,4,3,248,251],[750,1,1,251,252],[751,6,3,252,255],[752,1,1,255,256],[753,3,3,256,259],[754,1,1,259,260],[755,2,2,260,262],[760,4,1,262,263],[762,2,2,263,265],[766,2,2,265,267],[769,6,3,267,270],[770,1,1,270,271],[774,2,2,271,273],[775,2,2,273,275],[776,1,1,275,276],[777,5,1,276,277],[779,1,1,277,278],[782,1,1,278,279],[784,1,1,279,280],[786,4,3,280,283],[787,2,2,283,285],[788,1,1,285,286],[790,1,1,286,287],[792,2,2,287,289],[794,2,2,289,291],[795,3,2,291,293]]],[24,1,1,293,294,[[799,1,1,293,294]]],[25,15,14,294,308,[[802,4,3,294,297],[804,1,1,297,298],[809,1,1,298,299],[810,1,1,299,300],[811,1,1,300,301],[812,1,1,301,302],[820,1,1,302,303],[822,1,1,303,304],[824,1,1,304,305],[828,1,1,305,306],[834,1,1,306,307],[844,1,1,307,308]]],[26,8,6,308,314,[[857,1,1,308,309],[858,3,3,309,312],[859,4,2,312,314]]],[28,2,2,314,316,[[877,1,1,314,315],[878,1,1,315,316]]],[29,1,1,316,317,[[879,1,1,316,317]]],[31,2,2,317,319,[[890,2,2,317,319]]],[32,2,2,319,321,[[898,2,2,319,321]]],[33,2,2,321,323,[[901,2,2,321,323]]],[34,2,2,323,325,[[905,2,2,323,325]]],[35,3,3,325,328,[[906,1,1,325,326],[907,1,1,326,327],[908,1,1,327,328]]],[36,1,1,328,329,[[909,1,1,328,329]]],[37,3,2,329,331,[[916,1,1,329,330],[921,2,1,330,331]]]],[63,65,72,89,102,383,525,529,530,565,697,735,740,749,765,770,806,836,1163,1164,1167,1597,1602,1609,1610,1634,1946,2018,2023,2042,2045,2165,2166,2180,2456,2831,3939,4109,4130,4327,4343,4926,4937,5016,5034,5037,5040,5075,5076,5077,5078,5079,5081,5157,5180,5276,5290,5324,5400,5465,5467,5573,5580,5583,5595,5599,5612,5613,5626,5656,5673,5710,5716,5718,5728,5817,5940,5959,6078,6428,6500,6547,6549,6565,6664,6761,6893,6996,7018,7067,7136,7141,7225,7265,7376,7378,7388,7391,7461,7474,7475,7561,7579,7580,7582,7584,7712,7855,7896,7922,7954,7960,7963,7964,7965,7982,8113,8304,8331,8353,8412,8515,8546,8609,8616,9040,9339,9367,9370,9399,9400,9433,9444,9634,9717,9799,10036,10052,10083,10807,11281,11504,11606,11854,11893,12109,12264,12515,12903,12922,12940,12946,13067,13588,13658,13699,13771,13773,13774,13827,13873,13961,13975,13976,13993,14124,14131,14171,14280,14292,14301,14305,14311,14312,14313,14315,14316,14317,14353,14559,14620,14626,14749,14784,14851,14881,14892,14933,15071,15094,15111,15228,15290,15429,15461,15495,15569,15578,15676,15849,15884,16047,16142,16269,16277,16287,16420,16436,16530,16603,16606,17183,17400,17403,17513,17527,17562,17566,17568,17600,17653,17777,17880,17908,17964,18109,18187,18197,18236,18247,18268,18343,18375,18423,18426,18429,18482,18634,18672,18676,18704,18787,18790,18916,18928,19015,19023,19027,19042,19043,19058,19112,19142,19147,19153,19172,19185,19188,19194,19214,19230,19233,19345,19394,19403,19474,19475,19544,19564,19570,19585,19672,19686,19706,19707,19754,19786,19831,19915,19944,19981,19988,19996,20001,20004,20033,20067,20083,20114,20194,20208,20228,20267,20410,20488,20489,20492,20514,20622,20623,20638,20668,20890,20966,21049,21151,21312,21574,21977,21998,21999,22002,22021,22024,22322,22359,22366,22550,22557,22649,22657,22706,22712,22778,22784,22801,22819,22822,22852,22962,23031]]],["voices",[2,2,[[6,1,1,0,1,[[231,1,1,0,1]]],[8,1,1,1,2,[[246,1,1,1,2]]]],[7104,7449]]]]},{"k":"H6964","v":[["Kolaiah",[2,2,[[15,1,1,0,1,[[423,1,1,0,1]]],[23,1,1,1,2,[[773,1,1,1,2]]]],[12595,19656]]]]},{"k":"H6965","v":[["*",[628,596,[[0,51,50,0,50,[[3,1,1,0,1],[5,1,1,1,2],[8,3,3,2,5],[12,1,1,5,6],[16,3,3,6,9],[17,1,1,9,10],[18,6,5,10,15],[20,2,2,15,17],[21,2,2,17,19],[22,4,4,19,23],[23,3,3,23,26],[24,1,1,26,27],[25,1,1,27,28],[26,3,3,28,31],[27,1,1,31,32],[30,4,4,32,36],[31,1,1,36,37],[34,2,2,37,39],[36,2,2,39,41],[37,2,2,41,43],[40,1,1,43,44],[42,3,3,44,47],[43,1,1,47,48],[45,1,1,48,49],[48,1,1,49,50]]],[1,20,19,50,69,[[50,1,1,50,51],[51,1,1,51,52],[55,1,1,52,53],[59,1,1,53,54],[61,2,2,54,56],[64,1,1,56,57],[70,1,1,57,58],[73,1,1,58,59],[75,1,1,59,60],[81,3,3,60,63],[82,2,2,63,65],[89,5,4,65,69]]],[2,7,7,69,76,[[108,1,1,69,70],[114,1,1,70,71],[115,2,2,71,73],[116,3,3,73,76]]],[3,32,28,76,104,[[117,1,1,76,77],[123,1,1,77,78],[125,1,1,78,79],[126,2,2,79,81],[127,1,1,81,82],[132,2,2,82,84],[138,4,4,84,88],[139,3,3,88,91],[140,3,3,91,94],[141,1,1,94,95],[146,12,8,95,103],[148,1,1,103,104]]],[4,35,32,104,136,[[154,2,2,104,106],[158,1,1,106,107],[160,1,1,107,108],[161,2,2,108,110],[162,1,1,110,111],[163,1,1,111,112],[165,1,1,112,113],[168,1,1,113,114],[169,1,1,114,115],[170,2,2,115,117],[171,4,3,117,120],[174,3,2,120,122],[177,2,2,122,124],[179,3,3,124,127],[180,3,3,127,130],[181,2,2,130,132],[183,1,1,132,133],[184,1,1,133,134],[185,2,1,134,135],[186,1,1,135,136]]],[5,21,20,136,156,[[187,1,1,136,137],[188,1,1,137,138],[189,1,1,138,139],[190,2,2,139,141],[191,1,1,141,142],[192,1,1,142,143],[193,5,4,143,147],[194,5,5,147,152],[204,2,2,152,154],[210,2,2,154,156]]],[6,42,38,156,194,[[212,3,3,156,159],[213,3,3,159,162],[214,2,2,162,164],[215,3,2,164,166],[217,4,3,166,169],[218,3,2,169,171],[219,5,5,171,176],[220,2,2,176,178],[223,1,1,178,179],[226,1,1,179,180],[228,2,2,180,182],[229,8,7,182,189],[230,5,5,189,194]]],[7,6,6,194,200,[[232,1,1,194,195],[233,1,1,195,196],[234,1,1,196,197],[235,3,3,197,200]]],[8,47,45,200,245,[[236,2,2,200,202],[237,2,2,202,204],[238,3,3,204,207],[239,1,1,207,208],[244,3,2,208,210],[248,2,2,210,212],[250,2,2,212,214],[251,2,2,214,216],[252,3,3,216,219],[253,1,1,219,220],[255,4,4,220,224],[256,1,1,224,225],[257,2,2,225,227],[258,4,4,227,231],[259,5,4,231,235],[260,4,4,235,239],[261,2,2,239,241],[262,1,1,241,242],[263,2,2,242,244],[266,1,1,244,245]]],[9,37,35,245,280,[[268,3,2,245,247],[269,2,2,247,249],[272,1,1,249,250],[273,2,2,250,252],[277,1,1,252,253],[278,5,4,253,257],[279,3,3,257,260],[280,3,3,260,263],[281,2,2,263,265],[283,4,4,265,269],[284,2,2,269,271],[285,2,2,271,273],[288,3,3,273,276],[289,2,2,276,278],[290,2,2,278,280]]],[10,40,36,280,316,[[291,2,2,280,282],[292,3,3,282,285],[293,3,3,285,288],[296,1,1,288,289],[297,3,1,289,290],[298,3,2,290,292],[299,1,1,292,293],[301,4,4,293,297],[302,1,1,297,298],[304,6,5,298,303],[305,1,1,303,304],[306,1,1,304,305],[307,2,2,305,307],[309,5,5,307,312],[311,4,4,312,316]]],[11,23,23,316,339,[[313,2,2,316,318],[315,1,1,318,319],[316,1,1,319,320],[318,1,1,320,321],[319,3,3,321,324],[320,3,3,324,327],[321,2,2,327,329],[322,1,1,329,330],[323,1,1,330,331],[324,1,1,331,332],[325,1,1,332,333],[328,1,1,333,334],[333,1,1,334,335],[335,3,3,335,338],[337,1,1,338,339]]],[12,6,6,339,345,[[347,1,1,339,340],[354,1,1,340,341],[358,1,1,341,342],[359,2,2,342,344],[365,1,1,344,345]]],[13,18,17,345,362,[[369,1,1,345,346],[372,3,2,346,348],[373,1,1,348,349],[376,1,1,349,350],[379,2,2,350,352],[386,1,1,352,353],[387,2,2,353,355],[388,1,1,355,356],[394,2,2,356,358],[395,1,1,358,359],[396,2,2,359,361],[399,1,1,361,362]]],[14,7,7,362,369,[[403,1,1,362,363],[405,1,1,363,364],[411,1,1,364,365],[412,4,4,365,369]]],[15,10,10,369,379,[[414,3,3,369,372],[415,1,1,372,373],[416,1,1,373,374],[417,1,1,374,375],[421,4,4,375,379]]],[16,10,8,379,387,[[430,1,1,379,380],[432,1,1,380,381],[433,1,1,381,382],[434,7,5,382,387]]],[17,22,22,387,409,[[436,1,1,387,388],[439,1,1,388,389],[442,1,1,389,390],[443,1,1,390,391],[446,1,1,391,392],[449,1,1,392,393],[450,1,1,393,394],[451,2,2,394,396],[454,2,2,396,398],[455,1,1,398,399],[457,1,1,399,400],[459,2,2,400,402],[460,1,1,402,403],[462,1,1,403,404],[464,1,1,404,405],[465,2,2,405,407],[466,1,1,407,408],[476,1,1,408,409]]],[18,51,51,409,460,[[478,1,1,409,410],[480,2,2,410,412],[484,1,1,412,413],[486,1,1,413,414],[487,1,1,414,415],[489,1,1,415,416],[494,2,2,416,418],[495,3,3,418,421],[497,1,1,421,422],[501,1,1,422,423],[504,2,2,423,425],[512,2,2,425,427],[513,1,1,427,428],[517,1,1,428,429],[518,2,2,429,431],[521,2,2,431,433],[531,1,1,433,434],[536,1,1,434,435],[545,1,1,435,436],[551,2,2,436,438],[553,1,1,438,439],[555,2,2,439,441],[559,1,1,441,442],[563,1,1,442,443],[565,1,1,443,444],[566,1,1,444,445],[569,1,1,445,446],[571,1,1,446,447],[579,1,1,447,448],[584,1,1,448,449],[586,1,1,449,450],[590,1,1,450,451],[596,4,4,451,455],[601,1,1,455,456],[604,1,1,456,457],[609,1,1,457,458],[616,1,1,458,459],[617,1,1,459,460]]],[19,10,10,460,470,[[633,1,1,460,461],[642,1,1,461,462],[646,1,1,462,463],[651,2,2,463,465],[655,2,2,465,467],[657,1,1,467,468],[658,2,2,468,470]]],[20,3,2,470,472,[[662,2,1,470,471],[670,1,1,471,472]]],[21,4,4,472,476,[[672,2,2,472,474],[673,1,1,474,475],[675,1,1,475,476]]],[22,36,35,476,511,[[680,2,2,476,478],[685,1,1,478,479],[686,1,1,479,480],[692,4,4,480,484],[699,1,1,484,485],[701,2,2,485,487],[702,1,1,487,488],[704,2,2,488,490],[705,1,1,490,491],[706,2,2,491,493],[707,1,1,493,494],[709,1,1,494,495],[710,2,2,495,497],[711,1,1,497,498],[718,1,1,498,499],[721,1,1,499,500],[722,2,1,500,501],[724,1,1,501,502],[727,3,3,502,505],[729,1,1,505,506],[730,1,1,506,507],[732,1,1,507,508],[736,1,1,508,509],[738,1,1,509,510],[739,1,1,510,511]]],[23,43,41,511,552,[[745,1,1,511,512],[746,2,2,512,514],[750,3,3,514,517],[752,1,1,517,518],[754,1,1,518,519],[755,1,1,519,520],[757,2,2,520,522],[762,1,1,522,523],[767,3,3,523,526],[769,1,1,526,527],[770,1,1,527,528],[772,1,1,528,529],[773,2,2,529,531],[774,2,2,531,533],[775,1,1,533,534],[777,1,1,534,535],[778,1,1,535,536],[779,2,2,536,538],[781,1,1,538,539],[785,1,1,539,540],[788,5,3,540,543],[790,1,1,543,544],[793,3,3,544,547],[794,1,1,547,548],[795,4,4,548,552]]],[24,3,3,552,555,[[797,1,1,552,553],[798,1,1,553,554],[799,1,1,554,555]]],[25,9,9,555,564,[[804,2,2,555,557],[808,1,1,557,558],[814,1,1,558,559],[817,2,2,559,561],[827,1,1,561,562],[835,2,2,562,564]]],[26,2,2,564,566,[[857,1,1,564,565],[858,1,1,565,566]]],[27,2,2,566,568,[[867,1,1,566,567],[871,1,1,567,568]]],[29,10,8,568,576,[[880,1,1,568,569],[883,2,1,569,570],[884,1,1,570,571],[885,3,3,571,574],[886,1,1,574,575],[887,2,1,575,576]]],[30,2,1,576,577,[[888,2,1,576,577]]],[31,6,6,577,583,[[889,3,3,577,580],[891,3,3,580,583]]],[32,7,7,583,590,[[894,2,2,583,585],[896,1,1,585,586],[897,1,1,586,587],[898,1,1,587,588],[899,2,2,588,590]]],[33,2,2,590,592,[[900,2,2,590,592]]],[34,2,2,592,594,[[903,1,1,592,593],[904,1,1,593,594]]],[35,1,1,594,595,[[908,1,1,594,595]]],[37,1,1,595,596,[[921,1,1,595,596]]]],[87,155,214,216,222,335,404,416,418,440,458,471,472,490,492,531,545,550,566,574,578,588,591,601,645,652,692,695,746,758,770,775,886,890,894,908,950,1012,1014,1090,1118,1127,1138,1225,1298,1303,1305,1328,1391,1482,1540,1571,1659,1800,1846,1847,1927,2096,2190,2265,2439,2444,2463,2481,2483,2709,2724,2725,2740,3313,3499,3525,3533,3584,3587,3589,3655,3851,3980,4009,4023,4056,4196,4219,4388,4389,4395,4396,4434,4435,4440,4455,4463,4471,4478,4652,4653,4655,4657,4659,4660,4661,4662,4732,4951,4962,5093,5155,5162,5169,5197,5227,5273,5364,5372,5399,5402,5417,5421,5422,5474,5496,5553,5554,5587,5589,5611,5618,5620,5647,5692,5701,5744,5796,5821,5849,5853,5880,5909,5919,5930,5941,5975,5986,5988,5989,6002,6003,6005,6009,6021,6031,6297,6301,6485,6502,6555,6561,6563,6577,6583,6588,6608,6613,6630,6635,6703,6709,6713,6739,6740,6772,6786,6788,6789,6797,6812,6814,6895,6952,7002,7023,7027,7029,7031,7033,7034,7051,7052,7059,7062,7072,7073,7087,7133,7164,7186,7195,7197,7200,7221,7235,7248,7275,7282,7284,7288,7312,7394,7417,7499,7500,7571,7573,7607,7608,7653,7666,7670,7703,7755,7764,7771,7772,7782,7795,7800,7814,7823,7826,7834,7843,7846,7847,7859,7862,7890,7902,7903,7907,7910,7932,7965,7967,8021,8063,8064,8091,8102,8159,8192,8205,8261,8297,8303,8306,8307,8332,8346,8348,8363,8379,8387,8398,8403,8450,8470,8471,8472,8509,8510,8518,8519,8641,8642,8651,8654,8663,8703,8710,8766,8767,8774,8789,8810,8828,8836,8837,8908,8955,9005,9039,9056,9122,9126,9131,9148,9166,9220,9222,9230,9232,9235,9253,9315,9326,9327,9390,9392,9394,9395,9408,9458,9466,9467,9469,9536,9548,9600,9633,9689,9712,9714,9719,9728,9729,9748,9758,9762,9805,9830,9870,9892,9970,10122,10168,10189,10190,10248,10671,10874,10952,10980,10983,11145,11246,11292,11323,11342,11410,11457,11459,11606,11628,11633,11654,11776,11779,11803,11841,11854,11911,12021,12099,12242,12256,12257,12258,12262,12319,12325,12327,12328,12373,12395,12514,12515,12516,12519,12788,12814,12821,12855,12861,12863,12865,12866,12889,12934,13012,13044,13125,13193,13232,13246,13250,13315,13322,13353,13417,13450,13458,13464,13488,13540,13569,13585,13602,13914,13944,13958,13964,14001,14040,14053,14071,14110,14116,14156,14157,14166,14190,14244,14288,14297,14412,14421,14450,14527,14550,14552,14576,14597,14728,14791,14901,15070,15071,15090,15118,15119,15241,15298,15318,15369,15422,15447,15534,15728,15783,15820,15926,15936,15960,16004,16104,16123,16159,16241,16273,16549,16829,16946,17095,17101,17208,17224,17255,17299,17312,17391,17527,17564,17567,17573,17603,17704,17706,17789,17817,17937,17949,17950,17952,18040,18089,18090,18115,18144,18149,18160,18182,18185,18196,18252,18267,18268,18289,18428,18522,18559,18596,18642,18643,18644,18690,18698,18740,18798,18822,18847,18963,18992,18993,19093,19094,19106,19157,19221,19231,19270,19272,19386,19488,19489,19504,19561,19589,19624,19645,19650,19676,19691,19697,19789,19819,19837,19839,19884,19959,20035,20038,20039,20061,20141,20155,20158,20198,20213,20224,20241,20276,20324,20351,20416,20524,20525,20588,20714,20822,20824,21108,21336,21342,21988,22000,22169,22239,22390,22425,22464,22466,22469,22473,22495,22506,22511,22533,22534,22537,22560,22561,22564,22603,22605,22633,22638,22649,22670,22672,22690,22693,22737,22755,22828,23044]]],["+",[70,63,[[0,6,6,0,6,[[5,1,1,0,1],[8,2,2,1,3],[16,2,2,3,5],[25,1,1,5,6]]],[1,6,5,6,11,[[55,1,1,6,7],[75,1,1,7,8],[89,4,3,8,11]]],[2,1,1,11,12,[[115,1,1,11,12]]],[3,4,4,12,16,[[117,1,1,12,13],[123,1,1,13,14],[126,1,1,14,15],[146,1,1,15,16]]],[4,5,4,16,20,[[160,1,1,16,17],[161,1,1,17,18],[174,2,1,18,19],[179,1,1,19,20]]],[6,4,3,20,23,[[215,1,1,20,21],[217,2,1,21,22],[228,1,1,22,23]]],[8,3,3,23,26,[[236,1,1,23,24],[250,1,1,24,25],[257,1,1,25,26]]],[9,2,2,26,28,[[273,1,1,26,27],[288,1,1,27,28]]],[10,8,7,28,35,[[292,1,1,28,29],[296,1,1,29,30],[297,2,1,30,31],[298,1,1,31,32],[299,1,1,32,33],[302,1,1,33,34],[305,1,1,34,35]]],[11,2,2,35,37,[[335,2,2,35,37]]],[12,1,1,37,38,[[354,1,1,37,38]]],[13,5,5,38,43,[[369,1,1,38,39],[372,1,1,39,40],[373,1,1,40,41],[376,1,1,41,42],[387,1,1,42,43]]],[15,1,1,43,44,[[421,1,1,43,44]]],[16,4,3,44,47,[[430,1,1,44,45],[434,3,2,45,47]]],[18,2,2,47,49,[[494,1,1,47,48],[536,1,1,48,49]]],[20,1,1,49,50,[[662,1,1,49,50]]],[22,1,1,50,51,[[727,1,1,50,51]]],[23,10,8,51,59,[[755,1,1,51,52],[772,1,1,52,53],[773,1,1,53,54],[777,1,1,54,55],[778,1,1,55,56],[779,1,1,56,57],[788,4,2,57,59]]],[25,1,1,59,60,[[817,1,1,59,60]]],[26,1,1,60,61,[[858,1,1,60,61]]],[29,1,1,61,62,[[887,1,1,61,62]]],[34,1,1,62,63,[[903,1,1,62,63]]]],[155,214,216,404,416,695,1659,2265,2709,2725,2740,3533,3655,3851,4009,4662,5155,5162,5474,5589,6630,6713,7023,7235,7573,7795,8192,8651,8774,8908,8955,9005,9056,9166,9253,10168,10189,10874,11246,11292,11342,11410,11633,12519,12788,12863,12865,14110,14791,17391,18642,19231,19624,19645,19789,19819,19839,20035,20039,20824,22000,22506,22737]]],["Arise",[53,53,[[0,5,5,0,5,[[12,1,1,0,1],[18,1,1,1,2],[20,1,1,2,3],[27,1,1,3,4],[34,1,1,4,5]]],[4,2,2,5,7,[[161,1,1,5,6],[162,1,1,6,7]]],[6,3,3,7,10,[[217,2,2,7,9],[228,1,1,9,10]]],[8,2,2,10,12,[[251,1,1,10,11],[258,1,1,11,12]]],[9,3,3,12,15,[[279,1,1,12,13],[281,1,1,13,14],[283,1,1,14,15]]],[10,7,7,15,22,[[304,2,2,15,17],[307,1,1,17,18],[309,2,2,18,20],[311,2,2,20,22]]],[11,2,2,22,24,[[313,1,1,22,23],[320,1,1,23,24]]],[12,1,1,24,25,[[359,1,1,24,25]]],[14,1,1,25,26,[[412,1,1,25,26]]],[18,9,9,26,35,[[480,1,1,26,27],[484,1,1,27,28],[486,1,1,28,29],[487,1,1,29,30],[494,1,1,30,31],[521,1,1,31,32],[551,1,1,32,33],[559,1,1,33,34],[609,1,1,34,35]]],[21,1,1,35,36,[[672,1,1,35,36]]],[22,1,1,36,37,[[738,1,1,36,37]]],[23,8,8,37,45,[[746,1,1,37,38],[750,1,1,38,39],[757,1,1,39,40],[762,1,1,40,41],[775,1,1,41,42],[790,1,1,42,43],[793,2,2,43,45]]],[24,1,1,45,46,[[798,1,1,45,46]]],[25,1,1,46,47,[[804,1,1,46,47]]],[30,1,1,47,48,[[888,1,1,47,48]]],[31,2,2,48,50,[[889,1,1,48,49],[891,1,1,49,50]]],[32,3,3,50,53,[[894,1,1,50,51],[896,1,1,51,52],[898,1,1,52,53]]]],[335,472,531,775,1012,5169,5197,6703,6709,7002,7607,7814,8332,8403,8470,9220,9230,9326,9392,9394,9466,9469,9536,9728,10980,12256,13964,14001,14040,14053,14116,14597,15070,15241,16159,17567,18822,18992,19094,19272,19386,19697,20061,20155,20158,20351,20524,22511,22533,22560,22605,22633,22649]]],["Rise",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6740]]],["Stablish",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15936]]],["Up",[8,8,[[0,2,2,0,2,[[18,1,1,0,1],[43,1,1,1,2]]],[1,1,1,2,3,[[81,1,1,2,3]]],[5,1,1,3,4,[[193,1,1,3,4]]],[6,3,3,4,7,[[214,1,1,4,5],[218,1,1,5,6],[229,1,1,6,7]]],[8,1,1,7,8,[[244,1,1,7,8]]]],[471,1328,2439,5989,6613,6739,7052,7417]]],["abide",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22690]]],["again",[3,3,[[1,1,1,0,1,[[70,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[19,1,1,2,3,[[651,1,1,2,3]]]],[2096,5821,17095]]],["against",[6,6,[[1,1,1,0,1,[[64,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[17,1,1,2,3,[[462,1,1,2,3]]],[18,2,2,3,5,[[521,1,1,3,4],[551,1,1,4,5]]],[24,1,1,5,6,[[799,1,1,5,6]]]],[1927,5821,13488,14576,15071,20416]]],["arise",[50,49,[[0,8,8,0,8,[[26,3,3,0,3],[30,1,1,3,4],[34,1,1,4,5],[40,1,1,5,6],[42,2,2,6,8]]],[4,2,2,8,10,[[165,1,1,8,9],[169,1,1,9,10]]],[5,2,2,10,12,[[187,1,1,10,11],[194,1,1,11,12]]],[6,1,1,12,13,[[215,1,1,12,13]]],[8,1,1,13,14,[[244,1,1,13,14]]],[9,6,5,14,19,[[268,2,1,14,15],[269,1,1,15,16],[283,1,1,16,17],[285,1,1,17,18],[288,1,1,18,19]]],[10,2,2,19,21,[[293,1,1,19,20],[311,1,1,20,21]]],[12,1,1,21,22,[[359,1,1,21,22]]],[13,1,1,22,23,[[372,1,1,22,23]]],[15,1,1,23,24,[[414,1,1,23,24]]],[17,2,2,24,26,[[442,1,1,24,25],[460,1,1,25,26]]],[18,6,6,26,32,[[489,1,1,26,27],[545,1,1,27,28],[555,1,1,28,29],[565,1,1,29,30],[579,1,1,30,31],[586,1,1,31,32]]],[19,1,1,32,33,[[633,1,1,32,33]]],[22,6,6,33,39,[[699,1,1,33,34],[701,1,1,34,35],[704,1,1,35,36],[709,1,1,36,37],[727,1,1,37,38],[730,1,1,38,39]]],[23,5,5,39,44,[[745,1,1,39,40],[746,1,1,40,41],[750,1,1,41,42],[752,1,1,42,43],[757,1,1,43,44]]],[27,1,1,44,45,[[871,1,1,44,45]]],[29,2,2,45,47,[[885,2,2,45,47]]],[31,1,1,47,48,[[889,1,1,47,48]]],[32,1,1,48,49,[[899,1,1,48,49]]]],[746,758,770,886,1014,1225,1298,1303,5273,5372,5853,6003,6635,7394,8063,8102,8450,8518,8641,8828,9458,10983,11323,12327,13012,13464,14071,14901,15119,15318,15534,15783,16549,18040,18089,18149,18252,18643,18698,18963,18993,19093,19157,19270,22239,22466,22469,22537,22672]]],["ariseth",[2,2,[[22,2,2,0,2,[[680,2,2,0,2]]]],[17704,17706]]],["arising",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12814]]],["arose",[104,103,[[0,7,6,0,6,[[18,3,2,0,2],[23,2,2,2,4],[36,1,1,4,5],[37,1,1,5,6]]],[4,1,1,6,7,[[186,1,1,6,7]]],[5,4,4,7,11,[[194,2,2,7,9],[204,1,1,9,10],[210,1,1,10,11]]],[6,12,12,11,23,[[212,1,1,11,12],[213,1,1,12,13],[214,1,1,13,14],[215,1,1,14,15],[218,1,1,15,16],[220,2,2,16,18],[223,1,1,18,19],[226,1,1,19,20],[229,1,1,20,21],[230,2,2,21,23]]],[7,1,1,23,24,[[232,1,1,23,24]]],[8,26,26,24,50,[[238,2,2,24,26],[244,1,1,26,27],[248,1,1,27,28],[252,3,3,28,31],[253,1,1,31,32],[255,4,4,32,36],[256,1,1,36,37],[258,3,3,37,40],[259,2,2,40,42],[260,3,3,42,45],[261,2,2,45,47],[262,1,1,47,48],[263,1,1,48,49],[266,1,1,49,50]]],[9,14,14,50,64,[[268,1,1,50,51],[272,1,1,51,52],[277,1,1,52,53],[278,2,2,53,55],[279,2,2,55,57],[280,2,2,57,59],[281,1,1,59,60],[283,2,2,60,62],[285,1,1,62,63],[289,1,1,63,64]]],[10,12,12,64,76,[[291,1,1,64,65],[292,1,1,65,66],[293,1,1,66,67],[298,1,1,67,68],[301,2,2,68,70],[304,2,2,70,72],[307,1,1,72,73],[309,3,3,73,76]]],[11,11,11,76,87,[[313,1,1,76,77],[316,1,1,77,78],[319,2,2,78,80],[320,1,1,80,81],[321,1,1,81,82],[322,1,1,82,83],[323,1,1,83,84],[324,1,1,84,85],[335,1,1,85,86],[337,1,1,86,87]]],[12,1,1,87,88,[[347,1,1,87,88]]],[13,4,4,88,92,[[388,1,1,88,89],[395,1,1,89,90],[396,2,2,90,92]]],[14,1,1,92,93,[[412,1,1,92,93]]],[15,1,1,93,94,[[414,1,1,93,94]]],[16,1,1,94,95,[[433,1,1,94,95]]],[17,3,3,95,98,[[436,1,1,95,96],[454,1,1,96,97],[464,1,1,97,98]]],[18,1,1,98,99,[[553,1,1,98,99]]],[23,1,1,99,100,[[785,1,1,99,100]]],[25,1,1,100,101,[[804,1,1,100,101]]],[31,2,2,101,103,[[891,2,2,101,103]]]],[490,492,601,652,1090,1138,5849,6005,6021,6301,6485,6555,6588,6608,6630,6740,6812,6814,6895,6952,7027,7062,7072,7133,7282,7284,7417,7500,7653,7666,7670,7703,7755,7764,7771,7772,7782,7823,7826,7834,7843,7847,7862,7902,7903,7907,7910,7932,7965,8021,8064,8159,8261,8303,8306,8346,8348,8379,8387,8398,8471,8472,8519,8663,8767,8810,8836,9039,9126,9148,9222,9235,9327,9390,9395,9408,9548,9633,9714,9719,9729,9762,9805,9830,9870,10190,10248,10671,11654,11803,11841,11854,12257,12319,12821,12889,13315,13540,15090,19959,20525,22561,22564]]],["assured",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3589]]],["clearer",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13125]]],["confirm",[2,2,[[7,1,1,0,1,[[235,1,1,0,1]]],[25,1,1,1,2,[[814,1,1,1,2]]]],[7197,20714]]],["confirmed",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12866]]],["confirmeth",[3,3,[[3,1,1,0,1,[[146,1,1,0,1]]],[4,1,1,1,2,[[179,1,1,1,2]]],[22,1,1,2,3,[[722,1,1,2,3]]]],[4662,5611,18559]]],["continue",[2,2,[[8,1,1,0,1,[[248,1,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]]],[7499,13232]]],["decreed",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12865]]],["dim",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7312]]],["endure",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13044]]],["enemies",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2463]]],["establish",[7,7,[[0,1,1,0,1,[[16,1,1,0,1]]],[3,1,1,1,2,[[146,1,1,1,2]]],[4,2,2,2,4,[[180,1,1,2,3],[181,1,1,3,4]]],[9,1,1,4,5,[[273,1,1,4,5]]],[22,1,1,5,6,[[727,1,1,5,6]]],[25,1,1,6,7,[[817,1,1,6,7]]]],[418,4661,5620,5692,8205,18644,20822]]],["established",[8,8,[[0,1,1,0,1,[[8,1,1,0,1]]],[2,1,1,1,2,[[114,1,1,1,2]]],[4,1,1,2,3,[[171,1,1,2,3]]],[8,1,1,3,4,[[259,1,1,3,4]]],[17,1,1,4,5,[[457,1,1,4,5]]],[18,1,1,5,6,[[555,1,1,5,6]]],[19,2,2,6,8,[[642,1,1,6,7],[657,1,1,7,8]]]],[222,3499,5421,7859,13417,15118,16829,17255]]],["good",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4435]]],["hold",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13914]]],["maketh",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15728]]],["ordained",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12861]]],["perform",[2,2,[[8,1,1,0,1,[[238,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[7288,16004]]],["performed",[5,5,[[8,1,1,0,1,[[250,1,1,0,1]]],[23,4,4,1,5,[[767,1,1,1,2],[774,1,1,2,3],[779,1,1,3,4],[795,1,1,4,5]]]],[7571,19504,19691,19837,20241]]],["performeth",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12395]]],["pitch",[1,1,[[5,1,1,0,1,[[190,1,1,0,1]]]],[5930]]],["raise",[5,5,[[5,1,1,0,1,[[194,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]],[23,1,1,2,3,[[767,1,1,2,3]]],[32,1,1,3,4,[[897,1,1,3,4]]],[37,1,1,4,5,[[921,1,1,4,5]]]],[6031,18196,19489,22638,23044]]],["raised",[1,1,[[5,1,1,0,1,[[193,1,1,0,1]]]],[6002]]],["rear",[1,1,[[9,1,1,0,1,[[290,1,1,0,1]]]],[8710]]],["remain",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5880]]],["rise",[26,26,[[3,1,1,0,1,[[140,1,1,0,1]]],[5,1,1,1,2,[[204,1,1,1,2]]],[8,2,2,2,4,[[257,1,1,2,3],[259,1,1,3,4]]],[9,2,2,4,6,[[278,1,1,4,5],[284,1,1,5,6]]],[17,1,1,6,7,[[465,1,1,6,7]]],[18,5,5,7,12,[[495,1,1,7,8],[504,1,1,8,9],[513,1,1,9,10],[596,1,1,10,11],[617,1,1,11,12]]],[19,3,3,12,15,[[651,1,1,12,13],[655,2,2,13,15]]],[21,1,1,15,16,[[673,1,1,15,16]]],[22,6,6,16,22,[[692,1,1,16,17],[702,1,1,17,18],[704,1,1,18,19],[711,1,1,19,20],[721,1,1,20,21],[732,1,1,21,22]]],[23,2,2,22,24,[[769,1,1,22,23],[795,1,1,23,24]]],[29,2,2,24,26,[[883,1,1,24,25],[885,1,1,25,26]]]],[4463,6297,7800,7846,8307,8510,13569,14156,14288,14450,15960,16273,17101,17208,17224,17573,17949,18115,18144,18289,18522,18740,19561,20276,22425,22473]]],["risen",[5,5,[[8,1,1,0,1,[[260,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]],[11,1,1,2,3,[[318,1,1,2,3]]],[18,2,2,3,5,[[497,1,1,3,4],[563,1,1,4,5]]]],[7890,8363,9689,14190,15298]]],["riseth",[3,3,[[4,1,1,0,1,[[174,1,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[19,1,1,2,3,[[658,1,1,2,3]]]],[5496,13193,17299]]],["rising",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13450]]],["rose",[4,4,[[1,1,1,0,1,[[59,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[10,1,1,2,3,[[293,1,1,2,3]]],[11,1,1,3,4,[[320,1,1,3,4]]]],[1800,7059,8837,9748]]],["set",[4,4,[[4,1,1,0,1,[[180,1,1,0,1]]],[10,1,1,1,2,[[304,1,1,1,2]]],[18,1,1,2,3,[[517,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]]],[5647,9222,14527,19106]]],["stablish",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12855]]],["stand",[26,23,[[2,2,2,0,2,[[116,2,2,0,2]]],[3,9,6,2,8,[[146,9,6,2,8]]],[5,2,2,8,10,[[193,2,2,8,10]]],[17,1,1,10,11,[[454,1,1,10,11]]],[18,3,3,11,14,[[478,1,1,11,12],[501,1,1,12,13],[566,1,1,13,14]]],[19,1,1,14,15,[[646,1,1,14,15]]],[22,7,7,15,22,[[685,1,1,15,16],[686,1,1,16,17],[692,1,1,17,18],[706,1,1,18,19],[710,1,1,19,20],[718,1,1,20,21],[724,1,1,21,22]]],[23,1,1,22,23,[[788,1,1,22,23]]]],[3584,3587,4652,4653,4655,4657,4659,4660,5988,5989,13322,13944,14244,15369,16946,17789,17817,17952,18182,18267,18428,18596,20038]]],["strengthen",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15926]]],["succeed",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5553]]],["sure",[2,2,[[0,2,2,0,2,[[22,2,2,0,2]]]],[588,591]]],["up",[202,202,[[0,19,19,0,19,[[3,1,1,0,1],[17,1,1,1,2],[18,1,1,2,3],[20,1,1,3,4],[21,2,2,4,6],[22,2,2,6,8],[23,1,1,8,9],[24,1,1,9,10],[30,3,3,10,13],[31,1,1,13,14],[36,1,1,14,15],[37,1,1,15,16],[42,1,1,16,17],[45,1,1,17,18],[48,1,1,18,19]]],[1,9,9,19,28,[[50,1,1,19,20],[51,1,1,20,21],[61,2,2,21,23],[73,1,1,23,24],[81,1,1,24,25],[82,2,2,25,27],[89,1,1,27,28]]],[2,2,2,28,30,[[108,1,1,28,29],[115,1,1,29,30]]],[3,15,15,30,45,[[125,1,1,30,31],[126,1,1,31,32],[127,1,1,32,33],[132,2,2,33,35],[138,4,4,35,39],[139,2,2,39,41],[140,2,2,41,43],[141,1,1,43,44],[148,1,1,44,45]]],[4,16,16,45,61,[[154,2,2,45,47],[158,1,1,47,48],[163,1,1,48,49],[168,1,1,49,50],[170,2,2,50,52],[171,3,3,52,55],[177,1,1,55,56],[179,1,1,56,57],[180,1,1,57,58],[181,1,1,58,59],[183,1,1,59,60],[184,1,1,60,61]]],[5,7,7,61,68,[[189,1,1,61,62],[190,1,1,62,63],[191,1,1,63,64],[192,1,1,64,65],[193,1,1,65,66],[194,1,1,66,67],[210,1,1,67,68]]],[6,17,17,68,85,[[212,2,2,68,70],[213,2,2,70,72],[219,5,5,72,77],[229,6,6,77,83],[230,2,2,83,85]]],[7,4,4,85,89,[[233,1,1,85,86],[234,1,1,86,87],[235,2,2,87,89]]],[8,6,6,89,95,[[236,1,1,89,90],[237,2,2,90,92],[251,1,1,92,93],[259,1,1,93,94],[263,1,1,94,95]]],[9,7,7,95,102,[[269,1,1,95,96],[278,2,2,96,98],[284,1,1,98,99],[288,1,1,99,100],[289,1,1,100,101],[290,1,1,101,102]]],[10,9,9,102,111,[[291,1,1,102,103],[292,1,1,103,104],[297,1,1,104,105],[298,1,1,105,106],[301,2,2,106,108],[304,1,1,108,109],[306,1,1,109,110],[311,1,1,110,111]]],[11,6,6,111,117,[[315,1,1,111,112],[319,1,1,112,113],[321,1,1,113,114],[325,1,1,114,115],[328,1,1,115,116],[333,1,1,116,117]]],[12,2,2,117,119,[[358,1,1,117,118],[365,1,1,118,119]]],[13,8,8,119,127,[[372,1,1,119,120],[379,2,2,120,122],[386,1,1,122,123],[387,1,1,123,124],[394,2,2,124,126],[399,1,1,126,127]]],[14,5,5,127,132,[[403,1,1,127,128],[405,1,1,128,129],[411,1,1,129,130],[412,2,2,130,132]]],[15,6,6,132,138,[[414,1,1,132,133],[415,1,1,133,134],[416,1,1,134,135],[421,3,3,135,138]]],[17,6,6,138,144,[[451,2,2,138,140],[455,1,1,140,141],[459,1,1,141,142],[465,1,1,142,143],[466,1,1,143,144]]],[18,14,14,144,158,[[480,1,1,144,145],[495,2,2,145,147],[504,1,1,147,148],[512,2,2,148,150],[518,2,2,150,152],[531,1,1,152,153],[569,1,1,153,154],[571,1,1,154,155],[590,1,1,155,156],[601,1,1,156,157],[604,1,1,157,158]]],[19,1,1,158,159,[[658,1,1,158,159]]],[20,2,2,159,161,[[662,1,1,159,160],[670,1,1,160,161]]],[21,2,2,161,163,[[672,1,1,161,162],[675,1,1,162,163]]],[22,10,10,163,173,[[692,2,2,163,165],[701,1,1,165,166],[705,1,1,166,167],[706,1,1,167,168],[710,1,1,168,169],[722,1,1,169,170],[729,1,1,170,171],[736,1,1,171,172],[739,1,1,172,173]]],[23,10,10,173,183,[[754,1,1,173,174],[767,1,1,174,175],[770,1,1,175,176],[773,1,1,176,177],[774,1,1,177,178],[781,1,1,178,179],[793,1,1,179,180],[794,1,1,180,181],[795,2,2,181,183]]],[24,1,1,183,184,[[797,1,1,183,184]]],[25,4,4,184,188,[[808,1,1,184,185],[827,1,1,185,186],[835,2,2,186,188]]],[26,1,1,188,189,[[857,1,1,188,189]]],[27,1,1,189,190,[[867,1,1,189,190]]],[29,5,5,190,195,[[880,1,1,190,191],[883,1,1,191,192],[884,1,1,192,193],[886,1,1,193,194],[887,1,1,194,195]]],[30,1,1,195,196,[[888,1,1,195,196]]],[31,1,1,196,197,[[889,1,1,196,197]]],[32,2,2,197,199,[[894,1,1,197,198],[899,1,1,198,199]]],[33,1,1,199,200,[[900,1,1,199,200]]],[34,1,1,200,201,[[904,1,1,200,201]]],[35,1,1,201,202,[[908,1,1,201,202]]]],[87,440,458,545,550,566,574,578,645,692,890,894,908,950,1118,1127,1305,1391,1482,1540,1571,1846,1847,2190,2444,2481,2483,2724,3313,3525,3980,4023,4056,4196,4219,4388,4389,4395,4396,4434,4440,4455,4471,4478,4732,4951,4962,5093,5227,5364,5399,5402,5417,5421,5422,5554,5587,5618,5701,5744,5796,5909,5919,5941,5975,5986,6009,6502,6561,6563,6577,6583,6772,6786,6788,6789,6797,7029,7031,7033,7034,7051,7052,7073,7087,7164,7186,7195,7200,7221,7248,7275,7608,7846,7967,8091,8297,8303,8509,8642,8654,8703,8766,8789,8955,9005,9122,9131,9232,9315,9467,9600,9712,9758,9892,9970,10122,10952,11145,11292,11457,11459,11606,11628,11776,11779,11911,12021,12099,12242,12258,12262,12325,12328,12373,12514,12515,12516,13246,13250,13353,13458,13585,13602,13958,14157,14166,14297,14412,14421,14550,14552,14728,15422,15447,15820,16104,16123,17312,17391,17527,17564,17603,17937,17950,18090,18160,18185,18268,18559,18690,18798,18847,19221,19488,19589,19650,19676,19884,20141,20198,20213,20224,20324,20588,21108,21336,21342,21988,22169,22390,22425,22464,22495,22506,22511,22534,22603,22670,22693,22755,22828]]],["upholden",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12934]]],["uprising",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16241]]]]},{"k":"H6966","v":[["*",[35,30,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]],[26,33,28,2,30,[[851,5,4,2,6],[852,11,9,6,15],[853,1,1,15,16],[854,2,2,16,18],[855,6,6,18,24],[856,8,6,24,30]]]],[12136,12169,21779,21789,21797,21802,21808,21809,21810,21812,21814,21819,21821,21825,21831,21854,21885,21895,21906,21908,21912,21913,21920,21924,21937,21938,21943,21949,21950,21957]]],["Arise",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21938]]],["appointeth",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21895]]],["arise",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[856,2,2,1,3]]]],[21797,21950,21957]]],["arose",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21924]]],["by",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21949]]],["establish",[2,2,[[26,2,2,0,2,[[855,2,2,0,2]]]],[21912,21913]]],["establisheth",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21920]]],["made",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21885]]],["rise",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21957]]],["set",[3,3,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,2,2,1,3,[[855,2,2,1,3]]]],[12169,21906,21908]]],["stand",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[856,1,1,1,2]]]],[21802,21937]]],["stood",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[852,1,1,1,2],[856,1,1,2,3]]]],[21789,21810,21943]]],["up",[15,14,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,14,13,1,14,[[851,2,2,1,3],[852,10,9,3,12],[853,1,1,12,13],[856,1,1,13,14]]]],[12136,21779,21802,21808,21809,21810,21812,21814,21819,21821,21825,21831,21854,21938]]]]},{"k":"H6967","v":[["*",[45,43,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,10,10,1,11,[[74,2,2,1,3],[76,2,2,3,5],[79,1,1,5,6],[86,3,3,6,9],[87,2,2,9,11]]],[8,2,2,11,13,[[251,1,1,11,12],[263,1,1,12,13]]],[10,13,12,13,25,[[296,5,5,13,18],[297,8,7,18,25]]],[11,3,2,25,27,[[331,1,1,25,26],[337,2,1,26,27]]],[13,3,3,27,30,[[370,2,2,27,29],[372,1,1,29,30]]],[21,1,1,30,31,[[677,1,1,30,31]]],[22,2,2,31,33,[[688,1,1,31,32],[715,1,1,32,33]]],[23,2,2,33,35,[[796,2,2,33,35]]],[25,8,8,35,43,[[814,1,1,35,36],[818,1,1,36,37],[820,1,1,37,38],[832,4,4,38,42],[841,1,1,42,43]]]],[152,2205,2218,2273,2290,2384,2605,2614,2629,2634,2651,7602,7962,8898,8906,8916,8919,8922,8936,8949,8950,8957,8961,8966,8969,10084,10239,11247,11248,11295,17634,17883,18376,20297,20298,20726,20831,20892,21233,21235,21240,21244,21482]]],["+",[1,1,[[8,1,1,0,1,[[263,1,1,0,1]]]],[7962]]],["height",[30,28,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,10,10,1,11,[[74,2,2,1,3],[76,2,2,3,5],[79,1,1,5,6],[86,3,3,6,9],[87,2,2,9,11]]],[10,9,8,11,19,[[296,3,3,11,14],[297,6,5,14,19]]],[11,2,1,19,20,[[337,2,1,19,20]]],[13,2,2,20,22,[[370,2,2,20,22]]],[23,2,2,22,24,[[796,2,2,22,24]]],[25,4,4,24,28,[[832,3,3,24,27],[841,1,1,27,28]]]],[152,2205,2218,2273,2290,2384,2605,2614,2629,2634,2651,8898,8916,8922,8936,8950,8957,8961,8966,10239,11247,11248,20297,20298,21235,21240,21244,21482]]],["high",[5,5,[[10,4,4,0,4,[[296,2,2,0,2],[297,2,2,2,4]]],[13,1,1,4,5,[[372,1,1,4,5]]]],[8906,8919,8949,8969,11295]]],["stature",[7,7,[[8,1,1,0,1,[[251,1,1,0,1]]],[21,1,1,1,2,[[677,1,1,1,2]]],[22,1,1,2,3,[[688,1,1,2,3]]],[25,4,4,3,7,[[814,1,1,3,4],[818,1,1,4,5],[820,1,1,5,6],[832,1,1,6,7]]]],[7602,17634,17883,20726,20831,20892,21233]]],["tall",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10084,18376]]]]},{"k":"H6968","v":[["upright",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3537]]]]},{"k":"H6969","v":[["*",[8,6,[[9,2,2,0,2,[[267,1,1,0,1],[269,1,1,1,2]]],[13,1,1,2,3,[[401,1,1,2,3]]],[23,1,1,3,4,[[753,1,1,3,4]]],[25,4,2,4,6,[[828,1,1,4,5],[833,3,1,5,6]]]],[8039,8114,11991,19192,21153,21264]]],["lament",[4,2,[[25,4,2,0,2,[[828,1,1,0,1],[833,3,1,1,2]]]],[21153,21264]]],["lamented",[3,3,[[9,2,2,0,2,[[267,1,1,0,1],[269,1,1,1,2]]],[13,1,1,2,3,[[401,1,1,2,3]]]],[8039,8114,11991]]],["women",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19192]]]]},{"k":"H6970","v":[["Koa",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21030]]]]},{"k":"H6971","v":[["apes",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9101,11385]]]]},{"k":"H6972","v":[["*",[2,2,[[22,2,2,0,2,[[685,1,1,0,1],[696,1,1,1,2]]]],[17788,18003]]],["summer",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18003]]],["vex",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17788]]]]},{"k":"H6973","v":[["*",[8,8,[[0,1,1,0,1,[[26,1,1,0,1]]],[1,1,1,1,2,[[50,1,1,1,2]]],[2,1,1,2,3,[[109,1,1,2,3]]],[3,2,2,3,5,[[137,1,1,3,4],[138,1,1,4,5]]],[10,1,1,5,6,[[301,1,1,5,6]]],[19,1,1,6,7,[[630,1,1,6,7]]],[22,1,1,7,8,[[685,1,1,7,8]]]],[773,1544,3341,4345,4378,9133,16466,17798]]],["abhorred",[2,2,[[2,1,1,0,1,[[109,1,1,0,1]]],[10,1,1,1,2,[[301,1,1,1,2]]]],[3341,9133]]],["abhorrest",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17798]]],["distressed",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4378]]],["grieved",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1544]]],["loatheth",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4345]]],["weary",[2,2,[[0,1,1,0,1,[[26,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]]],[773,16466]]]]},{"k":"H6974","v":[["*",[22,21,[[8,1,1,0,1,[[261,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]],[17,1,1,2,3,[[449,1,1,2,3]]],[18,7,7,3,10,[[480,1,1,3,4],[494,1,1,4,5],[512,1,1,5,6],[521,1,1,6,7],[536,1,1,7,8],[550,1,1,8,9],[616,1,1,9,10]]],[19,2,2,10,12,[[633,1,1,10,11],[650,1,1,11,12]]],[22,3,2,12,14,[[704,1,1,12,13],[707,2,1,13,14]]],[23,3,3,14,17,[[775,1,1,14,15],[795,2,2,15,17]]],[25,1,1,17,18,[[808,1,1,17,18]]],[26,1,1,18,19,[[861,1,1,18,19]]],[28,1,1,19,20,[[876,1,1,19,20]]],[34,1,1,20,21,[[904,1,1,20,21]]]],[7917,9634,13193,13962,14118,14433,14594,14795,15040,16257,16562,17079,18149,18201,19717,20251,20269,20583,22083,22296,22767]]],["+",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15040]]],["Awake",[3,3,[[22,1,1,0,1,[[704,1,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[18149,22296,22767]]],["arise",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14594]]],["awake",[7,7,[[17,1,1,0,1,[[449,1,1,0,1]]],[18,4,4,1,5,[[494,1,1,1,2],[512,1,1,2,3],[536,1,1,3,4],[616,1,1,4,5]]],[19,1,1,5,6,[[650,1,1,5,6]]],[26,1,1,6,7,[[861,1,1,6,7]]]],[13193,14118,14433,14795,16257,17079,22083]]],["awaked",[4,4,[[8,1,1,0,1,[[261,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]],[18,1,1,2,3,[[480,1,1,2,3]]],[23,1,1,3,4,[[775,1,1,3,4]]]],[7917,9634,13962,19717]]],["awakest",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16562]]],["awaketh",[2,1,[[22,2,1,0,1,[[707,2,1,0,1]]]],[18201]]],["wake",[2,2,[[23,2,2,0,2,[[795,2,2,0,2]]]],[20251,20269]]],["watcheth",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20583]]]]},{"k":"H6975","v":[["*",[12,12,[[0,1,1,0,1,[[2,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[6,2,2,2,4,[[218,2,2,2,4]]],[9,1,1,4,5,[[289,1,1,4,5]]],[18,1,1,5,6,[[595,1,1,5,6]]],[22,2,2,6,8,[[710,1,1,6,7],[711,1,1,7,8]]],[23,2,2,8,10,[[748,1,1,8,9],[756,1,1,9,10]]],[25,1,1,10,11,[[829,1,1,10,11]]],[27,1,1,11,12,[[871,1,1,11,12]]]],[73,2119,6726,6735,8659,15881,18272,18291,19030,19262,21181,22233]]],["Thorns",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[73]]],["thorn",[2,2,[[25,1,1,0,1,[[829,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]]],[21181,22233]]],["thorns",[9,9,[[1,1,1,0,1,[[71,1,1,0,1]]],[6,2,2,1,3,[[218,2,2,1,3]]],[9,1,1,3,4,[[289,1,1,3,4]]],[18,1,1,4,5,[[595,1,1,4,5]]],[22,2,2,5,7,[[710,1,1,5,6],[711,1,1,6,7]]],[23,2,2,7,9,[[748,1,1,7,8],[756,1,1,8,9]]]],[2119,6726,6735,8659,15881,18272,18291,19030,19262]]]]},{"k":"H6976","v":[["*",[7,7,[[5,1,1,0,1,[[209,1,1,0,1]]],[12,2,2,1,3,[[341,1,1,1,2],[361,1,1,2,3]]],[14,1,1,3,4,[[404,1,1,3,4]]],[15,3,3,4,7,[[415,2,2,4,6],[419,1,1,6,7]]]],[6473,10393,11025,12088,12331,12348,12483]]],["Coz",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10393]]],["Hakkoz",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11025]]],["Koz",[4,4,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,3,3,1,4,[[415,2,2,1,3],[419,1,1,3,4]]]],[12088,12331,12348,12483]]],["thorns",[1,1,[[5,1,1,0,1,[[209,1,1,0,1]]]],[6473]]]]},{"k":"H6977","v":[["locks",[2,2,[[21,2,2,0,2,[[675,2,2,0,2]]]],[17600,17609]]]]},{"k":"H6978","v":[["out",[2,2,[[22,2,2,0,2,[[696,2,2,0,2]]]],[17999,18004]]]]},{"k":"H6979","v":[["*",[5,4,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,2,2,1,3,[[700,1,1,1,2],[715,1,1,2,3]]],[23,2,1,3,4,[[750,2,1,3,4]]]],[10085,18057,18377,19096]]],["casteth",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19096]]],["digged",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10085,18377]]],["down",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18057]]],["out",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19096]]]]},{"k":"H6980","v":[["*",[2,2,[[22,2,2,0,2,[[737,2,2,0,2]]]],[18805,18806]]],["web",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18805]]],["webs",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18806]]]]},{"k":"H6981","v":[["Kore",[3,3,[[12,2,2,0,2,[[346,1,1,0,1],[363,1,1,1,2]]],[13,1,1,2,3,[[397,1,1,2,3]]]],[10634,11078,11868]]]]},{"k":"H6982","v":[["*",[5,5,[[0,1,1,0,1,[[18,1,1,0,1]]],[11,2,2,1,3,[[318,2,2,1,3]]],[13,1,1,3,4,[[369,1,1,3,4]]],[21,1,1,4,5,[[671,1,1,4,5]]]],[465,9676,9679,11236,17554]]],["beam",[2,2,[[11,2,2,0,2,[[318,2,2,0,2]]]],[9676,9679]]],["beams",[2,2,[[13,1,1,0,1,[[369,1,1,0,1]]],[21,1,1,1,2,[[671,1,1,1,2]]]],[11236,17554]]],["roof",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[465]]]]},{"k":"H6983","v":[["snare",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18214]]]]},{"k":"H6984","v":[["Kushaiah",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10808]]]]},{"k":"H6985","v":[["very",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20809]]]]},{"k":"H6986","v":[["*",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,1,1,1,2,[[568,1,1,1,2]]],[22,1,1,2,3,[[706,1,1,2,3]]]],[5782,15401,18166]]],["+",[1,1,[[18,1,1,0,1,[[568,1,1,0,1]]]],[15401]]],["destroying",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18166]]],["destruction",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5782]]]]},{"k":"H6987","v":[["destruction",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22280]]]]},{"k":"H6988","v":[["incense",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5820]]]]},{"k":"H6989","v":[["Keturah",[4,4,[[0,2,2,0,2,[[24,2,2,0,2]]],[12,2,2,2,4,[[338,2,2,2,4]]]],[659,662,10284,10285]]]]},{"k":"H6990","v":[["off",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13043]]]]},{"k":"H6991","v":[["*",[3,3,[[17,2,2,0,2,[[448,1,1,0,1],[459,1,1,1,2]]],[18,1,1,2,3,[[616,1,1,2,3]]]],[13168,13450,16258]]],["killeth",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13450]]],["slay",[2,2,[[17,1,1,0,1,[[448,1,1,0,1]]],[18,1,1,1,2,[[616,1,1,1,2]]]],[13168,16258]]]]},{"k":"H6992","v":[["*",[7,6,[[26,7,6,0,6,[[851,3,2,0,2],[852,1,1,2,3],[854,2,2,3,5],[856,1,1,5,6]]]],[21771,21772,21829,21893,21904,21944]]],["+",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21893]]],["slain",[4,3,[[26,4,3,0,3,[[851,2,1,0,1],[854,1,1,1,2],[856,1,1,2,3]]]],[21771,21904,21944]]],["slay",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21772]]],["slew",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21829]]]]},{"k":"H6993","v":[["+",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22519]]]]},{"k":"H6994","v":[["*",[4,4,[[0,1,1,0,1,[[31,1,1,0,1]]],[9,1,1,1,2,[[273,1,1,1,2]]],[12,1,1,2,3,[[354,1,1,2,3]]],[29,1,1,3,4,[[886,1,1,3,4]]]],[938,8199,10880,22486]]],["+",[1,1,[[29,1,1,0,1,[[886,1,1,0,1]]]],[22486]]],["small",[1,1,[[9,1,1,0,1,[[273,1,1,0,1]]]],[8199]]],["thing",[1,1,[[12,1,1,0,1,[[354,1,1,0,1]]]],[10880]]],["worthy",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[938]]]]},{"k":"H6995","v":[["little",[2,2,[[10,1,1,0,1,[[302,1,1,0,1]]],[13,1,1,1,2,[[376,1,1,1,2]]]],[9161,11405]]]]},{"k":"H6996","v":[["*",[101,100,[[0,20,19,0,19,[[0,1,1,0,1],[8,1,1,1,2],[18,1,1,2,3],[26,2,2,3,5],[28,2,2,5,7],[41,5,5,7,12],[42,1,1,12,13],[43,6,5,13,18],[47,1,1,18,19]]],[1,2,2,19,21,[[67,2,2,19,21]]],[3,1,1,21,22,[[138,1,1,21,22]]],[4,3,3,22,25,[[153,1,1,22,23],[177,2,2,23,25]]],[6,4,4,25,29,[[211,1,1,25,26],[213,1,1,26,27],[219,1,1,27,28],[225,1,1,28,29]]],[8,13,13,29,42,[[237,1,1,29,30],[240,1,1,30,31],[244,1,1,31,32],[249,1,1,32,33],[250,1,1,33,34],[251,1,1,34,35],[252,1,1,35,36],[255,2,2,36,38],[257,1,1,38,39],[260,1,1,39,40],[265,2,2,40,42]]],[9,2,2,42,44,[[275,1,1,42,43],[278,1,1,43,44]]],[10,7,7,44,51,[[292,1,1,44,45],[293,1,1,45,46],[298,1,1,46,47],[301,1,1,47,48],[307,1,1,48,49],[308,1,1,49,50],[312,1,1,50,51]]],[11,7,7,51,58,[[314,1,1,51,52],[316,1,1,52,53],[317,2,2,53,55],[330,1,1,55,56],[335,1,1,56,57],[337,1,1,57,58]]],[12,4,4,58,62,[[349,1,1,58,59],[361,1,1,59,60],[362,1,1,60,61],[363,1,1,61,62]]],[13,7,7,62,69,[[381,1,1,62,63],[384,1,1,63,64],[387,1,1,64,65],[388,1,1,65,66],[397,1,1,66,67],[400,1,1,67,68],[402,1,1,68,69]]],[16,2,2,69,71,[[426,2,2,69,71]]],[17,1,1,71,72,[[438,1,1,71,72]]],[18,2,2,72,74,[[581,1,1,72,73],[592,1,1,73,74]]],[19,1,1,74,75,[[657,1,1,74,75]]],[20,1,1,75,76,[[667,1,1,75,76]]],[21,2,2,76,78,[[672,1,1,76,77],[678,1,1,77,78]]],[22,5,5,78,83,[[689,1,1,78,79],[700,1,1,79,80],[714,1,1,80,81],[732,1,1,81,82],[738,1,1,82,83]]],[23,8,8,83,91,[[750,1,1,83,84],[752,1,1,84,85],[760,1,1,85,86],[775,1,1,86,87],[786,2,2,87,89],[788,1,1,89,90],[793,1,1,90,91]]],[25,3,3,91,94,[[817,2,2,91,93],[844,1,1,93,94]]],[29,3,3,94,97,[[884,1,1,94,95],[885,2,2,95,97]]],[30,1,1,97,98,[[888,1,1,97,98]]],[31,1,1,98,99,[[891,1,1,98,99]]],[37,1,1,99,100,[[914,1,1,99,100]]]],[15,229,468,742,769,811,813,1265,1267,1272,1284,1286,1319,1326,1336,1344,1347,1350,1470,2021,2025,4393,4909,5560,5561,6522,6577,6759,6931,7259,7328,7412,7557,7577,7606,7632,7732,7765,7802,7897,7980,7997,8239,8289,8790,8823,9049,9125,9330,9385,9511,9574,9613,9649,9661,10048,10167,10248,10734,11046,11054,11090,11503,11572,11641,11645,11869,11963,12011,12707,12722,12923,15596,15843,17275,17489,17569,17648,17890,18076,18339,18730,18843,19102,19163,19342,19725,19976,19983,20022,20142,20808,20823,21586,22461,22466,22469,22512,22563,22932]]],["+",[13,13,[[0,1,1,0,1,[[18,1,1,0,1]]],[8,3,3,1,4,[[240,1,1,1,2],[244,1,1,2,3],[265,1,1,3,4]]],[11,2,2,4,6,[[335,1,1,4,5],[337,1,1,5,6]]],[23,6,6,6,12,[[750,1,1,6,7],[752,1,1,7,8],[775,1,1,8,9],[786,2,2,9,11],[788,1,1,11,12]]],[25,1,1,12,13,[[844,1,1,12,13]]]],[468,7328,7412,7980,10167,10248,19102,19163,19725,19976,19983,20022,21586]]],["least",[4,4,[[11,1,1,0,1,[[330,1,1,0,1]]],[12,1,1,1,2,[[349,1,1,1,2]]],[22,1,1,2,3,[[714,1,1,2,3]]],[31,1,1,3,4,[[891,1,1,3,4]]]],[10048,10734,18339,22563]]],["less",[3,3,[[3,1,1,0,1,[[138,1,1,0,1]]],[8,2,2,1,3,[[257,1,1,1,2],[260,1,1,2,3]]]],[4393,7802,7897]]],["lesser",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[15]]],["little",[19,19,[[8,3,3,0,3,[[237,1,1,0,1],[250,1,1,1,2],[255,1,1,2,3]]],[9,1,1,3,4,[[278,1,1,3,4]]],[10,5,5,4,9,[[293,1,1,4,5],[298,1,1,5,6],[301,1,1,6,7],[307,1,1,7,8],[308,1,1,8,9]]],[11,4,4,9,13,[[314,1,1,9,10],[316,1,1,10,11],[317,2,2,11,13]]],[19,1,1,13,14,[[657,1,1,13,14]]],[20,1,1,14,15,[[667,1,1,14,15]]],[21,2,2,15,17,[[672,1,1,15,16],[678,1,1,16,17]]],[22,1,1,17,18,[[689,1,1,17,18]]],[29,1,1,18,19,[[884,1,1,18,19]]]],[7259,7577,7765,8289,8823,9049,9125,9330,9385,9574,9613,9649,9661,17275,17489,17569,17648,17890,22461]]],["one",[2,2,[[0,1,1,0,1,[[43,1,1,0,1]]],[22,1,1,1,2,[[738,1,1,1,2]]]],[1344,18843]]],["quantity",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18076]]],["small",[27,27,[[1,2,2,0,2,[[67,2,2,0,2]]],[4,3,3,2,5,[[153,1,1,2,3],[177,2,2,3,5]]],[8,2,2,5,7,[[255,1,1,5,6],[265,1,1,6,7]]],[10,2,2,7,9,[[292,1,1,7,8],[312,1,1,8,9]]],[12,2,2,9,11,[[362,1,1,9,10],[363,1,1,10,11]]],[13,5,5,11,16,[[381,1,1,11,12],[384,1,1,12,13],[397,1,1,13,14],[400,1,1,14,15],[402,1,1,15,16]]],[16,2,2,16,18,[[426,2,2,16,18]]],[17,1,1,18,19,[[438,1,1,18,19]]],[18,2,2,19,21,[[581,1,1,19,20],[592,1,1,20,21]]],[22,1,1,21,22,[[732,1,1,21,22]]],[23,2,2,22,24,[[760,1,1,22,23],[793,1,1,23,24]]],[29,2,2,24,26,[[885,2,2,24,26]]],[30,1,1,26,27,[[888,1,1,26,27]]]],[2021,2025,4909,5560,5561,7732,7997,8790,9511,11054,11090,11503,11572,11869,11963,12011,12707,12722,12923,15596,15843,18730,19342,20142,22466,22469,22512]]],["things",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22932]]],["young",[1,1,[[9,1,1,0,1,[[275,1,1,0,1]]]],[8239]]],["younger",[14,14,[[0,7,7,0,7,[[8,1,1,0,1],[26,2,2,1,3],[28,2,2,3,5],[42,1,1,5,6],[47,1,1,6,7]]],[6,3,3,7,10,[[211,1,1,7,8],[213,1,1,8,9],[225,1,1,9,10]]],[8,1,1,10,11,[[249,1,1,10,11]]],[12,1,1,11,12,[[361,1,1,11,12]]],[25,2,2,12,14,[[817,2,2,12,14]]]],[229,742,769,811,813,1319,1470,6522,6577,6931,7557,11046,20808,20823]]],["youngest",[15,14,[[0,10,9,0,9,[[41,5,5,0,5],[43,5,4,5,9]]],[6,1,1,9,10,[[219,1,1,9,10]]],[8,2,2,10,12,[[251,1,1,10,11],[252,1,1,11,12]]],[13,2,2,12,14,[[387,1,1,12,13],[388,1,1,13,14]]]],[1265,1267,1272,1284,1286,1326,1336,1347,1350,6759,7606,7632,11641,11645]]]]},{"k":"H6997","v":[["Hakkatan",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12213]]]]},{"k":"H6998","v":[["*",[5,5,[[4,1,1,0,1,[[175,1,1,0,1]]],[17,2,2,1,3,[[443,1,1,1,2],[465,1,1,2,3]]],[25,2,2,3,5,[[818,2,2,3,5]]]],[5525,13041,13561,20829,20847]]],["+",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20829]]],["down",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13041]]],["off",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20847]]],["pluck",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5525]]],["up",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13561]]]]},{"k":"H6999","v":[["*",[116,112,[[1,8,7,0,7,[[78,3,3,0,3],[79,4,3,3,6],[89,1,1,6,7]]],[2,33,33,7,40,[[90,4,4,7,11],[91,4,4,11,15],[92,3,3,15,18],[93,5,5,18,23],[94,1,1,23,24],[95,3,3,24,27],[96,2,2,27,29],[97,4,4,29,33],[98,5,5,33,38],[105,1,1,38,39],[106,1,1,39,40]]],[3,3,3,40,43,[[121,1,1,40,41],[132,1,1,41,42],[134,1,1,42,43]]],[8,4,3,43,46,[[237,4,3,43,46]]],[10,7,7,46,53,[[293,1,1,46,47],[299,1,1,47,48],[301,1,1,48,49],[302,1,1,49,50],[303,2,2,50,52],[312,1,1,52,53]]],[11,13,12,53,65,[[324,1,1,53,54],[326,1,1,54,55],[327,2,2,55,57],[328,3,3,57,60],[329,1,1,60,61],[330,1,1,61,62],[334,1,1,62,63],[335,3,2,63,65]]],[12,2,2,65,67,[[343,1,1,65,66],[360,1,1,66,67]]],[13,16,15,67,82,[[368,2,2,67,69],[379,1,1,69,70],[391,1,1,70,71],[392,4,3,71,74],[394,3,3,74,77],[395,2,2,77,79],[396,1,1,79,80],[398,1,1,80,81],[400,1,1,81,82]]],[21,1,1,82,83,[[673,1,1,82,83]]],[22,2,2,83,85,[[743,2,2,83,85]]],[23,21,21,85,106,[[745,1,1,85,86],[751,1,1,86,87],[755,3,3,87,90],[762,1,1,90,91],[763,2,2,91,93],[776,1,1,93,94],[777,1,1,94,95],[788,10,10,95,105],[792,1,1,105,106]]],[27,3,3,106,109,[[863,1,1,106,107],[865,1,1,107,108],[872,1,1,108,109]]],[29,1,1,109,110,[[882,1,1,109,110]]],[34,1,1,110,111,[[903,1,1,110,111]]],[38,1,1,111,112,[[925,1,1,111,112]]]],[2349,2354,2361,2389,2390,2402,2734,2754,2758,2760,2762,2764,2771,2773,2778,2783,2789,2794,2805,2814,2821,2826,2830,2842,2861,2864,2871,2884,2910,2933,2937,2938,2945,2963,2966,2967,2970,2973,3226,3241,3818,4234,4274,7255,7256,7268,8819,9076,9116,9184,9185,9186,9523,9853,9900,9929,9960,9967,9976,9978,9994,10028,10162,10170,10173,10503,10996,11215,11217,11464,11718,11748,11750,11751,11767,11768,11789,11798,11802,11841,11887,11958,17577,18900,18904,18962,19128,19238,19239,19243,19399,19411,19420,19760,19793,20013,20015,20018,20025,20027,20028,20029,20031,20033,20035,20115,22118,22146,22242,22415,22747,23100]]],["+",[12,11,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,6,6,1,7,[[90,1,1,1,2],[91,2,2,2,4],[96,1,1,4,5],[97,2,2,5,7]]],[8,3,2,7,9,[[237,3,2,7,9]]],[11,2,2,9,11,[[328,2,2,9,11]]]],[2354,2754,2764,2778,2910,2937,2938,7255,7256,9976,9978]]],["burn",[29,29,[[1,4,4,0,4,[[78,2,2,0,2],[79,2,2,2,4]]],[2,19,19,4,23,[[90,3,3,4,7],[91,2,2,7,9],[92,3,3,9,12],[93,5,5,12,17],[94,1,1,17,18],[95,2,2,18,20],[96,1,1,20,21],[105,1,1,21,22],[106,1,1,22,23]]],[3,2,2,23,25,[[121,1,1,23,24],[134,1,1,24,25]]],[8,1,1,25,26,[[237,1,1,25,26]]],[13,2,2,26,28,[[368,1,1,26,27],[379,1,1,27,28]]],[23,1,1,28,29,[[788,1,1,28,29]]]],[2349,2361,2389,2402,2758,2760,2762,2771,2773,2783,2789,2794,2805,2814,2821,2826,2830,2842,2861,2864,2884,3226,3241,3818,4274,7268,11215,11464,20015]]],["burned",[3,3,[[2,1,1,0,1,[[97,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]],[23,1,1,2,3,[[788,1,1,2,3]]]],[2933,11798,20031]]],["burnt",[8,8,[[1,1,1,0,1,[[89,1,1,0,1]]],[2,7,7,1,8,[[95,1,1,1,2],[97,1,1,2,3],[98,5,5,3,8]]]],[2734,2871,2945,2963,2966,2967,2970,2973]]],["incense",[58,56,[[1,2,2,0,2,[[79,2,2,0,2]]],[10,7,7,2,9,[[293,1,1,2,3],[299,1,1,3,4],[301,1,1,4,5],[302,1,1,5,6],[303,2,2,6,8],[312,1,1,8,9]]],[11,11,10,9,19,[[324,1,1,9,10],[326,1,1,10,11],[327,2,2,11,13],[328,1,1,13,14],[329,1,1,14,15],[330,1,1,15,16],[334,1,1,16,17],[335,3,2,17,19]]],[12,1,1,19,20,[[360,1,1,19,20]]],[13,12,11,20,31,[[391,1,1,20,21],[392,4,3,21,24],[394,3,3,24,27],[395,1,1,27,28],[396,1,1,28,29],[398,1,1,29,30],[400,1,1,30,31]]],[22,2,2,31,33,[[743,2,2,31,33]]],[23,18,18,33,51,[[745,1,1,33,34],[751,1,1,34,35],[755,3,3,35,38],[762,1,1,38,39],[763,2,2,39,41],[776,1,1,41,42],[788,8,8,42,50],[792,1,1,50,51]]],[27,3,3,51,54,[[863,1,1,51,52],[865,1,1,52,53],[872,1,1,53,54]]],[34,1,1,54,55,[[903,1,1,54,55]]],[38,1,1,55,56,[[925,1,1,55,56]]]],[2389,2390,8819,9076,9116,9184,9185,9186,9523,9853,9900,9929,9960,9967,9994,10028,10162,10170,10173,10996,11718,11748,11750,11751,11767,11768,11789,11802,11841,11887,11958,18900,18904,18962,19128,19238,19239,19243,19399,19411,19420,19760,20013,20018,20025,20027,20028,20029,20033,20035,20115,22118,22146,22242,22747,23100]]],["kindle",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19793]]],["offer",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4234]]],["offered",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10503]]],["perfumed",[1,1,[[21,1,1,0,1,[[673,1,1,0,1]]]],[17577]]],["sacrifice",[2,2,[[13,1,1,0,1,[[368,1,1,0,1]]],[29,1,1,1,2,[[882,1,1,1,2]]]],[11217,22415]]]]},{"k":"H7000","v":[["joined",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21677]]]]},{"k":"H7001","v":[["*",[3,3,[[26,3,3,0,3,[[854,3,3,0,3]]]],[21880,21886,21890]]],["doubts",[2,2,[[26,2,2,0,2,[[854,2,2,0,2]]]],[21886,21890]]],["joints",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21880]]]]},{"k":"H7002","v":[["incense",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20031]]]]},{"k":"H7003","v":[["Kitron",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6539]]]]},{"k":"H7004","v":[["*",[60,58,[[1,19,18,0,18,[[74,1,1,0,1],[79,7,7,1,8],[80,2,2,8,10],[84,4,3,10,13],[86,2,2,13,15],[88,1,1,15,16],[89,2,2,16,18]]],[2,5,4,18,22,[[93,1,1,18,19],[99,1,1,19,20],[105,3,2,20,22]]],[3,21,21,22,43,[[120,1,1,22,23],[123,13,13,23,36],[132,7,7,36,43]]],[8,1,1,43,44,[[237,1,1,43,44]]],[12,2,2,44,46,[[343,1,1,44,45],[365,1,1,45,46]]],[13,5,5,46,51,[[368,1,1,46,47],[379,1,1,47,48],[392,2,2,48,50],[395,1,1,50,51]]],[18,2,2,51,53,[[543,1,1,51,52],[618,1,1,52,53]]],[19,1,1,53,54,[[654,1,1,53,54]]],[22,1,1,54,55,[[679,1,1,54,55]]],[25,3,3,55,58,[[809,1,1,55,56],[817,1,1,56,57],[824,1,1,57,58]]]],[2201,2383,2389,2390,2391,2409,2417,2419,2428,2431,2539,2546,2559,2629,2633,2702,2712,2734,2802,2978,3213,3214,3759,3864,3870,3876,3882,3888,3894,3900,3906,3912,3918,3924,3930,3936,4201,4211,4212,4229,4234,4240,4241,7268,10503,11161,11215,11464,11748,11751,11798,14888,16278,17178,17667,20615,20780,21048]]],["incense",[57,55,[[1,17,16,0,16,[[74,1,1,0,1],[79,5,5,1,6],[80,2,2,6,8],[84,4,3,8,11],[86,2,2,11,13],[88,1,1,13,14],[89,2,2,14,16]]],[2,5,4,16,20,[[93,1,1,16,17],[99,1,1,17,18],[105,3,2,18,20]]],[3,21,21,20,41,[[120,1,1,20,21],[123,13,13,21,34],[132,7,7,34,41]]],[8,1,1,41,42,[[237,1,1,41,42]]],[12,2,2,42,44,[[343,1,1,42,43],[365,1,1,43,44]]],[13,5,5,44,49,[[368,1,1,44,45],[379,1,1,45,46],[392,2,2,46,48],[395,1,1,48,49]]],[18,2,2,49,51,[[543,1,1,49,50],[618,1,1,50,51]]],[22,1,1,51,52,[[679,1,1,51,52]]],[25,3,3,52,55,[[809,1,1,52,53],[817,1,1,53,54],[824,1,1,54,55]]]],[2201,2383,2389,2390,2391,2409,2428,2431,2539,2546,2559,2629,2633,2702,2712,2734,2802,2978,3213,3214,3759,3864,3870,3876,3882,3888,3894,3900,3906,3912,3918,3924,3930,3936,4201,4211,4212,4229,4234,4240,4241,7268,10503,11161,11215,11464,11748,11751,11798,14888,16278,17667,20615,20780,21048]]],["perfume",[3,3,[[1,2,2,0,2,[[79,2,2,0,2]]],[19,1,1,2,3,[[654,1,1,2,3]]]],[2417,2419,17178]]]]},{"k":"H7005","v":[["Kattath",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6336]]]]},{"k":"H7006","v":[["spue",[1,1,[[23,1,1,0,1,[[769,1,1,0,1]]]],[19561]]]]},{"k":"H7007","v":[["summer",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21793]]]]},{"k":"H7008","v":[["*",[4,3,[[0,2,1,0,1,[[18,2,1,0,1]]],[18,2,2,1,3,[[596,1,1,1,2],[625,1,1,2,3]]]],[485,15981,16379]]],["smoke",[3,2,[[0,2,1,0,1,[[18,2,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[485,15981]]],["vapour",[1,1,[[18,1,1,0,1,[[625,1,1,0,1]]]],[16379]]]]},{"k":"H7009","v":[["substance",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13409]]]]},{"k":"H7010","v":[["statute",[2,2,[[26,2,2,0,2,[[855,2,2,0,2]]]],[21912,21920]]]]},{"k":"H7011","v":[["*",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[855,1,1,1,2]]]],[21863,21931]]],["stedfast",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21931]]],["sure",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21863]]]]},{"k":"H7012","v":[["up",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20417]]]]},{"k":"H7013","v":[["spear",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8596]]]]},{"k":"H7014","v":[["*",[19,16,[[0,16,13,0,13,[[3,16,13,0,13]]],[3,1,1,13,14,[[140,1,1,13,14]]],[5,1,1,14,15,[[201,1,1,14,15]]],[6,1,1,15,16,[[214,1,1,15,16]]]],[80,81,82,84,85,87,88,92,94,95,96,103,104,4468,6259,6610]]],["Cain",[17,14,[[0,16,13,0,13,[[3,16,13,0,13]]],[5,1,1,13,14,[[201,1,1,13,14]]]],[80,81,82,84,85,87,88,92,94,95,96,103,104,6259]]],["Kenite",[2,2,[[3,1,1,0,1,[[140,1,1,0,1]]],[6,1,1,1,2,[[214,1,1,1,2]]]],[4468,6610]]]]},{"k":"H7015","v":[["*",[18,16,[[9,1,1,0,1,[[267,1,1,0,1]]],[13,2,1,1,2,[[401,2,1,1,2]]],[23,3,3,2,5,[[751,1,1,2,3],[753,2,2,3,5]]],[25,10,9,5,14,[[803,1,1,5,6],[820,3,2,6,8],[827,1,1,8,9],[828,2,2,9,11],[829,1,1,11,12],[833,2,2,12,14]]],[29,2,2,14,16,[[883,1,1,14,15],[886,1,1,15,16]]]],[8039,11991,19148,19185,19195,20502,20882,20895,21117,21123,21153,21169,21250,21264,22424,22491]]],["lamentation",[15,14,[[9,1,1,0,1,[[267,1,1,0,1]]],[23,3,3,1,4,[[751,1,1,1,2],[753,2,2,2,4]]],[25,9,8,4,12,[[820,3,2,4,6],[827,1,1,6,7],[828,2,2,7,9],[829,1,1,9,10],[833,2,2,10,12]]],[29,2,2,12,14,[[883,1,1,12,13],[886,1,1,13,14]]]],[8039,19148,19185,19195,20882,20895,21117,21123,21153,21169,21250,21264,22424,22491]]],["lamentations",[3,2,[[13,2,1,0,1,[[401,2,1,0,1]]],[25,1,1,1,2,[[803,1,1,1,2]]]],[11991,20502]]]]},{"k":"H7016","v":[["Kinah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6224]]]]},{"k":"H7017","v":[["*",[12,10,[[0,1,1,0,1,[[14,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[6,5,4,2,6,[[211,1,1,2,3],[214,3,2,3,5],[215,1,1,5,6]]],[8,4,3,6,9,[[250,2,1,6,7],[262,1,1,7,8],[265,1,1,8,9]]],[12,1,1,9,10,[[339,1,1,9,10]]]],[379,4467,6525,6610,6616,6647,7566,7940,8007,10361]]],["+",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6610]]],["Kenite",[4,3,[[6,4,3,0,3,[[211,1,1,0,1],[214,2,1,1,2],[215,1,1,2,3]]]],[6525,6616,6647]]],["Kenites",[7,6,[[0,1,1,0,1,[[14,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[8,4,3,2,5,[[250,2,1,2,3],[262,1,1,3,4],[265,1,1,4,5]]],[12,1,1,5,6,[[339,1,1,5,6]]]],[379,4467,7566,7940,8007,10361]]]]},{"k":"H7018","v":[["*",[6,6,[[0,5,5,0,5,[[4,5,5,0,5]]],[12,1,1,5,6,[[338,1,1,5,6]]]],[114,115,117,118,119,10254]]],["Cainan",[5,5,[[0,5,5,0,5,[[4,5,5,0,5]]]],[114,115,117,118,119]]],["Kenan",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10254]]]]},{"k":"H7019","v":[["*",[20,20,[[0,1,1,0,1,[[7,1,1,0,1]]],[9,2,2,1,3,[[282,2,2,1,3]]],[18,2,2,3,5,[[509,1,1,3,4],[551,1,1,4,5]]],[19,4,4,5,9,[[633,1,1,5,6],[637,1,1,6,7],[653,1,1,7,8],[657,1,1,8,9]]],[22,2,2,9,11,[[694,1,1,9,10],[706,1,1,10,11]]],[23,4,4,11,15,[[752,1,1,11,12],[784,2,2,12,14],[792,1,1,14,15]]],[29,3,3,15,18,[[881,1,1,15,16],[886,2,2,16,18]]],[32,1,1,18,19,[[899,1,1,18,19]]],[37,1,1,19,20,[[924,1,1,19,20]]]],[205,8427,8428,14359,15065,16548,16661,17142,17276,17978,18168,19173,19951,19953,20112,22410,22482,22483,22665,23076]]],["fruit",[3,3,[[9,1,1,0,1,[[282,1,1,0,1]]],[29,2,2,1,3,[[886,2,2,1,3]]]],[8428,22482,22483]]],["fruits",[6,6,[[9,1,1,0,1,[[282,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]],[23,3,3,2,5,[[784,2,2,2,4],[792,1,1,4,5]]],[32,1,1,5,6,[[899,1,1,5,6]]]],[8427,17978,19951,19953,20112,22665]]],["summer",[11,11,[[0,1,1,0,1,[[7,1,1,0,1]]],[18,2,2,1,3,[[509,1,1,1,2],[551,1,1,2,3]]],[19,4,4,3,7,[[633,1,1,3,4],[637,1,1,4,5],[653,1,1,5,6],[657,1,1,6,7]]],[22,1,1,7,8,[[706,1,1,7,8]]],[23,1,1,8,9,[[752,1,1,8,9]]],[29,1,1,9,10,[[881,1,1,9,10]]],[37,1,1,10,11,[[924,1,1,10,11]]]],[205,14359,15065,16548,16661,17142,17276,18168,19173,22410,23076]]]]},{"k":"H7020","v":[["*",[4,4,[[1,4,4,0,4,[[75,2,2,0,2],[85,2,2,2,4]]]],[2239,2245,2577,2583]]],["outmost",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2245]]],["uttermost",[3,3,[[1,3,3,0,3,[[75,1,1,0,1],[85,2,2,1,3]]]],[2239,2577,2583]]]]},{"k":"H7021","v":[["gourd",[5,4,[[31,5,4,0,4,[[892,5,4,0,4]]]],[22574,22575,22577,22578]]]]},{"k":"H7022","v":[["spewing",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22764]]]]},{"k":"H7023","v":[["*",[74,64,[[1,2,2,0,2,[[79,1,1,0,1],[86,1,1,1,2]]],[2,5,4,2,6,[[90,1,1,2,3],[94,1,1,3,4],[103,3,2,4,6]]],[3,3,2,6,8,[[138,2,1,6,7],[151,1,1,7,8]]],[5,1,1,8,9,[[188,1,1,8,9]]],[8,6,5,9,14,[[253,1,1,9,10],[254,2,1,10,11],[255,1,1,11,12],[260,2,2,12,14]]],[9,1,1,14,15,[[271,1,1,14,15]]],[10,13,10,15,25,[[294,1,1,15,16],[296,9,6,16,22],[304,1,1,22,23],[306,1,1,23,24],[311,1,1,24,25]]],[11,4,4,25,29,[[316,1,1,25,26],[321,2,2,26,28],[332,1,1,28,29]]],[12,2,2,29,31,[[351,1,1,29,30],[366,1,1,30,31]]],[13,4,3,31,34,[[369,4,3,31,34]]],[18,1,1,34,35,[[539,1,1,34,35]]],[22,4,4,35,39,[[700,1,1,35,36],[703,1,1,36,37],[716,1,1,37,38],[737,1,1,38,39]]],[23,1,1,39,40,[[748,1,1,39,40]]],[25,25,22,40,62,[[805,1,1,40,41],[809,4,3,41,44],[813,3,3,44,47],[814,4,3,47,50],[824,1,1,50,51],[834,1,1,51,52],[842,10,9,52,61],[844,1,1,61,62]]],[29,1,1,62,63,[[883,1,1,62,63]]],[34,1,1,63,64,[[904,1,1,63,64]]]],[2385,2630,2760,2839,3148,3150,4400,4849,5884,7687,7716,7755,7883,7895,8143,8877,8901,8902,8911,8912,8923,8925,9228,9294,9472,9613,9764,9789,10100,10775,11168,11236,11240,11241,14830,18057,18122,18392,18810,19046,20532,20611,20612,20614,20685,20687,20692,20720,20722,20723,21021,21310,21531,21532,21535,21538,21539,21543,21546,21548,21551,21580,22442,22759]]],["+",[4,4,[[3,1,1,0,1,[[151,1,1,0,1]]],[9,1,1,1,2,[[271,1,1,1,2]]],[12,1,1,2,3,[[351,1,1,2,3]]],[34,1,1,3,4,[[904,1,1,3,4]]]],[4849,8143,10775,22759]]],["side",[2,2,[[2,2,2,0,2,[[90,1,1,0,1],[94,1,1,1,2]]]],[2760,2839]]],["sides",[2,2,[[1,2,2,0,2,[[79,1,1,0,1],[86,1,1,1,2]]]],[2385,2630]]],["very",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19046]]],["wall",[49,43,[[2,1,1,0,1,[[103,1,1,0,1]]],[3,2,1,1,2,[[138,2,1,1,2]]],[5,1,1,2,3,[[188,1,1,2,3]]],[8,6,5,3,8,[[253,1,1,3,4],[254,2,1,4,5],[255,1,1,5,6],[260,2,2,6,8]]],[10,7,6,8,14,[[294,1,1,8,9],[296,3,2,9,11],[304,1,1,11,12],[306,1,1,12,13],[311,1,1,13,14]]],[11,4,4,14,18,[[316,1,1,14,15],[321,2,2,15,17],[332,1,1,17,18]]],[13,2,2,18,20,[[369,2,2,18,20]]],[18,1,1,20,21,[[539,1,1,20,21]]],[22,3,3,21,24,[[703,1,1,21,22],[716,1,1,22,23],[737,1,1,23,24]]],[25,21,18,24,42,[[805,1,1,24,25],[809,4,3,25,28],[813,3,3,28,31],[814,4,3,31,34],[824,1,1,34,35],[842,7,6,35,41],[844,1,1,41,42]]],[29,1,1,42,43,[[883,1,1,42,43]]]],[3148,4400,5884,7687,7716,7755,7883,7895,8877,8901,8923,9228,9294,9472,9613,9764,9789,10100,11240,11241,14830,18122,18392,18810,20532,20611,20612,20614,20685,20687,20692,20720,20722,20723,21021,21531,21532,21535,21538,21543,21546,21580,22442]]],["walls",[16,14,[[2,2,2,0,2,[[103,2,2,0,2]]],[10,6,5,2,7,[[296,6,5,2,7]]],[12,1,1,7,8,[[366,1,1,7,8]]],[13,2,1,8,9,[[369,2,1,8,9]]],[22,1,1,9,10,[[700,1,1,9,10]]],[25,4,4,10,14,[[834,1,1,10,11],[842,3,3,11,14]]]],[3148,3150,8901,8902,8911,8912,8925,11168,11236,18057,21310,21539,21548,21551]]]]},{"k":"H7024","v":[["*",[5,5,[[11,1,1,0,1,[[328,1,1,0,1]]],[22,2,2,1,3,[[693,1,1,1,2],[700,1,1,2,3]]],[29,2,2,3,5,[[879,1,1,3,4],[887,1,1,4,5]]]],[9972,17961,18058,22369,22502]]],["+",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22502]]],["Kir",[4,4,[[11,1,1,0,1,[[328,1,1,0,1]]],[22,2,2,1,3,[[693,1,1,1,2],[700,1,1,2,3]]],[29,1,1,3,4,[[879,1,1,3,4]]]],[9972,17961,18058,22369]]]]},{"k":"H7025","v":[["*",[5,5,[[11,1,1,0,1,[[315,1,1,0,1]]],[22,2,2,1,3,[[694,2,2,1,3]]],[23,2,2,3,5,[[792,2,2,3,5]]]],[9601,17976,17980,20111,20116]]],["Kirharaseth",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9601]]],["Kirhareseth",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17976]]],["Kirharesh",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17980]]],["Kirheres",[2,2,[[23,2,2,0,2,[[792,2,2,0,2]]]],[20111,20116]]]]},{"k":"H7026","v":[["Keros",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12071,12467]]]]},{"k":"H7027","v":[["Kish",[21,17,[[8,6,5,0,5,[[244,3,2,0,2],[245,2,2,2,4],[249,1,1,4,5]]],[9,1,1,5,6,[[287,1,1,5,6]]],[12,12,9,6,15,[[345,3,2,6,8],[346,3,2,8,10],[349,1,1,10,11],[360,2,2,11,13],[361,2,1,13,14],[363,1,1,14,15]]],[13,1,1,15,16,[[395,1,1,15,16]]],[16,1,1,16,17,[[427,1,1,16,17]]]],[7392,7394,7429,7439,7559,8594,10605,10608,10651,10654,10721,11004,11005,11044,11105,11803,12729]]]]},{"k":"H7028","v":[["*",[6,5,[[6,4,3,0,3,[[214,2,2,0,2],[215,2,1,2,3]]],[10,1,1,3,4,[[308,1,1,3,4]]],[18,1,1,4,5,[[560,1,1,4,5]]]],[6606,6612,6644,9381,15250]]],["+",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6606]]],["Kishon",[4,3,[[6,3,2,0,2,[[214,1,1,0,1],[215,2,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]]],[6612,6644,9381]]],["Kison",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15250]]]]},{"k":"H7029","v":[["Kishi",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10498]]]]},{"k":"H7030","v":[["harp",[4,4,[[26,4,4,0,4,[[852,4,4,0,4]]]],[21812,21814,21817,21822]]]]},{"k":"H7031","v":[["*",[13,13,[[9,1,1,0,1,[[268,1,1,0,1]]],[17,1,1,1,2,[[459,1,1,1,2]]],[20,1,1,2,3,[[667,1,1,2,3]]],[22,4,4,3,7,[[683,1,1,3,4],[696,1,1,4,5],[697,1,1,5,6],[708,1,1,6,7]]],[23,2,2,7,9,[[746,1,1,7,8],[790,1,1,8,9]]],[24,1,1,9,10,[[800,1,1,9,10]]],[28,1,1,10,11,[[878,1,1,10,11]]],[29,2,2,11,13,[[880,2,2,11,13]]]],[8067,13454,17486,17765,17999,18005,18233,18988,20051,20439,22347,22393,22394]]],["+",[1,1,[[29,1,1,0,1,[[880,1,1,0,1]]]],[22393]]],["light",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8067]]],["swift",[8,8,[[17,1,1,0,1,[[459,1,1,0,1]]],[20,1,1,1,2,[[667,1,1,1,2]]],[22,3,3,2,5,[[696,1,1,2,3],[697,1,1,3,4],[708,1,1,4,5]]],[23,2,2,5,7,[[746,1,1,5,6],[790,1,1,6,7]]],[29,1,1,7,8,[[880,1,1,7,8]]]],[13454,17486,17999,18005,18233,18988,20051,22394]]],["swifter",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20439]]],["swiftly",[2,2,[[22,1,1,0,1,[[683,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]]],[17765,22347]]]]},{"k":"H7032","v":[["*",[7,7,[[26,7,7,0,7,[[852,4,4,0,4],[853,1,1,4,5],[855,1,1,5,6],[856,1,1,6,7]]]],[21812,21814,21817,21822,21868,21925,21944]]],["sound",[4,4,[[26,4,4,0,4,[[852,4,4,0,4]]]],[21812,21814,21817,21822]]],["voice",[3,3,[[26,3,3,0,3,[[853,1,1,0,1],[855,1,1,1,2],[856,1,1,2,3]]]],[21868,21925,21944]]]]},{"k":"H7033","v":[["*",[4,4,[[2,1,1,0,1,[[91,1,1,0,1]]],[5,1,1,1,2,[[191,1,1,1,2]]],[18,1,1,2,3,[[515,1,1,2,3]]],[23,1,1,3,4,[[773,1,1,3,4]]]],[2776,5945,14497,19657]]],["dried",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2776]]],["loathsome",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14497]]],["parched",[1,1,[[5,1,1,0,1,[[191,1,1,0,1]]]],[5945]]],["roasted",[1,1,[[23,1,1,0,1,[[773,1,1,0,1]]]],[19657]]]]},{"k":"H7034","v":[["*",[6,6,[[4,2,2,0,2,[[177,1,1,0,1],[179,1,1,1,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[19,1,1,3,4,[[639,1,1,3,4]]],[22,2,2,4,6,[[681,1,1,4,5],[694,1,1,5,6]]]],[5550,5601,7699,16728,17712,17983]]],["base",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17712]]],["contemned",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17983]]],["despised",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16728]]],["esteemed",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7699]]],["light",[1,1,[[4,1,1,0,1,[[179,1,1,0,1]]]],[5601]]],["vile",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5550]]]]},{"k":"H7035","v":[["together",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8568]]]]},{"k":"H7036","v":[["*",[17,17,[[17,1,1,0,1,[[445,1,1,0,1]]],[18,1,1,1,2,[[560,1,1,1,2]]],[19,8,8,2,10,[[630,1,1,2,3],[633,1,1,3,4],[636,1,1,4,5],[638,1,1,5,6],[639,1,1,6,7],[640,1,1,7,8],[645,1,1,8,9],[649,1,1,9,10]]],[22,1,1,10,11,[[700,1,1,10,11]]],[23,2,2,11,13,[[757,1,1,11,12],[790,1,1,12,13]]],[27,2,2,13,15,[[865,2,2,13,15]]],[33,1,1,15,16,[[902,1,1,15,16]]],[34,1,1,16,17,[[904,1,1,16,17]]]],[13101,15257,16490,16573,16645,16690,16735,16765,16904,17025,18070,19292,20057,22140,22151,22717,22764]]],["confusion",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13101]]],["dishonour",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16573]]],["ignominy",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16904]]],["reproach",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17025]]],["shame",[13,13,[[18,1,1,0,1,[[560,1,1,0,1]]],[19,5,5,1,6,[[630,1,1,1,2],[636,1,1,2,3],[638,1,1,3,4],[639,1,1,4,5],[640,1,1,5,6]]],[22,1,1,6,7,[[700,1,1,6,7]]],[23,2,2,7,9,[[757,1,1,7,8],[790,1,1,8,9]]],[27,2,2,9,11,[[865,2,2,9,11]]],[33,1,1,11,12,[[902,1,1,11,12]]],[34,1,1,12,13,[[904,1,1,12,13]]]],[15257,16490,16645,16690,16735,16765,18070,19292,20057,22140,22151,22717,22764]]]]},{"k":"H7037","v":[["caldron",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[32,1,1,1,2,[[895,1,1,1,2]]]],[7254,22611]]]]},{"k":"H7038","v":[["parts",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3392]]]]},{"k":"H7039","v":[["*",[6,5,[[2,1,1,0,1,[[112,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[8,2,2,2,4,[[252,1,1,2,3],[260,1,1,3,4]]],[9,2,1,4,5,[[283,2,1,4,5]]]],[3416,7163,7635,7879,8477]]],["corn",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3416]]],["parched",[5,4,[[7,1,1,0,1,[[233,1,1,0,1]]],[8,2,2,1,3,[[252,1,1,1,2],[260,1,1,2,3]]],[9,2,1,3,4,[[283,2,1,3,4]]]],[7163,7635,7879,8477]]]]},{"k":"H7040","v":[["Kallai",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12644]]]]},{"k":"H7041","v":[["Kelaiah",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12275]]]]},{"k":"H7042","v":[["Kelita",[3,3,[[14,1,1,0,1,[[412,1,1,0,1]]],[15,2,2,1,3,[[420,1,1,1,2],[422,1,1,2,3]]]],[12275,12500,12559]]]]},{"k":"H7043","v":[["*",[82,79,[[0,6,6,0,6,[[7,3,3,0,3],[11,1,1,3,4],[15,2,2,4,6]]],[1,3,3,6,9,[[67,1,1,6,7],[70,1,1,7,8],[71,1,1,8,9]]],[2,7,6,9,15,[[108,1,1,9,10],[109,2,1,10,11],[113,4,4,11,15]]],[4,1,1,15,16,[[175,1,1,15,16]]],[5,1,1,16,17,[[210,1,1,16,17]]],[6,1,1,17,18,[[219,1,1,17,18]]],[8,5,5,18,23,[[237,1,1,18,19],[238,1,1,19,20],[241,1,1,20,21],[252,1,1,21,22],[253,1,1,22,23]]],[9,11,10,23,33,[[267,1,1,23,24],[272,1,1,24,25],[282,7,6,25,31],[285,2,2,31,33]]],[10,5,5,33,38,[[292,1,1,33,34],[302,3,3,34,37],[306,1,1,37,38]]],[11,3,3,38,41,[[314,1,1,38,39],[315,1,1,39,40],[332,1,1,40,41]]],[13,3,3,41,44,[[376,3,3,41,44]]],[15,2,2,44,46,[[425,2,2,44,46]]],[17,5,5,46,51,[[438,1,1,46,47],[442,1,1,47,48],[444,1,1,48,49],[459,1,1,49,50],[475,1,1,50,51]]],[18,3,3,51,54,[[514,1,1,51,52],[539,1,1,52,53],[586,1,1,53,54]]],[19,4,4,54,58,[[641,1,1,54,55],[647,1,1,55,56],[657,2,2,56,58]]],[20,5,4,58,62,[[665,2,2,58,60],[668,3,2,60,62]]],[22,6,6,62,68,[[686,1,1,62,63],[687,1,1,63,64],[701,1,1,64,65],[708,1,1,65,66],[727,1,1,66,67],[743,1,1,67,68]]],[23,5,5,68,73,[[748,2,2,68,70],[750,1,1,70,71],[752,1,1,71,72],[759,1,1,72,73]]],[25,3,3,73,76,[[809,1,1,73,74],[822,1,1,74,75],[823,1,1,75,76]]],[31,1,1,76,77,[[889,1,1,76,77]]],[33,1,1,77,78,[[900,1,1,77,78]]],[34,1,1,78,79,[[903,1,1,78,79]]]],[191,194,204,301,385,386,2021,2094,2141,3295,3327,3457,3460,3461,3469,5504,6485,6781,7270,7289,7336,7661,7699,8045,8179,8431,8433,8435,8436,8437,8439,8532,8554,8778,9155,9160,9161,9314,9575,9594,10108,11399,11404,11405,12673,12696,12905,13014,13076,13454,13868,14472,14831,15783,16778,16974,17261,17262,17450,17451,17503,17513,17828,17830,18086,18233,18642,18917,19040,19051,19103,19164,19325,20621,20965,20983,22536,22698,22739]]],["+",[12,12,[[0,1,1,0,1,[[7,1,1,0,1]]],[2,1,1,1,2,[[109,1,1,1,2]]],[6,1,1,2,3,[[219,1,1,2,3]]],[8,2,2,3,5,[[241,1,1,3,4],[252,1,1,4,5]]],[9,3,3,5,8,[[282,2,2,5,7],[285,1,1,7,8]]],[13,1,1,8,9,[[376,1,1,8,9]]],[17,1,1,9,10,[[438,1,1,9,10]]],[23,1,1,10,11,[[750,1,1,10,11]]],[25,1,1,11,12,[[822,1,1,11,12]]]],[204,3327,6781,7336,7661,8435,8436,8532,11405,12905,19103,20965]]],["Curse",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17513]]],["Ease",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11404]]],["abated",[2,2,[[0,2,2,0,2,[[7,2,2,0,2]]]],[191,194]]],["accursed",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18917]]],["afflicted",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17830]]],["contempt",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18086]]],["curse",[13,13,[[2,1,1,0,1,[[108,1,1,0,1]]],[4,1,1,1,2,[[175,1,1,1,2]]],[5,1,1,2,3,[[210,1,1,2,3]]],[9,2,2,3,5,[[282,2,2,3,5]]],[15,1,1,5,6,[[425,1,1,5,6]]],[18,2,2,6,8,[[539,1,1,6,7],[586,1,1,7,8]]],[19,1,1,8,9,[[657,1,1,8,9]]],[20,2,2,9,11,[[665,1,1,9,10],[668,1,1,10,11]]],[22,1,1,11,12,[[686,1,1,11,12]]],[23,1,1,12,13,[[759,1,1,12,13]]]],[3295,5504,6485,8436,8437,12673,14831,15783,17261,17450,17513,17828,19325]]],["cursed",[13,13,[[2,4,4,0,4,[[109,1,1,0,1],[113,3,3,1,4]]],[9,3,3,4,7,[[282,3,3,4,7]]],[10,1,1,7,8,[[292,1,1,7,8]]],[11,1,1,8,9,[[314,1,1,8,9]]],[15,1,1,9,10,[[425,1,1,9,10]]],[17,1,1,10,11,[[459,1,1,10,11]]],[18,1,1,11,12,[[514,1,1,11,12]]],[20,1,1,12,13,[[665,1,1,12,13]]]],[3327,3457,3460,3469,8431,8433,8439,8778,9575,12696,13454,14472,17451]]],["curseth",[5,5,[[0,1,1,0,1,[[11,1,1,0,1]]],[1,1,1,1,2,[[70,1,1,1,2]]],[2,1,1,2,3,[[113,1,1,2,3]]],[19,2,2,3,5,[[647,1,1,3,4],[657,1,1,4,5]]]],[301,2094,3461,16974,17262]]],["despise",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8554]]],["despised",[2,2,[[0,2,2,0,2,[[15,2,2,0,2]]]],[385,386]]],["ease",[1,1,[[13,1,1,0,1,[[376,1,1,0,1]]]],[11399]]],["easier",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2021]]],["easy",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16778]]],["esteemed",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7270]]],["light",[2,2,[[8,1,1,0,1,[[253,1,1,0,1]]],[25,1,1,1,2,[[823,1,1,1,2]]]],[7699,20983]]],["lighten",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22536]]],["lighter",[3,3,[[10,3,3,0,3,[[302,3,3,0,3]]]],[9155,9160,9161]]],["lightly",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19051]]],["revile",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2141]]],["slightly",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19164]]],["swift",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18233]]],["swifter",[5,5,[[9,1,1,0,1,[[267,1,1,0,1]]],[17,2,2,1,3,[[442,1,1,1,2],[444,1,1,2,3]]],[23,1,1,3,4,[[748,1,1,3,4]]],[34,1,1,4,5,[[903,1,1,4,5]]]],[8045,13014,13076,19040,22739]]],["thing",[5,5,[[10,1,1,0,1,[[306,1,1,0,1]]],[11,2,2,1,3,[[315,1,1,1,2],[332,1,1,2,3]]],[22,1,1,3,4,[[727,1,1,3,4]]],[25,1,1,4,5,[[809,1,1,4,5]]]],[9314,9594,10108,18642,20621]]],["vile",[4,4,[[8,1,1,0,1,[[238,1,1,0,1]]],[9,1,1,1,2,[[272,1,1,1,2]]],[17,1,1,2,3,[[475,1,1,2,3]]],[33,1,1,3,4,[[900,1,1,3,4]]]],[7289,8179,13868,22698]]],["whet",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17503]]]]},{"k":"H7044","v":[["*",[2,2,[[25,1,1,0,1,[[802,1,1,0,1]]],[26,1,1,1,2,[[859,1,1,1,2]]]],[20471,22021]]],["burnished",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20471]]],["polished",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22021]]]]},{"k":"H7045","v":[["*",[33,33,[[0,2,2,0,2,[[26,2,2,0,2]]],[4,11,11,2,13,[[163,3,3,2,5],[173,1,1,5,6],[175,1,1,6,7],[179,1,1,7,8],[180,2,2,8,10],[181,1,1,10,11],[182,2,2,11,13]]],[5,1,1,13,14,[[194,1,1,13,14]]],[6,1,1,14,15,[[219,1,1,14,15]]],[9,1,1,15,16,[[282,1,1,15,16]]],[10,1,1,16,17,[[292,1,1,16,17]]],[11,1,1,17,18,[[334,1,1,17,18]]],[15,1,1,18,19,[[425,1,1,18,19]]],[18,2,2,19,21,[[586,2,2,19,21]]],[19,2,2,21,23,[[653,1,1,21,22],[654,1,1,22,23]]],[23,9,9,23,32,[[768,1,1,23,24],[769,1,1,24,25],[770,1,1,25,26],[773,1,1,26,27],[786,1,1,27,28],[788,3,3,28,31],[793,1,1,31,32]]],[37,1,1,32,33,[[918,1,1,32,33]]]],[739,740,5234,5236,5237,5470,5505,5598,5626,5656,5706,5709,5727,6036,6811,8438,8778,10164,12673,15772,15773,17143,17183,19533,19552,19578,19657,19993,20018,20022,20032,20140,22989]]],["accursed",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5470]]],["curse",[24,24,[[0,2,2,0,2,[[26,2,2,0,2]]],[4,6,6,2,8,[[163,3,3,2,5],[175,1,1,5,6],[179,1,1,6,7],[182,1,1,7,8]]],[6,1,1,8,9,[[219,1,1,8,9]]],[10,1,1,9,10,[[292,1,1,9,10]]],[11,1,1,10,11,[[334,1,1,10,11]]],[15,1,1,11,12,[[425,1,1,11,12]]],[19,2,2,12,14,[[653,1,1,12,13],[654,1,1,13,14]]],[23,9,9,14,23,[[768,1,1,14,15],[769,1,1,15,16],[770,1,1,16,17],[773,1,1,17,18],[786,1,1,18,19],[788,3,3,19,22],[793,1,1,22,23]]],[37,1,1,23,24,[[918,1,1,23,24]]]],[739,740,5234,5236,5237,5505,5598,5709,6811,8778,10164,12673,17143,17183,19533,19552,19578,19657,19993,20018,20022,20032,20140,22989]]],["curses",[3,3,[[4,3,3,0,3,[[180,2,2,0,2],[181,1,1,2,3]]]],[5626,5656,5706]]],["cursing",[4,4,[[4,1,1,0,1,[[182,1,1,0,1]]],[9,1,1,1,2,[[282,1,1,1,2]]],[18,2,2,2,4,[[586,2,2,2,4]]]],[5727,8438,15772,15773]]],["cursings",[1,1,[[5,1,1,0,1,[[194,1,1,0,1]]]],[6036]]]]},{"k":"H7046","v":[["*",[4,4,[[11,1,1,0,1,[[314,1,1,0,1]]],[25,2,2,1,3,[[817,1,1,1,2],[823,1,1,2,3]]],[34,1,1,3,4,[[903,1,1,3,4]]]],[9574,20793,20981,22741]]],["mock",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[20981]]],["mocked",[1,1,[[11,1,1,0,1,[[314,1,1,0,1]]]],[9574]]],["scoff",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22741]]],["scornest",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20793]]]]},{"k":"H7047","v":[["derision",[3,3,[[18,2,2,0,2,[[521,1,1,0,1],[556,1,1,1,2]]],[23,1,1,2,3,[[764,1,1,2,3]]]],[14584,15189,19430]]]]},{"k":"H7048","v":[["mocking",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[20980]]]]},{"k":"H7049","v":[["*",[7,7,[[6,1,1,0,1,[[230,1,1,0,1]]],[8,2,2,1,3,[[252,1,1,1,2],[260,1,1,2,3]]],[10,3,3,3,6,[[296,3,3,3,6]]],[23,1,1,6,7,[[754,1,1,6,7]]]],[7070,7667,7890,8925,8928,8931,19219]]],["+",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19219]]],["carved",[3,3,[[10,3,3,0,3,[[296,3,3,0,3]]]],[8925,8928,8931]]],["out",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7890]]],["slang",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7667]]],["sling",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7070]]]]},{"k":"H7050","v":[["*",[22,22,[[1,13,13,0,13,[[76,5,5,0,5],[84,1,1,5,6],[87,6,6,6,12],[88,1,1,12,13]]],[3,2,2,13,15,[[119,1,1,13,14],[120,1,1,14,15]]],[8,3,3,15,18,[[252,2,2,15,17],[260,1,1,17,18]]],[10,1,1,18,19,[[296,1,1,18,19]]],[13,1,1,19,20,[[392,1,1,19,20]]],[17,1,1,20,21,[[476,1,1,20,21]]],[37,1,1,21,22,[[919,1,1,21,22]]]],[2281,2283,2284,2286,2287,2548,2642,2645,2647,2648,2649,2651,2704,3718,3769,7658,7668,7890,8930,11746,13916,23014]]],["+",[2,2,[[17,1,1,0,1,[[476,1,1,0,1]]],[37,1,1,1,2,[[919,1,1,1,2]]]],[13916,23014]]],["hangings",[15,15,[[1,13,13,0,13,[[76,5,5,0,5],[84,1,1,5,6],[87,6,6,6,12],[88,1,1,12,13]]],[3,2,2,13,15,[[119,1,1,13,14],[120,1,1,14,15]]]],[2281,2283,2284,2286,2287,2548,2642,2645,2647,2648,2649,2651,2704,3718,3769]]],["leaves",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8930]]],["sling",[3,3,[[8,3,3,0,3,[[252,2,2,0,2],[260,1,1,2,3]]]],[7658,7668,7890]]],["slings",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11746]]]]},{"k":"H7051","v":[["slingers",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9601]]]]},{"k":"H7052","v":[["light",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4345]]]]},{"k":"H7053","v":[["+",[1,1,[[8,1,1,0,1,[[248,1,1,0,1]]]],[7506]]]]},{"k":"H7054","v":[["*",[10,8,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,3,2,1,3,[[168,1,1,1,2],[175,2,1,2,3]]],[6,2,1,3,4,[[225,2,1,3,4]]],[11,1,1,4,5,[[331,1,1,4,5]]],[22,2,2,5,7,[[695,1,1,5,6],[715,1,1,6,7]]],[27,1,1,7,8,[[869,1,1,7,8]]]],[2119,5351,5525,6934,10087,17988,18379,22201]]],["corn",[7,5,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,3,2,1,3,[[168,1,1,1,2],[175,2,1,2,3]]],[6,2,1,3,4,[[225,2,1,3,4]]],[22,1,1,4,5,[[695,1,1,4,5]]]],[2119,5351,5525,6934,17988]]],["stalk",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22201]]],["up",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10087,18379]]]]},{"k":"H7055","v":[["Kemuel",[3,3,[[0,1,1,0,1,[[21,1,1,0,1]]],[3,1,1,1,2,[[150,1,1,1,2]]],[12,1,1,2,3,[[364,1,1,2,3]]]],[568,4840,11126]]]]},{"k":"H7056","v":[["Camon",[1,1,[[6,1,1,0,1,[[220,1,1,0,1]]]],[6816]]]]},{"k":"H7057","v":[["nettles",[2,2,[[22,1,1,0,1,[[712,1,1,0,1]]],[27,1,1,1,2,[[870,1,1,1,2]]]],[18316,22214]]]]},{"k":"H7058","v":[["*",[14,14,[[0,1,1,0,1,[[17,1,1,0,1]]],[3,1,1,1,2,[[121,1,1,1,2]]],[6,1,1,2,3,[[216,1,1,2,3]]],[8,2,2,3,5,[[236,1,1,3,4],[263,1,1,4,5]]],[9,1,1,5,6,[[283,1,1,5,6]]],[10,4,4,6,10,[[294,1,1,6,7],[307,3,3,7,10]]],[11,1,1,10,11,[[316,1,1,10,11]]],[12,1,1,11,12,[[349,1,1,11,12]]],[22,1,1,12,13,[[725,1,1,12,13]]],[27,1,1,13,14,[[869,1,1,13,14]]]],[430,3807,6673,7236,7966,8477,8866,9329,9331,9333,9644,10760,18601,22201]]],["flour",[4,4,[[6,1,1,0,1,[[216,1,1,0,1]]],[8,2,2,1,3,[[236,1,1,1,2],[263,1,1,2,3]]],[9,1,1,3,4,[[283,1,1,3,4]]]],[6673,7236,7966,8477]]],["meal",[10,10,[[0,1,1,0,1,[[17,1,1,0,1]]],[3,1,1,1,2,[[121,1,1,1,2]]],[10,4,4,2,6,[[294,1,1,2,3],[307,3,3,3,6]]],[11,1,1,6,7,[[316,1,1,6,7]]],[12,1,1,7,8,[[349,1,1,7,8]]],[22,1,1,8,9,[[725,1,1,8,9]]],[27,1,1,9,10,[[869,1,1,9,10]]]],[430,3807,8866,9329,9331,9333,9644,10760,18601,22201]]]]},{"k":"H7059","v":[["*",[2,2,[[17,2,2,0,2,[[451,1,1,0,1],[457,1,1,1,2]]]],[13246,13405]]],["down",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13405]]],["wrinkles",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13246]]]]},{"k":"H7060","v":[["*",[2,2,[[22,2,2,0,2,[[697,1,1,0,1],[711,1,1,1,2]]]],[18010,18288]]],["down",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18288]]],["wither",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18010]]]]},{"k":"H7061","v":[["*",[3,3,[[2,2,2,0,2,[[91,1,1,0,1],[94,1,1,1,2]]],[3,1,1,2,3,[[121,1,1,2,3]]]],[2764,2842,3818]]],["handful",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3818]]],["take",[2,2,[[2,2,2,0,2,[[91,1,1,0,1],[94,1,1,1,2]]]],[2764,2842]]]]},{"k":"H7062","v":[["*",[4,4,[[0,1,1,0,1,[[40,1,1,0,1]]],[2,3,3,1,4,[[91,1,1,1,2],[94,1,1,2,3],[95,1,1,3,4]]]],[1242,2764,2842,2864]]],["+",[2,2,[[2,2,2,0,2,[[91,1,1,0,1],[94,1,1,1,2]]]],[2764,2842]]],["handful",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2864]]],["handfuls",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1242]]]]},{"k":"H7063","v":[["thorns",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17110]]]]},{"k":"H7064","v":[["*",[13,13,[[0,1,1,0,1,[[5,1,1,0,1]]],[3,1,1,1,2,[[140,1,1,1,2]]],[4,2,2,2,4,[[174,1,1,2,3],[184,1,1,3,4]]],[17,2,2,4,6,[[464,1,1,4,5],[474,1,1,5,6]]],[18,1,1,6,7,[[561,1,1,6,7]]],[19,1,1,7,8,[[654,1,1,7,8]]],[22,2,2,8,10,[[688,1,1,8,9],[694,1,1,9,10]]],[23,1,1,10,11,[[793,1,1,10,11]]],[30,1,1,11,12,[[888,1,1,11,12]]],[34,1,1,12,13,[[904,1,1,12,13]]]],[151,4467,5476,5769,13550,13861,15262,17177,17864,17971,20143,22514,22757]]],["+",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13861]]],["nest",[11,11,[[3,1,1,0,1,[[140,1,1,0,1]]],[4,2,2,1,3,[[174,1,1,1,2],[184,1,1,2,3]]],[17,1,1,3,4,[[464,1,1,3,4]]],[18,1,1,4,5,[[561,1,1,4,5]]],[19,1,1,5,6,[[654,1,1,5,6]]],[22,2,2,6,8,[[688,1,1,6,7],[694,1,1,7,8]]],[23,1,1,8,9,[[793,1,1,8,9]]],[30,1,1,9,10,[[888,1,1,9,10]]],[34,1,1,10,11,[[904,1,1,10,11]]]],[4467,5476,5769,13550,15262,17177,17864,17971,20143,22514,22757]]],["rooms",[1,1,[[0,1,1,0,1,[[5,1,1,0,1]]]],[151]]]]},{"k":"H7065","v":[["*",[34,29,[[0,3,3,0,3,[[25,1,1,0,1],[29,1,1,1,2],[36,1,1,2,3]]],[3,6,5,3,8,[[121,3,2,3,5],[127,1,1,5,6],[141,2,2,6,8]]],[4,3,2,8,10,[[184,3,2,8,10]]],[9,1,1,10,11,[[287,1,1,10,11]]],[10,5,3,11,14,[[304,1,1,11,12],[309,4,2,12,14]]],[18,4,4,14,18,[[514,1,1,14,15],[550,1,1,15,16],[555,1,1,16,17],[583,1,1,17,18]]],[19,4,4,18,22,[[630,1,1,18,19],[650,1,1,19,20],[651,2,2,20,22]]],[22,1,1,22,23,[[689,1,1,22,23]]],[25,3,3,23,26,[[809,1,1,23,24],[832,1,1,24,25],[840,1,1,25,26]]],[28,1,1,26,27,[[877,1,1,26,27]]],[37,3,2,27,29,[[911,1,1,27,28],[918,2,1,28,29]]]],[706,831,1094,3806,3822,4053,4482,4484,5774,5779,8582,9240,9397,9401,14451,15023,15171,15667,16486,17061,17080,17098,17897,20607,21239,21473,22329,22892,22978]]],["+",[9,6,[[3,3,2,0,2,[[121,3,2,0,2]]],[10,5,3,2,5,[[304,1,1,2,3],[309,4,2,3,5]]],[22,1,1,5,6,[[689,1,1,5,6]]]],[3806,3822,9240,9397,9401,17897]]],["Enviest",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4053]]],["Envy",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16486]]],["envied",[5,5,[[0,3,3,0,3,[[25,1,1,0,1],[29,1,1,1,2],[36,1,1,2,3]]],[18,1,1,3,4,[[583,1,1,3,4]]],[25,1,1,4,5,[[832,1,1,4,5]]]],[706,831,1094,15667,21239]]],["envious",[4,4,[[18,2,2,0,2,[[514,1,1,0,1],[550,1,1,1,2]]],[19,2,2,2,4,[[651,2,2,2,4]]]],[14451,15023,17080,17098]]],["envy",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17061]]],["jealous",[5,4,[[25,1,1,0,1,[[840,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]],[37,3,2,2,4,[[911,1,1,2,3],[918,2,1,3,4]]]],[21473,22329,22892,22978]]],["jealousy",[5,4,[[4,3,2,0,2,[[184,3,2,0,2]]],[18,1,1,2,3,[[555,1,1,2,3]]],[25,1,1,3,4,[[809,1,1,3,4]]]],[5774,5779,15171,20607]]],["zeal",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8582]]],["zealous",[2,2,[[3,2,2,0,2,[[141,2,2,0,2]]]],[4482,4484]]]]},{"k":"H7066","v":[["buy",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12190]]]]},{"k":"H7067","v":[["*",[6,5,[[1,3,2,0,2,[[69,1,1,0,1],[83,2,1,1,2]]],[4,3,3,2,5,[[156,1,1,2,3],[157,1,1,3,4],[158,1,1,4,5]]]],[2056,2510,5028,5062,5101]]],["Jealous",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2510]]],["jealous",[5,5,[[1,2,2,0,2,[[69,1,1,0,1],[83,1,1,1,2]]],[4,3,3,2,5,[[156,1,1,2,3],[157,1,1,3,4],[158,1,1,4,5]]]],[2056,2510,5028,5062,5101]]]]},{"k":"H7068","v":[["*",[43,41,[[3,9,7,0,7,[[121,7,6,0,6],[141,2,1,6,7]]],[4,1,1,7,8,[[181,1,1,7,8]]],[11,2,2,8,10,[[322,1,1,8,9],[331,1,1,9,10]]],[17,1,1,10,11,[[440,1,1,10,11]]],[18,3,3,11,14,[[546,1,1,11,12],[556,1,1,12,13],[596,1,1,13,14]]],[19,3,3,14,17,[[633,1,1,14,15],[641,1,1,15,16],[654,1,1,16,17]]],[20,2,2,17,19,[[662,1,1,17,18],[667,1,1,18,19]]],[21,1,1,19,20,[[678,1,1,19,20]]],[22,7,7,20,27,[[687,1,1,20,21],[689,1,1,21,22],[704,1,1,22,23],[715,1,1,23,24],[720,1,1,24,25],[737,1,1,25,26],[741,1,1,26,27]]],[25,10,10,27,37,[[806,1,1,27,28],[809,2,2,28,30],[817,2,2,30,32],[824,1,1,32,33],[836,1,1,33,34],[837,2,2,34,36],[839,1,1,36,37]]],[35,2,2,37,39,[[906,1,1,37,38],[908,1,1,38,39]]],[37,2,2,39,41,[[911,1,1,39,40],[918,1,1,40,41]]]],[3806,3807,3810,3817,3821,3822,4482,5699,9809,10092,12953,14944,15190,16037,16574,16802,17173,17385,17481,17646,17836,17897,18141,18384,18493,18817,18881,20559,20607,20609,20800,20804,21032,21355,21364,21365,21444,22805,22828,22892,22978]]],["+",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4482]]],["envied",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17385]]],["envy",[7,7,[[17,1,1,0,1,[[440,1,1,0,1]]],[19,2,2,1,3,[[641,1,1,1,2],[654,1,1,2,3]]],[20,1,1,3,4,[[667,1,1,3,4]]],[22,2,2,4,6,[[689,1,1,4,5],[704,1,1,5,6]]],[25,1,1,6,7,[[836,1,1,6,7]]]],[12953,16802,17173,17481,17897,18141,21355]]],["jealousies",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3821]]],["jealousy",[24,23,[[3,7,6,0,6,[[121,6,5,0,5],[141,1,1,5,6]]],[4,1,1,6,7,[[181,1,1,6,7]]],[18,1,1,7,8,[[556,1,1,7,8]]],[19,1,1,8,9,[[633,1,1,8,9]]],[21,1,1,9,10,[[678,1,1,9,10]]],[22,1,1,10,11,[[720,1,1,10,11]]],[25,8,8,11,19,[[809,2,2,11,13],[817,2,2,13,15],[824,1,1,15,16],[837,2,2,16,18],[839,1,1,18,19]]],[35,2,2,19,21,[[906,1,1,19,20],[908,1,1,20,21]]],[37,2,2,21,23,[[911,1,1,21,22],[918,1,1,22,23]]]],[3806,3807,3810,3817,3822,4482,5699,15190,16574,17646,18493,20607,20609,20800,20804,21032,21364,21365,21444,22805,22828,22892,22978]]],["zeal",[9,9,[[11,2,2,0,2,[[322,1,1,0,1],[331,1,1,1,2]]],[18,2,2,2,4,[[546,1,1,2,3],[596,1,1,3,4]]],[22,4,4,4,8,[[687,1,1,4,5],[715,1,1,5,6],[737,1,1,6,7],[741,1,1,7,8]]],[25,1,1,8,9,[[806,1,1,8,9]]]],[9809,10092,14944,16037,17836,18384,18817,18881,20559]]]]},{"k":"H7069","v":[["*",[84,75,[[0,12,12,0,12,[[3,1,1,0,1],[13,2,2,1,3],[24,1,1,3,4],[32,1,1,4,5],[38,1,1,5,6],[46,4,4,6,10],[48,1,1,10,11],[49,1,1,11,12]]],[1,2,2,12,14,[[64,1,1,12,13],[70,1,1,13,14]]],[2,9,9,14,23,[[111,1,1,14,15],[114,7,7,15,22],[116,1,1,22,23]]],[4,2,2,23,25,[[180,1,1,23,24],[184,1,1,24,25]]],[5,1,1,25,26,[[210,1,1,25,26]]],[7,6,5,26,31,[[235,6,5,26,31]]],[9,5,3,31,34,[[278,1,1,31,32],[290,4,2,32,34]]],[10,1,1,34,35,[[306,1,1,34,35]]],[11,2,2,35,37,[[324,1,1,35,36],[334,1,1,36,37]]],[12,2,1,37,38,[[358,2,1,37,38]]],[13,1,1,38,39,[[400,1,1,38,39]]],[15,2,2,39,41,[[417,2,2,39,41]]],[18,3,3,41,44,[[551,1,1,41,42],[555,1,1,42,43],[616,1,1,43,44]]],[19,14,11,44,55,[[628,1,1,44,45],[631,4,2,45,47],[635,1,1,47,48],[642,1,1,48,49],[643,2,1,49,50],[644,1,1,50,51],[645,1,1,51,52],[646,1,1,52,53],[647,1,1,53,54],[650,1,1,54,55]]],[20,1,1,55,56,[[660,1,1,55,56]]],[22,4,4,56,60,[[679,1,1,56,57],[689,1,1,57,58],[702,1,1,58,59],[721,1,1,59,60]]],[23,13,11,60,71,[[757,3,3,60,63],[763,1,1,63,64],[776,9,7,64,71]]],[25,1,1,71,72,[[808,1,1,71,72]]],[29,1,1,72,73,[[886,1,1,72,73]]],[37,2,2,73,75,[[921,1,1,73,74],[923,1,1,74,75]]]],[80,355,358,668,979,1150,1439,1440,1442,1443,1503,1519,1936,2079,3380,3483,3484,3497,3499,3513,3514,3519,3594,5679,5764,6508,7194,7195,7198,7199,7200,8289,8713,8716,9307,9862,10151,10958,11944,12390,12398,15050,15167,16252,16405,16495,16497,16624,16839,16856,16889,16916,16933,16968,17067,17340,17657,17895,18097,18529,19267,19268,19270,19408,19738,19739,19740,19746,19756,19774,19775,20589,22487,23033,23064]]],["+",[15,12,[[0,2,2,0,2,[[32,1,1,0,1],[46,1,1,1,2]]],[7,1,1,2,3,[[235,1,1,2,3]]],[9,4,2,3,5,[[290,4,2,3,5]]],[10,1,1,5,6,[[306,1,1,5,6]]],[12,2,1,6,7,[[358,2,1,6,7]]],[15,1,1,7,8,[[417,1,1,7,8]]],[22,1,1,8,9,[[689,1,1,8,9]]],[23,3,3,9,12,[[757,1,1,9,10],[776,2,2,10,12]]]],[979,1440,7199,8713,8716,9307,10958,12390,17895,19268,19739,19740]]],["Buy",[5,5,[[7,2,2,0,2,[[235,2,2,0,2]]],[19,1,1,2,3,[[650,1,1,2,3]]],[23,2,2,3,5,[[776,2,2,3,5]]]],[7194,7198,17067,19738,19756]]],["Get",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16495]]],["attain",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16405]]],["bought",[15,15,[[0,5,5,0,5,[[38,1,1,0,1],[46,2,2,1,3],[48,1,1,3,4],[49,1,1,4,5]]],[2,4,4,5,9,[[114,3,3,5,8],[116,1,1,8,9]]],[4,1,1,9,10,[[184,1,1,9,10]]],[5,1,1,10,11,[[210,1,1,10,11]]],[9,1,1,11,12,[[278,1,1,11,12]]],[15,1,1,12,13,[[417,1,1,12,13]]],[22,1,1,13,14,[[721,1,1,13,14]]],[23,1,1,14,15,[[776,1,1,14,15]]]],[1150,1442,1443,1503,1519,3497,3499,3519,3594,5764,6508,8289,12398,18529,19774]]],["buy",[15,15,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,1,1,1,2,[[70,1,1,1,2]]],[2,4,4,2,6,[[111,1,1,2,3],[114,3,3,3,6]]],[4,1,1,6,7,[[180,1,1,6,7]]],[7,1,1,7,8,[[235,1,1,7,8]]],[11,2,2,8,10,[[324,1,1,8,9],[334,1,1,9,10]]],[13,1,1,10,11,[[400,1,1,10,11]]],[23,3,3,11,14,[[776,3,3,11,14]]],[29,1,1,14,15,[[886,1,1,14,15]]]],[1439,2079,3380,3484,3513,3514,5679,7195,9862,10151,11944,19738,19739,19775,22487]]],["buyer",[3,3,[[19,1,1,0,1,[[647,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]],[25,1,1,2,3,[[808,1,1,2,3]]]],[16968,18097,20589]]],["buyest",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[7,1,1,1,2,[[235,1,1,1,2]]]],[3483,7195]]],["cattle",[1,1,[[37,1,1,0,1,[[923,1,1,0,1]]]],[23064]]],["get",[8,6,[[19,6,4,0,4,[[631,3,2,0,2],[643,2,1,2,3],[644,1,1,3,4]]],[23,2,2,4,6,[[757,1,1,4,5],[763,1,1,5,6]]]],[16495,16497,16856,16889,19267,19408]]],["getteth",[3,3,[[19,3,3,0,3,[[642,1,1,0,1],[645,1,1,1,2],[646,1,1,2,3]]]],[16839,16916,16933]]],["got",[2,2,[[20,1,1,0,1,[[660,1,1,0,1]]],[23,1,1,1,2,[[757,1,1,1,2]]]],[17340,19270]]],["gotten",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[80]]],["owner",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17657]]],["possessed",[3,3,[[18,1,1,0,1,[[616,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]],[23,1,1,2,3,[[776,1,1,2,3]]]],[16252,16624,19746]]],["possessor",[2,2,[[0,2,2,0,2,[[13,2,2,0,2]]]],[355,358]]],["possessors",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23033]]],["purchased",[5,5,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[7,1,1,2,3,[[235,1,1,2,3]]],[18,2,2,3,5,[[551,1,1,3,4],[555,1,1,4,5]]]],[668,1936,7200,15050,15167]]]]},{"k":"H7070","v":[["*",[62,38,[[0,2,2,0,2,[[40,2,2,0,2]]],[1,25,11,2,13,[[74,12,5,2,7],[79,1,1,7,8],[86,12,5,8,13]]],[10,1,1,13,14,[[304,1,1,13,14]]],[11,1,1,14,15,[[330,1,1,14,15]]],[17,2,2,15,17,[[466,1,1,15,16],[475,1,1,16,17]]],[18,1,1,17,18,[[545,1,1,17,18]]],[21,1,1,18,19,[[674,1,1,18,19]]],[22,6,6,19,25,[[697,1,1,19,20],[713,1,1,20,21],[714,1,1,21,22],[720,1,1,22,23],[721,1,1,23,24],[724,1,1,24,25]]],[23,1,1,25,26,[[750,1,1,25,26]]],[25,22,12,26,38,[[828,1,1,26,27],[830,1,1,27,28],[841,10,5,28,33],[842,1,1,33,34],[843,9,4,34,38]]]],[1200,1217,2226,2227,2228,2230,2231,2405,2621,2622,2623,2625,2626,9233,10045,13610,13885,14930,17596,18010,18327,18336,18483,18529,18592,19109,21140,21189,21480,21482,21483,21484,21485,21534,21568,21569,21570,21571]]],["+",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13610]]],["balance",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18592]]],["branch",[5,3,[[1,5,3,0,3,[[74,2,1,0,1],[86,3,2,1,3]]]],[2228,2621,2623]]],["branches",[19,9,[[1,19,9,0,9,[[74,10,5,0,5],[86,9,4,5,9]]]],[2226,2227,2228,2230,2231,2622,2623,2625,2626]]],["calamus",[3,3,[[1,1,1,0,1,[[79,1,1,0,1]]],[21,1,1,1,2,[[674,1,1,1,2]]],[25,1,1,2,3,[[828,1,1,2,3]]]],[2405,17596,21140]]],["cane",[2,2,[[22,1,1,0,1,[[721,1,1,0,1]]],[23,1,1,1,2,[[750,1,1,1,2]]]],[18529,19109]]],["reed",[22,16,[[10,1,1,0,1,[[304,1,1,0,1]]],[11,1,1,1,2,[[330,1,1,1,2]]],[17,1,1,2,3,[[475,1,1,2,3]]],[22,2,2,3,5,[[714,1,1,3,4],[720,1,1,4,5]]],[25,17,11,5,16,[[830,1,1,5,6],[841,10,5,6,11],[842,1,1,11,12],[843,5,4,12,16]]]],[9233,10045,13885,18336,18483,21189,21480,21482,21483,21484,21485,21534,21568,21569,21570,21571]]],["reeds",[6,6,[[22,2,2,0,2,[[697,1,1,0,1],[713,1,1,1,2]]],[25,4,4,2,6,[[843,4,4,2,6]]]],[18010,18327,21568,21569,21570,21571]]],["spearmen",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14930]]],["stalk",[2,2,[[0,2,2,0,2,[[40,2,2,0,2]]]],[1200,1217]]]]},{"k":"H7071","v":[["Kanah",[3,3,[[5,3,3,0,3,[[202,1,1,0,1],[203,1,1,1,2],[205,1,1,2,3]]]],[6273,6284,6349]]]]},{"k":"H7072","v":[["jealous",[2,2,[[5,1,1,0,1,[[210,1,1,0,1]]],[33,1,1,1,2,[[900,1,1,1,2]]]],[6495,22686]]]]},{"k":"H7073","v":[["Kenaz",[11,11,[[0,3,3,0,3,[[35,3,3,0,3]]],[5,1,1,3,4,[[201,1,1,3,4]]],[6,3,3,4,7,[[211,1,1,4,5],[213,2,2,5,7]]],[12,4,4,7,11,[[338,2,2,7,9],[341,2,2,9,11]]]],[1051,1055,1082,6219,6522,6577,6579,10288,10305,10398,10400]]]]},{"k":"H7074","v":[["*",[4,4,[[0,1,1,0,1,[[14,1,1,0,1]]],[3,1,1,1,2,[[148,1,1,1,2]]],[5,2,2,2,4,[[200,2,2,2,4]]]],[379,4730,6193,6201]]],["Kenezite",[3,3,[[3,1,1,0,1,[[148,1,1,0,1]]],[5,2,2,1,3,[[200,2,2,1,3]]]],[4730,6193,6201]]],["Kenizzites",[1,1,[[0,1,1,0,1,[[14,1,1,0,1]]]],[379]]]]},{"k":"H7075","v":[["*",[10,10,[[0,3,3,0,3,[[30,1,1,0,1],[33,1,1,1,2],[35,1,1,2,3]]],[2,1,1,3,4,[[111,1,1,3,4]]],[5,1,1,4,5,[[200,1,1,4,5]]],[18,2,2,5,7,[[581,1,1,5,6],[582,1,1,6,7]]],[19,1,1,7,8,[[631,1,1,7,8]]],[25,2,2,8,10,[[839,2,2,8,10]]]],[891,1003,1046,3380,6191,15595,15627,16497,21437,21438]]],["+",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3380]]],["getting",[2,2,[[0,1,1,0,1,[[30,1,1,0,1]]],[19,1,1,1,2,[[631,1,1,1,2]]]],[891,16497]]],["goods",[2,2,[[25,2,2,0,2,[[839,2,2,0,2]]]],[21437,21438]]],["riches",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15595]]],["substance",[4,4,[[0,2,2,0,2,[[33,1,1,0,1],[35,1,1,1,2]]],[5,1,1,2,3,[[200,1,1,2,3]]],[18,1,1,3,4,[[582,1,1,3,4]]]],[1003,1046,6191,15627]]]]},{"k":"H7076","v":[["cinnamon",[3,3,[[1,1,1,0,1,[[79,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]],[21,1,1,2,3,[[674,1,1,2,3]]]],[2405,16592,17596]]]]},{"k":"H7077","v":[["*",[5,5,[[18,1,1,0,1,[[581,1,1,0,1]]],[22,1,1,1,2,[[712,1,1,1,2]]],[23,2,2,2,4,[[766,1,1,2,3],[792,1,1,3,4]]],[25,1,1,4,5,[[832,1,1,4,5]]]],[15588,18318,19477,20108,21236]]],["nest",[3,3,[[22,1,1,0,1,[[712,1,1,0,1]]],[23,2,2,1,3,[[766,1,1,1,2],[792,1,1,2,3]]]],[18318,19477,20108]]],["nests",[2,2,[[18,1,1,0,1,[[581,1,1,0,1]]],[25,1,1,1,2,[[832,1,1,1,2]]]],[15588,21236]]]]},{"k":"H7078","v":[["end",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13278]]]]},{"k":"H7079","v":[["Kenath",[2,2,[[3,1,1,0,1,[[148,1,1,0,1]]],[12,1,1,1,2,[[339,1,1,1,2]]]],[4760,10329]]]]},{"k":"H7080","v":[["*",[20,20,[[4,2,2,0,2,[[170,2,2,0,2]]],[5,1,1,2,3,[[199,1,1,2,3]]],[8,2,2,3,5,[[241,1,1,3,4],[263,1,1,4,5]]],[11,1,1,5,6,[[329,1,1,5,6]]],[22,2,2,6,8,[[681,1,1,6,7],[722,1,1,7,8]]],[23,2,2,8,10,[[771,1,1,8,9],[773,1,1,9,10]]],[25,6,6,10,16,[[814,2,2,10,12],[822,3,3,12,15],[823,1,1,15,16]]],[32,3,3,16,19,[[895,3,3,16,19]]],[37,1,1,19,20,[[920,1,1,19,20]]]],[5394,5398,6176,7333,7950,10000,17709,18558,19605,19643,20717,20731,20965,20967,20973,21004,22614,22615,22619,23018]]],["+",[2,2,[[22,1,1,0,1,[[722,1,1,0,1]]],[32,1,1,1,2,[[895,1,1,1,2]]]],[18558,22614]]],["divination",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20967]]],["divine",[5,5,[[8,1,1,0,1,[[263,1,1,0,1]]],[25,3,3,1,4,[[814,2,2,1,3],[822,1,1,3,4]]],[32,1,1,4,5,[[895,1,1,4,5]]]],[7950,20717,20731,20973,22619]]],["diviners",[6,6,[[4,1,1,0,1,[[170,1,1,0,1]]],[8,1,1,1,2,[[241,1,1,1,2]]],[23,2,2,2,4,[[771,1,1,2,3],[773,1,1,3,4]]],[32,1,1,4,5,[[895,1,1,4,5]]],[37,1,1,5,6,[[920,1,1,5,6]]]],[5398,7333,19605,19643,22615,23018]]],["divining",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[21004]]],["prudent",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17709]]],["soothsayer",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6176]]],["use",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20965]]],["used",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10000]]],["useth",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5394]]]]},{"k":"H7081","v":[["*",[11,11,[[3,2,2,0,2,[[138,1,1,0,1],[139,1,1,1,2]]],[4,1,1,2,3,[[170,1,1,2,3]]],[8,1,1,3,4,[[250,1,1,3,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[19,1,1,5,6,[[643,1,1,5,6]]],[23,1,1,6,7,[[758,1,1,6,7]]],[25,4,4,7,11,[[814,2,2,7,9],[822,2,2,9,11]]]],[4382,4439,5394,7583,10000,16850,19307,20714,20731,20965,20966]]],["divination",[8,8,[[3,2,2,0,2,[[138,1,1,0,1],[139,1,1,1,2]]],[4,1,1,2,3,[[170,1,1,2,3]]],[11,1,1,3,4,[[329,1,1,3,4]]],[23,1,1,4,5,[[758,1,1,4,5]]],[25,3,3,5,8,[[814,1,1,5,6],[822,2,2,6,8]]]],[4382,4439,5394,10000,19307,20714,20965,20966]]],["divinations",[1,1,[[25,1,1,0,1,[[814,1,1,0,1]]]],[20731]]],["sentence",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16850]]],["witchcraft",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7583]]]]},{"k":"H7082","v":[["off",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20834]]]]},{"k":"H7083","v":[["inkhorn",[3,3,[[25,3,3,0,3,[[810,3,3,0,3]]]],[20624,20625,20633]]]]},{"k":"H7084","v":[["*",[18,16,[[5,1,1,0,1,[[201,1,1,0,1]]],[8,14,12,1,13,[[258,14,12,1,13]]],[12,1,1,13,14,[[341,1,1,13,14]]],[15,2,2,14,16,[[415,2,2,14,16]]]],[6246,7811,7812,7813,7814,7815,7816,7817,7818,7820,7821,7822,7823,10404,12344,12345]]],["+",[2,1,[[8,2,1,0,1,[[258,2,1,0,1]]]],[7823]]],["Keilah",[16,15,[[5,1,1,0,1,[[201,1,1,0,1]]],[8,12,11,1,12,[[258,12,11,1,12]]],[12,1,1,12,13,[[341,1,1,12,13]]],[15,2,2,13,15,[[415,2,2,13,15]]]],[6246,7811,7812,7813,7814,7815,7816,7817,7818,7820,7821,7822,10404,12344,12345]]]]},{"k":"H7085","v":[["+",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3309]]]]},{"k":"H7086","v":[["*",[17,17,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[3,15,15,2,17,[[120,1,1,2,3],[123,14,14,3,17]]]],[2224,2620,3750,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3934,3935]]],["charger",[13,13,[[3,13,13,0,13,[[123,13,13,0,13]]]],[3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935]]],["chargers",[1,1,[[3,1,1,0,1,[[123,1,1,0,1]]]],[3934]]],["dishes",[3,3,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]]],[2224,2620,3750]]]]},{"k":"H7087","v":[["*",[4,4,[[1,1,1,0,1,[[64,1,1,0,1]]],[17,1,1,1,2,[[445,1,1,1,2]]],[35,1,1,2,3,[[906,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[1928,13096,22799,23074]]],["congealed",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1928]]],["curdled",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13096]]],["dark",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23074]]],["settled",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22799]]]]},{"k":"H7088","v":[["off",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18402]]]]},{"k":"H7089","v":[["Destruction",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20602]]]]},{"k":"H7090","v":[["bittern",[3,3,[[22,2,2,0,2,[[692,1,1,0,1],[712,1,1,1,2]]],[35,1,1,2,3,[[907,1,1,2,3]]]],[17951,18314,22819]]]]},{"k":"H7091","v":[["owl",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18318]]]]},{"k":"H7092","v":[["*",[7,7,[[4,1,1,0,1,[[167,1,1,0,1]]],[17,2,2,1,3,[[440,1,1,1,2],[459,1,1,2,3]]],[18,2,2,3,5,[[554,1,1,3,4],[584,1,1,4,5]]],[21,1,1,5,6,[[672,1,1,5,6]]],[22,1,1,6,7,[[730,1,1,6,7]]]],[5326,12967,13460,15102,15741,17562,18711]]],["+",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5326]]],["shut",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18711]]],["skipping",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17562]]],["stop",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15741]]],["stoppeth",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12967]]],["up",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15102]]],["way",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13460]]]]},{"k":"H7093","v":[["*",[67,62,[[0,5,5,0,5,[[3,1,1,0,1],[5,1,1,1,2],[7,1,1,2,3],[15,1,1,3,4],[40,1,1,4,5]]],[1,1,1,5,6,[[61,1,1,5,6]]],[3,1,1,6,7,[[129,1,1,6,7]]],[4,3,3,7,10,[[161,1,1,7,8],[167,1,1,8,9],[183,1,1,9,10]]],[6,1,1,10,11,[[221,1,1,10,11]]],[9,2,2,11,13,[[280,1,1,11,12],[281,1,1,12,13]]],[10,2,2,13,15,[[292,1,1,13,14],[307,1,1,14,15]]],[11,1,1,15,16,[[331,1,1,15,16]]],[13,3,3,16,19,[[374,1,1,16,17],[384,1,1,17,18],[387,1,1,18,19]]],[15,1,1,19,20,[[425,1,1,19,20]]],[16,1,1,20,21,[[427,1,1,20,21]]],[17,4,4,21,25,[[441,1,1,21,22],[451,1,1,22,23],[457,1,1,23,24],[463,1,1,24,25]]],[18,2,2,25,27,[[516,1,1,25,26],[596,1,1,26,27]]],[20,3,3,27,30,[[662,2,2,27,29],[670,1,1,29,30]]],[22,4,4,30,34,[[687,1,1,30,31],[701,2,2,31,33],[715,1,1,33,34]]],[23,5,5,34,39,[[757,1,1,34,35],[778,1,1,35,36],[786,1,1,36,37],[794,1,1,37,38],[795,1,1,38,39]]],[24,2,1,39,40,[[800,2,1,39,40]]],[25,9,7,40,47,[[808,5,3,40,43],[822,2,2,43,45],[830,1,1,45,46],[836,1,1,46,47]]],[26,15,13,47,60,[[857,2,2,47,49],[858,2,1,49,50],[860,6,6,50,56],[861,5,4,56,60]]],[29,1,1,60,61,[[886,1,1,60,61]]],[34,1,1,61,62,[[904,1,1,61,62]]]],[82,150,189,384,1196,1857,4100,5168,5320,5738,6868,8382,8396,8809,9324,10084,11347,11544,11643,12677,12736,12989,13241,13394,13507,14516,15994,17389,17397,17535,17836,18092,18094,18376,19272,19815,19982,20192,20225,20438,20579,20580,20583,20969,20973,21196,21349,21978,21980,22014,22042,22049,22063,22071,22076,22081,22085,22087,22090,22094,22483,22751]]],["+",[25,25,[[0,4,4,0,4,[[3,1,1,0,1],[7,1,1,1,2],[15,1,1,2,3],[40,1,1,3,4]]],[1,1,1,4,5,[[61,1,1,4,5]]],[3,1,1,5,6,[[129,1,1,5,6]]],[4,3,3,6,9,[[161,1,1,6,7],[167,1,1,7,8],[183,1,1,8,9]]],[6,1,1,9,10,[[221,1,1,9,10]]],[9,2,2,10,12,[[280,1,1,10,11],[281,1,1,11,12]]],[10,2,2,12,14,[[292,1,1,12,13],[307,1,1,13,14]]],[13,2,2,14,16,[[374,1,1,14,15],[387,1,1,15,16]]],[16,1,1,16,17,[[427,1,1,16,17]]],[17,1,1,17,18,[[457,1,1,17,18]]],[22,2,2,18,20,[[701,2,2,18,20]]],[23,4,4,20,24,[[757,1,1,20,21],[778,1,1,21,22],[786,1,1,22,23],[794,1,1,23,24]]],[25,1,1,24,25,[[830,1,1,24,25]]]],[82,189,384,1196,1857,4100,5168,5320,5738,6868,8382,8396,8809,9324,11347,11643,12736,13394,18092,18094,19272,19815,19982,20192,21196]]],["after",[3,3,[[13,1,1,0,1,[[384,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[11544,12677,22049]]],["border",[1,1,[[22,1,1,0,1,[[715,1,1,0,1]]]],[18376]]],["borders",[1,1,[[11,1,1,0,1,[[331,1,1,0,1]]]],[10084]]],["end",[37,32,[[0,1,1,0,1,[[5,1,1,0,1]]],[17,3,3,1,4,[[441,1,1,1,2],[451,1,1,2,3],[463,1,1,3,4]]],[18,2,2,4,6,[[516,1,1,4,5],[596,1,1,5,6]]],[20,3,3,6,9,[[662,2,2,6,8],[670,1,1,8,9]]],[22,1,1,9,10,[[687,1,1,9,10]]],[23,1,1,10,11,[[795,1,1,10,11]]],[24,2,1,11,12,[[800,2,1,11,12]]],[25,8,6,12,18,[[808,5,3,12,15],[822,2,2,15,17],[836,1,1,17,18]]],[26,14,12,18,30,[[857,2,2,18,20],[858,2,1,20,21],[860,5,5,21,26],[861,5,4,26,30]]],[29,1,1,30,31,[[886,1,1,30,31]]],[34,1,1,31,32,[[904,1,1,31,32]]]],[150,12989,13241,13507,14516,15994,17389,17397,17535,17836,20225,20438,20579,20580,20583,20969,20973,21349,21978,21980,22014,22042,22063,22071,22076,22081,22085,22087,22090,22094,22483,22751]]]]},{"k":"H7094","v":[["*",[2,2,[[11,1,1,0,1,[[318,1,1,0,1]]],[21,1,1,1,2,[[674,1,1,1,2]]]],[9680,17584]]],["down",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9680]]],["shorn",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17584]]]]},{"k":"H7095","v":[["*",[3,3,[[10,2,2,0,2,[[296,1,1,0,1],[297,1,1,1,2]]],[31,1,1,2,3,[[890,1,1,2,3]]]],[8921,8971,22554]]],["bottoms",[1,1,[[31,1,1,0,1,[[890,1,1,0,1]]]],[22554]]],["size",[2,2,[[10,2,2,0,2,[[296,1,1,0,1],[297,1,1,1,2]]]],[8921,8971]]]]},{"k":"H7096","v":[["*",[5,5,[[2,2,2,0,2,[[103,2,2,0,2]]],[11,1,1,2,3,[[322,1,1,2,3]]],[19,1,1,3,4,[[653,1,1,3,4]]],[34,1,1,4,5,[[904,1,1,4,5]]]],[3152,3154,9825,17147,22758]]],["+",[2,2,[[2,1,1,0,1,[[103,1,1,0,1]]],[11,1,1,1,2,[[322,1,1,1,2]]]],[3154,9825]]],["off",[3,3,[[2,1,1,0,1,[[103,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[3152,17147,22758]]]]},{"k":"H7097","v":[["*",[97,87,[[0,6,5,0,5,[[7,1,1,0,1],[18,1,1,1,2],[22,1,1,2,3],[46,3,2,3,5]]],[1,9,7,5,12,[[62,1,1,5,6],[65,1,1,6,7],[68,1,1,7,8],[75,3,2,8,10],[85,3,2,10,12]]],[3,8,8,12,20,[[127,1,1,12,13],[136,1,1,13,14],[138,2,2,14,16],[139,1,1,16,17],[149,2,2,17,19],[150,1,1,19,20]]],[4,9,6,20,26,[[156,2,1,20,21],[165,2,1,21,22],[166,1,1,22,23],[180,3,2,23,25],[182,1,1,25,26]]],[5,15,14,26,40,[[189,3,3,26,29],[190,1,1,29,30],[195,1,1,30,31],[199,1,1,31,32],[201,6,5,32,37],[204,3,3,37,40]]],[6,4,4,40,44,[[216,1,1,40,41],[217,3,3,41,44]]],[7,1,1,44,45,[[234,1,1,44,45]]],[8,4,4,45,49,[[244,1,1,45,46],[249,3,3,46,49]]],[9,1,1,49,50,[[290,1,1,49,50]]],[10,1,1,50,51,[[299,1,1,50,51]]],[11,4,4,51,55,[[319,2,2,51,53],[320,1,1,53,54],[330,1,1,54,55]]],[15,1,1,55,56,[[413,1,1,55,56]]],[18,5,5,56,61,[[496,2,2,56,58],[523,1,1,58,59],[538,1,1,59,60],[612,1,1,60,61]]],[19,1,1,61,62,[[644,1,1,61,62]]],[22,12,11,62,73,[[680,2,1,62,63],[683,1,1,63,64],[685,2,2,64,66],[691,1,1,66,67],[720,1,1,67,68],[721,1,1,68,69],[726,1,1,69,70],[727,1,1,70,71],[734,1,1,71,72],[740,1,1,72,73]]],[23,8,6,73,79,[[754,1,1,73,74],[756,2,1,74,75],[769,3,2,75,77],[795,2,2,77,79]]],[25,5,5,79,84,[[804,1,1,79,80],[826,1,1,80,81],[834,1,1,81,82],[840,1,1,82,83],[849,1,1,83,84]]],[33,3,3,84,87,[[901,1,1,84,85],[902,2,2,85,87]]]],[186,461,580,1422,1441,1887,1982,2038,2240,2263,2578,2599,4025,4327,4411,4416,4429,4766,4797,4819,5036,5279,5318,5660,5675,5712,5895,5901,5908,5929,6053,6181,6203,6204,6207,6210,6223,6308,6309,6312,6675,6705,6711,6713,7179,7418,7510,7535,7551,8700,9061,9712,9715,9730,10034,12305,14172,14174,14623,14821,16182,16897,17692,17765,17785,17800,17911,18490,18511,18634,18642,18764,18865,19214,19261,19565,19567,20228,20243,20518,21092,21282,21462,21703,22708,22715,22721]]],["+",[42,40,[[0,4,4,0,4,[[7,1,1,0,1],[18,1,1,1,2],[46,2,2,2,4]]],[3,1,1,4,5,[[150,1,1,4,5]]],[4,7,5,5,10,[[156,2,1,5,6],[165,1,1,6,7],[166,1,1,7,8],[180,3,2,8,10]]],[5,7,7,10,17,[[189,1,1,10,11],[195,1,1,11,12],[201,4,4,12,16],[204,1,1,16,17]]],[9,1,1,17,18,[[290,1,1,17,18]]],[10,1,1,18,19,[[299,1,1,18,19]]],[11,2,2,19,21,[[320,1,1,19,20],[330,1,1,20,21]]],[18,3,3,21,24,[[496,1,1,21,22],[538,1,1,22,23],[612,1,1,23,24]]],[22,5,5,24,29,[[683,1,1,24,25],[691,1,1,25,26],[720,1,1,26,27],[721,1,1,27,28],[734,1,1,28,29]]],[23,5,5,29,34,[[754,1,1,29,30],[756,1,1,30,31],[769,1,1,31,32],[795,2,2,32,34]]],[25,5,5,34,39,[[804,1,1,34,35],[826,1,1,35,36],[834,1,1,36,37],[840,1,1,37,38],[849,1,1,38,39]]],[33,1,1,39,40,[[902,1,1,39,40]]]],[186,461,1422,1441,4819,5036,5279,5318,5660,5675,5895,6053,6203,6204,6207,6223,6308,8700,9061,9730,10034,14174,14821,16182,17765,17911,18490,18511,18764,19214,19261,19567,20228,20243,20518,21092,21282,21462,21703,22721]]],["border",[2,2,[[1,1,1,0,1,[[68,1,1,0,1]]],[5,1,1,1,2,[[190,1,1,1,2]]]],[2038,5929]]],["borders",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1982]]],["brim",[1,1,[[5,1,1,0,1,[[189,1,1,0,1]]]],[5908]]],["brink",[1,1,[[5,1,1,0,1,[[189,1,1,0,1]]]],[5901]]],["edge",[6,6,[[1,3,3,0,3,[[62,1,1,0,1],[75,1,1,1,2],[85,1,1,2,3]]],[3,2,2,3,5,[[149,2,2,3,5]]],[5,1,1,5,6,[[199,1,1,5,6]]]],[1887,2240,2578,4766,4797,6181]]],["end",[27,25,[[0,2,2,0,2,[[22,1,1,0,1],[46,1,1,1,2]]],[1,3,2,2,4,[[75,2,1,2,3],[85,1,1,3,4]]],[4,1,1,4,5,[[165,1,1,4,5]]],[5,4,4,5,9,[[201,2,2,5,7],[204,2,2,7,9]]],[6,1,1,9,10,[[216,1,1,9,10]]],[7,1,1,10,11,[[234,1,1,10,11]]],[8,3,3,11,14,[[244,1,1,11,12],[249,2,2,12,14]]],[18,2,2,14,16,[[496,1,1,14,15],[523,1,1,15,16]]],[22,6,5,16,21,[[680,2,1,16,17],[685,1,1,17,18],[726,1,1,18,19],[727,1,1,19,20],[740,1,1,20,21]]],[23,2,2,21,23,[[756,1,1,21,22],[769,1,1,22,23]]],[33,2,2,23,25,[[901,1,1,23,24],[902,1,1,24,25]]]],[580,1441,2263,2599,5279,6207,6210,6309,6312,6675,7179,7418,7535,7551,14172,14623,17692,17785,18634,18642,18865,19261,19567,22708,22715]]],["ends",[2,2,[[19,1,1,0,1,[[644,1,1,0,1]]],[23,1,1,1,2,[[769,1,1,1,2]]]],[16897,19565]]],["other",[1,1,[[1,1,1,0,1,[[85,1,1,0,1]]]],[2599]]],["outmost",[1,1,[[4,1,1,0,1,[[182,1,1,0,1]]]],[5712]]],["outside",[3,3,[[6,3,3,0,3,[[217,3,3,0,3]]]],[6705,6711,6713]]],["part",[6,6,[[3,1,1,0,1,[[139,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[11,2,2,2,4,[[319,2,2,2,4]]],[15,1,1,4,5,[[413,1,1,4,5]]],[22,1,1,5,6,[[685,1,1,5,6]]]],[4429,7510,9712,9715,12305,17800]]],["parts",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4025]]],["utmost",[2,2,[[3,2,2,0,2,[[138,2,2,0,2]]]],[4411,4416]]],["uttermost",[1,1,[[3,1,1,0,1,[[136,1,1,0,1]]]],[4327]]]]},{"k":"H7098","v":[["*",[36,31,[[1,21,17,0,17,[[74,4,2,0,2],[75,1,1,2,3],[76,1,1,3,4],[77,5,5,4,9],[85,1,1,9,10],[86,4,2,10,12],[88,5,5,12,17]]],[6,1,1,17,18,[[228,1,1,17,18]]],[10,4,3,18,21,[[296,2,1,18,19],[302,1,1,19,20],[303,1,1,20,21]]],[11,1,1,21,22,[[329,1,1,21,22]]],[17,2,2,22,24,[[461,1,1,22,23],[463,1,1,23,24]]],[18,2,2,24,26,[[496,1,1,24,25],[542,1,1,25,26]]],[22,3,3,26,29,[[718,1,1,26,27],[719,2,2,27,29]]],[23,1,1,29,30,[[793,1,1,29,30]]],[25,1,1,30,31,[[816,1,1,30,31]]]],[2213,2214,2239,2276,2300,2316,2317,2318,2319,2577,2611,2612,2668,2680,2681,2682,2683,6995,8920,9182,9217,10015,13481,13528,14174,14868,18448,18456,18460,20163,20758]]],["+",[12,10,[[1,6,4,0,4,[[74,2,1,0,1],[75,1,1,1,2],[85,1,1,2,3],[86,2,1,3,4]]],[6,1,1,4,5,[[228,1,1,4,5]]],[10,3,3,5,8,[[296,1,1,5,6],[302,1,1,6,7],[303,1,1,7,8]]],[11,1,1,8,9,[[329,1,1,8,9]]],[22,1,1,9,10,[[719,1,1,9,10]]]],[2214,2239,2577,2612,6995,8920,9182,9217,10015,18460]]],["corners",[1,1,[[1,1,1,0,1,[[76,1,1,0,1]]]],[2276]]],["edges",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2300,2668]]],["ends",[17,17,[[1,12,12,0,12,[[74,2,2,0,2],[77,4,4,2,6],[86,2,2,6,8],[88,4,4,8,12]]],[17,1,1,12,13,[[463,1,1,12,13]]],[18,1,1,13,14,[[496,1,1,13,14]]],[22,2,2,14,16,[[718,1,1,14,15],[719,1,1,15,16]]],[25,1,1,16,17,[[816,1,1,16,17]]]],[2213,2214,2316,2317,2318,2319,2611,2612,2680,2681,2682,2683,13528,14174,18448,18456,20758]]],["part",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8920]]],["parts",[2,2,[[17,1,1,0,1,[[461,1,1,0,1]]],[18,1,1,1,2,[[542,1,1,1,2]]]],[13481,14868]]],["quarters",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20163]]]]},{"k":"H7099","v":[["ends",[4,4,[[1,1,1,0,1,[[87,1,1,0,1]]],[18,2,2,1,3,[[525,1,1,1,2],[542,1,1,2,3]]],[22,1,1,3,4,[[704,1,1,3,4]]]],[2638,14644,14865,18145]]]]},{"k":"H7100","v":[["fitches",[3,2,[[22,3,2,0,2,[[706,3,2,0,2]]]],[18189,18191]]]]},{"k":"H7101","v":[["*",[12,12,[[5,1,1,0,1,[[196,1,1,0,1]]],[6,2,2,1,3,[[221,2,2,1,3]]],[19,2,2,3,5,[[633,1,1,3,4],[652,1,1,4,5]]],[22,4,4,5,9,[[679,1,1,5,6],[681,2,2,6,8],[700,1,1,8,9]]],[26,1,1,9,10,[[860,1,1,9,10]]],[32,2,2,10,12,[[895,2,2,10,12]]]],[6088,6835,6840,16547,17128,17664,17713,17714,18055,22054,22609,22617]]],["captain",[2,2,[[6,2,2,0,2,[[221,2,2,0,2]]]],[6835,6840]]],["captains",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6088]]],["guide",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16547]]],["prince",[2,2,[[19,1,1,0,1,[[652,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[17128,22054]]],["princes",[2,2,[[32,2,2,0,2,[[895,2,2,0,2]]]],[22609,22617]]],["ruler",[2,2,[[22,2,2,0,2,[[681,2,2,0,2]]]],[17713,17714]]],["rulers",[2,2,[[22,2,2,0,2,[[679,1,1,0,1],[700,1,1,1,2]]]],[17664,18055]]]]},{"k":"H7102","v":[["cassia",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14605]]]]},{"k":"H7103","v":[["Kezia",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13936]]]]},{"k":"H7104","v":[["Keziz",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6314]]]]},{"k":"H7105","v":[["*",[54,49,[[0,3,3,0,3,[[7,1,1,0,1],[29,1,1,1,2],[44,1,1,2,3]]],[1,3,3,3,6,[[72,1,1,3,4],[83,2,2,4,6]]],[2,7,4,6,10,[[108,2,1,6,7],[112,4,2,7,9],[114,1,1,9,10]]],[4,1,1,10,11,[[176,1,1,10,11]]],[5,1,1,11,12,[[189,1,1,11,12]]],[6,1,1,12,13,[[225,1,1,12,13]]],[7,4,3,13,16,[[232,1,1,13,14],[233,3,2,14,16]]],[8,3,3,16,19,[[241,1,1,16,17],[243,1,1,17,18],[247,1,1,18,19]]],[9,4,3,19,22,[[287,3,2,19,21],[289,1,1,21,22]]],[17,4,4,22,26,[[440,1,1,22,23],[449,1,1,23,24],[453,1,1,24,25],[464,1,1,25,26]]],[18,1,1,26,27,[[557,1,1,26,27]]],[19,5,5,27,32,[[633,1,1,27,28],[637,1,1,28,29],[647,1,1,29,30],[652,1,1,30,31],[653,1,1,31,32]]],[22,8,8,32,40,[[687,1,1,32,33],[694,1,1,33,34],[695,2,2,34,36],[696,2,2,36,38],[701,1,1,38,39],[705,1,1,39,40]]],[23,5,5,40,45,[[749,2,2,40,42],[752,1,1,42,43],[794,1,1,43,44],[795,1,1,44,45]]],[27,1,1,45,46,[[867,1,1,45,46]]],[28,2,2,46,48,[[876,1,1,46,47],[878,1,1,47,48]]],[29,1,1,48,49,[[882,1,1,48,49]]]],[205,844,1364,2160,2517,2518,3290,3412,3424,3474,5544,5908,6930,7149,7170,7172,7344,7381,7477,8589,8590,8666,12956,13190,13292,13551,15209,16548,16661,16958,17126,17142,17832,17978,17988,17994,18001,18002,18080,18162,19075,19082,19173,20182,20245,22178,22302,22356,22417]]],["boughs",[3,3,[[17,1,1,0,1,[[449,1,1,0,1]]],[18,1,1,1,2,[[557,1,1,1,2]]],[22,1,1,2,3,[[705,1,1,2,3]]]],[13190,15209,18162]]],["branch",[2,2,[[17,2,2,0,2,[[453,1,1,0,1],[464,1,1,1,2]]]],[13292,13551]]],["harvest",[47,42,[[0,3,3,0,3,[[7,1,1,0,1],[29,1,1,1,2],[44,1,1,2,3]]],[1,3,3,3,6,[[72,1,1,3,4],[83,2,2,4,6]]],[2,7,4,6,10,[[108,2,1,6,7],[112,4,2,7,9],[114,1,1,9,10]]],[4,1,1,10,11,[[176,1,1,10,11]]],[5,1,1,11,12,[[189,1,1,11,12]]],[6,1,1,12,13,[[225,1,1,12,13]]],[7,4,3,13,16,[[232,1,1,13,14],[233,3,2,14,16]]],[8,3,3,16,19,[[241,1,1,16,17],[243,1,1,17,18],[247,1,1,18,19]]],[9,3,2,19,21,[[287,3,2,19,21]]],[17,1,1,21,22,[[440,1,1,21,22]]],[19,5,5,22,27,[[633,1,1,22,23],[637,1,1,23,24],[647,1,1,24,25],[652,1,1,25,26],[653,1,1,26,27]]],[22,6,6,27,33,[[687,1,1,27,28],[694,1,1,28,29],[695,1,1,29,30],[696,2,2,30,32],[701,1,1,32,33]]],[23,5,5,33,38,[[749,2,2,33,35],[752,1,1,35,36],[794,1,1,36,37],[795,1,1,37,38]]],[27,1,1,38,39,[[867,1,1,38,39]]],[28,2,2,39,41,[[876,1,1,39,40],[878,1,1,40,41]]],[29,1,1,41,42,[[882,1,1,41,42]]]],[205,844,1364,2160,2517,2518,3290,3412,3424,3474,5544,5908,6930,7149,7170,7172,7344,7381,7477,8589,8590,12956,16548,16661,16958,17126,17142,17832,17978,17994,18001,18002,18080,19075,19082,19173,20182,20245,22178,22302,22356,22417]]],["harvestman",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17988]]],["time",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8666]]]]},{"k":"H7106","v":[["*",[2,2,[[2,1,1,0,1,[[103,1,1,0,1]]],[25,1,1,1,2,[[847,1,1,1,2]]]],[3152,21677]]],["corners",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21677]]],["scraped",[1,1,[[2,1,1,0,1,[[103,1,1,0,1]]]],[3152]]]]},{"k":"H7107","v":[["*",[34,32,[[0,2,2,0,2,[[39,1,1,0,1],[40,1,1,1,2]]],[1,1,1,2,3,[[65,1,1,2,3]]],[2,2,2,3,5,[[99,2,2,3,5]]],[3,2,2,5,7,[[132,1,1,5,6],[147,1,1,6,7]]],[4,5,5,7,12,[[153,1,1,7,8],[161,4,4,8,12]]],[5,1,1,12,13,[[208,1,1,12,13]]],[8,1,1,13,14,[[264,1,1,13,14]]],[11,2,2,14,16,[[317,1,1,14,15],[325,1,1,15,16]]],[16,2,2,16,18,[[426,1,1,16,17],[427,1,1,17,18]]],[18,1,1,18,19,[[583,1,1,18,19]]],[20,1,1,19,20,[[663,1,1,19,20]]],[22,8,7,20,27,[[686,1,1,20,21],[725,1,1,21,22],[732,1,1,22,23],[735,3,2,23,25],[742,2,2,25,27]]],[23,1,1,27,28,[[781,1,1,27,28]]],[24,1,1,28,29,[[801,1,1,28,29]]],[37,4,3,29,32,[[911,3,2,29,31],[918,1,1,31,32]]]],[1174,1205,1967,2983,2993,4216,4678,4926,5164,5165,5176,5179,6444,7971,9658,9890,12714,12745,15683,17403,17828,18605,18732,18781,18782,18890,18894,19889,20464,22880,22893,22990]]],["+",[10,10,[[4,3,3,0,3,[[161,3,3,0,3]]],[22,3,3,3,6,[[732,1,1,3,4],[735,1,1,4,5],[742,1,1,5,6]]],[24,1,1,6,7,[[801,1,1,6,7]]],[37,3,3,7,10,[[911,2,2,7,9],[918,1,1,9,10]]]],[5164,5165,5179,18732,18781,18894,20464,22880,22893,22990]]],["angered",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15683]]],["angry",[2,2,[[2,1,1,0,1,[[99,1,1,0,1]]],[20,1,1,1,2,[[663,1,1,1,2]]]],[2993,17403]]],["come",[1,1,[[2,1,1,0,1,[[99,1,1,0,1]]]],[2983]]],["displeased",[1,1,[[37,1,1,0,1,[[911,1,1,0,1]]]],[22893]]],["themselves",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17828]]],["wroth",[18,17,[[0,2,2,0,2,[[39,1,1,0,1],[40,1,1,1,2]]],[1,1,1,2,3,[[65,1,1,2,3]]],[3,2,2,3,5,[[132,1,1,3,4],[147,1,1,4,5]]],[4,2,2,5,7,[[153,1,1,5,6],[161,1,1,6,7]]],[5,1,1,7,8,[[208,1,1,7,8]]],[8,1,1,8,9,[[264,1,1,8,9]]],[11,2,2,9,11,[[317,1,1,9,10],[325,1,1,10,11]]],[16,2,2,11,13,[[426,1,1,11,12],[427,1,1,12,13]]],[22,4,3,13,16,[[725,1,1,13,14],[735,2,1,14,15],[742,1,1,15,16]]],[23,1,1,16,17,[[781,1,1,16,17]]]],[1174,1205,1967,4216,4678,4926,5176,6444,7971,9658,9890,12714,12745,18605,18782,18890,19889]]]]},{"k":"H7108","v":[["furious",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21770]]]]},{"k":"H7109","v":[["wrath",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12196]]]]},{"k":"H7110","v":[["*",[29,29,[[3,3,3,0,3,[[117,1,1,0,1],[132,1,1,1,2],[134,1,1,2,3]]],[4,1,1,3,4,[[181,1,1,3,4]]],[5,2,2,4,6,[[195,1,1,4,5],[208,1,1,5,6]]],[11,1,1,6,7,[[315,1,1,6,7]]],[12,1,1,7,8,[[364,1,1,7,8]]],[13,6,6,8,14,[[385,2,2,8,10],[390,1,1,10,11],[395,1,1,11,12],[398,2,2,12,14]]],[16,1,1,14,15,[[426,1,1,14,15]]],[18,2,2,15,17,[[515,1,1,15,16],[579,1,1,16,17]]],[20,1,1,17,18,[[663,1,1,17,18]]],[22,3,3,18,21,[[712,1,1,18,19],[732,1,1,19,20],[738,1,1,20,21]]],[23,4,4,21,25,[[754,1,1,21,22],[765,1,1,22,23],[776,1,1,23,24],[794,1,1,24,25]]],[27,1,1,25,26,[[871,1,1,25,26]]],[37,3,3,26,29,[[911,2,2,26,28],[917,1,1,28,29]]]],[3657,4240,4262,5707,6057,6446,9603,11133,11578,11586,11695,11799,11900,11901,12720,14491,15531,17414,18305,18731,18831,19211,19445,19768,20179,22232,22880,22893,22974]]],["+",[4,4,[[23,2,2,0,2,[[754,1,1,0,1],[794,1,1,1,2]]],[37,2,2,2,4,[[911,2,2,2,4]]]],[19211,20179,22880,22893]]],["foam",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22232]]],["indignation",[3,3,[[4,1,1,0,1,[[181,1,1,0,1]]],[11,1,1,1,2,[[315,1,1,1,2]]],[22,1,1,2,3,[[712,1,1,2,3]]]],[5707,9603,18305]]],["wrath",[21,21,[[3,3,3,0,3,[[117,1,1,0,1],[132,1,1,1,2],[134,1,1,2,3]]],[5,2,2,3,5,[[195,1,1,3,4],[208,1,1,4,5]]],[12,1,1,5,6,[[364,1,1,5,6]]],[13,6,6,6,12,[[385,2,2,6,8],[390,1,1,8,9],[395,1,1,9,10],[398,2,2,10,12]]],[16,1,1,12,13,[[426,1,1,12,13]]],[18,2,2,13,15,[[515,1,1,13,14],[579,1,1,14,15]]],[20,1,1,15,16,[[663,1,1,15,16]]],[22,2,2,16,18,[[732,1,1,16,17],[738,1,1,17,18]]],[23,2,2,18,20,[[765,1,1,18,19],[776,1,1,19,20]]],[37,1,1,20,21,[[917,1,1,20,21]]]],[3657,4240,4262,6057,6446,11133,11578,11586,11695,11799,11900,11901,12720,14491,15531,17414,18731,18831,19445,19768,22974]]]]},{"k":"H7111","v":[["barked",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22298]]]]},{"k":"H7112","v":[["*",[14,14,[[1,1,1,0,1,[[88,1,1,0,1]]],[4,1,1,1,2,[[177,1,1,1,2]]],[6,2,2,2,4,[[211,2,2,2,4]]],[9,1,1,4,5,[[270,1,1,4,5]]],[11,3,3,5,8,[[328,1,1,5,6],[330,1,1,6,7],[336,1,1,7,8]]],[13,1,1,8,9,[[394,1,1,8,9]]],[18,2,2,9,11,[[523,1,1,9,10],[606,1,1,10,11]]],[23,3,3,11,14,[[753,1,1,11,12],[769,1,1,12,13],[793,1,1,13,14]]]],[2667,5559,6515,6516,8132,9980,10040,10215,11788,14623,16136,19201,19557,20159]]],["+",[6,6,[[4,1,1,0,1,[[177,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]],[9,1,1,2,3,[[270,1,1,2,3]]],[11,2,2,3,5,[[328,1,1,3,4],[336,1,1,4,5]]],[13,1,1,5,6,[[394,1,1,5,6]]]],[5559,6515,8132,9980,10215,11788]]],["asunder",[1,1,[[18,1,1,0,1,[[606,1,1,0,1]]]],[16136]]],["cut",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2667]]],["cutteth",[1,1,[[18,1,1,0,1,[[523,1,1,0,1]]]],[14623]]],["off",[2,2,[[6,1,1,0,1,[[211,1,1,0,1]]],[11,1,1,1,2,[[330,1,1,1,2]]]],[6516,10040]]],["utmost",[3,3,[[23,3,3,0,3,[[753,1,1,0,1],[769,1,1,1,2],[793,1,1,2,3]]]],[19201,19557,20159]]]]},{"k":"H7113","v":[["off",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21851]]]]},{"k":"H7114","v":[["*",[49,46,[[2,7,5,0,5,[[108,2,1,0,1],[112,3,2,1,3],[114,2,2,3,5]]],[3,2,2,5,7,[[127,1,1,5,6],[137,1,1,6,7]]],[4,1,1,7,8,[[176,1,1,7,8]]],[6,2,2,8,10,[[220,1,1,8,9],[226,1,1,9,10]]],[7,7,7,10,17,[[233,7,7,10,17]]],[8,2,2,17,19,[[241,1,1,17,18],[243,1,1,18,19]]],[11,2,2,19,21,[[316,1,1,19,20],[331,1,1,20,21]]],[17,3,3,21,24,[[439,1,1,21,22],[456,1,1,22,23],[459,1,1,23,24]]],[18,4,4,24,28,[[566,1,1,24,25],[579,1,1,25,26],[603,1,1,26,27],[606,1,1,27,28]]],[19,2,2,28,30,[[637,1,1,28,29],[649,1,1,29,30]]],[20,1,1,30,31,[[669,1,1,30,31]]],[22,6,5,31,36,[[695,1,1,31,32],[706,1,1,32,33],[715,1,1,33,34],[728,2,1,34,35],[737,1,1,35,36]]],[23,2,2,36,38,[[753,1,1,36,37],[756,1,1,37,38]]],[25,1,1,38,39,[[843,1,1,38,39]]],[27,3,3,39,42,[[869,1,1,39,40],[871,2,2,40,42]]],[29,1,1,42,43,[[887,1,1,42,43]]],[32,2,2,43,45,[[894,1,1,43,44],[898,1,1,44,45]]],[37,1,1,45,46,[[921,1,1,45,46]]]],[3290,3412,3424,3474,3480,4047,4344,5544,6827,6965,7152,7153,7154,7155,7156,7158,7163,7344,7381,9621,10090,12938,13359,13442,15371,15544,16120,16139,16683,17023,17517,17988,18184,18382,18664,18801,19197,19262,21557,22201,22237,22238,22508,22602,22663,23036]]],["+",[7,5,[[2,5,4,0,4,[[108,2,1,0,1],[112,2,2,1,3],[114,1,1,3,4]]],[22,2,1,4,5,[[728,2,1,4,5]]]],[3290,3412,3424,3480,18664]]],["discouraged",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4344]]],["down",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5544]]],["grieved",[1,1,[[6,1,1,0,1,[[220,1,1,0,1]]]],[6827]]],["harvestman",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19197]]],["lothed",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23036]]],["mower",[1,1,[[18,1,1,0,1,[[606,1,1,0,1]]]],[16139]]],["reap",[14,14,[[2,1,1,0,1,[[114,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[8,1,1,2,3,[[243,1,1,2,3]]],[11,1,1,3,4,[[331,1,1,3,4]]],[17,2,2,4,6,[[439,1,1,4,5],[459,1,1,5,6]]],[18,1,1,6,7,[[603,1,1,6,7]]],[19,1,1,7,8,[[649,1,1,7,8]]],[20,1,1,8,9,[[669,1,1,8,9]]],[22,1,1,9,10,[[715,1,1,9,10]]],[23,1,1,10,11,[[756,1,1,10,11]]],[27,2,2,11,13,[[869,1,1,11,12],[871,1,1,12,13]]],[32,1,1,13,14,[[898,1,1,13,14]]]],[3474,7158,7381,10090,12938,13442,16120,17023,17517,18382,19262,22201,22237,22663]]],["reaped",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22238]]],["reaper",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22508]]],["reapers",[7,7,[[7,6,6,0,6,[[233,6,6,0,6]]],[11,1,1,6,7,[[316,1,1,6,7]]]],[7152,7153,7154,7155,7156,7163,9621]]],["reapest",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3424]]],["reapeth",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17988]]],["reaping",[1,1,[[8,1,1,0,1,[[241,1,1,0,1]]]],[7344]]],["short",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4047]]],["shortened",[4,4,[[18,2,2,0,2,[[566,1,1,0,1],[579,1,1,1,2]]],[19,1,1,2,3,[[637,1,1,2,3]]],[22,1,1,3,4,[[737,1,1,3,4]]]],[15371,15544,16683,18801]]],["shorter",[2,2,[[22,1,1,0,1,[[706,1,1,0,1]]],[25,1,1,1,2,[[843,1,1,1,2]]]],[18184,21557]]],["straitened",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22602]]],["troubled",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13359]]],["vexed",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6965]]]]},{"k":"H7115","v":[["+",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1664]]]]},{"k":"H7116","v":[["*",[5,5,[[11,1,1,0,1,[[331,1,1,0,1]]],[17,1,1,1,2,[[449,1,1,1,2]]],[19,2,2,2,4,[[641,2,2,2,4]]],[22,1,1,4,5,[[715,1,1,4,5]]]],[10087,13182,16789,16801,18379]]],["few",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13182]]],["hasty",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16801]]],["small",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10087,18379]]],["soon",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16789]]]]},{"k":"H7117","v":[["+",[5,5,[[15,1,1,0,1,[[419,1,1,0,1]]],[26,4,4,1,5,[[850,4,4,1,5]]]],[12490,21739,21742,21752,21755]]]]},{"k":"H7118","v":[["*",[3,3,[[26,3,3,0,3,[[851,1,1,0,1],[853,2,2,1,3]]]],[21800,21866,21871]]],["+",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21800]]],["end",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21866,21871]]]]},{"k":"H7119","v":[["cold",[2,2,[[19,1,1,0,1,[[652,1,1,0,1]]],[23,1,1,1,2,[[762,1,1,1,2]]]],[17138,19398]]]]},{"k":"H7120","v":[["cold",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[205]]]]},{"k":"H7121","v":[["*",[737,691,[[0,111,102,0,102,[[0,5,3,0,3],[1,4,3,3,6],[2,2,2,6,8],[3,4,3,8,11],[4,3,3,11,14],[10,1,1,14,15],[11,2,2,15,17],[12,1,1,17,18],[15,4,4,18,22],[16,3,3,22,25],[18,4,4,25,29],[19,2,2,29,31],[20,5,5,31,36],[21,3,3,36,39],[23,2,2,39,41],[24,3,3,41,44],[25,8,7,44,51],[26,3,3,51,54],[27,2,2,54,56],[28,4,4,56,60],[29,8,8,60,68],[30,5,4,68,72],[31,2,2,72,74],[32,2,2,74,76],[34,7,5,76,81],[37,5,5,81,86],[38,4,3,86,89],[40,6,6,89,95],[44,1,1,95,96],[45,1,1,96,97],[46,1,1,97,98],[47,2,2,98,100],[48,1,1,100,101],[49,1,1,101,102]]],[1,34,34,102,136,[[50,1,1,102,103],[51,5,5,103,108],[52,1,1,108,109],[56,1,1,109,110],[57,2,2,110,112],[58,1,1,112,113],[59,2,2,113,115],[61,2,2,115,117],[64,1,1,117,118],[65,1,1,118,119],[66,2,2,119,121],[68,3,3,121,124],[73,2,2,124,126],[80,1,1,126,127],[81,1,1,127,128],[82,2,2,128,130],[83,4,4,130,134],[84,1,1,134,135],[85,1,1,135,136]]],[2,9,9,136,145,[[90,1,1,136,137],[98,1,1,137,138],[99,1,1,138,139],[102,1,1,139,140],[112,4,4,140,144],[114,1,1,144,145]]],[3,16,16,145,161,[[117,1,1,145,146],[127,2,2,146,148],[128,1,1,148,149],[129,2,2,149,151],[132,1,1,151,152],[137,1,1,152,153],[138,3,3,153,156],[140,1,1,156,157],[141,1,1,157,158],[148,3,3,158,161]]],[4,22,21,161,182,[[154,2,2,161,163],[155,4,3,163,166],[156,1,1,166,167],[157,1,1,167,168],[167,2,2,168,170],[169,1,1,170,171],[172,1,1,171,172],[176,1,1,172,173],[177,2,2,173,175],[180,1,1,175,176],[181,1,1,176,177],[183,3,3,177,180],[184,1,1,180,181],[185,1,1,181,182]]],[5,15,15,182,197,[[190,1,1,182,183],[191,1,1,183,184],[192,1,1,184,185],[193,1,1,185,186],[194,2,2,186,188],[195,1,1,188,189],[196,1,1,189,190],[205,1,1,190,191],[207,1,1,191,192],[208,2,2,192,194],[209,1,1,194,195],[210,2,2,195,197]]],[6,27,26,197,223,[[211,2,2,197,199],[212,1,1,199,200],[214,1,1,200,201],[216,2,2,201,203],[217,2,2,203,205],[218,1,1,205,206],[219,2,2,206,208],[220,1,1,208,209],[222,1,1,209,210],[223,1,1,210,211],[224,1,1,211,212],[225,3,3,212,215],[226,5,4,215,219],[228,3,3,219,222],[231,1,1,222,223]]],[7,7,5,223,228,[[232,3,2,223,225],[235,4,3,225,228]]],[8,37,31,228,259,[[236,1,1,228,229],[238,12,7,229,236],[239,1,1,236,237],[241,1,1,237,238],[242,1,1,238,239],[244,5,5,239,244],[247,2,2,244,246],[251,3,3,246,249],[252,1,1,249,250],[254,1,1,250,251],[255,2,2,251,253],[257,1,1,253,254],[258,1,1,254,255],[259,1,1,255,256],[261,2,1,256,257],[263,1,1,257,258],[264,1,1,258,259]]],[9,30,28,259,287,[[267,2,2,259,261],[268,2,2,261,263],[271,2,2,263,265],[272,2,2,265,267],[275,2,2,267,269],[277,1,1,269,270],[278,3,3,270,273],[279,2,2,273,275],[280,1,1,275,276],[281,2,2,276,278],[283,1,1,278,279],[284,5,4,279,283],[286,1,1,283,284],[287,1,1,284,285],[288,3,2,285,287]]],[10,43,39,287,326,[[291,10,9,287,296],[292,2,2,296,298],[297,2,1,298,299],[298,3,2,299,301],[299,1,1,301,302],[302,2,2,302,304],[303,4,4,304,308],[306,1,1,308,309],[307,4,4,309,313],[308,7,6,313,319],[310,2,2,319,321],[311,3,3,321,324],[312,2,2,324,326]]],[11,34,29,326,355,[[315,2,2,326,328],[316,8,4,328,332],[317,2,2,332,334],[318,1,1,334,335],[319,2,2,335,337],[320,1,1,337,338],[321,1,1,338,339],[322,2,2,339,341],[323,1,1,341,342],[324,1,1,342,343],[326,1,1,343,344],[330,3,3,344,347],[331,1,1,347,348],[332,1,1,348,349],[334,3,3,349,352],[335,4,3,352,355]]],[12,14,14,355,369,[[341,2,2,355,357],[343,1,1,357,358],[344,2,2,358,360],[348,1,1,360,361],[350,2,2,361,363],[351,1,1,363,364],[352,1,1,364,365],[353,1,1,365,366],[358,1,1,366,367],[359,1,1,367,368],[360,1,1,368,369]]],[13,15,14,369,383,[[369,1,1,369,370],[372,2,1,370,371],[373,1,1,371,372],[376,1,1,372,373],[380,1,1,373,374],[384,2,2,374,376],[386,2,2,376,378],[390,1,1,378,379],[398,1,1,379,380],[400,3,3,380,383]]],[14,2,2,383,385,[[404,1,1,383,384],[410,1,1,384,385]]],[15,8,8,385,393,[[417,1,1,385,386],[418,1,1,386,387],[419,1,1,387,388],[420,3,3,388,391],[421,1,1,391,392],[425,1,1,392,393]]],[16,11,10,393,403,[[427,1,1,393,394],[428,1,1,394,395],[429,3,2,395,397],[430,1,1,397,398],[431,3,3,398,401],[433,1,1,401,402],[434,1,1,402,403]]],[17,10,10,403,413,[[436,1,1,403,404],[440,1,1,404,405],[444,1,1,405,406],[447,1,1,406,407],[448,1,1,407,408],[449,1,1,408,409],[452,1,1,409,410],[454,1,1,410,411],[462,1,1,411,412],[477,1,1,412,413]]],[18,56,53,413,466,[[480,1,1,413,414],[481,2,2,414,416],[491,1,1,416,417],[494,1,1,417,418],[495,2,2,418,420],[497,1,1,420,421],[499,1,1,421,422],[504,1,1,422,423],[505,1,1,423,424],[507,1,1,424,425],[508,1,1,425,426],[511,1,1,426,427],[519,1,1,427,428],[526,1,1,428,429],[527,3,3,429,432],[530,1,1,432,433],[532,1,1,433,434],[533,1,1,434,435],[534,1,1,435,436],[538,1,1,436,437],[543,1,1,437,438],[546,1,1,438,439],[556,1,1,439,440],[557,1,1,440,441],[558,1,1,441,442],[563,3,3,442,445],[565,1,1,445,446],[566,1,1,446,447],[568,1,1,447,448],[576,2,1,448,449],[579,1,1,449,450],[582,2,2,450,452],[593,4,4,452,456],[595,1,1,456,457],[596,2,2,457,459],[597,1,1,459,460],[607,1,1,460,461],[615,1,1,461,462],[618,2,1,462,463],[622,2,1,463,464],[624,2,2,464,466]]],[19,17,17,466,483,[[628,3,3,466,469],[629,1,1,469,470],[634,1,1,470,471],[635,2,2,471,473],[636,3,3,473,476],[639,1,1,476,477],[643,1,1,477,478],[645,1,1,478,479],[647,1,1,479,480],[648,1,1,480,481],[651,1,1,481,482],[654,1,1,482,483]]],[20,1,1,483,484,[[664,1,1,483,484]]],[21,1,1,484,485,[[675,1,1,484,485]]],[22,85,83,485,568,[[679,2,2,485,487],[682,1,1,487,488],[684,2,2,488,490],[685,2,2,490,492],[686,2,2,492,494],[687,1,1,494,495],[690,1,1,495,496],[691,1,1,496,497],[692,1,1,497,498],[699,2,2,498,500],[700,2,2,500,502],[707,2,2,502,504],[708,1,1,504,505],[709,1,1,505,506],[710,1,1,506,507],[712,3,3,507,510],[713,1,1,510,511],[714,1,1,511,512],[715,1,1,512,513],[718,5,4,513,517],[719,4,4,517,521],[720,1,1,521,522],[721,3,3,522,525],[722,2,2,525,527],[723,2,2,527,529],[724,1,1,529,530],[725,2,2,530,532],[726,6,6,532,538],[727,1,1,538,539],[728,1,1,539,540],[729,1,1,540,541],[732,2,2,541,543],[733,2,2,543,545],[734,1,1,545,546],[736,5,5,546,551],[737,1,1,551,552],[738,2,2,552,554],[739,4,4,554,558],[740,4,3,558,561],[741,1,1,561,562],[742,1,1,562,563],[743,4,4,563,567],[744,1,1,567,568]]],[23,63,58,568,626,[[745,1,1,568,569],[746,1,1,569,570],[747,4,4,570,574],[748,2,2,574,576],[750,1,1,576,577],[751,7,7,577,584],[753,1,1,584,585],[754,1,1,585,586],[755,3,3,586,589],[756,1,1,589,590],[758,1,1,590,591],[759,1,1,591,592],[763,2,2,592,594],[764,2,2,594,596],[767,1,1,596,597],[769,2,1,597,598],[773,2,2,598,600],[774,1,1,600,601],[775,1,1,601,602],[776,1,1,602,603],[777,2,2,603,605],[778,5,3,605,608],[779,1,1,608,609],[780,13,11,609,620],[786,1,1,620,621],[788,1,1,621,622],[790,1,1,622,623],[793,1,1,623,624],[795,2,2,624,626]]],[24,7,7,626,633,[[797,3,3,626,629],[798,1,1,629,630],[799,2,2,630,632],[800,1,1,632,633]]],[25,9,9,633,642,[[809,1,1,633,634],[810,2,2,634,636],[811,1,1,636,637],[821,1,1,637,638],[824,1,1,638,639],[837,1,1,639,640],[839,1,1,640,641],[840,1,1,641,642]]],[26,5,5,642,647,[[851,1,1,642,643],[857,1,1,643,644],[858,2,2,644,646],[859,1,1,646,647]]],[27,10,9,647,656,[[862,3,3,647,650],[863,2,1,650,651],[868,2,2,651,653],[872,3,3,653,656]]],[28,6,5,656,661,[[876,2,2,656,658],[877,3,2,658,660],[878,1,1,660,661]]],[29,6,6,661,667,[[882,1,1,661,662],[883,2,2,662,664],[885,1,1,664,665],[887,2,2,665,667]]],[31,8,8,667,675,[[889,3,3,667,670],[890,1,1,670,671],[891,4,4,671,675]]],[32,2,2,675,677,[[895,1,1,675,676],[898,1,1,676,677]]],[34,1,1,677,678,[[904,1,1,677,678]]],[35,2,2,678,680,[[906,1,1,678,679],[908,1,1,679,680]]],[36,1,1,680,681,[[909,1,1,680,681]]],[37,11,9,681,690,[[911,3,3,681,684],[913,1,1,684,685],[917,3,2,685,687],[918,1,1,687,688],[921,2,1,688,689],[923,1,1,689,690]]],[38,1,1,690,691,[[925,1,1,690,691]]]],[4,7,9,49,50,53,64,75,96,104,105,107,108,134,275,306,316,322,392,394,395,396,402,412,416,462,479,494,495,503,504,516,525,530,544,546,558,561,562,648,649,683,684,688,701,710,712,713,714,717,725,728,763,769,774,792,827,828,829,830,836,838,841,843,848,850,851,854,877,920,921,927,930,958,977,980,1018,1019,1021,1026,1029,1122,1123,1124,1148,1149,1163,1164,1167,1203,1209,1238,1240,1246,1247,1359,1419,1449,1457,1467,1474,1517,1550,1561,1562,1564,1574,1576,1583,1696,1718,1735,1769,1793,1801,1837,1847,1943,1978,1990,1998,2029,2033,2046,2184,2193,2422,2443,2480,2492,2501,2502,2511,2527,2561,2568,2746,2954,2981,3097,3404,3406,3423,3439,3479,3620,4027,4058,4064,4091,4099,4206,4343,4380,4395,4412,4456,4473,4756,4759,4760,4949,4958,4984,4988,4989,5011,5054,5321,5328,5383,5437,5540,5555,5557,5621,5681,5735,5739,5742,5761,5829,5914,5943,5955,6002,6036,6037,6059,6088,6368,6390,6427,6460,6462,6477,6485,6526,6535,6550,6605,6678,6686,6697,6714,6720,6761,6808,6815,6870,6908,6924,6946,6947,6948,6967,6968,6974,6977,7005,7016,7022,7115,7147,7148,7201,7204,7207,7232,7280,7281,7282,7284,7285,7286,7292,7318,7333,7364,7400,7404,7413,7415,7417,7477,7478,7598,7600,7603,7626,7713,7767,7768,7798,7838,7847,7919,7957,7973,8029,8037,8065,8075,8141,8152,8159,8165,8229,8236,8272,8310,8311,8314,8334,8340,8389,8391,8400,8454,8496,8503,8504,8506,8570,8582,8606,8609,8726,8727,8736,8742,8743,8745,8749,8758,8766,8806,8812,8955,9028,9037,9064,9154,9171,9186,9188,9205,9216,9307,9327,9328,9337,9338,9344,9365,9366,9367,9368,9369,9415,9435,9460,9463,9469,9489,9493,9586,9589,9615,9618,9625,9639,9654,9658,9685,9717,9718,9728,9757,9812,9813,9843,9857,9903,10028,10042,10052,10075,10109,10153,10155,10161,10167,10181,10182,10394,10395,10519,10551,10558,10680,10766,10771,10785,10802,10828,10960,10970,10997,11246,11315,11338,11398,11486,11550,11554,11590,11613,11683,11893,11951,11957,11963,12088,12222,12394,12408,12483,12496,12501,12511,12514,12672,12738,12759,12767,12773,12791,12794,12802,12804,12826,12860,12873,12952,13067,13132,13175,13196,13274,13313,13491,13936,13961,13966,13968,14084,14109,14121,14124,14191,14206,14292,14300,14327,14348,14394,14562,14659,14669,14672,14683,14723,14748,14764,14770,14821,14890,14938,15191,15216,15224,15287,15289,15291,15317,15352,15410,15505,15523,15607,15622,15850,15852,15861,15865,15874,16043,16044,16075,16141,16234,16277,16338,16355,16360,16421,16424,16428,16436,16579,16603,16606,16641,16653,16656,16742,16861,16907,16960,16997,17087,17185,17427,17604,17667,17680,17734,17772,17773,17785,17796,17810,17811,17835,17904,17909,17948,18043,18046,18064,18072,18204,18205,18224,18254,18264,18315,18317,18319,18328,18343,18366,18422,18423,18426,18446,18453,18455,18460,18476,18486,18506,18512,18527,18538,18540,18564,18565,18597,18600,18604,18615,18616,18622,18626,18627,18629,18637,18664,18675,18728,18729,18745,18746,18760,18787,18791,18795,18798,18799,18804,18835,18839,18844,18845,18846,18849,18856,18858,18866,18885,18892,18898,18909,18912,18921,18926,18961,18967,19006,19014,19019,19021,19032,19047,19119,19121,19129,19130,19132,19133,19146,19149,19192,19226,19232,19240,19242,19255,19302,19331,19409,19413,19425,19430,19490,19563,19647,19664,19684,19697,19765,19778,19791,19809,19816,19818,19840,19846,19848,19850,19851,19852,19855,19856,19857,19860,19863,19865,19983,20036,20062,20156,20273,20275,20325,20329,20331,20354,20409,20411,20435,20622,20623,20625,20646,20924,21030,21388,21446,21459,21760,21977,22006,22007,22016,22098,22100,22103,22121,22185,22189,22241,22242,22247,22305,22310,22326,22343,22352,22415,22431,22439,22468,22501,22507,22533,22537,22545,22550,22560,22562,22563,22566,22613,22657,22750,22794,22829,22851,22882,22892,22895,22922,22969,22975,22979,23035,23068,23093]]],["+",[77,75,[[0,24,24,0,24,[[3,1,1,0,1],[4,3,3,1,4],[16,2,2,4,6],[20,1,1,6,7],[26,2,2,7,9],[27,2,2,9,11],[29,5,5,11,16],[34,2,2,16,18],[37,3,3,18,21],[40,3,3,21,24]]],[1,3,3,24,27,[[51,1,1,24,25],[65,1,1,25,26],[85,1,1,26,27]]],[2,1,1,27,28,[[99,1,1,27,28]]],[3,2,2,28,30,[[127,1,1,28,29],[148,1,1,29,30]]],[4,3,3,30,33,[[157,1,1,30,31],[183,2,2,31,33]]],[5,3,3,33,36,[[190,1,1,33,34],[192,1,1,34,35],[194,1,1,35,36]]],[6,1,1,36,37,[[223,1,1,36,37]]],[7,1,1,37,38,[[235,1,1,37,38]]],[8,9,9,38,47,[[236,1,1,38,39],[238,3,3,39,42],[242,1,1,42,43],[244,1,1,43,44],[251,1,1,44,45],[257,1,1,45,46],[264,1,1,46,47]]],[9,3,3,47,50,[[278,2,2,47,49],[279,1,1,49,50]]],[10,6,5,50,55,[[291,1,1,50,51],[297,2,1,51,52],[306,1,1,52,53],[308,1,1,53,54],[312,1,1,54,55]]],[11,7,6,55,61,[[316,2,1,55,56],[317,1,1,56,57],[318,1,1,57,58],[326,1,1,58,59],[335,2,2,59,61]]],[12,1,1,61,62,[[344,1,1,61,62]]],[13,1,1,62,63,[[373,1,1,62,63]]],[15,1,1,63,64,[[417,1,1,63,64]]],[18,1,1,64,65,[[526,1,1,64,65]]],[20,1,1,65,66,[[664,1,1,65,66]]],[23,8,8,66,74,[[747,1,1,66,67],[755,1,1,67,68],[773,1,1,68,69],[780,2,2,69,71],[786,1,1,71,72],[795,2,2,72,74]]],[29,1,1,74,75,[[887,1,1,74,75]]]],[105,107,108,134,412,416,516,728,763,774,792,841,843,850,851,854,1021,1026,1122,1123,1124,1203,1209,1246,1576,1978,2568,2981,4058,4756,5054,5739,5742,5914,5955,6036,6908,7201,7232,7280,7285,7292,7364,7417,7603,7798,7973,8310,8311,8334,8726,8955,9307,9344,9489,9639,9654,9685,9903,10181,10182,10558,11338,12394,14659,17427,19014,19232,19664,19846,19860,19983,20273,20275,22507]]],["Call",[13,13,[[6,1,1,0,1,[[226,1,1,0,1]]],[7,1,1,1,2,[[232,1,1,1,2]]],[9,1,1,2,3,[[283,1,1,2,3]]],[10,2,2,3,5,[[291,2,2,3,5]]],[11,2,2,5,7,[[316,2,2,5,7]]],[17,1,1,7,8,[[440,1,1,7,8]]],[22,1,1,8,9,[[686,1,1,8,9]]],[23,1,1,9,10,[[777,1,1,9,10]]],[27,3,3,10,13,[[862,3,3,10,13]]]],[6974,7147,8454,8745,8749,9615,9618,12952,17810,19778,22098,22100,22103]]],["Calling",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18597]]],["Cry",[5,5,[[10,1,1,0,1,[[308,1,1,0,1]]],[22,2,2,1,3,[[718,1,1,1,2],[736,1,1,2,3]]],[37,2,2,3,5,[[911,2,2,3,5]]]],[9368,18426,18787,22892,22895]]],["Proclaim",[2,2,[[10,1,1,0,1,[[311,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]]],[9460,22352]]],["Read",[2,2,[[22,2,2,0,2,[[707,2,2,0,2]]]],[18204,18205]]],["against",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9435]]],["bewrayeth",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17185]]],["bidden",[2,2,[[8,2,2,0,2,[[244,2,2,0,2]]]],[7404,7413]]],["call",[98,93,[[0,5,5,0,5,[[1,1,1,0,1],[3,1,1,1,2],[15,1,1,2,3],[23,1,1,3,4],[45,1,1,4,5]]],[1,3,3,5,8,[[51,2,2,5,7],[83,1,1,7,8]]],[3,4,4,8,12,[[132,1,1,8,9],[138,3,3,9,12]]],[4,7,6,12,18,[[154,2,2,12,14],[155,2,1,14,15],[156,1,1,15,16],[177,1,1,16,17],[185,1,1,17,18]]],[6,2,2,18,20,[[222,1,1,18,19],[231,1,1,19,20]]],[7,2,2,20,22,[[232,2,2,20,22]]],[8,4,4,22,26,[[238,2,2,22,24],[247,1,1,24,25],[251,1,1,25,26]]],[10,5,4,26,30,[[298,1,1,26,27],[308,3,2,27,29],[312,1,1,29,30]]],[11,2,2,30,32,[[317,1,1,30,31],[322,1,1,31,32]]],[12,1,1,32,33,[[353,1,1,32,33]]],[13,1,1,33,34,[[384,1,1,33,34]]],[17,2,2,34,36,[[448,1,1,34,35],[449,1,1,35,36]]],[18,14,13,36,49,[[481,2,2,36,38],[491,1,1,38,39],[495,1,1,39,40],[497,1,1,40,41],[527,1,1,41,42],[532,1,1,42,43],[557,1,1,43,44],[579,1,1,44,45],[582,1,1,45,46],[593,2,2,46,48],[622,2,1,48,49]]],[19,3,3,49,52,[[634,1,1,49,50],[635,1,1,50,51],[636,1,1,51,52]]],[22,20,20,52,72,[[685,1,1,52,53],[690,1,1,53,54],[700,2,2,54,56],[712,1,1,56,57],[719,1,1,57,58],[722,2,2,58,60],[723,1,1,60,61],[726,1,1,61,62],[733,2,2,62,64],[736,3,3,64,67],[738,2,2,67,69],[740,1,1,69,70],[743,2,2,70,72]]],[23,7,7,72,79,[[745,1,1,72,73],[747,2,2,73,75],[750,1,1,75,76],[751,1,1,76,77],[753,1,1,77,78],[754,1,1,78,79]]],[25,2,2,79,81,[[837,1,1,79,80],[840,1,1,80,81]]],[26,1,1,81,82,[[851,1,1,81,82]]],[27,3,2,82,84,[[863,2,1,82,83],[868,1,1,83,84]]],[28,4,3,84,87,[[876,1,1,84,85],[877,3,2,85,87]]],[29,1,1,87,88,[[883,1,1,87,88]]],[31,1,1,88,89,[[889,1,1,88,89]]],[35,1,1,89,90,[[908,1,1,89,90]]],[37,2,2,90,92,[[913,1,1,90,91],[923,1,1,91,92]]],[38,1,1,92,93,[[925,1,1,92,93]]]],[49,105,392,648,1419,1561,1574,2511,4206,4380,4395,4412,4949,4958,4984,5011,5555,5829,6870,7115,7147,7148,7282,7284,7477,7598,9037,9365,9366,9493,9658,9812,10828,11554,13175,13196,13966,13968,14084,14121,14191,14672,14748,15216,15523,15607,15861,15865,16338,16579,16606,16653,17796,17904,18064,18072,18315,18476,18538,18540,18564,18627,18745,18746,18791,18795,18799,18835,18839,18866,18912,18921,18961,19019,19021,19119,19146,19192,19226,21388,21459,21760,22121,22189,22305,22326,22343,22439,22537,22829,22922,23068,23093]]],["called",[312,301,[[0,75,70,0,70,[[0,5,3,0,3],[1,2,2,3,5],[2,2,2,5,7],[3,2,2,7,9],[10,1,1,9,10],[11,2,2,10,12],[12,1,1,12,13],[15,3,3,13,16],[16,1,1,16,17],[18,4,4,17,21],[19,2,2,21,23],[20,4,4,23,27],[21,3,3,27,30],[23,1,1,30,31],[24,3,3,31,34],[25,8,7,34,41],[26,1,1,41,42],[28,4,4,42,46],[29,3,3,46,49],[30,5,4,49,53],[31,2,2,53,55],[32,2,2,55,57],[34,5,4,57,61],[37,2,2,61,63],[38,1,1,63,64],[40,2,2,64,66],[46,1,1,66,67],[47,1,1,67,68],[48,1,1,68,69],[49,1,1,69,70]]],[1,22,22,70,92,[[51,2,2,70,72],[52,1,1,72,73],[56,1,1,73,74],[57,2,2,74,76],[58,1,1,76,77],[59,2,2,77,79],[61,2,2,79,81],[64,1,1,81,82],[66,2,2,82,84],[68,3,3,84,87],[73,1,1,87,88],[80,1,1,88,89],[82,1,1,89,90],[83,1,1,90,91],[84,1,1,91,92]]],[2,2,2,92,94,[[90,1,1,92,93],[98,1,1,93,94]]],[3,9,9,94,103,[[127,1,1,94,95],[128,1,1,95,96],[129,2,2,96,98],[137,1,1,98,99],[140,1,1,99,100],[141,1,1,100,101],[148,2,2,101,103]]],[4,7,7,103,110,[[155,2,2,103,105],[167,1,1,105,106],[177,1,1,106,107],[180,1,1,107,108],[181,1,1,108,109],[183,1,1,109,110]]],[5,10,10,110,120,[[191,1,1,110,111],[193,1,1,111,112],[195,1,1,112,113],[196,1,1,113,114],[205,1,1,114,115],[208,2,2,115,117],[209,1,1,117,118],[210,2,2,118,120]]],[6,18,18,120,138,[[211,2,2,120,122],[212,1,1,122,123],[214,1,1,123,124],[216,2,2,124,126],[219,1,1,126,127],[220,1,1,127,128],[224,1,1,128,129],[225,3,3,129,132],[226,4,4,132,136],[228,2,2,136,138]]],[7,1,1,138,139,[[235,1,1,138,139]]],[8,13,11,139,150,[[238,6,4,139,143],[241,1,1,143,144],[244,1,1,144,145],[247,1,1,145,146],[251,1,1,146,147],[254,1,1,147,148],[258,1,1,148,149],[263,1,1,149,150]]],[9,19,18,150,168,[[267,2,2,150,152],[268,2,2,152,154],[271,2,2,154,156],[272,1,1,156,157],[275,2,2,157,159],[277,1,1,159,160],[278,1,1,160,161],[280,1,1,161,162],[281,2,2,162,164],[284,4,3,164,167],[287,1,1,167,168]]],[10,15,14,168,182,[[291,5,4,168,172],[292,2,2,172,174],[298,1,1,174,175],[299,1,1,175,176],[302,2,2,176,178],[307,2,2,178,180],[308,1,1,180,181],[310,1,1,181,182]]],[11,13,13,182,195,[[315,2,2,182,184],[316,4,4,184,188],[319,2,2,188,190],[320,1,1,190,191],[321,1,1,191,192],[324,1,1,192,193],[330,2,2,193,195]]],[12,11,11,195,206,[[341,2,2,195,197],[343,1,1,197,198],[344,1,1,198,199],[348,1,1,199,200],[350,2,2,200,202],[351,1,1,202,203],[352,1,1,203,204],[358,1,1,204,205],[359,1,1,205,206]]],[13,6,6,206,212,[[369,1,1,206,207],[372,1,1,207,208],[376,1,1,208,209],[384,1,1,209,210],[386,1,1,210,211],[390,1,1,211,212]]],[14,1,1,212,213,[[404,1,1,212,213]]],[15,1,1,213,214,[[419,1,1,213,214]]],[16,7,6,214,220,[[427,1,1,214,215],[428,1,1,215,216],[429,3,2,216,218],[433,1,1,218,219],[434,1,1,219,220]]],[17,4,4,220,224,[[436,1,1,220,221],[444,1,1,221,222],[454,1,1,222,223],[477,1,1,223,224]]],[18,5,5,224,229,[[527,1,1,224,225],[556,1,1,225,226],[565,1,1,226,227],[576,1,1,227,228],[593,1,1,228,229]]],[19,3,3,229,232,[[628,1,1,229,230],[643,1,1,230,231],[651,1,1,231,232]]],[21,1,1,232,233,[[675,1,1,232,233]]],[22,33,33,233,266,[[679,1,1,233,234],[682,1,1,234,235],[687,1,1,235,236],[691,1,1,236,237],[710,1,1,237,238],[713,1,1,238,239],[719,2,2,239,241],[720,1,1,241,242],[721,2,2,242,244],[723,1,1,244,245],[725,2,2,245,247],[726,4,4,247,251],[727,1,1,251,252],[728,1,1,252,253],[729,1,1,253,254],[732,2,2,254,256],[734,1,1,256,257],[736,1,1,257,258],[739,1,1,258,259],[740,3,3,259,262],[741,1,1,262,263],[743,2,2,263,265],[744,1,1,265,266]]],[23,18,18,266,284,[[751,5,5,266,271],[755,1,1,271,272],[756,1,1,272,273],[758,1,1,273,274],[759,1,1,274,275],[763,1,1,275,276],[764,1,1,276,277],[767,1,1,277,278],[769,1,1,278,279],[774,1,1,279,280],[776,1,1,280,281],[777,1,1,281,282],[778,1,1,282,283],[779,1,1,283,284]]],[24,4,4,284,288,[[797,3,3,284,287],[798,1,1,287,288]]],[25,2,2,288,290,[[810,1,1,288,289],[821,1,1,289,290]]],[26,4,4,290,294,[[857,1,1,290,291],[858,2,2,291,293],[859,1,1,293,294]]],[27,3,3,294,297,[[872,3,3,294,297]]],[29,1,1,297,298,[[885,1,1,297,298]]],[36,1,1,298,299,[[909,1,1,298,299]]],[37,3,2,299,301,[[918,1,1,299,300],[921,2,1,300,301]]]],[4,7,9,49,53,64,75,96,104,275,306,316,322,394,395,396,402,462,479,494,495,503,504,525,530,544,546,558,561,562,649,683,684,688,701,710,712,713,714,717,725,769,827,828,829,830,836,838,848,877,920,921,927,930,958,977,980,1018,1019,1021,1029,1148,1149,1163,1240,1247,1449,1457,1474,1517,1562,1564,1583,1696,1718,1735,1769,1793,1801,1837,1847,1943,1990,1998,2029,2033,2046,2193,2422,2480,2527,2561,2746,2954,4027,4064,4091,4099,4343,4456,4473,4759,4760,4988,4989,5321,5557,5621,5681,5735,5943,6002,6059,6088,6368,6427,6460,6462,6477,6485,6526,6535,6550,6605,6678,6686,6808,6815,6924,6946,6947,6948,6967,6968,6974,6977,7005,7022,7207,7281,7282,7284,7286,7333,7400,7478,7600,7713,7838,7957,8029,8037,8065,8075,8141,8152,8159,8229,8236,8272,8314,8389,8391,8400,8496,8504,8506,8582,8727,8736,8742,8743,8806,8812,9028,9064,9154,9171,9327,9328,9367,9415,9586,9589,9615,9618,9625,9639,9717,9718,9728,9757,9857,10028,10042,10394,10395,10519,10551,10680,10766,10771,10785,10802,10960,10970,11246,11315,11398,11550,11613,11683,12088,12483,12738,12759,12767,12773,12826,12860,12873,13067,13313,13936,14669,15191,15317,15505,15852,16424,16861,17087,17604,17680,17734,17835,17909,18264,18328,18453,18460,18486,18506,18512,18565,18600,18604,18615,18622,18626,18629,18637,18664,18675,18728,18729,18760,18798,18846,18856,18858,18866,18885,18898,18909,18926,19129,19130,19132,19133,19149,19242,19255,19302,19331,19413,19425,19490,19563,19684,19765,19791,19816,19840,20325,20329,20331,20354,20625,20924,21977,22006,22007,22016,22241,22242,22247,22468,22851,22979,23035]]],["calledst",[3,3,[[6,1,1,0,1,[[218,1,1,0,1]]],[8,1,1,1,2,[[238,1,1,1,2]]],[18,1,1,2,3,[[558,1,1,2,3]]]],[6720,7281,15224]]],["calleth",[13,13,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[17,1,1,2,3,[[447,1,1,2,3]]],[18,2,2,3,5,[[519,1,1,3,4],[624,1,1,4,5]]],[19,1,1,5,6,[[645,1,1,5,6]]],[22,4,4,6,10,[[699,1,1,6,7],[718,1,1,7,8],[737,1,1,8,9],[742,1,1,9,10]]],[27,1,1,10,11,[[868,1,1,10,11]]],[29,2,2,11,13,[[883,1,1,11,12],[887,1,1,12,13]]]],[9028,11315,13132,14562,16355,16907,18046,18446,18804,18892,22185,22431,22501]]],["calling",[2,2,[[22,2,2,0,2,[[679,1,1,0,1],[719,1,1,1,2]]]],[17667,18455]]],["cried",[54,53,[[0,5,5,0,5,[[38,3,3,0,3],[40,1,1,3,4],[44,1,1,4,5]]],[6,3,3,5,8,[[217,1,1,5,6],[219,1,1,6,7],[228,1,1,7,8]]],[8,5,5,8,13,[[252,1,1,8,9],[255,2,2,9,11],[259,1,1,11,12],[261,1,1,12,13]]],[9,3,3,13,16,[[284,1,1,13,14],[286,1,1,14,15],[288,1,1,15,16]]],[10,7,7,16,23,[[303,4,4,16,20],[307,2,2,20,22],[308,1,1,22,23]]],[11,3,3,23,26,[[323,1,1,23,24],[330,1,1,24,25],[332,1,1,25,26]]],[13,2,2,26,28,[[380,1,1,26,27],[398,1,1,27,28]]],[18,9,9,28,37,[[480,1,1,28,29],[507,1,1,29,30],[511,1,1,30,31],[543,1,1,31,32],[596,2,2,32,34],[597,1,1,34,35],[607,1,1,35,36],[615,1,1,36,37]]],[22,5,5,37,42,[[684,2,2,37,39],[699,1,1,39,40],[708,1,1,40,41],[714,1,1,41,42]]],[23,2,2,42,44,[[748,1,1,42,43],[764,1,1,43,44]]],[24,1,1,44,45,[[800,1,1,44,45]]],[25,2,2,45,47,[[810,1,1,45,46],[811,1,1,46,47]]],[31,3,3,47,50,[[889,1,1,47,48],[890,1,1,48,49],[891,1,1,49,50]]],[37,4,3,50,53,[[911,1,1,50,51],[917,3,2,51,53]]]],[1163,1164,1167,1238,1359,6714,6761,7016,7626,7767,7768,7847,7919,8503,8570,8609,9186,9188,9205,9216,9337,9338,9369,9843,10052,10109,11486,11893,13961,14327,14394,14890,16043,16044,16075,16141,16234,17772,17773,18043,18224,18343,19047,19430,20435,20623,20646,22545,22550,22562,22882,22969,22975]]],["criest",[2,2,[[8,1,1,0,1,[[261,1,1,0,1]]],[19,1,1,1,2,[[629,1,1,1,2]]]],[7919,16436]]],["crieth",[4,4,[[19,2,2,0,2,[[628,1,1,0,1],[636,1,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]],[32,1,1,3,4,[[898,1,1,3,4]]]],[16421,16641,18423,22657]]],["cry",[32,31,[[2,1,1,0,1,[[102,1,1,0,1]]],[4,2,2,1,3,[[167,1,1,1,2],[176,1,1,2,3]]],[18,11,10,3,13,[[499,1,1,3,4],[504,1,1,4,5],[505,1,1,5,6],[533,1,1,6,7],[534,1,1,7,8],[538,1,1,8,9],[563,1,1,9,10],[566,1,1,10,11],[618,2,1,11,12],[624,1,1,12,13]]],[19,2,2,13,15,[[635,1,1,13,14],[648,1,1,14,15]]],[22,4,4,15,19,[[686,1,1,15,16],[712,1,1,16,17],[718,2,2,17,19]]],[23,7,7,19,26,[[746,1,1,19,20],[747,1,1,20,21],[748,1,1,21,22],[755,1,1,22,23],[775,1,1,23,24],[790,1,1,24,25],[793,1,1,25,26]]],[25,1,1,26,27,[[809,1,1,26,27]]],[28,1,1,27,28,[[876,1,1,27,28]]],[31,2,2,28,30,[[889,1,1,28,29],[891,1,1,29,30]]],[32,1,1,30,31,[[895,1,1,30,31]]]],[3097,5328,5540,14206,14292,14300,14764,14770,14821,15287,15352,16277,16360,16603,16997,17811,18317,18422,18426,18967,19006,19032,19240,19697,20062,20156,20622,22310,22533,22566,22613]]],["crying",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14938]]],["famous",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7204]]],["for",[4,4,[[1,1,1,0,1,[[50,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]],[23,1,1,2,3,[[769,1,1,2,3]]],[25,1,1,3,4,[[839,1,1,3,4]]]],[1550,15622,19563,21446]]],["forth",[1,1,[[22,1,1,0,1,[[709,1,1,0,1]]]],[18254]]],["gave",[2,2,[[0,1,1,0,1,[[1,1,1,0,1]]],[7,1,1,1,2,[[235,1,1,1,2]]]],[50,7207]]],["guests",[4,4,[[10,2,2,0,2,[[291,2,2,0,2]]],[19,1,1,2,3,[[636,1,1,2,3]]],[35,1,1,3,4,[[906,1,1,3,4]]]],[8758,8766,16656,22794]]],["invited",[3,3,[[8,1,1,0,1,[[244,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[16,1,1,2,3,[[430,1,1,2,3]]]],[7415,8340,12791]]],["meet",[2,2,[[10,1,1,0,1,[[311,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]]],[9469,17785]]],["mentioned",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6390]]],["name",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8165]]],["named",[5,5,[[0,1,1,0,1,[[47,1,1,0,1]]],[8,1,1,1,2,[[239,1,1,1,2]]],[12,1,1,2,3,[[360,1,1,2,3]]],[22,1,1,3,4,[[739,1,1,3,4]]],[23,1,1,4,5,[[788,1,1,4,5]]]],[1467,7318,10997,18849,20036]]],["on",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8606]]],["preach",[2,2,[[15,1,1,0,1,[[418,1,1,0,1]]],[31,1,1,1,2,[[891,1,1,1,2]]]],[12408,22560]]],["proclaim",[17,17,[[1,1,1,0,1,[[82,1,1,0,1]]],[2,5,5,1,6,[[112,4,4,1,5],[114,1,1,5,6]]],[4,1,1,6,7,[[172,1,1,6,7]]],[6,1,1,7,8,[[217,1,1,7,8]]],[16,1,1,8,9,[[431,1,1,8,9]]],[19,1,1,9,10,[[647,1,1,9,10]]],[22,2,2,10,12,[[739,2,2,10,12]]],[23,4,4,12,16,[[751,1,1,12,13],[763,1,1,13,14],[778,2,2,14,16]]],[29,1,1,16,17,[[882,1,1,16,17]]]],[2492,3404,3406,3423,3439,3479,5437,6697,12802,16960,18844,18845,19121,19409,19809,19818,22415]]],["proclaimed",[10,10,[[1,2,2,0,2,[[83,2,2,0,2]]],[10,1,1,2,3,[[311,1,1,2,3]]],[11,2,2,3,5,[[322,1,1,3,4],[335,1,1,4,5]]],[13,1,1,5,6,[[386,1,1,5,6]]],[14,1,1,6,7,[[410,1,1,6,7]]],[16,1,1,7,8,[[431,1,1,7,8]]],[23,1,1,8,9,[[780,1,1,8,9]]],[31,1,1,9,10,[[891,1,1,9,10]]]],[2501,2502,9463,9813,10181,11590,12222,12804,19851,22563]]],["proclaimeth",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16742]]],["proclaiming",[2,2,[[23,2,2,0,2,[[778,2,2,0,2]]]],[19816,19818]]],["proclamation",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2443]]],["publish",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5761]]],["read",[28,26,[[1,1,1,0,1,[[73,1,1,0,1]]],[4,1,1,1,2,[[169,1,1,1,2]]],[5,1,1,2,3,[[194,1,1,2,3]]],[11,5,5,3,8,[[331,1,1,3,4],[334,3,3,4,7],[335,1,1,7,8]]],[13,3,3,8,11,[[400,3,3,8,11]]],[15,5,5,11,16,[[420,3,3,11,14],[421,1,1,14,15],[425,1,1,15,16]]],[16,1,1,16,17,[[431,1,1,16,17]]],[22,2,2,17,19,[[712,1,1,17,18],[715,1,1,18,19]]],[23,9,7,19,26,[[780,9,7,19,26]]]],[2184,5383,6037,10075,10153,10155,10161,10167,11951,11957,11963,12496,12501,12511,12514,12672,12794,18319,18366,19848,19852,19855,19856,19857,19863,19865]]],["readeth",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22750]]],["reading",[1,1,[[23,1,1,0,1,[[780,1,1,0,1]]]],[19850]]],["renowned",[3,3,[[3,1,1,0,1,[[117,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]],[25,1,1,2,3,[[824,1,1,2,3]]]],[3620,17948,21030]]],["said",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13274]]],["themselves",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18616]]],["upon",[18,18,[[9,1,1,0,1,[[288,1,1,0,1]]],[17,1,1,1,2,[[462,1,1,1,2]]],[18,11,11,2,13,[[494,1,1,2,3],[495,1,1,3,4],[508,1,1,4,5],[527,1,1,5,6],[530,1,1,6,7],[563,2,2,7,9],[568,1,1,9,10],[576,1,1,10,11],[593,1,1,11,12],[595,1,1,12,13]]],[19,1,1,13,14,[[628,1,1,13,14]]],[22,1,1,14,15,[[721,1,1,14,15]]],[23,1,1,15,16,[[773,1,1,15,16]]],[24,2,2,16,18,[[799,2,2,16,18]]]],[8609,13491,14109,14124,14348,14683,14723,15289,15291,15410,15505,15850,15874,16428,18527,19647,20409,20411]]]]},{"k":"H7122","v":[["*",[34,33,[[0,3,3,0,3,[[41,2,2,0,2],[48,1,1,2,3]]],[1,2,2,3,5,[[50,1,1,3,4],[54,1,1,4,5]]],[2,1,1,5,6,[[99,1,1,5,6]]],[4,2,2,6,8,[[174,1,1,6,7],[183,1,1,7,8]]],[8,1,1,8,9,[[251,1,1,8,9]]],[9,3,3,9,12,[[267,1,1,9,10],[284,1,1,10,11],[286,1,1,11,12]]],[10,4,3,12,15,[[292,1,1,12,13],[308,3,2,13,15]]],[11,12,12,15,27,[[316,2,2,15,17],[317,2,2,17,19],[320,2,2,19,21],[321,3,3,21,24],[322,1,1,24,25],[328,1,1,25,26],[335,1,1,26,27]]],[17,1,1,27,28,[[439,1,1,27,28]]],[22,2,2,28,30,[[692,1,1,28,29],[729,1,1,29,30]]],[23,3,3,30,33,[[757,1,1,30,31],[776,1,1,31,32],[788,1,1,32,33]]]],[1256,1290,1474,1542,1635,2996,5476,5757,7599,8028,8487,8555,8789,9348,9357,9629,9634,9668,9673,9735,9736,9773,9774,9777,9808,9973,10194,12944,17937,18692,19288,19754,20033]]],["against",[2,2,[[11,2,2,0,2,[[321,1,1,0,1],[335,1,1,1,2]]]],[9777,10194]]],["be",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5476]]],["befall",[4,4,[[0,3,3,0,3,[[41,2,2,0,2],[48,1,1,2,3]]],[4,1,1,3,4,[[183,1,1,3,4]]]],[1256,1290,1474,5757]]],["befallen",[1,1,[[2,1,1,0,1,[[99,1,1,0,1]]]],[2996]]],["chance",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8028]]],["come",[2,2,[[22,1,1,0,1,[[729,1,1,0,1]]],[23,1,1,1,2,[[757,1,1,1,2]]]],[18692,19288]]],["coming",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7599]]],["happened",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8555]]],["meet",[14,13,[[10,3,2,0,2,[[292,1,1,0,1],[308,2,1,1,2]]],[11,10,10,2,12,[[316,2,2,2,4],[317,2,2,4,6],[320,2,2,6,8],[321,2,2,8,10],[322,1,1,10,11],[328,1,1,11,12]]],[22,1,1,12,13,[[692,1,1,12,13]]]],[8789,9357,9629,9634,9668,9673,9735,9736,9773,9774,9808,9973,17937]]],["met",[3,3,[[1,1,1,0,1,[[54,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]]],[1635,8487,9348]]],["out",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1542]]],["unto",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20033]]],["upon",[2,2,[[17,1,1,0,1,[[439,1,1,0,1]]],[23,1,1,1,2,[[776,1,1,1,2]]]],[12944,19754]]]]},{"k":"H7123","v":[["*",[11,10,[[14,2,2,0,2,[[406,2,2,0,2]]],[26,9,8,2,10,[[852,1,1,2,3],[853,1,1,3,4],[854,7,6,4,10]]]],[12128,12133,21811,21851,21881,21882,21886,21889,21890,21891]]],["called",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21886]]],["cried",[3,3,[[26,3,3,0,3,[[852,1,1,0,1],[853,1,1,1,2],[854,1,1,2,3]]]],[21811,21851,21881]]],["read",[7,7,[[14,2,2,0,2,[[406,2,2,0,2]]],[26,5,5,2,7,[[854,5,5,2,7]]]],[12128,12133,21881,21882,21889,21890,21891]]]]},{"k":"H7124","v":[["partridge",[2,2,[[8,1,1,0,1,[[261,1,1,0,1]]],[23,1,1,1,2,[[761,1,1,1,2]]]],[7925,19368]]]]},{"k":"H7125","v":[["*",[99,96,[[0,11,11,0,11,[[13,1,1,0,1],[14,1,1,1,2],[17,1,1,2,3],[18,1,1,3,4],[23,2,2,4,6],[28,1,1,6,7],[29,1,1,7,8],[31,1,1,8,9],[32,1,1,9,10],[45,1,1,10,11]]],[1,7,7,11,18,[[53,2,2,11,13],[54,1,1,13,14],[56,1,1,14,15],[63,1,1,15,16],[67,1,1,16,17],[68,1,1,17,18]]],[3,9,9,18,27,[[136,2,2,18,20],[137,2,2,20,22],[138,2,2,22,24],[139,1,1,24,25],[140,1,1,25,26],[147,1,1,26,27]]],[4,4,4,27,31,[[153,1,1,27,28],[154,1,1,28,29],[155,1,1,29,30],[181,1,1,30,31]]],[5,5,5,31,36,[[194,3,3,31,34],[195,1,1,34,35],[197,1,1,35,36]]],[6,11,11,36,47,[[214,2,2,36,38],[216,1,1,38,39],[217,1,1,39,40],[221,2,2,40,42],[224,1,1,42,43],[225,1,1,43,44],[229,1,1,44,45],[230,2,2,45,47]]],[8,19,17,47,64,[[239,2,2,47,49],[244,1,1,49,50],[245,1,1,50,51],[248,1,1,51,52],[250,1,1,52,53],[252,5,4,53,57],[253,1,1,57,58],[256,1,1,58,59],[258,1,1,59,60],[260,3,3,60,63],[265,2,1,63,64]]],[9,13,13,64,77,[[272,1,1,64,65],[276,4,4,65,69],[281,1,1,69,70],[282,1,1,70,71],[284,1,1,71,72],[285,5,5,72,77]]],[10,1,1,77,78,[[292,1,1,77,78]]],[11,4,4,78,82,[[313,3,3,78,81],[314,1,1,81,82]]],[12,4,4,82,86,[[356,4,4,82,86]]],[13,1,1,86,87,[[401,1,1,86,87]]],[17,1,1,87,88,[[474,1,1,87,88]]],[18,2,2,88,90,[[512,1,1,88,89],[536,1,1,89,90]]],[19,2,2,90,92,[[634,2,2,90,92]]],[23,3,2,92,94,[[785,1,1,92,93],[795,2,1,93,94]]],[29,1,1,94,95,[[882,1,1,94,95]]],[37,1,1,95,96,[[912,1,1,95,96]]]],[353,370,426,458,608,656,808,846,934,964,1415,1615,1628,1652,1700,1916,2006,2043,4329,4331,4363,4373,4409,4411,4419,4447,4677,4936,4970,4976,5686,6007,6016,6024,6048,6127,6617,6621,6689,6718,6860,6863,6914,6943,7027,7079,7085,7298,7299,7405,7428,7495,7572,7620,7639,7666,7673,7682,7773,7838,7881,7893,7895,7999,8177,8245,8249,8250,8257,8421,8427,8484,8526,8527,8531,8535,8536,8778,9536,9539,9540,9566,10912,10917,10918,10924,11986,13855,14413,14794,16585,16590,19963,20243,22422,22902]]],["+",[1,1,[[5,1,1,0,1,[[197,1,1,0,1]]]],[6127]]],["against",[36,36,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[3,5,5,2,7,[[136,2,2,2,4],[137,2,2,4,6],[138,1,1,6,7]]],[4,4,4,7,11,[[153,1,1,7,8],[154,1,1,8,9],[155,1,1,9,10],[181,1,1,10,11]]],[5,3,3,11,14,[[194,3,3,11,14]]],[6,5,5,14,19,[[217,1,1,14,15],[224,1,1,15,16],[225,1,1,16,17],[230,2,2,17,19]]],[8,8,8,19,27,[[239,2,2,19,21],[244,1,1,21,22],[252,3,3,22,25],[258,1,1,25,26],[260,1,1,26,27]]],[9,4,4,27,31,[[276,3,3,27,30],[284,1,1,30,31]]],[12,3,3,31,34,[[356,3,3,31,34]]],[13,1,1,34,35,[[401,1,1,34,35]]],[18,1,1,35,36,[[512,1,1,35,36]]]],[370,1916,4329,4331,4363,4373,4409,4936,4970,4976,5686,6007,6016,6024,6718,6914,6943,7079,7085,7298,7299,7405,7620,7639,7673,7838,7881,8249,8250,8257,8484,10917,10918,10924,11986,14413]]],["come",[1,1,[[1,1,1,0,1,[[56,1,1,0,1]]]],[1700]]],["help",[1,1,[[18,1,1,0,1,[[536,1,1,0,1]]]],[14794]]],["meet",[54,51,[[0,10,10,0,10,[[13,1,1,0,1],[17,1,1,1,2],[18,1,1,2,3],[23,2,2,3,5],[28,1,1,5,6],[29,1,1,6,7],[31,1,1,7,8],[32,1,1,8,9],[45,1,1,9,10]]],[1,4,4,10,14,[[53,2,2,10,12],[67,1,1,12,13],[68,1,1,13,14]]],[3,3,3,14,17,[[138,1,1,14,15],[139,1,1,15,16],[147,1,1,16,17]]],[5,1,1,17,18,[[195,1,1,17,18]]],[6,6,6,18,24,[[214,2,2,18,20],[216,1,1,20,21],[221,2,2,21,23],[229,1,1,23,24]]],[8,9,7,24,31,[[248,1,1,24,25],[250,1,1,25,26],[252,2,1,26,27],[253,1,1,27,28],[260,2,2,28,30],[265,2,1,30,31]]],[9,8,8,31,39,[[272,1,1,31,32],[276,1,1,32,33],[281,1,1,33,34],[285,5,5,34,39]]],[10,1,1,39,40,[[292,1,1,39,40]]],[11,4,4,40,44,[[313,3,3,40,43],[314,1,1,43,44]]],[12,1,1,44,45,[[356,1,1,44,45]]],[17,1,1,45,46,[[474,1,1,45,46]]],[19,1,1,46,47,[[634,1,1,46,47]]],[23,3,2,47,49,[[785,1,1,47,48],[795,2,1,48,49]]],[29,1,1,49,50,[[882,1,1,49,50]]],[37,1,1,50,51,[[912,1,1,50,51]]]],[353,426,458,608,656,808,846,934,964,1415,1615,1628,2006,2043,4411,4419,4677,6048,6617,6621,6689,6860,6863,7027,7495,7572,7666,7682,7893,7895,7999,8177,8245,8421,8526,8527,8531,8535,8536,8778,9536,9539,9540,9566,10912,13855,16590,19963,20243,22422,22902]]],["meeting",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7773]]],["met",[3,3,[[8,1,1,0,1,[[245,1,1,0,1]]],[9,1,1,1,2,[[282,1,1,1,2]]],[19,1,1,2,3,[[634,1,1,2,3]]]],[7428,8427,16585]]],["seek",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4447]]],["way",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1652]]]]},{"k":"H7126","v":[["*",[280,260,[[0,5,5,0,5,[[11,1,1,0,1],[19,1,1,1,2],[26,1,1,2,3],[36,1,1,3,4],[46,1,1,4,5]]],[1,16,16,5,21,[[52,1,1,5,6],[61,1,1,6,7],[63,2,2,7,9],[65,1,1,9,10],[71,1,1,10,11],[77,1,1,11,12],[78,4,4,12,16],[81,1,1,16,17],[85,1,1,17,18],[89,3,3,18,21]]],[2,102,91,21,112,[[90,9,7,21,28],[91,8,7,28,35],[92,9,7,35,42],[93,2,2,42,44],[94,1,1,44,45],[95,3,3,45,48],[96,16,14,48,62],[97,5,5,62,67],[98,8,8,67,75],[99,4,4,75,79],[101,1,1,79,80],[103,1,1,80,81],[105,5,5,81,86],[106,1,1,86,87],[107,3,3,87,90],[109,1,1,90,91],[110,7,5,91,96],[111,8,7,96,103],[112,8,7,103,110],[116,2,2,110,112]]],[3,58,55,112,167,[[119,2,2,112,114],[121,3,3,114,117],[122,2,2,117,119],[123,8,7,119,126],[124,2,2,126,128],[125,3,3,128,131],[131,8,7,131,138],[132,9,8,138,146],[134,5,5,146,151],[141,1,1,151,152],[142,1,1,152,153],[143,2,2,153,155],[144,6,6,155,161],[145,3,3,161,164],[147,2,2,164,166],[152,1,1,166,167]]],[4,13,13,167,180,[[153,2,2,167,169],[154,2,2,169,171],[156,1,1,171,172],[157,2,2,172,174],[167,1,1,174,175],[172,2,2,175,177],[174,1,1,177,178],[177,1,1,178,179],[183,1,1,179,180]]],[5,14,9,180,189,[[189,1,1,180,181],[193,8,4,181,185],[194,2,2,185,187],[196,2,1,187,188],[203,1,1,188,189]]],[6,5,5,189,194,[[213,2,2,189,191],[215,1,1,191,192],[229,1,1,192,193],[230,1,1,193,194]]],[8,4,4,194,198,[[245,2,2,194,196],[249,1,1,196,197],[252,1,1,197,198]]],[9,3,3,198,201,[[281,1,1,198,199],[286,2,2,199,201]]],[10,3,3,201,204,[[292,2,2,201,203],[310,1,1,203,204]]],[11,2,2,204,206,[[328,2,2,204,206]]],[12,1,1,206,207,[[353,1,1,206,207]]],[13,1,1,207,208,[[401,1,1,207,208]]],[14,1,1,208,209,[[410,1,1,208,209]]],[16,1,1,209,210,[[430,1,1,209,210]]],[17,2,2,210,212,[[466,1,1,210,211],[468,1,1,211,212]]],[18,8,8,212,220,[[504,1,1,212,213],[509,1,1,213,214],[542,1,1,214,215],[546,1,1,215,216],[549,1,1,216,217],[568,1,1,217,218],[596,2,2,218,220]]],[19,1,1,220,221,[[632,1,1,220,221]]],[20,1,1,221,222,[[663,1,1,221,222]]],[22,13,13,222,235,[[683,2,2,222,224],[686,1,1,224,225],[704,1,1,225,226],[712,1,1,226,227],[719,3,3,227,230],[724,1,1,230,231],[726,1,1,231,232],[732,1,1,232,233],[735,1,1,233,234],[743,1,1,234,235]]],[23,1,1,235,236,[[774,1,1,235,236]]],[24,2,2,236,238,[[799,1,1,236,237],[800,1,1,237,238]]],[25,17,16,238,254,[[810,1,1,238,239],[813,1,1,239,240],[819,1,1,240,241],[823,1,1,241,242],[837,1,1,242,243],[838,2,2,243,245],[843,1,1,245,246],[844,3,3,246,249],[845,5,4,249,253],[847,1,1,253,254]]],[27,1,1,254,255,[[868,1,1,254,255]]],[31,1,1,255,256,[[889,1,1,255,256]]],[35,1,1,256,257,[[908,1,1,256,257]]],[36,1,1,257,258,[[910,1,1,257,258]]],[38,2,2,258,260,[[925,1,1,258,259],[927,1,1,259,260]]]],[309,499,768,1101,1449,1584,1864,1899,1909,1956,2121,2294,2339,2340,2344,2346,2457,2568,2719,2721,2739,2747,2748,2750,2755,2758,2759,2760,2763,2766,2770,2773,2774,2775,2776,2779,2781,2784,2785,2787,2790,2792,2798,2809,2838,2863,2869,2870,2882,2887,2888,2890,2891,2892,2893,2895,2897,2904,2908,2912,2914,2917,2923,2930,2935,2939,2941,2955,2958,2960,2961,2962,2968,2969,2970,2978,2981,2982,2996,3051,3123,3202,3207,3210,3212,3221,3239,3257,3265,3270,3334,3351,3353,3362,3363,3366,3372,3387,3389,3390,3391,3393,3394,3410,3418,3420,3427,3429,3438,3439,3579,3581,3696,3698,3801,3808,3817,3837,3839,3852,3853,3860,3861,3862,3868,3869,3948,3949,3971,3972,3978,4157,4160,4162,4163,4166,4180,4186,4199,4203,4204,4211,4229,4232,4233,4234,4259,4260,4261,4272,4279,4477,4550,4555,4559,4579,4580,4588,4596,4603,4604,4616,4621,4644,4712,4714,4880,4909,4914,4957,4975,5015,5076,5080,5328,5429,5437,5484,5558,5742,5897,5990,5992,5993,5994,6007,6025,6088,6279,6585,6586,6648,7037,7078,7438,7439,7544,7666,8394,8570,8571,8771,8777,9437,9975,9977,10821,11978,12236,12781,13625,13672,14287,14364,14864,14953,15010,15405,16048,16067,16525,17398,17747,17758,17810,18147,18304,18452,18456,18472,18599,18630,18737,18768,18902,19688,20411,20438,20623,20703,20855,20980,21367,21404,21414,21566,21594,21595,21596,21606,21614,21615,21626,21659,22184,22537,22822,22869,23097,23125]]],["+",[60,57,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,3,3,1,4,[[52,1,1,1,2],[63,1,1,2,3],[89,1,1,3,4]]],[2,28,27,4,31,[[90,3,3,4,7],[91,1,1,7,8],[94,1,1,8,9],[96,5,5,9,14],[97,5,5,14,19],[98,4,4,19,23],[99,1,1,23,24],[105,4,4,24,28],[110,3,2,28,30],[111,1,1,30,31]]],[3,16,15,31,46,[[119,1,1,31,32],[121,1,1,32,33],[122,1,1,33,34],[123,4,3,34,37],[124,2,2,37,39],[125,1,1,39,40],[132,2,2,40,42],[134,2,2,42,44],[143,1,1,44,45],[147,1,1,45,46]]],[4,1,1,46,47,[[157,1,1,46,47]]],[5,5,4,47,51,[[189,1,1,47,48],[193,4,3,48,51]]],[6,2,2,51,53,[[213,2,2,51,53]]],[19,1,1,53,54,[[632,1,1,53,54]]],[22,1,1,54,55,[[732,1,1,54,55]]],[25,1,1,55,56,[[845,1,1,55,56]]],[35,1,1,56,57,[[908,1,1,56,57]]]],[499,1584,1909,2719,2747,2750,2759,2776,2838,2887,2895,2908,2912,2917,2923,2930,2935,2939,2941,2962,2968,2969,2970,2996,3207,3210,3212,3221,3353,3366,3394,3698,3808,3837,3860,3861,3862,3948,3949,3972,4203,4204,4260,4279,4559,4714,5080,5897,5992,5993,5994,6585,6586,16525,18737,21606,22822]]],["Go",[1,1,[[2,1,1,0,1,[[98,1,1,0,1]]]],[2960]]],["Produce",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18472]]],["Stand",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18902]]],["approach",[10,10,[[2,6,6,0,6,[[107,3,3,0,3],[109,1,1,3,4],[110,2,2,4,6]]],[4,1,1,6,7,[[183,1,1,6,7]]],[5,1,1,7,8,[[194,1,1,7,8]]],[18,1,1,8,9,[[542,1,1,8,9]]],[25,1,1,9,10,[[843,1,1,9,10]]]],[3257,3265,3270,3334,3362,3363,5742,6007,14864,21566]]],["approached",[1,1,[[11,1,1,0,1,[[328,1,1,0,1]]]],[9975]]],["bring",[23,23,[[1,4,4,0,4,[[78,3,3,0,3],[89,1,1,3,4]]],[2,8,8,4,12,[[90,4,4,4,8],[91,2,2,8,10],[93,1,1,10,11],[116,1,1,11,12]]],[3,10,10,12,22,[[121,1,1,12,13],[122,1,1,13,14],[131,4,4,14,18],[132,1,1,18,19],[134,2,2,19,21],[144,1,1,21,22]]],[4,1,1,22,23,[[153,1,1,22,23]]]],[2339,2340,2344,2721,2747,2755,2758,2760,2766,2773,2798,3579,3801,3839,4157,4162,4163,4180,4211,4259,4272,4603,4909]]],["brought",[9,9,[[1,2,2,0,2,[[71,1,1,0,1],[78,1,1,1,2]]],[3,4,4,2,6,[[123,1,1,2,3],[125,1,1,3,4],[131,1,1,4,5],[141,1,1,5,6]]],[5,2,2,6,8,[[193,1,1,6,7],[194,1,1,7,8]]],[11,1,1,8,9,[[328,1,1,8,9]]]],[2121,2346,3853,3978,4186,4477,5990,6025,9977]]],["came",[6,6,[[3,2,2,0,2,[[125,1,1,0,1],[143,1,1,1,2]]],[4,1,1,2,3,[[174,1,1,2,3]]],[10,1,1,3,4,[[292,1,1,3,4]]],[18,1,1,4,5,[[504,1,1,4,5]]],[31,1,1,5,6,[[889,1,1,5,6]]]],[3971,4555,5484,8777,14287,22537]]],["camest",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4975]]],["come",[4,2,[[1,1,1,0,1,[[85,1,1,0,1]]],[5,3,1,1,2,[[193,3,1,1,2]]]],[2568,5990]]],["forth",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6648]]],["goeth",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3372]]],["hand",[4,4,[[0,1,1,0,1,[[26,1,1,0,1]]],[4,1,1,1,2,[[167,1,1,1,2]]],[25,2,2,2,4,[[813,1,1,2,3],[837,1,1,3,4]]]],[768,5328,20703,21367]]],["join",[1,1,[[25,1,1,0,1,[[838,1,1,0,1]]]],[21414]]],["joined",[1,1,[[10,1,1,0,1,[[310,1,1,0,1]]]],[9437]]],["lay",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17747]]],["near",[47,45,[[0,2,2,0,2,[[11,1,1,0,1],[36,1,1,1,2]]],[1,3,3,2,5,[[61,1,1,2,3],[65,1,1,3,4],[89,1,1,4,5]]],[2,3,3,5,8,[[98,1,1,5,6],[99,2,2,6,8]]],[3,5,4,8,12,[[132,3,2,8,10],[147,1,1,10,11],[152,1,1,11,12]]],[4,4,4,12,16,[[153,1,1,12,13],[156,1,1,13,14],[157,1,1,14,15],[177,1,1,15,16]]],[5,3,2,16,18,[[196,2,1,16,17],[203,1,1,17,18]]],[6,2,2,18,20,[[229,1,1,18,19],[230,1,1,19,20]]],[8,3,3,20,23,[[245,2,2,20,22],[249,1,1,22,23]]],[9,2,2,23,25,[[286,2,2,23,25]]],[16,1,1,25,26,[[430,1,1,25,26]]],[17,1,1,26,27,[[468,1,1,26,27]]],[18,2,2,27,29,[[509,1,1,27,28],[596,1,1,28,29]]],[22,7,7,29,36,[[704,1,1,29,30],[712,1,1,30,31],[719,2,2,31,33],[724,1,1,33,34],[726,1,1,34,35],[735,1,1,35,36]]],[23,1,1,36,37,[[774,1,1,36,37]]],[24,2,2,37,39,[[799,1,1,37,38],[800,1,1,38,39]]],[25,5,5,39,44,[[810,1,1,39,40],[819,1,1,40,41],[823,1,1,41,42],[845,2,2,42,44]]],[38,1,1,44,45,[[927,1,1,44,45]]]],[309,1101,1864,1956,2739,2958,2981,2982,4199,4234,4712,4880,4914,5015,5076,5558,6088,6279,7037,7078,7438,7439,7544,8570,8571,12781,13672,14364,16067,18147,18304,18452,18456,18599,18630,18768,19688,20411,20438,20623,20855,20980,21614,21615,23125]]],["nigh",[14,14,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,2,2,1,3,[[63,1,1,1,2],[81,1,1,2,3]]],[3,1,1,3,4,[[134,1,1,3,4]]],[4,3,3,4,7,[[154,1,1,4,5],[172,2,2,5,7]]],[8,1,1,7,8,[[252,1,1,7,8]]],[9,1,1,8,9,[[281,1,1,8,9]]],[10,1,1,9,10,[[292,1,1,9,10]]],[18,3,3,10,13,[[546,1,1,10,11],[568,1,1,11,12],[596,1,1,12,13]]],[22,1,1,13,14,[[683,1,1,13,14]]]],[1449,1899,2457,4261,4957,5429,5437,7666,8394,8771,14953,15405,16048,17758]]],["offer",[67,61,[[2,46,40,0,40,[[90,2,1,0,1],[91,4,4,1,5],[92,9,7,5,12],[93,1,1,12,13],[95,3,3,13,16],[96,7,6,16,22],[98,1,1,22,23],[101,1,1,23,24],[103,1,1,24,25],[106,1,1,25,26],[110,2,2,26,28],[111,5,4,28,32],[112,8,7,32,39],[116,1,1,39,40]]],[3,11,11,40,51,[[121,1,1,40,41],[123,1,1,41,42],[131,1,1,42,43],[144,5,5,43,48],[145,3,3,48,51]]],[13,1,1,51,52,[[401,1,1,51,52]]],[18,1,1,52,53,[[549,1,1,52,53]]],[25,6,6,53,59,[[844,3,3,53,56],[845,2,2,56,58],[847,1,1,58,59]]],[36,1,1,59,60,[[910,1,1,59,60]]],[38,1,1,60,61,[[925,1,1,60,61]]]],[2748,2763,2774,2775,2776,2779,2781,2784,2785,2787,2790,2792,2809,2863,2869,2870,2882,2890,2891,2892,2893,2904,2955,3051,3123,3239,3351,3362,3387,3389,3391,3393,3410,3418,3420,3427,3429,3438,3439,3581,3817,3868,4160,4579,4580,4588,4596,4604,4616,4621,4644,11978,15010,21594,21595,21596,21614,21626,21659,22869,23097]]],["offered",[12,12,[[2,3,3,0,3,[[96,1,1,0,1],[99,1,1,1,2],[105,1,1,2,3]]],[3,7,7,3,10,[[119,1,1,3,4],[123,2,2,4,6],[132,3,3,6,9],[142,1,1,9,10]]],[12,1,1,10,11,[[353,1,1,10,11]]],[14,1,1,11,12,[[410,1,1,11,12]]]],[2887,2978,3202,3696,3852,3869,4229,4232,4233,4550,10821,12236]]],["offereth",[4,4,[[2,3,3,0,3,[[96,2,2,0,2],[111,1,1,2,3]]],[3,1,1,3,4,[[131,1,1,3,4]]]],[2888,2897,3390,4157]]],["offering",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4166]]],["presented",[2,2,[[2,2,2,0,2,[[91,1,1,0,1],[96,1,1,1,2]]]],[2770,2914]]],["ready",[2,2,[[20,1,1,0,1,[[663,1,1,0,1]]],[27,1,1,1,2,[[868,1,1,1,2]]]],[17398,22184]]],["take",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2294]]],["together",[1,1,[[25,1,1,0,1,[[838,1,1,0,1]]]],[21404]]],["unto",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13625]]],["went",[2,2,[[2,1,1,0,1,[[98,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]]],[2961,17810]]]]},{"k":"H7127","v":[["*",[9,9,[[14,3,3,0,3,[[408,2,2,0,2],[409,1,1,2,3]]],[26,6,6,3,9,[[852,2,2,3,5],[855,2,2,5,7],[856,2,2,7,9]]]],[12161,12168,12190,21815,21833,21917,21925,21946,21949]]],["came",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21925]]],["near",[5,5,[[26,5,5,0,5,[[852,2,2,0,2],[855,1,1,2,3],[856,2,2,3,5]]]],[21815,21833,21917,21946,21949]]],["offer",[2,2,[[14,2,2,0,2,[[408,1,1,0,1],[409,1,1,1,2]]]],[12161,12190]]],["offered",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12168]]]]},{"k":"H7128","v":[["*",[9,9,[[9,1,1,0,1,[[283,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]],[18,5,5,2,7,[[532,2,2,2,4],[545,1,1,4,5],[555,1,1,5,6],[621,1,1,6,7]]],[20,1,1,7,8,[[667,1,1,7,8]]],[37,1,1,8,9,[[924,1,1,8,9]]]],[8460,13816,14750,14753,14930,15122,16306,17493,23071]]],["+",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14750]]],["battle",[4,4,[[9,1,1,0,1,[[283,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]],[18,1,1,2,3,[[555,1,1,2,3]]],[37,1,1,3,4,[[924,1,1,3,4]]]],[8460,13816,15122,23071]]],["war",[4,4,[[18,3,3,0,3,[[532,1,1,0,1],[545,1,1,1,2],[621,1,1,2,3]]],[20,1,1,3,4,[[667,1,1,3,4]]]],[14753,14930,16306,17493]]]]},{"k":"H7129","v":[["war",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21954]]]]},{"k":"H7130","v":[["*",[226,219,[[0,8,7,0,7,[[17,2,2,0,2],[23,1,1,2,3],[24,1,1,3,4],[40,2,1,4,5],[44,1,1,5,6],[47,1,1,6,7]]],[1,16,16,7,23,[[52,1,1,7,8],[57,1,1,8,9],[59,1,1,9,10],[61,1,1,10,11],[66,1,1,11,12],[72,2,2,12,14],[78,3,3,14,17],[80,1,1,17,18],[82,2,2,18,20],[83,3,3,20,23]]],[2,24,20,23,43,[[90,2,2,23,25],[92,6,3,25,28],[93,3,2,28,30],[96,1,1,30,31],[97,3,3,31,34],[98,1,1,34,35],[106,2,2,35,37],[107,1,1,37,38],[109,4,4,38,42],[112,1,1,42,43]]],[3,10,10,43,53,[[121,1,1,43,44],[127,3,3,44,47],[130,5,5,47,52],[131,1,1,52,53]]],[4,41,41,53,94,[[153,1,1,53,54],[154,3,3,54,57],[156,3,3,57,60],[158,1,1,60,61],[159,1,1,61,62],[163,1,1,62,63],[165,5,5,63,68],[167,1,1,68,69],[168,1,1,69,70],[169,4,4,70,74],[170,3,3,74,77],[171,3,3,77,80],[173,3,3,80,83],[174,2,2,83,85],[175,2,2,85,87],[176,1,1,87,88],[178,1,1,88,89],[180,1,1,89,90],[181,2,2,90,92],[183,2,2,92,94]]],[5,20,19,94,113,[[187,1,1,94,95],[189,3,3,95,98],[190,1,1,98,99],[192,1,1,99,100],[193,3,2,100,102],[194,1,1,102,103],[195,3,3,103,106],[196,1,1,106,107],[199,1,1,107,108],[202,1,1,108,109],[204,1,1,109,110],[210,3,3,110,113]]],[6,8,8,113,121,[[211,4,4,113,117],[213,1,1,117,118],[220,1,1,118,119],[228,2,2,119,121]]],[8,3,3,121,124,[[239,1,1,121,122],[251,1,1,122,123],[260,1,1,123,124]]],[10,4,4,124,128,[[293,1,1,124,125],[307,2,2,125,127],[310,1,1,127,128]]],[17,1,1,128,129,[[455,1,1,128,129]]],[18,27,27,129,156,[[482,1,1,129,130],[513,1,1,130,131],[516,1,1,131,132],[523,1,1,132,133],[525,1,1,133,134],[526,1,1,134,135],[528,1,1,135,136],[532,4,4,136,140],[539,1,1,140,141],[541,1,1,141,142],[551,3,3,142,145],[555,1,1,145,146],[559,1,1,146,147],[571,1,1,147,148],[578,2,2,148,150],[580,1,1,150,151],[586,2,2,151,153],[587,1,1,153,154],[615,1,1,154,155],[624,1,1,155,156]]],[19,3,3,156,159,[[641,1,1,156,157],[642,1,1,157,158],[653,1,1,158,159]]],[22,16,16,159,175,[[682,1,1,159,160],[683,2,2,160,162],[684,1,1,162,163],[688,1,1,163,164],[690,1,1,164,165],[694,1,1,165,166],[697,4,4,166,170],[702,1,1,170,171],[703,1,1,171,172],[704,1,1,172,173],[707,1,1,173,174],[741,1,1,174,175]]],[23,10,10,175,185,[[748,1,1,175,176],[750,2,2,176,178],[753,1,1,178,179],[758,1,1,179,180],[767,1,1,180,181],[773,1,1,181,182],[774,1,1,182,183],[775,1,1,183,184],[790,1,1,184,185]]],[24,4,4,185,189,[[797,2,2,185,187],[799,1,1,187,188],[800,1,1,188,189]]],[25,4,4,189,193,[[812,1,1,189,190],[823,1,1,190,191],[837,2,2,191,193]]],[27,2,2,193,195,[[866,1,1,193,194],[872,1,1,194,195]]],[28,1,1,195,196,[[877,1,1,195,196]]],[29,5,5,196,201,[[880,1,1,196,197],[881,1,1,197,198],[883,1,1,198,199],[885,2,2,199,201]]],[32,7,7,201,208,[[895,1,1,201,202],[897,5,5,202,207],[898,1,1,207,208]]],[33,1,1,208,209,[[902,1,1,208,209]]],[34,3,2,209,211,[[904,1,1,209,210],[905,2,1,210,211]]],[35,6,6,211,217,[[908,6,6,211,217]]],[37,2,2,217,219,[[922,1,1,217,218],[924,1,1,218,219]]]],[436,448,594,680,1216,1364,1467,1599,1732,1778,1825,1990,2165,2169,2349,2353,2358,2434,2476,2478,2505,2506,2508,2754,2758,2781,2787,2792,2803,2806,2882,2933,2938,2942,2967,3239,3245,3280,3321,3323,3324,3336,3432,3819,4028,4044,4045,4119,4121,4122,4150,4152,4183,4934,4952,4953,4954,5007,5009,5038,5101,5132,5214,5273,5277,5283,5285,5286,5330,5353,5366,5371,5379,5384,5386,5399,5402,5416,5425,5426,5455,5456,5468,5491,5494,5514,5516,5532,5577,5654,5690,5695,5744,5745,5862,5895,5898,5903,5916,5974,5988,5989,6037,6044,6053,6059,6065,6167,6275,6300,6481,6493,6499,6538,6539,6541,6542,6573,6827,7000,7013,7300,7608,7898,8844,9338,9339,9447,13340,13982,14439,14515,14619,14643,14659,14701,14736,14742,14743,14747,14831,14856,15052,15059,15060,15141,15234,15450,15515,15520,15550,15773,15777,15788,16238,16364,16805,16838,17165,17737,17747,17764,17781,17873,17906,17980,18005,18007,18018,18028,18108,18129,18139,18216,18877,19041,19090,19095,19183,19302,19493,19643,19688,19724,20066,20325,20330,20399,20433,20674,21003,21385,21386,22156,22249,22338,22382,22404,22440,22472,22474,22619,22640,22641,22643,22646,22647,22662,22725,22767,22770,22823,22825,22831,22832,22835,22837,23046,23069]]],["+",[47,46,[[0,2,1,0,1,[[40,2,1,0,1]]],[1,2,2,1,3,[[72,1,1,1,2],[80,1,1,2,3]]],[2,8,8,3,11,[[106,2,2,3,5],[107,1,1,5,6],[109,4,4,6,10],[112,1,1,10,11]]],[3,3,3,11,14,[[130,2,2,11,13],[131,1,1,13,14]]],[4,18,18,14,32,[[154,3,3,14,17],[156,2,2,17,19],[165,2,2,19,21],[167,1,1,21,22],[169,2,2,22,24],[170,2,2,24,26],[171,1,1,26,27],[173,2,2,27,29],[174,2,2,29,31],[176,1,1,31,32]]],[5,2,2,32,34,[[193,2,2,32,34]]],[6,1,1,34,35,[[220,1,1,34,35]]],[10,2,2,35,37,[[307,2,2,35,37]]],[18,1,1,37,38,[[551,1,1,37,38]]],[22,1,1,38,39,[[682,1,1,38,39]]],[23,2,2,39,41,[[750,1,1,39,40],[774,1,1,40,41]]],[29,1,1,41,42,[[880,1,1,41,42]]],[32,3,3,42,45,[[897,3,3,42,45]]],[35,1,1,45,46,[[908,1,1,45,46]]]],[1216,2169,2434,3239,3245,3280,3321,3323,3324,3336,3432,4121,4152,4183,4952,4953,4954,5007,5038,5277,5285,5330,5371,5379,5399,5402,5425,5456,5468,5491,5494,5532,5988,5989,6827,9338,9339,15059,17737,19090,19688,22382,22643,22646,22647,22831]]],["among",[48,48,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,3,3,1,4,[[66,1,1,1,2],[83,2,2,2,4]]],[3,7,7,4,11,[[121,1,1,4,5],[127,3,3,5,8],[130,3,3,8,11]]],[4,14,14,11,25,[[153,1,1,11,12],[158,1,1,12,13],[159,1,1,13,14],[165,3,3,14,17],[168,1,1,17,18],[169,1,1,18,19],[170,1,1,19,20],[171,1,1,20,21],[175,1,1,21,22],[178,1,1,22,23],[183,2,2,23,25]]],[5,13,13,25,38,[[189,2,2,25,27],[190,1,1,27,28],[194,1,1,28,29],[195,3,3,29,32],[196,1,1,32,33],[199,1,1,33,34],[202,1,1,34,35],[204,1,1,35,36],[210,2,2,36,38]]],[6,5,5,38,43,[[211,4,4,38,42],[213,1,1,42,43]]],[8,1,1,43,44,[[239,1,1,43,44]]],[18,2,2,44,46,[[532,1,1,44,45],[559,1,1,45,46]]],[19,1,1,46,47,[[642,1,1,46,47]]],[32,1,1,47,48,[[895,1,1,47,48]]]],[594,1990,2505,2506,3819,4028,4044,4045,4119,4122,4150,4934,5101,5132,5273,5283,5286,5353,5366,5386,5426,5516,5577,5744,5745,5898,5903,5916,6037,6044,6053,6059,6065,6167,6275,6300,6481,6499,6538,6539,6541,6542,6573,7300,14747,15234,16838,22619]]],["before",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1778]]],["bowels",[1,1,[[18,1,1,0,1,[[586,1,1,0,1]]]],[15773]]],["charge",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5455]]],["heart",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19183]]],["him",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8844]]],["in",[6,6,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,1,1,1,2,[[72,1,1,1,2]]],[4,3,3,2,5,[[156,1,1,2,3],[171,1,1,3,4],[181,1,1,4,5]]],[5,1,1,5,6,[[192,1,1,5,6]]]],[1364,2165,5009,5416,5690,5974]]],["inward",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14856]]],["inwardly",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14831]]],["inwards",[19,15,[[1,3,3,0,3,[[78,3,3,0,3]]],[2,16,12,3,15,[[90,2,2,3,5],[92,6,3,5,8],[93,3,2,8,10],[96,1,1,10,11],[97,3,3,11,14],[98,1,1,14,15]]]],[2349,2353,2358,2754,2758,2781,2787,2792,2803,2806,2882,2933,2938,2942,2967]]],["midst",[61,60,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,5,5,1,6,[[52,1,1,1,2],[57,1,1,2,3],[82,2,2,3,5],[83,1,1,5,6]]],[4,3,3,6,9,[[163,1,1,6,7],[169,1,1,7,8],[175,1,1,8,9]]],[5,1,1,9,10,[[193,1,1,9,10]]],[6,1,1,10,11,[[228,1,1,10,11]]],[8,1,1,11,12,[[251,1,1,11,12]]],[10,1,1,12,13,[[310,1,1,12,13]]],[18,9,9,13,22,[[523,1,1,13,14],[525,1,1,14,15],[532,2,2,15,17],[551,2,2,17,19],[555,1,1,19,20],[587,1,1,20,21],[615,1,1,21,22]]],[19,1,1,22,23,[[641,1,1,22,23]]],[22,12,12,23,35,[[683,2,2,23,25],[684,1,1,25,26],[688,1,1,26,27],[690,1,1,27,28],[697,4,4,28,32],[702,1,1,32,33],[703,1,1,33,34],[707,1,1,34,35]]],[23,4,4,35,39,[[750,1,1,35,36],[758,1,1,36,37],[773,1,1,37,38],[790,1,1,38,39]]],[24,3,3,39,42,[[797,1,1,39,40],[799,1,1,40,41],[800,1,1,41,42]]],[25,1,1,42,43,[[823,1,1,42,43]]],[27,2,2,43,45,[[866,1,1,43,44],[872,1,1,44,45]]],[28,1,1,45,46,[[877,1,1,45,46]]],[29,3,3,46,49,[[881,1,1,46,47],[885,2,2,47,49]]],[32,3,3,49,52,[[897,2,2,49,51],[898,1,1,51,52]]],[33,1,1,52,53,[[902,1,1,52,53]]],[34,3,2,53,55,[[904,1,1,53,54],[905,2,1,54,55]]],[35,4,4,55,59,[[908,4,4,55,59]]],[37,1,1,59,60,[[924,1,1,59,60]]]],[1467,1599,1732,2476,2478,2508,5214,5384,5514,5989,7013,7608,9447,14619,14643,14742,14743,15052,15060,15141,15788,16238,16805,17747,17764,17781,17873,17906,18005,18007,18018,18028,18108,18129,18216,19095,19302,19643,20066,20325,20399,20433,21003,22156,22249,22338,22404,22472,22474,22640,22641,22662,22725,22767,22770,22825,22832,22835,22837,23069]]],["part",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13982]]],["parts",[2,2,[[22,1,1,0,1,[[694,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[17980,19724]]],["purtenance",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1825]]],["therein",[2,2,[[0,1,1,0,1,[[17,1,1,0,1]]],[6,1,1,1,2,[[228,1,1,1,2]]]],[448,7000]]],["thought",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14659]]],["through",[5,5,[[4,1,1,0,1,[[181,1,1,0,1]]],[5,3,3,1,4,[[187,1,1,1,2],[189,1,1,2,3],[210,1,1,3,4]]],[29,1,1,4,5,[[883,1,1,4,5]]]],[5695,5862,5895,6493,22440]]],["within",[26,26,[[0,2,2,0,2,[[17,1,1,0,1],[24,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[8,1,1,3,4,[[260,1,1,3,4]]],[17,1,1,4,5,[[455,1,1,4,5]]],[18,10,10,5,15,[[513,1,1,5,6],[516,1,1,6,7],[528,1,1,7,8],[532,1,1,8,9],[571,1,1,9,10],[578,2,2,10,12],[580,1,1,12,13],[586,1,1,13,14],[624,1,1,14,15]]],[19,1,1,15,16,[[653,1,1,15,16]]],[22,2,2,16,18,[[704,1,1,16,17],[741,1,1,17,18]]],[23,2,2,18,20,[[748,1,1,18,19],[767,1,1,19,20]]],[24,1,1,20,21,[[797,1,1,20,21]]],[25,3,3,21,24,[[812,1,1,21,22],[837,2,2,22,24]]],[35,1,1,24,25,[[908,1,1,24,25]]],[37,1,1,25,26,[[922,1,1,25,26]]]],[436,680,5654,7898,13340,14439,14515,14701,14736,15450,15515,15520,15550,15777,16364,17165,18139,18877,19041,19493,20330,20674,21385,21386,22823,23046]]]]},{"k":"H7131","v":[["*",[12,11,[[3,6,5,0,5,[[117,1,1,0,1],[119,2,2,1,3],[133,2,1,3,4],[134,1,1,4,5]]],[4,1,1,5,6,[[172,1,1,5,6]]],[8,1,1,6,7,[[252,1,1,6,7]]],[9,1,1,7,8,[[284,1,1,7,8]]],[10,1,1,8,9,[[294,1,1,8,9]]],[25,2,2,9,11,[[841,1,1,9,10],[846,1,1,10,11]]]],[3655,3702,3730,4257,4264,5430,7659,8503,8871,21523,21634]]],["+",[2,1,[[3,2,1,0,1,[[133,2,1,0,1]]]],[4257]]],["approach",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5430]]],["came",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8871]]],["near",[4,4,[[8,1,1,0,1,[[252,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[25,2,2,2,4,[[841,1,1,2,3],[846,1,1,3,4]]]],[7659,8503,21523,21634]]],["nigh",[4,4,[[3,4,4,0,4,[[117,1,1,0,1],[119,2,2,1,3],[134,1,1,3,4]]]],[3655,3702,3730,4264]]]]},{"k":"H7132","v":[["*",[2,2,[[18,1,1,0,1,[[550,1,1,0,1]]],[22,1,1,1,2,[[736,1,1,1,2]]]],[15048,18788]]],["approaching",[1,1,[[22,1,1,0,1,[[736,1,1,0,1]]]],[18788]]],["near",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15048]]]]},{"k":"H7133","v":[["*",[82,78,[[2,40,36,0,36,[[90,6,4,0,4],[91,8,6,4,10],[92,7,7,10,17],[93,3,3,17,20],[94,1,1,20,21],[95,1,1,21,22],[96,6,6,22,28],[98,2,2,28,30],[106,1,1,30,31],[111,2,2,31,33],[112,1,1,33,34],[116,2,2,34,36]]],[3,38,38,36,74,[[121,1,1,36,37],[122,2,2,37,39],[123,28,28,39,67],[125,2,2,67,69],[131,2,2,69,71],[134,1,1,71,72],[144,1,1,72,73],[147,1,1,73,74]]],[15,2,2,74,76,[[422,1,1,74,75],[425,1,1,75,76]]],[25,2,2,76,78,[[821,1,1,76,77],[841,1,1,77,78]]]],[2747,2748,2755,2759,2763,2766,2767,2769,2774,2775,2779,2780,2784,2785,2786,2790,2792,2818,2823,2827,2841,2869,2892,2893,2894,2895,2908,2917,2960,2968,3239,3387,3396,3416,3579,3581,3807,3837,3844,3853,3860,3861,3862,3863,3867,3869,3873,3875,3879,3881,3885,3887,3891,3893,3897,3899,3903,3905,3909,3911,3915,3917,3921,3923,3927,3929,3933,3972,3978,4157,4178,4266,4579,4714,12583,12702,20923,21520]]],["oblation",[11,11,[[2,9,9,0,9,[[91,5,5,0,5],[92,1,1,5,6],[96,2,2,6,8],[111,1,1,8,9]]],[3,2,2,9,11,[[134,1,1,9,10],[147,1,1,10,11]]]],[2766,2767,2769,2774,2775,2779,2893,2908,3387,4266,4714]]],["oblations",[1,1,[[2,1,1,0,1,[[96,1,1,0,1]]]],[2917]]],["offered",[1,1,[[2,1,1,0,1,[[96,1,1,0,1]]]],[2894]]],["offering",[67,64,[[2,27,24,0,24,[[90,6,4,0,4],[91,2,1,4,5],[92,6,6,5,11],[93,3,3,11,14],[94,1,1,14,15],[95,1,1,15,16],[96,2,2,16,18],[98,2,2,18,20],[106,1,1,20,21],[111,1,1,21,22],[112,1,1,22,23],[116,1,1,23,24]]],[3,36,36,24,60,[[121,1,1,24,25],[122,2,2,25,27],[123,28,28,27,55],[125,2,2,55,57],[131,2,2,57,59],[144,1,1,59,60]]],[15,2,2,60,62,[[422,1,1,60,61],[425,1,1,61,62]]],[25,2,2,62,64,[[821,1,1,62,63],[841,1,1,63,64]]]],[2747,2748,2755,2759,2763,2780,2784,2785,2786,2790,2792,2818,2823,2827,2841,2869,2892,2895,2960,2968,3239,3396,3416,3579,3807,3837,3844,3853,3860,3861,3862,3863,3867,3869,3873,3875,3879,3881,3885,3887,3891,3893,3897,3899,3903,3905,3909,3911,3915,3917,3921,3923,3927,3929,3933,3972,3978,4157,4178,4579,12583,12702,20923,21520]]],["offerings",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2775]]],["sacrifice",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3581]]]]},{"k":"H7134","v":[["*",[5,5,[[6,1,1,0,1,[[219,1,1,0,1]]],[8,2,2,1,3,[[248,2,2,1,3]]],[18,1,1,3,4,[[551,1,1,3,4]]],[23,1,1,4,5,[[790,1,1,4,5]]]],[6802,7505,7506,15053,20067]]],["axe",[2,2,[[6,1,1,0,1,[[219,1,1,0,1]]],[8,1,1,1,2,[[248,1,1,1,2]]]],[6802,7505]]],["axes",[3,3,[[8,1,1,0,1,[[248,1,1,0,1]]],[18,1,1,1,2,[[551,1,1,1,2]]],[23,1,1,2,3,[[790,1,1,2,3]]]],[7506,15053,20067]]]]},{"k":"H7135","v":[["cold",[5,5,[[17,2,2,0,2,[[459,1,1,0,1],[472,1,1,1,2]]],[18,1,1,2,3,[[624,1,1,2,3]]],[19,1,1,3,4,[[652,1,1,3,4]]],[33,1,1,4,5,[[902,1,1,4,5]]]],[13443,13778,16368,17133,22729]]]]},{"k":"H7136","v":[["*",[27,27,[[0,4,4,0,4,[[23,1,1,0,1],[26,1,1,1,2],[41,1,1,2,3],[43,1,1,3,4]]],[1,1,1,4,5,[[52,1,1,4,5]]],[3,6,6,5,11,[[127,1,1,5,6],[139,4,4,6,10],[151,1,1,10,11]]],[4,1,1,11,12,[[177,1,1,11,12]]],[7,1,1,12,13,[[233,1,1,12,13]]],[8,1,1,13,14,[[263,1,1,13,14]]],[9,1,1,14,15,[[267,1,1,14,15]]],[13,1,1,15,16,[[400,1,1,15,16]]],[15,3,3,16,19,[[414,1,1,16,17],[415,2,2,17,19]]],[16,2,2,19,21,[[429,1,1,19,20],[431,1,1,20,21]]],[18,1,1,21,22,[[581,1,1,21,22]]],[20,3,3,22,25,[[660,2,2,22,24],[667,1,1,24,25]]],[22,1,1,25,26,[[719,1,1,25,26]]],[26,1,1,26,27,[[859,1,1,26,27]]]],[603,747,1281,1353,1597,4047,4419,4420,4431,4432,4856,5565,7152,7952,8028,11944,12315,12330,12333,12769,12806,15574,17347,17348,17486,18473,22029]]],["+",[4,4,[[0,1,1,0,1,[[23,1,1,0,1]]],[3,2,2,1,3,[[139,2,2,1,3]]],[13,1,1,3,4,[[400,1,1,3,4]]]],[603,4420,4432,11944]]],["appoint",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4856]]],["beams",[4,4,[[15,3,3,0,3,[[414,1,1,0,1],[415,2,2,1,3]]],[18,1,1,3,4,[[581,1,1,3,4]]]],[12315,12330,12333,15574]]],["befall",[2,2,[[0,1,1,0,1,[[43,1,1,0,1]]],[26,1,1,1,2,[[859,1,1,1,2]]]],[1353,22029]]],["befallen",[1,1,[[16,1,1,0,1,[[431,1,1,0,1]]]],[12806]]],["befell",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1281]]],["brought",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[747]]],["come",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4419]]],["happen",[2,2,[[8,1,1,0,1,[[263,1,1,0,1]]],[22,1,1,1,2,[[719,1,1,1,2]]]],[7952,18473]]],["happened",[2,2,[[9,1,1,0,1,[[267,1,1,0,1]]],[16,1,1,1,2,[[429,1,1,1,2]]]],[8028,12769]]],["happeneth",[3,3,[[20,3,3,0,3,[[660,2,2,0,2],[667,1,1,2,3]]]],[17347,17348,17486]]],["light",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7152]]],["meet",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4431]]],["met",[2,2,[[1,1,1,0,1,[[52,1,1,0,1]]],[4,1,1,1,2,[[177,1,1,1,2]]]],[1597,5565]]],["pass",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4047]]]]},{"k":"H7137","v":[["+",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5510]]]]},{"k":"H7138","v":[["*",[77,75,[[0,2,2,0,2,[[18,1,1,0,1],[44,1,1,1,2]]],[1,3,3,2,5,[[61,1,1,2,3],[62,1,1,3,4],[81,1,1,4,5]]],[2,4,4,5,9,[[99,1,1,5,6],[110,2,2,6,8],[114,1,1,8,9]]],[3,2,2,9,11,[[140,1,1,9,10],[143,1,1,10,11]]],[4,8,8,11,19,[[156,1,1,11,12],[165,1,1,12,13],[173,2,2,13,15],[174,1,1,15,16],[182,1,1,16,17],[184,2,2,17,19]]],[5,1,1,19,20,[[195,1,1,19,20]]],[7,2,2,20,22,[[233,1,1,20,21],[234,1,1,21,22]]],[9,1,1,22,23,[[285,1,1,22,23]]],[10,3,3,23,26,[[298,2,2,23,25],[311,1,1,25,26]]],[12,1,1,26,27,[[349,1,1,26,27]]],[13,1,1,27,28,[[372,1,1,27,28]]],[15,1,1,28,29,[[425,1,1,28,29]]],[16,2,2,29,31,[[426,1,1,29,30],[434,1,1,30,31]]],[17,3,3,31,34,[[452,1,1,31,32],[454,1,1,32,33],[455,1,1,33,34]]],[18,9,9,34,43,[[492,1,1,34,35],[499,1,1,35,36],[511,1,1,36,37],[515,1,1,37,38],[552,1,1,38,39],[562,1,1,39,40],[596,1,1,40,41],[622,1,1,41,42],[625,1,1,42,43]]],[19,2,2,43,45,[[637,1,1,43,44],[654,1,1,44,45]]],[22,8,8,45,53,[[691,2,2,45,47],[711,1,1,47,48],[728,1,1,48,49],[729,1,1,49,50],[733,1,1,50,51],[734,1,1,51,52],[735,1,1,52,53]]],[23,5,5,53,58,[[756,1,1,53,54],[767,1,1,54,55],[769,1,1,55,56],[792,2,2,56,58]]],[25,11,10,58,68,[[807,1,1,58,59],[808,2,2,59,61],[812,1,1,61,62],[823,1,1,62,63],[824,2,2,63,65],[831,2,1,65,66],[843,1,1,66,67],[844,1,1,67,68]]],[26,1,1,68,69,[[858,1,1,68,69]]],[28,3,3,69,72,[[876,1,1,69,70],[877,1,1,70,71],[878,1,1,71,72]]],[30,1,1,72,73,[[888,1,1,72,73]]],[35,3,2,73,75,[[906,3,2,73,75]]]],[477,1368,1820,1884,2465,2980,3347,3348,3494,4463,4565,5011,5279,5450,5453,5472,5722,5775,5793,6053,7169,7184,8553,9031,9044,9453,10760,11318,12675,12716,12854,13272,13311,13331,14090,14215,14406,14501,15072,15280,16049,16338,16385,16670,17179,17912,17928,18292,18670,18678,18746,18754,18784,19251,19507,19560,20096,20104,20575,20584,20585,20658,20981,21012,21019,21207,21565,21591,21995,22306,22312,22357,22525,22794,22801]]],["+",[7,7,[[2,1,1,0,1,[[114,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[10,1,1,2,3,[[311,1,1,2,3]]],[12,1,1,3,4,[[349,1,1,3,4]]],[17,1,1,4,5,[[455,1,1,4,5]]],[23,1,1,5,6,[[767,1,1,5,6]]],[25,1,1,6,7,[[808,1,1,6,7]]]],[3494,5775,9453,10760,13331,19507,20585]]],["allied",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12675]]],["approach",[2,2,[[25,2,2,0,2,[[843,1,1,0,1],[844,1,1,1,2]]]],[21565,21591]]],["hand",[5,5,[[4,1,1,0,1,[[184,1,1,0,1]]],[22,1,1,1,2,[[691,1,1,1,2]]],[28,2,2,2,4,[[876,1,1,2,3],[877,1,1,3,4]]],[35,1,1,4,5,[[906,1,1,4,5]]]],[5793,17912,22306,22312,22794]]],["kin",[2,2,[[7,1,1,0,1,[[233,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]]],[7169,8553]]],["kinsfolk",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13311]]],["kinsmen",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14501]]],["near",[34,32,[[0,2,2,0,2,[[18,1,1,0,1],[44,1,1,1,2]]],[1,1,1,2,3,[[62,1,1,2,3]]],[2,1,1,3,4,[[110,1,1,3,4]]],[10,1,1,4,5,[[298,1,1,4,5]]],[13,1,1,5,6,[[372,1,1,5,6]]],[18,4,4,6,10,[[499,1,1,6,7],[552,1,1,7,8],[596,1,1,8,9],[625,1,1,9,10]]],[19,2,2,10,12,[[637,1,1,10,11],[654,1,1,11,12]]],[22,7,7,12,19,[[691,1,1,12,13],[711,1,1,13,14],[728,1,1,14,15],[729,1,1,15,16],[733,1,1,16,17],[734,1,1,17,18],[735,1,1,18,19]]],[23,4,4,19,23,[[756,1,1,19,20],[769,1,1,20,21],[792,2,2,21,23]]],[25,6,5,23,28,[[807,1,1,23,24],[808,1,1,24,25],[812,1,1,25,26],[823,1,1,26,27],[831,2,1,27,28]]],[26,1,1,28,29,[[858,1,1,28,29]]],[28,1,1,29,30,[[878,1,1,29,30]]],[30,1,1,30,31,[[888,1,1,30,31]]],[35,2,1,31,32,[[906,2,1,31,32]]]],[477,1368,1884,3347,9031,11318,14215,15072,16049,16385,16670,17179,17928,18292,18670,18678,18746,18754,18784,19251,19560,20096,20104,20575,20584,20658,20981,21207,21995,22357,22525,22801]]],["nearer",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7184]]],["neighbour",[2,2,[[1,1,1,0,1,[[81,1,1,0,1]]],[18,1,1,1,2,[[492,1,1,1,2]]]],[2465,14090]]],["neighbours",[3,3,[[5,1,1,0,1,[[195,1,1,0,1]]],[25,2,2,1,3,[[824,2,2,1,3]]]],[6053,21012,21019]]],["next",[5,5,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[143,1,1,1,2]]],[4,2,2,2,4,[[173,2,2,2,4]]],[16,1,1,4,5,[[426,1,1,4,5]]]],[1820,4565,5450,5453,12716]]],["nigh",[12,12,[[2,2,2,0,2,[[99,1,1,0,1],[110,1,1,1,2]]],[3,1,1,2,3,[[140,1,1,2,3]]],[4,4,4,3,7,[[156,1,1,3,4],[165,1,1,4,5],[174,1,1,5,6],[182,1,1,6,7]]],[10,1,1,7,8,[[298,1,1,7,8]]],[16,1,1,8,9,[[434,1,1,8,9]]],[18,3,3,9,12,[[511,1,1,9,10],[562,1,1,10,11],[622,1,1,11,12]]]],[2980,3348,4463,5011,5279,5472,5722,9044,12854,14406,15280,16338]]],["short",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13272]]]]},{"k":"H7139","v":[["*",[5,5,[[2,1,1,0,1,[[110,1,1,0,1]]],[23,1,1,1,2,[[760,1,1,1,2]]],[25,2,2,2,4,[[828,1,1,2,3],[830,1,1,3,4]]],[32,1,1,4,5,[[893,1,1,4,5]]]],[3350,19342,21152,21201,22595]]],["+",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21152]]],["bald",[3,3,[[23,1,1,0,1,[[760,1,1,0,1]]],[25,1,1,1,2,[[830,1,1,1,2]]],[32,1,1,2,3,[[893,1,1,2,3]]]],[19342,21201,22595]]],["make",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3350]]]]},{"k":"H7140","v":[["*",[7,7,[[0,1,1,0,1,[[30,1,1,0,1]]],[17,3,3,1,4,[[441,1,1,1,2],[472,1,1,2,3],[473,1,1,3,4]]],[18,1,1,4,5,[[624,1,1,4,5]]],[23,1,1,5,6,[[780,1,1,5,6]]],[25,1,1,6,7,[[802,1,1,6,7]]]],[913,12994,13779,13822,16368,19872,20486]]],["crystal",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20486]]],["frost",[3,3,[[0,1,1,0,1,[[30,1,1,0,1]]],[17,1,1,1,2,[[472,1,1,1,2]]],[23,1,1,2,3,[[780,1,1,2,3]]]],[913,13779,19872]]],["ice",[3,3,[[17,2,2,0,2,[[441,1,1,0,1],[473,1,1,1,2]]],[18,1,1,2,3,[[624,1,1,2,3]]]],[12994,13822,16368]]]]},{"k":"H7141","v":[["Korah",[26,26,[[0,4,4,0,4,[[35,4,4,0,4]]],[1,2,2,4,6,[[55,2,2,4,6]]],[3,15,15,6,21,[[132,11,11,6,17],[142,3,3,17,20],[143,1,1,20,21]]],[12,5,5,21,26,[[338,1,1,21,22],[339,1,1,22,23],[343,2,2,23,25],[346,1,1,25,26]]]],[1045,1054,1056,1058,1676,1679,4195,4199,4200,4202,4210,4213,4218,4221,4226,4234,4243,4498,4499,4500,4557,10287,10349,10476,10491,10634]]]]},{"k":"H7142","v":[["*",[3,2,[[2,1,1,0,1,[[102,1,1,0,1]]],[11,2,1,1,2,[[314,2,1,1,2]]]],[3092,9574]]],["bald",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3092]]],["head",[2,1,[[11,2,1,0,1,[[314,2,1,0,1]]]],[9574]]]]},{"k":"H7143","v":[["*",[14,14,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,13,13,1,14,[[784,4,4,1,5],[785,4,4,5,9],[786,2,2,9,11],[787,3,3,11,14]]]],[10245,19949,19954,19956,19957,19968,19970,19971,19973,19976,19983,19999,20001,20002]]],["Careah",[1,1,[[11,1,1,0,1,[[337,1,1,0,1]]]],[10245]]],["Kareah",[13,13,[[23,13,13,0,13,[[784,4,4,0,4],[785,4,4,4,8],[786,2,2,8,10],[787,3,3,10,13]]]],[19949,19954,19956,19957,19968,19970,19971,19973,19976,19983,19999,20001,20002]]]]},{"k":"H7144","v":[["*",[11,11,[[2,1,1,0,1,[[110,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[22,3,3,2,5,[[681,1,1,2,3],[693,1,1,3,4],[700,1,1,4,5]]],[23,2,2,5,7,[[791,1,1,5,6],[792,1,1,6,7]]],[25,2,2,7,9,[[808,1,1,7,8],[828,1,1,8,9]]],[29,1,1,9,10,[[886,1,1,9,10]]],[32,1,1,10,11,[[893,1,1,10,11]]]],[3350,5291,17731,17962,18064,20078,20117,20595,21152,22491,22595]]],["+",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21152]]],["Baldness",[1,1,[[23,1,1,0,1,[[791,1,1,0,1]]]],[20078]]],["bald",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20117]]],["baldness",[8,8,[[2,1,1,0,1,[[110,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[22,3,3,2,5,[[681,1,1,2,3],[693,1,1,3,4],[700,1,1,4,5]]],[25,1,1,5,6,[[808,1,1,5,6]]],[29,1,1,6,7,[[886,1,1,6,7]]],[32,1,1,7,8,[[893,1,1,7,8]]]],[3350,5291,17731,17962,18064,20595,22491,22595]]]]},{"k":"H7145","v":[["*",[8,8,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[12,5,5,2,7,[[346,2,2,2,4],[349,1,1,4,5],[363,2,2,5,7]]],[13,1,1,7,8,[[386,1,1,7,8]]]],[1679,4547,10634,10646,10726,11078,11096,11606]]],["Korahite",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10646]]],["Korahites",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10634]]],["Korathites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4547]]],["Kore",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11096]]],["Korhites",[4,4,[[1,1,1,0,1,[[55,1,1,0,1]]],[12,2,2,1,3,[[349,1,1,1,2],[363,1,1,2,3]]],[13,1,1,3,4,[[386,1,1,3,4]]]],[1679,10726,11078,11606]]]]},{"k":"H7146","v":[["*",[4,3,[[2,4,3,0,3,[[102,4,3,0,3]]]],[3094,3095,3107]]],["head",[3,2,[[2,3,2,0,2,[[102,3,2,0,2]]]],[3094,3095]]],["within",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3107]]]]},{"k":"H7147","v":[["contrary",[7,7,[[2,7,7,0,7,[[115,7,7,0,7]]]],[3545,3547,3548,3551,3552,3564,3565]]]]},{"k":"H7148","v":[["famous",[2,2,[[3,2,2,0,2,[[132,1,1,0,1],[142,1,1,1,2]]]],[4196,4498]]]]},{"k":"H7149","v":[["*",[9,7,[[14,9,7,0,7,[[406,9,7,0,7]]]],[12120,12122,12123,12125,12126,12129,12131]]],["cities",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12120]]],["city",[8,6,[[14,8,6,0,6,[[406,8,6,0,6]]]],[12122,12123,12125,12126,12129,12131]]]]},{"k":"H7150","v":[["preaching",[1,1,[[31,1,1,0,1,[[891,1,1,0,1]]]],[22560]]]]},{"k":"H7151","v":[["*",[31,31,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,2,2,1,3,[[154,1,1,1,2],[155,1,1,2,3]]],[5,2,2,3,5,[[201,1,1,3,4],[207,1,1,4,5]]],[10,2,2,5,7,[[291,2,2,5,7]]],[17,1,1,7,8,[[474,1,1,7,8]]],[18,1,1,8,9,[[525,1,1,8,9]]],[19,5,5,9,14,[[637,1,1,9,10],[638,1,1,10,11],[645,2,2,11,13],[656,1,1,13,14]]],[22,10,10,14,24,[[679,2,2,14,16],[700,1,1,16,17],[702,1,1,17,18],[703,2,2,18,20],[704,1,1,20,21],[707,1,1,21,22],[710,1,1,22,23],[711,1,1,23,24]]],[23,1,1,24,25,[[793,1,1,24,25]]],[24,1,1,25,26,[[798,1,1,25,26]]],[27,1,1,26,27,[[867,1,1,26,27]]],[32,1,1,27,28,[[896,1,1,27,28]]],[34,3,3,28,31,[[904,3,3,28,31]]]],[4368,4974,4979,6215,6392,8758,8762,13841,14636,16671,16698,16912,16920,17232,17675,17680,18054,18105,18120,18121,18135,18194,18272,18299,20152,20343,22175,22630,22756,22760,22765]]],["+",[4,4,[[3,1,1,0,1,[[137,1,1,0,1]]],[19,2,2,1,3,[[645,1,1,1,2],[656,1,1,2,3]]],[32,1,1,3,4,[[896,1,1,3,4]]]],[4368,16920,17232,22630]]],["city",[27,27,[[4,2,2,0,2,[[154,1,1,0,1],[155,1,1,1,2]]],[5,2,2,2,4,[[201,1,1,2,3],[207,1,1,3,4]]],[10,2,2,4,6,[[291,2,2,4,6]]],[17,1,1,6,7,[[474,1,1,6,7]]],[18,1,1,7,8,[[525,1,1,7,8]]],[19,3,3,8,11,[[637,1,1,8,9],[638,1,1,9,10],[645,1,1,10,11]]],[22,10,10,11,21,[[679,2,2,11,13],[700,1,1,13,14],[702,1,1,14,15],[703,2,2,15,17],[704,1,1,17,18],[707,1,1,18,19],[710,1,1,19,20],[711,1,1,20,21]]],[23,1,1,21,22,[[793,1,1,21,22]]],[24,1,1,22,23,[[798,1,1,22,23]]],[27,1,1,23,24,[[867,1,1,23,24]]],[34,3,3,24,27,[[904,3,3,24,27]]]],[4974,4979,6215,6392,8758,8762,13841,14636,16671,16698,16912,17675,17680,18054,18105,18120,18121,18135,18194,18272,18299,20152,20343,22175,22756,22760,22765]]]]},{"k":"H7152","v":[["Kerioth",[4,4,[[5,1,1,0,1,[[201,1,1,0,1]]],[23,2,2,1,3,[[792,2,2,1,3]]],[29,1,1,3,4,[[880,1,1,3,4]]]],[6227,20104,20121,22381]]]]},{"k":"H7153","v":[["*",[7,7,[[0,2,2,0,2,[[22,1,1,0,1],[34,1,1,1,2]]],[5,3,3,2,5,[[200,1,1,2,3],[201,1,1,3,4],[206,1,1,4,5]]],[6,1,1,5,6,[[211,1,1,5,6]]],[15,1,1,6,7,[[423,1,1,6,7]]]],[573,1038,6202,6256,6379,6519,12613]]],["Arbah",[1,1,[[0,1,1,0,1,[[34,1,1,0,1]]]],[1038]]],["Kirjatharba",[6,6,[[0,1,1,0,1,[[22,1,1,0,1]]],[5,3,3,1,4,[[200,1,1,1,2],[201,1,1,2,3],[206,1,1,3,4]]],[6,1,1,4,5,[[211,1,1,4,5]]],[15,1,1,5,6,[[423,1,1,5,6]]]],[573,6202,6256,6379,6519,12613]]]]},{"k":"H7154","v":[["Kirjathbaal",[2,2,[[5,2,2,0,2,[[201,1,1,0,1],[204,1,1,1,2]]]],[6262,6307]]]]},{"k":"H7155","v":[["Kirjathhuzoth",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4414]]]]},{"k":"H7156","v":[["*",[6,6,[[3,1,1,0,1,[[148,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]],[12,1,1,2,3,[[343,1,1,2,3]]],[23,2,2,3,5,[[792,2,2,3,5]]],[25,1,1,5,6,[[826,1,1,5,6]]]],[4755,6173,10530,20081,20103,21092]]],["Kiriathaim",[3,3,[[23,2,2,0,2,[[792,2,2,0,2]]],[25,1,1,2,3,[[826,1,1,2,3]]]],[20081,20103,21092]]],["Kirjathaim",[3,3,[[3,1,1,0,1,[[148,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]],[12,1,1,2,3,[[343,1,1,2,3]]]],[4755,6173,10530]]]]},{"k":"H7157","v":[["*",[20,19,[[5,6,6,0,6,[[195,1,1,0,1],[201,2,2,1,3],[204,3,3,3,6]]],[6,2,1,6,7,[[228,2,1,6,7]]],[8,3,3,7,10,[[241,1,1,7,8],[242,2,2,8,10]]],[12,5,5,10,15,[[339,3,3,10,13],[350,2,2,13,15]]],[13,1,1,15,16,[[367,1,1,15,16]]],[14,1,1,16,17,[[404,1,1,16,17]]],[15,1,1,17,18,[[419,1,1,17,18]]],[23,1,1,18,19,[[770,1,1,18,19]]]],[6054,6211,6262,6307,6308,6321,7005,7352,7353,7354,10356,10358,10359,10765,10766,11198,12052,12449,19592]]],["+",[3,3,[[12,1,1,0,1,[[350,1,1,0,1]]],[13,1,1,1,2,[[367,1,1,1,2]]],[23,1,1,2,3,[[770,1,1,2,3]]]],[10765,11198,19592]]],["Kirjath",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6321]]],["Kirjatharim",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12052]]],["Kirjathjearim",[15,14,[[5,5,5,0,5,[[195,1,1,0,1],[201,2,2,1,3],[204,2,2,3,5]]],[6,2,1,5,6,[[228,2,1,5,6]]],[8,3,3,6,9,[[241,1,1,6,7],[242,2,2,7,9]]],[12,4,4,9,13,[[339,3,3,9,12],[350,1,1,12,13]]],[15,1,1,13,14,[[419,1,1,13,14]]]],[6054,6211,6262,6307,6308,7005,7352,7353,7354,10356,10358,10359,10766,12449]]]]},{"k":"H7158","v":[["*",[5,5,[[5,3,3,0,3,[[201,3,3,0,3]]],[6,2,2,3,5,[[211,2,2,3,5]]]],[6217,6218,6251,6520,6521]]],["Kirjathsannah",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6251]]],["Kirjathsepher",[4,4,[[5,2,2,0,2,[[201,2,2,0,2]]],[6,2,2,2,4,[[211,2,2,2,4]]]],[6217,6218,6520,6521]]]]},{"k":"H7159","v":[["+",[2,2,[[25,2,2,0,2,[[838,2,2,0,2]]]],[21403,21405]]]]},{"k":"H7160","v":[["*",[4,4,[[1,3,3,0,3,[[83,3,3,0,3]]],[18,1,1,3,4,[[546,1,1,3,4]]]],[2525,2526,2531,14966]]],["horns",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14966]]],["shone",[3,3,[[1,3,3,0,3,[[83,3,3,0,3]]]],[2525,2526,2531]]]]},{"k":"H7161","v":[["*",[76,69,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,10,8,1,9,[[76,2,1,1,2],[78,1,1,2,3],[79,3,3,3,6],[86,2,2,6,8],[87,2,1,8,9]]],[2,8,8,9,17,[[93,5,5,9,14],[97,1,1,14,15],[98,1,1,15,16],[105,1,1,16,17]]],[4,2,1,17,18,[[185,2,1,17,18]]],[5,1,1,18,19,[[192,1,1,18,19]]],[8,4,4,19,23,[[237,2,2,19,21],[251,2,2,21,23]]],[9,1,1,23,24,[[288,1,1,23,24]]],[10,5,5,24,29,[[291,3,3,24,27],[292,1,1,27,28],[312,1,1,28,29]]],[12,1,1,29,30,[[362,1,1,29,30]]],[13,1,1,30,31,[[384,1,1,30,31]]],[17,1,1,31,32,[[451,1,1,31,32]]],[18,13,12,32,44,[[495,1,1,32,33],[499,1,1,33,34],[552,4,3,34,37],[566,2,2,37,39],[569,1,1,39,40],[589,1,1,40,41],[595,1,1,41,42],[609,1,1,42,43],[625,1,1,43,44]]],[22,1,1,44,45,[[683,1,1,44,45]]],[23,2,2,45,47,[[761,1,1,45,46],[792,1,1,46,47]]],[24,2,2,47,49,[[798,2,2,47,49]]],[25,5,5,49,54,[[828,1,1,49,50],[830,1,1,50,51],[835,1,1,51,52],[844,2,2,52,54]]],[26,9,8,54,62,[[857,9,8,54,62]]],[29,2,2,62,64,[[881,1,1,62,63],[884,1,1,63,64]]],[32,1,1,64,65,[[896,1,1,64,65]]],[34,1,1,65,66,[[905,1,1,65,66]]],[37,5,3,66,69,[[911,5,3,66,69]]]],[560,2274,2348,2384,2385,2392,2629,2630,2635,2802,2813,2820,2825,2829,2932,2962,3219,5827,5954,7241,7250,7596,7608,8605,8756,8767,8768,8798,9491,11051,11552,13253,14120,14225,15075,15076,15081,15343,15350,15421,15812,15896,16168,16385,17740,19358,20105,20335,20349,21136,21204,21334,21587,21592,21964,21966,21967,21968,21969,21970,21981,21982,22409,22463,22633,22772,22896,22897,22899]]],["+",[2,2,[[18,1,1,0,1,[[499,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]]],[14225,17740]]],["horn",[28,28,[[5,1,1,0,1,[[192,1,1,0,1]]],[8,4,4,1,5,[[237,2,2,1,3],[251,2,2,3,5]]],[9,1,1,5,6,[[288,1,1,5,6]]],[10,1,1,6,7,[[291,1,1,6,7]]],[12,1,1,7,8,[[362,1,1,7,8]]],[17,1,1,8,9,[[451,1,1,8,9]]],[18,9,9,9,18,[[495,1,1,9,10],[552,2,2,10,12],[566,2,2,12,14],[569,1,1,14,15],[589,1,1,15,16],[609,1,1,16,17],[625,1,1,17,18]]],[23,1,1,18,19,[[792,1,1,18,19]]],[24,2,2,19,21,[[798,2,2,19,21]]],[25,1,1,21,22,[[830,1,1,21,22]]],[26,4,4,22,26,[[857,4,4,22,26]]],[32,1,1,26,27,[[896,1,1,26,27]]],[37,1,1,27,28,[[911,1,1,27,28]]]],[5954,7241,7250,7596,7608,8605,8756,11051,13253,14120,15075,15076,15343,15350,15421,15812,16168,16385,20105,20335,20349,21204,21966,21969,21970,21982,22633,22899]]],["horns",[46,40,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,10,8,1,9,[[76,2,1,1,2],[78,1,1,2,3],[79,3,3,3,6],[86,2,2,6,8],[87,2,1,8,9]]],[2,8,8,9,17,[[93,5,5,9,14],[97,1,1,14,15],[98,1,1,15,16],[105,1,1,16,17]]],[4,2,1,17,18,[[185,2,1,17,18]]],[10,4,4,18,22,[[291,2,2,18,20],[292,1,1,20,21],[312,1,1,21,22]]],[13,1,1,22,23,[[384,1,1,22,23]]],[18,3,2,23,25,[[552,2,1,23,24],[595,1,1,24,25]]],[23,1,1,25,26,[[761,1,1,25,26]]],[25,4,4,26,30,[[828,1,1,26,27],[835,1,1,27,28],[844,2,2,28,30]]],[26,5,4,30,34,[[857,5,4,30,34]]],[29,2,2,34,36,[[881,1,1,34,35],[884,1,1,35,36]]],[34,1,1,36,37,[[905,1,1,36,37]]],[37,4,3,37,40,[[911,4,3,37,40]]]],[560,2274,2348,2384,2385,2392,2629,2630,2635,2802,2813,2820,2825,2829,2932,2962,3219,5827,8767,8768,8798,9491,11552,15081,15896,19358,21136,21334,21587,21592,21964,21967,21968,21981,22409,22463,22772,22896,22897,22899]]]]},{"k":"H7162","v":[["*",[14,10,[[26,14,10,0,10,[[852,4,4,0,4],[856,10,6,4,10]]]],[21812,21814,21817,21822,21940,21941,21944,21953,21954,21957]]],["cornet",[4,4,[[26,4,4,0,4,[[852,4,4,0,4]]]],[21812,21814,21817,21822]]],["horn",[5,4,[[26,5,4,0,4,[[856,5,4,0,4]]]],[21941,21944,21953,21954]]],["horns",[5,4,[[26,5,4,0,4,[[856,5,4,0,4]]]],[21940,21941,21953,21957]]]]},{"k":"H7163","v":[["Kerenhappuch",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13936]]]]},{"k":"H7164","v":[["*",[2,2,[[22,2,2,0,2,[[724,2,2,0,2]]]],[18587,18588]]],["stoop",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18588]]],["stoopeth",[1,1,[[22,1,1,0,1,[[724,1,1,0,1]]]],[18587]]]]},{"k":"H7165","v":[["taches",[10,7,[[1,10,7,0,7,[[75,5,3,0,3],[84,1,1,3,4],[85,3,2,4,6],[88,1,1,6,7]]]],[2241,2246,2268,2542,2579,2584,2697]]]]},{"k":"H7166","v":[["feet",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8639,14154]]]]},{"k":"H7167","v":[["*",[63,60,[[0,3,3,0,3,[[36,2,2,0,2],[43,1,1,2,3]]],[1,2,2,3,5,[[77,1,1,3,4],[88,1,1,4,5]]],[2,1,1,5,6,[[102,1,1,5,6]]],[3,1,1,6,7,[[130,1,1,6,7]]],[5,1,1,7,8,[[193,1,1,7,8]]],[6,1,1,8,9,[[221,1,1,8,9]]],[8,4,4,9,13,[[239,1,1,9,10],[250,2,2,10,12],[263,1,1,12,13]]],[9,7,6,13,19,[[267,2,2,13,15],[269,1,1,15,16],[279,3,2,16,18],[281,1,1,18,19]]],[10,10,9,19,28,[[301,6,5,19,24],[303,2,2,24,26],[304,1,1,26,27],[311,1,1,27,28]]],[11,11,10,28,38,[[314,1,1,28,29],[317,3,2,29,31],[318,1,1,31,32],[323,1,1,32,33],[329,1,1,33,34],[330,1,1,34,35],[331,1,1,35,36],[334,2,2,36,38]]],[13,3,3,38,41,[[389,1,1,38,39],[400,2,2,39,41]]],[14,2,2,41,43,[[411,2,2,41,43]]],[16,1,1,43,44,[[429,1,1,43,44]]],[17,2,2,44,46,[[436,1,1,44,45],[437,1,1,45,46]]],[18,1,1,46,47,[[512,1,1,46,47]]],[20,1,1,47,48,[[661,1,1,47,48]]],[22,3,3,48,51,[[714,1,1,48,49],[715,1,1,49,50],[742,1,1,50,51]]],[23,5,5,51,56,[[748,1,1,51,52],[766,1,1,52,53],[780,2,2,53,55],[785,1,1,55,56]]],[25,2,2,56,58,[[814,2,2,56,58]]],[27,1,1,58,59,[[874,1,1,58,59]]],[28,1,1,59,60,[[877,1,1,59,60]]]],[1112,1117,1337,2325,2687,3108,4114,5982,6864,7309,7587,7588,7959,8024,8033,8112,8336,8348,8421,9119,9120,9121,9138,9139,9187,9189,9226,9478,9563,9654,9655,9704,9843,10004,10061,10062,10156,10164,11669,11952,11960,12240,12242,12763,12889,12903,14425,17366,18352,18353,18886,19057,19468,19865,19866,19962,20728,20729,22274,22324]]],["+",[24,23,[[0,1,1,0,1,[[36,1,1,0,1]]],[6,1,1,1,2,[[221,1,1,1,2]]],[8,2,2,2,4,[[250,1,1,2,3],[263,1,1,3,4]]],[9,1,1,4,5,[[279,1,1,4,5]]],[10,5,4,5,9,[[301,4,3,5,8],[304,1,1,8,9]]],[11,6,6,9,15,[[317,1,1,9,10],[318,1,1,10,11],[323,1,1,11,12],[331,1,1,12,13],[334,2,2,13,15]]],[13,3,3,15,18,[[389,1,1,15,16],[400,2,2,16,18]]],[14,1,1,18,19,[[411,1,1,18,19]]],[16,1,1,19,20,[[429,1,1,19,20]]],[17,1,1,20,21,[[436,1,1,20,21]]],[22,1,1,21,22,[[715,1,1,21,22]]],[23,1,1,22,23,[[780,1,1,22,23]]]],[1112,6864,7588,7959,8348,9119,9121,9139,9226,9655,9704,9843,10062,10156,10164,11669,11952,11960,12240,12763,12889,18353,19866]]],["Rend",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8112]]],["cut",[1,1,[[23,1,1,0,1,[[780,1,1,0,1]]]],[19865]]],["out",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19468]]],["rend",[7,7,[[1,1,1,0,1,[[88,1,1,0,1]]],[2,1,1,1,2,[[102,1,1,1,2]]],[10,1,1,2,3,[[301,1,1,2,3]]],[20,1,1,3,4,[[661,1,1,3,4]]],[22,1,1,4,5,[[742,1,1,4,5]]],[27,1,1,5,6,[[874,1,1,5,6]]],[28,1,1,6,7,[[877,1,1,6,7]]]],[2687,3108,9120,17366,18886,22274,22324]]],["rent",[25,25,[[0,2,2,0,2,[[36,1,1,0,1],[43,1,1,1,2]]],[1,1,1,2,3,[[77,1,1,2,3]]],[3,1,1,3,4,[[130,1,1,3,4]]],[5,1,1,4,5,[[193,1,1,4,5]]],[8,2,2,5,7,[[239,1,1,5,6],[250,1,1,6,7]]],[9,5,5,7,12,[[267,2,2,7,9],[279,2,2,9,11],[281,1,1,11,12]]],[10,4,4,12,16,[[301,1,1,12,13],[303,2,2,13,15],[311,1,1,15,16]]],[11,5,5,16,21,[[314,1,1,16,17],[317,2,2,17,19],[329,1,1,19,20],[330,1,1,20,21]]],[14,1,1,21,22,[[411,1,1,21,22]]],[17,1,1,22,23,[[437,1,1,22,23]]],[22,1,1,23,24,[[714,1,1,23,24]]],[23,1,1,24,25,[[785,1,1,24,25]]]],[1117,1337,2325,4114,5982,7309,7587,8024,8033,8336,8348,8421,9138,9187,9189,9478,9563,9654,9655,10004,10061,12242,12903,18352,19962]]],["rentest",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19057]]],["tear",[3,3,[[18,1,1,0,1,[[512,1,1,0,1]]],[25,2,2,1,3,[[814,2,2,1,3]]]],[14425,20728,20729]]]]},{"k":"H7168","v":[["*",[4,4,[[10,2,2,0,2,[[301,2,2,0,2]]],[11,1,1,2,3,[[314,1,1,2,3]]],[19,1,1,3,4,[[650,1,1,3,4]]]],[9138,9139,9563,17065]]],["pieces",[3,3,[[10,2,2,0,2,[[301,2,2,0,2]]],[11,1,1,2,3,[[314,1,1,2,3]]]],[9138,9139,9563]]],["rags",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17065]]]]},{"k":"H7169","v":[["*",[5,5,[[17,1,1,0,1,[[468,1,1,0,1]]],[18,1,1,1,2,[[512,1,1,1,2]]],[19,3,3,2,5,[[633,1,1,2,3],[637,1,1,3,4],[643,1,1,4,5]]]],[13656,14429,16553,16666,16870]]],["formed",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13656]]],["moving",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16870]]],["wink",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14429]]],["winketh",[2,2,[[19,2,2,0,2,[[633,1,1,0,1],[637,1,1,1,2]]]],[16553,16666]]]]},{"k":"H7170","v":[["+",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[855,1,1,1,2]]]],[21815,21929]]]]},{"k":"H7171","v":[["destruction",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20065]]]]},{"k":"H7172","v":[["*",[8,6,[[3,1,1,0,1,[[121,1,1,0,1]]],[10,6,4,1,5,[[296,4,3,1,4],[297,2,1,4,5]]],[29,1,1,5,6,[[887,1,1,5,6]]]],[3809,8911,8912,8926,8941,22498]]],["+",[2,2,[[10,2,2,0,2,[[296,1,1,0,1],[297,1,1,1,2]]]],[8911,8941]]],["bottom",[1,1,[[29,1,1,0,1,[[887,1,1,0,1]]]],[22498]]],["floor",[4,4,[[3,1,1,0,1,[[121,1,1,0,1]]],[10,3,3,1,4,[[296,3,3,1,4]]]],[3809,8911,8912,8926]]],["other",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8941]]]]},{"k":"H7173","v":[["Karkaa",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6205]]]]},{"k":"H7174","v":[["Karkor",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6729]]]]},{"k":"H7175","v":[["*",[51,34,[[1,48,31,0,31,[[75,23,14,0,14],[84,1,1,14,15],[85,22,14,15,29],[88,1,1,29,30],[89,1,1,30,31]]],[3,2,2,31,33,[[119,1,1,31,32],[120,1,1,32,33]]],[25,1,1,33,34,[[828,1,1,33,34]]]],[2250,2251,2252,2253,2254,2255,2256,2257,2258,2260,2261,2262,2263,2264,2542,2586,2587,2588,2589,2590,2591,2592,2593,2594,2596,2597,2598,2599,2600,2697,2725,3728,3774,21127]]],["+",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2542]]],["benches",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21127]]],["board",[17,10,[[1,17,10,0,10,[[75,9,5,0,5],[85,8,5,5,10]]]],[2251,2252,2254,2256,2260,2587,2588,2590,2592,2596]]],["boards",[32,28,[[1,30,26,0,26,[[75,14,12,0,12],[85,14,12,12,24],[88,1,1,24,25],[89,1,1,25,26]]],[3,2,2,26,28,[[119,1,1,26,27],[120,1,1,27,28]]]],[2250,2252,2253,2254,2255,2257,2258,2260,2261,2262,2263,2264,2586,2588,2589,2590,2591,2593,2594,2596,2597,2598,2599,2600,2697,2725,3728,3774]]]]},{"k":"H7176","v":[["city",[5,5,[[17,1,1,0,1,[[464,1,1,0,1]]],[19,4,4,1,5,[[635,1,1,1,2],[636,2,2,2,4],[638,1,1,4,5]]]],[13539,16605,16641,16652,16699]]]]},{"k":"H7177","v":[["Kartah",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6415]]]]},{"k":"H7178","v":[["Kartan",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6413]]]]},{"k":"H7179","v":[["stubble",[16,16,[[1,2,2,0,2,[[54,1,1,0,1],[64,1,1,1,2]]],[17,3,3,2,5,[[448,1,1,2,3],[476,2,2,3,5]]],[18,1,1,5,6,[[560,1,1,5,6]]],[22,5,5,6,11,[[683,1,1,6,7],[711,1,1,7,8],[718,1,1,8,9],[719,1,1,9,10],[725,1,1,10,11]]],[23,1,1,11,12,[[757,1,1,11,12]]],[28,1,1,12,13,[[877,1,1,12,13]]],[30,1,1,13,14,[[888,1,1,13,14]]],[33,1,1,14,15,[[900,1,1,14,15]]],[38,1,1,15,16,[[928,1,1,15,16]]]],[1644,1927,13178,13916,13917,15254,17763,18290,18444,18453,18613,19290,22316,22528,22694,23139]]]]},{"k":"H7180","v":[["cucumbers",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4029]]]]},{"k":"H7181","v":[["*",[46,45,[[8,1,1,0,1,[[250,1,1,0,1]]],[13,2,2,1,3,[[386,1,1,1,2],[399,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[17,2,2,4,6,[[448,1,1,4,5],[468,1,1,5,6]]],[18,8,8,6,14,[[482,1,1,6,7],[487,1,1,7,8],[494,1,1,8,9],[532,1,1,9,10],[538,1,1,10,11],[543,1,1,11,12],[563,1,1,12,13],[619,1,1,13,14]]],[19,8,8,14,22,[[628,1,1,14,15],[629,1,1,15,16],[631,2,2,16,18],[632,1,1,18,19],[634,1,1,19,20],[644,1,1,20,21],[656,1,1,21,22]]],[21,1,1,22,23,[[678,1,1,22,23]]],[22,9,9,23,32,[[688,1,1,23,24],[699,1,1,24,25],[706,1,1,25,26],[710,1,1,26,27],[712,1,1,27,28],[720,1,1,28,29],[726,1,1,29,30],[727,1,1,30,31],[729,1,1,31,32]]],[23,8,7,32,39,[[750,4,3,32,35],[752,1,1,35,36],[762,2,2,36,38],[767,1,1,38,39]]],[26,1,1,39,40,[[858,1,1,39,40]]],[27,1,1,40,41,[[866,1,1,40,41]]],[32,1,1,41,42,[[893,1,1,41,42]]],[37,2,2,42,44,[[911,1,1,42,43],[917,1,1,43,44]]],[38,1,1,44,45,[[927,1,1,44,45]]]],[7582,11602,11918,12545,13159,13681,13975,14058,14104,14734,14820,14892,15290,16292,16424,16435,16491,16510,16518,16599,16877,17236,17653,17880,18042,18187,18262,18304,18503,18632,18637,18677,19099,19106,19108,19159,19402,19403,19502,22007,22153,22581,22882,22973,23136]]],["Attend",[2,2,[[18,2,2,0,2,[[532,1,1,0,1],[619,1,1,1,2]]]],[14734,16292]]],["Hearken",[4,4,[[13,1,1,0,1,[[386,1,1,0,1]]],[18,1,1,1,2,[[482,1,1,1,2]]],[22,1,1,2,3,[[729,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]]],[11602,13975,18677,19106]]],["attend",[6,6,[[18,2,2,0,2,[[494,1,1,0,1],[563,1,1,1,2]]],[19,4,4,2,6,[[631,2,2,2,4],[632,1,1,4,5],[634,1,1,5,6]]]],[14104,15290,16491,16510,16518,16599]]],["attended",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14892]]],["hear",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14058]]],["heard",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17880]]],["hearken",[17,17,[[8,1,1,0,1,[[250,1,1,0,1]]],[13,1,1,1,2,[[399,1,1,1,2]]],[17,1,1,2,3,[[448,1,1,2,3]]],[19,1,1,3,4,[[656,1,1,3,4]]],[21,1,1,4,5,[[678,1,1,4,5]]],[22,5,5,5,10,[[706,1,1,5,6],[710,1,1,6,7],[712,1,1,7,8],[720,1,1,8,9],[727,1,1,9,10]]],[23,2,2,10,12,[[750,2,2,10,12]]],[26,1,1,12,13,[[858,1,1,12,13]]],[27,1,1,13,14,[[866,1,1,13,14]]],[32,1,1,14,15,[[893,1,1,14,15]]],[37,2,2,15,17,[[911,1,1,15,16],[917,1,1,16,17]]]],[7582,11918,13159,17236,17653,18187,18262,18304,18503,18637,19099,19106,22007,22153,22581,22882,22973]]],["hearkened",[6,6,[[15,1,1,0,1,[[421,1,1,0,1]]],[22,2,2,1,3,[[699,1,1,1,2],[726,1,1,2,3]]],[23,2,2,3,5,[[750,1,1,3,4],[752,1,1,4,5]]],[38,1,1,5,6,[[927,1,1,5,6]]]],[12545,18042,18632,19108,19159,23136]]],["heed",[3,3,[[19,1,1,0,1,[[644,1,1,0,1]]],[23,2,2,1,3,[[762,2,2,1,3]]]],[16877,19402,19403]]],["incline",[1,1,[[19,1,1,0,1,[[629,1,1,0,1]]]],[16435]]],["marked",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19502]]],["regarded",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16424]]],["unto",[1,1,[[18,1,1,0,1,[[538,1,1,0,1]]]],[14820]]],["well",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13681]]]]},{"k":"H7182","v":[["*",[4,3,[[10,1,1,0,1,[[308,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]],[22,2,1,2,3,[[699,2,1,2,3]]]],[9370,9634,18042]]],["diligently",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18042]]],["hearing",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9634]]],["heed",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18042]]],["regarded",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9370]]]]},{"k":"H7183","v":[["*",[5,5,[[13,2,2,0,2,[[372,1,1,0,1],[373,1,1,1,2]]],[15,2,2,2,4,[[413,2,2,2,4]]],[18,1,1,4,5,[[607,1,1,4,5]]]],[11322,11339,12302,12307,16142]]],["attent",[2,2,[[13,2,2,0,2,[[372,1,1,0,1],[373,1,1,1,2]]]],[11322,11339]]],["attentive",[3,3,[[15,2,2,0,2,[[413,2,2,0,2]]],[18,1,1,2,3,[[607,1,1,2,3]]]],[12302,12307,16142]]]]},{"k":"H7184","v":[["*",[4,4,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]],[12,1,1,3,4,[[365,1,1,3,4]]]],[2224,2620,3750,11160]]],["covers",[3,3,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[3,1,1,2,3,[[120,1,1,2,3]]]],[2224,2620,3750]]],["cups",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11160]]]]},{"k":"H7185","v":[["*",[28,28,[[0,3,3,0,3,[[34,2,2,0,2],[48,1,1,2,3]]],[1,2,2,3,5,[[56,1,1,3,4],[62,1,1,4,5]]],[4,4,4,5,9,[[153,1,1,5,6],[154,1,1,6,7],[162,1,1,7,8],[167,1,1,8,9]]],[8,1,1,9,10,[[240,1,1,9,10]]],[9,1,1,10,11,[[285,1,1,10,11]]],[10,1,1,11,12,[[302,1,1,11,12]]],[11,2,2,12,14,[[314,1,1,12,13],[329,1,1,13,14]]],[13,3,3,14,17,[[376,1,1,14,15],[396,1,1,15,16],[402,1,1,16,17]]],[15,3,3,17,20,[[421,3,3,17,20]]],[17,1,1,20,21,[[444,1,1,20,21]]],[18,1,1,21,22,[[572,1,1,21,22]]],[19,2,2,22,24,[[655,1,1,22,23],[656,1,1,23,24]]],[22,1,1,24,25,[[686,1,1,24,25]]],[23,3,3,25,28,[[751,1,1,25,26],[761,1,1,26,27],[763,1,1,27,28]]]],[1027,1028,1480,1688,1882,4909,4968,5202,5337,7326,8554,9155,9561,9997,11399,11835,12006,12527,12528,12540,13055,15462,17210,17225,17828,19145,19380,19422]]],["+",[11,11,[[1,1,1,0,1,[[56,1,1,0,1]]],[4,3,3,1,4,[[154,1,1,1,2],[162,1,1,2,3],[167,1,1,3,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[13,2,2,5,7,[[396,1,1,5,6],[402,1,1,6,7]]],[15,2,2,7,9,[[421,2,2,7,9]]],[23,2,2,9,11,[[751,1,1,9,10],[763,1,1,10,11]]]],[1688,4968,5202,5337,9997,11835,12006,12527,12528,19145,19422]]],["Harden",[1,1,[[18,1,1,0,1,[[572,1,1,0,1]]]],[15462]]],["bestead",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17828]]],["cruel",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1480]]],["fiercer",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8554]]],["grievous",[2,2,[[10,1,1,0,1,[[302,1,1,0,1]]],[13,1,1,1,2,[[376,1,1,1,2]]]],[9155,11399]]],["hard",[3,3,[[0,2,2,0,2,[[34,2,2,0,2]]],[4,1,1,2,3,[[153,1,1,2,3]]]],[1027,1028,4909]]],["hardened",[2,2,[[15,1,1,0,1,[[421,1,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]]],[12540,13055]]],["hardeneth",[2,2,[[19,2,2,0,2,[[655,1,1,0,1],[656,1,1,1,2]]]],[17210,17225]]],["hardly",[1,1,[[1,1,1,0,1,[[62,1,1,0,1]]]],[1882]]],["sore",[1,1,[[8,1,1,0,1,[[240,1,1,0,1]]]],[7326]]],["stiff",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19380]]],["thing",[1,1,[[11,1,1,0,1,[[314,1,1,0,1]]]],[9561]]]]},{"k":"H7186","v":[["*",[36,36,[[0,2,2,0,2,[[41,2,2,0,2]]],[1,7,7,2,9,[[50,1,1,2,3],[55,1,1,3,4],[67,1,1,4,5],[81,1,1,5,6],[82,2,2,6,8],[83,1,1,8,9]]],[4,4,4,9,13,[[161,2,2,9,11],[178,1,1,11,12],[183,1,1,12,13]]],[6,2,2,13,15,[[212,1,1,13,14],[214,1,1,14,15]]],[8,3,3,15,18,[[236,1,1,15,16],[255,1,1,16,17],[260,1,1,17,18]]],[9,2,2,18,20,[[268,1,1,18,19],[269,1,1,19,20]]],[10,3,3,20,23,[[302,2,2,20,22],[304,1,1,22,23]]],[13,2,2,23,25,[[376,2,2,23,25]]],[17,1,1,25,26,[[465,1,1,25,26]]],[18,1,1,26,27,[[537,1,1,26,27]]],[21,1,1,27,28,[[678,1,1,27,28]]],[22,6,6,28,34,[[692,1,1,28,29],[697,1,1,29,30],[699,1,1,30,31],[705,2,2,31,33],[726,1,1,33,34]]],[25,2,2,34,36,[[803,1,1,34,35],[804,1,1,35,36]]]],[1259,1282,1546,1664,2025,2447,2476,2478,2505,5163,5170,5572,5755,6564,6623,7227,7740,7864,8066,8120,9155,9164,9224,11399,11408,13582,14810,17646,17931,18008,18037,18152,18159,18618,20496,20509]]],["+",[13,13,[[1,6,6,0,6,[[55,1,1,0,1],[67,1,1,1,2],[81,1,1,2,3],[82,2,2,3,5],[83,1,1,5,6]]],[4,2,2,6,8,[[161,2,2,6,8]]],[6,2,2,8,10,[[212,1,1,8,9],[214,1,1,9,10]]],[17,1,1,10,11,[[465,1,1,10,11]]],[25,2,2,11,13,[[803,1,1,11,12],[804,1,1,12,13]]]],[1664,2025,2447,2476,2478,2505,5163,5170,6564,6623,13582,20496,20509]]],["churlish",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7864]]],["cruel",[2,2,[[21,1,1,0,1,[[678,1,1,0,1]]],[22,1,1,1,2,[[697,1,1,1,2]]]],[17646,18008]]],["grievous",[3,3,[[10,1,1,0,1,[[302,1,1,0,1]]],[13,1,1,1,2,[[376,1,1,1,2]]],[22,1,1,2,3,[[699,1,1,2,3]]]],[9155,11399,18037]]],["hard",[5,5,[[1,1,1,0,1,[[50,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]],[9,1,1,2,3,[[269,1,1,2,3]]],[18,1,1,3,4,[[537,1,1,3,4]]],[22,1,1,4,5,[[692,1,1,4,5]]]],[1546,5572,8120,14810,17931]]],["heavy",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9224]]],["obstinate",[1,1,[[22,1,1,0,1,[[726,1,1,0,1]]]],[18618]]],["rough",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18159]]],["roughly",[5,5,[[0,2,2,0,2,[[41,2,2,0,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[10,1,1,3,4,[[302,1,1,3,4]]],[13,1,1,4,5,[[376,1,1,4,5]]]],[1259,1282,7740,9164,11408]]],["sore",[2,2,[[9,1,1,0,1,[[268,1,1,0,1]]],[22,1,1,1,2,[[705,1,1,1,2]]]],[8066,18152]]],["sorrowful",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7227]]],["stiff",[1,1,[[4,1,1,0,1,[[183,1,1,0,1]]]],[5755]]]]},{"k":"H7187","v":[["truth",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21805,21874]]]]},{"k":"H7188","v":[["hardened",[2,2,[[17,1,1,0,1,[[474,1,1,0,1]]],[22,1,1,1,2,[[741,1,1,1,2]]]],[13850,18883]]]]},{"k":"H7189","v":[["*",[2,2,[[18,1,1,0,1,[[537,1,1,0,1]]],[19,1,1,1,2,[[649,1,1,1,2]]]],[14811,17036]]],["certainty",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17036]]],["truth",[1,1,[[18,1,1,0,1,[[537,1,1,0,1]]]],[14811]]]]},{"k":"H7190","v":[["stubbornness",[1,1,[[4,1,1,0,1,[[161,1,1,0,1]]]],[5184]]]]},{"k":"H7191","v":[["*",[2,2,[[5,2,2,0,2,[[205,1,1,0,1],[207,1,1,1,2]]]],[6341,6409]]],["Kishion",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6341]]],["Kishon",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6409]]]]},{"k":"H7192","v":[["*",[3,3,[[0,1,1,0,1,[[32,1,1,0,1]]],[5,1,1,1,2,[[210,1,1,1,2]]],[17,1,1,2,3,[[477,1,1,2,3]]]],[979,6508,13933]]],["+",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13933]]],["money",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[979]]],["silver",[1,1,[[5,1,1,0,1,[[210,1,1,0,1]]]],[6508]]]]},{"k":"H7193","v":[["*",[8,7,[[2,3,3,0,3,[[100,3,3,0,3]]],[4,2,2,3,5,[[166,2,2,3,5]]],[8,1,1,5,6,[[252,1,1,5,6]]],[25,2,1,6,7,[[830,2,1,6,7]]]],[3006,3007,3009,5299,5300,7623,21187]]],["mail",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7623]]],["scales",[7,6,[[2,3,3,0,3,[[100,3,3,0,3]]],[4,2,2,3,5,[[166,2,2,3,5]]],[25,2,1,5,6,[[830,2,1,5,6]]]],[3006,3007,3009,5299,5300,21187]]]]},{"k":"H7194","v":[["*",[44,44,[[0,4,4,0,4,[[29,2,2,0,2],[37,1,1,2,3],[43,1,1,3,4]]],[4,2,2,4,6,[[158,1,1,4,5],[163,1,1,5,6]]],[5,2,2,6,8,[[188,2,2,6,8]]],[8,3,3,8,11,[[253,1,1,8,9],[257,2,2,9,11]]],[9,1,1,11,12,[[281,1,1,11,12]]],[10,4,4,12,16,[[305,1,1,12,13],[306,3,3,13,16]]],[11,10,10,16,26,[[321,1,1,16,17],[322,1,1,17,18],[324,1,1,18,19],[326,1,1,19,20],[327,4,4,20,24],[333,2,2,24,26]]],[13,6,6,26,32,[[390,3,3,26,29],[391,1,1,29,30],[399,2,2,30,32]]],[15,2,2,32,34,[[416,2,2,32,34]]],[17,3,3,34,37,[[473,1,1,34,35],[474,1,1,35,36],[476,1,1,36,37]]],[19,4,4,37,41,[[630,1,1,37,38],[633,1,1,38,39],[634,1,1,39,40],[649,1,1,40,41]]],[22,1,1,41,42,[[727,1,1,41,42]]],[23,1,1,42,43,[[795,1,1,42,43]]],[29,1,1,43,44,[[885,1,1,43,44]]]],[871,872,1147,1354,5094,5226,5887,5890,7677,7795,7800,8420,9276,9292,9299,9303,9770,9802,9870,9915,9935,9940,9950,9955,10142,10143,11698,11702,11703,11731,11932,11933,12365,12367,13824,13844,13893,16458,16561,16578,17030,18654,20275,22474]]],["+",[2,2,[[5,2,2,0,2,[[188,2,2,0,2]]]],[5887,5890]]],["Bind",[2,2,[[19,2,2,0,2,[[633,1,1,0,1],[634,1,1,1,2]]]],[16561,16578]]],["bind",[8,8,[[4,2,2,0,2,[[158,1,1,0,1],[163,1,1,1,2]]],[17,3,3,2,5,[[473,1,1,2,3],[474,1,1,3,4],[476,1,1,4,5]]],[19,1,1,5,6,[[630,1,1,5,6]]],[22,1,1,6,7,[[727,1,1,6,7]]],[23,1,1,7,8,[[795,1,1,7,8]]]],[5094,5226,13824,13844,13893,16458,18654,20275]]],["bound",[2,2,[[0,1,1,0,1,[[37,1,1,0,1]]],[19,1,1,1,2,[[649,1,1,1,2]]]],[1147,17030]]],["conspirators",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8420]]],["conspired",[18,18,[[8,2,2,0,2,[[257,2,2,0,2]]],[10,3,3,2,5,[[305,1,1,2,3],[306,2,2,3,5]]],[11,6,6,5,11,[[321,1,1,5,6],[322,1,1,6,7],[327,2,2,7,9],[333,2,2,9,11]]],[13,5,5,11,16,[[390,3,3,11,14],[399,2,2,14,16]]],[15,1,1,16,17,[[416,1,1,16,17]]],[29,1,1,17,18,[[885,1,1,17,18]]]],[7795,7800,9276,9292,9299,9770,9802,9935,9950,10142,10143,11698,11702,11703,11932,11933,12367,22474]]],["knit",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7677]]],["made",[5,5,[[11,4,4,0,4,[[324,1,1,0,1],[326,1,1,1,2],[327,2,2,2,4]]],[13,1,1,4,5,[[391,1,1,4,5]]]],[9870,9915,9940,9955,11731]]],["stronger",[2,2,[[0,2,2,0,2,[[29,2,2,0,2]]]],[871,872]]],["together",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12365]]],["up",[1,1,[[0,1,1,0,1,[[43,1,1,0,1]]]],[1354]]],["wrought",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9303]]]]},{"k":"H7195","v":[["*",[16,13,[[9,1,1,0,1,[[281,1,1,0,1]]],[10,1,1,1,2,[[306,1,1,1,2]]],[11,7,6,2,8,[[323,2,1,2,3],[324,1,1,3,4],[326,1,1,4,5],[327,2,2,5,7],[329,1,1,7,8]]],[13,3,2,8,10,[[389,2,1,8,9],[391,1,1,9,10]]],[22,2,1,10,11,[[686,2,1,10,11]]],[23,1,1,11,12,[[755,1,1,11,12]]],[25,1,1,12,13,[[823,1,1,12,13]]]],[8401,9303,9843,9870,9915,9940,9955,9987,11669,11731,17819,19235,21001]]],["Treason",[4,2,[[11,2,1,0,1,[[323,2,1,0,1]]],[13,2,1,1,2,[[389,2,1,1,2]]]],[9843,11669]]],["confederacy",[2,1,[[22,2,1,0,1,[[686,2,1,0,1]]]],[17819]]],["conspiracy",[9,9,[[9,1,1,0,1,[[281,1,1,0,1]]],[11,5,5,1,6,[[324,1,1,1,2],[326,1,1,2,3],[327,2,2,3,5],[329,1,1,5,6]]],[13,1,1,6,7,[[391,1,1,6,7]]],[23,1,1,7,8,[[755,1,1,7,8]]],[25,1,1,8,9,[[823,1,1,8,9]]]],[8401,9870,9915,9940,9955,9987,11731,19235,21001]]],["treason",[1,1,[[10,1,1,0,1,[[306,1,1,0,1]]]],[9303]]]]},{"k":"H7196","v":[["*",[2,2,[[22,1,1,0,1,[[681,1,1,0,1]]],[23,1,1,1,2,[[746,1,1,1,2]]]],[17727,18997]]],["attire",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18997]]],["headbands",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17727]]]]},{"k":"H7197","v":[["*",[8,7,[[1,2,2,0,2,[[54,2,2,0,2]]],[3,2,2,2,4,[[131,2,2,2,4]]],[10,2,2,4,6,[[307,2,2,4,6]]],[35,2,1,6,7,[[907,2,1,6,7]]]],[1639,1644,4185,4186,9327,9329,22806]]],["gather",[2,2,[[1,2,2,0,2,[[54,2,2,0,2]]]],[1639,1644]]],["gathered",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4185]]],["gathering",[3,3,[[3,1,1,0,1,[[131,1,1,0,1]]],[10,2,2,1,3,[[307,2,2,1,3]]]],[4186,9327,9329]]],["together",[2,1,[[35,2,1,0,1,[[907,2,1,0,1]]]],[22806]]]]},{"k":"H7198","v":[["*",[75,73,[[0,7,7,0,7,[[8,3,3,0,3],[20,1,1,3,4],[26,1,1,4,5],[47,1,1,5,6],[48,1,1,6,7]]],[5,1,1,7,8,[[210,1,1,7,8]]],[8,2,2,8,10,[[237,1,1,8,9],[253,1,1,9,10]]],[9,3,3,10,13,[[267,2,2,10,12],[288,1,1,12,13]]],[10,1,1,13,14,[[312,1,1,13,14]]],[11,5,4,14,18,[[318,1,1,14,15],[321,1,1,15,16],[325,3,2,16,18]]],[12,5,4,18,22,[[342,1,1,18,19],[345,1,1,19,20],[347,1,1,20,21],[349,2,1,21,22]]],[13,4,4,22,26,[[380,1,1,22,23],[383,1,1,23,24],[384,1,1,24,25],[392,1,1,25,26]]],[15,2,2,26,28,[[416,2,2,26,28]]],[17,3,3,28,31,[[455,1,1,28,29],[464,1,1,29,30],[476,1,1,30,31]]],[18,10,10,31,41,[[484,1,1,31,32],[488,1,1,32,33],[495,1,1,33,34],[514,2,2,34,36],[521,1,1,36,37],[523,1,1,37,38],[553,1,1,38,39],[555,2,2,39,41]]],[22,8,8,41,49,[[683,1,1,41,42],[685,1,1,42,43],[691,1,1,43,44],[699,2,2,44,46],[700,1,1,46,47],[719,1,1,47,48],[744,1,1,48,49]]],[23,10,10,49,59,[[748,1,1,49,50],[750,1,1,50,51],[753,1,1,51,52],[790,1,1,52,53],[793,1,1,53,54],[794,3,3,54,57],[795,2,2,57,59]]],[24,2,2,59,61,[[798,1,1,59,60],[799,1,1,60,61]]],[25,3,3,61,64,[[802,1,1,61,62],[840,2,2,62,64]]],[27,4,4,64,68,[[862,2,2,64,66],[863,1,1,66,67],[868,1,1,67,68]]],[29,1,1,68,69,[[880,1,1,68,69]]],[34,1,1,69,70,[[905,1,1,69,70]]],[37,3,3,70,73,[[919,2,2,70,72],[920,1,1,72,73]]]],[218,219,221,529,730,1473,1497,6488,7244,7680,8040,8044,8637,9514,9696,9780,9886,9887,10446,10615,10662,10722,11483,11540,11575,11746,12372,12375,13350,13552,13916,14007,14061,14152,14464,14465,14577,14623,15084,15122,15170,17767,17806,17924,18050,18052,18055,18453,18941,19056,19112,19178,20054,20162,20180,20195,20208,20215,20268,20336,20366,20492,21451,21457,22099,22101,22123,22194,22394,22777,23009,23012,23020]]],["+",[6,6,[[0,1,1,0,1,[[20,1,1,0,1]]],[12,2,2,1,3,[[345,1,1,1,2],[347,1,1,2,3]]],[17,1,1,3,4,[[476,1,1,3,4]]],[22,1,1,4,5,[[700,1,1,4,5]]],[23,1,1,5,6,[[748,1,1,5,6]]]],[529,10615,10662,13916,18055,19056]]],["archers",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18052]]],["bow",[55,54,[[0,6,6,0,6,[[8,3,3,0,3],[26,1,1,3,4],[47,1,1,4,5],[48,1,1,5,6]]],[5,1,1,6,7,[[210,1,1,6,7]]],[8,1,1,7,8,[[253,1,1,7,8]]],[9,3,3,8,11,[[267,2,2,8,10],[288,1,1,10,11]]],[10,1,1,11,12,[[312,1,1,11,12]]],[11,5,4,12,16,[[318,1,1,12,13],[321,1,1,13,14],[325,3,2,14,16]]],[12,2,2,16,18,[[342,1,1,16,17],[349,1,1,17,18]]],[13,2,2,18,20,[[383,1,1,18,19],[384,1,1,19,20]]],[17,2,2,20,22,[[455,1,1,20,21],[464,1,1,21,22]]],[18,8,8,22,30,[[484,1,1,22,23],[488,1,1,23,24],[495,1,1,24,25],[514,1,1,25,26],[521,1,1,26,27],[523,1,1,27,28],[553,1,1,28,29],[555,1,1,29,30]]],[22,3,3,30,33,[[699,1,1,30,31],[719,1,1,31,32],[744,1,1,32,33]]],[23,8,8,33,41,[[750,1,1,33,34],[753,1,1,34,35],[790,1,1,35,36],[793,1,1,36,37],[794,3,3,37,40],[795,1,1,40,41]]],[24,2,2,41,43,[[798,1,1,41,42],[799,1,1,42,43]]],[25,2,2,43,45,[[802,1,1,43,44],[840,1,1,44,45]]],[27,4,4,45,49,[[862,2,2,45,47],[863,1,1,47,48],[868,1,1,48,49]]],[29,1,1,49,50,[[880,1,1,49,50]]],[34,1,1,50,51,[[905,1,1,50,51]]],[37,3,3,51,54,[[919,2,2,51,53],[920,1,1,53,54]]]],[218,219,221,730,1473,1497,6488,7680,8040,8044,8637,9514,9696,9780,9886,9887,10446,10722,11540,11575,13350,13552,14007,14061,14152,14464,14577,14623,15084,15170,18050,18453,18941,19112,19178,20054,20162,20180,20195,20208,20215,20336,20366,20492,21451,22099,22101,22123,22194,22394,22777,23009,23012,23020]]],["bows",[13,13,[[8,1,1,0,1,[[237,1,1,0,1]]],[12,1,1,1,2,[[349,1,1,1,2]]],[13,2,2,2,4,[[380,1,1,2,3],[392,1,1,3,4]]],[15,2,2,4,6,[[416,2,2,4,6]]],[18,2,2,6,8,[[514,1,1,6,7],[555,1,1,7,8]]],[22,3,3,8,11,[[683,1,1,8,9],[685,1,1,9,10],[691,1,1,10,11]]],[23,1,1,11,12,[[795,1,1,11,12]]],[25,1,1,12,13,[[840,1,1,12,13]]]],[7244,10722,11483,11746,12372,12375,14465,15122,17767,17806,17924,20268,21457]]]]},{"k":"H7199","v":[["+",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[533]]]]},{"k":"H7200","v":[["*",[1308,1208,[[0,140,132,0,132,[[0,8,8,0,8],[1,1,1,8,9],[2,1,1,9,10],[5,3,3,10,13],[6,1,1,13,14],[7,3,3,14,17],[8,4,4,17,21],[10,1,1,21,22],[11,6,5,22,27],[12,3,3,27,30],[15,4,3,30,33],[16,1,1,33,34],[17,4,3,34,37],[18,2,2,37,39],[19,1,1,39,40],[20,3,3,40,43],[21,4,4,43,47],[23,3,3,47,50],[25,5,4,50,54],[26,2,2,54,56],[27,2,2,56,58],[28,4,4,58,62],[29,2,2,62,64],[30,8,7,64,71],[31,4,4,71,75],[32,4,3,75,78],[33,2,2,78,80],[34,2,2,80,82],[36,5,5,82,87],[37,3,3,87,90],[38,4,4,90,94],[39,2,2,94,96],[40,5,5,96,101],[41,8,7,101,108],[42,4,4,108,112],[43,5,5,112,117],[44,4,4,117,121],[45,2,2,121,123],[47,6,5,123,128],[48,1,1,128,129],[49,3,3,129,132]]],[1,92,80,132,212,[[50,1,1,132,133],[51,7,6,133,139],[52,9,6,139,145],[53,6,6,145,151],[54,2,2,151,153],[55,2,2,153,155],[56,1,1,155,156],[57,1,1,156,157],[58,2,2,157,159],[59,7,6,159,165],[61,2,2,165,167],[62,3,2,167,169],[63,5,3,169,172],[65,5,5,172,177],[67,1,1,177,178],[68,2,2,178,180],[69,3,2,180,182],[71,1,1,182,183],[72,3,3,183,186],[73,1,1,186,187],[74,3,2,187,189],[75,1,1,189,190],[76,1,1,190,191],[80,1,1,191,192],[81,5,5,192,197],[82,8,6,197,203],[83,7,7,203,210],[84,1,1,210,211],[88,1,1,211,212]]],[2,48,44,212,256,[[94,1,1,212,213],[98,4,4,213,217],[102,32,30,217,247],[103,8,7,247,254],[105,1,1,254,255],[109,2,1,255,256]]],[3,47,44,256,300,[[120,1,1,256,257],[124,1,1,257,258],[127,2,2,258,260],[129,5,5,260,265],[130,5,4,265,269],[131,1,1,269,270],[132,2,2,270,272],[133,1,1,272,273],[136,2,2,273,275],[137,1,1,275,276],[138,7,7,276,283],[139,6,4,283,287],[140,5,5,287,292],[141,1,1,292,293],[143,2,2,293,295],[148,4,4,295,299],[151,1,1,299,300]]],[4,68,66,300,366,[[153,8,8,300,308],[154,2,2,308,310],[155,5,5,310,315],[156,9,9,315,324],[157,2,1,324,325],[159,1,1,325,326],[161,2,2,326,328],[162,1,1,328,329],[163,3,3,329,332],[164,1,1,332,333],[168,3,2,333,335],[170,1,1,335,336],[172,1,1,336,337],[173,2,2,337,339],[174,2,2,339,341],[175,1,1,341,342],[178,1,1,342,343],[180,5,5,343,348],[181,5,5,348,353],[182,1,1,353,354],[183,2,2,354,356],[184,6,6,356,362],[185,2,2,362,364],[186,2,2,364,366]]],[5,16,16,366,382,[[188,1,1,366,367],[189,1,1,367,368],[191,2,2,368,370],[192,1,1,370,371],[193,1,1,371,372],[194,6,6,372,378],[208,1,1,378,379],[209,2,2,379,381],[210,1,1,381,382]]],[6,44,40,382,422,[[211,3,2,382,384],[212,1,1,384,385],[213,1,1,385,386],[214,1,1,386,387],[215,1,1,387,388],[216,3,2,388,390],[217,1,1,390,391],[219,5,4,391,395],[221,1,1,395,396],[222,1,1,396,397],[223,7,7,397,404],[224,4,4,404,408],[226,5,5,408,413],[228,3,3,413,416],[229,4,3,416,419],[230,2,2,419,421],[231,1,1,421,422]]],[7,2,2,422,424,[[232,1,1,422,423],[233,1,1,423,424]]],[8,80,71,424,495,[[236,3,2,424,426],[238,2,2,426,428],[239,1,1,428,429],[240,1,1,429,430],[241,5,4,430,434],[244,7,6,434,440],[245,3,3,440,443],[247,4,4,443,447],[248,2,2,447,449],[249,5,5,449,454],[250,1,1,454,455],[251,7,5,455,460],[252,6,6,460,466],[253,2,2,466,468],[254,4,4,468,472],[255,1,1,472,473],[256,1,1,473,474],[257,1,1,474,475],[258,4,3,475,478],[259,5,3,478,481],[260,4,4,481,485],[261,4,4,485,489],[263,5,4,489,493],[266,2,2,493,495]]],[9,47,42,495,537,[[267,1,1,495,496],[269,2,1,496,497],[272,1,1,497,498],[273,1,1,498,499],[276,5,5,499,504],[277,1,1,504,505],[278,1,1,505,506],[279,5,4,506,510],[280,5,4,510,514],[281,4,4,514,518],[282,1,1,518,519],[283,3,3,519,522],[284,8,7,522,529],[286,2,1,529,530],[288,2,2,530,532],[290,5,5,532,537]]],[10,36,33,537,570,[[291,1,1,537,538],[293,2,2,538,540],[296,1,1,540,541],[298,2,1,541,542],[299,3,2,542,544],[300,3,3,544,547],[301,2,2,547,549],[302,2,1,549,550],[303,2,2,550,552],[304,1,1,552,553],[306,1,1,553,554],[307,1,1,554,555],[308,5,5,555,560],[309,1,1,560,561],[310,3,3,561,564],[311,1,1,564,565],[312,5,5,565,570]]],[11,65,56,570,626,[[314,6,5,570,575],[315,5,4,575,579],[316,1,1,579,580],[317,2,2,580,582],[318,10,7,582,589],[319,4,4,589,593],[320,3,3,593,596],[321,7,6,596,602],[322,3,3,602,605],[323,3,3,605,608],[324,1,1,608,609],[325,2,2,609,611],[326,3,3,611,614],[328,2,2,614,616],[331,1,1,616,617],[332,6,3,617,620],[334,1,1,620,621],[335,4,4,621,625],[337,1,1,625,626]]],[12,19,19,626,645,[[347,2,2,626,628],[349,1,1,628,629],[352,1,1,629,630],[354,1,1,630,631],[356,5,5,631,636],[358,7,7,636,643],[365,1,1,643,644],[366,1,1,644,645]]],[13,32,31,645,676,[[367,1,1,645,646],[369,1,1,646,647],[371,2,1,647,648],[373,2,2,648,650],[375,3,3,650,653],[376,1,1,653,654],[378,1,1,654,655],[381,1,1,655,656],[384,5,5,656,661],[385,1,1,661,662],[386,1,1,662,663],[388,2,2,663,665],[389,1,1,665,666],[390,2,2,666,668],[391,2,2,668,670],[392,1,1,670,671],[395,1,1,671,672],[396,1,1,672,673],[397,1,1,673,674],[398,1,1,674,675],[400,1,1,675,676]]],[14,1,1,676,677,[[405,1,1,676,677]]],[15,7,7,677,684,[[414,1,1,677,678],[416,2,2,678,680],[418,1,1,680,681],[421,1,1,681,682],[425,2,2,682,684]]],[16,15,14,684,698,[[426,3,3,684,687],[427,2,2,687,689],[428,2,2,689,691],[429,1,1,691,692],[430,3,3,692,695],[432,1,1,695,696],[433,2,1,696,697],[434,1,1,697,698]]],[17,50,49,698,747,[[437,1,1,698,699],[438,2,2,699,701],[439,1,1,701,702],[440,1,1,702,703],[441,1,1,703,704],[442,1,1,704,705],[443,1,1,705,706],[444,2,2,706,708],[445,4,3,708,711],[446,1,1,711,712],[448,1,1,712,713],[454,1,1,713,714],[455,2,2,714,716],[456,1,1,716,717],[457,4,4,717,721],[458,1,1,721,722],[463,3,3,722,725],[464,2,2,725,727],[466,4,4,727,731],[467,1,1,731,732],[468,3,3,732,735],[469,2,2,735,737],[470,1,1,737,738],[472,2,2,738,740],[473,2,2,740,742],[475,2,2,742,744],[476,1,1,744,745],[477,2,2,745,747]]],[18,100,99,747,846,[[481,1,1,747,748],[485,1,1,748,749],[486,1,1,749,750],[487,2,2,750,752],[491,1,1,752,753],[493,1,1,753,754],[495,1,1,754,755],[499,2,2,755,757],[502,2,2,757,759],[504,1,1,759,760],[508,2,2,760,762],[510,1,1,762,763],[511,2,2,763,765],[512,3,3,765,768],[513,1,1,768,769],[514,5,5,769,774],[517,2,2,774,776],[518,1,1,776,777],[519,1,1,777,778],[522,1,1,778,779],[525,2,2,779,781],[526,3,3,781,784],[527,2,2,784,786],[529,1,1,786,787],[530,1,1,787,788],[531,1,1,788,789],[532,1,1,789,790],[536,2,2,790,792],[537,1,1,792,793],[540,1,1,793,794],[541,2,2,794,796],[543,2,2,796,798],[545,1,1,798,799],[546,2,2,799,801],[548,1,1,801,802],[550,1,1,802,803],[551,1,1,803,804],[554,2,1,804,805],[555,1,1,805,806],[557,1,1,806,807],[561,2,2,807,809],[562,1,1,809,810],[563,1,1,810,811],[566,1,1,811,812],[567,2,2,812,814],[568,2,2,814,816],[571,1,1,816,817],[572,1,1,817,818],[574,2,2,818,820],[575,1,1,820,821],[579,1,1,821,822],[583,2,2,822,824],[584,2,2,824,826],[586,1,1,826,827],[589,2,2,827,829],[590,1,1,829,830],[591,1,1,830,831],[592,1,1,831,832],[595,1,1,832,833],[596,6,6,833,839],[605,2,2,839,841],[612,1,1,841,842],[615,1,1,842,843],[616,2,2,843,845],[619,1,1,845,846]]],[19,13,13,846,859,[[633,1,1,846,847],[634,1,1,847,848],[647,1,1,848,849],[649,1,1,849,850],[650,2,2,850,852],[651,2,2,852,854],[652,1,1,854,855],[653,1,1,855,856],[654,2,2,856,858],[656,1,1,858,859]]],[20,48,44,859,903,[[659,4,4,859,863],[660,6,5,863,868],[661,6,5,868,873],[662,5,5,873,878],[663,5,4,878,882],[664,3,3,882,885],[665,6,6,885,891],[666,5,4,891,895],[667,3,3,895,898],[668,2,2,898,900],[669,2,2,900,902],[670,1,1,902,903]]],[21,9,8,903,911,[[671,1,1,903,904],[672,2,2,904,906],[673,2,2,906,908],[676,3,2,908,910],[677,1,1,910,911]]],[22,82,76,911,987,[[679,1,1,911,912],[683,2,2,912,914],[684,5,4,914,918],[687,1,1,918,919],[692,1,1,919,920],[694,1,1,920,921],[695,2,2,921,923],[696,1,1,923,924],[699,3,3,924,927],[700,2,2,927,929],[704,1,1,929,930],[706,2,1,930,931],[707,3,3,931,934],[708,4,3,934,937],[710,1,1,937,938],[711,4,4,938,942],[713,1,1,942,943],[715,1,1,943,944],[716,2,2,944,946],[717,5,2,946,948],[718,2,2,948,950],[719,4,4,950,954],[720,2,2,954,956],[722,3,3,956,959],[725,2,2,959,961],[727,2,2,961,963],[730,3,3,963,966],[731,3,3,966,969],[735,1,1,969,970],[736,2,2,970,972],[737,2,2,972,974],[738,3,3,974,977],[739,1,1,977,978],[740,1,1,978,979],[741,1,1,979,980],[742,1,1,980,981],[744,6,6,981,987]]],[23,71,66,987,1053,[[745,6,4,987,991],[746,5,4,991,995],[747,4,4,995,999],[748,5,5,999,1004],[749,3,3,1004,1007],[750,1,1,1007,1008],[751,3,3,1008,1011],[755,2,2,1011,1013],[756,2,2,1013,1015],[757,3,3,1015,1018],[758,1,1,1018,1019],[761,2,2,1019,1021],[762,1,1,1021,1022],[764,4,3,1022,1025],[766,2,2,1025,1027],[767,4,4,1027,1031],[768,2,2,1031,1033],[773,1,1,1033,1034],[774,2,1,1034,1035],[775,2,2,1035,1037],[776,2,2,1037,1039],[777,1,1,1039,1040],[778,1,1,1040,1041],[782,1,1,1041,1042],[783,1,1,1042,1043],[784,1,1,1043,1044],[785,1,1,1044,1045],[786,3,3,1045,1048],[788,2,2,1048,1050],[790,1,1,1050,1051],[795,1,1,1051,1052],[796,1,1,1052,1053]]],[24,16,16,1053,1069,[[797,8,8,1053,1061],[798,2,2,1061,1063],[799,5,5,1063,1068],[801,1,1,1068,1069]]],[25,77,65,1069,1134,[[802,6,5,1069,1074],[803,1,1,1074,1075],[804,1,1,1075,1076],[805,1,1,1076,1077],[809,13,10,1077,1087],[810,1,1,1087,1088],[811,7,6,1088,1094],[812,3,3,1094,1097],[813,6,5,1097,1102],[814,1,1,1102,1103],[815,2,2,1103,1105],[817,4,4,1105,1109],[819,3,2,1109,1111],[820,2,2,1111,1113],[821,2,2,1113,1115],[822,2,2,1115,1117],[824,3,3,1117,1120],[829,2,2,1120,1122],[833,1,1,1122,1123],[834,2,2,1123,1125],[838,1,1,1125,1126],[840,2,2,1126,1128],[841,4,1,1128,1129],[842,1,1,1129,1130],[844,3,1,1130,1131],[845,2,2,1131,1133],[848,1,1,1133,1134]]],[26,22,17,1134,1151,[[850,4,3,1134,1137],[857,11,8,1137,1145],[858,2,2,1145,1147],[859,4,3,1147,1150],[861,1,1,1150,1151]]],[27,4,4,1151,1155,[[866,1,1,1151,1152],[867,1,1,1152,1153],[870,2,2,1153,1155]]],[28,1,1,1155,1156,[[877,1,1,1155,1156]]],[29,9,9,1156,1165,[[881,1,1,1156,1157],[884,1,1,1157,1158],[885,4,4,1158,1162],[886,2,2,1162,1164],[887,1,1,1164,1165]]],[30,2,2,1165,1167,[[888,2,2,1165,1167]]],[31,2,2,1167,1169,[[891,1,1,1167,1168],[892,1,1,1168,1169]]],[32,6,5,1169,1174,[[898,1,1,1169,1170],[899,5,4,1170,1174]]],[33,2,2,1174,1176,[[902,2,2,1174,1176]]],[34,7,7,1176,1183,[[903,3,3,1176,1179],[904,1,1,1179,1180],[905,3,3,1180,1183]]],[35,1,1,1183,1184,[[908,1,1,1183,1184]]],[36,2,1,1184,1185,[[910,2,1,1184,1185]]],[37,22,20,1185,1205,[[911,4,4,1185,1189],[912,2,2,1189,1191],[913,2,2,1191,1193],[914,3,2,1193,1195],[915,5,4,1195,1199],[916,2,2,1199,1201],[919,3,3,1201,1204],[920,1,1,1204,1205]]],[38,3,3,1205,1208,[[925,1,1,1205,1206],[927,2,2,1206,1208]]]],[3,8,9,11,17,20,24,30,49,61,139,142,149,160,188,191,196,219,221,227,228,271,299,305,310,312,313,328,332,333,385,386,394,398,425,426,445,458,485,505,522,529,532,551,555,560,561,621,654,655,694,700,716,720,728,754,779,781,797,805,826,827,831,839,875,878,883,885,915,916,923,930,948,953,958,961,965,970,981,982,1012,1020,1087,1097,1101,1103,1108,1121,1133,1134,1152,1162,1163,1172,1178,1188,1214,1217,1223,1228,1236,1253,1259,1261,1264,1273,1279,1287,1293,1295,1306,1319,1347,1350,1352,1355,1358,1370,1371,1385,1386,1415,1416,1454,1459,1461,1462,1468,1488,1517,1521,1529,1548,1556,1559,1560,1565,1566,1579,1581,1582,1583,1586,1588,1595,1602,1606,1615,1619,1622,1632,1651,1653,1656,1658,1686,1725,1758,1776,1782,1783,1787,1800,1805,1806,1829,1839,1874,1884,1902,1919,1920,1954,1957,1962,1976,1979,2013,2030,2047,2069,2073,2123,2149,2159,2161,2187,2204,2235,2265,2280,2422,2439,2443,2447,2457,2463,2483,2485,2486,2491,2493,2496,2499,2506,2516,2519,2520,2526,2531,2561,2707,2831,2957,2959,2976,2977,3055,3057,3058,3059,3060,3062,3065,3066,3067,3069,3071,3072,3073,3077,3078,3079,3082,3083,3084,3086,3088,3091,3095,3101,3102,3103,3105,3107,3108,3109,3114,3146,3147,3148,3150,3155,3159,3203,3335,3763,3943,4039,4047,4093,4101,4103,4107,4108,4118,4122,4130,4131,4192,4213,4236,4253,4317,4340,4348,4377,4398,4400,4402,4406,4408,4416,4419,4425,4429,4437,4447,4448,4463,4466,4467,4478,4566,4567,4719,4726,4727,4729,4868,4900,4911,4913,4920,4923,4925,4927,4928,4962,4969,4996,4999,5000,5002,5003,5007,5009,5013,5016,5019,5023,5032,5039,5040,5077,5130,5170,5173,5207,5210,5215,5234,5253,5346,5358,5400,5428,5454,5458,5471,5474,5514,5573,5621,5643,5645,5678,5679,5681,5682,5683,5696,5701,5723,5739,5743,5777,5778,5794,5797,5807,5810,5819,5831,5840,5843,5870,5896,5940,5947,5951,5997,6003,6006,6010,6016,6022,6023,6454,6463,6464,6483,6533,6534,6552,6592,6621,6631,6666,6676,6711,6790,6797,6802,6809,6864,6872,6887,6894,6903,6904,6905,6906,6907,6910,6911,6917,6920,6950,6954,6967,6973,6976,7000,7002,7019,7027,7041,7054,7090,7095,7123,7145,7167,7223,7234,7278,7297,7312,7326,7340,7344,7347,7350,7400,7402,7407,7408,7409,7410,7429,7432,7442,7472,7476,7477,7484,7491,7496,7524,7525,7537,7546,7560,7595,7596,7601,7602,7612,7613,7642,7643,7646,7660,7669,7673,7691,7704,7709,7711,7721,7726,7759,7786,7796,7825,7832,7833,7849,7850,7854,7878,7884,7886,7896,7908,7910,7917,7921,7947,7954,7955,7963,8014,8016,8029,8094,8173,8182,8246,8249,8254,8255,8259,8261,8305,8322,8323,8345,8351,8380,8384,8386,8388,8392,8414,8416,8417,8438,8466,8467,8472,8488,8489,8499,8502,8504,8505,8507,8566,8613,8618,8695,8705,8709,8712,8714,8765,8821,8844,8914,8993,9053,9063,9083,9086,9091,9117,9136,9167,9196,9209,9222,9301,9340,9342,9343,9356,9358,9380,9390,9415,9421,9430,9480,9497,9499,9505,9512,9513,9561,9563,9566,9570,9575,9590,9593,9598,9602,9628,9654,9668,9680,9687,9691,9694,9695,9704,9706,9709,9720,9721,9726,9737,9740,9756,9758,9772,9773,9778,9782,9783,9796,9809,9816,9830,9833,9843,9860,9875,9892,9904,9907,9922,9973,9975,10077,10103,10111,10113,10165,10181,10182,10189,10194,10241,10664,10666,10737,10820,10880,10913,10917,10922,10923,10926,10946,10949,10950,10954,10955,10957,10962,11153,11181,11201,11230,11277,11327,11336,11367,11370,11375,11411,11444,11499,11558,11560,11566,11573,11574,11582,11604,11650,11654,11669,11688,11699,11721,11725,11737,11799,11834,11862,11877,11961,12109,12324,12370,12373,12417,12520,12686,12694,12706,12713,12716,12733,12739,12751,12752,12770,12781,12788,12792,12814,12823,12860,12904,12913,12920,12938,12954,12999,13015,13047,13062,13076,13090,13101,13104,13119,13154,13324,13333,13343,13375,13400,13401,13403,13408,13428,13514,13528,13531,13540,13543,13592,13607,13609,13614,13633,13671,13676,13678,13704,13709,13725,13790,13793,13810,13815,13875,13876,13922,13927,13938,13971,14015,14034,14052,14055,14082,14102,14133,14211,14221,14269,14270,14298,14338,14342,14379,14396,14400,14427,14431,14432,14447,14463,14475,14484,14485,14487,14528,14537,14548,14557,14607,14639,14642,14657,14658,14667,14686,14691,14716,14721,14732,14741,14794,14800,14810,14841,14855,14858,14878,14891,14924,14958,14967,14996,15023,15057,15109,15124,15212,15266,15268,15278,15301,15374,15393,15394,15403,15411,15438,15463,15482,15484,15493,15537,15656,15695,15723,15741,15780,15811,15813,15819,15825,15835,15876,15935,15972,15994,16051,16056,16057,16131,16132,16191,16237,16255,16263,16290,16546,16582,16966,17018,17075,17077,17097,17111,17120,17153,17181,17194,17240,17323,17325,17329,17331,17334,17336,17345,17346,17357,17369,17372,17375,17377,17381,17382,17384,17385,17388,17396,17405,17408,17410,17415,17418,17422,17423,17440,17442,17443,17444,17456,17458,17467,17468,17474,17475,17484,17486,17488,17498,17500,17517,17520,17526,17543,17566,17568,17574,17582,17623,17625,17639,17666,17751,17758,17770,17774,17778,17779,17831,17944,17981,17990,17991,18000,18038,18041,18042,18061,18063,18140,18168,18208,18211,18216,18227,18237,18247,18262,18294,18296,18298,18299,18322,18369,18395,18401,18414,18416,18425,18446,18456,18471,18474,18479,18498,18500,18542,18549,18551,18602,18609,18643,18654,18704,18706,18711,18713,18721,18722,18783,18789,18793,18815,18816,18823,18825,18826,18852,18856,18881,18889,18927,18930,18936,18940,18941,18946,18956,18957,18958,18959,18975,18984,18988,18996,19004,19008,19009,19010,19048,19050,19051,19052,19053,19059,19070,19079,19105,19130,19131,19136,19244,19246,19252,19253,19286,19292,19293,19306,19363,19365,19401,19426,19434,19440,19464,19466,19497,19498,19502,19508,19525,19527,19667,19673,19694,19717,19735,19755,19799,19804,19916,19927,19945,19970,19977,19989,19993,20012,20027,20050,20273,20301,20317,20318,20319,20320,20321,20322,20328,20330,20348,20352,20355,20390,20404,20413,20414,20443,20465,20468,20479,20491,20492,20501,20525,20544,20606,20608,20610,20611,20613,20614,20616,20617,20619,20621,20631,20634,20641,20642,20648,20653,20655,20656,20679,20680,20682,20683,20686,20692,20693,20711,20753,20754,20768,20770,20799,20812,20863,20877,20886,20892,20923,20943,20965,20968,21018,21020,21021,21174,21175,21279,21283,21286,21405,21463,21469,21481,21534,21575,21603,21604,21685,21747,21750,21752,21962,21963,21964,21965,21967,21968,21976,21981,22006,22009,22020,22022,22023,22086,22165,22177,22218,22221,22339,22404,22452,22465,22468,22471,22472,22482,22483,22496,22522,22523,22568,22573,22657,22673,22674,22679,22680,22717,22719,22734,22736,22744,22749,22774,22775,22778,22835,22858,22886,22887,22896,22898,22900,22901,22913,22916,22924,22932,22937,22938,22941,22945,22948,22955,23004,23007,23013,23023,23094,23122,23138]]],["+",[260,251,[[0,30,29,0,29,[[0,2,2,0,2],[5,2,2,2,4],[8,1,1,4,5],[10,1,1,5,6],[11,1,1,6,7],[12,1,1,7,8],[20,1,1,8,9],[21,1,1,9,10],[23,2,2,10,12],[25,2,1,12,13],[26,1,1,13,14],[28,1,1,14,15],[30,4,4,15,19],[32,1,1,19,20],[40,1,1,20,21],[41,4,4,21,25],[42,1,1,25,26],[44,1,1,26,27],[45,1,1,27,28],[49,1,1,28,29]]],[1,29,28,29,57,[[51,3,3,29,32],[52,3,2,32,34],[53,1,1,34,35],[59,1,1,35,36],[61,2,2,36,38],[63,3,3,38,41],[65,2,2,41,43],[67,1,1,43,44],[69,1,1,44,45],[73,1,1,45,46],[81,2,2,46,48],[82,3,3,48,51],[83,5,5,51,56],[88,1,1,56,57]]],[2,15,13,57,70,[[102,10,10,57,67],[103,3,2,67,69],[109,2,1,69,70]]],[3,18,18,70,88,[[124,1,1,70,71],[129,2,2,71,73],[130,2,2,73,75],[138,5,5,75,80],[140,3,3,80,83],[143,1,1,83,84],[148,4,4,84,88]]],[4,20,19,88,107,[[153,1,1,88,89],[155,3,3,89,92],[156,2,2,92,94],[161,1,1,94,95],[163,2,2,95,97],[168,2,1,97,98],[174,2,2,98,100],[178,1,1,100,101],[181,3,3,101,104],[183,1,1,104,105],[184,2,2,105,107]]],[5,5,5,107,112,[[188,1,1,107,108],[189,1,1,108,109],[208,1,1,109,110],[209,1,1,110,111],[210,1,1,111,112]]],[6,7,6,112,118,[[212,1,1,112,113],[219,2,1,113,114],[224,1,1,114,115],[228,2,2,115,117],[229,1,1,117,118]]],[7,1,1,118,119,[[233,1,1,118,119]]],[8,24,23,119,142,[[236,3,2,119,121],[241,1,1,121,122],[244,2,2,122,124],[247,2,2,124,126],[250,1,1,126,127],[251,1,1,127,128],[252,3,3,128,131],[254,2,2,131,133],[255,1,1,133,134],[257,1,1,134,135],[258,1,1,135,136],[259,2,2,136,138],[260,1,1,138,139],[261,1,1,139,140],[263,2,2,140,142]]],[9,7,6,142,148,[[269,2,1,142,143],[272,1,1,143,144],[284,2,2,144,146],[290,2,2,146,148]]],[10,11,11,148,159,[[299,1,1,148,149],[300,1,1,149,150],[301,1,1,150,151],[303,2,2,151,153],[308,1,1,153,154],[310,2,2,154,156],[312,3,3,156,159]]],[11,13,13,159,172,[[315,1,1,159,160],[320,1,1,160,161],[321,3,3,161,164],[325,2,2,164,166],[326,1,1,166,167],[328,2,2,167,169],[332,1,1,169,170],[335,1,1,170,171],[337,1,1,171,172]]],[12,4,4,172,176,[[352,1,1,172,173],[358,3,3,173,176]]],[13,7,7,176,183,[[375,1,1,176,177],[384,3,3,177,180],[386,1,1,180,181],[388,1,1,181,182],[397,1,1,182,183]]],[14,1,1,183,184,[[405,1,1,183,184]]],[15,1,1,184,185,[[421,1,1,184,185]]],[16,4,4,185,189,[[426,1,1,185,186],[430,3,3,186,189]]],[17,2,2,189,191,[[476,1,1,189,190],[477,1,1,190,191]]],[18,5,5,191,196,[[508,1,1,191,192],[510,1,1,192,193],[546,1,1,193,194],[575,1,1,194,195],[596,1,1,195,196]]],[20,11,11,196,207,[[659,1,1,196,197],[661,1,1,197,198],[662,4,4,198,202],[665,1,1,202,203],[666,2,2,203,205],[667,1,1,205,206],[669,1,1,206,207]]],[21,1,1,207,208,[[672,1,1,207,208]]],[22,12,11,208,219,[[684,3,2,208,210],[699,1,1,210,211],[708,1,1,211,212],[711,2,2,212,214],[716,1,1,214,215],[722,1,1,215,216],[730,1,1,216,217],[744,2,2,217,219]]],[23,10,10,219,229,[[748,1,1,219,220],[751,1,1,220,221],[756,1,1,221,222],[766,1,1,222,223],[776,1,1,223,224],[778,1,1,224,225],[785,1,1,225,226],[786,1,1,226,227],[788,1,1,227,228],[796,1,1,228,229]]],[24,2,2,229,231,[[797,1,1,229,230],[801,1,1,230,231]]],[25,9,9,231,240,[[809,1,1,231,232],[812,1,1,232,233],[815,2,2,233,235],[817,1,1,235,236],[819,1,1,236,237],[834,2,2,237,239],[840,1,1,239,240]]],[26,5,5,240,245,[[850,1,1,240,241],[857,2,2,241,243],[859,2,2,243,245]]],[27,1,1,245,246,[[866,1,1,245,246]]],[29,1,1,246,247,[[887,1,1,246,247]]],[31,1,1,247,248,[[891,1,1,247,248]]],[34,1,1,248,249,[[903,1,1,248,249]]],[36,1,1,249,250,[[910,1,1,249,250]]],[37,1,1,250,251,[[914,1,1,250,251]]]],[3,30,139,149,227,271,312,328,522,551,621,655,720,728,805,875,878,885,915,965,1223,1259,1261,1279,1287,1306,1385,1416,1517,1559,1560,1579,1586,1588,1632,1782,1829,1839,1902,1919,1920,1954,1979,2013,2069,2187,2447,2457,2483,2493,2496,2506,2519,2520,2526,2531,2707,3055,3067,3082,3083,3084,3086,3101,3102,3103,3107,3147,3148,3335,3943,4093,4108,4130,4131,4377,4398,4400,4402,4406,4448,4466,4467,4566,4719,4726,4727,4729,4927,4996,4999,5000,5007,5023,5170,5210,5215,5358,5471,5474,5573,5681,5696,5701,5739,5807,5810,5870,5896,6454,6463,6483,6552,6790,6917,7000,7002,7041,7167,7223,7234,7344,7407,7408,7476,7484,7595,7601,7642,7660,7673,7721,7726,7759,7796,7832,7849,7850,7884,7910,7947,7954,8094,8173,8488,8505,8709,8712,9063,9083,9136,9196,9209,9358,9421,9430,9497,9499,9512,9598,9756,9772,9773,9778,9875,9892,9922,9973,9975,10103,10181,10241,10820,10950,10954,10955,11367,11558,11560,11573,11604,11650,11862,12109,12520,12706,12781,12788,12792,13922,13938,14338,14379,14958,15493,15935,17329,17369,17382,17384,17385,17396,17442,17474,17475,17484,17520,17568,17774,17778,18038,18237,18294,18298,18395,18551,18706,18940,18941,19050,19131,19253,19464,19735,19804,19970,19993,20012,20301,20319,20443,20613,20656,20753,20754,20799,20863,21283,21286,21469,21747,21965,21976,22022,22023,22165,22496,22568,22744,22858,22932]]],["Behold",[14,14,[[4,5,5,0,5,[[153,2,2,0,2],[154,1,1,2,3],[156,1,1,3,4],[163,1,1,4,5]]],[5,2,2,5,7,[[194,1,1,5,6],[209,1,1,6,7]]],[18,1,1,7,8,[[561,1,1,7,8]]],[20,1,1,8,9,[[665,1,1,8,9]]],[24,2,2,9,11,[[797,1,1,9,10],[798,1,1,10,11]]],[34,1,1,11,12,[[903,1,1,11,12]]],[37,2,2,12,14,[[913,1,1,12,13],[916,1,1,13,14]]]],[4900,4913,4969,5009,5234,6006,6464,15268,17456,20330,20352,22736,22916,22955]]],["Consider",[3,3,[[18,3,3,0,3,[[502,1,1,0,1],[596,2,2,1,3]]]],[14270,16051,16057]]],["Considerest",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19799]]],["Lo",[2,2,[[20,1,1,0,1,[[665,1,1,0,1]]],[25,1,1,1,2,[[805,1,1,1,2]]]],[17458,20544]]],["Look",[3,3,[[6,1,1,0,1,[[217,1,1,0,1]]],[19,1,1,1,2,[[650,1,1,1,2]]],[21,1,1,2,3,[[671,1,1,2,3]]]],[6711,17075,17543]]],["Mark",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8345]]],["Provide",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7612]]],["Saw",[1,1,[[21,1,1,0,1,[[673,1,1,0,1]]]],[17574]]],["See",[23,23,[[0,3,3,0,3,[[26,1,1,0,1],[38,1,1,1,2],[40,1,1,2,3]]],[1,5,5,3,8,[[56,1,1,3,4],[65,1,1,4,5],[80,1,1,5,6],[82,1,1,6,7],[84,1,1,7,8]]],[4,2,2,8,10,[[182,1,1,8,9],[184,1,1,9,10]]],[5,2,2,10,12,[[192,1,1,10,11],[194,1,1,11,12]]],[8,2,2,12,14,[[245,1,1,12,13],[258,1,1,13,14]]],[9,4,4,14,18,[[273,1,1,14,15],[280,1,1,15,16],[281,2,2,16,18]]],[10,1,1,18,19,[[307,1,1,18,19]]],[11,1,1,19,20,[[318,1,1,19,20]]],[20,1,1,20,21,[[659,1,1,20,21]]],[22,1,1,21,22,[[708,1,1,21,22]]],[23,1,1,22,23,[[745,1,1,22,23]]]],[754,1163,1236,1686,1976,2422,2485,2561,5723,5797,5951,6010,7442,7833,8182,8386,8392,8417,9340,9706,17325,18227,18956]]],["Seeing",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18500]]],["Seer",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7400]]],["Seest",[3,3,[[10,1,1,0,1,[[311,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]],[23,1,1,2,3,[[751,1,1,2,3]]]],[9480,17153,19136]]],["Shew",[2,2,[[6,1,1,0,1,[[211,1,1,0,1]]],[18,1,1,1,2,[[562,1,1,1,2]]]],[6533,15278]]],["advise",[1,1,[[12,1,1,0,1,[[358,1,1,0,1]]]],[10946]]],["another",[5,5,[[0,1,1,0,1,[[41,1,1,0,1]]],[11,2,2,1,3,[[326,2,2,1,3]]],[13,2,2,3,5,[[391,2,2,3,5]]]],[1253,9904,9907,11721,11725]]],["appear",[18,18,[[0,1,1,0,1,[[0,1,1,0,1]]],[1,3,3,1,4,[[72,2,2,1,3],[83,1,1,3,4]]],[2,4,4,4,8,[[98,2,2,4,6],[102,1,1,6,7],[105,1,1,7,8]]],[6,1,1,8,9,[[223,1,1,8,9]]],[13,1,1,9,10,[[367,1,1,9,10]]],[18,3,3,10,13,[[519,1,1,10,11],[567,1,1,11,12],[579,1,1,12,13]]],[21,1,1,13,14,[[672,1,1,13,14]]],[22,2,2,14,16,[[679,1,1,14,15],[744,1,1,15,16]]],[23,1,1,16,17,[[757,1,1,16,17]]],[25,1,1,17,18,[[822,1,1,17,18]]]],[8,2159,2161,2516,2957,2959,3109,3203,6905,11201,14557,15394,15537,17566,17666,18927,19292,20968]]],["appeared",[39,36,[[0,9,8,0,8,[[11,2,1,0,1],[16,1,1,1,2],[17,1,1,2,3],[25,2,2,3,5],[34,2,2,5,7],[47,1,1,7,8]]],[1,6,6,8,14,[[52,2,2,8,10],[53,2,2,10,12],[55,1,1,12,13],[65,1,1,13,14]]],[2,1,1,14,15,[[98,1,1,14,15]]],[3,4,4,15,19,[[130,1,1,15,16],[132,2,2,16,18],[136,1,1,18,19]]],[4,1,1,19,20,[[183,1,1,19,20]]],[6,3,3,20,23,[[216,1,1,20,21],[223,2,2,21,23]]],[8,1,1,23,24,[[238,1,1,23,24]]],[9,1,1,24,25,[[288,1,1,24,25]]],[10,4,3,25,28,[[293,1,1,25,26],[299,2,1,26,27],[301,1,1,27,28]]],[13,2,2,28,30,[[369,1,1,28,29],[373,1,1,29,30]]],[23,1,1,30,31,[[775,1,1,30,31]]],[25,3,3,31,34,[[811,2,2,31,33],[820,1,1,33,34]]],[26,3,2,34,36,[[850,1,1,34,35],[857,2,1,35,36]]]],[305,398,425,694,716,1012,1020,1454,1581,1595,1602,1606,1658,1957,2976,4118,4213,4236,4317,5743,6666,6887,6894,7297,8618,8821,9053,9117,11230,11336,19694,20634,20641,20892,21752,21962]]],["appeareth",[3,3,[[2,1,1,0,1,[[102,1,1,0,1]]],[18,1,1,1,2,[[561,1,1,1,2]]],[38,1,1,2,3,[[927,1,1,2,3]]]],[3066,15266,23122]]],["approveth",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20390]]],["beheld",[17,17,[[0,2,2,0,2,[[18,1,1,0,1],[47,1,1,1,2]]],[6,1,1,2,3,[[226,1,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[17,1,1,4,5,[[466,1,1,4,5]]],[18,2,2,5,7,[[596,1,1,5,6],[619,1,1,6,7]]],[19,1,1,7,8,[[634,1,1,7,8]]],[22,1,1,8,9,[[719,1,1,8,9]]],[23,4,4,9,13,[[748,3,3,9,12],[775,1,1,12,13]]],[25,3,3,13,16,[[802,1,1,13,14],[809,1,1,14,15],[838,1,1,15,16]]],[34,1,1,16,17,[[905,1,1,16,17]]]],[485,1459,6976,10949,13614,16056,16290,16582,18479,19051,19052,19053,19717,20479,20606,21405,22774]]],["behold",[34,34,[[4,2,2,0,2,[[154,1,1,0,1],[155,1,1,1,2]]],[9,1,1,2,3,[[290,1,1,2,3]]],[17,3,3,3,6,[[454,1,1,3,4],[457,1,1,4,5],[475,1,1,5,6]]],[18,4,4,6,10,[[514,1,1,6,7],[536,1,1,7,8],[557,1,1,8,9],[590,1,1,9,10]]],[19,1,1,10,11,[[650,1,1,10,11]]],[20,1,1,11,12,[[660,1,1,11,12]]],[21,1,1,12,13,[[673,1,1,12,13]]],[22,6,6,13,19,[[704,1,1,13,14],[711,1,1,14,15],[718,1,1,15,16],[719,1,1,16,17],[727,1,1,17,18],[741,1,1,18,19]]],[23,5,5,19,24,[[757,1,1,19,20],[764,1,1,20,21],[773,1,1,21,22],[784,1,1,22,23],[786,1,1,23,24]]],[24,2,2,24,26,[[797,1,1,24,25],[799,1,1,25,26]]],[25,4,4,26,30,[[829,2,2,26,28],[841,1,1,28,29],[845,1,1,29,30]]],[26,1,1,30,31,[[858,1,1,30,31]]],[29,1,1,31,32,[[881,1,1,31,32]]],[32,2,2,32,34,[[899,2,2,32,34]]]],[4962,5002,8714,13324,13401,13875,14487,14794,15212,15819,17077,17345,17582,18140,18296,18446,18474,18654,18881,19286,19426,19667,19945,19977,20328,20404,21174,21175,21481,21604,22006,22404,22673,22674]]],["beholding",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17408]]],["consider",[10,10,[[1,1,1,0,1,[[82,1,1,0,1]]],[2,1,1,1,2,[[102,1,1,1,2]]],[8,1,1,2,3,[[260,1,1,2,3]]],[18,3,3,3,6,[[485,1,1,3,4],[486,1,1,4,5],[522,1,1,5,6]]],[19,1,1,6,7,[[633,1,1,6,7]]],[20,1,1,7,8,[[665,1,1,7,8]]],[22,1,1,8,9,[[683,1,1,8,9]]],[25,1,1,9,10,[[813,1,1,9,10]]]],[2486,3065,7878,14015,14034,14607,16546,17443,17751,20683]]],["considereth",[2,2,[[25,2,2,0,2,[[819,2,2,0,2]]]],[20863,20877]]],["discern",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23138]]],["enjoy",[4,4,[[20,4,4,0,4,[[660,2,2,0,2],[661,1,1,2,3],[663,1,1,3,4]]]],[17334,17357,17372,17415]]],["experience",[1,1,[[20,1,1,0,1,[[659,1,1,0,1]]]],[17331]]],["foreseeth",[2,2,[[19,2,2,0,2,[[649,1,1,0,1],[654,1,1,1,2]]]],[17018,17181]]],["gaze",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2047]]],["heed",[2,2,[[12,1,1,0,1,[[365,1,1,0,1]]],[13,1,1,1,2,[[385,1,1,1,2]]]],[11153,11582]]],["himself",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]]],[1415,9343]]],["itself",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17194]]],["lo",[1,1,[[12,1,1,0,1,[[358,1,1,0,1]]]],[10957]]],["look",[18,18,[[0,1,1,0,1,[[12,1,1,0,1]]],[1,3,3,1,4,[[54,1,1,1,2],[59,1,1,2,3],[74,1,1,3,4]]],[2,7,7,4,11,[[102,3,3,4,7],[103,4,4,7,11]]],[4,1,1,11,12,[[180,1,1,11,12]]],[9,1,1,12,13,[[282,1,1,12,13]]],[11,2,2,13,15,[[318,1,1,13,14],[322,1,1,14,15]]],[12,1,1,15,16,[[349,1,1,15,16]]],[20,1,1,16,17,[[670,1,1,16,17]]],[22,1,1,17,18,[[744,1,1,17,18]]]],[332,1653,1787,2235,3091,3105,3108,3114,3150,3155,3159,5643,8438,9706,9816,10737,17526,18946]]],["looked",[42,42,[[0,9,9,0,9,[[7,1,1,0,1],[15,1,1,1,2],[17,1,1,2,3],[21,1,1,3,4],[28,2,2,4,6],[32,1,1,6,7],[36,1,1,7,8],[38,1,1,8,9]]],[1,2,2,9,11,[[51,1,1,9,10],[52,1,1,10,11]]],[3,1,1,11,12,[[133,1,1,11,12]]],[4,1,1,12,13,[[161,1,1,12,13]]],[5,1,1,13,14,[[191,1,1,13,14]]],[6,1,1,14,15,[[219,1,1,14,15]]],[8,2,2,15,17,[[241,1,1,15,16],[249,1,1,16,17]]],[9,2,2,17,19,[[279,1,1,17,18],[284,1,1,18,19]]],[11,3,3,19,22,[[314,1,1,19,20],[318,1,1,20,21],[323,1,1,21,22]]],[13,1,1,22,23,[[389,1,1,22,23]]],[15,1,1,23,24,[[416,1,1,23,24]]],[16,1,1,24,25,[[427,1,1,24,25]]],[19,1,1,25,26,[[651,1,1,25,26]]],[25,7,7,26,33,[[802,1,1,26,27],[803,1,1,27,28],[809,1,1,28,29],[811,2,2,29,31],[822,1,1,31,32],[845,1,1,32,33]]],[26,2,2,33,35,[[859,1,1,33,34],[861,1,1,34,35]]],[30,2,2,35,37,[[888,2,2,35,37]]],[37,5,5,37,42,[[912,1,1,37,38],[914,1,1,38,39],[915,2,2,39,41],[916,1,1,41,42]]]],[196,394,426,560,797,827,961,1108,1172,1565,1581,4253,5173,5947,6797,7350,7524,8351,8502,9575,9704,9843,11669,12373,12739,17111,20468,20501,20611,20634,20642,20965,21603,22020,22086,22522,22523,22900,22924,22937,22945,22948]]],["looketh",[3,2,[[8,2,1,0,1,[[251,2,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]]],[7602,18168]]],["meet",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12733]]],["myself",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9356]]],["on",[10,10,[[2,6,6,0,6,[[102,6,6,0,6]]],[6,2,2,6,8,[[223,2,2,6,8]]],[17,1,1,8,9,[[475,1,1,8,9]]],[18,1,1,9,10,[[512,1,1,9,10]]]],[3055,3057,3058,3073,3078,3088,6903,6904,13876,14427]]],["out",[3,3,[[0,1,1,0,1,[[40,1,1,0,1]]],[11,2,2,1,3,[[321,1,1,1,2],[322,1,1,2,3]]]],[1228,9758,9796]]],["perceive",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17381]]],["perceived",[4,4,[[6,1,1,0,1,[[216,1,1,0,1]]],[10,1,1,1,2,[[312,1,1,1,2]]],[13,1,1,2,3,[[384,1,1,2,3]]],[23,1,1,3,4,[[767,1,1,3,4]]]],[6676,9513,11574,19502]]],["provide",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[555]]],["provided",[2,2,[[4,1,1,0,1,[[185,1,1,0,1]]],[8,1,1,1,2,[[251,1,1,1,2]]]],[5831,7596]]],["regard",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14891]]],["regarded",[2,2,[[12,1,1,0,1,[[354,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]]],[10880,15695]]],["regardeth",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17517]]],["respect",[4,4,[[18,1,1,0,1,[[615,1,1,0,1]]],[22,3,3,1,4,[[695,2,2,1,3],[700,1,1,3,4]]]],[16237,17990,17991,18063]]],["respecteth",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13793]]],["saw",[219,211,[[0,41,41,0,41,[[0,5,5,0,5],[2,1,1,5,6],[5,1,1,6,7],[8,1,1,7,8],[11,1,1,8,9],[15,2,2,9,11],[17,1,1,11,12],[20,1,1,12,13],[23,1,1,13,14],[25,1,1,14,15],[27,1,1,15,16],[28,1,1,16,17],[29,2,2,17,19],[30,1,1,19,20],[31,2,2,20,22],[33,1,1,22,23],[36,2,2,23,25],[37,3,3,25,28],[38,2,2,28,30],[39,1,1,30,31],[40,2,2,31,33],[41,2,2,33,35],[42,1,1,35,36],[43,1,1,36,37],[47,1,1,37,38],[48,1,1,38,39],[49,2,2,39,41]]],[1,11,11,41,52,[[51,2,2,41,43],[52,1,1,43,44],[57,1,1,44,45],[58,1,1,45,46],[59,1,1,46,47],[65,1,1,47,48],[69,1,1,48,49],[81,3,3,49,52]]],[2,1,1,52,53,[[98,1,1,52,53]]],[3,6,6,53,59,[[129,2,2,53,55],[136,1,1,55,56],[138,1,1,56,57],[140,1,1,57,58],[141,1,1,58,59]]],[4,5,5,59,64,[[153,1,1,59,60],[156,2,2,60,62],[159,1,1,62,63],[184,1,1,63,64]]],[5,4,4,64,68,[[193,1,1,64,65],[194,3,3,65,68]]],[6,15,15,68,83,[[211,1,1,68,69],[213,1,1,69,70],[219,1,1,70,71],[221,1,1,71,72],[222,1,1,72,73],[224,2,2,73,75],[226,3,3,75,78],[228,1,1,78,79],[229,2,2,79,81],[230,2,2,81,83]]],[7,1,1,83,84,[[232,1,1,83,84]]],[8,18,18,84,102,[[240,1,1,84,85],[245,2,2,85,87],[247,1,1,87,88],[248,2,2,88,90],[249,1,1,90,91],[252,1,1,91,92],[253,2,2,92,94],[258,1,1,94,95],[260,1,1,95,96],[261,2,2,96,98],[263,2,2,98,100],[266,2,2,100,102]]],[9,17,16,102,118,[[267,1,1,102,103],[276,5,5,103,108],[277,1,1,108,109],[278,1,1,109,110],[280,2,2,110,112],[283,2,2,112,114],[284,3,3,114,117],[286,2,1,117,118]]],[10,5,5,118,123,[[293,1,1,118,119],[302,1,1,119,120],[306,1,1,120,121],[308,1,1,121,122],[309,1,1,122,123]]],[11,12,11,123,134,[[314,3,2,123,125],[315,1,1,125,126],[316,1,1,126,127],[317,1,1,127,128],[318,3,3,128,131],[321,1,1,131,132],[323,1,1,132,133],[324,1,1,133,134]]],[12,8,8,134,142,[[347,2,2,134,136],[356,5,5,136,141],[358,1,1,141,142]]],[13,6,6,142,148,[[373,1,1,142,143],[378,1,1,143,144],[381,1,1,144,145],[388,1,1,145,146],[390,1,1,146,147],[398,1,1,147,148]]],[15,3,3,148,151,[[418,1,1,148,149],[425,2,2,149,151]]],[16,3,3,151,154,[[426,1,1,151,152],[428,1,1,152,153],[432,1,1,153,154]]],[17,6,6,154,160,[[437,1,1,154,155],[438,1,1,155,156],[464,2,2,156,158],[466,1,1,158,159],[467,1,1,159,160]]],[18,7,6,160,166,[[525,1,1,160,161],[550,1,1,161,162],[554,2,1,162,163],[572,1,1,163,164],[574,1,1,164,165],[591,1,1,165,166]]],[20,6,6,166,172,[[660,2,2,166,168],[661,1,1,168,169],[662,1,1,169,170],[666,1,1,170,171],[667,1,1,171,172]]],[21,1,1,172,173,[[676,1,1,172,173]]],[22,5,5,173,178,[[684,1,1,173,174],[699,1,1,174,175],[719,1,1,175,176],[737,2,2,176,178]]],[23,4,4,178,182,[[747,2,2,178,180],[783,1,1,180,181],[788,1,1,181,182]]],[24,1,1,182,183,[[797,1,1,182,183]]],[25,21,18,183,201,[[802,4,3,183,186],[804,1,1,186,187],[809,2,2,187,189],[811,3,3,189,192],[817,2,2,192,194],[820,1,1,194,195],[821,1,1,195,196],[824,3,3,196,199],[842,1,1,199,200],[844,3,1,200,201]]],[26,6,4,201,205,[[857,5,3,201,204],[859,1,1,204,205]]],[27,2,2,205,207,[[870,2,2,205,207]]],[34,2,2,207,209,[[905,2,2,207,209]]],[37,2,2,209,211,[[911,2,2,209,211]]]],[9,11,17,20,24,61,142,228,313,385,386,426,532,654,700,779,826,831,839,883,930,953,982,1087,1101,1121,1133,1134,1152,1162,1188,1214,1217,1253,1273,1319,1352,1468,1488,1521,1529,1556,1566,1583,1725,1776,1800,1962,2069,2439,2443,2463,2977,4103,4107,4340,4408,4447,4478,4911,5016,5019,5130,5777,5997,6016,6022,6023,6533,6592,6809,6864,6872,6910,6920,6950,6967,6973,7019,7027,7054,7090,7095,7145,7326,7429,7432,7472,7491,7496,7560,7669,7691,7704,7825,7886,7908,7917,7955,7963,8014,8016,8029,8246,8249,8254,8255,8259,8261,8305,8380,8384,8467,8472,8488,8504,8507,8566,8844,9167,9301,9380,9390,9563,9566,9602,9628,9668,9691,9694,9695,9783,9830,9860,10664,10666,10913,10917,10922,10923,10926,10962,11327,11444,11499,11654,11688,11877,12417,12686,12694,12716,12752,12814,12904,12920,13540,13543,13609,13633,14639,15023,15109,15463,15482,15825,17346,17357,17375,17388,17468,17486,17623,17770,18042,18456,18815,18816,19009,19010,19927,20027,20317,20465,20491,20492,20525,20608,20614,20648,20653,20655,20768,20812,20886,20923,21018,21020,21021,21534,21575,21963,21964,21968,22022,22218,22221,22775,22778,22886,22896]]],["sawest",[6,6,[[0,1,1,0,1,[[19,1,1,0,1]]],[8,2,2,1,3,[[254,1,1,1,2],[263,1,1,2,3]]],[9,1,1,3,4,[[284,1,1,3,4]]],[18,1,1,4,5,[[527,1,1,4,5]]],[26,1,1,5,6,[[857,1,1,5,6]]]],[505,7711,7955,8489,14686,21981]]],["see",[259,249,[[0,21,21,0,21,[[1,1,1,0,1],[7,1,1,1,2],[11,1,1,2,3],[17,1,1,3,4],[20,1,1,4,5],[30,2,2,5,7],[31,1,1,7,8],[33,1,1,8,9],[36,2,2,9,11],[41,1,1,11,12],[42,2,2,12,14],[43,3,3,14,17],[44,2,2,17,19],[47,2,2,19,21]]],[1,13,13,21,34,[[50,1,1,21,22],[52,2,2,22,24],[53,2,2,24,26],[54,1,1,26,27],[55,1,1,27,28],[59,2,2,28,30],[62,1,1,30,31],[63,1,1,31,32],[72,1,1,32,33],[82,1,1,33,34]]],[2,3,3,34,37,[[102,3,3,34,37]]],[3,10,8,37,45,[[120,1,1,37,38],[127,2,2,38,40],[130,1,1,40,41],[138,1,1,41,42],[139,4,2,42,44],[140,1,1,44,45]]],[4,12,12,45,57,[[153,1,1,45,46],[155,1,1,46,47],[156,1,1,47,48],[170,1,1,48,49],[175,1,1,49,50],[180,4,4,50,54],[181,1,1,54,55],[184,1,1,55,56],[186,1,1,56,57]]],[5,1,1,57,58,[[194,1,1,57,58]]],[6,2,2,58,60,[[226,1,1,58,59],[231,1,1,59,60]]],[8,16,15,60,75,[[238,1,1,60,61],[239,1,1,61,62],[241,2,2,62,64],[247,1,1,64,65],[249,3,3,65,68],[252,1,1,68,69],[254,1,1,69,70],[256,1,1,70,71],[259,3,2,71,73],[260,1,1,73,74],[261,1,1,74,75]]],[9,7,6,75,81,[[279,3,2,75,77],[280,2,2,77,79],[290,2,2,79,81]]],[10,4,4,81,85,[[302,1,1,81,82],[304,1,1,82,83],[310,1,1,83,84],[312,1,1,84,85]]],[11,16,15,85,100,[[314,1,1,85,86],[315,3,2,86,88],[317,1,1,88,89],[318,2,2,89,91],[319,4,4,91,95],[321,1,1,95,96],[322,1,1,96,97],[331,1,1,97,98],[334,1,1,98,99],[335,1,1,99,100]]],[13,5,5,100,105,[[376,1,1,100,101],[384,1,1,101,102],[395,1,1,102,103],[396,1,1,103,104],[400,1,1,104,105]]],[15,2,2,105,107,[[414,1,1,105,106],[416,1,1,106,107]]],[16,3,2,107,109,[[428,1,1,107,108],[433,2,1,108,109]]],[17,17,17,109,126,[[438,1,1,109,110],[441,1,1,110,111],[442,1,1,111,112],[444,2,2,112,114],[445,1,1,114,115],[455,1,1,115,116],[456,1,1,116,117],[457,2,2,117,119],[458,1,1,119,120],[463,1,1,120,121],[466,1,1,121,122],[468,2,2,122,124],[470,1,1,124,125],[472,1,1,125,126]]],[18,41,41,126,167,[[487,1,1,126,127],[491,1,1,127,128],[493,1,1,128,129],[499,1,1,129,130],[504,1,1,130,131],[508,1,1,131,132],[511,2,2,132,134],[513,1,1,134,135],[514,1,1,135,136],[517,1,1,136,137],[518,1,1,137,138],[526,2,2,138,140],[529,1,1,140,141],[530,1,1,141,142],[536,1,1,142,143],[540,1,1,143,144],[541,2,2,144,146],[543,1,1,146,147],[546,1,1,147,148],[551,1,1,148,149],[563,1,1,149,150],[566,1,1,150,151],[568,1,1,151,152],[571,1,1,152,153],[574,1,1,153,154],[583,1,1,154,155],[584,2,2,155,157],[589,2,2,157,159],[592,1,1,159,160],[595,1,1,160,161],[596,1,1,161,162],[605,2,2,162,164],[612,1,1,164,165],[616,2,2,165,167]]],[19,2,2,167,169,[[651,1,1,167,168],[656,1,1,168,169]]],[20,4,4,169,173,[[660,1,1,169,170],[661,2,2,170,172],[665,1,1,172,173]]],[21,3,2,173,175,[[676,2,1,173,174],[677,1,1,174,175]]],[22,25,25,175,200,[[683,1,1,175,176],[684,1,1,176,177],[692,1,1,177,178],[696,1,1,178,179],[707,1,1,179,180],[710,1,1,180,181],[711,1,1,181,182],[713,1,1,182,183],[715,1,1,183,184],[716,1,1,184,185],[718,1,1,185,186],[719,1,1,186,187],[720,1,1,187,188],[722,1,1,188,189],[727,1,1,189,190],[730,2,2,190,192],[731,3,3,192,195],[738,2,2,195,197],[739,1,1,197,198],[740,1,1,198,199],[744,1,1,199,200]]],[23,25,23,200,223,[[745,2,2,200,202],[746,5,4,202,206],[747,1,1,206,207],[748,1,1,207,208],[749,3,3,208,211],[750,1,1,211,212],[755,1,1,212,213],[758,1,1,213,214],[761,2,2,214,216],[764,2,2,216,218],[766,1,1,218,219],[767,1,1,219,220],[774,2,1,220,221],[786,1,1,221,222],[795,1,1,222,223]]],[24,2,2,223,225,[[797,2,2,223,225]]],[25,10,9,225,234,[[809,3,3,225,228],[813,5,4,228,232],[821,1,1,232,233],[833,1,1,233,234]]],[28,1,1,234,235,[[877,1,1,234,235]]],[29,1,1,235,236,[[884,1,1,235,236]]],[31,1,1,236,237,[[892,1,1,236,237]]],[32,3,3,237,240,[[898,1,1,237,238],[899,2,2,238,240]]],[34,1,1,240,241,[[904,1,1,240,241]]],[35,1,1,241,242,[[908,1,1,241,242]]],[36,1,1,242,243,[[910,1,1,242,243]]],[37,5,5,243,248,[[912,1,1,243,244],[915,2,2,244,246],[919,1,1,246,247],[920,1,1,247,248]]],[38,1,1,248,249,[[925,1,1,248,249]]]],[49,191,310,445,529,885,923,948,981,1097,1103,1264,1293,1295,1347,1350,1358,1370,1386,1461,1462,1548,1582,1583,1619,1622,1651,1656,1805,1806,1884,1902,2149,2493,3060,3062,3069,3763,4039,4047,4131,4416,4425,4429,4463,4928,5003,5032,5400,5514,5621,5645,5678,5679,5683,5778,5843,6003,6954,7123,7278,7312,7340,7344,7477,7525,7537,7546,7646,7709,7786,7850,7854,7896,7921,8322,8323,8380,8388,8695,8705,9167,9222,9415,9505,9561,9590,9593,9654,9691,9694,9709,9720,9721,9726,9773,9809,10077,10165,10182,11411,11566,11799,11834,11961,12324,12370,12751,12823,12913,12999,13015,13062,13076,13101,13343,13375,13400,13408,13428,13531,13592,13676,13678,13725,13790,14052,14082,14102,14211,14298,14342,14396,14400,14447,14484,14528,14548,14657,14667,14716,14721,14800,14841,14855,14858,14878,14967,15057,15301,15374,15403,15438,15484,15656,15723,15741,15811,15813,15835,15876,15972,16131,16132,16191,16255,16263,17097,17240,17336,17377,17381,17440,17625,17639,17758,17779,17944,18000,18211,18262,18299,18322,18369,18401,18425,18471,18498,18542,18643,18704,18711,18713,18721,18722,18825,18826,18852,18856,18936,18957,18959,18975,18984,18988,18996,19004,19048,19059,19070,19079,19105,19246,19306,19363,19365,19434,19440,19466,19508,19673,19989,20273,20321,20322,20610,20617,20619,20682,20686,20692,20693,20943,21279,22339,22452,22573,22657,22674,22680,22749,22835,22858,22901,22938,22941,23004,23023,23094]]],["seeing",[7,7,[[0,2,2,0,2,[[18,1,1,0,1],[27,1,1,1,2]]],[1,1,1,2,3,[[71,1,1,2,3]]],[3,1,1,3,4,[[151,1,1,3,4]]],[10,1,1,4,5,[[291,1,1,4,5]]],[19,1,1,5,6,[[647,1,1,5,6]]],[20,1,1,6,7,[[659,1,1,6,7]]]],[458,781,2123,4868,8765,16966,17323]]],["seemeth",[1,1,[[2,1,1,0,1,[[103,1,1,0,1]]]],[3146]]],["seen",[128,121,[[0,8,7,0,7,[[6,1,1,0,1],[7,1,1,1,2],[8,1,1,2,3],[21,1,1,3,4],[31,1,1,4,5],[32,2,1,5,6],[44,1,1,6,7]]],[1,8,7,7,14,[[59,1,1,7,8],[62,2,1,8,9],[63,1,1,9,10],[68,1,1,10,11],[69,1,1,11,12],[82,1,1,12,13],[83,1,1,13,14]]],[2,3,2,14,16,[[94,1,1,14,15],[102,2,1,15,16]]],[3,3,3,16,19,[[130,1,1,16,17],[139,1,1,17,18],[143,1,1,18,19]]],[4,9,9,19,28,[[153,2,2,19,21],[156,1,1,21,22],[157,1,1,22,23],[162,1,1,23,24],[168,1,1,24,25],[173,1,1,25,26],[181,1,1,26,27],[185,1,1,27,28]]],[6,6,6,28,34,[[215,1,1,28,29],[216,1,1,29,30],[219,1,1,30,31],[223,1,1,31,32],[224,1,1,32,33],[229,1,1,33,34]]],[8,4,4,34,38,[[241,1,1,34,35],[251,1,1,35,36],[252,1,1,36,37],[258,1,1,37,38]]],[9,3,3,38,41,[[283,1,1,38,39],[284,1,1,39,40],[288,1,1,40,41]]],[10,5,4,41,45,[[296,1,1,41,42],[298,2,1,42,43],[300,2,2,43,45]]],[11,4,3,45,48,[[321,1,1,45,46],[332,2,1,46,47],[335,1,1,47,48]]],[12,1,1,48,49,[[366,1,1,48,49]]],[13,4,3,49,52,[[371,2,1,49,50],[375,2,2,50,52]]],[16,1,1,52,53,[[434,1,1,52,53]]],[17,10,10,53,63,[[439,1,1,53,54],[440,1,1,54,55],[443,1,1,55,56],[445,1,1,56,57],[448,1,1,57,58],[455,1,1,58,59],[466,1,1,59,60],[468,1,1,60,61],[473,2,2,61,63]]],[18,12,12,63,75,[[487,1,1,63,64],[495,1,1,64,65],[512,2,2,65,67],[514,2,2,67,69],[525,1,1,69,70],[531,1,1,70,71],[532,1,1,71,72],[545,1,1,72,73],[567,1,1,73,74],[596,1,1,74,75]]],[19,1,1,75,76,[[652,1,1,75,76]]],[20,10,10,76,86,[[663,2,2,76,78],[664,3,3,78,81],[665,1,1,81,82],[666,1,1,82,83],[667,1,1,83,84],[668,2,2,84,86]]],[22,11,10,86,96,[[687,1,1,86,87],[694,1,1,87,88],[700,1,1,88,89],[717,2,1,89,90],[722,1,1,90,91],[725,1,1,91,92],[735,1,1,92,93],[738,1,1,93,94],[742,1,1,94,95],[744,1,1,95,96]]],[23,8,8,96,104,[[745,1,1,96,97],[747,1,1,97,98],[751,1,1,98,99],[756,1,1,99,100],[757,1,1,100,101],[767,2,2,101,103],[790,1,1,103,104]]],[24,6,6,104,110,[[797,2,2,104,106],[798,1,1,106,107],[799,3,3,107,110]]],[25,6,6,110,116,[[809,3,3,110,113],[812,1,1,113,114],[814,1,1,114,115],[848,1,1,115,116]]],[26,2,2,116,118,[[857,1,1,116,117],[858,1,1,117,118]]],[27,1,1,118,119,[[867,1,1,118,119]]],[37,2,2,119,121,[[919,2,2,119,121]]]],[160,188,219,561,958,970,1371,1783,1874,1902,2030,2073,2496,2499,2831,3059,4122,4437,4567,4920,4923,5013,5077,5207,5346,5454,5682,5819,6631,6676,6802,6906,6911,7054,7347,7613,7643,7832,8466,8499,8613,8914,8993,9086,9091,9782,10113,10194,11181,11277,11370,11375,12860,12938,12954,13047,13104,13154,13333,13607,13671,13810,13815,14055,14133,14431,14432,14475,14485,14642,14732,14741,14924,15393,15994,17120,17410,17415,17418,17422,17423,17444,17467,17488,17498,17500,17831,17981,18061,18416,18549,18602,18783,18823,18889,18930,18958,19008,19130,19252,19293,19497,19498,20050,20318,20320,20348,20355,20413,20414,20616,20619,20621,20679,20711,21685,21967,22009,22177,23007,23013]]],["seer",[4,4,[[8,3,3,0,3,[[244,3,3,0,3]]],[9,1,1,3,4,[[281,1,1,3,4]]]],[7400,7402,7410,8416]]],["seer's",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7409]]],["seers",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18227]]],["seest",[22,22,[[0,2,2,0,2,[[12,1,1,0,1],[30,1,1,1,2]]],[1,1,1,2,3,[[59,1,1,2,3]]],[4,3,3,3,6,[[164,1,1,3,4],[172,1,1,4,5],[173,1,1,5,6]]],[17,1,1,6,7,[[445,1,1,6,7]]],[20,1,1,7,8,[[663,1,1,7,8]]],[22,2,2,8,10,[[736,2,2,8,10]]],[23,5,5,10,15,[[745,2,2,10,12],[764,1,1,12,13],[768,1,1,13,14],[776,1,1,14,15]]],[25,2,2,15,17,[[809,1,1,15,16],[841,1,1,16,17]]],[26,1,1,17,18,[[850,1,1,17,18]]],[29,2,2,18,20,[[885,1,1,18,19],[886,1,1,19,20]]],[37,2,2,20,22,[[914,1,1,20,21],[915,1,1,21,22]]]],[333,916,1805,5253,5428,5458,13090,17405,18789,18793,18957,18959,19434,19527,19755,20610,21481,21750,22472,22483,22924,22938]]],["seeth",[25,25,[[0,2,2,0,2,[[15,1,1,0,1],[43,1,1,1,2]]],[1,1,1,2,3,[[53,1,1,2,3]]],[2,1,1,3,4,[[102,1,1,3,4]]],[4,1,1,4,5,[[184,1,1,4,5]]],[8,1,1,5,6,[[251,1,1,5,6]]],[11,1,1,6,7,[[314,1,1,6,7]]],[17,7,7,7,14,[[445,1,1,7,8],[446,1,1,8,9],[457,1,1,9,10],[463,2,2,10,12],[469,1,1,12,13],[477,1,1,13,14]]],[18,2,2,14,16,[[514,1,1,14,15],[526,1,1,15,16]]],[20,1,1,16,17,[[666,1,1,16,17]]],[22,5,5,17,22,[[699,1,1,17,18],[706,1,1,18,19],[707,2,2,19,21],[725,1,1,21,22]]],[25,3,3,22,25,[[809,1,1,22,23],[810,1,1,23,24],[840,1,1,24,25]]]],[394,1355,1615,3072,5794,7602,9570,13090,13119,13403,13514,13528,13704,13927,14463,14658,17474,18041,18168,18208,18216,18609,20616,20631,21463]]],["shew",[21,20,[[0,1,1,0,1,[[11,1,1,0,1]]],[1,3,3,1,4,[[58,1,1,1,2],[74,1,1,2,3],[82,1,1,3,4]]],[4,1,1,4,5,[[153,1,1,4,5]]],[5,1,1,5,6,[[191,1,1,5,6]]],[6,1,1,6,7,[[214,1,1,6,7]]],[9,1,1,7,8,[[281,1,1,7,8]]],[16,2,2,8,10,[[426,1,1,8,9],[429,1,1,9,10]]],[18,3,3,10,13,[[481,1,1,10,11],[527,1,1,11,12],[568,1,1,12,13]]],[22,1,1,13,14,[[708,1,1,13,14]]],[23,1,1,14,15,[[762,1,1,14,15]]],[25,2,1,15,16,[[841,2,1,15,16]]],[32,1,1,16,17,[[899,1,1,16,17]]],[33,1,1,17,18,[[902,1,1,17,18]]],[34,1,1,18,19,[[903,1,1,18,19]]],[37,1,1,19,20,[[911,1,1,19,20]]]],[299,1758,2204,2491,4925,5940,6621,8414,12713,12770,13971,14691,15411,18247,19401,21481,22679,22717,22734,22887]]],["shewed",[34,32,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,3,3,1,4,[[74,1,1,1,2],[75,1,1,2,3],[76,1,1,3,4]]],[2,1,1,4,5,[[102,1,1,4,5]]],[3,1,1,5,6,[[129,1,1,5,6]]],[4,4,4,6,10,[[156,2,2,6,8],[157,1,1,8,9],[186,1,1,9,10]]],[6,2,2,10,12,[[211,1,1,10,11],[223,1,1,11,12]]],[11,7,6,12,18,[[318,1,1,12,13],[320,2,2,13,15],[323,1,1,15,16],[332,3,2,16,18]]],[18,3,3,18,21,[[537,1,1,18,19],[548,1,1,19,20],[555,1,1,20,21]]],[22,3,2,21,23,[[717,3,2,21,23]]],[23,2,2,23,25,[[768,1,1,23,24],[782,1,1,24,25]]],[25,1,1,25,26,[[812,1,1,25,26]]],[29,4,4,26,30,[[885,3,3,26,29],[886,1,1,29,30]]],[37,2,2,30,32,[[911,1,1,30,31],[913,1,1,31,32]]]],[1462,2235,2265,2280,3071,4101,5039,5040,5077,5840,6534,6907,9680,9737,9740,9833,10111,10113,14810,14996,15124,18414,18416,19525,19916,20680,22465,22468,22471,22482,22898,22913]]],["shewedst",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19244]]],["sheweth",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4419]]],["sight",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13709]]],["spied",[2,2,[[1,1,1,0,1,[[51,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]]],[1565,10189]]],["spy",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9687]]],["stare",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14221]]],["thyself",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9342]]],["up",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14537]]],["upon",[13,13,[[0,2,2,0,2,[[8,1,1,0,1],[39,1,1,1,2]]],[2,3,3,2,5,[[102,3,3,2,5]]],[3,2,2,5,7,[[131,1,1,5,6],[137,1,1,6,7]]],[13,1,1,7,8,[[390,1,1,7,8]]],[18,2,2,8,10,[[502,1,1,8,9],[586,1,1,9,10]]],[25,1,1,10,11,[[817,1,1,10,11]]],[26,1,1,11,12,[[850,1,1,11,12]]],[33,1,1,12,13,[[902,1,1,12,13]]]],[221,1178,3077,3079,3095,4192,4348,11699,14269,15780,20770,21750,22719]]],["visions",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11737]]]]},{"k":"H7201","v":[["glede",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5303]]]]},{"k":"H7202","v":[]},{"k":"H7203","v":[["*",[6,6,[[12,3,3,0,3,[[346,1,1,0,1],[363,1,1,1,2],[366,1,1,2,3]]],[13,2,2,3,5,[[382,2,2,3,5]]],[22,1,1,5,6,[[706,1,1,5,6]]]],[10637,11105,11193,11516,11519,18171]]],["seer",[5,5,[[12,3,3,0,3,[[346,1,1,0,1],[363,1,1,1,2],[366,1,1,2,3]]],[13,2,2,3,5,[[382,2,2,3,5]]]],[10637,11105,11193,11516,11519]]],["vision",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18171]]]]},{"k":"H7204","v":[["Haroeh",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10358]]]]},{"k":"H7205","v":[["*",[72,68,[[0,13,13,0,13,[[28,1,1,0,1],[29,1,1,1,2],[34,2,2,2,4],[36,3,3,4,7],[41,2,2,7,9],[45,2,2,9,11],[47,1,1,11,12],[48,1,1,12,13]]],[1,3,2,13,15,[[50,1,1,13,14],[55,2,1,14,15]]],[3,20,18,15,33,[[117,3,3,15,18],[118,3,2,18,20],[123,1,1,20,21],[126,1,1,21,22],[129,1,1,22,23],[132,1,1,23,24],[142,2,1,24,25],[148,8,8,25,33]]],[4,3,3,33,36,[[163,1,1,33,34],[179,1,1,34,35],[185,1,1,35,36]]],[5,22,21,36,57,[[190,1,1,36,37],[199,3,2,37,39],[201,1,1,39,40],[204,2,2,40,42],[206,1,1,42,43],[207,2,2,43,45],[208,12,12,45,57]]],[6,2,2,57,59,[[215,2,2,57,59]]],[12,6,6,59,65,[[339,1,1,59,60],[342,3,3,60,63],[343,2,2,63,65]]],[25,3,3,65,68,[[849,3,3,65,68]]]],[827,844,1033,1034,1104,1105,1112,1274,1289,1394,1395,1456,1476,1534,1669,3609,3624,3625,3668,3674,3880,4006,4079,4195,4494,4719,4720,4724,4743,4747,4749,4751,4755,5214,5598,5816,5922,6169,6177,6208,6300,6310,6380,6388,6417,6435,6436,6437,6439,6441,6447,6451,6456,6457,6458,6459,6460,6638,6639,10307,10429,10431,10446,10517,10532,21708,21709,21733]]],["+",[2,2,[[5,1,1,0,1,[[207,1,1,0,1]]],[12,1,1,1,2,[[343,1,1,1,2]]]],[6417,10532]]],["Reuben",[70,66,[[0,13,13,0,13,[[28,1,1,0,1],[29,1,1,1,2],[34,2,2,2,4],[36,3,3,4,7],[41,2,2,7,9],[45,2,2,9,11],[47,1,1,11,12],[48,1,1,12,13]]],[1,3,2,13,15,[[50,1,1,13,14],[55,2,1,14,15]]],[3,20,18,15,33,[[117,3,3,15,18],[118,3,2,18,20],[123,1,1,20,21],[126,1,1,21,22],[129,1,1,22,23],[132,1,1,23,24],[142,2,1,24,25],[148,8,8,25,33]]],[4,3,3,33,36,[[163,1,1,33,34],[179,1,1,34,35],[185,1,1,35,36]]],[5,21,20,36,56,[[190,1,1,36,37],[199,3,2,37,39],[201,1,1,39,40],[204,2,2,40,42],[206,1,1,42,43],[207,1,1,43,44],[208,12,12,44,56]]],[6,2,2,56,58,[[215,2,2,56,58]]],[12,5,5,58,63,[[339,1,1,58,59],[342,3,3,59,62],[343,1,1,62,63]]],[25,3,3,63,66,[[849,3,3,63,66]]]],[827,844,1033,1034,1104,1105,1112,1274,1289,1394,1395,1456,1476,1534,1669,3609,3624,3625,3668,3674,3880,4006,4079,4195,4494,4719,4720,4724,4743,4747,4749,4751,4755,5214,5598,5816,5922,6169,6177,6208,6300,6310,6380,6388,6435,6436,6437,6439,6441,6447,6451,6456,6457,6458,6459,6460,6638,6639,10307,10429,10431,10446,10517,21708,21709,21733]]]]},{"k":"H7206","v":[["*",[18,17,[[3,2,2,0,2,[[142,1,1,0,1],[150,1,1,1,2]]],[4,4,4,2,6,[[155,2,2,2,4],[156,1,1,4,5],[181,1,1,5,6]]],[5,4,4,6,10,[[187,1,1,6,7],[198,1,1,7,8],[199,1,1,8,9],[208,1,1,9,10]]],[11,1,1,10,11,[[322,1,1,10,11]]],[12,7,6,11,17,[[342,2,2,11,13],[348,2,1,13,14],[349,1,1,14,15],[363,1,1,15,16],[364,1,1,16,17]]]],[4496,4830,4987,4991,5047,5687,5863,6136,6162,6427,9826,10434,10454,10715,10757,11109,11125]]],["Reuben",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4830]]],["Reubenite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10715]]],["Reubenites",[16,16,[[3,1,1,0,1,[[142,1,1,0,1]]],[4,4,4,1,5,[[155,2,2,1,3],[156,1,1,3,4],[181,1,1,4,5]]],[5,4,4,5,9,[[187,1,1,5,6],[198,1,1,6,7],[199,1,1,7,8],[208,1,1,8,9]]],[11,1,1,9,10,[[322,1,1,9,10]]],[12,6,6,10,16,[[342,2,2,10,12],[348,1,1,12,13],[349,1,1,13,14],[363,1,1,14,15],[364,1,1,15,16]]]],[4496,4987,4991,5047,5687,5863,6136,6162,6427,9826,10434,10454,10715,10757,11109,11125]]]]},{"k":"H7207","v":[]},{"k":"H7208","v":[["Reumah",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[571]]]]},{"k":"H7209","v":[["glass",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13787]]]]},{"k":"H7210","v":[["*",[5,5,[[0,1,1,0,1,[[15,1,1,0,1]]],[8,1,1,1,2,[[251,1,1,1,2]]],[17,2,2,2,4,[[442,1,1,2,3],[468,1,1,3,4]]],[33,1,1,4,5,[[902,1,1,4,5]]]],[394,7607,13016,13671,22718]]],["+",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13671]]],["gazingstock",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22718]]],["seen",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13016]]],["seest",[1,1,[[0,1,1,0,1,[[15,1,1,0,1]]]],[394]]],["to",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7607]]]]},{"k":"H7211","v":[["*",[4,4,[[12,2,2,0,2,[[341,1,1,0,1],[342,1,1,1,2]]],[14,1,1,2,3,[[404,1,1,2,3]]],[15,1,1,3,4,[[419,1,1,3,4]]]],[10387,10433,12074,12470]]],["Reaia",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10433]]],["Reaiah",[3,3,[[12,1,1,0,1,[[341,1,1,0,1]]],[14,1,1,1,2,[[404,1,1,1,2]]],[15,1,1,2,3,[[419,1,1,2,3]]]],[10387,12074,12470]]]]},{"k":"H7212","v":[]},{"k":"H7213","v":[["up",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23078]]]]},{"k":"H7214","v":[["*",[9,9,[[3,2,2,0,2,[[139,1,1,0,1],[140,1,1,1,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[17,2,2,3,5,[[474,2,2,3,5]]],[18,3,3,5,8,[[499,1,1,5,6],[506,1,1,6,7],[569,1,1,7,8]]],[22,1,1,8,9,[[712,1,1,8,9]]]],[4438,4454,5827,13843,13844,14225,14314,15421,18310]]],["unicorn",[6,6,[[3,2,2,0,2,[[139,1,1,0,1],[140,1,1,1,2]]],[17,2,2,2,4,[[474,2,2,2,4]]],[18,2,2,4,6,[[506,1,1,4,5],[569,1,1,5,6]]]],[4438,4454,13843,13844,14314,15421]]],["unicorns",[3,3,[[4,1,1,0,1,[[185,1,1,0,1]]],[18,1,1,1,2,[[499,1,1,1,2]]],[22,1,1,2,3,[[712,1,1,2,3]]]],[5827,14225,18310]]]]},{"k":"H7215","v":[["coral",[2,2,[[17,1,1,0,1,[[463,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[13522,21137]]]]},{"k":"H7216","v":[["Ramoth",[5,5,[[4,1,1,0,1,[[156,1,1,0,1]]],[5,2,2,1,3,[[206,1,1,1,2],[207,1,1,2,3]]],[12,2,2,3,5,[[343,2,2,3,5]]]],[5047,6380,6419,10527,10534]]]]},{"k":"H7217","v":[["*",[14,13,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,13,12,1,13,[[851,3,3,1,4],[852,1,1,4,5],[853,3,3,5,8],[856,6,5,8,13]]]],[12144,21786,21790,21796,21834,21842,21847,21850,21934,21939,21942,21948,21953]]],["chief",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12144]]],["head",[11,11,[[26,11,11,0,11,[[851,3,3,0,3],[852,1,1,3,4],[853,3,3,4,7],[856,4,4,7,11]]]],[21786,21790,21796,21834,21842,21847,21850,21934,21942,21948,21953]]],["heads",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21939]]],["sum",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21934]]]]},{"k":"H7218","v":[["*",[598,547,[[0,19,16,0,16,[[1,1,1,0,1],[2,1,1,1,2],[7,1,1,2,3],[10,1,1,3,4],[27,2,2,4,6],[39,5,5,6,11],[46,1,1,11,12],[47,6,3,12,15],[48,1,1,15,16]]],[1,26,25,16,41,[[55,2,2,16,18],[61,2,2,18,20],[66,2,2,20,22],[67,1,1,22,23],[68,2,1,23,24],[73,1,1,24,25],[75,1,1,25,26],[77,1,1,26,27],[78,6,6,27,33],[79,2,2,33,35],[83,1,1,35,36],[85,2,2,36,38],[87,3,3,38,41]]],[2,40,38,41,79,[[90,4,4,41,45],[92,3,3,45,48],[93,6,6,48,54],[94,1,1,54,55],[95,1,1,55,56],[97,6,6,56,62],[98,1,1,62,63],[99,1,1,63,64],[102,7,7,64,71],[103,3,3,71,74],[105,2,1,74,75],[108,1,1,75,76],[110,3,2,76,78],[113,1,1,78,79]]],[3,41,36,79,115,[[117,4,4,79,83],[120,2,2,83,85],[121,2,2,85,87],[122,8,5,87,92],[123,1,1,92,93],[124,1,1,93,94],[126,2,2,94,96],[129,1,1,96,97],[130,3,3,97,100],[133,1,1,100,101],[136,1,1,101,102],[137,1,1,102,103],[139,3,3,103,106],[141,2,2,106,108],[142,1,1,108,109],[144,1,1,109,110],[146,1,1,110,111],[147,3,2,111,113],[148,1,1,113,114],[152,2,1,114,115]]],[4,17,16,115,131,[[153,3,2,115,117],[155,1,1,117,118],[157,1,1,118,119],[172,1,1,119,120],[173,1,1,120,121],[180,3,3,121,124],[181,1,1,124,125],[184,1,1,125,126],[185,4,4,126,130],[186,1,1,130,131]]],[5,15,13,131,144,[[188,2,1,131,132],[193,1,1,132,133],[197,1,1,133,134],[200,1,1,134,135],[201,2,2,135,137],[205,1,1,137,138],[207,2,1,138,139],[208,3,3,139,142],[209,1,1,142,143],[210,1,1,143,144]]],[6,28,27,144,171,[[215,2,2,144,146],[216,1,1,146,147],[217,4,4,147,151],[218,1,1,151,152],[219,10,9,152,161],[220,1,1,161,162],[221,3,3,162,165],[223,1,1,165,166],[226,5,5,166,171]]],[8,23,21,171,192,[[236,1,1,171,172],[239,1,1,172,173],[240,1,1,173,174],[244,1,1,174,175],[245,1,1,175,176],[246,1,1,176,177],[248,4,2,177,179],[249,1,1,179,180],[250,1,1,180,181],[252,6,6,181,187],[260,1,1,187,188],[261,1,1,188,189],[263,1,1,189,190],[264,1,1,190,191],[266,1,1,191,192]]],[9,32,25,192,217,[[267,3,3,192,195],[268,2,2,195,197],[269,2,2,197,199],[270,5,3,199,202],[271,1,1,202,203],[278,2,1,203,204],[279,2,1,204,205],[280,2,1,205,206],[281,4,2,206,208],[282,2,2,208,210],[284,1,1,210,211],[286,2,2,211,213],[288,1,1,213,214],[289,3,3,214,217]]],[10,23,20,217,237,[[292,5,4,217,221],[297,9,7,221,228],[298,3,3,228,231],[300,1,1,231,232],[308,1,1,232,233],[310,2,2,233,235],[311,2,2,235,237]]],[11,17,16,237,253,[[313,1,1,237,238],[314,2,2,238,240],[316,2,1,240,241],[318,3,3,241,244],[321,3,3,244,247],[322,3,3,247,250],[331,1,1,250,251],[337,2,2,251,253]]],[12,73,63,253,316,[[341,1,1,253,254],[342,5,4,254,258],[344,7,6,258,264],[345,5,4,264,268],[346,6,5,268,273],[347,1,1,273,274],[348,7,6,274,280],[349,9,8,280,288],[351,1,1,288,289],[352,1,1,289,290],[353,2,2,290,292],[357,2,1,292,293],[360,9,9,293,302],[361,6,4,302,306],[363,7,6,306,312],[364,3,3,312,315],[366,1,1,315,316]]],[13,22,20,316,336,[[367,1,1,316,317],[369,2,2,317,319],[370,2,1,319,320],[371,2,2,320,322],[372,1,1,322,323],[377,1,1,323,324],[379,1,1,324,325],[385,2,2,325,327],[386,1,1,327,328],[389,1,1,328,329],[390,2,2,329,331],[391,2,1,331,332],[392,2,2,332,334],[394,1,1,334,335],[397,1,1,335,336]]],[14,13,13,336,349,[[403,1,1,336,337],[404,1,1,337,338],[405,1,1,338,339],[406,2,2,339,341],[409,2,2,341,343],[410,3,3,343,346],[411,2,2,346,348],[412,1,1,348,349]]],[15,16,16,349,365,[[416,1,1,349,350],[419,2,2,350,352],[420,1,1,352,353],[421,1,1,353,354],[422,1,1,354,355],[423,4,4,355,359],[424,6,6,359,365]]],[16,5,5,365,370,[[427,1,1,365,366],[430,1,1,366,367],[431,2,2,367,369],[434,1,1,369,370]]],[17,13,13,370,383,[[436,2,2,370,372],[437,1,1,372,373],[445,1,1,373,374],[447,1,1,374,375],[451,1,1,375,376],[454,1,1,376,377],[455,1,1,377,378],[457,1,1,378,379],[459,1,1,379,380],[464,2,2,380,382],[476,1,1,382,383]]],[18,33,32,383,415,[[480,1,1,383,384],[484,1,1,384,385],[495,1,1,385,386],[498,1,1,386,387],[499,1,1,387,388],[500,1,1,388,389],[501,2,2,389,391],[504,1,1,391,392],[515,1,1,392,393],[517,1,1,393,394],[521,1,1,394,395],[537,1,1,395,396],[543,1,1,396,397],[545,1,1,397,398],[546,1,1,398,399],[549,1,1,399,400],[551,2,2,400,402],[560,1,1,402,403],[585,1,1,403,404],[586,1,1,404,405],[587,2,2,405,407],[595,1,1,407,408],[596,1,1,408,409],[610,1,1,409,410],[614,1,1,410,411],[616,1,1,411,412],[617,2,2,412,414],[618,2,1,414,415]]],[19,10,10,415,425,[[628,2,2,415,417],[631,1,1,417,418],[635,3,3,418,421],[637,1,1,421,422],[638,1,1,422,423],[650,1,1,423,424],[652,1,1,424,425]]],[20,3,3,425,428,[[660,1,1,425,426],[661,1,1,426,427],[667,1,1,427,428]]],[21,9,7,428,435,[[672,1,1,428,429],[674,3,2,429,431],[675,2,2,431,433],[677,2,1,433,434],[678,1,1,434,435]]],[22,28,26,435,461,[[679,2,2,435,437],[680,1,1,437,438],[685,5,3,438,441],[687,2,2,441,443],[693,1,1,443,444],[695,1,1,444,445],[697,1,1,445,446],[706,2,2,446,448],[707,1,1,448,449],[708,1,1,449,450],[713,1,1,450,451],[715,1,1,451,452],[718,1,1,452,453],[719,2,2,453,455],[720,1,1,455,456],[726,1,1,456,457],[729,2,2,457,459],[736,1,1,459,460],[737,1,1,460,461]]],[23,13,13,461,474,[[746,1,1,461,462],[753,1,1,462,463],[757,1,1,463,464],[758,2,2,464,466],[762,1,1,466,467],[766,1,1,467,468],[767,1,1,468,469],[774,1,1,469,470],[775,1,1,470,471],[792,1,1,471,472],[796,2,2,472,474]]],[24,9,7,474,481,[[797,1,1,474,475],[798,5,3,475,478],[799,1,1,478,479],[800,1,1,479,480],[801,1,1,480,481]]],[25,40,38,481,519,[[802,4,3,481,484],[806,1,1,484,485],[807,1,1,485,486],[808,1,1,486,487],[809,1,1,487,488],[810,1,1,488,489],[811,2,2,489,491],[812,1,1,491,492],[814,1,1,492,493],[817,4,4,493,497],[818,3,3,497,500],[822,2,2,500,502],[823,1,1,502,503],[824,2,2,503,505],[825,1,1,505,506],[828,2,2,506,508],[830,1,1,508,509],[833,1,1,509,510],[834,1,1,510,511],[839,2,2,511,513],[840,1,1,513,514],[841,1,1,514,515],[843,1,1,515,516],[844,1,1,516,517],[845,3,2,517,519]]],[26,1,1,519,520,[[850,1,1,519,520]]],[27,2,2,520,522,[[862,1,1,520,521],[865,1,1,521,522]]],[28,3,3,522,525,[[877,1,1,522,523],[878,2,2,523,525]]],[29,6,6,525,531,[[879,1,1,525,526],[880,1,1,526,527],[884,1,1,527,528],[886,1,1,528,529],[887,2,2,529,531]]],[30,1,1,531,532,[[888,1,1,531,532]]],[31,3,3,532,535,[[890,1,1,532,533],[892,2,2,533,535]]],[32,5,5,535,540,[[894,1,1,535,536],[895,3,3,536,539],[896,1,1,539,540]]],[33,1,1,540,541,[[902,1,1,540,541]]],[34,2,2,541,543,[[905,2,2,541,543]]],[37,6,4,543,547,[[911,1,1,543,544],[913,2,1,544,545],[914,2,1,545,546],[916,1,1,546,547]]]],[40,70,188,270,785,791,1185,1188,1189,1191,1192,1451,1465,1468,1469,1499,1669,1680,1818,1825,1992,1993,2024,2046,2194,2259,2325,2342,2343,2346,2351,2353,2355,2394,2405,2498,2595,2604,2650,2652,2661,2749,2753,2757,2760,2780,2786,2791,2799,2806,2810,2819,2824,2828,2838,2854,2926,2929,2931,2935,2937,2939,2966,2983,3064,3081,3082,3092,3093,3096,3097,3120,3129,3140,3222,3308,3350,3355,3460,3606,3608,3620,3653,3745,3765,3799,3810,3828,3830,3832,3834,3841,3852,3951,3992,3998,4078,4112,4148,4152,4247,4339,4360,4425,4430,4444,4475,4486,4491,4588,4649,4690,4713,4746,4880,4905,4907,5002,5076,5436,5459,5624,5634,5655,5689,5800,5815,5825,5826,5831,5840,5888,5982,6117,6188,6210,6211,6372,6382,6440,6447,6456,6462,6477,6649,6653,6680,6710,6713,6714,6719,6747,6761,6779,6788,6790,6791,6797,6798,6807,6811,6829,6837,6838,6840,6889,6952,6962,6966,6968,6971,7223,7309,7323,7413,7419,7456,7502,7503,7553,7577,7623,7656,7664,7669,7672,7675,7900,7918,7944,7971,8018,8024,8032,8038,8065,8074,8089,8110,8127,8128,8132,8156,8316,8336,8382,8419,8421,8427,8435,8487,8575,8576,8646,8661,8666,8671,8802,8803,8807,8814,8950,8951,8952,8953,8956,8969,8975,8986,8993,9017,9098,9383,9439,9440,9460,9463,9542,9554,9556,9622,9699,9705,9706,9759,9762,9786,9799,9800,9801,10082,10240,10249,10427,10435,10440,10443,10452,10537,10538,10542,10544,10546,10575,10581,10585,10588,10603,10624,10628,10632,10648,10649,10668,10679,10683,10684,10688,10693,10715,10723,10729,10734,10738,10739,10740,10743,10752,10789,10803,10825,10827,10928,10991,10992,10994,10999,11000,11001,11002,11003,11007,11019,11021,11036,11046,11087,11089,11098,11103,11108,11109,11110,11112,11114,11175,11196,11244,11245,11258,11270,11277,11305,11436,11465,11584,11587,11614,11658,11683,11688,11716,11744,11752,11776,11864,12021,12095,12109,12112,12113,12178,12201,12202,12217,12218,12240,12243,12268,12363,12490,12491,12506,12528,12563,12591,12601,12604,12605,12631,12636,12646,12647,12648,12670,12741,12781,12801,12805,12859,12886,12889,12903,13101,13152,13242,13306,13332,13401,13460,13535,13557,13895,13960,14011,14161,14194,14211,14240,14248,14250,14291,14494,14537,14585,14814,14885,14921,14939,15016,15061,15062,15243,15750,15780,15792,15793,15891,16058,16171,16228,16256,16270,16272,16281,16409,16421,16499,16604,16625,16628,16662,16714,17078,17135,17347,17370,17483,17560,17590,17596,17600,17609,17632,17643,17659,17660,17687,17790,17791,17802,17843,17844,17962,17989,18019,18165,18168,18203,18234,18330,18374,18441,18455,18477,18491,18630,18684,18693,18791,18817,19002,19176,19287,19296,19297,19400,19460,19503,19690,19698,20117,20300,20307,20315,20342,20347,20351,20408,20421,20458,20486,20489,20490,20547,20576,20595,20607,20632,20634,20644,20676,20726,20774,20787,20793,20805,20829,20844,20847,20963,20965,21007,21022,21049,21079,21143,21151,21201,21275,21284,21427,21428,21449,21478,21564,21584,21617,21619,21747,22105,22146,22316,22347,22350,22366,22386,22457,22491,22496,22498,22525,22553,22574,22576,22608,22609,22617,22619,22621,22722,22781,22782,22899,22917,22924,22958]]],["+",[25,24,[[2,1,1,0,1,[[102,1,1,0,1]]],[3,1,1,1,2,[[139,1,1,1,2]]],[4,2,2,2,4,[[184,1,1,2,3],[185,1,1,3,4]]],[5,1,1,4,5,[[201,1,1,4,5]]],[6,1,1,5,6,[[219,1,1,5,6]]],[9,2,2,6,8,[[270,1,1,6,7],[282,1,1,7,8]]],[13,3,3,8,11,[[385,1,1,8,9],[391,1,1,9,10],[394,1,1,10,11]]],[14,1,1,11,12,[[404,1,1,11,12]]],[15,2,2,12,14,[[419,1,1,12,13],[423,1,1,13,14]]],[19,1,1,14,15,[[635,1,1,14,15]]],[20,1,1,15,16,[[661,1,1,15,16]]],[21,3,2,16,18,[[674,2,1,16,17],[675,1,1,17,18]]],[22,5,5,18,23,[[718,1,1,18,19],[719,2,2,19,21],[720,1,1,21,22],[726,1,1,22,23]]],[25,1,1,23,24,[[818,1,1,23,24]]]],[3064,4425,5800,5825,6211,6790,8127,8427,11584,11716,11776,12095,12491,12604,16625,17370,17590,17600,18441,18455,18477,18491,18630,20847]]],["bands",[2,2,[[12,1,1,0,1,[[349,1,1,0,1]]],[17,1,1,1,2,[[436,1,1,1,2]]]],[10743,12886]]],["beginning",[5,5,[[1,1,1,0,1,[[61,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[24,1,1,3,4,[[798,1,1,3,4]]],[25,1,1,4,5,[[841,1,1,4,5]]]],[1818,6713,16058,20351,21478]]],["beginnings",[2,2,[[3,2,2,0,2,[[126,1,1,0,1],[144,1,1,1,2]]]],[3998,4588]]],["captain",[4,4,[[3,1,1,0,1,[[130,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]],[13,1,1,2,3,[[379,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]]],[4112,10715,11465,12528]]],["captains",[6,6,[[4,1,1,0,1,[[181,1,1,0,1]]],[12,5,5,1,6,[[341,1,1,1,2],[348,1,1,2,3],[349,3,3,3,6]]]],[5689,10427,10688,10734,10738,10740]]],["chapiters",[4,4,[[1,4,4,0,4,[[85,1,1,0,1],[87,3,3,1,4]]]],[2604,2650,2652,2661]]],["chief",[89,85,[[3,4,3,0,3,[[147,1,1,0,1],[148,1,1,1,2],[152,2,1,2,3]]],[4,1,1,3,4,[[153,1,1,3,4]]],[9,3,3,4,7,[[289,3,3,4,7]]],[11,1,1,7,8,[[337,1,1,7,8]]],[12,40,37,8,45,[[342,3,3,8,11],[344,2,2,11,13],[345,1,1,13,14],[346,5,4,14,18],[348,5,4,18,22],[349,2,2,22,24],[352,1,1,24,25],[353,1,1,25,26],[360,7,7,26,33],[361,3,3,33,36],[363,7,6,36,42],[364,3,3,42,45]]],[13,8,8,45,53,[[367,1,1,45,46],[377,1,1,46,47],[385,1,1,47,48],[389,1,1,48,49],[390,1,1,49,50],[392,2,2,50,52],[397,1,1,52,53]]],[14,8,8,53,61,[[403,1,1,53,54],[405,1,1,54,55],[406,2,2,55,57],[409,1,1,57,58],[410,2,2,58,60],[412,1,1,60,61]]],[15,11,11,61,72,[[419,1,1,61,62],[420,1,1,62,63],[422,1,1,63,64],[423,2,2,64,66],[424,6,6,66,72]]],[17,2,2,72,74,[[447,1,1,72,73],[464,1,1,73,74]]],[18,1,1,74,75,[[614,1,1,74,75]]],[19,1,1,75,76,[[628,1,1,75,76]]],[21,1,1,76,77,[[674,1,1,76,77]]],[23,3,3,77,80,[[757,1,1,77,78],[775,1,1,78,79],[796,1,1,79,80]]],[24,1,1,80,81,[[797,1,1,80,81]]],[25,4,4,81,85,[[828,1,1,81,82],[839,2,2,82,84],[840,1,1,84,85]]]],[4690,4746,4880,4907,8661,8666,8671,10240,10435,10440,10443,10538,10575,10603,10624,10632,10648,10649,10679,10683,10684,10693,10723,10738,10803,10825,10991,10992,10994,10999,11000,11001,11007,11019,11021,11046,11087,11089,11098,11103,11108,11109,11110,11112,11114,11196,11436,11587,11658,11683,11744,11752,11864,12021,12109,12112,12113,12178,12202,12218,12268,12490,12506,12563,12591,12601,12631,12636,12646,12647,12648,12670,13152,13557,16228,16421,17596,19287,19698,20300,20315,21143,21427,21428,21449]]],["chiefest",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7413]]],["companies",[7,7,[[6,5,5,0,5,[[217,2,2,0,2],[219,3,3,2,5]]],[8,2,2,5,7,[[246,1,1,5,6],[248,1,1,6,7]]]],[6710,6714,6788,6797,6798,7456,7502]]],["company",[5,4,[[6,2,2,0,2,[[219,2,2,0,2]]],[8,3,2,2,4,[[248,3,2,2,4]]]],[6791,6798,7502,7503]]],["ends",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[371,1,1,1,2]]]],[8993,11277]]],["every",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6653]]],["excellent",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16281]]],["first",[6,6,[[12,5,5,0,5,[[349,1,1,0,1],[353,1,1,1,2],[360,2,2,2,4],[361,1,1,4,5]]],[29,1,1,5,6,[[884,1,1,5,6]]]],[10729,10827,11002,11003,11036,22457]]],["forefront",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11614]]],["head",[262,241,[[0,14,11,0,11,[[2,1,1,0,1],[39,5,5,1,6],[46,1,1,6,7],[47,6,3,7,10],[48,1,1,10,11]]],[1,9,9,11,20,[[61,1,1,11,12],[75,1,1,12,13],[78,6,6,13,19],[85,1,1,19,20]]],[2,36,34,20,54,[[90,4,4,20,24],[92,3,3,24,27],[93,6,6,27,33],[94,1,1,33,34],[97,6,6,34,40],[98,1,1,40,41],[102,6,6,41,47],[103,3,3,47,50],[105,2,1,50,51],[110,3,2,51,53],[113,1,1,53,54]]],[3,12,9,54,63,[[117,1,1,54,55],[121,1,1,55,56],[122,8,5,56,61],[133,1,1,61,62],[141,1,1,62,63]]],[4,5,5,63,68,[[173,1,1,63,64],[180,3,3,64,67],[185,1,1,67,68]]],[5,4,3,68,71,[[188,2,1,68,69],[197,1,1,69,70],[208,1,1,70,71]]],[6,11,11,71,82,[[215,1,1,71,72],[219,1,1,72,73],[220,1,1,73,74],[221,3,3,74,77],[223,1,1,77,78],[226,4,4,78,82]]],[8,15,15,82,97,[[236,1,1,82,83],[239,1,1,83,84],[240,1,1,84,85],[245,1,1,85,86],[249,1,1,86,87],[250,1,1,87,88],[252,6,6,88,94],[260,1,1,94,95],[263,1,1,95,96],[266,1,1,96,97]]],[9,24,19,97,116,[[267,3,3,97,100],[268,1,1,100,101],[269,2,2,101,103],[270,4,3,103,106],[278,2,1,106,107],[279,2,1,107,108],[280,2,1,108,109],[281,3,2,109,111],[282,1,1,111,112],[284,1,1,112,113],[286,2,2,113,115],[288,1,1,115,116]]],[10,6,5,116,121,[[292,5,4,116,120],[298,1,1,120,121]]],[11,12,11,121,132,[[314,2,2,121,123],[316,2,1,123,124],[318,3,3,124,127],[321,3,3,127,130],[331,1,1,130,131],[337,1,1,131,132]]],[12,4,3,132,135,[[347,1,1,132,133],[357,2,1,133,134],[366,1,1,134,135]]],[13,1,1,135,136,[[372,1,1,135,136]]],[14,2,2,136,138,[[411,2,2,136,138]]],[15,1,1,138,139,[[416,1,1,138,139]]],[16,4,4,139,143,[[427,1,1,139,140],[431,2,2,140,142],[434,1,1,142,143]]],[17,7,7,143,150,[[436,1,1,143,144],[445,1,1,144,145],[451,1,1,145,146],[454,1,1,146,147],[455,1,1,147,148],[464,1,1,148,149],[476,1,1,149,150]]],[18,21,21,150,171,[[480,1,1,150,151],[484,1,1,151,152],[495,1,1,152,153],[498,1,1,153,154],[499,1,1,154,155],[500,1,1,155,156],[504,1,1,156,157],[515,1,1,157,158],[517,1,1,158,159],[521,1,1,159,160],[537,1,1,160,161],[545,1,1,161,162],[546,1,1,162,163],[560,1,1,163,164],[585,1,1,164,165],[587,1,1,165,166],[595,1,1,166,167],[610,1,1,167,168],[617,2,2,168,170],[618,1,1,170,171]]],[19,5,5,171,176,[[628,1,1,171,172],[631,1,1,172,173],[637,1,1,173,174],[638,1,1,174,175],[652,1,1,175,176]]],[20,2,2,176,178,[[660,1,1,176,177],[667,1,1,177,178]]],[21,5,4,178,182,[[672,1,1,178,179],[675,1,1,179,180],[677,2,1,180,181],[678,1,1,181,182]]],[22,17,15,182,197,[[679,2,2,182,184],[685,5,3,184,187],[687,2,2,187,189],[697,1,1,189,190],[706,2,2,190,192],[715,1,1,192,193],[729,2,2,193,195],[736,1,1,195,196],[737,1,1,196,197]]],[23,8,8,197,205,[[746,1,1,197,198],[753,1,1,198,199],[762,1,1,199,200],[766,1,1,200,201],[767,1,1,201,202],[774,1,1,202,203],[792,1,1,203,204],[796,1,1,204,205]]],[24,3,3,205,208,[[798,1,1,205,206],[799,1,1,206,207],[801,1,1,207,208]]],[25,16,16,208,224,[[806,1,1,208,209],[809,1,1,209,210],[810,1,1,210,211],[811,2,2,211,213],[814,1,1,213,214],[817,4,4,214,218],[818,1,1,218,219],[822,2,2,219,221],[830,1,1,221,222],[834,1,1,222,223],[843,1,1,223,224]]],[26,1,1,224,225,[[850,1,1,224,225]]],[27,1,1,225,226,[[862,1,1,225,226]]],[28,2,2,226,228,[[878,2,2,226,228]]],[29,3,3,228,231,[[880,1,1,228,229],[886,1,1,229,230],[887,1,1,230,231]]],[30,1,1,231,232,[[888,1,1,231,232]]],[31,3,3,232,235,[[890,1,1,232,233],[892,2,2,233,235]]],[32,1,1,235,236,[[894,1,1,235,236]]],[34,2,2,236,238,[[905,2,2,236,238]]],[37,4,3,238,241,[[911,1,1,238,239],[913,2,1,239,240],[916,1,1,240,241]]]],[70,1185,1188,1189,1191,1192,1451,1465,1468,1469,1499,1825,2259,2342,2343,2346,2351,2353,2355,2595,2749,2753,2757,2760,2780,2786,2791,2799,2806,2810,2819,2824,2828,2838,2926,2929,2931,2935,2937,2939,2966,3081,3082,3092,3093,3096,3097,3120,3129,3140,3222,3350,3355,3460,3608,3810,3828,3830,3832,3834,3841,4247,4486,5459,5624,5634,5655,5826,5888,6117,6440,6649,6807,6829,6837,6838,6840,6889,6962,6966,6968,6971,7223,7309,7323,7419,7553,7577,7623,7656,7664,7669,7672,7675,7900,7944,8018,8024,8032,8038,8065,8089,8110,8127,8128,8132,8316,8336,8382,8419,8421,8435,8487,8575,8576,8646,8802,8803,8807,8814,9017,9554,9556,9622,9699,9705,9706,9759,9762,9786,10082,10249,10668,10928,11175,11305,12240,12243,12363,12741,12801,12805,12859,12889,13101,13242,13306,13332,13535,13895,13960,14011,14161,14194,14211,14240,14291,14494,14537,14585,14814,14921,14939,15243,15750,15793,15891,16171,16270,16272,16281,16409,16499,16662,16714,17135,17347,17483,17560,17609,17632,17643,17659,17660,17790,17791,17802,17843,17844,18019,18165,18168,18374,18684,18693,18791,18817,19002,19176,19400,19460,19503,19690,20117,20307,20347,20408,20458,20547,20607,20632,20634,20644,20726,20774,20787,20793,20805,20844,20963,20965,21201,21284,21564,21747,22105,22347,22350,22386,22491,22496,22525,22553,22574,22576,22608,22781,22782,22899,22917,22958]]],["heads",[84,79,[[0,1,1,0,1,[[1,1,1,0,1]]],[1,3,3,1,4,[[55,2,2,1,3],[67,1,1,3,4]]],[2,2,2,4,6,[[99,1,1,4,5],[108,1,1,5,6]]],[3,7,7,6,13,[[117,1,1,6,7],[123,1,1,7,8],[124,1,1,8,9],[126,1,1,9,10],[129,1,1,10,11],[141,1,1,11,12],[146,1,1,12,13]]],[4,4,4,13,17,[[153,1,1,13,14],[157,1,1,14,15],[185,2,2,15,17]]],[5,9,8,17,25,[[193,1,1,17,18],[200,1,1,18,19],[205,1,1,19,20],[207,2,1,20,21],[208,2,2,21,23],[209,1,1,23,24],[210,1,1,24,25]]],[6,3,3,25,28,[[217,1,1,25,26],[218,1,1,26,27],[219,1,1,27,28]]],[8,1,1,28,29,[[264,1,1,28,29]]],[10,3,3,29,32,[[298,1,1,29,30],[310,2,2,30,32]]],[11,3,3,32,35,[[322,3,3,32,35]]],[12,14,13,35,48,[[342,2,1,35,36],[344,5,5,36,41],[345,4,4,41,45],[346,1,1,45,46],[349,2,2,46,48]]],[13,2,2,48,50,[[369,1,1,48,49],[371,1,1,49,50]]],[17,1,1,50,51,[[437,1,1,50,51]]],[18,7,7,51,58,[[501,2,2,51,53],[543,1,1,53,54],[551,2,2,54,56],[586,1,1,56,57],[587,1,1,57,58]]],[22,2,2,58,60,[[693,1,1,58,59],[713,1,1,59,60]]],[23,2,2,60,62,[[758,2,2,60,62]]],[24,2,1,62,63,[[798,2,1,62,63]]],[25,15,13,63,76,[[802,4,3,63,66],[808,1,1,66,67],[812,1,1,67,68],[823,1,1,68,69],[824,2,2,69,71],[825,1,1,71,72],[828,1,1,72,73],[833,1,1,73,74],[845,3,2,74,76]]],[32,3,3,76,79,[[895,3,3,76,79]]]],[40,1669,1680,2024,2983,3308,3620,3852,3951,3992,4078,4475,4649,4907,5076,5815,5831,5982,6188,6372,6382,6447,6456,6462,6477,6719,6747,6811,7971,8986,9439,9440,9799,9800,9801,10452,10537,10542,10544,10546,10575,10581,10585,10588,10603,10628,10739,10752,11245,11270,12903,14248,14250,14885,15061,15062,15780,15792,17962,18330,19296,19297,20342,20486,20489,20490,20595,20676,21007,21022,21049,21079,21151,21275,21617,21619,22609,22617,22619]]],["height",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13401]]],["high",[3,3,[[10,2,2,0,2,[[311,2,2,0,2]]],[13,1,1,2,3,[[390,1,1,2,3]]]],[9460,9463,11688]]],["lead",[1,1,[[4,1,1,0,1,[[172,1,1,0,1]]]],[5436]]],["men",[3,3,[[12,1,1,0,1,[[361,1,1,0,1]]],[14,2,2,1,3,[[409,1,1,1,2],[410,1,1,2,3]]]],[11019,12201,12217]]],["part",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16628]]],["principal",[5,5,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,1,1,1,2,[[95,1,1,1,2]]],[3,1,1,2,3,[[121,1,1,2,3]]],[12,1,1,3,4,[[361,1,1,3,4]]],[15,1,1,4,5,[[423,1,1,4,5]]]],[2405,2854,3799,11046,12605]]],["rulers",[2,2,[[4,1,1,0,1,[[153,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]]],[4905,18203]]],["sum",[9,9,[[1,1,1,0,1,[[79,1,1,0,1]]],[3,7,7,1,8,[[117,2,2,1,3],[120,2,2,3,5],[142,1,1,5,6],[147,2,2,6,8]]],[18,1,1,8,9,[[616,1,1,8,9]]]],[2394,3606,3653,3745,3765,4491,4690,4713,16256]]],["top",[58,53,[[0,3,3,0,3,[[10,1,1,0,1],[27,2,2,1,3]]],[1,7,6,3,9,[[66,2,2,3,5],[68,2,1,5,6],[73,1,1,6,7],[77,1,1,7,8],[83,1,1,8,9]]],[3,6,6,9,15,[[130,2,2,9,11],[136,1,1,11,12],[137,1,1,12,13],[139,2,2,13,15]]],[4,2,2,15,17,[[155,1,1,15,16],[186,1,1,16,17]]],[5,1,1,17,18,[[201,1,1,17,18]]],[6,4,4,18,22,[[216,1,1,18,19],[219,2,2,19,21],[226,1,1,21,22]]],[8,1,1,22,23,[[261,1,1,22,23]]],[9,2,2,23,25,[[268,1,1,23,24],[281,1,1,24,25]]],[10,10,8,25,33,[[297,8,6,25,31],[300,1,1,31,32],[308,1,1,32,33]]],[11,1,1,33,34,[[313,1,1,33,34]]],[13,4,3,34,37,[[369,1,1,34,35],[370,2,1,35,36],[391,1,1,36,37]]],[16,1,1,37,38,[[430,1,1,37,38]]],[18,1,1,38,39,[[549,1,1,38,39]]],[19,2,2,39,41,[[635,1,1,39,40],[650,1,1,40,41]]],[22,3,3,41,44,[[680,1,1,41,42],[695,1,1,42,43],[708,1,1,43,44]]],[24,2,2,44,46,[[798,1,1,44,45],[800,1,1,45,46]]],[25,2,2,46,48,[[818,1,1,46,47],[844,1,1,47,48]]],[29,2,2,48,50,[[879,1,1,48,49],[887,1,1,49,50]]],[32,1,1,50,51,[[896,1,1,50,51]]],[33,1,1,51,52,[[902,1,1,51,52]]],[37,2,1,52,53,[[914,2,1,52,53]]]],[270,785,791,1992,1993,2046,2194,2325,2498,4148,4152,4339,4360,4430,4444,5002,5840,6210,6680,6761,6779,6952,7918,8074,8421,8951,8952,8953,8956,8969,8975,9098,9383,9542,11244,11258,11716,12781,15016,16604,17078,17687,17989,18234,20351,20421,20829,21584,22366,22498,22621,22722,22924]]],["tops",[8,8,[[0,1,1,0,1,[[7,1,1,0,1]]],[9,1,1,1,2,[[271,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[12,1,1,3,4,[[351,1,1,3,4]]],[17,1,1,4,5,[[459,1,1,4,5]]],[25,1,1,5,6,[[807,1,1,5,6]]],[27,1,1,6,7,[[865,1,1,6,7]]],[28,1,1,7,8,[[877,1,1,7,8]]]],[188,8156,8950,10789,13460,20576,22146,22316]]]]},{"k":"H7219","v":[["*",[12,12,[[4,3,3,0,3,[[181,1,1,0,1],[184,2,2,1,3]]],[17,1,1,3,4,[[455,1,1,3,4]]],[18,1,1,4,5,[[546,1,1,4,5]]],[23,3,3,5,8,[[752,1,1,5,6],[753,1,1,6,7],[767,1,1,7,8]]],[24,2,2,8,10,[[799,2,2,8,10]]],[27,1,1,10,11,[[871,1,1,10,11]]],[29,1,1,11,12,[[884,1,1,11,12]]]],[5697,5790,5791,13342,14956,19167,19190,19499,20359,20373,22229,22462]]],["gall",[9,9,[[4,2,2,0,2,[[181,1,1,0,1],[184,1,1,1,2]]],[18,1,1,2,3,[[546,1,1,2,3]]],[23,3,3,3,6,[[752,1,1,3,4],[753,1,1,4,5],[767,1,1,5,6]]],[24,2,2,6,8,[[799,2,2,6,8]]],[29,1,1,8,9,[[884,1,1,8,9]]]],[5697,5790,14956,19167,19190,19499,20359,20373,22462]]],["hemlock",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22229]]],["poison",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13342]]],["venom",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5791]]]]},{"k":"H7220","v":[["Rosh",[1,1,[[0,1,1,0,1,[[45,1,1,0,1]]]],[1407]]]]},{"k":"H7221","v":[["+",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21370]]]]},{"k":"H7222","v":[["+",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22929]]]]},{"k":"H7223","v":[["*",[182,174,[[0,10,10,0,10,[[7,1,1,0,1],[12,1,1,1,2],[24,1,1,2,3],[25,1,1,3,4],[27,1,1,4,5],[31,1,1,5,6],[32,1,1,6,7],[37,1,1,7,8],[39,1,1,8,9],[40,1,1,9,10]]],[1,11,9,10,19,[[53,1,1,10,11],[61,5,4,11,15],[83,3,2,15,17],[89,2,2,17,19]]],[2,9,9,19,28,[[93,1,1,19,20],[94,1,1,20,21],[98,1,1,21,22],[112,5,5,22,27],[115,1,1,27,28]]],[3,13,12,28,40,[[118,1,1,28,29],[122,1,1,29,30],[123,1,1,30,31],[125,2,2,31,33],[126,2,2,33,35],[136,1,1,35,36],[137,1,1,36,37],[144,2,2,37,39],[149,2,1,39,40]]],[4,12,12,40,52,[[156,1,1,40,41],[161,1,1,41,42],[162,5,5,42,47],[165,1,1,47,48],[168,1,1,48,49],[169,1,1,49,50],[171,1,1,50,51],[176,1,1,51,52]]],[5,5,5,52,57,[[190,1,1,52,53],[194,3,3,53,56],[207,1,1,56,57]]],[6,4,4,57,61,[[228,1,1,57,58],[230,3,3,58,61]]],[7,1,1,61,62,[[234,1,1,61,62]]],[8,2,2,62,64,[[249,1,1,62,63],[252,1,1,63,64]]],[9,6,6,64,70,[[273,1,1,64,65],[284,1,1,65,66],[285,2,2,66,68],[286,1,1,68,69],[287,1,1,69,70]]],[10,5,5,70,75,[[303,1,1,70,71],[307,1,1,71,72],[308,1,1,72,73],[310,2,2,73,75]]],[11,3,3,75,78,[[313,1,1,75,76],[329,2,2,76,78]]],[12,13,11,78,89,[[346,1,1,78,79],[348,2,1,79,80],[349,1,1,80,81],[352,1,1,81,82],[354,1,1,82,83],[355,1,1,83,84],[361,1,1,84,85],[362,1,1,85,86],[364,3,2,86,88],[366,1,1,88,89]]],[13,16,14,89,103,[[369,1,1,89,90],[375,1,1,90,91],[378,1,1,91,92],[382,1,1,92,93],[383,1,1,93,94],[386,1,1,94,95],[388,1,1,95,96],[391,1,1,96,97],[392,1,1,97,98],[394,1,1,98,99],[395,4,2,99,101],[401,2,2,101,103]]],[14,6,6,103,109,[[405,1,1,103,104],[408,1,1,104,105],[409,1,1,105,106],[410,1,1,106,107],[411,1,1,107,108],[412,1,1,108,109]]],[15,3,3,109,112,[[417,1,1,109,110],[419,1,1,110,111],[420,1,1,111,112]]],[16,3,3,112,115,[[426,1,1,112,113],[428,2,2,113,115]]],[17,2,2,115,117,[[443,1,1,115,116],[450,1,1,116,117]]],[18,2,2,117,119,[[556,1,1,117,118],[566,1,1,118,119]]],[19,2,2,119,121,[[645,1,1,119,120],[647,1,1,120,121]]],[20,2,2,121,123,[[659,1,1,121,122],[665,1,1,122,123]]],[22,19,19,123,142,[[679,1,1,123,124],[687,1,1,124,125],[719,3,3,125,128],[720,1,1,128,129],[721,3,3,129,132],[722,1,1,132,133],[724,1,1,133,134],[726,2,2,134,136],[730,1,1,136,137],[738,1,1,137,138],[739,1,1,138,139],[743,3,3,139,142]]],[23,10,9,142,151,[[751,1,1,142,143],[755,1,1,143,144],[760,1,1,144,145],[761,1,1,145,146],[777,2,2,146,148],[778,1,1,148,149],[780,2,1,149,150],[794,1,1,150,151]]],[25,5,5,151,156,[[830,1,1,151,152],[831,1,1,152,153],[841,1,1,153,154],[846,2,2,154,156]]],[26,6,6,156,162,[[857,1,1,156,157],[859,3,3,157,160],[860,2,2,160,162]]],[27,1,1,162,163,[[863,1,1,162,163]]],[28,1,1,163,164,[[877,1,1,163,164]]],[32,1,1,164,165,[[896,1,1,164,165]]],[36,2,2,165,167,[[910,2,2,165,167]]],[37,7,7,167,174,[[911,1,1,167,168],[916,1,1,168,169],[917,2,2,169,171],[918,1,1,171,172],[922,1,1,172,173],[924,1,1,173,174]]]],[196,322,683,693,792,945,962,1147,1185,1215,1609,1818,1831,1832,1834,2497,2500,2709,2724,2816,2838,2968,3407,3409,3437,3441,3442,3569,3667,3835,3862,3966,3970,4001,4002,4312,4366,4593,4595,4763,5036,5175,5187,5188,5189,5190,5196,5281,5346,5371,5420,5529,5929,6007,6008,6035,6391,7022,7076,7086,7093,7182,7522,7648,8190,8505,8531,8554,8572,8589,9190,9330,9366,9417,9425,9547,10017,10023,10617,10679,10735,10804,10872,10907,11022,11055,11111,11112,11193,11232,11393,11452,11520,11526,11621,11645,11730,11754,11790,11794,11808,11967,11993,12109,12170,12182,12232,12239,12269,12397,12425,12511,12716,12754,12759,13037,13210,15193,15375,16918,16975,17326,17439,17680,17830,18455,18473,18478,18489,18514,18523,18532,18539,18595,18617,18626,18700,18830,18847,18904,18913,18914,19131,19236,19354,19369,19782,19786,19806,19870,20183,21200,21224,21498,21648,21651,21982,22019,22027,22028,22049,22065,22112,22334,22628,22858,22864,22882,22949,22969,22974,22987,23052,23078]]],["+",[6,6,[[1,1,1,0,1,[[61,1,1,0,1]]],[12,2,2,1,3,[[348,1,1,1,2],[352,1,1,2,3]]],[20,1,1,3,4,[[665,1,1,3,4]]],[23,2,2,4,6,[[755,1,1,4,5],[761,1,1,5,6]]]],[1831,10679,10804,17439,19236,19369]]],["aforetime",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18700]]],["ancestors",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3569]]],["before",[3,3,[[3,1,1,0,1,[[122,1,1,0,1]]],[5,1,1,1,2,[[194,1,1,1,2]]],[10,1,1,2,3,[[303,1,1,2,3]]]],[3835,6035,9190]]],["beforetime",[1,1,[[9,1,1,0,1,[[273,1,1,0,1]]]],[8190]]],["beginning",[3,3,[[7,1,1,0,1,[[234,1,1,0,1]]],[12,1,1,1,2,[[354,1,1,1,2]]],[19,1,1,2,3,[[647,1,1,2,3]]]],[7182,10872,16975]]],["chief",[3,3,[[12,1,1,0,1,[[355,1,1,0,1]]],[14,1,1,1,2,[[411,1,1,1,2]]],[26,1,1,2,3,[[859,1,1,2,3]]]],[10907,12239,22028]]],["eldest",[1,1,[[13,1,1,0,1,[[388,1,1,0,1]]]],[11645]]],["first",[126,121,[[0,7,7,0,7,[[7,1,1,0,1],[12,1,1,1,2],[24,1,1,2,3],[25,1,1,3,4],[27,1,1,4,5],[37,1,1,5,6],[40,1,1,6,7]]],[1,10,9,7,16,[[53,1,1,7,8],[61,4,4,8,12],[83,3,2,12,14],[89,2,2,14,16]]],[2,8,8,16,24,[[93,1,1,16,17],[94,1,1,17,18],[98,1,1,18,19],[112,5,5,19,24]]],[3,11,10,24,34,[[118,1,1,24,25],[123,1,1,25,26],[125,2,2,26,28],[126,2,2,28,30],[136,1,1,30,31],[144,2,2,31,33],[149,2,1,33,34]]],[4,9,9,34,43,[[161,1,1,34,35],[162,5,5,35,40],[165,1,1,40,41],[168,1,1,41,42],[169,1,1,42,43]]],[5,4,4,43,47,[[190,1,1,43,44],[194,2,2,44,46],[207,1,1,46,47]]],[6,4,4,47,51,[[228,1,1,47,48],[230,3,3,48,51]]],[8,1,1,51,52,[[249,1,1,51,52]]],[9,3,3,52,55,[[285,2,2,52,54],[287,1,1,54,55]]],[10,4,4,55,59,[[307,1,1,55,56],[308,1,1,56,57],[310,2,2,57,59]]],[12,9,8,59,67,[[346,1,1,59,60],[348,1,1,60,61],[349,1,1,61,62],[361,1,1,62,63],[362,1,1,63,64],[364,3,2,64,66],[366,1,1,66,67]]],[13,15,13,67,80,[[369,1,1,67,68],[375,1,1,68,69],[378,1,1,69,70],[382,1,1,70,71],[383,1,1,71,72],[386,1,1,72,73],[391,1,1,73,74],[392,1,1,74,75],[394,1,1,75,76],[395,4,2,76,78],[401,2,2,78,80]]],[14,5,5,80,85,[[405,1,1,80,81],[408,1,1,81,82],[409,1,1,82,83],[410,1,1,83,84],[412,1,1,84,85]]],[15,2,2,85,87,[[419,1,1,85,86],[420,1,1,86,87]]],[16,3,3,87,90,[[426,1,1,87,88],[428,2,2,88,90]]],[17,1,1,90,91,[[450,1,1,90,91]]],[19,1,1,91,92,[[645,1,1,91,92]]],[22,8,8,92,100,[[679,1,1,92,93],[687,1,1,93,94],[719,2,2,94,96],[721,1,1,96,97],[722,1,1,97,98],[726,1,1,98,99],[738,1,1,99,100]]],[23,6,6,100,106,[[751,1,1,100,101],[760,1,1,101,102],[777,2,2,102,104],[780,1,1,104,105],[794,1,1,105,106]]],[25,5,5,106,111,[[830,1,1,106,107],[831,1,1,107,108],[841,1,1,108,109],[846,2,2,109,111]]],[26,3,3,111,114,[[857,1,1,111,112],[859,2,2,112,114]]],[27,1,1,114,115,[[863,1,1,114,115]]],[28,1,1,115,116,[[877,1,1,115,116]]],[32,1,1,116,117,[[896,1,1,116,117]]],[36,1,1,117,118,[[910,1,1,117,118]]],[37,3,3,118,121,[[916,1,1,118,119],[922,1,1,119,120],[924,1,1,120,121]]]],[196,322,683,693,792,1147,1215,1609,1818,1831,1832,1834,2497,2500,2709,2724,2816,2838,2968,3407,3409,3437,3441,3442,3667,3862,3966,3970,4001,4002,4312,4593,4595,4763,5175,5187,5188,5189,5190,5196,5281,5346,5371,5929,6007,6008,6391,7022,7076,7086,7093,7522,8531,8554,8589,9330,9366,9417,9425,10617,10679,10735,11022,11055,11111,11112,11193,11232,11393,11452,11520,11526,11621,11730,11754,11790,11794,11808,11967,11993,12109,12170,12182,12232,12269,12425,12511,12716,12754,12759,13210,16918,17680,17830,18455,18478,18532,18539,18626,18830,19131,19354,19782,19786,19870,20183,21200,21224,21498,21648,21651,21982,22019,22027,22112,22334,22628,22858,22949,23052,23078]]],["foremost",[3,3,[[0,2,2,0,2,[[31,1,1,0,1],[32,1,1,1,2]]],[9,1,1,2,3,[[284,1,1,2,3]]]],[945,962,8505]]],["former",[25,25,[[0,1,1,0,1,[[39,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[4,1,1,2,3,[[176,1,1,2,3]]],[8,1,1,3,4,[[252,1,1,3,4]]],[11,3,3,4,7,[[313,1,1,4,5],[329,2,2,5,7]]],[15,1,1,7,8,[[417,1,1,7,8]]],[17,1,1,8,9,[[443,1,1,8,9]]],[18,2,2,9,11,[[556,1,1,9,10],[566,1,1,10,11]]],[20,1,1,11,12,[[659,1,1,11,12]]],[22,4,4,12,16,[[739,1,1,12,13],[743,3,3,13,16]]],[23,2,2,16,18,[[778,1,1,16,17],[780,1,1,17,18]]],[26,2,2,18,20,[[860,2,2,18,20]]],[36,1,1,20,21,[[910,1,1,20,21]]],[37,4,4,21,25,[[911,1,1,21,22],[917,2,2,22,24],[918,1,1,24,25]]]],[1185,4366,5529,7648,9547,10017,10023,12397,13037,15193,15375,17326,18847,18904,18913,18914,19806,19870,22049,22065,22864,22882,22969,22974,22987]]],["past",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5036]]],["things",[6,6,[[22,6,6,0,6,[[719,1,1,0,1],[720,1,1,1,2],[721,2,2,2,4],[724,1,1,4,5],[726,1,1,5,6]]]],[18473,18489,18514,18523,18595,18617]]],["time",[2,2,[[4,1,1,0,1,[[171,1,1,0,1]]],[9,1,1,1,2,[[286,1,1,1,2]]]],[5420,8572]]]]},{"k":"H7224","v":[["first",[1,1,[[23,1,1,0,1,[[769,1,1,0,1]]]],[19535]]]]},{"k":"H7225","v":[["*",[51,49,[[0,3,3,0,3,[[0,1,1,0,1],[9,1,1,1,2],[48,1,1,2,3]]],[1,2,2,3,5,[[72,1,1,3,4],[83,1,1,4,5]]],[2,2,2,5,7,[[91,1,1,5,6],[112,1,1,6,7]]],[3,4,4,7,11,[[131,2,2,7,9],[134,1,1,9,10],[140,1,1,10,11]]],[4,7,6,11,17,[[163,1,1,11,12],[170,2,1,12,13],[173,1,1,13,14],[178,2,2,14,16],[185,1,1,16,17]]],[8,2,2,17,19,[[237,1,1,17,18],[250,1,1,18,19]]],[13,1,1,19,20,[[397,1,1,19,20]]],[15,2,2,20,22,[[422,1,1,20,21],[424,1,1,21,22]]],[17,3,3,22,25,[[443,1,1,22,23],[475,1,1,23,24],[477,1,1,24,25]]],[18,3,3,25,28,[[555,1,1,25,26],[582,1,1,26,27],[588,1,1,27,28]]],[19,5,5,28,33,[[628,1,1,28,29],[630,1,1,29,30],[631,1,1,30,31],[635,1,1,31,32],[644,1,1,32,33]]],[20,1,1,33,34,[[665,1,1,33,34]]],[22,1,1,34,35,[[724,1,1,34,35]]],[23,6,6,35,41,[[746,1,1,35,36],[770,1,1,36,37],[771,1,1,37,38],[772,1,1,38,39],[793,2,2,39,41]]],[25,4,3,41,44,[[821,1,1,41,42],[845,2,1,42,43],[849,1,1,43,44]]],[26,1,1,44,45,[[860,1,1,44,45]]],[27,1,1,45,46,[[870,1,1,45,46]]],[29,2,2,46,48,[[884,2,2,46,48]]],[32,1,1,48,49,[[893,1,1,48,49]]]],[0,244,1476,2163,2522,2774,3412,4173,4174,4269,4466,5220,5388,5464,5568,5576,5831,7269,7581,11859,12586,12668,13036,13883,13934,15164,15642,15803,16407,16464,16497,16624,16887,17437,18596,18968,19573,19597,19619,20161,20162,20935,21629,21716,22077,22218,22451,22456,22592]]],["+",[9,9,[[3,1,1,0,1,[[131,1,1,0,1]]],[4,3,3,1,4,[[163,1,1,1,2],[178,2,2,2,4]]],[8,1,1,4,5,[[237,1,1,4,5]]],[17,1,1,5,6,[[477,1,1,5,6]]],[19,1,1,6,7,[[630,1,1,6,7]]],[20,1,1,7,8,[[665,1,1,7,8]]],[22,1,1,8,9,[[724,1,1,8,9]]]],[4174,5220,5568,5576,7269,13934,16464,17437,18596]]],["beginning",[14,14,[[0,3,3,0,3,[[0,1,1,0,1],[9,1,1,1,2],[48,1,1,2,3]]],[4,1,1,3,4,[[173,1,1,3,4]]],[17,1,1,4,5,[[443,1,1,4,5]]],[18,1,1,5,6,[[588,1,1,5,6]]],[19,3,3,6,9,[[628,1,1,6,7],[635,1,1,7,8],[644,1,1,8,9]]],[23,4,4,9,13,[[770,1,1,9,10],[771,1,1,10,11],[772,1,1,11,12],[793,1,1,12,13]]],[32,1,1,13,14,[[893,1,1,13,14]]]],[0,244,1476,5464,13036,15803,16407,16624,16887,19573,19597,19619,20161,22592]]],["chief",[8,8,[[8,1,1,0,1,[[250,1,1,0,1]]],[17,1,1,1,2,[[475,1,1,1,2]]],[18,2,2,2,4,[[555,1,1,2,3],[582,1,1,3,4]]],[23,1,1,4,5,[[793,1,1,4,5]]],[26,1,1,5,6,[[860,1,1,5,6]]],[29,2,2,6,8,[[884,2,2,6,8]]]],[7581,13883,15164,15642,20162,22077,22451,22456]]],["first",[7,6,[[1,2,2,0,2,[[72,1,1,0,1],[83,1,1,1,2]]],[3,2,2,2,4,[[131,1,1,2,3],[140,1,1,3,4]]],[4,1,1,4,5,[[170,1,1,4,5]]],[25,2,1,5,6,[[845,2,1,5,6]]]],[2163,2522,4173,4466,5388,21629]]],["firstfruit",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5388]]],["firstfruits",[9,9,[[2,2,2,0,2,[[91,1,1,0,1],[112,1,1,1,2]]],[3,1,1,2,3,[[134,1,1,2,3]]],[13,1,1,3,4,[[397,1,1,3,4]]],[15,2,2,4,6,[[422,1,1,4,5],[424,1,1,5,6]]],[23,1,1,6,7,[[746,1,1,6,7]]],[25,2,2,7,9,[[821,1,1,7,8],[849,1,1,8,9]]]],[2774,3412,4269,11859,12586,12668,18968,20935,21716]]],["part",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5831]]],["thing",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16497]]],["time",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22218]]]]},{"k":"H7226","v":[]},{"k":"H7227","v":[["*",[458,439,[[0,13,13,0,13,[[5,1,1,0,1],[6,1,1,1,2],[12,1,1,2,3],[20,1,1,3,4],[23,1,1,4,5],[24,1,1,5,6],[25,1,1,6,7],[29,1,1,7,8],[32,1,1,8,9],[35,1,1,9,10],[36,1,1,10,11],[44,1,1,11,12],[49,1,1,12,13]]],[1,10,9,13,22,[[50,1,1,13,14],[51,1,1,14,15],[54,1,1,15,16],[58,1,1,16,17],[61,1,1,17,18],[68,1,1,18,19],[72,3,2,19,21],[83,1,1,21,22]]],[2,2,2,22,24,[[104,1,1,22,23],[114,1,1,23,24]]],[3,17,17,24,41,[[125,1,1,24,25],[127,1,1,25,26],[129,1,1,26,27],[130,1,1,27,28],[132,2,2,28,30],[136,2,2,30,32],[137,1,1,32,33],[138,2,2,33,35],[140,1,1,35,36],[142,2,2,36,38],[148,1,1,38,39],[149,1,1,39,40],[151,1,1,40,41]]],[4,23,21,41,62,[[153,2,2,41,43],[154,4,4,43,47],[155,2,2,47,49],[159,3,2,49,51],[161,1,1,51,52],[167,2,1,52,53],[172,2,2,53,55],[177,1,1,55,56],[178,1,1,56,57],[180,2,2,57,59],[183,2,2,59,61],[185,1,1,61,62]]],[5,15,13,62,75,[[196,1,1,62,63],[197,4,3,63,66],[203,3,3,66,69],[205,2,2,69,71],[208,3,2,71,73],[209,1,1,73,74],[210,1,1,74,75]]],[6,5,5,75,80,[[217,2,2,75,77],[218,1,1,77,78],[219,1,1,78,79],[226,1,1,79,80]]],[8,5,5,80,85,[[237,1,1,80,81],[247,1,1,81,82],[249,2,2,82,84],[261,1,1,84,85]]],[9,8,8,85,93,[[269,1,1,85,86],[279,1,1,86,87],[280,1,1,87,88],[281,1,1,88,89],[288,1,1,89,90],[289,1,1,90,91],[290,2,2,91,93]]],[10,12,12,93,105,[[292,1,1,93,94],[293,2,2,94,96],[294,1,1,96,97],[295,1,1,97,98],[300,1,1,98,99],[301,1,1,99,100],[302,1,1,100,101],[308,2,2,101,103],[309,2,2,103,105]]],[11,10,10,105,115,[[318,1,1,105,106],[321,1,1,106,107],[324,1,1,107,108],[337,7,7,108,115]]],[12,10,10,115,125,[[341,1,1,115,116],[342,1,1,116,117],[344,1,1,117,118],[348,1,1,118,119],[355,1,1,119,120],[358,2,2,120,122],[359,1,1,122,123],[361,1,1,123,124],[365,1,1,124,125]]],[13,30,28,125,153,[[367,2,2,125,127],[379,2,2,127,129],[380,2,2,129,131],[381,2,2,131,133],[383,1,1,133,134],[386,4,4,134,138],[387,2,2,138,140],[390,2,2,140,142],[391,1,1,142,143],[392,2,1,143,144],[394,2,2,144,146],[396,3,3,146,149],[398,5,4,149,153]]],[14,4,3,153,156,[[405,2,1,153,154],[412,2,2,154,156]]],[15,11,11,156,167,[[417,1,1,156,157],[418,1,1,157,158],[419,1,1,158,159],[421,7,7,159,166],[425,1,1,166,167]]],[16,7,7,167,174,[[426,4,4,167,171],[427,1,1,171,172],[429,1,1,172,173],[433,1,1,173,174]]],[17,15,15,174,189,[[436,1,1,174,175],[439,1,1,175,176],[440,1,1,176,177],[446,1,1,177,178],[451,1,1,178,179],[457,1,1,179,180],[458,1,1,180,181],[466,2,2,181,183],[467,1,1,183,184],[470,1,1,184,185],[471,2,2,185,187],[473,1,1,187,188],[474,1,1,188,189]]],[18,57,57,189,246,[[480,2,2,189,191],[481,1,1,191,192],[495,1,1,192,193],[496,3,3,193,196],[499,2,2,196,198],[502,1,1,198,199],[506,1,1,199,200],[508,2,2,200,202],[509,2,2,202,204],[511,1,1,204,205],[512,1,1,205,206],[513,1,1,206,207],[514,1,1,207,208],[517,4,4,208,212],[525,1,1,212,213],[532,1,1,213,214],[533,1,1,214,215],[539,1,1,215,216],[542,1,1,216,217],[545,1,1,217,218],[548,2,2,218,220],[554,1,1,220,221],[555,1,1,221,222],[563,2,2,222,224],[566,2,2,224,226],[570,1,1,226,227],[574,1,1,227,228],[580,1,1,228,229],[583,1,1,229,230],[584,1,1,230,231],[586,1,1,231,232],[587,1,1,232,233],[596,4,4,233,237],[597,1,1,237,238],[600,2,2,238,240],[606,2,2,240,242],[612,1,1,242,243],[621,1,1,243,244],[622,1,1,244,245],[624,1,1,245,246]]],[19,20,20,246,266,[[634,1,1,246,247],[637,1,1,247,248],[640,1,1,248,249],[641,2,2,249,251],[642,2,2,251,253],[646,3,3,253,256],[649,1,1,256,257],[653,1,1,257,258],[655,5,5,258,263],[656,2,2,263,265],[658,1,1,265,266]]],[20,8,7,266,273,[[660,1,1,266,267],[664,3,2,267,269],[665,2,2,269,271],[666,1,1,271,272],[668,1,1,272,273]]],[21,1,1,273,274,[[678,1,1,273,274]]],[22,26,25,274,299,[[680,2,2,274,276],[683,1,1,276,277],[684,1,1,277,278],[686,2,2,278,280],[691,1,1,280,281],[694,1,1,281,282],[695,2,2,282,284],[697,1,1,284,285],[699,1,1,285,286],[701,1,1,286,287],[708,1,1,287,288],[709,1,1,288,289],[720,1,1,289,290],[729,1,1,290,291],[730,2,2,291,293],[731,3,2,293,295],[732,2,2,295,297],[741,2,2,297,299]]],[23,41,38,299,337,[[747,1,1,299,300],[755,1,1,300,301],[756,1,1,301,302],[757,2,2,302,304],[760,2,1,304,305],[764,1,1,305,306],[766,1,1,306,307],[769,1,1,307,308],[771,1,1,308,309],[772,1,1,309,310],[776,2,2,310,312],[779,1,1,312,313],[780,1,1,313,314],[781,1,1,314,315],[783,5,4,315,319],[784,3,3,319,322],[785,3,3,322,325],[787,1,1,325,326],[794,1,1,326,327],[795,3,2,327,329],[796,8,8,329,337]]],[24,4,3,337,340,[[797,3,2,337,339],[799,1,1,339,340]]],[25,47,44,340,384,[[802,1,1,340,341],[804,1,1,341,342],[813,1,1,342,343],[817,1,1,343,344],[818,7,6,344,350],[820,1,1,350,351],[823,1,1,351,352],[825,1,1,352,353],[827,3,3,353,356],[828,4,4,356,360],[832,4,4,360,364],[833,4,4,364,368],[834,1,1,368,369],[838,1,1,369,370],[839,9,7,370,377],[840,1,1,377,378],[844,1,1,378,379],[845,1,1,379,380],[846,1,1,380,381],[848,3,3,381,384]]],[26,24,23,384,407,[[850,1,1,384,385],[857,2,2,385,387],[858,2,2,387,389],[860,15,14,389,403],[861,4,4,403,407]]],[27,3,3,407,410,[[864,2,2,407,409],[870,1,1,409,410]]],[28,4,4,410,414,[[877,3,3,410,413],[878,1,1,413,414]]],[29,7,6,414,420,[[881,2,2,414,416],[883,1,1,416,417],[884,2,1,417,418],[885,1,1,418,419],[886,1,1,419,420]]],[31,3,3,420,423,[[889,1,1,420,421],[892,2,2,421,423]]],[32,6,6,423,429,[[896,4,4,423,427],[897,2,2,427,429]]],[33,1,1,429,430,[[900,1,1,429,430]]],[34,3,3,430,433,[[904,2,2,430,432],[905,1,1,432,433]]],[37,4,4,433,437,[[912,1,1,433,434],[918,2,2,434,436],[924,1,1,436,437]]],[38,2,2,437,439,[[926,2,2,437,439]]]],[142,170,324,547,616,681,706,873,969,1047,1117,1386,1526,1541,1577,1637,1770,1854,2047,2146,2173,2502,3193,3520,3984,4057,4093,4126,4197,4201,4322,4326,4346,4378,4390,4453,4543,4545,4719,4814,4853,4898,4938,4939,4941,4948,4959,4994,5001,5112,5128,5171,5325,5428,5446,5550,5571,5623,5649,5745,5749,5817,6075,6111,6115,6125,6289,6290,6292,6330,6349,6429,6434,6461,6483,6696,6698,6749,6794,6979,7245,7477,7514,7527,7918,8103,8351,8358,8401,8619,8673,8706,8708,8808,8824,8827,8864,8885,9081,9109,9179,9342,9366,9391,9394,9690,9778,9860,10230,10232,10233,10234,10237,10240,10242,10412,10450,10557,10695,10898,10947,10949,10972,11019,11148,11203,11205,11461,11470,11486,11489,11493,11495,11536,11589,11599,11602,11612,11627,11639,11688,11702,11717,11742,11772,11777,11840,11844,11845,11879,11882,11898,11904,12109,12253,12265,12384,12419,12422,12528,12530,12538,12539,12541,12542,12546,12697,12706,12709,12710,12722,12732,12765,12834,12872,12933,12976,13127,13240,13394,13433,13613,13622,13637,13729,13754,13764,13814,13845,13958,13959,13971,14134,14178,14179,14181,14216,14229,14262,14311,14344,14350,14361,14365,14407,14428,14444,14466,14528,14530,14534,14535,14636,14750,14757,14829,14869,14911,14983,14996,15112,15128,15289,15299,15333,15376,15430,15479,15557,15694,15722,15785,15792,16054,16055,16060,16063,16080,16101,16102,16133,16134,16185,16312,16327,16356,16601,16677,16754,16792,16801,16813,16823,16929,16931,16946,17016,17151,17198,17208,17212,17216,17223,17246,17250,17313,17354,17418,17420,17451,17458,17464,17499,17647,17688,17689,17748,17781,17814,17822,17910,17983,17995,17996,18024,18042,18080,18242,18251,18500,18683,18710,18711,18722,18723,18724,18736,18867,18873,19003,19241,19259,19272,19275,19352,19432,19462,19548,19603,19626,19745,19750,19830,19874,19890,19932,19933,19934,19936,19942,19943,19946,19958,19967,19969,20003,20207,20225,20267,20288,20290,20291,20292,20295,20300,20302,20306,20311,20332,20377,20488,20508,20707,20803,20830,20832,20833,20834,20840,20842,20891,20981,21068,21103,21107,21119,21124,21136,21147,21154,21235,21236,21237,21245,21251,21257,21258,21261,21304,21399,21429,21431,21433,21434,21440,21447,21448,21475,21574,21605,21639,21686,21688,21689,21740,21986,21987,22006,22015,22039,22041,22046,22047,22049,22050,22054,22062,22069,22070,22075,22076,22077,22080,22083,22084,22085,22091,22131,22132,22215,22313,22322,22324,22356,22404,22410,22435,22452,22468,22484,22537,22570,22579,22622,22623,22631,22633,22640,22641,22696,22756,22758,22783,22910,22996,22998,23081,23109,23111]]],["+",[16,16,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,1,1,1,2,[[51,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[8,1,1,3,4,[[249,1,1,3,4]]],[9,2,2,4,6,[[288,1,1,4,5],[289,1,1,5,6]]],[13,2,2,6,8,[[367,1,1,6,7],[381,1,1,7,8]]],[15,1,1,8,9,[[419,1,1,8,9]]],[18,1,1,9,10,[[495,1,1,9,10]]],[20,1,1,10,11,[[665,1,1,10,11]]],[25,1,1,11,12,[[833,1,1,11,12]]],[26,1,1,12,13,[[861,1,1,12,13]]],[31,1,1,13,14,[[889,1,1,13,14]]],[38,2,2,14,16,[[926,2,2,14,16]]]],[1526,1577,5649,7527,8619,8673,11205,11493,12422,14134,17451,21258,22084,22537,23109,23111]]],["Great",[3,3,[[17,1,1,0,1,[[467,1,1,0,1]]],[18,2,2,1,3,[[596,2,2,1,3]]]],[13637,16054,16063]]],["Many",[13,13,[[18,7,7,0,7,[[480,1,1,0,1],[499,1,1,1,2],[509,1,1,2,3],[511,1,1,3,4],[517,1,1,4,5],[583,1,1,5,6],[596,1,1,6,7]]],[19,3,3,7,10,[[646,1,1,7,8],[656,1,1,8,9],[658,1,1,9,10]]],[21,1,1,10,11,[[678,1,1,10,11]]],[23,1,1,11,12,[[756,1,1,11,12]]],[26,1,1,12,13,[[861,1,1,12,13]]]],[13959,14216,14365,14407,14530,15694,16055,16931,17250,17313,17647,19259,22091]]],["abound",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17216]]],["aboundeth",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17246]]],["abundance",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12709]]],["abundant",[2,2,[[1,1,1,0,1,[[83,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[2502,20225]]],["abundantly",[2,2,[[3,1,1,0,1,[[136,1,1,0,1]]],[17,1,1,1,2,[[471,1,1,1,2]]]],[4322,13764]]],["captain",[24,24,[[11,7,7,0,7,[[337,7,7,0,7]]],[23,17,17,7,24,[[783,4,4,7,11],[784,3,3,11,14],[785,1,1,14,15],[787,1,1,15,16],[796,8,8,16,24]]]],[10230,10232,10233,10234,10237,10240,10242,19932,19933,19934,19936,19942,19943,19946,19967,20003,20288,20290,20291,20292,20295,20300,20302,20306]]],["common",[1,1,[[20,1,1,0,1,[[664,1,1,0,1]]]],[17418]]],["elder",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[681]]],["enough",[9,9,[[0,3,3,0,3,[[23,1,1,0,1],[32,1,1,1,2],[44,1,1,2,3]]],[1,1,1,3,4,[[58,1,1,3,4]]],[4,2,2,4,6,[[153,1,1,4,5],[154,1,1,5,6]]],[9,1,1,6,7,[[290,1,1,6,7]]],[10,1,1,7,8,[[309,1,1,7,8]]],[12,1,1,8,9,[[358,1,1,8,9]]]],[616,969,1386,1770,4898,4941,8708,9391,10949]]],["exceedingly",[2,2,[[18,2,2,0,2,[[600,2,2,0,2]]]],[16101,16102]]],["full",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20311]]],["great",[116,116,[[0,3,3,0,3,[[5,1,1,0,1],[6,1,1,1,2],[12,1,1,2,3]]],[3,2,2,3,5,[[127,1,1,3,4],[130,1,1,4,5]]],[5,5,5,5,10,[[197,1,1,5,6],[203,3,3,6,9],[205,1,1,9,10]]],[8,2,2,10,12,[[247,1,1,10,11],[261,1,1,11,12]]],[9,2,2,12,14,[[269,1,1,12,13],[290,1,1,13,14]]],[10,3,3,14,17,[[293,1,1,14,15],[295,1,1,15,16],[309,1,1,16,17]]],[12,1,1,17,18,[[358,1,1,17,18]]],[13,10,10,18,28,[[379,2,2,18,20],[381,1,1,20,21],[386,3,3,21,24],[387,2,2,24,26],[390,1,1,26,27],[394,1,1,27,28]]],[14,1,1,28,29,[[412,1,1,28,29]]],[15,3,3,29,32,[[421,3,3,29,32]]],[16,1,1,32,33,[[426,1,1,32,33]]],[17,8,8,33,41,[[436,1,1,33,34],[440,1,1,34,35],[457,1,1,35,36],[466,2,2,36,38],[471,1,1,38,39],[473,1,1,39,40],[474,1,1,40,41]]],[18,21,21,41,62,[[496,2,2,41,43],[499,1,1,43,44],[502,1,1,44,45],[508,1,1,45,46],[509,1,1,46,47],[512,1,1,47,48],[513,1,1,48,49],[517,2,2,49,51],[525,1,1,51,52],[545,1,1,52,53],[548,1,1,53,54],[554,1,1,54,55],[555,1,1,55,56],[584,1,1,56,57],[596,1,1,57,58],[612,1,1,58,59],[621,1,1,59,60],[622,1,1,60,61],[624,1,1,61,62]]],[19,7,7,62,69,[[640,1,1,62,63],[641,1,1,63,64],[642,1,1,64,65],[649,1,1,65,66],[653,1,1,66,67],[655,2,2,67,69]]],[20,3,3,69,72,[[660,1,1,69,70],[666,1,1,70,71],[668,1,1,71,72]]],[22,9,9,72,81,[[684,1,1,72,73],[691,1,1,73,74],[694,1,1,74,75],[701,1,1,75,76],[708,1,1,76,77],[729,1,1,77,78],[731,1,1,78,79],[732,1,1,79,80],[741,1,1,80,81]]],[23,3,3,81,84,[[757,1,1,81,82],[785,1,1,82,83],[795,1,1,83,84]]],[24,2,2,84,86,[[797,1,1,84,85],[799,1,1,85,86]]],[25,13,13,86,99,[[802,1,1,86,87],[818,3,3,87,90],[825,1,1,90,91],[827,1,1,91,92],[828,1,1,92,93],[832,3,3,93,96],[833,1,1,96,97],[839,1,1,97,98],[848,1,1,98,99]]],[26,5,5,99,104,[[858,1,1,99,100],[860,4,4,100,104]]],[27,1,1,104,105,[[870,1,1,104,105]]],[28,4,4,105,109,[[877,3,3,105,108],[878,1,1,108,109]]],[29,4,4,109,113,[[881,2,2,109,111],[884,1,1,111,112],[885,1,1,112,113]]],[31,1,1,113,114,[[892,1,1,113,114]]],[34,1,1,114,115,[[905,1,1,114,115]]],[37,1,1,115,116,[[924,1,1,115,116]]]],[142,170,324,4057,4126,6115,6289,6290,6292,6349,7477,7918,8103,8706,8824,8885,9394,10947,11461,11470,11495,11589,11599,11602,11627,11639,11702,11777,12253,12528,12542,12546,12722,12872,12976,13394,13613,13622,13754,13814,13845,14179,14181,14229,14262,14350,14361,14428,14444,14534,14535,14636,14911,14996,15112,15128,15722,16060,16185,16312,16327,16356,16754,16801,16823,17016,17151,17208,17212,17354,17464,17499,17781,17910,17983,18080,18242,18683,18723,18736,18873,19275,19969,20267,20311,20377,20488,20830,20833,20842,21068,21119,21147,21236,21237,21245,21261,21429,21688,22006,22039,22041,22046,22047,22215,22313,22322,22324,22356,22404,22410,22452,22468,22570,22783,23081]]],["greater",[4,4,[[4,2,2,0,2,[[159,1,1,0,1],[161,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]],[29,1,1,3,4,[[884,1,1,3,4]]]],[5112,5171,22049,22452]]],["greatly",[3,3,[[18,3,3,0,3,[[539,1,1,0,1],[542,1,1,1,2],[566,1,1,2,3]]]],[14829,14869,15333]]],["increased",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8401]]],["long",[8,8,[[3,1,1,0,1,[[136,1,1,0,1]]],[4,1,1,1,2,[[172,1,1,1,2]]],[5,3,3,2,5,[[197,1,1,2,3],[209,1,1,3,4],[210,1,1,4,5]]],[9,1,1,5,6,[[280,1,1,5,6]]],[10,1,1,6,7,[[293,1,1,6,7]]],[18,1,1,7,8,[[597,1,1,7,8]]]],[4326,5446,6125,6461,6483,8358,8827,16080]]],["manifold",[3,3,[[15,2,2,0,2,[[421,2,2,0,2]]],[29,1,1,2,3,[[883,1,1,2,3]]]],[12530,12538,22435]]],["many",[170,165,[[0,2,2,0,2,[[20,1,1,0,1],[36,1,1,1,2]]],[1,3,3,2,5,[[54,1,1,2,3],[68,1,1,3,4],[72,1,1,4,5]]],[2,2,2,5,7,[[104,1,1,5,6],[114,1,1,6,7]]],[3,7,7,7,14,[[125,1,1,7,8],[129,1,1,8,9],[138,1,1,9,10],[140,1,1,10,11],[142,2,2,11,13],[151,1,1,13,14]]],[4,11,10,14,24,[[153,1,1,14,15],[154,3,3,15,18],[159,1,1,18,19],[167,2,1,19,20],[177,1,1,20,21],[180,1,1,21,22],[183,2,2,22,24]]],[5,2,2,24,26,[[197,1,1,24,25],[208,1,1,25,26]]],[6,4,4,26,30,[[217,2,2,26,28],[218,1,1,28,29],[219,1,1,29,30]]],[8,2,2,30,32,[[237,1,1,30,31],[249,1,1,31,32]]],[10,5,5,32,37,[[292,1,1,32,33],[294,1,1,33,34],[301,1,1,34,35],[308,2,2,35,37]]],[11,1,1,37,38,[[321,1,1,37,38]]],[12,5,5,38,43,[[341,1,1,38,39],[342,1,1,39,40],[344,1,1,40,41],[348,1,1,41,42],[365,1,1,42,43]]],[13,5,5,43,48,[[380,1,1,43,44],[392,1,1,44,45],[396,2,2,45,47],[398,1,1,47,48]]],[14,3,2,48,50,[[405,2,1,48,49],[412,1,1,49,50]]],[15,5,5,50,55,[[417,1,1,50,51],[418,1,1,51,52],[421,2,2,52,54],[425,1,1,54,55]]],[16,4,4,55,59,[[426,1,1,55,56],[427,1,1,56,57],[429,1,1,57,58],[433,1,1,58,59]]],[17,4,4,59,63,[[439,1,1,59,60],[446,1,1,60,61],[451,1,1,61,62],[458,1,1,62,63]]],[18,11,11,63,74,[[480,1,1,63,64],[481,1,1,64,65],[506,1,1,65,66],[508,1,1,66,67],[514,1,1,67,68],[517,1,1,68,69],[532,1,1,69,70],[533,1,1,70,71],[548,1,1,71,72],[570,1,1,72,73],[587,1,1,73,74]]],[19,7,7,74,81,[[634,1,1,74,75],[637,1,1,75,76],[641,1,1,76,77],[646,2,2,77,79],[655,2,2,79,81]]],[20,3,2,81,83,[[664,2,1,81,82],[665,1,1,82,83]]],[22,12,12,83,95,[[680,2,2,83,85],[683,1,1,85,86],[686,2,2,86,88],[695,2,2,88,90],[709,1,1,90,91],[730,2,2,91,93],[731,2,2,93,95]]],[23,16,15,95,110,[[747,1,1,95,96],[755,1,1,96,97],[757,1,1,97,98],[760,2,1,98,99],[764,1,1,99,100],[766,1,1,100,101],[769,1,1,101,102],[771,1,1,102,103],[772,1,1,103,104],[776,1,1,104,105],[779,1,1,105,106],[780,1,1,106,107],[781,1,1,107,108],[794,1,1,108,109],[795,1,1,109,110]]],[24,1,1,110,111,[[797,1,1,110,111]]],[25,26,25,111,136,[[804,1,1,111,112],[813,1,1,112,113],[817,1,1,113,114],[818,3,3,114,117],[820,1,1,117,118],[827,1,1,118,119],[828,3,3,119,122],[833,2,2,122,124],[834,1,1,124,125],[838,1,1,125,126],[839,7,6,126,132],[840,1,1,132,133],[844,1,1,133,134],[848,2,2,134,136]]],[26,14,14,136,150,[[857,2,2,136,138],[858,1,1,138,139],[860,9,9,139,148],[861,2,2,148,150]]],[27,2,2,150,152,[[864,2,2,150,152]]],[29,1,1,152,153,[[886,1,1,152,153]]],[32,6,6,153,159,[[896,4,4,153,157],[897,2,2,157,159]]],[33,1,1,159,160,[[900,1,1,159,160]]],[34,2,2,160,162,[[904,2,2,160,162]]],[37,3,3,162,165,[[912,1,1,162,163],[918,2,2,163,165]]]],[547,1117,1637,2047,2146,3193,3520,3984,4093,4378,4453,4543,4545,4853,4938,4939,4948,4959,5112,5325,5550,5623,5745,5749,6111,6429,6696,6698,6749,6794,7245,7514,8808,8864,9109,9342,9366,9778,10412,10450,10557,10695,11148,11486,11742,11844,11845,11898,12109,12265,12384,12419,12539,12541,12697,12706,12732,12765,12834,12933,13127,13240,13433,13958,13971,14311,14344,14466,14528,14750,14757,14983,15430,15792,16601,16677,16792,16929,16946,17198,17223,17420,17458,17688,17689,17748,17814,17822,17995,17996,18251,18710,18711,18722,18723,19003,19241,19272,19352,19432,19462,19548,19603,19626,19745,19830,19874,19890,20207,20225,20332,20508,20707,20803,20832,20834,20842,20891,21103,21124,21136,21154,21251,21257,21304,21399,21431,21433,21434,21440,21447,21448,21475,21574,21686,21689,21986,21987,22015,22050,22054,22062,22069,22070,22075,22076,22077,22080,22083,22085,22131,22132,22484,22622,22623,22631,22633,22640,22641,22696,22756,22758,22910,22996,22998]]],["master",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21740]]],["mighty",[5,5,[[17,1,1,0,1,[[470,1,1,0,1]]],[18,1,1,1,2,[[566,1,1,1,2]]],[22,1,1,2,3,[[741,1,1,2,3]]],[23,1,1,3,4,[[776,1,1,3,4]]],[25,1,1,4,5,[[839,1,1,4,5]]]],[13729,15376,18867,19750,21440]]],["more",[11,11,[[1,1,1,0,1,[[50,1,1,0,1]]],[3,2,2,1,3,[[138,1,1,1,2],[149,1,1,2,3]]],[4,2,2,3,5,[[159,1,1,3,4],[172,1,1,4,5]]],[5,1,1,5,6,[[196,1,1,5,6]]],[6,1,1,6,7,[[226,1,1,6,7]]],[11,1,1,7,8,[[318,1,1,7,8]]],[12,1,1,8,9,[[361,1,1,8,9]]],[13,1,1,9,10,[[398,1,1,9,10]]],[22,1,1,10,11,[[732,1,1,10,11]]]],[1541,4390,4814,5128,5428,6075,6979,9690,11019,11882,18724]]],["much",[34,32,[[0,1,1,0,1,[[29,1,1,0,1]]],[3,3,3,1,4,[[132,2,2,1,3],[137,1,1,3,4]]],[4,1,1,4,5,[[155,1,1,4,5]]],[5,4,3,5,8,[[197,1,1,5,6],[205,1,1,6,7],[208,2,1,7,8]]],[9,1,1,8,9,[[279,1,1,8,9]]],[10,2,2,9,11,[[300,1,1,9,10],[302,1,1,10,11]]],[11,1,1,11,12,[[324,1,1,11,12]]],[12,2,2,12,14,[[355,1,1,12,13],[359,1,1,13,14]]],[13,11,10,14,24,[[380,1,1,14,15],[383,1,1,15,16],[386,1,1,16,17],[390,1,1,17,18],[391,1,1,18,19],[392,1,1,19,20],[394,1,1,20,21],[396,1,1,21,22],[398,3,2,22,24]]],[18,1,1,24,25,[[496,1,1,24,25]]],[19,1,1,25,26,[[642,1,1,25,26]]],[22,1,1,26,27,[[699,1,1,26,27]]],[25,3,3,27,30,[[818,1,1,27,28],[823,1,1,28,29],[827,1,1,29,30]]],[26,1,1,30,31,[[860,1,1,30,31]]],[31,1,1,31,32,[[892,1,1,31,32]]]],[873,4197,4201,4346,4994,6111,6330,6434,8351,9081,9179,9860,10898,10972,11489,11536,11612,11688,11717,11742,11772,11840,11879,11904,14178,16813,18042,20840,20981,21107,22049,22579]]],["multiply",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2173]]],["multitude",[7,7,[[1,2,2,0,2,[[61,1,1,0,1],[72,1,1,1,2]]],[3,1,1,2,3,[[148,1,1,2,3]]],[13,1,1,3,4,[[367,1,1,3,4]]],[18,2,2,4,6,[[574,1,1,4,5],[586,1,1,5,6]]],[25,1,1,6,7,[[832,1,1,6,7]]]],[1854,2146,4719,11203,15479,15785,21235]]],["officers",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12710]]],["one",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18024]]],["plenteous",[3,3,[[18,3,3,0,3,[[563,2,2,0,2],[580,1,1,2,3]]]],[15289,15299,15557]]],["populous",[1,1,[[4,1,1,0,1,[[178,1,1,0,1]]]],[5571]]],["princes",[2,2,[[23,2,2,0,2,[[783,1,1,0,1],[785,1,1,1,2]]]],[19936,19958]]],["store",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[706]]],["suffice",[3,3,[[4,1,1,0,1,[[155,1,1,0,1]]],[25,2,2,1,3,[[845,1,1,1,2],[846,1,1,2,3]]]],[5001,21605,21639]]],["sufficient",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5817]]],["than",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1047]]],["things",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18500]]],["time",[2,2,[[18,2,2,0,2,[[606,2,2,0,2]]]],[16133,16134]]]]},{"k":"H7228","v":[["archers",[2,2,[[17,1,1,0,1,[[451,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]]],[13251,20195]]]]},{"k":"H7229","v":[["*",[15,15,[[14,3,3,0,3,[[406,1,1,0,1],[407,2,2,1,3]]],[26,12,12,3,15,[[851,6,6,3,9],[853,2,2,9,11],[854,2,2,11,13],[856,2,2,13,15]]]],[12120,12142,12145,21768,21772,21789,21793,21803,21806,21846,21867,21875,21885,21935,21953]]],["captain",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21772]]],["chief",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21806]]],["great",[9,9,[[14,3,3,0,3,[[406,1,1,0,1],[407,2,2,1,3]]],[26,6,6,3,9,[[851,3,3,3,6],[853,1,1,6,7],[854,1,1,7,8],[856,1,1,8,9]]]],[12120,12142,12145,21789,21793,21803,21867,21875,21935]]],["lord",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21768]]],["master",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[854,1,1,1,2]]]],[21846,21885]]],["stout",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21953]]]]},{"k":"H7230","v":[["*",[153,147,[[0,5,5,0,5,[[15,1,1,0,1],[26,1,1,1,2],[29,1,1,2,3],[31,1,1,3,4],[47,1,1,4,5]]],[1,1,1,5,6,[[64,1,1,5,6]]],[2,1,1,6,7,[[114,1,1,6,7]]],[4,5,5,7,12,[[153,1,1,7,8],[159,1,1,8,9],[162,1,1,9,10],[180,2,2,10,12]]],[5,2,2,12,14,[[195,1,1,12,13],[197,1,1,13,14]]],[6,3,2,14,16,[[216,1,1,14,15],[217,2,1,15,16]]],[8,2,2,16,18,[[236,1,1,16,17],[248,1,1,17,18]]],[9,1,1,18,19,[[283,1,1,18,19]]],[10,8,8,19,27,[[291,2,2,19,21],[293,1,1,21,22],[294,1,1,22,23],[297,1,1,23,24],[298,1,1,24,25],[300,2,2,25,27]]],[11,1,1,27,28,[[331,1,1,27,28]]],[12,11,10,28,38,[[341,1,1,28,29],[349,1,1,29,30],[359,7,6,30,36],[366,2,2,36,38]]],[13,27,27,38,65,[[367,1,1,38,39],[368,1,1,39,40],[370,1,1,40,41],[371,1,1,41,42],[375,3,3,42,45],[377,1,1,45,46],[380,1,1,46,47],[381,1,1,47,48],[382,1,1,48,49],[383,1,1,49,50],[384,2,2,50,52],[386,1,1,52,53],[390,3,3,53,56],[393,1,1,56,57],[395,1,1,57,58],[396,3,3,58,61],[397,2,2,61,63],[398,2,2,63,65]]],[15,2,2,65,67,[[421,1,1,65,66],[425,1,1,66,67]]],[16,2,2,67,69,[[430,1,1,67,68],[435,1,1,68,69]]],[17,9,9,69,78,[[439,1,1,69,70],[446,1,1,70,71],[458,1,1,71,72],[461,1,1,72,73],[465,1,1,73,74],[467,1,1,74,75],[468,1,1,75,76],[470,1,1,76,77],[472,1,1,77,78]]],[18,17,16,78,94,[[482,2,2,78,80],[510,3,2,80,82],[514,1,1,82,83],[526,1,1,83,84],[528,1,1,84,85],[529,1,1,85,86],[543,1,1,86,87],[546,2,2,87,89],[549,1,1,89,90],[571,1,1,90,91],[583,2,2,91,93],[627,1,1,93,94]]],[19,12,12,94,106,[[632,1,1,94,95],[634,1,1,95,96],[637,1,1,96,97],[638,1,1,97,98],[640,1,1,98,99],[641,2,2,99,101],[642,1,1,101,102],[643,1,1,102,103],[647,2,2,103,105],[651,1,1,105,106]]],[20,6,4,106,110,[[659,2,1,106,107],[663,3,2,107,109],[669,1,1,109,110]]],[22,11,11,110,121,[[679,1,1,110,111],[685,1,1,111,112],[702,1,1,112,113],[715,1,1,113,114],[718,1,1,114,115],[725,3,3,115,118],[735,1,1,118,119],[741,2,2,119,121]]],[23,3,3,121,124,[[757,1,1,121,122],[774,2,2,122,124]]],[24,3,3,124,127,[[797,2,2,124,126],[799,1,1,126,127]]],[25,12,11,127,138,[[815,1,1,127,128],[820,1,1,128,129],[824,1,1,129,130],[828,5,4,130,134],[829,3,3,134,137],[832,1,1,137,138]]],[27,4,4,138,142,[[869,1,1,138,139],[870,1,1,139,140],[871,2,2,140,142]]],[33,2,2,142,144,[[902,2,2,142,144]]],[37,3,3,144,147,[[912,1,1,144,145],[918,1,1,145,146],[924,1,1,146,147]]]],[391,755,860,940,1467,1927,3485,4902,5118,5208,5658,5673,6050,6111,6659,6706,7228,7490,8460,8736,8742,8824,8864,8981,8990,9089,9106,10084,10423,10760,10967,10968,10969,10972,10978,10979,11166,11185,11209,11220,11264,11274,11365,11373,11391,11437,11490,11499,11517,11528,11543,11544,11612,11688,11701,11704,11758,11826,11832,11840,11851,11859,11864,11880,11904,12536,12693,12790,12869,12944,13110,13425,13470,13575,13635,13669,13729,13792,13980,13983,14382,14383,14461,14654,14692,14717,14876,14948,14951,15007,15450,15658,15696,16396,16540,16596,16675,16702,16770,16776,16800,16829,16848,16960,16969,17085,17333,17400,17404,17514,17665,17804,18117,18376,18446,18608,18611,18612,18775,18867,18873,19288,19681,19682,20313,20315,20386,20735,20892,21049,21133,21137,21139,21154,21162,21173,21175,21239,22206,22215,22226,22238,22715,22716,22903,22980,23082]]],["+",[24,24,[[0,2,2,0,2,[[15,1,1,0,1],[31,1,1,1,2]]],[4,2,2,2,4,[[159,1,1,2,3],[180,1,1,3,4]]],[5,1,1,4,5,[[195,1,1,4,5]]],[8,1,1,5,6,[[236,1,1,5,6]]],[10,3,3,6,9,[[293,1,1,6,7],[297,1,1,7,8],[298,1,1,8,9]]],[13,1,1,9,10,[[371,1,1,9,10]]],[17,1,1,10,11,[[470,1,1,10,11]]],[19,1,1,11,12,[[643,1,1,11,12]]],[22,3,3,12,15,[[685,1,1,12,13],[702,1,1,13,14],[718,1,1,14,15]]],[24,1,1,15,16,[[797,1,1,15,16]]],[25,5,5,16,21,[[824,1,1,16,17],[828,3,3,17,20],[829,1,1,20,21]]],[33,1,1,21,22,[[902,1,1,21,22]]],[37,2,2,22,24,[[912,1,1,22,23],[918,1,1,23,24]]]],[391,940,5118,5658,6050,7228,8824,8981,8990,11274,13729,16848,17804,18117,18446,20313,21049,21133,21137,21139,21175,22716,22903,22980]]],["Most",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16960]]],["Much",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16770]]],["abundance",[32,31,[[10,4,4,0,4,[[291,2,2,0,2],[300,2,2,2,4]]],[12,6,5,4,9,[[359,4,3,4,7],[366,2,2,7,9]]],[13,17,17,9,26,[[367,1,1,9,10],[368,1,1,10,11],[370,1,1,11,12],[375,3,3,12,15],[377,1,1,15,16],[380,1,1,16,17],[381,1,1,17,18],[383,1,1,18,19],[384,2,2,19,21],[386,1,1,21,22],[390,1,1,22,23],[395,1,1,23,24],[398,2,2,24,26]]],[15,1,1,26,27,[[421,1,1,26,27]]],[18,3,3,27,30,[[514,1,1,27,28],[529,1,1,28,29],[549,1,1,29,30]]],[37,1,1,30,31,[[924,1,1,30,31]]]],[8736,8742,9089,9106,10967,10978,10979,11166,11185,11209,11220,11264,11365,11373,11391,11437,11490,11499,11528,11543,11544,11612,11688,11826,11880,11904,12536,14461,14717,15007,23082]]],["abundantly",[4,4,[[12,3,3,0,3,[[349,1,1,0,1],[359,2,2,1,3]]],[13,1,1,3,4,[[397,1,1,3,4]]]],[10760,10969,10972,11859]]],["all",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12944]]],["excellent",[1,1,[[18,1,1,0,1,[[627,1,1,0,1]]]],[16396]]],["great",[6,6,[[13,2,2,0,2,[[390,1,1,0,1],[396,1,1,1,2]]],[17,2,2,2,4,[[458,1,1,2,3],[465,1,1,3,4]]],[18,1,1,4,5,[[510,1,1,4,5]]],[25,1,1,5,6,[[829,1,1,5,6]]]],[11701,11840,13425,13575,14383,21162]]],["greatly",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10423]]],["greatness",[8,8,[[1,1,1,0,1,[[64,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]],[15,1,1,2,3,[[425,1,1,2,3]]],[18,1,1,3,4,[[543,1,1,3,4]]],[19,1,1,4,5,[[632,1,1,4,5]]],[22,2,2,5,7,[[735,1,1,5,6],[741,1,1,6,7]]],[23,1,1,7,8,[[757,1,1,7,8]]]],[1927,11704,12693,14876,16540,18775,18867,19288]]],["huge",[1,1,[[13,1,1,0,1,[[382,1,1,0,1]]]],[11517]]],["long",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11832]]],["many",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17514]]],["much",[7,6,[[12,1,1,0,1,[[359,1,1,0,1]]],[13,1,1,1,2,[[393,1,1,1,2]]],[18,1,1,2,3,[[510,1,1,2,3]]],[19,2,2,3,5,[[634,1,1,3,4],[641,1,1,4,5]]],[20,2,1,5,6,[[659,2,1,5,6]]]],[10968,11758,14382,16596,16776,17333]]],["multitude",[58,56,[[0,2,2,0,2,[[29,1,1,0,1],[47,1,1,1,2]]],[2,1,1,2,3,[[114,1,1,2,3]]],[4,3,3,3,6,[[153,1,1,3,4],[162,1,1,4,5],[180,1,1,5,6]]],[5,1,1,6,7,[[197,1,1,6,7]]],[6,3,2,7,9,[[216,1,1,7,8],[217,2,1,8,9]]],[8,1,1,9,10,[[248,1,1,9,10]]],[9,1,1,10,11,[[283,1,1,10,11]]],[10,1,1,11,12,[[294,1,1,11,12]]],[11,1,1,12,13,[[331,1,1,12,13]]],[16,2,2,13,15,[[430,1,1,13,14],[435,1,1,14,15]]],[17,3,3,15,18,[[446,1,1,15,16],[467,1,1,16,17],[468,1,1,17,18]]],[18,10,10,18,28,[[482,2,2,18,20],[510,1,1,20,21],[526,1,1,21,22],[528,1,1,22,23],[546,2,2,23,25],[571,1,1,25,26],[583,2,2,26,28]]],[19,6,6,28,34,[[637,1,1,28,29],[638,1,1,29,30],[641,1,1,30,31],[642,1,1,31,32],[647,1,1,32,33],[651,1,1,33,34]]],[20,3,2,34,36,[[663,3,2,34,36]]],[22,6,6,36,42,[[679,1,1,36,37],[715,1,1,37,38],[725,3,3,38,41],[741,1,1,41,42]]],[23,2,2,42,44,[[774,2,2,42,44]]],[24,2,2,44,46,[[797,1,1,44,45],[799,1,1,45,46]]],[25,6,6,46,52,[[815,1,1,46,47],[820,1,1,47,48],[828,2,2,48,50],[829,1,1,50,51],[832,1,1,51,52]]],[27,3,3,52,55,[[870,1,1,52,53],[871,2,2,53,55]]],[33,1,1,55,56,[[902,1,1,55,56]]]],[860,1467,3485,4902,5208,5673,6111,6659,6706,7490,8460,8864,10084,12790,12869,13110,13635,13669,13980,13983,14382,14654,14692,14948,14951,15450,15658,15696,16675,16702,16800,16829,16969,17085,17400,17404,17665,18376,18608,18611,18612,18873,19681,19682,20315,20386,20735,20892,21139,21154,21173,21239,22215,22226,22238,22715]]],["number",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11851]]],["plentifully",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13470]]],["plenty",[3,3,[[0,1,1,0,1,[[26,1,1,0,1]]],[13,1,1,1,2,[[397,1,1,1,2]]],[17,1,1,2,3,[[472,1,1,2,3]]]],[755,11864,13792]]],["things",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22206]]]]},{"k":"H7231","v":[["*",[19,19,[[0,2,2,0,2,[[5,1,1,0,1],[17,1,1,1,2]]],[8,1,1,2,3,[[260,1,1,2,3]]],[17,1,1,3,4,[[470,1,1,3,4]]],[18,7,7,4,11,[[480,1,1,4,5],[481,1,1,5,6],[502,1,1,6,7],[515,1,1,7,8],[546,1,1,8,9],[581,1,1,9,10],[621,1,1,10,11]]],[20,1,1,11,12,[[663,1,1,11,12]]],[22,3,3,12,15,[[700,1,1,12,13],[737,1,1,13,14],[744,1,1,14,15]]],[23,3,3,15,18,[[749,1,1,15,16],[758,1,1,16,17],[790,1,1,17,18]]],[27,1,1,18,19,[[865,1,1,18,19]]]],[138,444,7871,13726,13958,13972,14270,14509,14939,15595,16318,17408,18061,18812,18938,19064,19300,20068,22140]]],["great",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[444]]],["increased",[4,4,[[18,2,2,0,2,[[480,1,1,0,1],[481,1,1,1,2]]],[20,1,1,2,3,[[663,1,1,2,3]]],[27,1,1,3,4,[[865,1,1,3,4]]]],[13958,13972,17408,22140]]],["manifold",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15595]]],["many",[6,6,[[8,1,1,0,1,[[260,1,1,0,1]]],[18,1,1,1,2,[[502,1,1,1,2]]],[22,2,2,2,4,[[700,1,1,2,3],[744,1,1,3,4]]],[23,2,2,4,6,[[749,1,1,4,5],[758,1,1,5,6]]]],[7871,14270,18061,18938,19064,19300]]],["more",[2,2,[[18,1,1,0,1,[[546,1,1,0,1]]],[23,1,1,1,2,[[790,1,1,1,2]]]],[14939,20068]]],["multiplied",[3,3,[[17,1,1,0,1,[[470,1,1,0,1]]],[18,1,1,1,2,[[515,1,1,1,2]]],[22,1,1,2,3,[[737,1,1,2,3]]]],[13726,14509,18812]]],["multiply",[1,1,[[0,1,1,0,1,[[5,1,1,0,1]]]],[138]]],["thousands",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16318]]]]},{"k":"H7232","v":[["*",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[1496,14132]]],["out",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14132]]],["shot",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1496]]]]},{"k":"H7233","v":[["*",[16,16,[[0,1,1,0,1,[[23,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,1,1,2,3,[[126,1,1,2,3]]],[4,3,3,3,6,[[184,1,1,3,4],[185,2,2,4,6]]],[6,1,1,6,7,[[230,1,1,6,7]]],[8,4,4,7,11,[[253,2,2,7,9],[256,1,1,9,10],[264,1,1,10,11]]],[18,2,2,11,13,[[480,1,1,11,12],[568,1,1,12,13]]],[21,1,1,13,14,[[675,1,1,13,14]]],[25,1,1,14,15,[[817,1,1,14,15]]],[32,1,1,15,16,[[898,1,1,15,16]]]],[651,3532,4024,5788,5812,5827,7064,7683,7684,7783,7972,13963,15402,17608,20769,22655]]],["+",[4,4,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[18,1,1,2,3,[[480,1,1,2,3]]],[21,1,1,3,4,[[675,1,1,3,4]]]],[3532,5812,13963,17608]]],["many",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[4024]]],["millions",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[651]]],["multiply",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20769]]],["thousand",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[18,1,1,2,3,[[568,1,1,2,3]]]],[5788,7064,15402]]],["thousands",[6,6,[[4,1,1,0,1,[[185,1,1,0,1]]],[8,4,4,1,5,[[253,2,2,1,3],[256,1,1,3,4],[264,1,1,4,5]]],[32,1,1,5,6,[[898,1,1,5,6]]]],[5827,7683,7684,7783,7972,22655]]]]},{"k":"H7234","v":[["decked",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16591]]]]},{"k":"H7235","v":[["*",[224,209,[[0,29,24,0,24,[[0,3,2,0,2],[2,2,1,2,3],[6,2,2,3,5],[7,1,1,5,6],[8,3,2,6,8],[14,1,1,8,9],[15,2,1,9,10],[16,2,2,10,12],[20,1,1,12,13],[21,2,1,13,14],[25,2,2,14,16],[27,1,1,16,17],[33,1,1,17,18],[34,1,1,18,19],[37,1,1,19,20],[40,1,1,20,21],[42,1,1,21,22],[46,1,1,22,23],[47,1,1,23,24]]],[1,11,11,24,35,[[50,4,4,24,28],[56,1,1,28,29],[60,1,1,29,30],[65,2,2,30,32],[79,1,1,32,33],[81,1,1,33,34],[85,1,1,34,35]]],[2,3,3,35,38,[[100,1,1,35,36],[114,1,1,36,37],[115,1,1,37,38]]],[3,3,3,38,41,[[142,1,1,38,39],[149,1,1,39,40],[151,1,1,40,41]]],[4,20,16,41,57,[[153,1,1,41,42],[155,1,1,42,43],[158,1,1,43,44],[159,2,2,44,46],[160,4,2,46,48],[163,1,1,48,49],[165,1,1,49,50],[166,1,1,50,51],[169,4,2,51,53],[171,1,1,53,54],[180,1,1,54,55],[182,2,2,55,57]]],[5,3,3,57,60,[[199,1,1,57,58],[208,1,1,58,59],[210,1,1,59,60]]],[6,3,3,60,63,[[219,1,1,60,61],[226,1,1,61,62],[230,1,1,62,63]]],[8,5,5,63,68,[[236,1,1,63,64],[237,1,1,64,65],[242,1,1,65,66],[249,1,1,66,67],[261,1,1,67,68]]],[9,7,7,68,75,[[267,1,1,68,69],[274,1,1,69,70],[278,2,2,70,72],[280,1,1,72,73],[284,1,1,73,74],[288,1,1,74,75]]],[10,4,4,75,79,[[294,2,2,75,77],[300,2,2,77,79]]],[11,3,3,79,82,[[322,1,1,79,80],[333,2,2,80,82]]],[12,10,10,82,92,[[341,2,2,82,84],[342,2,2,84,86],[344,1,1,86,87],[345,1,1,87,88],[357,1,1,88,89],[360,2,2,89,91],[364,1,1,91,92]]],[13,9,9,92,101,[[377,1,1,92,93],[380,1,1,93,94],[382,1,1,94,95],[391,1,1,95,96],[397,1,1,96,97],[398,1,1,97,98],[399,2,2,98,100],[402,1,1,100,101]]],[14,3,3,101,104,[[411,1,1,101,102],[412,2,2,102,104]]],[15,8,8,104,112,[[414,1,1,104,105],[416,3,3,105,108],[417,1,1,108,109],[418,1,1,109,110],[421,2,2,110,112]]],[17,8,8,112,120,[[444,1,1,112,113],[445,1,1,113,114],[462,1,1,114,115],[464,1,1,115,116],[468,1,1,116,117],[469,1,1,117,118],[474,1,1,118,119],[476,1,1,119,120]]],[18,10,10,120,130,[[493,1,1,120,121],[495,1,1,121,122],[521,1,1,122,123],[526,1,1,123,124],[528,1,1,124,125],[548,1,1,125,126],[555,1,1,126,127],[584,1,1,127,128],[607,1,1,128,129],[616,1,1,129,130]]],[19,11,10,130,140,[[631,1,1,130,131],[633,1,1,131,132],[636,1,1,132,133],[640,1,1,133,134],[649,1,1,134,135],[652,1,1,135,136],[655,2,2,136,138],[656,3,2,138,140]]],[20,18,15,140,155,[[659,1,1,140,141],[660,1,1,141,142],[663,5,5,142,147],[664,2,1,147,148],[665,2,2,148,150],[667,1,1,150,151],[668,1,1,151,152],[669,2,1,152,153],[670,3,2,153,155]]],[22,8,8,155,163,[[679,1,1,155,156],[687,1,1,156,157],[701,1,1,157,158],[708,1,1,158,159],[718,1,1,159,160],[729,1,1,160,161],[733,1,1,161,162],[735,1,1,162,163]]],[23,9,9,163,172,[[746,1,1,163,164],[747,1,1,164,165],[767,1,1,165,166],[773,1,1,166,167],[774,1,1,167,168],[777,1,1,168,169],[786,1,1,169,170],[790,2,2,170,172]]],[24,2,2,172,174,[[798,2,2,172,174]]],[25,20,19,174,193,[[812,1,1,174,175],[817,5,5,175,180],[820,1,1,180,181],[822,1,1,181,182],[823,1,1,182,183],[824,1,1,183,184],[825,1,1,184,185],[829,1,1,185,186],[832,1,1,186,187],[837,6,5,187,192],[838,1,1,192,193]]],[26,2,2,193,195,[[860,1,1,193,194],[861,1,1,194,195]]],[27,6,6,195,201,[[863,1,1,195,196],[869,2,2,196,198],[871,1,1,198,199],[873,2,2,199,201]]],[29,2,2,201,203,[[882,2,2,201,203]]],[31,1,1,203,204,[[892,1,1,203,204]]],[33,1,1,204,205,[[902,1,1,204,205]]],[34,1,1,205,206,[[904,1,1,205,206]]],[36,2,2,206,208,[[909,2,2,206,208]]],[37,2,1,208,209,[[920,2,1,208,209]]]],[21,27,71,176,177,200,206,212,361,391,399,417,533,564,696,716,776,992,1022,1131,1244,1324,1447,1455,1539,1542,1544,1552,1688,1815,1964,1965,2397,2451,2571,3039,3485,3533,4543,4814,4853,4902,4980,5089,5124,5133,5138,5150,5229,5289,5314,5380,5381,5412,5674,5713,5724,6155,6434,6479,6783,6973,7092,7224,7243,7354,7538,7926,8026,8217,8288,8316,8367,8486,8638,8873,8874,9089,9090,9811,10125,10135,10395,10412,10437,10451,10539,10615,10928,10994,11000,11132,11426,11488,11517,11713,11859,11902,11914,11931,12007,12243,12253,12265,12309,12360,12369,12378,12400,12418,12534,12548,13068,13103,13495,13550,13662,13720,13838,13891,14096,14153,14583,14664,14693,14997,15151,15737,16147,16257,16500,16575,16649,16758,17031,17140,17204,17224,17226,17240,17331,17340,17404,17408,17409,17414,17417,17428,17445,17446,17493,17507,17521,17532,17535,17669,17832,18093,18250,18449,18675,18747,18774,18987,19018,19487,19641,19686,19797,19977,20056,20061,20337,20354,20661,20769,20787,20788,20791,20813,20883,20959,21001,21026,21066,21162,21235,21369,21370,21388,21389,21396,21423,22075,22085,22113,22205,22208,22226,22253,22262,22414,22419,22579,22728,22754,22846,22849,23024]]],["+",[32,31,[[0,8,7,0,7,[[15,2,1,0,1],[20,1,1,1,2],[21,1,1,2,3],[25,1,1,3,4],[33,1,1,4,5],[37,1,1,5,6],[42,1,1,6,7]]],[1,2,2,7,9,[[56,1,1,7,8],[81,1,1,8,9]]],[3,1,1,9,10,[[149,1,1,9,10]]],[5,1,1,10,11,[[210,1,1,10,11]]],[6,1,1,11,12,[[226,1,1,11,12]]],[8,1,1,12,13,[[261,1,1,12,13]]],[10,1,1,13,14,[[294,1,1,13,14]]],[12,5,5,14,19,[[341,1,1,14,15],[357,1,1,15,16],[360,2,2,16,18],[364,1,1,18,19]]],[13,2,2,19,21,[[377,1,1,19,20],[402,1,1,20,21]]],[14,1,1,21,22,[[412,1,1,21,22]]],[15,1,1,22,23,[[416,1,1,22,23]]],[23,2,2,23,25,[[777,1,1,23,24],[786,1,1,24,25]]],[25,6,6,25,31,[[817,4,4,25,29],[824,1,1,29,30],[837,1,1,30,31]]]],[391,533,564,716,992,1131,1324,1688,2451,4814,6479,6973,7926,8874,10395,10928,10994,11000,11132,11426,12007,12253,12360,19797,19977,20787,20788,20791,20813,21026,21389]]],["Increase",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6783]]],["abundance",[2,2,[[9,1,1,0,1,[[278,1,1,0,1]]],[13,1,1,1,2,[[397,1,1,1,2]]]],[8316,11859]]],["abundantly",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18747]]],["authority",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17226]]],["continued",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7224]]],["full",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17507]]],["great",[7,7,[[0,1,1,0,1,[[14,1,1,0,1]]],[6,1,1,1,2,[[230,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[15,1,1,3,4,[[416,1,1,3,4]]],[18,1,1,4,5,[[495,1,1,4,5]]],[20,2,2,5,7,[[659,1,1,5,6],[660,1,1,6,7]]]],[361,7092,8638,12378,14153,17331,17340]]],["greater",[2,2,[[8,1,1,0,1,[[249,1,1,0,1]]],[17,1,1,1,2,[[468,1,1,1,2]]]],[7538,13662]]],["greatly",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[71]]],["increase",[17,17,[[2,1,1,0,1,[[114,1,1,0,1]]],[4,2,2,1,3,[[158,1,1,1,2],[159,1,1,2,3]]],[18,2,2,3,5,[[521,1,1,3,4],[548,1,1,4,5]]],[19,3,3,5,8,[[640,1,1,5,6],[649,1,1,6,7],[655,1,1,7,8]]],[20,2,2,8,10,[[663,1,1,8,9],[664,1,1,9,10]]],[22,1,1,10,11,[[735,1,1,10,11]]],[23,1,1,11,12,[[767,1,1,11,12]]],[25,3,3,12,15,[[837,3,3,12,15]]],[26,1,1,15,16,[[860,1,1,15,16]]],[37,1,1,16,17,[[920,1,1,16,17]]]],[3485,5089,5133,14583,14997,16758,17031,17224,17408,17428,18774,19487,21370,21388,21396,22075,23024]]],["increased",[14,14,[[0,2,2,0,2,[[6,2,2,0,2]]],[12,1,1,2,3,[[342,1,1,2,3]]],[14,1,1,3,4,[[411,1,1,3,4]]],[18,1,1,4,5,[[526,1,1,4,5]]],[22,1,1,5,6,[[729,1,1,5,6]]],[23,1,1,6,7,[[773,1,1,6,7]]],[24,1,1,7,8,[[798,1,1,7,8]]],[25,2,2,8,10,[[817,1,1,8,9],[829,1,1,9,10]]],[26,1,1,10,11,[[861,1,1,10,11]]],[27,1,1,11,12,[[871,1,1,11,12]]],[29,1,1,12,13,[[882,1,1,12,13]]],[37,1,1,13,14,[[920,1,1,13,14]]]],[176,177,10451,12243,14664,18675,19641,20337,20769,21162,22085,22226,22419,23024]]],["increasest",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13103]]],["increaseth",[5,5,[[19,2,2,0,2,[[655,1,1,0,1],[656,1,1,1,2]]],[22,1,1,2,3,[[718,1,1,2,3]]],[27,1,1,3,4,[[873,1,1,3,4]]],[34,1,1,4,5,[[904,1,1,4,5]]]],[17204,17240,18449,22253,22754]]],["long",[3,3,[[4,2,2,0,2,[[166,1,1,0,1],[171,1,1,1,2]]],[8,1,1,2,3,[[242,1,1,2,3]]]],[5314,5412,7354]]],["many",[25,24,[[3,1,1,0,1,[[151,1,1,0,1]]],[4,1,1,1,2,[[155,1,1,1,2]]],[9,2,2,2,4,[[267,1,1,2,3],[278,1,1,3,4]]],[12,2,2,4,6,[[344,1,1,4,5],[345,1,1,5,6]]],[13,1,1,6,7,[[382,1,1,6,7]]],[14,1,1,7,8,[[412,1,1,7,8]]],[15,1,1,8,9,[[418,1,1,8,9]]],[17,1,1,9,10,[[476,1,1,9,10]]],[18,1,1,10,11,[[555,1,1,10,11]]],[19,2,2,11,13,[[631,1,1,11,12],[633,1,1,12,13]]],[20,6,5,13,18,[[663,1,1,13,14],[664,1,1,14,15],[669,2,1,15,16],[670,2,2,16,18]]],[22,2,2,18,20,[[679,1,1,18,19],[701,1,1,19,20]]],[23,2,2,20,22,[[790,2,2,20,22]]],[25,1,1,22,23,[[823,1,1,22,23]]],[27,1,1,23,24,[[869,1,1,23,24]]]],[4853,4980,8026,8288,10539,10615,11517,12265,12418,13891,15151,16500,16575,17404,17428,17521,17532,17535,17669,18093,20056,20061,21001,22205]]],["more",[11,11,[[1,3,3,0,3,[[65,1,1,0,1],[79,1,1,1,2],[85,1,1,2,3]]],[2,1,1,3,4,[[100,1,1,3,4]]],[3,1,1,4,5,[[142,1,1,4,5]]],[8,1,1,5,6,[[237,1,1,5,6]]],[9,2,2,6,8,[[280,1,1,6,7],[284,1,1,7,8]]],[13,2,2,8,10,[[391,1,1,8,9],[399,1,1,9,10]]],[31,1,1,10,11,[[892,1,1,10,11]]]],[1964,2397,2571,3039,4543,7243,8367,8486,11713,11931,22579]]],["much",[26,26,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,1,1,1,2,[[65,1,1,1,2]]],[5,2,2,2,4,[[199,1,1,2,3],[208,1,1,3,4]]],[9,1,1,4,5,[[274,1,1,4,5]]],[10,1,1,5,6,[[294,1,1,5,6]]],[11,3,3,6,9,[[322,1,1,6,7],[333,2,2,7,9]]],[13,3,3,9,12,[[380,1,1,9,10],[398,1,1,10,11],[399,1,1,11,12]]],[15,2,2,12,14,[[416,1,1,12,13],[421,1,1,13,14]]],[19,1,1,14,15,[[652,1,1,14,15]]],[20,7,7,15,22,[[663,3,3,15,18],[665,2,2,18,20],[667,1,1,20,21],[670,1,1,21,22]]],[22,1,1,22,23,[[708,1,1,22,23]]],[23,1,1,23,24,[[746,1,1,23,24]]],[36,2,2,24,26,[[909,2,2,24,26]]]],[1244,1965,6155,6434,8217,8873,9811,10125,10135,11488,11902,11914,12369,12548,17140,17409,17414,17417,17445,17446,17493,17535,18250,18987,22846,22849]]],["multiplied",[24,23,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,4,4,1,5,[[50,3,3,1,4],[60,1,1,4,5]]],[4,4,3,5,8,[[153,1,1,5,6],[160,2,1,6,7],[163,1,1,7,8]]],[12,1,1,8,9,[[342,1,1,8,9]]],[17,1,1,9,10,[[462,1,1,9,10]]],[18,2,2,10,12,[[493,1,1,10,11],[584,1,1,11,12]]],[19,2,2,12,14,[[636,1,1,12,13],[656,1,1,13,14]]],[22,1,1,14,15,[[687,1,1,14,15]]],[23,1,1,15,16,[[747,1,1,15,16]]],[25,3,3,16,19,[[812,1,1,16,17],[822,1,1,17,18],[832,1,1,18,19]]],[27,3,3,19,22,[[863,1,1,19,20],[869,1,1,20,21],[873,1,1,21,22]]],[33,1,1,22,23,[[902,1,1,22,23]]]],[1447,1539,1544,1552,1815,4902,5150,5229,10437,13495,14096,15737,16649,17240,17832,19018,20661,20959,21235,22113,22208,22262,22728]]],["multipliedst",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12534]]],["multiplieth",[2,2,[[17,2,2,0,2,[[444,1,1,0,1],[469,1,1,1,2]]]],[13068,13720]]],["multiply",[34,30,[[0,14,12,0,12,[[0,3,2,0,2],[2,1,1,2,3],[7,1,1,3,4],[8,3,2,4,6],[16,2,2,6,8],[25,1,1,8,9],[27,1,1,9,10],[34,1,1,10,11],[47,1,1,11,12]]],[1,1,1,12,13,[[50,1,1,12,13]]],[2,1,1,13,14,[[115,1,1,13,14]]],[4,11,9,14,23,[[159,1,1,14,15],[160,2,2,15,17],[165,1,1,17,18],[169,4,2,18,20],[180,1,1,20,21],[182,2,2,21,23]]],[12,1,1,23,24,[[341,1,1,23,24]]],[17,1,1,24,25,[[464,1,1,24,25]]],[23,1,1,25,26,[[774,1,1,25,26]]],[25,3,3,26,29,[[837,2,2,26,28],[838,1,1,28,29]]],[29,1,1,29,30,[[882,1,1,29,30]]]],[21,27,71,200,206,212,399,417,696,776,1022,1455,1542,3533,5124,5138,5150,5289,5380,5381,5674,5713,5724,10412,13550,19686,21369,21370,21423,22414]]],["multiplying",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[564]]],["nourished",[1,1,[[25,1,1,0,1,[[820,1,1,0,1]]]],[20883]]],["number",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16257]]],["on",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21066]]],["plenteous",[1,1,[[18,1,1,0,1,[[607,1,1,0,1]]]],[16147]]],["plenty",[1,1,[[10,1,1,0,1,[[300,1,1,0,1]]]],[9090]]],["sore",[1,1,[[15,1,1,0,1,[[414,1,1,0,1]]]],[12309]]],["store",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[15,1,1,1,2,[[417,1,1,1,2]]]],[9089,12400]]],["throughly",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14693]]],["up",[2,2,[[17,1,1,0,1,[[474,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]]],[13838,20354]]]]},{"k":"H7236","v":[["*",[6,5,[[26,6,5,0,5,[[851,1,1,0,1],[853,5,4,1,5]]]],[21806,21848,21857,21859,21870]]],["+",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21806]]],["grew",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21848,21857]]],["grown",[3,2,[[26,3,2,0,2,[[853,3,2,0,2]]]],[21859,21870]]]]},{"k":"H7237","v":[["*",[15,14,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,2,2,1,3,[[199,1,1,1,2],[201,1,1,2,3]]],[9,5,5,3,8,[[277,1,1,3,4],[278,3,3,4,7],[283,1,1,7,8]]],[12,2,1,8,9,[[357,2,1,8,9]]],[23,2,2,9,11,[[793,2,2,9,11]]],[25,2,2,11,13,[[822,1,1,11,12],[826,1,1,12,13]]],[29,1,1,13,14,[[879,1,1,13,14]]]],[4986,6179,6262,8260,8312,8313,8315,8476,10927,20129,20130,20964,21088,22378]]],["+",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8476]]],["Rabbah",[12,11,[[5,2,2,0,2,[[199,1,1,0,1],[201,1,1,1,2]]],[9,4,4,2,6,[[277,1,1,2,3],[278,3,3,3,6]]],[12,2,1,6,7,[[357,2,1,6,7]]],[23,2,2,7,9,[[793,2,2,7,9]]],[25,1,1,9,10,[[826,1,1,9,10]]],[29,1,1,10,11,[[879,1,1,10,11]]]],[6179,6262,8260,8312,8313,8315,10927,20129,20130,21088,22378]]],["Rabbath",[2,2,[[4,1,1,0,1,[[155,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[4986,20964]]]]},{"k":"H7238","v":[["*",[5,5,[[26,5,5,0,5,[[853,2,2,0,2],[854,2,2,2,4],[856,1,1,4,5]]]],[21859,21873,21892,21893,21960]]],["greatness",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[856,1,1,1,2]]]],[21859,21960]]],["majesty",[3,3,[[26,3,3,0,3,[[853,1,1,0,1],[854,2,2,1,3]]]],[21873,21892,21893]]]]},{"k":"H7239","v":[["*",[10,9,[[12,2,1,0,1,[[366,2,1,0,1]]],[14,2,2,1,3,[[404,2,2,1,3]]],[15,3,3,3,6,[[419,3,3,3,6]]],[18,1,1,6,7,[[545,1,1,6,7]]],[26,1,1,7,8,[[860,1,1,7,8]]],[31,1,1,8,9,[[892,1,1,8,9]]]],[11171,12091,12096,12486,12491,12492,14917,22048,22579]]],["+",[6,6,[[12,1,1,0,1,[[366,1,1,0,1]]],[14,2,2,1,3,[[404,2,2,1,3]]],[15,2,2,3,5,[[419,2,2,3,5]]],[31,1,1,5,6,[[892,1,1,5,6]]]],[11171,12091,12096,12486,12491,22579]]],["thousand",[3,3,[[12,1,1,0,1,[[366,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]],[18,1,1,2,3,[[545,1,1,2,3]]]],[11171,12492,14917]]],["thousands",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22048]]]]},{"k":"H7240","v":[["+",[2,1,[[26,2,1,0,1,[[856,2,1,0,1]]]],[21943]]]]},{"k":"H7241","v":[["showers",[6,6,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,2,2,1,3,[[542,1,1,1,2],[549,1,1,2,3]]],[23,2,2,3,5,[[747,1,1,3,4],[758,1,1,4,5]]],[32,1,1,5,6,[[897,1,1,5,6]]]],[5760,14870,15006,19005,19315,22640]]]]},{"k":"H7242","v":[["chain",[2,2,[[0,1,1,0,1,[[40,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[1237,20773]]]]},{"k":"H7243","v":[["*",[56,54,[[0,3,3,0,3,[[0,1,1,0,1],[1,1,1,1,2],[14,1,1,2,3]]],[1,3,3,3,6,[[77,1,1,3,4],[78,1,1,4,5],[88,1,1,5,6]]],[2,2,2,6,8,[[108,1,1,6,7],[112,1,1,7,8]]],[3,7,7,8,15,[[123,1,1,8,9],[131,2,2,9,11],[144,3,3,11,14],[145,1,1,14,15]]],[5,1,1,15,16,[[205,1,1,15,16]]],[6,1,1,16,17,[[229,1,1,16,17]]],[9,1,1,17,18,[[269,1,1,17,18]]],[10,3,3,18,21,[[296,3,3,18,21]]],[11,3,3,21,24,[[322,1,1,21,22],[327,1,1,22,23],[330,1,1,23,24]]],[12,14,13,24,37,[[339,1,1,24,25],[340,2,2,25,27],[345,1,1,27,28],[349,1,1,28,29],[360,1,1,29,30],[361,2,2,30,32],[362,1,1,32,33],[363,3,3,33,36],[364,2,1,36,37]]],[13,1,1,37,38,[[386,1,1,37,38]]],[14,1,1,38,39,[[410,1,1,38,39]]],[15,2,1,39,40,[[421,2,1,39,40]]],[23,8,8,40,48,[[769,1,1,40,41],[772,1,1,41,42],[780,1,1,42,43],[783,1,1,43,44],[789,1,1,44,45],[790,1,1,45,46],[795,1,1,46,47],[796,1,1,47,48]]],[25,3,3,48,51,[[802,1,1,48,49],[811,1,1,49,50],[849,1,1,50,51]]],[26,1,1,51,52,[[860,1,1,51,52]]],[37,2,2,52,54,[[916,1,1,52,53],[918,1,1,53,54]]]],[18,44,376,2313,2376,2677,3305,3415,3880,4157,4158,4582,4584,4591,4631,6338,7029,8085,8897,8929,8933,9823,9937,10033,10320,10363,10376,10577,10730,11002,11023,11038,11057,11079,11081,11088,11116,11613,12234,12514,19535,19619,19843,19925,20041,20047,20271,20282,20465,20647,21722,22038,22950,22995]]],["+",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8929]]],["foursquare",[1,1,[[25,1,1,0,1,[[849,1,1,0,1]]]],[21722]]],["fourth",[53,51,[[0,3,3,0,3,[[0,1,1,0,1],[1,1,1,1,2],[14,1,1,2,3]]],[1,2,2,3,5,[[77,1,1,3,4],[88,1,1,4,5]]],[2,2,2,5,7,[[108,1,1,5,6],[112,1,1,6,7]]],[3,7,7,7,14,[[123,1,1,7,8],[131,2,2,8,10],[144,3,3,10,13],[145,1,1,13,14]]],[5,1,1,14,15,[[205,1,1,14,15]]],[6,1,1,15,16,[[229,1,1,15,16]]],[9,1,1,16,17,[[269,1,1,16,17]]],[10,2,2,17,19,[[296,2,2,17,19]]],[11,3,3,19,22,[[322,1,1,19,20],[327,1,1,20,21],[330,1,1,21,22]]],[12,14,13,22,35,[[339,1,1,22,23],[340,2,2,23,25],[345,1,1,25,26],[349,1,1,26,27],[360,1,1,27,28],[361,2,2,28,30],[362,1,1,30,31],[363,3,3,31,34],[364,2,1,34,35]]],[13,1,1,35,36,[[386,1,1,35,36]]],[14,1,1,36,37,[[410,1,1,36,37]]],[15,2,1,37,38,[[421,2,1,37,38]]],[23,8,8,38,46,[[769,1,1,38,39],[772,1,1,39,40],[780,1,1,40,41],[783,1,1,41,42],[789,1,1,42,43],[790,1,1,43,44],[795,1,1,44,45],[796,1,1,45,46]]],[25,2,2,46,48,[[802,1,1,46,47],[811,1,1,47,48]]],[26,1,1,48,49,[[860,1,1,48,49]]],[37,2,2,49,51,[[916,1,1,49,50],[918,1,1,50,51]]]],[18,44,376,2313,2677,3305,3415,3880,4157,4158,4582,4584,4591,4631,6338,7029,8085,8897,8933,9823,9937,10033,10320,10363,10376,10577,10730,11002,11023,11038,11057,11079,11081,11088,11116,11613,12234,12514,19535,19619,19843,19925,20041,20047,20271,20282,20465,20647,22038,22950,22995]]],["part",[1,1,[[1,1,1,0,1,[[78,1,1,0,1]]]],[2376]]]]},{"k":"H7244","v":[["fourth",[6,5,[[26,6,5,0,5,[[851,1,1,0,1],[852,1,1,1,2],[856,4,3,2,5]]]],[21798,21832,21940,21952,21956]]]]},{"k":"H7245","v":[["Rabbith",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6341]]]]},{"k":"H7246","v":[["*",[3,3,[[2,2,2,0,2,[[95,1,1,0,1],[96,1,1,1,2]]],[12,1,1,2,3,[[360,1,1,2,3]]]],[2870,2891,11012]]],["baken",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2870]]],["fried",[2,2,[[2,1,1,0,1,[[96,1,1,0,1]]],[12,1,1,1,2,[[360,1,1,1,2]]]],[2891,11012]]]]},{"k":"H7247","v":[["Riblah",[11,11,[[3,1,1,0,1,[[150,1,1,0,1]]],[11,4,4,1,5,[[335,1,1,1,2],[337,3,3,2,5]]],[23,6,6,5,11,[[783,2,2,5,7],[796,4,4,7,11]]]],[4827,10198,10228,10242,10243,19928,19929,20285,20286,20302,20303]]]]},{"k":"H7248","v":[["Rabmag",[2,2,[[23,2,2,0,2,[[783,2,2,0,2]]]],[19926,19936]]]]},{"k":"H7249","v":[["Rabsaris",[3,3,[[11,1,1,0,1,[[330,1,1,0,1]]],[23,2,2,1,3,[[783,2,2,1,3]]]],[10041,19926,19936]]]]},{"k":"H7250","v":[["*",[3,3,[[2,3,3,0,3,[[107,1,1,0,1],[108,1,1,1,2],[109,1,1,2,3]]]],[3274,3300,3334]]],["down",[2,2,[[2,2,2,0,2,[[107,1,1,0,1],[109,1,1,1,2]]]],[3274,3334]]],["gender",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3300]]]]},{"k":"H7251","v":[["*",[12,12,[[1,6,6,0,6,[[76,1,1,0,1],[77,1,1,1,2],[79,1,1,2,3],[86,1,1,3,4],[87,1,1,4,5],[88,1,1,5,6]]],[10,2,2,6,8,[[297,2,2,6,8]]],[25,4,4,8,12,[[841,1,1,8,9],[842,1,1,9,10],[844,1,1,10,11],[846,1,1,11,12]]]],[2273,2309,2384,2629,2634,2673,8939,8965,21524,21547,21588,21632]]],["Foursquare",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2309]]],["foursquare",[7,7,[[1,5,5,0,5,[[76,1,1,0,1],[79,1,1,1,2],[86,1,1,2,3],[87,1,1,3,4],[88,1,1,4,5]]],[10,1,1,5,6,[[297,1,1,5,6]]],[25,1,1,6,7,[[841,1,1,6,7]]]],[2273,2384,2629,2634,2673,8965,21524]]],["square",[3,3,[[10,1,1,0,1,[[297,1,1,0,1]]],[25,2,2,1,3,[[844,1,1,1,2],[846,1,1,2,3]]]],[8939,21588,21632]]],["squared",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21547]]]]},{"k":"H7252","v":[["down",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16242]]]]},{"k":"H7253","v":[["*",[7,7,[[1,1,1,0,1,[[78,1,1,0,1]]],[8,1,1,1,2,[[244,1,1,1,2]]],[25,5,5,2,7,[[802,2,2,2,4],[811,1,1,4,5],[844,2,2,5,7]]]],[2376,7399,20472,20481,20644,21588,21589]]],["part",[2,2,[[1,1,1,0,1,[[78,1,1,0,1]]],[8,1,1,1,2,[[244,1,1,1,2]]]],[2376,7399]]],["sides",[3,3,[[25,3,3,0,3,[[802,2,2,0,2],[811,1,1,2,3]]]],[20472,20481,20644]]],["squares",[2,2,[[25,2,2,0,2,[[844,2,2,0,2]]]],[21588,21589]]]]},{"k":"H7254","v":[["Reba",[2,2,[[3,1,1,0,1,[[147,1,1,0,1]]],[5,1,1,1,2,[[199,1,1,1,2]]]],[4672,6175]]]]},{"k":"H7255","v":[["*",[2,2,[[3,1,1,0,1,[[139,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]]],[4426,9699]]],["fourth",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4426]]],["part",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9699]]]]},{"k":"H7256","v":[["fourth",[4,4,[[1,2,2,0,2,[[69,1,1,0,1],[83,1,1,1,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[4,1,1,3,4,[[157,1,1,3,4]]]],[2056,2503,4126,5062]]]]},{"k":"H7257","v":[["*",[30,30,[[0,5,5,0,5,[[3,1,1,0,1],[28,1,1,1,2],[48,3,3,2,5]]],[1,1,1,5,6,[[72,1,1,5,6]]],[3,1,1,6,7,[[138,1,1,6,7]]],[4,3,3,7,10,[[174,1,1,7,8],[181,1,1,8,9],[185,1,1,9,10]]],[17,1,1,10,11,[[446,1,1,10,11]]],[18,2,2,11,13,[[500,1,1,11,12],[581,1,1,12,13]]],[21,1,1,13,14,[[671,1,1,13,14]]],[22,8,8,14,22,[[689,2,2,14,16],[691,2,2,16,18],[692,1,1,18,19],[695,1,1,19,20],[705,1,1,20,21],[732,1,1,21,22]]],[23,1,1,22,23,[[777,1,1,22,23]]],[25,4,4,23,27,[[820,1,1,23,24],[830,1,1,24,25],[835,2,2,25,27]]],[35,3,3,27,30,[[907,2,2,27,29],[908,1,1,29,30]]]],[86,797,1482,1487,1498,2149,4402,5476,5699,5823,13127,14237,15593,17544,17890,17891,17926,17927,17958,17985,18161,18734,19787,20883,21186,21327,21328,22812,22819,22833]]],["couched",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1482]]],["coucheth",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5823]]],["down",[16,16,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[138,1,1,1,2]]],[17,1,1,2,3,[[446,1,1,2,3]]],[18,2,2,3,5,[[500,1,1,3,4],[581,1,1,4,5]]],[22,5,5,5,10,[[689,2,2,5,7],[692,1,1,7,8],[695,1,1,8,9],[705,1,1,9,10]]],[23,1,1,10,11,[[777,1,1,10,11]]],[25,2,2,11,13,[[820,1,1,11,12],[835,1,1,12,13]]],[35,3,3,13,16,[[907,2,2,13,15],[908,1,1,15,16]]]],[1487,4402,13127,14237,15593,17890,17891,17958,17985,18161,19787,20883,21328,22812,22819,22833]]],["fold",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17926]]],["lay",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18734]]],["lie",[3,3,[[4,1,1,0,1,[[181,1,1,0,1]]],[22,1,1,1,2,[[691,1,1,1,2]]],[25,1,1,2,3,[[835,1,1,2,3]]]],[5699,17927,21327]]],["lieth",[3,3,[[0,2,2,0,2,[[3,1,1,0,1],[48,1,1,1,2]]],[25,1,1,2,3,[[830,1,1,2,3]]]],[86,1498,21186]]],["lying",[2,2,[[0,1,1,0,1,[[28,1,1,0,1]]],[1,1,1,1,2,[[72,1,1,1,2]]]],[797,2149]]],["rest",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17544]]],["sitting",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5476]]]]},{"k":"H7258","v":[["*",[4,4,[[19,1,1,0,1,[[651,1,1,0,1]]],[22,2,2,1,3,[[713,1,1,1,2],[743,1,1,2,3]]],[23,1,1,3,4,[[794,1,1,3,4]]]],[17094,18327,18907,20172]]],["in",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18907]]],["lay",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18327]]],["place",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17094]]],["restingplace",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20172]]]]},{"k":"H7259","v":[["*",[30,29,[[0,30,29,0,29,[[21,1,1,0,1],[23,13,12,1,13],[24,3,3,13,16],[25,3,3,16,19],[26,6,6,19,25],[27,1,1,25,26],[28,1,1,26,27],[34,1,1,27,28],[48,1,1,28,29]]]],[570,606,620,621,636,642,644,649,650,651,652,655,658,678,679,686,699,700,727,732,733,738,742,769,773,778,807,1019,1504]]],["Rebekah",[28,27,[[0,28,27,0,27,[[21,1,1,0,1],[23,13,12,1,13],[24,3,3,13,16],[25,3,3,16,19],[26,6,6,19,25],[27,1,1,25,26],[48,1,1,26,27]]]],[570,606,620,621,636,642,644,649,650,651,652,655,658,678,679,686,699,700,727,732,733,738,742,769,773,778,1504]]],["Rebekah's",[2,2,[[0,2,2,0,2,[[28,1,1,0,1],[34,1,1,1,2]]]],[807,1019]]]]},{"k":"H7260","v":[["*",[8,8,[[26,8,8,0,8,[[851,1,1,0,1],[853,1,1,1,2],[856,6,6,2,8]]]],[21806,21840,21936,21940,21941,21944,21950,21953]]],["great",[6,6,[[26,6,6,0,6,[[851,1,1,0,1],[853,1,1,1,2],[856,4,4,2,6]]]],[21806,21840,21936,21940,21944,21950]]],["things",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21941,21953]]]]},{"k":"H7261","v":[["*",[8,8,[[26,8,8,0,8,[[853,1,1,0,1],[854,6,6,1,7],[855,1,1,7,8]]]],[21873,21875,21876,21877,21883,21884,21897,21922]]],["lords",[6,6,[[26,6,6,0,6,[[853,1,1,0,1],[854,4,4,1,5],[855,1,1,5,6]]]],[21873,21875,21883,21884,21897,21922]]],["princes",[2,2,[[26,2,2,0,2,[[854,2,2,0,2]]]],[21876,21877]]]]},{"k":"H7262","v":[["Rabshakeh",[16,16,[[11,8,8,0,8,[[330,6,6,0,6],[331,2,2,6,8]]],[22,8,8,8,16,[[714,6,6,8,14],[715,2,2,14,16]]]],[10041,10043,10050,10051,10052,10061,10065,10069,18332,18334,18341,18342,18343,18352,18356,18360]]]]},{"k":"H7263","v":[["clods",[2,2,[[17,2,2,0,2,[[456,1,1,0,1],[473,1,1,1,2]]]],[13388,13831]]]]},{"k":"H7264","v":[["*",[41,40,[[0,1,1,0,1,[[44,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[4,1,1,2,3,[[154,1,1,2,3]]],[8,2,2,3,5,[[249,1,1,3,4],[263,1,1,4,5]]],[9,3,3,5,8,[[273,1,1,5,6],[284,1,1,6,7],[288,1,1,7,8]]],[11,2,2,8,10,[[331,2,2,8,10]]],[12,1,1,10,11,[[354,1,1,10,11]]],[17,2,2,11,13,[[444,1,1,11,12],[447,1,1,12,13]]],[18,5,5,13,18,[[481,1,1,13,14],[495,1,1,14,15],[554,2,2,15,17],[576,1,1,17,18]]],[19,2,2,18,20,[[656,1,1,18,19],[657,1,1,19,20]]],[22,11,11,20,31,[[683,1,1,20,21],[691,1,1,21,22],[692,2,2,22,24],[701,1,1,24,25],[706,1,1,25,26],[710,2,2,26,28],[715,2,2,28,30],[742,1,1,30,31]]],[23,2,2,31,33,[[777,1,1,31,32],[794,1,1,32,33]]],[25,1,1,33,34,[[817,1,1,33,34]]],[28,2,2,34,36,[[877,2,2,34,36]]],[29,1,1,36,37,[[886,1,1,36,37]]],[32,1,1,37,38,[[899,1,1,37,38]]],[34,3,2,38,40,[[905,3,2,38,40]]]],[1382,1934,4963,7523,7957,8190,8511,8610,10088,10089,10872,13057,13134,13969,14125,15109,15111,15500,17233,17272,17764,17919,17937,17944,18088,18185,18269,18270,18380,18381,18887,19784,20200,20805,22312,22321,22489,22681,22775,22784]]],["+",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1382]]],["afraid",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1934]]],["awe",[1,1,[[18,1,1,0,1,[[481,1,1,0,1]]]],[13969]]],["disquiet",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20200]]],["disquieted",[2,2,[[8,1,1,0,1,[[263,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[7957,17272]]],["fretted",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20805]]],["move",[2,2,[[9,1,1,0,1,[[273,1,1,0,1]]],[32,1,1,1,2,[[899,1,1,1,2]]]],[8190,22681]]],["moved",[5,5,[[9,2,2,0,2,[[284,1,1,0,1],[288,1,1,1,2]]],[12,1,1,2,3,[[354,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]],[22,1,1,4,5,[[692,1,1,4,5]]]],[8511,8610,10872,14125,17937]]],["provoke",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13134]]],["quake",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22321]]],["quaked",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7523]]],["rage",[5,5,[[11,2,2,0,2,[[331,2,2,0,2]]],[19,1,1,2,3,[[656,1,1,2,3]]],[22,2,2,3,5,[[715,2,2,3,5]]]],[10088,10089,17233,18380,18381]]],["shake",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17919]]],["shaketh",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13057]]],["shook",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18088]]],["tremble",[9,9,[[4,1,1,0,1,[[154,1,1,0,1]]],[18,1,1,1,2,[[576,1,1,1,2]]],[22,3,3,2,5,[[683,1,1,2,3],[692,1,1,3,4],[742,1,1,4,5]]],[23,1,1,5,6,[[777,1,1,5,6]]],[28,1,1,6,7,[[877,1,1,6,7]]],[29,1,1,7,8,[[886,1,1,7,8]]],[34,1,1,8,9,[[905,1,1,8,9]]]],[4963,15500,17764,17944,18887,19784,22312,22489,22775]]],["trembled",[3,2,[[18,1,1,0,1,[[554,1,1,0,1]]],[34,2,1,1,2,[[905,2,1,1,2]]]],[15111,22784]]],["troubled",[3,3,[[18,1,1,0,1,[[554,1,1,0,1]]],[22,2,2,1,3,[[710,2,2,1,3]]]],[15109,18269,18270]]],["wroth",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18185]]]]},{"k":"H7265","v":[["+",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12146]]]]},{"k":"H7266","v":[["rage",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21820]]]]},{"k":"H7267","v":[["*",[7,7,[[17,5,5,0,5,[[438,2,2,0,2],[449,1,1,2,3],[472,1,1,3,4],[474,1,1,4,5]]],[22,1,1,5,6,[[692,1,1,5,6]]],[34,1,1,6,7,[[905,1,1,6,7]]]],[12921,12930,13182,13771,13858,17931,22770]]],["+",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17931]]],["noise",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13771]]],["rage",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13858]]],["trouble",[2,2,[[17,2,2,0,2,[[438,1,1,0,1],[449,1,1,1,2]]]],[12930,13182]]],["troubling",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12921]]],["wrath",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22770]]]]},{"k":"H7268","v":[["trembling",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5676]]]]},{"k":"H7269","v":[["trembling",[1,1,[[25,1,1,0,1,[[813,1,1,0,1]]]],[20698]]]]},{"k":"H7270","v":[["*",[25,24,[[0,7,7,0,7,[[41,7,7,0,7]]],[3,1,1,7,8,[[137,1,1,7,8]]],[4,1,1,8,9,[[153,1,1,8,9]]],[5,7,6,9,15,[[188,1,1,9,10],[192,3,3,10,13],[193,2,1,13,14],[200,1,1,14,15]]],[6,3,3,15,18,[[228,3,3,15,18]]],[8,1,1,18,19,[[261,1,1,18,19]]],[9,3,3,19,22,[[276,1,1,19,20],[281,1,1,20,21],[285,1,1,21,22]]],[12,1,1,22,23,[[356,1,1,22,23]]],[18,1,1,23,24,[[492,1,1,23,24]]]],[1261,1263,1266,1268,1282,1283,1286,4372,4916,5870,5971,5972,5974,5978,6194,6995,7007,7010,7909,8243,8399,8538,10910,14090]]],["+",[10,9,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[5,5,4,2,6,[[192,2,2,2,4],[193,2,1,4,5],[200,1,1,5,6]]],[6,3,3,6,9,[[228,3,3,6,9]]]],[4372,4916,5971,5974,5978,6194,6995,7007,7010]]],["backbiteth",[1,1,[[18,1,1,0,1,[[492,1,1,0,1]]]],[14090]]],["out",[2,2,[[9,1,1,0,1,[[276,1,1,0,1]]],[12,1,1,1,2,[[356,1,1,1,2]]]],[8243,10910]]],["slandered",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8538]]],["spies",[10,10,[[0,7,7,0,7,[[41,7,7,0,7]]],[5,1,1,7,8,[[192,1,1,7,8]]],[8,1,1,8,9,[[261,1,1,8,9]]],[9,1,1,9,10,[[281,1,1,9,10]]]],[1261,1263,1266,1268,1282,1283,1286,5972,7909,8399]]],["spy",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5870]]]]},{"k":"H7271","v":[["feet",[7,7,[[26,7,7,0,7,[[851,4,4,0,4],[856,3,3,4,7]]]],[21791,21792,21799,21800,21937,21940,21952]]]]},{"k":"H7272","v":[["*",[245,230,[[0,13,11,0,11,[[7,1,1,0,1],[17,1,1,1,2],[18,1,1,2,3],[23,2,1,3,4],[28,1,1,4,5],[29,1,1,5,6],[32,2,1,6,7],[40,1,1,7,8],[42,1,1,8,9],[48,2,2,9,11]]],[1,14,13,11,24,[[52,1,1,11,12],[53,1,1,12,13],[60,1,1,13,14],[61,1,1,14,15],[70,2,1,15,16],[72,1,1,16,17],[73,1,1,17,18],[74,1,1,18,19],[78,1,1,19,20],[79,2,2,20,22],[86,1,1,22,23],[89,1,1,23,24]]],[2,11,11,24,35,[[97,2,2,24,26],[100,3,3,26,29],[102,1,1,29,30],[103,4,4,30,34],[110,1,1,34,35]]],[3,5,5,35,40,[[136,1,1,35,36],[138,4,4,36,40]]],[4,17,16,40,56,[[154,2,2,40,42],[160,1,1,42,43],[163,3,3,43,46],[171,2,1,46,47],[177,1,1,47,48],[180,4,4,48,52],[181,1,1,52,53],[184,1,1,53,54],[185,2,2,54,56]]],[5,11,10,56,66,[[187,1,1,56,57],[189,2,2,57,59],[190,3,3,59,62],[191,1,1,62,63],[195,1,1,63,64],[196,2,1,64,65],[200,1,1,65,66]]],[6,11,10,66,76,[[211,2,2,66,68],[213,1,1,68,69],[214,3,3,69,72],[215,3,2,72,74],[218,1,1,74,75],[229,1,1,75,76]]],[8,9,9,76,85,[[237,1,1,76,77],[249,1,1,77,78],[252,1,1,78,79],[258,1,1,79,80],[259,1,1,80,81],[260,4,4,81,85]]],[9,16,16,85,101,[[268,1,1,85,86],[269,1,1,86,87],[270,2,2,87,89],[275,2,2,89,91],[277,1,1,91,92],[280,1,1,92,93],[281,3,3,93,96],[285,1,1,96,97],[287,1,1,97,98],[288,3,3,98,101]]],[10,6,6,101,107,[[292,1,1,101,102],[295,1,1,102,103],[304,2,2,103,105],[305,1,1,105,106],[310,1,1,106,107]]],[11,7,7,107,114,[[315,1,1,107,108],[316,2,2,108,110],[318,1,1,110,111],[321,1,1,111,112],[325,1,1,112,113],[333,1,1,113,114]]],[12,2,1,114,115,[[365,2,1,114,115]]],[13,3,3,115,118,[[369,1,1,115,116],[382,1,1,116,117],[399,1,1,117,118]]],[15,1,1,118,119,[[421,1,1,118,119]]],[16,1,1,119,120,[[433,1,1,119,120]]],[17,13,12,120,132,[[437,1,1,120,121],[447,1,1,121,122],[448,2,1,122,123],[453,2,2,123,125],[458,1,1,125,126],[463,1,1,126,127],[464,1,1,127,128],[465,1,1,128,129],[466,1,1,129,130],[468,1,1,130,131],[474,1,1,131,132]]],[18,31,31,132,163,[[485,1,1,132,133],[486,1,1,133,134],[495,3,3,134,137],[499,1,1,137,138],[502,1,1,138,139],[503,1,1,139,140],[508,1,1,140,141],[513,1,1,141,142],[515,1,1,142,143],[517,1,1,143,144],[524,1,1,144,145],[533,1,1,145,146],[543,2,2,146,148],[545,1,1,148,149],[550,1,1,149,150],[568,1,1,150,151],[571,1,1,151,152],[576,1,1,152,153],[582,1,1,153,154],[587,1,1,154,155],[592,1,1,155,156],[593,1,1,156,157],[596,3,3,157,160],[598,1,1,160,161],[599,1,1,161,162],[609,1,1,162,163]]],[19,15,15,163,178,[[628,2,2,163,165],[630,2,2,165,167],[631,2,2,167,169],[632,1,1,169,170],[633,3,3,170,173],[634,1,1,173,174],[646,1,1,174,175],[652,2,2,175,177],[653,1,1,177,178]]],[20,1,1,178,179,[[663,1,1,178,179]]],[21,1,1,179,180,[[675,1,1,179,180]]],[22,19,18,180,198,[[679,1,1,180,181],[681,1,1,181,182],[684,1,1,182,183],[685,1,1,183,184],[698,1,1,184,185],[701,1,1,185,186],[704,2,1,186,187],[706,1,1,187,188],[710,1,1,188,189],[719,2,2,189,191],[727,1,1,191,192],[730,1,1,192,193],[736,1,1,193,194],[737,1,1,194,195],[738,2,2,195,197],[744,1,1,197,198]]],[23,5,5,198,203,[[746,1,1,198,199],[757,1,1,199,200],[758,1,1,200,201],[762,1,1,201,202],[782,1,1,202,203]]],[24,3,3,203,206,[[797,1,1,203,204],[798,1,1,204,205],[799,1,1,205,206]]],[25,22,16,206,222,[[802,4,1,206,207],[803,2,2,207,209],[804,1,1,209,210],[807,1,1,210,211],[817,1,1,211,212],[825,2,2,212,214],[826,1,1,214,215],[830,2,1,215,216],[833,2,2,216,218],[835,4,2,218,220],[838,1,1,220,221],[844,1,1,221,222]]],[29,1,1,222,223,[[880,1,1,222,223]]],[33,2,2,223,225,[[900,2,2,223,225]]],[34,2,2,225,227,[[905,2,2,225,227]]],[37,2,2,227,229,[[924,2,2,227,229]]],[38,1,1,229,230,[[928,1,1,229,230]]]],[192,428,459,623,796,860,974,1239,1314,1483,1506,1584,1626,1814,1827,2101,2158,2187,2221,2356,2401,2403,2617,2738,2940,2941,3018,3020,3039,3064,3125,3128,3136,3139,3364,4330,4400,4403,4407,4408,4943,4966,5141,5214,5218,5232,5427,5556,5646,5667,5668,5676,5684,5793,5813,5834,5854,5906,5908,5913,5919,5928,5949,6042,6088,6196,6515,6516,6592,6609,6614,6616,6638,6650,6724,7045,7249,7521,7624,7832,7842,7885,7888,7902,7903,8067,8115,8124,8132,8230,8240,8267,8381,8405,8406,8407,8535,8600,8612,8636,8641,8775,8881,9224,9230,9272,9418,9585,9630,9640,9706,9791,9892,10127,11145,11242,11521,11916,12532,12820,12898,13133,13180,13284,13287,13430,13508,13547,13569,13593,13661,13849,14018,14036,14127,14151,14156,14220,14266,14285,14339,14449,14506,14527,14628,14768,14879,14882,14923,15022,15407,15449,15504,15624,15787,15837,15856,15957,15999,16003,16084,16091,16158,16415,16416,16478,16481,16516,16517,16522,16553,16558,16568,16586,16927,17130,17132,17147,17398,17601,17660,17723,17771,17802,18031,18084,18136,18167,18279,18453,18454,18659,18703,18799,18807,18834,18835,18923,18990,19282,19303,19406,19917,20323,20333,20388,20471,20493,20494,20526,20574,20787,21073,21079,21089,21194,21250,21261,21331,21332,21407,21579,22394,22687,22699,22773,22787,23072,23080,23141]]],["+",[12,12,[[0,1,1,0,1,[[28,1,1,0,1]]],[2,1,1,1,2,[[110,1,1,1,2]]],[4,1,1,2,3,[[154,1,1,2,3]]],[8,1,1,3,4,[[260,1,1,3,4]]],[12,1,1,4,5,[[365,1,1,4,5]]],[18,4,4,5,9,[[502,1,1,5,6],[576,1,1,6,7],[587,1,1,7,8],[609,1,1,8,9]]],[22,1,1,9,10,[[744,1,1,9,10]]],[24,1,1,10,11,[[798,1,1,10,11]]],[37,1,1,11,12,[[924,1,1,11,12]]]],[796,3364,4943,7888,11145,14266,15504,15787,16158,18923,20333,23080]]],["after",[4,4,[[8,1,1,0,1,[[260,1,1,0,1]]],[9,3,3,1,4,[[281,3,3,1,4]]]],[7903,8405,8406,8407]]],["as",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[974]]],["coming",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[860]]],["endure",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[974]]],["feet",[150,142,[[0,7,6,0,6,[[17,1,1,0,1],[18,1,1,1,2],[23,2,1,2,3],[42,1,1,3,4],[48,2,2,4,6]]],[1,9,9,6,15,[[52,1,1,6,7],[53,1,1,7,8],[61,1,1,8,9],[73,1,1,9,10],[74,1,1,10,11],[79,2,2,11,13],[86,1,1,13,14],[89,1,1,14,15]]],[2,4,4,15,19,[[97,1,1,15,16],[100,3,3,16,19]]],[3,1,1,19,20,[[136,1,1,19,20]]],[4,4,4,20,24,[[154,1,1,20,21],[163,1,1,21,22],[180,1,1,22,23],[185,1,1,23,24]]],[5,9,8,24,32,[[189,2,2,24,26],[190,3,3,26,29],[195,1,1,29,30],[196,2,1,30,31],[200,1,1,31,32]]],[6,7,6,32,38,[[213,1,1,32,33],[214,3,3,33,36],[215,2,1,36,37],[229,1,1,37,38]]],[8,5,5,38,43,[[237,1,1,38,39],[249,1,1,39,40],[259,1,1,40,41],[260,2,2,41,43]]],[9,10,10,43,53,[[269,1,1,43,44],[270,2,2,44,46],[275,2,2,46,48],[277,1,1,48,49],[285,1,1,49,50],[288,3,3,50,53]]],[10,5,5,53,58,[[292,1,1,53,54],[295,1,1,54,55],[304,2,2,55,57],[305,1,1,57,58]]],[11,6,6,58,64,[[316,2,2,58,60],[318,1,1,60,61],[321,1,1,61,62],[325,1,1,62,63],[333,1,1,63,64]]],[12,1,1,64,65,[[365,1,1,64,65]]],[13,2,2,65,67,[[369,1,1,65,66],[382,1,1,66,67]]],[15,1,1,67,68,[[421,1,1,67,68]]],[16,1,1,68,69,[[433,1,1,68,69]]],[17,8,7,69,76,[[447,1,1,69,70],[448,2,1,70,71],[453,2,2,71,73],[464,1,1,73,74],[465,1,1,74,75],[468,1,1,75,76]]],[18,18,18,76,94,[[485,1,1,76,77],[495,3,3,77,80],[499,1,1,80,81],[508,1,1,81,82],[517,1,1,82,83],[524,1,1,83,84],[533,1,1,84,85],[543,1,1,85,86],[550,1,1,86,87],[582,1,1,87,88],[592,1,1,88,89],[593,1,1,89,90],[596,3,3,90,93],[599,1,1,93,94]]],[19,9,9,94,103,[[628,1,1,94,95],[631,1,1,95,96],[632,1,1,96,97],[633,3,3,97,100],[634,1,1,100,101],[646,1,1,101,102],[653,1,1,102,103]]],[21,1,1,103,104,[[675,1,1,103,104]]],[22,13,13,104,117,[[681,1,1,104,105],[684,1,1,105,106],[685,1,1,106,107],[701,1,1,107,108],[704,1,1,108,109],[706,1,1,109,110],[710,1,1,110,111],[719,1,1,111,112],[727,1,1,112,113],[730,1,1,113,114],[737,1,1,114,115],[738,2,2,115,117]]],[23,4,4,117,121,[[757,1,1,117,118],[758,1,1,118,119],[762,1,1,119,120],[782,1,1,120,121]]],[24,2,2,121,123,[[797,1,1,121,122],[799,1,1,122,123]]],[25,17,13,123,136,[[802,3,1,123,124],[803,2,2,124,126],[804,1,1,126,127],[817,1,1,127,128],[825,2,2,128,130],[826,1,1,130,131],[833,1,1,131,132],[835,4,2,132,134],[838,1,1,134,135],[844,1,1,135,136]]],[33,2,2,136,138,[[900,2,2,136,138]]],[34,2,2,138,140,[[905,2,2,138,140]]],[37,1,1,140,141,[[924,1,1,140,141]]],[38,1,1,141,142,[[928,1,1,141,142]]]],[428,459,623,1314,1483,1506,1584,1626,1827,2187,2221,2401,2403,2617,2738,2941,3018,3020,3039,4330,4966,5232,5668,5813,5906,5908,5913,5919,5928,6042,6088,6196,6592,6609,6614,6616,6650,7045,7249,7521,7842,7885,7902,8115,8124,8132,8230,8240,8267,8535,8612,8636,8641,8775,8881,9224,9230,9272,9630,9640,9706,9791,9892,10127,11145,11242,11521,12532,12820,13133,13180,13284,13287,13547,13569,13661,14018,14127,14151,14156,14220,14339,14527,14628,14768,14882,15022,15624,15837,15856,15957,15999,16003,16091,16416,16516,16522,16553,16558,16568,16586,16927,17147,17601,17723,17771,17802,18084,18136,18167,18279,18454,18659,18703,18807,18834,18835,19282,19303,19406,19917,20323,20388,20471,20493,20494,20526,20787,21073,21079,21089,21250,21331,21332,21407,21579,22687,22699,22773,22787,23072,23141]]],["follow",[3,3,[[1,1,1,0,1,[[60,1,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]],[10,1,1,2,3,[[310,1,1,2,3]]]],[1814,6724,9418]]],["followed",[1,1,[[11,1,1,0,1,[[315,1,1,0,1]]]],[9585]]],["foot",[63,60,[[0,2,2,0,2,[[7,1,1,0,1],[40,1,1,1,2]]],[1,3,2,2,4,[[70,2,1,2,3],[78,1,1,3,4]]],[2,6,6,4,10,[[97,1,1,4,5],[102,1,1,5,6],[103,4,4,6,10]]],[3,1,1,10,11,[[138,1,1,10,11]]],[4,11,10,11,21,[[160,1,1,11,12],[163,1,1,12,13],[171,2,1,13,14],[177,1,1,14,15],[180,3,3,15,18],[181,1,1,18,19],[184,1,1,19,20],[185,1,1,20,21]]],[5,2,2,21,23,[[187,1,1,21,22],[191,1,1,22,23]]],[6,1,1,23,24,[[215,1,1,23,24]]],[9,3,3,24,27,[[268,1,1,24,25],[280,1,1,25,26],[287,1,1,26,27]]],[13,1,1,27,28,[[399,1,1,27,28]]],[17,5,5,28,33,[[437,1,1,28,29],[458,1,1,29,30],[463,1,1,30,31],[466,1,1,31,32],[474,1,1,32,33]]],[18,9,9,33,42,[[486,1,1,33,34],[503,1,1,34,35],[513,1,1,35,36],[515,1,1,36,37],[543,1,1,37,38],[545,1,1,38,39],[568,1,1,39,40],[571,1,1,40,41],[598,1,1,41,42]]],[19,6,6,42,48,[[628,1,1,42,43],[630,2,2,43,45],[631,1,1,45,46],[652,2,2,46,48]]],[20,1,1,48,49,[[663,1,1,48,49]]],[22,5,5,49,54,[[679,1,1,49,50],[698,1,1,50,51],[704,1,1,51,52],[719,1,1,52,53],[736,1,1,53,54]]],[23,1,1,54,55,[[746,1,1,54,55]]],[25,5,4,55,59,[[802,1,1,55,56],[807,1,1,56,57],[830,2,1,57,58],[833,1,1,58,59]]],[29,1,1,59,60,[[880,1,1,59,60]]]],[192,1239,2101,2356,2940,3064,3125,3128,3136,3139,4400,5141,5218,5427,5556,5646,5667,5676,5684,5793,5834,5854,5949,6638,8067,8381,8600,11916,12898,13430,13508,13593,13849,14036,14285,14449,14506,14879,14923,15407,15449,16084,16415,16478,16481,16517,17130,17132,17398,17660,18031,18136,18453,18799,18990,20471,20574,21194,21261,22394]]],["haunt",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7832]]],["legs",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7624]]],["possession",[1,1,[[4,1,1,0,1,[[163,1,1,0,1]]]],[5214]]],["times",[4,4,[[1,1,1,0,1,[[72,1,1,0,1]]],[3,3,3,1,4,[[138,3,3,1,4]]]],[2158,4403,4407,4408]]],["toes",[2,2,[[6,2,2,0,2,[[211,2,2,0,2]]]],[6515,6516]]]]},{"k":"H7273","v":[["*",[12,12,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[6,1,1,2,3,[[230,1,1,2,3]]],[8,2,2,3,5,[[239,1,1,3,4],[250,1,1,4,5]]],[9,2,2,5,7,[[274,1,1,5,6],[276,1,1,6,7]]],[10,1,1,7,8,[[310,1,1,7,8]]],[11,1,1,8,9,[[325,1,1,8,9]]],[12,2,2,9,11,[[355,1,1,9,10],[356,1,1,10,11]]],[23,1,1,11,12,[[756,1,1,11,12]]]],[1853,4045,7056,7307,7564,8213,8246,9437,9878,10894,10925,19254]]],["+",[4,4,[[6,1,1,0,1,[[230,1,1,0,1]]],[9,1,1,1,2,[[274,1,1,1,2]]],[12,2,2,2,4,[[355,1,1,2,3],[356,1,1,3,4]]]],[7056,8213,10894,10925]]],["foot",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1853]]],["footmen",[7,7,[[3,1,1,0,1,[[127,1,1,0,1]]],[8,2,2,1,3,[[239,1,1,1,2],[250,1,1,2,3]]],[9,1,1,3,4,[[276,1,1,3,4]]],[10,1,1,4,5,[[310,1,1,4,5]]],[11,1,1,5,6,[[325,1,1,5,6]]],[23,1,1,6,7,[[756,1,1,6,7]]]],[4045,7307,7564,8246,9437,9878,19254]]]]},{"k":"H7274","v":[["+",[2,2,[[9,2,2,0,2,[[283,1,1,0,1],[285,1,1,1,2]]]],[8476,8542]]]]},{"k":"H7275","v":[["*",[16,15,[[2,6,5,0,5,[[109,2,2,0,2],[113,4,3,2,5]]],[3,3,3,5,8,[[130,1,1,5,6],[131,2,2,6,8]]],[4,1,1,8,9,[[173,1,1,8,9]]],[5,1,1,9,10,[[193,1,1,9,10]]],[10,1,1,10,11,[[302,1,1,10,11]]],[13,2,2,11,13,[[376,1,1,11,12],[390,1,1,12,13]]],[25,2,2,13,15,[[817,1,1,13,14],[824,1,1,14,15]]]],[3320,3345,3460,3462,3469,4118,4188,4189,5468,6001,9169,11413,11698,20802,21054]]],["+",[3,2,[[2,2,1,0,1,[[113,2,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[3462,21054]]],["stone",[8,8,[[2,4,4,0,4,[[109,2,2,0,2],[113,2,2,2,4]]],[3,2,2,4,6,[[130,1,1,4,5],[131,1,1,5,6]]],[4,1,1,6,7,[[173,1,1,6,7]]],[25,1,1,7,8,[[817,1,1,7,8]]]],[3320,3345,3460,3469,4118,4188,5468,20802]]],["stoned",[5,5,[[3,1,1,0,1,[[131,1,1,0,1]]],[5,1,1,1,2,[[193,1,1,1,2]]],[10,1,1,2,3,[[302,1,1,2,3]]],[13,2,2,3,5,[[376,1,1,3,4],[390,1,1,4,5]]]],[4189,6001,9169,11413,11698]]]]},{"k":"H7276","v":[["Regem",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10353]]]]},{"k":"H7277","v":[["council",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14927]]]]},{"k":"H7278","v":[["Regemmelech",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22964]]]]},{"k":"H7279","v":[["murmured",[3,3,[[4,1,1,0,1,[[153,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]],[22,1,1,2,3,[[707,1,1,2,3]]]],[4919,15676,18217]]]]},{"k":"H7280","v":[["*",[13,13,[[4,1,1,0,1,[[180,1,1,0,1]]],[17,2,2,1,3,[[442,1,1,1,2],[461,1,1,2,3]]],[19,1,1,3,4,[[639,1,1,3,4]]],[22,3,3,4,7,[[712,1,1,4,5],[729,2,2,5,7]]],[23,6,6,7,13,[[775,2,2,7,9],[791,1,1,9,10],[793,1,1,10,11],[794,2,2,11,13]]]],[5676,13013,13479,16738,18317,18677,18688,19693,19726,20079,20146,20200,20210]]],["+",[2,2,[[4,1,1,0,1,[[180,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]]],[5676,20200]]],["broken",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13013]]],["divided",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18688]]],["divideth",[2,2,[[17,1,1,0,1,[[461,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[13479,19726]]],["moment",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16738]]],["rest",[4,4,[[22,2,2,0,2,[[712,1,1,0,1],[729,1,1,1,2]]],[23,2,2,2,4,[[775,1,1,2,3],[791,1,1,3,4]]]],[18317,18677,19693,20079]]],["suddenly",[2,2,[[23,2,2,0,2,[[793,1,1,0,1],[794,1,1,1,2]]]],[20146,20210]]]]},{"k":"H7281","v":[["*",[22,22,[[1,1,1,0,1,[[82,1,1,0,1]]],[3,2,2,1,3,[[132,2,2,1,3]]],[14,1,1,3,4,[[411,1,1,3,4]]],[17,4,4,4,8,[[442,1,1,4,5],[455,1,1,5,6],[456,1,1,6,7],[469,1,1,7,8]]],[18,3,3,8,11,[[483,1,1,8,9],[507,1,1,9,10],[550,1,1,10,11]]],[22,5,5,11,16,[[704,1,1,11,12],[705,1,1,12,13],[725,1,1,13,14],[732,2,2,14,16]]],[23,3,3,16,19,[[748,1,1,16,17],[762,2,2,17,19]]],[24,1,1,19,20,[[800,1,1,19,20]]],[25,2,2,20,22,[[827,1,1,20,21],[833,1,1,21,22]]]],[2478,4215,4239,12245,13026,13331,13368,13703,13995,14324,15039,18150,18154,18608,18730,18731,19047,19391,19393,20426,21116,21258]]],["instant",[2,2,[[23,2,2,0,2,[[762,2,2,0,2]]]],[19391,19393]]],["moment",[18,18,[[1,1,1,0,1,[[82,1,1,0,1]]],[3,2,2,1,3,[[132,2,2,1,3]]],[17,4,4,3,7,[[442,1,1,3,4],[455,1,1,4,5],[456,1,1,5,6],[469,1,1,6,7]]],[18,2,2,7,9,[[507,1,1,7,8],[550,1,1,8,9]]],[22,5,5,9,14,[[704,1,1,9,10],[705,1,1,10,11],[725,1,1,11,12],[732,2,2,12,14]]],[23,1,1,14,15,[[748,1,1,14,15]]],[24,1,1,15,16,[[800,1,1,15,16]]],[25,2,2,16,18,[[827,1,1,16,17],[833,1,1,17,18]]]],[2478,4215,4239,13026,13331,13368,13703,14324,15039,18150,18154,18608,18730,18731,19047,20426,21116,21258]]],["space",[1,1,[[14,1,1,0,1,[[411,1,1,0,1]]]],[12245]]],["suddenly",[1,1,[[18,1,1,0,1,[[483,1,1,0,1]]]],[13995]]]]},{"k":"H7282","v":[["quiet",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14430]]]]},{"k":"H7283","v":[["rage",[1,1,[[18,1,1,0,1,[[479,1,1,0,1]]]],[13946]]]]},{"k":"H7284","v":[["*",[3,3,[[26,3,3,0,3,[[855,3,3,0,3]]]],[21911,21916,21920]]],["assembled",[2,2,[[26,2,2,0,2,[[855,2,2,0,2]]]],[21916,21920]]],["together",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21911]]]]},{"k":"H7285","v":[["*",[2,2,[[18,2,2,0,2,[[532,1,1,0,1],[541,1,1,1,2]]]],[14746,14852]]],["+",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14852]]],["company",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14746]]]]},{"k":"H7286","v":[["*",[4,4,[[6,1,1,0,1,[[229,1,1,0,1]]],[10,1,1,1,2,[[296,1,1,1,2]]],[18,1,1,2,3,[[621,1,1,2,3]]],[22,1,1,3,4,[[723,1,1,3,4]]]],[7035,8928,16307,18562]]],["+",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8928]]],["spent",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7035]]],["subdue",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18562]]],["subdueth",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16307]]]]},{"k":"H7287","v":[["*",[27,25,[[0,2,2,0,2,[[0,2,2,0,2]]],[2,4,4,2,6,[[114,3,3,2,5],[115,1,1,5,6]]],[3,1,1,6,7,[[140,1,1,6,7]]],[6,4,2,7,9,[[215,2,1,7,8],[224,2,1,8,9]]],[10,3,3,9,12,[[294,1,1,9,10],[295,1,1,10,11],[299,1,1,11,12]]],[13,1,1,12,13,[[374,1,1,12,13]]],[15,1,1,13,14,[[421,1,1,13,14]]],[18,4,4,14,18,[[526,1,1,14,15],[545,1,1,15,16],[549,1,1,16,17],[587,1,1,17,18]]],[22,3,3,18,21,[[692,2,2,18,20],[719,1,1,20,21]]],[23,1,1,21,22,[[749,1,1,21,22]]],[24,1,1,22,23,[[797,1,1,22,23]]],[25,2,2,23,25,[[830,1,1,23,24],[835,1,1,24,25]]]],[25,27,3512,3515,3522,3541,4465,6636,6918,8868,8894,9074,11356,12539,14662,14927,15008,15788,17930,17934,18453,19089,20323,21198,21317]]],["+",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3522]]],["against",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20323]]],["dominion",[9,8,[[0,2,2,0,2,[[0,2,2,0,2]]],[3,1,1,2,3,[[140,1,1,2,3]]],[6,2,1,3,4,[[215,2,1,3,4]]],[10,1,1,4,5,[[294,1,1,4,5]]],[15,1,1,5,6,[[421,1,1,5,6]]],[18,2,2,6,8,[[526,1,1,6,7],[549,1,1,7,8]]]],[25,27,4465,6636,8868,12539,14662,15008]]],["over",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17930]]],["reign",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3541]]],["rule",[8,8,[[2,2,2,0,2,[[114,2,2,0,2]]],[10,1,1,2,3,[[299,1,1,2,3]]],[13,1,1,3,4,[[374,1,1,3,4]]],[18,1,1,4,5,[[587,1,1,4,5]]],[22,1,1,5,6,[[719,1,1,5,6]]],[23,1,1,6,7,[[749,1,1,6,7]]],[25,1,1,7,8,[[830,1,1,7,8]]]],[3512,3515,9074,11356,15788,18453,19089,21198]]],["ruled",[3,3,[[10,1,1,0,1,[[295,1,1,0,1]]],[22,1,1,1,2,[[692,1,1,1,2]]],[25,1,1,2,3,[[835,1,1,2,3]]]],[8894,17934,21317]]],["ruler",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14927]]],["taken",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6918]]],["took",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6918]]]]},{"k":"H7288","v":[["Raddai",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10320]]]]},{"k":"H7289","v":[["*",[2,2,[[21,1,1,0,1,[[675,1,1,0,1]]],[22,1,1,1,2,[[681,1,1,1,2]]]],[17605,17730]]],["vails",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17730]]],["veil",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17605]]]]},{"k":"H7290","v":[["*",[7,7,[[6,1,1,0,1,[[214,1,1,0,1]]],[18,1,1,1,2,[[553,1,1,1,2]]],[19,1,1,2,3,[[637,1,1,2,3]]],[26,2,2,3,5,[[857,1,1,3,4],[859,1,1,4,5]]],[31,2,2,5,7,[[889,2,2,5,7]]]],[6620,15087,16661,21979,22024,22536,22537]]],["asleep",[2,2,[[6,1,1,0,1,[[214,1,1,0,1]]],[31,1,1,1,2,[[889,1,1,1,2]]]],[6620,22536]]],["sleep",[3,3,[[18,1,1,0,1,[[553,1,1,0,1]]],[26,2,2,1,3,[[857,1,1,1,2],[859,1,1,2,3]]]],[15087,21979,22024]]],["sleeper",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22537]]],["sleepeth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16661]]]]},{"k":"H7291","v":[["*",[143,135,[[0,5,5,0,5,[[13,2,2,0,2],[30,1,1,2,3],[34,1,1,3,4],[43,1,1,4,5]]],[1,5,5,5,10,[[63,4,4,5,9],[64,1,1,9,10]]],[2,7,5,10,15,[[115,7,5,10,15]]],[4,8,8,15,23,[[153,1,1,15,16],[163,1,1,16,17],[168,1,1,17,18],[171,1,1,18,19],[180,2,2,19,21],[182,1,1,21,22],[184,1,1,22,23]]],[5,19,15,23,38,[[188,7,4,23,27],[193,1,1,27,28],[194,5,4,28,32],[196,2,2,32,34],[197,1,1,34,35],[206,1,1,35,36],[209,1,1,36,37],[210,1,1,37,38]]],[6,11,11,38,49,[[211,1,1,38,39],[213,1,1,39,40],[214,2,2,40,42],[217,2,2,42,44],[218,3,3,44,47],[219,1,1,47,48],[230,1,1,48,49]]],[8,11,10,49,59,[[242,1,1,49,50],[252,1,1,50,51],[258,2,2,51,53],[259,1,1,53,54],[260,1,1,54,55],[261,2,2,55,57],[265,3,2,57,59]]],[9,11,11,59,70,[[268,3,3,59,62],[283,1,1,62,63],[284,1,1,63,64],[286,4,4,64,68],[288,1,1,68,69],[290,1,1,69,70]]],[10,1,1,70,71,[[310,1,1,70,71]]],[11,3,3,71,74,[[317,1,1,71,72],[321,1,1,72,73],[337,1,1,73,74]]],[13,2,2,74,76,[[379,1,1,74,75],[380,1,1,75,76]]],[15,1,1,76,77,[[421,1,1,76,77]]],[17,4,4,77,81,[[448,1,1,77,78],[454,2,2,78,80],[465,1,1,80,81]]],[18,20,20,81,101,[[484,2,2,81,83],[495,1,1,83,84],[500,1,1,84,85],[508,1,1,85,86],[511,1,1,86,87],[512,2,2,87,89],[515,1,1,89,90],[546,1,1,90,91],[548,1,1,91,92],[560,1,1,92,93],[586,1,1,93,94],[596,5,5,94,99],[619,1,1,99,100],[620,1,1,100,101]]],[19,8,8,101,109,[[638,1,1,101,102],[639,1,1,102,103],[640,1,1,103,104],[642,1,1,104,105],[646,1,1,105,106],[648,1,1,106,107],[655,2,2,107,109]]],[20,1,1,109,110,[[661,1,1,109,110]]],[22,6,6,110,116,[[679,1,1,110,111],[683,1,1,111,112],[695,1,1,112,113],[708,1,1,113,114],[719,1,1,114,115],[729,1,1,115,116]]],[23,6,6,116,122,[[759,1,1,116,117],[761,1,1,117,118],[764,1,1,118,119],[773,1,1,119,120],[783,1,1,120,121],[796,1,1,121,122]]],[24,6,6,122,128,[[797,2,2,122,124],[799,2,2,124,126],[800,1,1,126,127],[801,1,1,127,128]]],[25,2,1,128,129,[[836,2,1,128,129]]],[27,4,4,129,133,[[863,1,1,129,130],[867,1,1,130,131],[869,1,1,131,132],[873,1,1,132,133]]],[29,1,1,133,134,[[879,1,1,133,134]]],[33,1,1,134,135,[[900,1,1,134,135]]]],[350,351,896,1016,1328,1893,1897,1898,1912,1929,3531,3532,3541,3560,3561,4936,5212,5362,5412,5633,5656,5715,5788,5874,5876,5885,5891,5981,6018,6019,6022,6026,6074,6083,6115,6377,6470,6482,6515,6596,6615,6621,6717,6719,6723,6724,6731,6794,7097,7363,7670,7835,7838,7853,7890,7923,7925,7986,7988,8068,8073,8077,8450,8494,8560,8561,8564,8567,8640,8705,9428,9668,9783,10227,11472,11488,12522,13178,13319,13325,13572,13996,14000,14155,14241,14346,14402,14413,14416,14510,14961,14987,15256,15771,15982,15984,16048,16055,16059,16292,16296,16707,16730,16768,16816,16932,17005,17197,17215,17374,17677,17750,17996,18233,18454,18674,19330,19375,19433,19653,19928,20284,20313,20316,20397,20420,20439,20447,21350,22112,22170,22197,22253,22375,22692]]],["+",[14,14,[[2,2,2,0,2,[[115,2,2,0,2]]],[4,1,1,2,3,[[171,1,1,2,3]]],[6,2,2,3,5,[[214,1,1,3,4],[217,1,1,4,5]]],[8,3,3,5,8,[[242,1,1,5,6],[252,1,1,6,7],[258,1,1,7,8]]],[9,1,1,8,9,[[284,1,1,8,9]]],[18,2,2,9,11,[[508,1,1,9,10],[619,1,1,10,11]]],[23,2,2,11,13,[[759,1,1,11,12],[773,1,1,12,13]]],[27,1,1,13,14,[[863,1,1,13,14]]]],[3531,3532,5412,6621,6719,7363,7670,7838,8494,14346,16292,19330,19653,22112]]],["Follow",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6596]]],["Persecute",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20420]]],["Pursue",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[7986]]],["after",[5,5,[[18,1,1,0,1,[[596,1,1,0,1]]],[19,1,1,1,2,[[642,1,1,1,2]]],[22,2,2,2,4,[[679,1,1,2,3],[729,1,1,3,4]]],[27,1,1,4,5,[[873,1,1,4,5]]]],[16048,16816,17677,18674,22253]]],["chase",[4,4,[[2,2,2,0,2,[[115,2,2,0,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[5,1,1,3,4,[[209,1,1,3,4]]]],[3532,3560,5788,6470]]],["chased",[8,8,[[4,1,1,0,1,[[153,1,1,0,1]]],[5,4,4,1,5,[[193,1,1,1,2],[194,1,1,2,3],[196,1,1,3,4],[197,1,1,4,5]]],[6,2,2,5,7,[[219,1,1,5,6],[230,1,1,6,7]]],[22,1,1,7,8,[[695,1,1,7,8]]]],[4936,5981,6026,6074,6115,6794,7097,17996]]],["follow",[6,6,[[0,1,1,0,1,[[43,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[4,1,1,2,3,[[168,1,1,2,3]]],[18,2,2,3,5,[[500,1,1,3,4],[515,1,1,4,5]]],[22,1,1,5,6,[[683,1,1,5,6]]]],[1328,1893,5362,14241,14510,17750]]],["followed",[2,2,[[11,2,2,0,2,[[317,1,1,0,1],[321,1,1,1,2]]]],[9668,9783]]],["followeth",[3,3,[[19,3,3,0,3,[[639,1,1,0,1],[648,1,1,1,2],[655,1,1,2,3]]]],[16730,17005,17215]]],["hunt",[1,1,[[8,1,1,0,1,[[261,1,1,0,1]]]],[7925]]],["on",[1,1,[[27,1,1,0,1,[[867,1,1,0,1]]]],[22170]]],["past",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17374]]],["persecute",[12,12,[[17,2,2,0,2,[[454,2,2,0,2]]],[18,9,9,2,11,[[484,2,2,2,4],[512,2,2,4,6],[546,1,1,6,7],[548,1,1,7,8],[560,1,1,8,9],[596,2,2,9,11]]],[23,1,1,11,12,[[761,1,1,11,12]]]],[13319,13325,13996,14000,14413,14416,14961,14987,15256,15982,15984,19375]]],["persecuted",[5,5,[[4,1,1,0,1,[[182,1,1,0,1]]],[18,3,3,1,4,[[586,1,1,1,2],[596,1,1,2,3],[620,1,1,3,4]]],[24,1,1,4,5,[[799,1,1,4,5]]]],[5715,15771,16059,16296,20397]]],["persecution",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20447]]],["persecutors",[5,5,[[15,1,1,0,1,[[421,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[23,1,1,2,3,[[764,1,1,2,3]]],[24,2,2,3,5,[[797,1,1,3,4],[800,1,1,4,5]]]],[12522,16055,19433,20313,20439]]],["pursue",[26,25,[[0,1,1,0,1,[[34,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[4,2,2,2,4,[[180,2,2,2,4]]],[5,4,4,4,8,[[188,1,1,4,5],[194,1,1,5,6],[196,1,1,6,7],[206,1,1,7,8]]],[8,4,4,8,12,[[259,1,1,8,9],[260,1,1,9,10],[261,1,1,10,11],[265,1,1,11,12]]],[9,5,5,12,17,[[283,1,1,12,13],[286,3,3,13,16],[290,1,1,16,17]]],[17,2,2,17,19,[[448,1,1,17,18],[465,1,1,18,19]]],[18,1,1,19,20,[[511,1,1,19,20]]],[22,1,1,20,21,[[708,1,1,20,21]]],[25,2,1,21,22,[[836,2,1,21,22]]],[27,1,1,22,23,[[869,1,1,22,23]]],[29,1,1,23,24,[[879,1,1,23,24]]],[33,1,1,24,25,[[900,1,1,24,25]]]],[1016,1929,5633,5656,5874,6018,6083,6377,7853,7890,7923,7986,8450,8560,8561,8567,8705,13178,13572,14402,18233,21350,22197,22375,22692]]],["pursued",[31,30,[[0,3,3,0,3,[[13,2,2,0,2],[30,1,1,2,3]]],[1,3,3,3,6,[[63,3,3,3,6]]],[4,1,1,6,7,[[163,1,1,6,7]]],[5,5,4,7,11,[[188,2,1,7,8],[194,2,2,8,10],[210,1,1,10,11]]],[6,4,4,11,15,[[211,1,1,11,12],[214,1,1,12,13],[217,1,1,13,14],[218,1,1,14,15]]],[8,2,2,15,17,[[258,1,1,15,16],[265,1,1,16,17]]],[9,5,5,17,22,[[268,3,3,17,20],[286,1,1,20,21],[288,1,1,21,22]]],[10,1,1,22,23,[[310,1,1,22,23]]],[11,1,1,23,24,[[337,1,1,23,24]]],[13,2,2,24,26,[[379,1,1,24,25],[380,1,1,25,26]]],[18,1,1,26,27,[[495,1,1,26,27]]],[22,1,1,27,28,[[719,1,1,27,28]]],[23,2,2,28,30,[[783,1,1,28,29],[796,1,1,29,30]]]],[350,351,896,1897,1898,1912,5212,5876,6018,6019,6482,6515,6615,6717,6731,7835,7988,8068,8073,8077,8564,8640,9428,10227,11472,11488,14155,18454,19928,20284]]],["pursuer",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20316]]],["pursuers",[5,3,[[5,5,3,0,3,[[188,4,2,0,2],[194,1,1,2,3]]]],[5885,5891,6022]]],["pursueth",[7,7,[[2,3,3,0,3,[[115,3,3,0,3]]],[19,4,4,3,7,[[638,1,1,3,4],[640,1,1,4,5],[646,1,1,5,6],[655,1,1,6,7]]]],[3541,3560,3561,16707,16768,16932,17197]]],["pursuing",[2,2,[[6,2,2,0,2,[[218,2,2,0,2]]]],[6723,6724]]]]},{"k":"H7292","v":[["*",[4,4,[[18,1,1,0,1,[[615,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]],[21,1,1,2,3,[[676,1,1,2,3]]],[22,1,1,3,4,[[681,1,1,3,4]]]],[16234,16543,17619,17712]]],["overcome",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17619]]],["proudly",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17712]]],["strengthenedst",[1,1,[[18,1,1,0,1,[[615,1,1,0,1]]]],[16234]]],["sure",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16543]]]]},{"k":"H7293","v":[["*",[3,3,[[17,1,1,0,1,[[461,1,1,0,1]]],[22,2,2,1,3,[[708,1,1,1,2],[729,1,1,2,3]]]],[13479,18224,18682]]],["Rahab",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18682]]],["proud",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13479]]],["strength",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18224]]]]},{"k":"H7294","v":[["Rahab",[2,2,[[18,2,2,0,2,[[564,1,1,0,1],[566,1,1,1,2]]]],[15305,15336]]]]},{"k":"H7295","v":[["proud",[2,2,[[17,1,1,0,1,[[444,1,1,0,1]]],[18,1,1,1,2,[[517,1,1,1,2]]]],[13064,14529]]]]},{"k":"H7296","v":[["strength",[1,1,[[18,1,1,0,1,[[567,1,1,0,1]]]],[15388]]]]},{"k":"H7297","v":[["afraid",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18541]]]]},{"k":"H7298","v":[["*",[4,4,[[0,2,2,0,2,[[29,2,2,0,2]]],[1,1,1,2,3,[[51,1,1,2,3]]],[21,1,1,3,4,[[677,1,1,3,4]]]],[868,871,1570,17632]]],["galleries",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17632]]],["gutters",[2,2,[[0,2,2,0,2,[[29,2,2,0,2]]]],[868,871]]],["troughs",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1570]]]]},{"k":"H7299","v":[["form",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21789,21832]]]]},{"k":"H7300","v":[["*",[4,4,[[0,1,1,0,1,[[26,1,1,0,1]]],[18,1,1,1,2,[[532,1,1,1,2]]],[23,1,1,2,3,[[746,1,1,2,3]]],[27,1,1,3,4,[[872,1,1,3,4]]]],[767,14734,18996,22252]]],["dominion",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[767]]],["lords",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18996]]],["mourn",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14734]]],["ruleth",[1,1,[[27,1,1,0,1,[[872,1,1,0,1]]]],[22252]]]]},{"k":"H7301","v":[["*",[14,14,[[18,2,2,0,2,[[513,1,1,0,1],[542,1,1,1,2]]],[19,3,3,2,5,[[632,1,1,2,3],[634,1,1,3,4],[638,1,1,4,5]]],[22,5,5,5,10,[[694,1,1,5,6],[712,2,2,6,8],[721,1,1,8,9],[733,1,1,9,10]]],[23,3,3,10,13,[[775,2,2,10,12],[790,1,1,12,13]]],[24,1,1,13,14,[[799,1,1,13,14]]]],[14446,14870,16536,16593,16713,17978,18308,18310,18529,18750,19705,19716,20055,20369]]],["+",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18750]]],["abundantly",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14870]]],["bathed",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18308]]],["drunk",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20055]]],["drunken",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20369]]],["fill",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16593]]],["filled",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18529]]],["satiate",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19705]]],["satiated",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19716]]],["satisfied",[1,1,[[18,1,1,0,1,[[513,1,1,0,1]]]],[14446]]],["satisfy",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16536]]],["soaked",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18310]]],["water",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17978]]],["watereth",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16713]]]]},{"k":"H7302","v":[["*",[3,3,[[4,1,1,0,1,[[181,1,1,0,1]]],[22,1,1,1,2,[[736,1,1,1,2]]],[23,1,1,2,3,[[775,1,1,2,3]]]],[5698,18797,19703]]],["drunkenness",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5698]]],["watered",[2,2,[[22,1,1,0,1,[[736,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[18797,19703]]]]},{"k":"H7303","v":[["Rohgah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10569]]]]},{"k":"H7304","v":[["*",[3,3,[[8,1,1,0,1,[[251,1,1,0,1]]],[17,1,1,1,2,[[467,1,1,1,2]]],[23,1,1,2,3,[[766,1,1,2,3]]]],[7618,13648,19468]]],["large",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19468]]],["refreshed",[2,2,[[8,1,1,0,1,[[251,1,1,0,1]]],[17,1,1,1,2,[[467,1,1,1,2]]]],[7618,13648]]]]},{"k":"H7305","v":[["*",[2,2,[[0,1,1,0,1,[[31,1,1,0,1]]],[16,1,1,1,2,[[429,1,1,1,2]]]],[944,12776]]],["enlargement",[1,1,[[16,1,1,0,1,[[429,1,1,0,1]]]],[12776]]],["space",[1,1,[[0,1,1,0,1,[[31,1,1,0,1]]]],[944]]]]},{"k":"H7306","v":[["*",[11,11,[[0,2,2,0,2,[[7,1,1,0,1],[26,1,1,1,2]]],[1,1,1,2,3,[[79,1,1,2,3]]],[2,1,1,3,4,[[115,1,1,3,4]]],[4,1,1,4,5,[[156,1,1,4,5]]],[6,1,1,5,6,[[226,1,1,5,6]]],[8,1,1,6,7,[[261,1,1,6,7]]],[17,1,1,7,8,[[474,1,1,7,8]]],[18,1,1,8,9,[[592,1,1,8,9]]],[22,1,1,9,10,[[689,1,1,9,10]]],[29,1,1,10,11,[[883,1,1,10,11]]]],[204,754,2420,3555,5032,6958,7924,13859,15836,17887,22444]]],["+",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[754]]],["accept",[1,1,[[8,1,1,0,1,[[261,1,1,0,1]]]],[7924]]],["smell",[5,5,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[4,1,1,2,3,[[156,1,1,2,3]]],[18,1,1,3,4,[[592,1,1,3,4]]],[29,1,1,4,5,[[883,1,1,4,5]]]],[2420,3555,5032,15836,22444]]],["smelled",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[204]]],["smelleth",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13859]]],["toucheth",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6958]]],["understanding",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17887]]]]},{"k":"H7307","v":[["*",[378,348,[[0,11,11,0,11,[[0,1,1,0,1],[2,1,1,1,2],[5,2,2,2,4],[6,2,2,4,6],[7,1,1,6,7],[25,1,1,7,8],[40,2,2,8,10],[44,1,1,10,11]]],[1,11,10,11,21,[[55,1,1,11,12],[59,3,2,12,14],[63,1,1,14,15],[64,2,2,15,17],[77,1,1,17,18],[80,1,1,18,19],[84,2,2,19,21]]],[3,14,12,21,33,[[121,3,2,21,23],[127,6,5,23,28],[130,1,1,28,29],[132,1,1,29,30],[140,1,1,30,31],[143,2,2,31,33]]],[4,2,2,33,35,[[154,1,1,33,34],[186,1,1,34,35]]],[5,2,2,35,37,[[188,1,1,35,36],[191,1,1,36,37]]],[6,10,10,37,47,[[213,1,1,37,38],[216,1,1,38,39],[218,1,1,39,40],[219,1,1,40,41],[221,1,1,41,42],[223,1,1,42,43],[224,2,2,43,45],[225,2,2,45,47]]],[8,16,14,47,61,[[236,1,1,47,48],[245,2,2,48,50],[246,1,1,50,51],[251,7,5,51,56],[253,1,1,56,57],[254,3,3,57,60],[265,1,1,60,61]]],[9,3,3,61,64,[[288,2,2,61,63],[289,1,1,63,64]]],[10,11,9,64,73,[[300,1,1,64,65],[308,2,2,65,67],[309,3,1,67,68],[311,1,1,68,69],[312,4,4,69,73]]],[11,5,5,73,78,[[314,3,3,73,76],[315,1,1,76,77],[331,1,1,77,78]]],[12,5,4,78,82,[[342,2,1,78,79],[346,1,1,79,80],[349,1,1,80,81],[365,1,1,81,82]]],[13,10,10,82,92,[[375,1,1,82,83],[381,1,1,83,84],[384,4,4,84,88],[386,1,1,88,89],[387,1,1,89,90],[390,1,1,90,91],[402,1,1,91,92]]],[14,2,2,92,94,[[403,2,2,92,94]]],[15,2,2,94,96,[[421,2,2,94,96]]],[17,31,31,96,127,[[436,1,1,96,97],[439,2,2,97,99],[441,2,2,99,101],[442,2,2,101,103],[443,1,1,103,104],[444,1,1,104,105],[445,1,1,105,106],[447,1,1,106,107],[450,3,3,107,110],[451,1,1,110,111],[452,1,1,111,112],[454,1,1,112,113],[455,1,1,113,114],[456,2,2,114,116],[461,1,1,116,117],[462,1,1,117,118],[463,1,1,118,119],[465,2,2,119,121],[467,2,2,121,123],[468,1,1,123,124],[469,1,1,124,125],[472,1,1,125,126],[476,1,1,126,127]]],[18,39,39,127,166,[[478,1,1,127,128],[488,1,1,128,129],[495,3,3,129,132],[508,1,1,132,133],[509,1,1,133,134],[510,1,1,134,135],[511,1,1,135,136],[512,1,1,136,137],[525,1,1,137,138],[528,4,4,138,142],[532,1,1,142,143],[553,1,1,143,144],[554,2,2,144,146],[555,2,2,146,148],[560,1,1,148,149],[580,1,1,149,150],[581,4,4,150,154],[583,1,1,154,155],[584,1,1,155,156],[612,2,2,156,158],[616,1,1,158,159],[619,1,1,159,160],[620,3,3,160,163],[623,1,1,163,164],[624,1,1,164,165],[625,1,1,165,166]]],[19,21,20,166,186,[[628,1,1,166,167],[638,2,2,167,169],[641,1,1,169,170],[642,2,2,170,172],[643,4,4,172,176],[644,2,2,176,178],[645,2,1,178,179],[652,3,3,179,182],[654,1,1,182,183],[656,2,2,183,185],[657,1,1,185,186]]],[20,24,20,186,206,[[659,4,3,186,189],[660,3,3,189,192],[661,3,2,192,194],[662,3,3,194,197],[663,1,1,197,198],[664,1,1,198,199],[665,3,2,199,201],[666,2,1,201,202],[668,1,1,202,203],[669,2,2,203,205],[670,1,1,205,206]]],[22,51,46,206,252,[[682,2,1,206,207],[685,1,1,207,208],[689,6,3,208,211],[695,1,1,211,212],[697,2,2,212,214],[703,1,1,214,215],[704,2,2,215,217],[705,1,1,217,218],[706,1,1,218,219],[707,2,2,219,221],[708,2,2,221,223],[709,1,1,223,224],[710,2,2,224,226],[711,1,1,226,227],[712,1,1,227,228],[715,1,1,228,229],[716,1,1,229,230],[718,2,2,230,232],[719,2,2,232,234],[720,2,2,234,236],[722,1,1,236,237],[726,1,1,237,238],[732,1,1,238,239],[735,4,3,239,242],[737,2,2,242,244],[739,2,2,244,246],[741,3,3,246,249],[742,1,1,249,250],[743,1,1,250,251],[744,1,1,251,252]]],[23,18,17,252,269,[[746,1,1,252,253],[748,2,2,253,255],[749,1,1,255,256],[754,2,2,256,258],[757,1,1,258,259],[758,1,1,259,260],[762,1,1,260,261],[766,1,1,261,262],[793,3,2,262,264],[795,4,4,264,268],[796,1,1,268,269]]],[24,1,1,269,270,[[800,1,1,269,270]]],[25,52,44,270,314,[[802,6,4,270,274],[803,1,1,274,275],[804,4,3,275,278],[806,3,3,278,281],[809,1,1,281,282],[811,1,1,282,283],[812,6,4,283,287],[813,1,1,287,288],[814,3,3,288,291],[818,2,2,291,293],[819,1,1,293,294],[820,1,1,294,295],[821,1,1,295,296],[822,1,1,296,297],[828,1,1,297,298],[837,2,2,298,300],[838,10,7,300,307],[840,1,1,307,308],[843,5,5,308,313],[844,1,1,313,314]]],[26,4,4,314,318,[[851,2,2,314,316],[857,1,1,316,317],[860,1,1,317,318]]],[27,7,7,318,325,[[865,2,2,318,320],[866,1,1,320,321],[869,1,1,321,322],[870,1,1,322,323],[873,1,1,323,324],[874,1,1,324,325]]],[28,2,2,325,327,[[877,2,2,325,327]]],[29,1,1,327,328,[[882,1,1,327,328]]],[31,2,2,328,330,[[889,1,1,328,329],[892,1,1,329,330]]],[32,3,3,330,333,[[894,2,2,330,332],[895,1,1,332,333]]],[34,2,2,333,335,[[903,1,1,333,334],[904,1,1,334,335]]],[36,4,2,335,337,[[909,3,1,335,336],[910,1,1,336,337]]],[37,9,9,337,346,[[912,1,1,337,338],[914,1,1,338,339],[915,1,1,339,340],[916,2,2,340,342],[917,1,1,342,343],[922,2,2,343,345],[923,1,1,345,346]]],[38,3,2,346,348,[[926,3,2,346,348]]]],[1,63,140,154,174,181,184,727,1203,1233,1385,1664,1790,1796,1910,1928,1930,2296,2423,2552,2562,3806,3822,4041,4049,4050,4053,4055,4132,4216,4448,4570,4572,4968,5848,5880,5935,6578,6688,6722,6777,6858,6909,6915,6928,6943,6948,7227,7424,7428,7451,7608,7609,7610,7611,7618,7686,7715,7726,7729,7990,8613,8618,8655,9084,9353,9386,9398,9456,9501,9502,9503,9504,9560,9566,9567,9593,10068,10454,10639,10738,11155,11368,11491,11562,11563,11564,11565,11601,11640,11697,12015,12017,12021,12531,12541,12888,12939,12945,12982,13004,13015,13019,13031,13069,13098,13138,13205,13216,13233,13241,13261,13314,13329,13359,13373,13480,13484,13529,13572,13579,13636,13646,13654,13697,13790,13904,13943,14065,14128,14133,14160,14336,14357,14372,14406,14415,14641,14701,14702,14703,14708,14740,15093,15096,15099,15121,15152,15254,15565,15574,15575,15600,15601,15684,15724,16182,16192,16246,16289,16297,16300,16303,16345,16369,16379,16423,16701,16717,16801,16811,16820,16842,16858,16859,16872,16895,16900,16915,17127,17136,17141,17185,17235,17247,17255,17321,17329,17332,17344,17350,17359,17378,17380,17385,17387,17397,17413,17426,17437,17438,17466,17497,17517,17518,17530,17737,17784,17886,17888,17899,17996,18007,18018,18122,18139,18148,18159,18170,18203,18217,18218,18245,18253,18261,18274,18290,18319,18359,18406,18427,18433,18467,18480,18481,18485,18536,18630,18729,18778,18780,18781,18819,18821,18844,18846,18876,18877,18880,18891,18911,18924,18989,19038,19039,19071,19214,19215,19290,19299,19401,19476,20159,20163,20213,20223,20228,20229,20299,20440,20468,20476,20484,20485,20494,20514,20516,20526,20548,20556,20558,20607,20650,20656,20660,20674,20679,20694,20711,20719,20721,20835,20846,20880,20893,20927,20951,21147,21385,21386,21398,21402,21403,21405,21406,21407,21411,21477,21568,21569,21570,21571,21572,21577,21759,21761,21969,22040,22145,22152,22156,22201,22215,22253,22281,22339,22340,22423,22535,22576,22602,22606,22616,22742,22767,22854,22860,22905,22928,22945,22952,22955,22974,23046,23055,23061,23118,23119]]],["+",[5,5,[[0,1,1,0,1,[[6,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]],[18,2,2,2,4,[[532,1,1,2,3],[616,1,1,3,4]]],[25,1,1,4,5,[[802,1,1,4,5]]]],[181,12939,14740,16246,20468]]],["Spirit",[34,34,[[0,2,2,0,2,[[0,1,1,0,1],[40,1,1,1,2]]],[6,7,7,2,9,[[213,1,1,2,3],[216,1,1,3,4],[221,1,1,4,5],[223,1,1,5,6],[224,2,2,6,8],[225,1,1,8,9]]],[8,7,7,9,16,[[245,2,2,9,11],[246,1,1,11,12],[251,2,2,12,14],[254,2,2,14,16]]],[9,1,1,16,17,[[289,1,1,16,17]]],[10,2,2,17,19,[[308,1,1,17,18],[312,1,1,18,19]]],[11,1,1,19,20,[[314,1,1,19,20]]],[13,4,4,20,24,[[381,1,1,20,21],[384,1,1,21,22],[386,1,1,22,23],[390,1,1,23,24]]],[17,1,1,24,25,[[468,1,1,24,25]]],[22,7,7,25,32,[[718,1,1,25,26],[726,1,1,26,27],[737,1,1,27,28],[739,1,1,28,29],[741,3,3,29,32]]],[25,2,2,32,34,[[812,2,2,32,34]]]],[1,1233,6578,6688,6858,6909,6915,6928,6943,7424,7428,7451,7608,7609,7726,7729,8655,9353,9504,9567,11491,11565,11601,11697,13654,18433,18630,18819,18844,18876,18877,18880,20660,20679]]],["air",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13904]]],["anger",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6722]]],["blast",[4,4,[[1,1,1,0,1,[[64,1,1,0,1]]],[11,1,1,1,2,[[331,1,1,1,2]]],[22,2,2,2,4,[[703,1,1,2,3],[715,1,1,3,4]]]],[1928,10068,18122,18359]]],["breath",[26,26,[[0,2,2,0,2,[[5,1,1,0,1],[6,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[17,5,5,3,8,[[444,1,1,3,4],[447,1,1,4,5],[450,1,1,5,6],[452,1,1,6,7],[454,1,1,7,8]]],[18,5,5,8,13,[[495,1,1,8,9],[510,1,1,9,10],[581,1,1,10,11],[612,1,1,11,12],[623,1,1,12,13]]],[20,1,1,13,14,[[661,1,1,13,14]]],[22,3,3,14,17,[[689,1,1,14,15],[708,1,1,15,16],[711,1,1,16,17]]],[23,2,2,17,19,[[754,1,1,17,18],[795,1,1,18,19]]],[24,1,1,19,20,[[800,1,1,19,20]]],[25,5,5,20,25,[[838,5,5,20,25]]],[34,1,1,25,26,[[904,1,1,25,26]]]],[154,174,8618,13069,13138,13233,13261,13314,14133,14372,15600,16192,16345,17378,17888,18245,18290,19215,20229,20440,21402,21403,21405,21406,21407,22767]]],["cool",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[63]]],["courage",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5880]]],["mind",[5,5,[[0,1,1,0,1,[[25,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]],[25,2,2,2,4,[[812,1,1,2,3],[821,1,1,3,4]]],[34,1,1,4,5,[[903,1,1,4,5]]]],[727,17235,20660,20927,22742]]],["quarters",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10639]]],["side",[5,5,[[23,1,1,0,1,[[796,1,1,0,1]]],[25,4,4,1,5,[[843,4,4,1,5]]]],[20299,21568,21569,21570,21571]]],["sides",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21572]]],["spirit",[192,173,[[0,3,3,0,3,[[5,1,1,0,1],[40,1,1,1,2],[44,1,1,2,3]]],[1,5,5,3,8,[[55,1,1,3,4],[77,1,1,4,5],[80,1,1,5,6],[84,2,2,6,8]]],[3,11,9,8,17,[[121,3,2,8,10],[127,5,4,10,14],[130,1,1,14,15],[140,1,1,15,16],[143,1,1,16,17]]],[4,2,2,17,19,[[154,1,1,17,18],[186,1,1,18,19]]],[5,1,1,19,20,[[191,1,1,19,20]]],[6,2,2,20,22,[[219,1,1,20,21],[225,1,1,21,22]]],[8,9,8,22,30,[[236,1,1,22,23],[251,5,4,23,27],[253,1,1,27,28],[254,1,1,28,29],[265,1,1,29,30]]],[10,5,5,30,35,[[300,1,1,30,31],[311,1,1,31,32],[312,3,3,32,35]]],[11,2,2,35,37,[[314,2,2,35,37]]],[12,4,3,37,40,[[342,2,1,37,38],[349,1,1,38,39],[365,1,1,39,40]]],[13,6,6,40,46,[[375,1,1,40,41],[384,3,3,41,44],[387,1,1,44,45],[402,1,1,45,46]]],[14,2,2,46,48,[[403,2,2,46,48]]],[15,2,2,48,50,[[421,2,2,48,50]]],[17,12,12,50,62,[[439,1,1,50,51],[441,1,1,51,52],[442,1,1,52,53],[445,1,1,53,54],[450,1,1,54,55],[455,1,1,55,56],[456,1,1,56,57],[461,1,1,57,58],[462,1,1,58,59],[467,2,2,59,61],[469,1,1,61,62]]],[18,17,17,62,79,[[508,1,1,62,63],[509,1,1,63,64],[511,1,1,64,65],[528,4,4,65,69],[553,1,1,69,70],[554,2,2,70,72],[555,1,1,72,73],[581,1,1,73,74],[583,1,1,74,75],[619,1,1,75,76],[620,3,3,76,79]]],[19,14,13,79,92,[[628,1,1,79,80],[638,1,1,80,81],[641,1,1,81,82],[642,2,2,82,84],[643,3,3,84,87],[644,2,2,87,89],[645,2,1,89,90],[652,1,1,90,91],[656,1,1,91,92]]],[20,19,16,92,108,[[659,2,2,92,94],[660,3,3,94,97],[661,2,1,97,98],[662,3,3,98,101],[664,1,1,101,102],[665,3,2,102,104],[666,2,1,104,105],[668,1,1,105,106],[669,1,1,106,107],[670,1,1,107,108]]],[22,29,24,108,132,[[682,2,1,108,109],[689,4,1,109,110],[697,2,2,110,112],[704,1,1,112,113],[706,1,1,113,114],[707,2,2,114,116],[708,1,1,116,117],[709,1,1,117,118],[710,1,1,118,119],[712,1,1,119,120],[716,1,1,120,121],[718,1,1,121,122],[720,2,2,122,124],[722,1,1,124,125],[732,1,1,125,126],[735,3,2,126,128],[737,1,1,128,129],[739,1,1,129,130],[743,1,1,130,131],[744,1,1,131,132]]],[23,1,1,132,133,[[795,1,1,132,133]]],[25,24,21,133,154,[[802,5,3,133,136],[803,1,1,136,137],[804,4,3,137,140],[809,1,1,140,141],[811,1,1,141,142],[812,3,3,142,145],[814,1,1,145,146],[819,1,1,146,147],[822,1,1,147,148],[837,2,2,148,150],[838,2,2,150,152],[840,1,1,152,153],[844,1,1,153,154]]],[26,2,2,154,156,[[851,2,2,154,156]]],[27,2,2,156,158,[[865,1,1,156,157],[866,1,1,157,158]]],[28,2,2,158,160,[[877,2,2,158,160]]],[32,3,3,160,163,[[894,2,2,160,162],[895,1,1,162,163]]],[36,4,2,163,165,[[909,3,1,163,164],[910,1,1,164,165]]],[37,6,6,165,171,[[914,1,1,165,166],[916,1,1,166,167],[917,1,1,167,168],[922,2,2,168,170],[923,1,1,170,171]]],[38,3,2,171,173,[[926,3,2,171,173]]]],[140,1203,1385,1664,2296,2423,2552,2562,3806,3822,4041,4049,4050,4053,4132,4448,4572,4968,5848,5935,6777,6948,7227,7609,7610,7611,7618,7686,7715,7990,9084,9456,9501,9502,9503,9560,9566,10454,10738,11155,11368,11562,11563,11564,11640,12015,12017,12021,12531,12541,12945,12982,13019,13098,13216,13329,13359,13480,13484,13636,13646,13697,14336,14357,14406,14701,14702,14703,14708,15093,15096,15099,15121,15601,15684,16289,16297,16300,16303,16423,16701,16801,16811,16820,16858,16859,16872,16895,16900,16915,17141,17247,17329,17332,17344,17350,17359,17380,17385,17387,17397,17426,17437,17438,17466,17497,17518,17530,17737,17886,18007,18018,18139,18170,18203,18217,18218,18253,18274,18319,18406,18427,18481,18485,18536,18729,18780,18781,18821,18846,18911,18924,20223,20476,20484,20485,20494,20514,20516,20526,20607,20650,20656,20674,20679,20711,20880,20951,21385,21386,21398,21411,21477,21577,21759,21761,22145,22156,22339,22340,22602,22606,22616,22854,22860,22928,22955,22974,23046,23055,23061,23118,23119]]],["spirits",[5,5,[[3,2,2,0,2,[[132,1,1,0,1],[143,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[19,1,1,3,4,[[643,1,1,3,4]]],[37,1,1,4,5,[[916,1,1,4,5]]]],[4216,4570,15575,16842,22952]]],["spiritual",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22215]]],["tempest",[1,1,[[18,1,1,0,1,[[488,1,1,0,1]]]],[14065]]],["vain",[2,2,[[17,2,2,0,2,[[450,1,1,0,1],[451,1,1,1,2]]]],[13205,13241]]],["wind",[81,76,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,5,4,1,5,[[59,3,2,1,3],[63,1,1,3,4],[64,1,1,4,5]]],[3,1,1,5,6,[[127,1,1,5,6]]],[9,1,1,6,7,[[288,1,1,6,7]]],[10,4,2,7,9,[[308,1,1,7,8],[309,3,1,8,9]]],[11,1,1,9,10,[[315,1,1,9,10]]],[17,8,8,10,18,[[436,1,1,10,11],[441,1,1,11,12],[442,1,1,12,13],[443,1,1,13,14],[456,1,1,14,15],[465,2,2,15,17],[472,1,1,17,18]]],[18,13,13,18,31,[[478,1,1,18,19],[495,2,2,19,21],[512,1,1,21,22],[525,1,1,22,23],[555,1,1,23,24],[560,1,1,24,25],[580,1,1,25,26],[581,1,1,26,27],[584,1,1,27,28],[612,1,1,28,29],[624,1,1,29,30],[625,1,1,30,31]]],[19,5,5,31,36,[[638,1,1,31,32],[652,2,2,32,34],[654,1,1,34,35],[657,1,1,35,36]]],[20,4,3,36,39,[[659,2,1,36,37],[663,1,1,37,38],[669,1,1,38,39]]],[22,10,10,39,49,[[685,1,1,39,40],[689,1,1,40,41],[695,1,1,41,42],[704,1,1,42,43],[705,1,1,43,44],[710,1,1,44,45],[719,2,2,45,47],[735,1,1,47,48],[742,1,1,48,49]]],[23,11,11,49,60,[[746,1,1,49,50],[748,2,2,50,52],[749,1,1,52,53],[754,1,1,53,54],[757,1,1,54,55],[758,1,1,55,56],[762,1,1,56,57],[766,1,1,57,58],[795,2,2,58,60]]],[25,9,8,60,68,[[806,1,1,60,61],[813,1,1,61,62],[814,2,2,62,64],[818,1,1,64,65],[820,1,1,65,66],[828,1,1,66,67],[838,2,1,67,68]]],[27,4,4,68,72,[[865,1,1,68,69],[869,1,1,69,70],[873,1,1,70,71],[874,1,1,71,72]]],[29,1,1,72,73,[[882,1,1,72,73]]],[31,2,2,73,75,[[889,1,1,73,74],[892,1,1,74,75]]],[37,1,1,75,76,[[915,1,1,75,76]]]],[184,1790,1796,1910,1930,4055,8613,9386,9398,9593,12888,13004,13015,13031,13373,13572,13579,13790,13943,14128,14160,14415,14641,15152,15254,15565,15574,15724,16182,16369,16379,16717,17127,17136,17185,17255,17321,17413,17517,17784,17899,17996,18148,18159,18261,18467,18480,18778,18891,18989,19038,19039,19071,19214,19290,19299,19401,19476,20213,20228,20548,20694,20719,20721,20835,20893,21147,21406,22152,22201,22253,22281,22423,22535,22576,22945]]],["winds",[11,10,[[17,1,1,0,1,[[463,1,1,0,1]]],[23,3,2,1,3,[[793,3,2,1,3]]],[25,4,4,3,7,[[806,2,2,3,5],[818,1,1,5,6],[838,1,1,6,7]]],[26,2,2,7,9,[[857,1,1,7,8],[860,1,1,8,9]]],[37,1,1,9,10,[[912,1,1,9,10]]]],[13529,20159,20163,20556,20558,20846,21406,21969,22040,22905]]]]},{"k":"H7308","v":[["*",[11,11,[[26,11,11,0,11,[[851,1,1,0,1],[853,3,3,1,4],[854,4,4,4,8],[855,1,1,8,9],[856,2,2,9,11]]]],[21793,21845,21846,21855,21885,21886,21888,21894,21908,21935,21948]]],["mind",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21894]]],["spirit",[8,8,[[26,8,8,0,8,[[853,3,3,0,3],[854,3,3,3,6],[855,1,1,6,7],[856,1,1,7,8]]]],[21845,21846,21855,21885,21886,21888,21908,21948]]],["wind",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21793]]],["winds",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21935]]]]},{"k":"H7309","v":[["*",[2,2,[[1,1,1,0,1,[[57,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]]],[1725,20410]]],["breathing",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20410]]],["respite",[1,1,[[1,1,1,0,1,[[57,1,1,0,1]]]],[1725]]]]},{"k":"H7310","v":[["*",[2,2,[[18,2,2,0,2,[[500,1,1,0,1],[543,1,1,1,2]]]],[14240,14885]]],["over",[1,1,[[18,1,1,0,1,[[500,1,1,0,1]]]],[14240]]],["wealthy",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14885]]]]},{"k":"H7311","v":[["*",[189,184,[[0,6,6,0,6,[[6,1,1,0,1],[13,1,1,1,2],[30,1,1,2,3],[38,2,2,3,5],[40,1,1,5,6]]],[1,8,8,6,14,[[56,1,1,6,7],[63,2,2,7,9],[64,1,1,9,10],[65,1,1,10,11],[66,1,1,11,12],[78,1,1,12,13],[84,1,1,13,14]]],[2,7,7,14,21,[[91,1,1,14,15],[93,3,3,15,18],[95,2,2,18,20],[111,1,1,20,21]]],[3,17,16,21,37,[[131,4,3,21,24],[132,1,1,24,25],[134,7,7,25,32],[136,1,1,32,33],[140,1,1,33,34],[147,2,2,34,36],[149,1,1,36,37]]],[4,9,9,37,46,[[153,1,1,37,38],[154,2,2,38,40],[160,1,1,40,41],[161,1,1,41,42],[164,1,1,42,43],[169,1,1,43,44],[179,1,1,44,45],[184,1,1,45,46]]],[5,1,1,46,47,[[190,1,1,46,47]]],[8,5,5,47,52,[[237,4,4,47,51],[244,1,1,51,52]]],[9,3,3,52,55,[[288,3,3,52,55]]],[10,4,4,55,59,[[301,2,2,55,57],[304,1,1,57,58],[306,1,1,58,59]]],[11,3,3,59,62,[[314,1,1,59,60],[318,1,1,60,61],[331,1,1,61,62]]],[12,2,2,62,64,[[352,1,1,62,63],[362,1,1,63,64]]],[13,6,5,64,69,[[371,1,1,64,65],[396,2,1,65,66],[401,3,3,66,69]]],[14,4,4,69,73,[[405,1,1,69,70],[410,1,1,70,71],[411,2,2,71,73]]],[15,1,1,73,74,[[421,1,1,73,74]]],[17,6,6,74,80,[[452,1,1,74,75],[456,1,1,75,76],[457,1,1,76,77],[473,2,2,77,79],[474,1,1,79,80]]],[18,50,49,80,129,[[480,1,1,80,81],[486,1,1,81,82],[489,1,1,82,83],[490,1,1,83,84],[495,3,3,84,87],[498,1,1,87,88],[504,2,2,88,90],[507,1,1,90,91],[511,1,1,91,92],[514,1,1,92,93],[523,2,1,93,94],[534,2,2,94,96],[538,1,1,96,97],[543,1,1,97,98],[551,1,1,98,99],[552,5,5,99,104],[555,1,1,104,105],[566,6,6,105,111],[569,1,1,111,112],[576,3,3,112,115],[584,2,2,115,117],[585,1,1,117,118],[587,1,1,118,119],[589,1,1,119,120],[590,2,2,120,122],[595,2,2,122,124],[608,1,1,124,125],[615,1,1,125,126],[617,1,1,126,127],[622,1,1,127,128],[625,1,1,128,129]]],[19,8,8,129,137,[[630,1,1,129,130],[631,1,1,130,131],[633,1,1,131,132],[638,1,1,132,133],[641,2,2,133,135],[651,1,1,135,136],[657,1,1,136,137]]],[22,23,21,137,158,[[679,1,1,137,138],[680,3,3,138,141],[684,1,1,141,142],[688,2,1,142,143],[691,1,1,143,144],[692,1,1,144,145],[701,1,1,145,146],[703,1,1,146,147],[708,1,1,147,148],[711,1,1,148,149],[715,1,1,149,150],[718,2,1,150,151],[727,2,2,151,153],[730,1,1,153,154],[735,2,2,154,156],[736,1,1,156,157],[740,1,1,157,158]]],[24,1,1,158,159,[[798,1,1,158,159]]],[25,17,17,159,176,[[807,1,1,159,160],[811,3,3,160,163],[818,1,1,163,164],[821,1,1,164,165],[822,2,2,165,167],[832,2,2,167,169],[835,1,1,169,170],[846,3,3,170,173],[849,3,3,173,176]]],[26,4,4,176,180,[[857,1,1,176,177],[860,2,2,177,179],[861,1,1,179,180]]],[27,3,3,180,183,[[872,2,2,180,182],[874,1,1,182,183]]],[32,1,1,183,184,[[897,1,1,183,184]]]],[176,358,918,1164,1167,1239,1705,1897,1905,1922,1967,1994,2363,2555,2771,2803,2805,2814,2859,2864,3384,4172,4173,4183,4231,4276,4281,4283,4285,4286,4287,4289,4322,4453,4692,4716,4763,4920,4948,4959,5151,5159,5242,5384,5599,5785,5915,7241,7247,7248,7250,7415,8630,8649,8651,9134,9135,9225,9285,9564,9681,10083,10807,11051,11281,11851,11973,11974,11975,12109,12226,12243,12246,12516,13264,13377,13401,13808,13827,13861,13960,14034,14074,14076,14145,14164,14166,14204,14290,14291,14320,14391,14484,14624,14773,14779,14821,14880,15051,15075,15076,15077,15078,15081,15182,15339,15342,15343,15345,15350,15368,15421,15501,15504,15508,15724,15731,15747,15793,15812,15817,15820,15885,15897,16149,16237,16271,16321,16385,16490,16498,16557,16699,16801,16806,17086,17264,17656,17697,17698,17699,17770,17865,17908,17941,18081,18119,18235,18289,18375,18429,18647,18658,18709,18779,18780,18787,18864,20349,20576,20637,20649,20650,20847,20923,20966,20970,21234,21240,21319,21631,21639,21643,21710,21711,21722,21972,22048,22072,22088,22244,22247,22272,22642]]],["+",[15,15,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[2,1,1,2,3,[[95,1,1,2,3]]],[3,5,5,3,8,[[131,1,1,3,4],[132,1,1,4,5],[134,2,2,5,7],[136,1,1,7,8]]],[8,1,1,8,9,[[244,1,1,8,9]]],[14,2,2,9,11,[[405,1,1,9,10],[411,1,1,10,11]]],[17,1,1,11,12,[[474,1,1,11,12]]],[18,2,2,12,14,[[552,2,2,12,14]]],[25,1,1,14,15,[[849,1,1,14,15]]]],[1239,1905,2859,4183,4231,4286,4287,4322,7415,12109,12246,13861,15075,15076,21722]]],["Exalt",[2,2,[[18,2,2,0,2,[[576,2,2,0,2]]]],[15504,15508]]],["are",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13401]]],["away",[2,2,[[25,1,1,0,1,[[846,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]]],[21639,21972]]],["bred",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1967]]],["exalt",[14,14,[[1,1,1,0,1,[[64,1,1,0,1]]],[8,1,1,1,2,[[237,1,1,1,2]]],[17,1,1,2,3,[[452,1,1,2,3]]],[18,7,7,3,10,[[511,1,1,3,4],[514,1,1,4,5],[543,1,1,5,6],[569,1,1,6,7],[584,1,1,7,8],[595,1,1,8,9],[617,1,1,9,10]]],[22,3,3,10,13,[[691,1,1,10,11],[692,1,1,11,12],[703,1,1,12,13]]],[27,1,1,13,14,[[872,1,1,13,14]]]],[1922,7250,13264,14391,14484,14880,15421,15731,15897,16271,17908,17941,18119,22247]]],["exalted",[29,28,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[10,2,2,2,4,[[304,1,1,2,3],[306,1,1,3,4]]],[11,1,1,4,5,[[331,1,1,4,5]]],[15,1,1,5,6,[[421,1,1,5,6]]],[18,16,15,6,21,[[489,1,1,6,7],[490,1,1,7,8],[495,1,1,8,9],[498,1,1,9,10],[523,2,1,10,11],[534,2,2,11,13],[552,1,1,13,14],[566,4,4,14,18],[585,1,1,18,19],[589,1,1,19,20],[595,1,1,20,21]]],[19,1,1,21,22,[[638,1,1,21,22]]],[22,5,5,22,27,[[708,1,1,22,23],[711,1,1,23,24],[715,1,1,24,25],[727,1,1,25,26],[730,1,1,26,27]]],[27,1,1,27,28,[[874,1,1,27,28]]]],[7241,8649,9225,9285,10083,12516,14074,14076,14164,14204,14624,14773,14779,15081,15342,15343,15345,15350,15747,15812,15885,16699,18235,18289,18375,18647,18709,22272]]],["exalteth",[3,3,[[18,1,1,0,1,[[625,1,1,0,1]]],[19,2,2,1,3,[[641,2,2,1,3]]]],[16385,16801,16806]]],["extol",[2,2,[[18,2,2,0,2,[[507,1,1,0,1],[622,1,1,1,2]]]],[14320,16321]]],["gave",[4,4,[[13,4,4,0,4,[[396,1,1,0,1],[401,3,3,1,4]]]],[11851,11973,11974,11975]]],["give",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11851]]],["haughty",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8630]]],["heave",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4173]]],["heaved",[1,1,[[3,1,1,0,1,[[134,1,1,0,1]]]],[4289]]],["high",[23,23,[[1,1,1,0,1,[[63,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]],[4,2,2,2,4,[[164,1,1,2,3],[184,1,1,3,4]]],[9,1,1,4,5,[[288,1,1,4,5]]],[17,2,2,5,7,[[456,1,1,5,6],[473,1,1,6,7]]],[18,6,6,7,13,[[495,1,1,7,8],[555,1,1,8,9],[566,1,1,9,10],[576,1,1,10,11],[590,1,1,11,12],[615,1,1,12,13]]],[19,1,1,13,14,[[651,1,1,13,14]]],[22,4,4,14,18,[[680,2,2,14,16],[684,1,1,16,17],[735,1,1,17,18]]],[25,5,5,18,23,[[807,1,1,18,19],[818,1,1,19,20],[821,1,1,20,21],[832,1,1,21,22],[835,1,1,22,23]]]],[1897,4763,5242,5785,8651,13377,13808,14145,15182,15339,15501,15817,16237,17086,17698,17699,17770,18780,20576,20847,20923,21234,21319]]],["higher",[2,2,[[3,1,1,0,1,[[140,1,1,0,1]]],[18,1,1,1,2,[[538,1,1,1,2]]]],[4453,14821]]],["himself",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22072]]],["levy",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4692]]],["lifteth",[1,1,[[18,1,1,0,1,[[590,1,1,0,1]]]],[15820]]],["lofty",[3,3,[[18,1,1,0,1,[[608,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]],[22,1,1,2,3,[[680,1,1,2,3]]]],[16149,17264,17697]]],["loud",[1,1,[[4,1,1,0,1,[[179,1,1,0,1]]]],[5599]]],["off",[4,4,[[2,2,2,0,2,[[93,2,2,0,2]]],[25,1,1,2,3,[[822,1,1,2,3]]],[27,1,1,3,4,[[872,1,1,3,4]]]],[2803,2805,20970,22244]]],["offer",[9,9,[[1,1,1,0,1,[[84,1,1,0,1]]],[2,1,1,1,2,[[111,1,1,1,2]]],[3,3,3,2,5,[[134,3,3,2,5]]],[25,4,4,5,9,[[846,2,2,5,7],[849,2,2,7,9]]]],[2555,3384,4276,4281,4285,21631,21643,21710,21711]]],["offered",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12226]]],["promote",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16498]]],["promotion",[2,2,[[18,1,1,0,1,[[552,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]]],[15077,16490]]],["proud",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16557]]],["setteth",[1,1,[[18,1,1,0,1,[[552,1,1,0,1]]]],[15078]]],["take",[3,3,[[2,3,3,0,3,[[91,1,1,0,1],[93,1,1,1,2],[95,1,1,2,3]]]],[2771,2814,2864]]],["tall",[3,3,[[4,3,3,0,3,[[154,2,2,0,2],[161,1,1,2,3]]]],[4948,4959,5159]]],["taller",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4920]]],["up",[54,52,[[0,5,5,0,5,[[6,1,1,0,1],[13,1,1,1,2],[30,1,1,2,3],[38,2,2,3,5]]],[1,3,3,5,8,[[56,1,1,5,6],[66,1,1,6,7],[78,1,1,7,8]]],[3,4,4,8,12,[[131,2,2,8,10],[134,1,1,10,11],[147,1,1,11,12]]],[4,2,2,12,14,[[160,1,1,12,13],[169,1,1,13,14]]],[5,1,1,14,15,[[190,1,1,14,15]]],[8,2,2,15,17,[[237,2,2,15,17]]],[10,2,2,17,19,[[301,2,2,17,19]]],[11,2,2,19,21,[[314,1,1,19,20],[318,1,1,20,21]]],[12,2,2,21,23,[[352,1,1,21,22],[362,1,1,22,23]]],[13,1,1,23,24,[[371,1,1,23,24]]],[14,1,1,24,25,[[411,1,1,24,25]]],[17,1,1,25,26,[[473,1,1,25,26]]],[18,9,9,26,35,[[480,1,1,26,27],[486,1,1,27,28],[495,1,1,28,29],[504,2,2,29,31],[551,1,1,31,32],[566,1,1,32,33],[584,1,1,33,34],[587,1,1,34,35]]],[22,10,8,35,43,[[679,1,1,35,36],[688,2,1,36,37],[701,1,1,37,38],[718,2,1,38,39],[727,1,1,39,40],[735,1,1,40,41],[736,1,1,41,42],[740,1,1,42,43]]],[24,1,1,43,44,[[798,1,1,43,44]]],[25,5,5,44,49,[[811,3,3,44,47],[822,1,1,47,48],[832,1,1,48,49]]],[26,2,2,49,51,[[860,1,1,49,50],[861,1,1,50,51]]],[32,1,1,51,52,[[897,1,1,51,52]]]],[176,358,918,1164,1167,1705,1994,2363,4172,4173,4283,4716,5151,5384,5915,7247,7248,9134,9135,9564,9681,10807,11051,11281,12243,13827,13960,14034,14166,14290,14291,15051,15368,15724,15793,17656,17865,18081,18429,18658,18779,18787,18864,20349,20637,20649,20650,20966,21240,22048,22088,22642]]]]},{"k":"H7312","v":[["*",[7,7,[[19,2,2,0,2,[[648,1,1,0,1],[652,1,1,1,2]]],[22,4,4,2,6,[[680,2,2,2,4],[688,2,2,4,6]]],[23,1,1,6,7,[[792,1,1,6,7]]]],[16988,17116,17696,17702,17862,17883,20109]]],["haughtiness",[3,3,[[22,2,2,0,2,[[680,2,2,0,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[17696,17702,20109]]],["height",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17116]]],["high",[2,2,[[19,1,1,0,1,[[648,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[16988,17862]]],["ones",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17883]]]]},{"k":"H7313","v":[["*",[4,4,[[26,4,4,0,4,[[853,1,1,0,1],[854,3,3,1,4]]]],[21874,21893,21894,21897]]],["+",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21893]]],["extol",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21874]]],["thyself",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21897]]],["up",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21894]]]]},{"k":"H7314","v":[["height",[5,5,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,4,4,1,5,[[852,1,1,1,2],[853,3,3,2,5]]]],[12154,21808,21847,21848,21857]]]]},{"k":"H7315","v":[["high",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22778]]]]},{"k":"H7316","v":[["Rumah",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10201]]]]},{"k":"H7317","v":[["haughtily",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22598]]]]},{"k":"H7318","v":[["extolled",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14890]]]]},{"k":"H7319","v":[["high",[1,1,[[18,1,1,0,1,[[626,1,1,0,1]]]],[16391]]]]},{"k":"H7320","v":[["Romamtiezer",[2,2,[[12,2,2,0,2,[[362,2,2,0,2]]]],[11050,11077]]]]},{"k":"H7321","v":[["*",[45,41,[[3,2,2,0,2,[[126,2,2,0,2]]],[5,7,4,2,6,[[192,7,4,2,6]]],[6,2,2,6,8,[[217,1,1,6,7],[225,1,1,7,8]]],[8,4,4,8,12,[[239,1,1,8,9],[245,1,1,9,10],[252,2,2,10,12]]],[13,3,2,12,14,[[379,3,2,12,14]]],[14,2,2,14,16,[[405,2,2,14,16]]],[17,2,2,16,18,[[465,1,1,16,17],[473,1,1,17,18]]],[18,12,12,18,30,[[518,1,1,18,19],[524,1,1,19,20],[537,1,1,20,21],[542,1,1,21,22],[543,1,1,22,23],[558,1,1,23,24],[572,2,2,24,26],[575,2,2,26,28],[577,1,1,28,29],[585,1,1,29,30]]],[19,1,1,30,31,[[640,1,1,30,31]]],[22,4,4,31,35,[[693,1,1,31,32],[694,1,1,32,33],[720,1,1,33,34],[722,1,1,34,35]]],[23,1,1,35,36,[[794,1,1,35,36]]],[27,1,1,36,37,[[866,1,1,36,37]]],[28,1,1,37,38,[[877,1,1,37,38]]],[32,1,1,38,39,[[896,1,1,38,39]]],[35,1,1,39,40,[[908,1,1,39,40]]],[37,1,1,40,41,[[919,1,1,40,41]]]],[3995,3997,5954,5959,5965,5969,6715,6943,7302,7442,7638,7670,11465,11468,12108,12110,13562,13800,14553,14626,14815,14873,14874,15218,15455,15456,15494,15496,15509,15751,16767,17964,17979,18493,18556,20181,22160,22312,22629,22834,23008]]],["Shout",[2,2,[[5,1,1,0,1,[[192,1,1,0,1]]],[23,1,1,1,2,[[794,1,1,1,2]]]],[5965,20181]]],["alarm",[4,4,[[3,2,2,0,2,[[126,2,2,0,2]]],[13,1,1,2,3,[[379,1,1,2,3]]],[28,1,1,3,4,[[877,1,1,3,4]]]],[3995,3997,11465,22312]]],["aloud",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22160]]],["cried",[2,2,[[6,1,1,0,1,[[217,1,1,0,1]]],[17,1,1,1,2,[[465,1,1,1,2]]]],[6715,13562]]],["cry",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18493]]],["destroyed",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16767]]],["joy",[2,2,[[17,1,1,0,1,[[473,1,1,0,1]]],[18,1,1,1,2,[[542,1,1,1,2]]]],[13800,14873]]],["noise",[7,7,[[18,7,7,0,7,[[543,1,1,0,1],[558,1,1,1,2],[572,2,2,2,4],[575,2,2,4,6],[577,1,1,6,7]]]],[14874,15218,15455,15456,15494,15496,15509]]],["out",[2,2,[[22,1,1,0,1,[[693,1,1,0,1]]],[32,1,1,1,2,[[896,1,1,1,2]]]],[17964,22629]]],["shout",[9,7,[[5,4,2,0,2,[[192,4,2,0,2]]],[13,1,1,2,3,[[379,1,1,2,3]]],[18,1,1,3,4,[[524,1,1,3,4]]],[22,1,1,4,5,[[722,1,1,4,5]]],[35,1,1,5,6,[[908,1,1,5,6]]],[37,1,1,6,7,[[919,1,1,6,7]]]],[5954,5959,11468,14626,18556,22834,23008]]],["shouted",[10,9,[[5,2,1,0,1,[[192,2,1,0,1]]],[6,1,1,1,2,[[225,1,1,1,2]]],[8,4,4,2,6,[[239,1,1,2,3],[245,1,1,3,4],[252,2,2,4,6]]],[13,1,1,6,7,[[379,1,1,6,7]]],[14,2,2,7,9,[[405,2,2,7,9]]]],[5969,6943,7302,7442,7638,7670,11468,12108,12110]]],["shouting",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17979]]],["triumph",[3,3,[[18,3,3,0,3,[[518,1,1,0,1],[537,1,1,1,2],[585,1,1,2,3]]]],[14553,14815,15751]]]]},{"k":"H7322","v":[["tremble",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13478]]]]},{"k":"H7323","v":[["*",[103,92,[[0,10,10,0,10,[[17,2,2,0,2],[23,4,4,2,6],[28,2,2,6,8],[32,1,1,8,9],[40,1,1,9,10]]],[3,2,2,10,12,[[127,1,1,10,11],[132,1,1,11,12]]],[5,2,2,12,14,[[193,1,1,12,13],[194,1,1,13,14]]],[6,2,2,14,16,[[217,1,1,14,15],[223,1,1,15,16]]],[8,12,11,16,27,[[238,1,1,16,17],[239,1,1,17,18],[243,1,1,18,19],[245,1,1,19,20],[252,4,4,20,24],[255,3,2,24,26],[257,1,1,26,27]]],[9,12,8,27,35,[[281,1,1,27,28],[284,10,6,28,34],[288,1,1,34,35]]],[10,6,5,35,40,[[291,1,1,35,36],[304,3,2,36,38],[308,1,1,38,39],[309,1,1,39,40]]],[11,13,11,40,51,[[316,2,2,40,42],[317,2,2,42,44],[322,2,1,44,45],[323,6,5,45,50],[335,1,1,50,51]]],[13,7,6,51,57,[[378,3,2,51,53],[389,1,1,53,54],[396,2,2,54,56],[401,1,1,56,57]]],[16,4,4,57,61,[[428,2,2,57,59],[433,2,2,59,61]]],[17,3,3,61,64,[[444,1,1,61,62],[450,1,1,62,63],[451,1,1,63,64]]],[18,6,6,64,70,[[495,1,1,64,65],[496,1,1,65,66],[536,1,1,66,67],[545,1,1,67,68],[596,1,1,68,69],[624,1,1,69,70]]],[19,4,4,70,74,[[628,1,1,70,71],[631,1,1,71,72],[633,1,1,72,73],[645,1,1,73,74]]],[21,1,1,74,75,[[671,1,1,74,75]]],[22,3,3,75,78,[[718,1,1,75,76],[733,1,1,76,77],[737,1,1,77,78]]],[23,7,5,78,83,[[756,1,1,78,79],[767,1,1,79,80],[793,1,1,80,81],[794,1,1,81,82],[795,3,1,82,83]]],[26,1,1,83,84,[[857,1,1,83,84]]],[28,3,3,84,87,[[877,3,3,84,87]]],[29,1,1,87,88,[[884,1,1,87,88]]],[33,1,1,88,89,[[901,1,1,88,89]]],[34,1,1,89,90,[[904,1,1,89,90]]],[36,1,1,90,91,[[909,1,1,90,91]]],[37,1,1,91,92,[[912,1,1,91,92]]]],[426,431,608,611,619,620,807,808,964,1209,4051,4241,5998,6021,6715,6894,7281,7309,7380,7441,7635,7640,7666,7669,7736,7766,7804,8390,8497,8499,8500,8501,8502,8504,8632,8722,9245,9246,9387,9407,9625,9629,9667,9668,9818,9833,9835,9840,9842,9848,10177,11447,11448,11668,11833,11837,11979,12760,12762,12827,12831,13076,13229,13252,14147,14173,14794,14931,15930,16366,16416,16502,16558,16911,17541,18451,18745,18807,19254,19505,20146,20210,20243,21967,22315,22318,22320,22462,22703,22750,22849,22903]]],["Run",[4,4,[[8,1,1,0,1,[[255,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]],[37,1,1,3,4,[[912,1,1,3,4]]]],[7766,8501,9629,22903]]],["another",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20243]]],["away",[2,2,[[23,2,2,0,2,[[793,1,1,0,1],[794,1,1,1,2]]]],[20146,20210]]],["down",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10177]]],["footmen",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7804]]],["guard",[14,10,[[10,3,2,0,2,[[304,3,2,0,2]]],[11,8,6,2,8,[[322,2,1,2,3],[323,6,5,3,8]]],[13,3,2,8,10,[[378,3,2,8,10]]]],[9245,9246,9818,9833,9835,9840,9842,9848,11447,11448]]],["hastily",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1209]]],["out",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14931]]],["post",[2,2,[[17,1,1,0,1,[[444,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[13076,20243]]],["posts",[6,6,[[13,2,2,0,2,[[396,2,2,0,2]]],[16,4,4,2,6,[[428,2,2,2,4],[433,2,2,4,6]]]],[11833,11837,12760,12762,12827,12831]]],["ran",[28,28,[[0,9,9,0,9,[[17,2,2,0,2],[23,4,4,2,6],[28,2,2,6,8],[32,1,1,8,9]]],[3,2,2,9,11,[[127,1,1,9,10],[132,1,1,10,11]]],[5,2,2,11,13,[[193,1,1,11,12],[194,1,1,12,13]]],[6,2,2,13,15,[[217,1,1,13,14],[223,1,1,14,15]]],[8,7,7,15,22,[[238,1,1,15,16],[239,1,1,16,17],[245,1,1,17,18],[252,3,3,18,21],[255,1,1,21,22]]],[9,2,2,22,24,[[284,2,2,22,24]]],[10,2,2,24,26,[[308,1,1,24,25],[309,1,1,25,26]]],[23,1,1,26,27,[[767,1,1,26,27]]],[26,1,1,27,28,[[857,1,1,27,28]]]],[426,431,608,611,619,620,807,808,964,4051,4241,5998,6021,6715,6894,7281,7309,7441,7640,7666,7669,7766,8499,8501,9387,9407,19505,21967]]],["run",[29,28,[[8,3,3,0,3,[[243,1,1,0,1],[252,1,1,1,2],[255,1,1,2,3]]],[9,6,5,3,8,[[281,1,1,3,4],[284,4,3,4,7],[288,1,1,7,8]]],[10,1,1,8,9,[[291,1,1,8,9]]],[11,2,2,9,11,[[316,1,1,9,10],[317,1,1,10,11]]],[18,3,3,11,14,[[496,1,1,11,12],[536,1,1,12,13],[596,1,1,13,14]]],[19,1,1,14,15,[[628,1,1,14,15]]],[21,1,1,15,16,[[671,1,1,15,16]]],[22,3,3,16,19,[[718,1,1,16,17],[733,1,1,17,18],[737,1,1,18,19]]],[23,2,2,19,21,[[756,1,1,19,20],[795,1,1,20,21]]],[28,3,3,21,24,[[877,3,3,21,24]]],[29,1,1,24,25,[[884,1,1,24,25]]],[33,1,1,25,26,[[901,1,1,25,26]]],[34,1,1,26,27,[[904,1,1,26,27]]],[36,1,1,27,28,[[909,1,1,27,28]]]],[7380,7635,7736,8390,8497,8500,8501,8632,8722,9625,9667,14173,14794,15930,16416,17541,18451,18745,18807,19254,20243,22315,22318,22320,22462,22703,22750,22849]]],["runnest",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16502]]],["runneth",[4,4,[[17,2,2,0,2,[[450,1,1,0,1],[451,1,1,1,2]]],[18,1,1,2,3,[[624,1,1,2,3]]],[19,1,1,3,4,[[645,1,1,3,4]]]],[13229,13252,16366,16911]]],["running",[6,5,[[9,3,2,0,2,[[284,3,2,0,2]]],[11,1,1,2,3,[[317,1,1,2,3]]],[13,1,1,3,4,[[389,1,1,3,4]]],[19,1,1,4,5,[[633,1,1,4,5]]]],[8502,8504,9668,11668,16558]]],["speedily",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11979]]],["through",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14147]]]]},{"k":"H7324","v":[["*",[19,19,[[0,2,2,0,2,[[13,1,1,0,1],[41,1,1,1,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[2,1,1,3,4,[[115,1,1,3,4]]],[18,2,2,4,6,[[495,1,1,4,5],[512,1,1,5,6]]],[20,1,1,6,7,[[669,1,1,6,7]]],[21,1,1,7,8,[[671,1,1,7,8]]],[22,1,1,8,9,[[710,1,1,8,9]]],[23,2,2,9,11,[[792,2,2,9,11]]],[25,5,5,11,16,[[806,2,2,11,13],[813,1,1,13,14],[829,1,1,14,15],[831,1,1,15,16]]],[34,1,1,16,17,[[903,1,1,16,17]]],[37,1,1,17,18,[[914,1,1,17,18]]],[38,1,1,18,19,[[927,1,1,18,19]]]],[350,1287,1929,3557,14160,14413,17516,17540,18265,20091,20092,20548,20558,20694,21164,21215,22748,22934,23130]]],["+",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[350]]],["draw",[3,3,[[1,1,1,0,1,[[64,1,1,0,1]]],[25,2,2,1,3,[[829,1,1,1,2],[831,1,1,2,3]]]],[1929,21164,21215]]],["emptied",[2,2,[[0,1,1,0,1,[[41,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[1287,20091]]],["empty",[5,5,[[20,1,1,0,1,[[669,1,1,0,1]]],[22,1,1,1,2,[[710,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]],[34,1,1,3,4,[[903,1,1,3,4]]],[37,1,1,4,5,[[914,1,1,4,5]]]],[17516,18265,20092,22748,22934]]],["forth",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17540]]],["out",[7,7,[[2,1,1,0,1,[[115,1,1,0,1]]],[18,2,2,1,3,[[495,1,1,1,2],[512,1,1,2,3]]],[25,3,3,3,6,[[806,2,2,3,5],[813,1,1,5,6]]],[38,1,1,6,7,[[927,1,1,6,7]]]],[3557,14160,14413,20548,20558,20694,23130]]]]},{"k":"H7325","v":[["run",[1,1,[[2,1,1,0,1,[[104,1,1,0,1]]]],[3171]]]]},{"k":"H7326","v":[["*",[24,24,[[8,1,1,0,1,[[253,1,1,0,1]]],[9,3,3,1,4,[[278,3,3,1,4]]],[18,2,2,4,6,[[511,1,1,4,5],[559,1,1,5,6]]],[19,16,16,6,22,[[637,1,1,6,7],[640,3,3,7,10],[641,1,1,10,11],[644,1,1,11,12],[645,1,1,12,13],[646,3,3,13,16],[649,2,2,16,18],[655,3,3,18,21],[656,1,1,21,22]]],[20,2,2,22,24,[[662,1,1,22,23],[663,1,1,23,24]]]],[7699,8287,8289,8290,14398,15236,16660,16754,16755,16770,16792,16878,16924,16926,16932,16947,17017,17022,17199,17202,17223,17237,17395,17405]]],["lack",[1,1,[[18,1,1,0,1,[[511,1,1,0,1]]]],[14398]]],["needy",[1,1,[[18,1,1,0,1,[[559,1,1,0,1]]]],[15236]]],["poor",[22,22,[[8,1,1,0,1,[[253,1,1,0,1]]],[9,3,3,1,4,[[278,3,3,1,4]]],[19,16,16,4,20,[[637,1,1,4,5],[640,3,3,5,8],[641,1,1,8,9],[644,1,1,9,10],[645,1,1,10,11],[646,3,3,11,14],[649,2,2,14,16],[655,3,3,16,19],[656,1,1,19,20]]],[20,2,2,20,22,[[662,1,1,20,21],[663,1,1,21,22]]]],[7699,8287,8289,8290,16660,16754,16755,16770,16792,16878,16924,16926,16932,16947,17017,17022,17199,17202,17223,17237,17395,17405]]]]},{"k":"H7327","v":[["Ruth",[12,12,[[7,12,12,0,12,[[232,4,4,0,4],[233,4,4,4,8],[234,1,1,8,9],[235,3,3,9,12]]]],[7131,7141,7143,7149,7151,7157,7170,7171,7181,7195,7200,7203]]]]},{"k":"H7328","v":[["*",[9,8,[[26,9,8,0,8,[[851,8,7,0,7],[853,1,1,7,8]]]],[21776,21777,21785,21786,21787,21788,21805,21846]]],["secret",[6,6,[[26,6,6,0,6,[[851,5,5,0,5],[853,1,1,5,6]]]],[21776,21777,21785,21788,21805,21846]]],["secrets",[3,3,[[26,3,3,0,3,[[851,3,3,0,3]]]],[21786,21787,21805]]]]},{"k":"H7329","v":[["*",[2,2,[[22,1,1,0,1,[[695,1,1,0,1]]],[35,1,1,1,2,[[907,1,1,1,2]]]],[17987,22816]]],["+",[1,1,[[35,1,1,0,1,[[907,1,1,0,1]]]],[22816]]],["lean",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17987]]]]},{"k":"H7330","v":[["lean",[2,2,[[3,1,1,0,1,[[129,1,1,0,1]]],[25,1,1,1,2,[[835,1,1,1,2]]]],[4095,21333]]]]},{"k":"H7331","v":[["Rezon",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9131]]]]},{"k":"H7332","v":[["*",[3,3,[[18,1,1,0,1,[[583,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]],[32,1,1,2,3,[[898,1,1,2,3]]]],[15666,17866,22658]]],["leanness",[2,2,[[18,1,1,0,1,[[583,1,1,0,1]]],[22,1,1,1,2,[[688,1,1,1,2]]]],[15666,17866]]],["scant",[1,1,[[32,1,1,0,1,[[898,1,1,0,1]]]],[22658]]]]},{"k":"H7333","v":[["prince",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16800]]]]},{"k":"H7334","v":[["leanness",[2,1,[[22,2,1,0,1,[[702,2,1,0,1]]]],[18111]]]]},{"k":"H7335","v":[["*",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[23,1,1,1,2,[[784,1,1,1,2]]]],[13215,19953]]],["at",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13215]]],["much",[1,1,[[23,1,1,0,1,[[784,1,1,0,1]]]],[19953]]]]},{"k":"H7336","v":[["*",[6,6,[[6,1,1,0,1,[[215,1,1,0,1]]],[18,1,1,1,2,[[479,1,1,1,2]]],[19,2,2,2,4,[[635,1,1,2,3],[658,1,1,3,4]]],[22,1,1,4,5,[[718,1,1,4,5]]],[34,1,1,5,6,[[903,1,1,5,6]]]],[6626,13947,16617,17288,18443,22741]]],["princes",[5,5,[[6,1,1,0,1,[[215,1,1,0,1]]],[19,2,2,1,3,[[635,1,1,1,2],[658,1,1,2,3]]],[22,1,1,3,4,[[718,1,1,3,4]]],[34,1,1,4,5,[[903,1,1,4,5]]]],[6626,16617,17288,18443,22741]]],["rulers",[1,1,[[18,1,1,0,1,[[479,1,1,0,1]]]],[13947]]]]},{"k":"H7337","v":[["*",[25,25,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,1,1,1,2,[[83,1,1,1,2]]],[4,3,3,2,5,[[164,1,1,2,3],[171,1,1,3,4],[185,1,1,4,5]]],[8,1,1,5,6,[[237,1,1,5,6]]],[9,1,1,6,7,[[288,1,1,6,7]]],[18,6,6,7,13,[[481,1,1,7,8],[495,1,1,8,9],[502,1,1,9,10],[512,1,1,10,11],[558,1,1,11,12],[596,1,1,12,13]]],[19,1,1,13,14,[[645,1,1,13,14]]],[22,7,7,14,21,[[683,1,1,14,15],[708,2,2,15,17],[732,1,1,17,18],[735,2,2,18,20],[738,1,1,20,21]]],[25,1,1,21,22,[[842,1,1,21,22]]],[29,1,1,22,23,[[879,1,1,22,23]]],[32,1,1,23,24,[[893,1,1,23,24]]],[34,1,1,24,25,[[904,1,1,24,25]]]],[714,2520,5260,5414,5830,7241,8639,13966,14154,14268,14431,15227,15930,16917,17753,18240,18250,18725,18769,18773,18826,21533,22377,22595,22753]]],["+",[4,4,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,2,2,1,3,[[164,1,1,1,2],[171,1,1,2,3]]],[29,1,1,3,4,[[879,1,1,3,4]]]],[2520,5260,5414,22377]]],["Enlarge",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18725]]],["enlarge",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[32,1,1,1,2,[[893,1,1,1,2]]]],[15930,22595]]],["enlarged",[8,8,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,3,3,2,5,[[481,1,1,2,3],[495,1,1,3,4],[502,1,1,4,5]]],[22,3,3,5,8,[[683,1,1,5,6],[735,1,1,6,7],[738,1,1,7,8]]]],[7241,8639,13966,14154,14268,17753,18773,18826]]],["enlargeth",[2,2,[[4,1,1,0,1,[[185,1,1,0,1]]],[34,1,1,1,2,[[904,1,1,1,2]]]],[5830,22753]]],["enlarging",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21533]]],["large",[2,2,[[22,2,2,0,2,[[708,2,2,0,2]]]],[18240,18250]]],["opened",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14431]]],["room",[2,2,[[0,1,1,0,1,[[25,1,1,0,1]]],[19,1,1,1,2,[[645,1,1,1,2]]]],[714,16917]]],["wide",[2,2,[[18,1,1,0,1,[[558,1,1,0,1]]],[22,1,1,1,2,[[735,1,1,1,2]]]],[15227,18769]]]]},{"k":"H7338","v":[["*",[2,2,[[17,2,2,0,2,[[471,1,1,0,1],[473,1,1,1,2]]]],[13752,13811]]],["breadth",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13811]]],["place",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13752]]]]},{"k":"H7339","v":[["*",[43,41,[[0,1,1,0,1,[[18,1,1,0,1]]],[4,1,1,1,2,[[165,1,1,1,2]]],[6,3,3,2,5,[[229,3,3,2,5]]],[9,1,1,5,6,[[287,1,1,5,6]]],[13,2,2,6,8,[[395,1,1,6,7],[398,1,1,7,8]]],[14,1,1,8,9,[[412,1,1,8,9]]],[15,4,3,9,12,[[420,4,3,9,12]]],[16,3,3,12,15,[[429,1,1,12,13],[431,2,2,13,15]]],[17,1,1,15,16,[[464,1,1,15,16]]],[18,2,2,16,18,[[532,1,1,16,17],[621,1,1,17,18]]],[19,5,5,18,23,[[628,1,1,18,19],[632,1,1,19,20],[634,1,1,20,21],[649,1,1,21,22],[653,1,1,22,23]]],[21,1,1,23,24,[[673,1,1,23,24]]],[22,2,2,24,26,[[693,1,1,24,25],[737,1,1,25,26]]],[23,5,5,26,31,[[749,1,1,26,27],[753,1,1,27,28],[792,1,1,28,29],[793,1,1,29,30],[794,1,1,30,31]]],[24,3,3,31,34,[[798,2,2,31,33],[800,1,1,33,34]]],[25,2,2,34,36,[[817,2,2,34,36]]],[26,1,1,36,37,[[858,1,1,36,37]]],[29,1,1,37,38,[[883,1,1,37,38]]],[33,1,1,38,39,[[901,1,1,38,39]]],[37,3,2,39,41,[[918,3,2,39,41]]]],[459,5288,7039,7041,7044,8592,11795,11881,12261,12494,12496,12509,12768,12802,12804,13539,14743,16319,16420,16533,16587,17028,17154,17573,17963,18814,19059,19196,20118,20153,20196,20343,20344,20438,20786,20793,22013,22439,22703,22980,22981]]],["+",[3,3,[[0,1,1,0,1,[[18,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]],[23,1,1,2,3,[[753,1,1,2,3]]]],[459,8592,19196]]],["places",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19059]]],["street",[19,18,[[4,1,1,0,1,[[165,1,1,0,1]]],[6,3,3,1,4,[[229,3,3,1,4]]],[13,2,2,4,6,[[395,1,1,4,5],[398,1,1,5,6]]],[14,1,1,6,7,[[412,1,1,6,7]]],[15,4,3,7,10,[[420,4,3,7,10]]],[16,3,3,10,13,[[429,1,1,10,11],[431,2,2,11,13]]],[17,1,1,13,14,[[464,1,1,13,14]]],[22,1,1,14,15,[[737,1,1,14,15]]],[25,2,2,15,17,[[817,2,2,15,17]]],[26,1,1,17,18,[[858,1,1,17,18]]]],[5288,7039,7041,7044,11795,11881,12261,12494,12496,12509,12768,12802,12804,13539,18814,20786,20793,22013]]],["streets",[18,17,[[18,2,2,0,2,[[532,1,1,0,1],[621,1,1,1,2]]],[19,5,5,2,7,[[628,1,1,2,3],[632,1,1,3,4],[634,1,1,4,5],[649,1,1,5,6],[653,1,1,6,7]]],[22,1,1,7,8,[[693,1,1,7,8]]],[23,3,3,8,11,[[792,1,1,8,9],[793,1,1,9,10],[794,1,1,10,11]]],[24,3,3,11,14,[[798,2,2,11,13],[800,1,1,13,14]]],[29,1,1,14,15,[[883,1,1,14,15]]],[37,3,2,15,17,[[918,3,2,15,17]]]],[14743,16319,16420,16533,16587,17028,17154,17963,20118,20153,20196,20343,20344,20438,22439,22980,22981]]],["ways",[2,2,[[21,1,1,0,1,[[673,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[17573,22703]]]]},{"k":"H7340","v":[["Rehob",[10,10,[[3,1,1,0,1,[[129,1,1,0,1]]],[5,3,3,1,4,[[205,2,2,1,3],[207,1,1,3,4]]],[6,1,1,4,5,[[211,1,1,4,5]]],[9,3,3,5,8,[[274,2,2,5,7],[276,1,1,7,8]]],[12,1,1,8,9,[[343,1,1,8,9]]],[15,1,1,9,10,[[422,1,1,9,10]]]],[4096,6349,6351,6412,6540,8212,8221,8248,10529,12560]]]]},{"k":"H7341","v":[["*",[101,89,[[0,2,2,0,2,[[5,1,1,0,1],[12,1,1,1,2]]],[1,22,22,2,24,[[74,3,3,2,5],[75,3,3,5,8],[76,4,4,8,12],[77,1,1,12,13],[79,1,1,13,14],[85,3,3,14,17],[86,4,4,17,21],[87,2,2,21,23],[88,1,1,23,24]]],[4,1,1,24,25,[[155,1,1,24,25]]],[10,11,8,25,33,[[294,1,1,25,26],[296,7,4,26,30],[297,3,3,30,33]]],[13,6,5,33,38,[[369,4,3,33,36],[370,1,1,36,37],[372,1,1,37,38]]],[17,1,1,38,39,[[472,1,1,38,39]]],[22,1,1,39,40,[[686,1,1,39,40]]],[25,55,47,40,87,[[841,18,17,40,57],[842,15,11,57,68],[843,5,5,68,73],[844,5,4,73,77],[846,4,4,77,81],[847,1,1,81,82],[849,7,5,82,87]]],[37,2,2,87,89,[[912,1,1,87,88],[915,1,1,88,89]]]],[152,335,2205,2212,2218,2237,2243,2251,2273,2284,2285,2290,2309,2384,2575,2581,2587,2605,2610,2614,2629,2634,2651,2673,4986,8873,8898,8899,8902,8916,8936,8940,8961,11232,11233,11237,11247,11295,13779,17815,21482,21483,21484,21488,21490,21496,21497,21498,21502,21506,21507,21510,21513,21519,21524,21525,21526,21527,21528,21529,21530,21531,21533,21535,21536,21537,21538,21540,21554,21556,21562,21563,21572,21585,21586,21588,21589,21631,21633,21635,21636,21677,21710,21711,21712,21715,21717,22901,22938]]],["breadth",[74,68,[[0,2,2,0,2,[[5,1,1,0,1],[12,1,1,1,2]]],[1,21,21,2,23,[[74,3,3,2,5],[75,3,3,5,8],[76,3,3,8,11],[77,1,1,11,12],[79,1,1,12,13],[85,3,3,13,16],[86,4,4,16,20],[87,2,2,20,22],[88,1,1,22,23]]],[4,1,1,23,24,[[155,1,1,23,24]]],[10,7,6,24,30,[[296,4,3,24,27],[297,3,3,27,30]]],[13,5,4,30,34,[[369,4,3,30,33],[370,1,1,33,34]]],[17,1,1,34,35,[[472,1,1,34,35]]],[22,1,1,35,36,[[686,1,1,35,36]]],[25,34,30,36,66,[[841,10,10,36,46],[842,9,8,46,54],[843,2,2,54,56],[844,3,2,56,58],[846,3,3,58,61],[849,7,5,61,66]]],[37,2,2,66,68,[[912,1,1,66,67],[915,1,1,67,68]]]],[152,335,2205,2212,2218,2237,2243,2251,2284,2285,2290,2309,2384,2575,2581,2587,2605,2610,2614,2629,2634,2651,2673,4986,8898,8899,8916,8936,8940,8961,11232,11233,11237,11247,13779,17815,21482,21488,21490,21496,21497,21498,21502,21513,21525,21526,21527,21528,21529,21530,21531,21533,21537,21540,21554,21556,21585,21586,21631,21633,21635,21710,21711,21712,21715,21717,22901,22938]]],["broad",[22,18,[[1,1,1,0,1,[[76,1,1,0,1]]],[10,3,1,1,2,[[296,3,1,1,2]]],[13,1,1,2,3,[[372,1,1,2,3]]],[25,17,15,3,18,[[841,8,7,3,10],[842,3,2,10,12],[843,2,2,12,14],[844,2,2,14,16],[846,1,1,16,17],[847,1,1,17,18]]]],[2273,8902,11295,21483,21484,21506,21507,21510,21519,21524,21527,21538,21563,21572,21588,21589,21636,21677]]],["largeness",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8873]]],["thick",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21538]]],["thickness",[2,2,[[25,2,2,0,2,[[842,1,1,0,1],[843,1,1,1,2]]]],[21535,21562]]],["wideness",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21536]]]]},{"k":"H7342","v":[["*",[20,20,[[0,1,1,0,1,[[33,1,1,0,1]]],[1,1,1,1,2,[[52,1,1,1,2]]],[6,1,1,2,3,[[228,1,1,2,3]]],[12,1,1,3,4,[[341,1,1,3,4]]],[15,5,5,4,9,[[415,1,1,4,5],[416,1,1,5,6],[419,1,1,6,7],[421,1,1,7,8],[424,1,1,8,9]]],[17,2,2,9,11,[[446,1,1,9,10],[465,1,1,10,11]]],[18,4,4,11,15,[[578,1,1,11,12],[581,1,1,12,13],[596,2,2,13,15]]],[19,2,2,15,17,[[648,1,1,15,16],[655,1,1,16,17]]],[22,1,1,17,18,[[700,1,1,17,18]]],[23,1,1,18,19,[[795,1,1,18,19]]],[25,1,1,19,20,[[824,1,1,19,20]]]],[1001,1587,7003,10425,12335,12378,12424,12546,12662,13117,13571,15518,15596,15943,15994,16988,17221,18070,20270,21039]]],["+",[5,5,[[0,1,1,0,1,[[33,1,1,0,1]]],[12,1,1,1,2,[[341,1,1,1,2]]],[15,1,1,2,3,[[419,1,1,2,3]]],[18,1,1,3,4,[[581,1,1,3,4]]],[22,1,1,4,5,[[700,1,1,4,5]]]],[1001,10425,12424,15596,18070]]],["broad",[4,4,[[15,2,2,0,2,[[415,1,1,0,1],[424,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]]],[12335,12662,15994,20270]]],["broader",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13117]]],["large",[5,5,[[1,1,1,0,1,[[52,1,1,0,1]]],[6,1,1,1,2,[[228,1,1,1,2]]],[15,2,2,2,4,[[416,1,1,2,3],[421,1,1,3,4]]],[25,1,1,4,5,[[824,1,1,4,5]]]],[1587,7003,12378,12546,21039]]],["liberty",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15943]]],["proud",[3,3,[[18,1,1,0,1,[[578,1,1,0,1]]],[19,2,2,1,3,[[648,1,1,1,2],[655,1,1,2,3]]]],[15518,16988,17221]]],["wide",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13571]]]]},{"k":"H7343","v":[["Rahab",[5,5,[[5,5,5,0,5,[[188,2,2,0,2],[192,3,3,2,5]]]],[5870,5872,5966,5972,5974]]]]},{"k":"H7344","v":[["*",[4,4,[[0,3,3,0,3,[[9,1,1,0,1],[25,1,1,1,2],[35,1,1,2,3]]],[12,1,1,3,4,[[338,1,1,3,4]]]],[245,714,1077,10300]]],["+",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1077,10300]]],["Rehoboth",[2,2,[[0,2,2,0,2,[[9,1,1,0,1],[25,1,1,1,2]]]],[245,714]]]]},{"k":"H7345","v":[["Rehabiah",[5,3,[[12,5,3,0,3,[[360,2,1,0,1],[361,2,1,1,2],[363,1,1,2,3]]]],[11000,11036,11102]]]]},{"k":"H7346","v":[["Rehoboam",[50,41,[[10,21,17,0,17,[[301,1,1,0,1],[302,12,9,1,10],[304,7,6,10,16],[305,1,1,16,17]]],[12,1,1,17,18,[[340,1,1,17,18]]],[13,28,23,18,41,[[375,1,1,18,19],[376,8,7,19,26],[377,8,7,26,33],[378,9,7,33,40],[379,2,1,40,41]]]],[9151,9152,9154,9157,9163,9168,9169,9172,9174,9178,9239,9243,9245,9247,9248,9249,9255,10371,11395,11396,11398,11401,11407,11408,11412,11413,11415,11417,11419,11431,11432,11435,11436,11438,11439,11442,11447,11450,11452,11453,11460]]]]},{"k":"H7347","v":[["*",[6,5,[[1,1,1,0,1,[[60,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[4,2,1,2,3,[[176,2,1,2,3]]],[22,1,1,3,4,[[725,1,1,3,4]]],[23,1,1,4,5,[[769,1,1,4,5]]]],[1811,4032,5531,18601,19544]]],["mill",[1,1,[[1,1,1,0,1,[[60,1,1,0,1]]]],[1811]]],["mills",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4032]]],["millstone",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5531]]],["millstones",[2,2,[[22,1,1,0,1,[[725,1,1,0,1]]],[23,1,1,1,2,[[769,1,1,1,2]]]],[18601,19544]]],["nether",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5531]]]]},{"k":"H7348","v":[["Rehum",[8,8,[[14,5,5,0,5,[[404,1,1,0,1],[406,4,4,1,5]]],[15,3,3,5,8,[[415,1,1,5,6],[422,1,1,6,7],[424,1,1,7,8]]]],[12029,12118,12119,12127,12133,12344,12574,12627]]]]},{"k":"H7349","v":[["*",[13,13,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,1,1,1,2,[[156,1,1,1,2]]],[13,1,1,2,3,[[396,1,1,2,3]]],[15,2,2,3,5,[[421,2,2,3,5]]],[18,6,6,5,11,[[555,1,1,5,6],[563,1,1,6,7],[580,1,1,7,8],[588,1,1,8,9],[589,1,1,9,10],[622,1,1,10,11]]],[28,1,1,11,12,[[877,1,1,11,12]]],[31,1,1,12,13,[[892,1,1,12,13]]]],[2502,5035,11836,12528,12542,15151,15299,15557,15797,15807,16328,22324,22570]]],["compassion",[5,5,[[18,5,5,0,5,[[555,1,1,0,1],[563,1,1,1,2],[588,1,1,2,3],[589,1,1,3,4],[622,1,1,4,5]]]],[15151,15299,15797,15807,16328]]],["merciful",[8,8,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,1,1,1,2,[[156,1,1,1,2]]],[13,1,1,2,3,[[396,1,1,2,3]]],[15,2,2,3,5,[[421,2,2,3,5]]],[18,1,1,5,6,[[580,1,1,5,6]]],[28,1,1,6,7,[[877,1,1,6,7]]],[31,1,1,7,8,[[892,1,1,7,8]]]],[2502,5035,11836,12528,12542,15557,22324,22570]]]]},{"k":"H7350","v":[["*",[85,85,[[0,2,2,0,2,[[21,1,1,0,1],[36,1,1,1,2]]],[1,4,4,2,6,[[51,1,1,2,3],[69,2,2,3,5],[73,1,1,5,6]]],[3,1,1,6,7,[[125,1,1,6,7]]],[4,5,5,7,12,[[165,1,1,7,8],[172,1,1,8,9],[180,1,1,9,10],[181,1,1,10,11],[182,1,1,11,12]]],[5,4,4,12,16,[[189,1,1,12,13],[195,3,3,13,16]]],[6,2,2,16,18,[[228,2,2,16,18]]],[8,1,1,18,19,[[261,1,1,18,19]]],[9,1,1,19,20,[[273,1,1,19,20]]],[10,2,2,20,22,[[298,2,2,20,22]]],[11,3,3,22,25,[[314,1,1,22,23],[331,1,1,23,24],[332,1,1,24,25]]],[12,1,1,25,26,[[354,1,1,25,26]]],[13,3,3,26,29,[[372,2,2,26,28],[392,1,1,28,29]]],[14,1,1,29,30,[[405,1,1,29,30]]],[15,2,2,30,32,[[416,1,1,30,31],[424,1,1,31,32]]],[16,1,1,32,33,[[434,1,1,32,33]]],[17,5,5,33,38,[[437,1,1,33,34],[471,2,2,34,36],[474,2,2,36,38]]],[18,7,7,38,45,[[487,1,1,38,39],[499,1,1,39,40],[515,1,1,40,41],[542,1,1,41,42],[580,1,1,42,43],[596,1,1,43,44],[616,1,1,44,45]]],[19,4,4,45,49,[[634,1,1,45,46],[642,1,1,46,47],[654,1,1,47,48],[658,1,1,48,49]]],[20,2,2,49,51,[[665,2,2,49,51]]],[22,18,18,51,69,[[683,1,1,51,52],[700,2,2,52,54],[701,1,1,54,55],[703,1,1,55,56],[711,1,1,56,57],[715,1,1,57,58],[717,1,1,58,59],[721,1,1,59,60],[724,1,1,60,61],[727,2,2,61,63],[735,2,2,63,65],[737,1,1,65,66],[738,2,2,66,68],[744,1,1,68,69]]],[23,8,8,69,77,[[756,1,1,69,70],[767,1,1,70,71],[769,1,1,71,72],[774,1,1,72,73],[775,1,1,73,74],[790,1,1,74,75],[792,1,1,75,76],[795,1,1,76,77]]],[25,3,3,77,80,[[807,1,1,77,78],[813,1,1,78,79],[823,1,1,79,80]]],[26,1,1,80,81,[[858,1,1,80,81]]],[28,1,1,81,82,[[878,1,1,81,82]]],[32,1,1,82,83,[[896,1,1,82,83]]],[34,1,1,83,84,[[903,1,1,83,84]]],[37,1,1,84,85,[[916,1,1,84,85]]]],[551,1101,1558,2069,2072,2178,3975,5279,5442,5660,5701,5719,5897,6043,6046,6059,7000,7021,7918,8199,9026,9031,9558,10086,10112,10880,11314,11318,11747,12110,12378,12667,12854,12903,13739,13761,13859,13863,14042,14205,14501,14865,15561,16053,16241,16594,16836,17179,17294,17452,17453,17765,18055,18063,18084,18119,18292,18378,18415,18511,18598,18637,18648,18774,18784,18814,18825,18830,18941,19251,19507,19560,19677,19694,20072,20104,20262,20575,20707,20981,21995,22351,22623,22739,22962]]],["+",[46,46,[[0,2,2,0,2,[[21,1,1,0,1],[36,1,1,1,2]]],[1,4,4,2,6,[[51,1,1,2,3],[69,2,2,3,5],[73,1,1,5,6]]],[4,1,1,6,7,[[180,1,1,6,7]]],[5,2,2,7,9,[[195,2,2,7,9]]],[8,1,1,9,10,[[261,1,1,9,10]]],[9,1,1,10,11,[[273,1,1,10,11]]],[10,1,1,11,12,[[298,1,1,11,12]]],[11,3,3,12,15,[[314,1,1,12,13],[331,1,1,13,14],[332,1,1,14,15]]],[12,1,1,15,16,[[354,1,1,15,16]]],[13,1,1,16,17,[[392,1,1,16,17]]],[14,1,1,17,18,[[405,1,1,17,18]]],[15,1,1,18,19,[[424,1,1,18,19]]],[17,5,5,19,24,[[437,1,1,19,20],[471,2,2,20,22],[474,2,2,22,24]]],[18,2,2,24,26,[[515,1,1,24,25],[616,1,1,25,26]]],[19,1,1,26,27,[[634,1,1,26,27]]],[22,13,13,27,40,[[683,1,1,27,28],[700,2,2,28,30],[701,1,1,30,31],[703,1,1,31,32],[715,1,1,32,33],[721,1,1,33,34],[727,2,2,34,36],[735,1,1,36,37],[737,1,1,37,38],[738,2,2,38,40]]],[23,4,4,40,44,[[767,1,1,40,41],[774,1,1,41,42],[775,1,1,42,43],[790,1,1,43,44]]],[32,1,1,44,45,[[896,1,1,44,45]]],[34,1,1,45,46,[[903,1,1,45,46]]]],[551,1101,1558,2069,2072,2178,5660,6043,6046,7918,8199,9026,9558,10086,10112,10880,11747,12110,12667,12903,13739,13761,13859,13863,14501,16241,16594,17765,18055,18063,18084,18119,18378,18511,18637,18648,18774,18814,18825,18830,19507,19677,19694,20072,22623,22739]]],["far",[20,20,[[4,1,1,0,1,[[181,1,1,0,1]]],[5,1,1,1,2,[[195,1,1,1,2]]],[6,2,2,2,4,[[228,2,2,2,4]]],[10,1,1,4,5,[[298,1,1,4,5]]],[13,1,1,5,6,[[372,1,1,5,6]]],[15,1,1,6,7,[[416,1,1,6,7]]],[16,1,1,7,8,[[434,1,1,7,8]]],[18,3,3,8,11,[[499,1,1,8,9],[580,1,1,9,10],[596,1,1,10,11]]],[19,2,2,11,13,[[642,1,1,11,12],[658,1,1,12,13]]],[20,1,1,13,14,[[665,1,1,13,14]]],[22,2,2,14,16,[[717,1,1,14,15],[724,1,1,15,16]]],[23,3,3,16,19,[[756,1,1,16,17],[769,1,1,17,18],[792,1,1,18,19]]],[25,1,1,19,20,[[823,1,1,19,20]]]],[5701,6059,7000,7021,9031,11314,12378,12854,14205,15561,16053,16836,17294,17452,18415,18598,19251,19560,20104,20981]]],["off",[18,18,[[3,1,1,0,1,[[125,1,1,0,1]]],[4,3,3,1,4,[[165,1,1,1,2],[172,1,1,2,3],[182,1,1,3,4]]],[13,1,1,4,5,[[372,1,1,4,5]]],[18,2,2,5,7,[[487,1,1,5,6],[542,1,1,6,7]]],[19,1,1,7,8,[[654,1,1,7,8]]],[20,1,1,8,9,[[665,1,1,8,9]]],[22,3,3,9,12,[[711,1,1,9,10],[735,1,1,10,11],[744,1,1,11,12]]],[23,1,1,12,13,[[795,1,1,12,13]]],[25,2,2,13,15,[[807,1,1,13,14],[813,1,1,14,15]]],[26,1,1,15,16,[[858,1,1,15,16]]],[28,1,1,16,17,[[878,1,1,16,17]]],[37,1,1,17,18,[[916,1,1,17,18]]]],[3975,5279,5442,5719,11318,14042,14865,17179,17453,18292,18784,18941,20262,20575,20707,21995,22351,22962]]],["space",[1,1,[[5,1,1,0,1,[[189,1,1,0,1]]]],[5897]]]]},{"k":"H7351","v":[["rafters",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17554]]]]},{"k":"H7352","v":[["far",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12157]]]]},{"k":"H7353","v":[["*",[4,4,[[0,2,2,0,2,[[30,1,1,0,1],[31,1,1,1,2]]],[21,1,1,2,3,[[676,1,1,2,3]]],[22,1,1,3,4,[[731,1,1,3,4]]]],[911,942,17620,18718]]],["ewes",[2,2,[[0,2,2,0,2,[[30,1,1,0,1],[31,1,1,1,2]]]],[911,942]]],["sheep",[2,2,[[21,1,1,0,1,[[676,1,1,0,1]]],[22,1,1,1,2,[[731,1,1,1,2]]]],[17620,18718]]]]},{"k":"H7354","v":[["*",[47,44,[[0,44,41,0,41,[[28,16,14,0,14],[29,10,9,14,23],[30,6,6,23,29],[32,3,3,29,32],[34,5,5,32,37],[45,3,3,37,40],[47,1,1,40,41]]],[7,1,1,41,42,[[235,1,1,41,42]]],[8,1,1,42,43,[[245,1,1,42,43]]],[23,1,1,43,44,[[775,1,1,43,44]]]],[801,804,805,806,807,811,812,813,815,820,823,824,825,826,831,832,836,837,838,844,845,852,855,877,887,892,905,906,907,961,962,967,1027,1030,1031,1035,1036,1405,1408,1411,1458,7201,7420,19706]]],["Rachel",[41,38,[[0,40,37,0,37,[[28,16,14,0,14],[29,9,8,14,22],[30,5,5,22,27],[32,3,3,27,30],[34,3,3,30,33],[45,3,3,33,36],[47,1,1,36,37]]],[7,1,1,37,38,[[235,1,1,37,38]]]],[801,804,805,806,807,811,812,813,815,820,823,824,825,826,831,832,836,838,844,845,852,855,877,887,892,905,907,961,962,967,1027,1030,1035,1405,1408,1411,1458,7201]]],["Rachel's",[5,5,[[0,4,4,0,4,[[29,1,1,0,1],[30,1,1,1,2],[34,2,2,2,4]]],[8,1,1,4,5,[[245,1,1,4,5]]]],[837,906,1031,1036,7420]]],["Rahel",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19706]]]]},{"k":"H7355","v":[["*",[47,43,[[1,2,1,0,1,[[82,2,1,0,1]]],[4,2,2,1,3,[[165,1,1,1,2],[182,1,1,2,3]]],[10,1,1,3,4,[[298,1,1,3,4]]],[11,1,1,4,5,[[325,1,1,4,5]]],[18,5,4,5,9,[[495,1,1,5,6],[579,1,1,6,7],[580,2,1,7,8],[593,1,1,8,9]]],[19,1,1,9,10,[[655,1,1,9,10]]],[22,12,12,10,22,[[687,1,1,10,11],[691,1,1,11,12],[692,1,1,12,13],[705,1,1,13,14],[708,1,1,14,15],[727,3,3,15,18],[732,2,2,18,20],[733,1,1,20,21],[738,1,1,21,22]]],[23,10,9,22,31,[[750,1,1,22,23],[756,1,1,23,24],[757,1,1,24,25],[765,1,1,25,26],[774,1,1,26,27],[775,2,1,27,28],[777,1,1,28,29],[786,1,1,29,30],[794,1,1,30,31]]],[24,1,1,31,32,[[799,1,1,31,32]]],[25,1,1,32,33,[[840,1,1,32,33]]],[27,7,6,33,39,[[862,2,2,33,35],[863,4,3,35,38],[875,1,1,38,39]]],[32,1,1,39,40,[[899,1,1,39,40]]],[34,1,1,40,41,[[905,1,1,40,41]]],[37,2,2,41,43,[[911,1,1,41,42],[920,1,1,42,43]]]],[2492,5289,5711,9035,9894,14119,15534,15562,15853,17209,17846,17924,17929,18162,18235,18646,18649,18651,18731,18733,18747,18831,19112,19264,19280,19447,19685,19711,19801,19987,20208,20386,21473,22100,22101,22106,22109,22128,22285,22683,22770,22890,23022]]],["+",[9,7,[[1,1,1,0,1,[[82,1,1,0,1]]],[18,2,1,1,2,[[580,2,1,1,2]]],[22,1,1,2,3,[[727,1,1,2,3]]],[23,2,1,3,4,[[775,2,1,3,4]]],[27,2,2,4,6,[[862,1,1,4,5],[863,1,1,5,6]]],[37,1,1,6,7,[[911,1,1,6,7]]]],[2492,15562,18651,19711,22100,22128,22890]]],["Ruhamah",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22106]]],["compassion",[5,5,[[4,2,2,0,2,[[165,1,1,0,1],[182,1,1,1,2]]],[23,1,1,2,3,[[756,1,1,2,3]]],[24,1,1,3,4,[[799,1,1,3,4]]],[32,1,1,4,5,[[899,1,1,4,5]]]],[5289,5711,19264,20386,22683]]],["love",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14119]]],["merciful",[1,1,[[18,1,1,0,1,[[593,1,1,0,1]]]],[15853]]],["mercy",[22,22,[[1,1,1,0,1,[[82,1,1,0,1]]],[19,1,1,1,2,[[655,1,1,1,2]]],[22,10,10,2,12,[[687,1,1,2,3],[692,1,1,3,4],[705,1,1,4,5],[708,1,1,5,6],[727,2,2,6,8],[732,2,2,8,10],[733,1,1,10,11],[738,1,1,11,12]]],[23,6,6,12,18,[[750,1,1,12,13],[757,1,1,13,14],[765,1,1,14,15],[774,1,1,15,16],[777,1,1,16,17],[794,1,1,17,18]]],[25,1,1,18,19,[[840,1,1,18,19]]],[27,2,2,19,21,[[863,1,1,19,20],[875,1,1,20,21]]],[34,1,1,21,22,[[905,1,1,21,22]]]],[2492,17209,17846,17929,18162,18235,18646,18649,18731,18733,18747,18831,19112,19280,19447,19685,19801,20208,21473,22128,22285,22770]]],["on",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[11,1,1,1,2,[[325,1,1,1,2]]]],[9035,9894]]],["pity",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17924]]],["upon",[5,5,[[18,1,1,0,1,[[579,1,1,0,1]]],[23,1,1,1,2,[[786,1,1,1,2]]],[27,2,2,2,4,[[862,1,1,2,3],[863,1,1,3,4]]],[37,1,1,4,5,[[920,1,1,4,5]]]],[15534,19987,22101,22109,23022]]]]},{"k":"H7356","v":[["*",[44,44,[[0,3,3,0,3,[[42,2,2,0,2],[48,1,1,2,3]]],[4,1,1,3,4,[[165,1,1,3,4]]],[6,1,1,4,5,[[215,1,1,4,5]]],[9,1,1,5,6,[[290,1,1,5,6]]],[10,2,2,6,8,[[293,1,1,6,7],[298,1,1,7,8]]],[12,1,1,8,9,[[358,1,1,8,9]]],[13,1,1,9,10,[[396,1,1,9,10]]],[15,5,5,10,15,[[413,1,1,10,11],[421,4,4,11,15]]],[18,11,11,15,26,[[502,1,1,15,16],[517,1,1,16,17],[528,1,1,17,18],[546,1,1,18,19],[554,1,1,19,20],[556,1,1,20,21],[580,1,1,21,22],[583,1,1,22,23],[596,2,2,23,25],[622,1,1,25,26]]],[19,2,2,26,28,[[639,1,1,26,27],[657,1,1,27,28]]],[22,5,5,28,33,[[724,1,1,28,29],[725,1,1,29,30],[732,1,1,30,31],[741,2,2,31,33]]],[23,2,2,33,35,[[760,1,1,33,34],[786,1,1,34,35]]],[24,1,1,35,36,[[799,1,1,35,36]]],[25,1,1,36,37,[[821,1,1,36,37]]],[26,3,3,37,40,[[850,1,1,37,38],[858,2,2,38,40]]],[27,1,1,40,41,[[863,1,1,40,41]]],[29,1,1,41,42,[[879,1,1,41,42]]],[37,2,2,42,44,[[911,1,1,42,43],[917,1,1,43,44]]]],[1304,1320,1498,5289,6653,8706,8842,9035,10947,11836,12307,12530,12538,12539,12542,14257,14536,14692,14951,15102,15193,15553,15697,15975,16054,16329,16729,17267,18589,18605,18730,18873,18881,19341,19987,20376,20921,21746,21997,22006,22124,22375,22894,22971]]],["bowels",[2,2,[[0,1,1,0,1,[[42,1,1,0,1]]],[10,1,1,1,2,[[293,1,1,1,2]]]],[1320,8842]]],["compassion",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[396,1,1,1,2]]]],[9035,11836]]],["compassions",[2,2,[[24,1,1,0,1,[[799,1,1,0,1]]],[37,1,1,1,2,[[917,1,1,1,2]]]],[20376,22971]]],["damsel",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6653]]],["love",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21746]]],["mercies",[25,25,[[9,1,1,0,1,[[290,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]],[15,3,3,2,5,[[421,3,3,2,5]]],[18,10,10,5,15,[[502,1,1,5,6],[517,1,1,6,7],[528,1,1,7,8],[546,1,1,8,9],[554,1,1,9,10],[556,1,1,10,11],[580,1,1,11,12],[596,2,2,12,14],[622,1,1,14,15]]],[19,1,1,15,16,[[639,1,1,15,16]]],[22,3,3,16,19,[[732,1,1,16,17],[741,2,2,17,19]]],[23,2,2,19,21,[[760,1,1,19,20],[786,1,1,20,21]]],[26,2,2,21,23,[[858,2,2,21,23]]],[27,1,1,23,24,[[863,1,1,23,24]]],[37,1,1,24,25,[[911,1,1,24,25]]]],[8706,10947,12530,12538,12539,14257,14536,14692,14951,15102,15193,15553,15975,16054,16329,16729,18730,18873,18881,19341,19987,21997,22006,22124,22894]]],["mercies'",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12542]]],["mercy",[4,4,[[0,1,1,0,1,[[42,1,1,0,1]]],[4,1,1,1,2,[[165,1,1,1,2]]],[15,1,1,2,3,[[413,1,1,2,3]]],[22,1,1,3,4,[[725,1,1,3,4]]]],[1304,5289,12307,18605]]],["pitied",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15697]]],["pity",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22375]]],["womb",[4,4,[[0,1,1,0,1,[[48,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]],[22,1,1,2,3,[[724,1,1,2,3]]],[25,1,1,3,4,[[821,1,1,3,4]]]],[1498,17267,18589,20921]]]]},{"k":"H7357","v":[["Raham",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10350]]]]},{"k":"H7358","v":[["*",[26,25,[[0,3,3,0,3,[[19,1,1,0,1],[28,1,1,1,2],[29,1,1,2,3]]],[1,4,4,3,7,[[62,3,3,3,6],[83,1,1,6,7]]],[3,4,4,7,11,[[119,1,1,7,8],[124,1,1,8,9],[128,1,1,9,10],[134,1,1,10,11]]],[8,2,2,11,13,[[236,2,2,11,13]]],[17,5,5,13,18,[[438,1,1,13,14],[445,1,1,14,15],[459,1,1,15,16],[466,1,1,16,17],[473,1,1,17,18]]],[18,3,3,18,21,[[499,1,1,18,19],[535,1,1,19,20],[587,1,1,20,21]]],[23,4,3,21,24,[[745,1,1,21,22],[764,3,2,22,24]]],[27,1,1,24,25,[[870,1,1,24,25]]]],[513,826,852,1869,1879,1882,2515,3704,3955,4071,4272,7217,7218,12915,13104,13456,13603,13801,14214,14782,15789,18951,19439,19440,22222]]],["+",[10,10,[[3,1,1,0,1,[[128,1,1,0,1]]],[17,3,3,1,4,[[438,1,1,1,2],[445,1,1,2,3],[473,1,1,3,4]]],[18,3,3,4,7,[[499,1,1,4,5],[535,1,1,5,6],[587,1,1,6,7]]],[23,3,3,7,10,[[745,1,1,7,8],[764,2,2,8,10]]]],[4071,12915,13104,13801,14214,14782,15789,18951,19439,19440]]],["matrix",[5,5,[[1,3,3,0,3,[[62,2,2,0,2],[83,1,1,2,3]]],[3,2,2,3,5,[[119,1,1,3,4],[134,1,1,4,5]]]],[1879,1882,2515,3704,4272]]],["womb",[10,10,[[0,2,2,0,2,[[28,1,1,0,1],[29,1,1,1,2]]],[1,1,1,2,3,[[62,1,1,2,3]]],[3,1,1,3,4,[[124,1,1,3,4]]],[8,2,2,4,6,[[236,2,2,4,6]]],[17,2,2,6,8,[[459,1,1,6,7],[466,1,1,7,8]]],[23,1,1,8,9,[[764,1,1,8,9]]],[27,1,1,9,10,[[870,1,1,9,10]]]],[826,852,1869,3955,7217,7218,13456,13603,19439,22222]]],["wombs",[1,1,[[0,1,1,0,1,[[19,1,1,0,1]]]],[513]]]]},{"k":"H7359","v":[["mercies",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21776]]]]},{"k":"H7360","v":[["eagle",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3015,5307]]]]},{"k":"H7361","v":[["two",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6653]]]]},{"k":"H7362","v":[["pitiful",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20430]]]]},{"k":"H7363","v":[["*",[3,3,[[0,1,1,0,1,[[0,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[23,1,1,2,3,[[767,1,1,2,3]]]],[1,5769,19493]]],["fluttereth",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5769]]],["moved",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[1]]],["shake",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19493]]]]},{"k":"H7364","v":[["*",[72,71,[[0,5,5,0,5,[[17,1,1,0,1],[18,1,1,1,2],[23,1,1,2,3],[42,2,2,3,5]]],[1,11,11,5,16,[[51,1,1,5,6],[78,2,2,6,8],[79,4,4,8,12],[89,4,4,12,16]]],[2,26,26,16,42,[[90,2,2,16,18],[97,2,2,18,20],[98,1,1,20,21],[103,2,2,21,23],[104,12,12,23,35],[105,4,4,35,39],[106,2,2,39,41],[111,1,1,41,42]]],[3,3,3,42,45,[[135,3,3,42,45]]],[4,2,2,45,47,[[173,1,1,45,46],[175,1,1,46,47]]],[6,1,1,47,48,[[229,1,1,47,48]]],[7,1,1,48,49,[[234,1,1,48,49]]],[8,1,1,49,50,[[260,1,1,49,50]]],[9,3,3,50,53,[[277,2,2,50,52],[278,1,1,52,53]]],[10,1,1,53,54,[[312,1,1,53,54]]],[11,3,3,54,57,[[317,3,3,54,57]]],[13,2,1,57,58,[[370,2,1,57,58]]],[17,2,2,58,60,[[444,1,1,58,59],[464,1,1,59,60]]],[18,3,3,60,63,[[503,1,1,60,61],[535,1,1,61,62],[550,1,1,62,63]]],[19,1,1,63,64,[[657,1,1,63,64]]],[21,2,2,64,66,[[675,2,2,64,66]]],[22,2,2,66,68,[[679,1,1,66,67],[682,1,1,67,68]]],[25,3,3,68,71,[[817,2,2,68,70],[824,1,1,70,71]]]],[428,459,623,1314,1321,1559,2340,2353,2400,2401,2402,2403,2719,2737,2738,2739,2754,2758,2923,2938,2967,3119,3120,3173,3174,3175,3176,3178,3179,3181,3184,3186,3189,3190,3195,3205,3225,3227,3229,3250,3251,3375,4296,4297,4308,5453,5511,7045,7175,7902,8261,8267,8306,9518,9657,9659,9660,11252,13081,13538,14279,14789,15033,17263,17601,17610,17670,17737,20766,20771,21047]]],["+",[12,12,[[1,2,2,0,2,[[79,1,1,0,1],[89,1,1,1,2]]],[2,7,7,2,9,[[98,1,1,2,3],[103,1,1,3,4],[104,1,1,4,5],[105,4,4,5,9]]],[4,1,1,9,10,[[173,1,1,9,10]]],[21,1,1,10,11,[[675,1,1,10,11]]],[22,1,1,11,12,[[682,1,1,11,12]]]],[2401,2738,2967,3120,3184,3205,3225,3227,3229,5453,17601,17737]]],["Wash",[3,3,[[7,1,1,0,1,[[234,1,1,0,1]]],[11,1,1,1,2,[[317,1,1,1,2]]],[22,1,1,2,3,[[679,1,1,2,3]]]],[7175,9660,17670]]],["bathe",[16,16,[[2,13,13,0,13,[[104,11,11,0,11],[106,2,2,11,13]]],[3,3,3,13,16,[[135,3,3,13,16]]]],[3173,3174,3175,3176,3178,3179,3181,3186,3189,3190,3195,3250,3251,4296,4297,4308]]],["myself",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13081]]],["wash",[25,24,[[0,3,3,0,3,[[17,1,1,0,1],[18,1,1,1,2],[23,1,1,2,3]]],[1,8,8,3,11,[[51,1,1,3,4],[78,2,2,4,6],[79,3,3,6,9],[89,2,2,9,11]]],[2,4,4,11,15,[[90,2,2,11,13],[103,1,1,13,14],[111,1,1,14,15]]],[4,1,1,15,16,[[175,1,1,15,16]]],[8,1,1,16,17,[[260,1,1,16,17]]],[9,1,1,17,18,[[277,1,1,17,18]]],[11,2,2,18,20,[[317,2,2,18,20]]],[13,2,1,20,21,[[370,2,1,20,21]]],[18,2,2,21,23,[[503,1,1,21,22],[535,1,1,22,23]]],[25,1,1,23,24,[[824,1,1,23,24]]]],[428,459,623,1559,2340,2353,2400,2402,2403,2719,2737,2754,2758,3119,3375,5511,7902,8267,9657,9659,11252,14279,14789,21047]]],["washed",[14,14,[[0,2,2,0,2,[[42,2,2,0,2]]],[1,1,1,2,3,[[89,1,1,2,3]]],[2,2,2,3,5,[[97,2,2,3,5]]],[6,1,1,5,6,[[229,1,1,5,6]]],[9,1,1,6,7,[[278,1,1,6,7]]],[10,1,1,7,8,[[312,1,1,7,8]]],[17,1,1,8,9,[[464,1,1,8,9]]],[18,1,1,9,10,[[550,1,1,9,10]]],[19,1,1,10,11,[[657,1,1,10,11]]],[21,1,1,11,12,[[675,1,1,11,12]]],[25,2,2,12,14,[[817,2,2,12,14]]]],[1314,1321,2739,2923,2938,7045,8306,9518,13538,15033,17263,17610,20766,20771]]],["washing",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8261]]]]},{"k":"H7365","v":[["trusted",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21835]]]]},{"k":"H7366","v":[["+",[2,2,[[18,2,2,0,2,[[537,1,1,0,1],[585,1,1,1,2]]]],[14815,15751]]]]},{"k":"H7367","v":[["washing",[2,2,[[21,2,2,0,2,[[674,1,1,0,1],[676,1,1,1,2]]]],[17584,17620]]]]},{"k":"H7368","v":[["*",[57,56,[[0,2,2,0,2,[[20,1,1,0,1],[43,1,1,1,2]]],[1,4,3,2,5,[[57,2,1,2,3],[72,1,1,3,4],[82,1,1,4,5]]],[4,2,2,5,7,[[164,1,1,5,6],[166,1,1,6,7]]],[5,2,2,7,9,[[189,1,1,7,8],[194,1,1,8,9]]],[6,1,1,9,10,[[228,1,1,9,10]]],[17,8,8,10,18,[[440,1,1,10,11],[446,1,1,11,12],[448,1,1,12,13],[454,1,1,13,14],[456,1,1,14,15],[457,2,2,15,17],[465,1,1,17,18]]],[18,11,11,18,29,[[499,2,2,18,20],[512,1,1,20,21],[515,1,1,21,22],[532,1,1,22,23],[548,1,1,23,24],[565,2,2,24,26],[580,1,1,26,27],[586,1,1,27,28],[596,1,1,28,29]]],[19,6,6,29,35,[[631,1,1,29,30],[632,1,1,30,31],[646,1,1,31,32],[649,2,2,32,34],[657,1,1,34,35]]],[20,2,2,35,37,[[661,1,1,35,36],[670,1,1,36,37]]],[22,8,8,37,45,[[684,1,1,37,38],[704,1,1,38,39],[707,1,1,39,40],[724,1,1,40,41],[727,1,1,41,42],[732,1,1,42,43],[737,2,2,43,45]]],[23,2,2,45,47,[[746,1,1,45,46],[771,1,1,46,47]]],[24,1,1,47,48,[[797,1,1,47,48]]],[25,5,5,48,53,[[809,1,1,48,49],[812,2,2,49,51],[844,1,1,51,52],[845,1,1,52,53]]],[28,2,2,53,55,[[877,1,1,53,54],[878,1,1,54,55]]],[32,1,1,55,56,[[899,1,1,55,56]]]],[529,1328,1738,2151,2480,5261,5314,5909,6006,7015,12955,13122,13174,13310,13371,13407,13412,13567,14215,14223,14432,14511,14739,14988,15316,15326,15561,15772,16048,16514,16525,16932,17020,17030,17259,17364,17529,17781,18145,18206,18599,18655,18737,18809,18811,18970,19606,20326,20610,20670,20671,21581,21609,22331,22349,22675]]],["+",[10,9,[[1,2,1,0,1,[[57,2,1,0,1]]],[17,1,1,1,2,[[454,1,1,1,2]]],[18,1,1,2,3,[[580,1,1,2,3]]],[19,1,1,3,4,[[632,1,1,3,4]]],[22,3,3,4,7,[[684,1,1,4,5],[707,1,1,5,6],[737,1,1,6,7]]],[23,1,1,7,8,[[771,1,1,7,8]]],[25,1,1,8,9,[[844,1,1,8,9]]]],[1738,13310,15561,16525,17781,18206,18809,19606,21581]]],["Withdraw",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13174]]],["away",[3,3,[[17,1,1,0,1,[[446,1,1,0,1]]],[18,1,1,1,2,[[565,1,1,1,2]]],[22,1,1,2,3,[[727,1,1,2,3]]]],[13122,15316,18655]]],["far",[29,29,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,2,2,1,3,[[164,1,1,1,2],[166,1,1,2,3]]],[5,1,1,3,4,[[189,1,1,3,4]]],[17,5,5,4,9,[[440,1,1,4,5],[456,1,1,5,6],[457,2,2,6,8],[465,1,1,8,9]]],[18,8,8,9,17,[[499,2,2,9,11],[512,1,1,11,12],[515,1,1,12,13],[548,1,1,13,14],[565,1,1,14,15],[586,1,1,15,16],[596,1,1,16,17]]],[19,5,5,17,22,[[631,1,1,17,18],[646,1,1,18,19],[649,2,2,19,21],[657,1,1,21,22]]],[22,2,2,22,24,[[704,1,1,22,23],[732,1,1,23,24]]],[23,1,1,24,25,[[746,1,1,24,25]]],[24,1,1,25,26,[[797,1,1,25,26]]],[25,2,2,26,28,[[812,1,1,26,27],[845,1,1,27,28]]],[28,1,1,28,29,[[878,1,1,28,29]]]],[2151,5261,5314,5909,12955,13371,13407,13412,13567,14215,14223,14432,14511,14988,15326,15772,16048,16514,16932,17020,17030,17259,18145,18737,18970,20326,20670,21609,22349]]],["go",[1,1,[[5,1,1,0,1,[[194,1,1,0,1]]]],[6006]]],["loosed",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17529]]],["off",[9,9,[[0,2,2,0,2,[[20,1,1,0,1],[43,1,1,1,2]]],[1,1,1,2,3,[[82,1,1,2,3]]],[18,1,1,3,4,[[532,1,1,3,4]]],[22,2,2,4,6,[[724,1,1,4,5],[737,1,1,5,6]]],[25,2,2,6,8,[[809,1,1,6,7],[812,1,1,7,8]]],[28,1,1,8,9,[[877,1,1,8,9]]]],[529,1328,2480,14739,18599,18811,20610,20671,22331]]],["refrain",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17364]]],["removed",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22675]]],["way",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7015]]]]},{"k":"H7369","v":[["far",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15047]]]]},{"k":"H7370","v":[["inditing",[1,1,[[18,1,1,0,1,[[522,1,1,0,1]]]],[14598]]]]},{"k":"H7371","v":[["shovel",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18241]]]]},{"k":"H7372","v":[["wet",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13444]]]]},{"k":"H7373","v":[["green",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13045]]]]},{"k":"H7374","v":[["fear",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20151]]]]},{"k":"H7375","v":[["fresher",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13675]]]]},{"k":"H7376","v":[["*",[6,6,[[11,1,1,0,1,[[320,1,1,0,1]]],[22,2,2,1,3,[[691,2,2,1,3]]],[27,2,2,3,5,[[871,1,1,3,4],[874,1,1,4,5]]],[33,1,1,5,6,[[902,1,1,5,6]]]],[9739,17922,17924,22239,22282,22722]]],["dash",[2,2,[[11,1,1,0,1,[[320,1,1,0,1]]],[22,1,1,1,2,[[691,1,1,1,2]]]],[9739,17924]]],["dashed",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17922]]],["pieces",[3,3,[[27,2,2,0,2,[[871,1,1,0,1],[874,1,1,1,2]]],[33,1,1,2,3,[[902,1,1,2,3]]]],[22239,22282,22722]]]]},{"k":"H7377","v":[["watering",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13780]]]]},{"k":"H7378","v":[["*",[66,58,[[0,4,4,0,4,[[25,3,3,0,3],[30,1,1,3,4]]],[1,3,2,4,6,[[66,2,1,4,5],[70,1,1,5,6]]],[3,2,2,6,8,[[136,2,2,6,8]]],[4,1,1,8,9,[[185,1,1,8,9]]],[6,8,5,9,14,[[216,4,2,9,11],[218,1,1,11,12],[221,2,1,12,13],[231,1,1,13,14]]],[8,3,3,14,17,[[237,1,1,14,15],[259,1,1,15,16],[260,1,1,16,17]]],[15,4,4,17,21,[[417,1,1,17,18],[425,3,3,18,21]]],[17,8,8,21,29,[[444,1,1,21,22],[445,1,1,22,23],[448,2,2,23,25],[458,1,1,25,26],[466,1,1,26,27],[468,1,1,27,28],[475,1,1,28,29]]],[18,5,5,29,34,[[512,1,1,29,30],[520,1,1,30,31],[551,1,1,31,32],[580,1,1,32,33],[596,1,1,33,34]]],[19,5,5,34,39,[[630,1,1,34,35],[649,1,1,35,36],[650,1,1,36,37],[652,2,2,37,39]]],[22,8,8,39,47,[[679,1,1,39,40],[681,1,1,40,41],[705,1,1,41,42],[723,1,1,42,43],[727,1,1,43,44],[728,1,1,44,45],[729,1,1,45,46],[735,1,1,46,47]]],[23,7,5,47,52,[[746,3,2,47,49],[756,1,1,49,50],[794,2,1,50,51],[795,1,1,51,52]]],[24,1,1,52,53,[[799,1,1,52,53]]],[27,4,2,53,55,[[863,2,1,53,54],[865,2,1,54,55]]],[29,1,1,55,56,[[885,1,1,55,56]]],[32,2,2,56,58,[[898,1,1,56,57],[899,1,1,57,58]]]],[712,713,714,909,1985,2095,4314,4324,5818,6685,6686,6720,6854,7124,7250,7854,7900,12389,12682,12688,12696,13054,13088,13161,13172,13425,13601,13663,13866,14411,14567,15070,15558,16052,16485,17038,17055,17121,17122,17671,17720,18159,18570,18661,18670,18695,18781,18974,18994,19250,20200,20248,20412,22107,22137,22468,22649,22673]]],["+",[10,8,[[6,2,1,0,1,[[221,2,1,0,1]]],[8,2,2,1,3,[[259,1,1,1,2],[260,1,1,2,3]]],[15,1,1,3,4,[[417,1,1,3,4]]],[18,1,1,4,5,[[551,1,1,4,5]]],[19,1,1,5,6,[[650,1,1,5,6]]],[23,3,2,6,8,[[794,2,1,6,7],[795,1,1,7,8]]]],[6854,7854,7900,12389,15070,17055,20200,20248]]],["Debate",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17122]]],["Plead",[3,3,[[18,2,2,0,2,[[512,1,1,0,1],[596,1,1,1,2]]],[27,1,1,2,3,[[863,1,1,2,3]]]],[14411,16052,22107]]],["Strive",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16485]]],["adversaries",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7250]]],["cause",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18695]]],["chide",[4,3,[[1,2,1,0,1,[[66,2,1,0,1]]],[6,1,1,1,2,[[218,1,1,1,2]]],[18,1,1,2,3,[[580,1,1,2,3]]]],[1985,6720,15558]]],["chode",[2,2,[[0,1,1,0,1,[[30,1,1,0,1]]],[3,1,1,1,2,[[136,1,1,1,2]]]],[909,4314]]],["complain",[1,1,[[6,1,1,0,1,[[231,1,1,0,1]]]],[7124]]],["contend",[6,6,[[17,2,2,0,2,[[444,1,1,0,1],[448,1,1,1,2]]],[22,2,2,2,4,[[728,1,1,2,3],[735,1,1,3,4]]],[29,1,1,4,5,[[885,1,1,4,5]]],[32,1,1,5,6,[[898,1,1,5,6]]]],[13054,13161,18670,18781,22468,22649]]],["contended",[4,4,[[15,3,3,0,3,[[425,3,3,0,3]]],[17,1,1,3,4,[[466,1,1,3,4]]]],[12682,12688,12696,13601]]],["contendest",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13088]]],["contendeth",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13866]]],["debate",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18159]]],["plead",[16,13,[[6,4,2,0,2,[[216,4,2,0,2]]],[17,2,2,2,4,[[448,1,1,2,3],[458,1,1,3,4]]],[18,1,1,4,5,[[520,1,1,4,5]]],[19,1,1,5,6,[[649,1,1,5,6]]],[22,2,2,6,8,[[679,1,1,6,7],[681,1,1,7,8]]],[23,4,3,8,11,[[746,3,2,8,10],[756,1,1,10,11]]],[27,1,1,11,12,[[863,1,1,11,12]]],[32,1,1,12,13,[[899,1,1,12,13]]]],[6685,6686,13172,13425,14567,17038,17671,17720,18974,18994,19250,22107,22673]]],["pleaded",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20412]]],["strive",[6,5,[[0,1,1,0,1,[[25,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[17,1,1,2,3,[[468,1,1,2,3]]],[19,1,1,3,4,[[652,1,1,3,4]]],[27,2,1,4,5,[[865,2,1,4,5]]]],[712,5818,13663,17121,22137]]],["striveth",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18570]]],["strove",[3,3,[[0,2,2,0,2,[[25,2,2,0,2]]],[3,1,1,2,3,[[136,1,1,2,3]]]],[713,714,4324]]],["together",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2095]]],["with",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18661]]]]},{"k":"H7379","v":[["*",[60,59,[[0,1,1,0,1,[[12,1,1,0,1]]],[1,4,4,1,5,[[66,1,1,1,2],[72,3,3,2,5]]],[4,5,5,5,10,[[153,1,1,5,6],[169,1,1,6,7],[171,1,1,7,8],[173,1,1,8,9],[177,1,1,9,10]]],[6,1,1,10,11,[[222,1,1,10,11]]],[8,2,2,11,13,[[259,1,1,11,12],[260,1,1,12,13]]],[9,3,3,13,16,[[281,2,2,13,15],[288,1,1,15,16]]],[13,2,2,16,18,[[385,2,2,16,18]]],[17,3,3,18,21,[[448,1,1,18,19],[464,1,1,19,20],[466,1,1,20,21]]],[18,7,7,21,28,[[495,1,1,21,22],[508,1,1,22,23],[512,1,1,23,24],[520,1,1,24,25],[532,1,1,25,26],[551,1,1,26,27],[596,1,1,27,28]]],[19,12,12,28,40,[[642,1,1,28,29],[644,2,2,29,31],[645,2,2,31,33],[647,1,1,33,34],[649,1,1,34,35],[650,1,1,35,36],[652,1,1,36,37],[653,2,2,37,39],[657,1,1,39,40]]],[22,5,5,40,45,[[679,1,1,40,41],[712,1,1,41,42],[719,2,2,42,44],[736,1,1,44,45]]],[23,6,6,45,51,[[755,1,1,45,46],[759,1,1,46,47],[764,1,1,47,48],[769,1,1,48,49],[794,1,1,49,50],[795,1,1,50,51]]],[24,2,2,51,53,[[799,2,2,51,53]]],[25,1,1,53,54,[[845,1,1,53,54]]],[27,2,2,54,56,[[865,1,1,54,55],[873,1,1,55,56]]],[32,3,2,56,58,[[898,2,1,56,57],[899,1,1,57,58]]],[34,1,1,58,59,[[903,1,1,58,59]]]],[325,1990,2146,2147,2150,4904,5372,5423,5452,5548,6871,7854,7900,8391,8393,8646,11584,11586,13159,13548,13623,14161,14351,14433,14567,14741,15070,16052,16825,16874,16887,16907,16918,16957,17038,17055,17122,17158,17162,17284,17677,18311,18462,18472,18790,19246,19325,19434,19565,20200,20248,20390,20412,21623,22134,22254,22650,22673,22734]]],["+",[8,8,[[6,1,1,0,1,[[222,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[13,1,1,2,3,[[385,1,1,2,3]]],[17,1,1,3,4,[[466,1,1,3,4]]],[18,3,3,4,7,[[495,1,1,4,5],[508,1,1,5,6],[551,1,1,6,7]]],[19,1,1,7,8,[[647,1,1,7,8]]]],[6871,8646,11586,13623,14161,14351,15070,16957]]],["cause",[21,21,[[1,3,3,0,3,[[72,3,3,0,3]]],[8,2,2,3,5,[[259,1,1,3,4],[260,1,1,4,5]]],[17,1,1,5,6,[[464,1,1,5,6]]],[18,3,3,6,9,[[512,1,1,6,7],[520,1,1,7,8],[596,1,1,8,9]]],[19,4,4,9,13,[[645,1,1,9,10],[649,1,1,10,11],[650,1,1,11,12],[652,1,1,12,13]]],[22,2,2,13,15,[[679,1,1,13,14],[719,1,1,14,15]]],[23,4,4,15,19,[[755,1,1,15,16],[764,1,1,16,17],[794,1,1,17,18],[795,1,1,18,19]]],[24,1,1,19,20,[[799,1,1,19,20]]],[32,1,1,20,21,[[899,1,1,20,21]]]],[2146,2147,2150,7854,7900,13548,14433,14567,16052,16918,17038,17055,17122,17677,18472,19246,19434,20200,20248,20390,22673]]],["causes",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20412]]],["chiding",[1,1,[[1,1,1,0,1,[[66,1,1,0,1]]]],[1990]]],["contention",[2,2,[[19,2,2,0,2,[[644,1,1,0,1],[645,1,1,1,2]]]],[16887,16907]]],["controversies",[1,1,[[13,1,1,0,1,[[385,1,1,0,1]]]],[11584]]],["controversy",[12,11,[[4,4,4,0,4,[[169,1,1,0,1],[171,1,1,1,2],[173,1,1,2,3],[177,1,1,3,4]]],[9,1,1,4,5,[[281,1,1,4,5]]],[22,1,1,5,6,[[712,1,1,5,6]]],[23,1,1,6,7,[[769,1,1,6,7]]],[25,1,1,7,8,[[845,1,1,7,8]]],[27,2,2,8,10,[[865,1,1,8,9],[873,1,1,9,10]]],[32,2,1,10,11,[[898,2,1,10,11]]]],[5372,5423,5452,5548,8391,18311,19565,21623,22134,22254,22650]]],["pleadings",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13159]]],["strife",[11,11,[[0,1,1,0,1,[[12,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[18,1,1,2,3,[[532,1,1,2,3]]],[19,5,5,3,8,[[642,1,1,3,4],[644,1,1,4,5],[653,2,2,5,7],[657,1,1,7,8]]],[22,1,1,8,9,[[736,1,1,8,9]]],[23,1,1,9,10,[[759,1,1,9,10]]],[34,1,1,10,11,[[903,1,1,10,11]]]],[325,4904,14741,16825,16874,17158,17162,17284,18790,19325,22734]]],["strive",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18462]]],["suit",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8393]]]]},{"k":"H7380","v":[["Ribai",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8682,10704]]]]},{"k":"H7381","v":[["*",[58,55,[[0,4,2,0,2,[[7,1,1,0,1],[26,3,1,1,2]]],[1,4,4,2,6,[[54,1,1,2,3],[78,3,3,3,6]]],[2,17,17,6,23,[[90,3,3,6,9],[91,3,3,9,12],[92,2,2,12,14],[93,1,1,14,15],[95,2,2,15,17],[97,2,2,17,19],[106,1,1,19,20],[112,2,2,20,22],[115,1,1,22,23]]],[3,18,18,23,41,[[131,6,6,23,29],[134,1,1,29,30],[144,6,6,30,36],[145,5,5,36,41]]],[17,1,1,41,42,[[449,1,1,41,42]]],[21,8,7,42,49,[[671,2,2,42,44],[672,1,1,44,45],[674,3,2,45,47],[677,2,2,47,49]]],[23,1,1,49,50,[[792,1,1,49,50]]],[25,4,4,50,54,[[807,1,1,50,51],[817,1,1,51,52],[821,2,2,52,54]]],[27,1,1,54,55,[[875,1,1,54,55]]]],[204,754,1653,2354,2361,2377,2754,2758,2762,2764,2771,2774,2783,2794,2826,2864,2870,2938,2945,3241,3415,3420,3555,4156,4160,4163,4166,4167,4177,4274,4579,4583,4585,4590,4601,4604,4610,4614,4616,4621,4644,13190,17540,17549,17567,17592,17593,17635,17640,20091,20576,20781,20923,20936,22288]]],["+",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13190]]],["savour",[45,45,[[0,1,1,0,1,[[7,1,1,0,1]]],[1,4,4,1,5,[[54,1,1,1,2],[78,3,3,2,5]]],[2,17,17,5,22,[[90,3,3,5,8],[91,3,3,8,11],[92,2,2,11,13],[93,1,1,13,14],[95,2,2,14,16],[97,2,2,16,18],[106,1,1,18,19],[112,2,2,19,21],[115,1,1,21,22]]],[3,18,18,22,40,[[131,6,6,22,28],[134,1,1,28,29],[144,6,6,29,35],[145,5,5,35,40]]],[21,1,1,40,41,[[671,1,1,40,41]]],[25,4,4,41,45,[[807,1,1,41,42],[817,1,1,42,43],[821,2,2,43,45]]]],[204,1653,2354,2361,2377,2754,2758,2762,2764,2771,2774,2783,2794,2826,2864,2870,2938,2945,3241,3415,3420,3555,4156,4160,4163,4166,4167,4177,4274,4579,4583,4585,4590,4601,4604,4610,4614,4616,4621,4644,17540,20576,20781,20923,20936]]],["scent",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20091]]],["smell",[11,8,[[0,3,1,0,1,[[26,3,1,0,1]]],[21,7,6,1,7,[[671,1,1,1,2],[672,1,1,2,3],[674,3,2,3,5],[677,2,2,5,7]]],[27,1,1,7,8,[[875,1,1,7,8]]]],[754,17549,17567,17592,17593,17635,17640,22288]]]]},{"k":"H7382","v":[["smell",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21834]]]]},{"k":"H7383","v":[["*",[2,2,[[9,1,1,0,1,[[283,1,1,0,1]]],[19,1,1,1,2,[[654,1,1,1,2]]]],[8468,17191]]],["corn",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8468]]],["wheat",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17191]]]]},{"k":"H7384","v":[["Riphath",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[237,10258]]]]},{"k":"H7385","v":[["*",[12,12,[[2,2,2,0,2,[[115,2,2,0,2]]],[17,1,1,2,3,[[474,1,1,2,3]]],[18,3,3,3,6,[[479,1,1,3,4],[481,1,1,4,5],[550,1,1,5,6]]],[22,3,3,6,9,[[708,1,1,6,7],[727,1,1,7,8],[743,1,1,8,9]]],[23,2,2,9,11,[[795,2,2,9,11]]],[34,1,1,11,12,[[904,1,1,11,12]]]],[3540,3544,13850,13946,13967,15033,18224,18640,18920,20246,20270,22761]]],["empty",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20246]]],["purpose",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18224]]],["thing",[1,1,[[18,1,1,0,1,[[479,1,1,0,1]]]],[13946]]],["vain",[7,7,[[2,2,2,0,2,[[115,2,2,0,2]]],[17,1,1,2,3,[[474,1,1,2,3]]],[18,1,1,3,4,[[550,1,1,3,4]]],[22,2,2,4,6,[[727,1,1,4,5],[743,1,1,5,6]]],[23,1,1,6,7,[[795,1,1,6,7]]]],[3540,3544,13850,15033,18640,18920,20270]]],["vanity",[2,2,[[18,1,1,0,1,[[481,1,1,0,1]]],[34,1,1,1,2,[[904,1,1,1,2]]]],[13967,22761]]]]},{"k":"H7386","v":[["*",[14,14,[[0,2,2,0,2,[[36,1,1,0,1],[40,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[6,3,3,3,6,[[217,1,1,3,4],[219,1,1,4,5],[221,1,1,5,6]]],[9,1,1,6,7,[[272,1,1,6,7]]],[11,1,1,7,8,[[316,1,1,7,8]]],[13,1,1,8,9,[[379,1,1,8,9]]],[15,1,1,9,10,[[417,1,1,9,10]]],[19,2,2,10,12,[[639,1,1,10,11],[655,1,1,11,12]]],[22,1,1,12,13,[[707,1,1,12,13]]],[25,1,1,13,14,[[825,1,1,13,14]]]],[1107,1222,5805,6710,6758,6832,8177,9606,11460,12395,16730,17215,18201,21067]]],["emptied",[1,1,[[15,1,1,0,1,[[417,1,1,0,1]]]],[12395]]],["empty",[6,6,[[0,2,2,0,2,[[36,1,1,0,1],[40,1,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]],[11,1,1,3,4,[[316,1,1,3,4]]],[22,1,1,4,5,[[707,1,1,4,5]]],[25,1,1,5,6,[[825,1,1,5,6]]]],[1107,1222,6710,9606,18201,21067]]],["fellows",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8177]]],["vain",[6,6,[[4,1,1,0,1,[[184,1,1,0,1]]],[6,2,2,1,3,[[219,1,1,1,2],[221,1,1,2,3]]],[13,1,1,3,4,[[379,1,1,3,4]]],[19,2,2,4,6,[[639,1,1,4,5],[655,1,1,5,6]]]],[5805,6758,6832,11460,16730,17215]]]]},{"k":"H7387","v":[["*",[16,16,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,3,3,1,4,[[52,1,1,1,2],[72,1,1,2,3],[83,1,1,3,4]]],[4,2,2,4,6,[[167,1,1,4,5],[168,1,1,5,6]]],[7,2,2,6,8,[[232,1,1,6,7],[234,1,1,7,8]]],[8,1,1,8,9,[[241,1,1,8,9]]],[9,1,1,9,10,[[267,1,1,9,10]]],[17,1,1,10,11,[[457,1,1,10,11]]],[18,2,2,11,13,[[484,1,1,11,12],[502,1,1,12,13]]],[22,1,1,13,14,[[733,1,1,13,14]]],[23,2,2,14,16,[[758,1,1,14,15],[794,1,1,15,16]]]],[915,1600,2159,2516,5332,5358,7148,7189,7334,8044,13398,13999,14254,18751,19296,20175]]],["cause",[2,2,[[18,2,2,0,2,[[484,1,1,0,1],[502,1,1,1,2]]]],[13999,14254]]],["empty",[12,12,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,3,3,1,4,[[52,1,1,1,2],[72,1,1,2,3],[83,1,1,3,4]]],[4,2,2,4,6,[[167,1,1,4,5],[168,1,1,5,6]]],[7,2,2,6,8,[[232,1,1,6,7],[234,1,1,7,8]]],[8,1,1,8,9,[[241,1,1,8,9]]],[9,1,1,9,10,[[267,1,1,9,10]]],[17,1,1,10,11,[[457,1,1,10,11]]],[23,1,1,11,12,[[758,1,1,11,12]]]],[915,1600,2159,2516,5332,5358,7148,7189,7334,8044,13398,19296]]],["vain",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20175]]],["void",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18751]]]]},{"k":"H7388","v":[["*",[2,2,[[8,1,1,0,1,[[256,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]]],[7785,12984]]],["spittle",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7785]]],["white",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12984]]]]},{"k":"H7389","v":[["*",[7,7,[[19,7,7,0,7,[[633,1,1,0,1],[637,1,1,1,2],[640,1,1,2,3],[651,1,1,3,4],[655,1,1,4,5],[657,1,1,5,6],[658,1,1,6,7]]]],[16551,16671,16765,17113,17215,17259,17291]]],["Poverty",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16765]]],["poverty",[6,6,[[19,6,6,0,6,[[633,1,1,0,1],[637,1,1,1,2],[651,1,1,2,3],[655,1,1,3,4],[657,1,1,4,5],[658,1,1,5,6]]]],[16551,16671,17113,17215,17259,17291]]]]},{"k":"H7390","v":[["*",[16,16,[[0,3,3,0,3,[[17,1,1,0,1],[28,1,1,1,2],[32,1,1,2,3]]],[4,3,3,3,6,[[172,1,1,3,4],[180,2,2,4,6]]],[9,1,1,6,7,[[269,1,1,6,7]]],[12,2,2,7,9,[[359,1,1,7,8],[366,1,1,8,9]]],[13,1,1,9,10,[[379,1,1,9,10]]],[17,1,1,10,11,[[476,1,1,10,11]]],[19,3,3,11,14,[[631,1,1,11,12],[642,1,1,12,13],[652,1,1,13,14]]],[22,1,1,14,15,[[725,1,1,14,15]]],[25,1,1,15,16,[[818,1,1,15,16]]]],[431,812,973,5435,5665,5667,8120,10969,11165,11460,13891,16493,16808,17128,18600,20847]]],["+",[2,2,[[4,1,1,0,1,[[172,1,1,0,1]]],[13,1,1,1,2,[[379,1,1,1,2]]]],[5435,11460]]],["one",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20847]]],["soft",[3,3,[[17,1,1,0,1,[[476,1,1,0,1]]],[19,2,2,1,3,[[642,1,1,1,2],[652,1,1,2,3]]]],[13891,16808,17128]]],["tender",[9,9,[[0,3,3,0,3,[[17,1,1,0,1],[28,1,1,1,2],[32,1,1,2,3]]],[4,2,2,3,5,[[180,2,2,3,5]]],[12,2,2,5,7,[[359,1,1,5,6],[366,1,1,6,7]]],[19,1,1,7,8,[[631,1,1,7,8]]],[22,1,1,8,9,[[725,1,1,8,9]]]],[431,812,973,5665,5667,10969,11165,16493,18600]]],["weak",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8120]]]]},{"k":"H7391","v":[["+",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5667]]]]},{"k":"H7392","v":[["*",[78,75,[[0,3,3,0,3,[[23,1,1,0,1],[40,1,1,1,2],[48,1,1,2,3]]],[1,3,3,3,6,[[53,1,1,3,4],[64,2,2,4,6]]],[2,1,1,6,7,[[104,1,1,6,7]]],[3,2,2,7,9,[[138,2,2,7,9]]],[4,2,2,9,11,[[184,1,1,9,10],[185,1,1,10,11]]],[6,3,3,11,14,[[215,1,1,11,12],[220,1,1,12,13],[222,1,1,13,14]]],[8,3,3,14,17,[[260,2,2,14,16],[265,1,1,16,17]]],[9,6,6,17,23,[[272,1,1,17,18],[279,1,1,18,19],[282,1,1,19,20],[284,1,1,20,21],[285,1,1,21,22],[288,1,1,22,23]]],[10,5,5,23,28,[[291,3,3,23,26],[303,1,1,26,27],[308,1,1,27,28]]],[11,11,10,28,38,[[316,1,1,28,29],[321,5,5,29,34],[322,1,1,34,35],[325,2,1,35,36],[330,1,1,36,37],[335,1,1,37,38]]],[12,1,1,38,39,[[350,1,1,38,39]]],[13,1,1,39,40,[[401,1,1,39,40]]],[15,1,1,40,41,[[414,1,1,40,41]]],[16,5,5,41,46,[[431,3,3,41,44],[433,2,2,44,46]]],[17,2,2,46,48,[[465,1,1,46,47],[474,1,1,47,48]]],[18,5,5,48,53,[[495,1,1,48,49],[522,1,1,49,50],[543,1,1,50,51],[545,2,2,51,53]]],[22,4,4,53,57,[[697,1,1,53,54],[708,1,1,54,55],[714,1,1,55,56],[736,1,1,56,57]]],[23,6,5,57,62,[[750,1,1,57,58],[761,1,1,58,59],[766,1,1,59,60],[794,1,1,60,61],[795,2,1,61,62]]],[25,4,4,62,66,[[824,3,3,62,65],[839,1,1,65,66]]],[27,2,2,66,68,[[871,1,1,66,67],[875,1,1,67,68]]],[29,1,1,68,69,[[880,1,1,68,69]]],[34,1,1,69,70,[[905,1,1,69,70]]],[36,2,1,70,71,[[910,2,1,70,71]]],[37,4,4,71,75,[[911,1,1,71,72],[919,1,1,72,73],[920,1,1,73,74],[922,1,1,74,75]]]],[652,1238,1490,1621,1921,1941,3177,4397,4405,5771,5836,6633,6815,6883,7881,7903,7995,8160,8346,8428,8487,8537,8613,8750,8755,8761,9197,9386,9627,9772,9774,9775,9781,9784,9809,9887,10047,10195,10767,11990,12319,12801,12802,12804,12827,12831,13579,13852,14128,14601,14885,14904,14933,18005,18233,18338,18800,19112,19382,19458,20208,20233,21013,21019,21030,21440,22236,22285,22394,22776,22877,22886,23008,23021,23049]]],["+",[6,6,[[9,1,1,0,1,[[272,1,1,0,1]]],[10,1,1,1,2,[[291,1,1,1,2]]],[11,3,3,2,5,[[321,3,3,2,5]]],[12,1,1,5,6,[[350,1,1,5,6]]]],[8160,8761,9774,9775,9784,10767]]],["Put",[1,1,[[11,1,1,0,1,[[325,1,1,0,1]]]],[9887]]],["bring",[1,1,[[16,1,1,0,1,[[431,1,1,0,1]]]],[12802]]],["carried",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10195]]],["chariot",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9772]]],["horseback",[1,1,[[16,1,1,0,1,[[431,1,1,0,1]]]],[12804]]],["on",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8428]]],["put",[2,2,[[11,1,1,0,1,[[325,1,1,0,1]]],[13,1,1,1,2,[[401,1,1,1,2]]]],[9887,11990]]],["ridden",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4405]]],["ride",[18,18,[[0,1,1,0,1,[[40,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[6,1,1,2,3,[[215,1,1,2,3]]],[9,1,1,3,4,[[285,1,1,3,4]]],[10,2,2,4,6,[[291,2,2,4,6]]],[11,1,1,6,7,[[322,1,1,6,7]]],[17,1,1,7,8,[[465,1,1,7,8]]],[18,2,2,8,10,[[522,1,1,8,9],[543,1,1,9,10]]],[22,2,2,10,12,[[708,1,1,10,11],[736,1,1,11,12]]],[23,2,2,12,14,[[750,1,1,12,13],[794,1,1,13,14]]],[27,2,2,14,16,[[871,1,1,14,15],[875,1,1,15,16]]],[34,1,1,16,17,[[905,1,1,16,17]]],[36,1,1,17,18,[[910,1,1,17,18]]]],[1238,5771,6633,8537,8750,8755,9809,13579,14601,14885,18233,18800,19112,20208,22236,22285,22776,22877]]],["rider",[7,6,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,2,2,1,3,[[64,2,2,1,3]]],[17,1,1,3,4,[[474,1,1,3,4]]],[23,2,1,4,5,[[795,2,1,4,5]]],[37,1,1,5,6,[[922,1,1,5,6]]]],[1490,1921,1941,13852,20233,23049]]],["riders",[5,5,[[11,1,1,0,1,[[330,1,1,0,1]]],[16,1,1,1,2,[[433,1,1,1,2]]],[22,1,1,2,3,[[714,1,1,2,3]]],[36,1,1,3,4,[[910,1,1,3,4]]],[37,1,1,4,5,[[920,1,1,4,5]]]],[10047,12827,18338,22877,23021]]],["rideth",[6,6,[[2,1,1,0,1,[[104,1,1,0,1]]],[16,1,1,1,2,[[431,1,1,1,2]]],[18,2,2,2,4,[[545,2,2,2,4]]],[22,1,1,4,5,[[697,1,1,4,5]]],[29,1,1,5,6,[[880,1,1,5,6]]]],[3177,12801,14904,14933,18005,22394]]],["riding",[7,7,[[3,1,1,0,1,[[138,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]],[23,2,2,2,4,[[761,1,1,2,3],[766,1,1,3,4]]],[25,1,1,4,5,[[839,1,1,4,5]]],[37,2,2,5,7,[[911,1,1,5,6],[919,1,1,6,7]]]],[4397,9627,19382,19458,21440,22886,23008]]],["rode",[13,13,[[0,1,1,0,1,[[23,1,1,0,1]]],[6,2,2,1,3,[[220,1,1,1,2],[222,1,1,2,3]]],[8,3,3,3,6,[[260,2,2,3,5],[265,1,1,5,6]]],[9,2,2,6,8,[[284,1,1,6,7],[288,1,1,7,8]]],[10,2,2,8,10,[[303,1,1,8,9],[308,1,1,9,10]]],[11,1,1,10,11,[[321,1,1,10,11]]],[15,1,1,11,12,[[414,1,1,11,12]]],[18,1,1,12,13,[[495,1,1,12,13]]]],[652,6815,6883,7881,7903,7995,8487,8613,9197,9386,9781,12319,14128]]],["set",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1621]]],["up",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8346]]],["upon",[5,5,[[4,1,1,0,1,[[185,1,1,0,1]]],[16,1,1,1,2,[[433,1,1,1,2]]],[25,3,3,2,5,[[824,3,3,2,5]]]],[5836,12831,21013,21019,21030]]]]},{"k":"H7393","v":[["*",[119,104,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,10,9,1,10,[[63,9,8,1,9],[64,1,1,9,10]]],[4,3,3,10,13,[[163,1,1,10,11],[172,1,1,11,12],[176,1,1,12,13]]],[5,4,4,13,17,[[197,1,1,13,14],[203,2,2,14,16],[210,1,1,16,17]]],[6,9,8,17,25,[[211,1,1,17,18],[214,6,5,18,23],[215,1,1,23,24],[219,1,1,24,25]]],[8,2,2,25,27,[[243,1,1,25,26],[248,1,1,26,27]]],[9,5,4,27,31,[[267,1,1,27,28],[274,2,1,28,29],[276,1,1,29,30],[277,1,1,30,31]]],[10,16,13,31,44,[[291,1,1,31,32],[299,2,2,32,34],[300,3,1,34,35],[306,1,1,35,36],[310,4,3,36,39],[312,5,5,39,44]]],[11,19,17,44,61,[[314,2,2,44,46],[317,1,1,46,47],[318,3,3,47,50],[319,2,2,50,52],[320,2,1,52,53],[321,3,2,53,55],[322,2,2,55,57],[325,2,2,57,59],[330,1,1,59,60],[331,1,1,60,61]]],[12,6,4,61,65,[[355,3,1,61,62],[356,3,3,62,65]]],[13,14,11,65,76,[[367,3,1,65,66],[374,2,2,66,68],[375,1,1,68,69],[378,1,1,69,70],[382,1,1,70,71],[384,3,3,71,74],[387,2,1,74,75],[401,1,1,75,76]]],[18,3,3,76,79,[[497,1,1,76,77],[545,1,1,77,78],[553,1,1,78,79]]],[21,1,1,79,80,[[671,1,1,79,80]]],[22,11,9,80,89,[[699,4,2,80,82],[700,2,2,82,84],[709,1,1,84,85],[714,1,1,85,86],[715,1,1,86,87],[721,1,1,87,88],[744,1,1,88,89]]],[23,6,6,89,95,[[761,1,1,89,90],[766,1,1,90,91],[790,1,1,91,92],[791,1,1,92,93],[794,1,1,93,94],[795,1,1,94,95]]],[25,4,4,95,99,[[824,1,1,95,96],[827,2,2,96,98],[840,1,1,98,99]]],[26,1,1,99,100,[[860,1,1,99,100]]],[33,3,3,100,103,[[901,3,3,100,103]]],[37,1,1,103,104,[[919,1,1,103,104]]]],[1515,1895,1896,1898,1906,1907,1912,1915,1917,1939,5212,5428,5531,6111,6291,6293,6482,6528,6602,6606,6612,6614,6615,6651,6807,7381,7490,8028,8213,8258,8280,8722,9070,9073,9105,9292,9409,9429,9433,9511,9512,9513,9515,9518,9562,9563,9656,9688,9689,9691,9713,9721,9748,9777,9780,9795,9809,9878,9885,10048,10084,10894,10913,10914,10925,11208,11352,11355,11389,11440,11517,11572,11573,11574,11633,11990,14189,14917,15087,17546,18042,18044,18058,18059,18251,18339,18376,18522,18942,19382,19458,20054,20076,20203,20233,21031,21107,21110,21468,22076,22702,22703,22712,23009]]],["chariot",[29,25,[[1,1,1,0,1,[[63,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[9,1,1,2,3,[[274,1,1,2,3]]],[10,4,3,3,6,[[310,2,1,3,4],[312,2,2,4,6]]],[11,9,8,6,14,[[314,2,2,6,8],[317,1,1,8,9],[319,1,1,9,10],[321,3,2,10,12],[322,1,1,12,13],[325,1,1,13,14]]],[12,1,1,14,15,[[355,1,1,14,15]]],[13,4,4,15,19,[[367,1,1,15,16],[374,1,1,16,17],[375,1,1,17,18],[401,1,1,18,19]]],[18,1,1,19,20,[[553,1,1,19,20]]],[22,5,3,20,23,[[699,4,2,20,22],[721,1,1,22,23]]],[23,1,1,23,24,[[795,1,1,23,24]]],[37,1,1,24,25,[[919,1,1,24,25]]]],[1895,6651,8213,9433,9515,9518,9562,9563,9656,9721,9777,9780,9809,9885,10894,11208,11352,11389,11990,15087,18042,18044,18522,20233,23009]]],["chariots",[86,78,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,9,8,1,9,[[63,8,7,1,8],[64,1,1,8,9]]],[4,2,2,9,11,[[163,1,1,9,10],[172,1,1,10,11]]],[5,4,4,11,15,[[197,1,1,11,12],[203,2,2,12,14],[210,1,1,14,15]]],[6,7,6,15,21,[[211,1,1,15,16],[214,6,5,16,21]]],[8,2,2,21,23,[[243,1,1,21,22],[248,1,1,22,23]]],[9,3,3,23,26,[[267,1,1,23,24],[274,1,1,24,25],[276,1,1,25,26]]],[10,12,10,26,36,[[291,1,1,26,27],[299,2,2,27,29],[300,3,1,29,30],[306,1,1,30,31],[310,2,2,31,33],[312,3,3,33,36]]],[11,10,9,36,45,[[318,3,3,36,39],[319,1,1,39,40],[320,2,1,40,41],[322,1,1,41,42],[325,1,1,42,43],[330,1,1,43,44],[331,1,1,44,45]]],[12,5,4,45,49,[[355,2,1,45,46],[356,3,3,46,49]]],[13,10,8,49,57,[[367,2,1,49,50],[374,1,1,50,51],[378,1,1,51,52],[382,1,1,52,53],[384,3,3,53,56],[387,2,1,56,57]]],[18,2,2,57,59,[[497,1,1,57,58],[545,1,1,58,59]]],[21,1,1,59,60,[[671,1,1,59,60]]],[22,6,6,60,66,[[700,2,2,60,62],[709,1,1,62,63],[714,1,1,63,64],[715,1,1,64,65],[744,1,1,65,66]]],[23,5,5,66,71,[[761,1,1,66,67],[766,1,1,67,68],[790,1,1,68,69],[791,1,1,69,70],[794,1,1,70,71]]],[25,3,3,71,74,[[827,2,2,71,73],[840,1,1,73,74]]],[26,1,1,74,75,[[860,1,1,74,75]]],[33,3,3,75,78,[[901,3,3,75,78]]]],[1515,1896,1898,1906,1907,1912,1915,1917,1939,5212,5428,6111,6291,6293,6482,6528,6602,6606,6612,6614,6615,7381,7490,8028,8213,8258,8722,9070,9073,9105,9292,9409,9429,9511,9512,9513,9688,9689,9691,9713,9748,9795,9878,10048,10084,10894,10913,10914,10925,11208,11355,11440,11517,11572,11573,11574,11633,14189,14917,17546,18058,18059,18251,18339,18376,18942,19382,19458,20054,20076,20203,21107,21110,21468,22076,22702,22703,22712]]],["millstone",[2,2,[[6,1,1,0,1,[[219,1,1,0,1]]],[9,1,1,1,2,[[277,1,1,1,2]]]],[6807,8280]]],["upper",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5531]]],["wagons",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21031]]]]},{"k":"H7394","v":[["Rechab",[13,13,[[9,4,4,0,4,[[270,4,4,0,4]]],[11,2,2,4,6,[[322,2,2,4,6]]],[12,1,1,6,7,[[339,1,1,6,7]]],[15,1,1,7,8,[[415,1,1,7,8]]],[23,5,5,8,13,[[779,5,5,8,13]]]],[8122,8125,8126,8129,9808,9816,10361,12341,19829,19831,19837,19839,19842]]]]},{"k":"H7395","v":[["*",[3,3,[[10,1,1,0,1,[[312,1,1,0,1]]],[11,1,1,1,2,[[321,1,1,1,2]]],[13,1,1,2,3,[[384,1,1,2,3]]]],[9514,9773,11575]]],["chariot",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9514]]],["horseman",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9773]]],["man",[1,1,[[13,1,1,0,1,[[384,1,1,0,1]]]],[11575]]]]},{"k":"H7396","v":[["chariots",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21141]]]]},{"k":"H7397","v":[["*",[5,5,[[12,1,1,0,1,[[341,1,1,0,1]]],[23,4,4,1,5,[[779,4,4,1,5]]]],[10397,19825,19826,19828,19841]]],["Rechabites",[4,4,[[23,4,4,0,4,[[779,4,4,0,4]]]],[19825,19826,19828,19841]]],["Rechah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10397]]]]},{"k":"H7398","v":[["chariot",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15574]]]]},{"k":"H7399","v":[["*",[28,27,[[0,11,10,0,10,[[11,1,1,0,1],[12,1,1,1,2],[13,5,4,2,6],[14,1,1,6,7],[30,1,1,7,8],[35,1,1,8,9],[45,1,1,9,10]]],[3,2,2,10,12,[[132,1,1,10,11],[151,1,1,11,12]]],[12,2,2,12,14,[[364,1,1,12,13],[365,1,1,13,14]]],[13,6,6,14,20,[[386,1,1,14,15],[387,2,2,15,17],[397,1,1,17,18],[398,1,1,18,19],[401,1,1,19,20]]],[14,4,4,20,24,[[403,2,2,20,22],[410,1,1,22,23],[412,1,1,23,24]]],[26,3,3,24,27,[[860,3,3,24,27]]]],[303,324,347,348,352,357,374,891,1047,1392,4226,4848,11140,11144,11612,11638,11641,11857,11904,11973,12020,12022,12222,12260,22049,22060,22064]]],["+",[1,1,[[13,1,1,0,1,[[401,1,1,0,1]]]],[11973]]],["goods",[12,11,[[0,7,6,0,6,[[13,5,4,0,4],[30,1,1,4,5],[45,1,1,5,6]]],[3,2,2,6,8,[[132,1,1,6,7],[151,1,1,7,8]]],[13,1,1,8,9,[[387,1,1,8,9]]],[14,2,2,9,11,[[403,2,2,9,11]]]],[347,348,352,357,891,1392,4226,4848,11638,12020,12022]]],["riches",[5,5,[[0,1,1,0,1,[[35,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]],[26,3,3,2,5,[[860,3,3,2,5]]]],[1047,11612,22049,22060,22064]]],["substance",[10,10,[[0,3,3,0,3,[[11,1,1,0,1],[12,1,1,1,2],[14,1,1,2,3]]],[12,2,2,3,5,[[364,1,1,3,4],[365,1,1,4,5]]],[13,3,3,5,8,[[387,1,1,5,6],[397,1,1,6,7],[398,1,1,7,8]]],[14,2,2,8,10,[[410,1,1,8,9],[412,1,1,9,10]]]],[303,324,374,11140,11144,11641,11857,11904,12222,12260]]]]},{"k":"H7400","v":[["*",[6,6,[[2,1,1,0,1,[[108,1,1,0,1]]],[19,2,2,1,3,[[638,1,1,1,2],[647,1,1,2,3]]],[23,2,2,3,5,[[750,1,1,3,4],[753,1,1,4,5]]],[25,1,1,5,6,[[823,1,1,5,6]]]],[3297,16701,16973,19117,19179,20985]]],["+",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16701]]],["slanders",[2,2,[[23,2,2,0,2,[[750,1,1,0,1],[753,1,1,1,2]]]],[19117,19179]]],["talebearer",[2,2,[[2,1,1,0,1,[[108,1,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]]],[3297,16973]]],["tales",[1,1,[[25,1,1,0,1,[[823,1,1,0,1]]]],[20985]]]]},{"k":"H7401","v":[["*",[8,8,[[4,1,1,0,1,[[172,1,1,0,1]]],[11,1,1,1,2,[[334,1,1,1,2]]],[13,1,1,2,3,[[400,1,1,2,3]]],[17,1,1,3,4,[[458,1,1,3,4]]],[18,1,1,4,5,[[532,1,1,4,5]]],[22,2,2,5,7,[[679,1,1,5,6],[685,1,1,6,7]]],[23,1,1,7,8,[[795,1,1,7,8]]]],[5430,10164,11960,13435,14753,17660,17786,20258]]],["+",[2,2,[[17,1,1,0,1,[[458,1,1,0,1]]],[22,1,1,1,2,[[685,1,1,1,2]]]],[13435,17786]]],["faint",[2,2,[[4,1,1,0,1,[[172,1,1,0,1]]],[23,1,1,1,2,[[795,1,1,1,2]]]],[5430,20258]]],["mollified",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17660]]],["softer",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14753]]],["tender",[2,2,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]]],[10164,11960]]]]},{"k":"H7402","v":[["*",[17,15,[[10,1,1,0,1,[[300,1,1,0,1]]],[15,3,3,1,4,[[415,2,2,1,3],[425,1,1,3,4]]],[21,1,1,4,5,[[673,1,1,4,5]]],[25,11,9,5,14,[[818,1,1,5,6],[828,10,8,6,14]]],[33,1,1,14,15,[[902,1,1,14,15]]]],[9094,12358,12359,12691,17577,20829,21124,21134,21136,21138,21141,21143,21144,21145,22728]]],["merchant",[3,3,[[21,1,1,0,1,[[673,1,1,0,1]]],[25,2,2,1,3,[[828,2,2,1,3]]]],[17577,21124,21141]]],["merchants",[14,12,[[10,1,1,0,1,[[300,1,1,0,1]]],[15,3,3,1,4,[[415,2,2,1,3],[425,1,1,3,4]]],[25,9,7,4,11,[[818,1,1,4,5],[828,8,6,5,11]]],[33,1,1,11,12,[[902,1,1,11,12]]]],[9094,12358,12359,12691,20829,21134,21136,21138,21143,21144,21145,22728]]]]},{"k":"H7403","v":[["Rachal",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[8007]]]]},{"k":"H7404","v":[["*",[4,4,[[25,4,4,0,4,[[827,1,1,0,1],[829,3,3,1,4]]]],[21112,21162,21173,21175]]],["merchandise",[2,2,[[25,2,2,0,2,[[827,1,1,0,1],[829,1,1,1,2]]]],[21112,21173]]],["traffick",[2,2,[[25,2,2,0,2,[[829,2,2,0,2]]]],[21162,21175]]]]},{"k":"H7405","v":[["+",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2321,2685]]]]},{"k":"H7406","v":[["places",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18424]]]]},{"k":"H7407","v":[["+",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14351]]]]},{"k":"H7408","v":[["*",[5,4,[[0,5,4,0,4,[[11,1,1,0,1],[30,2,1,1,2],[35,1,1,2,3],[45,1,1,3,4]]]],[303,891,1046,1392]]],["gathered",[1,1,[[0,1,1,0,1,[[11,1,1,0,1]]]],[303]]],["got",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1046]]],["gotten",[3,2,[[0,3,2,0,2,[[30,2,1,0,1],[45,1,1,1,2]]]],[891,1392]]]]},{"k":"H7409","v":[["*",[4,4,[[10,1,1,0,1,[[294,1,1,0,1]]],[16,2,2,1,3,[[433,2,2,1,3]]],[32,1,1,3,4,[[893,1,1,3,4]]]],[8872,12827,12831,22592]]],["beast",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22592]]],["dromedaries",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8872]]],["mules",[2,2,[[16,2,2,0,2,[[433,2,2,0,2]]]],[12827,12831]]]]},{"k":"H7410","v":[["*",[7,6,[[7,2,1,0,1,[[235,2,1,0,1]]],[12,4,4,1,5,[[339,4,4,1,5]]],[17,1,1,5,6,[[467,1,1,5,6]]]],[7209,10315,10316,10331,10333,13630]]],["+",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7209]]],["Ram",[6,6,[[7,1,1,0,1,[[235,1,1,0,1]]],[12,4,4,1,5,[[339,4,4,1,5]]],[17,1,1,5,6,[[467,1,1,5,6]]]],[7209,10315,10316,10331,10333,13630]]]]},{"k":"H7411","v":[["*",[12,12,[[0,1,1,0,1,[[28,1,1,0,1]]],[1,2,2,1,3,[[64,2,2,1,3]]],[5,1,1,3,4,[[195,1,1,3,4]]],[8,2,2,4,6,[[254,1,1,4,5],[263,1,1,5,6]]],[9,1,1,6,7,[[285,1,1,6,7]]],[12,1,1,7,8,[[349,1,1,7,8]]],[18,1,1,8,9,[[555,1,1,8,9]]],[19,1,1,9,10,[[653,1,1,9,10]]],[23,1,1,10,11,[[748,1,1,10,11]]],[24,1,1,11,12,[[797,1,1,11,12]]]],[820,1921,1941,6059,7723,7954,8537,10737,15122,17160,19056,20329]]],["+",[2,2,[[19,1,1,0,1,[[653,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]]],[17160,19056]]],["beguiled",[2,2,[[0,1,1,0,1,[[28,1,1,0,1]]],[5,1,1,1,2,[[195,1,1,1,2]]]],[820,6059]]],["betray",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10737]]],["carrying",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15122]]],["deceived",[4,4,[[8,2,2,0,2,[[254,1,1,0,1],[263,1,1,1,2]]],[9,1,1,2,3,[[285,1,1,2,3]]],[24,1,1,3,4,[[797,1,1,3,4]]]],[7723,7954,8537,20329]]],["thrown",[2,2,[[1,2,2,0,2,[[64,2,2,0,2]]]],[1921,1941]]]]},{"k":"H7412","v":[["*",[12,12,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,11,11,1,12,[[852,6,6,1,7],[855,4,4,7,11],[856,1,1,11,12]]]],[12197,21813,21818,21822,21827,21828,21831,21912,21917,21921,21929,21942]]],["cast",[10,10,[[26,10,10,0,10,[[852,6,6,0,6],[855,4,4,6,10]]]],[21813,21818,21822,21827,21828,21831,21912,21917,21921,21929]]],["down",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21942]]],["impose",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12197]]]]},{"k":"H7413","v":[["*",[4,4,[[25,4,4,0,4,[[817,4,4,0,4]]]],[20786,20787,20793,20801]]],["place",[3,3,[[25,3,3,0,3,[[817,3,3,0,3]]]],[20786,20787,20793]]],["places",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20801]]]]},{"k":"H7414","v":[["Ramah",[36,34,[[5,3,3,0,3,[[204,1,1,0,1],[205,2,2,1,3]]],[6,2,2,3,5,[[214,1,1,3,4],[229,1,1,4,5]]],[8,16,14,5,19,[[236,1,1,5,6],[237,1,1,6,7],[242,1,1,7,8],[243,1,1,8,9],[250,1,1,9,10],[251,1,1,10,11],[254,6,4,11,15],[255,1,1,15,16],[257,1,1,16,17],[260,1,1,17,18],[263,1,1,18,19]]],[10,3,3,19,22,[[305,3,3,19,22]]],[11,1,1,22,23,[[320,1,1,22,23]]],[13,4,4,23,27,[[382,3,3,23,26],[388,1,1,26,27]]],[14,1,1,27,28,[[404,1,1,27,28]]],[15,2,2,28,30,[[419,1,1,28,29],[423,1,1,29,30]]],[22,1,1,30,31,[[688,1,1,30,31]]],[23,2,2,31,33,[[775,1,1,31,32],[784,1,1,32,33]]],[27,1,1,33,34,[[866,1,1,33,34]]]],[6318,6350,6357,6604,7037,7231,7251,7369,7373,7594,7608,7724,7725,7728,7729,7731,7793,7862,7945,9266,9270,9271,9756,11510,11514,11515,11650,12053,12450,12621,17879,19706,19942,22160]]]]},{"k":"H7415","v":[["*",[7,7,[[1,1,1,0,1,[[65,1,1,0,1]]],[17,5,5,1,6,[[442,1,1,1,2],[452,1,1,2,3],[456,1,1,3,4],[459,1,1,4,5],[460,1,1,5,6]]],[22,1,1,6,7,[[692,1,1,6,7]]]],[1971,13013,13274,13381,13456,13467,17939]]],["worm",[5,5,[[1,1,1,0,1,[[65,1,1,0,1]]],[17,3,3,1,4,[[452,1,1,1,2],[459,1,1,2,3],[460,1,1,3,4]]],[22,1,1,4,5,[[692,1,1,4,5]]]],[1971,13274,13456,13467,17939]]],["worms",[2,2,[[17,2,2,0,2,[[442,1,1,0,1],[456,1,1,1,2]]]],[13013,13381]]]]},{"k":"H7416","v":[["*",[32,25,[[1,8,5,0,5,[[77,3,2,0,2],[88,5,3,2,5]]],[3,2,2,5,7,[[129,1,1,5,6],[136,1,1,6,7]]],[4,1,1,7,8,[[160,1,1,7,8]]],[8,1,1,8,9,[[249,1,1,8,9]]],[10,4,3,9,12,[[297,4,3,9,12]]],[11,1,1,12,13,[[337,1,1,12,13]]],[13,3,2,13,15,[[369,1,1,13,14],[370,2,1,14,15]]],[21,6,6,15,21,[[674,2,2,15,17],[676,2,2,17,19],[677,1,1,19,20],[678,1,1,20,21]]],[23,4,2,21,23,[[796,4,2,21,23]]],[28,1,1,23,24,[[876,1,1,23,24]]],[36,1,1,24,25,[[910,1,1,24,25]]]],[2326,2327,2688,2689,2690,4098,4316,5145,7510,8952,8954,8976,10239,11245,11259,17585,17595,17621,17625,17639,17642,20298,20299,22303,22874]]],["pomegranate",[8,6,[[1,4,2,0,2,[[77,2,1,0,1],[88,2,1,1,2]]],[21,3,3,2,5,[[674,1,1,2,3],[676,1,1,3,4],[678,1,1,4,5]]],[36,1,1,5,6,[[910,1,1,5,6]]]],[2327,2690,17585,17621,17642,22874]]],["pomegranates",[22,17,[[1,4,3,0,3,[[77,1,1,0,1],[88,3,2,1,3]]],[3,2,2,3,5,[[129,1,1,3,4],[136,1,1,4,5]]],[4,1,1,5,6,[[160,1,1,5,6]]],[10,4,3,6,9,[[297,4,3,6,9]]],[11,1,1,9,10,[[337,1,1,9,10]]],[13,3,2,10,12,[[369,1,1,10,11],[370,2,1,11,12]]],[21,3,3,12,15,[[674,1,1,12,13],[676,1,1,13,14],[677,1,1,14,15]]],[23,4,2,15,17,[[796,4,2,15,17]]]],[2326,2688,2689,4098,4316,5145,8952,8954,8976,10239,11245,11259,17595,17625,17639,20298,20299]]],["tree",[2,2,[[8,1,1,0,1,[[249,1,1,0,1]]],[28,1,1,1,2,[[876,1,1,1,2]]]],[7510,22303]]]]},{"k":"H7417","v":[["*",[16,13,[[5,3,3,0,3,[[201,1,1,0,1],[205,2,2,1,3]]],[6,4,3,3,6,[[230,3,2,3,5],[231,1,1,5,6]]],[9,3,3,6,9,[[270,3,3,6,9]]],[11,3,1,9,10,[[317,3,1,9,10]]],[12,2,2,10,12,[[341,1,1,10,11],[343,1,1,11,12]]],[37,1,1,12,13,[[924,1,1,12,13]]]],[6234,6328,6334,7099,7101,7115,8122,8125,8129,9665,10417,10531,23078]]],["Remmon",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6328]]],["Remmonmethoar",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6334]]],["Rimmon",[14,11,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,4,3,1,4,[[230,3,2,1,3],[231,1,1,3,4]]],[9,3,3,4,7,[[270,3,3,4,7]]],[11,3,1,7,8,[[317,3,1,7,8]]],[12,2,2,8,10,[[341,1,1,8,9],[343,1,1,9,10]]],[37,1,1,10,11,[[924,1,1,10,11]]]],[6234,7099,7101,7115,8122,8125,8129,9665,10417,10531,23078]]]]},{"k":"H7418","v":[["*",[2,2,[[5,1,1,0,1,[[205,1,1,0,1]]],[8,1,1,1,2,[[265,1,1,1,2]]]],[6329,8005]]],["Ramath",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6329]]],["Ramoth",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[8005]]]]},{"k":"H7419","v":[["height",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21253]]]]},{"k":"H7420","v":[["*",[15,15,[[3,1,1,0,1,[[141,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[12,2,2,3,5,[[349,2,2,3,5]]],[13,4,4,5,9,[[377,1,1,5,6],[380,1,1,6,7],[391,1,1,7,8],[392,1,1,8,9]]],[15,3,3,9,12,[[416,3,3,9,12]]],[23,1,1,12,13,[[790,1,1,12,13]]],[25,1,1,13,14,[[840,1,1,13,14]]],[28,1,1,14,15,[[878,1,1,14,15]]]],[4478,6631,9369,10728,10744,11426,11483,11709,11746,12372,12375,12380,20049,21457,22353]]],["buckler",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10728]]],["javelin",[1,1,[[3,1,1,0,1,[[141,1,1,0,1]]]],[4478]]],["lancets",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9369]]],["spear",[3,3,[[6,1,1,0,1,[[215,1,1,0,1]]],[12,1,1,1,2,[[349,1,1,1,2]]],[13,1,1,2,3,[[391,1,1,2,3]]]],[6631,10744,11709]]],["spears",[9,9,[[13,3,3,0,3,[[377,1,1,0,1],[380,1,1,1,2],[392,1,1,2,3]]],[15,3,3,3,6,[[416,3,3,3,6]]],[23,1,1,6,7,[[790,1,1,6,7]]],[25,1,1,7,8,[[840,1,1,7,8]]],[28,1,1,8,9,[[878,1,1,8,9]]]],[11426,11483,11746,12372,12375,12380,20049,21457,22353]]]]},{"k":"H7421","v":[]},{"k":"H7422","v":[["Ramiah",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12277]]]]},{"k":"H7423","v":[["*",[15,15,[[17,2,2,0,2,[[448,1,1,0,1],[462,1,1,1,2]]],[18,6,6,2,8,[[509,1,1,2,3],[529,1,1,3,4],[555,1,1,4,5],[578,1,1,5,6],[597,2,2,6,8]]],[19,4,4,8,12,[[637,1,1,8,9],[639,2,2,9,11],[646,1,1,11,12]]],[23,1,1,12,13,[[792,1,1,12,13]]],[27,1,1,13,14,[[868,1,1,13,14]]],[32,1,1,14,15,[[898,1,1,14,15]]]],[13160,13485,14357,14712,15170,15520,16076,16077,16660,16743,16746,16940,20090,22194,22660]]],["deceit",[2,2,[[17,1,1,0,1,[[462,1,1,0,1]]],[18,1,1,1,2,[[578,1,1,1,2]]]],[13485,15520]]],["deceitful",[4,4,[[18,2,2,0,2,[[555,1,1,0,1],[597,1,1,1,2]]],[27,1,1,2,3,[[868,1,1,2,3]]],[32,1,1,3,4,[[898,1,1,3,4]]]],[15170,16076,22194,22660]]],["deceitfully",[3,3,[[17,1,1,0,1,[[448,1,1,0,1]]],[18,1,1,1,2,[[529,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]]],[13160,14712,20090]]],["false",[1,1,[[18,1,1,0,1,[[597,1,1,0,1]]]],[16077]]],["guile",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14357]]],["idle",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16940]]],["slack",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16660]]],["slothful",[2,2,[[19,2,2,0,2,[[639,2,2,0,2]]]],[16743,16746]]]]},{"k":"H7424","v":[["dromedaries",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12827]]]]},{"k":"H7425","v":[["*",[13,13,[[11,7,7,0,7,[[327,5,5,0,5],[328,2,2,5,7]]],[13,1,1,7,8,[[394,1,1,7,8]]],[22,5,5,8,13,[[685,4,4,8,12],[686,1,1,12,13]]]],[9950,9952,9955,9957,9962,9964,9968,11770,17783,17786,17787,17791,17813]]],["Remaliah",[11,11,[[11,7,7,0,7,[[327,5,5,0,5],[328,2,2,5,7]]],[13,1,1,7,8,[[394,1,1,7,8]]],[22,3,3,8,11,[[685,3,3,8,11]]]],[9950,9952,9955,9957,9962,9964,9968,11770,17783,17786,17787]]],["Remaliah's",[2,2,[[22,2,2,0,2,[[685,1,1,0,1],[686,1,1,1,2]]]],[17791,17813]]]]},{"k":"H7426","v":[["*",[5,5,[[3,1,1,0,1,[[132,1,1,0,1]]],[17,1,1,1,2,[[459,1,1,1,2]]],[25,3,3,2,5,[[811,3,3,2,5]]]],[4239,13460,20648,20650,20652]]],["exalted",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13460]]],["up",[4,4,[[3,1,1,0,1,[[132,1,1,0,1]]],[25,3,3,1,4,[[811,3,3,1,4]]]],[4239,20648,20650,20652]]]]},{"k":"H7427","v":[["+",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18282]]]]},{"k":"H7428","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4779,4780]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4780]]],["Rimmonparez",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4779]]]]},{"k":"H7429","v":[["*",[19,19,[[11,4,4,0,4,[[319,2,2,0,2],[321,1,1,2,3],[326,1,1,3,4]]],[13,1,1,4,5,[[391,1,1,4,5]]],[18,2,2,5,7,[[484,1,1,5,6],[568,1,1,6,7]]],[22,6,6,7,13,[[679,1,1,7,8],[694,1,1,8,9],[704,1,1,9,10],[706,1,1,10,11],[719,1,1,11,12],[741,1,1,12,13]]],[25,2,2,13,15,[[827,1,1,13,14],[835,1,1,14,15]]],[26,2,2,15,17,[[857,2,2,15,17]]],[32,1,1,17,18,[[897,1,1,17,18]]],[33,1,1,18,19,[[902,1,1,18,19]]]],[9724,9727,9789,9905,11722,14000,15408,17666,17973,18136,18167,18476,18869,21111,21331,21968,21971,22641,22726]]],["+",[3,3,[[11,1,1,0,1,[[326,1,1,0,1]]],[13,1,1,1,2,[[391,1,1,1,2]]],[25,1,1,2,3,[[827,1,1,2,3]]]],[9905,11722,21111]]],["down",[4,4,[[18,1,1,0,1,[[484,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]],[25,1,1,2,3,[[835,1,1,2,3]]],[32,1,1,3,4,[[897,1,1,3,4]]]],[14000,18136,21331,22641]]],["feet",[1,1,[[18,1,1,0,1,[[568,1,1,0,1]]]],[15408]]],["foot",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9789]]],["oppressors",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17973]]],["trample",[1,1,[[22,1,1,0,1,[[741,1,1,0,1]]]],[18869]]],["tread",[2,2,[[22,1,1,0,1,[[679,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[17666,22726]]],["treadeth",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18476]]],["trodden",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18167]]],["upon",[4,4,[[11,2,2,0,2,[[319,2,2,0,2]]],[26,2,2,2,4,[[857,2,2,2,4]]]],[9724,9727,21968,21971]]]]},{"k":"H7430","v":[["*",[17,17,[[0,10,10,0,10,[[0,4,4,0,4],[6,3,3,4,7],[7,2,2,7,9],[8,1,1,9,10]]],[2,3,3,10,13,[[100,2,2,10,12],[109,1,1,12,13]]],[4,1,1,13,14,[[156,1,1,13,14]]],[18,2,2,14,16,[[546,1,1,14,15],[581,1,1,15,16]]],[25,1,1,16,17,[[839,1,1,16,17]]]],[20,25,27,29,167,173,180,200,202,207,3041,3043,3343,5022,14969,15591,21445]]],["+",[1,1,[[2,1,1,0,1,[[109,1,1,0,1]]]],[3343]]],["creep",[2,2,[[18,1,1,0,1,[[581,1,1,0,1]]],[25,1,1,1,2,[[839,1,1,1,2]]]],[15591,21445]]],["creepeth",[8,8,[[0,6,6,0,6,[[0,2,2,0,2],[6,2,2,2,4],[7,2,2,4,6]]],[2,1,1,6,7,[[100,1,1,6,7]]],[4,1,1,7,8,[[156,1,1,7,8]]]],[25,29,167,173,200,202,3041,5022]]],["moved",[1,1,[[0,1,1,0,1,[[6,1,1,0,1]]]],[180]]],["moveth",[5,5,[[0,3,3,0,3,[[0,2,2,0,2],[8,1,1,2,3]]],[2,1,1,3,4,[[100,1,1,3,4]]],[18,1,1,4,5,[[546,1,1,4,5]]]],[20,27,207,3043,14969]]]]},{"k":"H7431","v":[["*",[17,17,[[0,10,10,0,10,[[0,3,3,0,3],[5,2,2,3,5],[6,2,2,5,7],[7,2,2,7,9],[8,1,1,9,10]]],[10,1,1,10,11,[[294,1,1,10,11]]],[18,2,2,11,13,[[581,1,1,11,12],[625,1,1,12,13]]],[25,2,2,13,15,[[809,1,1,13,14],[839,1,1,14,15]]],[27,1,1,15,16,[[863,1,1,15,16]]],[34,1,1,16,17,[[903,1,1,16,17]]]],[23,24,25,144,157,173,182,200,202,208,8877,15596,16381,20614,21445,22123,22745]]],["creepeth",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[24]]],["creeping",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15596]]],["thing",[8,8,[[0,8,8,0,8,[[0,2,2,0,2],[5,2,2,2,4],[6,1,1,4,5],[7,2,2,5,7],[8,1,1,7,8]]]],[23,25,144,157,173,200,202,208]]],["things",[7,7,[[0,1,1,0,1,[[6,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]],[18,1,1,2,3,[[625,1,1,2,3]]],[25,2,2,3,5,[[809,1,1,3,4],[839,1,1,4,5]]],[27,1,1,5,6,[[863,1,1,5,6]]],[34,1,1,6,7,[[903,1,1,6,7]]]],[182,8877,16381,20614,21445,22123,22745]]]]},{"k":"H7432","v":[["Remeth",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6342]]]]},{"k":"H7433","v":[["*",[20,20,[[10,8,8,0,8,[[294,1,1,0,1],[312,7,7,1,8]]],[11,4,4,8,12,[[320,1,1,8,9],[321,3,3,9,12]]],[13,8,8,12,20,[[384,7,7,12,19],[388,1,1,19,20]]]],[8857,9483,9484,9486,9492,9495,9500,9509,9755,9757,9760,9770,11544,11545,11547,11553,11556,11561,11570,11649]]],["Gilead",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9483]]],["Ramothgilead",[19,19,[[10,7,7,0,7,[[294,1,1,0,1],[312,6,6,1,7]]],[11,4,4,7,11,[[320,1,1,7,8],[321,3,3,8,11]]],[13,8,8,11,19,[[384,7,7,11,18],[388,1,1,18,19]]]],[8857,9484,9486,9492,9495,9500,9509,9755,9757,9760,9770,11544,11545,11547,11553,11556,11561,11570,11649]]]]},{"k":"H7434","v":[["Ramathmizpeh",[1,1,[[5,1,1,0,1,[[199,1,1,0,1]]]],[6180]]]]},{"k":"H7435","v":[["Ramathite",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11136]]]]},{"k":"H7436","v":[["Ramathaimzophim",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7213]]]]},{"k":"H7437","v":[["Ramathlehi",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6946]]]]},{"k":"H7438","v":[["songs",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14362]]]]},{"k":"H7439","v":[["rattleth",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13857]]]]},{"k":"H7440","v":[["*",[33,33,[[10,2,2,0,2,[[298,1,1,0,1],[312,1,1,1,2]]],[13,2,2,2,4,[[372,1,1,2,3],[386,1,1,3,4]]],[18,15,15,4,19,[[494,1,1,4,5],[507,1,1,5,6],[519,1,1,6,7],[524,1,1,7,8],[538,1,1,8,9],[565,1,1,9,10],[582,1,1,10,11],[583,1,1,11,12],[584,1,1,12,13],[595,1,1,13,14],[596,1,1,14,15],[603,3,3,15,18],[619,1,1,18,19]]],[19,1,1,19,20,[[638,1,1,19,20]]],[22,9,9,20,29,[[692,1,1,20,21],[713,1,1,21,22],[721,1,1,22,23],[722,1,1,23,24],[726,1,1,24,25],[727,1,1,25,26],[729,1,1,26,27],[732,1,1,27,28],[733,1,1,28,29]]],[23,3,3,29,32,[[751,1,1,29,30],[755,1,1,30,31],[758,1,1,31,32]]],[35,1,1,32,33,[[908,1,1,32,33]]]],[9013,9516,11301,11609,14104,14324,14559,14626,14820,15310,15649,15695,15721,15884,16067,16117,16120,16121,16292,16698,17935,18330,18519,18556,18634,18649,18684,18724,18752,19135,19240,19305,22837]]],["cry",[12,12,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[18,6,6,2,8,[[494,1,1,2,3],[538,1,1,3,4],[565,1,1,4,5],[583,1,1,5,6],[596,1,1,6,7],[619,1,1,7,8]]],[22,1,1,8,9,[[721,1,1,8,9]]],[23,3,3,9,12,[[751,1,1,9,10],[755,1,1,10,11],[758,1,1,11,12]]]],[9013,11301,14104,14820,15310,15695,16067,16292,18519,19135,19240,19305]]],["gladness",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15649]]],["joy",[3,3,[[18,3,3,0,3,[[507,1,1,0,1],[519,1,1,1,2],[603,1,1,2,3]]]],[14324,14559,16120]]],["proclamation",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9516]]],["rejoicing",[3,3,[[18,3,3,0,3,[[584,1,1,0,1],[595,1,1,1,2],[603,1,1,2,3]]]],[15721,15884,16121]]],["shouting",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16698]]],["sing",[1,1,[[13,1,1,0,1,[[386,1,1,0,1]]]],[11609]]],["singing",[9,9,[[18,1,1,0,1,[[603,1,1,0,1]]],[22,7,7,1,8,[[692,1,1,1,2],[722,1,1,2,3],[726,1,1,3,4],[727,1,1,4,5],[729,1,1,5,6],[732,1,1,6,7],[733,1,1,7,8]]],[35,1,1,8,9,[[908,1,1,8,9]]]],[16117,17935,18556,18634,18649,18684,18724,18752,22837]]],["songs",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18330]]],["triumph",[1,1,[[18,1,1,0,1,[[524,1,1,0,1]]]],[14626]]]]},{"k":"H7441","v":[["Rinnah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10405]]]]},{"k":"H7442","v":[["*",[54,53,[[2,1,1,0,1,[[98,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[17,2,2,3,5,[[464,1,1,3,4],[473,1,1,4,5]]],[18,26,25,5,30,[[482,1,1,5,6],[497,1,1,6,7],[509,1,1,7,8],[510,1,1,8,9],[512,1,1,9,10],[528,1,1,10,11],[536,1,1,11,12],[540,1,1,12,13],[542,1,1,13,14],[544,1,1,14,15],[548,1,1,15,16],[555,1,1,16,17],[558,1,1,17,18],[561,1,1,18,19],[566,1,1,19,20],[567,1,1,20,21],[569,1,1,21,22],[572,1,1,22,23],[573,1,1,23,24],[575,2,2,24,26],[609,3,2,26,28],[622,1,1,28,29],[626,1,1,29,30]]],[19,3,3,30,33,[[628,1,1,30,31],[635,1,1,31,32],[656,1,1,32,33]]],[22,14,14,33,47,[[690,1,1,33,34],[694,1,1,34,35],[702,1,1,35,36],[704,1,1,36,37],[713,2,2,37,39],[720,1,1,39,40],[722,1,1,40,41],[727,1,1,41,42],[730,2,2,42,44],[732,1,1,44,45],[739,1,1,45,46],[743,1,1,46,47]]],[23,3,3,47,50,[[775,2,2,47,49],[795,1,1,49,50]]],[24,1,1,50,51,[[798,1,1,50,51]]],[35,1,1,51,52,[[908,1,1,51,52]]],[37,1,1,52,53,[[912,1,1,52,53]]]],[2977,5801,10853,13545,13800,13984,14187,14366,14367,14437,14705,14806,14846,14868,14897,14999,15178,15218,15261,15338,15392,15415,15455,15477,15494,15498,16160,16167,16327,16390,16420,16605,17230,17906,17979,18109,18149,18322,18326,18491,18556,18649,18704,18705,18724,18850,18911,19698,19703,20260,20351,22834,22909]]],["+",[2,1,[[18,2,1,0,1,[[609,2,1,0,1]]]],[16167]]],["Rejoice",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,1,1,1,2,[[510,1,1,1,2]]]],[5801,14367]]],["Sing",[6,6,[[22,3,3,0,3,[[722,1,1,0,1],[727,1,1,1,2],[732,1,1,2,3]]],[23,1,1,3,4,[[775,1,1,3,4]]],[35,1,1,4,5,[[908,1,1,4,5]]],[37,1,1,5,6,[[912,1,1,5,6]]]],[18556,18649,18724,19698,22834,22909]]],["aloud",[4,4,[[18,4,4,0,4,[[528,1,1,0,1],[536,1,1,1,2],[558,1,1,2,3],[626,1,1,3,4]]]],[14705,14806,15218,16390]]],["crieth",[2,2,[[19,2,2,0,2,[[628,1,1,0,1],[635,1,1,1,2]]]],[16420,16605]]],["joy",[6,6,[[17,1,1,0,1,[[464,1,1,0,1]]],[18,5,5,1,6,[[482,1,1,1,2],[509,1,1,2,3],[512,1,1,3,4],[544,1,1,4,5],[609,1,1,5,6]]]],[13545,13984,14366,14437,14897,16160]]],["joyful",[1,1,[[18,1,1,0,1,[[575,1,1,0,1]]]],[15498]]],["out",[3,3,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,1,1,1,2,[[561,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]]],[10853,15261,20351]]],["rejoice",[9,9,[[18,8,8,0,8,[[497,1,1,0,1],[540,1,1,1,2],[542,1,1,2,3],[548,1,1,3,4],[566,1,1,4,5],[567,1,1,5,6],[573,1,1,6,7],[575,1,1,7,8]]],[22,1,1,8,9,[[739,1,1,8,9]]]],[14187,14846,14868,14999,15338,15392,15477,15494,18850]]],["sang",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13800]]],["shout",[1,1,[[22,1,1,0,1,[[690,1,1,0,1]]]],[17906]]],["shouted",[1,1,[[2,1,1,0,1,[[98,1,1,0,1]]]],[2977]]],["shouteth",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15178]]],["sing",[12,12,[[18,2,2,0,2,[[572,1,1,0,1],[622,1,1,1,2]]],[19,1,1,2,3,[[656,1,1,2,3]]],[22,7,7,3,10,[[702,1,1,3,4],[704,1,1,4,5],[713,1,1,5,6],[720,1,1,6,7],[730,2,2,7,9],[743,1,1,9,10]]],[23,2,2,10,12,[[775,1,1,10,11],[795,1,1,11,12]]]],[15455,16327,17230,18109,18149,18326,18491,18704,18705,18911,19703,20260]]],["singing",[2,2,[[22,2,2,0,2,[[694,1,1,0,1],[713,1,1,1,2]]]],[17979,18322]]],["triumph",[1,1,[[18,1,1,0,1,[[569,1,1,0,1]]]],[15415]]]]},{"k":"H7443","v":[["peacocks",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13847]]]]},{"k":"H7444","v":[]},{"k":"H7445","v":[["*",[4,4,[[17,2,2,0,2,[[438,1,1,0,1],[455,1,1,1,2]]],[18,2,2,2,4,[[540,1,1,2,3],[577,1,1,3,4]]]],[12911,13331,14844,15510]]],["joyful",[1,1,[[18,1,1,0,1,[[540,1,1,0,1]]]],[14844]]],["singing",[1,1,[[18,1,1,0,1,[[577,1,1,0,1]]]],[15510]]],["triumphing",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13331]]],["voice",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12911]]]]},{"k":"H7446","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4781,4782]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4782]]],["Rissah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4781]]]]},{"k":"H7447","v":[["*",[2,2,[[21,1,1,0,1,[[675,1,1,0,1]]],[29,1,1,1,2,[[884,1,1,1,2]]]],[17600,22461]]],["breaches",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22461]]],["drops",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17600]]]]},{"k":"H7448","v":[["bridle",[4,4,[[17,2,2,0,2,[[465,1,1,0,1],[476,1,1,1,2]]],[18,1,1,2,3,[[509,1,1,2,3]]],[22,1,1,3,4,[[708,1,1,3,4]]]],[13568,13901,14364,18245]]]]},{"k":"H7449","v":[["Resen",[1,1,[[0,1,1,0,1,[[9,1,1,0,1]]]],[246]]]]},{"k":"H7450","v":[["+",[1,1,[[25,1,1,0,1,[[847,1,1,0,1]]]],[21669]]]]},{"k":"H7451","v":[["*",[664,623,[[0,36,34,0,34,[[1,2,2,0,2],[2,2,2,2,4],[5,2,1,4,5],[7,1,1,5,6],[12,1,1,6,7],[18,1,1,7,8],[23,1,1,8,9],[25,1,1,9,10],[27,1,1,10,11],[30,4,3,11,14],[36,3,3,14,17],[37,1,1,17,18],[38,1,1,18,19],[39,1,1,19,20],[40,6,6,20,26],[43,3,3,26,29],[46,1,1,29,30],[47,1,1,30,31],[49,3,3,31,34]]],[1,9,8,34,42,[[54,1,1,34,35],[59,1,1,35,36],[70,1,1,36,37],[72,1,1,37,38],[81,4,3,38,41],[82,1,1,41,42]]],[2,6,5,42,47,[[115,1,1,42,43],[116,5,4,43,47]]],[3,11,11,47,58,[[127,3,3,47,50],[129,1,1,50,51],[130,3,3,51,54],[136,1,1,54,55],[140,1,1,55,56],[148,1,1,56,57],[151,1,1,57,58]]],[4,35,33,58,91,[[153,2,2,58,60],[156,1,1,60,61],[158,1,1,61,62],[159,1,1,62,63],[161,1,1,63,64],[165,2,2,64,66],[167,1,1,66,67],[169,5,5,67,72],[171,2,2,72,74],[173,1,1,74,75],[174,5,5,75,80],[175,1,1,80,81],[176,1,1,81,82],[180,2,2,82,84],[181,1,1,84,85],[182,1,1,85,86],[183,6,4,86,90],[184,1,1,90,91]]],[5,1,1,91,92,[[209,1,1,91,92]]],[6,19,18,92,110,[[212,2,2,92,94],[213,3,2,94,96],[214,1,1,96,97],[216,1,1,97,98],[219,3,3,98,101],[220,1,1,101,102],[221,1,1,102,103],[223,1,1,103,104],[225,1,1,104,105],[230,5,5,105,110]]],[8,31,30,110,140,[[237,1,1,110,111],[241,1,1,111,112],[245,1,1,112,113],[247,3,3,113,116],[250,1,1,116,117],[251,4,4,117,121],[253,1,1,121,122],[254,1,1,122,123],[255,3,3,123,126],[258,1,1,126,127],[259,3,3,127,130],[260,7,6,130,136],[261,1,1,136,137],[264,2,2,137,139],[265,1,1,139,140]]],[9,15,14,140,154,[[269,2,1,140,141],[278,3,3,141,144],[279,2,2,144,146],[280,1,1,146,147],[281,1,1,147,148],[282,1,1,148,149],[283,1,1,149,150],[284,1,1,150,151],[285,2,2,151,153],[290,1,1,153,154]]],[10,27,25,154,179,[[291,1,1,154,155],[292,2,1,155,156],[293,1,1,156,157],[295,1,1,157,158],[299,1,1,158,159],[301,2,2,159,161],[303,1,1,161,162],[304,2,2,162,164],[305,2,2,164,166],[306,4,4,166,170],[310,1,1,170,171],[311,5,4,171,175],[312,4,4,175,179]]],[11,32,32,179,211,[[314,1,1,179,180],[315,1,1,180,181],[316,1,1,181,182],[318,1,1,182,183],[320,3,3,183,186],[325,2,2,186,188],[326,2,2,188,190],[327,4,4,190,194],[329,4,4,194,198],[333,7,7,198,205],[334,2,2,205,207],[335,2,2,207,209],[336,2,2,209,211]]],[12,4,4,211,215,[[339,1,1,211,212],[341,1,1,212,213],[344,1,1,213,214],[358,1,1,214,215]]],[13,21,21,215,236,[[373,2,2,215,217],[378,1,1,217,218],[384,3,3,218,221],[386,1,1,221,222],[387,2,2,222,224],[388,1,1,224,225],[391,1,1,225,226],[395,1,1,226,227],[399,4,4,227,231],[400,2,2,231,233],[402,3,3,233,236]]],[14,1,1,236,237,[[411,1,1,236,237]]],[15,13,13,237,250,[[413,1,1,237,238],[414,4,4,238,242],[418,2,2,242,244],[421,2,2,244,246],[425,4,4,246,250]]],[16,6,6,250,256,[[432,2,2,250,252],[433,2,2,252,254],[434,2,2,254,256]]],[17,15,15,256,271,[[436,2,2,256,258],[437,4,4,258,262],[440,1,1,262,263],[455,1,1,263,264],[456,1,1,264,265],[457,1,1,265,266],[463,1,1,266,267],[465,1,1,267,268],[466,1,1,268,269],[470,1,1,269,270],[477,1,1,270,271]]],[18,64,64,271,335,[[482,1,1,271,272],[484,2,2,272,274],[487,2,2,274,276],[492,1,1,276,277],[498,1,1,277,278],[500,1,1,278,279],[504,1,1,279,280],[505,1,1,280,281],[511,5,5,281,286],[512,3,3,286,289],[513,1,1,289,290],[514,2,2,290,292],[515,2,2,292,294],[517,2,2,294,296],[518,3,3,296,299],[526,1,1,299,300],[527,1,1,300,301],[528,1,1,301,302],[529,2,2,302,304],[531,1,1,304,305],[532,1,1,305,306],[533,1,1,306,307],[541,1,1,307,308],[547,1,1,308,309],[548,3,3,309,312],[550,1,1,312,313],[555,1,1,313,314],[565,1,1,314,315],[567,1,1,315,316],[568,1,1,316,317],[571,2,2,317,319],[574,1,1,319,320],[578,1,1,320,321],[584,3,3,321,324],[586,2,2,324,326],[589,1,1,326,327],[596,1,1,327,328],[598,1,1,328,329],[617,3,3,329,332],[618,2,2,332,334],[621,1,1,334,335]]],[19,68,64,335,399,[[628,2,2,335,337],[629,3,2,337,339],[630,3,3,339,342],[631,2,2,342,344],[632,1,1,344,345],[633,3,3,345,348],[635,2,1,348,349],[638,4,4,349,353],[639,4,4,353,357],[640,3,3,357,360],[641,4,4,360,364],[642,5,5,364,369],[643,5,5,369,374],[644,4,3,374,377],[646,1,1,377,378],[647,5,4,378,382],[648,2,2,382,384],[649,1,1,384,385],[650,1,1,385,386],[651,3,3,386,389],[652,1,1,389,390],[653,2,2,390,392],[654,1,1,392,393],[655,4,4,393,397],[656,1,1,397,398],[658,1,1,398,399]]],[20,31,27,399,426,[[659,1,1,399,400],[660,2,2,400,402],[662,2,2,402,404],[663,5,4,404,408],[664,2,2,408,410],[665,2,2,410,412],[666,7,6,412,418],[667,4,2,418,420],[668,2,2,420,422],[669,2,2,422,424],[670,2,2,424,426]]],[22,20,19,426,445,[[681,2,2,426,428],[683,2,1,428,429],[685,3,3,429,432],[691,1,1,432,433],[709,1,1,433,434],[710,1,1,434,435],[711,1,1,435,436],[723,1,1,436,437],[725,2,2,437,439],[734,1,1,439,440],[735,1,1,440,441],[737,2,2,441,443],[743,1,1,443,444],[744,1,1,444,445]]],[23,122,109,445,554,[[745,2,2,445,447],[746,7,6,447,453],[747,3,3,453,456],[748,3,3,456,459],[749,2,2,459,461],[750,4,4,461,465],[751,4,4,465,469],[752,2,2,469,471],[753,2,1,471,472],[755,8,7,472,479],[756,2,2,479,481],[757,1,1,481,482],[758,1,1,482,483],[759,2,2,483,485],[760,2,2,485,487],[761,2,2,487,489],[762,7,5,489,494],[763,2,2,494,496],[765,1,1,496,497],[766,1,1,497,498],[767,6,6,498,504],[768,5,4,504,508],[769,3,3,508,511],[770,5,3,511,514],[772,1,1,514,515],[773,1,1,515,516],[776,4,4,516,520],[777,1,1,520,521],[779,2,2,521,523],[780,4,3,523,526],[782,1,1,526,527],[783,2,2,527,529],[784,1,1,529,530],[785,1,1,530,531],[786,3,3,531,534],[788,14,10,534,544],[789,1,1,544,545],[792,2,2,545,547],[793,2,2,547,549],[795,4,4,549,553],[796,1,1,553,554]]],[24,3,3,554,557,[[797,2,2,554,556],[799,1,1,556,557]]],[25,24,22,557,579,[[806,2,2,557,559],[807,3,3,559,562],[808,3,2,562,564],[809,1,1,564,565],[812,1,1,565,566],[814,1,1,566,567],[815,4,3,567,570],[817,2,2,570,572],[821,2,2,572,574],[831,1,1,574,575],[834,1,1,575,576],[835,1,1,576,577],[837,1,1,577,578],[839,1,1,578,579]]],[26,3,3,579,582,[[858,3,3,579,582]]],[27,7,6,582,588,[[868,4,4,582,586],[870,1,1,586,587],[871,2,1,587,588]]],[28,2,2,588,590,[[877,1,1,588,589],[878,1,1,589,590]]],[29,7,7,590,597,[[881,1,1,590,591],[883,3,3,591,594],[884,1,1,594,595],[887,2,2,595,597]]],[30,1,1,597,598,[[888,1,1,597,598]]],[31,9,8,598,606,[[889,3,3,598,601],[891,3,2,601,603],[892,3,3,603,606]]],[32,7,6,606,612,[[893,1,1,606,607],[894,3,2,607,609],[895,2,2,609,611],[899,1,1,611,612]]],[33,2,2,612,614,[[900,1,1,612,613],[902,1,1,613,614]]],[34,3,2,614,616,[[903,1,1,614,615],[904,2,1,615,616]]],[35,1,1,616,617,[[908,1,1,616,617]]],[37,5,4,617,621,[[911,3,2,617,619],[917,1,1,619,620],[918,1,1,620,621]]],[38,3,2,621,623,[[925,2,1,621,622],[926,1,1,622,623]]]],[39,47,60,77,142,204,331,476,641,721,781,897,902,925,1085,1103,1116,1126,1158,1179,1198,1199,1214,1215,1216,1222,1328,1353,1358,1429,1467,1521,1523,1526,1651,1787,2085,2146,2450,2452,2460,2477,3530,3580,3582,3584,3603,4025,4034,4039,4094,4135,4143,4145,4316,4459,4731,4868,4927,4931,5029,5108,5126,5175,5277,5283,5340,5365,5366,5369,5371,5376,5425,5426,5468,5484,5489,5491,5492,5494,5509,5532,5646,5670,5700,5723,5745,5746,5749,5757,5781,6475,6556,6560,6575,6580,6600,6655,6777,6810,6811,6817,6856,6885,6932,7057,7066,7067,7088,7095,7263,7340,7437,7477,7479,7480,7579,7609,7610,7611,7618,7686,7715,7737,7739,7743,7819,7848,7850,7856,7864,7878,7882,7887,7889,7900,7923,7973,7974,8000,8120,8295,8297,8304,8333,8339,8373,8403,8434,8463,8510,8518,8546,8708,8769,8814,8825,8882,9060,9114,9133,9217,9228,9240,9275,9283,9290,9302,9308,9313,9415,9471,9472,9476,9480,9488,9498,9503,9532,9570,9578,9644,9707,9739,9745,9754,9873,9882,9906,9920,9934,9943,9949,9953,9985,9994,9996,10000,10121,10125,10128,10131,10134,10135,10139,10161,10165,10197,10202,10211,10221,10309,10395,10558,10949,11338,11346,11451,11549,11559,11564,11596,11630,11643,11648,11723,11797,11910,11914,11917,11930,11957,11961,11998,12002,12005,12250,12299,12308,12309,12317,12324,12403,12414,12539,12546,12678,12688,12689,12698,12813,12814,12820,12823,12836,12859,12870,12877,12894,12898,12901,12902,12970,13338,13385,13394,13532,13583,13617,13732,13933,13977,13999,14004,14047,14056,14090,14202,14239,14290,14302,14401,14402,14404,14407,14409,14414,14422,14436,14442,14469,14477,14502,14510,14537,14539,14543,14547,14549,14653,14687,14695,14711,14713,14730,14747,14760,14855,14973,14989,14996,15000,15028,15162,15311,15393,15405,15444,15454,15488,15517,15725,15733,15738,15760,15775,15810,15999,16088,16264,16265,16274,16280,16281,16315,16416,16433,16445,16447,16462,16484,16485,16504,16517,16531,16554,16558,16564,16615,16703,16707,16709,16715,16731,16732,16739,16740,16764,16766,16768,16788,16791,16794,16804,16810,16817,16822,16833,16835,16844,16846,16857,16867,16870,16884,16886,16893,16948,16962,16968,16976,16984,16994,16996,17018,17050,17080,17095,17099,17133,17164,17167,17181,17201,17206,17210,17218,17230,17296,17328,17350,17354,17384,17389,17398,17410,17411,17413,17418,17419,17443,17444,17461,17463,17464,17467,17469,17470,17478,17487,17498,17506,17515,17523,17524,17537,17716,17718,17759,17787,17797,17798,17917,18252,18266,18294,18568,18609,18610,18755,18766,18807,18815,18909,18926,18960,18962,18968,18978,18984,18992,18993,18998,19004,19007,19019,19033,19041,19045,19070,19086,19090,19096,19108,19118,19125,19131,19143,19149,19156,19159,19178,19234,19237,19238,19240,19241,19243,19249,19253,19263,19276,19309,19326,19336,19346,19348,19374,19375,19392,19394,19395,19396,19404,19410,19422,19450,19476,19494,19495,19496,19498,19501,19506,19526,19527,19532,19533,19539,19541,19566,19575,19585,19591,19626,19646,19754,19761,19763,19773,19780,19838,19840,19845,19849,19873,19899,19935,19939,19943,19968,19981,19985,19992,20012,20013,20015,20017,20019,20021,20027,20033,20037,20039,20045,20082,20096,20150,20164,20214,20236,20272,20276,20278,20331,20332,20392,20562,20563,20572,20573,20574,20582,20601,20613,20657,20730,20746,20752,20753,20785,20819,20938,20939,21216,21291,21338,21390,21435,22000,22001,22002,22179,22180,22181,22193,22223,22240,22324,22356,22401,22436,22437,22438,22453,22499,22505,22523,22533,22538,22539,22566,22568,22569,22570,22574,22591,22596,22598,22610,22619,22667,22695,22731,22744,22757,22835,22882,22893,22972,22993,23097,23120]]],["+",[50,49,[[0,2,2,0,2,[[27,1,1,0,1],[40,1,1,1,2]]],[1,1,1,2,3,[[70,1,1,2,3]]],[3,2,2,3,5,[[127,2,2,3,5]]],[4,7,7,5,12,[[165,1,1,5,6],[169,2,2,6,8],[171,1,1,8,9],[173,1,1,9,10],[174,1,1,10,11],[176,1,1,11,12]]],[8,2,2,12,14,[[260,1,1,12,13],[264,1,1,13,14]]],[9,2,2,14,16,[[278,1,1,14,15],[279,1,1,15,16]]],[10,1,1,16,17,[[303,1,1,16,17]]],[11,2,2,17,19,[[316,1,1,17,18],[329,1,1,18,19]]],[15,1,1,19,20,[[414,1,1,19,20]]],[17,4,4,20,24,[[436,2,2,20,22],[437,1,1,22,23],[463,1,1,23,24]]],[18,3,3,24,27,[[511,2,2,24,26],[584,1,1,26,27]]],[19,8,8,27,35,[[630,1,1,27,28],[631,1,1,28,29],[638,1,1,29,30],[640,1,1,30,31],[641,1,1,31,32],[643,3,3,32,35]]],[22,1,1,35,36,[[737,1,1,35,36]]],[23,7,7,36,43,[[746,1,1,36,37],[748,1,1,37,38],[753,1,1,38,39],[756,1,1,39,40],[762,1,1,40,41],[767,1,1,41,42],[788,1,1,42,43]]],[25,1,1,43,44,[[814,1,1,43,44]]],[27,2,1,44,45,[[871,2,1,44,45]]],[31,2,2,45,47,[[892,2,2,45,47]]],[32,1,1,47,48,[[899,1,1,47,48]]],[37,1,1,48,49,[[917,1,1,48,49]]]],[781,1216,2085,4025,4034,5277,5365,5371,5425,5468,5491,5532,7900,7974,8304,8339,9217,9644,9996,12317,12870,12877,12894,13532,14401,14402,15733,16462,16517,16703,16766,16788,16846,16857,16870,18815,18998,19041,19178,19253,19392,19498,20015,20730,22240,22569,22574,22667,22972]]],["Evil",[3,3,[[18,1,1,0,1,[[511,1,1,0,1]]],[19,2,2,1,3,[[640,1,1,1,2],[655,1,1,2,3]]]],[14409,16768,17201]]],["adversities",[1,1,[[8,1,1,0,1,[[245,1,1,0,1]]]],[7437]]],["adversity",[3,3,[[18,2,2,0,2,[[487,1,1,0,1],[571,1,1,1,2]]],[20,1,1,2,3,[[665,1,1,2,3]]]],[14047,15444,17443]]],["affliction",[5,5,[[15,1,1,0,1,[[413,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]],[30,1,1,3,4,[[888,1,1,3,4]]],[37,1,1,4,5,[[911,1,1,4,5]]]],[12299,15738,20096,22523,22893]]],["afflictions",[1,1,[[18,1,1,0,1,[[511,1,1,0,1]]]],[14407]]],["bad",[12,11,[[0,3,3,0,3,[[23,1,1,0,1],[30,2,2,1,3]]],[2,5,4,3,7,[[116,5,4,3,7]]],[3,2,2,7,9,[[129,1,1,7,8],[140,1,1,8,9]]],[9,1,1,9,10,[[280,1,1,9,10]]],[10,1,1,10,11,[[293,1,1,10,11]]]],[641,897,902,3580,3582,3584,3603,4094,4459,8373,8825]]],["calamities",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16281]]],["displeasure",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6932]]],["distress",[1,1,[[15,1,1,0,1,[[414,1,1,0,1]]]],[12324]]],["evil",[405,384,[[0,17,17,0,17,[[1,2,2,0,2],[2,2,2,2,4],[5,1,1,4,5],[7,1,1,5,6],[18,1,1,6,7],[36,3,3,7,10],[43,2,2,10,12],[46,1,1,12,13],[47,1,1,13,14],[49,3,3,14,17]]],[1,6,6,17,23,[[54,1,1,17,18],[59,1,1,18,19],[72,1,1,19,20],[81,2,2,20,22],[82,1,1,22,23]]],[2,1,1,23,24,[[115,1,1,23,24]]],[3,5,5,24,29,[[130,3,3,24,27],[136,1,1,27,28],[148,1,1,28,29]]],[4,14,13,29,42,[[153,2,2,29,31],[156,1,1,31,32],[159,1,1,32,33],[169,1,1,33,34],[171,1,1,34,35],[174,4,4,35,39],[181,1,1,39,40],[182,1,1,40,41],[183,2,1,41,42]]],[5,1,1,42,43,[[209,1,1,42,43]]],[6,14,13,43,56,[[212,2,2,43,45],[213,3,2,45,47],[214,1,1,47,48],[216,1,1,48,49],[219,2,2,49,51],[220,1,1,51,52],[223,1,1,52,53],[230,3,3,53,56]]],[8,22,22,56,78,[[237,1,1,56,57],[241,1,1,57,58],[247,1,1,58,59],[250,1,1,59,60],[251,4,4,60,64],[253,1,1,64,65],[254,1,1,65,66],[255,3,3,66,69],[259,2,2,69,71],[260,5,5,71,76],[261,1,1,76,77],[264,1,1,77,78]]],[9,9,9,78,87,[[269,1,1,78,79],[278,2,2,79,81],[279,1,1,81,82],[281,1,1,82,83],[283,1,1,83,84],[285,2,2,84,86],[290,1,1,86,87]]],[10,19,18,87,105,[[295,1,1,87,88],[299,1,1,88,89],[301,1,1,89,90],[304,2,2,90,92],[305,2,2,92,94],[306,4,4,94,98],[311,4,3,98,101],[312,4,4,101,105]]],[11,26,26,105,131,[[315,1,1,105,106],[318,1,1,106,107],[320,3,3,107,110],[325,2,2,110,112],[326,1,1,112,113],[327,4,4,113,117],[329,2,2,117,119],[333,6,6,119,125],[334,2,2,125,127],[335,2,2,127,129],[336,2,2,129,131]]],[12,4,4,131,135,[[339,1,1,131,132],[341,1,1,132,133],[344,1,1,133,134],[358,1,1,134,135]]],[13,17,17,135,152,[[373,1,1,135,136],[378,1,1,136,137],[384,3,3,137,140],[386,1,1,140,141],[387,1,1,141,142],[388,1,1,142,143],[395,1,1,143,144],[399,3,3,144,147],[400,2,2,147,149],[402,3,3,149,152]]],[14,1,1,152,153,[[411,1,1,152,153]]],[15,6,6,153,159,[[418,1,1,153,154],[421,1,1,154,155],[425,4,4,155,159]]],[16,2,2,159,161,[[432,1,1,159,160],[433,1,1,160,161]]],[17,6,6,161,167,[[437,2,2,161,163],[440,1,1,163,164],[465,1,1,164,165],[466,1,1,165,166],[477,1,1,166,167]]],[18,33,33,167,200,[[482,1,1,167,168],[484,1,1,168,169],[487,1,1,169,170],[492,1,1,170,171],[498,1,1,171,172],[500,1,1,172,173],[511,1,1,173,174],[512,1,1,174,175],[513,1,1,175,176],[514,2,2,176,178],[515,1,1,178,179],[517,1,1,179,180],[518,1,1,180,181],[526,1,1,181,182],[527,1,1,182,183],[528,1,1,183,184],[529,1,1,184,185],[531,1,1,185,186],[533,1,1,186,187],[541,1,1,187,188],[555,1,1,188,189],[567,1,1,189,190],[568,1,1,190,191],[574,1,1,191,192],[586,2,2,192,194],[589,1,1,194,195],[596,1,1,195,196],[598,1,1,196,197],[617,2,2,197,199],[618,1,1,199,200]]],[19,36,34,200,234,[[628,2,2,200,202],[629,2,2,202,204],[630,1,1,204,205],[631,1,1,205,206],[632,1,1,206,207],[633,1,1,207,208],[635,2,1,208,209],[638,1,1,209,210],[639,2,2,210,212],[641,2,2,212,214],[642,2,2,214,216],[643,2,2,216,218],[644,3,2,218,220],[646,1,1,220,221],[647,3,3,221,224],[648,1,1,224,225],[649,1,1,225,226],[650,1,1,226,227],[651,2,2,227,229],[654,1,1,229,230],[655,2,2,230,232],[656,1,1,232,233],[658,1,1,233,234]]],[20,22,19,234,253,[[660,1,1,234,235],[662,1,1,235,236],[663,4,4,236,240],[664,2,2,240,242],[666,5,4,242,246],[667,4,2,246,248],[668,1,1,248,249],[669,2,2,249,251],[670,2,2,251,253]]],[22,17,16,253,269,[[681,1,1,253,254],[683,2,1,254,255],[685,3,3,255,258],[691,1,1,258,259],[709,1,1,259,260],[710,1,1,260,261],[711,1,1,261,262],[723,1,1,262,263],[725,1,1,263,264],[734,1,1,264,265],[735,1,1,265,266],[737,1,1,266,267],[743,1,1,267,268],[744,1,1,268,269]]],[23,81,75,269,344,[[745,1,1,269,270],[746,2,2,270,272],[747,1,1,272,273],[748,1,1,273,274],[749,1,1,274,275],[750,2,2,275,277],[751,2,2,277,279],[752,1,1,279,280],[753,1,1,280,281],[755,6,5,281,286],[756,1,1,286,287],[757,1,1,287,288],[759,1,1,288,289],[760,2,2,289,291],[761,2,2,291,293],[762,6,5,293,298],[763,2,2,298,300],[765,1,1,300,301],[767,4,4,301,305],[768,3,2,305,307],[769,2,2,307,309],[770,5,3,309,312],[772,1,1,312,313],[773,1,1,313,314],[776,4,4,314,318],[779,2,2,318,320],[780,4,3,320,323],[783,1,1,323,324],[784,1,1,324,325],[785,1,1,325,326],[786,3,3,326,329],[788,7,7,329,336],[789,1,1,336,337],[792,1,1,337,338],[793,2,2,338,340],[795,3,3,340,343],[796,1,1,343,344]]],[24,1,1,344,345,[[799,1,1,344,345]]],[25,11,10,345,355,[[806,2,2,345,347],[807,2,2,347,349],[808,2,1,349,350],[815,1,1,350,351],[834,1,1,351,352],[835,1,1,352,353],[837,1,1,353,354],[839,1,1,354,355]]],[26,3,3,355,358,[[858,3,3,355,358]]],[28,1,1,358,359,[[877,1,1,358,359]]],[29,7,7,359,366,[[881,1,1,359,360],[883,3,3,360,363],[884,1,1,363,364],[887,2,2,364,366]]],[31,6,5,366,371,[[889,2,2,366,368],[891,3,2,368,370],[892,1,1,370,371]]],[32,6,5,371,376,[[893,1,1,371,372],[894,3,2,372,374],[895,2,2,374,376]]],[33,1,1,376,377,[[900,1,1,376,377]]],[34,3,2,377,379,[[903,1,1,377,378],[904,2,1,378,379]]],[35,1,1,379,380,[[908,1,1,379,380]]],[37,3,2,380,382,[[911,2,1,380,381],[918,1,1,381,382]]],[38,3,2,382,384,[[925,2,1,382,383],[926,1,1,383,384]]]],[39,47,60,77,142,204,476,1085,1103,1116,1328,1358,1429,1467,1521,1523,1526,1651,1787,2146,2450,2452,2477,3530,4135,4143,4145,4316,4731,4927,4931,5029,5126,5376,5426,5484,5489,5492,5494,5700,5723,5757,6475,6556,6560,6575,6580,6600,6655,6777,6811,6817,6885,7067,7088,7095,7263,7340,7479,7579,7609,7610,7611,7618,7686,7715,7737,7739,7743,7850,7856,7864,7878,7882,7887,7889,7923,7973,8120,8295,8297,8333,8403,8463,8518,8546,8708,8882,9060,9114,9228,9240,9275,9283,9290,9302,9308,9313,9471,9472,9480,9488,9498,9503,9532,9578,9707,9739,9745,9754,9873,9882,9920,9934,9943,9949,9953,9985,10000,10121,10128,10131,10134,10135,10139,10161,10165,10197,10202,10211,10221,10309,10395,10558,10949,11346,11451,11549,11559,11564,11596,11630,11648,11797,11910,11914,11930,11957,11961,11998,12002,12005,12250,12414,12539,12678,12688,12689,12698,12814,12823,12901,12902,12970,13583,13617,13933,13977,13999,14056,14090,14202,14239,14404,14422,14442,14469,14477,14510,14539,14547,14653,14687,14695,14713,14730,14760,14855,15162,15393,15405,15488,15760,15775,15810,15999,16088,16264,16274,16280,16416,16433,16445,16447,16484,16504,16531,16564,16615,16707,16731,16739,16791,16794,16810,16822,16844,16867,16884,16886,16948,16962,16976,16984,16994,17018,17050,17080,17099,17181,17206,17218,17230,17296,17354,17384,17398,17410,17411,17413,17418,17419,17461,17463,17469,17470,17478,17487,17498,17515,17523,17524,17537,17716,17759,17787,17797,17798,17917,18252,18266,18294,18568,18610,18755,18766,18807,18909,18926,18960,18968,18984,19019,19033,19070,19090,19108,19143,19149,19156,19178,19234,19237,19241,19243,19249,19263,19276,19326,19346,19348,19374,19375,19392,19394,19395,19396,19404,19410,19422,19450,19494,19496,19501,19506,19527,19532,19539,19566,19575,19585,19591,19626,19646,19754,19761,19763,19773,19838,19840,19845,19849,19873,19939,19943,19968,19981,19985,19992,20012,20017,20021,20027,20033,20037,20039,20045,20082,20150,20164,20236,20272,20276,20278,20392,20562,20563,20573,20574,20582,20753,21291,21338,21390,21435,22000,22001,22002,22324,22401,22436,22437,22438,22453,22499,22505,22538,22539,22566,22568,22570,22591,22596,22598,22610,22619,22695,22744,22757,22835,22882,22993,23097,23120]]],["evils",[8,7,[[4,4,3,0,3,[[183,4,3,0,3]]],[18,1,1,3,4,[[517,1,1,3,4]]],[23,1,1,4,5,[[746,1,1,4,5]]],[25,2,2,5,7,[[807,1,1,5,6],[821,1,1,6,7]]]],[5745,5746,5749,14537,18978,20572,20938]]],["favoured",[2,2,[[0,2,2,0,2,[[40,2,2,0,2]]]],[1215,1222]]],["grievous",[2,2,[[19,1,1,0,1,[[642,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[16817,17350]]],["harm",[4,4,[[0,1,1,0,1,[[30,1,1,0,1]]],[3,1,1,1,2,[[151,1,1,1,2]]],[19,1,1,2,3,[[630,1,1,2,3]]],[23,1,1,3,4,[[783,1,1,3,4]]]],[925,4868,16485,19935]]],["heavy",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17133]]],["hurt",[20,20,[[0,2,2,0,2,[[25,1,1,0,1],[30,1,1,1,2]]],[8,1,1,2,3,[[259,1,1,2,3]]],[9,1,1,3,4,[[284,1,1,3,4]]],[11,1,1,4,5,[[326,1,1,4,5]]],[13,1,1,5,6,[[391,1,1,5,6]]],[16,1,1,6,7,[[434,1,1,6,7]]],[18,7,7,7,14,[[512,2,2,7,9],[515,1,1,9,10],[518,1,1,10,11],[547,1,1,11,12],[548,2,2,12,14]]],[20,2,2,14,16,[[663,1,1,14,15],[666,1,1,15,16]]],[23,4,4,16,20,[[751,1,1,16,17],[768,1,1,17,18],[769,1,1,18,19],[782,1,1,19,20]]]],[721,902,7848,8510,9906,11723,12836,14414,14436,14502,14549,14973,14989,15000,17410,17467,19125,19533,19541,19899]]],["hurtful",[1,1,[[18,1,1,0,1,[[621,1,1,0,1]]]],[16315]]],["ill",[5,5,[[0,3,3,0,3,[[40,3,3,0,3]]],[4,1,1,3,4,[[167,1,1,3,4]]],[22,1,1,4,5,[[681,1,1,4,5]]]],[1198,1199,1214,5340,17718]]],["men",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13732]]],["mischief",[19,19,[[1,2,2,0,2,[[81,2,2,0,2]]],[8,1,1,2,3,[[258,1,1,2,3]]],[9,1,1,3,4,[[282,1,1,3,4]]],[10,2,2,4,6,[[301,1,1,4,5],[310,1,1,5,6]]],[15,1,1,6,7,[[418,1,1,6,7]]],[16,1,1,7,8,[[433,1,1,7,8]]],[18,2,2,8,10,[[505,1,1,8,9],[529,1,1,9,10]]],[19,8,8,10,18,[[633,2,2,10,12],[638,1,1,12,13],[639,1,1,13,14],[640,1,1,14,15],[644,1,1,15,16],[651,1,1,16,17],[655,1,1,17,18]]],[27,1,1,18,19,[[868,1,1,18,19]]]],[2450,2460,7819,8434,9133,9415,12403,12820,14302,14711,16554,16558,16715,16740,16764,16893,17095,17210,22193]]],["mischiefs",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,1,1,1,2,[[617,1,1,1,2]]]],[5781,16265]]],["mischievous",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17506]]],["misery",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17464]]],["naught",[3,2,[[11,1,1,0,1,[[314,1,1,0,1]]],[19,2,1,1,2,[[647,2,1,1,2]]]],[9570,16968]]],["naughty",[1,1,[[23,1,1,0,1,[[768,1,1,0,1]]]],[19526]]],["noisome",[2,2,[[25,2,2,0,2,[[815,2,2,0,2]]]],[20746,20752]]],["sad",[2,2,[[15,2,2,0,2,[[414,2,2,0,2]]]],[12308,12309]]],["sadly",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1179]]],["sore",[9,9,[[4,3,3,0,3,[[158,1,1,0,1],[180,2,2,1,3]]],[13,1,1,3,4,[[387,1,1,3,4]]],[17,1,1,4,5,[[437,1,1,4,5]]],[18,1,1,5,6,[[548,1,1,5,6]]],[20,2,2,6,8,[[659,1,1,6,7],[662,1,1,7,8]]],[25,1,1,8,9,[[815,1,1,8,9]]]],[5108,5646,5670,11643,12898,14996,17328,17389,20752]]],["sorrow",[1,1,[[0,1,1,0,1,[[43,1,1,0,1]]]],[1353]]],["things",[2,2,[[19,1,1,0,1,[[642,1,1,0,1]]],[23,1,1,1,2,[[747,1,1,1,2]]]],[16835,19007]]],["trouble",[9,9,[[18,3,3,0,3,[[504,1,1,0,1],[518,1,1,1,2],[584,1,1,2,3]]],[23,5,5,3,8,[[746,2,2,3,5],[755,2,2,5,7],[795,1,1,7,8]]],[24,1,1,8,9,[[797,1,1,8,9]]]],[14290,14543,15725,18992,18993,19238,19240,20214,20331]]],["troubles",[1,1,[[18,1,1,0,1,[[565,1,1,0,1]]]],[15311]]],["wicked",[24,24,[[0,2,2,0,2,[[12,1,1,0,1],[37,1,1,1,2]]],[4,2,2,2,4,[[169,1,1,2,3],[175,1,1,3,4]]],[8,1,1,4,5,[[265,1,1,4,5]]],[11,1,1,5,6,[[329,1,1,5,6]]],[13,1,1,6,7,[[373,1,1,6,7]]],[15,1,1,7,8,[[421,1,1,7,8]]],[16,2,2,8,10,[[432,1,1,8,9],[434,1,1,9,10]]],[17,1,1,10,11,[[456,1,1,10,11]]],[18,1,1,11,12,[[578,1,1,11,12]]],[19,5,5,12,17,[[629,1,1,12,13],[638,1,1,13,14],[639,1,1,14,15],[642,1,1,15,16],[653,1,1,16,17]]],[23,3,3,17,20,[[749,1,1,17,18],[750,1,1,18,19],[759,1,1,19,20]]],[25,4,4,20,24,[[809,1,1,20,21],[812,1,1,21,22],[821,1,1,22,23],[831,1,1,23,24]]]],[331,1126,5369,5509,8000,9994,11338,12546,12813,12859,13385,15517,16447,16709,16732,16833,17164,19086,19118,19336,20613,20657,20939,21216]]],["wickedly",[2,2,[[4,1,1,0,1,[[161,1,1,0,1]]],[18,1,1,1,2,[[550,1,1,1,2]]]],[5175,15028]]],["wickedness",[53,48,[[0,2,2,0,2,[[5,1,1,0,1],[38,1,1,1,2]]],[4,2,2,2,4,[[165,1,1,2,3],[169,1,1,3,4]]],[6,3,3,4,7,[[219,1,1,4,5],[230,2,2,5,7]]],[8,3,3,7,10,[[247,2,2,7,9],[260,1,1,9,10]]],[9,1,1,10,11,[[269,1,1,10,11]]],[10,4,3,11,14,[[291,1,1,11,12],[292,2,1,12,13],[311,1,1,13,14]]],[11,1,1,14,15,[[333,1,1,14,15]]],[17,2,2,15,17,[[455,1,1,15,16],[457,1,1,16,17]]],[18,3,3,17,20,[[484,1,1,17,18],[532,1,1,18,19],[571,1,1,19,20]]],[19,3,3,20,23,[[641,1,1,20,21],[648,1,1,21,22],[653,1,1,22,23]]],[20,1,1,23,24,[[665,1,1,23,24]]],[22,1,1,24,25,[[725,1,1,24,25]]],[23,17,13,25,38,[[745,1,1,25,26],[746,1,1,26,27],[747,1,1,27,28],[748,1,1,28,29],[750,1,1,29,30],[751,1,1,30,31],[752,1,1,31,32],[758,1,1,32,33],[766,1,1,33,34],[767,1,1,34,35],[777,1,1,35,36],[788,6,2,36,38]]],[24,1,1,38,39,[[797,1,1,38,39]]],[25,2,2,39,41,[[817,2,2,39,41]]],[27,4,4,41,45,[[868,3,3,41,44],[870,1,1,44,45]]],[28,1,1,45,46,[[878,1,1,45,46]]],[31,1,1,46,47,[[889,1,1,46,47]]],[33,1,1,47,48,[[902,1,1,47,48]]]],[142,1158,5283,5366,6810,7057,7066,7477,7480,7900,8120,8769,8814,9476,10125,13338,13394,14004,14747,15454,16804,16996,17167,17444,18609,18962,18984,19004,19045,19096,19131,19159,19309,19476,19495,19780,20013,20019,20332,20785,20819,22179,22180,22181,22223,22356,22533,22731]]],["worse",[1,1,[[13,1,1,0,1,[[399,1,1,0,1]]]],[11917]]],["worst",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20601]]],["wretchedness",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4039]]],["wrong",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6856]]]]},{"k":"H7452","v":[["*",[3,3,[[1,1,1,0,1,[[81,1,1,0,1]]],[17,1,1,1,2,[[471,1,1,1,2]]],[32,1,1,2,3,[[896,1,1,2,3]]]],[2455,13769,22629]]],["aloud",[1,1,[[32,1,1,0,1,[[896,1,1,0,1]]]],[22629]]],["noise",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13769]]],["shouted",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2455]]]]},{"k":"H7453","v":[["*",[187,172,[[0,7,7,0,7,[[10,2,2,0,2],[14,1,1,2,3],[30,1,1,3,4],[37,2,2,4,6],[42,1,1,6,7]]],[1,20,18,7,25,[[51,1,1,7,8],[60,1,1,8,9],[67,2,2,9,11],[69,4,2,11,13],[70,3,3,13,16],[71,7,7,16,23],[81,1,1,23,24],[82,1,1,24,25]]],[2,4,4,25,29,[[108,3,3,25,28],[109,1,1,28,29]]],[4,21,16,29,45,[[156,1,1,29,30],[157,4,2,30,32],[165,1,1,32,33],[167,2,1,33,34],[171,5,4,34,38],[174,2,2,38,40],[175,3,2,40,42],[176,1,1,42,43],[179,2,2,43,45]]],[5,1,1,45,46,[[206,1,1,45,46]]],[6,5,5,46,51,[[216,1,1,46,47],[217,3,3,47,50],[220,1,1,50,51]]],[7,2,2,51,53,[[234,1,1,51,52],[235,1,1,52,53]]],[8,7,6,53,59,[[245,1,1,53,54],[249,1,1,54,55],[250,1,1,55,56],[255,2,1,56,57],[263,1,1,57,58],[265,1,1,58,59]]],[9,6,4,59,63,[[268,2,1,59,60],[278,1,1,60,61],[279,1,1,61,62],[282,2,1,62,63]]],[10,3,3,63,66,[[298,1,1,63,64],[306,1,1,64,65],[310,1,1,65,66]]],[11,3,3,66,69,[[315,1,1,66,67],[319,2,2,67,69]]],[12,1,1,69,70,[[364,1,1,69,70]]],[13,2,2,70,72,[[372,1,1,70,71],[386,1,1,71,72]]],[16,2,2,72,74,[[434,2,2,72,74]]],[17,14,14,74,88,[[437,1,1,74,75],[441,2,2,75,77],[447,1,1,77,78],[451,2,2,78,80],[452,1,1,80,81],[454,1,1,81,82],[465,1,1,82,83],[466,1,1,83,84],[467,1,1,84,85],[470,1,1,85,86],[477,2,2,86,88]]],[18,8,8,88,96,[[489,1,1,88,89],[492,1,1,89,90],[505,1,1,90,91],[512,1,1,91,92],[515,1,1,92,93],[565,1,1,93,94],[578,1,1,94,95],[599,1,1,95,96]]],[19,33,30,96,126,[[630,2,2,96,98],[633,4,3,98,101],[638,2,2,101,103],[639,1,1,103,104],[641,2,2,104,106],[643,1,1,106,107],[644,2,2,107,109],[645,2,2,109,111],[646,3,2,111,113],[648,1,1,113,114],[649,1,1,114,115],[651,1,1,115,116],[652,4,4,116,120],[653,1,1,120,121],[654,5,4,121,125],[656,1,1,125,126]]],[20,1,1,126,127,[[662,1,1,126,127]]],[21,2,2,127,129,[[675,2,2,127,129]]],[22,5,5,129,134,[[681,1,1,129,130],[691,1,1,130,131],[697,1,1,131,132],[712,1,1,132,133],[719,1,1,133,134]]],[23,20,19,134,153,[[747,1,1,134,135],[749,1,1,135,136],[750,1,1,136,137],[751,1,1,137,138],[753,4,3,138,141],[763,1,1,141,142],[766,2,2,142,144],[767,3,3,144,147],[773,1,1,147,148],[775,1,1,148,149],[778,2,2,149,151],[780,1,1,151,152],[790,1,1,152,153]]],[24,1,1,153,154,[[797,1,1,153,154]]],[25,6,6,154,160,[[819,3,3,154,157],[823,2,2,157,159],[834,1,1,159,160]]],[27,1,1,160,161,[[864,1,1,160,161]]],[31,1,1,161,162,[[889,1,1,161,162]]],[32,1,1,162,163,[[899,1,1,162,163]]],[34,1,1,163,164,[[904,1,1,163,164]]],[37,8,7,164,171,[[913,2,2,164,166],[918,3,3,166,169],[921,1,1,169,170],[924,2,1,170,171]]],[38,1,1,171,172,[[927,1,1,171,172]]]],[269,273,370,922,1131,1139,1323,1567,1808,2006,2015,2067,2068,2091,2095,2112,2120,2121,2122,2123,2124,2127,2139,2465,2484,3294,3297,3299,3328,5046,5073,5074,5278,5321,5410,5411,5417,5420,5494,5496,5524,5525,5535,5602,5609,6377,6683,6707,6708,6716,6829,7186,7197,7429,7528,7588,7771,7959,8004,8065,8297,8320,8443,9016,9294,9443,9599,9710,9716,11142,11304,11610,12853,12856,12902,12992,13005,13132,13258,13259,13265,13318,13586,13597,13631,13724,13929,13932,14068,14090,14302,14424,14501,15326,15518,16097,16483,16484,16541,16543,16569,16697,16700,16745,16792,16793,16869,16890,16891,16918,16925,16929,16931,16994,17026,17107,17121,17122,17130,17131,17160,17178,17179,17183,17186,17229,17385,17599,17614,17712,17914,18006,18317,18457,19003,19066,19110,19124,19179,19180,19183,19416,19462,19467,19511,19514,19519,19658,19725,19816,19818,19858,20061,20312,20855,20860,20864,20987,20988,21306,22129,22538,22669,22763,22920,22922,22986,22992,22993,23034,23081,23136]]],["+",[10,10,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,2,2,1,3,[[70,1,1,1,2],[71,1,1,2,3]]],[17,1,1,3,4,[[441,1,1,3,4]]],[19,2,2,4,6,[[639,1,1,4,5],[646,1,1,5,6]]],[20,1,1,6,7,[[662,1,1,6,7]]],[23,1,1,7,8,[[753,1,1,7,8]]],[25,1,1,8,9,[[819,1,1,8,9]]],[34,1,1,9,10,[[904,1,1,9,10]]]],[922,2112,2139,12992,16745,16929,17385,19179,20864,22763]]],["another",[20,19,[[0,3,3,0,3,[[10,1,1,0,1],[14,1,1,1,2],[42,1,1,2,3]]],[1,2,2,3,5,[[67,1,1,3,4],[70,1,1,4,5]]],[6,2,2,5,7,[[216,1,1,5,6],[220,1,1,6,7]]],[7,1,1,7,8,[[234,1,1,7,8]]],[8,3,2,8,10,[[245,1,1,8,9],[255,2,1,9,10]]],[11,3,3,10,13,[[315,1,1,10,11],[319,2,2,11,13]]],[13,1,1,13,14,[[386,1,1,13,14]]],[16,2,2,14,16,[[434,2,2,14,16]]],[22,1,1,16,17,[[691,1,1,16,17]]],[23,1,1,17,18,[[790,1,1,17,18]]],[38,1,1,18,19,[[927,1,1,18,19]]]],[269,370,1323,2015,2095,6683,6829,7186,7429,7771,9599,9710,9716,11610,12853,12856,17914,20061,23136]]],["another's",[1,1,[[0,1,1,0,1,[[10,1,1,0,1]]]],[273]]],["brother",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5535]]],["companion",[3,3,[[1,1,1,0,1,[[81,1,1,0,1]]],[12,1,1,1,2,[[364,1,1,1,2]]],[17,1,1,2,3,[[465,1,1,2,3]]]],[2465,11142,13586]]],["companions",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13724]]],["companions'",[1,1,[[18,1,1,0,1,[[599,1,1,0,1]]]],[16097]]],["fellow",[8,8,[[1,1,1,0,1,[[51,1,1,0,1]]],[6,3,3,1,4,[[217,3,3,1,4]]],[8,1,1,4,5,[[249,1,1,4,5]]],[9,1,1,5,6,[[268,1,1,5,6]]],[22,1,1,6,7,[[712,1,1,6,7]]],[31,1,1,7,8,[[889,1,1,7,8]]]],[1567,6707,6708,6716,7528,8065,18317,22538]]],["fellow's",[1,1,[[9,1,1,0,1,[[268,1,1,0,1]]]],[8065]]],["fellows",[1,1,[[37,1,1,0,1,[[913,1,1,0,1]]]],[22920]]],["friend",[27,24,[[0,2,2,0,2,[[37,2,2,0,2]]],[1,1,1,2,3,[[82,1,1,2,3]]],[4,1,1,3,4,[[165,1,1,3,4]]],[9,3,2,4,6,[[279,1,1,4,5],[282,2,1,5,6]]],[17,1,1,6,7,[[441,1,1,6,7]]],[18,2,2,7,9,[[512,1,1,7,8],[565,1,1,8,9]]],[19,12,10,9,19,[[633,3,2,9,11],[644,2,2,11,13],[646,1,1,13,14],[649,1,1,14,15],[654,5,4,15,19]]],[21,1,1,19,20,[[675,1,1,19,20]]],[23,2,2,20,22,[[750,1,1,20,21],[763,1,1,21,22]]],[27,1,1,22,23,[[864,1,1,22,23]]],[32,1,1,23,24,[[899,1,1,23,24]]]],[1131,1139,2484,5278,8320,8443,13005,14424,15326,16541,16543,16890,16891,16931,17026,17178,17179,17183,17186,17614,19110,19416,22129,22669]]],["friends",[14,14,[[8,1,1,0,1,[[265,1,1,0,1]]],[10,1,1,1,2,[[306,1,1,1,2]]],[17,7,7,2,9,[[437,1,1,2,3],[451,1,1,3,4],[452,1,1,4,5],[454,1,1,5,6],[467,1,1,6,7],[477,2,2,7,9]]],[18,1,1,9,10,[[515,1,1,9,10]]],[19,2,2,10,12,[[645,1,1,10,11],[646,1,1,11,12]]],[21,1,1,12,13,[[675,1,1,12,13]]],[24,1,1,13,14,[[797,1,1,13,14]]]],[8004,9294,12902,13258,13265,13318,13631,13929,13932,14501,16925,16929,17599,20312]]],["lovers",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19003]]],["neighbour",[69,66,[[1,7,7,0,7,[[60,1,1,0,1],[69,1,1,1,2],[70,1,1,2,3],[71,4,4,3,7]]],[2,3,3,7,10,[[108,3,3,7,10]]],[4,11,9,10,19,[[156,1,1,10,11],[157,1,1,11,12],[167,2,1,12,13],[171,4,3,13,16],[174,1,1,16,17],[175,1,1,17,18],[179,1,1,18,19]]],[5,1,1,19,20,[[206,1,1,19,20]]],[7,1,1,20,21,[[235,1,1,20,21]]],[8,2,2,21,23,[[250,1,1,21,22],[263,1,1,22,23]]],[9,1,1,23,24,[[278,1,1,23,24]]],[10,2,2,24,26,[[298,1,1,24,25],[310,1,1,25,26]]],[13,1,1,26,27,[[372,1,1,26,27]]],[17,2,2,27,29,[[447,1,1,27,28],[451,1,1,28,29]]],[18,3,3,29,32,[[489,1,1,29,30],[492,1,1,30,31],[578,1,1,31,32]]],[19,15,15,32,47,[[630,2,2,32,34],[638,2,2,34,36],[641,2,2,36,38],[643,1,1,38,39],[645,1,1,39,40],[648,1,1,40,41],[651,1,1,41,42],[652,3,3,42,45],[653,1,1,45,46],[656,1,1,46,47]]],[22,3,3,47,50,[[681,1,1,47,48],[697,1,1,48,49],[719,1,1,49,50]]],[23,11,11,50,61,[[751,1,1,50,51],[753,3,3,51,54],[766,1,1,54,55],[767,3,3,55,58],[775,1,1,58,59],[778,2,2,59,61]]],[37,6,5,61,66,[[913,1,1,61,62],[918,3,3,62,65],[924,2,1,65,66]]]],[1808,2067,2091,2120,2122,2123,2127,3294,3297,3299,5046,5073,5321,5410,5411,5417,5496,5525,5609,6377,7197,7588,7959,8297,9016,9443,11304,13132,13259,14068,14090,15518,16483,16484,16697,16700,16792,16793,16869,16918,16994,17107,17121,17122,17131,17160,17229,17712,18006,18457,19124,19179,19180,19183,19462,19511,19514,19519,19725,19816,19818,22922,22986,22992,22993,23081]]],["neighbour's",[24,20,[[1,5,3,0,3,[[69,3,1,0,1],[71,2,2,1,3]]],[2,1,1,3,4,[[109,1,1,3,4]]],[4,8,6,4,10,[[157,3,1,4,5],[171,1,1,5,6],[174,1,1,6,7],[175,2,2,7,9],[179,1,1,9,10]]],[17,1,1,10,11,[[466,1,1,10,11]]],[19,2,2,11,13,[[633,1,1,11,12],[652,1,1,12,13]]],[23,2,2,13,15,[[749,1,1,13,14],[766,1,1,14,15]]],[25,4,4,15,19,[[819,2,2,15,17],[823,1,1,17,18],[834,1,1,18,19]]],[37,1,1,19,20,[[921,1,1,19,20]]]],[2068,2121,2124,3328,5074,5420,5494,5524,5525,5602,13597,16569,17130,19066,19467,20855,20860,20987,21306,23034]]],["neighbours",[2,2,[[18,1,1,0,1,[[505,1,1,0,1]]],[25,1,1,1,2,[[823,1,1,1,2]]]],[14302,20988]]],["neighbours'",[1,1,[[23,1,1,0,1,[[773,1,1,0,1]]]],[19658]]],["other",[2,2,[[1,1,1,0,1,[[67,1,1,0,1]]],[23,1,1,1,2,[[780,1,1,1,2]]]],[2006,19858]]]]},{"k":"H7454","v":[["*",[2,2,[[18,2,2,0,2,[[616,2,2,0,2]]]],[16241,16256]]],["thought",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16241]]],["thoughts",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16256]]]]},{"k":"H7455","v":[["*",[19,19,[[0,1,1,0,1,[[40,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[8,1,1,2,3,[[252,1,1,2,3]]],[15,1,1,3,4,[[414,1,1,3,4]]],[18,1,1,4,5,[[505,1,1,4,5]]],[20,1,1,5,6,[[665,1,1,5,6]]],[22,1,1,6,7,[[679,1,1,6,7]]],[23,11,11,7,18,[[748,1,1,7,8],[765,1,1,8,9],[767,2,2,9,11],[768,3,3,11,14],[769,1,1,14,15],[770,1,1,15,16],[773,1,1,16,17],[788,1,1,17,18]]],[27,1,1,18,19,[[870,1,1,18,19]]]],[1214,5631,7646,12309,14303,17432,17670,19031,19452,19486,19506,19526,19527,19532,19539,19575,19652,20032,22223]]],["+",[6,6,[[23,6,6,0,6,[[767,1,1,0,1],[768,3,3,1,4],[769,1,1,4,5],[773,1,1,5,6]]]],[19506,19526,19527,19532,19539,19652]]],["badness",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1214]]],["evil",[6,6,[[22,1,1,0,1,[[679,1,1,0,1]]],[23,5,5,1,6,[[748,1,1,1,2],[765,1,1,2,3],[767,1,1,3,4],[770,1,1,4,5],[788,1,1,5,6]]]],[17670,19031,19452,19486,19575,20032]]],["naughtiness",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7646]]],["sadness",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17432]]],["sorrow",[1,1,[[15,1,1,0,1,[[414,1,1,0,1]]]],[12309]]],["wickedness",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[18,1,1,1,2,[[505,1,1,1,2]]],[27,1,1,2,3,[[870,1,1,2,3]]]],[5631,14303,22223]]]]},{"k":"H7456","v":[["*",[13,13,[[0,1,1,0,1,[[40,1,1,0,1]]],[4,1,1,1,2,[[160,1,1,1,2]]],[18,2,2,2,4,[[511,1,1,2,3],[527,1,1,3,4]]],[19,3,3,4,7,[[633,1,1,4,5],[637,1,1,5,6],[646,1,1,6,7]]],[22,5,5,7,12,[[686,1,1,7,8],[687,1,1,8,9],[722,1,1,9,10],[727,1,1,10,11],[743,1,1,11,12]]],[23,1,1,12,13,[[786,1,1,12,13]]]],[1250,5140,14398,14680,16570,16659,16940,17828,17849,18545,18646,18910,19989]]],["famish",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16659]]],["famished",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1250]]],["hunger",[5,5,[[4,1,1,0,1,[[160,1,1,0,1]]],[18,1,1,1,2,[[511,1,1,1,2]]],[19,1,1,2,3,[[646,1,1,2,3]]],[22,1,1,3,4,[[727,1,1,3,4]]],[23,1,1,4,5,[[786,1,1,4,5]]]],[5140,14398,16940,18646,19989]]],["hungry",[6,6,[[18,1,1,0,1,[[527,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]],[22,4,4,2,6,[[686,1,1,2,3],[687,1,1,3,4],[722,1,1,4,5],[743,1,1,5,6]]]],[14680,16570,17828,17849,18545,18910]]]]},{"k":"H7457","v":[["*",[19,19,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[11,1,1,2,3,[[319,1,1,2,3]]],[17,4,4,3,7,[[440,1,1,3,4],[453,1,1,4,5],[457,1,1,5,6],[459,1,1,6,7]]],[18,4,4,7,11,[[584,3,3,7,10],[623,1,1,10,11]]],[19,2,2,11,13,[[652,1,1,11,12],[654,1,1,12,13]]],[22,4,4,13,17,[[707,1,1,13,14],[710,1,1,14,15],[736,2,2,15,17]]],[25,2,2,17,19,[[819,2,2,17,19]]]],[7245,8478,9719,12956,13288,13396,13446,15704,15708,15735,16348,17134,17176,18201,18265,18793,18796,20856,20865]]],["+",[2,2,[[17,1,1,0,1,[[457,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]]],[13396,15735]]],["Hungry",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15704]]],["hungerbitten",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13288]]],["hungry",[15,15,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[11,1,1,2,3,[[319,1,1,2,3]]],[17,2,2,3,5,[[440,1,1,3,4],[459,1,1,4,5]]],[18,2,2,5,7,[[584,1,1,5,6],[623,1,1,6,7]]],[19,2,2,7,9,[[652,1,1,7,8],[654,1,1,8,9]]],[22,4,4,9,13,[[707,1,1,9,10],[710,1,1,10,11],[736,2,2,11,13]]],[25,2,2,13,15,[[819,2,2,13,15]]]],[7245,8478,9719,12956,13446,15708,16348,17134,17176,18201,18265,18793,18796,20856,20865]]]]},{"k":"H7458","v":[["*",[101,88,[[0,24,17,0,17,[[11,2,1,0,1],[25,2,1,1,2],[40,12,8,2,10],[41,1,1,10,11],[42,1,1,11,12],[44,2,2,12,14],[46,4,3,14,17]]],[1,1,1,17,18,[[65,1,1,17,18]]],[4,2,2,18,20,[[180,1,1,18,19],[184,1,1,19,20]]],[7,1,1,20,21,[[232,1,1,20,21]]],[9,2,2,21,23,[[287,1,1,21,22],[290,1,1,22,23]]],[10,2,2,23,25,[[298,1,1,23,24],[308,1,1,24,25]]],[11,5,5,25,30,[[316,1,1,25,26],[318,1,1,26,27],[319,1,1,27,28],[320,1,1,28,29],[337,1,1,29,30]]],[12,1,1,30,31,[[358,1,1,30,31]]],[13,3,3,31,34,[[372,1,1,31,32],[386,1,1,32,33],[398,1,1,33,34]]],[15,2,2,34,36,[[417,1,1,34,35],[421,1,1,35,36]]],[17,1,1,36,37,[[440,1,1,36,37]]],[18,2,2,37,39,[[510,1,1,37,38],[582,1,1,38,39]]],[22,3,3,39,42,[[683,1,1,39,40],[692,1,1,40,41],[729,1,1,41,42]]],[23,33,30,42,72,[[749,1,1,42,43],[755,1,1,43,44],[758,6,5,44,49],[759,2,1,49,50],[760,1,1,50,51],[762,1,1,51,52],[765,2,2,52,54],[768,1,1,54,55],[771,2,2,55,57],[773,2,2,57,59],[776,2,2,59,61],[778,1,1,61,62],[782,2,2,62,64],[786,3,3,64,67],[788,5,4,67,71],[796,1,1,71,72]]],[24,3,3,72,75,[[798,1,1,72,73],[800,1,1,73,74],[801,1,1,74,75]]],[25,14,12,75,87,[[806,4,3,75,78],[807,2,2,78,80],[808,2,1,80,81],[813,1,1,81,82],[815,2,2,82,84],[835,1,1,84,85],[837,2,2,85,87]]],[29,2,1,87,88,[[886,2,1,87,88]]]],[308,693,1222,1225,1226,1231,1245,1249,1251,1252,1257,1291,1364,1369,1424,1433,1440,1950,5659,5782,7128,8581,8705,9022,9343,9641,9699,9711,9728,10225,10946,11310,11596,11886,12385,12526,12971,14385,15622,17752,17958,18692,19070,19248,19305,19306,19308,19309,19311,19317,19340,19405,19447,19449,19534,19604,19609,19652,19653,19755,19767,19818,19897,19904,19991,19992,19997,20022,20023,20028,20037,20282,20351,20429,20452,20558,20562,20563,20574,20575,20592,20696,20744,20752,21342,21388,21389,22492]]],["+",[1,1,[[25,1,1,0,1,[[813,1,1,0,1]]]],[20696]]],["dearth",[5,4,[[0,2,1,0,1,[[40,2,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]],[13,1,1,2,3,[[372,1,1,2,3]]],[15,1,1,3,4,[[417,1,1,3,4]]]],[1249,9641,11310,12385]]],["famine",[86,74,[[0,22,16,0,16,[[11,2,1,0,1],[25,2,1,1,2],[40,10,7,2,9],[41,1,1,9,10],[42,1,1,10,11],[44,2,2,11,13],[46,4,3,13,16]]],[7,1,1,16,17,[[232,1,1,16,17]]],[9,2,2,17,19,[[287,1,1,17,18],[290,1,1,18,19]]],[10,2,2,19,21,[[298,1,1,19,20],[308,1,1,20,21]]],[11,4,4,21,25,[[318,1,1,21,22],[319,1,1,22,23],[320,1,1,23,24],[337,1,1,24,25]]],[12,1,1,25,26,[[358,1,1,25,26]]],[13,2,2,26,28,[[386,1,1,26,27],[398,1,1,27,28]]],[17,1,1,28,29,[[440,1,1,28,29]]],[18,2,2,29,31,[[510,1,1,29,30],[582,1,1,30,31]]],[22,2,2,31,33,[[692,1,1,31,32],[729,1,1,32,33]]],[23,32,29,33,62,[[749,1,1,33,34],[755,1,1,34,35],[758,6,5,35,40],[759,2,1,40,41],[760,1,1,41,42],[762,1,1,42,43],[765,2,2,43,45],[768,1,1,45,46],[771,2,2,46,48],[773,2,2,48,50],[776,2,2,50,52],[778,1,1,52,53],[782,1,1,53,54],[786,3,3,54,57],[788,5,4,57,61],[796,1,1,61,62]]],[24,1,1,62,63,[[801,1,1,62,63]]],[25,12,10,63,73,[[806,4,3,63,66],[807,2,2,66,68],[808,2,1,68,69],[815,2,2,69,71],[837,2,2,71,73]]],[29,2,1,73,74,[[886,2,1,73,74]]]],[308,693,1222,1225,1226,1231,1245,1251,1252,1257,1291,1364,1369,1424,1433,1440,7128,8581,8705,9022,9343,9699,9711,9728,10225,10946,11596,11886,12971,14385,15622,17958,18692,19070,19248,19305,19306,19308,19309,19311,19317,19340,19405,19447,19449,19534,19604,19609,19652,19653,19755,19767,19818,19897,19991,19992,19997,20022,20023,20028,20037,20282,20452,20558,20562,20563,20574,20575,20592,20744,20752,21388,21389,22492]]],["famished",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17752]]],["hunger",[8,8,[[1,1,1,0,1,[[65,1,1,0,1]]],[4,2,2,1,3,[[180,1,1,1,2],[184,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[23,1,1,4,5,[[782,1,1,4,5]]],[24,2,2,5,7,[[798,1,1,5,6],[800,1,1,6,7]]],[25,1,1,7,8,[[835,1,1,7,8]]]],[1950,5659,5782,12526,19904,20351,20429,21342]]]]},{"k":"H7459","v":[["famine",[3,3,[[0,2,2,0,2,[[41,2,2,0,2]]],[18,1,1,2,3,[[514,1,1,2,3]]]],[1271,1285,14469]]]]},{"k":"H7460","v":[["*",[4,4,[[14,1,1,0,1,[[412,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[26,1,1,3,4,[[859,1,1,3,4]]]],[12261,12944,15603,22026]]],["trembleth",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15603]]],["trembling",[3,3,[[14,1,1,0,1,[[412,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]],[26,1,1,2,3,[[859,1,1,2,3]]]],[12261,12944,22026]]]]},{"k":"H7461","v":[["*",[5,5,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,3,3,1,4,[[479,1,1,1,2],[525,1,1,2,3],[532,1,1,3,4]]],[22,1,1,4,5,[[711,1,1,4,5]]]],[1935,13956,14640,14737,18293]]],["Fear",[1,1,[[18,1,1,0,1,[[525,1,1,0,1]]]],[14640]]],["fearfulness",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18293]]],["trembling",[3,3,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,2,2,1,3,[[479,1,1,1,2],[532,1,1,2,3]]]],[1935,13956,14737]]]]},{"k":"H7462","v":[["*",[171,142,[[0,23,20,0,20,[[3,1,1,0,1],[12,4,2,1,3],[25,2,1,3,4],[28,2,2,4,6],[29,2,2,6,8],[35,1,1,8,9],[36,4,4,9,13],[40,2,2,13,15],[45,2,2,15,17],[46,1,1,17,18],[47,1,1,18,19],[48,1,1,19,20]]],[1,4,4,20,24,[[51,2,2,20,22],[52,1,1,22,23],[83,1,1,23,24]]],[3,2,2,24,26,[[130,1,1,24,25],[143,1,1,25,26]]],[6,1,1,26,27,[[224,1,1,26,27]]],[8,7,7,27,34,[[251,1,1,27,28],[252,3,3,28,31],[256,1,1,31,32],[260,2,2,32,34]]],[9,2,2,34,36,[[271,1,1,34,35],[273,1,1,35,36]]],[10,1,1,36,37,[[312,1,1,36,37]]],[12,3,3,37,40,[[348,1,1,37,38],[354,1,1,38,39],[364,1,1,39,40]]],[13,1,1,40,41,[[384,1,1,40,41]]],[17,3,3,41,44,[[436,1,1,41,42],[459,2,2,42,44]]],[18,8,8,44,52,[[500,1,1,44,45],[505,1,1,45,46],[514,1,1,46,47],[526,1,1,47,48],[555,2,2,48,50],[557,2,2,50,52]]],[19,6,6,52,58,[[637,1,1,52,53],[640,1,1,53,54],[642,1,1,54,55],[649,1,1,55,56],[655,1,1,56,57],[656,1,1,57,58]]],[20,1,1,58,59,[[670,1,1,58,59]]],[21,7,6,59,65,[[671,3,2,59,61],[672,1,1,61,62],[674,1,1,62,63],[676,2,2,63,65]]],[22,16,15,65,80,[[683,1,1,65,66],[689,1,1,66,67],[691,1,1,67,68],[692,1,1,68,69],[705,1,1,69,70],[708,1,1,70,71],[709,1,1,71,72],[718,2,1,72,73],[722,2,2,73,75],[727,1,1,75,76],[734,1,1,76,77],[739,1,1,77,78],[741,1,1,78,79],[743,1,1,79,80]]],[23,27,22,80,102,[[746,2,2,80,82],[747,2,1,82,83],[750,2,1,83,84],[754,1,1,84,85],[756,1,1,85,86],[761,1,1,86,87],[766,2,1,87,88],[767,5,3,88,91],[769,3,3,91,94],[775,1,1,94,95],[777,1,1,95,96],[787,1,1,96,97],[793,1,1,97,98],[794,3,3,98,101],[795,1,1,101,102]]],[25,32,16,102,118,[[835,31,15,102,117],[838,1,1,117,118]]],[27,3,3,118,121,[[865,1,1,118,119],[870,1,1,119,120],[873,1,1,120,121]]],[29,2,2,121,123,[[879,1,1,121,122],[881,1,1,122,123]]],[31,1,1,123,124,[[891,1,1,123,124]]],[32,4,3,124,127,[[897,2,2,124,126],[899,2,1,126,127]]],[33,1,1,127,128,[[902,1,1,127,128]]],[35,3,3,128,131,[[907,2,2,128,130],[908,1,1,130,131]]],[37,13,11,131,142,[[920,2,2,131,133],[921,9,8,133,141],[923,2,1,141,142]]]],[81,325,326,712,802,804,861,866,1064,1085,1095,1096,1099,1197,1213,1418,1420,1423,1466,1497,1571,1573,1580,2499,4141,4571,6929,7606,7633,7652,7658,7779,7868,7877,8134,8187,9497,10675,10869,11138,11558,12883,13438,13457,14236,14308,14453,14662,15184,15185,15199,15211,16677,16767,16821,17039,17203,17227,17534,17544,17545,17570,17587,17616,17617,17756,17891,17926,17958,18161,18240,18254,18431,18553,18561,18645,18764,18848,18877,18922,18973,18981,19017,19092,19222,19259,19373,19476,19485,19486,19488,19568,19569,19570,19701,19787,20009,20146,20172,20185,20210,20235,21315,21316,21318,21320,21321,21322,21323,21325,21326,21327,21328,21329,21331,21332,21336,21421,22149,22210,22253,22366,22407,22565,22637,22638,22678,22730,22811,22812,22833,23018,23019,23031,23032,23033,23035,23036,23037,23043,23044,23066]]],["+",[23,22,[[0,6,6,0,6,[[29,1,1,0,1],[35,1,1,1,2],[36,1,1,2,3],[45,2,2,3,5],[46,1,1,5,6]]],[1,1,1,6,7,[[52,1,1,6,7]]],[3,1,1,7,8,[[130,1,1,7,8]]],[8,2,2,8,10,[[252,2,2,8,10]]],[9,2,2,10,12,[[271,1,1,10,11],[273,1,1,11,12]]],[12,2,2,12,14,[[348,1,1,12,13],[354,1,1,13,14]]],[20,1,1,14,15,[[670,1,1,14,15]]],[21,1,1,15,16,[[671,1,1,15,16]]],[23,2,2,16,18,[[761,1,1,16,17],[767,1,1,17,18]]],[25,2,2,18,20,[[835,2,2,18,20]]],[37,3,2,20,22,[[921,3,2,20,22]]]],[866,1064,1095,1418,1420,1423,1580,4141,7633,7652,8134,8187,10675,10869,17534,17545,19373,19486,21315,21323,23032,23035]]],["Feed",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22678]]],["Shepherd",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15199]]],["broken",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18981]]],["companion",[2,2,[[19,2,2,0,2,[[640,1,1,0,1],[655,1,1,1,2]]]],[16767,17203]]],["company",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17227]]],["devour",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15211]]],["eat",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21332]]],["entreateth",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13457]]],["fed",[8,7,[[0,3,3,0,3,[[40,2,2,0,2],[47,1,1,2,3]]],[12,1,1,3,4,[[364,1,1,3,4]]],[18,2,2,4,6,[[514,1,1,4,5],[555,1,1,5,6]]],[25,2,1,6,7,[[835,2,1,6,7]]]],[1197,1213,1466,11138,14453,15185,21321]]],["feed",[43,41,[[0,4,4,0,4,[[28,1,1,0,1],[29,1,1,1,2],[36,2,2,2,4]]],[1,1,1,4,5,[[83,1,1,4,5]]],[17,1,1,5,6,[[459,1,1,5,6]]],[18,3,3,6,9,[[505,1,1,6,7],[526,1,1,7,8],[555,1,1,8,9]]],[19,1,1,9,10,[[637,1,1,9,10]]],[21,2,2,10,12,[[674,1,1,10,11],[676,1,1,11,12]]],[22,9,9,12,21,[[683,1,1,12,13],[689,1,1,13,14],[692,1,1,14,15],[705,1,1,15,16],[708,1,1,16,17],[718,1,1,17,18],[727,1,1,18,19],[739,1,1,19,20],[743,1,1,20,21]]],[23,4,4,21,25,[[747,1,1,21,22],[750,1,1,22,23],[767,1,1,23,24],[794,1,1,24,25]]],[25,10,8,25,33,[[835,10,8,25,33]]],[27,2,2,33,35,[[865,1,1,33,34],[870,1,1,34,35]]],[31,1,1,35,36,[[891,1,1,35,36]]],[32,2,2,36,38,[[897,1,1,36,37],[899,1,1,37,38]]],[35,2,2,38,40,[[907,1,1,38,39],[908,1,1,39,40]]],[37,1,1,40,41,[[921,1,1,40,41]]]],[802,861,1096,1099,2499,13438,14308,14662,15184,16677,17587,17616,17756,17891,17958,18161,18240,18431,18645,18848,18922,19017,19092,19488,20185,21315,21316,21323,21326,21327,21328,21329,21336,22149,22210,22565,22637,22678,22812,22833,23037]]],["feedest",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17544]]],["feedeth",[4,4,[[21,2,2,0,2,[[672,1,1,0,1],[676,1,1,1,2]]],[22,1,1,2,3,[[722,1,1,2,3]]],[27,1,1,3,4,[[873,1,1,3,4]]]],[17570,17617,18553,22253]]],["feeding",[2,2,[[0,1,1,0,1,[[36,1,1,0,1]]],[17,1,1,1,2,[[436,1,1,1,2]]]],[1085,12883]]],["friend",[1,1,[[6,1,1,0,1,[[224,1,1,0,1]]]],[6929]]],["friendship",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17039]]],["herdmen",[7,4,[[0,6,3,0,3,[[12,4,2,0,2],[25,2,1,2,3]]],[8,1,1,3,4,[[256,1,1,3,4]]]],[325,326,712,7779]]],["keeper",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[81]]],["keepeth",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7606]]],["keeping",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7877]]],["kept",[1,1,[[0,1,1,0,1,[[28,1,1,0,1]]]],[804]]],["on",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16821]]],["pastors",[7,7,[[23,7,7,0,7,[[746,1,1,0,1],[747,1,1,1,2],[754,1,1,2,3],[756,1,1,3,4],[766,1,1,4,5],[767,2,2,5,7]]]],[18973,19017,19222,19259,19476,19485,19486]]],["shepherd",[25,23,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[143,1,1,1,2]]],[10,1,1,2,3,[[312,1,1,2,3]]],[13,1,1,3,4,[[384,1,1,3,4]]],[18,1,1,4,5,[[500,1,1,4,5]]],[22,3,3,5,8,[[718,1,1,5,6],[722,1,1,6,7],[741,1,1,7,8]]],[23,5,5,8,13,[[775,1,1,8,9],[787,1,1,9,10],[793,1,1,10,11],[794,1,1,11,12],[795,1,1,12,13]]],[25,6,5,13,18,[[835,5,4,13,17],[838,1,1,17,18]]],[29,1,1,18,19,[[881,1,1,18,19]]],[37,5,4,19,23,[[920,1,1,19,20],[921,2,2,20,22],[923,2,1,22,23]]]],[1497,4571,9497,11558,14236,18431,18561,18877,19701,20009,20146,20210,20235,21318,21321,21325,21336,21421,22407,23018,23043,23044,23066]]],["shepherd's",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7658]]],["shepherds",[31,26,[[1,2,2,0,2,[[51,2,2,0,2]]],[8,1,1,2,3,[[260,1,1,2,3]]],[22,3,3,3,6,[[691,1,1,3,4],[709,1,1,4,5],[734,1,1,5,6]]],[23,7,7,6,13,[[750,1,1,6,7],[767,1,1,7,8],[769,3,3,8,11],[777,1,1,11,12],[794,1,1,12,13]]],[25,10,5,13,18,[[835,10,5,13,18]]],[29,1,1,18,19,[[879,1,1,18,19]]],[32,1,1,19,20,[[897,1,1,19,20]]],[33,1,1,20,21,[[902,1,1,20,21]]],[35,1,1,21,22,[[907,1,1,21,22]]],[37,4,4,22,26,[[920,1,1,22,23],[921,3,3,23,26]]]],[1571,1573,7868,17926,18254,18764,19092,19488,19568,19569,19570,19787,20172,21315,21320,21321,21322,21323,22366,22638,22730,22811,23019,23031,23033,23036]]],["shepherds'",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17545]]],["up",[2,2,[[23,1,1,0,1,[[766,1,1,0,1]]],[25,1,1,1,2,[[835,1,1,1,2]]]],[19476,21331]]]]},{"k":"H7463","v":[["friend",[3,3,[[9,2,2,0,2,[[281,1,1,0,1],[282,1,1,1,2]]],[10,1,1,2,3,[[294,1,1,2,3]]]],[8426,8442,8849]]]]},{"k":"H7464","v":[["*",[3,3,[[6,2,2,0,2,[[221,2,2,0,2]]],[18,1,1,2,3,[[522,1,1,2,3]]]],[6866,6867,14611]]],["companions",[2,2,[[6,1,1,0,1,[[221,1,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]]],[6867,14611]]],["fellows",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6866]]]]},{"k":"H7465","v":[["broken",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17132]]]]},{"k":"H7466","v":[["Reu",[5,5,[[0,4,4,0,4,[[10,4,4,0,4]]],[12,1,1,4,5,[[338,1,1,4,5]]]],[284,285,286,287,10277]]]]},{"k":"H7467","v":[["*",[11,10,[[0,5,4,0,4,[[35,5,4,0,4]]],[1,1,1,4,5,[[51,1,1,4,5]]],[3,2,2,5,7,[[118,1,1,5,6],[126,1,1,6,7]]],[12,3,3,7,10,[[338,2,2,7,9],[346,1,1,9,10]]]],[1044,1050,1053,1057,1572,3672,4017,10287,10289,10623]]],["Raguel",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[4017]]],["Reuel",[10,9,[[0,5,4,0,4,[[35,5,4,0,4]]],[1,1,1,4,5,[[51,1,1,4,5]]],[3,1,1,5,6,[[118,1,1,5,6]]],[12,3,3,6,9,[[338,2,2,6,8],[346,1,1,8,9]]]],[1044,1050,1053,1057,1572,3672,10287,10289,10623]]]]},{"k":"H7468","v":[["*",[6,6,[[1,1,1,0,1,[[60,1,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]],[22,2,2,2,4,[[712,2,2,2,4]]],[23,1,1,4,5,[[753,1,1,4,5]]],[37,1,1,5,6,[[921,1,1,5,6]]]],[1808,12721,18318,18319,19195,23037]]],["another",[2,2,[[16,1,1,0,1,[[426,1,1,0,1]]],[37,1,1,1,2,[[921,1,1,1,2]]]],[12721,23037]]],["mate",[2,2,[[22,2,2,0,2,[[712,2,2,0,2]]]],[18318,18319]]],["neighbour",[2,2,[[1,1,1,0,1,[[60,1,1,0,1]]],[23,1,1,1,2,[[753,1,1,1,2]]]],[1808,19195]]]]},{"k":"H7469","v":[["vexation",[7,7,[[20,7,7,0,7,[[659,1,1,0,1],[660,3,3,1,4],[662,2,2,4,6],[664,1,1,6,7]]]],[17329,17344,17350,17359,17385,17387,17426]]]]},{"k":"H7470","v":[["*",[2,2,[[14,2,2,0,2,[[407,1,1,0,1],[409,1,1,1,2]]]],[12151,12191]]],["pleasure",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12151]]],["will",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12191]]]]},{"k":"H7471","v":[["pastures",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8867]]]]},{"k":"H7472","v":[["Rei",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8725]]]]},{"k":"H7473","v":[["*",[2,2,[[22,1,1,0,1,[[716,1,1,0,1]]],[37,1,1,1,2,[[921,1,1,1,2]]]],[18402,23045]]],["shepherd",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23045]]],["shepherd's",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18402]]]]},{"k":"H7474","v":[["love",[9,9,[[21,9,9,0,9,[[671,2,2,0,2],[672,3,3,2,5],[674,2,2,5,7],[675,1,1,7,8],[676,1,1,8,9]]]],[17546,17552,17556,17564,17567,17583,17589,17600,17618]]]]},{"k":"H7475","v":[["vexation",[3,3,[[20,3,3,0,3,[[659,1,1,0,1],[660,1,1,1,2],[662,1,1,2,3]]]],[17332,17355,17397]]]]},{"k":"H7476","v":[["*",[6,6,[[26,6,6,0,6,[[851,2,2,0,2],[853,1,1,2,3],[854,2,2,3,5],[856,1,1,5,6]]]],[21787,21788,21856,21880,21884,21961]]],["cogitations",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21961]]],["thoughts",[5,5,[[26,5,5,0,5,[[851,2,2,0,2],[853,1,1,2,3],[854,2,2,3,5]]]],[21787,21788,21856,21880,21884]]]]},{"k":"H7477","v":[["shaken",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22702]]]]},{"k":"H7478","v":[["trembling",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23047]]]]},{"k":"H7479","v":[["mufflers",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17726]]]]},{"k":"H7480","v":[["Reelaiah",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12029]]]]},{"k":"H7481","v":[["*",[13,13,[[8,3,3,0,3,[[236,1,1,0,1],[237,1,1,1,2],[242,1,1,2,3]]],[9,1,1,3,4,[[288,1,1,3,4]]],[12,1,1,4,5,[[353,1,1,4,5]]],[17,3,3,5,8,[[472,2,2,5,7],[475,1,1,7,8]]],[18,4,4,8,12,[[495,1,1,8,9],[506,1,1,9,10],[573,1,1,10,11],[575,1,1,11,12]]],[25,1,1,12,13,[[828,1,1,12,13]]]],[7218,7250,7362,8616,10852,13773,13774,13873,14131,14311,15476,15497,21156]]],["fret",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7218]]],["roar",[3,3,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,2,2,1,3,[[573,1,1,1,2],[575,1,1,2,3]]]],[10852,15476,15497]]],["thunder",[2,2,[[8,1,1,0,1,[[237,1,1,0,1]]],[17,1,1,1,2,[[475,1,1,1,2]]]],[7250,13873]]],["thundered",[3,3,[[8,1,1,0,1,[[242,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]]],[7362,8616,14131]]],["thundereth",[3,3,[[17,2,2,0,2,[[472,2,2,0,2]]],[18,1,1,2,3,[[506,1,1,2,3]]]],[13773,13774,14311]]],["troubled",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21156]]]]},{"k":"H7482","v":[["thunder",[6,6,[[17,2,2,0,2,[[461,1,1,0,1],[474,1,1,1,2]]],[18,3,3,2,5,[[554,1,1,2,3],[558,1,1,3,4],[581,1,1,4,5]]],[22,1,1,5,6,[[707,1,1,5,6]]]],[13481,13859,15111,15224,15578,18199]]]]},{"k":"H7483","v":[["thunder",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13853]]]]},{"k":"H7484","v":[["Raamah",[5,3,[[0,2,1,0,1,[[9,2,1,0,1]]],[12,2,1,1,2,[[338,2,1,1,2]]],[25,1,1,2,3,[[828,1,1,2,3]]]],[241,10261,21143]]]]},{"k":"H7485","v":[["Raamiah",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12427]]]]},{"k":"H7486","v":[["*",[5,5,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,2,2,1,3,[[50,1,1,1,2],[61,1,1,2,3]]],[3,2,2,3,5,[[149,2,2,3,5]]]],[1431,1543,1853,4763,4765]]],["+",[3,3,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,2,2,1,3,[[149,2,2,1,3]]]],[1853,4763,4765]]],["Raamses",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1543]]],["Rameses",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1431]]]]},{"k":"H7487","v":[["flourishing",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21841]]]]},{"k":"H7488","v":[["*",[20,20,[[4,1,1,0,1,[[164,1,1,0,1]]],[10,1,1,1,2,[[304,1,1,1,2]]],[11,2,2,2,4,[[328,1,1,2,3],[329,1,1,3,4]]],[13,1,1,4,5,[[394,1,1,4,5]]],[17,1,1,5,6,[[450,1,1,5,6]]],[18,4,4,6,10,[[514,1,1,6,7],[529,1,1,7,8],[569,2,2,8,10]]],[21,1,1,10,11,[[671,1,1,10,11]]],[22,1,1,11,12,[[735,1,1,11,12]]],[23,6,6,12,18,[[746,1,1,12,13],[747,2,2,13,15],[755,1,1,15,16],[761,2,2,16,18]]],[25,1,1,18,19,[[807,1,1,18,19]]],[27,1,1,19,20,[[875,1,1,19,20]]]],[5242,9241,9967,9993,11768,13235,14485,14718,15421,15425,17553,18770,18985,19008,19015,19242,19359,19365,20576,22290]]],["flourishing",[1,1,[[18,1,1,0,1,[[569,1,1,0,1]]]],[15425]]],["fresh",[1,1,[[18,1,1,0,1,[[569,1,1,0,1]]]],[15421]]],["green",[18,18,[[4,1,1,0,1,[[164,1,1,0,1]]],[10,1,1,1,2,[[304,1,1,1,2]]],[11,2,2,2,4,[[328,1,1,2,3],[329,1,1,3,4]]],[13,1,1,4,5,[[394,1,1,4,5]]],[17,1,1,5,6,[[450,1,1,5,6]]],[18,2,2,6,8,[[514,1,1,6,7],[529,1,1,7,8]]],[21,1,1,8,9,[[671,1,1,8,9]]],[22,1,1,9,10,[[735,1,1,9,10]]],[23,6,6,10,16,[[746,1,1,10,11],[747,2,2,11,13],[755,1,1,13,14],[761,2,2,14,16]]],[25,1,1,16,17,[[807,1,1,16,17]]],[27,1,1,17,18,[[875,1,1,17,18]]]],[5242,9241,9967,9993,11768,13235,14485,14718,17553,18770,18985,19008,19015,19242,19359,19365,20576,22290]]]]},{"k":"H7489","v":[["*",[98,95,[[0,9,9,0,9,[[18,2,2,0,2],[20,2,2,2,4],[30,1,1,4,5],[37,1,1,5,6],[42,1,1,6,7],[43,1,1,7,8],[47,1,1,8,9]]],[1,2,2,9,11,[[54,2,2,9,11]]],[2,1,1,11,12,[[94,1,1,11,12]]],[3,4,4,12,16,[[127,1,1,12,13],[132,1,1,13,14],[136,1,1,14,15],[138,1,1,15,16]]],[4,5,5,16,21,[[167,2,2,16,18],[178,1,1,18,19],[180,2,2,19,21]]],[5,2,2,21,23,[[210,2,2,21,23]]],[6,1,1,23,24,[[229,1,1,23,24]]],[7,1,1,24,25,[[232,1,1,24,25]]],[8,5,4,25,29,[[236,1,1,25,26],[247,2,1,26,27],[260,1,1,27,28],[261,1,1,28,29]]],[9,1,1,29,30,[[285,1,1,29,30]]],[10,3,3,30,33,[[304,1,1,30,31],[306,1,1,31,32],[307,1,1,32,33]]],[11,1,1,33,34,[[333,1,1,33,34]]],[12,3,2,34,36,[[353,1,1,34,35],[358,2,1,35,36]]],[15,3,3,36,39,[[414,2,2,36,38],[425,1,1,38,39]]],[17,3,3,39,42,[[443,1,1,39,40],[455,1,1,40,41],[469,1,1,41,42]]],[18,15,15,42,57,[[479,1,1,42,43],[492,1,1,43,44],[499,1,1,44,45],[503,1,1,45,46],[504,1,1,46,47],[514,3,3,47,50],[521,1,1,50,51],[541,1,1,51,52],[551,1,1,52,53],[569,1,1,53,54],[571,1,1,54,55],[582,1,1,55,56],[596,1,1,56,57]]],[19,7,7,57,64,[[631,1,1,57,58],[638,1,1,58,59],[644,1,1,59,60],[645,1,1,60,61],[651,3,3,61,64]]],[22,12,11,64,75,[[679,2,2,64,66],[686,1,1,66,67],[687,1,1,67,68],[689,1,1,68,69],[692,1,1,69,70],[702,2,1,70,71],[709,1,1,71,72],[719,1,1,72,73],[737,1,1,73,74],[743,1,1,74,75]]],[23,14,14,75,89,[[748,1,1,75,76],[751,1,1,76,77],[754,1,1,77,78],[755,1,1,78,79],[757,1,1,79,80],[759,1,1,80,81],[760,1,1,81,82],[764,1,1,82,83],[767,1,1,83,84],[769,2,2,84,86],[775,1,1,86,87],[782,1,1,87,88],[784,1,1,88,89]]],[31,1,1,89,90,[[892,1,1,89,90]]],[32,3,3,90,93,[[895,1,1,90,91],[896,1,1,91,92],[897,1,1,92,93]]],[35,1,1,93,94,[[906,1,1,93,94]]],[37,1,1,94,95,[[918,1,1,94,95]]]],[464,466,524,525,880,1129,1296,1329,1468,1654,1655,2834,4035,4209,4326,4409,5328,5329,5572,5665,5667,6491,6496,7047,7148,7220,7485,7895,7926,8518,9227,9308,9337,10130,10842,10951,12310,12317,12679,13049,13352,13707,13954,14091,14220,14278,14287,14451,14458,14459,14573,14852,15051,15422,15447,15621,16013,16506,16703,16877,16925,17087,17097,17098,17658,17670,17816,17846,17893,17948,18114,18252,18474,18815,18922,19049,19145,19206,19242,19289,19327,19348,19435,19498,19540,19563,19719,19904,19945,22569,22612,22626,22639,22799,22990]]],["+",[22,19,[[0,5,5,0,5,[[18,1,1,0,1],[20,1,1,1,2],[30,1,1,2,3],[37,1,1,3,4],[47,1,1,4,5]]],[3,2,2,5,7,[[132,1,1,5,6],[138,1,1,6,7]]],[6,1,1,7,8,[[229,1,1,7,8]]],[8,3,2,8,10,[[247,2,1,8,9],[260,1,1,9,10]]],[12,2,1,10,11,[[358,2,1,10,11]]],[19,2,2,11,13,[[638,1,1,11,12],[651,1,1,12,13]]],[22,3,2,13,15,[[702,2,1,13,14],[737,1,1,14,15]]],[23,2,2,15,17,[[769,1,1,15,16],[784,1,1,16,17]]],[31,1,1,17,18,[[892,1,1,17,18]]],[32,1,1,18,19,[[897,1,1,18,19]]]],[464,524,880,1129,1468,4209,4409,7047,7485,7895,10951,16703,17097,18114,18815,19540,19945,22569,22639]]],["Associate",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17816]]],["afflict",[2,2,[[18,1,1,0,1,[[521,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[14573,19719]]],["afflicted",[3,3,[[3,1,1,0,1,[[127,1,1,0,1]]],[7,1,1,1,2,[[232,1,1,1,2]]],[32,1,1,2,3,[[896,1,1,2,3]]]],[4035,7148,22626]]],["break",[2,2,[[18,1,1,0,1,[[479,1,1,0,1]]],[23,1,1,1,2,[[759,1,1,1,2]]]],[13954,19327]]],["broken",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19242]]],["do",[1,1,[[12,1,1,0,1,[[353,1,1,0,1]]]],[10842]]],["doer",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16877]]],["doers",[2,2,[[17,1,1,0,1,[[443,1,1,0,1]]],[18,1,1,1,2,[[503,1,1,1,2]]]],[13049,14278]]],["entreated",[2,2,[[1,1,1,0,1,[[54,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]]],[1654,5572]]],["evil",[20,20,[[0,1,1,0,1,[[43,1,1,0,1]]],[1,1,1,1,2,[[54,1,1,1,2]]],[2,1,1,2,3,[[94,1,1,2,3]]],[4,3,3,3,6,[[167,1,1,3,4],[180,2,2,4,6]]],[5,1,1,6,7,[[210,1,1,6,7]]],[10,2,2,7,9,[[304,1,1,7,8],[307,1,1,8,9]]],[18,1,1,9,10,[[514,1,1,9,10]]],[19,2,2,10,12,[[651,2,2,10,12]]],[22,2,2,12,14,[[679,1,1,12,13],[719,1,1,13,14]]],[23,5,5,14,19,[[748,1,1,14,15],[754,1,1,15,16],[757,1,1,16,17],[769,1,1,17,18],[782,1,1,18,19]]],[35,1,1,19,20,[[906,1,1,19,20]]]],[1329,1655,2834,5328,5665,5667,6491,9227,9337,14458,17087,17098,17670,18474,19049,19206,19289,19563,19904,22799]]],["evildoer",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17846]]],["evildoers",[9,9,[[18,4,4,0,4,[[514,2,2,0,2],[571,1,1,2,3],[596,1,1,3,4]]],[22,3,3,4,7,[[679,1,1,4,5],[692,1,1,5,6],[709,1,1,6,7]]],[23,2,2,7,9,[[764,1,1,7,8],[767,1,1,8,9]]]],[14451,14459,15447,16013,17658,17948,18252,19435,19498]]],["friendly",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16925]]],["grieved",[4,4,[[4,1,1,0,1,[[167,1,1,0,1]]],[8,1,1,1,2,[[236,1,1,1,2]]],[15,2,2,2,4,[[414,1,1,2,3],[425,1,1,3,4]]]],[5329,7220,12317,12679]]],["grievous",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[525]]],["harm",[2,2,[[8,1,1,0,1,[[261,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[7926,15621]]],["hurt",[4,4,[[5,1,1,0,1,[[210,1,1,0,1]]],[18,1,1,1,2,[[492,1,1,1,2]]],[22,2,2,2,4,[[689,1,1,2,3],[743,1,1,3,4]]]],[6496,14091,17893,18922]]],["ill",[3,3,[[0,1,1,0,1,[[42,1,1,0,1]]],[17,1,1,1,2,[[455,1,1,1,2]]],[32,1,1,2,3,[[895,1,1,2,3]]]],[1296,13352,22612]]],["mischief",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16506]]],["pieces",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13707]]],["punish",[1,1,[[37,1,1,0,1,[[918,1,1,0,1]]]],[22990]]],["sad",[1,1,[[15,1,1,0,1,[[414,1,1,0,1]]]],[12310]]],["vexed",[1,1,[[3,1,1,0,1,[[136,1,1,0,1]]]],[4326]]],["wicked",[4,4,[[18,4,4,0,4,[[499,1,1,0,1],[504,1,1,1,2],[541,1,1,2,3],[569,1,1,3,4]]]],[14220,14287,14852,15422]]],["wickedly",[2,2,[[11,1,1,0,1,[[333,1,1,0,1]]],[18,1,1,1,2,[[551,1,1,1,2]]]],[10130,15051]]],["worse",[5,5,[[0,1,1,0,1,[[18,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]],[10,1,1,2,3,[[306,1,1,2,3]]],[23,2,2,3,5,[[751,1,1,3,4],[760,1,1,4,5]]]],[466,8518,9308,19145,19348]]]]},{"k":"H7490","v":[["*",[2,1,[[26,2,1,0,1,[[851,2,1,0,1]]]],[21798]]],["breaketh",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21798]]],["bruise",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21798]]]]},{"k":"H7491","v":[["*",[5,5,[[17,1,1,0,1,[[471,1,1,0,1]]],[18,2,2,1,3,[[542,2,2,1,3]]],[19,1,1,3,4,[[630,1,1,3,4]]],[22,1,1,4,5,[[723,1,1,4,5]]]],[13764,14871,14872,16475,18569]]],["distil",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13764]]],["down",[2,2,[[19,1,1,0,1,[[630,1,1,0,1]]],[22,1,1,1,2,[[723,1,1,1,2]]]],[16475,18569]]],["drop",[2,2,[[18,2,2,0,2,[[542,2,2,0,2]]]],[14871,14872]]]]},{"k":"H7492","v":[["*",[2,2,[[1,1,1,0,1,[[64,1,1,0,1]]],[6,1,1,1,2,[[220,1,1,1,2]]]],[1926,6819]]],["pieces",[1,1,[[1,1,1,0,1,[[64,1,1,0,1]]]],[1926]]],["vexed",[1,1,[[6,1,1,0,1,[[220,1,1,0,1]]]],[6819]]]]},{"k":"H7493","v":[["*",[30,30,[[6,1,1,0,1,[[215,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,1,1,2,3,[[474,1,1,2,3]]],[18,6,6,3,9,[[495,1,1,3,4],[523,1,1,4,5],[537,1,1,5,6],[545,1,1,6,7],[549,1,1,7,8],[554,1,1,8,9]]],[22,3,3,9,12,[[691,1,1,9,10],[692,1,1,10,11],[702,1,1,11,12]]],[23,6,6,12,18,[[748,1,1,12,13],[752,1,1,13,14],[754,1,1,14,15],[793,1,1,15,16],[794,1,1,16,17],[795,1,1,17,18]]],[25,5,5,18,23,[[827,2,2,18,20],[828,1,1,20,21],[832,1,1,21,22],[839,1,1,22,23]]],[28,2,2,23,25,[[877,1,1,23,24],[878,1,1,24,25]]],[29,1,1,25,26,[[887,1,1,25,26]]],[33,1,1,26,27,[[900,1,1,26,27]]],[36,3,3,27,30,[[910,3,3,27,30]]]],[6627,8610,13854,14125,14617,14809,14908,15016,15111,17919,17944,18113,19051,19169,19211,20148,20212,20241,21110,21115,21149,21246,21445,22321,22359,22496,22689,22861,22862,22876]]],["+",[3,3,[[36,3,3,0,3,[[910,3,3,0,3]]]],[22861,22862,22876]]],["afraid",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13854]]],["moved",[2,2,[[23,2,2,0,2,[[793,1,1,0,1],[794,1,1,1,2]]]],[20148,20212]]],["quake",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22689]]],["remove",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17919]]],["shake",[11,11,[[18,2,2,0,2,[[523,1,1,0,1],[549,1,1,1,2]]],[22,2,2,2,4,[[692,1,1,2,3],[702,1,1,3,4]]],[25,5,5,4,9,[[827,2,2,4,6],[828,1,1,6,7],[832,1,1,7,8],[839,1,1,8,9]]],[28,1,1,9,10,[[878,1,1,9,10]]],[29,1,1,10,11,[[887,1,1,10,11]]]],[14617,15016,17944,18113,21110,21115,21149,21246,21445,22359,22496]]],["shook",[2,2,[[18,2,2,0,2,[[545,1,1,0,1],[554,1,1,1,2]]]],[14908,15111]]],["tremble",[4,4,[[18,1,1,0,1,[[537,1,1,0,1]]],[23,2,2,1,3,[[754,1,1,1,2],[795,1,1,2,3]]],[28,1,1,3,4,[[877,1,1,3,4]]]],[14809,19211,20241,22321]]],["trembled",[5,5,[[6,1,1,0,1,[[215,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,1,1,2,3,[[495,1,1,2,3]]],[23,2,2,3,5,[[748,1,1,3,4],[752,1,1,4,5]]]],[6627,8610,14125,19051,19169]]]]},{"k":"H7494","v":[["*",[17,16,[[10,3,2,0,2,[[309,3,2,0,2]]],[17,2,2,2,4,[[474,1,1,2,3],[476,1,1,3,4]]],[22,2,2,4,6,[[687,1,1,4,5],[707,1,1,5,6]]],[23,2,2,6,8,[[754,1,1,6,7],[791,1,1,7,8]]],[25,5,5,8,13,[[804,2,2,8,10],[813,1,1,10,11],[838,1,1,11,12],[839,1,1,12,13]]],[29,1,1,13,14,[[879,1,1,13,14]]],[33,1,1,14,15,[[902,1,1,14,15]]],[37,1,1,15,16,[[924,1,1,15,16]]]],[9398,9399,13858,13917,17834,18199,19223,20076,20514,20515,20698,21404,21444,22365,22714,23073]]],["+",[1,1,[[23,1,1,0,1,[[791,1,1,0,1]]]],[20076]]],["commotion",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19223]]],["earthquake",[6,5,[[10,3,2,0,2,[[309,3,2,0,2]]],[22,1,1,2,3,[[707,1,1,2,3]]],[29,1,1,3,4,[[879,1,1,3,4]]],[37,1,1,4,5,[[924,1,1,4,5]]]],[9398,9399,18199,22365,23073]]],["fierceness",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13858]]],["noise",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17834]]],["quaking",[1,1,[[25,1,1,0,1,[[813,1,1,0,1]]]],[20698]]],["rattling",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22714]]],["rushing",[2,2,[[25,2,2,0,2,[[804,2,2,0,2]]]],[20514,20515]]],["shaking",[3,3,[[17,1,1,0,1,[[476,1,1,0,1]]],[25,2,2,1,3,[[838,1,1,1,2],[839,1,1,2,3]]]],[13917,21404,21444]]]]},{"k":"H7495","v":[["*",[67,62,[[0,3,2,0,2,[[19,1,1,0,1],[49,2,1,1,2]]],[1,3,2,2,4,[[64,1,1,2,3],[70,2,1,3,4]]],[2,4,4,4,8,[[102,2,2,4,6],[103,2,2,6,8]]],[3,1,1,8,9,[[128,1,1,8,9]]],[4,3,3,9,12,[[180,2,2,9,11],[184,1,1,11,12]]],[8,1,1,12,13,[[241,1,1,12,13]]],[10,1,1,13,14,[[308,1,1,13,14]]],[11,6,6,14,20,[[314,2,2,14,16],[320,1,1,16,17],[321,1,1,17,18],[332,2,2,18,20]]],[13,4,4,20,24,[[373,1,1,20,21],[382,1,1,21,22],[388,1,1,22,23],[396,1,1,23,24]]],[17,2,2,24,26,[[440,1,1,24,25],[448,1,1,25,26]]],[18,7,7,26,33,[[483,1,1,26,27],[507,1,1,27,28],[518,1,1,28,29],[537,1,1,29,30],[580,1,1,30,31],[584,1,1,31,32],[624,1,1,32,33]]],[20,1,1,33,34,[[661,1,1,33,34]]],[22,7,6,34,40,[[684,1,1,34,35],[697,2,1,35,36],[708,1,1,36,37],[731,1,1,37,38],[735,2,2,38,40]]],[23,13,11,40,51,[[747,1,1,40,41],[750,1,1,41,42],[752,2,2,42,44],[759,1,1,44,45],[761,2,1,45,46],[763,1,1,46,47],[774,1,1,47,48],[777,1,1,48,49],[795,3,2,49,51]]],[24,1,1,51,52,[[798,1,1,51,52]]],[25,4,4,52,56,[[835,1,1,52,53],[848,3,3,53,56]]],[27,5,5,56,61,[[866,1,1,56,57],[867,1,1,57,58],[868,1,1,58,59],[872,1,1,59,60],[875,1,1,60,61]]],[37,1,1,61,62,[[921,1,1,61,62]]]],[512,1508,1946,2096,3070,3089,3114,3159,4072,5638,5646,5797,7334,9371,9572,9573,9756,9771,10103,10106,11338,11521,11650,11847,12969,13157,13987,14321,14546,14809,15552,15719,16354,17362,17779,18026,18243,18716,18783,18784,19024,19103,19164,19175,19333,19371,19418,19684,19781,20220,20221,20345,21317,21687,21688,21690,22165,22168,22179,22243,22286,23044]]],["+",[8,7,[[0,1,1,0,1,[[19,1,1,0,1]]],[1,2,1,1,2,[[70,2,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[13,2,2,3,5,[[373,1,1,3,4],[396,1,1,4,5]]],[23,2,2,5,7,[[752,1,1,5,6],[795,1,1,6,7]]]],[512,2096,9371,11338,11847,19164,20221]]],["Heal",[2,2,[[3,1,1,0,1,[[128,1,1,0,1]]],[23,1,1,1,2,[[761,1,1,1,2]]]],[4072,19371]]],["cure",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19781]]],["heal",[18,17,[[4,1,1,0,1,[[184,1,1,0,1]]],[11,2,2,1,3,[[332,2,2,1,3]]],[18,3,3,3,6,[[483,1,1,3,4],[518,1,1,4,5],[537,1,1,5,6]]],[20,1,1,6,7,[[661,1,1,6,7]]],[22,4,3,7,10,[[697,2,1,7,8],[735,2,2,8,10]]],[23,2,2,10,12,[[747,1,1,10,11],[774,1,1,11,12]]],[24,1,1,12,13,[[798,1,1,12,13]]],[27,3,3,13,16,[[866,1,1,13,14],[867,1,1,14,15],[875,1,1,15,16]]],[37,1,1,16,17,[[921,1,1,16,17]]]],[5797,10103,10106,13987,14546,14809,17362,18026,18783,18784,19024,19684,20345,22165,22168,22286,23044]]],["healed",[27,27,[[2,4,4,0,4,[[102,2,2,0,2],[103,2,2,2,4]]],[4,2,2,4,6,[[180,2,2,4,6]]],[8,1,1,6,7,[[241,1,1,6,7]]],[11,4,4,7,11,[[314,2,2,7,9],[320,1,1,9,10],[321,1,1,10,11]]],[13,1,1,11,12,[[388,1,1,11,12]]],[18,2,2,12,14,[[507,1,1,12,13],[584,1,1,13,14]]],[22,2,2,14,16,[[684,1,1,14,15],[731,1,1,15,16]]],[23,5,5,16,21,[[750,1,1,16,17],[759,1,1,17,18],[761,1,1,18,19],[795,2,2,19,21]]],[25,4,4,21,25,[[835,1,1,21,22],[848,3,3,22,25]]],[27,2,2,25,27,[[868,1,1,25,26],[872,1,1,26,27]]]],[3070,3089,3114,3159,5638,5646,7334,9572,9573,9756,9771,11650,14321,15719,17779,18716,19103,19333,19371,20220,20221,21317,21687,21688,21690,22179,22243]]],["healeth",[4,4,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,2,2,1,3,[[580,1,1,1,2],[624,1,1,2,3]]],[22,1,1,3,4,[[708,1,1,3,4]]]],[1946,15552,16354,18243]]],["physician",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19175]]],["physicians",[4,3,[[0,2,1,0,1,[[49,2,1,0,1]]],[13,1,1,1,2,[[382,1,1,1,2]]],[17,1,1,2,3,[[448,1,1,2,3]]]],[1508,11521,13157]]],["whole",[2,2,[[17,1,1,0,1,[[440,1,1,0,1]]],[23,1,1,1,2,[[763,1,1,1,2]]]],[12969,19418]]]]},{"k":"H7496","v":[["*",[8,8,[[17,1,1,0,1,[[461,1,1,0,1]]],[18,1,1,1,2,[[565,1,1,1,2]]],[19,3,3,2,5,[[629,1,1,2,3],[636,1,1,3,4],[648,1,1,4,5]]],[22,3,3,5,8,[[692,1,1,5,6],[704,2,2,6,8]]]],[13472,15318,16451,16656,17000,17937,18144,18149]]],["Dead",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13472]]],["dead",[6,6,[[18,1,1,0,1,[[565,1,1,0,1]]],[19,3,3,1,4,[[629,1,1,1,2],[636,1,1,2,3],[648,1,1,3,4]]],[22,2,2,4,6,[[692,1,1,4,5],[704,1,1,5,6]]]],[15318,16451,16656,17000,17937,18149]]],["deceased",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18144]]]]},{"k":"H7497","v":[["*",[21,20,[[0,2,2,0,2,[[13,1,1,0,1],[14,1,1,1,2]]],[4,5,4,2,6,[[154,3,2,2,4],[155,2,2,4,6]]],[5,5,5,6,11,[[198,1,1,6,7],[199,1,1,7,8],[201,1,1,8,9],[203,1,1,9,10],[204,1,1,10,11]]],[9,3,3,11,14,[[271,2,2,11,13],[289,1,1,13,14]]],[12,5,5,14,19,[[348,1,1,14,15],[351,1,1,15,16],[357,3,3,16,19]]],[22,1,1,19,20,[[695,1,1,19,20]]]],[341,380,4949,4958,4986,4988,6134,6166,6210,6290,6309,8150,8154,8666,10688,10783,10930,10932,10934,17988]]],["Rephaim",[6,6,[[9,3,3,0,3,[[271,2,2,0,2],[289,1,1,2,3]]],[12,2,2,3,5,[[348,1,1,3,4],[351,1,1,4,5]]],[22,1,1,5,6,[[695,1,1,5,6]]]],[8150,8154,8666,10688,10783,17988]]],["Rephaims",[2,2,[[0,2,2,0,2,[[13,1,1,0,1],[14,1,1,1,2]]]],[341,380]]],["giant",[3,3,[[12,3,3,0,3,[[357,3,3,0,3]]]],[10930,10932,10934]]],["giants",[10,9,[[4,5,4,0,4,[[154,3,2,0,2],[155,2,2,2,4]]],[5,5,5,4,9,[[198,1,1,4,5],[199,1,1,5,6],[201,1,1,6,7],[203,1,1,7,8],[204,1,1,8,9]]]],[4949,4958,4986,4988,6134,6166,6210,6290,6309]]]]},{"k":"H7498","v":[["*",[6,6,[[9,4,4,0,4,[[287,4,4,0,4]]],[12,2,2,4,6,[[345,2,2,4,6]]]],[8596,8598,8600,8602,10577,10612]]],["Rapha",[2,2,[[12,2,2,0,2,[[345,2,2,0,2]]]],[10577,10612]]],["giant",[4,4,[[9,4,4,0,4,[[287,4,4,0,4]]]],[8596,8598,8600,8602]]]]},{"k":"H7499","v":[["*",[3,3,[[23,2,2,0,2,[[774,1,1,0,1],[790,1,1,1,2]]],[25,1,1,2,3,[[831,1,1,2,3]]]],[19680,20056,21225]]],["+",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21225]]],["medicines",[2,2,[[23,2,2,0,2,[[774,1,1,0,1],[790,1,1,1,2]]]],[19680,20056]]]]},{"k":"H7500","v":[["health",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16463]]]]},{"k":"H7501","v":[["Rephael",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11084]]]]},{"k":"H7502","v":[["*",[3,3,[[17,2,2,0,2,[[452,1,1,0,1],[476,1,1,1,2]]],[21,1,1,2,3,[[672,1,1,2,3]]]],[13273,13918,17559]]],["comfort",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17559]]],["made",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13273]]],["spreadeth",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13918]]]]},{"k":"H7503","v":[["*",[46,45,[[1,4,3,0,3,[[53,1,1,0,1],[54,3,2,1,3]]],[4,4,4,3,7,[[156,1,1,3,4],[161,1,1,4,5],[183,2,2,5,7]]],[5,3,3,7,10,[[187,1,1,7,8],[196,1,1,8,9],[204,1,1,9,10]]],[6,3,3,10,13,[[218,1,1,10,11],[221,1,1,11,12],[229,1,1,12,13]]],[8,2,2,13,15,[[246,1,1,13,14],[250,1,1,14,15]]],[9,2,2,15,17,[[270,1,1,15,16],[290,1,1,16,17]]],[11,1,1,17,18,[[316,1,1,17,18]]],[12,2,2,18,20,[[358,1,1,18,19],[365,1,1,19,20]]],[13,1,1,20,21,[[381,1,1,20,21]]],[14,1,1,21,22,[[406,1,1,21,22]]],[15,2,2,22,24,[[418,2,2,22,24]]],[17,3,3,24,27,[[442,1,1,24,25],[447,1,1,25,26],[462,1,1,26,27]]],[18,3,3,27,30,[[514,1,1,27,28],[523,1,1,28,29],[615,1,1,29,30]]],[19,3,3,30,33,[[631,1,1,30,31],[645,1,1,31,32],[651,1,1,32,33]]],[21,1,1,33,34,[[673,1,1,33,34]]],[22,2,2,34,36,[[683,1,1,34,35],[691,1,1,35,36]]],[23,4,4,36,40,[[750,1,1,36,37],[782,1,1,37,38],[793,1,1,38,39],[794,1,1,39,40]]],[25,4,4,40,44,[[802,2,2,40,42],[808,1,1,42,43],[822,1,1,43,44]]],[35,1,1,44,45,[[908,1,1,44,45]]]],[1627,1640,1649,5035,5171,5734,5736,5856,6070,6296,6722,6866,7033,7448,7576,8121,8708,9630,10949,11163,11497,12114,12404,12410,13027,13149,13487,14458,14624,16239,16503,16910,17089,17575,17763,17913,19113,19899,20151,20209,20488,20489,20594,20951,22836]]],["+",[4,4,[[1,1,1,0,1,[[53,1,1,0,1]]],[4,1,1,1,2,[[161,1,1,1,2]]],[6,1,1,2,3,[[221,1,1,2,3]]],[23,1,1,3,4,[[782,1,1,3,4]]]],[1627,5171,6866,19899]]],["Cease",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14458]]],["Slack",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6070]]],["Stay",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7576]]],["abated",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6722]]],["alone",[2,2,[[11,1,1,0,1,[[316,1,1,0,1]]],[17,1,1,1,2,[[442,1,1,1,2]]]],[9630,13027]]],["consumeth",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17763]]],["down",[2,2,[[25,2,2,0,2,[[802,2,2,0,2]]]],[20488,20489]]],["draweth",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7033]]],["fail",[4,4,[[4,2,2,0,2,[[183,2,2,0,2]]],[5,1,1,2,3,[[187,1,1,2,3]]],[12,1,1,3,4,[[365,1,1,3,4]]]],[5734,5736,5856,11163]]],["faint",[2,2,[[19,1,1,0,1,[[651,1,1,0,1]]],[22,1,1,1,2,[[691,1,1,1,2]]]],[17089,17913]]],["feeble",[6,6,[[9,1,1,0,1,[[270,1,1,0,1]]],[23,3,3,1,4,[[750,1,1,1,2],[793,1,1,2,3],[794,1,1,3,4]]],[25,2,2,4,6,[[808,1,1,4,5],[822,1,1,5,6]]]],[8121,19113,20151,20209,20594,20951]]],["forsake",[2,2,[[4,1,1,0,1,[[156,1,1,0,1]]],[18,1,1,1,2,[[615,1,1,1,2]]]],[5035,16239]]],["go",[3,3,[[17,1,1,0,1,[[462,1,1,0,1]]],[19,1,1,1,2,[[631,1,1,1,2]]],[21,1,1,2,3,[[673,1,1,2,3]]]],[13487,16503,17575]]],["idle",[3,2,[[1,3,2,0,2,[[54,3,2,0,2]]]],[1640,1649]]],["leave",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12404]]],["respite",[1,1,[[8,1,1,0,1,[[246,1,1,0,1]]]],[7448]]],["slack",[2,2,[[5,1,1,0,1,[[204,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[6296,22836]]],["slothful",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16910]]],["stay",[2,2,[[9,1,1,0,1,[[290,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]]],[8708,10949]]],["still",[1,1,[[18,1,1,0,1,[[523,1,1,0,1]]]],[14624]]],["weak",[1,1,[[13,1,1,0,1,[[381,1,1,0,1]]]],[11497]]],["weakened",[2,2,[[14,1,1,0,1,[[406,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]]],[12114,12410]]],["weakeneth",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13149]]]]},{"k":"H7504","v":[["weak",[4,4,[[3,1,1,0,1,[[129,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[17,1,1,2,3,[[439,1,1,2,3]]],[22,1,1,3,4,[[713,1,1,3,4]]]],[4093,8451,12933,18323]]]]},{"k":"H7505","v":[["Raphu",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4084]]]]},{"k":"H7506","v":[["Rephah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10560]]]]},{"k":"H7507","v":[["bottom",[1,1,[[21,1,1,0,1,[[673,1,1,0,1]]]],[17581]]]]},{"k":"H7508","v":[["*",[5,5,[[1,3,3,0,3,[[66,2,2,0,2],[68,1,1,2,3]]],[3,2,2,3,5,[[149,2,2,3,5]]]],[1984,1991,2028,4774,4775]]],["+",[2,2,[[1,1,1,0,1,[[68,1,1,0,1]]],[3,1,1,1,2,[[149,1,1,1,2]]]],[2028,4775]]],["Rephidim",[3,3,[[1,2,2,0,2,[[66,2,2,0,2]]],[3,1,1,2,3,[[149,1,1,2,3]]]],[1984,1991,4774]]]]},{"k":"H7509","v":[["Rephaiah",[5,5,[[12,4,4,0,4,[[340,1,1,0,1],[341,1,1,1,2],[344,1,1,2,3],[346,1,1,3,4]]],[15,1,1,4,5,[[415,1,1,4,5]]]],[10382,10427,10537,10658,12336]]]]},{"k":"H7510","v":[["+",[1,1,[[23,1,1,0,1,[[791,1,1,0,1]]]],[20076]]]]},{"k":"H7511","v":[["*",[3,3,[[18,1,1,0,1,[[545,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]],[25,1,1,2,3,[[833,1,1,2,3]]]],[14930,16543,21250]]],["fouledst",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21250]]],["himself",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14930]]],["thyself",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16543]]]]},{"k":"H7512","v":[["stamped",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21940,21952]]]]},{"k":"H7513","v":[["floats",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11227]]]]},{"k":"H7514","v":[["leaning",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17645]]]]},{"k":"H7515","v":[["*",[2,2,[[19,1,1,0,1,[[652,1,1,0,1]]],[25,1,1,1,2,[[835,1,1,1,2]]]],[17139,21331]]],["foul",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21331]]],["troubled",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17139]]]]},{"k":"H7516","v":[["mire",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18785]]]]},{"k":"H7517","v":[["stalls",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22785]]]]},{"k":"H7518","v":[["pieces",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14930]]]]},{"k":"H7519","v":[["ran",[1,1,[[25,1,1,0,1,[[802,1,1,0,1]]]],[20478]]]]},{"k":"H7520","v":[["leap",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14916]]]]},{"k":"H7521","v":[["*",[56,54,[[0,1,1,0,1,[[32,1,1,0,1]]],[2,11,9,1,10,[[90,1,1,1,2],[96,1,1,2,3],[108,1,1,3,4],[111,3,3,4,7],[115,5,3,7,10]]],[4,2,2,10,12,[[185,2,2,10,12]]],[8,1,1,12,13,[[264,1,1,12,13]]],[9,1,1,13,14,[[290,1,1,13,14]]],[12,3,3,14,17,[[365,1,1,14,15],[366,2,2,15,17]]],[13,2,2,17,19,[[376,1,1,17,18],[402,1,1,18,19]]],[16,1,1,19,20,[[435,1,1,19,20]]],[17,4,4,20,24,[[449,1,1,20,21],[455,1,1,21,22],[468,1,1,22,23],[469,1,1,23,24]]],[18,13,13,24,37,[[517,1,1,24,25],[521,1,1,25,26],[526,1,1,26,27],[527,1,1,27,28],[528,1,1,28,29],[539,1,1,29,30],[554,1,1,30,31],[562,1,1,31,32],[579,1,1,32,33],[596,1,1,33,34],[624,2,2,34,36],[626,1,1,36,37]]],[19,2,2,37,39,[[630,1,1,37,38],[643,1,1,38,39]]],[20,1,1,39,40,[[667,1,1,39,40]]],[22,2,2,40,42,[[718,1,1,40,41],[720,1,1,41,42]]],[23,2,2,42,44,[[758,2,2,42,44]]],[25,3,3,44,47,[[821,2,2,44,46],[844,1,1,46,47]]],[27,1,1,47,48,[[869,1,1,47,48]]],[29,1,1,48,49,[[883,1,1,48,49]]],[32,1,1,49,50,[[898,1,1,49,50]]],[36,1,1,50,51,[[909,1,1,50,51]]],[38,3,3,51,54,[[925,3,3,51,54]]]],[970,2749,2897,3288,3392,3394,3396,3558,3565,3567,5821,5834,7971,8715,11147,11167,11181,11402,12014,12869,13187,13336,13676,13692,14538,14574,14661,14686,14707,14831,15100,15272,15535,16006,16361,16362,16389,16467,16847,17482,18422,18481,19303,19305,20935,20936,21599,22207,22445,22655,22848,23097,23099,23102]]],["+",[9,7,[[2,4,2,0,2,[[115,4,2,0,2]]],[13,1,1,2,3,[[402,1,1,2,3]]],[18,3,3,3,6,[[579,1,1,3,4],[624,2,2,4,6]]],[20,1,1,6,7,[[667,1,1,6,7]]]],[3558,3567,12014,15535,16361,16362,17482]]],["Accept",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16006]]],["accept",[11,11,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]],[9,1,1,2,3,[[290,1,1,2,3]]],[23,2,2,3,5,[[758,2,2,3,5]]],[25,3,3,5,8,[[821,2,2,5,7],[844,1,1,7,8]]],[29,1,1,8,9,[[883,1,1,8,9]]],[38,2,2,9,11,[[925,2,2,9,11]]]],[3565,5821,8715,19303,19305,20935,20936,21599,22445,23099,23102]]],["acceptable",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5834]]],["accepted",[7,7,[[2,6,6,0,6,[[90,1,1,0,1],[96,1,1,1,2],[108,1,1,2,3],[111,3,3,3,6]]],[16,1,1,6,7,[[435,1,1,6,7]]]],[2749,2897,3288,3392,3394,3396,12869]]],["accepteth",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22207]]],["accomplish",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13187]]],["affection",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11167]]],["approve",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14661]]],["consentedst",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14686]]],["delight",[2,2,[[17,1,1,0,1,[[469,1,1,0,1]]],[18,1,1,1,2,[[539,1,1,1,2]]]],[13692,14831]]],["delightest",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14707]]],["delighteth",[2,2,[[19,1,1,0,1,[[630,1,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]]],[16467,18481]]],["favour",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14574]]],["favourable",[3,3,[[17,1,1,0,1,[[468,1,1,0,1]]],[18,2,2,1,3,[[554,1,1,1,2],[562,1,1,2,3]]]],[13676,15100,15272]]],["liked",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11147]]],["pardoned",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18422]]],["please",[3,3,[[13,1,1,0,1,[[376,1,1,0,1]]],[17,1,1,1,2,[[455,1,1,1,2]]],[19,1,1,2,3,[[643,1,1,2,3]]]],[11402,13336,16847]]],["pleased",[4,4,[[0,1,1,0,1,[[32,1,1,0,1]]],[18,1,1,1,2,[[517,1,1,1,2]]],[32,1,1,2,3,[[898,1,1,2,3]]],[38,1,1,3,4,[[925,1,1,3,4]]]],[970,14538,22655,23097]]],["pleasure",[3,3,[[12,1,1,0,1,[[366,1,1,0,1]]],[18,1,1,1,2,[[626,1,1,1,2]]],[36,1,1,2,3,[[909,1,1,2,3]]]],[11181,16389,22848]]],["reconcile",[1,1,[[8,1,1,0,1,[[264,1,1,0,1]]]],[7971]]]]},{"k":"H7522","v":[["*",[56,56,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,1,1,1,2,[[77,1,1,1,2]]],[2,7,7,2,9,[[90,1,1,2,3],[108,1,1,3,4],[111,4,4,4,8],[112,1,1,8,9]]],[4,2,2,9,11,[[185,2,2,9,11]]],[13,1,1,11,12,[[381,1,1,11,12]]],[14,1,1,12,13,[[412,1,1,12,13]]],[15,2,2,13,15,[[421,2,2,13,15]]],[16,2,2,15,17,[[426,1,1,15,16],[434,1,1,16,17]]],[18,13,13,17,30,[[482,1,1,17,18],[496,1,1,18,19],[507,2,2,19,21],[517,1,1,21,22],[528,1,1,22,23],[546,1,1,23,24],[566,1,1,24,25],[580,1,1,25,26],[583,1,1,26,27],[620,1,1,27,28],[622,2,2,28,30]]],[19,14,14,30,44,[[635,1,1,30,31],[637,1,1,31,32],[638,3,3,32,35],[639,2,2,35,37],[641,2,2,37,39],[642,1,1,39,40],[643,2,2,40,42],[645,1,1,42,43],[646,1,1,43,44]]],[22,6,6,44,50,[[727,1,1,44,45],[734,1,1,45,46],[736,1,1,46,47],[738,2,2,47,49],[739,1,1,49,50]]],[23,1,1,50,51,[[750,1,1,50,51]]],[26,4,4,51,55,[[857,1,1,51,52],[860,3,3,52,55]]],[38,1,1,55,56,[[926,1,1,55,56]]]],[1479,2331,2748,3286,3388,3389,3390,3398,3413,5826,5833,11505,12263,12535,12548,12710,12839,13985,14182,14324,14326,14533,14709,14948,15343,15570,15655,16303,16336,16339,16637,16688,16689,16708,16715,16721,16741,16781,16807,16815,16853,16855,16923,16937,18644,18760,18791,18828,18831,18845,19109,21965,22039,22052,22072,23116]]],["acceptable",[8,8,[[2,1,1,0,1,[[111,1,1,0,1]]],[18,2,2,1,3,[[496,1,1,1,2],[546,1,1,2,3]]],[19,1,1,3,4,[[637,1,1,3,4]]],[22,3,3,4,7,[[727,1,1,4,5],[736,1,1,5,6],[739,1,1,6,7]]],[23,1,1,7,8,[[750,1,1,7,8]]]],[3389,14182,14948,16688,18644,18791,18845,19109]]],["acceptance",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18828]]],["accepted",[4,4,[[1,1,1,0,1,[[77,1,1,0,1]]],[2,2,2,1,3,[[111,1,1,1,2],[112,1,1,2,3]]],[22,1,1,3,4,[[734,1,1,3,4]]]],[2331,3390,3413,18760]]],["delight",[5,5,[[19,5,5,0,5,[[638,2,2,0,2],[639,1,1,2,3],[642,1,1,3,4],[643,1,1,4,5]]]],[16689,16708,16741,16815,16853]]],["desire",[3,3,[[13,1,1,0,1,[[381,1,1,0,1]]],[18,2,2,1,3,[[622,2,2,1,3]]]],[11505,16336,16339]]],["favour",[15,15,[[4,1,1,0,1,[[185,1,1,0,1]]],[18,5,5,1,6,[[482,1,1,1,2],[507,2,2,2,4],[566,1,1,4,5],[583,1,1,5,6]]],[19,8,8,6,14,[[635,1,1,6,7],[638,1,1,7,8],[639,1,1,8,9],[641,2,2,9,11],[643,1,1,11,12],[645,1,1,12,13],[646,1,1,13,14]]],[22,1,1,14,15,[[738,1,1,14,15]]]],[5833,13985,14324,14326,15343,15655,16637,16715,16721,16781,16807,16855,16923,16937,18831]]],["pleasure",[5,5,[[14,1,1,0,1,[[412,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[16,1,1,2,3,[[426,1,1,2,3]]],[18,2,2,3,5,[[528,1,1,3,4],[580,1,1,4,5]]]],[12263,12548,12710,14709,15570]]],["selfwill",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1479]]],["will",[12,12,[[2,4,4,0,4,[[90,1,1,0,1],[108,1,1,1,2],[111,2,2,2,4]]],[4,1,1,4,5,[[185,1,1,4,5]]],[18,2,2,5,7,[[517,1,1,5,6],[620,1,1,6,7]]],[26,4,4,7,11,[[857,1,1,7,8],[860,3,3,8,11]]],[38,1,1,11,12,[[926,1,1,11,12]]]],[2748,3286,3388,3398,5826,14533,16303,21965,22039,22052,22072,23116]]],["would",[2,2,[[15,1,1,0,1,[[421,1,1,0,1]]],[16,1,1,1,2,[[434,1,1,1,2]]]],[12535,12839]]]]},{"k":"H7523","v":[["*",[47,40,[[1,1,1,0,1,[[69,1,1,0,1]]],[3,20,14,1,15,[[151,20,14,1,15]]],[4,7,6,15,21,[[156,2,1,15,16],[157,1,1,16,17],[171,3,3,17,20],[174,1,1,20,21]]],[5,8,8,21,29,[[206,3,3,21,24],[207,5,5,24,29]]],[6,1,1,29,30,[[230,1,1,29,30]]],[10,1,1,30,31,[[311,1,1,30,31]]],[11,1,1,31,32,[[318,1,1,31,32]]],[17,1,1,32,33,[[459,1,1,32,33]]],[18,2,2,33,35,[[539,1,1,33,34],[571,1,1,34,35]]],[19,1,1,35,36,[[649,1,1,35,36]]],[22,1,1,36,37,[[679,1,1,36,37]]],[23,1,1,37,38,[[751,1,1,37,38]]],[27,2,2,38,40,[[865,1,1,38,39],[867,1,1,39,40]]]],[2064,4851,4856,4857,4861,4862,4863,4864,4866,4870,4871,4872,4873,4875,4876,5046,5070,5409,5410,5412,5496,6375,6377,6378,6394,6402,6408,6413,6419,7058,9470,9706,13450,14830,15437,17028,17675,19128,22135,22176]]],["+",[3,3,[[3,1,1,0,1,[[151,1,1,0,1]]],[4,2,2,1,3,[[156,1,1,1,2],[174,1,1,2,3]]]],[4872,5046,5496]]],["death",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4875]]],["kill",[2,2,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,1,1,1,2,[[157,1,1,1,2]]]],[2064,5070]]],["killed",[1,1,[[10,1,1,0,1,[[311,1,1,0,1]]]],[9470]]],["killing",[1,1,[[27,1,1,0,1,[[865,1,1,0,1]]]],[22135]]],["manslayer",[2,2,[[3,2,2,0,2,[[151,2,2,0,2]]]],[4851,4857]]],["murder",[3,3,[[18,1,1,0,1,[[571,1,1,0,1]]],[23,1,1,1,2,[[751,1,1,1,2]]],[27,1,1,2,3,[[867,1,1,2,3]]]],[15437,19128,22176]]],["murderer",[13,9,[[3,11,7,0,7,[[151,11,7,0,7]]],[11,1,1,7,8,[[318,1,1,7,8]]],[17,1,1,8,9,[[459,1,1,8,9]]]],[4861,4862,4863,4864,4866,4875,4876,9706,13450]]],["murderers",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17675]]],["slain",[3,3,[[6,1,1,0,1,[[230,1,1,0,1]]],[18,1,1,1,2,[[539,1,1,1,2]]],[19,1,1,2,3,[[649,1,1,2,3]]]],[7058,14830,17028]]],["slayer",[17,17,[[3,5,5,0,5,[[151,5,5,0,5]]],[4,4,4,5,9,[[156,1,1,5,6],[171,3,3,6,9]]],[5,8,8,9,17,[[206,3,3,9,12],[207,5,5,12,17]]]],[4856,4870,4871,4872,4873,5046,5409,5410,5412,6375,6377,6378,6394,6402,6408,6413,6419]]]]},{"k":"H7524","v":[["*",[2,2,[[18,1,1,0,1,[[519,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[14565,20966]]],["slaughter",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20966]]],["sword",[1,1,[[18,1,1,0,1,[[519,1,1,0,1]]]],[14565]]]]},{"k":"H7525","v":[["Rezia",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10574]]]]},{"k":"H7526","v":[["Rezin",[11,11,[[11,4,4,0,4,[[327,1,1,0,1],[328,3,3,1,4]]],[14,1,1,4,5,[[404,1,1,4,5]]],[15,1,1,5,6,[[419,1,1,5,6]]],[22,5,5,6,11,[[685,3,3,6,9],[686,1,1,9,10],[687,1,1,10,11]]]],[9962,9968,9969,9972,12075,12470,17783,17786,17790,17813,17840]]]]},{"k":"H7527","v":[["+",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2083]]]]},{"k":"H7528","v":[["paved",[1,1,[[21,1,1,0,1,[[673,1,1,0,1]]]],[17581]]]]},{"k":"H7529","v":[["coals",[1,1,[[10,1,1,0,1,[[309,1,1,0,1]]]],[9393]]]]},{"k":"H7530","v":[["Rezeph",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10073,18364]]]]},{"k":"H7531","v":[["*",[8,6,[[13,1,1,0,1,[[373,1,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]],[22,1,1,2,3,[[684,1,1,2,3]]],[25,5,3,3,6,[[841,4,2,3,5],[843,1,1,5,6]]]],[11327,12708,17775,21494,21495,21555]]],["coal",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17775]]],["pavement",[7,5,[[13,1,1,0,1,[[373,1,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]],[25,5,3,2,5,[[841,4,2,2,4],[843,1,1,4,5]]]],[11327,12708,21494,21495,21555]]]]},{"k":"H7532","v":[["Rizpah",[4,4,[[9,4,4,0,4,[[269,1,1,0,1],[287,3,3,1,4]]]],[8088,8588,8590,8591]]]]},{"k":"H7533","v":[["*",[19,18,[[0,1,1,0,1,[[24,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[6,2,2,2,4,[[219,1,1,2,3],[220,1,1,3,4]]],[8,2,2,4,6,[[247,2,2,4,6]]],[11,1,1,6,7,[[330,1,1,6,7]]],[13,1,1,7,8,[[382,1,1,7,8]]],[17,1,1,8,9,[[455,1,1,8,9]]],[18,1,1,9,10,[[551,1,1,9,10]]],[20,2,1,10,11,[[670,2,1,10,11]]],[22,4,4,11,15,[[714,1,1,11,12],[720,2,2,12,14],[736,1,1,14,15]]],[25,1,1,15,16,[[830,1,1,15,16]]],[27,1,1,16,17,[[866,1,1,16,17]]],[29,1,1,17,18,[[882,1,1,17,18]]]],[680,5644,6807,6819,7463,7464,10045,11519,13345,15062,17529,18336,18483,18484,18792,21190,22163,22411]]],["+",[2,2,[[6,2,2,0,2,[[219,1,1,0,1],[220,1,1,1,2]]]],[6807,6819]]],["brakest",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15062]]],["break",[1,1,[[25,1,1,0,1,[[830,1,1,0,1]]]],[21190]]],["broken",[4,3,[[20,2,1,0,1,[[670,2,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]],[27,1,1,2,3,[[866,1,1,2,3]]]],[17529,18336,22163]]],["bruised",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[720,1,1,1,2]]]],[10045,18483]]],["crush",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22411]]],["crushed",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5644]]],["discouraged",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18484]]],["oppressed",[5,5,[[8,2,2,0,2,[[247,2,2,0,2]]],[13,1,1,2,3,[[382,1,1,2,3]]],[17,1,1,3,4,[[455,1,1,3,4]]],[22,1,1,4,5,[[736,1,1,4,5]]]],[7463,7464,11519,13345,18792]]],["together",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[680]]]]},{"k":"H7534","v":[["*",[3,3,[[0,3,3,0,3,[[40,3,3,0,3]]]],[1214,1215,1222]]],["+",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1214]]],["lean",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1215]]],["thin",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1222]]]]},{"k":"H7535","v":[["*",[108,106,[[0,10,10,0,10,[[5,1,1,0,1],[13,1,1,1,2],[18,1,1,2,3],[19,1,1,3,4],[23,1,1,4,5],[25,1,1,5,6],[40,1,1,6,7],[46,2,2,7,9],[49,1,1,9,10]]],[1,8,8,10,18,[[57,4,4,10,14],[58,1,1,14,15],[59,2,2,15,17],[70,1,1,17,18]]],[3,2,2,18,20,[[128,1,1,18,19],[136,1,1,19,20]]],[4,20,20,20,40,[[154,3,3,20,23],[155,2,2,23,25],[156,2,2,25,27],[162,1,1,27,28],[164,4,4,28,32],[167,2,2,32,34],[169,1,1,34,35],[172,3,3,35,38],[180,2,2,38,40]]],[5,15,15,40,55,[[187,3,3,40,43],[192,4,4,43,47],[194,2,2,47,49],[197,3,3,49,52],[199,2,2,52,54],[208,1,1,54,55]]],[6,6,4,55,59,[[213,2,1,55,56],[216,1,1,56,57],[224,1,1,57,58],[229,2,1,58,59]]],[8,2,2,59,61,[[236,1,1,59,60],[240,1,1,60,61]]],[10,12,12,61,73,[[293,2,2,61,63],[298,3,3,63,66],[301,1,1,66,67],[304,1,1,67,68],[305,3,3,68,71],[311,1,1,71,72],[312,1,1,72,73]]],[11,11,11,73,84,[[315,2,2,73,75],[322,1,1,75,76],[324,1,1,76,77],[326,2,2,77,79],[327,2,2,79,81],[329,2,2,81,83],[333,1,1,83,84]]],[13,11,11,84,95,[[371,1,1,84,85],[372,2,2,85,87],[381,1,1,87,88],[384,1,1,88,89],[391,1,1,89,90],[393,1,1,90,91],[394,1,1,91,92],[395,1,1,92,93],[399,2,2,93,95]]],[17,5,5,95,100,[[436,5,5,95,100]]],[18,2,2,100,102,[[509,1,1,100,101],[568,1,1,101,102]]],[19,1,1,102,103,[[640,1,1,102,103]]],[22,2,2,103,105,[[682,1,1,103,104],[706,1,1,104,105]]],[29,1,1,105,106,[[881,1,1,105,106]]]],[142,360,465,506,599,721,1235,1442,1446,1514,1719,1721,1738,1739,1768,1794,1801,2096,4061,4330,4966,4973,4975,4986,4994,5010,5013,5201,5255,5256,5263,5266,5324,5342,5380,5441,5443,5447,5624,5644,5858,5868,5869,5964,5966,5967,5973,6004,6029,6120,6121,6129,6160,6168,6431,6570,6693,6925,7044,7225,7323,8818,8819,8994,9004,9010,9121,9226,9254,9263,9272,9476,9496,9578,9579,9822,9853,9899,9900,9929,9960,9985,10001,10127,11278,11291,11298,11507,11557,11706,11757,11774,11825,11916,11925,12881,12884,12885,12886,12888,14361,15403,16757,17734,18183,22397]]],["+",[2,2,[[5,1,1,0,1,[[197,1,1,0,1]]],[13,1,1,1,2,[[399,1,1,1,2]]]],[6121,11916]]],["But",[9,9,[[4,4,4,0,4,[[155,1,1,0,1],[169,1,1,1,2],[172,2,2,2,4]]],[5,2,2,4,6,[[197,1,1,4,5],[208,1,1,5,6]]],[10,1,1,6,7,[[311,1,1,6,7]]],[11,1,1,7,8,[[324,1,1,7,8]]],[13,1,1,8,9,[[395,1,1,8,9]]]],[4994,5380,5441,5443,6120,6431,9476,9853,11825]]],["Howbeit",[4,4,[[10,1,1,0,1,[[301,1,1,0,1]]],[11,3,3,1,4,[[322,1,1,1,2],[326,1,1,2,3],[327,1,1,3,4]]]],[9121,9822,9900,9960]]],["Nevertheless",[3,3,[[10,2,2,0,2,[[298,1,1,0,1],[305,1,1,1,2]]],[11,1,1,2,3,[[315,1,1,2,3]]]],[9004,9272,9579]]],["Notwithstanding",[2,2,[[4,1,1,0,1,[[164,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]]],[5255,11291]]],["Only",[19,19,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,1,1,1,2,[[58,1,1,1,2]]],[4,10,10,2,12,[[154,2,2,2,4],[156,1,1,4,5],[162,1,1,5,6],[164,3,3,6,9],[167,2,2,9,11],[172,1,1,11,12]]],[5,3,3,12,15,[[187,1,1,12,13],[194,1,1,13,14],[199,1,1,14,15]]],[6,1,1,15,16,[[213,1,1,15,16]]],[10,1,1,16,17,[[293,1,1,16,17]]],[18,1,1,17,18,[[568,1,1,17,18]]],[19,1,1,18,19,[[640,1,1,18,19]]]],[1442,1768,4973,4975,5013,5201,5256,5263,5266,5324,5342,5447,5858,6029,6168,6570,8818,15403,16757]]],["Save",[1,1,[[11,1,1,0,1,[[327,1,1,0,1]]]],[9929]]],["Surely",[2,2,[[0,1,1,0,1,[[19,1,1,0,1]]],[4,1,1,1,2,[[156,1,1,1,2]]]],[506,5010]]],["but",[10,10,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,1,1,1,2,[[57,1,1,1,2]]],[6,2,2,2,4,[[216,1,1,2,3],[224,1,1,3,4]]],[10,1,1,4,5,[[312,1,1,4,5]]],[11,3,3,5,8,[[315,1,1,5,6],[329,2,2,6,8]]],[13,2,2,8,10,[[384,1,1,8,9],[391,1,1,9,10]]]],[721,1739,6693,6925,9496,9578,9985,10001,11557,11706]]],["even",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11774]]],["except",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1446]]],["howbeit",[1,1,[[13,1,1,0,1,[[393,1,1,0,1]]]],[11757]]],["howsoever",[1,1,[[6,1,1,0,1,[[229,1,1,0,1]]]],[7044]]],["least",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6570]]],["nevertheless",[2,2,[[10,1,1,0,1,[[305,1,1,0,1]]],[13,1,1,1,2,[[381,1,1,1,2]]]],[9263,11507]]],["only",[42,42,[[0,6,6,0,6,[[5,1,1,0,1],[13,1,1,1,2],[18,1,1,2,3],[23,1,1,3,4],[40,1,1,4,5],[49,1,1,5,6]]],[1,6,6,6,12,[[57,3,3,6,9],[59,2,2,9,11],[70,1,1,11,12]]],[3,2,2,12,14,[[128,1,1,12,13],[136,1,1,13,14]]],[4,4,4,14,18,[[154,1,1,14,15],[155,1,1,15,16],[180,2,2,16,18]]],[5,8,8,18,26,[[187,2,2,18,20],[192,3,3,20,23],[194,1,1,23,24],[197,1,1,24,25],[199,1,1,25,26]]],[6,1,1,26,27,[[229,1,1,26,27]]],[8,2,2,27,29,[[236,1,1,27,28],[240,1,1,28,29]]],[10,3,3,29,32,[[293,1,1,29,30],[304,1,1,30,31],[305,1,1,31,32]]],[11,1,1,32,33,[[333,1,1,32,33]]],[13,1,1,33,34,[[399,1,1,33,34]]],[17,5,5,34,39,[[436,5,5,34,39]]],[22,2,2,39,41,[[682,1,1,39,40],[706,1,1,40,41]]],[29,1,1,41,42,[[881,1,1,41,42]]]],[142,360,465,599,1235,1514,1719,1721,1738,1794,1801,2096,4061,4330,4966,4986,5624,5644,5868,5869,5964,5966,5973,6004,6129,6160,7044,7225,7323,8819,9226,9254,10127,11925,12881,12884,12885,12886,12888,17734,18183,22397]]],["save",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[371,1,1,1,2]]]],[8994,11278]]],["so",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]]],[9010,11298]]],["surely",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14361]]],["wise",[1,1,[[5,1,1,0,1,[[192,1,1,0,1]]]],[5967]]],["yet",[1,1,[[11,1,1,0,1,[[326,1,1,0,1]]]],[9899]]]]},{"k":"H7536","v":[["*",[3,3,[[17,2,2,0,2,[[442,1,1,0,1],[465,1,1,1,2]]],[22,1,1,2,3,[[728,1,1,2,3]]]],[13027,13567,18668]]],["spit",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13567]]],["spitting",[1,1,[[22,1,1,0,1,[[728,1,1,0,1]]]],[18668]]],["spittle",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13027]]]]},{"k":"H7537","v":[["rot",[2,2,[[19,1,1,0,1,[[637,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[16663,18440]]]]},{"k":"H7538","v":[["*",[5,5,[[17,1,1,0,1,[[448,1,1,0,1]]],[19,2,2,1,3,[[639,1,1,1,2],[641,1,1,2,3]]],[27,1,1,3,4,[[866,1,1,3,4]]],[34,1,1,4,5,[[905,1,1,4,5]]]],[13181,16723,16802,22164,22784]]],["rottenness",[4,4,[[19,2,2,0,2,[[639,1,1,0,1],[641,1,1,1,2]]],[27,1,1,2,3,[[866,1,1,2,3]]],[34,1,1,3,4,[[905,1,1,3,4]]]],[16723,16802,22164,22784]]],["thing",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13181]]]]},{"k":"H7539","v":[["rotten",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13915]]]]},{"k":"H7540","v":[["*",[9,9,[[12,1,1,0,1,[[352,1,1,0,1]]],[17,1,1,1,2,[[456,1,1,1,2]]],[18,3,3,2,5,[[506,1,1,2,3],[591,2,2,3,5]]],[20,1,1,5,6,[[661,1,1,5,6]]],[22,1,1,6,7,[[691,1,1,6,7]]],[28,1,1,7,8,[[877,1,1,7,8]]],[33,1,1,8,9,[[902,1,1,8,9]]]],[10820,13366,14314,15826,15828,17363,17927,22316,22714]]],["dance",[3,3,[[17,1,1,0,1,[[456,1,1,0,1]]],[20,1,1,1,2,[[661,1,1,1,2]]],[22,1,1,2,3,[[691,1,1,2,3]]]],[13366,17363,17927]]],["dancing",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10820]]],["jumping",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22714]]],["leap",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22316]]],["skip",[1,1,[[18,1,1,0,1,[[506,1,1,0,1]]]],[14314]]],["skipped",[2,2,[[18,2,2,0,2,[[591,2,2,0,2]]]],[15826,15828]]]]},{"k":"H7541","v":[["temples",[5,5,[[6,3,3,0,3,[[214,2,2,0,2],[215,1,1,2,3]]],[21,2,2,3,5,[[674,1,1,3,4],[676,1,1,4,5]]]],[6620,6621,6649,17585,17621]]]]},{"k":"H7542","v":[["Rakkon",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6367]]]]},{"k":"H7543","v":[["*",[8,8,[[1,4,4,0,4,[[79,3,3,0,3],[86,1,1,3,4]]],[12,1,1,4,5,[[346,1,1,4,5]]],[13,1,1,5,6,[[382,1,1,5,6]]],[20,1,1,6,7,[[668,1,1,6,7]]],[25,1,1,7,8,[[825,1,1,7,8]]]],[2407,2415,2417,2633,10645,11523,17494,21066]]],["+",[2,2,[[13,1,1,0,1,[[382,1,1,0,1]]],[25,1,1,1,2,[[825,1,1,1,2]]]],[11523,21066]]],["apothecary",[4,4,[[1,3,3,0,3,[[79,2,2,0,2],[86,1,1,2,3]]],[20,1,1,3,4,[[668,1,1,3,4]]]],[2407,2417,2633,17494]]],["compoundeth",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2415]]],["made",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10645]]]]},{"k":"H7544","v":[["spiced",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17642]]]]},{"k":"H7545","v":[["*",[2,2,[[1,2,2,0,2,[[79,2,2,0,2]]]],[2407,2417]]],["confection",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2417]]],["ointment",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2407]]]]},{"k":"H7546","v":[["apothecaries",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12335]]]]},{"k":"H7547","v":[["perfumes",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18774]]]]},{"k":"H7548","v":[["confectionaries",[1,1,[[8,1,1,0,1,[[243,1,1,0,1]]]],[7382]]]]},{"k":"H7549","v":[["firmament",[17,15,[[0,9,7,0,7,[[0,9,7,0,7]]],[18,2,2,7,9,[[496,1,1,7,8],[627,1,1,8,9]]],[25,5,5,9,14,[[802,4,4,9,13],[811,1,1,13,14]]],[26,1,1,14,15,[[861,1,1,14,15]]]],[5,6,7,13,14,16,19,14169,16395,20486,20487,20489,20490,20634,22084]]]]},{"k":"H7550","v":[["*",[8,8,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,3,3,2,5,[[91,1,1,2,3],[96,1,1,3,4],[97,1,1,4,5]]],[3,2,2,5,7,[[122,2,2,5,7]]],[12,1,1,7,8,[[360,1,1,7,8]]]],[2338,2359,2766,2891,2943,3838,3842,11012]]],["cakes",[1,1,[[12,1,1,0,1,[[360,1,1,0,1]]]],[11012]]],["wafer",[3,3,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]],[3,1,1,2,3,[[122,1,1,2,3]]]],[2359,2943,3842]]],["wafers",[4,4,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,2,2,1,3,[[91,1,1,1,2],[96,1,1,2,3]]],[3,1,1,3,4,[[122,1,1,3,4]]]],[2338,2766,2891,3838]]]]},{"k":"H7551","v":[["*",[9,9,[[1,8,8,0,8,[[75,1,1,0,1],[76,1,1,1,2],[77,1,1,2,3],[84,1,1,3,4],[85,1,1,4,5],[87,2,2,5,7],[88,1,1,7,8]]],[18,1,1,8,9,[[616,1,1,8,9]]]],[2271,2288,2332,2566,2603,2651,2656,2693,16254]]],["+",[6,6,[[1,6,6,0,6,[[75,1,1,0,1],[76,1,1,1,2],[77,1,1,2,3],[85,1,1,3,4],[87,1,1,4,5],[88,1,1,5,6]]]],[2271,2288,2332,2603,2651,2693]]],["embroiderer",[2,2,[[1,2,2,0,2,[[84,1,1,0,1],[87,1,1,1,2]]]],[2566,2656]]],["wrought",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16254]]]]},{"k":"H7552","v":[["*",[6,6,[[3,1,1,0,1,[[147,1,1,0,1]]],[5,2,2,1,3,[[199,1,1,1,2],[204,1,1,2,3]]],[12,3,3,3,6,[[339,2,2,3,5],[344,1,1,5,6]]]],[4672,6175,6320,10349,10350,10551]]],["Rakem",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10551]]],["Rekem",[5,5,[[3,1,1,0,1,[[147,1,1,0,1]]],[5,2,2,1,3,[[199,1,1,1,2],[204,1,1,2,3]]],[12,2,2,3,5,[[339,2,2,3,5]]]],[4672,6175,6320,10349,10350]]]]},{"k":"H7553","v":[["*",[12,11,[[6,2,1,0,1,[[215,2,1,0,1]]],[12,1,1,1,2,[[366,1,1,1,2]]],[18,1,1,2,3,[[522,1,1,2,3]]],[25,8,8,3,11,[[817,3,3,3,6],[818,1,1,6,7],[827,1,1,7,8],[828,3,3,8,11]]]],[6653,11166,14611,20772,20775,20780,20828,21116,21128,21137,21145]]],["+",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20780]]],["broidered",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21116]]],["colours",[2,2,[[12,1,1,0,1,[[366,1,1,0,1]]],[25,1,1,1,2,[[818,1,1,1,2]]]],[11166,20828]]],["needlework",[3,2,[[6,2,1,0,1,[[215,2,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]]],[6653,14611]]],["work",[5,5,[[25,5,5,0,5,[[817,2,2,0,2],[828,3,3,2,5]]]],[20772,20775,21128,21137,21145]]]]},{"k":"H7554","v":[["*",[11,11,[[1,1,1,0,1,[[88,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[17,1,1,3,4,[[472,1,1,3,4]]],[18,1,1,4,5,[[613,1,1,4,5]]],[22,3,3,5,8,[[718,1,1,5,6],[720,1,1,6,7],[722,1,1,7,8]]],[23,1,1,8,9,[[754,1,1,8,9]]],[25,2,2,9,11,[[807,1,1,9,10],[826,1,1,10,11]]]],[2667,4233,8645,13787,16202,18439,18485,18557,19210,20574,21089]]],["+",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2667]]],["abroad",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[8645,18557]]],["broad",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4233]]],["forth",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18485]]],["out",[2,2,[[17,1,1,0,1,[[472,1,1,0,1]]],[18,1,1,1,2,[[613,1,1,1,2]]]],[13787,16202]]],["over",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18439]]],["plates",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19210]]],["stamp",[1,1,[[25,1,1,0,1,[[807,1,1,0,1]]]],[20574]]],["stamped",[1,1,[[25,1,1,0,1,[[826,1,1,0,1]]]],[21089]]]]},{"k":"H7555","v":[["broad",[1,1,[[3,1,1,0,1,[[132,1,1,0,1]]]],[4232]]]]},{"k":"H7556","v":[["spit",[1,1,[[2,1,1,0,1,[[104,1,1,0,1]]]],[3176]]]]},{"k":"H7557","v":[["Rakkath",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6356]]]]},{"k":"H7558","v":[["grant",[1,1,[[14,1,1,0,1,[[405,1,1,0,1]]]],[12104]]]]},{"k":"H7559","v":[["noted",[1,1,[[26,1,1,0,1,[[859,1,1,0,1]]]],[22036]]]]},{"k":"H7560","v":[["*",[7,7,[[26,7,7,0,7,[[854,2,2,0,2],[855,5,5,2,7]]]],[21898,21899,21913,21914,21915,21917,21918]]],["sign",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21913]]],["signed",[4,4,[[26,4,4,0,4,[[855,4,4,0,4]]]],[21914,21915,21917,21918]]],["written",[2,2,[[26,2,2,0,2,[[854,2,2,0,2]]]],[21898,21899]]]]},{"k":"H7561","v":[["*",[34,34,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,1,1,1,2,[[177,1,1,1,2]]],[8,1,1,2,3,[[249,1,1,2,3]]],[9,1,1,3,4,[[288,1,1,3,4]]],[10,2,2,4,6,[[298,2,2,4,6]]],[13,3,3,6,9,[[372,1,1,6,7],[386,1,1,7,8],[388,1,1,8,9]]],[15,1,1,9,10,[[421,1,1,9,10]]],[17,11,11,10,21,[[444,2,2,10,12],[445,3,3,12,15],[450,1,1,15,16],[467,1,1,16,17],[469,3,3,17,20],[475,1,1,20,21]]],[18,4,4,21,25,[[495,1,1,21,22],[514,1,1,22,23],[571,1,1,23,24],[583,1,1,24,25]]],[19,2,2,25,27,[[639,1,1,25,26],[644,1,1,26,27]]],[20,1,1,27,28,[[665,1,1,27,28]]],[22,2,2,28,30,[[728,1,1,28,29],[732,1,1,29,30]]],[26,4,4,30,34,[[858,2,2,30,32],[860,1,1,32,33],[861,1,1,33,34]]]],[2122,5548,7555,8624,9017,9032,11319,11622,11647,12544,13071,13080,13088,13093,13101,13209,13631,13695,13700,13712,13872,14139,14483,15452,15657,16721,16888,17446,18671,18740,21993,22003,22068,22091]]],["+",[3,3,[[4,1,1,0,1,[[177,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]],[17,1,1,2,3,[[467,1,1,2,3]]]],[5548,11622,13631]]],["against",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22068]]],["condemn",[10,10,[[1,1,1,0,1,[[71,1,1,0,1]]],[17,4,4,1,5,[[444,1,1,1,2],[445,1,1,2,3],[469,1,1,3,4],[475,1,1,4,5]]],[18,2,2,5,7,[[514,1,1,5,6],[571,1,1,6,7]]],[19,1,1,7,8,[[639,1,1,7,8]]],[22,2,2,8,10,[[728,1,1,8,9],[732,1,1,9,10]]]],[2122,13071,13088,13700,13872,14483,15452,16721,18671,18740]]],["condemneth",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]]],[13209,16888]]],["condemning",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9017]]],["departed",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14139]]],["trouble",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13712]]],["vexed",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7555]]],["wicked",[4,4,[[17,3,3,0,3,[[444,1,1,0,1],[445,2,2,1,3]]],[20,1,1,3,4,[[665,1,1,3,4]]]],[13080,13093,13101,17446]]],["wickedly",[9,9,[[9,1,1,0,1,[[288,1,1,0,1]]],[13,2,2,1,3,[[372,1,1,1,2],[388,1,1,2,3]]],[15,1,1,3,4,[[421,1,1,3,4]]],[17,1,1,4,5,[[469,1,1,4,5]]],[18,1,1,5,6,[[583,1,1,5,6]]],[26,3,3,6,9,[[858,2,2,6,8],[861,1,1,8,9]]]],[8624,11319,11647,12544,13695,15657,21993,22003,22091]]],["wickedness",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9032]]]]},{"k":"H7562","v":[["*",[30,29,[[4,1,1,0,1,[[161,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]],[17,3,3,2,5,[[469,2,2,2,4],[470,1,1,4,5]]],[18,6,6,5,11,[[482,1,1,5,6],[487,1,1,6,7],[522,1,1,7,8],[561,1,1,8,9],[602,1,1,9,10],[618,1,1,10,11]]],[19,5,5,11,16,[[631,1,1,11,12],[635,1,1,12,13],[637,1,1,13,14],[639,1,1,14,15],[643,1,1,15,16]]],[20,4,3,16,19,[[661,2,1,16,17],[665,1,1,17,18],[666,1,1,18,19]]],[22,2,2,19,21,[[736,2,2,19,21]]],[23,1,1,21,22,[[758,1,1,21,22]]],[25,4,4,22,26,[[804,1,1,22,23],[808,1,1,23,24],[832,1,1,24,25],[834,1,1,25,26]]],[27,1,1,26,27,[[871,1,1,26,27]]],[32,2,2,27,29,[[898,2,2,27,29]]]],[5184,7852,13691,13693,13728,13977,14056,14604,15269,16113,16280,16507,16609,16658,16722,16852,17375,17454,17466,18790,18792,19313,20521,20588,21241,21292,22238,22658,22659]]],["+",[3,3,[[17,1,1,0,1,[[469,1,1,0,1]]],[25,2,2,1,3,[[804,1,1,1,2],[834,1,1,2,3]]]],[13693,20521,21292]]],["Wickedness",[1,1,[[8,1,1,0,1,[[259,1,1,0,1]]]],[7852]]],["iniquity",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17375]]],["wicked",[4,4,[[17,1,1,0,1,[[469,1,1,0,1]]],[18,2,2,1,3,[[602,1,1,1,2],[618,1,1,2,3]]],[32,1,1,3,4,[[898,1,1,3,4]]]],[13691,16113,16280,22659]]],["wickedness",[21,21,[[4,1,1,0,1,[[161,1,1,0,1]]],[17,1,1,1,2,[[470,1,1,1,2]]],[18,4,4,2,6,[[482,1,1,2,3],[487,1,1,3,4],[522,1,1,4,5],[561,1,1,5,6]]],[19,5,5,6,11,[[631,1,1,6,7],[635,1,1,7,8],[637,1,1,8,9],[639,1,1,9,10],[643,1,1,10,11]]],[20,3,3,11,14,[[661,1,1,11,12],[665,1,1,12,13],[666,1,1,13,14]]],[22,2,2,14,16,[[736,2,2,14,16]]],[23,1,1,16,17,[[758,1,1,16,17]]],[25,2,2,17,19,[[808,1,1,17,18],[832,1,1,18,19]]],[27,1,1,19,20,[[871,1,1,19,20]]],[32,1,1,20,21,[[898,1,1,20,21]]]],[5184,13728,13977,14056,14604,15269,16507,16609,16658,16722,16852,17375,17454,17466,18790,18792,19313,20588,21241,22238,22658]]]]},{"k":"H7563","v":[["*",[263,249,[[0,3,2,0,2,[[17,3,2,0,2]]],[1,4,4,2,6,[[51,1,1,2,3],[58,1,1,3,4],[72,2,2,4,6]]],[3,2,2,6,8,[[132,1,1,6,7],[151,1,1,7,8]]],[4,2,2,8,10,[[177,2,2,8,10]]],[8,2,2,10,12,[[237,1,1,10,11],[259,1,1,11,12]]],[9,1,1,12,13,[[270,1,1,12,13]]],[10,1,1,13,14,[[298,1,1,13,14]]],[13,2,2,14,16,[[372,1,1,14,15],[385,1,1,15,16]]],[17,26,26,16,42,[[438,1,1,16,17],[443,1,1,17,18],[444,2,2,18,20],[445,1,1,20,21],[446,1,1,21,22],[450,1,1,22,23],[451,1,1,23,24],[453,1,1,24,25],[455,2,2,25,27],[456,4,4,27,31],[457,1,1,31,32],[459,1,1,32,33],[462,2,2,33,35],[469,2,2,35,37],[471,2,2,37,39],[473,2,2,39,41],[475,1,1,41,42]]],[18,82,80,42,122,[[478,4,4,42,46],[480,1,1,46,47],[484,1,1,47,48],[486,3,3,48,51],[487,5,5,51,56],[488,3,3,56,59],[489,1,1,59,60],[494,2,2,60,62],[503,1,1,62,63],[505,1,1,63,64],[508,1,1,64,65],[509,1,1,65,66],[511,1,1,66,67],[513,2,2,67,69],[514,13,13,69,82],[516,1,1,82,83],[527,1,1,83,84],[532,1,1,84,85],[535,2,2,85,87],[545,1,1,87,88],[548,1,1,88,89],[550,2,2,89,91],[552,3,3,91,94],[559,2,2,94,96],[568,1,1,96,97],[569,1,1,97,98],[571,3,2,98,100],[574,1,1,100,101],[578,1,1,101,102],[581,1,1,102,103],[583,1,1,103,104],[586,3,3,104,107],[589,2,1,107,108],[596,6,6,108,114],[606,1,1,114,115],[616,1,1,115,116],[617,2,2,116,118],[618,1,1,118,119],[622,1,1,119,120],[623,1,1,120,121],[624,1,1,121,122]]],[19,78,77,122,199,[[629,1,1,122,123],[630,2,2,123,125],[631,2,2,125,127],[632,1,1,127,128],[636,1,1,128,129],[637,12,12,129,141],[638,8,8,141,149],[639,7,7,149,156],[640,4,4,156,160],[641,3,3,160,163],[642,5,5,163,168],[643,1,1,168,169],[644,2,2,169,171],[645,2,2,171,173],[646,1,1,173,174],[647,1,1,174,175],[648,8,7,175,182],[651,5,5,182,187],[652,2,2,187,189],[655,5,5,189,194],[656,5,5,194,199]]],[20,7,6,199,205,[[661,1,1,199,200],[665,1,1,200,201],[666,4,3,201,204],[667,1,1,204,205]]],[22,11,11,205,216,[[681,1,1,205,206],[683,1,1,206,207],[689,1,1,207,208],[691,1,1,208,209],[692,1,1,209,210],[704,1,1,210,211],[726,1,1,211,212],[731,1,1,212,213],[733,1,1,213,214],[735,2,2,214,216]]],[23,5,5,216,221,[[749,1,1,216,217],[756,1,1,217,218],[767,1,1,218,219],[769,1,1,219,220],[774,1,1,220,221]]],[25,28,20,221,241,[[804,6,2,221,223],[808,1,1,223,224],[814,1,1,224,225],[819,5,5,225,230],[822,4,4,230,234],[834,11,7,234,241]]],[26,2,1,241,242,[[861,2,1,241,242]]],[32,1,1,242,243,[[898,1,1,242,243]]],[34,3,3,243,246,[[903,2,2,243,245],[905,1,1,245,246]]],[35,1,1,246,247,[[906,1,1,246,247]]],[38,2,2,247,249,[[927,1,1,247,248],[928,1,1,248,249]]]],[447,449,1567,1769,2145,2151,4220,4876,5548,5549,7249,7852,8131,9017,11305,11578,12921,13051,13073,13075,13089,13128,13223,13249,13281,13331,13355,13362,13371,13372,13383,13407,13442,13488,13494,13701,13709,13742,13753,13806,13808,13876,13940,13943,13944,13945,13964,14004,14026,14037,14038,14043,14044,14045,14054,14056,14061,14064,14065,14074,14112,14116,14278,14302,14348,14365,14409,14439,14449,14460,14462,14464,14466,14467,14470,14471,14478,14482,14484,14485,14488,14490,14513,14684,14735,14782,14789,14902,14980,15023,15032,15075,15079,15081,15235,15237,15403,15418,15434,15444,15488,15521,15606,15669,15757,15761,15762,15813,15951,15959,15993,16008,16017,16053,16136,16258,16267,16271,16286,16340,16350,16357,16455,16480,16488,16504,16509,16539,16645,16659,16662,16663,16667,16672,16676,16680,16681,16683,16684,16686,16688,16693,16695,16696,16698,16699,16706,16711,16719,16724,16725,16726,16729,16731,16740,16745,16752,16756,16764,16772,16783,16791,16804,16813,16815,16816,16835,16836,16844,16888,16896,16904,16906,16953,16980,16988,16991,16994,16996,17002,17011,17013,17094,17095,17098,17099,17103,17118,17139,17197,17200,17208,17211,17224,17226,17231,17236,17240,17251,17376,17444,17468,17471,17472,17477,17718,17762,17888,17917,17933,18140,18636,18720,18747,18785,18786,19084,19250,19503,19565,19690,20520,20521,20598,20730,20869,20870,20872,20873,20876,20947,20948,20969,20973,21288,21289,21291,21292,21294,21295,21299,22091,22658,22735,22744,22781,22790,23138,23141]]],["+",[9,9,[[8,1,1,0,1,[[259,1,1,0,1]]],[17,1,1,1,2,[[473,1,1,1,2]]],[18,6,6,2,8,[[494,1,1,2,3],[514,1,1,3,4],[586,1,1,4,5],[596,2,2,5,7],[624,1,1,7,8]]],[19,1,1,8,9,[[642,1,1,8,9]]]],[7852,13808,14116,14490,15762,15951,16053,16357,16836]]],["guilty",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4876]]],["man",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,1,1,1,2,[[586,1,1,1,2]]]],[13223,15761]]],["men",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13709]]],["ungodly",[8,8,[[13,1,1,0,1,[[385,1,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[18,6,6,2,8,[[478,4,4,2,6],[480,1,1,6,7],[550,1,1,7,8]]]],[11578,13701,13940,13943,13944,13945,13964,15032]]],["wicked",[241,227,[[0,3,2,0,2,[[17,3,2,0,2]]],[1,3,3,2,5,[[58,1,1,2,3],[72,2,2,3,5]]],[3,1,1,5,6,[[132,1,1,5,6]]],[4,2,2,6,8,[[177,2,2,6,8]]],[8,1,1,8,9,[[237,1,1,8,9]]],[9,1,1,9,10,[[270,1,1,9,10]]],[10,1,1,10,11,[[298,1,1,10,11]]],[13,1,1,11,12,[[372,1,1,11,12]]],[17,22,22,12,34,[[438,1,1,12,13],[443,1,1,13,14],[444,2,2,14,16],[445,1,1,16,17],[446,1,1,17,18],[451,1,1,18,19],[453,1,1,19,20],[455,2,2,20,22],[456,4,4,22,26],[457,1,1,26,27],[459,1,1,27,28],[462,2,2,28,30],[471,2,2,30,32],[473,1,1,32,33],[475,1,1,33,34]]],[18,69,67,34,101,[[484,1,1,34,35],[486,3,3,35,38],[487,5,5,38,43],[488,3,3,43,46],[489,1,1,46,47],[494,1,1,47,48],[503,1,1,48,49],[505,1,1,49,50],[508,1,1,50,51],[509,1,1,51,52],[511,1,1,52,53],[513,2,2,53,55],[514,12,12,55,67],[516,1,1,67,68],[527,1,1,68,69],[532,1,1,69,70],[535,2,2,70,72],[545,1,1,72,73],[548,1,1,73,74],[550,1,1,74,75],[552,3,3,75,78],[559,2,2,78,80],[568,1,1,80,81],[569,1,1,81,82],[571,3,2,82,84],[574,1,1,84,85],[578,1,1,85,86],[581,1,1,86,87],[583,1,1,87,88],[586,1,1,88,89],[589,2,1,89,90],[596,4,4,90,94],[606,1,1,94,95],[616,1,1,95,96],[617,2,2,96,98],[618,1,1,98,99],[622,1,1,99,100],[623,1,1,100,101]]],[19,77,76,101,177,[[629,1,1,101,102],[630,2,2,102,104],[631,2,2,104,106],[632,1,1,106,107],[636,1,1,107,108],[637,12,12,108,120],[638,8,8,120,128],[639,7,7,128,135],[640,4,4,135,139],[641,3,3,139,142],[642,4,4,142,146],[643,1,1,146,147],[644,2,2,147,149],[645,2,2,149,151],[646,1,1,151,152],[647,1,1,152,153],[648,8,7,153,160],[651,5,5,160,165],[652,2,2,165,167],[655,5,5,167,172],[656,5,5,172,177]]],[20,7,6,177,183,[[661,1,1,177,178],[665,1,1,178,179],[666,4,3,179,182],[667,1,1,182,183]]],[22,11,11,183,194,[[681,1,1,183,184],[683,1,1,184,185],[689,1,1,185,186],[691,1,1,186,187],[692,1,1,187,188],[704,1,1,188,189],[726,1,1,189,190],[731,1,1,190,191],[733,1,1,191,192],[735,2,2,192,194]]],[23,5,5,194,199,[[749,1,1,194,195],[756,1,1,195,196],[767,1,1,196,197],[769,1,1,197,198],[774,1,1,198,199]]],[25,28,20,199,219,[[804,6,2,199,201],[808,1,1,201,202],[814,1,1,202,203],[819,5,5,203,208],[822,4,4,208,212],[834,11,7,212,219]]],[26,2,1,219,220,[[861,2,1,219,220]]],[32,1,1,220,221,[[898,1,1,220,221]]],[34,3,3,221,224,[[903,2,2,221,223],[905,1,1,223,224]]],[35,1,1,224,225,[[906,1,1,224,225]]],[38,2,2,225,227,[[927,1,1,225,226],[928,1,1,226,227]]]],[447,449,1769,2145,2151,4220,5548,5549,7249,8131,9017,11305,12921,13051,13073,13075,13089,13128,13249,13281,13331,13355,13362,13371,13372,13383,13407,13442,13488,13494,13742,13753,13806,13876,14004,14026,14037,14038,14043,14044,14045,14054,14056,14061,14064,14065,14074,14112,14278,14302,14348,14365,14409,14439,14449,14460,14462,14464,14466,14467,14470,14471,14478,14482,14484,14485,14488,14513,14684,14735,14782,14789,14902,14980,15023,15075,15079,15081,15235,15237,15403,15418,15434,15444,15488,15521,15606,15669,15757,15813,15959,15993,16008,16017,16136,16258,16267,16271,16286,16340,16350,16455,16480,16488,16504,16509,16539,16645,16659,16662,16663,16667,16672,16676,16680,16681,16683,16684,16686,16688,16693,16695,16696,16698,16699,16706,16711,16719,16724,16725,16726,16729,16731,16740,16745,16752,16756,16764,16772,16783,16791,16804,16813,16815,16816,16835,16844,16888,16896,16904,16906,16953,16980,16988,16991,16994,16996,17002,17011,17013,17094,17095,17098,17099,17103,17118,17139,17197,17200,17208,17211,17224,17226,17231,17236,17240,17251,17376,17444,17468,17471,17472,17477,17718,17762,17888,17917,17933,18140,18636,18720,18747,18785,18786,19084,19250,19503,19565,19690,20520,20521,20598,20730,20869,20870,20872,20873,20876,20947,20948,20969,20973,21288,21289,21291,21292,21294,21295,21299,22091,22658,22735,22744,22781,22790,23138,23141]]],["wrong",[1,1,[[1,1,1,0,1,[[51,1,1,0,1]]]],[1567]]]]},{"k":"H7564","v":[["*",[15,15,[[4,3,3,0,3,[[161,2,2,0,2],[177,1,1,2,3]]],[19,2,2,3,5,[[638,1,1,3,4],[640,1,1,4,5]]],[22,1,1,5,6,[[687,1,1,5,6]]],[25,5,5,6,11,[[806,1,1,6,7],[819,2,2,7,9],[834,2,2,9,11]]],[37,1,1,11,12,[[915,1,1,11,12]]],[38,3,3,12,15,[[925,1,1,12,13],[927,1,1,13,14],[928,1,1,14,15]]]],[5161,5162,5549,16693,16753,17847,20552,20869,20876,21292,21299,22944,23093,23135,23139]]],["+",[2,2,[[25,2,2,0,2,[[819,1,1,0,1],[834,1,1,1,2]]]],[20876,21299]]],["fault",[1,1,[[4,1,1,0,1,[[177,1,1,0,1]]]],[5549]]],["wickedly",[1,1,[[38,1,1,0,1,[[928,1,1,0,1]]]],[23139]]],["wickedness",[11,11,[[4,2,2,0,2,[[161,2,2,0,2]]],[19,2,2,2,4,[[638,1,1,2,3],[640,1,1,3,4]]],[22,1,1,4,5,[[687,1,1,4,5]]],[25,3,3,5,8,[[806,1,1,5,6],[819,1,1,6,7],[834,1,1,7,8]]],[37,1,1,8,9,[[915,1,1,8,9]]],[38,2,2,9,11,[[925,1,1,9,10],[927,1,1,10,11]]]],[5161,5162,16693,16753,17847,20552,20869,21292,22944,23093,23135]]]]},{"k":"H7565","v":[["*",[7,6,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[440,1,1,1,2]]],[18,2,2,2,4,[[553,1,1,2,3],[555,1,1,3,4]]],[21,2,1,4,5,[[678,2,1,4,5]]],[34,1,1,5,6,[[905,1,1,5,6]]]],[5782,12958,15084,15161,17646,22773]]],["+",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12958]]],["arrows",[1,1,[[18,1,1,0,1,[[553,1,1,0,1]]]],[15084]]],["coals",[3,2,[[21,2,1,0,1,[[678,2,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[17646,22773]]],["heat",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5782]]],["thunderbolts",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15161]]]]},{"k":"H7566","v":[["Resheph",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10560]]]]},{"k":"H7567","v":[["*",[2,2,[[23,1,1,0,1,[[749,1,1,0,1]]],[38,1,1,1,2,[[925,1,1,1,2]]]],[19075,23093]]],["impoverish",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19075]]],["impoverished",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23093]]]]},{"k":"H7568","v":[["*",[22,21,[[1,4,3,0,3,[[76,3,2,0,2],[87,1,1,2,3]]],[17,1,1,3,4,[[453,1,1,3,4]]],[18,8,8,4,12,[[486,1,1,4,5],[487,1,1,5,6],[502,1,1,6,7],[508,1,1,7,8],[512,2,2,8,10],[534,1,1,10,11],[617,1,1,11,12]]],[19,2,2,12,14,[[628,1,1,12,13],[656,1,1,13,14]]],[24,1,1,14,15,[[797,1,1,14,15]]],[25,4,4,15,19,[[813,1,1,15,16],[818,1,1,16,17],[820,1,1,17,18],[833,1,1,18,19]]],[27,2,2,19,21,[[866,1,1,19,20],[868,1,1,20,21]]]],[2276,2277,2637,13284,14036,14050,14266,14335,14417,14418,14774,16268,16417,17229,20323,20693,20845,20889,21251,22153,22190]]],["+",[4,4,[[1,2,2,0,2,[[76,1,1,0,1],[87,1,1,1,2]]],[18,2,2,2,4,[[502,1,1,2,3],[508,1,1,3,4]]]],[2276,2637,14266,14335]]],["net",[18,18,[[1,2,2,0,2,[[76,2,2,0,2]]],[17,1,1,2,3,[[453,1,1,2,3]]],[18,6,6,3,9,[[486,1,1,3,4],[487,1,1,4,5],[512,2,2,5,7],[534,1,1,7,8],[617,1,1,8,9]]],[19,2,2,9,11,[[628,1,1,9,10],[656,1,1,10,11]]],[24,1,1,11,12,[[797,1,1,11,12]]],[25,4,4,12,16,[[813,1,1,12,13],[818,1,1,13,14],[820,1,1,14,15],[833,1,1,15,16]]],[27,2,2,16,18,[[866,1,1,16,17],[868,1,1,17,18]]]],[2276,2277,13284,14036,14050,14417,14418,14774,16268,16417,17229,20323,20693,20845,20889,21251,22153,22190]]]]},{"k":"H7569","v":[["*",[2,2,[[10,1,1,0,1,[[296,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]]],[8917,20600]]],["chain",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20600]]],["chains",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8917]]]]},{"k":"H7570","v":[["*",[3,3,[[17,2,2,0,2,[[465,1,1,0,1],[476,1,1,1,2]]],[25,1,1,2,3,[[825,1,1,2,3]]]],[13584,13919,21061]]],["boil",[2,2,[[17,1,1,0,1,[[476,1,1,0,1]]],[25,1,1,1,2,[[825,1,1,1,2]]]],[13919,21061]]],["boiled",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13584]]]]},{"k":"H7571","v":[["well",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21061]]]]},{"k":"H7572","v":[]},{"k":"H7573","v":[["bind",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22592]]]]},{"k":"H7574","v":[["*",[4,4,[[10,2,2,0,2,[[309,2,2,0,2]]],[17,1,1,2,3,[[465,1,1,2,3]]],[18,1,1,3,4,[[597,1,1,3,4]]]],[9391,9392,13561,16078]]],["juniper",[2,2,[[17,1,1,0,1,[[465,1,1,0,1]]],[18,1,1,1,2,[[597,1,1,1,2]]]],[13561,16078]]],["tree",[2,2,[[10,2,2,0,2,[[309,2,2,0,2]]]],[9391,9392]]]]},{"k":"H7575","v":[["*",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4778,4779]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4779]]],["Rithmah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4778]]]]},{"k":"H7576","v":[["bound",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22722]]]]},{"k":"H7577","v":[["chains",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18439]]]]},{"k":"H7578","v":[["trembling",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22267]]]]},{"k":"H7579","v":[["*",[19,18,[[0,8,7,0,7,[[23,8,7,0,7]]],[4,1,1,7,8,[[181,1,1,7,8]]],[5,3,3,8,11,[[195,3,3,8,11]]],[7,1,1,11,12,[[233,1,1,11,12]]],[8,2,2,12,14,[[242,1,1,12,13],[244,1,1,13,14]]],[9,1,1,14,15,[[289,1,1,14,15]]],[12,1,1,15,16,[[348,1,1,15,16]]],[22,1,1,16,17,[[690,1,1,16,17]]],[33,1,1,17,18,[[902,1,1,17,18]]]],[602,604,610,611,634,635,636,5690,6058,6060,6064,7158,7358,7402,8669,10691,17903,22726]]],["Draw",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22726]]],["draw",[8,8,[[0,6,6,0,6,[[23,6,6,0,6]]],[8,1,1,6,7,[[244,1,1,6,7]]],[22,1,1,7,8,[[690,1,1,7,8]]]],[602,604,610,611,634,635,7402,17903]]],["drawer",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5690]]],["drawers",[3,3,[[5,3,3,0,3,[[195,3,3,0,3]]]],[6058,6060,6064]]],["drawn",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7158]]],["drew",[5,5,[[0,2,2,0,2,[[23,2,2,0,2]]],[8,1,1,2,3,[[242,1,1,2,3]]],[9,1,1,3,4,[[289,1,1,3,4]]],[12,1,1,4,5,[[348,1,1,4,5]]]],[611,636,7358,8669,10691]]]]},{"k":"H7580","v":[["*",[20,17,[[6,1,1,0,1,[[224,1,1,0,1]]],[17,1,1,1,2,[[472,1,1,1,2]]],[18,4,4,2,6,[[499,1,1,2,3],[515,1,1,3,4],[551,1,1,4,5],[581,1,1,5,6]]],[22,1,1,6,7,[[683,1,1,6,7]]],[23,5,3,7,10,[[746,1,1,7,8],[769,3,1,8,9],[795,1,1,9,10]]],[25,1,1,10,11,[[823,1,1,10,11]]],[27,2,1,11,12,[[872,2,1,11,12]]],[28,1,1,12,13,[[878,1,1,12,13]]],[29,3,3,13,16,[[879,1,1,13,14],[881,2,2,14,16]]],[35,1,1,16,17,[[908,1,1,16,17]]]],[6914,13773,14217,14498,15052,15592,17768,18980,19564,20250,21001,22250,22359,22366,22399,22403,22823]]],["+",[2,1,[[23,2,1,0,1,[[769,2,1,0,1]]]],[19564]]],["roar",[10,9,[[18,2,2,0,2,[[551,1,1,0,1],[581,1,1,1,2]]],[22,1,1,2,3,[[683,1,1,2,3]]],[23,2,2,3,5,[[769,1,1,3,4],[795,1,1,4,5]]],[27,2,1,5,6,[[872,2,1,5,6]]],[28,1,1,6,7,[[878,1,1,6,7]]],[29,2,2,7,9,[[879,1,1,7,8],[881,1,1,8,9]]]],[15052,15592,17768,19564,20250,22250,22359,22366,22399]]],["roared",[4,4,[[6,1,1,0,1,[[224,1,1,0,1]]],[18,1,1,1,2,[[515,1,1,1,2]]],[23,1,1,2,3,[[746,1,1,2,3]]],[29,1,1,3,4,[[881,1,1,3,4]]]],[6914,14498,18980,22403]]],["roareth",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13773]]],["roaring",[3,3,[[18,1,1,0,1,[[499,1,1,0,1]]],[25,1,1,1,2,[[823,1,1,1,2]]],[35,1,1,2,3,[[908,1,1,2,3]]]],[14217,21001,22823]]]]},{"k":"H7581","v":[["*",[7,7,[[17,2,2,0,2,[[438,1,1,0,1],[439,1,1,1,2]]],[18,2,2,2,4,[[499,1,1,2,3],[509,1,1,3,4]]],[22,1,1,4,5,[[683,1,1,4,5]]],[25,1,1,5,6,[[820,1,1,5,6]]],[37,1,1,6,7,[[921,1,1,6,7]]]],[12928,12940,14205,14358,17768,20888,23031]]],["roaring",[6,6,[[17,1,1,0,1,[[439,1,1,0,1]]],[18,2,2,1,3,[[499,1,1,1,2],[509,1,1,2,3]]],[22,1,1,3,4,[[683,1,1,3,4]]],[25,1,1,4,5,[[820,1,1,4,5]]],[37,1,1,5,6,[[921,1,1,5,6]]]],[12940,14205,14358,17768,20888,23031]]],["roarings",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12928]]]]},{"k":"H7582","v":[["*",[6,5,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,5,4,1,5,[[684,2,1,1,2],[695,2,2,2,4],[715,1,1,4,5]]]],[10086,17780,17995,17996,18378]]],["desolate",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17780]]],["rush",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17996]]],["rushing",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17995]]],["waste",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10086,18378]]],["wasted",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17780]]]]},{"k":"H7583","v":[["wondering",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[612]]]]},{"k":"H7584","v":[["desolation",[1,1,[[19,1,1,0,1,[[628,1,1,0,1]]]],[16427]]]]},{"k":"H7585","v":[["*",[65,63,[[0,4,4,0,4,[[36,1,1,0,1],[41,1,1,1,2],[43,2,2,2,4]]],[3,2,2,4,6,[[132,2,2,4,6]]],[4,1,1,6,7,[[184,1,1,6,7]]],[8,1,1,7,8,[[237,1,1,7,8]]],[9,1,1,8,9,[[288,1,1,8,9]]],[10,2,2,9,11,[[292,2,2,9,11]]],[17,8,8,11,19,[[442,1,1,11,12],[446,1,1,12,13],[449,1,1,13,14],[452,2,2,14,16],[456,1,1,16,17],[459,1,1,17,18],[461,1,1,18,19]]],[18,16,15,19,34,[[483,1,1,19,20],[486,1,1,20,21],[493,1,1,21,22],[495,1,1,22,23],[507,1,1,23,24],[508,1,1,24,25],[526,3,2,25,27],[532,1,1,27,28],[563,1,1,28,29],[565,1,1,29,30],[566,1,1,30,31],[593,1,1,31,32],[616,1,1,32,33],[618,1,1,33,34]]],[19,9,9,34,43,[[628,1,1,34,35],[632,1,1,35,36],[634,1,1,36,37],[636,1,1,37,38],[642,2,2,38,40],[650,1,1,40,41],[654,1,1,41,42],[657,1,1,42,43]]],[20,1,1,43,44,[[667,1,1,43,44]]],[21,1,1,44,45,[[678,1,1,44,45]]],[22,9,9,45,54,[[683,1,1,45,46],[692,3,3,46,49],[706,2,2,49,51],[716,2,2,51,53],[735,1,1,53,54]]],[25,5,5,54,59,[[832,3,3,54,57],[833,2,2,57,59]]],[27,2,1,59,60,[[874,2,1,59,60]]],[29,1,1,60,61,[[887,1,1,60,61]]],[31,1,1,61,62,[[890,1,1,61,62]]],[34,1,1,62,63,[[904,1,1,62,63]]]],[1118,1290,1353,1355,4224,4227,5780,7246,8608,8776,8779,13017,13116,13194,13273,13276,13368,13455,13473,13990,14038,14102,14123,14322,14348,14662,14663,14747,15297,15311,15374,15851,16247,16283,16412,16522,16602,16656,16818,16831,17058,17189,17267,17485,17646,17753,17937,17939,17943,18179,18182,18400,18408,18774,21245,21246,21247,21269,21275,22280,22497,22550,22753]]],["+",[4,4,[[17,1,1,0,1,[[446,1,1,0,1]]],[18,1,1,1,2,[[563,1,1,1,2]]],[19,2,2,2,4,[[642,1,1,2,3],[650,1,1,3,4]]]],[13116,15297,16831,17058]]],["Hell",[4,4,[[17,1,1,0,1,[[461,1,1,0,1]]],[19,2,2,1,3,[[642,1,1,1,2],[654,1,1,2,3]]],[22,1,1,3,4,[[692,1,1,3,4]]]],[13473,16818,17189,17937]]],["grave",[30,28,[[0,4,4,0,4,[[36,1,1,0,1],[41,1,1,1,2],[43,2,2,2,4]]],[8,1,1,4,5,[[237,1,1,4,5]]],[10,2,2,5,7,[[292,2,2,5,7]]],[17,5,5,7,12,[[442,1,1,7,8],[449,1,1,8,9],[452,1,1,9,10],[456,1,1,10,11],[459,1,1,11,12]]],[18,8,7,12,19,[[483,1,1,12,13],[507,1,1,13,14],[508,1,1,14,15],[526,3,2,15,17],[565,1,1,17,18],[566,1,1,18,19]]],[19,2,2,19,21,[[628,1,1,19,20],[657,1,1,20,21]]],[20,1,1,21,22,[[667,1,1,21,22]]],[21,1,1,22,23,[[678,1,1,22,23]]],[22,3,3,23,26,[[692,1,1,23,24],[716,2,2,24,26]]],[25,1,1,26,27,[[832,1,1,26,27]]],[27,2,1,27,28,[[874,2,1,27,28]]]],[1118,1290,1353,1355,7246,8776,8779,13017,13194,13273,13368,13455,13990,14322,14348,14662,14663,15311,15374,16412,17267,17485,17646,17939,18400,18408,21245,22280]]],["grave's",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16283]]],["hell",[23,23,[[4,1,1,0,1,[[184,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[18,6,6,2,8,[[486,1,1,2,3],[493,1,1,3,4],[495,1,1,4,5],[532,1,1,5,6],[593,1,1,6,7],[616,1,1,7,8]]],[19,3,3,8,11,[[632,1,1,8,9],[634,1,1,9,10],[636,1,1,10,11]]],[22,5,5,11,16,[[683,1,1,11,12],[692,1,1,12,13],[706,2,2,13,15],[735,1,1,15,16]]],[25,4,4,16,20,[[832,2,2,16,18],[833,2,2,18,20]]],[29,1,1,20,21,[[887,1,1,20,21]]],[31,1,1,21,22,[[890,1,1,21,22]]],[34,1,1,22,23,[[904,1,1,22,23]]]],[5780,8608,14038,14102,14123,14747,15851,16247,16522,16602,16656,17753,17943,18179,18182,18774,21246,21247,21269,21275,22497,22550,22753]]],["pit",[3,3,[[3,2,2,0,2,[[132,2,2,0,2]]],[17,1,1,2,3,[[452,1,1,2,3]]]],[4224,4227,13276]]]]},{"k":"H7586","v":[["*",[401,330,[[0,3,3,0,3,[[35,2,2,0,2],[45,1,1,2,3]]],[1,1,1,3,4,[[55,1,1,3,4]]],[3,1,1,4,5,[[142,1,1,4,5]]],[8,297,241,5,246,[[244,19,16,5,21],[245,7,7,21,28],[246,10,8,28,36],[248,15,12,36,48],[249,31,27,48,75],[250,23,17,75,92],[251,11,10,92,102],[252,18,18,102,120],[253,35,25,120,145],[254,22,16,145,161],[255,7,7,161,168],[256,4,3,168,171],[257,8,7,171,178],[258,23,18,178,196],[259,15,10,196,206],[260,1,1,206,207],[261,15,11,207,218],[262,3,2,218,220],[263,17,15,220,235],[264,2,2,235,237],[266,11,9,237,246]]],[9,66,57,246,303,[[267,11,11,246,257],[268,8,7,257,264],[269,9,7,264,271],[270,7,5,271,276],[271,1,1,276,277],[272,3,3,277,280],[273,1,1,280,281],[275,7,6,281,287],[278,1,1,287,288],[282,2,2,288,290],[285,2,2,290,292],[287,13,10,292,302],[288,1,1,302,303]]],[12,32,26,303,329,[[338,2,2,303,305],[341,1,1,305,306],[342,1,1,306,307],[343,1,1,307,308],[345,2,1,308,309],[346,2,1,309,310],[347,12,10,310,320],[348,1,1,320,321],[349,7,5,321,326],[350,1,1,326,327],[352,1,1,327,328],[363,1,1,328,329]]],[22,1,1,329,330,[[688,1,1,329,330]]]],[1077,1078,1396,1670,4502,7393,7394,7396,7398,7399,7401,7406,7408,7409,7410,7412,7413,7415,7416,7417,7418,7429,7430,7432,7433,7434,7439,7444,7449,7450,7451,7452,7456,7457,7458,7460,7486,7487,7488,7489,7492,7494,7495,7496,7498,7500,7501,7507,7509,7510,7524,7525,7526,7527,7528,7529,7532,7541,7542,7543,7544,7545,7546,7548,7549,7550,7551,7552,7553,7554,7555,7557,7558,7559,7560,7561,7564,7565,7566,7567,7569,7571,7572,7573,7575,7576,7580,7584,7586,7591,7594,7595,7596,7597,7609,7610,7612,7614,7615,7616,7617,7618,7620,7626,7629,7630,7631,7632,7633,7637,7649,7650,7651,7652,7655,7656,7657,7673,7675,7676,7677,7678,7681,7682,7683,7684,7685,7686,7687,7688,7689,7691,7693,7694,7695,7696,7697,7698,7699,7700,7701,7703,7704,7705,7706,7707,7708,7710,7712,7713,7715,7716,7717,7720,7721,7723,7724,7725,7726,7727,7730,7755,7756,7757,7758,7760,7762,7763,7779,7782,7783,7793,7794,7796,7799,7800,7808,7809,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7829,7831,7834,7835,7836,7837,7838,7840,7841,7842,7843,7844,7846,7847,7848,7855,7861,7905,7906,7907,7908,7909,7910,7911,7912,7917,7922,7926,7930,7931,7934,7945,7946,7947,7948,7949,7950,7951,7952,7954,7955,7956,7957,7962,7963,7967,7970,7972,8011,8012,8013,8014,8015,8016,8017,8020,8021,8023,8024,8026,8027,8028,8034,8039,8043,8044,8045,8046,8053,8054,8056,8057,8059,8061,8064,8082,8087,8088,8089,8091,8094,8095,8121,8122,8124,8128,8130,8134,8173,8177,8180,8195,8228,8229,8230,8233,8234,8236,8293,8431,8434,8528,8535,8581,8582,8584,8586,8587,8588,8591,8592,8593,8594,8603,10300,10301,10409,10438,10478,10608,10654,10661,10662,10663,10664,10665,10666,10667,10670,10671,10672,10675,10721,10722,10739,10743,10749,10763,10820,11105,17879]]],["+",[6,6,[[8,3,3,0,3,[[246,1,1,0,1],[250,1,1,1,2],[254,1,1,2,3]]],[9,2,2,3,5,[[270,1,1,3,4],[287,1,1,4,5]]],[12,1,1,5,6,[[349,1,1,5,6]]]],[7460,7595,7716,8128,8588,10722]]],["Saul",[359,304,[[0,2,2,0,2,[[35,2,2,0,2]]],[8,274,229,2,231,[[244,18,16,2,18],[245,5,5,18,23],[246,9,8,23,31],[248,15,12,31,43],[249,29,26,43,69],[250,22,17,69,86],[251,10,9,86,95],[252,18,18,95,113],[253,29,23,113,136],[254,20,16,136,152],[255,5,5,152,157],[256,4,3,157,160],[257,8,7,160,167],[258,22,17,167,184],[259,13,8,184,192],[260,1,1,192,193],[261,14,10,193,203],[262,3,2,203,205],[263,17,15,205,220],[264,2,2,220,222],[266,10,9,222,231]]],[9,55,51,231,282,[[267,11,11,231,242],[268,6,6,242,248],[269,7,5,248,253],[270,3,3,253,256],[271,1,1,256,257],[272,2,2,257,259],[273,1,1,259,260],[275,6,6,260,266],[278,1,1,266,267],[282,2,2,267,269],[285,2,2,269,271],[287,12,10,271,281],[288,1,1,281,282]]],[12,27,21,282,303,[[342,1,1,282,283],[345,2,1,283,284],[346,2,1,284,285],[347,12,10,285,295],[348,1,1,295,296],[349,6,4,296,300],[350,1,1,300,301],[352,1,1,301,302],[363,1,1,302,303]]],[22,1,1,303,304,[[688,1,1,303,304]]]],[1077,1078,7393,7394,7396,7398,7399,7401,7406,7408,7409,7410,7412,7413,7415,7416,7417,7418,7429,7430,7434,7439,7444,7449,7450,7451,7452,7456,7457,7458,7460,7486,7487,7488,7489,7492,7494,7495,7496,7498,7500,7501,7507,7509,7510,7524,7525,7526,7527,7528,7529,7532,7541,7542,7543,7544,7545,7546,7548,7549,7550,7551,7552,7553,7554,7555,7557,7559,7560,7561,7564,7565,7566,7567,7569,7571,7572,7573,7575,7576,7580,7584,7586,7591,7594,7595,7596,7597,7609,7612,7614,7615,7616,7617,7618,7620,7626,7629,7630,7631,7632,7633,7637,7649,7650,7651,7652,7655,7656,7657,7673,7675,7676,7677,7678,7681,7682,7683,7684,7685,7686,7687,7688,7689,7691,7693,7694,7696,7697,7698,7700,7701,7703,7704,7705,7706,7707,7708,7710,7712,7713,7715,7716,7717,7720,7721,7723,7724,7725,7726,7727,7730,7756,7757,7758,7762,7763,7779,7782,7783,7793,7794,7796,7799,7800,7808,7809,7817,7818,7819,7820,7821,7822,7823,7824,7825,7827,7829,7831,7834,7835,7836,7837,7838,7840,7841,7842,7846,7847,7848,7855,7861,7905,7906,7907,7908,7909,7910,7911,7912,7922,7926,7930,7931,7934,7945,7946,7947,7948,7949,7950,7951,7952,7954,7955,7956,7957,7962,7963,7967,7970,7972,8011,8012,8013,8014,8015,8016,8017,8020,8021,8023,8024,8026,8027,8028,8034,8039,8043,8044,8045,8046,8053,8054,8056,8057,8061,8064,8082,8087,8088,8089,8091,8124,8128,8130,8134,8177,8180,8195,8228,8229,8230,8233,8234,8236,8293,8431,8434,8528,8535,8581,8582,8584,8586,8587,8588,8591,8592,8593,8594,8603,10438,10608,10654,10661,10662,10663,10664,10665,10666,10667,10670,10671,10672,10675,10721,10739,10743,10749,10763,10820,11105,17879]]],["Saul's",[29,28,[[8,20,19,0,19,[[244,1,1,0,1],[245,2,2,1,3],[249,2,1,3,4],[251,1,1,4,5],[253,6,6,5,11],[254,1,1,11,12],[255,2,2,12,14],[258,1,1,14,15],[259,2,2,15,17],[261,1,1,17,18],[266,1,1,18,19]]],[9,9,9,19,28,[[268,2,2,19,21],[269,2,2,21,23],[270,3,3,23,26],[272,1,1,26,27],[275,1,1,27,28]]]],[7394,7432,7433,7558,7610,7681,7686,7695,7696,7699,7704,7708,7755,7760,7826,7843,7844,7917,8011,8057,8059,8094,8095,8121,8122,8124,8173,8236]]],["Shaul",[7,7,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,1,1,1,2,[[55,1,1,1,2]]],[3,1,1,2,3,[[142,1,1,2,3]]],[12,4,4,3,7,[[338,2,2,3,5],[341,1,1,5,6],[343,1,1,6,7]]]],[1396,1670,4502,10300,10301,10409,10478]]]]},{"k":"H7587","v":[["Shaulites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4502]]]]},{"k":"H7588","v":[["*",[18,16,[[18,4,3,0,3,[[517,1,1,0,1],[542,2,1,1,2],[551,1,1,2,3]]],[22,8,7,3,10,[[683,1,1,3,4],[691,1,1,4,5],[695,3,2,5,7],[702,1,1,7,8],[703,1,1,8,9],[744,1,1,9,10]]],[23,4,4,10,14,[[769,1,1,10,11],[790,1,1,11,12],[792,1,1,12,13],[795,1,1,13,14]]],[27,1,1,14,15,[[871,1,1,14,15]]],[29,1,1,15,16,[[880,1,1,15,16]]]],[14527,14867,15071,17753,17910,17995,17996,18103,18123,18928,19565,20062,20125,20267,22239,22381]]],["horrible",[1,1,[[18,1,1,0,1,[[517,1,1,0,1]]]],[14527]]],["noise",[8,7,[[18,2,1,0,1,[[542,2,1,0,1]]],[22,3,3,1,4,[[702,1,1,1,2],[703,1,1,2,3],[744,1,1,3,4]]],[23,3,3,4,7,[[769,1,1,4,5],[790,1,1,5,6],[795,1,1,6,7]]]],[14867,18103,18123,18928,19565,20062,20267]]],["pomp",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17753]]],["rushing",[3,2,[[22,3,2,0,2,[[695,3,2,0,2]]]],[17995,17996]]],["tumult",[3,3,[[18,1,1,0,1,[[551,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]],[29,1,1,2,3,[[880,1,1,2,3]]]],[15071,22239,22381]]],["tumultuous",[2,2,[[22,1,1,0,1,[[691,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[17910,20125]]]]},{"k":"H7589","v":[["*",[3,3,[[25,3,3,0,3,[[826,2,2,0,2],[837,1,1,2,3]]]],[21089,21098,21364]]],["despite",[1,1,[[25,1,1,0,1,[[826,1,1,0,1]]]],[21089]]],["despiteful",[2,2,[[25,2,2,0,2,[[826,1,1,0,1],[837,1,1,1,2]]]],[21098,21364]]]]},{"k":"H7590","v":[["*",[3,3,[[25,3,3,0,3,[[817,1,1,0,1],[829,2,2,1,3]]]],[20819,21181,21183]]],["despise",[2,2,[[25,2,2,0,2,[[817,1,1,0,1],[829,1,1,1,2]]]],[20819,21183]]],["despised",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21181]]]]},{"k":"H7591","v":[["destruction",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18107]]]]},{"k":"H7592","v":[["*",[172,157,[[0,13,11,0,11,[[23,2,2,0,2],[25,1,1,2,3],[31,3,2,3,5],[36,1,1,5,6],[37,1,1,6,7],[39,1,1,7,8],[42,3,2,8,10],[43,1,1,10,11]]],[1,7,7,11,18,[[52,1,1,11,12],[60,1,1,12,13],[61,2,2,13,15],[62,1,1,15,16],[67,1,1,16,17],[71,1,1,17,18]]],[3,1,1,18,19,[[143,1,1,18,19]]],[4,8,8,19,27,[[156,1,1,19,20],[158,1,1,20,21],[162,1,1,21,22],[165,1,1,22,23],[166,1,1,23,24],[170,2,2,24,26],[184,1,1,26,27]]],[5,5,5,27,32,[[190,2,2,27,29],[195,1,1,29,30],[201,1,1,30,31],[205,1,1,31,32]]],[6,14,14,32,46,[[211,2,2,32,34],[214,1,1,34,35],[215,1,1,35,36],[218,3,3,36,39],[223,2,2,39,41],[228,2,2,41,43],[230,3,3,43,46]]],[8,31,28,46,74,[[236,5,4,46,50],[237,1,1,50,51],[243,1,1,51,52],[245,2,2,52,54],[247,3,3,54,57],[249,1,1,57,58],[252,2,2,58,60],[254,1,1,60,61],[255,4,2,61,63],[257,3,3,63,66],[258,2,2,66,68],[260,2,2,68,70],[263,2,2,70,72],[265,2,2,72,74]]],[9,11,10,74,84,[[268,1,1,74,75],[269,1,1,75,76],[271,2,2,76,78],[274,1,1,78,79],[277,1,1,79,80],[278,1,1,80,81],[280,1,1,81,82],[282,1,1,82,83],[286,2,1,83,84]]],[10,15,9,84,93,[[292,5,3,84,87],[293,8,4,87,91],[300,1,1,91,92],[309,1,1,92,93]]],[11,6,6,93,99,[[314,2,2,93,95],[316,2,2,95,97],[318,1,1,97,98],[320,1,1,98,99]]],[12,5,5,99,104,[[341,1,1,99,100],[347,1,1,100,101],[351,2,2,101,103],[355,1,1,103,104]]],[13,6,4,104,108,[[367,4,2,104,106],[375,1,1,106,107],[377,1,1,107,108]]],[14,1,1,108,109,[[410,1,1,108,109]]],[15,2,2,109,111,[[413,1,1,109,110],[425,1,1,110,111]]],[17,7,7,111,118,[[443,1,1,111,112],[447,1,1,112,113],[456,1,1,113,114],[466,1,1,114,115],[473,1,1,115,116],[475,1,1,116,117],[477,1,1,117,118]]],[18,10,10,118,128,[[479,1,1,118,119],[498,1,1,119,120],[504,1,1,120,121],[512,1,1,121,122],[517,1,1,122,123],[555,1,1,123,124],[582,1,1,124,125],[586,1,1,125,126],[599,1,1,126,127],[614,1,1,127,128]]],[19,2,2,128,130,[[647,1,1,128,129],[657,1,1,129,130]]],[20,2,2,130,132,[[660,1,1,130,131],[665,1,1,131,132]]],[22,8,7,132,139,[[685,3,2,132,134],[708,1,1,134,135],[719,1,1,135,136],[723,1,1,136,137],[736,1,1,137,138],[743,1,1,138,139]]],[23,11,11,139,150,[[750,1,1,139,140],[759,1,1,140,141],[762,1,1,141,142],[767,1,1,142,143],[774,1,1,143,144],[780,1,1,144,145],[781,1,1,145,146],[782,2,2,146,148],[792,1,1,148,149],[794,1,1,149,150]]],[24,1,1,150,151,[[800,1,1,150,151]]],[25,1,1,151,152,[[822,1,1,151,152]]],[27,1,1,152,153,[[865,1,1,152,153]]],[31,1,1,153,154,[[892,1,1,153,154]]],[32,1,1,154,155,[[899,1,1,154,155]]],[36,1,1,155,156,[[910,1,1,155,156]]],[37,1,1,156,157,[[920,1,1,156,157]]]],[638,648,699,945,957,1098,1140,1179,1297,1317,1343,1601,1808,1851,1852,1881,2006,2127,4575,5036,5106,5198,5286,5316,5395,5400,5765,5916,5931,6051,6220,6371,6510,6523,6619,6648,6733,6743,6745,6890,6902,6998,7008,7072,7077,7081,7229,7232,7239,7240,7260,7379,7422,7440,7473,7477,7479,7545,7640,7674,7728,7736,7758,7797,7800,7802,7812,7814,7866,7869,7948,7958,7986,7999,8050,8094,8151,8155,8219,8266,8306,8374,8449,8572,8786,8790,8792,8821,8826,8827,8829,9092,9391,9560,9561,9606,9631,9679,9733,10395,10672,10784,10788,10900,11201,11205,11376,11437,12223,12298,12677,13037,13135,13384,13618,13796,13871,13926,13953,14195,14289,14421,14531,15131,15646,15765,16095,16225,16958,17258,17343,17439,17793,17794,18219,18479,18572,18788,18898,19105,19320,19397,19517,19673,19859,19891,19909,19922,20099,20171,20424,20965,22145,22576,22667,22866,23017]]],["+",[23,19,[[0,5,4,0,4,[[37,1,1,0,1],[39,1,1,1,2],[42,2,1,2,3],[43,1,1,3,4]]],[5,1,1,4,5,[[190,1,1,4,5]]],[6,1,1,5,6,[[228,1,1,5,6]]],[8,9,7,6,13,[[245,1,1,6,7],[252,1,1,7,8],[255,4,2,8,10],[260,2,2,10,12],[265,1,1,12,13]]],[9,3,2,13,15,[[274,1,1,13,14],[286,2,1,14,15]]],[10,4,4,15,19,[[292,1,1,15,16],[293,2,2,16,18],[309,1,1,18,19]]]],[1140,1179,1297,1343,5931,7008,7422,7640,7736,7758,7866,7869,7999,8219,8572,8792,8826,8827,9391]]],["Ask",[10,10,[[10,1,1,0,1,[[293,1,1,0,1]]],[11,1,1,1,2,[[314,1,1,1,2]]],[13,1,1,2,3,[[367,1,1,2,3]]],[18,1,1,3,4,[[479,1,1,3,4]]],[22,2,2,4,6,[[685,1,1,4,5],[723,1,1,5,6]]],[23,2,2,6,8,[[762,1,1,6,7],[774,1,1,7,8]]],[36,1,1,8,9,[[910,1,1,8,9]]],[37,1,1,9,10,[[920,1,1,9,10]]]],[8821,9560,11201,13953,17793,18572,19397,19673,22866,23017]]],["Enquire",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7674]]],["Pray",[1,1,[[18,1,1,0,1,[[599,1,1,0,1]]]],[16095]]],["ask",[24,24,[[0,1,1,0,1,[[31,1,1,0,1]]],[3,1,1,1,2,[[143,1,1,1,2]]],[4,3,3,2,5,[[156,1,1,2,3],[165,1,1,3,4],[184,1,1,4,5]]],[5,2,2,5,7,[[190,1,1,5,6],[201,1,1,6,7]]],[6,1,1,7,8,[[211,1,1,7,8]]],[8,2,2,8,10,[[247,1,1,8,9],[263,1,1,9,10]]],[9,1,1,10,11,[[280,1,1,10,11]]],[10,2,2,11,13,[[292,2,2,11,13]]],[17,1,1,13,14,[[447,1,1,13,14]]],[22,3,3,14,17,[[685,2,2,14,16],[736,1,1,16,17]]],[23,6,6,17,23,[[750,1,1,17,18],[759,1,1,18,19],[767,1,1,19,20],[782,1,1,20,21],[792,1,1,21,22],[794,1,1,22,23]]],[24,1,1,23,24,[[800,1,1,23,24]]]],[957,4575,5036,5286,5765,5916,6220,6523,7479,7958,8374,8786,8792,13135,17793,17794,18788,19105,19320,19517,19909,20099,20171,20424]]],["asked",[38,33,[[0,5,5,0,5,[[23,1,1,0,1],[25,1,1,1,2],[31,1,1,2,3],[36,1,1,3,4],[42,1,1,4,5]]],[1,1,1,5,6,[[67,1,1,5,6]]],[5,2,2,6,8,[[195,1,1,6,7],[205,1,1,7,8]]],[6,3,3,8,11,[[211,1,1,8,9],[215,1,1,9,10],[223,1,1,10,11]]],[8,5,5,11,16,[[236,3,3,11,14],[243,1,1,14,15],[254,1,1,15,16]]],[10,6,3,16,19,[[293,5,2,16,18],[300,1,1,18,19]]],[11,2,2,19,21,[[314,1,1,19,20],[320,1,1,20,21]]],[13,4,2,21,23,[[367,3,1,21,22],[375,1,1,22,23]]],[15,1,1,23,24,[[413,1,1,23,24]]],[17,1,1,24,25,[[456,1,1,24,25]]],[18,2,2,25,27,[[498,1,1,25,26],[582,1,1,26,27]]],[22,3,3,27,30,[[708,1,1,27,28],[719,1,1,28,29],[743,1,1,29,30]]],[23,3,3,30,33,[[780,1,1,30,31],[781,1,1,31,32],[782,1,1,32,33]]]],[638,699,957,1098,1317,2006,6051,6371,6510,6648,6890,7229,7232,7239,7379,7728,8827,8829,9092,9561,9733,11205,11376,12298,13384,14195,15646,18219,18479,18898,19859,19891,19922]]],["askest",[1,1,[[6,1,1,0,1,[[223,1,1,0,1]]]],[6902]]],["asketh",[4,4,[[0,1,1,0,1,[[31,1,1,0,1]]],[1,1,1,1,2,[[62,1,1,1,2]]],[4,1,1,2,3,[[158,1,1,2,3]]],[32,1,1,3,4,[[899,1,1,3,4]]]],[945,1881,5106,22667]]],["asking",[3,3,[[8,1,1,0,1,[[247,1,1,0,1]]],[12,1,1,1,2,[[347,1,1,1,2]]],[18,1,1,2,3,[[555,1,1,2,3]]]],[7477,10672,15131]]],["beg",[2,2,[[18,1,1,0,1,[[586,1,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]]],[15765,16958]]],["borrow",[4,4,[[1,3,3,0,3,[[52,1,1,0,1],[60,1,1,1,2],[71,1,1,2,3]]],[11,1,1,3,4,[[316,1,1,3,4]]]],[1601,1808,2127,9606]]],["borrowed",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[11,1,1,1,2,[[318,1,1,1,2]]]],[1851,9679]]],["charge",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14421]]],["consulted",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20965]]],["consulter",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5395]]],["counsel",[5,5,[[6,3,3,0,3,[[228,1,1,0,1],[230,2,2,1,3]]],[8,1,1,3,4,[[249,1,1,3,4]]],[27,1,1,4,5,[[865,1,1,4,5]]]],[6998,7072,7077,7545,22145]]],["demand",[3,3,[[17,3,3,0,3,[[473,1,1,0,1],[475,1,1,1,2],[477,1,1,2,3]]]],[13796,13871,13926]]],["demanded",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8266]]],["desire",[3,3,[[6,1,1,0,1,[[218,1,1,0,1]]],[10,1,1,1,2,[[292,1,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]]],[6743,8790,9631]]],["desired",[4,4,[[8,1,1,0,1,[[247,1,1,0,1]]],[13,1,1,1,2,[[377,1,1,1,2]]],[18,1,1,2,3,[[504,1,1,2,3]]],[20,1,1,3,4,[[660,1,1,3,4]]]],[7473,11437,14289,17343]]],["desiredst",[1,1,[[4,1,1,0,1,[[170,1,1,0,1]]]],[5400]]],["desireth",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5316]]],["enquire",[6,6,[[0,1,1,0,1,[[23,1,1,0,1]]],[6,1,1,1,2,[[214,1,1,1,2]]],[8,1,1,2,3,[[257,1,1,2,3]]],[12,1,1,3,4,[[355,1,1,3,4]]],[17,1,1,4,5,[[443,1,1,4,5]]],[20,1,1,5,6,[[665,1,1,5,6]]]],[648,6619,7802,10900,13037,17439]]],["enquired",[15,15,[[6,2,2,0,2,[[218,1,1,0,1],[230,1,1,1,2]]],[8,7,7,2,9,[[245,1,1,2,3],[257,2,2,3,5],[258,2,2,5,7],[263,1,1,7,8],[265,1,1,8,9]]],[9,4,4,9,13,[[268,1,1,9,10],[271,2,2,10,12],[282,1,1,12,13]]],[12,2,2,13,15,[[351,2,2,13,15]]]],[6733,7081,7440,7797,7800,7812,7814,7948,7986,8050,8151,8155,8449,10784,10788]]],["leave",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12677]]],["lent",[4,3,[[1,1,1,0,1,[[61,1,1,0,1]]],[8,3,2,1,3,[[236,2,1,1,2],[237,1,1,2,3]]]],[1852,7240,7260]]],["on",[1,1,[[10,1,1,0,1,[[292,1,1,0,1]]]],[8790]]],["requested",[2,2,[[6,1,1,0,1,[[218,1,1,0,1]]],[12,1,1,1,2,[[341,1,1,1,2]]]],[6745,10395]]],["require",[3,3,[[4,1,1,0,1,[[162,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]],[14,1,1,2,3,[[410,1,1,2,3]]]],[5198,8094,12223]]],["required",[4,4,[[9,1,1,0,1,[[278,1,1,0,1]]],[18,2,2,1,3,[[517,1,1,1,2],[614,1,1,2,3]]],[19,1,1,3,4,[[657,1,1,3,4]]]],[8306,14531,16225,17258]]],["wished",[1,1,[[31,1,1,0,1,[[892,1,1,0,1]]]],[22576]]],["wishing",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13618]]]]},{"k":"H7593","v":[["*",[6,6,[[14,3,3,0,3,[[407,2,2,0,2],[409,1,1,2,3]]],[26,3,3,3,6,[[851,3,3,3,6]]]],[12143,12144,12194,21768,21769,21785]]],["asked",[3,3,[[14,2,2,0,2,[[407,2,2,0,2]]],[26,1,1,2,3,[[851,1,1,2,3]]]],[12143,12144,21768]]],["demanded",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21785]]],["require",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12194]]],["requireth",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21769]]]]},{"k":"H7594","v":[["Sheal",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12281]]]]},{"k":"H7595","v":[["demand",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21854]]]]},{"k":"H7596","v":[["*",[14,14,[[6,1,1,0,1,[[218,1,1,0,1]]],[8,3,3,1,4,[[236,2,2,1,3],[237,1,1,3,4]]],[10,2,2,4,6,[[292,2,2,4,6]]],[16,6,6,6,12,[[430,3,3,6,9],[432,2,2,9,11],[434,1,1,11,12]]],[17,1,1,12,13,[[441,1,1,12,13]]],[18,1,1,13,14,[[583,1,1,13,14]]]],[6743,7229,7239,7260,8786,8790,12785,12786,12787,12809,12810,12846,12986,15666]]],["loan",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7260]]],["petition",[10,10,[[8,2,2,0,2,[[236,2,2,0,2]]],[10,2,2,2,4,[[292,2,2,2,4]]],[16,6,6,4,10,[[430,3,3,4,7],[432,2,2,7,9],[434,1,1,9,10]]]],[7229,7239,8786,8790,12785,12786,12787,12809,12810,12846]]],["request",[3,3,[[6,1,1,0,1,[[218,1,1,0,1]]],[17,1,1,1,2,[[441,1,1,1,2]]],[18,1,1,2,3,[[583,1,1,2,3]]]],[6743,12986,15666]]]]},{"k":"H7597","v":[["*",[9,9,[[12,1,1,0,1,[[340,1,1,0,1]]],[14,2,2,1,3,[[405,2,2,1,3]]],[15,1,1,3,4,[[424,1,1,3,4]]],[36,5,5,4,9,[[909,3,3,4,7],[910,2,2,7,9]]]],[10378,12099,12105,12625,22841,22852,22854,22857,22878]]],["Salathiel",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10378]]],["Shealtiel",[8,8,[[14,2,2,0,2,[[405,2,2,0,2]]],[15,1,1,2,3,[[424,1,1,2,3]]],[36,5,5,3,8,[[909,3,3,3,6],[910,2,2,6,8]]]],[12099,12105,12625,22841,22852,22854,22857,22878]]]]},{"k":"H7598","v":[["Shealtiel",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12136]]]]},{"k":"H7599","v":[["*",[5,5,[[17,1,1,0,1,[[438,1,1,0,1]]],[19,1,1,1,2,[[628,1,1,1,2]]],[23,3,3,2,5,[[774,1,1,2,3],[790,1,1,3,4],[792,1,1,4,5]]]],[12922,16433,19677,20072,20091]]],["ease",[2,2,[[23,2,2,0,2,[[790,1,1,0,1],[792,1,1,1,2]]]],[20072,20091]]],["quiet",[2,2,[[19,1,1,0,1,[[628,1,1,0,1]]],[23,1,1,1,2,[[774,1,1,1,2]]]],[16433,19677]]],["rest",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12922]]]]},{"k":"H7600","v":[["*",[10,10,[[11,1,1,0,1,[[331,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[18,1,1,2,3,[[600,1,1,2,3]]],[22,5,5,3,8,[[710,3,3,3,6],[711,1,1,6,7],[715,1,1,7,8]]],[29,1,1,8,9,[[884,1,1,8,9]]],[37,1,1,9,10,[[911,1,1,9,10]]]],[10089,13133,16102,18268,18270,18277,18299,18381,22451,22893]]],["ease",[6,6,[[17,1,1,0,1,[[447,1,1,0,1]]],[18,1,1,1,2,[[600,1,1,1,2]]],[22,2,2,2,4,[[710,2,2,2,4]]],[29,1,1,4,5,[[884,1,1,4,5]]],[37,1,1,5,6,[[911,1,1,5,6]]]],[13133,16102,18268,18270,22451,22893]]],["quiet",[2,2,[[22,2,2,0,2,[[710,1,1,0,1],[711,1,1,1,2]]]],[18277,18299]]],["tumult",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10089,18381]]]]},{"k":"H7601","v":[["spoil",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19683]]]]},{"k":"H7602","v":[["*",[14,14,[[17,3,3,0,3,[[440,1,1,0,1],[442,1,1,1,2],[471,1,1,2,3]]],[18,4,4,3,7,[[533,2,2,3,5],[534,1,1,5,6],[596,1,1,6,7]]],[20,1,1,7,8,[[659,1,1,7,8]]],[22,1,1,8,9,[[720,1,1,8,9]]],[23,2,2,9,11,[[746,1,1,9,10],[758,1,1,10,11]]],[25,1,1,11,12,[[837,1,1,11,12]]],[29,2,2,12,14,[[880,1,1,12,13],[886,1,1,13,14]]]],[12956,13010,13756,14756,14757,14771,16029,17320,18494,18989,19299,21362,22386,22485]]],["+",[1,1,[[25,1,1,0,1,[[837,1,1,0,1]]]],[21362]]],["Desire",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13756]]],["desireth",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13010]]],["devour",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18494]]],["hasteth",[1,1,[[20,1,1,0,1,[[659,1,1,0,1]]]],[17320]]],["pant",[1,1,[[29,1,1,0,1,[[880,1,1,0,1]]]],[22386]]],["panted",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16029]]],["up",[7,7,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,3,3,1,4,[[533,2,2,1,3],[534,1,1,3,4]]],[23,2,2,4,6,[[746,1,1,4,5],[758,1,1,5,6]]],[29,1,1,6,7,[[886,1,1,6,7]]]],[12956,14756,14757,14771,18989,19299,22485]]]]},{"k":"H7603","v":[["*",[5,5,[[1,3,3,0,3,[[61,2,2,0,2],[62,1,1,2,3]]],[2,1,1,3,4,[[91,1,1,3,4]]],[4,1,1,4,5,[[168,1,1,4,5]]]],[1831,1835,1874,2773,5346]]],["bread",[1,1,[[4,1,1,0,1,[[168,1,1,0,1]]]],[5346]]],["leaven",[4,4,[[1,3,3,0,3,[[61,2,2,0,2],[62,1,1,2,3]]],[2,1,1,3,4,[[91,1,1,3,4]]]],[1831,1835,1874,2773]]]]},{"k":"H7604","v":[["*",[134,123,[[0,5,5,0,5,[[6,1,1,0,1],[13,1,1,1,2],[31,1,1,2,3],[41,1,1,3,4],[46,1,1,4,5]]],[1,8,8,5,13,[[57,3,3,5,8],[59,4,4,8,12],[63,1,1,12,13]]],[2,4,4,13,17,[[94,1,1,13,14],[114,1,1,14,15],[115,2,2,15,17]]],[3,3,3,17,20,[[125,1,1,17,18],[127,1,1,18,19],[137,1,1,19,20]]],[4,9,9,20,29,[[154,1,1,20,21],[155,2,2,21,23],[156,1,1,23,24],[159,1,1,24,25],[171,1,1,25,26],[180,3,3,26,29]]],[5,17,17,29,46,[[194,2,2,29,31],[196,6,6,31,37],[197,3,3,37,40],[199,3,3,40,43],[209,3,3,43,46]]],[6,3,3,46,49,[[214,1,1,46,47],[216,1,1,47,48],[217,1,1,48,49]]],[7,2,2,49,51,[[232,2,2,49,51]]],[8,7,6,51,57,[[240,1,1,51,52],[244,1,1,52,53],[246,2,1,53,54],[249,1,1,54,55],[251,1,1,55,56],[260,1,1,56,57]]],[9,2,1,57,58,[[280,2,1,57,58]]],[10,4,4,58,62,[[305,1,1,58,59],[306,1,1,59,60],[309,1,1,60,61],[312,1,1,61,62]]],[11,17,13,62,75,[[315,1,1,62,63],[319,3,1,63,64],[322,5,4,64,68],[325,1,1,68,69],[329,1,1,69,70],[331,1,1,70,71],[336,1,1,71,72],[337,4,3,72,75]]],[12,1,1,75,76,[[350,1,1,75,76]]],[13,3,3,76,79,[[387,1,1,76,77],[396,1,1,77,78],[400,1,1,78,79]]],[14,3,3,79,82,[[403,1,1,79,80],[411,2,2,80,82]]],[15,3,2,82,84,[[413,3,2,82,84]]],[17,1,1,84,85,[[456,1,1,84,85]]],[22,8,8,85,93,[[682,1,1,85,86],[689,2,2,86,88],[695,1,1,88,89],[702,2,2,89,91],[715,1,1,91,92],[727,1,1,92,93]]],[23,18,16,93,109,[[752,2,1,93,94],[765,1,1,94,95],[768,1,1,95,96],[778,1,1,96,97],[781,1,1,97,98],[782,2,2,98,100],[783,3,2,100,102],[784,1,1,102,103],[785,1,1,103,104],[786,1,1,104,105],[793,1,1,105,106],[794,1,1,106,107],[796,2,2,107,109]]],[25,4,4,109,113,[[807,1,1,109,110],[810,1,1,110,111],[818,1,1,111,112],[837,1,1,112,113]]],[26,3,2,113,115,[[859,3,2,113,115]]],[28,1,1,115,116,[[877,1,1,115,116]]],[29,2,1,116,117,[[883,2,1,116,117]]],[30,1,1,117,118,[[888,1,1,117,118]]],[35,1,1,118,119,[[908,1,1,118,119]]],[36,1,1,119,120,[[910,1,1,119,120]]],[37,3,3,120,123,[[919,1,1,120,121],[921,1,1,121,122],[922,1,1,122,123]]]],[182,346,936,1290,1438,1719,1721,1741,1782,1789,1796,1803,1917,2839,3521,3560,3563,3977,4050,4375,4972,4978,4986,5031,5131,5426,5662,5666,5673,6019,6024,6092,6094,6097,6101,6103,6104,6115,6121,6129,6155,6156,6166,6464,6467,6472,6615,6658,6697,7130,7132,7323,7415,7456,7544,7606,7883,8363,9278,9294,9405,9526,9601,9720,9804,9807,9810,9814,9878,10001,10091,10216,10233,10234,10244,10762,11641,11833,11954,12020,12245,12252,12298,12299,13389,17736,17895,17900,17989,18101,18107,18383,18657,19156,19447,19532,19808,19884,19899,19917,19932,19933,19947,19967,19977,20136,20186,20291,20292,20575,20630,20846,21395,22023,22032,22325,22426,22515,22832,22858,23006,23037,23059]]],["behind",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1803]]],["leave",[13,12,[[3,1,1,0,1,[[125,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[8,2,2,2,4,[[249,1,1,2,3],[260,1,1,3,4]]],[9,1,1,4,5,[[280,1,1,4,5]]],[11,1,1,5,6,[[325,1,1,5,6]]],[14,1,1,6,7,[[411,1,1,6,7]]],[23,1,1,7,8,[[793,1,1,7,8]]],[28,1,1,8,9,[[877,1,1,8,9]]],[29,2,1,9,10,[[883,2,1,9,10]]],[30,1,1,10,11,[[888,1,1,10,11]]],[35,1,1,11,12,[[908,1,1,11,12]]]],[3977,5662,7544,7883,8363,9878,12245,20136,22325,22426,22515,22832]]],["left",[64,63,[[0,3,3,0,3,[[31,1,1,0,1],[41,1,1,1,2],[46,1,1,2,3]]],[1,1,1,3,4,[[59,1,1,3,4]]],[2,2,2,4,6,[[115,2,2,4,6]]],[3,1,1,6,7,[[137,1,1,6,7]]],[4,6,6,7,13,[[154,1,1,7,8],[155,1,1,8,9],[156,1,1,9,10],[159,1,1,10,11],[180,2,2,11,13]]],[5,7,7,13,20,[[194,1,1,13,14],[196,4,4,14,18],[197,2,2,18,20]]],[6,2,2,20,22,[[214,1,1,20,21],[216,1,1,21,22]]],[7,2,2,22,24,[[232,2,2,22,24]]],[8,3,3,24,27,[[240,1,1,24,25],[244,1,1,25,26],[246,1,1,26,27]]],[9,1,1,27,28,[[280,1,1,27,28]]],[10,3,3,28,31,[[305,1,1,28,29],[306,1,1,29,30],[309,1,1,30,31]]],[11,10,9,31,40,[[315,1,1,31,32],[319,2,1,32,33],[322,3,3,33,36],[329,1,1,36,37],[337,3,3,37,40]]],[12,1,1,40,41,[[350,1,1,40,41]]],[13,2,2,41,43,[[387,1,1,41,42],[400,1,1,42,43]]],[15,2,2,43,45,[[413,2,2,43,45]]],[22,7,7,45,52,[[682,1,1,45,46],[689,2,2,46,48],[695,1,1,48,49],[702,2,2,49,51],[727,1,1,51,52]]],[23,6,6,52,58,[[765,1,1,52,53],[782,1,1,53,54],[783,1,1,54,55],[784,1,1,55,56],[786,1,1,56,57],[796,1,1,57,58]]],[25,2,2,58,60,[[810,1,1,58,59],[837,1,1,59,60]]],[26,2,2,60,62,[[859,2,2,60,62]]],[36,1,1,62,63,[[910,1,1,62,63]]]],[936,1290,1438,1789,3560,3563,4375,4972,4978,5031,5131,5666,5673,6019,6097,6101,6103,6104,6115,6121,6615,6658,7130,7132,7323,7415,7456,8363,9278,9294,9405,9601,9720,9804,9807,9814,10001,10233,10234,10244,10762,11641,11954,12298,12299,17736,17895,17900,17989,18101,18107,18657,19447,19917,19933,19947,19977,20292,20630,21395,22023,22032,22858]]],["let",[2,2,[[5,2,2,0,2,[[196,2,2,0,2]]]],[6092,6094]]],["remain",[16,15,[[1,2,2,0,2,[[57,2,2,0,2]]],[2,1,1,2,3,[[114,1,1,2,3]]],[4,1,1,3,4,[[171,1,1,3,4]]],[5,4,4,4,8,[[194,1,1,4,5],[209,3,3,5,8]]],[11,1,1,8,9,[[319,1,1,8,9]]],[14,1,1,9,10,[[411,1,1,9,10]]],[23,4,3,10,13,[[752,2,1,10,11],[768,1,1,11,12],[782,1,1,12,13]]],[25,1,1,13,14,[[818,1,1,13,14]]],[37,1,1,14,15,[[922,1,1,14,15]]]],[1719,1721,3521,5426,6024,6464,6467,6472,9720,12252,19156,19532,19899,20846,23059]]],["remained",[23,22,[[0,2,2,0,2,[[6,1,1,0,1],[13,1,1,1,2]]],[1,3,3,2,5,[[57,1,1,2,3],[59,1,1,3,4],[63,1,1,4,5]]],[3,1,1,5,6,[[127,1,1,5,6]]],[4,1,1,6,7,[[155,1,1,6,7]]],[5,2,2,7,9,[[197,1,1,7,8],[199,1,1,8,9]]],[6,1,1,9,10,[[217,1,1,9,10]]],[8,1,1,10,11,[[246,1,1,10,11]]],[10,1,1,11,12,[[312,1,1,11,12]]],[11,4,4,12,16,[[322,2,2,12,14],[336,1,1,14,15],[337,1,1,15,16]]],[23,6,5,16,21,[[778,1,1,16,17],[781,1,1,17,18],[783,2,1,18,19],[785,1,1,19,20],[796,1,1,20,21]]],[26,1,1,21,22,[[859,1,1,21,22]]]],[182,346,1741,1796,1917,4050,4986,6129,6166,6697,7456,9526,9804,9810,10216,10244,19808,19884,19932,19967,20291,22023]]],["remaineth",[8,8,[[1,1,1,0,1,[[59,1,1,0,1]]],[5,2,2,1,3,[[199,2,2,1,3]]],[8,1,1,3,4,[[251,1,1,3,4]]],[14,1,1,4,5,[[403,1,1,4,5]]],[17,1,1,5,6,[[456,1,1,5,6]]],[25,1,1,6,7,[[807,1,1,6,7]]],[37,1,1,7,8,[[919,1,1,7,8]]]],[1782,6155,6156,7606,12020,13389,20575,23006]]],["remnant",[4,4,[[11,1,1,0,1,[[331,1,1,0,1]]],[13,1,1,1,2,[[396,1,1,1,2]]],[15,1,1,2,3,[[413,1,1,2,3]]],[22,1,1,3,4,[[715,1,1,3,4]]]],[10091,11833,12299,18383]]],["reserve",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20186]]],["rest",[2,2,[[2,1,1,0,1,[[94,1,1,0,1]]],[37,1,1,1,2,[[921,1,1,1,2]]]],[2839,23037]]]]},{"k":"H7605","v":[["*",[26,25,[[12,2,2,0,2,[[348,1,1,0,1],[353,1,1,1,2]]],[13,2,2,2,4,[[375,1,1,2,3],[390,1,1,3,4]]],[14,3,3,4,7,[[405,1,1,4,5],[406,2,2,5,7]]],[15,3,3,7,10,[[422,1,1,7,8],[423,2,2,8,10]]],[16,2,2,10,12,[[434,2,2,10,12]]],[22,12,11,12,23,[[688,5,4,12,16],[689,2,2,16,18],[692,1,1,18,19],[694,1,1,19,20],[695,1,1,20,21],[699,1,1,21,22],[706,1,1,22,23]]],[35,1,1,23,24,[[906,1,1,23,24]]],[38,1,1,24,25,[[926,1,1,24,25]]]],[10681,10861,11393,11691,12105,12113,12117,12577,12589,12608,12846,12850,17869,17870,17871,17872,17895,17900,17950,17983,17986,18052,18169,22791,23118]]],["other",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12850]]],["remnant",[11,10,[[14,1,1,0,1,[[405,1,1,0,1]]],[22,9,8,1,9,[[688,4,3,1,4],[689,2,2,4,6],[692,1,1,6,7],[694,1,1,7,8],[695,1,1,8,9]]],[35,1,1,9,10,[[906,1,1,9,10]]]],[12105,17870,17871,17872,17895,17900,17950,17983,17986,22791]]],["residue",[4,4,[[15,1,1,0,1,[[423,1,1,0,1]]],[22,2,2,1,3,[[699,1,1,1,2],[706,1,1,2,3]]],[38,1,1,3,4,[[926,1,1,3,4]]]],[12608,18052,18169,23118]]],["rest",[10,10,[[12,2,2,0,2,[[348,1,1,0,1],[353,1,1,1,2]]],[13,2,2,2,4,[[375,1,1,2,3],[390,1,1,3,4]]],[14,2,2,4,6,[[406,2,2,4,6]]],[15,2,2,6,8,[[422,1,1,6,7],[423,1,1,7,8]]],[16,1,1,8,9,[[434,1,1,8,9]]],[22,1,1,9,10,[[688,1,1,9,10]]]],[10681,10861,11393,11691,12113,12117,12577,12589,12846,17869]]]]},{"k":"H7606","v":[["*",[12,10,[[14,8,6,0,6,[[406,5,3,0,3],[408,1,1,3,4],[409,2,2,4,6]]],[26,4,4,6,10,[[851,1,1,6,7],[856,3,3,7,10]]]],[12119,12120,12127,12167,12191,12193,21776,21940,21945,21952]]],["more",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12193]]],["residue",[2,2,[[26,2,2,0,2,[[856,2,2,0,2]]]],[21940,21952]]],["rest",[9,7,[[14,7,5,0,5,[[406,5,3,0,3],[408,1,1,3,4],[409,1,1,4,5]]],[26,2,2,5,7,[[851,1,1,5,6],[856,1,1,6,7]]]],[12119,12120,12127,12167,12191,21776,21945]]]]},{"k":"H7607","v":[["*",[16,16,[[1,1,1,0,1,[[70,1,1,0,1]]],[2,6,6,1,7,[[107,3,3,1,4],[109,1,1,4,5],[110,1,1,5,6],[114,1,1,6,7]]],[3,1,1,7,8,[[143,1,1,7,8]]],[18,3,3,8,11,[[550,1,1,8,9],[555,2,2,9,11]]],[19,2,2,11,13,[[632,1,1,11,12],[638,1,1,12,13]]],[23,1,1,13,14,[[795,1,1,13,14]]],[32,2,2,14,16,[[895,2,2,14,16]]]],[2087,3257,3263,3264,3337,3347,3518,4565,15046,15133,15140,16528,16705,20247,22610,22611]]],["+",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3518]]],["body",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16528]]],["flesh",[7,7,[[18,3,3,0,3,[[550,1,1,0,1],[555,2,2,1,3]]],[19,1,1,3,4,[[638,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]],[32,2,2,5,7,[[895,2,2,5,7]]]],[15046,15133,15140,16705,20247,22610,22611]]],["food",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2087]]],["kin",[2,2,[[2,2,2,0,2,[[109,1,1,0,1],[110,1,1,1,2]]]],[3337,3347]]],["kinsman",[1,1,[[3,1,1,0,1,[[143,1,1,0,1]]]],[4565]]],["kinswoman",[2,2,[[2,2,2,0,2,[[107,2,2,0,2]]]],[3263,3264]]],["near",[1,1,[[2,1,1,0,1,[[107,1,1,0,1]]]],[3257]]]]},{"k":"H7608","v":[["kinswomen",[1,1,[[2,1,1,0,1,[[107,1,1,0,1]]]],[3268]]]]},{"k":"H7609","v":[["Sherah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10559]]]]},{"k":"H7610","v":[["Shearjashub",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17785]]]]},{"k":"H7611","v":[["*",[66,66,[[0,1,1,0,1,[[44,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]],[11,3,3,2,5,[[331,2,2,2,4],[333,1,1,4,5]]],[12,2,2,5,7,[[341,1,1,5,6],[349,1,1,6,7]]],[13,2,2,7,9,[[400,1,1,7,8],[402,1,1,8,9]]],[14,1,1,9,10,[[411,1,1,9,10]]],[15,1,1,10,11,[[419,1,1,10,11]]],[18,1,1,11,12,[[553,1,1,11,12]]],[22,6,6,12,18,[[692,1,1,12,13],[693,1,1,13,14],[715,2,2,14,16],[722,1,1,16,17],[724,1,1,17,18]]],[23,24,24,18,42,[[750,1,1,18,19],[752,1,1,19,20],[755,1,1,20,21],[759,1,1,21,22],[767,1,1,22,23],[768,1,1,23,24],[769,1,1,24,25],[775,1,1,25,26],[783,1,1,26,27],[784,2,2,27,29],[785,2,2,29,31],[786,3,3,31,34],[787,1,1,34,35],[788,4,4,35,39],[791,2,2,39,41],[794,1,1,41,42]]],[25,7,7,42,49,[[806,1,1,42,43],[810,1,1,43,44],[812,1,1,44,45],[826,1,1,45,46],[837,3,3,46,49]]],[29,3,3,49,52,[[879,1,1,49,50],[883,1,1,50,51],[887,1,1,51,52]]],[32,5,5,52,57,[[894,1,1,52,53],[896,1,1,53,54],[897,2,2,54,56],[899,1,1,56,57]]],[35,3,3,57,60,[[907,2,2,57,59],[908,1,1,59,60]]],[36,3,3,60,63,[[909,2,2,60,62],[910,1,1,62,63]]],[37,3,3,63,66,[[918,3,3,63,66]]]],[1365,8363,10065,10092,10133,10428,10758,11942,12013,12251,12492,15091,17958,17969,18356,18384,18550,18589,19098,19156,19249,19324,19487,19532,19554,19698,19926,19952,19956,19967,19973,19977,19990,19994,20002,20017,20022,20024,20038,20077,20078,20192,20556,20630,20668,21099,21362,21363,21364,22372,22438,22507,22607,22627,22640,22641,22682,22812,22814,22833,22852,22854,22857,22982,22987,22988]]],["escaped",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[12013]]],["left",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20192]]],["posterity",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1365]]],["remain",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20017]]],["remainder",[2,2,[[9,1,1,0,1,[[280,1,1,0,1]]],[18,1,1,1,2,[[553,1,1,1,2]]]],[8363,15091]]],["remnant",[44,44,[[11,3,3,0,3,[[331,2,2,0,2],[333,1,1,2,3]]],[13,1,1,3,4,[[400,1,1,3,4]]],[14,1,1,4,5,[[411,1,1,4,5]]],[22,5,5,5,10,[[692,1,1,5,6],[693,1,1,6,7],[715,2,2,7,9],[724,1,1,9,10]]],[23,17,17,10,27,[[750,1,1,10,11],[755,1,1,11,12],[767,1,1,12,13],[769,1,1,13,14],[775,1,1,14,15],[784,2,2,15,17],[785,1,1,17,18],[786,3,3,18,21],[787,1,1,21,22],[788,3,3,22,25],[791,2,2,25,27]]],[25,3,3,27,30,[[806,1,1,27,28],[812,1,1,28,29],[826,1,1,29,30]]],[29,3,3,30,33,[[879,1,1,30,31],[883,1,1,31,32],[887,1,1,32,33]]],[32,5,5,33,38,[[894,1,1,33,34],[896,1,1,34,35],[897,2,2,35,37],[899,1,1,37,38]]],[35,2,2,38,40,[[907,1,1,38,39],[908,1,1,39,40]]],[36,2,2,40,42,[[909,2,2,40,42]]],[37,2,2,42,44,[[918,2,2,42,44]]]],[10065,10092,10133,11942,12251,17958,17969,18356,18384,18589,19098,19249,19487,19554,19698,19952,19956,19973,19977,19990,19994,20002,20022,20024,20038,20077,20078,20556,20668,21099,22372,22438,22507,22607,22627,22640,22641,22682,22812,22833,22852,22854,22982,22988]]],["residue",[13,13,[[22,1,1,0,1,[[722,1,1,0,1]]],[23,5,5,1,6,[[752,1,1,1,2],[759,1,1,2,3],[768,1,1,3,4],[783,1,1,4,5],[785,1,1,5,6]]],[25,4,4,6,10,[[810,1,1,6,7],[837,3,3,7,10]]],[35,1,1,10,11,[[907,1,1,10,11]]],[36,1,1,11,12,[[910,1,1,11,12]]],[37,1,1,12,13,[[918,1,1,12,13]]]],[18550,19156,19324,19532,19926,19967,20630,21362,21363,21364,22814,22857,22987]]],["rest",[3,3,[[12,2,2,0,2,[[341,1,1,0,1],[349,1,1,1,2]]],[15,1,1,2,3,[[419,1,1,2,3]]]],[10428,10758,12492]]]]},{"k":"H7612","v":[["desolation",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20401]]]]},{"k":"H7613","v":[["*",[14,13,[[0,2,2,0,2,[[3,1,1,0,1],[48,1,1,1,2]]],[2,7,6,2,8,[[102,6,5,2,7],[103,1,1,7,8]]],[17,3,3,8,11,[[448,1,1,8,9],[466,1,1,9,10],[476,1,1,10,11]]],[18,1,1,11,12,[[539,1,1,11,12]]],[34,1,1,12,13,[[903,1,1,12,13]]]],[86,1476,3054,3062,3071,3080,3095,3167,13164,13611,13913,14831,22738]]],["+",[3,3,[[17,2,2,0,2,[[466,1,1,0,1],[476,1,1,1,2]]],[18,1,1,2,3,[[539,1,1,2,3]]]],[13611,13913,14831]]],["accepted",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[86]]],["dignity",[2,2,[[0,1,1,0,1,[[48,1,1,0,1]]],[34,1,1,1,2,[[903,1,1,1,2]]]],[1476,22738]]],["excellency",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13164]]],["rising",[7,6,[[2,7,6,0,6,[[102,6,5,0,5],[103,1,1,5,6]]]],[3054,3062,3071,3080,3095,3167]]]]},{"k":"H7614","v":[["*",[23,23,[[0,3,3,0,3,[[9,2,2,0,2],[24,1,1,2,3]]],[10,4,4,3,7,[[300,4,4,3,7]]],[12,3,3,7,10,[[338,3,3,7,10]]],[13,4,4,10,14,[[375,4,4,10,14]]],[17,2,2,14,16,[[436,1,1,14,15],[441,1,1,15,16]]],[18,2,2,16,18,[[549,2,2,16,18]]],[22,1,1,18,19,[[738,1,1,18,19]]],[23,1,1,19,20,[[750,1,1,19,20]]],[25,3,3,20,23,[[828,2,2,20,22],[839,1,1,22,23]]]],[241,262,661,9080,9083,9089,9092,10261,10274,10284,11365,11367,11373,11376,12884,12997,15010,15015,18827,19109,21143,21144,21438]]],["+",[4,4,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]],[22,1,1,2,3,[[738,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]]],[9092,11376,18827,19109]]],["Sabeans",[1,1,[[17,1,1,0,1,[[436,1,1,0,1]]]],[12884]]],["Sheba",[18,18,[[0,3,3,0,3,[[9,2,2,0,2],[24,1,1,2,3]]],[10,3,3,3,6,[[300,3,3,3,6]]],[12,3,3,6,9,[[338,3,3,6,9]]],[13,3,3,9,12,[[375,3,3,9,12]]],[17,1,1,12,13,[[441,1,1,12,13]]],[18,2,2,13,15,[[549,2,2,13,15]]],[25,3,3,15,18,[[828,2,2,15,17],[839,1,1,17,18]]]],[241,262,661,9080,9083,9089,10261,10274,10284,11365,11367,11373,12997,15010,15015,21143,21144,21438]]]]},{"k":"H7615","v":[["Sabeans",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22351]]]]},{"k":"H7616","v":[["pieces",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22200]]]]},{"k":"H7617","v":[["*",[47,42,[[0,3,3,0,3,[[13,1,1,0,1],[30,1,1,1,2],[33,1,1,2,3]]],[1,1,1,3,4,[[71,1,1,3,4]]],[3,3,3,4,7,[[137,1,1,4,5],[140,1,1,5,6],[147,1,1,6,7]]],[4,1,1,7,8,[[173,1,1,7,8]]],[6,1,1,8,9,[[215,1,1,8,9]]],[8,3,3,9,12,[[265,3,3,9,12]]],[10,6,4,12,16,[[298,6,4,12,16]]],[11,2,2,16,18,[[317,1,1,16,17],[318,1,1,17,18]]],[12,1,1,18,19,[[342,1,1,18,19]]],[13,12,11,19,30,[[372,4,3,19,22],[380,1,1,22,23],[387,1,1,23,24],[391,1,1,24,25],[394,4,4,25,29],[396,1,1,29,30]]],[18,3,3,30,33,[[545,1,1,30,31],[583,1,1,31,32],[614,1,1,32,33]]],[22,3,2,33,35,[[692,2,1,33,34],[739,1,1,34,35]]],[23,6,5,35,40,[[757,1,1,35,36],[785,3,2,36,38],[787,1,1,38,39],[794,1,1,39,40]]],[25,1,1,40,41,[[807,1,1,40,41]]],[30,1,1,41,42,[[888,1,1,41,42]]]],[350,899,1009,2123,4341,4468,4673,5457,6635,7980,7981,7983,9031,9032,9033,9035,9649,9696,10449,11318,11319,11320,11490,11641,11716,11769,11772,11775,11781,11836,14918,15697,16225,17930,18844,19283,19967,19971,20009,20199,20572,22521]]],["+",[9,8,[[6,1,1,0,1,[[215,1,1,0,1]]],[8,1,1,1,2,[[265,1,1,1,2]]],[10,1,1,2,3,[[298,1,1,2,3]]],[13,4,3,3,6,[[372,3,2,3,5],[387,1,1,5,6]]],[18,1,1,6,7,[[545,1,1,6,7]]],[23,1,1,7,8,[[785,1,1,7,8]]]],[6635,7980,9033,11318,11320,11641,14918,19967]]],["away",[6,6,[[1,1,1,0,1,[[71,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[12,1,1,2,3,[[342,1,1,2,3]]],[13,3,3,3,6,[[380,1,1,3,4],[394,2,2,4,6]]]],[2123,9031,10449,11490,11769,11781]]],["captive",[16,16,[[0,2,2,0,2,[[13,1,1,0,1],[33,1,1,1,2]]],[3,1,1,2,3,[[140,1,1,2,3]]],[10,1,1,3,4,[[298,1,1,3,4]]],[11,2,2,4,6,[[317,1,1,4,5],[318,1,1,5,6]]],[13,5,5,6,11,[[372,1,1,6,7],[391,1,1,7,8],[394,2,2,8,10],[396,1,1,10,11]]],[18,1,1,11,12,[[614,1,1,11,12]]],[23,3,3,12,15,[[757,1,1,12,13],[785,2,2,13,15]]],[30,1,1,15,16,[[888,1,1,15,16]]]],[350,1009,4468,9035,9649,9696,11319,11716,11772,11775,11836,16225,19283,19967,19971,22521]]],["captives",[14,12,[[0,1,1,0,1,[[30,1,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]],[8,2,2,2,4,[[265,2,2,2,4]]],[10,3,2,4,6,[[298,3,2,4,6]]],[18,1,1,6,7,[[583,1,1,6,7]]],[22,3,2,7,9,[[692,2,1,7,8],[739,1,1,8,9]]],[23,2,2,9,11,[[787,1,1,9,10],[794,1,1,10,11]]],[25,1,1,11,12,[[807,1,1,11,12]]]],[899,4673,7981,7983,9031,9032,15697,17930,18844,20009,20199,20572]]],["taken",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5457]]],["took",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4341]]]]},{"k":"H7618","v":[["agate",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2312,2676]]]]},{"k":"H7619","v":[["*",[6,5,[[12,6,5,0,5,[[360,1,1,0,1],[361,2,1,1,2],[362,2,2,2,4],[363,1,1,4,5]]]],[10999,11035,11050,11066,11101]]],["Shebuel",[3,3,[[12,3,3,0,3,[[360,1,1,0,1],[362,1,1,1,2],[363,1,1,2,3]]]],[10999,11050,11101]]],["Shubael",[3,2,[[12,3,2,0,2,[[361,2,1,0,1],[362,1,1,1,2]]]],[11035,11066]]]]},{"k":"H7620","v":[["*",[19,16,[[0,2,2,0,2,[[28,2,2,0,2]]],[1,1,1,2,3,[[83,1,1,2,3]]],[2,1,1,3,4,[[101,1,1,3,4]]],[3,1,1,4,5,[[144,1,1,4,5]]],[4,4,3,5,8,[[168,4,3,5,8]]],[13,1,1,8,9,[[374,1,1,8,9]]],[23,1,1,9,10,[[749,1,1,9,10]]],[26,8,6,10,16,[[858,6,4,10,14],[859,2,2,14,16]]]],[822,823,2518,3049,4603,5351,5352,5358,11359,19082,22012,22013,22014,22015,22017,22018]]],["week",[4,3,[[0,2,2,0,2,[[28,2,2,0,2]]],[26,2,1,2,3,[[858,2,1,2,3]]]],[822,823,22015]]],["weeks",[15,13,[[1,1,1,0,1,[[83,1,1,0,1]]],[2,1,1,1,2,[[101,1,1,1,2]]],[3,1,1,2,3,[[144,1,1,2,3]]],[4,4,3,3,6,[[168,4,3,3,6]]],[13,1,1,6,7,[[374,1,1,6,7]]],[23,1,1,7,8,[[749,1,1,7,8]]],[26,6,5,8,13,[[858,4,3,8,11],[859,2,2,11,13]]]],[2518,3049,4603,5351,5352,5358,11359,19082,22012,22013,22014,22017,22018]]]]},{"k":"H7621","v":[["*",[30,29,[[0,2,2,0,2,[[23,1,1,0,1],[25,1,1,1,2]]],[1,1,1,2,3,[[71,1,1,2,3]]],[2,1,1,3,4,[[94,1,1,3,4]]],[3,5,4,4,8,[[121,2,1,4,5],[146,3,3,5,8]]],[4,1,1,8,9,[[159,1,1,8,9]]],[5,3,3,9,12,[[188,2,2,9,11],[195,1,1,11,12]]],[6,1,1,12,13,[[231,1,1,12,13]]],[8,1,1,13,14,[[249,1,1,13,14]]],[9,1,1,14,15,[[287,1,1,14,15]]],[10,1,1,15,16,[[292,1,1,15,16]]],[12,1,1,16,17,[[353,1,1,16,17]]],[13,1,1,17,18,[[381,1,1,17,18]]],[15,2,2,18,20,[[418,1,1,18,19],[422,1,1,19,20]]],[18,1,1,20,21,[[582,1,1,20,21]]],[20,2,2,21,23,[[666,1,1,21,22],[667,1,1,22,23]]],[22,1,1,23,24,[[743,1,1,23,24]]],[23,1,1,24,25,[[755,1,1,24,25]]],[25,1,1,25,26,[[822,1,1,25,26]]],[26,1,1,26,27,[[858,1,1,26,27]]],[34,1,1,27,28,[[905,1,1,27,28]]],[37,1,1,28,29,[[918,1,1,28,29]]]],[599,695,2124,2834,3813,4650,4658,4661,5119,5886,5889,6057,7107,7534,8587,8813,10836,11505,12419,12578,15615,17460,17477,18912,19231,20967,21999,22777,22993]]],["+",[4,4,[[0,1,1,0,1,[[23,1,1,0,1]]],[5,2,2,1,3,[[188,2,2,1,3]]],[15,1,1,3,4,[[418,1,1,3,4]]]],[599,5886,5889,12419]]],["curse",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18912]]],["oath",[23,22,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[2,1,1,2,3,[[94,1,1,2,3]]],[3,5,4,3,7,[[121,2,1,3,4],[146,3,3,4,7]]],[4,1,1,7,8,[[159,1,1,7,8]]],[5,1,1,8,9,[[195,1,1,8,9]]],[6,1,1,9,10,[[231,1,1,9,10]]],[8,1,1,10,11,[[249,1,1,10,11]]],[9,1,1,11,12,[[287,1,1,11,12]]],[10,1,1,12,13,[[292,1,1,12,13]]],[12,1,1,13,14,[[353,1,1,13,14]]],[13,1,1,14,15,[[381,1,1,14,15]]],[15,1,1,15,16,[[422,1,1,15,16]]],[18,1,1,16,17,[[582,1,1,16,17]]],[20,2,2,17,19,[[666,1,1,17,18],[667,1,1,18,19]]],[23,1,1,19,20,[[755,1,1,19,20]]],[26,1,1,20,21,[[858,1,1,20,21]]],[37,1,1,21,22,[[918,1,1,21,22]]]],[695,2124,2834,3813,4650,4658,4661,5119,6057,7107,7534,8587,8813,10836,11505,12578,15615,17460,17477,19231,21999,22993]]],["oaths",[2,2,[[25,1,1,0,1,[[822,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[20967,22777]]]]},{"k":"H7622","v":[["*",[31,26,[[4,1,1,0,1,[[182,1,1,0,1]]],[17,1,1,1,2,[[477,1,1,1,2]]],[18,4,4,2,6,[[491,1,1,2,3],[530,1,1,3,4],[562,1,1,4,5],[603,1,1,5,6]]],[23,12,11,6,17,[[773,1,1,6,7],[774,2,2,7,9],[775,1,1,9,10],[776,1,1,10,11],[777,4,3,11,14],[792,1,1,14,15],[793,2,2,15,17]]],[24,1,1,17,18,[[798,1,1,17,18]]],[25,7,3,18,21,[[817,5,1,18,19],[830,1,1,19,20],[840,1,1,20,21]]],[27,1,1,21,22,[[867,1,1,21,22]]],[28,1,1,22,23,[[878,1,1,22,23]]],[29,1,1,23,24,[[887,1,1,23,24]]],[35,2,2,24,26,[[907,1,1,24,25],[908,1,1,25,26]]]],[5711,13932,14087,14725,15272,16119,19649,19670,19685,19714,19775,19782,19786,19801,20127,20133,20166,20346,20815,21197,21473,22178,22344,22509,22812,22840]]],["+",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20815]]],["captives",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20815]]],["captivity",[29,26,[[4,1,1,0,1,[[182,1,1,0,1]]],[17,1,1,1,2,[[477,1,1,1,2]]],[18,4,4,2,6,[[491,1,1,2,3],[530,1,1,3,4],[562,1,1,4,5],[603,1,1,5,6]]],[23,12,11,6,17,[[773,1,1,6,7],[774,2,2,7,9],[775,1,1,9,10],[776,1,1,10,11],[777,4,3,11,14],[792,1,1,14,15],[793,2,2,15,17]]],[24,1,1,17,18,[[798,1,1,17,18]]],[25,5,3,18,21,[[817,3,1,18,19],[830,1,1,19,20],[840,1,1,20,21]]],[27,1,1,21,22,[[867,1,1,21,22]]],[28,1,1,22,23,[[878,1,1,22,23]]],[29,1,1,23,24,[[887,1,1,23,24]]],[35,2,2,24,26,[[907,1,1,24,25],[908,1,1,25,26]]]],[5711,13932,14087,14725,15272,16119,19649,19670,19685,19714,19775,19782,19786,19801,20127,20133,20166,20346,20815,21197,21473,22178,22344,22509,22812,22840]]]]},{"k":"H7623","v":[["*",[11,11,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,7,7,1,8,[[540,1,1,1,2],[542,1,1,2,3],[566,1,1,3,4],[583,1,1,4,5],[594,1,1,5,6],[622,1,1,6,7],[624,1,1,7,8]]],[19,1,1,8,9,[[656,1,1,8,9]]],[20,2,2,9,11,[[662,1,1,9,10],[666,1,1,10,11]]]],[10855,14842,14867,15335,15698,15868,16324,16363,17235,17383,17473]]],["+",[3,3,[[18,1,1,0,1,[[624,1,1,0,1]]],[20,2,2,1,3,[[662,1,1,1,2],[666,1,1,2,3]]]],[16363,17383,17473]]],["glory",[1,1,[[12,1,1,0,1,[[353,1,1,0,1]]]],[10855]]],["keepeth",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17235]]],["praise",[3,3,[[18,3,3,0,3,[[540,1,1,0,1],[594,1,1,1,2],[622,1,1,2,3]]]],[14842,15868,16324]]],["stillest",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15335]]],["stilleth",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14867]]],["triumph",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15698]]]]},{"k":"H7624","v":[["*",[5,5,[[26,5,5,0,5,[[851,1,1,0,1],[853,2,2,1,3],[854,2,2,3,5]]]],[21781,21871,21874,21878,21897]]],["praise",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21781,21874]]],["praised",[3,3,[[26,3,3,0,3,[[853,1,1,0,1],[854,2,2,1,3]]]],[21871,21878,21897]]]]},{"k":"H7625","v":[["tribes",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12168]]]]},{"k":"H7626","v":[["*",[190,178,[[0,3,3,0,3,[[48,3,3,0,3]]],[1,4,4,3,7,[[70,1,1,3,4],[73,1,1,4,5],[77,1,1,5,6],[88,1,1,6,7]]],[2,1,1,7,8,[[116,1,1,7,8]]],[3,6,6,8,14,[[120,1,1,8,9],[134,1,1,9,10],[140,2,2,10,12],[148,1,1,12,13],[152,1,1,13,14]]],[4,18,17,14,31,[[153,4,3,14,17],[155,1,1,17,18],[157,1,1,18,19],[162,1,1,19,20],[164,2,2,20,22],[168,1,1,22,23],[170,2,2,23,25],[181,4,4,25,29],[183,1,1,29,30],[185,1,1,30,31]]],[5,33,29,31,60,[[187,1,1,31,32],[189,2,1,32,33],[190,5,5,33,38],[193,4,2,38,40],[197,1,1,40,41],[198,2,2,41,43],[199,5,4,43,47],[204,3,3,47,50],[207,1,1,50,51],[208,7,7,51,58],[209,1,1,58,59],[210,1,1,59,60]]],[6,16,14,60,74,[[215,1,1,60,61],[228,4,3,61,64],[230,4,3,64,67],[231,7,7,67,74]]],[8,8,6,74,80,[[237,1,1,74,75],[244,2,1,75,76],[245,4,3,76,79],[250,1,1,79,80]]],[9,10,10,80,90,[[271,1,1,80,81],[273,2,2,81,83],[281,2,2,83,85],[284,1,1,85,86],[285,1,1,86,87],[286,1,1,87,88],[289,1,1,88,89],[290,1,1,89,90]]],[10,11,10,90,100,[[298,1,1,90,91],[301,6,5,91,96],[302,2,2,96,98],[304,1,1,98,99],[308,1,1,99,100]]],[11,2,2,100,102,[[329,1,1,100,101],[333,1,1,101,102]]],[12,12,12,102,114,[[342,3,3,102,105],[348,1,1,105,106],[349,1,1,106,107],[360,1,1,107,108],[363,1,1,108,109],[364,3,3,109,112],[365,1,1,112,113],[366,1,1,113,114]]],[13,4,4,114,118,[[372,1,1,114,115],[377,1,1,115,116],[378,1,1,116,117],[399,1,1,117,118]]],[17,3,3,118,121,[[444,1,1,118,119],[456,1,1,119,120],[472,1,1,120,121]]],[18,13,11,121,132,[[479,1,1,121,122],[500,1,1,122,123],[522,2,1,123,124],[551,1,1,124,125],[555,3,3,125,128],[566,1,1,128,129],[582,1,1,129,130],[599,2,1,130,131],[602,1,1,131,132]]],[19,8,8,132,140,[[637,1,1,132,133],[640,1,1,133,134],[649,2,2,134,136],[650,2,2,136,138],[653,1,1,138,139],[656,1,1,139,140]]],[22,12,12,140,152,[[687,1,1,140,141],[688,3,3,141,144],[689,1,1,144,145],[692,2,2,145,147],[697,1,1,147,148],[706,1,1,148,149],[708,1,1,149,150],[727,1,1,150,151],[741,1,1,151,152]]],[23,2,2,152,154,[[754,1,1,152,153],[795,1,1,153,154]]],[24,1,1,154,155,[[799,1,1,154,155]]],[25,16,16,155,171,[[820,2,2,155,157],[821,1,1,157,158],[822,2,2,158,160],[838,1,1,160,161],[846,1,1,161,162],[848,4,4,162,166],[849,5,5,166,171]]],[27,1,1,171,172,[[866,1,1,171,172]]],[29,2,2,172,174,[[879,2,2,172,174]]],[32,2,2,174,176,[[897,1,1,174,175],[899,1,1,175,176]]],[37,2,2,176,178,[[919,1,1,176,177],[920,1,1,177,178]]]],[1483,1489,1501,2097,2181,2314,2678,3602,3761,4259,4448,4463,4751,4882,4905,4907,4915,4988,5076,5194,5245,5254,5360,5385,5389,5687,5689,5697,5700,5756,5815,5863,5905,5912,5914,5915,5918,5922,5990,5992,6130,6136,6137,6161,6168,6183,6187,6295,6297,6300,6397,6433,6435,6436,6437,6439,6441,6447,6464,6477,6637,6994,7012,7023,7056,7064,7066,7105,7107,7108,7110,7117,7119,7126,7268,7412,7437,7438,7439,7577,8133,8187,8194,8391,8399,8492,8520,8568,8674,8694,9001,9121,9139,9140,9143,9144,9171,9172,9239,9372,10001,10126,10446,10451,10454,10696,10757,10997,11109,11125,11129,11131,11144,11170,11287,11430,11450,11915,13085,13364,13782,13954,14239,14603,15050,15168,15180,15181,15358,15643,16093,16113,16669,16771,17023,17030,17057,17058,17144,17239,17833,17855,17865,17874,17888,17933,17957,18017,18191,18248,18642,18883,19217,20231,20355,20892,20895,20932,20954,20957,21416,21638,21692,21700,21701,21702,21703,21721,21725,21731,21733,22161,22369,22372,22634,22678,23000,23027]]],["+",[6,5,[[5,4,3,0,3,[[189,2,1,0,1],[190,2,2,1,3]]],[6,1,1,3,4,[[231,1,1,3,4]]],[17,1,1,4,5,[[444,1,1,4,5]]]],[5905,5912,5914,7110,13085]]],["Sceptre",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4463]]],["correction",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13782]]],["darts",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8492]]],["pen",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6637]]],["rod",[33,33,[[1,1,1,0,1,[[70,1,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]],[9,1,1,2,3,[[273,1,1,2,3]]],[17,1,1,3,4,[[456,1,1,3,4]]],[18,5,5,4,9,[[479,1,1,4,5],[500,1,1,5,6],[551,1,1,6,7],[566,1,1,7,8],[602,1,1,8,9]]],[19,8,8,9,17,[[637,1,1,9,10],[640,1,1,10,11],[649,2,2,11,13],[650,2,2,13,15],[653,1,1,15,16],[656,1,1,16,17]]],[22,8,8,17,25,[[687,1,1,17,18],[688,3,3,18,21],[689,1,1,21,22],[692,1,1,22,23],[706,1,1,23,24],[708,1,1,24,25]]],[23,2,2,25,27,[[754,1,1,25,26],[795,1,1,26,27]]],[24,1,1,27,28,[[799,1,1,27,28]]],[25,3,3,28,31,[[821,1,1,28,29],[822,2,2,29,31]]],[32,2,2,31,33,[[897,1,1,31,32],[899,1,1,32,33]]]],[2097,3602,8194,13364,13954,14239,15050,15358,16113,16669,16771,17023,17030,17057,17058,17144,17239,17833,17855,17865,17874,17888,17957,18191,18248,19217,20231,20355,20932,20954,20957,22634,22678]]],["sceptre",[8,7,[[0,1,1,0,1,[[48,1,1,0,1]]],[18,2,1,1,2,[[522,2,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]],[25,1,1,3,4,[[820,1,1,3,4]]],[29,2,2,4,6,[[879,2,2,4,6]]],[37,1,1,6,7,[[920,1,1,6,7]]]],[1483,14603,17933,20895,22369,22372,23027]]],["sceptres",[1,1,[[25,1,1,0,1,[[820,1,1,0,1]]]],[20892]]],["staff",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8674,10696]]],["tribe",[54,54,[[3,3,3,0,3,[[120,1,1,0,1],[134,1,1,1,2],[148,1,1,2,3]]],[4,6,6,3,9,[[153,1,1,3,4],[155,1,1,4,5],[162,1,1,5,6],[170,1,1,6,7],[181,2,2,7,9]]],[5,18,18,9,27,[[187,1,1,9,10],[190,1,1,10,11],[193,2,2,11,13],[198,1,1,13,14],[199,4,4,14,18],[204,2,2,18,20],[208,7,7,20,27]]],[6,8,8,27,35,[[228,3,3,27,30],[230,1,1,30,31],[231,4,4,31,35]]],[8,3,3,35,38,[[244,1,1,35,36],[245,2,2,36,38]]],[10,5,5,38,43,[[301,3,3,38,41],[302,2,2,41,43]]],[11,1,1,43,44,[[329,1,1,43,44]]],[12,7,7,44,51,[[342,3,3,44,47],[349,1,1,47,48],[360,1,1,48,49],[363,1,1,49,50],[364,1,1,50,51]]],[18,2,2,51,53,[[555,2,2,51,53]]],[25,1,1,53,54,[[848,1,1,53,54]]]],[3761,4259,4751,4915,4988,5194,5385,5687,5697,5863,5922,5990,5992,6136,6161,6168,6183,6187,6297,6300,6433,6435,6436,6437,6439,6441,6447,6994,7012,7023,7066,7105,7108,7119,7126,7412,7438,7439,9121,9140,9144,9171,9172,10001,10446,10451,10454,10757,10997,11109,11129,15180,15181,21702]]],["tribes",[82,80,[[0,2,2,0,2,[[48,2,2,0,2]]],[1,3,3,2,5,[[73,1,1,2,3],[77,1,1,3,4],[88,1,1,4,5]]],[3,2,2,5,7,[[140,1,1,5,6],[152,1,1,6,7]]],[4,12,11,7,18,[[153,3,2,7,9],[157,1,1,9,10],[164,2,2,10,12],[168,1,1,12,13],[170,1,1,13,14],[181,2,2,14,16],[183,1,1,16,17],[185,1,1,17,18]]],[5,11,11,18,29,[[190,2,2,18,20],[193,2,2,20,22],[197,1,1,22,23],[198,1,1,23,24],[199,1,1,24,25],[204,1,1,25,26],[207,1,1,26,27],[209,1,1,27,28],[210,1,1,28,29]]],[6,6,6,29,35,[[228,1,1,29,30],[230,3,3,30,33],[231,2,2,33,35]]],[8,5,5,35,40,[[237,1,1,35,36],[244,1,1,36,37],[245,2,2,37,39],[250,1,1,39,40]]],[9,7,7,40,47,[[271,1,1,40,41],[273,1,1,41,42],[281,2,2,42,44],[285,1,1,44,45],[286,1,1,45,46],[290,1,1,46,47]]],[10,6,6,47,53,[[298,1,1,47,48],[301,3,3,48,51],[304,1,1,51,52],[308,1,1,52,53]]],[11,1,1,53,54,[[333,1,1,53,54]]],[12,4,4,54,58,[[364,2,2,54,56],[365,1,1,56,57],[366,1,1,57,58]]],[13,4,4,58,62,[[372,1,1,58,59],[377,1,1,59,60],[378,1,1,60,61],[399,1,1,61,62]]],[18,4,3,62,65,[[555,1,1,62,63],[582,1,1,63,64],[599,2,1,64,65]]],[22,3,3,65,68,[[697,1,1,65,66],[727,1,1,66,67],[741,1,1,67,68]]],[25,10,10,68,78,[[838,1,1,68,69],[846,1,1,69,70],[848,3,3,70,73],[849,5,5,73,78]]],[27,1,1,78,79,[[866,1,1,78,79]]],[37,1,1,79,80,[[919,1,1,79,80]]]],[1489,1501,2181,2314,2678,4448,4882,4905,4907,5076,5245,5254,5360,5389,5689,5700,5756,5815,5915,5918,5990,5992,6130,6137,6161,6295,6397,6464,6477,6994,7056,7064,7066,7107,7117,7268,7412,7437,7438,7577,8133,8187,8391,8399,8520,8568,8694,9001,9139,9140,9143,9239,9372,10126,11125,11131,11144,11170,11287,11430,11450,11915,15168,15643,16093,18017,18642,18883,21416,21638,21692,21700,21701,21703,21721,21725,21731,21733,22161,23000]]]]},{"k":"H7627","v":[["Sebat",[1,1,[[37,1,1,0,1,[[911,1,1,0,1]]]],[22885]]]]},{"k":"H7628","v":[["*",[50,48,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,5,5,1,6,[[137,2,2,1,3],[147,3,3,3,6]]],[4,3,3,6,9,[[173,2,2,6,8],[180,1,1,8,9]]],[6,1,1,9,10,[[215,1,1,9,10]]],[13,4,4,10,14,[[372,2,2,10,12],[394,1,1,12,13],[395,1,1,13,14]]],[14,4,4,14,18,[[404,1,1,14,15],[405,1,1,15,16],[410,1,1,16,17],[411,1,1,17,18]]],[15,4,4,18,22,[[413,2,2,18,20],[419,1,1,20,21],[420,1,1,21,22]]],[18,2,2,22,24,[[545,1,1,22,23],[555,1,1,23,24]]],[22,5,5,24,29,[[698,1,1,24,25],[724,1,1,25,26],[727,2,2,26,28],[730,1,1,28,29]]],[23,10,8,29,37,[[759,2,1,29,30],[764,1,1,30,31],[766,1,1,31,32],[774,2,2,32,34],[787,2,1,34,35],[790,1,1,35,36],[792,1,1,36,37]]],[24,2,2,37,39,[[797,2,2,37,39]]],[25,3,3,39,42,[[813,1,1,39,40],[831,2,2,40,42]]],[26,2,2,42,44,[[860,2,2,42,44]]],[29,2,2,44,46,[[882,1,1,44,45],[887,1,1,45,46]]],[33,1,1,46,47,[[902,1,1,46,47]]],[34,1,1,47,48,[[903,1,1,47,48]]]],[1845,4341,4369,4676,4683,4690,5457,5460,5652,6635,11319,11320,11781,11800,12028,12105,12236,12244,12298,12299,12426,12510,14918,15174,18033,18588,18660,18661,18698,19317,19428,19476,19677,19683,20008,20072,20126,20315,20328,20691,21221,21222,22044,22069,22420,22499,22722,22740]]],["+",[7,7,[[6,1,1,0,1,[[215,1,1,0,1]]],[14,3,3,1,4,[[404,1,1,1,2],[405,1,1,2,3],[410,1,1,3,4]]],[15,1,1,4,5,[[419,1,1,4,5]]],[18,1,1,5,6,[[545,1,1,5,6]]],[29,1,1,6,7,[[882,1,1,6,7]]]],[6635,12028,12105,12236,12426,14918,22420]]],["captive",[4,4,[[1,1,1,0,1,[[61,1,1,0,1]]],[4,1,1,1,2,[[173,1,1,1,2]]],[22,2,2,2,4,[[727,1,1,2,3],[730,1,1,3,4]]]],[1845,5457,18660,18698]]],["captives",[6,6,[[3,2,2,0,2,[[147,2,2,0,2]]],[13,1,1,2,3,[[394,1,1,2,3]]],[22,1,1,3,4,[[727,1,1,3,4]]],[23,1,1,4,5,[[792,1,1,4,5]]],[26,1,1,5,6,[[860,1,1,5,6]]]],[4676,4683,11781,18661,20126,22044]]],["captivity",[30,28,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,2,2,1,3,[[173,1,1,1,2],[180,1,1,2,3]]],[13,3,3,3,6,[[372,2,2,3,5],[395,1,1,5,6]]],[14,1,1,6,7,[[411,1,1,6,7]]],[15,3,3,7,10,[[413,2,2,7,9],[420,1,1,9,10]]],[18,1,1,10,11,[[555,1,1,10,11]]],[22,1,1,11,12,[[724,1,1,11,12]]],[23,9,7,12,19,[[759,2,1,12,13],[764,1,1,13,14],[766,1,1,14,15],[774,2,2,15,17],[787,2,1,17,18],[790,1,1,18,19]]],[24,2,2,19,21,[[797,2,2,19,21]]],[25,3,3,21,24,[[813,1,1,21,22],[831,2,2,22,24]]],[26,1,1,24,25,[[860,1,1,24,25]]],[29,1,1,25,26,[[887,1,1,25,26]]],[33,1,1,26,27,[[902,1,1,26,27]]],[34,1,1,27,28,[[903,1,1,27,28]]]],[4369,5460,5652,11319,11320,11800,12244,12298,12299,12510,15174,18588,19317,19428,19476,19677,19683,20008,20072,20315,20328,20691,21221,21222,22069,22499,22722,22740]]],["prisoners",[2,2,[[3,1,1,0,1,[[137,1,1,0,1]]],[22,1,1,1,2,[[698,1,1,1,2]]]],[4341,18033]]],["taken",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4690]]]]},{"k":"H7629","v":[["Shobi",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8476]]]]},{"k":"H7630","v":[["Shobai",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12069,12465]]]]},{"k":"H7631","v":[["flame",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[856,1,1,1,2]]]],[21829,21942]]]]},{"k":"H7632","v":[["spark",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13281]]]]},{"k":"H7633","v":[["*",[9,9,[[4,2,2,0,2,[[173,1,1,0,1],[184,1,1,1,2]]],[13,5,5,2,7,[[394,5,5,2,7]]],[15,1,1,7,8,[[416,1,1,7,8]]],[23,1,1,8,9,[[792,1,1,8,9]]]],[5458,5800,11769,11775,11777,11778,11779,12363,20126]]],["captives",[8,8,[[4,2,2,0,2,[[173,1,1,0,1],[184,1,1,1,2]]],[13,5,5,2,7,[[394,5,5,2,7]]],[23,1,1,7,8,[[792,1,1,7,8]]]],[5458,5800,11769,11775,11777,11778,11779,20126]]],["captivity",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12363]]]]},{"k":"H7634","v":[["Shachia",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10585]]]]},{"k":"H7635","v":[["*",[2,2,[[18,1,1,0,1,[[554,1,1,0,1]]],[23,1,1,1,2,[[762,1,1,1,2]]]],[15112,19399]]],["path",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15112]]],["paths",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19399]]]]},{"k":"H7636","v":[["cauls",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17725]]]]},{"k":"H7637","v":[["*",[98,94,[[0,4,3,0,3,[[1,3,2,0,2],[7,1,1,2,3]]],[1,17,17,3,20,[[61,2,2,3,5],[62,1,1,5,6],[65,4,4,6,10],[69,2,2,10,12],[70,1,1,12,13],[72,2,2,13,15],[73,1,1,15,16],[80,2,2,16,18],[83,1,1,18,19],[84,1,1,19,20]]],[2,20,20,20,40,[[102,6,6,20,26],[103,2,2,26,28],[105,1,1,28,29],[112,8,8,29,37],[114,3,3,37,40]]],[3,13,11,40,51,[[122,1,1,40,41],[123,1,1,41,42],[135,4,2,42,44],[144,1,1,44,45],[145,4,4,45,49],[147,2,2,49,51]]],[4,3,3,51,54,[[157,1,1,51,52],[167,1,1,52,53],[168,1,1,53,54]]],[5,4,4,54,58,[[192,3,3,54,57],[205,1,1,57,58]]],[6,3,3,58,61,[[224,3,3,58,61]]],[9,1,1,61,62,[[278,1,1,61,62]]],[10,3,3,62,65,[[298,1,1,62,63],[308,1,1,63,64],[310,1,1,64,65]]],[11,3,3,65,68,[[323,1,1,65,66],[330,1,1,66,67],[337,1,1,67,68]]],[12,8,7,68,75,[[339,1,1,68,69],[349,1,1,69,70],[361,1,1,70,71],[362,1,1,71,72],[363,2,2,72,74],[364,2,1,74,75]]],[13,4,4,75,79,[[371,1,1,75,76],[373,1,1,76,77],[389,1,1,77,78],[397,1,1,78,79]]],[14,3,3,79,82,[[405,2,2,79,81],[409,1,1,81,82]]],[15,4,4,82,86,[[419,1,1,82,83],[420,2,2,83,85],[422,1,1,85,86]]],[16,1,1,86,87,[[426,1,1,86,87]]],[23,2,2,87,89,[[772,1,1,87,88],[785,1,1,88,89]]],[25,2,2,89,91,[[821,1,1,89,90],[846,1,1,90,91]]],[36,1,1,91,92,[[910,1,1,91,92]]],[37,2,2,92,94,[[917,1,1,92,93],[918,1,1,93,94]]]],[32,33,187,1831,1832,1873,1973,1974,1976,1977,2061,2062,2079,2155,2156,2193,2435,2437,2517,2533,3057,3058,3079,3084,3086,3103,3120,3150,3230,3405,3410,3418,3426,3429,3436,3441,3443,3473,3478,3489,3832,3898,4301,4308,4602,4609,4615,4620,4640,4683,4688,5067,5331,5350,5953,5964,5965,6361,6924,6926,6927,8304,8987,9385,9437,9833,10033,10247,10321,10731,11025,11060,11080,11082,11119,11271,11334,11657,11861,12098,12103,12181,12493,12495,12507,12580,12712,19635,19958,20896,21655,22856,22967,22995]]],["seventh",[97,93,[[0,4,3,0,3,[[1,3,2,0,2],[7,1,1,2,3]]],[1,17,17,3,20,[[61,2,2,3,5],[62,1,1,5,6],[65,4,4,6,10],[69,2,2,10,12],[70,1,1,12,13],[72,2,2,13,15],[73,1,1,15,16],[80,2,2,16,18],[83,1,1,18,19],[84,1,1,19,20]]],[2,20,20,20,40,[[102,6,6,20,26],[103,2,2,26,28],[105,1,1,28,29],[112,8,8,29,37],[114,3,3,37,40]]],[3,13,11,40,51,[[122,1,1,40,41],[123,1,1,41,42],[135,4,2,42,44],[144,1,1,44,45],[145,4,4,45,49],[147,2,2,49,51]]],[4,3,3,51,54,[[157,1,1,51,52],[167,1,1,52,53],[168,1,1,53,54]]],[5,4,4,54,58,[[192,3,3,54,57],[205,1,1,57,58]]],[6,3,3,58,61,[[224,3,3,58,61]]],[9,1,1,61,62,[[278,1,1,61,62]]],[10,2,2,62,64,[[298,1,1,62,63],[310,1,1,63,64]]],[11,3,3,64,67,[[323,1,1,64,65],[330,1,1,65,66],[337,1,1,66,67]]],[12,8,7,67,74,[[339,1,1,67,68],[349,1,1,68,69],[361,1,1,69,70],[362,1,1,70,71],[363,2,2,71,73],[364,2,1,73,74]]],[13,4,4,74,78,[[371,1,1,74,75],[373,1,1,75,76],[389,1,1,76,77],[397,1,1,77,78]]],[14,3,3,78,81,[[405,2,2,78,80],[409,1,1,80,81]]],[15,4,4,81,85,[[419,1,1,81,82],[420,2,2,82,84],[422,1,1,84,85]]],[16,1,1,85,86,[[426,1,1,85,86]]],[23,2,2,86,88,[[772,1,1,86,87],[785,1,1,87,88]]],[25,2,2,88,90,[[821,1,1,88,89],[846,1,1,89,90]]],[36,1,1,90,91,[[910,1,1,90,91]]],[37,2,2,91,93,[[917,1,1,91,92],[918,1,1,92,93]]]],[32,33,187,1831,1832,1873,1973,1974,1976,1977,2061,2062,2079,2155,2156,2193,2435,2437,2517,2533,3057,3058,3079,3084,3086,3103,3120,3150,3230,3405,3410,3418,3426,3429,3436,3441,3443,3473,3478,3489,3832,3898,4301,4308,4602,4609,4615,4620,4640,4683,4688,5067,5331,5350,5953,5964,5965,6361,6924,6926,6927,8304,8987,9437,9833,10033,10247,10321,10731,11025,11060,11080,11082,11119,11271,11334,11657,11861,12098,12103,12181,12493,12495,12507,12580,12712,19635,19958,20896,21655,22856,22967,22995]]],["time",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9385]]]]},{"k":"H7638","v":[["nets",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8951]]]]},{"k":"H7639","v":[["*",[15,12,[[10,6,5,0,5,[[297,6,5,0,5]]],[11,3,2,5,7,[[313,1,1,5,6],[337,2,1,6,7]]],[13,3,2,7,9,[[370,3,2,7,9]]],[17,1,1,9,10,[[453,1,1,9,10]]],[23,2,2,10,12,[[796,2,2,10,12]]]],[8951,8952,8954,8975,8976,9535,10239,11258,11259,13284,20298,20299]]],["checker",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8951]]],["lattice",[1,1,[[11,1,1,0,1,[[313,1,1,0,1]]]],[9535]]],["network",[5,5,[[10,3,3,0,3,[[297,3,3,0,3]]],[23,2,2,3,5,[[796,2,2,3,5]]]],[8952,8954,8976,20298,20299]]],["networks",[2,2,[[10,2,2,0,2,[[297,2,2,0,2]]]],[8975,8976]]],["snare",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13284]]],["work",[2,1,[[11,2,1,0,1,[[337,2,1,0,1]]]],[10239]]],["wreath",[1,1,[[13,1,1,0,1,[[370,1,1,0,1]]]],[11259]]],["wreaths",[2,2,[[13,2,2,0,2,[[370,2,2,0,2]]]],[11258,11259]]]]},{"k":"H7640","v":[["leg",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18601]]]]},{"k":"H7641","v":[["*",[19,16,[[0,10,8,0,8,[[40,10,8,0,8]]],[6,1,1,8,9,[[222,1,1,8,9]]],[7,1,1,9,10,[[233,1,1,9,10]]],[17,1,1,10,11,[[459,1,1,10,11]]],[18,2,2,11,13,[[546,2,2,11,13]]],[22,3,2,13,15,[[695,2,1,13,14],[705,1,1,14,15]]],[37,1,1,15,16,[[914,1,1,15,16]]]],[1200,1201,1202,1217,1218,1219,1221,1222,6875,7151,13460,14937,14950,17988,18163,22934]]],["+",[2,2,[[18,1,1,0,1,[[546,1,1,0,1]]],[22,1,1,1,2,[[705,1,1,1,2]]]],[14950,18163]]],["Shibboleth",[1,1,[[6,1,1,0,1,[[222,1,1,0,1]]]],[6875]]],["branches",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22934]]],["corn",[3,3,[[0,1,1,0,1,[[40,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]],[17,1,1,2,3,[[459,1,1,2,3]]]],[1200,7151,13460]]],["ears",[11,8,[[0,9,7,0,7,[[40,9,7,0,7]]],[22,2,1,7,8,[[695,2,1,7,8]]]],[1201,1202,1217,1218,1219,1221,1222,17988]]],["floods",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14937]]]]},{"k":"H7642","v":[["snail",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14787]]]]},{"k":"H7643","v":[["*",[6,6,[[3,2,2,0,2,[[148,2,2,0,2]]],[5,1,1,2,3,[[199,1,1,2,3]]],[22,2,2,3,5,[[694,2,2,3,5]]],[23,1,1,5,6,[[792,1,1,5,6]]]],[4721,4756,6173,17977,17978,20112]]],["Shebam",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4721]]],["Shibmah",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4756]]],["Sibmah",[4,4,[[5,1,1,0,1,[[199,1,1,0,1]]],[22,2,2,1,3,[[694,2,2,1,3]]],[23,1,1,3,4,[[792,1,1,3,4]]]],[6173,17977,17978,20112]]]]},{"k":"H7644","v":[["Shebna",[9,9,[[11,4,4,0,4,[[330,3,3,0,3],[331,1,1,3,4]]],[22,5,5,4,9,[[700,1,1,4,5],[714,3,3,5,8],[715,1,1,8,9]]]],[10042,10050,10061,10063,18067,18333,18341,18352,18354]]]]},{"k":"H7645","v":[["Shebaniah",[7,7,[[12,1,1,0,1,[[352,1,1,0,1]]],[15,6,6,1,7,[[421,2,2,1,3],[422,3,3,3,6],[424,1,1,6,7]]]],[10815,12515,12516,12553,12559,12561,12638]]]]},{"k":"H7646","v":[["*",[98,94,[[1,2,2,0,2,[[65,2,2,0,2]]],[2,1,1,2,3,[[115,1,1,2,3]]],[4,7,7,3,10,[[158,1,1,3,4],[160,2,2,4,6],[163,1,1,6,7],[166,1,1,7,8],[178,1,1,8,9],[183,1,1,9,10]]],[7,1,1,10,11,[[233,1,1,10,11]]],[12,1,1,11,12,[[360,1,1,11,12]]],[13,2,2,12,14,[[390,1,1,12,13],[397,1,1,13,14]]],[15,1,1,14,15,[[421,1,1,14,15]]],[17,6,6,15,21,[[442,1,1,15,16],[444,1,1,16,17],[454,1,1,17,18],[462,1,1,18,19],[466,1,1,19,20],[473,1,1,20,21]]],[18,23,23,21,44,[[494,2,2,21,23],[499,1,1,23,24],[514,1,1,24,25],[536,1,1,25,26],[540,1,1,26,27],[542,1,1,27,28],[555,1,1,28,29],[558,1,1,29,30],[565,1,1,30,31],[567,1,1,31,32],[568,1,1,32,33],[580,1,1,33,34],[581,3,3,34,37],[582,1,1,37,38],[584,1,1,38,39],[600,2,2,39,41],[609,1,1,41,42],[622,1,1,42,43],[624,1,1,43,44]]],[19,18,15,44,59,[[628,1,1,44,45],[632,1,1,45,46],[639,2,2,46,48],[641,1,1,48,49],[645,2,1,49,50],[647,1,1,50,51],[652,2,2,51,53],[654,2,1,53,54],[655,2,1,54,55],[657,4,4,55,59]]],[20,4,4,59,63,[[659,1,1,59,60],[662,1,1,60,61],[663,1,1,61,62],[664,1,1,62,63]]],[22,7,7,63,70,[[679,1,1,63,64],[687,1,1,64,65],[722,1,1,65,66],[731,1,1,66,67],[736,2,2,67,69],[744,1,1,69,70]]],[23,6,6,70,76,[[749,1,1,70,71],[775,1,1,71,72],[788,1,1,72,73],[790,1,1,73,74],[794,2,2,74,76]]],[24,3,3,76,79,[[799,2,2,76,78],[801,1,1,78,79]]],[25,6,6,79,85,[[808,1,1,79,80],[817,2,2,80,82],[828,1,1,82,83],[833,1,1,83,84],[840,1,1,84,85]]],[27,3,2,85,87,[[865,1,1,85,86],[874,2,1,86,87]]],[28,2,2,87,89,[[877,2,2,87,89]]],[29,1,1,89,90,[[882,1,1,89,90]]],[32,1,1,90,91,[[898,1,1,90,91]]],[34,2,2,91,93,[[904,2,2,91,93]]],[36,1,1,93,94,[[909,1,1,93,94]]]],[1955,1959,3550,5097,5147,5149,5223,5319,5578,5748,7163,10984,11692,11864,12536,13012,13069,13319,13495,13619,13820,14117,14118,14230,14469,14805,14844,14864,15142,15233,15311,15392,15411,15554,15584,15587,15599,15646,15708,16101,16102,16166,16336,16365,16431,16527,16730,16733,16786,16921,16967,17129,17130,17189,17215,17260,17266,17267,17273,17323,17389,17407,17420,17665,17849,18549,18722,18796,18797,18933,19065,19705,20027,20055,20176,20185,20369,20384,20448,20596,20790,20791,21154,21252,21468,22143,22272,22330,22337,22418,22662,22753,22764,22846]]],["+",[3,3,[[23,2,2,0,2,[[749,1,1,0,1],[775,1,1,1,2]]],[36,1,1,2,3,[[909,1,1,2,3]]]],[19065,19705,22846]]],["enough",[3,3,[[13,1,1,0,1,[[397,1,1,0,1]]],[19,1,1,1,2,[[655,1,1,1,2]]],[27,1,1,2,3,[[865,1,1,2,3]]]],[11864,17215,22143]]],["fill",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21252]]],["filled",[20,19,[[1,1,1,0,1,[[65,1,1,0,1]]],[4,1,1,1,2,[[178,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[18,4,4,3,7,[[555,1,1,3,4],[581,1,1,4,5],[600,2,2,5,7]]],[19,7,7,7,14,[[628,1,1,7,8],[632,1,1,8,9],[641,1,1,9,10],[645,1,1,10,11],[652,1,1,11,12],[657,2,2,12,14]]],[20,1,1,14,15,[[664,1,1,14,15]]],[24,1,1,15,16,[[799,1,1,15,16]]],[25,1,1,16,17,[[840,1,1,16,17]]],[27,2,1,17,18,[[874,2,1,17,18]]],[34,1,1,18,19,[[904,1,1,18,19]]]],[1959,5578,12536,15142,15599,16101,16102,16431,16527,16786,16921,17129,17267,17273,17420,20369,21468,22272,22764]]],["filledst",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21154]]],["filleth",[2,2,[[17,1,1,0,1,[[444,1,1,0,1]]],[18,1,1,1,2,[[624,1,1,1,2]]]],[13069,16365]]],["full",[15,15,[[1,1,1,0,1,[[65,1,1,0,1]]],[4,4,4,1,5,[[158,1,1,1,2],[160,2,2,2,4],[163,1,1,4,5]]],[12,1,1,5,6,[[360,1,1,5,6]]],[13,1,1,6,7,[[390,1,1,6,7]]],[17,1,1,7,8,[[442,1,1,7,8]]],[18,3,3,8,11,[[494,1,1,8,9],[565,1,1,9,10],[581,1,1,10,11]]],[19,2,2,11,13,[[654,1,1,11,12],[657,1,1,12,13]]],[22,1,1,13,14,[[679,1,1,13,14]]],[24,1,1,14,15,[[799,1,1,14,15]]]],[1955,5097,5147,5149,5223,10984,11692,13012,14117,15311,15587,17189,17260,17665,20384]]],["plenty",[2,2,[[19,1,1,0,1,[[655,1,1,0,1]]],[23,1,1,1,2,[[788,1,1,1,2]]]],[17215,20027]]],["satiate",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20055]]],["satisfied",[37,37,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[17,3,3,2,5,[[454,1,1,2,3],[462,1,1,3,4],[466,1,1,4,5]]],[18,9,9,5,14,[[494,1,1,5,6],[499,1,1,6,7],[514,1,1,7,8],[536,1,1,8,9],[540,1,1,9,10],[542,1,1,10,11],[558,1,1,11,12],[581,1,1,12,13],[582,1,1,13,14]]],[19,6,6,14,20,[[639,2,2,14,16],[645,1,1,16,17],[647,1,1,17,18],[654,1,1,18,19],[657,1,1,19,20]]],[20,3,3,20,23,[[659,1,1,20,21],[662,1,1,21,22],[663,1,1,22,23]]],[22,4,4,23,27,[[687,1,1,23,24],[722,1,1,24,25],[731,1,1,25,26],[744,1,1,26,27]]],[23,2,2,27,29,[[794,2,2,27,29]]],[24,1,1,29,30,[[801,1,1,29,30]]],[25,2,2,30,32,[[817,2,2,30,32]]],[28,2,2,32,34,[[877,2,2,32,34]]],[29,1,1,34,35,[[882,1,1,34,35]]],[32,1,1,35,36,[[898,1,1,35,36]]],[34,1,1,36,37,[[904,1,1,36,37]]]],[3550,5319,13319,13495,13619,14118,14230,14469,14805,14844,14864,15233,15584,15646,16730,16733,16921,16967,17189,17266,17323,17389,17407,17849,18549,18722,18933,20176,20185,20448,20790,20791,22330,22337,22418,22662,22753]]],["satisfiest",[1,1,[[18,1,1,0,1,[[622,1,1,0,1]]]],[16336]]],["satisfieth",[2,2,[[18,2,2,0,2,[[580,1,1,0,1],[584,1,1,1,2]]]],[15554,15708]]],["satisfy",[7,7,[[17,1,1,0,1,[[473,1,1,0,1]]],[18,3,3,1,4,[[567,1,1,1,2],[568,1,1,2,3],[609,1,1,3,4]]],[22,2,2,4,6,[[736,2,2,4,6]]],[25,1,1,6,7,[[808,1,1,6,7]]]],[13820,15392,15411,16166,18796,18797,20596]]],["sufficed",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7163]]],["themselves",[1,1,[[4,1,1,0,1,[[183,1,1,0,1]]]],[5748]]],["weary",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17130]]]]},{"k":"H7647","v":[["*",[8,8,[[0,6,6,0,6,[[40,6,6,0,6]]],[19,1,1,6,7,[[630,1,1,6,7]]],[20,1,1,7,8,[[663,1,1,7,8]]]],[1224,1225,1226,1229,1242,1248,16465,17409]]],["abundance",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17409]]],["plenteous",[2,2,[[0,2,2,0,2,[[40,2,2,0,2]]]],[1229,1242]]],["plenteousness",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1248]]],["plenty",[4,4,[[0,3,3,0,3,[[40,3,3,0,3]]],[19,1,1,3,4,[[630,1,1,3,4]]]],[1224,1225,1226,16465]]]]},{"k":"H7648","v":[["*",[8,8,[[1,1,1,0,1,[[65,1,1,0,1]]],[2,2,2,1,3,[[114,1,1,1,2],[115,1,1,2,3]]],[4,1,1,3,4,[[175,1,1,3,4]]],[7,1,1,4,5,[[233,1,1,4,5]]],[18,2,2,5,7,[[493,1,1,5,6],[555,1,1,6,7]]],[19,1,1,7,8,[[640,1,1,7,8]]]],[1950,3488,3529,5524,7167,14103,15138,16772]]],["+",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7167]]],["fill",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[4,1,1,1,2,[[175,1,1,1,2]]]],[3488,5524]]],["full",[3,3,[[1,1,1,0,1,[[65,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[18,1,1,2,3,[[555,1,1,2,3]]]],[1950,3529,15138]]],["fulness",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14103]]],["satisfying",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16772]]]]},{"k":"H7649","v":[["*",[10,10,[[0,2,2,0,2,[[24,1,1,0,1],[34,1,1,1,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[12,1,1,4,5,[[366,1,1,4,5]]],[17,3,3,5,8,[[445,1,1,5,6],[449,1,1,6,7],[477,1,1,7,8]]],[19,2,2,8,10,[[646,1,1,8,9],[654,1,1,9,10]]]],[666,1040,5833,7245,11192,13101,13182,13939,16948,17176]]],["full",[8,8,[[0,2,2,0,2,[[24,1,1,0,1],[34,1,1,1,2]]],[8,1,1,2,3,[[237,1,1,2,3]]],[12,1,1,3,4,[[366,1,1,3,4]]],[17,3,3,4,7,[[445,1,1,4,5],[449,1,1,5,6],[477,1,1,6,7]]],[19,1,1,7,8,[[654,1,1,7,8]]]],[666,1040,7245,11192,13101,13182,13939,17176]]],["satisfied",[2,2,[[4,1,1,0,1,[[185,1,1,0,1]]],[19,1,1,1,2,[[646,1,1,1,2]]]],[5833,16948]]]]},{"k":"H7650","v":[["*",[186,175,[[0,19,17,0,17,[[20,3,3,0,3],[21,1,1,3,4],[23,4,4,4,8],[24,2,1,8,9],[25,2,2,9,11],[30,1,1,11,12],[46,2,1,12,13],[49,4,4,13,17]]],[1,6,5,17,22,[[62,4,3,17,20],[81,1,1,20,21],[82,1,1,21,22]]],[2,4,4,22,26,[[94,1,1,22,23],[95,2,2,23,25],[108,1,1,25,26]]],[3,8,8,26,34,[[121,2,2,26,28],[127,1,1,28,29],[130,2,2,29,31],[146,1,1,31,32],[148,2,2,32,34]]],[4,33,33,34,67,[[153,3,3,34,37],[154,1,1,37,38],[156,2,2,38,40],[158,4,4,40,44],[159,3,3,44,47],[160,2,2,47,49],[161,1,1,49,50],[162,2,2,50,52],[163,2,2,52,54],[165,1,1,54,55],[171,1,1,55,56],[178,2,2,56,58],[180,2,2,58,60],[181,1,1,60,61],[182,1,1,61,62],[183,4,4,62,66],[186,1,1,66,67]]],[5,16,15,67,82,[[187,1,1,67,68],[188,3,3,68,71],[191,2,1,71,72],[192,2,2,72,74],[195,4,4,74,78],[200,1,1,78,79],[207,2,2,79,81],[209,1,1,81,82]]],[6,6,6,82,88,[[212,2,2,82,84],[225,1,1,84,85],[231,3,3,85,88]]],[8,12,11,88,99,[[238,1,1,88,89],[249,3,2,89,91],[254,1,1,91,92],[255,3,3,92,95],[259,2,2,95,97],[263,1,1,97,98],[265,1,1,98,99]]],[9,6,6,99,105,[[269,2,2,99,101],[285,2,2,101,103],[287,2,2,103,105]]],[10,10,10,105,115,[[291,5,5,105,110],[292,3,3,110,113],[308,1,1,113,114],[312,1,1,114,115]]],[11,2,2,115,117,[[323,1,1,115,116],[337,1,1,116,117]]],[13,4,4,117,121,[[381,2,2,117,119],[384,1,1,119,120],[402,1,1,120,121]]],[14,2,1,121,122,[[412,2,1,121,122]]],[15,2,2,122,124,[[417,1,1,122,123],[425,1,1,123,124]]],[18,12,12,124,136,[[492,1,1,124,125],[501,1,1,125,126],[540,1,1,126,127],[566,3,3,127,130],[572,1,1,130,131],[579,1,1,131,132],[587,1,1,132,133],[596,1,1,133,134],[609,2,2,134,136]]],[20,1,1,136,137,[[667,1,1,136,137]]],[21,5,5,137,142,[[672,1,1,137,138],[673,1,1,138,139],[675,2,2,139,141],[678,1,1,141,142]]],[22,10,7,142,149,[[692,1,1,142,143],[697,1,1,143,144],[723,2,1,144,145],[726,1,1,145,146],[732,2,1,146,147],[740,1,1,147,148],[743,2,1,148,149]]],[23,14,13,149,162,[[748,1,1,149,150],[749,2,2,150,152],[751,1,1,152,153],[755,1,1,153,154],[756,2,1,154,155],[766,1,1,155,156],[776,1,1,156,157],[782,1,1,157,158],[784,1,1,158,159],[788,1,1,159,160],[793,1,1,160,161],[795,1,1,161,162]]],[25,2,2,162,164,[[817,1,1,162,163],[822,1,1,163,164]]],[26,1,1,164,165,[[861,1,1,164,165]]],[27,1,1,165,166,[[865,1,1,165,166]]],[29,4,4,166,170,[[882,1,1,166,167],[884,1,1,167,168],[886,2,2,168,170]]],[32,1,1,170,171,[[899,1,1,170,171]]],[35,2,1,171,172,[[906,2,1,171,172]]],[37,2,2,172,174,[[915,2,2,172,174]]],[38,1,1,174,175,[[927,1,1,174,175]]]],[536,537,544,563,594,598,600,628,691,695,723,926,1451,1511,1512,1530,1531,1872,1878,1886,2451,2474,2834,2852,2854,3293,3811,3813,4036,4124,4131,4650,4728,4729,4900,4926,4927,4952,5025,5035,5096,5099,5104,5109,5119,5123,5124,5138,5155,5162,5197,5206,5217,5229,5289,5414,5569,5581,5620,5622,5692,5728,5735,5748,5749,5751,5843,5857,5881,5886,5889,5940,5971,5975,6052,6055,6056,6057,6196,6424,6425,6467,6546,6560,6941,7103,7109,7120,7290,7535,7536,7712,7733,7747,7772,7860,7861,7952,7993,8090,8116,8518,8534,8582,8597,8730,8734,8746,8747,8768,8778,8793,8812,9351,9496,9833,10246,11504,11505,11557,12006,12257,12394,12696,14091,14245,14850,15329,15361,15375,15465,15529,15790,16004,16153,16162,17477,17561,17576,17606,17607,17644,17952,18022,18584,18615,18732,18862,18913,19029,19060,19065,19128,19231,19265,19459,19753,19911,19950,20036,20140,20226,20770,20967,22088,22148,22412,22458,22488,22495,22684,22792,22939,22940,23125]]],["+",[8,6,[[1,2,1,0,1,[[62,2,1,0,1]]],[2,1,1,1,2,[[95,1,1,1,2]]],[3,2,2,2,4,[[121,2,2,2,4]]],[8,3,2,4,6,[[249,3,2,4,6]]]],[1886,2854,3811,3813,7535,7536]]],["Swear",[5,5,[[0,2,2,0,2,[[24,1,1,0,1],[46,1,1,1,2]]],[6,1,1,2,3,[[225,1,1,2,3]]],[8,2,2,3,5,[[259,1,1,3,4],[265,1,1,4,5]]]],[691,1451,6941,7860,7993]]],["adjure",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[9496,11557]]],["adjured",[1,1,[[5,1,1,0,1,[[192,1,1,0,1]]]],[5975]]],["charge",[5,5,[[21,5,5,0,5,[[672,1,1,0,1],[673,1,1,1,2],[675,2,2,2,4],[678,1,1,4,5]]]],[17561,17576,17606,17607,17644]]],["oath",[4,4,[[0,1,1,0,1,[[49,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]],[11,1,1,2,3,[[323,1,1,2,3]]],[15,1,1,3,4,[[417,1,1,3,4]]]],[1531,9351,9833,12394]]],["sware",[70,69,[[0,9,9,0,9,[[20,1,1,0,1],[23,2,2,1,3],[24,1,1,3,4],[25,2,2,4,6],[30,1,1,6,7],[46,1,1,7,8],[49,1,1,8,9]]],[1,3,3,9,12,[[62,2,2,9,11],[82,1,1,11,12]]],[3,4,4,12,16,[[130,2,2,12,14],[148,2,2,14,16]]],[4,24,24,16,40,[[153,3,3,16,19],[154,1,1,19,20],[156,2,2,20,22],[158,3,3,22,25],[159,2,2,25,27],[160,2,2,27,29],[161,1,1,29,30],[162,1,1,30,31],[163,2,2,31,33],[178,1,1,33,34],[180,1,1,34,35],[182,1,1,35,36],[183,3,3,36,39],[186,1,1,39,40]]],[5,9,8,40,48,[[187,1,1,40,41],[191,2,1,41,42],[192,1,1,42,43],[195,2,2,43,45],[200,1,1,45,46],[207,2,2,46,48]]],[6,1,1,48,49,[[212,1,1,48,49]]],[8,4,4,49,53,[[254,1,1,49,50],[255,1,1,50,51],[259,1,1,51,52],[263,1,1,52,53]]],[9,3,3,53,56,[[269,1,1,53,54],[285,1,1,54,55],[287,1,1,55,56]]],[10,4,4,56,60,[[291,2,2,56,58],[292,2,2,58,60]]],[11,1,1,60,61,[[337,1,1,60,61]]],[13,1,1,61,62,[[381,1,1,61,62]]],[14,1,1,62,63,[[412,1,1,62,63]]],[18,2,2,63,65,[[572,1,1,63,64],[609,1,1,64,65]]],[23,2,2,65,67,[[782,1,1,65,66],[784,1,1,66,67]]],[25,1,1,67,68,[[817,1,1,67,68]]],[26,1,1,68,69,[[861,1,1,68,69]]]],[544,598,600,691,695,723,926,1451,1530,1872,1878,2474,4124,4131,4728,4729,4900,4926,4927,4952,5025,5035,5096,5104,5109,5123,5124,5138,5155,5162,5197,5217,5229,5569,5622,5728,5748,5749,5751,5843,5857,5940,5971,6052,6057,6196,6424,6425,6546,7712,7733,7861,7952,8116,8534,8597,8746,8747,8778,8793,10246,11504,12257,15465,16153,19911,19950,20770,22088]]],["swarest",[5,5,[[1,1,1,0,1,[[81,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[4,1,1,2,3,[[178,1,1,2,3]]],[10,1,1,3,4,[[291,1,1,3,4]]],[18,1,1,4,5,[[566,1,1,4,5]]]],[2451,4036,5581,8734,15375]]],["swear",[38,36,[[0,6,6,0,6,[[20,2,2,0,2],[23,2,2,2,4],[49,2,2,4,6]]],[2,2,2,6,8,[[94,1,1,6,7],[108,1,1,7,8]]],[3,1,1,8,9,[[146,1,1,8,9]]],[4,2,2,9,11,[[158,1,1,9,10],[162,1,1,10,11]]],[5,4,4,11,15,[[188,3,3,11,14],[209,1,1,14,15]]],[8,1,1,15,16,[[255,1,1,15,16]]],[9,1,1,16,17,[[285,1,1,16,17]]],[10,3,3,17,20,[[291,2,2,17,19],[292,1,1,19,20]]],[13,1,1,20,21,[[402,1,1,20,21]]],[14,1,1,21,22,[[412,1,1,21,22]]],[15,1,1,22,23,[[425,1,1,22,23]]],[22,4,4,23,27,[[697,1,1,23,24],[723,1,1,24,25],[726,1,1,25,26],[743,1,1,26,27]]],[23,7,6,27,33,[[748,1,1,27,28],[749,1,1,28,29],[751,1,1,29,30],[756,2,1,30,31],[766,1,1,31,32],[776,1,1,32,33]]],[27,1,1,33,34,[[865,1,1,33,34]]],[29,1,1,34,35,[[886,1,1,34,35]]],[35,2,1,35,36,[[906,2,1,35,36]]]],[536,537,594,628,1511,1512,2834,3293,4650,5099,5206,5881,5886,5889,6467,7747,8518,8730,8768,8812,12006,12257,12696,18022,18584,18615,18913,19029,19060,19128,19265,19459,19753,22148,22495,22792]]],["swearers",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23125]]],["sweareth",[7,7,[[2,1,1,0,1,[[95,1,1,0,1]]],[18,2,2,1,3,[[492,1,1,1,2],[540,1,1,2,3]]],[20,1,1,3,4,[[667,1,1,3,4]]],[22,1,1,4,5,[[743,1,1,4,5]]],[37,2,2,5,7,[[915,2,2,5,7]]]],[2852,14091,14850,17477,18913,22939,22940]]],["sworn",[40,39,[[0,1,1,0,1,[[21,1,1,0,1]]],[4,6,6,1,7,[[159,1,1,1,2],[165,1,1,2,3],[171,1,1,3,4],[180,1,1,4,5],[181,1,1,5,6],[183,1,1,6,7]]],[5,2,2,7,9,[[195,2,2,7,9]]],[6,4,4,9,13,[[212,1,1,9,10],[231,3,3,10,13]]],[8,2,2,13,15,[[238,1,1,13,14],[255,1,1,14,15]]],[9,2,2,15,17,[[269,1,1,15,16],[287,1,1,16,17]]],[13,1,1,17,18,[[381,1,1,17,18]]],[18,7,7,18,25,[[501,1,1,18,19],[566,2,2,19,21],[579,1,1,21,22],[587,1,1,22,23],[596,1,1,23,24],[609,1,1,24,25]]],[22,5,4,25,29,[[692,1,1,25,26],[723,1,1,26,27],[732,2,1,27,28],[740,1,1,28,29]]],[23,5,5,29,34,[[749,1,1,29,30],[755,1,1,30,31],[788,1,1,31,32],[793,1,1,32,33],[795,1,1,33,34]]],[25,1,1,34,35,[[822,1,1,34,35]]],[29,3,3,35,38,[[882,1,1,35,36],[884,1,1,36,37],[886,1,1,37,38]]],[32,1,1,38,39,[[899,1,1,38,39]]]],[563,5119,5289,5414,5620,5692,5735,6055,6056,6560,7103,7109,7120,7290,7772,8090,8582,11505,14245,15329,15361,15529,15790,16004,16162,17952,18584,18732,18862,19065,19231,20036,20140,20226,20967,22412,22458,22488,22684]]]]},{"k":"H7651","v":[["*",[395,346,[[0,62,52,0,52,[[3,1,1,0,1],[4,5,4,1,5],[6,7,5,5,10],[7,4,4,10,14],[10,1,1,14,15],[20,3,3,15,18],[22,1,1,18,19],[24,1,1,19,20],[28,4,4,20,24],[30,1,1,24,25],[32,1,1,25,26],[36,1,1,26,27],[40,28,22,27,49],[45,1,1,49,50],[46,2,1,50,51],[49,1,1,51,52]]],[1,19,19,52,71,[[51,1,1,52,53],[55,2,2,53,55],[56,1,1,55,56],[61,2,2,56,58],[62,2,2,58,60],[71,1,1,60,61],[72,1,1,61,62],[74,1,1,62,63],[78,3,3,63,66],[83,1,1,66,67],[86,1,1,67,68],[87,3,3,68,71]]],[2,46,42,71,113,[[93,2,2,71,73],[97,4,3,73,76],[101,1,1,76,77],[102,8,8,77,85],[103,6,6,85,91],[104,4,4,91,95],[105,2,2,95,97],[111,1,1,97,98],[112,10,10,98,108],[114,4,1,108,109],[115,4,4,109,113]]],[3,46,41,113,154,[[117,2,2,113,115],[118,3,3,115,118],[119,1,1,118,119],[120,1,1,119,120],[124,1,1,120,121],[128,3,2,121,123],[129,1,1,123,124],[132,1,1,124,125],[135,4,4,125,129],[139,8,4,129,133],[142,3,3,133,136],[144,7,7,136,143],[145,7,7,143,150],[147,4,4,150,154]]],[4,12,11,154,165,[[159,1,1,154,155],[167,2,2,155,157],[168,6,5,157,162],[180,2,2,162,164],[183,1,1,164,165]]],[5,15,9,165,174,[[192,11,5,165,170],[204,4,4,170,174]]],[6,13,13,174,187,[[216,2,2,174,176],[218,2,2,176,178],[222,1,1,178,179],[224,2,2,179,181],[226,4,4,181,185],[230,2,2,185,187]]],[7,1,1,187,188,[[235,1,1,187,188]]],[8,7,7,188,195,[[237,1,1,188,189],[241,1,1,189,190],[245,1,1,190,191],[246,1,1,191,192],[248,1,1,192,193],[251,1,1,193,194],[266,1,1,194,195]]],[9,8,8,195,203,[[268,1,1,195,196],[271,1,1,196,197],[274,1,1,197,198],[276,1,1,198,199],[287,2,2,199,201],[289,1,1,201,202],[290,1,1,202,203]]],[10,18,15,203,218,[[292,1,1,203,204],[296,2,2,204,206],[297,2,1,206,207],[298,2,1,207,208],[301,1,1,208,209],[304,1,1,209,210],[306,3,2,210,212],[308,1,1,212,213],[309,1,1,213,214],[310,3,3,214,217],[312,1,1,217,218]]],[11,18,17,218,235,[[315,2,2,218,220],[316,1,1,220,221],[317,2,2,221,223],[320,3,3,223,226],[323,1,1,226,227],[324,1,1,227,228],[325,2,2,228,230],[327,1,1,230,231],[328,1,1,231,232],[336,1,1,232,233],[337,3,2,233,235]]],[12,22,21,235,256,[[340,2,2,235,237],[342,2,2,237,239],[344,2,2,239,241],[346,2,2,241,243],[347,1,1,243,244],[349,3,3,244,247],[352,2,1,247,248],[355,1,1,248,249],[356,1,1,249,250],[361,1,1,250,251],[362,1,1,251,252],[363,2,2,252,254],[366,2,2,254,256]]],[13,23,14,256,270,[[373,3,2,256,258],[378,1,1,258,259],[379,1,1,259,260],[381,2,1,260,261],[383,4,1,261,262],[390,1,1,262,263],[392,1,1,263,264],[395,4,1,264,265],[396,5,4,265,269],[401,1,1,269,270]]],[14,13,12,270,282,[[404,10,9,270,279],[408,1,1,279,280],[409,1,1,280,281],[410,1,1,281,282]]],[15,13,12,282,294,[[419,12,11,282,293],[420,1,1,293,294]]],[16,8,8,294,302,[[426,4,4,294,298],[427,2,2,298,300],[433,1,1,300,301],[434,1,1,301,302]]],[17,7,5,302,307,[[436,2,2,302,304],[437,2,1,304,305],[440,1,1,305,306],[477,2,1,306,307]]],[18,1,1,307,308,[[596,1,1,307,308]]],[19,5,5,308,313,[[633,1,1,308,309],[636,1,1,309,310],[651,1,1,310,311],[653,2,2,311,313]]],[20,1,1,313,314,[[669,1,1,313,314]]],[22,3,3,314,317,[[682,1,1,314,315],[689,1,1,315,316],[708,1,1,316,317]]],[23,7,7,317,324,[[759,1,1,317,318],[776,1,1,318,319],[778,1,1,319,320],[796,4,4,320,324]]],[25,20,17,324,341,[[804,2,2,324,326],[830,1,1,326,327],[831,1,1,327,328],[840,3,3,328,331],[841,2,2,331,333],[842,1,1,333,334],[844,2,2,334,336],[845,1,1,336,337],[846,7,4,337,341]]],[26,1,1,341,342,[[858,1,1,341,342]]],[32,1,1,342,343,[[897,1,1,342,343]]],[37,5,3,343,346,[[913,1,1,343,344],[914,4,2,344,346]]]],[103,112,130,131,136,161,162,163,169,170,187,193,195,197,287,541,542,543,572,675,813,815,822,825,896,963,1085,1197,1198,1199,1200,1201,1202,1213,1214,1215,1217,1218,1219,1221,1222,1224,1225,1229,1231,1242,1243,1248,1249,1411,1448,1516,1570,1671,1675,1710,1831,1835,1873,1874,2143,2159,2232,2366,2371,2373,2514,2627,2657,2658,2661,2801,2812,2928,2950,2952,3046,3056,3057,3073,3078,3083,3085,3102,3106,3118,3119,3127,3138,3149,3162,3181,3187,3192,3196,3215,3220,3396,3408,3410,3417,3420,3436,3438,3441,3442,3443,3444,3477,3542,3545,3548,3552,3635,3643,3666,3684,3689,3714,3779,3941,4073,4074,4097,4243,4293,4300,4303,4305,4417,4420,4430,4445,4496,4523,4540,4588,4594,4596,4598,4601,4604,4606,4610,4612,4616,4618,4620,4640,4644,4683,4700,4707,4716,5112,5320,5328,5345,5346,5351,5355,5357,5618,5636,5738,5953,5955,5957,5962,5964,6295,6298,6299,6302,6655,6679,6733,6745,6878,6921,6926,6956,6957,6962,6968,7069,7070,7205,7245,7332,7426,7448,7493,7605,8022,8060,8137,8213,8258,8586,8589,8692,8705,8781,8902,8934,8951,9050,9111,9239,9293,9298,9384,9405,9423,9437,9438,9531,9585,9602,9638,9657,9661,9728,9729,9730,9850,9851,9872,9881,9926,9964,10218,10230,10249,10365,10385,10441,10446,10540,10546,10628,10640,10671,10745,10747,10754,10817,10894,10925,11030,11070,11107,11109,11168,11191,11332,11333,11450,11462,11501,11534,11678,11745,11812,11848,11849,11850,11851,11983,12032,12036,12052,12060,12065,12066,12092,12093,12094,12173,12180,12236,12434,12438,12439,12449,12457,12461,12462,12487,12488,12489,12492,12511,12703,12707,12712,12716,12733,12740,12826,12864,12871,12872,12904,12970,13930,16062,16556,16639,17095,17157,17166,17515,17734,17899,18243,19324,19740,19815,20301,20304,20306,20307,20517,20518,21200,21224,21457,21460,21462,21499,21503,21529,21597,21598,21625,21650,21651,21653,21655,22013,22638,22921,22924,22932]]],["+",[23,21,[[0,8,6,0,6,[[6,5,3,0,3],[7,1,1,3,4],[36,1,1,4,5],[46,1,1,5,6]]],[2,1,1,6,7,[[115,1,1,6,7]]],[6,1,1,7,8,[[218,1,1,7,8]]],[7,1,1,8,9,[[235,1,1,8,9]]],[10,2,2,9,11,[[304,1,1,9,10],[312,1,1,10,11]]],[11,2,2,11,13,[[325,1,1,11,12],[328,1,1,12,13]]],[12,3,3,13,16,[[344,1,1,13,14],[361,1,1,14,15],[362,1,1,15,16]]],[13,1,1,16,17,[[378,1,1,16,17]]],[14,1,1,17,18,[[404,1,1,17,18]]],[15,1,1,18,19,[[419,1,1,18,19]]],[19,1,1,19,20,[[653,1,1,19,20]]],[23,1,1,20,21,[[776,1,1,20,21]]]],[161,162,170,187,1085,1448,3545,6733,7205,9239,9531,9872,9964,10546,11030,11070,11450,12066,12462,17157,19740]]],["Seven",[12,12,[[1,5,5,0,5,[[61,2,2,0,2],[62,1,1,2,3],[78,1,1,3,4],[83,1,1,4,5]]],[2,1,1,5,6,[[112,1,1,5,6]]],[4,2,2,6,8,[[168,2,2,6,8]]],[11,1,1,8,9,[[323,1,1,8,9]]],[18,1,1,9,10,[[596,1,1,9,10]]],[25,2,2,10,12,[[844,2,2,10,12]]]],[1831,1835,1873,2373,2514,3438,5351,5357,9850,16062,21597,21598]]],["seven",[344,300,[[0,53,46,0,46,[[4,5,4,0,4],[6,2,2,4,6],[7,3,3,6,9],[10,1,1,9,10],[20,3,3,10,13],[22,1,1,13,14],[24,1,1,14,15],[28,4,4,15,19],[30,1,1,19,20],[32,1,1,20,21],[40,28,22,21,43],[45,1,1,43,44],[46,1,1,44,45],[49,1,1,45,46]]],[1,14,14,46,60,[[51,1,1,46,47],[55,2,2,47,49],[56,1,1,49,50],[62,1,1,50,51],[71,1,1,51,52],[72,1,1,52,53],[74,1,1,53,54],[78,2,2,54,56],[86,1,1,56,57],[87,3,3,57,60]]],[2,41,37,60,97,[[93,2,2,60,62],[97,4,3,62,65],[101,1,1,65,66],[102,8,8,66,74],[103,6,6,74,80],[104,4,4,80,84],[105,2,2,84,86],[111,1,1,86,87],[112,9,9,87,96],[114,4,1,96,97]]],[3,46,41,97,138,[[117,2,2,97,99],[118,3,3,99,102],[119,1,1,102,103],[120,1,1,103,104],[124,1,1,104,105],[128,3,2,105,107],[129,1,1,107,108],[132,1,1,108,109],[135,4,4,109,113],[139,8,4,113,117],[142,3,3,117,120],[144,7,7,120,127],[145,7,7,127,134],[147,4,4,134,138]]],[4,9,9,138,147,[[159,1,1,138,139],[167,1,1,139,140],[168,4,4,140,144],[180,2,2,144,146],[183,1,1,146,147]]],[5,15,9,147,156,[[192,11,5,147,152],[204,4,4,152,156]]],[6,12,12,156,168,[[216,2,2,156,158],[218,1,1,158,159],[222,1,1,159,160],[224,2,2,160,162],[226,4,4,162,166],[230,2,2,166,168]]],[8,7,7,168,175,[[237,1,1,168,169],[241,1,1,169,170],[245,1,1,170,171],[246,1,1,171,172],[248,1,1,172,173],[251,1,1,173,174],[266,1,1,174,175]]],[9,8,8,175,183,[[268,1,1,175,176],[271,1,1,176,177],[274,1,1,177,178],[276,1,1,178,179],[287,2,2,179,181],[289,1,1,181,182],[290,1,1,182,183]]],[10,14,12,183,195,[[292,1,1,183,184],[296,2,2,184,186],[297,2,1,186,187],[298,2,1,187,188],[301,1,1,188,189],[306,1,1,189,190],[308,1,1,190,191],[309,1,1,191,192],[310,3,3,192,195]]],[11,11,10,195,205,[[315,2,2,195,197],[316,1,1,197,198],[317,2,2,198,200],[320,3,3,200,203],[336,1,1,203,204],[337,2,1,204,205]]],[12,19,18,205,223,[[340,2,2,205,207],[342,2,2,207,209],[344,1,1,209,210],[346,2,2,210,212],[347,1,1,212,213],[349,3,3,213,216],[352,2,1,216,217],[355,1,1,217,218],[356,1,1,218,219],[363,2,2,219,221],[366,2,2,221,223]]],[13,22,13,223,236,[[373,3,2,223,225],[379,1,1,225,226],[381,2,1,226,227],[383,4,1,227,228],[390,1,1,228,229],[392,1,1,229,230],[395,4,1,230,231],[396,5,4,231,235],[401,1,1,235,236]]],[14,11,10,236,246,[[404,9,8,236,244],[408,1,1,244,245],[410,1,1,245,246]]],[15,12,11,246,257,[[419,11,10,246,256],[420,1,1,256,257]]],[16,7,7,257,264,[[426,4,4,257,261],[427,1,1,261,262],[433,1,1,262,263],[434,1,1,263,264]]],[17,7,5,264,269,[[436,2,2,264,266],[437,2,1,266,267],[440,1,1,267,268],[477,2,1,268,269]]],[19,4,4,269,273,[[633,1,1,269,270],[636,1,1,270,271],[651,1,1,271,272],[653,1,1,272,273]]],[20,1,1,273,274,[[669,1,1,273,274]]],[22,3,3,274,277,[[682,1,1,274,275],[689,1,1,275,276],[708,1,1,276,277]]],[23,5,5,277,282,[[759,1,1,277,278],[778,1,1,278,279],[796,3,3,279,282]]],[25,16,13,282,295,[[804,2,2,282,284],[830,1,1,284,285],[840,3,3,285,288],[841,2,2,288,290],[842,1,1,290,291],[845,1,1,291,292],[846,6,3,292,295]]],[26,1,1,295,296,[[858,1,1,295,296]]],[32,1,1,296,297,[[897,1,1,296,297]]],[37,5,3,297,300,[[913,1,1,297,298],[914,4,2,298,300]]]],[112,130,131,136,163,169,193,195,197,287,541,542,543,572,675,813,815,822,825,896,963,1197,1198,1199,1200,1201,1202,1213,1214,1215,1217,1218,1219,1221,1222,1224,1225,1229,1231,1242,1243,1248,1249,1411,1448,1516,1570,1671,1675,1710,1874,2143,2159,2232,2366,2371,2627,2657,2658,2661,2801,2812,2928,2950,2952,3046,3056,3057,3073,3078,3083,3085,3102,3106,3118,3119,3127,3138,3149,3162,3181,3187,3192,3196,3215,3220,3396,3408,3410,3417,3420,3436,3441,3442,3443,3444,3477,3635,3643,3666,3684,3689,3714,3779,3941,4073,4074,4097,4243,4293,4300,4303,4305,4417,4420,4430,4445,4496,4523,4540,4588,4594,4596,4598,4601,4604,4606,4610,4612,4616,4618,4620,4640,4644,4683,4700,4707,4716,5112,5320,5345,5346,5351,5355,5618,5636,5738,5953,5955,5957,5962,5964,6295,6298,6299,6302,6655,6679,6745,6878,6921,6926,6956,6957,6962,6968,7069,7070,7245,7332,7426,7448,7493,7605,8022,8060,8137,8213,8258,8586,8589,8692,8705,8781,8902,8934,8951,9050,9111,9298,9384,9405,9423,9437,9438,9585,9602,9638,9657,9661,9728,9729,9730,10218,10249,10365,10385,10441,10446,10540,10628,10640,10671,10745,10747,10754,10817,10894,10925,11107,11109,11168,11191,11332,11333,11462,11501,11534,11678,11745,11812,11848,11849,11850,11851,11983,12032,12036,12052,12060,12065,12092,12093,12094,12173,12236,12434,12438,12439,12449,12457,12461,12487,12488,12489,12492,12511,12703,12707,12712,12716,12733,12826,12864,12871,12872,12904,12970,13930,16556,16639,17095,17166,17515,17734,17899,18243,19324,19815,20301,20306,20307,20517,20518,21200,21457,21460,21462,21499,21503,21529,21625,21651,21653,21655,22013,22638,22921,22924,22932]]],["sevenfold",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[103]]],["seventh",[12,12,[[4,1,1,0,1,[[167,1,1,0,1]]],[10,2,2,1,3,[[306,2,2,1,3]]],[11,4,4,3,7,[[324,1,1,3,4],[325,1,1,4,5],[327,1,1,5,6],[337,1,1,6,7]]],[14,1,1,7,8,[[409,1,1,7,8]]],[16,1,1,8,9,[[427,1,1,8,9]]],[23,1,1,9,10,[[796,1,1,9,10]]],[25,2,2,10,12,[[831,1,1,10,11],[846,1,1,11,12]]]],[5328,9293,9298,9851,9881,9926,10230,12180,12740,20304,21224,21650]]],["times",[3,3,[[2,3,3,0,3,[[115,3,3,0,3]]]],[3542,3548,3552]]]]},{"k":"H7652","v":[["Sheba",[10,10,[[5,1,1,0,1,[[205,1,1,0,1]]],[9,8,8,1,9,[[286,8,8,1,9]]],[12,1,1,9,10,[[342,1,1,9,10]]]],[6323,8555,8556,8560,8561,8564,8567,8575,8576,10441]]]]},{"k":"H7653","v":[["fulness",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20811]]]]},{"k":"H7654","v":[["*",[5,5,[[22,3,3,0,3,[[701,1,1,0,1],[733,1,1,1,2],[734,1,1,2,3]]],[25,2,2,3,5,[[817,1,1,3,4],[840,1,1,4,5]]]],[18095,18742,18764,20790,21467]]],["+",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20790]]],["enough",[1,1,[[22,1,1,0,1,[[734,1,1,0,1]]]],[18764]]],["full",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21467]]],["satisfieth",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18742]]],["sufficiently",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18095]]]]},{"k":"H7655","v":[["*",[6,6,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,5,5,1,6,[[852,1,1,1,2],[853,4,4,2,6]]]],[12187,21826,21853,21860,21862,21869]]],["seven",[5,5,[[14,1,1,0,1,[[409,1,1,0,1]]],[26,4,4,1,5,[[853,4,4,1,5]]]],[12187,21853,21860,21862,21869]]],["times",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21826]]]]},{"k":"H7656","v":[["Shebah",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[725]]]]},{"k":"H7657","v":[["*",[91,90,[[0,8,8,0,8,[[3,1,1,0,1],[4,2,2,1,3],[10,1,1,3,4],[11,1,1,4,5],[24,1,1,5,6],[45,1,1,6,7],[49,1,1,7,8]]],[1,7,7,8,15,[[50,1,1,8,9],[64,1,1,9,10],[73,2,2,10,12],[87,3,3,12,15]]],[3,26,26,15,41,[[117,1,1,15,16],[118,1,1,16,17],[119,2,2,17,19],[123,13,13,19,32],[127,3,3,32,35],[142,1,1,35,36],[147,4,4,36,40],[149,1,1,40,41]]],[4,1,1,41,42,[[162,1,1,41,42]]],[6,10,10,42,52,[[211,1,1,42,43],[218,2,2,43,45],[219,6,6,45,51],[222,1,1,51,52]]],[8,1,1,52,53,[[241,1,1,52,53]]],[9,1,1,53,54,[[290,1,1,53,54]]],[10,1,1,54,55,[[295,1,1,54,55]]],[11,3,3,55,58,[[322,3,3,55,58]]],[12,2,2,58,60,[[358,2,2,58,60]]],[13,4,4,60,64,[[368,2,2,60,62],[395,1,1,62,63],[402,1,1,63,64]]],[14,8,8,64,72,[[404,5,5,64,69],[410,3,3,69,72]]],[15,5,5,72,77,[[419,4,4,72,76],[423,1,1,76,77]]],[16,1,1,77,78,[[434,1,1,77,78]]],[18,1,1,78,79,[[567,1,1,78,79]]],[22,3,2,79,81,[[701,3,2,79,81]]],[23,3,3,81,84,[[769,2,2,81,83],[773,1,1,83,84]]],[25,2,2,84,86,[[809,1,1,84,85],[842,1,1,85,86]]],[26,2,2,86,88,[[858,2,2,86,88]]],[37,2,2,88,90,[[911,1,1,88,89],[917,1,1,89,90]]]],[103,117,136,292,302,665,1413,1509,1537,1947,2178,2186,2658,2661,2662,3631,3662,3735,3738,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935,4040,4048,4049,4511,4696,4697,4701,4702,4769,5208,6516,6733,6749,6756,6758,6759,6772,6778,6810,6883,7350,8707,8893,9794,9799,9800,10939,10948,11213,11229,11823,12014,12030,12031,12032,12063,12067,12208,12215,12236,12428,12429,12459,12463,12607,12850,15388,18092,18094,19545,19546,19645,20615,21538,21990,22012,22890,22967]]],["+",[12,12,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,1,1,1,2,[[87,1,1,1,2]]],[3,8,8,2,10,[[117,1,1,2,3],[118,1,1,3,4],[119,2,2,4,6],[142,1,1,6,7],[147,3,3,7,10]]],[6,1,1,10,11,[[218,1,1,10,11]]],[18,1,1,11,12,[[567,1,1,11,12]]]],[665,2658,3631,3662,3735,3738,4511,4697,4701,4702,6733,15388]]],["Seventy",[1,1,[[26,1,1,0,1,[[858,1,1,0,1]]]],[22012]]],["seventy",[57,56,[[0,5,5,0,5,[[3,1,1,0,1],[4,2,2,1,3],[10,1,1,3,4],[11,1,1,4,5]]],[1,5,5,5,10,[[50,1,1,5,6],[73,2,2,6,8],[87,2,2,8,10]]],[3,17,17,10,27,[[123,13,13,10,23],[127,3,3,23,26],[147,1,1,26,27]]],[6,1,1,27,28,[[219,1,1,27,28]]],[9,1,1,28,29,[[290,1,1,28,29]]],[11,3,3,29,32,[[322,3,3,29,32]]],[12,1,1,32,33,[[358,1,1,32,33]]],[14,8,8,33,41,[[404,5,5,33,38],[410,3,3,38,41]]],[15,5,5,41,46,[[419,4,4,41,45],[423,1,1,45,46]]],[16,1,1,46,47,[[434,1,1,46,47]]],[22,3,2,47,49,[[701,3,2,47,49]]],[23,3,3,49,52,[[769,2,2,49,51],[773,1,1,51,52]]],[25,2,2,52,54,[[809,1,1,52,53],[842,1,1,53,54]]],[26,1,1,54,55,[[858,1,1,54,55]]],[37,1,1,55,56,[[917,1,1,55,56]]]],[103,117,136,292,302,1537,2178,2186,2661,2662,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935,4040,4048,4049,4696,6810,8707,9794,9799,9800,10948,12030,12031,12032,12063,12067,12208,12215,12236,12428,12429,12459,12463,12607,12850,18092,18094,19545,19546,19645,20615,21538,21990,22967]]],["ten",[21,21,[[0,2,2,0,2,[[45,1,1,0,1],[49,1,1,1,2]]],[1,1,1,2,3,[[64,1,1,2,3]]],[3,1,1,3,4,[[149,1,1,3,4]]],[4,1,1,4,5,[[162,1,1,4,5]]],[6,8,8,5,13,[[211,1,1,5,6],[218,1,1,6,7],[219,5,5,7,12],[222,1,1,12,13]]],[8,1,1,13,14,[[241,1,1,13,14]]],[10,1,1,14,15,[[295,1,1,14,15]]],[12,1,1,15,16,[[358,1,1,15,16]]],[13,4,4,16,20,[[368,2,2,16,18],[395,1,1,18,19],[402,1,1,19,20]]],[37,1,1,20,21,[[911,1,1,20,21]]]],[1413,1509,1947,4769,5208,6516,6749,6756,6758,6759,6772,6778,6883,7350,8893,10939,11213,11229,11823,12014,22890]]]]},{"k":"H7658","v":[["seven",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13935]]]]},{"k":"H7659","v":[["*",[6,6,[[0,2,2,0,2,[[3,2,2,0,2]]],[18,2,2,2,4,[[489,1,1,2,3],[556,1,1,3,4]]],[19,1,1,4,5,[[633,1,1,4,5]]],[22,1,1,5,6,[[708,1,1,5,6]]]],[94,103,14072,15197,16571,18243]]],["seven",[1,1,[[18,1,1,0,1,[[489,1,1,0,1]]]],[14072]]],["sevenfold",[5,5,[[0,2,2,0,2,[[3,2,2,0,2]]],[18,1,1,2,3,[[556,1,1,2,3]]],[19,1,1,3,4,[[633,1,1,3,4]]],[22,1,1,4,5,[[708,1,1,4,5]]]],[94,103,15197,16571,18243]]]]},{"k":"H7660","v":[["*",[2,2,[[1,2,2,0,2,[[77,2,2,0,2]]]],[2313,2332]]],["embroider",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2332]]],["set",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2313]]]]},{"k":"H7661","v":[["anguish",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8031]]]]},{"k":"H7662","v":[["*",[5,5,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,4,4,1,5,[[851,1,1,1,2],[853,3,3,2,5]]]],[12158,21802,21852,21860,21863]]],["alone",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12158]]],["leave",[3,3,[[26,3,3,0,3,[[853,3,3,0,3]]]],[21852,21860,21863]]],["left",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21802]]]]},{"k":"H7663","v":[["*",[8,8,[[7,1,1,0,1,[[232,1,1,0,1]]],[15,2,2,1,3,[[414,2,2,1,3]]],[16,1,1,3,4,[[434,1,1,3,4]]],[18,3,3,4,7,[[581,1,1,4,5],[596,1,1,5,6],[622,1,1,6,7]]],[22,1,1,7,8,[[716,1,1,7,8]]]],[7140,12320,12322,12835,15598,16064,16335,18408]]],["+",[2,2,[[15,2,2,0,2,[[414,2,2,0,2]]]],[12320,12322]]],["hope",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18408]]],["hoped",[2,2,[[16,1,1,0,1,[[434,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[12835,16064]]],["tarry",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7140]]],["wait",[2,2,[[18,2,2,0,2,[[581,1,1,0,1],[622,1,1,1,2]]]],[15598,16335]]]]},{"k":"H7664","v":[["*",[2,2,[[18,2,2,0,2,[[596,1,1,0,1],[623,1,1,1,2]]]],[16014,16346]]],["+",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16014]]],["hope",[1,1,[[18,1,1,0,1,[[623,1,1,0,1]]]],[16346]]]]},{"k":"H7665","v":[["*",[148,143,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,9,8,1,9,[[58,1,1,1,2],[61,1,1,2,3],[71,2,2,3,5],[72,2,1,5,6],[81,1,1,6,7],[83,2,2,7,9]]],[2,7,7,9,16,[[95,1,1,9,10],[100,1,1,10,11],[104,1,1,11,12],[111,1,1,12,13],[115,3,3,13,16]]],[3,1,1,16,17,[[125,1,1,16,17]]],[4,4,4,17,21,[[159,1,1,17,18],[161,1,1,18,19],[162,1,1,19,20],[164,1,1,20,21]]],[6,1,1,21,22,[[217,1,1,21,22]]],[8,1,1,22,23,[[239,1,1,22,23]]],[10,4,4,23,27,[[303,2,2,23,25],[309,1,1,25,26],[312,1,1,26,27]]],[11,4,4,27,31,[[323,1,1,27,28],[330,1,1,28,29],[335,1,1,29,30],[337,1,1,30,31]]],[13,6,6,31,37,[[380,2,2,31,33],[386,1,1,33,34],[389,1,1,34,35],[397,1,1,35,36],[400,1,1,36,37]]],[17,5,5,37,42,[[459,1,1,37,38],[464,1,1,38,39],[466,1,1,39,40],[473,2,2,40,42]]],[18,21,19,42,61,[[480,1,1,42,43],[487,1,1,43,44],[506,2,1,44,45],[511,2,2,45,47],[514,2,2,47,49],[523,1,1,49,50],[525,1,1,50,51],[528,2,1,51,52],[546,1,1,52,53],[551,1,1,53,54],[553,1,1,54,55],[581,1,1,55,56],[582,2,2,56,58],[584,1,1,58,59],[601,1,1,59,60],[624,1,1,60,61]]],[19,3,3,61,64,[[633,1,1,61,62],[652,1,1,62,63],[656,1,1,63,64]]],[20,1,1,64,65,[[670,1,1,64,65]]],[22,14,14,65,79,[[686,1,1,65,66],[692,3,3,66,69],[699,1,1,69,70],[702,1,1,70,71],[705,1,1,71,72],[706,1,1,72,73],[708,1,1,73,74],[716,1,1,74,75],[720,1,1,75,76],[723,1,1,76,77],[739,1,1,77,78],[744,1,1,78,79]]],[23,28,27,79,106,[[746,2,2,79,81],[749,1,1,81,82],[752,1,1,82,83],[758,1,1,83,84],[761,1,1,84,85],[763,3,2,85,87],[766,1,1,87,88],[767,1,1,88,89],[772,6,6,89,95],[774,1,1,95,96],[787,1,1,96,97],[792,4,4,97,101],[793,1,1,101,102],[794,1,1,102,103],[795,2,2,103,105],[796,1,1,105,106]]],[24,3,3,106,109,[[797,1,1,106,107],[798,1,1,107,108],[799,1,1,108,109]]],[25,21,20,109,129,[[805,1,1,109,110],[806,1,1,110,111],[807,3,3,111,114],[815,1,1,114,115],[827,1,1,115,116],[828,2,2,116,118],[830,1,1,118,119],[831,6,5,119,124],[832,1,1,124,125],[833,1,1,125,126],[835,3,3,126,129]]],[26,8,8,129,137,[[857,4,4,129,133],[860,4,4,133,137]]],[27,2,2,137,139,[[862,1,1,137,138],[863,1,1,138,139]]],[29,1,1,139,140,[[879,1,1,139,140]]],[31,1,1,140,141,[[889,1,1,140,141]]],[33,1,1,141,142,[[900,1,1,141,142]]],[37,1,1,142,143,[[921,1,1,142,143]]]],[466,1767,1862,2123,2127,2168,2457,2497,2509,2877,3030,3180,3391,3537,3543,3550,3977,5116,5174,5188,5243,6714,7315,9210,9212,9398,9528,9847,10028,10179,10235,11478,11488,11624,11673,11855,11937,13456,13549,13610,13803,13808,13964,14056,14313,14406,14408,14465,14467,14623,14641,14708,14955,15061,15084,15582,15622,15639,15715,16109,16354,16555,17128,17225,17529,17822,17933,17953,17957,18044,18105,18162,18177,18231,18403,18483,18563,18844,18931,18978,18985,19063,19174,19310,19375,19417,19418,19474,19493,19620,19622,19628,19629,19630,19631,19675,20010,20084,20097,20105,20118,20162,20189,20220,20242,20293,20325,20341,20358,20545,20562,20567,20569,20572,20744,21102,21147,21155,21190,21212,21222,21225,21226,21228,21242,21276,21317,21329,21340,21968,21969,21983,21986,22040,22056,22058,22062,22099,22123,22369,22535,22697,23044]]],["+",[25,23,[[1,2,1,0,1,[[72,2,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[4,1,1,2,3,[[164,1,1,2,3]]],[10,1,1,3,4,[[303,1,1,3,4]]],[11,2,2,4,6,[[330,1,1,4,5],[335,1,1,5,6]]],[13,2,2,6,8,[[380,1,1,6,7],[397,1,1,7,8]]],[18,1,1,8,9,[[506,1,1,8,9]]],[22,1,1,9,10,[[739,1,1,9,10]]],[23,8,7,10,17,[[763,2,1,10,11],[772,4,4,11,15],[792,1,1,15,16],[793,1,1,16,17]]],[25,4,4,17,21,[[831,3,3,17,20],[835,1,1,20,21]]],[26,1,1,21,22,[[857,1,1,21,22]]],[27,1,1,22,23,[[862,1,1,22,23]]]],[2168,3543,5243,9212,10028,10179,11478,11855,14313,18844,19418,19620,19622,19629,19630,20118,20162,21225,21226,21228,21340,21968,22099]]],["Break",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14056]]],["birth",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18931]]],["brake",[11,11,[[1,2,2,0,2,[[58,1,1,0,1],[81,1,1,1,2]]],[4,1,1,2,3,[[161,1,1,2,3]]],[6,1,1,3,4,[[217,1,1,3,4]]],[8,1,1,4,5,[[239,1,1,4,5]]],[17,1,1,5,6,[[464,1,1,5,6]]],[18,3,3,6,9,[[553,1,1,6,7],[582,2,2,7,9]]],[23,2,2,9,11,[[772,1,1,9,10],[796,1,1,10,11]]]],[1767,2457,5174,6714,7315,13549,15084,15622,15639,19628,20293]]],["brakest",[4,4,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,1,1,1,2,[[162,1,1,1,2]]],[18,1,1,2,3,[[551,1,1,2,3]]],[25,1,1,3,4,[[830,1,1,3,4]]]],[2497,5188,15061,21190]]],["break",[19,19,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,2,2,1,3,[[61,1,1,1,2],[83,1,1,2,3]]],[2,1,1,3,4,[[100,1,1,3,4]]],[3,1,1,4,5,[[125,1,1,4,5]]],[22,4,4,5,9,[[692,1,1,5,6],[708,1,1,6,7],[716,1,1,7,8],[720,1,1,8,9]]],[23,3,3,9,12,[[763,1,1,9,10],[774,1,1,10,11],[787,1,1,11,12]]],[25,4,4,12,16,[[805,1,1,12,13],[806,1,1,13,14],[815,1,1,14,15],[831,1,1,15,16]]],[27,1,1,16,17,[[863,1,1,16,17]]],[29,1,1,17,18,[[879,1,1,17,18]]],[33,1,1,18,19,[[900,1,1,18,19]]]],[466,1862,2509,3030,3977,17953,18231,18403,18483,19417,19675,20010,20545,20562,20744,21222,22123,22369,22697]]],["breakest",[1,1,[[18,1,1,0,1,[[525,1,1,0,1]]]],[14641]]],["breaketh",[3,3,[[18,2,2,0,2,[[506,1,1,0,1],[523,1,1,1,2]]],[19,1,1,2,3,[[652,1,1,2,3]]]],[14313,14623,17128]]],["broken",[58,57,[[2,5,5,0,5,[[95,1,1,0,1],[104,1,1,1,2],[111,1,1,2,3],[115,2,2,3,5]]],[10,1,1,5,6,[[312,1,1,5,6]]],[13,1,1,6,7,[[386,1,1,6,7]]],[17,3,3,7,10,[[459,1,1,7,8],[466,1,1,8,9],[473,1,1,9,10]]],[18,11,10,10,20,[[480,1,1,10,11],[511,2,2,11,13],[514,2,2,13,15],[528,2,1,15,16],[546,1,1,16,17],[584,1,1,17,18],[601,1,1,18,19],[624,1,1,19,20]]],[19,1,1,20,21,[[633,1,1,20,21]]],[20,1,1,21,22,[[670,1,1,21,22]]],[22,5,5,22,27,[[686,1,1,22,23],[692,2,2,23,25],[699,1,1,25,26],[706,1,1,26,27]]],[23,10,10,27,37,[[746,2,2,27,29],[749,1,1,29,30],[758,1,1,30,31],[767,1,1,31,32],[772,1,1,32,33],[792,2,2,33,35],[794,1,1,35,36],[795,1,1,36,37]]],[24,2,2,37,39,[[798,1,1,37,38],[799,1,1,38,39]]],[25,11,11,39,50,[[807,3,3,39,42],[827,1,1,42,43],[828,2,2,43,45],[831,1,1,45,46],[832,1,1,46,47],[833,1,1,47,48],[835,2,2,48,50]]],[26,5,5,50,55,[[857,3,3,50,53],[860,2,2,53,55]]],[31,1,1,55,56,[[889,1,1,55,56]]],[37,1,1,56,57,[[921,1,1,56,57]]]],[2877,3180,3391,3537,3550,9528,11624,13456,13610,13808,13964,14406,14408,14465,14467,14708,14955,15715,16109,16354,16555,17529,17822,17933,17957,18044,18177,18978,18985,19063,19310,19493,19631,20097,20105,20189,20242,20341,20358,20567,20569,20572,21102,21147,21155,21226,21242,21276,21317,21329,21969,21983,21986,22040,22058,22535,23044]]],["crush",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20325]]],["destroy",[2,2,[[23,1,1,0,1,[[761,1,1,0,1]]],[26,1,1,1,2,[[860,1,1,1,2]]]],[19375,22062]]],["destroyed",[7,7,[[13,1,1,0,1,[[380,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]],[23,3,3,2,5,[[766,1,1,2,3],[792,1,1,3,4],[795,1,1,4,5]]],[25,1,1,5,6,[[831,1,1,5,6]]],[26,1,1,6,7,[[860,1,1,6,7]]]],[11488,17225,19474,20084,20220,21212,22056]]],["down",[2,2,[[4,1,1,0,1,[[159,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]]],[5116,18105]]],["hurt",[3,3,[[1,2,2,0,2,[[71,2,2,0,2]]],[23,1,1,2,3,[[752,1,1,2,3]]]],[2123,2127,19174]]],["off",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18162]]],["pieces",[6,6,[[10,1,1,0,1,[[309,1,1,0,1]]],[11,2,2,1,3,[[323,1,1,1,2],[337,1,1,2,3]]],[13,2,2,3,5,[[389,1,1,3,4],[400,1,1,4,5]]],[22,1,1,5,6,[[723,1,1,5,6]]]],[9398,9847,10235,11673,11937,18563]]],["quench",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15582]]],["torn",[1,1,[[10,1,1,0,1,[[303,1,1,0,1]]]],[9210]]],["up",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13803]]]]},{"k":"H7666","v":[["*",[21,20,[[0,14,14,0,14,[[40,2,2,0,2],[41,6,6,2,8],[42,4,4,8,12],[43,1,1,12,13],[46,1,1,13,14]]],[4,2,2,14,16,[[154,2,2,14,16]]],[19,1,1,16,17,[[638,1,1,16,17]]],[22,2,1,17,18,[[733,2,1,17,18]]],[29,2,2,18,20,[[886,2,2,18,20]]]],[1251,1252,1254,1255,1257,1258,1259,1262,1292,1294,1310,1312,1349,1434,4944,4966,16714,18741,22486,22487]]],["bought",[1,1,[[0,1,1,0,1,[[46,1,1,0,1]]]],[1434]]],["buy",[14,13,[[0,11,11,0,11,[[40,1,1,0,1],[41,5,5,1,6],[42,4,4,6,10],[43,1,1,10,11]]],[4,1,1,11,12,[[154,1,1,11,12]]],[22,2,1,12,13,[[733,2,1,12,13]]]],[1252,1254,1255,1257,1259,1262,1292,1294,1310,1312,1349,4944,18741]]],["sell",[3,3,[[4,1,1,0,1,[[154,1,1,0,1]]],[29,2,2,1,3,[[886,2,2,1,3]]]],[4966,22486,22487]]],["selleth",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16714]]],["sold",[2,2,[[0,2,2,0,2,[[40,1,1,0,1],[41,1,1,1,2]]]],[1251,1258]]]]},{"k":"H7667","v":[["*",[44,41,[[2,4,2,0,2,[[110,2,1,0,1],[113,2,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]],[17,1,1,3,4,[[476,1,1,3,4]]],[18,1,1,4,5,[[537,1,1,4,5]]],[19,4,4,5,9,[[642,1,1,5,6],[643,1,1,6,7],[644,1,1,7,8],[645,1,1,8,9]]],[22,9,9,9,18,[[679,1,1,9,10],[693,1,1,10,11],[708,3,3,11,14],[729,1,1,14,15],[737,1,1,15,16],[738,1,1,16,17],[743,1,1,17,18]]],[23,15,14,18,32,[[748,3,2,18,20],[750,2,2,20,22],[752,2,2,22,24],[754,1,1,24,25],[758,1,1,25,26],[774,2,2,26,28],[792,2,2,28,30],[794,1,1,30,31],[795,1,1,31,32]]],[24,5,5,32,37,[[798,2,2,32,34],[799,2,2,34,36],[800,1,1,36,37]]],[25,1,1,37,38,[[833,1,1,37,38]]],[29,1,1,38,39,[[884,1,1,38,39]]],[33,1,1,39,40,[[902,1,1,39,40]]],[35,1,1,40,41,[[906,1,1,40,41]]]],[3364,3466,6709,13913,14809,16811,16858,16892,16913,17682,17965,18230,18231,18243,18692,18807,18839,18911,19033,19047,19090,19103,19164,19174,19220,19310,19679,19682,20083,20085,20188,20266,20343,20345,20401,20402,20430,21257,22456,22731,22797]]],["+",[4,3,[[2,2,1,0,1,[[110,2,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[22,1,1,2,3,[[743,1,1,2,3]]]],[3364,13913,18911]]],["Breach",[1,1,[[2,1,1,0,1,[[113,1,1,0,1]]]],[3466]]],["Destruction",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19047]]],["affliction",[2,2,[[23,1,1,0,1,[[774,1,1,0,1]]],[29,1,1,1,2,[[884,1,1,1,2]]]],[19682,22456]]],["breach",[5,5,[[2,1,1,0,1,[[113,1,1,0,1]]],[19,1,1,1,2,[[642,1,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]],[23,1,1,3,4,[[758,1,1,3,4]]],[24,1,1,4,5,[[798,1,1,4,5]]]],[3466,16811,18243,19310,20345]]],["breaches",[1,1,[[18,1,1,0,1,[[537,1,1,0,1]]]],[14809]]],["breaking",[2,2,[[22,2,2,0,2,[[708,2,2,0,2]]]],[18230,18231]]],["bruise",[2,2,[[23,1,1,0,1,[[774,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[19679,22731]]],["crashing",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22797]]],["destruction",[20,20,[[19,3,3,0,3,[[643,1,1,0,1],[644,1,1,1,2],[645,1,1,2,3]]],[22,5,5,3,8,[[679,1,1,3,4],[693,1,1,4,5],[729,1,1,5,6],[737,1,1,6,7],[738,1,1,7,8]]],[23,7,7,8,15,[[748,2,2,8,10],[750,1,1,10,11],[792,2,2,11,13],[794,1,1,13,14],[795,1,1,14,15]]],[24,4,4,15,19,[[798,1,1,15,16],[799,2,2,16,18],[800,1,1,18,19]]],[25,1,1,19,20,[[833,1,1,19,20]]]],[16858,16892,16913,17682,17965,18692,18807,18839,19033,19047,19090,20083,20085,20188,20266,20343,20401,20402,20430,21257]]],["hurt",[4,4,[[23,4,4,0,4,[[750,1,1,0,1],[752,2,2,1,3],[754,1,1,3,4]]]],[19103,19164,19174,19220]]],["interpretation",[1,1,[[6,1,1,0,1,[[217,1,1,0,1]]]],[6709]]]]},{"k":"H7668","v":[["*",[9,9,[[0,7,7,0,7,[[41,4,4,0,4],[42,1,1,4,5],[43,1,1,5,6],[46,1,1,6,7]]],[15,1,1,7,8,[[422,1,1,7,8]]],[29,1,1,8,9,[[886,1,1,8,9]]]],[1253,1254,1271,1278,1292,1326,1434,12580,22486]]],["corn",[8,8,[[0,7,7,0,7,[[41,4,4,0,4],[42,1,1,4,5],[43,1,1,5,6],[46,1,1,6,7]]],[29,1,1,7,8,[[886,1,1,7,8]]]],[1253,1254,1271,1278,1292,1326,1434,22486]]],["victuals",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12580]]]]},{"k":"H7669","v":[["Sheber",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10354]]]]},{"k":"H7670","v":[["*",[2,2,[[23,1,1,0,1,[[761,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[19375,20950]]],["breaking",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20950]]],["destruction",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19375]]]]},{"k":"H7671","v":[["Shebarim",[1,1,[[5,1,1,0,1,[[193,1,1,0,1]]]],[5981]]]]},{"k":"H7672","v":[["astonied",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21883]]]]},{"k":"H7673","v":[["*",[71,67,[[0,3,3,0,3,[[1,2,2,0,2],[7,1,1,2,3]]],[1,7,6,3,9,[[54,1,1,3,4],[61,1,1,4,5],[65,1,1,5,6],[72,1,1,6,7],[80,1,1,7,8],[83,2,1,8,9]]],[2,7,6,9,15,[[91,1,1,9,10],[112,1,1,10,11],[114,1,1,11,12],[115,4,3,12,15]]],[4,1,1,15,16,[[184,1,1,15,16]]],[5,2,2,16,18,[[191,1,1,16,17],[208,1,1,17,18]]],[7,1,1,18,19,[[235,1,1,18,19]]],[11,2,2,19,21,[[335,2,2,19,21]]],[13,2,2,21,23,[[382,1,1,21,22],[402,1,1,22,23]]],[15,2,2,23,25,[[416,1,1,23,24],[418,1,1,24,25]]],[17,1,1,25,26,[[467,1,1,25,26]]],[18,4,4,26,30,[[485,1,1,26,27],[523,1,1,27,28],[566,1,1,28,29],[596,1,1,29,30]]],[19,2,2,30,32,[[645,1,1,30,31],[649,1,1,31,32]]],[22,10,8,32,40,[[691,1,1,32,33],[692,2,1,33,34],[694,1,1,34,35],[695,1,1,35,36],[699,1,1,36,37],[702,2,1,37,38],[708,1,1,38,39],[711,1,1,39,40]]],[23,6,6,40,46,[[751,1,1,40,41],[760,1,1,41,42],[775,1,1,42,43],[780,1,1,43,44],[792,2,2,44,46]]],[24,2,2,46,48,[[801,2,2,46,48]]],[25,13,13,48,61,[[807,1,1,48,49],[808,1,1,49,50],[813,1,1,50,51],[817,1,1,51,52],[824,2,2,52,54],[827,1,1,54,55],[831,3,3,55,58],[834,1,1,58,59],[835,2,2,59,61]]],[26,2,2,61,63,[[858,1,1,61,62],[860,1,1,62,63]]],[27,3,3,63,66,[[862,1,1,63,64],[863,1,1,64,65],[868,1,1,65,66]]],[29,1,1,66,67,[[886,1,1,66,67]]]],[32,33,205,1637,1831,1977,2156,2437,2517,2775,3434,3471,3530,3558,3559,5784,5946,6451,7204,10170,10176,11514,12014,12370,12404,13629,14014,14623,15370,16017,16919,17025,17917,17932,17979,17986,18037,18103,18228,18287,19153,19345,19727,19871,20113,20115,20456,20457,20569,20601,20703,20803,21034,21055,21113,21214,21217,21222,21308,21323,21338,22015,22054,22098,22116,22182,22485]]],["+",[4,4,[[1,1,1,0,1,[[54,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[11,2,2,2,4,[[335,2,2,2,4]]]],[1637,3559,10170,10176]]],["away",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[1831,16017]]],["cease",[37,37,[[0,1,1,0,1,[[7,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[5,1,1,2,3,[[208,1,1,2,3]]],[13,1,1,3,4,[[382,1,1,3,4]]],[15,2,2,4,6,[[416,1,1,4,5],[418,1,1,5,6]]],[18,2,2,6,8,[[523,1,1,6,7],[566,1,1,7,8]]],[19,2,2,8,10,[[645,1,1,8,9],[649,1,1,9,10]]],[22,5,5,10,15,[[691,1,1,10,11],[694,1,1,11,12],[695,1,1,12,13],[699,1,1,13,14],[708,1,1,14,15]]],[23,5,5,15,20,[[751,1,1,15,16],[760,1,1,16,17],[775,1,1,17,18],[780,1,1,18,19],[792,1,1,19,20]]],[25,13,13,20,33,[[807,1,1,20,21],[808,1,1,21,22],[813,1,1,22,23],[817,1,1,23,24],[824,2,2,24,26],[827,1,1,26,27],[831,3,3,27,30],[834,1,1,30,31],[835,2,2,31,33]]],[26,2,2,33,35,[[858,1,1,33,34],[860,1,1,34,35]]],[27,2,2,35,37,[[862,1,1,35,36],[863,1,1,36,37]]]],[205,5784,6451,11514,12370,12404,14623,15370,16919,17025,17917,17979,17986,18037,18228,19153,19345,19727,19871,20115,20569,20601,20703,20803,21034,21055,21113,21214,21217,21222,21308,21323,21338,22015,22054,22098,22116]]],["ceased",[6,5,[[5,1,1,0,1,[[191,1,1,0,1]]],[17,1,1,1,2,[[467,1,1,1,2]]],[22,2,1,2,3,[[692,2,1,2,3]]],[24,2,2,3,5,[[801,2,2,3,5]]]],[5946,13629,17932,20456,20457]]],["ceaseth",[4,3,[[22,3,2,0,2,[[702,2,1,0,1],[711,1,1,1,2]]],[27,1,1,2,3,[[868,1,1,2,3]]]],[18103,18287,22182]]],["celebrate",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3434]]],["fail",[2,2,[[23,1,1,0,1,[[792,1,1,0,1]]],[29,1,1,1,2,[[886,1,1,1,2]]]],[20113,22485]]],["keep",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3471]]],["lacking",[1,1,[[2,1,1,0,1,[[91,1,1,0,1]]]],[2775]]],["left",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7204]]],["rest",[5,4,[[1,3,2,0,2,[[72,1,1,0,1],[83,2,1,1,2]]],[2,2,2,2,4,[[115,2,2,2,4]]]],[2156,2517,3558,3559]]],["rested",[4,4,[[0,2,2,0,2,[[1,2,2,0,2]]],[1,2,2,2,4,[[65,1,1,2,3],[80,1,1,3,4]]]],[32,33,1977,2437]]],["rid",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3530]]],["sabbath",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[12014]]],["still",[1,1,[[18,1,1,0,1,[[485,1,1,0,1]]]],[14014]]]]},{"k":"H7674","v":[["*",[3,3,[[1,1,1,0,1,[[70,1,1,0,1]]],[19,1,1,1,2,[[647,1,1,1,2]]],[22,1,1,2,3,[[708,1,1,2,3]]]],[2096,16957,18224]]],["cease",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16957]]],["still",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18224]]],["time",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2096]]]]},{"k":"H7675","v":[["*",[7,7,[[3,1,1,0,1,[[137,1,1,0,1]]],[9,2,2,1,3,[[289,2,2,1,3]]],[10,1,1,3,4,[[300,1,1,3,4]]],[13,1,1,4,5,[[375,1,1,4,5]]],[29,1,1,5,6,[[884,1,1,5,6]]],[30,1,1,6,7,[[888,1,1,6,7]]]],[4355,8660,8661,9098,11382,22453,22513]]],["dwelling",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4355]]],["habitation",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22513]]],["place",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8660]]],["seat",[3,3,[[9,1,1,0,1,[[289,1,1,0,1]]],[10,1,1,1,2,[[300,1,1,1,2]]],[29,1,1,2,3,[[884,1,1,2,3]]]],[8661,9098,22453]]],["sitting",[1,1,[[13,1,1,0,1,[[375,1,1,0,1]]]],[11382]]]]},{"k":"H7676","v":[["*",[110,88,[[1,15,13,0,13,[[65,4,4,0,4],[69,3,3,4,7],[80,6,4,7,11],[84,2,2,11,13]]],[2,25,18,13,31,[[105,1,1,13,14],[108,2,2,14,16],[112,9,6,16,22],[113,2,1,22,23],[114,6,4,23,27],[115,5,4,27,31]]],[3,4,3,31,34,[[131,1,1,31,32],[144,3,2,32,34]]],[4,3,3,34,37,[[157,3,3,34,37]]],[11,6,5,37,42,[[316,1,1,37,38],[323,4,3,38,41],[328,1,1,41,42]]],[12,3,2,42,44,[[346,2,1,42,43],[360,1,1,43,44]]],[13,7,6,44,50,[[368,1,1,44,45],[374,1,1,45,46],[389,3,2,46,48],[397,1,1,48,49],[402,1,1,49,50]]],[15,14,10,50,60,[[421,1,1,50,51],[422,3,2,51,53],[425,10,7,53,60]]],[22,8,6,60,66,[[679,1,1,60,61],[734,3,3,61,64],[736,2,1,64,65],[744,2,1,65,66]]],[23,7,4,66,70,[[761,7,4,66,70]]],[24,1,1,70,71,[[798,1,1,70,71]]],[25,15,15,71,86,[[821,6,6,71,77],[823,2,2,77,79],[824,1,1,79,80],[845,1,1,80,81],[846,1,1,81,82],[847,4,4,82,86]]],[27,1,1,86,87,[[863,1,1,86,87]]],[29,1,1,87,88,[[886,1,1,87,88]]]],[1970,1972,1973,1976,2059,2061,2062,2433,2434,2435,2436,2533,2534,3232,3284,3311,3405,3413,3417,3418,3434,3440,3454,3471,3473,3475,3477,3526,3558,3559,3567,4185,4586,4587,5065,5067,5068,9626,9834,9836,9838,9981,10647,11014,11215,11359,11660,11664,11857,12014,12525,12580,12582,12686,12687,12688,12689,12690,12692,12693,17667,18755,18757,18759,18799,18945,19378,19379,19381,19384,20338,20907,20908,20911,20915,20916,20919,20984,21002,21045,21623,21647,21656,21658,21659,21667,22116,22486]]],["+",[9,6,[[2,2,1,0,1,[[113,2,1,0,1]]],[3,2,1,1,2,[[144,2,1,1,2]]],[12,2,1,2,3,[[346,2,1,2,3]]],[22,1,1,3,4,[[736,1,1,3,4]]],[25,2,2,4,6,[[823,1,1,4,5],[847,1,1,5,6]]]],[3454,4587,10647,18799,21002,21656]]],["another",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18945]]],["sabbath",[67,53,[[1,14,12,0,12,[[65,4,4,0,4],[69,3,3,4,7],[80,5,3,7,10],[84,2,2,10,12]]],[2,12,9,12,21,[[105,1,1,12,13],[112,7,5,13,18],[114,4,3,18,21]]],[3,2,2,21,23,[[131,1,1,21,22],[144,1,1,22,23]]],[4,3,3,23,26,[[157,3,3,23,26]]],[11,6,5,26,31,[[316,1,1,26,27],[323,4,3,27,30],[328,1,1,30,31]]],[13,3,2,31,33,[[389,3,2,31,33]]],[15,13,9,33,42,[[421,1,1,33,34],[422,2,1,34,35],[425,10,7,35,42]]],[22,4,4,42,46,[[734,2,2,42,44],[736,1,1,44,45],[744,1,1,45,46]]],[23,7,4,46,50,[[761,7,4,46,50]]],[25,2,2,50,52,[[847,2,2,50,52]]],[29,1,1,52,53,[[886,1,1,52,53]]]],[1970,1972,1973,1976,2059,2061,2062,2434,2435,2436,2533,2534,3232,3405,3413,3417,3418,3434,3471,3473,3475,4185,4586,5065,5067,5068,9626,9834,9836,9838,9981,11660,11664,12525,12580,12686,12687,12688,12689,12690,12692,12693,18755,18759,18799,18945,19378,19379,19381,19384,21659,21667,22486]]],["sabbaths",[33,31,[[1,1,1,0,1,[[80,1,1,0,1]]],[2,11,9,1,10,[[108,2,2,1,3],[112,2,2,3,5],[114,2,1,5,6],[115,5,4,6,10]]],[12,1,1,10,11,[[360,1,1,10,11]]],[13,4,4,11,15,[[368,1,1,11,12],[374,1,1,12,13],[397,1,1,13,14],[402,1,1,14,15]]],[15,1,1,15,16,[[422,1,1,15,16]]],[22,2,2,16,18,[[679,1,1,16,17],[734,1,1,17,18]]],[24,1,1,18,19,[[798,1,1,18,19]]],[25,11,11,19,30,[[821,6,6,19,25],[823,1,1,25,26],[824,1,1,26,27],[845,1,1,27,28],[846,1,1,28,29],[847,1,1,29,30]]],[27,1,1,30,31,[[863,1,1,30,31]]]],[2433,3284,3311,3417,3440,3477,3526,3558,3559,3567,11014,11215,11359,11857,12014,12582,17667,18757,20338,20907,20908,20911,20915,20916,20919,20984,21045,21623,21647,21658,22116]]]]},{"k":"H7677","v":[["*",[11,10,[[1,3,3,0,3,[[65,1,1,0,1],[80,1,1,1,2],[84,1,1,2,3]]],[2,8,7,3,10,[[105,1,1,3,4],[112,5,4,4,8],[114,2,2,8,10]]]],[1970,2435,2533,3232,3405,3426,3434,3441,3473,3474]]],["rest",[8,8,[[1,3,3,0,3,[[65,1,1,0,1],[80,1,1,1,2],[84,1,1,2,3]]],[2,5,5,3,8,[[105,1,1,3,4],[112,2,2,4,6],[114,2,2,6,8]]]],[1970,2435,2533,3232,3405,3434,3473,3474]]],["sabbath",[3,2,[[2,3,2,0,2,[[112,3,2,0,2]]]],[3426,3441]]]]},{"k":"H7678","v":[["Shabbethai",[3,3,[[14,1,1,0,1,[[412,1,1,0,1]]],[15,2,2,1,3,[[420,1,1,1,2],[423,1,1,2,3]]]],[12267,12500,12604]]]]},{"k":"H7679","v":[["*",[2,2,[[17,2,2,0,2,[[447,1,1,0,1],[471,1,1,1,2]]]],[13151,13760]]],["increaseth",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13151]]],["magnify",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13760]]]]},{"k":"H7680","v":[["*",[3,3,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,2,2,1,3,[[853,1,1,1,2],[855,1,1,2,3]]]],[12132,21838,21930]]],["grow",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12132]]],["multiplied",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[855,1,1,1,2]]]],[21838,21930]]]]},{"k":"H7681","v":[["Shage",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10707]]]]},{"k":"H7682","v":[["*",[20,20,[[4,1,1,0,1,[[154,1,1,0,1]]],[17,2,2,1,3,[[440,1,1,1,2],[471,1,1,2,3]]],[18,7,7,3,10,[[497,1,1,3,4],[536,1,1,4,5],[546,1,1,5,6],[568,1,1,6,7],[584,1,1,7,8],[616,1,1,8,9],[625,1,1,9,10]]],[19,3,3,10,13,[[645,2,2,10,12],[656,1,1,12,13]]],[22,7,7,13,20,[[680,2,2,13,15],[687,1,1,15,16],[690,1,1,16,17],[704,1,1,17,18],[708,1,1,18,19],[711,1,1,19,20]]]],[4974,12962,13758,14183,14791,14964,15409,15740,16245,16384,16911,16912,17249,17696,17702,17840,17904,18135,18230,18284]]],["+",[2,2,[[18,1,1,0,1,[[584,1,1,0,1]]],[22,1,1,1,2,[[687,1,1,1,2]]]],[15740,17840]]],["defend",[2,2,[[18,2,2,0,2,[[497,1,1,0,1],[536,1,1,1,2]]]],[14183,14791]]],["exalted",[5,5,[[17,1,1,0,1,[[440,1,1,0,1]]],[22,4,4,1,5,[[680,2,2,1,3],[690,1,1,3,4],[711,1,1,4,5]]]],[12962,17696,17702,17904,18284]]],["exalteth",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13758]]],["excellent",[1,1,[[18,1,1,0,1,[[625,1,1,0,1]]]],[16384]]],["high",[5,5,[[18,3,3,0,3,[[546,1,1,0,1],[568,1,1,1,2],[616,1,1,2,3]]],[19,1,1,3,4,[[645,1,1,3,4]]],[22,1,1,4,5,[[708,1,1,4,5]]]],[14964,15409,16245,16912,18230]]],["lofty",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18135]]],["safe",[2,2,[[19,2,2,0,2,[[645,1,1,0,1],[656,1,1,1,2]]]],[16911,17249]]],["strong",[1,1,[[4,1,1,0,1,[[154,1,1,0,1]]]],[4974]]]]},{"k":"H7683","v":[["*",[4,4,[[2,1,1,0,1,[[94,1,1,0,1]]],[3,1,1,1,2,[[131,1,1,1,2]]],[17,1,1,2,3,[[447,1,1,2,3]]],[18,1,1,3,4,[[596,1,1,3,4]]]],[2848,4181,13144,15965]]],["astray",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15965]]],["deceived",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13144]]],["erred",[1,1,[[2,1,1,0,1,[[94,1,1,0,1]]]],[2848]]],["ignorantly",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4181]]]]},{"k":"H7684","v":[["*",[19,18,[[2,6,6,0,6,[[93,3,3,0,3],[94,2,2,3,5],[111,1,1,5,6]]],[3,9,8,6,14,[[131,7,6,6,12],[151,2,2,12,14]]],[5,2,2,14,16,[[206,2,2,14,16]]],[20,2,2,16,18,[[663,1,1,16,17],[668,1,1,17,18]]]],[2797,2817,2822,2845,2848,3383,4177,4178,4179,4180,4181,4182,4856,4860,6375,6381,17403,17498]]],["error",[2,2,[[20,2,2,0,2,[[663,1,1,0,1],[668,1,1,1,2]]]],[17403,17498]]],["ignorance",[12,11,[[2,5,5,0,5,[[93,3,3,0,3],[94,2,2,3,5]]],[3,7,6,5,11,[[131,7,6,5,11]]]],[2797,2817,2822,2845,2848,4177,4178,4179,4180,4181,4182]]],["unawares",[4,4,[[3,2,2,0,2,[[151,2,2,0,2]]],[5,2,2,2,4,[[206,2,2,2,4]]]],[4856,4860,6375,6381]]],["unwittingly",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3383]]]]},{"k":"H7685","v":[["*",[4,4,[[17,2,2,0,2,[[443,2,2,0,2]]],[18,2,2,2,4,[[550,1,1,2,3],[569,1,1,3,4]]]],[13036,13040,15032,15423]]],["grow",[2,2,[[17,1,1,0,1,[[443,1,1,0,1]]],[18,1,1,1,2,[[569,1,1,1,2]]]],[13040,15423]]],["increase",[2,2,[[17,1,1,0,1,[[443,1,1,0,1]]],[18,1,1,1,2,[[550,1,1,1,2]]]],[13036,15032]]]]},{"k":"H7686","v":[["*",[21,19,[[2,1,1,0,1,[[93,1,1,0,1]]],[3,1,1,1,2,[[131,1,1,1,2]]],[4,1,1,2,3,[[179,1,1,2,3]]],[8,1,1,3,4,[[261,1,1,3,4]]],[17,3,3,4,7,[[441,1,1,4,5],[447,1,1,5,6],[454,1,1,6,7]]],[18,3,3,7,10,[[596,3,3,7,10]]],[19,6,6,10,16,[[632,3,3,10,13],[646,1,1,13,14],[647,1,1,14,15],[655,1,1,15,16]]],[22,3,1,16,17,[[706,3,1,16,17]]],[25,2,2,17,19,[[835,1,1,17,18],[846,1,1,18,19]]]],[2808,4175,5603,7926,13002,13144,13301,15908,15919,16016,16536,16537,16540,16952,16955,17206,18171,21319,21650]]],["astray",[2,2,[[19,2,2,0,2,[[632,1,1,0,1],[655,1,1,1,2]]]],[16540,17206]]],["deceived",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16955]]],["deceiver",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13144]]],["err",[4,4,[[18,2,2,0,2,[[596,2,2,0,2]]],[19,1,1,2,3,[[646,1,1,2,3]]],[22,1,1,3,4,[[706,1,1,3,4]]]],[15919,16016,16952,18171]]],["erred",[6,5,[[3,1,1,0,1,[[131,1,1,0,1]]],[8,1,1,1,2,[[261,1,1,1,2]]],[17,2,2,2,4,[[441,1,1,2,3],[454,1,1,3,4]]],[22,2,1,4,5,[[706,2,1,4,5]]]],[4175,7926,13002,13301,18171]]],["erreth",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21650]]],["ignorance",[1,1,[[2,1,1,0,1,[[93,1,1,0,1]]]],[2808]]],["ravished",[2,2,[[19,2,2,0,2,[[632,2,2,0,2]]]],[16536,16537]]],["wander",[2,2,[[4,1,1,0,1,[[179,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[5603,15908]]],["wandered",[1,1,[[25,1,1,0,1,[[835,1,1,0,1]]]],[21319]]]]},{"k":"H7687","v":[["Segub",[3,3,[[10,1,1,0,1,[[306,1,1,0,1]]],[12,2,2,1,3,[[339,2,2,1,3]]]],[9317,10327,10328]]]]},{"k":"H7688","v":[["*",[3,3,[[18,1,1,0,1,[[510,1,1,0,1]]],[21,1,1,1,2,[[672,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]]],[14380,17563,17944]]],["forth",[1,1,[[21,1,1,0,1,[[672,1,1,0,1]]]],[17563]]],["look",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17944]]],["looketh",[1,1,[[18,1,1,0,1,[[510,1,1,0,1]]]],[14380]]]]},{"k":"H7689","v":[["*",[2,2,[[17,2,2,0,2,[[471,1,1,0,1],[472,1,1,1,2]]]],[13762,13792]]],["excellent",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13792]]],["great",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13762]]]]},{"k":"H7690","v":[["*",[13,13,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,12,12,1,13,[[851,4,4,1,5],[853,3,3,5,8],[854,1,1,8,9],[855,2,2,9,11],[856,2,2,11,13]]]],[12145,21764,21770,21789,21806,21847,21849,21858,21883,21919,21928,21938,21961]]],["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21928]]],["great",[3,3,[[26,3,3,0,3,[[851,2,2,0,2],[853,1,1,2,3]]]],[21764,21789,21847]]],["greatly",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21883]]],["many",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[851,1,1,1,2]]]],[12145,21806]]],["much",[4,4,[[26,4,4,0,4,[[853,2,2,0,2],[856,2,2,2,4]]]],[21849,21858,21938,21961]]],["sore",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21919]]],["very",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21770]]]]},{"k":"H7691","v":[["errors",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14180]]]]},{"k":"H7692","v":[["Shigionoth",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22769]]]]},{"k":"H7693","v":[["ravished",[2,2,[[22,1,1,0,1,[[691,1,1,0,1]]],[37,1,1,1,2,[[924,1,1,1,2]]]],[17922,23070]]]]},{"k":"H7694","v":[["queen",[2,2,[[15,1,1,0,1,[[414,1,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]]],[12313,14606]]]]},{"k":"H7695","v":[["wives",[3,3,[[26,3,3,0,3,[[854,3,3,0,3]]]],[21876,21877,21897]]]]},{"k":"H7696","v":[["*",[7,6,[[4,1,1,0,1,[[180,1,1,0,1]]],[8,3,2,1,3,[[256,3,2,1,3]]],[11,1,1,3,4,[[321,1,1,3,4]]],[23,1,1,4,5,[[773,1,1,4,5]]],[27,1,1,5,6,[[870,1,1,5,6]]]],[5645,7786,7787,9767,19661,22215]]],["mad",[5,5,[[4,1,1,0,1,[[180,1,1,0,1]]],[8,1,1,1,2,[[256,1,1,1,2]]],[11,1,1,2,3,[[321,1,1,2,3]]],[23,1,1,3,4,[[773,1,1,3,4]]],[27,1,1,4,5,[[870,1,1,4,5]]]],[5645,7786,9767,19661,22215]]],["man",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7787]]],["men",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7787]]]]},{"k":"H7697","v":[["*",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[11,1,1,1,2,[[321,1,1,1,2]]],[37,1,1,2,3,[[922,1,1,2,3]]]],[5639,9776,23049]]],["furiously",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9776]]],["madness",[2,2,[[4,1,1,0,1,[[180,1,1,0,1]]],[37,1,1,1,2,[[922,1,1,1,2]]]],[5639,23049]]]]},{"k":"H7698","v":[["*",[5,5,[[1,1,1,0,1,[[62,1,1,0,1]]],[4,4,4,1,5,[[159,1,1,1,2],[180,3,3,2,5]]]],[1879,5124,5615,5629,5662]]],["cometh",[1,1,[[1,1,1,0,1,[[62,1,1,0,1]]]],[1879]]],["increase",[4,4,[[4,4,4,0,4,[[159,1,1,0,1],[180,3,3,1,4]]]],[5124,5615,5629,5662]]]]},{"k":"H7699","v":[["*",[24,24,[[0,1,1,0,1,[[48,1,1,0,1]]],[17,2,2,1,3,[[438,1,1,1,2],[459,1,1,2,3]]],[18,1,1,3,4,[[499,1,1,3,4]]],[21,8,8,4,12,[[671,1,1,4,5],[674,1,1,5,6],[677,3,3,6,9],[678,3,3,9,12]]],[22,4,4,12,16,[[706,1,1,12,13],[710,1,1,13,14],[738,1,1,14,15],[744,1,1,15,16]]],[24,1,1,16,17,[[800,1,1,16,17]]],[25,4,4,17,21,[[817,1,1,17,18],[824,3,3,18,21]]],[27,2,2,21,23,[[863,1,1,21,22],[870,1,1,22,23]]],[28,1,1,23,24,[[877,1,1,23,24]]]],[1498,12916,13445,14213,17550,17587,17630,17634,17635,17641,17648,17650,18173,18271,18837,18933,20423,20769,21010,21028,21041,22107,22222,22327]]],["+",[3,3,[[17,1,1,0,1,[[459,1,1,0,1]]],[22,2,2,1,3,[[706,1,1,1,2],[744,1,1,2,3]]]],[13445,18173,18933]]],["breast",[2,2,[[22,1,1,0,1,[[738,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[18837,20423]]],["breasts",[17,17,[[0,1,1,0,1,[[48,1,1,0,1]]],[17,1,1,1,2,[[438,1,1,1,2]]],[18,1,1,2,3,[[499,1,1,2,3]]],[21,8,8,3,11,[[671,1,1,3,4],[674,1,1,4,5],[677,3,3,5,8],[678,3,3,8,11]]],[25,3,3,11,14,[[817,1,1,11,12],[824,2,2,12,14]]],[27,2,2,14,16,[[863,1,1,14,15],[870,1,1,15,16]]],[28,1,1,16,17,[[877,1,1,16,17]]]],[1498,12916,14213,17550,17587,17630,17634,17635,17641,17648,17650,20769,21010,21041,22107,22222,22327]]],["paps",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21028]]],["teats",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18271]]]]},{"k":"H7700","v":[["devils",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]]],[5775,15688]]]]},{"k":"H7701","v":[["*",[25,24,[[17,2,2,0,2,[[440,2,2,0,2]]],[18,1,1,2,3,[[489,1,1,2,3]]],[19,2,2,3,5,[[648,1,1,3,4],[651,1,1,4,5]]],[22,6,6,5,11,[[691,1,1,5,6],[694,1,1,6,7],[700,1,1,7,8],[729,1,1,8,9],[737,1,1,9,10],[738,1,1,10,11]]],[23,3,3,11,14,[[750,1,1,11,12],[764,1,1,12,13],[792,1,1,13,14]]],[25,1,1,14,15,[[846,1,1,14,15]]],[27,4,4,15,19,[[868,1,1,15,16],[870,1,1,16,17],[871,1,1,17,18],[873,1,1,18,19]]],[28,1,1,19,20,[[876,1,1,19,20]]],[29,3,2,20,22,[[881,1,1,20,21],[883,2,1,21,22]]],[34,2,2,22,24,[[903,1,1,22,23],[904,1,1,23,24]]]],[12972,12973,14071,16991,17081,17912,17973,18056,18692,18807,18839,19096,19430,20083,21639,22191,22214,22239,22253,22306,22405,22432,22734,22765]]],["+",[3,3,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,1,1,1,2,[[489,1,1,1,2]]],[27,1,1,2,3,[[870,1,1,2,3]]]],[12972,14071,22214]]],["desolation",[2,2,[[22,1,1,0,1,[[729,1,1,0,1]]],[27,1,1,1,2,[[873,1,1,1,2]]]],[18692,22253]]],["destruction",[5,5,[[17,1,1,0,1,[[440,1,1,0,1]]],[19,1,1,1,2,[[651,1,1,1,2]]],[22,1,1,2,3,[[691,1,1,2,3]]],[27,1,1,3,4,[[868,1,1,3,4]]],[28,1,1,4,5,[[876,1,1,4,5]]]],[12973,17081,17912,22191,22306]]],["robbery",[2,2,[[19,1,1,0,1,[[648,1,1,0,1]]],[29,1,1,1,2,[[881,1,1,1,2]]]],[16991,22405]]],["spoil",[4,4,[[23,2,2,0,2,[[750,1,1,0,1],[764,1,1,1,2]]],[25,1,1,2,3,[[846,1,1,2,3]]],[34,1,1,3,4,[[904,1,1,3,4]]]],[19096,19430,21639,22765]]],["spoiled",[3,2,[[27,1,1,0,1,[[871,1,1,0,1]]],[29,2,1,1,2,[[883,2,1,1,2]]]],[22239,22432]]],["spoiler",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17973]]],["spoiling",[3,3,[[22,1,1,0,1,[[700,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]],[34,1,1,2,3,[[903,1,1,2,3]]]],[18056,20083,22734]]],["wasting",[2,2,[[22,2,2,0,2,[[737,1,1,0,1],[738,1,1,1,2]]]],[18807,18839]]]]},{"k":"H7702","v":[["*",[3,3,[[17,1,1,0,1,[[474,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]],[27,1,1,2,3,[[871,1,1,2,3]]]],[13844,18188,22236]]],["clods",[2,2,[[22,1,1,0,1,[[706,1,1,0,1]]],[27,1,1,1,2,[[871,1,1,1,2]]]],[18188,22236]]],["harrow",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13844]]]]},{"k":"H7703","v":[["*",[57,47,[[6,1,1,0,1,[[215,1,1,0,1]]],[17,2,2,1,3,[[447,1,1,1,2],[450,1,1,2,3]]],[18,2,2,3,5,[[494,1,1,3,4],[614,1,1,4,5]]],[19,3,3,5,8,[[638,1,1,5,6],[646,1,1,6,7],[651,1,1,7,8]]],[22,11,6,8,14,[[693,2,1,8,9],[694,1,1,9,10],[699,2,1,10,11],[701,2,2,11,13],[711,4,1,13,14]]],[23,26,24,14,38,[[748,4,3,14,17],[749,1,1,17,18],[750,1,1,18,19],[753,1,1,19,20],[754,1,1,20,21],[756,1,1,21,22],[759,1,1,22,23],[769,1,1,23,24],[791,2,1,24,25],[792,6,6,25,31],[793,3,3,31,34],[795,4,4,34,38]]],[25,1,1,38,39,[[833,1,1,38,39]]],[27,2,2,39,41,[[871,2,2,39,41]]],[28,2,1,41,42,[[876,2,1,41,42]]],[30,1,1,42,43,[[888,1,1,42,43]]],[32,2,1,43,44,[[894,2,1,43,44]]],[33,1,1,44,45,[[902,1,1,44,45]]],[37,3,2,45,47,[[921,3,2,45,47]]]],[6650,13134,13224,14112,16230,16691,16951,17094,17961,17973,18037,18078,18091,18280,19040,19047,19057,19064,19115,19194,19221,19261,19323,19570,20077,20081,20088,20095,20098,20100,20112,20130,20137,20155,20260,20265,20267,20268,21260,22227,22239,22301,22515,22599,22719,23030,23031]]],["+",[8,6,[[23,5,4,0,4,[[769,1,1,0,1],[791,2,1,1,2],[793,1,1,2,3],[795,1,1,3,4]]],[25,1,1,4,5,[[833,1,1,4,5]]],[32,2,1,5,6,[[894,2,1,5,6]]]],[19570,20077,20155,20267,21260,22599]]],["dead",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6650]]],["destroy",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16691]]],["destroyed",[1,1,[[18,1,1,0,1,[[614,1,1,0,1]]]],[16230]]],["destroyer",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13224]]],["oppress",[1,1,[[18,1,1,0,1,[[494,1,1,0,1]]]],[14112]]],["robbers",[2,2,[[17,1,1,0,1,[[447,1,1,0,1]]],[30,1,1,1,2,[[888,1,1,1,2]]]],[13134,22515]]],["spoil",[4,4,[[19,1,1,0,1,[[651,1,1,0,1]]],[22,1,1,1,2,[[711,1,1,1,2]]],[23,1,1,2,3,[[749,1,1,2,3]]],[27,1,1,3,4,[[871,1,1,3,4]]]],[17094,18280,19064,22227]]],["spoiled",[17,14,[[22,2,1,0,1,[[711,2,1,0,1]]],[23,11,10,1,11,[[748,4,3,1,4],[753,1,1,4,5],[754,1,1,5,6],[792,3,3,6,9],[793,2,2,9,11]]],[27,1,1,11,12,[[871,1,1,11,12]]],[37,3,2,12,14,[[921,3,2,12,14]]]],[18280,19040,19047,19057,19194,19221,20081,20095,20100,20130,20137,22239,23030,23031]]],["spoiler",[8,8,[[22,2,2,0,2,[[694,1,1,0,1],[699,1,1,1,2]]],[23,6,6,2,8,[[750,1,1,2,3],[759,1,1,3,4],[792,3,3,4,7],[795,1,1,7,8]]]],[17973,18037,19115,19323,20088,20098,20112,20268]]],["spoilers",[3,3,[[23,3,3,0,3,[[756,1,1,0,1],[795,2,2,1,3]]]],[19261,20260,20265]]],["spoilest",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18280]]],["spoileth",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18037]]],["waste",[5,4,[[22,4,3,0,3,[[693,2,1,0,1],[701,2,2,1,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[17961,18078,18091,22719]]],["wasted",[2,1,[[28,2,1,0,1,[[876,2,1,0,1]]]],[22301]]],["wasteth",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16951]]]]},{"k":"H7704","v":[["*",[333,309,[[0,48,43,0,43,[[1,4,3,0,3],[2,3,3,3,6],[3,1,1,6,7],[13,1,1,7,8],[22,8,6,8,14],[23,2,2,14,16],[24,4,4,16,20],[26,3,3,20,23],[28,1,1,23,24],[29,2,2,24,26],[30,1,1,26,27],[31,1,1,27,28],[32,1,1,28,29],[33,3,3,29,32],[35,1,1,32,33],[36,2,2,33,35],[38,1,1,35,36],[40,1,1,36,37],[46,2,2,37,39],[48,4,3,39,42],[49,2,1,42,43]]],[1,22,16,43,59,[[50,1,1,43,44],[57,1,1,44,45],[58,8,5,45,50],[59,2,2,50,52],[65,1,1,52,53],[71,5,3,53,56],[72,4,3,56,59]]],[2,25,22,59,81,[[103,2,2,59,61],[106,1,1,61,62],[108,2,2,62,64],[112,1,1,64,65],[114,5,5,65,70],[115,2,2,70,72],[116,12,9,72,81]]],[3,8,8,81,89,[[132,1,1,81,82],[135,1,1,82,83],[136,1,1,83,84],[137,2,2,84,86],[138,2,2,86,88],[139,1,1,88,89]]],[4,14,13,89,102,[[157,1,1,89,90],[159,1,1,90,91],[163,1,1,91,92],[166,1,1,92,93],[172,1,1,93,94],[173,1,1,94,95],[174,2,2,95,97],[176,2,1,97,98],[180,3,3,98,101],[184,1,1,101,102]]],[5,4,4,102,106,[[194,1,1,102,103],[201,1,1,103,104],[207,1,1,104,105],[210,1,1,105,106]]],[6,12,12,106,118,[[211,1,1,106,107],[215,2,2,107,109],[219,5,5,109,114],[223,1,1,114,115],[229,1,1,115,116],[230,2,2,116,118]]],[7,16,13,118,131,[[232,5,4,118,122],[233,8,7,122,129],[235,3,2,129,131]]],[8,22,21,131,152,[[239,1,1,131,132],[241,3,3,132,135],[243,1,1,135,136],[246,1,1,136,137],[249,3,3,137,140],[252,1,1,140,141],[254,1,1,141,142],[255,5,4,142,146],[257,1,1,146,147],[260,1,1,147,148],[262,3,3,148,151],[265,1,1,151,152]]],[9,13,13,152,165,[[267,1,1,152,153],[268,1,1,153,154],[275,1,1,154,155],[276,1,1,155,156],[277,2,2,156,158],[280,1,1,158,159],[283,1,1,159,160],[284,1,1,160,161],[285,1,1,161,162],[286,1,1,162,163],[287,1,1,163,164],[289,1,1,164,165]]],[10,5,5,165,170,[[292,1,1,165,166],[301,1,1,166,167],[304,1,1,167,168],[306,1,1,168,169],[311,1,1,169,170]]],[11,12,10,170,180,[[316,3,1,170,171],[319,1,1,171,172],[320,3,3,172,175],[321,2,2,175,177],[326,1,1,177,178],[330,1,1,178,179],[331,1,1,179,180]]],[12,8,8,180,188,[[338,1,1,180,181],[343,1,1,181,182],[345,1,1,182,183],[348,1,1,183,184],[353,1,1,184,185],[356,1,1,185,186],[364,2,2,186,188]]],[13,4,4,188,192,[[391,1,1,188,189],[392,1,1,189,190],[397,2,2,190,192]]],[15,10,10,192,202,[[417,5,5,192,197],[423,2,2,197,199],[424,2,2,199,201],[425,1,1,201,202]]],[17,5,4,202,206,[[440,2,1,202,203],[459,1,1,203,204],[474,1,1,204,205],[475,1,1,205,206]]],[18,10,10,206,216,[[485,1,1,206,207],[527,1,1,207,208],[555,2,2,208,210],[557,1,1,210,211],[573,1,1,211,212],[580,1,1,212,213],[581,1,1,213,214],[584,1,1,214,215],[609,1,1,215,216]]],[19,5,5,216,221,[[650,1,1,216,217],[651,2,2,217,219],[654,1,1,219,220],[658,1,1,220,221]]],[20,1,1,221,222,[[663,1,1,221,222]]],[21,3,3,222,225,[[672,1,1,222,223],[673,1,1,223,224],[677,1,1,224,225]]],[22,10,9,225,234,[[683,2,1,225,226],[685,1,1,226,227],[710,1,1,227,228],[714,1,1,228,229],[715,1,1,229,230],[718,1,1,230,231],[721,1,1,231,232],[733,1,1,232,233],[734,1,1,233,234]]],[23,27,27,234,261,[[748,1,1,234,235],[750,2,2,235,237],[751,1,1,237,238],[752,1,1,238,239],[753,1,1,239,240],[756,2,2,240,242],[757,1,1,242,243],[758,2,2,243,245],[761,1,1,245,246],[762,1,1,246,247],[770,1,1,247,248],[771,1,1,248,249],[772,1,1,249,250],[776,7,7,250,257],[779,1,1,257,258],[784,2,2,258,260],[785,1,1,260,261]]],[24,1,1,261,262,[[800,1,1,261,262]]],[25,26,26,262,288,[[808,1,1,262,263],[817,2,2,263,265],[818,3,3,265,268],[821,1,1,268,269],[827,2,2,269,271],[830,1,1,271,272],[832,5,5,272,277],[833,1,1,277,278],[834,1,1,278,279],[835,3,3,279,282],[837,1,1,282,283],[839,1,1,283,284],[840,4,4,284,288]]],[27,7,7,288,295,[[863,2,2,288,290],[865,1,1,290,291],[871,1,1,291,292],[873,2,2,292,294],[874,1,1,294,295]]],[28,6,6,295,301,[[876,5,5,295,300],[877,1,1,300,301]]],[30,2,1,301,302,[[888,2,1,301,302]]],[32,5,5,302,307,[[893,1,1,302,303],[894,2,2,303,305],[895,1,1,305,306],[896,1,1,306,307]]],[37,1,1,307,308,[[920,1,1,307,308]]],[38,1,1,308,309,[[927,1,1,308,309]]]],[35,49,50,56,69,73,87,343,580,582,584,588,590,591,654,656,667,668,685,687,730,732,754,797,844,846,877,931,979,985,987,1008,1075,1090,1098,1154,1243,1440,1444,1502,1503,1505,1519,1546,1723,1745,1761,1763,1764,1767,1782,1792,1972,2118,2119,2144,2155,2160,2173,3118,3164,3240,3290,3300,3424,3472,3473,3481,3500,3503,3528,3546,3586,3587,3588,3589,3590,3591,3592,3594,3598,4208,4305,4328,4360,4362,4379,4398,4430,5074,5133,5223,5312,5446,5448,5495,5497,5544,5614,5627,5649,5771,6026,6220,6393,6508,6523,6627,6641,6781,6786,6796,6797,6798,6893,7040,7060,7085,7128,7129,7133,7149,7151,7152,7155,7157,7158,7166,7171,7193,7195,7299,7332,7345,7349,7383,7450,7522,7523,7533,7662,7709,7735,7741,7754,7765,7794,7876,7935,7937,7941,7989,8043,8067,8234,8248,8270,8282,8362,8457,8484,8540,8566,8590,8664,8796,9137,9229,9287,9475,9642,9719,9730,9732,9733,9781,9793,9905,10041,10087,10298,10510,10583,10686,10852,10916,11134,11135,11722,11755,11859,11873,12385,12386,12387,12393,12398,12613,12618,12653,12668,12681,12974,13442,13849,13884,14019,14679,15125,15156,15211,15477,15564,15582,15736,16157,17054,17106,17109,17195,17300,17406,17561,17576,17638,17747,17785,18271,18332,18379,18426,18525,18752,18762,19044,19101,19114,19139,19163,19197,19253,19258,19293,19298,19311,19360,19398,19590,19602,19632,19738,19739,19740,19746,19756,19774,19775,19832,19948,19954,19965,20429,20592,20767,20769,20830,20833,20849,20941,21106,21108,21188,21234,21235,21236,21243,21245,21252,21307,21318,21321,21340,21389,21445,21452,21453,21458,21465,22117,22123,22136,22229,22263,22264,22274,22301,22302,22303,22310,22311,22333,22529,22585,22597,22599,22620,22630,23017,23131]]],["+",[11,11,[[1,1,1,0,1,[[50,1,1,0,1]]],[2,3,3,1,4,[[116,3,3,1,4]]],[6,1,1,4,5,[[215,1,1,4,5]]],[7,4,4,5,9,[[232,2,2,5,7],[233,1,1,7,8],[235,1,1,8,9]]],[9,1,1,9,10,[[268,1,1,9,10]]],[15,1,1,10,11,[[424,1,1,10,11]]]],[1546,3586,3592,3598,6627,7133,7149,7155,7193,8067,12653]]],["country",[13,13,[[0,2,2,0,2,[[13,1,1,0,1],[31,1,1,1,2]]],[3,1,1,2,3,[[137,1,1,2,3]]],[6,1,1,3,4,[[230,1,1,3,4]]],[7,3,3,4,7,[[232,3,3,4,7]]],[8,4,4,7,11,[[241,1,1,7,8],[262,3,3,8,11]]],[12,1,1,11,12,[[345,1,1,11,12]]],[27,1,1,12,13,[[873,1,1,12,13]]]],[343,931,4360,7060,7128,7129,7133,7332,7935,7937,7941,10583,22264]]],["field",[242,224,[[0,46,41,0,41,[[1,4,3,0,3],[2,3,3,3,6],[3,1,1,6,7],[22,8,6,7,13],[23,2,2,13,15],[24,4,4,15,19],[26,3,3,19,22],[28,1,1,22,23],[29,2,2,23,25],[30,1,1,25,26],[32,1,1,26,27],[33,3,3,27,30],[35,1,1,30,31],[36,2,2,31,33],[38,1,1,33,34],[40,1,1,34,35],[46,2,2,35,37],[48,4,3,37,40],[49,2,1,40,41]]],[1,20,14,41,55,[[58,8,5,41,46],[59,2,2,46,48],[65,1,1,48,49],[71,5,3,49,52],[72,4,3,52,55]]],[2,19,17,55,72,[[103,1,1,55,56],[106,1,1,56,57],[108,2,2,57,59],[112,1,1,59,60],[114,4,4,60,64],[115,1,1,64,65],[116,9,7,65,72]]],[3,3,3,72,75,[[138,2,2,72,74],[139,1,1,74,75]]],[4,12,11,75,86,[[157,1,1,75,76],[159,1,1,76,77],[166,1,1,77,78],[172,1,1,78,79],[173,1,1,79,80],[174,2,2,80,82],[176,2,1,82,83],[180,3,3,83,86]]],[5,2,2,86,88,[[194,1,1,86,87],[201,1,1,87,88]]],[6,8,8,88,96,[[211,1,1,88,89],[215,1,1,89,90],[219,3,3,90,93],[223,1,1,93,94],[229,1,1,94,95],[230,1,1,95,96]]],[7,8,7,96,103,[[233,7,6,96,102],[235,1,1,102,103]]],[8,13,12,103,115,[[239,1,1,103,104],[241,2,2,104,106],[246,1,1,106,107],[249,1,1,107,108],[252,1,1,108,109],[254,1,1,109,110],[255,5,4,110,114],[265,1,1,114,115]]],[9,7,7,115,122,[[276,1,1,115,116],[277,1,1,116,117],[280,1,1,117,118],[283,1,1,118,119],[284,1,1,119,120],[286,1,1,120,121],[287,1,1,121,122]]],[10,3,3,122,125,[[301,1,1,122,123],[304,1,1,123,124],[311,1,1,124,125]]],[11,7,7,125,132,[[316,1,1,125,126],[319,1,1,126,127],[320,1,1,127,128],[321,2,2,128,130],[330,1,1,130,131],[331,1,1,131,132]]],[12,3,3,132,135,[[338,1,1,132,133],[356,1,1,133,134],[364,1,1,134,135]]],[13,2,2,135,137,[[392,1,1,135,136],[397,1,1,136,137]]],[15,1,1,137,138,[[425,1,1,137,138]]],[17,4,3,138,141,[[440,2,1,138,139],[459,1,1,139,140],[475,1,1,140,141]]],[18,8,8,141,149,[[485,1,1,141,142],[527,1,1,142,143],[555,2,2,143,145],[557,1,1,145,146],[573,1,1,146,147],[580,1,1,147,148],[581,1,1,148,149]]],[19,4,4,149,153,[[651,2,2,149,151],[654,1,1,151,152],[658,1,1,152,153]]],[20,1,1,153,154,[[663,1,1,153,154]]],[21,3,3,154,157,[[672,1,1,154,155],[673,1,1,155,156],[677,1,1,156,157]]],[22,9,8,157,165,[[683,2,1,157,158],[685,1,1,158,159],[714,1,1,159,160],[715,1,1,160,161],[718,1,1,161,162],[721,1,1,162,163],[733,1,1,163,164],[734,1,1,164,165]]],[23,19,19,165,184,[[748,1,1,165,166],[750,1,1,166,167],[751,1,1,167,168],[753,1,1,168,169],[756,2,2,169,171],[758,2,2,171,173],[761,1,1,173,174],[762,1,1,174,175],[770,1,1,175,176],[771,1,1,176,177],[772,1,1,177,178],[776,4,4,178,182],[779,1,1,182,183],[785,1,1,183,184]]],[24,1,1,184,185,[[800,1,1,184,185]]],[25,24,24,185,209,[[808,1,1,185,186],[817,2,2,186,188],[818,2,2,188,190],[821,1,1,190,191],[827,2,2,191,193],[832,5,5,193,198],[833,1,1,198,199],[834,1,1,199,200],[835,3,3,200,203],[837,1,1,203,204],[839,1,1,204,205],[840,4,4,205,209]]],[27,4,4,209,213,[[863,2,2,209,211],[865,1,1,211,212],[871,1,1,212,213]]],[28,6,6,213,219,[[876,5,5,213,218],[877,1,1,218,219]]],[32,3,3,219,222,[[893,1,1,219,220],[895,1,1,220,221],[896,1,1,221,222]]],[37,1,1,222,223,[[920,1,1,222,223]]],[38,1,1,223,224,[[927,1,1,223,224]]]],[35,49,50,56,69,73,87,580,582,584,588,590,591,654,656,667,668,685,687,730,732,754,797,844,846,877,979,985,987,1008,1075,1090,1098,1154,1243,1440,1444,1502,1503,1505,1519,1745,1761,1763,1764,1767,1782,1792,1972,2118,2119,2144,2155,2160,2173,3118,3240,3290,3300,3424,3472,3473,3481,3503,3528,3587,3588,3589,3590,3591,3592,3594,4379,4398,4430,5074,5133,5312,5446,5448,5495,5497,5544,5614,5627,5649,6026,6220,6523,6641,6786,6796,6797,6893,7040,7085,7151,7152,7157,7158,7166,7171,7195,7299,7345,7349,7450,7523,7662,7709,7735,7741,7754,7765,7989,8248,8282,8362,8457,8484,8566,8590,9137,9229,9475,9642,9719,9733,9781,9793,10041,10087,10298,10916,11135,11755,11859,12681,12974,13442,13884,14019,14679,15125,15156,15211,15477,15564,15582,17106,17109,17195,17300,17406,17561,17576,17638,17747,17785,18332,18379,18426,18525,18752,18762,19044,19114,19139,19197,19253,19258,19298,19311,19360,19398,19590,19602,19632,19738,19739,19740,19756,19832,19965,20429,20592,20767,20769,20830,20849,20941,21106,21108,21234,21235,21236,21243,21245,21252,21307,21318,21321,21340,21389,21445,21452,21453,21458,21465,22117,22123,22136,22229,22301,22302,22303,22310,22311,22333,22585,22620,22630,23017,23131]]],["fields",[44,43,[[1,1,1,0,1,[[57,1,1,0,1]]],[2,2,2,1,3,[[103,1,1,1,2],[114,1,1,2,3]]],[3,4,4,3,7,[[132,1,1,3,4],[135,1,1,4,5],[136,1,1,5,6],[137,1,1,6,7]]],[4,2,2,7,9,[[163,1,1,7,8],[184,1,1,8,9]]],[5,1,1,9,10,[[207,1,1,9,10]]],[6,2,2,10,12,[[219,2,2,10,12]]],[8,3,3,12,15,[[243,1,1,12,13],[257,1,1,13,14],[260,1,1,14,15]]],[9,2,2,15,17,[[267,1,1,15,16],[277,1,1,16,17]]],[10,2,2,17,19,[[292,1,1,17,18],[306,1,1,18,19]]],[12,3,3,19,22,[[343,1,1,19,20],[353,1,1,20,21],[364,1,1,21,22]]],[13,1,1,22,23,[[397,1,1,22,23]]],[15,3,3,23,26,[[423,2,2,23,25],[424,1,1,25,26]]],[18,2,2,26,28,[[584,1,1,26,27],[609,1,1,27,28]]],[19,1,1,28,29,[[650,1,1,28,29]]],[22,1,1,29,30,[[710,1,1,29,30]]],[23,8,8,30,38,[[750,1,1,30,31],[752,1,1,31,32],[757,1,1,32,33],[776,3,3,33,36],[784,2,2,36,38]]],[25,1,1,38,39,[[830,1,1,38,39]]],[27,1,1,39,40,[[873,1,1,39,40]]],[30,2,1,40,41,[[888,2,1,40,41]]],[32,2,2,41,43,[[894,2,2,41,43]]]],[1723,3164,3500,4208,4305,4328,4362,5223,5771,6393,6781,6798,7383,7794,7876,8043,8270,8796,9287,10510,10852,11134,11873,12613,12618,12668,15736,16157,17054,18271,19101,19163,19293,19746,19774,19775,19948,19954,21188,22263,22529,22597,22599]]],["ground",[4,4,[[5,1,1,0,1,[[210,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[12,1,1,3,4,[[348,1,1,3,4]]]],[6508,7533,8664,10686]]],["land",[7,7,[[7,1,1,0,1,[[235,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[9,2,2,2,4,[[275,1,1,2,3],[285,1,1,3,4]]],[11,2,2,4,6,[[320,2,2,4,6]]],[15,1,1,6,7,[[417,1,1,6,7]]]],[7193,7522,8234,8540,9730,9732,12398]]],["lands",[4,4,[[15,4,4,0,4,[[417,4,4,0,4]]]],[12385,12386,12387,12393]]],["soil",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20833]]],["wild",[7,6,[[2,1,1,0,1,[[115,1,1,0,1]]],[11,3,2,1,3,[[316,2,1,1,2],[326,1,1,2,3]]],[13,1,1,3,4,[[391,1,1,3,4]]],[17,1,1,4,5,[[474,1,1,4,5]]],[27,1,1,5,6,[[874,1,1,5,6]]]],[3546,9642,9905,11722,13849,22274]]]]},{"k":"H7705","v":[["+",[2,1,[[20,2,1,0,1,[[660,2,1,0,1]]]],[17341]]]]},{"k":"H7706","v":[["*",[48,48,[[0,6,6,0,6,[[16,1,1,0,1],[27,1,1,1,2],[34,1,1,2,3],[42,1,1,3,4],[47,1,1,4,5],[48,1,1,5,6]]],[1,1,1,6,7,[[55,1,1,6,7]]],[3,2,2,7,9,[[140,2,2,7,9]]],[7,2,2,9,11,[[232,2,2,9,11]]],[17,31,31,11,42,[[440,1,1,11,12],[441,2,2,12,14],[443,2,2,14,16],[446,1,1,16,17],[448,1,1,17,18],[450,1,1,18,19],[456,2,2,19,21],[457,5,5,21,26],[458,1,1,26,27],[459,1,1,27,28],[462,4,4,28,32],[464,1,1,32,33],[466,2,2,33,35],[467,1,1,35,36],[468,1,1,36,37],[469,2,2,37,39],[470,1,1,39,40],[472,1,1,40,41],[475,1,1,41,42]]],[18,2,2,42,44,[[545,1,1,42,43],[568,1,1,43,44]]],[22,1,1,44,45,[[691,1,1,44,45]]],[25,2,2,45,47,[[802,1,1,45,46],[811,1,1,46,47]]],[28,1,1,47,48,[[876,1,1,47,48]]]],[398,776,1022,1304,1454,1498,1658,4450,4462,7147,7148,12968,12982,12992,13032,13034,13115,13156,13228,13370,13375,13392,13406,13412,13414,13415,13435,13437,13483,13491,13492,13494,13537,13590,13623,13636,13654,13693,13695,13733,13792,13866,14914,15396,17912,20488,20638,22306]]],["+",[4,4,[[17,2,2,0,2,[[459,1,1,0,1],[462,1,1,1,2]]],[22,1,1,2,3,[[691,1,1,2,3]]],[28,1,1,3,4,[[876,1,1,3,4]]]],[13437,13494,17912,22306]]],["Almighty",[44,44,[[0,6,6,0,6,[[16,1,1,0,1],[27,1,1,1,2],[34,1,1,2,3],[42,1,1,3,4],[47,1,1,4,5],[48,1,1,5,6]]],[1,1,1,6,7,[[55,1,1,6,7]]],[3,2,2,7,9,[[140,2,2,7,9]]],[7,2,2,9,11,[[232,2,2,9,11]]],[17,29,29,11,40,[[440,1,1,11,12],[441,2,2,12,14],[443,2,2,14,16],[446,1,1,16,17],[448,1,1,17,18],[450,1,1,18,19],[456,2,2,19,21],[457,5,5,21,26],[458,1,1,26,27],[462,3,3,27,30],[464,1,1,30,31],[466,2,2,31,33],[467,1,1,33,34],[468,1,1,34,35],[469,2,2,35,37],[470,1,1,37,38],[472,1,1,38,39],[475,1,1,39,40]]],[18,2,2,40,42,[[545,1,1,40,41],[568,1,1,41,42]]],[25,2,2,42,44,[[802,1,1,42,43],[811,1,1,43,44]]]],[398,776,1022,1304,1454,1498,1658,4450,4462,7147,7148,12968,12982,12992,13032,13034,13115,13156,13228,13370,13375,13392,13406,13412,13414,13415,13435,13483,13491,13492,13537,13590,13623,13636,13654,13693,13695,13733,13792,13866,14914,15396,20488,20638]]]]},{"k":"H7707","v":[["Shedeur",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3609,3668,3880,3885,4006]]]]},{"k":"H7708","v":[["Siddim",[3,3,[[0,3,3,0,3,[[13,3,3,0,3]]]],[339,344,346]]]]},{"k":"H7709","v":[["*",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]],[22,1,1,2,3,[[694,1,1,2,3]]],[34,1,1,3,4,[[905,1,1,3,4]]]],[5790,10169,17977,22785]]],["+",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5790]]],["fields",[3,3,[[11,1,1,0,1,[[335,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]],[34,1,1,2,3,[[905,1,1,2,3]]]],[10169,17977,22785]]]]},{"k":"H7710","v":[["blasted",[3,3,[[0,3,3,0,3,[[40,3,3,0,3]]]],[1201,1218,1222]]]]},{"k":"H7711","v":[["*",[7,7,[[4,1,1,0,1,[[180,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[13,1,1,3,4,[[372,1,1,3,4]]],[22,1,1,4,5,[[715,1,1,4,5]]],[29,1,1,5,6,[[882,1,1,5,6]]],[36,1,1,6,7,[[910,1,1,6,7]]]],[5633,9022,10087,11310,18379,22419,22872]]],["blasted",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10087,18379]]],["blasting",[5,5,[[4,1,1,0,1,[[180,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[13,1,1,2,3,[[372,1,1,2,3]]],[29,1,1,3,4,[[882,1,1,3,4]]],[36,1,1,4,5,[[910,1,1,4,5]]]],[5633,9022,11310,22419,22872]]]]},{"k":"H7712","v":[["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21919]]]]},{"k":"H7713","v":[["*",[4,4,[[10,1,1,0,1,[[296,1,1,0,1]]],[11,2,2,1,3,[[323,2,2,1,3]]],[13,1,1,3,4,[[389,1,1,3,4]]]],[8905,9837,9844,11670]]],["+",[1,1,[[13,1,1,0,1,[[389,1,1,0,1]]]],[11670]]],["boards",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8905]]],["ranges",[2,2,[[11,2,2,0,2,[[323,2,2,0,2]]]],[9837,9844]]]]},{"k":"H7714","v":[["Shadrach",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21744]]]]},{"k":"H7715","v":[["Shadrach",[14,13,[[26,14,13,0,13,[[851,1,1,0,1],[852,13,12,1,13]]]],[21807,21819,21820,21821,21823,21826,21827,21829,21830,21833,21835,21836,21837]]]]},{"k":"H7716","v":[["*",[47,39,[[0,4,3,0,3,[[21,2,2,0,2],[29,2,1,2,3]]],[1,13,10,3,13,[[61,5,3,3,6],[62,1,1,6,7],[71,5,4,7,11],[83,2,2,11,13]]],[2,5,5,13,18,[[94,1,1,13,14],[101,1,1,14,15],[111,2,2,15,17],[116,1,1,17,18]]],[3,1,1,18,19,[[131,1,1,18,19]]],[4,5,4,19,23,[[166,2,1,19,20],[169,1,1,20,21],[170,1,1,21,22],[174,1,1,22,23]]],[5,1,1,23,24,[[192,1,1,23,24]]],[6,1,1,24,25,[[216,1,1,24,25]]],[8,4,4,25,29,[[249,1,1,25,26],[250,1,1,26,27],[252,1,1,27,28],[257,1,1,28,29]]],[18,1,1,29,30,[[596,1,1,29,30]]],[22,4,4,30,34,[[685,1,1,30,31],[721,1,1,31,32],[731,1,1,32,33],[744,1,1,33,34]]],[23,1,1,34,35,[[794,1,1,34,35]]],[25,7,4,35,39,[[835,6,3,35,38],[846,1,1,38,39]]]],[554,555,862,1819,1820,1821,1880,2114,2117,2122,2123,2515,2516,2837,3052,3392,3397,3596,4164,5294,5365,5387,5471,5970,6658,7542,7563,7652,7806,16074,17807,18528,18718,18925,20183,21330,21333,21335,21645]]],["+",[4,3,[[1,1,1,0,1,[[61,1,1,0,1]]],[3,1,1,1,2,[[131,1,1,1,2]]],[4,2,1,2,3,[[166,2,1,2,3]]]],[1820,4164,5294]]],["cattle",[10,6,[[0,2,1,0,1,[[29,2,1,0,1]]],[22,2,2,1,3,[[685,1,1,1,2],[721,1,1,2,3]]],[25,6,3,3,6,[[835,6,3,3,6]]]],[862,17807,18528,21330,21333,21335]]],["ewe",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3397]]],["lamb",[15,14,[[0,2,2,0,2,[[21,2,2,0,2]]],[1,6,5,2,7,[[61,4,3,2,5],[62,1,1,5,6],[83,1,1,6,7]]],[2,3,3,7,10,[[94,1,1,7,8],[101,1,1,8,9],[111,1,1,9,10]]],[8,1,1,10,11,[[252,1,1,10,11]]],[22,2,2,11,13,[[731,1,1,11,12],[744,1,1,12,13]]],[25,1,1,13,14,[[846,1,1,13,14]]]],[554,555,1819,1820,1821,1880,2516,2837,3052,3392,7652,18718,18925,21645]]],["sheep",[17,16,[[1,6,5,0,5,[[71,5,4,0,4],[83,1,1,4,5]]],[2,1,1,5,6,[[116,1,1,5,6]]],[4,3,3,6,9,[[169,1,1,6,7],[170,1,1,7,8],[174,1,1,8,9]]],[5,1,1,9,10,[[192,1,1,9,10]]],[6,1,1,10,11,[[216,1,1,10,11]]],[8,3,3,11,14,[[249,1,1,11,12],[250,1,1,12,13],[257,1,1,13,14]]],[18,1,1,14,15,[[596,1,1,14,15]]],[23,1,1,15,16,[[794,1,1,15,16]]]],[2114,2117,2122,2123,2515,3596,5365,5387,5471,5970,6658,7542,7563,7806,16074,20183]]]]},{"k":"H7717","v":[["record",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13257]]]]},{"k":"H7718","v":[["*",[11,11,[[0,1,1,0,1,[[1,1,1,0,1]]],[1,7,7,1,8,[[74,1,1,1,2],[77,2,2,2,4],[84,2,2,4,6],[88,2,2,6,8]]],[12,1,1,8,9,[[366,1,1,8,9]]],[17,1,1,9,10,[[463,1,1,9,10]]],[25,1,1,10,11,[[829,1,1,10,11]]]],[42,2202,2302,2313,2540,2558,2670,2677,11166,13520,21170]]],["Onyx",[1,1,[[1,1,1,0,1,[[74,1,1,0,1]]]],[2202]]],["onyx",[10,10,[[0,1,1,0,1,[[1,1,1,0,1]]],[1,6,6,1,7,[[77,2,2,1,3],[84,2,2,3,5],[88,2,2,5,7]]],[12,1,1,7,8,[[366,1,1,7,8]]],[17,1,1,8,9,[[463,1,1,8,9]]],[25,1,1,9,10,[[829,1,1,9,10]]]],[42,2302,2313,2540,2558,2670,2677,11166,13520,21170]]]]},{"k":"H7719","v":[["Shoham",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11042]]]]},{"k":"H7720","v":[["*",[3,3,[[6,2,2,0,2,[[218,2,2,0,2]]],[22,1,1,2,3,[[681,1,1,2,3]]]],[6740,6745,17725]]],["ornaments",[2,2,[[6,2,2,0,2,[[218,2,2,0,2]]]],[6740,6745]]],["tires",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17725]]]]},{"k":"H7721","v":[["arise",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15335]]]]},{"k":"H7722","v":[["*",[12,11,[[17,3,3,0,3,[[465,2,2,0,2],[473,1,1,2,3]]],[18,4,3,3,6,[[512,3,2,3,5],[540,1,1,5,6]]],[19,1,1,6,7,[[630,1,1,6,7]]],[22,2,2,7,9,[[688,1,1,7,8],[725,1,1,8,9]]],[25,1,1,9,10,[[839,1,1,9,10]]],[35,1,1,10,11,[[906,1,1,10,11]]]],[13560,13571,13820,14418,14427,14848,16480,17853,18610,21434,22802]]],["+",[2,2,[[18,1,1,0,1,[[512,1,1,0,1]]],[19,1,1,1,2,[[630,1,1,1,2]]]],[14427,16480]]],["desolate",[2,2,[[17,2,2,0,2,[[465,1,1,0,1],[473,1,1,1,2]]]],[13560,13820]]],["desolation",[3,3,[[17,1,1,0,1,[[465,1,1,0,1]]],[22,2,2,1,3,[[688,1,1,1,2],[725,1,1,2,3]]]],[13571,17853,18610]]],["destroy",[1,1,[[18,1,1,0,1,[[540,1,1,0,1]]]],[14848]]],["destruction",[2,1,[[18,2,1,0,1,[[512,2,1,0,1]]]],[14418]]],["storm",[1,1,[[25,1,1,0,1,[[839,1,1,0,1]]]],[21434]]],["wasteness",[1,1,[[35,1,1,0,1,[[906,1,1,0,1]]]],[22802]]]]},{"k":"H7723","v":[["*",[53,48,[[1,3,2,0,2,[[69,2,1,0,1],[72,1,1,1,2]]],[4,3,2,2,4,[[157,3,2,2,4]]],[17,6,5,4,9,[[442,1,1,4,5],[446,1,1,5,6],[450,2,1,6,7],[466,1,1,7,8],[470,1,1,8,9]]],[18,15,14,9,23,[[489,1,1,9,10],[501,1,1,10,11],[503,1,1,11,12],[508,1,1,12,13],[518,1,1,13,14],[537,1,1,14,15],[566,1,1,15,16],[585,1,1,16,17],[596,1,1,17,18],[604,3,2,18,20],[616,1,1,20,21],[621,2,2,21,23]]],[19,1,1,23,24,[[657,1,1,23,24]]],[22,4,4,24,28,[[679,1,1,24,25],[683,1,1,25,26],[708,1,1,26,27],[737,1,1,27,28]]],[23,5,5,28,33,[[746,1,1,28,29],[748,1,1,29,30],[750,1,1,30,31],[762,1,1,31,32],[790,1,1,32,33]]],[24,2,1,33,34,[[798,2,1,33,34]]],[25,9,9,34,43,[[813,1,1,34,35],[814,5,5,35,40],[822,2,2,40,42],[823,1,1,42,43]]],[27,2,2,43,45,[[871,1,1,43,44],[873,1,1,44,45]]],[31,1,1,45,46,[[890,1,1,45,46]]],[37,1,1,46,47,[[920,1,1,46,47]]],[38,1,1,47,48,[[927,1,1,47,48]]]],[2058,2145,5064,5073,13011,13119,13234,13593,13733,14068,14245,14277,14337,14548,14818,15373,15754,15935,16122,16123,16259,16313,16316,17259,17667,17757,18245,18804,18995,19057,19118,19399,20056,20346,20704,20714,20715,20716,20717,20731,20967,20973,21004,22229,22263,22556,23018,23134]]],["false",[5,5,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,1,1,1,2,[[157,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]],[25,1,1,3,4,[[822,1,1,3,4]]],[37,1,1,4,5,[[920,1,1,4,5]]]],[2145,5073,20346,20967,23018]]],["falsely",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22229]]],["lies",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18804]]],["lying",[2,2,[[18,1,1,0,1,[[508,1,1,0,1]]],[31,1,1,1,2,[[890,1,1,1,2]]]],[14337,22556]]],["vain",[22,19,[[1,2,1,0,1,[[69,2,1,0,1]]],[4,2,1,1,2,[[157,2,1,1,2]]],[17,1,1,2,3,[[446,1,1,2,3]]],[18,8,7,3,10,[[503,1,1,3,4],[537,1,1,4,5],[566,1,1,5,6],[585,1,1,6,7],[604,3,2,7,9],[616,1,1,9,10]]],[22,1,1,10,11,[[679,1,1,10,11]]],[23,4,4,11,15,[[746,1,1,11,12],[748,1,1,12,13],[750,1,1,13,14],[790,1,1,14,15]]],[24,1,1,15,16,[[798,1,1,15,16]]],[25,2,2,16,18,[[813,1,1,16,17],[814,1,1,17,18]]],[38,1,1,18,19,[[927,1,1,18,19]]]],[2058,5064,13119,14277,14818,15373,15754,16122,16123,16259,17667,18995,19057,19118,20056,20346,20704,20715,23134]]],["vanity",[22,21,[[17,5,4,0,4,[[442,1,1,0,1],[450,2,1,1,2],[466,1,1,2,3],[470,1,1,3,4]]],[18,6,6,4,10,[[489,1,1,4,5],[501,1,1,5,6],[518,1,1,6,7],[596,1,1,7,8],[621,2,2,8,10]]],[19,1,1,10,11,[[657,1,1,10,11]]],[22,2,2,11,13,[[683,1,1,11,12],[708,1,1,12,13]]],[23,1,1,13,14,[[762,1,1,13,14]]],[25,6,6,14,20,[[814,4,4,14,18],[822,1,1,18,19],[823,1,1,19,20]]],[27,1,1,20,21,[[873,1,1,20,21]]]],[13011,13234,13593,13733,14068,14245,14548,15935,16313,16316,17259,17757,18245,19399,20714,20716,20717,20731,20973,21004,22263]]]]},{"k":"H7724","v":[["Sheva",[2,2,[[9,1,1,0,1,[[286,1,1,0,1]]],[12,1,1,1,2,[[339,1,1,1,2]]]],[8579,10355]]]]},{"k":"H7725","v":[["*",[1057,952,[[0,68,60,0,60,[[2,2,1,0,1],[7,5,4,1,5],[13,4,3,5,8],[14,1,1,8,9],[15,1,1,9,10],[17,4,3,10,13],[19,3,2,13,15],[20,1,1,15,16],[21,2,2,16,18],[23,4,3,18,21],[25,1,1,21,22],[26,2,2,22,24],[27,2,2,24,26],[28,1,1,26,27],[29,1,1,27,28],[30,3,3,28,31],[31,2,2,31,33],[32,1,1,33,34],[36,4,4,34,38],[37,2,2,38,40],[39,2,2,40,42],[40,1,1,42,43],[41,4,4,43,47],[42,7,6,47,53],[43,3,3,53,56],[47,1,1,56,57],[49,4,3,57,60]]],[1,28,24,60,84,[[53,8,5,60,65],[54,1,1,65,66],[59,1,1,66,67],[62,1,1,67,68],[63,4,4,68,72],[64,1,1,72,73],[68,1,1,73,74],[70,1,1,74,75],[71,1,1,75,76],[72,2,1,76,77],[73,1,1,77,78],[81,3,3,78,81],[82,1,1,81,82],[83,2,2,82,84]]],[2,18,14,84,98,[[95,1,1,84,85],[102,1,1,85,86],[103,2,2,86,88],[111,1,1,88,89],[114,11,7,89,96],[115,1,1,96,97],[116,1,1,97,98]]],[3,32,31,98,129,[[120,1,1,98,99],[121,3,2,99,101],[124,1,1,101,102],[126,1,1,102,103],[127,1,1,103,104],[129,2,2,104,106],[130,4,4,106,110],[132,1,1,110,111],[133,1,1,111,112],[134,1,1,112,113],[138,2,2,113,115],[139,4,4,115,119],[140,1,1,119,120],[141,2,2,120,122],[148,3,3,122,125],[149,1,1,125,126],[151,3,3,126,129]]],[4,35,31,129,160,[[153,3,3,129,132],[155,1,1,132,133],[156,2,2,133,135],[157,1,1,135,136],[165,1,1,136,137],[169,2,1,137,138],[172,4,4,138,142],[174,3,2,142,144],[175,2,2,144,146],[176,4,3,146,149],[180,3,3,149,152],[182,7,6,152,158],[184,2,2,158,160]]],[5,36,33,160,193,[[187,1,1,160,161],[188,3,3,161,164],[190,1,1,164,165],[191,1,1,165,166],[192,1,1,166,167],[193,2,2,167,169],[194,3,3,169,172],[196,4,4,172,176],[197,1,1,176,177],[200,1,1,177,178],[204,1,1,178,179],[205,5,4,179,183],[206,1,1,183,184],[208,8,7,184,191],[209,2,1,191,192],[210,1,1,192,193]]],[6,29,27,193,220,[[212,1,1,193,194],[213,1,1,194,195],[215,1,1,195,196],[216,1,1,196,197],[217,3,2,197,199],[218,3,3,199,202],[219,2,2,202,204],[221,6,6,204,210],[224,1,1,210,211],[225,1,1,211,212],[227,3,2,212,214],[228,1,1,214,215],[229,2,2,215,217],[230,1,1,217,218],[231,2,2,218,220]]],[7,15,13,220,233,[[232,12,10,220,230],[233,1,1,230,231],[235,2,2,231,233]]],[8,45,43,233,276,[[236,1,1,233,234],[238,2,2,234,236],[240,2,2,236,238],[241,8,7,238,245],[242,2,2,245,247],[244,1,1,247,248],[247,1,1,248,249],[249,1,1,249,250],[250,5,5,250,255],[252,4,4,255,259],[253,2,2,259,261],[258,2,2,261,263],[259,1,1,263,264],[260,3,3,264,267],[261,3,3,267,270],[262,1,1,270,271],[264,4,3,271,274],[265,2,2,274,276]]],[9,52,47,276,323,[[267,2,2,276,278],[268,2,2,278,280],[269,5,4,280,284],[272,1,1,284,285],[274,2,2,285,287],[275,1,1,287,288],[276,2,2,288,290],[277,2,2,290,292],[278,3,2,292,294],[280,2,2,294,296],[281,9,7,296,303],[282,3,3,303,306],[283,3,2,306,308],[284,1,1,308,309],[285,8,8,309,317],[286,1,1,317,318],[288,3,3,318,321],[289,1,1,321,322],[290,1,1,322,323]]],[10,62,54,323,377,[[292,9,8,323,331],[298,6,5,331,336],[299,2,1,336,337],[302,12,10,337,347],[303,16,14,347,361],[304,1,1,361,362],[307,2,2,362,364],[308,1,1,364,365],[309,5,5,365,370],[310,3,3,370,373],[312,5,4,373,377]]],[11,55,53,377,430,[[313,5,4,377,381],[314,3,3,381,384],[315,2,2,384,386],[316,4,4,386,390],[317,3,3,390,393],[319,2,2,393,395],[320,3,3,395,398],[321,4,4,398,402],[325,2,1,402,403],[326,4,4,403,407],[327,1,1,407,408],[328,1,1,408,409],[329,2,2,409,411],[330,2,2,411,413],[331,6,6,413,419],[332,4,4,419,423],[333,1,1,423,424],[334,2,2,424,426],[335,3,3,426,429],[336,1,1,429,430]]],[12,5,5,430,435,[[356,1,1,430,431],[357,1,1,431,432],[358,3,3,432,435]]],[13,62,54,435,489,[[372,8,7,435,442],[373,2,2,442,444],[376,6,6,444,450],[377,3,2,450,452],[378,2,2,452,454],[380,1,1,454,455],[381,1,1,455,456],[384,6,5,456,461],[385,4,3,461,464],[386,2,1,464,465],[388,1,1,465,466],[390,2,2,466,468],[391,3,3,468,471],[392,1,1,471,472],[393,1,1,472,473],[394,2,2,473,475],[395,1,1,475,476],[396,6,3,476,479],[397,1,1,479,480],[398,2,2,480,482],[399,2,2,482,484],[400,4,4,484,488],[402,1,1,488,489]]],[14,4,4,489,493,[[404,1,1,489,490],[408,1,1,490,491],[411,1,1,491,492],[412,1,1,492,493]]],[15,20,18,493,511,[[413,1,1,493,494],[414,4,3,494,497],[416,3,3,497,500],[417,2,2,500,502],[418,1,1,502,503],[419,1,1,503,504],[420,1,1,504,505],[421,6,5,505,510],[425,1,1,510,511]]],[16,8,8,511,519,[[427,1,1,511,512],[429,2,2,512,514],[431,1,1,514,515],[432,1,1,515,516],[433,2,2,516,518],[434,1,1,518,519]]],[17,39,38,519,557,[[436,1,1,519,520],[441,2,1,520,521],[442,2,2,521,523],[444,3,3,523,526],[445,3,3,526,529],[446,1,1,529,530],[448,1,1,530,531],[449,1,1,531,532],[450,2,2,532,534],[451,1,1,534,535],[452,1,1,535,536],[455,3,3,536,539],[457,1,1,539,540],[458,1,1,540,541],[465,1,1,541,542],[466,1,1,542,543],[467,1,1,543,544],[468,5,5,544,549],[469,1,1,549,550],[470,1,1,550,551],[471,1,1,551,552],[474,3,3,552,555],[475,1,1,555,556],[477,1,1,556,557]]],[18,70,67,557,624,[[483,2,2,557,559],[484,3,3,559,562],[486,2,2,562,564],[491,1,1,564,565],[495,3,3,565,568],[496,1,1,568,569],[499,1,1,569,570],[500,1,1,570,571],[505,1,1,571,572],[512,2,2,572,574],[521,1,1,574,575],[528,2,2,575,577],[530,1,1,577,578],[531,1,1,578,579],[533,1,1,579,580],[536,2,2,580,582],[537,1,1,582,583],[545,2,1,583,584],[546,1,1,584,585],[547,1,1,585,586],[548,2,1,586,587],[549,1,1,587,588],[550,1,1,588,589],[551,2,2,589,591],[555,4,4,591,595],[556,1,1,595,596],[557,4,4,596,600],[558,1,1,600,601],[562,5,5,601,606],[566,1,1,606,607],[567,3,2,607,609],[571,3,3,609,612],[581,2,2,612,614],[583,1,1,614,615],[593,2,2,615,617],[596,2,2,617,619],[603,2,2,619,621],[609,2,2,621,623],[623,1,1,623,624]]],[19,23,23,624,647,[[628,1,1,624,625],[629,1,1,625,626],[630,1,1,626,627],[639,1,1,627,628],[642,1,1,628,629],[644,1,1,629,630],[645,1,1,630,631],[646,1,1,631,632],[647,1,1,632,633],[649,1,1,633,634],[651,4,4,634,638],[652,2,2,638,640],[653,4,4,640,644],[654,1,1,644,645],[656,1,1,645,646],[657,1,1,646,647]]],[20,10,9,647,656,[[659,2,2,647,649],[661,1,1,649,650],[662,2,2,650,652],[663,1,1,652,653],[667,1,1,653,654],[670,3,2,654,656]]],[21,4,1,656,657,[[676,4,1,656,657]]],[22,51,50,657,707,[[679,3,3,657,660],[683,1,1,660,661],[684,2,2,661,663],[687,4,4,663,667],[688,3,3,667,670],[690,1,1,670,671],[692,1,1,671,672],[697,1,1,672,673],[699,1,1,673,674],[701,1,1,674,675],[706,1,1,675,676],[707,1,1,676,677],[709,1,1,677,678],[713,1,1,678,679],[714,1,1,679,680],[715,5,5,680,685],[716,2,1,685,686],[719,1,1,686,687],[720,1,1,687,688],[721,1,1,688,689],[722,3,3,689,692],[723,1,1,692,693],[724,1,1,693,694],[725,1,1,694,695],[727,2,2,695,697],[729,1,1,697,698],[730,1,1,698,699],[733,3,3,699,702],[736,2,2,702,704],[737,1,1,704,705],[741,1,1,705,706],[744,1,1,706,707]]],[23,112,92,707,799,[[746,2,2,707,709],[747,9,7,709,716],[748,4,3,716,719],[749,1,1,719,720],[750,1,1,720,721],[752,5,3,721,724],[755,1,1,724,725],[756,2,1,725,726],[758,1,1,726,727],[759,5,2,727,729],[760,1,1,729,730],[762,4,4,730,734],[766,4,3,734,737],[767,4,4,737,741],[768,2,2,741,743],[769,1,1,743,744],[770,1,1,744,745],[771,2,2,745,747],[772,3,3,747,750],[773,3,2,750,752],[774,5,4,752,756],[775,9,7,756,763],[776,3,3,763,766],[777,3,3,766,769],[778,6,4,769,773],[779,1,1,773,774],[780,3,3,774,777],[781,3,3,777,780],[782,1,1,780,781],[784,3,2,781,783],[785,3,2,783,785],[786,2,2,785,787],[787,1,1,787,788],[788,5,3,788,791],[790,2,2,791,793],[792,1,1,793,794],[793,2,2,794,796],[794,3,3,796,799]]],[24,14,13,799,812,[[797,5,5,799,804],[798,3,3,804,807],[799,4,4,807,811],[801,2,1,811,812]]],[25,62,52,812,864,[[802,1,1,812,813],[804,2,2,813,815],[808,2,1,815,816],[809,4,4,816,820],[810,1,1,820,821],[814,1,1,821,822],[815,3,1,822,823],[817,4,2,823,825],[819,13,12,825,837],[821,1,1,837,838],[822,2,2,838,840],[828,1,1,840,841],[830,2,1,841,842],[834,10,7,842,849],[835,2,2,849,851],[836,1,1,851,852],[839,3,3,852,855],[840,3,3,855,858],[845,1,1,858,859],[847,2,2,859,861],[848,3,3,861,864]]],[26,16,12,864,876,[[858,4,3,864,867],[859,1,1,867,868],[860,11,8,868,876]]],[27,22,21,876,897,[[863,2,2,876,878],[864,1,1,878,879],[865,1,1,879,880],[866,2,2,880,882],[867,2,2,882,884],[868,2,2,884,886],[869,1,1,886,887],[870,1,1,887,888],[872,3,2,888,890],[873,3,3,890,893],[875,4,4,893,897]]],[28,6,6,897,903,[[877,3,3,897,900],[878,3,3,900,903]]],[29,15,15,903,918,[[879,6,6,903,909],[880,3,3,909,912],[882,5,5,912,917],[887,1,1,917,918]]],[30,1,1,918,919,[[888,1,1,918,919]]],[31,5,4,919,923,[[889,1,1,919,920],[891,4,3,920,923]]],[32,4,4,923,927,[[893,1,1,923,924],[894,1,1,924,925],[897,1,1,925,926],[899,1,1,926,927]]],[33,1,1,927,928,[[901,1,1,927,928]]],[34,1,1,928,929,[[904,1,1,928,929]]],[35,2,2,929,931,[[907,1,1,929,930],[908,1,1,930,931]]],[37,18,16,931,947,[[911,5,4,931,935],[914,1,1,935,936],[915,1,1,936,937],[916,1,1,937,938],[917,1,1,938,939],[918,2,2,939,941],[919,3,2,941,943],[920,3,3,943,946],[923,1,1,946,947]]],[38,7,5,947,952,[[925,1,1,947,948],[926,1,1,948,949],[927,4,2,949,951],[928,1,1,951,952]]]],[74,186,190,192,195,343,352,353,376,390,434,438,457,502,509,545,552,566,596,597,599,710,771,772,788,794,798,861,876,886,928,934,937,976,1097,1105,1112,1113,1141,1148,1185,1193,1208,1276,1277,1280,1289,1292,1300,1302,1303,1308,1311,1332,1337,1349,1472,1511,1520,1521,1608,1619,1620,1621,1622,1654,1785,1884,1891,1915,1916,1917,1939,2034,2111,2139,2148,2191,2450,2465,2469,2484,2527,2531,2853,3068,3150,3154,3382,3479,3482,3496,3497,3510,3520,3521,3550,3594,3754,3799,3800,3964,4024,4028,4100,4101,4111,4112,4144,4151,4244,4254,4266,4383,4409,4421,4422,4432,4436,4471,4475,4482,4733,4736,4740,4767,4870,4873,4877,4914,4917,4937,4995,5034,5043,5083,5289,5380,5432,5433,5434,5435,5471,5472,5513,5514,5529,5538,5544,5642,5671,5679,5709,5710,5711,5716,5717,5718,5799,5801,5866,5885,5891,5892,5928,5936,5963,5979,6002,6023,6026,6028,6079,6085,6102,6107,6117,6194,6301,6333,6348,6350,6355,6378,6434,6435,6442,6444,6449,6455,6458,6472,6496,6564,6587,6652,6672,6697,6709,6728,6732,6752,6810,6811,6837,6838,6842,6860,6864,6868,6917,6948,6983,6984,7019,7027,7031,7102,7116,7125,7133,7134,7135,7137,7138,7139,7142,7143,7148,7149,7155,7193,7205,7231,7281,7282,7322,7330,7334,7335,7338,7339,7347,7348,7352,7355,7366,7396,7463,7535,7571,7585,7586,7590,7591,7633,7648,7671,7675,7678,7682,7833,7838,7840,7873,7882,7900,7926,7928,7930,7939,7971,7974,7978,7990,7997,8023,8044,8075,8079,8092,8097,8107,8108,8177,8212,8222,8234,8245,8254,8263,8274,8309,8317,8369,8377,8397,8408,8409,8414,8416,8418,8423,8429,8434,8438,8452,8469,8494,8521,8522,8523,8525,8526,8548,8550,8554,8576,8623,8627,8640,8663,8705,8786,8787,8790,8800,8802,8803,8811,8814,9018,9019,9020,9032,9033,9057,9156,9157,9160,9163,9167,9171,9172,9175,9177,9178,9188,9190,9193,9194,9200,9201,9202,9203,9204,9206,9207,9210,9213,9217,9246,9338,9339,9384,9393,9394,9402,9407,9408,9413,9417,9442,9497,9506,9508,9513,9538,9539,9544,9546,9564,9569,9576,9580,9603,9625,9634,9638,9641,9657,9661,9662,9715,9722,9730,9733,9756,9771,9774,9776,9792,9896,9910,9918,9921,9924,9945,9969,9986,9996,10038,10048,10068,10069,10070,10089,10094,10097,10103,10107,10108,10109,10122,10154,10165,10185,10190,10191,10203,10912,10929,10946,10954,10961,11305,11306,11307,11308,11319,11320,11324,11338,11343,11397,11400,11401,11404,11407,11411,11415,11418,11448,11449,11490,11494,11558,11567,11568,11569,11574,11577,11580,11584,11614,11650,11688,11696,11714,11717,11728,11734,11760,11775,11779,11801,11833,11835,11836,11855,11896,11900,11911,11921,11940,11942,11949,11961,12006,12028,12172,12251,12266,12305,12313,12322,12327,12363,12371,12374,12393,12394,12405,12426,12510,12528,12537,12539,12540,12546,12680,12738,12775,12777,12805,12815,12822,12825,12859,12890,13007,13015,13018,13063,13064,13069,13095,13102,13107,13118,13175,13194,13216,13225,13260,13270,13328,13336,13344,13412,13432,13580,13602,13642,13655,13675,13676,13680,13682,13698,13724,13746,13838,13846,13856,13868,13932,13989,13995,14002,14007,14011,14024,14038,14087,14138,14142,14155,14175,14231,14238,14303,14423,14427,14581,14703,14704,14725,14730,14764,14796,14804,14808,14922,14939,14974,14996,15010,15030,15059,15069,15147,15151,15152,15154,15197,15201,15205,15212,15217,15231,15272,15274,15275,15277,15279,15369,15381,15391,15433,15446,15454,15580,15600,15674,15855,15860,15957,15977,16116,16119,16161,16162,16345,16423,16452,16483,16733,16808,16886,16914,16949,16980,17036,17091,17097,17105,17108,17123,17126,17152,17156,17157,17168,17180,17232,17281,17321,17322,17379,17382,17388,17412,17486,17525,17530,17627,17679,17680,17681,17764,17779,17782,17841,17842,17846,17850,17854,17871,17872,17901,17955,18026,18047,18094,18170,18210,18256,18330,18339,18359,18360,18381,18386,18389,18398,18479,18502,18518,18552,18555,18558,18584,18594,18609,18641,18642,18684,18704,18747,18750,18751,18798,18799,18820,18883,18937,18989,19000,19003,19009,19012,19014,19016,19021,19024,19028,19035,19055,19061,19098,19157,19158,19159,19236,19264,19296,19322,19334,19351,19388,19392,19395,19404,19464,19465,19481,19487,19498,19504,19506,19530,19531,19539,19575,19612,19618,19621,19622,19624,19645,19649,19670,19677,19685,19691,19699,19707,19708,19709,19710,19712,19714,19768,19771,19775,19782,19786,19801,19812,19816,19817,19823,19838,19845,19849,19870,19881,19882,19894,19921,19946,19953,19971,19973,19985,19987,20002,20015,20024,20038,20061,20072,20127,20133,20166,20172,20175,20185,20318,20321,20323,20326,20329,20335,20340,20346,20357,20375,20394,20418,20463,20478,20521,20522,20590,20610,20617,20619,20621,20633,20730,20737,20815,20817,20856,20857,20861,20866,20870,20872,20873,20875,20876,20877,20879,20881,20917,20949,20974,21136,21197,21289,21291,21292,21294,21295,21298,21299,21317,21329,21351,21429,21433,21437,21450,21473,21475,21600,21664,21672,21680,21685,21686,22001,22004,22013,22035,22045,22046,22049,22054,22055,22064,22065,22066,22112,22114,22133,22142,22156,22167,22168,22178,22188,22194,22207,22211,22245,22249,22254,22258,22266,22283,22284,22286,22289,22323,22324,22325,22344,22347,22350,22367,22370,22372,22373,22375,22377,22380,22383,22385,22416,22418,22419,22420,22421,22509,22525,22544,22566,22567,22568,22586,22603,22636,22683,22701,22749,22812,22840,22881,22882,22884,22894,22923,22937,22948,22976,22979,22991,23007,23011,23022,23025,23026,23066,23093,23109,23127,23138,23144]]],["+",[155,141,[[0,15,12,0,12,[[7,2,2,0,2],[13,1,1,2,3],[14,1,1,3,4],[17,2,1,4,5],[23,2,1,5,6],[25,1,1,6,7],[28,1,1,7,8],[39,1,1,8,9],[42,1,1,9,10],[47,1,1,10,11],[49,2,1,11,12]]],[1,5,4,12,16,[[64,1,1,12,13],[68,1,1,13,14],[72,2,1,14,15],[83,1,1,15,16]]],[2,4,4,16,20,[[95,1,1,16,17],[114,2,2,17,19],[115,1,1,19,20]]],[3,4,4,20,24,[[120,1,1,20,21],[124,1,1,21,22],[133,1,1,22,23],[141,1,1,23,24]]],[4,5,3,24,27,[[174,2,1,24,25],[176,2,1,25,26],[182,1,1,26,27]]],[5,4,3,27,30,[[191,1,1,27,28],[208,1,1,28,29],[209,2,1,29,30]]],[6,5,5,30,35,[[219,1,1,30,31],[221,2,2,31,33],[227,2,2,33,35]]],[8,5,4,35,39,[[241,3,2,35,37],[253,1,1,37,38],[264,1,1,38,39]]],[9,12,12,39,51,[[269,2,2,39,41],[280,2,2,41,43],[281,3,3,43,46],[285,4,4,46,50],[288,1,1,50,51]]],[10,20,16,51,67,[[292,7,6,51,57],[298,1,1,57,58],[299,2,1,58,59],[302,4,4,59,63],[303,2,1,63,64],[307,2,2,64,66],[312,2,1,66,67]]],[11,12,12,67,79,[[320,1,1,67,68],[321,2,2,68,70],[325,1,1,70,71],[326,2,2,71,73],[328,1,1,73,74],[330,1,1,74,75],[332,1,1,75,76],[333,1,1,76,77],[334,2,2,77,79]]],[12,2,2,79,81,[[358,2,2,79,81]]],[13,11,10,81,91,[[372,2,2,81,83],[376,1,1,83,84],[377,1,1,84,85],[384,2,1,85,86],[398,1,1,86,87],[399,1,1,87,88],[400,2,2,88,90],[402,1,1,90,91]]],[15,1,1,91,92,[[414,1,1,91,92]]],[16,3,3,92,95,[[429,2,2,92,94],[433,1,1,94,95]]],[17,3,3,95,98,[[445,1,1,95,96],[470,1,1,96,97],[477,1,1,97,98]]],[18,6,6,98,104,[[555,2,2,98,100],[581,1,1,100,101],[603,2,2,101,103],[609,1,1,103,104]]],[19,4,4,104,108,[[646,1,1,104,105],[652,1,1,105,106],[654,1,1,106,107],[657,1,1,107,108]]],[20,1,1,108,109,[[661,1,1,108,109]]],[22,3,3,109,112,[[714,1,1,109,110],[716,1,1,110,111],[727,1,1,111,112]]],[23,13,12,112,124,[[762,1,1,112,113],[767,1,1,113,114],[773,3,2,114,116],[774,1,1,116,117],[775,1,1,117,118],[777,1,1,118,119],[786,2,2,119,121],[793,2,2,121,123],[794,1,1,123,124]]],[24,1,1,124,125,[[797,1,1,124,125]]],[25,9,9,125,134,[[809,3,3,125,128],[817,1,1,128,129],[821,1,1,129,130],[830,1,1,130,131],[840,2,2,131,133],[845,1,1,133,134]]],[28,1,1,134,135,[[878,1,1,134,135]]],[29,1,1,135,136,[[887,1,1,135,136]]],[33,1,1,136,137,[[901,1,1,136,137]]],[35,1,1,137,138,[[908,1,1,137,138]]],[37,2,2,138,140,[[917,1,1,138,139],[919,1,1,139,140]]],[38,1,1,140,141,[[926,1,1,140,141]]]],[186,190,352,376,434,596,710,798,1193,1311,1472,1521,1939,2034,2148,2531,2853,3496,3521,3550,3754,3964,4254,4482,5471,5538,5711,5936,6458,6472,6810,6838,6842,6983,6984,7334,7352,7678,7971,8092,8107,8369,8377,8409,8414,8418,8521,8522,8523,8554,8640,8786,8787,8790,8800,8802,8814,9032,9057,9157,9160,9167,9172,9190,9338,9339,9508,9733,9774,9776,9896,9921,9924,9969,10048,10109,10122,10154,10165,10946,10961,11319,11324,11411,11415,11569,11900,11911,11949,11961,12006,12327,12775,12777,12822,13095,13724,13932,15151,15152,15580,16116,16119,16161,16949,17123,17180,17281,17379,18339,18398,18641,19404,19487,19645,19649,19670,19714,19786,19985,19987,20133,20166,20185,20329,20610,20617,20619,20815,20917,21197,21473,21475,21600,22344,22509,22701,22840,22976,23007,23109]]],["Again",[1,1,[[11,1,1,0,1,[[313,1,1,0,1]]]],[9544]]],["Come",[1,1,[[10,1,1,0,1,[[302,1,1,0,1]]]],[9163]]],["Get",[1,1,[[4,1,1,0,1,[[157,1,1,0,1]]]],[5083]]],["Put",[1,1,[[1,1,1,0,1,[[53,1,1,0,1]]]],[1608]]],["Render",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20418]]],["Repent",[2,2,[[25,2,2,0,2,[[815,1,1,0,1],[819,1,1,1,2]]]],[20737,20879]]],["Restore",[3,3,[[15,1,1,0,1,[[417,1,1,0,1]]],[18,1,1,1,2,[[528,1,1,1,2]]],[22,1,1,2,3,[[720,1,1,2,3]]]],[12393,14703,18502]]],["Return",[19,19,[[0,3,3,0,3,[[15,1,1,0,1],[30,1,1,1,2],[31,1,1,2,3]]],[3,2,2,3,5,[[126,1,1,3,4],[139,1,1,4,5]]],[5,1,1,5,6,[[208,1,1,5,6]]],[9,1,1,6,7,[[285,1,1,6,7]]],[17,1,1,7,8,[[441,1,1,7,8]]],[18,5,5,8,13,[[483,1,1,8,9],[557,1,1,9,10],[567,2,2,10,12],[593,1,1,12,13]]],[21,1,1,13,14,[[676,1,1,13,14]]],[22,1,1,14,15,[[741,1,1,14,15]]],[23,3,3,15,18,[[747,2,2,15,17],[779,1,1,17,18]]],[38,1,1,18,19,[[927,1,1,18,19]]]],[390,876,937,4024,4421,6434,8525,13007,13989,15212,15381,15391,15855,17627,18883,19014,19024,19838,23127]]],["Turn",[11,11,[[1,1,1,0,1,[[81,1,1,0,1]]],[11,1,1,1,2,[[329,1,1,1,2]]],[18,1,1,2,3,[[562,1,1,2,3]]],[19,1,1,3,4,[[628,1,1,3,4]]],[22,1,1,4,5,[[709,1,1,4,5]]],[23,2,2,5,7,[[747,2,2,5,7]]],[24,1,1,7,8,[[801,1,1,7,8]]],[37,3,3,8,11,[[911,2,2,8,10],[919,1,1,10,11]]]],[2450,9996,15275,16423,18256,19009,19016,20463,22881,22882,23011]]],["again",[159,153,[[0,12,11,0,11,[[13,1,1,0,1],[21,1,1,1,2],[27,2,2,2,4],[29,1,1,4,5],[42,4,3,5,8],[43,2,2,8,10],[49,1,1,10,11]]],[1,5,5,11,16,[[53,1,1,11,12],[59,1,1,12,13],[63,1,1,13,14],[73,1,1,14,15],[82,1,1,15,16]]],[2,4,4,16,20,[[102,1,1,16,17],[103,2,2,17,19],[114,1,1,19,20]]],[3,5,5,20,25,[[127,1,1,20,21],[138,1,1,21,22],[139,1,1,22,23],[149,1,1,23,24],[151,1,1,24,25]]],[4,3,3,25,28,[[176,2,2,25,27],[182,1,1,27,28]]],[5,2,2,28,30,[[194,1,1,28,29],[204,1,1,29,30]]],[6,10,10,30,40,[[213,1,1,30,31],[216,1,1,31,32],[218,2,2,32,34],[221,1,1,34,35],[225,1,1,35,36],[229,2,2,36,38],[230,1,1,38,39],[231,1,1,39,40]]],[7,4,4,40,44,[[232,3,3,40,43],[235,1,1,43,44]]],[8,11,11,44,55,[[238,2,2,44,46],[240,1,1,46,47],[250,3,3,47,50],[252,1,1,50,51],[258,1,1,51,52],[260,1,1,52,53],[264,1,1,53,54],[265,1,1,54,55]]],[9,3,3,55,58,[[281,2,2,55,57],[285,1,1,57,58]]],[10,16,15,58,73,[[292,1,1,58,59],[298,2,2,59,61],[302,4,3,61,64],[303,4,4,64,68],[308,1,1,68,69],[309,3,3,69,72],[310,1,1,72,73]]],[11,13,13,73,86,[[313,2,2,73,75],[314,1,1,75,76],[316,3,3,76,79],[317,2,2,79,81],[319,1,1,81,82],[321,1,1,82,83],[325,1,1,83,84],[331,1,1,84,85],[332,1,1,85,86]]],[13,12,11,86,97,[[372,1,1,86,87],[376,2,2,87,89],[378,1,1,89,90],[384,1,1,90,91],[385,1,1,91,92],[386,1,1,92,93],[390,1,1,93,94],[396,3,2,94,96],[399,1,1,96,97]]],[14,3,3,97,100,[[404,1,1,97,98],[408,1,1,98,99],[411,1,1,99,100]]],[15,5,5,100,105,[[419,1,1,100,101],[420,1,1,101,102],[421,2,2,102,104],[425,1,1,104,105]]],[16,1,1,105,106,[[431,1,1,105,106]]],[17,2,2,106,108,[[445,1,1,106,107],[469,1,1,107,108]]],[18,10,8,108,116,[[495,1,1,108,109],[545,2,1,109,110],[548,2,1,110,111],[557,3,3,111,114],[562,2,2,114,116]]],[19,3,3,116,119,[[629,1,1,116,117],[630,1,1,117,118],[653,1,1,118,119]]],[20,1,1,119,120,[[659,1,1,119,120]]],[22,2,2,120,122,[[724,1,1,120,121],[730,1,1,121,122]]],[23,21,20,122,142,[[756,1,1,122,123],[759,1,1,123,124],[760,1,1,124,125],[762,1,1,125,126],[768,1,1,126,127],[769,1,1,127,128],[771,1,1,128,129],[772,3,3,129,132],[774,1,1,132,133],[775,4,3,133,136],[776,1,1,136,137],[780,1,1,137,138],[781,1,1,138,139],[785,1,1,139,140],[790,1,1,140,141],[792,1,1,141,142]]],[24,1,1,142,143,[[799,1,1,142,143]]],[25,3,3,143,146,[[835,2,2,143,145],[848,1,1,145,146]]],[26,1,1,146,147,[[858,1,1,146,147]]],[32,1,1,147,148,[[899,1,1,147,148]]],[37,5,5,148,153,[[914,1,1,148,149],[918,1,1,149,150],[920,3,3,150,153]]]],[352,552,788,794,861,1292,1302,1303,1332,1349,1511,1608,1785,1915,2191,2484,3068,3150,3154,3520,4028,4409,4432,4767,4877,5529,5544,5717,6023,6301,6587,6672,6728,6752,6837,6948,7027,7031,7102,7116,7138,7139,7148,7193,7281,7282,7330,7585,7590,7591,7648,7833,7873,7971,7990,8397,8414,8548,8811,9018,9019,9156,9171,9178,9188,9193,9201,9217,9384,9393,9394,9407,9413,9539,9546,9569,9625,9634,9641,9657,9661,9715,9792,9896,10070,10103,11307,11400,11407,11448,11574,11580,11614,11696,11833,11836,11921,12028,12172,12251,12426,12510,12539,12540,12680,12805,13102,13698,14155,14922,14996,15201,15205,15217,15277,15279,16452,16483,17156,17321,18594,18704,19264,19334,19351,19388,19530,19539,19612,19621,19622,19624,19685,19707,19708,19712,19768,19870,19882,19973,20061,20127,20394,21317,21329,21680,22013,22683,22923,22991,23022,23025,23026]]],["answer",[10,10,[[17,7,7,0,7,[[448,1,1,0,1],[455,1,1,1,2],[466,1,1,2,3],[467,1,1,3,4],[468,2,2,4,6],[475,1,1,6,7]]],[19,1,1,7,8,[[649,1,1,7,8]]],[22,1,1,8,9,[[719,1,1,8,9]]],[34,1,1,9,10,[[904,1,1,9,10]]]],[13175,13328,13602,13642,13655,13682,13868,17036,18479,22749]]],["answered",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12405]]],["answereth",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16914]]],["averse",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22603]]],["away",[45,45,[[0,2,2,0,2,[[26,2,2,0,2]]],[3,3,3,2,5,[[130,1,1,2,3],[141,1,1,3,4],[148,1,1,4,5]]],[4,1,1,5,6,[[175,1,1,5,6]]],[5,2,2,6,8,[[208,2,2,6,8]]],[13,3,3,8,11,[[373,1,1,8,9],[395,1,1,9,10],[396,1,1,10,11]]],[18,1,1,11,12,[[583,1,1,11,12]]],[19,3,3,12,15,[[642,1,1,12,13],[651,1,1,13,14],[656,1,1,14,15]]],[22,7,7,15,22,[[683,1,1,15,16],[687,3,3,16,19],[688,1,1,19,20],[690,1,1,20,21],[736,1,1,21,22]]],[23,5,5,22,27,[[746,1,1,22,23],[747,1,1,23,24],[752,1,1,24,25],[776,1,1,25,26],[794,1,1,26,27]]],[24,1,1,27,28,[[798,1,1,27,28]]],[25,5,5,28,33,[[815,1,1,28,29],[819,4,4,29,33]]],[26,1,1,33,34,[[858,1,1,33,34]]],[27,1,1,34,35,[[875,1,1,34,35]]],[29,8,8,35,43,[[879,5,5,35,40],[880,3,3,40,43]]],[31,1,1,43,44,[[891,1,1,43,44]]],[35,1,1,44,45,[[907,1,1,44,45]]]],[771,772,4151,4475,4733,5514,6442,6444,11343,11801,11835,15674,16808,17097,17232,17764,17841,17846,17850,17854,17901,18799,18989,19021,19157,19771,20172,20346,20737,20873,20875,20876,20877,22004,22286,22367,22370,22373,22375,22377,22380,22383,22385,22567,22812]]],["back",[53,51,[[0,1,1,0,1,[[37,1,1,0,1]]],[3,1,1,1,2,[[129,1,1,1,2]]],[4,1,1,2,3,[[175,1,1,2,3]]],[5,1,1,3,4,[[197,1,1,3,4]]],[6,2,2,4,6,[[221,1,1,4,5],[228,1,1,5,6]]],[7,2,2,6,8,[[232,1,1,6,7],[233,1,1,7,8]]],[8,1,1,8,9,[[250,1,1,8,9]]],[9,2,2,9,11,[[278,1,1,9,10],[283,1,1,10,11]]],[10,11,11,11,22,[[303,7,7,11,18],[304,1,1,18,19],[309,1,1,19,20],[312,2,2,20,22]]],[11,7,6,22,28,[[313,2,1,22,23],[314,1,1,23,24],[320,1,1,24,25],[327,1,1,25,26],[331,1,1,26,27],[332,1,1,27,28]]],[12,1,1,28,29,[[358,1,1,28,29]]],[13,3,3,29,32,[[384,1,1,29,30],[385,1,1,30,31],[391,1,1,31,32]]],[15,1,1,32,33,[[414,1,1,32,33]]],[17,2,2,33,35,[[468,1,1,33,34],[474,1,1,34,35]]],[18,5,5,35,40,[[491,1,1,35,36],[530,1,1,36,37],[547,1,1,37,38],[555,1,1,38,39],[562,1,1,39,40]]],[22,2,2,40,42,[[692,1,1,40,41],[715,1,1,41,42]]],[23,7,6,42,48,[[748,2,2,42,44],[750,1,1,44,45],[752,1,1,45,46],[755,1,1,46,47],[784,2,1,47,48]]],[25,3,3,48,51,[[839,2,2,48,50],[840,1,1,50,51]]]],[1148,4101,5513,6117,6864,7019,7142,7155,7571,8309,8452,9202,9203,9204,9206,9207,9210,9213,9246,9408,9506,9513,9538,9564,9756,9945,10089,10107,10954,11567,11580,11717,12322,13680,13856,14087,14725,14974,15154,15272,17955,18381,19035,19055,19098,19158,19236,19946,21429,21433,21450]]],["bring",[13,13,[[0,4,4,0,4,[[23,2,2,0,2],[36,1,1,2,3],[41,1,1,3,4]]],[3,1,1,4,5,[[138,1,1,4,5]]],[4,3,3,5,8,[[153,1,1,5,6],[180,2,2,6,8]]],[8,1,1,8,9,[[241,1,1,8,9]]],[17,1,1,9,10,[[465,1,1,9,10]]],[18,2,2,10,12,[[549,1,1,10,11],[571,1,1,11,12]]],[31,1,1,12,13,[[889,1,1,12,13]]]],[597,599,1097,1289,4383,4914,5671,5679,7338,13580,15010,15454,22544]]],["bringeth",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16980]]],["brought",[4,4,[[4,1,1,0,1,[[153,1,1,0,1]]],[5,1,1,1,2,[[200,1,1,1,2]]],[10,1,1,2,3,[[310,1,1,2,3]]],[25,1,1,3,4,[[828,1,1,3,4]]]],[4917,6194,9417,21136]]],["call",[1,1,[[4,1,1,0,1,[[182,1,1,0,1]]]],[5709]]],["carried",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11688]]],["consider",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5043]]],["considereth",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18552]]],["convert",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17779]]],["converted",[1,1,[[18,1,1,0,1,[[528,1,1,0,1]]]],[14704]]],["converting",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14175]]],["converts",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17681]]],["deliver",[3,3,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[13,1,1,2,3,[[394,1,1,2,3]]]],[1105,2139,11775]]],["drawn",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20335]]],["drew",[1,1,[[5,1,1,0,1,[[194,1,1,0,1]]]],[6028]]],["from",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18820]]],["gave",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[9986]]],["give",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2111]]],["giveth",[1,1,[[19,1,1,0,1,[[651,1,1,0,1]]]],[17105]]],["hinder",[2,2,[[17,2,2,0,2,[[444,1,1,0,1],[446,1,1,1,2]]]],[13063,13118]]],["home",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13846]]],["let",[1,1,[[22,1,1,0,1,[[721,1,1,0,1]]]],[18518]]],["more",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13015]]],["off",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20866]]],["out",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2465]]],["past",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13194]]],["pay",[1,1,[[13,1,1,0,1,[[393,1,1,0,1]]]],[11760]]],["perverted",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18609]]],["put",[2,2,[[1,1,1,0,1,[[53,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]]],[1608,7535]]],["recall",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20375]]],["recompense",[3,3,[[3,2,2,0,2,[[121,2,2,0,2]]],[27,1,1,2,3,[[873,1,1,2,3]]]],[3799,3800,22254]]],["recompensed",[5,5,[[3,1,1,0,1,[[121,1,1,0,1]]],[9,2,2,1,3,[[288,2,2,1,3]]],[18,2,2,3,5,[[495,2,2,3,5]]]],[3800,8623,8627,14138,14142]]],["recover",[1,1,[[9,1,1,0,1,[[274,1,1,0,1]]]],[8212]]],["recovered",[2,2,[[8,1,1,0,1,[[265,1,1,0,1]]],[23,1,1,1,2,[[785,1,1,1,2]]]],[7997,19973]]],["refresheth",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17126]]],["relieve",[2,2,[[24,2,2,0,2,[[797,2,2,0,2]]]],[20321,20326]]],["render",[15,15,[[3,1,1,0,1,[[134,1,1,0,1]]],[4,2,2,1,3,[[184,2,2,1,3]]],[6,1,1,3,4,[[219,1,1,3,4]]],[8,1,1,4,5,[[261,1,1,4,5]]],[17,1,1,5,6,[[468,1,1,5,6]]],[18,4,4,6,10,[[505,1,1,6,7],[556,1,1,7,8],[571,1,1,8,9],[593,1,1,9,10]]],[19,3,3,10,13,[[651,2,2,10,12],[653,1,1,12,13]]],[22,1,1,13,14,[[744,1,1,13,14]]],[37,1,1,14,15,[[919,1,1,14,15]]]],[4266,5799,5801,6811,7928,13676,14303,15197,15433,15860,17091,17108,17157,18937,23011]]],["rendered",[2,2,[[11,1,1,0,1,[[315,1,1,0,1]]],[19,1,1,1,2,[[639,1,1,1,2]]]],[9580,16733]]],["repent",[1,1,[[10,1,1,0,1,[[298,1,1,0,1]]]],[9032]]],["reported",[1,1,[[25,1,1,0,1,[[810,1,1,0,1]]]],[20633]]],["requite",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8438]]],["requited",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7882]]],["requiting",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11305]]],["rescue",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14427]]],["restore",[20,19,[[0,4,3,0,3,[[19,2,1,0,1],[39,1,1,1,2],[41,1,1,2,3]]],[2,1,1,3,4,[[114,1,1,3,4]]],[3,1,1,4,5,[[151,1,1,4,5]]],[4,1,1,5,6,[[174,1,1,5,6]]],[6,1,1,6,7,[[227,1,1,6,7]]],[8,1,1,7,8,[[247,1,1,7,8]]],[9,2,2,8,10,[[275,1,1,8,9],[282,1,1,9,10]]],[10,1,1,10,11,[[310,1,1,10,11]]],[15,1,1,11,12,[[417,1,1,11,12]]],[17,2,2,12,14,[[455,2,2,12,14]]],[22,2,2,14,16,[[679,1,1,14,15],[727,1,1,15,16]]],[23,1,1,16,17,[[771,1,1,16,17]]],[25,1,1,17,18,[[834,1,1,17,18]]],[26,1,1,18,19,[[858,1,1,18,19]]]],[502,1185,1277,3497,4870,5472,6983,7463,8234,8429,9442,12394,13336,13344,17680,18642,19618,21295,22013]]],["restored",[10,10,[[0,3,3,0,3,[[19,1,1,0,1],[40,1,1,1,2],[41,1,1,2,3]]],[4,1,1,3,4,[[180,1,1,3,4]]],[8,1,1,4,5,[[242,1,1,4,5]]],[11,1,1,5,6,[[326,1,1,5,6]]],[13,1,1,6,7,[[392,1,1,6,7]]],[18,1,1,7,8,[[546,1,1,7,8]]],[25,2,2,8,10,[[819,2,2,8,10]]]],[509,1208,1280,5642,7366,9918,11734,14939,20856,20861]]],["restorer",[2,2,[[7,1,1,0,1,[[235,1,1,0,1]]],[22,1,1,1,2,[[736,1,1,1,2]]]],[7205,18798]]],["restoreth",[1,1,[[18,1,1,0,1,[[500,1,1,0,1]]]],[14238]]],["retire",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8274]]],["return",[214,193,[[0,5,4,0,4,[[2,2,1,0,1],[13,1,1,1,2],[17,1,1,2,3],[30,1,1,3,4]]],[1,4,4,4,8,[[53,3,3,4,7],[62,1,1,7,8]]],[2,8,6,8,14,[[114,7,5,8,13],[116,1,1,13,14]]],[3,5,5,14,19,[[130,2,2,14,16],[148,2,2,16,18],[151,1,1,18,19]]],[4,10,9,19,28,[[155,1,1,19,20],[169,2,1,20,21],[172,4,4,21,25],[182,3,3,25,28]]],[5,2,2,28,30,[[187,1,1,28,29],[206,1,1,29,30]]],[6,2,2,30,32,[[217,1,1,30,31],[221,1,1,31,32]]],[7,6,6,32,38,[[232,6,6,32,38]]],[8,8,8,38,46,[[241,2,2,38,40],[242,1,1,40,41],[244,1,1,41,42],[250,1,1,42,43],[261,1,1,43,44],[264,2,2,44,46]]],[9,9,9,46,55,[[268,1,1,46,47],[269,1,1,47,48],[276,1,1,48,49],[278,1,1,49,50],[281,4,4,50,54],[290,1,1,54,55]]],[10,7,7,55,62,[[292,1,1,55,56],[298,1,1,56,57],[302,2,2,57,59],[303,1,1,59,60],[309,1,1,60,61],[312,1,1,61,62]]],[11,4,4,62,66,[[330,1,1,62,63],[331,2,2,63,65],[332,1,1,65,66]]],[12,1,1,66,67,[[356,1,1,66,67]]],[13,9,9,67,76,[[372,2,2,67,69],[376,2,2,69,71],[377,1,1,71,72],[384,2,2,72,74],[396,2,2,74,76]]],[15,3,3,76,79,[[414,1,1,76,77],[416,1,1,77,78],[421,1,1,78,79]]],[16,1,1,79,80,[[434,1,1,79,80]]],[17,11,11,80,91,[[436,1,1,80,81],[441,1,1,81,82],[442,1,1,82,83],[445,1,1,83,84],[450,1,1,84,85],[451,1,1,85,86],[452,1,1,86,87],[457,1,1,87,88],[468,1,1,88,89],[471,1,1,89,90],[474,1,1,90,91]]],[18,9,9,91,100,[[483,1,1,91,92],[484,2,2,92,94],[536,2,2,94,96],[550,1,1,96,97],[551,1,1,97,98],[571,1,1,98,99],[581,1,1,99,100]]],[19,1,1,100,101,[[653,1,1,100,101]]],[20,5,4,101,105,[[659,1,1,101,102],[663,1,1,102,103],[670,3,2,103,105]]],[21,3,1,105,106,[[676,3,1,105,106]]],[22,13,13,106,119,[[684,1,1,106,107],[688,2,2,107,109],[697,1,1,109,110],[699,1,1,110,111],[713,1,1,111,112],[715,2,2,112,114],[722,1,1,114,115],[723,1,1,115,116],[729,1,1,116,117],[733,2,2,117,119]]],[23,41,34,119,153,[[747,2,1,119,120],[748,2,1,120,121],[749,1,1,121,122],[752,2,2,122,124],[756,1,1,124,125],[759,4,2,125,127],[762,1,1,127,128],[766,4,3,128,131],[767,2,2,131,133],[768,1,1,133,134],[774,3,3,134,137],[775,1,1,137,138],[776,1,1,138,139],[777,2,2,139,141],[778,3,3,141,144],[780,2,2,144,146],[781,2,2,146,148],[782,1,1,148,149],[788,4,2,149,151],[790,1,1,151,152],[794,1,1,152,153]]],[25,13,10,153,163,[[808,2,1,153,154],[814,1,1,154,155],[817,3,1,155,156],[819,1,1,156,157],[822,2,2,157,159],[830,1,1,159,160],[847,2,2,160,162],[848,1,1,162,163]]],[26,9,7,163,170,[[859,1,1,163,164],[860,8,6,164,170]]],[27,15,14,170,184,[[863,2,2,170,172],[864,1,1,172,173],[866,1,1,173,174],[867,1,1,174,175],[868,2,2,175,177],[869,1,1,177,178],[870,1,1,178,179],[872,3,2,179,181],[873,1,1,181,182],[875,2,2,182,184]]],[28,3,3,184,187,[[877,1,1,184,185],[878,2,2,185,187]]],[30,1,1,187,188,[[888,1,1,187,188]]],[32,2,2,188,190,[[893,1,1,188,189],[897,1,1,189,190]]],[38,4,3,190,193,[[925,1,1,190,191],[927,3,2,191,193]]]],[74,353,438,886,1619,1620,1622,1884,3479,3482,3496,3497,3510,3594,4111,4112,4736,4740,4873,4995,5380,5432,5433,5434,5435,5710,5711,5716,5866,6378,6697,6860,7133,7134,7135,7137,7142,7143,7335,7339,7355,7396,7586,7926,7974,7978,8075,8097,8245,8309,8408,8409,8416,8423,8705,8803,9033,9175,9177,9200,9402,9497,10038,10068,10094,10108,10912,11306,11320,11401,11404,11418,11558,11568,11833,11836,12313,12371,12528,12859,12890,13007,13018,13107,13225,13260,13270,13412,13675,13746,13838,13995,14002,14011,14796,14804,15030,15069,15446,15600,17168,17322,17412,17525,17530,17627,17782,17871,17872,18026,18047,18330,18359,18386,18555,18584,18684,18747,18751,19003,19028,19061,19157,19158,19264,19322,19334,19395,19464,19465,19481,19498,19504,19531,19670,19677,19691,19699,19775,19782,19801,19812,19817,19823,19845,19849,19881,19894,19921,20024,20038,20072,20175,20590,20730,20817,20872,20949,20974,21197,21664,21672,21685,22035,22045,22046,22049,22064,22065,22066,22112,22114,22133,22167,22168,22188,22194,22207,22211,22245,22249,22266,22283,22289,22325,22347,22350,22525,22586,22636,23093,23127,23138]]],["returned",[144,143,[[0,18,18,0,18,[[7,3,3,0,3],[13,1,1,3,4],[17,1,1,4,5],[20,1,1,5,6],[21,1,1,6,7],[30,1,1,7,8],[31,1,1,8,9],[32,1,1,9,10],[36,2,2,10,12],[37,1,1,12,13],[41,1,1,13,14],[42,2,2,14,16],[43,1,1,16,17],[49,1,1,17,18]]],[1,7,7,18,25,[[53,2,2,18,20],[54,1,1,20,21],[63,2,2,21,23],[81,1,1,23,24],[83,1,1,24,25]]],[2,1,1,25,26,[[111,1,1,25,26]]],[3,5,5,26,31,[[129,1,1,26,27],[130,1,1,27,28],[132,1,1,28,29],[139,1,1,29,30],[140,1,1,30,31]]],[4,1,1,31,32,[[153,1,1,31,32]]],[5,13,13,32,45,[[188,3,3,32,35],[190,1,1,35,36],[192,1,1,36,37],[193,1,1,37,38],[194,1,1,38,39],[196,4,4,39,43],[208,2,2,43,45]]],[6,8,8,45,53,[[212,1,1,45,46],[215,1,1,46,47],[217,2,2,47,49],[218,1,1,49,50],[221,1,1,50,51],[224,1,1,51,52],[231,1,1,52,53]]],[7,2,1,53,54,[[232,2,1,53,54]]],[8,12,12,54,66,[[236,1,1,54,55],[241,2,2,55,57],[252,3,3,57,60],[253,1,1,60,61],[258,1,1,61,62],[259,1,1,62,63],[260,1,1,63,64],[261,1,1,64,65],[262,1,1,65,66]]],[9,18,18,66,84,[[267,2,2,66,68],[268,1,1,68,69],[269,2,2,69,71],[272,1,1,71,72],[274,1,1,72,73],[276,1,1,73,74],[277,1,1,74,75],[278,1,1,75,76],[282,1,1,76,77],[283,2,2,77,79],[284,1,1,79,80],[285,2,2,80,82],[286,1,1,82,83],[289,1,1,83,84]]],[10,3,3,84,87,[[302,1,1,84,85],[303,2,2,85,87]]],[11,11,11,87,98,[[314,1,1,87,88],[315,1,1,88,89],[316,1,1,89,90],[317,1,1,90,91],[319,1,1,91,92],[320,1,1,92,93],[321,1,1,93,94],[326,1,1,94,95],[331,2,2,95,97],[335,1,1,97,98]]],[12,1,1,98,99,[[357,1,1,98,99]]],[13,14,14,99,113,[[376,1,1,99,100],[377,1,1,100,101],[380,1,1,101,102],[385,2,2,102,104],[386,1,1,104,105],[388,1,1,105,106],[391,2,2,106,108],[394,1,1,108,109],[397,1,1,109,110],[398,1,1,110,111],[400,2,2,111,113]]],[15,3,3,113,116,[[414,1,1,113,114],[416,1,1,114,115],[421,1,1,115,116]]],[16,2,2,116,118,[[427,1,1,116,117],[432,1,1,117,118]]],[18,2,2,118,120,[[512,1,1,118,119],[555,1,1,119,120]]],[20,3,3,120,123,[[662,2,2,120,122],[667,1,1,122,123]]],[22,3,3,123,126,[[715,2,2,123,125],[716,1,1,125,126]]],[23,5,5,126,131,[[747,1,1,126,127],[758,1,1,127,128],[784,1,1,128,129],[785,1,1,129,130],[787,1,1,130,131]]],[25,3,3,131,134,[[802,1,1,131,132],[809,1,1,132,133],[848,1,1,133,134]]],[27,1,1,134,135,[[867,1,1,134,135]]],[29,5,5,135,140,[[882,5,5,135,140]]],[37,3,3,140,143,[[911,2,2,140,142],[918,1,1,142,143]]]],[186,192,195,343,457,545,566,928,934,976,1112,1113,1141,1276,1300,1308,1337,1520,1619,1621,1654,1916,1917,2469,2527,3382,4100,4144,4244,4422,4471,4937,5885,5891,5892,5928,5963,5979,6026,6079,6085,6102,6107,6435,6458,6564,6652,6697,6709,6732,6868,6917,7125,7149,7231,7347,7348,7633,7671,7675,7682,7838,7840,7900,7930,7939,8023,8044,8079,8097,8108,8177,8222,8254,8263,8317,8434,8452,8469,8494,8526,8550,8576,8663,9175,9194,9217,9576,9603,9638,9662,9722,9730,9771,9910,10069,10097,10185,10929,11397,11418,11490,11577,11584,11614,11650,11714,11728,11779,11855,11896,11940,11942,12322,12374,12539,12738,12815,14423,15147,17382,17388,17486,18360,18389,18398,19009,19296,19953,19971,20002,20478,20621,21686,22178,22416,22418,22419,22420,22421,22884,22894,22979]]],["returneth",[4,4,[[18,1,1,0,1,[[623,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]],[22,1,1,2,3,[[733,1,1,2,3]]],[25,1,1,3,4,[[836,1,1,3,4]]]],[16345,17152,18750,21351]]],["reverse",[2,2,[[3,1,1,0,1,[[139,1,1,0,1]]],[16,1,1,1,2,[[433,1,1,1,2]]]],[4436,12825]]],["reward",[2,2,[[18,1,1,0,1,[[531,1,1,0,1]]],[27,1,1,1,2,[[865,1,1,1,2]]]],[14730,22142]]],["rewardeth",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16886]]],["set",[1,1,[[8,1,1,0,1,[[240,1,1,0,1]]]],[7322]]],["take",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13069]]],["turn",[60,56,[[1,1,1,0,1,[[63,1,1,0,1]]],[4,3,3,1,4,[[156,1,1,1,2],[165,1,1,2,3],[182,1,1,3,4]]],[5,3,3,4,7,[[208,2,2,4,6],[210,1,1,6,7]]],[10,1,1,7,8,[[298,1,1,7,8]]],[13,4,4,8,12,[[372,2,2,8,10],[373,1,1,10,11],[381,1,1,11,12]]],[15,3,3,12,15,[[413,1,1,12,13],[416,1,1,13,14],[421,1,1,14,15]]],[17,1,1,15,16,[[458,1,1,15,16]]],[18,7,7,16,23,[[484,1,1,16,17],[499,1,1,17,18],[521,1,1,18,19],[533,1,1,19,20],[537,1,1,20,21],[596,1,1,21,22],[609,1,1,22,23]]],[22,3,3,23,26,[[679,1,1,23,24],[701,1,1,24,25],[706,1,1,25,26]]],[23,5,5,26,31,[[746,1,1,26,27],[762,1,1,27,28],[770,1,1,28,29],[775,1,1,29,30],[788,1,1,30,31]]],[25,14,11,31,42,[[804,2,2,31,33],[815,1,1,33,34],[819,3,3,34,37],[834,7,4,37,41],[839,1,1,41,42]]],[26,4,3,42,45,[[858,1,1,42,43],[860,3,2,43,45]]],[27,3,3,45,48,[[866,1,1,45,46],[873,1,1,46,47],[875,1,1,47,48]]],[28,2,2,48,50,[[877,2,2,48,50]]],[29,1,1,50,51,[[879,1,1,50,51]]],[31,2,2,51,53,[[891,2,2,51,53]]],[37,2,2,53,55,[[911,1,1,53,54],[923,1,1,54,55]]],[38,1,1,55,56,[[928,1,1,55,56]]]],[1891,5034,5289,5718,6449,6455,6496,9020,11308,11319,11338,11494,12305,12363,12537,13432,14007,14231,14581,14764,14808,15977,16162,17679,18094,18170,19000,19392,19575,19709,20015,20521,20522,20737,20870,20879,20881,21289,21291,21294,21299,21437,22001,22054,22055,22156,22258,22284,22323,22324,22372,22566,22567,22881,23066,23144]]],["turned",[29,29,[[5,2,2,0,2,[[193,1,1,0,1],[205,1,1,1,2]]],[11,3,3,2,5,[[335,2,2,2,4],[336,1,1,4,5]]],[13,1,1,5,6,[[378,1,1,5,6]]],[14,1,1,6,7,[[412,1,1,6,7]]],[15,1,1,7,8,[[421,1,1,7,8]]],[18,6,6,8,14,[[486,2,2,8,10],[558,1,1,10,11],[562,1,1,11,12],[566,1,1,12,13],[596,1,1,13,14]]],[22,1,1,14,15,[[707,1,1,14,15]]],[23,8,8,15,23,[[747,1,1,15,16],[752,1,1,16,17],[767,1,1,17,18],[775,2,2,18,20],[778,3,3,20,23]]],[24,3,3,23,26,[[797,1,1,23,24],[799,1,1,24,25],[801,1,1,25,26]]],[31,1,1,26,27,[[891,1,1,26,27]]],[37,2,2,27,29,[[915,1,1,27,28],[916,1,1,28,29]]]],[6002,6333,10190,10191,10203,11449,12266,12546,14024,14038,15231,15274,15369,15957,18210,19012,19159,19506,19709,19710,19812,19816,19817,20323,20357,20463,22568,22937,22948]]],["turnest",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,1,1,1,2,[[567,1,1,1,2]]]],[13216,15381]]],["turneth",[9,8,[[5,4,3,0,3,[[205,4,3,0,3]]],[22,2,2,3,5,[[687,1,1,3,4],[722,1,1,4,5]]],[24,1,1,5,6,[[797,1,1,5,6]]],[25,2,2,6,8,[[834,2,2,6,8]]]],[6348,6350,6355,17842,18558,20318,21292,21298]]],["withdraw",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13064]]],["withdrawest",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15059]]],["withdrawn",[2,2,[[24,1,1,0,1,[[798,1,1,0,1]]],[25,1,1,1,2,[[819,1,1,1,2]]]],[20340,20857]]]]},{"k":"H7726","v":[["*",[3,3,[[22,1,1,0,1,[[735,1,1,0,1]]],[23,2,2,1,3,[[747,2,2,1,3]]]],[18782,19016,19024]]],["backsliding",[2,2,[[23,2,2,0,2,[[747,2,2,0,2]]]],[19016,19024]]],["frowardly",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18782]]]]},{"k":"H7727","v":[["Shobab",[4,4,[[9,1,1,0,1,[[271,1,1,0,1]]],[12,3,3,1,4,[[339,1,1,1,2],[340,1,1,2,3],[351,1,1,3,4]]]],[8146,10324,10366,10778]]]]},{"k":"H7728","v":[["*",[3,3,[[23,2,2,0,2,[[775,1,1,0,1],[793,1,1,1,2]]],[32,1,1,2,3,[[894,1,1,2,3]]]],[19713,20131,22599]]],["away",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22599]]],["backsliding",[2,2,[[23,2,2,0,2,[[775,1,1,0,1],[793,1,1,1,2]]]],[19713,20131]]]]},{"k":"H7729","v":[["returning",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18232]]]]},{"k":"H7730","v":[["boughs",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8487]]]]},{"k":"H7731","v":[["Shobach",[2,2,[[9,2,2,0,2,[[276,2,2,0,2]]]],[8256,8258]]]]},{"k":"H7732","v":[["Shobal",[9,9,[[0,3,3,0,3,[[35,3,3,0,3]]],[12,6,6,3,9,[[338,2,2,3,5],[339,2,2,5,7],[341,2,2,7,9]]]],[1060,1063,1069,10290,10292,10356,10358,10386,10387]]]]},{"k":"H7733","v":[["Shobek",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12573]]]]},{"k":"H7734","v":[["turned",[1,1,[[9,1,1,0,1,[[267,1,1,0,1]]]],[8044]]]]},{"k":"H7735","v":[["grow",[1,1,[[22,1,1,0,1,[[695,1,1,0,1]]]],[17994]]]]},{"k":"H7736","v":[["wasteth",[1,1,[[18,1,1,0,1,[[568,1,1,0,1]]]],[15401]]]]},{"k":"H7737","v":[["*",[21,21,[[9,1,1,0,1,[[288,1,1,0,1]]],[16,3,3,1,4,[[428,1,1,1,2],[430,1,1,2,3],[432,1,1,3,4]]],[17,1,1,4,5,[[468,1,1,4,5]]],[18,6,6,5,11,[[493,1,1,5,6],[495,1,1,6,7],[498,1,1,7,8],[566,1,1,8,9],[596,1,1,9,10],[608,1,1,10,11]]],[19,4,4,11,15,[[630,1,1,11,12],[635,1,1,12,13],[653,1,1,13,14],[654,1,1,14,15]]],[22,4,4,15,19,[[706,1,1,15,16],[716,1,1,16,17],[718,1,1,17,18],[724,1,1,18,19]]],[24,1,1,19,20,[[798,1,1,19,20]]],[27,1,1,20,21,[[871,1,1,20,21]]]],[8636,12755,12792,12811,13677,14100,14151,14196,15345,15928,16150,16470,16613,17145,17184,18189,18403,18445,18591,20345,22226]]],["alike",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17184]]],["availeth",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12792]]],["behaved",[1,1,[[18,1,1,0,1,[[608,1,1,0,1]]]],[16150]]],["compared",[2,2,[[19,2,2,0,2,[[630,1,1,0,1],[635,1,1,1,2]]]],[16470,16613]]],["countervail",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12811]]],["equal",[3,3,[[22,2,2,0,2,[[718,1,1,0,1],[724,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]]],[18445,18591,20345]]],["forth",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22226]]],["laid",[3,3,[[18,3,3,0,3,[[498,1,1,0,1],[566,1,1,1,2],[596,1,1,2,3]]]],[14196,15345,15928]]],["like",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17145]]],["maketh",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8636,14151]]],["plain",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18189]]],["profit",[1,1,[[16,1,1,0,1,[[428,1,1,0,1]]]],[12755]]],["profited",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13677]]],["reckoned",[1,1,[[22,1,1,0,1,[[716,1,1,0,1]]]],[18403]]],["set",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14100]]]]},{"k":"H7738","v":[["substance",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13579]]]]},{"k":"H7739","v":[["made",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[854,1,1,1,2]]]],[21836,21895]]]]},{"k":"H7740","v":[["Shaveh",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[353]]]]},{"k":"H7741","v":[["Kiriathaim",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[341]]]]},{"k":"H7742","v":[["meditate",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[654]]]]},{"k":"H7743","v":[["*",[3,3,[[18,1,1,0,1,[[521,1,1,0,1]]],[19,1,1,1,2,[[629,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]]],[14596,16451,20374]]],["down",[1,1,[[18,1,1,0,1,[[521,1,1,0,1]]]],[14596]]],["humbled",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20374]]],["inclineth",[1,1,[[19,1,1,0,1,[[629,1,1,0,1]]]],[16451]]]]},{"k":"H7744","v":[["Shuah",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[660,10284]]]]},{"k":"H7745","v":[["*",[5,5,[[19,2,2,0,2,[[649,1,1,0,1],[650,1,1,1,2]]],[23,3,3,2,5,[[746,1,1,2,3],[762,2,2,3,5]]]],[17029,17071,18971,19404,19406]]],["ditch",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17071]]],["pit",[3,3,[[19,1,1,0,1,[[649,1,1,0,1]]],[23,2,2,1,3,[[762,2,2,1,3]]]],[17029,19404,19406]]],["pits",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18971]]]]},{"k":"H7746","v":[["Shuah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10396]]]]},{"k":"H7747","v":[["Shuhite",[5,5,[[17,5,5,0,5,[[437,1,1,0,1],[443,1,1,1,2],[453,1,1,2,3],[460,1,1,3,4],[477,1,1,4,5]]]],[12902,13030,13277,13462,13931]]]]},{"k":"H7748","v":[["Shuham",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4531]]]]},{"k":"H7749","v":[["Shuhamites",[2,2,[[3,2,2,0,2,[[142,2,2,0,2]]]],[4531,4532]]]]},{"k":"H7750","v":[["aside",[2,2,[[18,2,2,0,2,[[517,1,1,0,1],[578,1,1,1,2]]]],[14529,15516]]]]},{"k":"H7751","v":[["*",[13,13,[[3,1,1,0,1,[[127,1,1,0,1]]],[9,2,2,1,3,[[290,2,2,1,3]]],[13,1,1,3,4,[[382,1,1,3,4]]],[17,2,2,4,6,[[436,1,1,4,5],[437,1,1,5,6]]],[23,2,2,6,8,[[749,1,1,6,7],[793,1,1,7,8]]],[25,2,2,8,10,[[828,2,2,8,10]]],[26,1,1,10,11,[[861,1,1,10,11]]],[29,1,1,11,12,[[886,1,1,11,12]]],[37,1,1,12,13,[[914,1,1,12,13]]]],[4032,8694,8700,11518,12876,12893,19059,20130,21129,21147,22085,22493,22932]]],["+",[2,2,[[17,2,2,0,2,[[436,1,1,0,1],[437,1,1,1,2]]]],[12876,12893]]],["Go",[1,1,[[9,1,1,0,1,[[290,1,1,0,1]]]],[8694]]],["about",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4032]]],["fro",[6,6,[[13,1,1,0,1,[[382,1,1,0,1]]],[23,2,2,1,3,[[749,1,1,1,2],[793,1,1,2,3]]],[26,1,1,3,4,[[861,1,1,3,4]]],[29,1,1,4,5,[[886,1,1,4,5]]],[37,1,1,5,6,[[914,1,1,5,6]]]],[11518,19059,20130,22085,22493,22932]]],["gone",[1,1,[[9,1,1,0,1,[[290,1,1,0,1]]]],[8700]]],["mariners",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21129]]],["rowers",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21147]]]]},{"k":"H7752","v":[["*",[11,11,[[10,2,2,0,2,[[302,2,2,0,2]]],[13,2,2,2,4,[[376,2,2,2,4]]],[17,2,2,4,6,[[440,1,1,4,5],[444,1,1,5,6]]],[19,1,1,6,7,[[653,1,1,6,7]]],[22,3,3,7,10,[[688,1,1,7,8],[706,2,2,8,10]]],[33,1,1,10,11,[[902,1,1,10,11]]]],[9162,9165,11406,11409,12972,13074,17144,17876,18179,18182,22714]]],["scourge",[5,5,[[17,2,2,0,2,[[440,1,1,0,1],[444,1,1,1,2]]],[22,3,3,2,5,[[688,1,1,2,3],[706,2,2,3,5]]]],[12972,13074,17876,18179,18182]]],["whip",[2,2,[[19,1,1,0,1,[[653,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[17144,22714]]],["whips",[4,4,[[10,2,2,0,2,[[302,2,2,0,2]]],[13,2,2,2,4,[[376,2,2,2,4]]]],[9162,9165,11406,11409]]]]},{"k":"H7753","v":[["*",[3,3,[[17,2,2,0,2,[[436,1,1,0,1],[445,1,1,1,2]]],[27,1,1,2,3,[[863,1,1,2,3]]]],[12879,13097,22111]]],["+",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22111]]],["fenced",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13097]]],["hedge",[1,1,[[17,1,1,0,1,[[436,1,1,0,1]]]],[12879]]]]},{"k":"H7754","v":[["bough",[2,2,[[6,2,2,0,2,[[219,2,2,0,2]]]],[6802,6803]]]]},{"k":"H7755","v":[["*",[8,7,[[5,2,2,0,2,[[201,2,2,0,2]]],[8,2,1,2,3,[[252,2,1,2,3]]],[10,1,1,3,4,[[294,1,1,3,4]]],[12,1,1,4,5,[[341,1,1,4,5]]],[13,2,2,5,7,[[377,1,1,5,6],[394,1,1,6,7]]]],[6237,6250,7619,8854,10403,11421,11782]]],["Shocho",[1,1,[[13,1,1,0,1,[[394,1,1,0,1]]]],[11782]]],["Shochoh",[2,1,[[8,2,1,0,1,[[252,2,1,0,1]]]],[7619]]],["Shoco",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11421]]],["Socho",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10403]]],["Sochoh",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8854]]],["Socoh",[2,2,[[5,2,2,0,2,[[201,2,2,0,2]]]],[6237,6250]]]]},{"k":"H7756","v":[["Suchathites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10361]]]]},{"k":"H7757","v":[["*",[11,10,[[1,6,5,0,5,[[77,3,2,0,2],[88,3,3,2,5]]],[22,1,1,5,6,[[684,1,1,5,6]]],[23,2,2,6,8,[[757,2,2,6,8]]],[24,1,1,8,9,[[797,1,1,8,9]]],[33,1,1,9,10,[[902,1,1,9,10]]]],[2326,2327,2688,2689,2690,17770,19288,19292,20319,22717]]],["hem",[5,4,[[1,5,4,0,4,[[77,3,2,0,2],[88,2,2,2,4]]]],[2326,2327,2689,2690]]],["hems",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2688]]],["skirts",[4,4,[[23,2,2,0,2,[[757,2,2,0,2]]],[24,1,1,2,3,[[797,1,1,2,3]]],[33,1,1,3,4,[[902,1,1,3,4]]]],[19288,19292,20319,22717]]],["train",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17770]]]]},{"k":"H7758","v":[["*",[3,3,[[17,2,2,0,2,[[447,2,2,0,2]]],[32,1,1,2,3,[[893,1,1,2,3]]]],[13145,13147,22587]]],["spoiled",[2,2,[[17,2,2,0,2,[[447,2,2,0,2]]]],[13145,13147]]],["stripped",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22587]]]]},{"k":"H7759","v":[["Shulamite",[2,1,[[21,2,1,0,1,[[676,2,1,0,1]]]],[17627]]]]},{"k":"H7760","v":[["*",[580,546,[[0,47,45,0,45,[[1,1,1,0,1],[3,1,1,1,2],[5,1,1,2,3],[8,1,1,3,4],[12,1,1,4,5],[20,3,3,5,8],[21,2,2,8,10],[23,4,4,10,14],[26,1,1,14,15],[27,4,3,15,18],[29,3,3,18,21],[30,3,3,21,24],[31,2,2,24,26],[32,1,1,26,27],[36,1,1,27,28],[39,1,1,28,29],[40,1,1,29,30],[42,3,3,30,33],[43,3,3,33,36],[44,3,3,36,39],[45,1,1,39,40],[46,3,3,40,43],[47,3,2,43,45]]],[1,50,47,45,92,[[50,1,1,45,46],[51,3,2,46,48],[52,1,1,48,49],[53,4,3,49,52],[54,2,2,52,54],[57,2,2,54,56],[58,2,2,56,58],[59,1,1,58,59],[63,1,1,59,60],[64,3,2,60,62],[66,2,2,62,64],[67,1,1,64,65],[68,1,1,65,66],[70,2,2,66,68],[71,1,1,68,69],[73,1,1,69,70],[75,1,1,70,71],[77,3,3,71,74],[78,2,2,74,76],[81,1,1,76,77],[82,1,1,77,78],[88,2,2,78,80],[89,12,12,80,92]]],[2,11,10,92,102,[[91,1,1,92,93],[94,1,1,93,94],[95,1,1,94,95],[97,4,3,95,98],[98,1,1,98,99],[99,1,1,99,100],[109,1,1,100,101],[113,1,1,101,102]]],[3,19,19,102,121,[[120,4,4,102,106],[122,2,2,106,108],[127,2,2,108,110],[132,3,3,110,113],[137,2,2,113,115],[138,1,1,115,116],[139,3,3,116,119],[140,2,2,119,121]]],[4,24,22,121,143,[[153,1,1,121,122],[156,1,1,122,123],[159,1,1,123,124],[162,3,3,124,127],[163,1,1,127,128],[164,2,2,128,130],[166,2,2,130,132],[169,4,2,132,134],[174,3,3,134,137],[178,1,1,137,138],[179,1,1,138,139],[183,2,2,139,141],[184,1,1,141,142],[185,1,1,142,143]]],[5,12,11,143,154,[[192,1,1,143,144],[193,2,2,144,146],[194,4,4,146,150],[196,3,2,150,152],[210,2,2,152,154]]],[6,21,20,154,174,[[211,1,1,154,155],[214,1,1,155,156],[216,2,1,156,157],[217,1,1,157,158],[218,2,2,158,160],[219,4,4,160,164],[221,1,1,164,165],[222,1,1,165,166],[225,1,1,166,167],[226,1,1,167,168],[228,3,3,168,171],[229,1,1,171,172],[230,2,2,172,174]]],[7,1,1,174,175,[[234,1,1,174,175]]],[8,35,33,175,208,[[237,1,1,175,176],[241,3,3,176,179],[242,1,1,179,180],[243,4,4,180,184],[244,4,3,184,187],[245,1,1,187,188],[246,2,2,188,190],[250,1,1,190,191],[252,2,2,191,193],[253,2,2,193,195],[254,3,2,195,197],[256,2,2,197,199],[257,2,2,199,201],[260,2,2,201,203],[263,3,3,203,206],[265,1,1,206,207],[266,1,1,207,208]]],[9,20,18,208,226,[[273,2,2,208,210],[274,3,2,210,212],[278,2,2,212,214],[279,3,3,214,217],[280,2,2,217,219],[281,1,1,219,220],[283,1,1,220,221],[284,3,2,221,223],[285,1,1,223,224],[289,2,2,224,226]]],[10,26,22,226,248,[[292,3,3,226,229],[295,1,1,229,230],[298,1,1,230,231],[299,1,1,231,232],[300,1,1,232,233],[301,1,1,233,234],[302,1,1,234,235],[304,1,1,235,236],[308,6,4,236,240],[309,1,1,240,241],[310,7,5,241,246],[311,1,1,246,247],[312,1,1,247,248]]],[11,26,25,248,273,[[314,1,1,248,249],[316,4,4,249,253],[318,1,1,253,254],[320,1,1,254,255],[321,2,2,255,257],[322,5,5,257,262],[323,2,2,262,264],[324,1,1,264,265],[325,2,2,265,267],[329,1,1,267,268],[330,1,1,268,269],[331,1,1,269,270],[332,1,1,270,271],[333,3,2,271,273]]],[12,7,7,273,280,[[347,1,1,273,274],[348,1,1,274,275],[354,2,2,275,277],[355,2,2,277,279],[363,1,1,279,280]]],[13,10,9,280,289,[[367,1,1,280,281],[372,2,2,281,283],[378,1,1,283,284],[384,1,1,284,285],[389,2,2,285,287],[399,3,2,287,289]]],[14,2,2,289,291,[[410,1,1,289,290],[412,1,1,290,291]]],[15,2,2,291,293,[[420,1,1,291,292],[421,1,1,292,293]]],[16,4,4,293,297,[[427,1,1,293,294],[428,1,1,294,295],[433,1,1,295,296],[435,1,1,296,297]]],[17,40,40,297,337,[[436,2,2,297,299],[437,1,1,299,300],[439,2,2,300,302],[440,2,2,302,304],[442,2,2,304,306],[448,2,2,306,308],[452,2,2,308,310],[453,1,1,310,311],[454,1,1,311,312],[455,1,1,312,313],[456,1,1,313,314],[457,1,1,314,315],[458,1,1,315,316],[459,3,3,316,319],[463,1,1,319,320],[464,1,1,320,321],[466,1,1,321,322],[468,1,1,322,323],[469,3,3,323,326],[471,1,1,326,327],[472,1,1,327,328],[473,4,4,328,332],[474,1,1,332,333],[475,1,1,333,334],[476,3,3,334,337]]],[18,36,36,337,373,[[495,1,1,337,338],[496,1,1,338,339],[516,1,1,339,340],[517,1,1,340,341],[521,2,2,341,343],[523,1,1,343,344],[527,1,1,344,345],[529,1,1,345,346],[531,1,1,346,347],[533,1,1,347,348],[543,3,3,348,351],[551,1,1,351,352],[555,3,3,352,355],[556,1,1,355,356],[557,1,1,356,357],[558,1,1,357,358],[562,1,1,358,359],[563,1,1,359,360],[566,3,3,360,363],[568,1,1,363,364],[581,2,2,364,366],[582,2,2,366,368],[584,3,3,368,371],[586,1,1,371,372],[624,1,1,372,373]]],[19,3,3,373,376,[[635,1,1,373,374],[650,1,1,374,375],[657,1,1,375,376]]],[21,3,3,376,379,[[671,1,1,376,377],[676,1,1,377,378],[678,1,1,378,379]]],[22,53,49,379,428,[[681,1,1,379,380],[683,2,1,380,381],[691,1,1,381,382],[692,2,2,382,384],[699,1,1,384,385],[701,1,1,385,386],[703,1,1,386,387],[705,1,1,387,388],[706,3,3,388,391],[715,1,1,391,392],[719,6,5,392,397],[720,5,5,397,402],[721,1,1,402,403],[722,1,1,403,404],[725,2,2,404,406],[727,3,2,406,408],[728,3,3,408,411],[729,5,4,411,415],[731,1,1,415,416],[732,1,1,416,417],[735,4,4,417,421],[737,1,1,421,422],[738,2,2,422,424],[739,1,1,424,425],[740,1,1,425,426],[741,1,1,426,427],[744,1,1,427,428]]],[23,37,35,428,463,[[746,1,1,428,429],[748,1,1,429,430],[749,1,1,430,431],[750,1,1,431,432],[751,1,1,432,433],[753,1,1,433,434],[754,1,1,434,435],[755,1,1,435,436],[756,2,1,436,437],[757,3,3,437,440],[761,1,1,440,441],[762,1,1,441,442],[763,1,1,442,443],[765,1,1,443,444],[768,1,1,444,445],[769,2,2,445,447],[773,1,1,447,448],[775,1,1,448,449],[776,2,2,449,451],[777,1,1,451,452],[782,1,1,452,453],[783,1,1,453,454],[784,2,2,454,456],[786,3,2,456,458],[787,1,1,458,459],[788,2,2,459,461],[793,1,1,461,462],[795,1,1,462,463]]],[24,2,2,463,465,[[799,2,2,463,465]]],[25,40,38,465,503,[[805,2,2,465,467],[806,1,1,467,468],[807,1,1,468,469],[808,1,1,469,470],[812,1,1,470,471],[814,1,1,471,472],[815,3,3,472,475],[816,1,1,475,476],[817,1,1,476,477],[818,2,2,477,479],[820,1,1,479,480],[821,2,2,480,482],[822,6,5,482,487],[824,2,2,487,489],[825,2,2,489,491],[826,1,1,491,492],[827,1,1,492,493],[829,1,1,493,494],[830,1,1,494,495],[831,1,1,495,496],[836,2,2,496,498],[839,1,1,498,499],[840,1,1,499,500],[841,1,1,500,501],[845,3,2,501,503]]],[26,4,3,503,506,[[850,3,2,503,505],[860,1,1,505,506]]],[27,4,4,506,510,[[862,1,1,506,507],[863,2,2,507,509],[872,1,1,509,510]]],[28,1,1,510,511,[[876,1,1,510,511]]],[29,3,3,511,514,[[885,1,1,511,512],[886,1,1,512,513],[887,1,1,513,514]]],[30,2,2,514,516,[[888,2,2,514,516]]],[32,8,7,516,523,[[893,2,2,516,518],[894,1,1,518,519],[896,3,2,519,521],[897,1,1,521,522],[899,1,1,522,523]]],[33,2,2,523,525,[[900,1,1,523,524],[902,1,1,524,525]]],[34,3,3,525,528,[[903,1,1,525,526],[904,1,1,526,527],[905,1,1,527,528]]],[35,2,2,528,530,[[907,1,1,528,529],[908,1,1,529,530]]],[36,7,5,530,535,[[909,2,2,530,532],[910,5,3,532,535]]],[37,10,9,535,544,[[913,2,1,535,536],[916,1,1,536,537],[917,2,2,537,539],[919,1,1,539,540],[920,1,1,540,541],[922,3,3,541,544]]],[38,3,2,544,546,[[925,1,1,544,545],[926,2,1,545,546]]]],[38,94,153,228,334,526,527,531,553,556,593,600,624,638,764,784,791,795,866,871,872,894,907,910,940,944,962,1117,1187,1237,1312,1321,1322,1325,1326,1345,1365,1366,1367,1389,1426,1446,1449,1469,1471,1543,1557,1568,1601,1612,1616,1622,1640,1646,1722,1733,1747,1763,1779,1910,1945,1946,1995,1997,2020,2033,2078,2090,2138,2183,2270,2305,2319,2330,2342,2360,2465,2495,2671,2683,2710,2712,2715,2725,2726,2727,2728,2731,2733,2735,2736,2737,2777,2841,2859,2925,2926,2943,2973,2978,3323,3452,3749,3751,3757,3762,3849,3850,4035,4041,4201,4212,4240,4348,4349,4413,4421,4428,4432,4467,4469,4905,5048,5126,5188,5191,5208,5226,5245,5261,5291,5314,5378,5379,5478,5484,5487,5568,5600,5747,5754,5804,5820,5967,5987,5995,6004,6014,6015,6030,6088,6091,6483,6501,6537,6620,6673,6716,6750,6752,6778,6779,6802,6803,6840,6872,6933,6952,7012,7014,7024,7054,7083,7090,7175,7260,7339,7342,7346,7364,7370,7374,7380,7381,7411,7414,7415,7437,7447,7456,7562,7658,7672,7681,7689,7711,7719,7778,7784,7794,7802,7879,7886,7944,7963,7964,8003,8019,8190,8203,8215,8223,8306,8317,8336,8349,8350,8359,8375,8393,8474,8479,8481,8530,8658,8676,8775,8785,8789,8887,9006,9054,9088,9144,9180,9239,9364,9366,9374,9383,9389,9414,9420,9432,9439,9442,9478,9507,9571,9613,9632,9634,9637,9696,9738,9769,9786,9796,9800,9801,9817,9820,9845,9847,9867,9878,9887,10017,10038,10089,10105,10123,10126,10669,10698,10872,10884,10896,10903,11087,11199,11293,11302,11450,11568,11671,11674,11915,11922,12218,12296,12501,12518,12741,12748,12819,12867,12877,12886,12894,12948,12950,12959,12962,13020,13028,13167,13180,13263,13272,13278,13305,13330,13360,13411,13425,13448,13451,13461,13507,13541,13612,13661,13696,13697,13706,13749,13784,13798,13802,13803,13826,13840,13868,13890,13896,13919,14161,14172,14520,14529,14584,14585,14622,14691,14717,14728,14763,14875,14882,14884,15052,15118,15120,15156,15186,15204,15222,15284,15298,15351,15355,15366,15404,15574,15580,15627,15633,15732,15734,15740,15760,16365,16631,17046,17277,17543,17626,17646,17714,17759,17915,17945,17951,18039,18090,18120,18160,18179,18181,18189,18381,18466,18469,18470,18471,18473,18484,18492,18495,18496,18505,18524,18540,18605,18606,18638,18647,18664,18665,18669,18676,18683,18689,18696,18721,18735,18766,18772,18773,18776,18821,18836,18838,18846,18861,18877,18941,18972,19034,19080,19097,19149,19183,19223,19239,19260,19267,19268,19282,19362,19400,19415,19450,19530,19543,19546,19657,19712,19751,19765,19800,19907,19935,19945,19951,19990,19992,20007,20021,20022,20165,20241,20365,20399,20531,20533,20551,20565,20597,20662,20725,20735,20738,20739,20761,20776,20829,20830,20886,20923,20941,20946,20963,20964,20966,20971,21031,21048,21063,21073,21085,21112,21178,21185,21225,21346,21348,21427,21469,21481,21604,21607,21744,21745,22053,22105,22108,22117,22248,22298,22472,22491,22499,22514,22517,22585,22586,22607,22627,22633,22634,22680,22698,22718,22743,22757,22787,22818,22839,22845,22847,22870,22873,22878,22917,22958,22974,22976,23012,23019,23047,23048,23051,23092,23105]]],["+",[109,100,[[0,9,9,0,9,[[1,1,1,0,1],[12,1,1,1,2],[23,1,1,2,3],[27,1,1,3,4],[29,1,1,4,5],[30,1,1,5,6],[31,1,1,6,7],[32,1,1,7,8],[47,1,1,8,9]]],[1,16,16,9,25,[[51,1,1,9,10],[53,1,1,10,11],[58,1,1,11,12],[63,1,1,12,13],[75,1,1,13,14],[77,1,1,14,15],[89,10,10,15,25]]],[2,5,4,25,29,[[97,3,2,25,27],[98,1,1,27,28],[109,1,1,28,29]]],[3,4,4,29,33,[[120,1,1,29,30],[122,1,1,30,31],[127,1,1,31,32],[140,1,1,32,33]]],[4,5,4,33,37,[[162,1,1,33,34],[163,1,1,34,35],[164,1,1,35,36],[169,2,1,36,37]]],[5,3,2,37,39,[[192,1,1,37,38],[196,2,1,38,39]]],[6,5,5,39,44,[[211,1,1,39,40],[214,1,1,40,41],[217,1,1,41,42],[228,2,2,42,44]]],[8,7,7,44,51,[[241,1,1,44,45],[243,1,1,45,46],[246,1,1,46,47],[254,1,1,47,48],[256,1,1,48,49],[260,1,1,49,50],[266,1,1,50,51]]],[9,4,3,51,54,[[280,2,2,51,53],[284,2,1,53,54]]],[10,3,3,54,57,[[302,1,1,54,55],[304,1,1,55,56],[312,1,1,56,57]]],[11,7,6,57,63,[[316,1,1,57,58],[321,1,1,58,59],[322,1,1,59,60],[329,1,1,60,61],[333,3,2,61,63]]],[12,1,1,63,64,[[347,1,1,63,64]]],[13,4,3,64,67,[[372,1,1,64,65],[378,1,1,65,66],[399,2,1,66,67]]],[14,1,1,67,68,[[410,1,1,67,68]]],[16,2,2,68,70,[[428,1,1,68,69],[433,1,1,69,70]]],[17,4,4,70,74,[[436,1,1,70,71],[437,1,1,71,72],[459,1,1,72,73],[472,1,1,73,74]]],[18,2,2,74,76,[[556,1,1,74,75],[586,1,1,75,76]]],[22,4,4,76,80,[[719,1,1,76,77],[722,1,1,77,78],[740,1,1,78,79],[741,1,1,79,80]]],[23,8,7,80,87,[[754,1,1,80,81],[763,1,1,81,82],[783,1,1,82,83],[784,1,1,83,84],[786,3,2,84,86],[795,1,1,86,87]]],[25,4,3,87,90,[[805,1,1,87,88],[816,1,1,88,89],[845,2,1,89,90]]],[32,1,1,90,91,[[896,1,1,90,91]]],[35,1,1,91,92,[[907,1,1,91,92]]],[36,5,4,92,96,[[909,2,2,92,94],[910,3,2,94,96]]],[37,3,3,96,99,[[922,3,3,96,99]]],[38,1,1,99,100,[[925,1,1,99,100]]]],[38,334,600,791,871,894,940,962,1471,1557,1616,1763,1910,2270,2305,2712,2715,2725,2726,2727,2728,2731,2733,2735,2737,2925,2926,2973,3323,3751,3850,4035,4469,5191,5226,5245,5379,5967,6088,6537,6620,6716,7014,7024,7342,7370,7456,7711,7784,7886,8019,8359,8375,8481,9180,9239,9507,9634,9786,9800,10017,10123,10126,10669,11293,11450,11915,12218,12748,12819,12877,12894,13451,13784,15186,15760,18473,18540,18861,18877,19223,19415,19935,19945,19990,19992,20241,20533,20761,21604,22627,22818,22845,22847,22870,22873,23047,23048,23051,23092]]],["Appoint",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20964]]],["Lay",[2,2,[[11,1,1,0,1,[[322,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]]],[9801,13896]]],["Put",[4,4,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,1,1,1,2,[[81,1,1,1,2]]],[13,1,1,2,3,[[384,1,1,2,3]]],[23,1,1,3,4,[[782,1,1,3,4]]]],[593,2465,11568,19907]]],["Set",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[8,1,1,1,2,[[244,1,1,1,2]]],[10,1,1,2,3,[[310,1,1,2,3]]],[21,1,1,3,4,[[678,1,1,3,4]]]],[5804,7414,9420,17646]]],["appoint",[10,9,[[1,1,1,0,1,[[70,1,1,0,1]]],[3,1,1,1,2,[[120,1,1,1,2]]],[8,2,2,2,4,[[243,2,2,2,4]]],[9,1,1,4,5,[[273,1,1,4,5]]],[22,1,1,5,6,[[739,1,1,5,6]]],[25,3,2,6,8,[[822,3,2,6,8]]],[27,1,1,8,9,[[862,1,1,8,9]]]],[2090,3762,7380,7381,8190,18846,20963,20966,22105]]],["appointed",[7,7,[[1,1,1,0,1,[[58,1,1,0,1]]],[11,3,3,1,4,[[322,1,1,1,2],[323,1,1,2,3],[330,1,1,3,4]]],[13,1,1,4,5,[[389,1,1,4,5]]],[18,1,1,5,6,[[555,1,1,5,6]]],[23,1,1,6,7,[[777,1,1,6,7]]]],[1747,9817,9847,10038,11674,15118,19800]]],["bring",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5478]]],["brought",[4,4,[[1,2,2,0,2,[[57,1,1,0,1],[64,1,1,1,2]]],[18,1,1,2,3,[[566,1,1,2,3]]],[22,1,1,3,4,[[701,1,1,3,4]]]],[1722,1946,15366,18090]]],["called",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6750]]],["cast",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18189]]],["change",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13272]]],["charged",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12948]]],["commit",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12959]]],["consider",[2,2,[[6,1,1,0,1,[[229,1,1,0,1]]],[22,1,1,1,2,[[719,1,1,1,2]]]],[7054,18471]]],["convey",[1,1,[[10,1,1,0,1,[[295,1,1,0,1]]]],[8887]]],["determined",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8349]]],["disposed",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13696]]],["done",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1779]]],["down",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13263]]],["gave",[4,3,[[15,1,1,0,1,[[420,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]],[26,2,1,2,3,[[850,2,1,2,3]]]],[12501,16631,21744]]],["gavest",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12518]]],["get",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22839]]],["give",[5,5,[[3,1,1,0,1,[[122,1,1,0,1]]],[4,1,1,1,2,[[174,1,1,1,2]]],[5,1,1,2,3,[[193,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[22,1,1,4,5,[[720,1,1,4,5]]]],[3849,5484,5995,7260,18492]]],["given",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5487]]],["had",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12296]]],["holdeth",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14882]]],["impute",[1,1,[[8,1,1,0,1,[[257,1,1,0,1]]]],[7802]]],["laid",[30,30,[[0,3,3,0,3,[[8,1,1,0,1],[21,2,2,1,3]]],[1,2,2,3,5,[[51,1,1,3,4],[68,1,1,4,5]]],[3,1,1,5,6,[[132,1,1,5,6]]],[5,1,1,6,7,[[196,1,1,6,7]]],[6,2,2,7,9,[[219,2,2,7,9]]],[8,3,3,9,12,[[250,1,1,9,10],[254,1,1,10,11],[260,1,1,11,12]]],[9,1,1,12,13,[[279,1,1,12,13]]],[10,1,1,13,14,[[308,1,1,13,14]]],[11,2,2,14,16,[[323,1,1,14,15],[332,1,1,15,16]]],[13,1,1,16,17,[[389,1,1,16,17]]],[16,1,1,17,18,[[435,1,1,17,18]]],[17,2,2,18,20,[[464,1,1,18,19],[473,1,1,19,20]]],[22,3,3,20,23,[[720,1,1,20,21],[729,1,1,21,22],[735,1,1,22,23]]],[25,2,2,23,25,[[812,1,1,23,24],[840,1,1,24,25]]],[28,1,1,25,26,[[876,1,1,25,26]]],[30,1,1,26,27,[[888,1,1,26,27]]],[32,1,1,27,28,[[897,1,1,27,28]]],[36,1,1,28,29,[[910,1,1,28,29]]],[37,1,1,29,30,[[917,1,1,29,30]]]],[228,553,556,1557,2033,4212,6091,6778,6802,7562,7719,7879,8336,9374,9845,10105,11671,12867,13541,13798,18505,18696,18776,20662,21469,22298,22517,22634,22870,22976]]],["laidst",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14884]]],["lay",[20,19,[[1,2,2,0,2,[[54,1,1,0,1],[71,1,1,1,2]]],[2,1,1,2,3,[[91,1,1,2,3]]],[5,1,1,3,4,[[194,1,1,3,4]]],[6,1,1,4,5,[[228,1,1,4,5]]],[8,1,1,5,6,[[246,1,1,5,6]]],[10,1,1,6,7,[[308,1,1,6,7]]],[11,1,1,7,8,[[316,1,1,7,8]]],[17,3,3,8,11,[[456,1,1,8,9],[469,1,1,9,10],[475,1,1,10,11]]],[22,3,3,11,14,[[691,1,1,11,12],[706,1,1,12,13],[725,1,1,13,14]]],[25,2,2,14,16,[[827,1,1,14,15],[836,1,1,15,16]]],[32,2,2,16,18,[[893,1,1,16,17],[899,1,1,17,18]]],[38,2,1,18,19,[[926,2,1,18,19]]]],[1640,2138,2777,6004,7012,7447,9364,9632,13360,13706,13868,17915,18181,18606,21112,21348,22586,22680,23105]]],["layeth",[4,4,[[17,1,1,0,1,[[459,1,1,0,1]]],[22,1,1,1,2,[[735,1,1,1,2]]],[23,2,2,2,4,[[753,1,1,2,3],[756,1,1,3,4]]]],[13448,18766,19183,19260]]],["made",[47,46,[[0,4,4,0,4,[[26,1,1,0,1],[44,2,2,1,3],[46,1,1,3,4]]],[1,3,3,4,7,[[51,1,1,4,5],[53,1,1,5,6],[64,1,1,6,7]]],[4,1,1,7,8,[[162,1,1,7,8]]],[5,1,1,8,9,[[194,1,1,8,9]]],[6,2,2,9,11,[[218,1,1,9,10],[221,1,1,10,11]]],[8,2,2,11,13,[[253,1,1,11,12],[265,1,1,12,13]]],[9,3,3,13,16,[[281,1,1,13,14],[283,1,1,14,15],[289,1,1,15,16]]],[10,2,2,16,18,[[300,1,1,16,17],[310,1,1,17,18]]],[11,2,2,18,20,[[322,1,1,18,19],[325,1,1,19,20]]],[12,1,1,20,21,[[363,1,1,20,21]]],[17,4,4,21,25,[[436,1,1,21,22],[466,1,1,22,23],[473,1,1,23,24],[474,1,1,24,25]]],[18,5,5,25,30,[[495,1,1,25,26],[523,1,1,26,27],[529,1,1,27,28],[568,1,1,28,29],[582,1,1,29,30]]],[21,2,2,30,32,[[671,1,1,30,31],[676,1,1,31,32]]],[22,6,5,32,37,[[692,1,1,32,33],[703,1,1,33,34],[706,1,1,34,35],[727,2,1,35,36],[729,1,1,36,37]]],[23,2,2,37,39,[[746,1,1,37,38],[756,1,1,38,39]]],[24,2,2,39,41,[[799,2,2,39,41]]],[25,2,2,41,43,[[820,1,1,41,42],[821,1,1,42,43]]],[37,3,3,43,46,[[917,1,1,43,44],[919,1,1,44,45],[920,1,1,45,46]]]],[764,1366,1367,1446,1568,1612,1945,5208,6030,6752,6840,7689,8003,8393,8474,8658,9088,9442,9820,9878,11087,12886,13612,13802,13840,14161,14622,14717,15404,15627,17543,17626,17945,18120,18179,18638,18683,18972,19260,20365,20399,20886,20923,22974,23012,23019]]],["make",[53,51,[[0,5,5,0,5,[[20,2,2,0,2],[45,1,1,2,3],[46,1,1,3,4],[47,1,1,4,5]]],[4,2,2,5,7,[[153,1,1,5,6],[166,1,1,6,7]]],[8,3,3,7,10,[[243,1,1,7,8],[257,1,1,8,9],[263,1,1,9,10]]],[9,1,1,10,11,[[273,1,1,10,11]]],[10,2,2,11,13,[[309,1,1,11,12],[310,1,1,12,13]]],[12,1,1,13,14,[[354,1,1,13,14]]],[17,2,2,14,16,[[453,1,1,14,15],[459,1,1,15,16]]],[18,3,3,16,19,[[516,1,1,16,17],[543,1,1,17,18],[566,1,1,18,19]]],[19,1,1,19,20,[[657,1,1,19,20]]],[22,16,15,20,35,[[681,1,1,20,21],[692,1,1,21,22],[719,3,2,22,24],[720,2,2,24,26],[721,1,1,26,27],[727,1,1,27,28],[728,2,2,28,30],[729,1,1,30,31],[731,1,1,31,32],[732,1,1,32,33],[738,2,2,33,35]]],[23,7,7,35,42,[[748,1,1,35,36],[750,1,1,36,37],[762,1,1,37,38],[769,2,2,38,40],[773,1,1,40,41],[775,1,1,41,42]]],[25,1,1,42,43,[[815,1,1,42,43]]],[27,2,2,43,45,[[863,2,2,43,45]]],[29,1,1,45,46,[[886,1,1,45,46]]],[32,3,2,46,48,[[893,1,1,46,47],[896,2,1,47,48]]],[33,1,1,48,49,[[900,1,1,48,49]]],[34,1,1,49,50,[[905,1,1,49,50]]],[36,1,1,50,51,[[910,1,1,50,51]]]],[526,531,1389,1426,1471,4905,5291,7374,7794,7944,8203,9389,9442,10884,13278,13461,14520,14875,15355,17277,17714,17951,18466,18469,18495,18496,18524,18647,18664,18665,18676,18721,18735,18836,18838,19034,19097,19400,19543,19546,19657,19712,20739,22108,22117,22491,22585,22633,22698,22787,22878]]],["makest",[3,3,[[18,3,3,0,3,[[521,2,2,0,2],[557,1,1,2,3]]]],[14584,14585,15204]]],["maketh",[8,8,[[1,1,1,0,1,[[53,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[18,4,4,2,6,[[517,1,1,2,3],[581,1,1,3,4],[584,1,1,4,5],[624,1,1,5,6]]],[22,1,1,6,7,[[705,1,1,6,7]]],[23,1,1,7,8,[[761,1,1,7,8]]]],[1612,13919,14529,15574,15740,16365,18160,19362]]],["on",[4,4,[[0,2,2,0,2,[[42,2,2,0,2]]],[3,1,1,2,3,[[132,1,1,2,3]]],[25,1,1,3,4,[[825,1,1,3,4]]]],[1321,1322,4240,21073]]],["ordain",[1,1,[[12,1,1,0,1,[[354,1,1,0,1]]]],[10872]]],["ordained",[2,2,[[18,1,1,0,1,[[558,1,1,0,1]]],[34,1,1,1,2,[[903,1,1,1,2]]]],[15222,22743]]],["ordereth",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14691]]],["place",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2020]]],["placed",[2,2,[[17,1,1,0,1,[[455,1,1,0,1]]],[23,1,1,1,2,[[749,1,1,1,2]]]],[13330,19080]]],["preserve",[1,1,[[0,1,1,0,1,[[44,1,1,0,1]]]],[1365]]],["purposed",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21745]]],["put",[105,101,[[0,14,14,0,14,[[23,1,1,0,1],[27,2,2,1,3],[29,1,1,3,4],[30,1,1,4,5],[31,1,1,5,6],[36,1,1,6,7],[39,1,1,7,8],[40,1,1,8,9],[42,1,1,9,10],[43,2,2,10,12],[46,1,1,12,13],[47,1,1,13,14]]],[1,15,15,14,29,[[52,1,1,14,15],[53,1,1,15,16],[57,1,1,16,17],[64,1,1,17,18],[66,1,1,18,19],[73,1,1,19,20],[77,2,2,20,22],[78,2,2,22,24],[82,1,1,24,25],[88,2,2,25,27],[89,2,2,27,29]]],[2,4,4,29,33,[[94,1,1,29,30],[95,1,1,30,31],[97,1,1,31,32],[99,1,1,32,33]]],[3,8,8,33,41,[[120,2,2,33,35],[127,1,1,35,36],[132,1,1,36,37],[137,1,1,37,38],[139,3,3,38,41]]],[4,7,7,41,48,[[159,1,1,41,42],[162,1,1,42,43],[164,1,1,43,44],[178,1,1,44,45],[183,2,2,45,47],[185,1,1,47,48]]],[5,2,2,48,50,[[193,1,1,48,49],[210,1,1,49,50]]],[6,6,5,50,55,[[216,2,1,50,51],[219,1,1,51,52],[222,1,1,52,53],[225,1,1,53,54],[226,1,1,54,55]]],[7,1,1,55,56,[[234,1,1,55,56]]],[8,7,7,56,63,[[241,2,2,56,58],[252,2,2,58,60],[254,1,1,60,61],[256,1,1,61,62],[263,1,1,62,63]]],[9,4,3,63,66,[[274,3,2,63,65],[278,1,1,65,66]]],[10,10,9,66,75,[[299,1,1,66,67],[301,1,1,67,68],[308,4,3,68,71],[310,3,3,71,74],[311,1,1,74,75]]],[11,5,5,75,80,[[314,1,1,75,76],[316,1,1,76,77],[321,1,1,77,78],[325,1,1,78,79],[331,1,1,79,80]]],[12,2,2,80,82,[[355,2,2,80,82]]],[13,3,3,82,85,[[367,1,1,82,83],[372,1,1,83,84],[399,1,1,84,85]]],[17,3,3,85,88,[[448,1,1,85,86],[458,1,1,86,87],[476,1,1,87,88]]],[18,1,1,88,89,[[533,1,1,88,89]]],[19,1,1,89,90,[[650,1,1,89,90]]],[22,6,5,90,95,[[683,2,1,90,91],[715,1,1,91,92],[729,2,2,92,94],[737,1,1,94,95]]],[23,3,3,95,98,[[757,2,2,95,97],[784,1,1,97,98]]],[25,2,2,98,100,[[817,1,1,98,99],[831,1,1,99,100]]],[32,1,1,100,101,[[894,1,1,100,101]]]],[638,784,791,872,907,944,1117,1187,1237,1312,1325,1326,1449,1469,1601,1622,1733,1946,1995,2183,2319,2330,2342,2360,2495,2671,2683,2710,2736,2841,2859,2943,2978,3749,3757,4041,4201,4349,4421,4428,4432,5126,5188,5261,5568,5747,5754,5820,5987,6483,6673,6803,6872,6933,6952,7175,7339,7346,7658,7672,7719,7778,7963,8215,8223,8317,9054,9144,9364,9366,9383,9414,9432,9439,9478,9571,9637,9769,9887,10089,10896,10903,11199,11302,11922,13167,13425,13890,14763,17046,17759,18381,18689,18696,18821,19267,19268,19951,20776,21225,22607]]],["puttest",[2,2,[[3,1,1,0,1,[[140,1,1,0,1]]],[17,1,1,1,2,[[448,1,1,1,2]]]],[4467,13180]]],["putteth",[5,5,[[3,1,1,0,1,[[138,1,1,0,1]]],[4,1,1,1,2,[[179,1,1,1,2]]],[17,1,1,2,3,[[468,1,1,2,3]]],[25,2,2,3,5,[[815,2,2,3,5]]]],[4413,5600,13661,20735,20738]]],["putting",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[527]]],["regarding",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12950]]],["rehearse",[1,1,[[1,1,1,0,1,[[66,1,1,0,1]]]],[1997]]],["set",[97,95,[[0,7,7,0,7,[[3,1,1,0,1],[5,1,1,1,2],[23,1,1,2,3],[27,1,1,3,4],[29,1,1,4,5],[30,1,1,5,6],[43,1,1,6,7]]],[1,3,3,7,10,[[50,1,1,7,8],[54,1,1,8,9],[70,1,1,9,10]]],[2,1,1,10,11,[[113,1,1,10,11]]],[3,1,1,11,12,[[137,1,1,11,12]]],[4,4,4,12,16,[[156,1,1,12,13],[166,1,1,13,14],[169,2,2,14,16]]],[5,3,3,16,19,[[194,2,2,16,18],[210,1,1,18,19]]],[6,3,3,19,22,[[219,1,1,19,20],[230,2,2,20,22]]],[8,7,6,22,28,[[242,1,1,22,23],[244,3,2,23,25],[245,1,1,25,26],[253,1,1,26,27],[263,1,1,27,28]]],[9,3,3,28,31,[[278,1,1,28,29],[284,1,1,29,30],[289,1,1,30,31]]],[10,4,4,31,35,[[292,2,2,31,33],[298,1,1,33,34],[310,1,1,34,35]]],[11,4,4,35,39,[[316,1,1,35,36],[318,1,1,36,37],[322,1,1,37,38],[324,1,1,38,39]]],[12,1,1,39,40,[[348,1,1,39,40]]],[16,1,1,40,41,[[427,1,1,40,41]]],[17,5,5,41,46,[[442,1,1,41,42],[454,1,1,42,43],[469,1,1,43,44],[473,2,2,44,46]]],[18,7,7,46,53,[[496,1,1,46,47],[531,1,1,47,48],[555,1,1,48,49],[562,1,1,49,50],[563,1,1,50,51],[566,1,1,51,52],[581,1,1,52,53]]],[22,5,5,53,58,[[719,1,1,53,54],[720,1,1,54,55],[728,1,1,55,56],[735,1,1,56,57],[744,1,1,57,58]]],[23,9,9,58,67,[[751,1,1,58,59],[765,1,1,59,60],[768,1,1,60,61],[776,2,2,61,63],[787,1,1,63,64],[788,2,2,64,66],[793,1,1,66,67]]],[25,19,19,67,86,[[805,1,1,67,68],[806,1,1,68,69],[807,1,1,69,70],[808,1,1,70,71],[814,1,1,71,72],[818,2,2,72,74],[821,1,1,74,75],[822,1,1,75,76],[824,2,2,76,78],[825,1,1,78,79],[826,1,1,79,80],[829,1,1,80,81],[830,1,1,81,82],[836,1,1,82,83],[839,1,1,83,84],[841,1,1,84,85],[845,1,1,85,86]]],[26,1,1,86,87,[[860,1,1,86,87]]],[27,1,1,87,88,[[872,1,1,87,88]]],[29,2,2,88,90,[[885,1,1,88,89],[887,1,1,89,90]]],[30,1,1,90,91,[[888,1,1,90,91]]],[33,1,1,91,92,[[902,1,1,91,92]]],[34,1,1,92,93,[[904,1,1,92,93]]],[37,3,2,93,95,[[913,2,1,93,94],[916,1,1,94,95]]]],[94,153,624,795,866,910,1345,1543,1646,2078,3452,4348,5048,5314,5378,5379,6014,6015,6501,6779,7083,7090,7364,7411,7415,7437,7681,7964,8306,8479,8676,8785,8789,9006,9420,9613,9696,9796,9867,10698,12741,13028,13305,13697,13803,13826,14172,14728,15120,15284,15298,15351,15580,18470,18484,18669,18772,18941,19149,19450,19530,19751,19765,20007,20021,20022,20165,20531,20551,20565,20597,20725,20829,20830,20941,20946,21031,21048,21063,21085,21178,21185,21346,21427,21481,21607,22053,22248,22472,22499,22514,22718,22757,22917,22958]]],["settest",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13020]]],["setteth",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13507]]],["shed",[1,1,[[10,1,1,0,1,[[292,1,1,0,1]]]],[8775]]],["shew",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18605]]],["shewed",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15633]]],["stedfastly",[1,1,[[11,1,1,0,1,[[320,1,1,0,1]]]],[9738]]],["take",[2,2,[[9,2,2,0,2,[[279,1,1,0,1],[285,1,1,1,2]]]],[8350,8530]]],["turn",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19282]]],["turned",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18039]]],["turneth",[2,2,[[18,2,2,0,2,[[584,2,2,0,2]]]],[15732,15734]]],["up",[6,6,[[17,3,3,0,3,[[440,1,1,0,1],[457,1,1,1,2],[471,1,1,2,3]]],[18,1,1,3,4,[[551,1,1,3,4]]],[22,1,1,4,5,[[735,1,1,4,5]]],[23,1,1,5,6,[[755,1,1,5,6]]]],[12962,13411,13749,15052,18773,19239]]],["will",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20971]]],["wrought",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15156]]]]},{"k":"H7761","v":[["*",[26,25,[[14,16,15,0,15,[[406,3,2,0,2],[407,6,6,2,8],[408,5,5,8,13],[409,2,2,13,15]]],[26,10,10,15,25,[[851,1,1,15,16],[852,3,3,16,19],[853,1,1,19,20],[854,1,1,20,21],[855,4,4,21,25]]]],[12129,12131,12137,12142,12143,12147,12148,12151,12152,12154,12159,12162,12163,12186,12194,21763,21817,21819,21836,21843,21886,21918,21919,21922,21931]]],["+",[9,9,[[14,3,3,0,3,[[406,1,1,0,1],[407,2,2,1,3]]],[26,6,6,3,9,[[852,2,2,3,5],[853,1,1,5,6],[854,1,1,6,7],[855,2,2,7,9]]]],[12129,12137,12143,21819,21836,21843,21886,21918,21931]]],["Give",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12131]]],["given",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12131]]],["laid",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[855,1,1,1,2]]]],[12142,21922]]],["made",[9,9,[[14,7,7,0,7,[[407,3,3,0,3],[408,4,4,3,7]]],[26,2,2,7,9,[[851,1,1,7,8],[852,1,1,8,9]]]],[12147,12148,12151,12152,12154,12162,12163,21763,21817]]],["make",[3,3,[[14,3,3,0,3,[[408,1,1,0,1],[409,2,2,1,3]]]],[12159,12186,12194]]],["set",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21919]]]]},{"k":"H7762","v":[["garlick",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4029]]]]},{"k":"H7763","v":[["Shomer",[2,2,[[11,1,1,0,1,[[324,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]]],[9871,10567]]]]},{"k":"H7764","v":[["Shuni",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1402,4504]]]]},{"k":"H7765","v":[["Shunites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4504]]]]},{"k":"H7766","v":[["Shunem",[3,3,[[5,1,1,0,1,[[205,1,1,0,1]]],[8,1,1,1,2,[[263,1,1,1,2]]],[11,1,1,2,3,[[316,1,1,2,3]]]],[6339,7946,9611]]]]},{"k":"H7767","v":[["Shunammite",[8,8,[[10,5,5,0,5,[[291,2,2,0,2],[292,3,3,2,5]]],[11,3,3,5,8,[[316,3,3,5,8]]]],[8720,8732,8787,8791,8792,9615,9628,9639]]]]},{"k":"H7768","v":[["*",[21,21,[[17,8,8,0,8,[[454,1,1,0,1],[459,1,1,1,2],[464,1,1,2,3],[465,2,2,3,5],[470,1,1,5,6],[471,1,1,6,7],[473,1,1,7,8]]],[18,9,9,8,17,[[495,2,2,8,10],[499,1,1,10,11],[505,1,1,11,12],[507,1,1,12,13],[508,1,1,13,14],[549,1,1,14,15],[565,1,1,15,16],[596,1,1,16,17]]],[22,1,1,17,18,[[736,1,1,17,18]]],[24,1,1,18,19,[[799,1,1,18,19]]],[31,1,1,19,20,[[890,1,1,19,20]]],[34,1,1,20,21,[[903,1,1,20,21]]]],[13304,13448,13544,13577,13585,13729,13749,13834,14124,14159,14228,14301,14321,14353,15012,15321,16045,18795,20362,22550,22733]]],["aloud",[1,1,[[17,1,1,0,1,[[454,1,1,0,1]]]],[13304]]],["cried",[10,10,[[17,2,2,0,2,[[464,1,1,0,1],[465,1,1,1,2]]],[18,7,7,2,9,[[495,2,2,2,4],[499,1,1,4,5],[507,1,1,5,6],[508,1,1,6,7],[565,1,1,7,8],[596,1,1,8,9]]],[31,1,1,9,10,[[890,1,1,9,10]]]],[13544,13585,14124,14159,14228,14321,14353,15321,16045,22550]]],["crieth",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15012]]],["cry",[6,6,[[17,3,3,0,3,[[465,1,1,0,1],[471,1,1,1,2],[473,1,1,2,3]]],[18,1,1,3,4,[[505,1,1,3,4]]],[22,1,1,4,5,[[736,1,1,4,5]]],[34,1,1,5,6,[[903,1,1,5,6]]]],[13577,13749,13834,14301,18795,22733]]],["out",[2,2,[[17,2,2,0,2,[[459,1,1,0,1],[470,1,1,1,2]]]],[13448,13729]]],["shout",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20362]]]]},{"k":"H7769","v":[["*",[2,2,[[17,2,2,0,2,[[465,1,1,0,1],[471,1,1,1,2]]]],[13581,13755]]],["cry",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13581]]],["riches",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13755]]]]},{"k":"H7770","v":[["*",[3,3,[[0,2,2,0,2,[[37,2,2,0,2]]],[12,1,1,2,3,[[339,1,1,2,3]]]],[1121,1131,10309]]],["Shua",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10309]]],["Shuah",[2,2,[[0,2,2,0,2,[[37,2,2,0,2]]]],[1121,1131]]]]},{"k":"H7771","v":[["*",[3,3,[[17,1,1,0,1,[[469,1,1,0,1]]],[22,2,2,1,3,[[700,1,1,1,2],[710,1,1,2,3]]]],[13702,18057,18264]]],["bountiful",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18264]]],["crying",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18057]]],["rich",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13702]]]]},{"k":"H7772","v":[["Shoa",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21030]]]]},{"k":"H7773","v":[["cry",[1,1,[[18,1,1,0,1,[[482,1,1,0,1]]]],[13975]]]]},{"k":"H7774","v":[["Shua",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10567]]]]},{"k":"H7775","v":[["cry",[11,11,[[1,1,1,0,1,[[51,1,1,0,1]]],[8,1,1,1,2,[[240,1,1,1,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[18,6,6,3,9,[[495,1,1,3,4],[511,1,1,4,5],[516,1,1,5,6],[517,1,1,6,7],[579,1,1,7,8],[622,1,1,8,9]]],[23,1,1,9,10,[[752,1,1,9,10]]],[24,1,1,10,11,[[799,1,1,10,11]]]],[1577,7331,8609,14124,14403,14524,14526,15522,16339,19172,20410]]]]},{"k":"H7776","v":[["*",[7,6,[[6,1,1,0,1,[[225,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]],[18,1,1,2,3,[[540,1,1,2,3]]],[21,2,1,3,4,[[672,2,1,3,4]]],[24,1,1,4,5,[[801,1,1,4,5]]],[25,1,1,5,6,[[814,1,1,5,6]]]],[6933,12362,14849,17569,20460,20712]]],["fox",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12362]]],["foxes",[6,5,[[6,1,1,0,1,[[225,1,1,0,1]]],[18,1,1,1,2,[[540,1,1,1,2]]],[21,2,1,2,3,[[672,2,1,2,3]]],[24,1,1,3,4,[[801,1,1,3,4]]],[25,1,1,4,5,[[814,1,1,4,5]]]],[6933,14849,17569,20460,20712]]]]},{"k":"H7777","v":[["Shual",[2,2,[[8,1,1,0,1,[[248,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]]],[7502,10571]]]]},{"k":"H7778","v":[["*",[37,37,[[9,1,1,0,1,[[284,1,1,0,1]]],[11,2,2,1,3,[[319,2,2,1,3]]],[12,14,14,3,17,[[346,6,6,3,9],[352,3,3,9,12],[353,1,1,12,13],[360,1,1,13,14],[363,3,3,14,17]]],[13,6,6,17,23,[[374,1,1,17,18],[389,2,2,18,20],[397,1,1,20,21],[400,1,1,21,22],[401,1,1,22,23]]],[14,4,4,23,27,[[404,2,2,23,25],[409,1,1,25,26],[412,1,1,26,27]]],[15,10,10,27,37,[[419,3,3,27,30],[422,2,2,30,32],[423,1,1,32,33],[424,3,3,33,36],[425,1,1,36,37]]]],[8504,9717,9718,10632,10633,10636,10637,10639,10641,10809,10814,10815,10858,10988,11078,11089,11096,11360,11660,11675,11868,11946,11981,12069,12097,12180,12276,12421,12465,12493,12577,12588,12607,12649,12669,12671,12676]]],["doorkeepers",[2,2,[[12,2,2,0,2,[[352,2,2,0,2]]]],[10814,10815]]],["porter",[4,4,[[9,1,1,0,1,[[284,1,1,0,1]]],[11,1,1,1,2,[[319,1,1,1,2]]],[12,1,1,2,3,[[346,1,1,2,3]]],[13,1,1,3,4,[[397,1,1,3,4]]]],[8504,9717,10636,11868]]],["porters",[31,31,[[11,1,1,0,1,[[319,1,1,0,1]]],[12,11,11,1,12,[[346,5,5,1,6],[352,1,1,6,7],[353,1,1,7,8],[360,1,1,8,9],[363,3,3,9,12]]],[13,5,5,12,17,[[374,1,1,12,13],[389,2,2,13,15],[400,1,1,15,16],[401,1,1,16,17]]],[14,4,4,17,21,[[404,2,2,17,19],[409,1,1,19,20],[412,1,1,20,21]]],[15,10,10,21,31,[[419,3,3,21,24],[422,2,2,24,26],[423,1,1,26,27],[424,3,3,27,30],[425,1,1,30,31]]]],[9718,10632,10633,10637,10639,10641,10809,10858,10988,11078,11089,11096,11360,11660,11675,11946,11981,12069,12097,12180,12276,12421,12465,12493,12577,12588,12607,12649,12669,12671,12676]]]]},{"k":"H7779","v":[["*",[4,3,[[0,2,1,0,1,[[2,2,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]],[18,1,1,2,3,[[616,1,1,2,3]]]],[70,13068,16250]]],["breaketh",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13068]]],["bruise",[2,1,[[0,2,1,0,1,[[2,2,1,0,1]]]],[70]]],["cover",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16250]]]]},{"k":"H7780","v":[["Shophach",[2,2,[[12,2,2,0,2,[[356,2,2,0,2]]]],[10923,10925]]]]},{"k":"H7781","v":[["Shuphamites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4528]]]]},{"k":"H7782","v":[["*",[72,63,[[1,3,3,0,3,[[68,2,2,0,2],[69,1,1,2,3]]],[2,2,1,3,4,[[114,2,1,3,4]]],[5,14,8,4,12,[[192,14,8,4,12]]],[6,10,8,12,20,[[213,1,1,12,13],[216,1,1,13,14],[217,8,6,14,20]]],[8,1,1,20,21,[[248,1,1,20,21]]],[9,6,6,21,27,[[268,1,1,21,22],[272,1,1,22,23],[281,1,1,23,24],[284,1,1,24,25],[286,2,2,25,27]]],[10,3,3,27,30,[[291,3,3,27,30]]],[11,1,1,30,31,[[321,1,1,30,31]]],[12,1,1,31,32,[[352,1,1,31,32]]],[13,1,1,32,33,[[381,1,1,32,33]]],[15,2,2,33,35,[[416,2,2,33,35]]],[17,2,2,35,37,[[474,2,2,35,37]]],[18,4,4,37,41,[[524,1,1,37,38],[558,1,1,38,39],[575,1,1,39,40],[627,1,1,40,41]]],[22,3,3,41,44,[[696,1,1,41,42],[705,1,1,42,43],[736,1,1,43,44]]],[23,7,7,44,51,[[748,3,3,44,47],[750,2,2,47,49],[786,1,1,49,50],[795,1,1,50,51]]],[25,4,4,51,55,[[834,4,4,51,55]]],[27,2,2,55,57,[[866,1,1,55,56],[869,1,1,56,57]]],[28,2,2,57,59,[[877,2,2,57,59]]],[29,2,2,59,61,[[880,1,1,59,60],[881,1,1,60,61]]],[35,1,1,61,62,[[906,1,1,61,62]]],[37,1,1,62,63,[[919,1,1,62,63]]]],[2042,2045,2069,3478,5953,5954,5955,5957,5958,5962,5965,5969,6595,6688,6702,6710,6712,6713,6714,6716,7488,8077,8172,8399,8494,8555,8576,8751,8756,8758,9769,10819,11504,12377,12379,13858,13859,14630,15220,15496,16397,18000,18164,18787,19032,19046,19048,19090,19106,19989,20239,21283,21284,21285,21286,22160,22195,22312,22326,22381,22401,22803,23013]]],["cornet",[3,3,[[12,1,1,0,1,[[352,1,1,0,1]]],[18,1,1,1,2,[[575,1,1,1,2]]],[27,1,1,2,3,[[866,1,1,2,3]]]],[10819,15496,22160]]],["cornets",[1,1,[[13,1,1,0,1,[[381,1,1,0,1]]]],[11504]]],["trumpet",[48,47,[[1,3,3,0,3,[[68,2,2,0,2],[69,1,1,2,3]]],[2,2,1,3,4,[[114,2,1,3,4]]],[5,2,2,4,6,[[192,2,2,4,6]]],[6,4,4,6,10,[[213,1,1,6,7],[216,1,1,7,8],[217,2,2,8,10]]],[8,1,1,10,11,[[248,1,1,10,11]]],[9,6,6,11,17,[[268,1,1,11,12],[272,1,1,12,13],[281,1,1,13,14],[284,1,1,14,15],[286,2,2,15,17]]],[10,3,3,17,20,[[291,3,3,17,20]]],[15,2,2,20,22,[[416,2,2,20,22]]],[17,1,1,22,23,[[474,1,1,22,23]]],[18,3,3,23,26,[[524,1,1,23,24],[558,1,1,24,25],[627,1,1,25,26]]],[22,3,3,26,29,[[696,1,1,26,27],[705,1,1,27,28],[736,1,1,28,29]]],[23,7,7,29,36,[[748,3,3,29,32],[750,2,2,32,34],[786,1,1,34,35],[795,1,1,35,36]]],[25,4,4,36,40,[[834,4,4,36,40]]],[27,1,1,40,41,[[869,1,1,40,41]]],[28,2,2,41,43,[[877,2,2,41,43]]],[29,2,2,43,45,[[880,1,1,43,44],[881,1,1,44,45]]],[35,1,1,45,46,[[906,1,1,45,46]]],[37,1,1,46,47,[[919,1,1,46,47]]]],[2042,2045,2069,3478,5954,5969,6595,6688,6710,6712,7488,8077,8172,8399,8494,8555,8576,8751,8756,8758,12377,12379,13858,14630,15220,16397,18000,18164,18787,19032,19046,19048,19090,19106,19989,20239,21283,21284,21285,21286,22195,22312,22326,22381,22401,22803,23013]]],["trumpets",[20,14,[[5,12,7,0,7,[[192,12,7,0,7]]],[6,6,5,7,12,[[217,6,5,7,12]]],[11,1,1,12,13,[[321,1,1,12,13]]],[17,1,1,13,14,[[474,1,1,13,14]]]],[5953,5955,5957,5958,5962,5965,5969,6702,6712,6713,6714,6716,9769,13859]]]]},{"k":"H7783","v":[["*",[3,3,[[18,1,1,0,1,[[542,1,1,0,1]]],[28,2,2,1,3,[[877,1,1,1,2],[878,1,1,2,3]]]],[14869,22335,22356]]],["overflow",[2,2,[[28,2,2,0,2,[[877,1,1,0,1],[878,1,1,1,2]]]],[22335,22356]]],["waterest",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14869]]]]},{"k":"H7784","v":[["*",[4,4,[[19,1,1,0,1,[[634,1,1,0,1]]],[20,2,2,1,3,[[670,2,2,1,3]]],[21,1,1,3,4,[[673,1,1,3,4]]]],[16583,17527,17528,17573]]],["street",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16583]]],["streets",[3,3,[[20,2,2,0,2,[[670,2,2,0,2]]],[21,1,1,2,3,[[673,1,1,2,3]]]],[17527,17528,17573]]]]},{"k":"H7785","v":[["*",[19,19,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,8,8,2,10,[[96,3,3,2,5],[97,2,2,5,7],[98,1,1,7,8],[99,2,2,8,10]]],[3,2,2,10,12,[[122,1,1,10,11],[134,1,1,11,12]]],[4,1,1,12,13,[[180,1,1,12,13]]],[6,1,1,13,14,[[225,1,1,13,14]]],[8,1,1,14,15,[[244,1,1,14,15]]],[18,1,1,15,16,[[624,1,1,15,16]]],[19,1,1,16,17,[[653,1,1,16,17]]],[21,1,1,17,18,[[675,1,1,17,18]]],[22,1,1,18,19,[[725,1,1,18,19]]]],[2358,2363,2911,2912,2913,2942,2943,2974,2991,2992,3843,4275,5646,6937,7415,16361,17148,17613,18601]]],["hip",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6937]]],["legs",[4,4,[[4,1,1,0,1,[[180,1,1,0,1]]],[18,1,1,1,2,[[624,1,1,1,2]]],[19,1,1,2,3,[[653,1,1,2,3]]],[21,1,1,3,4,[[675,1,1,3,4]]]],[5646,16361,17148,17613]]],["shoulder",[13,13,[[1,2,2,0,2,[[78,2,2,0,2]]],[2,8,8,2,10,[[96,3,3,2,5],[97,2,2,5,7],[98,1,1,7,8],[99,2,2,8,10]]],[3,2,2,10,12,[[122,1,1,10,11],[134,1,1,11,12]]],[8,1,1,12,13,[[244,1,1,12,13]]]],[2358,2363,2911,2912,2913,2942,2943,2974,2991,2992,3843,4275,7415]]],["thigh",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18601]]]]},{"k":"H7786","v":[["reigned",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6776]]]]},{"k":"H7787","v":[["cut",[1,1,[[12,1,1,0,1,[[357,1,1,0,1]]]],[10929]]]]},{"k":"H7788","v":[["*",[2,2,[[22,1,1,0,1,[[735,1,1,0,1]]],[25,1,1,1,2,[[828,1,1,1,2]]]],[18774,21146]]],["sing",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21146]]],["wentest",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18774]]]]},{"k":"H7789","v":[["*",[17,17,[[3,2,2,0,2,[[139,1,1,0,1],[140,1,1,1,2]]],[17,11,11,2,13,[[442,1,1,2,3],[452,1,1,3,4],[455,1,1,4,5],[459,1,1,5,6],[468,2,2,6,8],[469,1,1,8,9],[470,3,3,9,12],[471,1,1,12,13]]],[21,1,1,13,14,[[674,1,1,13,14]]],[23,1,1,14,15,[[749,1,1,14,15]]],[27,2,2,15,17,[[874,1,1,15,16],[875,1,1,16,17]]]],[4425,4463,13016,13275,13335,13451,13664,13677,13712,13725,13733,13734,13760,17590,19084,22273,22290]]],["behold",[6,6,[[3,2,2,0,2,[[139,1,1,0,1],[140,1,1,1,2]]],[17,4,4,2,6,[[455,1,1,2,3],[469,1,1,3,4],[470,1,1,4,5],[471,1,1,5,6]]]],[4425,4463,13335,13712,13725,13760]]],["look",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17590]]],["looketh",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13677]]],["observe",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22273]]],["observed",[1,1,[[27,1,1,0,1,[[875,1,1,0,1]]]],[22290]]],["perceiveth",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13664]]],["regard",[1,1,[[17,1,1,0,1,[[470,1,1,0,1]]]],[13733]]],["see",[4,4,[[17,4,4,0,4,[[442,1,1,0,1],[452,1,1,1,2],[459,1,1,2,3],[470,1,1,3,4]]]],[13016,13275,13451,13734]]],["wait",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19084]]]]},{"k":"H7790","v":[["enemies",[1,1,[[18,1,1,0,1,[[569,1,1,0,1]]]],[15422]]]]},{"k":"H7791","v":[["*",[5,5,[[0,2,2,0,2,[[48,2,2,0,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[17,1,1,3,4,[[459,1,1,3,4]]],[18,1,1,4,5,[[495,1,1,4,5]]]],[1479,1495,8632,13447,14147]]],["wall",[4,4,[[0,2,2,0,2,[[48,2,2,0,2]]],[9,1,1,2,3,[[288,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]]],[1479,1495,8632,14147]]],["walls",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13447]]]]},{"k":"H7792","v":[["walls",[3,3,[[14,3,3,0,3,[[406,3,3,0,3]]]],[12122,12123,12126]]]]},{"k":"H7793","v":[["Shur",[6,6,[[0,3,3,0,3,[[15,1,1,0,1],[19,1,1,1,2],[24,1,1,2,3]]],[1,1,1,3,4,[[64,1,1,3,4]]],[8,2,2,4,6,[[250,1,1,4,5],[262,1,1,5,6]]]],[388,496,676,1942,7567,7938]]]]},{"k":"H7794","v":[["*",[78,68,[[0,1,1,0,1,[[31,1,1,0,1]]],[1,24,15,1,16,[[69,1,1,1,2],[70,14,6,2,8],[71,6,5,8,13],[72,2,2,13,15],[83,1,1,15,16]]],[2,10,10,16,26,[[93,1,1,16,17],[96,1,1,17,18],[98,3,3,18,21],[106,1,1,21,22],[111,3,3,22,25],[116,1,1,25,26]]],[3,4,4,26,30,[[123,1,1,26,27],[131,1,1,27,28],[134,1,1,28,29],[138,1,1,29,30]]],[4,12,12,30,42,[[157,2,2,30,32],[166,1,1,32,33],[167,1,1,33,34],[169,1,1,34,35],[170,1,1,35,36],[174,3,3,36,39],[177,1,1,39,40],[180,1,1,40,41],[185,1,1,41,42]]],[5,2,2,42,44,[[192,1,1,42,43],[193,1,1,43,44]]],[6,2,2,44,46,[[216,2,2,44,46]]],[8,5,4,46,50,[[247,1,1,46,47],[249,2,1,47,48],[250,1,1,48,49],[257,1,1,49,50]]],[9,1,1,50,51,[[272,1,1,50,51]]],[10,2,2,51,53,[[291,2,2,51,53]]],[15,1,1,53,54,[[417,1,1,53,54]]],[17,3,3,54,57,[[441,1,1,54,55],[456,1,1,55,56],[459,1,1,56,57]]],[18,2,2,57,59,[[546,1,1,57,58],[583,1,1,58,59]]],[19,3,3,59,62,[[634,1,1,59,60],[641,1,1,60,61],[642,1,1,61,62]]],[22,4,4,62,66,[[679,1,1,62,63],[685,1,1,63,64],[710,1,1,64,65],[744,1,1,65,66]]],[25,1,1,66,67,[[802,1,1,66,67]]],[27,1,1,67,68,[[873,1,1,67,68]]]],[933,2068,2105,2106,2109,2110,2112,2113,2114,2117,2122,2123,2143,2148,2156,2515,2805,2902,2957,2971,2972,3238,3392,3396,3397,3596,3853,4164,4274,4379,5067,5074,5294,5338,5365,5387,5471,5474,5480,5551,5642,5827,5970,6000,6658,6679,7463,7542,7563,7806,8170,8736,8742,12400,12983,13365,13439,14966,15671,16597,16776,16824,17657,17807,18279,18925,20474,22263]]],["+",[8,8,[[1,2,2,0,2,[[70,1,1,0,1],[71,1,1,1,2]]],[2,1,1,2,3,[[93,1,1,2,3]]],[6,1,1,3,4,[[216,1,1,3,4]]],[8,1,1,4,5,[[250,1,1,4,5]]],[17,1,1,5,6,[[459,1,1,5,6]]],[18,1,1,6,7,[[546,1,1,6,7]]],[19,1,1,7,8,[[642,1,1,7,8]]]],[2112,2117,2805,6679,7563,13439,14966,16824]]],["bull",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13365]]],["bullock",[9,9,[[2,5,5,0,5,[[98,3,3,0,3],[111,2,2,3,5]]],[3,1,1,5,6,[[131,1,1,5,6]]],[4,3,3,6,9,[[167,1,1,6,7],[169,1,1,7,8],[185,1,1,8,9]]]],[2957,2971,2972,3392,3396,4164,5338,5365,5827]]],["bullocks",[1,1,[[27,1,1,0,1,[[873,1,1,0,1]]]],[22263]]],["cow",[2,2,[[2,1,1,0,1,[[111,1,1,0,1]]],[3,1,1,1,2,[[134,1,1,1,2]]]],[3397,4274]]],["ox",[49,40,[[1,21,13,0,13,[[69,1,1,0,1],[70,13,6,1,7],[71,4,3,7,10],[72,2,2,10,12],[83,1,1,12,13]]],[2,3,3,13,16,[[96,1,1,13,14],[106,1,1,14,15],[116,1,1,15,16]]],[3,2,2,16,18,[[123,1,1,16,17],[138,1,1,17,18]]],[4,9,9,18,27,[[157,2,2,18,20],[166,1,1,20,21],[170,1,1,21,22],[174,3,3,22,25],[177,1,1,25,26],[180,1,1,26,27]]],[5,1,1,27,28,[[192,1,1,27,28]]],[6,1,1,28,29,[[216,1,1,28,29]]],[8,3,2,29,31,[[247,1,1,29,30],[249,2,1,30,31]]],[15,1,1,31,32,[[417,1,1,31,32]]],[17,1,1,32,33,[[441,1,1,32,33]]],[18,1,1,33,34,[[583,1,1,33,34]]],[19,2,2,34,36,[[634,1,1,34,35],[641,1,1,35,36]]],[22,3,3,36,39,[[679,1,1,36,37],[710,1,1,37,38],[744,1,1,38,39]]],[25,1,1,39,40,[[802,1,1,39,40]]]],[2068,2105,2106,2109,2110,2112,2113,2114,2122,2123,2148,2156,2515,2902,3238,3596,3853,4379,5067,5074,5294,5387,5471,5474,5480,5551,5642,5970,6658,7463,7542,12400,12983,15671,16597,16776,17657,18279,18925,20474]]],["oxen",[8,8,[[0,1,1,0,1,[[31,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[5,1,1,2,3,[[193,1,1,2,3]]],[8,1,1,3,4,[[257,1,1,3,4]]],[9,1,1,4,5,[[272,1,1,4,5]]],[10,2,2,5,7,[[291,2,2,5,7]]],[22,1,1,7,8,[[685,1,1,7,8]]]],[933,2143,6000,7806,8170,8736,8742,17807]]]]},{"k":"H7795","v":[["principal",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18189]]]]},{"k":"H7796","v":[["Sorek",[1,1,[[6,1,1,0,1,[[226,1,1,0,1]]]],[6953]]]]},{"k":"H7797","v":[["*",[27,24,[[4,4,2,0,2,[[180,2,1,0,1],[182,2,1,1,2]]],[17,2,2,2,4,[[438,1,1,2,3],[474,1,1,3,4]]],[18,7,7,4,11,[[496,1,1,4,5],[512,1,1,5,6],[517,1,1,6,7],[545,1,1,7,8],[547,1,1,8,9],[596,2,2,9,11]]],[22,9,8,11,19,[[713,1,1,11,12],[739,2,1,12,13],[740,1,1,13,14],[742,1,1,14,15],[743,2,2,15,17],[744,2,2,17,19]]],[23,1,1,19,20,[[776,1,1,19,20]]],[24,2,2,20,22,[[797,1,1,20,21],[800,1,1,21,22]]],[25,1,1,22,23,[[822,1,1,22,23]]],[35,1,1,23,24,[[908,1,1,23,24]]]],[5674,5717,12926,13855,14173,14419,14541,14903,14975,15912,16060,18321,18853,18859,18890,18915,18916,18932,18936,19772,20331,20441,20954,22837]]],["+",[2,1,[[22,2,1,0,1,[[739,2,1,0,1]]]],[18853]]],["Rejoice",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20441]]],["glad",[4,4,[[17,1,1,0,1,[[438,1,1,0,1]]],[22,2,2,1,3,[[713,1,1,1,2],[743,1,1,2,3]]],[24,1,1,3,4,[[797,1,1,3,4]]]],[12926,18321,18915,20331]]],["joy",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18916]]],["mirth",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20954]]],["rejoice",[12,12,[[4,2,2,0,2,[[180,1,1,0,1],[182,1,1,1,2]]],[18,5,5,2,7,[[512,1,1,2,3],[517,1,1,3,4],[545,1,1,4,5],[547,1,1,5,6],[596,1,1,6,7]]],[22,3,3,7,10,[[740,1,1,7,8],[744,2,2,8,10]]],[23,1,1,10,11,[[776,1,1,10,11]]],[35,1,1,11,12,[[908,1,1,11,12]]]],[5674,5717,14419,14541,14903,14975,16060,18859,18932,18936,19772,22837]]],["rejoiced",[3,3,[[4,2,2,0,2,[[180,1,1,0,1],[182,1,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]]],[5674,5717,15912]]],["rejoiceth",[3,3,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,1,1,1,2,[[496,1,1,1,2]]],[22,1,1,2,3,[[742,1,1,2,3]]]],[13855,14173,18890]]]]},{"k":"H7798","v":[["Shavsha",[1,1,[[12,1,1,0,1,[[355,1,1,0,1]]]],[10906]]]]},{"k":"H7799","v":[["*",[13,13,[[10,3,3,0,3,[[297,3,3,0,3]]],[13,1,1,3,4,[[370,1,1,3,4]]],[21,8,8,4,12,[[672,3,3,4,7],[674,1,1,7,8],[675,1,1,8,9],[676,2,2,9,11],[677,1,1,11,12]]],[27,1,1,12,13,[[875,1,1,12,13]]]],[8953,8956,8960,11251,17555,17556,17570,17587,17611,17616,17617,17629,22287]]],["lilies",[8,8,[[10,1,1,0,1,[[297,1,1,0,1]]],[13,1,1,1,2,[[370,1,1,1,2]]],[21,6,6,2,8,[[672,1,1,2,3],[674,1,1,3,4],[675,1,1,4,5],[676,2,2,5,7],[677,1,1,7,8]]]],[8960,11251,17570,17587,17611,17616,17617,17629]]],["lily",[5,5,[[10,2,2,0,2,[[297,2,2,0,2]]],[21,2,2,2,4,[[672,2,2,2,4]]],[27,1,1,4,5,[[875,1,1,4,5]]]],[8953,8956,17555,17556,22287]]]]},{"k":"H7800","v":[["Shushan",[21,19,[[15,1,1,0,1,[[413,1,1,0,1]]],[16,19,17,1,18,[[426,2,2,1,3],[427,3,3,3,6],[428,2,1,6,7],[429,2,2,7,9],[433,2,2,9,11],[434,8,7,11,18]]],[26,1,1,18,19,[[857,1,1,18,19]]]],[12297,12704,12707,12727,12729,12732,12762,12770,12778,12831,12832,12840,12845,12846,12847,12848,12849,12852,21963]]]]},{"k":"H7801","v":[["Susanchites",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12119]]]]},{"k":"H7802","v":[]},{"k":"H7803","v":[["Shuthelah",[4,4,[[3,2,2,0,2,[[142,2,2,0,2]]],[12,2,2,2,4,[[344,2,2,2,4]]]],[4524,4525,10555,10556]]]]},{"k":"H7804","v":[["*",[9,7,[[26,9,7,0,7,[[852,4,3,0,3],[855,5,4,3,7]]]],[21822,21824,21835,21919,21921,21925,21932]]],["deliver",[6,5,[[26,6,5,0,5,[[852,3,2,0,2],[855,3,3,2,5]]]],[21822,21824,21919,21921,21925]]],["delivered",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[855,1,1,1,2]]]],[21835,21932]]],["delivereth",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21932]]]]},{"k":"H7805","v":[["*",[3,3,[[17,2,2,0,2,[[455,1,1,0,1],[463,1,1,1,2]]],[21,1,1,2,3,[[671,1,1,2,3]]]],[13335,13511,17543]]],["+",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17543]]],["saw",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13335]]],["seen",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13511]]]]},{"k":"H7806","v":[["*",[21,21,[[1,21,21,0,21,[[75,3,3,0,3],[76,3,3,3,6],[77,3,3,6,9],[85,3,3,9,12],[87,3,3,12,15],[88,6,6,15,21]]]],[2236,2266,2271,2281,2288,2290,2299,2301,2308,2574,2601,2603,2642,2649,2651,2666,2669,2672,2688,2692,2693]]],["+",[20,20,[[1,20,20,0,20,[[75,3,3,0,3],[76,3,3,3,6],[77,3,3,6,9],[85,3,3,9,12],[87,3,3,12,15],[88,5,5,15,20]]]],[2236,2266,2271,2281,2288,2290,2299,2301,2308,2574,2601,2603,2642,2649,2651,2666,2669,2672,2692,2693]]],["twined",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2688]]]]},{"k":"H7807","v":[["+",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13418]]]]},{"k":"H7808","v":[["thought",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22423]]]]},{"k":"H7809","v":[["*",[2,2,[[17,1,1,0,1,[[441,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[13000,20795]]],["hirest",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20795]]],["reward",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[13000]]]]},{"k":"H7810","v":[["*",[23,21,[[1,2,1,0,1,[[72,2,1,0,1]]],[4,4,3,1,4,[[162,1,1,1,2],[168,2,1,2,3],[179,1,1,3,4]]],[8,1,1,4,5,[[243,1,1,4,5]]],[10,1,1,5,6,[[305,1,1,5,6]]],[11,1,1,6,7,[[328,1,1,6,7]]],[13,1,1,7,8,[[385,1,1,7,8]]],[17,1,1,8,9,[[450,1,1,8,9]]],[18,2,2,9,11,[[492,1,1,9,10],[503,1,1,10,11]]],[19,4,4,11,15,[[633,1,1,11,12],[644,2,2,12,14],[648,1,1,14,15]]],[22,4,4,15,19,[[679,1,1,15,16],[683,1,1,16,17],[711,1,1,17,18],[723,1,1,18,19]]],[25,1,1,19,20,[[823,1,1,19,20]]],[32,1,1,20,21,[[895,1,1,20,21]]]],[2152,5203,5361,5610,7372,9268,9971,11583,13237,14092,14283,16575,16881,16896,16998,17677,17762,18294,18574,20988,22619]]],["bribery",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13237]]],["bribes",[3,3,[[8,1,1,0,1,[[243,1,1,0,1]]],[18,1,1,1,2,[[503,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]]],[7372,14283,18294]]],["gift",[6,4,[[1,2,1,0,1,[[72,2,1,0,1]]],[4,2,1,1,2,[[168,2,1,1,2]]],[19,2,2,2,4,[[644,2,2,2,4]]]],[2152,5361,16881,16896]]],["gifts",[4,4,[[13,1,1,0,1,[[385,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]],[22,1,1,2,3,[[679,1,1,2,3]]],[25,1,1,3,4,[[823,1,1,3,4]]]],[11583,16575,17677,20988]]],["present",[2,2,[[10,1,1,0,1,[[305,1,1,0,1]]],[11,1,1,1,2,[[328,1,1,1,2]]]],[9268,9971]]],["reward",[7,7,[[4,2,2,0,2,[[162,1,1,0,1],[179,1,1,1,2]]],[18,1,1,2,3,[[492,1,1,2,3]]],[19,1,1,3,4,[[648,1,1,3,4]]],[22,2,2,4,6,[[683,1,1,4,5],[723,1,1,5,6]]],[32,1,1,6,7,[[895,1,1,6,7]]]],[5203,5610,14092,16998,17762,18574,22619]]]]},{"k":"H7811","v":[["*",[3,2,[[18,1,1,0,1,[[483,1,1,0,1]]],[22,2,1,1,2,[[703,2,1,1,2]]]],[13991,18129]]],["swim",[2,2,[[18,1,1,0,1,[[483,1,1,0,1]]],[22,1,1,1,2,[[703,1,1,1,2]]]],[13991,18129]]],["swimmeth",[1,1,[[22,1,1,0,1,[[703,1,1,0,1]]]],[18129]]]]},{"k":"H7812","v":[["*",[172,166,[[0,23,21,0,21,[[17,1,1,0,1],[18,1,1,1,2],[21,1,1,2,3],[22,2,2,3,5],[23,3,3,5,8],[26,2,1,8,9],[32,4,3,9,12],[36,3,3,12,15],[41,1,1,15,16],[42,2,2,16,18],[46,1,1,18,19],[47,1,1,19,20],[48,1,1,20,21]]],[1,11,11,21,32,[[53,1,1,21,22],[60,1,1,22,23],[61,1,1,23,24],[67,1,1,24,25],[69,1,1,25,26],[72,1,1,26,27],[73,1,1,27,28],[81,1,1,28,29],[82,1,1,29,30],[83,2,2,30,32]]],[2,1,1,32,33,[[115,1,1,32,33]]],[3,2,2,33,35,[[138,1,1,33,34],[141,1,1,34,35]]],[4,8,8,35,43,[[156,1,1,35,36],[157,1,1,36,37],[160,1,1,37,38],[163,1,1,38,39],[169,1,1,39,40],[178,1,1,40,41],[181,1,1,41,42],[182,1,1,42,43]]],[5,3,3,43,46,[[191,1,1,43,44],[209,2,2,44,46]]],[6,4,4,46,50,[[212,3,3,46,49],[217,1,1,49,50]]],[7,1,1,50,51,[[233,1,1,50,51]]],[8,12,12,51,63,[[236,3,3,51,54],[237,1,1,54,55],[250,3,3,55,58],[255,1,1,58,59],[259,1,1,59,60],[260,2,2,60,62],[263,1,1,62,63]]],[9,13,13,63,76,[[267,1,1,63,64],[275,2,2,64,66],[278,1,1,66,67],[280,3,3,67,70],[281,2,2,70,72],[282,1,1,72,73],[284,2,2,73,75],[290,1,1,75,76]]],[10,11,11,76,87,[[291,5,5,76,81],[292,1,1,81,82],[299,2,2,82,84],[301,1,1,84,85],[306,1,1,85,86],[312,1,1,86,87]]],[11,12,10,87,97,[[314,1,1,87,88],[316,1,1,88,89],[317,3,1,89,90],[329,3,3,90,93],[330,1,1,93,94],[331,1,1,94,95],[333,2,2,95,97]]],[12,3,3,97,100,[[353,1,1,97,98],[358,1,1,98,99],[366,1,1,99,100]]],[13,11,11,100,111,[[373,3,3,100,103],[386,1,1,103,104],[390,1,1,104,105],[391,1,1,105,106],[395,3,3,106,109],[398,1,1,109,110],[399,1,1,110,111]]],[15,3,3,111,114,[[420,1,1,111,112],[421,2,2,112,114]]],[16,3,2,114,116,[[428,3,2,114,116]]],[17,1,1,116,117,[[436,1,1,116,117]]],[18,17,17,117,134,[[482,1,1,117,118],[499,2,2,118,120],[506,1,1,120,121],[522,1,1,121,122],[543,1,1,122,123],[549,1,1,123,124],[558,1,1,124,125],[563,1,1,125,126],[572,1,1,126,127],[573,1,1,127,128],[574,1,1,128,129],[576,2,2,129,131],[583,1,1,131,132],[609,1,1,132,133],[615,1,1,133,134]]],[19,1,1,134,135,[[639,1,1,134,135]]],[22,14,14,135,149,[[680,2,2,135,137],[705,1,1,137,138],[714,1,1,138,139],[715,1,1,139,140],[722,2,2,140,142],[723,1,1,142,143],[724,1,1,143,144],[727,2,2,144,146],[729,1,1,146,147],[738,1,1,147,148],[744,1,1,148,149]]],[23,8,8,149,157,[[745,1,1,149,150],[751,1,1,150,151],[752,1,1,151,152],[757,1,1,152,153],[760,1,1,153,154],[766,1,1,154,155],[769,1,1,155,156],[770,1,1,156,157]]],[25,4,4,157,161,[[809,1,1,157,158],[847,3,3,158,161]]],[32,1,1,161,162,[[897,1,1,161,162]]],[35,3,2,162,164,[[906,2,1,162,163],[907,1,1,163,164]]],[37,2,2,164,166,[[924,2,2,164,166]]]],[426,458,552,578,583,617,639,643,756,963,966,967,1090,1092,1093,1258,1316,1318,1451,1463,1481,1632,1814,1843,2006,2056,2168,2178,2446,2483,2504,2510,3525,4406,4473,5023,5062,5156,5224,5367,5576,5705,5725,5948,6467,6476,6557,6562,6564,6709,7159,7215,7231,7240,7276,7585,7590,7591,7771,7847,7884,7902,7956,8024,8233,8235,8306,8360,8378,8389,8394,8421,8430,8499,8506,8712,8733,8740,8748,8764,8770,8789,9057,9060,9141,9314,9533,9566,9640,9665,9999,10018,10019,10046,10098,10122,10140,10849,10955,11184,11327,11343,11346,11605,11694,11718,11819,11820,11821,11887,11911,12499,12514,12517,12749,12752,12889,13980,14231,14233,14310,14608,14877,15011,15226,15293,15460,15474,15485,15504,15508,15670,16158,16233,16744,17693,17705,18164,18337,18390,18548,18550,18575,18592,18643,18659,18696,18835,18945,18962,19121,19155,19276,19347,19463,19540,19574,20620,21657,21658,21664,22646,22792,22816,23084,23085]]],["beseech",[1,1,[[9,1,1,0,1,[[282,1,1,0,1]]]],[8430]]],["bowed",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8389]]],["crouch",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7276]]],["down",[13,12,[[0,3,2,0,2,[[26,2,1,0,1],[48,1,1,1,2]]],[1,1,1,2,3,[[72,1,1,2,3]]],[2,1,1,3,4,[[115,1,1,3,4]]],[3,1,1,4,5,[[141,1,1,4,5]]],[6,1,1,5,6,[[212,1,1,5,6]]],[9,1,1,6,7,[[284,1,1,6,7]]],[18,1,1,7,8,[[549,1,1,7,8]]],[22,4,4,8,12,[[723,1,1,8,9],[727,1,1,9,10],[729,1,1,10,11],[738,1,1,11,12]]]],[756,1481,2168,3525,4473,6564,8506,15011,18575,18659,18696,18835]]],["flat",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4406]]],["herself",[4,4,[[7,1,1,0,1,[[233,1,1,0,1]]],[8,2,2,1,3,[[260,2,2,1,3]]],[11,1,1,3,4,[[316,1,1,3,4]]]],[7159,7884,7902,9640]]],["himself",[20,20,[[0,7,7,0,7,[[17,1,1,0,1],[18,1,1,1,2],[22,2,2,2,4],[32,1,1,4,5],[46,1,1,5,6],[47,1,1,6,7]]],[8,3,3,7,10,[[255,1,1,7,8],[259,1,1,8,9],[263,1,1,9,10]]],[9,4,4,10,14,[[275,1,1,10,11],[280,1,1,11,12],[284,1,1,12,13],[290,1,1,13,14]]],[10,4,4,14,18,[[291,3,3,14,17],[292,1,1,17,18]]],[12,1,1,18,19,[[358,1,1,18,19]]],[13,1,1,19,20,[[391,1,1,19,20]]]],[426,458,578,583,963,1451,1463,7771,7847,7956,8235,8378,8499,8712,8740,8764,8770,8789,10955,11718]]],["myself",[2,1,[[11,2,1,0,1,[[317,2,1,0,1]]]],[9665]]],["obeisance",[9,9,[[0,3,3,0,3,[[36,2,2,0,2],[42,1,1,2,3]]],[1,1,1,3,4,[[67,1,1,3,4]]],[9,3,3,4,7,[[267,1,1,4,5],[280,1,1,5,6],[281,1,1,6,7]]],[10,1,1,7,8,[[291,1,1,7,8]]],[13,1,1,8,9,[[390,1,1,8,9]]]],[1090,1092,1318,2006,8024,8360,8394,8733,11694]]],["ourselves",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1093]]],["reverence",[4,4,[[9,1,1,0,1,[[275,1,1,0,1]]],[10,1,1,1,2,[[291,1,1,1,2]]],[16,2,2,2,4,[[428,2,2,2,4]]]],[8233,8748,12749,12752]]],["reverenced",[1,1,[[16,1,1,0,1,[[428,1,1,0,1]]]],[12749]]],["stoop",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16744]]],["themselves",[9,8,[[0,5,4,0,4,[[32,3,2,0,2],[41,1,1,2,3],[42,1,1,3,4]]],[1,1,1,4,5,[[60,1,1,4,5]]],[6,2,2,5,7,[[212,2,2,5,7]]],[11,1,1,7,8,[[314,1,1,7,8]]]],[966,967,1258,1316,1814,6557,6562,9566]]],["thyself",[2,2,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,1,1,1,2,[[157,1,1,1,2]]]],[2056,5062]]],["worship",[54,53,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,2,2,1,3,[[73,1,1,1,2],[83,1,1,2,3]]],[4,5,5,3,8,[[156,1,1,3,4],[160,1,1,4,5],[163,1,1,5,6],[178,1,1,6,7],[182,1,1,7,8]]],[5,1,1,8,9,[[191,1,1,8,9]]],[8,3,3,9,12,[[236,1,1,9,10],[250,2,2,10,12]]],[10,1,1,12,13,[[299,1,1,12,13]]],[11,3,3,13,16,[[317,1,1,13,14],[329,1,1,14,15],[330,1,1,15,16]]],[12,1,1,16,17,[[353,1,1,16,17]]],[13,2,2,17,19,[[373,1,1,17,18],[398,1,1,18,19]]],[18,15,15,19,34,[[482,1,1,19,20],[499,2,2,20,22],[506,1,1,22,23],[522,1,1,23,24],[543,1,1,24,25],[558,1,1,25,26],[563,1,1,26,27],[572,1,1,27,28],[573,1,1,28,29],[574,1,1,29,30],[576,2,2,30,32],[609,1,1,32,33],[615,1,1,33,34]]],[22,7,7,34,41,[[680,2,2,34,36],[705,1,1,36,37],[714,1,1,37,38],[724,1,1,38,39],[727,1,1,39,40],[744,1,1,40,41]]],[23,4,4,41,45,[[751,1,1,41,42],[757,1,1,42,43],[769,1,1,43,44],[770,1,1,44,45]]],[25,3,3,45,48,[[847,3,3,45,48]]],[32,1,1,48,49,[[897,1,1,48,49]]],[35,3,2,49,51,[[906,2,1,49,50],[907,1,1,50,51]]],[37,2,2,51,53,[[924,2,2,51,53]]]],[552,2178,2510,5023,5156,5224,5576,5725,5948,7215,7585,7590,9057,9665,10019,10046,10849,11343,11887,13980,14231,14233,14310,14608,14877,15226,15293,15460,15474,15485,15504,15508,16158,16233,17693,17705,18164,18337,18592,18643,18945,19121,19276,19540,19574,21657,21658,21664,22646,22792,22816,23084,23085]]],["worshipped",[39,39,[[0,3,3,0,3,[[23,3,3,0,3]]],[1,5,5,3,8,[[53,1,1,3,4],[61,1,1,4,5],[81,1,1,5,6],[82,1,1,6,7],[83,1,1,7,8]]],[4,2,2,8,10,[[169,1,1,8,9],[181,1,1,9,10]]],[6,1,1,10,11,[[217,1,1,10,11]]],[8,3,3,11,14,[[236,2,2,11,13],[250,1,1,13,14]]],[9,2,2,14,16,[[278,1,1,14,15],[281,1,1,15,16]]],[10,4,4,16,20,[[299,1,1,16,17],[301,1,1,17,18],[306,1,1,18,19],[312,1,1,19,20]]],[11,3,3,20,23,[[329,1,1,20,21],[333,2,2,21,23]]],[12,1,1,23,24,[[366,1,1,23,24]]],[13,6,6,24,30,[[373,2,2,24,26],[395,3,3,26,29],[399,1,1,29,30]]],[15,2,2,30,32,[[420,1,1,30,31],[421,1,1,31,32]]],[17,1,1,32,33,[[436,1,1,32,33]]],[18,1,1,33,34,[[583,1,1,33,34]]],[23,4,4,34,38,[[745,1,1,34,35],[752,1,1,35,36],[760,1,1,36,37],[766,1,1,37,38]]],[25,1,1,38,39,[[809,1,1,38,39]]]],[617,639,643,1632,1843,2446,2483,2504,5367,5705,6709,7231,7240,7591,8306,8421,9060,9141,9314,9533,9999,10122,10140,11184,11327,11346,11819,11820,11821,11911,12499,12514,12889,15670,18962,19155,19347,19463,20620]]],["worshippeth",[3,3,[[15,1,1,0,1,[[421,1,1,0,1]]],[22,2,2,1,3,[[722,2,2,1,3]]]],[12517,18548,18550]]],["worshipping",[3,3,[[11,1,1,0,1,[[331,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]]],[10098,11605,18390]]],["yourselves",[3,3,[[5,2,2,0,2,[[209,2,2,0,2]]],[11,1,1,2,3,[[329,1,1,2,3]]]],[6467,6476,10018]]]]},{"k":"H7813","v":[["in",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21684]]]]},{"k":"H7814","v":[["*",[15,14,[[17,3,2,0,2,[[443,1,1,0,1],[447,2,1,1,2]]],[18,1,1,2,3,[[603,1,1,2,3]]],[19,2,2,3,5,[[637,1,1,3,4],[641,1,1,4,5]]],[20,4,4,5,9,[[660,1,1,5,6],[665,2,2,6,8],[668,1,1,8,9]]],[23,4,4,9,13,[[764,1,1,9,10],[792,3,3,10,13]]],[24,1,1,13,14,[[799,1,1,13,14]]]],[13050,13132,16117,16679,16785,17335,17432,17435,17512,19429,20106,20107,20119,20368]]],["+",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17432]]],["derision",[5,5,[[23,4,4,0,4,[[764,1,1,0,1],[792,3,3,1,4]]],[24,1,1,4,5,[[799,1,1,4,5]]]],[19429,20106,20107,20119,20368]]],["laughing",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13050]]],["laughter",[5,5,[[18,1,1,0,1,[[603,1,1,0,1]]],[19,1,1,1,2,[[641,1,1,1,2]]],[20,3,3,2,5,[[660,1,1,2,3],[665,1,1,3,4],[668,1,1,4,5]]]],[16117,16785,17335,17435,17512]]],["mocked",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13132]]],["scorn",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13132]]],["sport",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16679]]]]},{"k":"H7815","v":[["+",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20428]]]]},{"k":"H7816","v":[["pit",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17206]]]]},{"k":"H7817","v":[["*",[21,21,[[17,2,2,0,2,[[444,1,1,0,1],[473,1,1,1,2]]],[18,8,8,2,10,[[487,1,1,2,3],[512,1,1,3,4],[515,1,1,4,5],[519,3,3,5,8],[520,1,1,8,9],[584,1,1,9,10]]],[19,1,1,10,11,[[641,1,1,10,11]]],[20,1,1,11,12,[[670,1,1,11,12]]],[22,8,8,12,20,[[680,3,3,12,15],[683,1,1,15,16],[703,1,1,16,17],[704,1,1,17,18],[707,1,1,18,19],[738,1,1,19,20]]],[34,1,1,20,21,[[905,1,1,20,21]]]],[13064,13833,14051,14424,14496,14560,14561,14566,14571,15738,16791,17527,17694,17696,17702,17754,18130,18135,18197,18835,22774]]],["bending",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18835]]],["bow",[2,2,[[19,1,1,0,1,[[641,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[16791,22774]]],["couch",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13833]]],["down",[12,12,[[18,6,6,0,6,[[512,1,1,0,1],[515,1,1,1,2],[519,3,3,2,5],[520,1,1,5,6]]],[22,6,6,6,12,[[680,3,3,6,9],[683,1,1,9,10],[703,1,1,10,11],[704,1,1,11,12]]]],[14424,14496,14560,14561,14566,14571,17694,17696,17702,17754,18130,18135]]],["humbleth",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14051]]],["low",[3,3,[[18,1,1,0,1,[[584,1,1,0,1]]],[20,1,1,1,2,[[670,1,1,1,2]]],[22,1,1,2,3,[[707,1,1,2,3]]]],[15738,17527,18197]]],["stoop",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13064]]]]},{"k":"H7818","v":[["pressed",[1,1,[[0,1,1,0,1,[[39,1,1,0,1]]]],[1183]]]]},{"k":"H7819","v":[["*",[81,70,[[0,2,2,0,2,[[21,1,1,0,1],[36,1,1,1,2]]],[1,6,6,2,8,[[61,2,2,2,4],[78,3,3,4,7],[83,1,1,7,8]]],[2,36,30,8,38,[[90,2,2,8,10],[92,3,3,10,13],[93,7,5,13,18],[95,2,1,18,19],[96,2,1,19,20],[97,3,3,20,23],[98,4,4,23,27],[103,8,7,27,34],[105,2,2,34,36],[106,2,1,36,37],[111,1,1,37,38]]],[3,3,3,38,41,[[127,1,1,38,39],[130,1,1,39,40],[135,1,1,40,41]]],[6,1,1,41,42,[[222,1,1,41,42]]],[8,4,3,42,45,[[236,1,1,42,43],[249,3,2,43,45]]],[10,1,1,45,46,[[308,1,1,45,46]]],[11,3,3,46,49,[[322,2,2,46,48],[337,1,1,48,49]]],[13,8,6,49,55,[[395,4,2,49,51],[396,1,1,51,52],[401,3,3,52,55]]],[14,1,1,55,56,[[408,1,1,55,56]]],[22,3,3,56,59,[[700,1,1,56,57],[735,1,1,57,58],[744,1,1,58,59]]],[23,6,4,59,63,[[753,1,1,59,60],[783,2,1,60,61],[785,1,1,61,62],[796,2,1,62,63]]],[25,6,6,63,69,[[817,1,1,63,64],[824,1,1,64,65],[841,3,3,65,68],[845,1,1,68,69]]],[27,1,1,69,70,[[866,1,1,69,70]]]],[557,1114,1822,1837,2347,2352,2356,2521,2750,2756,2780,2786,2791,2799,2810,2819,2824,2828,2874,2881,2932,2936,2940,2961,2965,2968,2971,3116,3117,3124,3130,3136,3161,3162,3212,3216,3238,3397,4046,4124,4292,6875,7237,7540,7542,9381,9800,9807,10229,11813,11815,11842,11967,11972,11977,12171,18065,18770,18925,19183,19929,19964,20286,20783,21046,21516,21518,21519,21610,22154]]],["+",[27,25,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,3,3,1,4,[[78,3,3,1,4]]],[2,16,14,4,18,[[90,1,1,4,5],[93,4,4,5,9],[96,2,1,9,10],[98,2,2,10,12],[103,5,4,12,16],[105,2,2,16,18]]],[8,1,1,18,19,[[236,1,1,18,19]]],[23,2,2,19,21,[[783,1,1,19,20],[796,1,1,20,21]]],[25,4,4,21,25,[[817,1,1,21,22],[824,1,1,22,23],[841,1,1,23,24],[845,1,1,24,25]]]],[557,2347,2352,2356,2750,2799,2819,2824,2828,2881,2961,2965,3124,3130,3136,3161,3212,3216,7237,19929,20286,20783,21046,21519,21610]]],["kill",[9,9,[[1,2,2,0,2,[[61,2,2,0,2]]],[2,6,6,2,8,[[90,1,1,2,3],[92,3,3,3,6],[93,1,1,6,7],[111,1,1,7,8]]],[13,1,1,8,9,[[401,1,1,8,9]]]],[1822,1837,2756,2780,2786,2791,2819,3397,11972]]],["killed",[15,12,[[0,1,1,0,1,[[36,1,1,0,1]]],[2,6,5,1,6,[[93,1,1,1,2],[95,2,1,2,3],[97,1,1,3,4],[103,2,2,4,6]]],[13,7,5,6,11,[[395,4,2,6,8],[396,1,1,8,9],[401,2,2,9,11]]],[14,1,1,11,12,[[408,1,1,11,12]]]],[1114,2810,2874,2936,3116,3117,11813,11815,11842,11967,11977,12171]]],["killeth",[3,2,[[2,2,1,0,1,[[106,2,1,0,1]]],[22,1,1,1,2,[[744,1,1,1,2]]]],[3238,18925]]],["killing",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18065]]],["offer",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2521]]],["out",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19183]]],["slain",[3,3,[[2,1,1,0,1,[[103,1,1,0,1]]],[3,2,2,1,3,[[127,1,1,1,2],[130,1,1,2,3]]]],[3162,4046,4124]]],["slaughter",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22154]]],["slay",[4,4,[[2,1,1,0,1,[[93,1,1,0,1]]],[3,1,1,1,2,[[135,1,1,1,2]]],[8,1,1,2,3,[[249,1,1,2,3]]],[25,1,1,3,4,[[841,1,1,3,4]]]],[2828,4292,7542,21516]]],["slaying",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18770]]],["slew",[15,15,[[2,4,4,0,4,[[97,2,2,0,2],[98,2,2,2,4]]],[6,1,1,4,5,[[222,1,1,4,5]]],[8,2,2,5,7,[[249,2,2,5,7]]],[10,1,1,7,8,[[308,1,1,7,8]]],[11,3,3,8,11,[[322,2,2,8,10],[337,1,1,10,11]]],[23,3,3,11,14,[[783,1,1,11,12],[785,1,1,12,13],[796,1,1,13,14]]],[25,1,1,14,15,[[841,1,1,14,15]]]],[2932,2940,2968,2971,6875,7540,7542,9381,9800,9807,10229,19929,19964,20286,21518]]]]},{"k":"H7820","v":[["beaten",[5,4,[[10,2,2,0,2,[[300,2,2,0,2]]],[13,3,2,2,4,[[375,3,2,2,4]]]],[9095,9096,11379,11380]]]]},{"k":"H7821","v":[["killing",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11844]]]]},{"k":"H7822","v":[["*",[13,12,[[1,4,3,0,3,[[58,4,3,0,3]]],[2,4,4,3,7,[[102,4,4,3,7]]],[4,2,2,7,9,[[180,2,2,7,9]]],[11,1,1,9,10,[[332,1,1,9,10]]],[17,1,1,10,11,[[437,1,1,10,11]]],[22,1,1,11,12,[[716,1,1,11,12]]]],[1751,1752,1753,3070,3071,3072,3075,5638,5646,10105,12898,18411]]],["boil",[9,9,[[1,3,3,0,3,[[58,3,3,0,3]]],[2,4,4,3,7,[[102,4,4,3,7]]],[11,1,1,7,8,[[332,1,1,7,8]]],[22,1,1,8,9,[[716,1,1,8,9]]]],[1751,1752,1753,3070,3071,3072,3075,10105,18411]]],["boils",[2,2,[[1,1,1,0,1,[[58,1,1,0,1]]],[17,1,1,1,2,[[437,1,1,1,2]]]],[1753,12898]]],["botch",[2,2,[[4,2,2,0,2,[[180,2,2,0,2]]]],[5638,5646]]]]},{"k":"H7823","v":[["same",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10090,18382]]]]},{"k":"H7824","v":[["cieled",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21542]]]]},{"k":"H7825","v":[["*",[2,2,[[18,1,1,0,1,[[584,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[15719,20440]]],["+",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15719]]],["pits",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20440]]]]},{"k":"H7826","v":[["lion",[7,7,[[17,3,3,0,3,[[439,1,1,0,1],[445,1,1,1,2],[463,1,1,2,3]]],[18,1,1,3,4,[[568,1,1,3,4]]],[19,1,1,4,5,[[653,1,1,4,5]]],[27,2,2,5,7,[[866,1,1,5,6],[874,1,1,6,7]]]],[12940,13102,13512,15408,17154,22166,22273]]]]},{"k":"H7827","v":[["onycha",[1,1,[[1,1,1,0,1,[[79,1,1,0,1]]]],[2416]]]]},{"k":"H7828","v":[["cuckow",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3013,5305]]]]},{"k":"H7829","v":[["consumption",[2,2,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]]],[3540,5633]]]]},{"k":"H7830","v":[["*",[2,2,[[17,2,2,0,2,[[463,1,1,0,1],[476,1,1,1,2]]]],[13512,13922]]],["lion's",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13512]]],["pride",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13922]]]]},{"k":"H7831","v":[["Shahazimah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6343]]]]},{"k":"H7832","v":[["*",[36,36,[[6,2,2,0,2,[[226,2,2,0,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[9,3,3,3,6,[[268,1,1,3,4],[272,2,2,4,6]]],[12,2,2,6,8,[[350,1,1,6,7],[352,1,1,7,8]]],[13,1,1,8,9,[[396,1,1,8,9]]],[17,9,9,9,18,[[440,1,1,9,10],[464,1,1,10,11],[465,1,1,11,12],[474,3,3,12,15],[475,1,1,15,16],[476,2,2,16,18]]],[18,5,5,18,23,[[479,1,1,18,19],[514,1,1,19,20],[529,1,1,20,21],[536,1,1,21,22],[581,1,1,22,23]]],[19,6,6,23,29,[[628,1,1,23,24],[635,2,2,24,26],[653,1,1,26,27],[656,1,1,27,28],[658,1,1,28,29]]],[20,1,1,29,30,[[661,1,1,29,30]]],[23,3,3,30,33,[[759,1,1,30,31],[774,1,1,31,32],[775,1,1,32,33]]],[24,1,1,33,34,[[797,1,1,33,34]]],[34,1,1,34,35,[[903,1,1,34,35]]],[37,1,1,35,36,[[918,1,1,35,36]]]],[6974,6976,7683,8063,8162,8178,10768,10820,11837,12973,13556,13558,13841,13852,13856,13884,13893,13917,13949,14463,14716,14798,15597,16426,16632,16633,17160,17233,17309,17363,19332,19686,19695,20317,22741,22981]]],["+",[2,2,[[13,1,1,0,1,[[396,1,1,0,1]]],[17,1,1,1,2,[[465,1,1,1,2]]]],[11837,13558]]],["Rejoicing",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16633]]],["deride",[1,1,[[34,1,1,0,1,[[903,1,1,0,1]]]],[22741]]],["laugh",[8,8,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,4,4,1,5,[[479,1,1,1,2],[514,1,1,2,3],[529,1,1,3,4],[536,1,1,4,5]]],[19,2,2,5,7,[[628,1,1,5,6],[656,1,1,6,7]]],[20,1,1,7,8,[[661,1,1,7,8]]]],[12973,13949,14463,14716,14798,16426,17233,17363]]],["laughed",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13556]]],["laugheth",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13917]]],["merry",[2,2,[[23,2,2,0,2,[[774,1,1,0,1],[775,1,1,1,2]]]],[19686,19695]]],["mock",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20317]]],["mockers",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19332]]],["mocketh",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13856]]],["play",[5,5,[[9,2,2,0,2,[[268,1,1,0,1],[272,1,1,1,2]]],[17,2,2,2,4,[[475,1,1,2,3],[476,1,1,3,4]]],[18,1,1,4,5,[[581,1,1,4,5]]]],[8063,8178,13884,13893,15597]]],["played",[3,3,[[8,1,1,0,1,[[253,1,1,0,1]]],[9,1,1,1,2,[[272,1,1,1,2]]],[12,1,1,2,3,[[350,1,1,2,3]]]],[7683,8162,10768]]],["playing",[2,2,[[12,1,1,0,1,[[352,1,1,0,1]]],[37,1,1,1,2,[[918,1,1,1,2]]]],[10820,22981]]],["rejoice",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17309]]],["rejoicing",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16632]]],["scorneth",[2,2,[[17,2,2,0,2,[[474,2,2,0,2]]]],[13841,13852]]],["sport",[3,3,[[6,2,2,0,2,[[226,2,2,0,2]]],[19,1,1,2,3,[[653,1,1,2,3]]]],[6974,6976,17160]]]]},{"k":"H7833","v":[["*",[4,4,[[1,1,1,0,1,[[79,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,1,1,2,3,[[449,1,1,2,3]]],[18,1,1,3,4,[[495,1,1,3,4]]]],[2418,8645,13200,14160]]],["beat",[2,2,[[1,1,1,0,1,[[79,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]]],[2418,8645]]],["small",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14160]]],["wear",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13200]]]]},{"k":"H7834","v":[["*",[21,21,[[4,1,1,0,1,[[185,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[17,5,5,2,7,[[470,1,1,2,3],[471,1,1,3,4],[472,2,2,4,6],[473,1,1,6,7]]],[18,9,9,7,16,[[495,1,1,7,8],[513,1,1,8,9],[534,1,1,9,10],[545,1,1,10,11],[554,1,1,11,12],[555,1,1,12,13],[566,2,2,13,15],[585,1,1,15,16]]],[19,2,2,16,18,[[630,1,1,16,17],[635,1,1,17,18]]],[22,2,2,18,20,[[718,1,1,18,19],[723,1,1,19,20]]],[23,1,1,20,21,[[795,1,1,20,21]]]],[5836,8614,13725,13764,13787,13790,13830,14129,14443,14778,14934,15110,15136,15332,15363,15746,16475,16630,18435,18569,20221]]],["clouds",[11,11,[[17,4,4,0,4,[[470,1,1,0,1],[471,1,1,1,2],[472,1,1,2,3],[473,1,1,3,4]]],[18,5,5,4,9,[[513,1,1,4,5],[534,1,1,5,6],[545,1,1,6,7],[555,1,1,7,8],[585,1,1,8,9]]],[19,2,2,9,11,[[630,1,1,9,10],[635,1,1,10,11]]]],[13725,13764,13790,13830,14443,14778,14934,15136,15746,16475,16630]]],["dust",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18435]]],["heaven",[2,2,[[18,2,2,0,2,[[566,2,2,0,2]]]],[15332,15363]]],["skies",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,2,2,1,3,[[495,1,1,1,2],[554,1,1,2,3]]],[22,1,1,3,4,[[723,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]]],[8614,14129,15110,18569,20221]]],["sky",[2,2,[[4,1,1,0,1,[[185,1,1,0,1]]],[17,1,1,1,2,[[472,1,1,1,2]]]],[5836,13787]]]]},{"k":"H7835","v":[["black",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13587]]]]},{"k":"H7836","v":[["*",[12,12,[[17,3,3,0,3,[[442,1,1,0,1],[443,1,1,1,2],[459,1,1,2,3]]],[18,2,2,3,5,[[540,1,1,3,4],[555,1,1,4,5]]],[19,5,5,5,10,[[628,1,1,5,6],[634,1,1,6,7],[635,1,1,7,8],[638,1,1,8,9],[640,1,1,9,10]]],[22,1,1,10,11,[[704,1,1,10,11]]],[27,1,1,11,12,[[866,1,1,11,12]]]],[13029,13034,13441,14840,15147,16428,16590,16619,16715,16771,18139,22167]]],["+",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13034]]],["betimes",[2,2,[[17,1,1,0,1,[[459,1,1,0,1]]],[19,1,1,1,2,[[640,1,1,1,2]]]],[13441,16771]]],["early",[5,5,[[18,1,1,0,1,[[555,1,1,0,1]]],[19,2,2,1,3,[[628,1,1,1,2],[635,1,1,2,3]]],[22,1,1,3,4,[[704,1,1,3,4]]],[27,1,1,4,5,[[866,1,1,4,5]]]],[15147,16428,16619,18139,22167]]],["morning",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13029]]],["seek",[2,2,[[18,1,1,0,1,[[540,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]]],[14840,16590]]],["seeketh",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16715]]]]},{"k":"H7837","v":[["*",[23,23,[[0,3,3,0,3,[[18,1,1,0,1],[31,2,2,1,3]]],[5,1,1,3,4,[[192,1,1,3,4]]],[6,1,1,4,5,[[229,1,1,4,5]]],[8,1,1,5,6,[[244,1,1,5,6]]],[15,1,1,6,7,[[416,1,1,6,7]]],[17,3,3,7,10,[[438,1,1,7,8],[473,1,1,8,9],[476,1,1,9,10]]],[18,3,3,10,13,[[534,1,1,10,11],[585,1,1,11,12],[616,1,1,12,13]]],[21,1,1,13,14,[[676,1,1,13,14]]],[22,4,4,14,18,[[686,1,1,14,15],[692,1,1,15,16],[725,1,1,16,17],[736,1,1,17,18]]],[27,2,2,18,20,[[867,1,1,18,19],[871,1,1,19,20]]],[28,1,1,20,21,[[877,1,1,20,21]]],[29,1,1,21,22,[[882,1,1,21,22]]],[31,1,1,22,23,[[892,1,1,22,23]]]],[472,952,954,5964,7049,7417,12380,12913,13805,13906,14776,15744,16248,17624,17827,17940,18610,18794,22170,22240,22313,22423,22575]]],["day",[6,6,[[0,2,2,0,2,[[31,2,2,0,2]]],[5,1,1,2,3,[[192,1,1,2,3]]],[6,1,1,3,4,[[229,1,1,3,4]]],[8,1,1,4,5,[[244,1,1,4,5]]],[17,1,1,5,6,[[438,1,1,5,6]]]],[952,954,5964,7049,7417,12913]]],["dayspring",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13805]]],["early",[2,2,[[18,2,2,0,2,[[534,1,1,0,1],[585,1,1,1,2]]]],[14776,15744]]],["light",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17827]]],["morning",[12,12,[[0,1,1,0,1,[[18,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]],[17,1,1,2,3,[[476,1,1,2,3]]],[18,1,1,3,4,[[616,1,1,3,4]]],[21,1,1,4,5,[[676,1,1,4,5]]],[22,2,2,5,7,[[692,1,1,5,6],[736,1,1,6,7]]],[27,2,2,7,9,[[867,1,1,7,8],[871,1,1,8,9]]],[28,1,1,9,10,[[877,1,1,9,10]]],[29,1,1,10,11,[[882,1,1,10,11]]],[31,1,1,11,12,[[892,1,1,11,12]]]],[472,12380,13906,16248,17624,17940,18794,22170,22240,22313,22423,22575]]],["riseth",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18610]]]]},{"k":"H7838","v":[["black",[6,6,[[2,2,2,0,2,[[102,2,2,0,2]]],[21,2,2,2,4,[[671,1,1,2,3],[675,1,1,3,4]]],[37,2,2,4,6,[[916,2,2,4,6]]]],[3083,3089,17542,17609,22949,22953]]]]},{"k":"H7839","v":[["youth",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17523]]]]},{"k":"H7840","v":[["black",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17543]]]]},{"k":"H7841","v":[["Shehariah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10601]]]]},{"k":"H7842","v":[["Shaharaim",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10583]]]]},{"k":"H7843","v":[["*",[146,135,[[0,17,14,0,14,[[5,5,4,0,4],[8,2,2,4,6],[12,1,1,6,7],[17,4,3,7,10],[18,4,3,10,13],[37,1,1,13,14]]],[1,4,4,14,18,[[57,1,1,14,15],[61,1,1,15,16],[70,1,1,16,17],[81,1,1,17,18]]],[2,1,1,18,19,[[108,1,1,18,19]]],[3,1,1,19,20,[[148,1,1,19,20]]],[4,11,10,20,30,[[156,3,3,20,23],[161,2,2,23,25],[162,1,1,25,26],[172,2,2,26,28],[183,2,1,28,29],[184,1,1,29,30]]],[5,1,1,30,31,[[208,1,1,30,31]]],[6,7,7,31,38,[[212,1,1,31,32],[216,2,2,32,34],[230,4,4,34,38]]],[7,1,1,38,39,[[235,1,1,38,39]]],[8,6,6,39,45,[[241,1,1,39,40],[248,1,1,40,41],[249,1,1,41,42],[258,1,1,42,43],[261,2,2,43,45]]],[9,7,6,45,51,[[267,1,1,45,46],[277,1,1,46,47],[280,1,1,47,48],[286,2,2,48,50],[290,2,1,50,51]]],[11,5,4,51,55,[[320,1,1,51,52],[325,1,1,52,53],[330,2,1,53,54],[331,1,1,54,55]]],[12,5,3,55,58,[[357,1,1,55,56],[358,4,2,56,58]]],[13,10,10,58,68,[[378,2,2,58,60],[387,1,1,60,61],[390,1,1,61,62],[391,1,1,62,63],[392,1,1,63,64],[393,1,1,64,65],[400,1,1,65,66],[401,1,1,66,67],[402,1,1,67,68]]],[18,5,5,68,73,[[491,1,1,68,69],[530,1,1,69,70],[555,2,2,70,72],[583,1,1,72,73]]],[19,5,5,73,78,[[633,1,1,73,74],[638,1,1,74,75],[650,1,1,75,76],[652,1,1,76,77],[655,1,1,77,78]]],[22,11,9,78,87,[[679,1,1,78,79],[689,1,1,79,80],[692,1,1,80,81],[714,2,1,81,82],[715,1,1,82,83],[729,1,1,83,84],[732,1,1,84,85],[743,3,2,85,87]]],[23,21,21,87,108,[[746,1,1,87,88],[748,1,1,88,89],[749,1,1,89,90],[750,2,2,90,92],[755,1,1,92,93],[756,1,1,93,94],[757,3,3,94,97],[759,2,2,97,99],[762,1,1,99,100],[766,1,1,100,101],[780,1,1,101,102],[792,1,1,102,103],[793,1,1,103,104],[795,4,4,104,108]]],[24,3,3,108,111,[[798,3,3,108,111]]],[25,11,11,111,122,[[806,1,1,111,112],[810,1,1,112,113],[817,1,1,113,114],[821,2,2,114,116],[823,1,1,116,117],[824,1,1,117,118],[827,1,1,118,119],[829,1,1,119,120],[831,1,1,120,121],[844,1,1,121,122]]],[26,5,4,122,126,[[857,3,2,122,124],[858,1,1,124,125],[860,1,1,125,126]]],[27,3,3,126,129,[[870,1,1,126,127],[872,1,1,127,128],[874,1,1,128,129]]],[29,1,1,129,130,[[879,1,1,129,130]]],[33,1,1,130,131,[[901,1,1,130,131]]],[35,1,1,131,132,[[908,1,1,131,132]]],[38,3,3,132,135,[[925,1,1,132,133],[926,1,1,133,134],[927,1,1,134,135]]]],[148,149,150,154,216,220,328,452,455,456,470,471,486,1128,1734,1839,2103,2445,3308,4733,5020,5029,5035,5169,5183,5196,5446,5447,5757,5763,6459,6564,6658,6659,7075,7079,7089,7096,7196,7336,7502,7523,7820,7914,7920,8036,8260,8367,8569,8574,8708,9746,9894,10049,10073,10927,10946,10949,11444,11449,11631,11700,11720,11748,11757,11944,11987,12012,14081,14720,15151,15158,15674,16572,16697,17052,17139,17220,17658,17893,17948,18340,18364,18686,18739,18905,18922,18995,19034,19068,19094,19117,19245,19259,19273,19275,19280,19318,19321,19388,19461,19871,20098,20136,20213,20223,20232,20237,20337,20338,20340,20562,20630,20809,20912,20939,21006,21018,21104,21174,21215,21575,21985,21986,22014,22053,22217,22249,22275,22375,22701,22827,23103,23111,23131]]],["+",[31,30,[[0,6,6,0,6,[[5,1,1,0,1],[12,1,1,1,2],[17,1,1,2,3],[18,3,3,3,6]]],[2,1,1,6,7,[[108,1,1,6,7]]],[4,3,2,7,9,[[172,1,1,7,8],[183,2,1,8,9]]],[5,1,1,9,10,[[208,1,1,9,10]]],[6,1,1,10,11,[[216,1,1,10,11]]],[7,1,1,11,12,[[235,1,1,11,12]]],[8,2,2,12,14,[[241,1,1,12,13],[261,1,1,13,14]]],[9,2,2,14,16,[[267,1,1,14,15],[277,1,1,15,16]]],[11,1,1,16,17,[[320,1,1,16,17]]],[12,1,1,17,18,[[357,1,1,17,18]]],[13,3,3,18,21,[[387,1,1,18,19],[390,1,1,19,20],[393,1,1,20,21]]],[18,1,1,21,22,[[583,1,1,21,22]]],[19,1,1,22,23,[[655,1,1,22,23]]],[23,3,3,23,26,[[757,1,1,23,24],[780,1,1,24,25],[795,1,1,25,26]]],[25,3,3,26,29,[[810,1,1,26,27],[821,1,1,27,28],[844,1,1,28,29]]],[38,1,1,29,30,[[927,1,1,29,30]]]],[149,328,452,470,471,486,3308,5446,5757,6459,6658,7196,7336,7920,8036,8260,9746,10927,11631,11700,11757,15674,17220,19280,19871,20237,20630,20912,21575,23131]]],["Corrupt",[1,1,[[18,1,1,0,1,[[530,1,1,0,1]]]],[14720]]],["Destroy",[2,2,[[8,1,1,0,1,[[261,1,1,0,1]]],[22,1,1,1,2,[[743,1,1,1,2]]]],[7914,18905]]],["battered",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8569]]],["corrupt",[8,8,[[0,2,2,0,2,[[5,2,2,0,2]]],[4,2,2,2,4,[[156,2,2,2,4]]],[18,1,1,4,5,[[491,1,1,4,5]]],[19,1,1,5,6,[[652,1,1,5,6]]],[25,2,2,6,8,[[821,1,1,6,7],[824,1,1,7,8]]]],[148,149,5020,5029,14081,17139,20939,21018]]],["corrupted",[10,10,[[1,2,2,0,2,[[57,1,1,0,1],[81,1,1,1,2]]],[4,2,2,2,4,[[161,1,1,2,3],[184,1,1,3,4]]],[6,1,1,4,5,[[212,1,1,4,5]]],[25,2,2,5,7,[[817,1,1,5,6],[829,1,1,6,7]]],[27,1,1,7,8,[[870,1,1,7,8]]],[35,1,1,8,9,[[908,1,1,8,9]]],[38,1,1,9,10,[[926,1,1,9,10]]]],[1734,2445,5169,5763,6564,20809,21174,22217,22827,23111]]],["corrupters",[2,2,[[22,1,1,0,1,[[679,1,1,0,1]]],[23,1,1,1,2,[[750,1,1,1,2]]]],[17658,19117]]],["corrupting",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22053]]],["destroy",[51,48,[[0,8,8,0,8,[[5,2,2,0,2],[8,2,2,2,4],[17,3,3,4,7],[18,1,1,7,8]]],[3,1,1,8,9,[[148,1,1,8,9]]],[4,4,4,9,13,[[156,1,1,9,10],[161,1,1,10,11],[162,1,1,11,12],[172,1,1,12,13]]],[6,1,1,13,14,[[216,1,1,13,14]]],[8,1,1,14,15,[[258,1,1,14,15]]],[9,3,3,15,18,[[280,1,1,15,16],[286,1,1,16,17],[290,1,1,17,18]]],[11,3,2,18,20,[[325,1,1,18,19],[330,2,1,19,20]]],[12,1,1,20,21,[[358,1,1,20,21]]],[13,4,4,21,25,[[378,2,2,21,23],[391,1,1,23,24],[401,1,1,24,25]]],[22,6,5,25,30,[[689,1,1,25,26],[714,2,1,26,27],[729,1,1,27,28],[743,2,2,28,30]]],[23,9,9,30,39,[[749,1,1,30,31],[750,1,1,31,32],[755,1,1,32,33],[759,2,2,33,35],[792,1,1,35,36],[793,1,1,36,37],[795,2,2,37,39]]],[24,1,1,39,40,[[798,1,1,39,40]]],[25,4,4,40,44,[[806,1,1,40,41],[823,1,1,41,42],[827,1,1,42,43],[831,1,1,43,44]]],[26,4,3,44,47,[[857,3,2,44,46],[858,1,1,46,47]]],[27,1,1,47,48,[[872,1,1,47,48]]]],[150,154,216,220,452,455,456,470,4733,5035,5183,5196,5447,6659,7820,8367,8574,8708,9894,10049,10949,11444,11449,11720,11987,17893,18340,18686,18905,18922,19068,19094,19245,19318,19321,20098,20136,20223,20232,20340,20562,21006,21104,21215,21985,21986,22014,22249]]],["destroyed",[16,16,[[6,3,3,0,3,[[230,3,3,0,3]]],[9,1,1,3,4,[[290,1,1,3,4]]],[11,1,1,4,5,[[331,1,1,4,5]]],[12,1,1,5,6,[[358,1,1,5,6]]],[13,2,2,6,8,[[400,1,1,6,7],[402,1,1,7,8]]],[18,2,2,8,10,[[555,2,2,8,10]]],[22,2,2,10,12,[[692,1,1,10,11],[715,1,1,11,12]]],[23,1,1,12,13,[[756,1,1,12,13]]],[24,2,2,13,15,[[798,2,2,13,15]]],[27,1,1,15,16,[[874,1,1,15,16]]]],[7079,7089,7096,8708,10073,10949,11944,12012,15151,15158,17948,18364,19259,20337,20338,22275]]],["destroyer",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]]],[1839,19034]]],["destroyers",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19461]]],["destroyeth",[2,2,[[19,2,2,0,2,[[633,1,1,0,1],[638,1,1,1,2]]]],[16572,16697]]],["destroying",[4,4,[[12,2,2,0,2,[[358,2,2,0,2]]],[23,2,2,2,4,[[746,1,1,2,3],[795,1,1,3,4]]]],[10946,10949,18995,20213]]],["destruction",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11748]]],["down",[1,1,[[6,1,1,0,1,[[230,1,1,0,1]]]],[7075]]],["lose",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17052]]],["mar",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19275]]],["marred",[3,3,[[23,2,2,0,2,[[757,1,1,0,1],[762,1,1,1,2]]],[33,1,1,2,3,[[901,1,1,2,3]]]],[19273,19388,22701]]],["off",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22375]]],["perish",[1,1,[[1,1,1,0,1,[[70,1,1,0,1]]]],[2103]]],["spilled",[1,1,[[0,1,1,0,1,[[37,1,1,0,1]]]],[1128]]],["spoilers",[2,2,[[8,2,2,0,2,[[248,1,1,0,1],[249,1,1,1,2]]]],[7502,7523]]],["thing",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23103]]],["waster",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18739]]]]},{"k":"H7844","v":[["*",[3,2,[[26,3,2,0,2,[[851,1,1,0,1],[855,2,1,1,2]]]],[21767,21909]]],["corrupt",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21767]]],["fault",[2,1,[[26,2,1,0,1,[[855,2,1,0,1]]]],[21909]]]]},{"k":"H7845","v":[["*",[23,23,[[17,7,7,0,7,[[444,1,1,0,1],[452,1,1,1,2],[468,5,5,2,7]]],[18,9,9,7,16,[[484,1,1,7,8],[486,1,1,8,9],[493,1,1,9,10],[507,1,1,10,11],[512,1,1,11,12],[526,1,1,12,13],[532,1,1,13,14],[571,1,1,14,15],[580,1,1,15,16]]],[19,1,1,16,17,[[653,1,1,16,17]]],[22,2,2,17,19,[[716,1,1,17,18],[729,1,1,18,19]]],[25,3,3,19,22,[[820,2,2,19,21],[829,1,1,21,22]]],[31,1,1,22,23,[[890,1,1,22,23]]]],[13082,13274,13668,13672,13674,13678,13680,14010,14036,14102,14328,14417,14657,14755,15444,15553,17168,18407,18687,20885,20889,21165,22554]]],["+",[3,3,[[18,1,1,0,1,[[580,1,1,0,1]]],[22,1,1,1,2,[[716,1,1,1,2]]],[31,1,1,2,3,[[890,1,1,2,3]]]],[15553,18407,22554]]],["corruption",[3,3,[[17,1,1,0,1,[[452,1,1,0,1]]],[18,2,2,1,3,[[493,1,1,1,2],[526,1,1,2,3]]]],[13274,14102,14657]]],["destruction",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14755]]],["ditch",[2,2,[[17,1,1,0,1,[[444,1,1,0,1]]],[18,1,1,1,2,[[484,1,1,1,2]]]],[13082,14010]]],["grave",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13672]]],["pit",[13,13,[[17,4,4,0,4,[[468,4,4,0,4]]],[18,4,4,4,8,[[486,1,1,4,5],[507,1,1,5,6],[512,1,1,6,7],[571,1,1,7,8]]],[19,1,1,8,9,[[653,1,1,8,9]]],[22,1,1,9,10,[[729,1,1,9,10]]],[25,3,3,10,13,[[820,2,2,10,12],[829,1,1,12,13]]]],[13668,13674,13678,13680,14036,14328,14417,15444,17168,18687,20885,20889,21165]]]]},{"k":"H7846","v":[["revolters",[1,1,[[27,1,1,0,1,[[866,1,1,0,1]]]],[22154]]]]},{"k":"H7847","v":[["*",[6,6,[[3,4,4,0,4,[[121,4,4,0,4]]],[19,2,2,4,6,[[631,1,1,4,5],[634,1,1,5,6]]]],[3804,3811,3812,3821,16505,16600]]],["aside",[4,4,[[3,4,4,0,4,[[121,4,4,0,4]]]],[3804,3811,3812,3821]]],["decline",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16600]]],["turn",[1,1,[[19,1,1,0,1,[[631,1,1,0,1]]]],[16505]]]]},{"k":"H7848","v":[["*",[28,28,[[1,26,26,0,26,[[74,5,5,0,5],[75,4,4,5,9],[76,2,2,9,11],[79,2,2,11,13],[84,2,2,13,15],[85,3,3,15,18],[86,6,6,18,24],[87,2,2,24,26]]],[4,1,1,26,27,[[162,1,1,26,27]]],[22,1,1,27,28,[[719,1,1,27,28]]]],[2200,2205,2208,2218,2223,2250,2261,2267,2272,2273,2278,2383,2387,2538,2555,2586,2597,2602,2605,2608,2614,2619,2629,2632,2634,2639,5189,18470]]],["shittim",[27,27,[[1,26,26,0,26,[[74,5,5,0,5],[75,4,4,5,9],[76,2,2,9,11],[79,2,2,11,13],[84,2,2,13,15],[85,3,3,15,18],[86,6,6,18,24],[87,2,2,24,26]]],[4,1,1,26,27,[[162,1,1,26,27]]]],[2200,2205,2208,2218,2223,2250,2261,2267,2272,2273,2278,2383,2387,2538,2555,2586,2597,2602,2605,2608,2614,2619,2629,2632,2634,2639,5189]]],["tree",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18470]]]]},{"k":"H7849","v":[["*",[6,5,[[3,2,1,0,1,[[127,2,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]],[17,1,1,2,3,[[447,1,1,2,3]]],[18,1,1,3,4,[[565,1,1,3,4]]],[23,1,1,4,5,[[752,1,1,4,5]]]],[4056,8468,13151,15317,19155]]],["+",[2,1,[[3,2,1,0,1,[[127,2,1,0,1]]]],[4056]]],["enlargeth",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13151]]],["out",[1,1,[[18,1,1,0,1,[[565,1,1,0,1]]]],[15317]]],["spread",[2,2,[[9,1,1,0,1,[[283,1,1,0,1]]],[23,1,1,1,2,[[752,1,1,1,2]]]],[8468,19155]]]]},{"k":"H7850","v":[["scourges",[1,1,[[5,1,1,0,1,[[209,1,1,0,1]]]],[6473]]]]},{"k":"H7851","v":[["*",[5,5,[[3,1,1,0,1,[[141,1,1,0,1]]],[5,2,2,1,3,[[188,1,1,1,2],[189,1,1,2,3]]],[28,1,1,3,4,[[878,1,1,3,4]]],[32,1,1,4,5,[[898,1,1,4,5]]]],[4472,5870,5894,22361,22653]]],["+",[1,1,[[5,1,1,0,1,[[189,1,1,0,1]]]],[5894]]],["Shittim",[4,4,[[3,1,1,0,1,[[141,1,1,0,1]]],[5,1,1,1,2,[[188,1,1,1,2]]],[28,1,1,2,3,[[878,1,1,2,3]]],[32,1,1,3,4,[[898,1,1,3,4]]]],[4472,5870,22361,22653]]]]},{"k":"H7852","v":[["*",[6,6,[[0,3,3,0,3,[[26,1,1,0,1],[48,1,1,1,2],[49,1,1,2,3]]],[17,2,2,3,5,[[451,1,1,3,4],[465,1,1,4,5]]],[18,1,1,5,6,[[532,1,1,5,6]]]],[768,1496,1521,13247,13578,14735]]],["+",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[768]]],["against",[1,1,[[17,1,1,0,1,[[465,1,1,0,1]]]],[13578]]],["hate",[2,2,[[0,1,1,0,1,[[49,1,1,0,1]]],[18,1,1,1,2,[[532,1,1,1,2]]]],[1521,14735]]],["hated",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1496]]],["hateth",[1,1,[[17,1,1,0,1,[[451,1,1,0,1]]]],[13247]]]]},{"k":"H7853","v":[["*",[6,6,[[18,5,5,0,5,[[515,1,1,0,1],[548,1,1,1,2],[586,3,3,2,5]]],[37,1,1,5,6,[[913,1,1,5,6]]]],[14510,14989,15759,15775,15784,22913]]],["adversaries",[5,5,[[18,5,5,0,5,[[515,1,1,0,1],[548,1,1,1,2],[586,3,3,2,5]]]],[14510,14989,15759,15775,15784]]],["resist",[1,1,[[37,1,1,0,1,[[913,1,1,0,1]]]],[22913]]]]},{"k":"H7854","v":[["*",[27,23,[[3,2,2,0,2,[[138,2,2,0,2]]],[8,1,1,2,3,[[264,1,1,2,3]]],[9,1,1,3,4,[[285,1,1,3,4]]],[10,4,4,4,8,[[295,1,1,4,5],[301,3,3,5,8]]],[12,1,1,8,9,[[358,1,1,8,9]]],[17,14,11,9,20,[[436,7,5,9,14],[437,7,6,14,20]]],[18,1,1,20,21,[[586,1,1,20,21]]],[37,3,2,21,23,[[913,3,2,21,23]]]],[4397,4407,7971,8533,8882,9122,9131,9133,10935,12875,12876,12877,12878,12881,12892,12893,12894,12895,12897,12898,15761,22913,22914]]],["+",[2,2,[[10,1,1,0,1,[[301,1,1,0,1]]],[17,1,1,1,2,[[437,1,1,1,2]]]],[9131,12898]]],["Satan",[18,14,[[12,1,1,0,1,[[358,1,1,0,1]]],[17,13,10,1,11,[[436,7,5,1,6],[437,6,5,6,11]]],[18,1,1,11,12,[[586,1,1,11,12]]],[37,3,2,12,14,[[913,3,2,12,14]]]],[10935,12875,12876,12877,12878,12881,12892,12893,12894,12895,12897,15761,22913,22914]]],["adversaries",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8533]]],["adversary",[5,5,[[3,1,1,0,1,[[138,1,1,0,1]]],[8,1,1,1,2,[[264,1,1,1,2]]],[10,3,3,2,5,[[295,1,1,2,3],[301,2,2,3,5]]]],[4397,7971,8882,9122,9133]]],["withstand",[1,1,[[3,1,1,0,1,[[138,1,1,0,1]]]],[4407]]]]},{"k":"H7855","v":[["accusation",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12116]]]]},{"k":"H7856","v":[["Sitnah",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[713]]]]},{"k":"H7857","v":[["*",[31,30,[[2,3,3,0,3,[[95,1,1,0,1],[104,2,2,1,3]]],[10,1,1,3,4,[[312,1,1,3,4]]],[13,1,1,4,5,[[398,1,1,4,5]]],[17,1,1,5,6,[[449,1,1,5,6]]],[18,4,4,6,10,[[546,2,2,6,8],[555,1,1,8,9],[601,1,1,9,10]]],[21,1,1,10,11,[[678,1,1,10,11]]],[22,9,9,11,20,[[686,1,1,11,12],[688,1,1,12,13],[706,4,4,13,17],[708,1,1,17,18],[721,1,1,18,19],[744,1,1,19,20]]],[23,3,2,20,22,[[752,1,1,20,21],[791,2,1,21,22]]],[25,4,4,22,26,[[814,2,2,22,24],[817,1,1,24,25],[839,1,1,25,26]]],[26,4,4,26,30,[[860,4,4,26,30]]]],[2877,3179,3180,9518,11879,13200,14937,14950,15133,16106,17647,17815,17872,18166,18179,18181,18182,18245,18507,18934,19159,20075,20719,20721,20771,21447,22046,22058,22062,22076]]],["+",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9518]]],["away",[2,2,[[17,1,1,0,1,[[449,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[13200,20771]]],["drown",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17647]]],["flowing",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18934]]],["overflow",[10,10,[[18,2,2,0,2,[[546,2,2,0,2]]],[22,4,4,2,6,[[686,1,1,2,3],[688,1,1,3,4],[706,1,1,4,5],[721,1,1,5,6]]],[23,1,1,6,7,[[791,1,1,6,7]]],[26,3,3,7,10,[[860,3,3,7,10]]]],[14937,14950,17815,17872,18181,18507,20075,22046,22062,22076]]],["overflowed",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15133]]],["overflowing",[8,8,[[22,4,4,0,4,[[706,3,3,0,3],[708,1,1,3,4]]],[23,1,1,4,5,[[791,1,1,4,5]]],[25,3,3,5,8,[[814,2,2,5,7],[839,1,1,7,8]]]],[18166,18179,18182,18245,20075,20719,20721,21447]]],["overflown",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22058]]],["overwhelmed",[1,1,[[18,1,1,0,1,[[601,1,1,0,1]]]],[16106]]],["ran",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11879]]],["rinsed",[3,3,[[2,3,3,0,3,[[95,1,1,0,1],[104,2,2,1,3]]]],[2877,3179,3180]]],["rusheth",[1,1,[[23,1,1,0,1,[[752,1,1,0,1]]]],[19159]]]]},{"k":"H7858","v":[["*",[6,6,[[17,1,1,0,1,[[473,1,1,0,1]]],[18,1,1,1,2,[[509,1,1,1,2]]],[19,1,1,2,3,[[654,1,1,2,3]]],[26,2,2,3,5,[[858,1,1,3,4],[860,1,1,4,5]]],[33,1,1,5,6,[[900,1,1,5,6]]]],[13818,14361,17173,22014,22058,22692]]],["flood",[3,3,[[26,2,2,0,2,[[858,1,1,0,1],[860,1,1,1,2]]],[33,1,1,2,3,[[900,1,1,2,3]]]],[22014,22058,22692]]],["floods",[1,1,[[18,1,1,0,1,[[509,1,1,0,1]]]],[14361]]],["outrageous",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17173]]],["waters",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13818]]]]},{"k":"H7859","v":[["side",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21938]]]]},{"k":"H7860","v":[["*",[25,25,[[1,5,5,0,5,[[54,5,5,0,5]]],[3,1,1,5,6,[[127,1,1,5,6]]],[4,7,7,6,13,[[153,1,1,6,7],[168,1,1,7,8],[172,3,3,8,11],[181,1,1,11,12],[183,1,1,12,13]]],[5,5,5,13,18,[[187,1,1,13,14],[189,1,1,14,15],[194,1,1,15,16],[209,1,1,16,17],[210,1,1,17,18]]],[12,3,3,18,21,[[360,1,1,18,19],[363,1,1,19,20],[364,1,1,20,21]]],[13,3,3,21,24,[[385,1,1,21,22],[392,1,1,22,23],[400,1,1,23,24]]],[19,1,1,24,25,[[633,1,1,24,25]]]],[1638,1642,1646,1647,1651,4040,4907,5360,5432,5435,5436,5689,5756,5861,5895,6035,6462,6477,10987,11106,11110,11587,11743,11946,16547]]],["officers",[23,23,[[1,5,5,0,5,[[54,5,5,0,5]]],[3,1,1,5,6,[[127,1,1,5,6]]],[4,7,7,6,13,[[153,1,1,6,7],[168,1,1,7,8],[172,3,3,8,11],[181,1,1,11,12],[183,1,1,12,13]]],[5,5,5,13,18,[[187,1,1,13,14],[189,1,1,14,15],[194,1,1,15,16],[209,1,1,16,17],[210,1,1,17,18]]],[12,3,3,18,21,[[360,1,1,18,19],[363,1,1,19,20],[364,1,1,20,21]]],[13,2,2,21,23,[[385,1,1,21,22],[400,1,1,22,23]]]],[1638,1642,1646,1647,1651,4040,4907,5360,5432,5435,5436,5689,5756,5861,5895,6035,6462,6477,10987,11106,11110,11587,11946]]],["overseer",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16547]]],["ruler",[1,1,[[13,1,1,0,1,[[392,1,1,0,1]]]],[11743]]]]},{"k":"H7861","v":[["Shitrai",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11138]]]]},{"k":"H7862","v":[["*",[3,3,[[18,2,2,0,2,[[545,1,1,0,1],[553,1,1,1,2]]],[22,1,1,2,3,[[696,1,1,2,3]]]],[14929,15092,18004]]],["present",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18004]]],["presents",[2,2,[[18,2,2,0,2,[[545,1,1,0,1],[553,1,1,1,2]]]],[14929,15092]]]]},{"k":"H7863","v":[["excellency",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13332]]]]},{"k":"H7864","v":[]},{"k":"H7865","v":[["Sion",[1,1,[[4,1,1,0,1,[[156,1,1,0,1]]]],[5052]]]]},{"k":"H7866","v":[["Shion",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6340]]]]},{"k":"H7867","v":[["grayheaded",[2,2,[[8,1,1,0,1,[[247,1,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]]],[7462,13213]]]]},{"k":"H7868","v":[["elders",[5,5,[[14,5,5,0,5,[[407,2,2,0,2],[408,3,3,2,5]]]],[12139,12143,12158,12159,12165]]]]},{"k":"H7869","v":[["+",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9222]]]]},{"k":"H7870","v":[["captivity",[1,1,[[18,1,1,0,1,[[603,1,1,0,1]]]],[16116]]]]},{"k":"H7871","v":[["lay",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8543]]]]},{"k":"H7872","v":[["*",[19,19,[[0,5,5,0,5,[[14,1,1,0,1],[24,1,1,1,2],[41,1,1,2,3],[43,2,2,3,5]]],[2,1,1,5,6,[[108,1,1,5,6]]],[4,1,1,6,7,[[184,1,1,6,7]]],[6,1,1,7,8,[[218,1,1,7,8]]],[7,1,1,8,9,[[235,1,1,8,9]]],[10,2,2,9,11,[[292,2,2,9,11]]],[12,1,1,11,12,[[366,1,1,11,12]]],[17,1,1,12,13,[[476,1,1,12,13]]],[18,2,2,13,15,[[548,1,1,13,14],[569,1,1,14,15]]],[19,2,2,15,17,[[643,1,1,15,16],[647,1,1,16,17]]],[22,1,1,17,18,[[724,1,1,17,18]]],[27,1,1,18,19,[[868,1,1,18,19]]]],[375,666,1290,1353,1355,3313,5783,6751,7205,8776,8779,11192,13920,14994,15425,16871,16983,18590,22187]]],["+",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11192]]],["age",[5,5,[[0,2,2,0,2,[[14,1,1,0,1],[24,1,1,1,2]]],[6,1,1,2,3,[[218,1,1,2,3]]],[7,1,1,3,4,[[235,1,1,3,4]]],[18,1,1,4,5,[[569,1,1,4,5]]]],[375,666,6751,7205,15425]]],["grayheaded",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14994]]],["hairs",[6,6,[[0,3,3,0,3,[[41,1,1,0,1],[43,2,2,1,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[22,1,1,4,5,[[724,1,1,4,5]]],[27,1,1,5,6,[[868,1,1,5,6]]]],[1290,1353,1355,5783,18590,22187]]],["head",[4,4,[[2,1,1,0,1,[[108,1,1,0,1]]],[10,2,2,1,3,[[292,2,2,1,3]]],[19,1,1,3,4,[[647,1,1,3,4]]]],[3313,8776,8779,16983]]],["hoary",[2,2,[[17,1,1,0,1,[[476,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]]],[13920,16871]]]]},{"k":"H7873","v":[["pursuing",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9368]]]]},{"k":"H7874","v":[["plaister",[2,2,[[4,2,2,0,2,[[179,2,2,0,2]]]],[5587,5589]]]]},{"k":"H7875","v":[["*",[4,4,[[4,2,2,0,2,[[179,2,2,0,2]]],[22,1,1,2,3,[[711,1,1,2,3]]],[29,1,1,3,4,[[880,1,1,3,4]]]],[5587,5589,18291,22380]]],["lime",[2,2,[[22,1,1,0,1,[[711,1,1,0,1]]],[29,1,1,1,2,[[880,1,1,1,2]]]],[18291,22380]]],["plaister",[2,2,[[4,2,2,0,2,[[179,2,2,0,2]]]],[5587,5589]]]]},{"k":"H7876","v":[["unmindful",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5776]]]]},{"k":"H7877","v":[["Shiza",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10715]]]]},{"k":"H7878","v":[["*",[20,20,[[6,1,1,0,1,[[215,1,1,0,1]]],[12,1,1,1,2,[[353,1,1,1,2]]],[17,2,2,2,4,[[442,1,1,2,3],[447,1,1,3,4]]],[18,14,14,4,18,[[532,1,1,4,5],[546,1,1,5,6],[554,3,3,6,9],[582,1,1,9,10],[596,6,6,10,16],[620,1,1,16,17],[622,1,1,17,18]]],[19,1,1,18,19,[[633,1,1,18,19]]],[22,1,1,19,20,[[731,1,1,19,20]]]],[6633,10829,13019,13136,14749,14947,15096,15099,15105,15608,15913,15921,15925,15946,15976,16046,16298,16325,16562,18719]]],["Speak",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6633]]],["commune",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15099]]],["complain",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13019]]],["complained",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15096]]],["declare",[1,1,[[22,1,1,0,1,[[731,1,1,0,1]]]],[18719]]],["meditate",[5,5,[[18,5,5,0,5,[[596,5,5,0,5]]]],[15913,15921,15946,15976,16046]]],["muse",[1,1,[[18,1,1,0,1,[[620,1,1,0,1]]]],[16298]]],["pray",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14749]]],["speak",[3,3,[[17,1,1,0,1,[[447,1,1,0,1]]],[18,2,2,1,3,[[546,1,1,1,2],[622,1,1,2,3]]]],[13136,14947,16325]]],["talk",[5,5,[[12,1,1,0,1,[[353,1,1,0,1]]],[18,3,3,1,4,[[554,1,1,1,2],[582,1,1,2,3],[596,1,1,3,4]]],[19,1,1,4,5,[[633,1,1,4,5]]]],[10829,15105,15608,15925,16562]]]]},{"k":"H7879","v":[["*",[13,13,[[8,1,1,0,1,[[236,1,1,0,1]]],[10,1,1,1,2,[[308,1,1,1,2]]],[11,1,1,2,3,[[321,1,1,2,3]]],[17,5,5,3,8,[[442,1,1,3,4],[444,1,1,4,5],[445,1,1,5,6],[456,1,1,6,7],[458,1,1,7,8]]],[18,4,4,8,12,[[532,1,1,8,9],[541,1,1,9,10],[581,1,1,10,11],[619,1,1,11,12]]],[19,1,1,12,13,[[650,1,1,12,13]]]],[7228,9368,9767,13021,13078,13087,13359,13421,14734,14851,15605,16288,17073]]],["babbling",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17073]]],["communication",[1,1,[[11,1,1,0,1,[[321,1,1,0,1]]]],[9767]]],["complaint",[8,8,[[8,1,1,0,1,[[236,1,1,0,1]]],[17,5,5,1,6,[[442,1,1,1,2],[444,1,1,2,3],[445,1,1,3,4],[456,1,1,4,5],[458,1,1,5,6]]],[18,2,2,6,8,[[532,1,1,6,7],[619,1,1,7,8]]]],[7228,13021,13078,13087,13359,13421,14734,16288]]],["meditation",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15605]]],["prayer",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14851]]],["talking",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9368]]]]},{"k":"H7880","v":[["*",[4,4,[[0,2,2,0,2,[[1,1,1,0,1],[20,1,1,1,2]]],[17,2,2,2,4,[[465,2,2,2,4]]]],[35,528,13561,13564]]],["bushes",[2,2,[[17,2,2,0,2,[[465,2,2,0,2]]]],[13561,13564]]],["plant",[1,1,[[0,1,1,0,1,[[1,1,1,0,1]]]],[35]]],["shrubs",[1,1,[[0,1,1,0,1,[[20,1,1,0,1]]]],[528]]]]},{"k":"H7881","v":[["*",[3,3,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,2,2,1,3,[[596,2,2,1,3]]]],[13207,15995,15997]]],["meditation",[2,2,[[18,2,2,0,2,[[596,2,2,0,2]]]],[15995,15997]]],["prayer",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13207]]]]},{"k":"H7882","v":[["*",[2,2,[[18,2,2,0,2,[[534,1,1,0,1],[596,1,1,1,2]]]],[14774,15983]]],["pit",[1,1,[[18,1,1,0,1,[[534,1,1,0,1]]]],[14774]]],["pits",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15983]]]]},{"k":"H7883","v":[["*",[4,4,[[5,1,1,0,1,[[199,1,1,0,1]]],[12,1,1,1,2,[[350,1,1,1,2]]],[22,1,1,2,3,[[701,1,1,2,3]]],[23,1,1,3,4,[[746,1,1,3,4]]]],[6157,10765,18080,18983]]],["Shihor",[1,1,[[12,1,1,0,1,[[350,1,1,0,1]]]],[10765]]],["Sihor",[3,3,[[5,1,1,0,1,[[199,1,1,0,1]]],[22,1,1,1,2,[[701,1,1,1,2]]],[23,1,1,2,3,[[746,1,1,2,3]]]],[6157,18080,18983]]]]},{"k":"H7884","v":[["Shihorlibnath",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6347]]]]},{"k":"H7885","v":[["oars",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18300]]]]},{"k":"H7886","v":[["Shiloh",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1483]]]]},{"k":"H7887","v":[["*",[32,30,[[5,8,8,0,8,[[204,4,4,0,4],[205,1,1,4,5],[207,1,1,5,6],[208,2,2,6,8]]],[6,5,4,8,12,[[228,1,1,8,9],[231,4,3,9,12]]],[8,10,9,12,21,[[236,3,3,12,15],[237,1,1,15,16],[238,2,1,16,17],[239,3,3,17,20],[249,1,1,20,21]]],[10,3,3,21,24,[[292,1,1,21,22],[304,2,2,22,24]]],[18,1,1,24,25,[[555,1,1,24,25]]],[23,5,5,25,30,[[751,2,2,25,27],[770,2,2,27,29],[785,1,1,29,30]]]],[6294,6301,6302,6303,6372,6383,6435,6438,7024,7114,7121,7123,7215,7221,7236,7254,7297,7300,7301,7309,7511,8797,9220,9222,15173,19131,19133,19578,19581,19962]]],["+",[3,3,[[5,1,1,0,1,[[208,1,1,0,1]]],[8,1,1,1,2,[[239,1,1,1,2]]],[23,1,1,2,3,[[785,1,1,2,3]]]],[6435,7300,19962]]],["Shiloh",[29,27,[[5,7,7,0,7,[[204,4,4,0,4],[205,1,1,4,5],[207,1,1,5,6],[208,1,1,6,7]]],[6,5,4,7,11,[[228,1,1,7,8],[231,4,3,8,11]]],[8,9,8,11,19,[[236,3,3,11,14],[237,1,1,14,15],[238,2,1,15,16],[239,2,2,16,18],[249,1,1,18,19]]],[10,3,3,19,22,[[292,1,1,19,20],[304,2,2,20,22]]],[18,1,1,22,23,[[555,1,1,22,23]]],[23,4,4,23,27,[[751,2,2,23,25],[770,2,2,25,27]]]],[6294,6301,6302,6303,6372,6383,6438,7024,7114,7121,7123,7215,7221,7236,7254,7297,7301,7309,7511,8797,9220,9222,15173,19131,19133,19578,19581]]]]},{"k":"H7888","v":[["*",[6,6,[[10,3,3,0,3,[[301,1,1,0,1],[302,1,1,1,2],[305,1,1,2,3]]],[12,1,1,3,4,[[346,1,1,3,4]]],[13,2,2,4,6,[[375,1,1,4,5],[376,1,1,5,6]]]],[9137,9166,9278,10620,11393,11410]]],["Shilonite",[5,5,[[10,3,3,0,3,[[301,1,1,0,1],[302,1,1,1,2],[305,1,1,2,3]]],[13,2,2,3,5,[[375,1,1,3,4],[376,1,1,4,5]]]],[9137,9166,9278,11393,11410]]],["Shilonites",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10620]]]]},{"k":"H7889","v":[["Shimon",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10405]]]]},{"k":"H7890","v":[["piss",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]]],[10051,18342]]]]},{"k":"H7891","v":[["*",[85,77,[[1,3,2,0,2,[[64,3,2,0,2]]],[3,1,1,2,3,[[137,1,1,2,3]]],[6,2,2,3,5,[[215,2,2,3,5]]],[8,1,1,5,6,[[253,1,1,5,6]]],[9,2,1,6,7,[[285,2,1,6,7]]],[10,1,1,7,8,[[300,1,1,7,8]]],[12,8,7,8,15,[[343,1,1,8,9],[346,1,1,9,10],[352,4,3,10,13],[353,2,2,13,15]]],[13,9,8,15,23,[[371,2,2,15,17],[375,1,1,17,18],[386,1,1,18,19],[389,1,1,19,20],[395,1,1,20,21],[401,3,2,21,23]]],[14,6,5,23,28,[[404,4,3,23,26],[409,1,1,26,27],[412,1,1,27,28]]],[15,17,16,28,44,[[419,5,4,28,32],[422,2,2,32,34],[423,2,2,34,36],[424,6,6,36,42],[425,2,2,42,44]]],[18,26,25,44,69,[[490,1,1,44,45],[498,1,1,45,46],[504,1,1,46,47],[510,1,1,47,48],[534,1,1,48,49],[536,1,1,49,50],[542,1,1,50,51],[545,3,3,51,54],[564,1,1,54,55],[566,1,1,55,56],[573,3,2,56,58],[575,1,1,58,59],[578,1,1,59,60],[581,1,1,60,61],[582,1,1,61,62],[583,1,1,62,63],[585,1,1,63,64],[614,2,2,64,66],[615,1,1,66,67],[621,1,1,67,68],[626,1,1,68,69]]],[19,1,1,69,70,[[652,1,1,69,70]]],[20,2,1,70,71,[[660,2,1,70,71]]],[22,3,3,71,74,[[683,1,1,71,72],[704,1,1,72,73],[720,1,1,73,74]]],[23,1,1,74,75,[[764,1,1,74,75]]],[25,1,1,75,76,[[841,1,1,75,76]]],[35,1,1,76,77,[[907,1,1,76,77]]]],[1921,1941,4357,6624,6626,7682,8546,9091,10487,10648,10807,10810,10818,10829,10843,11280,11281,11375,11608,11669,11819,11981,11991,12068,12092,12097,12180,12276,12421,12464,12487,12493,12577,12588,12610,12611,12652,12653,12666,12669,12670,12671,12676,12681,14080,14204,14291,14369,14775,14806,14873,14904,14925,14932,15308,15327,15466,15467,15491,15514,15604,15608,15663,15743,16225,16226,16236,16314,16386,17133,17341,17740,18131,18490,19435,21521,22819]]],["+",[2,2,[[3,1,1,0,1,[[137,1,1,0,1]]],[18,1,1,1,2,[[614,1,1,1,2]]]],[4357,16226]]],["Sing",[12,12,[[1,1,1,0,1,[[64,1,1,0,1]]],[12,2,2,1,3,[[353,2,2,1,3]]],[18,7,7,3,10,[[510,1,1,3,4],[545,2,2,4,6],[573,1,1,6,7],[582,1,1,7,8],[614,1,1,8,9],[626,1,1,9,10]]],[22,1,1,10,11,[[720,1,1,10,11]]],[23,1,1,11,12,[[764,1,1,11,12]]]],[1941,10829,10843,14369,14904,14932,15467,15608,16225,16386,18490,19435]]],["men",[3,3,[[9,1,1,0,1,[[285,1,1,0,1]]],[13,1,1,1,2,[[401,1,1,1,2]]],[14,1,1,2,3,[[404,1,1,2,3]]]],[8546,11991,12092]]],["sang",[4,4,[[1,1,1,0,1,[[64,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[13,1,1,2,3,[[395,1,1,2,3]]],[18,1,1,3,4,[[583,1,1,3,4]]]],[1921,6624,11819,15663]]],["sing",[19,18,[[1,1,1,0,1,[[64,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[18,15,14,2,16,[[490,1,1,2,3],[498,1,1,3,4],[504,1,1,4,5],[534,1,1,5,6],[536,1,1,6,7],[542,1,1,7,8],[566,1,1,8,9],[573,2,1,9,10],[575,1,1,10,11],[578,1,1,11,12],[581,1,1,12,13],[585,1,1,13,14],[615,1,1,14,15],[621,1,1,15,16]]],[22,1,1,16,17,[[683,1,1,16,17]]],[35,1,1,17,18,[[907,1,1,17,18]]]],[1921,6626,14080,14204,14291,14775,14806,14873,15327,15466,15491,15514,15604,15743,16236,16314,17740,22819]]],["singer",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10487]]],["singers",[36,34,[[10,1,1,0,1,[[300,1,1,0,1]]],[12,5,4,1,5,[[346,1,1,1,2],[352,4,3,2,5]]],[13,6,6,5,11,[[371,2,2,5,7],[375,1,1,7,8],[386,1,1,8,9],[389,1,1,9,10],[401,1,1,10,11]]],[14,4,4,11,15,[[404,2,2,11,13],[409,1,1,13,14],[412,1,1,14,15]]],[15,15,15,15,30,[[419,3,3,15,18],[422,2,2,18,20],[423,2,2,20,22],[424,6,6,22,28],[425,2,2,28,30]]],[18,2,2,30,32,[[545,1,1,30,31],[564,1,1,31,32]]],[20,2,1,32,33,[[660,2,1,32,33]]],[25,1,1,33,34,[[841,1,1,33,34]]]],[9091,10648,10807,10810,10818,11280,11281,11375,11608,11669,11981,12068,12097,12180,12276,12421,12464,12493,12577,12588,12610,12611,12652,12653,12666,12669,12670,12671,12676,12681,14925,15308,17341,21521]]],["singeth",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17133]]],["singing",[3,2,[[8,1,1,0,1,[[253,1,1,0,1]]],[15,2,1,1,2,[[419,2,1,1,2]]]],[7682,12487]]],["sung",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18131]]],["women",[3,3,[[9,1,1,0,1,[[285,1,1,0,1]]],[13,1,1,1,2,[[401,1,1,1,2]]],[14,1,1,2,3,[[404,1,1,2,3]]]],[8546,11991,12092]]]]},{"k":"H7892","v":[["*",[59,56,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[3,1,1,2,3,[[137,1,1,2,3]]],[4,6,5,3,8,[[183,5,4,3,7],[184,1,1,7,8]]],[6,1,1,8,9,[[215,1,1,8,9]]],[9,1,1,9,10,[[288,1,1,9,10]]],[10,1,1,10,11,[[294,1,1,10,11]]],[12,7,7,11,18,[[343,2,2,11,13],[350,1,1,13,14],[352,1,1,14,15],[353,1,1,15,16],[362,2,2,16,18]]],[13,7,7,18,25,[[371,1,1,18,19],[373,1,1,19,20],[389,2,2,20,22],[395,2,2,22,24],[400,1,1,24,25]]],[15,3,3,25,28,[[424,3,3,25,28]]],[18,12,11,28,39,[[505,1,1,28,29],[510,1,1,29,30],[517,1,1,30,31],[519,1,1,31,32],[546,1,1,32,33],[573,1,1,33,34],[575,1,1,34,35],[614,3,2,35,37],[621,1,1,37,38],[626,1,1,38,39]]],[19,1,1,39,40,[[652,1,1,39,40]]],[20,2,2,40,42,[[665,1,1,40,41],[670,1,1,41,42]]],[21,2,1,42,43,[[671,2,1,42,43]]],[22,7,7,43,50,[[683,1,1,43,44],[701,2,2,44,46],[702,1,1,46,47],[704,1,1,47,48],[708,1,1,48,49],[720,1,1,49,50]]],[25,2,2,50,52,[[827,1,1,50,51],[834,1,1,51,52]]],[29,4,4,52,56,[[883,1,1,52,53],[884,1,1,53,54],[886,2,2,54,56]]]],[900,1921,4357,5747,5749,5750,5758,5802,6635,8603,8876,10485,10486,10768,10807,10862,11052,11053,11281,11330,11669,11674,11818,11819,11945,12651,12660,12670,14306,14369,14528,14563,14965,15466,15491,16225,16226,16314,16386,17133,17434,17527,17538,17740,18092,18093,18104,18131,18246,18490,21113,21312,22446,22455,22484,22491]]],["+",[3,2,[[18,3,2,0,2,[[505,1,1,0,1],[614,2,1,1,2]]]],[14306,16225]]],["musical",[2,2,[[12,1,1,0,1,[[353,1,1,0,1]]],[15,1,1,1,2,[[424,1,1,1,2]]]],[10862,12660]]],["musick",[7,7,[[12,1,1,0,1,[[352,1,1,0,1]]],[13,4,4,1,5,[[371,1,1,1,2],[373,1,1,2,3],[389,1,1,3,4],[400,1,1,4,5]]],[20,1,1,5,6,[[670,1,1,5,6]]],[29,1,1,6,7,[[884,1,1,6,7]]]],[10807,11281,11330,11669,11945,17527,22455]]],["sing",[1,1,[[22,1,1,0,1,[[701,1,1,0,1]]]],[18092]]],["singers",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11819]]],["singing",[4,4,[[12,2,2,0,2,[[343,1,1,0,1],[350,1,1,1,2]]],[13,1,1,2,3,[[389,1,1,2,3]]],[15,1,1,3,4,[[424,1,1,3,4]]]],[10486,10768,11674,12651]]],["song",[30,29,[[1,1,1,0,1,[[64,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[4,6,5,2,7,[[183,5,4,2,6],[184,1,1,6,7]]],[6,1,1,7,8,[[215,1,1,7,8]]],[9,1,1,8,9,[[288,1,1,8,9]]],[12,2,2,9,11,[[343,1,1,9,10],[362,1,1,10,11]]],[13,1,1,11,12,[[395,1,1,11,12]]],[18,9,9,12,21,[[510,1,1,12,13],[517,1,1,13,14],[519,1,1,14,15],[546,1,1,15,16],[573,1,1,16,17],[575,1,1,17,18],[614,1,1,18,19],[621,1,1,19,20],[626,1,1,20,21]]],[20,1,1,21,22,[[665,1,1,21,22]]],[21,1,1,22,23,[[671,1,1,22,23]]],[22,5,5,23,28,[[683,1,1,23,24],[702,1,1,24,25],[704,1,1,25,26],[708,1,1,26,27],[720,1,1,27,28]]],[25,1,1,28,29,[[834,1,1,28,29]]]],[1921,4357,5747,5749,5750,5758,5802,6635,8603,10485,11052,11818,14369,14528,14563,14965,15466,15491,16226,16314,16386,17434,17538,17740,18104,18131,18246,18490,21312]]],["songs",[11,11,[[0,1,1,0,1,[[30,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]],[12,1,1,2,3,[[362,1,1,2,3]]],[15,1,1,3,4,[[424,1,1,3,4]]],[19,1,1,4,5,[[652,1,1,4,5]]],[21,1,1,5,6,[[671,1,1,5,6]]],[22,1,1,6,7,[[701,1,1,6,7]]],[25,1,1,7,8,[[827,1,1,7,8]]],[29,3,3,8,11,[[883,1,1,8,9],[886,2,2,9,11]]]],[900,8876,11053,12670,17133,17538,18093,21113,22446,22484,22491]]]]},{"k":"H7893","v":[["marble",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11166]]]]},{"k":"H7894","v":[["Shisha",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8847]]]]},{"k":"H7895","v":[["Shishak",[7,6,[[10,2,2,0,2,[[301,1,1,0,1],[304,1,1,1,2]]],[13,5,4,2,6,[[378,5,4,2,6]]]],[9148,9243,11439,11442,11444,11446]]]]},{"k":"H7896","v":[["*",[83,80,[[0,8,7,0,7,[[2,1,1,0,1],[3,1,1,1,2],[29,2,1,2,3],[40,1,1,3,4],[45,1,1,4,5],[47,2,2,5,7]]],[1,8,7,7,14,[[56,1,1,7,8],[59,1,1,8,9],[70,3,2,9,11],[72,2,2,11,13],[82,1,1,13,14]]],[3,2,2,14,16,[[128,1,1,14,15],[140,1,1,15,16]]],[7,2,2,16,18,[[234,1,1,16,17],[235,1,1,17,18]]],[8,2,2,18,20,[[237,1,1,18,19],[239,1,1,19,20]]],[9,3,3,20,23,[[279,1,1,20,21],[285,1,1,21,22],[288,1,1,22,23]]],[10,1,1,23,24,[[301,1,1,23,24]]],[17,8,8,24,32,[[442,1,1,24,25],[444,1,1,25,26],[445,1,1,26,27],[449,1,1,27,28],[457,1,1,28,29],[465,1,1,29,30],[473,2,2,30,32]]],[18,30,30,32,62,[[480,1,1,32,33],[485,1,1,33,34],[486,1,1,34,35],[489,1,1,35,36],[490,1,1,36,37],[494,1,1,37,38],[495,1,1,38,39],[498,4,4,39,43],[522,1,1,43,44],[525,1,1,44,45],[539,1,1,45,46],[550,2,2,46,48],[560,2,2,48,50],[561,2,2,50,52],[565,2,2,52,54],[567,1,1,54,55],[578,1,1,55,56],[581,1,1,56,57],[587,1,1,57,58],[609,1,1,58,59],[616,1,1,59,60],[617,1,1,60,61],[618,1,1,61,62]]],[19,4,4,62,66,[[649,1,1,62,63],[651,1,1,63,64],[653,1,1,64,65],[654,1,1,65,66]]],[22,6,5,66,71,[[683,1,1,66,67],[693,1,1,67,68],[694,1,1,68,69],[700,2,1,69,70],[704,1,1,70,71]]],[23,7,7,71,78,[[746,1,1,71,72],[747,1,1,72,73],[757,1,1,73,74],[766,1,1,74,75],[775,1,1,75,76],[794,1,1,76,77],[795,1,1,77,78]]],[27,2,2,78,80,[[863,1,1,78,79],[867,1,1,79,80]]]],[70,104,870,1228,1390,1465,1468,1708,1778,2099,2107,2145,2175,2477,4070,4447,7187,7206,7248,7317,8337,8539,8614,9142,13025,13084,13106,13194,13413,13558,13804,13829,13963,14018,14041,14071,14076,14114,14129,14194,14197,14200,14203,14613,14647,14837,15038,15048,15252,15254,15262,15265,15314,15316,15386,15516,15591,15787,16162,16244,16268,16279,17032,17111,17165,17192,17745,17969,17972,18059,18131,18980,19021,19282,19460,19712,20169,20251,22108,22178]]],["+",[12,11,[[1,1,1,0,1,[[72,1,1,0,1]]],[8,1,1,1,2,[[239,1,1,1,2]]],[9,2,2,2,4,[[279,1,1,2,3],[285,1,1,3,4]]],[17,1,1,4,5,[[445,1,1,4,5]]],[18,1,1,5,6,[[525,1,1,5,6]]],[19,2,2,6,8,[[651,1,1,6,7],[654,1,1,7,8]]],[22,2,1,8,9,[[700,2,1,8,9]]],[23,2,2,9,11,[[794,1,1,9,10],[795,1,1,10,11]]]],[2175,7317,8337,8539,13106,14647,17111,17192,18059,20169,20251]]],["Make",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15252]]],["Put",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14041]]],["Set",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16279]]],["apply",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17032]]],["appoint",[2,2,[[17,1,1,0,1,[[449,1,1,0,1]]],[22,1,1,1,2,[[704,1,1,1,2]]]],[13194,18131]]],["appointed",[1,1,[[0,1,1,0,1,[[3,1,1,0,1]]]],[104]]],["bring",[1,1,[[22,1,1,0,1,[[693,1,1,0,1]]]],[17969]]],["laid",[8,7,[[0,2,2,0,2,[[47,2,2,0,2]]],[1,2,1,2,3,[[70,2,1,2,3]]],[7,2,2,3,5,[[234,1,1,3,4],[235,1,1,4,5]]],[18,2,2,5,7,[[565,1,1,5,6],[616,1,1,6,7]]]],[1465,1468,2107,7187,7206,15314,16244]]],["lay",[5,5,[[1,1,1,0,1,[[70,1,1,0,1]]],[3,1,1,1,2,[[128,1,1,1,2]]],[17,1,1,2,3,[[444,1,1,2,3]]],[18,1,1,3,4,[[561,1,1,3,4]]],[22,1,1,4,5,[[683,1,1,4,5]]]],[2099,4070,13084,15262,17745]]],["made",[5,5,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,3,3,1,4,[[495,1,1,1,2],[498,1,1,2,3],[565,1,1,3,4]]],[23,1,1,4,5,[[746,1,1,4,5]]]],[8614,14129,14197,15316,18980]]],["make",[10,10,[[10,1,1,0,1,[[301,1,1,0,1]]],[18,6,6,1,7,[[498,2,2,1,3],[522,1,1,3,4],[560,1,1,4,5],[561,1,1,5,6],[587,1,1,6,7]]],[22,1,1,7,8,[[694,1,1,7,8]]],[23,2,2,8,10,[[757,1,1,8,9],[766,1,1,9,10]]]],[9142,14200,14203,14613,15254,15265,15787,17972,19282,19460]]],["makest",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15591]]],["put",[10,9,[[0,4,3,0,3,[[2,1,1,0,1],[29,2,1,1,2],[45,1,1,2,3]]],[1,2,2,3,5,[[72,1,1,3,4],[82,1,1,4,5]]],[17,1,1,5,6,[[473,1,1,5,6]]],[18,2,2,6,8,[[485,1,1,6,7],[550,1,1,7,8]]],[23,1,1,8,9,[[747,1,1,8,9]]]],[70,870,1390,2145,2477,13829,14018,15048,19021]]],["set",[18,18,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,1,1,1,2,[[56,1,1,1,2]]],[3,1,1,2,3,[[140,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[17,2,2,4,6,[[442,1,1,4,5],[465,1,1,5,6]]],[18,9,9,6,15,[[480,1,1,6,7],[489,1,1,7,8],[494,1,1,8,9],[539,1,1,9,10],[550,1,1,10,11],[567,1,1,11,12],[578,1,1,12,13],[609,1,1,13,14],[617,1,1,14,15]]],[23,1,1,15,16,[[775,1,1,15,16]]],[27,2,2,16,18,[[863,1,1,16,17],[867,1,1,17,18]]]],[1228,1708,4447,7248,13025,13558,13963,14071,14114,14837,15038,15386,15516,16162,16268,19712,22108,22178]]],["settest",[1,1,[[18,1,1,0,1,[[498,1,1,0,1]]]],[14194]]],["shew",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1778]]],["stayed",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13804]]],["take",[1,1,[[18,1,1,0,1,[[490,1,1,0,1]]]],[14076]]],["up",[2,2,[[17,1,1,0,1,[[457,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]]],[13413,17165]]]]},{"k":"H7897","v":[["*",[2,2,[[18,1,1,0,1,[[550,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]]],[15026,16585]]],["attire",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16585]]],["garment",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15026]]]]},{"k":"H7898","v":[["thorns",[7,7,[[22,7,7,0,7,[[683,1,1,0,1],[685,3,3,1,4],[687,1,1,4,5],[688,1,1,5,6],[705,1,1,6,7]]]],[17745,17805,17806,17807,17847,17867,18155]]]]},{"k":"H7899","v":[["pricks",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4815]]]]},{"k":"H7900","v":[["tabernacle",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20338]]]]},{"k":"H7901","v":[["*",[210,192,[[0,21,18,0,18,[[18,8,5,0,5],[25,1,1,5,6],[27,2,2,6,8],[29,2,2,8,10],[33,2,2,10,12],[34,1,1,12,13],[38,4,4,13,17],[46,1,1,17,18]]],[1,3,3,18,21,[[71,3,3,18,21]]],[2,17,15,21,36,[[103,1,1,21,22],[104,8,6,22,28],[107,1,1,28,29],[108,1,1,29,30],[109,5,5,30,35],[115,1,1,35,36]]],[3,4,4,36,40,[[121,2,2,36,38],[139,1,1,38,39],[140,1,1,39,40]]],[4,17,15,40,55,[[158,1,1,40,41],[163,1,1,41,42],[174,7,5,42,47],[176,2,2,47,49],[179,4,4,49,53],[180,1,1,53,54],[183,1,1,54,55]]],[5,2,2,55,57,[[188,2,2,55,57]]],[6,2,2,57,59,[[215,1,1,57,58],[226,1,1,58,59]]],[7,8,5,59,64,[[234,8,5,59,64]]],[8,13,9,64,73,[[237,1,1,64,65],[238,8,6,65,71],[261,4,2,71,73]]],[9,18,18,73,91,[[270,2,2,73,75],[273,1,1,75,76],[274,1,1,76,77],[277,4,4,77,81],[278,4,4,81,85],[279,6,6,85,91]]],[10,21,20,91,111,[[291,2,2,91,93],[292,1,1,93,94],[293,3,2,94,96],[301,2,2,96,98],[304,2,2,98,100],[305,2,2,100,102],[306,2,2,102,104],[307,1,1,104,105],[309,2,2,105,107],[311,2,2,107,109],[312,2,2,109,111]]],[11,19,19,111,130,[[316,4,4,111,115],[320,1,1,115,116],[321,1,1,116,117],[322,1,1,117,118],[325,2,2,118,120],[326,3,3,120,123],[327,3,3,123,126],[328,1,1,126,127],[332,1,1,127,128],[333,1,1,128,129],[336,1,1,129,130]]],[13,12,12,130,142,[[375,1,1,130,131],[378,1,1,131,132],[380,1,1,132,133],[382,2,2,133,135],[387,1,1,135,136],[392,2,2,136,138],[393,1,1,138,139],[394,1,1,139,140],[398,1,1,140,141],[399,1,1,141,142]]],[17,11,11,142,153,[[438,1,1,142,143],[442,2,2,143,145],[446,1,1,145,146],[449,1,1,146,147],[455,1,1,147,148],[456,1,1,148,149],[462,1,1,149,150],[465,1,1,150,151],[473,1,1,151,152],[475,1,1,152,153]]],[18,6,6,153,159,[[480,1,1,153,154],[481,1,1,154,155],[518,1,1,155,156],[534,1,1,156,157],[545,1,1,157,158],[565,1,1,158,159]]],[19,8,6,159,165,[[630,2,1,159,160],[633,3,3,160,163],[650,2,1,163,164],[651,1,1,164,165]]],[20,2,2,165,167,[[660,1,1,165,166],[662,1,1,166,167]]],[22,6,6,167,173,[[692,2,2,167,169],[721,1,1,169,170],[728,1,1,170,171],[729,1,1,171,172],[734,1,1,172,173]]],[23,2,2,173,175,[[747,2,2,173,175]]],[24,1,1,175,176,[[798,1,1,175,176]]],[25,13,12,176,188,[[805,4,3,176,179],[824,1,1,179,180],[832,1,1,180,181],[833,7,7,181,188]]],[27,1,1,188,189,[[863,1,1,188,189]]],[29,1,1,189,190,[[884,1,1,189,190]]],[31,1,1,190,191,[[889,1,1,190,191]]],[32,1,1,191,192,[[899,1,1,191,192]]]],[461,489,490,491,492,702,784,786,845,846,982,987,1033,1156,1159,1161,1163,1450,2129,2132,2140,3158,3172,3186,3188,3192,3194,3201,3273,3301,3329,3330,3331,3336,3338,3530,3805,3811,4440,4455,5093,5227,5492,5493,5495,5498,5499,5537,5538,5605,5606,5607,5608,5641,5744,5870,5877,6650,6952,7176,7179,7180,7185,7186,7262,7278,7279,7281,7282,7285,7291,7910,7912,8125,8127,8192,8211,8263,8268,8270,8272,8289,8297,8302,8310,8322,8323,8325,8328,8331,8348,8719,8738,8780,8835,8836,9129,9151,9238,9249,9257,9273,9289,9311,9336,9392,9393,9455,9478,9520,9530,9614,9624,9635,9637,9751,9772,9828,9880,9884,9912,9918,9925,9932,9947,9963,9983,10119,10137,10208,11395,11453,11476,11522,11523,11625,11734,11755,11764,11791,11908,11928,12917,13012,13029,13126,13193,13337,13381,13500,13574,13830,13885,13962,13973,14550,14772,14913,15313,16479,16549,16550,16562,17078,17112,17356,17392,17936,17946,18522,18673,18693,18763,19004,19027,20353,20533,20535,20538,21015,21248,21267,21269,21275,21276,21277,21278,21280,22123,22454,22536,22669]]],["+",[8,7,[[0,2,2,0,2,[[33,1,1,0,1],[34,1,1,1,2]]],[2,2,1,2,3,[[104,2,1,2,3]]],[9,1,1,3,4,[[274,1,1,3,4]]],[10,1,1,4,5,[[293,1,1,4,5]]],[17,1,1,5,6,[[465,1,1,5,6]]],[32,1,1,6,7,[[899,1,1,6,7]]]],[987,1033,3192,8211,8835,13574,22669]]],["Lie",[3,3,[[0,2,2,0,2,[[38,2,2,0,2]]],[25,1,1,2,3,[[805,1,1,2,3]]]],[1156,1161,20533]]],["down",[44,39,[[0,4,4,0,4,[[18,3,3,0,3],[27,1,1,3,4]]],[2,1,1,4,5,[[115,1,1,4,5]]],[3,2,2,5,7,[[139,1,1,5,6],[140,1,1,6,7]]],[4,2,2,7,9,[[158,1,1,7,8],[163,1,1,8,9]]],[5,1,1,9,10,[[188,1,1,9,10]]],[6,1,1,10,11,[[215,1,1,10,11]]],[7,5,3,11,14,[[234,5,3,11,14]]],[8,7,5,14,19,[[238,7,5,14,19]]],[9,3,3,19,22,[[279,3,3,19,22]]],[10,2,2,22,24,[[309,1,1,22,23],[311,1,1,23,24]]],[17,5,5,24,29,[[442,1,1,24,25],[449,1,1,25,26],[455,1,1,26,27],[456,1,1,27,28],[462,1,1,28,29]]],[18,2,2,29,31,[[480,1,1,29,30],[481,1,1,30,31]]],[19,3,2,31,33,[[630,2,1,31,32],[650,1,1,32,33]]],[22,4,4,33,37,[[692,1,1,33,34],[721,1,1,34,35],[728,1,1,35,36],[734,1,1,36,37]]],[23,1,1,37,38,[[747,1,1,37,38]]],[27,1,1,38,39,[[863,1,1,38,39]]]],[461,490,492,784,3530,4440,4455,5093,5227,5877,6650,7176,7179,7185,7278,7279,7281,7282,7285,8322,8323,8325,9393,9455,13012,13193,13337,13381,13500,13962,13973,16479,17078,17936,18522,18673,18763,19027,22123]]],["laid",[8,7,[[10,3,2,0,2,[[293,2,1,0,1],[307,1,1,1,2]]],[11,2,2,2,4,[[316,2,2,2,4]]],[13,1,1,4,5,[[382,1,1,4,5]]],[25,2,2,5,7,[[833,2,2,5,7]]]],[8836,9336,9624,9635,11523,21267,21280]]],["lain",[1,1,[[3,1,1,0,1,[[121,1,1,0,1]]]],[3811]]],["lay",[30,28,[[0,4,4,0,4,[[18,3,3,0,3],[29,1,1,3,4]]],[4,3,3,4,7,[[174,3,3,4,7]]],[6,1,1,7,8,[[226,1,1,7,8]]],[7,2,2,8,10,[[234,2,2,8,10]]],[8,6,4,10,14,[[237,1,1,10,11],[238,1,1,11,12],[261,4,2,12,14]]],[9,7,7,14,21,[[270,2,2,14,16],[277,1,1,16,17],[278,3,3,17,20],[279,1,1,20,21]]],[10,2,2,21,23,[[309,1,1,21,22],[311,1,1,22,23]]],[11,3,3,23,26,[[316,2,2,23,25],[321,1,1,25,26]]],[25,1,1,26,27,[[824,1,1,26,27]]],[31,1,1,27,28,[[889,1,1,27,28]]]],[490,491,492,846,5492,5495,5499,6952,7180,7186,7262,7291,7910,7912,8125,8127,8263,8289,8302,8310,8348,9392,9478,9614,9637,9772,21015,22536]]],["lie",[38,38,[[0,6,6,0,6,[[18,2,2,0,2],[29,1,1,2,3],[38,2,2,3,5],[46,1,1,5,6]]],[1,1,1,6,7,[[71,1,1,6,7]]],[2,6,6,7,13,[[104,1,1,7,8],[107,1,1,8,9],[109,4,4,9,13]]],[3,1,1,13,14,[[121,1,1,13,14]]],[4,3,3,14,17,[[174,3,3,14,17]]],[7,1,1,17,18,[[234,1,1,17,18]]],[9,4,4,18,22,[[277,2,2,18,20],[278,1,1,20,21],[279,1,1,21,22]]],[10,1,1,22,23,[[291,1,1,22,23]]],[18,2,2,23,25,[[534,1,1,23,24],[565,1,1,24,25]]],[22,2,2,25,27,[[692,1,1,25,26],[729,1,1,26,27]]],[24,1,1,27,28,[[798,1,1,27,28]]],[25,9,9,28,37,[[805,3,3,28,31],[832,1,1,31,32],[833,5,5,32,37]]],[29,1,1,37,38,[[884,1,1,37,38]]]],[489,491,845,1159,1163,1450,2129,3186,3273,3330,3331,3336,3338,3805,5493,5495,5498,7176,8270,8272,8297,8328,8719,14772,15313,17946,18693,20353,20533,20535,20538,21248,21269,21275,21276,21277,21278,22454]]],["lien",[3,3,[[0,1,1,0,1,[[25,1,1,0,1]]],[18,1,1,1,2,[[545,1,1,1,2]]],[23,1,1,2,3,[[747,1,1,2,3]]]],[702,14913,19004]]],["liest",[1,1,[[0,1,1,0,1,[[27,1,1,0,1]]]],[786]]],["lieth",[16,16,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,8,8,1,9,[[103,1,1,1,2],[104,5,5,2,7],[108,1,1,7,8],[109,1,1,8,9]]],[4,4,4,9,13,[[179,4,4,9,13]]],[17,1,1,13,14,[[475,1,1,13,14]]],[18,1,1,14,15,[[518,1,1,14,15]]],[19,1,1,15,16,[[650,1,1,15,16]]]],[2132,3158,3172,3188,3192,3194,3201,3301,3329,5605,5606,5607,5608,13885,14550,17078]]],["lodged",[1,1,[[5,1,1,0,1,[[188,1,1,0,1]]]],[5870]]],["lying",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5492]]],["rest",[2,2,[[17,1,1,0,1,[[446,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[13126,17356]]],["sleep",[10,10,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,3,3,1,4,[[176,2,2,1,3],[183,1,1,3,4]]],[9,1,1,4,5,[[273,1,1,4,5]]],[10,1,1,5,6,[[291,1,1,5,6]]],[17,1,1,6,7,[[442,1,1,6,7]]],[19,3,3,7,10,[[633,2,2,7,9],[651,1,1,9,10]]]],[2140,5537,5538,5744,8192,8738,13029,16549,16550,17112]]],["sleepest",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16562]]],["slept",[37,37,[[9,1,1,0,1,[[277,1,1,0,1]]],[10,11,11,1,12,[[292,1,1,1,2],[301,2,2,2,4],[304,2,2,4,6],[305,2,2,6,8],[306,2,2,8,10],[312,2,2,10,12]]],[11,14,14,12,26,[[320,1,1,12,13],[322,1,1,13,14],[325,2,2,14,16],[326,3,3,16,19],[327,3,3,19,22],[328,1,1,22,23],[332,1,1,23,24],[333,1,1,24,25],[336,1,1,25,26]]],[13,11,11,26,37,[[375,1,1,26,27],[378,1,1,27,28],[380,1,1,28,29],[382,1,1,29,30],[387,1,1,30,31],[392,2,2,31,33],[393,1,1,33,34],[394,1,1,34,35],[398,1,1,35,36],[399,1,1,36,37]]]],[8268,8780,9129,9151,9238,9249,9257,9273,9289,9311,9520,9530,9751,9828,9880,9884,9912,9918,9925,9932,9947,9963,9983,10119,10137,10208,11395,11453,11476,11522,11625,11734,11755,11764,11791,11908,11928]]],["stay",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13830]]],["still",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12917]]],["together",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17392]]],["with",[3,3,[[0,1,1,0,1,[[33,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[9,1,1,2,3,[[279,1,1,2,3]]]],[982,5641,8331]]]]},{"k":"H7902","v":[["*",[9,9,[[1,2,2,0,2,[[65,2,2,0,2]]],[2,6,6,2,8,[[104,4,4,2,6],[108,1,1,6,7],[111,1,1,7,8]]],[3,1,1,8,9,[[121,1,1,8,9]]]],[1960,1961,3184,3185,3186,3200,3301,3373,3805]]],["+",[5,5,[[1,1,1,0,1,[[65,1,1,0,1]]],[2,3,3,1,4,[[104,1,1,1,2],[108,1,1,2,3],[111,1,1,3,4]]],[3,1,1,4,5,[[121,1,1,4,5]]]],[1960,3200,3301,3373,3805]]],["copulation",[3,3,[[2,3,3,0,3,[[104,3,3,0,3]]]],[3184,3185,3186]]],["lay",[1,1,[[1,1,1,0,1,[[65,1,1,0,1]]]],[1961]]]]},{"k":"H7903","v":[["+",[4,4,[[2,3,3,0,3,[[107,2,2,0,2],[109,1,1,2,3]]],[3,1,1,3,4,[[121,1,1,3,4]]]],[3271,3274,3333,3812]]]]},{"k":"H7904","v":[["morning",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19066]]]]},{"k":"H7905","v":[["irons",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13895]]]]},{"k":"H7906","v":[["Sechu",[1,1,[[8,1,1,0,1,[[254,1,1,0,1]]]],[7728]]]]},{"k":"H7907","v":[["heart",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13829]]]]},{"k":"H7908","v":[["*",[3,3,[[18,1,1,0,1,[[512,1,1,0,1]]],[22,2,2,1,3,[[725,2,2,1,3]]]],[14422,18607,18608]]],["children",[2,2,[[22,2,2,0,2,[[725,2,2,0,2]]]],[18607,18608]]],["spoiling",[1,1,[[18,1,1,0,1,[[512,1,1,0,1]]]],[14422]]]]},{"k":"H7909","v":[["*",[7,7,[[9,1,1,0,1,[[283,1,1,0,1]]],[19,1,1,1,2,[[644,1,1,1,2]]],[21,2,2,2,4,[[674,1,1,2,3],[676,1,1,3,4]]],[22,1,1,4,5,[[727,1,1,4,5]]],[23,1,1,5,6,[[762,1,1,5,6]]],[27,1,1,6,7,[[874,1,1,6,7]]]],[8457,16885,17584,17620,18657,19405,22274]]],["barren",[2,2,[[21,2,2,0,2,[[674,1,1,0,1],[676,1,1,1,2]]]],[17584,17620]]],["bereaved",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22274]]],["children",[2,2,[[22,1,1,0,1,[[727,1,1,0,1]]],[23,1,1,1,2,[[762,1,1,1,2]]]],[18657,19405]]],["robbed",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16885]]],["whelps",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8457]]]]},{"k":"H7910","v":[["*",[13,13,[[8,2,2,0,2,[[236,1,1,0,1],[260,1,1,1,2]]],[10,2,2,2,4,[[306,1,1,2,3],[310,1,1,3,4]]],[17,1,1,4,5,[[447,1,1,4,5]]],[18,1,1,5,6,[[584,1,1,5,6]]],[19,1,1,6,7,[[653,1,1,6,7]]],[22,4,4,7,11,[[697,1,1,7,8],[702,1,1,8,9],[706,2,2,9,11]]],[23,1,1,11,12,[[767,1,1,11,12]]],[28,1,1,12,13,[[876,1,1,12,13]]]],[7225,7897,9292,9424,13153,15726,17150,18018,18115,18165,18167,19493,22296]]],["drunk",[2,2,[[10,2,2,0,2,[[306,1,1,0,1],[310,1,1,1,2]]]],[9292,9424]]],["drunkard",[2,2,[[19,1,1,0,1,[[653,1,1,0,1]]],[22,1,1,1,2,[[702,1,1,1,2]]]],[17150,18115]]],["drunkards",[3,3,[[22,2,2,0,2,[[706,2,2,0,2]]],[28,1,1,2,3,[[876,1,1,2,3]]]],[18165,18167,22296]]],["drunken",[5,5,[[8,2,2,0,2,[[236,1,1,0,1],[260,1,1,1,2]]],[17,1,1,2,3,[[447,1,1,2,3]]],[22,1,1,3,4,[[697,1,1,3,4]]],[23,1,1,4,5,[[767,1,1,4,5]]]],[7225,7897,13153,18018,19493]]],["man",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15726]]]]},{"k":"H7911","v":[["*",[102,95,[[0,3,3,0,3,[[26,1,1,0,1],[39,1,1,1,2],[40,1,1,2,3]]],[4,14,13,3,16,[[156,3,3,3,6],[158,1,1,6,7],[160,4,3,7,10],[161,1,1,10,11],[176,1,1,11,12],[177,1,1,12,13],[178,1,1,13,14],[183,1,1,14,15],[184,1,1,15,16]]],[6,1,1,16,17,[[213,1,1,16,17]]],[8,2,2,17,19,[[236,1,1,17,18],[247,1,1,18,19]]],[11,1,1,19,20,[[329,1,1,19,20]]],[17,7,7,20,27,[[443,1,1,20,21],[444,1,1,21,22],[446,1,1,22,23],[454,1,1,23,24],[459,1,1,24,25],[463,1,1,25,26],[474,1,1,26,27]]],[18,33,32,27,59,[[486,2,2,27,29],[487,2,2,29,31],[490,1,1,31,32],[508,1,1,32,33],[519,1,1,33,34],[521,3,3,34,37],[522,1,1,37,38],[527,1,1,38,39],[536,1,1,39,40],[551,2,2,40,42],[554,1,1,42,43],[555,2,2,43,45],[579,1,1,45,46],[580,1,1,46,47],[583,2,2,47,49],[596,9,9,49,58],[614,2,1,58,59]]],[19,5,5,59,64,[[629,1,1,59,60],[630,1,1,60,61],[631,1,1,61,62],[658,2,2,62,64]]],[20,3,3,64,67,[[660,1,1,64,65],[666,1,1,65,66],[667,1,1,66,67]]],[22,10,8,67,75,[[695,1,1,67,68],[701,2,2,68,70],[727,4,2,70,72],[729,1,1,72,73],[732,1,1,73,74],[743,1,1,74,75]]],[23,13,11,75,86,[[746,2,1,75,76],[747,1,1,76,77],[757,1,1,77,78],[762,1,1,78,79],[764,1,1,79,80],[767,3,2,80,82],[774,1,1,82,83],[788,1,1,83,84],[794,2,2,84,86]]],[24,2,2,86,88,[[798,1,1,86,87],[801,1,1,87,88]]],[25,2,2,88,90,[[823,1,1,88,89],[824,1,1,89,90]]],[27,5,4,90,94,[[863,1,1,90,91],[865,2,1,91,92],[869,1,1,92,93],[874,1,1,93,94]]],[29,1,1,94,95,[[886,1,1,94,95]]]],[772,1195,1225,5013,5027,5035,5098,5148,5151,5156,5164,5544,5566,5579,5749,5776,6575,7223,7469,10021,13042,13078,13124,13311,13456,13508,13849,14033,14039,14052,14053,14075,14343,14564,14588,14591,14595,14607,14690,14801,15067,15071,15102,15120,15124,15525,15551,15664,15672,15914,15959,15981,15991,16007,16037,16039,16051,16074,16227,16450,16456,16495,17289,17291,17349,17468,17480,17993,18092,18093,18650,18651,18686,18727,18913,18997,19023,19291,19399,19433,19511,19524,19681,20019,20171,20172,20338,20462,20988,21042,22118,22139,22208,22272,22488]]],["+",[16,15,[[0,1,1,0,1,[[26,1,1,0,1]]],[4,8,7,1,8,[[156,3,3,1,4],[158,1,1,4,5],[160,4,3,5,8]]],[6,1,1,8,9,[[213,1,1,8,9]]],[8,2,2,9,11,[[236,1,1,9,10],[247,1,1,10,11]]],[23,3,3,11,14,[[747,1,1,11,12],[767,1,1,12,13],[788,1,1,13,14]]],[27,1,1,14,15,[[869,1,1,14,15]]]],[772,5013,5027,5035,5098,5148,5151,5156,6575,7223,7469,19023,19511,20019,22208]]],["Forget",[1,1,[[18,1,1,0,1,[[551,1,1,0,1]]]],[15071]]],["forgat",[5,5,[[0,1,1,0,1,[[39,1,1,0,1]]],[18,3,3,1,4,[[555,1,1,1,2],[583,2,2,2,4]]],[27,1,1,4,5,[[863,1,1,4,5]]]],[1195,15124,15664,15672,22118]]],["forget",[38,35,[[4,2,2,0,2,[[161,1,1,0,1],[177,1,1,1,2]]],[11,1,1,2,3,[[329,1,1,2,3]]],[17,4,4,3,7,[[443,1,1,3,4],[444,1,1,4,5],[446,1,1,5,6],[459,1,1,6,7]]],[18,18,17,7,24,[[487,1,1,7,8],[490,1,1,8,9],[522,1,1,9,10],[527,1,1,10,11],[536,1,1,11,12],[551,1,1,12,13],[555,1,1,13,14],[579,1,1,14,15],[580,1,1,15,16],[596,7,7,16,23],[614,2,1,23,24]]],[19,4,4,24,28,[[630,1,1,24,25],[631,1,1,25,26],[658,2,2,26,28]]],[22,4,2,28,30,[[727,3,1,28,29],[732,1,1,29,30]]],[23,2,2,30,32,[[746,1,1,30,31],[767,1,1,31,32]]],[24,1,1,32,33,[[801,1,1,32,33]]],[27,1,1,33,34,[[865,1,1,33,34]]],[29,1,1,34,35,[[886,1,1,34,35]]]],[5164,5566,10021,13042,13078,13124,13456,14053,14075,14607,14690,14801,15067,15120,15525,15551,15914,15981,15991,16007,16039,16051,16074,16227,16456,16495,17289,17291,18651,18727,18997,19511,20462,22139,22488]]],["forgettest",[2,2,[[18,1,1,0,1,[[521,1,1,0,1]]],[22,1,1,1,2,[[729,1,1,1,2]]]],[14595,18686]]],["forgetteth",[3,3,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,1,1,1,2,[[486,1,1,1,2]]],[19,1,1,2,3,[[629,1,1,2,3]]]],[13849,14033,16450]]],["forgot",[1,1,[[4,1,1,0,1,[[176,1,1,0,1]]]],[5544]]],["forgotten",[36,36,[[0,1,1,0,1,[[40,1,1,0,1]]],[4,3,3,1,4,[[178,1,1,1,2],[183,1,1,2,3],[184,1,1,3,4]]],[17,2,2,4,6,[[454,1,1,4,5],[463,1,1,5,6]]],[18,9,9,6,15,[[486,1,1,6,7],[487,1,1,7,8],[508,1,1,8,9],[519,1,1,9,10],[521,2,2,10,12],[554,1,1,12,13],[596,2,2,13,15]]],[20,3,3,15,18,[[660,1,1,15,16],[666,1,1,16,17],[667,1,1,17,18]]],[22,5,5,18,23,[[695,1,1,18,19],[701,2,2,19,21],[727,1,1,21,22],[743,1,1,22,23]]],[23,8,8,23,31,[[746,1,1,23,24],[757,1,1,24,25],[762,1,1,25,26],[764,1,1,26,27],[767,1,1,27,28],[774,1,1,28,29],[794,2,2,29,31]]],[24,1,1,31,32,[[798,1,1,31,32]]],[25,2,2,32,34,[[823,1,1,32,33],[824,1,1,33,34]]],[27,2,2,34,36,[[865,1,1,34,35],[874,1,1,35,36]]]],[1225,5579,5749,5776,13311,13508,14039,14052,14343,14564,14588,14591,15102,15959,16037,17349,17468,17480,17993,18092,18093,18650,18913,18997,19291,19399,19433,19524,19681,20171,20172,20338,20988,21042,22139,22272]]]]},{"k":"H7912","v":[["*",[18,15,[[14,4,4,0,4,[[406,2,2,0,2],[408,1,1,2,3],[409,1,1,3,4]]],[26,14,11,4,15,[[851,2,2,4,6],[854,4,4,6,10],[855,8,5,10,15]]]],[12125,12129,12153,12189,21783,21793,21885,21886,21888,21901,21909,21910,21916,21927,21928]]],["find",[6,4,[[14,2,2,0,2,[[406,1,1,0,1],[409,1,1,1,2]]],[26,4,2,2,4,[[855,4,2,2,4]]]],[12125,12189,21909,21910]]],["found",[12,12,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]],[26,10,10,2,12,[[851,2,2,2,4],[854,4,4,4,8],[855,4,4,8,12]]]],[12129,12153,21783,21793,21885,21886,21888,21901,21909,21916,21927,21928]]]]},{"k":"H7913","v":[["*",[2,2,[[18,1,1,0,1,[[486,1,1,0,1]]],[22,1,1,1,2,[[743,1,1,1,2]]]],[14038,18908]]],["+",[1,1,[[22,1,1,0,1,[[743,1,1,0,1]]]],[18908]]],["forget",[1,1,[[18,1,1,0,1,[[486,1,1,0,1]]]],[14038]]]]},{"k":"H7914","v":[["pictures",[1,1,[[22,1,1,0,1,[[680,1,1,0,1]]]],[17701]]]]},{"k":"H7915","v":[["knife",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17046]]]]},{"k":"H7916","v":[["*",[17,17,[[1,2,2,0,2,[[61,1,1,0,1],[71,1,1,1,2]]],[2,6,6,2,8,[[108,1,1,2,3],[111,1,1,3,4],[114,4,4,4,8]]],[4,2,2,8,10,[[167,1,1,8,9],[176,1,1,9,10]]],[17,3,3,10,13,[[442,2,2,10,12],[449,1,1,12,13]]],[22,2,2,13,15,[[694,1,1,13,14],[699,1,1,14,15]]],[23,1,1,15,16,[[790,1,1,15,16]]],[38,1,1,16,17,[[927,1,1,16,17]]]],[1861,2128,3294,3379,3475,3509,3519,3522,5337,5539,13009,13010,13187,17983,18051,20066,23125]]],["hired",[2,2,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,1,1,1,2,[[108,1,1,1,2]]]],[2128,3294]]],["hireling",[6,6,[[17,3,3,0,3,[[442,2,2,0,2],[449,1,1,2,3]]],[22,2,2,3,5,[[694,1,1,3,4],[699,1,1,4,5]]],[38,1,1,5,6,[[927,1,1,5,6]]]],[13009,13010,13187,17983,18051,23125]]],["men",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20066]]],["servant",[8,8,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,5,5,1,6,[[111,1,1,1,2],[114,4,4,2,6]]],[4,2,2,6,8,[[167,1,1,6,7],[176,1,1,7,8]]]],[1861,3379,3475,3509,3519,3522,5337,5539]]]]},{"k":"H7917","v":[["hired",[1,1,[[22,1,1,0,1,[[685,1,1,0,1]]]],[17802]]]]},{"k":"H7918","v":[["*",[5,5,[[0,1,1,0,1,[[7,1,1,0,1]]],[3,1,1,1,2,[[133,1,1,1,2]]],[16,2,2,2,4,[[427,1,1,2,3],[432,1,1,3,4]]],[23,1,1,4,5,[[749,1,1,4,5]]]],[184,4249,12725,12817,19084]]],["appeased",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12725]]],["asswaged",[1,1,[[0,1,1,0,1,[[7,1,1,0,1]]]],[184]]],["cease",[1,1,[[3,1,1,0,1,[[133,1,1,0,1]]]],[4249]]],["pacified",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12817]]],["setteth",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19084]]]]},{"k":"H7919","v":[["*",[63,63,[[0,2,2,0,2,[[2,1,1,0,1],[47,1,1,1,2]]],[4,2,2,2,4,[[181,1,1,2,3],[184,1,1,3,4]]],[5,2,2,4,6,[[187,2,2,4,6]]],[8,4,4,6,10,[[253,4,4,6,10]]],[10,1,1,10,11,[[292,1,1,10,11]]],[11,1,1,11,12,[[330,1,1,11,12]]],[12,1,1,12,13,[[365,1,1,12,13]]],[13,1,1,13,14,[[396,1,1,13,14]]],[15,2,2,14,16,[[420,1,1,14,15],[421,1,1,15,16]]],[17,3,3,16,19,[[457,1,1,16,17],[469,2,2,17,19]]],[18,12,12,19,31,[[479,1,1,19,20],[491,1,1,20,21],[509,1,1,21,22],[513,1,1,22,23],[518,1,1,23,24],[524,1,1,24,25],[530,1,1,25,26],[541,1,1,26,27],[571,1,1,27,28],[578,1,1,28,29],[583,1,1,29,30],[596,1,1,30,31]]],[19,13,13,31,44,[[628,1,1,31,32],[637,2,2,32,34],[641,1,1,34,35],[642,1,1,35,36],[643,2,2,36,38],[644,2,2,38,40],[646,1,1,40,41],[648,3,3,41,44]]],[22,3,3,44,47,[[719,1,1,44,45],[722,1,1,45,46],[730,1,1,46,47]]],[23,6,6,47,53,[[747,1,1,47,48],[753,1,1,48,49],[754,1,1,49,50],[764,1,1,50,51],[767,1,1,51,52],[794,1,1,52,53]]],[26,9,9,53,62,[[850,2,2,53,55],[858,3,3,55,58],[860,2,2,58,60],[861,2,2,60,62]]],[29,1,1,62,63,[[883,1,1,62,63]]]],[61,1465,5688,5787,5858,5859,7681,7690,7691,7706,8773,10031,11162,11849,12506,12531,13391,13710,13718,13955,14082,14363,14441,14543,14632,14721,14859,15439,15515,15658,15997,16403,16661,16675,16807,16831,16860,16863,16875,16881,16939,16995,16996,17000,18471,18551,18709,19017,19199,19222,19433,19489,20175,21741,21754,22001,22010,22013,22069,22071,22084,22091,22436]]],["+",[7,7,[[0,1,1,0,1,[[47,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[15,1,1,3,4,[[420,1,1,3,4]]],[18,1,1,4,5,[[518,1,1,4,5]]],[19,1,1,5,6,[[643,1,1,5,6]]],[22,1,1,6,7,[[722,1,1,6,7]]]],[1465,5688,7691,12506,14543,16860,18551]]],["consider",[2,2,[[17,1,1,0,1,[[469,1,1,0,1]]],[18,1,1,1,2,[[541,1,1,1,2]]]],[13710,14859]]],["considereth",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16996]]],["expert",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20175]]],["instruct",[2,2,[[15,1,1,0,1,[[421,1,1,0,1]]],[18,1,1,1,2,[[509,1,1,1,2]]]],[12531,14363]]],["instructed",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[16995]]],["prosper",[5,5,[[5,1,1,0,1,[[187,1,1,0,1]]],[10,1,1,1,2,[[292,1,1,1,2]]],[23,3,3,2,5,[[754,1,1,2,3],[764,1,1,3,4],[767,1,1,4,5]]]],[5858,8773,19222,19433,19489]]],["prospered",[1,1,[[11,1,1,0,1,[[330,1,1,0,1]]]],[10031]]],["prospereth",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16881]]],["prudent",[2,2,[[19,1,1,0,1,[[646,1,1,0,1]]],[29,1,1,1,2,[[883,1,1,1,2]]]],[16939,22436]]],["prudently",[1,1,[[22,1,1,0,1,[[730,1,1,0,1]]]],[18709]]],["skilful",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21741]]],["skill",[2,2,[[26,2,2,0,2,[[850,1,1,0,1],[858,1,1,1,2]]]],[21754,22010]]],["success",[1,1,[[5,1,1,0,1,[[187,1,1,0,1]]]],[5859]]],["taught",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11849]]],["teacheth",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16863]]],["understand",[7,7,[[12,1,1,0,1,[[365,1,1,0,1]]],[18,2,2,1,3,[[491,1,1,1,2],[530,1,1,2,3]]],[22,1,1,3,4,[[719,1,1,3,4]]],[26,3,3,4,7,[[858,2,2,4,6],[860,1,1,6,7]]]],[11162,14082,14721,18471,22001,22013,22069]]],["understandeth",[1,1,[[23,1,1,0,1,[[753,1,1,0,1]]]],[19199]]],["understanding",[5,5,[[18,2,2,0,2,[[524,1,1,0,1],[596,1,1,1,2]]],[19,1,1,2,3,[[648,1,1,2,3]]],[23,1,1,3,4,[[747,1,1,3,4]]],[26,1,1,4,5,[[860,1,1,4,5]]]],[14632,15997,17000,19017,22071]]],["understood",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]]],[5787,15658]]],["wisdom",[2,2,[[17,1,1,0,1,[[469,1,1,0,1]]],[19,1,1,1,2,[[628,1,1,1,2]]]],[13718,16403]]],["wise",[12,12,[[0,1,1,0,1,[[2,1,1,0,1]]],[17,1,1,1,2,[[457,1,1,1,2]]],[18,3,3,2,5,[[479,1,1,2,3],[513,1,1,3,4],[571,1,1,4,5]]],[19,5,5,5,10,[[637,2,2,5,7],[641,1,1,7,8],[642,1,1,8,9],[644,1,1,9,10]]],[26,2,2,10,12,[[861,2,2,10,12]]]],[61,13391,13955,14441,15439,16661,16675,16807,16831,16875,22084,22091]]],["wisely",[4,4,[[8,3,3,0,3,[[253,3,3,0,3]]],[18,1,1,3,4,[[578,1,1,3,4]]]],[7681,7690,7706,15515]]]]},{"k":"H7920","v":[["+",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21941]]]]},{"k":"H7921","v":[["*",[23,21,[[0,5,4,0,4,[[26,1,1,0,1],[30,1,1,1,2],[41,1,1,2,3],[42,2,1,3,4]]],[1,1,1,4,5,[[72,1,1,4,5]]],[2,1,1,5,6,[[115,1,1,5,6]]],[4,1,1,6,7,[[184,1,1,6,7]]],[8,2,1,7,8,[[250,2,1,7,8]]],[11,2,2,8,10,[[314,2,2,8,10]]],[17,1,1,10,11,[[456,1,1,10,11]]],[23,1,1,11,12,[[759,1,1,11,12]]],[24,1,1,12,13,[[797,1,1,12,13]]],[25,5,5,13,18,[[806,1,1,13,14],[815,1,1,14,15],[837,3,3,15,18]]],[27,2,2,18,20,[[870,2,2,18,20]]],[38,1,1,20,21,[[927,1,1,20,21]]]],[772,911,1288,1304,2170,3546,5783,7593,9570,9572,13365,19322,20330,20563,20746,21371,21372,21373,22220,22222,23131]]],["+",[4,4,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[17,1,1,2,3,[[456,1,1,2,3]]],[25,1,1,3,4,[[837,1,1,3,4]]]],[2170,3546,13365,21372]]],["barren",[2,2,[[11,2,2,0,2,[[314,2,2,0,2]]]],[9570,9572]]],["bereave",[5,5,[[23,1,1,0,1,[[759,1,1,0,1]]],[25,3,3,1,4,[[806,1,1,1,2],[837,2,2,2,4]]],[27,1,1,4,5,[[870,1,1,4,5]]]],[19322,20563,21371,21373,22220]]],["bereaved",[3,2,[[0,3,2,0,2,[[41,1,1,0,1],[42,2,1,1,2]]]],[1288,1304]]],["bereaveth",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20330]]],["childless",[2,1,[[8,2,1,0,1,[[250,2,1,0,1]]]],[7593]]],["deprived",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[772]]],["destroy",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5783]]],["miscarrying",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22222]]],["spoil",[1,1,[[25,1,1,0,1,[[815,1,1,0,1]]]],[20746]]],["time",[1,1,[[38,1,1,0,1,[[927,1,1,0,1]]]],[23131]]],["young",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[911]]]]},{"k":"H7922","v":[["*",[16,16,[[8,1,1,0,1,[[260,1,1,0,1]]],[12,2,2,1,3,[[359,1,1,1,2],[363,1,1,2,3]]],[13,2,2,3,5,[[368,1,1,3,4],[396,1,1,4,5]]],[14,1,1,5,6,[[410,1,1,5,6]]],[15,1,1,6,7,[[420,1,1,6,7]]],[17,1,1,7,8,[[452,1,1,7,8]]],[18,1,1,8,9,[[588,1,1,8,9]]],[19,6,6,9,15,[[630,1,1,9,10],[639,1,1,10,11],[640,1,1,11,12],[643,1,1,12,13],[646,1,1,13,14],[650,1,1,14,15]]],[26,1,1,15,16,[[857,1,1,15,16]]]],[7864,10976,11091,11223,11849,12219,12501,13264,15803,16459,16727,16762,16862,16936,17053,21986]]],["+",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13264]]],["Understanding",[1,1,[[19,1,1,0,1,[[643,1,1,0,1]]]],[16862]]],["discretion",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16936]]],["knowledge",[1,1,[[13,1,1,0,1,[[396,1,1,0,1]]]],[11849]]],["policy",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21986]]],["prudence",[1,1,[[13,1,1,0,1,[[368,1,1,0,1]]]],[11223]]],["sense",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12501]]],["understanding",[5,5,[[8,1,1,0,1,[[260,1,1,0,1]]],[14,1,1,1,2,[[410,1,1,1,2]]],[18,1,1,2,3,[[588,1,1,2,3]]],[19,2,2,3,5,[[630,1,1,3,4],[640,1,1,4,5]]]],[7864,12219,15803,16459,16762]]],["wisdom",[3,3,[[12,1,1,0,1,[[359,1,1,0,1]]],[19,2,2,1,3,[[639,1,1,1,2],[650,1,1,2,3]]]],[10976,16727,17053]]],["wise",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11091]]]]},{"k":"H7923","v":[["other",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18656]]]]},{"k":"H7924","v":[["understanding",[3,3,[[26,3,3,0,3,[[854,3,3,0,3]]]],[21885,21886,21888]]]]},{"k":"H7925","v":[["*",[65,64,[[0,8,8,0,8,[[18,2,2,0,2],[19,1,1,2,3],[20,1,1,3,4],[21,1,1,4,5],[25,1,1,5,6],[27,1,1,6,7],[30,1,1,7,8]]],[1,5,5,8,13,[[57,1,1,8,9],[58,1,1,9,10],[73,1,1,10,11],[81,1,1,11,12],[83,1,1,12,13]]],[3,1,1,13,14,[[130,1,1,13,14]]],[5,6,6,14,20,[[189,1,1,14,15],[192,2,2,15,17],[193,1,1,17,18],[194,2,2,18,20]]],[6,8,8,20,28,[[216,2,2,20,22],[217,1,1,22,23],[219,1,1,23,24],[229,3,3,24,27],[231,1,1,27,28]]],[8,10,9,28,37,[[236,1,1,28,29],[240,2,2,29,31],[244,1,1,31,32],[250,1,1,32,33],[252,2,2,33,35],[264,3,2,35,37]]],[9,1,1,37,38,[[281,1,1,37,38]]],[11,3,3,38,41,[[315,1,1,38,39],[318,1,1,39,40],[331,1,1,40,41]]],[13,3,3,41,44,[[386,1,1,41,42],[395,1,1,42,43],[402,1,1,43,44]]],[17,1,1,44,45,[[436,1,1,44,45]]],[18,1,1,45,46,[[604,1,1,45,46]]],[19,1,1,46,47,[[654,1,1,46,47]]],[21,1,1,47,48,[[677,1,1,47,48]]],[22,2,2,48,50,[[683,1,1,48,49],[715,1,1,49,50]]],[23,11,11,50,61,[[751,2,2,50,52],[755,1,1,52,53],[769,2,2,53,55],[770,1,1,55,56],[773,1,1,56,57],[776,1,1,57,58],[779,2,2,58,60],[788,1,1,60,61]]],[27,2,2,61,63,[[867,1,1,61,62],[874,1,1,62,63]]],[35,1,1,63,64,[[908,1,1,63,64]]]],[459,484,503,527,550,723,791,928,1730,1755,2181,2444,2500,4148,5894,5961,5964,5992,6012,6016,6682,6692,6695,6787,7029,7032,7033,7106,7231,7322,7323,7417,7572,7634,7638,7977,7978,8391,9598,9689,10096,11607,11811,12008,12874,16123,17183,17639,17750,18388,19132,19144,19233,19537,19538,19577,19654,19764,19837,19838,20014,22171,22269,22827]]],["+",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7231]]],["betimes",[2,2,[[0,1,1,0,1,[[25,1,1,0,1]]],[13,1,1,1,2,[[402,1,1,1,2]]]],[723,12008]]],["early",[60,59,[[0,6,6,0,6,[[18,2,2,0,2],[19,1,1,2,3],[20,1,1,3,4],[21,1,1,4,5],[27,1,1,5,6]]],[1,5,5,6,11,[[57,1,1,6,7],[58,1,1,7,8],[73,1,1,8,9],[81,1,1,9,10],[83,1,1,10,11]]],[3,1,1,11,12,[[130,1,1,11,12]]],[5,6,6,12,18,[[189,1,1,12,13],[192,2,2,13,15],[193,1,1,15,16],[194,2,2,16,18]]],[6,8,8,18,26,[[216,2,2,18,20],[217,1,1,20,21],[219,1,1,21,22],[229,3,3,22,25],[231,1,1,25,26]]],[8,8,7,26,33,[[240,2,2,26,28],[244,1,1,28,29],[250,1,1,29,30],[252,1,1,30,31],[264,3,2,31,33]]],[9,1,1,33,34,[[281,1,1,33,34]]],[11,3,3,34,37,[[315,1,1,34,35],[318,1,1,35,36],[331,1,1,36,37]]],[13,2,2,37,39,[[386,1,1,37,38],[395,1,1,38,39]]],[17,1,1,39,40,[[436,1,1,39,40]]],[18,1,1,40,41,[[604,1,1,40,41]]],[19,1,1,41,42,[[654,1,1,41,42]]],[21,1,1,42,43,[[677,1,1,42,43]]],[22,2,2,43,45,[[683,1,1,43,44],[715,1,1,44,45]]],[23,11,11,45,56,[[751,2,2,45,47],[755,1,1,47,48],[769,2,2,48,50],[770,1,1,50,51],[773,1,1,51,52],[776,1,1,52,53],[779,2,2,53,55],[788,1,1,55,56]]],[27,2,2,56,58,[[867,1,1,56,57],[874,1,1,57,58]]],[35,1,1,58,59,[[908,1,1,58,59]]]],[459,484,503,527,550,791,1730,1755,2181,2444,2500,4148,5894,5961,5964,5992,6012,6016,6682,6692,6695,6787,7029,7032,7033,7106,7322,7323,7417,7572,7638,7977,7978,8391,9598,9689,10096,11607,11811,12874,16123,17183,17639,17750,18388,19132,19144,19233,19537,19538,19577,19654,19764,19837,19838,20014,22171,22269,22827]]],["morning",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7634]]],["up",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[928]]]]},{"k":"H7926","v":[["*",[22,22,[[0,6,6,0,6,[[8,1,1,0,1],[20,1,1,1,2],[23,2,2,2,4],[47,1,1,4,5],[48,1,1,5,6]]],[1,1,1,6,7,[[61,1,1,6,7]]],[5,1,1,7,8,[[190,1,1,7,8]]],[6,1,1,8,9,[[219,1,1,8,9]]],[8,3,3,9,12,[[244,1,1,9,10],[245,2,2,10,12]]],[17,1,1,12,13,[[466,1,1,12,13]]],[18,2,2,13,15,[[498,1,1,13,14],[558,1,1,14,15]]],[22,5,5,15,20,[[687,2,2,15,17],[688,1,1,17,18],[692,1,1,18,19],[700,1,1,19,20]]],[27,1,1,20,21,[[867,1,1,20,21]]],[35,1,1,21,22,[[908,1,1,21,22]]]],[228,527,606,636,1473,1488,1850,5915,6802,7393,7427,7441,13624,14203,15223,17833,17835,17877,17953,18074,22176,22829]]],["+",[2,2,[[8,2,2,0,2,[[244,1,1,0,1],[245,1,1,1,2]]]],[7393,7441]]],["back",[2,2,[[8,1,1,0,1,[[245,1,1,0,1]]],[18,1,1,1,2,[[498,1,1,1,2]]]],[7427,14203]]],["consent",[2,2,[[27,1,1,0,1,[[867,1,1,0,1]]],[35,1,1,1,2,[[908,1,1,1,2]]]],[22176,22829]]],["portion",[1,1,[[0,1,1,0,1,[[47,1,1,0,1]]]],[1473]]],["shoulder",[12,12,[[0,4,4,0,4,[[20,1,1,0,1],[23,2,2,1,3],[48,1,1,3,4]]],[5,1,1,4,5,[[190,1,1,4,5]]],[6,1,1,5,6,[[219,1,1,5,6]]],[17,1,1,6,7,[[466,1,1,6,7]]],[18,1,1,7,8,[[558,1,1,7,8]]],[22,4,4,8,12,[[687,2,2,8,10],[688,1,1,10,11],[700,1,1,11,12]]]],[527,606,636,1488,5915,6802,13624,15223,17833,17835,17877,18074]]],["shoulders",[3,3,[[0,1,1,0,1,[[8,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]]],[228,1850,17953]]]]},{"k":"H7927","v":[["*",[49,43,[[0,7,7,0,7,[[11,1,1,0,1],[32,1,1,1,2],[33,1,1,2,3],[34,1,1,3,4],[36,3,3,4,7]]],[5,6,6,7,13,[[203,1,1,7,8],[206,1,1,8,9],[207,1,1,9,10],[210,3,3,10,13]]],[6,26,22,13,35,[[218,1,1,13,14],[219,24,20,14,34],[231,1,1,34,35]]],[10,3,2,35,37,[[302,3,2,35,37]]],[12,2,2,37,39,[[343,1,1,37,38],[344,1,1,38,39]]],[13,2,1,39,40,[[376,2,1,39,40]]],[18,2,2,40,42,[[537,1,1,40,41],[585,1,1,41,42]]],[23,1,1,42,43,[[785,1,1,42,43]]]],[304,978,986,1015,1095,1096,1097,6282,6379,6402,6477,6501,6508,6750,6755,6756,6757,6760,6761,6772,6774,6777,6778,6779,6780,6782,6785,6788,6793,6795,6800,6801,6803,6811,7121,9152,9176,10521,10563,11396,14813,15749,19962]]],["+",[2,2,[[6,1,1,0,1,[[219,1,1,0,1]]],[23,1,1,1,2,[[785,1,1,1,2]]]],[6757,19962]]],["Shechem",[46,40,[[0,6,6,0,6,[[32,1,1,0,1],[33,1,1,1,2],[34,1,1,2,3],[36,3,3,3,6]]],[5,6,6,6,12,[[203,1,1,6,7],[206,1,1,7,8],[207,1,1,8,9],[210,3,3,9,12]]],[6,25,21,12,33,[[218,1,1,12,13],[219,23,19,13,32],[231,1,1,32,33]]],[10,3,2,33,35,[[302,3,2,33,35]]],[12,2,2,35,37,[[343,1,1,35,36],[344,1,1,36,37]]],[13,2,1,37,38,[[376,2,1,37,38]]],[18,2,2,38,40,[[537,1,1,38,39],[585,1,1,39,40]]]],[978,986,1015,1095,1096,1097,6282,6379,6402,6477,6501,6508,6750,6755,6756,6760,6761,6772,6774,6777,6778,6779,6780,6782,6785,6788,6793,6795,6800,6801,6803,6811,7121,9152,9176,10521,10563,11396,14813,15749]]],["Sichem",[1,1,[[0,1,1,0,1,[[11,1,1,0,1]]]],[304]]]]},{"k":"H7928","v":[["*",[16,15,[[0,11,10,0,10,[[32,1,1,0,1],[33,10,9,1,10]]],[3,1,1,10,11,[[142,1,1,10,11]]],[5,2,2,11,13,[[203,1,1,11,12],[210,1,1,12,13]]],[6,1,1,13,14,[[219,1,1,13,14]]],[12,1,1,14,15,[[344,1,1,14,15]]]],[979,982,984,988,991,993,998,1000,1004,1006,4520,6277,6508,6782,10554]]],["Shechem",[14,14,[[0,9,9,0,9,[[33,9,9,0,9]]],[3,1,1,9,10,[[142,1,1,9,10]]],[5,2,2,10,12,[[203,1,1,10,11],[210,1,1,11,12]]],[6,1,1,12,13,[[219,1,1,12,13]]],[12,1,1,13,14,[[344,1,1,13,14]]]],[982,984,988,991,993,998,1000,1004,1006,4520,6277,6508,6782,10554]]],["Shechem's",[2,2,[[0,2,2,0,2,[[32,1,1,0,1],[33,1,1,1,2]]]],[979,1006]]]]},{"k":"H7929","v":[["+",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13610]]]]},{"k":"H7930","v":[["Shechemites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4520]]]]},{"k":"H7931","v":[["*",[128,123,[[0,8,8,0,8,[[2,1,1,0,1],[8,1,1,1,2],[13,1,1,2,3],[15,1,1,3,4],[24,1,1,4,5],[25,1,1,5,6],[34,1,1,6,7],[48,1,1,7,8]]],[1,5,5,8,13,[[73,1,1,8,9],[74,1,1,9,10],[78,2,2,10,12],[89,1,1,12,13]]],[2,1,1,13,14,[[105,1,1,13,14]]],[3,10,9,14,23,[[121,1,1,14,15],[125,3,3,15,18],[126,1,1,18,19],[130,1,1,19,20],[139,1,1,20,21],[140,1,1,21,22],[151,2,1,22,23]]],[4,11,10,23,33,[[164,1,1,23,24],[166,1,1,24,25],[168,3,3,25,28],[178,1,1,28,29],[185,5,4,29,33]]],[5,2,2,33,35,[[204,1,1,33,34],[208,1,1,34,35]]],[6,3,2,35,37,[[215,2,1,35,36],[218,1,1,36,37]]],[9,1,1,37,38,[[273,1,1,37,38]]],[10,2,2,38,40,[[296,1,1,38,39],[298,1,1,39,40]]],[12,2,2,40,42,[[354,1,1,40,41],[360,1,1,41,42]]],[13,1,1,42,43,[[372,1,1,42,43]]],[15,1,1,43,44,[[413,1,1,43,44]]],[17,11,11,44,55,[[438,1,1,44,45],[439,1,1,45,46],[446,1,1,46,47],[450,1,1,47,48],[453,1,1,48,49],[461,1,1,49,50],[464,1,1,50,51],[465,1,1,51,52],[472,1,1,52,53],[473,1,1,53,54],[474,1,1,54,55]]],[18,23,23,55,78,[[484,1,1,55,56],[492,1,1,56,57],[493,1,1,57,58],[514,3,3,58,61],[532,1,1,61,62],[542,1,1,62,63],[545,3,3,63,66],[546,1,1,66,67],[551,1,1,67,68],[555,2,2,68,70],[562,1,1,70,71],[571,1,1,71,72],[579,1,1,72,73],[581,1,1,73,74],[597,2,2,74,76],[612,1,1,76,77],[616,1,1,77,78]]],[19,5,5,78,83,[[628,1,1,78,79],[629,1,1,79,80],[634,1,1,80,81],[635,1,1,81,82],[637,1,1,82,83]]],[22,13,12,83,95,[[686,1,1,83,84],[691,2,2,84,86],[696,1,1,86,87],[704,1,1,87,88],[710,1,1,88,89],[711,2,2,89,91],[712,2,2,91,93],[735,2,1,93,94],[743,1,1,94,95]]],[23,13,13,95,108,[[751,3,3,95,98],[761,1,1,98,99],[767,1,1,99,100],[769,1,1,100,101],[777,1,1,101,102],[790,1,1,102,103],[792,1,1,103,104],[793,2,2,104,106],[794,1,1,106,107],[795,1,1,107,108]]],[25,6,5,108,113,[[818,2,1,108,109],[832,1,1,109,110],[833,1,1,110,111],[844,2,2,111,113]]],[28,2,2,113,115,[[878,2,2,113,115]]],[30,1,1,115,116,[[888,1,1,115,116]]],[32,2,2,116,118,[[896,1,1,116,117],[899,1,1,117,118]]],[33,1,1,118,119,[[902,1,1,118,119]]],[37,4,4,119,123,[[912,2,2,119,121],[918,2,2,121,123]]]],[79,232,349,393,676,694,1033,1486,2193,2203,2381,2382,2742,3217,3795,3982,3983,3987,4000,4138,4425,4448,4879,5251,5313,5344,5348,5353,5568,5822,5826,5830,5838,6294,6445,6640,6730,8190,8909,8997,10872,11008,11283,12305,12909,12949,13122,13231,13291,13472,13557,13563,13777,13812,13862,14000,14088,14101,14453,14477,14479,14738,14864,14906,14916,14918,14971,15050,15168,15173,15280,15448,15549,15583,16079,16080,16196,16248,16433,16454,16586,16614,16686,17825,17926,17927,18000,18149,18275,18284,18295,18314,18320,18780,18906,19122,19126,19131,19363,19490,19558,19791,20071,20108,20143,20158,20205,20225,20848,21243,21252,21579,21581,22360,22364,22513,22630,22678,22730,22909,22910,22979,22984]]],["+",[3,3,[[5,2,2,0,2,[[204,1,1,0,1],[208,1,1,1,2]]],[15,1,1,2,3,[[413,1,1,2,3]]]],[6294,6445,12305]]],["abide",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16586]]],["abiding",[1,1,[[3,1,1,0,1,[[140,1,1,0,1]]]],[4448]]],["abode",[6,5,[[1,2,2,0,2,[[73,1,1,0,1],[89,1,1,1,2]]],[3,2,2,2,4,[[125,2,2,2,4]]],[6,2,1,4,5,[[215,2,1,4,5]]]],[2193,2742,3982,3983,6640]]],["continue",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15549]]],["dwell",[67,64,[[0,4,4,0,4,[[8,1,1,0,1],[15,1,1,1,2],[25,1,1,2,3],[48,1,1,3,4]]],[1,3,3,4,7,[[74,1,1,4,5],[78,2,2,5,7]]],[3,5,4,7,11,[[121,1,1,7,8],[130,1,1,8,9],[139,1,1,9,10],[151,2,1,10,11]]],[4,4,3,11,14,[[164,1,1,11,12],[185,3,2,12,14]]],[9,1,1,14,15,[[273,1,1,14,15]]],[10,2,2,15,17,[[296,1,1,15,16],[298,1,1,16,17]]],[12,2,2,17,19,[[354,1,1,17,18],[360,1,1,18,19]]],[13,1,1,19,20,[[372,1,1,19,20]]],[17,4,4,20,24,[[438,1,1,20,21],[446,1,1,21,22],[453,1,1,22,23],[465,1,1,23,24]]],[18,13,13,24,37,[[492,1,1,24,25],[514,3,3,25,28],[542,1,1,28,29],[545,3,3,29,32],[546,1,1,32,33],[555,1,1,33,34],[562,1,1,34,35],[597,1,1,35,36],[616,1,1,36,37]]],[19,2,2,37,39,[[628,1,1,37,38],[635,1,1,38,39]]],[22,8,8,39,47,[[691,1,1,39,40],[704,1,1,40,41],[710,1,1,41,42],[711,1,1,42,43],[712,2,2,43,45],[735,1,1,45,46],[743,1,1,46,47]]],[23,7,7,47,54,[[751,2,2,47,49],[767,1,1,49,50],[769,1,1,50,51],[777,1,1,51,52],[792,1,1,52,53],[793,1,1,53,54]]],[25,4,3,54,57,[[818,2,1,54,55],[844,2,2,55,57]]],[32,2,2,57,59,[[896,1,1,57,58],[899,1,1,58,59]]],[33,1,1,59,60,[[902,1,1,59,60]]],[37,4,4,60,64,[[912,2,2,60,62],[918,2,2,62,64]]]],[232,393,694,1486,2203,2381,2382,3795,4138,4425,4879,5251,5822,5838,8190,8909,8997,10872,11008,11283,12909,13122,13291,13563,14088,14453,14477,14479,14864,14906,14916,14918,14971,15168,15280,16079,16248,16433,16614,17927,18149,18275,18295,18314,18320,18780,18906,19122,19126,19490,19558,19791,20108,20158,20848,21579,21581,22630,22678,22730,22909,22910,22979,22984]]],["dwellers",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18000]]],["dwellest",[3,3,[[23,2,2,0,2,[[793,1,1,0,1],[795,1,1,1,2]]],[30,1,1,2,3,[[888,1,1,2,3]]]],[20143,20225,22513]]],["dwelleth",[7,7,[[4,1,1,0,1,[[185,1,1,0,1]]],[17,2,2,1,3,[[473,1,1,1,2],[474,1,1,2,3]]],[18,1,1,3,4,[[612,1,1,3,4]]],[22,2,2,4,6,[[686,1,1,4,5],[711,1,1,5,6]]],[28,1,1,6,7,[[878,1,1,6,7]]]],[5830,13812,13862,16196,17825,18284,22364]]],["dwelling",[1,1,[[28,1,1,0,1,[[878,1,1,0,1]]]],[22360]]],["dwelt",[10,10,[[0,3,3,0,3,[[13,1,1,0,1],[24,1,1,1,2],[34,1,1,2,3]]],[4,1,1,3,4,[[185,1,1,3,4]]],[6,1,1,4,5,[[218,1,1,4,5]]],[17,1,1,5,6,[[464,1,1,5,6]]],[18,3,3,6,9,[[551,1,1,6,7],[571,1,1,7,8],[597,1,1,8,9]]],[22,1,1,9,10,[[691,1,1,9,10]]]],[349,676,1033,5826,6730,13557,15050,15448,16080,17926]]],["habitation",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15583]]],["in",[4,4,[[17,2,2,0,2,[[439,1,1,0,1],[450,1,1,1,2]]],[19,1,1,2,3,[[629,1,1,2,3]]],[23,1,1,3,4,[[794,1,1,3,4]]]],[12949,13231,16454,20205]]],["inhabit",[2,2,[[19,1,1,0,1,[[637,1,1,0,1]]],[23,1,1,1,2,[[761,1,1,1,2]]]],[16686,19363]]],["inhabitants",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13472]]],["inhabited",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20071]]],["inhabiteth",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18780]]],["lay",[1,1,[[18,1,1,0,1,[[484,1,1,0,1]]]],[14000]]],["place",[5,5,[[4,5,5,0,5,[[166,1,1,0,1],[168,3,3,1,4],[178,1,1,4,5]]]],[5313,5344,5348,5353,5568]]],["placed",[2,2,[[0,1,1,0,1,[[2,1,1,0,1]]],[18,1,1,1,2,[[555,1,1,1,2]]]],[79,15173]]],["remain",[3,3,[[17,1,1,0,1,[[472,1,1,0,1]]],[25,2,2,1,3,[[832,1,1,1,2],[833,1,1,2,3]]]],[13777,21243,21252]]],["remaineth",[1,1,[[2,1,1,0,1,[[105,1,1,0,1]]]],[3217]]],["remaining",[1,1,[[3,1,1,0,1,[[125,1,1,0,1]]]],[3987]]],["rest",[2,2,[[18,2,2,0,2,[[493,1,1,0,1],[532,1,1,1,2]]]],[14101,14738]]],["rested",[1,1,[[3,1,1,0,1,[[126,1,1,0,1]]]],[4000]]],["set",[1,1,[[23,1,1,0,1,[[751,1,1,0,1]]]],[19131]]]]},{"k":"H7932","v":[["*",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[12163,21858]]],["dwell",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12163]]],["habitation",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21858]]]]},{"k":"H7933","v":[["habitation",[1,1,[[4,1,1,0,1,[[164,1,1,0,1]]]],[5245]]]]},{"k":"H7934","v":[["*",[20,20,[[1,2,2,0,2,[[52,1,1,0,1],[61,1,1,1,2]]],[4,1,1,2,3,[[153,1,1,2,3]]],[7,1,1,3,4,[[235,1,1,3,4]]],[11,1,1,4,5,[[316,1,1,4,5]]],[18,6,6,5,11,[[508,1,1,5,6],[521,1,1,6,7],[556,2,2,7,9],[557,1,1,9,10],[566,1,1,10,11]]],[19,1,1,11,12,[[654,1,1,11,12]]],[22,1,1,12,13,[[711,1,1,12,13]]],[23,5,5,13,18,[[750,1,1,13,14],[756,1,1,14,15],[793,2,2,15,17],[794,1,1,17,18]]],[25,1,1,18,19,[[817,1,1,18,19]]],[27,1,1,19,20,[[871,1,1,19,20]]]],[1601,1820,4899,7207,9606,14342,14584,15189,15197,15204,15367,17179,18303,19110,19263,20137,20145,20206,20788,22230]]],["+",[1,1,[[1,1,1,0,1,[[52,1,1,0,1]]]],[1601]]],["inhabitant",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18303]]],["inhabitants",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22230]]],["neighbour",[5,5,[[1,1,1,0,1,[[61,1,1,0,1]]],[19,1,1,1,2,[[654,1,1,1,2]]],[23,3,3,2,5,[[750,1,1,2,3],[793,1,1,3,4],[794,1,1,4,5]]]],[1820,17179,19110,20145,20206]]],["neighbours",[11,11,[[7,1,1,0,1,[[235,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]],[18,6,6,2,8,[[508,1,1,2,3],[521,1,1,3,4],[556,2,2,4,6],[557,1,1,6,7],[566,1,1,7,8]]],[23,2,2,8,10,[[756,1,1,8,9],[793,1,1,9,10]]],[25,1,1,10,11,[[817,1,1,10,11]]]],[7207,9606,14342,14584,15189,15197,15204,15367,19263,20137,20788]]],["nigh",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4899]]]]},{"k":"H7935","v":[["*",[10,10,[[12,3,3,0,3,[[340,2,2,0,2],[361,1,1,2,3]]],[13,1,1,3,4,[[397,1,1,3,4]]],[14,3,3,4,7,[[410,2,2,4,6],[412,1,1,6,7]]],[15,3,3,7,10,[[415,1,1,7,8],[418,1,1,8,9],[424,1,1,9,10]]]],[10382,10383,11026,11869,12204,12206,12254,12356,12419,12627]]],["Shecaniah",[2,2,[[12,1,1,0,1,[[361,1,1,0,1]]],[13,1,1,1,2,[[397,1,1,1,2]]]],[11026,11869]]],["Shechaniah",[8,8,[[12,2,2,0,2,[[340,2,2,0,2]]],[14,3,3,2,5,[[410,2,2,2,4],[412,1,1,4,5]]],[15,3,3,5,8,[[415,1,1,5,6],[418,1,1,6,7],[424,1,1,7,8]]]],[10382,10383,12204,12206,12254,12356,12419,12627]]]]},{"k":"H7936","v":[["*",[21,18,[[0,2,1,0,1,[[29,2,1,0,1]]],[4,1,1,1,2,[[175,1,1,1,2]]],[6,2,2,2,4,[[219,1,1,2,3],[228,1,1,3,4]]],[8,1,1,4,5,[[237,1,1,4,5]]],[9,1,1,5,6,[[276,1,1,5,6]]],[11,1,1,6,7,[[319,1,1,6,7]]],[12,2,2,7,9,[[356,2,2,7,9]]],[13,2,2,9,11,[[390,1,1,9,10],[391,1,1,10,11]]],[14,1,1,11,12,[[406,1,1,11,12]]],[15,3,3,12,15,[[418,2,2,12,14],[425,1,1,14,15]]],[19,2,1,15,16,[[653,2,1,15,16]]],[22,1,1,16,17,[[724,1,1,16,17]]],[36,2,1,17,18,[[909,2,1,17,18]]]],[846,5504,6758,6997,7245,8246,9713,10913,10914,11689,11710,12115,12413,12414,12673,17151,18592,22846]]],["+",[5,4,[[0,2,1,0,1,[[29,2,1,0,1]]],[9,1,1,1,2,[[276,1,1,1,2]]],[13,1,1,2,3,[[390,1,1,2,3]]],[15,1,1,3,4,[[425,1,1,3,4]]]],[846,8246,11689,12673]]],["hire",[2,2,[[12,1,1,0,1,[[356,1,1,0,1]]],[22,1,1,1,2,[[724,1,1,1,2]]]],[10913,18592]]],["hired",[9,9,[[4,1,1,0,1,[[175,1,1,0,1]]],[6,2,2,1,3,[[219,1,1,1,2],[228,1,1,2,3]]],[11,1,1,3,4,[[319,1,1,3,4]]],[12,1,1,4,5,[[356,1,1,4,5]]],[13,1,1,5,6,[[391,1,1,5,6]]],[14,1,1,6,7,[[406,1,1,6,7]]],[15,2,2,7,9,[[418,2,2,7,9]]]],[5504,6758,6997,9713,10914,11710,12115,12413,12414]]],["rewardeth",[2,1,[[19,2,1,0,1,[[653,2,1,0,1]]]],[17151]]],["themselves",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7245]]],["wages",[2,1,[[36,2,1,0,1,[[909,2,1,0,1]]]],[22846]]]]},{"k":"H7937","v":[["*",[19,19,[[0,2,2,0,2,[[8,1,1,0,1],[42,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[8,1,1,3,4,[[236,1,1,3,4]]],[9,1,1,4,5,[[277,1,1,4,5]]],[21,1,1,5,6,[[675,1,1,5,6]]],[22,4,4,6,10,[[707,1,1,6,7],[727,1,1,7,8],[729,1,1,8,9],[741,1,1,9,10]]],[23,5,5,10,15,[[769,1,1,10,11],[792,1,1,11,12],[795,3,3,12,15]]],[24,1,1,15,16,[[800,1,1,15,16]]],[33,1,1,16,17,[[902,1,1,16,17]]],[34,1,1,17,18,[[904,1,1,17,18]]],[36,1,1,18,19,[[909,1,1,18,19]]]],[226,1324,5800,7226,8272,17599,18202,18662,18694,18872,19561,20106,20219,20251,20269,20441,22723,22763,22846]]],["+",[1,1,[[36,1,1,0,1,[[909,1,1,0,1]]]],[22846]]],["abundantly",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17599]]],["drunk",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[9,1,1,1,2,[[277,1,1,1,2]]],[22,1,1,2,3,[[741,1,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]]],[5800,8272,18872,20269]]],["drunken",[12,12,[[0,1,1,0,1,[[8,1,1,0,1]]],[8,1,1,1,2,[[236,1,1,1,2]]],[22,3,3,2,5,[[707,1,1,2,3],[727,1,1,3,4],[729,1,1,4,5]]],[23,4,4,5,9,[[769,1,1,5,6],[792,1,1,6,7],[795,2,2,7,9]]],[24,1,1,9,10,[[800,1,1,9,10]]],[33,1,1,10,11,[[902,1,1,10,11]]],[34,1,1,11,12,[[904,1,1,11,12]]]],[226,7226,18202,18662,18694,19561,20106,20219,20251,20441,22723,22763]]],["merry",[1,1,[[0,1,1,0,1,[[42,1,1,0,1]]]],[1324]]]]},{"k":"H7938","v":[["*",[2,2,[[19,1,1,0,1,[[638,1,1,0,1]]],[22,1,1,1,2,[[697,1,1,1,2]]]],[16706,18014]]],["reward",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16706]]],["sluices",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18014]]]]},{"k":"H7939","v":[["*",[28,25,[[0,7,6,0,6,[[14,1,1,0,1],[29,4,4,1,5],[30,2,1,5,6]]],[1,2,2,6,8,[[51,1,1,6,7],[71,1,1,7,8]]],[3,1,1,8,9,[[134,1,1,8,9]]],[4,2,2,9,11,[[167,1,1,9,10],[176,1,1,10,11]]],[10,1,1,11,12,[[295,1,1,11,12]]],[13,1,1,12,13,[[381,1,1,12,13]]],[18,1,1,13,14,[[604,1,1,13,14]]],[20,2,2,14,16,[[662,1,1,14,15],[667,1,1,15,16]]],[22,2,2,16,18,[[718,1,1,16,17],[740,1,1,17,18]]],[23,1,1,18,19,[[775,1,1,18,19]]],[25,2,2,19,21,[[830,2,2,19,21]]],[31,1,1,21,22,[[889,1,1,21,22]]],[37,4,2,22,24,[[918,2,1,22,23],[921,2,1,23,24]]],[38,1,1,24,25,[[927,1,1,24,25]]]],[361,848,858,862,863,881,1563,2128,4288,5337,5540,8884,11497,16124,17390,17480,18430,18865,19707,21201,21202,22534,22986,23040,23125]]],["fare",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22534]]],["hire",[9,8,[[0,4,4,0,4,[[29,3,3,0,3],[30,1,1,3,4]]],[1,1,1,4,5,[[71,1,1,4,5]]],[4,1,1,5,6,[[176,1,1,5,6]]],[10,1,1,6,7,[[295,1,1,6,7]]],[37,2,1,7,8,[[918,2,1,7,8]]]],[848,862,863,881,2128,5540,8884,22986]]],["price",[2,1,[[37,2,1,0,1,[[921,2,1,0,1]]]],[23040]]],["reward",[7,7,[[0,1,1,0,1,[[14,1,1,0,1]]],[3,1,1,1,2,[[134,1,1,1,2]]],[18,1,1,2,3,[[604,1,1,2,3]]],[20,2,2,3,5,[[662,1,1,3,4],[667,1,1,4,5]]],[22,2,2,5,7,[[718,1,1,5,6],[740,1,1,6,7]]]],[361,4288,16124,17390,17480,18430,18865]]],["rewarded",[2,2,[[13,1,1,0,1,[[381,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[11497,19707]]],["wages",[6,6,[[0,2,2,0,2,[[29,1,1,0,1],[30,1,1,1,2]]],[1,1,1,2,3,[[51,1,1,2,3]]],[25,2,2,3,5,[[830,2,2,3,5]]],[38,1,1,5,6,[[927,1,1,5,6]]]],[858,881,1563,21201,21202,23125]]],["worth",[1,1,[[4,1,1,0,1,[[167,1,1,0,1]]]],[5337]]]]},{"k":"H7940","v":[["Sacar",[2,2,[[12,2,2,0,2,[[348,1,1,0,1],[363,1,1,1,2]]]],[10708,11081]]]]},{"k":"H7941","v":[["*",[23,20,[[2,1,1,0,1,[[99,1,1,0,1]]],[3,3,2,1,3,[[122,2,1,1,2],[144,1,1,2,3]]],[4,2,2,3,5,[[166,1,1,3,4],[181,1,1,4,5]]],[6,3,3,5,8,[[223,3,3,5,8]]],[8,1,1,8,9,[[236,1,1,8,9]]],[18,1,1,9,10,[[546,1,1,9,10]]],[19,3,3,10,13,[[647,1,1,10,11],[658,2,2,11,13]]],[22,8,6,13,19,[[683,2,2,13,15],[702,1,1,15,16],[706,3,1,16,17],[707,1,1,17,18],[734,1,1,18,19]]],[32,1,1,19,20,[[894,1,1,19,20]]]],[2986,3826,4584,5316,5685,6888,6891,6898,7227,14947,16955,17288,17290,17750,17761,18104,18171,18202,18765,22606]]],["+",[1,1,[[18,1,1,0,1,[[546,1,1,0,1]]]],[14947]]],["drink",[21,18,[[2,1,1,0,1,[[99,1,1,0,1]]],[3,2,1,1,2,[[122,2,1,1,2]]],[4,2,2,2,4,[[166,1,1,2,3],[181,1,1,3,4]]],[6,3,3,4,7,[[223,3,3,4,7]]],[8,1,1,7,8,[[236,1,1,7,8]]],[19,3,3,8,11,[[647,1,1,8,9],[658,2,2,9,11]]],[22,8,6,11,17,[[683,2,2,11,13],[702,1,1,13,14],[706,3,1,14,15],[707,1,1,15,16],[734,1,1,16,17]]],[32,1,1,17,18,[[894,1,1,17,18]]]],[2986,3826,5316,5685,6888,6891,6898,7227,16955,17288,17290,17750,17761,18104,18171,18202,18765,22606]]],["wine",[1,1,[[3,1,1,0,1,[[144,1,1,0,1]]]],[4584]]]]},{"k":"H7942","v":[["Shicron",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6213]]]]},{"k":"H7943","v":[["*",[3,3,[[23,1,1,0,1,[[757,1,1,0,1]]],[25,2,2,1,3,[[824,1,1,1,2],[840,1,1,2,3]]]],[19279,21040,21467]]],["drunken",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21467]]],["drunkenness",[2,2,[[23,1,1,0,1,[[757,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[19279,21040]]]]},{"k":"H7944","v":[["error",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8164]]]]},{"k":"H7945","v":[["*",[138,113,[[0,1,1,0,1,[[5,1,1,0,1]]],[6,4,4,1,5,[[215,1,1,1,2],[216,1,1,2,3],[217,1,1,3,4],[218,1,1,4,5]]],[11,1,1,5,6,[[318,1,1,5,6]]],[12,2,2,6,8,[[342,1,1,6,7],[364,1,1,7,8]]],[14,1,1,8,9,[[410,1,1,8,9]]],[17,1,1,9,10,[[454,1,1,9,10]]],[18,21,19,10,29,[[599,2,2,10,12],[600,1,1,12,13],[601,3,3,13,16],[606,2,2,16,18],[610,2,2,18,20],[612,3,3,20,23],[613,1,1,23,24],[614,3,2,24,26],[621,2,1,26,27],[623,2,2,27,29]]],[20,68,54,29,83,[[659,11,7,29,36],[660,21,16,36,52],[661,5,5,52,57],[662,2,2,57,59],[663,6,4,59,63],[664,3,2,63,65],[665,3,3,65,68],[666,4,3,68,71],[667,3,2,71,73],[668,5,5,73,78],[669,2,2,78,80],[670,3,3,80,83]]],[21,32,23,83,106,[[671,6,3,83,86],[672,2,2,86,88],[673,10,7,88,95],[674,4,3,95,98],[675,3,3,98,101],[676,4,2,101,103],[678,3,3,103,106]]],[24,4,4,106,110,[[798,2,2,106,108],[800,1,1,108,109],[801,1,1,109,110]]],[31,3,3,110,113,[[889,2,2,110,112],[892,1,1,112,113]]]],[140,6630,6671,6706,6745,9685,10448,11136,12221,13326,16092,16093,16100,16103,16104,16108,16138,16139,16171,16172,16177,16183,16185,16219,16230,16231,16320,16344,16346,17318,17322,17324,17325,17326,17329,17332,17340,17342,17344,17345,17346,17347,17348,17349,17350,17351,17352,17353,17354,17355,17357,17359,17372,17373,17374,17377,17381,17383,17391,17402,17412,17413,17415,17420,17427,17439,17443,17453,17465,17472,17475,17480,17487,17496,17498,17507,17509,17510,17516,17521,17526,17530,17532,17543,17544,17549,17561,17571,17572,17573,17574,17575,17576,17578,17582,17583,17584,17588,17600,17606,17607,17619,17620,17644,17648,17652,20347,20348,20429,20460,22538,22543,22578]]],["+",[131,107,[[0,1,1,0,1,[[5,1,1,0,1]]],[6,4,4,1,5,[[215,1,1,1,2],[216,1,1,2,3],[217,1,1,3,4],[218,1,1,4,5]]],[11,1,1,5,6,[[318,1,1,5,6]]],[12,2,2,6,8,[[342,1,1,6,7],[364,1,1,7,8]]],[17,1,1,8,9,[[454,1,1,8,9]]],[18,21,19,9,28,[[599,2,2,9,11],[600,1,1,11,12],[601,3,3,12,15],[606,2,2,15,17],[610,2,2,17,19],[612,3,3,19,22],[613,1,1,22,23],[614,3,2,23,25],[621,2,1,25,26],[623,2,2,26,28]]],[20,66,52,28,80,[[659,11,7,28,35],[660,21,16,35,51],[661,4,4,51,55],[662,2,2,55,57],[663,6,4,57,61],[664,3,2,61,63],[665,3,3,63,66],[666,3,2,66,68],[667,3,2,68,70],[668,5,5,70,75],[669,2,2,75,77],[670,3,3,77,80]]],[21,30,22,80,102,[[671,5,3,80,83],[672,2,2,83,85],[673,10,7,85,92],[674,4,3,92,95],[675,3,3,95,98],[676,4,2,98,100],[678,2,2,100,102]]],[24,3,3,102,105,[[798,2,2,102,104],[800,1,1,104,105]]],[31,2,2,105,107,[[889,1,1,105,106],[892,1,1,106,107]]]],[140,6630,6671,6706,6745,9685,10448,11136,13326,16092,16093,16100,16103,16104,16108,16138,16139,16171,16172,16177,16183,16185,16219,16230,16231,16320,16344,16346,17318,17322,17324,17325,17326,17329,17332,17340,17342,17344,17345,17346,17347,17348,17349,17350,17351,17352,17353,17354,17355,17357,17359,17372,17373,17374,17381,17383,17391,17402,17412,17413,17415,17420,17427,17439,17443,17453,17465,17472,17480,17487,17496,17498,17507,17509,17510,17516,17521,17526,17530,17532,17543,17544,17549,17561,17571,17572,17573,17574,17575,17576,17578,17582,17583,17584,17588,17600,17606,17607,17619,17620,17644,17648,20347,20348,20429,22538,22578]]],["because",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17475]]],["mine",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17652]]],["own",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17543]]],["sake",[1,1,[[31,1,1,0,1,[[889,1,1,0,1]]]],[22543]]],["they",[1,1,[[20,1,1,0,1,[[661,1,1,0,1]]]],[17377]]],["which",[1,1,[[24,1,1,0,1,[[801,1,1,0,1]]]],[20460]]],["whom",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12221]]]]},{"k":"H7946","v":[["ease",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13378]]]]},{"k":"H7947","v":[["*",[2,2,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]]],[2252,2588]]],["distant",[1,1,[[1,1,1,0,1,[[85,1,1,0,1]]]],[2588]]],["order",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2252]]]]},{"k":"H7948","v":[["ledges",[3,2,[[10,3,2,0,2,[[297,3,2,0,2]]]],[8962,8963]]]]},{"k":"H7949","v":[["snow",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14914]]]]},{"k":"H7950","v":[["*",[20,20,[[1,1,1,0,1,[[53,1,1,0,1]]],[3,1,1,1,2,[[128,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[11,1,1,3,4,[[317,1,1,3,4]]],[12,1,1,4,5,[[348,1,1,4,5]]],[17,5,5,5,10,[[441,1,1,5,6],[444,1,1,6,7],[459,1,1,7,8],[472,1,1,8,9],[473,1,1,9,10]]],[18,3,3,10,13,[[528,1,1,10,11],[624,1,1,11,12],[625,1,1,12,13]]],[19,3,3,13,16,[[652,1,1,13,14],[653,1,1,14,15],[658,1,1,15,16]]],[22,2,2,16,18,[[679,1,1,16,17],[733,1,1,17,18]]],[23,1,1,18,19,[[762,1,1,18,19]]],[24,1,1,19,20,[[800,1,1,19,20]]]],[1607,4069,8673,9674,10695,12994,13081,13455,13775,13815,14698,16367,16379,17126,17142,17305,17672,18750,19398,20427]]],["+",[3,3,[[18,1,1,0,1,[[528,1,1,0,1]]],[19,1,1,1,2,[[658,1,1,1,2]]],[24,1,1,2,3,[[800,1,1,2,3]]]],[14698,17305,20427]]],["snow",[16,16,[[1,1,1,0,1,[[53,1,1,0,1]]],[3,1,1,1,2,[[128,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[11,1,1,3,4,[[317,1,1,3,4]]],[17,5,5,4,9,[[441,1,1,4,5],[444,1,1,5,6],[459,1,1,6,7],[472,1,1,7,8],[473,1,1,8,9]]],[18,2,2,9,11,[[624,1,1,9,10],[625,1,1,10,11]]],[19,2,2,11,13,[[652,1,1,11,12],[653,1,1,12,13]]],[22,2,2,13,15,[[679,1,1,13,14],[733,1,1,14,15]]],[23,1,1,15,16,[[762,1,1,15,16]]]],[1607,4069,8673,9674,12994,13081,13455,13775,13815,16367,16379,17126,17142,17672,18750,19398]]],["snowy",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10695]]]]},{"k":"H7951","v":[["*",[5,5,[[17,2,2,0,2,[[438,1,1,0,1],[447,1,1,1,2]]],[18,1,1,2,3,[[599,1,1,2,3]]],[23,1,1,3,4,[[756,1,1,3,4]]],[24,1,1,4,5,[[797,1,1,4,5]]]],[12930,13134,16095,19250,20315]]],["happy",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19250]]],["prosper",[3,3,[[17,1,1,0,1,[[447,1,1,0,1]]],[18,1,1,1,2,[[599,1,1,1,2]]],[24,1,1,2,3,[[797,1,1,2,3]]]],[13134,16095,20315]]],["safety",[1,1,[[17,1,1,0,1,[[438,1,1,0,1]]]],[12930]]]]},{"k":"H7952","v":[["*",[2,2,[[11,1,1,0,1,[[316,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]]],[9631,11802]]],["deceive",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9631]]],["negligent",[1,1,[[13,1,1,0,1,[[395,1,1,0,1]]]],[11802]]]]},{"k":"H7953","v":[["away",[1,1,[[17,1,1,0,1,[[462,1,1,0,1]]]],[13489]]]]},{"k":"H7954","v":[["rest",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21841]]]]},{"k":"H7955","v":[["amiss",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21836]]]]},{"k":"H7956","v":[["Shelah",[8,8,[[0,5,5,0,5,[[37,4,4,0,4],[45,1,1,4,5]]],[3,1,1,5,6,[[142,1,1,5,6]]],[12,2,2,6,8,[[339,1,1,6,7],[341,1,1,7,8]]]],[1124,1130,1133,1145,1398,4509,10309,10406]]]]},{"k":"H7957","v":[["flame",[3,3,[[17,1,1,0,1,[[450,1,1,0,1]]],[21,1,1,1,2,[[678,1,1,1,2]]],[25,1,1,2,3,[[821,1,1,2,3]]]],[13233,17646,20942]]]]},{"k":"H7958","v":[["quails",[4,4,[[1,1,1,0,1,[[65,1,1,0,1]]],[3,2,2,1,3,[[127,2,2,1,3]]],[18,1,1,3,4,[[582,1,1,3,4]]]],[1960,4055,4056,15646]]]]},{"k":"H7959","v":[["prosperity",[1,1,[[18,1,1,0,1,[[507,1,1,0,1]]]],[14325]]]]},{"k":"H7960","v":[["*",[3,3,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]],[26,1,1,2,3,[[855,1,1,2,3]]]],[12132,12160,21909]]],["error",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21909]]],["fail",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12160]]],["not",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12132]]]]},{"k":"H7961","v":[["*",[8,8,[[12,1,1,0,1,[[341,1,1,0,1]]],[17,3,3,1,4,[[451,1,1,1,2],[455,1,1,2,3],[456,1,1,3,4]]],[18,1,1,4,5,[[550,1,1,4,5]]],[23,1,1,5,6,[[793,1,1,5,6]]],[25,1,1,6,7,[[824,1,1,6,7]]],[37,1,1,7,8,[[917,1,1,7,8]]]],[10425,13250,13346,13378,15032,20158,21049,22969]]],["ease",[2,2,[[17,1,1,0,1,[[451,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[13250,21049]]],["peaceable",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10425]]],["prosper",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15032]]],["prosperity",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22969]]],["quiet",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13378]]],["quietness",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13346]]],["wealthy",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20158]]]]},{"k":"H7962","v":[["*",[8,8,[[18,1,1,0,1,[[599,1,1,0,1]]],[19,2,2,1,3,[[628,1,1,1,2],[644,1,1,2,3]]],[23,1,1,3,4,[[766,1,1,3,4]]],[25,1,1,4,5,[[817,1,1,4,5]]],[26,3,3,5,8,[[857,1,1,5,6],[860,2,2,6,8]]]],[16096,16432,16874,19475,20811,21986,22057,22060]]],["abundance",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20811]]],["peace",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21986]]],["peaceably",[2,2,[[26,2,2,0,2,[[860,2,2,0,2]]]],[22057,22060]]],["prosperity",[3,3,[[18,1,1,0,1,[[599,1,1,0,1]]],[19,1,1,1,2,[[628,1,1,1,2]]],[23,1,1,2,3,[[766,1,1,2,3]]]],[16096,16432,19475]]],["quietness",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16874]]]]},{"k":"H7963","v":[["tranquillity",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]]]},{"k":"H7964","v":[["*",[3,3,[[1,1,1,0,1,[[67,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[32,1,1,2,3,[[893,1,1,2,3]]]],[2001,9067,22593]]],["back",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2001]]],["present",[1,1,[[10,1,1,0,1,[[299,1,1,0,1]]]],[9067]]],["presents",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22593]]]]},{"k":"H7965","v":[["*",[236,208,[[0,15,12,0,12,[[14,1,1,0,1],[25,2,2,1,3],[27,1,1,3,4],[28,2,1,4,5],[36,3,2,5,7],[40,1,1,7,8],[42,4,3,8,11],[43,1,1,11,12]]],[1,3,3,12,15,[[53,1,1,12,13],[67,2,2,13,15]]],[2,1,1,15,16,[[115,1,1,15,16]]],[3,2,2,16,18,[[122,1,1,16,17],[141,1,1,17,18]]],[4,5,5,18,23,[[154,1,1,18,19],[172,2,2,19,21],[175,1,1,21,22],[181,1,1,22,23]]],[5,2,2,23,25,[[195,1,1,23,24],[196,1,1,24,25]]],[6,9,9,25,34,[[214,1,1,25,26],[216,1,1,26,27],[218,1,1,27,28],[221,2,2,28,30],[228,2,2,30,32],[229,1,1,32,33],[231,1,1,33,34]]],[8,18,16,34,50,[[236,1,1,34,35],[242,1,1,35,36],[245,1,1,36,37],[251,2,2,37,39],[252,2,2,39,41],[255,4,4,41,45],[260,5,3,45,48],[264,1,1,48,49],[265,1,1,49,50]]],[9,16,14,50,64,[[269,3,3,50,53],[274,1,1,53,54],[277,3,1,54,55],[281,2,2,55,57],[283,1,1,57,58],[284,3,3,58,61],[285,2,2,61,63],[286,1,1,63,64]]],[10,11,10,64,74,[[292,5,4,64,68],[294,1,1,68,69],[295,1,1,69,70],[310,1,1,70,71],[312,3,3,71,74]]],[11,20,14,74,88,[[316,5,2,74,76],[317,3,3,76,79],[321,9,6,79,85],[322,1,1,85,86],[332,1,1,86,87],[334,1,1,87,88]]],[12,6,4,88,92,[[349,4,2,88,90],[355,1,1,90,91],[359,1,1,91,92]]],[13,6,6,92,98,[[381,1,1,92,93],[384,3,3,93,96],[385,1,1,96,97],[400,1,1,97,98]]],[14,1,1,98,99,[[411,1,1,98,99]]],[16,3,3,99,102,[[427,1,1,99,100],[434,1,1,100,101],[435,1,1,101,102]]],[17,4,4,102,106,[[440,1,1,102,103],[450,1,1,103,104],[456,1,1,104,105],[460,1,1,105,106]]],[18,27,27,106,133,[[481,1,1,106,107],[505,1,1,107,108],[506,1,1,108,109],[511,1,1,109,110],[512,2,2,110,112],[514,2,2,112,114],[515,1,1,114,115],[518,1,1,115,116],[532,2,2,116,118],[546,1,1,118,119],[549,2,2,119,121],[550,1,1,121,122],[562,2,2,122,124],[596,1,1,124,125],[597,2,2,125,127],[599,3,3,127,130],[602,1,1,130,131],[605,1,1,131,132],[624,1,1,132,133]]],[19,3,3,133,136,[[630,2,2,133,135],[639,1,1,135,136]]],[20,1,1,136,137,[[661,1,1,136,137]]],[21,1,1,137,138,[[678,1,1,137,138]]],[22,29,25,138,163,[[687,2,2,138,140],[704,3,2,140,142],[705,2,1,142,143],[710,2,2,143,145],[711,1,1,145,146],[716,1,1,146,147],[717,1,1,147,148],[719,1,1,148,149],[723,1,1,149,150],[726,2,2,150,152],[730,1,1,152,153],[731,1,1,153,154],[732,2,2,154,156],[733,1,1,156,157],[735,4,3,157,160],[737,2,1,160,161],[738,1,1,161,162],[744,1,1,162,163]]],[23,31,25,163,188,[[748,1,1,163,164],[750,3,1,164,165],[752,4,2,165,167],[753,1,1,167,168],[756,2,2,168,170],[757,1,1,170,171],[758,2,2,171,173],[759,1,1,173,174],[760,1,1,174,175],[764,1,1,175,176],[767,1,1,176,177],[769,1,1,177,178],[772,1,1,178,179],[773,4,2,179,181],[774,1,1,181,182],[777,2,2,182,184],[778,1,1,184,185],[782,2,2,185,187],[787,1,1,187,188]]],[24,1,1,188,189,[[799,1,1,188,189]]],[25,7,5,189,194,[[808,1,1,189,190],[814,4,2,190,192],[835,1,1,192,193],[838,1,1,193,194]]],[26,1,1,194,195,[[859,1,1,194,195]]],[30,1,1,195,196,[[888,1,1,195,196]]],[32,2,2,196,198,[[895,1,1,196,197],[897,1,1,197,198]]],[33,1,1,198,199,[[900,1,1,198,199]]],[36,1,1,199,200,[[910,1,1,199,200]]],[37,6,6,200,206,[[916,1,1,200,201],[918,4,4,201,205],[919,1,1,205,206]]],[38,2,2,206,208,[[926,2,2,206,208]]]],[375,721,723,794,801,1087,1097,1211,1313,1317,1318,1341,1619,2006,2022,3530,3849,4483,4964,5437,5438,5506,5698,6052,6085,6616,6677,6728,6842,6860,6999,7008,7044,7115,7229,7366,7422,7599,7600,7636,7640,7737,7743,7751,7772,7866,7867,7896,7974,7999,8102,8103,8104,8219,8266,8398,8416,8452,8506,8507,8510,8535,8541,8563,8775,8776,8783,8803,8868,8890,9426,9497,9507,9508,9626,9629,9666,9668,9669,9767,9773,9774,9775,9778,9787,9806,10117,10165,10737,10738,10900,10973,11495,11558,11568,11569,11577,11961,12249,12735,12864,12869,12975,13224,13364,13463,13973,14302,14319,14402,14430,14437,14461,14487,14493,14551,14750,14752,14957,15003,15007,15023,15279,15281,16063,16080,16081,16095,16096,16097,16115,16132,16365,16457,16472,16739,17367,17650,17835,17836,18133,18142,18156,18276,18277,18286,18407,18420,18454,18568,18632,18636,18703,18716,18733,18736,18752,18767,18784,18786,18808,18838,18934,19037,19103,19164,19168,19183,19254,19261,19285,19306,19312,19320,19341,19432,19501,19571,19627,19642,19646,19672,19781,19784,19806,19899,19917,20009,20371,20602,20718,20724,21338,21423,22034,22517,22613,22638,22699,22864,22960,22986,22988,22992,22995,23009,23108,23109]]],["+",[12,11,[[6,1,1,0,1,[[228,1,1,0,1]]],[8,4,4,1,5,[[245,1,1,1,2],[252,1,1,2,3],[260,1,1,3,4],[265,1,1,4,5]]],[9,1,1,5,6,[[274,1,1,5,6]]],[18,1,1,6,7,[[518,1,1,6,7]]],[22,2,1,7,8,[[704,2,1,7,8]]],[23,2,2,8,10,[[764,1,1,8,9],[782,1,1,9,10]]],[24,1,1,10,11,[[799,1,1,10,11]]]],[7008,7422,7640,7866,7999,8219,14551,18133,19432,19917,20371]]],["Peace",[12,12,[[0,1,1,0,1,[[42,1,1,0,1]]],[6,2,2,1,3,[[216,1,1,1,2],[229,1,1,2,3]]],[8,1,1,3,4,[[260,1,1,3,4]]],[18,2,2,4,6,[[599,2,2,4,6]]],[22,2,2,6,8,[[687,1,1,6,7],[735,1,1,7,8]]],[23,2,2,8,10,[[750,1,1,8,9],[752,1,1,9,10]]],[25,1,1,10,11,[[814,1,1,10,11]]],[32,1,1,11,12,[[895,1,1,11,12]]]],[1313,6677,7044,7867,16096,16097,17835,18784,19103,19164,20718,22613]]],["Peaceably",[2,2,[[8,1,1,0,1,[[251,1,1,0,1]]],[10,1,1,1,2,[[292,1,1,1,2]]]],[7600,8783]]],["did",[3,2,[[9,2,1,0,1,[[277,2,1,0,1]]],[16,1,1,1,2,[[427,1,1,1,2]]]],[8266,12735]]],["doest",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19320]]],["fare",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7636]]],["favour",[1,1,[[21,1,1,0,1,[[678,1,1,0,1]]]],[17650]]],["health",[2,2,[[0,1,1,0,1,[[42,1,1,0,1]]],[9,1,1,1,2,[[286,1,1,1,2]]]],[1318,8563]]],["peace",[161,148,[[0,6,6,0,6,[[14,1,1,0,1],[25,2,2,1,3],[27,1,1,3,4],[40,1,1,4,5],[43,1,1,5,6]]],[1,2,2,6,8,[[53,1,1,6,7],[67,1,1,7,8]]],[2,1,1,8,9,[[115,1,1,8,9]]],[3,2,2,9,11,[[122,1,1,9,10],[141,1,1,10,11]]],[4,5,5,11,16,[[154,1,1,11,12],[172,2,2,12,14],[175,1,1,14,15],[181,1,1,15,16]]],[5,2,2,16,18,[[195,1,1,16,17],[196,1,1,17,18]]],[6,4,4,18,22,[[214,1,1,18,19],[218,1,1,19,20],[221,1,1,20,21],[228,1,1,21,22]]],[8,10,9,22,31,[[236,1,1,22,23],[242,1,1,23,24],[255,4,4,24,28],[260,3,2,28,30],[264,1,1,30,31]]],[9,8,8,31,39,[[269,3,3,31,34],[281,2,2,34,36],[283,1,1,36,37],[285,2,2,37,39]]],[10,9,9,39,48,[[292,3,3,39,42],[294,1,1,42,43],[295,1,1,43,44],[310,1,1,44,45],[312,3,3,45,48]]],[11,11,8,48,56,[[317,1,1,48,49],[321,8,5,49,54],[332,1,1,54,55],[334,1,1,55,56]]],[12,4,2,56,58,[[349,3,1,56,57],[359,1,1,57,58]]],[13,6,6,58,64,[[381,1,1,58,59],[384,3,3,59,62],[385,1,1,62,63],[400,1,1,63,64]]],[14,1,1,64,65,[[411,1,1,64,65]]],[16,2,2,65,67,[[434,1,1,65,66],[435,1,1,66,67]]],[17,2,2,67,69,[[440,1,1,67,68],[460,1,1,68,69]]],[18,20,20,69,89,[[481,1,1,69,70],[505,1,1,70,71],[506,1,1,71,72],[511,1,1,72,73],[512,1,1,73,74],[514,2,2,74,76],[532,2,2,76,78],[549,2,2,78,80],[562,2,2,80,82],[596,1,1,82,83],[597,2,2,83,85],[599,1,1,85,86],[602,1,1,86,87],[605,1,1,87,88],[624,1,1,88,89]]],[19,3,3,89,92,[[630,2,2,89,91],[639,1,1,91,92]]],[20,1,1,92,93,[[661,1,1,92,93]]],[22,23,21,93,114,[[687,1,1,93,94],[704,1,1,94,95],[705,2,1,95,96],[710,1,1,96,97],[711,1,1,97,98],[716,1,1,98,99],[717,1,1,99,100],[723,1,1,100,101],[726,2,2,101,103],[730,1,1,103,104],[731,1,1,104,105],[732,2,2,105,107],[733,1,1,107,108],[735,3,3,108,111],[737,2,1,111,112],[738,1,1,112,113],[744,1,1,113,114]]],[23,21,17,114,131,[[748,1,1,114,115],[750,2,1,115,116],[752,3,2,116,118],[756,2,2,118,120],[758,2,2,120,122],[760,1,1,122,123],[767,1,1,123,124],[772,1,1,124,125],[773,4,2,125,127],[774,1,1,127,128],[777,1,1,128,129],[778,1,1,129,130],[787,1,1,130,131]]],[25,6,5,131,136,[[808,1,1,131,132],[814,3,2,132,134],[835,1,1,134,135],[838,1,1,135,136]]],[26,1,1,136,137,[[859,1,1,136,137]]],[30,1,1,137,138,[[888,1,1,137,138]]],[32,1,1,138,139,[[897,1,1,138,139]]],[33,1,1,139,140,[[900,1,1,139,140]]],[36,1,1,140,141,[[910,1,1,140,141]]],[37,5,5,141,146,[[916,1,1,141,142],[918,3,3,142,145],[919,1,1,145,146]]],[38,2,2,146,148,[[926,2,2,146,148]]]],[375,721,723,794,1211,1341,1619,2022,3530,3849,4483,4964,5437,5438,5506,5698,6052,6085,6616,6728,6860,6999,7229,7366,7737,7743,7751,7772,7867,7896,7974,8102,8103,8104,8398,8416,8452,8535,8541,8775,8776,8803,8868,8890,9426,9497,9507,9508,9666,9773,9774,9775,9778,9787,10117,10165,10738,10973,11495,11558,11568,11569,11577,11961,12249,12864,12869,12975,13463,13973,14302,14319,14402,14430,14461,14487,14750,14752,15003,15007,15279,15281,16063,16080,16081,16095,16115,16132,16365,16457,16472,16739,17367,17836,18142,18156,18276,18286,18407,18420,18568,18632,18636,18703,18716,18733,18736,18752,18767,18784,18786,18808,18838,18934,19037,19103,19164,19168,19254,19261,19306,19312,19341,19501,19627,19642,19646,19672,19781,19806,20009,20602,20718,20724,21338,21423,22034,22517,22638,22699,22864,22960,22986,22992,22995,23009,23108,23109]]],["peaceable",[2,2,[[22,1,1,0,1,[[710,1,1,0,1]]],[23,1,1,1,2,[[769,1,1,1,2]]]],[18277,19571]]],["peaceably",[7,7,[[0,1,1,0,1,[[36,1,1,0,1]]],[6,2,2,1,3,[[221,1,1,1,2],[231,1,1,2,3]]],[8,1,1,3,4,[[251,1,1,3,4]]],[10,1,1,4,5,[[292,1,1,4,5]]],[12,1,1,5,6,[[349,1,1,5,6]]],[23,1,1,6,7,[[753,1,1,6,7]]]],[1087,6842,7115,7599,8783,10737,19183]]],["prospered",[1,1,[[9,1,1,0,1,[[277,1,1,0,1]]]],[8266]]],["prosperity",[4,4,[[17,1,1,0,1,[[450,1,1,0,1]]],[18,2,2,1,3,[[512,1,1,1,2],[550,1,1,2,3]]],[23,1,1,3,4,[[777,1,1,3,4]]]],[13224,14437,15023,19784]]],["prosperous",[1,1,[[37,1,1,0,1,[[918,1,1,0,1]]]],[22988]]],["rest",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14493]]],["safe",[3,3,[[9,2,2,0,2,[[284,2,2,0,2]]],[17,1,1,2,3,[[456,1,1,2,3]]]],[8507,8510,13364]]],["safely",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18454]]],["salute",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9806]]],["welfare",[5,5,[[0,1,1,0,1,[[42,1,1,0,1]]],[1,1,1,1,2,[[67,1,1,1,2]]],[12,1,1,2,3,[[355,1,1,2,3]]],[18,1,1,3,4,[[546,1,1,3,4]]],[23,1,1,4,5,[[782,1,1,4,5]]]],[1317,2006,10900,14957,19899]]],["well",[14,9,[[0,5,3,0,3,[[28,2,1,0,1],[36,2,1,1,2],[42,1,1,2,3]]],[9,1,1,3,4,[[284,1,1,3,4]]],[11,8,5,4,9,[[316,5,2,4,6],[317,2,2,6,8],[321,1,1,8,9]]]],[801,1097,1317,8506,9626,9629,9668,9669,9767]]],["wholly",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19285]]]]},{"k":"H7966","v":[["*",[3,3,[[22,1,1,0,1,[[712,1,1,0,1]]],[27,1,1,1,2,[[870,1,1,1,2]]],[32,1,1,2,3,[[899,1,1,2,3]]]],[18311,22215,22667]]],["recompence",[1,1,[[27,1,1,0,1,[[870,1,1,0,1]]]],[22215]]],["recompences",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18311]]],["reward",[1,1,[[32,1,1,0,1,[[899,1,1,0,1]]]],[22667]]]]},{"k":"H7967","v":[["Shallum",[27,26,[[11,5,5,0,5,[[327,4,4,0,4],[334,1,1,4,5]]],[12,11,10,5,15,[[339,2,2,5,7],[340,1,1,7,8],[341,1,1,8,9],[343,2,2,9,11],[344,1,1,11,12],[346,4,3,12,15]]],[13,2,2,15,17,[[394,1,1,15,16],[400,1,1,16,17]]],[14,4,4,17,21,[[404,1,1,17,18],[409,1,1,18,19],[412,2,2,19,21]]],[15,2,2,21,23,[[415,1,1,21,22],[419,1,1,22,23]]],[23,3,3,23,26,[[766,1,1,23,24],[776,1,1,24,25],[779,1,1,25,26]]]],[9935,9938,9939,9940,10159,10346,10347,10376,10410,10466,10467,10548,10632,10634,10646,11776,11955,12069,12175,12276,12294,12339,12465,19465,19738,19827]]]]},{"k":"H7968","v":[["Shallun",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12342]]]]},{"k":"H7969","v":[["*",[430,381,[[0,29,27,0,27,[[4,2,2,0,2],[5,2,2,2,4],[6,1,1,4,5],[8,2,2,5,7],[10,2,2,7,9],[13,2,2,9,11],[16,1,1,11,12],[17,2,2,12,14],[28,2,2,14,16],[29,1,1,16,17],[37,1,1,17,18],[39,8,6,18,24],[41,1,1,24,25],[44,1,1,25,26],[45,1,1,26,27]]],[1,35,27,27,54,[[51,1,1,27,28],[52,1,1,28,29],[54,1,1,29,30],[55,1,1,30,31],[56,1,1,31,32],[57,1,1,32,33],[59,2,2,33,35],[64,1,1,35,36],[68,1,1,36,37],[70,1,1,37,38],[72,2,2,38,40],[74,4,2,40,42],[76,5,3,42,45],[81,1,1,45,46],[83,2,2,46,48],[86,4,2,48,50],[87,6,4,50,54]]],[2,5,5,54,59,[[101,1,1,54,55],[103,1,1,55,56],[108,1,1,56,57],[114,1,1,57,58],[116,1,1,58,59]]],[3,37,33,59,92,[[117,3,3,59,62],[118,3,3,62,65],[119,3,3,65,68],[120,1,1,68,69],[126,2,1,69,70],[128,2,1,70,71],[131,1,1,71,72],[138,3,3,72,75],[140,1,1,75,76],[142,4,4,76,80],[144,3,3,80,83],[145,5,4,83,87],[147,2,2,87,89],[149,2,2,89,91],[151,2,1,91,92]]],[4,9,8,92,100,[[156,1,1,92,93],[166,1,1,93,94],[168,1,1,94,95],[169,1,1,95,96],[171,5,4,96,100]]],[5,16,16,100,116,[[187,1,1,100,101],[188,2,2,101,103],[189,1,1,103,104],[193,2,2,104,106],[195,1,1,106,107],[201,1,1,107,108],[203,1,1,108,109],[204,1,1,109,110],[205,1,1,110,111],[207,5,5,111,116]]],[6,19,18,116,134,[[211,1,1,116,117],[217,7,6,117,123],[218,1,1,123,124],[219,2,2,124,126],[220,1,1,126,127],[221,1,1,127,128],[224,1,1,128,129],[225,2,2,129,131],[226,2,2,131,133],[229,1,1,133,134]]],[8,25,21,134,155,[[236,1,1,134,135],[237,2,2,135,137],[244,1,1,137,138],[245,3,1,138,139],[246,2,2,139,141],[248,3,3,141,144],[252,3,2,144,146],[255,2,2,146,148],[259,1,1,148,149],[260,1,1,149,150],[261,1,1,150,151],[265,3,2,151,153],[266,2,2,153,155]]],[9,23,20,155,175,[[268,2,2,155,157],[271,1,1,157,158],[272,1,1,158,159],[279,1,1,159,160],[280,1,1,160,161],[284,1,1,161,162],[286,1,1,162,163],[287,2,2,163,165],[289,10,8,165,173],[290,3,2,173,175]]],[10,27,21,175,196,[[292,2,2,175,177],[294,1,1,177,178],[295,2,1,178,179],[296,1,1,179,180],[297,10,6,180,186],[299,1,1,186,187],[300,3,2,187,189],[301,1,1,189,190],[302,1,1,190,191],[305,3,3,191,194],[307,1,1,194,195],[312,1,1,195,196]]],[11,19,18,196,214,[[314,1,1,196,197],[315,2,2,197,199],[321,1,1,199,200],[324,1,1,200,201],[325,4,4,201,205],[329,1,1,205,206],[330,3,3,206,209],[335,2,1,209,210],[336,2,2,210,212],[337,2,2,212,214]]],[12,40,35,214,249,[[339,3,3,214,217],[340,2,2,217,219],[343,2,2,219,221],[344,1,1,221,222],[347,1,1,222,223],[348,12,9,223,232],[349,3,3,232,235],[350,1,1,235,236],[358,4,2,236,238],[360,3,3,238,241],[361,2,2,241,243],[362,3,3,243,246],[363,1,1,246,247],[366,2,2,247,249]]],[13,33,27,249,276,[[368,3,3,249,252],[370,5,2,252,254],[372,1,1,254,255],[373,1,1,255,256],[374,1,1,256,257],[375,3,2,257,259],[376,1,1,259,260],[377,2,1,260,261],[379,1,1,261,262],[380,2,2,262,264],[383,2,2,264,266],[386,1,1,266,267],[391,2,2,267,269],[392,1,1,269,270],[395,1,1,270,271],[397,1,1,271,272],[401,2,2,272,274],[402,3,2,274,276]]],[14,20,19,276,295,[[404,15,14,276,290],[410,3,3,290,293],[412,2,2,293,295]]],[15,14,14,295,309,[[414,1,1,295,296],[419,13,13,296,309]]],[16,10,10,309,319,[[426,1,1,309,310],[428,2,2,310,312],[429,1,1,312,313],[433,2,2,313,315],[434,4,4,315,319]]],[17,10,10,319,329,[[436,4,4,319,323],[437,1,1,323,324],[467,3,3,324,327],[468,1,1,327,328],[477,1,1,328,329]]],[19,4,4,329,333,[[657,4,4,329,333]]],[22,3,3,333,336,[[694,1,1,333,334],[695,1,1,334,335],[698,1,1,335,336]]],[23,8,6,336,342,[[745,1,1,336,337],[769,2,1,337,338],[780,1,1,338,339],[796,4,3,339,342]]],[25,20,16,342,358,[[805,2,2,342,344],[815,3,3,344,347],[841,8,4,347,351],[842,3,3,351,354],[849,4,4,354,358]]],[26,9,9,358,367,[[850,2,2,358,360],[857,2,2,360,362],[859,3,3,362,365],[860,1,1,365,366],[861,1,1,366,367]]],[29,11,11,367,378,[[879,5,5,367,372],[880,3,3,372,375],[882,3,3,375,378]]],[31,3,2,378,380,[[889,2,1,378,379],[891,1,1,379,380]]],[37,1,1,380,381,[[921,1,1,380,381]]]],[127,128,147,152,172,224,233,279,281,340,350,422,426,430,797,829,866,1143,1182,1184,1185,1188,1190,1191,1269,1380,1401,1556,1597,1635,1673,1692,1737,1799,1800,1942,2041,2088,2158,2161,2227,2228,2273,2286,2287,2466,2519,2520,2622,2623,2634,2647,2648,2659,3048,3121,3304,3490,3576,3627,3647,3650,3671,3688,3690,3735,3738,3742,3787,4021,4063,4162,4403,4407,4408,4456,4496,4514,4536,4551,4589,4597,4605,4611,4617,4621,4622,4700,4707,4768,4799,4859,5045,5318,5358,5370,5408,5413,5415,5421,5862,5885,5891,5895,5979,5980,6053,6216,6286,6297,6327,6385,6387,6400,6413,6414,6529,6700,6701,6702,6710,6714,6716,6723,6776,6797,6813,6855,6923,6933,6940,6964,6976,7028,7236,7253,7261,7411,7421,7453,7456,7487,7502,7506,7631,7632,7750,7771,7841,7863,7907,7990,7991,8015,8017,8067,8080,8137,8168,8355,8383,8492,8558,8581,8596,8662,8666,8669,8670,8671,8672,8675,8676,8704,8705,8781,8809,8876,8894,8932,8935,8938,8939,8946,8959,8961,9076,9096,9101,9111,9156,9251,9277,9282,9338,9481,9568,9586,9589,9788,9856,9872,9889,9890,9896,9988,10025,10034,10038,10196,10203,10210,10239,10240,10309,10322,10328,10365,10384,10514,10516,10541,10665,10684,10685,10688,10691,10692,10693,10694,10697,10698,10747,10749,10759,10774,10944,10946,10991,10992,11006,11028,11033,11051,11066,11076,11088,11168,11191,11213,11228,11229,11250,11251,11295,11334,11359,11380,11385,11400,11431,11455,11483,11484,11530,11537,11612,11709,11717,11745,11824,11870,11973,11974,11995,12002,12031,12038,12044,12046,12048,12052,12055,12059,12061,12062,12063,12085,12091,12092,12206,12216,12233,12260,12261,12318,12429,12437,12442,12443,12449,12452,12455,12456,12458,12459,12480,12486,12487,12705,12759,12760,12778,12826,12829,12835,12849,12851,12852,12871,12872,12873,12886,12902,13629,13631,13633,13679,13935,17266,17269,17272,17280,17983,17989,18032,18948,19537,19865,20300,20304,20306,20534,20538,20745,20747,20749,21487,21488,21498,21525,21532,21542,21548,21733,21734,21735,21736,21738,21742,21962,21975,22016,22017,22018,22038,22093,22367,22370,22373,22375,22377,22380,22383,22385,22414,22417,22418,22548,22561,23036]]],["+",[34,34,[[0,3,3,0,3,[[13,1,1,0,1],[16,1,1,1,2],[37,1,1,2,3]]],[1,2,2,3,5,[[83,2,2,3,5]]],[3,4,4,5,9,[[119,2,2,5,7],[145,2,2,7,9]]],[5,5,5,9,14,[[205,1,1,9,10],[207,4,4,10,14]]],[8,1,1,14,15,[[248,1,1,14,15]]],[10,1,1,15,16,[[297,1,1,15,16]]],[11,2,2,16,18,[[325,2,2,16,18]]],[12,5,5,18,23,[[343,2,2,18,20],[361,1,1,20,21],[362,1,1,21,22],[363,1,1,22,23]]],[16,6,6,23,29,[[428,2,2,23,25],[433,1,1,25,26],[434,3,3,26,29]]],[17,1,1,29,30,[[468,1,1,29,30]]],[19,1,1,30,31,[[657,1,1,30,31]]],[23,2,2,31,33,[[745,1,1,31,32],[769,1,1,32,33]]],[25,1,1,33,34,[[841,1,1,33,34]]]],[340,422,1143,2519,2520,3735,3738,4621,4622,6327,6385,6387,6400,6414,7506,8935,9889,9890,10514,10516,11028,11066,11088,12759,12760,12829,12835,12851,12852,13679,17266,18948,19537,21488]]],["Three",[8,8,[[1,4,4,0,4,[[72,2,2,0,2],[74,1,1,2,3],[86,1,1,3,4]]],[4,1,1,4,5,[[168,1,1,4,5]]],[10,1,1,5,6,[[305,1,1,5,6]]],[11,1,1,6,7,[[325,1,1,6,7]]],[37,1,1,7,8,[[921,1,1,7,8]]]],[2158,2161,2228,2623,5358,9251,9896,23036]]],["stories",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21542]]],["third",[9,9,[[1,1,1,0,1,[[68,1,1,0,1]]],[10,2,2,1,3,[[305,2,2,1,3]]],[11,1,1,3,4,[[330,1,1,3,4]]],[13,1,1,4,5,[[383,1,1,4,5]]],[16,1,1,5,6,[[426,1,1,5,6]]],[26,3,3,6,9,[[850,1,1,6,7],[857,1,1,7,8],[859,1,1,8,9]]]],[2041,9277,9282,10025,11530,12705,21738,21962,22016]]],["three",[378,333,[[0,26,24,0,24,[[4,2,2,0,2],[5,2,2,2,4],[6,1,1,4,5],[8,2,2,5,7],[10,2,2,7,9],[13,1,1,9,10],[17,2,2,10,12],[28,2,2,12,14],[29,1,1,14,15],[39,8,6,15,21],[41,1,1,21,22],[44,1,1,22,23],[45,1,1,23,24]]],[1,28,22,24,46,[[51,1,1,24,25],[52,1,1,25,26],[54,1,1,26,27],[55,1,1,27,28],[56,1,1,28,29],[57,1,1,29,30],[59,2,2,30,32],[64,1,1,32,33],[70,1,1,33,34],[74,3,2,34,36],[76,5,3,36,39],[81,1,1,39,40],[86,3,2,40,42],[87,6,4,42,46]]],[2,5,5,46,51,[[101,1,1,46,47],[103,1,1,47,48],[108,1,1,48,49],[114,1,1,49,50],[116,1,1,50,51]]],[3,33,30,51,81,[[117,3,3,51,54],[118,3,3,54,57],[119,1,1,57,58],[120,1,1,58,59],[126,2,1,59,60],[128,2,1,60,61],[131,1,1,61,62],[138,3,3,62,65],[140,1,1,65,66],[142,4,4,66,70],[144,3,3,70,73],[145,3,3,73,76],[147,2,2,76,78],[149,2,2,78,80],[151,2,1,80,81]]],[4,8,7,81,88,[[156,1,1,81,82],[166,1,1,82,83],[169,1,1,83,84],[171,5,4,84,88]]],[5,11,11,88,99,[[187,1,1,88,89],[188,2,2,89,91],[189,1,1,91,92],[193,2,2,92,94],[195,1,1,94,95],[201,1,1,95,96],[203,1,1,96,97],[204,1,1,97,98],[207,1,1,98,99]]],[6,19,18,99,117,[[211,1,1,99,100],[217,7,6,100,106],[218,1,1,106,107],[219,2,2,107,109],[220,1,1,109,110],[221,1,1,110,111],[224,1,1,111,112],[225,2,2,112,114],[226,2,2,114,116],[229,1,1,116,117]]],[8,24,20,117,137,[[236,1,1,117,118],[237,2,2,118,120],[244,1,1,120,121],[245,3,1,121,122],[246,2,2,122,124],[248,2,2,124,126],[252,3,2,126,128],[255,2,2,128,130],[259,1,1,130,131],[260,1,1,131,132],[261,1,1,132,133],[265,3,2,133,135],[266,2,2,135,137]]],[9,23,20,137,157,[[268,2,2,137,139],[271,1,1,139,140],[272,1,1,140,141],[279,1,1,141,142],[280,1,1,142,143],[284,1,1,143,144],[286,1,1,144,145],[287,2,2,145,147],[289,10,8,147,155],[290,3,2,155,157]]],[10,23,17,157,174,[[292,2,2,157,159],[294,1,1,159,160],[295,2,1,160,161],[296,1,1,161,162],[297,9,5,162,167],[299,1,1,167,168],[300,3,2,168,170],[301,1,1,170,171],[302,1,1,171,172],[307,1,1,172,173],[312,1,1,173,174]]],[11,15,14,174,188,[[314,1,1,174,175],[315,2,2,175,177],[321,1,1,177,178],[324,1,1,178,179],[325,1,1,179,180],[329,1,1,180,181],[330,2,2,181,183],[335,2,1,183,184],[336,2,2,184,186],[337,2,2,186,188]]],[12,35,30,188,218,[[339,3,3,188,191],[340,2,2,191,193],[344,1,1,193,194],[347,1,1,194,195],[348,12,9,195,204],[349,3,3,204,207],[350,1,1,207,208],[358,4,2,208,210],[360,3,3,210,213],[361,1,1,213,214],[362,2,2,214,216],[366,2,2,216,218]]],[13,32,26,218,244,[[368,3,3,218,221],[370,5,2,221,223],[372,1,1,223,224],[373,1,1,224,225],[374,1,1,225,226],[375,3,2,226,228],[376,1,1,228,229],[377,2,1,229,230],[379,1,1,230,231],[380,2,2,231,233],[383,1,1,233,234],[386,1,1,234,235],[391,2,2,235,237],[392,1,1,237,238],[395,1,1,238,239],[397,1,1,239,240],[401,2,2,240,242],[402,3,2,242,244]]],[14,20,19,244,263,[[404,15,14,244,258],[410,3,3,258,261],[412,2,2,261,263]]],[15,14,14,263,277,[[414,1,1,263,264],[419,13,13,264,277]]],[16,3,3,277,280,[[429,1,1,277,278],[433,1,1,278,279],[434,1,1,279,280]]],[17,9,9,280,289,[[436,4,4,280,284],[437,1,1,284,285],[467,3,3,285,288],[477,1,1,288,289]]],[19,3,3,289,292,[[657,3,3,289,292]]],[22,3,3,292,295,[[694,1,1,292,293],[695,1,1,293,294],[698,1,1,294,295]]],[23,6,5,295,300,[[769,1,1,295,296],[780,1,1,296,297],[796,4,3,297,300]]],[25,18,14,300,314,[[805,2,2,300,302],[815,3,3,302,305],[841,7,3,305,308],[842,2,2,308,310],[849,4,4,310,314]]],[26,6,6,314,320,[[850,1,1,314,315],[857,1,1,315,316],[859,2,2,316,318],[860,1,1,318,319],[861,1,1,319,320]]],[29,11,11,320,331,[[879,5,5,320,325],[880,3,3,325,328],[882,3,3,328,331]]],[31,3,2,331,333,[[889,2,1,331,332],[891,1,1,332,333]]]],[127,128,147,152,172,224,233,279,281,350,426,430,797,829,866,1182,1184,1185,1188,1190,1191,1269,1380,1401,1556,1597,1635,1673,1692,1737,1799,1800,1942,2088,2227,2228,2273,2286,2287,2466,2622,2623,2634,2647,2648,2659,3048,3121,3304,3490,3576,3627,3647,3650,3671,3688,3690,3742,3787,4021,4063,4162,4403,4407,4408,4456,4496,4514,4536,4551,4589,4597,4605,4611,4617,4622,4700,4707,4768,4799,4859,5045,5318,5370,5408,5413,5415,5421,5862,5885,5891,5895,5979,5980,6053,6216,6286,6297,6413,6529,6700,6701,6702,6710,6714,6716,6723,6776,6797,6813,6855,6923,6933,6940,6964,6976,7028,7236,7253,7261,7411,7421,7453,7456,7487,7502,7631,7632,7750,7771,7841,7863,7907,7990,7991,8015,8017,8067,8080,8137,8168,8355,8383,8492,8558,8581,8596,8662,8666,8669,8670,8671,8672,8675,8676,8704,8705,8781,8809,8876,8894,8932,8938,8939,8946,8959,8961,9076,9096,9101,9111,9156,9338,9481,9568,9586,9589,9788,9856,9872,9988,10034,10038,10196,10203,10210,10239,10240,10309,10322,10328,10365,10384,10541,10665,10684,10685,10688,10691,10692,10693,10694,10697,10698,10747,10749,10759,10774,10944,10946,10991,10992,11006,11033,11051,11076,11168,11191,11213,11228,11229,11250,11251,11295,11334,11359,11380,11385,11400,11431,11455,11483,11484,11537,11612,11709,11717,11745,11824,11870,11973,11974,11995,12002,12031,12038,12044,12046,12048,12052,12055,12059,12061,12062,12063,12085,12091,12092,12206,12216,12233,12260,12261,12318,12429,12437,12442,12443,12449,12452,12455,12456,12458,12459,12480,12486,12487,12778,12826,12849,12871,12872,12873,12886,12902,13629,13631,13633,13935,17269,17272,17280,17983,17989,18032,19537,19865,20300,20304,20306,20534,20538,20745,20747,20749,21487,21498,21525,21532,21548,21733,21734,21735,21736,21742,21975,22017,22018,22038,22093,22367,22370,22373,22375,22377,22380,22383,22385,22414,22417,22418,22548,22561]]]]},{"k":"H7970","v":[["*",[172,162,[[0,18,17,0,17,[[4,3,3,0,3],[5,1,1,3,4],[10,7,7,4,11],[17,2,1,11,12],[24,1,1,12,13],[31,1,1,13,14],[40,1,1,14,15],[45,1,1,15,16],[46,1,1,16,17]]],[1,9,9,17,26,[[55,3,3,17,20],[61,2,2,20,22],[70,1,1,22,23],[75,1,1,23,24],[85,1,1,24,25],[87,1,1,25,26]]],[2,2,2,26,28,[[101,1,1,26,27],[116,1,1,27,28]]],[3,37,37,28,65,[[117,2,2,28,30],[118,2,2,30,32],[120,8,8,32,40],[123,13,13,40,53],[136,1,1,53,54],[142,3,3,54,57],[147,8,8,57,65]]],[4,2,2,65,67,[[154,1,1,65,66],[186,1,1,66,67]]],[5,3,3,67,70,[[193,1,1,67,68],[194,1,1,68,69],[198,1,1,69,70]]],[6,15,9,70,79,[[220,3,1,70,71],[222,4,2,71,73],[224,6,4,73,77],[230,2,2,77,79]]],[8,4,4,79,83,[[239,1,1,79,80],[244,1,1,80,81],[246,1,1,81,82],[248,1,1,82,83]]],[9,7,7,83,90,[[271,2,2,83,85],[272,1,1,85,86],[289,4,4,86,90]]],[10,14,14,90,104,[[292,1,1,90,91],[294,1,1,91,92],[295,1,1,92,93],[296,1,1,93,94],[297,3,3,94,97],[306,2,2,97,99],[310,3,3,99,102],[312,2,2,102,104]]],[11,8,8,104,112,[[320,1,1,104,105],[325,1,1,105,106],[327,3,3,106,109],[330,1,1,109,110],[334,1,1,110,111],[337,1,1,111,112]]],[12,16,13,112,125,[[340,1,1,112,113],[344,2,2,113,115],[348,3,3,115,118],[349,3,2,118,120],[352,1,1,120,121],[356,1,1,121,122],[360,2,1,122,123],[364,2,1,123,124],[366,1,1,124,125]]],[13,11,11,125,136,[[369,1,1,125,126],[370,1,1,126,127],[381,1,1,127,128],[382,2,2,128,130],[386,1,1,130,131],[387,2,2,131,133],[390,1,1,133,134],[400,1,1,134,135],[401,1,1,135,136]]],[14,7,7,136,143,[[403,2,2,136,138],[404,5,5,138,143]]],[15,8,8,143,151,[[417,1,1,143,144],[419,6,6,144,150],[425,1,1,150,151]]],[16,1,1,151,152,[[429,1,1,151,152]]],[23,3,3,152,155,[[782,1,1,152,153],[796,2,2,153,155]]],[25,4,4,155,159,[[802,1,1,155,156],[841,1,1,156,157],[842,1,1,157,158],[847,1,1,158,159]]],[26,1,1,159,160,[[861,1,1,159,160]]],[37,2,2,160,162,[[921,2,2,160,162]]]],[108,110,121,152,278,280,282,283,284,286,288,454,675,943,1241,1401,1429,1671,1673,1675,1856,1857,2109,2243,2581,2657,3048,3574,3639,3641,3679,3681,3746,3766,3773,3778,3782,3783,3786,3790,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935,4340,4496,4526,4540,4699,4700,4702,4703,4704,4707,4708,4709,4952,5847,5981,6005,6154,6815,6878,6883,6920,6921,6922,6928,7085,7093,7307,7413,7453,7490,8136,8137,8158,8666,8676,8677,8692,8781,8866,8891,8898,8936,8940,8957,9306,9312,9409,9423,9424,9511,9522,9744,9881,9933,9938,9942,10038,10146,10249,10365,10539,10542,10688,10698,10715,10724,10754,10798,10914,10986,11115,11191,11244,11248,11509,11510,11521,11618,11629,11644,11692,11934,11973,12025,12026,12062,12069,12092,12093,12094,12396,12458,12465,12487,12488,12489,12490,12677,12773,19905,20305,20307,20465,21494,21532,21677,22093,23040,23041]]],["Thirty",[4,4,[[0,1,1,0,1,[[31,1,1,0,1]]],[11,1,1,1,2,[[320,1,1,1,2]]],[13,1,1,2,3,[[387,1,1,2,3]]],[14,1,1,3,4,[[403,1,1,3,4]]]],[943,9744,11644,12026]]],["thirtieth",[9,9,[[11,3,3,0,3,[[327,2,2,0,2],[337,1,1,2,3]]],[13,2,2,3,5,[[381,1,1,3,4],[382,1,1,4,5]]],[15,2,2,5,7,[[417,1,1,5,6],[425,1,1,6,7]]],[23,1,1,7,8,[[796,1,1,7,8]]],[25,1,1,8,9,[[802,1,1,8,9]]]],[9938,9942,10249,11509,11510,12396,12677,20307,20465]]],["thirty",[159,149,[[0,17,16,0,16,[[4,3,3,0,3],[5,1,1,3,4],[10,7,7,4,11],[17,2,1,11,12],[24,1,1,12,13],[40,1,1,13,14],[45,1,1,14,15],[46,1,1,15,16]]],[1,9,9,16,25,[[55,3,3,16,19],[61,2,2,19,21],[70,1,1,21,22],[75,1,1,22,23],[85,1,1,23,24],[87,1,1,24,25]]],[2,2,2,25,27,[[101,1,1,25,26],[116,1,1,26,27]]],[3,37,37,27,64,[[117,2,2,27,29],[118,2,2,29,31],[120,8,8,31,39],[123,13,13,39,52],[136,1,1,52,53],[142,3,3,53,56],[147,8,8,56,64]]],[4,2,2,64,66,[[154,1,1,64,65],[186,1,1,65,66]]],[5,3,3,66,69,[[193,1,1,66,67],[194,1,1,67,68],[198,1,1,68,69]]],[6,15,9,69,78,[[220,3,1,69,70],[222,4,2,70,72],[224,6,4,72,76],[230,2,2,76,78]]],[8,4,4,78,82,[[239,1,1,78,79],[244,1,1,79,80],[246,1,1,80,81],[248,1,1,81,82]]],[9,7,7,82,89,[[271,2,2,82,84],[272,1,1,84,85],[289,4,4,85,89]]],[10,14,14,89,103,[[292,1,1,89,90],[294,1,1,90,91],[295,1,1,91,92],[296,1,1,92,93],[297,3,3,93,96],[306,2,2,96,98],[310,3,3,98,101],[312,2,2,101,103]]],[11,4,4,103,107,[[325,1,1,103,104],[327,1,1,104,105],[330,1,1,105,106],[334,1,1,106,107]]],[12,16,13,107,120,[[340,1,1,107,108],[344,2,2,108,110],[348,3,3,110,113],[349,3,2,113,115],[352,1,1,115,116],[356,1,1,116,117],[360,2,1,117,118],[364,2,1,118,119],[366,1,1,119,120]]],[13,8,8,120,128,[[369,1,1,120,121],[370,1,1,121,122],[382,1,1,122,123],[386,1,1,123,124],[387,1,1,124,125],[390,1,1,125,126],[400,1,1,126,127],[401,1,1,127,128]]],[14,6,6,128,134,[[403,1,1,128,129],[404,5,5,129,134]]],[15,6,6,134,140,[[419,6,6,134,140]]],[16,1,1,140,141,[[429,1,1,140,141]]],[23,2,2,141,143,[[782,1,1,141,142],[796,1,1,142,143]]],[25,3,3,143,146,[[841,1,1,143,144],[842,1,1,144,145],[847,1,1,145,146]]],[26,1,1,146,147,[[861,1,1,146,147]]],[37,2,2,147,149,[[921,2,2,147,149]]]],[108,110,121,152,278,280,282,283,284,286,288,454,675,1241,1401,1429,1671,1673,1675,1856,1857,2109,2243,2581,2657,3048,3574,3639,3641,3679,3681,3746,3766,3773,3778,3782,3783,3786,3790,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935,4340,4496,4526,4540,4699,4700,4702,4703,4704,4707,4708,4709,4952,5847,5981,6005,6154,6815,6878,6883,6920,6921,6922,6928,7085,7093,7307,7413,7453,7490,8136,8137,8158,8666,8676,8677,8692,8781,8866,8891,8898,8936,8940,8957,9306,9312,9409,9423,9424,9511,9522,9881,9933,10038,10146,10365,10539,10542,10688,10698,10715,10724,10754,10798,10914,10986,11115,11191,11244,11248,11521,11618,11629,11692,11934,11973,12025,12062,12069,12092,12093,12094,12458,12465,12487,12488,12489,12490,12773,19905,20305,21494,21532,21677,22093,23040,23041]]]]},{"k":"H7971","v":[["*",[847,790,[[0,66,64,0,64,[[2,2,2,0,2],[7,5,5,2,7],[11,1,1,7,8],[17,1,1,8,9],[18,3,3,9,12],[19,1,1,12,13],[20,1,1,13,14],[21,2,2,14,16],[23,5,5,16,21],[24,1,1,21,22],[25,3,3,22,25],[26,2,2,25,27],[27,2,2,27,29],[29,1,1,29,30],[30,3,3,30,33],[31,5,4,33,37],[36,4,4,37,41],[37,5,4,41,45],[40,2,2,45,47],[41,2,2,47,49],[42,4,4,49,53],[43,1,1,53,54],[44,6,6,54,60],[45,2,2,60,62],[47,1,1,62,63],[48,1,1,63,64]]],[1,74,65,64,129,[[51,1,1,64,65],[52,7,6,65,71],[53,8,5,71,76],[54,4,3,76,79],[55,2,2,79,81],[56,4,3,81,84],[57,9,8,84,92],[58,12,11,92,103],[59,6,6,103,109],[60,3,2,109,111],[61,1,1,111,112],[62,2,2,112,114],[63,1,1,114,115],[64,1,1,115,116],[67,1,1,116,117],[70,2,2,117,119],[71,3,3,119,122],[72,3,3,122,125],[73,2,2,125,127],[82,2,2,127,129]]],[2,10,10,129,139,[[103,2,2,129,131],[105,4,4,131,135],[107,1,1,135,136],[109,1,1,136,137],[115,2,2,137,139]]],[3,29,26,139,165,[[121,4,3,139,142],[129,6,5,142,147],[130,1,1,147,148],[132,3,3,148,151],[136,2,2,151,153],[137,3,3,153,156],[138,6,5,156,161],[140,1,1,161,162],[147,2,2,162,164],[148,1,1,164,165]]],[4,22,20,165,185,[[153,1,1,165,166],[154,1,1,166,167],[159,1,1,167,168],[161,1,1,168,169],[167,4,3,169,172],[171,1,1,172,173],[173,1,1,173,174],[174,4,3,174,177],[176,3,3,177,180],[177,1,1,180,181],[180,2,2,181,183],[184,1,1,183,184],[186,1,1,184,185]]],[5,23,23,185,208,[[187,1,1,185,186],[188,3,3,186,189],[192,2,2,189,191],[193,2,2,191,193],[194,2,2,193,195],[196,2,2,195,197],[197,1,1,197,198],[200,2,2,198,200],[204,1,1,200,201],[208,3,3,201,204],[210,4,4,204,208]]],[6,38,36,208,244,[[211,2,2,208,210],[212,1,1,210,211],[213,3,3,211,214],[214,1,1,214,215],[215,2,2,215,217],[216,5,4,217,221],[217,2,2,221,223],[219,2,2,223,225],[221,7,6,225,231],[222,1,1,231,232],[223,1,1,232,233],[225,2,2,233,235],[226,1,1,235,236],[228,1,1,236,237],[229,2,2,237,239],[230,3,3,239,242],[231,2,2,242,244]]],[8,67,62,244,306,[[239,1,1,244,245],[240,4,3,245,248],[241,6,5,248,253],[244,3,3,253,256],[245,1,1,256,257],[246,2,2,257,259],[247,2,2,259,261],[248,1,1,261,262],[249,1,1,262,263],[250,3,3,263,266],[251,7,6,266,272],[252,1,1,272,273],[253,1,1,273,274],[254,8,6,274,280],[255,8,8,280,288],[256,1,1,288,289],[257,2,2,289,291],[259,3,3,291,294],[260,6,6,294,300],[261,4,4,300,304],[265,1,1,304,305],[266,1,1,305,306]]],[9,62,56,306,362,[[267,1,1,306,307],[268,1,1,307,308],[269,8,8,308,316],[271,1,1,316,317],[272,1,1,317,318],[274,1,1,318,319],[275,1,1,319,320],[276,8,7,320,327],[277,12,10,327,337],[278,3,3,337,340],[279,4,4,340,344],[280,6,3,344,347],[281,4,4,347,351],[283,1,1,351,352],[284,3,3,352,355],[285,3,3,355,358],[288,2,2,358,360],[290,2,2,360,362]]],[10,48,43,362,405,[[291,2,2,362,364],[292,4,4,364,368],[295,6,5,368,373],[297,1,1,373,374],[298,2,2,374,376],[299,3,3,376,379],[301,3,2,379,381],[302,3,3,381,384],[303,2,1,384,385],[304,1,1,385,386],[305,3,3,386,389],[308,3,3,389,392],[309,1,1,392,393],[310,10,9,393,402],[311,4,3,402,405]]],[11,71,66,405,471,[[313,7,6,405,411],[314,6,5,411,416],[315,1,1,416,417],[316,1,1,417,418],[317,7,7,418,425],[318,8,7,425,432],[319,2,2,432,434],[320,2,2,434,436],[321,2,2,436,438],[322,4,4,438,442],[323,1,1,442,443],[324,1,1,443,444],[326,4,3,444,447],[327,1,1,447,448],[328,4,4,448,452],[329,4,4,452,456],[330,3,3,456,459],[331,5,5,459,464],[332,1,1,464,465],[334,3,3,465,468],[335,2,2,468,470],[336,2,1,470,471]]],[12,17,17,471,488,[[345,1,1,471,472],[347,1,1,472,473],[349,1,1,473,474],[350,3,3,474,477],[351,1,1,477,478],[355,1,1,478,479],[356,7,7,479,486],[358,2,2,486,488]]],[13,37,34,488,522,[[368,7,6,488,494],[372,1,1,494,495],[373,2,2,495,497],[374,1,1,497,498],[376,2,2,498,500],[382,3,3,500,503],[383,1,1,503,504],[390,2,2,504,506],[391,5,4,506,510],[394,1,1,510,511],[396,1,1,511,512],[398,3,3,512,515],[400,4,4,515,519],[401,1,1,519,520],[402,3,2,520,522]]],[14,1,1,522,523,[[410,1,1,522,523]]],[15,14,14,523,537,[[414,3,3,523,526],[416,1,1,526,527],[418,7,7,527,534],[420,2,2,534,536],[425,1,1,536,537]]],[16,15,15,537,552,[[426,1,1,537,538],[427,1,1,538,539],[428,2,2,539,541],[429,1,1,541,542],[430,1,1,542,543],[431,1,1,543,544],[433,2,2,544,546],[434,6,6,546,552]]],[17,20,20,552,572,[[436,4,4,552,556],[437,1,1,556,557],[440,1,1,557,558],[443,1,1,558,559],[447,1,1,559,560],[449,1,1,560,561],[453,1,1,561,562],[455,1,1,562,563],[456,1,1,563,564],[457,1,1,564,565],[463,1,1,565,566],[465,3,3,566,569],[473,1,1,569,570],[474,2,2,570,572]]],[18,32,31,572,603,[[495,2,2,572,574],[497,1,1,574,575],[520,1,1,575,576],[521,1,1,576,577],[527,1,1,577,578],[532,1,1,578,579],[534,2,1,579,580],[551,1,1,580,581],[555,3,3,581,584],[557,1,1,584,585],[558,1,1,585,586],[581,2,2,586,588],[582,4,4,588,592],[583,1,1,592,593],[584,1,1,593,594],[587,1,1,594,595],[588,1,1,595,596],[602,1,1,596,597],[612,1,1,597,598],[615,1,1,598,599],[621,2,2,599,601],[624,2,2,601,603]]],[19,12,12,603,615,[[633,2,2,603,605],[636,1,1,605,606],[637,1,1,606,607],[643,1,1,607,608],[644,1,1,608,609],[649,1,1,609,610],[652,1,1,610,611],[653,1,1,611,612],[656,1,1,612,613],[658,2,2,613,615]]],[20,1,1,615,616,[[669,1,1,615,616]]],[21,1,1,616,617,[[675,1,1,616,617]]],[22,33,31,617,648,[[684,2,1,617,618],[687,1,1,618,619],[688,2,2,619,621],[694,2,2,621,623],[696,1,1,623,624],[697,1,1,624,625],[698,1,1,625,626],[705,2,2,626,628],[710,1,1,628,629],[714,2,2,629,631],[715,5,5,631,636],[717,1,1,636,637],[720,1,1,637,638],[721,1,1,638,639],[723,1,1,639,640],[726,1,1,640,641],[728,2,1,641,642],[733,1,1,642,643],[735,1,1,643,644],[736,2,2,644,646],[739,1,1,646,647],[744,1,1,647,648]]],[23,89,79,648,727,[[745,2,2,648,650],[746,1,1,650,651],[747,2,2,651,653],[751,2,1,653,654],[752,1,1,654,655],[753,2,2,655,657],[758,3,3,657,660],[759,1,1,660,661],[760,2,1,661,662],[761,1,1,662,663],[763,1,1,663,664],[765,1,1,664,665],[767,3,3,665,668],[768,2,2,668,670],[769,7,6,670,676],[770,5,4,676,680],[771,2,2,680,682],[772,3,3,682,685],[773,11,9,685,694],[778,7,5,694,699],[779,2,1,699,700],[780,2,2,700,702],[781,3,3,702,705],[782,3,3,705,708],[783,2,2,708,710],[784,3,3,710,713],[786,5,5,713,718],[787,3,3,718,721],[788,2,1,721,722],[792,1,1,722,723],[793,2,2,723,725],[794,1,1,725,726],[795,1,1,726,727]]],[24,1,1,727,728,[[797,1,1,727,728]]],[25,28,26,728,754,[[803,3,3,728,731],[804,2,2,731,733],[806,3,2,733,735],[808,1,1,735,736],[809,2,2,736,738],[811,1,1,738,739],[814,2,2,739,741],[815,3,3,741,744],[818,3,3,744,747],[824,3,2,747,749],[829,1,1,749,750],[832,2,2,750,752],[840,1,1,752,753],[845,1,1,753,754]]],[26,2,2,754,756,[[859,1,1,754,755],[860,1,1,755,756]]],[27,2,2,756,758,[[866,1,1,756,757],[869,1,1,757,758]]],[28,3,3,758,761,[[877,2,2,758,760],[878,1,1,760,761]]],[29,9,9,761,770,[[879,4,4,761,765],[880,2,2,765,767],[882,1,1,767,768],[885,1,1,768,769],[886,1,1,769,770]]],[30,3,3,770,773,[[888,3,3,770,773]]],[32,1,1,773,774,[[898,1,1,773,774]]],[36,1,1,774,775,[[909,1,1,774,775]]],[37,10,10,775,785,[[911,1,1,775,776],[912,3,3,776,779],[914,1,1,779,780],[916,1,1,780,781],[917,2,2,781,783],[918,1,1,783,784],[919,1,1,784,785]]],[38,5,5,785,790,[[926,3,3,785,788],[927,1,1,788,789],[928,1,1,789,790]]]],[77,78,190,191,192,193,195,318,440,467,470,486,497,527,557,559,598,631,645,647,650,664,719,721,723,769,772,778,779,855,877,900,915,931,933,946,954,1096,1097,1105,1115,1136,1139,1142,1144,1203,1209,1256,1268,1294,1295,1298,1304,1327,1363,1365,1366,1381,1382,1385,1391,1414,1465,1494,1559,1589,1591,1592,1593,1594,1599,1605,1614,1622,1624,1629,1633,1634,1654,1656,1666,1687,1699,1701,1711,1712,1718,1730,1731,1738,1739,1742,1743,1744,1749,1755,1756,1757,1759,1761,1769,1770,1777,1780,1781,1784,1787,1797,1804,1807,1816,1849,1882,1884,1894,1927,2026,2103,2104,2118,2121,2124,2164,2171,2172,2182,2188,2475,2485,3118,3164,3211,3222,3223,3227,3275,3341,3546,3549,3794,3795,3796,4077,4078,4091,4092,4102,4144,4206,4222,4223,4325,4327,4346,4361,4372,4380,4385,4390,4412,4415,4458,4668,4670,4726,4914,4964,5131,5180,5331,5332,5337,5418,5461,5477,5489,5499,5526,5528,5529,5558,5631,5659,5782,5850,5867,5870,5872,5890,5966,5974,5978,5998,6005,6011,6067,6070,6108,6194,6198,6297,6432,6433,6439,6481,6485,6488,6504,6517,6534,6551,6583,6586,6589,6605,6638,6649,6662,6668,6675,6689,6702,6718,6777,6785,6841,6843,6846,6848,6857,6867,6878,6892,6934,6944,6967,6995,7049,7053,7060,7066,7102,7112,7115,7301,7327,7329,7330,7333,7334,7337,7339,7352,7407,7410,7417,7443,7448,7452,7468,7471,7487,7535,7561,7578,7580,7596,7606,7607,7614,7615,7617,7667,7681,7717,7720,7721,7723,7726,7727,7735,7742,7743,7750,7751,7752,7759,7761,7774,7798,7804,7845,7849,7858,7866,7875,7886,7893,7900,7901,7909,7914,7916,7928,8004,8018,8036,8054,8093,8095,8096,8102,8103,8104,8105,8107,8143,8163,8219,8232,8242,8243,8244,8245,8246,8247,8256,8260,8262,8263,8264,8265,8271,8273,8277,8281,8286,8287,8311,8313,8324,8333,8334,8344,8358,8385,8388,8394,8399,8401,8425,8465,8480,8490,8507,8522,8525,8542,8617,8619,8705,8708,8761,8770,8795,8799,8806,8812,8879,8880,8886,8887,8892,8947,9029,9051,9058,9065,9078,9129,9130,9154,9169,9171,9188,9224,9267,9268,9269,9351,9360,9361,9389,9410,9413,9414,9415,9417,9418,9425,9442,9450,9459,9462,9465,9535,9539,9542,9544,9546,9549,9553,9555,9557,9567,9568,9583,9625,9652,9653,9654,9655,9657,9669,9671,9681,9683,9684,9687,9688,9697,9706,9720,9721,9736,9739,9773,9775,9794,9798,9800,9814,9833,9868,9904,9905,9915,9962,9970,9971,9973,9974,9987,9996,10008,10009,10038,10041,10051,10063,10065,10070,10077,10081,10110,10148,10160,10163,10166,10181,10204,10583,10668,10739,10762,10769,10770,10775,10900,10909,10910,10911,10912,10913,10915,10923,10946,10949,11214,11218,11219,11222,11224,11226,11316,11334,11337,11364,11398,11413,11511,11512,11513,11530,11696,11700,11719,11721,11722,11731,11780,11828,11884,11896,11906,11941,11956,11959,11962,11987,12003,12008,12217,12312,12313,12316,12382,12403,12404,12405,12406,12409,12413,12420,12503,12505,12692,12724,12745,12753,12760,12766,12789,12795,12824,12827,12836,12844,12849,12850,12854,12864,12873,12874,12880,12881,12896,12961,13033,13143,13201,13284,13349,13366,13398,13513,13568,13569,13581,13828,13837,13839,14132,14134,14184,14569,14573,14687,14752,14771,15055,15138,15158,15162,15209,15229,15581,15601,15623,15626,15632,15634,15666,15719,15788,15802,16113,16184,16238,16311,16312,16366,16369,16554,16559,16641,16682,16868,16884,17036,17126,17147,17239,17303,17304,17514,17602,17777,17837,17856,17866,17970,17971,17999,18024,18030,18159,18161,18279,18332,18342,18354,18356,18361,18369,18373,18413,18499,18519,18574,18630,18663,18751,18774,18792,18795,18844,18941,18953,18955,18975,19003,19010,19144,19170,19191,19192,19296,19307,19308,19316,19352,19365,19421,19441,19505,19516,19522,19529,19534,19538,19543,19549,19550,19551,19561,19577,19584,19587,19594,19599,19611,19627,19633,19634,19636,19638,19644,19652,19654,19655,19660,19663,19666,19810,19811,19812,19815,19817,19838,19856,19863,19877,19881,19891,19901,19906,19909,19936,19937,19942,19946,19955,19980,19981,19984,19995,19996,19998,19999,20007,20014,20092,20141,20164,20199,20214,20323,20495,20496,20501,20507,20508,20562,20563,20580,20607,20621,20640,20714,20728,20744,20750,20752,20831,20832,20840,21023,21047,21180,21234,21235,21454,21619,22026,22078,22165,22208,22330,22336,22356,22368,22371,22374,22376,22381,22384,22420,22474,22492,22511,22517,22523,22652,22852,22888,22907,22908,22910,22931,22962,22964,22974,22986,23010,23105,23107,23119,23121,23143]]],["+",[117,114,[[0,17,17,0,17,[[7,4,4,0,4],[11,1,1,4,5],[18,2,2,5,7],[21,1,1,7,8],[23,1,1,8,9],[27,2,2,9,11],[36,1,1,11,12],[37,1,1,12,13],[42,2,2,13,15],[44,1,1,15,16],[47,1,1,16,17]]],[1,10,10,17,27,[[51,1,1,17,18],[52,1,1,18,19],[56,1,1,19,20],[57,1,1,20,21],[58,2,2,21,23],[71,1,1,23,24],[72,2,2,24,26],[73,1,1,26,27]]],[2,5,5,27,32,[[103,1,1,27,28],[105,3,3,28,31],[115,1,1,31,32]]],[3,4,3,32,35,[[121,1,1,32,33],[137,1,1,33,34],[138,2,1,34,35]]],[4,3,3,35,38,[[159,1,1,35,36],[167,1,1,36,37],[174,1,1,37,38]]],[5,2,2,38,40,[[210,2,2,38,40]]],[6,5,5,40,45,[[213,2,2,40,42],[216,1,1,42,43],[221,2,2,43,45]]],[8,14,14,45,59,[[240,2,2,45,47],[241,2,2,47,49],[245,1,1,49,50],[247,2,2,50,52],[249,1,1,52,53],[252,1,1,53,54],[254,2,2,54,56],[255,1,1,56,57],[257,1,1,57,58],[261,1,1,58,59]]],[9,11,10,59,69,[[269,1,1,59,60],[274,1,1,60,61],[276,2,2,61,63],[277,3,2,63,65],[278,1,1,65,66],[281,1,1,66,67],[284,1,1,67,68],[285,1,1,68,69]]],[10,10,9,69,78,[[292,1,1,69,70],[295,2,2,70,72],[298,1,1,72,73],[301,2,1,73,74],[302,1,1,74,75],[303,1,1,75,76],[305,1,1,76,77],[310,1,1,77,78]]],[11,7,7,78,85,[[317,1,1,78,79],[322,1,1,79,80],[329,2,2,80,82],[330,1,1,82,83],[331,1,1,83,84],[334,1,1,84,85]]],[12,4,4,85,89,[[345,1,1,85,86],[350,1,1,86,87],[355,1,1,87,88],[356,1,1,88,89]]],[13,4,4,89,93,[[373,1,1,89,90],[376,1,1,90,91],[382,1,1,91,92],[400,1,1,92,93]]],[17,2,2,93,95,[[436,1,1,93,94],[457,1,1,94,95]]],[22,2,2,95,97,[[714,1,1,95,96],[715,1,1,96,97]]],[23,11,11,97,108,[[745,1,1,97,98],[747,1,1,98,99],[753,1,1,99,100],[767,1,1,100,101],[768,1,1,101,102],[780,2,2,102,104],[781,1,1,104,105],[782,1,1,105,106],[784,1,1,106,107],[793,1,1,107,108]]],[25,4,4,108,112,[[806,1,1,108,109],[809,1,1,109,110],[811,1,1,110,111],[814,1,1,111,112]]],[37,1,1,112,113,[[918,1,1,112,113]]],[38,1,1,113,114,[[926,1,1,113,114]]]],[190,191,193,195,318,467,486,557,650,778,779,1115,1139,1294,1304,1382,1465,1559,1599,1687,1731,1756,1757,2118,2171,2172,2182,3164,3211,3223,3227,3546,3796,4346,4412,5131,5337,5477,6481,6488,6586,6589,6675,6857,6867,7329,7330,7334,7339,7443,7468,7471,7535,7667,7721,7723,7751,7804,7916,8102,8219,8243,8247,8260,8265,8287,8394,8507,8542,8799,8879,8887,9051,9130,9169,9188,9269,9414,9653,9800,10008,10009,10041,10063,10148,10583,10769,10900,10915,11334,11413,11513,11941,12881,13398,18332,18354,18955,19003,19191,19505,19534,19856,19863,19877,19901,19955,20164,20562,20621,20640,20728,22986,23105]]],["Cast",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17514]]],["Lay",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[559]]],["Put",[2,2,[[9,1,1,0,1,[[279,1,1,0,1]]],[28,1,1,1,2,[[878,1,1,1,2]]]],[8334,22356]]],["Send",[14,14,[[0,2,2,0,2,[[41,1,1,0,1],[42,1,1,1,2]]],[1,1,1,2,3,[[58,1,1,2,3]]],[3,1,1,3,4,[[129,1,1,3,4]]],[8,2,2,4,6,[[251,2,2,4,6]]],[11,2,2,6,8,[[314,1,1,6,7],[316,1,1,7,8]]],[13,2,2,8,10,[[368,2,2,8,10]]],[18,2,2,10,12,[[497,1,1,10,11],[621,1,1,11,12]]],[22,1,1,12,13,[[694,1,1,12,13]]],[23,1,1,13,14,[[773,1,1,13,14]]]],[1268,1298,1761,4077,7606,7614,9568,9625,11218,11219,14184,16312,17970,19666]]],["away",[40,38,[[0,11,11,0,11,[[20,1,1,0,1],[23,2,2,1,3],[24,1,1,3,4],[25,3,3,4,7],[29,1,1,7,8],[30,2,2,8,10],[43,1,1,10,11]]],[2,1,1,11,12,[[105,1,1,11,12]]],[4,4,4,12,16,[[167,1,1,12,13],[174,2,2,13,15],[176,1,1,15,16]]],[5,4,4,16,20,[[188,1,1,16,17],[194,1,1,17,18],[208,2,2,18,20]]],[8,3,3,20,23,[[244,1,1,20,21],[255,2,2,21,23]]],[9,5,5,23,28,[[269,3,3,23,26],[276,1,1,26,27],[279,1,1,27,28]]],[10,2,1,28,29,[[310,2,1,28,29]]],[11,1,1,29,30,[[318,1,1,29,30]]],[12,2,2,30,32,[[349,1,1,30,31],[356,1,1,31,32]]],[17,3,3,32,35,[[443,1,1,32,33],[449,1,1,33,34],[465,1,1,34,35]]],[22,2,1,35,36,[[728,2,1,35,36]]],[23,1,1,36,37,[[747,1,1,36,37]]],[38,1,1,37,38,[[926,1,1,37,38]]]],[527,645,647,664,719,721,723,855,900,915,1327,3222,5332,5489,5499,5529,5890,6005,6432,6433,7417,7743,7752,8103,8104,8105,8244,8333,9442,9697,10739,10911,13033,13201,13569,18663,19010,23119]]],["brought",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22517]]],["cast",[7,7,[[10,1,1,0,1,[[299,1,1,0,1]]],[17,2,2,1,3,[[453,1,1,1,2],[455,1,1,2,3]]],[18,2,2,3,5,[[551,1,1,3,4],[555,1,1,4,5]]],[23,2,2,5,7,[[759,1,1,5,6],[772,1,1,6,7]]]],[9058,13284,13349,15055,15162,19316,19634]]],["depart",[4,4,[[1,1,1,0,1,[[67,1,1,0,1]]],[5,1,1,1,2,[[210,1,1,1,2]]],[9,1,1,2,3,[[277,1,1,2,3]]],[10,1,1,3,4,[[301,1,1,3,4]]]],[2026,6504,8271,9129]]],["down",[1,1,[[23,1,1,0,1,[[782,1,1,0,1]]]],[19906]]],["forsaken",[1,1,[[22,1,1,0,1,[[705,1,1,0,1]]]],[18161]]],["forth",[39,38,[[0,3,3,0,3,[[2,2,2,0,2],[7,1,1,2,3]]],[1,3,2,3,5,[[53,2,1,3,4],[64,1,1,4,5]]],[4,1,1,5,6,[[177,1,1,5,6]]],[5,1,1,6,7,[[194,1,1,6,7]]],[6,1,1,7,8,[[225,1,1,7,8]]],[8,4,4,8,12,[[259,2,2,8,10],[261,2,2,10,12]]],[9,4,4,12,16,[[267,1,1,12,13],[272,1,1,13,14],[284,2,2,14,16]]],[10,1,1,16,17,[[303,1,1,16,17]]],[17,4,4,17,21,[[436,1,1,17,18],[437,1,1,18,19],[456,1,1,19,20],[463,1,1,20,21]]],[18,6,6,21,27,[[532,1,1,21,22],[534,1,1,22,23],[581,1,1,23,24],[602,1,1,24,25],[615,1,1,25,26],[624,1,1,26,27]]],[19,2,2,27,29,[[636,1,1,27,28],[658,1,1,28,29]]],[22,3,3,29,32,[[705,1,1,29,30],[710,1,1,30,31],[736,1,1,31,32]]],[25,4,4,32,36,[[809,1,1,32,33],[818,2,2,33,35],[832,1,1,35,36]]],[26,1,1,36,37,[[860,1,1,36,37]]],[37,1,1,37,38,[[919,1,1,37,38]]]],[77,78,192,1605,1927,5558,6011,6944,7845,7849,7914,7928,8036,8163,8480,8490,9188,12880,12896,13366,13513,14752,14771,15601,16113,16238,16366,16641,17304,18159,18279,18795,20607,20831,20832,21235,22078,23010]]],["givest",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14687]]],["go",[69,63,[[0,2,1,0,1,[[31,2,1,0,1]]],[1,40,37,1,38,[[52,1,1,1,2],[53,3,2,2,4],[54,3,2,4,6],[55,2,2,6,8],[56,2,2,8,10],[57,8,8,10,18],[58,7,7,18,25],[59,6,6,25,31],[60,3,2,31,33],[62,2,2,33,35],[63,1,1,35,36],[70,2,2,36,38]]],[4,3,3,38,41,[[167,1,1,38,39],[173,1,1,39,40],[174,1,1,40,41]]],[6,4,4,41,45,[[211,1,1,41,42],[212,1,1,42,43],[225,1,1,43,44],[229,1,1,44,45]]],[8,6,6,45,51,[[241,1,1,45,46],[244,1,1,46,47],[254,1,1,47,48],[255,2,2,48,50],[259,1,1,50,51]]],[9,1,1,51,52,[[279,1,1,51,52]]],[10,1,1,52,53,[[310,1,1,52,53]]],[11,1,1,53,54,[[317,1,1,53,54]]],[22,2,2,54,56,[[723,1,1,54,55],[736,1,1,55,56]]],[23,9,7,56,63,[[778,6,4,56,60],[784,2,2,60,62],[794,1,1,62,63]]]],[954,1599,1622,1624,1633,1634,1656,1666,1699,1701,1711,1712,1718,1730,1731,1738,1739,1742,1743,1744,1749,1755,1759,1770,1777,1780,1781,1784,1787,1797,1804,1807,1816,1882,1884,1894,2103,2104,5331,5461,5477,6534,6551,6934,7049,7337,7410,7723,7735,7759,7858,8344,9450,9671,18574,18792,19810,19811,19812,19815,19942,19946,20199]]],["in",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17602]]],["laid",[6,6,[[1,1,1,0,1,[[73,1,1,0,1]]],[16,4,4,1,5,[[433,1,1,1,2],[434,3,3,2,5]]],[30,1,1,5,6,[[888,1,1,5,6]]]],[2188,12824,12844,12849,12850,22523]]],["lay",[6,6,[[0,1,1,0,1,[[36,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]],[16,4,4,2,6,[[427,1,1,2,3],[428,1,1,3,4],[431,1,1,4,5],[434,1,1,5,6]]]],[1105,12692,12745,12753,12795,12836]]],["layeth",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17303]]],["left",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17239]]],["long",[1,1,[[25,1,1,0,1,[[845,1,1,0,1]]]],[21619]]],["loose",[3,3,[[0,1,1,0,1,[[48,1,1,0,1]]],[2,1,1,1,2,[[103,1,1,1,2]]],[17,1,1,2,3,[[465,1,1,2,3]]]],[1494,3118,13568]]],["off",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12382]]],["out",[26,26,[[1,1,1,0,1,[[61,1,1,0,1]]],[2,2,2,1,3,[[107,1,1,1,2],[109,1,1,2,3]]],[3,2,2,3,5,[[121,2,2,3,5]]],[4,1,1,5,6,[[167,1,1,5,6]]],[8,2,2,6,8,[[260,1,1,6,7],[261,1,1,7,8]]],[9,2,2,8,10,[[288,1,1,8,9],[290,1,1,9,10]]],[10,1,1,10,11,[[310,1,1,10,11]]],[11,2,2,11,13,[[318,1,1,11,12],[321,1,1,12,13]]],[17,4,4,13,17,[[447,1,1,13,14],[465,1,1,14,15],[474,2,2,15,17]]],[18,6,6,17,23,[[495,1,1,17,18],[520,1,1,18,19],[521,1,1,19,20],[557,1,1,20,21],[621,1,1,21,22],[624,1,1,22,23]]],[22,1,1,23,24,[[694,1,1,23,24]]],[23,1,1,24,25,[[761,1,1,24,25]]],[25,1,1,25,26,[[832,1,1,25,26]]]],[1849,3275,3341,3794,3795,5332,7866,7909,8617,8708,9425,9681,9775,13143,13581,13837,13839,14132,14569,14573,15209,16311,16369,17971,19365,21234]]],["put",[5,5,[[1,2,2,0,2,[[71,2,2,0,2]]],[3,1,1,2,3,[[121,1,1,2,3]]],[6,1,1,3,4,[[215,1,1,3,4]]],[12,1,1,4,5,[[350,1,1,4,5]]]],[2121,2124,3795,6649,10770]]],["send",[109,105,[[0,8,7,0,7,[[23,2,2,0,2],[26,1,1,2,3],[36,1,1,3,4],[37,2,1,4,5],[42,1,1,5,6],[44,1,1,6,7]]],[1,6,5,7,12,[[52,1,1,7,8],[53,2,1,8,9],[72,1,1,9,10],[82,2,2,10,12]]],[2,1,1,12,13,[[115,1,1,12,13]]],[3,2,2,13,15,[[129,1,1,13,14],[147,1,1,14,15]]],[4,6,6,15,21,[[153,1,1,15,16],[171,1,1,16,17],[176,1,1,17,18],[180,2,2,18,20],[184,1,1,20,21]]],[5,1,1,21,22,[[204,1,1,21,22]]],[6,1,1,22,23,[[223,1,1,22,23]]],[8,9,9,23,32,[[241,2,2,23,25],[244,1,1,25,26],[246,1,1,26,27],[251,1,1,27,28],[255,2,2,28,30],[256,1,1,30,31],[260,1,1,31,32]]],[9,3,3,32,35,[[280,1,1,32,33],[281,1,1,33,34],[283,1,1,34,35]]],[10,3,3,35,38,[[298,1,1,35,36],[308,1,1,36,37],[310,1,1,37,38]]],[11,7,7,38,45,[[314,1,1,38,39],[317,2,2,39,41],[318,1,1,41,42],[319,1,1,42,43],[321,1,1,43,44],[327,1,1,44,45]]],[12,1,1,45,46,[[350,1,1,45,46]]],[13,6,6,46,52,[[368,2,2,46,48],[372,1,1,48,49],[373,1,1,49,50],[394,1,1,50,51],[398,1,1,51,52]]],[15,4,4,52,56,[[414,2,2,52,54],[420,2,2,54,56]]],[17,1,1,56,57,[[473,1,1,56,57]]],[18,2,2,57,59,[[534,1,1,57,58],[587,1,1,58,59]]],[19,3,3,59,62,[[637,1,1,59,60],[649,1,1,60,61],[652,1,1,61,62]]],[22,7,6,62,68,[[684,2,1,62,63],[688,2,2,63,65],[697,1,1,65,66],[735,1,1,66,67],[744,1,1,67,68]]],[23,17,16,68,84,[[745,1,1,68,69],[746,1,1,69,70],[752,1,1,70,71],[753,1,1,71,72],[760,2,1,72,73],[769,4,4,73,77],[771,1,1,77,78],[773,1,1,78,79],[786,2,2,79,81],[787,1,1,81,82],[792,1,1,82,83],[795,1,1,83,84]]],[25,10,10,84,94,[[803,2,2,84,86],[806,2,2,86,88],[808,1,1,88,89],[815,3,3,89,92],[829,1,1,92,93],[840,1,1,93,94]]],[27,1,1,94,95,[[869,1,1,94,95]]],[28,1,1,95,96,[[877,1,1,95,96]]],[29,7,7,96,103,[[879,4,4,96,100],[880,2,2,100,102],[886,1,1,102,103]]],[38,2,2,103,105,[[927,1,1,103,104],[928,1,1,104,105]]]],[598,631,772,1096,1136,1295,1363,1589,1614,2164,2475,2485,3549,4077,4668,4914,5418,5526,5631,5659,5782,6297,6892,7333,7334,7407,7448,7596,7742,7761,7774,7886,8388,8425,8465,9029,9360,9417,9567,9652,9654,9687,9720,9773,9962,10762,11214,11226,11316,11337,11780,11884,12312,12313,12503,12505,13828,14771,15788,16682,17036,17126,17777,17856,17866,18024,18774,18941,18953,18975,19170,19192,19352,19543,19549,19550,19561,19599,19652,19980,19981,20007,20092,20214,20495,20496,20562,20563,20580,20744,20750,20752,21180,21454,22208,22330,22368,22371,22374,22376,22381,22384,22492,23121,23143]]],["sendest",[2,2,[[5,1,1,0,1,[[187,1,1,0,1]]],[11,1,1,1,2,[[313,1,1,1,2]]]],[5867,9539]]],["sendeth",[5,5,[[4,1,1,0,1,[[176,1,1,0,1]]],[17,1,1,1,2,[[440,1,1,1,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[19,1,1,3,4,[[653,1,1,3,4]]],[22,1,1,4,5,[[696,1,1,4,5]]]],[5528,12961,15581,17147,17999]]],["sending",[8,8,[[13,1,1,0,1,[[402,1,1,0,1]]],[23,6,6,1,7,[[751,1,1,1,2],[769,1,1,2,3],[770,1,1,3,4],[773,1,1,4,5],[779,1,1,5,6],[788,1,1,6,7]]],[25,1,1,7,8,[[818,1,1,7,8]]]],[12008,19144,19538,19577,19654,19838,20014,20840]]],["sent",[361,350,[[0,19,19,0,19,[[18,1,1,0,1],[19,1,1,1,2],[26,1,1,2,3],[30,1,1,3,4],[31,3,3,4,7],[36,1,1,7,8],[37,2,2,8,10],[40,2,2,10,12],[41,1,1,12,13],[44,4,4,13,17],[45,2,2,17,19]]],[1,9,9,19,28,[[52,4,4,19,23],[53,1,1,23,24],[54,1,1,24,25],[56,1,1,25,26],[58,2,2,26,28]]],[3,17,17,28,45,[[129,3,3,28,31],[130,1,1,31,32],[132,3,3,32,35],[136,2,2,35,37],[137,2,2,37,39],[138,4,4,39,43],[147,1,1,43,44],[148,1,1,44,45]]],[4,3,3,45,48,[[154,1,1,45,46],[161,1,1,46,47],[186,1,1,47,48]]],[5,13,13,48,61,[[188,2,2,48,50],[192,2,2,50,52],[193,2,2,52,54],[196,2,2,54,56],[197,1,1,56,57],[200,2,2,57,59],[208,1,1,59,60],[210,1,1,60,61]]],[6,24,22,61,83,[[213,1,1,61,62],[214,1,1,62,63],[215,1,1,63,64],[216,4,3,64,67],[217,2,2,67,69],[219,2,2,69,71],[221,5,4,71,75],[222,1,1,75,76],[226,1,1,76,77],[228,1,1,77,78],[229,1,1,78,79],[230,2,2,79,81],[231,2,2,81,83]]],[8,26,25,83,108,[[239,1,1,83,84],[240,2,2,84,86],[241,1,1,86,87],[246,1,1,87,88],[248,1,1,88,89],[250,3,3,89,92],[251,4,4,92,96],[253,1,1,96,97],[254,5,4,97,101],[257,1,1,101,102],[260,4,4,102,106],[265,1,1,106,107],[266,1,1,107,108]]],[9,34,32,108,140,[[268,1,1,108,109],[269,4,4,109,113],[271,1,1,113,114],[275,1,1,114,115],[276,5,5,115,120],[277,8,8,120,128],[278,2,2,128,130],[279,1,1,130,131],[280,5,3,131,134],[281,2,2,134,136],[285,2,2,136,138],[288,1,1,138,139],[290,1,1,139,140]]],[10,27,26,140,166,[[291,2,2,140,142],[292,3,3,142,145],[295,3,3,145,148],[297,1,1,148,149],[299,2,2,149,151],[302,2,2,151,153],[304,1,1,153,154],[305,2,2,154,156],[308,2,2,156,158],[309,1,1,158,159],[310,4,4,159,163],[311,4,3,163,166]]],[11,49,46,166,212,[[313,6,6,166,172],[314,4,4,172,176],[315,1,1,176,177],[317,3,3,177,180],[318,5,4,180,184],[319,1,1,184,185],[320,1,1,185,186],[322,3,3,186,189],[323,1,1,189,190],[324,1,1,190,191],[326,4,3,191,194],[328,4,4,194,198],[329,2,2,198,200],[330,2,2,200,202],[331,4,4,202,206],[332,1,1,206,207],[334,2,2,207,209],[335,2,2,209,211],[336,2,1,211,212]]],[12,9,9,212,221,[[347,1,1,212,213],[351,1,1,213,214],[356,5,5,214,219],[358,2,2,219,221]]],[13,24,23,221,244,[[368,3,3,221,224],[374,1,1,224,225],[376,1,1,225,226],[382,2,2,226,228],[383,1,1,228,229],[390,2,2,229,231],[391,5,4,231,235],[396,1,1,235,236],[398,2,2,236,238],[400,3,3,238,241],[401,1,1,241,242],[402,2,2,242,244]]],[14,1,1,244,245,[[410,1,1,244,245]]],[15,8,8,245,253,[[414,1,1,245,246],[418,7,7,246,253]]],[16,7,7,253,260,[[426,1,1,253,254],[428,1,1,254,255],[429,1,1,255,256],[430,1,1,256,257],[433,1,1,257,258],[434,2,2,258,260]]],[17,2,2,260,262,[[436,2,2,260,262]]],[18,11,11,262,273,[[495,1,1,262,263],[555,2,2,263,265],[582,4,4,265,269],[583,1,1,269,270],[584,1,1,270,271],[588,1,1,271,272],[612,1,1,272,273]]],[19,1,1,273,274,[[644,1,1,273,274]]],[22,13,13,274,287,[[687,1,1,274,275],[698,1,1,275,276],[714,1,1,276,277],[715,4,4,277,281],[717,1,1,281,282],[720,1,1,282,283],[721,1,1,283,284],[726,1,1,284,285],[733,1,1,285,286],[739,1,1,286,287]]],[23,39,39,287,326,[[751,1,1,287,288],[758,3,3,288,291],[763,1,1,291,292],[765,1,1,292,293],[767,2,2,293,295],[768,1,1,295,296],[769,2,2,296,298],[770,4,4,298,302],[771,1,1,302,303],[772,2,2,303,305],[773,8,8,305,313],[779,1,1,313,314],[781,2,2,314,316],[782,1,1,316,317],[783,2,2,317,319],[786,3,3,319,322],[787,2,2,322,324],[788,1,1,324,325],[793,1,1,325,326]]],[24,1,1,326,327,[[797,1,1,326,327]]],[25,7,6,327,333,[[803,1,1,327,328],[804,2,2,328,330],[814,1,1,330,331],[824,3,2,331,333]]],[26,1,1,333,334,[[859,1,1,333,334]]],[27,1,1,334,335,[[866,1,1,334,335]]],[28,1,1,335,336,[[877,1,1,335,336]]],[29,2,2,336,338,[[882,1,1,336,337],[885,1,1,337,338]]],[30,1,1,338,339,[[888,1,1,338,339]]],[32,1,1,339,340,[[898,1,1,339,340]]],[36,1,1,340,341,[[909,1,1,340,341]]],[37,8,8,341,349,[[911,1,1,341,342],[912,3,3,342,345],[914,1,1,345,346],[916,1,1,346,347],[917,2,2,347,349]]],[38,1,1,349,350,[[926,1,1,349,350]]]],[470,497,769,877,931,933,946,1097,1142,1144,1203,1209,1256,1365,1366,1381,1385,1391,1414,1591,1592,1593,1594,1629,1654,1701,1749,1769,4078,4091,4092,4144,4206,4222,4223,4325,4327,4361,4372,4380,4385,4390,4415,4670,4726,4964,5180,5850,5870,5872,5966,5974,5978,5998,6067,6070,6108,6194,6198,6439,6485,6583,6605,6638,6662,6668,6689,6702,6718,6777,6785,6841,6843,6846,6848,6878,6967,6995,7053,7060,7066,7112,7115,7301,7327,7330,7352,7452,7487,7561,7578,7580,7607,7614,7615,7617,7681,7717,7720,7726,7727,7798,7875,7893,7900,7901,8004,8018,8054,8093,8095,8096,8107,8143,8232,8242,8243,8245,8246,8256,8262,8263,8264,8265,8273,8277,8281,8286,8311,8313,8324,8358,8385,8388,8399,8401,8522,8525,8619,8705,8761,8770,8795,8806,8812,8880,8886,8892,8947,9065,9078,9154,9171,9224,9267,9268,9351,9361,9389,9410,9413,9415,9418,9459,9462,9465,9535,9539,9542,9544,9546,9549,9553,9555,9557,9568,9583,9655,9657,9669,9683,9684,9688,9706,9721,9736,9794,9798,9814,9833,9868,9904,9905,9915,9970,9971,9973,9974,9987,9996,10038,10051,10065,10070,10077,10081,10110,10160,10163,10166,10181,10204,10668,10775,10909,10910,10912,10913,10923,10946,10949,11214,11222,11224,11364,11398,11511,11512,11530,11696,11700,11719,11721,11722,11731,11828,11896,11906,11956,11959,11962,11987,12003,12008,12217,12316,12403,12404,12405,12406,12409,12413,12420,12724,12760,12766,12789,12827,12854,12864,12873,12874,14134,15138,15158,15623,15626,15632,15634,15666,15719,15802,16184,16884,17837,18030,18342,18356,18361,18369,18373,18413,18499,18519,18630,18751,18844,19144,19296,19307,19308,19421,19441,19516,19522,19529,19538,19551,19577,19584,19587,19594,19611,19627,19633,19636,19638,19644,19654,19655,19660,19663,19666,19838,19881,19891,19909,19936,19937,19984,19995,19996,19998,19999,20014,20141,20323,20501,20507,20508,20714,21023,21047,22026,22165,22336,22420,22474,22511,22652,22852,22888,22907,22908,22910,22931,22962,22964,22974,23107]]],["sentest",[3,3,[[3,2,2,0,2,[[129,1,1,0,1],[140,1,1,1,2]]],[10,1,1,2,3,[[295,1,1,2,3]]]],[4102,4458,8886]]],["set",[4,4,[[6,2,2,0,2,[[211,1,1,0,1],[230,1,1,1,2]]],[11,1,1,2,3,[[320,1,1,2,3]]],[23,1,1,3,4,[[778,1,1,3,4]]]],[6517,7102,9739,19817]]],["shot",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7750]]],["soweth",[3,3,[[19,3,3,0,3,[[633,2,2,0,2],[643,1,1,2,3]]]],[16554,16559,16868]]],["up",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15229]]],["way",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[440]]]]},{"k":"H7972","v":[["*",[14,14,[[14,10,10,0,10,[[406,4,4,0,4],[407,3,3,4,7],[408,2,2,7,9],[409,1,1,9,10]]],[26,4,4,10,14,[[852,2,2,10,12],[854,1,1,12,13],[855,1,1,13,14]]]],[12121,12124,12127,12128,12140,12141,12151,12163,12164,12187,21809,21835,21898,21927]]],["put",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12163]]],["send",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12151]]],["sent",[12,12,[[14,8,8,0,8,[[406,4,4,0,4],[407,2,2,4,6],[408,1,1,6,7],[409,1,1,7,8]]],[26,4,4,8,12,[[852,2,2,8,10],[854,1,1,10,11],[855,1,1,11,12]]]],[12121,12124,12127,12128,12140,12141,12164,12187,21809,21835,21898,21927]]]]},{"k":"H7973","v":[["*",[7,7,[[13,2,2,0,2,[[389,1,1,0,1],[398,1,1,1,2]]],[15,1,1,2,3,[[416,1,1,2,3]]],[17,2,2,3,5,[[468,1,1,3,4],[471,1,1,4,5]]],[21,1,1,5,6,[[674,1,1,5,6]]],[28,1,1,6,7,[[877,1,1,6,7]]]],[11666,11880,12376,13668,13748,17595,22319]]],["darts",[1,1,[[13,1,1,0,1,[[398,1,1,0,1]]]],[11880]]],["plants",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17595]]],["sword",[3,3,[[17,2,2,0,2,[[468,1,1,0,1],[471,1,1,1,2]]],[28,1,1,2,3,[[877,1,1,2,3]]]],[13668,13748,22319]]],["weapon",[2,2,[[13,1,1,0,1,[[389,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]]],[11666,12376]]]]},{"k":"H7974","v":[["*",[9,7,[[0,6,5,0,5,[[9,2,1,0,1],[10,4,4,1,5]]],[12,3,2,5,7,[[338,3,2,5,7]]]],[258,278,279,280,281,10270,10276]]],["Salah",[6,5,[[0,6,5,0,5,[[9,2,1,0,1],[10,4,4,1,5]]]],[258,278,279,280,281]]],["Shelah",[3,2,[[12,3,2,0,2,[[338,3,2,0,2]]]],[10270,10276]]]]},{"k":"H7975","v":[["*",[2,2,[[15,1,1,0,1,[[415,1,1,0,1]]],[22,1,1,1,2,[[686,1,1,1,2]]]],[12342,17813]]],["Shiloah",[1,1,[[22,1,1,0,1,[[686,1,1,0,1]]]],[17813]]],["Siloah",[1,1,[[15,1,1,0,1,[[415,1,1,0,1]]]],[12342]]]]},{"k":"H7976","v":[["branches",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17977]]]]},{"k":"H7977","v":[["Shilhi",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[386,1,1,1,2]]]],[9522,11618]]]]},{"k":"H7978","v":[["Shilhim",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6234]]]]},{"k":"H7979","v":[["*",[71,62,[[1,18,16,0,16,[[74,4,4,0,4],[75,3,1,4,5],[79,1,1,5,6],[80,1,1,6,7],[84,1,1,7,8],[86,4,4,8,12],[88,1,1,12,13],[89,3,3,13,16]]],[2,1,1,16,17,[[113,1,1,16,17]]],[3,2,2,17,19,[[119,1,1,17,18],[120,1,1,18,19]]],[6,1,1,19,20,[[211,1,1,19,20]]],[8,2,2,20,22,[[255,2,2,20,22]]],[9,5,5,22,27,[[275,4,4,22,26],[285,1,1,26,27]]],[10,6,6,27,33,[[292,1,1,27,28],[294,1,1,28,29],[297,1,1,29,30],[300,1,1,30,31],[303,1,1,31,32],[308,1,1,32,33]]],[11,1,1,33,34,[[316,1,1,33,34]]],[12,4,1,34,35,[[365,4,1,34,35]]],[13,5,5,35,40,[[370,2,2,35,37],[375,1,1,37,38],[379,1,1,38,39],[395,1,1,39,40]]],[15,1,1,40,41,[[417,1,1,40,41]]],[17,1,1,41,42,[[471,1,1,41,42]]],[18,4,4,42,46,[[500,1,1,42,43],[546,1,1,43,44],[555,1,1,44,45],[605,1,1,45,46]]],[19,1,1,46,47,[[636,1,1,46,47]]],[22,3,3,47,50,[[699,1,1,47,48],[706,1,1,48,49],[743,1,1,49,50]]],[25,13,9,50,59,[[824,1,1,50,51],[840,1,1,51,52],[841,9,5,52,57],[842,1,1,57,58],[845,1,1,58,59]]],[26,1,1,59,60,[[860,1,1,59,60]]],[38,2,2,60,62,[[925,2,2,60,62]]]],[2218,2222,2223,2225,2270,2409,2428,2544,2614,2618,2619,2620,2700,2711,2729,2731,3452,3723,3750,6516,7759,7764,8234,8237,8238,8240,8539,8777,8871,8982,9084,9204,9360,9613,11159,11254,11265,11368,11464,11809,12399,13752,14240,14957,15132,16129,16640,18040,18172,18908,21048,21468,21516,21517,21518,21519,21520,21548,21615,22063,23096,23101]]],["+",[3,2,[[1,1,1,0,1,[[86,1,1,0,1]]],[12,2,1,1,2,[[365,2,1,1,2]]]],[2620,11159]]],["table",[54,52,[[1,17,15,0,15,[[74,4,4,0,4],[75,3,1,4,5],[79,1,1,5,6],[80,1,1,6,7],[84,1,1,7,8],[86,3,3,8,11],[88,1,1,11,12],[89,3,3,12,15]]],[2,1,1,15,16,[[113,1,1,15,16]]],[3,2,2,16,18,[[119,1,1,16,17],[120,1,1,17,18]]],[6,1,1,18,19,[[211,1,1,18,19]]],[8,2,2,19,21,[[255,2,2,19,21]]],[9,5,5,21,26,[[275,4,4,21,25],[285,1,1,25,26]]],[10,6,6,26,32,[[292,1,1,26,27],[294,1,1,27,28],[297,1,1,28,29],[300,1,1,29,30],[303,1,1,30,31],[308,1,1,31,32]]],[11,1,1,32,33,[[316,1,1,32,33]]],[13,3,3,33,36,[[375,1,1,33,34],[379,1,1,34,35],[395,1,1,35,36]]],[15,1,1,36,37,[[417,1,1,36,37]]],[17,1,1,37,38,[[471,1,1,37,38]]],[18,4,4,38,42,[[500,1,1,38,39],[546,1,1,39,40],[555,1,1,40,41],[605,1,1,41,42]]],[19,1,1,42,43,[[636,1,1,42,43]]],[22,2,2,43,45,[[699,1,1,43,44],[743,1,1,44,45]]],[25,4,4,45,49,[[824,1,1,45,46],[840,1,1,46,47],[842,1,1,47,48],[845,1,1,48,49]]],[26,1,1,49,50,[[860,1,1,49,50]]],[38,2,2,50,52,[[925,2,2,50,52]]]],[2218,2222,2223,2225,2270,2409,2428,2544,2614,2618,2619,2700,2711,2729,2731,3452,3723,3750,6516,7759,7764,8234,8237,8238,8240,8539,8777,8871,8982,9084,9204,9360,9613,11368,11464,11809,12399,13752,14240,14957,15132,16129,16640,18040,18908,21048,21468,21548,21615,22063,23096,23101]]],["tables",[14,9,[[12,2,1,0,1,[[365,2,1,0,1]]],[13,2,2,1,3,[[370,2,2,1,3]]],[22,1,1,3,4,[[706,1,1,3,4]]],[25,9,5,4,9,[[841,9,5,4,9]]]],[11159,11254,11265,18172,21516,21517,21518,21519,21520]]]]},{"k":"H7980","v":[["*",[8,7,[[15,1,1,0,1,[[417,1,1,0,1]]],[16,2,1,1,2,[[434,2,1,1,2]]],[18,1,1,2,3,[[596,1,1,2,3]]],[20,4,4,3,7,[[660,1,1,3,4],[663,1,1,4,5],[664,1,1,5,6],[666,1,1,6,7]]]],[12397,12835,16031,17352,17416,17419,17467]]],["+",[1,1,[[20,1,1,0,1,[[664,1,1,0,1]]]],[17419]]],["dominion",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16031]]],["over",[2,2,[[16,1,1,0,1,[[434,1,1,0,1]]],[20,1,1,1,2,[[666,1,1,1,2]]]],[12835,17467]]],["power",[2,2,[[16,1,1,0,1,[[434,1,1,0,1]]],[20,1,1,1,2,[[663,1,1,1,2]]]],[12835,17416]]],["rule",[2,2,[[15,1,1,0,1,[[417,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]]],[12397,17352]]]]},{"k":"H7981","v":[["*",[7,7,[[26,7,7,0,7,[[851,3,3,0,3],[852,1,1,3,4],[854,2,2,4,6],[855,1,1,6,7]]]],[21796,21797,21806,21834,21881,21890,21929]]],["+",[3,3,[[26,3,3,0,3,[[852,1,1,0,1],[854,2,2,1,3]]]],[21834,21881,21890]]],["mastery",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21929]]],["rule",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21797]]],["ruler",[2,2,[[26,2,2,0,2,[[851,2,2,0,2]]]],[21796,21806]]]]},{"k":"H7982","v":[["shields",[7,7,[[9,1,1,0,1,[[274,1,1,0,1]]],[11,1,1,1,2,[[323,1,1,1,2]]],[12,1,1,2,3,[[355,1,1,2,3]]],[13,1,1,3,4,[[389,1,1,3,4]]],[21,1,1,4,5,[[674,1,1,4,5]]],[23,1,1,5,6,[[795,1,1,5,6]]],[25,1,1,6,7,[[828,1,1,6,7]]]],[8216,9839,10897,11665,17586,20223,21132]]]]},{"k":"H7983","v":[["power",[2,2,[[20,2,2,0,2,[[666,2,2,0,2]]]],[17462,17466]]]]},{"k":"H7984","v":[["rulers",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21809,21810]]]]},{"k":"H7985","v":[["*",[14,9,[[26,14,9,0,9,[[853,4,3,0,3],[855,2,1,3,4],[856,8,5,4,9]]]],[21840,21859,21871,21931,21939,21945,21947,21959,21960]]],["dominion",[13,9,[[26,13,9,0,9,[[853,4,3,0,3],[855,2,1,3,4],[856,7,5,4,9]]]],[21840,21859,21871,21931,21939,21945,21947,21959,21960]]],["dominions",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21960]]]]},{"k":"H7986","v":[["imperious",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20792]]]]},{"k":"H7987","v":[["quietly",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8108]]]]},{"k":"H7988","v":[["one",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5668]]]]},{"k":"H7989","v":[["*",[4,4,[[0,1,1,0,1,[[41,1,1,0,1]]],[20,3,3,1,4,[[665,1,1,1,2],[666,1,1,2,3],[668,1,1,3,4]]]],[1258,17448,17466,17498]]],["governor",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1258]]],["mighty",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17448]]],["power",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17466]]],["ruler",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17498]]]]},{"k":"H7990","v":[["*",[10,10,[[14,2,2,0,2,[[406,1,1,0,1],[409,1,1,1,2]]],[26,8,8,2,10,[[851,2,2,2,4],[853,4,4,4,8],[854,2,2,8,10]]]],[12130,12197,21768,21773,21854,21862,21863,21869,21895,21903]]],["captain",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21773]]],["lawful",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12197]]],["rule",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21863]]],["ruled",[2,2,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,1,1,1,2,[[854,1,1,1,2]]]],[12130,21895]]],["ruler",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[854,1,1,1,2]]]],[21768,21903]]],["ruleth",[3,3,[[26,3,3,0,3,[[853,3,3,0,3]]]],[21854,21862,21869]]]]},{"k":"H7991","v":[["*",[20,19,[[1,2,2,0,2,[[63,1,1,0,1],[64,1,1,1,2]]],[8,1,1,2,3,[[253,1,1,2,3]]],[9,1,1,3,4,[[289,1,1,3,4]]],[10,1,1,4,5,[[299,1,1,4,5]]],[11,7,6,5,11,[[319,3,3,5,8],[321,1,1,8,9],[322,2,1,9,10],[327,1,1,10,11]]],[12,2,2,11,13,[[348,1,1,11,12],[349,1,1,12,13]]],[13,1,1,13,14,[[374,1,1,13,14]]],[18,1,1,14,15,[[557,1,1,14,15]]],[19,1,1,15,16,[[649,1,1,15,16]]],[22,1,1,16,17,[[718,1,1,16,17]]],[25,2,2,17,19,[[824,2,2,17,19]]]],[1896,1924,7682,8661,9073,9709,9724,9726,9781,9818,9950,10684,10738,11355,15203,17035,18432,21022,21030]]],["captain",[2,2,[[11,2,2,0,2,[[321,1,1,0,1],[327,1,1,1,2]]]],[9781,9950]]],["captains",[9,8,[[1,2,2,0,2,[[63,1,1,0,1],[64,1,1,1,2]]],[9,1,1,2,3,[[289,1,1,2,3]]],[10,1,1,3,4,[[299,1,1,3,4]]],[11,2,1,4,5,[[322,2,1,4,5]]],[12,2,2,5,7,[[348,1,1,5,6],[349,1,1,6,7]]],[13,1,1,7,8,[[374,1,1,7,8]]]],[1896,1924,8661,9073,9818,10684,10738,11355]]],["lord",[3,3,[[11,3,3,0,3,[[319,3,3,0,3]]]],[9709,9724,9726]]],["lords",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21030]]],["measure",[2,2,[[18,1,1,0,1,[[557,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]]],[15203,18432]]],["musick",[1,1,[[8,1,1,0,1,[[253,1,1,0,1]]]],[7682]]],["princes",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21022]]],["things",[1,1,[[19,1,1,0,1,[[649,1,1,0,1]]]],[17035]]]]},{"k":"H7992","v":[["*",[108,94,[[0,9,9,0,9,[[0,1,1,0,1],[1,1,1,1,2],[5,1,1,2,3],[21,1,1,3,4],[30,1,1,4,5],[31,1,1,5,6],[33,1,1,6,7],[39,1,1,7,8],[41,1,1,8,9]]],[1,6,5,9,14,[[68,4,3,9,12],[77,1,1,12,13],[88,1,1,13,14]]],[2,4,4,14,18,[[96,2,2,14,16],[108,2,2,16,18]]],[3,10,9,18,27,[[118,1,1,18,19],[123,1,1,19,20],[131,2,2,20,22],[135,3,2,22,24],[144,1,1,24,25],[145,1,1,25,26],[147,1,1,26,27]]],[4,2,2,27,29,[[175,1,1,27,28],[178,1,1,28,29]]],[5,2,2,29,31,[[195,1,1,29,30],[205,1,1,30,31]]],[6,1,1,31,32,[[230,1,1,31,32]]],[8,6,6,32,38,[[238,1,1,32,33],[252,1,1,33,34],[254,1,1,34,35],[255,2,2,35,37],[265,1,1,37,38]]],[9,6,4,38,42,[[267,1,1,38,39],[269,1,1,39,40],[284,3,1,40,41],[289,1,1,41,42]]],[10,7,6,42,48,[[293,1,1,42,43],[296,2,2,43,45],[302,2,1,45,46],[308,1,1,46,47],[312,1,1,47,48]]],[11,8,6,48,54,[[313,2,1,48,49],[323,3,2,49,51],[331,1,1,51,52],[332,2,2,52,54]]],[12,15,14,54,68,[[339,1,1,54,55],[340,2,2,55,57],[345,2,2,57,59],[349,1,1,59,60],[360,1,1,60,61],[361,2,2,61,63],[362,1,1,63,64],[363,3,3,64,67],[364,2,1,67,68]]],[13,8,6,68,74,[[376,2,1,68,69],[381,1,1,69,70],[389,3,2,70,72],[393,1,1,72,73],[397,1,1,73,74]]],[15,1,1,74,75,[[422,1,1,74,75]]],[16,2,2,75,77,[[430,1,1,75,76],[433,1,1,76,77]]],[17,1,1,77,78,[[477,1,1,77,78]]],[22,3,3,78,81,[[693,1,1,78,79],[697,1,1,79,80],[715,1,1,80,81]]],[23,2,2,81,83,[[782,1,1,81,82],[792,1,1,82,83]]],[25,11,7,83,90,[[806,6,2,83,85],[811,1,1,85,86],[822,1,1,86,87],[832,1,1,87,88],[843,1,1,88,89],[847,1,1,89,90]]],[27,1,1,90,91,[[867,1,1,90,91]]],[37,3,3,91,94,[[916,1,1,91,92],[923,2,2,92,94]]]],[12,44,153,551,895,947,1005,1192,1270,2027,2037,2042,2312,2676,2896,2897,3287,3288,3682,3874,4159,4160,4301,4308,4591,4628,4683,5508,5578,6054,6331,7084,7284,7631,7727,7735,7742,7979,8024,8084,8480,8671,8834,8902,8904,9163,9342,9482,9546,9834,9835,10090,10103,10106,10319,10363,10376,10576,10614,10729,11002,11023,11038,11056,11079,11081,11088,11114,11407,11500,11660,11661,11760,11861,12581,12780,12826,13936,17965,18028,18382,19909,20114,20548,20558,20647,20958,21231,21555,21669,22169,22950,23067,23068]]],["old",[2,2,[[22,1,1,0,1,[[693,1,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]]],[17965,20114]]],["part",[18,10,[[9,3,1,0,1,[[284,3,1,0,1]]],[11,3,2,1,3,[[323,3,2,1,3]]],[13,3,2,3,5,[[389,3,2,3,5]]],[15,1,1,5,6,[[422,1,1,5,6]]],[25,7,3,6,9,[[806,6,2,6,8],[847,1,1,8,9]]],[37,1,1,9,10,[[923,1,1,9,10]]]],[8480,9834,9835,11660,11661,12581,20548,20558,21669,23068]]],["third",[85,79,[[0,9,9,0,9,[[0,1,1,0,1],[1,1,1,1,2],[5,1,1,2,3],[21,1,1,3,4],[30,1,1,4,5],[31,1,1,5,6],[33,1,1,6,7],[39,1,1,7,8],[41,1,1,8,9]]],[1,6,5,9,14,[[68,4,3,9,12],[77,1,1,12,13],[88,1,1,13,14]]],[2,4,4,14,18,[[96,2,2,14,16],[108,2,2,16,18]]],[3,10,9,18,27,[[118,1,1,18,19],[123,1,1,19,20],[131,2,2,20,22],[135,3,2,22,24],[144,1,1,24,25],[145,1,1,25,26],[147,1,1,26,27]]],[4,2,2,27,29,[[175,1,1,27,28],[178,1,1,28,29]]],[5,2,2,29,31,[[195,1,1,29,30],[205,1,1,30,31]]],[6,1,1,31,32,[[230,1,1,31,32]]],[8,6,6,32,38,[[238,1,1,32,33],[252,1,1,33,34],[254,1,1,34,35],[255,2,2,35,37],[265,1,1,37,38]]],[9,2,2,38,40,[[267,1,1,38,39],[269,1,1,39,40]]],[10,7,6,40,46,[[293,1,1,40,41],[296,2,2,41,43],[302,2,1,43,44],[308,1,1,44,45],[312,1,1,45,46]]],[11,5,4,46,50,[[313,2,1,46,47],[331,1,1,47,48],[332,2,2,48,50]]],[12,15,14,50,64,[[339,1,1,50,51],[340,2,2,51,53],[345,2,2,53,55],[349,1,1,55,56],[360,1,1,56,57],[361,2,2,57,59],[362,1,1,59,60],[363,3,3,60,63],[364,2,1,63,64]]],[13,5,4,64,68,[[376,2,1,64,65],[381,1,1,65,66],[393,1,1,66,67],[397,1,1,67,68]]],[16,2,2,68,70,[[430,1,1,68,69],[433,1,1,69,70]]],[17,1,1,70,71,[[477,1,1,70,71]]],[22,2,2,71,73,[[697,1,1,71,72],[715,1,1,72,73]]],[23,1,1,73,74,[[782,1,1,73,74]]],[25,2,2,74,76,[[811,1,1,74,75],[832,1,1,75,76]]],[27,1,1,76,77,[[867,1,1,76,77]]],[37,2,2,77,79,[[916,1,1,77,78],[923,1,1,78,79]]]],[12,44,153,551,895,947,1005,1192,1270,2027,2037,2042,2312,2676,2896,2897,3287,3288,3682,3874,4159,4160,4301,4308,4591,4628,4683,5508,5578,6054,6331,7084,7284,7631,7727,7735,7742,7979,8024,8084,8834,8902,8904,9163,9342,9482,9546,10090,10103,10106,10319,10363,10376,10576,10614,10729,11002,11023,11038,11056,11079,11081,11088,11114,11407,11500,11760,11861,12780,12826,13936,18028,18382,19909,20647,21231,22169,22950,23067]]],["three",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[25,1,1,1,2,[[843,1,1,1,2]]]],[8671,21555]]],["time",[1,1,[[25,1,1,0,1,[[822,1,1,0,1]]]],[20958]]]]},{"k":"H7993","v":[["*",[125,121,[[0,4,4,0,4,[[20,1,1,0,1],[36,3,3,1,4]]],[1,10,9,4,13,[[50,1,1,4,5],[53,2,1,5,6],[56,3,3,6,9],[64,1,1,9,10],[71,1,1,10,11],[81,2,2,11,13]]],[2,2,2,13,15,[[90,1,1,13,14],[103,1,1,14,15]]],[3,3,3,15,18,[[135,1,1,15,16],[151,2,2,16,18]]],[4,3,3,18,21,[[161,2,2,18,20],[181,1,1,20,21]]],[5,5,5,21,26,[[194,1,1,21,22],[196,2,2,22,24],[204,2,2,24,26]]],[6,4,4,26,30,[[218,1,1,26,27],[219,2,2,27,29],[225,1,1,29,30]]],[9,5,5,30,35,[[277,1,1,30,31],[284,1,1,31,32],[286,3,3,32,35]]],[10,5,5,35,40,[[303,3,3,35,38],[304,1,1,38,39],[309,1,1,39,40]]],[11,15,15,40,55,[[314,2,2,40,42],[315,1,1,42,43],[316,1,1,43,44],[318,1,1,44,45],[319,1,1,45,46],[321,2,2,46,48],[322,1,1,48,49],[325,2,2,49,51],[329,1,1,51,52],[335,2,2,52,54],[336,1,1,54,55]]],[13,5,5,55,60,[[373,1,1,55,56],[390,1,1,56,57],[391,1,1,57,58],[396,1,1,58,59],[399,1,1,59,60]]],[15,3,3,60,63,[[421,2,2,60,62],[425,1,1,62,63]]],[17,4,4,63,67,[[450,1,1,63,64],[453,1,1,64,65],[462,1,1,65,66],[464,1,1,66,67]]],[18,10,10,67,77,[[479,1,1,67,68],[499,1,1,68,69],[527,1,1,69,70],[528,1,1,70,71],[532,1,1,71,72],[537,1,1,72,73],[548,1,1,73,74],[579,1,1,74,75],[585,1,1,75,76],[624,1,1,76,77]]],[20,2,2,77,79,[[661,2,2,77,79]]],[22,5,5,79,84,[[680,1,1,79,80],[692,1,1,80,81],[697,1,1,81,82],[712,1,1,82,83],[716,1,1,83,84]]],[23,15,14,84,98,[[751,3,2,84,86],[753,1,1,86,87],[758,1,1,87,88],[766,2,2,88,90],[770,1,1,90,91],[780,2,2,91,93],[782,2,2,93,95],[785,1,1,95,96],[795,1,1,96,97],[796,1,1,97,98]]],[24,1,1,98,99,[[798,1,1,98,99]]],[25,10,10,99,109,[[806,1,1,99,100],[808,1,1,100,101],[817,1,1,101,102],[819,1,1,102,103],[820,1,1,103,104],[821,2,2,104,106],[824,1,1,106,107],[829,1,1,107,108],[844,1,1,108,109]]],[26,3,3,109,112,[[857,3,3,109,112]]],[28,1,1,112,113,[[876,1,1,112,113]]],[29,2,2,113,115,[[882,1,1,113,114],[886,1,1,114,115]]],[31,1,1,115,116,[[890,1,1,115,116]]],[32,2,2,116,118,[[894,1,1,116,117],[899,1,1,117,118]]],[33,1,1,118,119,[[902,1,1,118,119]]],[37,4,2,119,121,[[915,2,1,119,120],[921,2,1,120,121]]]],[528,1103,1105,1107,1554,1604,1694,1695,1697,1945,2144,2457,2462,2761,3151,4295,4865,4867,5174,5178,5707,6031,6075,6091,6301,6303,6744,6771,6807,6946,8280,8495,8566,8575,8576,9208,9209,9212,9227,9406,9567,9572,9601,9644,9680,9722,9781,9782,9818,9892,9894,10003,10171,10177,10222,11344,11687,11716,11841,11923,12522,12537,12679,13236,13283,13503,13549,13948,14214,14685,14702,14754,14815,14985,15531,15751,16368,17364,17365,17705,17947,18012,18306,18407,19134,19148,19194,19309,19473,19482,19595,19865,19872,19901,19904,19966,20275,20279,20333,20550,20596,20767,20880,20893,20902,20903,21042,21174,21596,21968,21972,21973,22298,22413,22484,22551,22600,22683,22718,22944,23041]]],["+",[19,19,[[0,1,1,0,1,[[20,1,1,0,1]]],[1,2,2,1,3,[[56,1,1,1,2],[81,1,1,2,3]]],[4,1,1,3,4,[[161,1,1,3,4]]],[6,1,1,4,5,[[219,1,1,4,5]]],[11,4,4,5,9,[[325,1,1,5,6],[335,2,2,6,8],[336,1,1,8,9]]],[15,2,2,9,11,[[421,1,1,9,10],[425,1,1,10,11]]],[18,1,1,11,12,[[548,1,1,11,12]]],[22,1,1,12,13,[[680,1,1,12,13]]],[23,4,4,13,17,[[751,1,1,13,14],[770,1,1,14,15],[785,1,1,15,16],[796,1,1,16,17]]],[25,1,1,17,18,[[821,1,1,17,18]]],[37,1,1,18,19,[[915,1,1,18,19]]]],[528,1695,2457,5178,6771,9892,10171,10177,10222,12537,12679,14985,17705,19134,19595,19966,20279,20903,22944]]],["Cast",[4,4,[[1,1,1,0,1,[[53,1,1,0,1]]],[18,2,2,1,3,[[528,1,1,1,2],[532,1,1,2,3]]],[37,1,1,3,4,[[921,1,1,3,4]]]],[1604,14702,14754,23041]]],["away",[9,9,[[6,1,1,0,1,[[225,1,1,0,1]]],[11,1,1,1,2,[[319,1,1,1,2]]],[18,1,1,2,3,[[479,1,1,2,3]]],[20,2,2,3,5,[[661,2,2,3,5]]],[23,1,1,5,6,[[751,1,1,5,6]]],[25,2,2,6,8,[[819,1,1,6,7],[821,1,1,7,8]]],[28,1,1,8,9,[[876,1,1,8,9]]]],[6946,9722,13948,17364,17365,19148,20880,20902,22298]]],["cast",[63,63,[[0,3,3,0,3,[[36,3,3,0,3]]],[1,6,6,3,9,[[50,1,1,3,4],[53,1,1,4,5],[56,1,1,5,6],[64,1,1,6,7],[71,1,1,7,8],[81,1,1,8,9]]],[2,2,2,9,11,[[90,1,1,9,10],[103,1,1,10,11]]],[3,2,2,11,13,[[135,1,1,11,12],[151,1,1,12,13]]],[4,2,2,13,15,[[161,1,1,13,14],[181,1,1,14,15]]],[5,4,4,15,19,[[194,1,1,15,16],[196,1,1,16,17],[204,2,2,17,19]]],[6,2,2,19,21,[[218,1,1,19,20],[219,1,1,20,21]]],[9,3,3,21,24,[[277,1,1,21,22],[284,1,1,22,23],[286,1,1,23,24]]],[10,5,5,24,29,[[303,3,3,24,27],[304,1,1,27,28],[309,1,1,28,29]]],[11,8,8,29,37,[[314,2,2,29,31],[315,1,1,31,32],[316,1,1,32,33],[318,1,1,33,34],[321,2,2,34,36],[325,1,1,36,37]]],[13,3,3,37,40,[[390,1,1,37,38],[396,1,1,38,39],[399,1,1,39,40]]],[17,1,1,40,41,[[462,1,1,40,41]]],[18,1,1,41,42,[[499,1,1,41,42]]],[22,3,3,42,45,[[692,1,1,42,43],[697,1,1,43,44],[716,1,1,44,45]]],[23,6,6,45,51,[[751,1,1,45,46],[766,1,1,46,47],[780,1,1,47,48],[782,2,2,48,50],[795,1,1,50,51]]],[25,5,5,51,56,[[806,1,1,51,52],[808,1,1,52,53],[824,1,1,53,54],[829,1,1,54,55],[844,1,1,55,56]]],[29,1,1,56,57,[[882,1,1,56,57]]],[31,1,1,57,58,[[890,1,1,57,58]]],[32,2,2,58,60,[[894,1,1,58,59],[899,1,1,59,60]]],[33,1,1,60,61,[[902,1,1,60,61]]],[37,2,2,61,63,[[915,1,1,61,62],[921,1,1,62,63]]]],[1103,1105,1107,1554,1604,1694,1945,2144,2462,2761,3151,4295,4867,5174,5707,6031,6091,6301,6303,6744,6807,8280,8495,8566,9208,9209,9212,9227,9406,9567,9572,9601,9644,9680,9781,9782,9894,11687,11841,11923,13503,14214,17947,18012,18407,19134,19482,19865,19901,19904,20275,20550,20596,21042,21174,21596,22413,22551,22600,22683,22718,22944,23041]]],["castest",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14685]]],["down",[10,10,[[1,1,1,0,1,[[56,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[13,1,1,2,3,[[391,1,1,2,3]]],[17,1,1,3,4,[[453,1,1,3,4]]],[18,1,1,4,5,[[579,1,1,4,5]]],[24,1,1,5,6,[[798,1,1,5,6]]],[25,1,1,6,7,[[820,1,1,6,7]]],[26,3,3,7,10,[[857,3,3,7,10]]]],[1697,6075,11716,13283,15531,20333,20893,21968,21972,21973]]],["forth",[3,3,[[18,1,1,0,1,[[624,1,1,0,1]]],[23,1,1,1,2,[[766,1,1,1,2]]],[29,1,1,2,3,[[886,1,1,2,3]]]],[16368,19473,22484]]],["hurl",[1,1,[[3,1,1,0,1,[[151,1,1,0,1]]]],[4865]]],["off",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13236]]],["out",[11,11,[[9,1,1,0,1,[[286,1,1,0,1]]],[11,2,2,1,3,[[322,1,1,1,2],[329,1,1,2,3]]],[13,1,1,3,4,[[373,1,1,3,4]]],[18,2,2,4,6,[[537,1,1,4,5],[585,1,1,5,6]]],[22,1,1,6,7,[[712,1,1,6,7]]],[23,3,3,7,10,[[753,1,1,7,8],[758,1,1,8,9],[780,1,1,9,10]]],[25,1,1,10,11,[[817,1,1,10,11]]]],[8576,9818,10003,11344,14815,15751,18306,19194,19309,19872,20767]]],["plucked",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13549]]],["threwest",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12522]]],["thrown",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8575]]]]},{"k":"H7994","v":[["cormorant",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3014,5307]]]]},{"k":"H7995","v":[["cast",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17782]]]]},{"k":"H7996","v":[["Shallecheth",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11093]]]]},{"k":"H7997","v":[["*",[16,12,[[7,2,1,0,1,[[233,2,1,0,1]]],[18,1,1,1,2,[[553,1,1,1,2]]],[22,2,2,2,4,[[688,1,1,2,3],[737,1,1,3,4]]],[23,1,1,4,5,[[794,1,1,4,5]]],[25,7,5,5,10,[[827,1,1,5,6],[830,1,1,6,7],[839,3,2,7,9],[840,2,1,9,10]]],[34,2,1,10,11,[[904,2,1,10,11]]],[37,1,1,11,12,[[912,1,1,11,12]]]],[7165,15086,17856,18815,20176,21112,21202,21437,21438,21458,22756,22907]]],["+",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21458]]],["fall",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7165]]],["prey",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18815]]],["purpose",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7165]]],["spoil",[3,3,[[23,1,1,0,1,[[794,1,1,0,1]]],[25,1,1,1,2,[[827,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]]],[20176,21112,22756]]],["spoiled",[4,4,[[18,1,1,0,1,[[553,1,1,0,1]]],[25,1,1,1,2,[[840,1,1,1,2]]],[34,1,1,2,3,[[904,1,1,2,3]]],[37,1,1,3,4,[[912,1,1,3,4]]]],[15086,21458,22756,22907]]],["take",[5,4,[[22,1,1,0,1,[[688,1,1,0,1]]],[25,4,3,1,4,[[830,1,1,1,2],[839,3,2,2,4]]]],[17856,21202,21437,21438]]]]},{"k":"H7998","v":[["*",[73,64,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[3,2,2,2,4,[[147,2,2,2,4]]],[4,6,4,4,8,[[154,1,1,4,5],[155,1,1,5,6],[165,2,1,6,7],[172,2,1,7,8]]],[5,5,5,8,13,[[193,1,1,8,9],[194,2,2,9,11],[197,1,1,11,12],[208,1,1,12,13]]],[6,6,3,13,16,[[215,4,1,13,14],[218,2,2,14,16]]],[8,10,9,16,25,[[249,2,2,16,18],[250,2,2,18,20],[265,6,5,20,25]]],[9,3,3,25,28,[[269,1,1,25,26],[274,1,1,26,27],[278,1,1,27,28]]],[11,1,1,28,29,[[315,1,1,28,29]]],[12,2,2,29,31,[[357,1,1,29,30],[363,1,1,30,31]]],[13,8,6,31,37,[[380,1,1,31,32],[381,1,1,32,33],[386,2,1,33,34],[390,1,1,34,35],[394,3,2,35,37]]],[16,2,2,37,39,[[428,1,1,37,38],[433,1,1,38,39]]],[18,2,2,39,41,[[545,1,1,39,40],[596,1,1,40,41]]],[19,3,3,41,44,[[628,1,1,41,42],[643,1,1,42,43],[658,1,1,43,44]]],[22,7,7,44,51,[[686,1,1,44,45],[687,1,1,45,46],[688,2,2,46,48],[711,2,2,48,50],[731,1,1,50,51]]],[23,6,6,51,57,[[765,1,1,51,52],[782,1,1,52,53],[783,1,1,53,54],[789,1,1,54,55],[793,1,1,55,56],[794,1,1,56,57]]],[25,5,4,57,61,[[808,1,1,57,58],[830,1,1,58,59],[839,3,2,59,61]]],[26,1,1,61,62,[[860,1,1,61,62]]],[37,2,2,62,64,[[912,1,1,62,63],[924,1,1,63,64]]]],[1500,1929,4675,4676,4973,4982,5288,5441,5997,6004,6029,6121,6434,6653,6743,6744,7538,7540,7579,7581,7994,7997,7998,8000,8004,8103,8221,8316,9599,10928,11104,11488,11501,11612,11700,11772,11779,12760,12828,14912,16060,16413,16859,17295,17811,17832,17852,17856,18283,18302,18723,19449,19897,19941,20045,20159,20176,20598,21202,21437,21438,22060,22908,23069]]],["+",[8,7,[[8,6,5,0,5,[[249,1,1,0,1],[250,1,1,1,2],[265,4,3,2,5]]],[9,1,1,5,6,[[274,1,1,5,6]]],[12,1,1,6,7,[[357,1,1,6,7]]]],[7538,7581,7997,8000,8004,8221,10928]]],["prey",[10,8,[[6,5,3,0,3,[[215,3,1,0,1],[218,2,2,1,3]]],[22,1,1,3,4,[[688,1,1,3,4]]],[23,4,4,4,8,[[765,1,1,4,5],[782,1,1,5,6],[783,1,1,6,7],[789,1,1,7,8]]]],[6653,6743,6744,17852,19449,19897,19941,20045]]],["spoil",[53,48,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,1,1,1,2,[[64,1,1,1,2]]],[3,2,2,2,4,[[147,2,2,2,4]]],[4,6,4,4,8,[[154,1,1,4,5],[155,1,1,5,6],[165,2,1,6,7],[172,2,1,7,8]]],[5,4,4,8,12,[[194,2,2,8,10],[197,1,1,10,11],[208,1,1,11,12]]],[6,1,1,12,13,[[215,1,1,12,13]]],[8,4,4,13,17,[[249,1,1,13,14],[250,1,1,14,15],[265,2,2,15,17]]],[9,2,2,17,19,[[269,1,1,17,18],[278,1,1,18,19]]],[11,1,1,19,20,[[315,1,1,19,20]]],[13,8,6,20,26,[[380,1,1,20,21],[381,1,1,21,22],[386,2,1,22,23],[390,1,1,23,24],[394,3,2,24,26]]],[16,2,2,26,28,[[428,1,1,26,27],[433,1,1,27,28]]],[18,2,2,28,30,[[545,1,1,28,29],[596,1,1,29,30]]],[19,3,3,30,33,[[628,1,1,30,31],[643,1,1,31,32],[658,1,1,32,33]]],[22,6,6,33,39,[[686,1,1,33,34],[687,1,1,34,35],[688,1,1,35,36],[711,2,2,36,38],[731,1,1,38,39]]],[23,2,2,39,41,[[793,1,1,39,40],[794,1,1,40,41]]],[25,5,4,41,45,[[808,1,1,41,42],[830,1,1,42,43],[839,3,2,43,45]]],[26,1,1,45,46,[[860,1,1,45,46]]],[37,2,2,46,48,[[912,1,1,46,47],[924,1,1,47,48]]]],[1500,1929,4675,4676,4973,4982,5288,5441,6004,6029,6121,6434,6653,7540,7579,7994,7998,8103,8316,9599,11488,11501,11612,11700,11772,11779,12760,12828,14912,16060,16413,16859,17295,17811,17832,17856,18283,18302,18723,20159,20176,20598,21202,21437,21438,22060,22908,23069]]],["spoils",[2,2,[[5,1,1,0,1,[[193,1,1,0,1]]],[12,1,1,1,2,[[363,1,1,1,2]]]],[5997,11104]]]]},{"k":"H7999","v":[["*",[116,107,[[0,1,1,0,1,[[43,1,1,0,1]]],[1,18,14,1,15,[[70,3,2,1,3],[71,15,12,3,15]]],[2,4,4,15,19,[[94,1,1,15,16],[95,1,1,16,17],[113,2,2,17,19]]],[4,5,4,19,23,[[159,2,1,19,20],[172,1,1,20,21],[175,1,1,21,22],[184,1,1,22,23]]],[5,3,3,23,26,[[196,2,2,23,25],[197,1,1,25,26]]],[6,1,1,26,27,[[211,1,1,26,27]]],[7,1,1,27,28,[[233,1,1,27,28]]],[8,1,1,28,29,[[259,1,1,28,29]]],[9,5,5,29,34,[[269,1,1,29,30],[276,1,1,30,31],[278,1,1,31,32],[281,1,1,32,33],[286,1,1,33,34]]],[10,3,3,34,37,[[297,1,1,34,35],[299,1,1,35,36],[312,1,1,36,37]]],[11,2,2,37,39,[[316,1,1,37,38],[321,1,1,38,39]]],[12,1,1,39,40,[[356,1,1,39,40]]],[13,1,1,40,41,[[371,1,1,40,41]]],[15,1,1,41,42,[[418,1,1,41,42]]],[17,11,11,42,53,[[440,1,1,42,43],[443,1,1,43,44],[444,1,1,44,45],[456,2,2,45,47],[457,2,2,47,49],[458,1,1,49,50],[469,2,2,50,52],[476,1,1,52,53]]],[18,17,17,53,70,[[484,1,1,53,54],[499,1,1,54,55],[508,1,1,55,56],[512,1,1,56,57],[514,1,1,57,58],[515,1,1,58,59],[518,1,1,59,60],[527,1,1,60,61],[533,1,1,61,62],[538,1,1,62,63],[539,1,1,63,64],[542,1,1,64,65],[543,1,1,65,66],[553,1,1,66,67],[593,2,2,67,69],[614,1,1,69,70]]],[19,10,10,70,80,[[633,1,1,70,71],[634,1,1,71,72],[638,1,1,72,73],[640,2,2,73,75],[643,1,1,75,76],[646,1,1,76,77],[647,1,1,77,78],[649,1,1,78,79],[652,1,1,79,80]]],[20,3,2,80,82,[[663,3,2,80,82]]],[22,13,11,82,93,[[697,1,1,82,83],[716,2,2,83,85],[720,1,1,85,86],[722,2,2,86,88],[735,1,1,88,89],[737,2,1,89,90],[738,1,1,90,91],[743,2,1,91,92],[744,1,1,92,93]]],[23,9,8,93,101,[[760,1,1,93,94],[762,1,1,94,95],[769,1,1,95,96],[776,1,1,96,97],[794,1,1,97,98],[795,4,3,98,101]]],[25,1,1,101,102,[[834,1,1,101,102]]],[27,1,1,102,103,[[875,1,1,102,103]]],[28,2,2,103,105,[[877,1,1,103,104],[878,1,1,104,105]]],[31,1,1,105,106,[[890,1,1,105,106]]],[33,1,1,106,107,[[900,1,1,106,107]]]],[1328,2111,2113,2114,2116,2117,2118,2119,2120,2122,2124,2125,2126,2127,2128,2846,2854,3464,3467,5121,5439,5521,5799,6065,6068,6126,6516,7161,7858,8120,8259,8292,8396,8573,8985,9076,9524,9610,9782,10926,11269,12416,12974,13035,13055,13374,13386,13410,13416,13433,13694,13716,13899,13999,14229,14354,14422,14471,14510,14552,14682,14767,14827,14839,14861,14886,15092,15862,15866,16230,16571,16589,16719,16760,16768,16847,16942,16976,17042,17135,17401,17402,18025,18402,18403,18499,18559,18561,18783,18818,18841,18903,18928,19354,19404,19548,19749,20195,20218,20236,20268,21295,22284,22336,22347,22557,22699]]],["+",[18,13,[[1,8,4,0,4,[[70,2,1,0,1],[71,6,3,1,4]]],[4,1,1,4,5,[[172,1,1,4,5]]],[9,1,1,5,6,[[281,1,1,5,6]]],[10,1,1,6,7,[[299,1,1,6,7]]],[11,1,1,7,8,[[316,1,1,7,8]]],[17,1,1,8,9,[[456,1,1,8,9]]],[18,1,1,9,10,[[614,1,1,9,10]]],[20,1,1,10,11,[[663,1,1,10,11]]],[23,2,1,11,12,[[795,2,1,11,12]]],[28,1,1,12,13,[[878,1,1,12,13]]]],[2113,2116,2119,2127,5439,8396,9076,9610,13374,16230,17401,20268,22347]]],["again",[2,2,[[19,1,1,0,1,[[646,1,1,0,1]]],[25,1,1,1,2,[[834,1,1,1,2]]]],[16942,21295]]],["amends",[1,1,[[2,1,1,0,1,[[94,1,1,0,1]]]],[2846]]],["end",[2,2,[[22,2,2,0,2,[[716,2,2,0,2]]]],[18402,18403]]],["ended",[2,2,[[10,1,1,0,1,[[297,1,1,0,1]]],[22,1,1,1,2,[[738,1,1,1,2]]]],[8985,18841]]],["finished",[2,2,[[13,1,1,0,1,[[371,1,1,0,1]]],[15,1,1,1,2,[[418,1,1,1,2]]]],[11269,12416]]],["good",[5,5,[[1,4,4,0,4,[[70,1,1,0,1],[71,3,3,1,4]]],[2,1,1,4,5,[[113,1,1,4,5]]]],[2111,2124,2126,2128,3464]]],["pay",[14,14,[[1,2,2,0,2,[[71,2,2,0,2]]],[4,1,1,2,3,[[175,1,1,2,3]]],[17,1,1,3,4,[[457,1,1,3,4]]],[18,6,6,4,10,[[499,1,1,4,5],[527,1,1,5,6],[543,1,1,6,7],[553,1,1,7,8],[593,2,2,8,10]]],[19,1,1,10,11,[[649,1,1,10,11]]],[20,2,2,11,13,[[663,2,2,11,13]]],[31,1,1,13,14,[[890,1,1,13,14]]]],[2120,2122,5521,13416,14229,14682,14886,15092,15862,15866,17042,17401,17402,22557]]],["payed",[1,1,[[19,1,1,0,1,[[634,1,1,0,1]]]],[16589]]],["payeth",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14471]]],["peace",[10,10,[[5,3,3,0,3,[[196,2,2,0,2],[197,1,1,2,3]]],[9,1,1,3,4,[[276,1,1,3,4]]],[10,1,1,4,5,[[312,1,1,4,5]]],[12,1,1,5,6,[[356,1,1,5,6]]],[17,2,2,6,8,[[440,1,1,6,7],[457,1,1,7,8]]],[18,1,1,8,9,[[484,1,1,8,9]]],[19,1,1,9,10,[[643,1,1,9,10]]]],[6065,6068,6126,8259,9524,10926,12974,13410,13999,16847]]],["peaceable",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8573]]],["perfect",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18499]]],["perform",[4,4,[[18,1,1,0,1,[[538,1,1,0,1]]],[22,2,2,1,3,[[697,1,1,1,2],[722,1,1,2,3]]],[33,1,1,3,4,[[900,1,1,3,4]]]],[14827,18025,18561,22699]]],["performed",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14861]]],["performeth",[2,2,[[17,1,1,0,1,[[458,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[13433,18559]]],["prospered",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13055]]],["prosperous",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13035]]],["recompense",[8,7,[[7,1,1,0,1,[[233,1,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[19,1,1,2,3,[[647,1,1,2,3]]],[22,2,1,3,4,[[743,2,1,3,4]]],[23,3,3,4,7,[[760,1,1,4,5],[769,1,1,5,6],[794,1,1,6,7]]]],[7161,13716,16976,18903,19354,19548,20195]]],["recompensed",[2,2,[[19,1,1,0,1,[[638,1,1,0,1]]],[23,1,1,1,2,[[762,1,1,1,2]]]],[16719,19404]]],["recompensest",[1,1,[[23,1,1,0,1,[[776,1,1,0,1]]]],[19749]]],["render",[6,6,[[17,1,1,0,1,[[469,1,1,0,1]]],[18,2,2,1,3,[[515,1,1,1,2],[533,1,1,2,3]]],[23,2,2,3,5,[[795,2,2,3,5]]],[27,1,1,5,6,[[875,1,1,5,6]]]],[13694,14510,14767,20218,20236,22284]]],["renderest",[1,1,[[18,1,1,0,1,[[539,1,1,0,1]]]],[14839]]],["rendereth",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18928]]],["repay",[5,4,[[4,1,1,0,1,[[159,1,1,0,1]]],[17,2,2,1,3,[[456,1,1,1,2],[476,1,1,2,3]]],[22,2,1,3,4,[[737,2,1,3,4]]]],[5121,13386,13899,18818]]],["repayed",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16768]]],["repayeth",[1,1,[[4,1,1,0,1,[[159,1,1,0,1]]]],[5121]]],["requite",[2,2,[[11,1,1,0,1,[[321,1,1,0,1]]],[18,1,1,1,2,[[518,1,1,1,2]]]],[9782,14552]]],["requited",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6516]]],["restitution",[2,2,[[1,2,2,0,2,[[71,2,2,0,2]]]],[2118,2125]]],["restore",[8,8,[[1,2,2,0,2,[[71,2,2,0,2]]],[2,2,2,2,4,[[95,1,1,2,3],[113,1,1,3,4]]],[9,1,1,4,5,[[278,1,1,4,5]]],[19,1,1,5,6,[[633,1,1,5,6]]],[22,1,1,6,7,[[735,1,1,6,7]]],[28,1,1,7,8,[[877,1,1,7,8]]]],[2114,2117,2854,3467,8292,16571,18783,22336]]],["reward",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[8,1,1,1,2,[[259,1,1,1,2]]],[9,1,1,2,3,[[269,1,1,2,3]]],[19,1,1,3,4,[[652,1,1,3,4]]]],[5799,7858,8120,17135]]],["rewarded",[3,3,[[0,1,1,0,1,[[43,1,1,0,1]]],[18,1,1,1,2,[[512,1,1,1,2]]],[19,1,1,2,3,[[640,1,1,2,3]]]],[1328,14422,16760]]],["rewardeth",[1,1,[[18,1,1,0,1,[[508,1,1,0,1]]]],[14354]]]]},{"k":"H8000","v":[["*",[3,3,[[14,2,2,0,2,[[407,1,1,0,1],[409,1,1,1,2]]],[26,1,1,2,3,[[854,1,1,2,3]]]],[12150,12192,21900]]],["deliver",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12192]]],["finished",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[854,1,1,1,2]]]],[12150,21900]]]]},{"k":"H8001","v":[["*",[4,4,[[14,2,2,0,2,[[406,1,1,0,1],[407,1,1,1,2]]],[26,2,2,2,4,[[853,1,1,2,3],[855,1,1,3,4]]]],[12127,12141,21838,21930]]],["Peace",[3,3,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,2,2,1,3,[[853,1,1,1,2],[855,1,1,2,3]]]],[12127,21838,21930]]],["peace",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12141]]]]},{"k":"H8002","v":[["*",[87,84,[[1,4,4,0,4,[[69,1,1,0,1],[73,1,1,1,2],[78,1,1,2,3],[81,1,1,3,4]]],[2,30,29,4,33,[[92,4,4,4,8],[93,4,4,8,12],[95,1,1,12,13],[96,13,12,13,25],[98,3,3,25,28],[99,1,1,28,29],[106,1,1,29,30],[108,1,1,30,31],[111,1,1,31,32],[112,1,1,32,33]]],[3,19,19,33,52,[[122,3,3,33,36],[123,13,13,36,49],[126,1,1,49,50],[131,1,1,50,51],[145,1,1,51,52]]],[4,1,1,52,53,[[179,1,1,52,53]]],[5,3,3,53,56,[[194,1,1,53,54],[208,2,2,54,56]]],[6,2,2,56,58,[[230,1,1,56,57],[231,1,1,57,58]]],[8,3,3,58,61,[[245,1,1,58,59],[246,1,1,59,60],[248,1,1,60,61]]],[9,3,3,61,64,[[272,2,2,61,63],[290,1,1,63,64]]],[10,5,4,64,68,[[293,1,1,64,65],[298,3,2,65,67],[299,1,1,67,68]]],[11,1,1,68,69,[[328,1,1,68,69]]],[12,3,3,69,72,[[353,2,2,69,71],[358,1,1,71,72]]],[13,5,5,72,77,[[373,1,1,72,73],[395,1,1,73,74],[396,1,1,74,75],[397,1,1,75,76],[399,1,1,76,77]]],[19,1,1,77,78,[[634,1,1,77,78]]],[25,6,5,78,83,[[844,1,1,78,79],[846,2,2,79,81],[847,3,2,81,83]]],[29,1,1,83,84,[[883,1,1,83,84]]]],[2075,2182,2364,2444,2779,2781,2784,2787,2805,2821,2826,2830,2861,2890,2892,2893,2894,2897,2899,2900,2908,2911,2912,2913,2916,2957,2971,2975,2991,3240,3286,3390,3421,3837,3840,3841,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3938,3998,4161,4647,5592,6033,6449,6453,7080,7106,7426,7460,7494,8174,8175,8717,8831,9048,9049,9076,9976,10821,10822,10960,11331,11826,11849,11856,11924,16589,21599,21645,21647,21657,21667,22445]]],["+",[2,2,[[1,1,1,0,1,[[69,1,1,0,1]]],[19,1,1,1,2,[[634,1,1,1,2]]]],[2075,16589]]],["offering",[4,4,[[2,4,4,0,4,[[92,4,4,0,4]]]],[2779,2781,2784,2787]]],["offerings",[76,73,[[1,2,2,0,2,[[78,1,1,0,1],[81,1,1,1,2]]],[2,25,24,2,26,[[93,4,4,2,6],[95,1,1,6,7],[96,13,12,7,19],[98,3,3,19,22],[99,1,1,22,23],[108,1,1,23,24],[111,1,1,24,25],[112,1,1,25,26]]],[3,19,19,26,45,[[122,3,3,26,29],[123,13,13,29,42],[126,1,1,42,43],[131,1,1,43,44],[145,1,1,44,45]]],[4,1,1,45,46,[[179,1,1,45,46]]],[5,2,2,46,48,[[194,1,1,46,47],[208,1,1,47,48]]],[6,2,2,48,50,[[230,1,1,48,49],[231,1,1,49,50]]],[8,3,3,50,53,[[245,1,1,50,51],[246,1,1,51,52],[248,1,1,52,53]]],[9,3,3,53,56,[[272,2,2,53,55],[290,1,1,55,56]]],[10,5,4,56,60,[[293,1,1,56,57],[298,3,2,57,59],[299,1,1,59,60]]],[11,1,1,60,61,[[328,1,1,60,61]]],[12,3,3,61,64,[[353,2,2,61,63],[358,1,1,63,64]]],[13,3,3,64,67,[[373,1,1,64,65],[395,1,1,65,66],[397,1,1,66,67]]],[25,6,5,67,72,[[844,1,1,67,68],[846,2,2,68,70],[847,3,2,70,72]]],[29,1,1,72,73,[[883,1,1,72,73]]]],[2364,2444,2805,2821,2826,2830,2861,2890,2892,2893,2894,2897,2899,2900,2908,2911,2912,2913,2916,2957,2971,2975,2991,3286,3390,3421,3837,3840,3841,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3938,3998,4161,4647,5592,6033,6453,7080,7106,7426,7460,7494,8174,8175,8717,8831,9048,9049,9076,9976,10821,10822,10960,11331,11826,11856,21599,21645,21647,21657,21667,22445]]],["peace",[5,5,[[1,1,1,0,1,[[73,1,1,0,1]]],[2,1,1,1,2,[[106,1,1,1,2]]],[5,1,1,2,3,[[208,1,1,2,3]]],[13,2,2,3,5,[[396,1,1,3,4],[399,1,1,4,5]]]],[2182,3240,6449,11849,11924]]]]},{"k":"H8003","v":[["*",[28,27,[[0,3,3,0,3,[[14,1,1,0,1],[32,1,1,1,2],[33,1,1,2,3]]],[4,3,2,3,5,[[177,2,1,3,4],[179,1,1,4,5]]],[5,1,1,5,6,[[194,1,1,5,6]]],[7,1,1,6,7,[[233,1,1,6,7]]],[10,5,5,7,12,[[296,1,1,7,8],[298,1,1,8,9],[301,1,1,9,10],[305,2,2,10,12]]],[11,1,1,12,13,[[332,1,1,12,13]]],[12,4,4,13,17,[[349,1,1,13,14],[365,1,1,14,15],[366,2,2,15,17]]],[13,5,5,17,22,[[374,1,1,17,18],[381,1,1,18,19],[382,1,1,19,20],[385,1,1,20,21],[391,1,1,21,22]]],[19,1,1,22,23,[[638,1,1,22,23]]],[22,1,1,23,24,[[716,1,1,23,24]]],[29,2,2,24,26,[[879,2,2,24,26]]],[33,1,1,26,27,[[900,1,1,26,27]]]],[376,978,1001,5562,5591,6033,7161,8903,9046,9112,9252,9263,10101,10758,11152,11173,11183,11362,11507,11518,11585,11706,16689,18393,22370,22373,22696]]],["Shalem",[1,1,[[0,1,1,0,1,[[32,1,1,0,1]]]],[978]]],["full",[2,2,[[0,1,1,0,1,[[14,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]]],[376,7161]]],["just",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16689]]],["peaceable",[1,1,[[0,1,1,0,1,[[33,1,1,0,1]]]],[1001]]],["perfect",[16,15,[[4,2,1,0,1,[[177,2,1,0,1]]],[10,4,4,1,5,[[298,1,1,1,2],[301,1,1,2,3],[305,2,2,3,5]]],[11,1,1,5,6,[[332,1,1,5,6]]],[12,4,4,6,10,[[349,1,1,6,7],[365,1,1,7,8],[366,2,2,8,10]]],[13,4,4,10,14,[[381,1,1,10,11],[382,1,1,11,12],[385,1,1,12,13],[391,1,1,13,14]]],[22,1,1,14,15,[[716,1,1,14,15]]]],[5562,9046,9112,9252,9263,10101,10758,11152,11173,11183,11507,11518,11585,11706,18393]]],["perfected",[1,1,[[13,1,1,0,1,[[374,1,1,0,1]]]],[11362]]],["quiet",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22696]]],["ready",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8903]]],["whole",[4,4,[[4,1,1,0,1,[[179,1,1,0,1]]],[5,1,1,1,2,[[194,1,1,1,2]]],[29,2,2,2,4,[[879,2,2,2,4]]]],[5591,6033,22370,22373]]]]},{"k":"H8004","v":[["Salem",[2,2,[[0,1,1,0,1,[[13,1,1,0,1]]],[18,1,1,1,2,[[553,1,1,1,2]]]],[354,15083]]]]},{"k":"H8005","v":[["recompence",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5793]]]]},{"k":"H8006","v":[["Shillem",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]]],[1410,4538]]]]},{"k":"H8007","v":[["Salma",[4,3,[[12,4,3,0,3,[[339,4,3,0,3]]]],[10317,10357,10360]]]]},{"k":"H8008","v":[["*",[16,16,[[1,2,2,0,2,[[71,2,2,0,2]]],[4,2,2,2,4,[[176,1,1,2,3],[181,1,1,3,4]]],[5,3,3,4,7,[[195,2,2,4,6],[208,1,1,6,7]]],[10,3,3,7,10,[[300,1,1,7,8],[301,2,2,8,10]]],[13,1,1,10,11,[[375,1,1,10,11]]],[15,1,1,11,12,[[421,1,1,11,12]]],[17,1,1,12,13,[[444,1,1,12,13]]],[18,1,1,13,14,[[581,1,1,13,14]]],[21,1,1,14,15,[[674,1,1,14,15]]],[32,1,1,15,16,[[894,1,1,15,16]]]],[2122,2139,5538,5684,6042,6050,6434,9104,9137,9138,11388,12532,13082,15573,17593,22603]]],["+",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2139]]],["clothes",[3,3,[[4,1,1,0,1,[[181,1,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[17,1,1,2,3,[[444,1,1,2,3]]]],[5684,12532,13082]]],["garment",[4,4,[[10,2,2,0,2,[[301,2,2,0,2]]],[18,1,1,2,3,[[581,1,1,2,3]]],[32,1,1,3,4,[[894,1,1,3,4]]]],[9137,9138,15573,22603]]],["garments",[4,4,[[5,2,2,0,2,[[195,2,2,0,2]]],[10,1,1,2,3,[[300,1,1,2,3]]],[21,1,1,3,4,[[674,1,1,3,4]]]],[6042,6050,9104,17593]]],["raiment",[4,4,[[1,1,1,0,1,[[71,1,1,0,1]]],[4,1,1,1,2,[[176,1,1,1,2]]],[5,1,1,2,3,[[208,1,1,2,3]]],[13,1,1,3,4,[[375,1,1,3,4]]]],[2122,5538,6434,11388]]]]},{"k":"H8009","v":[["Salmon",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7210]]]]},{"k":"H8010","v":[["*",[291,261,[[9,2,2,0,2,[[271,1,1,0,1],[278,1,1,1,2]]],[10,158,139,2,141,[[291,26,21,2,23],[292,14,13,23,36],[293,7,7,36,43],[294,14,12,43,55],[295,13,11,55,66],[296,5,5,66,71],[297,10,9,71,80],[298,9,8,80,88],[299,19,16,88,104],[300,15,13,104,117],[301,20,18,117,135],[302,4,4,135,139],[304,2,2,139,141]]],[11,4,4,141,145,[[333,1,1,141,142],[335,1,1,142,143],[336,1,1,143,144],[337,1,1,144,145]]],[12,24,24,145,169,[[340,2,2,145,147],[343,2,2,147,149],[351,1,1,149,150],[355,1,1,150,151],[359,5,5,151,156],[360,1,1,156,157],[365,5,5,157,162],[366,7,7,162,169]]],[13,85,74,169,243,[[367,11,11,169,180],[368,5,5,180,185],[369,2,2,185,187],[370,4,4,187,191],[371,4,3,191,194],[372,2,2,194,196],[373,9,7,196,203],[374,15,12,203,215],[375,21,17,215,232],[376,2,2,232,234],[377,3,2,234,236],[378,1,1,236,237],[379,2,2,237,239],[396,1,1,239,240],[399,1,1,240,241],[401,2,2,241,243]]],[14,2,2,243,245,[[404,2,2,243,245]]],[15,5,5,245,250,[[419,2,2,245,247],[423,1,1,247,248],[424,1,1,248,249],[425,1,1,249,250]]],[19,3,3,250,253,[[628,1,1,250,251],[637,1,1,251,252],[652,1,1,252,253]]],[21,7,7,253,260,[[671,2,2,253,255],[673,3,3,255,258],[678,2,2,258,260]]],[23,1,1,260,261,[[796,1,1,260,261]]]],[8146,8310,8727,8728,8729,8730,8734,8736,8738,8743,8747,8750,8751,8754,8755,8756,8760,8763,8764,8767,8768,8769,8770,8771,8782,8783,8787,8789,8792,8793,8795,8797,8799,8811,8815,8816,8817,8819,8820,8821,8822,8826,8831,8845,8851,8855,8859,8865,8866,8869,8870,8871,8873,8874,8878,8879,8880,8885,8886,8888,8889,8890,8891,8893,8894,8896,8897,8898,8907,8910,8917,8935,8942,8947,8948,8974,8979,8981,8982,8985,8986,8987,8990,8997,9007,9039,9048,9050,9052,9053,9061,9062,9063,9066,9067,9068,9070,9072,9073,9074,9076,9077,9078,9079,9080,9081,9082,9083,9089,9092,9093,9095,9100,9102,9103,9105,9107,9109,9110,9112,9113,9114,9115,9117,9119,9122,9133,9134,9135,9136,9139,9148,9149,9150,9151,9153,9157,9172,9174,9239,9244,10126,10178,10215,10238,10366,10371,10464,10486,10778,10898,10969,10970,10971,10973,10981,10984,11148,11149,11152,11154,11163,11165,11183,11186,11187,11188,11189,11192,11195,11196,11197,11199,11200,11201,11202,11205,11207,11208,11210,11212,11213,11214,11222,11228,11230,11232,11257,11262,11264,11265,11269,11270,11274,11283,11295,11325,11329,11331,11332,11334,11335,11336,11347,11348,11349,11352,11354,11355,11356,11357,11358,11362,11363,11364,11365,11366,11367,11373,11374,11376,11377,11378,11379,11384,11386,11387,11389,11392,11393,11394,11395,11397,11401,11417,11431,11446,11459,11460,11853,11915,11969,11970,12082,12085,12477,12480,12591,12669,12697,16401,16657,17114,17538,17542,17578,17580,17582,17651,17652,20296]]],["+",[4,4,[[10,2,2,0,2,[[291,1,1,0,1],[301,1,1,1,2]]],[13,1,1,2,3,[[375,1,1,2,3]]],[21,1,1,3,4,[[673,1,1,3,4]]]],[8760,9122,11366,17578]]],["Solomon",[266,241,[[9,2,2,0,2,[[271,1,1,0,1],[278,1,1,1,2]]],[10,144,128,2,130,[[291,25,20,2,22],[292,14,13,22,35],[293,7,7,35,42],[294,11,10,42,52],[295,11,9,52,61],[296,4,4,61,65],[297,10,9,65,74],[298,9,8,74,82],[299,16,14,82,96],[300,13,12,96,108],[301,18,16,108,124],[302,4,4,124,128],[304,2,2,128,130]]],[11,4,4,130,134,[[333,1,1,130,131],[335,1,1,131,132],[336,1,1,132,133],[337,1,1,133,134]]],[12,23,23,134,157,[[340,1,1,134,135],[343,2,2,135,137],[351,1,1,137,138],[355,1,1,138,139],[359,5,5,139,144],[360,1,1,144,145],[365,5,5,145,150],[366,7,7,150,157]]],[13,82,73,157,230,[[367,11,11,157,168],[368,5,5,168,173],[369,2,2,173,175],[370,4,4,175,179],[371,4,3,179,182],[372,2,2,182,184],[373,8,7,184,191],[374,14,11,191,202],[375,20,17,202,219],[376,2,2,219,221],[377,3,2,221,223],[378,1,1,223,224],[379,2,2,224,226],[396,1,1,226,227],[399,1,1,227,228],[401,2,2,228,230]]],[15,2,2,230,232,[[424,1,1,230,231],[425,1,1,231,232]]],[19,3,3,232,235,[[628,1,1,232,233],[637,1,1,233,234],[652,1,1,234,235]]],[21,5,5,235,240,[[671,1,1,235,236],[673,2,2,236,238],[678,2,2,238,240]]],[23,1,1,240,241,[[796,1,1,240,241]]]],[8146,8310,8727,8728,8729,8730,8734,8736,8738,8743,8747,8750,8751,8754,8755,8756,8763,8764,8767,8768,8769,8770,8771,8782,8783,8787,8789,8792,8793,8795,8797,8799,8811,8815,8816,8817,8819,8820,8821,8822,8826,8831,8845,8851,8855,8859,8865,8869,8870,8871,8873,8878,8879,8880,8885,8886,8888,8889,8890,8891,8893,8898,8907,8910,8917,8935,8942,8947,8948,8974,8979,8981,8982,8985,8986,8987,8990,8997,9007,9039,9048,9050,9052,9053,9061,9062,9063,9066,9068,9070,9072,9073,9076,9077,9078,9079,9080,9081,9082,9089,9092,9093,9095,9100,9102,9103,9105,9107,9109,9110,9112,9113,9114,9115,9117,9119,9133,9135,9136,9139,9148,9149,9150,9151,9153,9157,9172,9174,9239,9244,10126,10178,10215,10238,10366,10464,10486,10778,10898,10969,10970,10971,10973,10981,10984,11148,11149,11152,11154,11163,11165,11183,11186,11187,11188,11189,11192,11195,11196,11197,11199,11200,11201,11202,11205,11207,11208,11210,11212,11213,11214,11222,11228,11230,11232,11257,11262,11264,11265,11269,11270,11274,11283,11295,11325,11329,11331,11332,11334,11335,11336,11347,11348,11349,11352,11354,11355,11357,11358,11362,11363,11364,11365,11366,11367,11373,11374,11376,11377,11378,11379,11384,11386,11387,11389,11392,11393,11394,11395,11397,11401,11417,11431,11446,11459,11460,11853,11915,11969,11970,12669,12697,16401,16657,17114,17542,17580,17582,17651,17652,20296]]],["Solomon's",[21,21,[[10,12,12,0,12,[[294,3,3,0,3],[295,2,2,3,5],[296,1,1,5,6],[299,3,3,6,9],[300,2,2,9,11],[301,1,1,11,12]]],[12,1,1,12,13,[[340,1,1,12,13]]],[13,2,2,13,15,[[373,1,1,13,14],[374,1,1,14,15]]],[14,2,2,15,17,[[404,2,2,15,17]]],[15,3,3,17,20,[[419,2,2,17,19],[423,1,1,19,20]]],[21,1,1,20,21,[[671,1,1,20,21]]]],[8866,8871,8874,8894,8896,8897,9052,9067,9074,9083,9100,9134,10371,11335,11356,12082,12085,12477,12480,12591,17538]]]]},{"k":"H8011","v":[["reward",[1,1,[[18,1,1,0,1,[[568,1,1,0,1]]]],[15403]]]]},{"k":"H8012","v":[["Salmon",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7211]]]]},{"k":"H8013","v":[["*",[6,5,[[12,6,5,0,5,[[360,2,2,0,2],[361,2,1,2,3],[363,2,2,3,5]]]],[10992,11001,11037,11102,11103]]],["Shelomith",[4,4,[[12,4,4,0,4,[[360,2,2,0,2],[363,2,2,2,4]]]],[10992,11001,11102,11103]]],["Shelomoth",[2,1,[[12,2,1,0,1,[[361,2,1,0,1]]]],[11037]]]]},{"k":"H8014","v":[["Shalmai",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12468]]]]},{"k":"H8015","v":[["Shelomi",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4843]]]]},{"k":"H8016","v":[["Shillemites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4538]]]]},{"k":"H8017","v":[["Shelumiel",[5,5,[[3,5,5,0,5,[[117,1,1,0,1],[118,1,1,1,2],[123,2,2,2,4],[126,1,1,4,5]]]],[3610,3670,3886,3891,4007]]]]},{"k":"H8018","v":[["Shelemiah",[10,10,[[12,1,1,0,1,[[363,1,1,0,1]]],[14,2,2,1,3,[[412,2,2,1,3]]],[15,2,2,3,5,[[415,1,1,3,4],[425,1,1,4,5]]],[23,5,5,5,10,[[780,2,2,5,7],[781,2,2,7,9],[782,1,1,9,10]]]],[11091,12291,12293,12357,12684,19856,19868,19877,19887,19896]]]]},{"k":"H8019","v":[["Shelomith",[5,5,[[2,1,1,0,1,[[113,1,1,0,1]]],[12,2,2,1,3,[[340,1,1,1,2],[363,1,1,2,3]]],[13,1,1,3,4,[[377,1,1,3,4]]],[14,1,1,4,5,[[410,1,1,4,5]]]],[3457,10380,11105,11434,12211]]]]},{"k":"H8020","v":[["Shalman",[1,1,[[27,1,1,0,1,[[871,1,1,0,1]]]],[22239]]]]},{"k":"H8021","v":[["rewards",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17677]]]]},{"k":"H8022","v":[["Shalmaneser",[2,2,[[11,2,2,0,2,[[329,1,1,0,1],[330,1,1,1,2]]]],[9986,10033]]]]},{"k":"H8023","v":[["Shiloni",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12593]]]]},{"k":"H8024","v":[["Shelanites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4509]]]]},{"k":"H8025","v":[["*",[25,24,[[3,2,2,0,2,[[138,2,2,0,2]]],[5,1,1,2,3,[[191,1,1,2,3]]],[6,10,10,3,13,[[213,1,1,3,4],[218,2,2,4,6],[219,1,1,6,7],[230,6,6,7,13]]],[7,2,2,13,15,[[235,2,2,13,15]]],[8,2,2,15,17,[[252,1,1,15,16],[266,1,1,16,17]]],[9,1,1,17,18,[[290,1,1,17,18]]],[11,1,1,18,19,[[315,1,1,18,19]]],[12,4,3,19,22,[[347,1,1,19,20],[358,3,2,20,22]]],[17,1,1,22,23,[[455,1,1,22,23]]],[18,1,1,23,24,[[606,1,1,23,24]]]],[4398,4406,5947,6590,6729,6739,6808,7056,7069,7071,7079,7089,7100,7197,7198,7669,8013,8701,9602,10663,10939,10950,13351,16138]]],["Draw",[3,3,[[6,1,1,0,1,[[219,1,1,0,1]]],[8,1,1,1,2,[[266,1,1,1,2]]],[12,1,1,2,3,[[347,1,1,2,3]]]],[6808,8013,10663]]],["draw",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6590]]],["drawn",[5,5,[[3,2,2,0,2,[[138,2,2,0,2]]],[5,1,1,2,3,[[191,1,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[17,1,1,4,5,[[455,1,1,4,5]]]],[4398,4406,5947,10950,13351]]],["drew",[13,12,[[6,8,8,0,8,[[218,2,2,0,2],[230,6,6,2,8]]],[8,1,1,8,9,[[252,1,1,8,9]]],[9,1,1,9,10,[[290,1,1,9,10]]],[11,1,1,10,11,[[315,1,1,10,11]]],[12,2,1,11,12,[[358,2,1,11,12]]]],[6729,6739,7056,7069,7071,7079,7089,7100,7669,8701,9602,10939]]],["off",[2,2,[[7,2,2,0,2,[[235,2,2,0,2]]]],[7197,7198]]],["up",[1,1,[[18,1,1,0,1,[[606,1,1,0,1]]]],[16138]]]]},{"k":"H8026","v":[["Sheleph",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[260,10272]]]]},{"k":"H8027","v":[["*",[9,6,[[0,3,1,0,1,[[14,3,1,0,1]]],[4,1,1,1,2,[[171,1,1,1,2]]],[8,1,1,2,3,[[255,1,1,2,3]]],[10,2,1,3,4,[[308,2,1,3,4]]],[20,1,1,4,5,[[662,1,1,4,5]]],[25,1,1,5,6,[[843,1,1,5,6]]]],[369,5409,7749,9375,17393,21558]]],["+",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5409]]],["days",[1,1,[[8,1,1,0,1,[[255,1,1,0,1]]]],[7749]]],["old",[3,1,[[0,3,1,0,1,[[14,3,1,0,1]]]],[369]]],["three",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21558]]],["threefold",[1,1,[[20,1,1,0,1,[[662,1,1,0,1]]]],[17393]]],["time",[2,1,[[10,2,1,0,1,[[308,2,1,0,1]]]],[9375]]]]},{"k":"H8028","v":[["Shelesh",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10570]]]]},{"k":"H8029","v":[["third",[5,5,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,2,2,1,3,[[69,1,1,1,2],[83,1,1,2,3]]],[3,1,1,3,4,[[130,1,1,3,4]]],[4,1,1,4,5,[[157,1,1,4,5]]]],[1529,2056,2503,4126,5062]]]]},{"k":"H8030","v":[["Shilshah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10572]]]]},{"k":"H8031","v":[["Shalisha",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7395]]]]},{"k":"H8032","v":[["*",[24,24,[[0,2,2,0,2,[[30,2,2,0,2]]],[1,6,6,2,8,[[53,1,1,2,3],[54,3,3,3,6],[70,2,2,6,8]]],[4,3,3,8,11,[[156,1,1,8,9],[171,2,2,9,11]]],[5,3,3,11,14,[[189,1,1,11,12],[190,1,1,12,13],[206,1,1,13,14]]],[7,1,1,14,15,[[233,1,1,14,15]]],[8,5,5,15,20,[[239,1,1,15,16],[245,1,1,16,17],[249,1,1,17,18],[254,1,1,18,19],[256,1,1,19,20]]],[9,2,2,20,22,[[269,1,1,20,21],[271,1,1,21,22]]],[11,1,1,22,23,[[325,1,1,22,23]]],[12,1,1,23,24,[[348,1,1,23,24]]]],[875,878,1611,1639,1640,1646,2106,2113,5046,5410,5412,5897,5928,6377,7160,7304,7429,7529,7713,7777,8098,8134,9876,10675]]],["+",[19,19,[[0,2,2,0,2,[[30,2,2,0,2]]],[1,6,6,2,8,[[53,1,1,2,3],[54,3,3,3,6],[70,2,2,6,8]]],[4,1,1,8,9,[[156,1,1,8,9]]],[5,2,2,9,11,[[189,1,1,9,10],[206,1,1,10,11]]],[7,1,1,11,12,[[233,1,1,11,12]]],[8,3,3,12,15,[[239,1,1,12,13],[245,1,1,13,14],[254,1,1,14,15]]],[9,2,2,15,17,[[269,1,1,15,16],[271,1,1,16,17]]],[11,1,1,17,18,[[325,1,1,17,18]]],[12,1,1,18,19,[[348,1,1,18,19]]]],[875,878,1611,1639,1640,1646,2106,2113,5046,5897,6377,7160,7304,7429,7713,8098,8134,9876,10675]]],["before",[1,1,[[5,1,1,0,1,[[190,1,1,0,1]]]],[5928]]],["three",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7777]]],["time",[3,3,[[4,2,2,0,2,[[171,2,2,0,2]]],[8,1,1,2,3,[[249,1,1,2,3]]]],[5410,5412,7529]]]]},{"k":"H8033","v":[["*",[823,724,[[0,100,85,0,85,[[1,4,4,0,4],[2,1,1,4,5],[9,1,1,5,6],[10,6,5,6,11],[11,4,3,11,14],[12,5,4,14,18],[13,1,1,18,19],[17,8,7,19,26],[18,5,3,26,29],[19,2,2,29,31],[20,3,3,31,34],[21,2,2,34,36],[22,1,1,36,37],[23,4,4,37,41],[24,1,1,41,42],[25,9,6,42,48],[26,2,2,48,50],[27,3,3,50,53],[28,2,2,53,55],[29,1,1,55,56],[30,3,2,56,58],[31,2,2,58,60],[32,2,2,60,62],[34,6,4,62,66],[37,1,1,66,67],[38,4,4,67,71],[39,1,1,71,72],[40,1,1,72,73],[41,3,2,73,75],[42,2,2,75,77],[43,1,1,77,78],[44,1,1,78,79],[45,1,1,79,80],[47,1,1,80,81],[48,4,2,81,83],[49,2,2,83,85]]],[1,31,28,85,113,[[57,1,1,85,86],[58,1,1,86,87],[59,1,1,87,88],[61,1,1,88,89],[64,4,2,89,91],[65,1,1,91,92],[66,2,2,92,94],[67,1,1,94,95],[68,1,1,95,96],[69,1,1,96,97],[70,2,2,97,99],[73,1,1,99,100],[74,1,1,100,101],[75,1,1,101,102],[78,3,2,102,104],[79,3,3,104,107],[83,3,3,107,110],[89,3,3,110,113]]],[2,5,5,113,118,[[91,1,1,113,114],[97,1,1,114,115],[105,1,1,115,116],[107,1,1,116,117],[109,1,1,117,118]]],[3,38,36,118,154,[[125,1,1,118,119],[127,3,3,119,122],[129,5,5,122,127],[130,3,3,127,130],[131,1,1,130,131],[133,1,1,131,132],[135,1,1,132,133],[136,5,4,133,137],[137,4,4,137,141],[138,1,1,141,142],[139,3,2,142,144],[148,1,1,144,145],[149,4,4,145,149],[151,5,5,149,154]]],[4,81,74,154,228,[[153,4,4,154,158],[155,1,1,158,159],[156,7,7,159,166],[157,1,1,166,167],[158,2,2,167,169],[159,1,1,169,170],[162,4,3,170,173],[163,5,4,173,177],[164,11,8,177,185],[165,1,1,185,186],[166,3,3,186,189],[168,3,3,189,192],[169,1,1,192,193],[170,2,2,193,195],[171,3,3,195,198],[173,1,1,198,199],[175,2,2,199,201],[176,1,1,201,202],[178,3,2,202,204],[179,2,2,204,206],[180,7,7,206,213],[182,6,5,213,218],[183,3,3,218,221],[184,3,3,221,224],[185,2,2,224,226],[186,2,2,226,228]]],[5,26,26,228,254,[[188,3,3,228,231],[189,1,1,231,232],[190,2,2,232,234],[192,1,1,234,235],[193,2,2,235,237],[194,1,1,237,238],[196,1,1,238,239],[200,1,1,239,240],[201,2,2,240,242],[203,1,1,242,243],[204,3,3,243,246],[205,2,2,246,248],[206,3,3,248,251],[208,2,2,251,253],[210,1,1,253,254]]],[6,38,37,254,291,[[211,3,3,254,257],[212,1,1,257,258],[215,2,2,258,260],[216,1,1,260,261],[217,1,1,261,262],[218,3,3,262,265],[219,2,2,265,267],[224,1,1,267,268],[226,2,2,268,270],[227,1,1,270,271],[228,6,6,271,277],[229,6,6,277,283],[230,3,3,283,286],[231,6,5,286,291]]],[7,6,6,291,297,[[232,4,4,291,295],[234,1,1,295,296],[235,1,1,296,297]]],[8,49,39,297,336,[[236,3,3,297,300],[237,1,1,300,301],[238,1,1,301,302],[239,2,1,302,303],[240,1,1,303,304],[241,2,1,304,305],[242,4,2,305,307],[244,2,2,307,309],[245,7,5,309,314],[246,4,2,314,316],[249,2,2,316,318],[252,1,1,318,319],[254,2,2,319,321],[255,2,2,321,323],[256,2,2,323,325],[257,4,3,325,328],[258,2,2,328,330],[259,1,1,330,331],[261,2,1,331,332],[262,1,1,332,333],[264,1,1,333,334],[265,1,1,334,335],[266,1,1,335,336]]],[9,37,35,336,371,[[267,1,1,336,337],[268,4,4,337,341],[269,1,1,341,342],[270,1,1,342,343],[271,2,2,343,345],[272,3,2,345,347],[276,1,1,347,348],[277,1,1,348,349],[279,1,1,349,350],[280,3,3,350,353],[281,4,4,353,357],[282,2,2,357,359],[283,3,3,359,362],[284,4,3,362,365],[286,1,1,365,366],[287,2,2,366,368],[289,2,2,368,370],[290,1,1,370,371]]],[10,43,38,371,409,[[291,3,3,371,374],[292,3,2,374,376],[293,1,1,376,377],[294,1,1,377,378],[295,1,1,378,379],[296,1,1,379,380],[297,2,2,380,382],[298,8,7,382,389],[299,3,2,389,391],[300,1,1,391,392],[301,2,2,392,394],[302,1,1,394,395],[303,1,1,395,396],[304,2,2,396,398],[307,6,5,398,403],[308,2,2,403,405],[309,4,3,405,408],[311,1,1,408,409]]],[11,58,47,409,456,[[313,3,3,409,412],[314,6,4,412,416],[316,6,3,416,419],[317,1,1,419,420],[318,8,6,420,426],[319,7,6,426,432],[321,4,3,432,435],[322,1,1,435,436],[323,1,1,436,437],[324,2,2,437,439],[326,1,1,439,440],[327,1,1,440,441],[328,1,1,441,442],[329,7,5,442,447],[331,1,1,447,448],[335,7,7,448,455],[336,1,1,455,456]]],[12,17,16,456,472,[[338,1,1,456,457],[340,1,1,457,458],[341,5,4,458,462],[348,2,2,462,464],[349,1,1,464,465],[350,2,2,465,467],[351,2,2,467,469],[353,1,1,469,470],[358,2,2,470,472]]],[13,23,21,472,493,[[367,2,2,472,474],[371,1,1,474,475],[372,6,5,475,480],[373,3,2,480,482],[374,2,2,482,484],[375,1,1,484,485],[378,1,1,485,486],[386,1,1,486,487],[389,1,1,487,488],[391,1,1,488,489],[392,1,1,489,490],[394,2,2,490,492],[398,1,1,492,493]]],[14,5,4,493,497,[[410,4,3,493,496],[412,1,1,496,497]]],[15,9,8,497,505,[[413,3,2,497,499],[414,1,1,499,500],[416,1,1,500,501],[417,1,1,501,502],[422,1,1,502,503],[425,2,2,503,505]]],[17,10,9,505,514,[[436,1,1,505,506],[438,3,2,506,508],[458,1,1,508,509],[469,1,1,509,510],[470,1,1,510,511],[474,2,2,511,513],[475,1,1,513,514]]],[18,22,22,514,536,[[491,1,1,514,515],[513,1,1,515,516],[525,1,1,516,517],[530,1,1,517,518],[543,1,1,518,519],[545,1,1,519,520],[546,1,1,520,521],[553,1,1,521,522],[564,2,2,522,524],[581,3,3,524,527],[584,1,1,527,528],[599,2,2,528,530],[609,1,1,530,531],[610,1,1,531,532],[614,2,2,532,534],[616,2,2,534,536]]],[19,4,4,536,540,[[635,1,1,536,537],[636,1,1,537,538],[642,1,1,538,539],[649,1,1,539,540]]],[20,7,6,540,546,[[659,2,2,540,542],[661,3,2,542,544],[667,1,1,544,545],[669,1,1,545,546]]],[21,3,2,546,548,[[677,1,1,546,547],[678,2,1,547,548]]],[22,34,25,548,573,[[685,3,3,548,551],[691,5,2,551,553],[698,1,1,553,554],[700,2,1,554,555],[701,1,1,555,556],[705,2,1,556,557],[706,4,2,557,559],[711,1,1,559,560],[712,4,3,560,563],[713,3,2,563,565],[715,1,1,565,566],[726,1,1,566,567],[730,2,2,567,569],[733,1,1,569,570],[735,1,1,570,571],[743,2,2,571,573]]],[23,76,68,573,641,[[746,1,1,573,574],[747,1,1,574,575],[751,1,1,575,576],[752,3,3,576,579],[757,4,3,579,582],[760,2,2,582,584],[762,1,1,584,585],[763,2,2,585,587],[764,2,1,587,588],[766,8,6,588,594],[767,2,2,594,596],[768,1,1,596,597],[771,1,1,597,598],[773,5,4,598,602],[774,1,1,602,603],[776,2,2,603,605],[779,1,1,605,606],[780,1,1,606,607],[781,4,4,607,611],[782,2,2,611,613],[784,2,2,613,615],[785,3,3,615,618],[786,7,5,618,623],[787,3,3,623,626],[788,5,4,626,630],[789,1,1,630,631],[790,2,2,631,633],[791,1,1,633,634],[793,5,5,634,639],[794,2,2,639,641]]],[25,68,55,641,696,[[802,4,3,641,644],[804,5,3,644,647],[805,1,1,647,648],[806,1,1,648,649],[807,2,2,649,651],[809,4,4,651,655],[812,2,2,655,657],[813,2,2,657,659],[814,1,1,659,660],[818,1,1,660,661],[821,10,5,661,666],[824,2,1,666,667],[830,2,2,667,669],[831,1,1,669,670],[833,5,5,670,675],[835,2,2,675,677],[836,1,1,677,678],[837,3,3,678,681],[838,1,1,681,682],[840,3,2,682,684],[841,3,3,684,687],[843,3,2,687,689],[844,1,1,689,690],[847,3,3,690,693],[848,4,2,693,695],[849,1,1,695,696]]],[26,2,2,696,698,[[858,1,1,696,697],[859,1,1,697,698]]],[27,8,7,698,705,[[863,2,1,698,699],[867,2,2,699,701],[870,1,1,701,702],[871,1,1,702,703],[873,1,1,703,704],[874,1,1,704,705]]],[28,4,4,705,709,[[878,4,4,705,709]]],[29,8,5,709,714,[[884,1,1,709,710],[885,2,1,710,711],[887,5,3,711,714]]],[30,1,1,714,715,[[888,1,1,714,715]]],[31,1,1,715,716,[[892,1,1,715,716]]],[32,3,2,716,718,[[894,1,1,716,717],[896,2,1,717,718]]],[33,2,2,718,720,[[901,1,1,718,719],[902,1,1,719,720]]],[34,1,1,720,721,[[905,1,1,720,721]]],[35,1,1,721,722,[[906,1,1,721,722]]],[36,1,1,722,723,[[910,1,1,722,723]]],[37,1,1,723,724,[[915,1,1,723,724]]]],[38,40,41,42,78,248,268,273,274,275,297,305,306,308,321,322,332,336,346,440,446,452,453,454,455,456,477,479,484,496,508,530,544,546,549,556,584,596,597,598,599,668,700,709,711,714,715,717,736,772,775,779,784,797,798,862,886,919,941,957,979,980,1012,1014,1018,1038,1121,1150,1160,1169,1171,1175,1207,1254,1278,1315,1320,1338,1369,1389,1458,1497,1504,1511,1516,1732,1768,1803,1846,1945,1947,1980,1986,1989,2004,2028,2072,2090,2110,2189,2217,2268,2378,2379,2388,2400,2418,2498,2501,2524,2710,2714,2737,2764,2948,3224,3254,3340,3982,4040,4041,4058,4097,4098,4099,4103,4108,4132,4143,4151,4171,4248,4307,4312,4315,4337,4339,4352,4353,4356,4372,4416,4429,4443,4744,4769,4774,4798,4814,4851,4856,4860,4870,4871,4920,4929,4930,4931,4996,5009,5018,5030,5031,5032,5033,5046,5068,5087,5109,5112,5191,5192,5193,5216,5218,5219,5237,5242,5245,5246,5247,5251,5254,5261,5269,5284,5313,5314,5316,5344,5348,5353,5376,5390,5391,5409,5410,5418,5451,5512,5520,5543,5568,5571,5590,5592,5632,5647,5648,5674,5675,5676,5679,5709,5711,5712,5724,5726,5741,5744,5754,5805,5808,5810,5829,5831,5843,5844,5870,5885,5891,5894,5918,5919,5971,5979,5980,6034,6091,6199,6216,6217,6290,6294,6303,6306,6334,6355,6375,6378,6381,6436,6445,6502,6516,6520,6529,6550,6634,6650,6678,6698,6727,6744,6746,6775,6805,6919,6950,6976,6987,6995,6996,7004,7006,7008,7010,7026,7028,7031,7039,7042,7050,7076,7080,7081,7104,7106,7111,7112,7126,7129,7131,7134,7144,7176,7191,7215,7234,7240,7254,7279,7301,7330,7345,7358,7369,7397,7401,7421,7423,7428,7430,7441,7459,7460,7519,7542,7667,7709,7729,7736,7749,7778,7779,7788,7790,7809,7832,7839,7842,7910,7935,7971,8009,8021,8043,8051,8053,8067,8072,8108,8123,8152,8153,8159,8164,8258,8275,8355,8358,8386,8388,8410,8418,8424,8425,8431,8440,8461,8462,8467,8485,8486,8489,8555,8592,8593,8662,8664,8717,8731,8751,8762,8773,8806,8820,8872,8887,8915,8941,8942,8993,8994,9001,9006,9014,9032,9049,9054,9079,9099,9124,9144,9176,9201,9220,9239,9321,9326,9327,9330,9336,9351,9381,9390,9396,9406,9469,9537,9539,9549,9571,9572,9574,9576,9611,9613,9614,9665,9675,9676,9680,9683,9684,9688,9709,9711,9712,9715,9717,9726,9758,9772,9783,9808,9845,9855,9859,9915,9945,9969,9994,10008,10010,10012,10016,10093,10172,10173,10177,10181,10185,10192,10199,10215,10264,10365,10408,10425,10426,10428,10677,10686,10759,10766,10770,10785,10786,10857,10960,10962,11197,11200,11277,11287,11288,11293,11302,11319,11331,11340,11348,11364,11383,11450,11613,11671,11731,11752,11773,11782,11896,12216,12222,12233,12258,12299,12305,12318,12379,12398,12588,12676,12680,12890,12921,12923,13426,13705,13732,13863,13864,13884,14085,14450,14640,14724,14879,14927,14970,15084,15305,15307,15588,15596,15597,15735,16093,16094,16168,16172,16223,16225,16247,16249,16629,16656,16824,17029,17320,17322,17375,17376,17485,17516,17639,17645,17805,17806,17807,17926,17927,18035,18070,18089,18161,18174,18177,18300,18315,18317,18318,18328,18329,18385,18630,18700,18707,18750,18772,18906,18917,18971,19008,19121,19156,19167,19175,19270,19272,19273,19349,19351,19386,19409,19421,19428,19455,19465,19466,19478,19480,19481,19487,19492,19533,19618,19641,19642,19649,19653,19678,19736,19768,19830,19854,19886,19887,19890,19894,19906,19921,19945,19953,19958,19960,19966,19989,19990,19991,19992,19997,19999,20002,20009,20018,20022,20024,20038,20045,20062,20073,20080,20143,20145,20160,20163,20165,20175,20206,20467,20476,20484,20517,20524,20525,20542,20549,20572,20576,20605,20607,20608,20618,20671,20673,20693,20696,20728,20845,20923,20924,20930,20935,20938,21010,21196,21197,21222,21270,21272,21274,21277,21278,21325,21327,21354,21379,21380,21381,21418,21459,21476,21478,21480,21515,21565,21566,21579,21674,21675,21679,21688,21702,21737,21995,22028,22120,22174,22177,22223,22234,22256,22274,22345,22350,22354,22355,22452,22476,22497,22498,22499,22514,22573,22598,22630,22710,22727,22772,22801,22869,22947]]],["+",[270,257,[[0,34,33,0,33,[[1,2,2,0,2],[2,1,1,2,3],[9,1,1,3,4],[10,2,2,4,6],[11,1,1,6,7],[12,2,2,7,9],[17,2,2,9,11],[18,1,1,11,12],[19,2,2,12,14],[20,1,1,14,15],[23,2,2,15,17],[25,3,3,17,20],[26,2,2,20,22],[27,3,3,22,25],[29,1,1,25,26],[30,2,1,26,27],[32,1,1,27,28],[34,1,1,28,29],[39,1,1,29,30],[41,2,2,30,32],[48,1,1,32,33]]],[1,9,9,33,42,[[58,1,1,33,34],[61,1,1,34,35],[67,1,1,35,36],[69,1,1,36,37],[70,1,1,37,38],[78,1,1,38,39],[79,2,2,39,41],[89,1,1,41,42]]],[2,3,3,42,45,[[91,1,1,42,43],[107,1,1,43,44],[109,1,1,44,45]]],[3,15,14,45,59,[[129,2,2,45,47],[130,1,1,47,48],[131,1,1,48,49],[133,1,1,49,50],[137,3,3,50,53],[138,1,1,53,54],[139,3,2,54,56],[149,1,1,56,57],[151,2,2,57,59]]],[4,35,33,59,92,[[155,1,1,59,60],[156,5,5,60,65],[157,1,1,65,66],[158,2,2,66,68],[159,1,1,68,69],[162,1,1,69,70],[163,5,4,70,74],[164,2,2,74,76],[170,1,1,76,77],[171,1,1,77,78],[175,1,1,78,79],[176,1,1,79,80],[180,3,3,80,83],[182,6,5,83,88],[183,2,2,88,90],[184,2,2,90,92]]],[5,9,9,92,101,[[192,1,1,92,93],[196,1,1,93,94],[201,2,2,94,96],[204,1,1,96,97],[205,2,2,97,99],[206,1,1,99,100],[208,1,1,100,101]]],[6,11,10,101,111,[[211,2,2,101,103],[218,2,2,103,105],[228,2,2,105,107],[229,2,2,107,109],[230,1,1,109,110],[231,2,1,110,111]]],[7,2,2,111,113,[[232,1,1,111,112],[234,1,1,112,113]]],[8,18,17,113,130,[[238,1,1,113,114],[239,1,1,114,115],[244,1,1,115,116],[245,4,4,116,120],[249,1,1,120,121],[252,1,1,121,122],[254,1,1,122,123],[255,1,1,123,124],[257,2,2,124,126],[258,1,1,126,127],[261,2,1,127,128],[264,1,1,128,129],[265,1,1,129,130]]],[9,7,7,130,137,[[272,1,1,130,131],[277,1,1,131,132],[280,1,1,132,133],[282,1,1,133,134],[283,1,1,134,135],[287,2,2,135,137]]],[10,16,16,137,153,[[291,1,1,137,138],[292,2,2,138,140],[294,1,1,140,141],[296,1,1,141,142],[297,2,2,142,144],[298,2,2,144,146],[299,1,1,146,147],[302,1,1,147,148],[307,2,2,148,150],[308,1,1,150,151],[309,1,1,151,152],[311,1,1,152,153]]],[11,23,21,153,174,[[313,3,3,153,156],[314,4,3,156,159],[318,2,2,159,161],[319,4,3,161,164],[322,1,1,164,165],[324,2,2,165,167],[329,3,3,167,170],[335,3,3,170,173],[336,1,1,173,174]]],[12,2,2,174,176,[[338,1,1,174,175],[350,1,1,175,176]]],[13,4,4,176,180,[[372,2,2,176,178],[374,1,1,178,179],[392,1,1,179,180]]],[15,1,1,180,181,[[413,1,1,180,181]]],[17,1,1,181,182,[[474,1,1,181,182]]],[18,2,2,182,184,[[581,1,1,182,183],[599,1,1,183,184]]],[20,1,1,184,185,[[667,1,1,184,185]]],[22,3,3,185,188,[[698,1,1,185,186],[730,1,1,186,187],[743,1,1,187,188]]],[23,36,35,188,223,[[751,1,1,188,189],[752,1,1,189,190],[757,2,2,190,192],[760,1,1,192,193],[763,2,2,193,195],[766,5,5,195,200],[767,2,2,200,202],[768,1,1,202,203],[773,4,3,203,206],[774,1,1,206,207],[776,1,1,207,208],[779,1,1,208,209],[781,1,1,209,210],[782,1,1,210,211],[784,1,1,211,212],[785,1,1,212,213],[786,1,1,213,214],[787,2,2,214,216],[788,1,1,216,217],[789,1,1,217,218],[790,1,1,218,219],[793,3,3,219,222],[794,1,1,222,223]]],[25,26,24,223,247,[[802,2,2,223,225],[805,1,1,225,226],[806,1,1,226,227],[807,2,2,227,229],[809,1,1,229,230],[812,1,1,230,231],[813,1,1,231,232],[821,3,2,232,234],[830,1,1,234,235],[831,1,1,235,236],[835,1,1,236,237],[837,3,3,237,240],[838,1,1,240,241],[843,1,1,241,242],[844,1,1,242,243],[847,2,2,243,245],[848,3,2,245,247]]],[26,1,1,247,248,[[858,1,1,247,248]]],[27,1,1,248,249,[[863,1,1,248,249]]],[28,1,1,249,250,[[878,1,1,249,250]]],[29,6,4,250,254,[[884,1,1,250,251],[887,5,3,251,254]]],[30,1,1,254,255,[[888,1,1,254,255]]],[32,1,1,255,256,[[894,1,1,255,256]]],[33,1,1,256,257,[[901,1,1,256,257]]]],[40,41,78,248,274,275,306,321,332,440,446,484,496,508,530,596,598,709,714,715,736,772,775,779,784,862,886,979,1038,1175,1254,1278,1497,1768,1846,2004,2072,2090,2378,2388,2418,2710,2764,3254,3340,4098,4099,4132,4171,4248,4352,4353,4356,4416,4429,4443,4814,4870,4871,4996,5009,5018,5030,5031,5033,5068,5087,5109,5112,5193,5216,5218,5219,5237,5242,5269,5390,5418,5520,5543,5632,5648,5674,5709,5711,5712,5724,5726,5741,5744,5805,5808,5971,6091,6216,6217,6306,6334,6355,6378,6445,6520,6529,6727,6746,7004,7006,7042,7050,7076,7126,7134,7176,7279,7301,7401,7421,7423,7430,7441,7519,7667,7709,7749,7788,7790,7839,7910,7971,8009,8159,8275,8358,8431,8461,8592,8593,8762,8773,8806,8872,8915,8941,8942,9006,9032,9079,9176,9330,9336,9351,9406,9469,9537,9539,9549,9572,9574,9576,9675,9676,9709,9715,9726,9808,9855,9859,10010,10012,10016,10172,10173,10177,10215,10264,10766,11293,11319,11364,11752,12305,13863,15588,16093,17485,18035,18707,18917,19121,19156,19272,19273,19351,19409,19421,19455,19466,19478,19480,19481,19487,19492,19533,19642,19649,19653,19678,19768,19830,19886,19906,19953,19966,19997,20002,20009,20018,20045,20073,20143,20163,20165,20175,20476,20484,20542,20549,20572,20576,20607,20671,20696,20923,20924,21196,21222,21325,21379,21380,21381,21418,21565,21579,21675,21679,21688,21702,21995,22120,22350,22452,22497,22498,22499,22514,22598,22710]]],["There",[17,17,[[0,1,1,0,1,[[48,1,1,0,1]]],[17,3,3,1,4,[[438,1,1,1,2],[458,1,1,2,3],[470,1,1,3,4]]],[18,7,7,4,11,[[491,1,1,4,5],[513,1,1,5,6],[530,1,1,6,7],[545,1,1,7,8],[553,1,1,8,9],[581,1,1,9,10],[609,1,1,10,11]]],[22,1,1,11,12,[[712,1,1,11,12]]],[25,4,4,12,16,[[833,4,4,12,16]]],[33,1,1,16,17,[[902,1,1,16,17]]]],[1504,12921,13426,13732,14085,14450,14724,14927,15084,15597,16168,18318,21272,21274,21277,21278,22727]]],["Where",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8485]]],["here",[2,2,[[22,2,2,0,2,[[706,2,2,0,2]]]],[18174,18177]]],["it",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11293]]],["there",[431,389,[[0,56,49,0,49,[[1,2,2,0,2],[10,4,4,2,6],[11,3,3,6,9],[12,3,2,9,11],[13,1,1,11,12],[17,6,5,12,17],[20,2,2,17,19],[21,2,2,19,21],[22,1,1,21,22],[24,1,1,22,23],[25,6,4,23,27],[28,1,1,27,28],[30,1,1,28,29],[31,2,2,29,31],[32,1,1,31,32],[34,5,3,32,35],[37,1,1,35,36],[38,3,3,36,39],[40,1,1,39,40],[42,2,2,40,42],[43,1,1,42,43],[44,1,1,43,44],[45,1,1,44,45],[47,1,1,45,46],[48,2,1,46,47],[49,2,2,47,49]]],[1,15,14,49,63,[[57,1,1,49,50],[64,3,2,50,52],[66,2,2,52,54],[68,1,1,54,55],[73,1,1,55,56],[74,1,1,56,57],[78,2,2,57,59],[83,3,3,59,62],[89,1,1,62,63]]],[2,2,2,63,65,[[97,1,1,63,64],[105,1,1,64,65]]],[3,18,17,65,82,[[125,1,1,65,66],[127,3,3,66,69],[129,2,2,69,71],[130,2,2,71,73],[135,1,1,73,74],[136,5,4,74,78],[137,1,1,78,79],[148,1,1,79,80],[149,2,2,80,82]]],[4,34,31,82,113,[[153,1,1,82,83],[156,1,1,83,84],[162,3,2,84,86],[164,6,5,86,91],[165,1,1,91,92],[166,3,3,92,95],[168,3,3,95,98],[169,1,1,98,99],[170,1,1,99,100],[173,1,1,100,101],[178,3,2,101,103],[179,2,2,103,105],[180,4,4,105,109],[183,1,1,109,110],[185,2,2,110,112],[186,1,1,112,113]]],[5,13,13,113,126,[[188,3,3,113,116],[189,1,1,116,117],[190,2,2,117,119],[194,1,1,119,120],[200,1,1,120,121],[203,1,1,121,122],[204,2,2,122,124],[208,1,1,124,125],[210,1,1,125,126]]],[6,20,20,126,146,[[211,1,1,126,127],[212,1,1,127,128],[215,2,2,128,130],[216,1,1,130,131],[217,1,1,131,132],[219,1,1,132,133],[224,1,1,133,134],[226,2,2,134,136],[227,1,1,136,137],[228,1,1,137,138],[229,3,3,138,141],[230,2,2,141,143],[231,3,3,143,146]]],[7,4,4,146,150,[[232,3,3,146,149],[235,1,1,149,150]]],[8,23,19,150,169,[[236,3,3,150,153],[239,1,1,153,154],[240,1,1,154,155],[241,1,1,155,156],[242,4,2,156,158],[245,1,1,158,159],[246,4,2,159,161],[249,1,1,161,162],[255,1,1,162,163],[256,2,2,163,165],[257,1,1,165,166],[258,1,1,166,167],[262,1,1,167,168],[266,1,1,168,169]]],[9,26,25,169,194,[[267,1,1,169,170],[268,3,3,170,173],[269,1,1,173,174],[270,1,1,174,175],[271,2,2,175,177],[272,2,1,177,178],[276,1,1,178,179],[279,1,1,179,180],[280,2,2,180,182],[281,4,4,182,186],[282,1,1,186,187],[283,1,1,187,188],[284,3,3,188,191],[286,1,1,191,192],[289,1,1,192,193],[290,1,1,193,194]]],[10,25,23,194,217,[[291,2,2,194,196],[292,1,1,196,197],[293,1,1,197,198],[295,1,1,198,199],[298,5,5,199,204],[299,2,1,204,205],[300,1,1,205,206],[301,2,2,206,208],[303,1,1,208,209],[304,2,2,209,211],[307,4,3,211,214],[308,1,1,214,215],[309,2,2,215,217]]],[11,24,24,217,241,[[314,1,1,217,218],[316,2,2,218,220],[317,1,1,220,221],[318,2,2,221,223],[319,3,3,223,226],[321,3,3,226,229],[323,1,1,229,230],[326,1,1,230,231],[327,1,1,231,232],[328,1,1,232,233],[329,3,3,233,236],[331,1,1,236,237],[335,4,4,237,241]]],[12,14,13,241,254,[[340,1,1,241,242],[341,5,4,242,246],[348,1,1,246,247],[349,1,1,247,248],[350,1,1,248,249],[351,2,2,249,251],[353,1,1,251,252],[358,2,2,252,254]]],[13,17,16,254,270,[[367,1,1,254,255],[371,1,1,255,256],[372,3,3,256,259],[373,3,2,259,261],[374,1,1,261,262],[375,1,1,262,263],[378,1,1,263,264],[386,1,1,264,265],[389,1,1,265,266],[391,1,1,266,267],[394,2,2,267,269],[398,1,1,269,270]]],[14,4,3,270,273,[[410,4,3,270,273]]],[15,3,3,273,276,[[413,2,2,273,275],[414,1,1,275,276]]],[17,3,3,276,279,[[438,2,2,276,278],[474,1,1,278,279]]],[18,12,12,279,291,[[525,1,1,279,280],[543,1,1,280,281],[546,1,1,281,282],[564,2,2,282,284],[584,1,1,284,285],[599,1,1,285,286],[610,1,1,286,287],[614,2,2,287,289],[616,2,2,289,291]]],[19,2,2,291,293,[[635,1,1,291,292],[636,1,1,292,293]]],[20,4,3,293,296,[[661,3,2,293,295],[669,1,1,295,296]]],[21,3,2,296,298,[[677,1,1,296,297],[678,2,1,297,298]]],[22,23,17,298,315,[[691,5,2,298,300],[700,2,1,300,301],[701,1,1,301,302],[705,2,1,302,303],[706,2,2,303,305],[711,1,1,305,306],[712,3,3,306,309],[713,3,2,309,311],[715,1,1,311,312],[726,1,1,312,313],[730,1,1,313,314],[743,1,1,314,315]]],[23,36,32,315,347,[[747,1,1,315,316],[752,2,2,316,318],[757,2,2,318,320],[760,1,1,320,321],[762,1,1,321,322],[764,2,1,322,323],[766,1,1,323,324],[771,1,1,324,325],[773,1,1,325,326],[776,1,1,326,327],[780,1,1,327,328],[781,3,3,328,331],[782,1,1,331,332],[785,2,2,332,334],[786,6,4,334,338],[787,1,1,338,339],[788,4,3,339,342],[790,1,1,342,343],[791,1,1,343,344],[793,2,2,344,346],[794,1,1,346,347]]],[25,31,25,347,372,[[802,1,1,347,348],[804,4,3,348,351],[809,3,3,351,354],[813,1,1,354,355],[814,1,1,355,356],[818,1,1,356,357],[821,7,4,357,361],[824,2,1,361,362],[830,1,1,362,363],[833,1,1,363,364],[835,1,1,364,365],[836,1,1,365,366],[840,3,2,366,368],[843,2,2,368,370],[847,1,1,370,371],[849,1,1,371,372]]],[26,1,1,372,373,[[859,1,1,372,373]]],[27,7,7,373,380,[[863,1,1,373,374],[867,2,2,374,376],[870,1,1,376,377],[871,1,1,377,378],[873,1,1,378,379],[874,1,1,379,380]]],[28,2,2,380,382,[[878,2,2,380,382]]],[29,2,1,382,383,[[885,2,1,382,383]]],[31,1,1,383,384,[[892,1,1,383,384]]],[32,2,1,384,385,[[896,2,1,384,385]]],[34,1,1,385,386,[[905,1,1,385,386]]],[35,1,1,386,387,[[906,1,1,386,387]]],[36,1,1,387,388,[[910,1,1,387,388]]],[37,1,1,388,389,[[915,1,1,388,389]]]],[38,42,268,273,275,297,305,306,308,322,336,346,452,453,454,455,456,544,546,549,556,584,668,700,709,711,717,797,919,941,957,980,1012,1014,1018,1121,1160,1169,1171,1207,1315,1320,1338,1369,1389,1458,1504,1511,1516,1732,1945,1947,1986,1989,2028,2189,2217,2378,2379,2498,2501,2524,2737,2948,3224,3982,4040,4041,4058,4103,4108,4143,4151,4307,4312,4315,4337,4339,4372,4744,4769,4798,4920,5032,5191,5192,5245,5247,5251,5254,5261,5284,5313,5314,5316,5344,5348,5353,5376,5391,5451,5568,5571,5590,5592,5647,5675,5676,5679,5754,5829,5831,5844,5870,5885,5891,5894,5918,5919,6034,6199,6290,6294,6303,6436,6502,6516,6550,6634,6650,6678,6698,6775,6919,6950,6976,6987,6995,7026,7028,7031,7080,7081,7104,7106,7111,7129,7131,7144,7191,7215,7234,7240,7301,7330,7345,7358,7369,7421,7459,7460,7542,7736,7778,7779,7809,7832,7935,8021,8043,8053,8067,8072,8108,8123,8152,8153,8164,8258,8355,8386,8388,8410,8418,8424,8425,8440,8462,8485,8486,8489,8555,8662,8717,8731,8751,8806,8820,8887,8993,8994,9006,9014,9049,9054,9099,9124,9144,9201,9220,9239,9321,9326,9327,9381,9390,9396,9572,9613,9614,9665,9676,9684,9711,9712,9717,9758,9772,9783,9845,9915,9945,9969,9994,10008,10010,10093,10181,10185,10192,10199,10365,10408,10425,10426,10428,10686,10759,10770,10785,10786,10857,10960,10962,11197,11277,11287,11288,11302,11331,11340,11348,11383,11450,11613,11671,11731,11773,11782,11896,12216,12222,12233,12299,12305,12318,12921,12923,13864,14640,14879,14970,15305,15307,15735,16094,16172,16223,16225,16247,16249,16629,16656,17375,17376,17516,17639,17645,17926,17927,18070,18089,18161,18174,18177,18300,18315,18317,18318,18328,18329,18385,18630,18700,18906,19008,19167,19175,19270,19272,19349,19386,19428,19480,19618,19641,19736,19854,19887,19890,19894,19921,19958,19960,19989,19990,19991,19992,19999,20022,20024,20038,20062,20080,20145,20160,20206,20467,20517,20524,20525,20605,20608,20618,20693,20728,20845,20923,20930,20935,20938,21010,21197,21270,21327,21354,21459,21476,21565,21566,21674,21737,22028,22120,22174,22177,22223,22234,22256,22274,22345,22355,22476,22573,22630,22772,22801,22869,22947]]],["therein",[8,8,[[1,4,4,0,4,[[65,1,1,0,1],[70,1,1,1,2],[79,1,1,2,3],[89,1,1,3,4]]],[6,1,1,4,5,[[218,1,1,4,5]]],[10,1,1,5,6,[[298,1,1,5,6]]],[11,1,1,6,7,[[314,1,1,6,7]]],[19,1,1,7,8,[[649,1,1,7,8]]]],[1980,2110,2400,2714,6744,9001,9571,17029]]],["thither",[69,68,[[0,8,7,0,7,[[18,3,2,0,2],[23,2,2,2,4],[28,1,1,4,5],[38,1,1,5,6],[41,1,1,6,7]]],[1,2,2,7,9,[[59,1,1,7,8],[75,1,1,8,9]]],[3,3,3,9,12,[[151,3,3,9,12]]],[4,11,11,12,23,[[153,3,3,12,15],[156,1,1,15,16],[164,3,3,16,19],[171,2,2,19,21],[184,1,1,21,22],[186,1,1,22,23]]],[5,4,4,23,27,[[193,2,2,23,25],[206,2,2,25,27]]],[6,5,5,27,32,[[219,1,1,27,28],[228,2,2,28,30],[229,1,1,30,31],[231,1,1,31,32]]],[8,6,6,32,38,[[237,1,1,32,33],[244,1,1,33,34],[245,2,2,34,36],[254,1,1,36,37],[257,1,1,37,38]]],[9,1,1,38,39,[[268,1,1,38,39]]],[10,1,1,39,40,[[309,1,1,39,40]]],[11,8,8,40,48,[[316,3,3,40,43],[318,3,3,43,46],[321,1,1,46,47],[329,1,1,47,48]]],[13,1,1,48,49,[[367,1,1,48,49]]],[14,1,1,49,50,[[412,1,1,49,50]]],[15,3,3,50,53,[[416,1,1,50,51],[417,1,1,51,52],[425,1,1,52,53]]],[17,1,1,53,54,[[436,1,1,53,54]]],[20,1,1,54,55,[[659,1,1,54,55]]],[22,4,4,55,59,[[685,2,2,55,57],[733,1,1,57,58],[735,1,1,58,59]]],[23,3,3,59,62,[[766,2,2,59,61],[784,1,1,61,62]]],[25,5,5,62,67,[[802,1,1,62,63],[812,1,1,63,64],[841,2,2,64,66],[848,1,1,66,67]]],[28,1,1,67,68,[[878,1,1,67,68]]]],[477,479,597,599,798,1150,1254,1803,2268,4851,4856,4860,4929,4930,4931,5046,5245,5246,5251,5409,5410,5810,5843,5979,5980,6375,6381,6805,6996,7010,7039,7112,7254,7397,7423,7428,7729,7788,8051,9396,9611,9613,9614,9680,9683,9688,9758,10010,11200,12258,12379,12398,12680,12890,17322,17806,17807,18750,18772,19465,19481,19945,20484,20673,21478,21480,21688,22354]]],["thitherward",[1,1,[[6,1,1,0,1,[[228,1,1,0,1]]]],[7008]]],["unto",[1,1,[[0,1,1,0,1,[[18,1,1,0,1]]]],[477]]],["where",[19,19,[[1,1,1,0,1,[[64,1,1,0,1]]],[3,2,2,1,3,[[129,1,1,1,2],[149,1,1,2,3]]],[8,2,2,3,5,[[241,1,1,3,4],[259,1,1,4,5]]],[9,1,1,5,6,[[289,1,1,5,6]]],[11,2,2,6,8,[[316,1,1,6,7],[318,1,1,7,8]]],[12,1,1,8,9,[[348,1,1,8,9]]],[15,2,2,9,11,[[422,1,1,9,10],[425,1,1,10,11]]],[17,2,2,11,13,[[469,1,1,11,12],[475,1,1,12,13]]],[19,1,1,13,14,[[642,1,1,13,14]]],[20,1,1,14,15,[[659,1,1,14,15]]],[22,1,1,15,16,[[685,1,1,15,16]]],[23,1,1,16,17,[[746,1,1,16,17]]],[25,2,2,17,19,[[804,1,1,17,18],[841,1,1,18,19]]]],[1947,4097,4774,7345,7842,8664,9611,9676,10677,12588,12676,13705,13884,16824,17320,17805,18971,20517,21515]]],["wherein",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15596]]],["whither",[2,2,[[4,1,1,0,1,[[175,1,1,0,1]]],[9,1,1,1,2,[[283,1,1,1,2]]]],[5512,8467]]]]},{"k":"H8034","v":[["*",[865,772,[[0,113,95,0,95,[[1,5,5,0,5],[2,1,1,5,6],[3,8,5,6,11],[4,3,3,11,14],[5,1,1,14,15],[9,2,1,15,16],[10,4,3,16,19],[11,2,2,19,21],[12,1,1,21,22],[15,4,4,22,26],[16,5,3,26,29],[18,3,3,29,32],[20,2,2,32,34],[21,2,2,34,36],[23,1,1,36,37],[24,7,6,37,43],[25,7,6,43,49],[26,1,1,49,50],[27,2,1,50,51],[28,6,5,51,56],[29,8,8,56,64],[30,1,1,64,65],[31,6,5,65,70],[32,1,1,70,71],[34,7,4,71,75],[35,7,5,75,80],[37,8,8,80,88],[40,3,3,88,91],[45,1,1,91,92],[47,3,2,92,94],[49,1,1,94,95]]],[1,43,36,95,131,[[50,3,2,95,97],[51,2,2,97,99],[52,2,2,99,101],[54,1,1,101,102],[55,2,2,102,104],[58,1,1,104,105],[64,2,2,105,107],[65,1,1,107,108],[66,2,2,108,110],[67,2,2,110,112],[69,3,2,112,114],[72,2,2,114,116],[77,9,6,116,122],[80,1,1,122,123],[82,3,3,123,126],[83,2,2,126,128],[84,1,1,128,129],[88,4,2,129,131]]],[2,11,8,131,139,[[107,1,1,131,132],[108,2,1,132,133],[109,1,1,133,134],[110,1,1,134,135],[111,2,2,135,137],[113,4,2,137,139]]],[3,49,46,139,185,[[117,16,16,139,155],[119,6,6,155,161],[120,1,1,161,162],[122,1,1,162,163],[127,4,3,163,166],[129,2,2,166,168],[132,1,1,168,169],[133,2,2,169,171],[137,1,1,171,172],[141,2,2,172,174],[142,5,5,174,179],[143,2,2,179,181],[148,4,2,181,183],[150,2,2,183,185]]],[4,37,34,185,219,[[155,1,1,185,186],[157,2,1,186,187],[158,1,1,187,188],[159,1,1,188,189],[161,2,2,189,191],[162,2,2,191,193],[164,4,4,193,197],[166,2,2,197,199],[168,3,3,199,202],[170,6,5,202,207],[173,1,1,207,208],[174,2,2,208,210],[177,4,3,210,213],[178,2,2,213,215],[180,2,2,215,217],[181,1,1,217,218],[184,1,1,218,219]]],[5,12,11,219,230,[[188,1,1,219,220],[191,1,1,220,221],[193,3,2,221,223],[195,1,1,223,224],[200,1,1,224,225],[201,1,1,225,226],[203,1,1,226,227],[205,1,1,227,228],[207,1,1,228,229],[209,1,1,229,230]]],[6,19,16,230,246,[[211,6,5,230,235],[212,1,1,235,236],[218,1,1,236,237],[223,5,5,237,242],[225,1,1,242,243],[226,1,1,243,244],[227,1,1,244,245],[228,3,1,245,246]]],[7,14,9,246,255,[[232,5,2,246,248],[233,2,2,248,250],[235,7,5,250,255]]],[8,33,25,255,280,[[236,4,3,255,258],[242,1,1,258,259],[243,2,1,259,260],[244,2,2,260,262],[247,1,1,262,263],[249,7,3,263,266],[252,5,5,266,271],[253,1,1,271,272],[255,1,1,272,273],[256,1,1,273,274],[257,1,1,274,275],[259,1,1,275,276],[260,6,4,276,280]]],[9,34,30,280,310,[[269,1,1,280,281],[270,3,2,281,283],[271,2,2,283,285],[272,3,2,285,287],[273,5,4,287,291],[274,1,1,291,292],[275,2,2,292,294],[278,3,3,294,297],[279,2,2,297,299],[280,2,2,299,301],[282,1,1,301,302],[283,1,1,302,303],[284,2,1,303,304],[286,2,2,304,306],[288,1,1,306,307],[289,3,3,307,310]]],[10,46,39,310,349,[[291,2,1,310,311],[293,1,1,311,312],[294,2,2,312,314],[295,3,2,314,316],[297,2,1,316,317],[298,14,13,317,330],[299,2,2,330,332],[300,1,1,332,333],[301,2,2,333,335],[303,1,1,335,336],[304,3,2,336,338],[305,2,2,338,340],[306,2,1,340,341],[308,6,5,341,346],[311,1,1,346,347],[312,2,2,347,349]]],[11,23,23,349,372,[[314,1,1,349,350],[317,1,1,350,351],[320,1,1,351,352],[324,1,1,352,353],[326,3,3,353,356],[327,2,2,356,358],[329,1,1,358,359],[330,1,1,359,360],[333,4,4,360,364],[334,1,1,364,365],[335,4,4,365,369],[336,3,3,369,372]]],[12,55,50,372,422,[[338,6,4,372,376],[339,3,3,376,379],[341,4,4,379,383],[342,1,1,383,384],[343,2,2,384,386],[344,5,3,386,389],[345,2,2,389,391],[346,2,2,391,393],[348,2,2,393,395],[349,2,2,395,397],[350,1,1,397,398],[351,3,3,398,401],[353,6,6,401,407],[354,4,3,407,410],[358,1,1,410,411],[359,6,6,411,417],[360,2,2,417,419],[365,1,1,419,420],[366,2,2,420,422]]],[13,45,42,422,464,[[368,2,2,422,424],[369,2,1,424,425],[372,14,13,425,438],[373,3,3,438,441],[378,2,1,441,442],[379,1,1,442,443],[380,1,1,443,444],[384,1,1,444,445],[386,4,4,445,449],[388,1,1,449,450],[390,1,1,450,451],[391,1,1,451,452],[392,3,3,452,455],[393,1,1,455,456],[394,2,2,456,458],[395,1,1,458,459],[397,1,1,459,460],[399,3,3,460,463],[402,1,1,463,464]]],[14,4,4,464,468,[[404,1,1,464,465],[410,2,2,465,467],[412,1,1,467,468]]],[15,7,7,468,475,[[413,2,2,468,470],[418,1,1,470,471],[419,1,1,471,472],[421,3,3,472,475]]],[16,8,7,475,482,[[427,3,3,475,478],[428,1,1,478,479],[433,3,2,479,481],[434,1,1,481,482]]],[17,7,5,482,487,[[436,2,2,482,484],[453,1,1,484,485],[465,1,1,485,486],[477,3,1,486,487]]],[18,109,104,487,591,[[482,1,1,487,488],[484,1,1,488,489],[485,2,2,489,491],[486,3,3,491,494],[493,1,1,494,495],[495,1,1,495,496],[497,3,3,496,499],[499,1,1,499,500],[500,1,1,500,501],[502,1,1,501,502],[506,1,1,502,503],[508,1,1,503,504],[510,1,1,504,505],[511,1,1,505,506],[518,1,1,506,507],[521,3,3,507,510],[522,1,1,510,511],[525,1,1,511,512],[526,1,1,512,513],[529,1,1,513,514],[531,2,2,514,516],[538,2,2,516,518],[540,1,1,518,519],[543,2,2,519,521],[545,2,1,521,522],[546,2,2,522,524],[549,3,2,524,526],[551,4,4,526,530],[552,1,1,530,531],[553,1,1,531,532],[556,3,2,532,534],[557,1,1,534,535],[560,3,3,535,538],[563,3,3,538,541],[566,3,3,541,544],[568,1,1,544,545],[569,1,1,545,546],[573,2,2,546,548],[576,2,2,548,550],[577,1,1,550,551],[579,2,2,551,553],[580,1,1,553,554],[582,2,2,554,556],[583,2,2,556,558],[586,2,2,558,560],[588,1,1,560,561],[590,3,3,561,564],[592,1,1,564,565],[593,3,3,565,568],[595,4,4,568,572],[596,2,2,572,574],[599,1,1,574,575],[601,1,1,575,576],[606,1,1,576,577],[612,3,3,577,580],[615,2,1,580,581],[617,1,1,581,582],[619,1,1,582,583],[620,1,1,583,584],[622,3,3,584,587],[624,1,1,587,588],[625,3,2,588,590],[626,1,1,590,591]]],[19,7,6,591,597,[[637,1,1,591,592],[645,1,1,592,593],[648,1,1,593,594],[649,1,1,594,595],[657,3,2,595,597]]],[20,3,3,597,600,[[664,2,2,597,599],[665,1,1,599,600]]],[21,1,1,600,601,[[671,1,1,600,601]]],[22,54,49,601,650,[[682,1,1,601,602],[685,1,1,602,603],[686,1,1,603,604],[687,1,1,604,605],[690,2,1,605,606],[692,1,1,606,607],[696,1,1,607,608],[702,1,1,608,609],[703,1,1,609,610],[704,2,2,610,612],[707,1,1,612,613],[708,1,1,613,614],[718,1,1,614,615],[719,1,1,615,616],[720,1,1,616,617],[721,2,2,617,619],[722,2,1,619,620],[723,2,2,620,622],[725,1,1,622,623],[726,5,4,623,627],[727,1,1,627,628],[728,1,1,628,629],[729,1,1,629,630],[730,2,2,630,632],[732,1,1,632,633],[733,1,1,633,634],[734,3,2,634,636],[735,1,1,636,637],[737,1,1,637,638],[738,1,1,638,639],[740,1,1,639,640],[741,4,4,640,644],[742,2,2,644,646],[743,3,2,646,648],[744,2,2,648,650]]],[23,55,53,650,703,[[747,1,1,650,651],[751,5,5,651,656],[754,3,3,656,659],[755,3,3,659,662],[756,1,1,662,663],[757,1,1,663,664],[758,5,5,664,669],[759,1,1,669,670],[760,1,1,670,671],[764,2,2,671,673],[767,4,3,673,676],[769,1,1,676,677],[770,3,3,677,680],[771,1,1,680,681],[773,4,4,681,685],[775,1,1,685,686],[776,3,3,686,689],[777,2,2,689,691],[778,2,2,691,693],[781,1,1,693,694],[788,3,2,694,696],[790,1,1,696,697],[792,2,2,697,699],[794,1,1,699,700],[795,2,2,700,702],[796,1,1,702,703]]],[24,1,1,703,704,[[799,1,1,703,704]]],[25,28,26,704,730,[[817,2,2,704,706],[821,6,6,706,712],[823,1,1,712,713],[824,3,2,713,715],[825,1,1,715,716],[835,1,1,716,717],[837,4,4,717,721],[840,5,4,721,725],[844,2,2,725,727],[849,3,3,727,730]]],[26,6,6,730,736,[[850,1,1,730,731],[858,4,4,731,735],[859,1,1,735,736]]],[27,5,4,736,740,[[862,3,3,736,739],[863,2,1,739,740]]],[28,2,2,740,742,[[877,2,2,740,742]]],[29,7,7,742,749,[[880,1,1,742,743],[882,1,1,743,744],[883,2,2,744,746],[884,1,1,746,747],[887,2,2,747,749]]],[32,4,3,749,752,[[896,2,1,749,750],[897,1,1,750,751],[898,1,1,751,752]]],[33,1,1,752,753,[[900,1,1,752,753]]],[35,5,5,753,758,[[906,1,1,753,754],[908,4,4,754,758]]],[37,7,7,758,765,[[915,1,1,758,759],[916,1,1,759,760],[920,1,1,760,761],[923,3,3,761,764],[924,1,1,764,765]]],[38,10,7,765,772,[[925,6,3,765,768],[926,2,2,768,770],[927,1,1,770,771],[928,1,1,771,772]]]],[41,43,44,49,50,75,96,98,100,104,105,107,108,134,141,259,270,275,295,300,306,322,382,392,394,396,402,412,416,479,494,495,516,546,561,571,620,659,671,674,683,684,688,710,712,713,714,717,725,763,792,811,827,828,829,830,836,838,841,843,848,850,851,854,921,930,955,956,957,958,977,1019,1021,1026,1029,1050,1072,1075,1079,1080,1120,1121,1122,1123,1124,1125,1148,1149,1240,1246,1247,1394,1457,1467,1517,1533,1547,1564,1576,1592,1594,1655,1658,1671,1758,1923,1943,1978,1990,1998,2002,2003,2058,2075,2157,2165,2302,2303,2304,2305,2314,2322,2422,2485,2490,2492,2501,2510,2561,2670,2678,3272,3293,3321,3351,3371,3401,3457,3462,3606,3609,3621,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3694,3695,3709,3710,3732,3735,3775,3850,4027,4050,4058,4079,4091,4196,4246,4247,4343,4485,4486,4522,4535,4542,4544,4548,4555,4558,4756,4760,4833,4835,4989,5064,5099,5135,5171,5185,5194,5206,5243,5245,5251,5261,5313,5314,5344,5348,5353,5389,5391,5403,5404,5406,5452,5484,5489,5553,5554,5557,5568,5585,5621,5669,5699,5761,5870,5943,5985,6002,6046,6202,6217,6278,6368,6390,6467,6519,6520,6526,6532,6535,6550,6750,6886,6890,6901,6902,6908,6948,6953,6981,7022,7129,7131,7150,7168,7195,7200,7201,7204,7207,7213,7214,7232,7364,7371,7392,7393,7482,7512,7557,7558,7622,7630,7631,7641,7663,7706,7772,7779,7807,7860,7864,7866,7870,7886,8088,8122,8124,8146,8152,8159,8175,8189,8193,8203,8206,8222,8229,8239,8310,8311,8314,8318,8320,8363,8383,8431,8474,8496,8555,8575,8652,8661,8671,8675,8764,8818,8852,8875,8881,8883,8955,9001,9002,9003,9004,9005,9014,9018,9020,9026,9027,9028,9029,9033,9054,9058,9080,9134,9144,9186,9239,9249,9251,9259,9307,9365,9366,9367,9372,9373,9459,9496,9522,9575,9658,9753,9851,9898,9903,9923,9927,9958,10017,10026,10120,10123,10126,10138,10146,10192,10196,10199,10201,10210,10219,10220,10271,10295,10298,10302,10332,10335,10340,10388,10394,10423,10426,10452,10471,10519,10550,10551,10558,10604,10613,10650,10659,10693,10697,10750,10751,10766,10778,10785,10791,10822,10828,10830,10849,10855,10861,10871,10884,10887,10953,10969,10971,10972,10973,10974,10983,10996,11007,11146,11177,11180,11212,11215,11246,11287,11288,11289,11290,11291,11292,11302,11306,11308,11314,11315,11316,11320,11338,11340,11344,11450,11455,11486,11557,11595,11596,11613,11618,11646,11678,11705,11735,11740,11747,11756,11773,11779,11792,11873,11912,11915,11926,11997,12088,12214,12221,12268,12305,12307,12414,12483,12516,12518,12521,12729,12738,12746,12759,12825,12827,12860,12870,12890,13293,13565,13936,13984,14012,14013,14021,14023,14026,14031,14096,14167,14183,14187,14189,14226,14238,14262,14310,14334,14387,14391,14547,14576,14579,14591,14614,14644,14659,14719,14726,14731,14824,14827,14843,14875,14877,14904,14965,14971,15017,15019,15055,15058,15066,15069,15072,15082,15191,15194,15216,15245,15257,15259,15293,15295,15296,15338,15342,15350,15409,15412,15467,15473,15502,15505,15512,15536,15542,15550,15607,15609,15659,15698,15768,15776,15802,15814,15815,15816,15831,15852,15861,15865,15879,15880,15881,15895,15953,16030,16093,16110,16140,16176,16178,16188,16233,16276,16293,16304,16321,16322,16341,16355,16376,16384,16388,16663,16911,17008,17016,17255,17260,17421,17427,17430,17540,17734,17796,17810,17835,17904,17950,18004,18110,18119,18138,18143,18216,18244,18446,18476,18488,18506,18512,18538,18564,18565,18603,18615,18616,18623,18633,18637,18672,18688,18701,18702,18728,18753,18758,18759,18780,18819,18830,18856,18878,18880,18882,18885,18887,18892,18898,18912,18927,18944,19019,19129,19130,19131,19133,19149,19207,19217,19226,19242,19245,19247,19265,19277,19300,19302,19307,19308,19314,19331,19357,19425,19431,19490,19509,19511,19563,19581,19588,19592,19611,19644,19656,19658,19660,19726,19749,19751,19765,19777,19784,19816,19817,19887,20026,20036,20063,20095,20097,20200,20231,20269,20277,20409,20776,20777,20904,20909,20917,20924,20934,20939,20981,21011,21017,21058,21342,21379,21380,21381,21382,21455,21461,21464,21473,21579,21580,21703,21733,21737,21744,21994,22003,22006,22007,22016,22098,22100,22103,22122,22337,22343,22386,22423,22431,22450,22460,22501,22507,22625,22637,22657,22698,22791,22829,22832,22839,22840,22940,22959,23028,23061,23062,23068,23077,23095,23100,23103,23105,23108,23136,23140]]],["+",[35,34,[[0,2,2,0,2,[[11,1,1,0,1],[26,1,1,1,2]]],[1,1,1,2,3,[[77,1,1,2,3]]],[3,2,1,3,4,[[148,2,1,3,4]]],[4,4,4,4,8,[[155,1,1,4,5],[161,1,1,5,6],[170,1,1,6,7],[180,1,1,7,8]]],[7,1,1,8,9,[[235,1,1,8,9]]],[9,1,1,9,10,[[284,1,1,9,10]]],[10,2,2,10,12,[[291,1,1,10,11],[298,1,1,11,12]]],[11,1,1,12,13,[[329,1,1,12,13]]],[12,1,1,13,14,[[349,1,1,13,14]]],[13,1,1,14,15,[[372,1,1,14,15]]],[17,1,1,15,16,[[465,1,1,15,16]]],[18,7,7,16,23,[[500,1,1,16,17],[502,1,1,17,18],[508,1,1,18,19],[556,1,1,19,20],[583,1,1,20,21],[586,1,1,21,22],[620,1,1,22,23]]],[20,1,1,23,24,[[664,1,1,23,24]]],[22,2,2,24,26,[[726,1,1,24,25],[744,1,1,25,26]]],[23,2,2,26,28,[[758,2,2,26,28]]],[25,5,5,28,33,[[821,4,4,28,32],[823,1,1,32,33]]],[33,1,1,33,34,[[900,1,1,33,34]]]],[300,763,2303,4756,4989,5185,5404,5669,7201,8496,8764,9026,10017,10750,11314,13565,14238,14262,14334,15194,15659,15776,16304,17427,18623,18927,19300,19314,20904,20909,20917,20939,20981,22698]]],["fame",[4,4,[[10,1,1,0,1,[[294,1,1,0,1]]],[12,2,2,1,3,[[351,1,1,1,2],[359,1,1,2,3]]],[35,1,1,3,4,[[908,1,1,3,4]]]],[8875,10791,10969,22839]]],["famous",[2,2,[[12,1,1,0,1,[[342,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[10452,21017]]],["name",[731,655,[[0,100,85,0,85,[[1,4,4,0,4],[2,1,1,4,5],[3,8,5,5,10],[4,3,3,10,13],[9,2,1,13,14],[10,4,3,14,17],[11,1,1,17,18],[12,1,1,18,19],[15,4,4,19,23],[16,5,3,23,26],[18,3,3,26,29],[20,2,2,29,31],[21,2,2,31,33],[23,1,1,33,34],[24,4,4,34,38],[25,5,5,38,43],[27,2,1,43,44],[28,6,5,44,49],[29,8,8,49,57],[30,1,1,57,58],[31,6,5,58,63],[32,1,1,63,64],[34,7,4,64,68],[35,4,3,68,71],[37,8,8,71,79],[40,3,3,79,82],[47,3,2,82,84],[49,1,1,84,85]]],[1,30,28,85,113,[[50,2,1,85,86],[51,2,2,86,88],[52,2,2,88,90],[54,1,1,90,91],[55,1,1,91,92],[58,1,1,92,93],[64,2,2,93,95],[65,1,1,95,96],[66,2,2,96,98],[67,2,2,98,100],[69,3,2,100,102],[72,2,2,102,104],[77,1,1,104,105],[80,1,1,105,106],[82,3,3,106,109],[83,2,2,109,111],[84,1,1,111,112],[88,1,1,112,113]]],[2,11,8,113,121,[[107,1,1,113,114],[108,2,1,114,115],[109,1,1,115,116],[110,1,1,116,117],[111,2,2,117,119],[113,4,2,119,121]]],[3,15,14,121,135,[[120,1,1,121,122],[122,1,1,122,123],[127,4,3,123,126],[133,2,2,126,128],[137,1,1,128,129],[141,2,2,129,131],[142,2,2,131,133],[143,1,1,133,134],[148,1,1,134,135]]],[4,32,30,135,165,[[157,2,1,135,136],[158,1,1,136,137],[159,1,1,137,138],[161,1,1,138,139],[162,2,2,139,141],[164,3,3,141,144],[166,2,2,144,146],[168,3,3,146,149],[170,5,5,149,154],[173,1,1,154,155],[174,2,2,155,157],[177,4,3,157,160],[178,2,2,160,162],[180,1,1,162,163],[181,1,1,163,164],[184,1,1,164,165]]],[5,10,9,165,174,[[191,1,1,165,166],[193,3,2,166,168],[195,1,1,168,169],[200,1,1,169,170],[201,1,1,170,171],[205,1,1,171,172],[207,1,1,172,173],[209,1,1,173,174]]],[6,19,16,174,190,[[211,6,5,174,179],[212,1,1,179,180],[218,1,1,180,181],[223,5,5,181,186],[225,1,1,186,187],[226,1,1,187,188],[227,1,1,188,189],[228,3,1,189,190]]],[7,13,8,190,198,[[232,5,2,190,192],[233,2,2,192,194],[235,6,4,194,198]]],[8,28,21,198,219,[[236,4,3,198,201],[242,1,1,201,202],[243,2,1,202,203],[244,2,2,203,205],[249,6,3,205,208],[252,3,3,208,211],[253,1,1,211,212],[255,1,1,212,213],[256,1,1,213,214],[259,1,1,214,215],[260,6,4,215,219]]],[9,31,28,219,247,[[269,1,1,219,220],[270,3,2,220,222],[271,1,1,222,223],[272,3,2,223,225],[273,5,4,225,229],[274,1,1,229,230],[275,2,2,230,232],[278,3,3,232,235],[279,2,2,235,237],[280,2,2,237,239],[282,1,1,239,240],[283,1,1,240,241],[284,1,1,241,242],[286,2,2,242,244],[288,1,1,244,245],[289,2,2,245,247]]],[10,42,36,247,283,[[291,1,1,247,248],[293,1,1,248,249],[295,3,2,249,251],[297,2,1,251,252],[298,13,12,252,264],[299,2,2,264,266],[300,1,1,266,267],[301,2,2,267,269],[303,1,1,269,270],[304,3,2,270,272],[305,2,2,272,274],[306,2,1,274,275],[308,6,5,275,280],[311,1,1,280,281],[312,2,2,281,283]]],[11,22,22,283,305,[[314,1,1,283,284],[317,1,1,284,285],[320,1,1,285,286],[324,1,1,286,287],[326,3,3,287,290],[327,2,2,290,292],[330,1,1,292,293],[333,4,4,293,297],[334,1,1,297,298],[335,4,4,298,302],[336,3,3,302,305]]],[12,44,39,305,344,[[338,6,4,305,309],[339,3,3,309,312],[341,3,3,312,315],[344,5,3,315,318],[345,1,1,318,319],[346,1,1,319,320],[348,2,2,320,322],[349,1,1,322,323],[350,1,1,323,324],[351,1,1,324,325],[353,6,6,325,331],[354,4,3,331,334],[358,1,1,334,335],[359,5,5,335,340],[360,1,1,340,341],[365,1,1,341,342],[366,2,2,342,344]]],[13,44,41,344,385,[[368,2,2,344,346],[369,2,1,346,347],[372,13,12,347,359],[373,3,3,359,362],[378,2,1,362,363],[379,1,1,363,364],[380,1,1,364,365],[384,1,1,365,366],[386,4,4,366,370],[388,1,1,370,371],[390,1,1,371,372],[391,1,1,372,373],[392,3,3,373,376],[393,1,1,376,377],[394,2,2,377,379],[395,1,1,379,380],[397,1,1,380,381],[399,3,3,381,384],[402,1,1,384,385]]],[14,2,2,385,387,[[404,1,1,385,386],[410,1,1,386,387]]],[15,6,6,387,393,[[413,2,2,387,389],[419,1,1,389,390],[421,3,3,390,393]]],[16,8,7,393,400,[[427,3,3,393,396],[428,1,1,396,397],[433,3,2,397,399],[434,1,1,399,400]]],[17,6,4,400,404,[[436,2,2,400,402],[453,1,1,402,403],[477,3,1,403,404]]],[18,99,95,404,499,[[482,1,1,404,405],[484,1,1,405,406],[485,2,2,406,408],[486,3,3,408,411],[495,1,1,411,412],[497,3,3,412,415],[499,1,1,415,416],[506,1,1,416,417],[510,1,1,417,418],[511,1,1,418,419],[518,1,1,419,420],[521,3,3,420,423],[522,1,1,423,424],[525,1,1,424,425],[529,1,1,425,426],[531,2,2,426,428],[538,2,2,428,430],[540,1,1,430,431],[543,2,2,431,433],[545,2,1,433,434],[546,2,2,434,436],[549,3,2,436,438],[551,4,4,438,442],[552,1,1,442,443],[553,1,1,443,444],[556,2,2,444,446],[557,1,1,446,447],[560,3,3,447,450],[563,3,3,450,453],[566,3,3,453,456],[568,1,1,456,457],[569,1,1,457,458],[573,2,2,458,460],[576,2,2,460,462],[577,1,1,462,463],[579,2,2,463,465],[580,1,1,465,466],[582,2,2,466,468],[583,1,1,468,469],[586,1,1,469,470],[588,1,1,470,471],[590,3,3,471,474],[592,1,1,474,475],[593,3,3,475,478],[595,4,4,478,482],[596,2,2,482,484],[599,1,1,484,485],[601,1,1,485,486],[606,1,1,486,487],[612,3,3,487,490],[615,2,1,490,491],[617,1,1,491,492],[619,1,1,492,493],[622,3,3,493,496],[625,3,2,496,498],[626,1,1,498,499]]],[19,7,6,499,505,[[637,1,1,499,500],[645,1,1,500,501],[648,1,1,501,502],[649,1,1,502,503],[657,3,2,503,505]]],[20,2,2,505,507,[[664,1,1,505,506],[665,1,1,506,507]]],[21,1,1,507,508,[[671,1,1,507,508]]],[22,51,46,508,554,[[682,1,1,508,509],[685,1,1,509,510],[686,1,1,510,511],[687,1,1,511,512],[690,2,1,512,513],[692,1,1,513,514],[696,1,1,514,515],[702,1,1,515,516],[703,1,1,516,517],[704,2,2,517,519],[707,1,1,519,520],[708,1,1,520,521],[719,1,1,521,522],[720,1,1,522,523],[721,2,2,523,525],[722,2,1,525,526],[723,2,2,526,528],[725,1,1,528,529],[726,4,3,529,532],[727,1,1,532,533],[728,1,1,533,534],[729,1,1,534,535],[730,2,2,535,537],[732,1,1,537,538],[733,1,1,538,539],[734,3,2,539,541],[735,1,1,541,542],[737,1,1,542,543],[738,1,1,543,544],[740,1,1,544,545],[741,4,4,545,549],[742,2,2,549,551],[743,3,2,551,553],[744,1,1,553,554]]],[23,53,51,554,605,[[747,1,1,554,555],[751,5,5,555,560],[754,3,3,560,563],[755,3,3,563,566],[756,1,1,566,567],[757,1,1,567,568],[758,3,3,568,571],[759,1,1,571,572],[760,1,1,572,573],[764,2,2,573,575],[767,4,3,575,578],[769,1,1,578,579],[770,3,3,579,582],[771,1,1,582,583],[773,4,4,583,587],[775,1,1,587,588],[776,3,3,588,591],[777,2,2,591,593],[778,2,2,593,595],[781,1,1,595,596],[788,3,2,596,598],[790,1,1,598,599],[792,2,2,599,601],[794,1,1,601,602],[795,2,2,602,604],[796,1,1,604,605]]],[24,1,1,605,606,[[799,1,1,605,606]]],[25,13,12,606,618,[[821,2,2,606,608],[825,1,1,608,609],[837,3,3,609,612],[840,4,3,612,615],[844,2,2,615,617],[849,1,1,617,618]]],[26,4,4,618,622,[[858,3,3,618,621],[859,1,1,621,622]]],[27,4,4,622,626,[[862,3,3,622,625],[863,1,1,625,626]]],[28,2,2,626,628,[[877,2,2,626,628]]],[29,7,7,628,635,[[880,1,1,628,629],[882,1,1,629,630],[883,2,2,630,632],[884,1,1,632,633],[887,2,2,633,635]]],[32,4,3,635,638,[[896,2,1,635,636],[897,1,1,636,637],[898,1,1,637,638]]],[35,4,4,638,642,[[906,1,1,638,639],[908,3,3,639,642]]],[37,6,6,642,648,[[915,1,1,642,643],[916,1,1,643,644],[920,1,1,644,645],[923,2,2,645,647],[924,1,1,647,648]]],[38,10,7,648,655,[[925,6,3,648,651],[926,2,2,651,653],[927,1,1,653,654],[928,1,1,654,655]]]],[41,43,44,49,75,96,98,100,104,105,107,108,134,259,270,275,295,306,322,382,392,394,396,402,412,416,479,494,495,516,546,561,571,620,659,683,684,688,712,713,714,717,725,792,811,827,828,829,830,836,838,841,843,848,850,851,854,921,930,955,956,957,958,977,1019,1021,1026,1029,1072,1075,1079,1120,1121,1122,1123,1124,1125,1148,1149,1240,1246,1247,1457,1467,1517,1547,1564,1576,1592,1594,1655,1658,1758,1923,1943,1978,1990,1998,2002,2003,2058,2075,2157,2165,2314,2422,2485,2490,2492,2501,2510,2561,2678,3272,3293,3321,3351,3371,3401,3457,3462,3775,3850,4027,4050,4058,4246,4247,4343,4485,4486,4535,4548,4558,4760,5064,5099,5135,5171,5194,5206,5245,5251,5261,5313,5314,5344,5348,5353,5389,5391,5403,5404,5406,5452,5484,5489,5553,5554,5557,5568,5585,5621,5699,5761,5943,5985,6002,6046,6202,6217,6368,6390,6467,6519,6520,6526,6532,6535,6550,6750,6886,6890,6901,6902,6908,6948,6953,6981,7022,7129,7131,7150,7168,7195,7200,7204,7207,7213,7214,7232,7364,7371,7392,7393,7512,7557,7558,7630,7641,7663,7706,7772,7779,7860,7864,7866,7870,7886,8088,8122,8124,8152,8159,8175,8189,8193,8203,8206,8222,8229,8239,8310,8311,8314,8318,8320,8363,8383,8431,8474,8496,8555,8575,8652,8671,8675,8764,8818,8881,8883,8955,9001,9002,9003,9004,9005,9014,9018,9020,9027,9028,9029,9033,9054,9058,9080,9134,9144,9186,9239,9249,9251,9259,9307,9365,9366,9367,9372,9373,9459,9496,9522,9575,9658,9753,9851,9898,9903,9923,9927,9958,10026,10120,10123,10126,10138,10146,10192,10196,10199,10201,10210,10219,10220,10271,10295,10298,10302,10332,10335,10340,10388,10394,10426,10550,10551,10558,10604,10650,10693,10697,10751,10766,10785,10822,10828,10830,10849,10855,10861,10871,10884,10887,10953,10971,10972,10973,10974,10983,10996,11146,11177,11180,11212,11215,11246,11287,11288,11289,11290,11291,11292,11302,11306,11308,11315,11316,11320,11338,11340,11344,11450,11455,11486,11557,11595,11596,11613,11618,11646,11678,11705,11735,11740,11747,11756,11773,11779,11792,11873,11912,11915,11926,11997,12088,12221,12305,12307,12483,12516,12518,12521,12729,12738,12746,12759,12825,12827,12860,12870,12890,13293,13936,13984,14012,14013,14021,14023,14026,14031,14167,14183,14187,14189,14226,14310,14387,14391,14547,14576,14579,14591,14614,14644,14719,14726,14731,14824,14827,14843,14875,14877,14904,14965,14971,15017,15019,15055,15058,15066,15069,15072,15082,15191,15194,15216,15245,15257,15259,15293,15295,15296,15338,15342,15350,15409,15412,15467,15473,15502,15505,15512,15536,15542,15550,15607,15609,15698,15768,15802,15814,15815,15816,15831,15852,15861,15865,15879,15880,15881,15895,15953,16030,16093,16110,16140,16176,16178,16188,16233,16276,16293,16321,16322,16341,16376,16384,16388,16663,16911,17008,17016,17255,17260,17421,17430,17540,17734,17796,17810,17835,17904,17950,18004,18110,18119,18138,18143,18216,18244,18476,18488,18506,18512,18538,18564,18565,18603,18615,18616,18633,18637,18672,18688,18701,18702,18728,18753,18758,18759,18780,18819,18830,18856,18878,18880,18882,18885,18887,18892,18898,18912,18944,19019,19129,19130,19131,19133,19149,19207,19217,19226,19242,19245,19247,19265,19277,19302,19307,19308,19331,19357,19425,19431,19490,19509,19511,19563,19581,19588,19592,19611,19644,19656,19658,19660,19726,19749,19751,19765,19777,19784,19816,19817,19887,20026,20036,20063,20095,20097,20200,20231,20269,20277,20409,20924,20934,21058,21379,21380,21382,21455,21464,21473,21579,21580,21737,21994,22006,22007,22016,22098,22100,22103,22122,22337,22343,22386,22423,22431,22450,22460,22501,22507,22625,22637,22657,22791,22829,22832,22840,22940,22959,23028,23062,23068,23077,23095,23100,23103,23105,23108,23136,23140]]],["name's",[2,2,[[8,1,1,0,1,[[247,1,1,0,1]]],[25,1,1,1,2,[[837,1,1,1,2]]]],[7482,21381]]],["named",[3,3,[[5,1,1,0,1,[[188,1,1,0,1]]],[8,2,2,1,3,[[252,1,1,1,2],[257,1,1,2,3]]]],[5870,7622,7807]]],["names",[80,74,[[0,10,7,0,7,[[1,1,1,0,1],[24,3,2,1,3],[25,2,1,3,4],[35,3,2,4,6],[45,1,1,6,7]]],[1,12,10,7,17,[[50,1,1,7,8],[55,1,1,8,9],[77,7,6,9,15],[88,3,2,15,17]]],[3,31,31,17,48,[[117,16,16,17,33],[119,6,6,33,39],[129,2,2,39,41],[142,3,3,41,44],[143,1,1,44,45],[148,1,1,45,46],[150,2,2,46,48]]],[4,1,1,48,49,[[164,1,1,48,49]]],[5,1,1,49,50,[[203,1,1,49,50]]],[8,2,2,50,52,[[249,1,1,50,51],[252,1,1,51,52]]],[9,2,2,52,54,[[271,1,1,52,53],[289,1,1,53,54]]],[10,1,1,54,55,[[294,1,1,54,55]]],[12,7,7,55,62,[[341,1,1,55,56],[343,2,2,56,58],[345,1,1,58,59],[346,1,1,59,60],[351,1,1,60,61],[360,1,1,61,62]]],[14,2,2,62,64,[[410,1,1,62,63],[412,1,1,63,64]]],[18,3,3,64,67,[[493,1,1,64,65],[526,1,1,65,66],[624,1,1,66,67]]],[22,1,1,67,68,[[718,1,1,67,68]]],[25,4,3,68,71,[[824,2,1,68,69],[849,2,2,69,71]]],[26,1,1,71,72,[[850,1,1,71,72]]],[27,1,1,72,73,[[863,1,1,72,73]]],[37,1,1,73,74,[[923,1,1,73,74]]]],[50,671,674,710,1050,1080,1394,1533,1671,2302,2303,2304,2305,2314,2322,2670,2678,3606,3609,3621,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3694,3695,3709,3710,3732,3735,4079,4091,4522,4542,4544,4555,4756,4833,4835,5243,6278,7557,7631,8146,8661,8852,10423,10471,10519,10613,10659,10778,11007,12214,12268,14096,14659,16355,18446,21011,21703,21733,21744,22122,23061]]],["renown",[7,7,[[0,1,1,0,1,[[5,1,1,0,1]]],[3,1,1,1,2,[[132,1,1,1,2]]],[25,4,4,2,6,[[817,2,2,2,4],[835,1,1,4,5],[840,1,1,5,6]]],[26,1,1,6,7,[[858,1,1,6,7]]]],[141,4196,20776,20777,21342,21461,22003]]],["report",[1,1,[[15,1,1,0,1,[[418,1,1,0,1]]]],[12414]]]]},{"k":"H8035","v":[["*",[17,16,[[0,14,13,0,13,[[4,1,1,0,1],[5,1,1,1,2],[6,1,1,2,3],[8,4,4,3,7],[9,4,4,7,11],[10,3,2,11,13]]],[12,3,3,13,16,[[338,3,3,13,16]]]],[137,147,172,223,228,231,232,235,255,256,265,276,277,10256,10269,10276]]],["+",[2,2,[[0,2,2,0,2,[[4,1,1,0,1],[5,1,1,1,2]]]],[137,147]]],["Shem",[15,14,[[0,12,11,0,11,[[6,1,1,0,1],[8,4,4,1,5],[9,4,4,5,9],[10,3,2,9,11]]],[12,3,3,11,14,[[338,3,3,11,14]]]],[172,223,228,231,232,235,255,256,265,276,277,10256,10269,10276]]]]},{"k":"H8036","v":[["*",[12,10,[[14,6,5,0,5,[[407,5,4,0,4],[408,1,1,4,5]]],[26,6,5,5,10,[[851,2,2,5,7],[853,3,2,7,9],[854,1,1,9,10]]]],[12135,12138,12144,12148,12163,21778,21784,21845,21856,21886]]],["+",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21886]]],["name",[8,7,[[14,3,3,0,3,[[407,2,2,0,2],[408,1,1,2,3]]],[26,5,4,3,7,[[851,2,2,3,5],[853,3,2,5,7]]]],[12135,12148,12163,21778,21784,21845,21856]]],["names",[3,2,[[14,3,2,0,2,[[407,3,2,0,2]]]],[12138,12144]]]]},{"k":"H8037","v":[["Shamma",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10572]]]]},{"k":"H8038","v":[["Shemeber",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[338]]]]},{"k":"H8039","v":[["Shimeah",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10607]]]]},{"k":"H8040","v":[["*",[54,53,[[0,6,5,0,5,[[12,1,1,0,1],[13,1,1,1,2],[23,1,1,2,3],[47,3,2,3,5]]],[1,2,2,5,7,[[63,2,2,5,7]]],[3,2,2,7,9,[[136,1,1,7,8],[138,1,1,8,9]]],[4,5,5,9,14,[[154,1,1,9,10],[157,1,1,10,11],[169,2,2,11,13],[180,1,1,13,14]]],[5,3,3,14,17,[[187,1,1,14,15],[205,1,1,15,16],[209,1,1,16,17]]],[6,3,3,17,20,[[213,1,1,17,18],[217,1,1,18,19],[226,1,1,19,20]]],[8,1,1,20,21,[[241,1,1,20,21]]],[9,3,3,21,24,[[268,2,2,21,23],[282,1,1,23,24]]],[10,3,3,24,27,[[297,2,2,24,26],[312,1,1,26,27]]],[11,2,2,27,29,[[334,1,1,27,28],[335,1,1,28,29]]],[12,1,1,29,30,[[343,1,1,29,30]]],[13,6,6,30,36,[[369,1,1,30,31],[370,3,3,31,34],[384,1,1,34,35],[400,1,1,35,36]]],[15,1,1,36,37,[[420,1,1,36,37]]],[17,1,1,37,38,[[458,1,1,37,38]]],[19,2,2,38,40,[[630,1,1,38,39],[631,1,1,39,40]]],[20,1,1,40,41,[[668,1,1,40,41]]],[21,2,2,41,43,[[672,1,1,41,42],[678,1,1,42,43]]],[22,2,2,43,45,[[687,1,1,43,44],[732,1,1,44,45]]],[25,3,3,45,48,[[802,1,1,45,46],[817,1,1,46,47],[840,1,1,47,48]]],[26,1,1,48,49,[[861,1,1,48,49]]],[31,1,1,49,50,[[892,1,1,49,50]]],[37,3,3,50,53,[[914,2,2,50,52],[922,1,1,52,53]]]],[327,351,640,1464,1465,1911,1918,4328,4401,4965,5085,5375,5384,5625,5858,6348,6466,6589,6714,6978,7343,8068,8070,8432,8973,8983,9499,10147,10173,10498,11246,11252,11253,11254,11560,11935,12497,13428,16471,16517,17495,17560,17643,17849,18726,20474,20808,21451,22088,22579,22925,22933,23051]]],["+",[14,14,[[0,2,2,0,2,[[13,1,1,0,1],[47,1,1,1,2]]],[1,2,2,2,4,[[63,2,2,2,4]]],[9,1,1,4,5,[[282,1,1,4,5]]],[10,3,3,5,8,[[297,2,2,5,7],[312,1,1,7,8]]],[13,4,4,8,12,[[369,1,1,8,9],[370,3,3,9,12]]],[15,1,1,12,13,[[420,1,1,12,13]]],[25,1,1,13,14,[[802,1,1,13,14]]]],[351,1464,1911,1918,8432,8973,8983,9499,11246,11252,11253,11254,12497,20474]]],["hand",[14,14,[[0,3,3,0,3,[[12,1,1,0,1],[47,2,2,1,3]]],[5,1,1,3,4,[[205,1,1,3,4]]],[11,1,1,4,5,[[335,1,1,4,5]]],[12,1,1,5,6,[[343,1,1,5,6]]],[17,1,1,6,7,[[458,1,1,6,7]]],[19,1,1,7,8,[[630,1,1,7,8]]],[21,2,2,8,10,[[672,1,1,8,9],[678,1,1,9,10]]],[22,1,1,10,11,[[687,1,1,10,11]]],[25,1,1,11,12,[[817,1,1,11,12]]],[26,1,1,12,13,[[861,1,1,12,13]]],[31,1,1,13,14,[[892,1,1,13,14]]]],[327,1464,1465,6348,10173,10498,13428,16471,17560,17643,17849,20808,22088,22579]]],["left",[26,26,[[0,1,1,0,1,[[23,1,1,0,1]]],[3,2,2,1,3,[[136,1,1,1,2],[138,1,1,2,3]]],[4,5,5,3,8,[[154,1,1,3,4],[157,1,1,4,5],[169,2,2,5,7],[180,1,1,7,8]]],[5,2,2,8,10,[[187,1,1,8,9],[209,1,1,9,10]]],[6,3,3,10,13,[[213,1,1,10,11],[217,1,1,11,12],[226,1,1,12,13]]],[8,1,1,13,14,[[241,1,1,13,14]]],[9,2,2,14,16,[[268,2,2,14,16]]],[11,1,1,16,17,[[334,1,1,16,17]]],[13,2,2,17,19,[[384,1,1,17,18],[400,1,1,18,19]]],[19,1,1,19,20,[[631,1,1,19,20]]],[20,1,1,20,21,[[668,1,1,20,21]]],[22,1,1,21,22,[[732,1,1,21,22]]],[25,1,1,22,23,[[840,1,1,22,23]]],[37,3,3,23,26,[[914,2,2,23,25],[922,1,1,25,26]]]],[640,4328,4401,4965,5085,5375,5384,5625,5858,6466,6589,6714,6978,7343,8068,8070,10147,11560,11935,16517,17495,18726,21451,22925,22933,23051]]]]},{"k":"H8041","v":[["left",[5,5,[[0,1,1,0,1,[[12,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]],[12,1,1,2,3,[[349,1,1,2,3]]],[22,1,1,3,4,[[708,1,1,3,4]]],[25,1,1,4,5,[[822,1,1,4,5]]]],[327,8375,10722,18238,20960]]]]},{"k":"H8042","v":[["*",[9,9,[[2,4,4,0,4,[[103,4,4,0,4]]],[10,1,1,4,5,[[297,1,1,4,5]]],[11,1,1,5,6,[[323,1,1,5,6]]],[13,2,2,6,8,[[369,1,1,6,7],[389,1,1,7,8]]],[25,1,1,8,9,[[805,1,1,8,9]]]],[3126,3127,3137,3138,8955,9840,11246,11666,20533]]],["hand",[2,2,[[2,2,2,0,2,[[103,2,2,0,2]]]],[3126,3137]]],["left",[7,7,[[2,2,2,0,2,[[103,2,2,0,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[11,1,1,3,4,[[323,1,1,3,4]]],[13,2,2,4,6,[[369,1,1,4,5],[389,1,1,5,6]]],[25,1,1,6,7,[[805,1,1,6,7]]]],[3127,3138,8955,9840,11246,11666,20533]]]]},{"k":"H8043","v":[["Shimeam",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10653]]]]},{"k":"H8044","v":[["Shamgar",[2,2,[[6,2,2,0,2,[[213,1,1,0,1],[215,1,1,1,2]]]],[6599,6629]]]]},{"k":"H8045","v":[["*",[90,86,[[0,1,1,0,1,[[33,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[3,1,1,2,3,[[149,1,1,2,3]]],[4,29,28,3,31,[[153,1,1,3,4],[154,4,4,4,8],[156,3,2,8,10],[158,1,1,10,11],[159,3,3,11,14],[161,6,6,14,20],[164,1,1,20,21],[180,7,7,21,28],[183,2,2,28,30],[185,1,1,30,31]]],[5,6,6,31,37,[[193,1,1,31,32],[195,1,1,32,33],[197,2,2,33,35],[209,1,1,35,36],[210,1,1,36,37]]],[6,1,1,37,38,[[231,1,1,37,38]]],[8,1,1,38,39,[[259,1,1,38,39]]],[9,5,5,39,44,[[280,3,3,39,42],[287,1,1,42,43],[288,1,1,43,44]]],[10,3,3,44,47,[[303,1,1,44,45],[305,1,1,45,46],[306,1,1,46,47]]],[11,3,3,47,50,[[322,2,2,47,49],[333,1,1,49,50]]],[12,1,1,50,51,[[342,1,1,50,51]]],[13,3,3,51,54,[[386,2,2,51,53],[399,1,1,53,54]]],[16,5,5,54,59,[[428,2,2,54,56],[429,1,1,56,57],[432,1,1,57,58],[433,1,1,58,59]]],[18,6,6,59,65,[[514,1,1,59,60],[560,1,1,60,61],[569,1,1,61,62],[583,2,2,62,64],[622,1,1,64,65]]],[19,1,1,65,66,[[641,1,1,65,66]]],[22,6,6,66,72,[[688,1,1,66,67],[691,1,1,67,68],[692,1,1,68,69],[701,1,1,69,70],[704,1,1,70,71],[726,1,1,71,72]]],[23,2,2,72,74,[[792,2,2,72,74]]],[24,1,1,74,75,[[799,1,1,74,75]]],[25,4,4,75,79,[[815,1,1,75,76],[826,1,1,76,77],[833,1,1,77,78],[835,1,1,78,79]]],[26,1,1,79,80,[[860,1,1,79,80]]],[27,1,1,80,81,[[871,1,1,80,81]]],[29,5,2,81,83,[[880,2,1,81,82],[887,3,1,82,83]]],[32,1,1,83,84,[[897,1,1,83,84]]],[36,1,1,84,85,[[910,1,1,84,85]]],[37,1,1,85,86,[[922,1,1,85,86]]]],[1010,3554,4812,4919,4950,4959,4960,4961,5007,5030,5101,5115,5134,5135,5160,5165,5171,5176,5177,5182,5270,5631,5635,5656,5659,5662,5672,5674,5731,5732,5837,5988,6061,6121,6127,6475,6484,7118,7860,8363,8367,8372,8585,8640,9218,9278,9295,9810,9821,10128,10453,11597,11610,11917,12753,12760,12770,12811,12828,14488,15251,15418,15674,15685,16340,16783,17857,17915,17951,18088,18144,18633,20088,20122,20420,20740,21090,21260,21329,22080,22233,22388,22503,22647,22877,23054]]],["+",[17,15,[[2,1,1,0,1,[[115,1,1,0,1]]],[4,5,4,1,5,[[154,1,1,1,2],[156,2,1,2,3],[180,1,1,3,4],[183,1,1,4,5]]],[5,1,1,5,6,[[195,1,1,5,6]]],[8,1,1,6,7,[[259,1,1,6,7]]],[9,2,2,7,9,[[280,2,2,7,9]]],[10,1,1,9,10,[[306,1,1,9,10]]],[11,1,1,10,11,[[322,1,1,10,11]]],[16,1,1,11,12,[[428,1,1,11,12]]],[18,1,1,12,13,[[583,1,1,12,13]]],[29,2,1,13,14,[[887,2,1,13,14]]],[37,1,1,14,15,[[922,1,1,14,15]]]],[3554,4960,5030,5674,5731,6061,7860,8363,8367,9295,9821,12753,15685,22503,23054]]],["Destroy",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5837]]],["destroy",[28,28,[[4,7,7,0,7,[[153,1,1,0,1],[158,1,1,1,2],[159,1,1,2,3],[161,4,4,3,7]]],[5,2,2,7,9,[[193,1,1,7,8],[197,1,1,8,9]]],[9,1,1,9,10,[[280,1,1,9,10]]],[10,1,1,10,11,[[303,1,1,10,11]]],[13,1,1,11,12,[[386,1,1,11,12]]],[16,3,3,12,15,[[428,1,1,12,13],[429,1,1,13,14],[433,1,1,14,15]]],[18,2,2,15,17,[[583,1,1,15,16],[622,1,1,16,17]]],[22,3,3,17,20,[[688,1,1,17,18],[691,1,1,18,19],[701,1,1,19,20]]],[24,1,1,20,21,[[799,1,1,20,21]]],[25,3,3,21,24,[[815,1,1,21,22],[826,1,1,22,23],[835,1,1,23,24]]],[26,1,1,24,25,[[860,1,1,24,25]]],[29,1,1,25,26,[[887,1,1,25,26]]],[32,1,1,26,27,[[897,1,1,26,27]]],[36,1,1,27,28,[[910,1,1,27,28]]]],[4919,5101,5115,5160,5171,5176,5182,5988,6127,8372,9218,11610,12760,12770,12828,15674,16340,17857,17915,18088,20420,20740,21090,21329,22080,22503,22647,22877]]],["destroyed",[40,39,[[0,1,1,0,1,[[33,1,1,0,1]]],[4,16,16,1,17,[[154,3,3,1,4],[156,1,1,4,5],[159,2,2,5,7],[161,2,2,7,9],[164,1,1,9,10],[180,6,6,10,16],[183,1,1,16,17]]],[5,3,3,17,20,[[197,1,1,17,18],[209,1,1,18,19],[210,1,1,19,20]]],[6,1,1,20,21,[[231,1,1,20,21]]],[9,2,2,21,23,[[287,1,1,21,22],[288,1,1,22,23]]],[10,1,1,23,24,[[305,1,1,23,24]]],[11,2,2,24,26,[[322,1,1,24,25],[333,1,1,25,26]]],[12,1,1,26,27,[[342,1,1,26,27]]],[13,2,2,27,29,[[386,1,1,27,28],[399,1,1,28,29]]],[16,1,1,29,30,[[432,1,1,29,30]]],[18,2,2,30,32,[[514,1,1,30,31],[569,1,1,31,32]]],[22,2,2,32,34,[[704,1,1,32,33],[726,1,1,33,34]]],[23,2,2,34,36,[[792,2,2,34,36]]],[25,1,1,36,37,[[833,1,1,36,37]]],[27,1,1,37,38,[[871,1,1,37,38]]],[29,2,1,38,39,[[880,2,1,38,39]]]],[1010,4950,4959,4961,5007,5134,5135,5165,5177,5270,5631,5635,5656,5659,5662,5672,5732,6121,6475,6484,7118,8585,8640,9278,9810,10128,10453,11597,11917,12811,14488,15418,18144,18633,20088,20122,21260,22233,22388]]],["destruction",[1,1,[[22,1,1,0,1,[[692,1,1,0,1]]]],[17951]]],["down",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4812]]],["overthrown",[1,1,[[19,1,1,0,1,[[641,1,1,0,1]]]],[16783]]],["perished",[1,1,[[18,1,1,0,1,[[560,1,1,0,1]]]],[15251]]]]},{"k":"H8046","v":[["consume",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21959]]]]},{"k":"H8047","v":[["*",[39,39,[[4,1,1,0,1,[[180,1,1,0,1]]],[11,1,1,1,2,[[334,1,1,1,2]]],[13,2,2,2,4,[[395,1,1,2,3],[396,1,1,3,4]]],[18,2,2,4,6,[[523,1,1,4,5],[550,1,1,5,6]]],[22,3,3,6,9,[[683,1,1,6,7],[691,1,1,7,8],[702,1,1,8,9]]],[23,24,24,9,33,[[746,1,1,9,10],[748,1,1,10,11],[749,1,1,11,12],[752,1,1,12,13],[762,1,1,13,14],[763,1,1,14,15],[769,4,4,15,19],[773,1,1,19,20],[786,1,1,20,21],[788,2,2,21,23],[790,1,1,23,24],[792,1,1,24,25],[793,2,2,25,27],[794,2,2,27,29],[795,4,4,29,33]]],[25,1,1,33,34,[[824,1,1,33,34]]],[27,1,1,34,35,[[866,1,1,34,35]]],[28,1,1,35,36,[[876,1,1,35,36]]],[32,1,1,36,37,[[898,1,1,36,37]]],[35,1,1,37,38,[[907,1,1,37,38]]],[37,1,1,38,39,[[917,1,1,38,39]]]],[5648,10164,11799,11834,14622,15039,17748,17915,18107,18980,19034,19088,19174,19400,19415,19543,19545,19552,19572,19653,19993,20022,20032,20064,20089,20140,20144,20169,20189,20241,20249,20253,20255,21040,22161,22298,22664,22820,22976]]],["astonishment",[13,13,[[4,1,1,0,1,[[180,1,1,0,1]]],[13,1,1,1,2,[[395,1,1,1,2]]],[23,10,10,2,12,[[752,1,1,2,3],[769,3,3,3,6],[773,1,1,6,7],[786,1,1,7,8],[788,2,2,8,10],[795,2,2,10,12]]],[25,1,1,12,13,[[824,1,1,12,13]]]],[5648,11799,19174,19543,19545,19552,19653,19993,20022,20032,20249,20253,21040]]],["desolate",[10,10,[[22,2,2,0,2,[[683,1,1,0,1],[691,1,1,1,2]]],[23,6,6,2,8,[[748,1,1,2,3],[762,1,1,3,4],[763,1,1,4,5],[769,1,1,5,6],[792,1,1,6,7],[794,1,1,7,8]]],[27,1,1,8,9,[[866,1,1,8,9]]],[37,1,1,9,10,[[917,1,1,9,10]]]],[17748,17915,19034,19400,19415,19572,20089,20169,22161,22976]]],["desolation",[11,11,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[396,1,1,1,2]]],[18,1,1,2,3,[[550,1,1,2,3]]],[22,1,1,3,4,[[702,1,1,3,4]]],[23,5,5,4,9,[[793,2,2,4,6],[794,1,1,6,7],[795,2,2,7,9]]],[32,1,1,9,10,[[898,1,1,9,10]]],[35,1,1,10,11,[[907,1,1,10,11]]]],[10164,11834,15039,18107,20140,20144,20189,20241,20255,22664,22820]]],["desolations",[1,1,[[18,1,1,0,1,[[523,1,1,0,1]]]],[14622]]],["waste",[3,3,[[23,2,2,0,2,[[746,1,1,0,1],[790,1,1,1,2]]],[28,1,1,2,3,[[876,1,1,2,3]]]],[18980,20064,22298]]],["wonderful",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19088]]]]},{"k":"H8048","v":[["Shammah",[8,8,[[0,2,2,0,2,[[35,2,2,0,2]]],[8,2,2,2,4,[[251,1,1,2,3],[252,1,1,3,4]]],[9,3,3,4,7,[[289,3,3,4,7]]],[12,1,1,7,8,[[338,1,1,7,8]]]],[1053,1057,7604,7631,8664,8678,8686,10289]]]]},{"k":"H8049","v":[["Shamhuth",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11117]]]]},{"k":"H8050","v":[["*",[140,120,[[3,1,1,0,1,[[150,1,1,0,1]]],[8,129,109,1,110,[[236,1,1,1,2],[237,3,3,2,5],[238,21,15,5,20],[239,1,1,20,21],[242,10,9,21,30],[243,10,8,30,38],[244,11,10,38,48],[245,10,9,48,57],[246,3,3,57,60],[247,7,6,60,66],[248,6,5,66,71],[250,22,19,71,90],[251,11,8,90,98],[254,5,4,98,102],[260,1,1,102,103],[263,7,7,103,110]]],[12,7,7,110,117,[[343,2,2,110,112],[344,1,1,112,113],[346,1,1,113,114],[348,1,1,114,115],[363,1,1,115,116],[366,1,1,116,117]]],[13,1,1,117,118,[[401,1,1,117,118]]],[18,1,1,118,119,[[576,1,1,118,119]]],[23,1,1,119,120,[[759,1,1,119,120]]]],[4836,7232,7258,7261,7266,7277,7279,7280,7282,7283,7284,7285,7286,7287,7291,7292,7294,7295,7296,7297,7298,7355,7357,7358,7360,7361,7362,7364,7365,7367,7370,7373,7375,7376,7379,7388,7390,7391,7405,7406,7408,7409,7410,7413,7414,7415,7417,7418,7419,7427,7432,7433,7434,7435,7438,7442,7443,7452,7457,7459,7461,7466,7471,7478,7479,7480,7493,7495,7496,7498,7500,7561,7570,7571,7572,7573,7574,7576,7577,7580,7582,7584,7586,7587,7588,7591,7592,7593,7594,7595,7596,7597,7599,7602,7603,7605,7606,7608,7724,7726,7728,7730,7862,7945,7953,7954,7956,7957,7958,7962,10482,10487,10537,10637,10676,11105,11193,11984,15505,19316]]],["Samuel",[137,117,[[8,129,109,0,109,[[236,1,1,0,1],[237,3,3,1,4],[238,21,15,4,19],[239,1,1,19,20],[242,10,9,20,29],[243,10,8,29,37],[244,11,10,37,47],[245,10,9,47,56],[246,3,3,56,59],[247,7,6,59,65],[248,6,5,65,70],[250,22,19,70,89],[251,11,8,89,97],[254,5,4,97,101],[260,1,1,101,102],[263,7,7,102,109]]],[12,5,5,109,114,[[343,1,1,109,110],[346,1,1,110,111],[348,1,1,111,112],[363,1,1,112,113],[366,1,1,113,114]]],[13,1,1,114,115,[[401,1,1,114,115]]],[18,1,1,115,116,[[576,1,1,115,116]]],[23,1,1,116,117,[[759,1,1,116,117]]]],[7232,7258,7261,7266,7277,7279,7280,7282,7283,7284,7285,7286,7287,7291,7292,7294,7295,7296,7297,7298,7355,7357,7358,7360,7361,7362,7364,7365,7367,7370,7373,7375,7376,7379,7388,7390,7391,7405,7406,7408,7409,7410,7413,7414,7415,7417,7418,7419,7427,7432,7433,7434,7435,7438,7442,7443,7452,7457,7459,7461,7466,7471,7478,7479,7480,7493,7495,7496,7498,7500,7561,7570,7571,7572,7573,7574,7576,7577,7580,7582,7584,7586,7587,7588,7591,7592,7593,7594,7595,7596,7597,7599,7602,7603,7605,7606,7608,7724,7726,7728,7730,7862,7945,7953,7954,7956,7957,7958,7962,10482,10637,10676,11105,11193,11984,15505,19316]]],["Shemuel",[3,3,[[3,1,1,0,1,[[150,1,1,0,1]]],[12,2,2,1,3,[[343,1,1,1,2],[344,1,1,2,3]]]],[4836,10487,10537]]]]},{"k":"H8051","v":[["Shammua",[5,5,[[3,1,1,0,1,[[129,1,1,0,1]]],[9,1,1,1,2,[[271,1,1,1,2]]],[12,1,1,2,3,[[351,1,1,2,3]]],[15,2,2,3,5,[[423,1,1,3,4],[424,1,1,4,5]]]],[4079,8146,10778,12605,12642]]]]},{"k":"H8052","v":[["*",[27,24,[[8,2,2,0,2,[[237,1,1,0,1],[239,1,1,1,2]]],[9,2,2,2,4,[[270,1,1,2,3],[279,1,1,3,4]]],[10,2,2,4,6,[[292,1,1,4,5],[300,1,1,5,6]]],[11,1,1,6,7,[[331,1,1,6,7]]],[13,1,1,7,8,[[375,1,1,7,8]]],[18,1,1,8,9,[[589,1,1,8,9]]],[19,2,2,9,11,[[642,1,1,9,10],[652,1,1,10,11]]],[22,4,4,11,15,[[706,2,2,11,13],[715,1,1,13,14],[731,1,1,14,15]]],[23,6,4,15,19,[[754,1,1,15,16],[793,2,2,16,18],[795,3,1,18,19]]],[25,4,3,19,22,[[808,2,1,19,20],[817,1,1,20,21],[822,1,1,21,22]]],[26,1,1,22,23,[[860,1,1,22,23]]],[30,1,1,23,24,[[888,1,1,23,24]]]],[7264,7316,8124,8347,8798,9086,10068,11370,15810,16837,17138,18173,18183,18359,18712,19223,20141,20150,20258,20603,20818,20951,22080,22511]]],["+",[1,1,[[18,1,1,0,1,[[589,1,1,0,1]]]],[15810]]],["bruit",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19223]]],["doctrine",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18173]]],["fame",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9086,11370]]],["mentioned",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20818]]],["news",[1,1,[[19,1,1,0,1,[[652,1,1,0,1]]]],[17138]]],["report",[4,4,[[8,1,1,0,1,[[237,1,1,0,1]]],[19,1,1,1,2,[[642,1,1,1,2]]],[22,2,2,2,4,[[706,1,1,2,3],[731,1,1,3,4]]]],[7264,16837,18183,18712]]],["rumour",[9,6,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]],[23,4,2,2,4,[[793,1,1,2,3],[795,3,1,3,4]]],[25,2,1,4,5,[[808,2,1,4,5]]],[30,1,1,5,6,[[888,1,1,5,6]]]],[10068,18359,20141,20258,20603,22511]]],["tidings",[7,7,[[8,1,1,0,1,[[239,1,1,0,1]]],[9,2,2,1,3,[[270,1,1,1,2],[279,1,1,2,3]]],[10,1,1,3,4,[[292,1,1,3,4]]],[23,1,1,4,5,[[793,1,1,4,5]]],[25,1,1,5,6,[[822,1,1,5,6]]],[26,1,1,6,7,[[860,1,1,6,7]]]],[7316,8124,8347,8798,20150,20951,22080]]]]},{"k":"H8053","v":[["Shamir",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11039]]]]},{"k":"H8054","v":[["Shammoth",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10700]]]]},{"k":"H8055","v":[["*",[155,148,[[1,1,1,0,1,[[53,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[4,10,10,2,12,[[164,3,3,2,5],[166,1,1,5,6],[168,2,2,6,8],[176,1,1,8,9],[178,1,1,9,10],[179,1,1,10,11],[185,1,1,11,12]]],[6,4,3,12,15,[[219,3,2,12,14],[229,1,1,14,15]]],[8,5,5,15,20,[[237,1,1,15,16],[241,1,1,16,17],[246,2,2,17,19],[254,1,1,19,20]]],[9,1,1,20,21,[[267,1,1,20,21]]],[10,1,1,21,22,[[295,1,1,21,22]]],[11,1,1,22,23,[[323,1,1,22,23]]],[12,4,3,23,26,[[353,2,2,23,25],[366,2,1,25,26]]],[13,7,7,26,33,[[372,1,1,26,27],[381,1,1,27,28],[386,1,1,28,29],[389,1,1,29,30],[390,1,1,30,31],[395,1,1,31,32],[396,1,1,32,33]]],[14,1,1,33,34,[[408,1,1,33,34]]],[15,3,1,34,35,[[424,3,1,34,35]]],[16,1,1,35,36,[[433,1,1,35,36]]],[17,4,4,36,40,[[456,1,1,36,37],[457,1,1,37,38],[466,2,2,38,40]]],[18,52,52,40,92,[[482,1,1,40,41],[486,1,1,41,42],[491,1,1,42,43],[493,1,1,43,44],[496,1,1,44,45],[498,1,1,45,46],[507,1,1,46,47],[508,1,1,47,48],[509,1,1,48,49],[510,1,1,49,50],[511,1,1,50,51],[512,4,4,51,55],[515,1,1,55,56],[517,1,1,56,57],[522,1,1,57,58],[523,1,1,58,59],[525,1,1,59,60],[530,1,1,60,61],[535,1,1,61,62],[540,1,1,62,63],[541,1,1,63,64],[543,1,1,64,65],[544,1,1,65,66],[545,1,1,66,67],[546,1,1,67,68],[547,1,1,68,69],[562,1,1,69,70],[563,1,1,70,71],[566,1,1,71,72],[567,2,2,72,74],[569,1,1,74,75],[573,1,1,75,76],[574,3,3,76,79],[581,3,3,79,82],[582,2,2,82,84],[583,1,1,84,85],[584,2,2,85,87],[586,1,1,87,88],[595,1,1,88,89],[596,1,1,89,90],[599,1,1,90,91],[626,1,1,91,92]]],[19,16,16,92,108,[[632,1,1,92,93],[637,1,1,93,94],[639,1,1,94,95],[640,1,1,95,96],[642,2,2,96,98],[644,1,1,98,99],[650,3,3,99,102],[651,1,1,102,103],[654,2,2,103,105],[656,3,3,105,108]]],[20,8,8,108,116,[[661,2,2,108,110],[662,1,1,110,111],[663,1,1,111,112],[666,1,1,112,113],[668,1,1,113,114],[669,2,2,114,116]]],[21,1,1,116,117,[[671,1,1,116,117]]],[22,9,9,117,126,[[687,2,2,117,119],[692,2,2,119,121],[703,1,1,121,122],[717,1,1,122,123],[734,1,1,123,124],[743,1,1,124,125],[744,1,1,125,126]]],[23,6,4,126,130,[[764,2,1,126,127],[775,2,1,127,128],[785,1,1,128,129],[794,1,1,129,130]]],[24,2,2,130,132,[[798,1,1,130,131],[800,1,1,131,132]]],[25,3,3,132,135,[[808,1,1,132,133],[826,1,1,133,134],[836,1,1,134,135]]],[27,2,2,135,137,[[868,1,1,135,136],[870,1,1,136,137]]],[28,2,2,137,139,[[877,2,2,137,139]]],[29,1,1,139,140,[[884,1,1,139,140]]],[30,1,1,140,141,[[888,1,1,140,141]]],[31,1,1,141,142,[[892,1,1,141,142]]],[32,1,1,142,143,[[899,1,1,142,143]]],[34,1,1,143,144,[[903,1,1,143,144]]],[35,1,1,144,145,[[908,1,1,144,145]]],[37,4,3,145,148,[[912,1,1,145,146],[914,1,1,146,147],[920,2,1,147,148]]]],[1615,3442,5247,5252,5258,5316,5353,5356,5530,5577,5592,5828,6767,6773,7027,7241,7344,7454,7460,7711,8042,8885,9849,10830,10851,11173,11323,11505,11614,11677,11687,11827,11852,12173,12667,12832,13367,13408,13613,13617,13984,14023,14087,14101,14176,14192,14320,14338,14366,14387,14390,14425,14429,14434,14437,14506,14541,14605,14618,14645,14725,14789,14850,14860,14879,14897,14903,14967,14975,15277,15288,15368,15392,15393,15415,15476,15479,15486,15490,15586,15602,15605,15609,15644,15656,15729,15741,15783,15893,15972,16090,16387,16535,16657,16744,16756,16827,16837,16894,17059,17068,17069,17096,17178,17180,17226,17227,17230,17371,17381,17397,17416,17473,17512,17521,17522,17541,17832,17846,17936,17957,18127,18414,18760,18910,18932,19437,19704,19970,20177,20349,20441,20589,21089,21358,22181,22209,22332,22334,22463,22522,22574,22672,22746,22834,22909,22932,23023]]],["+",[5,4,[[4,1,1,0,1,[[176,1,1,0,1]]],[20,1,1,1,2,[[668,1,1,1,2]]],[23,2,1,2,3,[[764,2,1,2,3]]],[27,1,1,3,4,[[868,1,1,3,4]]]],[5530,17512,19437,22181]]],["Rejoice",[9,9,[[4,1,1,0,1,[[185,1,1,0,1]]],[18,2,2,1,3,[[563,1,1,1,2],[574,1,1,2,3]]],[19,1,1,3,4,[[651,1,1,3,4]]],[20,1,1,4,5,[[669,1,1,4,5]]],[22,2,2,5,7,[[692,1,1,5,6],[744,1,1,6,7]]],[27,1,1,7,8,[[870,1,1,7,8]]],[32,1,1,8,9,[[899,1,1,8,9]]]],[5828,15288,15490,17096,17522,17957,18932,22209,22672]]],["cheereth",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6767]]],["glad",[43,43,[[1,1,1,0,1,[[53,1,1,0,1]]],[8,1,1,1,2,[[246,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[16,1,1,3,4,[[433,1,1,3,4]]],[17,1,1,4,5,[[457,1,1,4,5]]],[18,27,27,5,32,[[486,1,1,5,6],[491,1,1,6,7],[493,1,1,7,8],[509,1,1,8,9],[511,1,1,9,10],[512,1,1,10,11],[517,1,1,11,12],[522,1,1,12,13],[523,1,1,13,14],[530,1,1,14,15],[541,1,1,15,16],[544,1,1,16,17],[545,1,1,17,18],[546,1,1,18,19],[547,1,1,19,20],[567,2,2,20,22],[569,1,1,22,23],[574,2,2,23,25],[581,2,2,25,27],[582,1,1,27,28],[584,1,1,28,29],[595,1,1,29,30],[596,1,1,30,31],[599,1,1,31,32]]],[19,5,5,32,37,[[637,1,1,32,33],[639,1,1,33,34],[642,1,1,34,35],[650,1,1,35,36],[654,1,1,36,37]]],[22,1,1,37,38,[[717,1,1,37,38]]],[23,2,2,38,40,[[785,1,1,38,39],[794,1,1,39,40]]],[24,1,1,40,41,[[800,1,1,40,41]]],[35,1,1,41,42,[[908,1,1,41,42]]],[37,1,1,42,43,[[920,1,1,42,43]]]],[1615,7454,10851,12832,13408,14023,14087,14101,14366,14390,14437,14541,14605,14618,14725,14860,14897,14903,14967,14975,15392,15393,15415,15479,15486,15586,15605,15644,15729,15893,15972,16090,16657,16744,16827,17069,17180,18414,19970,20177,20441,22834,23023]]],["joy",[5,5,[[18,1,1,0,1,[[498,1,1,0,1]]],[19,2,2,1,3,[[644,1,1,1,2],[650,1,1,2,3]]],[22,2,2,3,5,[[687,2,2,3,5]]]],[14192,16894,17068,17832,17846]]],["joyful",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[22,1,1,1,2,[[734,1,1,1,2]]]],[12173,18760]]],["merry",[1,1,[[20,1,1,0,1,[[666,1,1,0,1]]]],[17473]]],["rejoice",[64,62,[[2,1,1,0,1,[[112,1,1,0,1]]],[4,8,8,1,9,[[164,3,3,1,4],[166,1,1,4,5],[168,2,2,5,7],[178,1,1,7,8],[179,1,1,8,9]]],[6,2,1,9,10,[[219,2,1,9,10]]],[8,2,2,10,12,[[237,1,1,10,11],[254,1,1,11,12]]],[9,1,1,12,13,[[267,1,1,12,13]]],[12,1,1,13,14,[[353,1,1,13,14]]],[13,2,2,14,16,[[372,1,1,14,15],[386,1,1,15,16]]],[15,1,1,16,17,[[424,1,1,16,17]]],[17,1,1,17,18,[[456,1,1,17,18]]],[18,20,20,18,38,[[482,1,1,18,19],[507,1,1,19,20],[508,1,1,20,21],[510,1,1,21,22],[512,2,2,22,24],[515,1,1,24,25],[525,1,1,25,26],[535,1,1,26,27],[540,1,1,27,28],[543,1,1,28,29],[562,1,1,29,30],[566,1,1,30,31],[573,1,1,31,32],[581,1,1,32,33],[582,1,1,33,34],[583,1,1,34,35],[584,1,1,35,36],[586,1,1,36,37],[626,1,1,37,38]]],[19,5,5,38,43,[[632,1,1,38,39],[650,1,1,39,40],[654,1,1,40,41],[656,2,2,41,43]]],[20,5,5,43,48,[[661,2,2,43,45],[662,1,1,45,46],[663,1,1,46,47],[669,1,1,47,48]]],[21,1,1,48,49,[[671,1,1,48,49]]],[22,3,3,49,52,[[692,1,1,49,50],[703,1,1,50,51],[743,1,1,51,52]]],[23,2,1,52,53,[[775,2,1,52,53]]],[24,1,1,53,54,[[798,1,1,53,54]]],[25,1,1,54,55,[[808,1,1,54,55]]],[28,2,2,55,57,[[877,2,2,55,57]]],[29,1,1,57,58,[[884,1,1,57,58]]],[34,1,1,58,59,[[903,1,1,58,59]]],[37,3,3,59,62,[[912,1,1,59,60],[914,1,1,60,61],[920,1,1,61,62]]]],[3442,5247,5252,5258,5316,5353,5356,5577,5592,6773,7241,7711,8042,10830,11323,11614,12667,13367,13984,14320,14338,14387,14429,14434,14506,14645,14789,14850,14879,15277,15368,15476,15602,15609,15656,15741,15783,16387,16535,17059,17178,17226,17230,17371,17381,17397,17416,17521,17541,17936,18127,18910,19704,20349,20589,22332,22334,22463,22746,22909,22932,23023]]],["rejoiced",[19,17,[[6,1,1,0,1,[[229,1,1,0,1]]],[8,2,2,1,3,[[241,1,1,1,2],[246,1,1,2,3]]],[10,1,1,3,4,[[295,1,1,3,4]]],[11,1,1,4,5,[[323,1,1,4,5]]],[12,2,1,5,6,[[366,2,1,5,6]]],[13,5,5,6,11,[[381,1,1,6,7],[389,1,1,7,8],[390,1,1,8,9],[395,1,1,9,10],[396,1,1,10,11]]],[15,2,1,11,12,[[424,2,1,11,12]]],[17,2,2,12,14,[[466,2,2,12,14]]],[18,1,1,14,15,[[512,1,1,14,15]]],[25,1,1,15,16,[[826,1,1,15,16]]],[30,1,1,16,17,[[888,1,1,16,17]]]],[7027,7344,7460,8885,9849,11173,11505,11677,11687,11827,11852,12667,13613,13617,14425,21089,22522]]],["rejoiceth",[4,4,[[19,3,3,0,3,[[640,1,1,0,1],[642,1,1,1,2],[656,1,1,2,3]]],[25,1,1,3,4,[[836,1,1,3,4]]]],[16756,16837,17227,21358]]],["rejoicing",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14176]]],["was",[1,1,[[31,1,1,0,1,[[892,1,1,0,1]]]],[22574]]]]},{"k":"H8056","v":[["*",[20,20,[[4,1,1,0,1,[[168,1,1,0,1]]],[10,4,4,1,5,[[291,2,2,1,3],[294,1,1,3,4],[298,1,1,4,5]]],[11,1,1,5,6,[[323,1,1,5,6]]],[13,2,2,6,8,[[373,1,1,6,7],[389,1,1,7,8]]],[16,2,2,8,10,[[430,2,2,8,10]]],[17,1,1,10,11,[[438,1,1,10,11]]],[18,3,3,11,14,[[512,1,1,11,12],[590,1,1,12,13],[603,1,1,13,14]]],[19,4,4,14,18,[[629,1,1,14,15],[642,1,1,15,16],[644,2,2,16,18]]],[20,1,1,18,19,[[660,1,1,18,19]]],[22,1,1,19,20,[[702,1,1,19,20]]]],[5357,8757,8762,8864,9051,9843,11334,11669,12788,12793,12926,14436,15822,16118,16447,16820,16878,16895,17343,18102]]],["+",[1,1,[[22,1,1,0,1,[[702,1,1,0,1]]]],[18102]]],["glad",[3,3,[[13,1,1,0,1,[[373,1,1,0,1]]],[18,1,1,1,2,[[603,1,1,1,2]]],[19,1,1,2,3,[[644,1,1,2,3]]]],[11334,16118,16878]]],["joyful",[3,3,[[10,1,1,0,1,[[298,1,1,0,1]]],[16,1,1,1,2,[[430,1,1,1,2]]],[18,1,1,2,3,[[590,1,1,2,3]]]],[9051,12788,15822]]],["merrily",[1,1,[[16,1,1,0,1,[[430,1,1,0,1]]]],[12793]]],["merry",[3,3,[[10,1,1,0,1,[[294,1,1,0,1]]],[19,2,2,1,3,[[642,1,1,1,2],[644,1,1,2,3]]]],[8864,16820,16895]]],["rejoice",[4,4,[[4,1,1,0,1,[[168,1,1,0,1]]],[17,1,1,1,2,[[438,1,1,1,2]]],[18,1,1,2,3,[[512,1,1,2,3]]],[19,1,1,3,4,[[629,1,1,3,4]]]],[5357,12926,14436,16447]]],["rejoiced",[4,4,[[10,1,1,0,1,[[291,1,1,0,1]]],[11,1,1,1,2,[[323,1,1,1,2]]],[13,1,1,2,3,[[389,1,1,2,3]]],[20,1,1,3,4,[[660,1,1,3,4]]]],[8757,9843,11669,17343]]],["rejoicing",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8762]]]]},{"k":"H8057","v":[["*",[93,89,[[0,1,1,0,1,[[30,1,1,0,1]]],[3,1,1,1,2,[[126,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[6,1,1,3,4,[[226,1,1,3,4]]],[8,1,1,4,5,[[253,1,1,4,5]]],[9,1,1,5,6,[[272,1,1,5,6]]],[10,1,1,6,7,[[291,1,1,6,7]]],[12,6,6,7,13,[[349,1,1,7,8],[352,2,2,8,10],[366,3,3,10,13]]],[13,6,6,13,19,[[386,1,1,13,14],[389,1,1,14,15],[395,1,1,15,16],[396,3,3,16,19]]],[14,3,3,19,22,[[405,2,2,19,21],[408,1,1,21,22]]],[15,6,5,22,27,[[420,2,2,22,24],[424,4,3,24,27]]],[16,7,6,27,33,[[433,2,2,27,29],[434,5,4,29,33]]],[17,1,1,33,34,[[455,1,1,33,34]]],[18,13,13,34,47,[[481,1,1,34,35],[493,1,1,35,36],[498,1,1,36,37],[507,1,1,37,38],[520,1,1,38,39],[522,1,1,39,40],[528,1,1,40,41],[545,1,1,41,42],[574,1,1,42,43],[577,1,1,43,44],[583,1,1,44,45],[614,2,2,45,47]]],[19,8,8,47,55,[[637,1,1,47,48],[639,1,1,48,49],[641,2,2,49,51],[642,2,2,51,53],[648,2,2,53,55]]],[20,8,8,55,63,[[660,4,4,55,59],[663,1,1,59,60],[665,1,1,60,61],[666,1,1,61,62],[667,1,1,62,63]]],[21,1,1,63,64,[[673,1,1,63,64]]],[22,14,12,64,76,[[687,2,1,64,65],[694,1,1,65,66],[700,1,1,66,67],[702,1,1,67,68],[707,1,1,68,69],[708,1,1,69,70],[713,1,1,70,71],[729,3,2,71,73],[733,1,1,73,74],[739,1,1,74,75],[744,1,1,75,76]]],[23,7,7,76,83,[[751,1,1,76,77],[759,1,1,77,78],[760,1,1,78,79],[769,1,1,79,80],[775,1,1,80,81],[777,1,1,81,82],[792,1,1,82,83]]],[25,2,2,83,85,[[836,1,1,83,84],[837,1,1,84,85]]],[28,1,1,85,86,[[876,1,1,85,86]]],[31,1,1,86,87,[[892,1,1,86,87]]],[35,1,1,87,88,[[908,1,1,87,88]]],[37,1,1,88,89,[[918,1,1,88,89]]]],[900,3998,5658,6972,7682,8169,8757,10760,10807,10816,11173,11181,11186,11614,11674,11821,11848,11850,11853,12109,12110,12173,12505,12510,12651,12667,12668,12833,12834,12851,12852,12853,12856,13331,13972,14103,14197,14330,14570,14612,14699,14903,15489,15510,15656,16225,16228,16684,16739,16782,16785,16828,16830,16999,17001,17334,17335,17343,17359,17417,17433,17473,17482,17582,17832,17979,18065,18106,18212,18246,18330,18676,18684,18752,18850,18927,19153,19331,19345,19544,19698,19786,20113,21359,21364,22307,22574,22837,22995]]],["+",[2,2,[[18,1,1,0,1,[[498,1,1,0,1]]],[31,1,1,1,2,[[892,1,1,1,2]]]],[14197,22574]]],["exceeding",[1,1,[[18,1,1,0,1,[[520,1,1,0,1]]]],[14570]]],["exceedingly",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14903]]],["gladness",[32,32,[[3,1,1,0,1,[[126,1,1,0,1]]],[9,1,1,1,2,[[272,1,1,1,2]]],[12,1,1,2,3,[[366,1,1,2,3]]],[13,3,3,3,6,[[395,1,1,3,4],[396,2,2,4,6]]],[15,2,2,6,8,[[420,1,1,6,7],[424,1,1,7,8]]],[16,4,4,8,12,[[433,1,1,8,9],[434,3,3,9,12]]],[18,7,7,12,19,[[481,1,1,12,13],[507,1,1,13,14],[522,1,1,14,15],[528,1,1,15,16],[574,1,1,16,17],[577,1,1,17,18],[583,1,1,18,19]]],[19,1,1,19,20,[[637,1,1,19,20]]],[21,1,1,20,21,[[673,1,1,20,21]]],[22,5,5,21,26,[[694,1,1,21,22],[700,1,1,22,23],[708,1,1,23,24],[713,1,1,24,25],[729,1,1,25,26]]],[23,5,5,26,31,[[751,1,1,26,27],[760,1,1,27,28],[769,1,1,28,29],[775,1,1,29,30],[777,1,1,30,31]]],[37,1,1,31,32,[[918,1,1,31,32]]]],[3998,8169,11186,11821,11848,11850,12510,12651,12833,12851,12852,12853,13972,14330,14612,14699,15489,15510,15656,16684,17582,17979,18065,18246,18330,18676,19153,19345,19544,19698,19786,22995]]],["joy",[42,38,[[8,1,1,0,1,[[253,1,1,0,1]]],[10,1,1,1,2,[[291,1,1,1,2]]],[12,5,5,2,7,[[349,1,1,2,3],[352,2,2,3,5],[366,2,2,5,7]]],[13,2,2,7,9,[[386,1,1,7,8],[396,1,1,8,9]]],[14,3,3,9,12,[[405,2,2,9,11],[408,1,1,11,12]]],[15,2,1,12,13,[[424,2,1,12,13]]],[16,3,2,13,15,[[433,1,1,13,14],[434,2,1,14,15]]],[17,1,1,15,16,[[455,1,1,15,16]]],[18,2,2,16,18,[[493,1,1,16,17],[614,1,1,17,18]]],[19,5,5,18,23,[[639,1,1,18,19],[641,1,1,19,20],[642,2,2,20,22],[648,1,1,22,23]]],[20,4,4,23,27,[[660,2,2,23,25],[663,1,1,25,26],[667,1,1,26,27]]],[22,9,7,27,34,[[687,2,1,27,28],[702,1,1,28,29],[707,1,1,29,30],[729,2,1,30,31],[733,1,1,31,32],[739,1,1,32,33],[744,1,1,33,34]]],[23,1,1,34,35,[[792,1,1,34,35]]],[25,1,1,35,36,[[837,1,1,35,36]]],[28,1,1,36,37,[[876,1,1,36,37]]],[35,1,1,37,38,[[908,1,1,37,38]]]],[7682,8757,10760,10807,10816,11173,11181,11614,11853,12109,12110,12173,12667,12834,12856,13331,14103,16228,16739,16782,16828,16830,16999,17343,17359,17417,17482,17832,18106,18212,18684,18752,18850,18927,20113,21364,22307,22837]]],["joyfulness",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5658]]],["mirth",[8,8,[[0,1,1,0,1,[[30,1,1,0,1]]],[15,1,1,1,2,[[420,1,1,1,2]]],[18,1,1,2,3,[[614,1,1,2,3]]],[19,1,1,3,4,[[641,1,1,3,4]]],[20,4,4,4,8,[[660,2,2,4,6],[665,1,1,6,7],[666,1,1,7,8]]]],[900,12505,16225,16785,17334,17335,17433,17473]]],["pleasure",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17001]]],["rejoice",[2,2,[[6,1,1,0,1,[[226,1,1,0,1]]],[25,1,1,1,2,[[836,1,1,1,2]]]],[6972,21359]]],["rejoiced",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12668]]],["rejoicing",[2,2,[[13,1,1,0,1,[[389,1,1,0,1]]],[23,1,1,1,2,[[759,1,1,1,2]]]],[11674,19331]]]]},{"k":"H8058","v":[["*",[9,8,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,2,2,1,3,[[167,2,2,1,3]]],[9,1,1,3,4,[[272,1,1,3,4]]],[11,2,1,4,5,[[321,2,1,4,5]]],[12,1,1,5,6,[[350,1,1,5,6]]],[18,1,1,6,7,[[618,1,1,6,7]]],[23,1,1,7,8,[[761,1,1,7,8]]]],[2155,5321,5322,8163,9789,10769,16282,19361]]],["discontinue",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19361]]],["down",[2,1,[[11,2,1,0,1,[[321,2,1,0,1]]]],[9789]]],["overthrown",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16282]]],["release",[2,2,[[4,2,2,0,2,[[167,2,2,0,2]]]],[5321,5322]]],["rest",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2155]]],["shook",[1,1,[[9,1,1,0,1,[[272,1,1,0,1]]]],[8163]]],["stumbled",[1,1,[[12,1,1,0,1,[[350,1,1,0,1]]]],[10769]]]]},{"k":"H8059","v":[["release",[5,4,[[4,5,4,0,4,[[167,4,3,0,3],[183,1,1,3,4]]]],[5320,5321,5328,5738]]]]},{"k":"H8060","v":[["Shammai",[6,5,[[12,6,5,0,5,[[339,5,4,0,4],[341,1,1,4,5]]]],[10334,10338,10350,10351,10402]]]]},{"k":"H8061","v":[["Shemida",[3,3,[[3,1,1,0,1,[[142,1,1,0,1]]],[5,1,1,1,2,[[203,1,1,1,2]]],[12,1,1,2,3,[[344,1,1,2,3]]]],[4521,6277,10554]]]]},{"k":"H8062","v":[["Shemidaites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4521]]]]},{"k":"H8063","v":[["mantle",[1,1,[[6,1,1,0,1,[[214,1,1,0,1]]]],[6617]]]]},{"k":"H8064","v":[["*",[421,395,[[0,41,39,0,39,[[0,10,10,0,10],[1,5,4,10,14],[5,2,2,14,16],[6,4,4,16,20],[7,2,1,20,21],[8,1,1,21,22],[10,1,1,22,23],[13,2,2,23,25],[14,1,1,25,26],[18,1,1,26,27],[20,1,1,27,28],[21,3,3,28,31],[23,2,2,31,33],[25,1,1,33,34],[26,2,2,34,36],[27,2,2,36,38],[48,1,1,38,39]]],[1,14,14,39,53,[[58,4,4,39,43],[59,2,2,43,45],[65,1,1,45,46],[66,1,1,46,47],[69,3,3,47,50],[73,1,1,50,51],[80,1,1,51,52],[81,1,1,52,53]]],[2,1,1,53,54,[[115,1,1,53,54]]],[4,44,38,54,92,[[153,2,2,54,56],[154,1,1,56,57],[155,1,1,57,58],[156,10,7,58,65],[157,1,1,65,66],[159,1,1,66,67],[161,2,2,67,69],[162,4,2,69,71],[163,3,3,71,74],[169,1,1,74,75],[177,1,1,75,76],[178,1,1,76,77],[180,5,5,77,82],[181,1,1,82,83],[182,4,3,83,86],[183,1,1,86,87],[184,2,2,87,89],[185,3,3,89,92]]],[5,4,4,92,96,[[188,1,1,92,93],[194,1,1,93,94],[196,2,2,94,96]]],[6,4,4,96,100,[[215,2,2,96,98],[223,1,1,98,99],[230,1,1,99,100]]],[8,4,4,100,104,[[237,1,1,100,101],[240,1,1,101,102],[252,2,2,102,104]]],[9,6,5,104,109,[[284,1,1,104,105],[287,2,1,105,106],[288,3,3,106,109]]],[10,20,18,109,127,[[298,15,13,109,122],[304,1,1,122,123],[306,1,1,123,124],[308,1,1,124,125],[311,1,1,125,126],[312,1,1,126,127]]],[11,16,14,127,141,[[313,5,3,127,130],[314,2,2,130,132],[319,2,2,132,134],[326,1,1,134,135],[329,1,1,135,136],[331,1,1,136,137],[333,2,2,137,139],[335,2,2,139,141]]],[12,6,6,141,147,[[353,2,2,141,143],[358,2,2,143,145],[364,1,1,145,146],[366,1,1,146,147]]],[13,29,25,147,172,[[368,4,2,147,149],[372,14,12,149,161],[373,3,3,161,164],[384,1,1,164,165],[386,1,1,165,166],[394,1,1,166,167],[396,1,1,167,168],[398,1,1,168,169],[399,2,2,169,171],[402,1,1,171,172]]],[14,2,2,172,174,[[403,1,1,172,173],[411,1,1,173,174]]],[15,14,11,174,185,[[413,3,3,174,177],[414,2,2,177,179],[421,9,6,179,185]]],[17,23,23,185,208,[[436,1,1,185,186],[437,1,1,186,187],[444,1,1,187,188],[446,1,1,188,189],[447,1,1,189,190],[449,1,1,190,191],[450,1,1,191,192],[451,1,1,192,193],[455,2,2,193,195],[457,2,2,195,197],[461,2,2,197,199],[463,2,2,199,201],[470,2,2,201,203],[472,1,1,203,204],[473,3,3,204,207],[476,1,1,207,208]]],[18,74,70,208,278,[[479,1,1,208,209],[485,3,3,209,212],[488,1,1,212,213],[491,1,1,213,214],[495,2,2,214,216],[496,2,2,216,218],[497,1,1,218,219],[510,2,2,219,221],[513,1,1,221,222],[527,2,2,222,224],[530,1,1,224,225],[534,4,4,225,229],[545,3,2,229,231],[546,1,1,231,232],[550,2,2,232,234],[553,1,1,234,235],[555,3,3,235,238],[556,1,1,238,239],[557,1,1,239,240],[562,1,1,240,241],[566,4,4,241,245],[573,2,2,245,247],[574,1,1,247,248],[579,2,2,248,250],[580,2,2,250,252],[581,2,2,252,254],[582,1,1,254,255],[584,1,1,255,256],[585,2,2,256,258],[590,2,2,258,260],[592,4,3,260,263],[596,1,1,263,264],[598,1,1,264,265],[600,1,1,265,266],[601,1,1,266,267],[611,1,1,267,268],[612,1,1,268,269],[613,2,2,269,271],[616,1,1,271,272],[621,1,1,272,273],[623,1,1,273,274],[624,1,1,274,275],[625,5,3,275,278]]],[19,6,6,278,284,[[630,1,1,278,279],[635,1,1,279,280],[650,1,1,280,281],[652,1,1,281,282],[657,2,2,282,284]]],[20,5,5,284,289,[[659,1,1,284,285],[660,1,1,285,286],[661,1,1,286,287],[663,1,1,287,288],[668,1,1,288,289]]],[22,33,31,289,320,[[679,1,1,289,290],[691,3,3,290,293],[692,2,2,293,295],[712,3,2,295,297],[715,1,1,297,298],[718,2,2,298,300],[720,1,1,300,301],[722,2,2,301,303],[723,3,3,303,306],[725,1,1,306,307],[726,1,1,307,308],[727,1,1,308,309],[728,1,1,309,310],[729,4,3,310,313],[733,2,2,313,315],[741,1,1,315,316],[742,1,1,316,317],[743,1,1,317,318],[744,2,2,318,320]]],[23,33,33,320,353,[[746,1,1,320,321],[748,3,3,321,324],[751,2,2,324,326],[752,2,2,326,328],[753,1,1,328,329],[754,3,3,329,332],[758,1,1,332,333],[759,1,1,333,334],[760,1,1,334,335],[763,2,2,335,337],[767,1,1,337,338],[775,1,1,338,339],[776,1,1,339,340],[777,2,2,340,342],[778,1,1,342,343],[788,4,4,343,347],[793,1,1,347,348],[795,5,5,348,353]]],[24,5,5,353,358,[[798,1,1,353,354],[799,3,3,354,357],[800,1,1,357,358]]],[25,9,9,358,367,[[802,1,1,358,359],[809,1,1,359,360],[830,1,1,360,361],[832,2,2,361,363],[833,3,3,363,366],[839,1,1,366,367]]],[26,5,5,367,372,[[857,2,2,367,369],[858,1,1,369,370],[860,1,1,370,371],[861,1,1,371,372]]],[27,4,4,372,376,[[863,2,2,372,374],[865,1,1,374,375],[868,1,1,375,376]]],[28,3,3,376,379,[[877,2,2,376,378],[878,1,1,378,379]]],[29,2,2,379,381,[[887,2,2,379,381]]],[31,1,1,381,382,[[889,1,1,381,382]]],[33,1,1,382,383,[[902,1,1,382,383]]],[34,1,1,383,384,[[905,1,1,383,384]]],[35,2,2,384,386,[[906,2,2,384,386]]],[36,3,3,386,389,[[909,1,1,386,387],[910,2,2,387,389]]],[37,5,5,389,394,[[912,1,1,389,390],[915,1,1,390,391],[916,1,1,391,392],[918,1,1,392,393],[922,1,1,393,394]]],[38,1,1,394,395,[[927,1,1,394,395]]]],[0,7,8,13,14,16,19,25,27,29,31,34,49,50,144,154,162,170,178,182,185,207,270,355,358,365,481,530,558,562,564,594,598,696,755,766,785,790,1498,1750,1752,1764,1765,1798,1799,1951,1997,2055,2062,2073,2187,2437,2451,3543,4902,4920,4963,4999,5015,5021,5023,5030,5036,5040,5043,5061,5135,5158,5171,5200,5208,5219,5225,5229,5367,5566,5581,5623,5634,5635,5637,5673,5699,5712,5720,5727,5756,5759,5798,5823,5836,5838,5880,6022,6075,6077,6627,6643,6904,7094,7250,7331,7662,7664,8487,8590,8610,8612,8616,9007,9008,9012,9015,9017,9019,9020,9021,9024,9028,9030,9034,9039,9229,9287,9386,9475,9499,9543,9545,9547,9552,9562,9709,9726,9923,9999,10076,10122,10124,10169,10170,10846,10851,10950,10960,11132,11175,11217,11223,11295,11296,11300,11303,11305,11307,11308,11309,11312,11315,11317,11321,11325,11337,11338,11560,11593,11773,11854,11895,11911,11913,12016,12018,12243,12300,12301,12305,12311,12327,12517,12524,12526,12534,12538,12539,12885,12903,13059,13116,13135,13193,13218,13257,13332,13353,13401,13403,13478,13480,13525,13528,13725,13731,13772,13822,13826,13830,13899,13949,14013,14015,14020,14063,14082,14127,14131,14169,14174,14188,14372,14379,14443,14672,14674,14721,14771,14773,14778,14779,14908,14933,14969,15029,15045,15089,15136,15137,15139,15187,15212,15282,15328,15331,15337,15355,15470,15476,15484,15540,15546,15560,15568,15573,15583,15646,15725,15746,15747,15817,15819,15833,15845,15846,15987,16083,16099,16110,16175,16181,16201,16222,16247,16310,16347,16359,16372,16375,16384,16474,16629,17049,17116,17255,17270,17328,17336,17360,17399,17513,17656,17911,17916,17919,17940,17941,18307,18308,18368,18432,18442,18485,18556,18557,18569,18573,18579,18612,18627,18649,18665,18679,18686,18689,18749,18750,18881,18886,18914,18923,18944,18977,19050,19052,19055,19137,19152,19155,19160,19185,19203,19213,19214,19315,19318,19340,19414,19420,19508,19728,19748,19797,19800,19821,20027,20028,20029,20035,20163,20221,20227,20228,20260,20265,20333,20395,20404,20420,20439,20465,20607,21188,21236,21243,21252,21255,21256,21445,21969,21971,22000,22040,22088,22123,22126,22136,22190,22321,22341,22359,22497,22501,22540,22728,22771,22790,22792,22850,22861,22876,22905,22945,22952,22988,23046,23130]]],["+",[21,21,[[4,1,1,0,1,[[156,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[13,2,2,2,4,[[372,1,1,2,3],[373,1,1,3,4]]],[15,4,4,4,8,[[421,4,4,4,8]]],[18,8,8,8,16,[[491,1,1,8,9],[497,1,1,9,10],[510,1,1,10,11],[530,1,1,11,12],[534,1,1,12,13],[557,1,1,13,14],[562,1,1,14,15],[579,1,1,15,16]]],[22,3,3,16,19,[[692,1,1,16,17],[725,1,1,17,18],[741,1,1,18,19]]],[24,2,2,19,21,[[798,1,1,19,20],[799,1,1,20,21]]]],[5036,9030,11317,11325,12524,12526,12538,12539,14082,14188,14379,14721,14771,15212,15282,15540,17940,18612,18881,20333,20404]]],["Heaven",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[7]]],["air",[21,21,[[0,8,8,0,8,[[0,3,3,0,3],[1,2,2,3,5],[5,1,1,5,6],[6,1,1,6,7],[8,1,1,7,8]]],[4,2,2,8,10,[[156,1,1,8,9],[180,1,1,9,10]]],[8,2,2,10,12,[[252,2,2,10,12]]],[9,1,1,12,13,[[287,1,1,12,13]]],[10,3,3,13,16,[[304,1,1,13,14],[306,1,1,14,15],[311,1,1,15,16]]],[17,2,2,16,18,[[447,1,1,16,17],[463,1,1,17,18]]],[18,1,1,18,19,[[485,1,1,18,19]]],[19,1,1,19,20,[[657,1,1,19,20]]],[20,1,1,20,21,[[668,1,1,20,21]]]],[25,27,29,49,50,144,162,207,5021,5637,7662,7664,8590,9229,9287,9475,13135,13525,14020,17270,17513]]],["heaven",[270,258,[[0,29,28,0,28,[[0,6,6,0,6],[5,1,1,6,7],[6,3,3,7,10],[7,2,1,10,11],[10,1,1,11,12],[13,2,2,12,14],[14,1,1,14,15],[18,1,1,15,16],[20,1,1,16,17],[21,3,3,17,20],[23,2,2,20,22],[25,1,1,22,23],[26,2,2,23,25],[27,2,2,25,27],[48,1,1,27,28]]],[1,14,14,28,42,[[58,4,4,28,32],[59,2,2,32,34],[65,1,1,34,35],[66,1,1,35,36],[69,3,3,36,39],[73,1,1,39,40],[80,1,1,40,41],[81,1,1,41,42]]],[2,1,1,42,43,[[115,1,1,42,43]]],[4,38,34,43,77,[[153,2,2,43,45],[154,1,1,45,46],[155,1,1,46,47],[156,8,6,47,53],[157,1,1,53,54],[159,1,1,54,55],[161,2,2,55,57],[162,3,2,57,59],[163,3,3,59,62],[169,1,1,62,63],[177,1,1,63,64],[178,1,1,64,65],[180,4,4,65,69],[181,1,1,69,70],[182,4,3,70,73],[183,1,1,73,74],[184,1,1,74,75],[185,2,2,75,77]]],[5,4,4,77,81,[[188,1,1,77,78],[194,1,1,78,79],[196,2,2,79,81]]],[6,3,3,81,84,[[215,1,1,81,82],[223,1,1,82,83],[230,1,1,83,84]]],[8,2,2,84,86,[[237,1,1,84,85],[240,1,1,85,86]]],[9,4,4,86,90,[[284,1,1,86,87],[287,1,1,87,88],[288,2,2,88,90]]],[10,15,14,90,104,[[298,13,12,90,102],[308,1,1,102,103],[312,1,1,103,104]]],[11,16,14,104,118,[[313,5,3,104,107],[314,2,2,107,109],[319,2,2,109,111],[326,1,1,111,112],[329,1,1,112,113],[331,1,1,113,114],[333,2,2,114,116],[335,2,2,116,118]]],[12,3,3,118,121,[[358,2,2,118,120],[366,1,1,120,121]]],[13,22,20,121,141,[[368,3,2,121,123],[372,9,8,123,131],[373,2,2,131,133],[384,1,1,133,134],[386,1,1,134,135],[394,1,1,135,136],[396,1,1,136,137],[398,1,1,137,138],[399,2,2,138,140],[402,1,1,140,141]]],[14,1,1,141,142,[[403,1,1,141,142]]],[15,9,7,142,149,[[413,3,3,142,145],[414,2,2,145,147],[421,4,2,147,149]]],[17,15,15,149,164,[[436,1,1,149,150],[437,1,1,150,151],[446,1,1,151,152],[451,1,1,152,153],[455,1,1,153,154],[457,2,2,154,156],[461,1,1,156,157],[463,1,1,157,158],[470,1,1,158,159],[472,1,1,159,160],[473,3,3,160,163],[476,1,1,163,164]]],[18,27,27,164,191,[[488,1,1,164,165],[496,1,1,165,166],[546,1,1,166,167],[550,1,1,167,168],[553,1,1,168,169],[555,3,3,169,172],[556,1,1,172,173],[566,1,1,173,174],[580,1,1,174,175],[581,1,1,175,176],[582,1,1,176,177],[584,1,1,177,178],[590,1,1,178,179],[592,2,2,179,181],[596,1,1,181,182],[598,1,1,182,183],[601,1,1,183,184],[611,1,1,184,185],[612,1,1,185,186],[613,1,1,186,187],[616,1,1,187,188],[623,1,1,188,189],[624,1,1,189,190],[625,1,1,190,191]]],[19,3,3,191,194,[[650,1,1,191,192],[652,1,1,192,193],[657,1,1,193,194]]],[20,4,4,194,198,[[659,1,1,194,195],[660,1,1,195,196],[661,1,1,196,197],[663,1,1,197,198]]],[22,9,9,198,207,[[691,2,2,198,200],[692,1,1,200,201],[712,2,2,201,203],[715,1,1,203,204],[718,1,1,204,205],[733,1,1,205,206],[744,1,1,206,207]]],[23,24,24,207,231,[[751,2,2,207,209],[752,2,2,209,211],[754,1,1,211,212],[759,1,1,212,213],[760,1,1,213,214],[763,2,2,214,216],[767,1,1,216,217],[775,1,1,217,218],[776,1,1,218,219],[777,2,2,219,221],[778,1,1,221,222],[788,4,4,222,226],[793,1,1,226,227],[795,4,4,227,231]]],[24,1,1,231,232,[[800,1,1,231,232]]],[25,8,8,232,240,[[809,1,1,232,233],[830,1,1,233,234],[832,2,2,234,236],[833,3,3,236,239],[839,1,1,239,240]]],[26,5,5,240,245,[[857,2,2,240,242],[858,1,1,242,243],[860,1,1,243,244],[861,1,1,244,245]]],[27,3,3,245,248,[[863,1,1,245,246],[865,1,1,246,247],[868,1,1,247,248]]],[29,2,2,248,250,[[887,2,2,248,250]]],[31,1,1,250,251,[[889,1,1,250,251]]],[33,1,1,251,252,[[902,1,1,251,252]]],[35,2,2,252,254,[[906,2,2,252,254]]],[36,1,1,254,255,[[909,1,1,254,255]]],[37,2,2,255,257,[[912,1,1,255,256],[915,1,1,256,257]]],[38,1,1,257,258,[[927,1,1,257,258]]]],[0,8,13,14,16,19,154,170,178,182,185,270,355,358,365,481,530,558,562,564,594,598,696,755,766,785,790,1498,1750,1752,1764,1765,1798,1799,1951,1997,2055,2062,2073,2187,2437,2451,3543,4902,4920,4963,4999,5015,5023,5030,5036,5040,5043,5061,5135,5158,5171,5200,5208,5219,5225,5229,5367,5566,5581,5623,5634,5635,5673,5699,5712,5720,5727,5756,5798,5823,5836,5880,6022,6075,6077,6643,6904,7094,7250,7331,8487,8590,8610,8616,9007,9008,9012,9015,9017,9019,9020,9021,9024,9028,9034,9039,9386,9499,9543,9545,9547,9552,9562,9709,9726,9923,9999,10076,10122,10124,10169,10170,10950,10960,11175,11217,11223,11295,11296,11300,11303,11305,11308,11309,11312,11337,11338,11560,11593,11773,11854,11895,11911,11913,12016,12018,12300,12301,12305,12311,12327,12517,12534,12885,12903,13116,13257,13353,13401,13403,13478,13528,13731,13772,13822,13826,13830,13899,14063,14174,14969,15045,15089,15136,15137,15139,15187,15355,15560,15583,15646,15725,15819,15845,15846,15987,16083,16110,16175,16181,16222,16247,16347,16359,16384,17049,17116,17255,17328,17336,17360,17399,17911,17916,17941,18307,18308,18368,18432,18750,18923,19137,19152,19155,19160,19203,19318,19340,19414,19420,19508,19728,19748,19797,19800,19821,20027,20028,20029,20035,20163,20221,20227,20260,20265,20439,20607,21188,21236,21243,21252,21255,21256,21445,21969,21971,22000,22040,22088,22123,22136,22190,22497,22501,22540,22728,22790,22792,22850,22905,22945,23130]]],["heavens",[108,103,[[0,3,2,0,2,[[1,3,2,0,2]]],[4,3,3,2,5,[[162,1,1,2,3],[184,1,1,3,4],[185,1,1,4,5]]],[6,1,1,5,6,[[215,1,1,5,6]]],[9,1,1,6,7,[[288,1,1,6,7]]],[10,1,1,7,8,[[298,1,1,7,8]]],[12,3,3,8,11,[[353,2,2,8,10],[364,1,1,10,11]]],[13,5,5,11,16,[[368,1,1,11,12],[372,4,4,12,16]]],[14,1,1,16,17,[[411,1,1,16,17]]],[15,1,1,17,18,[[421,1,1,17,18]]],[17,6,6,18,24,[[444,1,1,18,19],[449,1,1,19,20],[450,1,1,20,21],[455,1,1,21,22],[461,1,1,22,23],[470,1,1,23,24]]],[18,38,35,24,59,[[479,1,1,24,25],[485,2,2,25,27],[495,2,2,27,29],[496,1,1,29,30],[510,1,1,30,31],[513,1,1,31,32],[527,2,2,32,34],[534,3,3,34,37],[545,3,2,37,39],[550,1,1,39,40],[566,3,3,40,43],[573,2,2,43,45],[574,1,1,45,46],[579,1,1,46,47],[580,1,1,47,48],[581,1,1,48,49],[585,2,2,49,51],[590,1,1,51,52],[592,2,2,52,54],[600,1,1,54,55],[613,1,1,55,56],[621,1,1,56,57],[625,4,2,57,59]]],[19,2,2,59,61,[[630,1,1,59,60],[635,1,1,60,61]]],[22,21,20,61,81,[[679,1,1,61,62],[691,1,1,62,63],[712,1,1,63,64],[718,1,1,64,65],[720,1,1,65,66],[722,2,2,66,68],[723,3,3,68,71],[726,1,1,71,72],[727,1,1,72,73],[728,1,1,73,74],[729,4,3,74,77],[733,1,1,77,78],[742,1,1,78,79],[743,1,1,79,80],[744,1,1,80,81]]],[23,9,9,81,90,[[746,1,1,81,82],[748,3,3,82,85],[753,1,1,85,86],[754,2,2,86,88],[758,1,1,88,89],[795,1,1,89,90]]],[24,2,2,90,92,[[799,2,2,90,92]]],[25,1,1,92,93,[[802,1,1,92,93]]],[27,1,1,93,94,[[863,1,1,93,94]]],[28,3,3,94,97,[[877,2,2,94,96],[878,1,1,96,97]]],[34,1,1,97,98,[[905,1,1,97,98]]],[36,2,2,98,100,[[910,2,2,98,100]]],[37,3,3,100,103,[[916,1,1,100,101],[918,1,1,101,102],[922,1,1,102,103]]]],[31,34,5200,5759,5838,6627,8612,9012,10846,10851,11132,11217,11300,11307,11315,11321,12243,12517,13059,13193,13218,13332,13480,13725,13949,14013,14015,14127,14131,14169,14372,14443,14672,14674,14773,14778,14779,14908,14933,15029,15328,15331,15337,15470,15476,15484,15546,15568,15573,15746,15747,15817,15833,15846,16099,16201,16310,16372,16375,16474,16629,17656,17919,18307,18442,18485,18556,18557,18569,18573,18579,18627,18649,18665,18679,18686,18689,18749,18886,18914,18944,18977,19050,19052,19055,19185,19213,19214,19315,20228,20395,20420,20465,22126,22321,22341,22359,22771,22861,22876,22952,22988,23046]]]]},{"k":"H8065","v":[["*",[38,35,[[14,8,7,0,7,[[407,2,2,0,2],[408,2,2,2,4],[409,4,3,4,7]]],[23,2,1,7,8,[[754,2,1,7,8]]],[26,28,27,8,35,[[851,6,6,8,14],[853,16,15,14,29],[854,2,2,29,31],[855,1,1,31,32],[856,3,3,32,35]]]],[12145,12146,12160,12161,12185,12194,12196,19212,21776,21777,21786,21795,21796,21802,21848,21849,21850,21852,21857,21858,21859,21860,21862,21863,21868,21870,21871,21872,21874,21895,21897,21932,21935,21946,21960]]],["+",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12146]]],["heaven",[34,32,[[14,7,6,0,6,[[407,1,1,0,1],[408,2,2,1,3],[409,4,3,3,6]]],[26,27,26,6,32,[[851,6,6,6,12],[853,15,14,12,26],[854,2,2,26,28],[855,1,1,28,29],[856,3,3,29,32]]]],[12145,12160,12161,12185,12194,12196,21776,21777,21786,21795,21796,21802,21848,21849,21850,21852,21857,21858,21859,21860,21862,21868,21870,21871,21872,21874,21895,21897,21932,21935,21946,21960]]],["heavens",[3,2,[[23,2,1,0,1,[[754,2,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[19212,21863]]]]},{"k":"H8066","v":[["*",[28,27,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,10,10,1,11,[[98,1,1,1,2],[101,1,1,2,3],[103,2,2,3,5],[104,2,2,5,7],[111,1,1,7,8],[112,2,2,8,10],[114,1,1,10,11]]],[3,3,3,11,14,[[122,1,1,11,12],[123,1,1,12,13],[145,1,1,13,14]]],[10,4,4,14,18,[[296,1,1,14,15],[298,1,1,15,16],[302,2,2,16,18]]],[12,6,5,18,23,[[349,1,1,18,19],[361,1,1,19,20],[362,1,1,20,21],[363,1,1,21,22],[364,2,1,22,23]]],[13,1,1,23,24,[[373,1,1,23,24]]],[15,1,1,24,25,[[420,1,1,24,25]]],[25,1,1,25,26,[[844,1,1,25,26]]],[37,1,1,26,27,[[911,1,1,26,27]]]],[2143,2954,3047,3121,3134,3182,3197,3396,3438,3441,3491,3833,3904,4643,8934,9051,9183,9184,10732,11025,11061,11082,11120,11333,12511,21599,22879]]],["+",[1,1,[[2,1,1,0,1,[[111,1,1,0,1]]]],[3396]]],["eighth",[27,26,[[1,1,1,0,1,[[71,1,1,0,1]]],[2,9,9,1,10,[[98,1,1,1,2],[101,1,1,2,3],[103,2,2,3,5],[104,2,2,5,7],[112,2,2,7,9],[114,1,1,9,10]]],[3,3,3,10,13,[[122,1,1,10,11],[123,1,1,11,12],[145,1,1,12,13]]],[10,4,4,13,17,[[296,1,1,13,14],[298,1,1,14,15],[302,2,2,15,17]]],[12,6,5,17,22,[[349,1,1,17,18],[361,1,1,18,19],[362,1,1,19,20],[363,1,1,20,21],[364,2,1,21,22]]],[13,1,1,22,23,[[373,1,1,22,23]]],[15,1,1,23,24,[[420,1,1,23,24]]],[25,1,1,24,25,[[844,1,1,24,25]]],[37,1,1,25,26,[[911,1,1,25,26]]]],[2143,2954,3047,3121,3134,3182,3197,3438,3441,3491,3833,3904,4643,8934,9051,9183,9184,10732,11025,11061,11082,11120,11333,12511,21599,22879]]]]},{"k":"H8067","v":[["Sheminith",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10812]]]]},{"k":"H8068","v":[["*",[11,11,[[22,8,8,0,8,[[683,1,1,0,1],[685,3,3,1,4],[687,1,1,4,5],[688,1,1,5,6],[705,1,1,6,7],[710,1,1,7,8]]],[23,1,1,8,9,[[761,1,1,8,9]]],[25,1,1,9,10,[[804,1,1,9,10]]],[37,1,1,10,11,[[917,1,1,10,11]]]],[17745,17805,17806,17807,17847,17867,18155,18272,19358,20511,22974]]],["adamant",[1,1,[[25,1,1,0,1,[[804,1,1,0,1]]]],[20511]]],["briers",[8,8,[[22,8,8,0,8,[[683,1,1,0,1],[685,3,3,1,4],[687,1,1,4,5],[688,1,1,5,6],[705,1,1,6,7],[710,1,1,7,8]]]],[17745,17805,17806,17807,17847,17867,18155,18272]]],["diamond",[1,1,[[23,1,1,0,1,[[761,1,1,0,1]]]],[19358]]],["stone",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22974]]]]},{"k":"H8069","v":[["Shamir",[3,3,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,2,2,1,3,[[220,2,2,1,3]]]],[6250,6812,6813]]]]},{"k":"H8070","v":[["Shemiramoth",[4,4,[[12,3,3,0,3,[[352,2,2,0,2],[353,1,1,2,3]]],[13,1,1,3,4,[[383,1,1,3,4]]]],[10809,10811,10825,11531]]]]},{"k":"H8071","v":[["*",[29,28,[[0,7,6,0,6,[[8,1,1,0,1],[34,1,1,1,2],[36,1,1,2,3],[40,1,1,3,4],[43,1,1,4,5],[44,2,1,5,6]]],[1,6,6,6,12,[[52,1,1,6,7],[61,2,2,7,9],[68,2,2,9,11],[71,1,1,11,12]]],[4,6,6,12,18,[[160,1,1,12,13],[162,1,1,13,14],[173,1,1,14,15],[174,3,3,15,18]]],[5,1,1,18,19,[[193,1,1,18,19]]],[6,1,1,19,20,[[218,1,1,19,20]]],[7,1,1,20,21,[[234,1,1,20,21]]],[8,1,1,21,22,[[256,1,1,21,22]]],[9,1,1,22,23,[[278,1,1,22,23]]],[19,1,1,23,24,[[657,1,1,23,24]]],[22,4,4,24,28,[[681,2,2,24,26],[682,1,1,26,27],[687,1,1,27,28]]]],[228,1013,1117,1209,1337,1380,1601,1850,1851,2036,2040,2140,5141,5204,5460,5473,5475,5487,5982,6744,7175,7781,8306,17255,17713,17714,17734,17834]]],["apparel",[2,2,[[9,1,1,0,1,[[278,1,1,0,1]]],[22,1,1,1,2,[[682,1,1,1,2]]]],[8306,17734]]],["cloth",[2,2,[[4,1,1,0,1,[[174,1,1,0,1]]],[8,1,1,1,2,[[256,1,1,1,2]]]],[5487,7781]]],["clothes",[6,6,[[0,2,2,0,2,[[36,1,1,0,1],[43,1,1,1,2]]],[1,3,3,2,5,[[61,1,1,2,3],[68,2,2,3,5]]],[5,1,1,5,6,[[193,1,1,5,6]]]],[1117,1337,1850,2036,2040,5982]]],["clothing",[2,2,[[22,2,2,0,2,[[681,2,2,0,2]]]],[17713,17714]]],["garment",[4,4,[[0,1,1,0,1,[[8,1,1,0,1]]],[4,1,1,1,2,[[174,1,1,1,2]]],[6,1,1,2,3,[[218,1,1,2,3]]],[19,1,1,3,4,[[657,1,1,3,4]]]],[228,5475,6744,17255]]],["garments",[2,2,[[0,1,1,0,1,[[34,1,1,0,1]]],[22,1,1,1,2,[[687,1,1,1,2]]]],[1013,17834]]],["raiment",[11,10,[[0,3,2,0,2,[[40,1,1,0,1],[44,2,1,1,2]]],[1,3,3,2,5,[[52,1,1,2,3],[61,1,1,3,4],[71,1,1,4,5]]],[4,4,4,5,9,[[160,1,1,5,6],[162,1,1,6,7],[173,1,1,7,8],[174,1,1,8,9]]],[7,1,1,9,10,[[234,1,1,9,10]]]],[1209,1380,1601,1851,2140,5141,5204,5460,5473,7175]]]]},{"k":"H8072","v":[["Samlah",[4,4,[[0,2,2,0,2,[[35,2,2,0,2]]],[12,2,2,2,4,[[338,2,2,2,4]]]],[1076,1077,10299,10300]]]]},{"k":"H8073","v":[["Shalmai",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12073]]]]},{"k":"H8074","v":[["*",[89,85,[[2,7,6,0,6,[[115,7,6,0,6]]],[3,1,1,6,7,[[137,1,1,6,7]]],[8,1,1,7,8,[[240,1,1,7,8]]],[9,1,1,8,9,[[279,1,1,8,9]]],[10,1,1,9,10,[[299,1,1,9,10]]],[13,2,2,10,12,[[373,1,1,10,11],[402,1,1,11,12]]],[14,2,2,12,14,[[411,2,2,12,14]]],[17,4,4,14,18,[[451,1,1,14,15],[452,1,1,15,16],[453,1,1,16,17],[456,1,1,17,18]]],[18,4,4,18,22,[[517,1,1,18,19],[546,1,1,19,20],[556,1,1,20,21],[620,1,1,21,22]]],[20,1,1,22,23,[[665,1,1,22,23]]],[22,10,9,23,32,[[711,1,1,23,24],[727,2,2,24,26],[730,1,1,26,27],[732,2,2,27,29],[737,1,1,29,30],[739,2,1,30,31],[741,1,1,31,32]]],[23,11,11,32,43,[[746,1,1,32,33],[748,1,1,33,34],[754,1,1,34,35],[756,1,1,35,36],[762,1,1,36,37],[763,1,1,37,38],[777,1,1,38,39],[793,2,2,39,41],[794,2,2,41,43]]],[24,6,6,43,49,[[797,3,3,43,46],[799,1,1,46,47],[800,1,1,47,48],[801,1,1,48,49]]],[25,24,22,49,71,[[804,1,1,49,50],[805,1,1,50,51],[807,1,1,51,52],[821,1,1,52,53],[826,1,1,53,54],[827,1,1,54,55],[828,1,1,55,56],[829,1,1,56,57],[830,1,1,57,58],[831,4,3,58,61],[833,2,2,61,63],[834,1,1,63,64],[836,2,2,64,66],[837,6,5,66,71]]],[26,7,7,71,78,[[857,2,2,71,73],[858,3,3,73,76],[860,1,1,76,77],[861,1,1,77,78]]],[27,1,1,78,79,[[863,1,1,78,79]]],[28,1,1,79,80,[[876,1,1,79,80]]],[29,2,2,80,82,[[885,1,1,80,81],[887,1,1,81,82]]],[32,1,1,82,83,[[898,1,1,82,83]]],[35,1,1,83,84,[[908,1,1,83,84]]],[37,1,1,84,85,[[917,1,1,84,85]]]],[3546,3555,3556,3558,3559,3567,4370,7325,8337,9059,11345,12014,12240,12241,13245,13268,13296,13360,14540,14960,15192,16297,17445,18287,18644,18655,18710,18724,18726,18816,18847,18871,18977,19036,19226,19260,19400,19415,19785,20144,20147,20179,20211,20314,20323,20326,20365,20425,20460,20517,20546,20567,20921,21086,21116,21156,21176,21195,21211,21216,21218,21258,21263,21308,21356,21359,21362,21363,21393,21394,21395,21974,21988,22006,22014,22015,22067,22092,22117,22308,22473,22509,22661,22826,22976]]],["+",[5,5,[[2,2,2,0,2,[[115,2,2,0,2]]],[25,3,3,2,5,[[831,2,2,2,4],[833,1,1,4,5]]]],[3555,3556,21216,21218,21258]]],["astonied",[6,6,[[14,2,2,0,2,[[411,2,2,0,2]]],[17,2,2,2,4,[[452,1,1,2,3],[453,1,1,3,4]]],[22,1,1,4,5,[[730,1,1,4,5]]],[25,1,1,5,6,[[805,1,1,5,6]]]],[12240,12241,13268,13296,18710,20546]]],["astonished",[14,14,[[2,1,1,0,1,[[115,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[17,1,1,2,3,[[456,1,1,2,3]]],[23,6,6,3,9,[[746,1,1,3,4],[748,1,1,4,5],[762,1,1,5,6],[763,1,1,6,7],[793,1,1,7,8],[794,1,1,8,9]]],[25,4,4,9,13,[[804,1,1,9,10],[827,1,1,10,11],[828,1,1,11,12],[829,1,1,12,13]]],[26,1,1,13,14,[[857,1,1,13,14]]]],[3556,9059,13360,18977,19036,19400,19415,20144,20179,20517,21116,21156,21176,21988]]],["astonishment",[1,1,[[13,1,1,0,1,[[373,1,1,0,1]]]],[11345]]],["desolate",[47,45,[[2,4,4,0,4,[[115,4,4,0,4]]],[9,1,1,4,5,[[279,1,1,4,5]]],[13,1,1,5,6,[[402,1,1,5,6]]],[17,1,1,6,7,[[451,1,1,6,7]]],[18,3,3,7,10,[[517,1,1,7,8],[546,1,1,8,9],[620,1,1,9,10]]],[22,3,3,10,13,[[727,1,1,10,11],[732,2,2,11,13]]],[23,5,5,13,18,[[754,1,1,13,14],[756,1,1,14,15],[777,1,1,15,16],[793,1,1,16,17],[794,1,1,17,18]]],[24,6,6,18,24,[[797,3,3,18,21],[799,1,1,21,22],[800,1,1,22,23],[801,1,1,23,24]]],[25,15,13,24,37,[[807,1,1,24,25],[821,1,1,25,26],[826,1,1,26,27],[830,1,1,27,28],[831,2,1,28,29],[834,1,1,29,30],[836,2,2,30,32],[837,6,5,32,37]]],[26,3,3,37,40,[[858,1,1,37,38],[860,1,1,38,39],[861,1,1,39,40]]],[28,1,1,40,41,[[876,1,1,40,41]]],[29,1,1,41,42,[[885,1,1,41,42]]],[32,1,1,42,43,[[898,1,1,42,43]]],[35,1,1,43,44,[[908,1,1,43,44]]],[37,1,1,44,45,[[917,1,1,44,45]]]],[3546,3558,3559,3567,8337,12014,13245,14540,14960,16297,18644,18724,18726,19226,19260,19785,20147,20211,20314,20323,20326,20365,20425,20460,20567,20921,21086,21195,21211,21308,21356,21359,21362,21363,21393,21394,21395,22015,22067,22092,22308,22473,22661,22826,22976]]],["desolation",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21974]]],["desolations",[4,3,[[22,2,1,0,1,[[739,2,1,0,1]]],[26,2,2,1,3,[[858,2,2,1,3]]]],[18847,22006,22014]]],["destitute",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21263]]],["destroy",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22117]]],["destroyed",[1,1,[[8,1,1,0,1,[[240,1,1,0,1]]]],[7325]]],["places",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18655]]],["thyself",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17445]]],["waste",[4,4,[[3,1,1,0,1,[[137,1,1,0,1]]],[18,1,1,1,2,[[556,1,1,1,2]]],[22,1,1,2,3,[[711,1,1,2,3]]],[29,1,1,3,4,[[887,1,1,3,4]]]],[4370,15192,18287,22509]]],["wondered",[2,2,[[22,2,2,0,2,[[737,1,1,0,1],[741,1,1,1,2]]]],[18816,18871]]]]},{"k":"H8075","v":[["astonied",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21856]]]]},{"k":"H8076","v":[["desolate",[3,3,[[23,1,1,0,1,[[756,1,1,0,1]]],[26,2,2,1,3,[[858,2,2,1,3]]]],[19260,22005,22015]]]]},{"k":"H8077","v":[["*",[57,53,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[5,1,1,2,3,[[194,1,1,2,3]]],[22,6,5,3,8,[[679,2,1,3,4],[684,1,1,4,5],[695,1,1,5,6],[740,1,1,6,7],[742,1,1,7,8]]],[23,15,15,8,23,[[748,1,1,8,9],[750,1,1,9,10],[753,1,1,10,11],[754,1,1,11,12],[756,2,2,12,14],[769,1,1,14,15],[776,1,1,15,16],[778,1,1,16,17],[788,1,1,17,18],[793,2,2,18,20],[794,1,1,20,21],[795,2,2,21,23]]],[25,22,20,23,43,[[807,1,1,23,24],[808,1,1,24,25],[813,1,1,25,26],[815,2,2,26,28],[816,1,1,28,29],[824,1,1,29,30],[830,4,3,30,33],[833,1,1,33,34],[834,2,2,34,36],[836,7,6,36,42],[837,1,1,42,43]]],[28,4,3,43,46,[[877,2,2,43,45],[878,2,1,45,46]]],[32,2,2,46,48,[[893,1,1,46,47],[899,1,1,47,48]]],[35,4,4,48,52,[[906,1,1,48,49],[907,3,3,49,52]]],[38,1,1,52,53,[[925,1,1,52,53]]]],[2173,3557,6030,17661,17780,17992,18858,18895,19054,19097,19186,19223,19259,19260,19546,19774,19823,20016,20129,20160,20179,20238,20274,20577,20604,20700,20746,20747,20762,21040,21192,21193,21195,21263,21308,21309,21347,21348,21351,21353,21358,21359,21393,22314,22331,22362,22586,22677,22800,22809,22814,22818,23092]]],["+",[5,4,[[25,5,4,0,4,[[834,2,2,0,2],[836,3,2,2,4]]]],[21308,21309,21347,21351]]],["Desolate",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18858]]],["desolate",[35,33,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[22,2,1,2,3,[[679,2,1,2,3]]],[23,12,12,3,15,[[748,1,1,3,4],[750,1,1,4,5],[753,1,1,5,6],[754,1,1,6,7],[756,2,2,7,9],[776,1,1,9,10],[788,1,1,10,11],[793,1,1,11,12],[794,1,1,12,13],[795,2,2,13,15]]],[25,14,13,15,28,[[807,1,1,15,16],[813,1,1,16,17],[815,2,2,17,19],[816,1,1,19,20],[830,4,3,20,23],[833,1,1,23,24],[836,3,3,24,27],[837,1,1,27,28]]],[28,3,3,28,31,[[877,2,2,28,30],[878,1,1,30,31]]],[32,2,2,31,33,[[893,1,1,31,32],[899,1,1,32,33]]]],[2173,3557,17661,19054,19097,19186,19223,19259,19260,19774,20016,20129,20179,20238,20274,20577,20700,20746,20747,20762,21192,21193,21195,21263,21348,21358,21359,21393,22314,22331,22362,22586,22677]]],["desolation",[12,12,[[5,1,1,0,1,[[194,1,1,0,1]]],[22,2,2,1,3,[[695,1,1,1,2],[742,1,1,2,3]]],[23,2,2,3,5,[[778,1,1,3,4],[793,1,1,4,5]]],[25,2,2,5,7,[[808,1,1,5,6],[824,1,1,6,7]]],[28,1,1,7,8,[[878,1,1,7,8]]],[35,4,4,8,12,[[906,1,1,8,9],[907,3,3,9,12]]]],[6030,17992,18895,19823,20160,20604,21040,22362,22800,22809,22814,22818]]],["desolations",[2,2,[[23,1,1,0,1,[[769,1,1,0,1]]],[25,1,1,1,2,[[836,1,1,1,2]]]],[19546,21353]]],["utterly",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17780]]],["waste",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23092]]]]},{"k":"H8078","v":[["astonishment",[2,2,[[25,2,2,0,2,[[805,1,1,0,1],[813,1,1,1,2]]]],[20545,20699]]]]},{"k":"H8079","v":[["spider",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17279]]]]},{"k":"H8080","v":[["fat",[4,3,[[4,2,1,0,1,[[184,2,1,0,1]]],[15,1,1,1,2,[[421,1,1,1,2]]],[23,1,1,2,3,[[749,1,1,2,3]]]],[5773,12536,19086]]]]},{"k":"H8081","v":[["*",[193,176,[[0,2,2,0,2,[[27,1,1,0,1],[34,1,1,1,2]]],[1,24,19,2,21,[[74,2,1,2,3],[76,1,1,3,4],[78,6,5,4,9],[79,4,3,9,12],[80,1,1,12,13],[84,6,4,13,17],[86,1,1,17,18],[88,2,2,18,20],[89,1,1,20,21]]],[2,42,36,21,57,[[91,9,8,21,29],[94,1,1,29,30],[95,2,2,30,32],[96,4,2,32,34],[97,5,5,34,39],[98,1,1,39,40],[99,1,1,40,41],[103,15,12,41,53],[110,2,2,53,55],[112,1,1,55,56],[113,1,1,56,57]]],[3,34,31,57,88,[[120,3,2,57,59],[121,1,1,59,60],[122,2,1,60,61],[123,12,12,61,73],[124,1,1,73,74],[127,1,1,74,75],[131,3,3,75,78],[144,7,6,78,84],[145,3,3,84,87],[151,1,1,87,88]]],[4,4,4,88,92,[[160,1,1,88,89],[180,1,1,89,90],[184,1,1,90,91],[185,1,1,91,92]]],[8,3,3,92,95,[[245,1,1,92,93],[251,2,2,93,95]]],[9,2,2,95,97,[[267,1,1,95,96],[280,1,1,96,97]]],[10,9,9,97,106,[[291,1,1,97,98],[295,1,1,98,99],[296,4,4,99,103],[307,3,3,103,106]]],[11,7,7,106,113,[[316,3,3,106,109],[321,3,3,109,112],[332,1,1,112,113]]],[12,3,3,113,116,[[346,1,1,113,114],[349,1,1,114,115],[364,1,1,115,116]]],[13,3,3,116,119,[[368,2,2,116,118],[377,1,1,118,119]]],[14,1,1,119,120,[[405,1,1,119,120]]],[15,1,1,120,121,[[420,1,1,120,121]]],[16,1,1,121,122,[[427,1,1,121,122]]],[17,1,1,122,123,[[464,1,1,122,123]]],[18,10,10,123,133,[[500,1,1,123,124],[522,1,1,124,125],[532,1,1,125,126],[566,1,1,126,127],[569,1,1,127,128],[581,1,1,128,129],[586,2,2,129,131],[610,1,1,131,132],[618,1,1,132,133]]],[19,5,5,133,138,[[632,1,1,133,134],[648,2,2,134,136],[654,2,2,136,138]]],[20,3,3,138,141,[[665,1,1,138,139],[667,1,1,139,140],[668,1,1,140,141]]],[21,3,2,141,143,[[671,2,1,141,142],[674,1,1,142,143]]],[22,11,10,143,153,[[679,1,1,143,144],[683,1,1,144,145],[688,1,1,145,146],[703,2,1,146,147],[706,2,2,147,149],[717,1,1,149,150],[719,1,1,150,151],[735,1,1,151,152],[739,1,1,152,153]]],[23,2,2,153,155,[[784,1,1,153,154],[785,1,1,154,155]]],[25,16,15,155,170,[[817,4,4,155,159],[824,1,1,159,160],[828,1,1,160,161],[833,1,1,161,162],[846,4,3,162,165],[847,5,5,165,170]]],[27,2,2,170,172,[[863,1,1,170,171],[873,1,1,171,172]]],[29,1,1,172,173,[[884,1,1,172,173]]],[32,2,2,173,175,[[898,2,2,173,175]]],[36,1,1,175,176,[[910,1,1,175,176]]]],[791,1025,2201,2292,2338,2343,2357,2359,2376,2406,2407,2413,2431,2539,2545,2546,2559,2633,2701,2702,2716,2763,2764,2766,2767,2768,2769,2777,2778,2841,2864,2870,2889,2891,2919,2927,2929,2943,2947,2957,2984,3121,3123,3126,3127,3128,3129,3132,3135,3137,3138,3139,3140,3355,3357,3415,3448,3752,3759,3807,3838,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3947,4032,4157,4159,4162,4582,4586,4589,4590,4597,4605,4611,4617,4622,4870,5145,5651,5771,5834,7419,7596,7608,8043,8358,8756,8889,8919,8927,8928,8929,9329,9331,9333,9605,9609,9610,9757,9759,9762,10111,10644,10760,11137,11221,11226,11425,12104,12508,12736,13538,14240,14604,14753,15346,15421,15586,15773,15779,16171,16281,16520,17001,17004,17178,17185,17430,17483,17494,17540,17592,17660,17740,17877,18124,18165,18168,18414,18470,18774,18846,19951,19965,20771,20775,20780,20781,21048,21138,21262,21644,21654,21655,21660,21662,21666,21669,21670,22110,22253,22456,22655,22663,22867]]],["+",[13,13,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,5,5,1,6,[[91,2,2,1,3],[95,1,1,3,4],[97,2,2,4,6]]],[15,1,1,6,7,[[420,1,1,6,7]]],[18,3,3,7,10,[[532,1,1,7,8],[581,1,1,8,9],[586,1,1,9,10]]],[19,1,1,10,11,[[632,1,1,10,11]]],[20,1,1,11,12,[[665,1,1,11,12]]],[22,1,1,12,13,[[683,1,1,12,13]]]],[2357,2764,2778,2864,2929,2947,12508,14753,15586,15779,16520,17430,17740]]],["Oil",[1,1,[[1,1,1,0,1,[[74,1,1,0,1]]]],[2201]]],["Ointment",[1,1,[[19,1,1,0,1,[[654,1,1,0,1]]]],[17178]]],["anointing",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17877]]],["fat",[2,2,[[22,2,2,0,2,[[706,2,2,0,2]]]],[18165,18168]]],["oil",[155,141,[[0,2,2,0,2,[[27,1,1,0,1],[34,1,1,1,2]]],[1,21,17,2,19,[[74,1,1,2,3],[76,1,1,3,4],[78,4,3,4,7],[79,4,3,7,10],[80,1,1,10,11],[84,6,4,11,15],[86,1,1,15,16],[88,2,2,16,18],[89,1,1,18,19]]],[2,36,30,19,49,[[91,7,6,19,25],[94,1,1,25,26],[95,1,1,26,27],[96,4,2,27,29],[97,2,2,29,31],[98,1,1,31,32],[99,1,1,32,33],[103,15,12,33,45],[110,2,2,45,47],[112,1,1,47,48],[113,1,1,48,49]]],[3,34,31,49,80,[[120,3,2,49,51],[121,1,1,51,52],[122,2,1,52,53],[123,12,12,53,65],[124,1,1,65,66],[127,1,1,66,67],[131,3,3,67,70],[144,7,6,70,76],[145,3,3,76,79],[151,1,1,79,80]]],[4,4,4,80,84,[[160,1,1,80,81],[180,1,1,81,82],[184,1,1,82,83],[185,1,1,83,84]]],[8,3,3,84,87,[[245,1,1,84,85],[251,2,2,85,87]]],[9,2,2,87,89,[[267,1,1,87,88],[280,1,1,88,89]]],[10,5,5,89,94,[[291,1,1,89,90],[295,1,1,90,91],[307,3,3,91,94]]],[11,6,6,94,100,[[316,3,3,94,97],[321,3,3,97,100]]],[12,3,3,100,103,[[346,1,1,100,101],[349,1,1,101,102],[364,1,1,102,103]]],[13,3,3,103,106,[[368,2,2,103,105],[377,1,1,105,106]]],[14,1,1,106,107,[[405,1,1,106,107]]],[16,1,1,107,108,[[427,1,1,107,108]]],[17,1,1,108,109,[[464,1,1,108,109]]],[18,6,6,109,115,[[500,1,1,109,110],[522,1,1,110,111],[566,1,1,111,112],[569,1,1,112,113],[586,1,1,113,114],[618,1,1,114,115]]],[19,2,2,115,117,[[648,2,2,115,117]]],[22,2,2,117,119,[[719,1,1,117,118],[739,1,1,118,119]]],[23,2,2,119,121,[[784,1,1,119,120],[785,1,1,120,121]]],[25,16,15,121,136,[[817,4,4,121,125],[824,1,1,125,126],[828,1,1,126,127],[833,1,1,127,128],[846,4,3,128,131],[847,5,5,131,136]]],[27,2,2,136,138,[[863,1,1,136,137],[873,1,1,137,138]]],[32,2,2,138,140,[[898,2,2,138,140]]],[36,1,1,140,141,[[910,1,1,140,141]]]],[791,1025,2201,2292,2338,2343,2376,2406,2407,2413,2431,2539,2545,2546,2559,2633,2701,2702,2716,2763,2766,2767,2768,2769,2777,2841,2870,2889,2891,2919,2927,2957,2984,3121,3123,3126,3127,3128,3129,3132,3135,3137,3138,3139,3140,3355,3357,3415,3448,3752,3759,3807,3838,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3947,4032,4157,4159,4162,4582,4586,4589,4590,4597,4605,4611,4617,4622,4870,5145,5651,5771,5834,7419,7596,7608,8043,8358,8756,8889,9329,9331,9333,9605,9609,9610,9757,9759,9762,10644,10760,11137,11221,11226,11425,12104,12736,13538,14240,14604,15346,15421,15773,16281,17001,17004,18470,18846,19951,19965,20771,20775,20780,20781,21048,21138,21262,21644,21654,21655,21660,21662,21666,21669,21670,22110,22253,22655,22663,22867]]],["oiled",[2,2,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]]],[2359,2943]]],["ointment",[9,9,[[11,1,1,0,1,[[332,1,1,0,1]]],[18,1,1,1,2,[[610,1,1,1,2]]],[19,1,1,2,3,[[654,1,1,2,3]]],[20,2,2,3,5,[[667,1,1,3,4],[668,1,1,4,5]]],[21,1,1,5,6,[[671,1,1,5,6]]],[22,3,3,6,9,[[679,1,1,6,7],[717,1,1,7,8],[735,1,1,8,9]]]],[10111,16171,17185,17483,17494,17540,17660,18414,18774]]],["ointments",[3,3,[[21,2,2,0,2,[[671,1,1,0,1],[674,1,1,1,2]]],[29,1,1,2,3,[[884,1,1,2,3]]]],[17540,17592,22456]]],["olive",[4,4,[[10,4,4,0,4,[[296,4,4,0,4]]]],[8919,8927,8928,8929]]],["things",[2,1,[[22,2,1,0,1,[[703,2,1,0,1]]]],[18124]]]]},{"k":"H8082","v":[["*",[11,11,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[129,1,1,1,2]]],[6,1,1,2,3,[[213,1,1,2,3]]],[12,1,1,3,4,[[341,1,1,3,4]]],[15,2,2,4,6,[[421,2,2,4,6]]],[22,2,2,6,8,[[684,1,1,6,7],[708,1,1,7,8]]],[25,2,2,8,10,[[835,2,2,8,10]]],[34,1,1,10,11,[[903,1,1,10,11]]]],[1493,4095,6597,10425,12536,12546,17779,18240,21327,21329,22747]]],["fat",[9,9,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[129,1,1,1,2]]],[12,1,1,2,3,[[341,1,1,2,3]]],[15,2,2,3,5,[[421,2,2,3,5]]],[22,1,1,5,6,[[684,1,1,5,6]]],[25,2,2,6,8,[[835,2,2,6,8]]],[34,1,1,8,9,[[903,1,1,8,9]]]],[1493,4095,10425,12536,12546,17779,21327,21329,22747]]],["lusty",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6597]]],["plenteous",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18240]]]]},{"k":"H8083","v":[["*",[109,105,[[0,11,11,0,11,[[4,7,7,0,7],[13,1,1,7,8],[16,1,1,8,9],[20,1,1,9,10],[21,1,1,10,11]]],[1,4,4,11,15,[[75,2,2,11,13],[85,2,2,13,15]]],[3,6,6,15,21,[[118,1,1,15,16],[119,1,1,16,17],[120,1,1,17,18],[123,1,1,18,19],[145,1,1,19,20],[151,1,1,20,21]]],[4,1,1,21,22,[[154,1,1,21,22]]],[5,1,1,22,23,[[207,1,1,22,23]]],[6,6,6,23,29,[[213,2,2,23,25],[220,1,1,25,26],[222,1,1,26,27],[230,2,2,27,29]]],[8,2,2,29,31,[[239,1,1,29,30],[252,1,1,30,31]]],[9,3,3,31,34,[[274,1,1,31,32],[289,1,1,32,33],[290,1,1,33,34]]],[10,4,4,34,38,[[297,2,2,34,36],[305,1,1,36,37],[306,1,1,37,38]]],[11,10,10,38,48,[[315,1,1,38,39],[320,1,1,39,40],[322,1,1,40,41],[327,1,1,41,42],[334,2,2,42,44],[335,1,1,44,45],[336,2,2,45,47],[337,1,1,47,48]]],[12,13,13,48,61,[[349,4,4,48,52],[353,1,1,52,53],[355,1,1,53,54],[360,1,1,54,55],[361,2,2,55,57],[362,2,2,57,59],[363,1,1,59,60],[366,1,1,60,61]]],[13,13,11,61,72,[[377,2,1,61,62],[379,2,2,62,64],[387,2,2,64,66],[395,2,1,66,67],[400,3,3,67,70],[401,1,1,70,71],[402,1,1,71,72]]],[14,7,7,72,79,[[404,4,4,72,76],[410,3,3,76,79]]],[15,15,14,79,93,[[419,11,10,79,89],[423,4,4,89,93]]],[20,1,1,93,94,[[669,1,1,93,94]]],[23,5,4,94,98,[[776,1,1,94,95],[785,1,1,95,96],[796,3,2,96,98]]],[25,6,6,98,104,[[841,5,5,98,103],[849,1,1,103,104]]],[32,1,1,104,105,[[897,1,1,104,105]]]],[109,112,115,118,121,122,124,350,409,517,570,2237,2260,2575,2596,3682,3720,3791,3858,4637,4852,4952,6422,6576,6582,6819,6883,7079,7098,7312,7630,8222,8661,8701,8944,8949,9250,9312,9577,9744,9829,9933,10146,10148,10188,10210,10214,10239,10744,10750,10751,10755,10858,10902,10986,11019,11030,11053,11071,11086,11171,11435,11454,11456,11629,11644,11808,11934,11936,11941,11985,12002,12033,12043,12050,12068,12210,12212,12219,12431,12433,12435,12436,12441,12442,12446,12447,12464,12465,12594,12596,12600,12602,17515,19732,19972,20297,20305,21486,21508,21511,21514,21518,21737,22638]]],["+",[30,30,[[0,1,1,0,1,[[13,1,1,0,1]]],[6,4,4,1,5,[[213,1,1,1,2],[220,1,1,2,3],[230,2,2,3,5]]],[9,1,1,5,6,[[274,1,1,5,6]]],[10,2,2,6,8,[[297,1,1,6,7],[305,1,1,7,8]]],[11,5,5,8,13,[[315,1,1,8,9],[334,1,1,9,10],[335,1,1,10,11],[336,1,1,11,12],[337,1,1,12,13]]],[12,6,6,13,19,[[349,1,1,13,14],[355,1,1,14,15],[361,1,1,15,16],[362,1,1,16,17],[363,1,1,17,18],[366,1,1,18,19]]],[13,4,4,19,23,[[377,1,1,19,20],[379,1,1,20,21],[400,1,1,21,22],[401,1,1,22,23]]],[14,2,2,23,25,[[410,2,2,23,25]]],[15,1,1,25,26,[[419,1,1,25,26]]],[23,3,3,26,29,[[776,1,1,26,27],[796,2,2,27,29]]],[25,1,1,29,30,[[849,1,1,29,30]]]],[350,6582,6819,7079,7098,8222,8949,9250,9577,10148,10188,10210,10239,10751,10902,11030,11071,11086,11171,11435,11454,11941,11985,12210,12219,12431,19732,20297,20305,21737]]],["eight",[74,74,[[0,10,10,0,10,[[4,7,7,0,7],[16,1,1,7,8],[20,1,1,8,9],[21,1,1,9,10]]],[1,4,4,10,14,[[75,2,2,10,12],[85,2,2,12,14]]],[3,6,6,14,20,[[118,1,1,14,15],[119,1,1,15,16],[120,1,1,16,17],[123,1,1,17,18],[145,1,1,18,19],[151,1,1,19,20]]],[4,1,1,20,21,[[154,1,1,20,21]]],[5,1,1,21,22,[[207,1,1,21,22]]],[6,2,2,22,24,[[213,1,1,22,23],[222,1,1,23,24]]],[8,2,2,24,26,[[239,1,1,24,25],[252,1,1,25,26]]],[9,2,2,26,28,[[289,1,1,26,27],[290,1,1,27,28]]],[10,1,1,28,29,[[297,1,1,28,29]]],[11,3,3,29,32,[[320,1,1,29,30],[322,1,1,30,31],[334,1,1,31,32]]],[12,7,7,32,39,[[349,3,3,32,35],[353,1,1,35,36],[360,1,1,36,37],[361,1,1,37,38],[362,1,1,38,39]]],[13,7,7,39,46,[[377,1,1,39,40],[379,1,1,40,41],[387,2,2,41,43],[395,1,1,43,44],[400,1,1,44,45],[402,1,1,45,46]]],[14,5,5,46,51,[[404,4,4,46,50],[410,1,1,50,51]]],[15,14,14,51,65,[[419,10,10,51,61],[423,4,4,61,65]]],[20,1,1,65,66,[[669,1,1,65,66]]],[23,2,2,66,68,[[785,1,1,66,67],[796,1,1,67,68]]],[25,5,5,68,73,[[841,5,5,68,73]]],[32,1,1,73,74,[[897,1,1,73,74]]]],[109,112,115,118,121,122,124,409,517,570,2237,2260,2575,2596,3682,3720,3791,3858,4637,4852,4952,6422,6576,6883,7312,7630,8661,8701,8944,9744,9829,10146,10744,10750,10755,10858,10986,11019,11053,11435,11456,11629,11644,11808,11934,12002,12033,12043,12050,12068,12212,12431,12433,12435,12436,12441,12442,12446,12447,12464,12465,12594,12596,12600,12602,17515,19972,20305,21486,21508,21511,21514,21518,22638]]],["eighth",[5,5,[[10,1,1,0,1,[[306,1,1,0,1]]],[11,2,2,1,3,[[327,1,1,1,2],[336,1,1,2,3]]],[13,2,2,3,5,[[395,1,1,3,4],[400,1,1,4,5]]]],[9312,9933,10214,11808,11936]]]]},{"k":"H8084","v":[["*",[38,37,[[0,5,5,0,5,[[4,3,3,0,3],[15,1,1,3,4],[34,1,1,4,5]]],[1,2,1,5,6,[[56,2,1,5,6]]],[3,2,2,6,8,[[118,1,1,6,7],[120,1,1,7,8]]],[5,1,1,8,9,[[200,1,1,8,9]]],[6,1,1,9,10,[[213,1,1,9,10]]],[8,1,1,10,11,[[257,1,1,10,11]]],[9,2,2,11,13,[[285,2,2,11,13]]],[10,3,3,13,16,[[295,1,1,13,14],[296,1,1,14,15],[302,1,1,15,16]]],[11,3,3,16,19,[[318,1,1,16,17],[322,1,1,17,18],[331,1,1,18,19]]],[12,3,3,19,22,[[344,1,1,19,20],[352,1,1,20,21],[362,1,1,21,22]]],[13,7,7,22,29,[[368,2,2,22,24],[377,1,1,24,25],[380,1,1,25,26],[383,2,2,26,28],[392,1,1,28,29]]],[14,1,1,29,30,[[410,1,1,29,30]]],[15,2,2,30,32,[[419,1,1,30,31],[423,1,1,31,32]]],[16,1,1,32,33,[[426,1,1,32,33]]],[18,1,1,33,34,[[567,1,1,33,34]]],[21,1,1,34,35,[[676,1,1,34,35]]],[22,1,1,35,36,[[715,1,1,35,36]]],[23,1,1,36,37,[[785,1,1,36,37]]]],[130,131,133,397,1039,1692,3667,3791,6197,6598,7805,8543,8546,8893,8897,9172,9699,9817,10096,10540,10800,11053,11213,11229,11415,11483,11538,11541,11749,12209,12446,12606,12706,15388,17622,18388,19962]]],["eightieth",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8897]]],["eighty",[3,3,[[0,3,3,0,3,[[4,3,3,0,3]]]],[130,131,133]]],["fourscore",[34,33,[[0,2,2,0,2,[[15,1,1,0,1],[34,1,1,1,2]]],[1,2,1,2,3,[[56,2,1,2,3]]],[3,2,2,3,5,[[118,1,1,3,4],[120,1,1,4,5]]],[5,1,1,5,6,[[200,1,1,5,6]]],[6,1,1,6,7,[[213,1,1,6,7]]],[8,1,1,7,8,[[257,1,1,7,8]]],[9,2,2,8,10,[[285,2,2,8,10]]],[10,2,2,10,12,[[295,1,1,10,11],[302,1,1,11,12]]],[11,3,3,12,15,[[318,1,1,12,13],[322,1,1,13,14],[331,1,1,14,15]]],[12,3,3,15,18,[[344,1,1,15,16],[352,1,1,16,17],[362,1,1,17,18]]],[13,7,7,18,25,[[368,2,2,18,20],[377,1,1,20,21],[380,1,1,21,22],[383,2,2,22,24],[392,1,1,24,25]]],[14,1,1,25,26,[[410,1,1,25,26]]],[15,2,2,26,28,[[419,1,1,26,27],[423,1,1,27,28]]],[16,1,1,28,29,[[426,1,1,28,29]]],[18,1,1,29,30,[[567,1,1,29,30]]],[21,1,1,30,31,[[676,1,1,30,31]]],[22,1,1,31,32,[[715,1,1,31,32]]],[23,1,1,32,33,[[785,1,1,32,33]]]],[397,1039,1692,3667,3791,6197,6598,7805,8543,8546,8893,9172,9699,9817,10096,10540,10800,11053,11213,11229,11415,11483,11538,11541,11749,12209,12446,12606,12706,15388,17622,18388,19962]]]]},{"k":"H8085","v":[["*",[1158,1072,[[0,61,58,0,58,[[2,3,3,0,3],[3,1,1,3,4],[10,1,1,4,5],[13,1,1,5,6],[15,2,2,6,8],[16,1,1,8,9],[17,1,1,9,10],[20,5,4,10,14],[21,1,1,14,15],[22,6,6,15,21],[23,2,2,21,23],[25,1,1,23,24],[26,6,6,24,30],[27,1,1,30,31],[28,2,2,31,33],[29,3,3,33,36],[30,1,1,36,37],[33,4,4,37,41],[34,1,1,41,42],[36,4,4,42,46],[38,3,3,46,49],[40,2,1,49,50],[41,4,4,50,54],[42,1,1,54,55],[44,2,2,55,57],[48,2,1,57,58]]],[1,49,44,58,102,[[51,2,2,58,60],[52,2,2,60,62],[53,4,4,62,66],[54,1,1,66,67],[55,5,4,67,71],[56,4,4,71,75],[57,2,2,75,77],[58,1,1,77,78],[60,1,1,78,79],[64,3,2,79,81],[65,5,5,81,86],[67,3,3,86,89],[68,3,2,89,91],[69,1,1,91,92],[71,3,2,92,94],[72,4,3,94,97],[73,1,1,97,98],[77,1,1,98,99],[81,2,2,99,101],[82,1,1,101,102]]],[2,7,7,102,109,[[94,1,1,102,103],[99,1,1,103,104],[113,1,1,104,105],[115,4,4,105,109]]],[3,32,31,109,140,[[123,1,1,109,110],[125,1,1,110,111],[127,2,2,111,113],[128,2,2,113,115],[130,5,5,115,120],[132,2,2,120,122],[136,2,2,122,124],[137,2,2,124,126],[138,1,1,126,127],[139,1,1,127,128],[140,2,2,128,130],[143,1,1,130,131],[146,9,8,131,139],[149,1,1,139,140]]],[4,91,82,140,222,[[153,6,5,140,145],[154,1,1,145,146],[155,1,1,146,147],[156,11,9,147,156],[157,9,7,156,163],[158,2,2,163,165],[159,1,1,165,166],[160,1,1,166,167],[161,4,4,167,171],[162,1,1,171,172],[163,4,3,172,175],[164,1,1,175,176],[165,6,6,176,182],[167,2,1,182,183],[169,3,3,183,186],[170,4,4,186,190],[171,1,1,190,191],[172,1,1,191,192],[173,4,3,192,195],[175,1,1,195,196],[178,3,3,196,199],[179,2,2,199,201],[180,8,7,201,208],[181,2,2,208,210],[182,7,7,210,217],[183,2,2,217,219],[184,1,1,219,220],[185,1,1,220,221],[186,1,1,221,222]]],[5,27,26,222,248,[[187,3,2,222,224],[188,2,2,224,226],[189,1,1,226,227],[191,2,2,227,229],[192,3,3,229,232],[193,1,1,232,233],[195,4,4,233,237],[196,2,2,237,239],[197,1,1,239,240],[200,1,1,240,241],[208,4,4,241,245],[210,3,3,245,248]]],[6,24,22,248,270,[[212,4,3,248,251],[213,1,1,251,252],[215,2,2,252,254],[216,1,1,254,255],[217,2,2,255,257],[219,4,3,257,260],[221,3,3,260,263],[223,2,2,263,265],[224,1,1,265,266],[228,1,1,266,267],[229,1,1,267,268],[230,2,2,268,270]]],[7,2,2,270,272,[[232,1,1,270,271],[233,1,1,271,272]]],[8,65,60,272,332,[[236,1,1,272,273],[237,4,4,273,277],[238,3,3,277,280],[239,3,3,280,283],[242,2,1,283,284],[243,5,5,284,289],[244,1,1,289,290],[246,1,1,290,291],[247,3,3,291,294],[248,3,2,294,296],[249,2,2,296,298],[250,8,7,298,305],[251,1,1,305,306],[252,4,4,306,310],[254,1,1,310,311],[257,4,4,311,315],[258,5,4,315,319],[259,1,1,319,320],[260,5,5,320,325],[261,1,1,325,326],[263,5,4,326,330],[265,1,1,330,331],[266,1,1,331,332]]],[9,33,28,332,360,[[269,1,1,332,333],[270,1,1,333,334],[271,3,2,334,336],[273,1,1,336,337],[274,1,1,337,338],[276,1,1,338,339],[277,1,1,339,340],[278,1,1,340,341],[279,3,3,341,344],[280,2,2,344,346],[281,4,4,346,350],[282,1,1,350,351],[283,3,2,351,353],[284,1,1,353,354],[285,2,2,354,356],[286,4,2,356,358],[288,3,2,358,360]]],[10,60,56,360,416,[[291,4,3,360,363],[292,1,1,363,364],[293,3,3,364,367],[294,2,1,367,368],[295,3,3,368,371],[296,1,1,371,372],[298,14,12,372,384],[299,1,1,384,385],[300,5,5,385,390],[301,2,2,390,392],[302,5,5,392,397],[303,2,2,397,399],[304,1,1,399,400],[305,3,3,400,403],[306,1,1,403,404],[307,1,1,404,405],[309,1,1,405,406],[310,5,5,406,411],[311,3,3,411,414],[312,2,2,414,416]]],[11,43,39,416,455,[[315,1,1,416,417],[317,1,1,417,418],[318,1,1,418,419],[319,2,2,419,421],[321,1,1,421,422],[322,1,1,422,423],[323,1,1,423,424],[325,1,1,424,425],[326,1,1,425,426],[328,1,1,426,427],[329,2,2,427,429],[330,6,5,429,434],[331,12,10,434,444],[332,4,4,444,448],[333,2,2,448,450],[334,5,4,450,454],[337,1,1,454,455]]],[12,14,13,455,468,[[347,1,1,455,456],[351,3,2,456,458],[352,3,3,458,461],[353,2,2,461,463],[354,1,1,463,464],[355,1,1,464,465],[356,1,1,465,466],[365,1,1,466,467],[366,1,1,467,468]]],[13,48,45,468,513,[[371,1,1,468,469],[372,12,10,469,479],[373,2,2,479,481],[375,5,5,481,486],[376,3,3,486,489],[377,1,1,489,490],[379,1,1,490,491],[381,2,2,491,493],[382,2,2,493,495],[384,2,2,495,497],[386,3,3,497,500],[389,1,1,500,501],[390,1,1,501,502],[391,2,2,502,504],[394,1,1,504,505],[395,1,1,505,506],[396,2,2,506,508],[399,1,1,508,509],[400,4,3,509,512],[401,1,1,512,513]]],[14,3,3,513,516,[[405,1,1,513,514],[406,1,1,514,515],[411,1,1,515,516]]],[15,28,27,516,543,[[413,2,2,516,518],[414,2,2,518,520],[416,5,5,520,525],[417,1,1,525,526],[418,4,4,526,530],[420,3,3,530,533],[421,7,6,533,539],[424,2,2,539,541],[425,2,2,541,543]]],[16,4,4,543,547,[[426,2,2,543,545],[427,1,1,545,546],[428,1,1,546,547]]],[17,40,37,547,584,[[437,1,1,547,548],[438,1,1,548,549],[439,1,1,549,550],[440,1,1,550,551],[448,4,3,551,554],[450,2,2,554,556],[451,1,1,556,557],[455,1,1,557,558],[456,2,1,558,559],[457,1,1,559,560],[461,1,1,560,561],[462,1,1,561,562],[463,1,1,562,563],[464,2,2,563,565],[466,1,1,565,566],[467,1,1,566,567],[468,4,4,567,571],[469,5,5,571,576],[470,1,1,576,577],[471,2,2,577,579],[472,3,2,579,581],[474,1,1,581,582],[477,2,2,582,584]]],[18,79,78,584,662,[[481,2,2,584,586],[482,1,1,586,587],[483,2,2,587,589],[487,1,1,589,590],[494,2,2,590,592],[495,2,2,592,594],[496,1,1,594,595],[499,1,1,595,596],[503,1,1,596,597],[504,1,1,597,598],[505,2,2,598,600],[507,1,1,600,601],[508,2,2,601,603],[511,4,4,603,607],[515,2,2,607,609],[516,1,1,609,610],[517,1,1,610,611],[521,1,1,611,612],[522,1,1,612,613],[525,1,1,613,614],[526,1,1,614,615],[527,1,1,615,616],[528,1,1,616,617],[531,1,1,617,618],[532,2,2,618,620],[535,1,1,620,621],[536,1,1,621,622],[538,2,2,622,624],[539,1,1,624,625],[541,1,1,625,626],[542,1,1,626,627],[543,4,4,627,631],[546,1,1,631,632],[553,1,1,632,633],[555,3,3,633,636],[558,5,4,636,640],[561,1,1,640,641],[562,1,1,641,642],[569,1,1,642,643],[571,1,1,643,644],[572,1,1,644,645],[574,1,1,645,646],[579,2,2,646,648],[580,1,1,648,649],[583,3,3,649,652],[592,1,1,652,653],[593,1,1,653,654],[596,1,1,654,655],[607,1,1,655,656],[609,1,1,656,657],[615,1,1,657,658],[618,1,1,658,659],[620,2,2,659,661],[622,1,1,661,662]]],[19,30,30,662,692,[[628,3,3,662,665],[631,2,2,665,667],[632,2,2,667,669],[634,1,1,669,670],[635,4,4,670,674],[639,1,1,674,675],[640,2,2,675,677],[642,3,3,677,680],[645,1,1,680,681],[646,2,2,681,683],[647,1,1,683,684],[648,1,1,684,685],[649,1,1,685,686],[650,2,2,686,688],[652,2,2,688,690],[655,1,1,690,691],[656,1,1,691,692]]],[20,8,7,692,699,[[659,1,1,692,693],[663,1,1,693,694],[665,3,2,694,696],[667,2,2,696,698],[670,1,1,698,699]]],[21,3,3,699,702,[[672,2,2,699,701],[678,1,1,701,702]]],[22,106,95,702,797,[[679,4,4,702,706],[684,4,3,706,709],[685,1,1,709,710],[693,1,1,710,711],[694,1,1,711,712],[696,1,1,712,713],[699,2,2,713,715],[702,1,1,715,716],[706,5,4,716,720],[707,1,1,720,721],[708,4,4,721,725],[710,2,2,725,727],[711,3,3,727,730],[712,2,1,730,731],[714,3,3,731,734],[715,12,9,734,743],[716,1,1,743,744],[717,2,2,744,746],[718,2,2,746,748],[719,3,2,748,750],[720,6,6,750,756],[721,3,2,756,758],[722,2,2,758,760],[723,1,1,760,761],[724,2,2,761,763],[725,1,1,763,764],[726,11,10,764,774],[727,1,1,774,775],[728,2,2,775,777],[729,3,3,777,780],[730,3,2,780,782],[733,3,2,782,784],[736,1,1,784,785],[737,2,2,785,787],[738,1,1,787,788],[740,1,1,788,789],[742,1,1,789,790],[743,3,3,790,793],[744,4,4,793,797]]],[23,184,168,797,965,[[746,1,1,797,798],[747,3,3,798,801],[748,6,6,801,807],[749,4,3,807,810],[750,5,5,810,815],[751,8,8,815,823],[752,2,2,823,825],[753,4,4,825,829],[754,1,1,829,830],[755,9,9,830,839],[756,1,1,839,840],[757,4,4,840,844],[758,1,1,844,845],[760,1,1,845,846],[761,6,4,846,850],[762,5,5,850,855],[763,3,2,855,857],[764,3,3,857,860],[765,1,1,860,861],[766,5,4,861,865],[767,5,4,865,869],[769,5,4,869,873],[770,11,9,873,882],[771,4,4,882,886],[772,2,2,886,888],[773,5,4,888,892],[774,1,1,892,893],[775,5,4,893,897],[776,2,2,897,899],[777,2,2,899,901],[778,5,4,901,905],[779,9,8,905,913],[780,7,7,913,920],[781,4,4,920,924],[782,6,6,924,930],[784,3,3,930,933],[785,1,1,933,934],[786,7,6,934,940],[787,2,2,940,942],[788,5,5,942,947],[790,3,2,947,949],[792,3,3,949,952],[793,5,5,952,957],[794,6,5,957,962],[795,3,3,962,965]]],[24,5,4,965,969,[[797,3,2,965,967],[799,2,2,967,969]]],[25,51,46,969,1015,[[802,2,2,969,971],[803,4,4,971,975],[804,10,7,975,982],[807,1,1,982,983],[809,1,1,983,984],[811,1,1,984,985],[813,2,1,985,986],[814,2,2,986,988],[817,1,1,988,989],[819,1,1,989,990],[820,2,2,990,992],[821,3,3,992,995],[826,1,1,995,996],[827,1,1,996,997],[828,1,1,997,998],[834,7,6,998,1004],[835,2,2,1004,1006],[836,2,2,1006,1008],[837,3,3,1008,1011],[838,1,1,1011,1012],[841,1,1,1012,1013],[844,1,1,1013,1014],[845,1,1,1014,1015]]],[26,15,14,1015,1029,[[850,1,1,1015,1016],[857,2,2,1016,1018],[858,7,7,1018,1025],[859,3,2,1025,1027],[861,2,2,1027,1029]]],[27,3,3,1029,1032,[[865,1,1,1029,1030],[866,1,1,1030,1031],[870,1,1,1031,1032]]],[28,1,1,1032,1033,[[876,1,1,1032,1033]]],[29,10,10,1033,1043,[[881,3,3,1033,1036],[882,2,2,1036,1038],[883,2,2,1038,1040],[885,1,1,1040,1041],[886,2,2,1041,1043]]],[30,1,1,1043,1044,[[888,1,1,1043,1044]]],[31,1,1,1044,1045,[[890,1,1,1044,1045]]],[32,9,8,1045,1053,[[893,1,1,1045,1046],[895,2,2,1046,1048],[897,1,1,1048,1049],[898,4,3,1049,1052],[899,1,1,1052,1053]]],[33,3,3,1053,1056,[[900,1,1,1053,1054],[901,1,1,1054,1055],[902,1,1,1055,1056]]],[34,3,3,1056,1059,[[903,1,1,1056,1057],[905,2,2,1057,1059]]],[35,2,2,1059,1061,[[907,1,1,1059,1060],[908,1,1,1060,1061]]],[36,1,1,1061,1062,[[909,1,1,1061,1062]]],[37,10,8,1062,1070,[[911,1,1,1062,1063],[913,1,1,1063,1064],[916,2,1,1064,1065],[917,4,3,1065,1068],[918,2,2,1068,1070]]],[38,2,2,1070,1072,[[926,1,1,1070,1071],[927,1,1,1071,1072]]]],[63,65,72,102,273,350,383,392,417,434,519,525,530,539,565,577,579,582,584,586,587,621,643,697,732,733,735,740,761,770,780,808,828,836,847,852,874,985,987,997,1004,1033,1089,1100,1104,1110,1159,1164,1168,1210,1254,1273,1274,1275,1315,1360,1374,1475,1569,1578,1586,1597,1602,1609,1610,1632,1634,1660,1664,1667,1685,1689,1698,1701,1707,1725,1729,1754,1815,1934,1946,1954,1955,1956,1959,1967,2000,2018,2023,2031,2035,2070,2136,2140,2157,2165,2166,2184,2328,2455,2456,2477,2831,2997,3460,3538,3542,3545,3551,3939,3973,4025,4034,4061,4065,4121,4122,4123,4130,4135,4198,4202,4321,4327,4341,4343,4411,4434,4450,4462,4574,4652,4653,4655,4656,4659,4660,4662,4663,4800,4908,4909,4926,4935,4937,4963,5001,5005,5010,5014,5016,5032,5034,5036,5037,5040,5054,5076,5077,5078,5079,5080,5081,5089,5090,5123,5157,5158,5159,5176,5180,5196,5221,5235,5236,5268,5275,5276,5280,5283,5284,5290,5324,5368,5376,5377,5398,5399,5400,5403,5426,5430,5465,5467,5468,5505,5573,5580,5583,5594,5595,5612,5613,5624,5626,5656,5660,5673,5683,5698,5710,5716,5718,5720,5721,5725,5728,5740,5741,5759,5817,5848,5868,5869,5879,5880,5902,5935,5940,5954,5959,5969,5985,6038,6040,6046,6053,6065,6078,6108,6199,6428,6437,6438,6456,6486,6500,6503,6547,6562,6565,6572,6626,6639,6664,6705,6709,6761,6784,6800,6839,6846,6857,6893,6907,6922,7018,7049,7057,7067,7133,7157,7225,7262,7263,7264,7265,7285,7286,7287,7303,7311,7316,7359,7376,7378,7388,7390,7391,7418,7451,7461,7474,7475,7488,7489,7530,7535,7561,7564,7574,7579,7580,7582,7584,7597,7629,7641,7646,7649,7712,7788,7793,7794,7799,7818,7820,7821,7835,7848,7865,7868,7885,7896,7900,7924,7960,7963,7964,7965,8002,8020,8109,8121,8149,8156,8202,8218,8247,8285,8304,8331,8333,8338,8372,8373,8392,8399,8424,8425,8447,8454,8458,8483,8513,8546,8570,8571,8609,8647,8728,8758,8762,8812,8825,8827,8844,8878,8879,8885,8886,8903,9013,9014,9015,9017,9019,9021,9024,9027,9028,9030,9034,9037,9054,9080,9085,9086,9087,9103,9129,9146,9153,9166,9167,9171,9175,9188,9210,9224,9269,9270,9271,9299,9339,9400,9416,9420,9433,9439,9444,9466,9467,9478,9499,9508,9597,9655,9704,9708,9713,9786,9799,9842,9875,9907,9972,9997,10023,10036,10050,10052,10055,10056,10062,10065,10067,10068,10069,10070,10072,10077,10081,10086,10103,10110,10111,10114,10128,10131,10156,10158,10163,10164,10245,10670,10782,10789,10807,10810,10819,10825,10862,10883,10899,10915,11145,11187,11281,11301,11302,11303,11305,11307,11309,11312,11315,11317,11321,11336,11338,11365,11369,11370,11371,11387,11397,11410,11411,11418,11457,11492,11498,11513,11514,11560,11569,11596,11607,11616,11668,11694,11720,11724,11775,11796,11847,11854,11921,11952,11959,11960,11988,12110,12111,12240,12300,12302,12317,12326,12360,12363,12366,12374,12379,12388,12402,12407,12408,12417,12495,12502,12508,12520,12527,12528,12538,12539,12540,12666,12667,12674,12698,12720,12722,12732,12751,12902,12922,12946,12978,13154,13159,13170,13211,13220,13240,13329,13357,13416,13481,13490,13526,13543,13553,13623,13638,13651,13658,13681,13683,13685,13693,13699,13711,13717,13733,13747,13748,13771,13773,13841,13926,13927,13966,13968,13976,13993,13994,14058,14104,14109,14124,14162,14171,14228,14280,14292,14301,14305,14329,14344,14353,14390,14394,14399,14405,14503,14504,14524,14526,14572,14607,14642,14649,14675,14699,14727,14749,14751,14784,14797,14820,14824,14838,14851,14862,14881,14889,14891,14892,14968,15089,15116,15134,15172,15222,15225,15228,15230,15267,15279,15422,15440,15461,15486,15522,15541,15569,15653,15676,15695,15836,15849,16047,16142,16157,16235,16282,16294,16301,16339,16405,16408,16433,16491,16500,16524,16530,16599,16608,16634,16635,16636,16734,16748,16755,16836,16838,16839,16914,16945,16952,16966,17012,17032,17063,17066,17123,17125,17205,17248,17323,17398,17434,17450,17491,17492,17536,17566,17568,17653,17656,17664,17669,17673,17777,17778,17779,17795,17964,17975,18000,18038,18045,18111,18176,18178,18186,18187,18211,18226,18236,18238,18247,18262,18268,18292,18294,18298,18304,18341,18343,18346,18353,18356,18358,18359,18360,18361,18363,18369,18378,18395,18413,18417,18441,18448,18473,18477,18482,18489,18498,18500,18503,18504,18514,18517,18534,18541,18582,18589,18598,18607,18615,18617,18619,18620,18621,18622,18626,18628,18630,18634,18637,18666,18672,18674,18680,18694,18703,18711,18742,18743,18790,18801,18802,18839,18865,18889,18909,18916,18921,18926,18927,18930,18941,18969,19015,19023,19027,19032,19042,19043,19046,19048,19058,19073,19078,19079,19096,19099,19107,19108,19113,19121,19132,19135,19142,19143,19145,19146,19147,19159,19169,19185,19188,19194,19195,19202,19228,19229,19230,19232,19233,19234,19236,19237,19240,19266,19276,19277,19281,19283,19305,19348,19377,19380,19381,19384,19386,19394,19397,19403,19406,19410,19422,19423,19432,19438,19451,19456,19459,19475,19483,19500,19502,19506,19509,19537,19538,19541,19542,19575,19576,19577,19579,19582,19583,19584,19585,19593,19605,19610,19612,19613,19625,19633,19643,19647,19654,19655,19672,19698,19701,19706,19709,19754,19764,19784,19785,19805,19811,19815,19818,19831,19833,19836,19837,19838,19839,19840,19841,19845,19853,19855,19858,19866,19867,19873,19876,19879,19888,19894,19896,19902,19910,19915,19920,19922,19944,19948,19952,19968,19979,19981,19988,19989,19990,19996,20001,20004,20015,20026,20033,20034,20036,20057,20059,20084,20085,20109,20129,20141,20147,20148,20150,20168,20195,20209,20211,20212,20239,20258,20263,20328,20331,20410,20415,20488,20492,20494,20497,20499,20500,20508,20509,20512,20513,20514,20519,20529,20566,20622,20638,20682,20710,20727,20797,20874,20885,20890,20903,20934,20942,21086,21113,21151,21284,21285,21287,21310,21311,21312,21320,21322,21356,21357,21360,21363,21374,21401,21481,21578,21604,21751,21974,21977,21994,21998,21999,22002,22005,22006,22007,22024,22027,22088,22089,22134,22153,22225,22293,22396,22404,22408,22411,22415,22424,22446,22480,22485,22492,22511,22550,22581,22609,22617,22648,22649,22650,22657,22671,22699,22712,22731,22733,22770,22784,22813,22822,22852,22882,22920,22962,22973,22974,22975,22985,22999,23105,23136]]],["+",[201,180,[[0,13,12,0,12,[[2,2,2,0,2],[15,1,1,2,3],[20,2,1,3,4],[23,2,2,4,6],[26,2,2,6,8],[27,1,1,8,9],[28,1,1,9,10],[30,1,1,10,11],[38,1,1,11,12]]],[1,17,13,12,25,[[51,1,1,12,13],[55,1,1,13,14],[64,2,1,14,15],[65,4,4,15,19],[67,1,1,19,20],[68,2,1,20,21],[71,2,1,21,22],[72,2,1,22,23],[81,1,1,23,24],[82,1,1,24,25]]],[3,5,5,25,30,[[123,1,1,25,26],[127,1,1,26,27],[130,2,2,27,29],[146,1,1,29,30]]],[4,22,18,30,48,[[153,1,1,30,31],[155,1,1,31,32],[156,3,3,32,35],[157,5,4,35,39],[159,1,1,39,40],[163,4,3,40,43],[164,1,1,43,44],[167,2,1,44,45],[178,1,1,45,46],[180,2,1,46,47],[181,1,1,47,48]]],[5,9,9,48,57,[[187,1,1,48,49],[188,1,1,49,50],[189,1,1,50,51],[191,1,1,51,52],[192,2,2,52,54],[195,1,1,54,55],[208,1,1,55,56],[210,1,1,56,57]]],[6,2,2,57,59,[[217,1,1,57,58],[219,1,1,58,59]]],[8,14,13,59,72,[[237,1,1,59,60],[239,3,3,60,63],[243,1,1,63,64],[246,1,1,64,65],[250,1,1,65,66],[252,1,1,66,67],[258,3,2,67,69],[260,1,1,69,70],[261,1,1,70,71],[266,1,1,71,72]]],[9,5,4,72,76,[[271,1,1,72,73],[281,1,1,73,74],[283,2,1,74,75],[288,1,1,75,76]]],[10,14,13,76,89,[[291,1,1,76,77],[294,2,1,77,78],[295,2,2,78,80],[298,1,1,80,81],[299,1,1,81,82],[300,2,2,82,84],[301,1,1,84,85],[303,1,1,85,86],[304,1,1,86,87],[310,1,1,87,88],[311,1,1,88,89]]],[11,7,7,89,96,[[318,1,1,89,90],[323,1,1,90,91],[331,3,3,91,94],[332,1,1,94,95],[334,1,1,95,96]]],[12,3,3,96,99,[[347,1,1,96,97],[351,1,1,97,98],[366,1,1,98,99]]],[13,8,8,99,107,[[373,1,1,99,100],[375,3,3,100,103],[377,1,1,103,104],[389,1,1,104,105],[400,2,2,105,107]]],[14,1,1,107,108,[[411,1,1,107,108]]],[15,6,6,108,114,[[413,2,2,108,110],[416,1,1,110,111],[417,1,1,111,112],[420,1,1,112,113],[425,1,1,113,114]]],[16,1,1,114,115,[[426,1,1,114,115]]],[17,7,4,115,119,[[437,1,1,115,116],[448,2,1,116,117],[456,2,1,117,118],[472,2,1,118,119]]],[18,3,3,119,122,[[546,1,1,119,120],[583,1,1,120,121],[593,1,1,121,122]]],[19,1,1,122,123,[[655,1,1,122,123]]],[20,2,2,123,125,[[659,1,1,123,124],[665,1,1,124,125]]],[21,1,1,125,126,[[672,1,1,125,126]]],[22,14,12,126,138,[[684,3,2,126,128],[699,1,1,128,129],[711,2,2,129,131],[715,2,2,131,133],[716,1,1,133,134],[733,2,1,134,135],[737,2,2,135,137],[744,1,1,137,138]]],[23,27,25,138,163,[[750,1,1,138,139],[755,1,1,139,140],[757,1,1,140,141],[758,1,1,141,142],[761,2,1,142,143],[762,1,1,143,144],[763,1,1,144,145],[766,1,1,145,146],[767,2,2,146,148],[769,1,1,148,149],[770,3,3,149,152],[775,2,1,152,153],[777,1,1,153,154],[779,2,2,154,156],[780,4,4,156,160],[781,1,1,160,161],[782,1,1,161,162],[794,1,1,162,163]]],[25,10,9,163,172,[[802,1,1,163,164],[803,2,2,164,166],[834,5,4,166,170],[835,1,1,170,171],[836,1,1,171,172]]],[26,3,3,172,175,[[858,1,1,172,173],[859,1,1,173,174],[861,1,1,174,175]]],[29,2,2,175,177,[[881,1,1,175,176],[886,1,1,176,177]]],[37,4,3,177,180,[[916,2,1,177,178],[917,2,2,178,180]]]],[63,65,392,530,621,643,733,761,780,808,874,1168,1578,1660,1946,1954,1955,1956,1959,2000,2031,2136,2166,2455,2477,3939,4034,4123,4135,4652,4926,5001,5010,5014,5040,5076,5078,5080,5081,5123,5221,5235,5236,5268,5324,5573,5612,5698,5869,5879,5902,5935,5954,5969,6040,6456,6503,6709,6784,7262,7303,7311,7316,7390,7451,7564,7629,7818,7820,7885,7924,8020,8156,8399,8458,8647,8758,8878,8885,8886,9027,9054,9087,9103,9146,9188,9224,9420,9478,9704,9842,10065,10072,10077,10103,10156,10670,10789,11187,11336,11365,11371,11387,11418,11668,11952,11960,12240,12300,12302,12379,12388,12502,12674,12720,12902,13170,13357,13771,14968,15695,15849,17205,17323,17450,17568,17777,17778,18038,18294,18298,18356,18369,18395,18742,18801,18802,18941,19113,19236,19276,19305,19381,19386,19422,19459,19502,19509,19542,19579,19582,19593,19709,19784,19837,19841,19845,19858,19866,19867,19879,19896,20209,20488,20494,20500,21284,21285,21311,21312,21320,21356,22005,22024,22088,22396,22492,22962,22973,22974]]],["Hear",[95,95,[[0,3,3,0,3,[[3,1,1,0,1],[22,1,1,1,2],[36,1,1,2,3]]],[3,3,3,3,6,[[128,1,1,3,4],[132,1,1,4,5],[136,1,1,5,6]]],[4,7,7,6,13,[[153,1,1,6,7],[157,1,1,7,8],[158,2,2,8,10],[161,1,1,10,11],[172,1,1,11,12],[185,1,1,12,13]]],[6,1,1,13,14,[[215,1,1,13,14]]],[8,2,2,14,16,[[257,2,2,14,16]]],[9,2,2,16,18,[[286,2,2,16,18]]],[10,2,2,18,20,[[298,1,1,18,19],[312,1,1,19,20]]],[11,3,3,20,23,[[319,1,1,20,21],[330,1,1,21,22],[332,1,1,22,23]]],[12,1,1,23,24,[[365,1,1,23,24]]],[13,4,4,24,28,[[379,1,1,24,25],[381,1,1,25,26],[386,1,1,26,27],[395,1,1,27,28]]],[15,1,1,28,29,[[416,1,1,28,29]]],[17,3,3,29,32,[[448,1,1,29,30],[469,1,1,30,31],[477,1,1,31,32]]],[18,14,14,32,46,[[494,1,1,32,33],[504,1,1,33,34],[505,1,1,34,35],[507,1,1,35,36],[516,1,1,36,37],[526,1,1,37,38],[527,1,1,38,39],[531,1,1,39,40],[538,1,1,40,41],[541,1,1,41,42],[558,1,1,42,43],[579,1,1,43,44],[596,1,1,44,45],[620,1,1,45,46]]],[19,7,7,46,53,[[631,2,2,46,48],[632,1,1,48,49],[635,2,2,49,51],[646,1,1,51,52],[650,1,1,52,53]]],[22,9,9,53,62,[[679,2,2,53,55],[685,1,1,55,56],[711,1,1,56,57],[714,1,1,57,58],[717,1,1,58,59],[720,1,1,59,60],[726,1,1,60,61],[744,1,1,61,62]]],[23,16,16,62,78,[[746,1,1,62,63],[749,1,1,63,64],[750,1,1,64,65],[751,1,1,65,66],[754,1,1,66,67],[755,2,2,67,69],[757,1,1,69,70],[761,1,1,70,71],[763,1,1,71,72],[765,1,1,72,73],[766,1,1,73,74],[772,1,1,74,75],[773,1,1,75,76],[775,1,1,76,77],[788,1,1,77,78]]],[25,4,4,78,82,[[814,1,1,78,79],[819,1,1,79,80],[821,1,1,80,81],[826,1,1,81,82]]],[27,2,2,82,84,[[865,1,1,82,83],[866,1,1,83,84]]],[28,1,1,84,85,[[876,1,1,84,85]]],[29,4,4,85,89,[[881,1,1,85,86],[882,1,1,86,87],[883,1,1,87,88],[886,1,1,88,89]]],[32,5,5,89,94,[[893,1,1,89,90],[895,2,2,90,92],[898,2,2,92,94]]],[37,1,1,94,95,[[913,1,1,94,95]]]],[102,577,1089,4065,4202,4321,4908,5054,5089,5090,5158,5430,5817,6626,7794,7799,8570,8571,9028,9499,9708,10052,10114,11145,11457,11492,11607,11796,12363,13159,13685,13926,14104,14292,14301,14329,14524,14649,14675,14727,14820,14851,15225,15522,16047,16294,16491,16500,16524,16608,16635,16945,17063,17656,17664,17795,18292,18343,18417,18498,18615,18927,18969,19079,19108,19121,19202,19228,19232,19281,19377,19410,19451,19456,19633,19655,19701,20034,20710,20874,20942,21086,22134,22153,22293,22408,22411,22424,22485,22581,22609,22617,22649,22650,22920]]],["Hearest",[1,1,[[7,1,1,0,1,[[233,1,1,0,1]]]],[7157]]],["Hearken",[22,22,[[1,1,1,0,1,[[67,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[8,2,2,2,4,[[243,2,2,2,4]]],[10,2,2,4,6,[[310,1,1,4,5],[312,1,1,5,6]]],[11,1,1,6,7,[[330,1,1,6,7]]],[13,2,2,7,9,[[372,1,1,7,8],[384,1,1,8,9]]],[17,1,1,9,10,[[467,1,1,9,10]]],[18,1,1,10,11,[[522,1,1,10,11]]],[19,2,2,11,13,[[634,1,1,11,12],[650,1,1,12,13]]],[22,6,6,13,19,[[714,1,1,13,14],[724,2,2,14,16],[726,1,1,16,17],[729,2,2,17,19]]],[23,3,3,19,22,[[767,1,1,19,20],[771,2,2,20,22]]]],[2018,6761,7376,7391,9416,9508,10055,11303,11569,13638,14607,16599,17066,18346,18589,18598,18626,18674,18680,19500,19612,19613]]],["Listen",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18637]]],["Obey",[4,4,[[23,4,4,0,4,[[751,1,1,0,1],[755,2,2,1,3],[782,1,1,3,4]]]],[19142,19230,19233,19915]]],["Publish",[1,1,[[29,1,1,0,1,[[881,1,1,0,1]]]],[22404]]],["consented",[1,1,[[26,1,1,0,1,[[850,1,1,0,1]]]],[21751]]],["content",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1110]]],["declare",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18473]]],["declared",[1,1,[[22,1,1,0,1,[[723,1,1,0,1]]]],[18582]]],["declareth",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18477]]],["discern",[2,2,[[9,1,1,0,1,[[280,1,1,0,1]]],[10,1,1,1,2,[[293,1,1,1,2]]]],[8373,8827]]],["ear",[1,1,[[17,1,1,0,1,[[464,1,1,0,1]]]],[13553]]],["forth",[1,1,[[18,1,1,0,1,[[583,1,1,0,1]]]],[15653]]],["hear",[217,211,[[0,7,7,0,7,[[20,1,1,0,1],[22,3,3,1,4],[41,2,2,4,6],[48,1,1,6,7]]],[1,7,7,7,14,[[55,1,1,7,8],[56,1,1,8,9],[64,1,1,9,10],[68,1,1,10,11],[69,1,1,11,12],[71,1,1,12,13],[81,1,1,13,14]]],[2,1,1,14,15,[[94,1,1,14,15]]],[3,3,3,15,18,[[125,1,1,15,16],[130,1,1,16,17],[139,1,1,17,18]]],[4,20,19,18,37,[[153,3,2,18,20],[154,1,1,20,21],[156,2,2,21,23],[157,1,1,23,24],[165,2,2,24,26],[169,1,1,26,27],[170,1,1,27,28],[171,1,1,28,29],[173,1,1,29,30],[181,1,1,30,31],[182,3,3,31,34],[183,2,2,34,36],[184,1,1,36,37]]],[5,1,1,37,38,[[193,1,1,37,38]]],[6,3,3,38,41,[[215,1,1,38,39],[217,1,1,39,40],[224,1,1,40,41]]],[8,5,5,41,46,[[237,2,2,41,43],[248,1,1,43,44],[250,1,1,44,45],[251,1,1,45,46]]],[9,10,10,46,56,[[280,1,1,46,47],[281,3,3,47,50],[282,1,1,50,51],[283,1,1,51,52],[285,1,1,52,53],[286,2,2,53,55],[288,1,1,55,56]]],[10,7,7,56,63,[[298,7,7,56,63]]],[11,6,6,63,69,[[319,1,1,63,64],[326,1,1,64,65],[329,1,1,65,66],[330,1,1,66,67],[331,2,2,67,69]]],[13,13,13,69,82,[[372,8,8,69,77],[373,1,1,77,78],[384,1,1,78,79],[386,1,1,79,80],[391,1,1,80,81],[394,1,1,81,82]]],[15,2,2,82,84,[[420,1,1,82,83],[421,1,1,83,84]]],[17,9,9,84,93,[[438,1,1,84,85],[440,1,1,85,86],[450,1,1,86,87],[457,1,1,87,88],[462,1,1,88,89],[466,1,1,89,90],[468,1,1,90,91],[469,1,1,91,92],[470,1,1,92,93]]],[18,23,23,93,116,[[481,2,2,93,95],[482,1,1,95,96],[494,1,1,96,97],[511,1,1,97,98],[528,1,1,98,99],[532,2,2,99,101],[536,1,1,101,102],[543,2,2,102,104],[561,1,1,104,105],[562,1,1,105,106],[569,1,1,106,107],[571,1,1,107,108],[572,1,1,108,109],[579,1,1,109,110],[592,1,1,110,111],[607,1,1,111,112],[615,1,1,112,113],[618,1,1,113,114],[620,1,1,114,115],[622,1,1,115,116]]],[19,4,4,116,120,[[628,2,2,116,118],[646,1,1,118,119],[649,1,1,119,120]]],[20,4,3,120,123,[[663,1,1,120,121],[665,2,1,121,122],[670,1,1,122,123]]],[21,1,1,123,124,[[678,1,1,123,124]]],[22,29,27,124,151,[[679,1,1,124,125],[684,1,1,125,126],[696,1,1,126,127],[706,4,3,127,130],[707,1,1,130,131],[708,3,3,131,134],[710,2,2,134,136],[712,2,1,136,137],[715,2,2,137,139],[720,1,1,139,140],[721,1,1,140,141],[722,1,1,141,142],[725,1,1,142,143],[726,2,2,143,145],[728,1,1,145,146],[729,1,1,146,147],[733,1,1,147,148],[743,2,2,148,150],[744,1,1,150,151]]],[23,26,26,151,177,[[748,1,1,151,152],[749,1,1,152,153],[750,2,2,153,155],[751,1,1,155,156],[753,2,2,156,158],[755,1,1,158,159],[757,2,2,159,161],[761,1,1,161,162],[764,1,1,162,163],[766,2,2,163,165],[767,1,1,165,166],[769,1,1,166,167],[772,1,1,167,168],[773,1,1,168,169],[778,1,1,169,170],[781,1,1,170,171],[782,1,1,171,172],[786,2,2,172,174],[788,1,1,174,175],[793,1,1,175,176],[794,1,1,176,177]]],[24,1,1,177,178,[[797,1,1,177,178]]],[25,21,20,178,198,[[803,2,2,178,180],[804,4,4,180,184],[807,1,1,184,185],[809,1,1,185,186],[813,2,1,186,187],[814,1,1,187,188],[817,1,1,188,189],[834,2,2,189,191],[835,1,1,191,192],[837,3,3,192,195],[838,1,1,195,196],[841,1,1,196,197],[845,1,1,197,198]]],[26,2,2,198,200,[[858,2,2,198,200]]],[29,2,2,200,202,[[883,1,1,200,201],[885,1,1,201,202]]],[32,3,3,202,205,[[898,2,2,202,204],[899,1,1,204,205]]],[33,1,1,205,206,[[902,1,1,205,206]]],[34,1,1,206,207,[[903,1,1,206,207]]],[37,4,3,207,210,[[911,1,1,207,208],[917,2,1,208,209],[918,1,1,209,210]]],[38,1,1,210,211,[[926,1,1,210,211]]]],[519,579,582,584,1273,1274,1475,1667,1701,1934,2035,2070,2140,2456,2831,3973,4121,4434,4909,4935,4963,5032,5037,5080,5283,5284,5377,5400,5426,5468,5683,5720,5721,5725,5740,5741,5759,5985,6639,6705,6922,7263,7264,7488,7574,7597,8372,8392,8424,8425,8447,8454,8546,8570,8571,8609,9015,9017,9019,9021,9024,9030,9034,9713,9907,9997,10036,10068,10077,11303,11305,11307,11309,11312,11315,11317,11321,11338,11560,11596,11724,11775,12495,12540,12922,12978,13220,13416,13490,13623,13651,13699,13733,13966,13968,13976,14109,14390,14699,14749,14751,14797,14889,14891,15267,15279,15422,15440,15461,15541,15836,16142,16235,16282,16301,16339,16405,16408,16952,17032,17398,17434,17536,17653,17669,17779,18000,18176,18178,18187,18211,18226,18236,18238,18262,18268,18304,18359,18369,18503,18514,18534,18607,18628,18630,18666,18694,18743,18909,18921,18926,19048,19079,19099,19107,19135,19185,19195,19240,19277,19283,19380,19438,19475,19483,19506,19538,19625,19654,19805,19894,19920,19989,19990,20036,20147,20211,20328,20497,20499,20512,20513,20519,20529,20566,20622,20682,20727,20797,21287,21310,21322,21360,21363,21374,21401,21481,21604,22006,22007,22446,22480,22649,22657,22671,22731,22733,22882,22975,22985,23105]]],["heard",[278,272,[[0,18,18,0,18,[[13,1,1,0,1],[16,1,1,1,2],[17,1,1,2,3],[20,1,1,3,4],[26,1,1,4,5],[28,1,1,5,6],[29,1,1,6,7],[33,2,2,7,9],[34,1,1,9,10],[36,2,2,10,12],[38,1,1,12,13],[40,1,1,13,14],[41,1,1,14,15],[42,1,1,15,16],[44,2,2,16,18]]],[1,5,5,18,23,[[51,1,1,18,19],[52,1,1,19,20],[53,1,1,20,21],[72,1,1,21,22],[77,1,1,22,23]]],[2,2,2,23,25,[[99,1,1,23,24],[113,1,1,24,25]]],[3,16,15,25,40,[[127,1,1,25,26],[128,1,1,26,27],[130,1,1,27,28],[132,1,1,28,29],[136,1,1,29,30],[138,1,1,30,31],[140,2,2,31,33],[146,7,6,33,39],[149,1,1,39,40]]],[4,7,7,40,47,[[156,3,3,40,43],[157,2,2,43,45],[161,1,1,45,46],[169,1,1,46,47]]],[5,8,8,47,55,[[188,1,1,47,48],[195,3,3,48,51],[196,1,1,51,52],[197,1,1,52,53],[208,2,2,53,55]]],[6,3,3,55,58,[[219,1,1,55,56],[228,1,1,56,57],[230,1,1,57,58]]],[7,1,1,58,59,[[232,1,1,58,59]]],[8,17,16,59,75,[[236,1,1,59,60],[242,2,1,60,61],[248,2,2,61,63],[249,2,2,63,65],[252,3,3,65,68],[257,2,2,68,70],[258,2,2,70,72],[260,3,3,72,75]]],[9,11,10,75,85,[[269,1,1,75,76],[270,1,1,76,77],[271,2,1,77,78],[273,1,1,78,79],[274,1,1,79,80],[276,1,1,80,81],[277,1,1,81,82],[279,1,1,82,83],[284,1,1,83,84],[285,1,1,84,85]]],[10,21,21,85,106,[[291,3,3,85,88],[292,1,1,88,89],[293,1,1,89,90],[295,1,1,90,91],[296,1,1,91,92],[300,3,3,92,95],[301,1,1,95,96],[302,2,2,96,98],[303,1,1,98,99],[305,1,1,99,100],[306,1,1,100,101],[307,1,1,101,102],[309,1,1,102,103],[310,1,1,103,104],[311,2,2,104,106]]],[11,14,14,106,120,[[315,1,1,106,107],[317,1,1,107,108],[321,1,1,108,109],[331,7,7,109,116],[332,1,1,116,117],[334,2,2,117,119],[337,1,1,119,120]]],[12,5,4,120,124,[[351,2,1,120,121],[354,1,1,121,122],[355,1,1,122,123],[356,1,1,123,124]]],[13,11,11,124,135,[[371,1,1,124,125],[375,2,2,125,127],[376,1,1,127,128],[381,1,1,128,129],[382,1,1,129,130],[386,1,1,130,131],[396,1,1,131,132],[399,1,1,132,133],[400,2,2,133,135]]],[14,2,2,135,137,[[405,1,1,135,136],[406,1,1,136,137]]],[15,8,8,137,145,[[414,2,2,137,139],[416,3,3,139,142],[418,2,2,142,144],[424,1,1,144,145]]],[16,1,1,145,146,[[427,1,1,145,146]]],[17,11,11,146,157,[[439,1,1,146,147],[448,1,1,147,148],[450,1,1,148,149],[451,1,1,149,150],[455,1,1,150,151],[461,1,1,151,152],[463,1,1,152,153],[464,1,1,153,154],[468,1,1,154,155],[472,1,1,155,156],[477,1,1,156,157]]],[18,24,24,157,181,[[483,2,2,157,159],[487,1,1,159,160],[495,1,1,160,161],[496,1,1,161,162],[499,1,1,162,163],[505,1,1,163,164],[508,1,1,164,165],[511,1,1,165,166],[515,1,1,166,167],[517,1,1,167,168],[521,1,1,168,169],[525,1,1,169,170],[538,1,1,170,171],[539,1,1,171,172],[543,2,2,172,174],[553,1,1,174,175],[555,3,3,175,178],[558,1,1,178,179],[574,1,1,179,180],[609,1,1,180,181]]],[20,2,2,181,183,[[667,2,2,181,183]]],[21,1,1,183,184,[[672,1,1,183,184]]],[22,25,24,184,208,[[693,1,1,184,185],[694,1,1,185,186],[699,1,1,186,187],[702,1,1,187,188],[706,1,1,188,189],[708,1,1,189,190],[715,8,7,190,197],[717,1,1,197,198],[718,2,2,198,200],[720,1,1,200,201],[726,1,1,201,202],[730,1,1,202,203],[736,1,1,203,204],[738,1,1,204,205],[742,1,1,205,206],[743,1,1,206,207],[744,1,1,207,208]]],[23,39,39,208,247,[[747,1,1,208,209],[748,2,2,209,211],[750,1,1,211,212],[751,1,1,212,213],[752,2,2,213,215],[753,1,1,215,216],[762,2,2,216,218],[764,2,2,218,220],[767,1,1,220,221],[770,3,3,221,224],[774,1,1,224,225],[775,1,1,225,226],[777,1,1,226,227],[778,1,1,227,228],[779,1,1,228,229],[780,2,2,229,231],[782,1,1,231,232],[784,2,2,232,234],[785,1,1,234,235],[786,1,1,235,236],[790,1,1,236,237],[792,3,3,237,240],[793,4,4,240,244],[794,1,1,244,245],[795,2,2,245,247]]],[24,4,3,247,250,[[797,2,1,247,248],[799,2,2,248,250]]],[25,9,9,250,259,[[802,1,1,250,251],[804,1,1,251,252],[811,1,1,252,253],[820,2,2,253,255],[827,1,1,255,256],[828,1,1,256,257],[836,1,1,257,258],[844,1,1,258,259]]],[26,5,5,259,264,[[857,2,2,259,261],[859,2,2,261,263],[861,1,1,263,264]]],[30,1,1,264,265,[[888,1,1,264,265]]],[32,1,1,265,266,[[897,1,1,265,266]]],[33,1,1,266,267,[[901,1,1,266,267]]],[34,2,2,267,269,[[905,2,2,267,269]]],[35,1,1,269,270,[[907,1,1,269,270]]],[37,1,1,270,271,[[918,1,1,270,271]]],[38,1,1,271,272,[[927,1,1,271,272]]]],[350,417,434,539,732,828,836,985,987,1033,1100,1104,1164,1210,1254,1315,1360,1374,1569,1586,1632,2157,2328,2997,3460,4025,4061,4122,4198,4327,4411,4450,4462,4655,4656,4659,4660,4662,4663,4800,5016,5036,5037,5077,5079,5159,5368,5880,6038,6046,6053,6065,6108,6437,6438,6800,7018,7057,7133,7225,7359,7488,7489,7530,7535,7641,7646,7649,7788,7793,7821,7835,7865,7868,7900,8109,8121,8149,8202,8218,8247,8285,8338,8483,8513,8728,8758,8762,8812,8844,8879,8903,9080,9085,9086,9129,9153,9171,9210,9270,9299,9339,9400,9439,9466,9467,9597,9655,9786,10062,10065,10067,10069,10070,10081,10086,10110,10163,10164,10245,10782,10883,10899,10915,11281,11369,11370,11397,11498,11514,11616,11854,11921,11959,11960,12110,12111,12317,12326,12360,12366,12374,12402,12417,12667,12732,12946,13154,13211,13240,13329,13481,13526,13543,13658,13773,13927,13993,13994,14058,14124,14171,14228,14305,14344,14394,14503,14526,14572,14642,14824,14838,14881,14892,15089,15116,15134,15172,15222,15486,16157,17491,17492,17566,17964,17975,18045,18111,18186,18247,18353,18356,18358,18360,18361,18363,18378,18413,18441,18448,18482,18620,18711,18790,18839,18889,18916,18930,19023,19046,19058,19096,19132,19159,19169,19194,19397,19406,19423,19432,19502,19583,19584,19593,19672,19706,19785,19811,19840,19853,19855,19902,19948,19952,19968,19979,20057,20084,20085,20109,20129,20141,20148,20150,20212,20258,20263,20331,20410,20415,20492,20514,20638,20885,20890,21113,21151,21357,21578,21974,21977,22024,22027,22089,22511,22648,22712,22770,22784,22813,22999,23136]]],["heardest",[10,10,[[4,1,1,0,1,[[156,1,1,0,1]]],[5,1,1,1,2,[[200,1,1,1,2]]],[11,1,1,2,3,[[334,1,1,2,3]]],[15,3,3,3,6,[[421,3,3,3,6]]],[18,1,1,6,7,[[508,1,1,6,7]]],[22,2,2,7,9,[[726,2,2,7,9]]],[31,1,1,9,10,[[890,1,1,9,10]]]],[5040,6199,10164,12520,12538,12539,14353,18621,18622,22550]]],["hearest",[4,4,[[8,1,1,0,1,[[259,1,1,0,1]]],[10,1,1,1,2,[[298,1,1,1,2]]],[13,1,1,2,3,[[372,1,1,2,3]]],[18,1,1,3,4,[[542,1,1,3,4]]]],[7848,9015,11303,14862]]],["heareth",[22,22,[[3,1,1,0,1,[[146,1,1,0,1]]],[8,3,3,1,4,[[238,3,3,1,4]]],[11,1,1,4,5,[[333,1,1,4,5]]],[17,1,1,5,6,[[469,1,1,5,6]]],[18,2,2,6,8,[[511,1,1,6,7],[515,1,1,7,8]]],[19,10,10,8,18,[[635,1,1,8,9],[640,2,2,9,11],[642,3,3,11,14],[645,1,1,14,15],[648,1,1,15,16],[652,1,1,16,17],[656,1,1,17,18]]],[22,2,2,18,20,[[719,1,1,18,19],[720,1,1,19,20]]],[23,1,1,20,21,[[763,1,1,20,21]]],[25,1,1,21,22,[[804,1,1,21,22]]]],[4653,7285,7286,7287,10131,13711,14405,14504,16636,16748,16755,16836,16838,16839,16914,17012,17123,17248,18477,18500,19410,20529]]],["hearing",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16966]]],["hearken",[88,87,[[0,4,4,0,4,[[20,1,1,0,1],[22,1,1,1,2],[33,1,1,2,3],[48,1,1,3,4]]],[1,8,8,4,12,[[52,1,1,4,5],[53,3,3,5,8],[55,1,1,8,9],[56,2,2,9,11],[60,1,1,11,12]]],[2,4,4,12,16,[[115,4,4,12,16]]],[4,16,16,16,32,[[153,1,1,16,17],[156,1,1,17,18],[165,3,3,18,21],[169,1,1,21,22],[170,2,2,22,24],[173,1,1,24,25],[175,1,1,25,26],[178,1,1,26,27],[179,1,1,27,28],[180,3,3,28,31],[182,1,1,31,32]]],[5,2,2,32,34,[[187,1,1,32,33],[210,1,1,33,34]]],[6,6,6,34,40,[[212,1,1,34,35],[213,1,1,35,36],[219,1,1,36,37],[221,1,1,37,38],[229,1,1,38,39],[230,1,1,39,40]]],[8,4,4,40,44,[[243,1,1,40,41],[250,1,1,41,42],[263,1,1,42,43],[265,1,1,43,44]]],[9,3,3,44,47,[[278,1,1,44,45],[279,2,2,45,47]]],[10,4,4,47,51,[[298,4,4,47,51]]],[11,3,3,51,54,[[322,1,1,51,52],[329,1,1,52,53],[330,1,1,53,54]]],[13,3,3,54,57,[[372,2,2,54,56],[376,1,1,56,57]]],[15,1,1,57,58,[[425,1,1,57,58]]],[17,4,4,58,62,[[468,2,2,58,60],[469,2,2,60,62]]],[18,4,4,62,66,[[511,1,1,62,63],[535,1,1,63,64],[558,2,2,64,66]]],[19,1,1,66,67,[[635,1,1,66,67]]],[23,16,16,67,83,[[751,1,1,67,68],[755,1,1,68,69],[760,1,1,69,70],[761,1,1,70,71],[762,1,1,71,72],[770,3,3,72,75],[771,2,2,75,77],[773,2,2,77,79],[779,1,1,79,80],[781,1,1,80,81],[782,1,1,81,82],[788,1,1,82,83]]],[25,4,3,83,86,[[804,2,1,83,84],[821,2,2,84,86]]],[27,1,1,86,87,[[870,1,1,86,87]]]],[525,586,997,1475,1597,1602,1609,1610,1685,1689,1707,1815,3538,3542,3545,3551,4937,5005,5275,5280,5290,5376,5399,5403,5465,5505,5583,5594,5613,5624,5626,5718,5868,6486,6562,6572,6761,6846,7049,7067,7378,7561,7964,8002,8304,8331,8333,9013,9014,9015,9037,9799,10023,10056,11301,11302,11411,12698,13681,13683,13693,13717,14399,14784,15225,15228,16634,19146,19237,19348,19384,19403,19575,19576,19577,19605,19610,19643,19647,19836,19876,19910,20026,20509,20903,20934,22225]]],["hearkened",[73,73,[[0,7,7,0,7,[[2,1,1,0,1],[15,1,1,1,2],[22,1,1,2,3],[29,2,2,3,5],[33,1,1,5,6],[38,1,1,6,7]]],[1,8,8,7,15,[[55,2,2,7,9],[56,1,1,9,10],[57,2,2,10,12],[58,1,1,12,13],[65,1,1,13,14],[67,1,1,14,15]]],[3,2,2,15,17,[[130,1,1,15,16],[137,1,1,16,17]]],[4,6,6,17,23,[[161,2,2,17,19],[162,1,1,19,20],[170,1,1,20,21],[178,1,1,21,22],[186,1,1,22,23]]],[5,2,2,23,25,[[187,1,1,23,24],[196,1,1,24,25]]],[6,3,3,25,28,[[212,1,1,25,26],[221,1,1,26,27],[223,1,1,27,28]]],[8,6,6,28,34,[[237,1,1,28,29],[247,1,1,29,30],[254,1,1,30,31],[260,1,1,31,32],[263,2,2,32,34]]],[10,5,5,34,39,[[302,3,3,34,37],[305,1,1,37,38],[310,1,1,38,39]]],[11,5,5,39,44,[[325,1,1,39,40],[328,1,1,40,41],[332,1,1,41,42],[333,1,1,42,43],[334,1,1,43,44]]],[13,6,6,44,50,[[376,1,1,44,45],[382,1,1,45,46],[390,1,1,46,47],[391,1,1,47,48],[396,1,1,48,49],[401,1,1,49,50]]],[15,2,2,50,52,[[421,2,2,50,52]]],[16,1,1,52,53,[[428,1,1,52,53]]],[18,2,2,53,55,[[558,1,1,53,54],[583,1,1,54,55]]],[23,16,16,55,71,[[751,2,2,55,57],[769,3,3,57,60],[770,1,1,60,61],[773,1,1,61,62],[776,1,1,62,63],[778,2,2,63,65],[779,3,3,65,68],[780,1,1,68,69],[781,1,1,69,70],[788,1,1,70,71]]],[25,1,1,71,72,[[804,1,1,71,72]]],[26,1,1,72,73,[[858,1,1,72,73]]]],[72,383,587,847,852,1004,1159,1664,1667,1698,1725,1729,1754,1967,2023,4130,4343,5176,5180,5196,5398,5580,5848,5868,6078,6565,6857,6893,7265,7461,7712,7896,7963,7965,9166,9167,9175,9269,9433,9875,9972,10111,10128,10158,11410,11513,11694,11720,11847,11988,12527,12540,12751,15230,15676,19143,19145,19537,19538,19541,19577,19654,19764,19815,19818,19837,19838,19839,19873,19888,20015,20508,21994]]],["hearkenedst",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5656]]],["hearkeneth",[2,2,[[19,2,2,0,2,[[628,1,1,0,1],[639,1,1,1,2]]]],[16433,16734]]],["hearkening",[1,1,[[18,1,1,0,1,[[580,1,1,0,1]]]],[15569]]],["loud",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12666]]],["noise",[2,2,[[5,1,1,0,1,[[192,1,1,0,1]]],[12,1,1,1,2,[[352,1,1,1,2]]]],[5959,10819]]],["obedient",[8,8,[[1,1,1,0,1,[[73,1,1,0,1]]],[3,1,1,1,2,[[143,1,1,1,2]]],[4,2,2,2,4,[[156,1,1,2,3],[160,1,1,3,4]]],[9,1,1,4,5,[[288,1,1,4,5]]],[19,1,1,5,6,[[652,1,1,5,6]]],[22,2,2,6,8,[[679,1,1,6,7],[720,1,1,7,8]]]],[2184,4574,5034,5157,8647,17125,17673,18504]]],["obey",[30,29,[[0,3,3,0,3,[[26,3,3,0,3]]],[1,2,2,3,5,[[54,1,1,3,4],[72,1,1,4,5]]],[4,8,8,5,13,[[165,1,1,5,6],[173,2,2,6,8],[179,1,1,8,9],[180,1,1,9,10],[182,3,3,10,13]]],[5,1,1,13,14,[[210,1,1,13,14]]],[8,5,5,14,19,[[243,1,1,14,15],[247,2,2,15,17],[250,2,2,17,19]]],[15,1,1,19,20,[[421,1,1,19,20]]],[17,2,2,20,22,[[471,2,2,20,22]]],[18,1,1,22,23,[[495,1,1,22,23]]],[23,6,5,23,28,[[756,1,1,23,24],[762,1,1,24,25],[770,1,1,25,26],[786,3,2,26,28]]],[26,1,1,28,29,[[858,1,1,28,29]]]],[735,740,770,1634,2165,5276,5465,5467,5595,5673,5710,5716,5728,6500,7388,7474,7475,7579,7582,12528,13747,13748,14162,19266,19394,19585,19981,19988,21999]]],["obeyed",[30,30,[[0,2,2,0,2,[[21,1,1,0,1],[25,1,1,1,2]]],[5,2,2,2,4,[[191,1,1,2,3],[208,1,1,3,4]]],[6,2,2,4,6,[[212,1,1,4,5],[216,1,1,5,6]]],[8,3,3,6,9,[[250,2,2,6,8],[263,1,1,8,9]]],[10,1,1,9,10,[[310,1,1,9,10]]],[11,1,1,10,11,[[330,1,1,10,11]]],[19,1,1,11,12,[[632,1,1,11,12]]],[23,14,14,12,26,[[747,2,2,12,14],[753,1,1,14,15],[755,1,1,15,16],[761,1,1,16,17],[776,1,1,17,18],[778,1,1,18,19],[779,2,2,19,21],[784,1,1,21,22],[786,1,1,22,23],[787,2,2,23,25],[788,1,1,25,26]]],[26,2,2,26,28,[[858,2,2,26,28]]],[35,1,1,28,29,[[908,1,1,28,29]]],[36,1,1,29,30,[[909,1,1,29,30]]]],[565,697,5940,6428,6547,6664,7580,7584,7963,9444,10036,16530,19015,19027,19188,19234,19380,19754,19811,19831,19833,19944,19996,20001,20004,20033,21998,22002,22822,22852]]],["obeyedst",[2,2,[[8,1,1,0,1,[[263,1,1,0,1]]],[23,1,1,1,2,[[766,1,1,1,2]]]],[7960,19475]]],["obeyeth",[3,3,[[22,1,1,0,1,[[728,1,1,0,1]]],[23,2,2,1,3,[[751,1,1,1,2],[755,1,1,2,3]]]],[18672,19147,19229]]],["obeying",[2,2,[[6,1,1,0,1,[[212,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]]],[6562,7582]]],["perceived",[1,1,[[23,1,1,0,1,[[782,1,1,0,1]]]],[19922]]],["proclaimed",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18865]]],["proclamation",[1,1,[[10,1,1,0,1,[[305,1,1,0,1]]]],[9271]]],["publish",[11,9,[[15,1,1,0,1,[[420,1,1,0,1]]],[18,1,1,1,2,[[503,1,1,1,2]]],[23,8,6,2,8,[[748,2,2,2,4],[749,1,1,4,5],[775,1,1,5,6],[790,2,1,6,7],[794,2,1,7,8]]],[29,1,1,8,9,[[882,1,1,8,9]]]],[12508,14280,19032,19043,19078,19698,20059,20168,22415]]],["published",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12722]]],["publisheth",[4,3,[[22,2,1,0,1,[[730,2,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]],[33,1,1,2,3,[[900,1,1,2,3]]]],[18703,19042,22699]]],["regardeth",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13841]]],["reported",[2,2,[[15,2,2,0,2,[[418,2,2,0,2]]]],[12407,12408]]],["shew",[2,2,[[8,1,1,0,1,[[244,1,1,0,1]]],[22,1,1,1,2,[[721,1,1,1,2]]]],[7418,18514]]],["shewed",[4,4,[[22,4,4,0,4,[[721,1,1,0,1],[726,3,3,1,4]]]],[18517,18617,18619,18620]]],["sound",[3,3,[[12,3,3,0,3,[[352,1,1,0,1],[353,2,2,1,3]]]],[10810,10825,10862]]],["sounding",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10807]]],["tell",[3,3,[[3,1,1,0,1,[[137,1,1,0,1]]],[22,2,2,1,3,[[720,1,1,1,2],[726,1,1,2,3]]]],[4341,18489,18634]]],["together",[2,2,[[23,2,2,0,2,[[794,1,1,0,1],[795,1,1,1,2]]]],[20195,20239]]],["told",[2,2,[[6,1,1,0,1,[[223,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]]],[6907,18541]]],["understand",[6,6,[[0,2,2,0,2,[[10,1,1,0,1],[40,1,1,1,2]]],[4,1,1,2,3,[[180,1,1,2,3]]],[11,1,1,3,4,[[330,1,1,3,4]]],[22,1,1,4,5,[[714,1,1,4,5]]],[25,1,1,5,6,[[804,1,1,5,6]]]],[273,1210,5660,10050,18341,20508]]],["understandest",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19073]]],["understanding",[1,1,[[10,1,1,0,1,[[293,1,1,0,1]]]],[8825]]],["understood",[1,1,[[0,1,1,0,1,[[41,1,1,0,1]]]],[1275]]],["witness",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6839]]]]},{"k":"H8086","v":[["*",[9,9,[[26,9,9,0,9,[[852,4,4,0,4],[854,3,3,4,7],[855,1,1,7,8],[856,1,1,8,9]]]],[21812,21814,21817,21822,21888,21890,21897,21919,21960]]],["hear",[4,4,[[26,4,4,0,4,[[852,3,3,0,3],[854,1,1,3,4]]]],[21812,21817,21822,21897]]],["heard",[4,4,[[26,4,4,0,4,[[852,1,1,0,1],[854,2,2,1,3],[855,1,1,3,4]]]],[21814,21888,21890,21919]]],["obey",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21960]]]]},{"k":"H8087","v":[["Shema",[5,5,[[12,4,4,0,4,[[339,2,2,0,2],[342,1,1,2,3],[345,1,1,3,4]]],[15,1,1,4,5,[[420,1,1,4,5]]]],[10349,10350,10436,10588,12497]]]]},{"k":"H8088","v":[["*",[18,17,[[0,1,1,0,1,[[28,1,1,0,1]]],[1,1,1,1,2,[[72,1,1,1,2]]],[3,1,1,2,3,[[130,1,1,2,3]]],[4,1,1,3,4,[[154,1,1,3,4]]],[10,1,1,4,5,[[300,1,1,4,5]]],[13,1,1,5,6,[[375,1,1,5,6]]],[17,2,2,6,8,[[463,1,1,6,7],[477,1,1,7,8]]],[18,2,2,8,10,[[495,1,1,8,9],[627,1,1,9,10]]],[22,3,2,10,12,[[701,2,1,10,11],[744,1,1,11,12]]],[23,2,2,12,14,[[781,1,1,12,13],[794,1,1,13,14]]],[27,1,1,14,15,[[868,1,1,14,15]]],[33,1,1,15,16,[[902,1,1,15,16]]],[34,1,1,16,17,[[905,1,1,16,17]]]],[808,2145,4123,4963,9080,11365,13526,13927,14162,16399,18082,18941,19879,20209,22190,22731,22770]]],["+",[1,1,[[18,1,1,0,1,[[495,1,1,0,1]]]],[14162]]],["bruit",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22731]]],["fame",[5,5,[[3,1,1,0,1,[[130,1,1,0,1]]],[10,1,1,1,2,[[300,1,1,1,2]]],[13,1,1,2,3,[[375,1,1,2,3]]],[17,1,1,3,4,[[463,1,1,3,4]]],[22,1,1,4,5,[[744,1,1,4,5]]]],[4123,9080,11365,13526,18941]]],["heard",[1,1,[[27,1,1,0,1,[[868,1,1,0,1]]]],[22190]]],["hearing",[1,1,[[17,1,1,0,1,[[477,1,1,0,1]]]],[13927]]],["loud",[1,1,[[18,1,1,0,1,[[627,1,1,0,1]]]],[16399]]],["report",[5,4,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]],[22,2,1,2,3,[[701,2,1,2,3]]],[23,1,1,3,4,[[794,1,1,3,4]]]],[2145,4963,18082,20209]]],["speech",[1,1,[[34,1,1,0,1,[[905,1,1,0,1]]]],[22770]]],["tidings",[2,2,[[0,1,1,0,1,[[28,1,1,0,1]]],[23,1,1,1,2,[[781,1,1,1,2]]]],[808,19879]]]]},{"k":"H8089","v":[["fame",[4,4,[[5,2,2,0,2,[[192,1,1,0,1],[195,1,1,1,2]]],[16,1,1,2,3,[[434,1,1,2,3]]],[23,1,1,3,4,[[750,1,1,3,4]]]],[5976,6046,12838,19113]]]]},{"k":"H8090","v":[["Shema",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6228]]]]},{"k":"H8091","v":[["Shama",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10717]]]]},{"k":"H8092","v":[["*",[6,6,[[9,1,1,0,1,[[287,1,1,0,1]]],[12,5,5,1,6,[[339,1,1,1,2],[340,1,1,2,3],[343,2,2,3,5],[357,1,1,5,6]]]],[8601,10319,10366,10484,10493,10933]]],["Shimea",[5,5,[[9,1,1,0,1,[[287,1,1,0,1]]],[12,4,4,1,5,[[340,1,1,1,2],[343,2,2,2,4],[357,1,1,4,5]]]],[8601,10366,10484,10493,10933]]],["Shimma",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10319]]]]},{"k":"H8093","v":[["Shimeah",[2,2,[[9,2,2,0,2,[[279,2,2,0,2]]]],[8320,8349]]]]},{"k":"H8094","v":[["Shemaah",[1,1,[[12,1,1,0,1,[[349,1,1,0,1]]]],[10723]]]]},{"k":"H8095","v":[["*",[44,39,[[0,10,10,0,10,[[28,1,1,0,1],[33,2,2,1,3],[34,1,1,3,4],[41,2,2,4,6],[42,1,1,6,7],[45,1,1,7,8],[47,1,1,8,9],[48,1,1,9,10]]],[1,3,2,10,12,[[50,1,1,10,11],[55,2,1,11,12]]],[3,10,9,12,21,[[117,3,3,12,15],[118,2,1,15,16],[123,1,1,16,17],[126,1,1,17,18],[129,1,1,18,19],[142,1,1,19,20],[150,1,1,20,21]]],[4,1,1,21,22,[[179,1,1,21,22]]],[5,6,4,22,26,[[205,5,3,22,25],[207,1,1,25,26]]],[6,3,2,26,28,[[211,3,2,26,28]]],[12,5,5,28,33,[[339,1,1,28,29],[341,2,2,29,31],[343,1,1,31,32],[349,1,1,32,33]]],[13,2,2,33,35,[[381,1,1,33,34],[400,1,1,34,35]]],[14,1,1,35,36,[[412,1,1,35,36]]],[25,3,3,36,39,[[849,3,3,36,39]]]],[828,1005,1010,1034,1276,1288,1313,1396,1456,1478,1534,1670,3610,3626,3627,3670,3886,4007,4080,4501,4836,5597,6322,6329,6330,6390,6512,6526,10307,10409,10427,10519,10745,11499,11939,12283,21726,21727,21735]]],["+",[3,3,[[0,1,1,0,1,[[42,1,1,0,1]]],[5,1,1,1,2,[[207,1,1,1,2]]],[13,1,1,2,3,[[381,1,1,2,3]]]],[1313,6390,11499]]],["Shimeon",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12283]]],["Simeon",[40,35,[[0,9,9,0,9,[[28,1,1,0,1],[33,2,2,1,3],[34,1,1,3,4],[41,2,2,4,6],[45,1,1,6,7],[47,1,1,7,8],[48,1,1,8,9]]],[1,3,2,9,11,[[50,1,1,9,10],[55,2,1,10,11]]],[3,10,9,11,20,[[117,3,3,11,14],[118,2,1,14,15],[123,1,1,15,16],[126,1,1,16,17],[129,1,1,17,18],[142,1,1,18,19],[150,1,1,19,20]]],[4,1,1,20,21,[[179,1,1,20,21]]],[5,5,3,21,24,[[205,5,3,21,24]]],[6,3,2,24,26,[[211,3,2,24,26]]],[12,5,5,26,31,[[339,1,1,26,27],[341,2,2,27,29],[343,1,1,29,30],[349,1,1,30,31]]],[13,1,1,31,32,[[400,1,1,31,32]]],[25,3,3,32,35,[[849,3,3,32,35]]]],[828,1005,1010,1034,1276,1288,1396,1456,1478,1534,1670,3610,3626,3627,3670,3886,4007,4080,4501,4836,5597,6322,6329,6330,6512,6526,10307,10409,10427,10519,10745,11939,21726,21727,21735]]]]},{"k":"H8096","v":[["*",[43,39,[[1,1,1,0,1,[[55,1,1,0,1]]],[3,1,1,1,2,[[119,1,1,1,2]]],[9,7,7,2,9,[[282,3,3,2,5],[285,4,4,5,9]]],[10,13,10,9,19,[[291,1,1,9,10],[292,11,8,10,18],[294,1,1,18,19]]],[12,14,13,19,32,[[340,1,1,19,20],[341,2,2,20,22],[342,1,1,22,23],[343,3,3,23,26],[345,1,1,26,27],[360,4,3,27,30],[362,1,1,30,31],[364,1,1,31,32]]],[13,3,3,32,35,[[395,1,1,32,33],[397,2,2,33,35]]],[14,3,3,35,38,[[412,3,3,35,38]]],[16,1,1,38,39,[[427,1,1,38,39]]]],[1672,3710,8431,8433,8439,8527,8529,8532,8534,8725,8778,8806,8808,8809,8810,8811,8812,8814,8862,10380,10411,10412,10432,10471,10483,10496,10596,10990,10992,10993,11063,11136,11805,11866,11867,12275,12285,12290,12729]]],["Shimei",[41,37,[[3,1,1,0,1,[[119,1,1,0,1]]],[9,7,7,1,8,[[282,3,3,1,4],[285,4,4,4,8]]],[10,13,10,8,18,[[291,1,1,8,9],[292,11,8,9,17],[294,1,1,17,18]]],[12,13,12,18,30,[[340,1,1,18,19],[341,2,2,19,21],[342,1,1,21,22],[343,3,3,22,25],[360,4,3,25,28],[362,1,1,28,29],[364,1,1,29,30]]],[13,3,3,30,33,[[395,1,1,30,31],[397,2,2,31,33]]],[14,3,3,33,36,[[412,3,3,33,36]]],[16,1,1,36,37,[[427,1,1,36,37]]]],[3710,8431,8433,8439,8527,8529,8532,8534,8725,8778,8806,8808,8809,8810,8811,8812,8814,8862,10380,10411,10412,10432,10471,10483,10496,10990,10992,10993,11063,11136,11805,11866,11867,12275,12285,12290,12729]]],["Shimhi",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10596]]],["Shimi",[1,1,[[1,1,1,0,1,[[55,1,1,0,1]]]],[1672]]]]},{"k":"H8097","v":[["*",[2,2,[[3,1,1,0,1,[[119,1,1,0,1]]],[37,1,1,1,2,[[922,1,1,1,2]]]],[3713,23058]]],["Shimei",[1,1,[[37,1,1,0,1,[[922,1,1,0,1]]]],[23058]]],["Shimites",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3713]]]]},{"k":"H8098","v":[["Shemaiah",[41,39,[[10,1,1,0,1,[[302,1,1,0,1]]],[12,12,11,1,12,[[340,2,1,1,2],[341,1,1,2,3],[342,1,1,3,4],[346,2,2,4,6],[352,2,2,6,8],[361,1,1,8,9],[363,3,3,9,12]]],[13,8,8,12,20,[[377,1,1,12,13],[378,3,3,13,16],[383,1,1,16,17],[395,1,1,17,18],[397,1,1,18,19],[401,1,1,19,20]]],[14,4,4,20,24,[[410,2,2,20,22],[412,2,2,22,24]]],[15,10,10,24,34,[[415,1,1,24,25],[418,1,1,25,26],[422,1,1,26,27],[423,1,1,27,28],[424,6,6,28,34]]],[23,6,5,34,39,[[770,1,1,34,35],[773,4,3,35,38],[780,1,1,38,39]]]],[9173,10383,10422,10432,10629,10631,10799,10802,11021,11081,11083,11084,11416,11442,11444,11452,11531,11805,11869,11975,12214,12217,12273,12283,12356,12411,12557,12603,12630,12642,12658,12659,12660,12666,19592,19659,19666,19667,19854]]]]},{"k":"H8099","v":[["*",[4,4,[[3,2,2,0,2,[[141,1,1,0,1],[142,1,1,1,2]]],[5,1,1,2,3,[[207,1,1,2,3]]],[12,1,1,3,4,[[364,1,1,3,4]]]],[4485,4503,6385,11125]]],["Simeon",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6385]]],["Simeonites",[3,3,[[3,2,2,0,2,[[141,1,1,0,1],[142,1,1,1,2]]],[12,1,1,2,3,[[364,1,1,2,3]]]],[4485,4503,11125]]]]},{"k":"H8100","v":[["Shimeath",[2,2,[[11,1,1,0,1,[[324,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]]],[9871,11703]]]]},{"k":"H8101","v":[["Shimeathites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10361]]]]},{"k":"H8102","v":[["little",[2,2,[[17,2,2,0,2,[[439,1,1,0,1],[461,1,1,1,2]]]],[12942,13481]]]]},{"k":"H8103","v":[["shame",[1,1,[[1,1,1,0,1,[[81,1,1,0,1]]]],[2463]]]]},{"k":"H8104","v":[["*",[467,439,[[0,15,15,0,15,[[1,1,1,0,1],[2,1,1,1,2],[3,1,1,2,3],[16,2,2,3,5],[17,1,1,5,6],[23,1,1,6,7],[25,1,1,7,8],[27,2,2,8,10],[29,1,1,10,11],[30,2,2,11,13],[36,1,1,13,14],[40,1,1,14,15]]],[1,25,24,15,39,[[59,1,1,15,16],[61,4,3,16,19],[62,1,1,19,20],[64,1,1,20,21],[65,1,1,21,22],[68,2,2,22,24],[69,1,1,24,25],[70,2,2,25,27],[71,2,2,27,29],[72,4,4,29,33],[80,3,3,33,36],[83,3,3,36,39]]],[2,16,16,39,55,[[97,1,1,39,40],[107,4,4,40,44],[108,4,4,44,48],[109,2,2,48,50],[111,2,2,50,52],[114,1,1,52,53],[115,2,2,53,55]]],[3,19,19,55,74,[[117,1,1,55,56],[119,6,6,56,62],[122,1,1,62,63],[124,1,1,63,64],[125,2,2,64,66],[134,4,4,66,70],[139,1,1,70,71],[144,1,1,71,72],[147,2,2,72,74]]],[4,73,65,74,139,[[154,1,1,74,75],[156,7,6,75,81],[157,5,5,81,86],[158,6,5,86,91],[159,6,4,91,95],[160,5,4,95,99],[162,1,1,99,100],[163,6,5,100,105],[164,6,6,105,111],[165,2,2,111,113],[167,2,2,113,115],[168,2,2,115,117],[169,2,2,117,119],[171,1,1,119,120],[175,2,2,120,122],[176,3,1,122,123],[178,3,3,123,126],[179,1,1,126,127],[180,6,6,127,133],[181,1,1,133,134],[182,2,2,134,136],[183,1,1,136,137],[184,1,1,137,138],[185,1,1,138,139]]],[5,11,10,139,149,[[187,2,2,139,141],[192,1,1,141,142],[196,1,1,142,143],[208,4,3,143,146],[209,2,2,146,148],[210,1,1,148,149]]],[6,7,6,149,155,[[211,1,1,149,150],[212,2,1,150,151],[217,1,1,151,152],[223,3,3,152,155]]],[8,16,16,155,171,[[236,1,1,155,156],[237,1,1,156,157],[242,1,1,157,158],[244,1,1,158,159],[248,2,2,159,161],[252,2,2,161,163],[254,2,2,163,165],[256,1,1,165,166],[260,1,1,166,167],[261,2,2,167,169],[263,1,1,169,170],[265,1,1,170,171]]],[9,10,10,171,181,[[277,1,1,171,172],[281,1,1,172,173],[282,1,1,173,174],[284,1,1,174,175],[286,2,2,175,177],[288,3,3,177,180],[289,1,1,180,181]]],[10,23,21,181,202,[[292,4,3,181,184],[293,2,2,184,186],[296,1,1,186,187],[298,6,5,187,192],[299,2,2,192,194],[301,4,4,194,198],[303,1,1,198,199],[304,2,2,199,201],[310,1,1,201,202]]],[11,18,18,202,220,[[318,2,2,202,204],[321,1,1,204,205],[322,1,1,205,206],[323,3,3,206,209],[324,1,1,209,210],[329,3,3,210,213],[330,1,1,213,214],[333,1,1,214,215],[334,2,2,215,217],[335,2,2,217,219],[337,1,1,219,220]]],[12,10,9,220,229,[[346,2,1,220,221],[347,1,1,221,222],[349,1,1,222,223],[359,2,2,223,225],[360,1,1,225,226],[365,1,1,226,227],[366,2,2,227,229]]],[13,15,14,229,243,[[371,1,1,229,230],[372,4,3,230,233],[373,1,1,233,234],[378,1,1,234,235],[379,1,1,235,236],[385,1,1,236,237],[389,1,1,237,238],[399,1,1,238,239],[400,4,4,239,243]]],[14,1,1,243,244,[[410,1,1,243,244]]],[15,12,11,244,255,[[413,4,3,244,247],[414,1,1,247,248],[415,1,1,248,249],[421,1,1,249,250],[422,1,1,250,251],[423,1,1,251,252],[424,2,2,252,254],[425,1,1,254,255]]],[16,6,6,255,261,[[427,5,5,255,260],[431,1,1,260,261]]],[17,12,12,261,273,[[437,1,1,261,262],[445,2,2,262,264],[448,1,1,264,265],[449,1,1,265,266],[457,1,1,266,267],[458,1,1,267,268],[459,1,1,268,269],[464,1,1,269,270],[468,1,1,270,271],[471,1,1,271,272],[474,1,1,272,273]]],[18,70,66,273,339,[[489,1,1,273,274],[493,1,1,274,275],[494,2,2,275,277],[495,2,2,277,279],[496,1,1,279,280],[502,1,1,280,281],[508,1,1,281,282],[511,1,1,282,283],[514,3,3,283,286],[516,2,1,286,287],[518,1,1,287,288],[533,1,1,288,289],[536,1,1,289,290],[548,1,1,290,291],[555,2,2,291,293],[563,1,1,293,294],[566,2,2,294,296],[568,1,1,296,297],[574,1,1,297,298],[576,1,1,298,299],[580,1,1,299,300],[582,1,1,300,301],[583,1,1,301,302],[584,1,1,302,303],[593,1,1,303,304],[596,21,21,304,325],[598,6,5,325,330],[604,2,1,330,331],[607,3,2,331,333],[609,1,1,333,334],[617,1,1,334,335],[618,1,1,335,336],[622,1,1,336,337],[623,2,2,337,339]]],[19,31,29,339,368,[[629,3,3,339,342],[630,1,1,342,343],[631,3,3,343,346],[632,1,1,346,347],[633,2,2,347,349],[634,3,3,349,352],[635,2,2,352,354],[637,1,1,354,355],[640,2,2,355,357],[641,1,1,357,358],[642,1,1,358,359],[643,1,1,359,360],[646,3,2,360,362],[648,2,1,362,363],[649,2,2,363,365],[654,1,1,365,366],[655,1,1,366,367],[656,1,1,367,368]]],[20,9,9,368,377,[[661,1,1,368,369],[663,3,3,369,372],[666,2,2,372,374],[669,1,1,374,375],[670,2,2,375,377]]],[21,3,2,377,379,[[673,1,1,377,378],[675,2,1,378,379]]],[22,12,10,379,389,[[685,1,1,379,380],[699,3,2,380,382],[704,1,1,382,383],[720,1,1,383,384],[734,5,4,384,388],[740,1,1,388,389]]],[23,13,13,389,402,[[747,1,1,389,390],[748,1,1,390,391],[749,1,1,391,392],[752,1,1,392,393],[753,1,1,393,394],[760,1,1,394,395],[761,1,1,395,396],[764,1,1,396,397],[775,1,1,397,398],[779,2,2,398,400],[795,1,1,400,401],[796,1,1,401,402]]],[25,20,19,402,421,[[812,1,1,402,403],[818,1,1,403,404],[819,3,3,404,407],[821,3,3,407,410],[837,1,1,410,411],[838,1,1,411,412],[841,2,2,412,414],[844,1,1,414,415],[845,6,5,415,420],[849,1,1,420,421]]],[26,2,1,421,422,[[858,2,1,421,422]]],[27,4,4,422,426,[[865,1,1,422,423],[873,3,3,423,426]]],[29,2,2,426,428,[[879,1,1,426,427],[880,1,1,427,428]]],[31,1,1,428,429,[[890,1,1,428,429]]],[32,2,2,429,431,[[898,1,1,429,430],[899,1,1,430,431]]],[37,3,2,431,433,[[913,2,1,431,432],[921,1,1,432,433]]],[38,6,6,433,439,[[926,4,4,433,437],[927,2,2,437,439]]]],[45,79,88,406,407,443,597,697,788,793,861,897,902,1094,1230,1805,1833,1840,1841,1877,1946,1975,2031,2038,2057,2106,2113,2120,2123,2157,2159,2164,2165,2433,2434,2436,2507,2508,2514,2952,3255,3256,3277,3281,3284,3300,3311,3318,3326,3340,3378,3400,3487,3526,3527,3657,3699,3700,3702,3720,3724,3730,3847,3965,3984,3988,4260,4261,4262,4264,4428,4579,4694,4711,4942,5006,5010,5013,5019,5027,5044,5054,5063,5065,5082,5085,5088,5089,5098,5103,5111,5119,5120,5122,5123,5138,5139,5143,5148,5199,5209,5216,5224,5230,5240,5241,5253,5259,5268,5270,5272,5276,5290,5324,5328,5343,5354,5374,5383,5415,5509,5523,5533,5582,5583,5584,5586,5612,5620,5624,5626,5656,5669,5688,5718,5724,5740,5804,5819,5858,5859,5967,6082,6428,6429,6431,6466,6471,6493,6533,6567,6713,6888,6897,6898,7224,7249,7353,7415,7498,7499,7638,7640,7708,7717,7776,7882,7920,7921,7944,8001,8275,8405,8447,8490,8557,8564,8624,8626,8646,8658,8773,8774,8813,8822,8830,8908,9008,9009,9010,9043,9046,9055,9057,9118,9119,9142,9146,9205,9226,9245,9447,9683,9684,9770,9824,9834,9835,9836,9859,9996,10002,10020,10030,10127,10149,10159,10168,10169,10240,10634,10672,10749,10976,10977,11015,11151,11182,11183,11279,11296,11297,11298,11341,11447,11464,11583,11662,11916,11942,11954,11955,11964,12230,12301,12303,12305,12315,12356,12543,12578,12607,12649,12669,12693,12727,12732,12738,12739,12745,12795,12897,13098,13100,13180,13197,13404,13430,13451,13534,13661,13757,13835,14073,14093,14107,14111,14139,14141,14179,14271,14337,14408,14478,14484,14487,14513,14544,14761,14799,14986,15123,15169,15286,15354,15357,15406,15488,15506,15567,15651,15654,15742,15854,15902,15903,15906,15907,15915,15932,15942,15953,15955,15958,15961,15965,15986,15999,16004,16032,16034,16044,16056,16065,16066,16084,16085,16086,16088,16089,16122,16143,16146,16163,16267,16285,16340,16347,16350,16441,16444,16453,16481,16494,16496,16511,16519,16562,16564,16576,16577,16580,16634,16636,16673,16750,16765,16775,16812,16857,16933,16941,17007,17020,17033,17187,17200,17242,17365,17398,17405,17410,17460,17463,17517,17526,17536,17574,17605,17786,18046,18047,18132,18500,18754,18755,18757,18759,18860,19007,19044,19082,19160,19179,19347,19378,19432,19701,19827,19841,20224,20300,20675,20839,20858,20868,20870,20913,20914,20916,21386,21421,21522,21523,21583,21607,21613,21614,21615,21623,21713,21992,22143,22258,22264,22265,22375,22383,22556,22664,22669,22919,23039,23110,23112,23118,23119,23127,23134]]],["+",[101,98,[[0,3,3,0,3,[[2,1,1,0,1],[16,1,1,1,2],[36,1,1,2,3]]],[1,9,8,3,11,[[61,4,3,3,6],[62,1,1,6,7],[68,1,1,7,8],[72,1,1,8,9],[80,2,2,9,11]]],[2,11,11,11,22,[[97,1,1,11,12],[107,3,3,12,15],[108,3,3,15,18],[109,2,2,18,20],[111,1,1,20,21],[115,1,1,21,22]]],[3,9,9,22,31,[[117,1,1,22,23],[119,3,3,23,26],[125,2,2,26,28],[134,3,3,28,31]]],[4,21,19,31,50,[[154,1,1,31,32],[156,2,2,32,34],[157,2,2,34,36],[158,3,2,36,38],[159,2,2,38,40],[160,1,1,40,41],[162,1,1,41,42],[163,3,2,42,44],[165,1,1,44,45],[168,1,1,45,46],[169,1,1,46,47],[171,1,1,47,48],[179,1,1,48,49],[180,1,1,49,50]]],[5,2,2,50,52,[[208,2,2,50,52]]],[6,1,1,52,53,[[212,1,1,52,53]]],[8,6,6,53,59,[[236,1,1,53,54],[242,1,1,54,55],[248,1,1,55,56],[260,1,1,56,57],[261,2,2,57,59]]],[9,1,1,59,60,[[277,1,1,59,60]]],[10,6,6,60,66,[[292,2,2,60,62],[296,1,1,62,63],[298,1,1,63,64],[303,1,1,64,65],[310,1,1,65,66]]],[11,3,3,66,69,[[322,1,1,66,67],[323,2,2,67,69]]],[12,2,2,69,71,[[359,1,1,69,70],[360,1,1,70,71]]],[13,4,4,71,75,[[372,1,1,71,72],[379,1,1,72,73],[400,2,2,73,75]]],[15,1,1,75,76,[[413,1,1,75,76]]],[16,2,2,76,78,[[427,1,1,76,77],[431,1,1,77,78]]],[17,1,1,78,79,[[437,1,1,78,79]]],[18,5,5,79,84,[[596,1,1,79,80],[598,1,1,80,81],[607,1,1,81,82],[622,1,1,82,83],[623,1,1,83,84]]],[19,2,2,84,86,[[629,1,1,84,85],[633,1,1,85,86]]],[22,1,1,86,87,[[734,1,1,86,87]]],[23,2,2,87,89,[[752,1,1,87,88],[779,1,1,88,89]]],[25,6,6,89,95,[[818,1,1,89,90],[819,2,2,90,92],[844,1,1,92,93],[845,2,2,93,95]]],[27,1,1,95,96,[[865,1,1,95,96]]],[37,1,1,96,97,[[913,1,1,96,97]]],[38,1,1,97,98,[[926,1,1,97,98]]]],[79,406,1094,1833,1840,1841,1877,2031,2159,2434,2436,2952,3256,3277,3281,3300,3311,3318,3326,3340,3378,3526,3657,3699,3700,3702,3984,3988,4261,4262,4264,4942,5006,5019,5065,5082,5088,5103,5119,5122,5143,5199,5216,5230,5290,5343,5383,5415,5586,5620,6428,6429,6567,7224,7353,7498,7882,7920,7921,8275,8773,8813,8908,9010,9205,9447,9824,9835,9836,10976,11015,11298,11464,11954,11964,12303,12745,12795,12897,15906,16088,16146,16340,16350,16444,16562,18757,19160,19841,20839,20868,20870,21583,21614,21615,22143,22919,23112]]],["Beware",[5,5,[[0,1,1,0,1,[[23,1,1,0,1]]],[1,1,1,1,2,[[72,1,1,1,2]]],[4,2,2,2,4,[[160,1,1,2,3],[167,1,1,3,4]]],[11,1,1,4,5,[[318,1,1,4,5]]]],[597,2165,5148,5328,9683]]],["Keep",[8,8,[[4,2,2,0,2,[[156,1,1,0,1],[181,1,1,1,2]]],[18,3,3,2,5,[[494,1,1,2,3],[617,1,1,3,4],[618,1,1,4,5]]],[19,1,1,5,6,[[634,1,1,5,6]]],[20,1,1,6,7,[[663,1,1,6,7]]],[22,1,1,7,8,[[734,1,1,7,8]]]],[5010,5688,14111,16267,16285,16577,17398,18754]]],["Mark",[1,1,[[18,1,1,0,1,[[514,1,1,0,1]]]],[14487]]],["Observe",[2,2,[[1,1,1,0,1,[[83,1,1,0,1]]],[4,1,1,1,2,[[164,1,1,1,2]]]],[2507,5268]]],["Preserve",[2,2,[[18,2,2,0,2,[[493,1,1,0,1],[563,1,1,1,2]]]],[14093,15286]]],["Watchman",[2,1,[[22,2,1,0,1,[[699,2,1,0,1]]]],[18046]]],["beware",[3,3,[[4,1,1,0,1,[[158,1,1,0,1]]],[6,2,2,1,3,[[223,2,2,1,3]]]],[5098,6888,6897]]],["circumspect",[1,1,[[1,1,1,0,1,[[72,1,1,0,1]]]],[2157]]],["for",[1,1,[[18,1,1,0,1,[[548,1,1,0,1]]]],[14986]]],["heed",[28,28,[[0,2,2,0,2,[[30,2,2,0,2]]],[1,3,3,2,5,[[59,1,1,2,3],[68,1,1,3,4],[83,1,1,4,5]]],[3,1,1,5,6,[[139,1,1,5,6]]],[4,7,7,6,13,[[156,2,2,6,8],[163,1,1,8,9],[164,3,3,9,12],[176,1,1,12,13]]],[5,2,2,13,15,[[208,1,1,13,14],[209,1,1,14,15]]],[9,1,1,15,16,[[286,1,1,15,16]]],[10,1,1,16,17,[[292,1,1,16,17]]],[12,1,1,17,18,[[359,1,1,17,18]]],[13,2,2,18,20,[[385,1,1,18,19],[399,1,1,19,20]]],[17,1,1,20,21,[[471,1,1,20,21]]],[18,2,2,21,23,[[516,1,1,21,22],[596,1,1,22,23]]],[22,1,1,23,24,[[685,1,1,23,24]]],[23,2,2,24,26,[[753,1,1,24,25],[761,1,1,25,26]]],[38,2,2,26,28,[[926,2,2,26,28]]]],[897,902,1805,2038,2508,4428,5013,5027,5224,5253,5259,5270,5533,6431,6471,8564,8774,10977,11583,11916,13757,14513,15907,17786,19179,19378,23118,23119]]],["himself",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9684]]],["in",[2,2,[[1,2,2,0,2,[[70,2,2,0,2]]]],[2106,2113]]],["keep",[118,117,[[0,7,7,0,7,[[1,1,1,0,1],[16,1,1,1,2],[17,1,1,2,3],[27,2,2,3,5],[29,1,1,5,6],[40,1,1,6,7]]],[1,8,8,7,15,[[64,1,1,7,8],[65,1,1,8,9],[69,1,1,9,10],[71,2,2,10,12],[72,1,1,12,13],[80,1,1,13,14],[83,1,1,14,15]]],[2,5,5,15,20,[[107,1,1,15,16],[108,1,1,16,17],[111,1,1,17,18],[114,1,1,18,19],[115,1,1,19,20]]],[3,5,5,20,25,[[119,1,1,20,21],[122,1,1,21,22],[124,1,1,22,23],[134,1,1,23,24],[147,1,1,24,25]]],[4,17,16,25,41,[[156,2,2,25,27],[157,2,2,27,29],[159,3,2,29,31],[160,1,1,31,32],[163,1,1,32,33],[165,1,1,33,34],[175,1,1,34,35],[178,3,3,35,38],[180,1,1,38,39],[182,2,2,39,41]]],[5,4,4,41,45,[[192,1,1,41,42],[196,1,1,42,43],[208,1,1,43,44],[209,1,1,44,45]]],[6,1,1,45,46,[[212,1,1,45,46]]],[8,1,1,46,47,[[237,1,1,46,47]]],[9,3,3,47,50,[[281,1,1,47,48],[282,1,1,48,49],[286,1,1,49,50]]],[10,8,8,50,58,[[292,1,1,50,51],[293,1,1,51,52],[298,3,3,52,55],[299,2,2,55,57],[301,1,1,57,58]]],[11,2,2,58,60,[[329,1,1,58,59],[335,1,1,59,60]]],[12,3,3,60,63,[[365,1,1,60,61],[366,2,2,61,63]]],[13,2,2,63,65,[[372,1,1,63,64],[389,1,1,64,65]]],[14,1,1,65,66,[[410,1,1,65,66]]],[15,2,2,66,68,[[413,1,1,66,67],[425,1,1,67,68]]],[18,24,24,68,92,[[489,1,1,68,69],[502,1,1,69,70],[514,1,1,70,71],[516,1,1,71,72],[566,2,2,72,74],[568,1,1,74,75],[580,1,1,75,76],[583,1,1,76,77],[596,13,13,77,90],[604,1,1,90,91],[609,1,1,91,92]]],[19,11,11,92,103,[[629,1,1,92,93],[630,1,1,93,94],[631,2,2,94,96],[633,1,1,96,97],[634,2,2,97,99],[635,1,1,99,100],[649,2,2,100,102],[655,1,1,102,103]]],[20,3,3,103,106,[[661,1,1,103,104],[666,1,1,104,105],[670,1,1,105,106]]],[23,2,2,106,108,[[747,1,1,106,107],[775,1,1,107,108]]],[25,4,4,108,112,[[812,1,1,108,109],[821,1,1,109,110],[837,1,1,110,111],[845,1,1,111,112]]],[26,1,1,112,113,[[858,1,1,112,113]]],[27,1,1,113,114,[[873,1,1,113,114]]],[32,1,1,114,115,[[899,1,1,114,115]]],[37,1,1,115,116,[[913,1,1,115,116]]],[38,1,1,116,117,[[926,1,1,116,117]]]],[45,407,443,788,793,861,1230,1946,1975,2057,2120,2123,2164,2433,2514,3255,3284,3400,3487,3527,3724,3847,3965,4260,4694,5013,5044,5054,5063,5120,5123,5139,5209,5276,5523,5582,5583,5584,5656,5718,5724,5967,6082,6431,6466,6567,7249,8405,8447,8557,8773,8830,9010,9043,9046,9055,9057,9146,9996,10168,11151,11182,11183,11298,11662,12230,12305,12693,14073,14271,14484,14513,15354,15357,15406,15567,15654,15902,15903,15915,15942,15955,15958,15961,15986,15999,16004,16032,16034,16044,16122,16163,16453,16481,16494,16511,16564,16576,16580,16634,17020,17033,17200,17365,17460,17536,19007,19701,20675,20914,21386,21623,21992,22258,22669,22919,23110]]],["keeper",[13,13,[[0,1,1,0,1,[[3,1,1,0,1]]],[8,3,3,1,4,[[252,2,2,1,3],[263,1,1,3,4]]],[11,1,1,4,5,[[334,1,1,4,5]]],[13,1,1,5,6,[[400,1,1,5,6]]],[15,2,2,6,8,[[414,1,1,6,7],[415,1,1,7,8]]],[16,3,3,8,11,[[427,3,3,8,11]]],[18,1,1,11,12,[[598,1,1,11,12]]],[23,1,1,12,13,[[779,1,1,12,13]]]],[88,7638,7640,7944,10159,11955,12315,12356,12727,12732,12739,16086,19827]]],["keepers",[14,13,[[11,4,4,0,4,[[323,1,1,0,1],[334,1,1,1,2],[335,1,1,2,3],[337,1,1,3,4]]],[12,2,1,4,5,[[346,2,1,4,5]]],[20,1,1,5,6,[[670,1,1,5,6]]],[21,1,1,6,7,[[675,1,1,6,7]]],[23,2,2,7,9,[[748,1,1,7,8],[796,1,1,8,9]]],[25,4,4,9,13,[[841,2,2,9,11],[845,2,2,11,13]]]],[9834,10149,10169,10240,10634,17526,17605,19044,20300,21522,21523,21607,21613]]],["keepest",[3,3,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]]],[9008,11296,12543]]],["keepeth",[19,16,[[4,1,1,0,1,[[159,1,1,0,1]]],[15,1,1,1,2,[[413,1,1,1,2]]],[18,4,4,2,6,[[511,1,1,2,3],[598,2,2,3,5],[623,1,1,5,6]]],[19,8,6,6,12,[[637,1,1,6,7],[640,1,1,7,8],[646,3,2,8,10],[648,2,1,10,11],[656,1,1,11,12]]],[20,1,1,12,13,[[666,1,1,12,13]]],[22,4,3,13,16,[[704,1,1,13,14],[734,3,2,14,16]]]],[5120,12301,14408,16084,16085,16347,16673,16750,16933,16941,17007,17242,17463,18132,18755,18759]]],["keeping",[6,6,[[3,2,2,0,2,[[119,2,2,0,2]]],[4,1,1,2,3,[[160,1,1,2,3]]],[15,1,1,3,4,[[424,1,1,3,4]]],[18,1,1,4,5,[[496,1,1,4,5]]],[26,1,1,5,6,[[858,1,1,5,6]]]],[3720,3730,5148,12649,14179,21992]]],["kept",[48,48,[[0,1,1,0,1,[[25,1,1,0,1]]],[3,1,1,1,2,[[147,1,1,1,2]]],[8,2,2,2,4,[[244,1,1,2,3],[248,1,1,3,4]]],[9,2,2,4,6,[[288,2,2,4,6]]],[10,7,7,6,13,[[293,1,1,6,7],[298,1,1,7,8],[301,3,3,8,11],[304,2,2,11,13]]],[11,4,4,13,17,[[321,1,1,13,14],[324,1,1,14,15],[329,1,1,15,16],[330,1,1,16,17]]],[12,2,2,17,19,[[347,1,1,17,18],[349,1,1,18,19]]],[13,3,3,19,22,[[372,1,1,19,20],[378,1,1,20,21],[400,1,1,21,22]]],[15,2,2,22,24,[[423,1,1,22,23],[424,1,1,23,24]]],[16,1,1,24,25,[[427,1,1,24,25]]],[17,1,1,25,26,[[458,1,1,25,26]]],[18,10,10,26,36,[[494,1,1,26,27],[495,1,1,27,28],[555,2,2,28,30],[576,1,1,30,31],[596,5,5,31,36]]],[20,1,1,36,37,[[663,1,1,36,37]]],[23,1,1,37,38,[[760,1,1,37,38]]],[25,4,4,38,42,[[819,1,1,38,39],[821,1,1,39,40],[845,1,1,40,41],[849,1,1,41,42]]],[27,1,1,42,43,[[873,1,1,42,43]]],[29,2,2,43,45,[[879,1,1,43,44],[880,1,1,44,45]]],[32,1,1,45,46,[[898,1,1,45,46]]],[38,2,2,46,48,[[927,2,2,46,48]]]],[697,4711,7415,7499,8624,8646,8822,9009,9118,9119,9142,9226,9245,9770,9859,10002,10030,10672,10749,11297,11447,11942,12607,12669,12738,13430,14107,14139,15123,15169,15506,15953,15965,16056,16065,16066,17410,19347,20858,20916,21607,21713,22264,22375,22383,22664,23127,23134]]],["mark",[3,3,[[17,1,1,0,1,[[474,1,1,0,1]]],[18,2,2,1,3,[[533,1,1,1,2],[607,1,1,2,3]]]],[13835,14761,16143]]],["marked",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13404]]],["markest",[1,1,[[17,1,1,0,1,[[445,1,1,0,1]]]],[13100]]],["marketh",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13661]]],["myself",[2,2,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,1,1,1,2,[[495,1,1,1,2]]]],[8626,14141]]],["narrowly",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13180]]],["none",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8490]]],["observe",[33,32,[[3,1,1,0,1,[[144,1,1,0,1]]],[4,18,17,1,18,[[157,1,1,1,2],[158,2,2,2,4],[160,1,1,4,5],[163,1,1,5,6],[164,2,2,6,8],[167,1,1,8,9],[168,1,1,9,10],[169,1,1,10,11],[176,2,1,11,12],[180,4,4,12,16],[183,1,1,16,17],[184,1,1,17,18]]],[5,2,2,18,20,[[187,2,2,18,20]]],[6,1,1,20,21,[[223,1,1,20,21]]],[11,2,2,21,23,[[329,1,1,21,22],[333,1,1,22,23]]],[13,1,1,23,24,[[373,1,1,23,24]]],[15,2,2,24,26,[[413,1,1,24,25],[422,1,1,25,26]]],[18,3,3,26,29,[[582,1,1,26,27],[584,1,1,27,28],[596,1,1,28,29]]],[25,2,2,29,31,[[821,1,1,29,30],[838,1,1,30,31]]],[31,1,1,31,32,[[890,1,1,31,32]]]],[4579,5085,5089,5111,5138,5240,5241,5272,5324,5354,5374,5533,5612,5624,5626,5669,5740,5804,5858,5859,6898,10020,10127,11341,12301,12578,15651,15742,15932,20913,21421,22556]]],["observed",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5819]]],["observest",[1,1,[[22,1,1,0,1,[[720,1,1,0,1]]]],[18500]]],["observeth",[1,1,[[20,1,1,0,1,[[669,1,1,0,1]]]],[17517]]],["preserve",[5,5,[[18,3,3,0,3,[[518,1,1,0,1],[598,2,2,1,3]]],[19,2,2,3,5,[[631,1,1,3,4],[641,1,1,4,5]]]],[14544,16088,16089,16496,16775]]],["preserved",[6,6,[[5,1,1,0,1,[[210,1,1,0,1]]],[8,1,1,1,2,[[265,1,1,1,2]]],[17,2,2,2,4,[[445,1,1,2,3],[464,1,1,3,4]]],[18,1,1,4,5,[[514,1,1,4,5]]],[27,1,1,5,6,[[873,1,1,5,6]]]],[6493,8001,13098,13534,14478,22265]]],["preserveth",[4,4,[[18,2,2,0,2,[[574,1,1,0,1],[593,1,1,1,2]]],[19,2,2,2,4,[[629,1,1,2,3],[643,1,1,3,4]]]],[15488,15854,16441,16857]]],["regard",[2,2,[[18,1,1,0,1,[[508,1,1,0,1]]],[19,1,1,1,2,[[632,1,1,1,2]]]],[14337,16519]]],["regardeth",[3,3,[[19,2,2,0,2,[[640,1,1,0,1],[642,1,1,1,2]]],[20,1,1,2,3,[[663,1,1,2,3]]]],[16765,16812,17405]]],["reserveth",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19082]]],["spies",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6533]]],["sure",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8658]]],["thee",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5509]]],["themselves",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7776]]],["thyself",[1,1,[[8,1,1,0,1,[[254,1,1,0,1]]]],[7708]]],["upon",[1,1,[[37,1,1,0,1,[[921,1,1,0,1]]]],[23039]]],["wait",[2,2,[[13,1,1,0,1,[[371,1,1,0,1]]],[18,1,1,1,2,[[536,1,1,1,2]]]],[11279,14799]]],["waiteth",[2,2,[[17,1,1,0,1,[[459,1,1,0,1]]],[19,1,1,1,2,[[654,1,1,1,2]]]],[13451,17187]]],["waiting",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16636]]],["watch",[4,4,[[6,1,1,0,1,[[217,1,1,0,1]]],[8,1,1,1,2,[[254,1,1,1,2]]],[17,1,1,2,3,[[449,1,1,2,3]]],[18,1,1,3,4,[[607,1,1,3,4]]]],[6713,7717,13197,16146]]],["watched",[1,1,[[23,1,1,0,1,[[764,1,1,0,1]]]],[19432]]],["watchman",[2,2,[[18,1,1,0,1,[[604,1,1,0,1]]],[22,1,1,1,2,[[699,1,1,1,2]]]],[16122,18047]]],["watchmen",[4,4,[[21,2,2,0,2,[[673,1,1,0,1],[675,1,1,1,2]]],[22,1,1,2,3,[[740,1,1,2,3]]],[23,1,1,3,4,[[795,1,1,3,4]]]],[17574,17605,18860,20224]]]]},{"k":"H8105","v":[["*",[5,4,[[18,1,1,0,1,[[552,1,1,0,1]]],[22,2,1,1,2,[[703,2,1,1,2]]],[23,1,1,2,3,[[792,1,1,2,3]]],[35,1,1,3,4,[[906,1,1,3,4]]]],[15079,18124,20091,22799]]],["dregs",[1,1,[[18,1,1,0,1,[[552,1,1,0,1]]]],[15079]]],["lees",[4,3,[[22,2,1,0,1,[[703,2,1,0,1]]],[23,1,1,1,2,[[792,1,1,1,2]]],[35,1,1,2,3,[[906,1,1,2,3]]]],[18124,20091,22799]]]]},{"k":"H8106","v":[["*",[5,4,[[10,2,1,0,1,[[306,2,1,0,1]]],[12,3,3,1,4,[[343,1,1,1,2],[344,1,1,2,3],[345,1,1,3,4]]]],[9307,10500,10569,10587]]],["Shamed",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10587]]],["Shamer",[2,2,[[12,2,2,0,2,[[343,1,1,0,1],[344,1,1,1,2]]]],[10500,10569]]],["Shemer",[2,1,[[10,2,1,0,1,[[306,2,1,0,1]]]],[9307]]]]},{"k":"H8107","v":[["observed",[2,1,[[1,2,1,0,1,[[61,2,1,0,1]]]],[1858]]]]},{"k":"H8108","v":[["watch",[1,1,[[18,1,1,0,1,[[618,1,1,0,1]]]],[16279]]]]},{"k":"H8109","v":[["waking",[1,1,[[18,1,1,0,1,[[554,1,1,0,1]]]],[15097]]]]},{"k":"H8110","v":[["Shimron",[5,5,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[5,2,2,2,4,[[197,1,1,2,3],[205,1,1,3,4]]],[12,1,1,4,5,[[344,1,1,4,5]]]],[1399,4513,6108,6336,10536]]]]},{"k":"H8111","v":[["*",[109,101,[[10,19,17,0,17,[[303,1,1,0,1],[306,5,4,1,5],[308,1,1,5,6],[310,5,5,6,11],[311,2,2,11,13],[312,5,4,13,17]]],[11,49,44,17,61,[[313,2,2,17,19],[314,1,1,19,20],[315,2,2,20,22],[317,1,1,22,23],[318,5,4,23,27],[319,2,2,27,29],[322,7,5,29,34],[325,5,5,34,39],[326,3,3,39,42],[327,8,7,42,49],[329,7,6,49,55],[330,3,3,55,58],[333,1,1,58,59],[335,2,2,59,61]]],[13,8,8,61,69,[[384,2,2,61,63],[388,1,1,63,64],[391,2,2,64,66],[394,3,3,66,69]]],[15,1,1,69,70,[[416,1,1,69,70]]],[22,8,7,70,77,[[685,2,1,70,71],[686,1,1,71,72],[687,1,1,72,73],[688,3,3,73,76],[714,1,1,76,77]]],[23,3,3,77,80,[[767,1,1,77,78],[775,1,1,78,79],[785,1,1,79,80]]],[25,6,6,80,86,[[817,4,4,80,84],[824,2,2,84,86]]],[27,6,6,86,92,[[868,1,1,86,87],[869,2,2,87,89],[871,2,2,89,91],[874,1,1,91,92]]],[29,5,5,92,97,[[881,2,2,92,94],[882,1,1,94,95],[884,1,1,95,96],[886,1,1,96,97]]],[30,1,1,97,98,[[888,1,1,97,98]]],[32,3,3,98,101,[[893,3,3,98,101]]]],[9216,9307,9311,9312,9315,9343,9409,9418,9425,9442,9451,9452,9469,9490,9517,9518,9531,9535,9536,9576,9577,9582,9650,9693,9694,9698,9699,9708,9725,9794,9805,9810,9828,9829,9872,9877,9880,9881,9884,9910,9912,9919,9933,9938,9939,9942,9948,9950,9952,9984,9988,9989,10007,10009,10011,10033,10034,10058,10132,10183,10184,11544,11551,11653,11717,11728,11772,11773,11779,12361,17791,17811,17838,17859,17860,17861,18349,19497,19696,19962,20808,20813,20815,20817,21011,21040,22179,22199,22200,22230,22232,22282,22404,22407,22411,22451,22495,22529,22580,22584,22585]]],["+",[7,7,[[10,1,1,0,1,[[310,1,1,0,1]]],[11,3,3,1,4,[[315,1,1,1,2],[329,1,1,2,3],[335,1,1,3,4]]],[13,1,1,4,5,[[391,1,1,4,5]]],[22,1,1,5,6,[[688,1,1,5,6]]],[23,1,1,6,7,[[785,1,1,6,7]]]],[9425,9582,10011,10183,11717,17860,19962]]],["Samaria",[102,94,[[10,18,16,0,16,[[303,1,1,0,1],[306,5,4,1,5],[308,1,1,5,6],[310,4,4,6,10],[311,2,2,10,12],[312,5,4,12,16]]],[11,46,41,16,57,[[313,2,2,16,18],[314,1,1,18,19],[315,1,1,19,20],[317,1,1,20,21],[318,5,4,21,25],[319,2,2,25,27],[322,7,5,27,32],[325,5,5,32,37],[326,3,3,37,40],[327,8,7,40,47],[329,6,5,47,52],[330,3,3,52,55],[333,1,1,55,56],[335,1,1,56,57]]],[13,7,7,57,64,[[384,2,2,57,59],[388,1,1,59,60],[391,1,1,60,61],[394,3,3,61,64]]],[15,1,1,64,65,[[416,1,1,64,65]]],[22,7,6,65,71,[[685,2,1,65,66],[686,1,1,66,67],[687,1,1,67,68],[688,2,2,68,70],[714,1,1,70,71]]],[23,2,2,71,73,[[767,1,1,71,72],[775,1,1,72,73]]],[25,6,6,73,79,[[817,4,4,73,77],[824,2,2,77,79]]],[27,6,6,79,85,[[868,1,1,79,80],[869,2,2,80,82],[871,2,2,82,84],[874,1,1,84,85]]],[29,5,5,85,90,[[881,2,2,85,87],[882,1,1,87,88],[884,1,1,88,89],[886,1,1,89,90]]],[30,1,1,90,91,[[888,1,1,90,91]]],[32,3,3,91,94,[[893,3,3,91,94]]]],[9216,9307,9311,9312,9315,9343,9409,9418,9442,9451,9452,9469,9490,9517,9518,9531,9535,9536,9576,9577,9650,9693,9694,9698,9699,9708,9725,9794,9805,9810,9828,9829,9872,9877,9880,9881,9884,9910,9912,9919,9933,9938,9939,9942,9948,9950,9952,9984,9988,9989,10007,10009,10033,10034,10058,10132,10184,11544,11551,11653,11728,11772,11773,11779,12361,17791,17811,17838,17859,17861,18349,19497,19696,20808,20813,20815,20817,21011,21040,22179,22199,22200,22230,22232,22282,22404,22407,22411,22451,22495,22529,22580,22584,22585]]]]},{"k":"H8112","v":[["Shimronmeron",[1,1,[[5,1,1,0,1,[[198,1,1,0,1]]]],[6150]]]]},{"k":"H8113","v":[["*",[4,4,[[12,3,3,0,3,[[341,1,1,0,1],[348,1,1,1,2],[363,1,1,2,3]]],[13,1,1,3,4,[[395,1,1,3,4]]]],[10422,10718,11087,11804]]],["Shimri",[3,3,[[12,2,2,0,2,[[341,1,1,0,1],[348,1,1,1,2]]],[13,1,1,2,3,[[395,1,1,2,3]]]],[10422,10718,11804]]],["Simri",[1,1,[[12,1,1,0,1,[[363,1,1,0,1]]]],[11087]]]]},{"k":"H8114","v":[["*",[4,4,[[12,1,1,0,1,[[349,1,1,0,1]]],[13,1,1,1,2,[[377,1,1,1,2]]],[14,2,2,2,4,[[412,2,2,2,4]]]],[10725,11433,12284,12293]]],["Shamariah",[1,1,[[13,1,1,0,1,[[377,1,1,0,1]]]],[11433]]],["Shemariah",[3,3,[[12,1,1,0,1,[[349,1,1,0,1]]],[14,2,2,1,3,[[412,2,2,1,3]]]],[10725,12284,12293]]]]},{"k":"H8115","v":[["Samaria",[2,2,[[14,2,2,0,2,[[406,2,2,0,2]]]],[12120,12127]]]]},{"k":"H8116","v":[["Shimrith",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11703]]]]},{"k":"H8117","v":[["Shimronites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4513]]]]},{"k":"H8118","v":[["Samaritans",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10012]]]]},{"k":"H8119","v":[["Shimrath",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10596]]]]},{"k":"H8120","v":[["ministered",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21943]]]]},{"k":"H8121","v":[["*",[134,127,[[0,6,6,0,6,[[14,2,2,0,2],[18,1,1,2,3],[27,1,1,3,4],[31,1,1,4,5],[36,1,1,5,6]]],[1,4,4,6,10,[[65,1,1,6,7],[66,1,1,7,8],[71,2,2,8,10]]],[2,1,1,10,11,[[111,1,1,10,11]]],[3,2,2,11,13,[[137,1,1,11,12],[141,1,1,12,13]]],[4,10,10,13,23,[[156,3,3,13,16],[163,1,1,16,17],[168,1,1,17,18],[169,1,1,18,19],[175,1,1,19,20],[176,2,2,20,22],[185,1,1,22,23]]],[5,13,12,23,35,[[187,2,2,23,25],[194,1,1,25,26],[196,4,3,26,29],[198,1,1,29,30],[199,1,1,30,31],[205,3,3,31,34],[209,1,1,34,35]]],[6,6,6,35,41,[[215,1,1,35,36],[219,1,1,36,37],[221,1,1,37,38],[229,1,1,38,39],[230,1,1,39,40],[231,1,1,40,41]]],[8,1,1,41,42,[[246,1,1,41,42]]],[9,5,5,42,47,[[268,1,1,42,43],[269,1,1,43,44],[278,2,2,44,46],[289,1,1,46,47]]],[10,1,1,47,48,[[312,1,1,47,48]]],[11,5,4,48,52,[[315,1,1,48,49],[322,1,1,49,50],[335,3,2,50,52]]],[13,1,1,52,53,[[384,1,1,52,53]]],[15,1,1,53,54,[[419,1,1,53,54]]],[17,1,1,54,55,[[443,1,1,54,55]]],[18,14,14,55,69,[[496,1,1,55,56],[527,1,1,56,57],[535,1,1,57,58],[549,2,2,58,60],[551,1,1,60,61],[561,1,1,61,62],[566,1,1,62,63],[581,2,2,63,65],[590,1,1,65,66],[598,1,1,66,67],[613,1,1,67,68],[625,1,1,68,69]]],[20,35,32,69,101,[[659,5,4,69,73],[660,6,6,73,79],[661,1,1,79,80],[662,4,4,80,84],[663,2,2,84,86],[664,3,3,86,89],[665,1,1,89,90],[666,4,3,90,93],[667,6,5,93,98],[668,1,1,98,99],[669,1,1,99,100],[670,1,1,100,101]]],[21,1,1,101,102,[[671,1,1,101,102]]],[22,10,9,102,111,[[691,1,1,102,103],[716,2,1,103,104],[719,1,1,104,105],[723,1,1,105,106],[727,1,1,106,107],[732,1,1,107,108],[737,1,1,108,109],[738,2,2,109,111]]],[23,3,3,111,114,[[752,1,1,111,112],[759,1,1,112,113],[775,1,1,113,114]]],[25,2,2,114,116,[[809,1,1,114,115],[833,1,1,115,116]]],[28,3,3,116,119,[[877,2,2,116,118],[878,1,1,118,119]]],[29,1,1,119,120,[[886,1,1,119,120]]],[31,2,1,120,121,[[892,2,1,120,121]]],[32,1,1,121,122,[[895,1,1,121,122]]],[33,1,1,122,123,[[902,1,1,122,123]]],[34,1,1,123,124,[[905,1,1,123,124]]],[37,1,1,124,125,[[918,1,1,124,125]]],[38,2,2,125,127,[[925,1,1,125,126],[928,1,1,126,127]]]],[372,377,480,784,959,1092,1968,1995,2116,2139,3376,4351,4475,5023,5045,5051,5238,5348,5367,5511,5538,5540,5824,5855,5866,6031,6076,6077,6091,6131,6159,6333,6348,6355,6464,6654,6787,6847,7038,7097,7121,7454,8073,8116,8297,8298,8657,9516,9598,9826,10170,10176,11576,12423,13045,14172,14669,14787,15005,15017,15064,15270,15362,15590,15593,15816,16087,16204,16374,17318,17320,17324,17329,17344,17350,17351,17352,17353,17355,17375,17382,17384,17388,17396,17410,17415,17418,17422,17429,17440,17467,17473,17475,17478,17481,17484,17486,17488,17498,17520,17525,17543,17916,18398,18476,18567,18646,18735,18819,18840,18841,19155,19324,19726,20620,21255,22321,22342,22358,22490,22576,22614,22729,22779,22983,23100,23140]]],["+",[14,14,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,2,2,1,3,[[156,2,2,1,3]]],[5,6,6,3,9,[[187,1,1,3,4],[199,1,1,4,5],[205,3,3,5,8],[209,1,1,8,9]]],[6,3,3,9,12,[[221,1,1,9,10],[230,1,1,10,11],[231,1,1,11,12]]],[11,1,1,12,13,[[322,1,1,12,13]]],[37,1,1,13,14,[[918,1,1,13,14]]]],[4351,5045,5051,5866,6159,6333,6348,6355,6464,6847,7097,7121,9826,22983]]],["Sun",[2,2,[[5,1,1,0,1,[[196,1,1,0,1]]],[38,1,1,1,2,[[928,1,1,1,2]]]],[6076,23140]]],["sun",[117,110,[[0,6,6,0,6,[[14,2,2,0,2],[18,1,1,2,3],[27,1,1,3,4],[31,1,1,4,5],[36,1,1,5,6]]],[1,4,4,6,10,[[65,1,1,6,7],[66,1,1,7,8],[71,2,2,8,10]]],[2,1,1,10,11,[[111,1,1,10,11]]],[3,1,1,11,12,[[141,1,1,11,12]]],[4,8,8,12,20,[[156,1,1,12,13],[163,1,1,13,14],[168,1,1,14,15],[169,1,1,15,16],[175,1,1,16,17],[176,2,2,17,19],[185,1,1,19,20]]],[5,6,5,20,25,[[187,1,1,20,21],[194,1,1,21,22],[196,3,2,22,24],[198,1,1,24,25]]],[6,3,3,25,28,[[215,1,1,25,26],[219,1,1,26,27],[229,1,1,27,28]]],[8,1,1,28,29,[[246,1,1,28,29]]],[9,5,5,29,34,[[268,1,1,29,30],[269,1,1,30,31],[278,2,2,31,33],[289,1,1,33,34]]],[10,1,1,34,35,[[312,1,1,34,35]]],[11,4,3,35,38,[[315,1,1,35,36],[335,3,2,36,38]]],[13,1,1,38,39,[[384,1,1,38,39]]],[15,1,1,39,40,[[419,1,1,39,40]]],[17,1,1,40,41,[[443,1,1,40,41]]],[18,14,14,41,55,[[496,1,1,41,42],[527,1,1,42,43],[535,1,1,43,44],[549,2,2,44,46],[551,1,1,46,47],[561,1,1,47,48],[566,1,1,48,49],[581,2,2,49,51],[590,1,1,51,52],[598,1,1,52,53],[613,1,1,53,54],[625,1,1,54,55]]],[20,35,32,55,87,[[659,5,4,55,59],[660,6,6,59,65],[661,1,1,65,66],[662,4,4,66,70],[663,2,2,70,72],[664,3,3,72,75],[665,1,1,75,76],[666,4,3,76,79],[667,6,5,79,84],[668,1,1,84,85],[669,1,1,85,86],[670,1,1,86,87]]],[21,1,1,87,88,[[671,1,1,87,88]]],[22,9,8,88,96,[[691,1,1,88,89],[716,2,1,89,90],[719,1,1,90,91],[723,1,1,91,92],[727,1,1,92,93],[737,1,1,93,94],[738,2,2,94,96]]],[23,3,3,96,99,[[752,1,1,96,97],[759,1,1,97,98],[775,1,1,98,99]]],[25,2,2,99,101,[[809,1,1,99,100],[833,1,1,100,101]]],[28,3,3,101,104,[[877,2,2,101,103],[878,1,1,103,104]]],[29,1,1,104,105,[[886,1,1,104,105]]],[31,2,1,105,106,[[892,2,1,105,106]]],[32,1,1,106,107,[[895,1,1,106,107]]],[33,1,1,107,108,[[902,1,1,107,108]]],[34,1,1,108,109,[[905,1,1,108,109]]],[38,1,1,109,110,[[925,1,1,109,110]]]],[372,377,480,784,959,1092,1968,1995,2116,2139,3376,4475,5023,5238,5348,5367,5511,5538,5540,5824,5855,6031,6077,6091,6131,6654,6787,7038,7454,8073,8116,8297,8298,8657,9516,9598,10170,10176,11576,12423,13045,14172,14669,14787,15005,15017,15064,15270,15362,15590,15593,15816,16087,16204,16374,17318,17320,17324,17329,17344,17350,17351,17352,17353,17355,17375,17382,17384,17388,17396,17410,17415,17418,17422,17429,17440,17467,17473,17475,17478,17481,17484,17486,17488,17498,17520,17525,17543,17916,18398,18476,18567,18646,18819,18840,18841,19155,19324,19726,20620,21255,22321,22342,22358,22490,22576,22614,22729,22779,23100]]],["windows",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18735]]]]},{"k":"H8122","v":[["sun",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21919]]]]},{"k":"H8123","v":[["*",[38,37,[[6,38,37,0,37,[[223,1,1,0,1],[224,9,9,1,10],[225,9,9,10,19],[226,19,18,19,37]]]],[6908,6910,6912,6914,6916,6919,6921,6924,6925,6929,6930,6932,6933,6935,6936,6939,6940,6941,6945,6950,6951,6952,6955,6956,6958,6959,6961,6962,6963,6969,6972,6974,6975,6976,6977,6978,6979]]],["+",[2,2,[[6,2,2,0,2,[[224,2,2,0,2]]]],[6914,6916]]],["Samson",[33,32,[[6,33,32,0,32,[[223,1,1,0,1],[224,4,4,1,5],[225,9,9,5,14],[226,19,18,14,32]]]],[6908,6910,6912,6919,6921,6930,6932,6933,6935,6936,6939,6940,6941,6945,6950,6951,6952,6955,6956,6958,6959,6961,6962,6963,6969,6972,6974,6975,6976,6977,6978,6979]]],["Samson's",[3,3,[[6,3,3,0,3,[[224,3,3,0,3]]]],[6924,6925,6929]]]]},{"k":"H8124","v":[["Shimshai",[4,4,[[14,4,4,0,4,[[406,4,4,0,4]]]],[12118,12119,12127,12133]]]]},{"k":"H8125","v":[["Shamsherai",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10601]]]]},{"k":"H8126","v":[["Shumathites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10359]]]]},{"k":"H8127","v":[["*",[55,48,[[0,1,1,0,1,[[48,1,1,0,1]]],[1,5,2,1,3,[[70,5,2,1,3]]],[2,2,1,3,4,[[113,2,1,3,4]]],[3,1,1,4,5,[[127,1,1,4,5]]],[4,3,2,5,7,[[171,2,1,5,6],[184,1,1,6,7]]],[8,4,3,7,10,[[237,1,1,7,8],[249,3,2,8,10]]],[10,2,2,10,12,[[300,1,1,10,11],[312,1,1,11,12]]],[13,1,1,12,13,[[375,1,1,12,13]]],[17,7,7,13,20,[[439,1,1,13,14],[448,1,1,14,15],[451,1,1,15,16],[454,1,1,16,17],[464,1,1,17,18],[474,1,1,18,19],[476,1,1,19,20]]],[18,8,8,20,28,[[480,1,1,20,21],[512,1,1,21,22],[514,1,1,22,23],[522,1,1,23,24],[534,1,1,24,25],[535,1,1,25,26],[589,1,1,26,27],[601,1,1,27,28]]],[19,3,3,28,31,[[637,1,1,28,29],[652,1,1,29,30],[657,1,1,30,31]]],[21,4,4,31,35,[[674,1,1,31,32],[675,1,1,32,33],[676,1,1,33,34],[677,1,1,34,35]]],[23,2,2,35,37,[[775,2,2,35,37]]],[24,2,2,37,39,[[798,1,1,37,38],[799,1,1,38,39]]],[25,3,3,39,42,[[819,1,1,39,40],[828,2,2,40,42]]],[28,2,1,42,43,[[876,2,1,42,43]]],[29,3,3,43,46,[[881,1,1,43,44],[882,1,1,44,45],[884,1,1,45,46]]],[32,1,1,46,47,[[895,1,1,46,47]]],[37,1,1,47,48,[[919,1,1,47,48]]]],[1485,2101,2104,3466,4057,5427,5782,7253,7512,7513,9097,9519,11381,12940,13167,13247,13317,13549,13862,13902,13964,14426,14462,14605,14772,14785,15813,16108,16682,17132,17265,17584,17612,17620,17631,19720,19721,20348,20370,20851,21127,21136,22297,22410,22416,22454,22613,23006]]],["+",[2,2,[[1,1,1,0,1,[[70,1,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]]],[2104,13549]]],["crag",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13862]]],["forefront",[1,1,[[8,1,1,0,1,[[249,1,1,0,1]]]],[7513]]],["ivory",[10,10,[[10,2,2,0,2,[[300,1,1,0,1],[312,1,1,1,2]]],[13,1,1,2,3,[[375,1,1,2,3]]],[18,1,1,3,4,[[522,1,1,3,4]]],[21,2,2,4,6,[[675,1,1,4,5],[677,1,1,5,6]]],[25,2,2,6,8,[[828,2,2,6,8]]],[29,2,2,8,10,[[881,1,1,8,9],[884,1,1,9,10]]]],[9097,9519,11381,14605,17612,17631,21127,21136,22410,22454]]],["sharp",[2,1,[[8,2,1,0,1,[[249,2,1,0,1]]]],[7512]]],["teeth",[30,29,[[0,1,1,0,1,[[48,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[8,1,1,3,4,[[237,1,1,3,4]]],[17,5,5,4,9,[[439,1,1,4,5],[448,1,1,5,6],[451,1,1,6,7],[454,1,1,7,8],[476,1,1,8,9]]],[18,7,7,9,16,[[480,1,1,9,10],[512,1,1,10,11],[514,1,1,11,12],[534,1,1,12,13],[535,1,1,13,14],[589,1,1,14,15],[601,1,1,15,16]]],[19,2,2,16,18,[[637,1,1,16,17],[657,1,1,17,18]]],[21,2,2,18,20,[[674,1,1,18,19],[676,1,1,19,20]]],[23,2,2,20,22,[[775,2,2,20,22]]],[24,2,2,22,24,[[798,1,1,22,23],[799,1,1,23,24]]],[25,1,1,24,25,[[819,1,1,24,25]]],[28,2,1,25,26,[[876,2,1,25,26]]],[29,1,1,26,27,[[882,1,1,26,27]]],[32,1,1,27,28,[[895,1,1,27,28]]],[37,1,1,28,29,[[919,1,1,28,29]]]],[1485,4057,5782,7253,12940,13167,13247,13317,13902,13964,14426,14462,14772,14785,15813,16108,16682,17265,17584,17620,19720,19721,20348,20370,20851,22297,22416,22613,23006]]],["tooth",[9,5,[[1,4,2,0,2,[[70,4,2,0,2]]],[2,2,1,2,3,[[113,2,1,2,3]]],[4,2,1,3,4,[[171,2,1,3,4]]],[19,1,1,4,5,[[652,1,1,4,5]]]],[2101,2104,3466,5427,17132]]]]},{"k":"H8128","v":[["teeth",[3,3,[[26,3,3,0,3,[[856,3,3,0,3]]]],[21938,21940,21952]]]]},{"k":"H8129","v":[["Shen",[1,1,[[8,1,1,0,1,[[242,1,1,0,1]]]],[7364]]]]},{"k":"H8130","v":[["*",[146,139,[[0,7,7,0,7,[[23,1,1,0,1],[25,1,1,1,2],[28,2,2,2,4],[36,3,3,4,7]]],[1,4,4,7,11,[[50,1,1,7,8],[67,1,1,8,9],[69,1,1,9,10],[72,1,1,10,11]]],[2,2,2,11,13,[[108,1,1,11,12],[115,1,1,12,13]]],[3,1,1,13,14,[[126,1,1,13,14]]],[4,20,18,14,32,[[156,1,1,14,15],[157,1,1,15,16],[159,3,2,16,18],[164,1,1,18,19],[168,1,1,19,20],[171,3,3,20,23],[173,4,3,23,26],[174,2,2,26,28],[176,1,1,28,29],[182,1,1,29,30],[184,1,1,30,31],[185,1,1,31,32]]],[5,1,1,32,33,[[206,1,1,32,33]]],[6,4,3,33,36,[[221,1,1,33,34],[224,1,1,34,35],[225,2,1,35,36]]],[9,8,6,36,42,[[271,1,1,36,37],[279,3,2,37,39],[285,2,1,39,40],[288,2,2,40,42]]],[10,1,1,42,43,[[312,1,1,42,43]]],[13,3,3,43,46,[[367,1,1,43,44],[384,1,1,44,45],[385,1,1,45,46]]],[16,3,3,46,49,[[434,3,3,46,49]]],[17,3,3,49,52,[[443,1,1,49,50],[466,1,1,50,51],[469,1,1,51,52]]],[18,41,40,52,92,[[482,1,1,52,53],[486,1,1,53,54],[488,1,1,54,55],[495,2,2,55,57],[498,1,1,57,58],[502,1,1,58,59],[503,1,1,59,60],[508,1,1,60,61],[511,1,1,61,62],[512,1,1,62,63],[513,1,1,63,64],[515,1,1,64,65],[518,1,1,65,66],[521,2,2,66,68],[522,1,1,68,69],[527,1,1,69,70],[532,1,1,70,71],[545,1,1,71,72],[546,2,2,72,74],[558,1,1,74,75],[560,1,1,75,76],[563,1,1,76,77],[566,1,1,77,78],[574,1,1,78,79],[578,1,1,79,80],[582,1,1,80,81],[583,2,2,81,83],[595,1,1,83,84],[596,4,4,84,88],[597,1,1,88,89],[606,1,1,89,90],[616,3,2,90,92]]],[19,26,25,92,117,[[628,2,2,92,94],[632,1,1,94,95],[633,1,1,95,96],[635,3,2,96,98],[636,1,1,98,99],[638,1,1,99,100],[639,1,1,100,101],[640,2,2,101,103],[641,2,2,103,105],[642,2,2,105,107],[646,1,1,107,108],[652,2,2,108,110],[653,2,2,110,112],[654,1,1,112,113],[655,1,1,113,114],[656,2,2,114,116],[657,1,1,116,117]]],[20,3,3,117,120,[[660,2,2,117,119],[661,1,1,119,120]]],[22,4,4,120,124,[[679,1,1,120,121],[738,1,1,121,122],[739,1,1,122,123],[744,1,1,123,124]]],[23,2,2,124,126,[[756,1,1,124,125],[788,1,1,125,126]]],[25,4,4,126,130,[[817,2,2,126,128],[824,1,1,128,129],[836,1,1,129,130]]],[27,1,1,130,131,[[870,1,1,130,131]]],[29,4,4,131,135,[[883,3,3,131,134],[884,1,1,134,135]]],[32,1,1,135,136,[[895,1,1,135,136]]],[37,1,1,136,137,[[918,1,1,136,137]]],[38,2,2,137,139,[[925,1,1,137,138],[926,1,1,138,139]]]],[651,719,826,828,1087,1088,1091,1542,2020,2056,2149,3298,3541,4023,5046,5062,5121,5126,5271,5364,5410,5412,5417,5462,5463,5464,5483,5486,5528,5715,5799,5821,6377,6836,6925,6931,8140,8332,8339,8517,8620,8643,9488,11205,11549,11578,12835,12839,12850,13051,13617,13700,13978,14034,14064,14135,14158,14199,14270,14278,14337,14409,14429,14440,14509,14549,14578,14581,14604,14685,14744,14901,14939,14949,15232,15243,15301,15349,15488,15516,15631,15661,15692,15876,16002,16011,16026,16061,16080,16137,16260,16261,16422,16429,16529,16556,16615,16638,16646,16703,16720,16752,16771,16789,16792,16817,16834,16932,17130,17134,17165,17169,17175,17212,17234,17248,17274,17350,17351,17367,17668,18836,18851,18927,19257,20014,20789,20799,21035,21350,22223,22433,22438,22444,22458,22610,22993,23092,23119]]],["+",[13,12,[[2,1,1,0,1,[[108,1,1,0,1]]],[4,2,2,1,3,[[171,1,1,1,2],[173,1,1,2,3]]],[6,2,1,3,4,[[225,2,1,3,4]]],[9,3,3,4,7,[[279,1,1,4,5],[285,1,1,5,6],[288,1,1,6,7]]],[18,3,3,7,10,[[486,1,1,7,8],[495,1,1,8,9],[546,1,1,9,10]]],[20,2,2,10,12,[[660,2,2,10,12]]]],[3298,5417,5464,6931,8339,8517,8620,14034,14135,14949,17350,17351]]],["Hate",[1,1,[[29,1,1,0,1,[[883,1,1,0,1]]]],[22438]]],["enemies",[3,3,[[1,1,1,0,1,[[50,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]],[13,1,1,2,3,[[367,1,1,2,3]]]],[1542,8517,11205]]],["enemy",[2,2,[[19,2,2,0,2,[[652,1,1,0,1],[654,1,1,1,2]]]],[17134,17175]]],["foes",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12850]]],["hate",[63,61,[[0,2,2,0,2,[[23,1,1,0,1],[25,1,1,1,2]]],[1,1,1,2,3,[[69,1,1,2,3]]],[2,1,1,3,4,[[115,1,1,3,4]]],[3,1,1,4,5,[[126,1,1,4,5]]],[4,8,8,5,13,[[157,1,1,5,6],[159,2,2,6,8],[174,1,1,8,9],[176,1,1,9,10],[182,1,1,10,11],[184,1,1,11,12],[185,1,1,12,13]]],[6,2,2,13,15,[[221,1,1,13,14],[224,1,1,14,15]]],[9,1,1,15,16,[[288,1,1,15,16]]],[10,1,1,16,17,[[312,1,1,16,17]]],[13,2,2,17,19,[[384,1,1,17,18],[385,1,1,18,19]]],[17,1,1,19,20,[[443,1,1,19,20]]],[18,25,24,20,44,[[495,1,1,20,21],[498,1,1,21,22],[502,1,1,22,23],[511,1,1,23,24],[512,1,1,24,25],[515,1,1,25,26],[518,1,1,26,27],[521,1,1,27,28],[545,1,1,28,29],[546,1,1,29,30],[560,1,1,30,31],[563,1,1,31,32],[566,1,1,32,33],[574,1,1,33,34],[578,1,1,34,35],[582,1,1,35,36],[595,1,1,36,37],[596,4,4,37,41],[606,1,1,41,42],[616,3,2,42,44]]],[19,9,8,44,52,[[628,1,1,44,45],[633,1,1,45,46],[635,3,2,46,48],[636,1,1,48,49],[646,1,1,49,50],[652,1,1,50,51],[656,1,1,51,52]]],[20,1,1,52,53,[[661,1,1,52,53]]],[22,1,1,53,54,[[739,1,1,53,54]]],[23,1,1,54,55,[[788,1,1,54,55]]],[25,1,1,55,56,[[817,1,1,55,56]]],[29,3,3,56,59,[[883,2,2,56,58],[884,1,1,58,59]]],[32,1,1,59,60,[[895,1,1,59,60]]],[37,1,1,60,61,[[918,1,1,60,61]]]],[651,719,2056,3541,4023,5062,5121,5126,5483,5528,5715,5799,5821,6836,6925,8643,9488,11549,11578,13051,14158,14199,14270,14409,14429,14509,14549,14581,14901,14939,15243,15301,15349,15488,15516,15631,15876,16002,16011,16026,16061,16137,16260,16261,16422,16556,16615,16638,16646,16932,17130,17234,17367,18851,20014,20789,22433,22444,22458,22610,22993]]],["hated",[35,33,[[0,5,5,0,5,[[28,2,2,0,2],[36,3,3,2,5]]],[4,6,5,5,10,[[156,1,1,5,6],[171,2,2,6,8],[173,3,2,8,10]]],[5,1,1,10,11,[[206,1,1,10,11]]],[9,3,2,11,13,[[271,1,1,11,12],[279,2,1,12,13]]],[16,2,2,13,15,[[434,2,2,13,15]]],[17,1,1,15,16,[[466,1,1,15,16]]],[18,6,6,16,22,[[503,1,1,16,17],[508,1,1,17,18],[521,1,1,18,19],[532,1,1,19,20],[583,2,2,20,22]]],[19,4,4,22,26,[[628,1,1,22,23],[632,1,1,23,24],[641,2,2,24,26]]],[22,2,2,26,28,[[738,1,1,26,27],[744,1,1,27,28]]],[23,1,1,28,29,[[756,1,1,28,29]]],[25,2,2,29,31,[[817,1,1,29,30],[836,1,1,30,31]]],[27,1,1,31,32,[[870,1,1,31,32]]],[38,1,1,32,33,[[925,1,1,32,33]]]],[826,828,1087,1088,1091,5046,5410,5412,5462,5463,6377,8140,8332,12835,12839,13617,14278,14337,14578,14744,15661,15692,16429,16529,16789,16792,18836,18927,19257,20799,21350,22223,23092]]],["hateful",[1,1,[[18,1,1,0,1,[[513,1,1,0,1]]]],[14440]]],["haters",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15232]]],["hatest",[4,4,[[18,3,3,0,3,[[482,1,1,0,1],[522,1,1,1,2],[527,1,1,2,3]]],[25,1,1,3,4,[[824,1,1,3,4]]]],[13978,14604,14685,21035]]],["hateth",[20,20,[[1,1,1,0,1,[[72,1,1,0,1]]],[4,4,4,1,5,[[159,1,1,1,2],[164,1,1,2,3],[168,1,1,3,4],[174,1,1,4,5]]],[17,1,1,5,6,[[469,1,1,5,6]]],[18,2,2,6,8,[[488,1,1,6,7],[597,1,1,7,8]]],[19,10,10,8,18,[[638,1,1,8,9],[639,1,1,9,10],[640,2,2,10,12],[642,2,2,12,14],[653,2,2,14,16],[655,1,1,16,17],[656,1,1,17,18]]],[22,1,1,18,19,[[679,1,1,18,19]]],[38,1,1,19,20,[[926,1,1,19,20]]]],[2149,5121,5271,5364,5486,13700,14064,16080,16703,16720,16752,16771,16817,16834,17165,17169,17212,17248,17668,23119]]],["hating",[1,1,[[1,1,1,0,1,[[67,1,1,0,1]]]],[2020]]],["odious",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17274]]]]},{"k":"H8131","v":[["hate",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21856]]]]},{"k":"H8132","v":[["*",[3,3,[[11,1,1,0,1,[[337,1,1,0,1]]],[20,1,1,1,2,[[666,1,1,1,2]]],[24,1,1,2,3,[[800,1,1,2,3]]]],[10251,17459,20421]]],["+",[1,1,[[11,1,1,0,1,[[337,1,1,0,1]]]],[10251]]],["changed",[2,2,[[20,1,1,0,1,[[666,1,1,0,1]]],[24,1,1,1,2,[[800,1,1,1,2]]]],[17459,20421]]]]},{"k":"H8133","v":[["*",[21,21,[[14,2,2,0,2,[[408,2,2,0,2]]],[26,19,19,2,21,[[851,2,2,2,4],[852,3,3,4,7],[853,1,1,7,8],[854,3,3,8,11],[855,3,3,11,14],[856,7,7,14,21]]]],[12162,12163,21767,21779,21826,21834,21835,21853,21880,21883,21884,21913,21920,21922,21936,21940,21952,21956,21957,21958,21961]]],["alter",[2,2,[[14,2,2,0,2,[[408,2,2,0,2]]]],[12162,12163]]],["change",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21958]]],["changed",[12,12,[[26,12,12,0,12,[[851,1,1,0,1],[852,3,3,1,4],[853,1,1,4,5],[854,3,3,5,8],[855,3,3,8,11],[856,1,1,11,12]]]],[21767,21826,21834,21835,21853,21880,21883,21884,21913,21920,21922,21961]]],["changeth",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21779]]],["diverse",[5,5,[[26,5,5,0,5,[[856,5,5,0,5]]]],[21936,21940,21952,21956,21957]]]]},{"k":"H8134","v":[["Shinab",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[338]]]]},{"k":"H8135","v":[["*",[17,16,[[3,1,1,0,1,[[151,1,1,0,1]]],[4,2,2,1,3,[[153,1,1,1,2],[161,1,1,2,3]]],[9,2,1,3,4,[[279,2,1,3,4]]],[18,4,4,4,8,[[502,1,1,4,5],[586,2,2,5,7],[616,1,1,7,8]]],[19,4,4,8,12,[[637,2,2,8,10],[642,1,1,10,11],[653,1,1,11,12]]],[20,2,2,12,14,[[667,2,2,12,14]]],[25,2,2,14,16,[[824,1,1,14,15],[836,1,1,15,16]]]],[4865,4919,5185,8332,14270,15758,15760,16261,16668,16674,16824,17167,17476,17481,21036,21355]]],["+",[3,3,[[4,1,1,0,1,[[161,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[25,1,1,2,3,[[836,1,1,2,3]]]],[5185,8332,21355]]],["Hatred",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16668]]],["hated",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4919]]],["hatefully",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21036]]],["hatred",[11,11,[[3,1,1,0,1,[[151,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[18,4,4,2,6,[[502,1,1,2,3],[586,2,2,3,5],[616,1,1,5,6]]],[19,3,3,6,9,[[637,1,1,6,7],[642,1,1,7,8],[653,1,1,8,9]]],[20,2,2,9,11,[[667,2,2,9,11]]]],[4865,8332,14270,15758,15760,16261,16674,16824,17167,17476,17481]]]]},{"k":"H8136","v":[["angels",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14917]]]]},{"k":"H8137","v":[["Shenazar",[1,1,[[12,1,1,0,1,[[340,1,1,0,1]]]],[10379]]]]},{"k":"H8138","v":[["*",[21,20,[[0,1,1,0,1,[[40,1,1,0,1]]],[8,2,2,1,3,[[256,1,1,1,2],[261,1,1,2,3]]],[9,1,1,3,4,[[286,1,1,3,4]]],[10,3,2,4,6,[[304,1,1,4,5],[308,2,1,5,6]]],[15,1,1,6,7,[[425,1,1,6,7]]],[16,3,3,7,10,[[426,1,1,7,8],[427,1,1,8,9],[428,1,1,9,10]]],[17,2,2,10,12,[[449,1,1,10,11],[464,1,1,11,12]]],[18,1,1,12,13,[[566,1,1,12,13]]],[19,4,4,13,17,[[644,1,1,13,14],[651,1,1,14,15],[653,1,1,15,16],[658,1,1,16,17]]],[23,2,2,17,19,[[746,1,1,17,18],[796,1,1,18,19]]],[38,1,1,19,20,[[927,1,1,19,20]]]],[1227,7785,7913,8564,9220,9375,12692,12709,12733,12755,13201,13554,15360,16882,17100,17152,17289,19001,20309,23126]]],["+",[4,4,[[8,1,1,0,1,[[256,1,1,0,1]]],[17,1,1,1,2,[[464,1,1,1,2]]],[23,2,2,2,4,[[746,1,1,2,3],[796,1,1,3,4]]]],[7785,13554,19001,20309]]],["again",[1,1,[[15,1,1,0,1,[[425,1,1,0,1]]]],[12692]]],["alter",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15360]]],["change",[2,2,[[19,1,1,0,1,[[651,1,1,0,1]]],[38,1,1,1,2,[[927,1,1,1,2]]]],[17100,23126]]],["changest",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13201]]],["diverse",[2,2,[[16,2,2,0,2,[[426,1,1,0,1],[428,1,1,1,2]]]],[12709,12755]]],["doubled",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1227]]],["pervert",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17289]]],["preferred",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12733]]],["repeateth",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16882]]],["returneth",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17152]]],["struck",[1,1,[[9,1,1,0,1,[[286,1,1,0,1]]]],[8564]]],["thyself",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9220]]],["time",[3,2,[[8,1,1,0,1,[[261,1,1,0,1]]],[10,2,1,1,2,[[308,2,1,1,2]]]],[7913,9375]]]]},{"k":"H8139","v":[["sleep",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21923]]]]},{"k":"H8140","v":[["*",[7,7,[[14,5,5,0,5,[[406,1,1,0,1],[407,2,2,1,3],[408,2,2,3,5]]],[26,2,2,5,7,[[854,1,1,5,6],[856,1,1,6,7]]]],[12134,12145,12147,12154,12166,21905,21934]]],["year",[5,5,[[14,4,4,0,4,[[406,1,1,0,1],[407,1,1,1,2],[408,2,2,2,4]]],[26,1,1,4,5,[[856,1,1,4,5]]]],[12134,12147,12154,12166,21934]]],["years",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[854,1,1,1,2]]]],[12145,21905]]]]},{"k":"H8141","v":[["*",[812,647,[[0,121,103,0,103,[[0,1,1,0,1],[4,28,28,1,29],[5,1,1,29,30],[6,2,2,30,32],[7,1,1,32,33],[8,2,2,33,35],[10,19,18,35,53],[11,1,1,53,54],[13,3,2,54,56],[14,1,1,56,57],[15,2,2,57,59],[16,6,5,59,64],[20,1,1,64,65],[22,2,1,65,66],[24,7,4,66,70],[25,2,2,70,72],[28,4,4,72,76],[30,4,2,76,78],[34,1,1,78,79],[36,1,1,79,80],[40,16,14,80,94],[44,3,2,94,96],[46,11,5,96,101],[49,2,2,101,103]]],[1,28,23,103,126,[[55,6,3,103,106],[56,2,1,106,107],[61,4,4,107,111],[65,1,1,111,112],[70,1,1,112,113],[72,5,5,113,118],[78,1,1,118,119],[79,3,2,119,121],[83,3,3,121,124],[87,1,1,124,125],[89,1,1,125,126]]],[2,57,41,126,167,[[98,1,1,126,127],[101,1,1,127,128],[103,1,1,128,129],[105,1,1,129,130],[108,3,3,130,133],[112,4,4,133,137],[114,35,22,137,159],[116,11,8,159,167]]],[3,92,82,167,249,[[117,16,16,167,183],[120,14,7,183,190],[122,3,2,190,192],[123,26,26,192,218],[124,2,2,218,220],[125,1,1,220,221],[126,1,1,221,222],[129,1,1,222,223],[130,5,3,223,226],[131,1,1,226,227],[142,2,2,227,229],[144,6,6,229,235],[145,10,10,235,245],[148,2,2,245,247],[149,2,2,247,249]]],[4,29,21,249,270,[[153,1,1,249,250],[154,2,2,250,252],[160,2,2,252,254],[163,2,1,254,255],[166,4,2,255,257],[167,8,5,257,262],[168,1,1,262,263],[176,1,1,263,264],[178,2,1,264,265],[181,1,1,265,266],[183,3,2,266,268],[184,1,1,268,269],[186,1,1,269,270]]],[5,6,5,270,275,[[191,2,2,270,272],[200,3,2,272,274],[210,1,1,274,275]]],[6,24,23,275,298,[[212,1,1,275,276],[213,4,4,276,280],[214,1,1,280,281],[215,1,1,281,282],[216,2,2,282,284],[218,1,1,284,285],[219,1,1,285,286],[220,4,3,286,289],[221,2,2,289,291],[222,4,4,291,295],[223,1,1,295,296],[225,1,1,296,297],[226,1,1,297,298]]],[7,1,1,298,299,[[232,1,1,298,299]]],[8,10,7,299,306,[[236,2,1,299,300],[239,2,2,300,302],[242,3,2,302,304],[248,2,1,304,305],[264,1,1,305,306]]],[9,20,15,306,321,[[268,3,2,306,308],[270,1,1,308,309],[271,4,2,309,311],[277,1,1,311,312],[279,2,2,312,314],[280,1,1,314,315],[281,1,1,315,316],[285,3,3,316,319],[287,3,1,319,320],[290,1,1,320,321]]],[10,53,38,321,359,[[292,4,2,321,323],[294,1,1,323,324],[295,2,1,324,325],[296,5,3,325,328],[297,1,1,328,329],[299,2,2,329,331],[300,4,3,331,334],[301,1,1,334,335],[304,4,3,335,338],[305,9,7,338,345],[306,9,5,345,350],[307,1,1,350,351],[308,1,1,351,352],[310,2,2,352,354],[312,7,5,354,359]]],[11,90,62,359,421,[[313,1,1,359,360],[315,2,1,360,361],[320,9,7,361,368],[321,1,1,368,369],[322,1,1,369,370],[323,3,3,370,373],[324,3,2,373,375],[325,5,3,375,378],[326,7,5,378,383],[327,15,10,383,393],[328,3,2,393,395],[329,6,4,395,399],[330,9,5,399,404],[331,3,1,404,405],[332,1,1,405,406],[333,4,2,406,408],[334,3,2,408,410],[335,4,3,410,413],[336,5,4,413,417],[337,5,4,417,421]]],[12,13,11,421,432,[[339,1,1,421,422],[340,2,1,422,423],[357,1,1,423,424],[358,1,1,424,425],[360,3,3,425,428],[363,1,1,428,429],[364,2,2,429,431],[366,2,1,431,432]]],[13,78,57,432,489,[[369,1,1,432,433],[374,2,2,433,435],[375,5,4,435,439],[377,2,1,439,440],[378,3,2,440,442],[379,2,2,442,444],[380,2,2,444,446],[381,2,2,446,448],[382,3,3,448,451],[383,1,1,451,452],[384,1,1,452,453],[386,2,1,453,454],[387,3,2,454,456],[388,3,2,456,458],[389,1,1,458,459],[390,6,4,459,463],[391,4,3,463,466],[392,3,2,466,468],[393,6,3,468,471],[394,2,1,471,472],[395,3,2,472,474],[397,2,2,474,476],[399,4,2,476,478],[400,5,3,478,481],[401,1,1,481,482],[402,9,7,482,489]]],[14,5,4,489,493,[[403,1,1,489,490],[405,2,1,490,491],[409,2,2,491,493]]],[15,14,10,493,503,[[413,1,1,493,494],[414,1,1,494,495],[417,3,1,495,496],[421,2,2,496,498],[422,6,4,498,502],[425,1,1,502,503]]],[16,7,5,503,508,[[426,1,1,503,504],[427,1,1,504,505],[428,1,1,505,506],[434,4,2,506,508]]],[17,8,8,508,516,[[438,1,1,508,509],[445,1,1,509,510],[450,1,1,510,511],[451,1,1,511,512],[467,1,1,512,513],[471,2,2,513,515],[477,1,1,515,516]]],[18,15,13,516,529,[[508,1,1,516,517],[538,1,1,517,518],[542,1,1,518,519],[554,2,2,519,521],[555,1,1,521,522],[567,6,4,522,526],[572,1,1,526,527],[579,2,2,527,529]]],[19,5,5,529,534,[[630,1,1,529,530],[631,1,1,530,531],[632,1,1,531,532],[636,1,1,532,533],[637,1,1,533,534]]],[20,5,4,534,538,[[664,3,2,534,536],[669,1,1,536,537],[670,1,1,537,538]]],[22,27,20,538,558,[[684,1,1,538,539],[685,1,1,539,540],[692,1,1,540,541],[694,2,1,541,542],[698,2,2,542,544],[699,2,1,544,545],[701,3,2,545,547],[707,2,1,547,548],[710,1,1,548,549],[712,1,1,549,550],[714,1,1,550,551],[715,3,1,551,552],[716,3,3,552,555],[739,1,1,555,556],[741,1,1,556,557],[743,2,1,557,558]]],[23,42,34,558,592,[[745,2,2,558,560],[755,1,1,560,561],[761,1,1,561,562],[767,1,1,562,563],[769,6,4,563,567],[772,6,5,567,572],[773,1,1,572,573],[776,2,1,573,574],[778,2,1,574,575],[780,2,2,575,577],[783,2,2,577,579],[789,1,1,579,580],[790,1,1,580,581],[792,1,1,581,582],[795,3,2,582,584],[796,10,8,584,592]]],[25,28,25,592,617,[[802,2,2,592,594],[805,3,2,594,596],[809,1,1,596,597],[821,1,1,597,598],[823,1,1,598,599],[825,1,1,599,600],[827,1,1,600,601],[830,5,5,601,606],[831,1,1,606,607],[832,1,1,607,608],[833,2,2,608,610],[834,1,1,610,611],[839,2,2,611,613],[840,1,1,613,614],[841,3,1,614,615],[847,2,2,615,617]]],[26,14,12,617,629,[[850,3,3,617,620],[851,1,1,620,621],[857,1,1,621,622],[858,4,2,622,624],[859,1,1,624,625],[860,4,4,625,629]]],[28,2,2,629,631,[[877,2,2,629,631]]],[29,3,3,631,634,[[879,1,1,631,632],[880,1,1,632,633],[883,1,1,633,634]]],[32,1,1,634,635,[[898,1,1,634,635]]],[34,2,1,635,636,[[905,2,1,635,636]]],[36,3,3,636,639,[[909,2,2,636,638],[910,1,1,638,639]]],[37,8,7,639,646,[[911,3,3,639,642],[917,3,3,642,645],[924,2,1,645,646]]],[38,1,1,646,647,[[927,1,1,646,647]]]],[13,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,135,136,137,140,165,170,196,233,234,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,298,302,340,341,373,384,397,398,414,418,421,422,518,572,665,675,678,684,704,726,813,815,822,825,911,914,1039,1085,1196,1221,1222,1224,1225,1229,1230,1231,1241,1242,1243,1245,1248,1249,1364,1369,1428,1429,1437,1438,1448,1528,1532,1671,1673,1675,1692,1818,1821,1856,1857,1982,2079,2154,2158,2160,2161,2173,2374,2392,2396,2518,2519,2520,2659,2724,2956,3050,3121,3235,3304,3305,3306,3414,3420,3421,3443,3472,3473,3474,3477,3479,3480,3482,3484,3485,3489,3490,3491,3496,3497,3498,3499,3509,3519,3520,3521,3522,3523,3573,3575,3576,3577,3587,3588,3593,3594,3605,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3746,3766,3773,3778,3782,3786,3790,3835,3837,3865,3867,3871,3873,3877,3879,3883,3885,3889,3891,3895,3897,3901,3903,3907,3909,3913,3915,3919,3921,3925,3927,3931,3933,3937,3938,3963,3964,3966,3999,4097,4137,4141,4142,4180,4491,4493,4580,4586,4588,4591,4596,4604,4610,4616,4621,4625,4628,4631,4634,4637,4640,4644,4729,4731,4798,4799,4895,4945,4952,5139,5141,5220,5312,5318,5320,5328,5331,5337,5339,5358,5530,5578,5684,5730,5738,5765,5846,5940,5946,6194,6197,6505,6553,6576,6579,6582,6598,6602,6654,6655,6679,6747,6776,6813,6814,6819,6855,6869,6876,6878,6880,6883,6885,6949,6980,7131,7219,7312,7315,7354,7368,7486,7970,8059,8060,8124,8136,8137,8260,8340,8355,8384,8396,8543,8545,8546,8581,8705,8781,8809,8851,8889,8897,8933,8934,8935,9061,9076,9093,9101,9104,9150,9238,9239,9243,9250,9251,9258,9259,9274,9277,9282,9291,9293,9298,9306,9312,9318,9342,9430,9434,9481,9482,9521,9522,9531,9550,9577,9728,9729,9730,9743,9744,9752,9753,9785,9829,9832,9833,9850,9851,9856,9872,9881,9891,9897,9898,9913,9917,9919,9926,9927,9933,9938,9942,9948,9952,9955,9957,9958,9964,9965,9984,9987,9988,9989,10025,10026,10033,10034,10037,10090,10104,10120,10138,10146,10148,10188,10196,10201,10203,10210,10214,10220,10223,10224,10230,10249,10327,10365,10927,10946,10986,11007,11010,11108,11110,11132,11191,11231,11347,11359,11377,11385,11388,11394,11431,11439,11450,11454,11455,11476,11481,11500,11509,11510,11521,11522,11530,11544,11618,11629,11644,11646,11656,11657,11678,11682,11692,11700,11705,11709,11729,11733,11735,11756,11760,11763,11765,11792,11794,11870,11871,11909,11929,11934,11936,11941,11985,11995,11998,12002,12003,12004,12014,12015,12017,12105,12180,12181,12297,12308,12396,12532,12541,12580,12581,12583,12584,12677,12705,12740,12754,12855,12861,12910,13091,13223,13260,13635,13747,13762,13938,14341,14825,14871,15098,15103,15146,15382,15387,15388,15393,15464,15545,15548,16457,16500,16526,16649,16683,17420,17423,17521,17524,17770,17790,17956,17983,18030,18032,18051,18092,18094,18194,18269,18311,18331,18382,18395,18400,18405,18845,18870,18917,18948,18949,19249,19365,19496,19535,19537,19545,19546,19619,19621,19629,19634,19635,19645,19732,19815,19843,19851,19924,19925,20041,20047,20124,20258,20271,20277,20280,20281,20288,20304,20305,20306,20307,20465,20466,20534,20535,20605,20896,20980,21057,21101,21184,21194,21195,21196,21200,21224,21231,21249,21265,21301,21433,21442,21457,21478,21668,21672,21738,21742,21758,21759,21962,21989,21990,22016,22037,22042,22044,22049,22313,22336,22365,22389,22448,22654,22770,22841,22855,22865,22879,22885,22890,22963,22965,22967,23084,23124]]],["+",[31,26,[[0,4,4,0,4,[[24,1,1,0,1],[40,1,1,1,2],[46,2,2,2,4]]],[1,1,1,4,5,[[87,1,1,4,5]]],[2,7,6,5,11,[[114,3,2,5,7],[116,4,4,7,11]]],[3,2,1,11,12,[[130,2,1,11,12]]],[6,1,1,12,13,[[220,1,1,12,13]]],[9,3,3,13,16,[[279,1,1,13,14],[280,1,1,14,15],[285,1,1,15,16]]],[12,2,2,16,18,[[360,1,1,16,17],[364,1,1,17,18]]],[14,1,1,18,19,[[405,1,1,18,19]]],[15,1,1,19,20,[[417,1,1,19,20]]],[16,4,2,20,22,[[434,4,2,20,22]]],[18,1,1,22,23,[[567,1,1,22,23]]],[23,2,2,23,25,[[772,2,2,23,25]]],[25,2,1,25,26,[[805,2,1,25,26]]]],[665,1196,1428,1448,2659,3519,3522,3573,3575,3577,3587,4142,6819,8340,8384,8545,11010,11132,12105,12396,12855,12861,15388,19621,19629,20535]]],["long",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16457]]],["old",[1,1,[[5,1,1,0,1,[[210,1,1,0,1]]]],[6505]]],["year",[328,289,[[0,9,8,0,8,[[6,1,1,0,1],[7,1,1,1,2],[13,2,2,2,4],[16,1,1,4,5],[25,1,1,5,6],[46,3,2,6,8]]],[1,12,11,8,19,[[61,2,2,8,10],[72,4,4,10,14],[78,1,1,14,15],[79,2,1,15,16],[83,2,2,16,18],[89,1,1,18,19]]],[2,29,28,19,47,[[98,1,1,19,20],[101,1,1,20,21],[103,1,1,21,22],[105,1,1,22,23],[108,2,2,23,25],[112,4,4,25,29],[114,16,15,29,44],[116,3,3,44,47]]],[3,50,49,47,96,[[117,1,1,47,48],[122,3,2,48,50],[123,26,26,50,76],[125,1,1,76,77],[126,1,1,77,78],[131,1,1,78,79],[144,6,6,79,85],[145,10,10,85,95],[149,1,1,95,96]]],[4,16,11,96,107,[[153,1,1,96,97],[163,2,1,97,98],[166,3,2,98,100],[167,5,3,100,103],[168,1,1,103,104],[176,1,1,104,105],[178,2,1,105,106],[183,1,1,106,107]]],[5,1,1,107,108,[[191,1,1,107,108]]],[6,2,2,108,110,[[220,1,1,108,109],[221,1,1,109,110]]],[8,5,3,110,113,[[236,2,1,110,111],[242,2,1,111,112],[248,1,1,112,113]]],[9,3,2,113,115,[[277,1,1,113,114],[287,2,1,114,115]]],[10,28,25,115,140,[[294,1,1,115,116],[295,2,1,116,117],[296,4,3,117,120],[299,1,1,120,121],[300,3,2,121,123],[304,1,1,123,124],[305,5,5,124,129],[306,5,5,129,134],[308,1,1,134,135],[310,2,2,135,137],[312,3,3,137,140]]],[11,44,38,140,178,[[313,1,1,140,141],[315,1,1,141,142],[320,3,3,142,145],[321,1,1,145,146],[323,1,1,146,147],[324,2,2,147,149],[325,3,3,149,152],[326,2,2,152,154],[327,8,8,154,162],[328,1,1,162,163],[329,4,3,163,166],[330,6,4,166,170],[331,3,1,170,171],[334,1,1,171,172],[335,1,1,172,173],[336,1,1,173,174],[337,5,4,174,178]]],[12,3,3,178,181,[[357,1,1,178,179],[363,1,1,179,180],[364,1,1,180,181]]],[13,27,23,181,204,[[369,1,1,181,182],[374,1,1,182,183],[375,3,2,183,185],[378,1,1,185,186],[379,1,1,186,187],[381,2,2,187,189],[382,3,3,189,192],[383,1,1,192,193],[388,1,1,193,194],[389,1,1,194,195],[390,3,2,195,197],[393,2,1,197,198],[395,1,1,198,199],[400,3,2,199,201],[401,1,1,201,202],[402,2,2,202,204]]],[14,4,4,204,208,[[403,1,1,204,205],[405,1,1,205,206],[409,2,2,206,208]]],[15,9,7,208,215,[[413,1,1,208,209],[414,1,1,209,210],[417,1,1,210,211],[422,5,3,211,214],[425,1,1,214,215]]],[16,3,3,215,218,[[426,1,1,215,216],[427,1,1,216,217],[428,1,1,217,218]]],[17,1,1,218,219,[[438,1,1,218,219]]],[18,1,1,219,220,[[542,1,1,219,220]]],[22,13,10,220,230,[[684,1,1,220,221],[692,1,1,221,222],[698,1,1,222,223],[699,1,1,223,224],[707,2,1,224,225],[712,1,1,225,226],[714,1,1,226,227],[715,3,1,227,228],[739,1,1,228,229],[741,1,1,229,230]]],[23,33,27,230,257,[[745,2,2,230,232],[755,1,1,232,233],[761,1,1,233,234],[767,1,1,234,235],[769,4,2,235,237],[772,4,3,237,240],[776,2,1,240,241],[780,2,2,241,243],[783,2,2,243,245],[789,1,1,245,246],[790,1,1,246,247],[792,1,1,247,248],[795,3,2,248,250],[796,8,7,250,257]]],[25,18,16,257,273,[[802,2,2,257,259],[809,1,1,259,260],[821,1,1,260,261],[825,1,1,261,262],[827,1,1,262,263],[830,2,2,263,265],[831,1,1,265,266],[832,1,1,266,267],[833,2,2,267,269],[834,1,1,269,270],[841,3,1,270,271],[847,2,2,271,273]]],[26,8,8,273,281,[[850,2,2,273,275],[851,1,1,275,276],[857,1,1,276,277],[858,2,2,277,279],[859,1,1,279,280],[860,1,1,280,281]]],[32,1,1,281,282,[[898,1,1,281,282]]],[36,3,3,282,285,[[909,2,2,282,284],[910,1,1,284,285]]],[37,5,4,285,289,[[911,2,2,285,287],[917,1,1,287,288],[924,2,1,288,289]]]],[170,196,340,341,418,704,1437,1438,1818,1821,2158,2160,2161,2173,2374,2392,2519,2520,2724,2956,3050,3121,3235,3305,3306,3414,3420,3421,3443,3473,3474,3479,3480,3482,3489,3490,3491,3497,3498,3499,3509,3519,3521,3523,3588,3593,3594,3605,3835,3837,3865,3867,3871,3873,3877,3879,3883,3885,3889,3891,3895,3897,3901,3903,3907,3909,3913,3915,3919,3921,3925,3927,3931,3933,3937,3938,3966,3999,4180,4580,4586,4588,4591,4596,4604,4610,4616,4621,4625,4628,4631,4634,4637,4640,4644,4798,4895,5220,5312,5318,5328,5331,5339,5358,5530,5578,5738,5946,6819,6869,7219,7368,7486,8260,8581,8851,8889,8897,8933,8934,9076,9093,9104,9243,9250,9258,9274,9277,9282,9291,9293,9298,9306,9312,9342,9430,9434,9482,9521,9531,9550,9577,9743,9752,9753,9785,9833,9851,9856,9872,9881,9891,9897,9919,9926,9933,9938,9942,9948,9952,9955,9957,9964,9984,9987,9989,10025,10033,10034,10037,10090,10148,10188,10214,10223,10224,10230,10249,10927,11108,11110,11231,11359,11377,11388,11439,11454,11500,11509,11510,11521,11522,11530,11646,11657,11682,11700,11760,11794,11936,11941,11985,12003,12015,12017,12105,12180,12181,12297,12308,12396,12580,12583,12584,12677,12705,12740,12754,12910,14871,17770,17956,18030,18051,18194,18311,18331,18382,18845,18870,18948,18949,19249,19365,19496,19535,19537,19619,19634,19635,19732,19843,19851,19924,19925,20041,20047,20124,20258,20271,20280,20281,20288,20304,20305,20306,20307,20465,20466,20605,20896,21057,21101,21184,21200,21224,21231,21249,21265,21301,21478,21668,21672,21738,21758,21759,21962,21989,21990,22016,22037,22654,22841,22855,22865,22879,22885,22963,23084]]],["year's",[1,1,[[1,1,1,0,1,[[83,1,1,0,1]]]],[2518]]],["yearly",[1,1,[[15,1,1,0,1,[[422,1,1,0,1]]]],[12581]]],["years",[447,368,[[0,108,94,0,94,[[0,1,1,0,1],[4,28,28,1,29],[5,1,1,29,30],[6,1,1,30,31],[8,2,2,31,33],[10,19,18,33,51],[11,1,1,51,52],[13,1,1,52,53],[14,1,1,53,54],[15,2,2,54,56],[16,5,4,56,60],[20,1,1,60,61],[22,2,1,61,62],[24,6,4,62,66],[25,1,1,66,67],[28,4,4,67,71],[30,4,2,71,73],[34,1,1,73,74],[36,1,1,74,75],[40,15,13,75,88],[44,3,2,88,90],[46,6,2,90,92],[49,2,2,92,94]]],[1,14,10,94,104,[[55,6,3,94,97],[56,2,1,97,98],[61,2,2,98,100],[65,1,1,100,101],[70,1,1,101,102],[72,1,1,102,103],[79,1,1,103,104]]],[2,21,14,104,118,[[108,1,1,104,105],[114,16,9,105,114],[116,4,4,114,118]]],[3,40,33,118,151,[[117,15,15,118,133],[120,14,7,133,140],[124,2,2,140,142],[129,1,1,142,143],[130,3,3,143,146],[142,2,2,146,148],[148,2,2,148,150],[149,1,1,150,151]]],[4,13,13,151,164,[[154,2,2,151,153],[160,2,2,153,155],[166,1,1,155,156],[167,3,3,156,159],[181,1,1,159,160],[183,2,2,160,162],[184,1,1,162,163],[186,1,1,163,164]]],[5,4,3,164,167,[[191,1,1,164,165],[200,3,2,165,167]]],[6,21,21,167,188,[[212,1,1,167,168],[213,4,4,168,172],[214,1,1,172,173],[215,1,1,173,174],[216,2,2,174,176],[218,1,1,176,177],[219,1,1,177,178],[220,2,2,178,180],[221,1,1,180,181],[222,4,4,181,185],[223,1,1,185,186],[225,1,1,186,187],[226,1,1,187,188]]],[7,1,1,188,189,[[232,1,1,188,189]]],[8,5,5,189,194,[[239,2,2,189,191],[242,1,1,191,192],[248,1,1,192,193],[264,1,1,193,194]]],[9,14,11,194,205,[[268,3,2,194,196],[270,1,1,196,197],[271,4,2,197,199],[279,1,1,199,200],[281,1,1,200,201],[285,2,2,201,203],[287,1,1,203,204],[290,1,1,204,205]]],[10,25,20,205,225,[[292,4,2,205,207],[296,1,1,207,208],[297,1,1,208,209],[299,1,1,209,210],[300,1,1,210,211],[301,1,1,211,212],[304,3,2,212,214],[305,4,4,214,218],[306,4,3,218,221],[307,1,1,221,222],[312,4,3,222,225]]],[11,45,34,225,259,[[315,1,1,225,226],[320,5,4,226,230],[322,1,1,230,231],[323,2,2,231,233],[324,1,1,233,234],[325,2,2,234,236],[326,5,4,236,240],[327,7,5,240,245],[328,2,1,245,246],[329,2,2,246,248],[330,3,2,248,250],[332,1,1,250,251],[333,4,2,251,253],[334,2,1,253,254],[335,3,2,254,256],[336,4,3,256,259]]],[12,7,5,259,264,[[339,1,1,259,260],[340,2,1,260,261],[360,2,2,261,263],[366,2,1,263,264]]],[13,51,35,264,299,[[374,1,1,264,265],[375,2,2,265,267],[377,2,1,267,268],[378,2,1,268,269],[379,1,1,269,270],[380,2,2,270,272],[384,1,1,272,273],[386,2,1,273,274],[387,3,2,274,276],[388,2,2,276,278],[390,3,2,278,280],[391,4,3,280,283],[392,3,2,283,285],[393,4,2,285,287],[394,2,1,287,288],[395,2,1,288,289],[397,2,2,289,291],[399,4,2,291,293],[400,2,1,293,294],[402,7,5,294,299]]],[15,3,3,299,302,[[417,1,1,299,300],[421,2,2,300,302]]],[17,7,7,302,309,[[445,1,1,302,303],[450,1,1,303,304],[451,1,1,304,305],[467,1,1,305,306],[471,2,2,306,308],[477,1,1,308,309]]],[18,13,12,309,321,[[508,1,1,309,310],[538,1,1,310,311],[554,2,2,311,313],[555,1,1,313,314],[567,5,4,314,318],[572,1,1,318,319],[579,2,2,319,321]]],[19,4,4,321,325,[[631,1,1,321,322],[632,1,1,322,323],[636,1,1,323,324],[637,1,1,324,325]]],[20,5,4,325,329,[[664,3,2,325,327],[669,1,1,327,328],[670,1,1,328,329]]],[22,14,11,329,340,[[685,1,1,329,330],[694,2,1,330,331],[698,1,1,331,332],[699,1,1,332,333],[701,3,2,333,335],[710,1,1,335,336],[716,3,3,336,339],[743,2,1,339,340]]],[23,7,5,340,345,[[769,2,2,340,342],[773,1,1,342,343],[778,2,1,343,344],[796,2,1,344,345]]],[25,8,8,345,353,[[805,1,1,345,346],[823,1,1,346,347],[830,3,3,347,350],[839,2,2,350,352],[840,1,1,352,353]]],[26,6,5,353,358,[[850,1,1,353,354],[858,2,1,354,355],[860,3,3,355,358]]],[28,2,2,358,360,[[877,2,2,358,360]]],[29,3,3,360,363,[[879,1,1,360,361],[880,1,1,361,362],[883,1,1,362,363]]],[34,2,1,363,364,[[905,2,1,363,364]]],[37,3,3,364,367,[[911,1,1,364,365],[917,2,2,365,367]]],[38,1,1,367,368,[[927,1,1,367,368]]]],[13,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,135,136,137,140,165,233,234,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,298,302,340,373,384,397,398,414,421,422,518,572,665,675,678,684,726,813,815,822,825,911,914,1039,1085,1221,1222,1224,1225,1229,1230,1231,1241,1242,1243,1245,1248,1249,1364,1369,1429,1448,1528,1532,1671,1673,1675,1692,1856,1857,1982,2079,2154,2396,3304,3472,3477,3484,3485,3490,3496,3519,3520,3521,3573,3575,3576,3588,3607,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3649,3746,3766,3773,3778,3782,3786,3790,3963,3964,4097,4137,4141,4142,4491,4493,4729,4731,4799,4945,4952,5139,5141,5318,5320,5331,5337,5684,5730,5738,5765,5846,5940,6194,6197,6553,6576,6579,6582,6598,6602,6654,6655,6679,6747,6776,6813,6814,6855,6876,6878,6880,6883,6885,6949,6980,7131,7312,7315,7354,7486,7970,8059,8060,8124,8136,8137,8355,8396,8543,8546,8581,8705,8781,8809,8934,8935,9061,9101,9150,9238,9239,9251,9259,9274,9282,9291,9306,9312,9318,9481,9522,9531,9577,9728,9729,9744,9753,9829,9832,9850,9851,9872,9881,9898,9913,9917,9919,9927,9942,9948,9952,9958,9965,9984,9988,10026,10034,10104,10120,10138,10146,10196,10201,10203,10210,10220,10327,10365,10986,11007,11191,11347,11385,11394,11431,11450,11455,11476,11481,11544,11618,11629,11644,11646,11656,11678,11692,11705,11709,11729,11733,11735,11756,11763,11765,11792,11870,11871,11909,11929,11934,11995,11998,12002,12004,12014,12396,12532,12541,13091,13223,13260,13635,13747,13762,13938,14341,14825,15098,15103,15146,15382,15387,15388,15393,15464,15545,15548,16500,16526,16649,16683,17420,17423,17521,17524,17790,17983,18032,18051,18092,18094,18269,18395,18400,18405,18917,19545,19546,19645,19815,20277,20534,20980,21194,21195,21196,21433,21442,21457,21742,21990,22042,22044,22049,22313,22336,22365,22389,22448,22770,22890,22965,22967,23124]]],["years'",[2,2,[[11,1,1,0,1,[[320,1,1,0,1]]],[12,1,1,1,2,[[358,1,1,1,2]]]],[9730,10946]]]]},{"k":"H8142","v":[["*",[23,23,[[0,2,2,0,2,[[27,1,1,0,1],[30,1,1,1,2]]],[6,2,2,2,4,[[226,2,2,2,4]]],[16,1,1,4,5,[[431,1,1,4,5]]],[17,1,1,5,6,[[449,1,1,5,6]]],[18,3,3,6,9,[[553,1,1,6,7],[567,1,1,7,8],[604,1,1,8,9]]],[19,7,7,9,16,[[630,1,1,9,10],[631,1,1,10,11],[633,3,3,11,14],[647,1,1,14,15],[651,1,1,15,16]]],[20,2,2,16,18,[[663,1,1,16,17],[666,1,1,17,18]]],[23,3,3,18,21,[[775,1,1,18,19],[795,2,2,19,21]]],[26,1,1,21,22,[[851,1,1,21,22]]],[37,1,1,22,23,[[914,1,1,22,23]]]],[789,913,6963,6969,12794,13193,15086,15383,16123,16479,16506,16544,16549,16550,16967,17112,17409,17474,19717,20251,20269,21759,22923]]],["+",[6,6,[[0,1,1,0,1,[[27,1,1,0,1]]],[6,2,2,1,3,[[226,2,2,1,3]]],[17,1,1,3,4,[[449,1,1,3,4]]],[19,1,1,4,5,[[633,1,1,4,5]]],[37,1,1,5,6,[[914,1,1,5,6]]]],[789,6963,6969,13193,16549,22923]]],["sleep",[17,17,[[0,1,1,0,1,[[30,1,1,0,1]]],[16,1,1,1,2,[[431,1,1,1,2]]],[18,3,3,2,5,[[553,1,1,2,3],[567,1,1,3,4],[604,1,1,4,5]]],[19,6,6,5,11,[[630,1,1,5,6],[631,1,1,6,7],[633,2,2,7,9],[647,1,1,9,10],[651,1,1,10,11]]],[20,2,2,11,13,[[663,1,1,11,12],[666,1,1,12,13]]],[23,3,3,13,16,[[775,1,1,13,14],[795,2,2,14,16]]],[26,1,1,16,17,[[851,1,1,16,17]]]],[913,12794,15086,15383,16123,16479,16506,16544,16550,16967,17112,17409,17474,19717,20251,20269,21759]]]]},{"k":"H8143","v":[["ivory",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9101,11385]]]]},{"k":"H8144","v":[["*",[42,42,[[0,2,2,0,2,[[37,2,2,0,2]]],[1,26,26,2,28,[[74,1,1,2,3],[75,3,3,3,6],[76,1,1,6,7],[77,5,5,7,12],[84,4,4,12,16],[85,3,3,16,19],[87,2,2,19,21],[88,7,7,21,28]]],[2,5,5,28,33,[[103,5,5,28,33]]],[3,2,2,33,35,[[120,1,1,33,34],[135,1,1,34,35]]],[5,2,2,35,37,[[188,2,2,35,37]]],[9,1,1,37,38,[[267,1,1,37,38]]],[19,1,1,38,39,[[658,1,1,38,39]]],[21,1,1,39,40,[[674,1,1,39,40]]],[22,1,1,40,41,[[679,1,1,40,41]]],[23,1,1,41,42,[[748,1,1,41,42]]]],[1147,1149,2199,2236,2266,2271,2288,2298,2299,2301,2308,2326,2537,2554,2556,2566,2574,2601,2603,2651,2656,2665,2666,2667,2669,2672,2688,2693,3115,3117,3160,3162,3163,3751,4295,5887,5890,8046,17305,17585,17672,19057]]],["+",[33,33,[[1,26,26,0,26,[[74,1,1,0,1],[75,3,3,1,4],[76,1,1,4,5],[77,5,5,5,10],[84,4,4,10,14],[85,3,3,14,17],[87,2,2,17,19],[88,7,7,19,26]]],[2,5,5,26,31,[[103,5,5,26,31]]],[3,2,2,31,33,[[120,1,1,31,32],[135,1,1,32,33]]]],[2199,2236,2266,2271,2288,2298,2299,2301,2308,2326,2537,2554,2556,2566,2574,2601,2603,2651,2656,2665,2666,2667,2669,2672,2688,2693,3115,3117,3160,3162,3163,3751,4295]]],["crimson",[1,1,[[23,1,1,0,1,[[748,1,1,0,1]]]],[19057]]],["scarlet",[6,6,[[5,2,2,0,2,[[188,2,2,0,2]]],[9,1,1,2,3,[[267,1,1,2,3]]],[19,1,1,3,4,[[658,1,1,3,4]]],[21,1,1,4,5,[[674,1,1,4,5]]],[22,1,1,5,6,[[679,1,1,5,6]]]],[5887,5890,8046,17305,17585,17672]]],["thread",[2,2,[[0,2,2,0,2,[[37,2,2,0,2]]]],[1147,1149]]]]},{"k":"H8145","v":[["*",[156,151,[[0,13,13,0,13,[[0,1,1,0,1],[1,1,1,1,2],[3,1,1,2,3],[5,1,1,3,4],[6,1,1,4,5],[7,1,1,5,6],[21,1,1,6,7],[29,2,2,7,9],[31,1,1,9,10],[40,2,2,10,12],[46,1,1,12,13]]],[1,26,26,13,39,[[50,1,1,13,14],[51,1,1,14,15],[65,1,1,15,16],[74,2,2,16,18],[75,5,5,18,23],[76,1,1,23,24],[77,2,2,24,26],[78,3,3,26,29],[85,5,5,29,34],[86,2,2,34,36],[87,1,1,36,37],[88,1,1,37,38],[89,1,1,38,39]]],[2,8,8,39,47,[[94,1,1,39,40],[97,1,1,40,41],[102,6,6,41,47]]],[3,15,13,47,60,[[117,3,2,47,49],[118,1,1,49,50],[123,1,1,50,51],[124,1,1,51,52],[125,2,2,52,54],[126,3,2,54,56],[127,1,1,56,57],[144,2,2,57,59],[145,1,1,59,60]]],[5,4,4,60,64,[[191,1,1,60,61],[192,1,1,61,62],[196,1,1,62,63],[205,1,1,63,64]]],[6,5,5,64,69,[[216,3,3,64,67],[230,2,2,67,69]]],[7,1,1,69,70,[[232,1,1,69,70]]],[8,3,3,70,73,[[236,1,1,70,71],[255,2,2,71,73]]],[9,3,3,73,76,[[270,1,1,73,74],[280,1,1,74,75],[282,1,1,75,76]]],[10,14,13,76,89,[[296,7,6,76,82],[297,5,5,82,87],[299,1,1,87,88],[309,1,1,88,89]]],[11,4,4,89,93,[[321,1,1,89,90],[322,1,1,90,91],[331,1,1,91,92],[337,1,1,92,93]]],[12,18,18,93,111,[[339,1,1,93,94],[340,2,2,94,96],[344,1,1,96,97],[345,2,2,97,99],[349,1,1,99,100],[360,3,3,100,103],[361,2,2,103,105],[362,1,1,105,106],[363,3,3,106,109],[364,1,1,109,110],[366,1,1,110,111]]],[13,6,5,111,116,[[369,2,1,111,112],[393,1,1,112,113],[396,3,3,113,116]]],[14,2,1,116,117,[[405,2,1,116,117]]],[15,9,9,117,126,[[415,7,7,117,124],[420,1,1,124,125],[424,1,1,125,126]]],[16,4,4,126,130,[[427,2,2,126,128],[432,1,1,128,129],[434,1,1,129,130]]],[17,1,1,130,131,[[477,1,1,130,131]]],[20,3,3,131,134,[[662,3,3,131,134]]],[22,2,2,134,136,[[689,1,1,134,135],[715,1,1,135,136]]],[23,5,5,136,141,[[745,1,1,136,137],[757,1,1,137,138],[777,1,1,138,139],[785,1,1,139,140],[796,1,1,140,141]]],[25,3,3,141,144,[[805,1,1,141,142],[811,1,1,142,143],[844,1,1,143,144]]],[26,1,1,144,145,[[857,1,1,144,145]]],[31,1,1,145,146,[[891,1,1,145,146]]],[36,1,1,146,147,[[910,1,1,146,147]]],[37,3,3,147,150,[[914,1,1,147,148],[916,1,1,148,149],[921,1,1,149,150]]],[38,1,1,150,151,[[926,1,1,150,151]]]],[7,43,98,153,170,197,562,837,842,947,1200,1247,1438,1547,1567,1948,2207,2227,2239,2240,2245,2255,2262,2287,2303,2311,2355,2375,2377,2577,2578,2583,2591,2598,2607,2622,2648,2675,2724,2840,2939,3057,3058,3059,3085,3106,3110,3605,3622,3674,3868,3947,3966,3976,3994,3999,4050,4581,4585,4625,5936,5963,6096,6322,6679,6680,6682,7078,7079,7131,7214,7757,7764,8122,8385,8445,8897,8920,8921,8922,8923,8930,8949,8950,8951,8952,8954,9053,9394,9775,9799,10090,10239,10319,10362,10376,10550,10576,10614,10729,10994,11002,11003,11022,11038,11055,11079,11081,11088,11113,11186,11231,11760,11829,11840,11842,12105,12338,12346,12347,12348,12351,12354,12357,12506,12662,12738,12743,12809,12863,13936,17389,17391,17396,17895,18382,18959,19269,19776,19961,20298,20535,20647,21594,21964,22559,22875,22934,22949,23042,23116]]],["+",[3,3,[[1,2,2,0,2,[[74,1,1,0,1],[86,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]]],[2227,2622,8949]]],["again",[7,7,[[2,2,2,0,2,[[102,2,2,0,2]]],[9,1,1,2,3,[[282,1,1,2,3]]],[25,1,1,3,4,[[805,1,1,3,4]]],[36,1,1,4,5,[[910,1,1,4,5]]],[37,1,1,5,6,[[914,1,1,5,6]]],[38,1,1,6,7,[[926,1,1,6,7]]]],[3058,3059,8445,20535,22875,22934,23116]]],["another",[7,7,[[3,1,1,0,1,[[124,1,1,0,1]]],[15,5,5,1,6,[[415,5,5,1,6]]],[20,1,1,6,7,[[662,1,1,6,7]]]],[3947,12346,12348,12351,12354,12357,17391]]],["more",[3,3,[[2,3,3,0,3,[[102,3,3,0,3]]]],[3057,3085,3106]]],["other",[35,34,[[0,1,1,0,1,[[3,1,1,0,1]]],[1,12,12,1,13,[[50,1,1,1,2],[74,1,1,2,3],[75,1,1,3,4],[76,1,1,4,5],[77,1,1,5,6],[78,3,3,6,9],[85,2,2,9,11],[86,1,1,11,12],[87,1,1,12,13]]],[2,1,1,13,14,[[97,1,1,13,14]]],[3,3,3,14,17,[[127,1,1,14,15],[144,2,2,15,17]]],[7,1,1,17,18,[[232,1,1,17,18]]],[8,1,1,18,19,[[236,1,1,18,19]]],[9,1,1,19,20,[[270,1,1,19,20]]],[10,10,9,20,29,[[296,6,5,20,25],[297,4,4,25,29]]],[15,3,3,29,32,[[415,2,2,29,31],[424,1,1,31,32]]],[26,1,1,32,33,[[857,1,1,32,33]]],[37,1,1,33,34,[[921,1,1,33,34]]]],[98,1547,2207,2262,2287,2303,2355,2375,2377,2591,2598,2607,2648,2939,4050,4581,4585,7131,7214,8122,8920,8921,8922,8923,8930,8950,8951,8952,8954,12338,12347,12662,21964,23042]]],["second",[87,83,[[0,10,10,0,10,[[0,1,1,0,1],[1,1,1,1,2],[5,1,1,2,3],[6,1,1,3,4],[7,1,1,4,5],[29,2,2,5,7],[31,1,1,7,8],[40,1,1,8,9],[46,1,1,9,10]]],[1,12,12,10,22,[[51,1,1,10,11],[65,1,1,11,12],[75,4,4,12,16],[77,1,1,16,17],[85,3,3,17,20],[88,1,1,20,21],[89,1,1,21,22]]],[2,1,1,22,23,[[94,1,1,22,23]]],[3,10,8,23,31,[[117,3,2,23,25],[118,1,1,25,26],[123,1,1,26,27],[125,2,2,27,29],[126,2,1,29,30],[145,1,1,30,31]]],[5,4,4,31,35,[[191,1,1,31,32],[192,1,1,32,33],[196,1,1,33,34],[205,1,1,34,35]]],[6,5,5,35,40,[[216,3,3,35,38],[230,2,2,38,40]]],[8,2,2,40,42,[[255,2,2,40,42]]],[10,1,1,42,43,[[296,1,1,42,43]]],[11,3,3,43,46,[[321,1,1,43,44],[331,1,1,44,45],[337,1,1,45,46]]],[12,17,17,46,63,[[339,1,1,46,47],[340,2,2,47,49],[344,1,1,49,50],[345,2,2,50,52],[349,1,1,52,53],[360,3,3,53,56],[361,2,2,56,58],[362,1,1,58,59],[363,3,3,59,62],[364,1,1,62,63]]],[13,6,5,63,68,[[369,2,1,63,64],[393,1,1,64,65],[396,3,3,65,68]]],[14,2,1,68,69,[[405,2,1,68,69]]],[15,1,1,69,70,[[420,1,1,69,70]]],[16,3,3,70,73,[[427,1,1,70,71],[432,1,1,71,72],[434,1,1,72,73]]],[17,1,1,73,74,[[477,1,1,73,74]]],[20,2,2,74,76,[[662,2,2,74,76]]],[22,1,1,76,77,[[715,1,1,76,77]]],[23,3,3,77,80,[[777,1,1,77,78],[785,1,1,78,79],[796,1,1,79,80]]],[25,2,2,80,82,[[811,1,1,80,81],[844,1,1,81,82]]],[37,1,1,82,83,[[916,1,1,82,83]]]],[7,43,153,170,197,837,842,947,1247,1438,1567,1948,2239,2240,2245,2255,2311,2577,2578,2583,2675,2724,2840,3605,3622,3674,3868,3966,3976,3999,4625,5936,5963,6096,6322,6679,6680,6682,7078,7079,7757,7764,8897,9775,10090,10239,10319,10362,10376,10550,10576,10614,10729,10994,11002,11003,11022,11038,11055,11079,11081,11088,11113,11231,11760,11829,11840,11842,12105,12506,12738,12809,12863,13936,17389,17396,18382,19776,19961,20298,20647,21594,22949]]],["time",[14,14,[[0,2,2,0,2,[[21,1,1,0,1],[40,1,1,1,2]]],[2,1,1,2,3,[[102,1,1,2,3]]],[3,1,1,3,4,[[126,1,1,3,4]]],[9,1,1,4,5,[[280,1,1,4,5]]],[10,2,2,5,7,[[299,1,1,5,6],[309,1,1,6,7]]],[11,1,1,7,8,[[322,1,1,7,8]]],[12,1,1,8,9,[[366,1,1,8,9]]],[16,1,1,9,10,[[427,1,1,9,10]]],[22,1,1,10,11,[[689,1,1,10,11]]],[23,2,2,11,13,[[745,1,1,11,12],[757,1,1,12,13]]],[31,1,1,13,14,[[891,1,1,13,14]]]],[562,1200,3110,3994,8385,9053,9394,9799,11186,12743,17895,18959,19269,22559]]]]},{"k":"H8146","v":[["hated",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5462]]]]},{"k":"H8147","v":[["*",[766,645,[[0,63,58,0,58,[[0,1,1,0,1],[1,1,1,1,2],[2,1,1,2,3],[3,1,1,3,4],[4,5,5,4,9],[5,2,2,9,11],[6,5,3,11,14],[8,2,2,14,16],[9,1,1,16,17],[10,1,1,17,18],[13,1,1,18,19],[16,1,1,19,20],[18,7,6,20,26],[20,2,2,26,28],[21,3,3,28,31],[23,1,1,31,32],[24,3,2,32,34],[26,2,2,34,36],[28,1,1,36,37],[30,3,3,37,40],[31,4,3,40,43],[32,1,1,43,44],[33,1,1,44,45],[34,1,1,45,46],[39,2,2,46,48],[40,1,1,48,49],[41,3,3,49,52],[43,1,1,52,53],[45,1,1,53,54],[47,3,3,54,57],[48,1,1,57,58]]],[1,112,66,58,124,[[51,1,1,58,59],[53,1,1,59,60],[61,3,3,60,63],[64,1,1,63,64],[65,1,1,64,65],[67,2,2,65,67],[71,5,4,67,71],[73,2,1,71,72],[74,9,5,72,77],[75,12,6,77,83],[76,1,1,83,84],[77,21,11,84,95],[78,5,5,95,100],[79,3,1,100,101],[80,1,1,101,102],[81,2,1,102,103],[83,4,3,103,106],[85,11,6,106,112],[86,11,5,112,117],[88,16,7,117,124]]],[2,41,33,124,157,[[92,3,3,124,127],[93,1,1,127,128],[94,4,2,128,130],[96,1,1,130,131],[97,3,3,131,134],[101,2,1,134,135],[103,5,4,135,139],[104,4,2,139,141],[105,5,5,141,146],[109,4,4,146,150],[112,6,5,150,155],[113,3,2,155,157]]],[3,87,77,157,234,[[117,3,3,157,160],[118,2,2,160,162],[119,2,2,162,164],[122,2,1,164,165],[123,37,31,165,196],[126,1,1,196,197],[127,1,1,197,198],[128,1,1,198,199],[129,1,1,199,200],[131,1,1,200,201],[133,2,2,201,203],[138,1,1,203,204],[141,1,1,204,205],[142,3,3,205,208],[144,9,8,208,216],[145,12,10,216,226],[147,5,5,226,231],[149,1,1,231,232],[150,1,1,232,233],[151,1,1,233,234]]],[4,25,22,234,256,[[153,1,1,234,235],[155,2,2,235,237],[156,2,2,237,239],[157,1,1,239,240],[161,6,4,240,244],[162,3,2,244,246],[166,1,1,246,247],[169,1,1,247,248],[171,2,2,248,250],[173,2,2,250,252],[174,2,2,252,254],[175,1,1,254,255],[184,1,1,255,256]]],[5,26,26,256,282,[[188,4,4,256,260],[189,1,1,260,261],[190,6,6,261,267],[192,1,1,267,268],[194,1,1,268,269],[195,1,1,269,270],[200,2,2,270,272],[201,1,1,272,273],[204,1,1,273,274],[205,2,2,274,276],[207,5,5,276,281],[210,1,1,281,282]]],[6,20,20,282,302,[[213,1,1,282,283],[217,2,2,283,285],[218,1,1,285,286],[219,1,1,286,287],[220,1,1,287,288],[221,3,3,288,291],[222,1,1,291,292],[225,2,2,292,294],[226,3,3,294,297],[229,3,3,297,300],[230,1,1,300,301],[231,1,1,301,302]]],[7,9,8,302,310,[[232,8,7,302,309],[235,1,1,309,310]]],[8,30,29,310,339,[[236,2,2,310,312],[237,3,2,312,314],[238,1,1,314,315],[239,3,3,315,318],[240,1,1,318,319],[241,2,2,319,321],[244,1,1,321,322],[245,2,2,322,324],[246,1,1,324,325],[248,1,1,325,326],[249,2,2,326,328],[253,1,1,328,329],[255,2,2,329,331],[258,1,1,331,332],[260,2,2,332,334],[262,1,1,334,335],[263,1,1,335,336],[265,3,3,336,339]]],[9,21,19,339,358,[[267,1,1,339,340],[268,4,3,340,343],[270,1,1,343,344],[274,2,2,344,346],[275,1,1,346,347],[276,1,1,347,348],[278,1,1,348,349],[279,1,1,349,350],[280,2,1,350,351],[281,2,2,351,353],[283,2,2,353,355],[284,1,1,355,356],[287,1,1,356,357],[289,1,1,357,358]]],[10,57,48,358,406,[[292,3,3,358,361],[293,3,3,361,364],[294,2,2,364,366],[295,2,2,366,368],[296,6,4,368,372],[297,15,9,372,381],[298,2,2,381,383],[299,1,1,383,384],[300,3,3,384,387],[301,2,2,387,389],[302,1,1,389,390],[304,1,1,390,391],[305,1,1,391,392],[306,2,2,392,394],[307,1,1,394,395],[308,3,3,395,398],[309,2,1,398,399],[310,4,4,399,403],[311,2,2,403,405],[312,1,1,405,406]]],[11,42,37,406,443,[[313,2,2,406,408],[314,8,7,408,415],[315,1,1,415,416],[316,2,2,416,418],[317,5,2,418,420],[318,1,1,420,421],[319,1,1,421,422],[320,3,3,422,425],[321,1,1,425,426],[322,3,3,426,429],[323,1,1,429,430],[326,1,1,430,431],[327,3,3,431,434],[329,2,2,434,436],[333,5,4,436,440],[335,1,1,440,441],[337,2,2,441,443]]],[12,45,41,443,484,[[338,1,1,443,444],[341,1,1,444,445],[343,1,1,445,446],[344,2,2,446,448],[346,1,1,448,449],[348,2,2,449,451],[349,1,1,451,452],[352,1,1,452,453],[355,1,1,453,454],[356,1,1,454,455],[361,2,2,455,457],[362,25,23,457,480],[363,4,3,480,483],[364,2,1,483,484]]],[13,30,24,484,508,[[367,1,1,484,485],[369,2,2,485,487],[370,10,5,487,492],[371,1,1,492,493],[373,1,1,493,494],[375,3,3,494,497],[379,1,1,497,498],[387,3,3,498,501],[388,1,1,501,502],[390,1,1,502,503],[392,1,1,503,504],[399,4,3,504,507],[400,1,1,507,508]]],[14,18,17,508,525,[[404,12,12,508,520],[410,5,4,520,524],[412,1,1,524,525]]],[15,23,22,525,547,[[417,2,1,525,526],[418,1,1,526,527],[419,13,13,527,540],[423,3,3,540,543],[424,2,2,543,545],[425,2,2,545,547]]],[16,10,9,547,556,[[427,3,3,547,550],[428,3,2,550,552],[431,1,1,552,553],[433,1,1,553,554],[434,2,2,554,556]]],[17,5,5,556,561,[[444,1,1,556,557],[448,1,1,557,558],[468,1,1,558,559],[475,1,1,559,560],[477,1,1,560,561]]],[18,1,1,561,562,[[539,1,1,561,562]]],[19,8,8,562,570,[[644,1,1,562,563],[647,2,2,563,565],[651,1,1,565,566],[654,1,1,566,567],[656,1,1,567,568],[657,2,2,568,570]]],[20,5,5,570,575,[[662,4,4,570,574],[669,1,1,574,575]]],[21,4,2,575,577,[[674,2,1,575,576],[677,2,1,576,577]]],[22,11,9,577,586,[[679,1,1,577,578],[684,3,1,578,579],[685,3,3,579,582],[686,1,1,582,583],[695,1,1,583,584],[725,1,1,584,585],[729,1,1,585,586]]],[23,11,10,586,596,[[746,1,1,586,587],[747,1,1,587,588],[768,1,1,588,589],[777,1,1,589,590],[778,1,1,590,591],[790,1,1,591,592],[796,5,4,592,596]]],[25,36,24,596,620,[[802,4,2,596,598],[816,1,1,598,599],[822,3,2,599,601],[824,2,2,601,603],[830,1,1,603,604],[833,3,2,604,606],[834,1,1,606,607],[836,2,1,607,608],[838,2,1,608,609],[841,5,3,609,612],[842,8,5,612,617],[844,3,2,617,619],[848,1,1,619,620]]],[26,6,6,620,626,[[851,1,1,620,621],[857,1,1,621,622],[858,2,2,622,624],[860,1,1,624,625],[861,1,1,625,626]]],[27,1,1,626,627,[[871,1,1,626,627]]],[29,3,3,627,630,[[881,2,2,627,629],[882,1,1,629,630]]],[31,1,1,630,631,[[892,1,1,630,631]]],[36,3,3,631,634,[[909,2,2,631,633],[910,1,1,633,634]]],[37,12,11,634,645,[[911,2,2,634,636],[914,5,4,636,640],[915,1,1,640,641],[916,2,2,641,643],[921,1,1,643,644],[923,1,1,644,645]]]],[15,55,62,98,113,123,125,131,133,156,157,161,168,174,227,228,259,286,340,417,458,465,472,473,487,493,540,544,550,553,555,613,674,681,736,772,811,906,910,914,935,938,950,961,1005,1033,1174,1177,1245,1265,1284,1289,1351,1413,1452,1456,1464,1501,1567,1610,1823,1838,1839,1947,1969,2002,2005,2117,2120,2122,2124,2181,2207,2213,2214,2217,2230,2252,2254,2256,2258,2259,2260,2279,2300,2302,2304,2305,2307,2314,2316,2317,2318,2319,2320,2337,2339,2349,2358,2374,2386,2438,2453,2497,2500,2525,2588,2590,2592,2594,2595,2596,2607,2611,2612,2625,2631,2668,2678,2680,2681,2682,2683,2684,2782,2788,2793,2804,2837,2841,2883,2919,2933,2942,3052,3115,3121,3133,3160,3182,3197,3202,3206,3208,3209,3222,3329,3330,3331,3336,3415,3419,3420,3421,3422,3451,3452,3639,3643,3648,3679,3684,3731,3735,3833,3853,3857,3863,3867,3869,3873,3875,3879,3881,3885,3887,3891,3893,3897,3899,3903,3905,3909,3911,3915,3917,3921,3923,3927,3928,3929,3933,3934,3936,3937,3939,3990,4050,4064,4098,4159,4246,4250,4397,4479,4503,4523,4526,4580,4586,4588,4589,4596,4597,4604,4605,4611,4617,4621,4622,4625,4628,4631,4634,4637,4640,4669,4697,4699,4702,4704,4769,4831,4851,4915,4983,4996,5017,5051,5075,5167,5168,5172,5174,5187,5189,5296,5370,5421,5423,5462,5464,5492,5494,5518,5788,5870,5873,5879,5892,5905,5912,5913,5914,5918,5919,5930,5971,6027,6047,6190,6191,6262,6317,6336,6351,6388,6397,6406,6408,6421,6488,6584,6697,6719,6731,6798,6814,6866,6867,6868,6875,6933,6942,6952,6977,6978,7030,7032,7053,7075,7112,7128,7129,7130,7132,7134,7135,7146,7201,7214,7215,7261,7274,7287,7301,7308,7314,7323,7338,7341,7417,7420,7422,7456,7486,7519,7557,7697,7741,7772,7828,7879,7904,7933,7950,7983,7990,7996,8023,8051,8059,8064,8122,8211,8214,8240,8246,8287,8323,8362,8416,8425,8450,8467,8502,8588,8673,8775,8802,8809,8832,8834,8841,8851,8870,8890,8892,8919,8921,8928,8930,8949,8950,8952,8954,8958,8959,8975,8976,8978,8994,9048,9061,9098,9099,9105,9137,9138,9179,9238,9274,9306,9312,9329,9362,9364,9372,9406,9409,9423,9424,9435,9461,9464,9511,9547,9550,9557,9558,9559,9560,9562,9563,9575,9577,9604,9636,9669,9670,9684,9721,9744,9752,9753,9788,9797,9801,9807,9836,9897,9927,9952,9957,9984,9999,10120,10124,10131,10138,10177,10238,10249,10271,10390,10517,10537,10542,10637,10694,10695,10748,10801,10895,10914,11027,11032,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11085,11094,11095,11124,11208,11239,11244,11249,11250,11258,11259,11261,11278,11329,11382,11383,11389,11474,11629,11643,11644,11646,11680,11735,11909,11913,11929,11936,12030,12031,12033,12037,12039,12045,12051,12054,12056,12064,12085,12087,12225,12228,12232,12236,12265,12396,12416,12428,12429,12430,12437,12444,12448,12451,12453,12460,12480,12482,12491,12492,12600,12601,12607,12655,12664,12677,12691,12736,12745,12747,12754,12760,12795,12829,12835,12861,13084,13173,13664,13869,13929,14838,16888,16964,16966,17101,17172,17237,17258,17266,17384,17390,17392,17393,17519,17587,17630,17685,17771,17786,17798,17803,17821,17989,18608,18692,18978,19016,19525,19799,19819,20057,20296,20297,20305,20307,20475,20487,20758,20963,20965,21009,21020,21184,21249,21265,21301,21354,21419,21486,21516,21517,21529,21544,21548,21549,21550,21586,21588,21692,21759,21968,22013,22014,22063,22086,22235,22398,22407,22418,22579,22841,22855,22865,22879,22885,22925,22933,22934,22936,22945,22948,22960,23035,23067]]],["+",[146,130,[[0,9,9,0,9,[[4,1,1,0,1],[13,1,1,1,2],[16,1,1,2,3],[24,1,1,3,4],[34,1,1,4,5],[41,2,2,5,7],[47,1,1,7,8],[48,1,1,8,9]]],[1,11,8,9,17,[[64,1,1,9,10],[73,2,1,10,11],[74,1,1,11,12],[77,2,1,12,13],[81,1,1,13,14],[86,2,2,14,16],[88,2,1,16,17]]],[2,1,1,17,18,[[113,1,1,17,18]]],[3,18,13,18,31,[[117,1,1,18,19],[123,10,5,19,24],[133,2,2,24,26],[145,1,1,26,27],[147,3,3,27,30],[149,1,1,30,31]]],[4,3,3,31,34,[[153,1,1,31,32],[174,2,2,32,34]]],[5,12,12,34,46,[[189,1,1,34,35],[190,6,6,35,41],[194,1,1,41,42],[204,1,1,42,43],[205,1,1,43,44],[207,2,2,44,46]]],[6,3,3,46,49,[[226,1,1,46,47],[229,1,1,47,48],[231,1,1,48,49]]],[7,1,1,49,50,[[232,1,1,49,50]]],[9,4,3,50,53,[[268,2,1,50,51],[276,1,1,51,52],[283,1,1,52,53]]],[10,12,11,53,64,[[294,2,2,53,55],[297,3,3,55,58],[300,2,2,58,60],[301,1,1,60,61],[306,1,1,61,62],[308,1,1,62,63],[309,2,1,63,64]]],[11,5,5,64,69,[[315,1,1,64,65],[320,1,1,65,66],[329,1,1,66,67],[333,1,1,67,68],[337,1,1,68,69]]],[12,30,28,69,97,[[343,1,1,69,70],[346,1,1,70,71],[352,1,1,71,72],[361,1,1,72,73],[362,24,23,73,96],[364,2,1,96,97]]],[13,7,7,97,104,[[367,1,1,97,98],[370,2,2,98,100],[375,2,2,100,102],[399,1,1,102,103],[400,1,1,103,104]]],[14,6,5,104,109,[[404,2,2,104,106],[410,4,3,106,109]]],[15,3,3,109,112,[[417,1,1,109,110],[419,2,2,110,112]]],[16,6,5,112,117,[[427,1,1,112,113],[428,3,2,113,115],[433,1,1,115,116],[434,1,1,116,117]]],[19,1,1,117,118,[[654,1,1,117,118]]],[20,1,1,118,119,[[662,1,1,118,119]]],[22,1,1,119,120,[[685,1,1,119,120]]],[23,3,3,120,123,[[796,3,3,120,123]]],[25,8,6,123,129,[[830,1,1,123,124],[833,3,2,124,126],[834,1,1,126,127],[844,2,1,127,128],[848,1,1,128,129]]],[31,1,1,129,130,[[892,1,1,129,130]]]],[113,340,417,674,1033,1265,1284,1464,1501,1947,2181,2213,2314,2453,2611,2612,2678,3451,3648,3853,3928,3934,3936,3937,4246,4250,4625,4669,4697,4702,4769,4915,5492,5494,5905,5912,5913,5914,5918,5919,5930,6027,6317,6336,6388,6421,6977,7053,7112,7132,8064,8246,8450,8851,8870,8949,8959,8978,9099,9105,9138,9306,9372,9406,9577,9752,9984,10120,10249,10517,10637,10801,11027,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11124,11208,11250,11261,11383,11389,11909,11936,12033,12045,12225,12232,12236,12396,12444,12491,12736,12754,12760,12829,12835,17172,17384,17786,20296,20297,20307,21184,21249,21265,21301,21588,21692,22579]]],["Two",[7,7,[[0,1,1,0,1,[[24,1,1,0,1]]],[1,1,1,1,2,[[75,1,1,1,2]]],[3,1,1,2,3,[[123,1,1,2,3]]],[11,1,1,3,4,[[320,1,1,3,4]]],[13,1,1,4,5,[[370,1,1,4,5]]],[19,1,1,5,6,[[657,1,1,5,6]]],[20,1,1,6,7,[[662,1,1,6,7]]]],[681,2252,3857,9753,11249,17258,17390]]],["both",[68,67,[[0,11,11,0,11,[[1,1,1,0,1],[2,1,1,1,2],[8,1,1,2,3],[18,1,1,3,4],[20,2,2,4,6],[21,2,2,6,8],[26,1,1,8,9],[30,1,1,9,10],[39,1,1,10,11]]],[1,4,3,11,14,[[71,1,1,11,12],[75,1,1,12,13],[85,2,1,13,14]]],[2,5,5,14,19,[[105,1,1,14,15],[109,4,4,15,19]]],[3,14,14,19,33,[[123,12,12,19,31],[128,1,1,31,32],[141,1,1,32,33]]],[4,2,2,33,35,[[171,1,1,33,34],[175,1,1,34,35]]],[6,2,2,35,37,[[229,2,2,35,37]]],[7,1,1,37,38,[[232,1,1,37,38]]],[8,8,8,38,46,[[237,1,1,38,39],[238,1,1,39,40],[240,1,1,40,41],[244,1,1,41,42],[249,1,1,42,43],[255,2,2,43,45],[260,1,1,45,46]]],[9,2,2,46,48,[[275,1,1,46,47],[283,1,1,47,48]]],[10,1,1,48,49,[[296,1,1,48,49]]],[11,2,2,49,51,[[314,1,1,49,50],[333,1,1,50,51]]],[16,1,1,51,52,[[427,1,1,51,52]]],[17,1,1,52,53,[[444,1,1,52,53]]],[19,5,5,53,58,[[644,1,1,53,54],[647,2,2,54,56],[651,1,1,56,57],[656,1,1,57,58]]],[20,1,1,58,59,[[669,1,1,58,59]]],[22,3,3,59,62,[[679,1,1,59,60],[685,1,1,60,61],[686,1,1,61,62]]],[23,1,1,62,63,[[790,1,1,62,63]]],[25,2,2,63,65,[[816,1,1,63,64],[824,1,1,64,65]]],[26,1,1,65,66,[[860,1,1,65,66]]],[37,1,1,66,67,[[916,1,1,66,67]]]],[55,62,228,493,540,544,553,555,772,910,1177,2124,2259,2595,3222,3329,3330,3331,3336,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,4064,4479,5423,5518,7030,7032,7132,7274,7287,7323,7417,7519,7741,7772,7904,8240,8467,8921,9562,10131,12747,13084,16888,16964,16966,17101,17237,17519,17685,17798,17821,20057,20758,21020,22063,22960]]],["couple",[1,1,[[9,1,1,0,1,[[279,1,1,0,1]]]],[8323]]],["double",[5,5,[[1,3,3,0,3,[[71,3,3,0,3]]],[4,1,1,3,4,[[173,1,1,3,4]]],[11,1,1,4,5,[[314,1,1,4,5]]]],[2117,2120,2122,5464,9560]]],["parties",[1,1,[[1,1,1,0,1,[[71,1,1,0,1]]]],[2122]]],["second",[10,10,[[10,1,1,0,1,[[305,1,1,0,1]]],[11,3,3,1,4,[[313,1,1,1,2],[326,1,1,2,3],[327,1,1,3,4]]],[26,1,1,4,5,[[851,1,1,4,5]]],[36,3,3,5,8,[[909,2,2,5,7],[910,1,1,7,8]]],[37,2,2,8,10,[[911,2,2,8,10]]]],[9274,9550,9897,9957,21759,22841,22855,22865,22879,22885]]],["twain",[7,5,[[8,1,1,0,1,[[253,1,1,0,1]]],[11,1,1,1,2,[[316,1,1,1,2]]],[22,3,1,2,3,[[684,3,1,2,3]]],[23,1,1,3,4,[[778,1,1,3,4]]],[25,1,1,4,5,[[822,1,1,4,5]]]],[7697,9636,17771,19819,20963]]],["twenty",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12492]]],["twice",[5,5,[[11,1,1,0,1,[[318,1,1,0,1]]],[15,1,1,1,2,[[425,1,1,1,2]]],[17,2,2,2,4,[[468,1,1,2,3],[475,1,1,3,4]]],[18,1,1,4,5,[[539,1,1,4,5]]]],[9684,12691,13664,13869,14838]]],["two",[515,429,[[0,42,38,0,38,[[0,1,1,0,1],[3,1,1,1,2],[4,4,4,2,6],[5,2,2,6,8],[6,5,3,8,11],[8,1,1,11,12],[9,1,1,12,13],[10,1,1,13,14],[18,6,5,14,19],[21,1,1,19,20],[23,1,1,20,21],[24,1,1,21,22],[26,1,1,22,23],[28,1,1,23,24],[30,2,2,24,26],[31,4,3,26,29],[32,1,1,29,30],[33,1,1,30,31],[39,1,1,31,32],[40,1,1,32,33],[41,1,1,33,34],[43,1,1,34,35],[45,1,1,35,36],[47,2,2,36,38]]],[1,92,55,38,93,[[51,1,1,38,39],[53,1,1,39,40],[61,3,3,40,43],[65,1,1,43,44],[67,2,2,44,46],[74,8,5,46,51],[75,10,5,51,56],[76,1,1,56,57],[77,19,10,57,67],[78,5,5,67,72],[79,3,1,72,73],[80,1,1,73,74],[81,1,1,74,75],[83,4,3,75,78],[85,9,5,78,83],[86,9,4,83,87],[88,14,6,87,93]]],[2,35,28,93,121,[[92,3,3,93,96],[93,1,1,96,97],[94,4,2,97,99],[96,1,1,99,100],[97,3,3,100,103],[101,2,1,103,104],[103,5,4,104,108],[104,4,2,108,110],[105,4,4,110,114],[112,6,5,114,119],[113,2,2,119,121]]],[3,54,51,121,172,[[117,2,2,121,123],[118,2,2,123,125],[119,2,2,125,127],[122,2,1,127,128],[123,14,14,128,142],[126,1,1,142,143],[127,1,1,143,144],[129,1,1,144,145],[131,1,1,145,146],[138,1,1,146,147],[142,3,3,147,150],[144,9,8,150,158],[145,11,10,158,168],[147,2,2,168,170],[150,1,1,170,171],[151,1,1,171,172]]],[4,19,16,172,188,[[155,2,2,172,174],[156,2,2,174,176],[157,1,1,176,177],[161,6,4,177,181],[162,3,2,181,183],[166,1,1,183,184],[169,1,1,184,185],[171,1,1,185,186],[173,1,1,186,187],[184,1,1,187,188]]],[5,14,14,188,202,[[188,4,4,188,192],[192,1,1,192,193],[195,1,1,193,194],[200,2,2,194,196],[201,1,1,196,197],[205,1,1,197,198],[207,3,3,198,201],[210,1,1,201,202]]],[6,15,15,202,217,[[213,1,1,202,203],[217,2,2,203,205],[218,1,1,205,206],[219,1,1,206,207],[220,1,1,207,208],[221,3,3,208,211],[222,1,1,211,212],[225,2,2,212,214],[226,2,2,214,216],[230,1,1,216,217]]],[7,7,7,217,224,[[232,6,6,217,223],[235,1,1,223,224]]],[8,21,21,224,245,[[236,2,2,224,226],[237,2,2,226,228],[239,3,3,228,231],[241,2,2,231,233],[245,2,2,233,235],[246,1,1,235,236],[248,1,1,236,237],[249,1,1,237,238],[258,1,1,238,239],[260,1,1,239,240],[262,1,1,240,241],[263,1,1,241,242],[265,3,3,242,245]]],[9,14,13,245,258,[[267,1,1,245,246],[268,2,2,246,248],[270,1,1,248,249],[274,2,2,249,251],[278,1,1,251,252],[280,2,1,252,253],[281,2,2,253,255],[284,1,1,255,256],[287,1,1,256,257],[289,1,1,257,258]]],[10,43,36,258,294,[[292,3,3,258,261],[293,3,3,261,264],[295,2,2,264,266],[296,5,3,266,269],[297,12,7,269,276],[298,2,2,276,278],[299,1,1,278,279],[300,1,1,279,280],[301,1,1,280,281],[302,1,1,281,282],[304,1,1,282,283],[306,1,1,283,284],[307,1,1,284,285],[308,2,2,285,287],[310,4,4,287,291],[311,2,2,291,293],[312,1,1,293,294]]],[11,28,23,294,317,[[313,1,1,294,295],[314,6,5,295,300],[316,1,1,300,301],[317,5,2,301,303],[319,1,1,303,304],[320,1,1,304,305],[321,1,1,305,306],[322,3,3,306,309],[323,1,1,309,310],[327,2,2,310,312],[329,1,1,312,313],[333,3,2,313,315],[335,1,1,315,316],[337,1,1,316,317]]],[12,15,14,317,331,[[338,1,1,317,318],[341,1,1,318,319],[344,2,2,319,321],[348,2,2,321,323],[349,1,1,323,324],[355,1,1,324,325],[356,1,1,325,326],[361,1,1,326,327],[362,1,1,327,328],[363,4,3,328,331]]],[13,22,16,331,347,[[369,2,2,331,333],[370,7,2,333,335],[371,1,1,335,336],[373,1,1,336,337],[375,1,1,337,338],[379,1,1,338,339],[387,3,3,339,342],[388,1,1,342,343],[390,1,1,343,344],[392,1,1,344,345],[399,3,2,345,347]]],[14,12,12,347,359,[[404,10,10,347,357],[410,1,1,357,358],[412,1,1,358,359]]],[15,18,18,359,377,[[417,1,1,359,360],[418,1,1,360,361],[419,10,10,361,371],[423,3,3,371,374],[424,2,2,374,376],[425,1,1,376,377]]],[16,3,3,377,380,[[427,1,1,377,378],[431,1,1,378,379],[434,1,1,379,380]]],[17,2,2,380,382,[[448,1,1,380,381],[477,1,1,381,382]]],[19,1,1,382,383,[[657,1,1,382,383]]],[20,2,2,383,385,[[662,2,2,383,385]]],[21,4,2,385,387,[[674,2,1,385,386],[677,2,1,386,387]]],[22,4,4,387,391,[[685,1,1,387,388],[695,1,1,388,389],[725,1,1,389,390],[729,1,1,390,391]]],[23,6,6,391,397,[[746,1,1,391,392],[747,1,1,392,393],[768,1,1,393,394],[777,1,1,394,395],[796,2,2,395,397]]],[25,25,16,397,413,[[802,4,2,397,399],[822,2,2,399,401],[824,1,1,401,402],[836,2,1,402,403],[838,2,1,403,404],[841,5,3,404,407],[842,8,5,407,412],[844,1,1,412,413]]],[26,4,4,413,417,[[857,1,1,413,414],[858,2,2,414,416],[861,1,1,416,417]]],[27,1,1,417,418,[[871,1,1,417,418]]],[29,3,3,418,421,[[881,2,2,418,420],[882,1,1,420,421]]],[37,9,8,421,429,[[914,5,4,421,425],[915,1,1,425,426],[916,1,1,426,427],[921,1,1,427,428],[923,1,1,428,429]]]],[15,98,123,125,131,133,156,157,161,168,174,227,259,286,458,465,472,473,487,550,613,681,736,811,906,914,935,938,950,961,1005,1174,1245,1289,1351,1413,1452,1456,1567,1610,1823,1838,1839,1969,2002,2005,2207,2213,2214,2217,2230,2254,2256,2258,2259,2260,2279,2300,2302,2304,2305,2307,2316,2317,2318,2319,2320,2337,2339,2349,2358,2374,2386,2438,2453,2497,2500,2525,2588,2590,2592,2594,2596,2607,2611,2625,2631,2668,2680,2681,2682,2683,2684,2782,2788,2793,2804,2837,2841,2883,2919,2933,2942,3052,3115,3121,3133,3160,3182,3197,3202,3206,3208,3209,3415,3419,3420,3421,3422,3451,3452,3639,3643,3679,3684,3731,3735,3833,3853,3867,3873,3879,3885,3891,3897,3903,3909,3915,3921,3927,3933,3939,3990,4050,4098,4159,4397,4503,4523,4526,4580,4586,4588,4589,4596,4597,4604,4605,4611,4617,4621,4622,4625,4628,4631,4634,4637,4640,4699,4704,4831,4851,4983,4996,5017,5051,5075,5167,5168,5172,5174,5187,5189,5296,5370,5421,5462,5788,5870,5873,5879,5892,5971,6047,6190,6191,6262,6351,6397,6406,6408,6488,6584,6697,6719,6731,6798,6814,6866,6867,6868,6875,6933,6942,6952,6978,7075,7128,7129,7130,7134,7135,7146,7201,7214,7215,7261,7274,7301,7308,7314,7338,7341,7420,7422,7456,7486,7557,7828,7879,7933,7950,7983,7990,7996,8023,8051,8059,8122,8211,8214,8287,8362,8416,8425,8502,8588,8673,8775,8802,8809,8832,8834,8841,8890,8892,8919,8928,8930,8949,8950,8952,8954,8958,8975,8976,8994,9048,9061,9098,9137,9179,9238,9312,9329,9362,9364,9409,9423,9424,9435,9461,9464,9511,9547,9557,9558,9559,9563,9575,9604,9669,9670,9721,9744,9788,9797,9801,9807,9836,9927,9952,9999,10124,10138,10177,10238,10271,10390,10537,10542,10694,10695,10748,10895,10914,11032,11075,11085,11094,11095,11239,11244,11258,11259,11278,11329,11382,11474,11629,11643,11644,11646,11680,11735,11913,11929,12030,12031,12037,12039,12051,12054,12056,12064,12085,12087,12228,12265,12396,12416,12428,12429,12430,12437,12448,12451,12453,12460,12480,12482,12600,12601,12607,12655,12664,12677,12745,12795,12861,13173,13929,17266,17392,17393,17587,17630,17803,17989,18608,18692,18978,19016,19525,19799,20296,20305,20475,20487,20963,20965,21009,21354,21419,21486,21516,21517,21529,21544,21548,21549,21550,21586,21968,22013,22014,22086,22235,22398,22407,22418,22925,22933,22934,22936,22945,22948,23035,23067]]]]},{"k":"H8148","v":[["*",[4,4,[[4,1,1,0,1,[[180,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[13,1,1,2,3,[[373,1,1,2,3]]],[23,1,1,3,4,[[768,1,1,3,4]]]],[5648,9058,11344,19533]]],["byword",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[10,1,1,1,2,[[299,1,1,1,2]]],[13,1,1,2,3,[[373,1,1,2,3]]]],[5648,9058,11344]]],["taunt",[1,1,[[23,1,1,0,1,[[768,1,1,0,1]]]],[19533]]]]},{"k":"H8149","v":[["*",[4,4,[[4,1,1,0,1,[[155,1,1,0,1]]],[12,1,1,1,2,[[342,1,1,1,2]]],[21,1,1,2,3,[[674,1,1,2,3]]],[25,1,1,3,4,[[828,1,1,3,4]]]],[4984,10451,17590,21126]]],["+",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21126]]],["Senir",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10451]]],["Shenir",[2,2,[[4,1,1,0,1,[[155,1,1,0,1]]],[21,1,1,1,2,[[674,1,1,1,2]]]],[4984,17590]]]]},{"k":"H8150","v":[["*",[9,9,[[4,2,2,0,2,[[158,1,1,0,1],[184,1,1,1,2]]],[18,5,5,2,7,[[522,1,1,2,3],[541,1,1,3,4],[550,1,1,4,5],[597,1,1,5,6],[617,1,1,6,7]]],[19,1,1,7,8,[[652,1,1,7,8]]],[22,1,1,8,9,[[683,1,1,8,9]]]],[5093,5799,14602,14853,15041,16078,16266,17131,17767]]],["Sharp",[1,1,[[18,1,1,0,1,[[597,1,1,0,1]]]],[16078]]],["diligently",[1,1,[[4,1,1,0,1,[[158,1,1,0,1]]]],[5093]]],["pricked",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15041]]],["sharp",[3,3,[[18,1,1,0,1,[[522,1,1,0,1]]],[19,1,1,1,2,[[652,1,1,1,2]]],[22,1,1,2,3,[[683,1,1,2,3]]]],[14602,17131,17767]]],["sharpened",[1,1,[[18,1,1,0,1,[[617,1,1,0,1]]]],[16266]]],["whet",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,1,1,1,2,[[541,1,1,1,2]]]],[5799,14853]]]]},{"k":"H8151","v":[["up",[1,1,[[10,1,1,0,1,[[308,1,1,0,1]]]],[9387]]]]},{"k":"H8152","v":[["*",[8,8,[[0,4,4,0,4,[[9,1,1,0,1],[10,1,1,1,2],[13,2,2,2,4]]],[5,1,1,4,5,[[193,1,1,4,5]]],[22,1,1,5,6,[[689,1,1,5,6]]],[26,1,1,6,7,[[850,1,1,6,7]]],[37,1,1,7,8,[[915,1,1,7,8]]]],[244,268,337,345,5997,17895,21739,22947]]],["+",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17895]]],["Babylonish",[1,1,[[5,1,1,0,1,[[193,1,1,0,1]]]],[5997]]],["Shinar",[6,6,[[0,4,4,0,4,[[9,1,1,0,1],[10,1,1,1,2],[13,2,2,2,4]]],[26,1,1,4,5,[[850,1,1,4,5]]],[37,1,1,5,6,[[915,1,1,5,6]]]],[244,268,337,345,21739,22947]]]]},{"k":"H8153","v":[["sleep",[1,1,[[18,1,1,0,1,[[609,1,1,0,1]]]],[16155]]]]},{"k":"H8154","v":[["*",[11,11,[[6,2,2,0,2,[[212,2,2,0,2]]],[8,2,2,2,4,[[249,1,1,2,3],[258,1,1,3,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[18,1,1,5,6,[[521,1,1,5,6]]],[22,3,3,6,9,[[688,1,1,6,7],[695,1,1,7,8],[720,1,1,8,9]]],[23,1,1,9,10,[[794,1,1,9,10]]],[27,1,1,10,11,[[874,1,1,10,11]]]],[6559,6561,7556,7811,10003,14581,17863,17997,18502,20177,22281]]],["+",[1,1,[[8,1,1,0,1,[[258,1,1,0,1]]]],[7811]]],["destroyers",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20177]]],["robbed",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17863]]],["spoil",[3,3,[[18,1,1,0,1,[[521,1,1,0,1]]],[22,1,1,1,2,[[695,1,1,1,2]]],[27,1,1,2,3,[[874,1,1,2,3]]]],[14581,17997,22281]]],["spoiled",[3,3,[[6,1,1,0,1,[[212,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[22,1,1,2,3,[[720,1,1,2,3]]]],[6561,7556,18502]]],["spoilers",[2,2,[[6,1,1,0,1,[[212,1,1,0,1]]],[11,1,1,1,2,[[329,1,1,1,2]]]],[6559,10003]]]]},{"k":"H8155","v":[["*",[5,5,[[6,1,1,0,1,[[212,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[18,1,1,2,3,[[566,1,1,2,3]]],[22,1,1,3,4,[[691,1,1,3,4]]],[37,1,1,4,5,[[924,1,1,4,5]]]],[6559,7671,15367,17922,23070]]],["+",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7671]]],["rifled",[1,1,[[37,1,1,0,1,[[924,1,1,0,1]]]],[23070]]],["spoil",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15367]]],["spoiled",[2,2,[[6,1,1,0,1,[[212,1,1,0,1]]],[22,1,1,1,2,[[691,1,1,1,2]]]],[6559,17922]]]]},{"k":"H8156","v":[["*",[9,8,[[2,4,4,0,4,[[90,1,1,0,1],[100,3,3,1,4]]],[4,2,2,4,6,[[166,2,2,4,6]]],[6,2,1,6,7,[[224,2,1,6,7]]],[8,1,1,7,8,[[259,1,1,7,8]]]],[2762,3000,3004,3023,5296,5297,6915,7846]]],["+",[4,4,[[2,3,3,0,3,[[100,3,3,0,3]]],[8,1,1,3,4,[[259,1,1,3,4]]]],[3000,3004,3023,7846]]],["cleave",[1,1,[[2,1,1,0,1,[[90,1,1,0,1]]]],[2762]]],["cleaveth",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5296]]],["cloven",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5297]]],["rent",[2,1,[[6,2,1,0,1,[[224,2,1,0,1]]]],[6915]]]]},{"k":"H8157","v":[["*",[4,4,[[2,3,3,0,3,[[100,3,3,0,3]]],[4,1,1,3,4,[[166,1,1,3,4]]]],[3000,3004,3023,5296]]],["+",[3,3,[[2,3,3,0,3,[[100,3,3,0,3]]]],[3000,3004,3023]]],["cleft",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5296]]]]},{"k":"H8158","v":[["+",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7593]]]]},{"k":"H8159","v":[["*",[15,15,[[0,2,2,0,2,[[3,2,2,0,2]]],[1,1,1,2,3,[[54,1,1,2,3]]],[9,1,1,3,4,[[288,1,1,3,4]]],[17,2,2,4,6,[[442,1,1,4,5],[449,1,1,5,6]]],[18,2,2,6,8,[[516,1,1,6,7],[596,1,1,7,8]]],[22,7,7,8,15,[[695,2,2,8,10],[700,1,1,10,11],[709,1,1,11,12],[710,1,1,12,13],[719,2,2,13,15]]]],[83,84,1641,8644,13027,13187,14525,16015,17990,17991,18056,18251,18262,18461,18474]]],["+",[2,2,[[0,1,1,0,1,[[3,1,1,0,1]]],[18,1,1,1,2,[[516,1,1,1,2]]]],[84,14525]]],["Turn",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13187]]],["away",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18056]]],["depart",[1,1,[[17,1,1,0,1,[[442,1,1,0,1]]]],[13027]]],["dim",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18262]]],["dismayed",[2,2,[[22,2,2,0,2,[[719,2,2,0,2]]]],[18461,18474]]],["look",[3,3,[[22,3,3,0,3,[[695,2,2,0,2],[709,1,1,2,3]]]],[17990,17991,18251]]],["looked",[1,1,[[9,1,1,0,1,[[288,1,1,0,1]]]],[8644]]],["regard",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1641]]],["respect",[2,2,[[0,1,1,0,1,[[3,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[83,16015]]]]},{"k":"H8160","v":[["hour",[5,5,[[26,5,5,0,5,[[852,2,2,0,2],[853,2,2,2,4],[854,1,1,4,5]]]],[21813,21822,21856,21870,21879]]]]},{"k":"H8161","v":[["stamping",[1,1,[[23,1,1,0,1,[[791,1,1,0,1]]]],[20076]]]]},{"k":"H8162","v":[["*",[2,2,[[2,1,1,0,1,[[108,1,1,0,1]]],[4,1,1,1,2,[[174,1,1,1,2]]]],[3300,5481]]],["sorts",[1,1,[[4,1,1,0,1,[[174,1,1,0,1]]]],[5481]]],["woollen",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3300]]]]},{"k":"H8163","v":[["*",[59,57,[[0,3,3,0,3,[[26,2,2,0,2],[36,1,1,2,3]]],[2,21,19,3,22,[[93,2,2,3,5],[98,2,2,5,7],[99,1,1,7,8],[105,14,12,8,20],[106,1,1,20,21],[112,1,1,21,22]]],[3,27,27,22,49,[[123,13,13,22,35],[131,1,1,35,36],[144,3,3,36,39],[145,10,10,39,49]]],[13,2,2,49,51,[[377,1,1,49,50],[395,1,1,50,51]]],[22,2,2,51,53,[[691,1,1,51,52],[712,1,1,52,53]]],[25,3,3,53,56,[[844,2,2,53,55],[846,1,1,55,56]]],[26,1,1,56,57,[[857,1,1,56,57]]]],[738,750,1114,2818,2819,2956,2968,2993,3206,3208,3209,3210,3211,3216,3219,3221,3222,3223,3227,3228,3242,3421,3866,3872,3878,3884,3890,3896,3902,3908,3914,3920,3926,3932,3937,4177,4592,4599,4607,4613,4619,4624,4627,4630,4633,4636,4639,4642,4646,11429,11814,17927,18317,21594,21597,21653,21982]]],["devils",[2,2,[[2,1,1,0,1,[[106,1,1,0,1]]],[13,1,1,1,2,[[377,1,1,1,2]]]],[3242,11429]]],["goat",[21,19,[[2,14,12,0,12,[[93,1,1,0,1],[98,1,1,1,2],[99,1,1,2,3],[105,11,9,3,12]]],[3,6,6,12,18,[[144,1,1,12,13],[145,5,5,13,18]]],[25,1,1,18,19,[[844,1,1,18,19]]]],[2819,2968,2993,3210,3211,3216,3219,3221,3222,3223,3227,3228,4599,4630,4636,4639,4642,4646,21597]]],["goats",[3,3,[[2,2,2,0,2,[[105,2,2,0,2]]],[13,1,1,2,3,[[395,1,1,2,3]]]],[3208,3209,11814]]],["hairy",[2,2,[[0,2,2,0,2,[[26,2,2,0,2]]]],[738,750]]],["kid",[26,26,[[0,1,1,0,1,[[36,1,1,0,1]]],[2,3,3,1,4,[[93,1,1,1,2],[98,1,1,2,3],[112,1,1,3,4]]],[3,20,20,4,24,[[123,12,12,4,16],[131,1,1,16,17],[144,2,2,17,19],[145,5,5,19,24]]],[25,2,2,24,26,[[844,1,1,24,25],[846,1,1,25,26]]]],[1114,2818,2956,3421,3866,3872,3878,3884,3890,3896,3902,3908,3914,3920,3926,3932,4177,4592,4607,4613,4619,4624,4627,4633,21594,21653]]],["kids",[2,2,[[2,1,1,0,1,[[105,1,1,0,1]]],[3,1,1,1,2,[[123,1,1,1,2]]]],[3206,3937]]],["rough",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21982]]],["satyr",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18317]]],["satyrs",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17927]]]]},{"k":"H8164","v":[["rain",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5760]]]]},{"k":"H8165","v":[["*",[39,38,[[0,9,9,0,9,[[13,1,1,0,1],[31,1,1,1,2],[32,2,2,2,4],[35,5,5,4,9]]],[3,1,1,9,10,[[140,1,1,9,10]]],[4,10,10,10,20,[[153,2,2,10,12],[154,7,7,12,19],[185,1,1,19,20]]],[5,4,4,20,24,[[197,1,1,20,21],[198,1,1,21,22],[201,1,1,22,23],[210,1,1,23,24]]],[6,1,1,24,25,[[215,1,1,24,25]]],[12,2,2,25,27,[[338,1,1,25,26],[341,1,1,26,27]]],[13,6,5,27,32,[[386,4,3,27,30],[391,2,2,30,32]]],[22,1,1,32,33,[[699,1,1,32,33]]],[25,5,5,33,38,[[826,1,1,33,34],[836,4,4,34,38]]]],[342,931,974,976,1048,1049,1060,1061,1070,4464,4894,4936,4939,4942,4943,4946,4950,4960,4967,5812,6124,6137,6212,6480,6627,10290,10427,11597,11609,11610,11715,11718,18046,21091,21346,21347,21351,21359]]],["+",[3,3,[[4,1,1,0,1,[[185,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[22,1,1,2,3,[[699,1,1,2,3]]]],[5812,6627,18046]]],["Seir",[36,35,[[0,9,9,0,9,[[13,1,1,0,1],[31,1,1,1,2],[32,2,2,2,4],[35,5,5,4,9]]],[3,1,1,9,10,[[140,1,1,9,10]]],[4,9,9,10,19,[[153,2,2,10,12],[154,7,7,12,19]]],[5,4,4,19,23,[[197,1,1,19,20],[198,1,1,20,21],[201,1,1,21,22],[210,1,1,22,23]]],[12,2,2,23,25,[[338,1,1,23,24],[341,1,1,24,25]]],[13,6,5,25,30,[[386,4,3,25,28],[391,2,2,28,30]]],[25,5,5,30,35,[[826,1,1,30,31],[836,4,4,31,35]]]],[342,931,974,976,1048,1049,1060,1061,1070,4464,4894,4936,4939,4942,4943,4946,4950,4960,4967,6124,6137,6212,6480,10290,10427,11597,11609,11610,11715,11718,21091,21346,21347,21351,21359]]]]},{"k":"H8166","v":[["kid",[2,2,[[2,2,2,0,2,[[93,1,1,0,1],[94,1,1,1,2]]]],[2823,2836]]]]},{"k":"H8167","v":[["Seirath",[1,1,[[6,1,1,0,1,[[213,1,1,0,1]]]],[6594]]]]},{"k":"H8168","v":[["*",[3,3,[[10,1,1,0,1,[[310,1,1,0,1]]],[22,1,1,1,2,[[718,1,1,1,2]]],[25,1,1,2,3,[[814,1,1,2,3]]]],[9418,18432,20727]]],["hand",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18432]]],["handfuls",[2,2,[[10,1,1,0,1,[[310,1,1,0,1]]],[25,1,1,1,2,[[814,1,1,1,2]]]],[9418,20727]]]]},{"k":"H8169","v":[["*",[3,3,[[5,1,1,0,1,[[205,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]],[10,1,1,2,3,[[294,1,1,2,3]]]],[6363,6544,8853]]],["Shaalabbin",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6363]]],["Shaalbim",[2,2,[[6,1,1,0,1,[[211,1,1,0,1]]],[10,1,1,1,2,[[294,1,1,1,2]]]],[6544,8853]]]]},{"k":"H8170","v":[["Shaalbonite",[2,2,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,1,1,1,2,[[348,1,1,1,2]]]],[8685,10706]]]]},{"k":"H8171","v":[["Shalim",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7395]]]]},{"k":"H8172","v":[["*",[22,20,[[0,1,1,0,1,[[17,1,1,0,1]]],[3,1,1,1,2,[[137,1,1,1,2]]],[6,1,1,2,3,[[226,1,1,2,3]]],[9,1,1,3,4,[[267,1,1,3,4]]],[11,3,3,4,7,[[317,1,1,4,5],[319,2,2,5,7]]],[13,5,4,7,11,[[379,1,1,7,8],[380,1,1,8,9],[382,3,2,9,11]]],[17,2,2,11,13,[[443,1,1,11,12],[459,1,1,12,13]]],[19,1,1,13,14,[[630,1,1,13,14]]],[22,5,4,14,18,[[688,2,1,14,15],[708,1,1,15,16],[709,1,1,16,17],[728,1,1,17,18]]],[25,1,1,18,19,[[830,1,1,18,19]]],[32,1,1,19,20,[[895,1,1,19,20]]]],[428,4355,6975,8028,9665,9709,9724,11471,11486,11516,11517,13044,13459,16460,17870,18229,18251,18672,21190,22619]]],["lean",[4,4,[[6,1,1,0,1,[[226,1,1,0,1]]],[17,1,1,1,2,[[443,1,1,1,2]]],[19,1,1,2,3,[[630,1,1,2,3]]],[32,1,1,3,4,[[895,1,1,3,4]]]],[6975,13044,16460,22619]]],["leaned",[4,4,[[9,1,1,0,1,[[267,1,1,0,1]]],[11,2,2,1,3,[[319,2,2,1,3]]],[25,1,1,3,4,[[830,1,1,3,4]]]],[8028,9709,9724,21190]]],["leaneth",[1,1,[[11,1,1,0,1,[[317,1,1,0,1]]]],[9665]]],["lieth",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4355]]],["relied",[3,2,[[13,3,2,0,2,[[379,1,1,0,1],[382,2,1,1,2]]]],[11471,11516]]],["rely",[1,1,[[13,1,1,0,1,[[382,1,1,0,1]]]],[11517]]],["rest",[1,1,[[13,1,1,0,1,[[380,1,1,0,1]]]],[11486]]],["resteth",[1,1,[[17,1,1,0,1,[[459,1,1,0,1]]]],[13459]]],["stay",[5,4,[[22,5,4,0,4,[[688,2,1,0,1],[708,1,1,1,2],[709,1,1,2,3],[728,1,1,3,4]]]],[17870,18229,18251,18672]]],["yourselves",[1,1,[[0,1,1,0,1,[[17,1,1,0,1]]]],[428]]]]},{"k":"H8173","v":[["*",[9,8,[[18,4,4,0,4,[[571,1,1,0,1],[596,3,3,1,4]]],[22,5,4,4,8,[[684,1,1,4,5],[689,1,1,5,6],[707,2,1,6,7],[744,1,1,7,8]]]],[15450,15914,15945,15968,17779,17892,18202,18934]]],["cry",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18202]]],["dandled",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18934]]],["delight",[2,2,[[18,2,2,0,2,[[571,1,1,0,1],[596,1,1,1,2]]]],[15450,15968]]],["myself",[2,2,[[18,2,2,0,2,[[596,2,2,0,2]]]],[15914,15945]]],["out",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18202]]],["play",[1,1,[[22,1,1,0,1,[[689,1,1,0,1]]]],[17892]]],["shut",[1,1,[[22,1,1,0,1,[[684,1,1,0,1]]]],[17779]]]]},{"k":"H8174","v":[["Shaaph",[2,2,[[12,2,2,0,2,[[339,2,2,0,2]]]],[10353,10355]]]]},{"k":"H8175","v":[["*",[8,8,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[462,1,1,1,2]]],[18,2,2,2,4,[[527,1,1,2,3],[535,1,1,3,4]]],[23,1,1,4,5,[[746,1,1,4,5]]],[25,2,2,5,7,[[828,1,1,5,6],[833,1,1,6,7]]],[26,1,1,7,8,[[860,1,1,7,8]]]],[5775,13502,14671,14788,18977,21156,21258,22076]]],["+",[3,3,[[25,2,2,0,2,[[828,1,1,0,1],[833,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[21156,21258,22076]]],["afraid",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18977]]],["feared",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5775]]],["hurleth",[1,1,[[17,1,1,0,1,[[462,1,1,0,1]]]],[13502]]],["tempestuous",[1,1,[[18,1,1,0,1,[[527,1,1,0,1]]]],[14671]]],["whirlwind",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14788]]]]},{"k":"H8176","v":[["thinketh",[1,1,[[19,1,1,0,1,[[650,1,1,0,1]]]],[17051]]]]},{"k":"H8177","v":[["*",[3,3,[[26,3,3,0,3,[[852,1,1,0,1],[853,1,1,1,2],[856,1,1,2,3]]]],[21834,21870,21942]]],["hair",[2,2,[[26,2,2,0,2,[[852,1,1,0,1],[856,1,1,1,2]]]],[21834,21942]]],["hairs",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21870]]]]},{"k":"H8178","v":[["*",[4,4,[[17,1,1,0,1,[[453,1,1,0,1]]],[22,1,1,1,2,[[706,1,1,1,2]]],[25,2,2,2,4,[[828,1,1,2,3],[833,1,1,3,4]]]],[13296,18166,21156,21258]]],["+",[2,2,[[25,2,2,0,2,[[828,1,1,0,1],[833,1,1,1,2]]]],[21156,21258]]],["affrighted",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13296]]],["storm",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18166]]]]},{"k":"H8179","v":[["*",[374,302,[[0,9,8,0,8,[[18,1,1,0,1],[21,1,1,1,2],[22,2,2,2,4],[23,1,1,4,5],[27,1,1,5,6],[33,3,2,6,8]]],[1,12,11,8,19,[[69,1,1,8,9],[76,1,1,9,10],[81,3,2,10,12],[84,1,1,12,13],[87,3,3,13,16],[88,1,1,16,17],[89,2,2,17,19]]],[3,1,1,19,20,[[120,1,1,19,20]]],[4,34,33,20,53,[[157,1,1,20,21],[158,1,1,21,22],[163,1,1,22,23],[164,5,5,23,28],[166,4,4,28,32],[167,2,2,32,34],[168,4,4,34,38],[169,3,3,38,41],[170,1,1,41,42],[173,1,1,42,43],[174,2,2,43,45],[175,1,1,45,46],[176,1,1,46,47],[177,1,1,47,48],[178,1,1,48,49],[180,4,3,49,52],[183,1,1,52,53]]],[5,5,5,53,58,[[188,2,2,53,55],[193,1,1,55,56],[194,1,1,56,57],[206,1,1,57,58]]],[6,9,9,58,67,[[215,2,2,58,60],[219,3,3,60,63],[226,2,2,63,65],[228,2,2,65,67]]],[7,4,4,67,71,[[234,1,1,67,68],[235,3,3,68,71]]],[8,4,4,71,75,[[239,1,1,71,72],[244,1,1,72,73],[252,1,1,73,74],[256,1,1,74,75]]],[9,12,10,75,85,[[269,1,1,75,76],[276,1,1,76,77],[277,1,1,77,78],[281,1,1,78,79],[284,4,3,79,82],[285,2,1,82,83],[289,2,2,83,85]]],[10,2,2,85,87,[[298,1,1,85,86],[312,1,1,86,87]]],[11,18,13,87,100,[[319,6,5,87,92],[321,1,1,92,93],[322,1,1,93,94],[323,3,2,94,96],[326,2,1,96,97],[327,1,1,97,98],[335,3,1,98,99],[337,1,1,99,100]]],[12,9,8,100,108,[[346,2,2,100,102],[348,2,2,102,104],[353,1,1,104,105],[359,1,1,105,106],[363,3,2,106,108]]],[13,19,15,108,123,[[372,1,1,108,109],[374,2,1,109,110],[384,1,1,110,111],[389,4,4,111,115],[390,1,1,115,116],[391,2,1,116,117],[392,2,1,117,118],[393,1,1,118,119],[397,1,1,119,120],[398,1,1,120,121],[399,1,1,121,122],[401,2,1,122,123]]],[15,41,31,123,154,[[413,1,1,123,124],[414,8,6,124,130],[415,12,11,130,141],[418,1,1,141,142],[419,1,1,142,143],[420,4,3,143,146],[423,1,1,146,147],[424,10,5,147,152],[425,3,2,152,154]]],[16,11,10,154,164,[[427,2,2,154,156],[428,2,2,156,158],[429,3,2,158,160],[430,2,2,160,162],[431,2,2,162,164]]],[17,5,4,164,168,[[440,1,1,164,165],[464,1,1,165,166],[466,1,1,166,167],[473,2,1,167,168]]],[18,13,13,168,181,[[486,2,2,168,170],[501,2,2,170,172],[546,1,1,172,173],[564,1,1,173,174],[577,1,1,174,175],[584,1,1,175,176],[595,2,2,176,178],[599,1,1,178,179],[604,1,1,179,180],[624,1,1,180,181]]],[19,7,7,181,188,[[628,1,1,181,182],[635,1,1,182,183],[641,1,1,183,184],[649,1,1,184,185],[651,1,1,185,186],[658,2,2,186,188]]],[21,1,1,188,189,[[677,1,1,188,189]]],[22,12,12,189,201,[[692,1,1,189,190],[700,1,1,190,191],[702,1,1,191,192],[704,1,1,192,193],[706,1,1,193,194],[707,1,1,194,195],[716,1,1,195,196],[723,1,1,196,197],[732,1,1,197,198],[738,2,2,198,200],[740,1,1,200,201]]],[23,28,25,201,226,[[745,1,1,201,202],[751,2,1,202,203],[758,1,1,203,204],[759,1,1,204,205],[761,8,6,205,211],[763,1,1,211,212],[764,1,1,212,213],[766,3,3,213,216],[770,1,1,216,217],[775,2,2,217,219],[780,1,1,219,220],[781,1,1,220,221],[782,1,1,221,222],[783,2,2,222,224],[795,1,1,224,225],[796,1,1,225,226]]],[24,4,4,226,230,[[797,1,1,226,227],[798,1,1,227,228],[800,1,1,228,229],[801,1,1,229,230]]],[25,99,59,230,289,[[809,3,3,230,233],[810,1,1,233,234],[811,1,1,234,235],[812,2,1,235,236],[822,2,2,236,238],[827,1,1,238,239],[841,43,28,239,267],[843,1,1,267,268],[844,3,2,268,270],[845,7,6,270,276],[846,1,1,276,277],[847,15,7,277,284],[848,2,1,284,285],[849,17,4,285,289]]],[29,3,3,289,292,[[883,3,3,289,292]]],[30,2,2,292,294,[[888,2,2,292,294]]],[32,3,3,294,297,[[893,2,2,294,296],[894,1,1,296,297]]],[33,2,2,297,299,[[901,1,1,297,298],[902,1,1,298,299]]],[35,1,1,299,300,[[906,1,1,299,300]]],[37,4,2,300,302,[[918,1,1,300,301],[924,3,1,301,302]]]],[458,564,581,589,651,790,1000,1004,2061,2288,2464,2465,2548,2648,2651,2664,2704,2715,2740,3769,5067,5095,5228,5252,5255,5257,5258,5261,5311,5317,5318,5319,5326,5341,5347,5353,5356,5360,5366,5369,5372,5390,5466,5485,5494,5516,5539,5554,5578,5663,5666,5668,5740,5874,5876,5981,6031,6376,6631,6634,6789,6794,6798,6951,6952,7009,7010,7183,7191,7200,7201,7315,7409,7670,7785,8108,8248,8282,8391,8482,8502,8511,8519,8668,8669,9022,9490,9708,9710,9724,9725,9727,9787,9801,9835,9848,9909,9960,10173,10226,10633,10638,10690,10691,10862,10967,11090,11093,11310,11360,11551,11661,11671,11675,11676,11685,11727,11741,11758,11856,11881,11922,11981,12299,12310,12315,12320,12321,12322,12324,12328,12330,12333,12340,12341,12342,12353,12355,12356,12358,12359,12402,12423,12494,12496,12509,12607,12649,12654,12655,12661,12663,12690,12693,12743,12745,12749,12750,12764,12768,12788,12792,12803,12805,12955,13539,13609,13810,14034,14035,14248,14250,14947,15303,15512,15717,15888,15889,16091,16126,16364,16421,16605,16791,17037,17086,17307,17315,17631,17959,18059,18107,18132,18170,18214,18400,18562,18735,18832,18839,18864,18961,19121,19295,19322,19376,19377,19378,19381,19382,19384,19409,19424,19456,19458,19473,19582,19729,19731,19852,19887,19902,19926,19927,20270,20283,20314,20341,20432,20456,20607,20609,20618,20624,20652,20656,20959,20966,21110,21480,21483,21484,21485,21486,21487,21488,21490,21491,21492,21493,21495,21496,21497,21498,21499,21500,21501,21504,21505,21509,21512,21515,21516,21517,21518,21521,21525,21567,21573,21576,21600,21601,21602,21603,21610,21616,21649,21656,21657,21658,21663,21664,21667,21674,21681,21733,21734,21735,21736,22433,22435,22438,22521,22523,22588,22591,22608,22705,22725,22797,22992,23078]]],["+",[16,13,[[1,2,2,0,2,[[81,1,1,0,1],[88,1,1,1,2]]],[7,1,1,2,3,[[235,1,1,2,3]]],[12,2,1,3,4,[[363,2,1,3,4]]],[13,5,3,4,7,[[374,2,1,4,5],[391,1,1,5,6],[401,2,1,6,7]]],[18,1,1,7,8,[[486,1,1,7,8]]],[24,1,1,8,9,[[801,1,1,8,9]]],[25,2,2,9,11,[[841,2,2,9,11]]],[35,1,1,11,12,[[906,1,1,11,12]]],[37,1,1,12,13,[[924,1,1,12,13]]]],[2465,2704,7200,11090,11360,11727,11981,14034,20456,21500,21504,22797,23078]]],["cities",[2,2,[[10,1,1,0,1,[[298,1,1,0,1]]],[13,1,1,1,2,[[372,1,1,1,2]]]],[9022,11310]]],["city",[1,1,[[7,1,1,0,1,[[234,1,1,0,1]]]],[7183]]],["door",[1,1,[[1,1,1,0,1,[[84,1,1,0,1]]]],[2548]]],["doors",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13810]]],["gate",[240,193,[[0,9,8,0,8,[[18,1,1,0,1],[21,1,1,1,2],[22,2,2,2,4],[23,1,1,4,5],[27,1,1,5,6],[33,3,2,6,8]]],[1,8,8,8,16,[[76,1,1,8,9],[81,2,2,9,11],[87,3,3,11,14],[89,2,2,14,16]]],[3,1,1,16,17,[[120,1,1,16,17]]],[4,4,4,17,21,[[173,1,1,17,18],[174,2,2,18,20],[177,1,1,20,21]]],[5,5,5,21,26,[[188,2,2,21,23],[193,1,1,23,24],[194,1,1,24,25],[206,1,1,25,26]]],[6,7,7,26,33,[[219,3,3,26,29],[226,2,2,29,31],[228,2,2,31,33]]],[7,2,2,33,35,[[235,2,2,33,35]]],[8,3,3,35,38,[[239,1,1,35,36],[244,1,1,36,37],[256,1,1,37,38]]],[9,11,10,38,48,[[269,1,1,38,39],[276,1,1,39,40],[277,1,1,40,41],[281,1,1,41,42],[284,3,3,42,45],[285,2,1,45,46],[289,2,2,46,48]]],[10,1,1,48,49,[[312,1,1,48,49]]],[11,17,13,49,62,[[319,6,5,49,54],[321,1,1,54,55],[322,1,1,55,56],[323,3,2,56,58],[326,2,1,58,59],[327,1,1,59,60],[335,2,1,60,61],[337,1,1,61,62]]],[12,4,4,62,66,[[346,1,1,62,63],[348,2,2,63,65],[363,1,1,65,66]]],[13,11,10,66,76,[[384,1,1,66,67],[389,3,3,67,70],[390,1,1,70,71],[391,1,1,71,72],[392,2,1,72,73],[393,1,1,73,74],[398,1,1,74,75],[399,1,1,75,76]]],[15,27,20,76,96,[[414,3,3,76,79],[415,12,11,79,90],[420,4,3,90,93],[424,8,3,93,96]]],[16,11,10,96,106,[[427,2,2,96,98],[428,2,2,98,100],[429,3,2,100,102],[430,2,2,102,104],[431,2,2,104,106]]],[17,3,3,106,109,[[440,1,1,106,107],[464,1,1,107,108],[466,1,1,108,109]]],[18,3,3,109,112,[[546,1,1,109,110],[595,1,1,110,111],[604,1,1,111,112]]],[19,2,2,112,114,[[649,1,1,112,113],[651,1,1,113,114]]],[21,1,1,114,115,[[677,1,1,114,115]]],[22,5,5,115,120,[[692,1,1,115,116],[700,1,1,116,117],[702,1,1,117,118],[706,1,1,118,119],[707,1,1,119,120]]],[23,13,13,120,133,[[751,1,1,120,121],[761,1,1,121,122],[763,1,1,122,123],[764,1,1,123,124],[770,1,1,124,125],[775,2,2,125,127],[780,1,1,127,128],[781,1,1,128,129],[782,1,1,129,130],[783,2,2,130,132],[796,1,1,132,133]]],[25,83,52,133,185,[[809,3,3,133,136],[810,1,1,136,137],[811,1,1,137,138],[812,2,1,138,139],[841,38,26,139,165],[843,1,1,165,166],[844,3,2,166,168],[845,4,4,168,172],[846,1,1,172,173],[847,15,7,173,180],[848,2,1,180,181],[849,12,4,181,185]]],[29,3,3,185,188,[[883,3,3,185,188]]],[30,1,1,188,189,[[888,1,1,188,189]]],[32,3,3,189,192,[[893,2,2,189,191],[894,1,1,191,192]]],[37,2,1,192,193,[[924,2,1,192,193]]]],[458,564,581,589,651,790,1000,1004,2288,2464,2465,2648,2651,2664,2715,2740,3769,5466,5485,5494,5554,5874,5876,5981,6031,6376,6789,6794,6798,6951,6952,7009,7010,7191,7201,7315,7409,7785,8108,8248,8282,8391,8482,8502,8511,8519,8668,8669,9490,9708,9710,9724,9725,9727,9787,9801,9835,9848,9909,9960,10173,10226,10633,10690,10691,11093,11551,11661,11671,11676,11685,11727,11741,11758,11881,11922,12320,12321,12322,12328,12330,12333,12340,12341,12342,12353,12355,12356,12358,12359,12494,12496,12509,12655,12661,12663,12743,12745,12749,12750,12764,12768,12788,12792,12803,12805,12955,13539,13609,14947,15889,16126,17037,17086,17631,17959,18059,18107,18170,18214,19121,19376,19409,19424,19582,19729,19731,19852,19887,19902,19926,19927,20283,20607,20609,20618,20624,20652,20656,21480,21483,21484,21485,21486,21487,21488,21490,21491,21492,21493,21496,21497,21498,21499,21500,21501,21504,21505,21509,21512,21516,21517,21518,21521,21525,21567,21573,21576,21600,21601,21602,21603,21649,21656,21657,21658,21663,21664,21667,21674,21681,21733,21734,21735,21736,22433,22435,22438,22523,22588,22591,22608,23078]]],["gates",[111,105,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,30,29,1,30,[[157,1,1,1,2],[158,1,1,2,3],[163,1,1,3,4],[164,5,5,4,9],[166,4,4,9,13],[167,2,2,13,15],[168,4,4,15,19],[169,3,3,19,22],[170,1,1,22,23],[175,1,1,23,24],[176,1,1,24,25],[178,1,1,25,26],[180,4,3,26,29],[183,1,1,29,30]]],[6,2,2,30,32,[[215,2,2,30,32]]],[8,1,1,32,33,[[252,1,1,32,33]]],[9,1,1,33,34,[[284,1,1,33,34]]],[11,1,1,34,35,[[335,1,1,34,35]]],[12,2,2,35,37,[[346,1,1,35,36],[359,1,1,36,37]]],[13,2,2,37,39,[[389,1,1,37,38],[397,1,1,38,39]]],[15,13,12,39,51,[[413,1,1,39,40],[414,4,4,40,44],[418,1,1,44,45],[419,1,1,45,46],[423,1,1,46,47],[424,2,2,47,49],[425,3,2,49,51]]],[17,1,1,51,52,[[473,1,1,51,52]]],[18,9,9,52,61,[[486,1,1,52,53],[501,2,2,53,55],[564,1,1,55,56],[577,1,1,56,57],[584,1,1,57,58],[595,1,1,58,59],[599,1,1,59,60],[624,1,1,60,61]]],[19,5,5,61,66,[[628,1,1,61,62],[635,1,1,62,63],[641,1,1,63,64],[658,2,2,64,66]]],[22,7,7,66,73,[[704,1,1,66,67],[716,1,1,67,68],[723,1,1,68,69],[732,1,1,69,70],[738,2,2,70,72],[740,1,1,72,73]]],[23,15,14,73,87,[[745,1,1,73,74],[751,1,1,74,75],[758,1,1,75,76],[759,1,1,76,77],[761,7,6,77,83],[766,3,3,83,86],[795,1,1,86,87]]],[24,3,3,87,90,[[797,1,1,87,88],[798,1,1,88,89],[800,1,1,89,90]]],[25,14,11,90,101,[[822,2,2,90,92],[827,1,1,92,93],[841,3,2,93,95],[845,3,2,95,97],[849,5,4,97,101]]],[30,1,1,101,102,[[888,1,1,101,102]]],[33,2,2,102,104,[[901,1,1,102,103],[902,1,1,103,104]]],[37,1,1,104,105,[[918,1,1,104,105]]]],[2061,5067,5095,5228,5252,5255,5257,5258,5261,5311,5317,5318,5319,5326,5341,5347,5353,5356,5360,5366,5369,5372,5390,5516,5539,5578,5663,5666,5668,5740,6631,6634,7670,8502,10173,10638,10967,11675,11856,12299,12310,12315,12320,12324,12402,12423,12607,12649,12654,12690,12693,13810,14035,14248,14250,15303,15512,15717,15888,16091,16364,16421,16605,16791,17307,17315,18132,18400,18562,18735,18832,18839,18864,18961,19121,19295,19322,19376,19377,19378,19381,19382,19384,19456,19458,19473,20270,20314,20341,20432,20959,20966,21110,21495,21515,21610,21616,21733,21734,21735,21736,22521,22705,22725,22992]]],["port",[1,1,[[15,1,1,0,1,[[414,1,1,0,1]]]],[12320]]],["porters",[1,1,[[12,1,1,0,1,[[353,1,1,0,1]]]],[10862]]]]},{"k":"H8180","v":[["+",[1,1,[[0,1,1,0,1,[[25,1,1,0,1]]]],[704]]]]},{"k":"H8181","v":[["*",[28,27,[[0,1,1,0,1,[[24,1,1,0,1]]],[2,15,14,1,15,[[102,12,12,1,13],[103,3,2,13,15]]],[3,2,2,15,17,[[122,2,2,15,17]]],[6,1,1,17,18,[[226,1,1,17,18]]],[9,1,1,18,19,[[280,1,1,18,19]]],[11,1,1,19,20,[[313,1,1,19,20]]],[14,1,1,20,21,[[411,1,1,20,21]]],[18,1,1,21,22,[[545,1,1,21,22]]],[21,2,2,22,24,[[674,1,1,22,23],[676,1,1,23,24]]],[22,1,1,24,25,[[685,1,1,24,25]]],[25,1,1,25,26,[[817,1,1,25,26]]],[37,1,1,26,27,[[923,1,1,26,27]]]],[683,3055,3056,3062,3072,3073,3077,3078,3082,3083,3084,3088,3089,3119,3120,3828,3841,6971,8382,9541,12240,14921,17583,17619,17802,20769,23063]]],["+",[3,3,[[2,1,1,0,1,[[103,1,1,0,1]]],[11,1,1,1,2,[[313,1,1,1,2]]],[14,1,1,2,3,[[411,1,1,2,3]]]],[3120,9541,12240]]],["hair",[21,21,[[2,13,13,0,13,[[102,11,11,0,11],[103,2,2,11,13]]],[3,2,2,13,15,[[122,2,2,13,15]]],[6,1,1,15,16,[[226,1,1,15,16]]],[9,1,1,16,17,[[280,1,1,16,17]]],[21,2,2,17,19,[[674,1,1,17,18],[676,1,1,18,19]]],[22,1,1,19,20,[[685,1,1,19,20]]],[25,1,1,20,21,[[817,1,1,20,21]]]],[3055,3056,3062,3072,3077,3078,3082,3083,3084,3088,3089,3119,3120,3828,3841,6971,8382,17583,17619,17802,20769]]],["hairs",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3073]]],["hairy",[2,2,[[0,1,1,0,1,[[24,1,1,0,1]]],[18,1,1,1,2,[[545,1,1,1,2]]]],[683,14921]]],["rough",[1,1,[[37,1,1,0,1,[[923,1,1,0,1]]]],[23063]]]]},{"k":"H8182","v":[["vile",[1,1,[[23,1,1,0,1,[[773,1,1,0,1]]]],[19652]]]]},{"k":"H8183","v":[["*",[3,3,[[10,1,1,0,1,[[291,1,1,0,1]]],[17,1,1,1,2,[[444,1,1,1,2]]],[33,1,1,2,3,[[900,1,1,2,3]]]],[8769,13068,22687]]],["+",[1,1,[[10,1,1,0,1,[[291,1,1,0,1]]]],[8769]]],["storm",[1,1,[[33,1,1,0,1,[[900,1,1,0,1]]]],[22687]]],["tempest",[1,1,[[17,1,1,0,1,[[444,1,1,0,1]]]],[13068]]]]},{"k":"H8184","v":[["*",[34,32,[[1,2,1,0,1,[[58,2,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]],[3,1,1,2,3,[[121,1,1,2,3]]],[4,1,1,3,4,[[160,1,1,3,4]]],[6,1,1,4,5,[[217,1,1,4,5]]],[7,6,6,5,11,[[232,1,1,5,6],[233,2,2,6,8],[234,3,3,8,11]]],[9,3,3,11,14,[[280,1,1,11,12],[283,1,1,12,13],[287,1,1,13,14]]],[10,1,1,14,15,[[294,1,1,14,15]]],[11,4,4,15,19,[[316,1,1,15,16],[319,3,3,16,19]]],[12,1,1,19,20,[[348,1,1,19,20]]],[13,3,3,20,23,[[368,2,2,20,22],[393,1,1,22,23]]],[17,1,1,23,24,[[466,1,1,23,24]]],[22,1,1,24,25,[[706,1,1,24,25]]],[23,1,1,25,26,[[785,1,1,25,26]]],[25,4,4,26,30,[[805,2,2,26,28],[814,1,1,28,29],[846,1,1,29,30]]],[27,2,1,30,31,[[864,2,1,30,31]]],[28,1,1,31,32,[[876,1,1,31,32]]]],[1773,3586,3807,5145,6707,7149,7166,7172,7174,7187,7189,8386,8477,8589,8872,9645,9708,9723,9725,10686,11221,11226,11760,13628,18189,19965,20538,20541,20727,21643,22130,22302]]],["Barley",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8872]]],["barley",[33,31,[[1,2,1,0,1,[[58,2,1,0,1]]],[2,1,1,1,2,[[116,1,1,1,2]]],[3,1,1,2,3,[[121,1,1,2,3]]],[4,1,1,3,4,[[160,1,1,3,4]]],[6,1,1,4,5,[[217,1,1,4,5]]],[7,6,6,5,11,[[232,1,1,5,6],[233,2,2,6,8],[234,3,3,8,11]]],[9,3,3,11,14,[[280,1,1,11,12],[283,1,1,12,13],[287,1,1,13,14]]],[11,4,4,14,18,[[316,1,1,14,15],[319,3,3,15,18]]],[12,1,1,18,19,[[348,1,1,18,19]]],[13,3,3,19,22,[[368,2,2,19,21],[393,1,1,21,22]]],[17,1,1,22,23,[[466,1,1,22,23]]],[22,1,1,23,24,[[706,1,1,23,24]]],[23,1,1,24,25,[[785,1,1,24,25]]],[25,4,4,25,29,[[805,2,2,25,27],[814,1,1,27,28],[846,1,1,28,29]]],[27,2,1,29,30,[[864,2,1,29,30]]],[28,1,1,30,31,[[876,1,1,30,31]]]],[1773,3586,3807,5145,6707,7149,7166,7172,7174,7187,7189,8386,8477,8589,9645,9708,9723,9725,10686,11221,11226,11760,13628,18189,19965,20538,20541,20727,21643,22130,22302]]]]},{"k":"H8185","v":[["*",[6,6,[[6,1,1,0,1,[[230,1,1,0,1]]],[8,1,1,1,2,[[249,1,1,1,2]]],[9,1,1,2,3,[[280,1,1,2,3]]],[17,1,1,3,4,[[439,1,1,3,4]]],[18,2,2,4,6,[[517,1,1,4,5],[546,1,1,5,6]]]],[7070,7553,8367,12945,14537,14939]]],["+",[4,4,[[8,1,1,0,1,[[249,1,1,0,1]]],[9,1,1,1,2,[[280,1,1,1,2]]],[18,2,2,2,4,[[517,1,1,2,3],[546,1,1,3,4]]]],[7553,8367,14537,14939]]],["hair",[2,2,[[6,1,1,0,1,[[230,1,1,0,1]]],[17,1,1,1,2,[[439,1,1,1,2]]]],[7070,12945]]]]},{"k":"H8186","v":[["thing",[4,4,[[23,3,3,0,3,[[749,1,1,0,1],[762,1,1,1,2],[767,1,1,2,3]]],[27,1,1,3,4,[[867,1,1,3,4]]]],[19088,19397,19498,22177]]]]},{"k":"H8187","v":[["Sheariah",[2,2,[[12,2,2,0,2,[[345,1,1,0,1],[346,1,1,1,2]]]],[10613,10659]]]]},{"k":"H8188","v":[["Seorim",[1,1,[[12,1,1,0,1,[[361,1,1,0,1]]]],[11023]]]]},{"k":"H8189","v":[["*",[3,3,[[5,1,1,0,1,[[201,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[12,1,1,2,3,[[341,1,1,2,3]]]],[6238,7670,10416]]],["Shaaraim",[2,2,[[8,1,1,0,1,[[252,1,1,0,1]]],[12,1,1,1,2,[[341,1,1,1,2]]]],[7670,10416]]],["Sharaim",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6238]]]]},{"k":"H8190","v":[["Shaashgaz",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12738]]]]},{"k":"H8191","v":[["*",[9,9,[[18,5,5,0,5,[[596,5,5,0,5]]],[19,2,2,5,7,[[635,2,2,5,7]]],[22,1,1,7,8,[[683,1,1,7,8]]],[23,1,1,8,9,[[775,1,1,8,9]]]],[15922,15975,15990,16041,16072,16632,16633,17746,19711]]],["delight",[4,4,[[18,3,3,0,3,[[596,3,3,0,3]]],[19,1,1,3,4,[[635,1,1,3,4]]]],[15922,15975,16072,16632]]],["delights",[3,3,[[18,2,2,0,2,[[596,2,2,0,2]]],[19,1,1,2,3,[[635,1,1,2,3]]]],[15990,16041,16633]]],["pleasant",[2,2,[[22,1,1,0,1,[[683,1,1,0,1]]],[23,1,1,1,2,[[775,1,1,1,2]]]],[17746,19711]]]]},{"k":"H8192","v":[["*",[2,2,[[17,1,1,0,1,[[468,1,1,0,1]]],[22,1,1,1,2,[[691,1,1,1,2]]]],[13671,17908]]],["high",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17908]]],["out",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13671]]]]},{"k":"H8193","v":[["*",[176,164,[[0,8,7,0,7,[[10,5,4,0,4],[21,1,1,4,5],[40,2,2,5,7]]],[1,17,13,7,20,[[51,1,1,7,8],[55,2,2,8,10],[56,1,1,10,11],[63,1,1,11,12],[75,4,2,12,14],[77,2,2,14,16],[85,4,2,16,18],[88,2,2,18,20]]],[2,1,1,20,21,[[94,1,1,20,21]]],[3,3,3,21,24,[[146,3,3,21,24]]],[4,3,3,24,27,[[154,1,1,24,25],[156,1,1,25,26],[175,1,1,26,27]]],[5,4,4,27,31,[[197,1,1,27,28],[198,1,1,28,29],[199,2,2,29,31]]],[6,2,2,31,33,[[217,2,2,31,33]]],[8,2,2,33,35,[[236,1,1,33,34],[248,1,1,34,35]]],[10,7,5,35,40,[[294,1,1,35,36],[297,5,3,36,39],[299,1,1,39,40]]],[11,3,3,40,43,[[314,1,1,40,41],[330,1,1,41,42],[331,1,1,42,43]]],[13,5,3,43,46,[[370,4,2,43,45],[374,1,1,45,46]]],[17,12,12,46,58,[[437,1,1,46,47],[443,1,1,47,48],[446,2,2,48,50],[447,1,1,50,51],[448,1,1,51,52],[450,1,1,52,53],[451,1,1,53,54],[458,1,1,54,55],[462,1,1,55,56],[467,1,1,56,57],[468,1,1,57,58]]],[18,28,28,58,86,[[489,3,3,58,61],[493,1,1,61,62],[494,2,2,62,64],[498,1,1,64,65],[499,1,1,65,66],[508,1,1,66,67],[511,1,1,67,68],[517,1,1,68,69],[522,1,1,69,70],[528,1,1,70,71],[536,2,2,71,73],[540,2,2,73,75],[543,1,1,75,76],[548,1,1,76,77],[558,1,1,77,78],[566,1,1,78,79],[583,1,1,79,80],[596,2,2,80,82],[597,1,1,82,83],[617,2,2,83,85],[618,1,1,85,86]]],[19,46,45,86,131,[[631,1,1,86,87],[632,2,2,87,89],[634,1,1,89,90],[635,2,2,90,92],[637,7,7,92,99],[639,3,3,99,102],[640,1,1,102,103],[641,3,3,103,106],[642,1,1,106,107],[643,6,6,107,113],[644,4,3,113,116],[645,3,3,116,119],[646,1,1,119,120],[647,2,2,120,122],[649,2,2,122,124],[650,1,1,124,125],[651,3,3,125,128],[653,2,2,128,130],[654,1,1,130,131]]],[20,1,1,131,132,[[668,1,1,131,132]]],[21,4,4,132,136,[[674,2,2,132,134],[675,1,1,134,135],[677,1,1,135,136]]],[22,13,12,136,148,[[684,3,2,136,138],[689,1,1,138,139],[697,1,1,139,140],[706,1,1,140,141],[707,1,1,141,142],[708,1,1,142,143],[711,1,1,143,144],[714,1,1,144,145],[715,1,1,145,146],[735,1,1,146,147],[737,1,1,147,148]]],[23,1,1,148,149,[[761,1,1,148,149]]],[24,1,1,149,150,[[799,1,1,149,150]]],[25,7,7,150,157,[[804,2,2,150,152],[837,1,1,152,153],[844,1,1,153,154],[848,3,3,154,157]]],[26,3,2,157,159,[[859,1,1,157,158],[861,2,1,158,159]]],[27,1,1,159,160,[[875,1,1,159,160]]],[34,1,1,160,161,[[905,1,1,160,161]]],[35,1,1,161,162,[[908,1,1,161,162]]],[38,2,2,162,164,[[926,2,2,162,164]]]],[267,272,273,275,564,1198,1212,1557,1667,1685,1700,1919,2239,2245,2319,2325,2577,2583,2683,2687,2834,4654,4656,4660,4974,5052,5523,6111,6132,6163,6170,6706,6716,7225,7490,8873,8957,8958,8960,9077,9564,10044,10089,11248,11251,11363,12901,13050,13110,13113,13148,13159,13209,13243,13431,13485,13648,13653,14068,14069,14070,14096,14104,14107,14193,14211,14349,14401,14534,14599,14706,14797,14802,14842,14844,14887,14999,15222,15360,15684,15911,16069,16076,16266,16272,16279,16514,16519,16520,16596,16608,16609,16664,16666,16669,16674,16675,16677,16688,16732,16738,16741,16750,16775,16779,16795,16814,16850,16853,16861,16863,16867,16870,16877,16880,16901,16907,16908,16921,16926,16969,16973,17026,17033,17060,17081,17105,17107,17164,17165,17171,17505,17585,17593,17611,17636,17774,17776,17888,18022,18175,18206,18244,18298,18335,18381,18784,18803,19373,20416,20507,20508,21362,21585,21685,21686,21691,22031,22086,22284,22784,22829,23109,23110]]],["+",[3,3,[[10,1,1,0,1,[[297,1,1,0,1]]],[13,1,1,1,2,[[370,1,1,1,2]]],[18,1,1,2,3,[[597,1,1,2,3]]]],[8957,11248,16076]]],["band",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2687]]],["bank",[10,9,[[0,1,1,0,1,[[40,1,1,0,1]]],[4,1,1,1,2,[[156,1,1,1,2]]],[5,3,3,2,5,[[198,1,1,2,3],[199,2,2,3,5]]],[11,1,1,5,6,[[314,1,1,5,6]]],[25,2,2,6,8,[[848,2,2,6,8]]],[26,2,1,8,9,[[861,2,1,8,9]]]],[1212,5052,6132,6163,6170,9564,21686,21691,22086]]],["binding",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2325]]],["border",[3,3,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]]],[2319,2683,6716]]],["brim",[6,4,[[10,3,2,0,2,[[297,3,2,0,2]]],[13,3,2,2,4,[[370,3,2,2,4]]]],[8958,8960,11248,11251]]],["brink",[5,5,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,2,2,1,3,[[51,1,1,1,2],[56,1,1,2,3]]],[4,1,1,3,4,[[154,1,1,3,4]]],[25,1,1,4,5,[[848,1,1,4,5]]]],[1198,1557,1700,4974,21685]]],["edge",[8,5,[[1,7,4,0,4,[[75,4,2,0,2],[85,3,2,2,4]]],[25,1,1,4,5,[[844,1,1,4,5]]]],[2239,2245,2577,2583,21585]]],["language",[7,7,[[0,4,4,0,4,[[10,4,4,0,4]]],[18,1,1,4,5,[[558,1,1,4,5]]],[22,1,1,5,6,[[697,1,1,5,6]]],[35,1,1,6,7,[[908,1,1,6,7]]]],[267,272,273,275,15222,18022,22829]]],["lip",[2,2,[[18,1,1,0,1,[[499,1,1,0,1]]],[19,1,1,1,2,[[639,1,1,1,2]]]],[14211,16738]]],["lips",[109,108,[[1,2,2,0,2,[[55,2,2,0,2]]],[2,1,1,2,3,[[94,1,1,2,3]]],[3,3,3,3,6,[[146,3,3,3,6]]],[4,1,1,6,7,[[175,1,1,6,7]]],[8,1,1,7,8,[[236,1,1,7,8]]],[11,1,1,8,9,[[331,1,1,8,9]]],[17,10,10,9,19,[[437,1,1,9,10],[443,1,1,10,11],[446,1,1,11,12],[448,1,1,12,13],[450,1,1,13,14],[451,1,1,14,15],[458,1,1,15,16],[462,1,1,16,17],[467,1,1,17,18],[468,1,1,18,19]]],[18,25,25,19,44,[[489,3,3,19,22],[493,1,1,22,23],[494,2,2,23,25],[498,1,1,25,26],[508,1,1,26,27],[511,1,1,27,28],[517,1,1,28,29],[522,1,1,29,30],[528,1,1,30,31],[536,2,2,31,33],[540,2,2,33,35],[543,1,1,35,36],[548,1,1,36,37],[566,1,1,37,38],[583,1,1,38,39],[596,2,2,39,41],[617,2,2,41,43],[618,1,1,43,44]]],[19,42,42,44,86,[[631,1,1,44,45],[632,2,2,45,47],[634,1,1,47,48],[635,2,2,48,50],[637,5,5,50,55],[639,2,2,55,57],[640,1,1,57,58],[641,3,3,58,61],[642,1,1,61,62],[643,6,6,62,68],[644,3,3,68,71],[645,3,3,71,74],[646,1,1,74,75],[647,2,2,75,77],[649,2,2,77,79],[650,1,1,79,80],[651,3,3,80,83],[653,2,2,83,85],[654,1,1,85,86]]],[20,1,1,86,87,[[668,1,1,86,87]]],[21,4,4,87,91,[[674,2,2,87,89],[675,1,1,89,90],[677,1,1,90,91]]],[22,10,9,91,100,[[684,3,2,91,93],[689,1,1,93,94],[706,1,1,94,95],[707,1,1,95,96],[708,1,1,96,97],[715,1,1,97,98],[735,1,1,98,99],[737,1,1,99,100]]],[23,1,1,100,101,[[761,1,1,100,101]]],[24,1,1,101,102,[[799,1,1,101,102]]],[25,1,1,102,103,[[837,1,1,102,103]]],[26,1,1,103,104,[[859,1,1,103,104]]],[27,1,1,104,105,[[875,1,1,104,105]]],[34,1,1,105,106,[[905,1,1,105,106]]],[38,2,2,106,108,[[926,2,2,106,108]]]],[1667,1685,2834,4654,4656,4660,5523,7225,10089,12901,13050,13113,13159,13209,13243,13431,13485,13648,13653,14068,14069,14070,14096,14104,14107,14193,14349,14401,14534,14599,14706,14797,14802,14842,14844,14887,14999,15360,15684,15911,16069,16266,16272,16279,16514,16519,16520,16596,16608,16609,16669,16674,16675,16677,16688,16732,16741,16750,16775,16779,16795,16814,16850,16853,16861,16863,16867,16870,16877,16880,16901,16907,16908,16921,16926,16969,16973,17026,17033,17060,17081,17105,17107,17164,17165,17171,17505,17585,17593,17611,17636,17774,17776,17888,18175,18206,18244,18381,18784,18803,19373,20416,21362,22031,22284,22784,23109,23110]]],["other",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8957]]],["prating",[2,2,[[19,2,2,0,2,[[637,2,2,0,2]]]],[16664,16666]]],["shore",[6,6,[[0,1,1,0,1,[[21,1,1,0,1]]],[1,1,1,1,2,[[63,1,1,1,2]]],[5,1,1,2,3,[[197,1,1,2,3]]],[8,1,1,3,4,[[248,1,1,3,4]]],[10,2,2,4,6,[[294,1,1,4,5],[299,1,1,5,6]]]],[564,1919,6111,7490,8873,9077]]],["side",[3,3,[[1,1,1,0,1,[[85,1,1,0,1]]],[6,1,1,1,2,[[217,1,1,1,2]]],[13,1,1,2,3,[[374,1,1,2,3]]]],[2577,6706,11363]]],["speech",[6,6,[[0,1,1,0,1,[[10,1,1,0,1]]],[17,1,1,1,2,[[447,1,1,1,2]]],[19,1,1,2,3,[[644,1,1,2,3]]],[22,1,1,3,4,[[711,1,1,3,4]]],[25,2,2,4,6,[[804,2,2,4,6]]]],[273,13148,16880,18298,20507,20508]]],["talk",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13110]]],["vain",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[714,1,1,1,2]]]],[10044,18335]]]]},{"k":"H8194","v":[["cheese",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8478]]]]},{"k":"H8195","v":[["*",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1063,10292]]],["Shephi",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10292]]],["Shepho",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1063]]]]},{"k":"H8196","v":[["judgment",[2,2,[[13,1,1,0,1,[[386,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[11596,21017]]]]},{"k":"H8197","v":[["*",[2,2,[[3,1,1,0,1,[[142,1,1,0,1]]],[12,1,1,1,2,[[345,1,1,1,2]]]],[4528,10580]]],["Shephuphan",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10580]]],["Shupham",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4528]]]]},{"k":"H8198","v":[["*",[63,58,[[0,28,26,0,26,[[11,1,1,0,1],[15,6,6,1,7],[19,1,1,7,8],[23,1,1,8,9],[24,1,1,9,10],[28,4,2,10,12],[29,7,7,12,19],[31,2,2,19,21],[32,3,3,21,24],[34,2,2,24,26]]],[1,1,1,26,27,[[60,1,1,26,27]]],[2,1,1,27,28,[[108,1,1,27,28]]],[4,1,1,28,29,[[180,1,1,28,29]]],[7,2,1,29,30,[[233,2,1,29,30]]],[8,6,6,30,36,[[236,1,1,30,31],[243,1,1,31,32],[260,2,2,32,34],[263,2,2,34,36]]],[9,7,7,36,43,[[280,6,6,36,42],[283,1,1,42,43]]],[11,3,3,43,46,[[316,2,2,43,45],[317,1,1,45,46]]],[13,1,1,46,47,[[394,1,1,46,47]]],[16,1,1,47,48,[[432,1,1,47,48]]],[18,1,1,48,49,[[600,1,1,48,49]]],[19,1,1,49,50,[[657,1,1,49,50]]],[20,1,1,50,51,[[660,1,1,50,51]]],[22,2,2,51,53,[[692,1,1,51,52],[702,1,1,52,53]]],[23,6,4,53,57,[[778,6,4,53,57]]],[28,1,1,57,58,[[877,1,1,57,58]]]],[314,382,383,384,386,387,389,509,626,670,819,824,834,837,839,840,842,848,873,933,950,961,962,966,1036,1037,1811,3301,5679,7162,7230,7385,7888,7902,7963,7964,8362,8363,8368,8371,8373,8375,8466,9605,9619,9673,11774,12811,16100,17274,17340,17930,18097,19810,19811,19812,19817,22340]]],["bondmaid",[1,1,[[2,1,1,0,1,[[108,1,1,0,1]]]],[3301]]],["bondwomen",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[13,1,1,1,2,[[394,1,1,1,2]]],[16,1,1,2,3,[[432,1,1,2,3]]]],[5679,11774,12811]]],["handmaid",[22,22,[[0,7,7,0,7,[[15,1,1,0,1],[24,1,1,1,2],[28,2,2,2,4],[29,1,1,4,5],[34,2,2,5,7]]],[7,1,1,7,8,[[233,1,1,7,8]]],[8,4,4,8,12,[[236,1,1,8,9],[260,1,1,9,10],[263,2,2,10,12]]],[9,6,6,12,18,[[280,6,6,12,18]]],[11,2,2,18,20,[[316,2,2,18,20]]],[19,1,1,20,21,[[657,1,1,20,21]]],[23,1,1,21,22,[[778,1,1,21,22]]]],[382,670,819,824,834,1036,1037,7162,7230,7888,7963,7964,8362,8363,8368,8371,8373,8375,9605,9619,17274,19817]]],["handmaidens",[2,2,[[0,1,1,0,1,[[32,1,1,0,1]]],[7,1,1,1,2,[[233,1,1,1,2]]]],[966,7162]]],["handmaids",[7,6,[[0,2,2,0,2,[[32,2,2,0,2]]],[22,1,1,2,3,[[692,1,1,2,3]]],[23,3,2,3,5,[[778,3,2,3,5]]],[28,1,1,5,6,[[877,1,1,5,6]]]],[961,962,17930,19812,19817,22340]]],["maid",[12,12,[[0,11,11,0,11,[[15,5,5,0,5],[28,2,2,5,7],[29,4,4,7,11]]],[22,1,1,11,12,[[702,1,1,11,12]]]],[383,384,386,387,389,819,824,837,839,840,842,18097]]],["maiden",[2,2,[[0,1,1,0,1,[[29,1,1,0,1]]],[18,1,1,1,2,[[600,1,1,1,2]]]],[848,16100]]],["maidens",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17340]]],["maidservant",[3,3,[[1,1,1,0,1,[[60,1,1,0,1]]],[23,2,2,1,3,[[778,2,2,1,3]]]],[1811,19810,19811]]],["maidservants",[5,5,[[0,3,3,0,3,[[11,1,1,0,1],[23,1,1,1,2],[29,1,1,2,3]]],[8,1,1,3,4,[[243,1,1,3,4]]],[11,1,1,4,5,[[317,1,1,4,5]]]],[314,626,873,7385,9673]]],["servant",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7902]]],["wench",[1,1,[[9,1,1,0,1,[[283,1,1,0,1]]]],[8466]]],["womenservants",[3,3,[[0,3,3,0,3,[[19,1,1,0,1],[31,2,2,1,3]]]],[509,933,950]]]]},{"k":"H8199","v":[["*",[203,182,[[0,5,4,0,4,[[15,1,1,0,1],[17,1,1,1,2],[18,2,1,2,3],[30,1,1,3,4]]],[1,8,6,4,10,[[51,1,1,4,5],[54,1,1,5,6],[67,6,4,6,10]]],[2,1,1,10,11,[[108,1,1,10,11]]],[3,2,2,11,13,[[141,1,1,11,12],[151,1,1,12,13]]],[4,11,9,13,22,[[153,2,1,13,14],[168,2,1,14,15],[169,2,2,15,17],[171,2,2,17,19],[173,1,1,19,20],[177,2,2,20,22]]],[5,3,3,22,25,[[194,1,1,22,23],[209,1,1,23,24],[210,1,1,24,25]]],[6,21,17,25,42,[[212,6,4,25,29],[213,1,1,29,30],[214,1,1,30,31],[220,2,2,31,33],[221,2,1,33,34],[222,7,6,34,40],[225,1,1,40,41],[226,1,1,41,42]]],[7,2,1,42,43,[[232,2,1,42,43]]],[8,15,14,43,57,[[238,1,1,43,44],[239,1,1,44,45],[242,4,4,45,49],[243,5,5,49,54],[247,1,1,54,55],[259,3,2,55,57]]],[9,4,4,57,61,[[273,1,1,57,58],[281,1,1,58,59],[284,2,2,59,61]]],[10,5,4,61,65,[[293,3,2,61,63],[297,1,1,63,64],[298,1,1,64,65]]],[11,3,2,65,67,[[327,1,1,65,66],[335,2,1,66,67]]],[12,5,5,67,72,[[353,1,1,67,68],[354,2,2,68,70],[360,1,1,70,71],[363,1,1,71,72]]],[13,10,9,72,81,[[367,3,3,72,75],[372,1,1,75,76],[385,3,2,76,78],[386,1,1,78,79],[388,1,1,79,80],[392,1,1,80,81]]],[14,1,1,81,82,[[412,1,1,81,82]]],[17,6,6,82,88,[[444,2,2,82,84],[447,1,1,84,85],[456,1,1,85,86],[457,1,1,86,87],[458,1,1,87,88]]],[18,32,30,88,118,[[479,1,1,88,89],[484,2,2,89,91],[486,3,3,91,94],[487,1,1,94,95],[503,1,1,95,96],[512,1,1,96,97],[514,1,1,97,98],[520,1,1,98,99],[527,1,1,99,100],[528,1,1,100,101],[535,2,2,101,103],[544,1,1,103,104],[549,1,1,104,105],[552,2,2,105,107],[559,4,4,107,111],[571,1,1,111,112],[573,2,1,112,113],[575,2,1,113,114],[586,2,2,114,116],[618,1,1,116,117],[625,1,1,117,118]]],[19,4,4,118,122,[[635,1,1,118,119],[656,2,2,119,121],[658,1,1,121,122]]],[20,1,1,122,123,[[661,1,1,122,123]]],[22,15,15,123,138,[[679,3,3,123,126],[680,1,1,126,127],[681,1,1,127,128],[683,1,1,128,129],[689,2,2,129,131],[694,1,1,131,132],[711,1,1,132,133],[718,1,1,133,134],[721,1,1,134,135],[729,1,1,135,136],[737,1,1,136,137],[744,1,1,137,138]]],[23,4,4,138,142,[[746,1,1,138,139],[749,1,1,139,140],[755,1,1,140,141],[769,1,1,141,142]]],[24,1,1,142,143,[[799,1,1,142,143]]],[25,29,25,143,168,[[808,3,3,143,146],[812,2,2,146,148],[817,1,1,148,149],[818,1,1,149,150],[819,1,1,150,151],[821,5,3,151,154],[822,1,1,154,155],[823,2,1,155,156],[824,3,3,156,159],[825,1,1,159,160],[834,1,1,160,161],[835,3,3,161,164],[836,1,1,164,165],[837,1,1,165,166],[839,1,1,166,167],[845,2,1,167,168]]],[26,2,1,168,169,[[858,2,1,168,169]]],[27,2,2,169,171,[[868,1,1,169,170],[874,1,1,170,171]]],[28,2,2,171,173,[[878,2,2,171,173]]],[29,1,1,173,174,[[880,1,1,173,174]]],[30,1,1,174,175,[[888,1,1,174,175]]],[32,4,4,175,179,[[895,1,1,175,176],[896,1,1,176,177],[897,1,1,177,178],[899,1,1,178,179]]],[35,1,1,179,180,[[908,1,1,179,180]]],[37,2,2,180,182,[[917,1,1,180,181],[918,1,1,181,182]]]],[386,449,466,926,1568,1653,2012,2015,2021,2025,3296,4476,4869,4908,5360,5373,5376,5423,5424,5449,5548,5549,6035,6462,6477,6561,6562,6563,6564,6578,6603,6813,6814,6856,6876,6877,6878,6880,6882,6883,6949,6980,7128,7289,7315,7358,7367,7368,7369,7370,7371,7374,7375,7389,7467,7851,7854,8191,8393,8497,8509,8825,8844,8941,9017,9930,10187,10853,10869,10873,10987,11106,11196,11204,11205,11305,11581,11582,11599,11652,11753,12266,13066,13075,13145,13377,13402,13426,13955,14003,14006,14025,14029,14040,14059,14274,14434,14483,14567,14674,14695,14780,14790,14897,15004,15073,15078,15234,15235,15236,15241,15433,15478,15499,15762,15786,16282,16382,16618,17233,17238,17293,17376,17671,17677,17680,17689,17709,17742,17887,17888,17974,18301,18443,18531,18678,18804,18938,19000,19086,19246,19565,20413,20580,20585,20604,20665,20666,20800,20845,20879,20899,20930,20931,20974,20978,21031,21043,21052,21070,21300,21330,21333,21335,21355,21378,21447,21623,22000,22185,22276,22345,22355,22382,22531,22619,22623,22634,22667,22823,22971,22992]]],["+",[39,37,[[0,2,1,0,1,[[18,2,1,0,1]]],[1,3,3,1,4,[[67,3,3,1,4]]],[4,1,1,4,5,[[168,1,1,4,5]]],[6,13,12,5,17,[[213,1,1,5,6],[214,1,1,6,7],[220,2,2,7,9],[222,7,6,9,15],[225,1,1,15,16],[226,1,1,16,17]]],[8,6,6,17,23,[[238,1,1,17,18],[239,1,1,18,19],[242,4,4,19,23]]],[10,2,2,23,25,[[293,1,1,23,24],[298,1,1,24,25]]],[11,2,2,25,27,[[327,1,1,25,26],[335,1,1,26,27]]],[12,1,1,27,28,[[353,1,1,27,28]]],[13,3,3,28,31,[[367,1,1,28,29],[372,1,1,29,30],[392,1,1,30,31]]],[17,1,1,31,32,[[458,1,1,31,32]]],[18,1,1,32,33,[[586,1,1,32,33]]],[20,1,1,33,34,[[661,1,1,33,34]]],[25,2,2,34,36,[[823,1,1,34,35],[824,1,1,35,36]]],[28,1,1,36,37,[[878,1,1,36,37]]]],[466,2012,2021,2025,5360,6578,6603,6813,6814,6876,6877,6878,6880,6882,6883,6949,6980,7289,7315,7358,7367,7368,7369,8825,9017,9930,10187,10853,11205,11305,11753,13426,15786,17376,20978,21043,22355]]],["Defend",[1,1,[[18,1,1,0,1,[[559,1,1,0,1]]]],[15236]]],["Execute",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22971]]],["Judge",[5,5,[[0,1,1,0,1,[[17,1,1,0,1]]],[6,1,1,1,2,[[221,1,1,1,2]]],[18,3,3,2,5,[[503,1,1,2,3],[512,1,1,3,4],[520,1,1,4,5]]]],[449,6856,14274,14434,14567]]],["Judges",[1,1,[[4,1,1,0,1,[[168,1,1,0,1]]]],[5360]]],["avenged",[2,2,[[9,2,2,0,2,[[284,2,2,0,2]]]],[8497,8509]]],["contendeth",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17233]]],["deliver",[1,1,[[8,1,1,0,1,[[259,1,1,0,1]]]],[7854]]],["execute",[1,1,[[37,1,1,0,1,[[918,1,1,0,1]]]],[22992]]],["judge",[83,79,[[0,2,2,0,2,[[15,1,1,0,1],[30,1,1,1,2]]],[1,4,4,2,6,[[51,1,1,2,3],[54,1,1,3,4],[67,2,2,4,6]]],[2,1,1,6,7,[[108,1,1,6,7]]],[3,1,1,7,8,[[151,1,1,7,8]]],[4,5,5,8,13,[[153,1,1,8,9],[169,2,2,9,11],[177,2,2,11,13]]],[6,4,3,13,16,[[212,3,2,13,15],[221,1,1,15,16]]],[8,5,5,16,21,[[243,3,3,16,19],[259,2,2,19,21]]],[9,1,1,21,22,[[281,1,1,21,22]]],[10,2,2,22,24,[[293,1,1,22,23],[297,1,1,23,24]]],[13,3,3,24,27,[[367,1,1,24,25],[385,1,1,25,26],[386,1,1,26,27]]],[17,2,2,27,29,[[444,1,1,27,28],[457,1,1,28,29]]],[18,16,14,29,43,[[484,1,1,29,30],[486,1,1,30,31],[487,1,1,31,32],[527,1,1,32,33],[535,1,1,33,34],[544,1,1,34,35],[549,1,1,35,36],[552,2,2,36,38],[559,2,2,38,40],[571,1,1,40,41],[573,2,1,41,42],[575,2,1,42,43]]],[19,1,1,43,44,[[658,1,1,43,44]]],[22,9,9,44,53,[[679,2,2,44,46],[680,1,1,46,47],[681,1,1,47,48],[683,1,1,48,49],[689,2,2,49,51],[711,1,1,51,52],[729,1,1,52,53]]],[23,1,1,53,54,[[749,1,1,53,54]]],[24,1,1,54,55,[[799,1,1,54,55]]],[25,19,18,55,73,[[808,3,3,55,58],[812,2,2,58,60],[817,1,1,60,61],[819,1,1,61,62],[821,2,1,62,63],[822,1,1,63,64],[823,1,1,64,65],[824,2,2,65,67],[825,1,1,67,68],[834,1,1,68,69],[835,3,3,69,72],[845,1,1,72,73]]],[29,1,1,73,74,[[880,1,1,73,74]]],[30,1,1,74,75,[[888,1,1,74,75]]],[32,4,4,75,79,[[895,1,1,75,76],[896,1,1,76,77],[897,1,1,77,78],[899,1,1,78,79]]]],[386,926,1568,1653,2015,2021,3296,4869,4908,5373,5376,5548,5549,6563,6564,6856,7374,7375,7389,7851,7854,8393,8825,8941,11204,11582,11599,13066,13402,14003,14029,14059,14674,14780,14897,15004,15073,15078,15235,15241,15433,15478,15499,17293,17671,17677,17689,17709,17742,17887,17888,18301,18678,19086,20413,20580,20585,20604,20665,20666,20800,20879,20899,20974,20978,21031,21052,21070,21300,21330,21333,21335,21623,22382,22531,22619,22623,22634,22667]]],["judged",[8,8,[[1,1,1,0,1,[[67,1,1,0,1]]],[10,1,1,1,2,[[293,1,1,1,2]]],[18,3,3,2,5,[[486,1,1,2,3],[514,1,1,3,4],[586,1,1,4,5]]],[25,2,2,5,7,[[836,1,1,5,6],[837,1,1,6,7]]],[26,1,1,7,8,[[858,1,1,7,8]]]],[2025,8844,14040,14483,15762,21355,21378,22000]]],["judges",[36,36,[[3,1,1,0,1,[[141,1,1,0,1]]],[4,4,4,1,5,[[153,1,1,1,2],[171,2,2,2,4],[173,1,1,4,5]]],[5,3,3,5,8,[[194,1,1,5,6],[209,1,1,6,7],[210,1,1,7,8]]],[6,3,3,8,11,[[212,3,3,8,11]]],[7,1,1,11,12,[[232,1,1,11,12]]],[8,2,2,12,14,[[243,2,2,12,14]]],[9,1,1,14,15,[[273,1,1,14,15]]],[11,1,1,15,16,[[335,1,1,15,16]]],[12,4,4,16,20,[[354,2,2,16,18],[360,1,1,18,19],[363,1,1,19,20]]],[13,3,3,20,23,[[367,1,1,20,21],[385,2,2,21,23]]],[14,1,1,23,24,[[412,1,1,23,24]]],[17,2,2,24,26,[[444,1,1,24,25],[447,1,1,25,26]]],[18,3,3,26,29,[[479,1,1,26,27],[618,1,1,27,28],[625,1,1,28,29]]],[19,1,1,29,30,[[635,1,1,29,30]]],[22,2,2,30,32,[[679,1,1,30,31],[718,1,1,31,32]]],[26,1,1,32,33,[[858,1,1,32,33]]],[27,2,2,33,35,[[868,1,1,33,34],[874,1,1,34,35]]],[35,1,1,35,36,[[908,1,1,35,36]]]],[4476,4908,5423,5424,5449,6035,6462,6477,6561,6562,6563,7128,7370,7371,8191,10187,10869,10873,10987,11106,11196,11581,11582,12266,13075,13145,13955,16282,16382,16618,17680,18443,22000,22185,22276,22823]]],["judgest",[2,2,[[18,1,1,0,1,[[528,1,1,0,1]]],[23,1,1,1,2,[[755,1,1,1,2]]]],[14695,19246]]],["judgeth",[5,5,[[17,1,1,0,1,[[456,1,1,0,1]]],[18,3,3,1,4,[[484,1,1,1,2],[535,1,1,2,3],[559,1,1,3,4]]],[19,1,1,4,5,[[656,1,1,4,5]]]],[13377,14006,14790,15234,17238]]],["judging",[2,2,[[18,1,1,0,1,[[486,1,1,0,1]]],[22,1,1,1,2,[[694,1,1,1,2]]]],[14025,17974]]],["judgment",[2,2,[[13,1,1,0,1,[[388,1,1,0,1]]],[25,1,1,1,2,[[845,1,1,1,2]]]],[11652,21623]]],["plead",[8,8,[[22,2,2,0,2,[[721,1,1,0,1],[744,1,1,1,2]]],[23,1,1,2,3,[[769,1,1,2,3]]],[25,4,4,3,7,[[818,1,1,3,4],[821,2,2,4,6],[839,1,1,6,7]]],[28,1,1,7,8,[[878,1,1,7,8]]]],[18531,18938,19565,20845,20930,20931,21447,22345]]],["pleaded",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20931]]],["pleadeth",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18804]]],["reason",[1,1,[[8,1,1,0,1,[[247,1,1,0,1]]]],[7467]]],["ruled",[1,1,[[7,1,1,0,1,[[232,1,1,0,1]]]],[7128]]],["with",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[19000]]]]},{"k":"H8200","v":[["magistrates",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12198]]]]},{"k":"H8201","v":[["*",[16,16,[[1,3,3,0,3,[[55,1,1,0,1],[56,1,1,1,2],[61,1,1,2,3]]],[3,1,1,3,4,[[149,1,1,3,4]]],[13,1,1,4,5,[[390,1,1,4,5]]],[19,1,1,5,6,[[646,1,1,5,6]]],[25,10,10,6,16,[[806,2,2,6,8],[812,1,1,8,9],[815,1,1,9,10],[817,1,1,10,11],[826,1,1,11,12],[829,2,2,12,14],[831,2,2,14,16]]]],[1661,1689,1828,4764,11701,16954,20556,20561,20664,20752,20803,21094,21179,21183,21218,21223]]],["Judgments",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16954]]],["judgment",[2,2,[[1,1,1,0,1,[[61,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]]],[1828,11701]]],["judgments",[13,13,[[1,2,2,0,2,[[55,1,1,0,1],[56,1,1,1,2]]],[3,1,1,2,3,[[149,1,1,2,3]]],[25,10,10,3,13,[[806,2,2,3,5],[812,1,1,5,6],[815,1,1,6,7],[817,1,1,7,8],[826,1,1,8,9],[829,2,2,9,11],[831,2,2,11,13]]]],[1661,1689,4764,20556,20561,20664,20752,20803,21094,21179,21183,21218,21223]]]]},{"k":"H8202","v":[["Shaphat",[8,8,[[3,1,1,0,1,[[129,1,1,0,1]]],[10,2,2,1,3,[[309,2,2,1,3]]],[11,2,2,3,5,[[315,1,1,3,4],[318,1,1,4,5]]],[12,3,3,5,8,[[340,1,1,5,6],[342,1,1,6,7],[364,1,1,7,8]]]],[4080,9403,9406,9587,9705,10383,10440,11138]]]]},{"k":"H8203","v":[["*",[13,13,[[9,1,1,0,1,[[269,1,1,0,1]]],[12,4,4,1,5,[[340,1,1,1,2],[346,1,1,2,3],[349,1,1,3,4],[364,1,1,4,5]]],[13,1,1,5,6,[[387,1,1,5,6]]],[14,3,3,6,9,[[404,2,2,6,8],[410,1,1,8,9]]],[15,3,3,9,12,[[419,2,2,9,11],[423,1,1,11,12]]],[23,1,1,12,13,[[782,1,1,12,13]]]],[8085,10364,10623,10725,11125,11626,12031,12084,12209,12429,12479,12592,19896]]],["Shephathiah",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10623]]],["Shephatiah",[12,12,[[9,1,1,0,1,[[269,1,1,0,1]]],[12,3,3,1,4,[[340,1,1,1,2],[349,1,1,2,3],[364,1,1,3,4]]],[13,1,1,4,5,[[387,1,1,4,5]]],[14,3,3,5,8,[[404,2,2,5,7],[410,1,1,7,8]]],[15,3,3,8,11,[[419,2,2,8,10],[423,1,1,10,11]]],[23,1,1,11,12,[[782,1,1,11,12]]]],[8085,10364,10725,11125,11626,12031,12084,12209,12429,12479,12592,19896]]]]},{"k":"H8204","v":[["Shiphtan",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4840]]]]},{"k":"H8205","v":[["*",[9,9,[[3,1,1,0,1,[[139,1,1,0,1]]],[22,2,2,1,3,[[719,1,1,1,2],[727,1,1,2,3]]],[23,6,6,3,9,[[747,2,2,3,5],[748,1,1,5,6],[751,1,1,6,7],[756,1,1,7,8],[758,1,1,8,9]]]],[4419,18469,18645,19004,19023,19038,19148,19261,19299]]],["place",[1,1,[[3,1,1,0,1,[[139,1,1,0,1]]]],[4419]]],["places",[8,8,[[22,2,2,0,2,[[719,1,1,0,1],[727,1,1,1,2]]],[23,6,6,2,8,[[747,2,2,2,4],[748,1,1,4,5],[751,1,1,5,6],[756,1,1,6,7],[758,1,1,7,8]]]],[18469,18645,19004,19023,19038,19148,19261,19299]]]]},{"k":"H8206","v":[["Shuppim",[3,3,[[12,3,3,0,3,[[344,2,2,0,2],[363,1,1,2,3]]]],[10547,10550,11093]]]]},{"k":"H8207","v":[["adder",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1490]]]]},{"k":"H8208","v":[["Saphir",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22590]]]]},{"k":"H8209","v":[["fair",[2,2,[[26,2,2,0,2,[[853,2,2,0,2]]]],[21849,21858]]]]},{"k":"H8210","v":[["*",[114,110,[[0,3,2,0,2,[[8,2,1,0,1],[36,1,1,1,2]]],[1,2,2,2,4,[[53,1,1,2,3],[78,1,1,3,4]]],[2,8,8,4,12,[[93,5,5,4,9],[103,1,1,9,10],[106,2,2,10,12]]],[3,2,1,12,13,[[151,2,1,12,13]]],[4,6,6,13,19,[[164,3,3,13,16],[167,1,1,16,17],[171,1,1,17,18],[173,1,1,18,19]]],[6,1,1,19,20,[[216,1,1,19,20]]],[8,3,3,20,23,[[236,1,1,20,21],[242,1,1,21,22],[260,1,1,22,23]]],[9,2,2,23,25,[[286,2,2,23,25]]],[10,4,4,25,29,[[292,1,1,25,26],[303,2,2,26,28],[308,1,1,28,29]]],[11,3,3,29,32,[[331,1,1,29,30],[333,1,1,30,31],[336,1,1,31,32]]],[12,3,2,32,34,[[359,2,1,32,33],[365,1,1,33,34]]],[17,3,3,34,37,[[447,1,1,34,35],[451,1,1,35,36],[465,1,1,36,37]]],[18,11,11,37,48,[[499,1,1,37,38],[519,1,1,38,39],[539,1,1,39,40],[546,1,1,40,41],[550,1,1,41,42],[556,3,3,42,45],[583,1,1,45,46],[584,1,1,46,47],[619,1,1,47,48]]],[19,2,2,48,50,[[628,1,1,48,49],[633,1,1,49,50]]],[22,4,4,50,54,[[715,1,1,50,51],[720,1,1,51,52],[735,1,1,52,53],[737,1,1,53,54]]],[23,7,7,54,61,[[750,2,2,54,56],[751,1,1,56,57],[754,1,1,57,58],[758,1,1,58,59],[766,2,2,59,61]]],[24,7,7,61,68,[[798,4,4,61,65],[800,3,3,65,68]]],[25,33,32,68,100,[[805,1,1,68,69],[808,1,1,69,70],[810,1,1,70,71],[815,1,1,71,72],[817,3,3,72,75],[818,1,1,75,76],[819,1,1,76,77],[821,5,5,77,82],[822,2,2,82,84],[823,8,8,84,92],[824,2,2,92,94],[825,1,1,94,95],[827,1,1,95,96],[831,1,1,96,97],[834,1,1,97,98],[837,2,1,98,99],[840,1,1,99,100]]],[26,1,1,100,101,[[860,1,1,100,101]]],[27,1,1,101,102,[[866,1,1,101,102]]],[28,3,3,102,105,[[877,2,2,102,104],[878,1,1,104,105]]],[29,2,2,105,107,[[883,1,1,105,106],[887,1,1,106,107]]],[35,2,2,107,109,[[906,1,1,107,108],[908,1,1,108,109]]],[37,1,1,109,110,[[922,1,1,109,110]]]],[211,1105,1610,2348,2802,2813,2820,2825,2829,3152,3239,3248,4878,5256,5264,5267,5342,5416,5454,6674,7227,7358,7892,8564,8569,8801,9187,9189,9369,10093,10135,10206,10972,11146,13149,13251,13573,14218,14559,14835,14959,15022,15188,15191,15195,15689,15739,16288,16416,16557,18385,18505,18771,18807,19095,19100,19125,19226,19309,19457,19471,20336,20343,20344,20351,20421,20431,20433,20531,20585,20630,20750,20777,20798,20800,20842,20859,20903,20908,20916,20928,20929,20966,20975,20979,20980,20982,20985,20988,20998,21003,21007,21015,21052,21063,21108,21219,21305,21377,21477,22051,22162,22339,22340,22362,22431,22501,22804,22828,23055]]],["+",[10,10,[[2,2,2,0,2,[[103,1,1,0,1],[106,1,1,1,2]]],[4,1,1,2,3,[[173,1,1,2,3]]],[8,1,1,3,4,[[236,1,1,3,4]]],[23,1,1,4,5,[[758,1,1,4,5]]],[25,3,3,5,8,[[810,1,1,5,6],[817,1,1,6,7],[840,1,1,7,8]]],[28,2,2,8,10,[[877,2,2,8,10]]]],[3152,3248,5454,7227,19309,20630,20777,21477,22339,22340]]],["Shed",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1105]]],["cast",[6,6,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]],[23,1,1,2,3,[[750,1,1,2,3]]],[25,3,3,3,6,[[805,1,1,3,4],[822,1,1,4,5],[827,1,1,5,6]]]],[10093,18385,19095,20531,20966,21108]]],["out",[41,41,[[2,4,4,0,4,[[93,4,4,0,4]]],[4,1,1,4,5,[[164,1,1,4,5]]],[6,1,1,5,6,[[216,1,1,5,6]]],[8,1,1,6,7,[[242,1,1,6,7]]],[9,1,1,7,8,[[286,1,1,7,8]]],[10,3,3,8,11,[[303,2,2,8,10],[308,1,1,10,11]]],[17,2,2,11,13,[[451,1,1,11,12],[465,1,1,12,13]]],[18,6,6,13,19,[[499,1,1,13,14],[519,1,1,14,15],[539,1,1,15,16],[546,1,1,16,17],[556,1,1,17,18],[619,1,1,18,19]]],[23,2,2,19,21,[[750,1,1,19,20],[754,1,1,20,21]]],[24,5,5,21,26,[[798,3,3,21,24],[800,2,2,24,26]]],[25,11,11,26,37,[[808,1,1,26,27],[815,1,1,27,28],[817,1,1,28,29],[821,5,5,29,34],[822,1,1,34,35],[823,2,2,35,37]]],[27,1,1,37,38,[[866,1,1,37,38]]],[29,2,2,38,40,[[883,1,1,38,39],[887,1,1,39,40]]],[35,1,1,40,41,[[906,1,1,40,41]]]],[2813,2820,2825,2829,5267,6674,7358,8564,9187,9189,9369,13251,13573,14218,14559,14835,14959,15191,16288,19100,19226,20336,20344,20351,20421,20431,20585,20750,20798,20903,20908,20916,20928,20929,20975,20998,21007,22162,22431,22501,22804]]],["pour",[9,9,[[1,2,2,0,2,[[53,1,1,0,1],[78,1,1,1,2]]],[2,1,1,2,3,[[93,1,1,2,3]]],[4,3,3,3,6,[[164,2,2,3,5],[167,1,1,5,6]]],[25,1,1,6,7,[[831,1,1,6,7]]],[35,1,1,7,8,[[908,1,1,7,8]]],[37,1,1,8,9,[[922,1,1,8,9]]]],[1610,2348,2802,5256,5264,5342,21219,22828,23055]]],["poured",[6,6,[[22,2,2,0,2,[[720,1,1,0,1],[735,1,1,1,2]]],[24,1,1,2,3,[[798,1,1,2,3]]],[25,3,3,3,6,[[824,1,1,3,4],[825,1,1,4,5],[837,1,1,5,6]]]],[18505,18771,20343,21015,21063,21377]]],["poureth",[2,2,[[17,1,1,0,1,[[447,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]]],[13149,15739]]],["shed",[32,30,[[0,1,1,0,1,[[8,1,1,0,1]]],[2,1,1,1,2,[[106,1,1,1,2]]],[3,2,1,2,3,[[151,2,1,2,3]]],[4,1,1,3,4,[[171,1,1,3,4]]],[8,1,1,4,5,[[260,1,1,4,5]]],[10,1,1,5,6,[[292,1,1,5,6]]],[11,2,2,6,8,[[333,1,1,6,7],[336,1,1,7,8]]],[12,3,2,8,10,[[359,2,1,8,9],[365,1,1,9,10]]],[18,3,3,10,13,[[556,2,2,10,12],[583,1,1,12,13]]],[19,2,2,13,15,[[628,1,1,13,14],[633,1,1,14,15]]],[22,1,1,15,16,[[737,1,1,15,16]]],[23,3,3,16,19,[[751,1,1,16,17],[766,2,2,17,19]]],[24,1,1,19,20,[[800,1,1,19,20]]],[25,9,9,20,29,[[817,1,1,20,21],[823,5,5,21,26],[824,1,1,26,27],[834,1,1,27,28],[837,1,1,28,29]]],[28,1,1,29,30,[[878,1,1,29,30]]]],[211,3239,4878,5416,7892,8801,10135,10206,10972,11146,15188,15195,15689,16416,16557,18807,19125,19457,19471,20433,20800,20980,20982,20985,20988,21003,21052,21305,21377,22362]]],["shedder",[1,1,[[25,1,1,0,1,[[819,1,1,0,1]]]],[20859]]],["sheddeth",[2,2,[[0,1,1,0,1,[[8,1,1,0,1]]],[25,1,1,1,2,[[823,1,1,1,2]]]],[211,20979]]],["slipped",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15022]]],["up",[3,3,[[9,1,1,0,1,[[286,1,1,0,1]]],[25,1,1,1,2,[[818,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[8569,20842,22051]]]]},{"k":"H8211","v":[["out",[2,1,[[2,2,1,0,1,[[93,2,1,0,1]]]],[2807]]]]},{"k":"H8212","v":[["member",[1,1,[[4,1,1,0,1,[[175,1,1,0,1]]]],[5501]]]]},{"k":"H8213","v":[["*",[31,29,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,2,2,1,3,[[288,2,2,1,3]]],[17,2,2,3,5,[[457,1,1,3,4],[475,1,1,4,5]]],[18,4,4,5,9,[[495,1,1,5,6],[552,1,1,6,7],[590,1,1,7,8],[624,1,1,8,9]]],[19,2,2,9,11,[[652,1,1,9,10],[656,1,1,10,11]]],[20,1,1,11,12,[[670,1,1,11,12]]],[22,16,14,12,26,[[680,4,4,12,16],[683,2,1,16,17],[688,1,1,17,18],[691,1,1,18,19],[703,2,2,19,21],[704,2,1,21,22],[707,1,1,22,23],[710,1,1,23,24],[718,1,1,24,25],[735,1,1,25,26]]],[23,1,1,26,27,[[757,1,1,26,27]]],[25,2,2,27,29,[[818,1,1,27,28],[822,1,1,28,29]]]],[7247,8630,8650,13418,13875,14145,15078,15819,16357,17120,17247,17527,17694,17696,17697,17702,17754,17883,17917,18129,18130,18135,18197,18278,18424,18774,19284,20849,20970]]],["+",[2,2,[[18,1,1,0,1,[[624,1,1,0,1]]],[19,1,1,1,2,[[652,1,1,1,2]]]],[16357,17120]]],["abase",[2,2,[[17,1,1,0,1,[[475,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[13875,20970]]],["debase",[1,1,[[22,1,1,0,1,[[735,1,1,0,1]]]],[18774]]],["down",[8,8,[[9,2,2,0,2,[[288,2,2,0,2]]],[17,1,1,2,3,[[457,1,1,2,3]]],[18,2,2,3,5,[[495,1,1,3,4],[552,1,1,4,5]]],[22,2,2,5,7,[[703,1,1,5,6],[707,1,1,6,7]]],[25,1,1,7,8,[[818,1,1,7,8]]]],[8630,8650,13418,14145,15078,18129,18197,20849]]],["humbled",[4,3,[[22,4,3,0,3,[[680,1,1,0,1],[683,2,1,1,2],[688,1,1,2,3]]]],[17696,17754,17883]]],["humbleth",[2,2,[[18,1,1,0,1,[[590,1,1,0,1]]],[22,1,1,1,2,[[680,1,1,1,2]]]],[15819,17694]]],["low",[11,10,[[8,1,1,0,1,[[237,1,1,0,1]]],[19,1,1,1,2,[[656,1,1,1,2]]],[20,1,1,2,3,[[670,1,1,2,3]]],[22,8,7,3,10,[[680,2,2,3,5],[691,1,1,5,6],[703,1,1,6,7],[704,2,1,7,8],[710,1,1,8,9],[718,1,1,9,10]]]],[7247,17247,17527,17697,17702,17917,18130,18135,18278,18424]]],["yourselves",[1,1,[[23,1,1,0,1,[[757,1,1,0,1]]]],[19284]]]]},{"k":"H8214","v":[["*",[4,4,[[26,4,4,0,4,[[853,1,1,0,1],[854,2,2,1,3],[856,1,1,3,4]]]],[21874,21893,21896,21957]]],["+",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21893]]],["abase",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21874]]],["humbled",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21896]]],["subdue",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21957]]]]},{"k":"H8215","v":[["basest",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21854]]]]},{"k":"H8216","v":[["*",[2,2,[[18,1,1,0,1,[[613,1,1,0,1]]],[20,1,1,1,2,[[668,1,1,1,2]]]],[16219,17499]]],["+",[1,1,[[18,1,1,0,1,[[613,1,1,0,1]]]],[16219]]],["place",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17499]]]]},{"k":"H8217","v":[["*",[18,17,[[2,4,4,0,4,[[102,3,3,0,3],[103,1,1,3,4]]],[9,1,1,4,5,[[272,1,1,4,5]]],[17,1,1,5,6,[[440,1,1,5,6]]],[18,1,1,6,7,[[615,1,1,6,7]]],[19,2,2,7,9,[[643,1,1,7,8],[656,1,1,8,9]]],[22,2,1,9,10,[[735,2,1,9,10]]],[25,6,6,10,16,[[818,3,3,10,13],[822,1,1,13,14],[830,2,2,14,16]]],[38,1,1,16,17,[[926,1,1,16,17]]]],[3072,3073,3078,3148,8179,12962,16237,16859,17247,18780,20831,20839,20849,20970,21197,21198,23112]]],["base",[4,4,[[9,1,1,0,1,[[272,1,1,0,1]]],[25,2,2,1,3,[[818,1,1,1,2],[830,1,1,2,3]]],[38,1,1,3,4,[[926,1,1,3,4]]]],[8179,20839,21197,23112]]],["basest",[1,1,[[25,1,1,0,1,[[830,1,1,0,1]]]],[21198]]],["humble",[4,3,[[19,2,2,0,2,[[643,1,1,0,1],[656,1,1,1,2]]],[22,2,1,2,3,[[735,2,1,2,3]]]],[16859,17247,18780]]],["low",[4,4,[[17,1,1,0,1,[[440,1,1,0,1]]],[25,3,3,1,4,[[818,2,2,1,3],[822,1,1,3,4]]]],[12962,20831,20849,20970]]],["lower",[4,4,[[2,4,4,0,4,[[102,3,3,0,3],[103,1,1,3,4]]]],[3072,3073,3078,3148]]],["lowly",[1,1,[[18,1,1,0,1,[[615,1,1,0,1]]]],[16237]]]]},{"k":"H8218","v":[["place",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18278]]]]},{"k":"H8219","v":[["*",[20,19,[[4,1,1,0,1,[[153,1,1,0,1]]],[5,7,6,1,7,[[195,1,1,1,2],[196,1,1,2,3],[197,3,2,3,5],[198,1,1,5,6],[201,1,1,6,7]]],[6,1,1,7,8,[[211,1,1,7,8]]],[10,1,1,8,9,[[300,1,1,8,9]]],[12,1,1,9,10,[[364,1,1,9,10]]],[13,4,4,10,14,[[367,1,1,10,11],[375,1,1,11,12],[392,1,1,12,13],[394,1,1,13,14]]],[23,3,3,14,17,[[761,1,1,14,15],[776,1,1,15,16],[777,1,1,16,17]]],[30,1,1,17,18,[[888,1,1,17,18]]],[37,1,1,18,19,[[917,1,1,18,19]]]],[4899,6038,6104,6109,6123,6138,6235,6518,9106,11137,11209,11391,11742,11782,19383,19775,19788,22529,22969]]],["+",[1,1,[[30,1,1,0,1,[[888,1,1,0,1]]]],[22529]]],["country",[2,2,[[13,2,2,0,2,[[392,1,1,0,1],[394,1,1,1,2]]]],[11742,11782]]],["plain",[2,2,[[23,1,1,0,1,[[761,1,1,0,1]]],[37,1,1,1,2,[[917,1,1,1,2]]]],[19383,22969]]],["plains",[2,2,[[12,1,1,0,1,[[364,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[11137,11391]]],["vale",[5,5,[[4,1,1,0,1,[[153,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[10,1,1,2,3,[[300,1,1,2,3]]],[13,1,1,3,4,[[367,1,1,3,4]]],[23,1,1,4,5,[[777,1,1,4,5]]]],[4899,6104,9106,11209,19788]]],["valley",[6,5,[[5,4,3,0,3,[[197,3,2,0,2],[201,1,1,2,3]]],[6,1,1,3,4,[[211,1,1,3,4]]],[23,1,1,4,5,[[776,1,1,4,5]]]],[6109,6123,6235,6518,19775]]],["valleys",[2,2,[[5,2,2,0,2,[[195,1,1,0,1],[198,1,1,1,2]]]],[6038,6138]]]]},{"k":"H8220","v":[["idleness",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17511]]]]},{"k":"H8221","v":[["*",[2,2,[[3,2,2,0,2,[[150,2,2,0,2]]]],[4826,4827]]],["+",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4827]]],["Shepham",[1,1,[[3,1,1,0,1,[[150,1,1,0,1]]]],[4826]]]]},{"k":"H8222","v":[["*",[5,5,[[2,1,1,0,1,[[102,1,1,0,1]]],[9,1,1,1,2,[[285,1,1,1,2]]],[25,2,2,2,4,[[825,2,2,2,4]]],[32,1,1,4,5,[[895,1,1,4,5]]]],[3097,8535,21073,21078,22615]]],["beard",[1,1,[[9,1,1,0,1,[[285,1,1,0,1]]]],[8535]]],["lip",[1,1,[[2,1,1,0,1,[[102,1,1,0,1]]]],[3097]]],["lips",[3,3,[[25,2,2,0,2,[[825,2,2,0,2]]],[32,1,1,2,3,[[895,1,1,2,3]]]],[21073,21078,22615]]]]},{"k":"H8223","v":[["Shapham",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10440]]]]},{"k":"H8224","v":[["Siphmoth",[1,1,[[8,1,1,0,1,[[265,1,1,0,1]]]],[8006]]]]},{"k":"H8225","v":[["Shiphmite",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11136]]]]},{"k":"H8226","v":[["treasures",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5829]]]]},{"k":"H8227","v":[["*",[34,28,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]],[11,10,7,2,9,[[334,9,6,2,8],[337,1,1,8,9]]],[13,8,5,9,14,[[400,8,5,9,14]]],[18,1,1,14,15,[[581,1,1,14,15]]],[19,1,1,15,16,[[657,1,1,15,16]]],[23,11,11,16,27,[[770,1,1,16,17],[773,1,1,17,18],[780,3,3,18,21],[783,1,1,21,22],[784,3,3,22,25],[785,1,1,25,26],[787,1,1,26,27]]],[25,1,1,27,28,[[809,1,1,27,28]]]],[3002,5297,10148,10153,10154,10155,10157,10159,10244,11941,11948,11949,11951,11953,15589,17277,19596,19638,19852,19853,19854,19937,19946,19950,19952,19959,20003,20615]]],["Shaphan",[30,24,[[11,10,7,0,7,[[334,9,6,0,6],[337,1,1,6,7]]],[13,8,5,7,12,[[400,8,5,7,12]]],[23,11,11,12,23,[[770,1,1,12,13],[773,1,1,13,14],[780,3,3,14,17],[783,1,1,17,18],[784,3,3,18,21],[785,1,1,21,22],[787,1,1,22,23]]],[25,1,1,23,24,[[809,1,1,23,24]]]],[10148,10153,10154,10155,10157,10159,10244,11941,11948,11949,11951,11953,19596,19638,19852,19853,19854,19937,19946,19950,19952,19959,20003,20615]]],["coney",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3002,5297]]],["conies",[2,2,[[18,1,1,0,1,[[581,1,1,0,1]]],[19,1,1,1,2,[[657,1,1,1,2]]]],[15589,17277]]]]},{"k":"H8228","v":[["abundance",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5829]]]]},{"k":"H8229","v":[["*",[6,5,[[11,2,1,0,1,[[321,2,1,0,1]]],[17,2,2,1,3,[[457,1,1,1,2],[473,1,1,2,3]]],[22,1,1,3,4,[[738,1,1,3,4]]],[25,1,1,4,5,[[827,1,1,4,5]]]],[9773,13400,13827,18827,21110]]],["+",[1,1,[[25,1,1,0,1,[[827,1,1,0,1]]]],[21110]]],["abundance",[2,2,[[17,2,2,0,2,[[457,1,1,0,1],[473,1,1,1,2]]]],[13400,13827]]],["company",[2,1,[[11,2,1,0,1,[[321,2,1,0,1]]]],[9773]]],["multitude",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18827]]]]},{"k":"H8230","v":[["Shiphi",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10422]]]]},{"k":"H8231","v":[["goodly",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14098]]]]},{"k":"H8232","v":[["*",[3,3,[[26,3,3,0,3,[[853,2,2,0,2],[855,1,1,2,3]]]],[21839,21864,21906]]],["+",[2,2,[[26,2,2,0,2,[[853,1,1,0,1],[855,1,1,1,2]]]],[21839,21906]]],["acceptable",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21864]]]]},{"k":"H8233","v":[["goodly",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1494]]]]},{"k":"H8234","v":[["Shapher",[2,2,[[3,2,2,0,2,[[149,2,2,0,2]]]],[4783,4784]]]]},{"k":"H8235","v":[["garnished",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13480]]]]},{"k":"H8236","v":[["Shiphrah",[1,1,[[1,1,1,0,1,[[50,1,1,0,1]]]],[1547]]]]},{"k":"H8237","v":[["pavilion",[1,1,[[23,1,1,0,1,[[787,1,1,0,1]]]],[20007]]]]},{"k":"H8238","v":[["+",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21924]]]]},{"k":"H8239","v":[["*",[5,4,[[11,1,1,0,1,[[316,1,1,0,1]]],[18,1,1,1,2,[[499,1,1,1,2]]],[22,1,1,2,3,[[704,1,1,2,3]]],[25,2,1,3,4,[[825,2,1,3,4]]]],[9641,14219,18142,21059]]],["brought",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14219]]],["on",[3,2,[[11,1,1,0,1,[[316,1,1,0,1]]],[25,2,1,1,2,[[825,2,1,1,2]]]],[9641,21059]]],["ordain",[1,1,[[22,1,1,0,1,[[704,1,1,0,1]]]],[18142]]]]},{"k":"H8240","v":[["*",[2,2,[[18,1,1,0,1,[[545,1,1,0,1]]],[25,1,1,1,2,[[841,1,1,1,2]]]],[14913,21520]]],["hooks",[1,1,[[25,1,1,0,1,[[841,1,1,0,1]]]],[21520]]],["pots",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14913]]]]},{"k":"H8241","v":[["little",[1,1,[[22,1,1,0,1,[[732,1,1,0,1]]]],[18731]]]]},{"k":"H8242","v":[["*",[48,46,[[0,5,4,0,4,[[36,1,1,0,1],[41,4,3,1,4]]],[2,1,1,4,5,[[100,1,1,4,5]]],[5,1,1,5,6,[[195,1,1,5,6]]],[9,2,2,6,8,[[269,1,1,6,7],[287,1,1,7,8]]],[10,4,3,8,11,[[310,2,2,8,10],[311,2,1,10,11]]],[11,3,3,11,14,[[318,1,1,11,12],[331,2,2,12,14]]],[12,1,1,14,15,[[358,1,1,14,15]]],[15,1,1,15,16,[[421,1,1,15,16]]],[16,4,4,16,20,[[429,4,4,16,20]]],[17,1,1,20,21,[[451,1,1,20,21]]],[18,3,3,21,24,[[507,1,1,21,22],[512,1,1,22,23],[546,1,1,23,24]]],[22,8,8,24,32,[[681,1,1,24,25],[693,1,1,25,26],[698,1,1,26,27],[700,1,1,27,28],[715,2,2,28,30],[728,1,1,30,31],[736,1,1,31,32]]],[23,4,4,32,36,[[748,1,1,32,33],[750,1,1,33,34],[792,1,1,34,35],[793,1,1,35,36]]],[24,1,1,36,37,[[798,1,1,36,37]]],[25,2,2,37,39,[[808,1,1,37,38],[828,1,1,38,39]]],[26,1,1,39,40,[[858,1,1,39,40]]],[28,2,2,40,42,[[876,2,2,40,42]]],[29,1,1,42,43,[[886,1,1,42,43]]],[31,3,3,43,46,[[891,3,3,43,46]]]],[1117,1277,1279,1287,3029,6041,8112,8590,9439,9440,9478,9704,10062,10063,10950,12512,12763,12764,12765,12766,13253,14330,14423,14946,17731,17963,18031,18064,18353,18354,18665,18791,19035,19115,20117,20130,20342,20595,21152,21991,22299,22304,22491,22563,22564,22566]]],["sack",[4,4,[[0,3,3,0,3,[[41,3,3,0,3]]],[2,1,1,3,4,[[100,1,1,3,4]]]],[1277,1279,1287,3029]]],["sackcloth",[41,40,[[0,1,1,0,1,[[36,1,1,0,1]]],[9,2,2,1,3,[[269,1,1,1,2],[287,1,1,2,3]]],[10,4,3,3,6,[[310,2,2,3,5],[311,2,1,5,6]]],[11,3,3,6,9,[[318,1,1,6,7],[331,2,2,7,9]]],[12,1,1,9,10,[[358,1,1,9,10]]],[16,4,4,10,14,[[429,4,4,10,14]]],[17,1,1,14,15,[[451,1,1,14,15]]],[18,3,3,15,18,[[507,1,1,15,16],[512,1,1,16,17],[546,1,1,17,18]]],[22,8,8,18,26,[[681,1,1,18,19],[693,1,1,19,20],[698,1,1,20,21],[700,1,1,21,22],[715,2,2,22,24],[728,1,1,24,25],[736,1,1,25,26]]],[23,4,4,26,30,[[748,1,1,26,27],[750,1,1,27,28],[792,1,1,28,29],[793,1,1,29,30]]],[24,1,1,30,31,[[798,1,1,30,31]]],[25,2,2,31,33,[[808,1,1,31,32],[828,1,1,32,33]]],[26,1,1,33,34,[[858,1,1,33,34]]],[28,2,2,34,36,[[876,2,2,34,36]]],[29,1,1,36,37,[[886,1,1,36,37]]],[31,3,3,37,40,[[891,3,3,37,40]]]],[1117,8112,8590,9439,9440,9478,9704,10062,10063,10950,12763,12764,12765,12766,13253,14330,14423,14946,17731,17963,18031,18064,18353,18354,18665,18791,19035,19115,20117,20130,20342,20595,21152,21991,22299,22304,22491,22563,22564,22566]]],["sackclothes",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12512]]],["sacks",[2,2,[[0,1,1,0,1,[[41,1,1,0,1]]],[5,1,1,1,2,[[195,1,1,1,2]]]],[1287,6041]]]]},{"k":"H8243","v":[["legs",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21791]]]]},{"k":"H8244","v":[["bound",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20324]]]]},{"k":"H8245","v":[["*",[12,11,[[14,1,1,0,1,[[410,1,1,0,1]]],[17,1,1,1,2,[[456,1,1,1,2]]],[18,2,2,2,4,[[579,1,1,2,3],[604,1,1,3,4]]],[19,1,1,4,5,[[635,1,1,4,5]]],[22,1,1,5,6,[[707,1,1,5,6]]],[23,5,4,6,10,[[745,1,1,6,7],[749,1,1,7,8],[775,2,1,8,9],[788,1,1,9,10]]],[26,1,1,10,11,[[858,1,1,10,11]]]],[12230,13387,15528,16122,16636,18213,18958,19064,19719,20037,22002]]],["+",[1,1,[[23,1,1,0,1,[[745,1,1,0,1]]]],[18958]]],["Watch",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12230]]],["remain",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13387]]],["waketh",[1,1,[[18,1,1,0,1,[[604,1,1,0,1]]]],[16122]]],["watch",[5,5,[[18,1,1,0,1,[[579,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]],[23,3,3,2,5,[[749,1,1,2,3],[775,1,1,3,4],[788,1,1,4,5]]]],[15528,18213,19064,19719,20037]]],["watched",[2,2,[[23,1,1,0,1,[[775,1,1,0,1]]],[26,1,1,1,2,[[858,1,1,1,2]]]],[19719,22002]]],["watching",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16636]]]]},{"k":"H8246","v":[["almonds",[6,4,[[1,6,4,0,4,[[74,3,2,0,2],[86,3,2,2,4]]]],[2228,2229,2623,2624]]]]},{"k":"H8247","v":[["*",[4,4,[[0,1,1,0,1,[[42,1,1,0,1]]],[3,1,1,1,2,[[133,1,1,1,2]]],[20,1,1,2,3,[[670,1,1,2,3]]],[23,1,1,3,4,[[745,1,1,3,4]]]],[1301,4252,17528,18957]]],["almonds",[2,2,[[0,1,1,0,1,[[42,1,1,0,1]]],[3,1,1,1,2,[[133,1,1,1,2]]]],[1301,4252]]],["tree",[2,2,[[20,1,1,0,1,[[670,1,1,0,1]]],[23,1,1,1,2,[[745,1,1,1,2]]]],[17528,18957]]]]},{"k":"H8248","v":[["*",[60,59,[[0,18,18,0,18,[[1,2,2,0,2],[18,4,4,2,6],[20,1,1,6,7],[23,6,6,7,13],[28,5,5,13,18]]],[1,4,4,18,22,[[51,3,3,18,21],[81,1,1,21,22]]],[3,4,4,22,26,[[121,3,3,22,25],[136,1,1,25,26]]],[4,1,1,26,27,[[163,1,1,26,27]]],[6,2,1,27,28,[[214,2,1,27,28]]],[8,1,1,28,29,[[265,1,1,28,29]]],[9,1,1,29,30,[[289,1,1,29,30]]],[12,1,1,30,31,[[348,1,1,30,31]]],[13,1,1,31,32,[[394,1,1,31,32]]],[16,1,1,32,33,[[426,1,1,32,33]]],[17,2,2,33,35,[[456,1,1,33,34],[457,1,1,34,35]]],[18,7,7,35,42,[[513,1,1,35,36],[537,1,1,36,37],[546,1,1,37,38],[555,1,1,38,39],[557,1,1,39,40],[581,2,2,40,42]]],[19,1,1,42,43,[[652,1,1,42,43]]],[20,1,1,43,44,[[660,1,1,43,44]]],[21,1,1,44,45,[[678,1,1,44,45]]],[22,2,2,45,47,[[705,1,1,45,46],[721,1,1,46,47]]],[23,7,7,47,54,[[752,1,1,47,48],[753,1,1,48,49],[760,1,1,49,50],[767,1,1,50,51],[769,2,2,51,53],[779,1,1,53,54]]],[25,2,2,54,56,[[818,1,1,54,55],[833,1,1,55,56]]],[28,1,1,56,57,[[878,1,1,56,57]]],[29,1,1,57,58,[[880,1,1,57,58]]],[34,1,1,58,59,[[904,1,1,58,59]]]],[36,40,489,490,491,492,532,605,609,610,634,636,637,797,798,802,803,805,1570,1571,1573,2458,3816,3818,3819,4319,5218,6618,7989,8668,10690,11779,12709,13379,13396,14446,14810,14956,15128,15203,15582,15584,17134,17339,17642,18154,18525,19167,19190,19343,19499,19549,19551,19825,20832,21254,22361,22391,22763]]],["+",[11,11,[[0,4,4,0,4,[[1,2,2,0,2],[28,2,2,2,4]]],[1,2,2,4,6,[[51,2,2,4,6]]],[3,3,3,6,9,[[121,3,3,6,9]]],[28,1,1,9,10,[[878,1,1,9,10]]],[34,1,1,10,11,[[904,1,1,10,11]]]],[36,40,798,805,1571,1573,3816,3818,3819,22361,22763]]],["drink",[38,37,[[0,11,11,0,11,[[18,4,4,0,4],[20,1,1,4,5],[23,6,6,5,11]]],[1,1,1,11,12,[[81,1,1,11,12]]],[3,1,1,12,13,[[136,1,1,12,13]]],[6,2,1,13,14,[[214,2,1,13,14]]],[8,1,1,14,15,[[265,1,1,14,15]]],[9,1,1,15,16,[[289,1,1,15,16]]],[12,1,1,16,17,[[348,1,1,16,17]]],[13,1,1,17,18,[[394,1,1,17,18]]],[16,1,1,18,19,[[426,1,1,18,19]]],[17,1,1,19,20,[[457,1,1,19,20]]],[18,6,6,20,26,[[513,1,1,20,21],[537,1,1,21,22],[546,1,1,22,23],[555,1,1,23,24],[557,1,1,24,25],[581,1,1,25,26]]],[19,1,1,26,27,[[652,1,1,26,27]]],[21,1,1,27,28,[[678,1,1,27,28]]],[22,1,1,28,29,[[721,1,1,28,29]]],[23,7,7,29,36,[[752,1,1,29,30],[753,1,1,30,31],[760,1,1,31,32],[767,1,1,32,33],[769,2,2,33,35],[779,1,1,35,36]]],[29,1,1,36,37,[[880,1,1,36,37]]]],[489,490,491,492,532,605,609,610,634,636,637,2458,4319,6618,7989,8668,10690,11779,12709,13396,14446,14810,14956,15128,15203,15582,17134,17642,18525,19167,19190,19343,19499,19549,19551,19825,22391]]],["moistened",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13379]]],["water",[7,7,[[0,2,2,0,2,[[28,2,2,0,2]]],[1,1,1,2,3,[[51,1,1,2,3]]],[20,1,1,3,4,[[660,1,1,3,4]]],[22,1,1,4,5,[[705,1,1,4,5]]],[25,2,2,5,7,[[818,1,1,5,6],[833,1,1,6,7]]]],[802,803,1570,17339,18154,20832,21254]]],["watered",[1,1,[[0,1,1,0,1,[[28,1,1,0,1]]]],[797]]],["wateredst",[1,1,[[4,1,1,0,1,[[163,1,1,0,1]]]],[5218]]],["watereth",[1,1,[[18,1,1,0,1,[[581,1,1,0,1]]]],[15584]]]]},{"k":"H8249","v":[["drink",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15530]]]]},{"k":"H8250","v":[["*",[2,2,[[19,1,1,0,1,[[630,1,1,0,1]]],[27,1,1,1,2,[[863,1,1,1,2]]]],[16463,22110]]],["drink",[1,1,[[27,1,1,0,1,[[863,1,1,0,1]]]],[22110]]],["marrow",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16463]]]]},{"k":"H8251","v":[["*",[28,26,[[4,1,1,0,1,[[181,1,1,0,1]]],[10,3,2,1,3,[[301,3,2,1,3]]],[11,3,2,3,5,[[335,3,2,3,5]]],[13,1,1,5,6,[[381,1,1,5,6]]],[22,1,1,6,7,[[744,1,1,6,7]]],[23,5,5,7,12,[[748,1,1,7,8],[751,1,1,8,9],[757,1,1,9,10],[760,1,1,10,11],[776,1,1,11,12]]],[25,8,8,12,20,[[806,1,1,12,13],[808,1,1,13,14],[812,2,2,14,16],[821,3,3,16,19],[838,1,1,19,20]]],[26,3,3,20,23,[[858,1,1,20,21],[860,1,1,21,22],[861,1,1,22,23]]],[27,1,1,23,24,[[870,1,1,23,24]]],[33,1,1,24,25,[[902,1,1,24,25]]],[37,1,1,25,26,[[919,1,1,25,26]]]],[5696,9113,9115,10178,10189,11498,18925,19028,19149,19293,19354,19765,20557,20597,20673,20676,20902,20903,20925,21420,22015,22067,22092,22218,22718,23006]]],["abomination",[7,5,[[10,3,2,0,2,[[301,3,2,0,2]]],[11,2,1,2,3,[[335,2,1,2,3]]],[26,2,2,3,5,[[860,1,1,3,4],[861,1,1,4,5]]]],[9113,9115,10178,22067,22092]]],["abominations",[13,13,[[4,1,1,0,1,[[181,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]],[23,4,4,3,7,[[748,1,1,3,4],[751,1,1,4,5],[757,1,1,5,6],[776,1,1,6,7]]],[25,3,3,7,10,[[821,3,3,7,10]]],[26,1,1,10,11,[[858,1,1,10,11]]],[27,1,1,11,12,[[870,1,1,11,12]]],[37,1,1,12,13,[[919,1,1,12,13]]]],[5696,10189,18925,19028,19149,19293,19765,20902,20903,20925,22015,22218,23006]]],["detestable",[1,1,[[23,1,1,0,1,[[760,1,1,0,1]]]],[19354]]],["filth",[1,1,[[33,1,1,0,1,[[902,1,1,0,1]]]],[22718]]],["idols",[1,1,[[13,1,1,0,1,[[381,1,1,0,1]]]],[11498]]],["things",[5,5,[[25,5,5,0,5,[[806,1,1,0,1],[808,1,1,1,2],[812,2,2,2,4],[838,1,1,4,5]]]],[20557,20597,20673,20676,21420]]]]},{"k":"H8252","v":[["*",[41,41,[[5,2,2,0,2,[[197,1,1,0,1],[200,1,1,1,2]]],[6,6,6,2,8,[[213,2,2,2,4],[215,1,1,4,5],[218,1,1,5,6],[228,2,2,6,8]]],[7,1,1,8,9,[[234,1,1,8,9]]],[11,1,1,9,10,[[323,1,1,9,10]]],[12,1,1,10,11,[[341,1,1,10,11]]],[13,5,5,11,16,[[380,3,3,11,14],[386,1,1,14,15],[389,1,1,15,16]]],[17,4,4,16,20,[[438,2,2,16,18],[469,1,1,18,19],[472,1,1,19,20]]],[18,3,3,20,23,[[553,1,1,20,21],[560,1,1,21,22],[571,1,1,22,23]]],[19,1,1,23,24,[[642,1,1,23,24]]],[22,7,7,24,31,[[685,1,1,24,25],[692,1,1,25,26],[696,1,1,26,27],[708,1,1,27,28],[710,1,1,28,29],[735,1,1,29,30],[740,1,1,30,31]]],[23,6,6,31,37,[[774,1,1,31,32],[790,1,1,32,33],[791,2,2,33,35],[792,1,1,35,36],[793,1,1,36,37]]],[25,3,3,37,40,[[817,2,2,37,39],[839,1,1,39,40]]],[37,1,1,40,41,[[911,1,1,40,41]]]],[6130,6202,6579,6598,6654,6747,7000,7020,7190,9849,10425,11476,11480,11481,11617,11677,12917,12930,13712,13786,15089,15242,15444,16825,17786,17935,18001,18232,18276,18785,18855,19677,20072,20079,20080,20091,20150,20804,20811,21436,22889]]],["appeaseth",[1,1,[[19,1,1,0,1,[[642,1,1,0,1]]]],[16825]]],["idleness",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20811]]],["quiet",[15,15,[[6,2,2,0,2,[[228,2,2,0,2]]],[11,1,1,2,3,[[323,1,1,2,3]]],[12,1,1,3,4,[[341,1,1,3,4]]],[13,4,4,4,8,[[380,2,2,4,6],[386,1,1,6,7],[389,1,1,7,8]]],[17,1,1,8,9,[[438,1,1,8,9]]],[22,2,2,9,11,[[685,1,1,9,10],[692,1,1,10,11]]],[23,3,3,11,14,[[791,2,2,11,13],[793,1,1,13,14]]],[25,1,1,14,15,[[817,1,1,14,15]]]],[7000,7020,9849,10425,11476,11480,11617,11677,12917,17786,17935,20079,20080,20150,20804]]],["quieteth",[1,1,[[17,1,1,0,1,[[472,1,1,0,1]]]],[13786]]],["quietness",[4,4,[[6,1,1,0,1,[[218,1,1,0,1]]],[17,1,1,1,2,[[469,1,1,1,2]]],[22,2,2,2,4,[[708,1,1,2,3],[710,1,1,3,4]]]],[6747,13712,18232,18276]]],["rest",[15,15,[[5,1,1,0,1,[[200,1,1,0,1]]],[6,3,3,1,4,[[213,2,2,1,3],[215,1,1,3,4]]],[7,1,1,4,5,[[234,1,1,4,5]]],[13,1,1,5,6,[[380,1,1,5,6]]],[17,1,1,6,7,[[438,1,1,6,7]]],[18,1,1,7,8,[[571,1,1,7,8]]],[22,3,3,8,11,[[696,1,1,8,9],[735,1,1,9,10],[740,1,1,10,11]]],[23,2,2,11,13,[[774,1,1,11,12],[790,1,1,12,13]]],[25,1,1,13,14,[[839,1,1,13,14]]],[37,1,1,14,15,[[911,1,1,14,15]]]],[6202,6579,6598,6654,7190,11481,12930,15444,18001,18785,18855,19677,20072,21436,22889]]],["rested",[1,1,[[5,1,1,0,1,[[197,1,1,0,1]]]],[6130]]],["settled",[1,1,[[23,1,1,0,1,[[792,1,1,0,1]]]],[20091]]],["still",[2,2,[[18,2,2,0,2,[[553,1,1,0,1],[560,1,1,1,2]]]],[15089,15242]]]]},{"k":"H8253","v":[["quietness",[1,1,[[12,1,1,0,1,[[359,1,1,0,1]]]],[10973]]]]},{"k":"H8254","v":[["*",[22,21,[[0,1,1,0,1,[[22,1,1,0,1]]],[1,1,1,1,2,[[71,1,1,1,2]]],[9,2,2,2,4,[[280,1,1,2,3],[284,1,1,3,4]]],[10,1,1,4,5,[[310,1,1,4,5]]],[14,4,4,5,9,[[410,4,4,5,9]]],[16,2,2,9,11,[[428,1,1,9,10],[429,1,1,10,11]]],[17,4,3,11,14,[[441,2,1,11,12],[463,1,1,12,13],[466,1,1,13,14]]],[22,4,4,14,18,[[711,1,1,14,15],[718,1,1,15,16],[724,1,1,16,17],[733,1,1,17,18]]],[23,2,2,18,20,[[776,2,2,18,20]]],[37,1,1,20,21,[[921,1,1,20,21]]]],[587,2130,8382,8490,9447,12226,12227,12230,12234,12756,12769,12980,13519,13594,18297,18432,18592,18742,19740,19741,23040]]],["+",[4,3,[[9,1,1,0,1,[[280,1,1,0,1]]],[17,2,1,1,2,[[441,2,1,1,2]]],[37,1,1,2,3,[[921,1,1,2,3]]]],[8382,12980,23040]]],["pay",[4,4,[[1,1,1,0,1,[[71,1,1,0,1]]],[10,1,1,1,2,[[310,1,1,1,2]]],[16,2,2,2,4,[[428,1,1,2,3],[429,1,1,3,4]]]],[2130,9447,12756,12769]]],["receive",[1,1,[[9,1,1,0,1,[[284,1,1,0,1]]]],[8490]]],["receiver",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18297]]],["spend",[1,1,[[22,1,1,0,1,[[733,1,1,0,1]]]],[18742]]],["weigh",[2,2,[[14,1,1,0,1,[[410,1,1,0,1]]],[22,1,1,1,2,[[724,1,1,1,2]]]],[12230,18592]]],["weighed",[9,9,[[0,1,1,0,1,[[22,1,1,0,1]]],[14,3,3,1,4,[[410,3,3,1,4]]],[17,2,2,4,6,[[463,1,1,4,5],[466,1,1,5,6]]],[22,1,1,6,7,[[718,1,1,6,7]]],[23,2,2,7,9,[[776,2,2,7,9]]]],[587,12226,12227,12234,13519,13594,18432,19740,19741]]]]},{"k":"H8255","v":[["*",[88,54,[[0,2,2,0,2,[[22,2,2,0,2]]],[1,14,8,2,10,[[70,1,1,2,3],[79,6,3,3,6],[87,7,4,6,10]]],[2,14,8,10,18,[[94,2,1,10,11],[116,12,7,11,18]]],[3,33,18,18,36,[[119,4,2,18,20],[123,26,14,20,34],[134,2,1,34,35],[147,1,1,35,36]]],[5,2,1,36,37,[[193,2,1,36,37]]],[8,3,3,37,40,[[244,1,1,37,38],[252,2,2,38,40]]],[9,2,2,40,42,[[280,1,1,40,41],[290,1,1,41,42]]],[11,7,4,42,46,[[319,6,3,42,45],[327,1,1,45,46]]],[12,1,1,46,47,[[358,1,1,46,47]]],[13,1,1,47,48,[[369,1,1,47,48]]],[15,2,2,48,50,[[417,1,1,48,49],[422,1,1,49,50]]],[23,1,1,50,51,[[776,1,1,50,51]]],[25,5,2,51,53,[[805,1,1,51,52],[846,4,1,52,53]]],[29,1,1,53,54,[[886,1,1,53,54]]]],[586,587,2109,2395,2397,2406,2657,2658,2659,2662,2845,3573,3574,3575,3576,3577,3586,3595,3739,3742,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935,3936,4273,4716,5997,7399,7623,7625,8382,8716,9708,9723,9725,9945,10959,11238,12397,12581,19740,20539,21642,22486]]],["+",[1,1,[[3,1,1,0,1,[[119,1,1,0,1]]]],[3739]]],["shekel",[42,33,[[1,10,6,0,6,[[79,6,3,0,3],[87,4,3,3,6]]],[2,4,3,6,9,[[94,1,1,6,7],[116,3,2,7,9]]],[3,18,17,9,26,[[119,3,2,9,11],[123,14,14,11,25],[134,1,1,25,26]]],[8,1,1,26,27,[[244,1,1,26,27]]],[11,6,3,27,30,[[319,6,3,27,30]]],[15,1,1,30,31,[[422,1,1,30,31]]],[25,1,1,31,32,[[846,1,1,31,32]]],[29,1,1,32,33,[[886,1,1,32,33]]]],[2395,2397,2406,2657,2658,2659,2845,3573,3595,3739,3742,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,3935,3936,4273,7399,9708,9723,9725,12581,21642,22486]]],["shekels",[45,39,[[0,2,2,0,2,[[22,2,2,0,2]]],[1,4,4,2,6,[[70,1,1,2,3],[87,3,3,3,6]]],[2,10,7,6,13,[[94,1,1,6,7],[116,9,6,7,13]]],[3,14,14,13,27,[[123,12,12,13,25],[134,1,1,25,26],[147,1,1,26,27]]],[5,2,1,27,28,[[193,2,1,27,28]]],[8,2,2,28,30,[[252,2,2,28,30]]],[9,2,2,30,32,[[280,1,1,30,31],[290,1,1,31,32]]],[11,1,1,32,33,[[327,1,1,32,33]]],[12,1,1,33,34,[[358,1,1,33,34]]],[13,1,1,34,35,[[369,1,1,34,35]]],[15,1,1,35,36,[[417,1,1,35,36]]],[23,1,1,36,37,[[776,1,1,36,37]]],[25,4,2,37,39,[[805,1,1,37,38],[846,3,1,38,39]]]],[586,587,2109,2657,2658,2662,2845,3573,3574,3575,3576,3577,3586,3863,3869,3875,3881,3887,3893,3899,3905,3911,3917,3923,3929,4273,4716,5997,7623,7625,8382,8716,9945,10959,11238,12397,19740,20539,21642]]]]},{"k":"H8256","v":[["*",[7,7,[[10,1,1,0,1,[[300,1,1,0,1]]],[12,1,1,1,2,[[364,1,1,1,2]]],[13,2,2,2,4,[[367,1,1,2,3],[375,1,1,3,4]]],[18,1,1,4,5,[[555,1,1,4,5]]],[22,1,1,5,6,[[687,1,1,5,6]]],[29,1,1,6,7,[[885,1,1,6,7]]]],[9106,11137,11209,11391,15160,17839,22478]]],["fruit",[1,1,[[29,1,1,0,1,[[885,1,1,0,1]]]],[22478]]],["sycomores",[1,1,[[22,1,1,0,1,[[687,1,1,0,1]]]],[17839]]],["trees",[5,5,[[10,1,1,0,1,[[300,1,1,0,1]]],[12,1,1,1,2,[[364,1,1,1,2]]],[13,2,2,2,4,[[367,1,1,2,3],[375,1,1,3,4]]],[18,1,1,4,5,[[555,1,1,4,5]]]],[9106,11137,11209,11391,15160]]]]},{"k":"H8257","v":[["*",[6,6,[[3,1,1,0,1,[[127,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[23,1,1,2,3,[[795,1,1,2,3]]],[25,1,1,3,4,[[833,1,1,3,4]]],[29,2,2,4,6,[[886,1,1,4,5],[887,1,1,5,6]]]],[4026,13889,20276,21262,22489,22500]]],["+",[1,1,[[25,1,1,0,1,[[833,1,1,0,1]]]],[21262]]],["down",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13889]]],["drowned",[2,2,[[29,2,2,0,2,[[886,1,1,0,1],[887,1,1,1,2]]]],[22489,22500]]],["quenched",[1,1,[[3,1,1,0,1,[[127,1,1,0,1]]]],[4026]]],["sink",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20276]]]]},{"k":"H8258","v":[["strakes",[1,1,[[2,1,1,0,1,[[103,1,1,0,1]]]],[3148]]]]},{"k":"H8259","v":[["*",[22,22,[[0,3,3,0,3,[[17,1,1,0,1],[18,1,1,1,2],[25,1,1,2,3]]],[1,1,1,3,4,[[63,1,1,3,4]]],[3,2,2,4,6,[[137,1,1,4,5],[139,1,1,5,6]]],[4,1,1,6,7,[[178,1,1,6,7]]],[6,1,1,7,8,[[215,1,1,7,8]]],[8,1,1,8,9,[[248,1,1,8,9]]],[9,2,2,9,11,[[272,1,1,9,10],[290,1,1,10,11]]],[11,2,2,11,13,[[321,2,2,11,13]]],[12,1,1,13,14,[[352,1,1,13,14]]],[18,4,4,14,18,[[491,1,1,14,15],[530,1,1,15,16],[562,1,1,16,17],[579,1,1,17,18]]],[19,1,1,18,19,[[634,1,1,18,19]]],[21,1,1,19,20,[[676,1,1,19,20]]],[23,1,1,20,21,[[750,1,1,20,21]]],[24,1,1,21,22,[[799,1,1,21,22]]]],[440,485,700,1913,4360,4444,5581,6651,7503,8173,8712,9786,9788,10820,14082,14721,15282,15540,16581,17624,19090,20404]]],["appeareth",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19090]]],["down",[6,6,[[4,1,1,0,1,[[178,1,1,0,1]]],[18,4,4,1,5,[[491,1,1,1,2],[530,1,1,2,3],[562,1,1,3,4],[579,1,1,4,5]]],[24,1,1,5,6,[[799,1,1,5,6]]]],[5581,14082,14721,15282,15540,20404]]],["forth",[1,1,[[21,1,1,0,1,[[676,1,1,0,1]]]],[17624]]],["looked",[6,6,[[0,2,2,0,2,[[17,1,1,0,1],[18,1,1,1,2]]],[1,1,1,2,3,[[63,1,1,2,3]]],[9,2,2,3,5,[[272,1,1,3,4],[290,1,1,4,5]]],[19,1,1,5,6,[[634,1,1,5,6]]]],[440,485,1913,8173,8712,16581]]],["looketh",[3,3,[[3,2,2,0,2,[[137,1,1,0,1],[139,1,1,1,2]]],[8,1,1,2,3,[[248,1,1,2,3]]]],[4360,4444,7503]]],["out",[5,5,[[0,1,1,0,1,[[25,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[11,2,2,2,4,[[321,2,2,2,4]]],[12,1,1,4,5,[[352,1,1,4,5]]]],[700,6651,9786,9788,10820]]]]},{"k":"H8260","v":[["windows",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8939]]]]},{"k":"H8261","v":[["*",[2,2,[[10,2,2,0,2,[[296,1,1,0,1],[297,1,1,1,2]]]],[8900,8938]]],["lights",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8900]]],["windows",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8938]]]]},{"k":"H8262","v":[["*",[7,6,[[2,4,4,0,4,[[100,3,3,0,3],[109,1,1,3,4]]],[4,2,1,4,5,[[159,2,1,4,5]]],[18,1,1,5,6,[[499,1,1,5,6]]]],[3008,3010,3040,3343,5137,14228]]],["+",[5,4,[[2,3,3,0,3,[[100,2,2,0,2],[109,1,1,2,3]]],[4,2,1,3,4,[[159,2,1,3,4]]]],[3008,3040,3343,5137]]],["abhorred",[1,1,[[18,1,1,0,1,[[499,1,1,0,1]]]],[14228]]],["abomination",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3010]]]]},{"k":"H8263","v":[["*",[11,11,[[2,9,9,0,9,[[96,1,1,0,1],[100,8,8,1,9]]],[22,1,1,9,10,[[744,1,1,9,10]]],[25,1,1,10,11,[[809,1,1,10,11]]]],[2900,3007,3008,3009,3010,3017,3020,3038,3039,18939,20614]]],["+",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3010]]],["abominable",[2,2,[[2,1,1,0,1,[[96,1,1,0,1]]],[25,1,1,1,2,[[809,1,1,1,2]]]],[2900,20614]]],["abomination",[8,8,[[2,7,7,0,7,[[100,7,7,0,7]]],[22,1,1,7,8,[[744,1,1,7,8]]]],[3007,3008,3009,3017,3020,3038,3039,18939]]]]},{"k":"H8264","v":[["*",[6,6,[[18,1,1,0,1,[[584,1,1,0,1]]],[19,1,1,1,2,[[655,1,1,1,2]]],[22,2,2,2,4,[[707,1,1,2,3],[711,1,1,3,4]]],[28,1,1,4,5,[[877,1,1,4,5]]],[33,1,1,5,6,[[901,1,1,5,6]]]],[15708,17211,18201,18283,22320,22703]]],["another",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22703]]],["appetite",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18201]]],["fro",[1,1,[[28,1,1,0,1,[[877,1,1,0,1]]]],[22320]]],["longing",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15708]]],["ranging",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17211]]],["run",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18283]]]]},{"k":"H8265","v":[["wanton",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17723]]]]},{"k":"H8266","v":[["*",[6,6,[[0,1,1,0,1,[[20,1,1,0,1]]],[2,1,1,1,2,[[108,1,1,1,2]]],[8,1,1,2,3,[[250,1,1,2,3]]],[18,2,2,3,5,[[521,1,1,3,4],[566,1,1,4,5]]],[22,1,1,5,6,[[741,1,1,5,6]]]],[536,3292,7589,14588,15359,18874]]],["+",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15359]]],["falsely",[2,2,[[0,1,1,0,1,[[20,1,1,0,1]]],[18,1,1,1,2,[[521,1,1,1,2]]]],[536,14588]]],["lie",[3,3,[[2,1,1,0,1,[[108,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]],[22,1,1,2,3,[[741,1,1,2,3]]]],[3292,7589,18874]]]]},{"k":"H8267","v":[["*",[113,109,[[1,3,3,0,3,[[54,1,1,0,1],[69,1,1,1,2],[72,1,1,2,3]]],[2,3,3,3,6,[[95,2,2,3,5],[108,1,1,5,6]]],[4,2,1,6,7,[[171,2,1,6,7]]],[8,1,1,7,8,[[260,1,1,7,8]]],[9,1,1,8,9,[[284,1,1,8,9]]],[10,2,2,9,11,[[312,2,2,9,11]]],[11,1,1,11,12,[[321,1,1,11,12]]],[13,2,2,12,14,[[384,2,2,12,14]]],[17,2,2,14,16,[[448,1,1,14,15],[471,1,1,15,16]]],[18,22,22,16,38,[[484,1,1,16,17],[504,1,1,17,18],[508,1,1,18,19],[510,1,1,19,20],[512,1,1,20,21],[515,1,1,21,22],[529,1,1,22,23],[540,1,1,23,24],[546,1,1,24,25],[578,1,1,25,26],[586,1,1,26,27],[596,8,8,27,35],[597,1,1,35,36],[621,2,2,36,38]]],[19,20,20,38,58,[[633,2,2,38,40],[637,1,1,40,41],[638,1,1,41,42],[639,3,3,42,45],[640,1,1,45,46],[641,1,1,46,47],[644,2,2,47,49],[646,2,2,49,51],[647,1,1,51,52],[648,1,1,52,53],[652,2,2,53,55],[653,1,1,55,56],[656,1,1,56,57],[658,1,1,57,58]]],[22,7,7,58,65,[[687,1,1,58,59],[706,1,1,59,60],[710,1,1,60,61],[722,1,1,61,62],[735,1,1,62,63],[737,2,2,63,65]]],[23,37,34,65,99,[[747,2,2,65,67],[749,2,2,67,69],[750,1,1,69,70],[751,3,3,70,73],[752,3,2,73,75],[753,2,2,75,77],[754,1,1,77,78],[757,1,1,78,79],[758,2,1,79,80],[760,1,1,80,81],[764,1,1,81,82],[767,5,4,82,86],[771,4,4,86,90],[772,1,1,90,91],[773,4,4,91,95],[781,1,1,95,96],[784,1,1,96,97],[787,1,1,97,98],[795,1,1,98,99]]],[25,1,1,99,100,[[814,1,1,99,100]]],[27,1,1,100,101,[[868,1,1,100,101]]],[32,2,2,101,103,[[894,1,1,101,102],[898,1,1,102,103]]],[34,1,1,103,104,[[904,1,1,103,104]]],[37,4,4,104,108,[[915,1,1,104,105],[918,1,1,105,106],[920,1,1,106,107],[923,1,1,107,108]]],[38,1,1,108,109,[[927,1,1,108,109]]]],[1641,2067,2151,2852,2854,3293,5424,7882,8491,9502,9503,9768,11563,11564,13157,13740,14009,14297,14349,14383,14429,14509,14713,14850,14939,15520,15757,15927,15967,15976,15984,16002,16016,16026,16061,16076,16313,16316,16557,16559,16674,16706,16736,16738,16741,16752,16777,16877,16880,16930,16934,16971,16990,17127,17131,17169,17236,17314,17844,18179,18266,18553,18769,18803,18813,19012,19025,19060,19089,19102,19123,19127,19128,19161,19163,19178,19180,19215,19291,19307,19355,19428,19498,19509,19510,19516,19606,19610,19611,19612,19633,19644,19656,19658,19666,19888,19957,19999,20229,20730,22179,22606,22660,22766,22940,22993,23018,23062,23125]]],["+",[4,4,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,1,1,1,2,[[95,1,1,1,2]]],[19,2,2,2,4,[[640,1,1,2,3],[656,1,1,3,4]]]],[2151,2852,16752,17236]]],["Lying",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16741]]],["cause",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15976]]],["deceit",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16971]]],["deceitful",[2,2,[[19,2,2,0,2,[[638,1,1,0,1],[658,1,1,1,2]]]],[16706,17314]]],["false",[19,19,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,1,1,1,2,[[171,1,1,1,2]]],[11,1,1,2,3,[[321,1,1,2,3]]],[17,1,1,3,4,[[471,1,1,3,4]]],[18,3,3,4,7,[[504,1,1,4,5],[596,2,2,5,7]]],[19,7,7,7,14,[[633,1,1,7,8],[639,1,1,8,9],[641,1,1,9,10],[646,2,2,10,12],[652,2,2,12,14]]],[23,3,3,14,17,[[758,1,1,14,15],[767,1,1,15,16],[781,1,1,16,17]]],[37,1,1,17,18,[[918,1,1,17,18]]],[38,1,1,18,19,[[927,1,1,18,19]]]],[2067,5424,9768,13740,14297,16002,16026,16559,16736,16777,16930,16934,17127,17131,19307,19516,19888,22993,23125]]],["falsehood",[13,13,[[9,1,1,0,1,[[284,1,1,0,1]]],[18,4,4,1,5,[[484,1,1,1,2],[596,1,1,2,3],[621,2,2,3,5]]],[22,3,3,5,8,[[706,1,1,5,6],[735,1,1,6,7],[737,1,1,7,8]]],[23,3,3,8,11,[[754,1,1,8,9],[757,1,1,9,10],[795,1,1,10,11]]],[27,1,1,11,12,[[868,1,1,11,12]]],[32,1,1,12,13,[[894,1,1,12,13]]]],[8491,14009,16016,16313,16316,18179,18769,18813,19215,19291,20229,22179,22606]]],["falsely",[12,12,[[2,2,2,0,2,[[95,1,1,0,1],[108,1,1,1,2]]],[4,1,1,2,3,[[171,1,1,2,3]]],[23,8,8,3,11,[[749,2,2,3,5],[750,1,1,5,6],[751,1,1,6,7],[752,1,1,7,8],[773,1,1,8,9],[784,1,1,9,10],[787,1,1,10,11]]],[37,1,1,11,12,[[915,1,1,11,12]]]],[2854,3293,5424,19060,19089,19102,19128,19163,19644,19957,19999,22940]]],["feignedly",[1,1,[[23,1,1,0,1,[[747,1,1,0,1]]]],[19012]]],["liar",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16877]]],["lie",[10,10,[[18,1,1,0,1,[[596,1,1,0,1]]],[22,1,1,1,2,[[722,1,1,1,2]]],[23,7,7,2,9,[[771,4,4,2,6],[772,1,1,6,7],[773,2,2,7,9]]],[37,1,1,9,10,[[920,1,1,9,10]]]],[15967,18553,19606,19610,19611,19612,19633,19656,19666,23018]]],["lies",[18,18,[[17,1,1,0,1,[[448,1,1,0,1]]],[18,2,2,1,3,[[540,1,1,1,2],[578,1,1,2,3]]],[22,2,2,3,5,[[687,1,1,3,4],[737,1,1,4,5]]],[23,9,9,5,14,[[753,2,2,5,7],[758,1,1,7,8],[760,1,1,8,9],[764,1,1,9,10],[767,4,4,10,14]]],[25,1,1,14,15,[[814,1,1,14,15]]],[32,1,1,15,16,[[898,1,1,15,16]]],[34,1,1,16,17,[[904,1,1,16,17]]],[37,1,1,17,18,[[923,1,1,17,18]]]],[13157,14850,15520,17844,18803,19178,19180,19307,19355,19428,19498,19509,19510,19516,20730,22660,22766,23062]]],["lying",[20,20,[[10,2,2,0,2,[[312,2,2,0,2]]],[13,2,2,2,4,[[384,2,2,2,4]]],[18,6,6,4,10,[[508,1,1,4,5],[529,1,1,5,6],[586,1,1,6,7],[596,2,2,7,9],[597,1,1,9,10]]],[19,6,6,10,16,[[633,1,1,10,11],[637,1,1,11,12],[639,1,1,12,13],[644,1,1,13,14],[648,1,1,14,15],[653,1,1,15,16]]],[22,1,1,16,17,[[710,1,1,16,17]]],[23,3,3,17,20,[[751,2,2,17,19],[773,1,1,19,20]]]],[9502,9503,11563,11564,14349,14713,15757,15927,16061,16076,16557,16674,16738,16880,16990,17169,18266,19123,19127,19658]]],["thing",[1,1,[[18,1,1,0,1,[[510,1,1,0,1]]]],[14383]]],["vain",[5,4,[[1,1,1,0,1,[[54,1,1,0,1]]],[8,1,1,1,2,[[260,1,1,1,2]]],[23,3,2,2,4,[[747,1,1,2,3],[752,2,1,3,4]]]],[1641,7882,19025,19161]]],["wrongfully",[4,4,[[18,4,4,0,4,[[512,1,1,0,1],[515,1,1,1,2],[546,1,1,2,3],[596,1,1,3,4]]]],[14429,14509,14939,15984]]]]},{"k":"H8268","v":[["*",[2,2,[[0,2,2,0,2,[[23,1,1,0,1],[29,1,1,1,2]]]],[611,868]]],["trough",[1,1,[[0,1,1,0,1,[[23,1,1,0,1]]]],[611]]],["troughs",[1,1,[[0,1,1,0,1,[[29,1,1,0,1]]]],[868]]]]},{"k":"H8269","v":[["*",[421,368,[[0,25,22,0,22,[[11,1,1,0,1],[20,2,2,1,3],[25,1,1,3,4],[36,1,1,4,5],[38,4,4,5,9],[39,11,9,9,18],[40,4,3,18,21],[46,1,1,21,22]]],[1,10,4,22,26,[[50,1,1,22,23],[51,1,1,23,24],[67,8,2,24,26]]],[3,17,14,26,40,[[137,1,1,26,27],[138,7,7,27,34],[139,2,2,34,36],[147,7,4,36,40]]],[4,5,2,40,42,[[153,4,1,40,41],[172,1,1,41,42]]],[5,2,2,42,44,[[191,2,2,42,44]]],[6,9,9,44,53,[[214,2,2,44,46],[215,1,1,46,47],[217,1,1,47,48],[218,3,3,48,51],[219,1,1,51,52],[220,1,1,52,53]]],[8,17,13,53,66,[[243,2,1,53,54],[247,1,1,54,55],[249,1,1,55,56],[252,2,2,56,58],[253,2,2,58,60],[257,3,2,60,62],[261,1,1,62,63],[264,5,3,63,66]]],[9,15,13,66,79,[[268,1,1,66,67],[269,1,1,67,68],[270,1,1,68,69],[276,3,3,69,72],[284,3,2,72,74],[285,2,2,74,76],[289,1,1,76,77],[290,3,2,77,79]]],[10,25,23,79,102,[[291,2,2,79,81],[292,3,2,81,83],[294,1,1,83,84],[295,1,1,84,85],[299,3,2,85,87],[301,3,3,87,90],[304,1,1,90,91],[305,1,1,91,92],[306,2,2,92,94],[310,4,4,94,98],[312,4,4,98,102]]],[11,25,22,102,124,[[313,6,5,102,107],[316,1,1,107,108],[317,1,1,108,109],[320,1,1,109,110],[321,3,1,110,111],[322,1,1,111,112],[323,6,6,112,118],[335,1,1,118,119],[336,2,2,119,121],[337,3,3,121,124]]],[12,47,37,124,161,[[348,2,2,124,126],[349,3,3,126,129],[350,1,1,129,130],[352,10,10,130,140],[356,3,3,140,143],[358,1,1,143,144],[359,1,1,144,145],[360,1,1,145,146],[361,3,2,146,148],[362,1,1,148,149],[363,2,1,149,150],[364,7,7,150,157],[365,7,2,157,159],[366,5,2,159,161]]],[13,51,47,161,208,[[367,1,1,161,162],[374,3,2,162,164],[378,3,3,164,167],[382,1,1,167,168],[383,4,3,168,171],[384,4,4,171,175],[387,3,2,175,177],[388,1,1,177,178],[389,5,5,178,183],[390,3,3,183,186],[391,2,1,186,187],[392,1,1,187,188],[394,2,2,188,190],[395,2,2,190,192],[396,4,4,192,196],[397,1,1,196,197],[398,4,4,197,201],[399,2,2,201,203],[400,1,1,203,204],[401,2,2,204,206],[402,2,2,206,208]]],[14,11,10,208,218,[[409,1,1,208,209],[410,5,4,209,213],[411,2,2,213,215],[412,3,3,215,218]]],[15,17,17,218,235,[[414,1,1,218,219],[415,8,8,219,227],[416,1,1,227,228],[419,1,1,228,229],[421,3,3,229,232],[423,1,1,232,233],[424,2,2,233,235]]],[16,15,13,235,248,[[426,8,6,235,241],[427,1,1,241,242],[428,2,2,242,244],[430,1,1,244,245],[431,1,1,245,246],[433,1,1,246,247],[434,1,1,247,248]]],[17,4,4,248,252,[[438,1,1,248,249],[464,1,1,249,250],[469,1,1,250,251],[474,1,1,251,252]]],[18,9,7,252,259,[[522,1,1,252,253],[545,3,1,253,254],[559,1,1,254,255],[582,1,1,255,256],[596,2,2,256,258],[625,1,1,258,259]]],[19,3,3,259,262,[[635,1,1,259,260],[646,1,1,260,261],[655,1,1,261,262]]],[20,3,3,262,265,[[668,3,3,262,265]]],[22,17,16,265,281,[[679,1,1,265,266],[681,3,3,266,269],[687,1,1,269,270],[688,1,1,270,271],[697,3,2,271,273],[699,1,1,273,274],[701,1,1,274,275],[708,1,1,275,276],[709,1,1,276,277],[710,1,1,277,278],[712,1,1,278,279],[721,1,1,279,280],[727,1,1,280,281]]],[23,56,52,281,333,[[745,1,1,281,282],[746,1,1,282,283],[748,1,1,283,284],[752,1,1,284,285],[761,2,1,285,286],[768,2,2,286,288],[769,2,2,288,290],[770,5,5,290,295],[773,1,1,295,296],[776,1,1,296,297],[778,4,3,297,300],[779,1,1,300,301],[780,5,4,301,305],[781,2,2,305,307],[782,6,6,307,313],[783,2,1,313,314],[784,2,2,314,316],[785,3,3,316,319],[786,2,2,319,321],[787,2,2,321,323],[788,2,2,323,325],[792,1,1,325,326],[793,2,2,326,328],[794,1,1,328,329],[795,2,2,329,331],[796,2,2,331,333]]],[24,4,4,333,337,[[797,1,1,333,334],[798,2,2,334,336],[801,1,1,336,337]]],[25,3,3,337,340,[[812,1,1,337,338],[818,1,1,338,339],[823,1,1,339,340]]],[26,18,15,340,355,[[850,6,6,340,346],[857,3,2,346,348],[858,2,2,348,350],[859,5,3,350,353],[860,1,1,353,354],[861,1,1,354,355]]],[27,8,8,355,363,[[864,1,1,355,356],[866,1,1,356,357],[868,3,3,357,360],[869,1,1,360,361],[870,1,1,361,362],[874,1,1,362,363]]],[29,2,2,363,365,[[879,1,1,363,364],[880,1,1,364,365]]],[32,1,1,365,366,[[899,1,1,365,366]]],[35,2,2,366,368,[[906,1,1,366,367],[908,1,1,367,368]]]],[313,535,545,718,1119,1150,1170,1171,1172,1174,1175,1176,1181,1188,1192,1193,1194,1195,1204,1205,1207,1426,1543,1568,2020,2024,4358,4383,4388,4389,4390,4396,4410,4415,4422,4433,4678,4712,4716,4718,4907,5436,5948,5949,6601,6606,6638,6719,6722,6725,6733,6784,6829,7381,7469,7558,7636,7673,7689,7706,7789,7794,7910,7970,7971,7976,8057,8119,8122,8243,8256,8258,8479,8483,8517,8524,8672,8694,8696,8736,8742,8775,8802,8846,8894,9073,9074,9123,9129,9132,9245,9269,9292,9299,9422,9423,9425,9427,9506,9511,9512,9513,9542,9543,9544,9546,9547,9616,9648,9748,9761,9794,9833,9838,9839,9843,9844,9848,10173,10214,10216,10241,10245,10248,10679,10694,10741,10748,10754,10761,10796,10797,10798,10799,10800,10801,10807,10813,10816,10818,10910,10923,10925,10936,10981,10985,11020,11021,11047,11103,11110,11112,11114,11117,11131,11140,11143,11144,11164,11170,11188,11196,11355,11356,11442,11443,11447,11513,11530,11537,11538,11567,11572,11573,11574,11628,11633,11652,11657,11665,11669,11670,11676,11687,11694,11700,11709,11743,11778,11785,11811,11821,11829,11833,11839,11851,11862,11878,11881,11896,11906,11919,11922,11941,11974,11975,12007,12011,12201,12221,12225,12226,12230,12238,12239,12257,12260,12266,12316,12336,12339,12341,12342,12343,12344,12345,12346,12375,12422,12543,12545,12549,12589,12655,12656,12705,12713,12716,12718,12720,12723,12742,12748,12759,12790,12802,12826,12837,12919,13541,13702,13859,14613,14927,15240,15628,15921,16059,16382,16618,16935,17198,17500,17509,17510,17677,17710,17711,17721,17835,17858,18015,18017,18040,18085,18221,18259,18260,18315,18533,18643,18964,18991,19036,19154,19382,19525,19532,19552,19553,19582,19583,19584,19588,19593,19637,19763,19811,19820,19822,19827,19854,19856,19861,19863,19888,19889,19899,19912,19913,19917,19920,19922,19926,19948,19954,19968,19970,19973,19976,19983,20001,20002,20027,20031,20087,20130,20165,20201,20269,20271,20286,20301,20316,20334,20341,20454,20656,20837,21003,21744,21745,21746,21747,21748,21755,21972,21986,21994,21996,22028,22035,22036,22041,22082,22132,22162,22181,22183,22194,22204,22223,22276,22379,22382,22667,22795,22823]]],["+",[8,8,[[1,1,1,0,1,[[50,1,1,0,1]]],[10,1,1,1,2,[[295,1,1,1,2]]],[13,2,2,2,4,[[387,1,1,2,3],[392,1,1,3,4]]],[14,1,1,4,5,[[410,1,1,4,5]]],[16,2,2,5,7,[[426,1,1,5,6],[431,1,1,6,7]]],[26,1,1,7,8,[[850,1,1,7,8]]]],[1543,8894,11628,11743,12225,12713,12802,21745]]],["Prince",[2,2,[[22,1,1,0,1,[[687,1,1,0,1]]],[26,1,1,1,2,[[857,1,1,1,2]]]],[17835,21986]]],["Princes",[3,3,[[18,2,2,0,2,[[596,2,2,0,2]]],[24,1,1,2,3,[[801,1,1,2,3]]]],[15921,16059,20454]]],["captain",[51,48,[[0,9,9,0,9,[[20,2,2,0,2],[25,1,1,2,3],[36,1,1,3,4],[38,1,1,4,5],[39,2,2,5,7],[40,2,2,7,9]]],[5,2,2,9,11,[[191,2,2,9,11]]],[6,2,2,11,13,[[214,2,2,11,13]]],[8,7,7,13,20,[[247,1,1,13,14],[249,1,1,14,15],[252,2,2,15,17],[253,1,1,17,18],[257,1,1,18,19],[261,1,1,19,20]]],[9,6,6,20,26,[[268,1,1,20,21],[276,2,2,21,23],[285,1,1,23,24],[289,1,1,24,25],[290,1,1,25,26]]],[10,8,7,26,33,[[291,1,1,26,27],[292,2,1,27,28],[301,3,3,28,31],[306,2,2,31,33]]],[11,9,7,33,40,[[313,5,4,33,37],[316,1,1,37,38],[317,1,1,38,39],[321,2,1,39,40]]],[12,6,6,40,46,[[348,2,2,40,42],[356,2,2,42,44],[364,2,2,44,46]]],[13,1,1,46,47,[[383,1,1,46,47]]],[22,1,1,47,48,[[681,1,1,47,48]]]],[535,545,718,1119,1150,1175,1176,1205,1207,5948,5949,6601,6606,7469,7558,7636,7673,7689,7789,7910,8057,8256,8258,8524,8672,8694,8736,8802,9123,9129,9132,9292,9299,9542,9543,9544,9546,9616,9648,9761,10679,10694,10923,10925,11114,11117,11538,17710]]],["captains",[78,64,[[3,7,4,0,4,[[147,7,4,0,4]]],[4,5,2,4,6,[[153,4,1,4,5],[172,1,1,5,6]]],[8,4,2,6,8,[[243,2,1,6,7],[257,2,1,7,8]]],[9,6,4,8,12,[[270,1,1,8,9],[284,3,2,9,11],[290,2,1,11,12]]],[10,5,5,12,17,[[291,1,1,12,13],[292,1,1,13,14],[305,1,1,14,15],[312,2,2,15,17]]],[11,8,8,17,25,[[313,1,1,17,18],[320,1,1,18,19],[321,1,1,19,20],[323,3,3,20,23],[337,2,2,23,25]]],[12,14,11,25,36,[[349,3,3,25,28],[350,1,1,28,29],[352,1,1,29,30],[362,1,1,30,31],[363,2,1,31,32],[364,2,2,32,34],[365,3,1,34,35],[366,1,1,35,36]]],[13,18,17,36,53,[[367,1,1,36,37],[374,1,1,37,38],[382,1,1,38,39],[383,1,1,39,40],[384,3,3,40,43],[387,1,1,43,44],[389,4,4,44,48],[391,2,1,48,49],[398,2,2,49,51],[399,2,2,51,53]]],[15,1,1,53,54,[[414,1,1,53,54]]],[17,1,1,54,55,[[474,1,1,54,55]]],[23,9,9,55,64,[[784,2,2,55,57],[785,3,3,57,60],[786,2,2,60,62],[787,2,2,62,64]]]],[4678,4712,4716,4718,4907,5436,7381,7794,8122,8479,8483,8696,8742,8775,9269,9512,9513,9547,9748,9761,9838,9839,9844,10245,10248,10741,10748,10754,10761,10816,11047,11103,11110,11112,11144,11170,11196,11355,11513,11537,11572,11573,11574,11633,11657,11665,11670,11676,11709,11881,11896,11919,11922,12316,13859,19948,19954,19968,19970,19973,19976,19983,20001,20002]]],["chief",[31,28,[[0,11,9,0,9,[[39,9,7,0,7],[40,2,2,7,9]]],[10,2,2,9,11,[[299,1,1,9,10],[304,1,1,10,11]]],[12,9,9,11,20,[[352,8,8,11,19],[366,1,1,19,20]]],[13,6,6,20,26,[[374,2,2,20,22],[378,1,1,22,23],[383,1,1,23,24],[401,1,1,24,25],[402,1,1,25,26]]],[14,3,2,26,28,[[410,2,1,26,27],[412,1,1,27,28]]]],[1174,1181,1188,1192,1193,1194,1195,1204,1205,9074,9245,10796,10797,10798,10799,10800,10801,10807,10813,11170,11355,11356,11447,11537,11975,12007,12230,12257]]],["general",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11143]]],["governor",[4,4,[[10,1,1,0,1,[[312,1,1,0,1]]],[11,1,1,1,2,[[335,1,1,1,2]]],[13,2,2,2,4,[[384,1,1,2,3],[400,1,1,3,4]]]],[9506,10173,11567,11941]]],["governors",[2,1,[[12,2,1,0,1,[[361,2,1,0,1]]]],[11020]]],["keeper",[3,3,[[0,3,3,0,3,[[38,3,3,0,3]]]],[1170,1171,1172]]],["lords",[1,1,[[14,1,1,0,1,[[410,1,1,0,1]]]],[12226]]],["master",[1,1,[[12,1,1,0,1,[[352,1,1,0,1]]]],[10818]]],["over",[1,1,[[10,1,1,0,1,[[312,1,1,0,1]]]],[9511]]],["prince",[16,15,[[1,1,1,0,1,[[51,1,1,0,1]]],[9,1,1,1,2,[[269,1,1,1,2]]],[23,1,1,2,3,[[795,1,1,2,3]]],[26,11,10,3,13,[[850,5,5,3,8],[857,1,1,8,9],[859,4,3,9,12],[861,1,1,12,13]]],[27,1,1,13,14,[[864,1,1,13,14]]],[32,1,1,14,15,[[899,1,1,14,15]]]],[1568,8119,20271,21744,21746,21747,21748,21755,21972,22028,22035,22036,22082,22132,22667]]],["princes",[183,171,[[0,1,1,0,1,[[11,1,1,0,1]]],[3,10,10,1,11,[[137,1,1,1,2],[138,7,7,2,9],[139,2,2,9,11]]],[6,6,6,11,17,[[215,1,1,11,12],[217,1,1,12,13],[218,3,3,13,16],[220,1,1,16,17]]],[8,6,4,17,21,[[253,1,1,17,18],[264,5,3,18,21]]],[9,2,2,21,23,[[276,1,1,21,22],[285,1,1,22,23]]],[10,6,6,23,29,[[294,1,1,23,24],[299,1,1,24,25],[310,4,4,25,29]]],[11,3,3,29,32,[[323,1,1,29,30],[336,2,2,30,32]]],[12,10,9,32,41,[[356,1,1,32,33],[359,1,1,33,34],[360,1,1,34,35],[361,1,1,35,36],[364,1,1,36,37],[365,3,2,37,39],[366,2,2,39,41]]],[13,21,21,41,62,[[378,2,2,41,43],[383,1,1,43,44],[387,1,1,44,45],[388,1,1,45,46],[389,1,1,46,47],[390,3,3,47,50],[394,2,2,50,52],[395,1,1,52,53],[396,4,4,53,57],[397,1,1,57,58],[398,2,2,58,60],[401,1,1,60,61],[402,1,1,61,62]]],[14,5,5,62,67,[[409,1,1,62,63],[410,1,1,63,64],[411,2,2,64,66],[412,1,1,66,67]]],[15,5,5,67,72,[[421,3,3,67,70],[424,2,2,70,72]]],[16,10,8,72,80,[[426,7,5,72,77],[427,1,1,77,78],[428,1,1,78,79],[430,1,1,79,80]]],[17,3,3,80,83,[[438,1,1,80,81],[464,1,1,81,82],[469,1,1,82,83]]],[18,7,5,83,88,[[522,1,1,83,84],[545,3,1,84,85],[559,1,1,85,86],[582,1,1,86,87],[625,1,1,87,88]]],[19,3,3,88,91,[[635,1,1,88,89],[646,1,1,89,90],[655,1,1,90,91]]],[20,3,3,91,94,[[668,3,3,91,94]]],[22,15,14,94,108,[[679,1,1,94,95],[681,2,2,95,97],[688,1,1,97,98],[697,3,2,98,100],[699,1,1,100,101],[701,1,1,101,102],[708,1,1,102,103],[709,1,1,103,104],[710,1,1,104,105],[712,1,1,105,106],[721,1,1,106,107],[727,1,1,107,108]]],[23,45,41,108,149,[[745,1,1,108,109],[746,1,1,109,110],[748,1,1,110,111],[752,1,1,111,112],[761,2,1,112,113],[768,2,2,113,115],[769,2,2,115,117],[770,5,5,117,122],[773,1,1,122,123],[776,1,1,123,124],[778,4,3,124,127],[779,1,1,127,128],[780,5,4,128,132],[781,2,2,132,134],[782,6,6,134,140],[783,2,1,140,141],[788,2,2,141,143],[792,1,1,143,144],[793,2,2,144,146],[794,1,1,146,147],[795,1,1,147,148],[796,1,1,148,149]]],[24,3,3,149,152,[[797,1,1,149,150],[798,2,2,150,152]]],[25,3,3,152,155,[[812,1,1,152,153],[818,1,1,153,154],[823,1,1,154,155]]],[26,5,5,155,160,[[857,1,1,155,156],[858,2,2,156,158],[859,1,1,158,159],[860,1,1,159,160]]],[27,7,7,160,167,[[866,1,1,160,161],[868,3,3,161,164],[869,1,1,164,165],[870,1,1,165,166],[874,1,1,166,167]]],[29,2,2,167,169,[[879,1,1,167,168],[880,1,1,168,169]]],[35,2,2,169,171,[[906,1,1,169,170],[908,1,1,170,171]]]],[313,4358,4383,4388,4389,4390,4396,4410,4415,4422,4433,6638,6719,6722,6725,6733,6829,7706,7970,7971,7976,8243,8517,8846,9073,9422,9423,9425,9427,9843,10214,10216,10910,10981,10985,11021,11131,11144,11164,11170,11188,11442,11443,11530,11633,11652,11669,11687,11694,11700,11778,11785,11821,11829,11833,11839,11851,11862,11878,11906,11974,12011,12201,12221,12238,12239,12260,12543,12545,12549,12655,12656,12705,12716,12718,12720,12723,12742,12748,12790,12919,13541,13702,14613,14927,15240,15628,16382,16618,16935,17198,17500,17509,17510,17677,17711,17721,17858,18015,18017,18040,18085,18221,18259,18260,18315,18533,18643,18964,18991,19036,19154,19382,19525,19532,19552,19553,19582,19583,19584,19588,19593,19637,19763,19811,19820,19822,19827,19854,19856,19861,19863,19888,19889,19899,19912,19913,19917,19920,19922,19926,20027,20031,20087,20130,20165,20201,20269,20286,20316,20334,20341,20656,20837,21003,21986,21994,21996,22028,22041,22162,22181,22183,22194,22204,22223,22276,22379,22382,22795,22823]]],["principal",[2,2,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,1,1,1,2,[[796,1,1,1,2]]]],[10241,20301]]],["ruler",[10,10,[[6,1,1,0,1,[[219,1,1,0,1]]],[15,9,9,1,10,[[415,8,8,1,9],[419,1,1,9,10]]]],[6784,12336,12339,12341,12342,12343,12344,12345,12346,12422]]],["rulers",[23,17,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,8,2,1,3,[[67,8,2,1,3]]],[10,1,1,3,4,[[299,1,1,3,4]]],[11,3,3,4,7,[[322,1,1,4,5],[323,2,2,5,7]]],[12,3,3,7,10,[[358,1,1,7,8],[364,1,1,8,9],[366,1,1,9,10]]],[13,1,1,10,11,[[395,1,1,10,11]]],[14,1,1,11,12,[[412,1,1,11,12]]],[15,2,2,12,14,[[416,1,1,12,13],[423,1,1,13,14]]],[16,3,3,14,17,[[428,1,1,14,15],[433,1,1,15,16],[434,1,1,16,17]]]],[1426,2020,2024,9073,9794,9833,9848,10936,11140,11170,11811,12266,12375,12589,12759,12826,12837]]],["stewards",[1,1,[[12,1,1,0,1,[[365,1,1,0,1]]]],[11144]]]]},{"k":"H8270","v":[["navel",[2,2,[[19,1,1,0,1,[[630,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[16463,20766]]]]},{"k":"H8271","v":[["*",[6,6,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,5,5,1,6,[[851,1,1,1,2],[852,1,1,2,3],[854,3,3,3,6]]]],[12136,21780,21832,21880,21886,21890]]],["began",[1,1,[[14,1,1,0,1,[[407,1,1,0,1]]]],[12136]]],["dissolve",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21890]]],["dissolving",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21886]]],["dwelleth",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21780]]],["loose",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21832]]],["loosed",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21880]]]]},{"k":"H8272","v":[["*",[3,3,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]],[37,1,1,2,3,[[917,1,1,2,3]]]],[10098,18390,22964]]],["Sharezer",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10098,18390]]],["Sherezer",[1,1,[[37,1,1,0,1,[[917,1,1,0,1]]]],[22964]]]]},{"k":"H8273","v":[["*",[2,2,[[22,2,2,0,2,[[713,1,1,0,1],[727,1,1,1,2]]]],[18327,18646]]],["ground",[1,1,[[22,1,1,0,1,[[713,1,1,0,1]]]],[18327]]],["heat",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18646]]]]},{"k":"H8274","v":[["Sherebiah",[8,8,[[14,2,2,0,2,[[410,2,2,0,2]]],[15,6,6,2,8,[[420,1,1,2,3],[421,2,2,3,5],[422,1,1,5,6],[424,2,2,6,8]]]],[12219,12225,12500,12515,12516,12561,12632,12648]]]]},{"k":"H8275","v":[["sceptre",[4,3,[[16,4,3,0,3,[[429,1,1,0,1],[430,2,1,1,2],[433,1,1,2,3]]]],[12773,12781,12821]]]]},{"k":"H8276","v":[["*",[2,2,[[17,1,1,0,1,[[475,1,1,0,1]]],[24,1,1,1,2,[[797,1,1,1,2]]]],[13881,20324]]],["together",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13881]]],["wreathed",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20324]]]]},{"k":"H8277","v":[["remained",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6084]]]]},{"k":"H8278","v":[["service",[4,4,[[1,4,4,0,4,[[80,1,1,0,1],[84,1,1,1,2],[88,2,2,2,4]]]],[2430,2550,2665,2705]]]]},{"k":"H8279","v":[["line",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18546]]]]},{"k":"H8280","v":[["power",[3,3,[[0,1,1,0,1,[[31,1,1,0,1]]],[27,2,2,1,3,[[873,2,2,1,3]]]],[956,22255,22256]]]]},{"k":"H8281","v":[]},{"k":"H8282","v":[["*",[5,5,[[6,1,1,0,1,[[215,1,1,0,1]]],[10,1,1,1,2,[[301,1,1,1,2]]],[16,1,1,2,3,[[426,1,1,2,3]]],[22,1,1,3,4,[[727,1,1,3,4]]],[24,1,1,4,5,[[797,1,1,4,5]]]],[6652,9111,12720,18659,20311]]],["ladies",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]]],[6652,12720]]],["princess",[1,1,[[24,1,1,0,1,[[797,1,1,0,1]]]],[20311]]],["princesses",[1,1,[[10,1,1,0,1,[[301,1,1,0,1]]]],[9111]]],["queens",[1,1,[[22,1,1,0,1,[[727,1,1,0,1]]]],[18659]]]]},{"k":"H8283","v":[["*",[38,32,[[0,37,31,0,31,[[16,4,4,0,4],[17,10,8,4,12],[19,5,4,12,16],[20,8,7,16,23],[22,5,3,23,26],[23,2,2,26,28],[24,2,2,28,30],[48,1,1,30,31]]],[22,1,1,31,32,[[729,1,1,31,32]]]],[412,414,416,418,430,433,434,435,436,437,438,439,497,509,511,513,514,515,516,519,520,522,525,572,573,590,627,658,668,670,1504,18675]]],["Sarah",[36,30,[[0,35,29,0,29,[[16,4,4,0,4],[17,10,8,4,12],[19,5,4,12,16],[20,8,7,16,23],[22,5,3,23,26],[23,1,1,26,27],[24,1,1,27,28],[48,1,1,28,29]]],[22,1,1,29,30,[[729,1,1,29,30]]]],[412,414,416,418,430,433,434,435,436,437,438,439,497,509,511,513,514,515,516,519,520,522,525,572,573,590,627,668,1504,18675]]],["Sarah's",[2,2,[[0,2,2,0,2,[[23,1,1,0,1],[24,1,1,1,2]]]],[658,670]]]]},{"k":"H8284","v":[["walls",[1,1,[[23,1,1,0,1,[[749,1,1,0,1]]]],[19068]]]]},{"k":"H8285","v":[["bracelets",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17726]]]]},{"k":"H8286","v":[["Serug",[5,5,[[0,4,4,0,4,[[10,4,4,0,4]]],[12,1,1,4,5,[[338,1,1,4,5]]]],[286,287,288,289,10278]]]]},{"k":"H8287","v":[["Sharuhen",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6327]]]]},{"k":"H8288","v":[["*",[2,2,[[0,1,1,0,1,[[13,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]]],[359,17766]]],["+",[1,1,[[0,1,1,0,1,[[13,1,1,0,1]]]],[359]]],["latchet",[1,1,[[22,1,1,0,1,[[683,1,1,0,1]]]],[17766]]]]},{"k":"H8289","v":[["*",[7,7,[[5,1,1,0,1,[[198,1,1,0,1]]],[12,2,2,1,3,[[342,1,1,1,2],[364,1,1,2,3]]],[21,1,1,3,4,[[672,1,1,3,4]]],[22,3,3,4,7,[[711,1,1,4,5],[713,1,1,5,6],[743,1,1,6,7]]]],[6148,10444,11138,17555,18288,18322,18907]]],["Lasharon",[1,1,[[5,1,1,0,1,[[198,1,1,0,1]]]],[6148]]],["Sharon",[6,6,[[12,2,2,0,2,[[342,1,1,0,1],[364,1,1,1,2]]],[21,1,1,2,3,[[672,1,1,2,3]]],[22,3,3,3,6,[[711,1,1,3,4],[713,1,1,4,5],[743,1,1,5,6]]]],[10444,11138,17555,18288,18322,18907]]]]},{"k":"H8290","v":[["Sharonite",[1,1,[[12,1,1,0,1,[[364,1,1,0,1]]]],[11138]]]]},{"k":"H8291","v":[["plants",[1,1,[[22,1,1,0,1,[[694,1,1,0,1]]]],[17977]]]]},{"k":"H8292","v":[["*",[2,2,[[6,1,1,0,1,[[215,1,1,0,1]]],[23,1,1,1,2,[[762,1,1,1,2]]]],[6639,19400]]],["bleatings",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6639]]],["hissing",[1,1,[[23,1,1,0,1,[[762,1,1,0,1]]]],[19400]]]]},{"k":"H8293","v":[["remnant",[1,1,[[23,1,1,0,1,[[759,1,1,0,1]]]],[19326]]]]},{"k":"H8294","v":[["*",[3,3,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[12,1,1,2,3,[[344,1,1,2,3]]]],[1403,4535,10565]]],["Sarah",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4535]]],["Serah",[2,2,[[0,1,1,0,1,[[45,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]]],[1403,10565]]]]},{"k":"H8295","v":[["*",[3,2,[[2,1,1,0,1,[[110,1,1,0,1]]],[37,2,1,1,2,[[922,2,1,1,2]]]],[3350,23048]]],["+",[2,1,[[37,2,1,0,1,[[922,2,1,0,1]]]],[23048]]],["make",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3350]]]]},{"k":"H8296","v":[["cuttings",[2,2,[[2,2,2,0,2,[[108,1,1,0,1],[110,1,1,1,2]]]],[3309,3350]]]]},{"k":"H8297","v":[["*",[17,13,[[0,17,13,0,13,[[10,3,3,0,3],[11,3,3,3,6],[15,9,6,6,12],[16,2,1,12,13]]]],[295,296,297,303,309,315,382,383,384,386,387,389,412]]],["Sarai",[16,13,[[0,16,13,0,13,[[10,3,3,0,3],[11,3,3,3,6],[15,8,6,6,12],[16,2,1,12,13]]]],[295,296,297,303,309,315,382,383,384,386,387,389,412]]],["Sarai's",[1,1,[[0,1,1,0,1,[[15,1,1,0,1]]]],[389]]]]},{"k":"H8298","v":[["Sharai",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12292]]]]},{"k":"H8299","v":[["branches",[3,3,[[0,2,2,0,2,[[39,2,2,0,2]]],[28,1,1,2,3,[[876,1,1,2,3]]]],[1182,1184,22298]]]]},{"k":"H8300","v":[["*",[27,27,[[3,2,2,0,2,[[137,1,1,0,1],[140,1,1,1,2]]],[4,2,2,2,4,[[154,1,1,2,3],[155,1,1,3,4]]],[5,8,8,4,12,[[196,7,7,4,11],[197,1,1,11,12]]],[6,1,1,12,13,[[215,1,1,12,13]]],[11,1,1,13,14,[[322,1,1,13,14]]],[17,4,4,14,18,[[453,1,1,14,15],[455,2,2,15,17],[462,1,1,17,18]]],[22,1,1,18,19,[[679,1,1,18,19]]],[23,4,4,19,23,[[775,1,1,19,20],[786,1,1,20,21],[788,1,1,21,22],[791,1,1,22,23]]],[24,1,1,23,24,[[798,1,1,23,24]]],[28,1,1,24,25,[[877,1,1,24,25]]],[30,2,2,25,27,[[888,2,2,25,27]]]],[4375,4465,4972,4978,6084,6092,6094,6097,6101,6103,6104,6115,6636,9804,13295,13347,13352,13496,17663,19693,19992,20024,20077,20354,22343,22524,22528]]],["alive",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4375]]],["left",[3,3,[[17,2,2,0,2,[[455,2,2,0,2]]],[23,1,1,2,3,[[775,1,1,2,3]]]],[13347,13352,19693]]],["remain",[7,7,[[4,1,1,0,1,[[154,1,1,0,1]]],[5,2,2,1,3,[[196,2,2,1,3]]],[17,1,1,3,4,[[462,1,1,3,4]]],[23,2,2,4,6,[[786,1,1,4,5],[788,1,1,5,6]]],[30,1,1,6,7,[[888,1,1,6,7]]]],[4972,6092,6094,13496,19992,20024,22524]]],["remained",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20354]]],["remaineth",[3,3,[[3,1,1,0,1,[[140,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[23,1,1,2,3,[[791,1,1,2,3]]]],[4465,6636,20077]]],["remaining",[9,9,[[4,1,1,0,1,[[155,1,1,0,1]]],[5,5,5,1,6,[[196,4,4,1,5],[197,1,1,5,6]]],[11,1,1,6,7,[[322,1,1,6,7]]],[17,1,1,7,8,[[453,1,1,7,8]]],[30,1,1,8,9,[[888,1,1,8,9]]]],[4978,6097,6101,6103,6104,6115,9804,13295,22528]]],["remnant",[2,2,[[22,1,1,0,1,[[679,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[17663,22343]]],["rest",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6084]]]]},{"k":"H8301","v":[["*",[2,2,[[5,2,2,0,2,[[205,2,2,0,2]]]],[6331,6333]]],["+",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6333]]],["Sarid",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6331]]]]},{"k":"H8302","v":[["*",[9,8,[[8,3,2,0,2,[[252,3,2,0,2]]],[10,1,1,2,3,[[312,1,1,2,3]]],[13,2,2,3,5,[[384,1,1,3,4],[392,1,1,4,5]]],[15,1,1,5,6,[[416,1,1,5,6]]],[17,1,1,6,7,[[476,1,1,6,7]]],[22,1,1,7,8,[[737,1,1,7,8]]]],[7623,7656,9514,11575,11746,12375,13914,18817]]],["breastplate",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18817]]],["coat",[2,1,[[8,2,1,0,1,[[252,2,1,0,1]]]],[7623]]],["habergeon",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13914]]],["habergeons",[2,2,[[13,1,1,0,1,[[392,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]]],[11746,12375]]],["harness",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[9514,11575]]],["mail",[1,1,[[8,1,1,0,1,[[252,1,1,0,1]]]],[7656]]]]},{"k":"H8303","v":[["Sirion",[2,2,[[4,1,1,0,1,[[155,1,1,0,1]]],[18,1,1,1,2,[[506,1,1,1,2]]]],[4984,14314]]]]},{"k":"H8304","v":[["Seraiah",[20,18,[[9,1,1,0,1,[[274,1,1,0,1]]],[11,2,2,1,3,[[337,2,2,1,3]]],[12,5,4,3,7,[[341,3,3,3,6],[343,2,1,6,7]]],[14,2,2,7,9,[[404,1,1,7,8],[409,1,1,8,9]]],[15,4,4,9,13,[[422,1,1,9,10],[423,1,1,10,11],[424,2,2,11,13]]],[23,6,5,13,18,[[780,1,1,13,14],[784,1,1,14,15],[795,3,2,15,17],[796,1,1,17,18]]]],[8226,10240,10245,10398,10399,10420,10468,12029,12174,12551,12599,12625,12636,19868,19949,20271,20273,20300]]]]},{"k":"H8305","v":[["fine",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18013]]]]},{"k":"H8306","v":[["navel",[1,1,[[17,1,1,0,1,[[475,1,1,0,1]]]],[13880]]]]},{"k":"H8307","v":[["*",[10,10,[[4,1,1,0,1,[[181,1,1,0,1]]],[18,1,1,1,2,[[558,1,1,1,2]]],[23,8,8,2,10,[[747,1,1,2,3],[751,1,1,3,4],[753,1,1,4,5],[755,1,1,5,6],[757,1,1,6,7],[760,1,1,7,8],[762,1,1,8,9],[767,1,1,9,10]]]],[5698,15229,19019,19143,19189,19234,19276,19348,19396,19501]]],["imagination",[9,9,[[4,1,1,0,1,[[181,1,1,0,1]]],[23,8,8,1,9,[[747,1,1,1,2],[751,1,1,2,3],[753,1,1,3,4],[755,1,1,4,5],[757,1,1,5,6],[760,1,1,6,7],[762,1,1,7,8],[767,1,1,8,9]]]],[5698,19019,19143,19189,19234,19276,19348,19396,19501]]],["lust",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15229]]]]},{"k":"H8308","v":[["traversing",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18988]]]]},{"k":"H8309","v":[["fields",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19731]]]]},{"k":"H8310","v":[["Sarsechim",[1,1,[[23,1,1,0,1,[[783,1,1,0,1]]]],[19926]]]]},{"k":"H8311","v":[["*",[3,3,[[2,2,2,0,2,[[110,1,1,0,1],[111,1,1,1,2]]],[22,1,1,2,3,[[706,1,1,2,3]]]],[3363,3392,18184]]],["+",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18184]]],["superfluous",[2,2,[[2,2,2,0,2,[[110,1,1,0,1],[111,1,1,1,2]]]],[3363,3392]]]]},{"k":"H8312","v":[["thoughts",[2,2,[[18,2,2,0,2,[[571,1,1,0,1],[616,1,1,1,2]]]],[15450,16262]]]]},{"k":"H8313","v":[["*",[117,107,[[0,2,2,0,2,[[10,1,1,0,1],[37,1,1,1,2]]],[1,4,4,2,6,[[61,1,1,2,3],[78,2,2,3,5],[81,1,1,5,6]]],[2,21,18,6,24,[[93,4,2,6,8],[95,1,1,8,9],[96,2,2,9,11],[97,2,2,11,13],[98,1,1,13,14],[99,2,2,14,16],[102,4,3,16,19],[105,2,2,19,21],[108,1,1,21,22],[109,1,1,22,23],[110,1,1,23,24]]],[3,5,4,24,28,[[132,1,1,24,25],[135,3,2,25,27],[147,1,1,27,28]]],[4,6,6,28,34,[[159,2,2,28,30],[161,1,1,30,31],[164,2,2,31,33],[165,1,1,33,34]]],[5,9,8,34,42,[[192,1,1,34,35],[193,2,2,35,37],[194,1,1,37,38],[197,5,4,38,42]]],[6,5,5,42,47,[[219,1,1,42,43],[222,1,1,43,44],[224,1,1,44,45],[225,1,1,45,46],[228,1,1,46,47]]],[8,4,4,47,51,[[265,3,3,47,50],[266,1,1,50,51]]],[9,2,1,51,52,[[289,2,1,51,52]]],[10,4,4,52,56,[[299,1,1,52,53],[303,1,1,53,54],[305,1,1,54,55],[306,1,1,55,56]]],[11,11,9,56,65,[[322,1,1,56,57],[329,1,1,57,58],[335,7,6,58,64],[337,2,1,64,65]]],[12,1,1,65,66,[[351,1,1,65,66]]],[13,5,4,66,70,[[381,1,1,66,67],[382,1,1,67,68],[400,1,1,68,69],[402,2,1,69,70]]],[15,1,1,70,71,[[416,1,1,70,71]]],[18,3,3,71,74,[[523,1,1,71,72],[551,1,1,72,73],[557,1,1,73,74]]],[19,1,1,74,75,[[633,1,1,74,75]]],[22,4,4,75,79,[[679,1,1,75,76],[722,2,2,76,78],[725,1,1,78,79]]],[23,23,22,79,101,[[751,1,1,79,80],[763,1,1,80,81],[765,1,1,81,82],[776,1,1,82,83],[778,3,3,83,86],[780,5,5,86,91],[781,2,2,91,93],[782,3,3,93,96],[783,1,1,96,97],[787,2,2,97,99],[795,1,1,99,100],[796,2,1,100,101]]],[25,4,4,101,105,[[806,1,1,101,102],[817,1,1,102,103],[824,1,1,103,104],[844,1,1,104,105]]],[29,1,1,105,106,[[880,1,1,105,106]]],[32,1,1,106,107,[[893,1,1,106,107]]]],[269,1143,1826,2350,2370,2458,2807,2816,2879,2896,2898,2934,2949,2964,2983,2993,3104,3107,3109,3228,3229,3287,3332,3354,4233,4294,4297,4674,5116,5136,5178,5243,5271,5288,5973,5991,6001,6030,6113,6116,6118,6120,6806,6870,6924,6935,7020,7979,7981,7992,8021,8660,9067,9186,9262,9301,9819,10014,10169,10171,10176,10180,10181,10185,10231,10786,11506,11523,11938,12012,12361,14623,15056,15214,16567,17661,18549,18552,18613,19150,19412,19450,19760,19803,19806,19823,19867,19869,19870,19871,19874,19882,19884,19912,19913,19918,19931,20009,20010,20244,20289,20550,20803,21054,21593,22380,22586]]],["+",[21,20,[[1,1,1,0,1,[[78,1,1,0,1]]],[2,3,3,1,4,[[93,1,1,1,2],[102,2,2,2,4]]],[3,1,1,4,5,[[135,1,1,4,5]]],[5,1,1,5,6,[[194,1,1,5,6]]],[9,2,1,6,7,[[289,2,1,6,7]]],[10,1,1,7,8,[[306,1,1,7,8]]],[11,4,4,8,12,[[329,1,1,8,9],[335,2,2,9,11],[337,1,1,11,12]]],[13,1,1,12,13,[[402,1,1,12,13]]],[23,7,7,13,20,[[751,1,1,13,14],[763,1,1,14,15],[780,3,3,15,18],[781,1,1,18,19],[796,1,1,19,20]]]],[2370,2816,3104,3109,4294,6030,8660,9301,10014,10180,10185,10231,12012,19150,19412,19867,19869,19871,19884,20289]]],["burn",[31,31,[[0,1,1,0,1,[[10,1,1,0,1]]],[1,2,2,1,3,[[61,1,1,1,2],[78,1,1,2,3]]],[2,5,5,3,8,[[93,2,2,3,5],[97,1,1,5,6],[102,1,1,6,7],[105,1,1,7,8]]],[3,1,1,8,9,[[135,1,1,8,9]]],[4,4,4,9,13,[[159,2,2,9,11],[164,1,1,11,12],[165,1,1,12,13]]],[5,2,2,13,15,[[197,2,2,13,15]]],[6,3,3,15,18,[[219,1,1,15,16],[222,1,1,16,17],[224,1,1,17,18]]],[22,1,1,18,19,[[725,1,1,18,19]]],[23,9,9,19,28,[[765,1,1,19,20],[776,1,1,20,21],[778,3,3,21,24],[781,1,1,24,25],[782,1,1,25,26],[787,2,2,26,28]]],[25,3,3,28,31,[[806,1,1,28,29],[817,1,1,29,30],[844,1,1,30,31]]]],[269,1826,2350,2807,2816,2949,3107,3228,4294,5116,5136,5243,5288,6113,6120,6806,6870,6924,18613,19450,19760,19803,19806,19823,19882,19913,20009,20010,20550,20803,21593]]],["burned",[26,26,[[5,2,2,0,2,[[193,1,1,0,1],[197,1,1,1,2]]],[8,3,3,2,5,[[265,3,3,2,5]]],[11,6,6,5,11,[[322,1,1,5,6],[335,5,5,6,11]]],[12,1,1,11,12,[[351,1,1,11,12]]],[15,1,1,12,13,[[416,1,1,12,13]]],[18,1,1,13,14,[[557,1,1,13,14]]],[19,1,1,14,15,[[633,1,1,14,15]]],[22,2,2,15,17,[[679,1,1,15,16],[722,1,1,16,17]]],[23,7,7,17,24,[[780,2,2,17,19],[782,2,2,19,21],[783,1,1,21,22],[795,1,1,22,23],[796,1,1,23,24]]],[29,1,1,24,25,[[880,1,1,24,25]]],[32,1,1,25,26,[[893,1,1,25,26]]]],[6001,6120,7979,7981,7992,9819,10169,10171,10176,10180,10181,10786,12361,15214,16567,17661,18552,19870,19874,19912,19918,19931,20244,20289,22380,22586]]],["burneth",[4,4,[[2,1,1,0,1,[[105,1,1,0,1]]],[3,1,1,1,2,[[135,1,1,1,2]]],[18,1,1,2,3,[[523,1,1,2,3]]],[22,1,1,3,4,[[722,1,1,3,4]]]],[3229,4297,14623,18549]]],["burnt",[31,31,[[0,1,1,0,1,[[37,1,1,0,1]]],[1,1,1,1,2,[[81,1,1,1,2]]],[2,11,11,2,13,[[93,1,1,2,3],[95,1,1,3,4],[96,2,2,4,6],[97,1,1,6,7],[98,1,1,7,8],[99,1,1,8,9],[102,1,1,9,10],[108,1,1,10,11],[109,1,1,11,12],[110,1,1,12,13]]],[3,2,2,13,15,[[132,1,1,13,14],[147,1,1,14,15]]],[4,2,2,15,17,[[161,1,1,15,16],[164,1,1,16,17]]],[5,4,4,17,21,[[192,1,1,17,18],[193,1,1,18,19],[197,2,2,19,21]]],[6,2,2,21,23,[[225,1,1,21,22],[228,1,1,22,23]]],[8,1,1,23,24,[[266,1,1,23,24]]],[10,3,3,24,27,[[299,1,1,24,25],[303,1,1,25,26],[305,1,1,26,27]]],[11,1,1,27,28,[[337,1,1,27,28]]],[13,3,3,28,31,[[381,1,1,28,29],[400,1,1,29,30],[402,1,1,30,31]]]],[1143,2458,2807,2879,2896,2898,2934,2964,2993,3104,3287,3332,3354,4233,4674,5178,5271,5973,5991,6116,6118,6935,7020,8021,9067,9186,9262,10231,11506,11938,12012]]],["kindled",[1,1,[[2,1,1,0,1,[[99,1,1,0,1]]]],[2983]]],["made",[1,1,[[13,1,1,0,1,[[382,1,1,0,1]]]],[11523]]],["up",[2,2,[[18,1,1,0,1,[[551,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[15056,21054]]]]},{"k":"H8314","v":[["*",[7,7,[[3,2,2,0,2,[[137,2,2,0,2]]],[4,1,1,2,3,[[160,1,1,2,3]]],[22,4,4,3,7,[[684,2,2,3,5],[692,1,1,5,6],[708,1,1,6,7]]]],[4346,4348,5152,17771,17775,17957,18223]]],["+",[2,2,[[22,2,2,0,2,[[692,1,1,0,1],[708,1,1,1,2]]]],[17957,18223]]],["fiery",[2,2,[[3,1,1,0,1,[[137,1,1,0,1]]],[4,1,1,1,2,[[160,1,1,1,2]]]],[4346,5152]]],["seraphims",[2,2,[[22,2,2,0,2,[[684,2,2,0,2]]]],[17771,17775]]],["serpent",[1,1,[[3,1,1,0,1,[[137,1,1,0,1]]]],[4348]]]]},{"k":"H8315","v":[["Saraph",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10407]]]]},{"k":"H8316","v":[["*",[13,12,[[0,1,1,0,1,[[10,1,1,0,1]]],[2,1,1,1,2,[[99,1,1,1,2]]],[3,3,3,2,5,[[132,1,1,2,3],[135,2,2,3,5]]],[4,1,1,5,6,[[181,1,1,5,6]]],[13,3,2,6,8,[[382,1,1,6,7],[387,2,1,7,8]]],[22,2,2,8,10,[[687,1,1,8,9],[742,1,1,9,10]]],[23,1,1,10,11,[[795,1,1,10,11]]],[29,1,1,11,12,[[882,1,1,11,12]]]],[269,2983,4231,4295,4306,5702,11523,11643,17834,18896,20237,22421]]],["+",[1,1,[[29,1,1,0,1,[[882,1,1,0,1]]]],[22421]]],["burning",[8,7,[[2,1,1,0,1,[[99,1,1,0,1]]],[3,2,2,1,3,[[132,1,1,1,2],[135,1,1,2,3]]],[4,1,1,3,4,[[181,1,1,3,4]]],[13,3,2,4,6,[[382,1,1,4,5],[387,2,1,5,6]]],[22,1,1,6,7,[[687,1,1,6,7]]]],[2983,4231,4295,5702,11523,11643,17834]]],["burnt",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20237]]],["heifer",[1,1,[[3,1,1,0,1,[[135,1,1,0,1]]]],[4306]]],["throughly",[1,1,[[0,1,1,0,1,[[10,1,1,0,1]]]],[269]]],["up",[1,1,[[22,1,1,0,1,[[742,1,1,0,1]]]],[18896]]]]},{"k":"H8317","v":[["*",[14,14,[[0,5,5,0,5,[[0,2,2,0,2],[6,1,1,2,3],[7,1,1,3,4],[8,1,1,4,5]]],[1,2,2,5,7,[[50,1,1,5,6],[57,1,1,6,7]]],[2,5,5,7,12,[[100,5,5,7,12]]],[18,1,1,12,13,[[582,1,1,12,13]]],[25,1,1,13,14,[[848,1,1,13,14]]]],[19,20,180,200,212,1539,1713,3026,3038,3039,3040,3043,15636,21688]]],["+",[2,2,[[1,1,1,0,1,[[57,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]]],[1713,15636]]],["abundantly",[5,5,[[0,4,4,0,4,[[0,2,2,0,2],[7,1,1,2,3],[8,1,1,3,4]]],[1,1,1,4,5,[[50,1,1,4,5]]]],[19,20,200,212,1539]]],["creep",[2,2,[[2,2,2,0,2,[[100,2,2,0,2]]]],[3026,3039]]],["creepeth",[4,4,[[0,1,1,0,1,[[6,1,1,0,1]]],[2,3,3,1,4,[[100,3,3,1,4]]]],[180,3038,3040,3043]]],["moveth",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21688]]]]},{"k":"H8318","v":[["*",[15,15,[[0,2,2,0,2,[[0,1,1,0,1],[6,1,1,1,2]]],[2,12,12,2,14,[[94,1,1,2,3],[100,10,10,3,13],[111,1,1,13,14]]],[4,1,1,14,15,[[166,1,1,14,15]]]],[19,180,2832,3007,3017,3018,3020,3026,3028,3038,3039,3040,3041,3374,5309]]],["creature",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[19]]],["creep",[2,2,[[2,2,2,0,2,[[100,2,2,0,2]]]],[3017,3028]]],["move",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3007]]],["thing",[7,7,[[0,1,1,0,1,[[6,1,1,0,1]]],[2,5,5,1,6,[[100,4,4,1,5],[111,1,1,5,6]]],[4,1,1,6,7,[[166,1,1,6,7]]]],[180,3018,3038,3040,3041,3374,5309]]],["things",[4,4,[[2,4,4,0,4,[[94,1,1,0,1],[100,3,3,1,4]]]],[2832,3020,3026,3039]]]]},{"k":"H8319","v":[["*",[12,12,[[10,1,1,0,1,[[299,1,1,0,1]]],[17,1,1,1,2,[[462,1,1,1,2]]],[22,2,2,2,4,[[683,1,1,2,3],[685,1,1,3,4]]],[23,3,3,4,7,[[763,1,1,4,5],[793,1,1,5,6],[794,1,1,6,7]]],[24,2,2,7,9,[[798,2,2,7,9]]],[25,1,1,9,10,[[828,1,1,9,10]]],[35,1,1,10,11,[[907,1,1,10,11]]],[37,1,1,11,12,[[920,1,1,11,12]]]],[9059,13504,17765,17800,19415,20144,20179,20347,20348,21157,22820,23024]]],["+",[1,1,[[17,1,1,0,1,[[462,1,1,0,1]]]],[13504]]],["hiss",[11,11,[[10,1,1,0,1,[[299,1,1,0,1]]],[22,2,2,1,3,[[683,1,1,1,2],[685,1,1,2,3]]],[23,3,3,3,6,[[763,1,1,3,4],[793,1,1,4,5],[794,1,1,5,6]]],[24,2,2,6,8,[[798,2,2,6,8]]],[25,1,1,8,9,[[828,1,1,8,9]]],[35,1,1,9,10,[[907,1,1,9,10]]],[37,1,1,10,11,[[920,1,1,10,11]]]],[9059,17765,17800,19415,20144,20179,20347,20348,21157,22820,23024]]]]},{"k":"H8320","v":[["speckled",[1,1,[[37,1,1,0,1,[[911,1,1,0,1]]]],[22886]]]]},{"k":"H8321","v":[["vine",[3,3,[[0,1,1,0,1,[[48,1,1,0,1]]],[22,1,1,1,2,[[683,1,1,1,2]]],[23,1,1,2,3,[[746,1,1,2,3]]]],[1484,17741,18986]]]]},{"k":"H8322","v":[["hissing",[7,7,[[13,1,1,0,1,[[395,1,1,0,1]]],[23,5,5,1,6,[[763,1,1,1,2],[769,2,2,2,4],[773,1,1,4,5],[795,1,1,5,6]]],[32,1,1,6,7,[[898,1,1,6,7]]]],[11799,19415,19543,19552,19653,20249,22664]]]]},{"k":"H8323","v":[["*",[6,5,[[3,2,1,0,1,[[132,2,1,0,1]]],[16,1,1,1,2,[[426,1,1,1,2]]],[19,1,1,2,3,[[635,1,1,2,3]]],[22,1,1,3,4,[[710,1,1,3,4]]],[27,1,1,4,5,[[869,1,1,4,5]]]],[4207,12724,16618,18260,22198]]],["+",[2,1,[[3,2,1,0,1,[[132,2,1,0,1]]]],[4207]]],["princes",[1,1,[[27,1,1,0,1,[[869,1,1,0,1]]]],[22198]]],["rule",[3,3,[[16,1,1,0,1,[[426,1,1,0,1]]],[19,1,1,1,2,[[635,1,1,1,2]]],[22,1,1,2,3,[[710,1,1,2,3]]]],[12724,16618,18260]]]]},{"k":"H8324","v":[["enemies",[5,5,[[18,5,5,0,5,[[482,1,1,0,1],[504,1,1,1,2],[531,1,1,2,3],[533,1,1,3,4],[536,1,1,4,5]]]],[13981,14296,14730,14757,14800]]]]},{"k":"H8325","v":[["Sharar",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8686]]]]},{"k":"H8326","v":[["navel",[1,1,[[21,1,1,0,1,[[677,1,1,0,1]]]],[17629]]]]},{"k":"H8327","v":[["*",[8,8,[[17,3,3,0,3,[[440,1,1,0,1],[466,2,2,1,3]]],[18,2,2,3,5,[[529,1,1,3,4],[557,1,1,4,5]]],[22,2,2,5,7,[[705,1,1,5,6],[718,1,1,6,7]]],[23,1,1,7,8,[[756,1,1,7,8]]]],[12954,13596,13600,14715,15207,18157,18444,19251]]],["+",[1,1,[[18,1,1,0,1,[[557,1,1,0,1]]]],[15207]]],["out",[2,2,[[17,2,2,0,2,[[466,2,2,0,2]]]],[13596,13600]]],["root",[5,5,[[17,1,1,0,1,[[440,1,1,0,1]]],[18,1,1,1,2,[[529,1,1,1,2]]],[22,2,2,2,4,[[705,1,1,2,3],[718,1,1,3,4]]],[23,1,1,4,5,[[756,1,1,4,5]]]],[12954,14715,18157,18444,19251]]]]},{"k":"H8328","v":[["*",[33,32,[[4,1,1,0,1,[[181,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[17,9,9,3,12,[[443,1,1,3,4],[448,1,1,4,5],[449,1,1,5,6],[453,1,1,6,7],[454,1,1,7,8],[463,1,1,8,9],[464,1,1,9,10],[465,1,1,10,11],[471,1,1,11,12]]],[18,1,1,12,13,[[557,1,1,12,13]]],[19,2,2,13,15,[[639,2,2,13,15]]],[22,7,7,15,22,[[683,1,1,15,16],[689,2,2,16,18],[692,2,2,18,20],[715,1,1,20,21],[731,1,1,21,22]]],[23,1,1,22,23,[[761,1,1,22,23]]],[25,5,4,23,27,[[818,4,3,23,26],[832,1,1,26,27]]],[26,1,1,27,28,[[860,1,1,27,28]]],[27,2,2,28,30,[[870,1,1,28,29],[875,1,1,29,30]]],[29,1,1,30,31,[[880,1,1,30,31]]],[38,1,1,31,32,[[928,1,1,31,32]]]],[5697,6637,10091,13046,13180,13189,13292,13325,13513,13551,13561,13766,15207,16722,16731,17763,17885,17894,17957,17958,18383,18713,19365,20831,20832,20834,21237,22043,22224,22287,22388,23139]]],["+",[5,5,[[17,1,1,0,1,[[463,1,1,0,1]]],[18,1,1,1,2,[[557,1,1,1,2]]],[22,2,2,2,4,[[689,1,1,2,3],[692,1,1,3,4]]],[25,1,1,4,5,[[818,1,1,4,5]]]],[13513,15207,17885,17957,20834]]],["bottom",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13766]]],["heels",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13180]]],["root",[16,16,[[4,1,1,0,1,[[181,1,1,0,1]]],[6,1,1,1,2,[[215,1,1,1,2]]],[11,1,1,2,3,[[331,1,1,2,3]]],[17,3,3,3,6,[[449,1,1,3,4],[454,1,1,4,5],[464,1,1,5,6]]],[19,2,2,6,8,[[639,2,2,6,8]]],[22,5,5,8,13,[[683,1,1,8,9],[689,1,1,9,10],[692,1,1,10,11],[715,1,1,11,12],[731,1,1,12,13]]],[25,1,1,13,14,[[832,1,1,13,14]]],[27,1,1,14,15,[[870,1,1,14,15]]],[38,1,1,15,16,[[928,1,1,15,16]]]],[5697,6637,10091,13189,13325,13551,16722,16731,17763,17894,17958,18383,18713,21237,22224,23139]]],["roots",[10,10,[[17,3,3,0,3,[[443,1,1,0,1],[453,1,1,1,2],[465,1,1,2,3]]],[23,1,1,3,4,[[761,1,1,3,4]]],[25,3,3,4,7,[[818,3,3,4,7]]],[26,1,1,7,8,[[860,1,1,7,8]]],[27,1,1,8,9,[[875,1,1,8,9]]],[29,1,1,9,10,[[880,1,1,9,10]]]],[13046,13292,13561,19365,20831,20832,20834,22043,22287,22388]]]]},{"k":"H8329","v":[["Sheresh",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10551]]]]},{"k":"H8330","v":[["roots",[3,3,[[26,3,3,0,3,[[853,3,3,0,3]]]],[21852,21860,21863]]]]},{"k":"H8331","v":[["chains",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2315]]]]},{"k":"H8332","v":[["banishment",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12199]]]]},{"k":"H8333","v":[["*",[7,5,[[1,3,2,0,2,[[77,2,1,0,1],[88,1,1,1,2]]],[10,1,1,2,3,[[297,1,1,2,3]]],[13,3,2,3,5,[[369,3,2,3,5]]]],[2307,2679,8951,11234,11245]]],["chain",[1,1,[[10,1,1,0,1,[[297,1,1,0,1]]]],[8951]]],["chains",[6,4,[[1,3,2,0,2,[[77,2,1,0,1],[88,1,1,1,2]]],[13,3,2,2,4,[[369,3,2,2,4]]]],[2307,2679,11234,11245]]]]},{"k":"H8334","v":[["*",[99,93,[[0,2,2,0,2,[[38,1,1,0,1],[39,1,1,1,2]]],[1,11,10,2,12,[[73,1,1,2,3],[77,2,2,3,5],[78,1,1,5,6],[79,1,1,6,7],[82,1,1,7,8],[84,1,1,8,9],[88,4,3,9,12]]],[3,10,10,12,22,[[117,1,1,12,13],[119,2,2,13,15],[120,3,3,15,18],[124,1,1,18,19],[127,1,1,19,20],[132,1,1,20,21],[134,1,1,21,22]]],[4,5,5,22,27,[[162,1,1,22,23],[169,1,1,23,24],[170,2,2,24,26],[173,1,1,26,27]]],[5,1,1,27,28,[[187,1,1,27,28]]],[8,3,3,28,31,[[237,2,2,28,30],[238,1,1,30,31]]],[9,2,2,31,33,[[279,2,2,31,33]]],[10,5,5,33,38,[[291,2,2,33,35],[298,1,1,35,36],[300,1,1,36,37],[309,1,1,37,38]]],[11,4,4,38,42,[[316,1,1,38,39],[318,1,1,39,40],[327,1,1,40,41],[337,1,1,41,42]]],[12,8,8,42,50,[[343,1,1,42,43],[352,1,1,43,44],[353,2,2,44,46],[360,1,1,46,47],[363,1,1,47,48],[364,1,1,48,49],[365,1,1,49,50]]],[13,10,9,50,59,[[371,1,1,50,51],[374,1,1,51,52],[375,1,1,52,53],[379,1,1,53,54],[383,1,1,54,55],[388,1,1,55,56],[389,1,1,56,57],[395,2,1,57,58],[397,1,1,58,59]]],[14,1,1,59,60,[[410,1,1,59,60]]],[15,2,2,60,62,[[422,2,2,60,62]]],[16,3,3,62,65,[[426,1,1,62,63],[427,1,1,63,64],[431,1,1,64,65]]],[18,3,3,65,68,[[578,1,1,65,66],[580,1,1,66,67],[581,1,1,67,68]]],[19,1,1,68,69,[[656,1,1,68,69]]],[22,4,4,69,73,[[734,1,1,69,70],[738,2,2,70,72],[739,1,1,72,73]]],[23,3,3,73,76,[[777,2,2,73,75],[796,1,1,75,76]]],[25,17,14,76,90,[[821,1,1,76,77],[841,1,1,77,78],[843,1,1,78,79],[844,1,1,79,80],[845,9,7,80,87],[846,3,2,87,89],[847,1,1,89,90]]],[28,4,3,90,93,[[876,3,2,90,92],[877,1,1,92,93]]]],[1153,1176,2190,2328,2336,2366,2402,2484,2550,2665,2690,2705,3654,3698,3723,3752,3755,3757,3965,4052,4203,4259,5194,5376,5389,5391,5452,5852,7251,7258,7277,8334,8335,8721,8732,8996,9084,9408,9646,9689,9927,10236,10486,10793,10824,10857,10996,11089,11110,11144,11282,11360,11368,11463,11542,11652,11662,11802,11856,12218,12585,12588,12712,12726,12796,15519,15570,15575,17236,18759,18828,18831,18849,19796,19797,20294,20927,21523,21566,21591,21610,21611,21614,21615,21616,21618,21626,21634,21635,21679,22300,22304,22328]]],["+",[12,12,[[8,1,1,0,1,[[237,1,1,0,1]]],[10,1,1,1,2,[[291,1,1,1,2]]],[11,1,1,2,3,[[327,1,1,2,3]]],[12,3,3,3,6,[[343,1,1,3,4],[364,1,1,4,5],[365,1,1,5,6]]],[13,2,2,6,8,[[383,1,1,6,7],[395,1,1,7,8]]],[16,1,1,8,9,[[426,1,1,8,9]]],[25,3,3,9,12,[[845,2,2,9,11],[846,1,1,11,12]]]],[7258,8732,9927,10486,11110,11144,11542,11802,12712,21610,21611,21634]]],["Ministers",[1,1,[[22,1,1,0,1,[[739,1,1,0,1]]]],[18849]]],["as",[1,1,[[1,1,1,0,1,[[88,1,1,0,1]]]],[2690]]],["minister",[45,45,[[1,6,6,0,6,[[73,1,1,0,1],[77,2,2,1,3],[78,1,1,3,4],[79,1,1,4,5],[88,1,1,5,6]]],[3,9,9,6,15,[[117,1,1,6,7],[119,2,2,7,9],[120,3,3,9,12],[124,1,1,12,13],[132,1,1,13,14],[134,1,1,14,15]]],[4,5,5,15,20,[[162,1,1,15,16],[169,1,1,16,17],[170,2,2,17,19],[173,1,1,19,20]]],[5,1,1,20,21,[[187,1,1,20,21]]],[8,1,1,21,22,[[237,1,1,21,22]]],[10,1,1,22,23,[[298,1,1,22,23]]],[12,5,5,23,28,[[352,1,1,23,24],[353,2,2,24,26],[360,1,1,26,27],[363,1,1,27,28]]],[13,5,5,28,33,[[371,1,1,28,29],[374,1,1,29,30],[379,1,1,30,31],[389,1,1,31,32],[397,1,1,32,33]]],[15,2,2,33,35,[[422,2,2,33,35]]],[22,2,2,35,37,[[738,2,2,35,37]]],[25,8,8,37,45,[[841,1,1,37,38],[843,1,1,38,39],[844,1,1,39,40],[845,5,5,40,45]]]],[2190,2328,2336,2366,2402,2690,3654,3698,3723,3752,3755,3757,3965,4203,4259,5194,5376,5389,5391,5452,5852,7251,8996,10793,10824,10857,10996,11089,11282,11360,11463,11662,11856,12585,12588,18828,18831,21523,21566,21591,21610,21614,21615,21616,21626]]],["ministered",[10,10,[[8,1,1,0,1,[[238,1,1,0,1]]],[9,1,1,1,2,[[279,1,1,1,2]]],[10,2,2,2,4,[[291,1,1,2,3],[309,1,1,3,4]]],[11,1,1,4,5,[[337,1,1,4,5]]],[13,1,1,5,6,[[388,1,1,5,6]]],[16,2,2,6,8,[[427,1,1,6,7],[431,1,1,7,8]]],[23,1,1,8,9,[[796,1,1,8,9]]],[25,1,1,9,10,[[845,1,1,9,10]]]],[7277,8334,8721,9408,10236,11652,12726,12796,20294,21618]]],["ministers",[14,13,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]],[14,1,1,2,3,[[410,1,1,2,3]]],[18,2,2,3,5,[[580,1,1,3,4],[581,1,1,4,5]]],[23,1,1,5,6,[[777,1,1,5,6]]],[25,4,4,6,10,[[845,1,1,6,7],[846,2,2,7,9],[847,1,1,9,10]]],[28,4,3,10,13,[[876,3,2,10,12],[877,1,1,12,13]]]],[9084,11368,12218,15570,15575,19796,21610,21634,21635,21679,22300,22304,22328]]],["servant",[4,4,[[1,1,1,0,1,[[82,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[9,1,1,2,3,[[279,1,1,2,3]]],[11,1,1,3,4,[[318,1,1,3,4]]]],[2484,4052,8335,9689]]],["servants",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17236]]],["serve",[4,4,[[13,1,1,0,1,[[395,1,1,0,1]]],[18,1,1,1,2,[[578,1,1,1,2]]],[22,1,1,2,3,[[734,1,1,2,3]]],[25,1,1,3,4,[[821,1,1,3,4]]]],[11802,15519,18759,20927]]],["served",[2,2,[[0,2,2,0,2,[[38,1,1,0,1],[39,1,1,1,2]]]],[1153,1176]]],["service",[3,3,[[1,3,3,0,3,[[84,1,1,0,1],[88,2,2,1,3]]]],[2550,2665,2705]]],["servitor",[1,1,[[11,1,1,0,1,[[316,1,1,0,1]]]],[9646]]],["unto",[1,1,[[23,1,1,0,1,[[777,1,1,0,1]]]],[19797]]]]},{"k":"H8335","v":[["*",[2,2,[[3,1,1,0,1,[[120,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]]],[3755,11691]]],["minister",[1,1,[[13,1,1,0,1,[[390,1,1,0,1]]]],[11691]]],["ministry",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3755]]]]},{"k":"H8336","v":[["*",[41,37,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,33,30,1,31,[[74,1,1,1,2],[75,3,3,2,5],[76,3,3,5,8],[77,6,5,8,13],[84,4,4,13,17],[85,3,3,17,20],[87,4,4,20,24],[88,9,7,24,31]]],[16,2,1,31,32,[[426,2,1,31,32]]],[19,1,1,32,33,[[658,1,1,32,33]]],[21,1,1,33,34,[[675,1,1,33,34]]],[25,3,3,34,37,[[817,2,2,34,36],[828,1,1,36,37]]]],[1237,2199,2236,2266,2271,2281,2288,2290,2298,2299,2301,2308,2332,2537,2554,2556,2566,2574,2601,2603,2642,2649,2651,2656,2666,2667,2669,2672,2691,2692,2693,12708,17306,17613,20772,20775,21128]]],["+",[20,20,[[1,20,20,0,20,[[75,3,3,0,3],[76,3,3,3,6],[77,3,3,6,9],[85,3,3,9,12],[87,3,3,12,15],[88,5,5,15,20]]]],[2236,2266,2271,2281,2288,2290,2299,2301,2308,2574,2601,2603,2642,2649,2651,2666,2669,2672,2692,2693]]],["blue",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12708]]],["linen",[17,15,[[0,1,1,0,1,[[40,1,1,0,1]]],[1,13,11,1,12,[[74,1,1,1,2],[77,3,2,2,4],[84,4,4,4,8],[87,1,1,8,9],[88,4,3,9,12]]],[25,3,3,12,15,[[817,2,2,12,14],[828,1,1,14,15]]]],[1237,2199,2298,2332,2537,2554,2556,2566,2656,2667,2691,2692,20772,20775,21128]]],["marble",[2,2,[[16,1,1,0,1,[[426,1,1,0,1]]],[21,1,1,1,2,[[675,1,1,1,2]]]],[12708,17613]]],["silk",[1,1,[[19,1,1,0,1,[[658,1,1,0,1]]]],[17306]]]]},{"k":"H8337","v":[["*",[215,202,[[0,8,8,0,8,[[6,2,2,0,2],[7,1,1,2,3],[15,1,1,3,4],[29,1,1,4,5],[30,1,1,5,6],[45,2,2,6,8]]],[1,28,27,8,35,[[61,1,1,8,9],[63,1,1,9,10],[65,1,1,10,11],[69,2,2,11,13],[70,1,1,13,14],[72,2,2,14,16],[73,1,1,16,17],[74,3,3,17,20],[75,3,3,20,23],[77,2,1,23,24],[80,2,2,24,26],[83,1,1,26,27],[84,1,1,27,28],[85,3,3,28,31],[86,3,3,31,34],[87,1,1,34,35]]],[2,5,4,35,39,[[101,1,1,35,36],[112,1,1,36,37],[113,1,1,37,38],[114,2,1,38,39]]],[3,28,28,39,67,[[117,4,4,39,43],[118,6,6,43,49],[119,2,2,49,51],[120,1,1,51,52],[123,1,1,52,53],[127,1,1,53,54],[142,3,3,54,57],[147,7,7,57,64],[151,3,3,64,67]]],[4,4,4,67,71,[[157,1,1,67,68],[167,2,2,68,70],[168,1,1,70,71]]],[5,7,7,71,78,[[192,2,2,71,73],[193,1,1,73,74],[201,3,3,74,77],[205,1,1,77,78]]],[6,7,7,78,85,[[213,1,1,78,79],[222,1,1,79,80],[228,3,3,80,83],[230,2,2,83,85]]],[7,2,2,85,87,[[234,2,2,85,87]]],[8,8,8,87,95,[[248,2,2,87,89],[249,1,1,89,90],[252,2,2,90,92],[258,1,1,92,93],[262,1,1,93,94],[265,1,1,94,95]]],[9,6,5,95,100,[[268,1,1,95,96],[271,1,1,96,97],[272,1,1,97,98],[281,1,1,98,99],[287,2,1,99,100]]],[10,10,9,100,109,[[296,1,1,100,101],[300,6,5,101,106],[301,1,1,106,107],[306,2,2,107,109]]],[11,9,9,109,118,[[317,1,1,109,110],[323,1,1,110,111],[325,2,2,111,113],[326,1,1,113,114],[327,2,2,114,116],[328,1,1,116,117],[330,1,1,117,118]]],[12,24,21,118,139,[[340,3,2,118,120],[341,2,1,120,121],[344,3,3,121,124],[345,1,1,124,125],[346,3,3,125,128],[349,3,3,128,131],[357,2,1,131,132],[358,1,1,132,133],[360,1,1,133,134],[361,2,2,134,136],[362,2,2,136,138],[363,1,1,138,139]]],[13,22,21,139,160,[[367,1,1,139,140],[368,3,3,140,143],[369,1,1,143,144],[375,5,4,144,148],[379,1,1,148,149],[382,1,1,149,150],[388,1,1,150,151],[392,3,3,151,154],[393,2,2,154,156],[394,1,1,156,157],[395,2,2,157,159],[401,1,1,159,160]]],[14,15,14,160,174,[[404,13,12,160,172],[410,2,2,172,174]]],[15,10,10,174,184,[[417,1,1,174,175],[419,9,9,175,184]]],[16,2,1,184,185,[[427,2,1,184,185]]],[17,2,2,185,187,[[440,1,1,185,186],[477,1,1,186,187]]],[19,1,1,187,188,[[633,1,1,187,188]]],[22,2,1,188,189,[[684,2,1,188,189]]],[23,3,3,189,192,[[778,1,1,189,190],[796,2,2,190,192]]],[25,12,10,192,202,[[810,1,1,192,193],[841,3,2,193,195],[842,5,4,195,199],[847,3,3,199,202]]]],[165,170,196,397,850,914,1404,1412,1853,1896,1973,2060,2062,2079,2154,2156,2193,2227,2228,2230,2244,2257,2260,2303,2435,2437,2517,2533,2582,2593,2596,2622,2623,2625,2659,3049,3405,3452,3472,3625,3629,3631,3650,3662,3667,3669,3673,3689,3690,3720,3726,3783,3853,4045,4511,4530,4540,4696,4701,4702,4704,4708,4710,4716,4851,4858,4860,5066,5331,5337,5350,5952,5963,5981,6243,6261,6264,6343,6599,6876,7004,7009,7010,7069,7101,7187,7189,7490,7500,7510,7622,7625,7823,7932,7987,8060,8137,8170,8407,8600,8902,9093,9095,9098,9099,9108,9124,9291,9306,9652,9832,9881,9890,9917,9933,9958,9965,10034,10365,10383,10412,10537,10539,10575,10613,10621,10624,10659,10744,10746,10755,10932,10959,10987,11019,11029,11049,11069,11094,11211,11213,11228,11229,11237,11377,11379,11382,11383,11474,11510,11656,11733,11735,11744,11756,11763,11765,11808,11824,11974,12037,12038,12040,12041,12049,12053,12057,12062,12087,12093,12094,12096,12227,12236,12400,12430,12435,12436,12438,12440,12450,12482,12488,12489,12736,12970,13934,16556,17771,19815,20299,20306,20624,21482,21489,21527,21529,21531,21534,21656,21659,21661]]],["+",[27,26,[[0,1,1,0,1,[[45,1,1,0,1]]],[1,2,2,1,3,[[75,1,1,1,2],[85,1,1,2,3]]],[3,4,4,3,7,[[142,1,1,3,4],[147,3,3,4,7]]],[5,2,2,7,9,[[201,1,1,7,8],[205,1,1,8,9]]],[11,4,4,9,13,[[325,1,1,9,10],[326,1,1,10,11],[327,1,1,11,12],[328,1,1,12,13]]],[12,4,4,13,17,[[341,1,1,13,14],[361,2,2,14,16],[362,1,1,16,17]]],[13,7,7,17,24,[[379,1,1,17,18],[392,2,2,18,20],[393,2,2,20,22],[394,1,1,22,23],[395,1,1,23,24]]],[14,1,1,24,25,[[404,1,1,24,25]]],[22,2,1,25,26,[[684,2,1,25,26]]]],[1404,2260,2596,4511,4704,4710,4716,6243,6343,9881,9917,9958,9965,10412,11019,11029,11069,11474,11733,11735,11756,11763,11765,11808,12096,17771]]],["Six",[11,11,[[1,7,7,0,7,[[65,1,1,0,1],[69,1,1,1,2],[72,1,1,2,3],[77,1,1,3,4],[80,1,1,4,5],[83,1,1,5,6],[84,1,1,6,7]]],[2,2,2,7,9,[[112,1,1,7,8],[114,1,1,8,9]]],[4,2,2,9,11,[[157,1,1,9,10],[168,1,1,10,11]]]],[1973,2060,2156,2303,2435,2517,2533,3405,3472,5066,5350]]],["six",[175,166,[[0,7,7,0,7,[[6,2,2,0,2],[7,1,1,2,3],[15,1,1,3,4],[29,1,1,4,5],[30,1,1,5,6],[45,1,1,6,7]]],[1,19,19,7,26,[[61,1,1,7,8],[63,1,1,8,9],[69,1,1,9,10],[70,1,1,10,11],[72,1,1,11,12],[73,1,1,12,13],[74,3,3,13,16],[75,2,2,16,18],[77,1,1,18,19],[80,1,1,19,20],[85,2,2,20,22],[86,3,3,22,25],[87,1,1,25,26]]],[2,3,3,26,29,[[101,1,1,26,27],[113,1,1,27,28],[114,1,1,28,29]]],[3,24,24,29,53,[[117,4,4,29,33],[118,6,6,33,39],[119,2,2,39,41],[120,1,1,41,42],[123,1,1,42,43],[127,1,1,43,44],[142,2,2,44,46],[147,4,4,46,50],[151,3,3,50,53]]],[4,2,2,53,55,[[167,2,2,53,55]]],[5,5,5,55,60,[[192,2,2,55,57],[193,1,1,57,58],[201,2,2,58,60]]],[6,7,7,60,67,[[213,1,1,60,61],[222,1,1,61,62],[228,3,3,62,65],[230,2,2,65,67]]],[7,2,2,67,69,[[234,2,2,67,69]]],[8,8,8,69,77,[[248,2,2,69,71],[249,1,1,71,72],[252,2,2,72,74],[258,1,1,74,75],[262,1,1,75,76],[265,1,1,76,77]]],[9,6,5,77,82,[[268,1,1,77,78],[271,1,1,78,79],[272,1,1,79,80],[281,1,1,80,81],[287,2,1,81,82]]],[10,9,8,82,90,[[296,1,1,82,83],[300,6,5,83,88],[301,1,1,88,89],[306,1,1,89,90]]],[11,4,4,90,94,[[317,1,1,90,91],[323,1,1,91,92],[325,1,1,92,93],[327,1,1,93,94]]],[12,20,18,94,112,[[340,3,2,94,96],[341,1,1,96,97],[344,3,3,97,100],[345,1,1,100,101],[346,3,3,101,104],[349,3,3,104,107],[357,2,1,107,108],[358,1,1,108,109],[360,1,1,109,110],[362,1,1,110,111],[363,1,1,111,112]]],[13,15,14,112,126,[[367,1,1,112,113],[368,3,3,113,116],[369,1,1,116,117],[375,5,4,117,121],[382,1,1,121,122],[388,1,1,122,123],[392,1,1,123,124],[395,1,1,124,125],[401,1,1,125,126]]],[14,14,13,126,139,[[404,12,11,126,137],[410,2,2,137,139]]],[15,10,10,139,149,[[417,1,1,139,140],[419,9,9,140,149]]],[16,2,1,149,150,[[427,2,1,149,150]]],[17,2,2,150,152,[[440,1,1,150,151],[477,1,1,151,152]]],[19,1,1,152,153,[[633,1,1,152,153]]],[23,3,3,153,156,[[778,1,1,153,154],[796,2,2,154,156]]],[25,12,10,156,166,[[810,1,1,156,157],[841,3,2,157,159],[842,5,4,159,163],[847,3,3,163,166]]]],[165,170,196,397,850,914,1412,1853,1896,2062,2079,2154,2193,2227,2228,2230,2244,2257,2303,2437,2582,2593,2622,2623,2625,2659,3049,3452,3472,3625,3629,3631,3650,3662,3667,3669,3673,3689,3690,3720,3726,3783,3853,4045,4530,4540,4696,4701,4702,4708,4851,4858,4860,5331,5337,5952,5963,5981,6261,6264,6599,6876,7004,7009,7010,7069,7101,7187,7189,7490,7500,7510,7622,7625,7823,7932,7987,8060,8137,8170,8407,8600,8902,9093,9095,9098,9099,9108,9124,9306,9652,9832,9890,9933,10365,10383,10412,10537,10539,10575,10613,10621,10624,10659,10744,10746,10755,10932,10959,10987,11049,11094,11211,11213,11228,11229,11237,11377,11379,11382,11383,11510,11656,11744,11824,11974,12037,12038,12040,12041,12049,12053,12057,12062,12087,12093,12094,12227,12236,12400,12430,12435,12436,12438,12440,12450,12482,12488,12489,12736,12970,13934,16556,19815,20299,20306,20624,21482,21489,21527,21529,21531,21534,21656,21659,21661]]],["sixth",[2,2,[[10,1,1,0,1,[[306,1,1,0,1]]],[11,1,1,1,2,[[330,1,1,1,2]]]],[9291,10034]]]]},{"k":"H8338","v":[["part",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21450]]]]},{"k":"H8339","v":[["Sheshbazzar",[2,2,[[14,2,2,0,2,[[403,2,2,0,2]]]],[12024,12027]]]]},{"k":"H8340","v":[["Sheshbazzar",[2,2,[[14,2,2,0,2,[[407,2,2,0,2]]]],[12148,12150]]]]},{"k":"H8341","v":[["part",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21643]]]]},{"k":"H8342","v":[["*",[23,22,[[16,2,2,0,2,[[433,2,2,0,2]]],[18,5,5,2,7,[[522,1,1,2,3],[528,2,2,3,5],[582,1,1,5,6],[596,1,1,6,7]]],[22,7,6,7,13,[[690,1,1,7,8],[700,1,1,8,9],[713,2,1,9,10],[729,2,2,10,12],[739,1,1,12,13]]],[23,7,7,13,20,[[751,1,1,13,14],[759,1,1,14,15],[760,1,1,15,16],[769,1,1,16,17],[775,1,1,17,18],[777,2,2,18,20]]],[28,1,1,20,21,[[876,1,1,20,21]]],[37,1,1,21,22,[[918,1,1,21,22]]]],[12833,12834,14604,14699,14703,15649,16009,17903,18065,18330,18676,18684,18846,19153,19331,19345,19544,19704,19784,19786,22303,22995]]],["gladness",[3,3,[[16,1,1,0,1,[[433,1,1,0,1]]],[18,1,1,1,2,[[522,1,1,1,2]]],[22,1,1,2,3,[[729,1,1,2,3]]]],[12834,14604,18684]]],["joy",[16,15,[[16,1,1,0,1,[[433,1,1,0,1]]],[18,3,3,1,4,[[528,2,2,1,3],[582,1,1,3,4]]],[22,6,5,4,9,[[690,1,1,4,5],[700,1,1,5,6],[713,2,1,6,7],[729,1,1,7,8],[739,1,1,8,9]]],[23,4,4,9,13,[[759,1,1,9,10],[775,1,1,10,11],[777,2,2,11,13]]],[28,1,1,13,14,[[876,1,1,13,14]]],[37,1,1,14,15,[[918,1,1,14,15]]]],[12833,14699,14703,15649,17903,18065,18330,18676,18846,19331,19704,19784,19786,22303,22995]]],["mirth",[3,3,[[23,3,3,0,3,[[751,1,1,0,1],[760,1,1,1,2],[769,1,1,2,3]]]],[19153,19345,19544]]],["rejoicing",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[16009]]]]},{"k":"H8343","v":[["Shashai",[1,1,[[14,1,1,0,1,[[412,1,1,0,1]]]],[12292]]]]},{"k":"H8344","v":[["Sheshai",[3,3,[[3,1,1,0,1,[[129,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]],[6,1,1,2,3,[[211,1,1,2,3]]]],[4097,6216,6519]]]]},{"k":"H8345","v":[["*",[28,26,[[0,2,2,0,2,[[0,1,1,0,1],[29,1,1,1,2]]],[1,4,4,2,6,[[65,3,3,2,5],[75,1,1,5,6]]],[2,1,1,6,7,[[114,1,1,6,7]]],[3,2,2,7,9,[[123,1,1,7,8],[145,1,1,8,9]]],[5,1,1,9,10,[[205,1,1,9,10]]],[9,1,1,10,11,[[269,1,1,10,11]]],[12,9,8,11,19,[[339,1,1,11,12],[340,1,1,12,13],[349,1,1,13,14],[361,1,1,14,15],[362,1,1,15,16],[363,2,2,16,18],[364,2,1,18,19]]],[15,1,1,19,20,[[415,1,1,19,20]]],[25,5,4,20,24,[[805,1,1,20,21],[809,2,1,21,22],[846,1,1,22,23],[847,1,1,23,24]]],[36,2,2,24,26,[[909,2,2,24,26]]]],[30,849,1952,1969,1976,2244,3490,3892,4637,6353,8086,10321,10364,10731,11024,11059,11080,11082,11118,12357,20540,20605,21643,21669,22841,22855]]],["+",[1,1,[[1,1,1,0,1,[[75,1,1,0,1]]]],[2244]]],["part",[3,3,[[25,3,3,0,3,[[805,1,1,0,1],[846,1,1,1,2],[847,1,1,2,3]]]],[20540,21643,21669]]],["sixth",[24,22,[[0,2,2,0,2,[[0,1,1,0,1],[29,1,1,1,2]]],[1,3,3,2,5,[[65,3,3,2,5]]],[2,1,1,5,6,[[114,1,1,5,6]]],[3,2,2,6,8,[[123,1,1,6,7],[145,1,1,7,8]]],[5,1,1,8,9,[[205,1,1,8,9]]],[9,1,1,9,10,[[269,1,1,9,10]]],[12,9,8,10,18,[[339,1,1,10,11],[340,1,1,11,12],[349,1,1,12,13],[361,1,1,13,14],[362,1,1,14,15],[363,2,2,15,17],[364,2,1,17,18]]],[15,1,1,18,19,[[415,1,1,18,19]]],[25,2,1,19,20,[[809,2,1,19,20]]],[36,2,2,20,22,[[909,2,2,20,22]]]],[30,849,1952,1969,1976,3490,3892,4637,6353,8086,10321,10364,10731,11024,11059,11080,11082,11118,12357,20605,22841,22855]]]]},{"k":"H8346","v":[["*",[59,56,[[0,8,8,0,8,[[4,6,6,0,6],[24,1,1,6,7],[45,1,1,7,8]]],[2,3,3,8,11,[[101,1,1,8,9],[116,2,2,9,11]]],[3,11,9,11,20,[[117,1,1,11,12],[118,1,1,12,13],[119,1,1,13,14],[123,3,1,14,15],[142,3,3,15,18],[147,2,2,18,20]]],[4,1,1,20,21,[[155,1,1,20,21]]],[5,1,1,21,22,[[199,1,1,21,22]]],[9,1,1,22,23,[[268,1,1,22,23]]],[10,4,4,23,27,[[294,2,2,23,25],[296,1,1,25,26],[300,1,1,26,27]]],[11,1,1,27,28,[[337,1,1,27,28]]],[12,6,6,28,34,[[339,2,2,28,30],[342,1,1,30,31],[346,1,1,31,32],[353,1,1,32,33],[363,1,1,33,34]]],[13,5,4,34,38,[[369,1,1,34,35],[375,1,1,35,36],[377,2,1,36,37],[378,1,1,37,38]]],[14,5,5,38,43,[[404,3,3,38,41],[410,2,2,41,43]]],[15,6,6,43,49,[[419,5,5,43,48],[423,1,1,48,49]]],[21,2,2,49,51,[[673,1,1,49,50],[676,1,1,50,51]]],[22,1,1,51,52,[[685,1,1,51,52]]],[23,1,1,52,53,[[796,1,1,52,53]]],[25,1,1,53,54,[[841,1,1,53,54]]],[26,2,2,54,56,[[858,2,2,54,56]]]],[120,123,125,126,128,132,684,1412,3049,3573,3577,3643,3684,3742,3938,4514,4516,4532,4698,4703,4979,6184,8080,8857,8866,8898,9093,10241,10327,10329,10446,10628,10858,11085,11232,11377,11435,11440,12036,12040,12091,12211,12214,12434,12438,12439,12486,12492,12594,17578,17622,17790,20301,21491,22013,22014]]],["+",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3577]]],["sixty",[11,9,[[0,6,6,0,6,[[4,6,6,0,6]]],[2,1,1,6,7,[[116,1,1,6,7]]],[3,3,1,7,8,[[123,3,1,7,8]]],[14,1,1,8,9,[[404,1,1,8,9]]]],[120,123,125,126,128,132,3573,3938,12040]]],["threescore",[47,46,[[0,2,2,0,2,[[24,1,1,0,1],[45,1,1,1,2]]],[2,1,1,2,3,[[101,1,1,2,3]]],[3,8,8,3,11,[[117,1,1,3,4],[118,1,1,4,5],[119,1,1,5,6],[142,3,3,6,9],[147,2,2,9,11]]],[4,1,1,11,12,[[155,1,1,11,12]]],[5,1,1,12,13,[[199,1,1,12,13]]],[9,1,1,13,14,[[268,1,1,13,14]]],[10,4,4,14,18,[[294,2,2,14,16],[296,1,1,16,17],[300,1,1,17,18]]],[11,1,1,18,19,[[337,1,1,18,19]]],[12,6,6,19,25,[[339,2,2,19,21],[342,1,1,21,22],[346,1,1,22,23],[353,1,1,23,24],[363,1,1,24,25]]],[13,5,4,25,29,[[369,1,1,25,26],[375,1,1,26,27],[377,2,1,27,28],[378,1,1,28,29]]],[14,4,4,29,33,[[404,2,2,29,31],[410,2,2,31,33]]],[15,6,6,33,39,[[419,5,5,33,38],[423,1,1,38,39]]],[21,2,2,39,41,[[673,1,1,39,40],[676,1,1,40,41]]],[22,1,1,41,42,[[685,1,1,41,42]]],[23,1,1,42,43,[[796,1,1,42,43]]],[25,1,1,43,44,[[841,1,1,43,44]]],[26,2,2,44,46,[[858,2,2,44,46]]]],[684,1412,3049,3643,3684,3742,4514,4516,4532,4698,4703,4979,6184,8080,8857,8866,8898,9093,10241,10327,10329,10446,10628,10858,11085,11232,11377,11435,11440,12036,12091,12211,12214,12434,12438,12439,12486,12492,12594,17578,17622,17790,20301,21491,22013,22014]]]]},{"k":"H8347","v":[["Sheshach",[2,2,[[23,2,2,0,2,[[769,1,1,0,1],[795,1,1,1,2]]]],[19560,20253]]]]},{"k":"H8348","v":[["Sheshan",[5,3,[[12,5,3,0,3,[[339,5,3,0,3]]]],[10337,10340,10341]]]]},{"k":"H8349","v":[["Shashak",[2,2,[[12,2,2,0,2,[[345,2,2,0,2]]]],[10589,10600]]]]},{"k":"H8350","v":[["vermilion",[2,2,[[23,1,1,0,1,[[766,1,1,0,1]]],[25,1,1,1,2,[[824,1,1,1,2]]]],[19468,21021]]]]},{"k":"H8351","v":[]},{"k":"H8352","v":[["*",[9,9,[[0,7,7,0,7,[[3,2,2,0,2],[4,5,5,2,7]]],[3,1,1,7,8,[[140,1,1,7,8]]],[12,1,1,8,9,[[338,1,1,8,9]]]],[104,105,108,109,111,112,113,4463,10253]]],["Seth",[7,7,[[0,7,7,0,7,[[3,2,2,0,2],[4,5,5,2,7]]]],[104,105,108,109,111,112,113]]],["Sheth",[2,2,[[3,1,1,0,1,[[140,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[4463,10253]]]]},{"k":"H8353","v":[["*",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[852,1,1,1,2]]]],[12166,21808]]],["six",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21808]]],["sixth",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12166]]]]},{"k":"H8354","v":[["*",[218,193,[[0,18,14,0,14,[[8,1,1,0,1],[23,10,7,1,8],[24,1,1,8,9],[25,1,1,9,10],[26,1,1,10,11],[29,2,1,11,12],[42,1,1,12,13],[43,1,1,13,14]]],[1,12,11,14,25,[[56,4,3,14,17],[64,2,2,17,19],[66,3,3,19,22],[73,1,1,22,23],[81,1,1,23,24],[83,1,1,24,25]]],[2,2,2,25,27,[[99,1,1,25,26],[100,1,1,26,27]]],[3,10,9,27,36,[[122,3,2,27,29],[136,4,4,29,33],[137,1,1,33,34],[139,1,1,34,35],[149,1,1,35,36]]],[4,9,9,36,45,[[154,2,2,36,38],[161,2,2,38,40],[163,1,1,40,41],[180,1,1,41,42],[181,1,1,42,43],[184,2,2,43,45]]],[6,10,10,45,55,[[217,2,2,45,47],[219,1,1,47,48],[223,3,3,48,51],[225,1,1,51,52],[229,3,3,52,55]]],[7,3,3,55,58,[[233,1,1,55,56],[234,2,2,56,58]]],[8,4,4,58,62,[[236,2,2,58,60],[265,2,2,60,62]]],[9,7,7,62,69,[[277,2,2,62,64],[278,1,1,64,65],[282,1,1,65,66],[285,1,1,66,67],[289,2,2,67,69]]],[10,21,20,69,89,[[291,1,1,69,70],[294,1,1,70,71],[303,9,8,71,79],[306,1,1,79,80],[307,3,3,80,83],[308,2,2,83,85],[309,2,2,85,87],[310,2,2,87,89]]],[11,8,8,89,97,[[315,1,1,89,90],[318,2,2,90,92],[319,1,1,92,93],[321,1,1,93,94],[330,2,2,94,96],[331,1,1,96,97]]],[12,5,4,97,101,[[348,3,2,97,99],[349,1,1,99,100],[366,1,1,100,101]]],[14,1,1,101,102,[[412,1,1,101,102]]],[15,2,2,102,104,[[420,2,2,102,104]]],[16,3,3,104,107,[[428,1,1,104,105],[429,1,1,105,106],[432,1,1,106,107]]],[17,7,7,107,114,[[436,3,3,107,110],[441,1,1,110,111],[450,1,1,111,112],[456,1,1,112,113],[469,1,1,113,114]]],[18,5,5,114,119,[[527,1,1,114,115],[546,1,1,115,116],[552,1,1,116,117],[555,1,1,117,118],[587,1,1,118,119]]],[19,8,8,119,127,[[631,1,1,119,120],[632,1,1,120,121],[636,1,1,121,122],[650,1,1,122,123],[653,1,1,123,124],[658,3,3,124,127]]],[20,5,5,127,132,[[660,1,1,127,128],[661,1,1,128,129],[663,1,1,129,130],[666,1,1,130,131],[667,1,1,131,132]]],[21,2,1,132,133,[[675,2,1,132,133]]],[22,17,14,133,147,[[683,1,1,133,134],[699,1,1,134,135],[700,2,1,135,136],[702,2,1,136,137],[707,1,1,137,138],[714,2,2,138,140],[715,1,1,140,141],[722,1,1,141,142],[729,3,2,142,144],[740,2,2,144,146],[743,1,1,146,147]]],[23,22,13,147,160,[[746,2,1,147,148],[760,1,1,148,149],[766,1,1,149,150],[769,6,4,150,154],[779,6,4,154,158],[793,5,1,158,159],[795,1,1,159,160]]],[24,1,1,160,161,[[801,1,1,160,161]]],[25,16,15,161,176,[[805,3,2,161,163],[813,2,2,163,165],[824,2,2,165,167],[826,1,1,167,168],[832,2,2,168,170],[835,2,2,170,172],[840,3,3,172,175],[845,1,1,175,176]]],[26,1,1,176,177,[[850,1,1,176,177]]],[28,2,2,177,179,[[876,1,1,177,178],[878,1,1,178,179]]],[29,6,6,179,185,[[880,1,1,179,180],[882,2,2,180,182],[883,1,1,182,183],[884,1,1,183,184],[887,1,1,184,185]]],[30,3,1,185,186,[[888,3,1,185,186]]],[31,1,1,186,187,[[891,1,1,186,187]]],[32,1,1,187,188,[[898,1,1,187,188]]],[34,1,1,188,189,[[904,1,1,188,189]]],[35,1,1,189,190,[[906,1,1,189,190]]],[36,1,1,190,191,[[909,1,1,190,191]]],[37,3,2,191,193,[[917,2,1,191,192],[919,1,1,192,193]]]],[226,605,609,610,613,635,637,645,692,722,752,868,1324,1329,1703,1706,1709,1943,1944,1984,1985,1989,2188,2444,2524,2986,3031,3826,3843,4316,4322,4328,4330,4362,4440,4774,4944,4966,5166,5175,5219,5650,5685,5772,5796,6699,6700,6781,6888,6891,6898,6948,7028,7030,7045,7158,7175,7179,7221,7227,7990,7994,8270,8272,8289,8428,8546,8669,8670,8742,8864,9192,9193,9200,9201,9202,9203,9206,9207,9292,9321,9323,9327,9382,9383,9393,9395,9420,9424,9593,9696,9697,9715,9790,10051,10055,10085,10691,10692,10759,11186,12258,12503,12505,12762,12778,12808,12873,12882,12887,12982,13219,13375,13690,14681,14947,15079,15157,15793,16507,16532,16643,17051,17147,17288,17289,17291,17357,17372,17415,17473,17482,17599,17761,18040,18065,18104,18201,18342,18346,18377,18545,18690,18695,18862,18863,18910,18983,19344,19469,19550,19560,19561,19562,19828,19829,19831,19837,20139,20219,20446,20540,20545,20698,20699,21039,21041,21087,21244,21246,21331,21332,21465,21466,21467,21620,21749,22296,22346,22387,22411,22418,22434,22456,22509,22526,22565,22663,22764,22800,22846,22968,23014]]],["+",[13,9,[[11,1,1,0,1,[[330,1,1,0,1]]],[18,1,1,1,2,[[546,1,1,1,2]]],[22,2,2,2,4,[[714,1,1,2,3],[729,1,1,3,4]]],[23,6,2,4,6,[[769,2,1,4,5],[793,4,1,5,6]]],[29,2,2,6,8,[[883,1,1,6,7],[887,1,1,7,8]]],[35,1,1,8,9,[[906,1,1,8,9]]]],[10051,14947,18342,18690,19562,20139,22434,22509,22800]]],["Drink",[6,6,[[0,3,3,0,3,[[23,3,3,0,3]]],[19,1,1,3,4,[[632,1,1,3,4]]],[23,2,2,4,6,[[769,1,1,4,5],[779,1,1,5,6]]]],[605,609,637,16532,19561,19828]]],["banquet",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12808]]],["drank",[9,9,[[0,4,4,0,4,[[8,1,1,0,1],[23,1,1,1,2],[26,1,1,2,3],[42,1,1,3,4]]],[3,1,1,4,5,[[136,1,1,4,5]]],[4,1,1,5,6,[[184,1,1,5,6]]],[9,1,1,6,7,[[278,1,1,6,7]]],[10,2,2,7,9,[[303,1,1,7,8],[307,1,1,8,9]]]],[226,637,752,1324,4322,5796,8289,9203,9323]]],["drink",[150,139,[[0,8,7,0,7,[[23,4,4,0,4],[24,1,1,4,5],[25,1,1,5,6],[29,2,1,6,7]]],[1,12,11,7,18,[[56,4,3,7,10],[64,2,2,10,12],[66,3,3,12,15],[73,1,1,15,16],[81,1,1,16,17],[83,1,1,17,18]]],[2,1,1,18,19,[[99,1,1,18,19]]],[3,9,8,19,27,[[122,3,2,19,21],[136,3,3,21,24],[137,1,1,24,25],[139,1,1,25,26],[149,1,1,26,27]]],[4,6,6,27,33,[[154,2,2,27,29],[161,2,2,29,31],[180,1,1,31,32],[184,1,1,32,33]]],[6,9,9,33,42,[[217,2,2,33,35],[219,1,1,35,36],[223,3,3,36,39],[229,3,3,39,42]]],[7,1,1,42,43,[[233,1,1,42,43]]],[9,6,6,43,49,[[277,2,2,43,45],[282,1,1,45,46],[285,1,1,46,47],[289,2,2,47,49]]],[10,13,13,49,62,[[291,1,1,49,50],[303,6,6,50,56],[307,2,2,56,58],[308,2,2,58,60],[309,2,2,60,62]]],[11,5,5,62,67,[[315,1,1,62,63],[318,1,1,63,64],[319,1,1,64,65],[321,1,1,65,66],[330,1,1,66,67]]],[12,4,3,67,70,[[348,3,2,67,69],[366,1,1,69,70]]],[14,1,1,70,71,[[412,1,1,70,71]]],[15,2,2,71,73,[[420,2,2,71,73]]],[16,2,2,73,75,[[428,1,1,73,74],[429,1,1,74,75]]],[17,2,2,75,77,[[436,1,1,75,76],[456,1,1,76,77]]],[18,4,4,77,81,[[527,1,1,77,78],[552,1,1,78,79],[555,1,1,79,80],[587,1,1,80,81]]],[19,6,6,81,87,[[631,1,1,81,82],[636,1,1,82,83],[650,1,1,83,84],[658,3,3,84,87]]],[20,5,5,87,92,[[660,1,1,87,88],[661,1,1,88,89],[663,1,1,89,90],[666,1,1,90,91],[667,1,1,91,92]]],[21,1,1,92,93,[[675,1,1,92,93]]],[22,10,9,93,102,[[683,1,1,93,94],[699,1,1,94,95],[700,1,1,95,96],[702,2,1,96,97],[714,1,1,97,98],[729,1,1,98,99],[740,2,2,99,101],[743,1,1,101,102]]],[23,13,10,102,112,[[746,2,1,102,103],[760,1,1,103,104],[766,1,1,104,105],[769,3,3,105,108],[779,5,3,108,111],[793,1,1,111,112]]],[25,15,14,112,126,[[805,3,2,112,114],[813,2,2,114,116],[824,2,2,116,118],[826,1,1,118,119],[832,2,2,119,121],[835,1,1,121,122],[840,3,3,122,125],[845,1,1,125,126]]],[26,1,1,126,127,[[850,1,1,126,127]]],[28,1,1,127,128,[[878,1,1,127,128]]],[29,4,4,128,132,[[880,1,1,128,129],[882,2,2,129,131],[884,1,1,131,132]]],[30,2,1,132,133,[[888,2,1,132,133]]],[31,1,1,133,134,[[891,1,1,133,134]]],[32,1,1,134,135,[[898,1,1,134,135]]],[34,1,1,135,136,[[904,1,1,135,136]]],[36,1,1,136,137,[[909,1,1,136,137]]],[37,3,2,137,139,[[917,2,1,137,138],[919,1,1,138,139]]]],[605,635,637,645,692,722,868,1703,1706,1709,1943,1944,1984,1985,1989,2188,2444,2524,2986,3826,3843,4316,4328,4330,4362,4440,4774,4944,4966,5166,5175,5650,5772,6699,6700,6781,6888,6891,6898,7028,7030,7045,7158,8270,8272,8428,8546,8669,8670,8742,9192,9193,9200,9201,9202,9206,9321,9327,9382,9383,9393,9395,9593,9696,9715,9790,10055,10691,10692,11186,12258,12503,12505,12762,12778,12873,13375,14681,15079,15157,15793,16507,16643,17051,17288,17289,17291,17357,17372,17415,17473,17482,17599,17761,18040,18065,18104,18346,18695,18862,18863,18910,18983,19344,19469,19550,19560,19562,19829,19831,19837,20139,20540,20545,20698,20699,21039,21041,21087,21244,21246,21332,21465,21466,21467,21620,21749,22346,22387,22411,22418,22456,22526,22565,22663,22764,22846,22968,23014]]],["drinkers",[1,1,[[28,1,1,0,1,[[876,1,1,0,1]]]],[22296]]],["drinketh",[6,6,[[0,1,1,0,1,[[43,1,1,0,1]]],[4,1,1,1,2,[[163,1,1,1,2]]],[17,1,1,2,3,[[450,1,1,2,3]]],[19,1,1,3,4,[[653,1,1,3,4]]],[22,2,2,4,6,[[707,1,1,4,5],[722,1,1,5,6]]]],[1329,5219,13219,17147,18201,18545]]],["drinking",[12,12,[[0,2,2,0,2,[[23,2,2,0,2]]],[7,1,1,2,3,[[234,1,1,2,3]]],[8,1,1,3,4,[[265,1,1,3,4]]],[10,4,4,4,8,[[294,1,1,4,5],[306,1,1,5,6],[310,2,2,6,8]]],[12,1,1,8,9,[[349,1,1,8,9]]],[17,2,2,9,11,[[436,2,2,9,11]]],[22,1,1,11,12,[[700,1,1,11,12]]]],[610,613,7175,7994,8864,9292,9420,9424,10759,12882,12887,18065]]],["drunk",[16,16,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[181,1,1,1,2]]],[6,1,1,2,3,[[225,1,1,2,3]]],[7,1,1,3,4,[[234,1,1,3,4]]],[8,3,3,4,7,[[236,2,2,4,6],[265,1,1,6,7]]],[10,2,2,7,9,[[303,2,2,7,9]]],[11,2,2,9,11,[[318,1,1,9,10],[331,1,1,10,11]]],[21,1,1,11,12,[[675,1,1,11,12]]],[22,2,2,12,14,[[715,1,1,12,13],[729,1,1,13,14]]],[25,1,1,14,15,[[835,1,1,14,15]]],[30,1,1,15,16,[[888,1,1,15,16]]]],[3031,5685,6948,7179,7221,7227,7990,9206,9207,9697,10085,17599,18377,18690,21331,22526]]],["drunken",[2,2,[[23,1,1,0,1,[[795,1,1,0,1]]],[24,1,1,1,2,[[801,1,1,1,2]]]],[20219,20446]]],["up",[2,2,[[17,2,2,0,2,[[441,1,1,0,1],[469,1,1,1,2]]]],[12982,13690]]]]},{"k":"H8355","v":[["*",[5,5,[[26,5,5,0,5,[[854,5,5,0,5]]]],[21875,21876,21877,21878,21897]]],["drank",[3,3,[[26,3,3,0,3,[[854,3,3,0,3]]]],[21875,21877,21878]]],["drink",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21876]]],["drunk",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21897]]]]},{"k":"H8356","v":[["*",[2,2,[[18,1,1,0,1,[[488,1,1,0,1]]],[22,1,1,1,2,[[697,1,1,1,2]]]],[14062,18014]]],["foundations",[1,1,[[18,1,1,0,1,[[488,1,1,0,1]]]],[14062]]],["purposes",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18014]]]]},{"k":"H8357","v":[["buttocks",[2,2,[[9,1,1,0,1,[[276,1,1,0,1]]],[22,1,1,1,2,[[698,1,1,1,2]]]],[8244,18033]]]]},{"k":"H8358","v":[["drunkenness",[1,1,[[20,1,1,0,1,[[668,1,1,0,1]]]],[17510]]]]},{"k":"H8359","v":[["warp",[9,9,[[2,9,9,0,9,[[102,9,9,0,9]]]],[3100,3101,3103,3104,3105,3108,3109,3110,3111]]]]},{"k":"H8360","v":[["drinking",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12710]]]]},{"k":"H8361","v":[["threescore",[4,3,[[14,2,1,0,1,[[408,2,1,0,1]]],[26,2,2,1,3,[[852,1,1,1,2],[854,1,1,2,3]]]],[12154,21808,21905]]]]},{"k":"H8362","v":[["*",[10,10,[[18,2,2,0,2,[[478,1,1,0,1],[569,1,1,1,2]]],[23,1,1,2,3,[[761,1,1,2,3]]],[25,6,6,3,9,[[818,4,4,3,7],[820,2,2,7,9]]],[27,1,1,9,10,[[870,1,1,9,10]]]],[13942,15424,19365,20833,20835,20847,20848,20891,20894,22221]]],["plant",[2,2,[[25,2,2,0,2,[[818,2,2,0,2]]]],[20847,20848]]],["planted",[8,8,[[18,2,2,0,2,[[478,1,1,0,1],[569,1,1,1,2]]],[23,1,1,2,3,[[761,1,1,2,3]]],[25,4,4,3,7,[[818,2,2,3,5],[820,2,2,5,7]]],[27,1,1,7,8,[[870,1,1,7,8]]]],[13942,15424,19365,20833,20835,20891,20894,22221]]]]},{"k":"H8363","v":[["plants",[1,1,[[18,1,1,0,1,[[605,1,1,0,1]]]],[16129]]]]},{"k":"H8364","v":[["Shuthalhites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4524]]]]},{"k":"H8365","v":[["open",[2,2,[[3,2,2,0,2,[[140,2,2,0,2]]]],[4449,4461]]]]},{"k":"H8366","v":[["pisseth",[6,6,[[8,2,2,0,2,[[260,2,2,0,2]]],[10,3,3,2,5,[[304,1,1,2,3],[306,1,1,3,4],[311,1,1,4,5]]],[11,1,1,5,6,[[321,1,1,5,6]]]],[7883,7895,9228,9294,9472,9764]]]]},{"k":"H8367","v":[["*",[4,4,[[18,1,1,0,1,[[584,1,1,0,1]]],[19,1,1,1,2,[[653,1,1,1,2]]],[31,2,2,2,4,[[889,2,2,2,4]]]],[15729,17161,22542,22543]]],["calm",[2,2,[[31,2,2,0,2,[[889,2,2,0,2]]]],[22542,22543]]],["ceaseth",[1,1,[[19,1,1,0,1,[[653,1,1,0,1]]]],[17161]]],["quiet",[1,1,[[18,1,1,0,1,[[584,1,1,0,1]]]],[15729]]]]},{"k":"H8368","v":[["parts",[1,1,[[8,1,1,0,1,[[240,1,1,0,1]]]],[7328]]]]},{"k":"H8369","v":[["Shethar",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12716]]]]},{"k":"H8370","v":[["Shetharboznai",[4,4,[[14,4,4,0,4,[[407,2,2,0,2],[408,2,2,2,4]]]],[12137,12140,12157,12164]]]]},{"k":"H8371","v":[["*",[2,2,[[18,2,2,0,2,[[526,1,1,0,1],[550,1,1,1,2]]]],[14662,15029]]],["laid",[1,1,[[18,1,1,0,1,[[526,1,1,0,1]]]],[14662]]],["set",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15029]]]]},{"k":"H8372","v":[["*",[13,11,[[10,1,1,0,1,[[304,1,1,0,1]]],[13,1,1,1,2,[[378,1,1,1,2]]],[25,11,9,2,11,[[841,11,9,2,11]]]],[9246,11448,21484,21487,21489,21490,21493,21498,21506,21510,21513]]],["chamber",[4,4,[[10,1,1,0,1,[[304,1,1,0,1]]],[13,1,1,1,2,[[378,1,1,1,2]]],[25,2,2,2,4,[[841,2,2,2,4]]]],[9246,11448,21484,21490]]],["chambers",[9,8,[[25,9,8,0,8,[[841,9,8,0,8]]]],[21484,21487,21489,21493,21498,21506,21510,21513]]]]},{"k":"H8373","v":[["longed",[2,2,[[18,2,2,0,2,[[596,2,2,0,2]]]],[15938,16072]]]]},{"k":"H8374","v":[["+",[1,1,[[29,1,1,0,1,[[884,1,1,0,1]]]],[22458]]]]},{"k":"H8375","v":[["*",[2,2,[[8,1,1,0,1,[[239,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]]],[7312,15918]]],["longing",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15918]]],["ninety",[1,1,[[8,1,1,0,1,[[239,1,1,0,1]]]],[7312]]]]},{"k":"H8376","v":[["out",[2,2,[[3,2,2,0,2,[[150,2,2,0,2]]]],[4823,4824]]]]},{"k":"H8377","v":[["*",[2,2,[[4,1,1,0,1,[[166,1,1,0,1]]],[22,1,1,1,2,[[729,1,1,1,2]]]],[5295,18693]]],["bull",[1,1,[[22,1,1,0,1,[[729,1,1,0,1]]]],[18693]]],["ox",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5295]]]]},{"k":"H8378","v":[["*",[20,20,[[0,1,1,0,1,[[2,1,1,0,1]]],[3,1,1,1,2,[[127,1,1,1,2]]],[17,1,1,2,3,[[468,1,1,2,3]]],[18,8,8,3,11,[[487,2,2,3,5],[498,1,1,5,6],[515,1,1,6,7],[555,2,2,7,9],[583,1,1,9,10],[589,1,1,10,11]]],[19,8,8,11,19,[[637,1,1,11,12],[638,1,1,12,13],[640,2,2,13,15],[645,1,1,15,16],[646,1,1,16,17],[648,2,2,17,19]]],[22,1,1,19,20,[[704,1,1,19,20]]]],[61,4028,13670,14044,14058,14193,14499,15142,15143,15665,15813,16680,16711,16759,16766,16902,16947,17009,17010,18138]]],["+",[3,3,[[3,1,1,0,1,[[127,1,1,0,1]]],[18,2,2,1,3,[[555,1,1,1,2],[583,1,1,2,3]]]],[4028,15143,15665]]],["dainty",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13670]]],["desire",[14,14,[[18,6,6,0,6,[[487,2,2,0,2],[498,1,1,2,3],[515,1,1,3,4],[555,1,1,4,5],[589,1,1,5,6]]],[19,7,7,6,13,[[637,1,1,6,7],[638,1,1,7,8],[640,2,2,8,10],[645,1,1,10,11],[646,1,1,11,12],[648,1,1,12,13]]],[22,1,1,13,14,[[704,1,1,13,14]]]],[14044,14058,14193,14499,15142,15813,16680,16711,16759,16766,16902,16947,17009,18138]]],["greedily",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17010]]],["pleasant",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[61]]]]},{"k":"H8379","v":[["bound",[1,1,[[0,1,1,0,1,[[48,1,1,0,1]]]],[1499]]]]},{"k":"H8380","v":[["twins",[4,4,[[0,2,2,0,2,[[24,1,1,0,1],[37,1,1,1,2]]],[21,2,2,2,4,[[674,1,1,2,3],[677,1,1,3,4]]]],[682,1146,17587,17630]]]]},{"k":"H8381","v":[["curse",[1,1,[[24,1,1,0,1,[[799,1,1,0,1]]]],[20419]]]]},{"k":"H8382","v":[["*",[6,4,[[1,4,2,0,2,[[75,2,1,0,1],[85,2,1,1,2]]],[21,2,2,2,4,[[674,1,1,2,3],[676,1,1,3,4]]]],[2259,2595,17584,17620]]],["+",[1,1,[[1,1,1,0,1,[[85,1,1,0,1]]]],[2595]]],["coupled",[1,1,[[1,1,1,0,1,[[85,1,1,0,1]]]],[2595]]],["together",[2,1,[[1,2,1,0,1,[[75,2,1,0,1]]]],[2259]]],["twins",[2,2,[[21,2,2,0,2,[[674,1,1,0,1],[676,1,1,1,2]]]],[17584,17620]]]]},{"k":"H8383","v":[["lies",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21068]]]]},{"k":"H8384","v":[["*",[39,35,[[0,1,1,0,1,[[2,1,1,0,1]]],[3,2,2,1,3,[[129,1,1,1,2],[136,1,1,2,3]]],[4,1,1,3,4,[[160,1,1,3,4]]],[6,2,2,4,6,[[219,2,2,4,6]]],[10,1,1,6,7,[[294,1,1,6,7]]],[11,2,2,7,9,[[330,1,1,7,8],[332,1,1,8,9]]],[15,1,1,9,10,[[425,1,1,9,10]]],[18,1,1,10,11,[[582,1,1,10,11]]],[19,1,1,11,12,[[654,1,1,11,12]]],[21,1,1,12,13,[[672,1,1,12,13]]],[22,3,3,13,16,[[712,1,1,13,14],[714,1,1,14,15],[716,1,1,15,16]]],[23,12,8,16,24,[[749,1,1,16,17],[752,2,1,17,18],[768,8,5,18,23],[773,1,1,23,24]]],[27,2,2,24,26,[[863,1,1,24,25],[870,1,1,25,26]]],[28,3,3,26,29,[[876,2,2,26,28],[877,1,1,28,29]]],[29,1,1,29,30,[[882,1,1,29,30]]],[32,1,1,30,31,[[896,1,1,30,31]]],[33,1,1,31,32,[[902,1,1,31,32]]],[34,1,1,32,33,[[905,1,1,32,33]]],[36,1,1,33,34,[[910,1,1,33,34]]],[37,1,1,34,35,[[913,1,1,34,35]]]],[62,4098,4316,5145,6764,6765,8869,10055,10105,12686,15639,17187,17567,18307,18346,18411,19075,19166,19525,19526,19527,19529,19532,19652,22117,22218,22298,22303,22333,22419,22624,22724,22785,22874,22922]]],["+",[1,1,[[22,1,1,0,1,[[712,1,1,0,1]]]],[18307]]],["Figs",[1,1,[[23,1,1,0,1,[[768,1,1,0,1]]]],[19527]]],["fig",[1,1,[[0,1,1,0,1,[[2,1,1,0,1]]]],[62]]],["figs",[14,12,[[3,2,2,0,2,[[129,1,1,0,1],[136,1,1,1,2]]],[11,1,1,2,3,[[332,1,1,2,3]]],[15,1,1,3,4,[[425,1,1,3,4]]],[22,1,1,4,5,[[716,1,1,4,5]]],[23,9,7,5,12,[[752,1,1,5,6],[768,7,5,6,11],[773,1,1,11,12]]]],[4098,4316,10105,12686,18411,19166,19525,19526,19527,19529,19532,19652]]],["tree",[16,16,[[6,2,2,0,2,[[219,2,2,0,2]]],[10,1,1,2,3,[[294,1,1,2,3]]],[11,1,1,3,4,[[330,1,1,3,4]]],[19,1,1,4,5,[[654,1,1,4,5]]],[21,1,1,5,6,[[672,1,1,5,6]]],[22,1,1,6,7,[[714,1,1,6,7]]],[23,1,1,7,8,[[752,1,1,7,8]]],[27,1,1,8,9,[[870,1,1,8,9]]],[28,3,3,9,12,[[876,2,2,9,11],[877,1,1,11,12]]],[32,1,1,12,13,[[896,1,1,12,13]]],[34,1,1,13,14,[[905,1,1,13,14]]],[36,1,1,14,15,[[910,1,1,14,15]]],[37,1,1,15,16,[[913,1,1,15,16]]]],[6764,6765,8869,10055,17187,17567,18346,19166,22218,22298,22303,22333,22624,22785,22874,22922]]],["trees",[6,6,[[4,1,1,0,1,[[160,1,1,0,1]]],[18,1,1,1,2,[[582,1,1,1,2]]],[23,1,1,2,3,[[749,1,1,2,3]]],[27,1,1,3,4,[[863,1,1,3,4]]],[29,1,1,4,5,[[882,1,1,4,5]]],[33,1,1,5,6,[[902,1,1,5,6]]]],[5145,15639,19075,22117,22419,22724]]]]},{"k":"H8385","v":[["occasion",[2,2,[[6,1,1,0,1,[[224,1,1,0,1]]],[23,1,1,1,2,[[746,1,1,1,2]]]],[6913,18989]]]]},{"k":"H8386","v":[["*",[2,2,[[22,1,1,0,1,[[707,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]]],[18195,20337]]],["heaviness",[1,1,[[22,1,1,0,1,[[707,1,1,0,1]]]],[18195]]],["mourning",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20337]]]]},{"k":"H8387","v":[["Taanathshiloh",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6271]]]]},{"k":"H8388","v":[["*",[7,5,[[5,5,4,0,4,[[201,3,2,0,2],[204,2,2,2,4]]],[22,2,1,4,5,[[722,2,1,4,5]]]],[6211,6213,6307,6310,18546]]],["drawn",[5,4,[[5,5,4,0,4,[[201,3,2,0,2],[204,2,2,2,4]]]],[6211,6213,6307,6310]]],["out",[2,1,[[22,2,1,0,1,[[722,2,1,0,1]]]],[18546]]]]},{"k":"H8389","v":[["*",[15,15,[[0,4,4,0,4,[[28,1,1,0,1],[38,1,1,1,2],[40,2,2,2,4]]],[4,1,1,4,5,[[173,1,1,4,5]]],[6,1,1,5,6,[[218,1,1,5,6]]],[8,3,3,6,9,[[251,1,1,6,7],[260,1,1,7,8],[263,1,1,8,9]]],[10,1,1,9,10,[[291,1,1,9,10]]],[16,1,1,10,11,[[427,1,1,10,11]]],[22,2,2,11,13,[[730,1,1,11,12],[731,1,1,12,13]]],[23,1,1,13,14,[[755,1,1,13,14]]],[24,1,1,14,15,[[800,1,1,14,15]]]],[812,1155,1213,1214,5458,6737,7613,7864,7956,8723,12731,18710,18713,19242,20428]]],["+",[5,5,[[0,2,2,0,2,[[28,1,1,0,1],[38,1,1,1,2]]],[4,1,1,2,3,[[173,1,1,2,3]]],[10,1,1,3,4,[[291,1,1,3,4]]],[16,1,1,4,5,[[427,1,1,4,5]]]],[812,1155,5458,8723,12731]]],["comely",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7613]]],["countenance",[1,1,[[8,1,1,0,1,[[260,1,1,0,1]]]],[7864]]],["favoured",[2,2,[[0,2,2,0,2,[[40,2,2,0,2]]]],[1213,1214]]],["form",[3,3,[[8,1,1,0,1,[[263,1,1,0,1]]],[22,2,2,1,3,[[730,1,1,1,2],[731,1,1,2,3]]]],[7956,18710,18713]]],["goodly",[1,1,[[23,1,1,0,1,[[755,1,1,0,1]]]],[19242]]],["resembled",[1,1,[[6,1,1,0,1,[[218,1,1,0,1]]]],[6737]]],["visage",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20428]]]]},{"k":"H8390","v":[["Tarea",[1,1,[[12,1,1,0,1,[[345,1,1,0,1]]]],[10610]]]]},{"k":"H8391","v":[["*",[2,2,[[22,2,2,0,2,[[719,1,1,0,1],[738,1,1,1,2]]]],[18470,18834]]],["box",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18834]]],["tree",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18470]]]]},{"k":"H8392","v":[["ark",[28,25,[[0,26,23,0,23,[[5,7,5,0,5],[6,8,8,5,13],[7,9,8,13,21],[8,2,2,21,23]]],[1,2,2,23,25,[[51,2,2,23,25]]]],[151,152,153,155,156,160,166,168,172,174,176,177,182,184,187,189,192,193,196,199,202,215,223,1557,1559]]]]},{"k":"H8393","v":[["*",[42,40,[[0,1,1,0,1,[[46,1,1,0,1]]],[1,1,1,1,2,[[72,1,1,1,2]]],[2,11,10,2,12,[[108,1,1,2,3],[112,1,1,3,4],[114,9,8,4,12]]],[3,2,1,12,13,[[134,2,1,12,13]]],[4,6,6,13,19,[[166,2,2,13,15],[168,1,1,15,16],[174,1,1,16,17],[178,1,1,17,18],[185,1,1,18,19]]],[5,1,1,19,20,[[191,1,1,19,20]]],[11,1,1,20,21,[[320,1,1,20,21]]],[13,2,2,21,23,[[397,1,1,21,22],[398,1,1,22,23]]],[15,1,1,23,24,[[421,1,1,23,24]]],[17,1,1,24,25,[[466,1,1,24,25]]],[18,1,1,25,26,[[584,1,1,25,26]]],[19,8,8,26,34,[[630,2,2,26,28],[635,1,1,28,29],[637,1,1,29,30],[641,1,1,30,31],[642,1,1,31,32],[643,1,1,32,33],[645,1,1,33,34]]],[20,1,1,34,35,[[663,1,1,34,35]]],[22,2,2,35,37,[[701,1,1,35,36],[708,1,1,36,37]]],[23,2,2,37,39,[[746,1,1,37,38],[756,1,1,38,39]]],[25,1,1,39,40,[[849,1,1,39,40]]]],[1444,2154,3306,3441,3472,3476,3481,3484,3485,3489,3490,3491,4287,5312,5318,5357,5479,5578,5824,5946,9733,11859,11903,12548,13600,15736,16464,16469,16621,16672,16776,16813,16848,16921,17407,18080,18240,18968,19262,21720]]],["+",[2,2,[[5,1,1,0,1,[[191,1,1,0,1]]],[23,1,1,1,2,[[756,1,1,1,2]]]],[5946,19262]]],["fruit",[6,6,[[2,4,4,0,4,[[112,1,1,0,1],[114,3,3,1,4]]],[4,1,1,4,5,[[174,1,1,4,5]]],[19,1,1,5,6,[[637,1,1,5,6]]]],[3441,3472,3490,3491,5479,16672]]],["fruits",[6,6,[[1,1,1,0,1,[[72,1,1,0,1]]],[2,3,3,1,4,[[114,3,3,1,4]]],[4,1,1,4,5,[[185,1,1,4,5]]],[11,1,1,5,6,[[320,1,1,5,6]]]],[2154,3484,3485,3491,5824,9733]]],["gain",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16469]]],["increase",[23,22,[[0,1,1,0,1,[[46,1,1,0,1]]],[2,4,4,1,5,[[108,1,1,1,2],[114,3,3,2,5]]],[3,2,1,5,6,[[134,2,1,5,6]]],[4,4,4,6,10,[[166,2,2,6,8],[168,1,1,8,9],[178,1,1,9,10]]],[13,2,2,10,12,[[397,1,1,10,11],[398,1,1,11,12]]],[15,1,1,12,13,[[421,1,1,12,13]]],[17,1,1,13,14,[[466,1,1,13,14]]],[18,1,1,14,15,[[584,1,1,14,15]]],[19,3,3,15,18,[[630,1,1,15,16],[641,1,1,16,17],[645,1,1,17,18]]],[20,1,1,18,19,[[663,1,1,18,19]]],[22,1,1,19,20,[[708,1,1,19,20]]],[23,1,1,20,21,[[746,1,1,20,21]]],[25,1,1,21,22,[[849,1,1,21,22]]]],[1444,3306,3476,3481,3489,4287,5312,5318,5357,5578,11859,11903,12548,13600,15736,16464,16776,16921,17407,18240,18968,21720]]],["revenue",[2,2,[[19,1,1,0,1,[[635,1,1,0,1]]],[22,1,1,1,2,[[701,1,1,1,2]]]],[16621,18080]]],["revenues",[2,2,[[19,2,2,0,2,[[642,1,1,0,1],[643,1,1,1,2]]]],[16813,16848]]]]},{"k":"H8394","v":[["*",[42,42,[[1,3,3,0,3,[[80,1,1,0,1],[84,1,1,1,2],[85,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[10,2,2,4,6,[[294,1,1,4,5],[297,1,1,5,6]]],[17,4,4,6,10,[[447,2,2,6,8],[461,1,1,8,9],[467,1,1,9,10]]],[18,4,4,10,14,[[526,1,1,10,11],[555,1,1,11,12],[613,1,1,12,13],[624,1,1,13,14]]],[19,19,19,14,33,[[629,4,4,14,18],[630,2,2,18,20],[632,1,1,20,21],[635,1,1,21,22],[637,1,1,22,23],[638,1,1,23,24],[641,1,1,24,25],[642,1,1,25,26],[644,1,1,26,27],[645,1,1,27,28],[646,1,1,28,29],[647,1,1,29,30],[648,1,1,30,31],[651,1,1,31,32],[655,1,1,32,33]]],[22,3,3,33,36,[[718,2,2,33,35],[722,1,1,35,36]]],[23,2,2,36,38,[[754,1,1,36,37],[795,1,1,37,38]]],[25,1,1,38,39,[[829,1,1,38,39]]],[27,1,1,39,40,[[874,1,1,39,40]]],[30,2,2,40,42,[[888,2,2,40,42]]]],[2423,2562,2567,5786,8873,8948,13140,13141,13479,13639,14651,15185,16201,16356,16435,16436,16439,16444,16468,16474,16518,16603,16679,16700,16801,16828,16900,16903,16933,16959,17014,17082,17212,18434,18448,18552,19213,20227,21161,22268,22517,22518]]],["discretion",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19213]]],["reasons",[1,1,[[17,1,1,0,1,[[467,1,1,0,1]]]],[13639]]],["skilfulness",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15185]]],["understanding",[38,38,[[1,3,3,0,3,[[80,1,1,0,1],[84,1,1,1,2],[85,1,1,2,3]]],[4,1,1,3,4,[[184,1,1,3,4]]],[10,2,2,4,6,[[294,1,1,4,5],[297,1,1,5,6]]],[17,3,3,6,9,[[447,2,2,6,8],[461,1,1,8,9]]],[18,2,2,9,11,[[526,1,1,9,10],[624,1,1,10,11]]],[19,19,19,11,30,[[629,4,4,11,15],[630,2,2,15,17],[632,1,1,17,18],[635,1,1,18,19],[637,1,1,19,20],[638,1,1,20,21],[641,1,1,21,22],[642,1,1,22,23],[644,1,1,23,24],[645,1,1,24,25],[646,1,1,25,26],[647,1,1,26,27],[648,1,1,27,28],[651,1,1,28,29],[655,1,1,29,30]]],[22,3,3,30,33,[[718,2,2,30,32],[722,1,1,32,33]]],[23,1,1,33,34,[[795,1,1,33,34]]],[25,1,1,34,35,[[829,1,1,34,35]]],[27,1,1,35,36,[[874,1,1,35,36]]],[30,2,2,36,38,[[888,2,2,36,38]]]],[2423,2562,2567,5786,8873,8948,13140,13141,13479,14651,16356,16435,16436,16439,16444,16468,16474,16518,16603,16679,16700,16801,16828,16900,16903,16933,16959,17014,17082,17212,18434,18448,18552,20227,21161,22268,22517,22518]]],["wisdom",[1,1,[[18,1,1,0,1,[[613,1,1,0,1]]]],[16201]]]]},{"k":"H8395","v":[["destruction",[1,1,[[13,1,1,0,1,[[388,1,1,0,1]]]],[11651]]]]},{"k":"H8396","v":[["Tabor",[10,10,[[5,1,1,0,1,[[205,1,1,0,1]]],[6,4,4,1,5,[[214,3,3,1,4],[218,1,1,4,5]]],[8,1,1,5,6,[[245,1,1,5,6]]],[12,1,1,6,7,[[343,1,1,6,7]]],[18,1,1,7,8,[[566,1,1,7,8]]],[23,1,1,8,9,[[790,1,1,8,9]]],[27,1,1,9,10,[[866,1,1,9,10]]]],[6343,6605,6611,6613,6737,7421,10531,15338,20063,22153]]]]},{"k":"H8397","v":[["confusion",[2,2,[[2,2,2,0,2,[[107,1,1,0,1],[109,1,1,1,2]]]],[3274,3330]]]]},{"k":"H8398","v":[["*",[36,36,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[17,3,3,3,6,[[453,1,1,3,4],[469,1,1,4,5],[472,1,1,5,6]]],[18,15,15,6,21,[[486,1,1,6,7],[495,1,1,7,8],[496,1,1,8,9],[501,1,1,9,10],[510,1,1,10,11],[527,1,1,11,12],[554,1,1,12,13],[566,1,1,13,14],[567,1,1,14,15],[570,1,1,15,16],[573,2,2,16,18],[574,1,1,18,19],[575,2,2,19,21]]],[19,2,2,21,23,[[635,2,2,21,23]]],[22,9,9,23,32,[[691,1,1,23,24],[692,2,2,24,26],[696,1,1,26,27],[702,1,1,27,28],[704,2,2,28,30],[705,1,1,30,31],[712,1,1,31,32]]],[23,2,2,32,34,[[754,1,1,32,33],[795,1,1,33,34]]],[24,1,1,34,35,[[800,1,1,34,35]]],[33,1,1,35,36,[[900,1,1,35,36]]]],[7248,8618,10850,13294,13696,13781,14029,14133,14172,14242,14374,14680,15111,15337,15380,15427,15475,15478,15482,15497,15499,16628,16633,17917,17945,17949,18000,18099,18139,18148,18157,18304,19213,20227,20432,22689]]],["+",[1,1,[[17,1,1,0,1,[[453,1,1,0,1]]]],[13294]]],["part",[1,1,[[19,1,1,0,1,[[635,1,1,0,1]]]],[16633]]],["world",[34,34,[[8,1,1,0,1,[[237,1,1,0,1]]],[9,1,1,1,2,[[288,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[17,2,2,3,5,[[469,1,1,3,4],[472,1,1,4,5]]],[18,15,15,5,20,[[486,1,1,5,6],[495,1,1,6,7],[496,1,1,7,8],[501,1,1,8,9],[510,1,1,9,10],[527,1,1,10,11],[554,1,1,11,12],[566,1,1,12,13],[567,1,1,13,14],[570,1,1,14,15],[573,2,2,15,17],[574,1,1,17,18],[575,2,2,18,20]]],[19,1,1,20,21,[[635,1,1,20,21]]],[22,9,9,21,30,[[691,1,1,21,22],[692,2,2,22,24],[696,1,1,24,25],[702,1,1,25,26],[704,2,2,26,28],[705,1,1,28,29],[712,1,1,29,30]]],[23,2,2,30,32,[[754,1,1,30,31],[795,1,1,31,32]]],[24,1,1,32,33,[[800,1,1,32,33]]],[33,1,1,33,34,[[900,1,1,33,34]]]],[7248,8618,10850,13696,13781,14029,14133,14172,14242,14374,14680,15111,15337,15380,15427,15475,15478,15482,15497,15499,16628,17917,17945,17949,18000,18099,18139,18148,18157,18304,19213,20227,20432,22689]]]]},{"k":"H8399","v":[["destruction",[1,1,[[22,1,1,0,1,[[688,1,1,0,1]]]],[17875]]]]},{"k":"H8400","v":[["blemish",[1,1,[[2,1,1,0,1,[[110,1,1,0,1]]]],[3365]]]]},{"k":"H8401","v":[["*",[17,16,[[0,2,2,0,2,[[23,2,2,0,2]]],[1,8,7,2,9,[[54,8,7,2,9]]],[6,1,1,9,10,[[229,1,1,9,10]]],[10,1,1,10,11,[[294,1,1,10,11]]],[17,2,2,11,13,[[456,1,1,11,12],[476,1,1,12,13]]],[22,2,2,13,15,[[689,1,1,13,14],[743,1,1,14,15]]],[23,1,1,15,16,[[767,1,1,15,16]]]],[616,623,1639,1642,1643,1644,1645,1648,1650,7043,8872,13373,13915,17891,18922,19512]]],["chaff",[1,1,[[23,1,1,0,1,[[767,1,1,0,1]]]],[19512]]],["straw",[15,14,[[0,2,2,0,2,[[23,2,2,0,2]]],[1,8,7,2,9,[[54,8,7,2,9]]],[6,1,1,9,10,[[229,1,1,9,10]]],[10,1,1,10,11,[[294,1,1,10,11]]],[17,1,1,11,12,[[476,1,1,11,12]]],[22,2,2,12,14,[[689,1,1,12,13],[743,1,1,13,14]]]],[616,623,1639,1642,1643,1644,1645,1648,1650,7043,8872,13915,17891,18922]]],["stubble",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13373]]]]},{"k":"H8402","v":[["Tibni",[3,2,[[10,3,2,0,2,[[306,3,2,0,2]]]],[9304,9305]]]]},{"k":"H8403","v":[["*",[20,17,[[1,3,2,0,2,[[74,3,2,0,2]]],[4,5,3,2,5,[[156,5,3,2,5]]],[5,1,1,5,6,[[208,1,1,5,6]]],[11,1,1,6,7,[[328,1,1,6,7]]],[12,4,4,7,11,[[365,4,4,7,11]]],[18,2,2,11,13,[[583,1,1,11,12],[621,1,1,12,13]]],[22,1,1,13,14,[[722,1,1,13,14]]],[25,3,3,14,17,[[809,2,2,14,16],[811,1,1,16,17]]]],[2204,2235,5020,5021,5022,6454,9973,11154,11155,11161,11162,15671,16317,18546,20607,20614,20641]]],["figure",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18546]]],["form",[3,3,[[25,3,3,0,3,[[809,2,2,0,2],[811,1,1,2,3]]]],[20607,20614,20641]]],["likeness",[5,3,[[4,5,3,0,3,[[156,5,3,0,3]]]],[5020,5021,5022]]],["pattern",[9,8,[[1,3,2,0,2,[[74,3,2,0,2]]],[5,1,1,2,3,[[208,1,1,2,3]]],[11,1,1,3,4,[[328,1,1,3,4]]],[12,4,4,4,8,[[365,4,4,4,8]]]],[2204,2235,6454,9973,11154,11155,11161,11162]]],["similitude",[2,2,[[18,2,2,0,2,[[583,1,1,0,1],[621,1,1,1,2]]]],[15671,16317]]]]},{"k":"H8404","v":[["Taberah",[2,2,[[3,1,1,0,1,[[127,1,1,0,1]]],[4,1,1,1,2,[[161,1,1,1,2]]]],[4027,5179]]]]},{"k":"H8405","v":[["Thebez",[3,2,[[6,2,1,0,1,[[219,2,1,0,1]]],[9,1,1,1,2,[[277,1,1,1,2]]]],[6804,8280]]]]},{"k":"H8406","v":[["broken",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21800]]]]},{"k":"H8407","v":[["*",[6,6,[[11,3,3,0,3,[[327,1,1,0,1],[328,2,2,1,3]]],[12,2,2,3,5,[[342,2,2,3,5]]],[13,1,1,5,6,[[394,1,1,5,6]]]],[9954,9970,9973,10434,10454,11784]]],["Tiglathpileser",[3,3,[[11,3,3,0,3,[[327,1,1,0,1],[328,2,2,1,3]]]],[9954,9970,9973]]],["Tilgathpilneser",[3,3,[[12,2,2,0,2,[[342,2,2,0,2]]],[13,1,1,2,3,[[394,1,1,2,3]]]],[10434,10454,11784]]]]},{"k":"H8408","v":[["benefits",[1,1,[[18,1,1,0,1,[[593,1,1,0,1]]]],[15860]]]]},{"k":"H8409","v":[["+",[1,1,[[18,1,1,0,1,[[516,1,1,0,1]]]],[14522]]]]},{"k":"H8410","v":[["*",[2,2,[[22,2,2,0,2,[[719,1,1,0,1],[738,1,1,1,2]]]],[18470,18834]]],["pine",[1,1,[[22,1,1,0,1,[[719,1,1,0,1]]]],[18470]]],["tree",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18834]]]]},{"k":"H8411","v":[["continually",[2,2,[[26,2,2,0,2,[[855,2,2,0,2]]]],[21921,21925]]]]},{"k":"H8412","v":[["Tadmor",[2,2,[[10,1,1,0,1,[[299,1,1,0,1]]],[13,1,1,1,2,[[374,1,1,1,2]]]],[9069,11350]]]]},{"k":"H8413","v":[["Tidal",[2,2,[[0,2,2,0,2,[[13,2,2,0,2]]]],[337,345]]]]},{"k":"H8414","v":[["*",[20,19,[[0,1,1,0,1,[[0,1,1,0,1]]],[4,1,1,1,2,[[184,1,1,1,2]]],[8,2,1,2,3,[[247,2,1,2,3]]],[17,3,3,3,6,[[441,1,1,3,4],[447,1,1,4,5],[461,1,1,5,6]]],[18,1,1,6,7,[[584,1,1,6,7]]],[22,11,11,7,18,[[702,1,1,7,8],[707,1,1,8,9],[712,1,1,9,10],[718,2,2,10,12],[719,1,1,12,13],[722,1,1,13,14],[723,2,2,14,16],[727,1,1,16,17],[737,1,1,17,18]]],[23,1,1,18,19,[[748,1,1,18,19]]]],[1,5768,7481,12996,13152,13474,15739,18105,18214,18314,18437,18443,18480,18542,18579,18580,18640,18804,19050]]],["confusion",[3,3,[[22,3,3,0,3,[[702,1,1,0,1],[712,1,1,1,2],[719,1,1,2,3]]]],[18105,18314,18480]]],["form",[2,2,[[0,1,1,0,1,[[0,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]]],[1,19050]]],["nothing",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12996]]],["nought",[2,2,[[22,2,2,0,2,[[707,1,1,0,1],[727,1,1,1,2]]]],[18214,18640]]],["place",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13474]]],["vain",[4,3,[[8,2,1,0,1,[[247,2,1,0,1]]],[22,2,2,1,3,[[723,2,2,1,3]]]],[7481,18579,18580]]],["vanity",[4,4,[[22,4,4,0,4,[[718,2,2,0,2],[722,1,1,2,3],[737,1,1,3,4]]]],[18437,18443,18542,18804]]],["waste",[1,1,[[4,1,1,0,1,[[184,1,1,0,1]]]],[5768]]],["wilderness",[2,2,[[17,1,1,0,1,[[447,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]]],[13152,15739]]]]},{"k":"H8415","v":[["*",[36,35,[[0,4,4,0,4,[[0,1,1,0,1],[6,1,1,1,2],[7,1,1,2,3],[48,1,1,3,4]]],[1,2,2,4,6,[[64,2,2,4,6]]],[4,2,2,6,8,[[160,1,1,6,7],[185,1,1,7,8]]],[17,4,4,8,12,[[463,1,1,8,9],[473,2,2,9,11],[476,1,1,11,12]]],[18,12,11,12,23,[[510,1,1,12,13],[513,1,1,13,14],[519,2,1,14,15],[548,1,1,15,16],[554,1,1,16,17],[555,1,1,17,18],[581,1,1,18,19],[583,1,1,19,20],[584,1,1,20,21],[612,1,1,21,22],[625,1,1,22,23]]],[19,4,4,23,27,[[630,1,1,23,24],[635,3,3,24,27]]],[22,2,2,27,29,[[729,1,1,27,28],[741,1,1,28,29]]],[25,3,3,29,32,[[827,1,1,29,30],[832,2,2,30,32]]],[29,1,1,32,33,[[885,1,1,32,33]]],[31,1,1,33,34,[[890,1,1,33,34]]],[34,1,1,34,35,[[905,1,1,34,35]]]],[1,170,185,1498,1925,1928,5144,5823,13518,13809,13823,13920,14373,14444,14562,14996,15109,15128,15577,15660,15725,16181,16378,16475,16626,16629,16630,18683,18879,21119,21234,21245,22468,22553,22778]]],["+",[2,2,[[4,1,1,0,1,[[185,1,1,0,1]]],[18,1,1,1,2,[[548,1,1,1,2]]]],[5823,14996]]],["Deep",[1,1,[[18,1,1,0,1,[[519,1,1,0,1]]]],[14562]]],["deep",[17,17,[[0,4,4,0,4,[[0,1,1,0,1],[6,1,1,1,2],[7,1,1,2,3],[48,1,1,3,4]]],[17,2,2,4,6,[[473,1,1,4,5],[476,1,1,5,6]]],[18,3,3,6,9,[[513,1,1,6,7],[519,1,1,7,8],[581,1,1,8,9]]],[19,1,1,9,10,[[635,1,1,9,10]]],[22,2,2,10,12,[[729,1,1,10,11],[741,1,1,11,12]]],[25,3,3,12,15,[[827,1,1,12,13],[832,2,2,13,15]]],[29,1,1,15,16,[[885,1,1,15,16]]],[34,1,1,16,17,[[905,1,1,16,17]]]],[1,170,185,1498,13823,13920,14444,14562,15577,16630,18683,18879,21119,21234,21245,22468,22778]]],["deeps",[1,1,[[18,1,1,0,1,[[625,1,1,0,1]]]],[16378]]],["depth",[5,5,[[17,2,2,0,2,[[463,1,1,0,1],[473,1,1,1,2]]],[18,1,1,2,3,[[510,1,1,2,3]]],[19,1,1,3,4,[[635,1,1,3,4]]],[31,1,1,4,5,[[890,1,1,4,5]]]],[13518,13809,14373,16629,22553]]],["depths",[9,9,[[1,2,2,0,2,[[64,2,2,0,2]]],[4,1,1,2,3,[[160,1,1,2,3]]],[18,4,4,3,7,[[554,1,1,3,4],[555,1,1,4,5],[583,1,1,5,6],[584,1,1,6,7]]],[19,2,2,7,9,[[630,1,1,7,8],[635,1,1,8,9]]]],[1925,1928,5144,15109,15128,15660,15725,16475,16626]]],["places",[1,1,[[18,1,1,0,1,[[612,1,1,0,1]]]],[16181]]]]},{"k":"H8416","v":[["*",[56,56,[[1,1,1,0,1,[[64,1,1,0,1]]],[4,2,2,1,3,[[162,1,1,1,2],[178,1,1,2,3]]],[12,1,1,3,4,[[353,1,1,3,4]]],[13,1,1,4,5,[[386,1,1,4,5]]],[15,2,2,5,7,[[421,1,1,5,6],[424,1,1,6,7]]],[18,29,29,7,36,[[486,1,1,7,8],[499,2,2,8,10],[510,1,1,10,11],[511,1,1,11,12],[512,1,1,12,13],[517,1,1,13,14],[525,1,1,14,15],[528,1,1,15,16],[542,1,1,16,17],[543,2,2,17,19],[548,3,3,19,22],[555,1,1,22,23],[556,1,1,23,24],[577,1,1,24,25],[579,1,1,25,26],[583,3,3,26,29],[586,1,1,29,30],[588,1,1,30,31],[596,1,1,31,32],[622,1,1,32,33],[624,1,1,33,34],[625,1,1,34,35],[626,1,1,35,36]]],[22,11,11,36,47,[[720,3,3,36,39],[721,1,1,39,40],[726,1,1,40,41],[738,2,2,41,43],[739,2,2,43,45],[740,1,1,45,46],[741,1,1,46,47]]],[23,6,6,47,53,[[757,1,1,47,48],[761,1,1,48,49],[777,1,1,49,50],[792,1,1,50,51],[793,1,1,51,52],[795,1,1,52,53]]],[34,1,1,53,54,[[905,1,1,53,54]]],[35,2,2,54,56,[[908,2,2,54,56]]]],[1931,5207,5585,10855,11609,12516,12670,14035,14207,14229,14367,14389,14438,14528,14644,14706,14861,14875,14881,14982,14984,14990,15117,15198,15512,15542,15653,15663,15698,15756,15803,16069,16341,16352,16385,16386,18488,18490,18492,18526,18623,18827,18839,18846,18854,18861,18873,19277,19371,19784,20082,20152,20253,22771,22839,22840]]],["Praise",[2,2,[[18,1,1,0,1,[[542,1,1,0,1]]],[22,1,1,1,2,[[738,1,1,1,2]]]],[14861,18839]]],["praise",[49,49,[[4,2,2,0,2,[[162,1,1,0,1],[178,1,1,1,2]]],[12,1,1,2,3,[[353,1,1,2,3]]],[13,1,1,3,4,[[386,1,1,3,4]]],[15,2,2,4,6,[[421,1,1,4,5],[424,1,1,5,6]]],[18,26,26,6,32,[[486,1,1,6,7],[499,1,1,7,8],[510,1,1,8,9],[511,1,1,9,10],[512,1,1,10,11],[517,1,1,11,12],[525,1,1,12,13],[528,1,1,13,14],[543,2,2,14,16],[548,3,3,16,19],[556,1,1,19,20],[577,1,1,20,21],[579,1,1,21,22],[583,3,3,22,25],[586,1,1,25,26],[588,1,1,26,27],[596,1,1,27,28],[622,1,1,28,29],[624,1,1,29,30],[625,1,1,30,31],[626,1,1,31,32]]],[22,8,8,32,40,[[720,3,3,32,35],[721,1,1,35,36],[726,1,1,36,37],[739,2,2,37,39],[740,1,1,39,40]]],[23,6,6,40,46,[[757,1,1,40,41],[761,1,1,41,42],[777,1,1,42,43],[792,1,1,43,44],[793,1,1,44,45],[795,1,1,45,46]]],[34,1,1,46,47,[[905,1,1,46,47]]],[35,2,2,47,49,[[908,2,2,47,49]]]],[5207,5585,10855,11609,12516,12670,14035,14229,14367,14389,14438,14528,14644,14706,14875,14881,14982,14984,14990,15198,15512,15542,15653,15663,15698,15756,15803,16069,16341,16352,16385,16386,18488,18490,18492,18526,18623,18846,18854,18861,19277,19371,19784,20082,20152,20253,22771,22839,22840]]],["praises",[5,5,[[1,1,1,0,1,[[64,1,1,0,1]]],[18,2,2,1,3,[[499,1,1,1,2],[555,1,1,2,3]]],[22,2,2,3,5,[[738,1,1,3,4],[741,1,1,4,5]]]],[1931,14207,15117,18827,18873]]]]},{"k":"H8417","v":[["folly",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12948]]]]},{"k":"H8418","v":[]},{"k":"H8419","v":[["*",[10,10,[[4,1,1,0,1,[[184,1,1,0,1]]],[19,9,9,1,10,[[629,2,2,1,3],[633,1,1,3,4],[635,1,1,4,5],[637,2,2,5,7],[643,2,2,7,9],[650,1,1,9,10]]]],[5778,16445,16447,16554,16615,16687,16688,16868,16870,17077]]],["Frowardness",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16554]]],["froward",[4,4,[[4,1,1,0,1,[[184,1,1,0,1]]],[19,3,3,1,4,[[635,1,1,1,2],[637,1,1,2,3],[643,1,1,3,4]]]],[5778,16615,16687,16868]]],["frowardness",[2,2,[[19,2,2,0,2,[[629,1,1,0,1],[637,1,1,1,2]]]],[16447,16688]]],["things",[3,3,[[19,3,3,0,3,[[629,1,1,0,1],[643,1,1,1,2],[650,1,1,2,3]]]],[16445,16870,17077]]]]},{"k":"H8420","v":[["*",[3,3,[[17,1,1,0,1,[[466,1,1,0,1]]],[25,2,2,1,3,[[810,2,2,1,3]]]],[13623,20626,20628]]],["desire",[1,1,[[17,1,1,0,1,[[466,1,1,0,1]]]],[13623]]],["mark",[2,2,[[25,2,2,0,2,[[810,2,2,0,2]]]],[20626,20628]]]]},{"k":"H8421","v":[["*",[8,7,[[14,3,3,0,3,[[407,2,2,0,2],[408,1,1,2,3]]],[26,5,4,3,7,[[851,1,1,3,4],[852,1,1,4,5],[853,3,2,5,7]]]],[12139,12145,12156,21772,21823,21871,21873]]],["answer",[2,2,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,1,1,1,2,[[852,1,1,1,2]]]],[12139,21823]]],["answered",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21772]]],["restored",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12156]]],["returned",[4,3,[[14,1,1,0,1,[[407,1,1,0,1]]],[26,3,2,1,3,[[853,3,2,1,3]]]],[12145,21871,21873]]]]},{"k":"H8422","v":[["Tubal",[8,8,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]],[25,5,5,3,8,[[828,1,1,3,4],[833,1,1,4,5],[839,2,2,5,7],[840,1,1,7,8]]]],[236,10257,18941,21134,21274,21427,21428,21449]]]]},{"k":"H8423","v":[["Tubalcain",[2,1,[[0,2,1,0,1,[[3,2,1,0,1]]]],[101]]]]},{"k":"H8424","v":[["*",[4,4,[[18,1,1,0,1,[[596,1,1,0,1]]],[19,3,3,1,4,[[637,1,1,1,2],[641,1,1,2,3],[644,1,1,3,4]]]],[15926,16657,16785,16894]]],["+",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15926]]],["heaviness",[2,2,[[19,2,2,0,2,[[637,1,1,0,1],[641,1,1,1,2]]]],[16657,16785]]],["sorrow",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16894]]]]},{"k":"H8425","v":[["Togarmah",[4,4,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[25,2,2,2,4,[[828,1,1,2,3],[839,1,1,3,4]]]],[237,10258,21135,21431]]]]},{"k":"H8426","v":[["*",[31,29,[[2,5,4,0,4,[[96,4,3,0,3],[111,1,1,3,4]]],[5,1,1,4,5,[[193,1,1,4,5]]],[13,3,2,5,7,[[395,2,1,5,6],[399,1,1,6,7]]],[14,1,1,7,8,[[412,1,1,7,8]]],[15,4,4,8,12,[[424,4,4,8,12]]],[18,11,11,12,23,[[503,1,1,12,13],[519,1,1,13,14],[527,2,2,14,16],[533,1,1,16,17],[546,1,1,17,18],[572,1,1,18,19],[577,1,1,19,20],[584,1,1,20,21],[593,1,1,21,22],[624,1,1,22,23]]],[22,1,1,23,24,[[729,1,1,23,24]]],[23,3,3,24,27,[[761,1,1,24,25],[774,1,1,25,26],[777,1,1,26,27]]],[29,1,1,27,28,[[882,1,1,27,28]]],[31,1,1,28,29,[[890,1,1,28,29]]]],[2891,2892,2894,3398,5995,11822,11924,12263,12651,12655,12662,12664,14280,14559,14682,14691,14767,14965,15456,15512,15721,15865,16358,18676,19383,19686,19786,22415,22557]]],["confession",[2,2,[[5,1,1,0,1,[[193,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]]],[5995,12263]]],["offerings",[3,2,[[13,3,2,0,2,[[395,2,1,0,1],[399,1,1,1,2]]]],[11822,11924]]],["praise",[4,4,[[18,2,2,0,2,[[519,1,1,0,1],[527,1,1,1,2]]],[23,2,2,2,4,[[761,1,1,2,3],[777,1,1,3,4]]]],[14559,14691,19383,19786]]],["praises",[1,1,[[18,1,1,0,1,[[533,1,1,0,1]]]],[14767]]],["thanks",[3,3,[[15,3,3,0,3,[[424,3,3,0,3]]]],[12655,12662,12664]]],["thanksgiving",[17,16,[[2,5,4,0,4,[[96,4,3,0,3],[111,1,1,3,4]]],[18,8,8,4,12,[[503,1,1,4,5],[527,1,1,5,6],[546,1,1,6,7],[572,1,1,7,8],[577,1,1,8,9],[584,1,1,9,10],[593,1,1,10,11],[624,1,1,11,12]]],[22,1,1,12,13,[[729,1,1,12,13]]],[23,1,1,13,14,[[774,1,1,13,14]]],[29,1,1,14,15,[[882,1,1,14,15]]],[31,1,1,15,16,[[890,1,1,15,16]]]],[2891,2892,2894,3398,14280,14682,14965,15456,15512,15721,15865,16358,18676,19686,22415,22557]]],["thanksgivings",[1,1,[[15,1,1,0,1,[[424,1,1,0,1]]]],[12651]]]]},{"k":"H8427","v":[["*",[2,2,[[8,1,1,0,1,[[256,1,1,0,1]]],[25,1,1,1,2,[[810,1,1,1,2]]]],[7785,20626]]],["scrabbled",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7785]]],["set",[1,1,[[25,1,1,0,1,[[810,1,1,0,1]]]],[20626]]]]},{"k":"H8428","v":[["limited",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15154]]]]},{"k":"H8429","v":[["astonied",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21831]]]]},{"k":"H8430","v":[["Toah",[1,1,[[12,1,1,0,1,[[343,1,1,0,1]]]],[10488]]]]},{"k":"H8431","v":[["*",[6,6,[[17,1,1,0,1,[[476,1,1,0,1]]],[18,1,1,1,2,[[516,1,1,1,2]]],[19,3,3,2,5,[[637,1,1,2,3],[638,1,1,3,4],[640,1,1,4,5]]],[24,1,1,5,6,[[799,1,1,5,6]]]],[13897,14519,16684,16695,16759,20372]]],["Hope",[1,1,[[19,1,1,0,1,[[640,1,1,0,1]]]],[16759]]],["hope",[5,5,[[17,1,1,0,1,[[476,1,1,0,1]]],[18,1,1,1,2,[[516,1,1,1,2]]],[19,2,2,2,4,[[637,1,1,2,3],[638,1,1,3,4]]],[24,1,1,4,5,[[799,1,1,4,5]]]],[13897,14519,16684,16695,20372]]]]},{"k":"H8432","v":[["*",[419,390,[[0,17,17,0,17,[[0,1,1,0,1],[1,1,1,1,2],[2,2,2,2,4],[8,1,1,4,5],[14,1,1,5,6],[17,2,2,6,8],[18,1,1,8,9],[22,3,3,9,12],[34,1,1,12,13],[36,1,1,13,14],[39,1,1,14,15],[40,1,1,15,16],[41,1,1,16,17]]],[1,32,28,17,45,[[51,1,1,17,18],[52,2,2,18,20],[56,1,1,20,21],[58,1,1,21,22],[60,1,1,22,23],[61,2,2,23,25],[63,5,5,25,30],[64,1,1,30,31],[73,2,2,31,33],[74,1,1,33,34],[75,1,1,34,35],[77,3,3,35,38],[78,2,2,38,40],[82,1,1,40,41],[85,1,1,41,42],[88,7,3,42,45]]],[2,17,16,45,61,[[100,2,1,45,46],[104,1,1,46,47],[105,2,2,47,49],[106,4,4,49,53],[107,1,1,53,54],[109,1,1,54,55],[111,1,1,55,56],[113,1,1,56,57],[114,1,1,57,58],[115,3,3,58,61]]],[3,46,42,61,103,[[117,2,2,61,63],[118,2,2,63,65],[119,1,1,65,66],[120,2,2,66,68],[121,2,2,68,70],[124,4,4,70,74],[125,1,1,74,75],[129,1,1,75,76],[131,3,3,76,79],[132,5,5,79,84],[133,1,1,84,85],[134,5,4,85,89],[135,3,3,89,92],[141,2,2,92,94],[142,2,1,94,95],[143,4,3,95,98],[148,1,1,98,99],[149,1,1,99,100],[151,4,3,100,103]]],[4,21,20,103,123,[[155,1,1,103,104],[156,4,4,104,108],[157,5,5,108,113],[161,1,1,113,114],[162,1,1,114,115],[163,1,1,115,116],[165,1,1,116,117],[171,1,1,117,118],[173,1,1,118,119],[174,1,1,119,120],[175,2,2,120,122],[184,2,1,122,123]]],[5,29,28,123,151,[[189,1,1,123,124],[190,6,6,124,130],[193,2,2,130,132],[194,3,3,132,135],[198,1,1,135,136],[199,2,2,136,138],[200,1,1,138,139],[201,1,1,139,140],[202,1,1,140,141],[203,4,3,141,144],[205,3,3,144,147],[206,1,1,147,148],[207,1,1,148,149],[208,2,2,149,151]]],[6,8,7,151,158,[[217,1,1,151,152],[219,1,1,152,153],[222,2,1,153,154],[225,1,1,154,155],[226,1,1,155,156],[228,1,1,156,157],[230,1,1,157,158]]],[8,10,9,158,167,[[242,1,1,158,159],[244,2,2,159,161],[245,2,2,161,163],[246,1,1,163,164],[250,2,1,164,165],[253,1,1,165,166],[260,1,1,166,167]]],[9,10,9,167,176,[[267,1,1,167,168],[269,1,1,168,169],[270,1,1,169,170],[272,1,1,170,171],[273,1,1,171,172],[286,1,1,172,173],[289,3,2,173,175],[290,1,1,175,176]]],[10,11,9,176,185,[[293,2,2,176,178],[296,4,3,178,181],[298,2,2,181,183],[301,2,1,183,184],[304,1,1,184,185]]],[11,5,5,185,190,[[316,1,1,185,186],[318,1,1,186,187],[321,1,1,187,188],[323,1,1,188,189],[335,1,1,189,190]]],[12,4,4,190,194,[[348,2,2,190,192],[353,1,1,192,193],[358,1,1,193,194]]],[13,6,6,194,200,[[372,1,1,194,195],[373,1,1,195,196],[386,1,1,196,197],[388,1,1,197,198],[389,1,1,198,199],[398,1,1,199,200]]],[15,5,5,200,205,[[416,2,2,200,202],[418,1,1,202,203],[419,1,1,203,204],[421,1,1,204,205]]],[16,2,2,205,207,[[429,1,1,205,206],[434,1,1,206,207]]],[17,6,6,207,213,[[436,1,1,207,208],[437,2,2,208,210],[450,1,1,210,211],[455,1,1,211,212],[477,1,1,212,213]]],[18,14,14,213,227,[[499,2,2,213,215],[517,2,2,215,217],[534,2,2,217,219],[545,1,1,219,220],[586,1,1,220,221],[593,1,1,221,222],[612,1,1,222,223],[613,2,2,223,225],[614,1,1,225,226],[620,1,1,226,227]]],[19,8,8,227,235,[[628,1,1,227,228],[631,1,1,228,229],[632,2,2,229,231],[635,1,1,231,232],[644,1,1,232,233],[649,1,1,233,234],[654,1,1,234,235]]],[21,1,1,235,236,[[673,1,1,235,236]]],[22,12,12,236,248,[[683,1,1,236,237],[684,1,1,237,238],[685,1,1,238,239],[694,1,1,239,240],[697,1,1,240,241],[702,2,2,241,243],[719,1,1,243,244],[730,1,1,244,245],[736,1,1,245,246],[739,1,1,246,247],[744,1,1,247,248]]],[23,23,22,248,270,[[753,1,1,248,249],[756,2,2,249,251],[765,1,1,251,252],[773,1,1,252,253],[781,2,2,253,255],[783,2,2,255,257],[784,3,3,257,260],[785,3,2,260,262],[788,1,1,262,263],[794,2,2,263,265],[795,4,4,265,269],[796,1,1,269,270]]],[25,116,104,270,374,[[802,5,4,270,274],[803,1,1,274,275],[804,3,3,275,278],[806,6,6,278,284],[807,2,2,284,286],[808,2,2,286,288],[809,1,1,288,289],[810,4,2,289,291],[811,1,1,291,292],[812,6,5,292,297],[813,4,4,297,301],[814,1,1,301,302],[815,6,6,302,308],[816,1,1,308,309],[817,1,1,309,310],[818,1,1,310,311],[819,1,1,311,312],[820,2,2,312,314],[821,2,2,314,316],[822,1,1,316,317],[823,13,11,317,328],[824,1,1,328,329],[825,3,3,329,332],[827,3,3,332,335],[828,3,3,335,338],[829,6,5,338,343],[830,5,4,343,347],[831,2,1,347,348],[832,3,3,348,351],[833,6,5,351,356],[834,1,1,356,357],[835,2,2,357,359],[837,1,1,359,360],[838,3,3,360,363],[840,1,1,363,364],[844,2,2,364,366],[845,1,1,366,367],[847,1,1,367,368],[848,3,1,368,369],[849,5,5,369,374]]],[29,2,2,374,376,[[881,1,1,374,375],[884,1,1,375,376]]],[32,3,3,376,379,[[894,1,1,376,377],[895,1,1,377,378],[899,1,1,378,379]]],[35,1,1,379,380,[[907,1,1,379,380]]],[36,1,1,380,381,[[910,1,1,380,381]]],[37,9,9,381,390,[[912,4,4,381,385],[915,3,3,385,388],[918,2,2,388,390]]]],[5,39,58,63,226,370,448,450,486,577,580,581,1013,1090,1192,1243,1257,1559,1581,1583,1690,1766,1810,1847,1865,1905,1911,1912,1916,1918,1939,2193,2195,2203,2263,2294,2325,2326,2381,2382,2484,2599,2667,2687,2689,3030,3199,3217,3230,3243,3245,3247,3248,3277,3332,3401,3456,3502,3535,3536,3549,3651,3653,3675,3691,3704,3745,3761,3795,3813,3945,3953,3955,3958,3972,4107,4167,4179,4182,4197,4215,4227,4239,4241,4250,4263,4277,4280,4281,4295,4299,4309,4478,4482,4551,4557,4558,4561,4748,4768,4850,4860,4879,4991,5016,5019,5037,5040,5057,5075,5076,5077,5079,5167,5190,5211,5288,5408,5459,5472,5510,5511,5809,5910,5913,5915,5918,5919,5920,5928,5997,5999,6011,6015,6024,6132,6163,6170,6190,6215,6274,6279,6281,6284,6322,6330,6370,6381,6422,6445,6457,6710,6805,6873,6933,6978,6994,7096,7355,7405,7409,7428,7441,7456,7566,7686,7890,8047,8108,8126,8174,8182,8566,8665,8673,8697,8824,8836,8909,8915,8923,9036,9049,9128,9225,9616,9694,9758,9831,10174,10687,10695,10821,10940,11295,11331,11601,11655,11676,11879,12370,12381,12411,12424,12522,12763,12862,12875,12892,12899,13222,13339,13937,14218,14226,14533,14535,14772,14774,14925,15785,15867,16184,16207,16210,16224,16297,16414,16511,16531,16532,16622,16875,17028,17191,17581,17741,17774,17788,17972,18023,18108,18113,18469,18707,18795,18852,18939,19181,19263,19265,19444,19667,19878,19886,19926,19937,19942,19946,19947,19964,19965,20017,20174,20203,20218,20257,20259,20275,20301,20465,20468,20469,20480,20497,20517,20526,20527,20548,20550,20551,20554,20556,20558,20570,20576,20581,20586,20615,20624,20626,20643,20656,20662,20664,20666,20678,20682,20690,20692,20704,20722,20739,20740,20745,20747,20749,20751,20758,20815,20841,20867,20883,20887,20903,20904,20976,20979,20983,20985,20989,20994,20995,20996,20997,20998,21001,21002,21046,21061,21063,21067,21105,21112,21115,21148,21153,21155,21171,21173,21175,21179,21180,21186,21187,21195,21204,21211,21244,21247,21248,21268,21269,21273,21276,21280,21313,21325,21337,21382,21398,21423,21425,21455,21579,21581,21608,21665,21701,21710,21712,21717,21723,21724,22404,22454,22607,22611,22678,22819,22860,22903,22904,22909,22910,22940,22943,22944,22979,22984]]],["+",[78,76,[[0,1,1,0,1,[[18,1,1,0,1]]],[1,7,7,1,8,[[52,2,2,1,3],[56,1,1,3,4],[61,1,1,4,5],[73,1,1,5,6],[77,1,1,6,7],[82,1,1,7,8]]],[2,1,1,8,9,[[100,1,1,8,9]]],[3,15,15,9,24,[[119,1,1,9,10],[120,2,2,10,12],[124,4,4,12,16],[132,3,3,16,19],[134,1,1,19,20],[135,1,1,20,21],[141,1,1,21,22],[143,1,1,22,23],[151,1,1,23,24]]],[4,14,14,24,38,[[156,4,4,24,28],[157,5,5,28,33],[161,1,1,33,34],[162,1,1,34,35],[174,1,1,35,36],[175,2,2,36,38]]],[5,4,4,38,42,[[190,3,3,38,41],[193,1,1,41,42]]],[8,3,2,42,44,[[242,1,1,42,43],[250,2,1,43,44]]],[9,2,2,44,46,[[269,1,1,44,45],[289,1,1,45,46]]],[10,4,4,46,50,[[293,1,1,46,47],[296,1,1,47,48],[298,1,1,48,49],[304,1,1,49,50]]],[11,2,2,50,52,[[321,1,1,50,51],[323,1,1,51,52]]],[13,1,1,52,53,[[388,1,1,52,53]]],[15,1,1,53,54,[[418,1,1,53,54]]],[16,1,1,54,55,[[434,1,1,54,55]]],[18,1,1,55,56,[[613,1,1,55,56]]],[19,1,1,56,57,[[632,1,1,56,57]]],[22,3,3,57,60,[[702,1,1,57,58],[730,1,1,58,59],[736,1,1,59,60]]],[23,5,5,60,65,[[756,1,1,60,61],[788,1,1,61,62],[794,1,1,62,63],[795,2,2,63,65]]],[25,11,10,65,75,[[802,3,2,65,67],[812,2,2,67,69],[815,2,2,69,71],[829,2,2,71,73],[830,1,1,73,74],[833,1,1,74,75]]],[29,1,1,75,76,[[884,1,1,75,76]]]],[486,1581,1583,1690,1847,2193,2294,2484,3030,3704,3745,3761,3945,3953,3955,3958,4215,4227,4239,4263,4309,4478,4558,4879,5016,5019,5037,5040,5057,5075,5076,5077,5079,5167,5190,5472,5510,5511,5913,5918,5928,5999,7355,7566,8108,8673,8836,8915,9036,9225,9758,9831,11655,12411,12862,16207,16532,18113,18707,18795,19263,20017,20174,20218,20257,20468,20469,20662,20664,20739,20740,21173,21175,21187,21269,22454]]],["Among",[1,1,[[3,1,1,0,1,[[134,1,1,0,1]]]],[4281]]],["among",[113,107,[[0,5,5,0,5,[[22,2,2,0,2],[34,1,1,2,3],[39,1,1,3,4],[41,1,1,4,5]]],[1,5,5,5,10,[[51,1,1,5,6],[61,1,1,6,7],[74,1,1,7,8],[78,2,2,8,10]]],[2,14,14,10,24,[[104,1,1,10,11],[105,1,1,11,12],[106,4,4,12,16],[107,1,1,16,17],[109,1,1,17,18],[111,1,1,18,19],[113,1,1,19,20],[114,1,1,20,21],[115,3,3,21,24]]],[3,22,20,24,44,[[117,2,2,24,26],[118,1,1,26,27],[121,1,1,27,28],[125,1,1,28,29],[131,3,3,29,32],[132,1,1,32,33],[133,1,1,33,34],[134,3,2,34,36],[135,1,1,36,37],[141,1,1,37,38],[142,2,1,38,39],[143,2,2,39,41],[148,1,1,41,42],[151,2,2,42,44]]],[4,1,1,44,45,[[184,1,1,44,45]]],[5,12,11,45,56,[[194,1,1,45,46],[200,1,1,46,47],[201,1,1,47,48],[202,1,1,48,49],[203,4,3,49,52],[205,1,1,52,53],[206,1,1,53,54],[208,2,2,54,56]]],[6,3,2,56,58,[[222,2,1,56,57],[228,1,1,57,58]]],[8,2,2,58,60,[[245,2,2,58,60]]],[10,2,2,60,62,[[296,1,1,60,61],[301,1,1,61,62]]],[11,2,2,62,64,[[316,1,1,62,63],[335,1,1,63,64]]],[12,1,1,64,65,[[358,1,1,64,65]]],[15,1,1,65,66,[[416,1,1,65,66]]],[17,5,5,66,71,[[436,1,1,66,67],[437,2,2,67,69],[450,1,1,69,70],[477,1,1,70,71]]],[18,3,3,71,74,[[534,1,1,71,72],[545,1,1,72,73],[586,1,1,73,74]]],[19,3,3,74,77,[[628,1,1,74,75],[644,1,1,75,76],[654,1,1,76,77]]],[22,2,2,77,79,[[702,1,1,77,78],[739,1,1,78,79]]],[23,7,7,79,86,[[773,1,1,79,80],[781,1,1,80,81],[783,1,1,81,82],[784,3,3,82,85],[785,1,1,85,86]]],[25,22,20,86,106,[[802,1,1,86,87],[803,1,1,87,88],[804,2,2,88,90],[807,1,1,90,91],[810,1,1,91,92],[812,1,1,92,93],[813,2,2,93,95],[819,1,1,95,96],[820,2,2,96,98],[821,1,1,98,99],[823,1,1,99,100],[830,1,1,100,101],[834,1,1,101,102],[835,2,2,102,104],[845,1,1,104,105],[848,3,1,105,106]]],[36,1,1,106,107,[[910,1,1,106,107]]]],[577,581,1013,1192,1257,1559,1865,2203,2381,2382,3199,3230,3243,3245,3247,3248,3277,3332,3401,3456,3502,3535,3536,3549,3651,3653,3691,3813,3972,4167,4179,4182,4197,4250,4277,4280,4299,4482,4551,4558,4561,4748,4860,4879,5809,6011,6190,6215,6274,6279,6281,6284,6370,6381,6445,6457,6873,6994,7428,7441,8909,9128,9616,10174,10940,12370,12875,12892,12899,13222,13937,14772,14925,15785,16414,16875,17191,18108,18852,19667,19878,19937,19942,19946,19947,19965,20465,20497,20517,20527,20576,20624,20656,20690,20692,20867,20883,20887,20904,21002,21195,21313,21325,21337,21608,21701,22860]]],["amongst",[2,2,[[0,2,2,0,2,[[2,1,1,0,1],[22,1,1,1,2]]]],[63,580]]],["between",[3,2,[[1,3,2,0,2,[[77,1,1,0,1],[88,2,1,1,2]]]],[2326,2689]]],["half",[1,1,[[4,1,1,0,1,[[155,1,1,0,1]]]],[4991]]],["home",[1,1,[[4,1,1,0,1,[[173,1,1,0,1]]]],[5459]]],["in",[17,14,[[0,1,1,0,1,[[36,1,1,0,1]]],[1,4,1,1,2,[[88,4,1,1,2]]],[2,1,1,2,3,[[100,1,1,2,3]]],[3,2,2,3,5,[[129,1,1,3,4],[143,1,1,4,5]]],[8,1,1,5,6,[[244,1,1,5,6]]],[10,1,1,6,7,[[301,1,1,6,7]]],[12,1,1,7,8,[[348,1,1,7,8]]],[19,1,1,8,9,[[649,1,1,8,9]]],[25,5,5,9,14,[[815,4,4,9,13],[825,1,1,13,14]]]],[1090,2667,3030,4107,4557,7409,9128,10695,17028,20745,20747,20749,20751,21067]]],["into",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7405]]],["middle",[7,7,[[5,1,1,0,1,[[198,1,1,0,1]]],[6,1,1,1,2,[[226,1,1,1,2]]],[8,1,1,2,3,[[260,1,1,2,3]]],[10,1,1,3,4,[[298,1,1,3,4]]],[13,1,1,4,5,[[373,1,1,4,5]]],[23,1,1,5,6,[[783,1,1,5,6]]],[25,1,1,6,7,[[802,1,1,6,7]]]],[6132,6978,7890,9049,11331,19926,20480]]],["midst",[170,163,[[0,4,4,0,4,[[0,1,1,0,1],[1,1,1,1,2],[2,1,1,2,3],[14,1,1,3,4]]],[1,11,11,4,15,[[60,1,1,4,5],[63,5,5,5,10],[64,1,1,10,11],[73,1,1,11,12],[75,1,1,12,13],[77,1,1,13,14],[88,1,1,14,15]]],[2,1,1,15,16,[[105,1,1,15,16]]],[3,6,6,16,22,[[118,1,1,16,17],[121,1,1,17,18],[132,1,1,18,19],[135,1,1,19,20],[149,1,1,20,21],[151,1,1,21,22]]],[4,4,4,22,26,[[163,1,1,22,23],[165,1,1,23,24],[171,1,1,24,25],[184,1,1,25,26]]],[5,9,9,26,35,[[189,1,1,26,27],[190,3,3,27,30],[193,1,1,30,31],[194,2,2,31,33],[199,2,2,33,35]]],[6,2,2,35,37,[[225,1,1,35,36],[230,1,1,36,37]]],[8,2,2,37,39,[[246,1,1,37,38],[253,1,1,38,39]]],[9,7,7,39,46,[[267,1,1,39,40],[270,1,1,40,41],[272,1,1,41,42],[286,1,1,42,43],[289,2,2,43,45],[290,1,1,45,46]]],[10,2,2,46,48,[[293,1,1,46,47],[296,1,1,47,48]]],[11,1,1,48,49,[[318,1,1,48,49]]],[12,2,2,49,51,[[348,1,1,49,50],[353,1,1,50,51]]],[13,3,3,51,54,[[372,1,1,51,52],[386,1,1,52,53],[398,1,1,53,54]]],[15,1,1,54,55,[[421,1,1,54,55]]],[16,1,1,55,56,[[429,1,1,55,56]]],[18,7,7,56,63,[[499,2,2,56,58],[534,1,1,58,59],[593,1,1,59,60],[612,1,1,60,61],[613,1,1,61,62],[614,1,1,62,63]]],[19,3,3,63,66,[[631,1,1,63,64],[632,1,1,64,65],[635,1,1,65,66]]],[21,1,1,66,67,[[673,1,1,66,67]]],[22,7,7,67,74,[[683,1,1,67,68],[684,1,1,68,69],[685,1,1,69,70],[694,1,1,70,71],[697,1,1,71,72],[719,1,1,72,73],[744,1,1,73,74]]],[23,10,9,74,83,[[753,1,1,74,75],[756,1,1,75,76],[765,1,1,76,77],[781,1,1,77,78],[785,2,1,78,79],[794,1,1,79,80],[795,2,2,80,82],[796,1,1,82,83]]],[25,74,68,83,151,[[806,6,6,83,89],[807,1,1,89,90],[808,2,2,90,92],[809,1,1,92,93],[810,3,1,93,94],[811,1,1,94,95],[812,3,3,95,98],[813,1,1,98,99],[814,1,1,99,100],[816,1,1,100,101],[817,1,1,101,102],[818,1,1,102,103],[821,1,1,103,104],[822,1,1,104,105],[823,12,10,105,115],[824,1,1,115,116],[825,1,1,116,117],[827,3,3,117,120],[828,3,3,120,123],[829,4,4,123,127],[830,3,3,127,130],[831,2,1,130,131],[832,3,3,131,134],[833,5,4,134,138],[837,1,1,138,139],[838,3,3,139,142],[840,1,1,142,143],[844,2,2,143,145],[847,1,1,145,146],[849,5,5,146,151]]],[29,1,1,151,152,[[881,1,1,151,152]]],[32,2,2,152,154,[[894,1,1,152,153],[899,1,1,153,154]]],[35,1,1,154,155,[[907,1,1,154,155]]],[37,8,8,155,163,[[912,3,3,155,158],[915,3,3,158,161],[918,2,2,161,163]]]],[5,39,58,370,1810,1905,1911,1912,1916,1918,1939,2195,2263,2325,2687,3217,3675,3795,4241,4295,4768,4850,5211,5288,5408,5809,5910,5915,5919,5920,5997,6015,6024,6163,6170,6933,7096,7456,7686,8047,8126,8174,8566,8665,8673,8697,8824,8923,9694,10687,10821,11295,11601,11879,12522,12763,14218,14226,14774,15867,16184,16210,16224,16511,16531,16622,17581,17741,17774,17788,17972,18023,18469,18939,19181,19265,19444,19886,19964,20203,20259,20275,20301,20548,20550,20551,20554,20556,20558,20570,20581,20586,20615,20626,20643,20662,20666,20678,20682,20722,20758,20815,20841,20903,20976,20979,20983,20985,20989,20994,20995,20996,20997,20998,21001,21046,21063,21105,21112,21115,21148,21153,21155,21171,21173,21179,21180,21186,21195,21204,21211,21244,21247,21248,21268,21273,21276,21280,21382,21398,21423,21425,21455,21579,21581,21665,21710,21712,21717,21723,21724,22404,22607,22678,22819,22904,22909,22910,22940,22943,22944,22979,22984]]],["same",[1,1,[[0,1,1,0,1,[[40,1,1,0,1]]]],[1243]]],["therein",[3,3,[[15,1,1,0,1,[[419,1,1,0,1]]],[25,1,1,1,2,[[825,1,1,1,2]]],[37,1,1,2,3,[[912,1,1,2,3]]]],[12424,21061,22903]]],["through",[2,2,[[1,1,1,0,1,[[85,1,1,0,1]]],[13,1,1,1,2,[[389,1,1,1,2]]]],[2599,11676]]],["with",[1,1,[[1,1,1,0,1,[[58,1,1,0,1]]]],[1766]]],["within",[18,18,[[0,3,3,0,3,[[8,1,1,0,1],[17,2,2,1,3]]],[5,3,3,3,6,[[205,2,2,3,5],[207,1,1,5,6]]],[6,2,2,6,8,[[217,1,1,6,7],[219,1,1,7,8]]],[9,1,1,8,9,[[273,1,1,8,9]]],[10,1,1,9,10,[[296,1,1,9,10]]],[15,1,1,10,11,[[416,1,1,10,11]]],[17,1,1,11,12,[[455,1,1,11,12]]],[18,3,3,12,15,[[517,2,2,12,14],[620,1,1,14,15]]],[25,2,2,15,17,[[804,1,1,15,16],[813,1,1,16,17]]],[32,1,1,17,18,[[895,1,1,17,18]]]],[226,448,450,6322,6330,6422,6710,6805,8182,8923,12381,13339,14533,14535,16297,20526,20704,22611]]]]},{"k":"H8433","v":[["*",[28,28,[[11,1,1,0,1,[[331,1,1,0,1]]],[17,2,2,1,3,[[448,1,1,1,2],[458,1,1,2,3]]],[18,4,4,3,7,[[515,1,1,3,4],[516,1,1,4,5],[550,1,1,5,6],[626,1,1,6,7]]],[19,16,16,7,23,[[628,3,3,7,10],[630,1,1,10,11],[632,1,1,11,12],[633,1,1,12,13],[637,1,1,13,14],[639,1,1,14,15],[640,1,1,15,16],[642,4,4,16,20],[654,1,1,20,21],[656,2,2,21,23]]],[22,1,1,23,24,[[715,1,1,23,24]]],[25,2,2,24,26,[[806,1,1,24,25],[826,1,1,25,26]]],[27,1,1,26,27,[[866,1,1,26,27]]],[34,1,1,27,28,[[904,1,1,27,28]]]],[10064,13159,13423,14504,14523,15034,16392,16423,16425,16430,16466,16529,16563,16673,16720,16765,16812,16817,16838,16839,17174,17225,17239,18355,20561,21100,22161,22749]]],["arguments",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13423]]],["chastened",[1,1,[[18,1,1,0,1,[[550,1,1,0,1]]]],[15034]]],["correction",[1,1,[[19,1,1,0,1,[[630,1,1,0,1]]]],[16466]]],["punishments",[1,1,[[18,1,1,0,1,[[626,1,1,0,1]]]],[16392]]],["reasoning",[1,1,[[17,1,1,0,1,[[448,1,1,0,1]]]],[13159]]],["rebuke",[4,4,[[11,1,1,0,1,[[331,1,1,0,1]]],[19,1,1,1,2,[[654,1,1,1,2]]],[22,1,1,2,3,[[715,1,1,2,3]]],[27,1,1,3,4,[[866,1,1,3,4]]]],[10064,17174,18355,22161]]],["rebukes",[3,3,[[18,1,1,0,1,[[516,1,1,0,1]]],[25,2,2,1,3,[[806,1,1,1,2],[826,1,1,2,3]]]],[14523,20561,21100]]],["reproof",[12,12,[[19,12,12,0,12,[[628,3,3,0,3],[632,1,1,3,4],[637,1,1,4,5],[639,1,1,5,6],[640,1,1,6,7],[642,4,4,7,11],[656,1,1,11,12]]]],[16423,16425,16430,16529,16673,16720,16765,16812,16817,16838,16839,17239]]],["reproofs",[2,2,[[18,1,1,0,1,[[515,1,1,0,1]]],[19,1,1,1,2,[[633,1,1,1,2]]]],[14504,16563]]],["reproved",[2,2,[[19,1,1,0,1,[[656,1,1,0,1]]],[34,1,1,1,2,[[904,1,1,1,2]]]],[17225,22749]]]]},{"k":"H8434","v":[["Tolad",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10414]]]]},{"k":"H8435","v":[["*",[39,39,[[0,13,13,0,13,[[1,1,1,0,1],[4,1,1,1,2],[5,1,1,2,3],[9,2,2,3,5],[10,2,2,5,7],[24,3,3,7,10],[35,2,2,10,12],[36,1,1,12,13]]],[1,3,3,13,16,[[55,2,2,13,15],[77,1,1,15,16]]],[3,13,13,16,29,[[117,12,12,16,28],[119,1,1,28,29]]],[7,1,1,29,30,[[235,1,1,29,30]]],[12,9,9,30,39,[[338,1,1,30,31],[342,1,1,31,32],[344,3,3,32,35],[345,1,1,35,36],[346,2,2,36,38],[363,1,1,38,39]]]],[34,106,146,235,266,276,293,670,671,677,1041,1049,1085,1671,1674,2303,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3693,7208,10281,10435,10537,10539,10544,10603,10624,10649,11108]]],["birth",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2303]]],["generations",[38,38,[[0,13,13,0,13,[[1,1,1,0,1],[4,1,1,1,2],[5,1,1,2,3],[9,2,2,3,5],[10,2,2,5,7],[24,3,3,7,10],[35,2,2,10,12],[36,1,1,12,13]]],[1,2,2,13,15,[[55,2,2,13,15]]],[3,13,13,15,28,[[117,12,12,15,27],[119,1,1,27,28]]],[7,1,1,28,29,[[235,1,1,28,29]]],[12,9,9,29,38,[[338,1,1,29,30],[342,1,1,30,31],[344,3,3,31,34],[345,1,1,34,35],[346,2,2,35,37],[363,1,1,37,38]]]],[34,106,146,235,266,276,293,670,671,677,1041,1049,1085,1671,1674,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3693,7208,10281,10435,10537,10539,10544,10603,10624,10649,11108]]]]},{"k":"H8436","v":[["Tilon",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10405]]]]},{"k":"H8437","v":[["wasted",[1,1,[[18,1,1,0,1,[[614,1,1,0,1]]]],[16225]]]]},{"k":"H8438","v":[["*",[43,43,[[1,27,27,0,27,[[65,1,1,0,1],[74,1,1,1,2],[75,3,3,2,5],[76,1,1,5,6],[77,5,5,6,11],[84,4,4,11,15],[85,3,3,15,18],[87,2,2,18,20],[88,7,7,20,27]]],[2,5,5,27,32,[[103,5,5,27,32]]],[3,2,2,32,34,[[120,1,1,32,33],[135,1,1,33,34]]],[4,1,1,34,35,[[180,1,1,34,35]]],[17,1,1,35,36,[[460,1,1,35,36]]],[18,1,1,36,37,[[499,1,1,36,37]]],[22,4,4,37,41,[[679,1,1,37,38],[692,1,1,38,39],[719,1,1,39,40],[744,1,1,40,41]]],[24,1,1,41,42,[[800,1,1,41,42]]],[31,1,1,42,43,[[892,1,1,42,43]]]],[1967,2199,2236,2266,2271,2288,2298,2299,2301,2308,2326,2537,2554,2556,2566,2574,2601,2603,2651,2656,2665,2666,2667,2669,2672,2688,2693,3115,3117,3160,3162,3163,3751,4295,5650,13467,14210,17672,17939,18465,18946,20425,22575]]],["+",[33,33,[[1,26,26,0,26,[[74,1,1,0,1],[75,3,3,1,4],[76,1,1,4,5],[77,5,5,5,10],[84,4,4,10,14],[85,3,3,14,17],[87,2,2,17,19],[88,7,7,19,26]]],[2,5,5,26,31,[[103,5,5,26,31]]],[3,2,2,31,33,[[120,1,1,31,32],[135,1,1,32,33]]]],[2199,2236,2266,2271,2288,2298,2299,2301,2308,2326,2537,2554,2556,2566,2574,2601,2603,2651,2656,2665,2666,2667,2669,2672,2688,2693,3115,3117,3160,3162,3163,3751,4295]]],["crimson",[1,1,[[22,1,1,0,1,[[679,1,1,0,1]]]],[17672]]],["scarlet",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20425]]],["worm",[5,5,[[17,1,1,0,1,[[460,1,1,0,1]]],[18,1,1,1,2,[[499,1,1,1,2]]],[22,2,2,2,4,[[719,1,1,2,3],[744,1,1,3,4]]],[31,1,1,4,5,[[892,1,1,4,5]]]],[13467,14210,18465,18946,22575]]],["worms",[3,3,[[1,1,1,0,1,[[65,1,1,0,1]]],[4,1,1,1,2,[[180,1,1,1,2]]],[22,1,1,2,3,[[692,1,1,2,3]]]],[1967,5650,17939]]]]},{"k":"H8439","v":[["Tola",[6,5,[[0,1,1,0,1,[[45,1,1,0,1]]],[3,1,1,1,2,[[142,1,1,1,2]]],[6,1,1,2,3,[[220,1,1,2,3]]],[12,3,2,3,5,[[344,3,2,3,5]]]],[1399,4512,6812,10536,10537]]]]},{"k":"H8440","v":[["Tolaites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4512]]]]},{"k":"H8441","v":[["*",[117,112,[[0,2,2,0,2,[[42,1,1,0,1],[45,1,1,1,2]]],[1,2,1,2,3,[[57,2,1,2,3]]],[2,6,6,3,9,[[107,5,5,3,8],[109,1,1,8,9]]],[4,17,16,9,25,[[159,2,2,9,11],[164,1,1,11,12],[165,1,1,12,13],[166,1,1,13,14],[169,2,2,14,16],[170,3,2,16,18],[172,1,1,18,19],[174,1,1,19,20],[175,1,1,20,21],[176,1,1,21,22],[177,1,1,22,23],[179,1,1,23,24],[184,1,1,24,25]]],[10,1,1,25,26,[[304,1,1,25,26]]],[11,4,4,26,30,[[328,1,1,26,27],[333,2,2,27,29],[335,1,1,29,30]]],[13,5,5,30,35,[[394,1,1,30,31],[399,1,1,31,32],[400,1,1,32,33],[402,2,2,33,35]]],[14,3,3,35,38,[[411,3,3,35,38]]],[18,1,1,38,39,[[565,1,1,38,39]]],[19,21,20,39,59,[[630,1,1,39,40],[633,1,1,40,41],[635,1,1,41,42],[638,2,2,42,44],[639,1,1,44,45],[640,1,1,45,46],[642,3,3,46,49],[643,2,2,49,51],[644,1,1,51,52],[647,2,2,52,54],[648,1,1,54,55],[651,1,1,55,56],[653,1,1,56,57],[655,1,1,57,58],[656,2,1,58,59]]],[22,3,3,59,62,[[679,1,1,59,60],[719,1,1,60,61],[722,1,1,61,62]]],[23,8,8,62,70,[[746,1,1,62,63],[750,1,1,63,64],[751,1,1,64,65],[752,1,1,65,66],[760,1,1,66,67],[776,1,1,67,68],[788,2,2,68,70]]],[25,43,41,70,111,[[806,2,2,70,72],[807,2,2,72,74],[808,5,5,74,79],[809,6,5,79,84],[810,1,1,84,85],[812,2,2,85,87],[813,1,1,87,88],[815,1,1,88,89],[817,9,8,89,97],[819,3,3,97,100],[821,1,1,100,101],[823,2,2,101,103],[824,1,1,103,104],[834,2,2,104,106],[837,1,1,106,107],[844,1,1,107,108],[845,3,3,108,111]]],[38,1,1,111,112,[[926,1,1,111,112]]]],[1322,1420,1736,3273,3277,3278,3280,3281,3331,5136,5137,5271,5286,5293,5365,5368,5393,5396,5445,5475,5518,5529,5563,5600,5774,9242,9966,10121,10130,10178,11767,11910,11966,12001,12007,12238,12248,12251,15316,16487,16556,16609,16689,16708,16741,16766,16815,16816,16833,16845,16852,16888,16964,16977,17011,17088,17166,17205,17251,17667,18475,18552,18972,19104,19129,19165,19354,19766,20014,20032,20555,20557,20572,20574,20580,20581,20585,20586,20597,20610,20613,20617,20619,20621,20626,20673,20676,20696,20737,20764,20784,20798,20805,20809,20812,20813,20820,20861,20862,20873,20899,20978,20987,21043,21306,21309,21390,21580,21605,21606,21612,23114]]],["+",[1,1,[[2,1,1,0,1,[[107,1,1,0,1]]]],[3281]]],["abominable",[1,1,[[23,1,1,0,1,[[788,1,1,0,1]]]],[20014]]],["abomination",[52,50,[[0,2,2,0,2,[[42,1,1,0,1],[45,1,1,1,2]]],[1,2,1,2,3,[[57,2,1,2,3]]],[2,2,2,3,5,[[107,1,1,3,4],[109,1,1,4,5]]],[4,12,12,5,17,[[159,2,2,5,7],[164,1,1,7,8],[165,1,1,8,9],[169,2,2,9,11],[170,1,1,11,12],[174,1,1,12,13],[175,1,1,13,14],[176,1,1,14,15],[177,1,1,15,16],[179,1,1,16,17]]],[11,1,1,17,18,[[335,1,1,17,18]]],[18,1,1,18,19,[[565,1,1,18,19]]],[19,20,19,19,38,[[630,1,1,19,20],[633,1,1,20,21],[635,1,1,21,22],[638,2,2,22,24],[639,1,1,24,25],[640,1,1,25,26],[642,3,3,26,29],[643,2,2,29,31],[644,1,1,31,32],[647,2,2,32,34],[648,1,1,34,35],[651,1,1,35,36],[655,1,1,36,37],[656,2,1,37,38]]],[22,3,3,38,41,[[679,1,1,38,39],[719,1,1,39,40],[722,1,1,40,41]]],[23,4,4,41,45,[[746,1,1,41,42],[750,1,1,42,43],[752,1,1,43,44],[776,1,1,44,45]]],[25,4,4,45,49,[[817,1,1,45,46],[819,1,1,46,47],[823,1,1,47,48],[834,1,1,48,49]]],[38,1,1,49,50,[[926,1,1,49,50]]]],[1322,1420,1736,3273,3331,5136,5137,5271,5286,5365,5368,5396,5475,5518,5529,5563,5600,10178,15316,16487,16556,16609,16689,16708,16741,16766,16815,16816,16833,16845,16852,16888,16964,16977,17011,17088,17205,17251,17667,18475,18552,18972,19104,19165,19766,20812,20861,20987,21306,23114]]],["abominations",[61,59,[[2,3,3,0,3,[[107,3,3,0,3]]],[4,4,4,3,7,[[170,2,2,3,5],[172,1,1,5,6],[184,1,1,6,7]]],[10,1,1,7,8,[[304,1,1,7,8]]],[11,3,3,8,11,[[328,1,1,8,9],[333,2,2,9,11]]],[13,5,5,11,16,[[394,1,1,11,12],[399,1,1,12,13],[400,1,1,13,14],[402,2,2,14,16]]],[14,3,3,16,19,[[411,3,3,16,19]]],[19,1,1,19,20,[[653,1,1,19,20]]],[23,2,2,20,22,[[751,1,1,20,21],[788,1,1,21,22]]],[25,39,37,22,59,[[806,2,2,22,24],[807,2,2,24,26],[808,5,5,26,31],[809,6,5,31,36],[810,1,1,36,37],[812,2,2,37,39],[813,1,1,39,40],[815,1,1,40,41],[817,8,7,41,48],[819,2,2,48,50],[821,1,1,50,51],[823,1,1,51,52],[824,1,1,52,53],[834,1,1,53,54],[837,1,1,54,55],[844,1,1,55,56],[845,3,3,56,59]]]],[3277,3278,3280,5393,5396,5445,5774,9242,9966,10121,10130,11767,11910,11966,12001,12007,12238,12248,12251,17166,19129,20032,20555,20557,20572,20574,20580,20581,20585,20586,20597,20610,20613,20617,20619,20621,20626,20673,20676,20696,20737,20764,20784,20798,20805,20809,20813,20820,20862,20873,20899,20978,21043,21309,21390,21580,21605,21606,21612]]],["thing",[1,1,[[4,1,1,0,1,[[166,1,1,0,1]]]],[5293]]],["things",[1,1,[[23,1,1,0,1,[[760,1,1,0,1]]]],[19354]]]]},{"k":"H8442","v":[["*",[2,2,[[15,1,1,0,1,[[416,1,1,0,1]]],[22,1,1,1,2,[[710,1,1,1,2]]]],[12367,18265]]],["+",[1,1,[[15,1,1,0,1,[[416,1,1,0,1]]]],[12367]]],["error",[1,1,[[22,1,1,0,1,[[710,1,1,0,1]]]],[18265]]]]},{"k":"H8443","v":[["*",[4,4,[[3,2,2,0,2,[[139,1,1,0,1],[140,1,1,1,2]]],[17,1,1,2,3,[[457,1,1,2,3]]],[18,1,1,3,4,[[572,1,1,3,4]]]],[4438,4454,13414,15458]]],["plenty",[1,1,[[17,1,1,0,1,[[457,1,1,0,1]]]],[13414]]],["strength",[3,3,[[3,2,2,0,2,[[139,1,1,0,1],[140,1,1,1,2]]],[18,1,1,2,3,[[572,1,1,2,3]]]],[4438,4454,15458]]]]},{"k":"H8444","v":[["*",[23,23,[[3,5,5,0,5,[[150,5,5,0,5]]],[5,14,14,5,19,[[201,3,3,5,8],[202,2,2,8,10],[203,2,2,10,12],[204,3,3,12,15],[205,4,4,15,19]]],[12,1,1,19,20,[[342,1,1,19,20]]],[18,1,1,20,21,[[545,1,1,20,21]]],[19,1,1,21,22,[[631,1,1,21,22]]],[25,1,1,22,23,[[849,1,1,22,23]]]],[4820,4821,4824,4825,4828,6206,6209,6213,6268,6273,6284,6293,6305,6307,6312,6335,6343,6350,6354,10444,14920,16513,21732]]],["borders",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10444]]],["forth",[2,2,[[3,2,2,0,2,[[150,2,2,0,2]]]],[4820,4824]]],["issues",[2,2,[[18,1,1,0,1,[[545,1,1,0,1]]],[19,1,1,1,2,[[631,1,1,1,2]]]],[14920,16513]]],["out",[11,11,[[3,3,3,0,3,[[150,3,3,0,3]]],[5,7,7,3,10,[[201,3,3,3,6],[202,2,2,6,8],[204,2,2,8,10]]],[25,1,1,10,11,[[849,1,1,10,11]]]],[4821,4825,4828,6206,6209,6213,6268,6273,6305,6307,21732]]],["outgoings",[7,7,[[5,7,7,0,7,[[203,2,2,0,2],[204,1,1,2,3],[205,4,4,3,7]]]],[6284,6293,6312,6335,6343,6350,6354]]]]},{"k":"H8445","v":[]},{"k":"H8446","v":[["*",[23,22,[[3,14,13,0,13,[[126,1,1,0,1],[129,7,6,1,7],[130,5,5,7,12],[131,1,1,12,13]]],[4,1,1,13,14,[[153,1,1,13,14]]],[6,1,1,14,15,[[211,1,1,14,15]]],[10,1,1,15,16,[[300,1,1,15,16]]],[13,1,1,16,17,[[375,1,1,16,17]]],[19,1,1,17,18,[[639,1,1,17,18]]],[20,3,3,18,21,[[659,1,1,18,19],[660,1,1,19,20],[665,1,1,20,21]]],[25,1,1,21,22,[[821,1,1,21,22]]]],[4021,4077,4091,4092,4096,4100,4107,4114,4115,4142,4144,4146,4192,4925,6532,9094,11378,16745,17328,17336,17454,20901]]],["+",[11,11,[[3,9,9,0,9,[[129,5,5,0,5],[130,4,4,5,9]]],[10,1,1,9,10,[[300,1,1,9,10]]],[13,1,1,10,11,[[375,1,1,10,11]]]],[4077,4091,4092,4096,4100,4114,4142,4144,4146,9094,11378]]],["descry",[1,1,[[6,1,1,0,1,[[211,1,1,0,1]]]],[6532]]],["espied",[1,1,[[25,1,1,0,1,[[821,1,1,0,1]]]],[20901]]],["excellent",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16745]]],["out",[3,3,[[3,1,1,0,1,[[126,1,1,0,1]]],[4,1,1,1,2,[[153,1,1,1,2]]],[20,1,1,2,3,[[659,1,1,2,3]]]],[4021,4925,17328]]],["search",[3,3,[[3,2,2,0,2,[[129,1,1,0,1],[130,1,1,1,2]]],[20,1,1,2,3,[[665,1,1,2,3]]]],[4107,4115,17454]]],["searched",[1,1,[[3,1,1,0,1,[[129,1,1,0,1]]]],[4107]]],["seek",[1,1,[[3,1,1,0,1,[[131,1,1,0,1]]]],[4192]]],["sought",[1,1,[[20,1,1,0,1,[[660,1,1,0,1]]]],[17336]]]]},{"k":"H8447","v":[["*",[4,4,[[16,2,2,0,2,[[427,2,2,0,2]]],[21,2,2,2,4,[[671,2,2,2,4]]]],[12736,12739,17547,17548]]],["borders",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17548]]],["rows",[1,1,[[21,1,1,0,1,[[671,1,1,0,1]]]],[17547]]],["turn",[2,2,[[16,2,2,0,2,[[427,2,2,0,2]]]],[12736,12739]]]]},{"k":"H8448","v":[["estate",[1,1,[[12,1,1,0,1,[[354,1,1,0,1]]]],[10880]]]]},{"k":"H8449","v":[["*",[14,14,[[0,1,1,0,1,[[14,1,1,0,1]]],[2,9,9,1,10,[[90,1,1,1,2],[94,2,2,2,4],[101,2,2,4,6],[103,2,2,6,8],[104,2,2,8,10]]],[3,1,1,10,11,[[122,1,1,10,11]]],[18,1,1,11,12,[[551,1,1,11,12]]],[21,1,1,12,13,[[672,1,1,12,13]]],[23,1,1,13,14,[[752,1,1,13,14]]]],[369,2759,2837,2841,3050,3052,3133,3141,3182,3197,3833,15067,17566,19160]]],["turtle",[2,2,[[21,1,1,0,1,[[672,1,1,0,1]]],[23,1,1,1,2,[[752,1,1,1,2]]]],[17566,19160]]],["turtledove",[3,3,[[0,1,1,0,1,[[14,1,1,0,1]]],[2,1,1,1,2,[[101,1,1,1,2]]],[18,1,1,2,3,[[551,1,1,2,3]]]],[369,3050,15067]]],["turtledoves",[6,6,[[2,6,6,0,6,[[90,1,1,0,1],[94,2,2,1,3],[103,2,2,3,5],[104,1,1,5,6]]]],[2759,2837,2841,3133,3141,3182]]],["turtles",[3,3,[[2,2,2,0,2,[[101,1,1,0,1],[104,1,1,1,2]]],[3,1,1,2,3,[[122,1,1,2,3]]]],[3052,3197,3833]]]]},{"k":"H8450","v":[["*",[7,7,[[14,3,3,0,3,[[408,2,2,0,2],[409,1,1,2,3]]],[26,4,4,3,7,[[853,3,3,3,6],[854,1,1,6,7]]]],[12160,12168,12190,21862,21869,21870,21895]]],["bullocks",[3,3,[[14,3,3,0,3,[[408,2,2,0,2],[409,1,1,2,3]]]],[12160,12168,12190]]],["oxen",[4,4,[[26,4,4,0,4,[[853,3,3,0,3],[854,1,1,3,4]]]],[21862,21869,21870,21895]]]]},{"k":"H8451","v":[["*",[219,213,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,7,7,1,8,[[61,1,1,1,2],[62,1,1,2,3],[65,2,2,3,5],[67,2,2,5,7],[73,1,1,7,8]]],[2,16,16,8,24,[[95,3,3,8,11],[96,4,4,11,15],[100,1,1,15,16],[101,1,1,16,17],[102,1,1,17,18],[103,4,4,18,22],[104,1,1,22,23],[115,1,1,23,24]]],[3,10,9,24,33,[[121,2,2,24,26],[122,3,2,26,28],[131,2,2,28,30],[135,2,2,30,32],[147,1,1,32,33]]],[4,22,22,33,55,[[153,1,1,33,34],[156,2,2,34,36],[169,3,3,36,39],[179,3,3,39,42],[180,2,2,42,44],[181,2,2,44,46],[182,1,1,46,47],[183,5,5,47,52],[184,1,1,52,53],[185,2,2,53,55]]],[5,9,8,55,63,[[187,2,2,55,57],[194,4,3,57,60],[208,1,1,60,61],[209,1,1,61,62],[210,1,1,62,63]]],[10,1,1,63,64,[[292,1,1,63,64]]],[11,10,10,64,74,[[322,1,1,64,65],[326,1,1,65,66],[329,3,3,66,69],[333,1,1,69,70],[334,2,2,70,72],[335,2,2,72,74]]],[12,2,2,74,76,[[353,1,1,74,75],[359,1,1,75,76]]],[13,17,17,76,93,[[372,1,1,76,77],[378,1,1,77,78],[380,1,1,78,79],[381,1,1,79,80],[383,1,1,80,81],[385,1,1,81,82],[389,1,1,82,83],[391,1,1,83,84],[396,1,1,84,85],[397,3,3,85,88],[399,1,1,88,89],[400,3,3,89,92],[401,1,1,92,93]]],[14,4,4,93,97,[[405,1,1,93,94],[409,2,2,94,96],[412,1,1,96,97]]],[15,21,21,97,118,[[420,9,9,97,106],[421,6,6,106,112],[422,4,4,112,116],[424,1,1,116,117],[425,1,1,117,118]]],[17,1,1,118,119,[[457,1,1,118,119]]],[18,36,35,119,154,[[478,2,1,119,120],[496,1,1,120,121],[514,1,1,121,122],[517,1,1,122,123],[555,3,3,123,126],[566,1,1,126,127],[571,1,1,127,128],[582,1,1,128,129],[596,25,25,129,154]]],[19,13,12,154,166,[[628,1,1,154,155],[630,1,1,155,156],[631,1,1,156,157],[633,2,2,157,159],[634,1,1,159,160],[640,1,1,160,161],[655,4,3,161,164],[656,1,1,164,165],[658,1,1,165,166]]],[22,12,12,166,178,[[679,1,1,166,167],[680,1,1,167,168],[683,1,1,168,169],[686,2,2,169,171],[702,1,1,171,172],[708,1,1,172,173],[720,3,3,173,176],[729,2,2,176,178]]],[23,11,11,178,189,[[746,1,1,178,179],[750,1,1,179,180],[752,1,1,180,181],[753,1,1,181,182],[760,1,1,182,183],[762,1,1,183,184],[770,1,1,184,185],[775,1,1,185,186],[776,1,1,186,187],[788,2,2,187,189]]],[24,1,1,189,190,[[798,1,1,189,190]]],[25,7,6,190,196,[[808,1,1,190,191],[823,1,1,191,192],[844,3,2,192,194],[845,2,2,194,196]]],[26,4,3,196,199,[[858,4,3,196,199]]],[27,3,3,199,202,[[865,1,1,199,200],[869,2,2,200,202]]],[29,1,1,202,203,[[880,1,1,202,203]]],[32,1,1,203,204,[[896,1,1,203,204]]],[34,1,1,204,205,[[903,1,1,204,205]]],[35,1,1,205,206,[[908,1,1,205,206]]],[36,1,1,206,207,[[910,1,1,206,207]]],[37,1,1,207,208,[[917,1,1,207,208]]],[38,5,5,208,213,[[926,4,4,208,212],[928,1,1,212,213]]]],[697,1865,1876,1951,1975,2015,2019,2189,2858,2863,2874,2880,2886,2890,2916,3043,3051,3111,3113,3143,3165,3168,3200,3570,3821,3822,3836,3844,4169,4182,4291,4303,4685,4897,5012,5048,5375,5382,5383,5588,5593,5611,5669,5672,5700,5708,5718,5737,5739,5740,5752,5754,5804,5814,5820,5858,5859,6033,6034,6036,6431,6466,6502,8773,9824,9902,9996,10017,10020,10127,10153,10156,10189,10190,10860,10976,11298,11438,11479,11493,11532,11586,11674,11708,11843,11857,11858,11875,11916,11947,11948,11952,11992,12099,12179,12183,12255,12494,12495,12496,12500,12501,12502,12506,12507,12511,12514,12524,12525,12537,12540,12545,12577,12578,12583,12585,12668,12674,13411,13941,14175,14481,14533,15114,15118,15123,15356,15443,15651,15899,15916,15927,15932,15942,15949,15951,15953,15959,15968,15970,15975,15983,15990,15995,16007,16011,16024,16034,16040,16048,16051,16061,16063,16072,16408,16456,16492,16560,16563,16577,16761,17200,17203,17205,17242,17310,17664,17688,17763,17823,17827,18100,18226,18484,18501,18504,18677,18680,18973,19108,19161,19188,19347,19402,19576,19724,19754,20020,20033,20341,20603,21002,21583,21584,21604,21623,21998,21999,22001,22139,22195,22206,22383,22622,22735,22824,22866,22974,23109,23110,23111,23112,23142]]],["+",[4,4,[[18,4,4,0,4,[[571,1,1,0,1],[596,3,3,1,4]]]],[15443,15916,15949,16048]]],["law",[202,196,[[1,4,4,0,4,[[61,1,1,0,1],[62,1,1,1,2],[65,1,1,2,3],[73,1,1,3,4]]],[2,15,15,4,19,[[95,3,3,4,7],[96,4,4,7,11],[100,1,1,11,12],[101,1,1,12,13],[102,1,1,13,14],[103,4,4,14,18],[104,1,1,18,19]]],[3,10,9,19,28,[[121,2,2,19,21],[122,3,2,21,23],[131,2,2,23,25],[135,2,2,25,27],[147,1,1,27,28]]],[4,22,22,28,50,[[153,1,1,28,29],[156,2,2,29,31],[169,3,3,31,34],[179,3,3,34,37],[180,2,2,37,39],[181,2,2,39,41],[182,1,1,41,42],[183,5,5,42,47],[184,1,1,47,48],[185,2,2,48,50]]],[5,9,8,50,58,[[187,2,2,50,52],[194,4,3,52,55],[208,1,1,55,56],[209,1,1,56,57],[210,1,1,57,58]]],[10,1,1,58,59,[[292,1,1,58,59]]],[11,10,10,59,69,[[322,1,1,59,60],[326,1,1,60,61],[329,3,3,61,64],[333,1,1,64,65],[334,2,2,65,67],[335,2,2,67,69]]],[12,2,2,69,71,[[353,1,1,69,70],[359,1,1,70,71]]],[13,17,17,71,88,[[372,1,1,71,72],[378,1,1,72,73],[380,1,1,73,74],[381,1,1,74,75],[383,1,1,75,76],[385,1,1,76,77],[389,1,1,77,78],[391,1,1,78,79],[396,1,1,79,80],[397,3,3,80,83],[399,1,1,83,84],[400,3,3,84,87],[401,1,1,87,88]]],[14,4,4,88,92,[[405,1,1,88,89],[409,2,2,89,91],[412,1,1,91,92]]],[15,19,19,92,111,[[420,9,9,92,101],[421,4,4,101,105],[422,4,4,105,109],[424,1,1,109,110],[425,1,1,110,111]]],[17,1,1,111,112,[[457,1,1,111,112]]],[18,31,30,112,142,[[478,2,1,112,113],[496,1,1,113,114],[514,1,1,114,115],[517,1,1,115,116],[555,3,3,116,119],[566,1,1,119,120],[596,22,22,120,142]]],[19,13,12,142,154,[[628,1,1,142,143],[630,1,1,143,144],[631,1,1,144,145],[633,2,2,145,147],[634,1,1,147,148],[640,1,1,148,149],[655,4,3,149,152],[656,1,1,152,153],[658,1,1,153,154]]],[22,11,11,154,165,[[679,1,1,154,155],[680,1,1,155,156],[683,1,1,156,157],[686,2,2,157,159],[708,1,1,159,160],[720,3,3,160,163],[729,2,2,163,165]]],[23,11,11,165,176,[[746,1,1,165,166],[750,1,1,166,167],[752,1,1,167,168],[753,1,1,168,169],[760,1,1,169,170],[762,1,1,170,171],[770,1,1,171,172],[775,1,1,172,173],[776,1,1,173,174],[788,2,2,174,176]]],[24,1,1,176,177,[[798,1,1,176,177]]],[25,4,3,177,180,[[808,1,1,177,178],[823,1,1,178,179],[844,2,1,179,180]]],[26,3,2,180,182,[[858,3,2,180,182]]],[27,3,3,182,185,[[865,1,1,182,183],[869,2,2,183,185]]],[29,1,1,185,186,[[880,1,1,185,186]]],[32,1,1,186,187,[[896,1,1,186,187]]],[34,1,1,187,188,[[903,1,1,187,188]]],[35,1,1,188,189,[[908,1,1,188,189]]],[36,1,1,189,190,[[910,1,1,189,190]]],[37,1,1,190,191,[[917,1,1,190,191]]],[38,5,5,191,196,[[926,4,4,191,195],[928,1,1,195,196]]]],[1865,1876,1951,2189,2858,2863,2874,2880,2886,2890,2916,3043,3051,3111,3113,3143,3165,3168,3200,3821,3822,3836,3844,4169,4182,4291,4303,4685,4897,5012,5048,5375,5382,5383,5588,5593,5611,5669,5672,5700,5708,5718,5737,5739,5740,5752,5754,5804,5814,5820,5858,5859,6033,6034,6036,6431,6466,6502,8773,9824,9902,9996,10017,10020,10127,10153,10156,10189,10190,10860,10976,11298,11438,11479,11493,11532,11586,11674,11708,11843,11857,11858,11875,11916,11947,11948,11952,11992,12099,12179,12183,12255,12494,12495,12496,12500,12501,12502,12506,12507,12511,12514,12537,12540,12545,12577,12578,12583,12585,12668,12674,13411,13941,14175,14481,14533,15114,15118,15123,15356,15899,15927,15932,15942,15951,15953,15959,15968,15970,15975,15983,15990,15995,16007,16011,16024,16034,16040,16051,16061,16063,16072,16408,16456,16492,16560,16563,16577,16761,17200,17203,17205,17242,17310,17664,17688,17763,17823,17827,18226,18484,18501,18504,18677,18680,18973,19108,19161,19188,19347,19402,19576,19724,19754,20020,20033,20341,20603,21002,21584,21999,22001,22139,22195,22206,22383,22622,22735,22824,22866,22974,23109,23110,23111,23112,23142]]],["laws",[13,13,[[0,1,1,0,1,[[25,1,1,0,1]]],[1,3,3,1,4,[[65,1,1,1,2],[67,2,2,2,4]]],[2,1,1,4,5,[[115,1,1,4,5]]],[15,2,2,5,7,[[421,2,2,5,7]]],[18,1,1,7,8,[[582,1,1,7,8]]],[22,1,1,8,9,[[702,1,1,8,9]]],[25,3,3,9,12,[[844,1,1,9,10],[845,2,2,10,12]]],[26,1,1,12,13,[[858,1,1,12,13]]]],[697,1975,2015,2019,3570,12524,12525,15651,18100,21583,21604,21623,21998]]]]},{"k":"H8452","v":[["manner",[1,1,[[9,1,1,0,1,[[273,1,1,0,1]]]],[8199]]]]},{"k":"H8453","v":[["*",[14,13,[[0,1,1,0,1,[[22,1,1,0,1]]],[1,1,1,1,2,[[61,1,1,1,2]]],[2,8,7,2,9,[[111,1,1,2,3],[114,7,6,3,9]]],[3,1,1,9,10,[[151,1,1,9,10]]],[10,1,1,10,11,[[307,1,1,10,11]]],[12,1,1,11,12,[[366,1,1,11,12]]],[18,1,1,12,13,[[516,1,1,12,13]]]],[575,1861,3379,3475,3492,3504,3509,3514,3516,4860,9318,11179,14524]]],["+",[1,1,[[10,1,1,0,1,[[307,1,1,0,1]]]],[9318]]],["foreigner",[1,1,[[1,1,1,0,1,[[61,1,1,0,1]]]],[1861]]],["sojourner",[7,7,[[0,1,1,0,1,[[22,1,1,0,1]]],[2,4,4,1,5,[[111,1,1,1,2],[114,3,3,2,5]]],[3,1,1,5,6,[[151,1,1,5,6]]],[18,1,1,6,7,[[516,1,1,6,7]]]],[575,3379,3504,3509,3516,4860,14524]]],["sojourners",[2,2,[[2,1,1,0,1,[[114,1,1,0,1]]],[12,1,1,1,2,[[366,1,1,1,2]]]],[3492,11179]]],["stranger",[2,2,[[2,2,2,0,2,[[114,2,2,0,2]]]],[3475,3516]]],["strangers",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3514]]]]},{"k":"H8454","v":[["*",[11,11,[[17,5,5,0,5,[[440,1,1,0,1],[441,1,1,1,2],[446,1,1,2,3],[447,1,1,3,4],[461,1,1,4,5]]],[19,4,4,5,9,[[629,1,1,5,6],[630,1,1,6,7],[635,1,1,7,8],[645,1,1,8,9]]],[22,1,1,9,10,[[706,1,1,9,10]]],[32,1,1,10,11,[[898,1,1,10,11]]]],[12963,12991,13114,13144,13470,16440,16476,16616,16902,18193,22657]]],["enterprise",[1,1,[[17,1,1,0,1,[[440,1,1,0,1]]]],[12963]]],["is",[1,1,[[17,1,1,0,1,[[446,1,1,0,1]]]],[13114]]],["thing",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13470]]],["wisdom",[7,7,[[17,2,2,0,2,[[441,1,1,0,1],[447,1,1,1,2]]],[19,4,4,2,6,[[629,1,1,2,3],[630,1,1,3,4],[635,1,1,4,5],[645,1,1,5,6]]],[32,1,1,6,7,[[898,1,1,6,7]]]],[12991,13144,16440,16476,16616,16902,22657]]],["working",[1,1,[[22,1,1,0,1,[[706,1,1,0,1]]]],[18193]]]]},{"k":"H8455","v":[["Darts",[1,1,[[17,1,1,0,1,[[476,1,1,0,1]]]],[13917]]]]},{"k":"H8456","v":[["down",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18002]]]]},{"k":"H8457","v":[["*",[20,19,[[25,20,19,0,19,[[817,9,9,0,9],[824,11,10,9,19]]]],[20777,20782,20784,20787,20788,20791,20795,20796,20798,21014,21015,21018,21021,21024,21025,21026,21036,21042,21050]]],["fornication",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20791]]],["fornications",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20777]]],["whoredom",[3,3,[[25,3,3,0,3,[[817,1,1,0,1],[824,2,2,1,3]]]],[20795,21015,21024]]],["whoredoms",[15,15,[[25,15,15,0,15,[[817,6,6,0,6],[824,9,9,6,15]]]],[20782,20784,20787,20788,20796,20798,21014,21015,21018,21021,21025,21026,21036,21042,21050]]]]},{"k":"H8458","v":[["*",[6,6,[[17,1,1,0,1,[[472,1,1,0,1]]],[19,5,5,1,6,[[628,1,1,1,2],[638,1,1,2,3],[639,1,1,3,4],[647,1,1,4,5],[651,1,1,5,6]]]],[13781,16405,16702,16724,16972,17085]]],["advice",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16972]]],["counsel",[2,2,[[19,2,2,0,2,[[638,1,1,0,1],[651,1,1,1,2]]]],[16702,17085]]],["counsels",[3,3,[[17,1,1,0,1,[[472,1,1,0,1]]],[19,2,2,1,3,[[628,1,1,1,2],[639,1,1,2,3]]]],[13781,16405,16724]]]]},{"k":"H8459","v":[["Tohu",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7213]]]]},{"k":"H8460","v":[["under",[4,4,[[23,1,1,0,1,[[754,1,1,0,1]]],[26,3,3,1,4,[[853,2,2,1,3],[856,1,1,3,4]]]],[19212,21849,21858,21960]]]]},{"k":"H8461","v":[["Tachmonite",[1,1,[[9,1,1,0,1,[[289,1,1,0,1]]]],[8661]]]]},{"k":"H8462","v":[["*",[22,21,[[0,4,4,0,4,[[12,1,1,0,1],[40,1,1,1,2],[42,2,2,2,4]]],[6,3,2,4,6,[[211,1,1,4,5],[230,2,1,5,6]]],[7,1,1,6,7,[[232,1,1,6,7]]],[9,3,3,7,10,[[283,1,1,7,8],[287,2,2,8,10]]],[11,1,1,10,11,[[329,1,1,10,11]]],[14,1,1,11,12,[[406,1,1,11,12]]],[15,1,1,12,13,[[423,1,1,12,13]]],[19,1,1,13,14,[[636,1,1,13,14]]],[20,1,1,14,15,[[668,1,1,14,15]]],[22,1,1,15,16,[[679,1,1,15,16]]],[26,3,3,16,19,[[857,1,1,16,17],[858,2,2,17,19]]],[27,1,1,19,20,[[862,1,1,19,20]]],[29,1,1,20,21,[[885,1,1,20,21]]]],[321,1216,1308,1310,6510,7072,7149,8458,8589,8590,10008,12116,12605,16648,17506,17680,21962,22009,22011,22096,22465]]],["+",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8590]]],["begin",[1,1,[[15,1,1,0,1,[[423,1,1,0,1]]]],[12605]]],["beginning",[13,13,[[0,2,2,0,2,[[12,1,1,0,1],[40,1,1,1,2]]],[7,1,1,2,3,[[232,1,1,2,3]]],[9,1,1,3,4,[[287,1,1,3,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[14,1,1,5,6,[[406,1,1,5,6]]],[19,1,1,6,7,[[636,1,1,6,7]]],[20,1,1,7,8,[[668,1,1,7,8]]],[22,1,1,8,9,[[679,1,1,8,9]]],[26,2,2,9,11,[[858,2,2,9,11]]],[27,1,1,11,12,[[862,1,1,11,12]]],[29,1,1,12,13,[[885,1,1,12,13]]]],[321,1216,7149,8589,10008,12116,16648,17506,17680,22009,22011,22096,22465]]],["first",[5,4,[[6,3,2,0,2,[[211,1,1,0,1],[230,2,1,1,2]]],[9,1,1,2,3,[[283,1,1,2,3]]],[26,1,1,3,4,[[857,1,1,3,4]]]],[6510,7072,8458,21962]]],["time",[2,2,[[0,2,2,0,2,[[42,2,2,0,2]]]],[1308,1310]]]]},{"k":"H8463","v":[["*",[5,5,[[4,1,1,0,1,[[181,1,1,0,1]]],[13,1,1,1,2,[[387,1,1,1,2]]],[18,1,1,2,3,[[580,1,1,2,3]]],[23,2,2,3,5,[[758,1,1,3,4],[760,1,1,4,5]]]],[5701,11643,15552,19311,19340]]],["diseases",[2,2,[[13,1,1,0,1,[[387,1,1,0,1]]],[18,1,1,1,2,[[580,1,1,1,2]]]],[11643,15552]]],["grievous",[1,1,[[23,1,1,0,1,[[760,1,1,0,1]]]],[19340]]],["sick",[1,1,[[23,1,1,0,1,[[758,1,1,0,1]]]],[19311]]],["sicknesses",[1,1,[[4,1,1,0,1,[[181,1,1,0,1]]]],[5701]]]]},{"k":"H8464","v":[["hawk",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3013,5305]]]]},{"k":"H8465","v":[["Tahan",[2,2,[[3,1,1,0,1,[[142,1,1,0,1]]],[12,1,1,1,2,[[344,1,1,1,2]]]],[4524,10560]]]]},{"k":"H8466","v":[["camp",[1,1,[[11,1,1,0,1,[[318,1,1,0,1]]]],[9682]]]]},{"k":"H8467","v":[["*",[25,24,[[5,1,1,0,1,[[197,1,1,0,1]]],[10,9,8,1,9,[[298,8,7,1,8],[299,1,1,8,9]]],[13,5,5,9,14,[[372,4,4,9,13],[399,1,1,13,14]]],[14,1,1,14,15,[[411,1,1,14,15]]],[18,3,3,15,18,[[483,1,1,15,16],[532,1,1,16,17],[596,1,1,17,18]]],[23,5,5,18,23,[[780,1,1,18,19],[781,1,1,19,20],[782,1,1,20,21],[786,2,2,21,23]]],[26,1,1,23,24,[[858,1,1,23,24]]]],[6127,9013,9015,9023,9030,9034,9037,9039,9054,11301,11311,11317,11321,11921,12245,13994,14733,16068,19849,19894,19921,19977,19984,22008]]],["+",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14733]]],["favour",[1,1,[[5,1,1,0,1,[[197,1,1,0,1]]]],[6127]]],["grace",[1,1,[[14,1,1,0,1,[[411,1,1,0,1]]]],[12245]]],["supplication",[21,20,[[10,9,8,0,8,[[298,8,7,0,7],[299,1,1,7,8]]],[13,4,4,8,12,[[372,3,3,8,11],[399,1,1,11,12]]],[18,2,2,12,14,[[483,1,1,12,13],[596,1,1,13,14]]],[23,5,5,14,19,[[780,1,1,14,15],[781,1,1,15,16],[782,1,1,16,17],[786,2,2,17,19]]],[26,1,1,19,20,[[858,1,1,19,20]]]],[9013,9015,9023,9030,9034,9037,9039,9054,11301,11311,11317,11921,13994,16068,19849,19894,19921,19977,19984,22008]]],["supplications",[1,1,[[13,1,1,0,1,[[372,1,1,0,1]]]],[11321]]]]},{"k":"H8468","v":[["Tehinnah",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10397]]]]},{"k":"H8469","v":[["*",[18,18,[[13,1,1,0,1,[[372,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[18,8,8,2,10,[[505,2,2,2,4],[508,1,1,4,5],[563,1,1,5,6],[593,1,1,6,7],[607,1,1,7,8],[617,1,1,8,9],[620,1,1,9,10]]],[19,1,1,10,11,[[645,1,1,10,11]]],[23,2,2,11,13,[[747,1,1,11,12],[775,1,1,12,13]]],[26,4,4,13,17,[[858,4,4,13,17]]],[37,1,1,17,18,[[922,1,1,17,18]]]],[11303,13891,14301,14305,14353,15290,15849,16142,16269,16294,16924,19023,19700,21991,22005,22006,22011,23055]]],["intreaties",[1,1,[[19,1,1,0,1,[[645,1,1,0,1]]]],[16924]]],["supplications",[17,17,[[13,1,1,0,1,[[372,1,1,0,1]]],[17,1,1,1,2,[[476,1,1,1,2]]],[18,8,8,2,10,[[505,2,2,2,4],[508,1,1,4,5],[563,1,1,5,6],[593,1,1,6,7],[607,1,1,7,8],[617,1,1,8,9],[620,1,1,9,10]]],[23,2,2,10,12,[[747,1,1,10,11],[775,1,1,11,12]]],[26,4,4,12,16,[[858,4,4,12,16]]],[37,1,1,16,17,[[922,1,1,16,17]]]],[11303,13891,14301,14305,14353,15290,15849,16142,16269,16294,19023,19700,21991,22005,22006,22011,23055]]]]},{"k":"H8470","v":[["Tahanites",[1,1,[[3,1,1,0,1,[[142,1,1,0,1]]]],[4524]]]]},{"k":"H8471","v":[["*",[7,7,[[23,6,6,0,6,[[746,1,1,0,1],[787,3,3,1,4],[788,1,1,4,5],[790,1,1,5,6]]],[25,1,1,6,7,[[831,1,1,6,7]]]],[18981,20004,20005,20006,20011,20059,21222]]],["Tahapanes",[1,1,[[23,1,1,0,1,[[746,1,1,0,1]]]],[18981]]],["Tahpanhes",[5,5,[[23,5,5,0,5,[[787,3,3,0,3],[788,1,1,3,4],[790,1,1,4,5]]]],[20004,20005,20006,20011,20059]]],["Tehaphnehes",[1,1,[[25,1,1,0,1,[[831,1,1,0,1]]]],[21222]]]]},{"k":"H8472","v":[["Tahpenes",[3,2,[[10,3,2,0,2,[[301,3,2,0,2]]]],[9127,9128]]]]},{"k":"H8473","v":[["habergeon",[2,2,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]]],[2325,2687]]]]},{"k":"H8474","v":[["*",[2,2,[[23,2,2,0,2,[[756,1,1,0,1],[766,1,1,1,2]]]],[19254,19469]]],["closest",[1,1,[[23,1,1,0,1,[[766,1,1,0,1]]]],[19469]]],["contend",[1,1,[[23,1,1,0,1,[[756,1,1,0,1]]]],[19254]]]]},{"k":"H8475","v":[["Tahrea",[1,1,[[12,1,1,0,1,[[346,1,1,0,1]]]],[10656]]]]},{"k":"H8476","v":[["*",[14,14,[[1,6,6,0,6,[[74,1,1,0,1],[75,1,1,1,2],[84,2,2,2,4],[85,1,1,4,5],[88,1,1,5,6]]],[3,7,7,6,13,[[120,7,7,6,13]]],[25,1,1,13,14,[[817,1,1,13,14]]]],[2200,2249,2538,2554,2585,2698,3749,3751,3753,3754,3755,3757,3768,20772]]],["badgers'",[12,12,[[1,6,6,0,6,[[74,1,1,0,1],[75,1,1,1,2],[84,2,2,2,4],[85,1,1,4,5],[88,1,1,5,6]]],[3,6,6,6,12,[[120,6,6,6,12]]]],[2200,2249,2538,2554,2585,2698,3749,3751,3753,3754,3755,3757]]],["skin",[1,1,[[25,1,1,0,1,[[817,1,1,0,1]]]],[20772]]],["skins",[1,1,[[3,1,1,0,1,[[120,1,1,0,1]]]],[3768]]]]},{"k":"H8477","v":[["Thahash",[1,1,[[0,1,1,0,1,[[21,1,1,0,1]]]],[571]]]]},{"k":"H8478","v":[["*",[505,450,[[0,31,30,0,30,[[0,2,2,0,2],[1,1,1,2,3],[3,1,1,3,4],[5,1,1,4,5],[6,1,1,5,6],[15,1,1,6,7],[17,2,2,7,9],[20,1,1,9,10],[21,1,1,10,11],[23,2,2,11,13],[29,2,2,13,15],[34,3,2,15,17],[35,7,7,17,24],[40,1,1,24,25],[43,2,2,25,27],[46,1,1,27,28],[48,1,1,28,29],[49,1,1,29,30]]],[1,52,34,30,64,[[55,2,2,30,32],[59,1,1,32,33],[65,1,1,33,34],[66,2,2,34,36],[67,1,1,36,37],[69,2,1,37,38],[70,12,7,38,45],[71,2,1,45,46],[72,1,1,46,47],[73,2,2,47,49],[74,3,1,49,50],[75,8,4,50,54],[76,1,1,54,55],[78,1,1,55,56],[79,1,1,56,57],[81,1,1,57,58],[85,6,3,58,61],[86,4,2,61,63],[87,1,1,63,64]]],[2,12,10,64,74,[[95,1,1,64,65],[102,2,2,65,67],[103,1,1,67,68],[104,1,1,68,69],[105,1,1,69,70],[111,1,1,70,71],[113,4,2,71,73],[116,1,1,73,74]]],[3,15,13,74,87,[[119,5,3,74,77],[121,3,3,77,80],[122,1,1,80,81],[124,2,2,81,83],[132,1,1,83,84],[138,1,1,84,85],[141,1,1,85,86],[148,1,1,86,87]]],[4,27,26,87,113,[[154,5,5,87,92],[155,1,1,92,93],[156,6,6,93,99],[157,2,1,99,100],[159,1,1,100,101],[161,1,1,101,102],[162,1,1,102,103],[164,1,1,103,104],[173,1,1,104,105],[174,1,1,105,106],[177,1,1,106,107],[180,3,3,107,110],[181,1,1,110,111],[185,2,2,111,113]]],[5,14,14,113,127,[[188,2,2,113,115],[190,1,1,115,116],[191,2,2,116,118],[192,2,2,118,120],[193,2,2,120,122],[197,2,2,122,124],[198,1,1,124,125],[199,1,1,125,126],[210,1,1,126,127]]],[6,9,9,127,136,[[211,1,1,127,128],[213,2,2,128,130],[214,1,1,130,131],[216,2,2,131,133],[217,2,2,133,135],[225,1,1,135,136]]],[7,1,1,136,137,[[233,1,1,136,137]]],[8,12,12,137,149,[[237,1,1,137,138],[242,1,1,138,139],[249,2,2,139,141],[256,3,3,141,144],[257,1,1,144,145],[259,1,1,145,146],[260,1,1,146,147],[261,1,1,147,148],[266,1,1,148,149]]],[9,17,16,149,165,[[268,1,1,149,150],[269,1,1,150,151],[273,1,1,151,152],[276,1,1,152,153],[282,2,2,153,155],[283,1,1,155,156],[284,3,2,156,158],[285,2,2,158,160],[288,5,5,160,165]]],[10,42,39,165,204,[[291,2,2,165,167],[292,2,1,167,168],[293,1,1,168,169],[294,3,2,169,171],[295,3,3,171,174],[297,5,5,174,179],[298,3,3,179,182],[301,1,1,182,183],[303,1,1,183,184],[304,4,4,184,188],[305,3,3,188,191],[306,3,3,191,194],[309,3,3,194,197],[310,4,3,197,200],[311,2,2,200,202],[312,2,2,202,204]]],[11,40,40,204,244,[[313,1,1,204,205],[315,1,1,205,206],[320,4,4,206,210],[321,1,1,210,211],[322,2,2,211,213],[324,1,1,213,214],[325,3,3,214,217],[326,4,4,217,221],[327,7,7,221,228],[328,3,3,228,231],[329,3,3,231,234],[331,1,1,234,235],[332,1,1,235,236],[333,3,3,236,239],[334,1,1,239,240],[335,2,2,240,242],[336,2,2,242,244]]],[12,16,16,244,260,[[338,7,7,244,251],[341,1,1,251,252],[342,1,1,252,253],[347,1,1,253,254],[354,2,2,254,256],[356,1,1,256,257],[366,3,3,257,260]]],[13,28,27,260,287,[[367,1,1,260,261],[370,2,2,261,263],[371,1,1,263,264],[372,1,1,264,265],[375,1,1,265,266],[378,2,2,266,268],[380,1,1,268,269],[383,1,1,269,270],[387,5,4,270,274],[388,1,1,274,275],[390,1,1,275,276],[392,2,2,276,278],[393,1,1,278,279],[394,2,2,279,281],[398,1,1,281,282],[399,2,2,282,284],[400,1,1,284,285],[402,2,2,285,287]]],[15,1,1,287,288,[[414,1,1,287,288]]],[16,2,2,288,290,[[427,2,2,288,290]]],[17,22,21,290,311,[[444,1,1,290,291],[451,1,1,291,292],[453,1,1,292,293],[455,1,1,293,294],[461,2,2,294,296],[463,3,3,296,299],[465,2,2,299,301],[466,2,1,301,302],[469,2,2,302,304],[471,2,2,304,306],[472,1,1,306,307],[475,2,2,307,309],[476,2,2,309,311]]],[18,22,19,311,330,[[485,1,1,311,312],[487,1,1,312,313],[495,5,5,313,318],[512,1,1,318,319],[515,2,1,319,320],[522,2,2,320,322],[524,2,1,322,323],[543,1,1,323,324],[568,1,1,324,325],[583,1,1,325,326],[586,3,2,326,328],[617,1,1,328,329],[621,1,1,329,330]]],[19,9,8,330,338,[[628,1,1,330,331],[638,1,1,331,332],[644,1,1,332,333],[648,1,1,333,334],[649,1,1,334,335],[657,4,3,335,338]]],[20,34,31,338,369,[[659,4,4,338,342],[660,7,7,342,349],[661,2,2,349,351],[662,5,4,351,355],[663,2,2,355,357],[664,2,2,357,359],[665,1,1,359,360],[666,4,3,360,363],[667,6,5,363,368],[668,1,1,368,369]]],[21,4,4,369,373,[[672,1,1,369,370],[674,1,1,370,371],[678,2,2,371,373]]],[22,33,20,373,393,[[681,6,2,373,375],[688,3,2,375,377],[692,2,2,377,379],[702,1,1,379,380],[703,1,1,380,381],[715,1,1,381,382],[721,3,2,382,384],[724,1,1,384,385],[729,1,1,385,386],[731,1,1,386,387],[733,2,1,387,388],[735,2,1,388,389],[738,5,2,389,391],[739,4,2,391,393]]],[23,16,15,393,408,[[746,1,1,393,394],[747,2,2,394,396],[749,1,1,396,397],[762,1,1,397,398],[766,1,1,398,399],[772,1,1,399,400],[773,2,2,400,402],[781,1,1,402,403],[782,4,3,403,406],[794,1,1,406,407],[796,1,1,407,408]]],[24,2,2,408,410,[[799,2,2,408,410]]],[25,22,20,410,430,[[802,2,2,410,412],[805,1,1,412,413],[807,2,1,413,414],[811,4,4,414,418],[817,1,1,418,419],[818,2,2,419,421],[821,1,1,421,422],[824,1,1,422,423],[825,1,1,423,424],[832,1,1,424,425],[833,1,1,425,426],[837,1,1,426,427],[843,1,1,427,428],[847,1,1,428,429],[848,2,1,429,430]]],[26,3,3,430,433,[[857,2,2,430,432],[858,1,1,432,433]]],[27,2,2,433,435,[[865,2,2,433,435]]],[28,1,1,435,436,[[876,1,1,435,436]]],[29,2,2,436,438,[[880,2,2,436,438]]],[30,1,1,438,439,[[888,1,1,438,439]]],[31,1,1,439,440,[[892,1,1,439,440]]],[32,3,2,440,442,[[893,1,1,440,441],[896,2,1,441,442]]],[34,2,2,442,444,[[905,2,2,442,444]]],[35,1,1,444,445,[[907,1,1,444,445]]],[37,5,4,445,449,[[913,2,1,445,446],[916,1,1,446,447],[922,1,1,447,448],[924,1,1,448,449]]],[38,1,1,449,450,[[928,1,1,449,450]]]],[6,8,51,104,154,178,390,428,432,528,560,593,600,832,845,1015,1019,1073,1074,1075,1076,1077,1078,1079,1230,1328,1357,1449,1498,1525,1661,1662,1800,1976,1995,1997,2009,2055,2097,2100,2101,2102,2103,2104,2113,2114,2149,2181,2187,2230,2254,2256,2260,2268,2277,2366,2386,2457,2590,2592,2596,2625,2631,2637,2871,3075,3080,3153,3178,3233,3396,3464,3466,3602,3704,3733,3737,3811,3812,3821,3841,3955,3957,4225,4402,4484,4732,4950,4959,4960,4961,4963,4992,5015,5022,5023,5041,5043,5053,5061,5135,5171,5192,5242,5461,5499,5566,5634,5658,5673,5699,5823,5837,5880,5883,5919,5941,5942,5954,5969,5997,5998,6110,6124,6133,6159,6502,6516,6584,6598,6604,6665,6673,6702,6715,6931,7161,7260,7363,7510,7517,7775,7776,7780,7793,7858,7882,7926,8022,8072,8093,8190,8241,8434,8438,8474,8487,8511,8524,8532,8612,8639,8641,8642,8650,8747,8752,8805,8823,8856,8869,8879,8881,8883,8958,8963,8964,8966,8978,8991,9005,9008,9151,9198,9238,9241,9245,9249,9257,9273,9277,9289,9293,9311,9391,9392,9403,9432,9447,9450,9453,9457,9520,9530,9550,9603,9742,9747,9749,9751,9769,9817,9828,9871,9876,9880,9895,9912,9917,9923,9925,9932,9935,9939,9947,9950,9955,9963,9967,9980,9983,9990,9993,10007,10098,10119,10137,10143,10145,10162,10195,10199,10208,10219,10296,10297,10298,10299,10300,10301,10302,10426,10450,10671,10864,10872,10908,11187,11188,11192,11202,11249,11261,11275,11292,11395,11447,11453,11476,11524,11625,11632,11634,11636,11645,11704,11733,11755,11764,11768,11791,11908,11928,11933,11958,11994,12001,12321,12728,12741,13064,13242,13292,13338,13472,13475,13509,13519,13528,13564,13571,13628,13707,13709,13752,13756,13772,13876,13885,13899,13918,14018,14048,14127,14154,14156,14157,14165,14422,14510,14602,14613,14628,14890,15399,15693,15759,15760,16266,16307,16429,16696,16886,17002,17042,17272,17273,17274,17318,17324,17328,17329,17336,17344,17350,17351,17352,17353,17355,17360,17375,17382,17384,17388,17396,17410,17415,17418,17429,17435,17467,17473,17475,17478,17481,17484,17486,17488,17498,17560,17593,17643,17645,17713,17731,17854,17866,17937,17939,18100,18128,18390,18508,18509,18593,18679,18723,18753,18770,18836,18838,18846,18850,18985,19008,19015,19077,19404,19465,19631,19654,19661,19875,19904,19906,19907,20173,20296,20388,20420,20472,20487,20544,20576,20635,20641,20653,20654,20794,20831,20848,20932,21012,21061,21236,21275,21393,21561,21678,21680,21969,21983,22000,22145,22146,22308,22388,22392,22517,22573,22583,22624,22775,22784,22815,22922,22959,23051,23078,23141]]],["+",[86,81,[[0,4,4,0,4,[[0,2,2,0,2],[5,1,1,2,3],[34,1,1,3,4]]],[1,11,10,4,14,[[55,2,2,4,6],[59,1,1,6,7],[66,1,1,7,8],[67,1,1,8,9],[69,2,1,9,10],[70,2,2,10,12],[79,1,1,12,13],[86,1,1,13,14]]],[2,1,1,14,15,[[105,1,1,14,15]]],[3,2,2,15,17,[[141,1,1,15,16],[148,1,1,16,17]]],[4,14,13,17,30,[[156,3,3,17,20],[157,2,1,20,21],[159,1,1,21,22],[161,1,1,22,23],[173,1,1,23,24],[174,1,1,24,25],[177,1,1,25,26],[180,2,2,26,28],[181,1,1,28,29],[185,1,1,29,30]]],[5,1,1,30,31,[[188,1,1,30,31]]],[6,3,3,31,34,[[213,1,1,31,32],[216,1,1,32,33],[217,1,1,33,34]]],[8,3,3,34,37,[[242,1,1,34,35],[256,1,1,35,36],[261,1,1,36,37]]],[10,7,7,37,44,[[294,1,1,37,38],[297,4,4,38,42],[298,2,2,42,44]]],[11,7,7,44,51,[[320,2,2,44,46],[325,1,1,46,47],[326,1,1,47,48],[329,1,1,48,49],[334,1,1,49,50],[335,1,1,50,51]]],[13,7,6,51,57,[[371,1,1,51,52],[387,4,3,52,55],[400,1,1,55,56],[402,1,1,56,57]]],[17,4,4,57,61,[[451,1,1,57,58],[453,1,1,58,59],[461,1,1,59,60],[463,1,1,60,61]]],[19,2,2,61,63,[[628,1,1,61,62],[649,1,1,62,63]]],[22,3,3,63,66,[[692,1,1,63,64],[729,1,1,64,65],[731,1,1,65,66]]],[23,5,5,66,71,[[749,1,1,66,67],[773,1,1,67,68],[782,2,2,68,70],[794,1,1,70,71]]],[24,1,1,71,72,[[799,1,1,71,72]]],[25,6,5,72,77,[[802,1,1,72,73],[837,1,1,73,74],[843,1,1,74,75],[847,1,1,75,76],[848,2,1,76,77]]],[27,1,1,77,78,[[865,1,1,77,78]]],[29,1,1,78,79,[[880,1,1,78,79]]],[37,3,2,79,81,[[913,2,1,79,80],[916,1,1,80,81]]]],[6,8,154,1019,1661,1662,1800,1997,2009,2055,2103,2104,2386,2631,3233,4484,4732,5022,5041,5043,5061,5135,5171,5461,5499,5566,5658,5673,5699,5837,5880,6584,6673,6702,7363,7776,7926,8856,8958,8963,8964,8966,8991,9008,9747,9749,9876,9923,9990,10162,10195,11275,11632,11634,11636,11958,11994,13242,13292,13472,13519,16429,17042,17937,18679,18723,19077,19654,19906,19907,20173,20420,20472,21393,21561,21678,21680,22145,22388,22922,22959]]],["For",[6,6,[[18,1,1,0,1,[[586,1,1,0,1]]],[19,3,3,1,4,[[657,3,3,1,4]]],[22,2,2,4,6,[[738,1,1,4,5],[739,1,1,5,6]]]],[15759,17272,17273,17274,18838,18850]]],["Instead",[2,2,[[18,1,1,0,1,[[522,1,1,0,1]]],[22,1,1,1,2,[[733,1,1,1,2]]]],[14613,18753]]],["Whereas",[1,1,[[22,1,1,0,1,[[738,1,1,0,1]]]],[18836]]],["as",[1,1,[[17,1,1,0,1,[[469,1,1,0,1]]]],[13709]]],["because",[1,1,[[18,1,1,0,1,[[515,1,1,0,1]]]],[14510]]],["behalf",[1,1,[[9,1,1,0,1,[[269,1,1,0,1]]]],[8093]]],["beneath",[2,2,[[1,1,1,0,1,[[81,1,1,0,1]]],[4,1,1,1,2,[[185,1,1,1,2]]]],[2457,5823]]],["flat",[2,2,[[5,2,2,0,2,[[192,2,2,0,2]]]],[5954,5969]]],["for",[53,38,[[0,2,2,0,2,[[29,1,1,0,1],[43,1,1,1,2]]],[1,11,5,2,7,[[70,9,4,2,6],[71,2,1,6,7]]],[2,4,2,7,9,[[113,4,2,7,9]]],[3,1,1,9,10,[[124,1,1,9,10]]],[5,1,1,10,11,[[188,1,1,10,11]]],[8,3,3,11,14,[[237,1,1,11,12],[259,1,1,12,13],[260,1,1,13,14]]],[9,3,3,14,17,[[282,1,1,14,15],[284,1,1,15,16],[285,1,1,16,17]]],[10,5,4,17,21,[[310,3,2,17,19],[311,2,2,19,21]]],[11,1,1,21,22,[[322,1,1,21,22]]],[18,4,3,22,25,[[512,1,1,22,23],[515,1,1,23,24],[586,2,1,24,25]]],[19,3,3,25,28,[[644,1,1,25,26],[648,1,1,26,27],[657,1,1,27,28]]],[22,9,4,28,32,[[721,3,2,28,30],[738,3,1,30,31],[739,3,1,31,32]]],[23,2,2,32,34,[[762,1,1,32,33],[772,1,1,33,34]]],[25,1,1,34,35,[[805,1,1,34,35]]],[26,2,2,35,37,[[857,2,2,35,37]]],[35,1,1,37,38,[[907,1,1,37,38]]]],[845,1328,2100,2101,2102,2113,2114,3464,3466,3957,5883,7260,7858,7882,8438,8511,8532,9447,9450,9453,9457,9817,14422,14510,15760,16886,17002,17272,18508,18509,18838,18846,19404,19631,20544,21969,21983,22815]]],["in",[3,3,[[17,1,1,0,1,[[465,1,1,0,1]]],[34,2,2,1,3,[[905,2,2,1,3]]]],[13571,22775,22784]]],["instead",[18,13,[[0,1,1,0,1,[[1,1,1,0,1]]],[6,1,1,1,2,[[225,1,1,1,2]]],[9,1,1,2,3,[[283,1,1,2,3]]],[10,1,1,3,4,[[293,1,1,3,4]]],[11,1,1,4,5,[[329,1,1,4,5]]],[16,2,2,5,7,[[427,2,2,5,7]]],[17,2,1,7,8,[[466,2,1,7,8]]],[22,6,2,8,10,[[681,5,1,8,9],[733,1,1,9,10]]],[23,2,2,10,12,[[766,1,1,10,11],[781,1,1,11,12]]],[25,1,1,12,13,[[817,1,1,12,13]]]],[51,6931,8474,8823,10007,12728,12741,13628,17731,18753,19465,19875,20794]]],["of",[17,15,[[0,3,3,0,3,[[3,1,1,0,1],[21,1,1,1,2],[43,1,1,2,3]]],[3,9,7,3,10,[[119,5,3,3,6],[121,3,3,6,9],[124,1,1,9,10]]],[11,1,1,10,11,[[326,1,1,10,11]]],[12,1,1,11,12,[[366,1,1,11,12]]],[13,2,2,12,14,[[378,1,1,12,13],[392,1,1,13,14]]],[23,1,1,14,15,[[773,1,1,14,15]]]],[104,560,1357,3704,3733,3737,3811,3812,3821,3955,9917,11187,11447,11733,19661]]],["place",[16,16,[[0,1,1,0,1,[[49,1,1,0,1]]],[1,1,1,1,2,[[65,1,1,1,2]]],[2,3,3,2,5,[[102,2,2,2,4],[103,1,1,4,5]]],[5,1,1,5,6,[[190,1,1,5,6]]],[6,1,1,6,7,[[217,1,1,6,7]]],[8,1,1,7,8,[[249,1,1,7,8]]],[9,2,2,8,10,[[268,1,1,8,9],[273,1,1,9,10]]],[12,1,1,10,11,[[354,1,1,10,11]]],[17,2,2,11,13,[[471,1,1,11,12],[475,1,1,12,13]]],[22,1,1,13,14,[[724,1,1,13,14]]],[37,2,2,14,16,[[922,1,1,14,15],[924,1,1,15,16]]]],[1525,1976,3075,3080,3153,5919,6715,7517,8072,8190,10872,13756,13876,18593,23051,23078]]],["places",[1,1,[[5,1,1,0,1,[[191,1,1,0,1]]]],[5942]]],["room",[10,9,[[9,1,1,0,1,[[285,1,1,0,1]]],[10,6,5,1,6,[[292,2,1,1,2],[295,2,2,2,4],[298,1,1,4,5],[309,1,1,5,6]]],[11,2,2,6,8,[[327,1,1,6,7],[335,1,1,7,8]]],[13,1,1,8,9,[[372,1,1,8,9]]]],[8524,8805,8879,8883,9005,9403,9950,10199,11292]]],["rooms",[2,2,[[10,1,1,0,1,[[310,1,1,0,1]]],[12,1,1,1,2,[[341,1,1,1,2]]]],[9432,10426]]],["stead",[84,84,[[0,8,8,0,8,[[29,1,1,0,1],[35,7,7,1,8]]],[1,1,1,8,9,[[78,1,1,8,9]]],[2,1,1,9,10,[[95,1,1,9,10]]],[4,5,5,10,15,[[154,4,4,10,14],[162,1,1,14,15]]],[5,1,1,15,16,[[191,1,1,15,16]]],[9,2,2,16,18,[[276,1,1,16,17],[282,1,1,17,18]]],[10,14,14,18,32,[[291,2,2,18,20],[301,1,1,20,21],[304,3,3,21,24],[305,3,3,24,27],[306,3,3,27,30],[312,2,2,30,32]]],[11,24,24,32,56,[[313,1,1,32,33],[315,1,1,33,34],[320,2,2,34,36],[322,1,1,36,37],[324,1,1,37,38],[325,2,2,38,40],[326,2,2,40,42],[327,6,6,42,48],[328,1,1,48,49],[331,1,1,49,50],[332,1,1,50,51],[333,3,3,51,54],[336,2,2,54,56]]],[12,9,9,56,65,[[338,7,7,56,63],[356,1,1,63,64],[366,1,1,64,65]]],[13,15,15,65,80,[[367,1,1,65,66],[375,1,1,66,67],[378,1,1,67,68],[380,1,1,68,69],[383,1,1,69,70],[387,1,1,70,71],[388,1,1,71,72],[390,1,1,72,73],[392,1,1,73,74],[393,1,1,74,75],[394,1,1,75,76],[398,1,1,76,77],[399,2,2,77,79],[402,1,1,79,80]]],[17,1,1,80,81,[[469,1,1,80,81]]],[19,1,1,81,82,[[638,1,1,81,82]]],[20,1,1,82,83,[[662,1,1,82,83]]],[22,1,1,83,84,[[715,1,1,83,84]]]],[832,1073,1074,1075,1076,1077,1078,1079,2366,2871,4950,4959,4960,4961,5192,5941,8241,8434,8747,8752,9151,9238,9245,9249,9257,9273,9277,9289,9293,9311,9520,9530,9550,9603,9742,9751,9828,9871,9880,9895,9912,9925,9932,9935,9939,9947,9955,9963,9983,10098,10119,10137,10143,10145,10208,10219,10296,10297,10298,10299,10300,10301,10302,10908,11192,11202,11395,11453,11476,11524,11625,11645,11704,11755,11764,11791,11908,11928,11933,12001,13707,16696,17396,18390]]],["steads",[1,1,[[12,1,1,0,1,[[342,1,1,0,1]]]],[10450]]],["under",[193,173,[[0,12,12,0,12,[[6,1,1,0,1],[15,1,1,1,2],[17,2,2,2,4],[20,1,1,4,5],[23,2,2,5,7],[34,2,2,7,9],[40,1,1,9,10],[46,1,1,10,11],[48,1,1,11,12]]],[1,27,16,12,28,[[66,1,1,12,13],[70,1,1,13,14],[72,1,1,14,15],[73,2,2,15,17],[74,3,1,17,18],[75,8,4,18,22],[76,1,1,22,23],[85,6,3,23,26],[86,3,1,26,27],[87,1,1,27,28]]],[2,3,3,28,31,[[104,1,1,28,29],[111,1,1,29,30],[116,1,1,30,31]]],[3,3,3,31,34,[[122,1,1,31,32],[132,1,1,32,33],[138,1,1,33,34]]],[4,7,7,34,41,[[154,1,1,34,35],[155,1,1,35,36],[156,3,3,36,39],[164,1,1,39,40],[180,1,1,40,41]]],[5,7,7,41,48,[[193,2,2,41,43],[197,2,2,43,45],[198,1,1,45,46],[199,1,1,46,47],[210,1,1,47,48]]],[6,4,4,48,52,[[211,1,1,48,49],[213,1,1,49,50],[214,1,1,50,51],[216,1,1,51,52]]],[7,1,1,52,53,[[233,1,1,52,53]]],[8,5,5,53,58,[[249,1,1,53,54],[256,2,2,54,56],[257,1,1,56,57],[266,1,1,57,58]]],[9,7,6,58,64,[[284,2,1,58,59],[288,5,5,59,64]]],[10,8,7,64,71,[[294,2,1,64,65],[295,1,1,65,66],[297,1,1,66,67],[303,1,1,67,68],[304,1,1,68,69],[309,2,2,69,71]]],[11,4,4,71,75,[[321,1,1,71,72],[328,2,2,72,74],[329,1,1,74,75]]],[12,2,2,75,77,[[347,1,1,75,76],[354,1,1,76,77]]],[13,3,3,77,80,[[370,2,2,77,79],[394,1,1,79,80]]],[15,1,1,80,81,[[414,1,1,80,81]]],[17,10,10,81,91,[[444,1,1,81,82],[455,1,1,82,83],[461,1,1,83,84],[463,2,2,84,86],[465,1,1,86,87],[472,1,1,87,88],[475,1,1,88,89],[476,2,2,89,91]]],[18,14,13,91,104,[[485,1,1,91,92],[487,1,1,92,93],[495,5,5,93,98],[522,1,1,98,99],[524,2,1,99,100],[568,1,1,100,101],[583,1,1,101,102],[617,1,1,102,103],[621,1,1,103,104]]],[20,33,31,104,135,[[659,4,4,104,108],[660,7,7,108,115],[661,2,2,115,117],[662,4,4,117,121],[663,2,2,121,123],[664,2,2,123,125],[665,1,1,125,126],[666,4,3,126,129],[667,6,5,129,134],[668,1,1,134,135]]],[21,4,4,135,139,[[672,1,1,135,136],[674,1,1,136,137],[678,2,2,137,139]]],[22,9,7,139,146,[[681,1,1,139,140],[688,3,2,140,142],[692,1,1,142,143],[702,1,1,143,144],[703,1,1,144,145],[735,2,1,145,146]]],[23,5,5,146,151,[[746,1,1,146,147],[747,2,2,147,149],[782,1,1,149,150],[796,1,1,150,151]]],[24,1,1,151,152,[[799,1,1,151,152]]],[25,13,12,152,164,[[802,1,1,152,153],[807,2,1,153,154],[811,4,4,154,158],[818,2,2,158,160],[821,1,1,160,161],[825,1,1,161,162],[832,1,1,162,163],[833,1,1,163,164]]],[26,1,1,164,165,[[858,1,1,164,165]]],[27,1,1,165,166,[[865,1,1,165,166]]],[28,1,1,166,167,[[876,1,1,166,167]]],[29,1,1,167,168,[[880,1,1,167,168]]],[30,1,1,168,169,[[888,1,1,168,169]]],[31,1,1,169,170,[[892,1,1,169,170]]],[32,3,2,170,172,[[893,1,1,170,171],[896,2,1,171,172]]],[38,1,1,172,173,[[928,1,1,172,173]]]],[178,390,428,432,528,593,600,1015,1019,1230,1449,1498,1995,2097,2149,2181,2187,2230,2254,2256,2260,2268,2277,2590,2592,2596,2625,2637,3178,3396,3602,3841,4225,4402,4963,4992,5015,5023,5053,5242,5634,5997,5998,6110,6124,6133,6159,6502,6516,6598,6604,6665,7161,7510,7775,7780,7793,8022,8487,8612,8639,8641,8642,8650,8869,8881,8978,9198,9241,9391,9392,9769,9967,9980,9993,10671,10864,11249,11261,11768,12321,13064,13338,13475,13509,13528,13564,13772,13885,13899,13918,14018,14048,14127,14154,14156,14157,14165,14602,14628,15399,15693,16266,16307,17318,17324,17328,17329,17336,17344,17350,17351,17352,17353,17355,17360,17375,17382,17384,17388,17396,17410,17415,17418,17429,17435,17467,17473,17475,17478,17481,17484,17486,17488,17498,17560,17593,17643,17645,17713,17854,17866,17939,18100,18128,18770,18985,19008,19015,19907,20296,20388,20487,20576,20635,20641,20653,20654,20831,20848,20932,21061,21236,21275,22000,22146,22308,22392,22517,22573,22583,22624,23141]]],["unto",[1,1,[[12,1,1,0,1,[[366,1,1,0,1]]]],[11188]]],["was",[1,1,[[25,1,1,0,1,[[824,1,1,0,1]]]],[21012]]],["where",[2,2,[[17,1,1,0,1,[[471,1,1,0,1]]],[23,1,1,1,2,[[782,1,1,1,2]]]],[13752,19904]]],["with",[1,1,[[18,1,1,0,1,[[543,1,1,0,1]]]],[14890]]]]},{"k":"H8479","v":[["under",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21851]]]]},{"k":"H8480","v":[["*",[6,5,[[3,2,2,0,2,[[149,2,2,0,2]]],[12,4,3,2,5,[[343,2,2,2,4],[344,2,1,4,5]]]],[4786,4787,10478,10491,10555]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4787]]],["Tahath",[5,4,[[3,1,1,0,1,[[149,1,1,0,1]]],[12,4,3,1,4,[[343,2,2,1,3],[344,2,1,3,4]]]],[4786,10478,10491,10555]]]]},{"k":"H8481","v":[["*",[13,13,[[5,2,2,0,2,[[202,1,1,0,1],[204,1,1,1,2]]],[10,2,2,2,4,[[296,1,1,2,3],[299,1,1,3,4]]],[12,1,1,4,5,[[344,1,1,4,5]]],[13,1,1,5,6,[[374,1,1,5,6]]],[22,1,1,6,7,[[700,1,1,6,7]]],[25,6,6,7,13,[[841,2,2,7,9],[842,1,1,9,10],[843,2,2,10,12],[844,1,1,12,13]]]],[6268,6306,8902,9068,10559,11351,18061,21495,21496,21533,21557,21558,21586]]],["+",[2,2,[[25,2,2,0,2,[[843,2,2,0,2]]]],[21557,21558]]],["lower",[4,4,[[22,1,1,0,1,[[700,1,1,0,1]]],[25,3,3,1,4,[[841,2,2,1,3],[844,1,1,3,4]]]],[18061,21495,21496,21586]]],["lowest",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21533]]],["nether",[5,5,[[5,2,2,0,2,[[202,1,1,0,1],[204,1,1,1,2]]],[10,1,1,2,3,[[299,1,1,2,3]]],[12,1,1,3,4,[[344,1,1,3,4]]],[13,1,1,4,5,[[374,1,1,4,5]]]],[6268,6306,9068,10559,11351]]],["nethermost",[1,1,[[10,1,1,0,1,[[296,1,1,0,1]]]],[8902]]]]},{"k":"H8482","v":[["*",[19,19,[[0,1,1,0,1,[[5,1,1,0,1]]],[1,1,1,1,2,[[68,1,1,1,2]]],[4,1,1,2,3,[[184,1,1,2,3]]],[5,1,1,3,4,[[201,1,1,3,4]]],[6,1,1,4,5,[[211,1,1,4,5]]],[15,1,1,5,6,[[416,1,1,5,6]]],[17,1,1,6,7,[[476,1,1,6,7]]],[18,4,4,7,11,[[540,1,1,7,8],[563,1,1,8,9],[565,1,1,9,10],[616,1,1,10,11]]],[22,1,1,11,12,[[722,1,1,11,12]]],[24,1,1,12,13,[[799,1,1,12,13]]],[25,6,6,13,19,[[827,1,1,13,14],[832,3,3,14,17],[833,2,2,17,19]]]],[153,2043,5780,6221,6524,12372,13912,14848,15297,15314,16254,18556,20409,21120,21244,21246,21248,21266,21272]]],["+",[2,2,[[15,1,1,0,1,[[416,1,1,0,1]]],[24,1,1,1,2,[[799,1,1,1,2]]]],[12372,20409]]],["lower",[1,1,[[0,1,1,0,1,[[5,1,1,0,1]]]],[153]]],["lowest",[3,3,[[4,1,1,0,1,[[184,1,1,0,1]]],[18,2,2,1,3,[[563,1,1,1,2],[565,1,1,2,3]]]],[5780,15297,15314]]],["nether",[3,3,[[5,1,1,0,1,[[201,1,1,0,1]]],[6,1,1,1,2,[[211,1,1,1,2]]],[17,1,1,2,3,[[476,1,1,2,3]]]],[6221,6524,13912]]],["part",[1,1,[[1,1,1,0,1,[[68,1,1,0,1]]]],[2043]]],["parts",[9,9,[[18,2,2,0,2,[[540,1,1,0,1],[616,1,1,1,2]]],[22,1,1,2,3,[[722,1,1,2,3]]],[25,6,6,3,9,[[827,1,1,3,4],[832,3,3,4,7],[833,2,2,7,9]]]],[14848,16254,18556,21120,21244,21246,21248,21266,21272]]]]},{"k":"H8483","v":[["Tahtimhodshi",[1,1,[[9,1,1,0,1,[[290,1,1,0,1]]]],[8698]]]]},{"k":"H8484","v":[["*",[11,9,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]],[10,4,2,3,5,[[296,4,2,3,5]]],[11,1,1,5,6,[[332,1,1,5,6]]],[25,3,3,6,9,[[842,1,1,6,7],[843,2,2,7,9]]]],[2263,2599,6713,8902,8904,10102,21533,21557,21558]]],["+",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21557]]],["middle",[8,6,[[1,2,2,0,2,[[75,1,1,0,1],[85,1,1,1,2]]],[6,1,1,2,3,[[217,1,1,2,3]]],[10,4,2,3,5,[[296,4,2,3,5]]],[11,1,1,5,6,[[332,1,1,5,6]]]],[2263,2599,6713,8902,8904,10102]]],["middlemost",[1,1,[[25,1,1,0,1,[[843,1,1,0,1]]]],[21558]]],["midst",[1,1,[[25,1,1,0,1,[[842,1,1,0,1]]]],[21533]]]]},{"k":"H8485","v":[["Tema",[5,5,[[0,1,1,0,1,[[24,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[17,1,1,2,3,[[441,1,1,2,3]]],[22,1,1,3,4,[[699,1,1,3,4]]],[23,1,1,4,5,[[769,1,1,4,5]]]],[673,10282,12997,18049,19557]]]]},{"k":"H8486","v":[["*",[23,22,[[1,5,5,0,5,[[75,2,2,0,2],[76,1,1,2,3],[85,1,1,3,4],[87,1,1,4,5]]],[3,3,3,5,8,[[118,1,1,5,6],[119,1,1,6,7],[126,1,1,7,8]]],[4,1,1,8,9,[[155,1,1,8,9]]],[5,3,3,9,12,[[198,1,1,9,10],[199,1,1,10,11],[201,1,1,11,12]]],[17,2,2,12,14,[[444,1,1,12,13],[474,1,1,13,14]]],[18,1,1,14,15,[[555,1,1,14,15]]],[21,1,1,15,16,[[674,1,1,15,16]]],[22,1,1,16,17,[[721,1,1,16,17]]],[25,4,3,17,20,[[821,1,1,17,18],[848,2,1,18,19],[849,1,1,19,20]]],[37,2,2,20,22,[[916,1,1,20,21],[919,1,1,21,22]]]],[2253,2270,2281,2589,2642,3668,3721,3994,5002,6133,6158,6203,13060,13860,15139,17598,18511,20941,21698,21730,22953,23013]]],["+",[2,2,[[5,2,2,0,2,[[198,1,1,0,1],[199,1,1,1,2]]]],[6133,6158]]],["coast",[1,1,[[5,1,1,0,1,[[201,1,1,0,1]]]],[6203]]],["side",[2,2,[[3,2,2,0,2,[[118,1,1,0,1],[126,1,1,1,2]]]],[3668,3994]]],["south",[9,9,[[1,1,1,0,1,[[75,1,1,0,1]]],[17,2,2,1,3,[[444,1,1,1,2],[474,1,1,2,3]]],[21,1,1,3,4,[[674,1,1,3,4]]],[22,1,1,4,5,[[721,1,1,4,5]]],[25,2,2,5,7,[[821,1,1,5,6],[848,1,1,6,7]]],[37,2,2,7,9,[[916,1,1,7,8],[919,1,1,8,9]]]],[2270,13060,13860,17598,18511,20941,21698,22953,23013]]],["southward",[8,8,[[1,4,4,0,4,[[75,1,1,0,1],[76,1,1,1,2],[85,1,1,2,3],[87,1,1,3,4]]],[3,1,1,4,5,[[119,1,1,4,5]]],[4,1,1,5,6,[[155,1,1,5,6]]],[25,2,2,6,8,[[848,1,1,6,7],[849,1,1,7,8]]]],[2253,2281,2589,2642,3721,5002,21698,21730]]],["wind",[1,1,[[18,1,1,0,1,[[555,1,1,0,1]]]],[15139]]]]},{"k":"H8487","v":[["*",[11,11,[[0,3,3,0,3,[[35,3,3,0,3]]],[12,2,2,3,5,[[338,2,2,3,5]]],[23,2,2,5,7,[[793,2,2,5,7]]],[25,1,1,7,8,[[826,1,1,7,8]]],[29,1,1,8,9,[[879,1,1,8,9]]],[30,1,1,9,10,[[888,1,1,9,10]]],[34,1,1,10,11,[[905,1,1,10,11]]]],[1051,1055,1082,10288,10305,20134,20147,21096,22376,22519,22771]]],["+",[2,2,[[25,1,1,0,1,[[826,1,1,0,1]]],[34,1,1,1,2,[[905,1,1,1,2]]]],[21096,22771]]],["Teman",[9,9,[[0,3,3,0,3,[[35,3,3,0,3]]],[12,2,2,3,5,[[338,2,2,3,5]]],[23,2,2,5,7,[[793,2,2,5,7]]],[29,1,1,7,8,[[879,1,1,7,8]]],[30,1,1,8,9,[[888,1,1,8,9]]]],[1051,1055,1082,10288,10305,20134,20147,22376,22519]]]]},{"k":"H8488","v":[["Temeni",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10391]]]]},{"k":"H8489","v":[["*",[8,8,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[17,6,6,2,8,[[437,1,1,2,3],[439,1,1,3,4],[450,1,1,4,5],[457,1,1,5,6],[477,2,2,6,8]]]],[1074,10297,12902,12931,13204,13390,13929,13931]]],["Temani",[1,1,[[0,1,1,0,1,[[35,1,1,0,1]]]],[1074]]],["Temanite",[6,6,[[17,6,6,0,6,[[437,1,1,0,1],[439,1,1,1,2],[450,1,1,2,3],[457,1,1,3,4],[477,2,2,4,6]]]],[12902,12931,13204,13390,13929,13931]]],["Temanites",[1,1,[[12,1,1,0,1,[[338,1,1,0,1]]]],[10297]]]]},{"k":"H8490","v":[["pillars",[2,2,[[21,1,1,0,1,[[673,1,1,0,1]]],[28,1,1,1,2,[[877,1,1,1,2]]]],[17577,22341]]]]},{"k":"H8491","v":[["Tizite",[1,1,[[12,1,1,0,1,[[348,1,1,0,1]]]],[10718]]]]},{"k":"H8492","v":[["wine",[38,38,[[0,2,2,0,2,[[26,2,2,0,2]]],[3,1,1,2,3,[[134,1,1,2,3]]],[4,7,7,3,10,[[159,1,1,3,4],[163,1,1,4,5],[164,1,1,5,6],[166,1,1,6,7],[170,1,1,7,8],[180,1,1,8,9],[185,1,1,9,10]]],[6,1,1,10,11,[[219,1,1,10,11]]],[11,1,1,11,12,[[330,1,1,11,12]]],[13,2,2,12,14,[[397,1,1,12,13],[398,1,1,13,14]]],[15,5,5,14,19,[[417,1,1,14,15],[422,2,2,15,17],[425,2,2,17,19]]],[18,1,1,19,20,[[481,1,1,19,20]]],[19,1,1,20,21,[[630,1,1,20,21]]],[22,4,4,21,25,[[702,1,1,21,22],[714,1,1,22,23],[740,1,1,23,24],[743,1,1,24,25]]],[23,1,1,25,26,[[775,1,1,25,26]]],[27,6,6,26,32,[[863,3,3,26,29],[865,1,1,29,30],[868,1,1,30,31],[870,1,1,31,32]]],[28,3,3,32,35,[[876,1,1,32,33],[877,2,2,33,35]]],[32,1,1,35,36,[[898,1,1,35,36]]],[36,1,1,36,37,[[909,1,1,36,37]]],[37,1,1,37,38,[[919,1,1,37,38]]]],[755,764,4269,5124,5222,5257,5313,5388,5662,5838,6767,10056,11859,11903,12393,12586,12588,12676,12683,13972,16465,18102,18347,18862,18905,19703,22113,22114,22127,22144,22192,22210,22301,22330,22335,22663,22851,23016]]]]},{"k":"H8493","v":[["Tiria",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10401]]]]},{"k":"H8494","v":[["Tiras",[2,2,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[236,10257]]]]},{"k":"H8495","v":[["*",[4,4,[[0,2,2,0,2,[[29,1,1,0,1],[31,1,1,1,2]]],[13,1,1,2,3,[[383,1,1,2,3]]],[19,1,1,3,4,[[657,1,1,3,4]]]],[865,942,11534,17282]]],["goat",[1,1,[[19,1,1,0,1,[[657,1,1,0,1]]]],[17282]]],["goats",[3,3,[[0,2,2,0,2,[[29,1,1,0,1],[31,1,1,1,2]]],[13,1,1,2,3,[[383,1,1,2,3]]]],[865,942,11534]]]]},{"k":"H8496","v":[["*",[3,3,[[18,3,3,0,3,[[487,1,1,0,1],[532,1,1,1,2],[549,1,1,2,3]]]],[14048,14743,15014]]],["+",[1,1,[[18,1,1,0,1,[[549,1,1,0,1]]]],[15014]]],["deceit",[1,1,[[18,1,1,0,1,[[532,1,1,0,1]]]],[14743]]],["fraud",[1,1,[[18,1,1,0,1,[[487,1,1,0,1]]]],[14048]]]]},{"k":"H8497","v":[["down",[1,1,[[4,1,1,0,1,[[185,1,1,0,1]]]],[5813]]]]},{"k":"H8498","v":[["*",[2,2,[[25,1,1,0,1,[[844,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[21583,22708]]],["fashion",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21583]]],["store",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22708]]]]},{"k":"H8499","v":[["seat",[1,1,[[17,1,1,0,1,[[458,1,1,0,1]]]],[13422]]]]},{"k":"H8500","v":[["peacocks",[2,2,[[10,1,1,0,1,[[300,1,1,0,1]]],[13,1,1,1,2,[[375,1,1,1,2]]]],[9101,11385]]]]},{"k":"H8501","v":[["deceitful",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17237]]]]},{"k":"H8502","v":[["perfection",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15994]]]]},{"k":"H8503","v":[["*",[5,5,[[15,1,1,0,1,[[415,1,1,0,1]]],[17,3,3,1,4,[[446,1,1,1,2],[461,1,1,2,3],[463,1,1,3,4]]],[18,1,1,4,5,[[616,1,1,4,5]]]],[12348,13115,13477,13507,16261]]],["end",[2,2,[[15,1,1,0,1,[[415,1,1,0,1]]],[17,1,1,1,2,[[461,1,1,1,2]]]],[12348,13477]]],["perfect",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16261]]],["perfection",[2,2,[[17,2,2,0,2,[[446,1,1,0,1],[463,1,1,1,2]]]],[13115,13507]]]]},{"k":"H8504","v":[["blue",[49,49,[[1,34,34,0,34,[[74,1,1,0,1],[75,4,4,1,5],[76,1,1,5,6],[77,8,8,6,14],[84,4,4,14,18],[85,4,4,18,22],[87,2,2,22,24],[88,10,10,24,34]]],[3,6,6,34,40,[[120,5,5,34,39],[131,1,1,39,40]]],[13,3,3,40,43,[[368,2,2,40,42],[369,1,1,42,43]]],[16,2,2,43,45,[[426,1,1,43,44],[433,1,1,44,45]]],[23,1,1,45,46,[[754,1,1,45,46]]],[25,3,3,46,49,[[824,1,1,46,47],[828,2,2,47,49]]]],[2199,2236,2239,2266,2271,2288,2298,2299,2301,2308,2321,2324,2326,2330,2537,2554,2556,2566,2574,2577,2601,2603,2651,2656,2665,2666,2667,2669,2672,2685,2686,2688,2693,2695,3749,3750,3752,3754,3755,4191,11218,11225,11243,12708,12832,19210,21013,21128,21145]]]]},{"k":"H8505","v":[["*",[18,13,[[8,1,1,0,1,[[237,1,1,0,1]]],[11,1,1,1,2,[[324,1,1,1,2]]],[17,1,1,2,3,[[463,1,1,2,3]]],[18,1,1,3,4,[[552,1,1,3,4]]],[19,3,3,4,7,[[643,1,1,4,5],[648,1,1,5,6],[651,1,1,6,7]]],[22,2,2,7,9,[[718,2,2,7,9]]],[25,9,4,9,13,[[819,6,2,9,11],[834,3,2,11,13]]]],[7243,9861,13529,15074,16842,16986,17091,18432,18433,20874,20878,21297,21300]]],["+",[8,5,[[22,1,1,0,1,[[718,1,1,0,1]]],[25,7,4,1,5,[[819,4,2,1,3],[834,3,2,3,5]]]],[18433,20874,20878,21297,21300]]],["equal",[2,2,[[25,2,2,0,2,[[819,2,2,0,2]]]],[20874,20878]]],["out",[1,1,[[22,1,1,0,1,[[718,1,1,0,1]]]],[18432]]],["pondereth",[2,2,[[19,2,2,0,2,[[648,1,1,0,1],[651,1,1,1,2]]]],[16986,17091]]],["told",[1,1,[[11,1,1,0,1,[[324,1,1,0,1]]]],[9861]]],["up",[1,1,[[18,1,1,0,1,[[552,1,1,0,1]]]],[15074]]],["weighed",[1,1,[[8,1,1,0,1,[[237,1,1,0,1]]]],[7243]]],["weigheth",[2,2,[[17,1,1,0,1,[[463,1,1,0,1]]],[19,1,1,1,2,[[643,1,1,1,2]]]],[13529,16842]]]]},{"k":"H8506","v":[["*",[2,2,[[1,1,1,0,1,[[54,1,1,0,1]]],[25,1,1,1,2,[[846,1,1,1,2]]]],[1650,21641]]],["measure",[1,1,[[25,1,1,0,1,[[846,1,1,0,1]]]],[21641]]],["tale",[1,1,[[1,1,1,0,1,[[54,1,1,0,1]]]],[1650]]]]},{"k":"H8507","v":[["Tochen",[1,1,[[12,1,1,0,1,[[341,1,1,0,1]]]],[10417]]]]},{"k":"H8508","v":[["*",[2,2,[[25,2,2,0,2,[[829,1,1,0,1],[844,1,1,1,2]]]],[21169,21582]]],["pattern",[1,1,[[25,1,1,0,1,[[844,1,1,0,1]]]],[21582]]],["sum",[1,1,[[25,1,1,0,1,[[829,1,1,0,1]]]],[21169]]]]},{"k":"H8509","v":[["garment",[1,1,[[16,1,1,0,1,[[433,1,1,0,1]]]],[12832]]]]},{"k":"H8510","v":[["*",[5,5,[[4,1,1,0,1,[[165,1,1,0,1]]],[5,2,2,1,3,[[194,1,1,1,2],[197,1,1,2,3]]],[23,2,2,3,5,[[774,1,1,3,4],[793,1,1,4,5]]]],[5288,6030,6120,19685,20129]]],["heap",[4,4,[[4,1,1,0,1,[[165,1,1,0,1]]],[5,1,1,1,2,[[194,1,1,1,2]]],[23,2,2,2,4,[[774,1,1,2,3],[793,1,1,3,4]]]],[5288,6030,19685,20129]]],["strength",[1,1,[[5,1,1,0,1,[[197,1,1,0,1]]]],[6120]]]]},{"k":"H8511","v":[["*",[3,3,[[4,1,1,0,1,[[180,1,1,0,1]]],[9,1,1,1,2,[[287,1,1,1,2]]],[27,1,1,2,3,[[872,1,1,2,3]]]],[5677,8592,22247]]],["bent",[1,1,[[27,1,1,0,1,[[872,1,1,0,1]]]],[22247]]],["doubt",[1,1,[[4,1,1,0,1,[[180,1,1,0,1]]]],[5677]]],["hanged",[1,1,[[9,1,1,0,1,[[287,1,1,0,1]]]],[8592]]]]},{"k":"H8512","v":[["Telabib",[1,1,[[25,1,1,0,1,[[804,1,1,0,1]]]],[20517]]]]},{"k":"H8513","v":[["*",[5,5,[[1,1,1,0,1,[[67,1,1,0,1]]],[3,1,1,1,2,[[136,1,1,1,2]]],[15,1,1,2,3,[[421,1,1,2,3]]],[24,1,1,3,4,[[799,1,1,3,4]]],[38,1,1,4,5,[[925,1,1,4,5]]]],[2007,4325,12543,20359,23102]]],["+",[1,1,[[38,1,1,0,1,[[925,1,1,0,1]]]],[23102]]],["travail",[3,3,[[1,1,1,0,1,[[67,1,1,0,1]]],[3,1,1,1,2,[[136,1,1,1,2]]],[24,1,1,2,3,[[799,1,1,2,3]]]],[2007,4325,20359]]],["trouble",[1,1,[[15,1,1,0,1,[[421,1,1,0,1]]]],[12543]]]]},{"k":"H8514","v":[["drought",[1,1,[[27,1,1,0,1,[[874,1,1,0,1]]]],[22271]]]]},{"k":"H8515","v":[["*",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10073,18364]]],["Telassar",[1,1,[[22,1,1,0,1,[[715,1,1,0,1]]]],[18364]]],["Thelasar",[1,1,[[11,1,1,0,1,[[331,1,1,0,1]]]],[10073]]]]},{"k":"H8516","v":[["clothing",[1,1,[[22,1,1,0,1,[[737,1,1,0,1]]]],[18817]]]]},{"k":"H8517","v":[["snow",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21942]]]]},{"k":"H8518","v":[["*",[27,26,[[0,3,3,0,3,[[39,2,2,0,2],[40,1,1,2,3]]],[4,2,2,3,5,[[173,2,2,3,5]]],[5,3,2,5,7,[[194,1,1,5,6],[196,2,1,6,7]]],[9,2,2,7,9,[[270,1,1,7,8],[284,1,1,8,9]]],[16,9,9,9,18,[[427,1,1,9,10],[430,1,1,10,11],[431,1,1,11,12],[432,2,2,12,14],[433,1,1,14,15],[434,3,3,15,18]]],[17,1,1,18,19,[[461,1,1,18,19]]],[18,1,1,19,20,[[614,1,1,19,20]]],[21,1,1,20,21,[[674,1,1,20,21]]],[22,1,1,21,22,[[700,1,1,21,22]]],[24,1,1,22,23,[[801,1,1,22,23]]],[25,3,3,23,26,[[816,1,1,23,24],[828,2,2,24,26]]]],[1191,1194,1208,5469,5470,6031,6090,8132,8488,12747,12793,12797,12816,12817,12824,12847,12848,12859,13474,16224,17586,18076,20454,20757,21131,21132]]],["+",[2,2,[[16,2,2,0,2,[[431,1,1,0,1],[432,1,1,1,2]]]],[12797,12817]]],["Hang",[1,1,[[16,1,1,0,1,[[432,1,1,0,1]]]],[12816]]],["hang",[5,5,[[0,1,1,0,1,[[39,1,1,0,1]]],[4,1,1,1,2,[[173,1,1,1,2]]],[21,1,1,2,3,[[674,1,1,2,3]]],[22,1,1,3,4,[[700,1,1,3,4]]],[25,1,1,4,5,[[816,1,1,4,5]]]],[1191,5469,17586,18076,20757]]],["hanged",[15,15,[[0,2,2,0,2,[[39,1,1,0,1],[40,1,1,1,2]]],[4,1,1,2,3,[[173,1,1,2,3]]],[5,2,2,3,5,[[194,1,1,3,4],[196,1,1,4,5]]],[9,1,1,5,6,[[284,1,1,5,6]]],[16,6,6,6,12,[[427,1,1,6,7],[430,1,1,7,8],[433,1,1,8,9],[434,3,3,9,12]]],[18,1,1,12,13,[[614,1,1,12,13]]],[25,2,2,13,15,[[828,2,2,13,15]]]],[1194,1208,5470,6031,6090,8488,12747,12793,12824,12847,12848,12859,16224,21131,21132]]],["hangeth",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13474]]],["hanging",[1,1,[[5,1,1,0,1,[[196,1,1,0,1]]]],[6090]]],["up",[2,2,[[9,1,1,0,1,[[270,1,1,0,1]]],[24,1,1,1,2,[[801,1,1,1,2]]]],[8132,20454]]]]},{"k":"H8519","v":[["murmurings",[8,7,[[1,5,4,0,4,[[65,5,4,0,4]]],[3,3,3,4,7,[[130,1,1,4,5],[133,2,2,5,7]]]],[1954,1955,1956,1959,4135,4249,4254]]]]},{"k":"H8520","v":[["Telah",[1,1,[[12,1,1,0,1,[[344,1,1,0,1]]]],[10560]]]]},{"k":"H8521","v":[["*",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12086,12481]]],["Telharesha",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12481]]],["Telharsa",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12086]]]]},{"k":"H8522","v":[["quiver",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[730]]]]},{"k":"H8523","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[854,1,1,1,2]]]],[21797,21881]]],["+",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21881]]],["third",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21797]]]]},{"k":"H8524","v":[["eminent",[1,1,[[25,1,1,0,1,[[818,1,1,0,1]]]],[20847]]]]},{"k":"H8525","v":[["*",[5,5,[[17,2,2,0,2,[[466,1,1,0,1],[474,1,1,1,2]]],[18,1,1,2,3,[[542,1,1,2,3]]],[27,2,2,3,5,[[871,1,1,3,4],[873,1,1,4,5]]]],[13626,13844,14870,22229,22263]]],["furrow",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13844]]],["furrows",[3,3,[[17,1,1,0,1,[[466,1,1,0,1]]],[27,2,2,1,3,[[871,1,1,1,2],[873,1,1,2,3]]]],[13626,22229,22263]]],["ridges",[1,1,[[18,1,1,0,1,[[542,1,1,0,1]]]],[14870]]]]},{"k":"H8526","v":[["Talmai",[6,6,[[3,1,1,0,1,[[129,1,1,0,1]]],[5,1,1,1,2,[[201,1,1,1,2]]],[6,1,1,2,3,[[211,1,1,2,3]]],[9,2,2,3,5,[[269,1,1,3,4],[279,1,1,4,5]]],[12,1,1,5,6,[[340,1,1,5,6]]]],[4097,6216,6519,8084,8354,10363]]]]},{"k":"H8527","v":[["scholar",[1,1,[[12,1,1,0,1,[[362,1,1,0,1]]]],[11054]]]]},{"k":"H8528","v":[["+",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12086,12481]]]]},{"k":"H8529","v":[["scarlet",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22702]]]]},{"k":"H8530","v":[["armoury",[1,1,[[21,1,1,0,1,[[674,1,1,0,1]]]],[17586]]]]},{"k":"H8531","v":[["*",[2,2,[[26,2,2,0,2,[[854,2,2,0,2]]]],[21890,21903]]],["+",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21890]]],["third",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21903]]]]},{"k":"H8532","v":[["*",[11,11,[[14,2,2,0,2,[[408,2,2,0,2]]],[26,9,9,2,11,[[852,2,2,2,4],[855,3,3,4,7],[856,4,4,7,11]]]],[12155,12166,21830,21831,21907,21915,21918,21938,21941,21953,21957]]],["third",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12166]]],["three",[10,10,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,9,9,1,10,[[852,2,2,1,3],[855,3,3,3,6],[856,4,4,6,10]]]],[12155,21830,21831,21907,21915,21918,21938,21941,21953,21957]]]]},{"k":"H8533","v":[["thirty",[2,2,[[26,2,2,0,2,[[855,2,2,0,2]]]],[21912,21917]]]]},{"k":"H8534","v":[["bushy",[1,1,[[21,1,1,0,1,[[675,1,1,0,1]]]],[17609]]]]},{"k":"H8535","v":[["*",[13,13,[[0,1,1,0,1,[[24,1,1,0,1]]],[17,7,7,1,8,[[436,2,2,1,3],[437,1,1,3,4],[443,1,1,4,5],[444,3,3,5,8]]],[18,2,2,8,10,[[514,1,1,8,9],[541,1,1,9,10]]],[19,1,1,10,11,[[656,1,1,10,11]]],[21,2,2,11,13,[[675,1,1,11,12],[676,1,1,12,13]]]],[685,12870,12877,12894,13049,13071,13072,13073,14487,14854,17234,17600,17623]]],["perfect",[9,9,[[17,7,7,0,7,[[436,2,2,0,2],[437,1,1,2,3],[443,1,1,3,4],[444,3,3,4,7]]],[18,2,2,7,9,[[514,1,1,7,8],[541,1,1,8,9]]]],[12870,12877,12894,13049,13071,13072,13073,14487,14854]]],["plain",[1,1,[[0,1,1,0,1,[[24,1,1,0,1]]]],[685]]],["undefiled",[2,2,[[21,2,2,0,2,[[675,1,1,0,1],[676,1,1,1,2]]]],[17600,17623]]],["upright",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17234]]]]},{"k":"H8536","v":[["*",[4,4,[[14,4,4,0,4,[[407,1,1,0,1],[408,3,3,1,4]]]],[12151,12152,12157,12163]]],["+",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12152]]],["thence",[1,1,[[14,1,1,0,1,[[408,1,1,0,1]]]],[12157]]],["there",[2,2,[[14,2,2,0,2,[[407,1,1,0,1],[408,1,1,1,2]]]],[12151,12163]]]]},{"k":"H8537","v":[["*",[23,23,[[0,2,2,0,2,[[19,2,2,0,2]]],[9,1,1,2,3,[[281,1,1,2,3]]],[10,2,2,3,5,[[299,1,1,3,4],[312,1,1,4,5]]],[13,1,1,5,6,[[384,1,1,5,6]]],[17,2,2,6,8,[[439,1,1,6,7],[456,1,1,7,8]]],[18,7,7,8,15,[[484,1,1,8,9],[502,1,1,9,10],[503,2,2,10,12],[518,1,1,12,13],[555,1,1,13,14],[578,1,1,14,15]]],[19,7,7,15,22,[[629,1,1,15,16],[637,2,2,16,18],[640,1,1,18,19],[646,1,1,19,20],[647,1,1,20,21],[655,1,1,21,22]]],[22,1,1,22,23,[[725,1,1,22,23]]]],[500,501,8400,9055,9514,11575,12936,13378,14003,14272,14274,14284,14554,15185,15515,16440,16665,16685,16753,16926,16961,17202,18608]]],["full",[1,1,[[17,1,1,0,1,[[456,1,1,0,1]]]],[13378]]],["integrity",[11,11,[[0,2,2,0,2,[[19,2,2,0,2]]],[10,1,1,2,3,[[299,1,1,2,3]]],[18,6,6,3,9,[[484,1,1,3,4],[502,1,1,4,5],[503,2,2,5,7],[518,1,1,7,8],[555,1,1,8,9]]],[19,2,2,9,11,[[646,1,1,9,10],[647,1,1,10,11]]]],[500,501,9055,14003,14272,14274,14284,14554,15185,16926,16961]]],["perfect",[1,1,[[18,1,1,0,1,[[578,1,1,0,1]]]],[15515]]],["perfection",[1,1,[[22,1,1,0,1,[[725,1,1,0,1]]]],[18608]]],["simplicity",[1,1,[[9,1,1,0,1,[[281,1,1,0,1]]]],[8400]]],["upright",[2,2,[[19,2,2,0,2,[[637,1,1,0,1],[640,1,1,1,2]]]],[16685,16753]]],["uprightly",[2,2,[[19,2,2,0,2,[[629,1,1,0,1],[637,1,1,1,2]]]],[16440,16665]]],["uprightness",[2,2,[[17,1,1,0,1,[[439,1,1,0,1]]],[19,1,1,1,2,[[655,1,1,1,2]]]],[12936,17202]]],["venture",[2,2,[[10,1,1,0,1,[[312,1,1,0,1]]],[13,1,1,1,2,[[384,1,1,1,2]]]],[9514,11575]]]]},{"k":"H8538","v":[["integrity",[5,5,[[17,4,4,0,4,[[437,2,2,0,2],[462,1,1,2,3],[466,1,1,3,4]]],[19,1,1,4,5,[[638,1,1,4,5]]]],[12894,12900,13486,13594,16691]]]]},{"k":"H8539","v":[["*",[9,8,[[0,1,1,0,1,[[42,1,1,0,1]]],[17,1,1,1,2,[[461,1,1,1,2]]],[18,1,1,2,3,[[525,1,1,2,3]]],[20,1,1,3,4,[[663,1,1,3,4]]],[22,2,2,4,6,[[691,1,1,4,5],[707,1,1,5,6]]],[23,1,1,6,7,[[748,1,1,6,7]]],[34,2,1,7,8,[[903,2,1,7,8]]]],[1323,13478,14639,17405,17914,18202,19036,22736]]],["+",[2,1,[[34,2,1,0,1,[[903,2,1,0,1]]]],[22736]]],["amazed",[1,1,[[22,1,1,0,1,[[691,1,1,0,1]]]],[17914]]],["astonished",[1,1,[[17,1,1,0,1,[[461,1,1,0,1]]]],[13478]]],["marvel",[1,1,[[20,1,1,0,1,[[663,1,1,0,1]]]],[17405]]],["marvelled",[2,2,[[0,1,1,0,1,[[42,1,1,0,1]]],[18,1,1,1,2,[[525,1,1,1,2]]]],[1323,14639]]],["wonder",[2,2,[[22,1,1,0,1,[[707,1,1,0,1]]],[23,1,1,1,2,[[748,1,1,1,2]]]],[18202,19036]]]]},{"k":"H8540","v":[["wonders",[3,3,[[26,3,3,0,3,[[853,2,2,0,2],[855,1,1,2,3]]]],[21839,21840,21932]]]]},{"k":"H8541","v":[["astonishment",[2,2,[[4,1,1,0,1,[[180,1,1,0,1]]],[37,1,1,1,2,[[922,1,1,1,2]]]],[5639,23049]]]]},{"k":"H8542","v":[["Tammuz",[1,1,[[25,1,1,0,1,[[809,1,1,0,1]]]],[20618]]]]},{"k":"H8543","v":[["*",[22,21,[[0,2,2,0,2,[[30,2,2,0,2]]],[1,7,6,2,8,[[53,1,1,2,3],[54,4,3,3,6],[70,2,2,6,8]]],[4,2,2,8,10,[[156,1,1,8,9],[171,1,1,9,10]]],[5,3,3,10,13,[[189,1,1,10,11],[190,1,1,11,12],[206,1,1,12,13]]],[7,1,1,13,14,[[233,1,1,13,14]]],[8,2,2,14,16,[[255,1,1,14,15],[256,1,1,15,16]]],[9,2,2,16,18,[[269,1,1,16,17],[281,1,1,17,18]]],[11,1,1,18,19,[[325,1,1,18,19]]],[12,1,1,19,20,[[348,1,1,19,20]]],[17,1,1,20,21,[[443,1,1,20,21]]]],[875,878,1611,1639,1640,1646,2106,2113,5046,5412,5897,5928,6377,7160,7757,7777,8098,8409,9876,10675,13038]]],["+",[16,16,[[0,2,2,0,2,[[30,2,2,0,2]]],[1,6,6,2,8,[[53,1,1,2,3],[54,3,3,3,6],[70,2,2,6,8]]],[4,2,2,8,10,[[156,1,1,8,9],[171,1,1,9,10]]],[5,2,2,10,12,[[189,1,1,10,11],[206,1,1,11,12]]],[7,1,1,12,13,[[233,1,1,12,13]]],[9,1,1,13,14,[[269,1,1,13,14]]],[11,1,1,14,15,[[325,1,1,14,15]]],[12,1,1,15,16,[[348,1,1,15,16]]]],[875,878,1611,1639,1640,1646,2106,2113,5046,5412,5897,6377,7160,8098,9876,10675]]],["as",[1,1,[[5,1,1,0,1,[[190,1,1,0,1]]]],[5928]]],["days",[1,1,[[8,1,1,0,1,[[256,1,1,0,1]]]],[7777]]],["yesterday",[4,4,[[1,1,1,0,1,[[54,1,1,0,1]]],[8,1,1,1,2,[[255,1,1,1,2]]],[9,1,1,2,3,[[281,1,1,2,3]]],[17,1,1,3,4,[[443,1,1,3,4]]]],[1646,7757,8409,13038]]]]},{"k":"H8544","v":[["*",[10,10,[[1,1,1,0,1,[[69,1,1,0,1]]],[3,1,1,1,2,[[128,1,1,1,2]]],[4,6,6,2,8,[[156,5,5,2,7],[157,1,1,7,8]]],[17,1,1,8,9,[[439,1,1,8,9]]],[18,1,1,9,10,[[494,1,1,9,10]]]],[2055,4067,5016,5019,5020,5027,5029,5061,12946,14118]]],["image",[1,1,[[17,1,1,0,1,[[439,1,1,0,1]]]],[12946]]],["likeness",[5,5,[[1,1,1,0,1,[[69,1,1,0,1]]],[4,3,3,1,4,[[156,2,2,1,3],[157,1,1,3,4]]],[18,1,1,4,5,[[494,1,1,4,5]]]],[2055,5027,5029,5061,14118]]],["similitude",[4,4,[[3,1,1,0,1,[[128,1,1,0,1]]],[4,3,3,1,4,[[156,3,3,1,4]]]],[4067,5016,5019,5020]]]]},{"k":"H8545","v":[["*",[6,6,[[2,2,2,0,2,[[116,2,2,0,2]]],[7,1,1,2,3,[[235,1,1,2,3]]],[17,3,3,3,6,[[450,1,1,3,4],[455,1,1,4,5],[463,1,1,5,6]]]],[3580,3603,7197,13234,13344,13521]]],["change",[1,1,[[2,1,1,0,1,[[116,1,1,0,1]]]],[3603]]],["changing",[1,1,[[7,1,1,0,1,[[235,1,1,0,1]]]],[7197]]],["exchange",[2,2,[[2,1,1,0,1,[[116,1,1,0,1]]],[17,1,1,1,2,[[463,1,1,1,2]]]],[3580,13521]]],["recompence",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13234]]],["restitution",[1,1,[[17,1,1,0,1,[[455,1,1,0,1]]]],[13344]]]]},{"k":"H8546","v":[["*",[2,2,[[18,2,2,0,2,[[556,1,1,0,1],[579,1,1,1,2]]]],[15196,15541]]],["death",[1,1,[[18,1,1,0,1,[[579,1,1,0,1]]]],[15541]]],["die",[1,1,[[18,1,1,0,1,[[556,1,1,0,1]]]],[15196]]]]},{"k":"H8547","v":[["*",[2,2,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,1,1,1,2,[[419,1,1,1,2]]]],[12080,12475]]],["Tamah",[1,1,[[15,1,1,0,1,[[419,1,1,0,1]]]],[12475]]],["Thamah",[1,1,[[14,1,1,0,1,[[404,1,1,0,1]]]],[12080]]]]},{"k":"H8548","v":[["*",[104,103,[[1,8,8,0,8,[[74,1,1,0,1],[76,1,1,1,2],[77,3,3,2,5],[78,2,2,5,7],[79,1,1,7,8]]],[2,6,6,8,14,[[95,2,2,8,10],[113,4,4,10,14]]],[3,20,20,14,34,[[120,2,2,14,16],[125,1,1,16,17],[144,7,7,17,24],[145,10,10,24,34]]],[4,1,1,34,35,[[163,1,1,34,35]]],[9,3,3,35,38,[[275,3,3,35,38]]],[10,1,1,38,39,[[300,1,1,38,39]]],[11,3,3,39,42,[[316,1,1,39,40],[337,2,2,40,42]]],[12,5,5,42,47,[[353,4,4,42,46],[360,1,1,46,47]]],[13,3,3,47,50,[[368,1,1,47,48],[375,1,1,48,49],[390,1,1,49,50]]],[14,1,1,50,51,[[405,1,1,50,51]]],[15,2,1,51,52,[[422,2,1,51,52]]],[18,23,23,52,75,[[493,1,1,52,53],[502,1,1,53,54],[511,1,1,54,55],[512,1,1,55,56],[515,1,1,56,57],[517,2,2,57,59],[527,1,1,59,60],[528,1,1,60,61],[546,1,1,61,62],[547,1,1,62,63],[548,3,3,63,66],[549,1,1,66,67],[550,1,1,67,68],[551,1,1,68,69],[582,1,1,69,70],[586,2,2,70,72],[596,3,3,72,75]]],[19,4,4,75,79,[[632,1,1,75,76],[633,1,1,76,77],[642,1,1,77,78],[655,1,1,78,79]]],[22,8,8,79,87,[[699,1,1,79,80],[727,1,1,80,81],[729,1,1,81,82],[730,1,1,82,83],[736,1,1,83,84],[738,1,1,84,85],[740,1,1,85,86],[743,1,1,86,87]]],[23,3,3,87,90,[[750,1,1,87,88],[796,2,2,88,90]]],[25,4,4,90,94,[[839,1,1,90,91],[840,1,1,91,92],[847,2,2,92,94]]],[26,5,5,94,99,[[857,3,3,94,97],[860,1,1,97,98],[861,1,1,98,99]]],[27,1,1,99,100,[[873,1,1,99,100]]],[30,1,1,100,101,[[888,1,1,100,101]]],[33,1,1,101,102,[[902,1,1,101,102]]],[34,1,1,102,103,[[903,1,1,102,103]]]],[2225,2292,2322,2323,2331,2374,2378,2390,2862,2869,3448,3449,3450,3454,3750,3759,3981,4580,4583,4587,4592,4600,4601,4608,4614,4619,4624,4627,4630,4633,4636,4639,4642,4646,5220,8234,8237,8240,9087,9612,10251,10252,10826,10831,10857,10860,11014,11215,11371,11691,12102,12582,14100,14266,14389,14437,14507,14536,14541,14676,14694,14958,14975,14979,14982,14990,15015,15043,15071,15610,15770,15774,15942,16007,16015,16536,16561,16822,17210,18043,18652,18686,18701,18797,18832,18860,18900,19096,20309,20310,21433,21462,21669,21670,21972,21973,21974,22067,22092,22258,22526,22731,22748]]],["+",[1,1,[[22,1,1,0,1,[[740,1,1,0,1]]]],[18860]]],["alway",[4,4,[[1,1,1,0,1,[[74,1,1,0,1]]],[3,1,1,1,2,[[125,1,1,1,2]]],[9,1,1,2,3,[[275,1,1,2,3]]],[19,1,1,3,4,[[655,1,1,3,4]]]],[2225,3981,8237,17210]]],["always",[6,6,[[1,2,2,0,2,[[76,1,1,0,1],[77,1,1,1,2]]],[4,1,1,2,3,[[163,1,1,2,3]]],[18,1,1,3,4,[[493,1,1,3,4]]],[19,1,1,4,5,[[632,1,1,4,5]]],[25,1,1,5,6,[[839,1,1,5,6]]]],[2292,2331,5220,14100,16536,21433]]],["continual",[26,25,[[1,1,1,0,1,[[78,1,1,0,1]]],[3,17,17,1,18,[[120,1,1,1,2],[144,7,7,2,9],[145,9,9,9,18]]],[11,1,1,18,19,[[337,1,1,18,19]]],[13,1,1,19,20,[[368,1,1,19,20]]],[14,1,1,20,21,[[405,1,1,20,21]]],[15,2,1,21,22,[[422,2,1,21,22]]],[19,1,1,22,23,[[642,1,1,22,23]]],[23,1,1,23,24,[[796,1,1,23,24]]],[25,1,1,24,25,[[847,1,1,24,25]]]],[2378,3750,4580,4583,4587,4592,4600,4601,4608,4619,4624,4627,4630,4633,4636,4639,4642,4646,10252,11215,12102,12582,16822,20310,21670]]],["continually",[53,53,[[1,3,3,0,3,[[77,2,2,0,2],[78,1,1,2,3]]],[2,4,4,3,7,[[113,4,4,3,7]]],[9,2,2,7,9,[[275,2,2,7,9]]],[10,1,1,9,10,[[300,1,1,9,10]]],[11,2,2,10,12,[[316,1,1,10,11],[337,1,1,11,12]]],[12,5,5,12,17,[[353,4,4,12,16],[360,1,1,16,17]]],[13,2,2,17,19,[[375,1,1,17,18],[390,1,1,18,19]]],[18,19,19,19,38,[[511,1,1,19,20],[512,1,1,20,21],[515,1,1,21,22],[517,2,2,22,24],[527,1,1,24,25],[546,1,1,25,26],[547,1,1,26,27],[548,3,3,27,30],[549,1,1,30,31],[550,1,1,31,32],[551,1,1,32,33],[586,2,2,33,35],[596,3,3,35,38]]],[19,1,1,38,39,[[633,1,1,38,39]]],[22,7,7,39,46,[[699,1,1,39,40],[727,1,1,40,41],[729,1,1,41,42],[730,1,1,42,43],[736,1,1,43,44],[738,1,1,44,45],[743,1,1,45,46]]],[23,2,2,46,48,[[750,1,1,46,47],[796,1,1,47,48]]],[25,1,1,48,49,[[847,1,1,48,49]]],[27,1,1,49,50,[[873,1,1,49,50]]],[30,1,1,50,51,[[888,1,1,50,51]]],[33,1,1,51,52,[[902,1,1,51,52]]],[34,1,1,52,53,[[903,1,1,52,53]]]],[2322,2323,2374,3448,3449,3450,3454,8234,8240,9087,9612,10251,10826,10831,10857,10860,11014,11371,11691,14389,14437,14507,14536,14541,14676,14958,14975,14979,14982,14990,15015,15043,15071,15770,15774,15942,16007,16015,16561,18043,18652,18686,18701,18797,18832,18900,19096,20309,21669,22258,22526,22731,22748]]],["daily",[7,7,[[3,2,2,0,2,[[120,1,1,0,1],[145,1,1,1,2]]],[26,5,5,2,7,[[857,3,3,2,5],[860,1,1,5,6],[861,1,1,6,7]]]],[3759,4614,21972,21973,21974,22067,22092]]],["employment",[1,1,[[25,1,1,0,1,[[840,1,1,0,1]]]],[21462]]],["ever",[3,3,[[2,1,1,0,1,[[95,1,1,0,1]]],[18,2,2,1,3,[[502,1,1,1,2],[528,1,1,2,3]]]],[2862,14266,14694]]],["evermore",[1,1,[[18,1,1,0,1,[[582,1,1,0,1]]]],[15610]]],["perpetual",[2,2,[[1,1,1,0,1,[[79,1,1,0,1]]],[2,1,1,1,2,[[95,1,1,1,2]]]],[2390,2869]]]]},{"k":"H8549","v":[["*",[91,85,[[0,2,2,0,2,[[5,1,1,0,1],[16,1,1,1,2]]],[1,2,2,2,4,[[61,1,1,2,3],[78,1,1,3,4]]],[2,22,21,4,25,[[90,2,2,4,6],[92,3,3,6,9],[93,4,4,9,13],[94,2,2,13,15],[95,1,1,15,16],[98,2,2,16,18],[103,2,1,18,19],[111,2,2,19,21],[112,3,3,21,24],[114,1,1,24,25]]],[3,19,17,25,42,[[122,3,1,25,26],[135,1,1,26,27],[144,5,5,27,32],[145,10,10,32,42]]],[4,2,2,42,44,[[170,1,1,42,43],[184,1,1,43,44]]],[5,2,2,44,46,[[196,1,1,44,45],[210,1,1,45,46]]],[6,2,2,46,48,[[219,2,2,46,48]]],[8,1,1,48,49,[[249,1,1,48,49]]],[9,4,4,49,53,[[288,4,4,49,53]]],[17,3,3,53,56,[[447,1,1,53,54],[471,1,1,54,55],[472,1,1,55,56]]],[18,12,12,56,68,[[492,1,1,56,57],[495,4,4,57,61],[496,1,1,61,62],[514,1,1,62,63],[561,1,1,63,64],[578,2,2,64,66],[596,2,2,66,68]]],[19,6,6,68,74,[[628,1,1,68,69],[629,1,1,69,70],[638,2,2,70,72],[655,2,2,72,74]]],[25,13,10,74,84,[[816,1,1,74,75],[829,1,1,75,76],[844,4,3,76,79],[846,2,2,79,81],[847,5,3,81,84]]],[29,1,1,84,85,[[883,1,1,84,85]]]],[146,398,1821,2337,2748,2755,2779,2784,2787,2798,2818,2823,2827,2845,2848,2855,2955,2956,3121,3388,3390,3414,3417,3420,3499,3837,4291,4580,4586,4588,4596,4608,4610,4616,4621,4625,4628,4631,4634,4637,4640,4644,5397,5762,6077,6490,6770,6773,7549,8626,8628,8633,8635,13132,13740,13785,14089,14141,14143,14148,14150,14175,14468,15270,15515,15519,15899,15978,16412,16454,16693,16708,17206,17214,20759,21172,21594,21595,21597,21648,21653,21659,21661,21668,22433]]],["blemish",[44,38,[[1,2,2,0,2,[[61,1,1,0,1],[78,1,1,1,2]]],[2,18,17,2,19,[[90,2,2,2,4],[92,2,2,4,6],[93,4,4,6,10],[94,2,2,10,12],[95,1,1,12,13],[98,2,2,13,15],[103,2,1,15,16],[111,1,1,16,17],[112,2,2,17,19]]],[3,13,11,19,30,[[122,3,1,19,20],[144,2,2,20,22],[145,8,8,22,30]]],[25,11,8,30,38,[[844,4,3,30,33],[846,2,2,33,35],[847,5,3,35,38]]]],[1821,2337,2748,2755,2779,2784,2798,2818,2823,2827,2845,2848,2855,2955,2956,3121,3388,3414,3420,3837,4596,4608,4610,4616,4621,4628,4631,4637,4640,4644,21594,21595,21597,21648,21653,21659,21661,21668]]],["complete",[1,1,[[2,1,1,0,1,[[112,1,1,0,1]]]],[3417]]],["full",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3499]]],["perfect",[18,18,[[0,2,2,0,2,[[5,1,1,0,1],[16,1,1,1,2]]],[2,1,1,2,3,[[111,1,1,2,3]]],[4,2,2,3,5,[[170,1,1,3,4],[184,1,1,4,5]]],[8,1,1,5,6,[[249,1,1,5,6]]],[9,2,2,6,8,[[288,2,2,6,8]]],[17,2,2,8,10,[[471,1,1,8,9],[472,1,1,9,10]]],[18,5,5,10,15,[[495,2,2,10,12],[496,1,1,12,13],[578,2,2,13,15]]],[19,2,2,15,17,[[629,1,1,15,16],[638,1,1,16,17]]],[25,1,1,17,18,[[829,1,1,17,18]]]],[146,398,3390,5397,5762,7549,8633,8635,13740,13785,14148,14150,14175,15515,15519,16454,16693,21172]]],["sincerely",[2,2,[[6,2,2,0,2,[[219,2,2,0,2]]]],[6770,6773]]],["sincerity",[1,1,[[5,1,1,0,1,[[210,1,1,0,1]]]],[6490]]],["sound",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15978]]],["spot",[6,6,[[3,6,6,0,6,[[135,1,1,0,1],[144,3,3,1,4],[145,2,2,4,6]]]],[4291,4580,4586,4588,4625,4634]]],["undefiled",[1,1,[[18,1,1,0,1,[[596,1,1,0,1]]]],[15899]]],["upright",[8,8,[[9,2,2,0,2,[[288,2,2,0,2]]],[17,1,1,2,3,[[447,1,1,2,3]]],[18,3,3,3,6,[[495,2,2,3,5],[514,1,1,5,6]]],[19,2,2,6,8,[[638,1,1,6,7],[655,1,1,7,8]]]],[8626,8628,13132,14141,14143,14468,16708,17206]]],["uprightly",[4,4,[[18,2,2,0,2,[[492,1,1,0,1],[561,1,1,1,2]]],[19,1,1,2,3,[[655,1,1,2,3]]],[29,1,1,3,4,[[883,1,1,3,4]]]],[14089,15270,17214,22433]]],["whole",[4,4,[[2,1,1,0,1,[[92,1,1,0,1]]],[5,1,1,1,2,[[196,1,1,1,2]]],[19,1,1,2,3,[[628,1,1,2,3]]],[25,1,1,3,4,[[816,1,1,3,4]]]],[2787,6077,16412,20759]]]]},{"k":"H8550","v":[["Thummim",[5,5,[[1,1,1,0,1,[[77,1,1,0,1]]],[2,1,1,1,2,[[97,1,1,1,2]]],[4,1,1,2,3,[[185,1,1,2,3]]],[14,1,1,3,4,[[404,1,1,3,4]]],[15,1,1,4,5,[[419,1,1,4,5]]]],[2323,2925,5818,12090,12485]]]]},{"k":"H8551","v":[["*",[21,20,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,1,1,1,2,[[66,1,1,1,2]]],[17,1,1,2,3,[[471,1,1,2,3]]],[18,4,4,3,7,[[493,1,1,3,4],[494,1,1,4,5],[518,1,1,5,6],[540,1,1,6,7]]],[19,9,8,7,15,[[630,1,1,7,8],[631,1,1,8,9],[632,2,2,9,11],[638,2,1,11,12],[655,1,1,12,13],[656,1,1,13,14],[658,1,1,14,15]]],[22,3,3,15,18,[[711,1,1,15,16],[719,1,1,16,17],[720,1,1,17,18]]],[29,2,2,18,20,[[879,2,2,18,20]]]],[1468,1995,13753,14097,14108,14554,14847,16473,16494,16522,16539,16704,17213,17247,17303,18294,18461,18481,22369,22372]]],["+",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18294]]],["hold",[3,3,[[17,1,1,0,1,[[471,1,1,0,1]]],[19,2,2,1,3,[[632,1,1,1,2],[658,1,1,2,3]]]],[13753,16522,17303]]],["holden",[1,1,[[19,1,1,0,1,[[632,1,1,0,1]]]],[16539]]],["holdeth",[2,2,[[29,2,2,0,2,[[879,2,2,0,2]]]],[22369,22372]]],["maintainest",[1,1,[[18,1,1,0,1,[[493,1,1,0,1]]]],[14097]]],["retain",[2,2,[[19,2,2,0,2,[[631,1,1,0,1],[638,1,1,1,2]]]],[16494,16704]]],["retaineth",[2,2,[[19,2,2,0,2,[[630,1,1,0,1],[638,1,1,1,2]]]],[16473,16704]]],["stay",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17213]]],["up",[3,3,[[0,1,1,0,1,[[47,1,1,0,1]]],[1,1,1,1,2,[[66,1,1,1,2]]],[18,1,1,2,3,[[494,1,1,2,3]]]],[1468,1995,14108]]],["uphold",[3,3,[[19,1,1,0,1,[[656,1,1,0,1]]],[22,2,2,1,3,[[719,1,1,1,2],[720,1,1,2,3]]]],[17247,18461,18481]]],["upholdest",[1,1,[[18,1,1,0,1,[[518,1,1,0,1]]]],[14554]]],["upholdeth",[1,1,[[18,1,1,0,1,[[540,1,1,0,1]]]],[14847]]]]},{"k":"H8552","v":[["*",[63,61,[[0,3,2,0,2,[[46,3,2,0,2]]],[2,2,2,2,4,[[114,1,1,2,3],[115,1,1,3,4]]],[3,4,4,4,8,[[130,2,2,4,6],[133,1,1,6,7],[148,1,1,7,8]]],[4,6,6,8,14,[[154,3,3,8,11],[183,2,2,11,13],[186,1,1,13,14]]],[5,9,9,14,23,[[189,2,2,14,16],[190,3,3,16,19],[191,2,2,19,21],[194,1,1,21,22],[196,1,1,22,23]]],[8,1,1,23,24,[[251,1,1,23,24]]],[9,3,3,24,27,[[281,1,1,24,25],[286,1,1,25,26],[288,1,1,26,27]]],[10,3,3,27,30,[[296,1,1,27,28],[297,1,1,28,29],[304,1,1,29,30]]],[11,2,2,30,32,[[319,1,1,30,31],[334,1,1,31,32]]],[17,2,2,32,34,[[457,1,1,32,33],[466,1,1,33,34]]],[18,7,7,34,41,[[486,1,1,34,35],[495,1,1,35,36],[496,1,1,36,37],[541,1,1,37,38],[550,1,1,38,39],[579,1,1,39,40],[581,1,1,40,41]]],[22,3,3,41,44,[[694,1,1,41,42],[696,1,1,42,43],[711,1,1,43,44]]],[23,11,10,44,54,[[745,1,1,44,45],[750,1,1,45,46],[758,1,1,46,47],[768,1,1,47,48],[771,1,1,48,49],[780,1,1,49,50],[781,1,1,50,51],[788,4,3,51,54]]],[24,2,2,54,56,[[799,1,1,54,55],[800,1,1,55,56]]],[25,4,4,56,60,[[823,1,1,56,57],[825,2,2,57,59],[848,1,1,59,60]]],[26,1,1,60,61,[[857,1,1,60,61]]]],[1435,1438,3498,3544,4141,4143,4257,4731,4952,4953,4954,5752,5758,5847,5909,5910,5911,5920,5921,5940,5942,6026,6084,7606,8413,8572,8628,8918,8956,9228,9720,10149,13392,13628,14027,14143,14181,14856,15039,15548,15606,17973,18002,18280,18949,19118,19308,19534,19604,19865,19895,20022,20028,20037,20376,20442,20991,21066,21067,21691,21984]]],["+",[4,4,[[11,1,1,0,1,[[334,1,1,0,1]]],[17,1,1,1,2,[[457,1,1,1,2]]],[18,2,2,2,4,[[486,1,1,2,3],[550,1,1,3,4]]]],[10149,13392,14027,15039]]],["accomplish",[1,1,[[18,1,1,0,1,[[541,1,1,0,1]]]],[14856]]],["accomplished",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20442]]],["all",[1,1,[[8,1,1,0,1,[[251,1,1,0,1]]]],[7606]]],["cease",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18280]]],["clean",[3,3,[[5,3,3,0,3,[[189,1,1,0,1],[190,2,2,1,3]]]],[5910,5911,5921]]],["consume",[2,2,[[25,2,2,0,2,[[823,1,1,0,1],[825,1,1,1,2]]]],[20991,21066]]],["consumed",[23,22,[[3,3,3,0,3,[[130,1,1,0,1],[133,1,1,1,2],[148,1,1,2,3]]],[4,2,2,3,5,[[154,2,2,3,5]]],[5,3,3,5,8,[[191,1,1,5,6],[194,1,1,6,7],[196,1,1,7,8]]],[11,1,1,8,9,[[319,1,1,8,9]]],[18,1,1,9,10,[[581,1,1,9,10]]],[22,1,1,10,11,[[694,1,1,10,11]]],[23,9,8,11,19,[[750,1,1,11,12],[758,1,1,12,13],[768,1,1,13,14],[771,1,1,14,15],[780,1,1,15,16],[788,4,3,16,19]]],[24,1,1,19,20,[[799,1,1,19,20]]],[25,2,2,20,22,[[825,1,1,20,21],[848,1,1,21,22]]]],[4143,4257,4731,4953,4954,5940,6026,6084,9720,15606,17973,19118,19308,19534,19604,19865,20022,20028,20037,20376,21067,21691]]],["done",[2,2,[[5,1,1,0,1,[[191,1,1,0,1]]],[9,1,1,1,2,[[281,1,1,1,2]]]],[5942,8413]]],["end",[2,2,[[18,1,1,0,1,[[579,1,1,0,1]]],[23,1,1,1,2,[[745,1,1,1,2]]]],[15548,18949]]],["ended",[5,5,[[0,1,1,0,1,[[46,1,1,0,1]]],[4,2,2,1,3,[[183,1,1,1,2],[186,1,1,2,3]]],[9,1,1,3,4,[[286,1,1,3,4]]],[17,1,1,4,5,[[466,1,1,4,5]]]],[1438,5758,5847,8572,13628]]],["failed",[2,2,[[0,1,1,0,1,[[46,1,1,0,1]]],[5,1,1,1,2,[[189,1,1,1,2]]]],[1435,5909]]],["finished",[4,4,[[4,1,1,0,1,[[183,1,1,0,1]]],[5,1,1,1,2,[[190,1,1,1,2]]],[10,2,2,2,4,[[296,1,1,2,3],[297,1,1,3,4]]]],[5752,5920,8918,8956]]],["full",[1,1,[[26,1,1,0,1,[[857,1,1,0,1]]]],[21984]]],["gone",[1,1,[[10,1,1,0,1,[[304,1,1,0,1]]]],[9228]]],["perfect",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18002]]],["spent",[3,3,[[0,1,1,0,1,[[46,1,1,0,1]]],[2,1,1,1,2,[[115,1,1,1,2]]],[23,1,1,2,3,[[781,1,1,2,3]]]],[1438,3544,19895]]],["upright",[3,3,[[9,1,1,0,1,[[288,1,1,0,1]]],[18,2,2,1,3,[[495,1,1,1,2],[496,1,1,2,3]]]],[8628,14143,14181]]],["wasted",[2,2,[[3,1,1,0,1,[[130,1,1,0,1]]],[4,1,1,1,2,[[154,1,1,1,2]]]],[4141,4952]]],["whole",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3498]]]]},{"k":"H8553","v":[["*",[12,10,[[0,3,3,0,3,[[37,3,3,0,3]]],[5,3,3,3,6,[[201,2,2,3,5],[205,1,1,5,6]]],[6,5,3,6,9,[[224,5,3,6,9]]],[13,1,1,9,10,[[394,1,1,9,10]]]],[1131,1132,1133,6212,6259,6364,6910,6911,6914,11782]]],["Thimnathah",[1,1,[[5,1,1,0,1,[[205,1,1,0,1]]]],[6364]]],["Timnah",[3,3,[[5,2,2,0,2,[[201,2,2,0,2]]],[13,1,1,2,3,[[394,1,1,2,3]]]],[6212,6259,11782]]],["Timnath",[8,6,[[0,3,3,0,3,[[37,3,3,0,3]]],[6,5,3,3,6,[[224,5,3,3,6]]]],[1131,1132,1133,6910,6911,6914]]]]},{"k":"H8554","v":[["Timnite",[1,1,[[6,1,1,0,1,[[225,1,1,0,1]]]],[6935]]]]},{"k":"H8555","v":[["*",[6,6,[[0,3,3,0,3,[[35,3,3,0,3]]],[12,3,3,3,6,[[338,3,3,3,6]]]],[1052,1062,1080,10288,10291,10303]]],["Timna",[4,4,[[0,2,2,0,2,[[35,2,2,0,2]]],[12,2,2,2,4,[[338,2,2,2,4]]]],[1052,1062,10288,10291]]],["Timnah",[2,2,[[0,1,1,0,1,[[35,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]]],[1080,10303]]]]},{"k":"H8556","v":[["*",[3,3,[[5,2,2,0,2,[[205,1,1,0,1],[210,1,1,1,2]]],[6,1,1,2,3,[[212,1,1,2,3]]]],[6371,6506,6554]]],["Timnathheres",[1,1,[[6,1,1,0,1,[[212,1,1,0,1]]]],[6554]]],["Timnathserah",[2,2,[[5,2,2,0,2,[[205,1,1,0,1],[210,1,1,1,2]]]],[6371,6506]]]]},{"k":"H8557","v":[["melteth",[1,1,[[18,1,1,0,1,[[535,1,1,0,1]]]],[14787]]]]},{"k":"H8558","v":[["*",[11,11,[[1,1,1,0,1,[[64,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[3,1,1,2,3,[[149,1,1,2,3]]],[4,1,1,3,4,[[186,1,1,3,4]]],[6,2,2,4,6,[[211,1,1,4,5],[213,1,1,5,6]]],[15,1,1,6,7,[[420,1,1,6,7]]],[18,1,1,7,8,[[569,1,1,7,8]]],[21,2,2,8,10,[[677,2,2,8,10]]],[28,1,1,10,11,[[876,1,1,10,11]]]],[1947,3442,4769,5842,6525,6581,12508,15423,17634,17635,22303]]],["palm",[1,1,[[15,1,1,0,1,[[420,1,1,0,1]]]],[12508]]],["tree",[4,4,[[18,1,1,0,1,[[569,1,1,0,1]]],[21,2,2,1,3,[[677,2,2,1,3]]],[28,1,1,3,4,[[876,1,1,3,4]]]],[15423,17634,17635,22303]]],["trees",[6,6,[[1,1,1,0,1,[[64,1,1,0,1]]],[2,1,1,1,2,[[112,1,1,1,2]]],[3,1,1,2,3,[[149,1,1,2,3]]],[4,1,1,3,4,[[186,1,1,3,4]]],[6,2,2,4,6,[[211,1,1,4,5],[213,1,1,5,6]]]],[1947,3442,4769,5842,6525,6581]]]]},{"k":"H8559","v":[["*",[24,22,[[0,5,4,0,4,[[37,5,4,0,4]]],[7,1,1,4,5,[[235,1,1,4,5]]],[9,14,13,5,18,[[279,13,12,5,17],[280,1,1,17,18]]],[12,2,2,18,20,[[339,1,1,18,19],[340,1,1,19,20]]],[25,2,2,20,22,[[848,1,1,20,21],[849,1,1,21,22]]]],[1125,1130,1132,1143,7202,8318,8319,8321,8322,8323,8324,8325,8327,8336,8337,8339,8349,8383,10310,10370,21698,21730]]],["+",[2,2,[[25,2,2,0,2,[[848,1,1,0,1],[849,1,1,1,2]]]],[21698,21730]]],["Tamar",[22,20,[[0,5,4,0,4,[[37,5,4,0,4]]],[7,1,1,4,5,[[235,1,1,4,5]]],[9,14,13,5,18,[[279,13,12,5,17],[280,1,1,17,18]]],[12,2,2,18,20,[[339,1,1,18,19],[340,1,1,19,20]]]],[1125,1130,1132,1143,7202,8318,8319,8321,8322,8323,8324,8325,8327,8336,8337,8339,8349,8383,10310,10370]]]]},{"k":"H8560","v":[["tree",[2,2,[[6,1,1,0,1,[[214,1,1,0,1]]],[23,1,1,1,2,[[754,1,1,1,2]]]],[6604,19206]]]]},{"k":"H8561","v":[["*",[19,16,[[10,5,4,0,4,[[296,4,3,0,3],[297,1,1,3,4]]],[13,1,1,4,5,[[369,1,1,4,5]]],[25,13,11,5,16,[[841,6,6,5,11],[842,7,5,11,16]]]],[8925,8928,8931,8970,11234,21493,21499,21503,21508,21511,21514,21544,21545,21546,21551,21552]]],["tree",[3,2,[[25,3,2,0,2,[[842,3,2,0,2]]]],[21544,21545]]],["trees",[16,15,[[10,5,4,0,4,[[296,4,3,0,3],[297,1,1,3,4]]],[13,1,1,4,5,[[369,1,1,4,5]]],[25,10,10,5,15,[[841,6,6,5,11],[842,4,4,11,15]]]],[8925,8928,8931,8970,11234,21493,21499,21503,21508,21511,21514,21544,21546,21551,21552]]]]},{"k":"H8562","v":[["*",[4,4,[[16,3,3,0,3,[[427,3,3,0,3]]],[19,1,1,3,4,[[647,1,1,3,4]]]],[12727,12733,12736,16984]]],["away",[1,1,[[19,1,1,0,1,[[647,1,1,0,1]]]],[16984]]],["purification",[2,2,[[16,2,2,0,2,[[427,2,2,0,2]]]],[12727,12733]]],["purifying",[1,1,[[16,1,1,0,1,[[427,1,1,0,1]]]],[12736]]]]},{"k":"H8563","v":[["*",[3,3,[[23,2,2,0,2,[[750,1,1,0,1],[775,1,1,1,2]]],[27,1,1,2,3,[[873,1,1,2,3]]]],[19115,19706,22266]]],["bitter",[2,2,[[23,2,2,0,2,[[750,1,1,0,1],[775,1,1,1,2]]]],[19115,19706]]],["bitterly",[1,1,[[27,1,1,0,1,[[873,1,1,0,1]]]],[22266]]]]},{"k":"H8564","v":[["heaps",[1,1,[[23,1,1,0,1,[[775,1,1,0,1]]]],[19712]]]]},{"k":"H8565","v":[["*",[4,4,[[22,3,3,0,3,[[712,1,1,0,1],[713,1,1,1,2],[721,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]]],[18316,18327,18525,20423]]],["dragons",[3,3,[[22,3,3,0,3,[[712,1,1,0,1],[713,1,1,1,2],[721,1,1,2,3]]]],[18316,18327,18525]]],["monsters",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20423]]]]},{"k":"H8566","v":[["hired",[2,2,[[27,2,2,0,2,[[869,2,2,0,2]]]],[22203,22204]]]]},{"k":"H8567","v":[["*",[2,2,[[6,2,2,0,2,[[215,1,1,0,1],[221,1,1,1,2]]]],[6634,6869]]],["lament",[1,1,[[6,1,1,0,1,[[221,1,1,0,1]]]],[6869]]],["rehearse",[1,1,[[6,1,1,0,1,[[215,1,1,0,1]]]],[6634]]]]},{"k":"H8568","v":[["dragons",[2,2,[[32,1,1,0,1,[[893,1,1,0,1]]],[38,1,1,1,2,[[925,1,1,1,2]]]],[22587,23092]]]]},{"k":"H8569","v":[["*",[2,2,[[3,1,1,0,1,[[130,1,1,0,1]]],[17,1,1,1,2,[[468,1,1,1,2]]]],[4142,13660]]],["occasions",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13660]]],["promise",[1,1,[[3,1,1,0,1,[[130,1,1,0,1]]]],[4142]]]]},{"k":"H8570","v":[["*",[5,5,[[4,1,1,0,1,[[184,1,1,0,1]]],[6,1,1,1,2,[[219,1,1,1,2]]],[22,1,1,2,3,[[705,1,1,2,3]]],[24,1,1,3,4,[[800,1,1,3,4]]],[25,1,1,4,5,[[837,1,1,4,5]]]],[5771,6765,18157,20429,21389]]],["+",[1,1,[[24,1,1,0,1,[[800,1,1,0,1]]]],[20429]]],["fruit",[2,2,[[6,1,1,0,1,[[219,1,1,0,1]]],[22,1,1,1,2,[[705,1,1,1,2]]]],[6765,18157]]],["increase",[2,2,[[4,1,1,0,1,[[184,1,1,0,1]]],[25,1,1,1,2,[[837,1,1,1,2]]]],[5771,21389]]]]},{"k":"H8571","v":[["tip",[8,7,[[1,2,1,0,1,[[78,2,1,0,1]]],[2,6,6,1,7,[[97,2,2,1,3],[103,4,4,3,7]]]],[2356,2940,2941,3125,3128,3136,3139]]]]},{"k":"H8572","v":[["*",[5,5,[[17,1,1,0,1,[[468,1,1,0,1]]],[18,1,1,1,2,[[609,1,1,1,2]]],[19,3,3,2,5,[[633,2,2,2,4],[651,1,1,4,5]]]],[13665,16155,16544,16550,17112]]],["slumber",[4,4,[[18,1,1,0,1,[[609,1,1,0,1]]],[19,3,3,1,4,[[633,2,2,1,3],[651,1,1,3,4]]]],[16155,16544,16550,17112]]],["slumberings",[1,1,[[17,1,1,0,1,[[468,1,1,0,1]]]],[13665]]]]},{"k":"H8573","v":[["*",[30,28,[[1,6,6,0,6,[[78,3,3,0,3],[84,1,1,3,4],[87,2,2,4,6]]],[2,14,13,6,19,[[96,2,2,6,8],[97,2,2,8,10],[98,1,1,10,11],[99,3,2,11,13],[103,3,3,13,16],[112,3,3,16,19]]],[3,8,7,19,26,[[122,2,1,19,20],[124,4,4,20,24],[134,2,2,24,26]]],[22,2,2,26,28,[[697,1,1,26,27],[708,1,1,27,28]]]],[2360,2362,2363,2553,2657,2662,2909,2913,2944,2946,2974,2991,2992,3123,3132,3135,3417,3419,3422,3843,3950,3952,3954,3960,4268,4275,18020,18249]]],["offering",[20,20,[[1,6,6,0,6,[[78,3,3,0,3],[84,1,1,3,4],[87,2,2,4,6]]],[2,9,9,6,15,[[96,1,1,6,7],[97,2,2,7,9],[98,1,1,9,10],[99,1,1,10,11],[103,2,2,11,13],[112,2,2,13,15]]],[3,5,5,15,20,[[122,1,1,15,16],[124,4,4,16,20]]]],[2360,2362,2363,2553,2657,2662,2909,2944,2946,2974,2992,3123,3135,3417,3422,3843,3950,3952,3954,3960]]],["offerings",[1,1,[[3,1,1,0,1,[[134,1,1,0,1]]]],[4268]]],["shaking",[2,2,[[22,2,2,0,2,[[697,1,1,0,1],[708,1,1,1,2]]]],[18020,18249]]],["wave",[6,6,[[2,4,4,0,4,[[96,1,1,0,1],[99,2,2,1,3],[112,1,1,3,4]]],[3,2,2,4,6,[[122,1,1,4,5],[134,1,1,5,6]]]],[2913,2991,2992,3419,3843,4275]]],["waved",[1,1,[[2,1,1,0,1,[[103,1,1,0,1]]]],[3132]]]]},{"k":"H8574","v":[["*",[15,15,[[0,1,1,0,1,[[14,1,1,0,1]]],[1,1,1,1,2,[[57,1,1,1,2]]],[2,4,4,2,6,[[91,1,1,2,3],[96,1,1,3,4],[100,1,1,4,5],[115,1,1,5,6]]],[15,2,2,6,8,[[415,1,1,6,7],[424,1,1,7,8]]],[18,1,1,8,9,[[498,1,1,8,9]]],[22,1,1,9,10,[[709,1,1,9,10]]],[24,1,1,10,11,[[801,1,1,10,11]]],[27,3,3,11,14,[[868,3,3,11,14]]],[38,1,1,14,15,[[928,1,1,14,15]]]],[377,1713,2766,2888,3032,3550,12338,12662,14200,18259,20452,22182,22184,22185,23139]]],["furnace",[2,2,[[0,1,1,0,1,[[14,1,1,0,1]]],[22,1,1,1,2,[[709,1,1,1,2]]]],[377,18259]]],["furnaces",[2,2,[[15,2,2,0,2,[[415,1,1,0,1],[424,1,1,1,2]]]],[12338,12662]]],["oven",[10,10,[[2,4,4,0,4,[[91,1,1,0,1],[96,1,1,1,2],[100,1,1,2,3],[115,1,1,3,4]]],[18,1,1,4,5,[[498,1,1,4,5]]],[24,1,1,5,6,[[801,1,1,5,6]]],[27,3,3,6,9,[[868,3,3,6,9]]],[38,1,1,9,10,[[928,1,1,9,10]]]],[2766,2888,3032,3550,14200,20452,22182,22184,22185,23139]]],["ovens",[1,1,[[1,1,1,0,1,[[57,1,1,0,1]]]],[1713]]]]},{"k":"H8575","v":[["*",[5,5,[[17,2,2,0,2,[[450,1,1,0,1],[456,1,1,1,2]]],[18,1,1,2,3,[[571,1,1,2,3]]],[22,1,1,3,4,[[744,1,1,3,4]]],[23,1,1,4,5,[[760,1,1,4,5]]]],[13214,13357,15450,18933,19343]]],["comforts",[1,1,[[18,1,1,0,1,[[571,1,1,0,1]]]],[15450]]],["consolation",[1,1,[[23,1,1,0,1,[[760,1,1,0,1]]]],[19343]]],["consolations",[3,3,[[17,2,2,0,2,[[450,1,1,0,1],[456,1,1,1,2]]],[22,1,1,2,3,[[744,1,1,2,3]]]],[13214,13357,18933]]]]},{"k":"H8576","v":[["Tanhumeth",[2,2,[[11,1,1,0,1,[[337,1,1,0,1]]],[23,1,1,1,2,[[784,1,1,1,2]]]],[10245,19949]]]]},{"k":"H8577","v":[["*",[23,23,[[0,1,1,0,1,[[0,1,1,0,1]]],[1,3,3,1,4,[[56,3,3,1,4]]],[4,1,1,4,5,[[184,1,1,4,5]]],[15,1,1,5,6,[[414,1,1,5,6]]],[17,2,2,6,8,[[442,1,1,6,7],[465,1,1,7,8]]],[18,4,4,8,12,[[521,1,1,8,9],[551,1,1,9,10],[568,1,1,10,11],[625,1,1,11,12]]],[22,3,3,12,15,[[691,1,1,12,13],[705,1,1,13,14],[729,1,1,14,15]]],[23,6,6,15,21,[[753,1,1,15,16],[754,1,1,16,17],[758,1,1,17,18],[793,1,1,18,19],[795,2,2,19,21]]],[25,2,2,21,23,[[830,1,1,21,22],[833,1,1,22,23]]]],[20,1694,1695,1697,5791,12320,13020,13586,14590,15061,15408,16378,17928,18152,18682,19186,19223,19299,20160,20246,20249,21186,21250]]],["dragon",[6,6,[[15,1,1,0,1,[[414,1,1,0,1]]],[18,1,1,1,2,[[568,1,1,1,2]]],[22,2,2,2,4,[[705,1,1,2,3],[729,1,1,3,4]]],[23,1,1,4,5,[[795,1,1,4,5]]],[25,1,1,5,6,[[830,1,1,5,6]]]],[12320,15408,18152,18682,20246,21186]]],["dragons",[11,11,[[4,1,1,0,1,[[184,1,1,0,1]]],[17,1,1,1,2,[[465,1,1,1,2]]],[18,3,3,2,5,[[521,1,1,2,3],[551,1,1,3,4],[625,1,1,4,5]]],[22,1,1,5,6,[[691,1,1,5,6]]],[23,5,5,6,11,[[753,1,1,6,7],[754,1,1,7,8],[758,1,1,8,9],[793,1,1,9,10],[795,1,1,10,11]]]],[5791,13586,14590,15061,16378,17928,19186,19223,19299,20160,20249]]],["serpent",[2,2,[[1,2,2,0,2,[[56,2,2,0,2]]]],[1694,1695]]],["serpents",[1,1,[[1,1,1,0,1,[[56,1,1,0,1]]]],[1697]]],["whale",[2,2,[[17,1,1,0,1,[[442,1,1,0,1]]],[25,1,1,1,2,[[833,1,1,1,2]]]],[13020,21250]]],["whales",[1,1,[[0,1,1,0,1,[[0,1,1,0,1]]]],[20]]]]},{"k":"H8578","v":[["second",[1,1,[[26,1,1,0,1,[[856,1,1,0,1]]]],[21938]]]]},{"k":"H8579","v":[["again",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21765]]]]},{"k":"H8580","v":[["*",[3,3,[[2,2,2,0,2,[[100,2,2,0,2]]],[4,1,1,2,3,[[166,1,1,2,3]]]],[3015,3027,5306]]],["mole",[1,1,[[2,1,1,0,1,[[100,1,1,0,1]]]],[3027]]],["swan",[2,2,[[2,1,1,0,1,[[100,1,1,0,1]]],[4,1,1,1,2,[[166,1,1,1,2]]]],[3015,5306]]]]},{"k":"H8581","v":[["*",[22,20,[[4,4,2,0,2,[[159,2,1,0,1],[175,2,1,1,2]]],[10,1,1,2,3,[[311,1,1,2,3]]],[12,1,1,3,4,[[358,1,1,3,4]]],[17,4,4,4,8,[[444,1,1,4,5],[450,1,1,5,6],[454,1,1,6,7],[465,1,1,7,8]]],[18,6,6,8,14,[[482,1,1,8,9],[491,1,1,9,10],[530,1,1,10,11],[583,1,1,11,12],[584,1,1,12,13],[596,1,1,13,14]]],[22,2,2,14,16,[[692,1,1,14,15],[727,1,1,15,16]]],[25,2,2,16,18,[[817,2,2,16,18]]],[29,1,1,18,19,[[883,1,1,18,19]]],[32,1,1,19,20,[[895,1,1,19,20]]]],[5137,5507,9477,10940,13082,13219,13316,13567,13979,14081,14720,15691,15717,16061,17947,18643,20787,20814,22433,22617]]],["+",[3,2,[[4,2,1,0,1,[[159,2,1,0,1]]],[18,1,1,1,2,[[583,1,1,1,2]]]],[5137,15691]]],["abhor",[8,7,[[4,2,1,0,1,[[175,2,1,0,1]]],[17,2,2,1,3,[[444,1,1,1,2],[465,1,1,2,3]]],[18,2,2,3,5,[[482,1,1,3,4],[596,1,1,4,5]]],[29,1,1,5,6,[[883,1,1,5,6]]],[32,1,1,6,7,[[895,1,1,6,7]]]],[5507,13082,13567,13979,16061,22433,22617]]],["abhorred",[2,2,[[17,1,1,0,1,[[454,1,1,0,1]]],[25,1,1,1,2,[[817,1,1,1,2]]]],[13316,20787]]],["abhorreth",[2,2,[[18,1,1,0,1,[[584,1,1,0,1]]],[22,1,1,1,2,[[727,1,1,1,2]]]],[15717,18643]]],["abominable",[6,6,[[12,1,1,0,1,[[358,1,1,0,1]]],[17,1,1,1,2,[[450,1,1,1,2]]],[18,2,2,2,4,[[491,1,1,2,3],[530,1,1,3,4]]],[22,1,1,4,5,[[692,1,1,4,5]]],[25,1,1,5,6,[[817,1,1,5,6]]]],[10940,13219,14081,14720,17947,20814]]],["abominably",[1,1,[[10,1,1,0,1,[[311,1,1,0,1]]]],[9477]]]]},{"k":"H8582","v":[["*",[50,45,[[0,3,3,0,3,[[19,1,1,0,1],[20,1,1,1,2],[36,1,1,2,3]]],[1,1,1,3,4,[[72,1,1,3,4]]],[11,1,1,4,5,[[333,1,1,4,5]]],[13,1,1,5,6,[[399,1,1,5,6]]],[17,4,4,6,10,[[447,2,2,6,8],[450,1,1,8,9],[473,1,1,9,10]]],[18,6,6,10,16,[[535,1,1,10,11],[572,1,1,11,12],[584,2,2,12,14],[596,2,2,14,16]]],[19,5,5,16,21,[[634,1,1,16,17],[637,1,1,17,18],[639,1,1,18,19],[641,1,1,19,20],[648,1,1,20,21]]],[22,15,13,21,34,[[681,1,1,21,22],[687,1,1,22,23],[694,1,1,23,24],[697,3,2,24,26],[699,1,1,26,27],[706,2,1,27,28],[707,1,1,28,29],[708,1,1,29,30],[713,1,1,30,31],[725,1,1,31,32],[731,1,1,32,33],[741,1,1,33,34]]],[23,4,4,34,38,[[767,2,2,34,36],[786,1,1,36,37],[794,1,1,37,38]]],[25,7,4,38,42,[[815,1,1,38,39],[845,3,2,39,41],[849,3,1,41,42]]],[27,1,1,42,43,[[865,1,1,42,43]]],[29,1,1,43,44,[[880,1,1,43,44]]],[32,1,1,44,45,[[895,1,1,44,45]]]],[508,527,1098,2148,10128,11917,13152,13153,13234,13834,14782,15464,15703,15739,16008,16074,16600,16673,16745,16794,17000,17719,17845,17977,18017,18018,18039,18171,18217,18245,18328,18614,18717,18883,19497,19516,19995,20172,20742,21609,21614,21713,22145,22383,22613]]],["+",[3,3,[[19,1,1,0,1,[[634,1,1,0,1]]],[22,1,1,1,2,[[697,1,1,1,2]]],[25,1,1,2,3,[[849,1,1,2,3]]]],[16600,18017,21713]]],["astray",[11,9,[[1,1,1,0,1,[[72,1,1,0,1]]],[18,2,2,1,3,[[535,1,1,1,2],[596,1,1,2,3]]],[22,1,1,3,4,[[731,1,1,3,4]]],[23,1,1,4,5,[[794,1,1,4,5]]],[25,6,4,5,9,[[815,1,1,5,6],[845,3,2,6,8],[849,2,1,8,9]]]],[2148,14782,16074,18717,20172,20742,21609,21614,21713]]],["deceived",[1,1,[[17,1,1,0,1,[[450,1,1,0,1]]]],[13234]]],["dissembled",[1,1,[[23,1,1,0,1,[[786,1,1,0,1]]]],[19995]]],["err",[14,14,[[13,1,1,0,1,[[399,1,1,0,1]]],[18,1,1,1,2,[[572,1,1,1,2]]],[19,1,1,2,3,[[641,1,1,2,3]]],[22,6,6,3,9,[[681,1,1,3,4],[687,1,1,4,5],[697,1,1,5,6],[708,1,1,6,7],[713,1,1,7,8],[741,1,1,8,9]]],[23,2,2,9,11,[[767,2,2,9,11]]],[27,1,1,11,12,[[865,1,1,11,12]]],[29,1,1,12,13,[[880,1,1,12,13]]],[32,1,1,13,14,[[895,1,1,13,14]]]],[11917,15464,16794,17719,17845,18018,18245,18328,18883,19497,19516,22145,22383,22613]]],["erred",[2,2,[[18,1,1,0,1,[[596,1,1,0,1]]],[22,1,1,1,2,[[707,1,1,1,2]]]],[16008,18217]]],["erreth",[1,1,[[19,1,1,0,1,[[637,1,1,0,1]]]],[16673]]],["panted",[1,1,[[22,1,1,0,1,[[699,1,1,0,1]]]],[18039]]],["seduced",[1,1,[[11,1,1,0,1,[[333,1,1,0,1]]]],[10128]]],["seduceth",[1,1,[[19,1,1,0,1,[[639,1,1,0,1]]]],[16745]]],["stagger",[1,1,[[17,1,1,0,1,[[447,1,1,0,1]]]],[13153]]],["staggereth",[1,1,[[22,1,1,0,1,[[697,1,1,0,1]]]],[18018]]],["wander",[5,5,[[0,1,1,0,1,[[19,1,1,0,1]]],[17,2,2,1,3,[[447,1,1,1,2],[473,1,1,2,3]]],[18,1,1,3,4,[[584,1,1,3,4]]],[22,1,1,4,5,[[725,1,1,4,5]]]],[508,13152,13834,15739,18614]]],["wandered",[3,3,[[0,1,1,0,1,[[20,1,1,0,1]]],[18,1,1,1,2,[[584,1,1,1,2]]],[22,1,1,2,3,[[694,1,1,2,3]]]],[527,15703,17977]]],["wandereth",[1,1,[[19,1,1,0,1,[[648,1,1,0,1]]]],[17000]]],["wandering",[1,1,[[0,1,1,0,1,[[36,1,1,0,1]]]],[1098]]],["way",[2,1,[[22,2,1,0,1,[[706,2,1,0,1]]]],[18171]]]]},{"k":"H8583","v":[["*",[5,4,[[9,3,2,0,2,[[274,3,2,0,2]]],[12,2,2,2,4,[[355,2,2,2,4]]]],[8218,8219,10899,10900]]],["Toi",[3,2,[[9,3,2,0,2,[[274,3,2,0,2]]]],[8218,8219]]],["Tou",[2,2,[[12,2,2,0,2,[[355,2,2,0,2]]]],[10899,10900]]]]},{"k":"H8584","v":[["testimony",[3,3,[[7,1,1,0,1,[[235,1,1,0,1]]],[22,2,2,1,3,[[686,2,2,1,3]]]],[7197,17823,17827]]]]},{"k":"H8585","v":[["*",[11,11,[[10,3,3,0,3,[[308,3,3,0,3]]],[11,2,2,3,5,[[330,1,1,3,4],[332,1,1,4,5]]],[17,1,1,5,6,[[473,1,1,5,6]]],[22,2,2,6,8,[[685,1,1,6,7],[714,1,1,7,8]]],[23,2,2,8,10,[[774,1,1,8,9],[790,1,1,9,10]]],[25,1,1,10,11,[[832,1,1,10,11]]]],[9373,9376,9379,10041,10118,13818,17785,18332,19680,20056,21234]]],["conduit",[4,4,[[11,2,2,0,2,[[330,1,1,0,1],[332,1,1,1,2]]],[22,2,2,2,4,[[685,1,1,2,3],[714,1,1,3,4]]]],[10041,10118,17785,18332]]],["cured",[1,1,[[23,1,1,0,1,[[790,1,1,0,1]]]],[20056]]],["healing",[1,1,[[23,1,1,0,1,[[774,1,1,0,1]]]],[19680]]],["rivers",[1,1,[[25,1,1,0,1,[[832,1,1,0,1]]]],[21234]]],["trench",[3,3,[[10,3,3,0,3,[[308,3,3,0,3]]]],[9373,9376,9379]]],["watercourse",[1,1,[[17,1,1,0,1,[[473,1,1,0,1]]]],[13818]]]]},{"k":"H8586","v":[["*",[2,2,[[22,2,2,0,2,[[681,1,1,0,1],[744,1,1,1,2]]]],[17711,18926]]],["babes",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17711]]],["delusions",[1,1,[[22,1,1,0,1,[[744,1,1,0,1]]]],[18926]]]]},{"k":"H8587","v":[["*",[3,3,[[17,2,2,0,2,[[446,1,1,0,1],[463,1,1,1,2]]],[18,1,1,2,3,[[521,1,1,2,3]]]],[13114,13515,14592]]],["hid",[1,1,[[17,1,1,0,1,[[463,1,1,0,1]]]],[13515]]],["secrets",[2,2,[[17,1,1,0,1,[[446,1,1,0,1]]],[18,1,1,1,2,[[521,1,1,1,2]]]],[13114,14592]]]]},{"k":"H8588","v":[["*",[5,5,[[19,1,1,0,1,[[646,1,1,0,1]]],[20,1,1,1,2,[[660,1,1,1,2]]],[21,1,1,2,3,[[677,1,1,2,3]]],[32,2,2,3,5,[[893,1,1,3,4],[894,1,1,4,5]]]],[16935,17341,17633,22595,22604]]],["Delight",[1,1,[[19,1,1,0,1,[[646,1,1,0,1]]]],[16935]]],["delicate",[1,1,[[32,1,1,0,1,[[893,1,1,0,1]]]],[22595]]],["delights",[2,2,[[20,1,1,0,1,[[660,1,1,0,1]]],[21,1,1,1,2,[[677,1,1,1,2]]]],[17341,17633]]],["pleasant",[1,1,[[32,1,1,0,1,[[894,1,1,0,1]]]],[22604]]]]},{"k":"H8589","v":[["+",[1,1,[[14,1,1,0,1,[[411,1,1,0,1]]]],[12242]]]]},{"k":"H8590","v":[["*",[7,7,[[5,3,3,0,3,[[198,1,1,0,1],[203,1,1,1,2],[207,1,1,2,3]]],[6,2,2,3,5,[[211,1,1,3,4],[215,1,1,4,5]]],[10,1,1,5,6,[[294,1,1,5,6]]],[12,1,1,6,7,[[344,1,1,6,7]]]],[6151,6286,6406,6536,6642,8856,10564]]],["Taanach",[6,6,[[5,2,2,0,2,[[198,1,1,0,1],[203,1,1,1,2]]],[6,2,2,2,4,[[211,1,1,2,3],[215,1,1,3,4]]],[10,1,1,4,5,[[294,1,1,4,5]]],[12,1,1,5,6,[[344,1,1,5,6]]]],[6151,6286,6536,6642,8856,10564]]],["Tanach",[1,1,[[5,1,1,0,1,[[207,1,1,0,1]]]],[6406]]]]},{"k":"H8591","v":[["*",[2,2,[[0,1,1,0,1,[[26,1,1,0,1]]],[13,1,1,1,2,[[402,1,1,1,2]]]],[739,12009]]],["deceiver",[1,1,[[0,1,1,0,1,[[26,1,1,0,1]]]],[739]]],["misused",[1,1,[[13,1,1,0,1,[[402,1,1,0,1]]]],[12009]]]]},{"k":"H8592","v":[["power",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14935]]]]},{"k":"H8593","v":[["*",[13,13,[[3,2,2,0,2,[[122,1,1,0,1],[124,1,1,1,2]]],[8,1,1,2,3,[[252,1,1,2,3]]],[9,1,1,3,4,[[286,1,1,3,4]]],[18,1,1,4,5,[[529,1,1,4,5]]],[22,1,1,5,6,[[685,1,1,5,6]]],[23,2,2,6,8,[[780,1,1,6,7],[791,1,1,7,8]]],[25,5,5,8,13,[[806,1,1,8,9],[822,4,4,9,13]]]],[3828,3946,7669,8562,14712,17802,19865,20079,20547,20947,20948,20949,20974]]],["+",[6,6,[[3,1,1,0,1,[[124,1,1,0,1]]],[8,1,1,1,2,[[252,1,1,1,2]]],[23,1,1,2,3,[[780,1,1,2,3]]],[25,3,3,3,6,[[822,3,3,3,6]]]],[3946,7669,19865,20947,20948,20949]]],["razor",[4,4,[[3,1,1,0,1,[[122,1,1,0,1]]],[18,1,1,1,2,[[529,1,1,1,2]]],[22,1,1,2,3,[[685,1,1,2,3]]],[25,1,1,3,4,[[806,1,1,3,4]]]],[3828,14712,17802,20547]]],["scabbard",[1,1,[[23,1,1,0,1,[[791,1,1,0,1]]]],[20079]]],["sheath",[2,2,[[9,1,1,0,1,[[286,1,1,0,1]]],[25,1,1,1,2,[[822,1,1,1,2]]]],[8562,20974]]]]},{"k":"H8594","v":[["+",[2,2,[[11,1,1,0,1,[[326,1,1,0,1]]],[13,1,1,1,2,[[391,1,1,1,2]]]],[9910,11728]]]]},{"k":"H8595","v":[["errors",[2,2,[[23,2,2,0,2,[[754,1,1,0,1],[795,1,1,1,2]]]],[19216,20230]]]]},{"k":"H8596","v":[["*",[17,16,[[0,1,1,0,1,[[30,1,1,0,1]]],[1,2,1,1,2,[[64,2,1,1,2]]],[6,1,1,2,3,[[221,1,1,2,3]]],[8,2,2,3,5,[[245,1,1,3,4],[253,1,1,4,5]]],[9,1,1,5,6,[[272,1,1,5,6]]],[12,1,1,6,7,[[350,1,1,6,7]]],[17,1,1,7,8,[[456,1,1,7,8]]],[18,3,3,8,11,[[558,1,1,8,9],[626,1,1,9,10],[627,1,1,10,11]]],[22,3,3,11,14,[[683,1,1,11,12],[702,1,1,12,13],[708,1,1,13,14]]],[23,1,1,14,15,[[775,1,1,14,15]]],[25,1,1,15,16,[[829,1,1,15,16]]]],[900,1940,6863,7423,7682,8162,10768,13367,15219,16388,16398,17751,18103,18249,19695,21170]]],["tabret",[3,3,[[0,1,1,0,1,[[30,1,1,0,1]]],[8,1,1,1,2,[[245,1,1,1,2]]],[22,1,1,2,3,[[683,1,1,2,3]]]],[900,7423,17751]]],["tabrets",[5,5,[[8,1,1,0,1,[[253,1,1,0,1]]],[22,2,2,1,3,[[702,1,1,1,2],[708,1,1,2,3]]],[23,1,1,3,4,[[775,1,1,3,4]]],[25,1,1,4,5,[[829,1,1,4,5]]]],[7682,18103,18249,19695,21170]]],["timbrel",[5,5,[[1,1,1,0,1,[[64,1,1,0,1]]],[17,1,1,1,2,[[456,1,1,1,2]]],[18,3,3,2,5,[[558,1,1,2,3],[626,1,1,3,4],[627,1,1,4,5]]]],[1940,13367,15219,16388,16398]]],["timbrels",[4,4,[[1,1,1,0,1,[[64,1,1,0,1]]],[6,1,1,1,2,[[221,1,1,1,2]]],[9,1,1,2,3,[[272,1,1,2,3]]],[12,1,1,3,4,[[350,1,1,3,4]]]],[1940,6863,8162,10768]]]]},{"k":"H8597","v":[["*",[51,50,[[1,2,2,0,2,[[77,2,2,0,2]]],[4,1,1,2,3,[[178,1,1,2,3]]],[6,1,1,3,4,[[214,1,1,3,4]]],[12,3,3,4,7,[[359,1,1,4,5],[366,2,2,5,7]]],[13,1,1,7,8,[[369,1,1,7,8]]],[16,1,1,8,9,[[426,1,1,8,9]]],[18,4,4,9,13,[[548,1,1,9,10],[555,1,1,10,11],[566,1,1,11,12],[573,1,1,12,13]]],[19,6,6,13,19,[[631,1,1,13,14],[643,1,1,14,15],[644,1,1,15,16],[646,1,1,16,17],[647,1,1,17,18],[655,1,1,18,19]]],[22,18,18,19,37,[[681,1,1,19,20],[682,1,1,20,21],[688,1,1,21,22],[691,1,1,22,23],[698,1,1,23,24],[706,3,3,24,27],[722,1,1,27,28],[724,1,1,28,29],[730,1,1,29,30],[738,2,2,30,32],[740,1,1,32,33],[741,3,3,33,36],[742,1,1,36,37]]],[23,5,5,37,42,[[757,3,3,37,40],[777,1,1,40,41],[792,1,1,41,42]]],[24,1,1,42,43,[[798,1,1,42,43]]],[25,6,6,43,49,[[817,3,3,43,46],[824,2,2,46,48],[825,1,1,48,49]]],[37,2,1,49,50,[[922,2,1,49,50]]]],[2295,2333,5585,6608,10969,11175,11177,11235,12706,14984,15174,15343,15471,16499,16871,16879,16936,16983,17208,17725,17735,17862,17925,18034,18165,18168,18169,18546,18599,18697,18828,18840,18857,18878,18880,18881,18896,19277,19284,19286,19784,20097,20333,20774,20779,20801,21033,21049,21081,23052]]],["+",[1,1,[[25,1,1,0,1,[[825,1,1,0,1]]]],[21081]]],["beautiful",[6,6,[[22,2,2,0,2,[[730,1,1,0,1],[742,1,1,1,2]]],[23,2,2,2,4,[[757,1,1,2,3],[792,1,1,3,4]]],[25,2,2,4,6,[[817,1,1,4,5],[824,1,1,5,6]]]],[18697,18896,19286,20097,20774,21049]]],["beauty",[10,10,[[1,2,2,0,2,[[77,2,2,0,2]]],[13,1,1,2,3,[[369,1,1,2,3]]],[18,1,1,3,4,[[573,1,1,3,4]]],[22,5,5,4,9,[[691,1,1,4,5],[706,3,3,5,8],[722,1,1,8,9]]],[24,1,1,9,10,[[798,1,1,9,10]]]],[2295,2333,11235,15471,17925,18165,18168,18169,18546,20333]]],["bravery",[1,1,[[22,1,1,0,1,[[681,1,1,0,1]]]],[17725]]],["comely",[1,1,[[22,1,1,0,1,[[682,1,1,0,1]]]],[17735]]],["excellent",[1,1,[[16,1,1,0,1,[[426,1,1,0,1]]]],[12706]]],["fair",[3,3,[[25,3,3,0,3,[[817,2,2,0,2],[824,1,1,2,3]]]],[20779,20801,21033]]],["glorious",[3,3,[[12,1,1,0,1,[[366,1,1,0,1]]],[22,2,2,1,3,[[741,2,2,1,3]]]],[11177,18878,18880]]],["glory",[21,20,[[12,2,2,0,2,[[359,1,1,0,1],[366,1,1,1,2]]],[18,2,2,2,4,[[555,1,1,2,3],[566,1,1,3,4]]],[19,6,6,4,10,[[631,1,1,4,5],[643,1,1,5,6],[644,1,1,6,7],[646,1,1,7,8],[647,1,1,8,9],[655,1,1,9,10]]],[22,7,7,10,17,[[688,1,1,10,11],[698,1,1,11,12],[724,1,1,12,13],[738,2,2,13,15],[740,1,1,15,16],[741,1,1,16,17]]],[23,2,2,17,19,[[757,2,2,17,19]]],[37,2,1,19,20,[[922,2,1,19,20]]]],[10969,11175,15174,15343,16499,16871,16879,16936,16983,17208,17862,18034,18599,18828,18840,18857,18881,19277,19284,23052]]],["honour",[4,4,[[4,1,1,0,1,[[178,1,1,0,1]]],[6,1,1,1,2,[[214,1,1,1,2]]],[18,1,1,2,3,[[548,1,1,2,3]]],[23,1,1,3,4,[[777,1,1,3,4]]]],[5585,6608,14984,19784]]]]},{"k":"H8598","v":[["*",[6,6,[[19,1,1,0,1,[[652,1,1,0,1]]],[21,4,4,1,5,[[672,2,2,1,3],[677,1,1,3,4],[678,1,1,4,5]]],[28,1,1,5,6,[[876,1,1,5,6]]]],[17124,17557,17559,17635,17645,22303]]],["apples",[3,3,[[19,1,1,0,1,[[652,1,1,0,1]]],[21,2,2,1,3,[[672,1,1,1,2],[677,1,1,2,3]]]],[17124,17559,17635]]],["tree",[3,3,[[21,2,2,0,2,[[672,1,1,0,1],[678,1,1,1,2]]],[28,1,1,2,3,[[876,1,1,2,3]]]],[17557,17645,22303]]]]},{"k":"H8599","v":[["*",[6,5,[[5,5,4,0,4,[[198,1,1,0,1],[201,1,1,1,2],[202,1,1,2,3],[203,2,1,3,4]]],[12,1,1,4,5,[[339,1,1,4,5]]]],[6147,6236,6273,6283,10349]]],["+",[1,1,[[5,1,1,0,1,[[202,1,1,0,1]]]],[6273]]],["Tappuah",[5,4,[[5,4,3,0,3,[[198,1,1,0,1],[201,1,1,1,2],[203,2,1,2,3]]],[12,1,1,3,4,[[339,1,1,3,4]]]],[6147,6236,6283,10349]]]]},{"k":"H8600","v":[["dispersions",[1,1,[[23,1,1,0,1,[[769,1,1,0,1]]]],[19568]]]]},{"k":"H8601","v":[["baken",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2870]]]]},{"k":"H8602","v":[["*",[7,7,[[17,1,1,0,1,[[441,1,1,0,1]]],[24,1,1,1,2,[[798,1,1,1,2]]],[25,5,5,2,7,[[814,4,4,2,6],[823,1,1,6,7]]]],[12984,20346,20718,20719,20722,20723,21004]]],["things",[1,1,[[24,1,1,0,1,[[798,1,1,0,1]]]],[20346]]],["unsavoury",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12984]]],["untempered",[5,5,[[25,5,5,0,5,[[814,4,4,0,4],[823,1,1,4,5]]]],[20718,20719,20722,20723,21004]]]]},{"k":"H8603","v":[["Tophel",[1,1,[[4,1,1,0,1,[[153,1,1,0,1]]]],[4893]]]]},{"k":"H8604","v":[["*",[3,3,[[17,2,2,0,2,[[436,1,1,0,1],[459,1,1,1,2]]],[23,1,1,2,3,[[767,1,1,2,3]]]],[12891,13448,19497]]],["folly",[2,2,[[17,1,1,0,1,[[459,1,1,0,1]]],[23,1,1,1,2,[[767,1,1,1,2]]]],[13448,19497]]],["foolishly",[1,1,[[17,1,1,0,1,[[436,1,1,0,1]]]],[12891]]]]},{"k":"H8605","v":[["*",[72,67,[[9,1,1,0,1,[[273,1,1,0,1]]],[10,8,7,1,8,[[298,7,6,1,7],[299,1,1,7,8]]],[11,2,2,8,10,[[331,1,1,8,9],[332,1,1,9,10]]],[13,12,11,10,21,[[372,7,6,10,16],[373,2,2,16,18],[396,1,1,18,19],[399,2,2,19,21]]],[15,4,3,21,24,[[413,3,2,21,23],[423,1,1,23,24]]],[17,1,1,24,25,[[451,1,1,24,25]]],[18,27,26,25,51,[[481,1,1,25,26],[483,1,1,26,27],[494,1,1,27,28],[512,1,1,28,29],[516,1,1,29,30],[519,1,1,30,31],[531,1,1,31,32],[532,1,1,32,33],[538,1,1,33,34],[542,1,1,34,35],[543,2,2,35,37],[546,1,1,37,38],[549,1,1,38,39],[557,1,1,39,40],[561,1,1,40,41],[563,1,1,41,42],[565,2,2,42,44],[579,3,2,44,46],[586,2,2,46,48],[618,2,2,48,50],[620,1,1,50,51]]],[19,3,3,51,54,[[642,2,2,51,53],[655,1,1,53,54]]],[22,5,4,54,58,[[679,1,1,54,55],[715,1,1,55,56],[716,1,1,56,57],[734,2,1,57,58]]],[23,2,2,58,60,[[751,1,1,58,59],[755,1,1,59,60]]],[24,2,2,60,62,[[799,2,2,60,62]]],[26,3,3,62,65,[[858,3,3,62,65]]],[31,1,1,65,66,[[890,1,1,65,66]]],[34,1,1,66,67,[[905,1,1,66,67]]]],[8207,9013,9014,9023,9030,9034,9039,9054,10065,10103,11301,11302,11311,11317,11321,11322,11336,11339,11854,11926,11927,12302,12307,12605,13255,13966,13994,14104,14423,14524,14563,14727,14733,14820,14862,14892,14893,14948,15020,15202,15267,15290,15310,15321,15522,15538,15759,15762,16278,16281,16294,16815,16836,17205,17669,18356,18395,18760,19135,19240,20362,20398,21991,22005,22009,22555,22769]]],["prayer",[70,65,[[9,1,1,0,1,[[273,1,1,0,1]]],[10,8,7,1,8,[[298,7,6,1,7],[299,1,1,7,8]]],[11,2,2,8,10,[[331,1,1,8,9],[332,1,1,9,10]]],[13,12,11,10,21,[[372,7,6,10,16],[373,2,2,16,18],[396,1,1,18,19],[399,2,2,19,21]]],[15,4,3,21,24,[[413,3,2,21,23],[423,1,1,23,24]]],[17,1,1,24,25,[[451,1,1,24,25]]],[18,26,25,25,50,[[481,1,1,25,26],[483,1,1,26,27],[494,1,1,27,28],[512,1,1,28,29],[516,1,1,29,30],[519,1,1,30,31],[531,1,1,31,32],[532,1,1,32,33],[538,1,1,33,34],[542,1,1,34,35],[543,2,2,35,37],[546,1,1,37,38],[557,1,1,38,39],[561,1,1,39,40],[563,1,1,40,41],[565,2,2,41,43],[579,3,2,43,45],[586,2,2,45,47],[618,2,2,47,49],[620,1,1,49,50]]],[19,3,3,50,53,[[642,2,2,50,52],[655,1,1,52,53]]],[22,4,3,53,56,[[715,1,1,53,54],[716,1,1,54,55],[734,2,1,55,56]]],[23,2,2,56,58,[[751,1,1,56,57],[755,1,1,57,58]]],[24,2,2,58,60,[[799,2,2,58,60]]],[26,3,3,60,63,[[858,3,3,60,63]]],[31,1,1,63,64,[[890,1,1,63,64]]],[34,1,1,64,65,[[905,1,1,64,65]]]],[8207,9013,9014,9023,9030,9034,9039,9054,10065,10103,11301,11302,11311,11317,11321,11322,11336,11339,11854,11926,11927,12302,12307,12605,13255,13966,13994,14104,14423,14524,14563,14727,14733,14820,14862,14892,14893,14948,15202,15267,15290,15310,15321,15522,15538,15759,15762,16278,16281,16294,16815,16836,17205,18356,18395,18760,19135,19240,20362,20398,21991,22005,22009,22555,22769]]],["prayers",[2,2,[[18,1,1,0,1,[[549,1,1,0,1]]],[22,1,1,1,2,[[679,1,1,1,2]]]],[15020,17669]]]]},{"k":"H8606","v":[["terribleness",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20143]]]]},{"k":"H8607","v":[["*",[2,2,[[10,1,1,0,1,[[294,1,1,0,1]]],[11,1,1,1,2,[[327,1,1,1,2]]]],[8868,9941]]],["+",[1,1,[[10,1,1,0,1,[[294,1,1,0,1]]]],[8868]]],["Tiphsah",[1,1,[[11,1,1,0,1,[[327,1,1,0,1]]]],[9941]]]]},{"k":"H8608","v":[["*",[2,2,[[18,1,1,0,1,[[545,1,1,0,1]]],[33,1,1,1,2,[[901,1,1,1,2]]]],[14925,22706]]],["tabering",[1,1,[[33,1,1,0,1,[[901,1,1,0,1]]]],[22706]]],["timbrels",[1,1,[[18,1,1,0,1,[[545,1,1,0,1]]]],[14925]]]]},{"k":"H8609","v":[["*",[4,4,[[0,1,1,0,1,[[2,1,1,0,1]]],[17,1,1,1,2,[[451,1,1,1,2]]],[20,1,1,2,3,[[661,1,1,2,3]]],[25,1,1,3,4,[[814,1,1,3,4]]]],[62,13253,17366,20726]]],["sew",[2,2,[[20,1,1,0,1,[[661,1,1,0,1]]],[25,1,1,1,2,[[814,1,1,1,2]]]],[17366,20726]]],["sewed",[2,2,[[0,1,1,0,1,[[2,1,1,0,1]]],[17,1,1,1,2,[[451,1,1,1,2]]]],[62,13253]]]]},{"k":"H8610","v":[["*",[65,60,[[0,2,2,0,2,[[3,1,1,0,1],[38,1,1,1,2]]],[3,2,2,2,4,[[121,1,1,2,3],[147,1,1,3,4]]],[4,4,4,4,8,[[161,1,1,4,5],[172,1,1,5,6],[173,1,1,6,7],[174,1,1,7,8]]],[5,2,2,8,10,[[194,2,2,8,10]]],[8,2,2,10,12,[[250,1,1,10,11],[258,1,1,11,12]]],[10,6,4,12,16,[[301,1,1,12,13],[303,1,1,13,14],[308,2,1,14,15],[310,2,1,15,16]]],[11,8,7,16,23,[[319,1,1,16,17],[322,2,1,17,18],[326,2,2,18,20],[328,1,1,20,21],[330,1,1,21,22],[337,1,1,22,23]]],[13,1,1,23,24,[[391,1,1,23,24]]],[18,2,2,24,26,[[487,1,1,24,25],[548,1,1,25,26]]],[19,2,2,26,28,[[657,2,2,26,28]]],[22,2,2,28,30,[[681,1,1,28,29],[714,1,1,29,30]]],[23,18,16,30,46,[[746,1,1,30,31],[770,1,1,31,32],[778,2,1,32,33],[781,2,2,33,35],[782,1,1,35,36],[784,1,1,36,37],[790,2,1,37,38],[792,1,1,38,39],[793,1,1,39,40],[794,3,3,40,43],[795,2,2,43,45],[796,1,1,45,46]]],[25,12,12,46,58,[[813,1,1,46,47],[815,1,1,47,48],[818,1,1,48,49],[820,2,2,49,51],[822,3,3,51,54],[828,1,1,54,55],[830,1,1,55,56],[831,1,1,56,57],[839,1,1,57,58]]],[29,1,1,58,59,[[880,1,1,58,59]]],[34,1,1,59,60,[[904,1,1,59,60]]]],[100,1161,3805,4691,5174,5446,5466,5498,6010,6025,7568,7836,9138,9188,9381,9426,9719,9807,9903,9909,9972,10037,10228,11727,14043,14987,17260,17279,17713,18331,18973,19580,19804,19887,19888,19918,19951,20054,20121,20143,20182,20190,20212,20244,20253,20285,20693,20736,20845,20885,20889,20955,20967,20968,21150,21190,21225,21429,22394,22767]]],["+",[11,10,[[5,1,1,0,1,[[194,1,1,0,1]]],[8,1,1,1,2,[[250,1,1,1,2]]],[10,1,1,2,3,[[308,1,1,2,3]]],[11,2,2,3,5,[[326,1,1,3,4],[337,1,1,4,5]]],[23,4,3,5,8,[[778,2,1,5,6],[781,1,1,6,7],[796,1,1,7,8]]],[25,2,2,8,10,[[815,1,1,8,9],[822,1,1,9,10]]]],[6010,7568,9381,9903,10228,19804,19887,20285,20736,20955]]],["Take",[1,1,[[11,1,1,0,1,[[322,1,1,0,1]]]],[9807]]],["catch",[1,1,[[11,1,1,0,1,[[319,1,1,0,1]]]],[9719]]],["caught",[3,3,[[0,1,1,0,1,[[38,1,1,0,1]]],[10,1,1,1,2,[[301,1,1,1,2]]],[23,1,1,2,3,[[794,1,1,2,3]]]],[1161,9138,20190]]],["handle",[5,4,[[0,1,1,0,1,[[3,1,1,0,1]]],[23,3,2,1,3,[[746,1,1,1,2],[790,2,1,2,3]]],[25,1,1,3,4,[[828,1,1,3,4]]]],[100,18973,20054,21150]]],["handleth",[2,2,[[23,1,1,0,1,[[794,1,1,0,1]]],[29,1,1,1,2,[[880,1,1,1,2]]]],[20182,22394]]],["handling",[1,1,[[25,1,1,0,1,[[839,1,1,0,1]]]],[21429]]],["hold",[7,7,[[4,2,2,0,2,[[173,1,1,0,1],[174,1,1,1,2]]],[10,1,1,2,3,[[303,1,1,2,3]]],[19,1,1,3,4,[[657,1,1,3,4]]],[22,1,1,4,5,[[681,1,1,4,5]]],[25,2,2,5,7,[[830,1,1,5,6],[831,1,1,6,7]]]],[5466,5498,9188,17279,17713,21190,21225]]],["holdest",[1,1,[[23,1,1,0,1,[[793,1,1,0,1]]]],[20143]]],["over",[1,1,[[34,1,1,0,1,[[904,1,1,0,1]]]],[22767]]],["stopped",[1,1,[[23,1,1,0,1,[[795,1,1,0,1]]]],[20244]]],["surprised",[2,2,[[23,2,2,0,2,[[792,1,1,0,1],[795,1,1,1,2]]]],[20121,20253]]],["take",[6,5,[[4,1,1,0,1,[[172,1,1,0,1]]],[8,1,1,1,2,[[258,1,1,1,2]]],[10,2,1,2,3,[[310,2,1,2,3]]],[18,1,1,3,4,[[548,1,1,3,4]]],[19,1,1,4,5,[[657,1,1,4,5]]]],[5446,7836,9426,14987,17260]]],["taken",[10,10,[[3,1,1,0,1,[[121,1,1,0,1]]],[18,1,1,1,2,[[487,1,1,1,2]]],[23,2,2,2,4,[[782,1,1,2,3],[784,1,1,3,4]]],[25,6,6,4,10,[[813,1,1,4,5],[818,1,1,5,6],[820,2,2,6,8],[822,2,2,8,10]]]],[3805,14043,19918,19951,20693,20845,20885,20889,20967,20968]]],["taking",[1,1,[[23,1,1,0,1,[[794,1,1,0,1]]]],[20212]]],["took",[12,12,[[3,1,1,0,1,[[147,1,1,0,1]]],[4,1,1,1,2,[[161,1,1,1,2]]],[5,1,1,2,3,[[194,1,1,2,3]]],[10,1,1,3,4,[[308,1,1,3,4]]],[11,4,4,4,8,[[322,1,1,4,5],[326,1,1,5,6],[328,1,1,6,7],[330,1,1,7,8]]],[13,1,1,8,9,[[391,1,1,8,9]]],[22,1,1,9,10,[[714,1,1,9,10]]],[23,2,2,10,12,[[770,1,1,10,11],[781,1,1,11,12]]]],[4691,5174,6025,9381,9807,9909,9972,10037,11727,18331,19580,19888]]]]},{"k":"H8611","v":[["tabret",[1,1,[[17,1,1,0,1,[[452,1,1,0,1]]]],[13266]]]]},{"k":"H8612","v":[["*",[9,8,[[11,1,1,0,1,[[335,1,1,0,1]]],[23,8,7,1,8,[[751,3,2,1,3],[763,5,5,3,8]]]],[10175,19150,19151,19413,19418,19419,19420,19421]]],["+",[1,1,[[23,1,1,0,1,[[763,1,1,0,1]]]],[19421]]],["Tophet",[7,6,[[23,7,6,0,6,[[751,3,2,0,2],[763,4,4,2,6]]]],[19150,19151,19413,19418,19419,19420]]],["Topheth",[1,1,[[11,1,1,0,1,[[335,1,1,0,1]]]],[10175]]]]},{"k":"H8613","v":[["Tophet",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18250]]]]},{"k":"H8614","v":[["sheriffs",[2,2,[[26,2,2,0,2,[[852,2,2,0,2]]]],[21809,21810]]]]},{"k":"H8615","v":[["*",[34,33,[[5,2,2,0,2,[[188,2,2,0,2]]],[7,1,1,2,3,[[232,1,1,2,3]]],[17,13,12,3,15,[[439,1,1,3,4],[440,1,1,4,5],[441,1,1,5,6],[442,1,1,6,7],[443,1,1,7,8],[446,2,2,8,10],[449,2,2,10,12],[452,2,1,12,13],[454,1,1,13,14],[462,1,1,14,15]]],[18,3,3,15,18,[[486,1,1,15,16],[539,1,1,16,17],[548,1,1,17,18]]],[19,8,8,18,26,[[637,1,1,18,19],[638,2,2,19,21],[646,1,1,21,22],[650,1,1,22,23],[651,1,1,23,24],[653,1,1,24,25],[656,1,1,25,26]]],[23,2,2,26,28,[[773,1,1,26,27],[775,1,1,27,28]]],[24,1,1,28,29,[[799,1,1,28,29]]],[25,2,2,29,31,[[820,1,1,29,30],[838,1,1,30,31]]],[27,1,1,31,32,[[863,1,1,31,32]]],[37,1,1,32,33,[[919,1,1,32,33]]]],[5887,5890,7139,12936,12967,12986,13014,13042,13126,13128,13188,13200,13275,13307,13489,14039,14832,14981,16684,16695,16711,16943,17062,17093,17153,17244,19646,19708,20383,20886,21408,22120,23011]]],["expectation",[7,7,[[18,2,2,0,2,[[486,1,1,0,1],[539,1,1,1,2]]],[19,5,5,2,7,[[637,1,1,2,3],[638,2,2,3,5],[650,1,1,5,6],[651,1,1,6,7]]]],[14039,14832,16684,16695,16711,17062,17093]]],["expected",[1,1,[[23,1,1,0,1,[[773,1,1,0,1]]]],[19646]]],["for",[1,1,[[17,1,1,0,1,[[441,1,1,0,1]]]],[12986]]],["hope",[23,22,[[7,1,1,0,1,[[232,1,1,0,1]]],[17,12,11,1,12,[[439,1,1,1,2],[440,1,1,2,3],[442,1,1,3,4],[443,1,1,4,5],[446,2,2,5,7],[449,2,2,7,9],[452,2,1,9,10],[454,1,1,10,11],[462,1,1,11,12]]],[18,1,1,12,13,[[548,1,1,12,13]]],[19,3,3,13,16,[[646,1,1,13,14],[653,1,1,14,15],[656,1,1,15,16]]],[23,1,1,16,17,[[775,1,1,16,17]]],[24,1,1,17,18,[[799,1,1,17,18]]],[25,2,2,18,20,[[820,1,1,18,19],[838,1,1,19,20]]],[27,1,1,20,21,[[863,1,1,20,21]]],[37,1,1,21,22,[[919,1,1,21,22]]]],[7139,12936,12967,13014,13042,13126,13128,13188,13200,13275,13307,13489,14981,16943,17153,17244,19708,20383,20886,21408,22120,23011]]],["line",[2,2,[[5,2,2,0,2,[[188,2,2,0,2]]]],[5887,5890]]]]},{"k":"H8616","v":[["*",[3,3,[[11,1,1,0,1,[[334,1,1,0,1]]],[13,1,1,1,2,[[400,1,1,1,2]]],[14,1,1,2,3,[[412,1,1,2,3]]]],[10159,11955,12267]]],["Tikvah",[2,2,[[11,1,1,0,1,[[334,1,1,0,1]]],[14,1,1,1,2,[[412,1,1,1,2]]]],[10159,12267]]],["Tikvath",[1,1,[[13,1,1,0,1,[[400,1,1,0,1]]]],[11955]]]]},{"k":"H8617","v":[["stand",[1,1,[[2,1,1,0,1,[[115,1,1,0,1]]]],[3561]]]]},{"k":"H8618","v":[["against",[1,1,[[18,1,1,0,1,[[616,1,1,0,1]]]],[16260]]]]},{"k":"H8619","v":[["trumpet",[1,1,[[25,1,1,0,1,[[808,1,1,0,1]]]],[20591]]]]},{"k":"H8620","v":[["*",[7,7,[[9,1,1,0,1,[[280,1,1,0,1]]],[12,2,2,1,3,[[339,1,1,1,2],[341,1,1,2,3]]],[13,2,2,3,5,[[377,1,1,3,4],[386,1,1,4,5]]],[23,1,1,5,6,[[750,1,1,5,6]]],[29,1,1,6,7,[[879,1,1,6,7]]]],[8358,10330,10390,11420,11607,19090,22365]]],["+",[1,1,[[29,1,1,0,1,[[879,1,1,0,1]]]],[22365]]],["Tekoa",[5,5,[[12,2,2,0,2,[[339,1,1,0,1],[341,1,1,1,2]]],[13,2,2,2,4,[[377,1,1,2,3],[386,1,1,3,4]]],[23,1,1,4,5,[[750,1,1,4,5]]]],[10330,10390,11420,11607,19090]]],["Tekoah",[1,1,[[9,1,1,0,1,[[280,1,1,0,1]]]],[8358]]]]},{"k":"H8621","v":[["*",[7,7,[[9,3,3,0,3,[[280,2,2,0,2],[289,1,1,2,3]]],[12,2,2,3,5,[[348,1,1,3,4],[364,1,1,4,5]]],[15,2,2,5,7,[[415,2,2,5,7]]]],[8360,8365,8679,10701,11118,12332,12354]]],["Tekoah",[2,2,[[9,2,2,0,2,[[280,2,2,0,2]]]],[8360,8365]]],["Tekoite",[3,3,[[9,1,1,0,1,[[289,1,1,0,1]]],[12,2,2,1,3,[[348,1,1,1,2],[364,1,1,2,3]]]],[8679,10701,11118]]],["Tekoites",[2,2,[[15,2,2,0,2,[[415,2,2,0,2]]]],[12332,12354]]]]},{"k":"H8622","v":[["*",[4,4,[[1,1,1,0,1,[[83,1,1,0,1]]],[8,1,1,1,2,[[236,1,1,1,2]]],[13,1,1,2,3,[[390,1,1,2,3]]],[18,1,1,3,4,[[496,1,1,3,4]]]],[2518,7232,11700,14174]]],["circuit",[1,1,[[18,1,1,0,1,[[496,1,1,0,1]]]],[14174]]],["come",[1,1,[[8,1,1,0,1,[[236,1,1,0,1]]]],[7232]]],["end",[2,2,[[1,1,1,0,1,[[83,1,1,0,1]]],[13,1,1,1,2,[[390,1,1,1,2]]]],[2518,11700]]]]},{"k":"H8623","v":[["+",[1,1,[[20,1,1,0,1,[[664,1,1,0,1]]]],[17427]]]]},{"k":"H8624","v":[["*",[5,5,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,4,4,1,5,[[851,2,2,1,3],[853,1,1,3,4],[856,1,1,4,5]]]],[12130,21798,21800,21840,21940]]],["mighty",[2,2,[[14,1,1,0,1,[[406,1,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[12130,21840]]],["strong",[3,3,[[26,3,3,0,3,[[851,2,2,0,2],[856,1,1,2,3]]]],[21798,21800,21940]]]]},{"k":"H8625","v":[["*",[3,2,[[26,3,2,0,2,[[854,3,2,0,2]]]],[21899,21901]]],["TEKEL",[2,2,[[26,2,2,0,2,[[854,2,2,0,2]]]],[21899,21901]]],["weighed",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21901]]]]},{"k":"H8626","v":[["*",[3,3,[[20,3,3,0,3,[[659,1,1,0,1],[665,1,1,1,2],[670,1,1,2,3]]]],[17330,17442,17532]]],["+",[1,1,[[20,1,1,0,1,[[665,1,1,0,1]]]],[17442]]],["order",[1,1,[[20,1,1,0,1,[[670,1,1,0,1]]]],[17532]]],["straight",[1,1,[[20,1,1,0,1,[[659,1,1,0,1]]]],[17330]]]]},{"k":"H8627","v":[["established",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21873]]]]},{"k":"H8628","v":[["*",[68,62,[[0,2,1,0,1,[[30,2,1,0,1]]],[1,1,1,1,2,[[59,1,1,1,2]]],[3,8,7,2,9,[[126,8,7,2,9]]],[5,8,6,9,15,[[192,8,6,9,15]]],[6,11,9,15,24,[[213,2,2,15,17],[214,1,1,17,18],[216,1,1,18,19],[217,6,4,19,23],[226,1,1,23,24]]],[8,2,2,24,26,[[248,1,1,24,25],[266,1,1,25,26]]],[9,5,5,26,31,[[268,1,1,26,27],[284,2,2,27,29],[286,2,2,29,31]]],[10,2,2,31,33,[[291,2,2,31,33]]],[11,2,2,33,35,[[321,1,1,33,34],[323,1,1,34,35]]],[12,1,1,35,36,[[347,1,1,35,36]]],[13,1,1,36,37,[[389,1,1,36,37]]],[15,1,1,37,38,[[416,1,1,37,38]]],[17,1,1,38,39,[[452,1,1,38,39]]],[18,2,2,39,41,[[524,1,1,39,40],[558,1,1,40,41]]],[19,4,4,41,45,[[633,1,1,41,42],[638,1,1,42,43],[644,1,1,43,44],[649,1,1,44,45]]],[22,4,4,45,49,[[696,1,1,45,46],[700,2,2,46,48],[705,1,1,48,49]]],[23,4,4,49,53,[[748,1,1,49,50],[750,2,2,50,52],[795,1,1,52,53]]],[25,3,3,53,56,[[808,1,1,53,54],[834,2,2,54,56]]],[27,1,1,56,57,[[866,1,1,56,57]]],[28,2,2,57,59,[[877,2,2,57,59]]],[29,1,1,59,60,[[881,1,1,59,60]]],[33,1,1,60,61,[[902,1,1,60,61]]],[37,1,1,61,62,[[919,1,1,61,62]]]],[898,1796,3991,3992,3993,3994,3995,3996,3998,5953,5957,5958,5962,5965,5969,6589,6595,6620,6688,6712,6713,6714,6716,6963,7488,8019,8077,8492,8494,8555,8576,8751,8756,9769,9843,10669,11669,12377,13263,14626,15220,16541,16703,16891,17041,18000,18075,18077,18164,19032,19090,19092,20239,20591,21283,21286,22160,22312,22326,22401,22731,23013]]],["+",[2,2,[[0,1,1,0,1,[[30,1,1,0,1]]],[6,1,1,1,2,[[214,1,1,1,2]]]],[898,6620]]],["Blow",[4,4,[[23,1,1,0,1,[[748,1,1,0,1]]],[27,1,1,1,2,[[866,1,1,1,2]]],[28,2,2,2,4,[[877,2,2,2,4]]]],[19032,22160,22312,22326]]],["blew",[18,18,[[5,5,5,0,5,[[192,5,5,0,5]]],[6,5,5,5,10,[[213,1,1,5,6],[216,1,1,6,7],[217,3,3,7,10]]],[8,1,1,10,11,[[248,1,1,10,11]]],[9,4,4,11,15,[[268,1,1,11,12],[284,1,1,12,13],[286,2,2,13,15]]],[10,1,1,15,16,[[291,1,1,15,16]]],[11,2,2,16,18,[[321,1,1,16,17],[323,1,1,17,18]]]],[5957,5958,5962,5965,5969,6595,6688,6713,6714,6716,7488,8077,8494,8555,8576,8756,9769,9843]]],["blow",[18,16,[[3,8,7,0,7,[[126,8,7,0,7]]],[5,1,1,7,8,[[192,1,1,7,8]]],[6,3,2,8,10,[[217,3,2,8,10]]],[10,1,1,10,11,[[291,1,1,10,11]]],[23,2,2,11,13,[[750,1,1,11,12],[795,1,1,12,13]]],[25,2,2,13,15,[[834,2,2,13,15]]],[37,1,1,15,16,[[919,1,1,15,16]]]],[3991,3992,3993,3994,3995,3996,3998,5953,6712,6714,8751,19090,20239,21283,21286,23013]]],["bloweth",[1,1,[[22,1,1,0,1,[[696,1,1,0,1]]]],[18000]]],["blowing",[2,2,[[5,2,2,0,2,[[192,2,2,0,2]]]],[5958,5962]]],["blown",[3,3,[[22,1,1,0,1,[[705,1,1,0,1]]],[25,1,1,1,2,[[808,1,1,1,2]]],[29,1,1,2,3,[[881,1,1,2,3]]]],[18164,20591,22401]]],["cast",[1,1,[[1,1,1,0,1,[[59,1,1,0,1]]]],[1796]]],["clap",[2,2,[[18,1,1,0,1,[[524,1,1,0,1]]],[33,1,1,1,2,[[902,1,1,1,2]]]],[14626,22731]]],["fasten",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18075]]],["fastened",[4,4,[[6,1,1,0,1,[[226,1,1,0,1]]],[8,1,1,1,2,[[266,1,1,1,2]]],[12,1,1,2,3,[[347,1,1,2,3]]],[22,1,1,3,4,[[700,1,1,3,4]]]],[6963,8019,10669,18077]]],["pitch",[1,1,[[23,1,1,0,1,[[750,1,1,0,1]]]],[19092]]],["pitched",[1,1,[[0,1,1,0,1,[[30,1,1,0,1]]]],[898]]],["sounded",[2,2,[[13,1,1,0,1,[[389,1,1,0,1]]],[15,1,1,1,2,[[416,1,1,1,2]]]],[11669,12377]]],["stricken",[1,1,[[19,1,1,0,1,[[633,1,1,0,1]]]],[16541]]],["strike",[2,2,[[17,1,1,0,1,[[452,1,1,0,1]]],[19,1,1,1,2,[[649,1,1,1,2]]]],[13263,17041]]],["striketh",[1,1,[[19,1,1,0,1,[[644,1,1,0,1]]]],[16891]]],["suretiship",[1,1,[[19,1,1,0,1,[[638,1,1,0,1]]]],[16703]]],["thrust",[2,2,[[6,1,1,0,1,[[213,1,1,0,1]]],[9,1,1,1,2,[[284,1,1,1,2]]]],[6589,8492]]],["up",[1,1,[[18,1,1,0,1,[[558,1,1,0,1]]]],[15220]]]]},{"k":"H8629","v":[["sound",[1,1,[[18,1,1,0,1,[[627,1,1,0,1]]]],[16397]]]]},{"k":"H8630","v":[["*",[3,3,[[17,2,2,0,2,[[449,1,1,0,1],[450,1,1,1,2]]],[20,1,1,2,3,[[662,1,1,2,3]]]],[13201,13227,17393]]],["against",[2,2,[[17,1,1,0,1,[[450,1,1,0,1]]],[20,1,1,1,2,[[662,1,1,1,2]]]],[13227,17393]]],["prevailest",[1,1,[[17,1,1,0,1,[[449,1,1,0,1]]]],[13201]]]]},{"k":"H8631","v":[["*",[5,5,[[26,5,5,0,5,[[853,3,3,0,3],[854,1,1,3,4],[855,1,1,4,5]]]],[21848,21857,21859,21894,21912]]],["firm",[1,1,[[26,1,1,0,1,[[855,1,1,0,1]]]],[21912]]],["hardened",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21894]]],["strong",[3,3,[[26,3,3,0,3,[[853,3,3,0,3]]]],[21848,21857,21859]]]]},{"k":"H8632","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[853,1,1,1,2]]]],[21795,21867]]],["might",[1,1,[[26,1,1,0,1,[[853,1,1,0,1]]]],[21867]]],["strength",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21795]]]]},{"k":"H8633","v":[["*",[3,3,[[16,2,2,0,2,[[434,1,1,0,1],[435,1,1,1,2]]],[26,1,1,2,3,[[860,1,1,2,3]]]],[12863,12868,22053]]],["authority",[1,1,[[16,1,1,0,1,[[434,1,1,0,1]]]],[12863]]],["power",[1,1,[[16,1,1,0,1,[[435,1,1,0,1]]]],[12868]]],["strength",[1,1,[[26,1,1,0,1,[[860,1,1,0,1]]]],[22053]]]]},{"k":"H8634","v":[["Taralah",[1,1,[[5,1,1,0,1,[[204,1,1,0,1]]]],[6320]]]]},{"k":"H8635","v":[["increase",[1,1,[[3,1,1,0,1,[[148,1,1,0,1]]]],[4732]]]]},{"k":"H8636","v":[["*",[6,6,[[2,1,1,0,1,[[114,1,1,0,1]]],[19,1,1,1,2,[[655,1,1,1,2]]],[25,4,4,2,6,[[819,3,3,2,5],[823,1,1,5,6]]]],[3505,17204,20857,20862,20866,20988]]],["gain",[1,1,[[19,1,1,0,1,[[655,1,1,0,1]]]],[17204]]],["increase",[5,5,[[2,1,1,0,1,[[114,1,1,0,1]]],[25,4,4,1,5,[[819,3,3,1,4],[823,1,1,4,5]]]],[3505,20857,20862,20866,20988]]]]},{"k":"H8637","v":[["+",[1,1,[[27,1,1,0,1,[[872,1,1,0,1]]]],[22243]]]]},{"k":"H8638","v":[["interpreted",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12117]]]]},{"k":"H8639","v":[["sleep",[7,7,[[0,2,2,0,2,[[1,1,1,0,1],[14,1,1,1,2]]],[8,1,1,2,3,[[261,1,1,2,3]]],[17,2,2,3,5,[[439,1,1,3,4],[468,1,1,4,5]]],[19,1,1,5,6,[[646,1,1,5,6]]],[22,1,1,6,7,[[707,1,1,6,7]]]],[51,372,7917,12943,13665,16940,18203]]]]},{"k":"H8640","v":[["Tirhakah",[2,2,[[11,1,1,0,1,[[331,1,1,0,1]]],[22,1,1,1,2,[[715,1,1,1,2]]]],[10070,18361]]]]},{"k":"H8641","v":[["*",[76,63,[[1,17,12,0,12,[[74,3,2,0,2],[78,4,2,2,4],[79,3,3,4,7],[84,5,3,7,10],[85,2,2,10,12]]],[2,6,6,12,18,[[96,3,3,12,15],[99,2,2,15,17],[111,1,1,17,18]]],[3,18,16,18,34,[[121,1,1,18,19],[122,1,1,19,20],[131,4,3,20,23],[134,9,8,23,31],[147,3,3,31,34]]],[4,3,3,34,37,[[164,3,3,34,37]]],[9,1,1,37,38,[[267,1,1,37,38]]],[13,3,3,38,41,[[397,3,3,38,41]]],[14,1,1,41,42,[[410,1,1,41,42]]],[15,4,4,42,46,[[422,2,2,42,44],[424,1,1,44,45],[425,1,1,45,46]]],[19,1,1,46,47,[[656,1,1,46,47]]],[22,1,1,47,48,[[718,1,1,47,48]]],[25,20,14,48,62,[[821,1,1,48,49],[845,2,1,49,50],[846,6,5,50,55],[849,11,7,55,62]]],[38,1,1,62,63,[[927,1,1,62,63]]]],[2197,2198,2363,2364,2395,2396,2397,2536,2552,2555,2569,2572,2893,2911,2913,2991,2992,3381,3801,3843,4172,4173,4174,4265,4268,4276,4281,4283,4284,4285,4286,4693,4705,4716,5246,5251,5257,8043,11864,11866,11868,12226,12586,12588,12668,12676,17228,18440,20935,21629,21631,21636,21637,21643,21646,21710,21711,21712,21714,21720,21722,21723,23128]]],["+",[1,1,[[25,1,1,0,1,[[849,1,1,0,1]]]],[21714]]],["gifts",[1,1,[[19,1,1,0,1,[[656,1,1,0,1]]]],[17228]]],["heave",[4,4,[[2,3,3,0,3,[[96,1,1,0,1],[99,2,2,1,3]]],[3,1,1,3,4,[[122,1,1,3,4]]]],[2913,2991,2992,3843]]],["oblation",[17,12,[[22,1,1,0,1,[[718,1,1,0,1]]],[25,16,11,1,12,[[845,1,1,1,2],[846,6,5,2,7],[849,9,5,7,12]]]],[18440,21629,21631,21636,21637,21643,21646,21711,21712,21720,21722,21723]]],["oblations",[2,2,[[13,1,1,0,1,[[397,1,1,0,1]]],[25,1,1,1,2,[[845,1,1,1,2]]]],[11868,21629]]],["offering",[40,33,[[1,17,12,0,12,[[74,3,2,0,2],[78,4,2,2,4],[79,3,3,4,7],[84,5,3,7,10],[85,2,2,10,12]]],[2,3,3,12,15,[[96,2,2,12,14],[111,1,1,14,15]]],[3,15,13,15,28,[[121,1,1,15,16],[131,4,3,16,19],[134,7,6,19,25],[147,3,3,25,28]]],[4,2,2,28,30,[[164,2,2,28,30]]],[14,1,1,30,31,[[410,1,1,30,31]]],[15,1,1,31,32,[[422,1,1,31,32]]],[25,1,1,32,33,[[849,1,1,32,33]]]],[2197,2198,2363,2364,2395,2396,2397,2536,2552,2555,2569,2572,2893,2911,3381,3801,4172,4173,4174,4268,4281,4283,4284,4285,4286,4693,4705,4716,5251,5257,12226,12588,21710]]],["offerings",[11,11,[[3,2,2,0,2,[[134,2,2,0,2]]],[4,1,1,2,3,[[164,1,1,2,3]]],[9,1,1,3,4,[[267,1,1,3,4]]],[13,2,2,4,6,[[397,2,2,4,6]]],[15,3,3,6,9,[[422,1,1,6,7],[424,1,1,7,8],[425,1,1,8,9]]],[25,1,1,9,10,[[821,1,1,9,10]]],[38,1,1,10,11,[[927,1,1,10,11]]]],[4265,4276,5246,8043,11864,11866,12586,12668,12676,20935,23128]]]]},{"k":"H8642","v":[["oblation",[1,1,[[25,1,1,0,1,[[849,1,1,0,1]]]],[21714]]]]},{"k":"H8643","v":[["*",[36,33,[[2,2,2,0,2,[[112,1,1,0,1],[114,1,1,1,2]]],[3,6,5,2,7,[[126,3,2,2,4],[139,1,1,4,5],[145,1,1,5,6],[147,1,1,6,7]]],[5,2,2,7,9,[[192,2,2,7,9]]],[8,3,2,9,11,[[239,3,2,9,11]]],[9,1,1,11,12,[[272,1,1,11,12]]],[12,1,1,12,13,[[352,1,1,12,13]]],[13,2,2,13,15,[[379,1,1,13,14],[381,1,1,14,15]]],[14,4,3,15,18,[[405,4,3,15,18]]],[17,3,3,18,21,[[443,1,1,18,19],[468,1,1,19,20],[474,1,1,20,21]]],[18,5,5,21,26,[[504,1,1,21,22],[510,1,1,22,23],[524,1,1,23,24],[566,1,1,24,25],[627,1,1,25,26]]],[23,3,3,26,29,[[748,1,1,26,27],[764,1,1,27,28],[793,1,1,28,29]]],[25,1,1,29,30,[[822,1,1,29,30]]],[29,2,2,30,32,[[879,1,1,30,31],[880,1,1,31,32]]],[35,1,1,32,33,[[906,1,1,32,33]]]],[3426,3478,3993,3994,4437,4609,4670,5954,5969,7302,7303,8172,10819,11465,11504,12108,12109,12110,13050,13676,13859,14291,14369,14630,15341,16399,19046,19438,20129,20966,22378,22381,22803]]],["+",[1,1,[[14,1,1,0,1,[[405,1,1,0,1]]]],[12109]]],["alarm",[6,5,[[3,3,2,0,2,[[126,3,2,0,2]]],[23,2,2,2,4,[[748,1,1,2,3],[793,1,1,3,4]]],[35,1,1,4,5,[[906,1,1,4,5]]]],[3993,3994,19046,20129,22803]]],["blow",[1,1,[[3,1,1,0,1,[[147,1,1,0,1]]]],[4670]]],["joy",[2,2,[[17,1,1,0,1,[[468,1,1,0,1]]],[18,1,1,1,2,[[504,1,1,1,2]]]],[13676,14291]]],["jubile",[1,1,[[2,1,1,0,1,[[114,1,1,0,1]]]],[3478]]],["noise",[1,1,[[18,1,1,0,1,[[510,1,1,0,1]]]],[14369]]],["rejoicing",[1,1,[[17,1,1,0,1,[[443,1,1,0,1]]]],[13050]]],["shout",[10,8,[[3,1,1,0,1,[[139,1,1,0,1]]],[5,2,2,1,3,[[192,2,2,1,3]]],[8,3,2,3,5,[[239,3,2,3,5]]],[14,3,2,5,7,[[405,3,2,5,7]]],[18,1,1,7,8,[[524,1,1,7,8]]]],[4437,5954,5969,7302,7303,12108,12110,14630]]],["shouting",[8,8,[[9,1,1,0,1,[[272,1,1,0,1]]],[12,1,1,1,2,[[352,1,1,1,2]]],[13,1,1,2,3,[[381,1,1,2,3]]],[17,1,1,3,4,[[474,1,1,3,4]]],[23,1,1,4,5,[[764,1,1,4,5]]],[25,1,1,5,6,[[822,1,1,5,6]]],[29,2,2,6,8,[[879,1,1,6,7],[880,1,1,7,8]]]],[8172,10819,11504,13859,19438,20966,22378,22381]]],["sound",[1,1,[[18,1,1,0,1,[[566,1,1,0,1]]]],[15341]]],["sounding",[2,2,[[13,1,1,0,1,[[379,1,1,0,1]]],[18,1,1,1,2,[[627,1,1,1,2]]]],[11465,16399]]],["trumpets",[2,2,[[2,1,1,0,1,[[112,1,1,0,1]]],[3,1,1,1,2,[[145,1,1,1,2]]]],[3426,4609]]]]},{"k":"H8644","v":[["medicine",[1,1,[[25,1,1,0,1,[[848,1,1,0,1]]]],[21691]]]]},{"k":"H8645","v":[["cypress",[1,1,[[22,1,1,0,1,[[722,1,1,0,1]]]],[18547]]]]},{"k":"H8646","v":[["*",[13,11,[[0,9,7,0,7,[[10,9,7,0,7]]],[3,2,2,7,9,[[149,2,2,7,9]]],[5,1,1,9,10,[[210,1,1,9,10]]],[12,1,1,10,11,[[338,1,1,10,11]]]],[290,291,292,293,294,297,298,4787,4788,6478,10278]]],["+",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4788]]],["Tarah",[1,1,[[3,1,1,0,1,[[149,1,1,0,1]]]],[4787]]],["Terah",[11,9,[[0,9,7,0,7,[[10,9,7,0,7]]],[5,1,1,7,8,[[210,1,1,7,8]]],[12,1,1,8,9,[[338,1,1,8,9]]]],[290,291,292,293,294,297,298,6478,10278]]]]},{"k":"H8647","v":[["Tirhanah",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10354]]]]},{"k":"H8648","v":[["*",[4,4,[[14,2,2,0,2,[[406,1,1,0,1],[408,1,1,1,2]]],[26,2,2,2,4,[[853,1,1,2,3],[854,1,1,3,4]]]],[12134,12168,21866,21905]]],["+",[2,2,[[14,1,1,0,1,[[408,1,1,0,1]]],[26,1,1,1,2,[[853,1,1,1,2]]]],[12168,21866]]],["second",[1,1,[[14,1,1,0,1,[[406,1,1,0,1]]]],[12134]]],["two",[1,1,[[26,1,1,0,1,[[854,1,1,0,1]]]],[21905]]]]},{"k":"H8649","v":[["*",[6,6,[[6,1,1,0,1,[[219,1,1,0,1]]],[18,1,1,1,2,[[596,1,1,1,2]]],[23,3,3,2,5,[[752,1,1,2,3],[758,1,1,3,4],[767,1,1,4,5]]],[35,1,1,5,6,[[908,1,1,5,6]]]],[6785,16016,19158,19307,19510,22833]]],["deceit",[4,4,[[18,1,1,0,1,[[596,1,1,0,1]]],[23,3,3,1,4,[[752,1,1,1,2],[758,1,1,2,3],[767,1,1,3,4]]]],[16016,19158,19307,19510]]],["deceitful",[1,1,[[35,1,1,0,1,[[908,1,1,0,1]]]],[22833]]],["privily",[1,1,[[6,1,1,0,1,[[219,1,1,0,1]]]],[6785]]]]},{"k":"H8650","v":[["*",[3,3,[[22,2,2,0,2,[[708,1,1,0,1],[711,1,1,1,2]]],[25,1,1,2,3,[[828,1,1,2,3]]]],[18234,18302,21126]]],["beacon",[1,1,[[22,1,1,0,1,[[708,1,1,0,1]]]],[18234]]],["mast",[1,1,[[22,1,1,0,1,[[711,1,1,0,1]]]],[18302]]],["masts",[1,1,[[25,1,1,0,1,[[828,1,1,0,1]]]],[21126]]]]},{"k":"H8651","v":[["*",[2,2,[[26,2,2,0,2,[[851,1,1,0,1],[852,1,1,1,2]]]],[21807,21833]]],["gate",[1,1,[[26,1,1,0,1,[[851,1,1,0,1]]]],[21807]]],["mouth",[1,1,[[26,1,1,0,1,[[852,1,1,0,1]]]],[21833]]]]},{"k":"H8652","v":[["porters",[1,1,[[14,1,1,0,1,[[409,1,1,0,1]]]],[12197]]]]},{"k":"H8653","v":[["*",[3,3,[[18,1,1,0,1,[[537,1,1,0,1]]],[22,2,2,1,3,[[729,2,2,1,3]]]],[14810,18690,18695]]],["astonishment",[1,1,[[18,1,1,0,1,[[537,1,1,0,1]]]],[14810]]],["trembling",[2,2,[[22,2,2,0,2,[[729,2,2,0,2]]]],[18690,18695]]]]},{"k":"H8654","v":[["Tirathites",[1,1,[[12,1,1,0,1,[[339,1,1,0,1]]]],[10361]]]]},{"k":"H8655","v":[["*",[15,15,[[0,3,3,0,3,[[30,3,3,0,3]]],[6,5,5,3,8,[[227,1,1,3,4],[228,4,4,4,8]]],[8,3,3,8,11,[[250,1,1,8,9],[254,2,2,9,11]]],[11,1,1,11,12,[[335,1,1,11,12]]],[25,1,1,12,13,[[822,1,1,12,13]]],[27,1,1,13,14,[[864,1,1,13,14]]],[37,1,1,14,15,[[920,1,1,14,15]]]],[892,907,908,6985,7007,7010,7011,7013,7583,7719,7722,10189,20965,22132,23018]]],["idolatry",[1,1,[[8,1,1,0,1,[[250,1,1,0,1]]]],[7583]]],["idols",[1,1,[[37,1,1,0,1,[[920,1,1,0,1]]]],[23018]]],["image",[2,2,[[8,2,2,0,2,[[254,2,2,0,2]]]],[7719,7722]]],["images",[5,5,[[0,3,3,0,3,[[30,3,3,0,3]]],[11,1,1,3,4,[[335,1,1,3,4]]],[25,1,1,4,5,[[822,1,1,4,5]]]],[892,907,908,10189,20965]]],["teraphim",[6,6,[[6,5,5,0,5,[[227,1,1,0,1],[228,4,4,1,5]]],[27,1,1,5,6,[[864,1,1,5,6]]]],[6985,7007,7010,7011,7013,22132]]]]},{"k":"H8656","v":[["*",[18,17,[[3,3,3,0,3,[[142,1,1,0,1],[143,1,1,1,2],[152,1,1,2,3]]],[5,2,2,3,5,[[198,1,1,3,4],[203,1,1,4,5]]],[10,10,9,5,14,[[304,1,1,5,6],[305,2,2,6,8],[306,7,6,8,14]]],[11,2,2,14,16,[[327,2,2,14,16]]],[21,1,1,16,17,[[676,1,1,16,17]]]],[4522,4555,4890,6154,6278,9235,9270,9282,9289,9291,9292,9298,9300,9306,9939,9941,17618]]],["+",[2,2,[[11,2,2,0,2,[[327,2,2,0,2]]]],[9939,9941]]],["Tirzah",[16,15,[[3,3,3,0,3,[[142,1,1,0,1],[143,1,1,1,2],[152,1,1,2,3]]],[5,2,2,3,5,[[198,1,1,3,4],[203,1,1,4,5]]],[10,10,9,5,14,[[304,1,1,5,6],[305,2,2,6,8],[306,7,6,8,14]]],[21,1,1,14,15,[[676,1,1,14,15]]]],[4522,4555,4890,6154,6278,9235,9270,9282,9289,9291,9292,9298,9300,9306,17618]]]]},{"k":"H8657","v":[["*",[3,3,[[4,1,1,0,1,[[171,1,1,0,1]]],[16,2,2,1,3,[[427,1,1,1,2],[431,1,1,2,3]]]],[5410,12745,12795]]],["+",[1,1,[[4,1,1,0,1,[[171,1,1,0,1]]]],[5410]]],["Teresh",[2,2,[[16,2,2,0,2,[[427,1,1,0,1],[431,1,1,1,2]]]],[12745,12795]]]]},{"k":"H8658","v":[["beryl",[7,7,[[1,2,2,0,2,[[77,1,1,0,1],[88,1,1,1,2]]],[21,1,1,2,3,[[675,1,1,2,3]]],[25,3,3,3,6,[[802,1,1,3,4],[811,1,1,4,5],[829,1,1,5,6]]],[26,1,1,6,7,[[859,1,1,6,7]]]],[2313,2677,17612,20480,20642,21170,22021]]]]},{"k":"H8659","v":[["*",[28,24,[[0,1,1,0,1,[[9,1,1,0,1]]],[10,3,2,1,3,[[300,2,1,1,2],[312,1,1,2,3]]],[12,2,2,3,5,[[338,1,1,3,4],[344,1,1,4,5]]],[13,4,3,5,8,[[375,2,1,5,6],[386,2,2,6,8]]],[16,1,1,8,9,[[426,1,1,8,9]]],[18,2,2,9,11,[[525,1,1,9,10],[549,1,1,10,11]]],[22,7,7,11,18,[[680,1,1,11,12],[701,4,4,12,16],[738,1,1,16,17],[744,1,1,17,18]]],[23,1,1,18,19,[[754,1,1,18,19]]],[25,3,3,19,22,[[828,2,2,19,21],[839,1,1,21,22]]],[31,4,2,22,24,[[889,3,1,22,23],[892,1,1,23,24]]]],[238,9101,9528,10259,10545,11385,11623,11624,12716,14641,15010,17701,18078,18083,18087,18091,18830,18941,19210,21133,21146,21438,22534,22570]]],["+",[1,1,[[23,1,1,0,1,[[754,1,1,0,1]]]],[19210]]],["Tarshish",[23,20,[[0,1,1,0,1,[[9,1,1,0,1]]],[12,1,1,1,2,[[338,1,1,1,2]]],[13,4,3,2,5,[[375,2,1,2,3],[386,2,2,3,5]]],[16,1,1,5,6,[[426,1,1,5,6]]],[18,2,2,6,8,[[525,1,1,6,7],[549,1,1,7,8]]],[22,7,7,8,15,[[680,1,1,8,9],[701,4,4,9,13],[738,1,1,13,14],[744,1,1,14,15]]],[25,3,3,15,18,[[828,2,2,15,17],[839,1,1,17,18]]],[31,4,2,18,20,[[889,3,1,18,19],[892,1,1,19,20]]]],[238,10259,11385,11623,11624,12716,14641,15010,17701,18078,18083,18087,18091,18830,18941,21133,21146,21438,22534,22570]]],["Tharshish",[4,3,[[10,3,2,0,2,[[300,2,1,0,1],[312,1,1,1,2]]],[12,1,1,2,3,[[344,1,1,2,3]]]],[9101,9528,10545]]]]},{"k":"H8660","v":[["Tirshatha",[5,5,[[14,1,1,0,1,[[404,1,1,0,1]]],[15,4,4,1,5,[[419,2,2,1,3],[420,1,1,3,4],[422,1,1,4,5]]]],[12090,12485,12490,12502,12550]]]]},{"k":"H8661","v":[["Tartan",[2,2,[[11,1,1,0,1,[[330,1,1,0,1]]],[22,1,1,1,2,[[698,1,1,1,2]]]],[10041,18030]]]]},{"k":"H8662","v":[["Tartak",[1,1,[[11,1,1,0,1,[[329,1,1,0,1]]]],[10014]]]]},{"k":"H8663","v":[["*",[4,4,[[17,2,2,0,2,[[471,1,1,0,1],[474,1,1,1,2]]],[22,1,1,2,3,[[700,1,1,2,3]]],[37,1,1,3,4,[[914,1,1,3,4]]]],[13765,13841,18054,22929]]],["crying",[1,1,[[17,1,1,0,1,[[474,1,1,0,1]]]],[13841]]],["noise",[1,1,[[17,1,1,0,1,[[471,1,1,0,1]]]],[13765]]],["shoutings",[1,1,[[37,1,1,0,1,[[914,1,1,0,1]]]],[22929]]],["stirs",[1,1,[[22,1,1,0,1,[[700,1,1,0,1]]]],[18054]]]]},{"k":"H8664","v":[["Tishbite",[6,6,[[10,3,3,0,3,[[307,1,1,0,1],[311,2,2,1,3]]],[11,3,3,3,6,[[313,2,2,3,5],[321,1,1,5,6]]]],[9318,9468,9479,9536,9541,9792]]]]},{"k":"H8665","v":[["broidered",[1,1,[[1,1,1,0,1,[[77,1,1,0,1]]]],[2297]]]]},{"k":"H8666","v":[["*",[8,8,[[8,1,1,0,1,[[242,1,1,0,1]]],[9,1,1,1,2,[[277,1,1,1,2]]],[10,2,2,2,4,[[310,2,2,2,4]]],[12,1,1,4,5,[[357,1,1,4,5]]],[13,1,1,5,6,[[402,1,1,5,6]]],[17,2,2,6,8,[[456,1,1,6,7],[469,1,1,7,8]]]],[7369,8260,9430,9434,10927,12003,13389,13719]]],["answers",[2,2,[[17,2,2,0,2,[[456,1,1,0,1],[469,1,1,1,2]]]],[13389,13719]]],["expired",[3,3,[[9,1,1,0,1,[[277,1,1,0,1]]],[12,1,1,1,2,[[357,1,1,1,2]]],[13,1,1,2,3,[[402,1,1,2,3]]]],[8260,10927,12003]]],["return",[3,3,[[8,1,1,0,1,[[242,1,1,0,1]]],[10,2,2,1,3,[[310,2,2,1,3]]]],[7369,9430,9434]]]]},{"k":"H8667","v":[["+",[1,1,[[2,1,1,0,1,[[95,1,1,0,1]]]],[2851]]]]},{"k":"H8668","v":[["*",[34,32,[[6,1,1,0,1,[[225,1,1,0,1]]],[8,3,3,1,4,[[246,2,2,1,3],[254,1,1,3,4]]],[9,3,3,4,7,[[285,1,1,4,5],[289,2,2,5,7]]],[11,3,2,7,9,[[317,1,1,7,8],[325,2,1,8,9]]],[12,2,2,9,11,[[348,1,1,9,10],[356,1,1,10,11]]],[13,1,1,11,12,[[372,1,1,11,12]]],[18,13,13,12,25,[[510,1,1,12,13],[514,1,1,13,14],[515,1,1,14,15],[517,2,2,15,17],[528,1,1,17,18],[537,1,1,18,19],[548,1,1,19,20],[585,1,1,20,21],[596,2,2,21,23],[621,1,1,23,24],[623,1,1,24,25]]],[19,3,3,25,28,[[638,1,1,25,26],[648,1,1,26,27],[651,1,1,27,28]]],[22,3,2,28,30,[[723,1,1,28,29],[724,2,1,29,30]]],[23,1,1,30,31,[[747,1,1,30,31]]],[24,1,1,31,32,[[799,1,1,31,32]]]],[6947,7454,7458,7711,8513,8663,8665,9648,9888,10687,10919,11323,14383,14489,14512,14535,14541,14705,14818,14991,15754,15939,15979,16315,16344,16702,17015,17085,18578,18599,19025,20380]]],["+",[1,1,[[12,1,1,0,1,[[356,1,1,0,1]]]],[10919]]],["deliverance",[5,4,[[6,1,1,0,1,[[225,1,1,0,1]]],[11,3,2,1,3,[[317,1,1,1,2],[325,2,1,2,3]]],[12,1,1,3,4,[[348,1,1,3,4]]]],[6947,9648,9888,10687]]],["help",[4,4,[[8,1,1,0,1,[[246,1,1,0,1]]],[18,3,3,1,4,[[537,1,1,1,2],[585,1,1,2,3],[623,1,1,3,4]]]],[7454,14818,15754,16344]]],["safety",[4,4,[[18,1,1,0,1,[[510,1,1,0,1]]],[19,3,3,1,4,[[638,1,1,1,2],[648,1,1,2,3],[651,1,1,3,4]]]],[14383,16702,17015,17085]]],["salvation",[17,16,[[8,2,2,0,2,[[246,1,1,0,1],[254,1,1,1,2]]],[13,1,1,2,3,[[372,1,1,2,3]]],[18,9,9,3,12,[[514,1,1,3,4],[515,1,1,4,5],[517,2,2,5,7],[528,1,1,7,8],[548,1,1,8,9],[596,2,2,9,11],[621,1,1,11,12]]],[22,3,2,12,14,[[723,1,1,12,13],[724,2,1,13,14]]],[23,1,1,14,15,[[747,1,1,14,15]]],[24,1,1,15,16,[[799,1,1,15,16]]]],[7458,7711,11323,14489,14512,14535,14541,14705,14991,15939,15979,16315,18578,18599,19025,20380]]],["victory",[3,3,[[9,3,3,0,3,[[285,1,1,0,1],[289,2,2,1,3]]]],[8513,8663,8665]]]]},{"k":"H8669","v":[["desire",[3,3,[[0,2,2,0,2,[[2,1,1,0,1],[3,1,1,1,2]]],[21,1,1,2,3,[[677,1,1,2,3]]]],[71,86,17637]]]]},{"k":"H8670","v":[["present",[1,1,[[8,1,1,0,1,[[244,1,1,0,1]]]],[7398]]]]},{"k":"H8671","v":[["ninth",[18,17,[[2,1,1,0,1,[[114,1,1,0,1]]],[3,1,1,1,2,[[123,1,1,1,2]]],[11,2,2,2,4,[[329,1,1,2,3],[337,1,1,3,4]]],[12,5,4,4,8,[[349,1,1,4,5],[361,1,1,5,6],[362,1,1,6,7],[364,2,1,7,8]]],[14,1,1,8,9,[[412,1,1,8,9]]],[23,4,4,9,13,[[780,2,2,9,11],[783,1,1,11,12],[796,1,1,12,13]]],[25,1,1,13,14,[[825,1,1,13,14]]],[36,2,2,14,16,[[910,2,2,14,16]]],[37,1,1,16,17,[[917,1,1,16,17]]]],[3491,3910,9989,10223,10732,11026,11062,11121,12261,19851,19864,19924,20280,21057,22865,22873,22963]]]]},{"k":"H8672","v":[["*",[58,57,[[0,13,12,0,12,[[4,7,6,0,6],[8,1,1,6,7],[10,3,3,7,10],[16,2,2,10,12]]],[1,1,1,12,13,[[87,1,1,12,13]]],[2,2,2,13,15,[[112,1,1,13,14],[114,1,1,14,15]]],[3,4,4,15,19,[[117,1,1,15,16],[118,1,1,16,17],[145,1,1,17,18],[150,1,1,18,19]]],[4,1,1,19,20,[[155,1,1,19,20]]],[5,7,7,20,27,[[199,1,1,20,21],[200,1,1,21,22],[201,3,3,22,25],[205,1,1,25,26],[207,1,1,26,27]]],[6,2,2,27,29,[[214,2,2,27,29]]],[9,2,2,29,31,[[268,1,1,29,30],[290,1,1,30,31]]],[11,8,8,31,39,[[326,1,1,31,32],[327,2,2,32,34],[329,1,1,34,35],[330,2,2,35,37],[337,2,2,37,39]]],[12,4,4,39,43,[[340,1,1,39,40],[346,1,1,40,41],[361,1,1,41,42],[362,1,1,42,43]]],[13,3,3,43,46,[[382,1,1,43,44],[391,1,1,44,45],[395,1,1,45,46]]],[14,4,4,46,50,[[403,1,1,46,47],[404,3,3,47,50]]],[15,4,4,50,54,[[419,2,2,50,52],[423,2,2,52,54]]],[23,3,3,54,57,[[783,1,1,54,55],[796,2,2,55,57]]]],[110,113,116,119,125,132,234,285,290,291,398,421,2657,3434,3477,3627,3671,4634,4829,4986,6161,6189,6234,6246,6256,6359,6397,6602,6612,8079,8700,9898,9938,9942,9984,10026,10034,10225,10230,10369,10624,11031,11072,11521,11705,11792,12025,12035,12063,12069,12458,12459,12589,12596,19925,20282,20288]]],["+",[7,7,[[0,1,1,0,1,[[10,1,1,0,1]]],[5,1,1,1,2,[[205,1,1,1,2]]],[9,1,1,2,3,[[268,1,1,2,3]]],[11,1,1,3,4,[[337,1,1,3,4]]],[12,2,2,4,6,[[361,1,1,4,5],[362,1,1,5,6]]],[23,1,1,6,7,[[796,1,1,6,7]]]],[291,6359,8079,10230,11031,11072,20288]]],["nine",[45,44,[[0,12,11,0,11,[[4,7,6,0,6],[8,1,1,6,7],[10,2,2,7,9],[16,2,2,9,11]]],[1,1,1,11,12,[[87,1,1,11,12]]],[2,1,1,12,13,[[114,1,1,12,13]]],[3,4,4,13,17,[[117,1,1,13,14],[118,1,1,14,15],[145,1,1,15,16],[150,1,1,16,17]]],[4,1,1,17,18,[[155,1,1,17,18]]],[5,6,6,18,24,[[199,1,1,18,19],[200,1,1,19,20],[201,3,3,20,23],[207,1,1,23,24]]],[6,2,2,24,26,[[214,2,2,24,26]]],[9,1,1,26,27,[[290,1,1,26,27]]],[11,5,5,27,32,[[326,1,1,27,28],[327,2,2,28,30],[329,1,1,30,31],[330,1,1,31,32]]],[12,2,2,32,34,[[340,1,1,32,33],[346,1,1,33,34]]],[13,2,2,34,36,[[391,1,1,34,35],[395,1,1,35,36]]],[14,4,4,36,40,[[403,1,1,36,37],[404,3,3,37,40]]],[15,4,4,40,44,[[419,2,2,40,42],[423,2,2,42,44]]]],[110,113,116,119,125,132,234,285,290,398,421,2657,3477,3627,3671,4634,4829,4986,6161,6189,6234,6246,6256,6397,6602,6612,8700,9898,9938,9942,9984,10026,10369,10624,11705,11792,12025,12035,12063,12069,12458,12459,12589,12596]]],["ninth",[6,6,[[2,1,1,0,1,[[112,1,1,0,1]]],[11,2,2,1,3,[[330,1,1,1,2],[337,1,1,2,3]]],[13,1,1,3,4,[[382,1,1,3,4]]],[23,2,2,4,6,[[783,1,1,4,5],[796,1,1,5,6]]]],[3434,10034,10225,11521,19925,20282]]]]},{"k":"H8673","v":[["ninety",[19,19,[[0,6,6,0,6,[[4,3,3,0,3],[16,3,3,3,6]]],[12,1,1,6,7,[[346,1,1,6,7]]],[14,4,4,7,11,[[404,3,3,7,10],[410,1,1,10,11]]],[15,3,3,11,14,[[419,3,3,11,14]]],[23,1,1,14,15,[[796,1,1,14,15]]],[25,3,3,15,18,[[805,2,2,15,17],[842,1,1,17,18]]],[26,1,1,18,19,[[861,1,1,18,19]]]],[114,122,135,398,414,421,10621,12043,12047,12085,12236,12441,12445,12480,20299,20534,20538,21538,22092]]]]},{"k":"H8674","v":[["Tatnai",[4,4,[[14,4,4,0,4,[[407,2,2,0,2],[408,2,2,2,4]]]],[12137,12140,12157,12164]]]]},{"k":"G1","v":[["Alpha",[4,4,[[65,4,4,0,4,[[1167,2,2,0,2],[1187,1,1,2,3],[1188,1,1,3,4]]]],[30705,30708,31059,31093]]]]},{"k":"G2","v":[["*",[5,5,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[57,3,3,2,5,[[1137,1,1,2,3],[1139,1,1,3,4],[1141,1,1,4,5]]]],[24898,27156,30034,30075,30109]]],["Aaron",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[57,2,2,2,4,[[1137,1,1,2,3],[1139,1,1,3,4]]]],[24898,27156,30034,30075]]],["Aaron's",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30109]]]]},{"k":"G3","v":[["Abaddon",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30851]]]]},{"k":"G4","v":[["burdensome",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28998]]]]},{"k":"G5","v":[["Abba",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]],[47,1,1,2,3,[[1094,1,1,2,3]]]],[24790,28131,29137]]]]},{"k":"G6","v":[["Abel",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[57,2,2,2,4,[[1143,1,1,2,3],[1144,1,1,3,4]]]],[23953,25456,30176,30236]]]]},{"k":"G7","v":[["Abia",[3,2,[[39,2,1,0,1,[[929,2,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]]],[23151,24898]]]]},{"k":"G8","v":[["Abiathar",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24286]]]]},{"k":"G9","v":[["Abilene",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25026]]]]},{"k":"G10","v":[["Abiud",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23157]]]]},{"k":"G11","v":[["*",[73,69,[[39,7,6,0,6,[[929,3,3,0,3],[931,2,1,3,4],[936,1,1,4,5],[950,1,1,5,6]]],[40,1,1,6,7,[[968,1,1,6,7]]],[41,15,14,7,21,[[973,2,2,7,9],[975,3,2,9,11],[985,2,2,11,13],[988,6,6,13,19],[991,1,1,19,20],[992,1,1,20,21]]],[42,11,9,21,30,[[1004,11,9,21,30]]],[43,7,7,30,37,[[1020,2,2,30,32],[1024,4,4,32,36],[1030,1,1,36,37]]],[44,9,9,37,46,[[1049,7,7,37,44],[1054,1,1,44,45],[1056,1,1,45,46]]],[46,1,1,46,47,[[1088,1,1,46,47]]],[47,9,9,47,56,[[1093,8,8,47,55],[1094,1,1,55,56]]],[57,10,10,56,66,[[1134,1,1,56,57],[1138,1,1,57,58],[1139,6,6,58,64],[1143,2,2,64,66]]],[58,2,2,66,68,[[1147,2,2,66,68]]],[59,1,1,68,69,[[1153,1,1,68,69]]]],[23145,23146,23161,23201,23356,23904,24699,24948,24966,25033,25059,25534,25546,25642,25643,25644,25645,25649,25650,25740,25816,26414,26418,26420,26421,26433,26434,26437,26438,26439,27009,27021,27118,27132,27133,27148,27388,28023,28024,28025,28031,28034,28035,28038,28162,28210,29011,29108,29109,29110,29111,29116,29118,29120,29131,29153,29993,30057,30065,30066,30068,30069,30070,30073,30180,30189,30314,30316,30430]]],["Abraham",[68,65,[[39,7,6,0,6,[[929,3,3,0,3],[931,2,1,3,4],[936,1,1,4,5],[950,1,1,5,6]]],[40,1,1,6,7,[[968,1,1,6,7]]],[41,14,13,7,20,[[973,2,2,7,9],[975,3,2,9,11],[985,2,2,11,13],[988,5,5,13,18],[991,1,1,18,19],[992,1,1,19,20]]],[42,8,7,20,27,[[1004,8,7,20,27]]],[43,7,7,27,34,[[1020,2,2,27,29],[1024,4,4,29,33],[1030,1,1,33,34]]],[44,9,9,34,43,[[1049,7,7,34,41],[1054,1,1,41,42],[1056,1,1,42,43]]],[46,1,1,43,44,[[1088,1,1,43,44]]],[47,8,8,44,52,[[1093,7,7,44,51],[1094,1,1,51,52]]],[57,10,10,52,62,[[1134,1,1,52,53],[1138,1,1,53,54],[1139,6,6,54,60],[1143,2,2,60,62]]],[58,2,2,62,64,[[1147,2,2,62,64]]],[59,1,1,64,65,[[1153,1,1,64,65]]]],[23145,23146,23161,23201,23356,23904,24699,24948,24966,25033,25059,25534,25546,25643,25644,25645,25649,25650,25740,25816,26420,26421,26433,26434,26437,26438,26439,27009,27021,27118,27132,27133,27148,27388,28023,28024,28025,28031,28034,28035,28038,28162,28210,29011,29108,29109,29110,29111,29116,29118,29120,29153,29993,30057,30065,30066,30068,30069,30070,30073,30180,30189,30314,30316,30430]]],["Abraham's",[5,5,[[41,1,1,0,1,[[988,1,1,0,1]]],[42,3,3,1,4,[[1004,3,3,1,4]]],[47,1,1,4,5,[[1093,1,1,4,5]]]],[25642,26414,26418,26420,29131]]]]},{"k":"G12","v":[["*",[9,9,[[41,1,1,0,1,[[980,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]],[65,7,7,2,9,[[1175,3,3,2,5],[1177,1,1,5,6],[1183,1,1,6,7],[1186,2,2,7,9]]]],[25276,28195,30841,30842,30851,30879,30983,31039,31041]]],["bottomless",[2,2,[[65,2,2,0,2,[[1175,2,2,0,2]]]],[30841,30842]]],["deep",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]]],[25276,28195]]],["pit",[5,5,[[65,5,5,0,5,[[1175,1,1,0,1],[1177,1,1,1,2],[1183,1,1,2,3],[1186,2,2,3,5]]]],[30851,30879,30983,31039,31041]]]]},{"k":"G13","v":[["Agabus",[2,2,[[43,2,2,0,2,[[1028,1,1,0,1],[1038,1,1,1,2]]]],[27335,27674]]]]},{"k":"G14","v":[["good",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29806]]]]},{"k":"G15","v":[["*",[11,10,[[40,1,1,0,1,[[959,1,1,0,1]]],[41,4,3,1,4,[[978,4,3,1,4]]],[43,1,1,4,5,[[1031,1,1,4,5]]],[59,4,4,5,9,[[1152,2,2,5,7],[1153,2,2,7,9]]],[63,1,1,9,10,[[1165,1,1,9,10]]]],[24292,25155,25179,25181,27431,30414,30419,30430,30441,30669]]],["doing",[2,2,[[59,2,2,0,2,[[1152,1,1,0,1],[1153,1,1,1,2]]]],[30414,30441]]],["good",[7,6,[[40,1,1,0,1,[[959,1,1,0,1]]],[41,4,3,1,4,[[978,4,3,1,4]]],[43,1,1,4,5,[[1031,1,1,4,5]]],[63,1,1,5,6,[[1165,1,1,5,6]]]],[24292,25155,25179,25181,27431,30669]]],["well",[2,2,[[59,2,2,0,2,[[1152,1,1,0,1],[1153,1,1,1,2]]]],[30419,30430]]]]},{"k":"G16","v":[["doing",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30465]]]]},{"k":"G17","v":[["well",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30413]]]]},{"k":"G18","v":[["*",[102,90,[[39,17,12,0,12,[[933,1,1,0,1],[935,4,3,1,4],[940,4,2,4,6],[947,4,2,6,8],[948,1,1,8,9],[950,1,1,9,10],[953,2,2,10,12]]],[40,3,2,12,14,[[966,3,2,12,14]]],[41,16,13,14,27,[[973,1,1,14,15],[978,3,1,15,16],[980,2,2,16,18],[982,1,1,18,19],[983,1,1,19,20],[984,2,2,20,22],[988,1,1,22,23],[990,3,2,23,25],[991,1,1,25,26],[995,1,1,26,27]]],[42,3,3,27,30,[[997,1,1,27,28],[1001,1,1,28,29],[1003,1,1,29,30]]],[43,3,3,30,33,[[1026,1,1,30,31],[1028,1,1,31,32],[1040,1,1,32,33]]],[44,21,19,33,52,[[1047,2,2,33,35],[1048,1,1,35,36],[1050,1,1,36,37],[1052,5,4,37,41],[1053,1,1,41,42],[1054,1,1,42,43],[1055,1,1,43,44],[1057,3,3,44,47],[1058,3,2,47,49],[1059,1,1,49,50],[1060,1,1,50,51],[1061,1,1,51,52]]],[46,2,2,52,54,[[1082,1,1,52,53],[1086,1,1,53,54]]],[47,2,2,54,56,[[1096,2,2,54,56]]],[48,4,4,56,60,[[1098,1,1,56,57],[1100,2,2,57,59],[1102,1,1,59,60]]],[49,1,1,60,61,[[1103,1,1,60,61]]],[50,1,1,61,62,[[1107,1,1,61,62]]],[51,2,2,62,64,[[1113,1,1,62,63],[1115,1,1,63,64]]],[52,2,2,64,66,[[1117,2,2,64,66]]],[53,4,4,66,70,[[1119,2,2,66,68],[1120,1,1,68,69],[1123,1,1,69,70]]],[54,2,2,70,72,[[1126,1,1,70,71],[1127,1,1,71,72]]],[55,4,4,72,76,[[1129,1,1,72,73],[1130,2,2,73,75],[1131,1,1,75,76]]],[56,2,2,76,78,[[1132,2,2,76,78]]],[57,3,3,78,81,[[1141,1,1,78,79],[1142,1,1,79,80],[1145,1,1,80,81]]],[58,2,2,81,83,[[1146,1,1,81,82],[1148,1,1,82,83]]],[59,7,6,83,89,[[1152,1,1,83,84],[1153,6,5,84,89]]],[63,1,1,89,90,[[1165,1,1,89,90]]]],[23279,23327,23333,23334,23523,23524,23778,23779,23807,23882,24029,24031,24605,24606,24946,25191,25253,25260,25405,25418,25477,25478,25645,25706,25707,25748,25985,26090,26239,26340,27252,27331,27735,27969,27972,27999,28054,28103,28104,28109,28110,28144,28166,28203,28247,28254,28266,28269,28270,28296,28305,28355,28887,28964,29194,29198,29239,29300,29301,29345,29367,29475,29596,29636,29677,29678,29701,29715,29726,29773,29848,29870,29908,29913,29918,29924,29944,29952,30116,30134,30262,30283,30336,30417,30434,30435,30437,30440,30445,30669]]],["+",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26340]]],["Good",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]]],[23778,24605,25706]]],["benefit",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29952]]],["good",[79,70,[[39,12,10,0,10,[[933,1,1,0,1],[935,3,3,1,4],[940,2,1,4,5],[947,2,1,5,6],[948,1,1,6,7],[950,1,1,7,8],[953,2,2,8,10]]],[40,2,1,10,11,[[966,2,1,10,11]]],[41,11,8,11,19,[[978,3,1,11,12],[980,2,2,12,14],[982,1,1,14,15],[983,1,1,15,16],[990,2,1,16,17],[991,1,1,17,18],[995,1,1,18,19]]],[42,1,1,19,20,[[1001,1,1,19,20]]],[43,3,3,20,23,[[1026,1,1,20,21],[1028,1,1,21,22],[1040,1,1,22,23]]],[44,17,15,23,38,[[1047,1,1,23,24],[1048,1,1,24,25],[1052,4,3,25,28],[1053,1,1,28,29],[1054,1,1,29,30],[1057,3,3,30,33],[1058,3,2,33,35],[1059,1,1,35,36],[1060,1,1,36,37],[1061,1,1,37,38]]],[46,2,2,38,40,[[1082,1,1,38,39],[1086,1,1,39,40]]],[47,1,1,40,41,[[1096,1,1,40,41]]],[48,3,3,41,44,[[1098,1,1,41,42],[1100,2,2,42,44]]],[49,1,1,44,45,[[1103,1,1,44,45]]],[50,1,1,45,46,[[1107,1,1,45,46]]],[51,2,2,46,48,[[1113,1,1,46,47],[1115,1,1,47,48]]],[52,2,2,48,50,[[1117,2,2,48,50]]],[53,4,4,50,54,[[1119,2,2,50,52],[1120,1,1,52,53],[1123,1,1,53,54]]],[54,2,2,54,56,[[1126,1,1,54,55],[1127,1,1,55,56]]],[55,4,4,56,60,[[1129,1,1,56,57],[1130,2,2,57,59],[1131,1,1,59,60]]],[57,1,1,60,61,[[1145,1,1,60,61]]],[58,2,2,61,63,[[1146,1,1,61,62],[1148,1,1,62,63]]],[59,7,6,63,69,[[1152,1,1,63,64],[1153,6,5,64,69]]],[63,1,1,69,70,[[1165,1,1,69,70]]]],[23279,23327,23333,23334,23524,23779,23807,23882,24029,24031,24606,25191,25253,25260,25405,25418,25707,25748,25985,26239,27252,27331,27735,27972,27999,28103,28104,28110,28144,28166,28247,28254,28266,28269,28270,28296,28305,28355,28887,28964,29198,29239,29300,29301,29367,29475,29596,29636,29677,29678,29701,29715,29726,29773,29848,29870,29908,29913,29918,29924,30262,30283,30336,30417,30434,30435,30437,30440,30445,30669]]],["goods",[2,2,[[41,2,2,0,2,[[984,2,2,0,2]]]],[25477,25478]]],["man",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28054]]],["thing",[5,5,[[39,1,1,0,1,[[947,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]],[44,1,1,2,3,[[1052,1,1,2,3]]],[48,1,1,3,4,[[1102,1,1,3,4]]],[56,1,1,4,5,[[1132,1,1,4,5]]]],[23778,26090,28109,29345,29944]]],["things",[9,9,[[39,3,3,0,3,[[935,1,1,0,1],[940,2,2,1,3]]],[41,2,2,3,5,[[973,1,1,3,4],[988,1,1,4,5]]],[44,1,1,5,6,[[1055,1,1,5,6]]],[47,1,1,6,7,[[1096,1,1,6,7]]],[57,2,2,7,9,[[1141,1,1,7,8],[1142,1,1,8,9]]]],[23327,23523,23524,24946,25645,28203,29194,30116,30134]]],["well",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27969]]]]},{"k":"G19","v":[["goodness",[4,4,[[44,1,1,0,1,[[1060,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]],[52,1,1,3,4,[[1116,1,1,3,4]]]],[28317,29184,29313,29660]]]]},{"k":"G20","v":[["*",[5,5,[[41,2,2,0,2,[[973,2,2,0,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]],[57,1,1,3,4,[[1133,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[24907,24937,26995,29972,30696]]],["gladness",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]],[57,1,1,2,3,[[1133,1,1,2,3]]]],[24907,26995,29972]]],["joy",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[24937,30696]]]]},{"k":"G21","v":[["*",[11,11,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,2,2,1,3,[[973,1,1,1,2],[982,1,1,2,3]]],[42,2,2,3,5,[[1001,1,1,3,4],[1004,1,1,4,5]]],[43,2,2,5,7,[[1019,1,1,5,6],[1033,1,1,6,7]]],[59,3,3,7,10,[[1151,2,2,7,9],[1154,1,1,9,10]]],[65,1,1,10,11,[[1185,1,1,10,11]]]],[23246,24940,25384,26245,26437,26975,27517,30380,30382,30459,31024]]],["glad",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[23246,26975]]],["joy",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30459]]],["rejoice",[4,4,[[42,1,1,0,1,[[1001,1,1,0,1]]],[59,2,2,1,3,[[1151,2,2,1,3]]],[65,1,1,3,4,[[1185,1,1,3,4]]]],[26245,30380,30382,31024]]],["rejoiced",[4,4,[[41,2,2,0,2,[[973,1,1,0,1],[982,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]],[43,1,1,3,4,[[1033,1,1,3,4]]]],[24940,25384,26437,27517]]]]},{"k":"G22","v":[["*",[4,4,[[45,4,4,0,4,[[1068,4,4,0,4]]]],[28495,28498,28519,28521]]],["unmarried",[3,3,[[45,3,3,0,3,[[1068,3,3,0,3]]]],[28495,28498,28519]]],["woman",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28521]]]]},{"k":"G23","v":[["*",[7,7,[[39,3,3,0,3,[[948,1,1,0,1],[949,1,1,1,2],[954,1,1,2,3]]],[40,3,3,3,6,[[966,2,2,3,5],[970,1,1,5,6]]],[41,1,1,6,7,[[985,1,1,6,7]]]],[23816,23841,24062,24602,24629,24758,25532]]],["displeased",[3,3,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,2,2,1,3,[[966,2,2,1,3]]]],[23841,24602,24629]]],["indignation",[4,4,[[39,2,2,0,2,[[948,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,1,1,3,4,[[985,1,1,3,4]]]],[23816,24062,24758,25532]]]]},{"k":"G24","v":[["indignation",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28927]]]]},{"k":"G25","v":[["*",[142,109,[[39,8,7,0,7,[[933,4,3,0,3],[934,1,1,3,4],[947,1,1,4,5],[950,2,2,5,7]]],[40,5,4,7,11,[[966,1,1,7,8],[968,4,3,8,11]]],[41,13,9,11,20,[[978,6,3,11,14],[979,4,3,14,17],[982,1,1,17,18],[983,1,1,18,19],[988,1,1,19,20]]],[42,37,27,20,47,[[999,3,3,20,23],[1004,1,1,23,24],[1006,1,1,24,25],[1007,1,1,25,26],[1008,1,1,26,27],[1009,6,3,27,30],[1010,10,6,30,36],[1011,5,3,36,39],[1013,4,3,39,42],[1015,1,1,42,43],[1017,4,4,43,47]]],[44,8,6,47,53,[[1053,2,2,47,49],[1054,3,2,49,51],[1058,3,2,51,53]]],[45,2,2,53,55,[[1063,1,1,53,54],[1069,1,1,54,55]]],[46,4,3,55,58,[[1086,1,1,55,56],[1088,1,1,56,57],[1089,2,1,57,58]]],[47,2,2,58,60,[[1092,1,1,58,59],[1095,1,1,59,60]]],[48,10,7,60,67,[[1097,1,1,60,61],[1098,1,1,61,62],[1101,7,4,62,66],[1102,1,1,66,67]]],[50,2,2,67,69,[[1109,2,2,67,69]]],[51,2,2,69,71,[[1111,1,1,69,70],[1114,1,1,70,71]]],[52,2,2,71,73,[[1117,2,2,71,73]]],[54,2,2,73,75,[[1128,2,2,73,75]]],[57,2,2,75,77,[[1133,1,1,75,76],[1144,1,1,76,77]]],[58,3,3,77,80,[[1146,1,1,77,78],[1147,2,2,78,80]]],[59,4,4,80,84,[[1151,2,2,80,82],[1152,1,1,82,83],[1153,1,1,83,84]]],[60,1,1,84,85,[[1157,1,1,84,85]]],[61,28,17,85,102,[[1160,3,2,85,87],[1161,6,5,87,92],[1162,15,8,92,100],[1163,4,2,100,102]]],[62,2,2,102,104,[[1164,2,2,102,104]]],[63,1,1,104,105,[[1165,1,1,104,105]]],[65,4,4,105,109,[[1167,1,1,105,106],[1169,1,1,106,107],[1178,1,1,107,108],[1186,1,1,108,109]]]],[23277,23278,23280,23306,23781,23909,23911,24609,24703,24704,24706,25173,25178,25181,25200,25237,25242,25390,25448,25633,26136,26139,26155,26423,26498,26528,26623,26631,26653,26664,26683,26689,26691,26692,26696,26699,26708,26711,26716,26782,26783,26785,26851,26905,26913,26914,26918,28144,28153,28168,28180,28274,28275,28403,28530,28963,29000,29037,29101,29176,29212,29233,29306,29329,29332,29337,29361,29529,29536,29564,29612,29674,29677,29878,29880,29972,30218,30278,30298,30301,30382,30396,30416,30434,30515,30560,30565,30589,30590,30593,30597,30602,30610,30611,30613,30614,30615,30622,30623,30624,30625,30626,30646,30650,30659,30702,30755,30902,31047]]],["+",[4,4,[[42,2,2,0,2,[[1004,1,1,0,1],[1011,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]],[54,1,1,3,4,[[1128,1,1,3,4]]]],[26423,26708,28180,29878]]],["Love",[4,4,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]],[61,1,1,3,4,[[1160,1,1,3,4]]]],[23278,25173,30416,30565]]],["beloved",[6,6,[[44,1,1,0,1,[[1054,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]],[51,1,1,3,4,[[1111,1,1,3,4]]],[52,1,1,4,5,[[1117,1,1,4,5]]],[65,1,1,5,6,[[1186,1,1,5,6]]]],[28180,29212,29529,29564,29674,31047]]],["love",[67,58,[[39,7,6,0,6,[[933,3,2,0,2],[934,1,1,2,3],[947,1,1,3,4],[950,2,2,4,6]]],[40,4,3,6,9,[[968,4,3,6,9]]],[41,9,6,9,15,[[978,5,2,9,11],[979,1,1,11,12],[982,1,1,12,13],[983,1,1,13,14],[988,1,1,14,15]]],[42,10,8,15,23,[[1006,1,1,15,16],[1009,2,1,16,17],[1010,5,4,17,21],[1011,2,2,21,23]]],[44,3,3,23,26,[[1053,1,1,23,24],[1058,2,2,24,26]]],[45,2,2,26,28,[[1063,1,1,26,27],[1069,1,1,27,28]]],[46,2,2,28,30,[[1088,1,1,28,29],[1089,1,1,29,30]]],[47,1,1,30,31,[[1095,1,1,30,31]]],[48,4,4,31,35,[[1101,3,3,31,34],[1102,1,1,34,35]]],[50,1,1,35,36,[[1109,1,1,35,36]]],[51,1,1,36,37,[[1114,1,1,36,37]]],[58,3,3,37,40,[[1146,1,1,37,38],[1147,2,2,38,40]]],[59,3,3,40,43,[[1151,2,2,40,42],[1153,1,1,42,43]]],[61,14,12,43,55,[[1160,1,1,43,44],[1161,4,4,44,48],[1162,7,6,48,54],[1163,2,1,54,55]]],[62,2,2,55,57,[[1164,2,2,55,57]]],[63,1,1,57,58,[[1165,1,1,57,58]]]],[23277,23280,23306,23781,23909,23911,24703,24704,24706,25178,25181,25237,25390,25448,25633,26498,26664,26683,26689,26691,26699,26711,26716,28144,28274,28275,28403,28530,29000,29037,29176,29329,29332,29337,29361,29536,29612,30278,30298,30301,30382,30396,30434,30565,30590,30593,30597,30602,30610,30614,30615,30622,30623,30624,30626,30646,30650,30659]]],["loved",[38,35,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[42,18,16,2,18,[[999,2,2,2,4],[1007,1,1,4,5],[1008,1,1,5,6],[1009,4,3,6,9],[1010,2,2,9,11],[1011,2,2,11,13],[1013,3,2,13,15],[1015,1,1,15,16],[1017,2,2,16,18]]],[44,2,2,18,20,[[1053,1,1,18,19],[1054,1,1,19,20]]],[46,1,1,20,21,[[1089,1,1,20,21]]],[47,1,1,21,22,[[1092,1,1,21,22]]],[48,3,3,22,25,[[1098,1,1,22,23],[1101,2,2,23,25]]],[52,1,1,25,26,[[1117,1,1,25,26]]],[54,1,1,26,27,[[1128,1,1,26,27]]],[57,1,1,27,28,[[1133,1,1,27,28]]],[60,1,1,28,29,[[1157,1,1,28,29]]],[61,4,3,29,32,[[1162,4,3,29,32]]],[65,3,3,32,35,[[1167,1,1,32,33],[1169,1,1,33,34],[1178,1,1,34,35]]]],[24609,25242,26136,26139,26528,26623,26631,26653,26664,26689,26696,26708,26711,26782,26785,26851,26905,26918,28153,28168,29037,29101,29233,29306,29329,29677,29880,29972,30515,30613,30614,30622,30702,30755,30902]]],["lovedst",[1,1,[[42,1,1,0,1,[[1013,1,1,0,1]]]],[26783]]],["lovest",[2,2,[[42,2,2,0,2,[[1017,2,2,0,2]]]],[26913,26914]]],["loveth",[20,17,[[41,2,2,0,2,[[979,2,2,0,2]]],[42,4,3,2,5,[[999,1,1,2,3],[1010,3,2,3,5]]],[44,1,1,5,6,[[1058,1,1,5,6]]],[46,1,1,6,7,[[1086,1,1,6,7]]],[48,2,1,7,8,[[1101,2,1,7,8]]],[57,1,1,8,9,[[1144,1,1,8,9]]],[61,9,8,9,17,[[1160,1,1,9,10],[1161,2,2,10,12],[1162,4,4,12,16],[1163,2,1,16,17]]]],[25200,25242,26155,26689,26692,28274,28963,29332,30218,30560,30589,30593,30610,30611,30623,30624,30625]]]]},{"k":"G26","v":[["*",[116,106,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,7,6,2,8,[[1001,1,1,2,3],[1009,1,1,3,4],[1011,4,3,4,7],[1013,1,1,7,8]]],[44,9,8,8,16,[[1050,2,2,8,10],[1053,2,2,10,12],[1057,1,1,12,13],[1058,2,1,13,14],[1059,1,1,14,15],[1060,1,1,15,16]]],[45,14,11,16,27,[[1065,1,1,16,17],[1069,1,1,17,18],[1074,9,6,18,24],[1075,1,1,24,25],[1077,2,2,25,27]]],[46,9,9,27,36,[[1079,2,2,27,29],[1082,1,1,29,30],[1083,1,1,30,31],[1085,3,3,31,34],[1090,2,2,34,36]]],[47,3,3,36,39,[[1095,3,3,36,39]]],[48,10,10,39,49,[[1097,2,2,39,41],[1098,1,1,41,42],[1099,2,2,42,44],[1100,3,3,44,47],[1101,1,1,47,48],[1102,1,1,48,49]]],[49,4,4,49,53,[[1103,2,2,49,51],[1104,2,2,51,53]]],[50,5,5,53,58,[[1107,3,3,53,56],[1108,1,1,56,57],[1109,1,1,57,58]]],[51,5,5,58,63,[[1111,1,1,58,59],[1113,2,2,59,61],[1115,2,2,61,63]]],[52,3,3,63,66,[[1116,1,1,63,64],[1117,1,1,64,65],[1118,1,1,65,66]]],[53,5,5,66,71,[[1119,2,2,66,68],[1120,1,1,68,69],[1122,1,1,69,70],[1124,1,1,70,71]]],[54,4,4,71,75,[[1125,2,2,71,73],[1126,1,1,73,74],[1127,1,1,74,75]]],[55,1,1,75,76,[[1130,1,1,75,76]]],[56,3,3,76,79,[[1132,3,3,76,79]]],[57,2,2,79,81,[[1138,1,1,79,80],[1142,1,1,80,81]]],[59,3,2,81,83,[[1154,2,1,81,82],[1155,1,1,82,83]]],[60,1,1,83,84,[[1156,1,1,83,84]]],[61,18,14,84,98,[[1160,2,2,84,86],[1161,3,3,86,89],[1162,12,8,89,97],[1163,1,1,97,98]]],[62,2,2,98,100,[[1164,2,2,98,100]]],[63,1,1,100,101,[[1165,1,1,100,101]]],[64,3,3,101,104,[[1166,3,3,101,104]]],[65,2,2,104,106,[[1168,2,2,104,106]]]],[23969,25447,26252,26665,26708,26709,26712,26785,28052,28055,28151,28155,28254,28276,28295,28333,28454,28528,28666,28667,28668,28669,28673,28678,28679,28790,28800,28828,28832,28891,28904,28939,28940,28956,29054,29057,29168,29175,29184,29210,29221,29233,29268,29270,29274,29287,29288,29306,29360,29370,29378,29392,29393,29469,29473,29478,29496,29531,29563,29596,29602,29629,29634,29652,29671,29683,29701,29710,29731,29759,29799,29816,29822,29849,29863,29910,29943,29945,29947,30054,30157,30454,30479,30486,30555,30565,30580,30595,30596,30610,30611,30612,30613,30615,30619,30620,30621,30627,30648,30651,30664,30674,30684,30693,30721,30736]]],["+",[2,2,[[44,1,1,0,1,[[1059,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[28295,29947]]],["Charity",[2,2,[[45,2,2,0,2,[[1074,2,2,0,2]]]],[28669,28673]]],["Love",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28276]]],["charity",[26,23,[[45,10,8,0,8,[[1069,1,1,0,1],[1074,7,5,1,6],[1075,1,1,6,7],[1077,1,1,7,8]]],[50,1,1,8,9,[[1109,1,1,8,9]]],[51,1,1,9,10,[[1113,1,1,9,10]]],[52,1,1,10,11,[[1116,1,1,10,11]]],[53,3,3,11,14,[[1119,1,1,11,12],[1120,1,1,12,13],[1122,1,1,13,14]]],[54,2,2,14,16,[[1126,1,1,14,15],[1127,1,1,15,16]]],[55,1,1,16,17,[[1130,1,1,16,17]]],[59,3,2,17,19,[[1154,2,1,17,18],[1155,1,1,18,19]]],[60,1,1,19,20,[[1156,1,1,19,20]]],[63,1,1,20,21,[[1165,1,1,20,21]]],[64,1,1,21,22,[[1166,1,1,21,22]]],[65,1,1,22,23,[[1168,1,1,22,23]]]],[28528,28666,28667,28668,28669,28678,28679,28790,29531,29596,29652,29701,29731,29759,29849,29863,29910,30454,30479,30486,30664,30684,30736]]],["dear",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29478]]],["love",[84,79,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,7,6,2,8,[[1001,1,1,2,3],[1009,1,1,3,4],[1011,4,3,4,7],[1013,1,1,7,8]]],[44,7,7,8,15,[[1050,2,2,8,10],[1053,2,2,10,12],[1057,1,1,12,13],[1058,1,1,13,14],[1060,1,1,14,15]]],[45,2,2,15,17,[[1065,1,1,15,16],[1077,1,1,16,17]]],[46,9,9,17,26,[[1079,2,2,17,19],[1082,1,1,19,20],[1083,1,1,20,21],[1085,3,3,21,24],[1090,2,2,24,26]]],[47,3,3,26,29,[[1095,3,3,26,29]]],[48,10,10,29,39,[[1097,2,2,29,31],[1098,1,1,31,32],[1099,2,2,32,34],[1100,3,3,34,37],[1101,1,1,37,38],[1102,1,1,38,39]]],[49,4,4,39,43,[[1103,2,2,39,41],[1104,2,2,41,43]]],[50,3,3,43,46,[[1107,2,2,43,45],[1108,1,1,45,46]]],[51,4,4,46,50,[[1111,1,1,46,47],[1113,1,1,47,48],[1115,2,2,48,50]]],[52,2,2,50,52,[[1117,1,1,50,51],[1118,1,1,51,52]]],[53,2,2,52,54,[[1119,1,1,52,53],[1124,1,1,53,54]]],[54,2,2,54,56,[[1125,2,2,54,56]]],[56,2,2,56,58,[[1132,2,2,56,58]]],[57,2,2,58,60,[[1138,1,1,58,59],[1142,1,1,59,60]]],[61,18,14,60,74,[[1160,2,2,60,62],[1161,3,3,62,65],[1162,12,8,65,73],[1163,1,1,73,74]]],[62,2,2,74,76,[[1164,2,2,74,76]]],[64,2,2,76,78,[[1166,2,2,76,78]]],[65,1,1,78,79,[[1168,1,1,78,79]]]],[23969,25447,26252,26665,26708,26709,26712,26785,28052,28055,28151,28155,28254,28276,28333,28454,28800,28828,28832,28891,28904,28939,28940,28956,29054,29057,29168,29175,29184,29210,29221,29233,29268,29270,29274,29287,29288,29306,29360,29370,29378,29392,29393,29469,29473,29496,29563,29602,29629,29634,29671,29683,29710,29799,29816,29822,29943,29945,30054,30157,30555,30565,30580,30595,30596,30610,30611,30612,30613,30615,30619,30620,30621,30627,30648,30651,30674,30693,30721]]]]},{"k":"G27","v":[["*",[62,61,[[39,3,3,0,3,[[931,1,1,0,1],[940,1,1,1,2],[945,1,1,2,3]]],[40,3,3,3,6,[[957,1,1,3,4],[965,1,1,4,5],[968,1,1,5,6]]],[41,3,3,6,9,[[975,1,1,6,7],[981,1,1,7,8],[992,1,1,8,9]]],[43,1,1,9,10,[[1032,1,1,9,10]]],[44,7,7,10,17,[[1046,1,1,10,11],[1056,1,1,11,12],[1057,1,1,12,13],[1061,4,4,13,17]]],[45,4,4,17,21,[[1065,2,2,17,19],[1071,1,1,19,20],[1076,1,1,20,21]]],[46,2,2,21,23,[[1084,1,1,21,22],[1089,1,1,22,23]]],[48,2,2,23,25,[[1101,1,1,23,24],[1102,1,1,24,25]]],[49,3,2,25,27,[[1104,1,1,25,26],[1106,2,1,26,27]]],[50,4,4,27,31,[[1107,1,1,27,28],[1110,3,3,28,31]]],[51,1,1,31,32,[[1112,1,1,31,32]]],[53,1,1,32,33,[[1124,1,1,32,33]]],[54,1,1,33,34,[[1125,1,1,33,34]]],[56,3,3,34,37,[[1132,3,3,34,37]]],[57,1,1,37,38,[[1138,1,1,37,38]]],[58,3,3,38,41,[[1146,2,2,38,40],[1147,1,1,40,41]]],[59,2,2,41,43,[[1152,1,1,41,42],[1154,1,1,42,43]]],[60,6,6,43,49,[[1156,1,1,43,44],[1158,5,5,44,49]]],[61,5,5,49,54,[[1161,2,2,49,51],[1162,3,3,51,54]]],[63,4,4,54,58,[[1165,4,4,54,58]]],[64,3,3,58,61,[[1166,3,3,58,61]]]],[23209,23507,23705,24226,24545,24679,25047,25336,25792,27467,27937,28237,28264,28341,28344,28345,28348,28447,28450,28581,28776,28917,29041,29305,29358,29403,29443,29472,29549,29551,29556,29578,29790,29811,29939,29940,29954,30053,30282,30285,30298,30410,30458,30496,30523,30530,30536,30537,30539,30581,30600,30604,30610,30614,30659,30660,30663,30669,30675,30689,30692]]],["Beloved",[10,10,[[59,1,1,0,1,[[1154,1,1,0,1]]],[61,5,5,1,6,[[1161,2,2,1,3],[1162,3,3,3,6]]],[63,3,3,6,9,[[1165,3,3,6,9]]],[64,1,1,9,10,[[1166,1,1,9,10]]]],[30458,30581,30600,30604,30610,30614,30660,30663,30669,30675]]],["beloved",[46,45,[[39,3,3,0,3,[[931,1,1,0,1],[940,1,1,1,2],[945,1,1,2,3]]],[40,2,2,3,5,[[957,1,1,3,4],[965,1,1,4,5]]],[41,3,3,5,8,[[975,1,1,5,6],[981,1,1,6,7],[992,1,1,7,8]]],[43,1,1,8,9,[[1032,1,1,8,9]]],[44,6,6,9,15,[[1046,1,1,9,10],[1056,1,1,10,11],[1057,1,1,11,12],[1061,3,3,12,15]]],[45,4,4,15,19,[[1065,2,2,15,17],[1071,1,1,17,18],[1076,1,1,18,19]]],[46,2,2,19,21,[[1084,1,1,19,20],[1089,1,1,20,21]]],[48,1,1,21,22,[[1102,1,1,21,22]]],[49,3,2,22,24,[[1104,1,1,22,23],[1106,2,1,23,24]]],[50,3,3,24,27,[[1110,3,3,24,27]]],[53,1,1,27,28,[[1124,1,1,27,28]]],[54,1,1,28,29,[[1125,1,1,28,29]]],[56,3,3,29,32,[[1132,3,3,29,32]]],[57,1,1,32,33,[[1138,1,1,32,33]]],[58,3,3,33,36,[[1146,2,2,33,35],[1147,1,1,35,36]]],[59,1,1,36,37,[[1152,1,1,36,37]]],[60,6,6,37,43,[[1156,1,1,37,38],[1158,5,5,38,43]]],[64,2,2,43,45,[[1166,2,2,43,45]]]],[23209,23507,23705,24226,24545,25047,25336,25792,27467,27937,28237,28264,28344,28345,28348,28447,28450,28581,28776,28917,29041,29358,29403,29443,29549,29551,29556,29790,29811,29939,29940,29954,30053,30282,30285,30298,30410,30496,30523,30530,30536,30537,30539,30689,30692]]],["dear",[3,3,[[48,1,1,0,1,[[1101,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]]],[29305,29472,29578]]],["wellbeloved",[3,3,[[40,1,1,0,1,[[968,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]],[63,1,1,2,3,[[1165,1,1,2,3]]]],[24679,28341,30659]]]]},{"k":"G28","v":[["Agar",[2,2,[[47,2,2,0,2,[[1094,2,2,0,2]]]],[29155,29156]]]]},{"k":"G29","v":[["*",[3,3,[[39,2,2,0,2,[[933,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]]],[23275,24161,24847]]],["+",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23275]]],["compel",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24847]]],["compelled",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24161]]]]},{"k":"G30","v":[["vessels",[2,2,[[39,2,2,0,2,[[941,1,1,0,1],[953,1,1,1,2]]]],[23587,24012]]]]},{"k":"G31","v":[["message",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30590]]]]},{"k":"G32","v":[["*",[186,181,[[39,20,20,0,20,[[929,2,2,0,2],[930,2,2,2,4],[932,2,2,4,6],[939,1,1,6,7],[941,3,3,7,10],[944,1,1,10,11],[946,1,1,11,12],[950,1,1,12,13],[952,2,2,13,15],[953,2,2,15,17],[954,1,1,17,18],[956,2,2,18,20]]],[40,6,6,20,26,[[957,2,2,20,22],[964,1,1,22,23],[968,1,1,23,24],[969,2,2,24,26]]],[41,26,26,26,52,[[973,10,10,26,36],[974,5,5,36,41],[976,1,1,41,42],[979,2,2,42,44],[981,2,2,44,46],[984,2,2,46,48],[987,1,1,48,49],[988,1,1,49,50],[994,1,1,50,51],[996,1,1,51,52]]],[42,4,4,52,56,[[997,1,1,52,53],[1001,1,1,53,54],[1008,1,1,54,55],[1016,1,1,55,56]]],[43,21,21,56,77,[[1022,1,1,56,57],[1023,1,1,57,58],[1024,4,4,58,62],[1025,1,1,62,63],[1027,3,3,63,66],[1028,1,1,66,67],[1029,7,7,67,74],[1040,2,2,74,76],[1044,1,1,76,77]]],[44,1,1,77,78,[[1053,1,1,77,78]]],[45,4,4,78,82,[[1065,1,1,78,79],[1067,1,1,79,80],[1072,1,1,80,81],[1074,1,1,81,82]]],[46,2,2,82,84,[[1088,1,1,82,83],[1089,1,1,83,84]]],[47,3,3,84,87,[[1091,1,1,84,85],[1093,1,1,85,86],[1094,1,1,86,87]]],[50,1,1,87,88,[[1108,1,1,87,88]]],[52,1,1,88,89,[[1116,1,1,88,89]]],[53,2,2,89,91,[[1121,1,1,89,90],[1123,1,1,90,91]]],[57,13,12,91,103,[[1133,6,5,91,96],[1134,5,5,96,101],[1144,1,1,101,102],[1145,1,1,102,103]]],[58,1,1,103,104,[[1147,1,1,103,104]]],[59,2,2,104,106,[[1151,1,1,104,105],[1153,1,1,105,106]]],[60,2,2,106,108,[[1157,2,2,106,108]]],[64,1,1,108,109,[[1166,1,1,108,109]]],[65,76,72,109,181,[[1167,2,2,109,111],[1168,4,4,111,115],[1169,4,4,115,119],[1171,2,2,119,121],[1173,4,3,121,124],[1174,11,10,124,134],[1175,6,5,134,139],[1176,6,6,139,145],[1177,2,2,145,147],[1178,3,2,147,149],[1180,8,8,149,157],[1181,4,4,157,161],[1182,8,8,161,169],[1183,2,2,169,171],[1184,2,2,171,173],[1185,1,1,173,174],[1186,1,1,174,175],[1187,3,3,175,178],[1188,3,3,178,181]]]],[23164,23168,23182,23188,23215,23220,23469,23578,23580,23588,23699,23737,23902,23988,23993,24039,24049,24107,24197,24200,24217,24228,24538,24698,24744,24749,24904,24906,24911,24912,24919,24921,24923,24927,24928,24931,24982,24983,24986,24988,24994,25073,25219,25222,25327,25353,25467,25468,25598,25642,25907,26014,26095,26214,26609,26879,27078,27116,27146,27151,27154,27169,27202,27262,27266,27281,27320,27344,27345,27346,27347,27348,27352,27360,27742,27743,27878,28154,28442,28470,28610,28666,29003,29029,29065,29121,29145,29512,29656,29747,29784,29967,29968,29969,29970,29976,29979,29982,29984,29986,29993,30234,30243,30318,30386,30446,30504,30511,30678,30698,30717,30718,30725,30729,30735,30747,30751,30753,30760,30781,30790,30811,30812,30821,30829,30830,30831,30832,30833,30834,30835,30837,30839,30840,30841,30851,30853,30854,30855,30862,30866,30868,30869,30870,30871,30873,30887,30898,30900,30932,30934,30935,30936,30941,30943,30944,30945,30947,30952,30953,30954,30955,30957,30958,30959,30962,30964,30966,30971,30976,30982,30994,31014,31034,31039,31062,31065,31070,31086,31088,31096]]],["+",[3,3,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]],[57,1,1,2,3,[[1133,1,1,2,3]]]],[23215,25073,29970]]],["angel",[97,97,[[39,6,6,0,6,[[929,2,2,0,2],[930,2,2,2,4],[956,2,2,4,6]]],[41,15,15,6,21,[[973,10,10,6,16],[974,4,4,16,20],[994,1,1,20,21]]],[42,2,2,21,23,[[1001,1,1,21,22],[1008,1,1,22,23]]],[43,20,20,23,43,[[1022,1,1,23,24],[1023,1,1,24,25],[1024,3,3,25,28],[1025,1,1,28,29],[1027,3,3,29,32],[1028,1,1,32,33],[1029,7,7,33,40],[1040,2,2,40,42],[1044,1,1,42,43]]],[46,1,1,43,44,[[1088,1,1,43,44]]],[47,2,2,44,46,[[1091,1,1,44,45],[1094,1,1,45,46]]],[65,51,51,46,97,[[1167,1,1,46,47],[1168,4,4,47,51],[1169,3,3,51,54],[1171,1,1,54,55],[1173,1,1,55,56],[1174,7,7,56,63],[1175,4,4,63,67],[1176,5,5,67,72],[1177,2,2,72,74],[1180,7,7,74,81],[1182,7,7,81,88],[1183,1,1,88,89],[1184,2,2,89,91],[1185,1,1,91,92],[1186,1,1,92,93],[1187,1,1,93,94],[1188,3,3,94,97]]]],[23164,23168,23182,23188,24197,24200,24904,24906,24911,24912,24919,24921,24923,24927,24928,24931,24982,24983,24986,24994,25907,26214,26609,27078,27116,27146,27151,27154,27202,27262,27266,27281,27320,27344,27345,27346,27347,27348,27352,27360,27742,27743,27878,29003,29065,29145,30698,30718,30725,30729,30735,30747,30753,30760,30781,30812,30830,30832,30834,30835,30837,30839,30840,30841,30851,30853,30854,30862,30866,30868,30869,30870,30873,30887,30932,30934,30935,30941,30943,30944,30945,30957,30958,30959,30962,30964,30966,30971,30982,30994,31014,31034,31039,31070,31086,31088,31096]]],["angel's",[2,2,[[65,2,2,0,2,[[1174,1,1,0,1],[1176,1,1,1,2]]]],[30831,30871]]],["angels",[77,76,[[39,12,12,0,12,[[932,1,1,0,1],[941,3,3,1,4],[944,1,1,4,5],[946,1,1,5,6],[950,1,1,6,7],[952,2,2,7,9],[953,2,2,9,11],[954,1,1,11,12]]],[40,5,5,12,17,[[957,1,1,12,13],[964,1,1,13,14],[968,1,1,14,15],[969,2,2,15,17]]],[41,7,7,17,24,[[974,1,1,17,18],[981,1,1,18,19],[984,2,2,19,21],[987,1,1,21,22],[988,1,1,22,23],[996,1,1,23,24]]],[42,2,2,24,26,[[997,1,1,24,25],[1016,1,1,25,26]]],[43,1,1,26,27,[[1024,1,1,26,27]]],[44,1,1,27,28,[[1053,1,1,27,28]]],[45,4,4,28,32,[[1065,1,1,28,29],[1067,1,1,29,30],[1072,1,1,30,31],[1074,1,1,31,32]]],[47,1,1,32,33,[[1093,1,1,32,33]]],[50,1,1,33,34,[[1108,1,1,33,34]]],[52,1,1,34,35,[[1116,1,1,34,35]]],[53,2,2,35,37,[[1121,1,1,35,36],[1123,1,1,36,37]]],[57,12,12,37,49,[[1133,5,5,37,42],[1134,5,5,42,47],[1144,1,1,47,48],[1145,1,1,48,49]]],[59,2,2,49,51,[[1151,1,1,49,50],[1153,1,1,50,51]]],[60,2,2,51,53,[[1157,2,2,51,53]]],[64,1,1,53,54,[[1166,1,1,53,54]]],[65,23,22,54,76,[[1167,1,1,54,55],[1169,1,1,55,56],[1171,1,1,56,57],[1173,3,3,57,60],[1174,3,3,60,63],[1175,2,2,63,65],[1178,3,2,65,67],[1180,1,1,67,68],[1181,4,4,68,72],[1182,1,1,72,73],[1183,1,1,73,74],[1187,2,2,74,76]]]],[23220,23578,23580,23588,23699,23737,23902,23988,23993,24039,24049,24107,24228,24538,24698,24744,24749,24988,25327,25467,25468,25598,25642,26014,26095,26879,27169,28154,28442,28470,28610,28666,29121,29512,29656,29747,29784,29967,29968,29969,29970,29976,29979,29982,29984,29986,29993,30234,30243,30386,30446,30504,30511,30678,30717,30751,30790,30811,30812,30821,30829,30833,30840,30854,30855,30898,30900,30936,30947,30952,30953,30954,30955,30976,31062,31065]]],["messenger",[4,4,[[39,1,1,0,1,[[939,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[979,1,1,2,3]]],[46,1,1,3,4,[[1089,1,1,3,4]]]],[23469,24217,25222,29029]]],["messengers",[3,3,[[41,2,2,0,2,[[979,1,1,0,1],[981,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[25219,25353,30318]]]]},{"k":"G33","v":[["to",[2,2,[[58,2,2,0,2,[[1149,1,1,0,1],[1150,1,1,1,2]]]],[30350,30355]]]]},{"k":"G34","v":[["herd",[8,7,[[39,4,3,0,3,[[936,4,3,0,3]]],[40,2,2,3,5,[[961,2,2,3,5]]],[41,2,2,5,7,[[980,2,2,5,7]]]],[23375,23376,23377,24375,24377,25277,25278]]]]},{"k":"G35","v":[["descent",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30067]]]]},{"k":"G36","v":[["things",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28391]]]]},{"k":"G37","v":[["*",[29,26,[[39,3,3,0,3,[[934,1,1,0,1],[951,2,2,1,3]]],[41,1,1,3,4,[[983,1,1,3,4]]],[42,4,3,4,7,[[1006,1,1,4,5],[1013,3,2,5,7]]],[43,2,2,7,9,[[1037,1,1,7,8],[1043,1,1,8,9]]],[44,1,1,9,10,[[1060,1,1,9,10]]],[45,4,3,10,13,[[1062,1,1,10,11],[1067,1,1,11,12],[1068,2,1,12,13]]],[48,1,1,13,14,[[1101,1,1,13,14]]],[51,1,1,14,15,[[1115,1,1,14,15]]],[53,1,1,15,16,[[1122,1,1,15,16]]],[54,1,1,16,17,[[1126,1,1,16,17]]],[57,7,6,17,23,[[1134,2,1,17,18],[1141,1,1,18,19],[1142,3,3,19,22],[1145,1,1,22,23]]],[59,1,1,23,24,[[1153,1,1,23,24]]],[64,1,1,24,25,[[1166,1,1,24,25]]],[65,1,1,25,26,[[1188,1,1,25,26]]]],[23291,23935,23937,25407,26517,26776,26778,27658,27841,28319,28365,28478,28501,29330,29644,29752,29848,29988,30118,30143,30147,30162,30253,30439,30673,31091]]],["Hallowed",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23291,25407]]],["Sanctify",[1,1,[[42,1,1,0,1,[[1013,1,1,0,1]]]],[26776]]],["holy",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31091]]],["sanctified",[16,15,[[42,2,2,0,2,[[1006,1,1,0,1],[1013,1,1,1,2]]],[43,2,2,2,4,[[1037,1,1,2,3],[1043,1,1,3,4]]],[44,1,1,4,5,[[1060,1,1,4,5]]],[45,4,3,5,8,[[1062,1,1,5,6],[1067,1,1,6,7],[1068,2,1,7,8]]],[53,1,1,8,9,[[1122,1,1,8,9]]],[54,1,1,9,10,[[1126,1,1,9,10]]],[57,4,4,10,14,[[1134,1,1,10,11],[1142,3,3,11,14]]],[64,1,1,14,15,[[1166,1,1,14,15]]]],[26517,26778,27658,27841,28319,28365,28478,28501,29752,29848,29988,30143,30147,30162,30673]]],["sanctifieth",[4,4,[[39,2,2,0,2,[[951,2,2,0,2]]],[57,2,2,2,4,[[1134,1,1,2,3],[1141,1,1,3,4]]]],[23935,23937,29988,30118]]],["sanctify",[5,5,[[42,1,1,0,1,[[1013,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]],[51,1,1,2,3,[[1115,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]],[59,1,1,4,5,[[1153,1,1,4,5]]]],[26778,29330,29644,30253,30439]]]]},{"k":"G38","v":[["*",[10,10,[[44,2,2,0,2,[[1051,2,2,0,2]]],[45,1,1,2,3,[[1062,1,1,2,3]]],[51,3,3,3,6,[[1114,3,3,3,6]]],[52,1,1,6,7,[[1117,1,1,6,7]]],[53,1,1,7,8,[[1120,1,1,7,8]]],[57,1,1,8,9,[[1144,1,1,8,9]]],[59,1,1,9,10,[[1151,1,1,9,10]]]],[28087,28090,28393,29606,29607,29610,29674,29731,30226,30376]]],["holiness",[5,5,[[44,2,2,0,2,[[1051,2,2,0,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]],[53,1,1,3,4,[[1120,1,1,3,4]]],[57,1,1,4,5,[[1144,1,1,4,5]]]],[28087,28090,29610,29731,30226]]],["sanctification",[5,5,[[45,1,1,0,1,[[1062,1,1,0,1]]],[51,2,2,1,3,[[1114,2,2,1,3]]],[52,1,1,3,4,[[1117,1,1,3,4]]],[59,1,1,4,5,[[1151,1,1,4,5]]]],[28393,29606,29607,29674,30376]]]]},{"k":"G39","v":[["*",[11,10,[[57,11,10,0,10,[[1140,1,1,0,1],[1141,8,7,1,8],[1142,1,1,8,9],[1145,1,1,9,10]]]],[30094,30106,30107,30108,30113,30117,30129,30130,30152,30252]]],["+",[2,1,[[57,2,1,0,1,[[1141,2,1,0,1]]]],[30108]]],["all",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30113]]],["holiest",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30152]]],["place",[2,2,[[57,2,2,0,2,[[1141,2,2,0,2]]]],[30117,30130]]],["places",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30129]]],["sanctuary",[4,4,[[57,4,4,0,4,[[1140,1,1,0,1],[1141,2,2,1,3],[1145,1,1,3,4]]]],[30094,30106,30107,30252]]]]},{"k":"G40","v":[["*",[229,219,[[39,11,11,0,11,[[929,2,2,0,2],[931,1,1,2,3],[932,1,1,3,4],[935,1,1,4,5],[940,1,1,5,6],[952,1,1,6,7],[953,1,1,7,8],[955,2,2,8,10],[956,1,1,10,11]]],[40,7,7,11,18,[[957,2,2,11,13],[959,1,1,13,14],[962,1,1,14,15],[964,1,1,15,16],[968,1,1,16,17],[969,1,1,17,18]]],[41,19,18,18,36,[[973,8,7,18,25],[974,3,3,25,28],[975,2,2,28,30],[976,2,2,30,32],[981,1,1,32,33],[983,1,1,33,34],[984,2,2,34,36]]],[42,5,5,36,41,[[997,1,1,36,37],[1003,1,1,37,38],[1010,1,1,38,39],[1013,1,1,39,40],[1016,1,1,40,41]]],[43,54,53,41,94,[[1018,4,4,41,45],[1019,3,3,45,48],[1020,2,2,48,50],[1021,4,4,50,54],[1022,2,2,54,56],[1023,3,3,56,59],[1024,3,3,59,62],[1025,4,4,62,66],[1026,5,5,66,71],[1027,5,5,71,76],[1028,3,3,76,79],[1030,4,4,79,83],[1032,2,2,83,85],[1033,1,1,85,86],[1036,3,2,86,88],[1037,2,2,88,90],[1038,2,2,90,92],[1043,1,1,92,93],[1045,1,1,93,94]]],[44,20,18,94,112,[[1046,2,2,94,96],[1050,1,1,96,97],[1052,2,1,97,98],[1053,1,1,98,99],[1054,1,1,99,100],[1056,2,1,100,101],[1057,2,2,101,103],[1059,1,1,103,104],[1060,5,5,104,109],[1061,3,3,109,112]]],[45,13,13,112,125,[[1062,1,1,112,113],[1063,1,1,113,114],[1064,1,1,114,115],[1067,3,3,115,118],[1068,2,2,118,120],[1073,1,1,120,121],[1075,1,1,121,122],[1077,3,3,122,125]]],[46,8,8,125,133,[[1078,1,1,125,126],[1083,1,1,126,127],[1085,1,1,127,128],[1086,2,2,128,130],[1090,3,3,130,133]]],[48,15,15,133,148,[[1097,5,5,133,138],[1098,2,2,138,140],[1099,3,3,140,143],[1100,2,2,143,145],[1101,2,2,145,147],[1102,1,1,147,148]]],[49,3,3,148,151,[[1103,1,1,148,149],[1106,2,2,149,151]]],[50,6,6,151,157,[[1107,5,5,151,156],[1109,1,1,156,157]]],[51,6,6,157,163,[[1111,2,2,157,159],[1113,1,1,159,160],[1114,1,1,160,161],[1115,2,2,161,163]]],[52,1,1,163,164,[[1116,1,1,163,164]]],[53,1,1,164,165,[[1123,1,1,164,165]]],[54,2,2,165,167,[[1125,2,2,165,167]]],[55,1,1,167,168,[[1131,1,1,167,168]]],[56,2,2,168,170,[[1132,2,2,168,170]]],[57,8,8,170,178,[[1134,1,1,170,171],[1135,2,2,171,173],[1138,2,2,173,175],[1141,1,1,175,176],[1142,1,1,176,177],[1145,1,1,177,178]]],[59,8,6,178,184,[[1151,5,3,178,181],[1152,2,2,181,183],[1153,1,1,183,184]]],[60,6,5,184,189,[[1156,3,2,184,186],[1157,1,1,186,187],[1158,2,2,187,189]]],[61,2,2,189,191,[[1160,1,1,189,190],[1163,1,1,190,191]]],[64,4,3,191,194,[[1166,4,3,191,194]]],[65,27,25,194,219,[[1169,1,1,194,195],[1170,3,1,195,196],[1171,1,1,196,197],[1172,1,1,197,198],[1174,2,2,198,200],[1177,2,2,200,202],[1179,2,2,202,204],[1180,2,2,204,206],[1181,1,1,206,207],[1182,1,1,207,208],[1183,1,1,208,209],[1184,2,2,209,211],[1185,1,1,211,212],[1186,2,2,212,214],[1187,2,2,214,216],[1188,3,3,216,219]]]],[23162,23164,23203,23214,23322,23521,23972,24039,24181,24182,24214,24223,24239,24317,24427,24538,24709,24728,24908,24928,24934,24942,24960,24963,24965,24996,24998,24999,25041,25047,25064,25097,25327,25418,25469,25471,26077,26367,26694,26770,26889,26925,26928,26931,26939,26953,26982,26987,27010,27017,27030,27049,27052,27053,27062,27091,27104,27106,27114,27149,27167,27171,27191,27193,27194,27195,27229,27233,27247,27248,27257,27281,27297,27303,27304,27306,27322,27323,27331,27364,27366,27371,27414,27450,27470,27489,27587,27591,27649,27654,27675,27692,27833,27924,27932,27937,28052,28103,28143,28156,28225,28246,28258,28297,28316,28319,28328,28329,28334,28338,28351,28352,28365,28407,28427,28468,28469,28486,28501,28521,28637,28711,28777,28791,28796,28801,28904,28936,28957,28968,29055,29056,29057,29207,29210,29219,29221,29224,29248,29250,29256,29259,29269,29284,29302,29307,29331,29355,29362,29463,29464,29467,29469,29477,29487,29491,29529,29565,29566,29603,29611,29647,29648,29659,29773,29818,29823,29928,29943,29945,29981,29996,30002,30048,30054,30113,30148,30265,30386,30389,30390,30404,30408,30429,30497,30500,30521,30524,30533,30570,30631,30675,30686,30692,30753,30776,30787,30803,30830,30831,30874,30890,30915,30918,30936,30938,30949,30960,30981,31013,31017,31025,31044,31047,31055,31063,31086,31091,31099]]],["+",[1,1,[[65,1,1,0,1,[[1186,1,1,0,1]]]],[31047]]],["Holy",[92,91,[[39,5,5,0,5,[[929,2,2,0,2],[931,1,1,2,3],[940,1,1,3,4],[956,1,1,4,5]]],[40,4,4,5,9,[[957,1,1,5,6],[959,1,1,6,7],[968,1,1,7,8],[969,1,1,8,9]]],[41,12,12,9,21,[[973,4,4,9,13],[974,2,2,13,15],[975,2,2,15,17],[976,1,1,17,18],[983,1,1,18,19],[984,2,2,19,21]]],[42,5,5,21,26,[[997,1,1,21,22],[1003,1,1,22,23],[1010,1,1,23,24],[1013,1,1,24,25],[1016,1,1,25,26]]],[43,42,41,26,67,[[1018,4,4,26,30],[1019,3,3,30,33],[1021,2,2,33,35],[1022,2,2,35,37],[1023,2,2,37,39],[1024,2,2,39,41],[1025,4,4,41,45],[1026,2,2,45,47],[1027,4,4,47,51],[1028,3,3,51,54],[1030,4,4,54,58],[1032,2,2,58,60],[1033,1,1,60,61],[1036,3,2,61,63],[1037,2,2,63,65],[1038,1,1,65,66],[1045,1,1,66,67]]],[44,5,5,67,72,[[1050,1,1,67,68],[1054,1,1,68,69],[1059,1,1,69,70],[1060,2,2,70,72]]],[45,3,3,72,75,[[1063,1,1,72,73],[1067,1,1,73,74],[1073,1,1,74,75]]],[46,2,2,75,77,[[1083,1,1,75,76],[1090,1,1,76,77]]],[51,2,2,77,79,[[1111,2,2,77,79]]],[54,1,1,79,80,[[1125,1,1,79,80]]],[55,1,1,80,81,[[1131,1,1,80,81]]],[57,5,5,81,86,[[1134,1,1,81,82],[1135,1,1,82,83],[1138,1,1,83,84],[1141,1,1,84,85],[1142,1,1,85,86]]],[59,1,1,86,87,[[1151,1,1,86,87]]],[60,1,1,87,88,[[1156,1,1,87,88]]],[61,1,1,88,89,[[1163,1,1,88,89]]],[64,1,1,89,90,[[1166,1,1,89,90]]],[65,1,1,90,91,[[1170,1,1,90,91]]]],[23162,23164,23203,23521,24214,24223,24317,24709,24728,24908,24928,24934,24960,24998,24999,25041,25047,25064,25418,25469,25471,26077,26367,26694,26770,26889,26925,26928,26931,26939,26953,26982,26987,27030,27053,27062,27091,27104,27106,27167,27171,27191,27193,27194,27195,27233,27247,27297,27303,27304,27306,27322,27323,27331,27364,27366,27371,27414,27450,27470,27489,27587,27591,27649,27654,27675,27924,28052,28156,28297,28316,28319,28407,28486,28637,28904,29057,29565,29566,29823,29928,29981,30002,30048,30113,30148,30386,30500,30631,30692,30776]]],["One",[4,4,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]],[43,1,1,2,3,[[1020,1,1,2,3]]],[61,1,1,3,4,[[1160,1,1,3,4]]]],[24239,25097,27010,30570]]],["holy",[70,65,[[39,5,5,0,5,[[932,1,1,0,1],[935,1,1,1,2],[952,1,1,2,3],[953,1,1,3,4],[955,1,1,4,5]]],[40,2,2,5,7,[[962,1,1,5,6],[964,1,1,6,7]]],[41,5,5,7,12,[[973,3,3,7,10],[974,1,1,10,11],[981,1,1,11,12]]],[43,7,7,12,19,[[1020,1,1,12,13],[1021,2,2,13,15],[1023,1,1,15,16],[1024,1,1,16,17],[1027,1,1,17,18],[1038,1,1,18,19]]],[44,7,5,19,24,[[1046,1,1,19,20],[1052,2,1,20,21],[1056,2,1,21,22],[1057,1,1,22,23],[1061,1,1,23,24]]],[45,4,4,24,28,[[1064,1,1,24,25],[1068,2,2,25,27],[1077,1,1,27,28]]],[46,1,1,28,29,[[1090,1,1,28,29]]],[48,6,6,29,35,[[1097,2,2,29,31],[1098,1,1,31,32],[1099,1,1,32,33],[1100,1,1,33,34],[1101,1,1,34,35]]],[50,2,2,35,37,[[1107,1,1,35,36],[1109,1,1,36,37]]],[51,3,3,37,40,[[1114,1,1,37,38],[1115,2,2,38,40]]],[54,1,1,40,41,[[1125,1,1,40,41]]],[57,1,1,41,42,[[1135,1,1,41,42]]],[59,7,5,42,47,[[1151,4,2,42,44],[1152,2,2,44,46],[1153,1,1,46,47]]],[60,5,5,47,52,[[1156,2,2,47,49],[1157,1,1,49,50],[1158,2,2,50,52]]],[64,1,1,52,53,[[1166,1,1,52,53]]],[65,13,12,53,65,[[1169,1,1,53,54],[1170,2,1,54,55],[1172,1,1,55,56],[1177,1,1,56,57],[1180,1,1,57,58],[1184,1,1,58,59],[1186,1,1,59,60],[1187,2,2,60,62],[1188,3,3,62,65]]]],[23214,23322,23972,24039,24182,24427,24538,24942,24963,24965,24996,25327,27017,27049,27052,27114,27149,27281,27692,27932,28103,28225,28246,28352,28427,28501,28521,28796,29055,29210,29219,29250,29256,29302,29331,29487,29529,29611,29647,29648,29818,29996,30389,30390,30404,30408,30429,30497,30500,30521,30524,30533,30692,30753,30776,30803,30874,30936,31013,31044,31055,31063,31086,31091,31099]]],["saint",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29463]]],["saints",[59,59,[[39,1,1,0,1,[[955,1,1,0,1]]],[43,4,4,1,5,[[1026,3,3,1,4],[1043,1,1,4,5]]],[44,8,8,5,13,[[1046,1,1,5,6],[1053,1,1,6,7],[1057,1,1,7,8],[1060,3,3,8,11],[1061,2,2,11,13]]],[45,6,6,13,19,[[1062,1,1,13,14],[1067,2,2,14,16],[1075,1,1,16,17],[1077,2,2,17,19]]],[46,5,5,19,24,[[1078,1,1,19,20],[1085,1,1,20,21],[1086,2,2,21,23],[1090,1,1,23,24]]],[48,9,9,24,33,[[1097,3,3,24,27],[1098,1,1,27,28],[1099,2,2,28,30],[1100,1,1,30,31],[1101,1,1,31,32],[1102,1,1,32,33]]],[49,2,2,33,35,[[1103,1,1,33,34],[1106,1,1,34,35]]],[50,4,4,35,39,[[1107,4,4,35,39]]],[51,1,1,39,40,[[1113,1,1,39,40]]],[52,1,1,40,41,[[1116,1,1,40,41]]],[56,2,2,41,43,[[1132,2,2,41,43]]],[57,2,2,43,45,[[1138,1,1,43,44],[1145,1,1,44,45]]],[64,2,2,45,47,[[1166,2,2,45,47]]],[65,12,12,47,59,[[1171,1,1,47,48],[1174,2,2,48,50],[1177,1,1,50,51],[1179,2,2,51,53],[1180,1,1,53,54],[1181,1,1,54,55],[1182,1,1,55,56],[1183,1,1,56,57],[1184,1,1,57,58],[1185,1,1,58,59]]]],[24181,27229,27248,27257,27833,27937,28143,28258,28328,28329,28334,28338,28351,28365,28468,28469,28711,28777,28791,28801,28936,28957,28968,29056,29207,29221,29224,29248,29259,29269,29284,29307,29355,29362,29464,29467,29469,29477,29491,29603,29659,29943,29945,30054,30265,30675,30686,30787,30830,30831,30890,30915,30918,30938,30949,30960,30981,31017,31025]]],["saints'",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29773]]],["thing",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24928]]]]},{"k":"G41","v":[["holiness",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30222]]]]},{"k":"G42","v":[["holiness",[3,3,[[44,1,1,0,1,[[1046,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]],[51,1,1,2,3,[[1113,1,1,2,3]]]],[27934,28917,29603]]]]},{"k":"G43","v":[["arms",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25001]]]]},{"k":"G44","v":[["hook",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23727]]]]},{"k":"G45","v":[["*",[4,4,[[43,3,3,0,3,[[1044,3,3,0,3]]],[57,1,1,3,4,[[1138,1,1,3,4]]]],[27884,27885,27895,30063]]],["anchor",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30063]]],["anchors",[3,3,[[43,3,3,0,3,[[1044,3,3,0,3]]]],[27884,27885,27895]]]]},{"k":"G46","v":[["new",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]]],[23395,24281]]]]},{"k":"G47","v":[["purity",[2,2,[[53,2,2,0,2,[[1122,1,1,0,1],[1123,1,1,1,2]]]],[29759,29765]]]]},{"k":"G48","v":[["*",[7,7,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,3,3,1,4,[[1038,2,2,1,3],[1041,1,1,3,4]]],[58,1,1,4,5,[[1149,1,1,4,5]]],[59,1,1,5,6,[[1151,1,1,5,6]]],[61,1,1,6,7,[[1161,1,1,6,7]]]],[26578,27688,27690,27787,30345,30396,30582]]],["purified",[2,2,[[43,1,1,0,1,[[1041,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[27787,30396]]],["purifieth",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30582]]],["purify",[3,3,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]],[58,1,1,2,3,[[1149,1,1,2,3]]]],[26578,27688,30345]]],["purifying",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27690]]]]},{"k":"G49","v":[["purification",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27690]]]]},{"k":"G50","v":[["*",[22,21,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[43,2,2,2,4,[[1030,1,1,2,3],[1034,1,1,3,4]]],[44,6,6,4,10,[[1046,1,1,4,5],[1047,1,1,5,6],[1051,1,1,6,7],[1052,1,1,7,8],[1055,1,1,8,9],[1056,1,1,9,10]]],[45,4,3,10,13,[[1071,1,1,10,11],[1073,1,1,11,12],[1075,2,1,12,13]]],[46,3,3,13,16,[[1078,1,1,13,14],[1079,1,1,14,15],[1083,1,1,15,16]]],[47,1,1,16,17,[[1091,1,1,16,17]]],[51,1,1,17,18,[[1114,1,1,17,18]]],[53,1,1,18,19,[[1119,1,1,18,19]]],[57,1,1,19,20,[[1137,1,1,19,20]]],[60,1,1,20,21,[[1157,1,1,20,21]]]],[24570,25346,27389,27546,27943,27966,28071,28092,28191,28234,28568,28635,28716,28808,28835,28907,29079,29616,29709,30032,30512]]],["+",[4,4,[[43,1,1,0,1,[[1030,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[46,2,2,2,4,[[1078,1,1,2,3],[1079,1,1,3,4]]]],[27389,27943,28808,28835]]],["ignorant",[8,7,[[44,2,2,0,2,[[1055,1,1,0,1],[1056,1,1,1,2]]],[45,4,3,2,5,[[1071,1,1,2,3],[1073,1,1,3,4],[1075,2,1,4,5]]],[51,1,1,5,6,[[1114,1,1,5,6]]],[57,1,1,6,7,[[1137,1,1,6,7]]]],[28191,28234,28568,28635,28716,29616,30032]]],["ignorantly",[2,2,[[43,1,1,0,1,[[1034,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]]],[27546,29709]]],["knowing",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27966]]],["not",[4,4,[[41,1,1,0,1,[[981,1,1,0,1]]],[44,2,2,1,3,[[1051,1,1,1,2],[1052,1,1,2,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]]],[25346,28071,28092,30512]]],["understood",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24570]]],["unknown",[2,2,[[46,1,1,0,1,[[1083,1,1,0,1]]],[47,1,1,1,2,[[1091,1,1,1,2]]]],[28907,29079]]]]},{"k":"G51","v":[["errors",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30112]]]]},{"k":"G52","v":[["ignorance",[4,4,[[43,2,2,0,2,[[1020,1,1,0,1],[1034,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[27013,27553,29290,30388]]]]},{"k":"G53","v":[["*",[8,8,[[46,2,2,0,2,[[1084,1,1,0,1],[1088,1,1,1,2]]],[49,1,1,2,3,[[1106,1,1,2,3]]],[53,1,1,3,4,[[1123,1,1,3,4]]],[55,1,1,4,5,[[1130,1,1,4,5]]],[58,1,1,5,6,[[1148,1,1,5,6]]],[59,1,1,6,7,[[1153,1,1,6,7]]],[61,1,1,7,8,[[1161,1,1,7,8]]]],[28927,28991,29450,29785,29913,30336,30426,30582]]],["chaste",[3,3,[[46,1,1,0,1,[[1088,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[28991,29913,30426]]],["clear",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28927]]],["pure",[4,4,[[49,1,1,0,1,[[1106,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]],[58,1,1,2,3,[[1148,1,1,2,3]]],[61,1,1,3,4,[[1161,1,1,3,4]]]],[29450,29785,30336,30582]]]]},{"k":"G54","v":[["pureness",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28904]]]]},{"k":"G55","v":[["sincerely",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29377]]]]},{"k":"G56","v":[["*",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[28752,30414]]],["+",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28752]]],["ignorance",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30414]]]]},{"k":"G57","v":[["UNKNOWN",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27546]]]]},{"k":"G58","v":[["*",[11,11,[[39,3,3,0,3,[[939,1,1,0,1],[948,1,1,1,2],[951,1,1,2,3]]],[40,3,3,3,6,[[962,1,1,3,4],[963,1,1,4,5],[968,1,1,5,6]]],[41,3,3,6,9,[[979,1,1,6,7],[983,1,1,7,8],[992,1,1,8,9]]],[43,2,2,9,11,[[1033,1,1,9,10],[1034,1,1,10,11]]]],[23475,23795,23925,24463,24467,24711,25227,25448,25825,27502,27540]]],["market",[2,2,[[40,1,1,0,1,[[963,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]]],[24467,27540]]],["marketplace",[3,3,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[43,1,1,2,3,[[1033,1,1,2,3]]]],[23795,25227,27502]]],["marketplaces",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24711]]],["markets",[4,4,[[39,2,2,0,2,[[939,1,1,0,1],[951,1,1,1,2]]],[41,2,2,2,4,[[983,1,1,2,3],[992,1,1,3,4]]]],[23475,23925,25448,25825]]],["streets",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24463]]]]},{"k":"G59","v":[["*",[31,31,[[39,7,7,0,7,[[941,2,2,0,2],[942,1,1,2,3],[949,1,1,3,4],[953,2,2,4,6],[955,1,1,6,7]]],[40,5,5,7,12,[[962,2,2,7,9],[967,1,1,9,10],[971,1,1,10,11],[972,1,1,11,12]]],[41,6,6,12,18,[[981,1,1,12,13],[986,2,2,13,15],[989,1,1,15,16],[991,1,1,16,17],[994,1,1,17,18]]],[42,3,3,18,21,[[1000,1,1,18,19],[1002,1,1,19,20],[1009,1,1,20,21]]],[45,3,3,21,24,[[1067,1,1,21,22],[1068,2,2,22,24]]],[60,1,1,24,25,[[1157,1,1,24,25]]],[65,6,6,25,31,[[1169,1,1,25,26],[1171,1,1,26,27],[1179,1,1,27,28],[1180,2,2,28,30],[1184,1,1,30,31]]]],[23583,23585,23612,23838,24017,24018,24136,24443,24444,24655,24872,24874,25314,25571,25572,25679,25776,25900,26164,26262,26659,28487,28510,28517,30501,30764,30788,30925,30929,30930,31004]]],["Buy",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26659]]],["bought",[13,13,[[39,3,3,0,3,[[941,1,1,0,1],[949,1,1,1,2],[955,1,1,2,3]]],[40,3,3,3,6,[[967,1,1,3,4],[971,1,1,4,5],[972,1,1,5,6]]],[41,4,4,6,10,[[986,2,2,6,8],[989,1,1,8,9],[991,1,1,9,10]]],[45,2,2,10,12,[[1067,1,1,10,11],[1068,1,1,11,12]]],[60,1,1,12,13,[[1157,1,1,12,13]]]],[23585,23838,24136,24655,24872,24874,25571,25572,25679,25776,28487,28510,30501]]],["buy",[12,12,[[39,3,3,0,3,[[942,1,1,0,1],[953,2,2,1,3]]],[40,2,2,3,5,[[962,2,2,3,5]]],[41,2,2,5,7,[[981,1,1,5,6],[994,1,1,6,7]]],[42,2,2,7,9,[[1000,1,1,7,8],[1002,1,1,8,9]]],[45,1,1,9,10,[[1068,1,1,9,10]]],[65,2,2,10,12,[[1169,1,1,10,11],[1179,1,1,11,12]]]],[23612,24017,24018,24443,24444,25314,25900,26164,26262,28517,30764,30925]]],["buyeth",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[23583,31004]]],["redeemed",[3,3,[[65,3,3,0,3,[[1171,1,1,0,1],[1180,2,2,1,3]]]],[30788,30929,30930]]]]},{"k":"G60","v":[["*",[2,2,[[43,2,2,0,2,[[1034,1,1,0,1],[1036,1,1,1,2]]]],[27528,27623]]],["+",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27623]]],["sort",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27528]]]]},{"k":"G61","v":[["draught",[2,2,[[41,2,2,0,2,[[977,2,2,0,2]]]],[25111,25116]]]]},{"k":"G62","v":[["unlearned",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27035]]]]},{"k":"G63","v":[["in",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24981]]]]},{"k":"G64","v":[["catch",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24686]]]]},{"k":"G65","v":[["*",[2,2,[[44,2,2,0,2,[[1056,2,2,0,2]]]],[28226,28233]]],["tree",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28226]]],["wild",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28233]]]]},{"k":"G66","v":[["*",[3,3,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[23196,24221,30685]]],["Raging",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30685]]],["wild",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23196,24221]]]]},{"k":"G67","v":[["Agrippa",[12,12,[[43,12,12,0,12,[[1042,5,5,0,5],[1043,7,7,5,12]]]],[27809,27818,27819,27820,27822,27824,27825,27830,27842,27850,27851,27855]]]]},{"k":"G68","v":[["*",[36,34,[[39,17,15,0,15,[[934,2,2,0,2],[941,7,6,2,8],[947,1,1,8,9],[950,1,1,9,10],[952,2,2,10,12],[955,4,3,12,15]]],[40,8,8,15,23,[[961,1,1,15,16],[962,2,2,16,18],[966,2,2,18,20],[969,1,1,20,21],[971,1,1,21,22],[972,1,1,22,23]]],[41,10,10,23,33,[[980,1,1,23,24],[981,1,1,24,25],[984,1,1,25,26],[986,1,1,26,27],[987,2,2,27,29],[989,3,3,29,32],[995,1,1,32,33]]],[43,1,1,33,34,[[1021,1,1,33,34]]]],[23310,23312,23563,23566,23570,23575,23577,23583,23791,23877,23975,23997,24136,24137,24139,24378,24443,24463,24617,24618,24733,24847,24885,25279,25313,25487,25571,25603,25613,25658,25682,25687,25961,27059]]],["+",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23877]]],["country",[8,8,[[40,5,5,0,5,[[961,1,1,0,1],[962,2,2,1,3],[971,1,1,3,4],[972,1,1,4,5]]],[41,3,3,5,8,[[980,1,1,5,6],[981,1,1,6,7],[995,1,1,7,8]]]],[24378,24443,24463,24847,24885,25279,25313,25961]]],["field",[21,19,[[39,15,13,0,13,[[934,2,2,0,2],[941,7,6,2,8],[952,2,2,8,10],[955,4,3,10,13]]],[40,1,1,13,14,[[969,1,1,13,14]]],[41,5,5,14,19,[[984,1,1,14,15],[987,1,1,15,16],[989,3,3,16,19]]]],[23310,23312,23563,23566,23570,23575,23577,23583,23975,23997,24136,24137,24139,24733,25487,25613,25658,25682,25687]]],["fields",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25603]]],["ground",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25571]]],["land",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27059]]],["lands",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,2,2,1,3,[[966,2,2,1,3]]]],[23791,24617,24618]]]]},{"k":"G69","v":[["*",[4,4,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]]],[24750,25862,29355,30258]]],["Watch",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25862]]],["watch",[2,2,[[40,1,1,0,1,[[969,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[24750,30258]]],["watching",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29355]]]]},{"k":"G70","v":[["watchings",[2,2,[[46,2,2,0,2,[[1083,1,1,0,1],[1088,1,1,1,2]]]],[28903,29016]]]]},{"k":"G71","v":[["*",[71,70,[[39,5,5,0,5,[[938,1,1,0,1],[942,1,1,1,2],[949,2,2,2,4],[954,1,1,4,5]]],[40,5,5,5,10,[[957,1,1,5,6],[967,2,2,6,8],[969,1,1,8,9],[970,1,1,9,10]]],[41,14,14,10,24,[[976,4,4,10,14],[982,1,1,14,15],[990,1,1,15,16],[991,3,3,16,19],[993,1,1,19,20],[994,1,1,20,21],[995,2,2,21,23],[996,1,1,23,24]]],[42,12,12,24,36,[[997,1,1,24,25],[1003,1,1,25,26],[1004,1,1,26,27],[1005,1,1,27,28],[1006,1,1,28,29],[1007,3,3,29,32],[1010,1,1,32,33],[1014,1,1,33,34],[1015,2,2,34,36]]],[43,27,26,36,62,[[1022,3,3,36,39],[1023,1,1,39,40],[1025,1,1,40,41],[1026,3,3,41,44],[1028,1,1,44,45],[1034,3,3,45,48],[1035,1,1,48,49],[1036,2,2,49,51],[1037,1,1,51,52],[1038,2,2,52,54],[1039,2,2,54,56],[1040,4,3,56,59],[1042,3,3,59,62]]],[44,2,2,62,64,[[1047,1,1,62,63],[1053,1,1,63,64]]],[45,1,1,64,65,[[1073,1,1,64,65]]],[47,1,1,65,66,[[1095,1,1,65,66]]],[51,1,1,66,67,[[1114,1,1,66,67]]],[54,2,2,67,69,[[1127,1,1,67,68],[1128,1,1,68,69]]],[57,1,1,69,70,[[1134,1,1,69,70]]]],[23435,23603,23828,23833,24100,24253,24642,24647,24728,24796,25064,25072,25092,25103,25397,25728,25758,25761,25766,25838,25918,25936,25967,26012,26086,26373,26384,26453,26497,26530,26538,26539,26699,26813,26829,26838,27080,27085,27086,27113,27208,27218,27237,27243,27333,27528,27538,27542,27569,27622,27623,27638,27680,27698,27709,27728,27744,27752,27765,27802,27813,27819,27966,28130,28636,29180,29617,29859,29881,29987]]],["+",[3,3,[[43,2,2,0,2,[[1036,1,1,0,1],[1039,1,1,1,2]]],[45,1,1,2,3,[[1073,1,1,2,3]]]],[27623,27709,28636]]],["away",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29859]]],["bring",[12,12,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,2,2,2,4,[[991,2,2,2,4]]],[42,2,2,4,6,[[1006,1,1,4,5],[1015,1,1,5,6]]],[43,4,4,6,10,[[1026,2,2,6,8],[1040,2,2,8,10]]],[51,1,1,10,11,[[1114,1,1,10,11]]],[54,1,1,11,12,[[1128,1,1,11,12]]]],[23828,24642,25758,25761,26497,26829,27218,27237,27744,27752,29617,29881]]],["bringing",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29987]]],["brought",[30,30,[[39,2,2,0,2,[[938,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[967,1,1,2,3]]],[41,6,6,3,9,[[976,2,2,3,5],[982,1,1,5,6],[990,1,1,6,7],[991,1,1,7,8],[993,1,1,8,9]]],[42,5,5,9,14,[[997,1,1,9,10],[1003,1,1,10,11],[1004,1,1,11,12],[1005,1,1,12,13],[1015,1,1,13,14]]],[43,16,16,14,30,[[1022,3,3,14,17],[1023,1,1,17,18],[1026,1,1,18,19],[1028,1,1,19,20],[1034,2,2,20,22],[1035,1,1,22,23],[1036,1,1,23,24],[1037,1,1,24,25],[1038,1,1,25,26],[1039,1,1,26,27],[1040,2,2,27,29],[1042,1,1,29,30]]]],[23435,23833,24647,25072,25103,25397,25728,25766,25838,26086,26373,26384,26453,26838,27080,27085,27086,27113,27243,27333,27538,27542,27569,27622,27638,27680,27728,27752,27765,27802]]],["carried",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27698]]],["forth",[2,2,[[43,2,2,0,2,[[1042,2,2,0,2]]]],[27813,27819]]],["go",[6,6,[[40,2,2,0,2,[[957,1,1,0,1],[970,1,1,1,2]]],[42,4,4,2,6,[[1007,3,3,2,5],[1010,1,1,5,6]]]],[24253,24796,26530,26538,26539,26699]]],["going",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24100]]],["is",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26012]]],["kept",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23603]]],["lead",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24728]]],["leadeth",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27966]]],["led",[9,9,[[41,5,5,0,5,[[976,2,2,0,2],[994,1,1,2,3],[995,2,2,3,5]]],[42,1,1,5,6,[[1014,1,1,5,6]]],[43,1,1,6,7,[[1025,1,1,6,7]]],[44,1,1,7,8,[[1053,1,1,7,8]]],[47,1,1,8,9,[[1095,1,1,8,9]]]],[25064,25092,25918,25936,25967,26813,27208,28130,29180]]],["out",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27528]]]]},{"k":"G72","v":[["life",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29863]]]]},{"k":"G73","v":[["*",[6,6,[[49,1,1,0,1,[[1103,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]],[53,1,1,3,4,[[1124,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]],[57,1,1,5,6,[[1144,1,1,5,6]]]],[29391,29495,29572,29800,29877,30213]]],["conflict",[2,2,[[49,1,1,0,1,[[1103,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[29391,29495]]],["contention",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29572]]],["fight",[2,2,[[53,1,1,0,1,[[1124,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]]],[29800,29877]]],["race",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30213]]]]},{"k":"G74","v":[["agony",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25908]]]]},{"k":"G75","v":[["*",[7,7,[[41,1,1,0,1,[[985,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[45,1,1,2,3,[[1070,1,1,2,3]]],[50,2,2,3,5,[[1107,1,1,3,4],[1110,1,1,4,5]]],[53,1,1,5,6,[[1124,1,1,5,6]]],[54,1,1,6,7,[[1128,1,1,6,7]]]],[25542,26821,28565,29494,29554,29800,29877]]],["+",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26821]]],["Fight",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29800]]],["Strive",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25542]]],["fervently",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29554]]],["fought",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29877]]],["mastery",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28565]]],["striving",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29494]]]]},{"k":"G76","v":[["*",[9,7,[[41,1,1,0,1,[[975,1,1,0,1]]],[44,2,1,1,2,[[1050,2,1,1,2]]],[45,3,2,2,4,[[1076,3,2,2,4]]],[53,2,2,4,6,[[1120,2,2,4,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[25063,28061,28740,28763,29729,29730,30686]]],["Adam",[8,7,[[41,1,1,0,1,[[975,1,1,0,1]]],[44,1,1,1,2,[[1050,1,1,1,2]]],[45,3,2,2,4,[[1076,3,2,2,4]]],[53,2,2,4,6,[[1120,2,2,4,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[25063,28061,28740,28763,29729,29730,30686]]],["Adam's",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28061]]]]},{"k":"G77","v":[["charge",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28558]]]]},{"k":"G78","v":[["Addi",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25053]]]]},{"k":"G79","v":[["*",[24,24,[[39,3,3,0,3,[[940,1,1,0,1],[941,1,1,1,2],[947,1,1,2,3]]],[40,4,4,3,7,[[959,1,1,3,4],[962,1,1,4,5],[966,2,2,5,7]]],[41,3,3,7,10,[[982,2,2,7,9],[986,1,1,9,10]]],[42,6,6,10,16,[[1007,5,5,10,15],[1015,1,1,15,16]]],[43,1,1,16,17,[[1040,1,1,16,17]]],[44,2,2,17,19,[[1061,2,2,17,19]]],[45,2,2,19,21,[[1068,1,1,19,20],[1070,1,1,20,21]]],[53,1,1,21,22,[[1123,1,1,21,22]]],[58,1,1,22,23,[[1147,1,1,22,23]]],[62,1,1,23,24,[[1164,1,1,23,24]]]],[23539,23595,23791,24323,24410,24617,24618,25402,25403,25579,26524,26526,26528,26551,26562,26850,27750,28337,28351,28502,28545,29765,30308,30658]]],["sister",[15,15,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[41,2,2,2,4,[[982,2,2,2,4]]],[42,5,5,4,9,[[1007,4,4,4,8],[1015,1,1,8,9]]],[44,2,2,9,11,[[1061,2,2,9,11]]],[45,2,2,11,13,[[1068,1,1,11,12],[1070,1,1,12,13]]],[58,1,1,13,14,[[1147,1,1,13,14]]],[62,1,1,14,15,[[1164,1,1,14,15]]]],[23539,24323,25402,25403,26524,26528,26551,26562,26850,28337,28351,28502,28545,30308,30658]]],["sister's",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27750]]],["sisters",[8,8,[[39,2,2,0,2,[[941,1,1,0,1],[947,1,1,1,2]]],[40,3,3,2,5,[[962,1,1,2,3],[966,2,2,3,5]]],[41,1,1,5,6,[[986,1,1,5,6]]],[42,1,1,6,7,[[1007,1,1,6,7]]],[53,1,1,7,8,[[1123,1,1,7,8]]]],[23595,23791,24410,24617,24618,25579,26526,29765]]]]},{"k":"G80","v":[["*",[346,319,[[39,39,31,0,31,[[929,2,2,0,2],[932,4,2,2,4],[933,5,4,4,8],[935,3,3,8,11],[938,4,2,11,13],[940,5,5,13,18],[941,1,1,18,19],[942,1,1,19,20],[945,1,1,20,21],[946,4,3,21,24],[947,1,1,24,25],[948,1,1,25,26],[950,4,2,26,28],[951,1,1,28,29],[953,1,1,29,30],[956,1,1,30,31]]],[40,20,17,31,48,[[957,2,2,31,33],[959,6,6,33,39],[961,1,1,39,40],[962,3,3,40,43],[966,2,2,43,45],[968,4,2,45,47],[969,2,1,47,48]]],[41,24,20,48,68,[[975,2,2,48,50],[978,5,3,50,53],[980,3,3,53,56],[984,1,1,56,57],[986,2,2,57,59],[987,2,2,59,61],[988,1,1,61,62],[989,1,1,62,63],[990,1,1,63,64],[992,4,2,64,66],[993,1,1,66,67],[994,1,1,67,68]]],[42,14,14,68,82,[[997,2,2,68,70],[998,1,1,70,71],[1002,1,1,71,72],[1003,3,3,72,75],[1007,5,5,75,80],[1016,1,1,80,81],[1017,1,1,81,82]]],[43,57,56,82,138,[[1018,2,2,82,84],[1019,2,2,84,86],[1020,2,2,86,88],[1023,1,1,88,89],[1024,6,6,89,95],[1026,2,2,95,97],[1027,1,1,97,98],[1028,3,3,98,101],[1029,2,2,101,103],[1030,3,3,103,106],[1031,1,1,106,107],[1032,11,10,107,117],[1033,2,2,117,119],[1034,3,3,119,122],[1035,2,2,122,124],[1037,1,1,124,125],[1038,3,3,125,128],[1039,3,3,128,131],[1040,3,3,131,134],[1045,4,4,134,138]]],[44,20,19,138,157,[[1046,1,1,138,139],[1052,2,2,139,141],[1053,2,2,141,143],[1054,1,1,143,144],[1055,1,1,144,145],[1056,1,1,145,146],[1057,1,1,146,147],[1059,5,4,147,151],[1060,3,3,151,154],[1061,3,3,154,157]]],[45,38,35,157,192,[[1062,4,4,157,161],[1063,1,1,161,162],[1064,1,1,162,163],[1065,1,1,163,164],[1066,1,1,164,165],[1067,4,3,165,168],[1068,4,4,168,172],[1069,4,3,172,175],[1070,1,1,175,176],[1071,1,1,176,177],[1072,2,2,177,179],[1073,1,1,179,180],[1075,4,4,180,184],[1076,4,4,184,188],[1077,5,4,188,192]]],[46,12,12,192,204,[[1078,2,2,192,194],[1079,1,1,194,195],[1085,4,4,195,199],[1086,2,2,199,201],[1088,1,1,201,202],[1089,1,1,202,203],[1090,1,1,203,204]]],[47,11,11,204,215,[[1091,3,3,204,207],[1093,1,1,207,208],[1094,3,3,208,211],[1095,2,2,211,213],[1096,2,2,213,215]]],[48,3,3,215,218,[[1102,3,3,215,218]]],[49,9,9,218,227,[[1103,2,2,218,220],[1104,1,1,220,221],[1105,3,3,221,224],[1106,3,3,224,227]]],[50,5,5,227,232,[[1107,2,2,227,229],[1110,3,3,229,232]]],[51,19,18,232,250,[[1111,1,1,232,233],[1112,4,4,233,237],[1113,2,2,237,239],[1114,5,4,239,243],[1115,7,7,243,250]]],[52,9,8,250,258,[[1116,1,1,250,251],[1117,3,3,251,254],[1118,5,4,254,258]]],[53,3,3,258,261,[[1122,1,1,258,259],[1123,1,1,259,260],[1124,1,1,260,261]]],[54,1,1,261,262,[[1128,1,1,261,262]]],[56,4,4,262,266,[[1132,4,4,262,266]]],[57,10,10,266,276,[[1134,3,3,266,269],[1135,2,2,269,271],[1139,1,1,271,272],[1140,1,1,272,273],[1142,1,1,273,274],[1145,2,2,274,276]]],[58,19,17,276,293,[[1146,4,4,276,280],[1147,4,4,280,284],[1148,3,3,284,287],[1149,3,1,287,288],[1150,5,5,288,293]]],[59,1,1,293,294,[[1155,1,1,293,294]]],[60,2,2,294,296,[[1156,1,1,294,295],[1158,1,1,295,296]]],[61,17,14,296,310,[[1160,4,4,296,300],[1161,9,7,300,307],[1162,3,2,307,309],[1163,1,1,309,310]]],[63,3,3,310,313,[[1165,3,3,310,313]]],[64,1,1,313,314,[[1166,1,1,313,314]]],[65,5,5,314,319,[[1167,1,1,314,315],[1172,1,1,315,316],[1178,1,1,316,317],[1185,1,1,317,318],[1188,1,1,318,319]]]],[23146,23155,23227,23230,23256,23257,23258,23281,23319,23320,23321,23419,23438,23535,23536,23537,23538,23539,23594,23600,23701,23742,23748,23762,23791,23816,23896,23897,23926,24048,24205,24231,24234,24305,24319,24320,24321,24322,24323,24401,24410,24424,24425,24617,24618,24692,24693,24729,25026,25044,25160,25187,25188,25264,25265,25266,25472,25565,25579,25615,25620,25648,25654,25717,25807,25808,25842,25896,26084,26085,26107,26265,26331,26333,26338,26525,26542,26544,26546,26555,26884,26921,26937,26939,26978,26986,27013,27018,27104,27118,27129,27139,27141,27142,27153,27233,27246,27282,27308,27319,27336,27339,27354,27377,27388,27400,27416,27443,27445,27449,27455,27464,27465,27474,27475,27478,27482,27485,27523,27529,27533,27537,27575,27584,27658,27671,27681,27684,27705,27709,27717,27735,27739,27740,27913,27914,27916,27920,27943,28092,28095,28128,28145,28158,28189,28234,28246,28290,28293,28295,28301,28317,28318,28333,28350,28353,28359,28364,28373,28374,28389,28395,28411,28439,28465,28472,28473,28475,28499,28502,28511,28516,28538,28539,28540,28545,28568,28602,28633,28635,28684,28698,28704,28717,28719,28724,28768,28776,28787,28788,28791,28796,28801,28808,28837,28933,28950,28954,28955,28959,28961,28998,29040,29054,29059,29068,29076,29117,29143,29159,29162,29173,29175,29189,29206,29347,29358,29360,29373,29375,29416,29422,29434,29438,29443,29450,29463,29466,29467,29549,29551,29557,29564,29571,29579,29584,29587,29592,29597,29604,29609,29613,29616,29622,29625,29633,29635,29646,29647,29648,29652,29662,29674,29676,29679,29684,29691,29693,29753,29764,29790,29891,29939,29945,29954,29958,29988,29989,29994,29996,30007,30069,30103,30152,30263,30264,30268,30275,30282,30285,30294,30298,30307,30308,30320,30329,30331,30348,30361,30363,30364,30366,30373,30477,30489,30537,30557,30559,30560,30561,30589,30591,30592,30593,30594,30595,30596,30623,30624,30640,30661,30663,30668,30673,30706,30804,30901,31027,31089]]],["+",[4,3,[[43,1,1,0,1,[[1028,1,1,0,1]]],[45,2,1,1,2,[[1069,2,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]]],[27319,28540,29753]]],["Brethren",[12,12,[[44,1,1,0,1,[[1055,1,1,0,1]]],[45,2,2,1,3,[[1068,1,1,1,2],[1075,1,1,2,3]]],[47,4,4,3,7,[[1093,1,1,3,4],[1094,1,1,4,5],[1096,2,2,5,7]]],[49,2,2,7,9,[[1105,2,2,7,9]]],[51,1,1,9,10,[[1115,1,1,9,10]]],[58,1,1,10,11,[[1150,1,1,10,11]]],[61,1,1,11,12,[[1160,1,1,11,12]]]],[28189,28511,28698,29117,29143,29189,29206,29434,29438,29646,30373,30557]]],["Brother",[3,3,[[41,1,1,0,1,[[978,1,1,0,1]]],[43,2,2,1,3,[[1026,1,1,1,2],[1039,1,1,2,3]]]],[25188,27233,27717]]],["brethren",[212,210,[[39,16,16,0,16,[[929,2,2,0,2],[932,2,2,2,4],[933,1,1,4,5],[940,4,4,5,9],[941,1,1,9,10],[947,1,1,10,11],[948,1,1,11,12],[950,1,1,12,13],[951,1,1,13,14],[953,1,1,14,15],[956,1,1,15,16]]],[40,7,7,16,23,[[959,4,4,16,20],[966,2,2,20,22],[968,1,1,22,23]]],[41,10,10,23,33,[[980,3,3,23,26],[986,2,2,26,28],[988,1,1,28,29],[990,1,1,29,30],[992,1,1,30,31],[993,1,1,31,32],[994,1,1,32,33]]],[42,6,6,33,39,[[998,1,1,33,34],[1003,3,3,34,37],[1016,1,1,37,38],[1017,1,1,38,39]]],[43,52,51,39,90,[[1018,2,2,39,41],[1019,2,2,41,43],[1020,2,2,43,45],[1023,1,1,45,46],[1024,6,6,46,52],[1026,1,1,52,53],[1027,1,1,53,54],[1028,2,2,54,56],[1029,1,1,56,57],[1030,3,3,57,60],[1031,1,1,60,61],[1032,11,10,61,71],[1033,2,2,71,73],[1034,3,3,73,76],[1035,2,2,76,78],[1037,1,1,78,79],[1038,2,2,79,81],[1039,2,2,81,83],[1040,3,3,83,86],[1045,4,4,86,90]]],[44,13,13,90,103,[[1046,1,1,90,91],[1052,2,2,91,93],[1053,2,2,93,95],[1054,1,1,95,96],[1056,1,1,96,97],[1057,1,1,97,98],[1060,3,3,98,101],[1061,2,2,101,103]]],[45,26,26,103,129,[[1062,3,3,103,106],[1063,1,1,106,107],[1064,1,1,107,108],[1065,1,1,108,109],[1067,2,2,109,111],[1068,1,1,111,112],[1069,1,1,112,113],[1070,1,1,113,114],[1071,1,1,114,115],[1072,2,2,115,117],[1073,1,1,117,118],[1075,3,3,118,121],[1076,4,4,121,125],[1077,4,4,125,129]]],[46,7,7,129,136,[[1078,1,1,129,130],[1085,2,2,130,132],[1086,2,2,132,134],[1088,1,1,134,135],[1090,1,1,135,136]]],[47,6,6,136,142,[[1091,2,2,136,138],[1094,2,2,138,140],[1095,2,2,140,142]]],[48,2,2,142,144,[[1102,2,2,142,144]]],[49,6,6,144,150,[[1103,2,2,144,146],[1105,1,1,146,147],[1106,3,3,147,150]]],[50,2,2,150,152,[[1107,1,1,150,151],[1110,1,1,151,152]]],[51,16,15,152,167,[[1111,1,1,152,153],[1112,4,4,153,157],[1113,1,1,157,158],[1114,4,3,158,161],[1115,6,6,161,167]]],[52,7,7,167,174,[[1116,1,1,167,168],[1117,3,3,168,171],[1118,3,3,171,174]]],[53,2,2,174,176,[[1123,1,1,174,175],[1124,1,1,175,176]]],[54,1,1,176,177,[[1128,1,1,176,177]]],[57,8,8,177,185,[[1134,3,3,177,180],[1135,2,2,180,182],[1139,1,1,182,183],[1142,1,1,183,184],[1145,1,1,184,185]]],[58,14,14,185,199,[[1146,3,3,185,188],[1147,3,3,188,191],[1148,3,3,191,194],[1149,1,1,194,195],[1150,4,4,195,199]]],[60,1,1,199,200,[[1156,1,1,199,200]]],[61,3,3,200,203,[[1161,3,3,200,203]]],[63,3,3,203,206,[[1165,3,3,203,206]]],[65,4,4,206,210,[[1172,1,1,206,207],[1178,1,1,207,208],[1185,1,1,208,209],[1188,1,1,209,210]]]],[23146,23155,23227,23230,23281,23535,23536,23537,23538,23594,23791,23816,23897,23926,24048,24205,24319,24320,24321,24322,24617,24618,24693,25264,25265,25266,25565,25579,25648,25717,25808,25842,25896,26107,26331,26333,26338,26884,26921,26937,26939,26978,26986,27013,27018,27104,27118,27129,27139,27141,27142,27153,27246,27282,27308,27336,27354,27377,27388,27400,27416,27443,27445,27449,27455,27464,27465,27474,27475,27478,27482,27485,27523,27529,27533,27537,27575,27584,27658,27671,27681,27705,27709,27735,27739,27740,27913,27914,27916,27920,27943,28092,28095,28128,28145,28158,28234,28246,28317,28318,28333,28350,28353,28373,28374,28389,28395,28411,28439,28472,28475,28516,28539,28545,28568,28602,28633,28635,28684,28704,28717,28719,28724,28768,28776,28787,28788,28791,28796,28808,28933,28955,28959,28961,28998,29054,29059,29068,29159,29162,29173,29175,29347,29360,29373,29375,29422,29443,29450,29463,29467,29557,29564,29571,29579,29584,29587,29597,29604,29613,29616,29622,29625,29633,29635,29647,29648,29652,29662,29674,29676,29679,29684,29691,29764,29790,29891,29988,29989,29994,29996,30007,30069,30152,30263,30268,30282,30285,30294,30298,30307,30320,30329,30331,30348,30361,30363,30364,30366,30489,30592,30593,30595,30661,30663,30668,30804,30901,31027,31089]]],["brother",[108,94,[[39,21,16,0,16,[[932,2,2,0,2],[933,4,3,2,5],[935,1,1,5,6],[938,4,2,6,8],[940,1,1,8,9],[942,1,1,9,10],[945,1,1,10,11],[946,4,3,11,14],[950,3,2,14,16]]],[40,12,9,16,25,[[957,2,2,16,18],[959,2,2,18,20],[961,1,1,20,21],[962,2,2,21,23],[968,3,1,23,24],[969,2,1,24,25]]],[41,11,9,25,34,[[975,2,2,25,27],[978,2,2,27,29],[984,1,1,29,30],[987,2,2,30,32],[989,1,1,32,33],[992,3,1,33,34]]],[42,8,8,34,42,[[997,2,2,34,36],[1002,1,1,36,37],[1007,5,5,37,42]]],[43,2,2,42,44,[[1029,1,1,42,43],[1038,1,1,43,44]]],[44,5,4,44,48,[[1059,4,3,44,47],[1061,1,1,47,48]]],[45,8,7,48,55,[[1062,1,1,48,49],[1066,1,1,49,50],[1067,2,1,50,51],[1068,2,2,51,53],[1069,1,1,53,54],[1077,1,1,54,55]]],[46,5,5,55,60,[[1078,1,1,55,56],[1079,1,1,56,57],[1085,2,2,57,59],[1089,1,1,59,60]]],[47,1,1,60,61,[[1091,1,1,60,61]]],[48,1,1,61,62,[[1102,1,1,61,62]]],[49,1,1,62,63,[[1104,1,1,62,63]]],[50,3,3,63,66,[[1107,1,1,63,64],[1110,2,2,64,66]]],[51,2,2,66,68,[[1113,1,1,66,67],[1114,1,1,67,68]]],[52,2,2,68,70,[[1118,2,2,68,70]]],[56,4,4,70,74,[[1132,4,4,70,74]]],[57,2,2,74,76,[[1140,1,1,74,75],[1145,1,1,75,76]]],[58,4,3,76,79,[[1146,1,1,76,77],[1147,1,1,77,78],[1149,2,1,78,79]]],[59,1,1,79,80,[[1155,1,1,79,80]]],[60,1,1,80,81,[[1158,1,1,80,81]]],[61,12,11,81,92,[[1160,3,3,81,84],[1161,5,5,84,89],[1162,3,2,89,91],[1163,1,1,91,92]]],[64,1,1,92,93,[[1166,1,1,92,93]]],[65,1,1,93,94,[[1167,1,1,93,94]]]],[23227,23230,23256,23257,23258,23320,23419,23438,23539,23600,23701,23742,23748,23762,23896,23897,24231,24234,24305,24323,24401,24410,24424,24692,24729,25026,25044,25160,25188,25472,25615,25620,25654,25807,26084,26085,26265,26525,26542,26544,26546,26555,27339,27684,28290,28295,28301,28359,28364,28465,28473,28499,28502,28538,28788,28801,28837,28950,28954,29040,29076,29358,29416,29466,29549,29551,29592,29609,29684,29693,29939,29945,29954,29958,30103,30264,30275,30308,30348,30477,30537,30559,30560,30561,30589,30591,30593,30594,30596,30623,30624,30640,30673,30706]]],["brother's",[7,7,[[39,2,2,0,2,[[935,2,2,0,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[41,2,2,3,5,[[978,2,2,3,5]]],[44,1,1,5,6,[[1059,1,1,5,6]]],[61,1,1,6,7,[[1161,1,1,6,7]]]],[23319,23321,24425,25187,25188,28293,30591]]]]},{"k":"G81","v":[["*",[2,2,[[59,2,2,0,2,[[1152,1,1,0,1],[1155,1,1,1,2]]]],[30416,30474]]],["brethren",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30474]]],["brotherhood",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30416]]]]},{"k":"G82","v":[["*",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[25449,28686]]],["not",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25449]]],["uncertain",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28686]]]]},{"k":"G83","v":[["uncertain",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29805]]]]},{"k":"G84","v":[["uncertainly",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28566]]]]},{"k":"G85","v":[["*",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[24091,24787,29417]]],["heaviness",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29417]]],["heavy",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24091,24787]]]]},{"k":"G86","v":[["*",[11,11,[[39,2,2,0,2,[[939,1,1,0,1],[944,1,1,1,2]]],[41,2,2,2,4,[[982,1,1,2,3],[988,1,1,3,4]]],[43,2,2,4,6,[[1019,2,2,4,6]]],[45,1,1,6,7,[[1076,1,1,6,7]]],[65,4,4,7,11,[[1167,1,1,7,8],[1172,1,1,8,9],[1186,2,2,9,11]]]],[23482,23690,25378,25643,26976,26980,28773,30715,30801,31051,31052]]],["Hell",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30801]]],["grave",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28773]]],["hell",[9,9,[[39,2,2,0,2,[[939,1,1,0,1],[944,1,1,1,2]]],[41,2,2,2,4,[[982,1,1,2,3],[988,1,1,3,4]]],[43,2,2,4,6,[[1019,2,2,4,6]]],[65,3,3,6,9,[[1167,1,1,6,7],[1186,2,2,7,9]]]],[23482,23690,25378,25643,26976,26980,30715,31051,31052]]]]},{"k":"G87","v":[["partiality",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30336]]]]},{"k":"G88","v":[["*",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]]],[28157,29812]]],["ceasing",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29812]]],["continual",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28157]]]]},{"k":"G89","v":[["ceasing",[4,4,[[44,1,1,0,1,[[1046,1,1,0,1]]],[51,3,3,1,4,[[1111,1,1,1,2],[1112,1,1,2,3],[1115,1,1,3,4]]]],[27939,29563,29583,29638]]]]},{"k":"G90","v":[["uncorruptness",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29915]]]]},{"k":"G91","v":[["*",[27,23,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[43,5,5,2,7,[[1024,3,3,2,5],[1042,2,2,5,7]]],[45,2,2,7,9,[[1067,2,2,7,9]]],[46,3,2,9,11,[[1084,3,2,9,11]]],[47,1,1,11,12,[[1094,1,1,11,12]]],[50,2,1,12,13,[[1109,2,1,12,13]]],[56,1,1,13,14,[[1132,1,1,13,14]]],[65,11,9,14,23,[[1168,1,1,14,15],[1172,1,1,15,16],[1173,2,2,16,18],[1175,3,3,18,21],[1177,2,1,21,22],[1188,2,1,22,23]]]],[23805,25382,27140,27142,27143,27806,27807,28474,28475,28918,28928,29143,29542,29956,30728,30799,30812,30813,30844,30850,30859,30877,31091]]],["+",[5,5,[[39,1,1,0,1,[[948,1,1,0,1]]],[43,2,2,1,3,[[1024,1,1,1,2],[1042,1,1,2,3]]],[47,1,1,3,4,[[1094,1,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]]],[23805,27143,27806,29143,29542]]],["Hurt",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30813]]],["hurt",[9,8,[[41,1,1,0,1,[[982,1,1,0,1]]],[65,8,7,1,8,[[1168,1,1,1,2],[1172,1,1,2,3],[1173,1,1,3,4],[1175,3,3,4,7],[1177,2,1,7,8]]]],[25382,30728,30799,30812,30844,30850,30859,30877]]],["offender",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27807]]],["unjust",[2,1,[[65,2,1,0,1,[[1188,2,1,0,1]]]],[31091]]],["wrong",[7,6,[[43,2,2,0,2,[[1024,2,2,0,2]]],[45,2,2,2,4,[[1067,2,2,2,4]]],[46,2,1,4,5,[[1084,2,1,4,5]]],[50,1,1,5,6,[[1109,1,1,5,6]]]],[27140,27142,28474,28475,28928,29542]]],["wronged",[2,2,[[46,1,1,0,1,[[1084,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[28918,29956]]]]},{"k":"G92","v":[["*",[3,3,[[43,2,2,0,2,[[1035,1,1,0,1],[1041,1,1,1,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[27571,27789,30998]]],["doing",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27789]]],["iniquities",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30998]]],["wrong",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27571]]]]},{"k":"G93","v":[["*",[25,24,[[41,4,4,0,4,[[985,1,1,0,1],[988,2,2,1,3],[990,1,1,3,4]]],[42,1,1,4,5,[[1003,1,1,4,5]]],[43,2,2,5,7,[[1018,1,1,5,6],[1025,1,1,6,7]]],[44,7,6,7,13,[[1046,3,2,7,9],[1047,1,1,9,10],[1048,1,1,10,11],[1051,1,1,11,12],[1054,1,1,12,13]]],[45,1,1,13,14,[[1074,1,1,13,14]]],[46,1,1,14,15,[[1089,1,1,14,15]]],[52,2,2,15,17,[[1117,2,2,15,17]]],[54,1,1,17,18,[[1126,1,1,17,18]]],[57,1,1,18,19,[[1140,1,1,18,19]]],[58,1,1,19,20,[[1148,1,1,19,20]]],[60,2,2,20,22,[[1157,2,2,20,22]]],[61,2,2,22,24,[[1159,1,1,22,23],[1163,1,1,23,24]]]],[25545,25628,25629,25694,26346,26941,27199,27948,27959,27970,27996,28081,28169,28671,29035,29671,29673,29846,30104,30325,30513,30515,30549,30641]]],["iniquity",[6,6,[[41,1,1,0,1,[[985,1,1,0,1]]],[43,2,2,1,3,[[1018,1,1,1,2],[1025,1,1,2,3]]],[45,1,1,3,4,[[1074,1,1,3,4]]],[54,1,1,4,5,[[1126,1,1,4,5]]],[58,1,1,5,6,[[1148,1,1,5,6]]]],[25545,26941,27199,28671,29846,30325]]],["unjust",[2,2,[[41,2,2,0,2,[[988,1,1,0,1],[990,1,1,1,2]]]],[25628,25694]]],["unrighteousness",[16,15,[[41,1,1,0,1,[[988,1,1,0,1]]],[42,1,1,1,2,[[1003,1,1,1,2]]],[44,7,6,2,8,[[1046,3,2,2,4],[1047,1,1,4,5],[1048,1,1,5,6],[1051,1,1,6,7],[1054,1,1,7,8]]],[52,2,2,8,10,[[1117,2,2,8,10]]],[57,1,1,10,11,[[1140,1,1,10,11]]],[60,2,2,11,13,[[1157,2,2,11,13]]],[61,2,2,13,15,[[1159,1,1,13,14],[1163,1,1,14,15]]]],[25629,26346,27948,27959,27970,27996,28081,28169,29671,29673,30104,30513,30515,30549,30641]]],["wrong",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29035]]]]},{"k":"G94","v":[["*",[12,11,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,4,3,1,4,[[988,3,2,1,3],[990,1,1,3,4]]],[43,1,1,4,5,[[1041,1,1,4,5]]],[44,1,1,5,6,[[1048,1,1,5,6]]],[45,2,2,6,8,[[1067,2,2,6,8]]],[57,1,1,8,9,[[1138,1,1,8,9]]],[59,1,1,9,10,[[1153,1,1,9,10]]],[60,1,1,10,11,[[1157,1,1,10,11]]]],[23279,25630,25631,25699,27784,27996,28468,28476,30054,30442,30509]]],["unjust",[8,7,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,3,2,1,3,[[988,2,1,1,2],[990,1,1,2,3]]],[43,1,1,3,4,[[1041,1,1,3,4]]],[45,1,1,4,5,[[1067,1,1,4,5]]],[59,1,1,5,6,[[1153,1,1,5,6]]],[60,1,1,6,7,[[1157,1,1,6,7]]]],[23279,25630,25699,27784,28468,30442,30509]]],["unrighteous",[4,4,[[41,1,1,0,1,[[988,1,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]],[45,1,1,2,3,[[1067,1,1,2,3]]],[57,1,1,3,4,[[1138,1,1,3,4]]]],[25631,27996,28476,30054]]]]},{"k":"G95","v":[["wrongfully",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30418]]]]},{"k":"G96","v":[["*",[8,8,[[44,1,1,0,1,[[1046,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[46,3,3,2,5,[[1090,3,3,2,5]]],[54,1,1,5,6,[[1127,1,1,5,6]]],[55,1,1,6,7,[[1129,1,1,6,7]]],[57,1,1,7,8,[[1138,1,1,7,8]]]],[27958,28567,29048,29049,29050,29861,29908,30052]]],["castaway",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28567]]],["rejected",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30052]]],["reprobate",[3,3,[[44,1,1,0,1,[[1046,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]],[55,1,1,2,3,[[1129,1,1,2,3]]]],[27958,29861,29908]]],["reprobates",[3,3,[[46,3,3,0,3,[[1090,3,3,0,3]]]],[29048,29049,29050]]]]},{"k":"G97","v":[["sincere",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30401]]]]},{"k":"G98","v":[["Adramyttium",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27857]]]]},{"k":"G99","v":[["Adria",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27882]]]]},{"k":"G100","v":[["abundance",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28952]]]]},{"k":"G101","v":[["impossible",[2,2,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]]],[23720,24930]]]]},{"k":"G102","v":[["*",[10,10,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[43,1,1,3,4,[[1031,1,1,3,4]]],[44,2,2,4,6,[[1053,1,1,4,5],[1060,1,1,5,6]]],[57,4,4,6,10,[[1138,2,2,6,8],[1142,1,1,8,9],[1143,1,1,9,10]]]],[23788,24615,25715,27422,28119,28304,30048,30062,30137,30178]]],["do",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28119]]],["impossible",[6,6,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[57,3,3,3,6,[[1138,2,2,3,5],[1143,1,1,5,6]]]],[23788,24615,25715,30048,30062,30178]]],["impotent",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27422]]],["possible",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30137]]],["weak",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28304]]]]},{"k":"G103","v":[["*",[5,5,[[48,1,1,0,1,[[1101,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]],[65,3,3,2,5,[[1171,1,1,2,3],[1180,1,1,3,4],[1181,1,1,4,5]]]],[29323,29533,30788,30929,30949]]],["sing",[1,1,[[65,1,1,0,1,[[1181,1,1,0,1]]]],[30949]]],["singing",[2,2,[[48,1,1,0,1,[[1101,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29323,29533]]],["sung",[2,2,[[65,2,2,0,2,[[1171,1,1,0,1],[1180,1,1,1,2]]]],[30788,30929]]]]},{"k":"G104","v":[["*",[8,8,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[46,2,2,2,4,[[1081,1,1,2,3],[1083,1,1,3,4]]],[55,1,1,4,5,[[1129,1,1,4,5]]],[57,1,1,5,6,[[1135,1,1,5,6]]],[59,1,1,6,7,[[1153,1,1,6,7]]],[60,1,1,7,8,[[1156,1,1,7,8]]]],[24834,27167,28870,28908,29904,30005,30439,30491]]],["+",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30491]]],["alway",[4,4,[[46,2,2,0,2,[[1081,1,1,0,1],[1083,1,1,1,2]]],[55,1,1,2,3,[[1129,1,1,2,3]]],[57,1,1,3,4,[[1135,1,1,3,4]]]],[28870,28908,29904,30005]]],["always",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[27167,30439]]],["ever",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24834]]]]},{"k":"G105","v":[["*",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]],[65,2,2,2,4,[[1170,1,1,2,3],[1178,1,1,3,4]]]],[23985,25688,30775,30905]]],["eagle",[2,2,[[65,2,2,0,2,[[1170,1,1,0,1],[1178,1,1,1,2]]]],[30775,30905]]],["eagles",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]]],[23985,25688]]]]},{"k":"G106","v":[["*",[9,9,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[970,2,2,1,3]]],[41,2,2,3,5,[[994,2,2,3,5]]],[43,2,2,5,7,[[1029,1,1,5,6],[1037,1,1,6,7]]],[45,2,2,7,9,[[1066,2,2,7,9]]]],[24071,24755,24766,25865,25871,27340,27632,28461,28462]]],["bread",[7,7,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[970,2,2,1,3]]],[41,2,2,3,5,[[994,2,2,3,5]]],[43,2,2,5,7,[[1029,1,1,5,6],[1037,1,1,6,7]]]],[24071,24755,24766,25865,25871,27340,27632]]],["unleavened",[2,2,[[45,2,2,0,2,[[1066,2,2,0,2]]]],[28461,28462]]]]},{"k":"G107","v":[["Azor",[2,2,[[39,2,2,0,2,[[929,2,2,0,2]]]],[23157,23158]]]]},{"k":"G108","v":[["Azotus",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27216]]]]},{"k":"G109","v":[["air",[7,7,[[43,1,1,0,1,[[1039,1,1,0,1]]],[45,2,2,1,3,[[1070,1,1,1,2],[1075,1,1,2,3]]],[48,1,1,3,4,[[1098,1,1,3,4]]],[51,1,1,4,5,[[1114,1,1,4,5]]],[65,2,2,5,7,[[1175,1,1,5,6],[1182,1,1,6,7]]]],[27727,28566,28687,29231,29620,30842,30971]]]]},{"k":"G110","v":[["immortality",[3,3,[[45,2,2,0,2,[[1076,2,2,0,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]]],[28771,28772,29804]]]]},{"k":"G111","v":[["*",[2,2,[[43,1,1,0,1,[[1027,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[27287,30449]]],["abominable",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30449]]],["thing",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27287]]]]},{"k":"G112","v":[["God",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29241]]]]},{"k":"G113","v":[["wicked",[2,2,[[60,2,2,0,2,[[1157,1,1,0,1],[1158,1,1,1,2]]]],[30507,30539]]]]},{"k":"G114","v":[["*",[16,12,[[40,2,2,0,2,[[962,1,1,0,1],[963,1,1,1,2]]],[41,5,2,2,4,[[979,1,1,2,3],[982,4,1,3,4]]],[42,1,1,4,5,[[1008,1,1,4,5]]],[45,1,1,5,6,[[1062,1,1,5,6]]],[47,2,2,6,8,[[1092,1,1,6,7],[1093,1,1,7,8]]],[51,2,1,8,9,[[1114,2,1,8,9]]],[53,1,1,9,10,[[1123,1,1,9,10]]],[57,1,1,10,11,[[1142,1,1,10,11]]],[64,1,1,11,12,[[1166,1,1,11,12]]]],[24433,24472,25225,25379,26628,28382,29102,29117,29611,29775,30161,30680]]],["+",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29611]]],["despise",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30680]]],["despised",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30161]]],["despiseth",[5,2,[[41,4,1,0,1,[[982,4,1,0,1]]],[51,1,1,1,2,[[1114,1,1,1,2]]]],[25379,29611]]],["disannulleth",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29117]]],["frustrate",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29102]]],["nothing",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28382]]],["off",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29775]]],["reject",[2,2,[[40,2,2,0,2,[[962,1,1,0,1],[963,1,1,1,2]]]],[24433,24472]]],["rejected",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25225]]],["rejecteth",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26628]]]]},{"k":"G115","v":[["*",[2,2,[[57,2,2,0,2,[[1139,1,1,0,1],[1141,1,1,1,2]]]],[30082,30131]]],["+",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30131]]],["disannulling",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30082]]]]},{"k":"G116","v":[["Athens",[4,4,[[43,3,3,0,3,[[1034,2,2,0,2],[1035,1,1,2,3]]],[51,1,1,3,4,[[1113,1,1,3,4]]]],[27538,27539,27558,29591]]]]},{"k":"G117","v":[["*",[2,2,[[43,2,2,0,2,[[1034,2,2,0,2]]]],[27544,27545]]],["Athenians",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27544]]],["Athens",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27545]]]]},{"k":"G118","v":[["*",[2,1,[[54,2,1,0,1,[[1126,2,1,0,1]]]],[29832]]],["masteries",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29832]]],["strive",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29832]]]]},{"k":"G119","v":[["fight",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30165]]]]},{"k":"G120","v":[["discouraged",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29538]]]]},{"k":"G121","v":[["innocent",[2,2,[[39,2,2,0,2,[[955,2,2,0,2]]]],[24133,24153]]]]},{"k":"G122","v":[["+",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30209]]]]},{"k":"G123","v":[["shore",[6,6,[[39,2,2,0,2,[[941,2,2,0,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]],[43,3,3,3,6,[[1038,1,1,3,4],[1044,2,2,4,6]]]],[23541,23587,26902,27669,27894,27895]]]]},{"k":"G124","v":[["*",[5,5,[[43,4,4,0,4,[[1024,3,3,0,3],[1038,1,1,3,4]]],[57,1,1,4,5,[[1143,1,1,4,5]]]],[27138,27140,27144,27702,30201]]],["Egyptian",[3,3,[[43,3,3,0,3,[[1024,2,2,0,2],[1038,1,1,2,3]]]],[27140,27144,27702]]],["Egyptians",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[27138,30201]]]]},{"k":"G125","v":[["Egypt",[24,22,[[39,4,4,0,4,[[930,4,4,0,4]]],[43,14,12,4,16,[[1019,1,1,4,5],[1024,12,10,5,15],[1030,1,1,15,16]]],[57,4,4,16,20,[[1135,1,1,16,17],[1140,1,1,17,18],[1143,2,2,18,20]]],[64,1,1,20,21,[[1166,1,1,20,21]]],[65,1,1,21,22,[[1177,1,1,21,22]]]],[23182,23183,23184,23188,26959,27125,27126,27127,27128,27131,27133,27150,27152,27155,27156,27379,30011,30101,30198,30199,30677,30880]]]]},{"k":"G126","v":[["*",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[27950,30678]]],["eternal",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27950]]],["everlasting",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30678]]]]},{"k":"G127","v":[["*",[2,2,[[53,1,1,0,1,[[1120,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[29725,30240]]],["reverence",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30240]]],["shamefacedness",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29725]]]]},{"k":"G128","v":[["*",[2,1,[[43,2,1,0,1,[[1025,2,1,0,1]]]],[27203]]],["Ethiopia",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27203]]],["Ethiopians",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27203]]]]},{"k":"G129","v":[["blood",[99,92,[[39,11,9,0,9,[[944,1,1,0,1],[951,4,2,1,3],[954,1,1,3,4],[955,5,5,4,9]]],[40,3,3,9,12,[[961,2,2,9,11],[970,1,1,11,12]]],[41,8,7,12,19,[[980,2,2,12,14],[983,3,2,14,16],[985,1,1,16,17],[994,2,2,17,19]]],[42,6,6,19,25,[[997,1,1,19,20],[1002,4,4,20,24],[1015,1,1,24,25]]],[43,12,12,25,37,[[1018,1,1,25,26],[1019,2,2,26,28],[1022,1,1,28,29],[1032,2,2,29,31],[1034,1,1,31,32],[1035,1,1,32,33],[1037,2,2,33,35],[1038,1,1,35,36],[1039,1,1,36,37]]],[44,3,3,37,40,[[1048,2,2,37,39],[1050,1,1,39,40]]],[45,4,4,40,44,[[1071,1,1,40,41],[1072,2,2,41,43],[1076,1,1,43,44]]],[47,1,1,44,45,[[1091,1,1,44,45]]],[48,3,3,45,48,[[1097,1,1,45,46],[1098,1,1,46,47],[1102,1,1,47,48]]],[50,2,2,48,50,[[1107,2,2,48,50]]],[57,21,20,50,70,[[1134,1,1,50,51],[1141,11,10,51,61],[1142,3,3,61,64],[1143,1,1,64,65],[1144,2,2,65,67],[1145,3,3,67,70]]],[59,2,2,70,72,[[1151,2,2,70,72]]],[61,4,3,72,75,[[1159,1,1,72,73],[1163,3,2,73,75]]],[65,19,17,75,92,[[1167,1,1,75,76],[1171,1,1,76,77],[1172,2,2,77,79],[1173,1,1,79,80],[1174,2,2,80,82],[1177,1,1,82,83],[1178,1,1,83,84],[1180,1,1,84,85],[1182,4,3,85,88],[1183,2,1,88,89],[1184,1,1,89,90],[1185,2,2,90,92]]]],[23689,23948,23953,24082,24133,24135,24137,24153,24154,24389,24393,24778,25288,25289,25455,25456,25519,25884,25908,26057,26310,26311,26312,26313,26859,26942,26968,26969,27087,27462,27471,27549,27563,27652,27654,27689,27724,28006,28016,28056,28583,28625,28627,28768,29073,29213,29242,29349,29479,29485,29991,30112,30117,30118,30119,30123,30124,30125,30126,30127,30130,30137,30152,30162,30200,30216,30236,30252,30253,30261,30376,30393,30547,30630,30632,30702,30788,30803,30805,30824,30834,30835,30878,30902,30946,30957,30958,30960,30981,31017,31019,31030]]]]},{"k":"G130","v":[["blood",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30127]]]]},{"k":"G131","v":[["blood",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23399]]]]},{"k":"G132","v":[["Aeneas",[2,2,[[43,2,2,0,2,[[1026,2,2,0,2]]]],[27249,27250]]]]},{"k":"G133","v":[["praise",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30256]]]]},{"k":"G134","v":[["*",[9,9,[[41,4,4,0,4,[[974,2,2,0,2],[991,1,1,2,3],[996,1,1,3,4]]],[43,3,3,4,7,[[1019,1,1,4,5],[1020,2,2,5,7]]],[44,1,1,7,8,[[1060,1,1,7,8]]],[65,1,1,8,9,[[1185,1,1,8,9]]]],[24986,24993,25768,26044,26996,27004,27005,28314,31022]]],["Praise",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[65,1,1,1,2,[[1185,1,1,1,2]]]],[28314,31022]]],["Praising",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26996]]],["praise",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25768]]],["praising",[5,5,[[41,3,3,0,3,[[974,2,2,0,2],[996,1,1,2,3]]],[43,2,2,3,5,[[1020,2,2,3,5]]]],[24986,24993,26044,27004,27005]]]]},{"k":"G135","v":[["+",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28677]]]]},{"k":"G136","v":[["praise",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]]],[23842,25731]]]]},{"k":"G137","v":[["Aenon",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26143]]]]},{"k":"G138","v":[["*",[3,3,[[49,1,1,0,1,[[1103,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[29383,29674,30197]]],["Choosing",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30197]]],["choose",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29383]]],["chosen",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29674]]]]},{"k":"G139","v":[["*",[9,9,[[43,6,6,0,6,[[1022,1,1,0,1],[1032,1,1,1,2],[1041,2,2,2,4],[1043,1,1,4,5],[1045,1,1,5,6]]],[45,1,1,6,7,[[1072,1,1,6,7]]],[47,1,1,7,8,[[1095,1,1,7,8]]],[60,1,1,8,9,[[1157,1,1,8,9]]]],[27076,27447,27774,27783,27828,27921,28619,29182,30501]]],["heresies",[3,3,[[45,1,1,0,1,[[1072,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[28619,29182,30501]]],["heresy",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27783]]],["sect",[5,5,[[43,5,5,0,5,[[1022,1,1,0,1],[1032,1,1,1,2],[1041,1,1,2,3],[1043,1,1,3,4],[1045,1,1,4,5]]]],[27076,27447,27774,27828,27921]]]]},{"k":"G140","v":[["chosen",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23507]]]]},{"k":"G141","v":[["heretick",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29933]]]]},{"k":"G142","v":[["*",[102,98,[[39,20,20,0,20,[[932,1,1,0,1],[937,2,2,1,3],[939,1,1,3,4],[941,1,1,4,5],[942,2,2,5,7],[943,1,1,7,8],[944,1,1,8,9],[945,1,1,9,10],[948,1,1,10,11],[949,2,2,11,13],[950,1,1,13,14],[952,3,3,14,17],[953,2,2,17,19],[955,1,1,19,20]]],[40,21,21,20,41,[[958,5,5,20,25],[960,2,2,25,27],[962,3,3,27,30],[964,4,4,30,34],[966,1,1,34,35],[967,1,1,35,36],[969,2,2,36,38],[971,2,2,38,40],[972,1,1,40,41]]],[41,20,20,41,61,[[976,1,1,41,42],[977,2,2,42,44],[978,2,2,44,46],[980,2,2,46,48],[981,3,3,48,51],[983,2,2,51,53],[989,2,2,53,55],[991,4,4,55,59],[994,1,1,59,60],[995,1,1,60,61]]],[42,26,23,61,84,[[997,1,1,61,62],[998,1,1,62,63],[1001,5,5,63,68],[1004,1,1,68,69],[1006,2,2,69,71],[1007,4,3,71,74],[1011,1,1,74,75],[1012,1,1,75,76],[1013,1,1,76,77],[1015,5,3,77,80],[1016,4,4,80,84]]],[43,9,8,84,92,[[1021,1,1,84,85],[1025,2,1,85,86],[1037,1,1,86,87],[1038,2,2,87,89],[1039,1,1,89,90],[1044,2,2,90,92]]],[45,1,1,92,93,[[1067,1,1,92,93]]],[48,1,1,93,94,[[1100,1,1,93,94]]],[50,1,1,94,95,[[1108,1,1,94,95]]],[61,1,1,95,96,[[1161,1,1,95,96]]],[65,2,2,96,98,[[1176,1,1,96,97],[1184,1,1,97,98]]]],[23215,23385,23395,23488,23551,23609,23617,23670,23696,23727,23806,23847,23869,23885,23974,23975,23996,24036,24037,24161,24263,24269,24271,24272,24281,24338,24348,24415,24436,24450,24508,24519,24520,24534,24609,24663,24732,24733,24847,24850,24891,25074,25131,25132,25175,25176,25257,25263,25304,25318,25324,25427,25457,25664,25682,25752,25753,25755,25757,25900,25953,26073,26111,26218,26219,26220,26221,26222,26440,26499,26505,26562,26564,26571,26701,26748,26774,26840,26856,26863,26868,26869,26880,26882,27046,27209,27635,27675,27700,27726,27868,27872,28482,29303,29508,30584,30866,31014]]],["+",[9,9,[[39,3,3,0,3,[[932,1,1,0,1],[950,1,1,1,2],[952,1,1,2,3]]],[41,2,2,3,5,[[976,1,1,3,4],[989,1,1,4,5]]],[42,3,3,5,8,[[1006,1,1,5,6],[1011,1,1,6,7],[1016,1,1,7,8]]],[43,1,1,8,9,[[1044,1,1,8,9]]]],[23215,23885,23996,25074,25682,26505,26701,26882,27868]]],["Away",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,2,2,1,3,[[1038,1,1,1,2],[1039,1,1,2,3]]]],[25953,27700,27726]]],["Take",[6,6,[[39,3,3,0,3,[[939,1,1,0,1],[948,1,1,1,2],[953,1,1,2,3]]],[41,2,2,3,5,[[981,1,1,3,4],[991,1,1,4,5]]],[42,1,1,5,6,[[998,1,1,5,6]]]],[23488,23806,24036,25304,25755,26111]]],["away",[21,21,[[39,2,2,0,2,[[941,1,1,0,1],[953,1,1,1,2]]],[40,2,2,2,4,[[958,1,1,2,3],[960,1,1,3,4]]],[41,5,5,4,9,[[978,2,2,4,6],[980,1,1,6,7],[983,1,1,7,8],[991,1,1,8,9]]],[42,9,9,9,18,[[997,1,1,9,10],[1007,3,3,10,13],[1015,2,2,13,15],[1016,3,3,15,18]]],[43,1,1,18,19,[[1025,1,1,18,19]]],[48,1,1,19,20,[[1100,1,1,19,20]]],[61,1,1,20,21,[[1161,1,1,20,21]]]],[23551,24037,24281,24338,25175,25176,25257,25457,25757,26073,26562,26564,26571,26856,26863,26868,26869,26880,27209,29303,30584]]],["bear",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24161,24847]]],["borne",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24263]]],["carry",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26220]]],["lifted",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26564]]],["removed",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]]],[23847,24663]]],["take",[8,8,[[39,2,2,0,2,[[952,2,2,0,2]]],[40,3,3,2,5,[[962,1,1,2,3],[969,1,1,3,4],[971,1,1,4,5]]],[41,1,1,5,6,[[994,1,1,5,6]]],[42,1,1,6,7,[[1013,1,1,6,7]]],[45,1,1,7,8,[[1067,1,1,7,8]]]],[23974,23975,24415,24732,24850,25900,26774,28482]]],["taken",[4,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[43,1,1,3,4,[[1025,1,1,3,4]]]],[23869,24348,25263,27209]]],["taketh",[4,4,[[39,1,1,0,1,[[937,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,2,2,2,4,[[1006,1,1,2,3],[1012,1,1,3,4]]]],[23395,25427,26499,26748]]],["took",[3,3,[[42,1,1,0,1,[[1015,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]]],[26863,27675,29508]]],["up",[35,35,[[39,6,6,0,6,[[937,1,1,0,1],[942,2,2,1,3],[943,1,1,3,4],[944,1,1,4,5],[945,1,1,5,6]]],[40,12,12,6,18,[[958,3,3,6,9],[962,2,2,9,11],[964,4,4,11,15],[966,1,1,15,16],[969,1,1,16,17],[972,1,1,17,18]]],[41,7,7,18,25,[[977,2,2,18,20],[981,2,2,20,22],[989,1,1,22,23],[991,2,2,23,25]]],[42,5,5,25,30,[[1001,4,4,25,29],[1004,1,1,29,30]]],[43,3,3,30,33,[[1021,1,1,30,31],[1037,1,1,31,32],[1044,1,1,32,33]]],[65,2,2,33,35,[[1176,1,1,33,34],[1184,1,1,34,35]]]],[23385,23609,23617,23670,23696,23727,24269,24271,24272,24436,24450,24508,24519,24520,24534,24609,24733,24891,25131,25132,25318,25324,25664,25752,25753,26218,26219,26221,26222,26440,27046,27635,27872,30866,31014]]],["with",[2,1,[[42,2,1,0,1,[[1015,2,1,0,1]]]],[26840]]]]},{"k":"G143","v":[["perceived",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25346]]]]},{"k":"G144","v":[["judgment",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29370]]]]},{"k":"G145","v":[["senses",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30044]]]]},{"k":"G146","v":[["lucre",[3,3,[[53,2,2,0,2,[[1121,2,2,0,2]]],[55,1,1,2,3,[[1129,1,1,2,3]]]],[29734,29739,29899]]]]},{"k":"G147","v":[["lucre",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30467]]]]},{"k":"G148","v":[["communication",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29525]]]]},{"k":"G149","v":[["shame",[3,3,[[45,2,2,0,2,[[1072,1,1,0,1],[1075,1,1,1,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]]],[28606,28713,29316]]]]},{"k":"G150","v":[["+",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29903]]]]},{"k":"G151","v":[["filthiness",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29308]]]]},{"k":"G152","v":[["*",[6,6,[[41,1,1,0,1,[[986,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]],[65,1,1,5,6,[[1169,1,1,5,6]]]],[25562,28861,29440,30214,30685,30764]]],["dishonesty",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28861]]],["shame",[5,5,[[41,1,1,0,1,[[986,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]],[65,1,1,4,5,[[1169,1,1,4,5]]]],[25562,29440,30214,30685,30764]]]]},{"k":"G153","v":[["ashamed",[5,5,[[41,1,1,0,1,[[988,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]],[61,1,1,4,5,[[1160,1,1,4,5]]]],[25623,28979,29381,30462,30578]]]]},{"k":"G154","v":[["*",[71,68,[[39,14,14,0,14,[[933,1,1,0,1],[934,1,1,1,2],[935,5,5,2,7],[942,1,1,7,8],[946,1,1,8,9],[948,2,2,9,11],[949,1,1,11,12],[955,2,2,12,14]]],[40,10,10,14,24,[[962,4,4,14,18],[966,2,2,18,20],[967,1,1,20,21],[971,3,3,21,24]]],[41,11,11,24,35,[[973,1,1,24,25],[978,1,1,25,26],[983,5,5,26,31],[984,1,1,31,32],[995,3,3,32,35]]],[42,11,10,35,45,[[1000,2,2,35,37],[1007,1,1,37,38],[1010,2,2,38,40],[1011,2,2,40,42],[1012,4,3,42,45]]],[43,10,10,45,55,[[1020,2,2,45,47],[1024,1,1,47,48],[1026,1,1,48,49],[1029,1,1,49,50],[1030,2,2,50,52],[1033,1,1,52,53],[1042,2,2,53,55]]],[45,1,1,55,56,[[1062,1,1,55,56]]],[48,2,2,56,58,[[1099,2,2,56,58]]],[50,1,1,58,59,[[1107,1,1,58,59]]],[58,5,4,59,63,[[1146,2,2,59,61],[1149,3,2,61,63]]],[59,1,1,63,64,[[1153,1,1,63,64]]],[61,5,4,64,68,[[1161,1,1,64,65],[1163,4,3,65,68]]]],[23276,23290,23323,23324,23325,23326,23327,23604,23746,23812,23814,23848,24149,24187,24429,24430,24431,24432,24623,24626,24664,24832,24834,24869,24956,25176,25414,25415,25416,25417,25418,25507,25958,25960,25987,26165,26166,26545,26681,26682,26706,26715,26749,26750,26752,26998,27010,27162,27218,27357,27383,27390,27512,27799,27811,28385,29264,29271,29474,30271,30272,30339,30340,30439,30601,30638,30639,30640]]],["+",[2,2,[[42,2,2,0,2,[[1000,1,1,0,1],[1007,1,1,1,2]]]],[26166,26545]]],["Ask",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]]],[23323,24429,25414]]],["ask",[34,33,[[39,9,9,0,9,[[934,1,1,0,1],[935,3,3,1,4],[942,1,1,4,5],[946,1,1,5,6],[948,1,1,6,7],[949,1,1,7,8],[955,1,1,8,9]]],[40,3,3,9,12,[[962,2,2,9,11],[966,1,1,11,12]]],[41,4,4,12,16,[[983,3,3,12,15],[984,1,1,15,16]]],[42,7,7,16,23,[[1010,2,2,16,18],[1011,2,2,18,20],[1012,3,3,20,23]]],[43,1,1,23,24,[[1020,1,1,23,24]]],[48,1,1,24,25,[[1099,1,1,24,25]]],[58,5,4,25,29,[[1146,2,2,25,27],[1149,3,2,27,29]]],[61,4,4,29,33,[[1161,1,1,29,30],[1163,3,3,30,33]]]],[23290,23325,23326,23327,23604,23746,23814,23848,24149,24430,24431,24626,25416,25417,25418,25507,26681,26682,26706,26715,26749,26750,26752,26998,29271,30271,30272,30339,30340,30601,30638,30639,30640]]],["asked",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[42,1,1,2,3,[[1012,1,1,2,3]]]],[24432,24956,26750]]],["askest",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26165]]],["asketh",[5,5,[[39,2,2,0,2,[[933,1,1,0,1],[935,1,1,1,2]]],[41,2,2,2,4,[[978,1,1,2,3],[983,1,1,3,4]]],[59,1,1,4,5,[[1153,1,1,4,5]]]],[23276,23324,25176,25415,30439]]],["begged",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24187,25987]]],["called",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27512]]],["craved",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24869]]],["desire",[5,5,[[40,3,3,0,3,[[966,1,1,0,1],[967,1,1,1,2],[971,1,1,2,3]]],[48,1,1,3,4,[[1099,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]]],[24623,24664,24834,29264,29474]]],["desired",[10,10,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]],[43,7,7,2,9,[[1020,1,1,2,3],[1024,1,1,3,4],[1026,1,1,4,5],[1029,1,1,5,6],[1030,2,2,6,8],[1042,1,1,8,9]]],[61,1,1,9,10,[[1163,1,1,9,10]]]],[24832,25960,27010,27162,27218,27357,27383,27390,27799,30639]]],["desiring",[2,2,[[39,1,1,0,1,[[948,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]]],[23812,27811]]],["require",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28385]]],["requiring",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25958]]]]},{"k":"G155","v":[["*",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]],[61,1,1,2,3,[[1163,1,1,2,3]]]],[25959,29448,30639]]],["+",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25959]]],["petitions",[1,1,[[61,1,1,0,1,[[1163,1,1,0,1]]]],[30639]]],["requests",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29448]]]]},{"k":"G156","v":[["*",[20,20,[[39,3,3,0,3,[[947,2,2,0,2],[955,1,1,2,3]]],[40,1,1,3,4,[[971,1,1,3,4]]],[41,1,1,4,5,[[980,1,1,4,5]]],[42,3,3,5,8,[[1014,1,1,5,6],[1015,2,2,6,8]]],[43,8,8,8,16,[[1027,1,1,8,9],[1030,1,1,9,10],[1039,1,1,10,11],[1040,1,1,11,12],[1042,2,2,12,14],[1045,2,2,14,16]]],[54,2,2,16,18,[[1125,2,2,16,18]]],[55,1,1,18,19,[[1129,1,1,18,19]]],[57,1,1,19,20,[[1134,1,1,19,20]]]],[23765,23772,24166,24852,25292,26823,26829,26831,27280,27390,27728,27762,27814,27823,27917,27919,29815,29821,29905,29988]]],["+",[3,3,[[43,1,1,0,1,[[1039,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]],[55,1,1,2,3,[[1129,1,1,2,3]]]],[27728,29815,29905]]],["accusation",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[43,1,1,2,3,[[1042,1,1,2,3]]]],[24166,24852,27814]]],["case",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23772]]],["cause",[9,9,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[43,5,5,2,7,[[1027,1,1,2,3],[1030,1,1,3,4],[1040,1,1,4,5],[1045,2,2,5,7]]],[54,1,1,7,8,[[1125,1,1,7,8]]],[57,1,1,8,9,[[1134,1,1,8,9]]]],[23765,25292,27280,27390,27762,27917,27919,29821,29988]]],["crimes",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27823]]],["fault",[3,3,[[42,3,3,0,3,[[1014,1,1,0,1],[1015,2,2,1,3]]]],[26823,26829,26831]]]]},{"k":"G157","v":[["complaints",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27803]]]]},{"k":"G158","v":[["*",[4,4,[[41,3,3,0,3,[[995,3,3,0,3]]],[43,1,1,3,4,[[1036,1,1,3,4]]]],[25939,25949,25957,27625]]],["cause",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[25957,27625]]],["fault",[2,2,[[41,2,2,0,2,[[995,2,2,0,2]]]],[25939,25949]]]]},{"k":"G159","v":[["author",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30039]]]]},{"k":"G160","v":[["*",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]]],[25860,29624]]],["sudden",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29624]]],["unawares",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25860]]]]},{"k":"G161","v":[["*",[3,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[65,2,1,1,2,[[1179,2,1,1,2]]]],[29280,30918]]],["+",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29280]]],["captivity",[2,1,[[65,2,1,0,1,[[1179,2,1,0,1]]]],[30918]]]]},{"k":"G162","v":[["*",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[29280,29859]]],["+",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29280]]],["captive",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29859]]]]},{"k":"G163","v":[["*",[3,3,[[41,1,1,0,1,[[993,1,1,0,1]]],[44,1,1,1,2,[[1052,1,1,1,2]]],[46,1,1,2,3,[[1087,1,1,2,3]]]],[25850,28114,28976]]],["+",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28114]]],["captive",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25850]]],["captivity",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28976]]]]},{"k":"G164","v":[["captives",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25081]]]]},{"k":"G165","v":[["*",[128,102,[[39,9,9,0,9,[[934,1,1,0,1],[940,1,1,1,2],[941,4,4,2,6],[949,1,1,6,7],[952,1,1,7,8],[956,1,1,8,9]]],[40,4,4,9,13,[[959,1,1,9,10],[960,1,1,10,11],[966,1,1,11,12],[967,1,1,12,13]]],[41,7,7,13,20,[[973,3,3,13,16],[988,1,1,16,17],[990,1,1,17,18],[992,2,2,18,20]]],[42,13,12,20,32,[[1000,1,1,20,21],[1002,2,2,21,23],[1004,4,3,23,26],[1005,1,1,26,27],[1006,1,1,27,28],[1007,1,1,28,29],[1008,1,1,29,30],[1009,1,1,30,31],[1010,1,1,31,32]]],[43,2,2,32,34,[[1020,1,1,32,33],[1032,1,1,33,34]]],[44,5,5,34,39,[[1046,1,1,34,35],[1054,1,1,35,36],[1056,1,1,36,37],[1057,1,1,37,38],[1061,1,1,38,39]]],[45,8,7,39,46,[[1062,1,1,39,40],[1063,4,3,40,43],[1064,1,1,43,44],[1069,1,1,44,45],[1071,1,1,45,46]]],[46,3,3,46,49,[[1081,1,1,46,47],[1086,1,1,47,48],[1088,1,1,48,49]]],[47,3,2,49,51,[[1091,3,2,49,51]]],[48,8,7,51,58,[[1097,1,1,51,52],[1098,2,2,52,54],[1099,4,3,54,57],[1102,1,1,57,58]]],[49,2,1,58,59,[[1106,2,1,58,59]]],[50,1,1,59,60,[[1107,1,1,59,60]]],[53,4,2,60,62,[[1119,3,1,60,61],[1124,1,1,61,62]]],[54,3,2,62,64,[[1128,3,2,62,64]]],[55,1,1,64,65,[[1130,1,1,64,65]]],[57,15,13,65,78,[[1133,3,2,65,67],[1137,1,1,67,68],[1138,2,2,68,70],[1139,4,4,70,74],[1141,1,1,74,75],[1143,1,1,75,76],[1145,3,2,76,78]]],[59,6,4,78,82,[[1151,2,2,78,80],[1154,2,1,80,81],[1155,2,1,81,82]]],[60,2,2,82,84,[[1157,1,1,82,83],[1158,1,1,83,84]]],[61,1,1,84,85,[[1160,1,1,84,85]]],[62,1,1,85,86,[[1164,1,1,85,86]]],[64,2,2,86,88,[[1166,2,2,86,88]]],[65,28,14,88,102,[[1167,4,2,88,90],[1170,4,2,90,92],[1171,4,2,92,94],[1173,2,1,94,95],[1176,2,1,95,96],[1177,2,1,96,97],[1180,2,1,97,98],[1181,2,1,98,99],[1185,2,1,99,100],[1186,2,1,100,101],[1188,2,1,101,102]]]],[23295,23521,23561,23578,23579,23588,23845,23960,24215,24317,24342,24618,24654,24926,24948,24963,25628,25718,25813,25814,26170,26308,26315,26416,26432,26433,26472,26509,26549,26614,26638,26684,27017,27460,27955,28160,28245,28247,28363,28383,28400,28401,28402,28428,28540,28578,28863,28965,29020,29061,29062,29227,29231,29236,29260,29262,29272,29349,29462,29491,29713,29805,29880,29888,29920,29965,29971,30036,30049,30064,30081,30085,30088,30092,30131,30175,30249,30262,30397,30399,30457,30476,30517,30540,30567,30647,30685,30697,30703,30715,30777,30778,30792,30793,30822,30867,30887,30937,30953,31020,31048,31085]]],["+",[90,66,[[39,2,2,0,2,[[934,1,1,0,1],[949,1,1,1,2]]],[40,2,2,2,4,[[959,1,1,2,3],[967,1,1,3,4]]],[41,3,3,4,7,[[973,3,3,4,7]]],[42,13,12,7,19,[[1000,1,1,7,8],[1002,2,2,8,10],[1004,4,3,10,13],[1005,1,1,13,14],[1006,1,1,14,15],[1007,1,1,15,16],[1008,1,1,16,17],[1009,1,1,17,18],[1010,1,1,18,19]]],[43,1,1,19,20,[[1020,1,1,19,20]]],[44,4,4,20,24,[[1046,1,1,20,21],[1054,1,1,21,22],[1056,1,1,22,23],[1061,1,1,23,24]]],[45,1,1,24,25,[[1069,1,1,24,25]]],[46,2,2,25,27,[[1086,1,1,25,26],[1088,1,1,26,27]]],[47,2,1,27,28,[[1091,2,1,27,28]]],[48,2,1,28,29,[[1099,2,1,28,29]]],[49,2,1,29,30,[[1106,2,1,29,30]]],[53,3,2,30,32,[[1119,2,1,30,31],[1124,1,1,31,32]]],[54,2,1,32,33,[[1128,2,1,32,33]]],[57,11,9,33,42,[[1133,2,1,33,34],[1137,1,1,34,35],[1138,1,1,35,36],[1139,4,4,36,40],[1145,3,2,40,42]]],[59,6,4,42,46,[[1151,2,2,42,44],[1154,2,1,44,45],[1155,2,1,45,46]]],[60,2,2,46,48,[[1157,1,1,46,47],[1158,1,1,47,48]]],[61,1,1,48,49,[[1160,1,1,48,49]]],[62,1,1,49,50,[[1164,1,1,49,50]]],[64,2,2,50,52,[[1166,2,2,50,52]]],[65,28,14,52,66,[[1167,4,2,52,54],[1170,4,2,54,56],[1171,4,2,56,58],[1173,2,1,58,59],[1176,2,1,59,60],[1177,2,1,60,61],[1180,2,1,61,62],[1181,2,1,62,63],[1185,2,1,63,64],[1186,2,1,64,65],[1188,2,1,65,66]]]],[23295,23845,24317,24654,24926,24948,24963,26170,26308,26315,26416,26432,26433,26472,26509,26549,26614,26638,26684,27017,27955,28160,28245,28363,28540,28965,29020,29062,29272,29462,29713,29805,29888,29971,30036,30064,30081,30085,30088,30092,30249,30262,30397,30399,30457,30476,30517,30540,30567,30647,30685,30697,30703,30715,30777,30778,30792,30793,30822,30867,30887,30937,30953,31020,31048,31085]]],["ages",[2,2,[[48,1,1,0,1,[[1098,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[29236,29491]]],["course",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29231]]],["eternal",[2,2,[[48,1,1,0,1,[[1099,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]]],[29262,29713]]],["world",[31,30,[[39,7,7,0,7,[[940,1,1,0,1],[941,4,4,1,5],[952,1,1,5,6],[956,1,1,6,7]]],[40,2,2,7,9,[[960,1,1,7,8],[966,1,1,8,9]]],[41,4,4,9,13,[[988,1,1,9,10],[990,1,1,10,11],[992,2,2,11,13]]],[43,1,1,13,14,[[1032,1,1,13,14]]],[44,1,1,14,15,[[1057,1,1,14,15]]],[45,7,6,15,21,[[1062,1,1,15,16],[1063,4,3,16,19],[1064,1,1,19,20],[1071,1,1,20,21]]],[46,1,1,21,22,[[1081,1,1,21,22]]],[47,1,1,22,23,[[1091,1,1,22,23]]],[48,3,3,23,26,[[1097,1,1,23,24],[1099,1,1,24,25],[1102,1,1,25,26]]],[54,1,1,26,27,[[1128,1,1,26,27]]],[55,1,1,27,28,[[1130,1,1,27,28]]],[57,2,2,28,30,[[1138,1,1,28,29],[1141,1,1,29,30]]]],[23521,23561,23578,23579,23588,23960,24215,24342,24618,25628,25718,25813,25814,27460,28247,28383,28400,28401,28402,28428,28578,28863,29061,29227,29260,29349,29880,29920,30049,30131]]],["worlds",[2,2,[[57,2,2,0,2,[[1133,1,1,0,1],[1143,1,1,1,2]]]],[29965,30175]]]]},{"k":"G166","v":[["*",[71,69,[[39,6,5,0,5,[[946,1,1,0,1],[947,2,2,1,3],[953,3,2,3,5]]],[40,3,3,5,8,[[959,1,1,5,6],[966,2,2,6,8]]],[41,4,4,8,12,[[982,1,1,8,9],[988,1,1,9,10],[990,2,2,10,12]]],[42,17,17,12,29,[[999,3,3,12,15],[1000,2,2,15,17],[1001,2,2,17,19],[1002,5,5,19,24],[1006,1,1,24,25],[1008,2,2,25,27],[1013,2,2,27,29]]],[43,2,2,29,31,[[1030,2,2,29,31]]],[44,6,6,31,37,[[1047,1,1,31,32],[1050,1,1,32,33],[1051,2,2,33,35],[1061,2,2,35,37]]],[46,3,3,37,40,[[1081,2,2,37,39],[1082,1,1,39,40]]],[47,1,1,40,41,[[1096,1,1,40,41]]],[52,2,2,41,43,[[1116,1,1,41,42],[1117,1,1,42,43]]],[53,4,4,43,47,[[1119,1,1,43,44],[1124,3,3,44,47]]],[54,2,2,47,49,[[1125,1,1,47,48],[1126,1,1,48,49]]],[55,3,2,49,51,[[1129,2,1,49,50],[1131,1,1,50,51]]],[56,1,1,51,52,[[1132,1,1,51,52]]],[57,6,6,52,58,[[1137,1,1,52,53],[1138,1,1,53,54],[1141,3,3,54,57],[1145,1,1,57,58]]],[59,1,1,58,59,[[1155,1,1,58,59]]],[60,1,1,59,60,[[1156,1,1,59,60]]],[61,6,6,60,66,[[1159,1,1,60,61],[1160,1,1,61,62],[1161,1,1,62,63],[1163,3,3,63,66]]],[64,2,2,66,68,[[1166,2,2,66,68]]],[65,1,1,68,69,[[1180,1,1,68,69]]]],[23735,23778,23791,24049,24054,24317,24605,24618,25388,25629,25706,25718,26135,26136,26156,26170,26192,26234,26249,26284,26297,26304,26311,26325,26509,26605,26630,26761,26762,27408,27410,27969,28068,28090,28091,28361,28362,28876,28877,28878,29196,29658,29677,29712,29800,29804,29807,29818,29837,29894,29930,29953,30039,30046,30117,30119,30120,30261,30475,30490,30542,30575,30594,30635,30637,30644,30679,30693,30932]]],["+",[3,3,[[44,1,1,0,1,[[1061,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]],[55,1,1,2,3,[[1129,1,1,2,3]]]],[28361,29818,29894]]],["eternal",[42,42,[[39,2,2,0,2,[[947,1,1,0,1],[953,1,1,1,2]]],[40,3,3,2,5,[[959,1,1,2,3],[966,2,2,3,5]]],[41,2,2,5,7,[[982,1,1,5,6],[990,1,1,6,7]]],[42,9,9,7,16,[[999,1,1,7,8],[1000,1,1,8,9],[1001,1,1,9,10],[1002,2,2,10,12],[1006,1,1,12,13],[1008,1,1,13,14],[1013,2,2,14,16]]],[43,1,1,16,17,[[1030,1,1,16,17]]],[44,3,3,17,20,[[1047,1,1,17,18],[1050,1,1,18,19],[1051,1,1,19,20]]],[46,3,3,20,23,[[1081,2,2,20,22],[1082,1,1,22,23]]],[53,2,2,23,25,[[1124,2,2,23,25]]],[54,1,1,25,26,[[1126,1,1,25,26]]],[55,2,2,26,28,[[1129,1,1,26,27],[1131,1,1,27,28]]],[57,5,5,28,33,[[1137,1,1,28,29],[1138,1,1,29,30],[1141,3,3,30,33]]],[59,1,1,33,34,[[1155,1,1,33,34]]],[61,6,6,34,40,[[1159,1,1,34,35],[1160,1,1,35,36],[1161,1,1,36,37],[1163,3,3,37,40]]],[64,2,2,40,42,[[1166,2,2,40,42]]]],[23778,24054,24317,24605,24618,25388,25706,26135,26192,26249,26311,26325,26509,26605,26761,26762,27410,27969,28068,28091,28876,28877,28878,29800,29807,29837,29894,29930,30039,30046,30117,30119,30120,30475,30542,30575,30594,30635,30637,30644,30679,30693]]],["ever",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29953]]],["everlasting",[25,25,[[39,4,4,0,4,[[946,1,1,0,1],[947,1,1,1,2],[953,2,2,2,4]]],[41,2,2,4,6,[[988,1,1,4,5],[990,1,1,5,6]]],[42,8,8,6,14,[[999,2,2,6,8],[1000,1,1,8,9],[1001,1,1,9,10],[1002,3,3,10,13],[1008,1,1,13,14]]],[43,1,1,14,15,[[1030,1,1,14,15]]],[44,2,2,15,17,[[1051,1,1,15,16],[1061,1,1,16,17]]],[47,1,1,17,18,[[1096,1,1,17,18]]],[52,2,2,18,20,[[1116,1,1,18,19],[1117,1,1,19,20]]],[53,2,2,20,22,[[1119,1,1,20,21],[1124,1,1,21,22]]],[57,1,1,22,23,[[1145,1,1,22,23]]],[60,1,1,23,24,[[1156,1,1,23,24]]],[65,1,1,24,25,[[1180,1,1,24,25]]]],[23735,23791,24049,24054,25629,25718,26136,26156,26170,26234,26284,26297,26304,26630,27408,28090,28362,29196,29658,29677,29712,29804,30261,30490,30932]]]]},{"k":"G167","v":[["uncleanness",[10,10,[[39,1,1,0,1,[[951,1,1,0,1]]],[44,2,2,1,3,[[1046,1,1,1,2],[1051,1,1,2,3]]],[46,1,1,3,4,[[1089,1,1,3,4]]],[47,1,1,4,5,[[1095,1,1,4,5]]],[48,2,2,5,7,[[1100,1,1,5,6],[1101,1,1,6,7]]],[50,1,1,7,8,[[1109,1,1,7,8]]],[51,2,2,8,10,[[1112,1,1,8,9],[1114,1,1,9,10]]]],[23945,27954,28087,29043,29181,29291,29307,29522,29573,29610]]]]},{"k":"G168","v":[["filthiness",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30979]]]]},{"k":"G169","v":[["*",[30,29,[[39,2,2,0,2,[[938,1,1,0,1],[940,1,1,1,2]]],[40,11,11,2,13,[[957,3,3,2,5],[959,2,2,5,7],[961,3,3,7,10],[962,1,1,10,11],[963,1,1,11,12],[965,1,1,12,13]]],[41,6,6,13,19,[[976,2,2,13,15],[978,1,1,15,16],[980,1,1,16,17],[981,1,1,17,18],[983,1,1,18,19]]],[43,5,5,19,24,[[1022,1,1,19,20],[1025,1,1,20,21],[1027,2,2,21,23],[1028,1,1,23,24]]],[45,1,1,24,25,[[1068,1,1,24,25]]],[46,1,1,25,26,[[1083,1,1,25,26]]],[48,1,1,26,27,[[1101,1,1,26,27]]],[65,3,2,27,29,[[1182,1,1,27,28],[1184,2,1,28,29]]]],[23418,23532,24238,24241,24242,24299,24318,24366,24372,24377,24414,24488,24563,25096,25099,25164,25274,25343,25429,27075,27183,27273,27287,27315,28501,28915,29309,30967,30995]]],["foul",[2,2,[[40,1,1,0,1,[[965,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[24563,30995]]],["person",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29309]]],["unclean",[27,27,[[39,2,2,0,2,[[938,1,1,0,1],[940,1,1,1,2]]],[40,10,10,2,12,[[957,3,3,2,5],[959,2,2,5,7],[961,3,3,7,10],[962,1,1,10,11],[963,1,1,11,12]]],[41,6,6,12,18,[[976,2,2,12,14],[978,1,1,14,15],[980,1,1,15,16],[981,1,1,16,17],[983,1,1,17,18]]],[43,5,5,18,23,[[1022,1,1,18,19],[1025,1,1,19,20],[1027,2,2,20,22],[1028,1,1,22,23]]],[45,1,1,23,24,[[1068,1,1,23,24]]],[46,1,1,24,25,[[1083,1,1,24,25]]],[65,2,2,25,27,[[1182,1,1,25,26],[1184,1,1,26,27]]]],[23418,23532,24238,24241,24242,24299,24318,24366,24372,24377,24414,24488,25096,25099,25164,25274,25343,25429,27075,27183,27273,27287,27315,28501,28915,30967,30995]]]]},{"k":"G170","v":[["opportunity",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29452]]]]},{"k":"G171","v":[["season",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29872]]]]},{"k":"G172","v":[["*",[2,2,[[44,1,1,0,1,[[1061,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[28354,30090]]],["harmless",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30090]]],["simple",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28354]]]]},{"k":"G173","v":[["*",[14,11,[[39,5,4,0,4,[[935,1,1,0,1],[941,3,2,1,3],[955,1,1,3,4]]],[40,3,2,4,6,[[960,3,2,4,6]]],[41,4,3,6,9,[[978,1,1,6,7],[980,3,2,7,9]]],[42,1,1,9,10,[[1015,1,1,9,10]]],[57,1,1,10,11,[[1138,1,1,10,11]]]],[23332,23546,23561,24158,24330,24341,25190,25252,25259,26827,30052]]],["+",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23561]]],["thorns",[13,10,[[39,4,3,0,3,[[935,1,1,0,1],[941,2,1,1,2],[955,1,1,2,3]]],[40,3,2,3,5,[[960,3,2,3,5]]],[41,4,3,5,8,[[978,1,1,5,6],[980,3,2,6,8]]],[42,1,1,8,9,[[1015,1,1,8,9]]],[57,1,1,9,10,[[1138,1,1,9,10]]]],[23332,23546,24158,24330,24341,25190,25252,25259,26827,30052]]]]},{"k":"G174","v":[["thorns",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]]],[24843,26830]]]]},{"k":"G175","v":[["*",[7,7,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]],[55,1,1,4,5,[[1131,1,1,4,5]]],[60,1,1,5,6,[[1156,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[23561,24342,28692,29315,29937,30487,30684]]],["fruit",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30684]]],["unfruitful",[6,6,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]],[55,1,1,4,5,[[1131,1,1,4,5]]],[60,1,1,5,6,[[1156,1,1,5,6]]]],[23561,24342,28692,29315,29937,30487]]]]},{"k":"G176","v":[["condemned",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29916]]]]},{"k":"G177","v":[["uncovered",[2,2,[[45,2,2,0,2,[[1072,2,2,0,2]]]],[28605,28613]]]]},{"k":"G178","v":[["uncondemned",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1039,1,1,1,2]]]],[27520,27729]]]]},{"k":"G179","v":[["endless",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30080]]]]},{"k":"G180","v":[["cease",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30514]]]]},{"k":"G181","v":[["*",[5,5,[[41,1,1,0,1,[[993,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[46,2,2,2,4,[[1083,1,1,2,3],[1089,1,1,3,4]]],[58,1,1,4,5,[[1148,1,1,4,5]]]],[25835,28711,28903,29042,30335]]],["commotions",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25835]]],["confusion",[2,2,[[45,1,1,0,1,[[1075,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[28711,30335]]],["tumults",[2,2,[[46,2,2,0,2,[[1083,1,1,0,1],[1089,1,1,1,2]]]],[28903,29042]]]]},{"k":"G182","v":[["unstable",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30274]]]]},{"k":"G183","v":[["unruly",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30327]]]]},{"k":"G184","v":[["Aceldama",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26942]]]]},{"k":"G185","v":[["*",[3,3,[[39,1,1,0,1,[[938,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[23433,28355,29406]]],["harmless",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[23433,29406]]],["simple",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28355]]]]},{"k":"G186","v":[["wavering",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30156]]]]},{"k":"G187","v":[["ripe",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30944]]]]},{"k":"G188","v":[["yet",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23649]]]]},{"k":"G189","v":[["*",[24,22,[[39,4,4,0,4,[[932,1,1,0,1],[941,1,1,1,2],[942,1,1,2,3],[952,1,1,3,4]]],[40,3,3,4,7,[[957,1,1,4,5],[963,1,1,5,6],[969,1,1,6,7]]],[41,1,1,7,8,[[979,1,1,7,8]]],[42,1,1,8,9,[[1008,1,1,8,9]]],[43,2,2,9,11,[[1034,1,1,9,10],[1045,1,1,10,11]]],[44,3,2,11,13,[[1055,3,2,11,13]]],[45,2,1,13,14,[[1073,2,1,13,14]]],[47,2,2,14,16,[[1093,2,2,14,16]]],[51,1,1,16,17,[[1112,1,1,16,17]]],[54,2,2,17,19,[[1128,2,2,17,19]]],[57,2,2,19,21,[[1136,1,1,19,20],[1137,1,1,20,21]]],[60,1,1,21,22,[[1157,1,1,21,22]]]],[23233,23553,23598,23963,24243,24498,24724,25196,26618,27543,27925,28204,28205,28651,29104,29107,29583,29873,29874,30016,30041,30508]]],["Hearing",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27925]]],["audience",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25196]]],["ears",[4,4,[[40,1,1,0,1,[[963,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[54,2,2,2,4,[[1128,2,2,2,4]]]],[24498,27543,29873,29874]]],["fame",[3,3,[[39,2,2,0,2,[[932,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]]],[23233,23598,24243]]],["heard",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29583]]],["hearing",[9,7,[[39,1,1,0,1,[[941,1,1,0,1]]],[44,2,1,1,2,[[1055,2,1,1,2]]],[45,2,1,2,3,[[1073,2,1,2,3]]],[47,2,2,3,5,[[1093,2,2,3,5]]],[57,1,1,5,6,[[1137,1,1,5,6]]],[60,1,1,6,7,[[1157,1,1,6,7]]]],[23553,28205,28651,29104,29107,30041,30508]]],["preached",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30016]]],["report",[2,2,[[42,1,1,0,1,[[1008,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]]],[26618,28204]]],["rumours",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23963,24724]]]]},{"k":"G190","v":[["*",[92,88,[[39,25,24,0,24,[[932,3,3,0,3],[936,5,5,3,8],[937,4,3,8,11],[938,1,1,11,12],[940,1,1,12,13],[942,1,1,13,14],[944,1,1,14,15],[947,4,4,15,19],[948,2,2,19,21],[949,1,1,21,22],[954,1,1,22,23],[955,1,1,23,24]]],[40,19,17,24,41,[[957,1,1,24,25],[958,3,2,25,27],[959,1,1,27,28],[961,1,1,28,29],[962,1,1,29,30],[964,1,1,30,31],[965,2,1,31,32],[966,4,4,32,36],[967,1,1,36,37],[970,3,3,37,40],[971,1,1,40,41]]],[41,17,17,41,58,[[977,3,3,41,44],[979,1,1,44,45],[981,6,6,45,51],[990,3,3,51,54],[994,3,3,54,57],[995,1,1,57,58]]],[42,19,18,58,76,[[997,4,4,58,62],[1002,1,1,62,63],[1004,1,1,63,64],[1006,3,3,64,67],[1007,1,1,67,68],[1008,1,1,68,69],[1009,3,2,69,71],[1014,1,1,71,72],[1016,1,1,72,73],[1017,3,3,73,76]]],[43,4,4,76,80,[[1029,2,2,76,78],[1030,1,1,78,79],[1038,1,1,79,80]]],[45,1,1,80,81,[[1071,1,1,80,81]]],[65,7,7,81,88,[[1172,1,1,81,82],[1180,4,4,82,86],[1184,1,1,86,87],[1185,1,1,87,88]]]],[23229,23231,23234,23346,23355,23364,23367,23368,23388,23398,23406,23455,23504,23610,23696,23764,23783,23789,23790,23821,23826,23835,24112,24184,24233,24274,24275,24295,24388,24408,24534,24576,24609,24616,24620,24640,24649,24767,24805,24808,24867,25118,25134,25135,25204,25312,25324,25350,25358,25360,25362,25710,25716,25731,25874,25903,25918,25962,26081,26082,26084,26087,26259,26393,26485,26486,26508,26554,26606,26666,26667,26800,26873,26917,26918,26920,27345,27346,27405,27700,28571,30801,30930,30934,30935,30939,30998,31031]]],["+",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30939]]],["Follow",[7,7,[[39,2,2,0,2,[[936,1,1,0,1],[937,1,1,1,2]]],[40,1,1,2,3,[[958,1,1,2,3]]],[41,2,2,3,5,[[977,1,1,3,4],[981,1,1,4,5]]],[42,2,2,5,7,[[997,1,1,5,6],[1017,1,1,6,7]]]],[23367,23388,24274,25134,25360,26087,26917]]],["after",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27700]]],["follow",[22,21,[[39,3,3,0,3,[[936,1,1,0,1],[944,1,1,1,2],[947,1,1,2,3]]],[40,4,4,3,7,[[962,1,1,3,4],[964,1,1,4,5],[966,1,1,5,6],[970,1,1,6,7]]],[41,5,5,7,12,[[981,3,3,7,10],[990,1,1,10,11],[994,1,1,11,12]]],[42,8,7,12,19,[[1006,3,3,12,15],[1008,1,1,15,16],[1009,3,2,16,18],[1017,1,1,18,19]]],[43,1,1,19,20,[[1029,1,1,19,20]]],[65,1,1,20,21,[[1180,1,1,20,21]]]],[23364,23696,23783,24408,24534,24609,24767,25324,25358,25362,25710,25874,26485,26486,26508,26606,26666,26667,26920,27345,30930]]],["followed",[52,52,[[39,19,19,0,19,[[932,3,3,0,3],[936,3,3,3,6],[937,3,3,6,9],[940,1,1,9,10],[942,1,1,10,11],[947,3,3,11,14],[948,2,2,14,16],[949,1,1,16,17],[954,1,1,17,18],[955,1,1,18,19]]],[40,12,12,19,31,[[957,1,1,19,20],[958,2,2,20,22],[959,1,1,22,23],[961,1,1,23,24],[966,3,3,24,27],[967,1,1,27,28],[970,2,2,28,30],[971,1,1,30,31]]],[41,9,9,31,40,[[977,2,2,31,33],[979,1,1,33,34],[981,1,1,34,35],[990,2,2,35,37],[994,2,2,37,39],[995,1,1,39,40]]],[42,5,5,40,45,[[997,2,2,40,42],[1002,1,1,42,43],[1007,1,1,43,44],[1014,1,1,44,45]]],[43,2,2,45,47,[[1029,1,1,45,46],[1030,1,1,46,47]]],[45,1,1,47,48,[[1071,1,1,47,48]]],[65,4,4,48,52,[[1172,1,1,48,49],[1180,2,2,49,51],[1185,1,1,51,52]]]],[23229,23231,23234,23346,23355,23368,23388,23398,23406,23504,23610,23764,23789,23790,23821,23826,23835,24112,24184,24233,24274,24275,24295,24388,24616,24620,24640,24649,24805,24808,24867,25118,25135,25204,25312,25716,25731,25903,25918,25962,26081,26084,26259,26554,26800,27346,27405,28571,30801,30934,30935,31031]]],["followeth",[5,4,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,2,1,1,2,[[965,2,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[42,1,1,3,4,[[1004,1,1,3,4]]]],[23455,24576,25350,26393]]],["following",[3,3,[[42,3,3,0,3,[[997,1,1,0,1],[1016,1,1,1,2],[1017,1,1,2,3]]]],[26082,26873,26918]]],["reached",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30998]]]]},{"k":"G191","v":[["*",[437,402,[[39,67,59,0,59,[[930,4,4,0,4],[932,1,1,4,5],[933,5,5,5,10],[935,2,2,10,12],[936,1,1,12,13],[937,1,1,13,14],[938,2,2,14,16],[939,5,4,16,20],[940,3,3,20,23],[941,18,12,23,35],[942,3,2,35,37],[943,2,2,37,39],[945,2,2,39,41],[946,2,2,41,43],[947,2,2,43,45],[948,2,2,45,47],[949,3,3,47,50],[950,4,4,50,54],[952,1,1,54,55],[954,1,1,55,56],[955,2,2,56,58],[956,1,1,58,59]]],[40,48,42,59,101,[[958,2,2,59,61],[959,2,2,61,63],[960,14,10,63,73],[961,2,2,73,75],[962,8,7,75,82],[963,5,4,82,86],[964,1,1,86,87],[965,1,1,87,88],[966,2,2,88,90],[967,2,2,90,92],[968,3,3,92,95],[969,1,1,95,96],[970,3,3,96,99],[971,1,1,99,100],[972,1,1,100,101]]],[41,65,59,101,160,[[973,3,3,101,104],[974,4,4,104,108],[976,2,2,108,110],[977,2,2,110,112],[978,4,4,112,116],[979,5,4,116,120],[980,10,9,120,129],[981,3,3,129,132],[982,6,3,132,135],[983,2,2,135,137],[984,1,1,137,138],[986,3,2,138,140],[987,2,2,140,142],[988,4,4,142,146],[990,5,5,146,151],[991,2,2,151,153],[992,2,2,153,155],[993,2,2,155,157],[994,1,1,157,158],[995,2,2,158,160]]],[42,58,53,160,213,[[997,2,2,160,162],[999,3,3,162,165],[1000,3,3,165,168],[1001,6,5,168,173],[1002,3,2,173,175],[1003,3,3,175,178],[1004,6,5,178,183],[1005,7,5,183,188],[1006,5,5,188,193],[1007,6,6,193,199],[1008,5,5,199,204],[1010,2,2,204,206],[1011,1,1,206,207],[1012,1,1,207,208],[1014,2,2,208,210],[1015,2,2,210,212],[1017,1,1,212,213]]],[43,91,87,213,300,[[1018,1,1,213,214],[1019,6,6,214,220],[1020,2,2,220,222],[1021,4,4,222,226],[1022,6,5,226,231],[1023,2,2,231,233],[1024,5,5,233,238],[1025,3,3,238,241],[1026,5,5,241,246],[1027,4,4,246,250],[1028,4,4,250,254],[1030,4,4,254,258],[1031,2,2,258,260],[1032,4,4,260,264],[1033,2,2,264,266],[1034,4,3,266,269],[1035,2,2,269,271],[1036,5,5,271,276],[1038,3,3,276,279],[1039,8,8,279,287],[1040,1,1,287,288],[1041,3,3,288,291],[1042,2,1,291,292],[1043,3,3,292,295],[1045,6,5,295,300]]],[44,5,4,300,304,[[1055,3,2,300,302],[1056,1,1,302,303],[1060,1,1,303,304]]],[45,4,4,304,308,[[1063,1,1,304,305],[1066,1,1,305,306],[1072,1,1,306,307],[1075,1,1,307,308]]],[46,2,2,308,310,[[1089,2,2,308,310]]],[47,3,3,310,313,[[1091,2,2,310,312],[1094,1,1,312,313]]],[48,5,5,313,318,[[1097,2,2,313,315],[1099,1,1,315,316],[1100,2,2,316,318]]],[49,4,4,318,322,[[1103,2,2,318,320],[1104,1,1,320,321],[1106,1,1,321,322]]],[50,4,4,322,326,[[1107,4,4,322,326]]],[52,1,1,326,327,[[1118,1,1,326,327]]],[53,1,1,327,328,[[1122,1,1,327,328]]],[54,4,4,328,332,[[1125,1,1,328,329],[1126,2,2,329,331],[1128,1,1,331,332]]],[56,1,1,332,333,[[1132,1,1,332,333]]],[57,8,8,333,341,[[1134,2,2,333,335],[1135,3,3,335,338],[1136,2,2,338,340],[1144,1,1,340,341]]],[58,3,3,341,344,[[1146,1,1,341,342],[1147,1,1,342,343],[1150,1,1,343,344]]],[60,1,1,344,345,[[1156,1,1,344,345]]],[61,14,12,345,357,[[1159,3,3,345,348],[1160,4,3,348,351],[1161,1,1,351,352],[1162,4,3,352,355],[1163,2,2,355,357]]],[62,1,1,357,358,[[1164,1,1,357,358]]],[63,1,1,358,359,[[1165,1,1,358,359]]],[65,46,43,359,402,[[1167,2,2,359,361],[1168,4,4,361,365],[1169,5,5,365,370],[1170,1,1,370,371],[1171,2,2,371,373],[1172,5,5,373,378],[1173,1,1,378,379],[1174,1,1,379,380],[1175,3,3,380,383],[1176,2,2,383,385],[1177,1,1,385,386],[1178,1,1,386,387],[1179,1,1,387,388],[1180,3,2,388,390],[1182,3,3,390,393],[1184,4,3,393,396],[1185,2,2,396,398],[1187,1,1,398,399],[1188,4,3,399,402]]]],[23172,23178,23187,23191,23221,23255,23261,23267,23272,23277,23340,23342,23355,23391,23431,23444,23461,23463,23464,23474,23508,23513,23531,23548,23552,23553,23554,23555,23556,23557,23558,23559,23561,23562,23582,23598,23610,23643,23645,23705,23706,23742,23743,23784,23787,23816,23822,23842,23859,23871,23879,23894,23905,23906,23963,24119,24142,24176,24209,24261,24277,24296,24309,24326,24332,24335,24338,24339,24341,24343,24346,24347,24356,24391,24400,24409,24418,24421,24423,24427,24436,24462,24477,24479,24488,24500,24518,24545,24629,24635,24654,24658,24701,24702,24710,24724,24765,24812,24818,24861,24884,24934,24951,24959,24991,24993,25019,25020,25086,25091,25108,25122,25163,25173,25193,25195,25198,25204,25217,25224,25253,25255,25257,25258,25259,25260,25263,25266,25295,25308,25310,25336,25379,25387,25402,25433,25436,25462,25568,25588,25589,25613,25622,25634,25649,25651,25694,25710,25711,25714,25724,25742,25779,25795,25824,25835,25864,25935,25941,25943,26081,26084,26128,26149,26152,26157,26198,26203,26234,26235,26238,26240,26247,26302,26317,26360,26368,26379,26390,26407,26421,26424,26428,26467,26471,26472,26475,26480,26484,26489,26497,26501,26508,26527,26529,26543,26552,26564,26565,26592,26598,26609,26614,26627,26692,26696,26714,26739,26806,26822,26833,26838,26905,26927,26955,26957,26960,26971,26982,26986,27018,27019,27026,27041,27042,27046,27064,27070,27080,27083,27092,27112,27115,27118,27128,27150,27153,27170,27182,27190,27206,27220,27223,27229,27237,27254,27281,27292,27303,27305,27308,27314,27325,27329,27369,27378,27406,27410,27423,27428,27449,27454,27455,27466,27497,27521,27531,27544,27555,27565,27583,27587,27590,27595,27611,27613,27676,27684,27686,27705,27706,27711,27713,27718,27719,27726,27730,27750,27773,27791,27793,27818,27826,27837,27852,27914,27921,27925,27926,27927,28202,28206,28217,28324,28403,28455,28618,28680,29026,29028,29070,29080,29152,29219,29221,29253,29293,29301,29388,29391,29417,29451,29469,29471,29474,29488,29689,29763,29822,29829,29841,29887,29943,29978,29980,30002,30010,30011,30016,30021,30231,30285,30298,30365,30497,30541,30543,30545,30557,30568,30574,30590,30606,30608,30609,30638,30639,30651,30662,30700,30707,30724,30728,30734,30746,30749,30752,30759,30766,30768,30769,30790,30792,30794,30796,30798,30799,30800,30814,30840,30853,30856,30860,30865,30869,30884,30901,30917,30928,30939,30955,30959,30961,30997,31015,31016,31018,31023,31056,31088,31097,31098]]],["+",[7,7,[[39,2,2,0,2,[[941,1,1,0,1],[956,1,1,1,2]]],[43,4,4,2,6,[[1020,1,1,2,3],[1028,1,1,3,4],[1039,1,1,4,5],[1045,1,1,5,6]]],[46,1,1,6,7,[[1089,1,1,6,7]]]],[23554,24209,27019,27329,27726,27926,29028]]],["Hear",[5,5,[[39,3,3,0,3,[[941,1,1,0,1],[943,1,1,1,2],[949,1,1,2,3]]],[40,1,1,3,4,[[968,1,1,3,4]]],[41,1,1,4,5,[[990,1,1,4,5]]]],[23557,23643,23859,24702,25694]]],["Hearest",[2,2,[[39,2,2,0,2,[[949,1,1,0,1],[955,1,1,1,2]]]],[23842,24142]]],["Hearing",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29943]]],["Hearken",[3,3,[[40,2,2,0,2,[[960,1,1,0,1],[963,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[24326,24477,30298]]],["audience",[3,3,[[41,1,1,0,1,[[992,1,1,0,1]]],[43,2,2,1,3,[[1030,1,1,1,2],[1032,1,1,2,3]]]],[25824,27378,27454]]],["hear",[135,121,[[39,22,18,0,18,[[938,2,2,0,2],[939,4,3,2,5],[940,2,2,5,7],[941,10,7,7,14],[945,1,1,14,15],[946,2,2,15,17],[952,1,1,17,18]]],[40,17,13,18,31,[[960,10,7,18,25],[962,1,1,25,26],[963,3,2,26,28],[964,1,1,28,29],[965,1,1,29,30],[969,1,1,30,31]]],[41,26,23,31,54,[[977,2,2,31,33],[978,2,2,33,35],[979,1,1,35,36],[980,6,5,36,41],[981,2,2,41,43],[982,2,1,43,44],[983,2,2,44,46],[986,2,1,46,47],[987,1,1,47,48],[988,3,3,48,51],[991,1,1,51,52],[993,2,2,52,54]]],[42,18,16,54,70,[[1001,4,3,54,57],[1002,1,1,57,58],[1003,1,1,58,59],[1004,2,2,59,61],[1005,2,1,61,62],[1006,5,5,62,67],[1008,1,1,67,68],[1010,1,1,68,69],[1012,1,1,69,70]]],[43,26,25,70,95,[[1019,4,4,70,74],[1020,1,1,74,75],[1024,1,1,75,76],[1027,2,2,76,78],[1030,2,2,78,80],[1032,1,1,80,81],[1034,2,2,81,83],[1036,1,1,83,84],[1038,1,1,84,85],[1039,2,2,85,87],[1041,1,1,87,88],[1042,2,1,88,89],[1043,2,2,89,91],[1045,4,4,91,95]]],[44,2,2,95,97,[[1055,1,1,95,96],[1056,1,1,96,97]]],[45,1,1,97,98,[[1072,1,1,97,98]]],[47,1,1,98,99,[[1094,1,1,98,99]]],[49,2,2,99,101,[[1103,2,2,99,101]]],[52,1,1,101,102,[[1118,1,1,101,102]]],[53,1,1,102,103,[[1122,1,1,102,103]]],[54,1,1,103,104,[[1128,1,1,103,104]]],[57,3,3,104,107,[[1135,2,2,104,106],[1136,1,1,106,107]]],[58,1,1,107,108,[[1146,1,1,107,108]]],[61,1,1,108,109,[[1163,1,1,108,109]]],[63,1,1,109,110,[[1165,1,1,109,110]]],[65,11,11,110,121,[[1167,1,1,110,111],[1168,4,4,111,115],[1169,4,4,115,119],[1175,1,1,119,120],[1179,1,1,120,121]]]],[23431,23444,23463,23464,23474,23508,23531,23548,23552,23553,23554,23555,23556,23582,23705,23742,23743,23963,24332,24335,24341,24343,24346,24347,24356,24418,24479,24500,24518,24545,24724,25108,25122,25163,25173,25217,25253,25257,25258,25263,25266,25310,25336,25387,25433,25436,25588,25589,25622,25649,25651,25779,25835,25864,26235,26238,26240,26317,26379,26424,26428,26467,26484,26489,26497,26501,26508,26627,26692,26739,26957,26960,26971,26982,27018,27153,27281,27292,27369,27406,27449,27544,27555,27611,27686,27705,27718,27773,27818,27826,27852,27921,27925,27926,27927,28202,28217,28618,29152,29388,29391,29689,29763,29887,30002,30010,30021,30285,30639,30662,30700,30724,30728,30734,30746,30752,30759,30766,30768,30860,30917]]],["heard",[239,233,[[39,31,30,0,30,[[930,4,4,0,4],[932,1,1,4,5],[933,5,5,5,10],[936,1,1,10,11],[937,1,1,11,12],[939,1,1,12,13],[940,1,1,13,14],[941,1,1,14,15],[942,3,2,15,17],[943,1,1,17,18],[945,1,1,18,19],[947,2,2,19,21],[948,2,2,21,23],[949,1,1,23,24],[950,4,4,24,28],[954,1,1,28,29],[955,1,1,29,30]]],[40,25,24,30,54,[[958,1,1,30,31],[959,2,2,31,33],[960,2,2,33,35],[961,2,2,35,37],[962,6,5,37,42],[963,1,1,42,43],[966,2,2,43,45],[967,2,2,45,47],[968,2,2,47,49],[970,3,3,49,52],[971,1,1,52,53],[972,1,1,53,54]]],[41,30,30,54,84,[[973,3,3,54,57],[974,3,3,57,60],[976,2,2,60,62],[979,4,4,62,66],[980,3,3,66,69],[981,1,1,69,70],[982,2,2,70,72],[984,1,1,72,73],[986,1,1,73,74],[987,1,1,74,75],[988,1,1,75,76],[990,3,3,76,79],[991,1,1,79,80],[992,1,1,80,81],[994,1,1,81,82],[995,2,2,82,84]]],[42,32,32,84,116,[[997,2,2,84,86],[999,1,1,86,87],[1000,3,3,87,90],[1001,1,1,90,91],[1002,2,2,91,93],[1003,2,2,93,95],[1004,3,3,95,98],[1005,3,3,98,101],[1007,5,5,101,106],[1008,4,4,106,110],[1010,1,1,110,111],[1011,1,1,111,112],[1014,1,1,112,113],[1015,2,2,113,115],[1017,1,1,115,116]]],[43,52,52,116,168,[[1018,1,1,116,117],[1019,2,2,117,119],[1021,3,3,119,122],[1022,5,5,122,127],[1023,2,2,127,129],[1024,3,3,129,132],[1025,2,2,132,134],[1026,4,4,134,138],[1027,2,2,138,140],[1028,3,3,140,143],[1030,1,1,143,144],[1031,2,2,144,146],[1032,1,1,146,147],[1033,2,2,147,149],[1034,2,2,149,151],[1035,1,1,151,152],[1036,4,4,152,156],[1038,2,2,156,158],[1039,5,5,158,163],[1040,1,1,163,164],[1041,2,2,164,166],[1043,1,1,166,167],[1045,1,1,167,168]]],[44,3,3,168,171,[[1055,2,2,168,170],[1060,1,1,170,171]]],[45,1,1,171,172,[[1063,1,1,171,172]]],[46,1,1,172,173,[[1089,1,1,172,173]]],[47,2,2,173,175,[[1091,2,2,173,175]]],[48,4,4,175,179,[[1097,2,2,175,177],[1099,1,1,177,178],[1100,1,1,178,179]]],[49,2,2,179,181,[[1104,1,1,179,180],[1106,1,1,180,181]]],[50,4,4,181,185,[[1107,4,4,181,185]]],[54,2,2,185,187,[[1125,1,1,185,186],[1126,1,1,186,187]]],[57,5,5,187,192,[[1134,2,2,187,189],[1135,1,1,189,190],[1136,1,1,190,191],[1144,1,1,191,192]]],[58,1,1,192,193,[[1150,1,1,192,193]]],[60,1,1,193,194,[[1156,1,1,193,194]]],[61,9,8,194,202,[[1159,3,3,194,197],[1160,4,3,197,200],[1161,1,1,200,201],[1162,1,1,201,202]]],[62,1,1,202,203,[[1164,1,1,202,203]]],[65,33,30,203,233,[[1167,1,1,203,204],[1169,1,1,204,205],[1170,1,1,205,206],[1171,2,2,206,208],[1172,5,5,208,213],[1173,1,1,213,214],[1174,1,1,214,215],[1175,2,2,215,217],[1176,2,2,217,219],[1177,1,1,219,220],[1178,1,1,220,221],[1180,3,2,221,223],[1182,3,3,223,226],[1184,4,3,226,229],[1185,2,2,229,231],[1187,1,1,231,232],[1188,2,1,232,233]]]],[23172,23178,23187,23191,23221,23255,23261,23267,23272,23277,23355,23391,23461,23513,23556,23598,23610,23645,23706,23784,23787,23816,23822,23871,23879,23894,23905,23906,24119,24176,24277,24296,24309,24338,24339,24391,24400,24421,24423,24427,24436,24462,24488,24629,24635,24654,24658,24701,24710,24765,24812,24818,24861,24884,24934,24951,24959,24991,24993,25020,25086,25091,25198,25204,25217,25224,25259,25260,25295,25308,25387,25402,25462,25568,25613,25634,25710,25711,25714,25742,25795,25935,25941,25943,26081,26084,26152,26157,26198,26203,26247,26302,26317,26360,26368,26390,26407,26421,26472,26475,26480,26527,26529,26543,26552,26564,26592,26598,26609,26614,26696,26714,26806,26833,26838,26905,26927,26955,26986,27026,27042,27046,27064,27070,27080,27083,27092,27112,27115,27128,27150,27170,27190,27206,27220,27229,27237,27254,27303,27305,27308,27314,27325,27410,27423,27428,27466,27497,27521,27531,27555,27583,27587,27590,27595,27613,27676,27684,27706,27711,27713,27719,27730,27750,27791,27793,27837,27914,28202,28206,28324,28403,29026,29070,29080,29219,29221,29253,29293,29417,29451,29469,29471,29474,29488,29822,29829,29978,29980,30011,30016,30231,30365,30497,30541,30543,30545,30557,30568,30574,30590,30606,30651,30707,30749,30769,30790,30792,30794,30796,30798,30799,30800,30814,30840,30853,30856,30865,30869,30884,30901,30928,30939,30955,30959,30961,30997,31015,31016,31018,31023,31056,31088]]],["hearers",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[29301,29841]]],["hearest",[2,2,[[42,2,2,0,2,[[999,1,1,0,1],[1007,1,1,1,2]]]],[26128,26565]]],["heareth",[22,19,[[39,6,6,0,6,[[935,2,2,0,2],[941,4,4,2,6]]],[41,4,3,6,9,[[978,2,2,6,8],[982,2,1,8,9]]],[42,6,5,9,14,[[999,1,1,9,10],[1001,1,1,10,11],[1004,1,1,11,12],[1005,2,1,12,13],[1014,1,1,13,14]]],[61,4,3,14,17,[[1162,3,2,14,16],[1163,1,1,16,17]]],[65,2,2,17,19,[[1188,2,2,17,19]]]],[23340,23342,23558,23559,23561,23562,25193,25195,25379,26149,26234,26428,26471,26822,30608,30609,30638,31097,31098]]],["hearing",[10,10,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,2,2,1,3,[[960,1,1,1,2],[962,1,1,2,3]]],[41,3,3,3,6,[[974,1,1,3,4],[980,1,1,4,5],[990,1,1,5,6]]],[43,4,4,6,10,[[1022,1,1,6,7],[1025,1,1,7,8],[1026,1,1,8,9],[1035,1,1,9,10]]]],[23552,24335,24409,25019,25255,25724,27064,27182,27223,27565]]],["hearken",[3,3,[[43,3,3,0,3,[[1021,1,1,0,1],[1024,1,1,1,2],[1032,1,1,2,3]]]],[27041,27118,27455]]],["noised",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24261]]],["reported",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28455]]],["understandeth",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28680]]]]},{"k":"G192","v":[["*",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[23943,28492]]],["excess",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23943]]],["incontinency",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28492]]]]},{"k":"G193","v":[["incontinent",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29856]]]]},{"k":"G194","v":[["mixture",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30936]]]]},{"k":"G195","v":[["manner",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27707]]]]},{"k":"G196","v":[["straitest",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27828]]]]},{"k":"G197","v":[["*",[4,4,[[43,4,4,0,4,[[1035,1,1,0,1],[1040,2,2,1,3],[1041,1,1,3,4]]]],[27583,27749,27754,27791]]],["+",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27791]]],["perfectly",[3,3,[[43,3,3,0,3,[[1035,1,1,0,1],[1040,2,2,1,3]]]],[27583,27749,27754]]]]},{"k":"G198","v":[["*",[2,2,[[39,2,2,0,2,[[930,2,2,0,2]]]],[23176,23185]]],["+",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23176]]],["enquired",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23185]]]]},{"k":"G199","v":[["*",[5,5,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[43,1,1,2,3,[[1035,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]],[51,1,1,4,5,[[1115,1,1,4,5]]]],[23177,24896,27582,29319,29623]]],["circumspectly",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29319]]],["diligently",[2,2,[[39,1,1,0,1,[[930,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]]],[23177,27582]]],["perfect",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24896]]],["perfectly",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29623]]]]},{"k":"G200","v":[["locusts",[4,4,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[65,2,2,2,4,[[1175,2,2,2,4]]]],[23196,24221,30843,30847]]]]},{"k":"G201","v":[["hearing",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27819]]]]},{"k":"G202","v":[["*",[4,4,[[44,1,1,0,1,[[1047,1,1,0,1]]],[58,3,3,1,4,[[1146,3,3,1,4]]]],[27975,30288,30289,30291]]],["hearer",[2,2,[[58,2,2,0,2,[[1146,2,2,0,2]]]],[30289,30291]]],["hearers",[2,2,[[44,1,1,0,1,[[1047,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[27975,30288]]]]},{"k":"G203","v":[["*",[20,17,[[43,1,1,0,1,[[1028,1,1,0,1]]],[44,11,8,1,9,[[1047,4,3,1,4],[1048,1,1,4,5],[1049,6,4,5,9]]],[45,2,2,9,11,[[1068,2,2,9,11]]],[47,3,3,11,14,[[1092,1,1,11,12],[1095,1,1,12,13],[1096,1,1,13,14]]],[48,1,1,14,15,[[1098,1,1,14,15]]],[50,2,2,15,17,[[1108,1,1,15,16],[1109,1,1,16,17]]]],[27310,27987,27988,27989,28021,28031,28032,28033,28034,28505,28506,29088,29168,29203,29240,29507,29528]]],["+",[3,2,[[44,3,2,0,2,[[1049,3,2,0,2]]]],[28033,28034]]],["Uncircumcision",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29240]]],["uncircumcised",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27310]]],["uncircumcision",[15,13,[[44,8,6,0,6,[[1047,4,3,0,3],[1048,1,1,3,4],[1049,3,2,4,6]]],[45,2,2,6,8,[[1068,2,2,6,8]]],[47,3,3,8,11,[[1092,1,1,8,9],[1095,1,1,9,10],[1096,1,1,10,11]]],[50,2,2,11,13,[[1108,1,1,11,12],[1109,1,1,12,13]]]],[27987,27988,27989,28021,28031,28032,28505,28506,29088,29168,29203,29507,29528]]]]},{"k":"G204","v":[["*",[2,2,[[48,1,1,0,1,[[1098,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[29249,30405]]],["+",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30405]]],["corner",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29249]]]]},{"k":"G205","v":[["spoils",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30068]]]]},{"k":"G206","v":[["*",[6,4,[[39,2,1,0,1,[[952,2,1,0,1]]],[40,2,1,1,2,[[969,2,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[23988,24744,25644,30193]]],["end",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23988]]],["other",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23988]]],["part",[2,1,[[40,2,1,0,1,[[969,2,1,0,1]]]],[24744]]],["tip",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25644]]],["top",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30193]]]]},{"k":"G207","v":[["Aquila",[6,6,[[43,3,3,0,3,[[1035,3,3,0,3]]],[44,1,1,3,4,[[1061,1,1,3,4]]],[45,1,1,4,5,[[1077,1,1,4,5]]],[54,1,1,5,6,[[1128,1,1,5,6]]]],[27559,27575,27583,28339,28795,29889]]]]},{"k":"G208","v":[["+",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[47,1,1,2,3,[[1093,1,1,2,3]]]],[23639,24476,29119]]]]},{"k":"G209","v":[["him",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27930]]]]},{"k":"G210","v":[["will",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28557]]]]},{"k":"G211","v":[["box",[4,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,1,1,2,[[970,2,1,1,2]]],[41,1,1,2,3,[[979,1,1,2,3]]]],[24061,24757,25232]]]]},{"k":"G212","v":[["*",[2,2,[[58,1,1,0,1,[[1149,1,1,0,1]]],[61,1,1,1,2,[[1160,1,1,1,2]]]],[30353,30566]]],["boastings",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30353]]],["pride",[1,1,[[61,1,1,0,1,[[1160,1,1,0,1]]]],[30566]]]]},{"k":"G213","v":[["boasters",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[27960,29855]]]]},{"k":"G214","v":[["*",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[45,1,1,1,2,[[1074,1,1,1,2]]]],[24402,28666]]],["tinkling",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28666]]],["wailed",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24402]]]]},{"k":"G215","v":[["uttered",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28142]]]]},{"k":"G216","v":[["dumb",[3,3,[[40,3,3,0,3,[[963,1,1,0,1],[965,2,2,1,3]]]],[24500,24555,24563]]]]},{"k":"G217","v":[["*",[8,4,[[39,2,1,0,1,[[933,2,1,0,1]]],[40,3,1,1,2,[[965,3,1,1,2]]],[41,2,1,2,3,[[986,2,1,2,3]]],[50,1,1,3,4,[[1110,1,1,3,4]]]],[23247,24588,25587,29548]]],["Salt",[2,2,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]]],[24588,25587]]],["salt",[6,4,[[39,2,1,0,1,[[933,2,1,0,1]]],[40,2,1,1,2,[[965,2,1,1,2]]],[41,1,1,2,3,[[986,1,1,2,3]]],[50,1,1,3,4,[[1110,1,1,3,4]]]],[23247,24588,25587,29548]]]]},{"k":"G218","v":[["*",[9,8,[[39,1,1,0,1,[[934,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[972,1,1,2,3]]],[41,3,2,3,5,[[979,3,2,3,5]]],[42,2,2,5,7,[[1007,1,1,5,6],[1008,1,1,6,7]]],[58,1,1,7,8,[[1150,1,1,7,8]]]],[23299,24420,24874,25233,25241,26525,26583,30368]]],["anoint",[3,3,[[39,1,1,0,1,[[934,1,1,0,1]]],[40,1,1,1,2,[[972,1,1,1,2]]],[41,1,1,2,3,[[979,1,1,2,3]]]],[23299,24874,25241]]],["anointed",[5,5,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,2,2,1,3,[[979,2,2,1,3]]],[42,2,2,3,5,[[1007,1,1,3,4],[1008,1,1,4,5]]]],[24420,25233,25241,26525,26583]]],["anointing",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30368]]]]},{"k":"G219","v":[["cockcrowing",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24752]]]]},{"k":"G220","v":[["cock",[12,11,[[39,3,3,0,3,[[954,3,3,0,3]]],[40,4,3,3,6,[[970,4,3,3,6]]],[41,3,3,6,9,[[994,3,3,6,9]]],[42,2,2,9,11,[[1009,1,1,9,10],[1014,1,1,10,11]]]],[24088,24128,24129,24784,24822,24826,25898,25924,25925,26668,26812]]]]},{"k":"G221","v":[["*",[2,2,[[43,2,2,0,2,[[1023,1,1,0,1],[1035,1,1,1,2]]]],[27110,27581]]],["Alexandria",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27581]]],["Alexandrians",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27110]]]]},{"k":"G222","v":[["Alexandria",[2,2,[[43,2,2,0,2,[[1044,1,1,0,1],[1045,1,1,1,2]]]],[27861,27910]]]]},{"k":"G223","v":[["Alexander",[6,5,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,3,2,1,3,[[1021,1,1,1,2],[1036,2,1,2,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]]],[24847,27028,27618,29716,29884]]]]},{"k":"G224","v":[["meal",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23572,25539]]]]},{"k":"G225","v":[["*",[110,99,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,3,3,1,4,[[961,1,1,1,2],[968,2,2,2,4]]],[41,3,3,4,7,[[976,1,1,4,5],[992,1,1,5,6],[994,1,1,6,7]]],[42,25,20,7,27,[[997,2,2,7,9],[999,1,1,9,10],[1000,2,2,10,12],[1001,1,1,12,13],[1004,7,5,13,18],[1010,2,2,18,20],[1011,1,1,20,21],[1012,3,2,21,23],[1013,3,2,23,25],[1014,3,2,25,27]]],[43,3,3,27,30,[[1021,1,1,27,28],[1027,1,1,28,29],[1043,1,1,29,30]]],[44,8,8,30,38,[[1046,2,2,30,32],[1047,3,3,32,35],[1048,1,1,35,36],[1054,1,1,36,37],[1060,1,1,37,38]]],[45,2,2,38,40,[[1066,1,1,38,39],[1074,1,1,39,40]]],[46,8,6,40,46,[[1081,1,1,40,41],[1083,1,1,41,42],[1084,2,1,42,43],[1088,1,1,43,44],[1089,1,1,44,45],[1090,2,1,45,46]]],[47,4,4,46,50,[[1092,2,2,46,48],[1093,1,1,48,49],[1095,1,1,49,50]]],[48,6,6,50,56,[[1097,1,1,50,51],[1100,3,3,51,54],[1101,1,1,54,55],[1102,1,1,55,56]]],[49,1,1,56,57,[[1103,1,1,56,57]]],[50,2,2,57,59,[[1107,2,2,57,59]]],[52,3,3,59,62,[[1117,3,3,59,62]]],[53,6,5,62,67,[[1120,3,2,62,64],[1121,1,1,64,65],[1122,1,1,65,66],[1124,1,1,66,67]]],[54,6,6,67,73,[[1126,3,3,67,70],[1127,2,2,70,72],[1128,1,1,72,73]]],[55,2,2,73,75,[[1129,2,2,73,75]]],[57,1,1,75,76,[[1142,1,1,75,76]]],[58,3,3,76,79,[[1146,1,1,76,77],[1148,1,1,77,78],[1150,1,1,78,79]]],[59,1,1,79,80,[[1151,1,1,79,80]]],[60,2,2,80,82,[[1156,1,1,80,81],[1157,1,1,81,82]]],[61,9,8,82,90,[[1159,2,2,82,84],[1160,3,2,84,86],[1161,2,2,86,88],[1162,1,1,88,89],[1163,1,1,89,90]]],[62,5,4,90,94,[[1164,5,4,90,94]]],[63,6,5,94,99,[[1165,6,5,94,99]]]],[23888,24397,24687,24705,25088,25800,25923,26058,26061,26141,26179,26180,26243,26413,26421,26425,26426,26427,26674,26685,26725,26733,26739,26776,26778,26822,26823,27049,27293,27848,27948,27955,27964,27970,27982,27998,28156,28311,28462,28671,28861,28905,28930,28999,29028,29051,29086,29095,29103,29169,29219,29293,29296,29297,29313,29351,29379,29470,29471,29671,29673,29674,29720,29723,29746,29750,29793,29842,29845,29852,29860,29861,29874,29893,29906,30159,30284,30333,30373,30396,30491,30502,30546,30548,30554,30571,30597,30598,30609,30630,30646,30647,30648,30649,30659,30661,30662,30666,30670]]],["+",[3,3,[[41,2,2,0,2,[[992,1,1,0,1],[994,1,1,1,2]]],[62,1,1,2,3,[[1164,1,1,2,3]]]],[25800,25923,30647]]],["true",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29296]]],["truth",[105,95,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,3,3,1,4,[[961,1,1,1,2],[968,2,2,2,4]]],[41,1,1,4,5,[[976,1,1,4,5]]],[42,25,20,5,25,[[997,2,2,5,7],[999,1,1,7,8],[1000,2,2,8,10],[1001,1,1,10,11],[1004,7,5,11,16],[1010,2,2,16,18],[1011,1,1,18,19],[1012,3,2,19,21],[1013,3,2,21,23],[1014,3,2,23,25]]],[43,3,3,25,28,[[1021,1,1,25,26],[1027,1,1,26,27],[1043,1,1,27,28]]],[44,8,8,28,36,[[1046,2,2,28,30],[1047,3,3,30,33],[1048,1,1,33,34],[1054,1,1,34,35],[1060,1,1,35,36]]],[45,2,2,36,38,[[1066,1,1,36,37],[1074,1,1,37,38]]],[46,8,6,38,44,[[1081,1,1,38,39],[1083,1,1,39,40],[1084,2,1,40,41],[1088,1,1,41,42],[1089,1,1,42,43],[1090,2,1,43,44]]],[47,4,4,44,48,[[1092,2,2,44,46],[1093,1,1,46,47],[1095,1,1,47,48]]],[48,5,5,48,53,[[1097,1,1,48,49],[1100,2,2,49,51],[1101,1,1,51,52],[1102,1,1,52,53]]],[49,1,1,53,54,[[1103,1,1,53,54]]],[50,2,2,54,56,[[1107,2,2,54,56]]],[52,3,3,56,59,[[1117,3,3,56,59]]],[53,5,5,59,64,[[1120,2,2,59,61],[1121,1,1,61,62],[1122,1,1,62,63],[1124,1,1,63,64]]],[54,6,6,64,70,[[1126,3,3,64,67],[1127,2,2,67,69],[1128,1,1,69,70]]],[55,2,2,70,72,[[1129,2,2,70,72]]],[57,1,1,72,73,[[1142,1,1,72,73]]],[58,3,3,73,76,[[1146,1,1,73,74],[1148,1,1,74,75],[1150,1,1,75,76]]],[59,1,1,76,77,[[1151,1,1,76,77]]],[60,2,2,77,79,[[1156,1,1,77,78],[1157,1,1,78,79]]],[61,9,8,79,87,[[1159,2,2,79,81],[1160,3,2,81,83],[1161,2,2,83,85],[1162,1,1,85,86],[1163,1,1,86,87]]],[62,4,3,87,90,[[1164,4,3,87,90]]],[63,6,5,90,95,[[1165,6,5,90,95]]]],[23888,24397,24687,24705,25088,26058,26061,26141,26179,26180,26243,26413,26421,26425,26426,26427,26674,26685,26725,26733,26739,26776,26778,26822,26823,27049,27293,27848,27948,27955,27964,27970,27982,27998,28156,28311,28462,28671,28861,28905,28930,28999,29028,29051,29086,29095,29103,29169,29219,29293,29297,29313,29351,29379,29470,29471,29671,29673,29674,29720,29723,29746,29750,29793,29842,29845,29852,29860,29861,29874,29893,29906,30159,30284,30333,30373,30396,30491,30502,30546,30548,30554,30571,30597,30598,30609,30630,30646,30648,30649,30659,30661,30662,30666,30670]]],["verity",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29723]]]]},{"k":"G226","v":[["*",[2,2,[[47,1,1,0,1,[[1094,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[29147,29287]]],["+",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29147]]],["truth",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29287]]]]},{"k":"G227","v":[["*",[25,25,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[42,13,13,2,15,[[999,1,1,2,3],[1000,1,1,3,4],[1001,2,2,4,6],[1003,1,1,6,7],[1004,5,5,7,12],[1006,1,1,12,13],[1015,1,1,13,14],[1017,1,1,14,15]]],[43,1,1,15,16,[[1029,1,1,15,16]]],[44,1,1,16,17,[[1048,1,1,16,17]]],[46,1,1,17,18,[[1083,1,1,17,18]]],[49,1,1,18,19,[[1106,1,1,18,19]]],[55,1,1,19,20,[[1129,1,1,19,20]]],[59,1,1,20,21,[[1155,1,1,20,21]]],[60,1,1,21,22,[[1157,1,1,21,22]]],[61,2,2,22,24,[[1160,2,2,22,24]]],[63,1,1,24,25,[[1165,1,1,24,25]]]],[23888,24687,26153,26174,26241,26242,26346,26394,26395,26397,26398,26407,26522,26860,26922,27346,27995,28906,29450,29905,30477,30522,30558,30577,30670]]],["true",[23,23,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[42,12,12,2,14,[[999,1,1,2,3],[1001,2,2,3,5],[1003,1,1,5,6],[1004,5,5,6,11],[1006,1,1,11,12],[1015,1,1,12,13],[1017,1,1,13,14]]],[43,1,1,14,15,[[1029,1,1,14,15]]],[44,1,1,15,16,[[1048,1,1,15,16]]],[46,1,1,16,17,[[1083,1,1,16,17]]],[49,1,1,17,18,[[1106,1,1,17,18]]],[55,1,1,18,19,[[1129,1,1,18,19]]],[59,1,1,19,20,[[1155,1,1,19,20]]],[60,1,1,20,21,[[1157,1,1,20,21]]],[61,1,1,21,22,[[1160,1,1,21,22]]],[63,1,1,22,23,[[1165,1,1,22,23]]]],[23888,24687,26153,26241,26242,26346,26394,26395,26397,26398,26407,26522,26860,26922,27346,27995,28906,29450,29905,30477,30522,30558,30670]]],["truly",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26174]]],["truth",[1,1,[[61,1,1,0,1,[[1160,1,1,0,1]]]],[30577]]]]},{"k":"G228","v":[["*",[27,25,[[41,1,1,0,1,[[988,1,1,0,1]]],[42,8,8,1,9,[[997,1,1,1,2],[1000,2,2,2,4],[1002,1,1,4,5],[1003,1,1,5,6],[1011,1,1,6,7],[1013,1,1,7,8],[1015,1,1,8,9]]],[51,1,1,9,10,[[1111,1,1,9,10]]],[57,3,3,10,13,[[1140,1,1,10,11],[1141,1,1,11,12],[1142,1,1,12,13]]],[61,4,2,13,15,[[1160,1,1,13,14],[1163,3,1,14,15]]],[65,10,10,15,25,[[1169,2,2,15,17],[1172,1,1,17,18],[1181,1,1,18,19],[1182,1,1,19,20],[1185,3,3,20,23],[1187,1,1,23,24],[1188,1,1,24,25]]]],[25631,26053,26179,26193,26289,26356,26700,26762,26860,29569,30094,30129,30155,30558,30644,30753,30760,30803,30949,30961,31019,31026,31028,31058,31086]]],["True",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31028]]],["true",[26,24,[[41,1,1,0,1,[[988,1,1,0,1]]],[42,8,8,1,9,[[997,1,1,1,2],[1000,2,2,2,4],[1002,1,1,4,5],[1003,1,1,5,6],[1011,1,1,6,7],[1013,1,1,7,8],[1015,1,1,8,9]]],[51,1,1,9,10,[[1111,1,1,9,10]]],[57,3,3,10,13,[[1140,1,1,10,11],[1141,1,1,11,12],[1142,1,1,12,13]]],[61,4,2,13,15,[[1160,1,1,13,14],[1163,3,1,14,15]]],[65,9,9,15,24,[[1169,2,2,15,17],[1172,1,1,17,18],[1181,1,1,18,19],[1182,1,1,19,20],[1185,2,2,20,22],[1187,1,1,22,23],[1188,1,1,23,24]]]],[25631,26053,26179,26193,26289,26356,26700,26762,26860,29569,30094,30129,30155,30558,30644,30753,30760,30803,30949,30961,31019,31026,31058,31086]]]]},{"k":"G229","v":[["grinding",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]]],[23998,25686]]]]},{"k":"G230","v":[["*",[21,19,[[39,3,3,0,3,[[942,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[970,1,1,3,4],[971,1,1,4,5]]],[41,3,3,5,8,[[981,1,1,5,6],[984,1,1,6,7],[993,1,1,7,8]]],[42,10,8,8,16,[[997,1,1,8,9],[1000,1,1,9,10],[1002,3,2,10,12],[1003,3,2,12,14],[1004,1,1,14,15],[1013,1,1,15,16]]],[43,1,1,16,17,[[1029,1,1,16,17]]],[51,1,1,17,18,[[1112,1,1,17,18]]],[61,1,1,18,19,[[1160,1,1,18,19]]]],[23630,24127,24183,24824,24865,25328,25503,25829,26091,26198,26271,26312,26354,26368,26412,26767,27348,29583,30555]]],["Surely",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24127,24824]]],["Truly",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24183,24865]]],["indeed",[6,5,[[42,6,5,0,5,[[997,1,1,0,1],[1000,1,1,1,2],[1002,2,1,2,3],[1003,1,1,3,4],[1004,1,1,4,5]]]],[26091,26198,26312,26354,26412]]],["surely",[1,1,[[42,1,1,0,1,[[1013,1,1,0,1]]]],[26767]]],["surety",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27348]]],["truth",[7,7,[[39,1,1,0,1,[[942,1,1,0,1]]],[41,3,3,1,4,[[981,1,1,1,2],[984,1,1,2,3],[993,1,1,3,4]]],[42,2,2,4,6,[[1002,1,1,4,5],[1003,1,1,5,6]]],[51,1,1,6,7,[[1112,1,1,6,7]]]],[23630,25328,25503,25829,26271,26368,29583]]],["verily",[1,1,[[61,1,1,0,1,[[1160,1,1,0,1]]]],[30555]]],["very",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26354]]]]},{"k":"G231","v":[["*",[5,5,[[39,2,2,0,2,[[932,2,2,0,2]]],[40,2,2,2,4,[[957,2,2,2,4]]],[41,1,1,4,5,[[977,1,1,4,5]]]],[23227,23228,24231,24232,25109]]],["fishermen",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25109]]],["fishers",[4,4,[[39,2,2,0,2,[[932,2,2,0,2]]],[40,2,2,2,4,[[957,2,2,2,4]]]],[23227,23228,24231,24232]]]]},{"k":"G232","v":[["fishing",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26901]]]]},{"k":"G233","v":[["salted",[3,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[40,2,1,1,2,[[965,2,1,1,2]]]],[23247,24587]]]]},{"k":"G234","v":[["pollutions",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27462]]]]},{"k":"G235","v":[["*",[633,599,[[39,36,36,0,36,[[932,1,1,0,1],[933,3,3,1,4],[934,2,2,4,6],[935,1,1,6,7],[936,2,2,7,9],[937,5,5,9,14],[938,2,2,14,16],[939,2,2,16,18],[941,1,1,18,19],[943,1,1,19,20],[944,3,3,20,23],[945,1,1,23,24],[946,1,1,24,25],[947,2,2,25,27],[948,3,3,27,30],[949,1,1,30,31],[950,2,2,31,33],[952,1,1,33,34],[954,1,1,34,35],[955,1,1,35,36]]],[40,41,39,36,75,[[957,2,2,36,38],[958,3,2,38,40],[959,2,2,40,42],[960,2,2,42,44],[961,3,3,44,47],[962,1,1,47,48],[963,3,3,48,51],[964,1,1,51,52],[965,4,4,52,56],[966,5,5,56,61],[967,2,2,61,63],[968,3,3,63,66],[969,4,4,66,70],[970,5,4,70,74],[972,1,1,74,75]]],[41,38,38,75,113,[[973,1,1,75,76],[976,1,1,76,77],[977,4,4,77,81],[978,1,1,81,82],[979,3,3,82,85],[980,3,3,85,88],[981,1,1,88,89],[983,3,3,89,92],[984,2,2,92,94],[985,2,2,94,96],[986,2,2,96,98],[988,2,2,98,100],[989,1,1,100,101],[990,1,1,101,102],[992,2,2,102,104],[993,1,1,104,105],[994,4,4,105,109],[995,1,1,109,110],[996,3,3,110,113]]],[42,103,101,113,214,[[997,4,4,113,117],[999,6,6,117,123],[1000,3,3,123,126],[1001,6,6,126,132],[1002,9,9,132,141],[1003,9,9,141,150],[1004,8,8,150,158],[1005,2,2,158,160],[1006,6,6,160,166],[1007,9,9,166,175],[1008,9,9,175,184],[1009,4,3,184,187],[1010,2,2,187,189],[1011,4,4,189,193],[1012,10,9,193,202],[1013,3,3,202,205],[1014,2,2,205,207],[1015,3,3,207,210],[1016,2,2,210,212],[1017,2,2,212,214]]],[43,29,29,214,243,[[1018,2,2,214,216],[1019,1,1,216,217],[1021,2,2,217,219],[1022,2,2,219,221],[1024,2,2,221,223],[1027,3,3,223,226],[1030,1,1,226,227],[1032,2,2,227,229],[1033,1,1,229,230],[1035,2,2,230,232],[1036,3,3,232,235],[1037,1,1,235,236],[1038,2,2,236,238],[1043,4,4,238,242],[1044,1,1,242,243]]],[44,69,68,243,311,[[1046,2,2,243,245],[1047,3,2,245,247],[1048,2,2,247,249],[1049,8,8,249,257],[1050,4,4,257,261],[1051,4,4,261,265],[1052,6,6,265,271],[1053,9,9,271,280],[1054,7,7,280,287],[1055,5,5,287,292],[1056,4,4,292,296],[1057,5,5,296,301],[1058,3,3,301,304],[1059,3,3,304,307],[1060,2,2,307,309],[1061,2,2,309,311]]],[45,72,63,311,374,[[1062,2,2,311,313],[1063,6,6,313,319],[1064,4,4,319,323],[1065,6,6,323,329],[1066,1,1,329,330],[1067,8,5,330,335],[1068,7,6,335,341],[1069,2,2,341,343],[1070,5,4,343,347],[1071,8,7,347,354],[1072,3,3,354,357],[1073,4,4,357,361],[1075,8,7,361,368],[1076,8,6,368,374]]],[46,68,53,374,427,[[1078,6,5,374,379],[1079,5,4,379,383],[1080,6,5,383,388],[1081,10,6,388,394],[1082,4,4,394,398],[1083,1,1,398,399],[1084,12,7,399,406],[1085,7,7,406,413],[1086,1,1,413,414],[1087,4,4,414,418],[1088,4,3,418,421],[1089,3,2,421,423],[1090,5,4,423,427]]],[47,23,23,427,450,[[1091,4,4,427,431],[1092,3,3,431,434],[1093,3,3,434,437],[1094,9,9,437,446],[1095,2,2,446,448],[1096,2,2,448,450]]],[48,13,13,450,463,[[1097,1,1,450,451],[1098,1,1,451,452],[1100,1,1,452,453],[1101,7,7,453,460],[1102,3,3,460,463]]],[49,15,14,463,477,[[1103,3,3,463,466],[1104,7,6,466,472],[1105,3,3,472,475],[1106,2,2,475,477]]],[50,3,3,477,480,[[1108,1,1,477,478],[1109,2,2,478,480]]],[51,13,12,480,492,[[1111,2,2,480,482],[1112,6,5,482,487],[1114,2,2,487,489],[1115,3,3,489,492]]],[52,5,5,492,497,[[1117,1,1,492,493],[1118,4,4,493,497]]],[53,12,12,497,509,[[1119,2,2,497,499],[1120,2,2,499,501],[1121,1,1,501,502],[1122,1,1,502,503],[1123,3,3,503,506],[1124,3,3,506,509]]],[54,12,12,509,521,[[1125,5,5,509,514],[1126,3,3,514,517],[1127,1,1,517,518],[1128,3,3,518,521]]],[55,4,4,521,525,[[1129,2,2,521,523],[1130,1,1,523,524],[1131,1,1,524,525]]],[56,2,2,525,527,[[1132,2,2,525,527]]],[57,16,16,527,543,[[1134,1,1,527,528],[1135,2,2,528,530],[1136,1,1,530,531],[1137,2,2,531,533],[1139,1,1,533,534],[1141,1,1,534,535],[1142,3,3,535,538],[1143,1,1,538,539],[1144,3,3,539,542],[1145,1,1,542,543]]],[58,5,5,543,548,[[1146,2,2,543,545],[1147,1,1,545,546],[1148,1,1,546,547],[1149,1,1,547,548]]],[59,15,14,548,562,[[1151,3,3,548,551],[1152,4,4,551,555],[1153,3,3,555,558],[1154,2,2,558,560],[1155,3,2,560,562]]],[60,6,5,562,567,[[1156,2,2,562,564],[1157,2,2,564,566],[1158,2,1,566,567]]],[61,13,12,567,579,[[1160,7,6,567,573],[1161,1,1,573,574],[1162,3,3,574,577],[1163,2,2,577,579]]],[62,4,4,579,583,[[1164,4,4,579,583]]],[63,3,3,583,586,[[1165,3,3,583,586]]],[64,2,2,586,588,[[1166,2,2,586,588]]],[65,11,11,588,599,[[1168,5,5,588,593],[1169,1,1,593,594],[1175,1,1,594,595],[1176,2,2,595,597],[1183,1,1,597,598],[1186,1,1,598,599]]]],[23213,23249,23251,23273,23295,23300,23337,23349,23353,23391,23392,23396,23397,23403,23437,23451,23467,23468,23560,23644,23684,23689,23695,23712,23757,23768,23773,23815,23818,23820,23847,23902,23904,23963,24093,24153,24259,24260,24277,24282,24314,24317,24340,24345,24383,24390,24403,24416,24468,24478,24482,24533,24546,24551,24560,24575,24596,24615,24628,24631,24633,24663,24672,24687,24698,24700,24724,24728,24737,24741,24782,24783,24790,24803,24880,24953,25067,25121,25138,25139,25145,25173,25202,25220,25221,25261,25272,25297,25357,25409,25438,25447,25466,25510,25521,25523,25563,25566,25641,25650,25659,25701,25800,25817,25835,25890,25900,25906,25917,25950,25997,26012,26013,26052,26057,26075,26077,26128,26135,26136,26137,26148,26156,26158,26170,26179,26228,26232,26234,26240,26244,26252,26266,26279,26283,26284,26289,26293,26295,26296,26321,26338,26340,26344,26350,26352,26355,26356,26372,26377,26393,26397,26407,26409,26418,26423,26430,26436,26443,26471,26482,26486,26489,26499,26507,26514,26527,26534,26538,26545,26553,26565,26574,26575,26577,26586,26589,26596,26607,26610,26622,26624,26627,26629,26639,26640,26648,26692,26699,26715,26718,26720,26724,26728,26730,26732,26733,26738,26739,26746,26751,26759,26768,26774,26779,26813,26825,26846,26849,26859,26874,26894,26906,26921,26927,26931,26965,27039,27054,27063,27072,27155,27164,27279,27294,27300,27387,27453,27462,27520,27566,27578,27587,27611,27612,27650,27677,27688,27839,27843,27848,27852,27865,27951,27962,27975,27991,28018,28022,28024,28026,28032,28034,28035,28038,28042,28046,28050,28058,28061,28062,28073,28081,28082,28083,28098,28104,28106,28108,28110,28111,28117,28120,28125,28131,28136,28139,28142,28148,28153,28162,28163,28165,28166,28171,28179,28187,28190,28196,28204,28206,28207,28213,28220,28227,28229,28247,28248,28261,28264,28266,28269,28271,28280,28293,28297,28300,28306,28324,28340,28354,28380,28390,28398,28399,28401,28403,28406,28407,28411,28415,28416,28417,28436,28437,28447,28448,28452,28453,28462,28473,28475,28478,28479,28480,28491,28494,28497,28506,28508,28522,28533,28534,28542,28552,28561,28567,28572,28580,28587,28590,28591,28596,28600,28608,28609,28617,28648,28656,28658,28659,28680,28695,28697,28698,28700,28711,28712,28728,28753,28755,28757,28758,28764,28809,28812,28813,28819,28824,28828,28829,28837,28841,28844,28846,28847,28855,28856,28861,28864,28867,28868,28875,28877,28881,28889,28892,28893,28902,28921,28922,28923,28925,28927,28928,28930,28937,28939,28940,28942,28946,28951,28953,28968,28975,28983,28984,28989,28990,28995,29006,29036,29038,29046,29047,29050,29051,29058,29065,29069,29074,29084,29088,29095,29114,29118,29124,29133,29138,29139,29145,29148,29154,29160,29161,29162,29168,29175,29201,29203,29227,29248,29301,29308,29319,29321,29322,29328,29331,29333,29341,29343,29349,29379,29381,29390,29394,29395,29398,29403,29408,29418,29428,29429,29430,29448,29459,29499,29528,29539,29565,29568,29572,29574,29577,29578,29583,29610,29611,29627,29630,29636,29673,29686,29687,29689,29693,29709,29712,29726,29728,29734,29759,29764,29776,29786,29790,29792,29805,29816,29817,29818,29821,29826,29836,29847,29851,29862,29873,29878,29886,29900,29907,29918,29928,29952,29954,29993,30008,30011,30016,30034,30035,30080,30129,30136,30158,30172,30185,30223,30234,30238,30255,30291,30292,30311,30334,30348,30389,30393,30397,30415,30417,30419,30424,30428,30438,30445,30448,30459,30467,30468,30495,30500,30504,30505,30531,30552,30557,30566,30569,30571,30577,30597,30604,30613,30621,30630,30642,30646,30650,30653,30657,30667,30669,30671,30678,30681,30721,30723,30726,30731,30737,30755,30845,30868,30870,30987,31044]]],["+",[9,9,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,2,2,1,3,[[988,1,1,1,2],[996,1,1,2,3]]],[43,1,1,3,4,[[1036,1,1,3,4]]],[44,2,2,4,6,[[1046,1,1,4,5],[1051,1,1,5,6]]],[45,1,1,6,7,[[1064,1,1,6,7]]],[46,2,2,7,9,[[1078,1,1,7,8],[1084,1,1,8,9]]]],[24803,25641,26012,27587,27962,28073,28415,28813,28923]]],["And",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25659]]],["But",[96,96,[[39,2,2,0,2,[[939,2,2,0,2]]],[40,6,6,2,8,[[962,1,1,2,3],[965,1,1,3,4],[967,1,1,4,5],[969,1,1,5,6],[970,1,1,6,7],[972,1,1,7,8]]],[41,9,9,8,17,[[977,1,1,8,9],[978,1,1,9,10],[979,2,2,10,12],[983,1,1,12,13],[984,1,1,13,14],[986,2,2,14,16],[994,1,1,16,17]]],[42,13,13,17,30,[[1000,1,1,17,18],[1001,1,1,18,19],[1002,2,2,19,21],[1003,1,1,21,22],[1006,1,1,22,23],[1007,1,1,23,24],[1010,1,1,24,25],[1011,2,2,25,27],[1012,2,2,27,29],[1015,1,1,29,30]]],[43,11,11,30,41,[[1018,1,1,30,31],[1019,1,1,31,32],[1021,1,1,32,33],[1027,1,1,33,34],[1030,1,1,34,35],[1032,2,2,35,37],[1035,1,1,37,38],[1037,1,1,38,39],[1043,2,2,39,41]]],[44,11,11,41,52,[[1047,1,1,41,42],[1049,1,1,42,43],[1050,1,1,43,44],[1052,1,1,44,45],[1055,4,4,45,49],[1056,1,1,49,50],[1058,1,1,50,51],[1060,1,1,51,52]]],[45,10,10,52,62,[[1062,1,1,52,53],[1063,2,2,53,55],[1067,1,1,55,56],[1068,1,1,56,57],[1069,1,1,57,58],[1070,1,1,58,59],[1071,2,2,59,61],[1076,1,1,61,62]]],[46,6,6,62,68,[[1078,1,1,62,63],[1080,2,2,63,65],[1081,1,1,65,66],[1083,1,1,66,67],[1085,1,1,67,68]]],[47,8,8,68,76,[[1091,1,1,68,69],[1092,3,3,69,72],[1093,1,1,72,73],[1094,3,3,73,76]]],[49,2,2,76,78,[[1104,1,1,76,77],[1105,1,1,77,78]]],[51,3,3,78,81,[[1112,3,3,78,81]]],[53,1,1,81,82,[[1120,1,1,81,82]]],[54,2,2,82,84,[[1125,1,1,82,83],[1127,1,1,83,84]]],[55,1,1,84,85,[[1129,1,1,84,85]]],[57,3,3,85,88,[[1135,1,1,85,86],[1142,1,1,86,87],[1144,1,1,87,88]]],[59,5,5,88,93,[[1151,2,2,88,90],[1153,2,2,90,92],[1154,1,1,92,93]]],[65,3,3,93,96,[[1168,2,2,93,95],[1176,1,1,95,96]]]],[23467,23468,24416,24551,24672,24741,24782,24880,25145,25173,25220,25221,25447,25466,25563,25566,25900,26179,26252,26293,26321,26377,26507,26545,26699,26720,26724,26730,26732,26859,26931,26965,27039,27294,27387,27453,27462,27578,27650,27839,27843,27991,28046,28062,28104,28196,28204,28206,28207,28213,28280,28324,28390,28401,28403,28473,28494,28533,28567,28572,28587,28753,28809,28855,28856,28861,28902,28946,29065,29084,29088,29095,29124,29133,29154,29160,29398,29428,29572,29574,29577,29726,29826,29862,29900,30008,30136,30234,30389,30393,30428,30438,30459,30723,30731,30868]]],["Howbeit",[6,6,[[42,1,1,0,1,[[1003,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[45,2,2,2,4,[[1069,1,1,2,3],[1076,1,1,3,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]],[53,1,1,5,6,[[1119,1,1,5,6]]]],[26355,27164,28534,28764,29139,29712]]],["Nay",[4,4,[[44,2,2,0,2,[[1052,1,1,0,1],[1053,1,1,1,2]]],[45,2,2,2,4,[[1067,1,1,2,3],[1073,1,1,3,4]]]],[28098,28153,28475,28656]]],["Nevertheless",[6,6,[[42,1,1,0,1,[[1012,1,1,0,1]]],[44,1,1,1,2,[[1050,1,1,1,2]]],[45,1,1,2,3,[[1070,1,1,2,3]]],[46,1,1,3,4,[[1084,1,1,3,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]],[65,1,1,5,6,[[1168,1,1,5,6]]]],[26733,28061,28552,28922,29161,30721]]],["No",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25950]]],["Notwithstanding",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30737]]],["Therefore",[2,2,[[46,1,1,0,1,[[1085,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]]],[28939,29328]]],["Yea",[3,3,[[49,2,2,0,2,[[1104,1,1,0,1],[1105,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[29408,29429,30311]]],["Yet",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28697]]],["and",[3,3,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]]],[24340,26013,28990]]],["but",[470,452,[[39,33,33,0,33,[[932,1,1,0,1],[933,3,3,1,4],[934,2,2,4,6],[935,1,1,6,7],[936,2,2,7,9],[937,5,5,9,14],[938,2,2,14,16],[941,1,1,16,17],[943,1,1,17,18],[944,3,3,18,21],[945,1,1,21,22],[946,1,1,22,23],[947,1,1,23,24],[948,3,3,24,27],[949,1,1,27,28],[950,2,2,28,30],[952,1,1,30,31],[954,1,1,31,32],[955,1,1,32,33]]],[40,30,29,33,62,[[957,2,2,33,35],[958,3,2,35,37],[959,2,2,37,39],[960,1,1,39,40],[961,3,3,40,43],[963,3,3,43,46],[964,1,1,46,47],[965,2,2,47,49],[966,5,5,49,54],[967,1,1,54,55],[968,3,3,55,58],[969,3,3,58,61],[970,1,1,61,62]]],[41,24,24,62,86,[[973,1,1,62,63],[976,1,1,63,64],[977,3,3,64,67],[979,1,1,67,68],[980,3,3,68,71],[981,1,1,71,72],[983,2,2,72,74],[984,1,1,74,75],[985,2,2,75,77],[988,1,1,77,78],[990,1,1,78,79],[992,2,2,79,81],[993,1,1,81,82],[994,3,3,82,85],[996,1,1,85,86]]],[42,86,84,86,170,[[997,4,4,86,90],[999,6,6,90,96],[1000,2,2,96,98],[1001,5,5,98,103],[1002,7,7,103,110],[1003,7,7,110,117],[1004,8,8,117,125],[1005,2,2,125,127],[1006,5,5,127,132],[1007,7,7,132,139],[1008,9,9,139,148],[1009,4,3,148,151],[1010,1,1,151,152],[1011,2,2,152,154],[1012,6,5,154,159],[1013,3,3,159,162],[1014,2,2,162,164],[1015,2,2,164,166],[1016,2,2,166,168],[1017,2,2,168,170]]],[43,15,15,170,185,[[1018,1,1,170,171],[1021,1,1,171,172],[1022,2,2,172,174],[1024,1,1,174,175],[1027,1,1,175,176],[1033,1,1,176,177],[1035,1,1,177,178],[1036,2,2,178,180],[1038,2,2,180,182],[1043,2,2,182,184],[1044,1,1,184,185]]],[44,52,52,185,237,[[1046,1,1,185,186],[1047,2,2,186,188],[1048,1,1,188,189],[1049,7,7,189,196],[1050,2,2,196,198],[1051,3,3,198,201],[1052,4,4,201,205],[1053,8,8,205,213],[1054,7,7,213,220],[1055,1,1,220,221],[1056,3,3,221,224],[1057,5,5,224,229],[1058,2,2,229,231],[1059,3,3,231,234],[1060,1,1,234,235],[1061,2,2,235,237]]],[45,50,43,237,280,[[1062,1,1,237,238],[1063,4,4,238,242],[1064,3,3,242,245],[1065,3,3,245,248],[1066,1,1,248,249],[1067,6,3,249,252],[1068,6,5,252,257],[1070,2,2,257,259],[1071,6,5,259,264],[1072,3,3,264,267],[1073,3,3,267,270],[1075,6,5,270,275],[1076,6,5,275,280]]],[46,45,41,280,321,[[1078,4,4,280,284],[1079,5,4,284,288],[1080,4,3,288,291],[1081,7,6,291,297],[1082,3,3,297,300],[1084,4,4,300,304],[1085,5,5,304,309],[1086,1,1,309,310],[1087,4,4,310,314],[1088,2,2,314,316],[1089,2,1,316,317],[1090,4,4,317,321]]],[47,12,12,321,333,[[1091,3,3,321,324],[1093,2,2,324,326],[1094,3,3,326,329],[1095,2,2,329,331],[1096,2,2,331,333]]],[48,12,12,333,345,[[1097,1,1,333,334],[1098,1,1,334,335],[1100,1,1,335,336],[1101,6,6,336,342],[1102,3,3,342,345]]],[49,10,9,345,354,[[1103,2,2,345,347],[1104,5,4,347,351],[1105,1,1,351,352],[1106,2,2,352,354]]],[50,2,2,354,356,[[1109,2,2,354,356]]],[51,10,10,356,366,[[1111,2,2,356,358],[1112,3,3,358,361],[1114,2,2,361,363],[1115,3,3,363,366]]],[52,5,5,366,371,[[1117,1,1,366,367],[1118,4,4,367,371]]],[53,10,10,371,381,[[1119,1,1,371,372],[1120,1,1,372,373],[1121,1,1,373,374],[1122,1,1,374,375],[1123,3,3,375,378],[1124,3,3,378,381]]],[54,9,9,381,390,[[1125,3,3,381,384],[1126,3,3,384,387],[1128,3,3,387,390]]],[55,3,3,390,393,[[1129,1,1,390,391],[1130,1,1,391,392],[1131,1,1,392,393]]],[56,2,2,393,395,[[1132,2,2,393,395]]],[57,12,12,395,407,[[1134,1,1,395,396],[1136,1,1,396,397],[1137,2,2,397,399],[1139,1,1,399,400],[1141,1,1,400,401],[1142,2,2,401,403],[1143,1,1,403,404],[1144,2,2,404,406],[1145,1,1,406,407]]],[58,4,4,407,411,[[1146,2,2,407,409],[1148,1,1,409,410],[1149,1,1,410,411]]],[59,10,9,411,420,[[1151,1,1,411,412],[1152,4,4,412,416],[1153,1,1,416,417],[1154,1,1,417,418],[1155,3,2,418,420]]],[60,6,5,420,425,[[1156,2,2,420,422],[1157,2,2,422,424],[1158,2,1,424,425]]],[61,13,12,425,437,[[1160,7,6,425,431],[1161,1,1,431,432],[1162,3,3,432,435],[1163,2,2,435,437]]],[62,4,4,437,441,[[1164,4,4,437,441]]],[63,3,3,441,444,[[1165,3,3,441,444]]],[64,2,2,444,446,[[1166,2,2,444,446]]],[65,6,6,446,452,[[1168,1,1,446,447],[1169,1,1,447,448],[1175,1,1,448,449],[1176,1,1,449,450],[1183,1,1,450,451],[1186,1,1,451,452]]]],[23213,23249,23251,23273,23295,23300,23337,23349,23353,23391,23392,23396,23397,23403,23437,23451,23560,23644,23684,23689,23695,23712,23757,23768,23815,23818,23820,23847,23902,23904,23963,24093,24153,24259,24260,24277,24282,24314,24317,24345,24383,24390,24403,24468,24478,24482,24533,24560,24575,24596,24615,24628,24631,24633,24663,24687,24698,24700,24724,24728,24737,24790,24953,25067,25121,25138,25139,25202,25261,25272,25297,25357,25409,25438,25510,25521,25523,25650,25701,25800,25817,25835,25890,25906,25917,25997,26052,26057,26075,26077,26128,26135,26136,26137,26148,26156,26158,26170,26228,26232,26234,26240,26244,26266,26279,26283,26284,26289,26295,26296,26338,26340,26344,26350,26352,26356,26372,26393,26397,26407,26409,26418,26423,26430,26436,26443,26471,26482,26486,26489,26499,26514,26527,26534,26553,26565,26574,26575,26577,26586,26589,26596,26607,26610,26622,26624,26627,26629,26639,26640,26648,26692,26715,26718,26738,26739,26746,26751,26759,26768,26774,26779,26813,26825,26846,26849,26874,26894,26906,26921,26927,27054,27063,27072,27155,27300,27520,27566,27611,27612,27677,27688,27848,27852,27865,27951,27975,27991,28018,28024,28026,28032,28034,28035,28038,28042,28050,28058,28081,28082,28083,28106,28108,28110,28111,28117,28120,28125,28131,28136,28139,28142,28148,28162,28163,28165,28166,28171,28179,28187,28190,28220,28227,28229,28247,28248,28261,28264,28266,28269,28271,28293,28297,28300,28306,28340,28354,28380,28398,28399,28406,28407,28411,28416,28417,28447,28452,28453,28462,28478,28479,28480,28491,28497,28506,28508,28522,28552,28561,28580,28590,28591,28596,28600,28608,28609,28617,28648,28658,28659,28680,28695,28700,28711,28712,28728,28755,28757,28758,28764,28809,28812,28819,28824,28828,28829,28837,28841,28844,28846,28847,28861,28864,28867,28868,28875,28877,28881,28889,28892,28921,28925,28928,28930,28937,28940,28942,28951,28953,28968,28975,28983,28984,28989,28995,29006,29036,29046,29047,29050,29051,29058,29069,29074,29114,29118,29138,29145,29162,29168,29175,29201,29203,29227,29248,29301,29308,29319,29321,29322,29331,29333,29341,29343,29349,29381,29390,29394,29395,29403,29418,29430,29448,29459,29528,29539,29565,29568,29574,29578,29583,29610,29611,29627,29630,29636,29673,29686,29687,29689,29693,29709,29728,29734,29759,29764,29776,29786,29790,29792,29805,29816,29817,29818,29836,29847,29851,29873,29878,29886,29907,29918,29928,29952,29954,29993,30016,30034,30035,30080,30129,30158,30172,30185,30223,30238,30255,30291,30292,30334,30348,30397,30415,30417,30419,30424,30445,30448,30467,30468,30495,30500,30504,30505,30531,30552,30557,30566,30569,30571,30577,30597,30604,30613,30621,30630,30642,30646,30650,30653,30657,30667,30669,30671,30678,30681,30726,30755,30845,30870,30987,31044]]],["howbeit",[2,2,[[45,1,1,0,1,[[1075,1,1,0,1]]],[57,1,1,1,2,[[1135,1,1,1,2]]]],[28698,30011]]],["nevertheless",[4,4,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]],[46,1,1,2,3,[[1089,1,1,2,3]]],[54,1,1,3,4,[[1125,1,1,3,4]]]],[24790,26538,29038,29821]]],["save",[2,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]]],[23773,24546]]],["therefore",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27279]]],["yea",[11,6,[[42,1,1,0,1,[[1012,1,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[46,6,1,3,4,[[1084,6,1,3,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]],[49,1,1,5,6,[[1103,1,1,5,6]]]],[26728,28022,28436,28927,29148,29379]]],["yet",[10,10,[[40,1,1,0,1,[[970,1,1,0,1]]],[45,3,3,1,4,[[1065,2,2,1,3],[1070,1,1,3,4]]],[46,5,5,4,9,[[1081,2,2,4,6],[1082,1,1,6,7],[1088,1,1,7,8],[1090,1,1,8,9]]],[50,1,1,9,10,[[1108,1,1,9,10]]]],[24783,28437,28448,28542,28867,28875,28893,28995,29047,29499]]]]},{"k":"G236","v":[["*",[6,6,[[43,1,1,0,1,[[1023,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[45,2,2,2,4,[[1076,2,2,2,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]],[57,1,1,5,6,[[1133,1,1,5,6]]]],[27115,27953,28769,28770,29151,29975]]],["change",[2,2,[[43,1,1,0,1,[[1023,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]]],[27115,29151]]],["changed",[4,4,[[44,1,1,0,1,[[1046,1,1,0,1]]],[45,2,2,1,3,[[1076,2,2,1,3]]],[57,1,1,3,4,[[1133,1,1,3,4]]]],[27953,28769,28770,29975]]]]},{"k":"G237","v":[["way",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26482]]]]},{"k":"G238","v":[["allegory",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29155]]]]},{"k":"G239","v":[["Alleluia",[4,4,[[65,4,4,0,4,[[1185,4,4,0,4]]]],[31018,31020,31021,31023]]]]},{"k":"G240","v":[["*",[100,94,[[39,3,2,0,2,[[952,2,1,0,1],[953,1,1,1,2]]],[40,5,5,2,7,[[960,1,1,2,3],[964,1,1,3,4],[965,2,2,4,6],[971,1,1,6,7]]],[41,10,10,7,17,[[974,1,1,7,8],[976,1,1,8,9],[978,1,1,9,10],[979,1,1,10,11],[980,1,1,11,12],[984,1,1,12,13],[995,1,1,13,14],[996,3,3,14,17]]],[42,15,14,17,31,[[1000,1,1,17,18],[1001,1,1,18,19],[1002,2,2,19,21],[1007,1,1,21,22],[1009,5,4,22,26],[1011,2,2,26,28],[1012,2,2,28,30],[1015,1,1,30,31]]],[43,9,9,31,40,[[1019,1,1,31,32],[1021,1,1,32,33],[1024,1,1,33,34],[1032,1,1,34,35],[1036,1,1,35,36],[1038,1,1,36,37],[1043,1,1,37,38],[1045,2,2,38,40]]],[44,14,13,40,53,[[1046,2,2,40,42],[1047,1,1,42,43],[1057,4,3,43,46],[1058,1,1,46,47],[1059,2,2,47,49],[1060,3,3,49,52],[1061,1,1,52,53]]],[45,4,4,53,57,[[1068,1,1,53,54],[1072,1,1,54,55],[1073,1,1,55,56],[1077,1,1,56,57]]],[46,1,1,57,58,[[1090,1,1,57,58]]],[47,7,5,58,63,[[1095,6,4,58,62],[1096,1,1,62,63]]],[48,4,4,63,67,[[1100,3,3,63,66],[1101,1,1,66,67]]],[49,1,1,67,68,[[1104,1,1,67,68]]],[50,2,2,68,70,[[1109,2,2,68,70]]],[51,5,5,70,75,[[1113,1,1,70,71],[1114,2,2,71,73],[1115,2,2,73,75]]],[52,1,1,75,76,[[1116,1,1,75,76]]],[55,1,1,76,77,[[1131,1,1,76,77]]],[57,1,1,77,78,[[1142,1,1,77,78]]],[58,4,3,78,81,[[1149,1,1,78,79],[1150,3,2,79,81]]],[59,4,4,81,85,[[1151,1,1,81,82],[1154,1,1,82,83],[1155,2,2,83,85]]],[61,6,6,85,91,[[1159,1,1,85,86],[1161,2,2,86,88],[1162,3,3,88,91]]],[62,1,1,91,92,[[1164,1,1,91,92]]],[65,2,2,92,94,[[1172,1,1,92,93],[1177,1,1,93,94]]]],[23967,24040,24364,24516,24572,24588,24857,24988,25099,25157,25227,25270,25460,25947,26005,26008,26023,26189,26254,26300,26309,26579,26644,26652,26664,26665,26711,26716,26743,26745,26849,26956,27037,27142,27481,27623,27670,27854,27903,27924,27942,27957,27977,28250,28255,28261,28274,28293,28299,28308,28310,28317,28352,28492,28633,28659,28796,29055,29175,29177,29179,29188,29190,29274,29297,29304,29325,29394,29526,29530,29602,29612,29621,29632,29636,29652,29926,30157,30348,30363,30370,30396,30455,30470,30479,30547,30590,30602,30610,30614,30615,30650,30797,30882]]],["+",[32,32,[[39,1,1,0,1,[[953,1,1,0,1]]],[40,3,3,1,4,[[960,1,1,1,2],[964,1,1,2,3],[965,1,1,3,4]]],[41,7,7,4,11,[[974,1,1,4,5],[978,1,1,5,6],[980,1,1,6,7],[995,1,1,7,8],[996,3,3,8,11]]],[42,4,4,11,15,[[1000,1,1,11,12],[1001,1,1,12,13],[1009,2,2,13,15]]],[43,3,3,15,18,[[1019,1,1,15,16],[1032,1,1,16,17],[1043,1,1,17,18]]],[44,5,5,18,23,[[1046,2,2,18,20],[1057,2,2,20,22],[1060,1,1,22,23]]],[45,1,1,23,24,[[1073,1,1,23,24]]],[48,1,1,24,25,[[1100,1,1,24,25]]],[49,1,1,25,26,[[1104,1,1,25,26]]],[50,1,1,26,27,[[1109,1,1,26,27]]],[51,1,1,27,28,[[1113,1,1,27,28]]],[58,2,2,28,30,[[1150,2,2,28,30]]],[59,1,1,30,31,[[1154,1,1,30,31]]],[61,1,1,31,32,[[1159,1,1,31,32]]]],[24040,24364,24516,24588,24988,25157,25270,25947,26005,26008,26023,26189,26254,26652,26665,26956,27481,27854,27942,27957,28255,28261,28308,28659,29304,29394,29526,29602,30363,30370,30455,30547]]],["another",[49,45,[[39,2,1,0,1,[[952,2,1,0,1]]],[41,2,2,1,3,[[979,1,1,1,2],[984,1,1,2,3]]],[42,4,3,3,6,[[1009,2,1,3,4],[1011,2,2,4,6]]],[43,3,3,6,9,[[1024,1,1,6,7],[1036,1,1,7,8],[1038,1,1,8,9]]],[44,9,9,9,18,[[1047,1,1,9,10],[1057,2,2,10,12],[1058,1,1,12,13],[1059,2,2,13,15],[1060,2,2,15,17],[1061,1,1,17,18]]],[45,2,2,18,20,[[1072,1,1,18,19],[1077,1,1,19,20]]],[46,1,1,20,21,[[1090,1,1,20,21]]],[47,5,3,21,24,[[1095,5,3,21,24]]],[48,3,3,24,27,[[1100,2,2,24,26],[1101,1,1,26,27]]],[50,1,1,27,28,[[1109,1,1,27,28]]],[51,2,2,28,30,[[1114,2,2,28,30]]],[55,1,1,30,31,[[1131,1,1,30,31]]],[57,1,1,31,32,[[1142,1,1,31,32]]],[58,2,2,32,34,[[1149,1,1,32,33],[1150,1,1,33,34]]],[59,3,3,34,37,[[1151,1,1,34,35],[1155,2,2,35,37]]],[61,5,5,37,42,[[1161,2,2,37,39],[1162,3,3,39,42]]],[62,1,1,42,43,[[1164,1,1,42,43]]],[65,2,2,43,45,[[1172,1,1,43,44],[1177,1,1,44,45]]]],[23967,25227,25460,26664,26711,26716,27142,27623,27670,27977,28250,28255,28274,28293,28299,28310,28317,28352,28633,28796,29055,29175,29177,29188,29274,29297,29325,29530,29612,29621,29926,30157,30348,30370,30396,30470,30479,30590,30602,30610,30614,30615,30650,30797,30882]]],["another's",[2,2,[[42,1,1,0,1,[[1009,1,1,0,1]]],[47,1,1,1,2,[[1096,1,1,1,2]]]],[26644,29190]]],["other",[3,3,[[45,1,1,0,1,[[1068,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]]],[28492,29179,29652]]],["themselves",[10,10,[[40,2,2,0,2,[[965,1,1,0,1],[971,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]],[42,4,4,3,7,[[1002,1,1,3,4],[1007,1,1,4,5],[1012,1,1,5,6],[1015,1,1,6,7]]],[43,3,3,7,10,[[1021,1,1,7,8],[1045,2,2,8,10]]]],[24572,24857,25099,26309,26579,26743,26849,27037,27903,27924]]],["together",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29632]]],["yourselves",[3,3,[[42,2,2,0,2,[[1002,1,1,0,1],[1012,1,1,1,2]]],[51,1,1,2,3,[[1115,1,1,2,3]]]],[26300,26745,29636]]]]},{"k":"G241","v":[["stranger",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25669]]]]},{"k":"G242","v":[["*",[3,3,[[42,1,1,0,1,[[1000,1,1,0,1]]],[43,2,2,1,3,[[1020,1,1,1,2],[1031,1,1,2,3]]]],[26170,27004,27424]]],["leaped",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27424]]],["leaping",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27004]]],["up",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26170]]]]},{"k":"G243","v":[["*",[160,141,[[39,30,29,0,29,[[930,1,1,0,1],[932,1,1,1,2],[933,1,1,2,3],[936,1,1,3,4],[938,1,1,4,5],[940,1,1,5,6],[941,6,6,6,12],[944,1,1,12,13],[947,1,1,13,14],[948,2,2,14,16],[949,4,4,16,20],[950,1,1,20,21],[953,5,4,21,25],[954,1,1,25,26],[955,2,2,26,28],[956,1,1,28,29]]],[40,24,21,29,50,[[959,1,1,29,30],[960,4,4,30,34],[962,2,1,34,35],[963,2,2,35,37],[964,2,1,37,38],[966,2,2,38,40],[967,1,1,40,41],[968,6,5,41,46],[970,2,2,46,48],[971,2,2,48,50]]],[41,12,11,50,61,[[977,1,1,50,51],[978,2,2,51,53],[979,3,3,53,56],[981,3,2,56,58],[992,1,1,58,59],[994,1,1,59,60],[995,1,1,60,61]]],[42,34,31,61,92,[[1000,3,2,61,63],[1001,3,3,63,66],[1002,2,2,66,68],[1003,3,2,68,70],[1005,3,2,70,72],[1006,2,2,72,74],[1008,1,1,74,75],[1010,1,1,75,76],[1011,1,1,76,77],[1014,3,3,77,80],[1015,2,2,80,82],[1016,6,6,82,88],[1017,4,4,88,92]]],[43,8,5,92,97,[[1019,2,1,92,93],[1021,1,1,93,94],[1032,1,1,94,95],[1036,2,1,95,96],[1038,2,1,96,97]]],[45,23,15,97,112,[[1062,1,1,97,98],[1064,2,2,98,100],[1070,3,3,100,103],[1071,1,1,103,104],[1073,6,3,104,107],[1075,3,3,107,110],[1076,7,2,110,112]]],[46,4,4,112,116,[[1078,1,1,112,113],[1085,1,1,113,114],[1088,2,2,114,116]]],[47,2,2,116,118,[[1091,1,1,116,117],[1095,1,1,117,118]]],[49,1,1,118,119,[[1105,1,1,118,119]]],[51,1,1,119,120,[[1112,1,1,119,120]]],[57,2,2,120,122,[[1136,1,1,120,121],[1143,1,1,121,122]]],[58,1,1,122,123,[[1150,1,1,122,123]]],[65,18,18,123,141,[[1168,1,1,123,124],[1172,1,1,124,125],[1173,1,1,125,126],[1174,1,1,126,127],[1176,1,1,127,128],[1178,1,1,128,129],[1179,1,1,129,130],[1180,5,5,130,135],[1181,1,1,135,136],[1182,1,1,136,137],[1183,1,1,137,138],[1184,2,2,138,140],[1186,1,1,140,141]]]],[23181,23230,23273,23354,23440,23502,23544,23546,23547,23563,23570,23572,23686,23771,23795,23798,23834,23859,23862,23867,23876,24024,24025,24028,24030,24125,24171,24190,24196,24293,24328,24330,24331,24359,24422,24467,24471,24528,24599,24600,24648,24677,24678,24682,24704,24705,24773,24812,24857,24867,25136,25156,25175,25203,25214,25215,25309,25320,25795,25923,25970,26193,26194,26217,26242,26253,26279,26280,26340,26369,26449,26456,26497,26502,26609,26684,26723,26800,26801,26819,26843,26857,26869,26870,26871,26875,26892,26897,26900,26906,26916,26923,26961,27034,27444,27617,27698,28379,28420,28421,28542,28552,28567,28596,28642,28643,28644,28697,28707,28708,28757,28759,28813,28945,28993,28997,29064,29172,29425,29576,30022,30207,30366,30741,30797,30812,30830,30862,30894,30919,30932,30934,30941,30943,30944,30947,30961,30985,30994,30997,31050]]],["+",[7,5,[[39,1,1,0,1,[[930,1,1,0,1]]],[43,5,3,1,4,[[1019,2,1,1,2],[1036,1,1,2,3],[1038,2,1,3,4]]],[47,1,1,4,5,[[1095,1,1,4,5]]]],[23181,26961,27617,27698,29172]]],["Another",[3,3,[[39,3,3,0,3,[[941,3,3,0,3]]]],[23563,23570,23572]]],["One",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26193]]],["Others",[4,4,[[40,1,1,0,1,[[962,1,1,0,1]]],[42,3,3,1,4,[[1003,1,1,1,2],[1005,1,1,2,3],[1006,1,1,3,4]]]],[24422,26369,26456,26502]]],["Some",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[42,1,1,1,2,[[1005,1,1,1,2]]]],[23544,26449]]],["another",[55,49,[[39,5,5,0,5,[[936,1,1,0,1],[938,1,1,1,2],[947,1,1,2,3],[949,1,1,3,4],[954,1,1,4,5]]],[40,6,6,5,11,[[966,2,2,5,7],[968,2,2,7,9],[970,2,2,9,11]]],[41,4,4,11,15,[[979,3,3,11,14],[994,1,1,14,15]]],[42,7,7,15,22,[[1000,1,1,15,16],[1001,3,3,16,19],[1010,1,1,19,20],[1014,1,1,20,21],[1017,1,1,21,22]]],[45,14,8,22,30,[[1064,1,1,22,23],[1071,1,1,23,24],[1073,6,3,24,27],[1075,1,1,27,28],[1076,5,2,28,30]]],[46,1,1,30,31,[[1088,1,1,30,31]]],[47,1,1,31,32,[[1091,1,1,31,32]]],[57,1,1,32,33,[[1136,1,1,32,33]]],[65,16,16,33,49,[[1172,1,1,33,34],[1173,1,1,34,35],[1174,1,1,35,36],[1176,1,1,36,37],[1178,1,1,37,38],[1179,1,1,38,39],[1180,5,5,39,44],[1181,1,1,44,45],[1182,1,1,45,46],[1184,2,2,46,48],[1186,1,1,48,49]]]],[23354,23440,23771,23859,24125,24599,24600,24677,24678,24773,24812,25203,25214,25215,25923,26193,26217,26242,26253,26684,26800,26916,28420,28596,28642,28643,28644,28708,28757,28759,28993,29064,30022,30797,30812,30830,30862,30894,30919,30932,30934,30941,30943,30944,30947,30961,30994,30997,31050]]],["any",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30366]]],["man",[2,2,[[42,1,1,0,1,[[1011,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[26723,29425]]],["men",[2,2,[[42,1,1,0,1,[[1000,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]]],[26194,28945]]],["more",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24028]]],["one",[2,2,[[45,2,2,0,2,[[1076,2,2,0,2]]]],[28757,28759]]],["other",[43,43,[[39,13,13,0,13,[[932,1,1,0,1],[933,1,1,1,2],[940,1,1,2,3],[941,1,1,3,4],[949,2,2,4,6],[950,1,1,6,7],[953,4,4,7,11],[955,1,1,11,12],[956,1,1,12,13]]],[40,6,6,13,19,[[959,1,1,13,14],[960,2,2,14,16],[963,1,1,16,17],[968,2,2,17,19]]],[41,2,2,19,21,[[978,2,2,19,21]]],[42,14,14,21,35,[[1002,2,2,21,23],[1006,1,1,23,24],[1014,1,1,24,25],[1015,2,2,25,27],[1016,6,6,27,33],[1017,2,2,33,35]]],[43,2,2,35,37,[[1021,1,1,35,36],[1032,1,1,36,37]]],[45,3,3,37,40,[[1062,1,1,37,38],[1064,1,1,38,39],[1075,1,1,39,40]]],[46,1,1,40,41,[[1088,1,1,40,41]]],[65,2,2,41,43,[[1168,1,1,41,42],[1183,1,1,42,43]]]],[23230,23273,23502,23547,23862,23867,23876,24024,24025,24028,24030,24190,24196,24293,24331,24359,24471,24704,24705,25156,25175,26279,26280,26497,26801,26843,26857,26869,26870,26871,26875,26892,26897,26900,26906,27034,27444,28379,28421,28707,28997,30741,30985]]],["others",[25,25,[[39,4,4,0,4,[[948,2,2,0,2],[949,1,1,2,3],[955,1,1,3,4]]],[40,6,6,4,10,[[962,1,1,4,5],[964,1,1,5,6],[967,1,1,6,7],[968,2,2,7,9],[971,1,1,9,10]]],[41,5,5,10,15,[[977,1,1,10,11],[981,2,2,11,13],[992,1,1,13,14],[995,1,1,14,15]]],[42,4,4,15,19,[[1003,1,1,15,16],[1005,1,1,16,17],[1008,1,1,17,18],[1014,1,1,18,19]]],[45,4,4,19,23,[[1070,3,3,19,22],[1075,1,1,22,23]]],[51,1,1,23,24,[[1112,1,1,23,24]]],[57,1,1,24,25,[[1143,1,1,24,25]]]],[23795,23798,23834,24171,24422,24528,24648,24678,24682,24857,25136,25309,25320,25795,25970,26340,26449,26609,26819,28542,28552,28567,28697,29576,30207]]],["some",[8,8,[[39,2,2,0,2,[[941,1,1,0,1],[944,1,1,1,2]]],[40,3,3,2,5,[[960,2,2,2,4],[964,1,1,4,5]]],[41,1,1,5,6,[[981,1,1,5,6]]],[42,1,1,6,7,[[1003,1,1,6,7]]],[43,1,1,7,8,[[1036,1,1,7,8]]]],[23546,23686,24328,24330,24528,25320,26369,27617]]],["things",[3,3,[[40,1,1,0,1,[[963,1,1,0,1]]],[42,1,1,1,2,[[1017,1,1,1,2]]],[46,1,1,2,3,[[1078,1,1,2,3]]]],[24467,26923,28813]]],["women",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24867]]]]},{"k":"G244","v":[["matters",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30461]]]]},{"k":"G245","v":[["*",[14,13,[[39,2,2,0,2,[[945,2,2,0,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[42,2,1,3,4,[[1006,2,1,3,4]]],[43,1,1,4,5,[[1024,1,1,4,5]]],[44,2,2,5,7,[[1059,1,1,5,6],[1060,1,1,6,7]]],[46,2,2,7,9,[[1087,2,2,7,9]]],[53,1,1,9,10,[[1123,1,1,9,10]]],[57,3,3,10,13,[[1141,1,1,10,11],[1143,2,2,11,13]]]],[23725,23726,25632,26486,27122,28284,28323,28986,28987,29785,30130,30181,30206]]],["aliens",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30206]]],["country",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30181]]],["man's",[4,4,[[41,1,1,0,1,[[988,1,1,0,1]]],[44,2,2,1,3,[[1059,1,1,1,2],[1060,1,1,2,3]]],[46,1,1,3,4,[[1087,1,1,3,4]]]],[25632,28284,28323,28987]]],["men's",[2,2,[[46,1,1,0,1,[[1087,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[28986,29785]]],["others",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30130]]],["strange",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27122]]],["stranger",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26486]]],["strangers",[3,3,[[39,2,2,0,2,[[945,2,2,0,2]]],[42,1,1,2,3,[[1006,1,1,2,3]]]],[23725,23726,26486]]]]},{"k":"G246","v":[["nation",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27287]]]]},{"k":"G247","v":[["otherwise",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29788]]]]},{"k":"G248","v":[["*",[3,3,[[45,2,2,0,2,[[1070,2,2,0,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]]],[28549,28550,29781]]],["corn",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28549]]],["out",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29781]]],["thresheth",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28550]]]]},{"k":"G249","v":[["*",[3,3,[[43,1,1,0,1,[[1042,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[27823,30512,30682]]],["brute",[2,2,[[60,1,1,0,1,[[1157,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[30512,30682]]],["unreasonable",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27823]]]]},{"k":"G250","v":[["aloes",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26864]]]]},{"k":"G251","v":[["salt",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24587]]]]},{"k":"G252","v":[["salt",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30331]]]]},{"k":"G253","v":[["sorrowful",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29419]]]]},{"k":"G254","v":[["*",[11,10,[[40,3,2,0,2,[[961,3,2,0,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[43,4,4,3,7,[[1029,2,2,3,5],[1038,1,1,5,6],[1045,1,1,6,7]]],[48,1,1,7,8,[[1102,1,1,7,8]]],[54,1,1,8,9,[[1125,1,1,8,9]]],[65,1,1,9,10,[[1186,1,1,9,10]]]],[24367,24368,25274,27343,27344,27697,27919,29357,29825,31039]]],["bonds",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29357]]],["chain",[3,3,[[43,1,1,0,1,[[1045,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]],[65,1,1,2,3,[[1186,1,1,2,3]]]],[27919,29825,31039]]],["chains",[7,6,[[40,3,2,0,2,[[961,3,2,0,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[43,3,3,3,6,[[1029,2,2,3,5],[1038,1,1,5,6]]]],[24367,24368,25274,27343,27344,27697]]]]},{"k":"G255","v":[["unprofitable",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30258]]]]},{"k":"G256","v":[["Alphaeus",[5,5,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[959,1,1,2,3]]],[41,1,1,3,4,[[978,1,1,3,4]]],[43,1,1,4,5,[[1018,1,1,4,5]]]],[23420,24274,24306,25161,26936]]]]},{"k":"G257","v":[["floor",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23204,25042]]]]},{"k":"G258","v":[["*",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[985,1,1,2,3]]]],[23365,25359,25550]]],["Foxes",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25359]]],["fox",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25550]]],["foxes",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23365]]]]},{"k":"G259","v":[["+",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30512]]]]},{"k":"G260","v":[["*",[9,9,[[39,2,2,0,2,[[941,1,1,0,1],[948,1,1,1,2]]],[43,1,1,2,3,[[1044,1,1,2,3]]],[44,1,1,3,4,[[1048,1,1,3,4]]],[50,1,1,4,5,[[1110,1,1,4,5]]],[51,2,2,5,7,[[1114,1,1,5,6],[1115,1,1,6,7]]],[53,1,1,7,8,[[1123,1,1,7,8]]],[56,1,1,8,9,[[1132,1,1,8,9]]]],[23568,23793,27895,28003,29545,29620,29631,29776,29960]]],["+",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23793]]],["Withal",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29545]]],["and",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27895]]],["together",[3,3,[[44,1,1,0,1,[[1048,1,1,0,1]]],[51,2,2,1,3,[[1114,1,1,1,2],[1115,1,1,2,3]]]],[28003,29620,29631]]],["with",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23568]]],["withal",[2,2,[[53,1,1,0,1,[[1123,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[29776,29960]]]]},{"k":"G261","v":[["unlearned",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30538]]]]},{"k":"G262","v":[["away",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30469]]]]},{"k":"G263","v":[["away",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30378]]]]},{"k":"G264","v":[["*",[43,37,[[39,3,3,0,3,[[946,2,2,0,2],[955,1,1,2,3]]],[41,4,4,3,7,[[987,2,2,3,5],[989,2,2,5,7]]],[42,4,4,7,11,[[1001,1,1,7,8],[1004,1,1,8,9],[1005,2,2,9,11]]],[43,1,1,11,12,[[1042,1,1,11,12]]],[44,7,6,12,18,[[1047,2,1,12,13],[1048,1,1,13,14],[1050,3,3,14,17],[1051,1,1,17,18]]],[45,7,5,18,23,[[1067,1,1,18,19],[1068,3,2,19,21],[1069,2,1,21,22],[1076,1,1,22,23]]],[48,1,1,23,24,[[1100,1,1,23,24]]],[53,1,1,24,25,[[1123,1,1,24,25]]],[55,1,1,25,26,[[1131,1,1,25,26]]],[57,2,2,26,28,[[1135,1,1,26,27],[1142,1,1,27,28]]],[59,1,1,28,29,[[1152,1,1,28,29]]],[60,1,1,29,30,[[1157,1,1,29,30]]],[61,10,7,30,37,[[1159,1,1,30,31],[1160,2,1,31,32],[1161,4,3,32,35],[1163,3,2,35,37]]]],[23742,23748,24133,25606,25609,25654,25655,26224,26392,26442,26443,27804,27974,28014,28059,28061,28063,28083,28485,28515,28523,28539,28752,29298,29783,29934,30012,30159,30419,30504,30550,30551,30585,30587,30588,30640,30642]]],["+",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28061]]],["faults",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30419]]],["offended",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27804]]],["sin",[16,13,[[39,1,1,0,1,[[946,1,1,0,1]]],[42,3,3,1,4,[[1001,1,1,1,2],[1004,1,1,2,3],[1005,1,1,3,4]]],[44,1,1,4,5,[[1051,1,1,4,5]]],[45,3,2,5,7,[[1069,2,1,5,6],[1076,1,1,6,7]]],[48,1,1,7,8,[[1100,1,1,7,8]]],[53,1,1,8,9,[[1123,1,1,8,9]]],[57,1,1,9,10,[[1142,1,1,9,10]]],[61,5,3,10,13,[[1160,2,1,10,11],[1161,1,1,11,12],[1163,2,1,12,13]]]],[23748,26224,26392,26442,28083,28539,28752,29298,29783,30159,30551,30588,30640]]],["sinned",[14,12,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,2,2,1,3,[[987,2,2,1,3]]],[42,1,1,3,4,[[1005,1,1,3,4]]],[44,5,4,4,8,[[1047,2,1,4,5],[1048,1,1,5,6],[1050,2,2,6,8]]],[45,2,1,8,9,[[1068,2,1,8,9]]],[57,1,1,9,10,[[1135,1,1,9,10]]],[60,1,1,10,11,[[1157,1,1,10,11]]],[61,1,1,11,12,[[1159,1,1,11,12]]]],[24133,25606,25609,26443,27974,28014,28059,28063,28515,30012,30504,30550]]],["sinneth",[7,6,[[45,2,2,0,2,[[1067,1,1,0,1],[1068,1,1,1,2]]],[55,1,1,2,3,[[1131,1,1,2,3]]],[61,4,3,3,6,[[1161,3,2,3,5],[1163,1,1,5,6]]]],[28485,28523,29934,30585,30587,30642]]],["trespass",[3,3,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,2,2,1,3,[[989,2,2,1,3]]]],[23742,25654,25655]]]]},{"k":"G265","v":[["*",[4,4,[[40,2,2,0,2,[[959,1,1,0,1],[960,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[45,1,1,3,4,[[1067,1,1,3,4]]]],[24316,24335,28016,28485]]],["sin",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28485]]],["sins",[3,3,[[40,2,2,0,2,[[959,1,1,0,1],[960,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]]],[24316,24335,28016]]]]},{"k":"G266","v":[["*",[174,151,[[39,7,7,0,7,[[929,1,1,0,1],[931,1,1,1,2],[937,3,3,2,5],[940,1,1,5,6],[954,1,1,6,7]]],[40,6,6,7,13,[[957,2,2,7,9],[958,4,4,9,13]]],[41,11,11,13,24,[[973,1,1,13,14],[975,1,1,14,15],[977,4,4,15,19],[979,3,3,19,22],[983,1,1,22,23],[996,1,1,23,24]]],[42,17,13,24,37,[[997,1,1,24,25],[1004,6,4,25,29],[1005,3,2,29,31],[1011,3,2,31,33],[1012,2,2,33,35],[1015,1,1,35,36],[1016,1,1,36,37]]],[43,8,8,37,45,[[1019,1,1,37,38],[1020,1,1,38,39],[1022,1,1,39,40],[1024,1,1,40,41],[1027,1,1,41,42],[1030,1,1,42,43],[1039,1,1,43,44],[1043,1,1,44,45]]],[44,48,39,45,84,[[1048,2,2,45,47],[1049,2,2,47,49],[1050,6,4,49,53],[1051,16,15,53,68],[1052,15,11,68,79],[1053,5,3,79,82],[1056,1,1,82,83],[1059,1,1,83,84]]],[45,4,3,84,87,[[1076,4,3,84,87]]],[46,3,2,87,89,[[1082,2,1,87,88],[1088,1,1,88,89]]],[47,3,3,89,92,[[1091,1,1,89,90],[1092,1,1,90,91],[1093,1,1,91,92]]],[48,1,1,92,93,[[1098,1,1,92,93]]],[50,2,2,93,95,[[1107,1,1,93,94],[1108,1,1,94,95]]],[51,1,1,95,96,[[1112,1,1,95,96]]],[52,1,1,96,97,[[1117,1,1,96,97]]],[53,2,2,97,99,[[1123,2,2,97,99]]],[54,1,1,99,100,[[1127,1,1,99,100]]],[57,25,24,100,124,[[1133,1,1,100,101],[1134,1,1,101,102],[1135,1,1,102,103],[1136,1,1,103,104],[1137,2,2,104,106],[1139,1,1,106,107],[1140,1,1,107,108],[1141,3,2,108,110],[1142,10,10,110,120],[1143,1,1,120,121],[1144,2,2,121,123],[1145,1,1,123,124]]],[58,6,5,124,129,[[1146,2,1,124,125],[1147,1,1,125,126],[1149,1,1,126,127],[1150,2,2,127,129]]],[59,6,5,129,134,[[1152,3,2,129,131],[1153,1,1,131,132],[1154,2,2,132,134]]],[60,2,2,134,136,[[1156,1,1,134,135],[1157,1,1,135,136]]],[61,17,12,136,148,[[1159,4,3,136,139],[1160,2,2,139,141],[1161,6,4,141,145],[1162,1,1,145,146],[1163,4,2,146,148]]],[65,3,3,148,151,[[1167,1,1,148,149],[1184,2,2,149,151]]]],[23165,23198,23381,23384,23385,23520,24082,24219,24220,24265,24267,24269,24270,24970,25028,25127,25128,25130,25131,25242,25243,25244,25409,26038,26073,26402,26405,26415,26427,26474,26481,26721,26723,26734,26735,26836,26890,26987,27015,27090,27176,27302,27400,27720,27841,28000,28011,28029,28030,28059,28060,28067,28068,28069,28070,28074,28075,28078,28079,28080,28081,28082,28084,28085,28086,28088,28090,28091,28096,28098,28099,28100,28102,28104,28105,28108,28111,28114,28116,28118,28119,28126,28236,28303,28721,28735,28774,28898,28996,29061,29098,29124,29230,29479,29505,29586,29664,29785,29787,29859,29966,29994,30008,30029,30031,30033,30091,30104,30131,30133,30135,30136,30137,30139,30141,30144,30145,30150,30151,30159,30197,30213,30216,30252,30281,30302,30354,30369,30374,30421,30423,30442,30447,30454,30488,30514,30547,30548,30549,30552,30562,30583,30584,30587,30588,30613,30640,30641,30702,30997,30998]]],["+",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26735]]],["offence",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28996]]],["sin",[93,76,[[39,1,1,0,1,[[940,1,1,0,1]]],[42,11,8,1,9,[[997,1,1,1,2],[1004,3,2,2,4],[1005,2,1,4,5],[1011,3,2,5,7],[1012,1,1,7,8],[1015,1,1,8,9]]],[43,1,1,9,10,[[1024,1,1,9,10]]],[44,44,36,10,46,[[1048,2,2,10,12],[1049,1,1,12,13],[1050,6,4,13,17],[1051,16,15,17,32],[1052,14,10,32,42],[1053,4,3,42,45],[1059,1,1,45,46]]],[45,2,1,46,47,[[1076,2,1,46,47]]],[46,2,1,47,48,[[1082,2,1,47,48]]],[47,2,2,48,50,[[1092,1,1,48,49],[1093,1,1,49,50]]],[52,1,1,50,51,[[1117,1,1,50,51]]],[57,11,11,51,62,[[1135,1,1,51,52],[1136,1,1,52,53],[1141,2,2,53,55],[1142,3,3,55,58],[1143,1,1,58,59],[1144,2,2,59,61],[1145,1,1,61,62]]],[58,4,3,62,65,[[1146,2,1,62,63],[1147,1,1,63,64],[1149,1,1,64,65]]],[59,2,2,65,67,[[1152,1,1,65,66],[1154,1,1,66,67]]],[60,1,1,67,68,[[1157,1,1,67,68]]],[61,11,8,68,76,[[1159,2,2,68,70],[1161,5,4,70,74],[1163,4,2,74,76]]]],[23520,26073,26415,26427,26481,26721,26723,26734,26836,27176,28000,28011,28030,28059,28060,28067,28068,28069,28070,28074,28075,28078,28079,28080,28081,28082,28084,28085,28086,28088,28090,28091,28098,28099,28100,28102,28104,28105,28108,28111,28114,28116,28118,28119,28126,28303,28774,28898,29098,29124,29664,30008,30029,30131,30133,30139,30141,30151,30197,30213,30216,30252,30281,30302,30354,30421,30447,30514,30547,30548,30583,30584,30587,30588,30640,30641]]],["sinful",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28119]]],["sins",[78,75,[[39,6,6,0,6,[[929,1,1,0,1],[931,1,1,1,2],[937,3,3,2,5],[954,1,1,5,6]]],[40,6,6,6,12,[[957,2,2,6,8],[958,4,4,8,12]]],[41,11,11,12,23,[[973,1,1,12,13],[975,1,1,13,14],[977,4,4,14,18],[979,3,3,18,21],[983,1,1,21,22],[996,1,1,22,23]]],[42,5,4,23,27,[[1004,3,2,23,25],[1005,1,1,25,26],[1016,1,1,26,27]]],[43,7,7,27,34,[[1019,1,1,27,28],[1020,1,1,28,29],[1022,1,1,29,30],[1027,1,1,30,31],[1030,1,1,31,32],[1039,1,1,32,33],[1043,1,1,33,34]]],[44,3,3,34,37,[[1049,1,1,34,35],[1052,1,1,35,36],[1056,1,1,36,37]]],[45,2,2,37,39,[[1076,2,2,37,39]]],[47,1,1,39,40,[[1091,1,1,39,40]]],[48,1,1,40,41,[[1098,1,1,40,41]]],[50,2,2,41,43,[[1107,1,1,41,42],[1108,1,1,42,43]]],[51,1,1,43,44,[[1112,1,1,43,44]]],[53,2,2,44,46,[[1123,2,2,44,46]]],[54,1,1,46,47,[[1127,1,1,46,47]]],[57,14,14,47,61,[[1133,1,1,47,48],[1134,1,1,48,49],[1137,2,2,49,51],[1139,1,1,51,52],[1140,1,1,52,53],[1141,1,1,53,54],[1142,7,7,54,61]]],[58,2,2,61,63,[[1150,2,2,61,63]]],[59,4,3,63,66,[[1152,2,1,63,64],[1153,1,1,64,65],[1154,1,1,65,66]]],[60,1,1,66,67,[[1156,1,1,66,67]]],[61,6,5,67,72,[[1159,2,1,67,68],[1160,2,2,68,70],[1161,1,1,70,71],[1162,1,1,71,72]]],[65,3,3,72,75,[[1167,1,1,72,73],[1184,2,2,73,75]]]],[23165,23198,23381,23384,23385,24082,24219,24220,24265,24267,24269,24270,24970,25028,25127,25128,25130,25131,25242,25243,25244,25409,26038,26402,26405,26474,26890,26987,27015,27090,27302,27400,27720,27841,28029,28096,28236,28721,28735,29061,29230,29479,29505,29586,29785,29787,29859,29966,29994,30031,30033,30091,30104,30133,30135,30136,30137,30144,30145,30150,30159,30369,30374,30423,30442,30454,30488,30549,30552,30562,30584,30613,30702,30997,30998]]]]},{"k":"G267","v":[["witness",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27431]]]]},{"k":"G268","v":[["*",[47,45,[[39,5,5,0,5,[[937,3,3,0,3],[939,1,1,3,4],[954,1,1,4,5]]],[40,6,5,5,10,[[958,4,3,5,8],[964,1,1,8,9],[970,1,1,9,10]]],[41,18,17,10,27,[[977,3,3,10,13],[978,4,3,13,16],[979,3,3,16,19],[985,1,1,19,20],[987,4,4,20,24],[990,1,1,24,25],[991,1,1,25,26],[996,1,1,26,27]]],[42,4,4,27,31,[[1005,4,4,27,31]]],[44,4,4,31,35,[[1048,1,1,31,32],[1050,2,2,32,34],[1052,1,1,34,35]]],[47,2,2,35,37,[[1092,2,2,35,37]]],[53,2,2,37,39,[[1119,2,2,37,39]]],[57,2,2,39,41,[[1139,1,1,39,40],[1144,1,1,40,41]]],[58,2,2,41,43,[[1149,1,1,41,42],[1150,1,1,42,43]]],[59,1,1,43,44,[[1154,1,1,43,44]]],[64,1,1,44,45,[[1166,1,1,44,45]]]],[23389,23390,23392,23478,24099,24275,24276,24277,24538,24795,25115,25137,25139,25178,25179,25180,25229,25232,25234,25520,25589,25590,25595,25598,25701,25738,25998,26456,26464,26465,26471,27998,28055,28066,28104,29096,29098,29705,29711,30090,30215,30345,30374,30464,30687]]],["sinful",[4,4,[[40,1,1,0,1,[[964,1,1,0,1]]],[41,2,2,1,3,[[977,1,1,1,2],[996,1,1,2,3]]],[44,1,1,3,4,[[1052,1,1,3,4]]]],[24538,25115,25998,28104]]],["sinner",[12,12,[[41,6,6,0,6,[[979,2,2,0,2],[987,2,2,2,4],[990,1,1,4,5],[991,1,1,5,6]]],[42,3,3,6,9,[[1005,3,3,6,9]]],[44,1,1,9,10,[[1048,1,1,9,10]]],[58,1,1,10,11,[[1150,1,1,10,11]]],[59,1,1,11,12,[[1154,1,1,11,12]]]],[25232,25234,25595,25598,25701,25738,26456,26464,26465,27998,30374,30464]]],["sinners",[31,29,[[39,5,5,0,5,[[937,3,3,0,3],[939,1,1,3,4],[954,1,1,4,5]]],[40,5,4,5,9,[[958,4,3,5,8],[970,1,1,8,9]]],[41,10,9,9,18,[[977,2,2,9,11],[978,4,3,11,14],[979,1,1,14,15],[985,1,1,15,16],[987,2,2,16,18]]],[42,1,1,18,19,[[1005,1,1,18,19]]],[44,2,2,19,21,[[1050,2,2,19,21]]],[47,2,2,21,23,[[1092,2,2,21,23]]],[53,2,2,23,25,[[1119,2,2,23,25]]],[57,2,2,25,27,[[1139,1,1,25,26],[1144,1,1,26,27]]],[58,1,1,27,28,[[1149,1,1,27,28]]],[64,1,1,28,29,[[1166,1,1,28,29]]]],[23389,23390,23392,23478,24099,24275,24276,24277,24795,25137,25139,25178,25179,25180,25229,25520,25589,25590,26471,28055,28066,29096,29098,29705,29711,30090,30215,30345,30687]]]]},{"k":"G269","v":[["*",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[29734,29925]]],["brawler",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29734]]],["brawlers",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29925]]]]},{"k":"G270","v":[["down",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30358]]]]},{"k":"G271","v":[["amethyst",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31073]]]]},{"k":"G272","v":[["*",[5,5,[[39,1,1,0,1,[[950,1,1,0,1]]],[53,1,1,1,2,[[1122,1,1,1,2]]],[57,2,2,2,4,[[1134,1,1,2,3],[1140,1,1,3,4]]],[60,1,1,4,5,[[1156,1,1,4,5]]]],[23877,29761,29980,30101,30491]]],["+",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30101]]],["Neglect",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29761]]],["neglect",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29980]]],["negligent",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30491]]],["of",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23877]]]]},{"k":"G273","v":[["*",[5,5,[[41,1,1,0,1,[[973,1,1,0,1]]],[49,2,2,1,3,[[1104,1,1,1,2],[1105,1,1,2,3]]],[51,1,1,3,4,[[1113,1,1,3,4]]],[57,1,1,4,5,[[1140,1,1,4,5]]]],[24899,29406,29427,29603,30099]]],["blameless",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[49,2,2,1,3,[[1104,1,1,1,2],[1105,1,1,2,3]]]],[24899,29406,29427]]],["faultless",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30099]]],["unblameable",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29603]]]]},{"k":"G274","v":[["*",[2,2,[[51,2,2,0,2,[[1112,1,1,0,1],[1115,1,1,1,2]]]],[29580,29644]]],["blameless",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29644]]],["unblameably",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29580]]]]},{"k":"G275","v":[["*",[2,2,[[39,1,1,0,1,[[956,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[24209,28519]]],["+",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24209]]],["carefulness",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28519]]]]},{"k":"G276","v":[["*",[2,2,[[57,2,2,0,2,[[1138,2,2,0,2]]]],[30061,30062]]],["immutability",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30061]]],["immutable",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30062]]]]},{"k":"G277","v":[["unmoveable",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28776]]]]},{"k":"G278","v":[["*",[2,2,[[44,1,1,0,1,[[1056,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]]],[28238,28926]]],["of",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28926]]],["repentance",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28238]]]]},{"k":"G279","v":[["impenitent",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27967]]]]},{"k":"G280","v":[["measure",[2,2,[[46,2,2,0,2,[[1087,2,2,0,2]]]],[28984,28986]]]]},{"k":"G281","v":[["*",[152,126,[[39,32,32,0,32,[[933,2,2,0,2],[934,4,4,2,6],[936,1,1,6,7],[938,3,3,7,10],[939,1,1,10,11],[941,1,1,11,12],[944,1,1,12,13],[945,1,1,13,14],[946,3,3,14,17],[947,2,2,17,19],[949,2,2,19,21],[951,1,1,21,22],[952,3,3,22,25],[953,3,3,25,28],[954,3,3,28,31],[956,1,1,31,32]]],[40,15,15,32,47,[[959,1,1,32,33],[962,1,1,33,34],[964,1,1,34,35],[965,2,2,35,37],[966,2,2,37,39],[967,1,1,39,40],[968,1,1,40,41],[969,1,1,41,42],[970,4,4,42,46],[972,1,1,46,47]]],[41,8,8,47,55,[[976,1,1,47,48],[984,1,1,48,49],[985,1,1,49,50],[990,2,2,50,52],[993,1,1,52,53],[995,1,1,53,54],[996,1,1,54,55]]],[42,51,26,55,81,[[997,2,1,55,56],[999,6,3,56,59],[1001,6,3,59,62],[1002,8,4,62,66],[1004,6,3,66,69],[1006,4,2,69,71],[1008,2,1,71,72],[1009,8,4,72,76],[1010,2,1,76,77],[1012,4,2,77,79],[1017,3,2,79,81]]],[44,7,7,81,88,[[1046,1,1,81,82],[1054,1,1,82,83],[1056,1,1,83,84],[1060,1,1,84,85],[1061,3,3,85,88]]],[45,2,2,88,90,[[1075,1,1,88,89],[1077,1,1,89,90]]],[46,2,2,90,92,[[1078,1,1,90,91],[1090,1,1,91,92]]],[47,2,2,92,94,[[1091,1,1,92,93],[1096,1,1,93,94]]],[48,2,2,94,96,[[1099,1,1,94,95],[1102,1,1,95,96]]],[49,2,2,96,98,[[1106,2,2,96,98]]],[50,1,1,98,99,[[1110,1,1,98,99]]],[51,1,1,99,100,[[1115,1,1,99,100]]],[52,1,1,100,101,[[1118,1,1,100,101]]],[53,3,3,101,104,[[1119,1,1,101,102],[1124,2,2,102,104]]],[54,2,2,104,106,[[1128,2,2,104,106]]],[55,1,1,106,107,[[1131,1,1,106,107]]],[56,1,1,107,108,[[1132,1,1,107,108]]],[57,2,2,108,110,[[1145,2,2,108,110]]],[59,3,3,110,113,[[1154,1,1,110,111],[1155,2,2,111,113]]],[60,1,1,113,114,[[1158,1,1,113,114]]],[61,1,1,114,115,[[1163,1,1,114,115]]],[62,1,1,115,116,[[1164,1,1,115,116]]],[64,1,1,116,117,[[1166,1,1,116,117]]],[65,10,9,117,126,[[1167,3,3,117,120],[1169,1,1,120,121],[1171,1,1,121,122],[1173,2,1,122,123],[1185,1,1,123,124],[1188,2,2,124,126]]]],[23252,23260,23284,23287,23295,23298,23355,23432,23440,23459,23470,23556,23700,23720,23730,23740,23745,23785,23790,23847,23857,23954,23959,23991,24004,24020,24048,24053,24067,24075,24088,24215,24316,24418,24512,24539,24579,24603,24617,24663,24716,24747,24763,24772,24779,24784,24893,25087,25496,25553,25705,25717,25858,25978,26044,26095,26123,26125,26131,26229,26234,26235,26283,26289,26304,26310,26415,26432,26439,26482,26488,26604,26646,26650,26651,26668,26680,26746,26749,26916,26923,27955,28160,28245,28336,28356,28360,28363,28694,28800,28820,29057,29062,29206,29272,29361,29462,29465,29560,29649,29696,29713,29804,29809,29888,29892,29938,29963,30262,30266,30457,30476,30479,30540,30645,30658,30697,30703,30704,30715,30760,30793,30822,31021,31100,31101]]],["Amen",[51,50,[[39,2,2,0,2,[[934,1,1,0,1],[956,1,1,1,2]]],[40,1,1,2,3,[[972,1,1,2,3]]],[41,1,1,3,4,[[996,1,1,3,4]]],[42,1,1,4,5,[[1017,1,1,4,5]]],[44,7,7,5,12,[[1046,1,1,5,6],[1054,1,1,6,7],[1056,1,1,7,8],[1060,1,1,8,9],[1061,3,3,9,12]]],[45,2,2,12,14,[[1075,1,1,12,13],[1077,1,1,13,14]]],[46,2,2,14,16,[[1078,1,1,14,15],[1090,1,1,15,16]]],[47,2,2,16,18,[[1091,1,1,16,17],[1096,1,1,17,18]]],[48,2,2,18,20,[[1099,1,1,18,19],[1102,1,1,19,20]]],[49,2,2,20,22,[[1106,2,2,20,22]]],[50,1,1,22,23,[[1110,1,1,22,23]]],[51,1,1,23,24,[[1115,1,1,23,24]]],[52,1,1,24,25,[[1118,1,1,24,25]]],[53,3,3,25,28,[[1119,1,1,25,26],[1124,2,2,26,28]]],[54,2,2,28,30,[[1128,2,2,28,30]]],[55,1,1,30,31,[[1131,1,1,30,31]]],[56,1,1,31,32,[[1132,1,1,31,32]]],[57,2,2,32,34,[[1145,2,2,32,34]]],[59,3,3,34,37,[[1154,1,1,34,35],[1155,2,2,35,37]]],[60,1,1,37,38,[[1158,1,1,37,38]]],[61,1,1,38,39,[[1163,1,1,38,39]]],[62,1,1,39,40,[[1164,1,1,39,40]]],[64,1,1,40,41,[[1166,1,1,40,41]]],[65,10,9,41,50,[[1167,3,3,41,44],[1169,1,1,44,45],[1171,1,1,45,46],[1173,2,1,46,47],[1185,1,1,47,48],[1188,2,2,48,50]]]],[23295,24215,24893,26044,26923,27955,28160,28245,28336,28356,28360,28363,28694,28800,28820,29057,29062,29206,29272,29361,29462,29465,29560,29649,29696,29713,29804,29809,29888,29892,29938,29963,30262,30266,30457,30476,30479,30540,30645,30658,30697,30703,30704,30715,30760,30793,30822,31021,31100,31101]]],["Verily",[64,64,[[39,23,23,0,23,[[933,1,1,0,1],[934,3,3,1,4],[936,1,1,4,5],[938,1,1,5,6],[939,1,1,6,7],[944,1,1,7,8],[946,2,2,8,10],[947,2,2,10,12],[949,2,2,12,14],[951,1,1,14,15],[952,2,2,15,17],[953,3,3,17,20],[954,3,3,20,23]]],[40,11,11,23,34,[[959,1,1,23,24],[962,1,1,24,25],[965,1,1,25,26],[966,2,2,26,28],[968,1,1,28,29],[969,1,1,29,30],[970,4,4,30,34]]],[41,5,5,34,39,[[976,1,1,34,35],[990,2,2,35,37],[993,1,1,37,38],[995,1,1,38,39]]],[42,25,25,39,64,[[997,1,1,39,40],[999,3,3,40,43],[1001,3,3,43,46],[1002,4,4,46,50],[1004,3,3,50,53],[1006,2,2,53,55],[1008,1,1,55,56],[1009,4,4,56,60],[1010,1,1,60,61],[1012,2,2,61,63],[1017,1,1,63,64]]]],[23260,23284,23287,23298,23355,23432,23470,23700,23730,23745,23785,23790,23847,23857,23954,23991,24004,24020,24048,24053,24067,24075,24088,24316,24418,24539,24603,24617,24716,24747,24763,24772,24779,24784,25087,25705,25717,25858,25978,26095,26123,26125,26131,26229,26234,26235,26283,26289,26304,26310,26415,26432,26439,26482,26488,26604,26646,26650,26651,26668,26680,26746,26749,26916]]],["verily",[37,37,[[39,7,7,0,7,[[933,1,1,0,1],[938,2,2,1,3],[941,1,1,3,4],[945,1,1,4,5],[946,1,1,5,6],[952,1,1,6,7]]],[40,3,3,7,10,[[964,1,1,7,8],[965,1,1,8,9],[967,1,1,9,10]]],[41,2,2,10,12,[[984,1,1,10,11],[985,1,1,11,12]]],[42,25,25,12,37,[[997,1,1,12,13],[999,3,3,13,16],[1001,3,3,16,19],[1002,4,4,19,23],[1004,3,3,23,26],[1006,2,2,26,28],[1008,1,1,28,29],[1009,4,4,29,33],[1010,1,1,33,34],[1012,2,2,34,36],[1017,1,1,36,37]]]],[23252,23440,23459,23556,23720,23740,23959,24512,24579,24663,25496,25553,26095,26123,26125,26131,26229,26234,26235,26283,26289,26304,26310,26415,26432,26439,26482,26488,26604,26646,26650,26651,26668,26680,26746,26749,26916]]]]},{"k":"G282","v":[["mother",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30067]]]]},{"k":"G283","v":[["undefiled",[4,4,[[57,2,2,0,2,[[1139,1,1,0,1],[1145,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[30090,30245,30293,30378]]]]},{"k":"G284","v":[["Aminadab",[3,2,[[39,2,1,0,1,[[929,2,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23148,25058]]]]},{"k":"G285","v":[["sand",[5,5,[[39,1,1,0,1,[[935,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]],[65,2,2,3,5,[[1179,1,1,3,4],[1186,1,1,4,5]]]],[23342,28182,30184,30909,31046]]]]},{"k":"G286","v":[["*",[4,4,[[42,2,2,0,2,[[997,2,2,0,2]]],[43,1,1,2,3,[[1025,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[26073,26080,27208,30393]]],["Lamb",[2,2,[[42,2,2,0,2,[[997,2,2,0,2]]]],[26073,26080]]],["lamb",[2,2,[[43,1,1,0,1,[[1025,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[27208,30393]]]]},{"k":"G287","v":[["+",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29767]]]]},{"k":"G288","v":[["vine",[9,9,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,3,3,3,6,[[1011,3,3,3,6]]],[58,1,1,6,7,[[1148,1,1,6,7]]],[65,2,2,7,9,[[1180,2,2,7,9]]]],[24083,24779,25882,26700,26703,26704,30331,30944,30945]]]]},{"k":"G289","v":[["vineyard",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25525]]]]},{"k":"G290","v":[["vineyard",[23,21,[[39,10,10,0,10,[[948,5,5,0,5],[949,5,5,5,10]]],[40,5,4,10,14,[[968,5,4,10,14]]],[41,7,6,14,20,[[985,1,1,14,15],[992,6,5,15,20]]],[45,1,1,20,21,[[1070,1,1,20,21]]]],[23793,23794,23796,23799,23800,23854,23859,23865,23866,23867,24674,24675,24681,24682,25524,25788,25789,25792,25794,25795,28547]]]]},{"k":"G291","v":[["Amplias",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28344]]]]},{"k":"G292","v":[["defended",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27140]]]]},{"k":"G293","v":[["net",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23227,24231]]]]},{"k":"G294","v":[["*",[4,4,[[39,2,2,0,2,[[934,1,1,0,1],[939,1,1,1,2]]],[41,2,2,2,4,[[979,1,1,2,3],[984,1,1,3,4]]]],[23312,23467,25220,25487]]],["clothe",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23312,25487]]],["clothed",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]]],[23467,25220]]]]},{"k":"G295","v":[["Amphipolis",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27524]]]]},{"k":"G296","v":[["met",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24644]]]]},{"k":"G297","v":[["both",[14,14,[[39,3,3,0,3,[[937,1,1,0,1],[941,1,1,1,2],[943,1,1,2,3]]],[41,6,6,3,9,[[973,2,2,3,5],[977,2,2,5,7],[978,1,1,7,8],[979,1,1,8,9]]],[43,2,2,9,11,[[1025,1,1,9,10],[1040,1,1,10,11]]],[48,3,3,11,14,[[1098,3,3,11,14]]]],[23396,23569,23647,24899,24900,25114,25145,25185,25237,27214,27742,29243,29245,29247]]]]},{"k":"G298","v":[["*",[2,2,[[49,1,1,0,1,[[1104,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[29406,30536]]],["blameless",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30536]]],["rebuke",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29406]]]]},{"k":"G299","v":[["*",[7,7,[[48,2,2,0,2,[[1097,1,1,0,1],[1101,1,1,1,2]]],[50,1,1,2,3,[[1107,1,1,2,3]]],[57,1,1,3,4,[[1141,1,1,3,4]]],[59,1,1,4,5,[[1151,1,1,4,5]]],[64,1,1,5,6,[[1166,1,1,5,6]]],[65,1,1,6,7,[[1180,1,1,6,7]]]],[29210,29331,29487,30119,30393,30696,30931]]],["blame",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29210]]],["blemish",[2,2,[[48,1,1,0,1,[[1101,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[29331,30393]]],["fault",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30931]]],["faultless",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30696]]],["spot",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30119]]],["unblameable",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29487]]]]},{"k":"G300","v":[["Amon",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23154]]]]},{"k":"G301","v":[["Amos",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25050]]]]},{"k":"G302","v":[["*",[182,165,[[39,39,33,0,33,[[930,1,1,0,1],[933,7,6,1,7],[934,1,1,7,8],[935,1,1,8,9],[938,4,3,9,12],[940,3,2,12,14],[943,1,1,14,15],[944,3,2,15,17],[945,1,1,17,18],[946,1,1,18,19],[947,1,1,19,20],[949,2,2,20,22],[950,1,1,22,23],[951,6,5,23,28],[952,4,3,28,31],[953,1,1,31,32],[954,1,1,32,33]]],[40,22,20,33,53,[[959,3,3,33,36],[960,1,1,36,37],[962,4,3,37,40],[964,3,2,40,42],[965,4,4,42,46],[966,1,1,46,47],[967,2,2,47,49],[968,1,1,49,50],[969,1,1,50,51],[970,2,2,51,53]]],[41,29,25,53,78,[[973,1,1,53,54],[974,1,1,54,55],[978,1,1,55,56],[979,1,1,56,57],[980,2,1,57,58],[981,7,6,58,64],[982,5,5,64,69],[984,3,2,69,71],[985,2,2,71,73],[989,2,1,73,74],[991,1,1,74,75],[992,2,2,75,77],[993,1,1,77,78]]],[42,27,25,78,103,[[997,1,1,78,79],[998,1,1,79,80],[1000,3,2,80,82],[1001,2,2,82,84],[1004,3,3,84,87],[1005,1,1,87,88],[1007,3,3,88,91],[1009,1,1,91,92],[1010,4,4,92,96],[1011,2,2,96,98],[1012,2,2,98,100],[1014,2,2,100,102],[1016,2,1,102,103]]],[43,20,20,103,123,[[1019,5,5,103,108],[1020,3,3,108,111],[1021,1,1,111,112],[1022,1,1,112,113],[1024,1,1,113,114],[1025,2,2,114,116],[1027,1,1,116,117],[1032,1,1,117,118],[1034,2,2,118,120],[1035,1,1,120,121],[1038,1,1,121,122],[1043,1,1,122,123]]],[44,7,5,123,128,[[1048,1,1,123,124],[1054,4,2,124,126],[1055,1,1,126,127],[1061,1,1,127,128]]],[45,10,9,128,137,[[1063,1,1,128,129],[1065,1,1,129,130],[1068,1,1,130,131],[1072,5,4,131,135],[1073,1,1,135,136],[1077,1,1,136,137]]],[46,3,3,137,140,[[1080,1,1,137,138],[1087,1,1,138,139],[1088,1,1,139,140]]],[47,5,5,140,145,[[1091,1,1,140,141],[1093,1,1,141,142],[1094,1,1,142,143],[1095,2,2,143,145]]],[49,1,1,145,146,[[1104,1,1,145,146]]],[50,1,1,146,147,[[1109,1,1,146,147]]],[51,1,1,147,148,[[1112,1,1,147,148]]],[57,6,6,148,154,[[1133,1,1,148,149],[1136,1,1,149,150],[1140,2,2,150,152],[1142,1,1,152,153],[1143,1,1,153,154]]],[58,3,3,154,157,[[1148,1,1,154,155],[1149,1,1,155,156],[1150,1,1,156,157]]],[61,5,5,157,162,[[1160,2,2,157,159],[1161,1,1,159,160],[1162,1,1,160,161],[1163,1,1,161,162]]],[65,3,3,162,165,[[1168,1,1,162,163],[1179,1,1,163,164],[1180,1,1,164,165]]]],[23182,23253,23255,23256,23260,23265,23266,23287,23328,23428,23440,23450,23509,23521,23638,23697,23700,23709,23733,23771,23848,23870,23881,23921,23934,23936,23948,23957,23979,23991,24000,24035,24102,24316,24317,24323,24348,24417,24418,24463,24535,24538,24539,24556,24579,24580,24632,24663,24664,24709,24737,24763,24798,24955,25008,25157,25234,25263,25305,25306,25325,25327,25328,25358,25368,25371,25373,25376,25398,25467,25498,25543,25553,25657,25754,25797,25822,25858,26077,26100,26166,26170,26229,26256,26400,26420,26423,26481,26544,26545,26555,26654,26670,26675,26681,26696,26715,26718,26739,26749,26815,26821,26890,26961,26970,26984,26988,26994,27015,27018,27019,27057,27083,27119,27195,27207,27276,27459,27541,27543,27571,27697,27852,27995,28170,28184,28201,28338,28402,28438,28492,28625,28626,28627,28634,28636,28778,28857,28980,29010,29067,29123,29146,29172,29179,29414,29534,29577,29976,30022,30096,30099,30135,30187,30323,30341,30361,30555,30569,30596,30618,30639,30742,30923,30930]]],["+",[179,162,[[39,39,33,0,33,[[930,1,1,0,1],[933,7,6,1,7],[934,1,1,7,8],[935,1,1,8,9],[938,4,3,9,12],[940,3,2,12,14],[943,1,1,14,15],[944,3,2,15,17],[945,1,1,17,18],[946,1,1,18,19],[947,1,1,19,20],[949,2,2,20,22],[950,1,1,22,23],[951,6,5,23,28],[952,4,3,28,31],[953,1,1,31,32],[954,1,1,32,33]]],[40,22,20,33,53,[[959,3,3,33,36],[960,1,1,36,37],[962,4,3,37,40],[964,3,2,40,42],[965,4,4,42,46],[966,1,1,46,47],[967,2,2,47,49],[968,1,1,49,50],[969,1,1,50,51],[970,2,2,51,53]]],[41,28,24,53,77,[[973,1,1,53,54],[974,1,1,54,55],[978,1,1,55,56],[979,1,1,56,57],[980,2,1,57,58],[981,7,6,58,64],[982,4,4,64,68],[984,3,2,68,70],[985,2,2,70,72],[989,2,1,72,73],[991,1,1,73,74],[992,2,2,74,76],[993,1,1,76,77]]],[42,26,24,77,101,[[997,1,1,77,78],[998,1,1,78,79],[1000,3,2,79,81],[1001,2,2,81,83],[1004,3,3,83,86],[1005,1,1,86,87],[1007,3,3,87,90],[1009,1,1,90,91],[1010,4,4,91,95],[1011,2,2,95,97],[1012,2,2,97,99],[1014,1,1,99,100],[1016,2,1,100,101]]],[43,20,20,101,121,[[1019,5,5,101,106],[1020,3,3,106,109],[1021,1,1,109,110],[1022,1,1,110,111],[1024,1,1,111,112],[1025,2,2,112,114],[1027,1,1,114,115],[1032,1,1,115,116],[1034,2,2,116,118],[1035,1,1,118,119],[1038,1,1,119,120],[1043,1,1,120,121]]],[44,7,5,121,126,[[1048,1,1,121,122],[1054,4,2,122,124],[1055,1,1,124,125],[1061,1,1,125,126]]],[45,9,8,126,134,[[1065,1,1,126,127],[1068,1,1,127,128],[1072,5,4,128,132],[1073,1,1,132,133],[1077,1,1,133,134]]],[46,3,3,134,137,[[1080,1,1,134,135],[1087,1,1,135,136],[1088,1,1,136,137]]],[47,5,5,137,142,[[1091,1,1,137,138],[1093,1,1,138,139],[1094,1,1,139,140],[1095,2,2,140,142]]],[49,1,1,142,143,[[1104,1,1,142,143]]],[50,1,1,143,144,[[1109,1,1,143,144]]],[51,1,1,144,145,[[1112,1,1,144,145]]],[57,6,6,145,151,[[1133,1,1,145,146],[1136,1,1,146,147],[1140,2,2,147,149],[1142,1,1,149,150],[1143,1,1,150,151]]],[58,3,3,151,154,[[1148,1,1,151,152],[1149,1,1,152,153],[1150,1,1,153,154]]],[61,5,5,154,159,[[1160,2,2,154,156],[1161,1,1,156,157],[1162,1,1,157,158],[1163,1,1,158,159]]],[65,3,3,159,162,[[1168,1,1,159,160],[1179,1,1,160,161],[1180,1,1,161,162]]]],[23182,23253,23255,23256,23260,23265,23266,23287,23328,23428,23440,23450,23509,23521,23638,23697,23700,23709,23733,23771,23848,23870,23881,23921,23934,23936,23948,23957,23979,23991,24000,24035,24102,24316,24317,24323,24348,24417,24418,24463,24535,24538,24539,24556,24579,24580,24632,24663,24664,24709,24737,24763,24798,24955,25008,25157,25234,25263,25305,25306,25325,25327,25328,25358,25368,25371,25373,25398,25467,25498,25543,25553,25657,25754,25797,25822,25858,26077,26100,26166,26170,26229,26256,26400,26420,26423,26481,26544,26545,26555,26654,26670,26675,26681,26696,26715,26718,26739,26749,26821,26890,26961,26970,26984,26988,26994,27015,27018,27019,27057,27083,27119,27195,27207,27276,27459,27541,27543,27571,27697,27852,27995,28170,28184,28201,28338,28438,28492,28625,28626,28627,28634,28636,28778,28857,28980,29010,29067,29123,29146,29172,29179,29414,29534,29577,29976,30022,30096,30099,30135,30187,30323,30341,30361,30555,30569,30596,30618,30639,30742,30923,30930]]],["had",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25376]]],["have",[2,2,[[42,1,1,0,1,[[1014,1,1,0,1]]],[45,1,1,1,2,[[1063,1,1,1,2]]]],[26815,28402]]]]},{"k":"G303","v":[["*",[15,14,[[39,3,3,0,3,[[941,1,1,0,1],[948,2,2,1,3]]],[40,3,2,3,5,[[962,2,1,3,4],[963,1,1,4,5]]],[41,3,3,5,8,[[981,2,2,5,7],[982,1,1,7,8]]],[42,1,1,8,9,[[998,1,1,8,9]]],[45,2,2,9,11,[[1067,1,1,9,10],[1075,1,1,10,11]]],[65,3,3,11,14,[[1170,1,1,11,12],[1173,1,1,12,13],[1187,1,1,13,14]]]],[23564,23801,23802,24447,24494,25304,25315,25364,26101,28472,28705,30776,30827,31074]]],["+",[7,6,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,2,1,1,2,[[962,2,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[45,1,1,3,4,[[1067,1,1,3,4]]],[65,2,2,4,6,[[1170,1,1,4,5],[1187,1,1,5,6]]]],[23564,24447,25364,28472,30776,31074]]],["apiece",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[42,1,1,1,2,[[998,1,1,1,2]]]],[25304,26101]]],["by",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[25315,28705]]],["in",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30827]]],["man",[2,2,[[39,2,2,0,2,[[948,2,2,0,2]]]],[23801,23802]]],["through",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24494]]]]},{"k":"G304","v":[["stairs",[2,2,[[43,2,2,0,2,[[1038,2,2,0,2]]]],[27699,27704]]]]},{"k":"G305","v":[["*",[81,77,[[39,8,8,0,8,[[931,1,1,0,1],[933,1,1,1,2],[941,1,1,2,3],[942,1,1,3,4],[943,1,1,4,5],[945,1,1,5,6],[948,2,2,6,8]]],[40,8,8,8,16,[[957,1,1,8,9],[959,1,1,9,10],[960,3,3,10,13],[962,1,1,13,14],[966,2,2,14,16]]],[41,9,9,16,25,[[974,2,2,16,18],[977,1,1,18,19],[981,1,1,19,20],[990,2,2,20,22],[991,2,2,22,24],[996,1,1,24,25]]],[42,17,14,25,39,[[997,1,1,25,26],[998,1,1,26,27],[999,1,1,27,28],[1001,1,1,28,29],[1002,1,1,29,30],[1003,5,3,30,33],[1006,1,1,33,34],[1007,1,1,34,35],[1008,1,1,35,36],[1016,2,1,36,37],[1017,2,2,37,39]]],[43,19,19,39,58,[[1018,1,1,39,40],[1019,1,1,40,41],[1020,1,1,41,42],[1024,1,1,42,43],[1025,2,2,43,45],[1027,2,2,45,47],[1028,1,1,47,48],[1032,1,1,48,49],[1035,1,1,49,50],[1037,1,1,50,51],[1038,4,4,51,55],[1041,1,1,55,56],[1042,2,2,56,58]]],[44,1,1,58,59,[[1055,1,1,58,59]]],[45,1,1,59,60,[[1063,1,1,59,60]]],[47,2,2,60,62,[[1092,2,2,60,62]]],[48,3,3,62,65,[[1100,3,3,62,65]]],[65,13,12,65,77,[[1170,1,1,65,66],[1173,1,1,66,67],[1174,1,1,67,68],[1175,1,1,68,69],[1177,3,2,69,71],[1179,2,2,71,73],[1180,1,1,73,74],[1183,1,1,74,75],[1185,1,1,75,76],[1186,1,1,76,77]]]],[23208,23235,23546,23620,23662,23727,23809,23810,24225,24301,24330,24331,24355,24458,24620,24621,24977,25015,25126,25329,25698,25719,25735,25759,26029,26095,26108,26133,26211,26319,26336,26338,26342,26482,26578,26600,26884,26901,26909,26936,26983,26997,27139,27207,27215,27263,27268,27309,27444,27579,27637,27668,27676,27679,27695,27780,27797,27805,28194,28403,29082,29083,29280,29281,29282,30769,30812,30831,30842,30879,30884,30909,30919,30937,30983,31020,31047]]],["+",[4,3,[[42,4,3,0,3,[[1003,3,2,0,2],[1007,1,1,2,3]]]],[26336,26338,26578]]],["again",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27637]]],["arise",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26029]]],["arose",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30842]]],["ascend",[3,3,[[42,1,1,0,1,[[1016,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]],[65,1,1,2,3,[[1183,1,1,2,3]]]],[26884,28194,30983]]],["ascended",[4,4,[[42,1,1,0,1,[[1016,1,1,0,1]]],[43,2,2,1,3,[[1019,1,1,1,2],[1042,1,1,2,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]]],[26884,26983,27797,29281]]],["ascendeth",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30879]]],["ascending",[2,2,[[42,1,1,0,1,[[997,1,1,0,1]]],[65,1,1,1,2,[[1173,1,1,1,2]]]],[26095,30812]]],["came",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1038,1,1,1,2]]]],[27139,27695]]],["entered",[2,2,[[42,1,1,0,1,[[1017,1,1,0,1]]],[45,1,1,1,2,[[1063,1,1,1,2]]]],[26901,28403]]],["up",[59,58,[[39,8,8,0,8,[[931,1,1,0,1],[933,1,1,1,2],[941,1,1,2,3],[942,1,1,3,4],[943,1,1,4,5],[945,1,1,5,6],[948,2,2,6,8]]],[40,8,8,8,16,[[957,1,1,8,9],[959,1,1,9,10],[960,3,3,10,13],[962,1,1,13,14],[966,2,2,14,16]]],[41,7,7,16,23,[[974,2,2,16,18],[981,1,1,18,19],[990,2,2,19,21],[991,2,2,21,23]]],[42,9,9,23,32,[[998,1,1,23,24],[999,1,1,24,25],[1001,1,1,25,26],[1002,1,1,26,27],[1003,2,2,27,29],[1006,1,1,29,30],[1008,1,1,30,31],[1017,1,1,31,32]]],[43,14,14,32,46,[[1018,1,1,32,33],[1020,1,1,33,34],[1025,2,2,34,36],[1027,2,2,36,38],[1028,1,1,38,39],[1032,1,1,39,40],[1035,1,1,40,41],[1038,3,3,41,44],[1041,1,1,44,45],[1042,1,1,45,46]]],[47,2,2,46,48,[[1092,2,2,46,48]]],[48,2,2,48,50,[[1100,2,2,48,50]]],[65,9,8,50,58,[[1170,1,1,50,51],[1174,1,1,51,52],[1177,2,1,52,53],[1179,2,2,53,55],[1180,1,1,55,56],[1185,1,1,56,57],[1186,1,1,57,58]]]],[23208,23235,23546,23620,23662,23727,23809,23810,24225,24301,24330,24331,24355,24458,24620,24621,24977,25015,25329,25698,25719,25735,25759,26108,26133,26211,26319,26338,26342,26482,26600,26909,26936,26997,27207,27215,27263,27268,27309,27444,27579,27668,27676,27679,27780,27805,29082,29083,29280,29282,30769,30831,30884,30909,30919,30937,31020,31047]]],["went",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25126]]]]},{"k":"G306","v":[["deferred",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27791]]]]},{"k":"G307","v":[["drew",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23587]]]]},{"k":"G308","v":[["*",[26,24,[[39,3,3,0,3,[[939,1,1,0,1],[942,1,1,1,2],[948,1,1,2,3]]],[40,7,7,3,10,[[962,1,1,3,4],[963,1,1,4,5],[964,2,2,5,7],[966,2,2,7,9],[972,1,1,9,10]]],[41,7,7,10,17,[[979,1,1,10,11],[981,1,1,11,12],[990,3,3,12,15],[991,1,1,15,16],[993,1,1,16,17]]],[42,4,3,17,20,[[1005,4,3,17,20]]],[43,5,4,20,24,[[1026,3,3,20,23],[1039,2,1,23,24]]]],[23464,23616,23826,24448,24497,24524,24525,24639,24640,24877,25217,25317,25729,25730,25731,25736,25827,26451,26455,26458,27228,27233,27234,27717]]],["+",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26455]]],["looked",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24877]]],["see",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25217]]],["sight",[14,13,[[39,2,2,0,2,[[939,1,1,0,1],[948,1,1,1,2]]],[40,2,2,2,4,[[966,2,2,2,4]]],[41,3,3,4,7,[[990,3,3,4,7]]],[42,3,2,7,9,[[1005,3,2,7,9]]],[43,4,4,9,13,[[1026,3,3,9,12],[1039,1,1,12,13]]]],[23464,23826,24639,24640,25729,25730,25731,26451,26458,27228,27233,27234,27717]]],["up",[9,9,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,4,4,1,5,[[962,1,1,1,2],[963,1,1,2,3],[964,2,2,3,5]]],[41,3,3,5,8,[[981,1,1,5,6],[991,1,1,6,7],[993,1,1,7,8]]],[43,1,1,8,9,[[1039,1,1,8,9]]]],[23616,24448,24497,24524,24525,25317,25736,25827,27717]]]]},{"k":"G309","v":[["sight",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25081]]]]},{"k":"G310","v":[["*",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]]],[24175,24834,25339]]],["aloud",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24834]]],["cried",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24175]]],["out",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25339]]]]},{"k":"G311","v":[["delay",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27813]]]]},{"k":"G312","v":[["*",[18,18,[[40,2,2,0,2,[[961,2,2,0,2]]],[42,6,6,2,8,[[1000,1,1,2,3],[1001,1,1,3,4],[1012,4,4,4,8]]],[43,6,6,8,14,[[1031,1,1,8,9],[1032,1,1,9,10],[1033,1,1,10,11],[1036,1,1,11,12],[1037,2,2,12,14]]],[44,1,1,14,15,[[1060,1,1,14,15]]],[46,1,1,15,16,[[1084,1,1,15,16]]],[59,1,1,16,17,[[1151,1,1,16,17]]],[61,1,1,17,18,[[1159,1,1,17,18]]]],[24378,24383,26181,26225,26739,26740,26741,26751,27441,27446,27521,27603,27646,27653,28324,28923,30386,30545]]],["declare",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[61,1,1,1,2,[[1159,1,1,1,2]]]],[27653,30545]]],["declared",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27446]]],["rehearsed",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27441]]],["reported",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30386]]],["shew",[4,4,[[42,4,4,0,4,[[1012,4,4,0,4]]]],[26739,26740,26741,26751]]],["shewed",[2,2,[[43,2,2,0,2,[[1036,1,1,0,1],[1037,1,1,1,2]]]],[27603,27646]]],["spoken",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28324]]],["tell",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]]],[24383,26181]]],["told",[4,4,[[40,1,1,0,1,[[961,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[43,1,1,2,3,[[1033,1,1,2,3]]],[46,1,1,3,4,[[1084,1,1,3,4]]]],[24378,26225,27521,28923]]]]},{"k":"G313","v":[["*",[2,2,[[59,2,2,0,2,[[1151,2,2,0,2]]]],[30377,30397]]],["+",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30377]]],["again",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30397]]]]},{"k":"G314","v":[["*",[33,30,[[39,7,7,0,7,[[940,2,2,0,2],[947,1,1,2,3],[949,2,2,3,5],[950,1,1,5,6],[952,1,1,6,7]]],[40,4,4,7,11,[[958,1,1,7,8],[968,2,2,8,10],[969,1,1,10,11]]],[41,3,3,11,14,[[976,1,1,11,12],[978,1,1,12,13],[982,1,1,13,14]]],[42,1,1,14,15,[[1015,1,1,14,15]]],[43,8,7,15,22,[[1025,4,3,15,18],[1030,1,1,18,19],[1032,2,2,19,21],[1040,1,1,21,22]]],[46,3,3,22,25,[[1078,1,1,22,23],[1080,2,2,23,25]]],[48,1,1,25,26,[[1099,1,1,25,26]]],[50,3,1,26,27,[[1110,3,1,26,27]]],[51,1,1,27,28,[[1115,1,1,27,28]]],[65,2,2,28,30,[[1167,1,1,28,29],[1171,1,1,29,30]]]],[23492,23494,23766,23842,23868,23903,23972,24285,24683,24699,24731,25079,25149,25389,26845,27204,27206,27208,27389,27463,27473,27768,28813,28843,28856,29255,29558,29648,30700,30783]]],["+",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25149]]],["read",[27,25,[[39,6,6,0,6,[[940,2,2,0,2],[947,1,1,2,3],[949,2,2,3,5],[950,1,1,5,6]]],[40,3,3,6,9,[[958,1,1,6,7],[968,2,2,7,9]]],[41,1,1,9,10,[[976,1,1,9,10]]],[42,1,1,10,11,[[1015,1,1,10,11]]],[43,7,7,11,18,[[1025,3,3,11,14],[1030,1,1,14,15],[1032,2,2,15,17],[1040,1,1,17,18]]],[46,3,3,18,21,[[1078,1,1,18,19],[1080,2,2,19,21]]],[48,1,1,21,22,[[1099,1,1,21,22]]],[50,3,1,22,23,[[1110,3,1,22,23]]],[51,1,1,23,24,[[1115,1,1,23,24]]],[65,1,1,24,25,[[1171,1,1,24,25]]]],[23492,23494,23766,23842,23868,23903,24285,24683,24699,25079,26845,27204,27206,27208,27389,27463,27473,27768,28813,28843,28856,29255,29558,29648,30783]]],["readest",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]]],[25389,27206]]],["readeth",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[65,1,1,2,3,[[1167,1,1,2,3]]]],[23972,24731,30700]]]]},{"k":"G315","v":[["*",[9,9,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,1,1,2,3,[[986,1,1,2,3]]],[43,2,2,3,5,[[1043,1,1,3,4],[1045,1,1,4,5]]],[46,1,1,5,6,[[1089,1,1,5,6]]],[47,3,3,6,9,[[1092,2,2,6,8],[1096,1,1,8,9]]]],[23619,24452,25576,27834,27918,29033,29084,29095,29200]]],["compel",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25576]]],["compelled",[3,3,[[43,1,1,0,1,[[1043,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]]],[27834,29033,29084]]],["compellest",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29095]]],["constrain",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29200]]],["constrained",[3,3,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]]],[23619,24452,27918]]]]},{"k":"G316","v":[["*",[8,8,[[43,2,2,0,2,[[1027,1,1,0,1],[1030,1,1,1,2]]],[45,1,1,2,3,[[1073,1,1,2,3]]],[46,1,1,3,4,[[1086,1,1,3,4]]],[49,2,2,4,6,[[1103,1,1,4,5],[1104,1,1,5,6]]],[55,1,1,6,7,[[1131,1,1,6,7]]],[57,1,1,7,8,[[1140,1,1,7,8]]]],[27283,27408,28656,28961,29385,29416,29937,30095]]],["near",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27283]]],["necessary",[5,5,[[43,1,1,0,1,[[1030,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]],[46,1,1,2,3,[[1086,1,1,2,3]]],[49,1,1,3,4,[[1104,1,1,3,4]]],[55,1,1,4,5,[[1131,1,1,4,5]]]],[27408,28656,28961,29416,29937]]],["necessity",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30095]]],["needful",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29385]]]]},{"k":"G317","v":[["constraint",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30467]]]]},{"k":"G318","v":[["*",[18,18,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,3,3,1,4,[[986,1,1,1,2],[993,1,1,2,3],[995,1,1,3,4]]],[44,1,1,4,5,[[1058,1,1,4,5]]],[45,3,3,5,8,[[1068,2,2,5,7],[1070,1,1,7,8]]],[46,3,3,8,11,[[1083,1,1,8,9],[1086,1,1,9,10],[1089,1,1,10,11]]],[51,1,1,11,12,[[1113,1,1,11,12]]],[56,1,1,12,13,[[1132,1,1,12,13]]],[57,4,4,13,17,[[1139,2,2,13,15],[1141,2,2,15,17]]],[64,1,1,17,18,[[1166,1,1,17,18]]]],[23734,25571,25849,25952,28271,28513,28524,28556,28902,28963,29032,29597,29952,30076,30091,30121,30128,30675]]],["+",[3,3,[[39,1,1,0,1,[[946,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[23734,30091,30675]]],["distress",[3,3,[[41,1,1,0,1,[[993,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]],[51,1,1,2,3,[[1113,1,1,2,3]]]],[25849,28513,29597]]],["necessary",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30128]]],["necessities",[2,2,[[46,2,2,0,2,[[1083,1,1,0,1],[1089,1,1,1,2]]]],[28902,29032]]],["necessity",[7,7,[[41,1,1,0,1,[[995,1,1,0,1]]],[45,2,2,1,3,[[1068,1,1,1,2],[1070,1,1,2,3]]],[46,1,1,3,4,[[1086,1,1,3,4]]],[56,1,1,4,5,[[1132,1,1,4,5]]],[57,2,2,5,7,[[1139,1,1,5,6],[1141,1,1,6,7]]]],[25952,28524,28556,28963,29952,30076,30121]]],["needs",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]]],[25571,28271]]]]},{"k":"G319","v":[["known",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27129]]]]},{"k":"G320","v":[["reading",[3,3,[[43,1,1,0,1,[[1030,1,1,0,1]]],[46,1,1,1,2,[[1080,1,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]]],[27377,28855,29760]]]]},{"k":"G321","v":[["*",[24,24,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,4,4,1,5,[[974,1,1,1,2],[976,1,1,2,3],[980,1,1,3,4],[994,1,1,4,5]]],[43,17,17,5,22,[[1024,1,1,5,6],[1026,1,1,6,7],[1029,1,1,7,8],[1030,1,1,8,9],[1033,2,2,9,11],[1035,1,1,11,12],[1037,2,2,12,14],[1038,2,2,14,16],[1044,4,4,16,20],[1045,2,2,20,22]]],[44,1,1,22,23,[[1055,1,1,22,23]]],[57,1,1,23,24,[[1145,1,1,23,24]]]],[23210,24995,25068,25267,25930,27157,27255,27341,27375,27494,27517,27578,27629,27639,27665,27666,27857,27859,27867,27876,27909,27910,28195,30261]]],["+",[4,4,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,2,2,1,3,[[1029,1,1,1,2],[1044,1,1,2,3]]],[44,1,1,3,4,[[1055,1,1,3,4]]]],[25068,27341,27859,28195]]],["again",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30261]]],["brought",[3,3,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,2,2,1,3,[[1026,1,1,1,2],[1033,1,1,2,3]]]],[24995,27255,27517]]],["depart",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27867]]],["departed",[2,2,[[43,2,2,0,2,[[1045,2,2,0,2]]]],[27909,27910]]],["forth",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[25267,27666]]],["launched",[2,2,[[43,2,2,0,2,[[1038,1,1,0,1],[1044,1,1,1,2]]]],[27665,27857]]],["led",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25930]]],["loosed",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1044,1,1,1,2]]]],[27375,27876]]],["loosing",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27494]]],["offered",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27157]]],["sail",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27629]]],["sailed",[2,2,[[43,2,2,0,2,[[1035,1,1,0,1],[1037,1,1,1,2]]]],[27578,27639]]],["up",[1,1,[[39,1,1,0,1,[[932,1,1,0,1]]]],[23210]]]]},{"k":"G322","v":[["*",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]]],[25364,26947]]],["appointed",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25364]]],["shew",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26947]]]]},{"k":"G323","v":[["shewing",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24973]]]]},{"k":"G324","v":[["received",[2,2,[[43,1,1,0,1,[[1045,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[27906,30189]]]]},{"k":"G325","v":[["delivered",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27767]]]]},{"k":"G326","v":[["*",[5,5,[[41,2,2,0,2,[[987,2,2,0,2]]],[44,2,2,2,4,[[1052,1,1,2,3],[1059,1,1,3,4]]],[65,1,1,4,5,[[1186,1,1,4,5]]]],[25612,25620,28100,28289,31043]]],["+",[1,1,[[65,1,1,0,1,[[1186,1,1,0,1]]]],[31043]]],["again",[2,2,[[41,2,2,0,2,[[987,2,2,0,2]]]],[25612,25620]]],["revived",[2,2,[[44,2,2,0,2,[[1052,1,1,0,1],[1059,1,1,1,2]]]],[28100,28289]]]]},{"k":"G327","v":[["*",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1028,1,1,1,2]]]],[25017,27332]]],["seek",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27332]]],["sought",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25017]]]]},{"k":"G328","v":[["up",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30387]]]]},{"k":"G329","v":[["up",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29815]]]]},{"k":"G330","v":[["again",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29452]]]]},{"k":"G331","v":[["*",[6,6,[[43,1,1,0,1,[[1040,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]],[45,2,2,2,4,[[1073,1,1,2,3],[1077,1,1,3,4]]],[47,2,2,4,6,[[1091,2,2,4,6]]]],[27748,28158,28637,28798,29065,29066]]],["+",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27748]]],["Anathema",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28798]]],["accursed",[4,4,[[44,1,1,0,1,[[1054,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]],[47,2,2,2,4,[[1091,2,2,2,4]]]],[28158,28637,29065,29066]]]]},{"k":"G332","v":[["*",[4,4,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,3,3,1,4,[[1040,3,3,1,4]]]],[24825,27746,27748,27755]]],["+",[3,3,[[43,3,3,0,3,[[1040,3,3,0,3]]]],[27746,27748,27755]]],["curse",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24825]]]]},{"k":"G333","v":[["*",[2,2,[[43,1,1,0,1,[[1034,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[27546,30248]]],["beheld",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27546]]],["considering",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30248]]]]},{"k":"G334","v":[["gifts",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25831]]]]},{"k":"G335","v":[["importunity",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25413]]]]},{"k":"G336","v":[["death",[2,2,[[43,2,2,0,2,[[1025,1,1,0,1],[1039,1,1,1,2]]]],[27177,27724]]]]},{"k":"G337","v":[["*",[23,22,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,2,2,1,3,[[994,1,1,1,2],[995,1,1,2,3]]],[43,19,18,3,21,[[1019,1,1,3,4],[1022,2,2,4,6],[1024,3,2,6,8],[1026,3,3,8,11],[1027,1,1,11,12],[1029,1,1,12,13],[1030,1,1,13,14],[1033,1,1,14,15],[1039,1,1,15,16],[1040,3,3,16,19],[1042,1,1,19,20],[1043,1,1,20,21]]],[57,1,1,21,22,[[1142,1,1,21,22]]]],[23185,25866,25967,26972,27092,27095,27137,27144,27239,27240,27245,27298,27339,27390,27510,27724,27749,27755,27761,27799,27833,30142]]],["+",[2,2,[[43,2,2,0,2,[[1024,2,2,0,2]]]],[27137,27144]]],["away",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30142]]],["death",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]]],[25967,27833]]],["kill",[6,6,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,5,5,1,6,[[1024,1,1,1,2],[1026,2,2,2,4],[1040,1,1,4,5],[1042,1,1,5,6]]]],[25866,27144,27239,27240,27749,27799]]],["killed",[4,4,[[43,4,4,0,4,[[1029,1,1,0,1],[1033,1,1,1,2],[1040,2,2,2,4]]]],[27339,27510,27755,27761]]],["slain",[3,3,[[43,3,3,0,3,[[1019,1,1,0,1],[1022,1,1,1,2],[1030,1,1,2,3]]]],[26972,27095,27390]]],["slay",[2,2,[[43,2,2,0,2,[[1022,1,1,0,1],[1026,1,1,1,2]]]],[27092,27245]]],["slew",[3,3,[[39,1,1,0,1,[[930,1,1,0,1]]],[43,2,2,1,3,[[1027,1,1,1,2],[1039,1,1,2,3]]]],[23185,27298,27724]]]]},{"k":"G338","v":[["*",[2,2,[[39,2,2,0,2,[[940,2,2,0,2]]]],[23494,23496]]],["blameless",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23494]]],["guiltless",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23496]]]]},{"k":"G339","v":[["up",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[25210,27256]]]]},{"k":"G340","v":[["renew",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30050]]]]},{"k":"G341","v":[["renewed",[2,2,[[46,1,1,0,1,[[1081,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[28875,29527]]]]},{"k":"G342","v":[["renewing",[2,2,[[44,1,1,0,1,[[1057,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[28247,29928]]]]},{"k":"G343","v":[["*",[2,2,[[46,2,2,0,2,[[1080,2,2,0,2]]]],[28855,28859]]],["+",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28855]]],["open",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28859]]]]},{"k":"G344","v":[["*",[4,4,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[43,1,1,2,3,[[1035,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[23181,25369,27578,30187]]],["+",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25369]]],["return",[2,2,[[39,1,1,0,1,[[930,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]]],[23181,27578]]],["returned",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30187]]]]},{"k":"G345","v":[["*",[14,13,[[39,5,5,0,5,[[937,1,1,0,1],[950,2,2,1,3],[954,2,2,3,5]]],[40,3,3,5,8,[[961,1,1,5,6],[970,1,1,6,7],[972,1,1,7,8]]],[41,3,2,8,10,[[979,1,1,8,9],[994,2,1,9,10]]],[42,3,3,10,13,[[1002,1,1,10,11],[1009,2,2,11,13]]]],[23389,23882,23883,24061,24074,24404,24772,24887,25232,25891,26268,26653,26658]]],["down",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]]],[24074,26268]]],["guests",[2,2,[[39,2,2,0,2,[[950,2,2,0,2]]]],[23882,23883]]],["leaning",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26653]]],["lying",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24404]]],["meat",[5,4,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[972,1,1,1,2]]],[41,3,2,2,4,[[979,1,1,2,3],[994,2,1,3,4]]]],[23389,24887,25232,25891]]],["sat",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24061,24772]]],["table",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26658]]]]},{"k":"G346","v":[["*",[2,2,[[44,1,1,0,1,[[1058,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]]],[28275,29216]]],["comprehended",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28275]]],["one",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29216]]]]},{"k":"G347","v":[["*",[8,8,[[39,2,2,0,2,[[936,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[41,5,5,3,8,[[974,1,1,3,4],[979,1,1,4,5],[981,1,1,5,6],[984,1,1,6,7],[985,1,1,7,8]]]],[23356,23616,24446,24980,25231,25316,25496,25547]]],["+",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24446]]],["down",[4,4,[[39,2,2,0,2,[[936,1,1,0,1],[942,1,1,1,2]]],[41,2,2,2,4,[[981,1,1,2,3],[985,1,1,3,4]]]],[23356,23616,25316,25547]]],["laid",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24980]]],["meat",[2,2,[[41,2,2,0,2,[[979,1,1,0,1],[984,1,1,1,2]]]],[25231,25496]]]]},{"k":"G348","v":[["hinder",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29169]]]]},{"k":"G349","v":[["out",[5,5,[[40,2,2,0,2,[[957,1,1,0,1],[962,1,1,1,2]]],[41,3,3,2,5,[[976,1,1,2,3],[980,1,1,3,4],[995,1,1,4,5]]]],[24238,24456,25096,25273,25953]]]]},{"k":"G350","v":[["*",[16,14,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,5,5,1,6,[[1021,1,1,1,2],[1029,1,1,2,3],[1034,1,1,3,4],[1041,1,1,4,5],[1045,1,1,5,6]]],[45,10,8,6,14,[[1063,3,2,6,8],[1065,3,2,8,10],[1070,1,1,10,11],[1071,2,2,11,13],[1075,1,1,13,14]]]],[25949,27031,27356,27534,27777,27917,28408,28409,28436,28437,28543,28592,28594,28702]]],["+",[2,2,[[45,2,2,0,2,[[1071,2,2,0,2]]]],[28592,28594]]],["discerned",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28408]]],["examine",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28543]]],["examined",[4,4,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,3,3,1,4,[[1021,1,1,1,2],[1029,1,1,2,3],[1045,1,1,3,4]]]],[25949,27031,27356,27917]]],["examining",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27777]]],["judge",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28436]]],["judged",[3,3,[[45,3,3,0,3,[[1063,1,1,0,1],[1065,1,1,1,2],[1075,1,1,2,3]]]],[28409,28436,28702]]],["judgeth",[2,2,[[45,2,2,0,2,[[1063,1,1,0,1],[1065,1,1,1,2]]]],[28409,28437]]],["searched",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27534]]]]},{"k":"G351","v":[["examination",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27822]]]]},{"k":"G352","v":[["up",[4,4,[[41,2,2,0,2,[[985,1,1,0,1],[993,1,1,1,2]]],[42,2,2,2,4,[[1004,2,2,2,4]]]],[25529,25854,26388,26391]]]]},{"k":"G353","v":[["*",[13,13,[[40,1,1,0,1,[[972,1,1,0,1]]],[43,8,8,1,9,[[1018,3,3,1,4],[1024,1,1,4,5],[1027,1,1,5,6],[1037,2,2,6,8],[1040,1,1,8,9]]],[48,2,2,9,11,[[1102,2,2,9,11]]],[53,1,1,11,12,[[1121,1,1,11,12]]],[54,1,1,12,13,[[1128,1,1,12,13]]]],[24892,26925,26934,26945,27159,27275,27639,27640,27765,29350,29353,29747,29881]]],["+",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27640]]],["Take",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29881]]],["in",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27639]]],["taking",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29353]]],["took",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27765]]],["unto",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29350]]],["up",[7,7,[[40,1,1,0,1,[[972,1,1,0,1]]],[43,5,5,1,6,[[1018,3,3,1,4],[1024,1,1,4,5],[1027,1,1,5,6]]],[53,1,1,6,7,[[1121,1,1,6,7]]]],[24892,26925,26934,26945,27159,27275,29747]]]]},{"k":"G354","v":[["up",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25352]]]]},{"k":"G355","v":[["*",[3,3,[[41,1,1,0,1,[[981,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]]],[25355,29177,29669]]],["consume",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]]],[25355,29669]]],["consumed",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29177]]]]},{"k":"G356","v":[["proportion",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28251]]]]},{"k":"G357","v":[["consider",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30215]]]]},{"k":"G358","v":[["+",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24588]]]]},{"k":"G359","v":[["departure",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29876]]]]},{"k":"G360","v":[["*",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[25495,29384]]],["depart",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29384]]],["return",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25495]]]]},{"k":"G361","v":[["sin",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26388]]]]},{"k":"G362","v":[["for",[1,1,[[51,1,1,0,1,[[1111,1,1,0,1]]]],[29570]]]]},{"k":"G363","v":[["*",[6,6,[[40,2,2,0,2,[[967,1,1,0,1],[970,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[46,1,1,3,4,[[1084,1,1,3,4]]],[54,1,1,4,5,[[1125,1,1,4,5]]],[57,1,1,5,6,[[1142,1,1,5,6]]]],[24661,24826,28450,28931,29815,30165]]],["+",[2,2,[[45,1,1,0,1,[[1065,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]]],[28450,29815]]],["mind",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24826]]],["remembereth",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28931]]],["remembrance",[2,2,[[40,1,1,0,1,[[967,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[24661,30165]]]]},{"k":"G364","v":[["*",[4,4,[[41,1,1,0,1,[[994,1,1,0,1]]],[45,2,2,1,3,[[1072,2,2,1,3]]],[57,1,1,3,4,[[1142,1,1,3,4]]]],[25883,28624,28625,30136]]],["again",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30136]]],["remembrance",[3,3,[[41,1,1,0,1,[[994,1,1,0,1]]],[45,2,2,1,3,[[1072,2,2,1,3]]]],[25883,28624,28625]]]]},{"k":"G365","v":[["renewed",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29295]]]]},{"k":"G366","v":[["themselves",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29853]]]]},{"k":"G367","v":[["Ananias",[11,10,[[43,11,10,0,10,[[1022,3,3,0,3],[1026,5,4,3,7],[1039,1,1,7,8],[1040,1,1,8,9],[1041,1,1,9,10]]]],[27060,27062,27064,27226,27228,27229,27233,27716,27736,27770]]]]},{"k":"G368","v":[["+",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27621]]]]},{"k":"G369","v":[["gainsaying",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27288]]]]},{"k":"G370","v":[["unworthy",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28469]]]]},{"k":"G371","v":[["unworthily",[2,2,[[45,2,2,0,2,[[1072,2,2,0,2]]]],[28627,28629]]]]},{"k":"G372","v":[["*",[5,5,[[39,2,2,0,2,[[939,1,1,0,1],[940,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[65,2,2,3,5,[[1170,1,1,3,4],[1180,1,1,4,5]]]],[23488,23532,25429,30776,30937]]],["+",[1,1,[[65,1,1,0,1,[[1170,1,1,0,1]]]],[30776]]],["rest",[4,4,[[39,2,2,0,2,[[939,1,1,0,1],[940,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[65,1,1,3,4,[[1180,1,1,3,4]]]],[23488,23532,25429,30937]]]]},{"k":"G373","v":[["*",[12,12,[[39,2,2,0,2,[[939,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[962,1,1,2,3],[970,1,1,3,4]]],[41,1,1,4,5,[[984,1,1,4,5]]],[45,1,1,5,6,[[1077,1,1,5,6]]],[46,1,1,6,7,[[1084,1,1,6,7]]],[56,2,2,7,9,[[1132,2,2,7,9]]],[59,1,1,9,10,[[1154,1,1,9,10]]],[65,2,2,10,12,[[1172,1,1,10,11],[1180,1,1,11,12]]]],[23487,24099,24438,24795,25478,28794,28929,29945,29958,30460,30804,30939]]],["+",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23487]]],["ease",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25478]]],["refresh",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29958]]],["refreshed",[3,3,[[45,1,1,0,1,[[1077,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]]],[28794,28929,29945]]],["rest",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[970,1,1,2,3]]],[65,2,2,3,5,[[1172,1,1,3,4],[1180,1,1,4,5]]]],[24099,24438,24795,30804,30939]]],["resteth",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30460]]]]},{"k":"G374","v":[["persuadeth",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27570]]]]},{"k":"G375","v":[["*",[4,4,[[41,3,3,0,3,[[995,3,3,0,3]]],[56,1,1,3,4,[[1132,1,1,3,4]]]],[25942,25946,25950,29950]]],["+",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25946]]],["again",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29950]]],["sent",[2,2,[[41,2,2,0,2,[[995,2,2,0,2]]]],[25942,25950]]]]},{"k":"G376","v":[["maimed",[2,2,[[41,2,2,0,2,[[986,2,2,0,2]]]],[25566,25574]]]]},{"k":"G377","v":[["*",[11,10,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[964,1,1,2,3]]],[41,4,4,3,7,[[983,1,1,3,4],[986,1,1,4,5],[989,1,1,5,6],[994,1,1,6,7]]],[42,4,3,7,10,[[1002,2,1,7,8],[1009,1,1,8,9],[1017,1,1,9,10]]]],[23668,24447,24506,25442,25563,25658,25878,26267,26642,26918]]],["down",[8,7,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[964,1,1,2,3]]],[41,2,2,3,5,[[986,1,1,3,4],[994,1,1,4,5]]],[42,3,2,5,7,[[1002,2,1,5,6],[1009,1,1,6,7]]]],[23668,24447,24506,25563,25878,26267,26642]]],["leaned",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26918]]],["meat",[2,2,[[41,2,2,0,2,[[983,1,1,0,1],[989,1,1,1,2]]]],[25442,25658]]]]},{"k":"G378","v":[["*",[6,6,[[39,1,1,0,1,[[941,1,1,0,1]]],[45,2,2,1,3,[[1075,1,1,1,2],[1077,1,1,2,3]]],[47,1,1,3,4,[[1096,1,1,3,4]]],[49,1,1,4,5,[[1104,1,1,4,5]]],[51,1,1,5,6,[[1112,1,1,5,6]]]],[23553,28694,28793,29190,29421,29586]]],["fulfil",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29190]]],["fulfilled",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23553]]],["occupieth",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28694]]],["supplied",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28793]]],["supply",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29421]]],["up",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29586]]]]},{"k":"G379","v":[["*",[2,2,[[44,2,2,0,2,[[1046,1,1,0,1],[1047,1,1,1,2]]]],[27950,27963]]],["excuse",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27950]]],["inexcusable",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27963]]]]},{"k":"G380","v":[["opened",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25080]]]]},{"k":"G381","v":[["*",[3,3,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]],[58,1,1,2,3,[[1148,1,1,2,3]]]],[25508,27901,30324]]],["kindled",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]]],[25508,27901]]],["kindleth",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30324]]]]},{"k":"G382","v":[["innumerable",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30184]]]]},{"k":"G383","v":[["*",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24837,25940]]],["moved",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24837]]],["up",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25940]]]]},{"k":"G384","v":[["subverting",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27466]]]]},{"k":"G385","v":[["*",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[43,1,1,1,2,[[1028,1,1,1,2]]]],[25558,27317]]],["+",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25558]]],["up",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27317]]]]},{"k":"G386","v":[["*",[42,40,[[39,4,4,0,4,[[950,4,4,0,4]]],[40,2,2,4,6,[[968,2,2,4,6]]],[41,6,6,6,12,[[974,1,1,6,7],[986,1,1,7,8],[992,4,4,8,12]]],[42,4,3,12,15,[[1001,2,1,12,13],[1007,2,2,13,15]]],[43,11,11,15,26,[[1018,1,1,15,16],[1019,1,1,16,17],[1021,2,2,17,19],[1034,2,2,19,21],[1040,2,2,21,23],[1041,2,2,23,25],[1043,1,1,25,26]]],[44,2,2,26,28,[[1046,1,1,26,27],[1051,1,1,27,28]]],[45,4,4,28,32,[[1076,4,4,28,32]]],[49,1,1,32,33,[[1105,1,1,32,33]]],[54,1,1,33,34,[[1126,1,1,33,34]]],[57,3,2,34,36,[[1138,1,1,34,35],[1143,2,1,35,36]]],[59,2,2,36,38,[[1151,1,1,36,37],[1153,1,1,37,38]]],[65,2,2,38,40,[[1186,2,2,38,40]]]],[23895,23900,23902,23903,24691,24696,25007,25567,25806,25812,25814,25815,26239,26547,26548,26945,26980,27024,27055,27541,27555,27740,27742,27784,27790,27846,27934,28073,28730,28731,28739,28760,29431,29845,30046,30207,30377,30445,31043,31044]]],["+",[2,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[27846,30207]]],["again",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25007]]],["resurrection",[39,38,[[39,4,4,0,4,[[950,4,4,0,4]]],[40,2,2,4,6,[[968,2,2,4,6]]],[41,5,5,6,11,[[986,1,1,6,7],[992,4,4,7,11]]],[42,4,3,11,14,[[1001,2,1,11,12],[1007,2,2,12,14]]],[43,10,10,14,24,[[1018,1,1,14,15],[1019,1,1,15,16],[1021,2,2,16,18],[1034,2,2,18,20],[1040,2,2,20,22],[1041,2,2,22,24]]],[44,2,2,24,26,[[1046,1,1,24,25],[1051,1,1,25,26]]],[45,4,4,26,30,[[1076,4,4,26,30]]],[49,1,1,30,31,[[1105,1,1,30,31]]],[54,1,1,31,32,[[1126,1,1,31,32]]],[57,2,2,32,34,[[1138,1,1,32,33],[1143,1,1,33,34]]],[59,2,2,34,36,[[1151,1,1,34,35],[1153,1,1,35,36]]],[65,2,2,36,38,[[1186,2,2,36,38]]]],[23895,23900,23902,23903,24691,24696,25567,25806,25812,25814,25815,26239,26547,26548,26945,26980,27024,27055,27541,27555,27740,27742,27784,27790,27934,28073,28730,28731,28739,28760,29431,29845,30046,30207,30377,30445,31043,31044]]]]},{"k":"G387","v":[["*",[3,3,[[43,2,2,0,2,[[1034,1,1,0,1],[1038,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]]],[27529,27702,29174]]],["+",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27529]]],["trouble",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29174]]],["uproar",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27702]]]]},{"k":"G388","v":[["+",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30050]]]]},{"k":"G389","v":[["deeply",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24512]]]]},{"k":"G390","v":[["*",[11,11,[[39,1,1,0,1,[[945,1,1,0,1]]],[42,1,1,1,2,[[998,1,1,1,2]]],[43,2,2,2,4,[[1022,1,1,2,3],[1032,1,1,3,4]]],[46,1,1,4,5,[[1078,1,1,4,5]]],[48,1,1,5,6,[[1098,1,1,5,6]]],[53,1,1,6,7,[[1121,1,1,6,7]]],[57,2,2,7,9,[[1142,1,1,7,8],[1145,1,1,8,9]]],[59,1,1,9,10,[[1151,1,1,9,10]]],[60,1,1,10,11,[[1157,1,1,10,11]]]],[23722,26110,27081,27458,28812,29232,29746,30166,30259,30391,30518]]],["+",[2,2,[[57,2,2,0,2,[[1142,1,1,0,1],[1145,1,1,1,2]]]],[30166,30259]]],["abode",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23722]]],["conversation",[2,2,[[46,1,1,0,1,[[1078,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]]],[28812,29232]]],["live",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30518]]],["overthrew",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26110]]],["pass",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30391]]],["return",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27458]]],["returned",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27081]]],["thyself",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29746]]]]},{"k":"G391","v":[["*",[13,13,[[47,1,1,0,1,[[1091,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]],[58,1,1,4,5,[[1148,1,1,4,5]]],[59,6,6,5,11,[[1151,2,2,5,7],[1152,1,1,7,8],[1153,3,3,8,11]]],[60,2,2,11,13,[[1157,1,1,11,12],[1158,1,1,12,13]]]],[29070,29294,29759,30248,30332,30389,30392,30411,30425,30426,30440,30507,30533]]],["+",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30507]]],["conversation",[12,12,[[47,1,1,0,1,[[1091,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]],[58,1,1,4,5,[[1148,1,1,4,5]]],[59,6,6,5,11,[[1151,2,2,5,7],[1152,1,1,7,8],[1153,3,3,8,11]]],[60,1,1,11,12,[[1158,1,1,11,12]]]],[29070,29294,29759,30248,30332,30389,30392,30411,30425,30426,30440,30533]]]]},{"k":"G392","v":[["order",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24894]]]]},{"k":"G393","v":[["*",[9,9,[[39,3,3,0,3,[[932,1,1,0,1],[933,1,1,1,2],[941,1,1,2,3]]],[40,2,2,3,5,[[960,1,1,3,4],[972,1,1,4,5]]],[41,1,1,5,6,[[984,1,1,5,6]]],[57,1,1,6,7,[[1139,1,1,6,7]]],[58,1,1,7,8,[[1146,1,1,7,8]]],[60,1,1,8,9,[[1156,1,1,8,9]]]],[23225,23279,23545,24329,24875,25513,30078,30277,30498]]],["arise",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30498]]],["rise",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23279,25513]]],["risen",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30277]]],["rising",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24875]]],["sprang",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30078]]],["up",[3,3,[[39,2,2,0,2,[[932,1,1,0,1],[941,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]]],[23225,23545,24329]]]]},{"k":"G394","v":[["*",[2,2,[[43,1,1,0,1,[[1042,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]]],[27810,29083]]],["communicated",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29083]]],["declared",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27810]]]]},{"k":"G395","v":[["*",[10,10,[[39,5,5,0,5,[[930,3,3,0,3],[936,1,1,3,4],[952,1,1,4,5]]],[41,2,2,5,7,[[973,1,1,5,6],[985,1,1,6,7]]],[65,3,3,7,10,[[1173,1,1,7,8],[1182,1,1,8,9],[1187,1,1,9,10]]]],[23170,23171,23178,23356,23984,24971,25547,30812,30966,31066]]],["+",[2,2,[[65,2,2,0,2,[[1173,1,1,0,1],[1182,1,1,1,2]]]],[30812,30966]]],["dayspring",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24971]]],["east",[7,7,[[39,5,5,0,5,[[930,3,3,0,3],[936,1,1,3,4],[952,1,1,4,5]]],[41,1,1,5,6,[[985,1,1,5,6]]],[65,1,1,6,7,[[1187,1,1,6,7]]]],[23170,23171,23178,23356,23984,25547,31066]]]]},{"k":"G396","v":[["*",[2,2,[[54,1,1,0,1,[[1126,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[29845,29903]]],["overthrow",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29845]]],["subvert",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29903]]]]},{"k":"G397","v":[["*",[3,3,[[43,3,3,0,3,[[1024,2,2,0,2],[1039,1,1,2,3]]]],[27136,27137,27707]]],["nourished",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27137]]],["up",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1039,1,1,1,2]]]],[27136,27707]]]]},{"k":"G398","v":[["*",[2,2,[[41,1,1,0,1,[[991,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[25742,27667]]],["appear",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25742]]],["discovered",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27667]]]]},{"k":"G399","v":[["*",[10,9,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,1,1,2,3,[[996,1,1,2,3]]],[57,4,3,3,6,[[1139,2,1,3,4],[1141,1,1,4,5],[1145,1,1,5,6]]],[58,1,1,6,7,[[1147,1,1,6,7]]],[59,2,2,7,9,[[1152,2,2,7,9]]]],[23701,24540,26042,30091,30133,30256,30314,30404,30423]]],["+",[2,2,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]]],[23701,24540]]],["bare",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30423]]],["bear",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30133]]],["offer",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30256]]],["offered",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30314]]],["up",[4,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[57,2,1,1,2,[[1139,2,1,1,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]]],[26042,30091,30404]]]]},{"k":"G400","v":[["out",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24935]]]]},{"k":"G401","v":[["excess",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30450]]]]},{"k":"G402","v":[["*",[14,14,[[39,10,10,0,10,[[930,4,4,0,4],[932,1,1,4,5],[937,1,1,5,6],[940,1,1,6,7],[942,1,1,7,8],[943,1,1,8,9],[955,1,1,9,10]]],[40,1,1,10,11,[[959,1,1,10,11]]],[42,1,1,11,12,[[1002,1,1,11,12]]],[43,2,2,12,14,[[1040,1,1,12,13],[1043,1,1,13,14]]]],[23181,23182,23183,23191,23221,23403,23504,23610,23654,24134,24295,26272,27753,27854]]],["aside",[3,3,[[39,1,1,0,1,[[930,1,1,0,1]]],[43,2,2,1,3,[[1040,1,1,1,2],[1043,1,1,2,3]]]],[23191,27753,27854]]],["departed",[8,8,[[39,7,7,0,7,[[930,3,3,0,3],[932,1,1,3,4],[942,1,1,4,5],[943,1,1,5,6],[955,1,1,6,7]]],[42,1,1,7,8,[[1002,1,1,7,8]]]],[23181,23182,23183,23221,23610,23654,24134,26272]]],["place",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23403]]],["withdrew",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]]],[23504,24295]]]]},{"k":"G403","v":[["refreshing",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27015]]]]},{"k":"G404","v":[["refreshed",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29825]]]]},{"k":"G405","v":[["menstealers",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29706]]]]},{"k":"G406","v":[["Andrew",[13,12,[[39,2,2,0,2,[[932,1,1,0,1],[938,1,1,1,2]]],[40,4,4,2,6,[[957,2,2,2,4],[959,1,1,4,5],[969,1,1,5,6]]],[41,1,1,6,7,[[978,1,1,6,7]]],[42,5,4,7,11,[[997,2,2,7,9],[1002,1,1,9,10],[1008,2,1,10,11]]],[43,1,1,11,12,[[1018,1,1,11,12]]]],[23227,23419,24231,24244,24306,24720,25160,26084,26088,26265,26602,26936]]]]},{"k":"G407","v":[["men",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28789]]]]},{"k":"G408","v":[["Andronicus",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28343]]]]},{"k":"G409","v":[["manslayers",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29705]]]]},{"k":"G410","v":[["*",[5,5,[[45,1,1,0,1,[[1062,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]],[53,1,1,2,3,[[1121,1,1,2,3]]],[55,2,2,3,5,[[1129,2,2,3,5]]]],[28371,29487,29741,29898,29899]]],["blameless",[4,4,[[45,1,1,0,1,[[1062,1,1,0,1]]],[53,1,1,1,2,[[1121,1,1,1,2]]],[55,2,2,2,4,[[1129,2,2,2,4]]]],[28371,29741,29898,29899]]],["unreproveable",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29487]]]]},{"k":"G411","v":[["unspeakable",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28971]]]]},{"k":"G412","v":[["unspeakable",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30382]]]]},{"k":"G413","v":[["not",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25492]]]]},{"k":"G414","v":[["tolerable",[6,6,[[39,3,3,0,3,[[938,1,1,0,1],[939,2,2,1,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[41,2,2,4,6,[[982,2,2,4,6]]]],[23432,23481,23483,24418,25375,25377]]]]},{"k":"G415","v":[["unmerciful",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27961]]]]},{"k":"G416","v":[["wind",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30272]]]]},{"k":"G417","v":[["*",[31,29,[[39,9,9,0,9,[[935,2,2,0,2],[936,2,2,2,4],[939,1,1,4,5],[942,3,3,5,8],[952,1,1,8,9]]],[40,7,6,9,15,[[960,4,3,9,12],[962,2,2,12,14],[969,1,1,14,15]]],[41,4,4,15,19,[[979,1,1,15,16],[980,3,3,16,19]]],[42,1,1,19,20,[[1002,1,1,19,20]]],[43,4,4,20,24,[[1044,4,4,20,24]]],[48,1,1,24,25,[[1100,1,1,24,25]]],[58,1,1,25,26,[[1148,1,1,25,26]]],[64,1,1,26,27,[[1166,1,1,26,27]]],[65,3,2,27,29,[[1172,1,1,27,28],[1173,2,1,28,29]]]],[23341,23343,23371,23372,23466,23621,23627,23629,23988,24360,24362,24364,24455,24458,24744,25219,25268,25269,25270,26275,27859,27862,27869,27870,29286,30323,30684,30806,30811]]],["wind",[20,19,[[39,4,4,0,4,[[939,1,1,0,1],[942,3,3,1,4]]],[40,6,5,4,9,[[960,4,3,4,7],[962,2,2,7,9]]],[41,3,3,9,12,[[979,1,1,9,10],[980,2,2,10,12]]],[42,1,1,12,13,[[1002,1,1,12,13]]],[43,3,3,13,16,[[1044,3,3,13,16]]],[48,1,1,16,17,[[1100,1,1,16,17]]],[65,2,2,17,19,[[1172,1,1,17,18],[1173,1,1,18,19]]]],[23466,23621,23627,23629,24360,24362,24364,24455,24458,25219,25268,25269,26275,27862,27869,27870,29286,30806,30811]]],["winds",[11,11,[[39,5,5,0,5,[[935,2,2,0,2],[936,2,2,2,4],[952,1,1,4,5]]],[40,1,1,5,6,[[969,1,1,5,6]]],[41,1,1,6,7,[[980,1,1,6,7]]],[43,1,1,7,8,[[1044,1,1,7,8]]],[58,1,1,8,9,[[1148,1,1,8,9]]],[64,1,1,9,10,[[1166,1,1,9,10]]],[65,1,1,10,11,[[1173,1,1,10,11]]]],[23341,23343,23371,23372,23988,24744,25270,27859,30323,30684,30811]]]]},{"k":"G418","v":[["impossible",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25652]]]]},{"k":"G419","v":[["unsearchable",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28242]]]]},{"k":"G420","v":[["patient",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29851]]]]},{"k":"G421","v":[["*",[2,2,[[44,1,1,0,1,[[1056,1,1,0,1]]],[48,1,1,1,2,[[1099,1,1,1,2]]]],[28242,29259]]],["out",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28242]]],["unsearchable",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29259]]]]},{"k":"G422","v":[["ashamed",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29842]]]]},{"k":"G423","v":[["*",[3,3,[[53,3,3,0,3,[[1121,1,1,0,1],[1123,1,1,1,2],[1124,1,1,2,3]]]],[29733,29770,29802]]],["blameless",[2,2,[[53,2,2,0,2,[[1121,1,1,0,1],[1123,1,1,1,2]]]],[29733,29770]]],["unrebukeable",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29802]]]]},{"k":"G424","v":[["up",[3,3,[[42,1,1,0,1,[[1002,1,1,0,1]]],[47,2,2,1,3,[[1091,2,2,1,3]]]],[26260,29074,29075]]]]},{"k":"G425","v":[["*",[5,5,[[43,1,1,0,1,[[1041,1,1,0,1]]],[46,3,3,1,4,[[1079,1,1,1,2],[1084,1,1,2,3],[1085,1,1,3,4]]],[52,1,1,4,5,[[1116,1,1,4,5]]]],[27792,28837,28921,28945,29656]]],["eased",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28945]]],["liberty",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27792]]],["rest",[3,3,[[46,2,2,0,2,[[1079,1,1,0,1],[1084,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]]],[28837,28921,29656]]]]},{"k":"G426","v":[["examined",[2,2,[[43,2,2,0,2,[[1039,2,2,0,2]]]],[27728,27733]]]]},{"k":"G427","v":[["without",[3,3,[[39,1,1,0,1,[[938,1,1,0,1]]],[59,2,2,1,3,[[1153,1,1,1,2],[1154,1,1,2,3]]]],[23446,30425,30455]]]]},{"k":"G428","v":[["commodious",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27867]]]]},{"k":"G429","v":[["*",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[24989,27668]]],["+",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24989]]],["finding",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27668]]]]},{"k":"G430","v":[["*",[15,14,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[43,1,1,3,4,[[1035,1,1,3,4]]],[45,1,1,4,5,[[1065,1,1,4,5]]],[46,5,4,5,9,[[1088,5,4,5,9]]],[48,1,1,9,10,[[1100,1,1,9,10]]],[50,1,1,10,11,[[1109,1,1,10,11]]],[52,1,1,11,12,[[1116,1,1,11,12]]],[54,1,1,12,13,[[1128,1,1,12,13]]],[57,1,1,13,14,[[1145,1,1,13,14]]]],[23717,24557,25342,27571,28445,28990,28993,29008,29009,29274,29530,29653,29873,30263]]],["+",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27571]]],["Forbearing",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29530]]],["endure",[2,2,[[52,1,1,0,1,[[1116,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]]],[29653,29873]]],["forbearing",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29274]]],["suffer",[7,7,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[45,1,1,3,4,[[1065,1,1,3,4]]],[46,2,2,4,6,[[1088,2,2,4,6]]],[57,1,1,6,7,[[1145,1,1,6,7]]]],[23717,24557,25342,28445,29008,29009,30263]]],["with",[3,2,[[46,3,2,0,2,[[1088,3,2,0,2]]]],[28990,28993]]]]},{"k":"G431","v":[["son",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29552]]]]},{"k":"G432","v":[["anise",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23941]]]]},{"k":"G433","v":[["*",[3,3,[[48,1,1,0,1,[[1101,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]]],[29308,29535,29946]]],["+",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29308]]],["convenient",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29946]]],["fit",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29535]]]]},{"k":"G434","v":[["fierce",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29856]]]]},{"k":"G435","v":[["*",[214,192,[[39,8,8,0,8,[[929,2,2,0,2],[935,2,2,2,4],[940,1,1,4,5],[942,2,2,5,7],[943,1,1,7,8]]],[40,4,4,8,12,[[962,2,2,8,10],[966,2,2,10,12]]],[41,25,24,12,36,[[973,2,2,12,14],[974,1,1,14,15],[977,3,3,15,18],[979,1,1,18,19],[980,3,3,19,22],[981,2,2,22,24],[983,2,2,24,26],[986,1,1,26,27],[988,1,1,27,28],[989,1,1,28,29],[991,2,2,29,31],[994,1,1,31,32],[995,2,1,32,33],[996,3,3,33,36]]],[42,8,6,36,42,[[997,2,2,36,38],[1000,5,3,38,41],[1002,1,1,41,42]]],[43,100,98,42,140,[[1018,4,4,42,46],[1019,6,5,46,51],[1020,3,3,51,54],[1021,1,1,54,55],[1022,7,7,55,62],[1023,3,3,62,65],[1024,2,2,65,67],[1025,5,5,67,72],[1026,5,5,72,77],[1027,8,8,77,85],[1028,6,6,85,91],[1030,7,7,91,98],[1031,2,2,98,100],[1032,5,4,100,104],[1033,1,1,104,105],[1034,5,5,105,110],[1035,1,1,110,111],[1036,4,4,111,115],[1037,1,1,115,116],[1038,5,5,116,121],[1039,4,4,121,125],[1040,5,5,125,130],[1041,1,1,130,131],[1042,5,5,131,136],[1044,3,3,136,139],[1045,1,1,139,140]]],[44,9,4,140,144,[[1049,1,1,140,141],[1052,7,2,141,143],[1056,1,1,143,144]]],[45,32,20,144,164,[[1068,16,10,144,154],[1072,14,8,154,162],[1074,1,1,162,163],[1075,1,1,163,164]]],[46,1,1,164,165,[[1088,1,1,164,165]]],[47,1,1,165,166,[[1094,1,1,165,166]]],[48,7,7,166,173,[[1100,1,1,166,167],[1101,6,6,167,173]]],[50,2,2,173,175,[[1109,2,2,173,175]]],[53,5,5,175,180,[[1120,2,2,175,177],[1121,2,2,177,179],[1123,1,1,179,180]]],[55,2,2,180,182,[[1129,1,1,180,181],[1130,1,1,181,182]]],[58,6,6,182,188,[[1146,4,4,182,186],[1147,1,1,186,187],[1148,1,1,187,188]]],[59,3,3,188,191,[[1153,3,3,188,191]]],[65,1,1,191,192,[[1187,1,1,191,192]]]],[23160,23163,23340,23342,23530,23618,23632,23671,24427,24451,24590,24600,24920,24927,25009,25115,25119,25125,25215,25272,25283,25286,25315,25339,25436,25437,25577,25638,25663,25733,25738,25927,25985,25995,25998,26010,26057,26074,26172,26173,26174,26267,26933,26934,26939,26944,26954,26963,26971,26978,26986,26998,27008,27010,27026,27060,27068,27069,27073,27084,27094,27095,27104,27106,27112,27118,27142,27178,27179,27185,27188,27203,27218,27223,27228,27229,27254,27260,27264,27276,27278,27280,27281,27287,27289,27310,27318,27319,27320,27327,27331,27369,27377,27378,27383,27384,27388,27400,27422,27429,27449,27455,27464,27467,27492,27528,27535,27545,27554,27557,27581,27592,27610,27620,27622,27656,27675,27687,27690,27692,27702,27705,27707,27708,27716,27735,27740,27755,27761,27764,27774,27801,27810,27813,27819,27820,27865,27876,27880,27916,28030,28093,28094,28213,28489,28490,28491,28497,28498,28500,28501,28503,28521,28526,28603,28604,28607,28608,28609,28611,28612,28614,28676,28713,28991,29158,29285,29326,29327,29328,29329,29332,29337,29535,29536,29724,29728,29733,29743,29772,29898,29913,30274,30278,30286,30289,30295,30321,30425,30429,30431,31055]]],["+",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26933]]],["Husbands",[2,2,[[48,1,1,0,1,[[1101,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29329,29536]]],["Men",[13,13,[[43,13,13,0,13,[[1018,1,1,0,1],[1019,2,2,1,3],[1024,1,1,3,4],[1030,2,2,4,6],[1032,2,2,6,8],[1038,1,1,8,9],[1039,1,1,9,10],[1040,2,2,10,12],[1045,1,1,12,13]]]],[26939,26978,26986,27118,27378,27388,27449,27455,27692,27705,27735,27740,27916]]],["Sirs",[5,5,[[43,5,5,0,5,[[1024,1,1,0,1],[1031,1,1,1,2],[1036,1,1,2,3],[1044,2,2,3,5]]]],[27142,27429,27610,27865,27876]]],["a",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1020,1,1,1,2]]]],[26010,27010]]],["fellows",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27528]]],["husband",[38,29,[[39,2,2,0,2,[[929,2,2,0,2]]],[40,1,1,2,3,[[966,1,1,2,3]]],[41,2,2,3,5,[[974,1,1,3,4],[988,1,1,4,5]]],[42,4,3,5,8,[[1000,4,3,5,8]]],[43,2,2,8,10,[[1022,2,2,8,10]]],[44,5,2,10,12,[[1052,5,2,10,12]]],[45,15,10,12,22,[[1068,15,10,12,22]]],[46,1,1,22,23,[[1088,1,1,22,23]]],[47,1,1,23,24,[[1094,1,1,23,24]]],[48,2,2,24,26,[[1101,2,2,24,26]]],[53,1,1,26,27,[[1121,1,1,26,27]]],[55,1,1,27,28,[[1129,1,1,27,28]]],[65,1,1,28,29,[[1187,1,1,28,29]]]],[23160,23163,24600,25009,25638,26172,26173,26174,27068,27069,28093,28094,28489,28490,28491,28497,28498,28500,28501,28503,28521,28526,28991,29158,29327,29337,29733,29898,31055]]],["husbands",[10,10,[[42,1,1,0,1,[[1000,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[48,2,2,2,4,[[1101,2,2,2,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]],[53,1,1,5,6,[[1121,1,1,5,6]]],[55,1,1,6,7,[[1130,1,1,6,7]]],[59,3,3,7,10,[[1153,3,3,7,10]]]],[26174,28713,29326,29328,29535,29743,29913,30425,30429,30431]]],["man",[75,67,[[39,2,2,0,2,[[935,2,2,0,2]]],[40,2,2,2,4,[[962,1,1,2,3],[966,1,1,3,4]]],[41,12,11,4,15,[[973,2,2,4,6],[977,2,2,6,8],[980,3,3,8,11],[981,1,1,11,12],[991,2,2,12,14],[995,2,1,14,15]]],[42,2,2,15,17,[[997,2,2,15,17]]],[43,29,29,17,46,[[1019,1,1,17,18],[1020,1,1,18,19],[1022,1,1,19,20],[1023,1,1,20,21],[1025,2,2,21,23],[1026,2,2,23,25],[1027,4,4,25,29],[1028,1,1,29,30],[1030,3,3,30,33],[1031,1,1,33,34],[1033,1,1,34,35],[1034,1,1,35,36],[1035,1,1,36,37],[1038,1,1,37,38],[1039,2,2,38,40],[1040,2,2,40,42],[1041,1,1,42,43],[1042,3,3,43,46]]],[44,3,2,46,48,[[1049,1,1,46,47],[1052,2,1,47,48]]],[45,16,10,48,58,[[1068,1,1,48,49],[1072,14,8,49,57],[1074,1,1,57,58]]],[48,1,1,58,59,[[1100,1,1,58,59]]],[53,2,2,59,61,[[1120,1,1,59,60],[1123,1,1,60,61]]],[58,6,6,61,67,[[1146,4,4,61,65],[1147,1,1,65,66],[1148,1,1,66,67]]]],[23340,23342,24427,24590,24920,24927,25115,25119,25272,25283,25286,25339,25733,25738,25985,26057,26074,26971,26998,27060,27106,27185,27203,27228,27229,27260,27281,27287,27289,27331,27369,27383,27384,27422,27492,27554,27581,27675,27707,27716,27761,27764,27774,27801,27810,27813,28030,28094,28503,28603,28604,28607,28608,28609,28611,28612,28614,28676,29285,29728,29772,30274,30278,30286,30289,30295,30321]]],["man's",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27319]]],["men",[65,64,[[39,4,4,0,4,[[940,1,1,0,1],[942,2,2,1,3],[943,1,1,3,4]]],[40,1,1,4,5,[[962,1,1,4,5]]],[41,10,10,5,15,[[977,1,1,5,6],[979,1,1,6,7],[981,1,1,7,8],[983,2,2,8,10],[986,1,1,10,11],[989,1,1,11,12],[994,1,1,12,13],[996,2,2,13,15]]],[42,1,1,15,16,[[1002,1,1,15,16]]],[43,46,45,16,61,[[1018,2,2,16,18],[1019,3,3,18,21],[1020,1,1,21,22],[1021,1,1,22,23],[1022,4,4,23,27],[1023,2,2,27,29],[1025,3,3,29,32],[1026,3,3,32,35],[1027,4,4,35,39],[1028,4,4,39,43],[1030,2,2,43,45],[1032,3,2,45,47],[1034,3,3,47,50],[1036,3,3,50,53],[1037,1,1,53,54],[1038,3,3,54,57],[1039,1,1,57,58],[1040,1,1,58,59],[1042,2,2,59,61]]],[44,1,1,61,62,[[1056,1,1,61,62]]],[48,1,1,62,63,[[1101,1,1,62,63]]],[53,1,1,63,64,[[1120,1,1,63,64]]]],[23530,23618,23632,23671,24451,25125,25215,25315,25436,25437,25577,25663,25927,25995,25998,26267,26934,26944,26954,26963,26971,27008,27026,27073,27084,27094,27095,27104,27112,27178,27179,27188,27218,27223,27254,27264,27276,27278,27280,27310,27318,27320,27327,27377,27400,27464,27467,27535,27545,27557,27592,27620,27622,27656,27687,27690,27702,27708,27755,27819,27820,28213,29332,29724]]],["sirs",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27880]]]]},{"k":"G436","v":[["*",[14,12,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]],[43,2,2,2,4,[[1023,1,1,2,3],[1030,1,1,3,4]]],[44,3,2,4,6,[[1054,1,1,4,5],[1058,2,1,5,6]]],[47,1,1,6,7,[[1092,1,1,6,7]]],[48,1,1,7,8,[[1102,1,1,7,8]]],[54,3,2,8,10,[[1127,2,1,8,9],[1128,1,1,9,10]]],[58,1,1,10,11,[[1149,1,1,10,11]]],[59,1,1,11,12,[[1155,1,1,11,12]]]],[23273,25841,27111,27370,28174,28268,29092,29350,29861,29885,30344,30474]]],["Resist",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30344]]],["resist",[6,6,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]],[43,1,1,2,3,[[1023,1,1,2,3]]],[44,1,1,3,4,[[1058,1,1,3,4]]],[54,1,1,4,5,[[1127,1,1,4,5]]],[59,1,1,5,6,[[1155,1,1,5,6]]]],[23273,25841,27111,28268,29861,30474]]],["resisted",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28174]]],["resisteth",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28268]]],["withstand",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29350]]],["withstood",[4,4,[[43,1,1,0,1,[[1030,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]],[54,2,2,2,4,[[1127,1,1,2,3],[1128,1,1,3,4]]]],[27370,29092,29861,29885]]]]},{"k":"G437","v":[["thanks",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25011]]]]},{"k":"G438","v":[["flower",[4,3,[[58,2,2,0,2,[[1146,2,2,0,2]]],[59,2,1,2,3,[[1151,2,1,2,3]]]],[30276,30277,30398]]]]},{"k":"G439","v":[["coals",[2,2,[[42,2,2,0,2,[[1014,1,1,0,1],[1017,1,1,1,2]]]],[26803,26907]]]]},{"k":"G440","v":[["coals",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28265]]]]},{"k":"G441","v":[["menpleasers",[2,2,[[48,1,1,0,1,[[1102,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29343,29539]]]]},{"k":"G442","v":[["*",[7,7,[[44,1,1,0,1,[[1051,1,1,0,1]]],[45,4,4,1,5,[[1063,2,2,1,3],[1065,1,1,3,4],[1071,1,1,4,5]]],[58,1,1,5,6,[[1148,1,1,5,6]]],[59,1,1,6,7,[[1152,1,1,6,7]]]],[28087,28398,28407,28436,28580,30326,30412]]],["+",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30326]]],["man",[2,2,[[45,1,1,0,1,[[1071,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[28580,30412]]],["man's",[3,3,[[45,3,3,0,3,[[1063,2,2,0,2],[1065,1,1,2,3]]]],[28398,28407,28436]]],["men",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28087]]]]},{"k":"G443","v":[["murderer",[3,2,[[42,1,1,0,1,[[1004,1,1,0,1]]],[61,2,1,1,2,[[1161,2,1,1,2]]]],[26425,30594]]]]},{"k":"G444","v":[["*",[560,505,[[39,117,105,0,105,[[932,2,2,0,2],[933,3,3,2,5],[934,7,7,5,12],[935,2,2,12,14],[936,3,3,14,17],[937,4,4,17,21],[938,6,6,21,27],[939,3,2,27,29],[940,14,12,29,41],[941,9,9,41,50],[943,6,4,50,54],[944,7,5,54,59],[945,5,4,59,63],[946,4,4,63,67],[947,7,7,67,74],[948,3,3,74,77],[949,3,3,77,80],[950,3,3,80,83],[951,5,5,83,88],[952,6,5,88,93],[953,4,4,93,97],[954,9,6,97,103],[955,2,2,103,105]]],[40,55,48,105,153,[[957,2,2,105,107],[958,4,3,107,110],[959,4,4,110,114],[960,1,1,114,115],[961,2,2,115,117],[963,10,8,117,125],[964,7,7,125,132],[965,4,3,132,135],[966,5,5,135,140],[967,3,3,140,143],[968,2,2,143,145],[969,2,2,145,147],[970,8,5,147,152],[971,1,1,152,153]]],[41,103,92,153,245,[[973,1,1,153,154],[974,5,4,154,158],[976,2,2,158,160],[977,4,4,160,164],[978,12,10,164,174],[979,5,4,174,178],[980,3,3,178,181],[981,10,8,181,189],[982,1,1,189,190],[983,6,5,190,195],[984,8,7,195,202],[985,2,2,202,204],[986,3,3,204,207],[987,2,2,207,209],[988,4,3,209,212],[989,4,4,212,216],[990,7,7,216,223],[991,5,5,223,228],[992,3,3,228,231],[993,3,3,231,234],[994,7,6,234,240],[995,5,4,240,244],[996,1,1,244,245]]],[42,59,53,245,298,[[997,4,4,245,249],[998,3,2,249,251],[999,6,6,251,257],[1000,3,3,257,260],[1001,8,8,260,268],[1002,5,5,268,273],[1003,6,4,273,277],[1004,3,3,277,280],[1005,7,5,280,285],[1006,1,1,285,286],[1007,2,2,286,288],[1008,4,3,288,291],[1009,1,1,291,292],[1012,1,1,292,293],[1013,1,1,293,294],[1014,3,3,294,297],[1015,1,1,297,298]]],[43,46,45,298,343,[[1021,7,7,298,305],[1022,6,5,305,310],[1023,1,1,310,311],[1024,1,1,311,312],[1026,1,1,312,313],[1027,2,2,313,315],[1029,1,1,315,316],[1031,2,2,316,318],[1032,2,2,318,320],[1033,4,4,320,324],[1034,4,4,324,328],[1035,1,1,328,329],[1036,2,2,329,331],[1038,2,2,331,333],[1039,3,3,333,336],[1040,1,1,336,337],[1041,1,1,337,338],[1042,2,2,338,340],[1043,2,2,340,342],[1045,1,1,342,343]]],[44,27,25,343,368,[[1046,2,2,343,345],[1047,5,5,345,350],[1048,3,3,350,353],[1049,1,1,353,354],[1050,6,4,354,358],[1051,1,1,358,359],[1052,3,3,359,362],[1054,1,1,362,363],[1055,1,1,363,364],[1057,2,2,364,366],[1059,2,2,366,368]]],[45,30,25,368,393,[[1062,2,1,368,369],[1063,6,4,369,373],[1064,2,2,373,375],[1065,2,2,375,377],[1067,1,1,377,378],[1068,4,4,378,382],[1070,1,1,382,383],[1072,1,1,383,384],[1074,1,1,384,385],[1075,2,2,385,387],[1076,8,6,387,393]]],[46,8,8,393,401,[[1080,1,1,393,394],[1081,2,2,394,396],[1082,1,1,396,397],[1085,1,1,397,398],[1089,3,3,398,401]]],[47,15,11,401,412,[[1091,7,4,401,405],[1092,2,2,405,407],[1093,3,2,407,409],[1095,1,1,409,410],[1096,2,2,410,412]]],[48,9,9,412,421,[[1098,1,1,412,413],[1099,2,2,413,415],[1100,4,4,415,419],[1101,1,1,419,420],[1102,1,1,420,421]]],[49,3,3,421,424,[[1104,2,2,421,423],[1106,1,1,423,424]]],[50,7,5,424,429,[[1107,3,1,424,425],[1108,2,2,425,427],[1109,2,2,427,429]]],[51,5,5,429,434,[[1112,4,4,429,433],[1114,1,1,433,434]]],[52,2,2,434,436,[[1117,1,1,434,435],[1118,1,1,435,436]]],[53,10,9,436,445,[[1120,4,3,436,439],[1122,1,1,439,440],[1123,1,1,440,441],[1124,4,4,441,445]]],[54,5,5,445,450,[[1126,1,1,445,446],[1127,4,4,446,450]]],[55,5,5,450,455,[[1129,1,1,450,451],[1130,1,1,451,452],[1131,3,3,452,455]]],[57,10,8,455,463,[[1134,2,1,455,456],[1137,2,1,456,457],[1138,1,1,457,458],[1139,2,2,458,460],[1140,1,1,460,461],[1141,1,1,461,462],[1145,1,1,462,463]]],[58,7,7,463,470,[[1146,2,2,463,465],[1147,2,2,465,467],[1148,2,2,467,469],[1150,1,1,469,470]]],[59,6,6,470,476,[[1151,1,1,470,471],[1152,2,2,471,473],[1153,1,1,473,474],[1154,2,2,474,476]]],[60,4,3,476,479,[[1156,2,1,476,477],[1157,1,1,477,478],[1158,1,1,478,479]]],[61,1,1,479,480,[[1163,1,1,479,480]]],[64,1,1,480,481,[[1166,1,1,480,481]]],[65,25,24,481,505,[[1167,1,1,481,482],[1170,1,1,482,483],[1174,1,1,483,484],[1175,8,8,484,492],[1177,1,1,492,493],[1179,2,2,493,495],[1180,2,2,495,497],[1182,6,5,497,502],[1184,1,1,502,503],[1187,2,2,503,505]]]],[23213,23228,23247,23250,23253,23283,23284,23287,23296,23297,23298,23300,23325,23328,23354,23365,23372,23385,23387,23388,23411,23434,23440,23449,23450,23452,23453,23467,23478,23497,23499,23500,23501,23502,23520,23521,23524,23525,23529,23532,23534,23563,23564,23567,23570,23576,23580,23583,23584,23591,23642,23644,23651,23653,23685,23695,23698,23699,23700,23709,23712,23714,23722,23734,23738,23739,23750,23765,23767,23768,23772,23774,23788,23790,23793,23810,23820,23851,23852,23854,23874,23883,23888,23922,23923,23925,23931,23946,23984,23987,23994,23996,24001,24021,24022,24032,24039,24056,24078,24099,24118,24126,24128,24161,24186,24232,24238,24270,24287,24288,24289,24291,24293,24316,24349,24366,24372,24470,24471,24474,24478,24481,24483,24484,24486,24524,24527,24531,24533,24536,24537,24538,24547,24550,24569,24595,24597,24615,24621,24633,24642,24670,24672,24674,24687,24743,24751,24767,24775,24795,24816,24825,24865,24918,24987,24988,24998,25025,25067,25096,25117,25125,25127,25131,25151,25152,25154,25156,25168,25172,25177,25191,25194,25195,25203,25220,25226,25229,25274,25278,25280,25323,25326,25327,25331,25333,25345,25357,25359,25393,25429,25431,25435,25449,25451,25467,25468,25469,25473,25475,25495,25499,25522,25537,25555,25569,25583,25592,25599,25621,25635,25639,25673,25675,25677,25681,25690,25692,25696,25698,25699,25715,25719,25741,25743,25752,25753,25761,25783,25785,25788,25852,25853,25862,25874,25886,25912,25922,25924,25933,25939,25941,25949,25982,25998,26048,26050,26053,26095,26105,26120,26121,26124,26133,26134,26139,26147,26184,26185,26206,26215,26217,26219,26222,26225,26237,26244,26251,26267,26271,26284,26310,26319,26350,26351,26374,26379,26398,26409,26421,26441,26451,26456,26464,26470,26514,26570,26573,26603,26614,26623,26661,26747,26765,26799,26802,26814,26830,27031,27034,27035,27036,27038,27039,27044,27063,27087,27088,27094,27097,27114,27172,27249,27285,27287,27359,27425,27429,27459,27468,27500,27503,27518,27520,27548,27549,27552,27553,27570,27601,27620,27692,27703,27719,27729,27730,27743,27785,27812,27818,27854,27855,27903,27948,27953,27963,27965,27971,27978,27991,27995,27996,28019,28028,28059,28062,28065,28066,28074,28092,28113,28115,28175,28193,28262,28263,28298,28300,28388,28399,28403,28405,28408,28413,28431,28434,28442,28485,28488,28494,28510,28513,28548,28628,28666,28680,28681,28737,28739,28750,28757,28763,28765,28843,28861,28875,28888,28953,29024,29025,29026,29058,29067,29068,29069,29087,29097,29114,29117,29165,29189,29195,29244,29256,29267,29280,29286,29294,29296,29335,29344,29398,29399,29447,29493,29502,29516,29526,29540,29574,29576,29583,29585,29611,29664,29680,29717,29720,29721,29757,29787,29793,29797,29799,29804,29829,29855,29861,29866,29870,29906,29919,29925,29931,29933,29983,30031,30060,30072,30092,30094,30132,30247,30273,30285,30313,30317,30327,30328,30371,30398,30403,30414,30428,30448,30452,30500,30516,30529,30633,30676,30710,30775,30838,30844,30845,30846,30847,30850,30855,30858,30860,30885,30921,30926,30930,30940,30956,30962,30963,30972,30975,31006,31056,31070]]],["+",[14,14,[[39,5,5,0,5,[[938,2,2,0,2],[940,1,1,2,3],[946,1,1,3,4],[950,1,1,4,5]]],[41,5,5,5,10,[[974,1,1,5,6],[978,2,2,6,8],[984,1,1,8,9],[991,1,1,9,10]]],[42,1,1,10,11,[[1001,1,1,10,11]]],[43,1,1,11,12,[[1033,1,1,11,12]]],[44,1,1,12,13,[[1052,1,1,12,13]]],[45,1,1,13,14,[[1076,1,1,13,14]]]],[23449,23452,23501,23750,23874,24988,25152,25168,25467,25743,26217,27518,28092,28757]]],["An",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23567]]],["Man",[5,5,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,4,4,1,5,[[977,1,1,1,2],[984,1,1,2,3],[994,2,2,3,5]]]],[23213,25127,25473,25922,25924]]],["Men",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27468]]],["Men's",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25852]]],["and",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27520]]],["man",[336,303,[[39,75,66,0,66,[[935,1,1,0,1],[936,2,2,1,3],[937,3,3,3,6],[938,1,1,6,7],[939,3,2,7,9],[940,10,9,9,18],[941,7,7,18,25],[943,5,3,25,28],[944,5,4,28,32],[945,4,4,32,36],[946,3,3,36,39],[947,5,5,39,44],[948,3,3,44,47],[949,1,1,47,48],[950,1,1,48,49],[952,6,5,49,54],[953,4,4,54,58],[954,9,6,58,64],[955,2,2,64,66]]],[40,42,36,66,102,[[957,1,1,66,67],[958,4,3,67,70],[959,3,3,70,73],[960,1,1,73,74],[961,2,2,74,76],[963,7,5,76,81],[964,4,4,81,85],[965,3,3,85,88],[966,4,4,88,92],[967,1,1,92,93],[968,1,1,93,94],[969,2,2,94,96],[970,8,5,96,101],[971,1,1,101,102]]],[41,69,64,102,166,[[974,3,2,102,104],[976,2,2,104,106],[977,2,2,106,108],[978,7,6,108,114],[979,4,3,114,117],[980,3,3,117,120],[981,6,6,120,126],[982,1,1,126,127],[983,3,3,127,130],[984,4,4,130,134],[985,1,1,134,135],[986,3,3,135,138],[987,2,2,138,140],[988,2,2,140,142],[989,4,4,142,146],[990,4,4,146,150],[991,4,4,150,154],[992,1,1,154,155],[993,2,2,155,157],[994,5,4,157,161],[995,5,4,161,165],[996,1,1,165,166]]],[42,48,42,166,208,[[997,3,3,166,169],[998,3,2,169,171],[999,5,5,171,176],[1000,2,2,176,178],[1001,6,6,178,184],[1002,3,3,184,187],[1003,6,4,187,191],[1004,2,2,191,193],[1005,7,5,193,198],[1006,1,1,198,199],[1007,2,2,199,201],[1008,3,2,201,203],[1009,1,1,203,204],[1012,1,1,204,205],[1014,2,2,205,207],[1015,1,1,207,208]]],[43,22,22,208,230,[[1021,4,4,208,212],[1023,1,1,212,213],[1024,1,1,213,214],[1026,1,1,214,215],[1027,2,2,215,217],[1029,1,1,217,218],[1036,2,2,218,220],[1038,2,2,220,222],[1039,2,2,222,224],[1040,1,1,224,225],[1042,2,2,225,227],[1043,2,2,227,229],[1045,1,1,229,230]]],[44,16,16,230,246,[[1046,1,1,230,231],[1047,3,3,231,234],[1048,3,3,234,237],[1049,1,1,237,238],[1050,2,2,238,240],[1051,1,1,240,241],[1052,2,2,241,243],[1054,1,1,243,244],[1055,1,1,244,245],[1059,1,1,245,246]]],[45,16,12,246,258,[[1063,5,3,246,249],[1065,1,1,249,250],[1067,1,1,250,251],[1068,2,2,251,253],[1070,1,1,253,254],[1072,1,1,254,255],[1076,5,3,255,258]]],[46,4,4,258,262,[[1081,1,1,258,259],[1089,3,3,259,262]]],[47,8,8,262,270,[[1091,3,3,262,265],[1092,1,1,265,266],[1093,1,1,266,267],[1095,1,1,267,268],[1096,2,2,268,270]]],[48,5,5,270,275,[[1098,1,1,270,271],[1099,1,1,271,272],[1100,2,2,272,274],[1101,1,1,274,275]]],[49,1,1,275,276,[[1104,1,1,275,276]]],[50,4,2,276,278,[[1107,3,1,276,277],[1109,1,1,277,278]]],[51,1,1,278,279,[[1114,1,1,278,279]]],[52,1,1,279,280,[[1117,1,1,279,280]]],[53,3,3,280,283,[[1120,1,1,280,281],[1124,2,2,281,283]]],[54,1,1,283,284,[[1127,1,1,283,284]]],[55,1,1,284,285,[[1131,1,1,284,285]]],[57,4,3,285,288,[[1134,2,1,285,286],[1140,1,1,286,287],[1145,1,1,287,288]]],[58,6,6,288,294,[[1146,2,2,288,290],[1147,2,2,290,292],[1148,1,1,292,293],[1150,1,1,293,294]]],[59,2,2,294,296,[[1151,1,1,294,295],[1153,1,1,295,296]]],[60,1,1,296,297,[[1156,1,1,296,297]]],[65,6,6,297,303,[[1167,1,1,297,298],[1170,1,1,298,299],[1175,1,1,299,300],[1179,1,1,300,301],[1180,1,1,301,302],[1187,1,1,302,303]]]],[23325,23354,23365,23385,23388,23411,23440,23467,23478,23497,23499,23500,23502,23521,23524,23529,23532,23534,23563,23570,23576,23580,23583,23584,23591,23644,23651,23653,23685,23698,23699,23700,23709,23712,23714,23722,23734,23738,23739,23765,23767,23768,23772,23790,23793,23810,23820,23854,23883,23984,23987,23994,23996,24001,24021,24022,24032,24039,24056,24078,24099,24118,24126,24128,24161,24186,24238,24270,24287,24288,24289,24291,24293,24349,24366,24372,24474,24478,24481,24483,24486,24531,24536,24537,24538,24547,24550,24569,24595,24597,24621,24633,24642,24674,24743,24751,24767,24775,24795,24816,24825,24865,24998,25025,25067,25096,25125,25131,25151,25154,25156,25191,25194,25195,25203,25220,25229,25274,25278,25280,25323,25326,25327,25345,25357,25359,25393,25429,25431,25435,25467,25469,25475,25499,25537,25555,25569,25583,25592,25599,25621,25639,25673,25675,25677,25681,25690,25692,25696,25719,25741,25752,25753,25761,25788,25853,25862,25874,25886,25912,25933,25939,25941,25949,25982,25998,26050,26053,26095,26105,26120,26121,26124,26133,26134,26147,26185,26206,26215,26219,26222,26225,26237,26244,26284,26310,26319,26350,26351,26374,26379,26409,26421,26441,26451,26456,26464,26470,26514,26570,26573,26603,26614,26661,26747,26799,26814,26830,27031,27036,27039,27044,27114,27172,27249,27285,27287,27359,27601,27620,27692,27703,27729,27730,27743,27812,27818,27854,27855,27903,27953,27963,27965,27971,27995,27996,28019,28028,28059,28062,28074,28113,28115,28175,28193,28300,28403,28405,28408,28434,28485,28488,28513,28548,28628,28739,28763,28765,28875,29024,29025,29026,29058,29068,29069,29097,29114,29165,29189,29195,29244,29267,29294,29296,29335,29399,29493,29526,29611,29664,29721,29799,29804,29870,29933,29983,30094,30247,30273,30285,30313,30317,30327,30371,30398,30428,30500,30710,30775,30845,30926,30940,31070]]],["man's",[9,9,[[39,1,1,0,1,[[938,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[43,2,2,2,4,[[1022,1,1,2,3],[1034,1,1,3,4]]],[44,1,1,4,5,[[1050,1,1,4,5]]],[46,1,1,5,6,[[1081,1,1,5,6]]],[47,2,2,6,8,[[1092,1,1,6,7],[1093,1,1,7,8]]],[60,1,1,8,9,[[1157,1,1,8,9]]]],[23453,26802,27087,27552,28066,28861,29087,29117,30516]]],["men",[187,178,[[39,33,32,0,32,[[932,1,1,0,1],[933,3,3,1,4],[934,7,7,4,11],[935,1,1,11,12],[936,1,1,12,13],[937,1,1,13,14],[938,2,2,14,16],[940,3,2,16,18],[941,1,1,18,19],[943,1,1,19,20],[944,2,2,20,22],[945,1,1,22,23],[947,2,2,23,25],[949,2,2,25,27],[950,1,1,27,28],[951,4,4,28,32]]],[40,13,13,32,45,[[957,1,1,32,33],[959,1,1,33,34],[963,3,3,34,37],[964,3,3,37,40],[965,1,1,40,41],[966,1,1,41,42],[967,2,2,42,44],[968,1,1,44,45]]],[41,22,21,45,66,[[973,1,1,45,46],[974,1,1,46,47],[977,1,1,47,48],[978,3,3,48,51],[979,1,1,51,52],[981,3,3,52,55],[983,2,2,55,57],[984,2,2,57,59],[985,1,1,59,60],[988,2,1,60,61],[990,3,3,61,64],[992,2,2,64,66]]],[42,9,9,66,75,[[997,1,1,66,67],[999,1,1,67,68],[1000,1,1,68,69],[1001,1,1,69,70],[1002,2,2,70,72],[1004,1,1,72,73],[1008,1,1,73,74],[1013,1,1,74,75]]],[43,18,17,75,92,[[1021,3,3,75,78],[1022,5,4,78,82],[1031,2,2,82,84],[1032,1,1,84,85],[1033,2,2,85,87],[1034,2,2,87,89],[1035,1,1,89,90],[1039,1,1,90,91],[1041,1,1,91,92]]],[44,9,8,92,100,[[1046,1,1,92,93],[1047,2,2,93,95],[1050,3,2,95,97],[1057,2,2,97,99],[1059,1,1,99,100]]],[45,13,12,100,112,[[1062,2,1,100,101],[1063,1,1,101,102],[1064,2,2,102,104],[1065,1,1,104,105],[1068,2,2,105,107],[1074,1,1,107,108],[1075,2,2,108,110],[1076,2,2,110,112]]],[46,3,3,112,115,[[1080,1,1,112,113],[1082,1,1,113,114],[1085,1,1,114,115]]],[47,5,3,115,118,[[1091,4,2,115,117],[1093,1,1,117,118]]],[48,4,4,118,122,[[1099,1,1,118,119],[1100,2,2,119,121],[1102,1,1,121,122]]],[49,2,2,122,124,[[1104,1,1,122,123],[1106,1,1,123,124]]],[50,3,3,124,127,[[1108,2,2,124,126],[1109,1,1,126,127]]],[51,4,4,127,131,[[1112,4,4,127,131]]],[52,1,1,131,132,[[1118,1,1,131,132]]],[53,6,6,132,138,[[1120,3,3,132,135],[1122,1,1,135,136],[1124,2,2,136,138]]],[54,4,4,138,142,[[1126,1,1,138,139],[1127,3,3,139,142]]],[55,4,4,142,146,[[1129,1,1,142,143],[1130,1,1,143,144],[1131,2,2,144,146]]],[57,6,5,146,151,[[1137,2,1,146,147],[1138,1,1,147,148],[1139,2,2,148,150],[1141,1,1,150,151]]],[58,1,1,151,152,[[1148,1,1,151,152]]],[59,4,4,152,156,[[1152,2,2,152,154],[1154,2,2,154,156]]],[60,2,2,156,158,[[1156,1,1,156,157],[1158,1,1,157,158]]],[61,1,1,158,159,[[1163,1,1,158,159]]],[64,1,1,159,160,[[1166,1,1,159,160]]],[65,19,18,160,178,[[1174,1,1,160,161],[1175,7,7,161,168],[1177,1,1,168,169],[1179,1,1,169,170],[1180,1,1,170,171],[1182,6,5,171,176],[1184,1,1,176,177],[1187,1,1,177,178]]]],[23228,23247,23250,23253,23283,23284,23287,23296,23297,23298,23300,23328,23372,23387,23434,23450,23520,23525,23564,23642,23685,23695,23722,23774,23788,23851,23852,23888,23923,23925,23931,23946,24232,24316,24470,24471,24484,24524,24527,24533,24569,24615,24670,24672,24687,24918,24987,25117,25168,25172,25177,25226,25331,25333,25345,25449,25451,25468,25495,25522,25635,25698,25699,25715,25783,25785,26048,26139,26184,26251,26267,26271,26398,26623,26765,27034,27035,27038,27063,27088,27094,27097,27425,27429,27459,27500,27503,27549,27553,27570,27719,27785,27948,27978,27991,28059,28065,28262,28263,28298,28388,28399,28413,28431,28442,28494,28510,28666,28680,28681,28737,28750,28843,28888,28953,29058,29067,29117,29256,29280,29286,29344,29398,29447,29502,29516,29540,29574,29576,29583,29585,29680,29717,29720,29721,29757,29793,29797,29829,29855,29861,29866,29906,29919,29925,29931,30031,30060,30072,30092,30132,30328,30403,30414,30448,30452,30500,30529,30633,30676,30838,30844,30846,30847,30850,30855,30858,30860,30885,30921,30930,30956,30962,30963,30972,30975,31006,31056]]],["men's",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[43,1,1,2,3,[[1034,1,1,2,3]]],[53,1,1,3,4,[[1123,1,1,3,4]]]],[23922,25357,27548,29787]]],["the",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25435]]]]},{"k":"G445","v":[["deputy",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27569]]]]},{"k":"G446","v":[["*",[4,4,[[43,4,4,0,4,[[1030,3,3,0,3],[1036,1,1,3,4]]]],[27369,27370,27374,27623]]],["country",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27369]]],["deputies",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27623]]],["deputy",[2,2,[[43,2,2,0,2,[[1030,2,2,0,2]]]],[27370,27374]]]]},{"k":"G447","v":[["*",[4,4,[[43,2,2,0,2,[[1033,1,1,0,1],[1044,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]]],[27509,27895,29346,30246]]],["forbearing",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29346]]],["leave",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30246]]],["loosed",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1044,1,1,1,2]]]],[27509,27895]]]]},{"k":"G448","v":[["mercy",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30306]]]]},{"k":"G449","v":[["unwashen",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[963,2,2,1,3]]]],[23653,24465,24468]]]]},{"k":"G450","v":[["*",[112,111,[[39,6,6,0,6,[[937,1,1,0,1],[940,1,1,1,2],[945,1,1,2,3],[948,1,1,3,4],[950,1,1,4,5],[954,1,1,5,6]]],[40,18,18,6,24,[[957,1,1,6,7],[958,1,1,7,8],[959,1,1,8,9],[961,1,1,9,10],[963,1,1,10,11],[964,1,1,11,12],[965,4,4,12,16],[966,3,3,16,19],[968,2,2,19,21],[970,2,2,21,23],[972,1,1,23,24]]],[41,27,27,24,51,[[973,1,1,24,25],[976,4,4,25,29],[977,2,2,29,31],[978,1,1,31,32],[980,1,1,32,33],[981,2,2,33,35],[982,1,1,35,36],[983,3,3,36,39],[987,2,2,39,41],[988,1,1,41,42],[989,1,1,42,43],[990,1,1,43,44],[994,2,2,44,46],[995,1,1,46,47],[996,4,4,47,51]]],[42,8,8,51,59,[[1002,4,4,51,55],[1007,3,3,55,58],[1016,1,1,58,59]]],[43,45,44,59,103,[[1018,1,1,59,60],[1019,3,3,60,63],[1020,2,2,63,65],[1022,5,5,65,70],[1023,1,1,70,71],[1024,2,2,71,73],[1025,2,2,73,75],[1026,8,7,75,82],[1027,4,4,82,86],[1028,2,2,86,88],[1029,1,1,88,89],[1030,3,3,89,92],[1031,2,2,92,94],[1032,1,1,94,95],[1034,2,2,95,97],[1037,1,1,97,98],[1039,2,2,98,100],[1040,1,1,100,101],[1043,2,2,101,103]]],[44,2,2,103,105,[[1059,1,1,103,104],[1060,1,1,104,105]]],[45,1,1,105,106,[[1071,1,1,105,106]]],[48,1,1,106,107,[[1101,1,1,106,107]]],[51,2,2,107,109,[[1114,2,2,107,109]]],[57,2,2,109,111,[[1139,2,2,109,111]]]],[23388,23530,23709,23811,23896,24116,24250,24274,24314,24406,24487,24531,24547,24548,24565,24569,24589,24622,24638,24696,24698,24811,24814,24882,24932,25079,25092,25101,25102,25132,25135,25154,25300,25309,25320,25388,25412,25413,25437,25606,25608,25651,25670,25721,25909,25910,25936,25998,26003,26024,26037,26296,26297,26301,26311,26546,26547,26554,26876,26938,26973,26979,26981,27018,27022,27065,27076,27093,27095,27096,27110,27134,27153,27202,27203,27222,27227,27234,27250,27255,27256,27257,27272,27279,27285,27300,27314,27335,27344,27378,27395,27396,27424,27434,27449,27526,27554,27656,27714,27720,27743,27839,27853,28289,28315,28574,29318,29617,29619,30075,30079]]],["+",[8,8,[[40,1,1,0,1,[[966,1,1,0,1]]],[42,4,4,1,5,[[1002,4,4,1,5]]],[43,3,3,5,8,[[1026,1,1,5,6],[1030,2,2,6,8]]]],[24589,26296,26297,26301,26311,27257,27395,27396]]],["Arise",[7,7,[[41,1,1,0,1,[[989,1,1,0,1]]],[43,6,6,1,7,[[1025,1,1,1,2],[1026,2,2,2,4],[1027,1,1,4,5],[1028,1,1,5,6],[1039,1,1,6,7]]]],[25670,27202,27222,27227,27279,27314,27714]]],["Rise",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27272]]],["Stand",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27424]]],["again",[13,13,[[39,2,2,0,2,[[945,1,1,0,1],[948,1,1,1,2]]],[40,2,2,2,4,[[964,1,1,2,3],[966,1,1,3,4]]],[41,4,4,4,8,[[981,2,2,4,6],[990,1,1,6,7],[996,1,1,7,8]]],[42,3,3,8,11,[[1007,2,2,8,10],[1016,1,1,10,11]]],[43,1,1,11,12,[[1034,1,1,11,12]]],[51,1,1,12,13,[[1114,1,1,12,13]]]],[23709,23811,24531,24622,25309,25320,25721,25998,26546,26547,26876,27526,29617]]],["arise",[6,6,[[41,1,1,0,1,[[987,1,1,0,1]]],[43,4,4,1,5,[[1026,2,2,1,3],[1037,1,1,3,4],[1039,1,1,4,5]]],[48,1,1,5,6,[[1101,1,1,5,6]]]],[25606,27250,27256,27656,27720,29318]]],["ariseth",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30079]]],["arose",[23,23,[[39,2,2,0,2,[[937,1,1,0,1],[954,1,1,1,2]]],[40,5,5,2,7,[[958,1,1,2,3],[961,1,1,3,4],[963,1,1,4,5],[965,1,1,5,6],[970,1,1,6,7]]],[41,8,8,7,15,[[973,1,1,7,8],[976,2,2,8,10],[978,1,1,10,11],[980,1,1,11,12],[987,1,1,12,13],[995,1,1,13,14],[996,1,1,14,15]]],[43,8,8,15,23,[[1022,1,1,15,16],[1023,1,1,16,17],[1024,1,1,17,18],[1025,1,1,18,19],[1026,3,3,19,22],[1040,1,1,22,23]]]],[23388,24116,24274,24406,24487,24565,24811,24932,25101,25102,25154,25300,25608,25936,26003,27065,27110,27134,27203,27234,27250,27255,27743]]],["raised",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27554]]],["rise",[12,12,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,3,3,1,4,[[965,1,1,1,2],[968,2,2,2,4]]],[41,4,4,4,8,[[983,2,2,4,6],[994,1,1,6,7],[996,1,1,7,8]]],[43,1,1,8,9,[[1043,1,1,8,9]]],[44,1,1,9,10,[[1060,1,1,9,10]]],[51,1,1,10,11,[[1114,1,1,10,11]]],[57,1,1,11,12,[[1139,1,1,11,12]]]],[23530,24569,24696,24698,25412,25413,25910,26037,27839,28315,29619,30075]]],["risen",[2,2,[[40,2,2,0,2,[[965,1,1,0,1],[972,1,1,1,2]]]],[24547,24882]]],["rising",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24548]]],["rose",[4,4,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]],[44,1,1,3,4,[[1059,1,1,3,4]]]],[24638,25651,27300,28289]]],["up",[32,32,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,3,3,1,4,[[957,1,1,1,2],[959,1,1,2,3],[970,1,1,3,4]]],[41,8,8,4,12,[[976,2,2,4,6],[977,2,2,6,8],[982,1,1,8,9],[983,1,1,9,10],[994,1,1,10,11],[996,1,1,11,12]]],[42,1,1,12,13,[[1007,1,1,12,13]]],[43,18,18,13,31,[[1018,1,1,13,14],[1019,3,3,14,17],[1020,2,2,17,19],[1022,4,4,19,23],[1024,1,1,23,24],[1027,1,1,24,25],[1028,1,1,25,26],[1029,1,1,26,27],[1030,1,1,27,28],[1031,1,1,28,29],[1032,1,1,29,30],[1043,1,1,30,31]]],[45,1,1,31,32,[[1071,1,1,31,32]]]],[23896,24250,24314,24814,25079,25092,25132,25135,25388,25437,25909,26024,26554,26938,26973,26979,26981,27018,27022,27076,27093,27095,27096,27153,27285,27335,27344,27378,27434,27449,27853,28574]]]]},{"k":"G451","v":[["Anna",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25009]]]]},{"k":"G452","v":[["Annas",[4,4,[[41,1,1,0,1,[[975,1,1,0,1]]],[42,2,2,1,3,[[1014,2,2,1,3]]],[43,1,1,3,4,[[1021,1,1,3,4]]]],[25027,26798,26809,27028]]]]},{"k":"G453","v":[["*",[6,6,[[41,1,1,0,1,[[996,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[47,2,2,2,4,[[1093,2,2,2,4]]],[53,1,1,4,5,[[1124,1,1,4,5]]],[55,1,1,5,6,[[1131,1,1,5,6]]]],[26016,27944,29103,29105,29797,29926]]],["foolish",[4,4,[[47,2,2,0,2,[[1093,2,2,0,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]],[55,1,1,3,4,[[1131,1,1,3,4]]]],[29103,29105,29797,29926]]],["fools",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26016]]],["unwise",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27944]]]]},{"k":"G454","v":[["*",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[25157,29862]]],["folly",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29862]]],["madness",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25157]]]]},{"k":"G455","v":[["*",[77,75,[[39,11,11,0,11,[[930,1,1,0,1],[931,1,1,1,2],[933,1,1,2,3],[935,2,2,3,5],[937,1,1,5,6],[941,1,1,6,7],[945,1,1,7,8],[948,1,1,8,9],[953,1,1,9,10],[955,1,1,10,11]]],[41,6,6,11,17,[[973,1,1,11,12],[975,1,1,12,13],[983,2,2,13,15],[984,1,1,15,16],[985,1,1,16,17]]],[42,11,11,17,28,[[997,1,1,17,18],[1005,7,7,18,25],[1006,2,2,25,27],[1007,1,1,27,28]]],[43,17,17,28,45,[[1022,2,2,28,30],[1024,1,1,30,31],[1025,2,2,31,33],[1026,2,2,33,35],[1027,2,2,35,37],[1029,3,3,37,40],[1031,1,1,40,41],[1033,2,2,41,43],[1035,1,1,43,44],[1043,1,1,44,45]]],[44,1,1,45,46,[[1048,1,1,45,46]]],[45,1,1,46,47,[[1077,1,1,46,47]]],[46,2,2,47,49,[[1079,1,1,47,48],[1083,1,1,48,49]]],[50,1,1,49,50,[[1110,1,1,49,50]]],[65,27,25,50,75,[[1169,4,3,50,53],[1170,1,1,53,54],[1171,5,5,54,59],[1172,6,6,59,65],[1174,1,1,65,66],[1175,1,1,66,67],[1176,2,2,67,69],[1177,1,1,69,70],[1178,1,1,70,71],[1179,1,1,71,72],[1181,1,1,72,73],[1185,1,1,73,74],[1186,2,1,74,75]]]],[23180,23208,23236,23323,23324,23409,23574,23727,23825,24019,24181,24957,25046,25414,25415,25495,25543,26095,26450,26454,26457,26461,26466,26470,26472,26484,26502,26560,27078,27082,27172,27208,27211,27224,27256,27270,27293,27347,27351,27353,27441,27509,27510,27571,27841,28004,28785,28836,28909,29545,30753,30754,30766,30769,30781,30782,30783,30784,30788,30794,30796,30798,30800,30802,30805,30828,30842,30863,30869,30891,30907,30914,30951,31028,31050]]],["open",[21,21,[[39,2,2,0,2,[[941,1,1,0,1],[953,1,1,1,2]]],[41,2,2,2,4,[[984,1,1,2,3],[985,1,1,3,4]]],[42,2,2,4,6,[[997,1,1,4,5],[1006,1,1,5,6]]],[43,3,3,6,9,[[1033,1,1,6,7],[1035,1,1,7,8],[1043,1,1,8,9]]],[44,1,1,9,10,[[1048,1,1,9,10]]],[46,1,1,10,11,[[1083,1,1,10,11]]],[50,1,1,11,12,[[1110,1,1,11,12]]],[65,9,9,12,21,[[1169,2,2,12,14],[1171,5,5,14,19],[1176,2,2,19,21]]]],[23574,24019,25495,25543,26095,26502,27510,27571,27841,28004,28909,29545,30754,30766,30781,30782,30783,30784,30788,30863,30869]]],["opened",[53,52,[[39,9,9,0,9,[[930,1,1,0,1],[931,1,1,1,2],[933,1,1,2,3],[935,2,2,3,5],[937,1,1,5,6],[945,1,1,6,7],[948,1,1,7,8],[955,1,1,8,9]]],[41,4,4,9,13,[[973,1,1,9,10],[975,1,1,10,11],[983,2,2,11,13]]],[42,8,8,13,21,[[1005,7,7,13,20],[1007,1,1,20,21]]],[43,14,14,21,35,[[1022,2,2,21,23],[1024,1,1,23,24],[1025,2,2,24,26],[1026,2,2,26,28],[1027,2,2,28,30],[1029,3,3,30,33],[1031,1,1,33,34],[1033,1,1,34,35]]],[45,1,1,35,36,[[1077,1,1,35,36]]],[46,1,1,36,37,[[1079,1,1,36,37]]],[65,16,15,37,52,[[1170,1,1,37,38],[1172,6,6,38,44],[1174,1,1,44,45],[1175,1,1,45,46],[1177,1,1,46,47],[1178,1,1,47,48],[1179,1,1,48,49],[1181,1,1,49,50],[1185,1,1,50,51],[1186,2,1,51,52]]]],[23180,23208,23236,23323,23324,23409,23727,23825,24181,24957,25046,25414,25415,26450,26454,26457,26461,26466,26470,26472,26560,27078,27082,27172,27208,27211,27224,27256,27270,27293,27347,27351,27353,27441,27509,28785,28836,30769,30794,30796,30798,30800,30802,30805,30828,30842,30891,30907,30914,30951,31028,31050]]],["openeth",[3,2,[[42,1,1,0,1,[[1006,1,1,0,1]]],[65,2,1,1,2,[[1169,2,1,1,2]]]],[26484,30753]]]]},{"k":"G456","v":[["again",[2,1,[[43,2,1,0,1,[[1032,2,1,0,1]]]],[27458]]]]},{"k":"G457","v":[["open",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29356]]]]},{"k":"G458","v":[["*",[15,13,[[39,4,4,0,4,[[935,1,1,0,1],[941,1,1,1,2],[951,1,1,2,3],[952,1,1,3,4]]],[44,3,2,4,6,[[1049,1,1,4,5],[1051,2,1,5,6]]],[46,1,1,6,7,[[1083,1,1,6,7]]],[52,1,1,7,8,[[1117,1,1,7,8]]],[55,1,1,8,9,[[1130,1,1,8,9]]],[57,3,3,9,12,[[1133,1,1,9,10],[1140,1,1,10,11],[1142,1,1,11,12]]],[61,2,1,12,13,[[1161,2,1,12,13]]]],[23339,23580,23946,23969,28029,28087,28912,29668,29922,29972,30104,30150,30583]]],["+",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30583]]],["iniquities",[3,3,[[44,1,1,0,1,[[1049,1,1,0,1]]],[57,2,2,1,3,[[1140,1,1,1,2],[1142,1,1,2,3]]]],[28029,30104,30150]]],["iniquity",[9,8,[[39,4,4,0,4,[[935,1,1,0,1],[941,1,1,1,2],[951,1,1,2,3],[952,1,1,3,4]]],[44,2,1,4,5,[[1051,2,1,4,5]]],[52,1,1,5,6,[[1117,1,1,5,6]]],[55,1,1,6,7,[[1130,1,1,6,7]]],[57,1,1,7,8,[[1133,1,1,7,8]]]],[23339,23580,23946,23969,28087,29668,29922,29972]]],["law",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30583]]],["unrighteousness",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28912]]]]},{"k":"G459","v":[["*",[10,7,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]],[45,4,1,3,4,[[1070,4,1,3,4]]],[52,1,1,4,5,[[1117,1,1,4,5]]],[53,1,1,5,6,[[1119,1,1,5,6]]],[60,1,1,6,7,[[1157,1,1,6,7]]]],[24854,25901,26972,28561,29669,29705,30508]]],["Wicked",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29669]]],["law",[4,1,[[45,4,1,0,1,[[1070,4,1,0,1]]]],[28561]]],["lawless",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29705]]],["transgressors",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24854,25901]]],["unlawful",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30508]]],["wicked",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26972]]]]},{"k":"G460","v":[["law",[2,1,[[44,2,1,0,1,[[1047,2,1,0,1]]]],[27974]]]]},{"k":"G461","v":[["*",[3,3,[[41,1,1,0,1,[[985,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[25531,27458,30224]]],["+",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27458]]],["straight",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25531]]],["up",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30224]]]]},{"k":"G462","v":[["unholy",[2,2,[[53,1,1,0,1,[[1119,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[29705,29855]]]]},{"k":"G463","v":[["forbearance",[2,2,[[44,2,2,0,2,[[1047,1,1,0,1],[1048,1,1,1,2]]]],[27966,28016]]]]},{"k":"G464","v":[["striving",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30216]]]]},{"k":"G465","v":[["exchange",[2,2,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]]],[23698,24537]]]]},{"k":"G466","v":[["up",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29489]]]]},{"k":"G467","v":[["*",[7,6,[[41,2,1,0,1,[[986,2,1,0,1]]],[44,2,2,1,3,[[1056,1,1,1,2],[1057,1,1,2,3]]],[51,1,1,3,4,[[1113,1,1,3,4]]],[52,1,1,4,5,[[1116,1,1,4,5]]],[57,1,1,5,6,[[1142,1,1,5,6]]]],[25567,28244,28264,29599,29655,30163]]],["+",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29599]]],["recompense",[3,3,[[41,1,1,0,1,[[986,1,1,0,1]]],[52,1,1,1,2,[[1116,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[25567,29655,30163]]],["recompensed",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]]],[25567,28244]]],["repay",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28264]]]]},{"k":"G468","v":[["recompence",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]]],[25565,28218]]]]},{"k":"G469","v":[["reward",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29541]]]]},{"k":"G470","v":[["*",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]]],[25559,28175]]],["+",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25559]]],["against",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28175]]]]},{"k":"G471","v":[["*",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]]],[25841,27036]]],["+",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27036]]],["gainsay",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25841]]]]},{"k":"G472","v":[["*",[4,4,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[51,1,1,2,3,[[1115,1,1,2,3]]],[55,1,1,3,4,[[1129,1,1,3,4]]]],[23306,25633,29635,29901]]],["fast",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29901]]],["hold",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23306]]],["support",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29635]]],["to",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25633]]]]},{"k":"G473","v":[["*",[22,20,[[39,5,4,0,4,[[930,1,1,0,1],[933,2,1,1,2],[945,1,1,2,3],[948,1,1,3,4]]],[40,1,1,4,5,[[966,1,1,4,5]]],[41,4,4,5,9,[[973,1,1,5,6],[983,1,1,6,7],[984,1,1,7,8],[991,1,1,8,9]]],[42,1,1,9,10,[[997,1,1,9,10]]],[43,1,1,10,11,[[1029,1,1,10,11]]],[44,1,1,11,12,[[1057,1,1,11,12]]],[45,1,1,12,13,[[1072,1,1,12,13]]],[48,1,1,13,14,[[1101,1,1,13,14]]],[51,1,1,14,15,[[1115,1,1,14,15]]],[52,1,1,15,16,[[1117,1,1,15,16]]],[57,2,2,16,18,[[1144,2,2,16,18]]],[58,1,1,18,19,[[1149,1,1,18,19]]],[59,2,1,19,20,[[1153,2,1,19,20]]]],[23191,23272,23727,23820,24633,24913,25416,25462,25775,26060,27360,28262,28615,29335,29636,29671,30214,30228,30352,30433]]],["+",[5,5,[[41,2,2,0,2,[[984,1,1,0,1],[991,1,1,1,2]]],[43,1,1,2,3,[[1029,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]],[52,1,1,4,5,[[1117,1,1,4,5]]]],[25462,25775,27360,29335,29671]]],["For",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30352]]],["because",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24913]]],["for",[14,12,[[39,4,3,0,3,[[933,2,1,0,1],[945,1,1,1,2],[948,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,1,1,4,5,[[983,1,1,4,5]]],[42,1,1,5,6,[[997,1,1,5,6]]],[44,1,1,6,7,[[1057,1,1,6,7]]],[45,1,1,7,8,[[1072,1,1,7,8]]],[51,1,1,8,9,[[1115,1,1,8,9]]],[57,2,2,9,11,[[1144,2,2,9,11]]],[59,2,1,11,12,[[1153,2,1,11,12]]]],[23272,23727,23820,24633,25416,26060,28262,28615,29636,30214,30228,30433]]],["room",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23191]]]]},{"k":"G474","v":[["have",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26008]]]]},{"k":"G475","v":[["themselves",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29852]]]]},{"k":"G476","v":[["adversary",[5,4,[[39,2,1,0,1,[[933,2,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[990,1,1,2,3]]],[59,1,1,3,4,[[1155,1,1,3,4]]]],[23259,25517,25691,30473]]]]},{"k":"G477","v":[["oppositions",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29808]]]]},{"k":"G478","v":[["resisted",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30216]]]]},{"k":"G479","v":[["+",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25565]]]]},{"k":"G480","v":[["*",[8,8,[[41,2,2,0,2,[[985,1,1,0,1],[993,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]],[49,1,1,4,5,[[1103,1,1,4,5]]],[52,1,1,5,6,[[1117,1,1,5,6]]],[53,2,2,6,8,[[1119,1,1,6,7],[1123,1,1,7,8]]]],[25535,25841,28785,29179,29389,29665,29706,29777]]],["adversaries",[4,4,[[41,2,2,0,2,[[985,1,1,0,1],[993,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[49,1,1,3,4,[[1103,1,1,3,4]]]],[25535,25841,28785,29389]]],["adversary",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29777]]],["contrary",[2,2,[[47,1,1,0,1,[[1095,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]]],[29179,29706]]],["opposeth",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29665]]]]},{"k":"G481","v":[["against",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27641]]]]},{"k":"G482","v":[["*",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1037,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]]],[24947,27661,29790]]],["holpen",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24947]]],["partakers",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29790]]],["support",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27661]]]]},{"k":"G483","v":[["*",[10,9,[[41,2,2,0,2,[[974,1,1,0,1],[992,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]],[43,4,3,3,6,[[1030,2,1,3,4],[1045,2,2,4,6]]],[44,1,1,6,7,[[1055,1,1,6,7]]],[55,2,2,7,9,[[1129,1,1,7,8],[1130,1,1,8,9]]]],[25007,25806,26837,27407,27918,27921,28209,29901,29917]]],["again",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29917]]],["against",[5,5,[[41,1,1,0,1,[[974,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]],[43,3,3,2,5,[[1030,1,1,2,3],[1045,2,2,3,5]]]],[25007,26837,27407,27918,27921]]],["contradicting",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27407]]],["deny",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25806]]],["gainsayers",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29901]]],["gainsaying",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28209]]]]},{"k":"G484","v":[["helps",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28662]]]]},{"k":"G485","v":[["*",[4,4,[[57,3,3,0,3,[[1138,1,1,0,1],[1139,1,1,1,2],[1144,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[30060,30071,30215,30683]]],["contradiction",[2,2,[[57,2,2,0,2,[[1139,1,1,0,1],[1144,1,1,1,2]]]],[30071,30215]]],["gainsaying",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30683]]],["strife",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30060]]]]},{"k":"G486","v":[["+",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30422]]]]},{"k":"G487","v":[["ransom",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29722]]]]},{"k":"G488","v":[["+",[2,2,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]]],[23318,25184]]]]},{"k":"G489","v":[["recompence",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]]],[27957,28911]]]]},{"k":"G490","v":[["Antioch",[18,17,[[43,16,15,0,15,[[1028,6,5,0,5],[1030,2,2,5,7],[1031,3,3,7,10],[1032,4,4,10,14],[1035,1,1,14,15]]],[47,1,1,15,16,[[1092,1,1,15,16]]],[54,1,1,16,17,[[1127,1,1,16,17]]]],[27326,27327,27329,27333,27334,27363,27376,27433,27435,27440,27464,27465,27472,27477,27579,29092,29864]]]]},{"k":"G491","v":[["Antioch",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27106]]]]},{"k":"G492","v":[["side",[2,2,[[41,2,2,0,2,[[982,2,2,0,2]]]],[25394,25395]]]]},{"k":"G493","v":[["Antipas",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30730]]]]},{"k":"G494","v":[["Antipatris",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27765]]]]},{"k":"G495","v":[["against",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25271]]]]},{"k":"G496","v":[["resist",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27167]]]]},{"k":"G497","v":[["against",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28114]]]]},{"k":"G498","v":[["*",[5,5,[[43,1,1,0,1,[[1035,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]],[58,2,2,2,4,[[1149,1,1,2,3],[1150,1,1,3,4]]],[59,1,1,4,5,[[1155,1,1,4,5]]]],[27563,28268,30343,30360,30470]]],["+",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28268]]],["resist",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30360]]],["resisteth",[2,2,[[58,1,1,0,1,[[1149,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[30343,30470]]],["themselves",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27563]]]]},{"k":"G499","v":[["*",[2,2,[[57,1,1,0,1,[[1141,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[30129,30445]]],["figure",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30445]]],["figures",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30129]]]]},{"k":"G500","v":[["*",[5,4,[[61,4,3,0,3,[[1160,3,2,0,2],[1162,1,1,2,3]]],[62,1,1,3,4,[[1164,1,1,3,4]]]],[30568,30572,30606,30652]]],["antichrist",[4,4,[[61,3,3,0,3,[[1160,2,2,0,2],[1162,1,1,2,3]]],[62,1,1,3,4,[[1164,1,1,3,4]]]],[30568,30572,30606,30652]]],["antichrists",[1,1,[[61,1,1,0,1,[[1160,1,1,0,1]]]],[30568]]]]},{"k":"G501","v":[["*",[4,4,[[42,4,4,0,4,[[998,2,2,0,2],[1000,2,2,2,4]]]],[26103,26104,26163,26171]]],["draw",[2,2,[[42,2,2,0,2,[[1000,2,2,0,2]]]],[26163,26171]]],["drew",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26104]]],["out",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26103]]]]},{"k":"G502","v":[["draw",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26167]]]]},{"k":"G503","v":[["up",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27870]]]]},{"k":"G504","v":[["*",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[23532,25429,30517,30684]]],["dry",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23532,25429]]],["water",[2,2,[[60,1,1,0,1,[[1157,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[30517,30684]]]]},{"k":"G505","v":[["*",[6,6,[[44,1,1,0,1,[[1057,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]],[53,1,1,2,3,[[1119,1,1,2,3]]],[54,1,1,3,4,[[1125,1,1,3,4]]],[58,1,1,4,5,[[1148,1,1,4,5]]],[59,1,1,5,6,[[1151,1,1,5,6]]]],[28254,28904,29701,29814,30336,30396]]],["dissimulation",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28254]]],["hypocrisy",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30336]]],["unfeigned",[4,4,[[46,1,1,0,1,[[1083,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]],[54,1,1,2,3,[[1125,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[28904,29701,29814,30396]]]]},{"k":"G506","v":[["*",[4,4,[[53,1,1,0,1,[[1119,1,1,0,1]]],[55,2,2,1,3,[[1129,2,2,1,3]]],[57,1,1,3,4,[[1134,1,1,3,4]]]],[29705,29898,29902,29985]]],["+",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29902]]],["disobedient",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29705]]],["under",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29985]]],["unruly",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29898]]]]},{"k":"G507","v":[["*",[9,9,[[42,3,3,0,3,[[998,1,1,0,1],[1004,1,1,1,2],[1007,1,1,2,3]]],[43,1,1,3,4,[[1019,1,1,3,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]],[49,1,1,5,6,[[1105,1,1,5,6]]],[50,2,2,6,8,[[1109,2,2,6,8]]],[57,1,1,8,9,[[1144,1,1,8,9]]]],[26102,26404,26564,26968,29157,29435,29518,29519,30227]]],["above",[5,5,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]],[47,1,1,2,3,[[1094,1,1,2,3]]],[50,2,2,3,5,[[1109,2,2,3,5]]]],[26404,26968,29157,29518,29519]]],["brim",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26102]]],["high",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29435]]],["up",[2,2,[[42,1,1,0,1,[[1007,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[26564,30227]]]]},{"k":"G508","v":[["room",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24769,25876]]]]},{"k":"G509","v":[["*",[13,13,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[973,1,1,2,3]]],[42,5,5,3,8,[[999,3,3,3,6],[1015,2,2,6,8]]],[43,1,1,8,9,[[1043,1,1,8,9]]],[47,1,1,9,10,[[1094,1,1,9,10]]],[58,3,3,10,13,[[1146,1,1,10,11],[1148,2,2,11,13]]]],[24180,24864,24896,26123,26127,26151,26836,26848,27828,29140,30283,30334,30336]]],["above",[5,5,[[42,2,2,0,2,[[999,1,1,0,1],[1015,1,1,1,2]]],[58,3,3,2,5,[[1146,1,1,2,3],[1148,2,2,3,5]]]],[26151,26836,30283,30334,30336]]],["again",[3,3,[[42,2,2,0,2,[[999,2,2,0,2]]],[47,1,1,2,3,[[1094,1,1,2,3]]]],[26123,26127,29140]]],["beginning",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27828]]],["first",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24896]]],["top",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]]],[24180,24864,26848]]]]},{"k":"G510","v":[["upper",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27586]]]]},{"k":"G511","v":[["*",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[25563,30141]]],["Above",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30141]]],["higher",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25563]]]]},{"k":"G512","v":[["*",[2,2,[[55,1,1,0,1,[[1131,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[29932,30082]]],["unprofitable",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29932]]],["unprofitableness",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30082]]]]},{"k":"G513","v":[["axe",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23202,25034]]]]},{"k":"G514","v":[["*",[41,39,[[39,9,7,0,7,[[931,1,1,0,1],[938,7,5,1,6],[950,1,1,6,7]]],[41,8,8,7,15,[[975,1,1,7,8],[979,1,1,8,9],[982,1,1,9,10],[984,1,1,10,11],[987,2,2,11,13],[995,2,2,13,15]]],[42,1,1,15,16,[[997,1,1,15,16]]],[43,7,7,16,23,[[1030,2,2,16,18],[1040,1,1,18,19],[1042,2,2,19,21],[1043,2,2,21,23]]],[44,2,2,23,25,[[1046,1,1,23,24],[1053,1,1,24,25]]],[45,1,1,25,26,[[1077,1,1,25,26]]],[52,1,1,26,27,[[1116,1,1,26,27]]],[53,4,4,27,31,[[1119,1,1,27,28],[1122,1,1,28,29],[1123,1,1,29,30],[1124,1,1,30,31]]],[57,1,1,31,32,[[1143,1,1,31,32]]],[65,7,7,32,39,[[1169,1,1,32,33],[1170,1,1,33,34],[1171,4,4,34,38],[1182,1,1,38,39]]]],[23200,23427,23428,23430,23454,23455,23880,25033,25199,25370,25507,25607,25609,25950,25976,26071,27387,27408,27763,27807,27821,27843,27854,27962,28134,28780,29652,29711,29756,29781,29789,30210,30750,30779,30781,30783,30788,30791,30960]]],["+",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27408]]],["Worthy",[1,1,[[65,1,1,0,1,[[1171,1,1,0,1]]]],[30791]]],["meet",[4,4,[[39,1,1,0,1,[[931,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[52,1,1,3,4,[[1116,1,1,3,4]]]],[23200,27843,28780,29652]]],["reward",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25976]]],["they",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30210]]],["worthy",[33,31,[[39,8,6,0,6,[[938,7,5,0,5],[950,1,1,5,6]]],[41,7,7,6,13,[[975,1,1,6,7],[979,1,1,7,8],[982,1,1,8,9],[984,1,1,9,10],[987,2,2,10,12],[995,1,1,12,13]]],[42,1,1,13,14,[[997,1,1,13,14]]],[43,5,5,14,19,[[1030,1,1,14,15],[1040,1,1,15,16],[1042,2,2,16,18],[1043,1,1,18,19]]],[44,2,2,19,21,[[1046,1,1,19,20],[1053,1,1,20,21]]],[53,4,4,21,25,[[1119,1,1,21,22],[1122,1,1,22,23],[1123,1,1,23,24],[1124,1,1,24,25]]],[65,6,6,25,31,[[1169,1,1,25,26],[1170,1,1,26,27],[1171,3,3,27,30],[1182,1,1,30,31]]]],[23427,23428,23430,23454,23455,23880,25033,25199,25370,25507,25607,25609,25950,26071,27387,27763,27807,27821,27854,27962,28134,29711,29756,29781,29789,30750,30779,30781,30783,30788,30960]]]]},{"k":"G515","v":[["*",[7,7,[[41,1,1,0,1,[[979,1,1,0,1]]],[43,2,2,1,3,[[1032,1,1,1,2],[1045,1,1,2,3]]],[52,1,1,3,4,[[1116,1,1,3,4]]],[53,1,1,4,5,[[1123,1,1,4,5]]],[57,2,2,5,7,[[1135,1,1,5,6],[1142,1,1,6,7]]]],[25202,27480,27921,29660,29780,29998,30162]]],["+",[3,3,[[41,1,1,0,1,[[979,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]]],[25202,27480,29660]]],["desire",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27921]]],["worthy",[3,3,[[53,1,1,0,1,[[1123,1,1,0,1]]],[57,2,2,1,3,[[1135,1,1,1,2],[1142,1,1,2,3]]]],[29780,29998,30162]]]]},{"k":"G516","v":[["*",[6,6,[[44,1,1,0,1,[[1061,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[50,1,1,3,4,[[1107,1,1,3,4]]],[51,1,1,4,5,[[1112,1,1,4,5]]],[63,1,1,5,6,[[1165,1,1,5,6]]]],[28338,29273,29388,29475,29582,30664]]],["+",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30664]]],["becometh",[2,2,[[44,1,1,0,1,[[1061,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[28338,29388]]],["worthy",[3,3,[[48,1,1,0,1,[[1100,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]]],[29273,29475,29582]]]]},{"k":"G517","v":[["*",[5,5,[[44,1,1,0,1,[[1046,1,1,0,1]]],[50,2,2,1,3,[[1107,2,2,1,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]],[57,1,1,4,5,[[1143,1,1,4,5]]]],[27950,29480,29481,29713,30199]]],["invisible",[4,4,[[50,2,2,0,2,[[1107,2,2,0,2]]],[53,1,1,2,3,[[1119,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[29480,29481,29713,30199]]],["things",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27950]]]]},{"k":"G518","v":[["*",[44,44,[[39,9,9,0,9,[[930,1,1,0,1],[936,1,1,1,2],[939,1,1,2,3],[940,1,1,3,4],[942,1,1,4,5],[956,4,4,5,9]]],[40,3,3,9,12,[[962,1,1,9,10],[972,2,2,10,12]]],[41,11,11,12,23,[[979,2,2,12,14],[980,4,4,14,18],[981,1,1,18,19],[985,1,1,19,20],[986,1,1,20,21],[990,1,1,21,22],[996,1,1,22,23]]],[42,2,2,23,25,[[1000,1,1,23,24],[1016,1,1,24,25]]],[43,14,14,25,39,[[1021,1,1,25,26],[1022,2,2,26,28],[1028,1,1,28,29],[1029,2,2,29,31],[1032,1,1,31,32],[1033,1,1,32,33],[1039,1,1,33,34],[1040,3,3,34,37],[1043,1,1,37,38],[1045,1,1,38,39]]],[45,1,1,39,40,[[1075,1,1,39,40]]],[51,1,1,40,41,[[1111,1,1,40,41]]],[57,1,1,41,42,[[1134,1,1,41,42]]],[61,2,2,42,44,[[1159,2,2,42,44]]]],[23177,23378,23463,23507,23609,24203,24204,24205,24206,24437,24883,24886,25213,25217,25265,25279,25281,25292,25337,25519,25574,25725,26000,26207,26885,27045,27081,27084,27320,27351,27354,27469,27519,27730,27750,27751,27753,27843,27920,28703,29569,29989,30542,30543]]],["+",[3,3,[[39,3,3,0,3,[[930,1,1,0,1],[939,1,1,1,2],[956,1,1,2,3]]]],[23177,23463,24203]]],["declare",[2,2,[[57,1,1,0,1,[[1134,1,1,0,1]]],[61,1,1,1,2,[[1159,1,1,1,2]]]],[29989,30543]]],["declared",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25292]]],["report",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28703]]],["reported",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27045]]],["shew",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]],[51,1,1,2,3,[[1111,1,1,2,3]]],[61,1,1,3,4,[[1159,1,1,3,4]]]],[23507,27354,29569,30542]]],["shewed",[6,6,[[39,1,1,0,1,[[956,1,1,0,1]]],[41,2,2,1,3,[[979,1,1,1,2],[986,1,1,2,3]]],[43,3,3,3,6,[[1028,1,1,3,4],[1043,1,1,4,5],[1045,1,1,5,6]]]],[24206,25213,25574,27320,27843,27920]]],["tell",[6,6,[[39,2,2,0,2,[[956,2,2,0,2]]],[41,1,1,2,3,[[979,1,1,2,3]]],[43,3,3,3,6,[[1032,1,1,3,4],[1040,2,2,4,6]]]],[24204,24205,25217,27469,27751,27753]]],["told",[20,20,[[39,2,2,0,2,[[936,1,1,0,1],[942,1,1,1,2]]],[40,3,3,2,5,[[962,1,1,2,3],[972,2,2,3,5]]],[41,7,7,5,12,[[980,3,3,5,8],[981,1,1,8,9],[985,1,1,9,10],[990,1,1,10,11],[996,1,1,11,12]]],[42,2,2,12,14,[[1000,1,1,12,13],[1016,1,1,13,14]]],[43,6,6,14,20,[[1022,2,2,14,16],[1029,1,1,16,17],[1033,1,1,17,18],[1039,1,1,18,19],[1040,1,1,19,20]]]],[23378,23609,24437,24883,24886,25265,25279,25281,25337,25519,25725,26000,26207,26885,27081,27084,27351,27519,27730,27750]]]]},{"k":"G519","v":[["hanged",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24134]]]]},{"k":"G520","v":[["*",[16,16,[[39,5,5,0,5,[[935,2,2,0,2],[954,1,1,2,3],[955,2,2,3,5]]],[40,3,3,5,8,[[970,2,2,5,7],[971,1,1,7,8]]],[41,2,2,8,10,[[985,1,1,8,9],[995,1,1,9,10]]],[42,2,2,10,12,[[1014,1,1,10,11],[1015,1,1,11,12]]],[43,3,3,12,15,[[1029,1,1,12,13],[1040,1,1,13,14],[1041,1,1,14,15]]],[45,1,1,15,16,[[1073,1,1,15,16]]]],[23329,23330,24111,24131,24160,24798,24807,24842,25533,25961,26798,26841,27356,27751,27776,28636]]],["+",[6,6,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,3,3,1,4,[[970,2,2,1,3],[971,1,1,3,4]]],[41,1,1,4,5,[[995,1,1,4,5]]],[42,1,1,5,6,[[1014,1,1,5,6]]]],[24160,24798,24807,24842,25961,26798]]],["Bring",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27751]]],["away",[6,6,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[41,1,1,2,3,[[985,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[43,1,1,4,5,[[1041,1,1,4,5]]],[45,1,1,5,6,[[1073,1,1,5,6]]]],[24111,24131,25533,26841,27776,28636]]],["death",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27356]]],["leadeth",[2,2,[[39,2,2,0,2,[[935,2,2,0,2]]]],[23329,23330]]]]},{"k":"G521","v":[["unlearned",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29850]]]]},{"k":"G522","v":[["*",[3,3,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,1,1,2,3,[[977,1,1,2,3]]]],[23394,24280,25142]]],["away",[2,2,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]]],[24280,25142]]],["taken",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23394]]]]},{"k":"G523","v":[["*",[2,2,[[41,2,2,0,2,[[978,1,1,0,1],[984,1,1,1,2]]]],[25176,25479]]],["+",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25176]]],["required",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25479]]]]},{"k":"G524","v":[["feeling",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29291]]]]},{"k":"G525","v":[["*",[3,3,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]],[57,1,1,2,3,[[1134,1,1,2,3]]]],[25517,27597,29992]]],["deliver",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29992]]],["delivered",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25517]]],["departed",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27597]]]]},{"k":"G526","v":[["*",[3,3,[[48,2,2,0,2,[[1098,1,1,0,1],[1100,1,1,1,2]]],[50,1,1,2,3,[[1107,1,1,2,3]]]],[29241,29290,29486]]],["alienated",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[29290,29486]]],["aliens",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29241]]]]},{"k":"G527","v":[["tender",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23989,24745]]]]},{"k":"G528","v":[["*",[7,7,[[39,1,1,0,1,[[956,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[970,1,1,2,3]]],[41,2,2,3,5,[[986,1,1,3,4],[989,1,1,4,5]]],[42,1,1,5,6,[[1000,1,1,5,6]]],[43,1,1,6,7,[[1033,1,1,6,7]]]],[24204,24366,24767,25584,25663,26207,27499]]],["meet",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]]],[24767,25584]]],["met",[5,5,[[39,1,1,0,1,[[956,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[989,1,1,2,3]]],[42,1,1,3,4,[[1000,1,1,3,4]]],[43,1,1,4,5,[[1033,1,1,4,5]]]],[24204,24366,25663,26207,27499]]]]},{"k":"G529","v":[["*",[4,4,[[39,2,2,0,2,[[953,2,2,0,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]],[51,1,1,3,4,[[1114,1,1,3,4]]]],[24009,24014,27914,29620]]],["+",[3,3,[[39,2,2,0,2,[[953,2,2,0,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]]],[24009,24014,29620]]],["meet",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27914]]]]},{"k":"G530","v":[["*",[15,15,[[46,1,1,0,1,[[1088,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]],[57,8,8,3,11,[[1138,1,1,3,4],[1141,4,4,4,8],[1142,1,1,8,9],[1144,2,2,9,11]]],[59,2,2,11,13,[[1153,2,2,11,13]]],[64,2,2,13,15,[[1166,2,2,13,15]]]],[29014,29458,29588,30048,30112,30131,30132,30133,30135,30238,30239,30442,30444,30675,30677]]],["+",[3,3,[[49,1,1,0,1,[[1106,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]]],[29458,29588,30048]]],["more",[2,2,[[57,2,2,0,2,[[1144,2,2,0,2]]]],[30238,30239]]],["once",[10,10,[[46,1,1,0,1,[[1088,1,1,0,1]]],[57,5,5,1,6,[[1141,4,4,1,5],[1142,1,1,5,6]]],[59,2,2,6,8,[[1153,2,2,6,8]]],[64,2,2,8,10,[[1166,2,2,8,10]]]],[29014,30112,30131,30132,30133,30135,30442,30444,30675,30677]]]]},{"k":"G531","v":[["unchangeable",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30088]]]]},{"k":"G532","v":[["unprepared",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28960]]]]},{"k":"G533","v":[["*",[13,13,[[39,4,4,0,4,[[944,1,1,0,1],[954,3,3,1,4]]],[40,4,4,4,8,[[964,1,1,4,5],[970,3,3,5,8]]],[41,4,4,8,12,[[981,1,1,8,9],[984,1,1,9,10],[994,2,2,10,12]]],[42,1,1,12,13,[[1009,1,1,12,13]]]],[23696,24088,24089,24129,24534,24784,24785,24826,25324,25468,25898,25925,26668]]],["+",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24785]]],["denied",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[42,1,1,1,2,[[1009,1,1,1,2]]]],[25468,26668]]],["deny",[10,10,[[39,4,4,0,4,[[944,1,1,0,1],[954,3,3,1,4]]],[40,3,3,4,7,[[964,1,1,4,5],[970,2,2,5,7]]],[41,3,3,7,10,[[981,1,1,7,8],[994,2,2,8,10]]]],[23696,24088,24089,24129,24534,24784,24826,25324,25898,25925]]]]},{"k":"G534","v":[["henceforth",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30939]]]]},{"k":"G535","v":[["+",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25581]]]]},{"k":"G536","v":[["*",[8,8,[[44,3,3,0,3,[[1053,1,1,0,1],[1056,1,1,1,2],[1061,1,1,2,3]]],[45,3,3,3,6,[[1076,2,2,3,5],[1077,1,1,5,6]]],[58,1,1,6,7,[[1146,1,1,6,7]]],[65,1,1,7,8,[[1180,1,1,7,8]]]],[28139,28225,28341,28738,28741,28791,30284,30930]]],["firstfruit",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28225]]],["firstfruits",[7,7,[[44,2,2,0,2,[[1053,1,1,0,1],[1061,1,1,1,2]]],[45,3,3,2,5,[[1076,2,2,2,4],[1077,1,1,4,5]]],[58,1,1,5,6,[[1146,1,1,5,6]]],[65,1,1,6,7,[[1180,1,1,6,7]]]],[28139,28341,28738,28741,28791,30284,30930]]]]},{"k":"G537","v":[["*",[44,43,[[39,3,3,0,3,[[934,1,1,0,1],[952,1,1,1,2],[956,1,1,2,3]]],[40,4,4,3,7,[[961,1,1,3,4],[964,1,1,4,5],[967,1,1,5,6],[972,1,1,6,7]]],[41,20,19,7,26,[[974,1,1,7,8],[975,2,2,8,10],[976,1,1,10,11],[977,3,3,11,14],[979,1,1,14,15],[980,1,1,15,16],[981,1,1,16,17],[987,1,1,17,18],[989,2,2,18,20],[991,3,3,20,23],[993,3,2,23,25],[995,1,1,25,26]]],[43,15,15,26,41,[[1019,4,4,26,30],[1021,2,2,30,32],[1022,2,2,32,34],[1023,1,1,34,35],[1027,1,1,35,36],[1028,1,1,36,37],[1030,1,1,37,38],[1033,2,2,38,40],[1044,1,1,40,41]]],[48,1,1,41,42,[[1102,1,1,41,42]]],[58,1,1,42,43,[[1148,1,1,42,43]]]],[23314,23996,24206,24404,24525,24672,24888,25012,25041,25046,25069,25118,25133,25135,25211,25282,25316,25601,25678,25680,25738,25768,25779,25830,25838,25936,26950,26953,26963,26993,27053,27054,27071,27075,27116,27267,27317,27391,27486,27511,27888,29350,30321]]],["+",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,2,2,2,4,[[977,1,1,2,3],[987,1,1,3,4]]]],[23996,24404,25133,25601]]],["All",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25069]]],["all",[31,30,[[39,2,2,0,2,[[934,1,1,0,1],[956,1,1,1,2]]],[40,2,2,2,4,[[967,1,1,2,3],[972,1,1,3,4]]],[41,13,12,4,16,[[975,2,2,4,6],[977,2,2,6,8],[979,1,1,8,9],[981,1,1,9,10],[989,2,2,10,12],[991,2,2,12,14],[993,3,2,14,16]]],[43,12,12,16,28,[[1019,3,3,16,19],[1021,1,1,19,20],[1022,1,1,20,21],[1023,1,1,21,22],[1027,1,1,22,23],[1028,1,1,23,24],[1030,1,1,24,25],[1033,2,2,25,27],[1044,1,1,27,28]]],[48,1,1,28,29,[[1102,1,1,28,29]]],[58,1,1,29,30,[[1148,1,1,29,30]]]],[23314,24206,24672,24888,25041,25046,25118,25135,25211,25316,25678,25680,25738,25779,25830,25838,26950,26953,26963,27053,27071,27116,27267,27317,27391,27486,27511,27888,29350,30321]]],["man",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24525]]],["one",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27075]]],["things",[3,3,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,2,2,1,3,[[1019,1,1,1,2],[1021,1,1,2,3]]]],[25012,26993,27054]]],["whole",[3,3,[[41,3,3,0,3,[[980,1,1,0,1],[991,1,1,1,2],[995,1,1,2,3]]]],[25282,25768,25936]]]]},{"k":"G538","v":[["*",[4,3,[[48,1,1,0,1,[[1101,1,1,0,1]]],[53,2,1,1,2,[[1120,2,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[29310,29730,30292]]],["deceive",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29310]]],["deceived",[2,1,[[53,2,1,0,1,[[1120,2,1,0,1]]]],[29730]]],["deceiveth",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30292]]]]},{"k":"G539","v":[["*",[7,7,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]],[50,1,1,3,4,[[1108,1,1,3,4]]],[52,1,1,4,5,[[1117,1,1,4,5]]],[57,1,1,5,6,[[1135,1,1,5,6]]],[60,1,1,6,7,[[1157,1,1,6,7]]]],[23561,24342,29294,29502,29671,30008,30513]]],["deceit",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29502]]],["deceitful",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29294]]],["deceitfulness",[3,3,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[57,1,1,2,3,[[1135,1,1,2,3]]]],[23561,24342,30008]]],["deceivableness",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29671]]],["deceivings",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30513]]]]},{"k":"G540","v":[["father",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30067]]]]},{"k":"G541","v":[["brightness",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29966]]]]},{"k":"G542","v":[["+",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29414]]]]},{"k":"G543","v":[["*",[7,7,[[44,2,2,0,2,[[1056,2,2,0,2]]],[48,2,2,2,4,[[1098,1,1,2,3],[1101,1,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]],[57,2,2,5,7,[[1136,2,2,5,7]]]],[28239,28241,29231,29310,29523,30020,30025]]],["disobedience",[3,3,[[48,2,2,0,2,[[1098,1,1,0,1],[1101,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]]],[29231,29310,29523]]],["unbelief",[4,4,[[44,2,2,0,2,[[1056,2,2,0,2]]],[57,2,2,2,4,[[1136,2,2,2,4]]]],[28239,28241,30020,30025]]]]},{"k":"G544","v":[["*",[16,16,[[42,1,1,0,1,[[999,1,1,0,1]]],[43,3,3,1,4,[[1031,1,1,1,2],[1034,1,1,2,3],[1036,1,1,3,4]]],[44,5,5,4,9,[[1047,1,1,4,5],[1055,1,1,5,6],[1056,2,2,6,8],[1060,1,1,8,9]]],[57,2,2,9,11,[[1135,1,1,9,10],[1143,1,1,10,11]]],[59,5,5,11,16,[[1152,2,2,11,13],[1153,2,2,13,15],[1154,1,1,15,16]]]],[26156,27416,27528,27594,27970,28209,28239,28240,28334,30013,30203,30406,30407,30425,30444,30463]]],["+",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27970]]],["believe",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28334]]],["believed",[2,2,[[44,2,2,0,2,[[1056,2,2,0,2]]]],[28239,28240]]],["believeth",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26156]]],["disobedient",[4,4,[[44,1,1,0,1,[[1055,1,1,0,1]]],[59,3,3,1,4,[[1152,2,2,1,3],[1153,1,1,3,4]]]],[28209,30406,30407,30444]]],["not",[6,6,[[43,2,2,0,2,[[1034,1,1,0,1],[1036,1,1,1,2]]],[57,2,2,2,4,[[1135,1,1,2,3],[1143,1,1,3,4]]],[59,2,2,4,6,[[1153,1,1,4,5],[1154,1,1,5,6]]]],[27528,27594,30013,30203,30425,30463]]],["unbelieving",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27416]]]]},{"k":"G545","v":[["disobedient",[6,6,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[54,1,1,3,4,[[1127,1,1,3,4]]],[55,2,2,4,6,[[1129,1,1,4,5],[1131,1,1,5,6]]]],[24910,27842,27960,29855,29908,29926]]]]},{"k":"G546","v":[["*",[2,2,[[43,1,1,0,1,[[1021,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[27039,30422]]],["+",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27039]]],["threatened",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30422]]]]},{"k":"G547","v":[["*",[4,4,[[43,3,3,0,3,[[1021,2,2,0,2],[1026,1,1,2,3]]],[48,1,1,3,4,[[1102,1,1,3,4]]]],[27039,27051,27217,29346]]],["+",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27039]]],["threatening",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29346]]],["threatenings",[2,2,[[43,2,2,0,2,[[1021,1,1,0,1],[1026,1,1,1,2]]]],[27051,27217]]]]},{"k":"G548","v":[["absent",[7,7,[[45,1,1,0,1,[[1066,1,1,0,1]]],[46,4,4,1,5,[[1087,2,2,1,3],[1090,2,2,3,5]]],[49,1,1,5,6,[[1103,1,1,5,6]]],[50,1,1,6,7,[[1108,1,1,6,7]]]],[28457,28972,28982,29045,29053,29388,29499]]]]},{"k":"G549","v":[["went",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27533]]]]},{"k":"G550","v":[["renounced",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28861]]]]},{"k":"G551","v":[["+",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30279]]]]},{"k":"G552","v":[["unskilful",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30043]]]]},{"k":"G553","v":[["for",[7,7,[[44,3,3,0,3,[[1053,3,3,0,3]]],[45,1,1,3,4,[[1062,1,1,3,4]]],[47,1,1,4,5,[[1095,1,1,4,5]]],[49,1,1,5,6,[[1105,1,1,5,6]]],[57,1,1,6,7,[[1141,1,1,6,7]]]],[28135,28139,28141,28370,29167,29441,30133]]]]},{"k":"G554","v":[["*",[2,2,[[50,2,2,0,2,[[1108,1,1,0,1],[1109,1,1,1,2]]]],[29509,29526]]],["off",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29526]]],["spoiled",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29509]]]]},{"k":"G555","v":[["off",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29505]]]]},{"k":"G556","v":[["drave",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27573]]]]},{"k":"G557","v":[["+",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27612]]]]},{"k":"G558","v":[["freeman",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28509]]]]},{"k":"G559","v":[["Apelles",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28346]]]]},{"k":"G560","v":[["+",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25181]]]]},{"k":"G561","v":[["*",[6,6,[[39,3,3,0,3,[[949,1,1,0,1],[955,2,2,1,3]]],[43,2,2,3,5,[[1020,1,1,3,4],[1034,1,1,4,5]]],[44,1,1,5,6,[[1048,1,1,5,6]]]],[23828,24153,24190,27012,27530,28009]]],["against",[2,2,[[39,2,2,0,2,[[949,1,1,0,1],[955,1,1,1,2]]]],[23828,24190]]],["before",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]]],[24153,28009]]],["contrary",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27530]]],["presence",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27012]]]]},{"k":"G562","v":[["endless",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29700]]]]},{"k":"G563","v":[["distraction",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28522]]]]},{"k":"G564","v":[["uncircumcised",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27167]]]]},{"k":"G565","v":[["*",[120,118,[[39,35,35,0,35,[[930,1,1,0,1],[932,1,1,1,2],[936,6,6,2,8],[937,1,1,8,9],[938,1,1,9,10],[941,3,3,10,13],[942,3,3,13,16],[944,2,2,16,18],[946,1,1,18,19],[947,1,1,19,20],[948,1,1,20,21],[949,2,2,21,23],[950,2,2,23,25],[953,4,4,25,29],[954,3,3,29,32],[955,2,2,32,34],[956,1,1,34,35]]],[40,23,23,35,58,[[957,3,3,35,38],[959,1,1,38,39],[961,3,3,39,42],[962,5,5,42,47],[963,2,2,47,49],[964,1,1,49,50],[965,1,1,50,51],[966,1,1,51,52],[967,1,1,52,53],[968,1,1,53,54],[970,3,3,54,57],[972,1,1,57,58]]],[41,23,23,58,81,[[973,2,2,58,60],[974,1,1,60,61],[977,3,3,61,64],[979,1,1,64,65],[980,4,4,65,69],[981,4,4,69,73],[982,1,1,73,74],[989,1,1,74,75],[991,1,1,75,76],[994,2,2,76,78],[995,1,1,78,79],[996,2,2,79,81]]],[42,22,21,81,102,[[1000,5,5,81,86],[1001,1,1,86,87],[1002,4,4,87,91],[1005,2,2,91,93],[1006,1,1,93,94],[1007,3,3,94,97],[1008,2,2,97,99],[1012,2,1,99,100],[1014,1,1,100,101],[1016,1,1,101,102]]],[43,5,5,102,107,[[1021,1,1,102,103],[1022,1,1,103,104],[1026,1,1,104,105],[1027,1,1,105,106],[1045,1,1,106,107]]],[44,1,1,107,108,[[1060,1,1,107,108]]],[47,1,1,108,109,[[1091,1,1,108,109]]],[58,1,1,109,110,[[1146,1,1,109,110]]],[64,1,1,110,111,[[1166,1,1,110,111]]],[65,8,7,111,118,[[1175,1,1,111,112],[1176,1,1,112,113],[1177,1,1,113,114],[1178,1,1,114,115],[1182,1,1,115,116],[1184,2,1,116,117],[1187,1,1,117,118]]]],[23191,23233,23363,23364,23366,23376,23377,23378,23386,23422,23564,23567,23585,23612,23613,23622,23676,23693,23757,23784,23796,23855,23856,23877,23894,24018,24026,24033,24054,24090,24096,24098,24134,24189,24205,24235,24250,24257,24301,24381,24384,24388,24434,24439,24443,24444,24453,24487,24493,24513,24581,24610,24644,24685,24764,24766,24793,24886,24916,24931,24988,25120,25121,25132,25219,25276,25279,25282,25284,25313,25358,25360,25361,25393,25674,25763,25868,25877,25968,26003,26015,26159,26164,26184,26199,26203,26225,26258,26279,26323,26325,26447,26451,26521,26551,26569,26577,26599,26616,26733,26791,26877,27037,27085,27233,27266,27928,28331,29074,30290,30679,30852,30870,30886,30908,30956,31007,31057]]],["+",[2,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[42,1,1,1,2,[[1012,1,1,1,2]]]],[25674,26733]]],["Go",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23422]]],["aside",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27037]]],["away",[14,14,[[39,5,5,0,5,[[936,1,1,0,1],[947,1,1,1,2],[953,1,1,2,3],[954,2,2,3,5]]],[40,2,2,5,7,[[966,1,1,5,6],[970,1,1,6,7]]],[41,1,1,7,8,[[974,1,1,7,8]]],[42,5,5,8,13,[[1000,1,1,8,9],[1002,1,1,9,10],[1006,1,1,10,11],[1012,1,1,11,12],[1016,1,1,12,13]]],[65,1,1,13,14,[[1187,1,1,13,14]]]],[23376,23784,24054,24096,24098,24610,24793,24988,26164,26279,26521,26733,26877,31057]]],["came",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24301]]],["come",[3,3,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]],[44,1,1,2,3,[[1060,1,1,2,3]]]],[24493,25968,28331]]],["depart",[4,4,[[39,2,2,0,2,[[936,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[961,1,1,2,3]]],[41,1,1,3,4,[[980,1,1,3,4]]]],[23363,23613,24381,25282]]],["departed",[23,22,[[39,3,3,0,3,[[937,1,1,0,1],[944,1,1,1,2],[955,1,1,2,3]]],[40,6,6,3,9,[[957,2,2,3,5],[961,1,1,5,6],[962,2,2,6,8],[964,1,1,8,9]]],[41,7,7,9,16,[[973,2,2,9,11],[977,2,2,11,13],[979,1,1,13,14],[982,1,1,14,15],[996,1,1,15,16]]],[42,3,3,16,19,[[1000,1,1,16,17],[1001,1,1,17,18],[1008,1,1,18,19]]],[43,2,2,19,21,[[1027,1,1,19,20],[1045,1,1,20,21]]],[65,2,1,21,22,[[1184,2,1,21,22]]]],[23386,23676,24189,24250,24257,24384,24439,24453,24513,24916,24931,25120,25132,25219,25393,26003,26159,26225,26616,27266,27928,31007]]],["go",[16,16,[[39,7,7,0,7,[[930,1,1,0,1],[936,1,1,1,2],[941,1,1,2,3],[942,1,1,3,4],[944,1,1,4,5],[954,1,1,5,6],[956,1,1,6,7]]],[40,4,4,7,11,[[962,2,2,7,9],[965,1,1,9,10],[970,1,1,10,11]]],[41,4,4,11,15,[[977,1,1,11,12],[981,3,3,12,15]]],[42,1,1,15,16,[[1002,1,1,15,16]]]],[23191,23366,23567,23612,23693,24090,24205,24443,24444,24581,24766,25121,25313,25360,25361,26325]]],["goest",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[23364,25358]]],["going",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30679]]],["gone",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26599]]],["out",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25276]]],["past",[2,2,[[65,2,2,0,2,[[1175,1,1,0,1],[1177,1,1,1,2]]]],[30852,30886]]],["way",[13,13,[[39,3,3,0,3,[[941,1,1,0,1],[948,1,1,1,2],[950,1,1,2,3]]],[40,2,2,3,5,[[967,1,1,3,4],[968,1,1,4,5]]],[41,3,3,5,8,[[980,1,1,5,6],[991,1,1,6,7],[994,1,1,7,8]]],[42,3,3,8,11,[[1000,1,1,8,9],[1005,1,1,9,10],[1007,1,1,10,11]]],[43,1,1,11,12,[[1026,1,1,11,12]]],[58,1,1,12,13,[[1146,1,1,12,13]]]],[23564,23796,23894,24644,24685,25284,25763,25868,26184,26447,26551,27233,30290]]],["ways",[3,3,[[39,2,2,0,2,[[936,1,1,0,1],[950,1,1,1,2]]],[42,1,1,2,3,[[1007,1,1,2,3]]]],[23378,23877,26569]]],["went",[32,32,[[39,11,11,0,11,[[932,1,1,0,1],[936,1,1,1,2],[941,1,1,2,3],[942,1,1,3,4],[946,1,1,4,5],[949,2,2,5,7],[953,3,3,7,10],[955,1,1,10,11]]],[40,6,6,11,17,[[957,1,1,11,12],[961,1,1,12,13],[962,1,1,13,14],[963,1,1,14,15],[970,1,1,15,16],[972,1,1,16,17]]],[41,3,3,17,20,[[980,1,1,17,18],[994,1,1,18,19],[996,1,1,19,20]]],[42,7,7,20,27,[[1000,2,2,20,22],[1002,2,2,22,24],[1005,1,1,24,25],[1007,1,1,25,26],[1014,1,1,26,27]]],[43,1,1,27,28,[[1022,1,1,27,28]]],[47,1,1,28,29,[[1091,1,1,28,29]]],[65,3,3,29,32,[[1176,1,1,29,30],[1178,1,1,30,31],[1182,1,1,31,32]]]],[23233,23377,23585,23622,23757,23855,23856,24018,24026,24033,24134,24235,24388,24434,24487,24764,24886,25279,25877,26015,26199,26203,26258,26323,26451,26577,26791,27085,29074,30870,30908,30956]]]]},{"k":"G566","v":[["enough",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24795]]]]},{"k":"G567","v":[["*",[6,6,[[43,2,2,0,2,[[1032,2,2,0,2]]],[51,2,2,2,4,[[1114,1,1,2,3],[1115,1,1,3,4]]],[53,1,1,4,5,[[1122,1,1,4,5]]],[59,1,1,5,6,[[1152,1,1,5,6]]]],[27462,27471,29606,29643,29750,30410]]],["Abstain",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29643]]],["abstain",[5,5,[[43,2,2,0,2,[[1032,2,2,0,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]],[53,1,1,3,4,[[1122,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[27462,27471,29606,29750,30410]]]]},{"k":"G568","v":[["*",[11,11,[[39,4,4,0,4,[[934,3,3,0,3],[943,1,1,3,4]]],[40,1,1,4,5,[[963,1,1,4,5]]],[41,4,4,5,9,[[978,1,1,5,6],[979,1,1,6,7],[987,1,1,7,8],[996,1,1,8,9]]],[49,1,1,9,10,[[1106,1,1,9,10]]],[56,1,1,10,11,[[1132,1,1,10,11]]]],[23284,23287,23298,23641,24469,25170,25201,25608,26004,29460,29953]]],["+",[2,2,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]]],[24469,25608]]],["have",[4,4,[[39,3,3,0,3,[[934,3,3,0,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]]],[23284,23287,23298,29460]]],["is",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23641]]],["receive",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29953]]],["received",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25170]]],["was",[2,2,[[41,2,2,0,2,[[979,1,1,0,1],[996,1,1,1,2]]]],[25201,26004]]]]},{"k":"G569","v":[["*",[7,7,[[40,2,2,0,2,[[972,2,2,0,2]]],[41,2,2,2,4,[[996,2,2,2,4]]],[43,1,1,4,5,[[1045,1,1,4,5]]],[44,1,1,5,6,[[1048,1,1,5,6]]],[54,1,1,6,7,[[1126,1,1,6,7]]]],[24884,24889,26002,26032,27923,27994,29840]]],["+",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26002]]],["believe",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[27994]]],["not",[5,5,[[40,2,2,0,2,[[972,2,2,0,2]]],[41,1,1,2,3,[[996,1,1,2,3]]],[43,1,1,3,4,[[1045,1,1,3,4]]],[54,1,1,4,5,[[1126,1,1,4,5]]]],[24884,24889,26032,27923,29840]]]]},{"k":"G570","v":[["*",[12,12,[[39,2,2,0,2,[[941,1,1,0,1],[945,1,1,1,2]]],[40,3,3,2,5,[[962,1,1,2,3],[965,1,1,3,4],[972,1,1,4,5]]],[44,4,4,5,9,[[1048,1,1,5,6],[1049,1,1,6,7],[1056,2,2,7,9]]],[53,1,1,9,10,[[1119,1,1,9,10]]],[57,2,2,10,12,[[1135,2,2,10,12]]]],[23597,23720,24413,24562,24887,27994,28042,28229,28232,29709,30007,30014]]],["+",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[27994]]],["unbelief",[11,11,[[39,2,2,0,2,[[941,1,1,0,1],[945,1,1,1,2]]],[40,3,3,2,5,[[962,1,1,2,3],[965,1,1,3,4],[972,1,1,4,5]]],[44,3,3,5,8,[[1049,1,1,5,6],[1056,2,2,6,8]]],[53,1,1,8,9,[[1119,1,1,8,9]]],[57,2,2,9,11,[[1135,2,2,9,11]]]],[23597,23720,24413,24562,24887,28042,28229,28232,29709,30007,30014]]]]},{"k":"G571","v":[["*",[23,21,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,2,2,2,4,[[981,1,1,2,3],[984,1,1,3,4]]],[42,1,1,4,5,[[1016,1,1,4,5]]],[43,1,1,5,6,[[1043,1,1,5,6]]],[45,11,9,6,15,[[1067,1,1,6,7],[1068,5,4,7,11],[1071,1,1,11,12],[1075,4,3,12,15]]],[46,3,3,15,18,[[1081,1,1,15,16],[1083,2,2,16,18]]],[53,1,1,18,19,[[1123,1,1,18,19]]],[55,1,1,19,20,[[1129,1,1,19,20]]],[65,1,1,20,21,[[1187,1,1,20,21]]]],[23717,24557,25342,25505,26894,27831,28473,28499,28500,28501,28502,28594,28700,28701,28702,28863,28912,28913,29771,29907,31061]]],["faithless",[4,4,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[42,1,1,3,4,[[1016,1,1,3,4]]]],[23717,24557,25342,26894]]],["incredible",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27831]]],["infidel",[2,2,[[46,1,1,0,1,[[1083,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[28913,29771]]],["not",[7,6,[[45,6,5,0,5,[[1068,2,2,0,2],[1071,1,1,2,3],[1075,3,2,3,5]]],[46,1,1,5,6,[[1081,1,1,5,6]]]],[28499,28500,28594,28700,28702,28863]]],["unbelievers",[4,4,[[41,1,1,0,1,[[984,1,1,0,1]]],[45,2,2,1,3,[[1067,1,1,1,2],[1075,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]]],[25505,28473,28701,28912]]],["unbelieving",[5,4,[[45,3,2,0,2,[[1068,3,2,0,2]]],[55,1,1,2,3,[[1129,1,1,2,3]]],[65,1,1,3,4,[[1187,1,1,3,4]]]],[28501,28502,29907,31061]]]]},{"k":"G572","v":[["*",[8,8,[[44,1,1,0,1,[[1057,1,1,0,1]]],[46,5,5,1,6,[[1078,1,1,1,2],[1085,1,1,2,3],[1086,2,2,3,5],[1088,1,1,5,6]]],[48,1,1,6,7,[[1102,1,1,6,7]]],[50,1,1,7,8,[[1109,1,1,7,8]]]],[28253,28812,28934,28967,28969,28992,29342,29539]]],["bountifulness",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28967]]],["liberal",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28969]]],["liberality",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28934]]],["simplicity",[3,3,[[44,1,1,0,1,[[1057,1,1,0,1]]],[46,2,2,1,3,[[1078,1,1,1,2],[1088,1,1,2,3]]]],[28253,28812,28992]]],["singleness",[2,2,[[48,1,1,0,1,[[1102,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29342,29539]]]]},{"k":"G573","v":[["single",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23304,25439]]]]},{"k":"G574","v":[["liberally",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30271]]]]},{"k":"G575","v":[["*",[649,595,[[39,118,105,0,105,[[929,5,3,0,3],[930,2,2,3,5],[931,4,4,5,9],[932,2,2,9,11],[933,4,4,11,15],[934,1,1,15,16],[935,7,5,16,21],[936,4,4,21,25],[937,3,3,25,28],[938,2,2,28,30],[939,4,4,30,34],[940,2,2,34,36],[941,4,4,36,40],[942,4,4,40,44],[943,6,5,44,49],[944,6,4,49,53],[945,7,4,53,57],[946,3,3,57,60],[947,3,3,60,63],[948,2,2,63,65],[949,3,3,65,68],[950,1,1,68,69],[951,4,4,69,73],[952,6,6,73,79],[953,7,5,79,84],[954,7,7,84,91],[955,11,10,91,101],[956,4,4,101,105]]],[40,50,48,105,153,[[957,3,3,105,108],[958,1,1,108,109],[959,5,3,109,112],[960,1,1,112,113],[961,5,5,113,118],[962,2,2,118,120],[963,7,7,120,127],[964,3,3,127,130],[965,1,1,130,131],[966,2,2,131,133],[967,1,1,133,134],[968,3,3,134,137],[969,3,3,137,140],[970,4,4,140,144],[971,7,7,144,151],[972,2,2,151,153]]],[41,120,110,153,263,[[973,5,5,153,158],[974,4,4,158,162],[975,1,1,162,163],[976,5,5,163,168],[977,7,7,168,175],[978,4,3,175,178],[979,4,4,178,182],[980,11,10,182,192],[981,9,8,192,200],[982,3,3,200,203],[983,6,4,203,207],[984,8,8,207,215],[985,6,5,215,220],[986,1,1,220,221],[987,1,1,221,222],[988,7,6,222,228],[989,3,2,228,230],[990,2,2,230,232],[991,6,5,232,237],[992,2,2,237,239],[993,3,3,239,242],[994,8,7,242,249],[995,4,4,249,253],[996,10,10,253,263]]],[42,41,39,263,302,[[997,3,3,263,266],[999,1,1,266,267],[1001,2,2,267,269],[1003,4,4,269,273],[1004,4,4,273,277],[1006,3,2,277,279],[1007,4,4,279,283],[1008,2,2,283,285],[1009,2,2,285,287],[1010,2,2,287,289],[1011,2,2,289,291],[1012,3,3,291,294],[1014,2,2,294,296],[1015,2,2,296,298],[1017,5,4,298,302]]],[43,111,103,302,405,[[1018,6,5,302,307],[1019,5,5,307,312],[1020,4,4,312,316],[1022,4,4,316,320],[1023,1,1,320,321],[1024,1,1,321,322],[1025,5,5,322,327],[1026,4,4,327,331],[1027,6,6,331,337],[1028,3,3,337,340],[1029,5,5,340,345],[1030,9,8,345,353],[1031,2,2,353,355],[1032,10,9,355,364],[1033,3,3,364,367],[1034,3,3,367,370],[1035,5,5,370,375],[1036,5,3,375,378],[1037,7,5,378,383],[1038,5,5,383,388],[1039,4,4,388,392],[1040,3,3,392,395],[1041,2,2,395,397],[1042,2,2,397,399],[1043,2,2,399,401],[1044,2,2,401,403],[1045,3,2,403,405]]],[44,25,25,405,430,[[1046,3,3,405,408],[1050,2,2,408,410],[1051,3,3,410,413],[1052,3,3,413,416],[1053,4,4,416,420],[1054,1,1,420,421],[1056,2,2,421,423],[1058,1,1,423,424],[1060,5,5,424,429],[1061,1,1,429,430]]],[45,9,9,430,439,[[1062,2,2,430,432],[1065,1,1,432,433],[1067,1,1,433,434],[1068,2,2,434,436],[1071,1,1,436,437],[1072,1,1,437,438],[1075,1,1,438,439]]],[46,18,17,439,456,[[1078,3,3,439,442],[1079,2,2,442,444],[1080,3,2,444,446],[1082,2,2,446,448],[1084,2,2,448,450],[1085,1,1,450,451],[1086,1,1,451,452],[1087,1,1,452,453],[1088,2,2,453,455],[1089,1,1,455,456]]],[47,7,7,456,463,[[1091,3,3,456,459],[1092,2,2,459,461],[1093,1,1,461,462],[1094,1,1,462,463]]],[48,4,4,463,467,[[1097,1,1,463,464],[1099,1,1,464,465],[1100,1,1,465,466],[1102,1,1,466,467]]],[49,4,4,467,471,[[1103,3,3,467,470],[1106,1,1,470,471]]],[50,9,8,471,479,[[1107,7,6,471,477],[1108,1,1,477,478],[1109,1,1,478,479]]],[51,11,10,479,489,[[1111,4,4,479,483],[1112,3,2,483,485],[1113,1,1,485,486],[1114,2,2,486,488],[1115,1,1,488,489]]],[52,9,8,489,497,[[1116,4,3,489,492],[1117,2,2,492,494],[1118,3,3,494,497]]],[53,4,4,497,501,[[1119,1,1,497,498],[1121,1,1,498,499],[1124,2,2,499,501]]],[54,7,7,501,508,[[1125,2,2,501,503],[1126,2,2,503,505],[1127,1,1,505,506],[1128,2,2,506,508]]],[55,2,2,508,510,[[1129,1,1,508,509],[1130,1,1,509,510]]],[56,1,1,510,511,[[1132,1,1,510,511]]],[57,23,22,511,533,[[1135,1,1,511,512],[1136,4,3,512,515],[1137,2,2,515,517],[1138,2,2,517,519],[1139,4,4,519,523],[1140,1,1,523,524],[1141,2,2,524,526],[1142,1,1,526,527],[1143,3,3,527,530],[1144,2,2,530,532],[1145,1,1,532,533]]],[58,6,6,533,539,[[1146,3,3,533,536],[1149,1,1,536,537],[1150,2,2,537,539]]],[59,4,3,539,542,[[1151,1,1,539,540],[1153,1,1,540,541],[1154,2,1,541,542]]],[60,2,1,542,543,[[1158,2,1,542,543]]],[61,18,16,543,559,[[1159,4,4,543,547],[1160,9,7,547,554],[1161,3,3,554,557],[1162,1,1,557,558],[1163,1,1,558,559]]],[62,2,2,559,561,[[1164,2,2,559,561]]],[63,1,1,561,562,[[1165,1,1,561,562]]],[64,2,2,562,564,[[1166,2,2,562,564]]],[65,41,31,564,595,[[1167,4,2,564,566],[1168,1,1,566,567],[1169,1,1,567,568],[1172,4,3,568,571],[1173,2,2,571,573],[1175,1,1,573,574],[1178,2,2,574,576],[1179,1,1,576,577],[1180,3,3,577,580],[1182,4,3,580,583],[1183,1,1,583,584],[1184,6,4,584,588],[1186,2,2,588,590],[1187,7,4,590,594],[1188,2,1,594,595]]]],[23161,23165,23168,23170,23185,23196,23199,23205,23208,23226,23234,23252,23263,23264,23276,23295,23320,23331,23332,23336,23339,23346,23356,23375,23379,23394,23395,23401,23434,23445,23471,23478,23484,23488,23527,23532,23540,23551,23574,23583,23599,23610,23623,23626,23634,23641,23655,23660,23661,23678,23683,23684,23693,23709,23718,23725,23726,23735,23736,23762,23763,23766,23770,23800,23821,23834,23837,23869,23918,23951,23952,23953,23957,23958,23978,23984,23986,23988,23989,24036,24037,24040,24042,24049,24070,24083,24093,24096,24101,24112,24118,24138,24150,24153,24169,24171,24174,24180,24184,24186,24193,24197,24199,24202,24203,24224,24225,24257,24280,24295,24296,24310,24348,24370,24381,24393,24398,24399,24440,24450,24464,24467,24469,24478,24480,24491,24496,24511,24515,24531,24547,24594,24634,24652,24675,24707,24711,24736,24744,24745,24789,24790,24806,24808,24847,24856,24858,24864,24866,24869,24871,24881,24882,24895,24931,24941,24945,24963,24977,24988,25009,25010,25032,25064,25076,25098,25104,25105,25110,25115,25117,25120,25122,25142,25143,25159,25163,25176,25201,25216,25230,25240,25247,25248,25257,25263,25274,25278,25280,25282,25283,25291,25306,25323,25334,25338,25339,25340,25346,25355,25384,25393,25405,25409,25429,25455,25456,25460,25463,25474,25479,25511,25513,25516,25517,25533,25534,25543,25545,25547,25571,25604,25623,25636,25638,25641,25643,25650,25676,25680,25691,25722,25734,25755,25757,25770,25773,25789,25825,25837,25852,25856,25882,25905,25906,25907,25909,25933,25935,25940,25961,25984,25986,25993,26000,26004,26012,26018,26022,26032,26033,26038,26042,26088,26089,26095,26122,26229,26240,26345,26346,26356,26370,26390,26409,26423,26425,26486,26499,26524,26541,26574,26576,26601,26616,26633,26649,26675,26678,26703,26726,26739,26748,26756,26813,26819,26852,26863,26900,26904,26906,26908,26927,26932,26934,26935,26945,26954,26966,26967,26971,26989,27015,27017,27020,27022,27061,27062,27097,27100,27110,27161,27186,27198,27202,27209,27211,27219,27224,27229,27234,27276,27280,27282,27289,27296,27297,27318,27326,27334,27338,27347,27351,27356,27357,27370,27375,27376,27385,27391,27393,27401,27412,27429,27433,27443,27447,27449,27460,27461,27462,27475,27480,27481,27494,27501,27516,27525,27536,27550,27559,27562,27563,27573,27578,27594,27597,27598,27632,27635,27643,27644,27652,27665,27671,27674,27680,27691,27715,27726,27733,27734,27755,27757,27768,27780,27787,27797,27803,27827,27841,27876,27899,27920,27922,27937,27948,27950,28056,28061,28075,28086,28090,28093,28094,28097,28118,28137,28151,28155,28158,28234,28235,28267,28318,28322,28326,28327,28334,28353,28366,28393,28438,28486,28497,28514,28581,28623,28714,28802,28814,28816,28827,28829,28846,28859,28883,28893,28917,28929,28942,28958,28978,28992,28998,29030,29058,29060,29063,29087,29093,29104,29155,29208,29260,29303,29360,29363,29366,29389,29457,29467,29471,29472,29474,29488,29491,29514,29541,29561,29568,29569,29570,29576,29587,29596,29606,29619,29643,29651,29656,29658,29663,29674,29680,29681,29684,29698,29738,29793,29798,29811,29812,29846,29848,29868,29874,29888,29896,29922,29941,30007,30017,30018,30024,30037,30038,30045,30051,30065,30066,30077,30090,30103,30119,30131,30155,30184,30187,30206,30227,30237,30265,30279,30283,30293,30344,30358,30373,30386,30434,30463,30526,30541,30545,30547,30549,30557,30563,30564,30570,30574,30577,30578,30587,30590,30596,30624,30645,30650,30651,30665,30686,30695,30701,30702,30734,30758,30797,30803,30809,30812,30827,30846,30897,30905,30916,30929,30930,30946,30966,30971,30972,30983,31003,31007,31008,31010,31047,31049,31055,31057,31063,31066,31099]]],["+",[40,40,[[39,9,9,0,9,[[938,1,1,0,1],[951,2,2,1,3],[953,2,2,3,5],[954,3,3,5,8],[955,1,1,8,9]]],[40,3,3,9,12,[[961,1,1,9,10],[970,1,1,10,11],[971,1,1,11,12]]],[41,7,7,12,19,[[973,2,2,12,14],[985,1,1,14,15],[988,1,1,15,16],[994,1,1,16,17],[996,2,2,17,19]]],[42,2,2,19,21,[[997,1,1,19,20],[1009,1,1,20,21]]],[43,5,5,21,26,[[1020,1,1,21,22],[1032,2,2,22,24],[1037,1,1,24,25],[1041,1,1,25,26]]],[44,3,3,26,29,[[1060,2,2,26,28],[1061,1,1,28,29]]],[46,4,4,29,33,[[1079,1,1,29,30],[1082,1,1,30,31],[1085,1,1,31,32],[1086,1,1,32,33]]],[54,1,1,33,34,[[1128,1,1,33,34]]],[57,1,1,34,35,[[1137,1,1,34,35]]],[60,1,1,35,36,[[1158,1,1,35,36]]],[65,4,4,36,40,[[1182,1,1,36,37],[1184,3,3,37,40]]]],[23445,23951,23957,24037,24040,24083,24112,24118,24184,24370,24808,24866,24895,24963,25543,25643,25933,26012,26022,26095,26649,27017,27449,27481,27644,27780,28318,28327,28353,28829,28893,28942,28958,29874,30037,30526,30972,31003,31008,31010]]],["From",[3,3,[[39,2,2,0,2,[[932,1,1,0,1],[944,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]]],[23226,23693,25456]]],["Of",[2,2,[[39,1,1,0,1,[[945,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]]],[23726,27385]]],["On",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31066]]],["ago",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27289]]],["at",[9,8,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,2,2,1,3,[[996,2,2,1,3]]],[42,1,1,3,4,[[1004,1,1,3,4]]],[43,3,3,4,7,[[1025,1,1,4,5],[1040,1,1,5,6],[1043,1,1,6,7]]],[59,2,1,7,8,[[1154,2,1,7,8]]]],[23766,26018,26038,26390,27211,27757,27827,30463]]],["before",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[61,1,1,1,2,[[1160,1,1,1,2]]]],[27161,30578]]],["by",[9,9,[[39,2,2,0,2,[[935,2,2,0,2]]],[43,2,2,2,4,[[1026,1,1,2,3],[1029,1,1,3,4]]],[46,2,2,4,6,[[1080,1,1,4,5],[1084,1,1,5,6]]],[57,1,1,6,7,[[1137,1,1,6,7]]],[64,1,1,7,8,[[1166,1,1,7,8]]],[65,1,1,8,9,[[1184,1,1,8,9]]]],[23332,23336,27229,27357,28859,28929,30038,30695,31008]]],["for",[10,10,[[39,3,3,0,3,[[941,1,1,0,1],[942,1,1,1,2],[956,1,1,2,3]]],[41,4,4,3,7,[[991,1,1,3,4],[993,1,1,4,5],[994,1,1,5,6],[996,1,1,6,7]]],[42,1,1,7,8,[[1017,1,1,7,8]]],[43,2,2,8,10,[[1029,1,1,8,9],[1039,1,1,9,10]]]],[23583,23623,24199,25734,25852,25909,26032,26904,27351,27715]]],["from",[377,358,[[39,65,63,0,63,[[929,5,3,0,3],[930,2,2,3,5],[931,2,2,5,7],[932,1,1,7,8],[933,3,3,8,11],[934,1,1,11,12],[935,1,1,12,13],[936,3,3,13,16],[937,3,3,16,19],[939,2,2,19,21],[940,1,1,21,22],[941,2,2,22,24],[942,1,1,24,25],[943,3,3,25,28],[945,2,2,28,30],[946,3,3,30,33],[947,2,2,33,35],[948,2,2,35,37],[949,2,2,37,39],[950,1,1,39,40],[951,2,2,40,42],[952,3,3,42,45],[953,5,5,45,50],[954,4,4,50,54],[955,6,6,54,60],[956,3,3,60,63]]],[40,29,27,63,90,[[957,2,2,63,65],[958,1,1,65,66],[959,5,3,66,69],[960,1,1,69,70],[961,1,1,70,71],[963,5,5,71,76],[964,1,1,76,77],[965,1,1,77,78],[966,1,1,78,79],[967,1,1,79,80],[968,1,1,80,81],[969,2,2,81,83],[970,3,3,83,86],[971,3,3,86,89],[972,1,1,89,90]]],[41,59,57,90,147,[[973,3,3,90,93],[974,4,4,93,97],[975,1,1,97,98],[976,3,3,98,101],[977,5,5,101,106],[979,1,1,106,107],[980,2,2,107,109],[981,6,6,109,115],[982,3,3,115,118],[983,2,2,118,120],[984,2,2,120,122],[985,5,4,122,126],[988,4,4,126,130],[989,1,1,130,131],[990,1,1,131,132],[991,5,4,132,136],[993,1,1,136,137],[994,4,4,137,141],[995,2,2,141,143],[996,4,4,143,147]]],[42,14,14,147,161,[[999,1,1,147,148],[1004,1,1,148,149],[1006,2,2,149,151],[1007,1,1,151,152],[1008,1,1,152,153],[1009,1,1,153,154],[1010,1,1,154,155],[1011,1,1,155,156],[1012,2,2,156,158],[1014,1,1,158,159],[1015,1,1,159,160],[1017,1,1,160,161]]],[43,69,65,161,226,[[1018,5,4,161,165],[1019,1,1,165,166],[1020,3,3,166,169],[1022,2,2,169,171],[1025,3,3,171,174],[1026,3,3,174,177],[1027,4,4,177,181],[1028,2,2,181,183],[1029,2,2,183,185],[1030,7,6,185,191],[1031,2,2,191,193],[1032,7,6,193,199],[1033,1,1,199,200],[1034,1,1,200,201],[1035,5,5,201,206],[1036,3,2,206,208],[1037,5,5,208,213],[1038,3,3,213,216],[1039,3,3,216,219],[1040,1,1,219,220],[1041,1,1,220,221],[1042,2,2,221,223],[1043,1,1,223,224],[1044,1,1,224,225],[1045,1,1,225,226]]],[44,19,19,226,245,[[1046,3,3,226,229],[1050,2,2,229,231],[1051,3,3,231,234],[1052,3,3,234,237],[1053,4,4,237,241],[1054,1,1,241,242],[1056,1,1,242,243],[1060,2,2,243,245]]],[45,5,5,245,250,[[1062,1,1,245,246],[1068,2,2,246,248],[1071,1,1,248,249],[1075,1,1,249,250]]],[46,8,8,250,258,[[1078,1,1,250,251],[1079,1,1,251,252],[1080,1,1,252,253],[1082,1,1,253,254],[1084,1,1,254,255],[1088,2,2,255,257],[1089,1,1,257,258]]],[47,4,4,258,262,[[1091,2,2,258,260],[1092,1,1,260,261],[1094,1,1,261,262]]],[48,4,4,262,266,[[1097,1,1,262,263],[1099,1,1,263,264],[1100,1,1,264,265],[1102,1,1,265,266]]],[49,3,3,266,269,[[1103,2,2,266,268],[1106,1,1,268,269]]],[50,5,4,269,273,[[1107,4,3,269,272],[1108,1,1,272,273]]],[51,9,9,273,282,[[1111,4,4,273,277],[1112,1,1,277,278],[1113,1,1,278,279],[1114,2,2,279,281],[1115,1,1,281,282]]],[52,8,7,282,289,[[1116,4,3,282,285],[1117,1,1,285,286],[1118,3,3,286,289]]],[53,3,3,289,292,[[1119,1,1,289,290],[1124,2,2,290,292]]],[54,6,6,292,298,[[1125,2,2,292,294],[1126,2,2,294,296],[1127,1,1,296,297],[1128,1,1,297,298]]],[55,2,2,298,300,[[1129,1,1,298,299],[1130,1,1,299,300]]],[56,1,1,300,301,[[1132,1,1,300,301]]],[57,14,13,301,314,[[1135,1,1,301,302],[1136,4,3,302,305],[1138,2,2,305,307],[1139,2,2,307,309],[1140,1,1,309,310],[1141,1,1,310,311],[1142,1,1,311,312],[1143,1,1,312,313],[1144,1,1,313,314]]],[58,4,4,314,318,[[1146,2,2,314,316],[1149,1,1,316,317],[1150,1,1,317,318]]],[59,2,2,318,320,[[1151,1,1,318,319],[1153,1,1,319,320]]],[60,1,1,320,321,[[1158,1,1,320,321]]],[61,15,13,321,334,[[1159,3,3,321,324],[1160,7,5,324,329],[1161,3,3,329,332],[1162,1,1,332,333],[1163,1,1,333,334]]],[62,2,2,334,336,[[1164,2,2,334,336]]],[64,1,1,336,337,[[1166,1,1,336,337]]],[65,25,21,337,358,[[1167,4,2,337,339],[1169,1,1,339,340],[1172,3,2,340,342],[1173,2,2,342,344],[1175,1,1,344,345],[1178,1,1,345,346],[1179,1,1,346,347],[1180,2,2,347,349],[1182,1,1,349,350],[1183,1,1,350,351],[1184,2,1,351,352],[1186,2,2,352,354],[1187,3,3,354,357],[1188,1,1,357,358]]]],[23161,23165,23168,23170,23185,23199,23205,23234,23252,23263,23264,23295,23339,23346,23356,23375,23394,23395,23401,23471,23484,23527,23551,23574,23599,23641,23660,23661,23709,23718,23735,23736,23762,23763,23770,23800,23821,23834,23869,23918,23952,23953,23958,23986,23988,24036,24037,24040,24042,24049,24070,24093,24096,24101,24169,24171,24174,24180,24184,24193,24197,24202,24203,24224,24257,24280,24295,24296,24310,24348,24399,24464,24467,24469,24480,24496,24511,24547,24594,24652,24707,24736,24744,24789,24790,24806,24856,24858,24864,24881,24931,24941,24945,24977,24988,25009,25010,25032,25064,25076,25105,25110,25115,25117,25120,25142,25201,25263,25282,25306,25334,25338,25340,25346,25355,25384,25393,25405,25409,25455,25511,25517,25533,25534,25545,25547,25623,25638,25641,25650,25680,25722,25755,25757,25770,25773,25837,25905,25906,25907,25909,25940,25984,25993,26000,26004,26042,26122,26425,26486,26499,26576,26616,26633,26675,26726,26748,26756,26813,26852,26906,26927,26934,26935,26945,26989,27015,27020,27022,27097,27100,27186,27202,27209,27219,27224,27234,27276,27280,27282,27296,27318,27334,27347,27356,27370,27375,27376,27391,27393,27401,27429,27433,27443,27460,27461,27462,27475,27480,27494,27550,27559,27562,27563,27573,27578,27594,27597,27632,27635,27643,27644,27652,27665,27671,27674,27726,27733,27734,27755,27787,27797,27803,27841,27876,27922,27937,27948,27950,28056,28061,28075,28086,28090,28093,28094,28097,28118,28137,28151,28155,28158,28235,28322,28334,28366,28497,28514,28581,28714,28802,28827,28859,28883,28917,28992,28998,29030,29060,29063,29093,29155,29208,29260,29303,29360,29363,29366,29457,29467,29488,29491,29514,29561,29568,29569,29570,29587,29596,29606,29619,29643,29651,29656,29658,29674,29680,29681,29684,29698,29793,29798,29811,29812,29846,29848,29868,29888,29896,29922,29941,30007,30017,30018,30024,30045,30051,30065,30090,30103,30119,30155,30187,30237,30283,30293,30344,30373,30386,30434,30526,30541,30547,30549,30557,30563,30564,30570,30574,30587,30590,30596,30624,30645,30650,30651,30686,30701,30702,30758,30797,30809,30812,30827,30846,30905,30916,30929,30930,30971,30983,31007,31047,31049,31055,31057,31063,31099]]],["in",[3,3,[[44,1,1,0,1,[[1056,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]]],[28234,28814,29663]]],["of",[173,166,[[39,34,30,0,30,[[931,2,2,0,2],[933,1,1,2,3],[935,4,3,3,6],[936,1,1,6,7],[938,1,1,7,8],[939,2,2,8,10],[940,1,1,10,11],[941,1,1,11,12],[942,2,2,12,14],[943,3,3,14,17],[944,5,4,17,21],[945,4,2,21,23],[949,1,1,23,24],[952,2,2,24,26],[955,4,4,26,30]]],[40,18,18,30,48,[[957,1,1,30,31],[961,3,3,31,34],[962,2,2,34,36],[963,2,2,36,38],[964,2,2,38,40],[966,1,1,40,41],[968,2,2,41,43],[969,1,1,43,44],[971,3,3,44,47],[972,1,1,47,48]]],[41,42,40,48,88,[[976,2,2,48,50],[977,2,2,50,52],[978,4,3,52,55],[979,2,2,55,57],[980,9,8,57,65],[981,3,3,65,68],[983,3,3,68,71],[984,6,6,71,77],[989,2,2,77,79],[990,1,1,79,80],[992,2,2,80,82],[993,1,1,82,83],[994,2,2,83,85],[995,2,2,85,87],[996,1,1,87,88]]],[42,21,21,88,109,[[997,2,2,88,90],[1001,2,2,90,92],[1003,4,4,92,96],[1004,2,2,96,98],[1006,1,1,98,99],[1007,2,2,99,101],[1008,1,1,101,102],[1010,1,1,102,103],[1011,1,1,103,104],[1012,1,1,104,105],[1014,1,1,105,106],[1015,1,1,106,107],[1017,2,2,107,109]]],[43,24,24,109,133,[[1018,1,1,109,110],[1019,4,4,110,114],[1022,2,2,114,116],[1023,1,1,116,117],[1025,1,1,117,118],[1027,1,1,118,119],[1029,1,1,119,120],[1030,1,1,120,121],[1032,1,1,121,122],[1033,1,1,122,123],[1034,2,2,123,125],[1036,2,2,125,127],[1038,2,2,127,129],[1040,1,1,129,130],[1044,1,1,130,131],[1045,2,2,131,133]]],[44,1,1,133,134,[[1058,1,1,133,134]]],[45,4,4,134,138,[[1062,1,1,134,135],[1065,1,1,135,136],[1067,1,1,136,137],[1072,1,1,137,138]]],[46,3,3,138,141,[[1078,1,1,138,139],[1080,1,1,139,140],[1087,1,1,140,141]]],[47,3,3,141,144,[[1091,1,1,141,142],[1092,1,1,142,143],[1093,1,1,143,144]]],[49,1,1,144,145,[[1103,1,1,144,145]]],[50,2,2,145,147,[[1107,1,1,145,146],[1109,1,1,146,147]]],[51,2,1,147,148,[[1112,2,1,147,148]]],[53,1,1,148,149,[[1121,1,1,148,149]]],[57,6,6,149,155,[[1139,2,2,149,151],[1143,2,2,151,153],[1144,1,1,153,154],[1145,1,1,154,155]]],[58,2,2,155,157,[[1146,1,1,155,156],[1150,1,1,156,157]]],[61,2,2,157,159,[[1159,1,1,157,158],[1160,1,1,158,159]]],[63,1,1,159,160,[[1165,1,1,159,160]]],[65,6,6,160,166,[[1168,1,1,160,161],[1178,1,1,161,162],[1180,1,1,162,163],[1182,2,2,163,165],[1188,1,1,165,166]]]],[23196,23208,23276,23320,23331,23332,23379,23434,23478,23488,23532,23540,23610,23626,23634,23655,23660,23678,23683,23684,23693,23718,23725,23837,23984,23989,24138,24150,24153,24186,24225,24381,24393,24398,24440,24450,24478,24491,24515,24531,24634,24675,24711,24745,24847,24869,24871,24882,25098,25104,25122,25143,25159,25163,25176,25216,25230,25247,25248,25257,25274,25278,25280,25283,25291,25306,25323,25339,25429,25455,25456,25460,25463,25474,25479,25513,25516,25676,25680,25691,25789,25825,25856,25882,25935,25961,25986,26033,26088,26089,26229,26240,26345,26346,26356,26370,26409,26423,26499,26524,26574,26601,26678,26703,26739,26819,26863,26900,26908,26932,26954,26966,26967,26971,27061,27062,27110,27198,27297,27338,27412,27447,27501,27525,27536,27597,27598,27680,27691,27768,27899,27920,27922,28267,28393,28438,28486,28623,28816,28846,28978,29058,29087,29104,29389,29472,29541,29576,29738,30066,30077,30184,30206,30227,30265,30279,30358,30545,30577,30665,30734,30897,30946,30966,30971,31099]]],["off",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26541]]],["on",[4,2,[[65,4,2,0,2,[[1172,1,1,0,1],[1187,3,1,1,2]]]],[30803,31066]]],["since",[6,6,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,2,2,1,3,[[979,1,1,1,2],[988,1,1,2,3]]],[50,2,2,3,5,[[1107,2,2,3,5]]],[57,1,1,5,6,[[1141,1,1,5,6]]]],[23978,25240,25636,29471,29474,30131]]],["their",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27516]]],["these",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28326]]],["two",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26906]]],["upon",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27326]]],["with",[4,4,[[41,3,3,0,3,[[986,1,1,0,1],[987,1,1,1,2],[988,1,1,2,3]]],[43,1,1,3,4,[[1037,1,1,3,4]]]],[25571,25604,25641,27635]]]]},{"k":"G576","v":[["*",[5,4,[[41,3,2,0,2,[[977,2,1,0,1],[993,1,1,1,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]],[49,1,1,3,4,[[1103,1,1,3,4]]]],[25109,25839,26907,29380]]],["come",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26907]]],["gone",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25109]]],["of",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25109]]],["turn",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[25839,29380]]]]},{"k":"G577","v":[["*",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[24638,30168]]],["+",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30168]]],["away",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24638]]]]},{"k":"G578","v":[["respect",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30198]]]]},{"k":"G579","v":[["refused",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29751]]]]},{"k":"G580","v":[["*",[2,2,[[43,1,1,0,1,[[1044,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]]],[27877,28224]]],["away",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28224]]],["loss",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27877]]]]},{"k":"G581","v":[["dead",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30423]]]]},{"k":"G582","v":[["taxing",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[24975,27096]]]]},{"k":"G583","v":[["*",[4,4,[[41,3,3,0,3,[[974,3,3,0,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]]],[24974,24976,24978,30235]]],["taxed",[3,3,[[41,3,3,0,3,[[974,3,3,0,3]]]],[24974,24976,24978]]],["written",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30235]]]]},{"k":"G584","v":[["*",[4,4,[[43,2,2,0,2,[[1019,1,1,0,1],[1042,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[52,1,1,3,4,[[1117,1,1,3,4]]]],[26971,27803,28442,29665]]],["approved",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26971]]],["forth",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28442]]],["prove",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27803]]],["shewing",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29665]]]]},{"k":"G585","v":[["demonstration",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28398]]]]},{"k":"G586","v":[["*",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[990,1,1,2,3]]],[57,1,1,3,4,[[1139,1,1,3,4]]]],[23941,25447,25700,30069]]],["tithe",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23941,25447]]],["tithes",[2,2,[[41,1,1,0,1,[[990,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[25700,30069]]]]},{"k":"G587","v":[["acceptable",[2,2,[[53,2,2,0,2,[[1120,1,1,0,1],[1123,1,1,1,2]]]],[29719,29767]]]]},{"k":"G588","v":[["*",[6,6,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,5,5,1,6,[[1019,1,1,1,2],[1032,1,1,2,3],[1035,1,1,3,4],[1041,1,1,4,5],[1045,1,1,5,6]]]],[25285,26990,27446,27584,27772,27929]]],["+",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26990]]],["accept",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27772]]],["receive",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27584]]],["received",[3,3,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,2,2,1,3,[[1032,1,1,1,2],[1045,1,1,2,3]]]],[25285,27446,27929]]]]},{"k":"G589","v":[["*",[6,6,[[39,3,3,0,3,[[949,1,1,0,1],[953,2,2,1,3]]],[40,1,1,3,4,[[968,1,1,3,4]]],[41,2,2,4,6,[[987,1,1,4,5],[992,1,1,5,6]]]],[23859,24022,24023,24674,25601,25788]]],["country",[4,4,[[39,2,2,0,2,[[949,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]]],[23859,24022,24674,25788]]],["journey",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]]],[24023,25601]]]]},{"k":"G590","v":[["journey",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24751]]]]},{"k":"G591","v":[["*",[48,46,[[39,18,17,0,17,[[933,2,2,0,2],[934,3,3,2,5],[940,1,1,5,6],[944,1,1,6,7],[946,7,6,7,13],[948,1,1,13,14],[949,1,1,14,15],[950,1,1,15,16],[955,1,1,16,17]]],[40,1,1,17,18,[[968,1,1,17,18]]],[41,8,8,18,26,[[976,1,1,18,19],[979,1,1,19,20],[981,1,1,20,21],[982,1,1,21,22],[984,1,1,22,23],[988,1,1,23,24],[991,1,1,24,25],[992,1,1,25,26]]],[43,4,4,26,30,[[1021,1,1,26,27],[1022,1,1,27,28],[1024,1,1,28,29],[1036,1,1,29,30]]],[44,3,3,30,33,[[1047,1,1,30,31],[1057,1,1,31,32],[1058,1,1,32,33]]],[45,1,1,33,34,[[1068,1,1,33,34]]],[51,1,1,34,35,[[1115,1,1,34,35]]],[53,1,1,35,36,[[1123,1,1,35,36]]],[54,2,2,36,38,[[1128,2,2,36,38]]],[57,3,3,38,41,[[1144,2,2,38,40],[1145,1,1,40,41]]],[59,2,2,41,43,[[1153,1,1,41,42],[1154,1,1,42,43]]],[65,4,3,43,46,[[1184,2,1,43,44],[1188,2,2,44,46]]]],[23260,23267,23286,23288,23300,23525,23699,23752,23753,23755,23756,23757,23761,23800,23867,23893,24187,24690,25083,25237,25343,25398,25518,25622,25739,25804,27055,27067,27125,27625,27968,28262,28273,28490,29636,29767,29878,29884,30223,30228,30258,30433,30451,30999,31082,31092]]],["+",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[25343,29767]]],["Pay",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23755]]],["Recompense",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28262]]],["Render",[4,4,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[44,1,1,3,4,[[1058,1,1,3,4]]]],[23893,24690,25804,28273]]],["Reward",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30999]]],["again",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25083]]],["delivered",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24187]]],["gave",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27055]]],["give",[8,8,[[39,2,2,0,2,[[940,1,1,0,1],[948,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[43,1,1,3,4,[[1036,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]],[57,1,1,5,6,[[1145,1,1,5,6]]],[59,1,1,6,7,[[1154,1,1,6,7]]],[65,1,1,7,8,[[1188,1,1,7,8]]]],[23525,23800,25622,27625,29878,30258,30451,31092]]],["made",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23752]]],["paid",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23260,25518]]],["pay",[6,6,[[39,5,5,0,5,[[946,5,5,0,5]]],[41,1,1,5,6,[[979,1,1,5,6]]]],[23752,23753,23756,23757,23761,25237]]],["perform",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23267]]],["render",[4,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]],[45,1,1,2,3,[[1068,1,1,2,3]]],[51,1,1,3,4,[[1115,1,1,3,4]]]],[23867,27968,28490,29636]]],["rendering",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30433]]],["repay",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25398]]],["restore",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25739]]],["reward",[5,5,[[39,4,4,0,4,[[934,3,3,0,3],[944,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]]],[23286,23288,23300,23699,29884]]],["rewarded",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30999]]],["sold",[3,3,[[43,2,2,0,2,[[1022,1,1,0,1],[1024,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[27067,27125,30228]]],["yielded",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31082]]],["yieldeth",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30223]]]]},{"k":"G592","v":[["separate",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30691]]]]},{"k":"G593","v":[["*",[9,9,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,2,2,1,3,[[964,1,1,1,2],[968,1,1,2,3]]],[41,3,3,3,6,[[981,1,1,3,4],[989,1,1,4,5],[992,1,1,5,6]]],[57,1,1,6,7,[[1144,1,1,6,7]]],[59,2,2,7,9,[[1152,2,2,7,9]]]],[23868,24531,24683,25323,25676,25796,30229,30403,30406]]],["disallowed",[2,2,[[59,2,2,0,2,[[1152,2,2,0,2]]]],[30403,30406]]],["rejected",[7,7,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,2,2,1,3,[[964,1,1,1,2],[968,1,1,2,3]]],[41,3,3,3,6,[[981,1,1,3,4],[989,1,1,4,5],[992,1,1,5,6]]],[57,1,1,6,7,[[1144,1,1,6,7]]]],[23868,24531,24683,25323,25676,25796,30229]]]]},{"k":"G594","v":[["acceptation",[2,2,[[53,2,2,0,2,[[1119,1,1,0,1],[1122,1,1,1,2]]]],[29711,29756]]]]},{"k":"G595","v":[["*",[2,2,[[59,1,1,0,1,[[1153,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[30445,30493]]],["away",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30445]]],["off",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30493]]]]},{"k":"G596","v":[["*",[6,6,[[39,3,3,0,3,[[931,1,1,0,1],[934,1,1,1,2],[941,1,1,2,3]]],[41,3,3,3,6,[[975,1,1,3,4],[984,2,2,4,6]]]],[23204,23308,23569,25042,25477,25483]]],["barn",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23569,25483]]],["barns",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23308,25477]]],["garner",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23204,25042]]]]},{"k":"G597","v":[["store",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29807]]]]},{"k":"G598","v":[["press",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25290]]]]},{"k":"G599","v":[["*",[111,99,[[39,5,5,0,5,[[936,1,1,0,1],[937,1,1,1,2],[950,2,2,2,4],[954,1,1,4,5]]],[40,8,8,5,13,[[961,2,2,5,7],[965,1,1,7,8],[968,4,4,8,12],[971,1,1,12,13]]],[41,12,10,13,23,[[980,3,3,13,16],[988,2,1,16,17],[992,7,6,17,23]]],[42,26,22,23,45,[[1000,2,2,23,25],[1002,3,3,25,28],[1004,6,4,28,32],[1007,8,8,32,40],[1008,3,2,40,42],[1014,1,1,42,43],[1015,1,1,43,44],[1017,2,1,44,45]]],[43,4,4,45,49,[[1024,1,1,45,46],[1026,1,1,46,47],[1038,1,1,47,48],[1042,1,1,48,49]]],[44,23,19,49,68,[[1050,5,4,49,53],[1051,6,5,53,58],[1052,4,4,58,62],[1053,2,2,62,64],[1059,6,4,64,68]]],[45,7,7,68,75,[[1069,1,1,68,69],[1070,1,1,69,70],[1076,5,5,70,75]]],[46,5,3,75,78,[[1082,4,2,75,77],[1083,1,1,77,78]]],[47,2,2,78,80,[[1092,2,2,78,80]]],[49,1,1,80,81,[[1103,1,1,80,81]]],[50,2,2,81,83,[[1108,1,1,81,82],[1109,1,1,82,83]]],[51,2,2,83,85,[[1114,1,1,83,84],[1115,1,1,84,85]]],[57,7,7,85,92,[[1139,1,1,85,86],[1141,1,1,86,87],[1142,1,1,87,88],[1143,4,4,88,92]]],[64,1,1,92,93,[[1166,1,1,92,93]]],[65,6,6,93,99,[[1169,1,1,93,94],[1174,2,2,94,96],[1175,1,1,96,97],[1180,1,1,97,98],[1182,1,1,98,99]]]],[23377,23403,23896,23899,24089,24399,24403,24564,24692,24693,24694,24695,24870,25287,25297,25298,25642,25807,25808,25809,25810,25811,25815,26203,26205,26306,26307,26315,26402,26405,26433,26434,26537,26539,26548,26549,26555,26560,26573,26574,26604,26613,26817,26832,26921,27120,27253,27677,27807,28053,28054,28055,28062,28070,28075,28076,28077,28078,28093,28094,28097,28100,28129,28150,28287,28288,28289,28295,28538,28555,28721,28740,28749,28750,28754,28891,28892,28907,29100,29102,29382,29514,29520,29617,29631,30072,30132,30161,30176,30185,30193,30209,30684,30748,30836,30838,30846,30939,30957]]],["+",[7,7,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[971,1,1,2,3]]],[41,1,1,3,4,[[980,1,1,3,4]]],[42,2,2,4,6,[[1000,1,1,4,5],[1007,1,1,5,6]]],[46,1,1,6,7,[[1082,1,1,6,7]]]],[23403,24403,24870,25297,26203,26555,28891]]],["dead",[24,23,[[40,2,2,0,2,[[961,1,1,0,1],[965,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[42,7,6,3,9,[[1002,2,2,3,5],[1004,3,2,5,7],[1007,2,2,7,9]]],[43,1,1,9,10,[[1024,1,1,9,10]]],[44,7,7,10,17,[[1050,1,1,10,11],[1051,3,3,11,14],[1052,3,3,14,17]]],[47,2,2,17,19,[[1092,2,2,17,19]]],[50,2,2,19,21,[[1108,1,1,19,20],[1109,1,1,20,21]]],[57,1,1,21,22,[[1143,1,1,21,22]]],[64,1,1,22,23,[[1166,1,1,22,23]]]],[24399,24564,25298,26306,26315,26433,26434,26537,26548,27120,28062,28070,28075,28076,28093,28094,28097,29100,29102,29514,29520,30176,30684]]],["die",[41,34,[[39,2,2,0,2,[[950,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,3,2,3,5,[[992,3,2,3,5]]],[42,16,13,5,18,[[1000,1,1,5,6],[1002,1,1,6,7],[1004,3,2,7,9],[1007,4,4,9,13],[1008,3,2,13,15],[1014,1,1,15,16],[1015,1,1,16,17],[1017,2,1,17,18]]],[43,2,2,18,20,[[1038,1,1,18,19],[1042,1,1,19,20]]],[44,6,3,20,23,[[1050,2,1,20,21],[1053,1,1,21,22],[1059,3,1,22,23]]],[45,5,5,23,28,[[1070,1,1,23,24],[1076,4,4,24,28]]],[49,1,1,28,29,[[1103,1,1,28,29]]],[57,2,2,29,31,[[1139,1,1,29,30],[1141,1,1,30,31]]],[65,3,3,31,34,[[1169,1,1,31,32],[1175,1,1,32,33],[1180,1,1,33,34]]]],[23896,24089,24692,25807,25815,26205,26307,26402,26405,26539,26549,26573,26574,26604,26613,26817,26832,26921,27677,27807,28054,28129,28288,28555,28740,28749,28750,28754,29382,30072,30132,30748,30846,30939]]],["died",[31,28,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,2,2,1,3,[[968,2,2,1,3]]],[41,6,5,3,8,[[988,2,1,3,4],[992,4,4,4,8]]],[42,1,1,8,9,[[1007,1,1,8,9]]],[43,1,1,9,10,[[1026,1,1,9,10]]],[44,8,7,10,17,[[1050,2,2,10,12],[1051,2,1,12,13],[1052,1,1,13,14],[1053,1,1,14,15],[1059,2,2,15,17]]],[45,2,2,17,19,[[1069,1,1,17,18],[1076,1,1,18,19]]],[46,3,2,19,21,[[1082,3,2,19,21]]],[51,2,2,21,23,[[1114,1,1,21,22],[1115,1,1,22,23]]],[57,2,2,23,25,[[1142,1,1,23,24],[1143,1,1,24,25]]],[65,3,3,25,28,[[1174,2,2,25,27],[1182,1,1,27,28]]]],[23899,24694,24695,25642,25808,25809,25810,25811,26560,27253,28053,28055,28078,28100,28150,28289,28295,28538,28721,28891,28892,29617,29631,30161,30185,30836,30838,30957]]],["dieth",[2,2,[[44,2,2,0,2,[[1051,1,1,0,1],[1059,1,1,1,2]]]],[28077,28287]]],["dying",[4,4,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[46,1,1,2,3,[[1083,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[24693,25287,28907,30193]]],["perished",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23377]]],["slain",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30209]]]]},{"k":"G600","v":[["*",[8,8,[[39,2,2,0,2,[[940,1,1,0,1],[945,1,1,1,2]]],[40,3,3,2,5,[[959,1,1,2,3],[964,1,1,3,4],[965,1,1,4,5]]],[41,1,1,5,6,[[978,1,1,5,6]]],[43,1,1,6,7,[[1018,1,1,6,7]]],[57,1,1,7,8,[[1145,1,1,7,8]]]],[23502,23711,24293,24525,24550,25156,26929,30260]]],["again",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26929]]],["restore",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23711]]],["restored",[5,5,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,2,2,1,3,[[959,1,1,1,2],[964,1,1,2,3]]],[41,1,1,3,4,[[978,1,1,3,4]]],[57,1,1,4,5,[[1145,1,1,4,5]]]],[23502,24293,24525,25156,30260]]],["restoreth",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24550]]]]},{"k":"G601","v":[["*",[26,26,[[39,4,4,0,4,[[938,1,1,0,1],[939,2,2,1,3],[944,1,1,3,4]]],[41,5,5,4,9,[[974,1,1,4,5],[982,2,2,5,7],[984,1,1,7,8],[989,1,1,8,9]]],[42,1,1,9,10,[[1008,1,1,9,10]]],[44,3,3,10,13,[[1046,2,2,10,12],[1053,1,1,12,13]]],[45,3,3,13,16,[[1063,1,1,13,14],[1064,1,1,14,15],[1075,1,1,15,16]]],[47,2,2,16,18,[[1091,1,1,16,17],[1093,1,1,17,18]]],[48,1,1,18,19,[[1099,1,1,18,19]]],[49,1,1,19,20,[[1105,1,1,19,20]]],[52,3,3,20,23,[[1117,3,3,20,23]]],[59,3,3,23,26,[[1151,2,2,23,25],[1155,1,1,25,26]]]],[23443,23484,23486,23689,25008,25384,25385,25461,25681,26618,27947,27948,28134,28404,28423,28708,29073,29125,29256,29436,29664,29667,29669,30379,30386,30466]]],["+",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25008]]],["reveal",[4,4,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[47,1,1,2,3,[[1091,1,1,2,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]]],[23486,25385,29073,29436]]],["revealed",[21,21,[[39,3,3,0,3,[[938,1,1,0,1],[939,1,1,1,2],[944,1,1,2,3]]],[41,3,3,3,6,[[982,1,1,3,4],[984,1,1,4,5],[989,1,1,5,6]]],[42,1,1,6,7,[[1008,1,1,6,7]]],[44,3,3,7,10,[[1046,2,2,7,9],[1053,1,1,9,10]]],[45,3,3,10,13,[[1063,1,1,10,11],[1064,1,1,11,12],[1075,1,1,12,13]]],[47,1,1,13,14,[[1093,1,1,13,14]]],[48,1,1,14,15,[[1099,1,1,14,15]]],[52,3,3,15,18,[[1117,3,3,15,18]]],[59,3,3,18,21,[[1151,2,2,18,20],[1155,1,1,20,21]]]],[23443,23484,23689,25384,25461,25681,26618,27947,27948,28134,28404,28423,28708,29125,29256,29664,29667,29669,30379,30386,30466]]]]},{"k":"G602","v":[["*",[18,18,[[41,1,1,0,1,[[974,1,1,0,1]]],[44,3,3,1,4,[[1047,1,1,1,2],[1053,1,1,2,3],[1061,1,1,3,4]]],[45,3,3,4,7,[[1062,1,1,4,5],[1075,2,2,5,7]]],[46,2,2,7,9,[[1089,2,2,7,9]]],[47,2,2,9,11,[[1091,1,1,9,10],[1092,1,1,10,11]]],[48,2,2,11,13,[[1097,1,1,11,12],[1099,1,1,12,13]]],[52,1,1,13,14,[[1116,1,1,13,14]]],[59,3,3,14,17,[[1151,2,2,14,16],[1154,1,1,16,17]]],[65,1,1,17,18,[[1167,1,1,17,18]]]],[25005,27967,28135,28361,28370,28684,28704,29023,29029,29069,29083,29223,29254,29656,30381,30387,30459,30698]]],["Revelation",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30698]]],["appearing",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30381]]],["coming",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28370]]],["lighten",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25005]]],["manifestation",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28135]]],["revealed",[2,2,[[52,1,1,0,1,[[1116,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[29656,30459]]],["revelation",[9,9,[[44,2,2,0,2,[[1047,1,1,0,1],[1061,1,1,1,2]]],[45,2,2,2,4,[[1075,2,2,2,4]]],[47,2,2,4,6,[[1091,1,1,4,5],[1092,1,1,5,6]]],[48,2,2,6,8,[[1097,1,1,6,7],[1099,1,1,7,8]]],[59,1,1,8,9,[[1151,1,1,8,9]]]],[27967,28361,28684,28704,29069,29083,29223,29254,30387]]],["revelations",[2,2,[[46,2,2,0,2,[[1089,2,2,0,2]]]],[29023,29029]]]]},{"k":"G603","v":[["expectation",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[28135,29381]]]]},{"k":"G604","v":[["*",[3,3,[[48,1,1,0,1,[[1098,1,1,0,1]]],[50,2,2,1,3,[[1107,2,2,1,3]]]],[29245,29485,29486]]],["reconcile",[2,2,[[48,1,1,0,1,[[1098,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[29245,29485]]],["reconciled",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29486]]]]},{"k":"G605","v":[["restitution",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27017]]]]},{"k":"G606","v":[["*",[4,4,[[41,1,1,0,1,[[991,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]],[57,1,1,3,4,[[1141,1,1,3,4]]]],[25751,29470,29878,30132]]],["appointed",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30132]]],["up",[3,3,[[41,1,1,0,1,[[991,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[25751,29470,29878]]]]},{"k":"G607","v":[["beheaded",[4,4,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,2,2,1,3,[[962,2,2,1,3]]],[41,1,1,3,4,[[981,1,1,3,4]]]],[23607,24423,24434,25310]]]]},{"k":"G608","v":[["to",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25543]]]]},{"k":"G609","v":[["*",[6,6,[[40,2,2,0,2,[[965,2,2,0,2]]],[42,2,2,2,4,[[1014,2,2,2,4]]],[43,1,1,4,5,[[1044,1,1,4,5]]],[47,1,1,5,6,[[1095,1,1,5,6]]]],[24581,24583,26795,26811,27887,29174]]],["+",[2,2,[[40,2,2,0,2,[[965,2,2,0,2]]]],[24581,24583]]],["off",[4,4,[[42,2,2,0,2,[[1014,2,2,0,2]]],[43,1,1,2,3,[[1044,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]]],[26795,26811,27887,29174]]]]},{"k":"G610","v":[["sentence",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28809]]]]},{"k":"G611","v":[["*",[250,248,[[39,55,55,0,55,[[931,1,1,0,1],[932,1,1,1,2],[936,1,1,2,3],[939,2,2,3,5],[940,3,3,5,8],[941,2,2,8,10],[942,1,1,10,11],[943,7,7,11,18],[944,3,3,18,21],[945,3,3,21,24],[947,2,2,24,26],[948,2,2,26,28],[949,5,5,28,33],[950,3,3,33,36],[952,1,1,36,37],[953,7,7,37,44],[954,6,6,44,50],[955,4,4,50,54],[956,1,1,54,55]]],[40,45,43,55,98,[[959,1,1,55,56],[961,1,1,56,57],[962,1,1,57,58],[963,2,2,58,60],[964,3,3,60,63],[965,5,5,63,68],[966,6,6,68,74],[967,7,5,74,79],[968,6,6,79,85],[969,2,2,85,87],[970,5,5,87,92],[971,6,6,92,98]]],[41,49,49,98,147,[[973,3,3,98,101],[975,2,2,101,103],[976,3,3,103,106],[977,3,3,106,109],[978,1,1,109,110],[979,3,3,110,113],[980,2,2,113,115],[981,4,4,115,119],[982,3,3,119,122],[983,2,2,122,124],[985,5,5,124,129],[986,2,2,129,131],[987,1,1,131,132],[989,3,3,132,135],[991,1,1,135,136],[992,5,5,136,141],[994,2,2,141,143],[995,3,3,143,146],[996,1,1,146,147]]],[42,78,78,147,225,[[997,5,5,147,152],[998,2,2,152,154],[999,5,5,154,159],[1000,3,3,159,162],[1001,4,4,162,166],[1002,6,6,166,172],[1003,6,6,172,178],[1004,8,8,178,186],[1005,8,8,186,194],[1006,4,4,194,198],[1007,1,1,198,199],[1008,3,3,199,202],[1009,5,5,202,207],[1010,1,1,207,208],[1012,1,1,208,209],[1014,10,10,209,219],[1015,4,4,219,223],[1016,1,1,223,224],[1017,1,1,224,225]]],[43,21,21,225,246,[[1020,1,1,225,226],[1021,1,1,226,227],[1022,2,2,227,229],[1025,3,3,229,232],[1026,1,1,232,233],[1027,1,1,233,234],[1028,1,1,234,235],[1032,1,1,235,236],[1036,1,1,236,237],[1038,1,1,237,238],[1039,2,2,238,240],[1041,2,2,240,242],[1042,4,4,242,246]]],[50,1,1,246,247,[[1110,1,1,246,247]]],[65,1,1,247,248,[[1173,1,1,247,248]]]],[23207,23213,23353,23463,23484,23527,23528,23537,23550,23576,23625,23636,23646,23648,23656,23657,23659,23661,23674,23688,23689,23704,23711,23717,23766,23789,23805,23814,23847,23850,23853,23855,23856,23873,23901,23918,23961,24017,24020,24034,24045,24048,24052,24053,24077,24079,24087,24116,24117,24120,24141,24143,24150,24154,24200,24321,24373,24444,24469,24491,24504,24528,24529,24543,24550,24555,24557,24576,24591,24593,24608,24612,24617,24639,24654,24662,24669,24670,24673,24690,24697,24701,24702,24707,24708,24719,24722,24774,24794,24802,24814,24815,24828,24829,24830,24831,24835,24838,24912,24928,24953,25036,25041,25067,25071,25075,25112,25129,25138,25149,25217,25235,25238,25266,25295,25320,25321,25342,25350,25390,25391,25404,25412,25450,25520,25526,25532,25533,25543,25556,25558,25617,25668,25671,25688,25771,25782,25786,25803,25813,25818,25915,25932,25938,25944,25975,26009,26065,26070,26092,26093,26094,26113,26114,26123,26125,26129,26130,26147,26166,26169,26173,26217,26221,26227,26229,26264,26283,26286,26300,26325,26327,26344,26348,26349,26374,26375,26380,26395,26400,26414,26415,26420,26429,26430,26435,26443,26451,26460,26465,26467,26470,26474,26476,26506,26513,26514,26515,26532,26603,26610,26614,26637,26638,26656,26666,26668,26691,26757,26790,26793,26805,26807,26808,26815,26819,26820,26821,26822,26832,26836,26840,26847,26895,26903,27008,27041,27067,27088,27200,27210,27213,27229,27305,27316,27455,27600,27677,27712,27732,27779,27794,27800,27805,27808,27812,29548,30823]]],["+",[5,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,2,2,1,3,[[976,1,1,1,2],[978,1,1,2,3]]],[42,2,2,3,5,[[1005,1,1,3,4],[1014,1,1,4,5]]]],[24143,25067,25149,26465,26820]]],["Answerest",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[970,1,1,1,2],[971,1,1,2,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]]],[24116,24814,24830,26807]]],["answer",[12,12,[[39,5,5,0,5,[[950,1,1,0,1],[953,4,4,1,5]]],[40,3,3,5,8,[[967,2,2,5,7],[970,1,1,7,8]]],[41,3,3,8,11,[[983,1,1,8,9],[985,1,1,9,10],[994,1,1,10,11]]],[50,1,1,11,12,[[1110,1,1,11,12]]]],[23918,24045,24048,24052,24053,24669,24670,24794,25412,25543,25932,29548]]],["answered",[197,197,[[39,47,47,0,47,[[932,1,1,0,1],[936,1,1,1,2],[939,2,2,2,4],[940,3,3,4,7],[941,2,2,7,9],[942,1,1,9,10],[943,7,7,10,17],[944,3,3,17,20],[945,3,3,20,23],[947,2,2,23,25],[948,2,2,25,27],[949,5,5,27,32],[950,2,2,32,34],[952,1,1,34,35],[953,3,3,35,38],[954,5,5,38,43],[955,3,3,43,46],[956,1,1,46,47]]],[40,30,30,47,77,[[959,1,1,47,48],[961,1,1,48,49],[962,1,1,49,50],[963,2,2,50,52],[964,2,2,52,54],[965,4,4,54,58],[966,5,5,58,63],[967,3,3,63,66],[968,4,4,66,70],[970,3,3,70,73],[971,4,4,73,77]]],[41,23,23,77,100,[[973,2,2,77,79],[975,1,1,79,80],[976,1,1,80,81],[979,1,1,81,82],[980,2,2,82,84],[981,1,1,84,85],[982,2,2,85,87],[983,1,1,87,88],[985,2,2,88,90],[986,1,1,90,91],[989,2,2,91,93],[991,1,1,93,94],[992,3,3,94,97],[994,1,1,97,98],[995,2,2,98,100]]],[42,75,75,100,175,[[997,5,5,100,105],[998,2,2,105,107],[999,5,5,107,112],[1000,3,3,112,115],[1001,4,4,115,119],[1002,6,6,119,125],[1003,6,6,125,131],[1004,8,8,131,139],[1005,7,7,139,146],[1006,4,4,146,150],[1007,1,1,150,151],[1008,3,3,151,154],[1009,5,5,154,159],[1010,1,1,159,160],[1012,1,1,160,161],[1014,8,8,161,169],[1015,4,4,169,173],[1016,1,1,173,174],[1017,1,1,174,175]]],[43,21,21,175,196,[[1020,1,1,175,176],[1021,1,1,176,177],[1022,2,2,177,179],[1025,3,3,179,182],[1026,1,1,182,183],[1027,1,1,183,184],[1028,1,1,184,185],[1032,1,1,185,186],[1036,1,1,186,187],[1038,1,1,187,188],[1039,2,2,188,190],[1041,2,2,190,192],[1042,4,4,192,196]]],[65,1,1,196,197,[[1173,1,1,196,197]]]],[23213,23353,23463,23484,23527,23528,23537,23550,23576,23625,23636,23646,23648,23656,23657,23659,23661,23674,23688,23689,23704,23711,23717,23766,23789,23805,23814,23847,23850,23853,23855,23856,23873,23901,23961,24017,24020,24034,24077,24079,24087,24117,24120,24141,24150,24154,24200,24321,24373,24444,24469,24491,24504,24528,24543,24550,24555,24576,24591,24593,24608,24617,24639,24654,24669,24673,24701,24702,24707,24708,24774,24802,24815,24829,24831,24835,24838,24928,24953,25041,25071,25238,25266,25295,25350,25391,25404,25450,25532,25533,25558,25671,25688,25771,25782,25786,25803,25915,25938,25944,26065,26070,26092,26093,26094,26113,26114,26123,26125,26129,26130,26147,26166,26169,26173,26217,26221,26227,26229,26264,26283,26286,26300,26325,26327,26344,26348,26349,26374,26375,26380,26395,26400,26414,26415,26420,26429,26430,26435,26443,26451,26460,26467,26470,26474,26476,26506,26513,26514,26515,26532,26603,26610,26614,26637,26638,26656,26666,26668,26691,26757,26790,26793,26805,26808,26815,26819,26821,26822,26832,26836,26840,26847,26895,26903,27008,27041,27067,27088,27200,27210,27213,27229,27305,27316,27455,27600,27677,27712,27732,27779,27794,27800,27805,27808,27812,30823]]],["answereth",[4,4,[[40,3,3,0,3,[[964,1,1,0,1],[965,1,1,1,2],[966,1,1,2,3]]],[41,1,1,3,4,[[975,1,1,3,4]]]],[24529,24557,24612,25036]]],["answering",[28,28,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,7,7,1,8,[[967,2,2,1,3],[968,2,2,3,5],[969,2,2,5,7],[971,1,1,7,8]]],[41,20,20,8,28,[[973,1,1,8,9],[976,1,1,9,10],[977,3,3,10,13],[979,2,2,13,15],[981,3,3,15,18],[982,1,1,18,19],[985,2,2,19,21],[986,1,1,21,22],[987,1,1,22,23],[989,1,1,23,24],[992,2,2,24,26],[995,1,1,26,27],[996,1,1,27,28]]]],[23207,24662,24673,24690,24697,24719,24722,24828,24912,25075,25112,25129,25138,25217,25235,25320,25321,25342,25390,25520,25526,25556,25617,25668,25813,25818,25975,26009]]]]},{"k":"G612","v":[["*",[4,4,[[41,2,2,0,2,[[974,1,1,0,1],[992,1,1,1,2]]],[42,2,2,2,4,[[997,1,1,2,3],[1015,1,1,3,4]]]],[25020,25805,26066,26834]]],["answer",[3,3,[[41,1,1,0,1,[[992,1,1,0,1]]],[42,2,2,1,3,[[997,1,1,1,2],[1015,1,1,2,3]]]],[25805,26066,26834]]],["answers",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25020]]]]},{"k":"G613","v":[["*",[6,6,[[39,2,2,0,2,[[939,1,1,0,1],[953,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[45,1,1,3,4,[[1063,1,1,3,4]]],[48,1,1,4,5,[[1099,1,1,4,5]]],[50,1,1,5,6,[[1107,1,1,5,6]]]],[23484,24026,25384,28401,29260,29491]]],["hid",[5,5,[[39,2,2,0,2,[[939,1,1,0,1],[953,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[48,1,1,3,4,[[1099,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]]],[23484,24026,25384,29260,29491]]],["hidden",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28401]]]]},{"k":"G614","v":[["*",[3,3,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]]],[24345,25262,29497]]],["hid",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[25262,29497]]],["secret",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24345]]]]},{"k":"G615","v":[["*",[75,71,[[39,13,12,0,12,[[938,2,1,0,1],[942,1,1,1,2],[944,1,1,2,3],[945,1,1,3,4],[949,3,3,4,7],[950,1,1,7,8],[951,2,2,8,10],[952,1,1,10,11],[954,1,1,11,12]]],[40,11,9,12,21,[[959,1,1,12,13],[962,1,1,13,14],[964,1,1,14,15],[965,2,1,15,16],[966,1,1,16,17],[968,4,3,17,20],[970,1,1,20,21]]],[41,12,12,21,33,[[981,1,1,21,22],[983,3,3,22,25],[984,2,2,25,27],[985,3,3,27,30],[990,1,1,30,31],[992,2,2,31,33]]],[42,13,13,33,46,[[1001,2,2,33,35],[1003,4,4,35,39],[1004,3,3,39,42],[1007,1,1,42,43],[1008,1,1,43,44],[1012,1,1,44,45],[1014,1,1,45,46]]],[43,6,6,46,52,[[1020,1,1,46,47],[1024,1,1,47,48],[1038,1,1,48,49],[1040,2,2,49,51],[1044,1,1,51,52]]],[44,2,2,52,54,[[1052,1,1,52,53],[1056,1,1,53,54]]],[46,1,1,54,55,[[1080,1,1,54,55]]],[48,1,1,55,56,[[1098,1,1,55,56]]],[51,1,1,56,57,[[1112,1,1,56,57]]],[65,15,14,57,71,[[1168,2,2,57,59],[1172,2,2,59,61],[1175,4,4,61,65],[1177,3,3,65,68],[1179,3,2,68,70],[1185,1,1,70,71]]]],[23445,23602,23693,23723,23861,23864,23865,23878,23952,23955,23966,24058,24292,24426,24531,24569,24622,24678,24680,24681,24755,25323,25452,25453,25454,25463,25464,25522,25549,25552,25721,25793,25794,26226,26228,26329,26347,26348,26353,26403,26418,26421,26576,26590,26728,26816,27011,27168,27695,27746,27748,27897,28102,28212,28847,29245,29585,30730,30740,30801,30804,30845,30855,30858,30860,30877,30879,30885,30918,30923,31038]]],["+",[6,6,[[39,1,1,0,1,[[942,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]],[42,3,3,2,5,[[1007,1,1,2,3],[1008,1,1,3,4],[1014,1,1,4,5]]],[51,1,1,5,6,[[1112,1,1,5,6]]]],[23602,25721,26576,26590,26816,29585]]],["death",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24755]]],["kill",[28,27,[[39,7,6,0,6,[[938,2,1,0,1],[945,1,1,1,2],[949,1,1,2,3],[951,1,1,3,4],[952,1,1,4,5],[954,1,1,5,6]]],[40,4,4,6,10,[[959,1,1,6,7],[965,1,1,7,8],[966,1,1,8,9],[968,1,1,9,10]]],[41,3,3,10,13,[[984,1,1,10,11],[985,1,1,11,12],[992,1,1,12,13]]],[42,8,8,13,21,[[1001,1,1,13,14],[1003,4,4,14,18],[1004,3,3,18,21]]],[43,2,2,21,23,[[1038,1,1,21,22],[1044,1,1,22,23]]],[65,4,4,23,27,[[1168,1,1,23,24],[1172,1,1,24,25],[1175,1,1,25,26],[1177,1,1,26,27]]]],[23445,23723,23864,23952,23966,24058,24292,24569,24622,24680,25463,25549,25793,26228,26329,26347,26348,26353,26403,26418,26421,27695,27897,30740,30801,30845,30879]]],["killed",[20,20,[[39,2,2,0,2,[[944,1,1,0,1],[949,1,1,1,2]]],[40,5,5,2,7,[[962,1,1,2,3],[964,1,1,3,4],[965,1,1,4,5],[968,2,2,5,7]]],[41,4,4,7,11,[[983,2,2,7,9],[984,1,1,9,10],[992,1,1,10,11]]],[43,2,2,11,13,[[1020,1,1,11,12],[1040,1,1,12,13]]],[44,1,1,13,14,[[1056,1,1,13,14]]],[65,6,6,14,20,[[1172,1,1,14,15],[1175,2,2,15,17],[1177,1,1,17,18],[1179,2,2,18,20]]]],[23693,23861,24426,24531,24569,24678,24681,25452,25453,25464,25794,27011,27746,28212,30804,30858,30860,30877,30918,30923]]],["killest",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23955,25552]]],["killeth",[3,3,[[42,1,1,0,1,[[1012,1,1,0,1]]],[46,1,1,1,2,[[1080,1,1,1,2]]],[65,1,1,2,3,[[1179,1,1,2,3]]]],[26728,28847,30918]]],["killing",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24678]]],["slain",[7,7,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,2,2,1,3,[[1024,1,1,1,2],[1040,1,1,2,3]]],[48,1,1,3,4,[[1098,1,1,3,4]]],[65,3,3,4,7,[[1168,1,1,4,5],[1177,1,1,5,6],[1185,1,1,6,7]]]],[25323,27168,27748,29245,30730,30885,31038]]],["slay",[3,3,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[65,1,1,2,3,[[1175,1,1,2,3]]]],[25454,26226,30855]]],["slew",[4,4,[[39,2,2,0,2,[[949,1,1,0,1],[950,1,1,1,2]]],[41,1,1,2,3,[[985,1,1,2,3]]],[44,1,1,3,4,[[1052,1,1,3,4]]]],[23865,23878,25522,28102]]]]},{"k":"G616","v":[["*",[2,2,[[58,2,2,0,2,[[1146,2,2,0,2]]]],[30281,30284]]],["begat",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30284]]],["forth",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30281]]]]},{"k":"G617","v":[["*",[4,4,[[39,1,1,0,1,[[956,1,1,0,1]]],[40,2,2,1,3,[[972,2,2,1,3]]],[41,1,1,3,4,[[996,1,1,3,4]]]],[24197,24876,24877,25993]]],["+",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24876]]],["away",[2,2,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]]],[24877,25993]]],["back",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24197]]]]},{"k":"G618","v":[["*",[12,11,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,6,5,1,6,[[978,2,1,1,2],[987,1,1,2,3],[988,1,1,3,4],[990,1,1,4,5],[995,1,1,5,6]]],[44,1,1,6,7,[[1046,1,1,6,7]]],[47,1,1,7,8,[[1094,1,1,7,8]]],[50,1,1,8,9,[[1109,1,1,8,9]]],[62,1,1,9,10,[[1164,1,1,9,10]]],[63,1,1,10,11,[[1165,1,1,10,11]]]],[24496,25180,25615,25645,25718,25976,27957,29136,29541,30653,30666]]],["receive",[8,7,[[41,4,3,0,3,[[978,2,1,0,1],[990,1,1,1,2],[995,1,1,2,3]]],[47,1,1,3,4,[[1094,1,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]],[62,1,1,5,6,[[1164,1,1,5,6]]],[63,1,1,6,7,[[1165,1,1,6,7]]]],[25180,25718,25976,29136,29541,30653,30666]]],["received",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25615]]],["receivedst",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25645]]],["receiving",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27957]]],["took",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24496]]]]},{"k":"G619","v":[["*",[2,2,[[53,1,1,0,1,[[1124,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[29805,30197]]],["+",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30197]]],["enjoy",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29805]]]]},{"k":"G620","v":[["*",[6,6,[[54,2,2,0,2,[[1128,2,2,0,2]]],[57,3,3,2,5,[[1136,2,2,2,4],[1142,1,1,4,5]]],[64,1,1,5,6,[[1166,1,1,5,6]]]],[29883,29890,30020,30023,30159,30678]]],["left",[3,3,[[54,2,2,0,2,[[1128,2,2,0,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[29883,29890,30678]]],["remaineth",[3,3,[[57,3,3,0,3,[[1136,2,2,0,2],[1142,1,1,2,3]]]],[30020,30023,30159]]]]},{"k":"G621","v":[["licked",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25641]]]]},{"k":"G622","v":[["*",[92,86,[[39,20,18,0,18,[[930,1,1,0,1],[933,2,2,1,3],[936,1,1,3,4],[937,1,1,4,5],[938,5,4,5,9],[940,1,1,9,10],[943,1,1,10,11],[944,2,1,11,12],[946,2,2,12,14],[949,1,1,14,15],[950,1,1,15,16],[954,1,1,16,17],[955,1,1,17,18]]],[40,10,9,18,27,[[957,1,1,18,19],[958,1,1,19,20],[959,1,1,20,21],[960,1,1,21,22],[964,2,1,22,23],[965,2,2,23,25],[967,1,1,25,26],[968,1,1,26,27]]],[41,28,25,27,52,[[976,1,1,27,28],[977,1,1,28,29],[978,1,1,29,30],[980,1,1,30,31],[981,4,3,31,34],[983,1,1,34,35],[985,3,3,35,38],[987,8,7,38,45],[989,4,3,45,48],[991,2,2,48,50],[992,1,1,50,51],[993,1,1,51,52]]],[42,12,12,52,64,[[999,2,2,52,54],[1002,3,3,54,57],[1006,2,2,57,59],[1007,1,1,59,60],[1008,1,1,60,61],[1013,1,1,61,62],[1014,2,2,62,64]]],[43,1,1,64,65,[[1022,1,1,64,65]]],[44,2,2,65,67,[[1047,1,1,65,66],[1059,1,1,66,67]]],[45,6,6,67,73,[[1062,2,2,67,69],[1069,1,1,69,70],[1071,2,2,70,72],[1076,1,1,72,73]]],[46,3,3,73,76,[[1079,1,1,73,74],[1081,2,2,74,76]]],[52,1,1,76,77,[[1117,1,1,76,77]]],[57,1,1,77,78,[[1133,1,1,77,78]]],[58,2,2,78,80,[[1146,1,1,78,79],[1149,1,1,79,80]]],[59,1,1,80,81,[[1151,1,1,80,81]]],[60,2,2,81,83,[[1158,2,2,81,83]]],[62,1,1,83,84,[[1164,1,1,83,84]]],[64,2,2,84,86,[[1166,2,2,84,86]]]],[23182,23263,23264,23370,23396,23423,23445,23456,23459,23503,23657,23697,23738,23741,23867,23879,24106,24149,24239,24282,24294,24361,24535,24560,24579,24658,24682,25097,25144,25155,25269,25325,25326,25357,25456,25521,25523,25551,25592,25594,25596,25597,25605,25612,25620,25678,25680,25684,25741,25778,25795,25844,26135,26136,26269,26284,26296,26491,26509,26573,26605,26771,26794,26799,27096,27974,28295,28381,28382,28538,28576,28577,28736,28839,28862,28868,29671,29974,30277,30349,30381,30528,30531,30653,30677,30683]]],["+",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28381]]],["Destroy",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28295]]],["destroy",[18,18,[[39,5,5,0,5,[[930,1,1,0,1],[938,1,1,1,2],[940,1,1,2,3],[949,1,1,3,4],[955,1,1,4,5]]],[40,5,5,5,10,[[957,1,1,5,6],[959,1,1,6,7],[965,1,1,7,8],[967,1,1,8,9],[968,1,1,9,10]]],[41,5,5,10,15,[[976,1,1,10,11],[978,1,1,11,12],[981,1,1,12,13],[991,1,1,13,14],[992,1,1,14,15]]],[42,1,1,15,16,[[1006,1,1,15,16]]],[45,1,1,16,17,[[1062,1,1,16,17]]],[58,1,1,17,18,[[1149,1,1,17,18]]]],[23182,23445,23503,23867,24149,24239,24294,24560,24658,24682,25097,25155,25357,25778,25795,26491,28382,30349]]],["destroyed",[7,7,[[39,1,1,0,1,[[950,1,1,0,1]]],[41,2,2,1,3,[[989,2,2,1,3]]],[45,2,2,3,5,[[1071,2,2,3,5]]],[46,1,1,5,6,[[1081,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[23879,25678,25680,28576,28577,28868,30677]]],["die",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26799]]],["lose",[17,13,[[39,4,3,0,3,[[938,2,2,0,2],[944,2,1,2,3]]],[40,3,2,3,5,[[964,2,1,3,4],[965,1,1,4,5]]],[41,7,5,5,10,[[981,3,2,5,7],[987,2,2,7,9],[989,2,1,9,10]]],[42,2,2,10,12,[[1002,1,1,10,11],[1008,1,1,11,12]]],[62,1,1,12,13,[[1164,1,1,12,13]]]],[23456,23459,23697,24535,24579,25325,25326,25592,25596,25684,26296,26605,30653]]],["loseth",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23456]]],["lost",[13,13,[[39,3,3,0,3,[[938,1,1,0,1],[943,1,1,1,2],[946,1,1,2,3]]],[41,6,6,3,9,[[987,5,5,3,8],[991,1,1,8,9]]],[42,3,3,9,12,[[1002,1,1,9,10],[1013,1,1,10,11],[1014,1,1,11,12]]],[46,1,1,12,13,[[1081,1,1,12,13]]]],[23423,23657,23738,25592,25594,25597,25612,25620,25741,26269,26771,26794,28862]]],["marred",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24282]]],["perish",[24,24,[[39,6,6,0,6,[[933,2,2,0,2],[936,1,1,2,3],[937,1,1,3,4],[946,1,1,4,5],[954,1,1,5,6]]],[40,1,1,6,7,[[960,1,1,6,7]]],[41,7,7,7,14,[[977,1,1,7,8],[980,1,1,8,9],[985,3,3,9,12],[987,1,1,12,13],[993,1,1,13,14]]],[42,4,4,14,18,[[999,2,2,14,16],[1006,1,1,16,17],[1007,1,1,17,18]]],[44,1,1,18,19,[[1047,1,1,18,19]]],[45,1,1,19,20,[[1069,1,1,19,20]]],[46,1,1,20,21,[[1079,1,1,20,21]]],[52,1,1,21,22,[[1117,1,1,21,22]]],[57,1,1,22,23,[[1133,1,1,22,23]]],[60,1,1,23,24,[[1158,1,1,23,24]]]],[23263,23264,23370,23396,23741,24106,24361,25144,25269,25521,25523,25551,25605,25844,26135,26136,26509,26573,27974,28538,28839,29671,29974,30531]]],["perished",[5,5,[[41,1,1,0,1,[[983,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]],[60,1,1,3,4,[[1158,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[25456,27096,28736,30528,30683]]],["perisheth",[3,3,[[42,1,1,0,1,[[1002,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]],[59,1,1,2,3,[[1151,1,1,2,3]]]],[26284,30277,30381]]]]},{"k":"G623","v":[["Apollyon",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30851]]]]},{"k":"G624","v":[["Apollonia",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27524]]]]},{"k":"G625","v":[["*",[10,10,[[43,2,2,0,2,[[1035,1,1,0,1],[1036,1,1,1,2]]],[45,7,7,2,9,[[1062,1,1,2,3],[1064,4,4,3,7],[1065,1,1,7,8],[1077,1,1,8,9]]],[55,1,1,9,10,[[1131,1,1,9,10]]]],[27581,27586,28375,28414,28415,28416,28432,28439,28788,29936]]],["+",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29936]]],["Apollos",[9,9,[[43,2,2,0,2,[[1035,1,1,0,1],[1036,1,1,1,2]]],[45,7,7,2,9,[[1062,1,1,2,3],[1064,4,4,3,7],[1065,1,1,7,8],[1077,1,1,8,9]]]],[27581,27586,28375,28414,28415,28416,28432,28439,28788]]]]},{"k":"G626","v":[["*",[10,10,[[41,2,2,0,2,[[984,1,1,0,1],[993,1,1,1,2]]],[43,6,6,2,8,[[1036,1,1,2,3],[1041,1,1,3,4],[1042,1,1,4,5],[1043,3,3,5,8]]],[44,1,1,8,9,[[1047,1,1,8,9]]],[46,1,1,9,10,[[1089,1,1,9,10]]]],[25470,25840,27618,27779,27804,27824,27825,27847,27977,29041]]],["answer",[3,3,[[41,2,2,0,2,[[984,1,1,0,1],[993,1,1,1,2]]],[43,1,1,2,3,[[1041,1,1,2,3]]]],[25470,25840,27779]]],["defence",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27618]]],["excusing",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27977]]],["himself",[3,3,[[43,3,3,0,3,[[1042,1,1,0,1],[1043,2,2,1,3]]]],[27804,27824,27847]]],["myself",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27825]]],["ourselves",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29041]]]]},{"k":"G627","v":[["*",[8,8,[[43,2,2,0,2,[[1039,1,1,0,1],[1042,1,1,1,2]]],[45,1,1,2,3,[[1070,1,1,2,3]]],[46,1,1,3,4,[[1084,1,1,3,4]]],[49,2,2,4,6,[[1103,2,2,4,6]]],[54,1,1,6,7,[[1128,1,1,6,7]]],[59,1,1,7,8,[[1153,1,1,7,8]]]],[27705,27812,28543,28927,29368,29378,29886,30439]]],["+",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30439]]],["answer",[2,2,[[45,1,1,0,1,[[1070,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]]],[28543,29886]]],["defence",[3,3,[[43,1,1,0,1,[[1039,1,1,0,1]]],[49,2,2,1,3,[[1103,2,2,1,3]]]],[27705,29368,29378]]],["himself",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27812]]],["yourselves",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28927]]]]},{"k":"G628","v":[["*",[2,2,[[43,1,1,0,1,[[1039,1,1,0,1]]],[45,1,1,1,2,[[1067,1,1,1,2]]]],[27720,28478]]],["away",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27720]]],["washed",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28478]]]]},{"k":"G629","v":[["*",[10,10,[[41,1,1,0,1,[[993,1,1,0,1]]],[44,2,2,1,3,[[1048,1,1,1,2],[1053,1,1,2,3]]],[45,1,1,3,4,[[1062,1,1,3,4]]],[48,3,3,4,7,[[1097,2,2,4,6],[1100,1,1,6,7]]],[50,1,1,7,8,[[1107,1,1,7,8]]],[57,2,2,8,10,[[1141,1,1,8,9],[1143,1,1,9,10]]]],[25854,28015,28139,28393,29213,29220,29302,29479,30120,30207]]],["deliverance",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30207]]],["redemption",[9,9,[[41,1,1,0,1,[[993,1,1,0,1]]],[44,2,2,1,3,[[1048,1,1,1,2],[1053,1,1,2,3]]],[45,1,1,3,4,[[1062,1,1,3,4]]],[48,3,3,4,7,[[1097,2,2,4,6],[1100,1,1,6,7]]],[50,1,1,7,8,[[1107,1,1,7,8]]],[57,1,1,8,9,[[1141,1,1,8,9]]]],[25854,28015,28139,28393,29213,29220,29302,29479,30120]]]]},{"k":"G630","v":[["*",[69,63,[[39,20,18,0,18,[[929,1,1,0,1],[933,3,2,1,3],[942,3,3,3,6],[943,3,3,6,9],[946,1,1,9,10],[947,5,4,10,14],[955,4,4,14,18]]],[40,12,12,18,30,[[962,2,2,18,20],[964,2,2,20,22],[966,4,4,22,26],[971,4,4,26,30]]],[41,16,14,30,44,[[974,1,1,30,31],[978,2,1,31,32],[980,1,1,32,33],[981,1,1,33,34],[985,1,1,34,35],[986,1,1,35,36],[988,2,1,36,37],[994,1,1,37,38],[995,6,6,38,44]]],[42,5,3,44,47,[[1014,2,1,44,45],[1015,3,2,45,47]]],[43,15,15,47,62,[[1020,1,1,47,48],[1021,2,2,48,50],[1022,1,1,50,51],[1030,1,1,51,52],[1032,2,2,52,54],[1033,2,2,54,56],[1034,1,1,56,57],[1036,1,1,57,58],[1040,1,1,58,59],[1043,1,1,59,60],[1045,2,2,60,62]]],[57,1,1,62,63,[[1145,1,1,62,63]]]],[23163,23265,23266,23612,23619,23620,23656,23665,23672,23754,23765,23769,23770,23771,24144,24146,24150,24155,24443,24452,24503,24509,24590,24592,24599,24600,24832,24835,24837,24841,25002,25183,25283,25313,25530,25557,25638,25932,25951,25952,25953,25955,25957,25960,26824,26835,26837,27009,27043,27045,27099,27365,27472,27475,27518,27519,27532,27626,27756,27855,27917,27924,30264]]],["+",[18,18,[[39,7,7,0,7,[[929,1,1,0,1],[942,3,3,1,4],[943,2,2,4,6],[947,1,1,6,7]]],[40,3,3,7,10,[[962,1,1,7,8],[964,2,2,8,10]]],[41,2,2,10,12,[[980,1,1,10,11],[981,1,1,11,12]]],[42,1,1,12,13,[[1015,1,1,12,13]]],[43,5,5,13,18,[[1021,1,1,13,14],[1022,1,1,14,15],[1033,1,1,15,16],[1034,1,1,16,17],[1040,1,1,17,18]]]],[23163,23612,23619,23620,23656,23665,23769,24443,24503,24509,25283,25313,26837,27043,27099,27518,27532,27756]]],["away",[15,13,[[39,7,6,0,6,[[933,2,2,0,2],[943,1,1,2,3],[947,4,3,3,6]]],[40,5,5,6,11,[[962,1,1,6,7],[966,4,4,7,11]]],[41,2,1,11,12,[[988,2,1,11,12]]],[43,1,1,12,13,[[1030,1,1,12,13]]]],[23265,23266,23672,23765,23770,23771,24452,24590,24592,24599,24600,25638,27365]]],["depart",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25002]]],["departed",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27924]]],["dismissed",[2,2,[[43,2,2,0,2,[[1032,1,1,0,1],[1036,1,1,1,2]]]],[27472,27626]]],["divorced",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23266]]],["forgive",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25183]]],["forgiven",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25183]]],["go",[8,8,[[41,3,3,0,3,[[986,1,1,0,1],[994,1,1,1,2],[995,1,1,2,3]]],[43,5,5,3,8,[[1020,1,1,3,4],[1021,1,1,4,5],[1032,1,1,5,6],[1033,1,1,6,7],[1045,1,1,7,8]]]],[25557,25932,25957,27009,27045,27475,27519,27917]]],["liberty",[2,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[27855,30264]]],["loosed",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23754,25530]]],["release",[13,12,[[39,3,3,0,3,[[955,3,3,0,3]]],[40,2,2,3,5,[[971,2,2,3,5]]],[41,4,4,5,9,[[995,4,4,5,9]]],[42,4,3,9,12,[[1014,2,1,9,10],[1015,2,2,10,12]]]],[24144,24146,24150,24835,24837,25951,25952,25953,25955,26824,26835,26837]]],["released",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,2,2,1,3,[[971,2,2,1,3]]],[41,1,1,3,4,[[995,1,1,3,4]]]],[24155,24832,24841,25960]]]]},{"k":"G631","v":[["off",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25374]]]]},{"k":"G632","v":[["giving",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30431]]]]},{"k":"G633","v":[["washed",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24153]]]]},{"k":"G634","v":[["fell",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27234]]]]},{"k":"G635","v":[["*",[2,2,[[40,1,1,0,1,[[969,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[24739,29798]]],["erred",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29798]]],["seduce",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24739]]]]},{"k":"G636","v":[["*",[4,4,[[43,4,4,0,4,[[1030,1,1,0,1],[1031,1,1,1,2],[1037,1,1,2,3],[1044,1,1,3,4]]]],[27366,27440,27641,27856]]],["+",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27641]]],["sail",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27856]]],["sailed",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1031,1,1,1,2]]]],[27366,27440]]]]},{"k":"G637","v":[["washing",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25109]]]]},{"k":"G638","v":[["choked",[3,3,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,2,2,1,3,[[980,2,2,1,3]]]],[23546,25252,25278]]]]},{"k":"G639","v":[["*",[4,4,[[42,1,1,0,1,[[1009,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]],[46,1,1,2,3,[[1081,1,1,2,3]]],[47,1,1,3,4,[[1094,1,1,3,4]]]],[26652,27816,28867,29151]]],["doubt",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29151]]],["doubted",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27816]]],["doubting",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26652]]],["perplexed",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28867]]]]},{"k":"G640","v":[["perplexity",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25851]]]]},{"k":"G641","v":[["cast",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27898]]]]},{"k":"G642","v":[["taken",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29587]]]]},{"k":"G643","v":[["carriages",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27679]]]]},{"k":"G644","v":[["shadow",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30283]]]]},{"k":"G645","v":[["*",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[43,2,2,2,4,[[1037,1,1,2,3],[1038,1,1,3,4]]]],[24105,25905,27656,27665]]],["away",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27656]]],["drew",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24105]]],["gotten",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27665]]],["withdrawn",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25905]]]]},{"k":"G646","v":[["*",[2,2,[[43,1,1,0,1,[[1038,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]]],[27685,29664]]],["away",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29664]]],["forsake",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27685]]]]},{"k":"G647","v":[["divorcement",[3,3,[[39,2,2,0,2,[[933,1,1,0,1],[947,1,1,1,2]]],[40,1,1,2,3,[[966,1,1,2,3]]]],[23265,23769,24592]]]]},{"k":"G648","v":[["uncovered",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24264]]]]},{"k":"G649","v":[["*",[133,130,[[39,21,21,0,21,[[930,1,1,0,1],[938,3,3,1,4],[939,1,1,4,5],[941,1,1,5,6],[942,1,1,6,7],[943,1,1,7,8],[948,1,1,8,9],[949,5,5,9,14],[950,3,3,14,17],[951,2,2,17,19],[952,1,1,19,20],[955,1,1,20,21]]],[40,21,20,21,41,[[957,1,1,21,22],[959,2,2,22,24],[960,1,1,24,25],[961,1,1,25,26],[962,3,3,26,29],[964,1,1,29,30],[965,1,1,30,31],[967,2,2,31,33],[968,7,6,33,39],[969,1,1,39,40],[970,1,1,40,41]]],[41,26,25,41,66,[[973,2,2,41,43],[976,3,2,43,45],[979,3,3,45,48],[981,3,3,48,51],[982,3,3,51,54],[983,1,1,54,55],[985,1,1,55,56],[986,2,2,56,58],[991,3,3,58,61],[992,2,2,61,63],[994,2,2,63,65],[996,1,1,65,66]]],[42,28,27,66,93,[[997,3,3,66,69],[999,3,3,69,72],[1000,1,1,72,73],[1001,3,3,73,76],[1002,2,2,76,78],[1003,2,2,78,80],[1004,1,1,80,81],[1005,1,1,81,82],[1006,1,1,82,83],[1007,2,2,83,85],[1013,7,6,85,91],[1014,1,1,91,92],[1016,1,1,92,93]]],[43,25,25,93,118,[[1020,2,2,93,95],[1022,1,1,95,96],[1024,3,3,96,99],[1025,1,1,99,100],[1026,2,2,100,102],[1027,5,5,102,107],[1028,3,3,107,110],[1030,2,2,110,112],[1032,1,1,112,113],[1033,2,2,113,115],[1036,1,1,115,116],[1043,1,1,116,117],[1045,1,1,117,118]]],[44,1,1,118,119,[[1055,1,1,118,119]]],[45,1,1,119,120,[[1062,1,1,119,120]]],[46,1,1,120,121,[[1089,1,1,120,121]]],[54,1,1,121,122,[[1128,1,1,121,122]]],[57,1,1,122,123,[[1133,1,1,122,123]]],[59,1,1,123,124,[[1151,1,1,123,124]]],[61,3,3,124,127,[[1162,3,3,124,127]]],[65,3,3,127,130,[[1167,1,1,127,128],[1171,1,1,128,129],[1188,1,1,129,130]]]],[23185,23422,23433,23457,23469,23580,23632,23657,23794,23827,23829,23860,23862,23863,23875,23876,23888,23952,23955,23988,24148,24217,24302,24319,24352,24374,24414,24424,24434,24526,24575,24641,24643,24675,24676,24677,24678,24679,24686,24744,24767,24912,24919,25081,25106,25198,25215,25222,25303,25349,25353,25364,25366,25379,25454,25552,25570,25585,25745,25760,25763,25789,25799,25872,25899,26040,26050,26063,26068,26137,26148,26154,26194,26243,26246,26248,26286,26314,26357,26360,26423,26447,26517,26526,26565,26762,26767,26777,26780,26782,26784,26809,26888,27016,27022,27080,27130,27150,27151,27190,27233,27254,27267,27276,27279,27280,27295,27318,27320,27337,27377,27388,27469,27518,27519,27607,27840,27927,28203,28380,29039,29882,29977,30386,30612,30613,30617,30698,30785,31086]]],["+",[7,7,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,4,4,1,5,[[959,1,1,1,2],[961,1,1,2,3],[962,1,1,3,4],[964,1,1,4,5]]],[41,2,2,5,7,[[982,1,1,5,6],[983,1,1,6,7]]]],[23433,24302,24374,24414,24526,25366,25454]]],["Send",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27320]]],["Sent",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26447]]],["away",[2,2,[[40,2,2,0,2,[[968,2,2,0,2]]]],[24676,24677]]],["down",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30386]]],["forth",[11,11,[[39,5,5,0,5,[[930,1,1,0,1],[938,1,1,1,2],[941,1,1,2,3],[950,2,2,3,5]]],[40,3,3,5,8,[[962,1,1,5,6],[967,1,1,6,7],[970,1,1,7,8]]],[41,1,1,8,9,[[992,1,1,8,9]]],[57,1,1,9,10,[[1133,1,1,9,10]]],[65,1,1,10,11,[[1171,1,1,10,11]]]],[23185,23422,23580,23875,23876,24424,24641,24767,25799,29977,30785]]],["in",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24352]]],["out",[2,2,[[39,2,2,0,2,[[942,1,1,0,1],[950,1,1,1,2]]]],[23632,23888]]],["send",[15,15,[[39,4,4,0,4,[[939,1,1,0,1],[949,1,1,1,2],[951,1,1,2,3],[952,1,1,3,4]]],[40,4,4,4,8,[[957,1,1,4,5],[967,1,1,5,6],[968,1,1,6,7],[969,1,1,7,8]]],[41,2,2,8,10,[[979,1,1,8,9],[996,1,1,9,10]]],[42,1,1,10,11,[[1013,1,1,10,11]]],[43,4,4,11,15,[[1020,1,1,11,12],[1024,2,2,12,14],[1043,1,1,14,15]]]],[23469,23829,23952,23988,24217,24643,24686,24744,25222,26040,26767,27016,27150,27151,27840]]],["sendeth",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25585]]],["sent",[90,89,[[39,9,9,0,9,[[938,1,1,0,1],[943,1,1,1,2],[948,1,1,2,3],[949,4,4,3,7],[951,1,1,7,8],[955,1,1,8,9]]],[40,7,7,9,16,[[959,1,1,9,10],[962,1,1,10,11],[965,1,1,11,12],[968,4,4,12,16]]],[41,19,19,16,35,[[973,2,2,16,18],[976,2,2,18,20],[979,2,2,20,22],[981,3,3,22,25],[982,2,2,25,27],[985,1,1,27,28],[986,1,1,28,29],[991,3,3,29,32],[992,1,1,32,33],[994,2,2,33,35]]],[42,26,25,35,60,[[997,3,3,35,38],[999,3,3,38,41],[1000,1,1,41,42],[1001,3,3,42,45],[1002,2,2,45,47],[1003,2,2,47,49],[1004,1,1,49,50],[1006,1,1,50,51],[1007,2,2,51,53],[1013,6,5,53,58],[1014,1,1,58,59],[1016,1,1,59,60]]],[43,20,20,60,80,[[1020,1,1,60,61],[1022,1,1,61,62],[1024,1,1,62,63],[1025,1,1,63,64],[1026,2,2,64,66],[1027,5,5,66,71],[1028,2,2,71,73],[1030,2,2,73,75],[1032,1,1,75,76],[1033,2,2,76,78],[1036,1,1,78,79],[1045,1,1,79,80]]],[44,1,1,80,81,[[1055,1,1,80,81]]],[45,1,1,81,82,[[1062,1,1,81,82]]],[46,1,1,82,83,[[1089,1,1,82,83]]],[54,1,1,83,84,[[1128,1,1,83,84]]],[61,3,3,84,87,[[1162,3,3,84,87]]],[65,2,2,87,89,[[1167,1,1,87,88],[1188,1,1,88,89]]]],[23457,23657,23794,23827,23860,23862,23863,23955,24148,24319,24434,24575,24675,24677,24678,24679,24912,24919,25081,25106,25198,25215,25303,25349,25353,25364,25379,25552,25570,25745,25760,25763,25789,25872,25899,26050,26063,26068,26137,26148,26154,26194,26243,26246,26248,26286,26314,26357,26360,26423,26517,26526,26565,26762,26777,26780,26782,26784,26809,26888,27022,27080,27130,27190,27233,27254,27267,27276,27279,27280,27295,27318,27337,27377,27388,27469,27518,27519,27607,27927,28203,28380,29039,29882,30612,30613,30617,30698,31086]]],["set",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25081]]]]},{"k":"G650","v":[["*",[6,6,[[40,1,1,0,1,[[966,1,1,0,1]]],[45,3,3,1,4,[[1067,2,2,1,3],[1068,1,1,3,4]]],[53,1,1,4,5,[[1124,1,1,4,5]]],[58,1,1,5,6,[[1150,1,1,5,6]]]],[24607,28474,28475,28492,29793,30358]]],["Defraud",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[24607,28492]]],["defraud",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28475]]],["defrauded",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28474]]],["destitute",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29793]]],["fraud",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30358]]]]},{"k":"G651","v":[["apostleship",[4,4,[[43,1,1,0,1,[[1018,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[45,1,1,2,3,[[1070,1,1,2,3]]],[47,1,1,3,4,[[1092,1,1,3,4]]]],[26948,27935,28542,29089]]]]},{"k":"G652","v":[["*",[81,80,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,6,6,2,8,[[978,1,1,2,3],[981,1,1,3,4],[983,1,1,4,5],[989,1,1,5,6],[994,1,1,6,7],[996,1,1,7,8]]],[42,1,1,8,9,[[1009,1,1,8,9]]],[43,30,30,9,39,[[1018,2,2,9,11],[1019,3,3,11,14],[1021,4,4,14,18],[1022,6,6,18,24],[1023,1,1,24,25],[1025,3,3,25,28],[1026,1,1,28,29],[1028,1,1,29,30],[1031,2,2,30,32],[1032,6,6,32,38],[1033,1,1,38,39]]],[44,3,3,39,42,[[1046,1,1,39,40],[1056,1,1,40,41],[1061,1,1,41,42]]],[45,10,9,42,51,[[1062,1,1,42,43],[1065,1,1,43,44],[1070,3,3,44,47],[1073,2,2,47,49],[1076,3,2,49,51]]],[46,6,6,51,57,[[1078,1,1,51,52],[1085,1,1,52,53],[1088,2,2,53,55],[1089,2,2,55,57]]],[47,3,3,57,60,[[1091,3,3,57,60]]],[48,4,4,60,64,[[1097,1,1,60,61],[1098,1,1,61,62],[1099,1,1,62,63],[1100,1,1,63,64]]],[49,1,1,64,65,[[1104,1,1,64,65]]],[50,1,1,65,66,[[1107,1,1,65,66]]],[51,1,1,66,67,[[1112,1,1,66,67]]],[53,2,2,67,69,[[1119,1,1,67,68],[1120,1,1,68,69]]],[54,2,2,69,71,[[1125,2,2,69,71]]],[55,1,1,71,72,[[1129,1,1,71,72]]],[57,1,1,72,73,[[1135,1,1,72,73]]],[59,1,1,73,74,[[1151,1,1,73,74]]],[60,2,2,74,76,[[1156,1,1,74,75],[1158,1,1,75,76]]],[64,1,1,76,77,[[1166,1,1,76,77]]],[65,3,3,77,80,[[1168,1,1,77,78],[1184,1,1,78,79],[1187,1,1,79,80]]]],[23419,24437,25159,25311,25454,25656,25878,26001,26646,26925,26949,26986,26991,26992,27055,27057,27058,27059,27061,27071,27077,27088,27093,27099,27107,27177,27190,27194,27243,27308,27418,27428,27444,27446,27448,27464,27465,27475,27487,27931,28222,28343,28364,28442,28541,28542,28545,28662,28663,28725,28727,28801,28955,28994,29002,29033,29034,29058,29074,29076,29207,29249,29256,29283,29416,29466,29576,29697,29723,29810,29820,29893,29996,30375,30480,30524,30689,30719,31013,31067]]],["Apostle",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[29996]]],["apostle",[18,18,[[44,2,2,0,2,[[1046,1,1,0,1],[1056,1,1,1,2]]],[45,4,4,2,6,[[1062,1,1,2,3],[1070,2,2,3,5],[1076,1,1,5,6]]],[46,2,2,6,8,[[1078,1,1,6,7],[1089,1,1,7,8]]],[47,1,1,8,9,[[1091,1,1,8,9]]],[48,1,1,9,10,[[1097,1,1,9,10]]],[50,1,1,10,11,[[1107,1,1,10,11]]],[53,2,2,11,13,[[1119,1,1,11,12],[1120,1,1,12,13]]],[54,2,2,13,15,[[1125,2,2,13,15]]],[55,1,1,15,16,[[1129,1,1,15,16]]],[59,1,1,16,17,[[1151,1,1,16,17]]],[60,1,1,17,18,[[1156,1,1,17,18]]]],[27931,28222,28364,28541,28542,28727,28801,29034,29058,29207,29466,29697,29723,29810,29820,29893,30375,30480]]],["apostles",[54,54,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,6,6,2,8,[[978,1,1,2,3],[981,1,1,3,4],[983,1,1,4,5],[989,1,1,5,6],[994,1,1,6,7],[996,1,1,7,8]]],[43,25,25,8,33,[[1018,2,2,8,10],[1019,2,2,10,12],[1021,2,2,12,14],[1022,5,5,14,19],[1023,1,1,19,20],[1025,2,2,20,22],[1026,1,1,22,23],[1028,1,1,23,24],[1031,2,2,24,26],[1032,6,6,26,32],[1033,1,1,32,33]]],[44,1,1,33,34,[[1061,1,1,33,34]]],[45,6,6,34,40,[[1065,1,1,34,35],[1070,1,1,35,36],[1073,2,2,36,38],[1076,2,2,38,40]]],[46,3,3,40,43,[[1088,2,2,40,42],[1089,1,1,42,43]]],[47,2,2,43,45,[[1091,2,2,43,45]]],[48,3,3,45,48,[[1098,1,1,45,46],[1099,1,1,46,47],[1100,1,1,47,48]]],[51,1,1,48,49,[[1112,1,1,48,49]]],[60,1,1,49,50,[[1158,1,1,49,50]]],[64,1,1,50,51,[[1166,1,1,50,51]]],[65,3,3,51,54,[[1168,1,1,51,52],[1184,1,1,52,53],[1187,1,1,53,54]]]],[23419,24437,25159,25311,25454,25656,25878,26001,26925,26949,26986,26992,27055,27058,27071,27077,27088,27093,27099,27107,27177,27190,27243,27308,27418,27428,27444,27446,27448,27464,27465,27475,27487,28343,28442,28545,28662,28663,28725,28727,28994,29002,29033,29074,29076,29249,29256,29283,29576,30524,30689,30719,31013,31067]]],["apostles'",[5,5,[[43,5,5,0,5,[[1019,1,1,0,1],[1021,2,2,1,3],[1022,1,1,3,4],[1025,1,1,4,5]]]],[26991,27057,27059,27061,27194]]],["messenger",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29416]]],["messengers",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28955]]],["sent",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26646]]]]},{"k":"G653","v":[["+",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25458]]]]},{"k":"G654","v":[["*",[10,10,[[39,3,3,0,3,[[933,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[41,1,1,3,4,[[995,1,1,3,4]]],[43,1,1,4,5,[[1020,1,1,4,5]]],[44,1,1,5,6,[[1056,1,1,5,6]]],[54,2,2,6,8,[[1125,1,1,6,7],[1128,1,1,7,8]]],[55,1,1,8,9,[[1129,1,1,8,9]]],[57,1,1,9,10,[[1144,1,1,9,10]]]],[23276,24106,24132,25949,27022,28235,29824,29874,29906,30237]]],["+",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23276]]],["again",[2,2,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]]],[24106,24132]]],["away",[3,3,[[43,1,1,0,1,[[1020,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[27022,28235,29874]]],["from",[3,3,[[54,1,1,0,1,[[1125,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[29824,29906,30237]]],["perverteth",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25949]]]]},{"k":"G655","v":[["Abhor",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28254]]]]},{"k":"G656","v":[["*",[3,3,[[42,3,3,0,3,[[1005,1,1,0,1],[1008,1,1,1,2],[1012,1,1,2,3]]]],[26462,26622,26728]]],["synagogue",[2,2,[[42,2,2,0,2,[[1005,1,1,0,1],[1008,1,1,1,2]]]],[26462,26622]]],["synagogues",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26728]]]]},{"k":"G657","v":[["*",[6,6,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[986,1,1,2,3]]],[43,2,2,3,5,[[1035,2,2,3,5]]],[46,1,1,5,6,[[1079,1,1,5,6]]]],[24453,25362,25586,27575,27578,28837]]],["+",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]]],[24453,27578]]],["farewell",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25362]]],["forsaketh",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25586]]],["leave",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[46,1,1,1,2,[[1079,1,1,1,2]]]],[27575,28837]]]]},{"k":"G658","v":[["finished",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30281]]]]},{"k":"G659","v":[["*",[8,8,[[43,1,1,0,1,[[1024,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]],[48,2,2,2,4,[[1100,2,2,2,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]],[57,1,1,5,6,[[1144,1,1,5,6]]],[58,1,1,6,7,[[1146,1,1,6,7]]],[59,1,1,7,8,[[1152,1,1,7,8]]]],[27174,28278,29294,29297,29525,30213,30287,30400]]],["apart",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30287]]],["aside",[2,2,[[57,1,1,0,1,[[1144,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[30213,30400]]],["away",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29297]]],["down",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27174]]],["off",[3,3,[[44,1,1,0,1,[[1058,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]]],[28278,29294,29525]]]]},{"k":"G660","v":[["off",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]]],[25306,27904]]]]},{"k":"G661","v":[["repay",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29957]]]]},{"k":"G662","v":[["bold",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28208]]]]},{"k":"G663","v":[["severity",[2,1,[[44,2,1,0,1,[[1056,2,1,0,1]]]],[28231]]]]},{"k":"G664","v":[["*",[2,2,[[46,1,1,0,1,[[1090,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[29053,29905]]],["sharply",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29905]]],["sharpness",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29053]]]]},{"k":"G665","v":[["+",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29858]]]]},{"k":"G666","v":[["absence",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29403]]]]},{"k":"G667","v":[["*",[5,5,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[65,2,2,3,5,[[1183,1,1,3,4],[1187,1,1,4,5]]]],[24827,25642,28779,30978,31063]]],["+",[2,2,[[65,2,2,0,2,[[1183,1,1,0,1],[1187,1,1,1,2]]]],[30978,31063]]],["away",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24827]]],["bring",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28779]]],["carried",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25642]]]]},{"k":"G668","v":[["*",[3,3,[[60,3,3,0,3,[[1156,1,1,0,1],[1157,2,2,1,3]]]],[30483,30518,30520]]],["+",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30518]]],["escaped",[2,2,[[60,2,2,0,2,[[1156,1,1,0,1],[1157,1,1,1,2]]]],[30483,30520]]]]},{"k":"G669","v":[["*",[3,3,[[43,3,3,0,3,[[1019,2,2,0,2],[1043,1,1,2,3]]]],[26953,26963,27848]]],["forth",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27848]]],["said",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26963]]],["utterance",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26953]]]]},{"k":"G670","v":[["unlade",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27667]]]]},{"k":"G671","v":[["using",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29516]]]]},{"k":"G672","v":[["*",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[43,1,1,2,3,[[1030,1,1,2,3]]]],[23339,25340,27375]]],["depart",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23339]]],["departeth",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25340]]],["departing",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27375]]]]},{"k":"G673","v":[["*",[2,2,[[43,1,1,0,1,[[1032,1,1,0,1]]],[65,1,1,1,2,[[1172,1,1,1,2]]]],[27481,30807]]],["asunder",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27481]]],["departed",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30807]]]]},{"k":"G674","v":[["them",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25852]]]]},{"k":"G675","v":[["Appii",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27914]]]]},{"k":"G676","v":[["unto",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29804]]]]},{"k":"G677","v":[["*",[3,3,[[43,1,1,0,1,[[1041,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]]],[27785,28599,29371]]],["+",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28599]]],["offence",[2,2,[[43,1,1,0,1,[[1041,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[27785,29371]]]]},{"k":"G678","v":[["+",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30391]]]]},{"k":"G679","v":[["falling",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30696]]]]},{"k":"G680","v":[["*",[36,33,[[39,9,8,0,8,[[936,2,2,0,2],[937,3,3,2,5],[942,2,1,5,6],[945,1,1,6,7],[948,1,1,7,8]]],[40,11,10,8,18,[[957,1,1,8,9],[959,1,1,9,10],[961,4,4,10,14],[962,2,1,14,15],[963,1,1,15,16],[964,1,1,16,17],[966,1,1,17,18]]],[41,11,10,18,28,[[977,1,1,18,19],[978,1,1,19,20],[979,2,2,20,22],[980,5,4,22,26],[990,1,1,26,27],[994,1,1,27,28]]],[42,1,1,28,29,[[1016,1,1,28,29]]],[45,1,1,29,30,[[1068,1,1,29,30]]],[46,1,1,30,31,[[1083,1,1,30,31]]],[50,1,1,31,32,[[1108,1,1,31,32]]],[61,1,1,32,33,[[1163,1,1,32,33]]]],[23348,23360,23399,23400,23408,23633,23707,23826,24256,24298,24391,24392,24394,24395,24463,24496,24522,24601,25120,25165,25209,25234,25289,25290,25291,25292,25703,25915,26884,28488,28915,29515,30642]]],["Touch",[2,2,[[42,1,1,0,1,[[1016,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[26884,29515]]],["touch",[11,11,[[39,2,2,0,2,[[937,1,1,0,1],[942,1,1,1,2]]],[40,5,5,2,7,[[959,1,1,2,3],[961,1,1,3,4],[962,1,1,4,5],[964,1,1,5,6],[966,1,1,6,7]]],[41,2,2,7,9,[[978,1,1,7,8],[990,1,1,8,9]]],[45,1,1,9,10,[[1068,1,1,9,10]]],[46,1,1,10,11,[[1083,1,1,10,11]]]],[23400,23633,24298,24392,24463,24522,24601,25165,25703,28488,28915]]],["touched",[21,20,[[39,7,7,0,7,[[936,2,2,0,2],[937,2,2,2,4],[942,1,1,4,5],[945,1,1,5,6],[948,1,1,6,7]]],[40,6,6,7,13,[[957,1,1,7,8],[961,3,3,8,11],[962,1,1,11,12],[963,1,1,12,13]]],[41,8,7,13,20,[[977,1,1,13,14],[979,1,1,14,15],[980,5,4,15,19],[994,1,1,19,20]]]],[23348,23360,23399,23408,23633,23707,23826,24256,24391,24394,24395,24463,24496,25120,25209,25289,25290,25291,25292,25915]]],["toucheth",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[61,1,1,1,2,[[1163,1,1,1,2]]]],[25234,30642]]]]},{"k":"G681","v":[["*",[4,4,[[41,4,4,0,4,[[980,1,1,0,1],[983,1,1,1,2],[987,1,1,2,3],[994,1,1,3,4]]]],[25261,25438,25596,25919]]],["kindled",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25919]]],["light",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25596]]],["lighted",[2,2,[[41,2,2,0,2,[[980,1,1,0,1],[983,1,1,1,2]]]],[25261,25438]]]]},{"k":"G682","v":[["Apphia",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29940]]]]},{"k":"G683","v":[["*",[6,6,[[43,3,3,0,3,[[1024,2,2,0,2],[1030,1,1,2,3]]],[44,2,2,3,5,[[1056,2,2,3,5]]],[53,1,1,5,6,[[1119,1,1,5,6]]]],[27143,27155,27408,28210,28211,29715]]],["+",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1030,1,1,1,2]]]],[27143,27408]]],["away",[3,3,[[44,2,2,0,2,[[1056,2,2,0,2]]],[53,1,1,2,3,[[1119,1,1,2,3]]]],[28210,28211,29715]]],["from",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27155]]]]},{"k":"G684","v":[["*",[20,19,[[39,2,2,0,2,[[935,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[42,1,1,3,4,[[1013,1,1,3,4]]],[43,2,2,4,6,[[1025,1,1,4,5],[1042,1,1,5,6]]],[44,1,1,6,7,[[1054,1,1,6,7]]],[49,2,2,7,9,[[1103,1,1,7,8],[1105,1,1,8,9]]],[52,1,1,9,10,[[1117,1,1,9,10]]],[53,1,1,10,11,[[1124,1,1,10,11]]],[57,1,1,11,12,[[1142,1,1,11,12]]],[60,6,5,12,17,[[1157,4,3,12,15],[1158,2,2,15,17]]],[65,2,2,17,19,[[1183,2,2,17,19]]]],[23329,24062,24758,26771,27196,27812,28177,29389,29440,29664,29797,30172,30501,30502,30503,30529,30538,30983,30986]]],["+",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27196]]],["damnable",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30501]]],["damnation",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30503]]],["destruction",[5,5,[[39,1,1,0,1,[[935,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]],[60,2,2,3,5,[[1157,1,1,3,4],[1158,1,1,4,5]]]],[23329,28177,29440,30501,30538]]],["die",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27812]]],["perdition",[8,8,[[42,1,1,0,1,[[1013,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]],[53,1,1,3,4,[[1124,1,1,3,4]]],[57,1,1,4,5,[[1142,1,1,4,5]]],[60,1,1,5,6,[[1158,1,1,5,6]]],[65,2,2,6,8,[[1183,2,2,6,8]]]],[26771,29389,29664,29797,30172,30529,30983,30986]]],["waste",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24062,24758]]],["ways",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30502]]]]},{"k":"G685","v":[["cursing",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28005]]]]},{"k":"G686","v":[["*",[51,51,[[39,7,7,0,7,[[935,1,1,0,1],[940,1,1,1,2],[945,1,1,2,3],[946,1,1,3,4],[947,2,2,4,6],[952,1,1,6,7]]],[40,2,2,7,9,[[960,1,1,7,8],[967,1,1,8,9]]],[41,6,6,9,15,[[973,1,1,9,10],[980,1,1,10,11],[983,2,2,11,13],[984,1,1,13,14],[994,1,1,14,15]]],[43,6,6,15,21,[[1024,1,1,15,16],[1025,1,1,16,17],[1028,1,1,17,18],[1029,1,1,18,19],[1034,1,1,19,20],[1038,1,1,20,21]]],[44,11,11,21,32,[[1050,1,1,21,22],[1052,3,3,22,25],[1053,2,2,25,27],[1054,2,2,27,29],[1055,1,1,29,30],[1059,2,2,30,32]]],[45,5,5,32,37,[[1066,1,1,32,33],[1068,1,1,33,34],[1076,3,3,34,37]]],[46,3,3,37,40,[[1078,1,1,37,38],[1082,1,1,38,39],[1084,1,1,39,40]]],[47,6,6,40,46,[[1092,1,1,40,41],[1093,2,2,41,43],[1094,1,1,43,44],[1095,1,1,44,45],[1096,1,1,45,46]]],[48,1,1,46,47,[[1098,1,1,46,47]]],[51,1,1,47,48,[[1115,1,1,47,48]]],[52,1,1,48,49,[[1117,1,1,48,49]]],[57,2,2,49,51,[[1136,1,1,49,50],[1144,1,1,50,51]]]],[23336,23517,23726,23728,23787,23789,24002,24364,24653,24959,25270,25425,25453,25501,25887,27117,27198,27325,27355,27550,27702,28065,28094,28112,28116,28117,28128,28171,28173,28205,28292,28299,28464,28501,28732,28733,28736,28817,28891,28928,29102,29109,29131,29162,29173,29198,29248,29627,29676,30023,30220]]],["+",[15,15,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,2,2,2,4,[[980,1,1,2,3],[994,1,1,3,4]]],[43,2,2,4,6,[[1024,1,1,4,5],[1034,1,1,5,6]]],[44,3,3,6,9,[[1050,1,1,6,7],[1053,1,1,7,8],[1054,1,1,8,9]]],[45,2,2,9,11,[[1068,1,1,9,10],[1076,1,1,10,11]]],[46,1,1,11,12,[[1078,1,1,11,12]]],[47,1,1,12,13,[[1096,1,1,12,13]]],[51,1,1,13,14,[[1115,1,1,13,14]]],[52,1,1,14,15,[[1117,1,1,14,15]]]],[23728,24364,25270,25887,27117,27550,28065,28128,28173,28501,28733,28817,29198,29627,29676]]],["-",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28299]]],["Now",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29248]]],["So",[4,4,[[44,4,4,0,4,[[1052,2,2,0,2],[1054,1,1,2,3],[1059,1,1,3,4]]]],[28094,28116,28171,28292]]],["Then",[3,3,[[39,1,1,0,1,[[945,1,1,0,1]]],[43,1,1,1,2,[[1028,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]]],[23726,27325,28736]]],["Truly",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25453]]],["Wherefore",[2,2,[[39,1,1,0,1,[[935,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]]],[23336,28928]]],["doubt",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25425]]],["haply",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24653]]],["of",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24959]]],["perhaps",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27198]]],["that",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27702]]],["then",[14,14,[[39,3,3,0,3,[[940,1,1,0,1],[947,1,1,1,2],[952,1,1,2,3]]],[41,1,1,3,4,[[984,1,1,3,4]]],[44,2,2,4,6,[[1052,1,1,4,5],[1055,1,1,5,6]]],[45,2,2,6,8,[[1066,1,1,6,7],[1076,1,1,7,8]]],[46,1,1,8,9,[[1082,1,1,8,9]]],[47,4,4,9,13,[[1092,1,1,9,10],[1093,1,1,10,11],[1094,1,1,11,12],[1095,1,1,12,13]]],[57,1,1,13,14,[[1144,1,1,13,14]]]],[23517,23787,24002,25501,28112,28205,28464,28732,28891,29102,29131,29162,29173,30220]]],["therefore",[4,4,[[39,1,1,0,1,[[947,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]],[47,1,1,2,3,[[1093,1,1,2,3]]],[57,1,1,3,4,[[1136,1,1,3,4]]]],[23789,28117,29109,30023]]],["was",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27355]]]]},{"k":"G687","v":[["*",[3,3,[[41,1,1,0,1,[[990,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]]],[25696,27206,29098]]],["+",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27206]]],["shall",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25696]]],["therefore",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29098]]]]},{"k":"G688","v":[["Arabia",[2,2,[[47,2,2,0,2,[[1091,1,1,0,1],[1094,1,1,1,2]]]],[29074,29156]]]]},{"k":"G689","v":[["Aram",[3,3,[[39,2,2,0,2,[[929,2,2,0,2]]],[41,1,1,2,3,[[975,1,1,2,3]]]],[23147,23148,25058]]]]},{"k":"G690","v":[["Arabians",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26960]]]]},{"k":"G691","v":[["lingereth",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30503]]]]},{"k":"G692","v":[["*",[8,6,[[39,4,3,0,3,[[940,1,1,0,1],[948,3,2,1,3]]],[53,2,1,3,4,[[1123,2,1,3,4]]],[55,1,1,4,5,[[1129,1,1,4,5]]],[60,1,1,5,6,[[1156,1,1,5,6]]]],[23525,23795,23798,29776,29904,30487]]],["barren",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30487]]],["idle",[6,4,[[39,4,3,0,3,[[940,1,1,0,1],[948,3,2,1,3]]],[53,2,1,3,4,[[1123,2,1,3,4]]]],[23525,23795,23798,29776]]],["slow",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29904]]]]},{"k":"G693","v":[["silver",[3,3,[[43,1,1,0,1,[[1036,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]],[65,1,1,2,3,[[1175,1,1,2,3]]]],[27609,29847,30860]]]]},{"k":"G694","v":[["*",[20,20,[[39,9,9,0,9,[[953,2,2,0,2],[954,1,1,2,3],[955,4,4,3,7],[956,2,2,7,9]]],[40,1,1,9,10,[[970,1,1,9,10]]],[41,4,4,10,14,[[981,1,1,10,11],[991,2,2,11,13],[994,1,1,13,14]]],[43,5,5,14,19,[[1020,1,1,14,15],[1024,1,1,15,16],[1025,1,1,16,17],[1036,1,1,17,18],[1037,1,1,18,19]]],[59,1,1,19,20,[[1151,1,1,19,20]]]],[24026,24035,24069,24132,24134,24135,24138,24207,24210,24765,25304,25746,25754,25869,27002,27132,27196,27604,27659,30392]]],["Silver",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27002]]],["money",[11,11,[[39,4,4,0,4,[[953,2,2,0,2],[956,2,2,2,4]]],[40,1,1,4,5,[[970,1,1,4,5]]],[41,4,4,5,9,[[981,1,1,5,6],[991,2,2,6,8],[994,1,1,8,9]]],[43,2,2,9,11,[[1024,1,1,9,10],[1025,1,1,10,11]]]],[24026,24035,24207,24210,24765,25304,25746,25754,25869,27132,27196]]],["pieces",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24135]]],["silver",[7,7,[[39,4,4,0,4,[[954,1,1,0,1],[955,3,3,1,4]]],[43,2,2,4,6,[[1036,1,1,4,5],[1037,1,1,5,6]]],[59,1,1,6,7,[[1151,1,1,6,7]]]],[24069,24132,24134,24138,27604,27659,30392]]]]},{"k":"G695","v":[["silversmith",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27609]]]]},{"k":"G696","v":[["silver",[5,5,[[39,1,1,0,1,[[938,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[45,1,1,2,3,[[1064,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]],[65,1,1,4,5,[[1184,1,1,4,5]]]],[23426,27552,28422,30357,31005]]]]},{"k":"G697","v":[["*",[2,2,[[43,2,2,0,2,[[1034,2,2,0,2]]]],[27542,27545]]],["Areopagus",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27542]]],["hill",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27545]]]]},{"k":"G698","v":[["Areopagite",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27557]]]]},{"k":"G699","v":[["pleasing",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29475]]]]},{"k":"G700","v":[["*",[17,16,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[43,1,1,2,3,[[1023,1,1,2,3]]],[44,4,4,3,7,[[1053,1,1,3,4],[1060,3,3,4,7]]],[45,4,4,7,11,[[1068,3,3,7,10],[1071,1,1,10,11]]],[47,2,1,11,12,[[1091,2,1,11,12]]],[51,3,3,12,15,[[1112,2,2,12,14],[1114,1,1,14,15]]],[54,1,1,15,16,[[1126,1,1,15,16]]]],[23603,24429,27106,28124,28304,28305,28306,28519,28520,28521,28600,29067,29574,29585,29604,29831]]],["please",[11,11,[[44,3,3,0,3,[[1053,1,1,0,1],[1060,2,2,1,3]]],[45,4,4,3,7,[[1068,3,3,3,6],[1071,1,1,6,7]]],[47,1,1,7,8,[[1091,1,1,7,8]]],[51,2,2,8,10,[[1112,1,1,8,9],[1114,1,1,9,10]]],[54,1,1,10,11,[[1126,1,1,10,11]]]],[28124,28304,28305,28519,28520,28521,28600,29067,29585,29604,29831]]],["pleased",[5,5,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[43,1,1,2,3,[[1023,1,1,2,3]]],[44,1,1,3,4,[[1060,1,1,3,4]]],[47,1,1,4,5,[[1091,1,1,4,5]]]],[23603,24429,27106,28306,29067]]],["pleasing",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29574]]]]},{"k":"G701","v":[["*",[4,4,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,2,2,1,3,[[1023,1,1,1,2],[1029,1,1,2,3]]],[61,1,1,3,4,[[1161,1,1,3,4]]]],[26410,27103,27340,30601]]],["+",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27340]]],["please",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26410]]],["pleasing",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30601]]],["reason",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27103]]]]},{"k":"G702","v":[["Aretas",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29021]]]]},{"k":"G703","v":[["*",[5,4,[[49,1,1,0,1,[[1106,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]],[60,3,2,2,4,[[1156,3,2,2,4]]]],[29450,30408,30482,30484]]],["praises",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30408]]],["virtue",[4,3,[[49,1,1,0,1,[[1106,1,1,0,1]]],[60,3,2,1,3,[[1156,3,2,1,3]]]],[29450,30482,30484]]]]},{"k":"G704","v":[["lambs",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25366]]]]},{"k":"G705","v":[["*",[3,3,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[65,1,1,2,3,[[1173,1,1,2,3]]]],[23447,25466,30819]]],["+",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30819]]],["numbered",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23447,25466]]]]},{"k":"G706","v":[["number",[18,15,[[41,1,1,0,1,[[994,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[43,5,5,2,7,[[1021,1,1,2,3],[1022,1,1,3,4],[1023,1,1,4,5],[1028,1,1,5,6],[1033,1,1,6,7]]],[44,1,1,7,8,[[1054,1,1,7,8]]],[65,10,7,8,15,[[1171,1,1,8,9],[1173,1,1,9,10],[1175,2,1,10,11],[1179,4,2,11,13],[1181,1,1,13,14],[1186,1,1,14,15]]]],[25867,26267,27026,27095,27108,27328,27488,28182,30790,30814,30856,30925,30926,30948,31046]]]]},{"k":"G707","v":[["Arimathaea",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]]],[24186,24869,25986,26863]]]]},{"k":"G708","v":[["Aristarchus",[5,5,[[43,3,3,0,3,[[1036,1,1,0,1],[1037,1,1,1,2],[1044,1,1,2,3]]],[50,1,1,3,4,[[1110,1,1,3,4]]],[56,1,1,4,5,[[1132,1,1,4,5]]]],[27614,27630,27857,29552,29962]]]]},{"k":"G709","v":[["*",[3,3,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,2,2,1,3,[[1017,2,2,1,3]]]],[25442,26910,26913]]],["dine",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,1,1,1,2,[[1017,1,1,1,2]]]],[25442,26910]]],["dined",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26913]]]]},{"k":"G710","v":[["*",[3,3,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]],[46,1,1,2,3,[[1083,1,1,2,3]]]],[23285,25968,28905]]],["hand",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23285]]],["left",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]]],[25968,28905]]]]},{"k":"G711","v":[["Aristobulus'",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28346]]]]},{"k":"G712","v":[["dinner",[3,3,[[39,1,1,0,1,[[950,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[986,1,1,2,3]]]],[23876,25443,25565]]]]},{"k":"G713","v":[["*",[3,3,[[39,2,2,0,2,[[934,1,1,0,1],[938,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[23316,23442,30449]]],["Sufficient",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23316]]],["enough",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23442]]],["suffice",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30449]]]]},{"k":"G714","v":[["*",[8,8,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[42,2,2,2,4,[[1002,1,1,2,3],[1010,1,1,3,4]]],[46,1,1,4,5,[[1089,1,1,4,5]]],[53,1,1,5,6,[[1124,1,1,5,6]]],[57,1,1,6,7,[[1145,1,1,6,7]]],[63,1,1,7,8,[[1165,1,1,7,8]]]],[24017,25039,26264,26676,29031,29796,30246,30668]]],["+",[3,3,[[39,1,1,0,1,[[953,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]]],[24017,26264,29796]]],["content",[3,3,[[41,1,1,0,1,[[975,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]],[63,1,1,2,3,[[1165,1,1,2,3]]]],[25039,30246,30668]]],["sufficeth",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26676]]],["sufficient",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29031]]]]},{"k":"G715","v":[["bear",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30910]]]]},{"k":"G716","v":[["*",[4,4,[[43,3,3,0,3,[[1025,3,3,0,3]]],[65,1,1,3,4,[[1175,1,1,3,4]]]],[27204,27205,27214,30849]]],["+",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27204]]],["chariot",[2,2,[[43,2,2,0,2,[[1025,2,2,0,2]]]],[27205,27214]]],["chariots",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30849]]]]},{"k":"G717","v":[["Armageddon",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30970]]]]},{"k":"G718","v":[["espoused",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28991]]]]},{"k":"G719","v":[["joints",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30026]]]]},{"k":"G720","v":[["*",[31,28,[[39,4,3,0,3,[[938,2,1,0,1],[954,2,2,1,3]]],[40,2,2,3,5,[[970,2,2,3,5]]],[41,3,3,5,8,[[980,1,1,5,6],[984,1,1,6,7],[994,1,1,7,8]]],[42,3,3,8,11,[[997,1,1,8,9],[1014,2,2,9,11]]],[43,4,4,11,15,[[1020,2,2,11,13],[1021,1,1,13,14],[1024,1,1,14,15]]],[53,1,1,15,16,[[1123,1,1,15,16]]],[54,4,3,16,19,[[1126,3,2,16,18],[1127,1,1,18,19]]],[55,2,2,19,21,[[1129,1,1,19,20],[1130,1,1,20,21]]],[57,1,1,21,22,[[1143,1,1,21,22]]],[60,1,1,22,23,[[1157,1,1,22,23]]],[61,3,2,23,25,[[1160,3,2,23,25]]],[64,1,1,25,26,[[1166,1,1,25,26]]],[65,2,2,26,28,[[1168,1,1,26,27],[1169,1,1,27,28]]]],[23450,24124,24126,24822,24824,25290,25468,25921,26064,26810,26812,27009,27010,27038,27151,29771,29839,29840,29858,29908,29920,30196,30501,30572,30573,30676,30730,30754]]],["denied",[14,14,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,2,2,2,4,[[970,2,2,2,4]]],[41,2,2,4,6,[[980,1,1,4,5],[994,1,1,5,6]]],[42,3,3,6,9,[[997,1,1,6,7],[1014,2,2,7,9]]],[43,2,2,9,11,[[1020,2,2,9,11]]],[53,1,1,11,12,[[1123,1,1,11,12]]],[65,2,2,12,14,[[1168,1,1,12,13],[1169,1,1,13,14]]]],[24124,24126,24822,24824,25290,25921,26064,26810,26812,27009,27010,29771,30730,30754]]],["denieth",[4,3,[[41,1,1,0,1,[[984,1,1,0,1]]],[61,3,2,1,3,[[1160,3,2,1,3]]]],[25468,30572,30573]]],["deny",[7,5,[[39,2,1,0,1,[[938,2,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]],[54,3,2,2,4,[[1126,3,2,2,4]]],[55,1,1,4,5,[[1129,1,1,4,5]]]],[23450,27038,29839,29840,29908]]],["denying",[4,4,[[54,1,1,0,1,[[1127,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[29858,29920,30501,30676]]],["refused",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[27151,30196]]]]},{"k":"G721","v":[["*",[30,28,[[42,1,1,0,1,[[1017,1,1,0,1]]],[65,29,27,1,28,[[1171,4,4,1,5],[1172,2,2,5,7],[1173,4,4,7,11],[1178,1,1,11,12],[1179,2,2,12,14],[1180,4,3,14,17],[1181,1,1,17,18],[1183,2,1,18,19],[1185,2,2,19,21],[1187,5,5,21,26],[1188,2,2,26,28]]]],[26913,30785,30787,30791,30792,30794,30809,30819,30820,30824,30827,30902,30916,30919,30927,30930,30936,30949,30989,31024,31026,31062,31067,31075,31076,31080,31081,31083]]],["Lamb",[26,24,[[65,26,24,0,24,[[1171,4,4,0,4],[1172,2,2,4,6],[1173,4,4,6,10],[1178,1,1,10,11],[1179,1,1,11,12],[1180,4,3,12,15],[1181,1,1,15,16],[1183,2,1,16,17],[1185,2,2,17,19],[1187,3,3,19,22],[1188,2,2,22,24]]]],[30785,30787,30791,30792,30794,30809,30819,30820,30824,30827,30902,30916,30927,30930,30936,30949,30989,31024,31026,31067,31075,31076,31081,31083]]],["Lamb's",[2,2,[[65,2,2,0,2,[[1187,2,2,0,2]]]],[31062,31080]]],["lamb",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30919]]],["lambs",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26913]]]]},{"k":"G722","v":[["*",[3,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[45,2,1,1,2,[[1070,2,1,1,2]]]],[25658,28550]]],["plow",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28550]]],["ploweth",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28550]]],["plowing",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25658]]]]},{"k":"G723","v":[["plough",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25363]]]]},{"k":"G724","v":[["*",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[23943,25444,30167]]],["extortion",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23943]]],["ravening",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25444]]],["spoiling",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30167]]]]},{"k":"G725","v":[["robbery",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29397]]]]},{"k":"G726","v":[["*",[13,13,[[39,2,2,0,2,[[939,1,1,0,1],[941,1,1,1,2]]],[42,4,4,2,6,[[1002,1,1,2,3],[1006,3,3,3,6]]],[43,2,2,6,8,[[1025,1,1,6,7],[1040,1,1,7,8]]],[46,2,2,8,10,[[1089,2,2,8,10]]],[51,1,1,10,11,[[1114,1,1,10,11]]],[64,1,1,11,12,[[1166,1,1,11,12]]],[65,1,1,12,13,[[1178,1,1,12,13]]]],[23471,23558,26272,26493,26509,26510,27215,27744,29024,29026,29620,30695,30896]]],["+",[3,3,[[39,1,1,0,1,[[939,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[43,1,1,2,3,[[1040,1,1,2,3]]]],[23471,26272,27744]]],["away",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]]],[23558,27215]]],["catcheth",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26493]]],["pluck",[2,2,[[42,2,2,0,2,[[1006,2,2,0,2]]]],[26509,26510]]],["pulling",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30695]]],["up",[4,4,[[46,2,2,0,2,[[1089,2,2,0,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]],[65,1,1,3,4,[[1178,1,1,3,4]]]],[29024,29026,29620,30896]]]]},{"k":"G727","v":[["*",[5,5,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]],[45,3,3,2,5,[[1066,2,2,2,4],[1067,1,1,4,5]]]],[23331,25699,28464,28465,28477]]],["extortioner",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28465]]],["extortioners",[3,3,[[41,1,1,0,1,[[990,1,1,0,1]]],[45,2,2,1,3,[[1066,1,1,1,2],[1067,1,1,2,3]]]],[25699,28464,28477]]],["ravening",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23331]]]]},{"k":"G728","v":[["earnest",[3,3,[[46,2,2,0,2,[[1078,1,1,0,1],[1082,1,1,1,2]]],[48,1,1,2,3,[[1097,1,1,2,3]]]],[28822,28882,29220]]]]},{"k":"G729","v":[["seam",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26848]]]]},{"k":"G730","v":[["*",[9,7,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[974,1,1,2,3]]],[44,3,1,3,4,[[1046,3,1,3,4]]],[47,1,1,4,5,[[1093,1,1,4,5]]],[65,2,2,5,7,[[1178,2,2,5,7]]]],[23766,24594,24996,27957,29130,30896,30904]]],["male",[4,4,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[974,1,1,2,3]]],[47,1,1,3,4,[[1093,1,1,3,4]]]],[23766,24594,24996,29130]]],["man",[2,2,[[65,2,2,0,2,[[1178,2,2,0,2]]]],[30896,30904]]],["men",[3,1,[[44,3,1,0,1,[[1046,3,1,0,1]]]],[27957]]]]},{"k":"G731","v":[["unspeakable",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29026]]]]},{"k":"G732","v":[["*",[5,5,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,3,3,1,4,[[962,2,2,1,3],[972,1,1,3,4]]],[45,1,1,4,5,[[1072,1,1,4,5]]]],[23611,24412,24420,24891,28630]]],["folk",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24412]]],["sick",[3,3,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[972,1,1,2,3]]]],[23611,24420,24891]]],["sickly",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28630]]]]},{"k":"G733","v":[["mankind",[2,2,[[45,1,1,0,1,[[1067,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]]],[28476,29706]]]]},{"k":"G734","v":[["Artemas",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29935]]]]},{"k":"G735","v":[["Diana",[5,5,[[43,5,5,0,5,[[1036,5,5,0,5]]]],[27609,27612,27613,27619,27620]]]]},{"k":"G736","v":[["mainsail",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27895]]]]},{"k":"G737","v":[["*",[36,35,[[39,7,7,0,7,[[931,1,1,0,1],[937,1,1,1,2],[939,1,1,2,3],[951,1,1,3,4],[954,3,3,4,7]]],[42,13,13,7,20,[[997,1,1,7,8],[998,1,1,8,9],[1001,1,1,9,10],[1005,2,2,10,12],[1009,4,4,12,16],[1010,1,1,16,17],[1012,3,3,17,20]]],[45,7,6,20,26,[[1065,2,2,20,22],[1069,1,1,22,23],[1074,2,1,23,24],[1076,1,1,24,25],[1077,1,1,25,26]]],[47,3,3,26,29,[[1091,2,2,26,28],[1094,1,1,28,29]]],[51,1,1,29,30,[[1113,1,1,29,30]]],[52,1,1,30,31,[[1117,1,1,30,31]]],[59,2,2,31,33,[[1151,2,2,31,33]]],[61,1,1,33,34,[[1160,1,1,33,34]]],[65,1,1,34,35,[[1178,1,1,34,35]]]],[23207,23397,23471,23957,24083,24107,24118,26095,26105,26227,26459,26465,26637,26649,26663,26667,26675,26738,26750,26757,28444,28446,28534,28677,28724,28783,29066,29067,29151,29596,29668,30380,30382,30559,30901]]],["+",[9,9,[[39,4,4,0,4,[[937,1,1,0,1],[951,1,1,1,2],[954,2,2,2,4]]],[42,4,4,4,8,[[997,1,1,4,5],[1001,1,1,5,6],[1009,1,1,6,7],[1012,1,1,7,8]]],[52,1,1,8,9,[[1117,1,1,8,9]]]],[23397,23957,24083,24118,26095,26227,26649,26750,29668]]],["Now",[1,1,[[65,1,1,0,1,[[1178,1,1,0,1]]]],[30901]]],["day",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28446]]],["henceforth",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26675]]],["hour",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28534]]],["now",[21,20,[[39,3,3,0,3,[[931,1,1,0,1],[939,1,1,1,2],[954,1,1,2,3]]],[42,8,8,3,11,[[998,1,1,3,4],[1005,2,2,4,6],[1009,3,3,6,9],[1012,2,2,9,11]]],[45,3,2,11,13,[[1074,2,1,11,12],[1077,1,1,12,13]]],[47,3,3,13,16,[[1091,2,2,13,15],[1094,1,1,15,16]]],[51,1,1,16,17,[[1113,1,1,16,17]]],[59,2,2,17,19,[[1151,2,2,17,19]]],[61,1,1,19,20,[[1160,1,1,19,20]]]],[23207,23471,24107,26105,26459,26465,26637,26663,26667,26738,26757,28677,28783,29066,29067,29151,29596,30380,30382,30559]]],["present",[2,2,[[45,2,2,0,2,[[1065,1,1,0,1],[1076,1,1,1,2]]]],[28444,28724]]]]},{"k":"G738","v":[["newborn",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30401]]]]},{"k":"G739","v":[["perfect",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29870]]]]},{"k":"G740","v":[["*",[99,91,[[39,21,20,0,20,[[932,2,2,0,2],[934,1,1,2,3],[935,1,1,3,4],[940,1,1,4,5],[942,3,2,5,7],[943,5,5,7,12],[944,7,7,12,19],[954,1,1,19,20]]],[40,22,20,20,40,[[958,1,1,20,21],[959,1,1,21,22],[962,8,7,22,29],[963,3,3,29,32],[964,8,7,32,39],[970,1,1,39,40]]],[41,16,16,40,56,[[976,2,2,40,42],[978,1,1,42,43],[979,1,1,43,44],[981,3,3,44,47],[983,3,3,47,50],[986,2,2,50,52],[987,1,1,52,53],[994,1,1,53,54],[996,2,2,54,56]]],[42,24,20,56,76,[[1002,21,17,56,73],[1009,1,1,73,74],[1017,2,2,74,76]]],[43,5,5,76,81,[[1019,2,2,76,78],[1037,2,2,78,80],[1044,1,1,80,81]]],[45,7,6,81,87,[[1071,3,2,81,83],[1072,4,4,83,87]]],[46,1,1,87,88,[[1086,1,1,87,88]]],[52,2,2,88,90,[[1118,2,2,88,90]]],[57,1,1,90,91,[[1141,1,1,90,91]]]],[23212,23213,23293,23325,23493,23614,23616,23635,23659,23666,23667,23669,23677,23679,23680,23681,23682,23683,23684,24080,24286,24308,24415,24443,24444,24445,24448,24451,24459,24465,24468,24490,24504,24505,24506,24514,24516,24517,24519,24776,25066,25067,25150,25228,25304,25314,25317,25408,25410,25416,25554,25568,25605,25883,26021,26026,26262,26264,26266,26268,26270,26280,26283,26288,26289,26290,26291,26292,26298,26305,26307,26308,26315,26648,26907,26911,26991,26995,27633,27637,27890,28583,28584,28623,28626,28627,28628,28966,29686,29690,30107]]],["+",[5,5,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,2,2,2,4,[[978,1,1,2,3],[987,1,1,3,4]]],[57,1,1,4,5,[[1141,1,1,4,5]]]],[23493,24286,25150,25605,30107]]],["bread",[71,66,[[39,13,13,0,13,[[932,2,2,0,2],[934,1,1,2,3],[935,1,1,3,4],[943,3,3,4,7],[944,5,5,7,12],[954,1,1,12,13]]],[40,12,12,13,25,[[959,1,1,13,14],[962,3,3,14,17],[963,3,3,17,20],[964,4,4,20,24],[970,1,1,24,25]]],[41,11,11,25,36,[[976,2,2,25,27],[979,1,1,27,28],[981,1,1,28,29],[983,2,2,29,31],[986,2,2,31,33],[994,1,1,33,34],[996,2,2,34,36]]],[42,20,16,36,52,[[1002,17,13,36,49],[1009,1,1,49,50],[1017,2,2,50,52]]],[43,5,5,52,57,[[1019,2,2,52,54],[1037,2,2,54,56],[1044,1,1,56,57]]],[45,7,6,57,63,[[1071,3,2,57,59],[1072,4,4,59,63]]],[46,1,1,63,64,[[1086,1,1,63,64]]],[52,2,2,64,66,[[1118,2,2,64,66]]]],[23212,23213,23293,23325,23635,23659,23666,23677,23679,23680,23683,23684,24080,24308,24415,24443,24444,24465,24468,24490,24504,24514,24516,24517,24776,25066,25067,25228,25304,25408,25416,25554,25568,25883,26021,26026,26262,26264,26280,26288,26289,26290,26291,26292,26298,26305,26307,26308,26315,26648,26907,26911,26991,26995,27633,27637,27890,28583,28584,28623,28626,28627,28628,28966,29686,29690]]],["loaf",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24514]]],["loaves",[22,20,[[39,7,6,0,6,[[942,3,2,0,2],[943,2,2,2,4],[944,2,2,4,6]]],[40,8,7,6,13,[[962,5,4,6,10],[964,3,3,10,13]]],[41,3,3,13,16,[[981,2,2,13,15],[983,1,1,15,16]]],[42,4,4,16,20,[[1002,4,4,16,20]]]],[23614,23616,23667,23669,23681,23682,24445,24448,24451,24459,24505,24506,24519,25314,25317,25410,26266,26268,26270,26283]]]]},{"k":"G741","v":[["*",[3,3,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]],[50,1,1,2,3,[[1110,1,1,2,3]]]],[24588,25587,29548]]],["season",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24588]]],["seasoned",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[50,1,1,1,2,[[1110,1,1,1,2]]]],[25587,29548]]]]},{"k":"G742","v":[["Arphaxad",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25061]]]]},{"k":"G743","v":[["archangel",[2,2,[[51,1,1,0,1,[[1114,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[29619,30681]]]]},{"k":"G744","v":[["*",[12,12,[[39,3,3,0,3,[[933,3,3,0,3]]],[41,2,2,3,5,[[981,2,2,3,5]]],[43,3,3,5,8,[[1032,2,2,5,7],[1038,1,1,7,8]]],[46,1,1,8,9,[[1082,1,1,8,9]]],[60,1,1,9,10,[[1157,1,1,9,10]]],[65,2,2,10,12,[[1178,1,1,10,11],[1186,1,1,11,12]]]],[23255,23261,23267,25309,25320,27449,27463,27680,28894,30505,30900,31040]]],["+",[2,2,[[43,2,2,0,2,[[1032,2,2,0,2]]]],[27449,27463]]],["old",[6,6,[[41,2,2,0,2,[[981,2,2,0,2]]],[43,1,1,2,3,[[1038,1,1,2,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]],[65,2,2,4,6,[[1178,1,1,4,5],[1186,1,1,5,6]]]],[25309,25320,27680,30505,30900,31040]]],["things",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28894]]],["time",[3,3,[[39,3,3,0,3,[[933,3,3,0,3]]]],[23255,23261,23267]]]]},{"k":"G745","v":[["Archelaus",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23191]]]]},{"k":"G746","v":[["*",[58,56,[[39,4,4,0,4,[[947,2,2,0,2],[952,2,2,2,4]]],[40,4,4,4,8,[[957,1,1,4,5],[966,1,1,5,6],[969,2,2,6,8]]],[41,3,3,8,11,[[973,1,1,8,9],[984,1,1,9,10],[992,1,1,10,11]]],[42,8,8,11,19,[[997,2,2,11,13],[998,1,1,13,14],[1002,1,1,14,15],[1004,2,2,15,17],[1011,1,1,17,18],[1012,1,1,18,19]]],[43,4,4,19,23,[[1027,1,1,19,20],[1028,2,2,20,22],[1043,1,1,22,23]]],[44,1,1,23,24,[[1053,1,1,23,24]]],[45,1,1,24,25,[[1076,1,1,24,25]]],[48,3,3,25,28,[[1097,1,1,25,26],[1099,1,1,26,27],[1102,1,1,27,28]]],[49,1,1,28,29,[[1106,1,1,28,29]]],[50,4,4,29,33,[[1107,2,2,29,31],[1108,2,2,31,33]]],[52,1,1,33,34,[[1117,1,1,33,34]]],[55,1,1,34,35,[[1131,1,1,34,35]]],[57,6,6,35,41,[[1133,1,1,35,36],[1134,1,1,36,37],[1135,1,1,37,38],[1137,1,1,38,39],[1138,1,1,39,40],[1139,1,1,40,41]]],[60,1,1,41,42,[[1158,1,1,41,42]]],[61,9,7,42,49,[[1159,1,1,42,43],[1160,6,4,43,47],[1161,2,2,47,49]]],[62,2,2,49,51,[[1164,2,2,49,51]]],[64,1,1,51,52,[[1166,1,1,51,52]]],[65,4,4,52,56,[[1167,1,1,52,53],[1169,1,1,53,54],[1187,1,1,54,55],[1188,1,1,55,56]]]],[23766,23770,23965,23978,24216,24594,24725,24736,24895,25470,25799,26045,26046,26106,26321,26406,26425,26726,26730,27270,27312,27322,27827,28154,28742,29227,29261,29349,29457,29481,29483,29504,29509,29674,29924,29973,29980,30009,30042,30045,30067,30526,30541,30557,30563,30564,30574,30587,30590,30650,30651,30678,30705,30760,31059,31093]]],["+",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]]],[24895,29980]]],["beginning",[38,36,[[39,4,4,0,4,[[947,2,2,0,2],[952,2,2,2,4]]],[40,3,3,4,7,[[957,1,1,4,5],[966,1,1,5,6],[969,1,1,6,7]]],[42,8,8,7,15,[[997,2,2,7,9],[998,1,1,9,10],[1002,1,1,10,11],[1004,2,2,11,13],[1011,1,1,13,14],[1012,1,1,14,15]]],[43,1,1,15,16,[[1028,1,1,15,16]]],[49,1,1,16,17,[[1106,1,1,16,17]]],[50,1,1,17,18,[[1107,1,1,17,18]]],[52,1,1,18,19,[[1117,1,1,18,19]]],[57,3,3,19,22,[[1133,1,1,19,20],[1135,1,1,20,21],[1139,1,1,21,22]]],[60,1,1,22,23,[[1158,1,1,22,23]]],[61,9,7,23,30,[[1159,1,1,23,24],[1160,6,4,24,28],[1161,2,2,28,30]]],[62,2,2,30,32,[[1164,2,2,30,32]]],[65,4,4,32,36,[[1167,1,1,32,33],[1169,1,1,33,34],[1187,1,1,34,35],[1188,1,1,35,36]]]],[23766,23770,23965,23978,24216,24594,24736,26045,26046,26106,26321,26406,26425,26726,26730,27322,29457,29483,29674,29973,30009,30067,30526,30541,30557,30563,30564,30574,30587,30590,30650,30651,30705,30760,31059,31093]]],["beginnings",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24725]]],["corners",[2,2,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]]],[27270,27312]]],["estate",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30678]]],["first",[2,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[57,1,1,1,2,[[1137,1,1,1,2]]]],[27827,30042]]],["magistrates",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25470]]],["power",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25799]]],["principalities",[6,6,[[44,1,1,0,1,[[1053,1,1,0,1]]],[48,2,2,1,3,[[1099,1,1,1,2],[1102,1,1,2,3]]],[50,2,2,3,5,[[1107,1,1,3,4],[1108,1,1,4,5]]],[55,1,1,5,6,[[1131,1,1,5,6]]]],[28154,29261,29349,29481,29509,29924]]],["principality",[2,2,[[48,1,1,0,1,[[1097,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[29227,29504]]],["principles",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30045]]],["rule",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28742]]]]},{"k":"G747","v":[["*",[4,4,[[43,2,2,0,2,[[1020,1,1,0,1],[1022,1,1,1,2]]],[57,2,2,2,4,[[1134,1,1,2,3],[1144,1,1,3,4]]]],[27011,27090,29987,30214]]],["+",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29987]]],["Prince",[2,2,[[43,2,2,0,2,[[1020,1,1,0,1],[1022,1,1,1,2]]]],[27011,27090]]],["author",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30214]]]]},{"k":"G748","v":[["priest",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27028]]]]},{"k":"G749","v":[["*",[123,120,[[39,25,24,0,24,[[930,1,1,0,1],[944,1,1,1,2],[948,1,1,2,3],[949,3,3,3,6],[954,11,10,6,16],[955,7,7,16,23],[956,1,1,23,24]]],[40,22,21,24,45,[[958,1,1,24,25],[964,1,1,25,26],[966,1,1,26,27],[967,2,2,27,29],[970,12,11,29,40],[971,5,5,40,45]]],[41,16,16,45,61,[[975,1,1,45,46],[981,1,1,46,47],[991,1,1,47,48],[992,2,2,48,50],[994,6,6,50,56],[995,4,4,56,60],[996,1,1,60,61]]],[42,21,20,61,81,[[1003,2,2,61,63],[1007,4,4,63,67],[1008,1,1,67,68],[1014,11,10,68,78],[1015,3,3,78,81]]],[43,22,22,81,103,[[1021,2,2,81,83],[1022,4,4,83,87],[1024,1,1,87,88],[1026,3,3,88,91],[1036,1,1,91,92],[1039,2,2,92,94],[1040,4,4,94,98],[1041,1,1,98,99],[1042,2,2,99,101],[1043,2,2,101,103]]],[57,17,17,103,120,[[1134,1,1,103,104],[1135,1,1,104,105],[1136,2,2,105,107],[1137,3,3,107,110],[1138,1,1,110,111],[1139,3,3,111,114],[1140,2,2,114,116],[1141,3,3,116,119],[1145,1,1,119,120]]]],[23173,23693,23810,23841,23849,23871,24057,24068,24101,24105,24111,24112,24113,24116,24117,24119,24130,24132,24135,24141,24149,24170,24191,24206,24286,24531,24621,24658,24667,24755,24764,24797,24801,24807,24808,24809,24814,24815,24817,24820,24827,24829,24836,24837,24857,25027,25323,25778,25780,25798,25866,25868,25914,25916,25918,25930,25939,25945,25948,25958,26011,26360,26373,26570,26572,26574,26580,26590,26788,26795,26798,26800,26801,26804,26807,26809,26811,26820,26831,26840,26846,27028,27045,27076,27080,27083,27086,27117,27217,27230,27237,27599,27709,27734,27736,27738,27739,27748,27770,27798,27811,27833,27835,29994,29996,30028,30029,30031,30035,30040,30064,30090,30091,30092,30093,30095,30112,30116,30130,30252]]],["+",[2,2,[[41,1,1,0,1,[[975,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[25027,27117]]],["Priest",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[29996]]],["priest",[49,48,[[39,5,5,0,5,[[954,5,5,0,5]]],[40,8,8,5,13,[[958,1,1,5,6],[970,7,7,6,13]]],[41,1,1,13,14,[[994,1,1,13,14]]],[42,10,9,14,23,[[1007,2,2,14,16],[1014,8,7,16,23]]],[43,11,11,23,34,[[1021,1,1,23,24],[1022,3,3,24,27],[1026,1,1,27,28],[1039,1,1,28,29],[1040,3,3,29,32],[1041,1,1,32,33],[1042,1,1,33,34]]],[57,14,14,34,48,[[1134,1,1,34,35],[1136,2,2,35,37],[1137,3,3,37,40],[1138,1,1,40,41],[1139,1,1,41,42],[1140,2,2,42,44],[1141,3,3,44,47],[1145,1,1,47,48]]]],[24057,24111,24116,24117,24119,24286,24801,24807,24808,24814,24815,24817,24820,25914,26572,26574,26798,26800,26801,26804,26807,26809,26811,27028,27076,27080,27086,27217,27709,27736,27738,27739,27770,27798,29994,30028,30029,30031,30035,30040,30064,30090,30093,30095,30112,30116,30130,30252]]],["priest's",[4,4,[[39,2,2,0,2,[[954,2,2,0,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]]],[24105,24112,25918,26795]]],["priests",[67,67,[[39,18,18,0,18,[[930,1,1,0,1],[944,1,1,1,2],[948,1,1,2,3],[949,3,3,3,6],[954,4,4,6,10],[955,7,7,10,17],[956,1,1,17,18]]],[40,14,14,18,32,[[964,1,1,18,19],[966,1,1,19,20],[967,2,2,20,22],[970,5,5,22,27],[971,5,5,27,32]]],[41,13,13,32,45,[[981,1,1,32,33],[991,1,1,33,34],[992,2,2,34,36],[994,4,4,36,40],[995,4,4,40,44],[996,1,1,44,45]]],[42,10,10,45,55,[[1003,2,2,45,47],[1007,2,2,47,49],[1008,1,1,49,50],[1014,2,2,50,52],[1015,3,3,52,55]]],[43,10,10,55,65,[[1021,1,1,55,56],[1022,1,1,56,57],[1026,2,2,57,59],[1036,1,1,59,60],[1039,1,1,60,61],[1040,1,1,61,62],[1042,1,1,62,63],[1043,2,2,63,65]]],[57,2,2,65,67,[[1139,2,2,65,67]]]],[23173,23693,23810,23841,23849,23871,24057,24068,24101,24113,24130,24132,24135,24141,24149,24170,24191,24206,24531,24621,24658,24667,24755,24764,24797,24807,24809,24827,24829,24836,24837,24857,25323,25778,25780,25798,25866,25868,25916,25930,25939,25945,25948,25958,26011,26360,26373,26570,26580,26590,26788,26820,26831,26840,26846,27045,27083,27230,27237,27599,27734,27748,27811,27833,27835,30091,30092]]]]},{"k":"G750","v":[["Shepherd",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30469]]]]},{"k":"G751","v":[["Archippus",[2,2,[[50,1,1,0,1,[[1110,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[29559,29940]]]]},{"k":"G752","v":[["*",[9,9,[[40,4,4,0,4,[[961,4,4,0,4]]],[41,2,2,4,6,[[980,1,1,4,5],[985,1,1,5,6]]],[43,3,3,6,9,[[1030,1,1,6,7],[1035,2,2,7,9]]]],[24386,24399,24400,24402,25294,25532,27377,27565,27574]]],["synagogue",[7,7,[[40,3,3,0,3,[[961,3,3,0,3]]],[41,1,1,3,4,[[985,1,1,3,4]]],[43,3,3,4,7,[[1030,1,1,4,5],[1035,2,2,5,7]]]],[24386,24400,24402,25532,27377,27565,27574]]],["synagogue's",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24399,25294]]]]},{"k":"G753","v":[["masterbuilder",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28420]]]]},{"k":"G754","v":[["publicans",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25733]]]]},{"k":"G755","v":[["feast",[3,2,[[42,3,2,0,2,[[998,3,2,0,2]]]],[26103,26104]]]]},{"k":"G756","v":[["*",[84,84,[[39,13,13,0,13,[[932,1,1,0,1],[939,2,2,1,3],[940,1,1,3,4],[942,1,1,4,5],[944,2,2,5,7],[946,1,1,7,8],[948,1,1,8,9],[952,1,1,9,10],[954,3,3,10,13]]],[40,26,26,13,39,[[957,1,1,13,14],[958,1,1,14,15],[960,1,1,15,16],[961,2,2,16,18],[962,4,4,18,22],[964,3,3,22,25],[966,4,4,25,29],[967,1,1,29,30],[968,1,1,30,31],[969,1,1,31,32],[970,5,5,32,37],[971,2,2,37,39]]],[41,31,31,39,70,[[975,2,2,39,41],[976,1,1,41,42],[977,1,1,42,43],[979,4,4,43,47],[981,1,1,47,48],[983,2,2,48,50],[984,2,2,50,52],[985,2,2,52,54],[986,4,4,54,58],[987,2,2,58,60],[991,2,2,60,62],[992,1,1,62,63],[993,1,1,63,64],[994,1,1,64,65],[995,3,3,65,68],[996,2,2,68,70]]],[42,2,2,70,72,[[1004,1,1,70,71],[1009,1,1,71,72]]],[43,10,10,72,82,[[1018,2,2,72,74],[1019,1,1,74,75],[1025,1,1,75,76],[1027,1,1,76,77],[1028,2,2,77,79],[1035,1,1,79,80],[1041,1,1,80,81],[1044,1,1,81,82]]],[46,1,1,82,83,[[1080,1,1,82,83]]],[59,1,1,83,84,[[1154,1,1,83,84]]]],[23226,23466,23479,23490,23627,23693,23694,23751,23800,24006,24076,24091,24128,24260,24283,24324,24381,24384,24409,24414,24441,24462,24511,24531,24532,24616,24620,24629,24635,24655,24674,24722,24773,24787,24819,24823,24825,24834,24844,25033,25048,25084,25128,25210,25219,25233,25244,25313,25434,25458,25460,25504,25543,25544,25562,25571,25582,25583,25602,25612,25768,25776,25788,25854,25887,25937,25940,25965,26018,26038,26390,26635,26924,26945,26953,27211,27296,27311,27322,27583,27771,27890,28842,30463]]],["Beginning",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26945]]],["began",[64,64,[[39,9,9,0,9,[[932,1,1,0,1],[939,2,2,1,3],[940,1,1,3,4],[944,2,2,4,6],[954,3,3,6,9]]],[40,26,26,9,35,[[957,1,1,9,10],[958,1,1,10,11],[960,1,1,11,12],[961,2,2,12,14],[962,4,4,14,18],[964,3,3,18,21],[966,4,4,21,25],[967,1,1,25,26],[968,1,1,26,27],[969,1,1,27,28],[970,5,5,28,33],[971,2,2,33,35]]],[41,20,20,35,55,[[975,1,1,35,36],[976,1,1,36,37],[977,1,1,37,38],[979,4,4,38,42],[981,1,1,42,43],[983,2,2,43,45],[984,1,1,45,46],[986,2,2,46,48],[987,2,2,48,50],[991,2,2,50,52],[992,1,1,52,53],[994,1,1,53,54],[995,1,1,54,55]]],[42,1,1,55,56,[[1009,1,1,55,56]]],[43,8,8,56,64,[[1018,1,1,56,57],[1019,1,1,57,58],[1025,1,1,58,59],[1027,1,1,59,60],[1028,1,1,60,61],[1035,1,1,61,62],[1041,1,1,62,63],[1044,1,1,63,64]]]],[23226,23466,23479,23490,23693,23694,24076,24091,24128,24260,24283,24324,24381,24384,24409,24414,24441,24462,24511,24531,24532,24616,24620,24629,24635,24655,24674,24722,24773,24787,24819,24823,24825,24834,24844,25048,25084,25128,25210,25219,25233,25244,25313,25434,25458,25460,25571,25583,25602,25612,25768,25776,25788,25887,25937,26635,26924,26953,27211,27296,27322,27583,27771,27890]]],["begin",[11,11,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,8,8,1,9,[[975,1,1,1,2],[984,1,1,2,3],[985,2,2,3,5],[986,2,2,5,7],[993,1,1,7,8],[995,1,1,8,9]]],[46,1,1,9,10,[[1080,1,1,9,10]]],[59,1,1,10,11,[[1154,1,1,10,11]]]],[24006,25033,25504,25543,25544,25562,25582,25854,25965,28842,30463]]],["beginning",[7,7,[[39,2,2,0,2,[[942,1,1,0,1],[948,1,1,1,2]]],[41,3,3,2,5,[[995,1,1,2,3],[996,2,2,3,5]]],[42,1,1,5,6,[[1004,1,1,5,6]]],[43,1,1,6,7,[[1028,1,1,6,7]]]],[23627,23800,25940,26018,26038,26390,27311]]],["begun",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23751]]]]},{"k":"G757","v":[["over",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]]],[24630,28315]]]]},{"k":"G758","v":[["*",[37,36,[[39,5,5,0,5,[[937,3,3,0,3],[940,1,1,3,4],[948,1,1,4,5]]],[40,1,1,5,6,[[959,1,1,5,6]]],[41,8,8,6,14,[[980,1,1,6,7],[983,1,1,7,8],[984,1,1,8,9],[986,1,1,9,10],[990,1,1,10,11],[995,2,2,11,13],[996,1,1,13,14]]],[42,7,7,14,21,[[999,1,1,14,15],[1003,2,2,15,17],[1008,2,2,17,19],[1010,1,1,19,20],[1012,1,1,20,21]]],[43,11,10,21,31,[[1020,1,1,21,22],[1021,3,3,22,25],[1024,3,2,25,27],[1030,1,1,27,28],[1031,1,1,28,29],[1033,1,1,29,30],[1040,1,1,30,31]]],[44,1,1,31,32,[[1058,1,1,31,32]]],[45,2,2,32,34,[[1063,2,2,32,34]]],[48,1,1,34,35,[[1098,1,1,34,35]]],[65,1,1,35,36,[[1167,1,1,35,36]]]],[23397,23402,23413,23513,23817,24310,25286,25420,25517,25554,25706,25948,25970,26011,26121,26354,26376,26611,26622,26698,26737,27013,27027,27030,27048,27143,27151,27389,27419,27502,27739,28269,28400,28402,29231,30702]]],["chief",[2,2,[[41,2,2,0,2,[[983,1,1,0,1],[986,1,1,1,2]]]],[25420,25554]]],["magistrate",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25517]]],["prince",[8,8,[[39,2,2,0,2,[[937,1,1,0,1],[940,1,1,1,2]]],[40,1,1,2,3,[[959,1,1,2,3]]],[42,3,3,3,6,[[1008,1,1,3,4],[1010,1,1,4,5],[1012,1,1,5,6]]],[48,1,1,6,7,[[1098,1,1,6,7]]],[65,1,1,7,8,[[1167,1,1,7,8]]]],[23413,23513,24310,26611,26698,26737,29231,30702]]],["princes",[3,3,[[39,1,1,0,1,[[948,1,1,0,1]]],[45,2,2,1,3,[[1063,2,2,1,3]]]],[23817,28400,28402]]],["ruler",[8,7,[[39,1,1,0,1,[[937,1,1,0,1]]],[41,2,2,1,3,[[980,1,1,1,2],[990,1,1,2,3]]],[42,1,1,3,4,[[999,1,1,3,4]]],[43,4,3,4,7,[[1024,3,2,4,6],[1040,1,1,6,7]]]],[23397,25286,25706,26121,27143,27151,27739]]],["ruler's",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23402]]],["rulers",[14,14,[[41,3,3,0,3,[[995,2,2,0,2],[996,1,1,2,3]]],[42,3,3,3,6,[[1003,2,2,3,5],[1008,1,1,5,6]]],[43,7,7,6,13,[[1020,1,1,6,7],[1021,3,3,7,10],[1030,1,1,10,11],[1031,1,1,11,12],[1033,1,1,12,13]]],[44,1,1,13,14,[[1058,1,1,13,14]]]],[25948,25970,26011,26354,26376,26622,27013,27027,27030,27048,27389,27419,27502,28269]]]]},{"k":"G759","v":[["spices",[4,4,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,2,2,1,3,[[995,1,1,1,2],[996,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]]],[24874,25991,25992,26865]]]]},{"k":"G760","v":[["Asa",[2,2,[[39,2,2,0,2,[[929,2,2,0,2]]]],[23151,23152]]]]},{"k":"G761","v":[["*",[2,2,[[43,1,1,0,1,[[1044,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[27896,30240]]],["moved",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30240]]],["unmoveable",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27896]]]]},{"k":"G762","v":[["*",[4,4,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,2,2,1,3,[[965,2,2,1,3]]],[41,1,1,3,4,[[975,1,1,3,4]]]],[23204,24581,24583,25042]]],["quenched",[2,2,[[40,2,2,0,2,[[965,2,2,0,2]]]],[24581,24583]]],["unquenchable",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23204,25042]]]]},{"k":"G763","v":[["*",[6,6,[[44,2,2,0,2,[[1046,1,1,0,1],[1056,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[55,1,1,3,4,[[1130,1,1,3,4]]],[64,2,2,4,6,[[1166,2,2,4,6]]]],[27948,28235,29843,29920,30687,30690]]],["ungodliness",[4,4,[[44,2,2,0,2,[[1046,1,1,0,1],[1056,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[55,1,1,3,4,[[1130,1,1,3,4]]]],[27948,28235,29843,29920]]],["ungodly",[2,2,[[64,2,2,0,2,[[1166,2,2,0,2]]]],[30687,30690]]]]},{"k":"G764","v":[["*",[2,2,[[60,1,1,0,1,[[1157,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[30506,30687]]],["committed",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30687]]],["ungodly",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30506]]]]},{"k":"G765","v":[["*",[9,8,[[44,2,2,0,2,[[1049,1,1,0,1],[1050,1,1,1,2]]],[53,1,1,2,3,[[1119,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]],[60,2,2,4,6,[[1157,1,1,4,5],[1158,1,1,5,6]]],[64,3,2,6,8,[[1166,3,2,6,8]]]],[28027,28053,29705,30464,30505,30529,30676,30687]]],["men",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30676]]],["ungodly",[8,7,[[44,2,2,0,2,[[1049,1,1,0,1],[1050,1,1,1,2]]],[53,1,1,2,3,[[1119,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]],[60,2,2,4,6,[[1157,1,1,4,5],[1158,1,1,5,6]]],[64,2,1,6,7,[[1166,2,1,6,7]]]],[28027,28053,29705,30464,30505,30529,30687]]]]},{"k":"G766","v":[["*",[9,9,[[40,1,1,0,1,[[963,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]],[46,1,1,2,3,[[1089,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]],[59,1,1,5,6,[[1154,1,1,5,6]]],[60,2,2,6,8,[[1157,2,2,6,8]]],[64,1,1,8,9,[[1166,1,1,8,9]]]],[24485,28279,29043,29181,29291,30449,30507,30518,30676]]],["+",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30507]]],["lasciviousness",[6,6,[[40,1,1,0,1,[[963,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]],[59,1,1,4,5,[[1154,1,1,4,5]]],[64,1,1,5,6,[[1166,1,1,5,6]]]],[24485,29043,29181,29291,30449,30676]]],["wantonness",[2,2,[[44,1,1,0,1,[[1058,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[28279,30518]]]]},{"k":"G767","v":[["mean",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27703]]]]},{"k":"G768","v":[["Aser",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[65,1,1,1,2,[[1173,1,1,1,2]]]],[25009,30816]]]]},{"k":"G769","v":[["*",[24,23,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,4,4,1,5,[[977,1,1,1,2],[980,1,1,2,3],[985,2,2,3,5]]],[42,2,2,5,7,[[1001,1,1,5,6],[1007,1,1,6,7]]],[43,1,1,7,8,[[1045,1,1,7,8]]],[44,2,2,8,10,[[1051,1,1,8,9],[1053,1,1,9,10]]],[45,2,2,10,12,[[1063,1,1,10,11],[1076,1,1,11,12]]],[46,6,5,12,17,[[1088,1,1,12,13],[1089,4,3,13,16],[1090,1,1,16,17]]],[47,1,1,17,18,[[1094,1,1,17,18]]],[53,1,1,18,19,[[1123,1,1,18,19]]],[57,4,4,19,23,[[1136,1,1,19,20],[1137,1,1,20,21],[1139,1,1,21,22],[1143,1,1,22,23]]]],[23362,25122,25247,25529,25530,26215,26527,27908,28087,28142,28397,28761,29019,29027,29031,29032,29047,29144,29786,30029,30032,30092,30206]]],["diseases",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27908]]],["infirmities",[10,10,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,2,2,1,3,[[977,1,1,1,2],[980,1,1,2,3]]],[44,1,1,3,4,[[1053,1,1,3,4]]],[46,4,4,4,8,[[1088,1,1,4,5],[1089,3,3,5,8]]],[53,1,1,8,9,[[1123,1,1,8,9]]],[57,1,1,9,10,[[1136,1,1,9,10]]]],[23362,25122,25247,28142,29019,29027,29031,29032,29786,30029]]],["infirmity",[7,7,[[41,2,2,0,2,[[985,2,2,0,2]]],[42,1,1,2,3,[[1001,1,1,2,3]]],[44,1,1,3,4,[[1051,1,1,3,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]],[57,2,2,5,7,[[1137,1,1,5,6],[1139,1,1,6,7]]]],[25529,25530,26215,28087,29144,30032,30092]]],["sickness",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26527]]],["weakness",[5,5,[[45,2,2,0,2,[[1063,1,1,0,1],[1076,1,1,1,2]]],[46,2,2,2,4,[[1089,1,1,2,3],[1090,1,1,3,4]]],[57,1,1,4,5,[[1143,1,1,4,5]]]],[28397,28761,29031,29047,30206]]]]},{"k":"G770","v":[["*",[36,35,[[39,2,2,0,2,[[938,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[41,3,3,3,6,[[976,1,1,3,4],[979,1,1,4,5],[981,1,1,5,6]]],[42,8,8,6,14,[[1000,1,1,6,7],[1001,2,2,7,9],[1002,1,1,9,10],[1007,4,4,10,14]]],[43,3,3,14,17,[[1026,1,1,14,15],[1036,1,1,15,16],[1037,1,1,16,17]]],[44,5,5,17,22,[[1049,1,1,17,18],[1053,1,1,18,19],[1059,3,3,19,22]]],[45,3,3,22,25,[[1069,3,3,22,25]]],[46,7,6,25,31,[[1088,3,2,25,27],[1089,1,1,27,28],[1090,3,3,28,31]]],[49,2,2,31,33,[[1104,2,2,31,33]]],[54,1,1,33,34,[[1128,1,1,33,34]]],[58,1,1,34,35,[[1150,1,1,34,35]]]],[23425,24044,24463,25103,25205,25303,26202,26213,26217,26259,26524,26525,26526,26529,27253,27597,27661,28041,28119,28281,28282,28301,28536,28538,28539,29010,29018,29032,29046,29047,29052,29417,29418,29890,30368]]],["+",[4,4,[[44,1,1,0,1,[[1049,1,1,0,1]]],[46,2,2,1,3,[[1088,1,1,1,2],[1090,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]]],[28041,29018,29046,30368]]],["diseased",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26259]]],["folk",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26213]]],["man",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26217]]],["sick",[16,16,[[39,2,2,0,2,[[938,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[41,3,3,3,6,[[976,1,1,3,4],[979,1,1,4,5],[981,1,1,5,6]]],[42,5,5,6,11,[[1000,1,1,6,7],[1007,4,4,7,11]]],[43,2,2,11,13,[[1026,1,1,11,12],[1036,1,1,12,13]]],[49,2,2,13,15,[[1104,2,2,13,15]]],[54,1,1,15,16,[[1128,1,1,15,16]]]],[23425,24044,24463,25103,25205,25303,26202,26524,26525,26526,26529,27253,27597,29417,29418,29890]]],["weak",[13,13,[[43,1,1,0,1,[[1037,1,1,0,1]]],[44,4,4,1,5,[[1053,1,1,1,2],[1059,3,3,2,5]]],[45,3,3,5,8,[[1069,3,3,5,8]]],[46,5,5,8,13,[[1088,2,2,8,10],[1089,1,1,10,11],[1090,2,2,11,13]]]],[27661,28119,28281,28282,28301,28536,28538,28539,29010,29018,29032,29047,29052]]]]},{"k":"G771","v":[["infirmities",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28304]]]]},{"k":"G772","v":[["*",[25,23,[[39,4,4,0,4,[[953,3,3,0,3],[954,1,1,3,4]]],[40,1,1,4,5,[[970,1,1,4,5]]],[41,1,1,5,6,[[982,1,1,5,6]]],[43,3,3,6,9,[[1021,1,1,6,7],[1022,2,2,7,9]]],[44,1,1,9,10,[[1050,1,1,9,10]]],[45,10,8,10,18,[[1062,2,2,10,12],[1065,1,1,12,13],[1069,2,2,13,15],[1070,3,1,15,16],[1072,1,1,16,17],[1073,1,1,17,18]]],[46,1,1,18,19,[[1087,1,1,18,19]]],[47,1,1,19,20,[[1094,1,1,19,20]]],[51,1,1,20,21,[[1115,1,1,20,21]]],[57,1,1,21,22,[[1139,1,1,21,22]]],[59,1,1,22,23,[[1153,1,1,22,23]]]],[24047,24051,24052,24095,24792,25372,27031,27074,27075,28053,28388,28390,28443,28534,28537,28562,28630,28656,28981,29140,29635,30082,30431]]],["feeble",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28656]]],["folks",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27075]]],["impotent",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27031]]],["sick",[5,5,[[39,3,3,0,3,[[953,3,3,0,3]]],[41,1,1,3,4,[[982,1,1,3,4]]],[43,1,1,4,5,[[1022,1,1,4,5]]]],[24047,24051,24052,25372,27074]]],["strength",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28053]]],["things",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28390]]],["weak",[12,10,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[45,7,5,2,7,[[1065,1,1,2,3],[1069,2,2,3,5],[1070,3,1,5,6],[1072,1,1,6,7]]],[46,1,1,7,8,[[1087,1,1,7,8]]],[47,1,1,8,9,[[1094,1,1,8,9]]],[51,1,1,9,10,[[1115,1,1,9,10]]]],[24095,24792,28443,28534,28537,28562,28630,28981,29140,29635]]],["weaker",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30431]]],["weakness",[2,2,[[45,1,1,0,1,[[1062,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[28388,30082]]]]},{"k":"G773","v":[["Asia",[19,19,[[43,13,13,0,13,[[1019,1,1,0,1],[1023,1,1,1,2],[1033,1,1,2,3],[1036,4,4,3,7],[1037,3,3,7,10],[1038,1,1,10,11],[1041,1,1,11,12],[1044,1,1,12,13]]],[45,1,1,13,14,[[1077,1,1,13,14]]],[46,1,1,14,15,[[1078,1,1,14,15]]],[54,1,1,15,16,[[1125,1,1,15,16]]],[59,1,1,16,17,[[1151,1,1,16,17]]],[65,2,2,17,19,[[1167,2,2,17,19]]]],[26958,27110,27489,27595,27607,27611,27612,27630,27642,27644,27691,27787,27857,28795,28808,29824,30375,30701,30708]]]]},{"k":"G774","v":[["Asia",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27630]]]]},{"k":"G775","v":[["Asia",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27616]]]]},{"k":"G776","v":[["abstinence",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27876]]]]},{"k":"G777","v":[["fasting",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27888]]]]},{"k":"G778","v":[["exercise",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27785]]]]},{"k":"G779","v":[["bottles",[12,4,[[39,4,1,0,1,[[937,4,1,0,1]]],[40,4,1,1,2,[[958,4,1,1,2]]],[41,4,2,2,4,[[977,4,2,2,4]]]],[23396,24282,25144,25145]]]]},{"k":"G780","v":[["*",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1038,1,1,1,2]]]],[26990,27681]]],["+",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26990]]],["gladly",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27681]]]]},{"k":"G781","v":[["fools",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29319]]]]},{"k":"G782","v":[["*",[60,49,[[39,2,2,0,2,[[933,1,1,0,1],[938,1,1,1,2]]],[40,2,2,2,4,[[965,1,1,2,3],[971,1,1,3,4]]],[41,2,2,4,6,[[973,1,1,4,5],[982,1,1,5,6]]],[43,6,6,6,12,[[1035,1,1,6,7],[1037,1,1,7,8],[1038,3,3,8,11],[1042,1,1,11,12]]],[44,21,16,12,28,[[1061,21,16,12,28]]],[45,4,2,28,30,[[1077,4,2,28,30]]],[46,2,2,30,32,[[1090,2,2,30,32]]],[49,3,2,32,34,[[1106,3,2,32,34]]],[50,4,4,34,38,[[1110,4,4,34,38]]],[51,1,1,38,39,[[1115,1,1,38,39]]],[54,2,2,39,41,[[1128,2,2,39,41]]],[55,2,1,41,42,[[1131,2,1,41,42]]],[56,1,1,42,43,[[1132,1,1,42,43]]],[57,3,2,43,45,[[1143,1,1,43,44],[1145,2,1,44,45]]],[59,2,2,45,47,[[1155,2,2,45,47]]],[62,1,1,47,48,[[1164,1,1,47,48]]],[63,2,1,48,49,[[1165,2,1,48,49]]]],[23281,23429,24553,24844,24933,25367,27579,27627,27670,27671,27683,27809,28339,28341,28342,28343,28344,28345,28346,28347,28348,28349,28350,28351,28352,28357,28358,28359,28795,28796,29055,29056,29463,29464,29552,29554,29556,29557,29647,29889,29891,29938,29961,30185,30265,30478,30479,30658,30672]]],["Greet",[10,10,[[44,4,4,0,4,[[1061,4,4,0,4]]],[45,1,1,4,5,[[1077,1,1,4,5]]],[46,1,1,5,6,[[1090,1,1,5,6]]],[51,1,1,6,7,[[1115,1,1,6,7]]],[55,1,1,7,8,[[1131,1,1,7,8]]],[59,1,1,8,9,[[1155,1,1,8,9]]],[63,1,1,9,10,[[1165,1,1,9,10]]]],[28339,28342,28344,28347,28796,29055,29647,29938,30479,30672]]],["Salute",[16,14,[[44,12,10,0,10,[[1061,12,10,0,10]]],[49,1,1,10,11,[[1106,1,1,10,11]]],[50,1,1,11,12,[[1110,1,1,11,12]]],[54,1,1,12,13,[[1128,1,1,12,13]]],[57,1,1,13,14,[[1145,1,1,13,14]]]],[28341,28343,28345,28346,28347,28348,28349,28350,28351,28352,29463,29557,29889,30265]]],["embraced",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[27627,30185]]],["greet",[4,4,[[45,1,1,0,1,[[1077,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]],[50,1,1,2,3,[[1110,1,1,2,3]]],[62,1,1,3,4,[[1164,1,1,3,4]]]],[28796,29463,29556,30658]]],["greeteth",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29891]]],["leave",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27670]]],["salute",[16,15,[[39,2,2,0,2,[[933,1,1,0,1],[938,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[41,1,1,3,4,[[982,1,1,3,4]]],[43,1,1,4,5,[[1042,1,1,4,5]]],[44,3,3,5,8,[[1061,3,3,5,8]]],[45,2,1,8,9,[[1077,2,1,8,9]]],[46,1,1,9,10,[[1090,1,1,9,10]]],[49,1,1,10,11,[[1106,1,1,10,11]]],[55,1,1,11,12,[[1131,1,1,11,12]]],[56,1,1,12,13,[[1132,1,1,12,13]]],[57,1,1,13,14,[[1145,1,1,13,14]]],[63,1,1,14,15,[[1165,1,1,14,15]]]],[23281,23429,24844,25367,27809,28352,28357,28358,28795,29056,29464,29938,29961,30265,30672]]],["saluted",[5,5,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[43,3,3,2,5,[[1035,1,1,2,3],[1038,2,2,3,5]]]],[24553,24933,27579,27671,27683]]],["saluteth",[5,4,[[44,2,1,0,1,[[1061,2,1,0,1]]],[50,2,2,1,3,[[1110,2,2,1,3]]],[59,1,1,3,4,[[1155,1,1,3,4]]]],[28359,29552,29554,30478]]]]},{"k":"G783","v":[["*",[10,10,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,5,5,2,7,[[973,3,3,2,5],[983,1,1,5,6],[992,1,1,6,7]]],[45,1,1,7,8,[[1077,1,1,7,8]]],[50,1,1,8,9,[[1110,1,1,8,9]]],[52,1,1,9,10,[[1118,1,1,9,10]]]],[23925,24711,24922,24934,24937,25448,25825,28797,29560,29695]]],["greetings",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[992,1,1,2,3]]]],[23925,25448,25825]]],["salutation",[6,6,[[41,3,3,0,3,[[973,3,3,0,3]]],[45,1,1,3,4,[[1077,1,1,3,4]]],[50,1,1,4,5,[[1110,1,1,4,5]]],[52,1,1,5,6,[[1118,1,1,5,6]]]],[24922,24934,24937,28797,29560,29695]]],["salutations",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24711]]]]},{"k":"G784","v":[["*",[4,4,[[53,1,1,0,1,[[1124,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]],[59,1,1,2,3,[[1151,1,1,2,3]]],[60,1,1,3,4,[[1158,1,1,3,4]]]],[29802,30293,30393,30536]]],["spot",[3,3,[[53,1,1,0,1,[[1124,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]],[60,1,1,2,3,[[1158,1,1,2,3]]]],[29802,30393,30536]]],["unspotted",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30293]]]]},{"k":"G785","v":[["asps",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28004]]]]},{"k":"G786","v":[["*",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[27961,29856]]],["implacable",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27961]]],["trucebreakers",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29856]]]]},{"k":"G787","v":[["*",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23446,25465]]],["farthing",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23446]]],["farthings",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25465]]]]},{"k":"G788","v":[["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27868]]]]},{"k":"G789","v":[["Assos",[2,2,[[43,2,2,0,2,[[1037,2,2,0,2]]]],[27639,27640]]]]},{"k":"G790","v":[["dwellingplace",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28444]]]]},{"k":"G791","v":[["*",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[27136,30195]]],["fair",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27136]]],["proper",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30195]]]]},{"k":"G792","v":[["*",[24,21,[[39,5,5,0,5,[[930,4,4,0,4],[952,1,1,4,5]]],[40,1,1,5,6,[[969,1,1,5,6]]],[45,3,1,6,7,[[1076,3,1,6,7]]],[64,1,1,7,8,[[1166,1,1,7,8]]],[65,14,13,8,21,[[1167,3,2,8,10],[1168,2,2,10,12],[1169,1,1,12,13],[1172,1,1,13,14],[1174,3,3,14,17],[1175,1,1,17,18],[1178,2,2,18,20],[1188,1,1,20,21]]]],[23171,23176,23178,23179,23986,24742,28759,30685,30713,30717,30718,30745,30747,30806,30837,30838,30839,30841,30892,30895,31096]]],["star",[11,10,[[39,4,4,0,4,[[930,4,4,0,4]]],[45,2,1,4,5,[[1076,2,1,4,5]]],[65,5,5,5,10,[[1168,1,1,5,6],[1174,2,2,6,8],[1175,1,1,8,9],[1188,1,1,9,10]]]],[23171,23176,23178,23179,28759,30745,30837,30838,30841,31096]]],["stars",[13,12,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]],[65,9,8,4,12,[[1167,3,2,4,6],[1168,1,1,6,7],[1169,1,1,7,8],[1172,1,1,8,9],[1174,1,1,9,10],[1178,2,2,10,12]]]],[23986,24742,28759,30685,30713,30717,30718,30747,30806,30839,30892,30895]]]]},{"k":"G793","v":[["unstable",[2,2,[[60,2,2,0,2,[[1157,1,1,0,1],[1158,1,1,1,2]]]],[30514,30538]]]]},{"k":"G794","v":[["affection",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[27961,29856]]]]},{"k":"G795","v":[["*",[3,3,[[53,2,2,0,2,[[1119,1,1,0,1],[1124,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]]],[29702,29809,29845]]],["erred",[2,2,[[53,1,1,0,1,[[1124,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[29809,29845]]],["swerved",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29702]]]]},{"k":"G796","v":[["*",[9,9,[[39,2,2,0,2,[[952,1,1,0,1],[956,1,1,1,2]]],[41,3,3,2,5,[[982,1,1,2,3],[983,1,1,3,4],[989,1,1,4,5]]],[65,4,4,5,9,[[1170,1,1,5,6],[1174,1,1,6,7],[1177,1,1,7,8],[1182,1,1,8,9]]]],[23984,24198,25381,25441,25675,30773,30832,30891,30972]]],["lightning",[4,4,[[39,2,2,0,2,[[952,1,1,0,1],[956,1,1,1,2]]],[41,2,2,2,4,[[982,1,1,2,3],[989,1,1,3,4]]]],[23984,24198,25381,25675]]],["lightnings",[4,4,[[65,4,4,0,4,[[1170,1,1,0,1],[1174,1,1,1,2],[1177,1,1,2,3],[1182,1,1,3,4]]]],[30773,30832,30891,30972]]],["shining",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25441]]]]},{"k":"G797","v":[["*",[2,2,[[41,2,2,0,2,[[989,1,1,0,1],[996,1,1,1,2]]]],[25675,25995]]],["lighteneth",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25675]]],["shining",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[25995]]]]},{"k":"G798","v":[["*",[4,4,[[41,1,1,0,1,[[993,1,1,0,1]]],[43,2,2,1,3,[[1024,1,1,1,2],[1044,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[25851,27159,27875,30184]]],["star",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27159]]],["stars",[3,3,[[41,1,1,0,1,[[993,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[25851,27875,30184]]]]},{"k":"G799","v":[["Asyncritus",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28350]]]]},{"k":"G800","v":[["+",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27924]]]]},{"k":"G801","v":[["*",[5,5,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[44,3,3,2,5,[[1046,2,2,2,4],[1055,1,1,4,5]]]],[23649,24481,27951,27961,28207]]],["foolish",[2,2,[[44,2,2,0,2,[[1046,1,1,0,1],[1055,1,1,1,2]]]],[27951,28207]]],["understanding",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]]],[23649,24481,27961]]]]},{"k":"G802","v":[["covenantbreakers",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27961]]]]},{"k":"G803","v":[["*",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]],[51,1,1,2,3,[[1115,1,1,2,3]]]],[24897,27082,29624]]],["certainty",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24897]]],["safety",[2,2,[[43,1,1,0,1,[[1022,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]]],[27082,29624]]]]},{"k":"G804","v":[["*",[5,5,[[43,3,3,0,3,[[1038,1,1,0,1],[1039,1,1,1,2],[1042,1,1,2,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]],[57,1,1,4,5,[[1138,1,1,4,5]]]],[27698,27734,27822,29422,30063]]],["+",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27822]]],["certainty",[2,2,[[43,2,2,0,2,[[1038,1,1,0,1],[1039,1,1,1,2]]]],[27698,27734]]],["safe",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29422]]],["sure",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30063]]]]},{"k":"G805","v":[["*",[4,4,[[39,3,3,0,3,[[955,3,3,0,3]]],[43,1,1,3,4,[[1033,1,1,3,4]]]],[24193,24194,24195,27507]]],["+",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[43,1,1,1,2,[[1033,1,1,1,2]]]],[24195,27507]]],["sure",[2,2,[[39,2,2,0,2,[[955,2,2,0,2]]]],[24193,24194]]]]},{"k":"G806","v":[["*",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,2,2,1,3,[[1019,1,1,1,2],[1033,1,1,2,3]]]],[24798,26985,27506]]],["+",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24798]]],["assuredly",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26985]]],["safely",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27506]]]]},{"k":"G807","v":[["*",[2,2,[[45,2,2,0,2,[[1068,1,1,0,1],[1074,1,1,1,2]]]],[28523,28670]]],["uncomely",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28523]]],["unseemly",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28670]]]]},{"k":"G808","v":[["*",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[65,1,1,1,2,[[1182,1,1,1,2]]]],[27957,30969]]],["shame",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30969]]],["unseemly",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27957]]]]},{"k":"G809","v":[["uncomely",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28657]]]]},{"k":"G810","v":[["*",[3,3,[[48,1,1,0,1,[[1101,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[29322,29898,30450]]],["excess",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29322]]],["riot",[2,2,[[55,1,1,0,1,[[1129,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[29898,30450]]]]},{"k":"G811","v":[["riotous",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25601]]]]},{"k":"G812","v":[["+",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29685]]]]},{"k":"G813","v":[["unruly",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29635]]]]},{"k":"G814","v":[["disorderly",[2,2,[[52,2,2,0,2,[[1118,2,2,0,2]]]],[29684,29689]]]]},{"k":"G815","v":[["*",[3,3,[[41,3,3,0,3,[[992,3,3,0,3]]]],[25807,25808,25809]]],["childless",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25809]]],["children",[2,2,[[41,2,2,0,2,[[992,2,2,0,2]]]],[25807,25808]]]]},{"k":"G816","v":[["*",[14,14,[[41,2,2,0,2,[[976,1,1,0,1],[994,1,1,1,2]]],[43,10,10,2,12,[[1018,1,1,2,3],[1020,2,2,3,5],[1023,1,1,5,6],[1024,1,1,6,7],[1027,1,1,7,8],[1028,1,1,8,9],[1030,1,1,9,10],[1031,1,1,10,11],[1040,1,1,11,12]]],[46,2,2,12,14,[[1080,2,2,12,14]]]],[25083,25920,26933,27000,27008,27116,27171,27263,27313,27371,27423,27735,28848,28854]]],["+",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26933]]],["beholding",[2,2,[[43,2,2,0,2,[[1031,1,1,0,1],[1040,1,1,1,2]]]],[27423,27735]]],["earnestly",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27008]]],["eyes",[3,3,[[43,3,3,0,3,[[1020,1,1,0,1],[1028,1,1,1,2],[1030,1,1,2,3]]]],[27000,27313,27371]]],["look",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28854]]],["looked",[2,2,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]]],[25920,27263]]],["on",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25083]]],["stedfastly",[3,3,[[43,2,2,0,2,[[1023,1,1,0,1],[1024,1,1,1,2]]],[46,1,1,2,3,[[1080,1,1,2,3]]]],[27116,27171,28848]]]]},{"k":"G817","v":[["*",[2,2,[[41,2,2,0,2,[[994,2,2,0,2]]]],[25870,25899]]],["of",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25870]]],["without",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25899]]]]},{"k":"G818","v":[["*",[6,6,[[41,1,1,0,1,[[992,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]],[44,2,2,3,5,[[1046,1,1,3,4],[1047,1,1,4,5]]],[58,1,1,5,6,[[1147,1,1,5,6]]]],[25790,26430,27100,27954,27985,30299]]],["despised",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30299]]],["dishonour",[2,2,[[42,1,1,0,1,[[1004,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[26430,27954]]],["dishonourest",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27985]]],["shame",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27100]]],["shamefully",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25790]]]]},{"k":"G819","v":[["*",[7,7,[[44,2,2,0,2,[[1046,1,1,0,1],[1054,1,1,1,2]]],[45,2,2,2,4,[[1072,1,1,2,3],[1076,1,1,3,4]]],[46,2,2,4,6,[[1083,1,1,4,5],[1088,1,1,5,6]]],[54,1,1,6,7,[[1126,1,1,6,7]]]],[27956,28176,28614,28761,28906,29010,29847]]],["dishonour",[4,4,[[44,1,1,0,1,[[1054,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[46,1,1,2,3,[[1083,1,1,2,3]]],[54,1,1,3,4,[[1126,1,1,3,4]]]],[28176,28761,28906,29847]]],["reproach",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29010]]],["shame",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28614]]],["vile",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27956]]]]},{"k":"G820","v":[["*",[4,4,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[45,2,2,2,4,[[1065,1,1,2,3],[1073,1,1,3,4]]]],[23596,24411,28443,28657]]],["despised",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28443]]],["honour",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]]],[23596,24411]]],["honourable",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28657]]]]},{"k":"G821","v":[["handled",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24677]]]]},{"k":"G822","v":[["vapour",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[58,1,1,1,2,[[1149,1,1,1,2]]]],[26968,30351]]]]},{"k":"G823","v":[["moment",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28770]]]]},{"k":"G824","v":[["*",[4,4,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,2,2,1,3,[[1042,1,1,1,2],[1045,1,1,2,3]]],[52,1,1,3,4,[[1118,1,1,3,4]]]],[25976,27801,27905,29680]]],["+",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27905]]],["amiss",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25976]]],["unreasonable",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29680]]],["wickedness",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27801]]]]},{"k":"G825","v":[["Attalia",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27439]]]]},{"k":"G826","v":[["shine",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28863]]]]},{"k":"G827","v":[["day",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27637]]]]},{"k":"G828","v":[["Augustus",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24974]]]]},{"k":"G829","v":[["selfwilled",[2,2,[[55,1,1,0,1,[[1129,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[29899,30510]]]]},{"k":"G830","v":[["*",[2,2,[[46,2,2,0,2,[[1085,2,2,0,2]]]],[28935,28949]]],["accord",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28949]]],["themselves",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28935]]]]},{"k":"G831","v":[["over",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29728]]]]},{"k":"G832","v":[["piped",[3,3,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]]],[23476,25227,28685]]]]},{"k":"G833","v":[["*",[12,12,[[39,3,3,0,3,[[954,3,3,0,3]]],[40,3,3,3,6,[[970,2,2,3,5],[971,1,1,5,6]]],[41,2,2,6,8,[[983,1,1,6,7],[994,1,1,7,8]]],[42,3,3,8,11,[[1006,2,2,8,10],[1014,1,1,10,11]]],[65,1,1,11,12,[[1177,1,1,11,12]]]],[24057,24112,24123,24808,24820,24842,25426,25919,26482,26497,26800,30874]]],["+",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26482]]],["court",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30874]]],["fold",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26497]]],["hall",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24842,25919]]],["palace",[7,7,[[39,3,3,0,3,[[954,3,3,0,3]]],[40,2,2,3,5,[[970,2,2,3,5]]],[41,1,1,5,6,[[983,1,1,5,6]]],[42,1,1,6,7,[[1014,1,1,6,7]]]],[24057,24112,24123,24808,24820,25426,26800]]]]},{"k":"G834","v":[["*",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[23402,31015]]],["minstrels",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23402]]],["pipers",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31015]]]]},{"k":"G835","v":[["*",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]]],[23843,25863]]],["abode",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25863]]],["lodged",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23843]]]]},{"k":"G836","v":[["pipe",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28685]]]]},{"k":"G837","v":[["*",[22,22,[[39,2,2,0,2,[[934,1,1,0,1],[941,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,4,4,3,7,[[973,1,1,3,4],[974,1,1,4,5],[984,1,1,5,6],[985,1,1,6,7]]],[42,1,1,7,8,[[999,1,1,7,8]]],[43,4,4,8,12,[[1023,1,1,8,9],[1024,1,1,9,10],[1029,1,1,10,11],[1036,1,1,11,12]]],[45,2,2,12,14,[[1064,2,2,12,14]]],[46,2,2,14,16,[[1086,1,1,14,15],[1087,1,1,15,16]]],[48,2,2,16,18,[[1098,1,1,16,17],[1100,1,1,17,18]]],[50,2,2,18,20,[[1107,1,1,18,19],[1108,1,1,19,20]]],[59,1,1,20,21,[[1152,1,1,20,21]]],[60,1,1,21,22,[[1158,1,1,21,22]]]],[23310,23571,24331,24973,25013,25486,25537,26150,27108,27133,27361,27605,28416,28417,28966,28986,29250,29287,29475,29513,30401,30540]]],["grew",[6,6,[[41,3,3,0,3,[[973,1,1,0,1],[974,1,1,1,2],[985,1,1,2,3]]],[43,3,3,3,6,[[1024,1,1,3,4],[1029,1,1,4,5],[1036,1,1,5,6]]]],[24973,25013,25537,27133,27361,27605]]],["grow",[4,4,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]],[60,1,1,3,4,[[1158,1,1,3,4]]]],[23310,25486,30401,30540]]],["groweth",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29250]]],["grown",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23571]]],["increase",[4,4,[[42,1,1,0,1,[[999,1,1,0,1]]],[45,2,2,1,3,[[1064,2,2,1,3]]],[46,1,1,3,4,[[1086,1,1,3,4]]]],[26150,28416,28417,28966]]],["increased",[3,3,[[40,1,1,0,1,[[960,1,1,0,1]]],[43,1,1,1,2,[[1023,1,1,1,2]]],[46,1,1,2,3,[[1087,1,1,2,3]]]],[24331,27108,28986]]],["increaseth",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29513]]],["increasing",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29475]]],["up",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29287]]]]},{"k":"G838","v":[["increase",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[29288,29513]]]]},{"k":"G839","v":[["*",[15,14,[[39,3,2,0,2,[[934,3,2,0,2]]],[41,4,4,2,6,[[982,1,1,2,3],[984,1,1,3,4],[985,2,2,4,6]]],[43,5,5,6,11,[[1021,2,2,6,8],[1040,2,2,8,10],[1042,1,1,10,11]]],[45,1,1,11,12,[[1076,1,1,11,12]]],[58,2,2,12,14,[[1149,2,2,12,14]]]],[23312,23316,25398,25487,25550,25551,27025,27027,27749,27754,27818,28750,30350,30351]]],["day",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27025]]],["morrow",[14,13,[[39,3,2,0,2,[[934,3,2,0,2]]],[41,4,4,2,6,[[982,1,1,2,3],[984,1,1,3,4],[985,2,2,4,6]]],[43,4,4,6,10,[[1021,1,1,6,7],[1040,2,2,7,9],[1042,1,1,9,10]]],[45,1,1,10,11,[[1076,1,1,10,11]]],[58,2,2,11,13,[[1149,2,2,11,13]]]],[23312,23316,25398,25487,25550,25551,27027,27749,27754,27818,28750,30350,30351]]]]},{"k":"G840","v":[["austere",[2,2,[[41,2,2,0,2,[[991,2,2,0,2]]]],[25752,25753]]]]},{"k":"G841","v":[["*",[2,2,[[46,1,1,0,1,[[1086,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[28964,29794]]],["contentment",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29794]]],["sufficiency",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28964]]]]},{"k":"G842","v":[["content",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29453]]]]},{"k":"G843","v":[["himself",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29934]]]]},{"k":"G844","v":[["*",[2,2,[[40,1,1,0,1,[[960,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]]],[24351,27347]]],["accord",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27347]]],["herself",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24351]]]]},{"k":"G845","v":[["eyewitnesses",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24895]]]]},{"k":"G846","v":[["*",[4813,3317,[[39,829,569,0,569,[[929,17,9,0,9],[930,20,14,9,23],[931,15,11,23,34],[932,25,16,34,50],[933,25,22,50,72],[934,9,7,72,79],[935,19,15,79,94],[936,39,26,94,120],[937,38,24,120,144],[938,21,16,144,160],[939,8,8,160,168],[940,44,28,168,196],[941,51,37,196,233],[942,35,23,233,256],[943,22,14,256,270],[944,17,13,270,283],[945,40,22,283,305],[946,42,24,305,329],[947,27,19,329,348],[948,28,20,348,368],[949,51,30,368,398],[950,33,26,398,424],[951,14,11,424,435],[952,14,10,435,445],[953,27,21,445,466],[954,61,46,466,512],[955,65,42,512,554],[956,22,15,554,569]]],[40,705,432,569,1001,[[957,51,31,569,600],[958,30,19,600,619],[959,39,22,619,641],[960,32,25,641,666],[961,50,31,666,697],[962,73,40,697,737],[963,34,21,737,758],[964,43,24,758,782],[965,64,38,782,820],[966,60,32,820,852],[967,30,19,852,871],[968,48,29,871,900],[969,10,7,900,907],[970,78,52,907,959],[971,48,31,959,990],[972,15,11,990,1001]]],[41,1013,659,1001,1660,[[973,59,46,1001,1047],[974,55,33,1047,1080],[975,16,14,1080,1094],[976,58,31,1094,1125],[977,45,29,1125,1154],[978,40,29,1154,1183],[979,41,25,1183,1208],[980,71,40,1208,1248],[981,72,44,1248,1292],[982,34,22,1292,1314],[983,55,32,1314,1346],[984,23,19,1346,1365],[985,26,17,1365,1382],[986,25,18,1382,1400],[987,29,18,1400,1418],[988,21,17,1418,1435],[989,28,18,1435,1453],[990,31,22,1453,1475],[991,42,31,1475,1506],[992,36,27,1506,1533],[993,9,8,1533,1541],[994,70,46,1541,1587],[995,59,34,1587,1621],[996,68,39,1621,1660]]],[42,746,514,1660,2174,[[997,50,36,1660,1696],[998,25,17,1696,1713],[999,25,22,1713,1735],[1000,60,39,1735,1774],[1001,27,21,1774,1795],[1002,55,38,1795,1833],[1003,46,32,1833,1865],[1004,48,33,1865,1898],[1005,48,31,1898,1929],[1006,35,23,1929,1952],[1007,52,39,1952,1991],[1008,42,29,1991,2020],[1009,28,22,2020,2042],[1010,19,11,2042,2053],[1011,9,8,2053,2061],[1012,10,8,2061,2069],[1013,27,17,2069,2086],[1014,43,28,2086,2114],[1015,36,24,2114,2138],[1016,33,20,2138,2158],[1017,28,16,2158,2174]]],[43,638,463,2174,2637,[[1018,20,14,2174,2188],[1019,23,17,2188,2205],[1020,19,14,2205,2219],[1021,27,22,2219,2241],[1022,33,26,2241,2267],[1023,7,6,2267,2273],[1024,50,31,2273,2304],[1025,23,19,2304,2323],[1026,41,28,2323,2351],[1027,36,25,2351,2376],[1028,15,12,2376,2388],[1029,22,14,2388,2402],[1030,32,25,2402,2427],[1031,15,12,2427,2439],[1032,22,16,2439,2455],[1033,25,18,2455,2473],[1034,22,17,2473,2490],[1035,17,12,2490,2502],[1036,22,14,2502,2516],[1037,23,17,2516,2533],[1038,26,22,2533,2555],[1039,20,13,2555,2568],[1040,27,18,2568,2586],[1041,17,12,2586,2598],[1042,22,16,2598,2614],[1043,9,6,2614,2620],[1044,6,6,2620,2626],[1045,17,11,2626,2637]]],[44,85,71,2637,2708,[[1046,9,7,2637,2644],[1047,3,3,2644,2647],[1048,3,2,2647,2649],[1049,8,6,2649,2655],[1050,1,1,2655,2656],[1051,5,5,2656,2661],[1052,4,4,2661,2665],[1053,4,3,2665,2668],[1054,6,6,2668,2674],[1055,7,5,2674,2679],[1056,16,12,2679,2691],[1057,4,3,2691,2694],[1058,2,2,2694,2696],[1059,2,2,2696,2698],[1060,6,6,2698,2704],[1061,5,4,2704,2708]]],[45,62,49,2708,2757,[[1062,7,5,2708,2713],[1063,5,5,2713,2718],[1068,8,4,2718,2722],[1069,4,3,2722,2725],[1070,1,1,2725,2726],[1071,8,8,2726,2734],[1072,6,4,2734,2738],[1073,9,8,2738,2746],[1075,3,3,2746,2749],[1076,7,6,2749,2755],[1077,4,2,2755,2757]]],[46,58,47,2757,2804,[[1078,4,3,2757,2760],[1079,4,4,2760,2764],[1080,5,4,2764,2768],[1081,2,2,2768,2770],[1082,6,5,2770,2775],[1083,5,3,2775,2778],[1084,6,5,2778,2783],[1085,8,6,2783,2789],[1086,4,4,2789,2793],[1087,3,3,2793,2796],[1088,4,3,2796,2799],[1089,4,3,2799,2802],[1090,3,2,2802,2804]]],[47,21,19,2804,2823,[[1091,5,5,2804,2809],[1092,7,6,2809,2815],[1093,5,4,2815,2819],[1094,2,2,2819,2821],[1096,2,2,2821,2823]]],[48,51,39,2823,2862,[[1097,15,10,2823,2833],[1098,6,5,2833,2838],[1099,5,5,2838,2843],[1100,7,5,2843,2848],[1101,10,8,2848,2856],[1102,8,6,2856,2862]]],[49,30,19,2862,2881,[[1103,4,3,2862,2865],[1104,12,8,2865,2873],[1105,12,6,2873,2879],[1106,2,2,2879,2881]]],[50,42,33,2881,2914,[[1107,17,11,2881,2892],[1108,12,9,2892,2901],[1109,6,6,2901,2907],[1110,7,7,2907,2914]]],[51,20,19,2914,2933,[[1111,2,2,2914,2916],[1112,4,4,2916,2920],[1113,3,3,2920,2923],[1114,5,5,2923,2928],[1115,6,5,2928,2933]]],[52,13,12,2933,2945,[[1116,3,3,2933,2936],[1117,7,6,2936,2942],[1118,3,3,2942,2945]]],[53,6,6,2945,2951,[[1119,3,3,2945,2948],[1121,1,1,2948,2949],[1122,1,1,2949,2950],[1123,1,1,2950,2951]]],[54,12,11,2951,2962,[[1125,2,2,2951,2953],[1126,4,4,2953,2957],[1127,2,2,2957,2959],[1128,4,3,2959,2962]]],[55,6,5,2962,2967,[[1129,4,3,2962,2965],[1131,2,2,2965,2967]]],[56,3,3,2967,2970,[[1132,3,3,2967,2970]]],[57,115,80,2970,3050,[[1133,8,6,2970,2976],[1134,16,8,2976,2984],[1135,7,6,2984,2990],[1136,9,7,2990,2997],[1137,4,4,2997,3001],[1138,4,4,3001,3005],[1139,9,8,3005,3013],[1140,16,5,3013,3018],[1141,5,5,3018,3023],[1142,13,8,3023,3031],[1143,12,9,3031,3040],[1144,5,5,3040,3045],[1145,7,5,3045,3050]]],[58,29,23,3050,3073,[[1146,6,5,3050,3055],[1147,8,7,3055,3062],[1148,6,4,3062,3066],[1149,1,1,3066,3067],[1150,8,6,3067,3073]]],[59,29,25,3073,3098,[[1151,7,5,3073,3078],[1152,7,7,3078,3085],[1153,6,5,3085,3090],[1154,5,5,3090,3095],[1155,4,3,3095,3098]]],[60,24,22,3098,3120,[[1156,4,4,3098,3102],[1157,11,9,3102,3111],[1158,9,9,3111,3120]]],[61,60,44,3120,3164,[[1159,6,4,3120,3124],[1160,16,13,3124,3137],[1161,19,12,3137,3149],[1162,13,9,3149,3158],[1163,6,6,3158,3164]]],[62,4,3,3164,3167,[[1164,4,3,3164,3167]]],[63,3,3,3167,3170,[[1165,3,3,3167,3170]]],[64,4,3,3170,3173,[[1166,4,3,3170,3173]]],[65,205,144,3173,3317,[[1167,7,5,3173,3178],[1168,11,9,3178,3187],[1169,8,5,3187,3192],[1171,4,4,3192,3196],[1172,11,5,3196,3201],[1173,8,6,3201,3207],[1174,4,4,3207,3211],[1175,12,9,3211,3220],[1176,7,3,3220,3223],[1177,14,8,3223,3231],[1178,7,6,3231,3237],[1179,14,10,3237,3247],[1180,6,6,3247,3253],[1181,1,1,3253,3254],[1182,6,6,3254,3260],[1183,9,7,3260,3267],[1184,18,11,3267,3278],[1185,12,9,3278,3287],[1186,17,10,3287,3297],[1187,20,13,3297,3310],[1188,9,7,3310,3317]]]],[23146,23155,23162,23163,23164,23165,23167,23168,23169,23171,23172,23173,23174,23176,23177,23178,23180,23182,23183,23185,23189,23190,23191,23195,23196,23197,23198,23199,23203,23204,23205,23206,23207,23208,23212,23214,23215,23216,23217,23218,23219,23220,23227,23228,23229,23230,23231,23232,23233,23234,23235,23236,23237,23238,23239,23240,23241,23242,23243,23244,23249,23259,23262,23263,23264,23265,23266,23269,23273,23274,23275,23280,23283,23290,23296,23297,23308,23315,23316,23322,23325,23326,23327,23328,23329,23330,23332,23336,23339,23340,23342,23343,23344,23345,23346,23347,23348,23349,23350,23352,23358,23359,23360,23361,23362,23363,23364,23365,23366,23367,23368,23369,23370,23371,23372,23373,23375,23376,23377,23379,23381,23383,23388,23389,23390,23391,23393,23394,23395,23397,23398,23399,23400,23401,23403,23404,23406,23407,23408,23409,23410,23411,23414,23415,23418,23419,23421,23422,23428,23429,23430,23435,23438,23442,23443,23446,23449,23450,23453,23456,23460,23462,23463,23470,23471,23473,23479,23484,23490,23491,23492,23493,23498,23499,23500,23503,23504,23505,23507,23508,23510,23511,23514,23515,23516,23518,23521,23522,23525,23528,23530,23531,23535,23536,23537,23539,23541,23542,23543,23546,23549,23550,23551,23552,23553,23554,23558,23559,23563,23564,23566,23567,23568,23569,23570,23571,23572,23573,23575,23576,23578,23580,23581,23583,23585,23589,23590,23591,23593,23594,23595,23596,23597,23599,23600,23601,23602,23604,23608,23609,23610,23611,23612,23613,23614,23615,23619,23622,23623,23624,23625,23628,23629,23630,23632,23633,23636,23641,23643,23645,23647,23648,23655,23656,23658,23661,23663,23665,23666,23667,23673,23674,23676,23677,23678,23680,23687,23689,23690,23692,23693,23694,23697,23701,23702,23703,23705,23707,23709,23710,23711,23712,23713,23714,23716,23717,23718,23719,23720,23722,23723,23724,23725,23726,23727,23729,23733,23735,23736,23737,23739,23740,23742,23744,23746,23747,23748,23749,23751,23752,23753,23754,23755,23756,23757,23758,23759,23761,23762,23764,23765,23766,23769,23770,23772,23773,23775,23776,23777,23778,23779,23780,23782,23783,23787,23788,23789,23790,23794,23798,23799,23800,23802,23804,23805,23809,23810,23811,23812,23813,23814,23815,23817,23821,23823,23824,23825,23826,23828,23829,23832,23833,23836,23839,23840,23842,23843,23845,23847,23849,23850,23851,23853,23857,23858,23859,23860,23861,23862,23863,23864,23865,23867,23868,23869,23870,23871,23872,23873,23878,23879,23884,23885,23887,23888,23890,23891,23892,23893,23894,23895,23896,23900,23901,23905,23906,23907,23909,23911,23913,23914,23915,23917,23918,23921,23922,23933,23936,23938,23939,23940,23944,23948,23952,23955,23958,23959,23960,23961,23988,23989,24002,24003,24004,24008,24010,24014,24018,24022,24024,24025,24027,24028,24029,24030,24031,24034,24036,24037,24039,24040,24045,24048,24049,24052,24053,24061,24062,24064,24067,24069,24070,24071,24072,24073,24075,24076,24078,24079,24080,24081,24083,24085,24087,24088,24089,24090,24092,24094,24096,24097,24098,24099,24101,24102,24103,24104,24105,24106,24110,24112,24113,24115,24116,24117,24118,24119,24121,24123,24125,24127,24129,24130,24131,24132,24135,24136,24139,24140,24141,24142,24143,24146,24147,24148,24150,24151,24154,24155,24156,24157,24158,24159,24160,24161,24163,24164,24165,24166,24167,24168,24171,24172,24173,24177,24178,24182,24183,24184,24186,24188,24189,24193,24194,24197,24198,24199,24202,24203,24204,24205,24206,24208,24209,24211,24212,24213,24214,24215,24218,24220,24223,24225,24227,24228,24231,24232,24233,24234,24235,24237,24238,24240,24241,24242,24243,24245,24246,24247,24249,24251,24252,24253,24254,24255,24256,24257,24258,24259,24260,24262,24263,24264,24265,24268,24273,24274,24275,24276,24277,24278,24279,24280,24281,24283,24284,24285,24286,24287,24290,24292,24293,24294,24295,24296,24297,24298,24299,24300,24301,24302,24305,24307,24308,24309,24311,24315,24319,24320,24321,24322,24324,24325,24327,24330,24332,24333,24334,24335,24336,24338,24339,24344,24347,24348,24350,24353,24355,24356,24357,24358,24359,24360,24361,24363,24364,24366,24367,24368,24370,24372,24373,24374,24376,24377,24380,24381,24382,24383,24384,24385,24386,24387,24388,24391,24392,24393,24394,24395,24397,24398,24399,24401,24403,24404,24405,24407,24408,24409,24410,24411,24413,24414,24415,24417,24418,24421,24423,24424,24426,24427,24429,24430,24433,24434,24435,24436,24437,24438,24440,24441,24442,24443,24444,24445,24446,24448,24452,24453,24454,24455,24456,24457,24458,24459,24461,24463,24464,24465,24468,24469,24472,24475,24477,24478,24480,24481,24482,24488,24489,24490,24491,24492,24495,24496,24497,24498,24499,24501,24503,24504,24505,24507,24509,24511,24513,24515,24517,24519,24521,24522,24523,24525,24526,24527,24529,24530,24531,24532,24534,24535,24538,24539,24540,24541,24542,24545,24547,24549,24550,24551,24552,24553,24554,24556,24557,24558,24559,24560,24561,24563,24564,24565,24566,24567,24569,24570,24571,24573,24574,24576,24577,24580,24581,24582,24583,24584,24585,24586,24588,24589,24590,24591,24593,24594,24598,24599,24601,24602,24603,24604,24605,24606,24608,24609,24612,24615,24616,24620,24621,24622,24623,24624,24625,24626,24627,24630,24634,24636,24637,24639,24640,24642,24643,24644,24645,24646,24647,24652,24653,24654,24657,24658,24661,24662,24663,24667,24668,24669,24671,24673,24674,24676,24677,24679,24680,24681,24685,24686,24687,24688,24689,24690,24691,24692,24694,24695,24696,24697,24699,24701,24702,24705,24706,24707,24709,24710,24711,24716,24717,24718,24719,24720,24722,24726,24729,24745,24755,24757,24759,24760,24761,24763,24764,24765,24766,24767,24769,24770,24772,24773,24774,24775,24776,24777,24778,24779,24781,24783,24784,24788,24789,24791,24793,24794,24795,24797,24798,24799,24800,24801,24802,24804,24805,24806,24807,24808,24809,24810,24811,24812,24813,24815,24818,24819,24821,24823,24824,24826,24828,24829,24830,24832,24834,24835,24836,24837,24838,24839,24840,24841,24842,24843,24844,24845,24846,24847,24848,24849,24850,24851,24852,24853,24855,24858,24862,24865,24867,24870,24872,24874,24879,24880,24881,24883,24884,24885,24887,24888,24891,24892,24898,24900,24901,24904,24905,24906,24907,24909,24910,24912,24914,24915,24916,24917,24921,24922,24923,24924,24925,24926,24928,24929,24931,24934,24938,24942,24943,24944,24948,24949,24950,24951,24952,24953,24954,24955,24956,24957,24958,24959,24960,24967,24968,24969,24970,24973,24977,24978,24979,24980,24981,24982,24983,24988,24990,24991,24993,24994,24995,24998,24999,25000,25001,25006,25007,25008,25011,25013,25014,25015,25016,25017,25018,25019,25020,25021,25022,25023,25024,25026,25029,25032,25035,25036,25037,25038,25039,25040,25041,25042,25044,25047,25048,25065,25066,25067,25068,25069,25071,25072,25075,25076,25077,25078,25079,25080,25083,25084,25085,25086,25089,25090,25092,25093,25094,25095,25098,25100,25101,25102,25103,25104,25105,25106,25108,25109,25110,25112,25113,25114,25116,25118,25119,25120,25121,25122,25123,25124,25125,25126,25127,25129,25132,25134,25135,25136,25137,25138,25140,25141,25142,25143,25144,25147,25148,25149,25150,25151,25152,25153,25154,25155,25156,25157,25159,25160,25163,25165,25166,25169,25172,25177,25178,25179,25181,25184,25185,25186,25188,25191,25193,25194,25197,25198,25199,25200,25201,25204,25206,25207,25208,25210,25212,25213,25215,25216,25217,25223,25225,25231,25233,25234,25235,25237,25238,25242,25243,25246,25248,25249,25250,25252,25254,25257,25261,25263,25264,25265,25266,25267,25268,25269,25270,25272,25273,25274,25275,25276,25277,25281,25282,25283,25284,25285,25286,25287,25289,25290,25292,25293,25294,25295,25297,25298,25299,25300,25301,25302,25303,25304,25306,25308,25310,25311,25312,25313,25314,25315,25317,25318,25319,25321,25322,25325,25330,25331,25332,25333,25334,25335,25336,25337,25338,25340,25341,25343,25346,25347,25348,25349,25350,25351,25352,25353,25354,25355,25356,25358,25359,25361,25363,25364,25365,25369,25370,25372,25373,25381,25384,25388,25389,25391,25393,25394,25396,25397,25398,25400,25401,25402,25403,25404,25405,25406,25407,25409,25410,25411,25413,25416,25417,25418,25419,25420,25421,25422,25423,25424,25426,25427,25432,25433,25434,25436,25437,25442,25444,25450,25451,25452,25453,25454,25457,25458,25459,25465,25467,25469,25471,25472,25473,25474,25475,25479,25483,25495,25496,25500,25502,25503,25505,25506,25507,25517,25519,25520,25522,25524,25525,25526,25527,25530,25531,25533,25535,25536,25537,25541,25549,25550,25552,25554,25555,25557,25558,25559,25560,25561,25562,25565,25568,25569,25571,25572,25578,25582,25584,25585,25588,25589,25590,25591,25592,25594,25600,25602,25603,25604,25606,25608,25609,25610,25613,25615,25616,25618,25619,25621,25622,25626,25627,25634,25635,25636,25640,25641,25642,25643,25644,25647,25648,25649,25650,25651,25653,25654,25655,25659,25660,25662,25663,25664,25665,25666,25667,25670,25671,25676,25682,25684,25686,25688,25689,25691,25693,25695,25696,25703,25704,25705,25706,25707,25710,25712,25717,25719,25721,25722,25723,25725,25727,25728,25730,25731,25733,25735,25736,25737,25740,25742,25744,25745,25746,25748,25753,25754,25755,25756,25757,25758,25761,25762,25763,25764,25765,25766,25767,25768,25770,25771,25772,25776,25777,25778,25779,25780,25781,25782,25784,25787,25788,25789,25793,25794,25796,25797,25798,25799,25800,25802,25804,25805,25806,25807,25810,25812,25813,25817,25819,25820,25821,25823,25830,25833,25834,25836,25846,25847,25855,25864,25866,25868,25869,25870,25873,25874,25877,25878,25879,25880,25883,25887,25888,25889,25897,25899,25900,25902,25903,25904,25905,25907,25908,25909,25910,25911,25912,25913,25914,25915,25916,25918,25919,25920,25921,25922,25923,25924,25925,25927,25928,25929,25930,25931,25934,25935,25936,25937,25938,25942,25943,25944,25945,25946,25947,25949,25950,25951,25952,25956,25957,25958,25959,25960,25961,25962,25963,25967,25968,25969,25970,25971,25973,25974,25975,25978,25984,25986,25988,25990,25992,25995,25996,25999,26001,26002,26004,26005,26006,26007,26008,26009,26010,26011,26012,26014,26015,26016,26018,26019,26020,26021,26022,26024,26026,26027,26029,26030,26031,26032,26033,26034,26035,26036,26037,26038,26041,26042,26043,26047,26048,26049,26050,26051,26054,26055,26056,26058,26059,26060,26063,26065,26066,26069,26070,26071,26073,26075,26076,26077,26079,26081,26082,26083,26084,26085,26086,26087,26089,26090,26091,26092,26093,26094,26095,26097,26098,26099,26100,26102,26103,26105,26106,26107,26112,26113,26114,26115,26117,26118,26119,26120,26122,26123,26124,26128,26129,26130,26135,26136,26137,26138,26139,26140,26141,26142,26146,26147,26148,26149,26152,26153,26155,26156,26158,26160,26163,26164,26165,26166,26167,26168,26169,26170,26171,26172,26173,26175,26177,26179,26180,26181,26182,26183,26186,26187,26188,26189,26190,26194,26195,26196,26197,26198,26200,26201,26203,26204,26205,26206,26207,26208,26209,26216,26217,26218,26219,26221,26222,26224,26225,26226,26227,26228,26229,26230,26233,26237,26238,26245,26246,26247,26248,26249,26259,26262,26263,26264,26265,26272,26273,26274,26277,26278,26279,26281,26282,26283,26285,26286,26287,26288,26289,26291,26292,26296,26297,26298,26300,26301,26307,26310,26311,26313,26317,26318,26321,26322,26323,26325,26327,26328,26329,26331,26332,26333,26334,26335,26337,26338,26339,26340,26341,26344,26345,26346,26349,26354,26357,26358,26359,26360,26361,26363,26366,26367,26371,26372,26373,26375,26376,26378,26379,26380,26383,26384,26385,26387,26388,26391,26392,26393,26394,26395,26400,26401,26402,26404,26406,26407,26408,26409,26410,26411,26412,26414,26415,26420,26422,26423,26425,26429,26433,26436,26438,26439,26440,26442,26443,26447,26448,26449,26450,26452,26453,26454,26455,26456,26457,26458,26459,26460,26461,26462,26463,26464,26466,26467,26468,26470,26471,26474,26475,26476,26477,26478,26480,26481,26484,26485,26486,26487,26488,26489,26492,26493,26498,26499,26501,26505,26506,26508,26509,26512,26513,26514,26515,26519,26520,26522,26523,26524,26525,26526,26527,26528,26531,26533,26534,26535,26536,26537,26538,26539,26540,26542,26543,26546,26547,26548,26550,26552,26553,26554,26555,26556,26557,26559,26560,26561,26562,26563,26567,26568,26569,26571,26572,26576,26577,26580,26582,26583,26584,26586,26587,26591,26593,26594,26596,26597,26598,26599,26601,26603,26604,26605,26606,26609,26614,26615,26616,26617,26620,26621,26622,26627,26628,26629,26630,26631,26632,26633,26636,26637,26638,26639,26640,26641,26642,26646,26647,26653,26655,26657,26658,26659,26661,26662,26666,26667,26668,26673,26674,26675,26676,26677,26678,26679,26685,26689,26690,26691,26701,26704,26705,26709,26714,26721,26723,26724,26730,26733,26743,26745,26747,26753,26755,26757,26761,26765,26767,26768,26769,26770,26771,26773,26774,26776,26777,26778,26779,26780,26781,26782,26785,26786,26787,26789,26790,26791,26792,26794,26795,26796,26797,26798,26803,26804,26805,26806,26807,26808,26809,26810,26811,26813,26814,26815,26816,26818,26819,26822,26823,26827,26828,26829,26830,26831,26832,26834,26835,26837,26840,26841,26843,26848,26849,26850,26852,26854,26856,26857,26858,26859,26860,26861,26865,26869,26873,26874,26876,26880,26882,26883,26884,26885,26886,26887,26888,26889,26890,26891,26892,26893,26895,26896,26898,26900,26901,26903,26904,26908,26910,26911,26913,26914,26915,26917,26918,26920,26921,26922,26923,26926,26927,26929,26930,26932,26933,26934,26937,26938,26941,26942,26943,26945,26949,26950,26952,26953,26955,26960,26963,26971,26973,26974,26978,26979,26980,26983,26987,26990,26993,26994,26997,27000,27001,27003,27004,27005,27006,27007,27008,27009,27012,27014,27018,27022,27023,27024,27025,27027,27029,27030,27035,27036,27037,27038,27039,27040,27041,27043,27045,27046,27048,27051,27053,27054,27055,27056,27061,27065,27066,27067,27068,27069,27072,27074,27076,27077,27078,27080,27081,27083,27084,27085,27086,27091,27092,27094,27095,27096,27097,27098,27099,27100,27102,27107,27112,27113,27115,27116,27118,27119,27120,27121,27122,27124,27125,27126,27131,27135,27137,27139,27141,27142,27143,27146,27147,27149,27150,27151,27152,27153,27154,27156,27158,27159,27160,27163,27170,27173,27176,27177,27178,27181,27187,27189,27190,27191,27192,27193,27194,27196,27206,27207,27208,27209,27211,27214,27215,27216,27218,27219,27222,27223,27224,27226,27227,27228,27231,27232,27233,27234,27237,27239,27240,27241,27242,27243,27244,27245,27246,27250,27251,27253,27254,27255,27257,27259,27262,27263,27266,27267,27269,27270,27272,27274,27278,27279,27280,27282,27283,27284,27285,27286,27287,27294,27297,27299,27300,27301,27302,27305,27307,27309,27310,27311,27319,27320,27322,27324,27327,27328,27329,27333,27335,27341,27342,27343,27344,27345,27346,27347,27352,27353,27354,27356,27357,27358,27360,27364,27365,27370,27371,27373,27375,27376,27377,27379,27380,27381,27383,27384,27386,27389,27390,27391,27392,27393,27395,27396,27405,27408,27412,27413,27415,27417,27419,27423,27426,27427,27429,27432,27433,27434,27437,27441,27444,27446,27447,27449,27450,27451,27454,27455,27458,27459,27462,27463,27464,27469,27480,27481,27486,27487,27490,27492,27493,27501,27503,27505,27506,27507,27508,27513,27515,27516,27517,27520,27522,27523,27525,27527,27528,27529,27532,27535,27538,27539,27541,27542,27547,27548,27550,27551,27554,27556,27557,27559,27560,27563,27568,27569,27572,27573,27575,27577,27578,27583,27584,27587,27588,27589,27591,27594,27597,27601,27602,27604,27607,27615,27616,27618,27623,27628,27629,27630,27632,27633,27636,27639,27640,27642,27644,27648,27656,27658,27660,27662,27663,27664,27665,27667,27671,27672,27676,27678,27683,27684,27685,27688,27689,27690,27691,27693,27694,27695,27696,27697,27698,27699,27700,27704,27706,27717,27719,27722,27723,27724,27726,27727,27728,27729,27731,27733,27734,27736,27737,27741,27743,27744,27745,27749,27751,27752,27754,27755,27761,27762,27764,27765,27766,27767,27769,27771,27777,27779,27784,27785,27789,27790,27791,27792,27793,27794,27795,27798,27799,27801,27802,27803,27804,27807,27811,27813,27815,27817,27818,27820,27821,27822,27823,27833,27834,27841,27847,27849,27853,27861,27863,27865,27869,27887,27898,27905,27907,27913,27915,27916,27920,27922,27926,27927,27928,27929,27947,27949,27950,27954,27956,27958,27962,27963,27965,27968,28011,28017,28025,28033,28035,28040,28044,28045,28056,28070,28072,28076,28077,28080,28094,28102,28108,28111,28132,28145,28148,28167,28172,28174,28176,28181,28188,28190,28193,28197,28199,28200,28213,28217,28218,28220,28223,28224,28226,28232,28236,28240,28244,28245,28249,28261,28265,28269,28272,28283,28284,28308,28314,28315,28324,28330,28331,28338,28350,28351,28353,28368,28373,28387,28392,28393,28403,28405,28408,28409,28410,28495,28499,28500,28522,28530,28533,28537,28563,28570,28571,28572,28574,28575,28576,28577,28589,28613,28614,28615,28620,28638,28639,28640,28642,28643,28645,28652,28659,28688,28701,28712,28728,28743,28745,28746,28756,28757,28787,28788,28806,28819,28820,28827,28832,28835,28837,28848,28855,28856,28859,28863,28872,28882,28886,28892,28896,28898,28911,28914,28915,28923,28927,28929,28930,28931,28934,28948,28950,28951,28954,28956,28965,28969,28970,28971,28972,28978,28983,29003,29004,29022,29035,29039,29040,29047,29054,29058,29069,29070,29073,29075,29083,29090,29091,29092,29094,29098,29108,29112,29114,29118,29148,29161,29201,29204,29210,29213,29216,29218,29220,29224,29225,29226,29228,29229,29239,29243,29245,29247,29249,29256,29257,29258,29263,29272,29282,29283,29287,29290,29293,29311,29316,29327,29329,29330,29331,29333,29334,29341,29346,29347,29355,29357,29359,29389,29390,29391,29393,29400,29409,29413,29415,29418,29419,29420,29422,29430,29431,29437,29440,29442,29444,29445,29474,29476,29479,29481,29482,29483,29484,29485,29489,29491,29494,29496,29500,29501,29503,29504,29506,29507,29508,29509,29521,29524,29526,29527,29534,29536,29544,29546,29550,29552,29555,29557,29559,29569,29570,29571,29584,29586,29589,29593,29601,29603,29612,29613,29617,29619,29620,29623,29624,29631,29634,29644,29653,29658,29661,29662,29665,29667,29671,29672,29677,29685,29692,29694,29704,29712,29714,29738,29763,29779,29817,29827,29837,29844,29852,29853,29858,29862,29878,29884,29886,29904,29905,29907,29924,29936,29950,29953,29955,29966,29967,29968,29969,29974,29975,29983,29984,29985,29987,29988,29990,29991,29995,29997,29998,30000,30002,30005,30010,30015,30020,30021,30022,30024,30025,30027,30032,30035,30037,30039,30051,30054,30055,30060,30065,30070,30074,30075,30082,30085,30088,30089,30100,30101,30102,30103,30104,30110,30128,30129,30131,30133,30134,30136,30144,30145,30146,30149,30150,30171,30176,30177,30178,30181,30183,30185,30188,30191,30200,30217,30222,30223,30229,30231,30246,30249,30254,30256,30258,30271,30277,30278,30289,30293,30296,30298,30300,30307,30309,30315,30316,30322,30328,30329,30330,30354,30357,30361,30368,30369,30373,30374,30385,30386,30389,30395,30398,30401,30404,30405,30408,30413,30420,30421,30430,30435,30436,30438,30446,30447,30450,30456,30459,30460,30472,30474,30476,30482,30484,30496,30497,30501,30502,30503,30508,30511,30519,30520,30521,30522,30526,30527,30529,30532,30535,30536,30537,30538,30540,30545,30546,30547,30550,30552,30553,30554,30555,30556,30558,30560,30565,30571,30575,30577,30578,30579,30580,30581,30582,30584,30585,30588,30591,30594,30596,30598,30601,30603,30607,30608,30612,30613,30616,30618,30619,30622,30624,30625,30634,30638,30639,30640,30642,30651,30655,30656,30665,30668,30670,30679,30683,30687,30698,30700,30703,30704,30714,30719,30724,30733,30734,30738,30739,30743,30744,30745,30754,30755,30758,30766,30767,30782,30783,30790,30792,30795,30797,30798,30801,30804,30812,30819,30824,30825,30826,30827,30829,30830,30832,30839,30841,30843,30844,30845,30846,30851,30856,30857,30859,30867,30870,30871,30873,30874,30877,30878,30879,30882,30883,30884,30895,30897,30900,30901,30902,30903,30910,30912,30913,30915,30916,30918,30920,30922,30923,30924,30927,30933,30935,30936,30939,30943,30947,30960,30962,30963,30968,30970,30973,30981,30982,30984,30985,30986,30989,30991,30996,30997,30999,31000,31001,31002,31004,31007,31008,31013,31017,31022,31024,31025,31027,31028,31031,31032,31035,31037,31040,31041,31042,31044,31045,31046,31047,31048,31049,31051,31056,31060,31067,31068,31069,31070,31071,31075,31076,31077,31078,31079,31080,31082,31083,31084,31085,31094,31098,31099]]],["+",[315,299,[[39,52,50,0,50,[[929,2,1,0,1],[930,1,1,1,2],[932,2,2,2,4],[933,2,2,4,6],[935,1,1,6,7],[937,3,3,7,10],[938,4,4,10,14],[939,1,1,14,15],[940,1,1,15,16],[941,2,2,16,18],[942,1,1,18,19],[943,4,4,19,23],[945,2,2,23,25],[946,3,3,25,28],[947,2,2,28,30],[949,5,4,30,34],[950,2,2,34,36],[951,3,3,36,39],[952,2,2,39,41],[953,1,1,41,42],[954,2,2,42,44],[955,5,5,44,49],[956,1,1,49,50]]],[40,40,39,50,89,[[957,2,2,50,52],[958,1,1,52,53],[959,2,2,53,55],[960,1,1,55,56],[961,3,3,56,59],[962,3,3,59,62],[964,4,4,62,66],[965,9,9,66,75],[966,3,3,75,78],[967,2,2,78,80],[968,1,1,80,81],[969,1,1,81,82],[970,2,2,82,84],[971,6,5,84,89]]],[41,51,47,89,136,[[973,1,1,89,90],[974,5,4,90,94],[975,1,1,94,95],[976,3,3,95,98],[977,3,2,98,100],[980,2,2,100,102],[981,3,2,102,104],[982,4,4,104,108],[983,2,2,108,110],[984,3,3,110,113],[985,4,4,113,117],[986,2,2,117,119],[987,1,1,119,120],[989,3,3,120,123],[990,2,2,123,125],[991,1,1,125,126],[992,2,2,126,128],[993,1,1,128,129],[994,1,1,129,130],[995,5,4,130,134],[996,2,2,134,136]]],[42,28,26,136,162,[[997,1,1,136,137],[998,2,2,137,139],[1000,1,1,139,140],[1002,7,6,140,146],[1003,1,1,146,147],[1006,3,2,147,149],[1007,4,4,149,153],[1008,2,2,153,155],[1010,1,1,155,156],[1011,1,1,156,157],[1013,1,1,157,158],[1014,2,2,158,160],[1015,1,1,160,161],[1016,1,1,161,162]]],[43,60,57,162,219,[[1018,2,2,162,164],[1019,1,1,164,165],[1020,1,1,165,166],[1021,3,3,166,169],[1022,4,4,169,173],[1024,6,6,173,179],[1025,1,1,179,180],[1026,5,4,180,184],[1027,5,4,184,188],[1028,1,1,188,189],[1029,3,3,189,192],[1030,6,5,192,197],[1031,2,2,197,199],[1032,3,3,199,202],[1033,1,1,202,203],[1034,2,2,203,205],[1035,2,2,205,207],[1036,1,1,207,208],[1037,4,4,208,212],[1039,1,1,212,213],[1040,3,3,213,216],[1041,1,1,216,217],[1042,1,1,217,218],[1044,1,1,218,219]]],[44,16,16,219,235,[[1046,4,4,219,223],[1048,1,1,223,224],[1049,1,1,224,225],[1051,1,1,225,226],[1053,1,1,226,227],[1054,1,1,227,228],[1055,1,1,228,229],[1056,2,2,229,231],[1057,1,1,231,232],[1058,1,1,232,233],[1059,1,1,233,234],[1060,1,1,234,235]]],[45,7,7,235,242,[[1062,1,1,235,236],[1068,2,2,236,238],[1070,1,1,238,239],[1072,1,1,239,240],[1073,1,1,240,241],[1077,1,1,241,242]]],[46,4,4,242,246,[[1078,1,1,242,243],[1082,1,1,243,244],[1089,1,1,244,245],[1090,1,1,245,246]]],[47,1,1,246,247,[[1092,1,1,246,247]]],[48,5,5,247,252,[[1098,1,1,247,248],[1102,4,4,248,252]]],[49,3,3,252,255,[[1103,1,1,252,253],[1104,1,1,253,254],[1106,1,1,254,255]]],[50,5,5,255,260,[[1107,1,1,255,256],[1108,1,1,256,257],[1110,3,3,257,260]]],[51,1,1,260,261,[[1115,1,1,260,261]]],[54,1,1,261,262,[[1128,1,1,261,262]]],[55,1,1,262,263,[[1131,1,1,262,263]]],[57,12,11,263,274,[[1133,1,1,263,264],[1134,1,1,264,265],[1136,3,3,265,268],[1140,3,2,268,270],[1142,1,1,270,271],[1144,3,3,271,274]]],[58,3,2,274,276,[[1148,2,1,274,275],[1150,1,1,275,276]]],[59,3,3,276,279,[[1151,1,1,276,277],[1152,1,1,277,278],[1154,1,1,278,279]]],[60,2,2,279,281,[[1156,1,1,279,280],[1158,1,1,280,281]]],[61,1,1,281,282,[[1161,1,1,281,282]]],[63,1,1,282,283,[[1165,1,1,282,283]]],[65,18,16,283,299,[[1167,1,1,283,284],[1172,1,1,284,285],[1173,1,1,285,286],[1176,5,3,286,289],[1177,1,1,289,290],[1179,4,4,290,294],[1182,1,1,294,295],[1186,2,2,295,297],[1187,1,1,297,298],[1188,1,1,298,299]]]],[23163,23176,23214,23217,23263,23264,23329,23395,23403,23410,23418,23438,23442,23453,23471,23525,23543,23567,23602,23647,23656,23663,23665,23701,23719,23735,23736,23742,23765,23769,23833,23845,23859,23870,23885,23906,23938,23939,23940,24004,24008,24037,24102,24113,24130,24160,24173,24177,24193,24203,24246,24258,24281,24302,24309,24327,24374,24377,24404,24414,24443,24453,24503,24507,24509,24526,24540,24556,24560,24565,24566,24574,24581,24583,24585,24590,24603,24604,24646,24653,24674,24729,24760,24809,24842,24843,24846,24862,24872,24900,24980,25001,25011,25019,25040,25068,25085,25092,25125,25126,25283,25298,25341,25343,25370,25372,25388,25396,25427,25458,25474,25503,25505,25524,25525,25526,25527,25558,25559,25616,25667,25682,25686,25705,25721,25776,25788,25797,25847,25880,25946,25959,25961,25988,26002,26022,26071,26114,26115,26168,26272,26296,26297,26301,26307,26311,26338,26484,26499,26527,26534,26571,26576,26587,26594,26679,26701,26778,26798,26815,26828,26882,26938,26943,26993,26997,27043,27048,27054,27065,27078,27097,27099,27122,27137,27142,27143,27152,27158,27192,27224,27246,27254,27257,27266,27282,27285,27299,27329,27341,27343,27344,27370,27380,27381,27396,27408,27415,27429,27450,27458,27459,27507,27532,27547,27578,27583,27618,27640,27648,27656,27662,27726,27744,27749,27762,27790,27822,27861,27947,27954,27956,27958,28011,28045,28070,28148,28172,28190,28220,28232,28265,28272,28284,28308,28392,28499,28522,28563,28613,28659,28787,28820,28882,29039,29054,29091,29245,29341,29355,29357,29359,29390,29393,29444,29489,29501,29546,29550,29555,29634,29886,29924,29975,29987,30020,30022,30027,30101,30103,30146,30223,30229,30231,30328,30369,30395,30401,30460,30484,30532,30601,30665,30700,30797,30819,30867,30870,30871,30873,30920,30922,30923,30924,30970,31041,31046,31075,31085]]],["He",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26071]]],["Her",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25242]]],["Him",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30758]]],["Himself",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23362]]],["His",[12,12,[[39,7,7,0,7,[[947,1,1,0,1],[953,3,3,1,4],[955,1,1,4,5],[956,2,2,5,7]]],[41,1,1,7,8,[[973,1,1,7,8]]],[42,4,4,8,12,[[998,1,1,8,9],[1003,1,1,9,10],[1005,1,1,10,11],[1012,1,1,11,12]]]],[23772,24029,24031,24034,24154,24198,24208,24956,26100,26331,26460,26755]]],["I",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28911]]],["Jesus",[3,3,[[40,2,2,0,2,[[957,1,1,0,1],[958,1,1,1,2]]],[42,1,1,2,3,[[1003,1,1,2,3]]]],[24260,24275,26378]]],["They",[3,3,[[42,1,1,0,1,[[1007,1,1,0,1]]],[57,1,1,1,2,[[1133,1,1,1,2]]],[61,1,1,2,3,[[1162,1,1,2,3]]]],[26557,29974,30608]]],["Ye",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30404]]],["a",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]]],[25008,27269]]],["also",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24173]]],["be",[3,3,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]],[65,1,1,2,3,[[1179,1,1,2,3]]]],[25144,27817,30918]]],["cause",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29409]]],["charge",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27176]]],["company",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27464]]],["for",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24078]]],["he",[252,243,[[39,30,30,0,30,[[929,2,2,0,2],[931,1,1,2,3],[933,1,1,3,4],[936,4,4,4,8],[937,1,1,8,9],[939,1,1,9,10],[940,2,2,10,12],[941,2,2,12,14],[942,1,1,14,15],[944,2,2,15,17],[945,2,2,17,19],[946,2,2,19,21],[949,3,3,21,24],[952,1,1,24,25],[953,1,1,25,26],[954,2,2,26,28],[955,2,2,28,30]]],[40,32,31,30,61,[[957,2,2,30,32],[958,3,2,32,34],[959,1,1,34,35],[960,3,3,35,38],[961,4,4,38,42],[962,4,4,42,46],[963,1,1,46,47],[964,1,1,47,48],[965,1,1,48,49],[966,2,2,49,51],[967,3,3,51,54],[968,2,2,54,56],[969,2,2,56,58],[970,3,3,58,61]]],[41,81,77,61,138,[[973,4,4,61,65],[974,2,2,65,67],[975,1,1,67,68],[976,3,3,68,71],[977,6,6,71,77],[978,5,5,77,82],[979,3,3,82,85],[980,10,9,85,94],[981,6,5,94,99],[982,1,1,99,100],[983,6,6,100,106],[985,1,1,106,107],[986,2,2,107,109],[987,3,2,109,111],[988,1,1,111,112],[989,5,4,112,116],[990,4,4,116,120],[991,5,5,120,125],[992,1,1,125,126],[994,3,3,126,129],[995,2,2,129,131],[996,7,7,131,138]]],[42,22,21,138,159,[[998,3,3,138,141],[1000,2,2,141,143],[1002,1,1,143,144],[1003,1,1,144,145],[1004,1,1,145,146],[1005,3,2,146,148],[1008,4,4,148,152],[1010,1,1,152,153],[1014,2,2,153,155],[1015,1,1,155,156],[1016,1,1,156,157],[1017,2,2,157,159]]],[43,41,40,159,199,[[1018,1,1,159,160],[1019,2,2,160,162],[1024,6,6,162,168],[1025,1,1,168,169],[1026,3,3,169,172],[1027,2,2,172,174],[1030,1,1,174,175],[1031,2,2,175,177],[1033,1,1,177,178],[1034,1,1,178,179],[1035,1,1,179,180],[1036,1,1,180,181],[1037,1,1,181,182],[1038,3,3,182,185],[1039,2,2,185,187],[1040,2,2,187,189],[1041,2,2,189,191],[1042,4,4,191,195],[1043,2,2,195,197],[1045,3,2,197,199]]],[44,5,5,199,204,[[1048,1,1,199,200],[1049,3,3,200,203],[1053,1,1,203,204]]],[45,4,4,204,208,[[1063,1,1,204,205],[1068,1,1,205,206],[1071,1,1,206,207],[1076,1,1,207,208]]],[46,1,1,208,209,[[1087,1,1,208,209]]],[48,3,3,209,212,[[1098,1,1,209,210],[1100,1,1,210,211],[1101,1,1,211,212]]],[49,1,1,212,213,[[1105,1,1,212,213]]],[50,3,2,213,215,[[1107,3,2,213,215]]],[52,2,2,215,217,[[1117,2,2,215,217]]],[53,1,1,217,218,[[1121,1,1,217,218]]],[57,8,8,218,226,[[1133,1,1,218,219],[1134,2,2,219,221],[1136,1,1,221,222],[1137,1,1,222,223],[1139,1,1,223,224],[1141,1,1,224,225],[1145,1,1,225,226]]],[59,1,1,226,227,[[1155,1,1,226,227]]],[61,8,8,227,235,[[1159,1,1,227,228],[1160,2,2,228,230],[1161,1,1,230,231],[1162,4,4,231,235]]],[65,9,8,235,243,[[1169,1,1,235,236],[1177,1,1,236,237],[1180,1,1,237,238],[1183,2,2,238,240],[1185,2,1,240,241],[1186,1,1,241,242],[1187,1,1,242,243]]]],[23164,23165,23203,23235,23346,23368,23369,23373,23397,23470,23492,23535,23541,23543,23599,23692,23693,23705,23718,23751,23752,23836,23849,23853,23960,24025,24101,24125,24141,24148,24223,24257,24283,24285,24301,24324,24350,24361,24366,24368,24382,24399,24423,24427,24452,24454,24499,24529,24566,24605,24634,24653,24663,24667,24694,24705,24718,24720,24757,24769,24797,24901,24910,24914,24915,24977,24994,25041,25078,25093,25104,25108,25116,25119,25121,25123,25124,25147,25152,25154,25166,25181,25200,25201,25223,25246,25250,25267,25272,25282,25286,25287,25294,25299,25319,25330,25335,25343,25352,25401,25406,25422,25427,25432,25433,25458,25535,25554,25582,25602,25608,25644,25662,25663,25667,25676,25712,25723,25727,25728,25740,25742,25746,25767,25768,25780,25905,25911,25924,25944,25958,26012,26014,26016,26019,26021,26022,26042,26107,26119,26120,26160,26207,26263,26332,26411,26461,26462,26586,26598,26617,26629,26678,26786,26807,26858,26876,26920,26921,26933,26973,26983,27118,27121,27131,27137,27139,27147,27216,27219,27232,27259,27300,27301,27390,27426,27433,27516,27548,27584,27607,27642,27678,27699,27704,27726,27728,27741,27749,27771,27794,27803,27804,27820,27821,27847,27853,27905,27928,28017,28033,28035,28040,28145,28409,28500,28589,28743,28978,29243,29283,29327,29442,29482,29483,29665,29667,29738,29968,29991,29995,30024,30032,30088,30131,30246,30472,30547,30552,30575,30603,30613,30616,30618,30622,30766,30877,30943,30985,30986,31032,31041,31060]]],["her",[154,129,[[39,22,19,0,19,[[929,3,3,0,3],[933,4,3,3,6],[936,2,1,6,7],[937,3,3,7,10],[942,3,3,10,13],[943,3,2,13,15],[948,1,1,15,16],[949,1,1,16,17],[950,1,1,17,18],[954,1,1,18,19]]],[40,23,22,19,41,[[957,3,2,19,21],[961,6,6,21,27],[962,3,3,27,30],[963,2,2,30,32],[966,1,1,32,33],[968,3,3,33,36],[969,1,1,36,37],[970,3,3,37,40],[972,1,1,40,41]]],[41,37,31,41,72,[[973,12,11,41,52],[974,1,1,52,53],[976,3,2,53,55],[979,5,3,55,58],[980,7,6,58,64],[982,3,3,64,67],[985,3,2,67,69],[990,1,1,69,70],[992,2,2,70,72]]],[42,30,27,72,99,[[998,1,1,72,73],[1000,8,8,73,81],[1004,4,4,81,85],[1007,10,7,85,92],[1012,1,1,92,93],[1015,1,1,93,94],[1016,5,5,94,99]]],[43,9,7,99,106,[[1022,4,3,99,102],[1026,2,1,102,103],[1029,1,1,103,104],[1033,1,1,104,105],[1044,1,1,105,106]]],[44,3,2,106,108,[[1054,1,1,106,107],[1061,2,1,107,108]]],[45,3,2,108,110,[[1068,1,1,108,109],[1072,2,1,109,110]]],[47,1,1,110,111,[[1094,1,1,110,111]]],[65,26,18,111,129,[[1168,3,2,111,113],[1178,1,1,113,114],[1182,1,1,114,115],[1183,4,3,115,118],[1184,16,10,118,128],[1185,1,1,128,129]]]],[23163,23164,23169,23262,23265,23266,23360,23397,23401,23404,23601,23604,23608,23656,23661,23813,23828,23900,24067,24245,24246,24387,24393,24397,24398,24405,24407,24424,24430,24433,24490,24492,24599,24694,24695,24696,24745,24759,24760,24763,24884,24898,24921,24923,24928,24929,24931,24934,24938,24949,24951,24954,24995,25101,25102,25207,25208,25243,25289,25293,25297,25299,25300,25301,25403,25404,25405,25530,25531,25693,25810,25812,26099,26163,26166,26169,26172,26173,26177,26182,26183,26384,26388,26391,26392,26524,26528,26546,26548,26554,26556,26563,26747,26852,26880,26882,26883,26884,26885,27067,27068,27069,27257,27352,27501,27887,28167,28338,28500,28615,29161,30738,30739,30897,30973,30981,30982,30991,30996,30997,30999,31000,31001,31002,31004,31008,31013,31017,31025]]],["herself",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30183]]],["him",[1834,1484,[[39,298,249,0,249,[[929,2,2,0,2],[930,7,6,2,8],[931,8,6,8,14],[932,14,12,14,26],[933,5,5,26,31],[934,1,1,31,32],[935,4,4,32,36],[936,20,18,36,54],[937,11,9,54,63],[938,3,3,63,66],[939,1,1,66,67],[940,18,13,67,80],[941,9,8,80,88],[942,16,14,88,102],[943,7,7,102,109],[944,4,3,109,112],[945,15,11,112,123],[946,19,14,123,137],[947,12,11,137,148],[948,10,9,148,157],[949,14,10,157,167],[950,16,14,167,181],[951,1,1,181,182],[952,2,2,182,184],[953,10,10,184,194],[954,28,25,194,219],[955,33,24,219,243],[956,8,6,243,249]]],[40,320,231,249,480,[[957,29,20,249,269],[958,11,10,269,279],[959,23,15,279,294],[960,10,6,294,300],[961,27,21,300,321],[962,21,16,321,337],[963,16,12,337,349],[964,17,10,349,359],[965,30,20,359,379],[966,28,19,379,398],[967,12,9,398,407],[968,22,17,407,424],[969,3,3,424,427],[970,37,28,427,455],[971,29,20,455,475],[972,5,5,475,480]]],[41,382,309,480,789,[[973,12,12,480,492],[974,16,13,492,505],[975,6,6,505,511],[976,27,17,511,528],[977,17,15,528,543],[978,7,5,543,548],[979,21,16,548,564],[980,32,25,564,589],[981,26,22,589,611],[982,13,9,611,620],[983,19,14,620,634],[984,11,10,634,644],[985,6,6,644,650],[986,12,12,650,662],[987,14,11,662,673],[988,9,8,673,681],[989,9,8,681,689],[990,13,11,689,700],[991,20,17,700,717],[992,14,12,717,729],[993,3,2,729,731],[994,33,25,731,756],[995,32,24,756,780],[996,10,9,780,789]]],[42,349,282,789,1071,[[997,37,29,789,818],[998,4,4,818,822],[999,15,13,822,835],[1000,28,22,835,857],[1001,13,11,857,868],[1002,21,20,868,888],[1003,25,20,888,908],[1004,26,22,908,930],[1005,28,22,930,952],[1006,11,10,952,962],[1007,19,18,962,980],[1008,20,17,980,997],[1009,21,17,997,1014],[1010,16,9,1014,1023],[1011,1,1,1023,1024],[1012,3,3,1024,1027],[1013,2,1,1027,1028],[1014,18,14,1028,1042],[1015,16,12,1042,1054],[1016,10,8,1054,1062],[1017,15,9,1062,1071]]],[43,218,188,1071,1259,[[1018,3,3,1071,1074],[1019,3,3,1074,1077],[1020,9,8,1077,1085],[1022,6,6,1085,1091],[1023,4,4,1091,1095],[1024,22,17,1095,1112],[1025,8,8,1112,1120],[1026,21,20,1120,1140],[1027,18,15,1140,1155],[1028,4,3,1155,1158],[1029,11,10,1158,1168],[1030,6,6,1168,1174],[1031,2,2,1174,1176],[1032,1,1,1176,1177],[1033,4,3,1177,1180],[1034,9,8,1180,1188],[1035,4,4,1188,1192],[1036,6,6,1192,1198],[1037,8,7,1198,1205],[1038,11,10,1205,1215],[1039,11,8,1215,1223],[1040,17,15,1223,1238],[1041,8,5,1238,1243],[1042,13,9,1243,1252],[1043,1,1,1252,1253],[1045,8,6,1253,1259]]],[44,23,20,1259,1279,[[1046,1,1,1259,1260],[1049,3,3,1260,1263],[1050,1,1,1263,1264],[1051,3,3,1264,1267],[1053,1,1,1267,1268],[1054,1,1,1268,1269],[1055,3,3,1269,1272],[1056,6,3,1272,1275],[1057,1,1,1275,1276],[1059,1,1,1276,1277],[1060,2,2,1277,1279]]],[45,19,16,1279,1295,[[1062,2,2,1279,1281],[1063,4,4,1281,1285],[1068,2,2,1285,1287],[1069,4,3,1287,1290],[1072,1,1,1290,1291],[1076,3,2,1291,1293],[1077,3,2,1293,1295]]],[46,10,9,1295,1304,[[1078,2,2,1295,1297],[1079,1,1,1297,1298],[1082,2,2,1298,1300],[1084,2,2,1300,1302],[1085,1,1,1302,1303],[1090,2,1,1303,1304]]],[47,6,6,1304,1310,[[1091,3,3,1304,1307],[1092,2,2,1307,1309],[1093,1,1,1309,1310]]],[48,12,10,1310,1320,[[1097,5,4,1310,1314],[1098,1,1,1314,1315],[1099,2,2,1315,1317],[1100,3,2,1317,1319],[1102,1,1,1319,1320]]],[49,11,8,1320,1328,[[1103,1,1,1320,1321],[1104,8,5,1321,1326],[1105,2,2,1326,1328]]],[50,18,14,1328,1342,[[1107,7,4,1328,1332],[1108,7,6,1332,1338],[1109,3,3,1338,1341],[1110,1,1,1341,1342]]],[51,2,2,1342,1344,[[1114,1,1,1342,1343],[1115,1,1,1343,1344]]],[52,3,3,1344,1347,[[1116,1,1,1344,1345],[1117,1,1,1345,1346],[1118,1,1,1346,1347]]],[53,1,1,1347,1348,[[1119,1,1,1347,1348]]],[54,3,3,1348,1351,[[1125,1,1,1348,1349],[1126,1,1,1349,1350],[1128,1,1,1350,1351]]],[56,3,3,1351,1354,[[1132,3,3,1351,1354]]],[57,29,24,1354,1378,[[1133,2,2,1354,1356],[1134,10,5,1356,1361],[1135,1,1,1361,1362],[1136,1,1,1362,1363],[1137,3,3,1363,1366],[1139,4,4,1366,1370],[1141,1,1,1370,1371],[1142,1,1,1371,1372],[1143,3,3,1372,1375],[1144,1,1,1375,1376],[1145,2,2,1376,1378]]],[58,11,10,1378,1388,[[1146,2,2,1378,1380],[1147,4,4,1380,1384],[1149,1,1,1384,1385],[1150,4,3,1385,1388]]],[59,8,7,1388,1395,[[1151,2,1,1388,1389],[1152,2,2,1389,1391],[1153,2,2,1391,1393],[1155,2,2,1393,1395]]],[60,5,5,1395,1400,[[1156,2,2,1395,1397],[1158,3,3,1397,1400]]],[61,45,37,1400,1437,[[1159,4,3,1400,1403],[1160,12,10,1403,1413],[1161,17,12,1413,1425],[1162,6,6,1425,1431],[1163,6,6,1431,1437]]],[62,3,2,1437,1439,[[1164,3,2,1437,1439]]],[64,1,1,1439,1440,[[1166,1,1,1439,1440]]],[65,54,44,1440,1484,[[1167,6,4,1440,1444],[1168,5,4,1444,1448],[1169,4,3,1448,1451],[1172,7,4,1451,1455],[1173,2,2,1455,1457],[1174,1,1,1457,1458],[1175,1,1,1458,1459],[1176,1,1,1459,1460],[1178,2,2,1460,1462],[1179,8,6,1462,1468],[1180,2,2,1468,1470],[1182,2,2,1470,1472],[1183,1,1,1472,1473],[1185,6,6,1473,1479],[1186,4,3,1479,1482],[1188,2,2,1482,1484]]]],[23164,23168,23171,23172,23174,23177,23180,23182,23197,23198,23205,23206,23207,23208,23212,23214,23215,23216,23217,23218,23219,23220,23229,23231,23233,23234,23235,23259,23273,23274,23275,23290,23325,23326,23327,23340,23346,23347,23348,23349,23350,23352,23361,23363,23364,23365,23366,23367,23368,23370,23372,23373,23376,23379,23381,23388,23389,23393,23397,23398,23406,23407,23411,23421,23449,23450,23462,23491,23492,23493,23499,23503,23504,23505,23507,23511,23521,23535,23536,23537,23541,23549,23551,23566,23567,23575,23590,23596,23599,23600,23601,23602,23610,23612,23614,23619,23623,23625,23628,23630,23632,23633,23645,23648,23655,23656,23658,23663,23666,23673,23689,23694,23703,23705,23710,23712,23714,23716,23717,23718,23723,23725,23726,23729,23733,23742,23748,23749,23751,23752,23753,23754,23755,23756,23757,23759,23761,23764,23765,23769,23772,23775,23778,23779,23780,23782,23783,23789,23799,23810,23811,23812,23813,23814,23821,23825,23826,23840,23842,23849,23851,23857,23858,23864,23865,23867,23872,23884,23885,23887,23888,23891,23893,23894,23895,23907,23909,23914,23915,23917,23918,23933,23958,23960,24014,24018,24029,24031,24034,24036,24039,24040,24045,24052,24061,24069,24070,24071,24072,24076,24078,24079,24087,24088,24089,24101,24102,24103,24104,24106,24110,24112,24116,24117,24118,24121,24123,24125,24129,24131,24132,24140,24142,24143,24147,24148,24151,24156,24157,24158,24159,24160,24163,24164,24165,24167,24168,24171,24172,24173,24178,24183,24184,24199,24202,24204,24208,24209,24212,24220,24225,24227,24228,24233,24235,24240,24241,24242,24245,24247,24249,24251,24252,24255,24256,24257,24258,24259,24260,24263,24264,24273,24274,24275,24276,24278,24284,24285,24286,24290,24294,24295,24296,24297,24298,24299,24300,24301,24302,24307,24309,24319,24320,24322,24324,24333,24348,24359,24361,24364,24366,24367,24368,24370,24372,24373,24374,24376,24381,24382,24383,24384,24385,24386,24387,24388,24394,24395,24397,24401,24404,24408,24409,24410,24421,24424,24426,24427,24434,24437,24440,24442,24444,24456,24457,24461,24463,24464,24468,24475,24478,24480,24481,24488,24489,24491,24495,24496,24497,24504,24511,24519,24522,24523,24525,24529,24530,24532,24538,24545,24549,24551,24553,24556,24557,24558,24559,24560,24561,24563,24564,24565,24566,24569,24570,24574,24576,24577,24580,24589,24590,24598,24601,24605,24606,24608,24609,24616,24620,24621,24622,24623,24625,24627,24636,24637,24639,24640,24642,24643,24644,24647,24658,24661,24667,24668,24671,24676,24679,24680,24681,24685,24686,24687,24689,24690,24691,24699,24701,24702,24705,24706,24707,24710,24718,24719,24720,24755,24764,24765,24766,24767,24773,24775,24783,24784,24789,24794,24797,24798,24799,24800,24804,24805,24807,24808,24810,24811,24812,24815,24818,24819,24821,24823,24826,24828,24829,24830,24836,24839,24840,24844,24845,24846,24848,24849,24850,24851,24853,24855,24858,24865,24867,24870,24872,24874,24879,24880,24883,24887,24904,24905,24906,24910,24912,24925,24943,24952,24955,24959,24967,24968,24980,24995,24998,24999,25000,25006,25011,25013,25017,25018,25019,25020,25021,25032,25035,25037,25039,25044,25047,25066,25067,25068,25069,25071,25072,25075,25076,25077,25080,25083,25092,25098,25100,25101,25103,25105,25108,25110,25112,25116,25118,25119,25120,25121,25122,25125,25127,25134,25135,25136,25140,25149,25150,25153,25163,25165,25197,25198,25199,25201,25204,25206,25210,25212,25213,25215,25225,25231,25234,25235,25237,25238,25246,25248,25249,25254,25263,25264,25265,25269,25270,25272,25273,25274,25275,25276,25277,25282,25283,25284,25285,25286,25287,25290,25292,25294,25295,25308,25310,25311,25312,25313,25319,25331,25333,25334,25336,25338,25340,25346,25348,25350,25351,25353,25354,25358,25359,25361,25363,25389,25391,25393,25394,25396,25397,25398,25400,25401,25406,25410,25411,25413,25416,25417,25418,25421,25427,25432,25442,25444,25450,25459,25467,25469,25472,25473,25479,25495,25500,25505,25507,25517,25519,25526,25533,25535,25541,25549,25554,25555,25557,25561,25562,25565,25568,25569,25571,25578,25582,25584,25589,25603,25604,25606,25608,25609,25610,25615,25616,25618,25619,25621,25622,25626,25627,25634,25647,25649,25651,25653,25654,25655,25659,25660,25663,25670,25688,25691,25695,25703,25706,25707,25710,25725,25727,25728,25730,25731,25735,25736,25737,25740,25745,25748,25753,25755,25756,25757,25761,25762,25765,25766,25770,25778,25779,25781,25784,25789,25793,25794,25798,25799,25800,25806,25817,25819,25823,25833,25864,25866,25868,25869,25870,25873,25874,25878,25897,25903,25907,25911,25912,25913,25915,25916,25918,25920,25921,25922,25923,25925,25927,25928,25929,25930,25936,25937,25938,25942,25943,25944,25945,25946,25949,25950,25951,25956,25957,25961,25962,25967,25968,25971,25973,25974,25975,25978,25984,25990,26007,26009,26010,26011,26015,26020,26022,26033,26043,26047,26048,26051,26054,26055,26056,26059,26063,26065,26066,26069,26073,26075,26076,26077,26081,26082,26083,26084,26085,26086,26087,26089,26090,26091,26092,26093,26094,26095,26098,26105,26106,26113,26122,26123,26124,26129,26130,26135,26136,26137,26138,26146,26147,26149,26156,26165,26166,26167,26170,26171,26175,26179,26180,26181,26186,26187,26189,26195,26196,26201,26203,26204,26205,26206,26207,26208,26209,26216,26217,26218,26222,26224,26225,26226,26228,26230,26233,26237,26259,26262,26263,26264,26265,26272,26278,26282,26285,26287,26291,26297,26298,26301,26313,26321,26322,26323,26325,26328,26329,26331,26333,26339,26340,26341,26346,26354,26357,26358,26359,26360,26363,26367,26371,26372,26373,26376,26379,26380,26383,26384,26385,26387,26388,26394,26400,26401,26406,26407,26410,26411,26412,26414,26420,26422,26425,26429,26433,26436,26438,26440,26442,26443,26447,26448,26449,26450,26452,26453,26455,26457,26458,26461,26463,26464,26466,26468,26474,26475,26476,26477,26478,26480,26485,26486,26501,26505,26512,26514,26519,26520,26522,26523,26526,26531,26533,26538,26539,26543,26547,26550,26552,26553,26555,26557,26559,26562,26567,26568,26571,26580,26582,26584,26591,26593,26596,26597,26598,26599,26601,26606,26609,26614,26617,26621,26622,26627,26628,26632,26636,26637,26638,26639,26640,26641,26646,26655,26657,26658,26659,26661,26662,26666,26667,26668,26673,26674,26675,26676,26677,26685,26689,26690,26691,26704,26733,26745,26755,26761,26787,26790,26797,26805,26808,26809,26810,26811,26815,26816,26818,26819,26822,26823,26827,26829,26831,26832,26834,26835,26837,26840,26841,26843,26857,26861,26869,26873,26880,26882,26883,26892,26895,26896,26901,26903,26910,26913,26914,26915,26917,26920,26921,26929,26932,26934,26971,26974,26979,27000,27003,27005,27006,27009,27012,27018,27022,27076,27080,27091,27095,27096,27099,27112,27113,27115,27116,27119,27120,27121,27124,27125,27126,27137,27146,27147,27149,27151,27153,27154,27156,27163,27170,27173,27178,27187,27196,27206,27207,27211,27214,27215,27218,27219,27222,27223,27226,27227,27228,27231,27232,27233,27239,27240,27241,27242,27243,27245,27250,27251,27254,27255,27262,27263,27270,27272,27274,27278,27280,27282,27284,27286,27294,27297,27300,27302,27307,27309,27320,27333,27341,27342,27345,27346,27347,27353,27354,27356,27357,27360,27371,27373,27384,27391,27392,27393,27423,27434,27463,27486,27492,27515,27538,27539,27541,27542,27550,27551,27554,27557,27569,27575,27583,27584,27587,27589,27607,27615,27616,27623,27629,27630,27636,27642,27644,27663,27664,27672,27676,27684,27691,27693,27694,27695,27697,27698,27700,27717,27722,27724,27728,27729,27731,27733,27734,27736,27737,27743,27745,27749,27751,27752,27754,27755,27761,27762,27764,27766,27767,27769,27777,27779,27792,27793,27795,27798,27799,27801,27811,27815,27817,27818,27821,27823,27849,27905,27907,27915,27920,27922,27929,27950,28025,28044,28045,28056,28072,28076,28077,28148,28188,28197,28199,28200,28213,28244,28245,28265,28283,28314,28315,28368,28393,28403,28405,28408,28410,28499,28500,28530,28533,28537,28614,28745,28746,28787,28788,28819,28820,28832,28886,28898,28930,28931,28950,29047,29058,29073,29075,29092,29094,29108,29210,29216,29226,29228,29247,29263,29272,29287,29293,29346,29390,29400,29413,29418,29419,29420,29430,29431,29481,29482,29484,29485,29500,29501,29503,29504,29506,29507,29521,29527,29534,29552,29617,29631,29661,29662,29692,29712,29827,29853,29884,29950,29953,29955,29968,29969,29983,29984,29985,29987,29990,29997,30027,30035,30037,30039,30065,30074,30085,30089,30133,30171,30177,30178,30191,30217,30254,30256,30271,30278,30296,30298,30307,30316,30354,30368,30369,30373,30395,30405,30413,30430,30446,30472,30476,30496,30497,30536,30537,30540,30545,30546,30550,30553,30554,30555,30556,30558,30560,30565,30577,30578,30579,30580,30581,30582,30584,30585,30588,30591,30594,30596,30598,30601,30603,30612,30616,30618,30619,30622,30624,30625,30634,30638,30639,30640,30642,30655,30656,30687,30698,30703,30704,30714,30724,30734,30743,30745,30758,30766,30767,30795,30797,30798,30801,30824,30825,30830,30841,30870,30900,30902,30910,30912,30913,30915,30916,30920,30927,30933,30962,30963,30989,31022,31024,31027,31028,31031,31037,31040,31041,31044,31083,31098]]],["himself",[28,28,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,3,3,1,4,[[962,1,1,1,2],[968,2,2,2,4]]],[41,8,8,4,12,[[975,1,1,4,5],[978,1,1,5,6],[982,1,1,6,7],[992,1,1,7,8],[995,2,2,8,10],[996,2,2,10,12]]],[42,8,8,12,20,[[1000,4,4,12,16],[1001,2,2,16,18],[1002,1,1,18,19],[1012,1,1,19,20]]],[43,2,2,20,22,[[1025,1,1,20,21],[1037,1,1,21,22]]],[46,1,1,22,23,[[1088,1,1,22,23]]],[48,1,1,23,24,[[1098,1,1,23,24]]],[51,2,2,24,26,[[1113,1,1,24,25],[1114,1,1,25,26]]],[52,2,2,26,28,[[1117,1,1,26,27],[1118,1,1,27,28]]]],[24186,24424,24709,24710,25048,25149,25364,25821,25942,25986,26006,26027,26158,26168,26200,26209,26230,26247,26272,26753,27189,27639,29003,29249,29601,29619,29677,29694]]],["his",[518,468,[[39,114,104,0,104,[[929,6,6,0,6],[930,7,7,6,13],[931,4,4,13,17],[932,3,3,17,20],[933,2,2,20,22],[934,1,1,22,23],[935,2,2,23,25],[936,6,6,25,31],[937,5,5,31,36],[938,4,2,36,38],[939,1,1,38,39],[940,9,7,39,46],[941,8,7,46,53],[942,5,5,53,58],[943,3,3,58,61],[944,1,1,61,62],[945,5,4,62,66],[946,9,7,66,73],[947,1,1,73,74],[949,3,3,74,77],[950,4,4,77,81],[952,6,6,81,87],[953,1,1,87,88],[954,6,6,88,94],[955,9,7,94,101],[956,3,3,101,104]]],[40,66,59,104,163,[[957,5,5,104,109],[958,4,3,109,112],[959,4,3,112,115],[961,4,4,115,119],[962,10,9,119,128],[963,8,6,128,134],[964,7,6,134,140],[965,4,4,140,144],[966,3,3,144,147],[967,2,2,147,149],[968,3,2,149,151],[969,1,1,151,152],[970,5,5,152,157],[971,5,5,157,162],[972,1,1,162,163]]],[41,102,94,163,257,[[973,21,20,163,183],[974,9,9,183,192],[975,4,4,192,196],[976,4,3,196,199],[977,1,1,199,200],[978,7,7,200,207],[979,6,4,207,211],[980,4,4,211,215],[981,7,6,215,221],[982,2,2,221,223],[983,7,6,223,229],[984,2,2,229,231],[985,1,1,231,232],[987,4,3,232,235],[988,4,4,235,239],[989,3,3,239,242],[991,1,1,242,243],[992,5,4,243,247],[994,4,4,247,251],[995,3,3,251,254],[996,3,3,254,257]]],[42,102,92,257,349,[[997,4,4,257,261],[998,8,6,261,267],[999,6,6,267,273],[1000,9,8,273,281],[1001,6,5,281,286],[1002,10,9,286,295],[1003,5,5,295,300],[1004,2,2,300,302],[1005,9,8,302,310],[1006,3,3,310,313],[1007,6,6,313,319],[1008,5,5,319,324],[1009,3,3,324,327],[1011,2,2,327,329],[1012,1,1,329,330],[1014,7,5,330,335],[1015,8,7,335,342],[1016,5,4,342,346],[1017,3,3,346,349]]],[43,49,42,349,391,[[1018,6,5,349,354],[1019,6,4,354,358],[1020,4,3,358,361],[1021,1,1,361,362],[1022,5,5,362,367],[1023,1,1,367,368],[1024,6,6,368,374],[1025,6,3,374,377],[1026,1,1,377,378],[1027,1,1,378,379],[1028,1,1,379,380],[1029,2,2,380,382],[1030,2,2,382,384],[1033,1,1,384,385],[1036,2,2,385,387],[1037,2,2,387,389],[1039,1,1,389,390],[1041,1,1,390,391]]],[44,3,3,391,394,[[1047,1,1,391,392],[1048,1,1,392,393],[1054,1,1,393,394]]],[46,9,9,394,403,[[1079,1,1,394,395],[1080,1,1,395,396],[1084,3,3,396,399],[1086,2,2,399,401],[1088,2,2,401,403]]],[47,1,1,403,404,[[1093,1,1,403,404]]],[48,18,13,404,417,[[1097,10,7,404,411],[1098,1,1,411,412],[1099,3,3,412,415],[1101,3,1,415,416],[1102,1,1,416,417]]],[49,4,2,417,419,[[1105,4,2,417,419]]],[50,8,8,419,427,[[1107,6,6,419,425],[1109,1,1,425,426],[1110,1,1,426,427]]],[51,3,3,427,430,[[1111,1,1,427,428],[1112,1,1,428,429],[1113,1,1,429,430]]],[52,1,1,430,431,[[1116,1,1,430,431]]],[54,3,3,431,434,[[1125,1,1,431,432],[1128,2,2,432,434]]],[57,16,16,434,450,[[1133,1,1,434,435],[1134,1,1,435,436],[1135,4,4,436,440],[1136,3,3,440,443],[1138,1,1,443,444],[1142,1,1,444,445],[1143,2,2,445,447],[1144,1,1,447,448],[1145,2,2,448,450]]],[58,3,3,450,453,[[1146,1,1,450,451],[1147,1,1,451,452],[1150,1,1,452,453]]],[59,5,5,453,458,[[1152,3,3,453,456],[1153,1,1,456,457],[1154,1,1,457,458]]],[60,3,3,458,461,[[1156,1,1,458,459],[1158,2,2,459,461]]],[61,1,1,461,462,[[1159,1,1,461,462]]],[63,1,1,462,463,[[1165,1,1,462,463]]],[65,6,5,463,468,[[1172,1,1,463,464],[1186,2,2,464,466],[1188,3,2,466,468]]]],[23146,23155,23162,23165,23167,23169,23171,23180,23182,23183,23189,23190,23191,23195,23196,23199,23204,23227,23230,23233,23235,23269,23315,23325,23344,23348,23358,23359,23366,23368,23370,23389,23390,23398,23399,23400,23419,23442,23479,23490,23508,23510,23515,23518,23522,23535,23558,23564,23570,23575,23580,23594,23595,23600,23608,23609,23612,23633,23645,23656,23666,23677,23701,23702,23710,23727,23733,23752,23755,23756,23758,23759,23761,23787,23861,23864,23871,23878,23896,23905,23917,23958,23988,23989,24002,24003,24008,24049,24061,24062,24105,24106,24119,24121,24148,24158,24161,24164,24166,24182,24193,24198,24202,24204,24218,24231,24234,24237,24243,24275,24276,24283,24293,24315,24319,24386,24391,24392,24395,24408,24409,24410,24421,24434,24435,24436,24442,24463,24465,24480,24482,24488,24496,24498,24504,24523,24525,24526,24527,24534,24541,24559,24566,24580,24598,24612,24634,24654,24658,24692,24710,24718,24757,24766,24770,24801,24819,24843,24847,24850,24852,24853,24880,24898,24906,24907,24916,24917,24922,24924,24925,24926,24942,24943,24948,24952,24953,24955,24957,24960,24969,24970,24973,24978,24994,25006,25007,25014,25016,25020,25021,25024,25026,25029,25042,25044,25079,25085,25095,25137,25147,25156,25160,25163,25166,25186,25191,25198,25206,25210,25233,25254,25264,25267,25289,25330,25332,25333,25343,25354,25355,25397,25402,25406,25413,25423,25426,25427,25459,25502,25506,25535,25608,25610,25613,25621,25640,25641,25643,25653,25667,25682,25745,25799,25805,25807,25823,25903,25908,25914,25915,25969,25984,25990,25999,26014,26038,26056,26058,26060,26079,26097,26106,26107,26112,26117,26118,26140,26141,26142,26152,26153,26155,26158,26164,26168,26183,26190,26203,26207,26209,26219,26238,26245,26247,26248,26259,26265,26273,26279,26281,26310,26317,26318,26323,26333,26338,26345,26358,26366,26401,26436,26442,26443,26454,26461,26462,26463,26467,26471,26484,26485,26492,26525,26535,26536,26555,26567,26577,26583,26584,26596,26621,26630,26631,26633,26653,26709,26714,26743,26786,26787,26795,26804,26810,26827,26848,26850,26854,26858,26859,26860,26874,26892,26893,26898,26900,26918,26922,26926,26937,26941,26943,26945,26978,26979,26980,26990,27003,27012,27014,27048,27061,27066,27069,27091,27100,27116,27120,27121,27122,27126,27139,27141,27177,27208,27209,27234,27302,27320,27344,27352,27386,27393,27516,27597,27616,27636,27658,27719,27792,27968,28017,28174,28835,28848,28923,28929,28931,28965,28971,29004,29022,29118,29213,29218,29220,29224,29225,29228,29229,29239,29256,29257,29258,29334,29347,29431,29442,29474,29476,29479,29485,29491,29494,29526,29557,29570,29589,29603,29658,29817,29878,29884,29966,29985,29997,30000,30002,30010,30015,30021,30024,30054,30146,30176,30177,30222,30254,30256,30289,30315,30374,30408,30420,30421,30436,30459,30482,30526,30535,30547,30668,30801,31042,31045,31084,31099]]],["house",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[29998]]],["it",[152,138,[[39,36,33,0,33,[[933,1,1,0,1],[935,2,2,1,3],[938,5,4,3,7],[940,4,4,7,11],[941,2,2,11,13],[942,1,1,13,14],[944,4,3,14,17],[946,1,1,17,18],[949,5,4,18,22],[950,1,1,22,23],[951,3,3,23,26],[954,4,4,26,30],[955,2,2,30,32],[956,1,1,32,33]]],[40,17,15,33,48,[[960,5,5,33,38],[962,3,2,38,40],[964,2,1,40,41],[965,1,1,41,42],[967,3,3,42,45],[970,3,3,45,48]]],[41,27,24,48,72,[[976,1,1,48,49],[978,1,1,49,50],[980,4,4,50,54],[981,3,2,54,56],[982,1,1,56,57],[983,4,4,57,61],[985,3,3,61,64],[986,2,2,64,66],[987,1,1,66,67],[988,1,1,67,68],[989,2,1,68,69],[991,2,2,69,71],[995,2,1,71,72]]],[42,18,15,72,87,[[997,1,1,72,73],[1002,1,1,73,74],[1003,1,1,74,75],[1004,1,1,75,76],[1006,3,2,76,78],[1007,1,1,78,79],[1008,3,2,79,81],[1011,1,1,81,82],[1014,2,2,82,84],[1015,3,2,84,86],[1017,1,1,86,87]]],[43,8,8,87,95,[[1019,1,1,87,88],[1022,1,1,88,89],[1024,2,2,89,91],[1030,1,1,91,92],[1038,1,1,92,93],[1044,2,2,93,95]]],[44,4,4,95,99,[[1051,1,1,95,96],[1052,3,3,96,99]]],[45,1,1,99,100,[[1076,1,1,99,100]]],[47,2,2,100,102,[[1091,2,2,100,102]]],[48,4,4,102,106,[[1101,4,4,102,106]]],[49,1,1,106,107,[[1105,1,1,106,107]]],[50,3,2,107,109,[[1108,2,1,107,108],[1110,1,1,108,109]]],[51,1,1,109,110,[[1114,1,1,109,110]]],[53,1,1,110,111,[[1119,1,1,110,111]]],[57,4,4,111,115,[[1138,1,1,111,112],[1139,1,1,112,113],[1141,1,1,113,114],[1143,1,1,114,115]]],[58,2,2,115,117,[[1146,1,1,115,116],[1150,1,1,116,117]]],[59,1,1,117,118,[[1153,1,1,117,118]]],[61,1,1,118,119,[[1160,1,1,118,119]]],[62,1,1,119,120,[[1164,1,1,119,120]]],[65,20,18,120,138,[[1169,1,1,120,121],[1174,1,1,121,122],[1175,1,1,122,123],[1176,1,1,123,124],[1177,1,1,124,125],[1185,1,1,125,126],[1186,2,2,126,128],[1187,10,8,128,136],[1188,2,2,136,138]]]],[23249,23330,23343,23428,23429,23430,23456,23500,23528,23530,23531,23559,23585,23609,23676,23690,23697,23740,23839,23845,23859,23860,23911,23936,23938,23939,24081,24083,24096,24115,24188,24189,24197,24330,24339,24353,24355,24360,24435,24436,24535,24588,24642,24654,24657,24775,24777,24779,25069,25194,25250,25252,25261,25266,25325,25346,25369,25419,25433,25434,25437,25526,25536,25537,25571,25588,25592,25636,25684,25772,25777,25988,26049,26317,26335,26425,26498,26499,26561,26604,26605,26701,26795,26796,26849,26865,26904,26973,27098,27121,27160,27379,27667,27863,27869,28080,28102,28108,28111,28756,29069,29070,29329,29330,29331,29333,29442,29508,29559,29613,29704,30051,30075,30110,30176,30277,30361,30435,30571,30651,30754,30832,30846,30871,30874,31032,31049,31051,31069,31071,31075,31076,31077,31078,31079,31080,31082,31083]]],["itself",[5,5,[[42,1,1,0,1,[[1017,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[57,1,1,3,4,[[1141,1,1,3,4]]],[63,1,1,4,5,[[1165,1,1,4,5]]]],[26923,28132,28614,30129,30670]]],["man",[2,2,[[43,1,1,0,1,[[1020,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[27008,30145]]],["myself",[5,5,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]],[46,2,2,2,4,[[1087,1,1,2,3],[1089,1,1,3,4]]],[49,1,1,4,5,[[1104,1,1,4,5]]]],[26030,27785,28972,29035,29415]]],["no",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27121]]],["other",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25585]]],["ourselves",[3,3,[[41,1,1,0,1,[[994,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]]],[25935,26198,29653]]],["own",[5,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,3,3,1,4,[[974,1,1,1,2],[991,1,1,2,3],[994,1,1,3,4]]],[42,1,1,4,5,[[1000,1,1,4,5]]]],[24160,25008,25754,25935,26197]]],["place",[3,3,[[43,1,1,0,1,[[1019,1,1,0,1]]],[45,2,2,1,3,[[1072,1,1,1,2],[1075,1,1,2,3]]]],[26950,28620,28701]]],["said",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24429]]],["same",[73,70,[[39,5,5,0,5,[[931,1,1,0,1],[933,1,1,1,2],[940,1,1,2,3],[953,1,1,3,4],[954,1,1,4,5]]],[40,3,3,5,8,[[966,1,1,5,6],[970,2,2,6,8]]],[41,13,13,8,21,[[974,1,1,8,9],[978,2,2,9,11],[979,1,1,11,12],[982,2,2,12,14],[984,1,1,14,15],[985,1,1,15,16],[992,1,1,16,17],[995,2,2,17,19],[996,2,2,19,21]]],[42,1,1,21,22,[[1001,1,1,21,22]]],[43,3,3,22,25,[[1033,1,1,22,23],[1039,1,1,23,24],[1041,1,1,24,25]]],[44,7,7,25,32,[[1046,1,1,25,26],[1047,1,1,26,27],[1054,1,1,27,28],[1055,1,1,28,29],[1057,2,2,29,31],[1058,1,1,31,32]]],[45,11,9,32,41,[[1062,2,1,32,33],[1071,2,2,33,35],[1073,6,5,35,40],[1076,1,1,40,41]]],[46,9,8,41,49,[[1078,1,1,41,42],[1079,1,1,42,43],[1080,2,2,43,45],[1081,1,1,45,46],[1085,2,2,46,48],[1089,2,1,48,49]]],[48,1,1,49,50,[[1100,1,1,49,50]]],[49,3,3,50,53,[[1103,1,1,50,51],[1104,1,1,51,52],[1105,1,1,52,53]]],[50,1,1,53,54,[[1110,1,1,53,54]]],[57,7,7,54,61,[[1133,1,1,54,55],[1134,1,1,55,56],[1136,1,1,56,57],[1138,1,1,57,58],[1142,1,1,58,59],[1143,1,1,59,60],[1145,1,1,60,61]]],[58,2,2,61,63,[[1148,2,2,61,63]]],[59,4,4,63,67,[[1154,3,3,63,66],[1155,1,1,66,67]]],[60,1,1,67,68,[[1158,1,1,67,68]]],[61,1,1,68,69,[[1160,1,1,68,69]]],[65,1,1,69,70,[[1180,1,1,69,70]]]],[23196,23280,23539,24024,24102,24598,24793,24798,24981,25179,25184,25216,25370,25373,25471,25549,25798,25947,25975,26004,26024,26246,27501,27717,27789,27962,27965,28176,28200,28249,28261,28269,28373,28570,28571,28638,28639,28640,28642,28643,28757,28806,28827,28855,28859,28872,28948,28951,29040,29282,29391,29393,29437,29544,29975,29991,30025,30055,30144,30181,30249,30329,30330,30447,30450,30456,30474,30529,30577,30936]]],["selfsame",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28645]]],["she",[7,7,[[41,3,3,0,3,[[973,2,2,0,2],[974,1,1,2,3]]],[43,1,1,3,4,[[1026,1,1,3,4]]],[44,1,1,4,5,[[1052,1,1,4,5]]],[45,1,1,5,6,[[1068,1,1,5,6]]],[65,1,1,6,7,[[1184,1,1,6,7]]]],[24929,24950,24979,27253,28094,28499,30999]]],["that",[4,4,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,2,2,1,3,[[982,1,1,1,2],[985,1,1,2,3]]],[42,1,1,3,4,[[1007,1,1,3,4]]]],[23740,25384,25519,26540]]],["the",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26246]]],["thee",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23955,25552]]],["their",[134,126,[[39,29,28,0,28,[[929,1,1,0,1],[932,2,2,1,3],[934,2,2,3,5],[935,2,2,5,7],[936,1,1,7,8],[937,5,5,8,13],[939,1,1,13,14],[940,2,2,14,16],[941,2,2,16,18],[942,1,1,18,19],[943,1,1,19,20],[946,2,2,20,22],[948,2,1,22,23],[949,1,1,23,24],[950,2,2,24,26],[951,1,1,26,27],[954,1,1,27,28]]],[40,19,19,28,47,[[957,2,2,28,30],[958,1,1,30,31],[959,1,1,31,32],[960,1,1,32,33],[961,1,1,33,34],[962,2,2,34,36],[963,1,1,36,37],[965,3,3,37,40],[966,1,1,40,41],[968,2,2,41,43],[970,3,3,43,46],[972,1,1,46,47]]],[41,24,24,47,71,[[973,3,3,47,50],[976,2,2,50,52],[977,4,4,52,56],[978,3,3,56,59],[980,2,2,59,61],[981,1,1,61,62],[983,2,2,62,64],[985,1,1,64,65],[993,1,1,65,66],[995,1,1,66,67],[996,4,4,67,71]]],[42,10,9,71,80,[[999,1,1,71,72],[1000,1,1,72,73],[1006,1,1,73,74],[1007,1,1,74,75],[1008,2,1,75,76],[1009,1,1,76,77],[1011,1,1,77,78],[1013,1,1,78,79],[1015,1,1,79,80]]],[43,19,19,80,99,[[1018,3,3,80,83],[1021,2,2,83,85],[1022,1,1,85,86],[1023,1,1,86,87],[1024,2,2,87,89],[1026,1,1,89,90],[1029,1,1,90,91],[1030,2,2,91,93],[1031,3,3,93,96],[1032,1,1,96,97],[1033,1,1,97,98],[1043,1,1,98,99]]],[46,9,7,99,106,[[1080,2,2,99,101],[1082,1,1,101,102],[1083,1,1,102,103],[1085,3,1,103,104],[1086,1,1,104,105],[1088,1,1,105,106]]],[47,1,1,106,107,[[1092,1,1,106,107]]],[48,1,1,107,108,[[1100,1,1,107,108]]],[49,1,1,108,109,[[1105,1,1,108,109]]],[50,1,1,109,110,[[1108,1,1,109,110]]],[54,2,2,110,112,[[1126,1,1,110,111],[1127,1,1,111,112]]],[55,2,2,112,114,[[1129,2,2,112,114]]],[57,10,6,114,120,[[1140,6,3,114,117],[1142,3,2,117,119],[1143,1,1,119,120]]],[58,2,2,120,122,[[1146,1,1,120,121],[1148,1,1,121,122]]],[59,2,2,122,124,[[1153,2,2,122,124]]],[60,2,2,124,126,[[1157,2,2,124,126]]]],[23165,23230,23232,23296,23297,23332,23336,23379,23381,23383,23408,23409,23414,23460,23498,23514,23593,23597,23611,23641,23737,23762,23826,23867,23879,23890,23921,24097,24238,24254,24265,24293,24338,24381,24413,24459,24469,24582,24584,24586,24630,24688,24717,24794,24810,24813,24887,24909,24944,24970,25078,25092,25113,25127,25129,25137,25154,25169,25172,25248,25257,25348,25422,25453,25519,25830,25960,26002,26007,26022,26036,26139,26194,26520,26542,26620,26642,26724,26779,26856,26932,26942,26949,27027,27051,27077,27102,27135,27150,27240,27357,27389,27395,27417,27419,27427,27451,27505,27841,28855,28856,28896,28914,28934,28970,29004,29094,29290,29440,29496,29844,29862,29904,29907,30101,30102,30104,30149,30150,30188,30293,30322,30436,30438,30502,30503]]],["theirs",[2,2,[[39,2,2,0,2,[[933,2,2,0,2]]]],[23237,23244]]],["them",[1079,969,[[39,195,184,0,184,[[930,3,3,0,3],[931,1,1,3,4],[932,4,4,4,8],[933,1,1,8,9],[934,3,3,9,12],[935,8,8,12,20],[936,5,5,20,25],[937,9,7,25,32],[938,5,5,32,37],[939,2,2,37,39],[940,6,6,39,45],[941,23,22,45,67],[942,6,5,67,72],[943,4,4,72,76],[944,6,6,76,82],[945,12,11,82,93],[946,5,5,93,98],[947,11,9,98,107],[948,13,11,107,118],[949,17,16,118,134],[950,7,7,134,141],[951,5,4,141,145],[952,3,3,145,148],[953,8,8,148,156],[954,13,13,156,169],[955,9,9,169,178],[956,6,6,178,184]]],[40,169,148,184,332,[[957,6,6,184,190],[958,9,8,190,198],[959,7,6,198,204],[960,12,11,204,215],[961,5,5,215,220],[962,23,15,220,235],[963,6,5,235,240],[964,12,12,240,252],[965,15,13,252,265],[966,21,15,265,280],[967,7,7,280,287],[968,13,12,287,299],[969,2,2,299,301],[970,18,18,301,319],[971,8,8,319,327],[972,5,5,327,332]]],[41,227,204,332,536,[[973,3,2,332,334],[974,14,12,334,346],[975,3,3,346,349],[976,14,12,349,361],[977,12,11,361,372],[978,11,11,372,383],[979,3,3,383,386],[980,9,8,386,394],[981,22,19,394,413],[982,5,5,413,418],[983,10,9,418,427],[984,6,5,427,432],[985,4,4,432,436],[986,4,4,436,440],[987,6,5,440,445],[988,4,4,445,449],[989,4,4,449,453],[990,10,8,453,461],[991,7,6,461,467],[992,10,10,467,477],[993,3,3,477,480],[994,25,22,480,502],[995,10,10,502,512],[996,28,24,512,536]]],[42,153,137,536,673,[[997,5,4,536,540],[998,6,5,540,545],[999,1,1,545,546],[1000,4,4,546,550],[1001,4,4,550,554],[1002,13,12,554,566],[1003,10,9,566,575],[1004,14,14,575,589],[1005,7,7,589,596],[1006,13,11,596,607],[1007,9,7,607,614],[1008,5,5,614,619],[1009,3,3,619,622],[1010,1,1,622,623],[1011,3,3,623,626],[1012,3,3,626,629],[1013,19,12,629,641],[1014,11,10,641,651],[1015,5,5,651,656],[1016,11,11,656,667],[1017,6,6,667,673]]],[43,186,163,673,836,[[1018,4,4,673,677],[1019,8,7,677,684],[1020,4,3,684,687],[1021,17,16,687,703],[1022,12,10,703,713],[1023,1,1,713,714],[1024,4,4,714,718],[1025,6,6,718,724],[1026,6,5,724,729],[1027,9,7,729,736],[1028,8,8,736,744],[1029,4,3,744,747],[1030,12,11,747,758],[1031,5,4,758,762],[1032,11,9,762,771],[1033,15,14,771,785],[1034,9,8,785,793],[1035,6,6,793,799],[1036,12,8,799,807],[1037,6,6,807,813],[1038,8,6,813,819],[1039,2,2,819,821],[1040,5,4,821,825],[1041,1,1,825,826],[1042,2,2,826,828],[1043,3,2,828,830],[1044,2,2,830,832],[1045,4,4,832,836]]],[44,16,15,836,851,[[1046,2,1,836,837],[1049,1,1,837,838],[1054,1,1,838,839],[1055,1,1,839,840],[1056,6,6,840,846],[1060,2,2,846,848],[1061,3,3,848,851]]],[45,10,10,851,861,[[1062,1,1,851,852],[1068,1,1,852,853],[1071,5,5,853,858],[1073,1,1,858,859],[1075,2,2,859,861]]],[46,9,9,861,870,[[1079,1,1,861,862],[1081,1,1,862,863],[1082,2,2,863,865],[1083,2,2,865,867],[1085,2,2,867,869],[1086,1,1,869,870]]],[47,6,5,870,875,[[1092,1,1,870,871],[1093,3,2,871,873],[1094,1,1,873,874],[1096,1,1,874,875]]],[48,5,5,875,880,[[1098,1,1,875,876],[1100,1,1,876,877],[1101,2,2,877,879],[1102,1,1,879,880]]],[49,1,1,880,881,[[1103,1,1,880,881]]],[50,3,3,881,884,[[1108,1,1,881,882],[1109,2,2,882,884]]],[51,4,4,884,888,[[1112,1,1,884,885],[1114,1,1,885,886],[1115,2,2,886,888]]],[52,1,1,888,889,[[1117,1,1,888,889]]],[53,3,3,889,892,[[1119,1,1,889,890],[1122,1,1,890,891],[1123,1,1,891,892]]],[54,1,1,892,893,[[1126,1,1,892,893]]],[55,2,2,893,895,[[1129,1,1,893,894],[1131,1,1,894,895]]],[57,14,11,895,906,[[1134,1,1,895,896],[1138,1,1,896,897],[1139,2,2,897,899],[1140,5,3,899,902],[1142,2,1,902,903],[1143,3,3,903,906]]],[58,3,2,906,908,[[1147,2,1,906,907],[1150,1,1,907,908]]],[59,1,1,908,909,[[1151,1,1,908,909]]],[60,9,8,909,917,[[1157,8,7,909,916],[1158,1,1,916,917]]],[61,2,2,917,919,[[1162,2,2,917,919]]],[64,3,3,919,922,[[1166,3,3,919,922]]],[65,56,47,922,969,[[1168,3,3,922,925],[1169,1,1,925,926],[1171,2,2,926,928],[1172,2,2,928,930],[1173,4,3,930,933],[1174,2,2,933,935],[1175,9,8,935,943],[1177,11,6,943,949],[1178,3,3,949,952],[1179,1,1,952,953],[1180,2,2,953,955],[1181,1,1,955,956],[1182,2,2,956,958],[1183,1,1,958,959],[1184,1,1,959,960],[1185,2,2,960,962],[1186,6,5,962,967],[1187,3,2,967,969]]]],[23173,23177,23178,23199,23217,23228,23230,23233,23236,23283,23290,23308,23322,23328,23332,23336,23339,23340,23342,23345,23349,23360,23371,23375,23377,23391,23394,23397,23403,23407,23409,23415,23418,23422,23435,23443,23446,23463,23484,23492,23500,23504,23505,23514,23528,23542,23546,23549,23550,23552,23553,23554,23563,23567,23568,23569,23570,23572,23573,23576,23578,23581,23589,23590,23591,23593,23596,23611,23613,23615,23622,23624,23636,23643,23663,23667,23673,23674,23676,23678,23680,23687,23702,23703,23705,23707,23709,23711,23712,23713,23720,23722,23727,23729,23739,23744,23746,23747,23764,23766,23770,23773,23775,23776,23777,23788,23790,23794,23798,23799,23800,23804,23805,23809,23815,23817,23823,23824,23828,23829,23832,23833,23839,23840,23842,23843,23847,23850,23853,23857,23862,23863,23868,23871,23873,23892,23893,23901,23907,23913,23915,23922,23944,23948,23952,23959,23961,24002,24010,24022,24027,24028,24030,24040,24048,24053,24064,24073,24076,24081,24085,24090,24092,24094,24097,24098,24099,24102,24127,24135,24136,24139,24146,24150,24151,24155,24177,24194,24204,24205,24211,24213,24214,24215,24232,24235,24237,24246,24253,24259,24262,24268,24273,24277,24279,24280,24285,24287,24292,24293,24300,24305,24311,24321,24325,24332,24334,24335,24336,24344,24347,24356,24357,24358,24363,24376,24380,24383,24403,24407,24411,24414,24415,24417,24418,24438,24440,24441,24444,24445,24446,24448,24455,24457,24458,24469,24472,24477,24481,24499,24501,24503,24505,24513,24515,24517,24521,24527,24529,24530,24531,24534,24539,24540,24542,24545,24547,24550,24552,24554,24567,24569,24571,24573,24574,24589,24591,24593,24594,24599,24601,24602,24604,24612,24615,24620,24624,24626,24627,24630,24642,24645,24646,24657,24662,24669,24673,24674,24677,24679,24685,24688,24689,24690,24696,24697,24701,24711,24716,24722,24726,24761,24764,24767,24770,24774,24776,24777,24778,24781,24788,24791,24794,24795,24798,24802,24806,24823,24824,24832,24834,24835,24837,24838,24840,24841,24850,24879,24885,24888,24891,24892,24915,24958,24980,24982,24983,24988,24990,24991,24993,25007,25019,25022,25023,25024,25036,25038,25039,25069,25084,25086,25089,25090,25093,25094,25102,25103,25104,25105,25106,25109,25114,25121,25124,25129,25132,25136,25138,25141,25142,25143,25148,25149,25151,25155,25156,25159,25163,25177,25178,25185,25193,25201,25217,25237,25266,25267,25270,25276,25277,25281,25282,25301,25302,25303,25304,25306,25311,25312,25314,25315,25317,25318,25319,25321,25322,25335,25346,25347,25349,25355,25356,25364,25365,25372,25381,25384,25407,25410,25420,25422,25436,25452,25453,25454,25458,25465,25474,25475,25483,25496,25520,25522,25541,25550,25558,25560,25572,25578,25590,25591,25592,25594,25600,25635,25648,25649,25650,25665,25666,25671,25688,25689,25695,25696,25703,25704,25717,25719,25722,25744,25758,25763,25764,25771,25777,25782,25787,25794,25796,25798,25802,25804,25812,25813,25820,25834,25836,25855,25868,25870,25874,25877,25879,25883,25887,25888,25889,25899,25900,25902,25904,25905,25909,25910,25911,25914,25919,25922,25931,25934,25936,25949,25952,25957,25958,25960,25963,25969,25970,25986,25992,25995,25996,26001,26002,26004,26006,26008,26010,26016,26018,26020,26021,26024,26026,26027,26029,26031,26032,26034,26035,26037,26041,26042,26056,26070,26082,26083,26102,26103,26114,26117,26119,26142,26188,26190,26196,26208,26221,26227,26229,26249,26264,26274,26277,26283,26286,26288,26289,26292,26300,26310,26318,26327,26334,26337,26344,26349,26361,26372,26373,26375,26378,26383,26388,26393,26395,26402,26404,26406,26408,26409,26415,26420,26423,26439,26440,26455,26456,26459,26460,26467,26470,26481,26485,26487,26488,26489,26493,26501,26506,26508,26509,26513,26515,26534,26537,26542,26560,26567,26569,26572,26603,26615,26616,26617,26620,26631,26642,26647,26689,26705,26721,26723,26730,26745,26757,26765,26767,26768,26769,26771,26773,26774,26776,26777,26781,26782,26785,26789,26790,26791,26792,26794,26803,26806,26814,26816,26823,26829,26830,26831,26840,26841,26869,26880,26884,26886,26887,26888,26889,26890,26891,26892,26893,26901,26903,26904,26908,26910,26911,26926,26927,26930,26933,26952,26953,26955,26960,26963,26987,26994,27001,27004,27007,27023,27025,27029,27030,27035,27036,27037,27038,27039,27040,27041,27043,27045,27046,27055,27056,27072,27074,27080,27081,27083,27084,27085,27086,27092,27094,27107,27141,27142,27150,27159,27181,27187,27190,27191,27193,27194,27237,27243,27244,27254,27255,27267,27279,27282,27283,27287,27305,27307,27310,27311,27319,27322,27324,27327,27328,27335,27347,27354,27358,27364,27365,27370,27375,27377,27379,27383,27384,27405,27412,27413,27419,27432,27437,27441,27444,27446,27447,27449,27450,27451,27454,27462,27480,27487,27490,27493,27503,27505,27506,27507,27508,27513,27516,27517,27520,27522,27523,27525,27527,27529,27535,27539,27541,27556,27557,27559,27560,27563,27568,27573,27577,27587,27588,27591,27594,27597,27601,27602,27604,27628,27632,27633,27644,27656,27662,27665,27671,27683,27688,27690,27696,27706,27734,27744,27755,27761,27765,27791,27802,27807,27834,27853,27865,27898,27913,27916,27922,27926,27949,28033,28181,28193,28217,28218,28223,28224,28226,28236,28330,28331,28350,28351,28353,28387,28495,28572,28574,28575,28576,28577,28652,28688,28712,28837,28863,28892,28896,28914,28915,28954,28956,28969,29083,29112,29114,29148,29204,29239,29290,29311,29316,29346,29389,29509,29524,29536,29586,29620,29624,29634,29672,29714,29763,29779,29852,29905,29936,29988,30060,30070,30089,30100,30101,30102,30149,30185,30188,30200,30309,30357,30385,30501,30508,30511,30519,30520,30521,30522,30538,30607,30608,30679,30683,30687,30719,30733,30744,30755,30790,30792,30801,30804,30825,30826,30827,30829,30839,30843,30844,30845,30846,30851,30856,30857,30859,30877,30878,30879,30882,30883,30884,30895,30901,30903,30915,30935,30939,30947,30960,30968,30989,31007,31032,31035,31042,31047,31048,31049,31051,31056,31067]]],["themselves",[4,4,[[43,2,2,0,2,[[1038,1,1,0,1],[1041,1,1,1,2]]],[55,1,1,2,3,[[1129,1,1,2,3]]],[57,1,1,3,4,[[1141,1,1,3,4]]]],[27689,27784,29904,30128]]],["there",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26009]]],["thereof",[18,17,[[39,5,5,0,5,[[930,1,1,0,1],[934,1,1,1,2],[941,2,2,2,4],[949,1,1,4,5]]],[41,2,2,5,7,[[991,1,1,5,6],[993,1,1,6,7]]],[42,2,2,7,9,[[999,1,1,7,8],[1003,1,1,8,9]]],[43,1,1,9,10,[[1032,1,1,9,10]]],[54,1,1,10,11,[[1127,1,1,10,11]]],[57,1,1,11,12,[[1139,1,1,11,12]]],[58,1,1,12,13,[[1146,1,1,12,13]]],[59,1,1,13,14,[[1151,1,1,13,14]]],[65,4,3,14,17,[[1187,4,3,14,17]]]],[23185,23316,23571,23583,23869,25764,25846,26128,26335,27458,29858,30082,30277,30398,31068,31070,31076]]],["thereon",[2,2,[[65,2,2,0,2,[[1171,2,2,0,2]]]],[30782,30783]]],["they",[122,121,[[39,25,25,0,25,[[929,1,1,0,1],[930,1,1,1,2],[933,6,6,2,8],[934,1,1,8,9],[937,1,1,9,10],[940,1,1,10,11],[941,1,1,11,12],[942,1,1,12,13],[945,4,4,13,17],[948,2,2,17,19],[953,2,2,19,21],[954,2,2,21,23],[955,1,1,23,24],[956,1,1,24,25]]],[40,8,8,25,33,[[959,1,1,25,26],[962,1,1,26,27],[965,1,1,27,28],[967,1,1,28,29],[970,2,2,29,31],[972,2,2,31,33]]],[41,35,34,33,67,[[974,4,4,33,37],[976,1,1,37,38],[977,1,1,38,39],[978,1,1,39,40],[979,1,1,40,41],[980,1,1,41,42],[981,4,4,42,46],[982,1,1,46,47],[983,2,2,47,49],[986,2,2,49,51],[988,1,1,51,52],[989,2,2,52,54],[990,1,1,54,55],[991,3,2,55,57],[994,2,2,57,59],[996,8,8,59,67]]],[42,6,6,67,73,[[1000,1,1,67,68],[1002,1,1,68,69],[1013,3,3,69,72],[1014,1,1,72,73]]],[43,23,23,73,96,[[1018,1,1,73,74],[1021,4,4,74,78],[1026,1,1,78,79],[1028,1,1,79,80],[1030,2,2,80,82],[1031,1,1,82,83],[1032,2,2,83,85],[1035,2,2,85,87],[1038,2,2,87,89],[1039,2,2,89,91],[1042,1,1,91,92],[1043,2,2,92,94],[1045,2,2,94,96]]],[44,3,3,96,99,[[1046,1,1,96,97],[1056,1,1,97,98],[1060,1,1,98,99]]],[45,1,1,99,100,[[1076,1,1,99,100]]],[46,2,2,100,102,[[1083,1,1,100,101],[1087,1,1,101,102]]],[47,2,2,102,104,[[1092,1,1,102,103],[1096,1,1,103,104]]],[51,2,2,104,106,[[1111,1,1,104,105],[1112,1,1,105,106]]],[52,2,2,106,108,[[1117,2,2,106,108]]],[54,1,1,108,109,[[1126,1,1,108,109]]],[57,5,5,109,114,[[1133,1,1,109,110],[1135,1,1,110,111],[1140,2,2,111,113],[1145,1,1,113,114]]],[58,2,2,114,116,[[1147,1,1,114,115],[1148,1,1,115,116]]],[60,2,2,116,118,[[1157,1,1,116,117],[1158,1,1,117,118]]],[65,3,3,118,121,[[1178,1,1,118,119],[1187,1,1,119,120],[1188,1,1,120,121]]]],[23162,23182,23238,23239,23240,23241,23242,23243,23308,23411,23516,23593,23629,23709,23714,23722,23724,23802,23821,24018,24052,24075,24080,24146,24206,24308,24461,24547,24652,24772,24776,24881,24887,24979,25015,25016,25023,25065,25114,25157,25237,25268,25334,25337,25338,25358,25401,25424,25453,25554,25565,25648,25664,25665,25722,25742,25764,25887,25919,25995,25996,26005,26006,26026,26027,26032,26043,26201,26281,26767,26778,26780,26813,26932,27023,27024,27053,27054,27253,27333,27364,27376,27415,27455,27481,27563,27577,27685,27689,27723,27727,27813,27833,27841,27905,27927,27950,28240,28324,28728,28914,28983,29090,29201,29569,29584,29671,29672,29837,29967,30005,30101,30102,30258,30300,30322,30519,30527,30902,31056,31094]]],["thing",[3,3,[[45,1,1,0,1,[[1062,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]]],[28373,28927,29437]]],["things",[6,6,[[43,1,1,0,1,[[1032,1,1,0,1]]],[44,2,2,1,3,[[1047,1,1,1,2],[1055,1,1,2,3]]],[48,1,1,3,4,[[1102,1,1,3,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]],[59,1,1,5,6,[[1151,1,1,5,6]]]],[27469,27963,28193,29346,29422,30386]]],["this",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]]],[23473,26587]]],["those",[5,5,[[39,1,1,0,1,[[949,1,1,0,1]]],[42,2,2,1,3,[[1006,1,1,1,2],[1013,1,1,2,3]]],[57,2,2,3,5,[[1142,2,2,3,5]]]],[23867,26513,26770,30134,30136]]],["thyself",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]]],[25188,27777]]],["to",[2,2,[[43,1,1,0,1,[[1034,1,1,0,1]]],[65,1,1,1,2,[[1173,1,1,1,2]]]],[27528,30812]]],["very",[2,2,[[51,1,1,0,1,[[1115,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[29644,30134]]],["was",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25642]]],["we",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]]],[25409,29098]]],["which",[2,2,[[41,1,1,0,1,[[991,1,1,0,1]]],[65,1,1,1,2,[[1183,1,1,1,2]]]],[25733,30984]]],["who",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]]],[24234,27469]]],["whom",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]]],[27583,28245]]],["whose",[3,3,[[41,1,1,0,1,[[978,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]],[65,1,1,2,3,[[1175,1,1,2,3]]]],[25152,26050,30851]]],["women",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29445]]],["ye",[4,4,[[43,3,3,0,3,[[1019,1,1,0,1],[1035,1,1,1,2],[1037,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[26971,27572,27660,30389]]],["yourselves",[9,9,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,2,2,1,3,[[983,2,2,1,3]]],[42,1,1,3,4,[[999,1,1,3,4]]],[51,4,4,4,8,[[1112,1,1,4,5],[1113,1,1,5,6],[1114,1,1,6,7],[1115,1,1,7,8]]],[52,1,1,8,9,[[1118,1,1,8,9]]]],[24438,25451,25457,26148,29571,29593,29612,29623,29685]]]]},{"k":"G847","v":[["*",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[43,3,3,1,4,[[1032,1,1,1,2],[1035,1,1,2,3],[1038,1,1,3,4]]]],[24090,27476,27576,27668]]],["here",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24090]]],["there",[3,3,[[43,3,3,0,3,[[1032,1,1,0,1],[1035,1,1,1,2],[1038,1,1,2,3]]]],[27476,27576,27668]]]]},{"k":"G848","v":[["*",[924,767,[[39,143,122,0,122,[[929,3,3,0,3],[930,3,3,3,6],[931,5,3,6,9],[932,3,3,9,12],[933,7,6,12,18],[934,8,7,18,25],[935,3,3,25,28],[937,3,3,28,31],[938,11,8,31,39],[939,4,4,39,43],[940,2,1,43,44],[941,8,7,44,51],[942,3,3,51,54],[943,7,6,54,60],[944,13,8,60,68],[945,3,3,68,71],[946,3,3,71,74],[947,5,5,74,79],[948,5,5,79,84],[949,3,3,84,87],[950,10,8,87,95],[951,5,3,95,98],[952,8,8,98,106],[953,10,8,106,114],[954,6,6,114,120],[955,2,2,120,122]]],[40,72,63,122,185,[[957,6,6,122,128],[958,2,2,128,130],[959,2,2,130,132],[960,2,2,132,134],[962,10,8,134,142],[963,5,4,142,146],[964,12,11,146,157],[965,3,3,157,160],[966,7,6,160,166],[967,4,4,166,170],[968,6,5,170,175],[969,8,5,175,180],[970,4,4,180,184],[971,1,1,184,185]]],[41,106,99,185,284,[[973,16,15,185,200],[974,7,7,200,207],[975,3,2,207,209],[976,2,2,209,211],[977,3,3,211,214],[978,6,5,214,219],[979,7,7,219,226],[980,2,2,226,228],[981,10,9,228,237],[982,4,4,237,241],[983,1,1,241,242],[984,10,9,242,251],[985,2,2,251,253],[986,4,3,253,256],[987,4,4,256,260],[988,5,5,260,265],[989,3,2,265,267],[990,3,3,267,270],[991,3,3,270,273],[992,3,3,273,276],[993,4,4,276,280],[994,1,1,280,281],[995,1,1,281,282],[996,2,2,282,284]]],[42,33,31,284,315,[[998,2,2,284,286],[999,3,3,286,289],[1000,2,2,289,291],[1002,3,3,291,294],[1003,1,1,294,295],[1005,1,1,295,296],[1007,2,2,296,298],[1008,3,2,298,300],[1009,3,3,300,303],[1011,4,3,303,306],[1013,2,2,306,308],[1014,1,1,308,309],[1015,3,3,309,312],[1016,2,2,312,314],[1017,1,1,314,315]]],[43,90,86,315,401,[[1019,1,1,315,316],[1020,4,4,316,320],[1022,4,4,320,324],[1024,12,11,324,335],[1025,5,5,335,340],[1026,3,3,340,343],[1027,4,4,343,347],[1029,1,1,347,348],[1030,4,4,348,352],[1031,5,5,352,357],[1032,5,5,357,362],[1033,8,7,362,369],[1034,2,2,369,371],[1035,3,3,371,374],[1036,2,2,374,376],[1037,2,2,376,378],[1038,3,3,378,381],[1039,6,4,381,385],[1040,5,5,385,390],[1041,2,2,390,392],[1042,2,2,392,394],[1044,3,3,394,397],[1045,4,4,397,401]]],[44,71,55,401,456,[[1046,12,9,401,410],[1047,4,3,410,413],[1048,11,8,413,421],[1049,2,2,421,423],[1050,3,2,423,425],[1051,3,3,425,428],[1052,1,1,428,429],[1053,7,6,429,435],[1054,3,3,435,438],[1055,2,1,438,439],[1056,13,9,439,448],[1057,1,1,448,449],[1060,5,3,449,452],[1061,4,4,452,456]]],[45,28,27,456,483,[[1062,2,2,456,458],[1063,1,1,458,459],[1064,2,2,459,461],[1066,1,1,461,462],[1067,2,2,462,464],[1068,4,3,464,467],[1069,2,2,467,469],[1070,3,3,469,472],[1071,2,2,472,474],[1072,2,2,474,476],[1075,1,1,476,477],[1076,5,5,477,482],[1077,1,1,482,483]]],[46,4,4,483,487,[[1078,2,2,483,485],[1079,1,1,485,486],[1088,1,1,486,487]]],[47,5,5,487,492,[[1091,2,2,487,489],[1094,3,3,489,492]]],[48,18,13,492,505,[[1097,9,6,492,498],[1098,3,3,498,501],[1099,2,1,501,502],[1100,2,2,502,504],[1101,2,1,504,505]]],[49,2,2,505,507,[[1103,1,1,505,506],[1106,1,1,506,507]]],[50,6,5,507,512,[[1107,4,3,507,510],[1108,2,2,510,512]]],[51,3,3,512,515,[[1112,1,1,512,513],[1114,2,2,513,515]]],[52,4,3,515,518,[[1116,2,2,515,517],[1117,2,1,517,518]]],[53,1,1,518,519,[[1123,1,1,518,519]]],[54,4,3,519,522,[[1126,1,1,519,520],[1128,3,2,520,522]]],[55,2,2,522,524,[[1129,1,1,522,523],[1131,1,1,523,524]]],[57,28,25,524,549,[[1133,3,2,524,526],[1134,1,1,526,527],[1135,2,2,527,529],[1136,2,2,529,531],[1137,1,1,531,532],[1138,1,1,532,533],[1139,1,1,533,534],[1140,2,1,534,535],[1141,1,1,535,536],[1142,2,2,536,538],[1143,5,5,538,543],[1144,4,4,543,547],[1145,3,2,547,549]]],[58,13,12,549,561,[[1146,9,8,549,557],[1147,1,1,557,558],[1148,1,1,558,559],[1149,1,1,559,560],[1150,1,1,560,561]]],[59,6,4,561,565,[[1151,1,1,561,562],[1152,2,1,562,563],[1153,2,1,563,564],[1155,1,1,564,565]]],[60,5,5,565,570,[[1156,1,1,565,566],[1157,2,2,566,568],[1158,2,2,568,570]]],[61,42,35,570,605,[[1159,2,2,570,572],[1160,11,10,572,582],[1161,13,9,582,591],[1162,7,6,591,597],[1163,9,8,597,605]]],[62,3,3,605,608,[[1164,3,3,605,608]]],[63,2,2,608,610,[[1165,2,2,608,610]]],[64,5,4,610,614,[[1166,5,4,610,614]]],[65,228,153,614,767,[[1167,16,8,614,622],[1168,7,6,622,628],[1169,5,3,628,631],[1170,2,2,631,633],[1171,3,3,633,636],[1172,7,5,636,641],[1173,7,6,641,647],[1174,1,1,647,648],[1175,19,11,648,659],[1176,5,3,659,662],[1177,14,10,662,672],[1178,19,13,672,685],[1179,16,8,685,693],[1180,20,13,693,706],[1181,4,2,706,708],[1182,18,11,708,719],[1183,8,5,719,724],[1184,16,13,724,737],[1185,19,12,737,749],[1186,5,4,749,753],[1187,10,8,753,761],[1188,7,6,761,767]]]],[23165,23168,23169,23180,23181,23187,23196,23198,23204,23215,23230,23231,23236,23256,23262,23265,23266,23279,23284,23286,23287,23289,23298,23309,23311,23322,23340,23342,23386,23416,23417,23418,23427,23434,23441,23452,23455,23456,23459,23460,23461,23475,23478,23538,23554,23563,23580,23582,23591,23593,23596,23599,23605,23619,23635,23639,23641,23660,23665,23669,23685,23692,23693,23696,23697,23698,23699,23700,23706,23708,23725,23750,23758,23762,23765,23767,23771,23785,23790,23793,23794,23800,23812,23820,23833,23860,23863,23874,23875,23877,23879,23880,23888,23896,23897,23919,23922,23923,23974,23975,23986,23988,24000,24002,24004,24005,24009,24012,24015,24022,24026,24039,24041,24042,24055,24093,24098,24099,24105,24119,24168,24189,24220,24221,24222,24233,24235,24242,24266,24268,24295,24297,24325,24357,24408,24411,24424,24428,24431,24435,24448,24452,24475,24489,24493,24496,24501,24503,24506,24510,24512,24533,24534,24535,24536,24537,24538,24556,24569,24579,24595,24599,24600,24611,24633,24638,24641,24647,24648,24663,24679,24692,24711,24716,24717,24732,24733,24741,24744,24751,24767,24786,24800,24817,24855,24901,24908,24913,24916,24929,24941,24944,24947,24949,24951,24959,24961,24962,24963,24965,24980,24981,24992,25001,25009,25012,25024,25040,25042,25073,25087,25122,25132,25136,25159,25163,25166,25186,25191,25196,25207,25211,25214,25230,25233,25239,25250,25286,25302,25315,25324,25325,25327,25344,25352,25353,25363,25364,25365,25370,25401,25406,25460,25481,25484,25486,25498,25501,25503,25504,25512,25524,25533,25570,25574,25580,25601,25603,25604,25610,25621,25624,25638,25643,25644,25675,25684,25695,25701,25702,25746,25760,25767,25802,25807,25824,25827,25830,25838,25847,25900,25946,26017,26041,26106,26116,26124,26136,26137,26161,26184,26260,26269,26279,26381,26461,26525,26551,26583,26605,26642,26646,26648,26712,26719,26721,26760,26772,26789,26837,26842,26851,26887,26897,26912,26963,26998,27009,27017,27022,27060,27077,27090,27096,27126,27129,27130,27136,27139,27141,27155,27157,27170,27173,27174,27203,27204,27208,27211,27215,27220,27224,27256,27261,27266,27281,27283,27348,27398,27404,27412,27413,27417,27422,27425,27428,27430,27456,27460,27465,27468,27474,27486,27498,27499,27502,27515,27517,27520,27539,27549,27559,27565,27576,27603,27612,27661,27664,27675,27683,27688,27718,27724,27726,27734,27736,27744,27753,27762,27763,27777,27793,27818,27821,27876,27882,27891,27902,27903,27916,27926,27932,27933,27935,27939,27950,27951,27954,27956,27957,27966,27977,27988,27994,27998,28004,28006,28007,28009,28015,28016,28027,28035,28056,28057,28071,28073,28080,28116,28125,28127,28137,28139,28142,28145,28158,28177,28178,28206,28210,28211,28218,28219,28220,28221,28236,28242,28243,28265,28313,28317,28330,28338,28341,28349,28351,28365,28372,28404,28425,28429,28467,28472,28481,28523,28524,28526,28534,28539,28547,28550,28567,28593,28595,28604,28605,28703,28728,28741,28743,28745,28746,28795,28804,28809,28838,28992,29072,29073,29135,29137,29156,29211,29212,29215,29217,29223,29226,29233,29236,29244,29267,29289,29297,29335,29367,29461,29478,29485,29487,29509,29512,29586,29609,29611,29656,29659,29669,29781,29846,29871,29888,29895,29928,29966,29970,29981,30001,30013,30018,30024,30037,30061,30069,30103,30131,30153,30163,30179,30193,30194,30195,30207,30214,30215,30222,30228,30244,30262,30274,30275,30276,30277,30279,30284,30291,30292,30314,30332,30348,30372,30377,30423,30434,30475,30488,30512,30513,30525,30538,30543,30550,30553,30554,30555,30556,30559,30560,30561,30562,30567,30578,30588,30589,30591,30594,30595,30596,30601,30602,30603,30612,30613,30615,30616,30623,30624,30626,30627,30633,30634,30635,30638,30640,30644,30646,30651,30656,30667,30668,30686,30687,30688,30696,30698,30701,30702,30703,30711,30712,30713,30714,30718,30722,30735,30738,30739,30740,30750,30751,30767,30772,30778,30781,30784,30788,30798,30804,30806,30807,30810,30813,30819,30821,30824,30825,30827,30839,30844,30845,30847,30848,30849,30850,30857,30858,30859,30860,30861,30862,30863,30866,30877,30878,30879,30880,30881,30883,30884,30887,30888,30891,30892,30894,30895,30896,30898,30899,30900,30901,30902,30905,30906,30907,30908,30909,30910,30911,30914,30920,30924,30925,30926,30927,30928,30931,30933,30934,30935,30936,30937,30939,30940,30942,30944,30945,30948,30954,30956,30957,30958,30962,30964,30965,30966,30969,30971,30973,30975,30977,30979,30980,30991,30992,30994,30996,30997,30998,30999,31000,31001,31002,31003,31004,31008,31011,31012,31019,31020,31022,31024,31027,31029,31030,31032,31033,31036,31037,31038,31039,31042,31050,31051,31055,31056,31057,31060,31061,31064,31069,31077,31082,31083,31084,31086,31092,31094]]],["+",[18,18,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,4,4,1,5,[[973,1,1,1,2],[976,1,1,2,3],[981,1,1,3,4],[984,1,1,4,5]]],[43,1,1,5,6,[[1042,1,1,5,6]]],[44,2,2,6,8,[[1052,1,1,6,7],[1054,1,1,7,8]]],[45,2,2,8,10,[[1066,1,1,8,9],[1072,1,1,9,10]]],[49,1,1,10,11,[[1103,1,1,10,11]]],[50,1,1,11,12,[[1107,1,1,11,12]]],[57,1,1,12,13,[[1145,1,1,12,13]]],[61,1,1,13,14,[[1160,1,1,13,14]]],[65,4,4,14,18,[[1172,1,1,14,15],[1173,1,1,15,16],[1179,1,1,16,17],[1187,1,1,17,18]]]],[23215,24951,25073,25302,25503,27818,28116,28177,28467,28605,29367,29487,30262,30562,30804,30824,30920,31069]]],["His",[2,2,[[65,2,2,0,2,[[1167,1,1,0,1],[1185,1,1,1,2]]]],[30711,31029]]],["I",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27724]]],["Their",[2,2,[[44,2,2,0,2,[[1048,2,2,0,2]]]],[28004,28006]]],["he",[7,7,[[43,2,2,0,2,[[1035,1,1,0,1],[1037,1,1,1,2]]],[45,1,1,2,3,[[1064,1,1,2,3]]],[58,3,3,3,6,[[1146,3,3,3,6]]],[63,1,1,6,7,[[1165,1,1,6,7]]]],[27576,27661,28425,30275,30276,30279,30668]]],["her",[80,71,[[39,8,7,0,7,[[929,1,1,0,1],[930,1,1,1,2],[938,2,1,2,3],[939,1,1,3,4],[942,1,1,4,5],[948,1,1,5,6],[952,1,1,6,7]]],[40,8,7,7,14,[[962,2,2,7,9],[963,2,2,9,11],[966,1,1,11,12],[968,2,1,12,13],[969,1,1,13,14]]],[41,13,12,14,26,[[973,2,2,14,16],[974,4,4,16,20],[979,3,3,20,23],[982,1,1,23,24],[984,2,1,24,25],[993,1,1,25,26]]],[42,4,4,26,30,[[1000,1,1,26,27],[1007,2,2,27,29],[1008,1,1,29,30]]],[43,6,6,30,36,[[1025,1,1,30,31],[1026,1,1,31,32],[1033,3,3,32,35],[1036,1,1,35,36]]],[45,2,1,36,37,[[1068,2,1,36,37]]],[47,1,1,37,38,[[1094,1,1,37,38]]],[58,1,1,38,39,[[1150,1,1,38,39]]],[62,1,1,39,40,[[1164,1,1,39,40]]],[65,36,31,40,71,[[1168,2,2,40,42],[1172,1,1,42,43],[1178,7,6,43,49],[1180,2,2,49,51],[1183,5,4,51,55],[1184,13,11,55,66],[1185,3,2,66,68],[1187,2,2,68,70],[1188,1,1,70,71]]]],[23169,23187,23452,23478,23605,23812,23986,24431,24435,24489,24493,24600,24717,24741,24929,24951,24980,24992,25009,25024,25230,25233,25239,25401,25512,25830,26184,26525,26551,26583,27203,27256,27498,27499,27502,27612,28526,29156,30372,30646,30738,30740,30806,30892,30895,30896,30905,30907,30908,30934,30944,30977,30979,30980,30991,30996,30997,30998,30999,31000,31001,31002,31003,31008,31011,31012,31019,31020,31055,31064,31082]]],["him",[8,8,[[41,1,1,0,1,[[991,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[43,4,4,2,6,[[1022,1,1,2,3],[1026,1,1,3,4],[1040,2,2,4,6]]],[48,1,1,6,7,[[1097,1,1,6,7]]],[57,1,1,7,8,[[1144,1,1,7,8]]]],[25746,26789,27096,27220,27736,27753,29223,30214]]],["himself",[13,13,[[39,1,1,0,1,[[934,1,1,0,1]]],[42,2,2,1,3,[[1005,1,1,1,2],[1015,1,1,2,3]]],[43,1,1,3,4,[[1042,1,1,3,4]]],[45,1,1,4,5,[[1076,1,1,4,5]]],[48,2,2,5,7,[[1097,2,2,5,7]]],[50,1,1,7,8,[[1107,1,1,7,8]]],[57,2,2,8,10,[[1141,1,1,8,9],[1144,1,1,9,10]]],[61,1,1,10,11,[[1160,1,1,10,11]]],[65,2,2,11,13,[[1185,1,1,11,12],[1187,1,1,12,13]]]],[23286,26461,26837,27821,28746,29211,29215,29485,30131,30215,30556,31029,31056]]],["his",[533,455,[[39,94,81,0,81,[[929,2,2,0,2],[931,4,2,2,4],[933,7,6,4,10],[934,2,2,10,12],[935,2,2,12,14],[937,3,3,14,17],[938,8,7,17,24],[939,2,2,24,26],[940,2,1,26,27],[941,3,3,27,30],[942,2,2,30,32],[943,4,3,32,35],[944,12,8,35,43],[946,2,2,43,45],[947,5,5,45,50],[948,4,4,50,54],[949,2,2,54,56],[950,9,7,56,63],[951,1,1,63,64],[952,7,7,64,71],[953,6,5,71,76],[954,5,5,76,81]]],[40,49,42,81,123,[[957,1,1,81,82],[958,1,1,82,83],[959,2,2,83,85],[960,2,2,85,87],[962,5,4,87,91],[963,3,2,91,93],[964,10,9,93,102],[965,3,3,102,105],[966,6,5,105,110],[967,2,2,110,112],[968,4,4,112,116],[969,7,4,116,120],[970,3,3,120,123]]],[41,68,63,123,186,[[973,9,9,123,132],[974,1,1,132,133],[975,2,1,133,134],[978,5,4,134,138],[979,4,4,138,142],[980,2,2,142,144],[981,8,7,144,151],[982,3,3,151,154],[983,1,1,154,155],[984,7,7,155,162],[985,2,2,162,164],[986,4,3,164,167],[987,4,4,167,171],[988,4,4,171,175],[989,3,2,175,177],[990,2,2,177,179],[991,1,1,179,180],[992,2,2,180,182],[994,1,1,182,183],[995,1,1,183,184],[996,2,2,184,186]]],[42,23,21,186,207,[[998,2,2,186,188],[999,3,3,188,191],[1000,1,1,191,192],[1002,3,3,192,195],[1008,2,1,195,196],[1009,3,3,196,199],[1011,3,2,199,201],[1013,1,1,201,202],[1015,2,2,202,204],[1016,2,2,204,206],[1017,1,1,206,207]]],[43,44,42,207,249,[[1019,1,1,207,208],[1020,4,4,208,212],[1022,2,2,212,214],[1024,7,6,214,220],[1025,4,4,220,224],[1026,1,1,224,225],[1027,4,4,225,229],[1029,1,1,229,230],[1030,1,1,230,231],[1031,2,2,231,233],[1032,2,2,233,235],[1033,3,3,235,238],[1034,1,1,238,239],[1035,2,2,239,241],[1037,1,1,241,242],[1038,1,1,242,243],[1039,3,2,243,245],[1041,2,2,245,247],[1045,2,2,247,249]]],[44,31,28,249,277,[[1046,5,5,249,254],[1047,2,2,254,256],[1048,4,3,256,259],[1049,2,2,259,261],[1050,3,2,261,263],[1051,2,2,263,265],[1053,3,3,265,268],[1054,1,1,268,269],[1056,5,4,269,273],[1057,1,1,273,274],[1060,1,1,274,275],[1061,2,2,275,277]]],[45,12,12,277,289,[[1062,1,1,277,278],[1063,1,1,278,279],[1067,1,1,279,280],[1068,2,2,280,282],[1070,1,1,282,283],[1072,1,1,283,284],[1075,1,1,284,285],[1076,4,4,285,289]]],[46,2,2,289,291,[[1079,1,1,289,290],[1088,1,1,290,291]]],[47,4,4,291,295,[[1091,2,2,291,293],[1094,2,2,293,295]]],[48,12,9,295,304,[[1097,4,3,295,298],[1098,3,3,298,301],[1099,2,1,301,302],[1100,1,1,302,303],[1101,2,1,303,304]]],[49,1,1,304,305,[[1106,1,1,304,305]]],[50,3,3,305,308,[[1107,2,2,305,307],[1108,1,1,307,308]]],[51,2,2,308,310,[[1114,2,2,308,310]]],[52,4,3,310,313,[[1116,2,2,310,312],[1117,2,1,312,313]]],[53,1,1,313,314,[[1123,1,1,313,314]]],[54,4,3,314,317,[[1126,1,1,314,315],[1128,3,2,315,317]]],[55,2,2,317,319,[[1129,1,1,317,318],[1131,1,1,318,319]]],[57,17,15,319,334,[[1133,3,2,319,321],[1135,1,1,321,322],[1136,1,1,322,323],[1137,1,1,323,324],[1138,1,1,324,325],[1140,2,1,325,326],[1142,2,2,326,328],[1143,4,4,328,332],[1144,1,1,332,333],[1145,1,1,333,334]]],[58,8,8,334,342,[[1146,5,5,334,339],[1147,1,1,339,340],[1148,1,1,340,341],[1149,1,1,341,342]]],[59,4,3,342,345,[[1151,1,1,342,343],[1153,2,1,343,344],[1155,1,1,344,345]]],[60,1,1,345,346,[[1156,1,1,345,346]]],[61,38,32,346,378,[[1159,2,2,346,348],[1160,8,7,348,355],[1161,12,9,355,364],[1162,7,6,364,370],[1163,9,8,370,378]]],[62,2,2,378,380,[[1164,2,2,378,380]]],[64,2,2,380,382,[[1166,2,2,380,382]]],[65,105,73,382,455,[[1167,14,7,382,389],[1168,4,3,389,392],[1169,4,2,392,394],[1172,2,2,394,396],[1173,1,1,396,397],[1176,5,3,397,400],[1177,3,2,400,402],[1178,9,8,402,410],[1179,13,6,410,416],[1180,12,8,416,424],[1181,4,2,424,426],[1182,12,9,426,435],[1183,1,1,435,436],[1184,1,1,436,437],[1185,12,11,437,448],[1186,1,1,448,449],[1187,2,2,449,451],[1188,5,4,451,455]]]],[23165,23168,23196,23204,23236,23256,23262,23265,23266,23279,23309,23311,23340,23342,23386,23416,23417,23418,23427,23441,23452,23455,23456,23459,23460,23461,23538,23563,23580,23591,23599,23619,23639,23665,23669,23685,23692,23693,23696,23697,23698,23699,23700,23750,23762,23765,23767,23771,23785,23790,23793,23794,23800,23820,23860,23863,23874,23875,23877,23879,23880,23896,23897,23919,23974,23975,23988,24000,24002,24004,24005,24022,24026,24039,24041,24042,24055,24093,24099,24105,24119,24221,24268,24295,24297,24325,24357,24424,24428,24448,24452,24475,24496,24501,24506,24510,24512,24533,24534,24535,24537,24538,24556,24569,24579,24595,24599,24611,24633,24638,24641,24663,24679,24692,24711,24716,24732,24733,24744,24751,24767,24786,24817,24901,24908,24941,24944,24947,24961,24962,24963,24965,25001,25042,25159,25166,25186,25191,25196,25207,25211,25214,25250,25286,25315,25324,25325,25344,25352,25353,25363,25364,25365,25370,25406,25460,25481,25484,25486,25498,25501,25504,25524,25533,25570,25574,25580,25601,25603,25604,25610,25621,25638,25643,25644,25675,25684,25701,25702,25760,25807,25824,25900,25946,26017,26041,26106,26116,26124,26136,26137,26161,26260,26269,26279,26605,26642,26646,26648,26712,26719,26760,26842,26851,26887,26897,26912,26963,26998,27009,27017,27022,27060,27090,27126,27129,27130,27136,27139,27141,27204,27208,27211,27215,27224,27261,27266,27281,27283,27348,27398,27417,27422,27456,27460,27486,27515,27517,27539,27559,27565,27664,27683,27718,27724,27777,27793,27902,27903,27932,27933,27935,27939,27950,27966,27988,27998,28015,28016,28027,28035,28056,28057,28071,28073,28125,28127,28145,28178,28210,28211,28242,28243,28265,28313,28349,28351,28372,28404,28472,28523,28524,28550,28604,28703,28728,28741,28743,28745,28838,28992,29072,29073,29135,29137,29211,29212,29215,29233,29236,29244,29267,29297,29335,29461,29478,29487,29512,29609,29611,29656,29659,29669,29781,29846,29871,29888,29895,29928,29966,29970,30013,30018,30037,30061,30103,30153,30163,30179,30193,30194,30195,30228,30262,30274,30277,30284,30291,30292,30314,30332,30348,30377,30434,30475,30488,30543,30550,30553,30554,30555,30559,30560,30561,30578,30588,30589,30591,30594,30595,30596,30601,30602,30603,30612,30613,30615,30616,30623,30624,30626,30627,30633,30634,30635,30638,30640,30644,30651,30656,30686,30696,30698,30701,30703,30711,30712,30713,30714,30718,30722,30735,30751,30767,30798,30810,30825,30862,30863,30866,30887,30891,30894,30895,30896,30898,30900,30901,30906,30907,30909,30910,30911,30914,30925,30926,30927,30933,30935,30936,30937,30940,30942,30945,30948,30954,30956,30957,30958,30962,30964,30966,30969,30971,30973,30992,30994,31019,31022,31024,31027,31029,31030,31032,31033,31036,31037,31038,31039,31056,31060,31083,31086,31092,31094]]],["it",[3,3,[[41,1,1,0,1,[[993,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]],[65,1,1,2,3,[[1174,1,1,2,3]]]],[25847,29509,30839]]],["itself",[2,2,[[44,2,2,0,2,[[1053,2,2,0,2]]]],[28137,28142]]],["myself",[4,4,[[44,3,3,0,3,[[1054,1,1,0,1],[1060,1,1,1,2],[1061,1,1,2,3]]],[45,1,1,3,4,[[1070,1,1,3,4]]]],[28158,28317,28338,28567]]],["ourselves",[2,1,[[44,2,1,0,1,[[1053,2,1,0,1]]]],[28139]]],["own",[41,38,[[39,7,6,0,6,[[930,1,1,0,1],[941,3,2,1,3],[944,1,1,3,4],[945,1,1,4,5],[955,1,1,5,6]]],[40,5,4,6,10,[[962,3,2,6,8],[964,2,2,8,10]]],[41,8,8,10,18,[[973,2,2,10,12],[974,1,1,12,13],[976,1,1,13,14],[977,2,2,14,16],[981,1,1,16,17],[990,1,1,17,18]]],[42,1,1,18,19,[[1003,1,1,18,19]]],[43,3,3,19,22,[[1024,1,1,19,20],[1031,1,1,20,21],[1038,1,1,21,22]]],[44,2,1,22,23,[[1046,2,1,22,23]]],[45,2,2,23,25,[[1064,1,1,23,24],[1067,1,1,24,25]]],[48,2,2,25,27,[[1097,2,2,25,27]]],[57,4,4,27,31,[[1134,1,1,27,28],[1135,1,1,28,29],[1136,1,1,29,30],[1144,1,1,30,31]]],[58,1,1,31,32,[[1146,1,1,31,32]]],[59,1,1,32,33,[[1152,1,1,32,33]]],[60,2,2,33,35,[[1157,2,2,33,35]]],[61,1,1,35,36,[[1161,1,1,35,36]]],[64,1,1,36,37,[[1166,1,1,36,37]]],[65,1,1,37,38,[[1167,1,1,37,38]]]],[23181,23593,23596,23698,23725,24189,24408,24411,24503,24536,24916,24949,25012,25087,25132,25136,25327,25695,26381,27157,27430,27675,27954,28429,28481,29217,29226,29981,30001,30024,30222,30292,30423,30512,30513,30591,30688,30702]]],["same",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24098]]],["self",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30423]]],["their",[173,143,[[39,31,27,0,27,[[930,1,1,0,1],[931,1,1,1,2],[932,2,2,2,4],[934,5,4,4,8],[935,1,1,8,9],[938,1,1,9,10],[939,1,1,10,11],[941,2,2,11,13],[943,3,3,13,16],[945,2,2,16,18],[946,1,1,18,19],[949,1,1,19,20],[950,1,1,20,21],[951,4,2,21,23],[953,4,3,23,26],[955,1,1,26,27]]],[40,8,8,27,35,[[957,3,3,27,30],[958,1,1,30,31],[967,2,2,31,33],[970,1,1,33,34],[971,1,1,34,35]]],[41,11,11,35,46,[[973,2,2,35,37],[974,1,1,37,38],[975,1,1,38,39],[977,1,1,39,40],[978,1,1,40,41],[988,1,1,41,42],[991,1,1,42,43],[992,1,1,43,44],[993,2,2,44,46]]],[42,1,1,46,47,[[1011,1,1,46,47]]],[43,16,16,47,63,[[1024,3,3,47,50],[1030,2,2,50,52],[1031,2,2,52,54],[1032,1,1,54,55],[1033,1,1,55,56],[1034,1,1,56,57],[1036,1,1,57,58],[1039,2,2,58,60],[1040,2,2,60,62],[1045,1,1,62,63]]],[44,23,16,63,79,[[1046,5,3,63,66],[1047,2,1,66,67],[1048,5,4,67,71],[1055,2,1,71,72],[1056,6,5,72,77],[1060,2,1,77,78],[1061,1,1,78,79]]],[45,3,3,79,82,[[1069,2,2,79,81],[1077,1,1,81,82]]],[48,1,1,82,83,[[1100,1,1,82,83]]],[51,1,1,83,84,[[1112,1,1,83,84]]],[57,2,2,84,86,[[1139,1,1,84,85],[1143,1,1,85,86]]],[60,2,2,86,88,[[1158,2,2,86,88]]],[64,2,2,88,90,[[1166,2,2,88,90]]],[65,72,53,90,143,[[1168,1,1,90,91],[1169,1,1,91,92],[1170,2,2,92,94],[1172,3,2,94,96],[1173,5,5,96,101],[1175,19,11,101,112],[1177,11,8,112,120],[1178,3,2,120,122],[1179,2,1,122,123],[1180,6,5,123,128],[1182,4,2,128,130],[1183,2,1,130,131],[1184,2,2,131,133],[1185,2,2,133,135],[1186,4,3,135,138],[1187,4,4,138,142],[1188,1,1,142,143]]]],[23180,23198,23230,23231,23284,23287,23289,23298,23322,23434,23475,23554,23582,23635,23641,23660,23706,23708,23758,23833,23888,23922,23923,24009,24012,24015,24168,24220,24233,24235,24266,24647,24648,24800,24855,24913,24959,24981,25040,25122,25163,25624,25767,25802,25827,25838,26721,27155,27173,27174,27412,27413,27425,27428,27468,27502,27549,27603,27726,27734,27762,27763,27926,27951,27956,27957,27977,27994,28004,28007,28009,28206,28218,28219,28220,28221,28236,28330,28341,28534,28539,28795,29289,29586,30069,30207,30525,30538,30687,30688,30739,30750,30772,30778,30804,30807,30813,30819,30821,30824,30827,30844,30845,30847,30848,30849,30850,30857,30858,30859,30860,30861,30877,30878,30879,30880,30881,30883,30884,30888,30899,30902,30924,30927,30928,30931,30937,30939,30964,30965,30992,31004,31012,31036,31038,31042,31050,31051,31056,31057,31061,31077,31084]]],["theirs",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28365]]],["them",[8,7,[[43,5,5,0,5,[[1022,1,1,0,1],[1030,1,1,1,2],[1032,1,1,2,3],[1040,1,1,3,4],[1044,1,1,4,5]]],[44,2,1,5,6,[[1056,2,1,5,6]]],[63,1,1,6,7,[[1165,1,1,6,7]]]],[27077,27404,27465,27744,27876,28221,30667]]],["themselves",[4,4,[[40,1,1,0,1,[[957,1,1,0,1]]],[42,1,1,1,2,[[1013,1,1,1,2]]],[43,2,2,2,4,[[1032,1,1,2,3],[1033,1,1,3,4]]]],[24242,26772,27474,27520]]],["thereof",[10,10,[[44,1,1,0,1,[[1051,1,1,0,1]]],[45,3,3,1,4,[[1070,1,1,1,2],[1071,2,2,2,4]]],[61,1,1,4,5,[[1160,1,1,4,5]]],[65,5,5,5,10,[[1171,3,3,5,8],[1182,2,2,8,10]]]],[28080,28547,28593,28595,30567,30781,30784,30788,30966,30975]]],["they",[3,3,[[43,3,3,0,3,[[1044,2,2,0,2],[1045,1,1,2,3]]]],[27882,27891,27916]]],["thou",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27688]]],["to",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27170]]],["we",[2,2,[[46,2,2,0,2,[[1078,2,2,0,2]]]],[28804,28809]]],["whose",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24222]]],["ye",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28317]]],["yourselves",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30244]]]]},{"k":"G849","v":[["hands",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27874]]]]},{"k":"G850","v":[["dark",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30498]]]]},{"k":"G851","v":[["*",[10,9,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,4,4,2,6,[[973,1,1,2,3],[982,1,1,3,4],[988,1,1,4,5],[994,1,1,5,6]]],[44,1,1,6,7,[[1056,1,1,6,7]]],[57,1,1,7,8,[[1142,1,1,7,8]]],[65,2,1,8,9,[[1188,2,1,8,9]]]],[24105,24801,24918,25405,25623,25914,28236,30137,31099]]],["away",[7,6,[[41,3,3,0,3,[[973,1,1,0,1],[982,1,1,1,2],[988,1,1,2,3]]],[44,1,1,3,4,[[1056,1,1,3,4]]],[57,1,1,4,5,[[1142,1,1,4,5]]],[65,2,1,5,6,[[1188,2,1,5,6]]]],[24918,25405,25623,28236,30137,31099]]],["off",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]]],[24105,24801,25914]]]]},{"k":"G852","v":[["manifest",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30027]]]]},{"k":"G853","v":[["*",[5,5,[[39,3,3,0,3,[[934,3,3,0,3]]],[43,1,1,3,4,[[1030,1,1,3,4]]],[58,1,1,4,5,[[1149,1,1,4,5]]]],[23298,23301,23302,27403,30351]]],["away",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30351]]],["corrupt",[2,2,[[39,2,2,0,2,[[934,2,2,0,2]]]],[23301,23302]]],["disfigure",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23298]]],["perish",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27403]]]]},{"k":"G854","v":[["+",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30105]]]]},{"k":"G855","v":[["+",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26022]]]]},{"k":"G856","v":[["draught",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[23650,24482]]]]},{"k":"G857","v":[["neglecting",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29517]]]]},{"k":"G858","v":[["singleness",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26995]]]]},{"k":"G859","v":[["*",[17,16,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[957,1,1,1,2],[959,1,1,2,3]]],[41,5,4,3,7,[[973,1,1,3,4],[975,1,1,4,5],[976,2,1,5,6],[996,1,1,6,7]]],[43,5,5,7,12,[[1019,1,1,7,8],[1022,1,1,8,9],[1027,1,1,9,10],[1030,1,1,10,11],[1043,1,1,11,12]]],[48,1,1,12,13,[[1097,1,1,12,13]]],[50,1,1,13,14,[[1107,1,1,13,14]]],[57,2,2,14,16,[[1141,1,1,14,15],[1142,1,1,15,16]]]],[24082,24219,24317,24970,25028,25081,26038,26987,27090,27302,27400,27841,29213,29479,30127,30151]]],["+",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24317]]],["deliverance",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25081]]],["forgiveness",[5,5,[[43,3,3,0,3,[[1022,1,1,0,1],[1030,1,1,1,2],[1043,1,1,2,3]]],[48,1,1,3,4,[[1097,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]]],[27090,27400,27841,29213,29479]]],["liberty",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25081]]],["remission",[9,9,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,3,3,2,5,[[973,1,1,2,3],[975,1,1,3,4],[996,1,1,4,5]]],[43,2,2,5,7,[[1019,1,1,5,6],[1027,1,1,6,7]]],[57,2,2,7,9,[[1141,1,1,7,8],[1142,1,1,8,9]]]],[24082,24219,24970,25028,26038,26987,27302,30127,30151]]]]},{"k":"G860","v":[["*",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[29288,29513]]],["joint",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29288]]],["joints",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29513]]]]},{"k":"G861","v":[["*",[8,8,[[44,1,1,0,1,[[1047,1,1,0,1]]],[45,4,4,1,5,[[1076,4,4,1,5]]],[48,1,1,5,6,[[1102,1,1,5,6]]],[54,1,1,6,7,[[1125,1,1,6,7]]],[55,1,1,7,8,[[1130,1,1,7,8]]]],[27969,28760,28768,28771,28772,29361,29819,29915]]],["+",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29819]]],["immortality",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27969]]],["incorruption",[4,4,[[45,4,4,0,4,[[1076,4,4,0,4]]]],[28760,28768,28771,28772]]],["sincerity",[2,2,[[48,1,1,0,1,[[1102,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]]],[29361,29915]]]]},{"k":"G862","v":[["*",[7,7,[[44,1,1,0,1,[[1046,1,1,0,1]]],[45,2,2,1,3,[[1070,1,1,1,2],[1076,1,1,2,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]],[59,3,3,4,7,[[1151,2,2,4,6],[1153,1,1,6,7]]]],[27953,28565,28770,29713,30378,30397,30428]]],["corruptible",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30428]]],["immortal",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29713]]],["incorruptible",[4,4,[[45,2,2,0,2,[[1070,1,1,0,1],[1076,1,1,1,2]]],[59,2,2,2,4,[[1151,2,2,2,4]]]],[28565,28770,30378,30397]]],["uncorruptible",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27953]]]]},{"k":"G863","v":[["*",[147,133,[[39,48,40,0,40,[[931,2,1,0,1],[932,3,3,1,4],[933,2,2,4,6],[934,6,3,6,9],[935,1,1,9,10],[936,2,2,10,12],[937,3,3,12,15],[940,4,2,15,17],[941,2,2,17,19],[943,1,1,19,20],[946,5,5,20,25],[947,3,3,25,28],[950,2,2,28,30],[951,5,3,30,33],[952,3,3,33,36],[954,2,2,36,38],[955,2,2,38,40]]],[40,37,35,40,75,[[957,4,4,40,44],[958,4,4,44,48],[959,1,1,48,49],[960,2,2,49,51],[961,2,2,51,53],[963,3,3,53,56],[964,1,1,56,57],[966,3,3,57,60],[967,6,4,60,64],[968,5,5,64,69],[969,2,2,69,71],[970,2,2,71,73],[971,2,2,73,75]]],[41,33,30,75,105,[[976,1,1,75,76],[977,5,5,76,81],[978,1,1,81,82],[979,4,3,82,85],[980,1,1,85,86],[981,1,1,86,87],[982,1,1,87,88],[983,3,2,88,90],[984,3,2,90,92],[985,2,2,92,94],[989,5,5,94,99],[990,3,3,99,102],[991,1,1,102,103],[993,1,1,103,104],[995,1,1,104,105]]],[42,15,14,105,119,[[1000,3,3,105,108],[1004,1,1,108,109],[1006,1,1,109,110],[1007,2,2,110,112],[1008,1,1,112,113],[1010,2,2,113,115],[1012,2,2,115,117],[1014,1,1,117,118],[1016,2,1,118,119]]],[43,2,2,119,121,[[1025,1,1,119,120],[1031,1,1,120,121]]],[44,2,2,121,123,[[1046,1,1,121,122],[1049,1,1,122,123]]],[45,3,3,123,126,[[1068,3,3,123,126]]],[57,2,2,126,128,[[1134,1,1,126,127],[1138,1,1,127,128]]],[58,1,1,128,129,[[1150,1,1,128,129]]],[61,2,2,129,131,[[1159,1,1,129,130],[1160,1,1,130,131]]],[65,2,2,131,133,[[1168,1,1,131,132],[1177,1,1,132,133]]]],[23207,23220,23229,23231,23258,23274,23294,23296,23297,23320,23360,23367,23381,23384,23385,23520,23521,23569,23575,23647,23739,23748,23754,23759,23762,23776,23789,23791,23894,23897,23931,23941,23956,23959,23997,23998,24098,24110,24178,24179,24233,24235,24246,24249,24265,24267,24269,24270,24316,24335,24359,24383,24401,24471,24475,24490,24513,24602,24616,24617,24646,24656,24665,24666,24685,24692,24693,24694,24695,24719,24751,24760,24804,24862,24863,25102,25118,25127,25128,25130,25131,25188,25242,25243,25244,25296,25361,25393,25409,25447,25469,25498,25526,25553,25654,25655,25685,25686,25687,25704,25716,25717,25775,25832,25969,26159,26184,26208,26410,26493,26567,26571,26587,26686,26695,26754,26758,26793,26890,27198,27431,27957,28029,28498,28499,28500,29985,30045,30369,30549,30562,30721,30881]]],["+",[11,11,[[39,3,3,0,3,[[932,1,1,0,1],[941,1,1,1,2],[943,1,1,2,3]]],[40,2,2,3,5,[[967,1,1,3,4],[970,1,1,4,5]]],[41,3,3,5,8,[[983,1,1,5,6],[984,1,1,6,7],[985,1,1,7,8]]],[42,2,2,8,10,[[1007,1,1,8,9],[1008,1,1,9,10]]],[45,1,1,10,11,[[1068,1,1,10,11]]]],[23231,23575,23647,24646,24760,25447,25498,25526,26571,26587,28499]]],["Leave",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23258]]],["Let",[4,4,[[39,2,2,0,2,[[935,1,1,0,1],[941,1,1,1,2]]],[40,1,1,2,3,[[963,1,1,2,3]]],[41,1,1,3,4,[[981,1,1,3,4]]]],[23320,23569,24490,25361]]],["Suffer",[4,4,[[39,2,2,0,2,[[931,1,1,0,1],[947,1,1,1,2]]],[40,1,1,2,3,[[966,1,1,2,3]]],[41,1,1,3,4,[[990,1,1,3,4]]]],[23207,23776,24602,25704]]],["alone",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24862]]],["aside",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24471]]],["away",[2,2,[[40,1,1,0,1,[[960,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[24359,28498]]],["be",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24178]]],["cried",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24863]]],["forgave",[2,2,[[39,2,2,0,2,[[946,2,2,0,2]]]],[23754,23759]]],["forgive",[23,17,[[39,9,6,0,6,[[934,6,3,0,3],[937,1,1,3,4],[946,2,2,4,6]]],[40,6,4,6,10,[[958,2,2,6,8],[967,4,2,8,10]]],[41,7,6,10,16,[[977,2,2,10,12],[983,2,1,12,13],[989,2,2,13,15],[995,1,1,15,16]]],[61,1,1,16,17,[[1159,1,1,16,17]]]],[23294,23296,23297,23385,23748,23762,24267,24270,24665,24666,25128,25131,25409,25654,25655,25969,30549]]],["forgiven",[21,17,[[39,6,4,0,4,[[937,2,2,0,2],[940,4,2,2,4]]],[40,4,4,4,8,[[958,2,2,4,6],[959,1,1,6,7],[960,1,1,7,8]]],[41,7,5,8,13,[[977,2,2,8,10],[979,3,2,10,12],[984,2,1,12,13]]],[43,1,1,13,14,[[1025,1,1,13,14]]],[44,1,1,14,15,[[1049,1,1,14,15]]],[58,1,1,15,16,[[1150,1,1,15,16]]],[61,1,1,16,17,[[1160,1,1,16,17]]]],[23381,23384,23520,23521,24265,24269,24316,24335,25127,25130,25242,25243,25469,27198,28029,30369,30562]]],["forgiveth",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25244]]],["forsaken",[2,2,[[39,2,2,0,2,[[947,2,2,0,2]]]],[23789,23791]]],["forsook",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[957,1,1,1,2],[970,1,1,2,3]]],[41,1,1,3,4,[[977,1,1,3,4]]]],[24110,24233,24804,25118]]],["have",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23274]]],["leave",[9,9,[[39,2,2,0,2,[[946,1,1,0,1],[951,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[991,1,1,3,4]]],[42,4,4,4,8,[[1010,2,2,4,6],[1012,2,2,6,8]]],[45,1,1,8,9,[[1068,1,1,8,9]]]],[23739,23941,24692,25775,26686,26695,26754,26758,28500]]],["leaveth",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[42,1,1,1,2,[[1006,1,1,1,2]]]],[23220,26493]]],["leaving",[3,3,[[41,1,1,0,1,[[982,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]]],[25393,27957,30045]]],["left",[35,35,[[39,9,9,0,9,[[932,1,1,0,1],[936,1,1,1,2],[950,2,2,2,4],[951,1,1,4,5],[952,3,3,5,8],[954,1,1,8,9]]],[40,11,11,9,20,[[957,2,2,9,11],[964,1,1,11,12],[966,2,2,12,14],[968,4,4,14,18],[969,2,2,18,20]]],[41,8,8,20,28,[[976,1,1,20,21],[985,1,1,21,22],[989,3,3,22,25],[990,2,2,25,27],[993,1,1,27,28]]],[42,4,4,28,32,[[1000,3,3,28,31],[1004,1,1,31,32]]],[43,1,1,32,33,[[1031,1,1,32,33]]],[57,1,1,33,34,[[1134,1,1,33,34]]],[65,1,1,34,35,[[1168,1,1,34,35]]]],[23229,23360,23894,23897,23956,23959,23997,23998,24098,24235,24246,24513,24616,24617,24685,24693,24694,24695,24719,24751,25102,25553,25685,25686,25687,25716,25717,25832,26159,26184,26208,26410,27431,29985,30721]]],["let",[4,4,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[42,2,2,2,4,[[1007,1,1,2,3],[1014,1,1,3,4]]]],[23367,25188,26567,26793]]],["omitted",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23941]]],["remit",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26890]]],["remitted",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26890]]],["suffer",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,2,2,1,3,[[963,1,1,1,2],[967,1,1,2,3]]],[65,1,1,3,4,[[1177,1,1,3,4]]]],[23931,24475,24656,30881]]],["suffered",[5,5,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,3,3,1,4,[[957,1,1,1,2],[961,2,2,2,4]]],[41,1,1,4,5,[[980,1,1,4,5]]]],[23207,24249,24383,24401,25296]]],["undone",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23941]]],["up",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24179]]]]},{"k":"G864","v":[["abroad",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28355]]]]},{"k":"G865","v":[["good",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29856]]]]},{"k":"G866","v":[["*",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[29734,30246]]],["covetous",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29734]]],["covetousness",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30246]]]]},{"k":"G867","v":[["departing",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27655]]]]},{"k":"G868","v":[["*",[15,15,[[41,4,4,0,4,[[974,1,1,0,1],[976,1,1,1,2],[980,1,1,2,3],[985,1,1,3,4]]],[43,6,6,4,10,[[1022,2,2,4,6],[1029,1,1,6,7],[1032,1,1,7,8],[1036,1,1,8,9],[1039,1,1,9,10]]],[46,1,1,10,11,[[1089,1,1,10,11]]],[53,2,2,11,13,[[1122,1,1,11,12],[1124,1,1,12,13]]],[54,1,1,13,14,[[1126,1,1,13,14]]],[57,1,1,14,15,[[1135,1,1,14,15]]]],[25010,25076,25258,25545,27096,27097,27347,27480,27594,27733,29030,29748,29793,29846,30007]]],["Refrain",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27097]]],["away",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[25258,27096]]],["depart",[4,4,[[41,1,1,0,1,[[985,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]],[54,1,1,3,4,[[1126,1,1,3,4]]]],[25545,29030,29748,29846]]],["departed",[6,6,[[41,2,2,0,2,[[974,1,1,0,1],[976,1,1,1,2]]],[43,4,4,2,6,[[1029,1,1,2,3],[1032,1,1,3,4],[1036,1,1,4,5],[1039,1,1,5,6]]]],[25010,25076,27347,27480,27594,27733]]],["departing",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30007]]],["thyself",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29793]]]]},{"k":"G869","v":[["suddenly",[3,3,[[43,3,3,0,3,[[1019,1,1,0,1],[1033,1,1,1,2],[1045,1,1,2,3]]]],[26951,27509,27905]]]]},{"k":"G870","v":[["fear",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[45,1,1,1,2,[[1077,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[24967,28786,29375,30684]]]]},{"k":"G871","v":[["unto",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30067]]]]},{"k":"G872","v":[["Looking",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30214]]]]},{"k":"G873","v":[["*",[10,9,[[39,3,2,0,2,[[941,1,1,0,1],[953,2,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[43,2,2,3,5,[[1030,1,1,3,4],[1036,1,1,4,5]]],[44,1,1,5,6,[[1046,1,1,5,6]]],[46,1,1,6,7,[[1083,1,1,6,7]]],[47,2,2,7,9,[[1091,1,1,7,8],[1092,1,1,8,9]]]],[23588,24040,25168,27364,27594,27931,28915,29072,29093]]],["+",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27364]]],["divideth",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24040]]],["separate",[3,3,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[46,1,1,2,3,[[1083,1,1,2,3]]]],[24040,25168,28915]]],["separated",[4,4,[[43,1,1,0,1,[[1036,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[47,2,2,2,4,[[1091,1,1,2,3],[1092,1,1,3,4]]]],[27594,27931,29072,29093]]],["sever",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23588]]]]},{"k":"G874","v":[["occasion",[7,6,[[44,2,2,0,2,[[1052,2,2,0,2]]],[46,3,2,2,4,[[1082,1,1,2,3],[1088,2,1,3,4]]],[47,1,1,4,5,[[1095,1,1,4,5]]],[53,1,1,5,6,[[1123,1,1,5,6]]]],[28099,28102,28889,29001,29175,29777]]]]},{"k":"G875","v":[["*",[2,2,[[40,2,2,0,2,[[965,2,2,0,2]]]],[24556,24558]]],["foameth",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24556]]],["foaming",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24558]]]]},{"k":"G876","v":[["+",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25340]]]]},{"k":"G877","v":[["*",[4,4,[[40,1,1,0,1,[[963,1,1,0,1]]],[46,3,3,1,4,[[1088,3,3,1,4]]]],[24485,28990,29006,29010]]],["+",[2,2,[[46,2,2,0,2,[[1088,2,2,0,2]]]],[29006,29010]]],["folly",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28990]]],["foolishness",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24485]]]]},{"k":"G878","v":[["*",[11,10,[[41,2,2,0,2,[[983,1,1,0,1],[984,1,1,1,2]]],[44,1,1,2,3,[[1047,1,1,2,3]]],[45,1,1,3,4,[[1076,1,1,3,4]]],[46,5,4,4,8,[[1088,3,2,4,6],[1089,2,2,6,8]]],[48,1,1,8,9,[[1101,1,1,8,9]]],[59,1,1,9,10,[[1152,1,1,9,10]]]],[25445,25479,27982,28754,29005,29008,29028,29033,29321,30414]]],["fool",[6,5,[[41,1,1,0,1,[[984,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[46,4,3,2,5,[[1088,2,1,2,3],[1089,2,2,3,5]]]],[25479,28754,29005,29028,29033]]],["foolish",[2,2,[[44,1,1,0,1,[[1047,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[27982,30414]]],["fools",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[25445,29008]]],["unwise",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29321]]]]},{"k":"G879","v":[["asleep",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25268]]]]},{"k":"G880","v":[["*",[4,4,[[43,1,1,0,1,[[1025,1,1,0,1]]],[45,2,2,1,3,[[1073,1,1,1,2],[1075,1,1,2,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]]],[27208,28636,28688,30516]]],["dumb",[3,3,[[43,1,1,0,1,[[1025,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[27208,28636,30516]]],["signification",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28688]]]]},{"k":"G881","v":[["Achaz",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23153]]]]},{"k":"G882","v":[["Achaia",[11,11,[[43,3,3,0,3,[[1035,2,2,0,2],[1036,1,1,2,3]]],[44,2,2,3,5,[[1060,1,1,3,4],[1061,1,1,4,5]]],[45,1,1,5,6,[[1077,1,1,5,6]]],[46,3,3,6,9,[[1078,1,1,6,7],[1086,1,1,7,8],[1088,1,1,8,9]]],[51,2,2,9,11,[[1111,2,2,9,11]]]],[27569,27584,27606,28329,28341,28791,28801,28958,28999,29567,29568]]]]},{"k":"G883","v":[["Achaicus",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28793]]]]},{"k":"G884","v":[["unthankful",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[25181,29855]]]]},{"k":"G885","v":[["Achim",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23158]]]]},{"k":"G886","v":[["hands",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[46,1,1,1,2,[[1082,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]]],[24812,28878,29505]]]]},{"k":"G887","v":[["mist",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27373]]]]},{"k":"G888","v":[["unprofitable",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]]],[24038,25661]]]]},{"k":"G889","v":[["unprofitable",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28003]]]]},{"k":"G890","v":[["unprofitable",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29949]]]]},{"k":"G891","v":[["*",[49,49,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,4,4,1,5,[[973,1,1,1,2],[976,1,1,2,3],[989,1,1,3,4],[993,1,1,4,5]]],[43,16,16,5,21,[[1018,1,1,5,6],[1019,1,1,6,7],[1020,1,1,7,8],[1024,1,1,8,9],[1028,1,1,9,10],[1030,2,2,10,12],[1037,3,3,12,15],[1039,2,2,15,17],[1040,1,1,17,18],[1043,1,1,18,19],[1044,1,1,19,20],[1045,1,1,20,21]]],[44,4,4,21,25,[[1046,1,1,21,22],[1050,1,1,22,23],[1053,1,1,23,24],[1056,1,1,24,25]]],[45,3,3,25,28,[[1065,1,1,25,26],[1072,1,1,26,27],[1076,1,1,27,28]]],[46,3,3,28,31,[[1080,1,1,28,29],[1087,2,2,29,31]]],[47,3,3,31,34,[[1093,1,1,31,32],[1094,2,2,32,34]]],[49,2,2,34,36,[[1103,2,2,34,36]]],[57,3,3,36,39,[[1135,1,1,36,37],[1136,1,1,37,38],[1138,1,1,38,39]]],[65,10,10,39,49,[[1168,3,3,39,42],[1173,1,1,42,43],[1178,1,1,43,44],[1180,1,1,44,45],[1181,1,1,45,46],[1183,1,1,46,47],[1184,1,1,47,48],[1186,1,1,48,49]]]],[23995,24913,25076,25678,25850,26925,26978,27017,27134,27312,27368,27373,27630,27632,27637,27708,27726,27735,27845,27888,27914,27943,28060,28138,28234,28444,28626,28743,28855,28984,28985,29121,29133,29150,29366,29367,30008,30026,30055,30727,30742,30743,30813,30902,30946,30954,30992,30998,31041]]],["+",[12,12,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,2,2,1,3,[[1024,1,1,1,2],[1044,1,1,2,3]]],[44,2,2,3,5,[[1046,1,1,3,4],[1056,1,1,4,5]]],[45,2,2,5,7,[[1072,1,1,5,6],[1076,1,1,6,7]]],[47,2,2,7,9,[[1093,1,1,7,8],[1094,1,1,8,9]]],[57,1,1,9,10,[[1135,1,1,9,10]]],[65,2,2,10,12,[[1168,1,1,10,11],[1173,1,1,11,12]]]],[25076,27134,27888,27943,28234,28626,28743,29121,29150,30008,30742,30813]]],["Until",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26925]]],["as",[2,2,[[43,1,1,0,1,[[1045,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]]],[27914,28985]]],["for",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27373]]],["in",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27632]]],["into",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27630]]],["till",[3,3,[[43,1,1,0,1,[[1037,1,1,0,1]]],[65,2,2,1,3,[[1181,1,1,1,2],[1186,1,1,2,3]]]],[27637,30954,31041]]],["to",[2,2,[[43,1,1,0,1,[[1028,1,1,0,1]]],[57,1,1,1,2,[[1136,1,1,1,2]]]],[27312,30026]]],["until",[13,13,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,3,3,1,4,[[973,1,1,1,2],[989,1,1,2,3],[993,1,1,3,4]]],[43,2,2,4,6,[[1020,1,1,4,5],[1040,1,1,5,6]]],[44,2,2,6,8,[[1050,1,1,6,7],[1053,1,1,7,8]]],[46,1,1,8,9,[[1080,1,1,8,9]]],[47,1,1,9,10,[[1094,1,1,9,10]]],[49,2,2,10,12,[[1103,2,2,10,12]]],[65,1,1,12,13,[[1183,1,1,12,13]]]],[23995,24913,25678,25850,27017,27735,28060,28138,28855,29133,29366,29367,30992]]],["unto",[13,13,[[43,5,5,0,5,[[1019,1,1,0,1],[1030,1,1,1,2],[1039,2,2,2,4],[1043,1,1,4,5]]],[45,1,1,5,6,[[1065,1,1,5,6]]],[46,1,1,6,7,[[1087,1,1,6,7]]],[57,1,1,7,8,[[1138,1,1,7,8]]],[65,5,5,8,13,[[1168,2,2,8,10],[1178,1,1,10,11],[1180,1,1,11,12],[1184,1,1,12,13]]]],[26978,27368,27708,27726,27845,28444,28984,30055,30727,30743,30902,30946,30998]]]]},{"k":"G892","v":[["chaff",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23204,25042]]]]},{"k":"G893","v":[["lie",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29894]]]]},{"k":"G894","v":[["*",[2,1,[[65,2,1,0,1,[[1174,2,1,0,1]]]],[30838]]],["+",[1,1,[[65,1,1,0,1,[[1174,1,1,0,1]]]],[30838]]],["Wormwood",[1,1,[[65,1,1,0,1,[[1174,1,1,0,1]]]],[30838]]]]},{"k":"G895","v":[["life",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28685]]]]},{"k":"G896","v":[["Baal",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28213]]]]},{"k":"G897","v":[["*",[12,11,[[39,4,3,0,3,[[929,4,3,0,3]]],[43,1,1,3,4,[[1024,1,1,3,4]]],[59,1,1,4,5,[[1155,1,1,4,5]]],[65,6,6,5,11,[[1180,1,1,5,6],[1182,1,1,6,7],[1183,1,1,7,8],[1184,3,3,8,11]]]],[23155,23156,23161,27159,30478,30934,30973,30980,30995,31003,31014]]],["BABYLON",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30980]]],["Babylon",[11,10,[[39,4,3,0,3,[[929,4,3,0,3]]],[43,1,1,3,4,[[1024,1,1,3,4]]],[59,1,1,4,5,[[1155,1,1,4,5]]],[65,5,5,5,10,[[1180,1,1,5,6],[1182,1,1,6,7],[1184,3,3,7,10]]]],[23155,23156,23161,27159,30478,30934,30973,30995,31003,31014]]]]},{"k":"G898","v":[["degree",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29744]]]]},{"k":"G899","v":[["*",[9,9,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[977,1,1,2,3]]],[44,2,2,3,5,[[1053,1,1,3,4],[1056,1,1,4,5]]],[45,1,1,5,6,[[1063,1,1,5,6]]],[46,1,1,6,7,[[1085,1,1,6,7]]],[48,1,1,7,8,[[1099,1,1,7,8]]],[65,1,1,8,9,[[1168,1,1,8,9]]]],[23544,24328,25111,28155,28242,28404,28934,29269,30741]]],["deep",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]]],[25111,28934]]],["deepness",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23544]]],["depth",[4,4,[[40,1,1,0,1,[[960,1,1,0,1]]],[44,2,2,1,3,[[1053,1,1,1,2],[1056,1,1,2,3]]],[48,1,1,3,4,[[1099,1,1,3,4]]]],[24328,28155,28242,29269]]],["depths",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30741]]],["things",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28404]]]]},{"k":"G900","v":[["deep",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25194]]]]},{"k":"G901","v":[["*",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]],[43,1,1,2,3,[[1037,1,1,2,3]]]],[25992,26167,27635]]],["+",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[25992]]],["deep",[2,2,[[42,1,1,0,1,[[1000,1,1,0,1]]],[43,1,1,1,2,[[1037,1,1,1,2]]]],[26167,27635]]]]},{"k":"G902","v":[["branches",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26593]]]]},{"k":"G903","v":[["Balaam",[3,3,[[60,1,1,0,1,[[1157,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[30515,30683,30731]]]]},{"k":"G904","v":[["Balac",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30731]]]]},{"k":"G905","v":[["*",[4,4,[[41,4,4,0,4,[[982,1,1,0,1],[984,1,1,1,2],[994,2,2,2,4]]]],[25367,25492,25899,25900]]],["bags",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25492]]],["purse",[3,3,[[41,3,3,0,3,[[982,1,1,0,1],[994,2,2,1,3]]]],[25367,25899,25900]]]]},{"k":"G906","v":[["*",[125,107,[[39,36,29,0,29,[[931,1,1,0,1],[932,2,2,1,3],[933,6,4,3,7],[934,1,1,7,8],[935,2,2,8,10],[936,2,2,10,12],[937,3,2,12,14],[938,2,1,14,15],[941,4,4,15,19],[943,1,1,19,20],[945,1,1,20,21],[946,5,3,21,24],[949,1,1,24,25],[953,1,1,25,26],[954,1,1,26,27],[955,3,2,27,29]]],[40,20,17,29,46,[[957,1,1,29,30],[958,1,1,30,31],[960,1,1,31,32],[963,3,3,32,35],[965,4,4,35,39],[967,1,1,39,40],[968,7,4,40,44],[970,1,1,44,45],[971,1,1,45,46]]],[41,18,17,46,63,[[975,1,1,46,47],[976,1,1,47,48],[977,1,1,48,49],[984,3,3,49,52],[985,2,2,52,54],[986,1,1,54,55],[988,1,1,55,56],[993,5,4,56,60],[995,3,3,60,63]]],[42,17,14,63,77,[[999,1,1,63,64],[1001,1,1,64,65],[1004,2,2,65,67],[1008,1,1,67,68],[1009,2,2,68,70],[1011,2,1,70,71],[1014,1,1,71,72],[1015,1,1,72,73],[1016,3,2,73,75],[1017,3,2,75,77]]],[43,5,5,77,82,[[1033,3,3,77,80],[1039,1,1,80,81],[1044,1,1,81,82]]],[58,1,1,82,83,[[1148,1,1,82,83]]],[61,1,1,83,84,[[1162,1,1,83,84]]],[65,27,23,84,107,[[1168,4,4,84,88],[1170,1,1,88,89],[1172,1,1,89,90],[1174,3,3,90,93],[1178,7,5,93,98],[1180,3,2,98,100],[1184,3,2,100,102],[1185,1,1,102,103],[1186,4,4,103,107]]]],[23202,23215,23227,23247,23259,23263,23264,23312,23322,23335,23351,23359,23381,23396,23451,23581,23586,23587,23589,23659,23727,23735,23736,23757,23847,24035,24066,24135,24164,24231,24282,24349,24490,24493,24496,24560,24580,24583,24585,24663,24714,24715,24716,24717,24819,24850,25034,25072,25144,25487,25508,25517,25526,25537,25588,25640,25827,25828,25829,25830,25954,25960,25969,26144,26217,26388,26440,26586,26632,26635,26705,26796,26849,26892,26894,26904,26905,27506,27507,27520,27727,27869,30322,30621,30727,30731,30739,30741,30778,30806,30832,30834,30835,30895,30900,30904,30906,30907,30942,30945,31012,31014,31037,31041,31048,31052,31053]]],["+",[2,2,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[24716,25526]]],["Cast",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26904]]],["arose",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27869]]],["cast",[71,66,[[39,24,20,0,20,[[931,1,1,0,1],[932,1,1,1,2],[933,6,4,2,6],[934,1,1,6,7],[935,2,2,7,9],[941,4,4,9,13],[943,1,1,13,14],[945,1,1,14,15],[946,5,3,15,18],[949,1,1,18,19],[955,1,1,19,20]]],[40,9,9,20,29,[[960,1,1,20,21],[963,1,1,21,22],[965,4,4,22,26],[967,1,1,26,27],[968,2,2,27,29]]],[41,9,9,29,38,[[975,1,1,29,30],[976,1,1,30,31],[984,2,2,31,33],[985,1,1,33,34],[986,1,1,34,35],[995,3,3,35,38]]],[42,8,7,38,45,[[999,1,1,38,39],[1004,2,2,39,41],[1011,2,1,41,42],[1015,1,1,42,43],[1017,2,2,43,45]]],[43,2,2,45,47,[[1033,2,2,45,47]]],[65,19,19,47,66,[[1168,3,3,47,50],[1170,1,1,50,51],[1174,3,3,51,54],[1178,4,4,54,58],[1180,1,1,58,59],[1184,2,2,59,61],[1185,1,1,61,62],[1186,4,4,62,66]]]],[23202,23215,23247,23259,23263,23264,23312,23322,23335,23581,23586,23587,23589,23659,23727,23735,23736,23757,23847,24164,24349,24490,24560,24580,24583,24585,24663,24714,24716,25034,25072,25487,25517,25537,25588,25954,25960,25969,26144,26388,26440,26705,26849,26904,26905,27506,27520,30727,30731,30739,30778,30832,30834,30835,30895,30904,30906,30907,30945,31012,31014,31037,31041,31048,31052,31053]]],["casteth",[2,2,[[61,1,1,0,1,[[1162,1,1,0,1]]],[65,1,1,1,2,[[1172,1,1,1,2]]]],[30621,30806]]],["casting",[5,5,[[39,2,2,0,2,[[932,1,1,0,1],[955,1,1,1,2]]],[40,2,2,2,4,[[957,1,1,2,3],[971,1,1,3,4]]],[41,1,1,4,5,[[993,1,1,4,5]]]],[23227,24164,24231,24850,25827]]],["down",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31014]]],["in",[10,8,[[40,4,3,0,3,[[968,4,3,0,3]]],[41,4,3,3,6,[[993,4,3,3,6]]],[65,2,2,6,8,[[1180,2,2,6,8]]]],[24714,24715,24717,25828,25829,25830,30942,30945]]],["laid",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]]],[23359,24493,25640]]],["lieth",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23351]]],["lying",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23381]]],["out",[3,1,[[65,3,1,0,1,[[1178,3,1,0,1]]]],[30900]]],["poured",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24066]]],["poureth",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26635]]],["put",[11,10,[[39,4,3,0,3,[[937,2,1,0,1],[953,1,1,1,2],[955,1,1,2,3]]],[40,1,1,3,4,[[963,1,1,3,4]]],[42,4,4,4,8,[[1001,1,1,4,5],[1008,1,1,5,6],[1009,1,1,6,7],[1016,1,1,7,8]]],[58,1,1,8,9,[[1148,1,1,8,9]]],[65,1,1,9,10,[[1168,1,1,9,10]]]],[23396,24035,24135,24496,26217,26586,26632,26892,30322,30741]]],["putteth",[2,2,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]]],[24282,25144]]],["send",[3,2,[[39,2,1,0,1,[[938,2,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23451,25508]]],["strike",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24819]]],["threw",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27727]]],["thrust",[3,3,[[42,2,2,0,2,[[1016,2,2,0,2]]],[43,1,1,2,3,[[1033,1,1,2,3]]]],[26892,26894,27507]]],["up",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26796]]]]},{"k":"G907","v":[["*",[80,65,[[39,11,8,0,8,[[931,6,5,0,5],[948,4,2,5,7],[956,1,1,7,8]]],[40,12,9,8,17,[[957,5,4,8,12],[962,1,1,12,13],[963,1,1,13,14],[966,4,2,14,16],[972,1,1,16,17]]],[41,10,8,17,25,[[975,6,4,17,21],[979,2,2,21,23],[983,1,1,23,24],[984,1,1,24,25]]],[42,13,11,25,36,[[997,6,5,25,30],[999,4,3,30,33],[1000,2,2,33,35],[1006,1,1,35,36]]],[43,21,19,36,55,[[1018,2,1,36,37],[1019,2,2,37,39],[1025,5,5,39,44],[1026,1,1,44,45],[1027,2,2,45,47],[1028,2,1,47,48],[1033,2,2,48,50],[1035,1,1,50,51],[1036,3,3,51,54],[1039,1,1,54,55]]],[44,2,1,55,56,[[1051,2,1,55,56]]],[45,10,8,56,64,[[1062,6,5,56,61],[1071,1,1,61,62],[1073,1,1,62,63],[1076,2,1,63,64]]],[47,1,1,64,65,[[1093,1,1,64,65]]]],[23198,23203,23205,23206,23208,23814,23815,24214,24219,24220,24223,24224,24421,24467,24626,24627,24889,25032,25037,25041,25046,25224,25225,25443,25509,26069,26070,26072,26075,26077,26142,26143,26146,26157,26158,26521,26928,26987,26990,27188,27189,27192,27212,27214,27234,27306,27307,27323,27498,27516,27565,27588,27589,27590,27720,28071,28376,28377,28378,28379,28380,28569,28647,28747,29129]]],["+",[2,2,[[42,1,1,0,1,[[1006,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]]],[26521,28379]]],["Baptist",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24421]]],["baptize",[9,7,[[39,2,1,0,1,[[931,2,1,0,1]]],[40,2,2,1,3,[[957,2,2,1,3]]],[41,2,1,3,4,[[975,2,1,3,4]]],[42,2,2,4,6,[[997,2,2,4,6]]],[45,1,1,6,7,[[1062,1,1,6,7]]]],[23203,24219,24223,25041,26070,26077,28380]]],["baptized",[59,50,[[39,8,6,0,6,[[931,4,4,0,4],[948,4,2,4,6]]],[40,8,6,6,12,[[957,3,3,6,9],[966,4,2,9,11],[972,1,1,11,12]]],[41,7,6,12,18,[[975,4,3,12,15],[979,2,2,15,17],[984,1,1,17,18]]],[42,4,4,18,22,[[999,2,2,18,20],[1000,2,2,20,22]]],[43,21,19,22,41,[[1018,2,1,22,23],[1019,2,2,23,25],[1025,5,5,25,30],[1026,1,1,30,31],[1027,2,2,31,33],[1028,2,1,33,34],[1033,2,2,34,36],[1035,1,1,36,37],[1036,3,3,37,40],[1039,1,1,40,41]]],[44,2,1,41,42,[[1051,2,1,41,42]]],[45,8,7,42,49,[[1062,4,4,42,46],[1071,1,1,46,47],[1073,1,1,47,48],[1076,2,1,48,49]]],[47,1,1,49,50,[[1093,1,1,49,50]]]],[23198,23205,23206,23208,23814,23815,24220,24223,24224,24626,24627,24889,25032,25037,25046,25224,25225,25509,26142,26143,26157,26158,26928,26987,26990,27188,27189,27192,27212,27214,27234,27306,27307,27323,27498,27516,27565,27588,27589,27590,27720,28071,28376,28377,28378,28379,28569,28647,28747,29129]]],["baptizest",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26069]]],["baptizeth",[2,2,[[42,2,2,0,2,[[997,1,1,0,1],[999,1,1,1,2]]]],[26077,26146]]],["baptizing",[4,4,[[39,1,1,0,1,[[956,1,1,0,1]]],[42,3,3,1,4,[[997,2,2,1,3],[999,1,1,3,4]]]],[24214,26072,26075,26143]]],["wash",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24467]]],["washed",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25443]]]]},{"k":"G908","v":[["baptism",[22,22,[[39,4,4,0,4,[[931,1,1,0,1],[948,2,2,1,3],[949,1,1,3,4]]],[40,4,4,4,8,[[957,1,1,4,5],[966,2,2,5,7],[967,1,1,7,8]]],[41,4,4,8,12,[[975,1,1,8,9],[979,1,1,9,10],[984,1,1,10,11],[992,1,1,11,12]]],[43,6,6,12,18,[[1018,1,1,12,13],[1027,1,1,13,14],[1030,1,1,14,15],[1035,1,1,15,16],[1036,2,2,16,18]]],[44,1,1,18,19,[[1051,1,1,18,19]]],[48,1,1,19,20,[[1100,1,1,19,20]]],[50,1,1,20,21,[[1108,1,1,20,21]]],[59,1,1,21,22,[[1153,1,1,21,22]]]],[23199,23814,23815,23851,24219,24626,24627,24670,25028,25224,25509,25783,26945,27296,27386,27582,27588,27589,28072,29277,29506,30445]]]]},{"k":"G909","v":[["*",[4,4,[[40,2,2,0,2,[[963,2,2,0,2]]],[57,2,2,2,4,[[1138,1,1,2,3],[1141,1,1,3,4]]]],[24467,24471,30046,30115]]],["baptisms",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30046]]],["washing",[2,2,[[40,2,2,0,2,[[963,2,2,0,2]]]],[24467,24471]]],["washings",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30115]]]]},{"k":"G910","v":[["*",[14,14,[[39,7,7,0,7,[[931,1,1,0,1],[939,2,2,1,3],[942,2,2,3,5],[944,1,1,5,6],[945,1,1,6,7]]],[40,3,3,7,10,[[962,2,2,7,9],[964,1,1,9,10]]],[41,4,4,10,14,[[979,3,3,10,13],[981,1,1,13,14]]]],[23193,23470,23471,23599,23605,23686,23713,24431,24432,24528,25215,25223,25228,25320]]],["+",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23686]]],["Baptist",[12,12,[[39,5,5,0,5,[[931,1,1,0,1],[939,2,2,1,3],[942,1,1,3,4],[945,1,1,4,5]]],[40,3,3,5,8,[[962,2,2,5,7],[964,1,1,7,8]]],[41,4,4,8,12,[[979,3,3,8,11],[981,1,1,11,12]]]],[23193,23470,23471,23599,23713,24431,24432,24528,25215,25223,25228,25320]]],["Baptist's",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23605]]]]},{"k":"G911","v":[["*",[3,3,[[41,1,1,0,1,[[988,1,1,0,1]]],[42,1,1,1,2,[[1009,1,1,1,2]]],[65,1,1,2,3,[[1185,1,1,2,3]]]],[25644,26656,31030]]],["dip",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25644]]],["dipped",[2,2,[[42,1,1,0,1,[[1009,1,1,0,1]]],[65,1,1,1,2,[[1185,1,1,1,2]]]],[26656,31030]]]]},{"k":"G912","v":[["Barabbas",[11,10,[[39,5,5,0,5,[[955,5,5,0,5]]],[40,3,3,5,8,[[971,3,3,5,8]]],[41,1,1,8,9,[[995,1,1,8,9]]],[42,2,1,9,10,[[1014,2,1,9,10]]]],[24145,24146,24149,24150,24155,24833,24837,24841,25953,26825]]]]},{"k":"G913","v":[["Barak",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30204]]]]},{"k":"G914","v":[["Barachias",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23953]]]]},{"k":"G915","v":[["*",[6,5,[[43,2,2,0,2,[[1045,2,2,0,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[45,2,1,3,4,[[1075,2,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]]],[27901,27903,27944,28689,29528]]],["Barbarian",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29528]]],["Barbarians",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27944]]],["barbarian",[2,1,[[45,2,1,0,1,[[1075,2,1,0,1]]]],[28689]]],["barbarians",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27903]]],["people",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27901]]]]},{"k":"G916","v":[["*",[6,6,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[46,2,2,3,5,[[1078,1,1,3,4],[1082,1,1,4,5]]],[53,1,1,5,6,[[1123,1,1,5,6]]]],[24097,24794,25333,28808,28881,29779]]],["burdened",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28881]]],["charged",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29779]]],["heavy",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]]],[24097,24794,25333]]],["pressed",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28808]]]]},{"k":"G917","v":[["+",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]]],[23554,27926]]]]},{"k":"G918","v":[["Bartholomew",[4,4,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[43,1,1,3,4,[[1018,1,1,3,4]]]],[23420,24306,25160,26936]]]]},{"k":"G919","v":[["Barjesus",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27368]]]]},{"k":"G920","v":[["Barjona",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23689]]]]},{"k":"G921","v":[["*",[29,28,[[43,24,23,0,23,[[1021,1,1,0,1],[1026,1,1,1,2],[1028,3,3,2,5],[1029,1,1,5,6],[1030,6,6,6,12],[1031,3,3,12,15],[1032,9,8,15,23]]],[45,1,1,23,24,[[1070,1,1,23,24]]],[47,3,3,24,27,[[1092,3,3,24,27]]],[50,1,1,27,28,[[1110,1,1,27,28]]]],[27058,27243,27329,27332,27337,27362,27363,27364,27369,27405,27408,27412,27426,27428,27434,27444,27454,27464,27467,27477,27478,27479,27481,28546,29082,29090,29094,29552]]],["+",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27426]]],["Barnabas",[28,27,[[43,23,22,0,22,[[1021,1,1,0,1],[1026,1,1,1,2],[1028,3,3,2,5],[1029,1,1,5,6],[1030,6,6,6,12],[1031,2,2,12,14],[1032,9,8,14,22]]],[45,1,1,22,23,[[1070,1,1,22,23]]],[47,3,3,23,26,[[1092,3,3,23,26]]],[50,1,1,26,27,[[1110,1,1,26,27]]]],[27058,27243,27329,27332,27337,27362,27363,27364,27369,27405,27408,27412,27428,27434,27444,27454,27464,27467,27477,27478,27479,27481,28546,29082,29090,29094,29552]]]]},{"k":"G922","v":[["*",[6,6,[[39,1,1,0,1,[[948,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]],[46,1,1,2,3,[[1081,1,1,2,3]]],[47,1,1,3,4,[[1096,1,1,3,4]]],[51,1,1,4,5,[[1112,1,1,4,5]]],[65,1,1,5,6,[[1168,1,1,5,6]]]],[23804,27470,28876,29190,29576,30741]]],["+",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29576]]],["burden",[3,3,[[39,1,1,0,1,[[948,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[23804,27470,30741]]],["burdens",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29190]]],["weight",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28876]]]]},{"k":"G923","v":[["Barsabas",[2,2,[[43,2,2,0,2,[[1018,1,1,0,1],[1032,1,1,1,2]]]],[26946,27464]]]]},{"k":"G924","v":[["Bartimaeus",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24634]]]]},{"k":"G925","v":[["overcharged",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25860]]]]},{"k":"G926","v":[["*",[6,6,[[39,2,2,0,2,[[951,2,2,0,2]]],[43,2,2,2,4,[[1037,1,1,2,3],[1042,1,1,3,4]]],[46,1,1,4,5,[[1087,1,1,4,5]]],[61,1,1,5,6,[[1163,1,1,5,6]]]],[23922,23941,27655,27803,28981,30627]]],["grievous",[3,3,[[43,2,2,0,2,[[1037,1,1,0,1],[1042,1,1,1,2]]],[61,1,1,2,3,[[1163,1,1,2,3]]]],[27655,27803,30627]]],["heavy",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23922]]],["weightier",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23941]]],["weighty",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28981]]]]},{"k":"G927","v":[["precious",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24061]]]]},{"k":"G928","v":[["*",[12,12,[[39,3,3,0,3,[[936,2,2,0,2],[942,1,1,2,3]]],[40,2,2,3,5,[[961,1,1,3,4],[962,1,1,4,5]]],[41,1,1,5,6,[[980,1,1,5,6]]],[60,1,1,6,7,[[1157,1,1,6,7]]],[65,5,5,7,12,[[1175,1,1,7,8],[1177,1,1,8,9],[1178,1,1,9,10],[1180,1,1,10,11],[1186,1,1,11,12]]]],[23351,23374,23621,24371,24455,25273,30508,30845,30882,30893,30936,31048]]],["pained",[1,1,[[65,1,1,0,1,[[1178,1,1,0,1]]]],[30893]]],["toiling",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24455]]],["torment",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23374,24371,25273]]],["tormented",[5,5,[[39,1,1,0,1,[[936,1,1,0,1]]],[65,4,4,1,5,[[1175,1,1,1,2],[1177,1,1,2,3],[1180,1,1,3,4],[1186,1,1,4,5]]]],[23351,30845,30882,30936,31048]]],["tossed",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23621]]],["vexed",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30508]]]]},{"k":"G929","v":[["torment",[6,5,[[65,6,5,0,5,[[1175,2,1,0,1],[1180,1,1,1,2],[1184,3,3,2,5]]]],[30845,30937,31000,31003,31008]]]]},{"k":"G930","v":[["tormentors",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23761]]]]},{"k":"G931","v":[["*",[3,3,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,2,2,1,3,[[988,2,2,1,3]]]],[23233,25643,25648]]],["torment",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25648]]],["torments",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]]],[23233,25643]]]]},{"k":"G932","v":[["*",[162,154,[[39,56,54,0,54,[[931,1,1,0,1],[932,3,3,1,4],[933,5,4,4,8],[934,3,3,8,11],[935,1,1,11,12],[936,2,2,12,14],[937,1,1,14,15],[938,1,1,15,16],[939,2,2,16,18],[940,3,3,18,21],[941,12,12,21,33],[944,2,2,33,35],[946,4,4,35,39],[947,4,4,39,43],[948,2,2,43,45],[949,2,2,45,47],[950,1,1,47,48],[951,1,1,48,49],[952,3,2,49,51],[953,2,2,51,53],[954,1,1,53,54]]],[40,21,19,54,73,[[957,2,2,54,56],[959,2,1,56,57],[960,3,3,57,60],[962,1,1,60,61],[965,2,2,61,63],[966,5,5,63,68],[967,1,1,68,69],[968,1,1,69,70],[969,2,1,70,71],[970,1,1,71,72],[971,1,1,72,73]]],[41,46,44,73,117,[[973,1,1,73,74],[976,2,2,74,76],[978,1,1,76,77],[979,1,1,77,78],[980,2,2,78,80],[981,5,5,80,85],[982,2,2,85,87],[983,4,4,87,91],[984,2,2,91,93],[985,4,4,93,97],[986,1,1,97,98],[988,1,1,98,99],[989,3,2,99,101],[990,5,5,101,106],[991,3,3,106,109],[993,3,2,109,111],[994,4,4,111,115],[995,2,2,115,117]]],[42,5,3,117,120,[[999,2,2,117,119],[1014,3,1,119,120]]],[43,8,8,120,128,[[1018,2,2,120,122],[1025,1,1,122,123],[1031,1,1,123,124],[1036,1,1,124,125],[1037,1,1,125,126],[1045,2,2,126,128]]],[44,1,1,128,129,[[1059,1,1,128,129]]],[45,5,5,129,134,[[1065,1,1,129,130],[1067,2,2,130,132],[1076,2,2,132,134]]],[47,1,1,134,135,[[1095,1,1,134,135]]],[48,1,1,135,136,[[1101,1,1,135,136]]],[50,2,2,136,138,[[1107,1,1,136,137],[1110,1,1,137,138]]],[51,1,1,138,139,[[1112,1,1,138,139]]],[52,1,1,139,140,[[1116,1,1,139,140]]],[54,2,2,140,142,[[1128,2,2,140,142]]],[57,3,3,142,145,[[1133,1,1,142,143],[1143,1,1,143,144],[1144,1,1,144,145]]],[58,1,1,145,146,[[1147,1,1,145,146]]],[60,1,1,146,147,[[1156,1,1,146,147]]],[65,7,7,147,154,[[1167,1,1,147,148],[1177,1,1,148,149],[1178,1,1,149,150],[1182,1,1,150,151],[1183,3,3,151,154]]]],[23194,23217,23226,23232,23237,23244,23253,23254,23292,23295,23315,23337,23356,23357,23414,23424,23470,23471,23514,23515,23517,23550,23558,23563,23570,23572,23577,23580,23582,23583,23584,23586,23591,23691,23700,23728,23730,23731,23750,23774,23776,23785,23786,23793,23813,23857,23869,23874,23931,23964,23971,24009,24042,24083,24229,24230,24312,24334,24349,24353,24430,24539,24585,24602,24603,24611,24612,24613,24650,24707,24725,24779,24869,24926,25068,25106,25166,25223,25246,25255,25303,25312,25328,25361,25363,25372,25374,25407,25422,25423,25425,25490,25491,25536,25538,25546,25547,25568,25636,25671,25672,25704,25705,25712,25713,25717,25742,25743,25746,25836,25857,25880,25882,25893,25894,25977,25986,26123,26125,26821,26926,26929,27188,27436,27593,27651,27922,27930,28297,28453,28476,28477,28742,28768,29183,29309,29478,29553,29582,29654,29871,29888,29971,30205,30240,30298,30490,30706,30887,30901,30964,30987,30992,30993]]],["+",[5,5,[[39,2,2,0,2,[[947,1,1,0,1],[949,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[65,2,2,3,5,[[1183,2,2,3,5]]]],[23774,23857,25717,30987,30993]]],["kingdom",[153,145,[[39,53,51,0,51,[[931,1,1,0,1],[932,2,2,1,3],[933,5,4,3,7],[934,3,3,7,10],[935,1,1,10,11],[936,2,2,11,13],[937,1,1,13,14],[938,1,1,14,15],[939,2,2,15,17],[940,3,3,17,20],[941,12,12,20,32],[944,2,2,32,34],[946,4,4,34,38],[947,3,3,38,41],[948,2,2,41,43],[949,1,1,43,44],[950,1,1,44,45],[951,1,1,45,46],[952,3,2,46,48],[953,2,2,48,50],[954,1,1,50,51]]],[40,21,19,51,70,[[957,2,2,51,53],[959,2,1,53,54],[960,3,3,54,57],[962,1,1,57,58],[965,2,2,58,60],[966,5,5,60,65],[967,1,1,65,66],[968,1,1,66,67],[969,2,1,67,68],[970,1,1,68,69],[971,1,1,69,70]]],[41,44,42,70,112,[[973,1,1,70,71],[976,1,1,71,72],[978,1,1,72,73],[979,1,1,73,74],[980,2,2,74,76],[981,5,5,76,81],[982,2,2,81,83],[983,4,4,83,87],[984,2,2,87,89],[985,4,4,89,93],[986,1,1,93,94],[988,1,1,94,95],[989,3,2,95,97],[990,4,4,97,101],[991,3,3,101,104],[993,3,2,104,106],[994,4,4,106,110],[995,2,2,110,112]]],[42,5,3,112,115,[[999,2,2,112,114],[1014,3,1,114,115]]],[43,8,8,115,123,[[1018,2,2,115,117],[1025,1,1,117,118],[1031,1,1,118,119],[1036,1,1,119,120],[1037,1,1,120,121],[1045,2,2,121,123]]],[44,1,1,123,124,[[1059,1,1,123,124]]],[45,5,5,124,129,[[1065,1,1,124,125],[1067,2,2,125,127],[1076,2,2,127,129]]],[47,1,1,129,130,[[1095,1,1,129,130]]],[48,1,1,130,131,[[1101,1,1,130,131]]],[50,2,2,131,133,[[1107,1,1,131,132],[1110,1,1,132,133]]],[51,1,1,133,134,[[1112,1,1,133,134]]],[52,1,1,134,135,[[1116,1,1,134,135]]],[54,2,2,135,137,[[1128,2,2,135,137]]],[57,2,2,137,139,[[1133,1,1,137,138],[1144,1,1,138,139]]],[58,1,1,139,140,[[1147,1,1,139,140]]],[60,1,1,140,141,[[1156,1,1,140,141]]],[65,4,4,141,145,[[1167,1,1,141,142],[1178,1,1,142,143],[1182,1,1,143,144],[1183,1,1,144,145]]]],[23194,23226,23232,23237,23244,23253,23254,23292,23295,23315,23337,23356,23357,23414,23424,23470,23471,23514,23515,23517,23550,23558,23563,23570,23572,23577,23580,23582,23583,23584,23586,23591,23691,23700,23728,23730,23731,23750,23776,23785,23786,23793,23813,23869,23874,23931,23964,23971,24009,24042,24083,24229,24230,24312,24334,24349,24353,24430,24539,24585,24602,24603,24611,24612,24613,24650,24707,24725,24779,24869,24926,25106,25166,25223,25246,25255,25303,25312,25328,25361,25363,25372,25374,25407,25422,25423,25425,25490,25491,25536,25538,25546,25547,25568,25636,25671,25672,25704,25705,25712,25713,25742,25743,25746,25836,25857,25880,25882,25893,25894,25977,25986,26123,26125,26821,26926,26929,27188,27436,27593,27651,27922,27930,28297,28453,28476,28477,28742,28768,29183,29309,29478,29553,29582,29654,29871,29888,29971,30240,30298,30490,30706,30901,30964,30992]]],["kingdoms",[4,4,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]],[65,1,1,3,4,[[1177,1,1,3,4]]]],[23217,25068,30205,30887]]]]},{"k":"G933","v":[["courts",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25220]]]]},{"k":"G934","v":[["royal",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30408]]]]},{"k":"G935","v":[["*",[118,107,[[39,23,22,0,22,[[929,2,1,0,1],[930,4,4,1,5],[933,1,1,5,6],[938,1,1,6,7],[939,1,1,7,8],[942,1,1,8,9],[945,1,1,9,10],[946,1,1,10,11],[949,1,1,11,12],[950,4,4,12,16],[953,2,2,16,18],[955,4,4,18,22]]],[40,12,12,22,34,[[962,5,5,22,27],[969,1,1,27,28],[971,6,6,28,34]]],[41,11,10,34,44,[[973,1,1,34,35],[982,1,1,35,36],[986,2,1,36,37],[991,1,1,37,38],[993,1,1,38,39],[994,1,1,39,40],[995,4,4,40,44]]],[42,16,13,44,57,[[997,1,1,44,45],[1002,1,1,45,46],[1008,2,2,46,48],[1014,4,3,48,51],[1015,8,6,51,57]]],[43,20,20,57,77,[[1021,1,1,57,58],[1024,2,2,58,60],[1026,1,1,60,61],[1029,2,2,61,63],[1030,2,2,63,65],[1034,1,1,65,66],[1042,4,4,66,70],[1043,7,7,70,77]]],[46,1,1,77,78,[[1088,1,1,77,78]]],[53,3,3,78,81,[[1119,1,1,78,79],[1120,1,1,79,80],[1124,1,1,80,81]]],[57,7,4,81,85,[[1139,5,2,81,83],[1143,2,2,83,85]]],[59,2,2,85,87,[[1152,2,2,85,87]]],[65,23,20,87,107,[[1167,2,2,87,89],[1171,1,1,89,90],[1172,1,1,90,91],[1175,1,1,91,92],[1176,1,1,92,93],[1181,1,1,93,94],[1182,2,2,94,96],[1183,7,5,96,101],[1184,2,2,101,103],[1185,4,3,103,106],[1187,1,1,106,107]]]],[23150,23170,23171,23172,23178,23269,23435,23467,23606,23725,23750,23831,23874,23879,23883,23885,24042,24048,24140,24158,24166,24171,24421,24429,24432,24433,24434,24726,24828,24835,24838,24844,24852,24858,24898,25387,25584,25769,25838,25889,25937,25938,25972,25973,26093,26272,26593,26595,26818,26822,26824,26828,26837,26839,26840,26844,26846,27048,27126,27134,27231,27338,27357,27383,27384,27530,27809,27810,27820,27822,27825,27830,27836,27842,27849,27850,27853,29021,29713,29718,29803,30065,30066,30195,30199,30412,30416,30702,30703,30789,30808,30851,30872,30949,30966,30968,30977,30985,30987,30989,30993,30996,31002,31033,31035,31036,31077]]],["+",[4,4,[[39,2,2,0,2,[[946,1,1,0,1],[950,1,1,1,2]]],[43,2,2,2,4,[[1029,1,1,2,3],[1030,1,1,3,4]]]],[23750,23874,27357,27384]]],["KING",[5,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[65,1,1,4,5,[[1185,1,1,4,5]]]],[24166,24852,25973,26844,31033]]],["KINGS",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31033]]],["King",[35,32,[[39,8,8,0,8,[[930,1,1,0,1],[933,1,1,1,2],[949,1,1,2,3],[953,2,2,3,5],[955,3,3,5,8]]],[40,5,5,8,13,[[971,5,5,8,13]]],[41,3,3,13,16,[[991,1,1,13,14],[995,2,2,14,16]]],[42,10,9,16,25,[[997,1,1,16,17],[1008,2,2,17,19],[1014,2,2,19,21],[1015,5,4,21,25]]],[43,2,2,25,27,[[1042,1,1,25,26],[1043,1,1,26,27]]],[53,2,2,27,29,[[1119,1,1,27,28],[1124,1,1,28,29]]],[57,3,1,29,30,[[1139,3,1,29,30]]],[65,2,2,30,32,[[1181,1,1,30,31],[1183,1,1,31,32]]]],[23171,23269,23831,24042,24048,24140,24158,24171,24828,24835,24838,24844,24858,25769,25937,25938,26093,26593,26595,26818,26824,26828,26839,26840,26846,27820,27850,29713,29803,30066,30949,30989]]],["king",[43,40,[[39,9,8,0,8,[[929,2,1,0,1],[930,3,3,1,4],[942,1,1,4,5],[950,3,3,5,8]]],[40,5,5,8,13,[[962,5,5,8,13]]],[41,4,3,13,16,[[973,1,1,13,14],[986,2,1,14,15],[995,1,1,15,16]]],[42,5,4,16,20,[[1002,1,1,16,17],[1014,2,1,17,18],[1015,2,2,18,20]]],[43,14,14,20,34,[[1024,2,2,20,22],[1029,1,1,22,23],[1030,1,1,23,24],[1034,1,1,24,25],[1042,3,3,25,28],[1043,6,6,28,34]]],[46,1,1,34,35,[[1088,1,1,34,35]]],[57,2,2,35,37,[[1139,1,1,35,36],[1143,1,1,36,37]]],[59,2,2,37,39,[[1152,2,2,37,39]]],[65,1,1,39,40,[[1175,1,1,39,40]]]],[23150,23170,23172,23178,23606,23879,23883,23885,24421,24429,24432,24433,24434,24898,25584,25972,26272,26822,26837,26840,27126,27134,27338,27383,27530,27809,27810,27822,27825,27830,27836,27842,27849,27853,29021,30065,30199,30412,30416,30851]]],["king's",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30195]]],["kings",[28,27,[[39,2,2,0,2,[[938,1,1,0,1],[945,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,3,3,3,6,[[982,1,1,3,4],[993,1,1,4,5],[994,1,1,5,6]]],[43,2,2,6,8,[[1021,1,1,6,7],[1026,1,1,7,8]]],[53,1,1,8,9,[[1120,1,1,8,9]]],[57,1,1,9,10,[[1139,1,1,9,10]]],[65,18,17,10,27,[[1167,2,2,10,12],[1171,1,1,12,13],[1172,1,1,13,14],[1176,1,1,14,15],[1182,2,2,15,17],[1183,6,5,17,22],[1184,2,2,22,24],[1185,2,2,24,26],[1187,1,1,26,27]]]],[23435,23725,24726,25387,25838,25889,27048,27231,29718,30065,30702,30703,30789,30808,30872,30966,30968,30977,30985,30987,30989,30993,30996,31002,31035,31036,31077]]],["kings'",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23467]]]]},{"k":"G936","v":[["*",[21,18,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,3,3,1,4,[[973,1,1,1,2],[991,2,2,2,4]]],[44,6,4,4,8,[[1050,5,3,4,7],[1051,1,1,7,8]]],[45,3,2,8,10,[[1065,2,1,8,9],[1076,1,1,9,10]]],[53,1,1,10,11,[[1124,1,1,10,11]]],[65,7,7,11,18,[[1171,1,1,11,12],[1177,2,2,12,14],[1185,1,1,14,15],[1186,2,2,15,17],[1188,1,1,17,18]]]],[23191,24926,25745,25758,28061,28064,28068,28080,28441,28743,29803,30789,30887,30889,31023,31042,31044,31085]]],["kings",[2,2,[[45,1,1,0,1,[[1065,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[28441,29803]]],["reign",[13,13,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,3,3,1,4,[[973,1,1,1,2],[991,2,2,2,4]]],[44,3,3,4,7,[[1050,2,2,4,6],[1051,1,1,6,7]]],[45,2,2,7,9,[[1065,1,1,7,8],[1076,1,1,8,9]]],[65,4,4,9,13,[[1171,1,1,9,10],[1177,1,1,10,11],[1186,1,1,11,12],[1188,1,1,12,13]]]],[23191,24926,25745,25758,28064,28068,28080,28441,28743,30789,30887,31044,31085]]],["reigned",[5,5,[[44,3,3,0,3,[[1050,3,3,0,3]]],[65,2,2,3,5,[[1177,1,1,3,4],[1186,1,1,4,5]]]],[28061,28064,28068,30889,31042]]],["reigneth",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31023]]]]},{"k":"G937","v":[["*",[5,5,[[42,2,2,0,2,[[1000,2,2,0,2]]],[43,2,2,2,4,[[1029,2,2,2,4]]],[58,1,1,4,5,[[1147,1,1,4,5]]]],[26202,26205,27357,27358,30301]]],["king's",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27357]]],["nobleman",[2,2,[[42,2,2,0,2,[[1000,2,2,0,2]]]],[26202,26205]]],["royal",[2,2,[[43,1,1,0,1,[[1029,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[27358,30301]]]]},{"k":"G938","v":[["queen",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[43,1,1,2,3,[[1025,1,1,2,3]]],[65,1,1,3,4,[[1184,1,1,3,4]]]],[23531,25436,27203,31000]]]]},{"k":"G939","v":[["feet",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27003]]]]},{"k":"G940","v":[["bewitched",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29103]]]]},{"k":"G941","v":[["*",[27,27,[[39,3,3,0,3,[[931,1,1,0,1],[936,1,1,1,2],[948,1,1,2,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[41,5,5,4,9,[[979,1,1,4,5],[982,1,1,5,6],[983,1,1,6,7],[986,1,1,7,8],[994,1,1,8,9]]],[42,5,5,9,14,[[1006,1,1,9,10],[1008,1,1,10,11],[1012,1,1,11,12],[1015,1,1,12,13],[1016,1,1,13,14]]],[43,4,4,14,18,[[1020,1,1,14,15],[1026,1,1,15,16],[1032,1,1,16,17],[1038,1,1,17,18]]],[44,2,2,18,20,[[1056,1,1,18,19],[1060,1,1,19,20]]],[47,4,4,20,24,[[1095,1,1,20,21],[1096,3,3,21,24]]],[65,3,3,24,27,[[1168,2,2,24,26],[1183,1,1,26,27]]]],[23203,23362,23804,24767,25209,25367,25432,25580,25874,26512,26586,26738,26842,26882,26998,27231,27452,27699,28227,28304,29172,29190,29193,29205,30719,30720,30982]]],["Bear",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29190]]],["Carry",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25367]]],["bare",[4,4,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,2,2,1,3,[[979,1,1,1,2],[983,1,1,2,3]]],[42,1,1,3,4,[[1008,1,1,3,4]]]],[23362,25209,25432,26586]]],["bear",[10,10,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]],[42,1,1,2,3,[[1012,1,1,2,3]]],[43,2,2,3,5,[[1026,1,1,3,4],[1032,1,1,4,5]]],[44,1,1,5,6,[[1060,1,1,5,6]]],[47,3,3,6,9,[[1095,1,1,6,7],[1096,2,2,7,9]]],[65,1,1,9,10,[[1168,1,1,9,10]]]],[23203,25580,26738,27231,27452,28304,29172,29193,29205,30719]]],["bearest",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28227]]],["bearing",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]]],[24767,25874,26842]]],["borne",[4,4,[[39,1,1,0,1,[[948,1,1,0,1]]],[42,1,1,1,2,[[1016,1,1,1,2]]],[43,1,1,2,3,[[1038,1,1,2,3]]],[65,1,1,3,4,[[1168,1,1,3,4]]]],[23804,26882,27699,30720]]],["carried",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[26998]]],["carrieth",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30982]]],["up",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26512]]]]},{"k":"G942","v":[["bush",[5,5,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,2,2,1,3,[[978,1,1,1,2],[992,1,1,2,3]]],[43,2,2,3,5,[[1024,2,2,3,5]]]],[24699,25190,25816,27146,27151]]]]},{"k":"G943","v":[["measures",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25626]]]]},{"k":"G944","v":[["frogs",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30967]]]]},{"k":"G945","v":[["+",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23289]]]]},{"k":"G946","v":[["*",[6,6,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[65,3,3,3,6,[[1183,2,2,3,5],[1187,1,1,5,6]]]],[23972,24731,25635,30979,30980,31080]]],["ABOMINATIONS",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30980]]],["abomination",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[65,1,1,3,4,[[1187,1,1,3,4]]]],[23972,24731,25635,31080]]],["abominations",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30979]]]]},{"k":"G947","v":[["abominable",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29908]]]]},{"k":"G948","v":[["*",[2,2,[[44,1,1,0,1,[[1047,1,1,0,1]]],[65,1,1,1,2,[[1187,1,1,1,2]]]],[27984,31061]]],["abhorrest",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27984]]],["abominable",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31061]]]]},{"k":"G949","v":[["*",[9,9,[[44,1,1,0,1,[[1049,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]],[57,5,5,2,7,[[1134,1,1,2,3],[1135,2,2,3,5],[1138,1,1,5,6],[1141,1,1,6,7]]],[60,2,2,7,9,[[1156,2,2,7,9]]]],[28038,28807,29979,30001,30009,30063,30122,30489,30498]]],["firm",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30001]]],["force",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30122]]],["stedfast",[4,4,[[46,1,1,0,1,[[1078,1,1,0,1]]],[57,3,3,1,4,[[1134,1,1,1,2],[1135,1,1,2,3],[1138,1,1,3,4]]]],[28807,29979,30009,30063]]],["sure",[3,3,[[44,1,1,0,1,[[1049,1,1,0,1]]],[60,2,2,1,3,[[1156,2,2,1,3]]]],[28038,30489,30498]]]]},{"k":"G950","v":[["*",[8,8,[[40,1,1,0,1,[[972,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[45,2,2,2,4,[[1062,2,2,2,4]]],[46,1,1,4,5,[[1078,1,1,4,5]]],[50,1,1,5,6,[[1108,1,1,5,6]]],[57,2,2,6,8,[[1134,1,1,6,7],[1145,1,1,7,8]]]],[24893,28311,28369,28371,28821,29501,29980,30250]]],["confirm",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]]],[28311,28371]]],["confirmed",[2,2,[[45,1,1,0,1,[[1062,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]]],[28369,29980]]],["confirming",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24893]]],["established",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30250]]],["stablished",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29501]]],["stablisheth",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28821]]]]},{"k":"G951","v":[["confirmation",[2,2,[[49,1,1,0,1,[[1103,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[29368,30060]]]]},{"k":"G952","v":[["*",[5,5,[[53,3,3,0,3,[[1119,1,1,0,1],[1122,1,1,1,2],[1124,1,1,2,3]]],[54,1,1,3,4,[[1126,1,1,3,4]]],[57,1,1,4,5,[[1144,1,1,4,5]]]],[29705,29754,29808,29843,30228]]],["person",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30228]]],["profane",[4,4,[[53,3,3,0,3,[[1119,1,1,0,1],[1122,1,1,1,2],[1124,1,1,2,3]]],[54,1,1,3,4,[[1126,1,1,3,4]]]],[29705,29754,29808,29843]]]]},{"k":"G953","v":[["profane",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]]],[23494,27775]]]]},{"k":"G954","v":[["Beelzebub",[7,7,[[39,3,3,0,3,[[938,1,1,0,1],[940,2,2,1,3]]],[40,1,1,3,4,[[959,1,1,3,4]]],[41,3,3,4,7,[[983,3,3,4,7]]]],[23442,23513,23516,24310,25420,25423,25424]]]]},{"k":"G955","v":[["Belial",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28913]]]]},{"k":"G956","v":[["darts",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29353]]]]},{"k":"G957","v":[["well",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29827]]]]},{"k":"G958","v":[["Benjamin",[4,4,[[43,1,1,0,1,[[1030,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]],[65,1,1,3,4,[[1173,1,1,3,4]]]],[27383,28210,29426,30818]]]]},{"k":"G959","v":[["Bernice",[3,3,[[43,3,3,0,3,[[1042,2,2,0,2],[1043,1,1,2,3]]]],[27809,27819,27853]]]]},{"k":"G960","v":[["Berea",[2,2,[[43,2,2,0,2,[[1034,2,2,0,2]]]],[27533,27536]]]]},{"k":"G961","v":[["Berea",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27630]]]]},{"k":"G962","v":[["Bethabara",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26072]]]]},{"k":"G963","v":[["Bethany",[11,11,[[39,2,2,0,2,[[949,1,1,0,1],[954,1,1,1,2]]],[40,4,4,2,6,[[967,3,3,2,5],[970,1,1,5,6]]],[41,2,2,6,8,[[991,1,1,6,7],[996,1,1,7,8]]],[42,3,3,8,11,[[1007,2,2,8,10],[1008,1,1,10,11]]]],[23843,24060,24641,24651,24652,24757,25760,26041,26524,26541,26581]]]]},{"k":"G964","v":[["Bethesda",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26212]]]]},{"k":"G965","v":[["Bethlehem",[8,8,[[39,5,5,0,5,[[930,5,5,0,5]]],[41,2,2,5,7,[[974,2,2,5,7]]],[42,1,1,7,8,[[1003,1,1,7,8]]]],[23170,23174,23175,23177,23185,24977,24988,26370]]]]},{"k":"G966","v":[["Bethsaida",[7,7,[[39,1,1,0,1,[[939,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[964,1,1,2,3]]],[41,2,2,3,5,[[981,1,1,3,4],[982,1,1,4,5]]],[42,2,2,5,7,[[997,1,1,5,6],[1008,1,1,6,7]]]],[23480,24452,24522,25311,25376,26088,26601]]]]},{"k":"G967","v":[["Bethphage",[3,3,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,1,1,2,3,[[991,1,1,2,3]]]],[23827,24641,25760]]]]},{"k":"G968","v":[["*",[12,12,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]],[43,8,8,2,10,[[1024,1,1,2,3],[1029,1,1,3,4],[1035,3,3,4,7],[1042,3,3,7,10]]],[44,1,1,10,11,[[1059,1,1,10,11]]],[46,1,1,11,12,[[1082,1,1,11,12]]]],[24148,26838,27121,27358,27569,27573,27574,27802,27806,27813,28290,28887]]],["+",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27121]]],["seat",[10,10,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]],[43,6,6,2,8,[[1035,3,3,2,5],[1042,3,3,5,8]]],[44,1,1,8,9,[[1059,1,1,8,9]]],[46,1,1,9,10,[[1082,1,1,9,10]]]],[24148,26838,27569,27573,27574,27802,27806,27813,28290,28887]]],["throne",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27358]]]]},{"k":"G969","v":[["beryl",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31073]]]]},{"k":"G970","v":[["violence",[4,4,[[43,4,4,0,4,[[1022,1,1,0,1],[1038,1,1,1,2],[1041,1,1,2,3],[1044,1,1,3,4]]]],[27085,27699,27776,27896]]]]},{"k":"G971","v":[["*",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]]],[23471,25636]]],["presseth",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25636]]],["violence",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23471]]]]},{"k":"G972","v":[["mighty",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26951]]]]},{"k":"G973","v":[["violent",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23471]]]]},{"k":"G974","v":[["book",[4,4,[[65,4,4,0,4,[[1176,4,4,0,4]]]],[30863,30869,30870,30871]]]]},{"k":"G975","v":[["*",[32,28,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,3,2,2,4,[[976,3,2,2,4]]],[42,2,2,4,6,[[1016,1,1,4,5],[1017,1,1,5,6]]],[47,1,1,6,7,[[1093,1,1,6,7]]],[54,1,1,7,8,[[1128,1,1,7,8]]],[57,2,2,8,10,[[1141,1,1,8,9],[1142,1,1,9,10]]],[65,21,18,10,28,[[1167,1,1,10,11],[1171,8,8,11,19],[1172,1,1,19,20],[1183,1,1,20,21],[1186,3,1,21,22],[1187,1,1,22,23],[1188,6,5,23,28]]]],[23769,24592,25080,25083,26897,26923,29112,29883,30124,30140,30708,30780,30781,30782,30783,30784,30786,30787,30788,30807,30983,31050,31080,31087,31089,31090,31098,31099]]],["bill",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24592]]],["book",[25,23,[[41,3,2,0,2,[[976,3,2,0,2]]],[42,1,1,2,3,[[1016,1,1,2,3]]],[47,1,1,3,4,[[1093,1,1,3,4]]],[57,2,2,4,6,[[1141,1,1,4,5],[1142,1,1,5,6]]],[65,18,17,6,23,[[1167,1,1,6,7],[1171,8,8,7,15],[1183,1,1,15,16],[1186,1,1,16,17],[1187,1,1,17,18],[1188,6,5,18,23]]]],[25080,25083,26897,29112,30124,30140,30708,30780,30781,30782,30783,30784,30786,30787,30788,30983,31050,31080,31087,31089,31090,31098,31099]]],["books",[4,3,[[42,1,1,0,1,[[1017,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]],[65,2,1,2,3,[[1186,2,1,2,3]]]],[26923,29883,31050]]],["scroll",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30807]]],["writing",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23769]]]]},{"k":"G976","v":[["*",[13,12,[[39,1,1,0,1,[[929,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,2,2,4,[[975,1,1,2,3],[992,1,1,3,4]]],[43,3,3,4,7,[[1018,1,1,4,5],[1024,1,1,5,6],[1036,1,1,6,7]]],[49,1,1,7,8,[[1106,1,1,7,8]]],[65,5,4,8,12,[[1169,1,1,8,9],[1179,1,1,9,10],[1186,1,1,10,11],[1188,2,1,11,12]]]],[23145,24699,25029,25821,26943,27158,27604,29445,30751,30916,31053,31099]]],["+",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27604]]],["book",[12,11,[[39,1,1,0,1,[[929,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,2,2,4,[[975,1,1,2,3],[992,1,1,3,4]]],[43,2,2,4,6,[[1018,1,1,4,5],[1024,1,1,5,6]]],[49,1,1,6,7,[[1106,1,1,6,7]]],[65,5,4,7,11,[[1169,1,1,7,8],[1179,1,1,8,9],[1186,1,1,9,10],[1188,2,1,10,11]]]],[23145,24699,25029,25821,26943,27158,29445,30751,30916,31053,31099]]]]},{"k":"G977","v":[["eaten",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26270]]]]},{"k":"G978","v":[["Bithynia",[2,2,[[43,1,1,0,1,[[1033,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[27490,30375]]]]},{"k":"G979","v":[["*",[11,11,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,5,5,1,6,[[980,2,2,1,3],[987,2,2,3,5],[993,1,1,5,6]]],[53,1,1,6,7,[[1120,1,1,6,7]]],[54,1,1,7,8,[[1126,1,1,7,8]]],[59,1,1,8,9,[[1154,1,1,8,9]]],[61,2,2,9,11,[[1160,1,1,9,10],[1161,1,1,10,11]]]],[24717,25259,25288,25600,25618,25830,29718,29831,30449,30566,30596]]],["good",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30596]]],["life",[5,5,[[41,1,1,0,1,[[980,1,1,0,1]]],[53,1,1,1,2,[[1120,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]],[61,1,1,4,5,[[1160,1,1,4,5]]]],[25259,29718,29831,30449,30566]]],["living",[5,5,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,4,4,1,5,[[980,1,1,1,2],[987,2,2,2,4],[993,1,1,4,5]]]],[24717,25288,25600,25618,25830]]]]},{"k":"G980","v":[["live",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30448]]]]},{"k":"G981","v":[["+",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27827]]]]},{"k":"G982","v":[["life",[3,3,[[41,1,1,0,1,[[993,1,1,0,1]]],[45,2,2,1,3,[[1067,2,2,1,3]]]],[25860,28470,28471]]]]},{"k":"G983","v":[["hurtful",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29797]]]]},{"k":"G984","v":[["hurt",[2,2,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]]],[24891,25098]]]]},{"k":"G985","v":[["*",[4,4,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]]],[23565,24350,30109,30372]]],["budded",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30109]]],["forth",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30372]]],["spring",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24350]]],["up",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23565]]]]},{"k":"G986","v":[["+",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27357]]]]},{"k":"G987","v":[["*",[35,35,[[39,3,3,0,3,[[937,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[40,3,3,3,6,[[959,2,2,3,5],[971,1,1,5,6]]],[41,3,3,6,9,[[984,1,1,6,7],[994,1,1,7,8],[995,1,1,8,9]]],[42,1,1,9,10,[[1006,1,1,9,10]]],[43,4,4,10,14,[[1030,1,1,10,11],[1035,1,1,11,12],[1036,1,1,12,13],[1043,1,1,13,14]]],[44,3,3,14,17,[[1047,1,1,14,15],[1048,1,1,15,16],[1059,1,1,16,17]]],[45,2,2,17,19,[[1065,1,1,17,18],[1071,1,1,18,19]]],[53,2,2,19,21,[[1119,1,1,19,20],[1124,1,1,20,21]]],[55,2,2,21,23,[[1130,1,1,21,22],[1131,1,1,22,23]]],[58,1,1,23,24,[[1147,1,1,23,24]]],[59,2,2,24,26,[[1154,2,2,24,26]]],[60,3,3,26,29,[[1157,3,3,26,29]]],[64,2,2,29,31,[[1166,2,2,29,31]]],[65,4,4,31,35,[[1179,1,1,31,32],[1182,3,3,32,35]]]],[23382,24119,24168,24316,24317,24855,25469,25929,25974,26517,27407,27563,27622,27834,27986,27999,28296,28446,28597,29716,29789,29913,29925,30300,30450,30460,30502,30510,30512,30680,30682,30914,30963,30965,30975]]],["blaspheme",[6,6,[[40,2,2,0,2,[[959,2,2,0,2]]],[43,1,1,2,3,[[1043,1,1,2,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]],[58,1,1,4,5,[[1147,1,1,4,5]]],[65,1,1,5,6,[[1179,1,1,5,6]]]],[24316,24317,27834,29716,30300,30914]]],["blasphemed",[7,7,[[43,1,1,0,1,[[1035,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]],[55,1,1,3,4,[[1130,1,1,3,4]]],[65,3,3,4,7,[[1182,3,3,4,7]]]],[27563,27986,29789,29913,30963,30965,30975]]],["blasphemers",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27622]]],["blasphemest",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26517]]],["blasphemeth",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23382,25469]]],["blaspheming",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27407]]],["blasphemously",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25929]]],["blasphemy",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24119]]],["defamed",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28446]]],["evil",[3,3,[[55,1,1,0,1,[[1131,1,1,0,1]]],[60,2,2,1,3,[[1157,2,2,1,3]]]],[29925,30510,30512]]],["of",[7,7,[[44,1,1,0,1,[[1059,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]],[59,2,2,2,4,[[1154,2,2,2,4]]],[60,1,1,4,5,[[1157,1,1,4,5]]],[64,2,2,5,7,[[1166,2,2,5,7]]]],[28296,28597,30450,30460,30502,30680,30682]]],["on",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24855,25974]]],["reported",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[27999]]],["reviled",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24168]]]]},{"k":"G988","v":[["*",[19,18,[[39,4,3,0,3,[[940,2,1,0,1],[943,1,1,1,2],[954,1,1,2,3]]],[40,4,4,3,7,[[958,1,1,3,4],[959,1,1,4,5],[963,1,1,5,6],[970,1,1,6,7]]],[41,1,1,7,8,[[977,1,1,7,8]]],[42,1,1,8,9,[[1006,1,1,8,9]]],[48,1,1,9,10,[[1100,1,1,9,10]]],[50,1,1,10,11,[[1109,1,1,10,11]]],[53,1,1,11,12,[[1124,1,1,11,12]]],[64,1,1,12,13,[[1166,1,1,12,13]]],[65,5,5,13,18,[[1168,1,1,13,14],[1179,3,3,14,17],[1183,1,1,17,18]]]],[23520,23652,24119,24267,24316,24485,24818,25128,26514,29303,29525,29792,30681,30726,30909,30913,30914,30978]]],["blasphemies",[5,5,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[959,1,1,2,3]]],[41,1,1,3,4,[[977,1,1,3,4]]],[65,1,1,4,5,[[1179,1,1,4,5]]]],[23652,24267,24316,25128,30913]]],["blasphemy",[11,10,[[39,3,2,0,2,[[940,2,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[963,1,1,2,3],[970,1,1,3,4]]],[42,1,1,4,5,[[1006,1,1,4,5]]],[50,1,1,5,6,[[1109,1,1,5,6]]],[65,4,4,6,10,[[1168,1,1,6,7],[1179,2,2,7,9],[1183,1,1,9,10]]]],[23520,24119,24485,24818,26514,29525,30726,30909,30914,30978]]],["railing",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30681]]],["railings",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29792]]],["speaking",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29303]]]]},{"k":"G989","v":[["*",[5,5,[[43,2,2,0,2,[[1023,2,2,0,2]]],[53,1,1,2,3,[[1119,1,1,2,3]]],[54,1,1,3,4,[[1127,1,1,3,4]]],[60,1,1,4,5,[[1157,1,1,4,5]]]],[27112,27114,29709,29855,30511]]],["blasphemer",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29709]]],["blasphemers",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29855]]],["blasphemous",[2,2,[[43,2,2,0,2,[[1023,2,2,0,2]]]],[27112,27114]]],["railing",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30511]]]]},{"k":"G990","v":[["seeing",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30508]]]]},{"k":"G991","v":[["*",[135,119,[[39,20,17,0,17,[[933,1,1,0,1],[934,3,3,1,4],[935,1,1,4,5],[939,1,1,5,6],[940,1,1,6,7],[941,6,4,7,11],[942,1,1,11,12],[943,2,1,12,13],[946,1,1,13,14],[950,1,1,14,15],[952,2,2,15,17]]],[40,15,14,17,31,[[960,3,2,17,19],[961,1,1,19,20],[964,4,4,20,24],[968,2,2,24,26],[969,5,5,26,31]]],[41,16,14,31,45,[[978,2,2,31,33],[979,2,2,33,35],[980,4,3,35,38],[981,1,1,38,39],[982,3,2,39,41],[983,1,1,41,42],[993,2,2,42,44],[996,1,1,44,45]]],[42,17,15,45,60,[[997,1,1,45,46],[1001,1,1,46,47],[1005,9,7,47,54],[1007,1,1,54,55],[1009,1,1,55,56],[1016,2,2,56,58],[1017,2,2,58,60]]],[43,13,12,60,72,[[1018,1,1,60,61],[1019,1,1,61,62],[1020,1,1,62,63],[1021,1,1,63,64],[1025,1,1,64,65],[1026,2,2,65,67],[1029,1,1,67,68],[1030,2,2,68,70],[1044,1,1,70,71],[1045,2,1,71,72]]],[44,6,5,72,77,[[1052,1,1,72,73],[1053,3,2,73,75],[1056,2,2,75,77]]],[45,7,7,77,84,[[1062,1,1,77,78],[1064,1,1,78,79],[1069,1,1,79,80],[1071,2,2,80,82],[1074,1,1,82,83],[1077,1,1,83,84]]],[46,7,4,84,88,[[1081,4,1,84,85],[1084,1,1,85,86],[1087,1,1,86,87],[1089,1,1,87,88]]],[47,1,1,88,89,[[1095,1,1,88,89]]],[48,1,1,89,90,[[1101,1,1,89,90]]],[49,3,1,90,91,[[1105,3,1,90,91]]],[50,3,3,91,94,[[1108,2,2,91,93],[1110,1,1,93,94]]],[57,8,8,94,102,[[1134,1,1,94,95],[1135,2,2,95,97],[1142,1,1,97,98],[1143,3,3,98,101],[1144,1,1,101,102]]],[58,1,1,102,103,[[1147,1,1,102,103]]],[62,1,1,103,104,[[1164,1,1,103,104]]],[65,16,15,104,119,[[1167,2,2,104,106],[1169,1,1,106,107],[1171,2,2,107,109],[1172,4,4,109,113],[1175,1,1,113,114],[1177,1,1,114,115],[1182,1,1,115,116],[1183,1,1,116,117],[1184,1,1,117,118],[1188,2,1,118,119]]]],[23262,23286,23288,23300,23319,23463,23511,23552,23553,23555,23556,23627,23664,23737,23888,23959,23961,24335,24347,24395,24515,24518,24523,24524,24687,24711,24719,24722,24726,24740,24750,25187,25188,25216,25239,25255,25261,25263,25363,25386,25387,25438,25834,25856,26003,26073,26229,26447,26455,26459,26461,26465,26479,26481,26532,26652,26868,26872,26907,26918,26932,26982,27000,27036,27182,27224,27225,27346,27373,27402,27867,27925,28114,28140,28141,28217,28219,28389,28420,28536,28579,28585,28677,28786,28877,28924,28978,29028,29177,29319,29423,29499,29502,29559,29986,30007,30014,30158,30173,30175,30179,30237,30315,30653,30708,30709,30764,30782,30783,30794,30796,30798,30800,30860,30881,30969,30983,31002,31088]]],["+",[5,4,[[40,2,2,0,2,[[964,1,1,0,1],[969,1,1,1,2]]],[46,2,1,2,3,[[1081,2,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[24523,24740,28877,30179]]],["Behold",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28585]]],["Beware",[4,4,[[40,1,1,0,1,[[968,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]],[50,1,1,3,4,[[1108,1,1,3,4]]]],[24711,27402,29423,29502]]],["Look",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27000]]],["See",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[23959,29319,30237]]],["Seest",[3,3,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[24719,25239,30315]]],["beheld",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]]],[26003,26932]]],["behold",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[65,1,1,1,2,[[1183,1,1,1,2]]]],[23737,30983]]],["beholdest",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,2,2,1,3,[[978,2,2,1,3]]]],[23319,25187,25188]]],["beholding",[2,2,[[43,1,1,0,1,[[1021,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[27036,29499]]],["beware",[3,2,[[40,1,1,0,1,[[964,1,1,0,1]]],[49,2,1,1,2,[[1105,2,1,1,2]]]],[24515,29423]]],["heed",[13,13,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,4,4,1,5,[[960,1,1,1,2],[969,3,3,2,5]]],[41,2,2,5,7,[[980,1,1,5,6],[993,1,1,6,7]]],[45,3,3,7,10,[[1064,1,1,7,8],[1069,1,1,8,9],[1071,1,1,9,10]]],[47,1,1,10,11,[[1095,1,1,10,11]]],[50,1,1,11,12,[[1110,1,1,11,12]]],[57,1,1,12,13,[[1135,1,1,12,13]]]],[23961,24347,24722,24726,24750,25263,25834,28420,28536,28579,29177,29559,30007]]],["lieth",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27867]]],["look",[2,2,[[65,2,2,0,2,[[1171,2,2,0,2]]]],[30782,30783]]],["looked",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26652]]],["looketh",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23262]]],["looking",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25363]]],["on",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28978]]],["perceive",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28924]]],["regardest",[2,2,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]]],[23888,24687]]],["saw",[8,8,[[39,3,3,0,3,[[940,1,1,0,1],[942,1,1,1,2],[943,1,1,2,3]]],[42,2,2,3,5,[[1016,1,1,3,4],[1017,1,1,4,5]]],[43,2,2,5,7,[[1026,1,1,5,6],[1029,1,1,6,7]]],[65,1,1,7,8,[[1188,1,1,7,8]]]],[23511,23627,23664,26872,26907,27224,27346,31088]]],["see",[45,42,[[39,6,6,0,6,[[939,1,1,0,1],[941,4,4,1,5],[943,1,1,5,6]]],[40,3,3,6,9,[[960,1,1,6,7],[964,2,2,7,9]]],[41,7,6,9,15,[[980,2,2,9,11],[982,3,2,11,13],[983,1,1,13,14],[993,1,1,14,15]]],[42,7,5,15,20,[[1005,7,5,15,20]]],[43,2,2,20,22,[[1019,1,1,20,21],[1045,1,1,21,22]]],[44,4,4,22,26,[[1052,1,1,22,23],[1053,1,1,23,24],[1056,2,2,24,26]]],[45,3,3,26,29,[[1062,1,1,26,27],[1074,1,1,27,28],[1077,1,1,28,29]]],[57,3,3,29,32,[[1134,1,1,29,30],[1135,1,1,30,31],[1142,1,1,31,32]]],[65,10,10,32,42,[[1167,1,1,32,33],[1169,1,1,33,34],[1172,4,4,34,38],[1175,1,1,38,39],[1177,1,1,39,40],[1182,1,1,40,41],[1184,1,1,41,42]]]],[23463,23552,23553,23555,23556,23664,24335,24518,24524,25255,25261,25386,25387,25438,25856,26455,26459,26465,26479,26481,26982,27925,28114,28141,28217,28219,28389,28677,28786,29986,30014,30158,30709,30764,30794,30796,30798,30800,30860,30881,30969,31002]]],["seeing",[8,8,[[39,2,2,0,2,[[941,2,2,0,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,1,1,3,4,[[980,1,1,3,4]]],[42,1,1,4,5,[[1005,1,1,4,5]]],[43,3,3,5,8,[[1025,1,1,5,6],[1030,1,1,6,7],[1045,1,1,7,8]]]],[23552,23553,24335,25255,26447,27182,27373,27925]]],["seen",[6,5,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,2,1,1,2,[[1081,2,1,1,2]]],[57,2,2,2,4,[[1143,2,2,2,4]]],[65,1,1,4,5,[[1188,1,1,4,5]]]],[28140,28877,30173,30175,31088]]],["seest",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[65,1,1,1,2,[[1167,1,1,1,2]]]],[24395,30708]]],["seeth",[11,11,[[39,3,3,0,3,[[934,3,3,0,3]]],[42,6,6,3,9,[[997,1,1,3,4],[1001,1,1,4,5],[1005,1,1,5,6],[1007,1,1,6,7],[1016,1,1,7,8],[1017,1,1,8,9]]],[44,1,1,9,10,[[1053,1,1,9,10]]],[46,1,1,10,11,[[1089,1,1,10,11]]]],[23286,23288,23300,26073,26229,26461,26532,26868,26918,28140,29028]]],["sight",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[25216,27225]]],["to",[1,1,[[62,1,1,0,1,[[1164,1,1,0,1]]]],[30653]]]]},{"k":"G992","v":[["put",[2,2,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]]],[24282,25145]]]]},{"k":"G993","v":[["Boanerges",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24305]]]]},{"k":"G994","v":[["*",[11,11,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,2,2,1,3,[[957,1,1,1,2],[971,1,1,2,3]]],[41,3,3,3,6,[[975,1,1,3,4],[990,2,2,4,6]]],[42,1,1,6,7,[[997,1,1,6,7]]],[43,3,3,7,10,[[1025,1,1,7,8],[1034,1,1,8,9],[1038,1,1,9,10]]],[47,1,1,10,11,[[1094,1,1,10,11]]]],[23195,24218,24860,25029,25695,25726,26067,27183,27529,27698,29158]]],["+",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27698]]],["cried",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]]],[24860,25726]]],["cry",[2,2,[[41,1,1,0,1,[[990,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]]],[25695,29158]]],["crying",[6,6,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[975,1,1,2,3]]],[42,1,1,3,4,[[997,1,1,3,4]]],[43,2,2,4,6,[[1025,1,1,4,5],[1034,1,1,5,6]]]],[23195,24218,25029,26067,27183,27529]]]]},{"k":"G995","v":[["cries",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30358]]]]},{"k":"G996","v":[["*",[2,2,[[43,1,1,0,1,[[1044,1,1,0,1]]],[57,1,1,1,2,[[1136,1,1,1,2]]]],[27872,30030]]],["+",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30030]]],["helps",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27872]]]]},{"k":"G997","v":[["*",[8,8,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[965,2,2,1,3]]],[43,2,2,3,5,[[1033,1,1,3,4],[1038,1,1,4,5]]],[46,1,1,5,6,[[1083,1,1,5,6]]],[57,1,1,6,7,[[1134,1,1,6,7]]],[65,1,1,7,8,[[1178,1,1,7,8]]]],[23658,24560,24562,27492,27692,28900,29995,30907]]],["help",[5,5,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[965,2,2,1,3]]],[43,2,2,3,5,[[1033,1,1,3,4],[1038,1,1,4,5]]]],[23658,24560,24562,27492,27692]]],["helped",[1,1,[[65,1,1,0,1,[[1178,1,1,0,1]]]],[30907]]],["succour",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29995]]],["succoured",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28900]]]]},{"k":"G998","v":[["helper",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30247]]]]},{"k":"G999","v":[["*",[3,3,[[39,2,2,0,2,[[940,1,1,0,1],[943,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]]],[23500,23647,25185]]],["ditch",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]]],[23647,25185]]],["pit",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23500]]]]},{"k":"G1000","v":[["cast",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25905]]]]},{"k":"G1001","v":[["sounded",[2,1,[[43,2,1,0,1,[[1044,2,1,0,1]]]],[27883]]]]},{"k":"G1002","v":[["dart",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30232]]]]},{"k":"G1003","v":[["Booz",[3,2,[[39,2,1,0,1,[[929,2,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23149,25057]]]]},{"k":"G1004","v":[["mire",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30522]]]]},{"k":"G1005","v":[["north",[2,2,[[41,1,1,0,1,[[985,1,1,0,1]]],[65,1,1,1,2,[[1187,1,1,1,2]]]],[25547,31066]]]]},{"k":"G1006","v":[["*",[9,9,[[39,2,2,0,2,[[936,2,2,0,2]]],[40,2,2,2,4,[[961,2,2,2,4]]],[41,3,3,4,7,[[980,2,2,4,6],[987,1,1,6,7]]],[42,2,2,7,9,[[1017,2,2,7,9]]]],[23375,23378,24375,24378,25277,25279,25603,26913,26915]]],["Feed",[2,2,[[42,2,2,0,2,[[1017,2,2,0,2]]]],[26913,26915]]],["fed",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24378,25279]]],["feed",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25603]]],["feeding",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23375,24375,25277]]],["kept",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23378]]]]},{"k":"G1007","v":[["Bosor",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30515]]]]},{"k":"G1008","v":[["herbs",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30051]]]]},{"k":"G1009","v":[["clusters",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30944]]]]},{"k":"G1010","v":[["counsellor",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24869,25985]]]]},{"k":"G1011","v":[["*",[8,6,[[41,1,1,0,1,[[986,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]],[43,3,3,2,5,[[1022,1,1,2,3],[1032,1,1,3,4],[1044,1,1,4,5]]],[46,3,1,5,6,[[1078,3,1,5,6]]]],[25584,26590,27092,27479,27894,28817]]],["+",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28817]]],["consulted",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26590]]],["consulteth",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25584]]],["counsel",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27092]]],["determined",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27479]]],["minded",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27894]]],["purpose",[2,1,[[46,2,1,0,1,[[1078,2,1,0,1]]]],[28817]]]]},{"k":"G1012","v":[["*",[12,12,[[41,2,2,0,2,[[979,1,1,0,1],[995,1,1,1,2]]],[43,7,7,2,9,[[1019,1,1,2,3],[1021,1,1,3,4],[1022,1,1,4,5],[1030,1,1,5,6],[1037,1,1,6,7],[1044,2,2,7,9]]],[45,1,1,9,10,[[1065,1,1,9,10]]],[48,1,1,10,11,[[1097,1,1,10,11]]],[57,1,1,11,12,[[1138,1,1,11,12]]]],[25225,25986,26972,27050,27097,27398,27653,27867,27897,28438,29217,30061]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27867]]],["counsel",[9,9,[[41,2,2,0,2,[[979,1,1,0,1],[995,1,1,1,2]]],[43,5,5,2,7,[[1019,1,1,2,3],[1021,1,1,3,4],[1022,1,1,4,5],[1037,1,1,5,6],[1044,1,1,6,7]]],[48,1,1,7,8,[[1097,1,1,7,8]]],[57,1,1,8,9,[[1138,1,1,8,9]]]],[25225,25986,26972,27050,27097,27653,27897,29217,30061]]],["counsels",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28438]]],["will",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27398]]]]},{"k":"G1013","v":[["*",[2,2,[[43,1,1,0,1,[[1044,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]]],[27898,28174]]],["purpose",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27898]]],["will",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28174]]]]},{"k":"G1014","v":[["*",[34,34,[[39,2,2,0,2,[[929,1,1,0,1],[939,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[41,2,2,3,5,[[982,1,1,3,4],[994,1,1,4,5]]],[42,1,1,5,6,[[1014,1,1,5,6]]],[43,12,12,6,18,[[1022,1,1,6,7],[1029,1,1,7,8],[1034,1,1,8,9],[1035,2,2,9,11],[1036,1,1,11,12],[1039,1,1,12,13],[1040,1,1,13,14],[1042,2,2,14,16],[1044,1,1,16,17],[1045,1,1,17,18]]],[45,1,1,18,19,[[1073,1,1,18,19]]],[46,1,1,19,20,[[1078,1,1,19,20]]],[49,1,1,20,21,[[1103,1,1,20,21]]],[53,3,3,21,24,[[1120,1,1,21,22],[1123,1,1,22,23],[1124,1,1,23,24]]],[55,1,1,24,25,[[1131,1,1,24,25]]],[56,1,1,25,26,[[1132,1,1,25,26]]],[57,1,1,26,27,[[1138,1,1,26,27]]],[58,3,3,27,30,[[1146,1,1,27,28],[1148,1,1,28,29],[1149,1,1,29,30]]],[60,1,1,30,31,[[1158,1,1,30,31]]],[62,1,1,31,32,[[1164,1,1,31,32]]],[63,1,1,32,33,[[1165,1,1,32,33]]],[64,1,1,33,34,[[1166,1,1,33,34]]]],[23163,23486,24841,25385,25906,26824,27087,27341,27543,27572,27584,27615,27734,27762,27816,27818,27898,27917,28645,28815,29373,29724,29777,29797,29931,29951,30061,30284,30323,30341,30531,30657,30668,30677]]],["disposed",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27584]]],["intend",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27087]]],["intending",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27341]]],["listeth",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30323]]],["minded",[2,2,[[39,1,1,0,1,[[929,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]]],[23163,28815]]],["will",[12,12,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[42,1,1,2,3,[[1014,1,1,2,3]]],[43,1,1,3,4,[[1035,1,1,3,4]]],[45,1,1,4,5,[[1073,1,1,4,5]]],[53,3,3,5,8,[[1120,1,1,5,6],[1123,1,1,6,7],[1124,1,1,7,8]]],[55,1,1,8,9,[[1131,1,1,8,9]]],[58,2,2,9,11,[[1146,1,1,9,10],[1149,1,1,10,11]]],[64,1,1,11,12,[[1166,1,1,11,12]]]],[23486,25385,26824,27572,28645,29724,29777,29797,29931,30284,30341,30677]]],["willing",[5,5,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[43,1,1,2,3,[[1044,1,1,2,3]]],[57,1,1,3,4,[[1138,1,1,3,4]]],[60,1,1,4,5,[[1158,1,1,4,5]]]],[24841,25906,27898,30061,30531]]],["would",[11,11,[[43,7,7,0,7,[[1034,1,1,0,1],[1036,1,1,1,2],[1039,1,1,2,3],[1040,1,1,3,4],[1042,2,2,4,6],[1045,1,1,6,7]]],[49,1,1,7,8,[[1103,1,1,7,8]]],[56,1,1,8,9,[[1132,1,1,8,9]]],[62,1,1,9,10,[[1164,1,1,9,10]]],[63,1,1,10,11,[[1165,1,1,10,11]]]],[27543,27615,27734,27762,27816,27818,27917,29373,29951,30657,30668]]]]},{"k":"G1015","v":[["*",[2,2,[[41,2,2,0,2,[[975,1,1,0,1],[995,1,1,1,2]]]],[25030,25965]]],["hill",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25030]]],["hills",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25965]]]]},{"k":"G1016","v":[["*",[8,7,[[41,3,3,0,3,[[985,1,1,0,1],[986,2,2,1,3]]],[42,2,2,3,5,[[998,2,2,3,5]]],[45,2,1,5,6,[[1070,2,1,5,6]]],[53,1,1,6,7,[[1123,1,1,6,7]]]],[25533,25558,25572,26109,26110,28549,29781]]],["ox",[4,4,[[41,2,2,0,2,[[985,1,1,0,1],[986,1,1,1,2]]],[45,1,1,2,3,[[1070,1,1,2,3]]],[53,1,1,3,4,[[1123,1,1,3,4]]]],[25533,25558,28549,29781]]],["oxen",[4,4,[[41,1,1,0,1,[[986,1,1,0,1]]],[42,2,2,1,3,[[998,2,2,1,3]]],[45,1,1,3,4,[[1070,1,1,3,4]]]],[25572,26109,26110,28549]]]]},{"k":"G1017","v":[["prize",[2,2,[[45,1,1,0,1,[[1070,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[28564,29435]]]]},{"k":"G1018","v":[["rule",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29532]]]]},{"k":"G1019","v":[["*",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[29746,30531]]],["+",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30531]]],["long",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29746]]]]},{"k":"G1020","v":[["slowly",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27862]]]]},{"k":"G1021","v":[["slow",[3,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[58,2,1,1,2,[[1146,2,1,1,2]]]],[26016,30285]]]]},{"k":"G1022","v":[["slackness",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30531]]]]},{"k":"G1023","v":[["arm",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]],[43,1,1,2,3,[[1030,1,1,2,3]]]],[24944,26618,27379]]]]},{"k":"G1024","v":[["*",[7,7,[[41,1,1,0,1,[[994,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[43,2,2,2,4,[[1022,1,1,2,3],[1044,1,1,3,4]]],[57,3,3,4,7,[[1134,2,2,4,6],[1145,1,1,6,7]]]],[25922,26264,27093,27883,29984,29986,30263]]],["+",[5,5,[[42,1,1,0,1,[[1002,1,1,0,1]]],[43,2,2,1,3,[[1022,1,1,1,2],[1044,1,1,2,3]]],[57,2,2,3,5,[[1134,2,2,3,5]]]],[26264,27093,27883,29984,29986]]],["while",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25922]]],["words",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30263]]]]},{"k":"G1025","v":[["*",[8,8,[[41,5,5,0,5,[[973,2,2,0,2],[974,2,2,2,4],[990,1,1,4,5]]],[43,1,1,5,6,[[1024,1,1,5,6]]],[54,1,1,6,7,[[1127,1,1,6,7]]],[59,1,1,7,8,[[1152,1,1,7,8]]]],[24934,24937,24985,24989,25703,27135,29868,30401]]],["babe",[4,4,[[41,4,4,0,4,[[973,2,2,0,2],[974,2,2,2,4]]]],[24934,24937,24985,24989]]],["babes",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30401]]],["child",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29868]]],["children",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27135]]],["infants",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25703]]]]},{"k":"G1026","v":[["*",[7,6,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,3,3,1,4,[[979,2,2,1,3],[989,1,1,3,4]]],[58,2,1,4,5,[[1150,2,1,4,5]]],[65,1,1,5,6,[[1177,1,1,5,6]]]],[23279,25233,25239,25680,30371,30878]]],["+",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30878]]],["rain",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[23279,30371]]],["rained",[2,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[25680,30371]]],["wash",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25233]]],["washed",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25239]]]]},{"k":"G1027","v":[["*",[12,11,[[40,1,1,0,1,[[959,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]],[65,10,9,2,11,[[1170,1,1,2,3],[1172,1,1,3,4],[1174,1,1,4,5],[1176,3,2,5,7],[1177,1,1,7,8],[1180,1,1,8,9],[1182,1,1,9,10],[1185,1,1,10,11]]]],[24305,26609,30773,30794,30832,30864,30865,30891,30928,30972,31023]]],["+",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26609]]],["thunder",[3,3,[[40,1,1,0,1,[[959,1,1,0,1]]],[65,2,2,1,3,[[1172,1,1,1,2],[1180,1,1,2,3]]]],[24305,30794,30928]]],["thunderings",[4,4,[[65,4,4,0,4,[[1170,1,1,0,1],[1174,1,1,1,2],[1177,1,1,2,3],[1185,1,1,3,4]]]],[30773,30832,30891,31023]]],["thunders",[4,3,[[65,4,3,0,3,[[1176,3,2,0,2],[1182,1,1,2,3]]]],[30864,30865,30972]]]]},{"k":"G1028","v":[["rain",[2,2,[[39,2,2,0,2,[[935,2,2,0,2]]]],[23341,23343]]]]},{"k":"G1029","v":[["snare",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28522]]]]},{"k":"G1030","v":[["gnashing",[7,7,[[39,6,6,0,6,[[936,1,1,0,1],[941,2,2,1,3],[950,1,1,3,4],[952,1,1,4,5],[953,1,1,5,6]]],[41,1,1,6,7,[[985,1,1,6,7]]]],[23357,23581,23589,23885,24008,24038,25546]]]]},{"k":"G1031","v":[["gnashed",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27170]]]]},{"k":"G1032","v":[["forth",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30330]]]]},{"k":"G1033","v":[["*",[17,15,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,2,2,2,4,[[975,1,1,2,3],[981,1,1,3,4]]],[42,1,1,4,5,[[1000,1,1,4,5]]],[44,3,2,5,7,[[1059,3,2,5,7]]],[45,6,5,7,12,[[1064,1,1,7,8],[1067,2,1,8,9],[1069,2,2,9,11],[1071,1,1,11,12]]],[53,1,1,12,13,[[1122,1,1,12,13]]],[57,2,2,13,15,[[1141,1,1,13,14],[1145,1,1,14,15]]]],[23612,24482,25036,25314,26190,28295,28300,28412,28480,28535,28540,28570,29750,30115,30250]]],["Meats",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28480]]],["meat",[10,9,[[41,2,2,0,2,[[975,1,1,0,1],[981,1,1,1,2]]],[42,1,1,2,3,[[1000,1,1,2,3]]],[44,3,2,3,5,[[1059,3,2,3,5]]],[45,4,4,5,9,[[1064,1,1,5,6],[1069,2,2,6,8],[1071,1,1,8,9]]]],[25036,25314,26190,28295,28300,28412,28535,28540,28570]]],["meats",[5,5,[[40,1,1,0,1,[[963,1,1,0,1]]],[45,1,1,1,2,[[1067,1,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]],[57,2,2,3,5,[[1141,1,1,3,4],[1145,1,1,4,5]]]],[24482,28480,29750,30115,30250]]],["victuals",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23612]]]]},{"k":"G1034","v":[["meat",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26032]]]]},{"k":"G1035","v":[["*",[11,10,[[39,2,2,0,2,[[934,2,2,0,2]]],[42,4,3,2,5,[[1000,1,1,2,3],[1002,3,2,3,5]]],[44,1,1,5,6,[[1059,1,1,5,6]]],[45,1,1,6,7,[[1069,1,1,6,7]]],[46,1,1,7,8,[[1086,1,1,7,8]]],[50,1,1,8,9,[[1108,1,1,8,9]]],[57,1,1,9,10,[[1144,1,1,9,10]]]],[23301,23302,26188,26284,26312,28297,28531,28966,29510,30228]]],["eating",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28531]]],["food",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28966]]],["meat",[7,6,[[42,4,3,0,3,[[1000,1,1,0,1],[1002,3,2,1,3]]],[44,1,1,3,4,[[1059,1,1,3,4]]],[50,1,1,4,5,[[1108,1,1,4,5]]],[57,1,1,5,6,[[1144,1,1,5,6]]]],[26188,26284,26312,28297,29510,30228]]],["rust",[2,2,[[39,2,2,0,2,[[934,2,2,0,2]]]],[23301,23302]]]]},{"k":"G1036","v":[["*",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[25114,29797]]],["drown",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29797]]],["sink",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25114]]]]},{"k":"G1037","v":[["deep",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29014]]]]},{"k":"G1038","v":[["tanner",[3,3,[[43,3,3,0,3,[[1026,1,1,0,1],[1027,2,2,1,3]]]],[27259,27265,27291]]]]},{"k":"G1039","v":[["linen",[4,3,[[65,4,3,0,3,[[1184,1,1,0,1],[1185,3,2,1,3]]]],[31009,31025,31031]]]]},{"k":"G1040","v":[["linen",[2,2,[[41,1,1,0,1,[[988,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[25639,31005]]]]},{"k":"G1041","v":[["altar",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27546]]]]},{"k":"G1042","v":[["Gabbatha",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26838]]]]},{"k":"G1043","v":[["Gabriel",[2,2,[[41,2,2,0,2,[[973,2,2,0,2]]]],[24912,24919]]]]},{"k":"G1044","v":[["canker",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29844]]]]},{"k":"G1045","v":[["Gad",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30815]]]]},{"k":"G1046","v":[["*",[3,3,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,2,2,1,3,[[980,2,2,1,3]]]],[24365,25271,25282]]],["+",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25282]]],["Gadarenes",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24365,25271]]]]},{"k":"G1047","v":[["treasure",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27203]]]]},{"k":"G1048","v":[["Gaza",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27202]]]]},{"k":"G1049","v":[["treasury",[5,4,[[40,3,2,0,2,[[968,3,2,0,2]]],[41,1,1,2,3,[[993,1,1,2,3]]],[42,1,1,3,4,[[1004,1,1,3,4]]]],[24714,24716,25827,26401]]]]},{"k":"G1050","v":[["Gaius",[5,5,[[43,2,2,0,2,[[1036,1,1,0,1],[1037,1,1,1,2]]],[44,1,1,2,3,[[1061,1,1,2,3]]],[45,1,1,3,4,[[1062,1,1,3,4]]],[63,1,1,4,5,[[1165,1,1,4,5]]]],[27614,27630,28359,28377,30659]]]]},{"k":"G1051","v":[["milk",[5,5,[[45,2,2,0,2,[[1064,1,1,0,1],[1070,1,1,1,2]]],[57,2,2,2,4,[[1137,2,2,2,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[28412,28547,30042,30043,30401]]]]},{"k":"G1052","v":[["Galatians",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29103]]]]},{"k":"G1053","v":[["Galatia",[4,4,[[45,1,1,0,1,[[1077,1,1,0,1]]],[47,1,1,1,2,[[1091,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[28777,29059,29880,30375]]]]},{"k":"G1054","v":[["Galatia",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1035,1,1,1,2]]]],[27489,27580]]]]},{"k":"G1055","v":[["calm",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23371,24362,25269]]]]},{"k":"G1056","v":[["Galilee",[63,62,[[39,16,16,0,16,[[930,1,1,0,1],[931,1,1,1,2],[932,5,5,2,7],[943,1,1,7,8],[945,1,1,8,9],[947,1,1,9,10],[949,1,1,10,11],[954,1,1,11,12],[955,1,1,12,13],[956,3,3,13,16]]],[40,12,12,16,28,[[957,5,5,16,21],[959,1,1,21,22],[962,1,1,22,23],[963,1,1,23,24],[965,1,1,24,25],[970,1,1,25,26],[971,1,1,26,27],[972,1,1,27,28]]],[41,15,15,28,43,[[973,1,1,28,29],[974,2,2,29,31],[975,1,1,31,32],[976,3,3,32,35],[977,1,1,35,36],[980,1,1,36,37],[989,1,1,37,38],[995,4,4,38,42],[996,1,1,42,43]]],[42,17,16,43,59,[[997,1,1,43,44],[998,2,2,44,46],[1000,6,6,46,52],[1002,1,1,52,53],[1003,5,4,53,57],[1008,1,1,57,58],[1017,1,1,58,59]]],[43,3,3,59,62,[[1026,1,1,59,60],[1027,1,1,60,61],[1030,1,1,61,62]]]],[23191,23205,23221,23224,23227,23232,23234,23662,23722,23763,23837,24086,24184,24202,24205,24211,24224,24229,24231,24243,24254,24295,24428,24494,24568,24782,24867,24880,24919,24977,25012,25026,25077,25094,25107,25124,25271,25662,25940,25941,25984,25990,25997,26087,26096,26106,26159,26199,26201,26202,26203,26210,26258,26329,26337,26369,26380,26601,26900,27247,27296,27393]]]]},{"k":"G1057","v":[["*",[11,10,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,5,4,2,6,[[985,3,2,2,4],[994,1,1,4,5],[995,1,1,5,6]]],[42,1,1,6,7,[[1000,1,1,6,7]]],[43,3,3,7,10,[[1018,1,1,7,8],[1019,1,1,8,9],[1022,1,1,9,10]]]],[24123,24824,25519,25520,25923,25941,26201,26934,26956,27096]]],["Galilaean",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,2,2,1,3,[[994,1,1,1,2],[995,1,1,2,3]]]],[24824,25923,25941]]],["Galilaeans",[5,4,[[41,3,2,0,2,[[985,3,2,0,2]]],[42,1,1,2,3,[[1000,1,1,2,3]]],[43,1,1,3,4,[[1019,1,1,3,4]]]],[25519,25520,26201,26956]]],["Galilee",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[43,2,2,1,3,[[1018,1,1,1,2],[1022,1,1,2,3]]]],[24123,26934,27096]]]]},{"k":"G1058","v":[["Gallio",[3,3,[[43,3,3,0,3,[[1035,3,3,0,3]]]],[27569,27571,27574]]]]},{"k":"G1059","v":[["Gamaliel",[2,2,[[43,2,2,0,2,[[1022,1,1,0,1],[1039,1,1,1,2]]]],[27093,27707]]]]},{"k":"G1060","v":[["*",[29,25,[[39,7,6,0,6,[[933,1,1,0,1],[947,3,2,1,3],[950,2,2,3,5],[952,1,1,5,6]]],[40,4,4,6,10,[[962,1,1,6,7],[966,2,2,7,9],[968,1,1,9,10]]],[41,6,5,10,15,[[986,1,1,10,11],[988,2,1,11,12],[989,1,1,12,13],[992,2,2,13,15]]],[45,9,7,15,22,[[1068,9,7,15,22]]],[53,3,3,22,25,[[1122,1,1,22,23],[1123,2,2,23,25]]]],[23266,23771,23772,23897,23902,23995,24424,24599,24600,24698,25573,25638,25678,25813,25814,28496,28497,28515,28520,28521,28523,28526,29750,29774,29777]]],["married",[7,7,[[40,2,2,0,2,[[962,1,1,0,1],[966,1,1,1,2]]],[41,1,1,2,3,[[986,1,1,2,3]]],[45,4,4,3,7,[[1068,4,4,3,7]]]],[24424,24600,25573,28497,28520,28521,28526]]],["marrieth",[3,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,2,1,1,2,[[988,2,1,1,2]]]],[23771,25638]]],["marry",[16,14,[[39,4,4,0,4,[[933,1,1,0,1],[947,2,2,1,3],[950,1,1,3,4]]],[40,2,2,4,6,[[966,1,1,4,5],[968,1,1,5,6]]],[41,2,2,6,8,[[992,2,2,6,8]]],[45,5,3,8,11,[[1068,5,3,8,11]]],[53,3,3,11,14,[[1122,1,1,11,12],[1123,2,2,12,14]]]],[23266,23771,23772,23902,24599,24698,25813,25814,28496,28515,28523,29750,29774,29777]]],["marrying",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23995]]],["wife",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23897]]],["wives",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25678]]]]},{"k":"G1061","v":[["marriage",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24698]]]]},{"k":"G1062","v":[["*",[16,16,[[39,9,9,0,9,[[950,8,8,0,8],[953,1,1,8,9]]],[41,2,2,9,11,[[984,1,1,9,10],[986,1,1,10,11]]],[42,2,2,11,13,[[998,2,2,11,13]]],[57,1,1,13,14,[[1145,1,1,13,14]]],[65,2,2,14,16,[[1185,2,2,14,16]]]],[23874,23875,23876,23880,23881,23882,23883,23884,24018,25495,25561,26096,26097,30245,31024,31026]]],["+",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23880]]],["Marriage",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30245]]],["marriage",[8,8,[[39,4,4,0,4,[[950,3,3,0,3],[953,1,1,3,4]]],[42,2,2,4,6,[[998,2,2,4,6]]],[65,2,2,6,8,[[1185,2,2,6,8]]]],[23874,23876,23881,24018,26096,26097,31024,31026]]],["wedding",[6,6,[[39,4,4,0,4,[[950,4,4,0,4]]],[41,2,2,4,6,[[984,1,1,4,5],[986,1,1,5,6]]]],[23875,23882,23883,23884,25495,25561]]]]},{"k":"G1063","v":[["*",[1068,1017,[[39,129,128,0,128,[[929,3,3,0,3],[930,5,5,3,8],[931,4,4,8,12],[932,4,4,12,16],[933,6,6,16,22],[934,9,8,22,30],[935,5,5,30,35],[936,1,1,35,36],[937,5,5,36,41],[938,7,7,41,48],[939,4,4,48,52],[940,6,6,52,58],[941,3,3,58,61],[942,3,3,61,64],[943,4,4,64,68],[944,5,5,68,73],[945,2,2,73,75],[946,4,4,75,79],[947,3,3,79,82],[948,2,2,82,84],[949,2,2,84,86],[950,4,4,86,90],[951,10,10,90,100],[952,8,8,100,108],[953,4,4,108,112],[954,9,9,112,121],[955,4,4,121,125],[956,3,3,125,128]]],[40,74,72,128,200,[[957,3,3,128,131],[958,1,1,131,132],[959,3,3,132,135],[960,3,3,135,138],[961,3,3,138,141],[962,10,9,141,150],[963,7,7,150,157],[964,4,4,157,161],[965,8,7,161,168],[966,4,4,168,172],[967,4,4,172,176],[968,6,6,176,182],[969,9,9,182,191],[970,5,5,191,196],[971,2,2,196,198],[972,2,2,198,200]]],[41,96,91,200,291,[[973,6,6,200,206],[974,1,1,206,207],[975,1,1,207,208],[976,2,2,208,210],[977,2,2,210,212],[978,12,10,212,222],[979,5,5,222,227],[980,6,5,227,232],[981,8,8,232,240],[982,2,2,240,242],[983,3,3,242,245],[984,4,4,245,249],[986,3,3,249,252],[988,3,3,252,255],[989,2,2,255,257],[990,4,4,257,261],[991,5,5,261,266],[992,6,5,266,271],[993,7,7,271,278],[994,8,7,278,285],[995,6,6,285,291]]],[42,66,63,291,354,[[998,1,1,291,292],[999,8,7,292,299],[1000,9,9,299,308],[1001,10,9,308,317],[1002,6,6,317,323],[1003,6,6,323,329],[1004,3,2,329,331],[1005,2,2,331,333],[1006,1,1,333,334],[1007,1,1,334,335],[1008,3,3,335,338],[1009,4,4,338,342],[1010,1,1,342,343],[1012,3,3,343,346],[1014,1,1,346,347],[1015,3,3,347,350],[1016,2,2,350,352],[1017,2,2,352,354]]],[43,85,78,354,432,[[1018,1,1,354,355],[1019,5,4,355,359],[1020,1,1,359,360],[1021,8,7,360,367],[1022,2,2,367,369],[1023,1,1,369,370],[1024,2,2,370,372],[1025,6,6,372,378],[1026,2,2,378,380],[1027,1,1,380,381],[1030,4,4,381,385],[1032,2,2,385,387],[1033,3,3,387,390],[1034,4,3,390,393],[1035,4,4,393,397],[1036,5,5,397,402],[1037,6,5,402,407],[1038,5,5,407,412],[1039,2,2,412,414],[1040,5,5,414,419],[1041,1,1,419,420],[1042,2,2,420,422],[1043,4,2,422,424],[1044,5,4,424,428],[1045,4,4,428,432]]],[44,145,131,432,563,[[1046,9,8,432,440],[1047,9,8,440,448],[1048,7,7,448,455],[1049,7,6,455,461],[1050,9,8,461,469],[1051,9,8,469,477],[1052,13,11,477,488],[1053,17,15,488,503],[1054,9,9,503,512],[1055,10,9,512,521],[1056,11,11,521,532],[1057,4,4,532,536],[1058,10,7,536,543],[1059,10,10,543,553],[1060,8,7,553,560],[1061,3,3,560,563]]],[45,106,101,563,664,[[1062,6,6,563,569],[1063,6,6,569,575],[1064,11,9,575,584],[1065,6,5,584,589],[1066,3,3,589,592],[1067,2,2,592,594],[1068,6,6,594,600],[1069,3,3,600,603],[1070,8,7,603,610],[1071,6,6,610,616],[1072,14,14,616,630],[1073,4,4,630,634],[1074,2,2,634,636],[1075,11,10,636,646],[1076,12,12,646,658],[1077,6,6,658,664]]],[46,78,72,664,736,[[1078,6,6,664,670],[1079,6,6,670,676],[1080,5,5,676,681],[1081,5,5,681,686],[1082,9,9,686,695],[1083,3,3,695,698],[1084,6,6,698,704],[1085,4,4,704,708],[1086,3,3,708,711],[1087,7,6,711,717],[1088,9,8,717,725],[1089,11,8,725,733],[1090,4,3,733,736]]],[47,36,34,736,770,[[1091,4,3,736,739],[1092,6,6,739,745],[1093,8,7,745,752],[1094,6,6,752,758],[1095,5,5,758,763],[1096,7,7,763,770]]],[48,11,11,770,781,[[1098,3,3,770,773],[1101,7,7,773,780],[1102,1,1,780,781]]],[49,14,14,781,795,[[1103,5,5,781,786],[1104,5,5,786,791],[1105,3,3,791,794],[1106,1,1,794,795]]],[50,6,6,795,801,[[1108,2,2,795,797],[1109,3,3,797,800],[1110,1,1,800,801]]],[51,24,23,801,824,[[1111,2,2,801,803],[1112,8,7,803,810],[1113,3,3,810,813],[1114,7,7,813,820],[1115,4,4,820,824]]],[52,5,5,824,829,[[1117,1,1,824,825],[1118,4,4,825,829]]],[53,14,14,829,843,[[1120,3,3,829,832],[1121,1,1,832,833],[1122,4,4,833,837],[1123,4,4,837,841],[1124,2,2,841,843]]],[54,13,13,843,856,[[1125,2,2,843,845],[1126,3,3,845,848],[1127,3,3,848,851],[1128,5,5,851,856]]],[55,6,6,856,862,[[1129,2,2,856,858],[1130,1,1,858,859],[1131,3,3,859,862]]],[56,3,3,862,865,[[1132,3,3,862,865]]],[57,91,88,865,953,[[1133,1,1,865,866],[1134,7,7,866,873],[1135,4,4,873,877],[1136,7,7,877,884],[1137,4,3,884,887],[1138,5,5,887,892],[1139,13,13,892,905],[1140,5,5,905,910],[1141,6,6,910,916],[1142,10,10,916,926],[1143,9,9,926,935],[1144,10,9,935,944],[1145,10,9,944,953]]],[58,16,15,953,968,[[1146,6,6,953,959],[1147,5,5,959,964],[1148,3,3,964,967],[1149,2,1,967,968]]],[59,10,10,968,978,[[1152,4,4,968,972],[1153,3,3,972,975],[1154,3,3,975,978]]],[60,15,15,978,993,[[1156,7,7,978,985],[1157,6,6,985,991],[1158,2,2,991,993]]],[61,3,3,993,996,[[1160,1,1,993,994],[1162,1,1,994,995],[1163,1,1,995,996]]],[62,1,1,996,997,[[1164,1,1,996,997]]],[63,2,2,997,999,[[1165,2,2,997,999]]],[64,1,1,999,1000,[[1166,1,1,999,1000]]],[65,18,17,1000,1017,[[1167,1,1,1000,1001],[1169,1,1,1001,1002],[1175,2,1,1002,1003],[1179,1,1,1003,1004],[1180,2,2,1004,1006],[1182,2,2,1006,1008],[1183,1,1,1008,1009],[1185,2,2,1009,1011],[1187,4,4,1011,1015],[1188,2,2,1015,1017]]]],[23162,23164,23165,23171,23174,23175,23182,23189,23194,23195,23201,23207,23215,23219,23226,23227,23246,23252,23254,23263,23264,23280,23289,23290,23296,23298,23303,23306,23314,23316,23318,23324,23328,23341,23345,23354,23384,23392,23395,23400,23403,23427,23434,23436,23437,23440,23443,23452,23469,23472,23477,23489,23497,23522,23523,23526,23529,23539,23551,23554,23556,23600,23601,23621,23635,23637,23652,23660,23674,23675,23697,23698,23699,23715,23720,23734,23737,23738,23747,23774,23776,23784,23793,23808,23852,23858,23886,23888,23900,23902,23921,23922,23926,23927,23928,23931,23935,23937,23941,23957,23962,23963,23964,23978,23981,23984,23985,23995,24022,24037,24043,24050,24063,24064,24065,24066,24082,24085,24097,24106,24127,24147,24148,24152,24172,24197,24200,24201,24231,24237,24253,24275,24298,24309,24323,24345,24348,24351,24372,24392,24406,24421,24424,24425,24427,24438,24443,24455,24457,24459,24466,24471,24473,24484,24488,24490,24491,24503,24535,24536,24538,24544,24569,24572,24577,24578,24579,24587,24602,24610,24615,24633,24653,24658,24663,24672,24685,24687,24696,24698,24709,24717,24723,24724,24725,24726,24728,24736,24739,24750,24752,24759,24761,24794,24810,24824,24836,24840,24877,24881,24908,24911,24923,24937,24941,24969,24983,25033,25071,25073,25116,25146,25169,25172,25178,25179,25180,25184,25189,25190,25191,25194,25200,25201,25203,25223,25228,25262,25263,25274,25285,25291,25315,25325,25326,25327,25345,25349,25351,25357,25370,25387,25409,25415,25435,25471,25489,25493,25511,25567,25577,25581,25622,25633,25648,25672,25675,25704,25711,25713,25720,25736,25741,25752,25757,25779,25785,25798,25812,25815,25817,25830,25834,25835,25841,25849,25852,25861,25866,25880,25882,25891,25901,25923,25935,25943,25947,25950,25957,25969,25976,26120,26122,26136,26137,26139,26140,26144,26154,26164,26165,26174,26179,26193,26198,26200,26201,26203,26214,26223,26229,26230,26231,26232,26236,26246,26256,26263,26284,26290,26312,26321,26328,26329,26332,26333,26340,26367,26369,26405,26423,26462,26470,26507,26562,26588,26623,26627,26641,26643,26645,26659,26698,26733,26739,26753,26798,26831,26856,26861,26876,26884,26905,26906,26943,26964,26974,26983,26988,27018,27025,27034,27038,27042,27044,27049,27056,27085,27095,27115,27149,27156,27183,27192,27197,27199,27207,27215,27227,27232,27305,27370,27389,27398,27409,27463,27470,27486,27511,27520,27543,27546,27551,27560,27572,27575,27585,27609,27617,27620,27622,27625,27636,27639,27642,27653,27655,27667,27677,27686,27693,27700,27726,27730,27739,27742,27745,27751,27755,27774,27807,27823,27839,27849,27877,27878,27880,27889,27901,27919,27921,27926,27939,27941,27946,27947,27948,27949,27950,27956,27963,27973,27974,27975,27976,27986,27987,27990,27993,27994,27998,28000,28011,28013,28014,28024,28025,28031,28035,28036,28037,28053,28054,28057,28060,28062,28063,28064,28066,28073,28075,28078,28082,28087,28088,28089,28091,28092,28093,28096,28098,28099,28102,28105,28106,28109,28110,28113,28118,28119,28121,28122,28123,28129,28130,28131,28134,28135,28136,28138,28140,28142,28154,28158,28161,28164,28166,28170,28172,28174,28183,28187,28190,28191,28192,28193,28198,28199,28200,28201,28204,28210,28222,28224,28230,28232,28233,28234,28238,28239,28241,28243,28248,28249,28264,28265,28267,28269,28270,28272,28274,28275,28277,28283,28284,28286,28287,28288,28289,28290,28291,28297,28298,28305,28306,28307,28321,28327,28329,28330,28338,28354,28355,28374,28380,28381,28382,28384,28389,28396,28402,28404,28405,28408,28410,28412,28413,28414,28419,28421,28423,28427,28429,28431,28437,28440,28442,28448,28453,28457,28461,28466,28483,28487,28494,28496,28501,28503,28509,28518,28532,28535,28537,28542,28549,28550,28555,28556,28557,28559,28571,28572,28584,28593,28595,28596,28605,28606,28607,28608,28609,28612,28618,28619,28621,28622,28623,28626,28629,28631,28642,28646,28647,28648,28674,28677,28680,28683,28686,28687,28692,28695,28709,28711,28712,28713,28721,28727,28734,28739,28740,28743,28745,28750,28752,28759,28770,28771,28781,28783,28785,28786,28787,28794,28808,28812,28813,28819,28820,28824,28826,28828,28833,28834,28835,28841,28847,28850,28851,28852,28855,28864,28870,28874,28876,28877,28878,28879,28881,28884,28887,28889,28890,28891,28898,28900,28912,28914,28919,28921,28924,28925,28926,28927,28941,28942,28944,28945,28957,28958,28963,28974,28975,28979,28983,28985,28989,28991,28993,28994,28998,29002,29003,29008,29009,29023,29028,29031,29032,29033,29035,29036,29042,29047,29051,29052,29067,29069,29070,29087,29089,29093,29099,29100,29102,29112,29115,29120,29123,29128,29129,29130,29146,29153,29155,29156,29158,29161,29167,29168,29175,29176,29179,29191,29193,29195,29197,29201,29203,29205,29237,29239,29243,29309,29310,29312,29313,29316,29317,29333,29338,29369,29379,29380,29382,29384,29396,29404,29411,29412,29418,29424,29439,29441,29453,29495,29499,29520,29537,29541,29555,29568,29569,29571,29573,29575,29579,29584,29589,29590,29593,29594,29599,29605,29606,29610,29612,29613,29617,29618,29623,29624,29628,29639,29668,29680,29685,29688,29689,29719,29721,29729,29744,29752,29755,29757,29763,29767,29774,29778,29781,29795,29798,29816,29821,29834,29838,29843,29855,29859,29862,29873,29876,29880,29881,29885,29899,29902,29919,29926,29932,29935,29945,29953,29960,29968,29979,29982,29985,29987,29988,29993,29995,29998,29999,30009,30011,30016,30017,30018,30022,30024,30026,30029,30031,30042,30043,30048,30051,30054,30057,30060,30065,30074,30075,30076,30077,30078,30081,30082,30083,30085,30090,30091,30092,30095,30096,30097,30099,30100,30107,30118,30121,30122,30124,30129,30134,30137,30147,30148,30156,30159,30163,30167,30169,30170,30174,30177,30178,30182,30186,30188,30198,30199,30204,30215,30218,30219,30222,30229,30230,30232,30237,30241,30243,30246,30250,30252,30255,30257,30258,30259,30263,30272,30273,30277,30279,30286,30290,30295,30303,30304,30306,30319,30321,30326,30335,30351,30418,30419,30420,30424,30429,30434,30441,30449,30452,30461,30487,30488,30489,30490,30495,30496,30500,30504,30508,30518,30519,30520,30521,30526,30527,30569,30623,30627,30656,30661,30665,30676,30700,30748,30859,30926,30930,30931,30960,30968,30992,31025,31027,31054,31075,31076,31078,31089,31098]]],["+",[11,11,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[42,3,3,2,5,[[1001,1,1,2,3],[1003,1,1,3,4],[1004,1,1,4,5]]],[43,2,2,5,7,[[1025,1,1,5,6],[1036,1,1,6,7]]],[45,2,2,7,9,[[1072,1,1,7,8],[1075,1,1,8,9]]],[46,1,1,9,10,[[1082,1,1,9,10]]],[57,1,1,10,11,[[1144,1,1,10,11]]]],[24491,25901,26232,26369,26423,27207,27620,28622,28686,28881,30241]]],["-",[4,4,[[41,1,1,0,1,[[992,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[49,1,1,3,4,[[1104,1,1,3,4]]]],[25815,27056,28609,29396]]],["And",[2,2,[[42,1,1,0,1,[[1000,1,1,0,1]]],[51,1,1,1,2,[[1114,1,1,1,2]]]],[26193,29613]]],["Because",[2,2,[[44,1,1,0,1,[[1049,1,1,0,1]]],[63,1,1,1,2,[[1165,1,1,1,2]]]],[28037,30665]]],["But",[2,2,[[59,1,1,0,1,[[1154,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[30461,30488]]],["For",[633,628,[[39,58,58,0,58,[[931,1,1,0,1],[933,3,3,1,4],[934,3,3,4,7],[935,3,3,7,10],[936,1,1,10,11],[937,2,2,11,13],[938,2,2,13,15],[939,4,4,15,19],[940,4,4,19,23],[941,3,3,23,26],[942,2,2,26,28],[943,2,2,28,30],[944,3,3,30,33],[946,2,2,33,35],[947,1,1,35,36],[948,1,1,36,37],[949,1,1,37,38],[950,2,2,38,40],[951,2,2,40,42],[952,7,7,42,49],[953,4,4,49,53],[954,4,4,53,57],[955,1,1,57,58]]],[40,37,37,58,95,[[959,2,2,58,60],[960,3,3,60,63],[961,2,2,63,65],[962,5,5,65,70],[963,5,5,70,75],[964,2,2,75,77],[965,5,5,77,82],[966,1,1,82,83],[967,1,1,83,84],[968,3,3,84,87],[969,4,4,87,91],[970,3,3,91,94],[971,1,1,94,95]]],[41,43,41,95,136,[[973,2,2,95,97],[976,1,1,97,98],[977,1,1,98,99],[978,4,3,99,102],[979,4,4,102,106],[980,3,2,106,108],[981,5,5,108,113],[982,1,1,113,114],[983,2,2,114,116],[984,4,4,116,120],[986,2,2,120,122],[988,1,1,122,123],[989,1,1,123,124],[990,2,2,124,126],[991,3,3,126,129],[993,3,3,129,132],[994,4,4,132,136]]],[42,26,26,136,162,[[999,5,5,136,141],[1000,3,3,141,144],[1001,5,5,144,149],[1002,3,3,149,152],[1003,2,2,152,154],[1008,2,2,154,156],[1009,3,3,156,159],[1012,1,1,159,160],[1015,1,1,160,161],[1016,1,1,161,162]]],[43,41,40,162,202,[[1018,1,1,162,163],[1019,4,4,163,167],[1020,1,1,167,168],[1021,3,3,168,171],[1022,1,1,171,172],[1023,1,1,172,173],[1025,3,3,173,176],[1026,1,1,176,177],[1027,1,1,177,178],[1030,3,3,178,181],[1032,2,2,181,183],[1034,4,3,183,186],[1035,1,1,186,187],[1036,3,3,187,190],[1037,3,3,190,193],[1038,2,2,193,195],[1040,1,1,195,196],[1041,1,1,196,197],[1042,2,2,197,199],[1043,1,1,199,200],[1044,1,1,200,201],[1045,1,1,201,202]]],[44,103,103,202,305,[[1046,6,6,202,208],[1047,7,7,208,215],[1048,3,3,215,218],[1049,4,4,218,222],[1050,7,7,222,229],[1051,6,6,229,235],[1052,9,9,235,244],[1053,13,13,244,257],[1054,9,9,257,266],[1055,9,9,266,275],[1056,10,10,275,285],[1057,2,2,285,287],[1058,5,5,287,292],[1059,6,6,292,298],[1060,5,5,298,303],[1061,2,2,303,305]]],[45,69,68,305,373,[[1062,6,6,305,311],[1063,3,3,311,314],[1064,7,6,314,320],[1065,5,5,320,325],[1066,3,3,325,328],[1067,1,1,328,329],[1068,4,4,329,333],[1069,2,2,333,335],[1070,4,4,335,339],[1071,1,1,339,340],[1072,11,11,340,351],[1073,4,4,351,355],[1074,2,2,355,357],[1075,5,5,357,362],[1076,8,8,362,370],[1077,3,3,370,373]]],[46,52,51,373,424,[[1078,5,5,373,378],[1079,4,4,378,382],[1080,3,3,382,385],[1081,4,4,385,389],[1082,8,8,389,397],[1083,1,1,397,398],[1084,3,3,398,401],[1085,3,3,401,404],[1086,2,2,404,406],[1087,6,6,406,412],[1088,6,6,412,418],[1089,3,3,418,421],[1090,4,3,421,424]]],[47,23,23,424,447,[[1091,3,3,424,427],[1092,4,4,427,431],[1093,4,4,431,435],[1094,3,3,435,438],[1095,5,5,438,443],[1096,4,4,443,447]]],[48,8,8,447,455,[[1098,3,3,447,450],[1101,5,5,450,455]]],[49,11,11,455,466,[[1103,4,4,455,459],[1104,4,4,459,463],[1105,3,3,463,466]]],[50,4,4,466,470,[[1108,2,2,466,468],[1109,1,1,468,469],[1110,1,1,469,470]]],[51,19,19,470,489,[[1111,2,2,470,472],[1112,7,7,472,479],[1113,2,2,479,481],[1114,5,5,481,486],[1115,3,3,486,489]]],[52,4,4,489,493,[[1117,1,1,489,490],[1118,3,3,490,493]]],[53,11,11,493,504,[[1120,3,3,493,496],[1121,1,1,496,497],[1122,3,3,497,500],[1123,2,2,500,502],[1124,2,2,502,504]]],[54,7,7,504,511,[[1125,1,1,504,505],[1126,1,1,505,506],[1127,2,2,506,508],[1128,3,3,508,511]]],[55,4,4,511,515,[[1129,2,2,511,513],[1130,1,1,513,514],[1131,1,1,514,515]]],[56,2,2,515,517,[[1132,2,2,515,517]]],[57,69,69,517,586,[[1133,1,1,517,518],[1134,7,7,518,525],[1135,4,4,525,529],[1136,7,7,529,536],[1137,3,3,536,539],[1138,5,5,539,544],[1139,11,11,544,555],[1140,4,4,555,559],[1141,6,6,559,565],[1142,8,8,565,573],[1143,3,3,573,576],[1144,7,7,576,583],[1145,3,3,583,586]]],[58,14,14,586,600,[[1146,5,5,586,591],[1147,5,5,591,596],[1148,3,3,596,599],[1149,1,1,599,600]]],[59,9,9,600,609,[[1152,4,4,600,604],[1153,3,3,604,607],[1154,2,2,607,609]]],[60,11,11,609,620,[[1156,5,5,609,614],[1157,5,5,614,619],[1158,1,1,619,620]]],[61,1,1,620,621,[[1163,1,1,620,621]]],[62,1,1,621,622,[[1164,1,1,621,622]]],[63,1,1,622,623,[[1165,1,1,622,623]]],[64,1,1,623,624,[[1166,1,1,623,624]]],[65,4,4,624,628,[[1175,1,1,624,625],[1182,1,1,625,626],[1183,1,1,626,627],[1188,1,1,627,628]]]],[23195,23252,23254,23280,23296,23303,23314,23318,23324,23345,23354,23384,23400,23437,23452,23469,23472,23477,23489,23497,23526,23529,23539,23551,23554,23556,23600,23601,23637,23652,23697,23698,23699,23738,23747,23774,23793,23858,23886,23902,23922,23957,23962,23964,23978,23981,23984,23985,23995,24022,24037,24043,24050,24063,24065,24066,24082,24147,24298,24323,24345,24348,24351,24372,24392,24424,24425,24427,24457,24459,24466,24471,24473,24484,24488,24535,24536,24544,24569,24578,24579,24587,24633,24663,24698,24709,24717,24723,24725,24736,24739,24759,24761,24810,24836,24908,24937,25073,25116,25184,25189,25190,25200,25203,25223,25228,25262,25274,25315,25325,25326,25327,25357,25387,25415,25435,25471,25489,25493,25511,25577,25581,25648,25675,25713,25720,25741,25752,25757,25830,25841,25861,25880,25882,25891,25901,26136,26137,26140,26144,26154,26164,26174,26200,26214,26230,26231,26236,26256,26290,26312,26321,26332,26333,26588,26623,26641,26645,26659,26753,26861,26876,26943,26964,26974,26983,26988,27018,27042,27044,27049,27095,27115,27183,27192,27199,27232,27305,27389,27398,27409,27463,27470,27543,27546,27551,27585,27609,27622,27625,27642,27653,27655,27693,27700,27742,27774,27807,27823,27849,27878,27926,27939,27941,27946,27947,27948,27950,27973,27974,27975,27976,27986,27987,27990,27994,27998,28014,28024,28025,28035,28036,28053,28054,28057,28060,28062,28064,28066,28073,28075,28078,28082,28088,28091,28093,28096,28099,28102,28105,28106,28109,28110,28113,28118,28119,28121,28122,28129,28130,28131,28134,28135,28136,28138,28140,28154,28158,28161,28164,28166,28170,28172,28174,28183,28187,28190,28191,28192,28193,28198,28199,28200,28201,28204,28210,28222,28224,28230,28233,28234,28238,28239,28241,28243,28248,28249,28267,28269,28270,28272,28275,28287,28288,28289,28291,28297,28298,28306,28307,28321,28329,28330,28354,28355,28374,28380,28381,28382,28384,28389,28396,28405,28410,28413,28414,28419,28421,28429,28431,28437,28440,28442,28448,28453,28457,28461,28466,28487,28494,28501,28503,28509,28532,28537,28549,28556,28557,28559,28593,28606,28607,28608,28612,28618,28619,28621,28623,28626,28629,28631,28642,28646,28647,28648,28674,28677,28680,28692,28695,28709,28711,28721,28727,28734,28739,28740,28743,28745,28771,28783,28785,28794,28808,28812,28813,28819,28820,28826,28828,28833,28841,28850,28851,28852,28864,28870,28874,28876,28878,28879,28884,28887,28889,28890,28891,28898,28900,28921,28926,28927,28941,28944,28945,28957,28958,28974,28975,28979,28983,28985,28989,28991,28993,28994,29002,29008,29009,29028,29035,29042,29047,29051,29052,29067,29069,29070,29089,29093,29099,29100,29112,29120,29128,29129,29153,29156,29158,29167,29168,29175,29176,29179,29191,29193,29201,29203,29237,29239,29243,29309,29312,29313,29316,29333,29369,29380,29382,29384,29404,29411,29412,29418,29424,29439,29441,29495,29499,29520,29555,29568,29569,29571,29573,29575,29579,29584,29589,29590,29594,29599,29605,29606,29610,29617,29618,29623,29624,29628,29668,29685,29688,29689,29719,29721,29729,29744,29752,29755,29757,29778,29781,29795,29798,29816,29838,29855,29859,29873,29876,29880,29899,29902,29919,29926,29945,29953,29968,29979,29982,29985,29987,29988,29993,29995,29998,29999,30009,30011,30016,30017,30018,30022,30024,30026,30029,30031,30042,30043,30048,30051,30054,30057,30060,30065,30074,30076,30077,30078,30081,30082,30083,30085,30090,30092,30095,30096,30099,30100,30107,30118,30121,30122,30124,30129,30134,30137,30147,30159,30163,30167,30169,30170,30174,30182,30186,30215,30218,30222,30229,30230,30232,30237,30250,30252,30255,30272,30273,30277,30286,30290,30295,30303,30304,30306,30319,30321,30326,30335,30351,30418,30419,30420,30424,30429,30434,30441,30449,30452,30487,30490,30495,30496,30500,30504,30508,30518,30520,30521,30527,30627,30656,30661,30676,30859,30968,30992,31098]]],["Let",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28305]]],["Why",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,1,1,3,4,[[1005,1,1,3,4]]]],[24152,24840,25957,26470]]],["and",[2,2,[[43,1,1,0,1,[[1025,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[27215,29834]]],["as",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23162]]],["because",[3,3,[[42,2,2,0,2,[[999,1,1,0,1],[1006,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]]],[26139,26507,27993]]],["doubt",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28550]]],["even",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30351]]],["for",[392,384,[[39,68,68,0,68,[[929,2,2,0,2],[930,5,5,2,7],[931,3,3,7,10],[932,4,4,10,14],[933,3,3,14,17],[934,6,6,17,23],[935,2,2,23,25],[937,3,3,25,28],[938,5,5,28,33],[940,2,2,33,35],[942,1,1,35,36],[943,1,1,36,37],[944,2,2,37,39],[945,2,2,39,41],[946,2,2,41,43],[947,2,2,43,45],[948,1,1,45,46],[949,1,1,46,47],[950,2,2,47,49],[951,8,8,49,57],[952,1,1,57,58],[954,5,5,58,63],[955,2,2,63,65],[956,3,3,65,68]]],[40,34,34,68,102,[[957,3,3,68,71],[958,1,1,71,72],[959,1,1,72,73],[961,1,1,73,74],[962,5,5,74,79],[963,1,1,79,80],[964,1,1,80,81],[965,3,3,81,84],[966,3,3,84,87],[967,3,3,87,90],[968,3,3,90,93],[969,5,5,93,98],[970,2,2,98,100],[972,2,2,100,102]]],[41,50,49,102,151,[[973,4,4,102,106],[974,1,1,106,107],[975,1,1,107,108],[976,1,1,108,109],[977,1,1,109,110],[978,8,7,110,117],[979,1,1,117,118],[980,3,3,118,121],[981,3,3,121,124],[982,1,1,124,125],[983,1,1,125,126],[986,1,1,126,127],[988,2,2,127,129],[989,1,1,129,130],[990,2,2,130,132],[991,2,2,132,134],[992,5,5,134,139],[993,4,4,139,143],[994,3,3,143,146],[995,5,5,146,151]]],[42,33,33,151,184,[[998,1,1,151,152],[999,2,2,152,154],[1000,5,5,154,159],[1001,4,4,159,163],[1002,3,3,163,166],[1003,3,3,166,169],[1004,2,2,169,171],[1005,1,1,171,172],[1007,1,1,172,173],[1008,1,1,173,174],[1009,1,1,174,175],[1010,1,1,175,176],[1012,2,2,176,178],[1014,1,1,178,179],[1015,2,2,179,181],[1016,1,1,181,182],[1017,2,2,182,184]]],[43,38,36,184,220,[[1021,4,4,184,188],[1022,1,1,188,189],[1024,2,2,189,191],[1025,1,1,191,192],[1026,1,1,192,193],[1030,1,1,193,194],[1033,2,2,194,196],[1035,3,3,196,199],[1036,1,1,199,200],[1037,3,3,200,203],[1038,3,3,203,206],[1039,2,2,206,208],[1040,4,4,208,212],[1043,3,2,212,214],[1044,4,3,214,217],[1045,3,3,217,220]]],[44,36,34,220,254,[[1046,3,3,220,223],[1047,2,1,223,224],[1048,3,3,224,227],[1049,2,2,227,229],[1050,1,1,229,230],[1051,3,3,230,233],[1052,4,4,233,237],[1053,3,3,237,240],[1055,1,1,240,241],[1056,1,1,241,242],[1057,2,2,242,244],[1058,5,4,244,248],[1059,4,4,248,252],[1060,1,1,252,253],[1061,1,1,253,254]]],[45,33,33,254,287,[[1063,3,3,254,257],[1064,4,4,257,261],[1065,1,1,261,262],[1067,1,1,262,263],[1068,2,2,263,265],[1069,1,1,265,266],[1070,3,3,266,269],[1071,5,5,269,274],[1072,1,1,274,275],[1075,5,5,275,280],[1076,4,4,280,284],[1077,3,3,284,287]]],[46,24,22,287,309,[[1078,1,1,287,288],[1079,2,2,288,290],[1080,2,2,290,292],[1081,1,1,292,293],[1083,2,2,293,295],[1084,3,3,295,298],[1085,1,1,298,299],[1086,1,1,299,300],[1087,1,1,300,301],[1088,3,3,301,304],[1089,7,5,304,309]]],[47,13,13,309,322,[[1091,1,1,309,310],[1092,2,2,310,312],[1093,4,4,312,316],[1094,3,3,316,319],[1096,3,3,319,322]]],[48,3,3,322,325,[[1101,2,2,322,324],[1102,1,1,324,325]]],[49,1,1,325,326,[[1106,1,1,325,326]]],[50,2,2,326,328,[[1109,2,2,326,328]]],[51,4,4,328,332,[[1112,1,1,328,329],[1113,1,1,329,330],[1114,1,1,330,331],[1115,1,1,331,332]]],[52,1,1,332,333,[[1118,1,1,332,333]]],[53,3,3,333,336,[[1122,1,1,333,334],[1123,2,2,334,336]]],[54,5,5,336,341,[[1125,1,1,336,337],[1126,1,1,337,338],[1127,1,1,338,339],[1128,2,2,339,341]]],[55,2,2,341,343,[[1131,2,2,341,343]]],[56,1,1,343,344,[[1132,1,1,343,344]]],[57,21,20,344,364,[[1137,1,1,344,345],[1139,2,2,345,347],[1140,1,1,347,348],[1142,2,2,348,350],[1143,6,6,350,356],[1144,2,2,356,358],[1145,7,6,358,364]]],[58,1,1,364,365,[[1146,1,1,364,365]]],[60,3,3,365,368,[[1156,1,1,365,366],[1157,1,1,366,367],[1158,1,1,367,368]]],[61,2,2,368,370,[[1160,1,1,368,369],[1162,1,1,369,370]]],[65,14,14,370,384,[[1167,1,1,370,371],[1169,1,1,371,372],[1175,1,1,372,373],[1179,1,1,373,374],[1180,2,2,374,376],[1182,1,1,376,377],[1185,2,2,377,379],[1187,4,4,379,383],[1188,1,1,383,384]]]],[23164,23165,23171,23174,23175,23182,23189,23194,23201,23207,23215,23219,23226,23227,23246,23263,23264,23289,23290,23298,23306,23314,23316,23328,23341,23392,23395,23403,23427,23434,23436,23440,23443,23522,23523,23621,23635,23674,23675,23715,23720,23734,23737,23776,23784,23808,23852,23888,23900,23921,23926,23927,23928,23931,23935,23937,23941,23963,24064,24085,24097,24106,24127,24148,24172,24197,24200,24201,24231,24237,24253,24275,24309,24406,24421,24438,24443,24455,24459,24490,24503,24544,24572,24577,24602,24610,24615,24653,24658,24672,24685,24687,24696,24724,24726,24728,24750,24752,24794,24824,24877,24881,24911,24923,24941,24969,24983,25033,25071,25146,25169,25172,25178,25179,25180,25191,25194,25201,25263,25285,25291,25345,25349,25351,25370,25409,25567,25622,25633,25672,25704,25711,25736,25779,25785,25798,25812,25815,25817,25834,25835,25849,25852,25866,25923,25935,25943,25947,25950,25969,25976,26120,26122,26154,26165,26179,26198,26201,26203,26223,26229,26246,26256,26263,26284,26328,26329,26340,26367,26405,26423,26462,26562,26627,26643,26698,26733,26739,26798,26831,26856,26884,26905,26906,27025,27034,27038,27056,27085,27149,27156,27197,27227,27370,27486,27511,27560,27572,27575,27617,27636,27639,27642,27667,27677,27686,27726,27730,27739,27745,27751,27755,27839,27849,27877,27880,27889,27901,27919,27921,27946,27949,27956,27963,28000,28011,28013,28031,28037,28063,28082,28087,28089,28092,28098,28106,28109,28123,28140,28142,28200,28232,28264,28265,28270,28272,28274,28277,28283,28284,28286,28290,28327,28338,28402,28404,28408,28412,28413,28423,28427,28448,28483,28496,28518,28535,28542,28555,28556,28571,28572,28584,28595,28596,28605,28680,28683,28687,28712,28713,28750,28752,28759,28770,28781,28786,28787,28824,28834,28835,28847,28855,28877,28912,28914,28919,28924,28925,28942,28963,28985,28991,28998,29003,29028,29031,29032,29033,29036,29067,29087,29102,29112,29115,29123,29130,29146,29155,29161,29195,29197,29205,29310,29317,29338,29453,29537,29541,29579,29593,29612,29639,29680,29763,29767,29774,29821,29843,29862,29881,29885,29932,29935,29960,30043,30075,30091,30097,30148,30156,30177,30178,30188,30198,30199,30204,30219,30229,30243,30246,30257,30258,30259,30263,30279,30489,30519,30526,30569,30623,30700,30748,30859,30926,30930,30931,30960,31025,31027,31054,31075,31076,31078,31089]]],["indeed",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28123]]],["seeing",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26964]]],["then",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29379]]],["therefore",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24538]]],["verily",[2,2,[[43,1,1,0,1,[[1033,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]]],[27520,28330]]],["will",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29023]]],["yet",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[44,1,1,1,2,[[1050,1,1,1,2]]]],[23660,28054]]]]},{"k":"G1064","v":[["*",[9,9,[[39,3,3,0,3,[[929,2,2,0,2],[952,1,1,2,3]]],[40,1,1,3,4,[[969,1,1,3,4]]],[41,2,2,4,6,[[973,1,1,4,5],[993,1,1,5,6]]],[51,1,1,6,7,[[1115,1,1,6,7]]],[55,1,1,7,8,[[1129,1,1,7,8]]],[65,1,1,8,9,[[1178,1,1,8,9]]]],[23162,23167,23976,24734,24924,25849,29624,29904,30893]]],["+",[7,7,[[39,3,3,0,3,[[929,2,2,0,2],[952,1,1,2,3]]],[40,1,1,3,4,[[969,1,1,3,4]]],[41,1,1,4,5,[[993,1,1,4,5]]],[51,1,1,5,6,[[1115,1,1,5,6]]],[65,1,1,6,7,[[1178,1,1,6,7]]]],[23162,23167,23976,24734,25849,29624,30893]]],["bellies",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29904]]],["womb",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24924]]]]},{"k":"G1065","v":[["*",[11,11,[[41,4,4,0,4,[[983,1,1,0,1],[990,1,1,1,2],[991,1,1,2,3],[996,1,1,3,4]]],[43,4,4,4,8,[[1019,1,1,4,5],[1025,1,1,5,6],[1028,1,1,6,7],[1034,1,1,7,8]]],[44,1,1,8,9,[[1053,1,1,8,9]]],[45,2,2,9,11,[[1065,1,1,9,10],[1070,1,1,10,11]]]],[25413,25693,25773,26012,26967,27206,27325,27550,28148,28441,28542]]],["+",[7,7,[[41,2,2,0,2,[[991,1,1,0,1],[996,1,1,1,2]]],[43,3,3,2,5,[[1019,1,1,2,3],[1025,1,1,3,4],[1034,1,1,4,5]]],[44,1,1,5,6,[[1053,1,1,5,6]]],[45,1,1,6,7,[[1065,1,1,6,7]]]],[25773,26012,26967,27206,27550,28148,28441]]],["Yet",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25693]]],["doubtless",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28542]]],["hath",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27325]]],["yet",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25413]]]]},{"k":"G1066","v":[["Gedeon",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30204]]]]},{"k":"G1067","v":[["hell",[12,12,[[39,7,7,0,7,[[933,3,3,0,3],[938,1,1,3,4],[946,1,1,4,5],[951,2,2,5,7]]],[40,3,3,7,10,[[965,3,3,7,10]]],[41,1,1,10,11,[[984,1,1,10,11]]],[58,1,1,11,12,[[1148,1,1,11,12]]]],[23256,23263,23264,23445,23736,23933,23951,24581,24583,24585,25464,30325]]]]},{"k":"G1068","v":[["Gethsemane",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24090,24786]]]]},{"k":"G1069","v":[["*",[4,4,[[41,3,3,0,3,[[986,1,1,0,1],[987,2,2,1,3]]],[42,1,1,3,4,[[1005,1,1,3,4]]]],[25565,25594,25597,26448]]],["+",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25597]]],["neighbours",[3,3,[[41,2,2,0,2,[[986,1,1,0,1],[987,1,1,1,2]]],[42,1,1,2,3,[[1005,1,1,2,3]]]],[25565,25594,26448]]]]},{"k":"G1070","v":[["laugh",[2,2,[[41,2,2,0,2,[[978,2,2,0,2]]]],[25167,25171]]]]},{"k":"G1071","v":[["laughter",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30346]]]]},{"k":"G1072","v":[["*",[9,8,[[40,2,2,0,2,[[960,1,1,0,1],[971,1,1,1,2]]],[41,2,2,2,4,[[986,1,1,2,3],[987,1,1,3,4]]],[42,3,2,4,6,[[998,2,1,4,5],[1002,1,1,5,6]]],[65,2,2,6,8,[[1174,1,1,6,7],[1181,1,1,7,8]]]],[24360,24862,25576,25604,26102,26270,30832,30954]]],["+",[2,2,[[40,2,2,0,2,[[960,1,1,0,1],[971,1,1,1,2]]]],[24360,24862]]],["Fill",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26102]]],["filled",[6,6,[[41,2,2,0,2,[[986,1,1,0,1],[987,1,1,1,2]]],[42,2,2,2,4,[[998,1,1,2,3],[1002,1,1,3,4]]],[65,2,2,4,6,[[1174,1,1,4,5],[1181,1,1,5,6]]]],[25576,25604,26102,26270,30832,30954]]]]},{"k":"G1073","v":[["*",[11,11,[[39,2,2,0,2,[[951,2,2,0,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[44,1,1,3,4,[[1048,1,1,3,4]]],[65,7,7,4,11,[[1170,2,2,4,6],[1171,1,1,6,7],[1181,1,1,7,8],[1183,2,2,8,10],[1187,1,1,10,11]]]],[23943,23945,25444,28005,30774,30776,30787,30953,30978,30979,31062]]],["+",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23945]]],["full",[10,10,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[65,7,7,3,10,[[1170,2,2,3,5],[1171,1,1,5,6],[1181,1,1,6,7],[1183,2,2,7,9],[1187,1,1,9,10]]]],[23943,25444,28005,30774,30776,30787,30953,30978,30979,31062]]]]},{"k":"G1074","v":[["*",[42,37,[[39,13,10,0,10,[[929,4,1,0,1],[939,1,1,1,2],[940,4,4,2,6],[944,1,1,6,7],[945,1,1,7,8],[951,1,1,8,9],[952,1,1,9,10]]],[40,5,4,10,14,[[964,3,2,10,12],[965,1,1,12,13],[969,1,1,13,14]]],[41,14,13,14,27,[[973,3,2,14,16],[979,1,1,16,17],[981,1,1,17,18],[983,6,6,18,24],[988,1,1,24,25],[989,1,1,25,26],[993,1,1,26,27]]],[43,5,5,27,32,[[1019,1,1,27,28],[1025,1,1,28,29],[1030,1,1,29,30],[1031,1,1,30,31],[1032,1,1,31,32]]],[48,2,2,32,34,[[1099,2,2,32,34]]],[49,1,1,34,35,[[1104,1,1,34,35]]],[50,1,1,35,36,[[1107,1,1,35,36]]],[57,1,1,36,37,[[1135,1,1,36,37]]]],[23161,23475,23528,23530,23531,23534,23676,23717,23954,23991,24512,24538,24557,24747,24941,24943,25226,25342,25434,25435,25436,25437,25455,25456,25628,25676,25858,26989,27209,27398,27430,27463,29256,29272,29406,29491,30005]]],["+",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27463]]],["ages",[2,2,[[48,2,2,0,2,[[1099,2,2,0,2]]]],[29256,29272]]],["generation",[31,29,[[39,9,9,0,9,[[939,1,1,0,1],[940,4,4,1,5],[944,1,1,5,6],[945,1,1,6,7],[951,1,1,7,8],[952,1,1,8,9]]],[40,5,4,9,13,[[964,3,2,9,11],[965,1,1,11,12],[969,1,1,12,13]]],[41,13,12,13,25,[[973,2,1,13,14],[979,1,1,14,15],[981,1,1,15,16],[983,6,6,16,22],[988,1,1,22,23],[989,1,1,23,24],[993,1,1,24,25]]],[43,3,3,25,28,[[1019,1,1,25,26],[1025,1,1,26,27],[1030,1,1,27,28]]],[57,1,1,28,29,[[1135,1,1,28,29]]]],[23475,23528,23530,23531,23534,23676,23717,23954,23991,24512,24538,24557,24747,24943,25226,25342,25434,25435,25436,25437,25455,25456,25628,25676,25858,26989,27209,27398,30005]]],["generations",[6,3,[[39,4,1,0,1,[[929,4,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[50,1,1,2,3,[[1107,1,1,2,3]]]],[23161,24941,29491]]],["nation",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29406]]],["times",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27430]]]]},{"k":"G1075","v":[["+",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30070]]]]},{"k":"G1076","v":[["genealogies",[2,2,[[53,1,1,0,1,[[1119,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[29700,29932]]]]},{"k":"G1077","v":[["birthday",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]]],[23603,24428]]]]},{"k":"G1078","v":[["*",[3,3,[[39,1,1,0,1,[[929,1,1,0,1]]],[58,2,2,1,3,[[1146,1,1,1,2],[1148,1,1,2,3]]]],[23145,30289,30325]]],["generation",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23145]]],["natural",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30289]]],["nature",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30325]]]]},{"k":"G1079","v":[["birth",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26441]]]]},{"k":"G1080","v":[["*",[97,65,[[39,45,20,0,20,[[929,41,16,0,16],[930,2,2,16,18],[947,1,1,18,19],[954,1,1,19,20]]],[40,1,1,20,21,[[970,1,1,20,21]]],[41,4,4,21,25,[[973,3,3,21,24],[995,1,1,24,25]]],[42,18,15,25,40,[[997,1,1,25,26],[999,8,6,26,32],[1004,1,1,32,33],[1005,5,5,33,38],[1012,2,1,38,39],[1014,1,1,39,40]]],[43,7,7,40,47,[[1019,1,1,40,41],[1024,3,3,41,44],[1030,1,1,44,45],[1039,2,2,45,47]]],[44,1,1,47,48,[[1054,1,1,47,48]]],[45,1,1,48,49,[[1065,1,1,48,49]]],[47,3,3,49,52,[[1094,3,3,49,52]]],[54,1,1,52,53,[[1126,1,1,52,53]]],[56,1,1,53,54,[[1132,1,1,53,54]]],[57,4,4,54,58,[[1133,1,1,54,55],[1137,1,1,55,56],[1143,2,2,56,58]]],[60,1,1,58,59,[[1157,1,1,58,59]]],[61,10,6,59,65,[[1160,1,1,59,60],[1161,2,1,60,61],[1162,1,1,61,62],[1163,6,3,62,65]]]],[23146,23147,23148,23149,23150,23151,23152,23153,23154,23155,23156,23157,23158,23159,23160,23164,23170,23173,23774,24078,24775,24906,24928,24950,25964,26057,26123,26124,26125,26126,26127,26128,26422,26442,26459,26460,26472,26474,26747,26822,26957,27124,27136,27145,27395,27707,27732,28166,28448,29154,29155,29160,29850,29948,29968,30035,30184,30195,30512,30579,30588,30610,30625,30628,30642]]],["+",[1,1,[[61,1,1,0,1,[[1163,1,1,0,1]]]],[30625]]],["bare",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25964]]],["bear",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24906]]],["begat",[42,18,[[39,39,15,0,15,[[929,39,15,0,15]]],[43,2,2,15,17,[[1024,2,2,15,17]]],[61,1,1,17,18,[[1163,1,1,17,18]]]],[23146,23147,23148,23149,23150,23151,23152,23153,23154,23155,23156,23157,23158,23159,23160,27124,27145,30625]]],["begotten",[6,6,[[43,1,1,0,1,[[1030,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]],[57,2,2,3,5,[[1133,1,1,3,4],[1137,1,1,4,5]]],[61,1,1,5,6,[[1163,1,1,5,6]]]],[27395,28448,29948,29968,30035,30642]]],["born",[39,36,[[39,5,5,0,5,[[929,1,1,0,1],[930,2,2,1,3],[947,1,1,3,4],[954,1,1,4,5]]],[40,1,1,5,6,[[970,1,1,5,6]]],[41,1,1,6,7,[[973,1,1,6,7]]],[42,17,15,7,22,[[997,1,1,7,8],[999,8,6,8,14],[1004,1,1,14,15],[1005,5,5,15,20],[1012,1,1,20,21],[1014,1,1,21,22]]],[43,4,4,22,26,[[1019,1,1,22,23],[1024,1,1,23,24],[1039,2,2,24,26]]],[44,1,1,26,27,[[1054,1,1,26,27]]],[47,2,2,27,29,[[1094,2,2,27,29]]],[57,1,1,29,30,[[1143,1,1,29,30]]],[61,7,6,30,36,[[1160,1,1,30,31],[1161,2,1,31,32],[1162,1,1,32,33],[1163,3,3,33,36]]]],[23160,23170,23173,23774,24078,24775,24928,26057,26123,26124,26125,26126,26127,26128,26422,26442,26459,26460,26472,26474,26747,26822,26957,27136,27707,27732,28166,29154,29160,30195,30579,30588,30610,30625,30628,30642]]],["conceived",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23164]]],["delivered",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26747]]],["forth",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24950]]],["gender",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29850]]],["gendereth",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29155]]],["made",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30512]]],["sprang",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30184]]]]},{"k":"G1081","v":[["*",[9,9,[[39,4,4,0,4,[[931,1,1,0,1],[940,1,1,1,2],[951,1,1,2,3],[954,1,1,3,4]]],[40,1,1,4,5,[[970,1,1,4,5]]],[41,3,3,5,8,[[975,1,1,5,6],[984,1,1,6,7],[994,1,1,7,8]]],[46,1,1,8,9,[[1086,1,1,8,9]]]],[23199,23523,23951,24083,24779,25032,25477,25882,28966]]],["fruit",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]]],[24083,24779,25882]]],["fruits",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[46,1,1,1,2,[[1086,1,1,1,2]]]],[25477,28966]]],["generation",[4,4,[[39,3,3,0,3,[[931,1,1,0,1],[940,1,1,1,2],[951,1,1,2,3]]],[41,1,1,3,4,[[975,1,1,3,4]]]],[23199,23523,23951,25032]]]]},{"k":"G1082","v":[["Gennesaret",[3,3,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,1,1,2,3,[[977,1,1,2,3]]]],[23631,24460,25108]]]]},{"k":"G1083","v":[["birth",[2,2,[[39,1,1,0,1,[[929,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]]],[23162,24907]]]]},{"k":"G1084","v":[["born",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]]],[23470,25223]]]]},{"k":"G1085","v":[["*",[21,21,[[39,2,2,0,2,[[941,1,1,0,1],[945,1,1,1,2]]],[40,2,2,2,4,[[963,1,1,2,3],[965,1,1,3,4]]],[43,9,9,4,13,[[1021,2,2,4,6],[1024,2,2,6,8],[1030,1,1,8,9],[1034,2,2,9,11],[1035,2,2,11,13]]],[45,3,3,13,16,[[1073,2,2,13,15],[1075,1,1,15,16]]],[46,1,1,16,17,[[1088,1,1,16,17]]],[47,1,1,17,18,[[1091,1,1,17,18]]],[49,1,1,18,19,[[1105,1,1,18,19]]],[59,1,1,19,20,[[1152,1,1,19,20]]],[65,1,1,20,21,[[1188,1,1,20,21]]]],[23586,23721,24489,24567,27028,27058,27129,27135,27388,27551,27552,27559,27581,28644,28662,28688,29015,29071,29426,30408,31096]]],["+",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27058]]],["born",[2,2,[[43,2,2,0,2,[[1035,2,2,0,2]]]],[27559,27581]]],["countrymen",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29015]]],["diversities",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28662]]],["generation",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30408]]],["kind",[3,3,[[39,2,2,0,2,[[941,1,1,0,1],[945,1,1,1,2]]],[40,1,1,2,3,[[965,1,1,2,3]]]],[23586,23721,24567]]],["kindred",[3,3,[[43,3,3,0,3,[[1021,1,1,0,1],[1024,2,2,1,3]]]],[27028,27129,27135]]],["kinds",[2,2,[[45,2,2,0,2,[[1073,1,1,0,1],[1075,1,1,1,2]]]],[28644,28688]]],["nation",[2,2,[[40,1,1,0,1,[[963,1,1,0,1]]],[47,1,1,1,2,[[1091,1,1,1,2]]]],[24489,29071]]],["offspring",[3,3,[[43,2,2,0,2,[[1034,2,2,0,2]]],[65,1,1,2,3,[[1188,1,1,2,3]]]],[27551,27552,31096]]],["stock",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[27388,29426]]]]},{"k":"G1086","v":[["Gergesenes",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23373]]]]},{"k":"G1087","v":[["senate",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27080]]]]},{"k":"G1088","v":[["old",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26124]]]]},{"k":"G1089","v":[["*",[15,15,[[39,2,2,0,2,[[944,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[965,1,1,2,3]]],[41,2,2,3,5,[[981,1,1,3,4],[986,1,1,4,5]]],[42,2,2,5,7,[[998,1,1,5,6],[1004,1,1,6,7]]],[43,3,3,7,10,[[1027,1,1,7,8],[1037,1,1,8,9],[1040,1,1,9,10]]],[50,1,1,10,11,[[1108,1,1,10,11]]],[57,3,3,11,14,[[1134,1,1,11,12],[1138,2,2,12,14]]],[59,1,1,14,15,[[1152,1,1,14,15]]]],[23700,24163,24539,25328,25577,26104,26433,27269,27637,27748,29515,29986,30048,30049,30402]]],["eat",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27748]]],["eaten",[2,2,[[43,2,2,0,2,[[1027,1,1,0,1],[1037,1,1,1,2]]]],[27269,27637]]],["taste",[7,7,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,2,2,2,4,[[981,1,1,2,3],[986,1,1,3,4]]],[42,1,1,4,5,[[1004,1,1,4,5]]],[50,1,1,5,6,[[1108,1,1,5,6]]],[57,1,1,6,7,[[1134,1,1,6,7]]]],[23700,24539,25328,25577,26433,29515,29986]]],["tasted",[5,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,1,1,1,2,[[998,1,1,1,2]]],[57,2,2,2,4,[[1138,2,2,2,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[24163,26104,30048,30049,30402]]]]},{"k":"G1090","v":[["dressed",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30051]]]]},{"k":"G1091","v":[["husbandry",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28419]]]]},{"k":"G1092","v":[["*",[19,17,[[39,6,6,0,6,[[949,6,6,0,6]]],[40,5,4,6,10,[[968,5,4,6,10]]],[41,5,4,10,14,[[992,5,4,10,14]]],[42,1,1,14,15,[[1011,1,1,14,15]]],[54,1,1,15,16,[[1126,1,1,15,16]]],[58,1,1,16,17,[[1150,1,1,16,17]]]],[23859,23860,23861,23864,23866,23867,24674,24675,24680,24682,25788,25789,25793,25795,26700,29833,30361]]],["husbandman",[3,3,[[42,1,1,0,1,[[1011,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]],[58,1,1,2,3,[[1150,1,1,2,3]]]],[26700,29833,30361]]],["husbandmen",[16,14,[[39,6,6,0,6,[[949,6,6,0,6]]],[40,5,4,6,10,[[968,5,4,6,10]]],[41,5,4,10,14,[[992,5,4,10,14]]]],[23859,23860,23861,23864,23866,23867,24674,24675,24680,24682,25788,25789,25793,25795]]]]},{"k":"G1093","v":[["*",[252,226,[[39,42,38,0,38,[[930,3,3,0,3],[932,2,1,3,4],[933,4,4,4,8],[934,2,2,8,10],[937,3,3,10,13],[938,3,3,13,16],[939,2,2,16,18],[940,2,2,18,20],[941,4,3,20,23],[942,1,1,23,24],[943,1,1,24,25],[944,2,1,25,26],[945,1,1,26,27],[946,3,2,27,29],[951,2,2,29,31],[952,2,2,31,33],[953,2,2,33,35],[955,2,2,35,37],[956,1,1,37,38]]],[40,19,17,38,55,[[958,1,1,38,39],[960,9,7,39,46],[962,2,2,46,48],[964,1,1,48,49],[965,2,2,49,51],[969,2,2,51,53],[970,1,1,53,54],[971,1,1,54,55]]],[41,26,26,55,81,[[974,1,1,55,56],[976,1,1,56,57],[977,3,3,57,60],[978,1,1,60,61],[980,3,3,61,64],[982,1,1,64,65],[983,2,2,65,67],[984,3,3,67,70],[985,1,1,70,71],[986,1,1,71,72],[988,1,1,72,73],[990,1,1,73,74],[993,4,4,74,78],[994,1,1,78,79],[995,1,1,79,80],[996,1,1,80,81]]],[42,13,11,81,92,[[999,4,2,81,83],[1002,1,1,83,84],[1004,2,2,84,86],[1008,2,2,86,88],[1013,1,1,88,89],[1017,3,3,89,92]]],[43,34,31,92,123,[[1018,1,1,92,93],[1019,1,1,93,94],[1020,1,1,94,95],[1021,2,2,95,97],[1024,11,9,97,106],[1025,1,1,106,107],[1026,2,2,107,109],[1027,2,2,109,111],[1028,1,1,111,112],[1030,4,3,112,115],[1031,1,1,115,116],[1034,2,2,116,118],[1039,1,1,118,119],[1043,1,1,119,120],[1044,3,3,120,123]]],[44,3,3,123,126,[[1054,2,2,123,125],[1055,1,1,125,126]]],[45,4,4,126,130,[[1069,1,1,126,127],[1071,2,2,127,129],[1076,1,1,129,130]]],[48,4,4,130,134,[[1097,1,1,130,131],[1099,1,1,131,132],[1100,1,1,132,133],[1102,1,1,133,134]]],[50,4,4,134,138,[[1107,2,2,134,136],[1109,2,2,136,138]]],[57,10,9,138,147,[[1133,1,1,138,139],[1138,1,1,139,140],[1140,2,2,140,142],[1143,3,3,142,145],[1144,3,2,145,147]]],[58,5,5,147,152,[[1150,5,5,147,152]]],[60,4,4,152,156,[[1158,4,4,152,156]]],[61,1,1,156,157,[[1163,1,1,156,157]]],[64,1,1,157,158,[[1166,1,1,157,158]]],[65,82,68,158,226,[[1167,2,2,158,160],[1169,1,1,160,161],[1171,6,4,161,165],[1172,6,5,165,170],[1173,5,3,170,173],[1174,3,3,173,176],[1175,4,3,176,179],[1176,4,4,179,183],[1177,5,4,183,187],[1178,6,5,187,192],[1179,7,6,192,198],[1180,9,7,198,205],[1182,4,4,205,209],[1183,5,4,209,213],[1184,7,6,213,219],[1185,2,2,219,221],[1186,3,3,221,224],[1187,3,2,224,226]]]],[23175,23189,23190,23224,23239,23247,23252,23269,23292,23301,23385,23405,23410,23432,23446,23451,23483,23484,23529,23531,23544,23547,23562,23631,23668,23691,23725,23745,23746,23927,23953,23987,23992,24026,24033,24174,24180,24213,24270,24324,24328,24331,24343,24349,24351,24354,24454,24460,24506,24541,24558,24744,24748,24789,24859,24987,25088,25110,25118,25131,25195,25253,25260,25272,25384,25407,25436,25508,25510,25515,25525,25588,25637,25696,25849,25851,25859,25861,25908,25979,25996,26142,26151,26278,26387,26389,26604,26612,26763,26906,26907,26909,26931,26968,27021,27046,27048,27119,27120,27122,27127,27145,27149,27152,27156,27165,27209,27220,27224,27270,27271,27313,27379,27381,27409,27429,27547,27549,27726,27837,27894,27898,27899,28172,28183,28206,28532,28593,28595,28765,29216,29266,29281,29340,29481,29485,29519,29522,29973,30051,30096,30101,30181,30185,30210,30237,30238,30359,30361,30366,30371,30372,30527,30529,30532,30535,30632,30677,30702,30704,30756,30782,30785,30789,30792,30797,30801,30803,30806,30808,30811,30812,30813,30832,30834,30840,30841,30843,30844,30863,30866,30867,30869,30876,30878,30882,30890,30895,30900,30903,30904,30907,30911,30916,30919,30920,30921,30922,30929,30932,30933,30941,30942,30944,30945,30955,30956,30968,30972,30977,30980,30983,30993,30994,30996,31002,31004,31016,31017,31019,31036,31046,31047,31049,31054,31077]]],["+",[2,2,[[42,1,1,0,1,[[999,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]]],[26151,27381]]],["EARTH",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30980]]],["country",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[23410,27119]]],["earth",[187,166,[[39,27,24,0,24,[[933,4,4,0,4],[934,2,2,4,6],[937,1,1,6,7],[938,1,1,7,8],[939,1,1,8,9],[940,2,2,9,11],[941,2,1,11,12],[944,2,1,12,13],[945,1,1,13,14],[946,3,2,14,16],[951,2,2,16,18],[952,2,2,18,20],[953,2,2,20,22],[955,1,1,22,23],[956,1,1,23,24]]],[40,9,7,24,31,[[958,1,1,24,25],[960,5,3,25,28],[965,1,1,28,29],[969,2,2,29,31]]],[41,16,16,31,47,[[974,1,1,31,32],[977,1,1,32,33],[978,1,1,33,34],[982,1,1,34,35],[983,2,2,35,37],[984,3,3,37,40],[988,1,1,40,41],[990,1,1,41,42],[993,3,3,42,45],[995,1,1,45,46],[996,1,1,46,47]]],[42,4,3,47,50,[[999,2,1,47,48],[1008,1,1,48,49],[1013,1,1,49,50]]],[43,18,18,50,68,[[1018,1,1,50,51],[1019,1,1,51,52],[1020,1,1,52,53],[1021,2,2,53,55],[1024,1,1,55,56],[1025,1,1,56,57],[1026,2,2,57,59],[1027,2,2,59,61],[1028,1,1,61,62],[1030,1,1,62,63],[1031,1,1,63,64],[1034,2,2,64,66],[1039,1,1,66,67],[1043,1,1,67,68]]],[44,3,3,68,71,[[1054,2,2,68,70],[1055,1,1,70,71]]],[45,4,4,71,75,[[1069,1,1,71,72],[1071,2,2,72,74],[1076,1,1,74,75]]],[48,4,4,75,79,[[1097,1,1,75,76],[1099,1,1,76,77],[1100,1,1,77,78],[1102,1,1,78,79]]],[50,4,4,79,83,[[1107,2,2,79,81],[1109,2,2,81,83]]],[57,8,7,83,90,[[1133,1,1,83,84],[1138,1,1,84,85],[1140,1,1,85,86],[1143,2,2,86,88],[1144,3,2,88,90]]],[58,5,5,90,95,[[1150,5,5,90,95]]],[60,4,4,95,99,[[1158,4,4,95,99]]],[61,1,1,99,100,[[1163,1,1,99,100]]],[65,80,66,100,166,[[1167,2,2,100,102],[1169,1,1,102,103],[1171,6,4,103,107],[1172,6,5,107,112],[1173,5,3,112,115],[1174,3,3,115,118],[1175,4,3,118,121],[1176,4,4,121,125],[1177,5,4,125,129],[1178,6,5,129,134],[1179,6,5,134,139],[1180,9,7,139,146],[1182,4,4,146,150],[1183,4,3,150,153],[1184,7,6,153,159],[1185,2,2,159,161],[1186,3,3,161,164],[1187,3,2,164,166]]]],[23239,23247,23252,23269,23292,23301,23385,23451,23484,23529,23531,23544,23691,23725,23745,23746,23927,23953,23987,23992,24026,24033,24180,24213,24270,24328,24351,24354,24541,24744,24748,24987,25131,25195,25384,25407,25436,25508,25510,25515,25637,25696,25851,25859,25861,25979,25996,26151,26612,26763,26931,26968,27021,27046,27048,27165,27209,27220,27224,27270,27271,27313,27409,27429,27547,27549,27726,27837,28172,28183,28206,28532,28593,28595,28765,29216,29266,29281,29340,29481,29485,29519,29522,29973,30051,30096,30185,30210,30237,30238,30359,30361,30366,30371,30372,30527,30529,30532,30535,30632,30702,30704,30756,30782,30785,30789,30792,30797,30801,30803,30806,30808,30811,30812,30813,30832,30834,30840,30841,30843,30844,30863,30866,30867,30869,30876,30878,30882,30890,30895,30900,30903,30904,30907,30916,30919,30920,30921,30922,30929,30932,30933,30941,30942,30944,30945,30955,30956,30968,30972,30977,30983,30993,30994,30996,31002,31004,31016,31017,31019,31036,31046,31047,31049,31054,31077]]],["ground",[18,18,[[39,4,4,0,4,[[938,1,1,0,1],[941,2,2,1,3],[943,1,1,3,4]]],[40,6,6,4,10,[[960,3,3,4,7],[964,1,1,7,8],[965,1,1,8,9],[970,1,1,9,10]]],[41,4,4,10,14,[[980,2,2,10,12],[985,1,1,12,13],[994,1,1,13,14]]],[42,3,3,14,17,[[1004,2,2,14,16],[1008,1,1,16,17]]],[43,1,1,17,18,[[1024,1,1,17,18]]]],[23446,23547,23562,23668,24331,24343,24349,24506,24558,24789,25253,25260,25525,25908,26387,26389,26604,27149]]],["land",[41,39,[[39,10,9,0,9,[[930,3,3,0,3],[932,2,1,3,4],[937,1,1,4,5],[938,1,1,5,6],[939,1,1,6,7],[942,1,1,7,8],[955,1,1,8,9]]],[40,4,4,9,13,[[960,1,1,9,10],[962,2,2,10,12],[971,1,1,12,13]]],[41,6,6,13,19,[[976,1,1,13,14],[977,2,2,14,16],[980,1,1,16,17],[986,1,1,17,18],[993,1,1,18,19]]],[42,5,5,19,24,[[999,1,1,19,20],[1002,1,1,20,21],[1017,3,3,21,24]]],[43,13,12,24,36,[[1024,8,7,24,31],[1030,2,2,31,33],[1044,3,3,33,36]]],[57,2,2,36,38,[[1140,1,1,36,37],[1143,1,1,37,38]]],[64,1,1,38,39,[[1166,1,1,38,39]]]],[23175,23189,23190,23224,23405,23432,23483,23631,24174,24324,24454,24460,24859,25088,25110,25118,25272,25588,25849,26142,26278,26906,26907,26909,27119,27120,27122,27127,27145,27152,27156,27379,27381,27894,27898,27899,30101,30181,30677]]],["world",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30911]]]]},{"k":"G1094","v":[["age",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24929]]]]},{"k":"G1095","v":[["old",[2,2,[[42,1,1,0,1,[[1017,1,1,0,1]]],[57,1,1,1,2,[[1140,1,1,1,2]]]],[26916,30105]]]]},{"k":"G1096","v":[["*",[672,632,[[39,74,69,0,69,[[929,1,1,0,1],[932,1,1,1,2],[933,2,2,2,4],[934,2,2,4,6],[935,1,1,6,7],[936,4,4,7,11],[937,3,3,11,14],[938,2,2,14,16],[939,7,5,16,21],[940,1,1,21,22],[941,4,4,22,26],[942,2,2,26,28],[943,1,1,28,29],[944,1,1,29,30],[945,1,1,30,31],[946,6,5,31,36],[947,2,2,36,38],[948,2,2,38,40],[949,5,4,40,44],[951,2,2,44,46],[952,7,6,46,52],[953,1,1,52,53],[954,8,8,53,61],[955,5,5,61,66],[956,3,3,66,69]]],[40,53,50,69,119,[[957,5,5,69,74],[958,4,4,74,78],[960,10,10,78,88],[961,3,3,88,91],[962,6,5,91,96],[965,6,6,96,102],[966,2,2,102,104],[967,2,2,104,106],[968,2,2,106,108],[969,7,6,108,114],[970,2,2,114,116],[971,3,2,116,118],[972,1,1,118,119]]],[41,135,132,119,251,[[973,10,10,119,129],[974,8,7,129,136],[975,3,3,136,139],[976,5,5,139,144],[977,3,3,144,147],[978,8,8,147,155],[979,1,1,155,156],[980,8,8,156,164],[981,11,11,164,175],[982,6,5,175,180],[983,6,6,180,186],[984,3,3,186,189],[985,4,4,189,193],[986,3,3,193,196],[987,2,2,196,198],[988,3,3,198,201],[989,4,4,201,205],[990,3,3,205,208],[991,5,5,208,213],[992,5,5,213,218],[993,6,6,218,224],[994,8,7,224,231],[995,8,8,231,239],[996,12,12,239,251]]],[42,53,48,251,299,[[997,12,10,251,261],[998,2,2,261,263],[999,2,2,263,265],[1000,1,1,265,266],[1001,5,4,266,270],[1002,5,5,270,275],[1003,1,1,275,276],[1004,2,2,276,278],[1005,3,3,278,281],[1006,4,4,281,285],[1008,4,4,285,289],[1009,3,2,289,291],[1010,3,2,291,293],[1011,2,2,293,295],[1012,1,1,295,296],[1015,1,1,296,297],[1016,1,1,297,298],[1017,1,1,298,299]]],[43,125,119,299,418,[[1018,5,5,299,304],[1019,4,3,304,307],[1021,8,8,307,315],[1022,7,6,315,321],[1023,1,1,321,322],[1024,8,8,322,330],[1025,3,3,330,333],[1026,5,5,333,338],[1027,7,7,338,345],[1028,4,4,345,349],[1029,6,5,349,354],[1030,3,3,354,357],[1031,3,3,357,360],[1032,4,4,360,364],[1033,5,5,364,369],[1036,8,8,369,377],[1037,6,4,377,381],[1038,7,7,381,388],[1039,4,3,388,391],[1040,4,4,391,395],[1041,2,2,395,397],[1042,2,2,397,399],[1043,6,6,399,405],[1044,9,9,405,414],[1045,4,4,414,418]]],[44,35,31,418,449,[[1046,1,1,418,419],[1047,1,1,419,420],[1048,5,4,420,424],[1049,1,1,424,425],[1051,3,3,425,428],[1052,7,4,428,432],[1054,2,2,432,434],[1055,1,1,434,435],[1056,8,8,435,443],[1057,1,1,443,444],[1060,3,3,444,447],[1061,2,2,447,449]]],[45,42,39,449,488,[[1062,1,1,449,450],[1063,1,1,450,451],[1064,3,2,451,453],[1065,4,4,453,457],[1067,1,1,457,458],[1068,3,3,458,461],[1069,1,1,461,462],[1070,6,5,462,467],[1071,4,4,467,471],[1072,2,2,471,473],[1074,2,2,473,475],[1075,5,4,475,479],[1076,6,6,479,485],[1077,3,3,485,488]]],[46,12,10,488,498,[[1078,4,3,488,491],[1080,1,1,491,492],[1082,2,2,492,494],[1083,1,1,494,495],[1084,1,1,495,496],[1085,2,1,496,497],[1089,1,1,497,498]]],[47,12,11,498,509,[[1092,1,1,498,499],[1093,5,5,499,504],[1094,4,3,504,507],[1095,1,1,507,508],[1096,1,1,508,509]]],[48,8,8,509,517,[[1098,1,1,509,510],[1099,1,1,510,511],[1100,1,1,511,512],[1101,4,4,512,516],[1102,1,1,516,517]]],[49,6,6,517,523,[[1103,1,1,517,518],[1104,3,3,518,521],[1105,2,2,521,523]]],[50,5,5,523,528,[[1107,3,3,523,526],[1109,1,1,526,527],[1110,1,1,527,528]]],[51,12,11,528,539,[[1111,4,3,528,531],[1112,6,6,531,537],[1113,2,2,537,539]]],[52,1,1,539,540,[[1117,1,1,539,540]]],[53,4,4,540,544,[[1120,1,1,540,541],[1122,1,1,541,542],[1123,1,1,542,543],[1124,1,1,543,544]]],[54,4,4,544,548,[[1125,1,1,544,545],[1126,1,1,545,546],[1127,2,2,546,548]]],[55,1,1,548,549,[[1131,1,1,548,549]]],[56,1,1,549,550,[[1132,1,1,549,550]]],[57,27,27,550,577,[[1133,1,1,550,551],[1134,2,2,551,553],[1135,1,1,553,554],[1136,1,1,554,555],[1137,4,4,555,559],[1138,3,3,559,562],[1139,6,6,562,568],[1141,2,2,568,570],[1142,1,1,570,571],[1143,5,5,571,576],[1144,1,1,576,577]]],[58,10,10,577,587,[[1146,3,3,577,580],[1147,3,3,580,583],[1148,3,3,583,586],[1150,1,1,586,587]]],[59,7,7,587,594,[[1151,2,2,587,589],[1152,1,1,589,590],[1153,2,2,590,592],[1154,1,1,592,593],[1155,1,1,593,594]]],[60,5,5,594,599,[[1156,3,3,594,597],[1157,2,2,597,599]]],[61,1,1,599,600,[[1160,1,1,599,600]]],[63,1,1,600,601,[[1165,1,1,600,601]]],[65,38,31,601,632,[[1167,5,5,601,606],[1168,2,2,606,608],[1169,1,1,608,609],[1170,2,2,609,611],[1172,3,1,611,612],[1174,5,5,612,617],[1177,5,3,617,620],[1178,2,2,620,622],[1182,10,7,622,629],[1184,1,1,629,630],[1187,1,1,630,631],[1188,1,1,631,632]]]],[23166,23212,23252,23279,23292,23298,23344,23358,23361,23369,23371,23389,23395,23408,23433,23442,23460,23479,23480,23482,23485,23534,23560,23561,23571,23592,23612,23620,23661,23674,23702,23730,23739,23740,23746,23758,23763,23770,23800,23818,23830,23845,23847,23868,23933,23944,23963,23977,23978,23989,23991,24001,24014,24055,24056,24059,24060,24074,24096,24108,24110,24130,24153,24174,24183,24186,24197,24199,24206,24219,24224,24226,24232,24247,24275,24281,24283,24287,24327,24333,24334,24340,24342,24345,24355,24358,24360,24362,24378,24380,24397,24409,24421,24433,24442,24454,24541,24545,24559,24564,24571,24588,24631,24632,24659,24663,24683,24684,24724,24735,24736,24745,24746,24747,24758,24771,24859,24868,24883,24895,24898,24901,24913,24916,24931,24934,24937,24952,24958,24974,24975,24979,24986,24988,25015,25019,25027,25046,25047,25066,25086,25088,25099,25105,25108,25119,25124,25147,25152,25158,25159,25162,25182,25194,25195,25206,25246,25262,25267,25269,25279,25280,25285,25301,25308,25319,25329,25330,25334,25335,25336,25337,25338,25352,25358,25376,25384,25395,25399,25401,25406,25407,25419,25431,25432,25435,25499,25513,25514,25520,25522,25535,25537,25554,25565,25575,25598,25602,25631,25632,25642,25662,25665,25677,25679,25711,25712,25723,25740,25746,25748,25750,25760,25780,25793,25795,25796,25812,25833,25835,25854,25857,25858,25862,25878,25888,25890,25904,25906,25908,25930,25943,25947,25954,25959,25966,25979,25982,25983,25995,25996,26003,26006,26009,26010,26012,26013,26021,26022,26028,26042,26047,26050,26054,26056,26058,26059,26061,26071,26072,26074,26096,26104,26129,26145,26170,26214,26216,26219,26224,26273,26274,26276,26278,26282,26371,26414,26439,26462,26467,26479,26497,26500,26503,26516,26609,26610,26616,26622,26632,26649,26690,26697,26706,26707,26746,26861,26894,26902,26939,26941,26942,26943,26945,26951,26955,26992,27026,27027,27033,27038,27043,27044,27050,27052,27064,27066,27070,27071,27083,27095,27102,27129,27145,27147,27148,27154,27155,27156,27168,27177,27184,27189,27235,27248,27253,27258,27259,27263,27269,27272,27275,27284,27296,27299,27317,27326,27333,27335,27342,27346,27348,27355,27360,27367,27374,27394,27415,27417,27419,27444,27449,27467,27481,27499,27509,27510,27512,27518,27586,27595,27602,27606,27608,27611,27613,27619,27629,27642,27644,27663,27665,27669,27678,27681,27694,27699,27704,27710,27713,27721,27741,27743,27744,27746,27771,27794,27811,27822,27827,27829,27842,27845,27851,27852,27862,27871,27882,27884,27888,27891,27894,27897,27899,27905,27907,27908,27916,27933,27987,27995,27997,28010,28022,28040,28070,28073,28083,28094,28095,28098,28104,28169,28184,28208,28210,28214,28215,28218,28220,28226,28234,28243,28261,28311,28319,28334,28338,28343,28393,28397,28423,28428,28438,28442,28446,28449,28482,28508,28510,28523,28536,28555,28560,28562,28563,28567,28573,28574,28587,28599,28601,28619,28666,28676,28698,28703,28704,28718,28728,28738,28755,28763,28772,28776,28778,28786,28790,28808,28818,28819,28848,28894,28898,28912,28930,28946,29033,29098,29115,29116,29119,29123,29126,29135,29143,29147,29188,29202,29242,29258,29304,29305,29311,29316,29321,29340,29374,29398,29399,29406,29438,29442,29483,29488,29490,29532,29553,29565,29566,29567,29571,29575,29577,29578,29580,29584,29594,29595,29668,29730,29759,29772,29792,29826,29845,29862,29864,29930,29944,29967,29979,29994,30009,30017,30035,30039,30041,30042,30048,30056,30064,30076,30080,30082,30085,30086,30090,30120,30127,30166,30175,30178,30179,30196,30206,30220,30278,30288,30291,30297,30303,30304,30320,30328,30329,30356,30389,30390,30406,30430,30437,30458,30468,30483,30495,30499,30501,30520,30568,30666,30698,30706,30707,30715,30716,30725,30727,30748,30769,30770,30805,30828,30832,30834,30835,30838,30885,30887,30891,30898,30901,30956,30957,30958,30964,30971,30972,30973,30995,31059,31086]]],["+",[44,43,[[40,4,4,0,4,[[957,1,1,0,1],[962,2,2,1,3],[965,1,1,3,4]]],[41,5,5,4,9,[[973,1,1,4,5],[976,1,1,5,6],[992,1,1,6,7],[996,2,2,7,9]]],[42,1,1,9,10,[[1008,1,1,9,10]]],[43,15,14,10,24,[[1019,1,1,10,11],[1022,1,1,11,12],[1024,2,2,12,14],[1027,1,1,14,15],[1032,1,1,15,16],[1033,1,1,16,17],[1036,1,1,17,18],[1037,3,2,18,20],[1038,1,1,20,21],[1041,1,1,21,22],[1044,2,2,22,24]]],[44,11,11,24,35,[[1048,3,3,24,27],[1051,2,2,27,29],[1052,2,2,29,31],[1054,2,2,31,33],[1056,2,2,33,35]]],[45,2,2,35,37,[[1067,1,1,35,36],[1071,1,1,36,37]]],[47,3,3,37,40,[[1092,1,1,37,38],[1093,1,1,38,39],[1096,1,1,39,40]]],[51,1,1,40,41,[[1112,1,1,40,41]]],[57,2,2,41,43,[[1141,1,1,41,42],[1143,1,1,42,43]]]],[24247,24421,24442,24588,24895,25099,25795,26022,26028,26609,26955,27083,27148,27155,27299,27481,27510,27619,27629,27663,27694,27794,27871,27884,27995,27997,28022,28070,28083,28098,28104,28169,28184,28210,28220,28482,28599,29098,29123,29202,29575,30120,30196]]],["Be",[10,10,[[41,3,3,0,3,[[978,1,1,0,1],[984,1,1,1,2],[991,1,1,2,3]]],[44,1,1,3,4,[[1057,1,1,3,4]]],[45,1,1,4,5,[[1072,1,1,4,5]]],[46,1,1,5,6,[[1083,1,1,5,6]]],[48,2,2,6,8,[[1101,2,2,6,8]]],[59,1,1,8,9,[[1151,1,1,8,9]]],[65,1,1,9,10,[[1169,1,1,9,10]]]],[25182,25499,25750,28261,28601,28912,29305,29311,30390,30748]]],["are",[6,6,[[49,1,1,0,1,[[1103,1,1,0,1]]],[57,2,2,1,3,[[1137,1,1,1,2],[1144,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]],[59,1,1,4,5,[[1153,1,1,4,5]]],[61,1,1,5,6,[[1160,1,1,5,6]]]],[29374,30041,30220,30356,30430,30568]]],["ariseth",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]]],[23560,24340]]],["arose",[11,11,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,2,2,2,4,[[978,1,1,2,3],[987,1,1,3,4]]],[42,1,1,4,5,[[999,1,1,4,5]]],[43,6,6,5,11,[[1023,1,1,5,6],[1028,1,1,6,7],[1036,1,1,7,8],[1040,3,3,8,11]]]],[23369,24360,25194,25602,26145,27102,27326,27608,27741,27743,27744]]],["as",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25330]]],["assembled",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27467]]],["be",[73,71,[[39,13,13,0,13,[[933,1,1,0,1],[934,1,1,1,2],[938,2,2,2,4],[943,1,1,4,5],[946,1,1,5,6],[948,1,1,6,7],[951,1,1,7,8],[952,3,3,8,11],[954,2,2,11,13]]],[40,5,5,13,18,[[966,2,2,13,15],[969,3,3,15,18]]],[41,4,4,18,22,[[973,1,1,18,19],[992,1,1,19,20],[994,1,1,20,21],[995,1,1,21,22]]],[42,9,9,22,31,[[999,1,1,22,23],[1000,1,1,23,24],[1005,2,2,24,26],[1006,1,1,26,27],[1008,2,2,27,29],[1011,1,1,29,30],[1016,1,1,30,31]]],[43,3,3,31,34,[[1018,1,1,31,32],[1037,1,1,32,33],[1043,1,1,33,34]]],[44,3,3,34,37,[[1048,1,1,34,35],[1060,2,2,35,37]]],[45,12,11,37,48,[[1064,1,1,37,38],[1065,1,1,38,39],[1068,1,1,39,40],[1070,2,2,40,42],[1071,1,1,42,43],[1075,2,1,43,44],[1076,2,2,44,46],[1077,2,2,46,48]]],[46,2,1,48,49,[[1085,2,1,48,49]]],[47,2,2,49,51,[[1094,1,1,49,50],[1095,1,1,50,51]]],[48,3,3,51,54,[[1100,1,1,51,52],[1101,1,1,52,53],[1102,1,1,53,54]]],[49,2,2,54,56,[[1104,1,1,54,55],[1105,1,1,55,56]]],[50,1,1,56,57,[[1109,1,1,56,57]]],[51,1,1,57,58,[[1113,1,1,57,58]]],[53,1,1,58,59,[[1122,1,1,58,59]]],[57,2,2,59,61,[[1134,1,1,59,60],[1138,1,1,60,61]]],[58,3,3,61,64,[[1146,1,1,61,62],[1148,2,2,62,64]]],[59,2,2,64,66,[[1151,1,1,64,65],[1153,1,1,65,66]]],[60,1,1,66,67,[[1156,1,1,66,67]]],[63,1,1,67,68,[[1165,1,1,67,68]]],[65,3,3,68,71,[[1167,1,1,68,69],[1168,1,1,69,70],[1170,1,1,70,71]]]],[23279,23298,23433,23442,23661,23740,23818,23944,23977,23978,24001,24059,24108,24631,24632,24724,24735,24736,24931,25793,25890,25959,26129,26170,26462,26467,26497,26616,26622,26707,26894,26943,27642,27851,27995,28319,28334,28428,28449,28510,28563,28567,28574,28698,28755,28776,28778,28786,28946,29143,29188,29304,29321,29340,29406,29438,29532,29595,29759,29994,30056,30288,30320,30329,30389,30437,30483,30666,30716,30727,30769]]],["became",[18,17,[[39,1,1,0,1,[[956,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]],[45,3,3,3,6,[[1070,2,2,3,5],[1074,1,1,5,6]]],[49,1,1,6,7,[[1104,1,1,6,7]]],[51,2,2,7,9,[[1111,1,1,7,8],[1112,1,1,8,9]]],[57,3,3,9,12,[[1137,1,1,9,10],[1142,1,1,10,11],[1143,1,1,11,12]]],[65,6,5,12,17,[[1172,2,1,12,13],[1174,2,2,13,15],[1182,2,2,15,17]]]],[24199,24541,27269,28560,28562,28676,29399,29566,29584,30039,30166,30179,30805,30835,30838,30957,30958]]],["become",[25,25,[[39,2,2,0,2,[[946,1,1,0,1],[949,1,1,1,2]]],[40,2,2,2,4,[[957,1,1,2,3],[968,1,1,3,4]]],[41,1,1,4,5,[[992,1,1,4,5]]],[42,1,1,5,6,[[997,1,1,5,6]]],[43,3,3,6,9,[[1021,1,1,6,7],[1024,1,1,7,8],[1029,1,1,8,9]]],[44,3,3,9,12,[[1048,1,1,9,10],[1049,1,1,10,11],[1052,1,1,11,12]]],[45,4,4,12,16,[[1064,1,1,12,13],[1069,1,1,13,14],[1074,1,1,14,15],[1076,1,1,15,16]]],[46,2,2,16,18,[[1082,1,1,16,17],[1089,1,1,17,18]]],[47,1,1,18,19,[[1094,1,1,18,19]]],[56,1,1,19,20,[[1132,1,1,19,20]]],[57,1,1,20,21,[[1137,1,1,20,21]]],[58,2,2,21,23,[[1147,2,2,21,23]]],[65,2,2,23,25,[[1177,1,1,23,24],[1184,1,1,24,25]]]],[23730,23868,24232,24683,25796,26056,27033,27156,27355,28010,28040,28104,28428,28536,28666,28738,28894,29033,29147,29944,30042,30297,30304,30887,30995]]],["becometh",[4,4,[[39,2,2,0,2,[[941,2,2,0,2]]],[40,2,2,2,4,[[960,2,2,2,4]]]],[23561,23571,24342,24355]]],["been",[13,13,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,3,3,1,4,[[988,2,2,1,3],[991,1,1,3,4]]],[43,4,4,4,8,[[1024,1,1,4,5],[1032,1,1,5,6],[1036,1,1,6,7],[1037,1,1,7,8]]],[44,3,3,8,11,[[1051,1,1,8,9],[1056,1,1,9,10],[1061,1,1,10,11]]],[50,1,1,11,12,[[1110,1,1,11,12]]],[53,1,1,12,13,[[1123,1,1,12,13]]]],[24883,25631,25632,25748,27168,27449,27606,27644,28073,28243,28338,29553,29772]]],["befell",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24380]]],["being",[4,4,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]],[59,1,1,3,4,[[1155,1,1,3,4]]]],[24571,25908,30291,30468]]],["brought",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27095]]],["came",[21,21,[[40,2,2,0,2,[[957,1,1,0,1],[965,1,1,1,2]]],[41,5,5,2,7,[[973,1,1,2,3],[975,2,2,3,5],[981,2,2,5,7]]],[42,3,3,7,10,[[997,1,1,7,8],[1006,1,1,8,9],[1008,1,1,9,10]]],[43,8,8,10,18,[[1019,2,2,10,12],[1022,2,2,12,14],[1024,1,1,14,15],[1027,1,1,15,16],[1033,1,1,16,17],[1038,1,1,17,18]]],[46,1,1,18,19,[[1078,1,1,18,19]]],[51,1,1,19,20,[[1111,1,1,19,20]]],[54,1,1,20,21,[[1127,1,1,20,21]]]],[24226,24559,24958,25027,25047,25335,25336,26061,26516,26610,26951,26992,27064,27070,27147,27272,27512,27699,28808,29565,29864]]],["camest",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26282]]],["come",[26,26,[[39,6,6,0,6,[[936,1,1,0,1],[942,1,1,1,2],[948,1,1,2,3],[954,1,1,3,4],[955,2,2,4,6]]],[40,6,6,6,12,[[960,1,1,6,7],[962,2,2,7,9],[967,1,1,9,10],[971,2,2,10,12]]],[41,2,2,12,14,[[991,1,1,12,13],[994,1,1,13,14]]],[42,4,4,14,18,[[1001,1,1,14,15],[1002,1,1,15,16],[1009,1,1,16,17],[1017,1,1,17,18]]],[43,6,6,18,24,[[1029,1,1,18,19],[1038,1,1,19,20],[1043,1,1,20,21],[1044,2,2,21,23],[1045,1,1,23,24]]],[47,1,1,24,25,[[1093,1,1,24,25]]],[65,1,1,25,26,[[1178,1,1,25,26]]]],[23361,23620,23800,24074,24130,24186,24358,24409,24454,24659,24859,24868,25740,25878,26224,26273,26649,26902,27348,27681,27845,27862,27882,27905,29116,30901]]],["cometh",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29792]]],["continued",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27595]]],["did",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24219]]],["divided",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30973]]],["done",[62,58,[[39,17,14,0,14,[[929,1,1,0,1],[934,1,1,1,2],[936,1,1,2,3],[939,5,3,3,6],[946,3,2,6,8],[949,2,2,8,10],[954,2,2,10,12],[955,1,1,12,13],[956,1,1,13,14]]],[40,4,4,14,18,[[960,1,1,14,15],[961,2,2,15,17],[969,1,1,17,18]]],[41,16,15,18,33,[[976,1,1,18,19],[980,3,3,19,22],[981,1,1,22,23],[982,2,1,23,24],[983,1,1,24,25],[985,1,1,25,26],[986,1,1,26,27],[994,1,1,27,28],[995,4,4,28,32],[996,1,1,32,33]]],[42,3,3,33,36,[[997,1,1,33,34],[1011,1,1,34,35],[1015,1,1,35,36]]],[43,14,14,36,50,[[1019,1,1,36,37],[1021,4,4,37,41],[1022,1,1,41,42],[1025,1,1,42,43],[1028,1,1,43,44],[1029,1,1,44,45],[1030,1,1,45,46],[1031,1,1,46,47],[1038,1,1,47,48],[1041,1,1,48,49],[1045,1,1,49,50]]],[45,4,4,50,54,[[1070,1,1,50,51],[1075,2,2,51,53],[1077,1,1,53,54]]],[48,1,1,54,55,[[1101,1,1,54,55]]],[65,3,3,55,58,[[1182,1,1,55,56],[1187,1,1,56,57],[1188,1,1,57,58]]]],[23166,23292,23358,23479,23480,23482,23746,23758,23830,23847,24096,24110,24183,24206,24334,24378,24397,24747,25086,25279,25280,25301,25308,25376,25407,25535,25575,25906,25943,25966,25982,25983,26012,26072,26706,26861,26992,27038,27043,27050,27052,27066,27189,27317,27346,27374,27417,27678,27771,27908,28555,28704,28718,28790,29316,30971,31059,31086]]],["drawing",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26276]]],["ended",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26632]]],["falling",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26941]]],["fashioned",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29442]]],["fell",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30956]]],["finished",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30017]]],["followed",[1,1,[[65,1,1,0,1,[[1174,1,1,0,1]]]],[30834]]],["found",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28930]]],["fulfilled",[3,3,[[39,2,2,0,2,[[933,1,1,0,1],[952,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]]],[23252,23991,25858]]],["grow",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23845]]],["had",[3,3,[[43,3,3,0,3,[[1032,1,1,0,1],[1038,1,1,1,2],[1042,1,1,2,3]]]],[27444,27669,27822]]],["happened",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28234]]],["have",[4,4,[[39,1,1,0,1,[[946,1,1,0,1]]],[45,2,2,1,3,[[1065,1,1,1,2],[1071,1,1,2,3]]],[50,1,1,3,4,[[1107,1,1,3,4]]]],[23739,28438,28587,29483]]],["he",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24771]]],["is",[21,21,[[39,6,6,0,6,[[937,1,1,0,1],[940,1,1,1,2],[944,1,1,2,3],[949,1,1,3,4],[952,1,1,4,5],[954,1,1,5,6]]],[40,1,1,6,7,[[969,1,1,6,7]]],[41,3,3,7,10,[[983,1,1,7,8],[984,1,1,8,9],[987,1,1,9,10]]],[42,1,1,10,11,[[1010,1,1,10,11]]],[44,2,2,11,13,[[1056,2,2,11,13]]],[57,3,3,13,16,[[1139,1,1,13,14],[1141,1,1,14,15],[1143,1,1,15,16]]],[58,2,2,16,18,[[1146,1,1,16,17],[1147,1,1,17,18]]],[59,1,1,18,19,[[1154,1,1,18,19]]],[60,2,2,19,21,[[1156,1,1,19,20],[1157,1,1,20,21]]]],[23395,23534,23674,23868,23989,24056,24745,25431,25513,25598,26690,28214,28215,30082,30127,30178,30278,30303,30458,30499,30520]]],["it",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23408]]],["made",[68,65,[[39,4,4,0,4,[[932,1,1,0,1],[951,1,1,1,2],[953,1,1,2,3],[955,1,1,3,4]]],[40,3,3,4,7,[[958,2,2,4,6],[970,1,1,6,7]]],[41,6,6,7,13,[[974,1,1,7,8],[976,1,1,8,9],[980,1,1,9,10],[986,1,1,10,11],[995,2,2,11,13]]],[42,12,10,13,23,[[997,5,3,13,16],[998,1,1,16,17],[1001,4,4,17,21],[1004,1,1,21,22],[1005,1,1,22,23]]],[43,6,6,23,29,[[1024,1,1,23,24],[1029,1,1,24,25],[1030,1,1,25,26],[1036,1,1,26,27],[1038,1,1,27,28],[1043,1,1,28,29]]],[44,5,5,29,34,[[1046,1,1,29,30],[1047,1,1,30,31],[1052,1,1,31,32],[1055,1,1,32,33],[1056,1,1,33,34]]],[45,9,9,34,43,[[1062,1,1,34,35],[1064,1,1,35,36],[1065,2,2,36,38],[1068,1,1,38,39],[1070,1,1,39,40],[1072,1,1,40,41],[1075,1,1,41,42],[1076,1,1,42,43]]],[46,1,1,43,44,[[1082,1,1,43,44]]],[47,3,2,44,46,[[1093,1,1,44,45],[1094,2,1,45,46]]],[48,2,2,46,48,[[1098,1,1,46,47],[1099,1,1,47,48]]],[49,1,1,48,49,[[1104,1,1,48,49]]],[50,2,2,49,51,[[1107,2,2,49,51]]],[55,1,1,51,52,[[1131,1,1,51,52]]],[57,11,11,52,63,[[1133,1,1,52,53],[1135,1,1,53,54],[1137,1,1,54,55],[1138,2,2,55,57],[1139,5,5,57,62],[1143,1,1,62,63]]],[58,1,1,63,64,[[1148,1,1,63,64]]],[59,1,1,64,65,[[1152,1,1,64,65]]]],[23212,23933,24014,24153,24281,24287,24758,24975,25066,25262,25565,25947,25954,26047,26054,26058,26104,26214,26216,26219,26224,26414,26479,27129,27342,27394,27611,27704,27829,27933,27987,28104,28208,28218,28393,28423,28442,28446,28508,28562,28619,28703,28763,28898,29115,29135,29242,29258,29398,29488,29490,29930,29967,30009,30035,30048,30064,30076,30080,30085,30086,30090,30175,30328,30406]]],["married",[3,2,[[44,3,2,0,2,[[1052,3,2,0,2]]]],[28094,28095]]],["on",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27888]]],["ordained",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26945]]],["ourselves",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29580]]],["pass",[83,81,[[39,7,7,0,7,[[935,1,1,0,1],[937,1,1,1,2],[939,1,1,2,3],[941,1,1,3,4],[947,1,1,4,5],[952,1,1,5,6],[954,1,1,6,7]]],[40,6,6,7,13,[[957,1,1,7,8],[958,2,2,8,10],[960,1,1,10,11],[967,1,1,11,12],[969,1,1,12,13]]],[41,49,48,13,61,[[973,4,4,13,17],[974,4,3,17,20],[975,1,1,20,21],[977,3,3,21,24],[978,3,3,24,27],[979,1,1,27,28],[980,3,3,28,31],[981,6,6,31,37],[982,1,1,37,38],[983,3,3,38,41],[984,1,1,41,42],[986,1,1,42,43],[988,1,1,43,44],[989,2,2,44,46],[990,1,1,46,47],[991,2,2,47,49],[992,1,1,49,50],[993,5,5,50,55],[996,6,6,55,61]]],[42,3,2,61,63,[[1009,1,1,61,62],[1010,2,1,62,63]]],[43,15,15,63,78,[[1021,1,1,63,64],[1026,3,3,64,67],[1028,2,2,67,69],[1031,1,1,69,70],[1033,1,1,70,71],[1036,1,1,71,72],[1038,1,1,72,73],[1039,2,2,73,75],[1044,1,1,75,76],[1045,2,2,76,78]]],[45,1,1,78,79,[[1076,1,1,78,79]]],[51,1,1,79,80,[[1113,1,1,79,80]]],[65,1,1,80,81,[[1167,1,1,80,81]]]],[23344,23389,23460,23592,23763,23963,24055,24224,24275,24283,24327,24663,24746,24901,24916,24934,24952,24974,24988,25019,25046,25108,25119,25124,25147,25152,25158,25206,25246,25267,25285,25319,25329,25334,25338,25352,25358,25401,25406,25419,25432,25514,25554,25642,25662,25665,25723,25746,25760,25780,25833,25835,25854,25857,25862,25995,26003,26006,26009,26021,26042,26649,26697,27027,27248,27253,27259,27333,27335,27415,27499,27586,27665,27710,27721,27899,27907,27916,28772,29594,30698]]],["past",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[25337,29845]]],["performed",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24913]]],["preferred",[3,3,[[42,3,3,0,3,[[997,3,3,0,3]]]],[26059,26071,26074]]],["published",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27296]]],["require",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28523]]],["seemed",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[23485,25384]]],["she",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25812]]],["shewed",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27044]]],["sounded",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24937]]],["taken",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29668]]],["them",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28226]]],["turned",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26746]]],["was",[100,98,[[39,8,8,0,8,[[936,1,1,0,1],[942,1,1,1,2],[945,1,1,2,3],[947,1,1,3,4],[952,1,1,4,5],[954,1,1,5,6],[955,1,1,6,7],[956,1,1,7,8]]],[40,9,9,8,17,[[960,3,3,8,11],[962,1,1,11,12],[965,2,2,12,14],[968,1,1,14,15],[969,1,1,15,16],[971,1,1,16,17]]],[41,23,23,17,40,[[973,1,1,17,18],[974,3,3,18,21],[976,2,2,21,23],[978,3,3,23,26],[980,1,1,26,27],[982,2,2,27,29],[983,1,1,29,30],[989,2,2,30,32],[990,2,2,32,34],[994,4,4,34,38],[995,1,1,38,39],[996,1,1,39,40]]],[42,8,8,40,48,[[997,1,1,40,41],[998,1,1,41,42],[1002,2,2,42,44],[1003,1,1,44,45],[1004,1,1,45,46],[1006,2,2,46,48]]],[43,26,26,48,74,[[1018,2,2,48,50],[1021,1,1,50,51],[1022,1,1,51,52],[1024,2,2,52,54],[1025,2,2,54,56],[1026,2,2,56,58],[1027,3,3,58,61],[1029,2,2,61,63],[1031,1,1,63,64],[1033,2,2,64,66],[1036,1,1,66,67],[1039,1,1,67,68],[1040,1,1,68,69],[1042,1,1,69,70],[1043,2,2,70,72],[1044,2,2,72,74]]],[44,1,1,74,75,[[1060,1,1,74,75]]],[45,2,2,75,77,[[1063,1,1,75,76],[1076,1,1,76,77]]],[46,4,3,77,80,[[1078,3,2,77,79],[1080,1,1,79,80]]],[47,2,2,80,82,[[1093,2,2,80,82]]],[51,1,1,82,83,[[1112,1,1,82,83]]],[53,1,1,83,84,[[1120,1,1,83,84]]],[54,2,2,84,86,[[1125,1,1,84,85],[1127,1,1,85,86]]],[57,1,1,86,87,[[1134,1,1,86,87]]],[65,12,11,87,98,[[1167,3,3,87,90],[1168,1,1,90,91],[1170,1,1,91,92],[1172,1,1,92,93],[1174,1,1,93,94],[1177,1,1,94,95],[1178,1,1,95,96],[1182,3,2,96,98]]]],[23371,23612,23702,23770,23978,24060,24174,24197,24333,24345,24362,24433,24545,24564,24684,24736,24859,24898,24979,24986,25015,25088,25105,25159,25162,25195,25269,25395,25399,25435,25677,25679,25711,25712,25888,25904,25908,25930,25979,26010,26050,26096,26274,26278,26371,26439,26500,26503,26939,26942,27026,27066,27145,27154,27177,27184,27235,27258,27263,27275,27284,27355,27360,27419,27509,27518,27602,27721,27746,27811,27827,27842,27894,27897,28311,28397,28728,28818,28819,28848,29119,29126,29571,29730,29826,29862,29979,30706,30707,30715,30725,30770,30805,30828,30885,30898,30964,30972]]],["waxed",[2,2,[[41,1,1,0,1,[[985,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[25537,30206]]],["were",[23,22,[[41,4,4,0,4,[[985,2,2,0,2],[996,2,2,2,4]]],[43,5,5,4,9,[[1030,1,1,4,5],[1036,1,1,5,6],[1039,1,1,6,7],[1043,1,1,7,8],[1044,1,1,8,9]]],[44,1,1,9,10,[[1061,1,1,9,10]]],[45,1,1,10,11,[[1071,1,1,10,11]]],[51,4,4,11,15,[[1111,2,2,11,13],[1112,2,2,13,15]]],[60,2,2,15,17,[[1156,1,1,15,16],[1157,1,1,16,17]]],[65,6,5,17,22,[[1174,1,1,17,18],[1177,3,3,18,21],[1182,2,1,21,22]]]],[25520,25522,25996,26013,27367,27613,27713,27852,27891,28343,28573,29565,29567,29577,29578,30495,30501,30832,30885,30887,30891,30972]]],["would",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27642]]],["wrought",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[24409,27071]]]]},{"k":"G1097","v":[["*",[223,208,[[39,20,20,0,20,[[929,1,1,0,1],[934,1,1,1,2],[935,1,1,2,3],[937,1,1,3,4],[938,1,1,4,5],[940,3,3,5,8],[941,1,1,8,9],[944,2,2,9,11],[949,1,1,11,12],[950,1,1,12,13],[952,5,5,13,18],[953,1,1,18,19],[954,1,1,19,20]]],[40,13,13,20,33,[[960,2,2,20,22],[961,2,2,22,24],[962,1,1,24,25],[963,1,1,25,26],[964,1,1,26,27],[965,1,1,27,28],[968,1,1,28,29],[969,2,2,29,31],[971,2,2,31,33]]],[41,28,28,33,61,[[973,2,2,33,35],[974,1,1,35,36],[978,1,1,36,37],[979,1,1,37,38],[980,3,3,38,41],[981,1,1,41,42],[982,2,2,42,44],[984,5,5,44,49],[988,2,2,49,51],[990,1,1,51,52],[991,3,3,52,55],[992,1,1,55,56],[993,3,3,56,59],[996,2,2,59,61]]],[42,56,49,61,110,[[997,2,2,61,63],[998,2,2,63,65],[999,1,1,65,66],[1000,2,2,66,68],[1001,2,2,68,70],[1002,2,2,70,72],[1003,5,5,72,77],[1004,6,6,77,83],[1006,7,5,83,88],[1007,1,1,88,89],[1008,2,2,89,91],[1009,4,4,91,95],[1010,8,5,95,100],[1011,1,1,100,101],[1012,2,2,101,103],[1013,7,5,103,108],[1015,1,1,108,109],[1017,1,1,109,110]]],[43,18,18,110,128,[[1018,1,1,110,111],[1019,1,1,111,112],[1025,1,1,112,113],[1026,1,1,113,114],[1034,3,3,114,117],[1036,2,2,117,119],[1037,1,1,119,120],[1038,3,3,120,123],[1039,2,2,123,125],[1040,2,2,125,127],[1041,1,1,127,128]]],[44,9,9,128,137,[[1046,1,1,128,129],[1047,1,1,129,130],[1048,1,1,130,131],[1051,1,1,131,132],[1052,3,3,132,135],[1055,1,1,135,136],[1056,1,1,136,137]]],[45,14,12,137,149,[[1062,1,1,137,138],[1063,4,3,138,141],[1064,1,1,141,142],[1065,1,1,142,143],[1069,3,2,143,145],[1074,2,2,145,147],[1075,2,2,147,149]]],[46,8,7,149,156,[[1079,2,2,149,151],[1080,1,1,151,152],[1082,3,2,152,154],[1085,1,1,154,155],[1090,1,1,155,156]]],[47,4,3,156,159,[[1092,1,1,156,157],[1093,1,1,157,158],[1094,2,1,158,159]]],[48,3,3,159,162,[[1099,1,1,159,160],[1101,1,1,160,161],[1102,1,1,161,162]]],[49,5,5,162,167,[[1103,1,1,162,163],[1104,2,2,163,165],[1105,1,1,165,166],[1106,1,1,166,167]]],[50,1,1,167,168,[[1110,1,1,167,168]]],[51,1,1,168,169,[[1113,1,1,168,169]]],[54,3,3,169,172,[[1125,1,1,169,170],[1126,1,1,170,171],[1127,1,1,171,172]]],[57,4,4,172,176,[[1135,1,1,172,173],[1140,1,1,173,174],[1142,1,1,174,175],[1145,1,1,175,176]]],[58,3,3,176,179,[[1146,1,1,176,177],[1147,1,1,177,178],[1150,1,1,178,179]]],[60,2,2,179,181,[[1156,1,1,179,180],[1158,1,1,180,181]]],[61,25,21,181,202,[[1160,9,7,181,188],[1161,7,6,188,194],[1162,7,6,194,200],[1163,2,2,200,202]]],[62,1,1,202,203,[[1164,1,1,202,203]]],[65,5,5,203,208,[[1168,3,3,203,206],[1169,2,2,206,208]]]],[23169,23285,23339,23409,23443,23496,23504,23522,23550,23675,23680,23871,23890,23989,23990,23996,24000,24007,24032,24064,24334,24336,24393,24407,24445,24487,24517,24568,24685,24745,24746,24836,24871,24911,24927,25016,25190,25234,25255,25262,25291,25312,25374,25385,25461,25498,25505,25506,25507,25624,25635,25722,25746,25773,25775,25798,25846,25856,25857,26009,26026,26054,26092,26119,26120,26130,26157,26209,26216,26252,26272,26326,26345,26354,26355,26377,26379,26408,26409,26413,26424,26433,26436,26487,26495,26496,26508,26519,26580,26589,26596,26637,26642,26658,26665,26675,26677,26685,26688,26699,26717,26729,26745,26762,26766,26767,26782,26784,26829,26915,26930,26985,27206,27240,27536,27542,27543,27600,27620,27660,27688,27698,27701,27718,27734,27740,27762,27780,27951,27980,28008,28074,28092,28098,28106,28207,28243,28384,28402,28408,28410,28430,28452,28529,28530,28674,28677,28685,28687,28828,28833,28843,28893,28898,28941,29049,29090,29109,29140,29270,29309,29359,29373,29410,29413,29431,29447,29550,29595,29827,29846,29854,30005,30103,30167,30264,30269,30313,30374,30499,30525,30553,30554,30555,30563,30564,30568,30579,30580,30585,30595,30598,30599,30603,30605,30609,30610,30611,30616,30619,30626,30644,30646,30734,30740,30741,30749,30755]]],["+",[6,6,[[41,2,2,0,2,[[979,1,1,0,1],[984,1,1,1,2]]],[42,2,2,2,4,[[1006,1,1,2,3],[1010,1,1,3,4]]],[43,1,1,4,5,[[1038,1,1,4,5]]],[48,1,1,5,6,[[1101,1,1,5,6]]]],[25234,25505,26496,26675,27701,29309]]],["Know",[4,4,[[42,1,1,0,1,[[1009,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]],[57,2,2,2,4,[[1140,1,1,2,3],[1145,1,1,3,4]]]],[26642,29109,30103,30264]]],["Knowing",[4,4,[[44,1,1,0,1,[[1051,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]],[60,2,2,2,4,[[1156,1,1,2,3],[1158,1,1,3,4]]]],[28074,30269,30499,30525]]],["Understandest",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27206]]],["allow",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28106]]],["aware",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[24007]]],["can",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23675]]],["felt",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24393]]],["knew",[30,30,[[39,5,5,0,5,[[929,1,1,0,1],[935,1,1,1,2],[940,1,1,2,3],[952,1,1,3,4],[953,1,1,4,5]]],[40,5,5,5,10,[[962,1,1,5,6],[964,1,1,6,7],[968,1,1,7,8],[971,2,2,8,10]]],[41,5,5,10,15,[[974,1,1,10,11],[981,1,1,11,12],[984,2,2,12,14],[990,1,1,14,15]]],[42,10,10,15,25,[[997,1,1,15,16],[998,2,2,16,18],[1000,2,2,18,20],[1001,1,1,20,21],[1007,1,1,21,22],[1008,1,1,22,23],[1009,1,1,23,24],[1012,1,1,24,25]]],[44,1,1,25,26,[[1046,1,1,25,26]]],[45,2,2,26,28,[[1062,1,1,26,27],[1063,1,1,27,28]]],[46,1,1,28,29,[[1082,1,1,28,29]]],[61,1,1,29,30,[[1161,1,1,29,30]]]],[23169,23339,23504,23996,24032,24445,24517,24685,24836,24871,25016,25312,25506,25507,25722,26054,26119,26120,26157,26209,26216,26580,26589,26658,26745,27951,28384,28402,28898,30580]]],["knewest",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25775]]],["know",[88,87,[[39,6,6,0,6,[[934,1,1,0,1],[937,1,1,1,2],[941,1,1,2,3],[952,3,3,3,6]]],[40,7,7,6,13,[[960,2,2,6,8],[961,1,1,8,9],[963,1,1,9,10],[965,1,1,10,11],[969,2,2,11,13]]],[41,8,8,13,21,[[973,2,2,13,15],[980,1,1,15,16],[984,1,1,16,17],[991,1,1,17,18],[993,3,3,18,21]]],[42,20,20,21,41,[[1001,1,1,21,22],[1003,3,3,22,25],[1004,3,3,25,28],[1006,3,3,28,31],[1009,2,2,31,33],[1010,4,4,33,37],[1011,1,1,37,38],[1013,2,2,38,40],[1015,1,1,40,41]]],[43,9,9,41,50,[[1018,1,1,41,42],[1019,1,1,42,43],[1034,2,2,43,45],[1036,1,1,45,46],[1037,1,1,46,47],[1038,2,2,47,49],[1039,1,1,49,50]]],[44,2,2,50,52,[[1052,1,1,50,51],[1055,1,1,51,52]]],[45,5,5,52,57,[[1063,1,1,52,53],[1065,1,1,53,54],[1069,1,1,54,55],[1074,2,2,55,57]]],[46,5,5,57,62,[[1079,2,2,57,59],[1082,1,1,59,60],[1085,1,1,60,61],[1090,1,1,61,62]]],[48,2,2,62,64,[[1099,1,1,62,63],[1102,1,1,63,64]]],[49,3,3,64,67,[[1104,2,2,64,66],[1105,1,1,66,67]]],[50,1,1,67,68,[[1110,1,1,67,68]]],[51,1,1,68,69,[[1113,1,1,68,69]]],[54,1,1,69,70,[[1127,1,1,69,70]]],[58,2,2,70,72,[[1147,1,1,70,71],[1150,1,1,71,72]]],[61,13,12,72,84,[[1160,6,5,72,77],[1161,2,2,77,79],[1162,3,3,79,82],[1163,2,2,82,84]]],[65,3,3,84,87,[[1168,1,1,84,85],[1169,2,2,85,87]]]],[23285,23409,23550,23989,23990,24000,24334,24336,24407,24487,24568,24745,24746,24911,24927,25255,25498,25746,25846,25856,25857,26252,26345,26354,26379,26409,26413,26433,26495,26508,26519,26637,26665,26675,26685,26688,26699,26717,26762,26782,26829,26930,26985,27542,27543,27600,27660,27688,27698,27718,28092,28207,28408,28452,28529,28674,28677,28828,28833,28893,28941,29049,29270,29359,29410,29413,29431,29550,29595,29854,30313,30374,30553,30554,30555,30568,30579,30598,30603,30605,30609,30616,30626,30644,30740,30749,30755]]],["knowest",[5,5,[[42,3,3,0,3,[[997,1,1,0,1],[999,1,1,1,2],[1017,1,1,2,3]]],[44,1,1,3,4,[[1047,1,1,3,4]]],[54,1,1,4,5,[[1125,1,1,4,5]]]],[26092,26130,26915,27980,29827]]],["knoweth",[16,16,[[41,2,2,0,2,[[982,1,1,0,1],[988,1,1,1,2]]],[42,4,4,2,6,[[1003,2,2,2,4],[1006,1,1,4,5],[1010,1,1,5,6]]],[43,1,1,6,7,[[1036,1,1,6,7]]],[45,2,2,7,9,[[1064,1,1,7,8],[1069,1,1,8,9]]],[54,1,1,9,10,[[1126,1,1,9,10]]],[61,5,5,10,15,[[1161,2,2,10,12],[1162,3,3,12,15]]],[65,1,1,15,16,[[1168,1,1,15,16]]]],[25385,25635,26355,26377,26496,26685,27620,28430,28529,29846,30580,30599,30609,30610,30611,30734]]],["knowing",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30167]]],["knowledge",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27536]]],["known",[43,39,[[39,3,3,0,3,[[938,1,1,0,1],[940,2,2,1,3]]],[41,6,6,3,9,[[978,1,1,3,4],[980,1,1,4,5],[984,1,1,5,6],[991,1,1,6,7],[996,2,2,7,9]]],[42,10,8,9,17,[[1004,1,1,9,10],[1006,1,1,10,11],[1010,2,2,11,13],[1012,1,1,13,14],[1013,5,3,14,17]]],[43,3,3,17,20,[[1026,1,1,17,18],[1039,1,1,18,19],[1040,1,1,19,20]]],[44,3,3,20,23,[[1048,1,1,20,21],[1052,1,1,21,22],[1056,1,1,22,23]]],[45,5,5,23,28,[[1063,2,2,23,25],[1069,1,1,25,26],[1075,2,2,26,28]]],[46,2,2,28,30,[[1080,1,1,28,29],[1082,1,1,29,30]]],[47,2,1,30,31,[[1094,2,1,30,31]]],[49,1,1,31,32,[[1106,1,1,31,32]]],[57,1,1,32,33,[[1135,1,1,32,33]]],[61,5,4,33,37,[[1160,3,2,33,35],[1161,1,1,35,36],[1162,1,1,36,37]]],[62,1,1,37,38,[[1164,1,1,37,38]]],[65,1,1,38,39,[[1168,1,1,38,39]]]],[23443,23496,23522,25190,25262,25461,25773,26009,26026,26436,26495,26675,26677,26729,26766,26767,26784,27240,27734,27762,28008,28098,28243,28402,28410,28530,28685,28687,28843,28893,29140,29447,30005,30563,30564,30585,30619,30646,30741]]],["perceive",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[61,1,1,1,2,[[1161,1,1,1,2]]]],[25291,30595]]],["perceived",[7,7,[[39,3,3,0,3,[[944,1,1,0,1],[949,1,1,1,2],[950,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]],[42,1,1,4,5,[[1002,1,1,4,5]]],[43,1,1,5,6,[[1040,1,1,5,6]]],[47,1,1,6,7,[[1092,1,1,6,7]]]],[23680,23871,23890,25798,26272,27740,29090]]],["resolved",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25624]]],["sure",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]]],[25374,26326]]],["understand",[3,3,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]]],[26424,27780,29373]]],["understood",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,3,3,1,4,[[1004,1,1,1,2],[1006,1,1,2,3],[1008,1,1,3,4]]]],[24064,26408,26487,26596]]]]},{"k":"G1098","v":[["wine",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26962]]]]},{"k":"G1099","v":[["*",[4,4,[[58,2,2,0,2,[[1148,2,2,0,2]]],[65,2,2,2,4,[[1176,2,2,2,4]]]],[30330,30331,30870,30871]]],["fresh",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30331]]],["sweet",[3,3,[[58,1,1,0,1,[[1148,1,1,0,1]]],[65,2,2,1,3,[[1176,2,2,1,3]]]],[30330,30870,30871]]]]},{"k":"G1100","v":[["*",[50,47,[[40,3,3,0,3,[[963,2,2,0,2],[972,1,1,2,3]]],[41,2,2,3,5,[[973,1,1,3,4],[988,1,1,4,5]]],[43,6,6,5,11,[[1019,4,4,5,9],[1027,1,1,9,10],[1036,1,1,10,11]]],[44,2,2,11,13,[[1048,1,1,11,12],[1059,1,1,12,13]]],[45,21,19,13,32,[[1073,4,3,13,16],[1074,2,2,16,18],[1075,15,14,18,32]]],[49,1,1,32,33,[[1104,1,1,32,33]]],[58,5,4,33,37,[[1146,1,1,33,34],[1148,4,3,34,37]]],[59,1,1,37,38,[[1153,1,1,37,38]]],[61,1,1,38,39,[[1161,1,1,38,39]]],[65,8,8,39,47,[[1171,1,1,39,40],[1173,1,1,40,41],[1176,1,1,41,42],[1177,1,1,42,43],[1179,1,1,43,44],[1180,1,1,44,45],[1182,1,1,45,46],[1183,1,1,46,47]]]],[24496,24498,24890,24957,25644,26952,26953,26960,26975,27305,27591,28004,28291,28644,28662,28664,28666,28673,28680,28682,28683,28684,28687,28691,28692,28696,28697,28700,28701,28704,28705,28717,29402,30292,30324,30325,30327,30434,30597,30788,30819,30872,30881,30915,30932,30964,30990]]],["tongue",[24,23,[[40,2,2,0,2,[[963,2,2,0,2]]],[41,2,2,2,4,[[973,1,1,2,3],[988,1,1,3,4]]],[43,1,1,4,5,[[1019,1,1,4,5]]],[44,1,1,5,6,[[1059,1,1,5,6]]],[45,8,8,6,14,[[1075,8,8,6,14]]],[49,1,1,14,15,[[1104,1,1,14,15]]],[58,5,4,15,19,[[1146,1,1,15,16],[1148,4,3,16,19]]],[59,1,1,19,20,[[1153,1,1,19,20]]],[61,1,1,20,21,[[1161,1,1,20,21]]],[65,2,2,21,23,[[1171,1,1,21,22],[1180,1,1,22,23]]]],[24496,24498,24957,25644,26975,28291,28680,28682,28687,28691,28692,28697,28704,28705,29402,30292,30324,30325,30327,30434,30597,30788,30932]]],["tongues",[26,24,[[40,1,1,0,1,[[972,1,1,0,1]]],[43,5,5,1,6,[[1019,3,3,1,4],[1027,1,1,4,5],[1036,1,1,5,6]]],[44,1,1,6,7,[[1048,1,1,6,7]]],[45,13,11,7,18,[[1073,4,3,7,10],[1074,2,2,10,12],[1075,7,6,12,18]]],[65,6,6,18,24,[[1173,1,1,18,19],[1176,1,1,19,20],[1177,1,1,20,21],[1179,1,1,21,22],[1182,1,1,22,23],[1183,1,1,23,24]]]],[24890,26952,26953,26960,27305,27591,28004,28644,28662,28664,28666,28673,28683,28684,28696,28700,28701,28717,30819,30872,30881,30915,30964,30990]]]]},{"k":"G1101","v":[["bag",[2,2,[[42,2,2,0,2,[[1008,1,1,0,1],[1009,1,1,1,2]]]],[26586,26659]]]]},{"k":"G1102","v":[["fuller",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24541]]]]},{"k":"G1103","v":[["*",[4,4,[[46,1,1,0,1,[[1085,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]],[53,1,1,2,3,[[1119,1,1,2,3]]],[55,1,1,3,4,[[1129,1,1,3,4]]]],[28940,29445,29698,29896]]],["own",[2,2,[[53,1,1,0,1,[[1119,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[29698,29896]]],["sincerity",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28940]]],["true",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29445]]]]},{"k":"G1104","v":[["naturally",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29411]]]]},{"k":"G1105","v":[["blackness",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30230]]]]},{"k":"G1106","v":[["*",[9,8,[[43,1,1,0,1,[[1037,1,1,0,1]]],[45,3,3,1,4,[[1062,1,1,1,2],[1068,2,2,2,4]]],[46,1,1,4,5,[[1085,1,1,4,5]]],[56,1,1,5,6,[[1132,1,1,5,6]]],[65,3,2,6,8,[[1183,3,2,6,8]]]],[27629,28373,28512,28527,28942,29952,30988,30992]]],["+",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[65,1,1,1,2,[[1183,1,1,1,2]]]],[27629,30992]]],["advice",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28942]]],["judgment",[3,3,[[45,3,3,0,3,[[1062,1,1,0,1],[1068,2,2,1,3]]]],[28373,28512,28527]]],["mind",[2,2,[[56,1,1,0,1,[[1132,1,1,0,1]]],[65,1,1,1,2,[[1183,1,1,1,2]]]],[29952,30988]]],["will",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30992]]]]},{"k":"G1107","v":[["*",[24,23,[[41,1,1,0,1,[[974,1,1,0,1]]],[42,3,2,1,3,[[1011,1,1,1,2],[1013,2,1,2,3]]],[43,1,1,3,4,[[1019,1,1,3,4]]],[44,3,3,4,7,[[1054,2,2,4,6],[1061,1,1,6,7]]],[45,2,2,7,9,[[1073,1,1,7,8],[1076,1,1,8,9]]],[46,1,1,9,10,[[1085,1,1,9,10]]],[47,1,1,10,11,[[1091,1,1,10,11]]],[48,6,6,11,17,[[1097,1,1,11,12],[1099,3,3,12,15],[1102,2,2,15,17]]],[49,2,2,17,19,[[1103,1,1,17,18],[1106,1,1,18,19]]],[50,3,3,19,22,[[1107,1,1,19,20],[1110,2,2,20,22]]],[60,1,1,22,23,[[1156,1,1,22,23]]]],[24988,26714,26785,26977,28177,28178,28362,28637,28719,28933,29068,29215,29254,29256,29261,29356,29358,29383,29448,29492,29549,29551,30495]]],["+",[3,3,[[44,1,1,0,1,[[1054,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]]],[28177,28637,28933]]],["certify",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29068]]],["declare",[3,3,[[42,1,1,0,1,[[1013,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[50,1,1,2,3,[[1110,1,1,2,3]]]],[26785,28719,29549]]],["declared",[1,1,[[42,1,1,0,1,[[1013,1,1,0,1]]]],[26785]]],["known",[15,15,[[41,1,1,0,1,[[974,1,1,0,1]]],[42,1,1,1,2,[[1011,1,1,1,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]],[44,2,2,3,5,[[1054,1,1,3,4],[1061,1,1,4,5]]],[48,6,6,5,11,[[1097,1,1,5,6],[1099,3,3,6,9],[1102,2,2,9,11]]],[49,1,1,11,12,[[1106,1,1,11,12]]],[50,2,2,12,14,[[1107,1,1,12,13],[1110,1,1,13,14]]],[60,1,1,14,15,[[1156,1,1,14,15]]]],[24988,26714,26977,28178,28362,29215,29254,29256,29261,29356,29358,29448,29492,29551,30495]]],["wot",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29383]]]]},{"k":"G1108","v":[["*",[29,28,[[41,2,2,0,2,[[973,1,1,0,1],[983,1,1,1,2]]],[44,3,3,2,5,[[1047,1,1,2,3],[1056,1,1,3,4],[1060,1,1,4,5]]],[45,10,9,5,14,[[1062,1,1,5,6],[1069,5,4,6,10],[1073,1,1,10,11],[1074,2,2,11,13],[1075,1,1,13,14]]],[46,6,6,14,20,[[1079,1,1,14,15],[1081,1,1,15,16],[1083,1,1,16,17],[1085,1,1,17,18],[1087,1,1,18,19],[1088,1,1,19,20]]],[48,1,1,20,21,[[1099,1,1,20,21]]],[49,1,1,21,22,[[1105,1,1,21,22]]],[50,1,1,22,23,[[1108,1,1,22,23]]],[53,1,1,23,24,[[1124,1,1,23,24]]],[59,1,1,24,25,[[1153,1,1,24,25]]],[60,3,3,25,28,[[1156,2,2,25,27],[1158,1,1,27,28]]]],[24970,25457,27982,28242,28317,28368,28528,28534,28537,28538,28642,28667,28673,28684,28838,28865,28904,28939,28976,28995,29270,29429,29497,29808,30431,30484,30485,30540]]],["Knowledge",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28528]]],["knowledge",[27,27,[[41,2,2,0,2,[[973,1,1,0,1],[983,1,1,1,2]]],[44,3,3,2,5,[[1047,1,1,2,3],[1056,1,1,3,4],[1060,1,1,4,5]]],[45,9,9,5,14,[[1062,1,1,5,6],[1069,4,4,6,10],[1073,1,1,10,11],[1074,2,2,11,13],[1075,1,1,13,14]]],[46,6,6,14,20,[[1079,1,1,14,15],[1081,1,1,15,16],[1083,1,1,16,17],[1085,1,1,17,18],[1087,1,1,18,19],[1088,1,1,19,20]]],[48,1,1,20,21,[[1099,1,1,20,21]]],[49,1,1,21,22,[[1105,1,1,21,22]]],[50,1,1,22,23,[[1108,1,1,22,23]]],[59,1,1,23,24,[[1153,1,1,23,24]]],[60,3,3,24,27,[[1156,2,2,24,26],[1158,1,1,26,27]]]],[24970,25457,27982,28242,28317,28368,28528,28534,28537,28538,28642,28667,28673,28684,28838,28865,28904,28939,28976,28995,29270,29429,29497,30431,30484,30485,30540]]],["science",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29808]]]]},{"k":"G1109","v":[["expert",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27826]]]]},{"k":"G1110","v":[["*",[15,15,[[41,2,2,0,2,[[974,1,1,0,1],[995,1,1,1,2]]],[42,2,2,2,4,[[1014,2,2,2,4]]],[43,10,10,4,14,[[1018,1,1,4,5],[1019,1,1,5,6],[1021,2,2,6,8],[1026,1,1,8,9],[1030,1,1,9,10],[1032,1,1,10,11],[1036,1,1,11,12],[1045,2,2,12,14]]],[44,1,1,14,15,[[1046,1,1,14,15]]]],[25017,25984,26800,26801,26942,26963,27032,27038,27258,27400,27460,27602,27921,27927,27949]]],["+",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27921]]],["Known",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27460]]],["acquaintance",[2,2,[[41,2,2,0,2,[[974,1,1,0,1],[995,1,1,1,2]]]],[25017,25984]]],["known",[10,10,[[42,2,2,0,2,[[1014,2,2,0,2]]],[43,7,7,2,9,[[1018,1,1,2,3],[1019,1,1,3,4],[1021,1,1,4,5],[1026,1,1,5,6],[1030,1,1,6,7],[1036,1,1,7,8],[1045,1,1,8,9]]],[44,1,1,9,10,[[1046,1,1,9,10]]]],[26800,26801,26942,26963,27032,27258,27400,27602,27927,27949]]],["notable",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27038]]]]},{"k":"G1111","v":[["*",[8,7,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]],[42,4,4,2,6,[[1002,3,3,2,5],[1003,1,1,5,6]]],[45,2,1,6,7,[[1071,2,1,6,7]]]],[23803,25137,26298,26300,26318,26360,28577]]],["Murmur",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26300]]],["murmur",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28577]]],["murmured",[6,6,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]],[42,3,3,2,5,[[1002,2,2,2,4],[1003,1,1,4,5]]],[45,1,1,5,6,[[1071,1,1,5,6]]]],[23803,25137,26298,26318,26360,28577]]]]},{"k":"G1112","v":[["*",[4,4,[[42,1,1,0,1,[[1003,1,1,0,1]]],[43,1,1,1,2,[[1023,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]]],[26340,27102,29405,30455]]],["grudging",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30455]]],["murmuring",[2,2,[[42,1,1,0,1,[[1003,1,1,0,1]]],[43,1,1,1,2,[[1023,1,1,1,2]]]],[26340,27102]]],["murmurings",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29405]]]]},{"k":"G1113","v":[["murmurers",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30688]]]]},{"k":"G1114","v":[["seducers",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29866]]]]},{"k":"G1115","v":[["Golgotha",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]]],[24162,24848,26842]]]]},{"k":"G1116","v":[["*",[5,5,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[23432,24418,28184,30506,30679]]],["+",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30506]]],["Gomorrha",[4,4,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[23432,24418,28184,30679]]]]},{"k":"G1117","v":[["*",[3,3,[[43,1,1,0,1,[[1038,1,1,0,1]]],[65,2,2,1,3,[[1184,2,2,1,3]]]],[27667,31004,31005]]],["burden",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27667]]],["merchandise",[2,2,[[65,2,2,0,2,[[1184,2,2,0,2]]]],[31004,31005]]]]},{"k":"G1118","v":[["parents",[19,18,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,5,5,2,7,[[974,2,2,2,4],[980,1,1,4,5],[990,1,1,5,6],[993,1,1,6,7]]],[42,6,6,7,13,[[1005,6,6,7,13]]],[44,1,1,13,14,[[1046,1,1,13,14]]],[46,2,1,14,15,[[1089,2,1,14,15]]],[48,1,1,15,16,[[1102,1,1,15,16]]],[50,1,1,16,17,[[1109,1,1,16,17]]],[54,1,1,17,18,[[1127,1,1,17,18]]]],[23438,24729,25000,25014,25301,25717,25842,26442,26443,26458,26460,26462,26463,27960,29036,29338,29537,29855]]]]},{"k":"G1119","v":[["*",[12,12,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,2,2,1,3,[[977,1,1,1,2],[994,1,1,2,3]]],[43,4,4,3,7,[[1024,1,1,3,4],[1026,1,1,4,5],[1037,1,1,5,6],[1038,1,1,6,7]]],[44,2,2,7,9,[[1056,1,1,7,8],[1059,1,1,8,9]]],[48,1,1,9,10,[[1099,1,1,9,10]]],[49,1,1,10,11,[[1104,1,1,10,11]]],[57,1,1,11,12,[[1144,1,1,11,12]]]],[24845,25115,25905,27176,27256,27662,27669,28213,28291,29265,29401,30224]]],["+",[5,5,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,4,4,1,5,[[1024,1,1,1,2],[1026,1,1,2,3],[1037,1,1,3,4],[1038,1,1,4,5]]]],[25905,27176,27256,27662,27669]]],["knee",[3,3,[[44,2,2,0,2,[[1056,1,1,0,1],[1059,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[28213,28291,29401]]],["knees",[4,4,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]],[48,1,1,2,3,[[1099,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]]],[24845,25115,29265,30224]]]]},{"k":"G1120","v":[["*",[4,4,[[39,2,2,0,2,[[945,1,1,0,1],[955,1,1,1,2]]],[40,2,2,2,4,[[957,1,1,2,3],[966,1,1,3,4]]]],[23714,24158,24255,24605]]],["down",[2,2,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23714,24255]]],["knee",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24158]]],["kneeled",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24605]]]]},{"k":"G1121","v":[["*",[15,14,[[41,3,3,0,3,[[988,2,2,0,2],[995,1,1,2,3]]],[42,2,2,3,5,[[1001,1,1,3,4],[1003,1,1,4,5]]],[43,2,2,5,7,[[1043,1,1,5,6],[1045,1,1,6,7]]],[44,3,3,7,10,[[1047,2,2,7,9],[1052,1,1,9,10]]],[46,3,2,10,12,[[1080,3,2,10,12]]],[47,1,1,12,13,[[1096,1,1,12,13]]],[54,1,1,13,14,[[1127,1,1,13,14]]]],[25626,25627,25973,26257,26343,27847,27920,27989,27991,28097,28847,28848,29199,29868]]],["+",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28848]]],["bill",[2,2,[[41,2,2,0,2,[[988,2,2,0,2]]]],[25626,25627]]],["learning",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27847]]],["letter",[6,5,[[44,3,3,0,3,[[1047,2,2,0,2],[1052,1,1,2,3]]],[46,2,1,3,4,[[1080,2,1,3,4]]],[47,1,1,4,5,[[1096,1,1,4,5]]]],[27989,27991,28097,28847,29199]]],["letters",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[42,1,1,1,2,[[1003,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]]],[25973,26343,27920]]],["scriptures",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29868]]],["writings",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26257]]]]},{"k":"G1122","v":[["*",[67,67,[[39,24,24,0,24,[[930,1,1,0,1],[933,1,1,1,2],[935,1,1,2,3],[936,1,1,3,4],[937,1,1,4,5],[940,1,1,5,6],[941,1,1,6,7],[943,1,1,7,8],[944,1,1,8,9],[945,1,1,9,10],[948,1,1,10,11],[949,1,1,11,12],[951,9,9,12,21],[954,2,2,21,23],[955,1,1,23,24]]],[40,22,22,24,46,[[957,1,1,24,25],[958,2,2,25,27],[959,1,1,27,28],[963,2,2,28,30],[964,1,1,30,31],[965,3,3,31,34],[966,1,1,34,35],[967,2,2,35,37],[968,4,4,37,41],[970,3,3,41,44],[971,2,2,44,46]]],[41,15,15,46,61,[[977,2,2,46,48],[978,1,1,48,49],[981,1,1,49,50],[983,2,2,50,52],[987,1,1,52,53],[991,1,1,53,54],[992,4,4,54,58],[994,2,2,58,60],[995,1,1,60,61]]],[42,1,1,61,62,[[1004,1,1,61,62]]],[43,4,4,62,66,[[1021,1,1,62,63],[1023,1,1,63,64],[1036,1,1,64,65],[1040,1,1,65,66]]],[45,1,1,66,67,[[1062,1,1,66,67]]]],[23173,23254,23345,23364,23382,23527,23591,23634,23693,23710,23810,23841,23920,23931,23932,23933,23941,23943,23945,23947,23952,24057,24111,24170,24237,24266,24276,24310,24464,24468,24531,24549,24552,24554,24621,24658,24667,24701,24705,24708,24711,24755,24797,24807,24827,24857,25128,25137,25153,25323,25449,25458,25590,25778,25780,25798,25818,25825,25866,25930,25945,26384,27027,27113,27620,27743,28383]]],["scribe",[4,4,[[39,2,2,0,2,[[936,1,1,0,1],[941,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[45,1,1,3,4,[[1062,1,1,3,4]]]],[23364,23591,24705,28383]]],["scribes",[62,62,[[39,22,22,0,22,[[930,1,1,0,1],[933,1,1,1,2],[935,1,1,2,3],[937,1,1,3,4],[940,1,1,4,5],[943,1,1,5,6],[944,1,1,6,7],[945,1,1,7,8],[948,1,1,8,9],[949,1,1,9,10],[951,9,9,10,19],[954,2,2,19,21],[955,1,1,21,22]]],[40,21,21,22,43,[[957,1,1,22,23],[958,2,2,23,25],[959,1,1,25,26],[963,2,2,26,28],[964,1,1,28,29],[965,3,3,29,32],[966,1,1,32,33],[967,2,2,33,35],[968,3,3,35,38],[970,3,3,38,41],[971,2,2,41,43]]],[41,15,15,43,58,[[977,2,2,43,45],[978,1,1,45,46],[981,1,1,46,47],[983,2,2,47,49],[987,1,1,49,50],[991,1,1,50,51],[992,4,4,51,55],[994,2,2,55,57],[995,1,1,57,58]]],[42,1,1,58,59,[[1004,1,1,58,59]]],[43,3,3,59,62,[[1021,1,1,59,60],[1023,1,1,60,61],[1040,1,1,61,62]]]],[23173,23254,23345,23382,23527,23634,23693,23710,23810,23841,23920,23931,23932,23933,23941,23943,23945,23947,23952,24057,24111,24170,24237,24266,24276,24310,24464,24468,24531,24549,24552,24554,24621,24658,24667,24701,24708,24711,24755,24797,24807,24827,24857,25128,25137,25153,25323,25449,25458,25590,25778,25780,25798,25818,25825,25866,25930,25945,26384,27027,27113,27743]]],["townclerk",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27620]]]]},{"k":"G1123","v":[["written",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27977]]]]},{"k":"G1124","v":[["*",[51,51,[[39,4,4,0,4,[[949,1,1,0,1],[950,1,1,1,2],[954,2,2,2,4]]],[40,4,4,4,8,[[968,2,2,4,6],[970,1,1,6,7],[971,1,1,7,8]]],[41,4,4,8,12,[[976,1,1,8,9],[996,3,3,9,12]]],[42,12,12,12,24,[[998,1,1,12,13],[1001,1,1,13,14],[1003,2,2,14,16],[1006,1,1,16,17],[1009,1,1,17,18],[1013,1,1,18,19],[1015,4,4,19,23],[1016,1,1,23,24]]],[43,7,7,24,31,[[1018,1,1,24,25],[1025,2,2,25,27],[1034,2,2,27,29],[1035,2,2,29,31]]],[44,7,7,31,38,[[1046,1,1,31,32],[1049,1,1,32,33],[1054,1,1,33,34],[1055,1,1,34,35],[1056,1,1,35,36],[1060,1,1,36,37],[1061,1,1,37,38]]],[45,2,2,38,40,[[1076,2,2,38,40]]],[47,3,3,40,43,[[1093,2,2,40,42],[1094,1,1,42,43]]],[53,1,1,43,44,[[1123,1,1,43,44]]],[54,1,1,44,45,[[1127,1,1,44,45]]],[58,3,3,45,48,[[1147,2,2,45,47],[1149,1,1,47,48]]],[59,1,1,48,49,[[1152,1,1,48,49]]],[60,2,2,49,51,[[1156,1,1,49,50],[1158,1,1,50,51]]]],[23868,23901,24108,24110,24683,24697,24803,24854,25084,26018,26023,26036,26117,26249,26366,26370,26516,26648,26771,26849,26853,26861,26862,26876,26939,27208,27211,27525,27534,27581,27585,27932,28025,28172,28199,28211,28307,28362,28721,28722,29110,29124,29161,29781,29869,30301,30316,30342,30405,30499,30538]]],["+",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28025]]],["scripture",[30,30,[[40,2,2,0,2,[[968,1,1,0,1],[971,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]],[42,11,11,3,14,[[998,1,1,3,4],[1003,2,2,4,6],[1006,1,1,6,7],[1009,1,1,7,8],[1013,1,1,8,9],[1015,4,4,9,13],[1016,1,1,13,14]]],[43,3,3,14,17,[[1018,1,1,14,15],[1025,2,2,15,17]]],[44,3,3,17,20,[[1054,1,1,17,18],[1055,1,1,18,19],[1056,1,1,19,20]]],[47,3,3,20,23,[[1093,2,2,20,22],[1094,1,1,22,23]]],[53,1,1,23,24,[[1123,1,1,23,24]]],[54,1,1,24,25,[[1127,1,1,24,25]]],[58,3,3,25,28,[[1147,2,2,25,27],[1149,1,1,27,28]]],[59,1,1,28,29,[[1152,1,1,28,29]]],[60,1,1,29,30,[[1156,1,1,29,30]]]],[24683,24854,25084,26117,26366,26370,26516,26648,26771,26849,26853,26861,26862,26876,26939,27208,27211,28172,28199,28211,29110,29124,29161,29781,29869,30301,30316,30342,30405,30499]]],["scriptures",[20,20,[[39,4,4,0,4,[[949,1,1,0,1],[950,1,1,1,2],[954,2,2,2,4]]],[40,2,2,4,6,[[968,1,1,4,5],[970,1,1,5,6]]],[41,3,3,6,9,[[996,3,3,6,9]]],[42,1,1,9,10,[[1001,1,1,9,10]]],[43,4,4,10,14,[[1034,2,2,10,12],[1035,2,2,12,14]]],[44,3,3,14,17,[[1046,1,1,14,15],[1060,1,1,15,16],[1061,1,1,16,17]]],[45,2,2,17,19,[[1076,2,2,17,19]]],[60,1,1,19,20,[[1158,1,1,19,20]]]],[23868,23901,24108,24110,24697,24803,26018,26023,26036,26249,27525,27534,27581,27585,27932,28307,28362,28721,28722,30538]]]]},{"k":"G1125","v":[["*",[194,183,[[39,10,10,0,10,[[930,1,1,0,1],[932,4,4,1,5],[939,1,1,5,6],[949,1,1,6,7],[954,2,2,7,9],[955,1,1,9,10]]],[40,10,10,10,20,[[957,1,1,10,11],[963,1,1,11,12],[965,2,2,12,14],[966,2,2,14,16],[967,1,1,16,17],[968,1,1,17,18],[970,2,2,18,20]]],[41,22,22,20,42,[[973,2,2,20,22],[974,1,1,22,23],[975,1,1,23,24],[976,4,4,24,28],[979,1,1,28,29],[982,2,2,29,31],[988,2,2,31,33],[990,1,1,33,34],[991,1,1,34,35],[992,2,2,35,37],[993,1,1,37,38],[994,1,1,38,39],[995,1,1,39,40],[996,2,2,40,42]]],[42,23,20,42,62,[[997,1,1,42,43],[998,1,1,43,44],[1001,1,1,44,45],[1002,2,2,45,47],[1004,3,3,47,50],[1006,1,1,50,51],[1008,2,2,51,53],[1011,1,1,53,54],[1015,6,4,54,58],[1016,2,2,58,60],[1017,3,2,60,62]]],[43,12,11,62,73,[[1018,1,1,62,63],[1024,1,1,63,64],[1030,2,2,64,66],[1032,2,2,66,68],[1035,1,1,68,69],[1040,2,2,69,71],[1041,1,1,71,72],[1042,2,1,72,73]]],[44,20,20,73,93,[[1046,1,1,73,74],[1047,1,1,74,75],[1048,2,2,75,77],[1049,2,2,77,79],[1053,1,1,79,80],[1054,2,2,80,82],[1055,2,2,82,84],[1056,2,2,84,86],[1057,1,1,86,87],[1059,1,1,87,88],[1060,4,4,88,92],[1061,1,1,92,93]]],[45,18,18,93,111,[[1062,2,2,93,95],[1063,1,1,95,96],[1064,1,1,96,97],[1065,2,2,97,99],[1066,2,2,99,101],[1068,1,1,101,102],[1070,3,3,102,105],[1071,2,2,105,107],[1075,2,2,107,109],[1076,2,2,109,111]]],[46,11,11,111,122,[[1078,1,1,111,112],[1079,3,3,112,115],[1081,1,1,115,116],[1084,1,1,116,117],[1085,1,1,117,118],[1086,2,2,118,120],[1090,2,2,120,122]]],[47,7,6,122,128,[[1091,1,1,122,123],[1093,3,2,123,125],[1094,2,2,125,127],[1096,1,1,127,128]]],[49,1,1,128,129,[[1105,1,1,128,129]]],[51,2,2,129,131,[[1114,1,1,129,130],[1115,1,1,130,131]]],[52,1,1,131,132,[[1118,1,1,131,132]]],[53,1,1,132,133,[[1121,1,1,132,133]]],[56,2,2,133,135,[[1132,2,2,133,135]]],[57,1,1,135,136,[[1142,1,1,135,136]]],[59,2,2,136,138,[[1151,1,1,136,137],[1155,1,1,137,138]]],[60,2,2,138,140,[[1158,2,2,138,140]]],[61,13,10,140,150,[[1159,1,1,140,141],[1160,11,8,141,149],[1163,1,1,149,150]]],[62,2,2,150,152,[[1164,2,2,150,152]]],[63,3,2,152,154,[[1165,3,2,152,154]]],[64,2,1,154,155,[[1166,2,1,154,155]]],[65,29,28,155,183,[[1167,3,3,155,158],[1168,5,5,158,163],[1169,4,4,163,167],[1171,1,1,167,168],[1176,2,1,168,169],[1179,1,1,169,170],[1180,2,2,170,172],[1183,2,2,172,174],[1185,3,3,174,177],[1186,2,2,177,179],[1187,2,2,179,181],[1188,2,2,181,183]]]],[23174,23213,23215,23216,23219,23469,23839,24078,24085,24166,24217,24469,24550,24551,24592,24593,24657,24692,24775,24781,24896,24956,24996,25029,25067,25071,25073,25080,25222,25383,25389,25626,25627,25719,25777,25796,25807,25848,25901,25973,26035,26037,26089,26112,26256,26288,26302,26387,26389,26398,26515,26594,26596,26724,26844,26845,26846,26847,26897,26898,26922,26923,26943,27158,27391,27395,27457,27465,27584,27739,27759,27783,27822,27947,27986,27995,28001,28039,28045,28152,28168,28188,28193,28203,28217,28235,28264,28291,28306,28312,28318,28324,28358,28382,28394,28403,28429,28439,28447,28463,28465,28488,28549,28550,28555,28574,28578,28699,28715,28763,28772,28813,28827,28828,28833,28872,28928,28947,28957,28965,29045,29053,29077,29112,29115,29153,29158,29199,29422,29612,29622,29695,29745,29957,29959,30140,30390,30477,30523,30537,30544,30551,30557,30558,30562,30563,30564,30571,30576,30637,30650,30657,30667,30671,30675,30700,30708,30716,30718,30725,30729,30734,30735,30747,30753,30758,30760,30780,30865,30916,30927,30939,30980,30983,31026,31029,31033,31050,31053,31058,31080,31098,31099]]],["+",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[45,1,1,1,2,[[1063,1,1,1,2]]]],[27947,28403]]],["Write",[5,5,[[42,1,1,0,1,[[1015,1,1,0,1]]],[65,4,4,1,5,[[1167,1,1,1,2],[1180,1,1,2,3],[1185,1,1,3,4],[1187,1,1,4,5]]]],[26846,30716,30939,31026,31058]]],["describeth",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28193]]],["write",[45,39,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,3,3,1,4,[[973,1,1,1,2],[988,2,2,2,4]]],[42,1,1,4,5,[[997,1,1,4,5]]],[43,2,1,5,6,[[1042,2,1,5,6]]],[45,2,2,6,8,[[1065,1,1,6,7],[1075,1,1,7,8]]],[46,5,5,8,13,[[1078,1,1,8,9],[1079,1,1,9,10],[1086,1,1,10,11],[1090,2,2,11,13]]],[47,1,1,13,14,[[1091,1,1,13,14]]],[49,1,1,14,15,[[1105,1,1,14,15]]],[51,2,2,15,17,[[1114,1,1,15,16],[1115,1,1,16,17]]],[52,1,1,17,18,[[1118,1,1,17,18]]],[53,1,1,18,19,[[1121,1,1,18,19]]],[60,1,1,19,20,[[1158,1,1,19,20]]],[61,8,6,20,26,[[1159,1,1,20,21],[1160,7,5,21,26]]],[62,1,1,26,27,[[1164,1,1,26,27]]],[63,2,1,27,28,[[1165,2,1,27,28]]],[64,2,1,28,29,[[1166,2,1,28,29]]],[65,11,10,29,39,[[1167,1,1,29,30],[1168,4,4,30,34],[1169,4,4,34,38],[1176,2,1,38,39]]]],[24592,24896,25626,25627,26089,27822,28447,28715,28813,28833,28957,29045,29053,29077,29422,29612,29622,29695,29745,30523,30544,30551,30557,30558,30562,30563,30657,30671,30675,30708,30718,30725,30729,30735,30747,30753,30758,30760,30865]]],["writing",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26844]]],["written",[119,115,[[39,10,10,0,10,[[930,1,1,0,1],[932,4,4,1,5],[939,1,1,5,6],[949,1,1,6,7],[954,2,2,7,9],[955,1,1,9,10]]],[40,7,7,10,17,[[957,1,1,10,11],[963,1,1,11,12],[965,2,2,12,14],[967,1,1,14,15],[970,2,2,15,17]]],[41,17,17,17,34,[[974,1,1,17,18],[975,1,1,18,19],[976,4,4,19,23],[979,1,1,23,24],[982,2,2,24,26],[990,1,1,26,27],[991,1,1,27,28],[992,1,1,28,29],[993,1,1,29,30],[994,1,1,30,31],[995,1,1,31,32],[996,2,2,32,34]]],[42,15,13,34,47,[[998,1,1,34,35],[1002,2,2,35,37],[1004,1,1,37,38],[1006,1,1,38,39],[1008,2,2,39,41],[1011,1,1,41,42],[1015,3,2,42,44],[1016,2,2,44,46],[1017,2,1,46,47]]],[43,7,7,47,54,[[1018,1,1,47,48],[1024,1,1,48,49],[1030,2,2,49,51],[1032,1,1,51,52],[1040,1,1,52,53],[1041,1,1,53,54]]],[44,17,17,54,71,[[1047,1,1,54,55],[1048,2,2,55,57],[1049,2,2,57,59],[1053,1,1,59,60],[1054,2,2,60,62],[1055,1,1,62,63],[1056,2,2,63,65],[1057,1,1,65,66],[1059,1,1,66,67],[1060,4,4,67,71]]],[45,13,13,71,84,[[1062,2,2,71,73],[1064,1,1,73,74],[1065,1,1,74,75],[1066,1,1,75,76],[1070,3,3,76,79],[1071,2,2,79,81],[1075,1,1,81,82],[1076,2,2,82,84]]],[46,3,3,84,87,[[1081,1,1,84,85],[1085,1,1,85,86],[1086,1,1,86,87]]],[47,6,5,87,92,[[1093,3,2,87,89],[1094,2,2,89,91],[1096,1,1,91,92]]],[56,1,1,92,93,[[1132,1,1,92,93]]],[57,1,1,93,94,[[1142,1,1,93,94]]],[59,2,2,94,96,[[1151,1,1,94,95],[1155,1,1,95,96]]],[60,1,1,96,97,[[1158,1,1,96,97]]],[61,5,4,97,101,[[1160,4,3,97,100],[1163,1,1,100,101]]],[65,14,14,101,115,[[1167,1,1,101,102],[1168,1,1,102,103],[1171,1,1,103,104],[1179,1,1,104,105],[1180,1,1,105,106],[1183,2,2,106,108],[1185,2,2,108,110],[1186,2,2,110,112],[1187,1,1,112,113],[1188,2,2,113,115]]]],[23174,23213,23215,23216,23219,23469,23839,24078,24085,24166,24217,24469,24550,24551,24657,24775,24781,24996,25029,25067,25071,25073,25080,25222,25383,25389,25719,25777,25796,25848,25901,25973,26035,26037,26112,26288,26302,26398,26515,26594,26596,26724,26845,26847,26897,26898,26923,26943,27158,27391,27395,27457,27739,27783,27986,27995,28001,28039,28045,28152,28168,28188,28203,28217,28235,28264,28291,28306,28312,28318,28324,28382,28394,28429,28439,28465,28549,28550,28555,28574,28578,28699,28763,28772,28872,28947,28965,29112,29115,29153,29158,29199,29957,30140,30390,30477,30537,30564,30571,30576,30637,30700,30734,30780,30916,30927,30980,30983,31029,31033,31050,31053,31080,31098,31099]]],["wrote",[21,21,[[40,2,2,0,2,[[966,1,1,0,1],[968,1,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[992,1,1,3,4]]],[42,5,5,4,9,[[1001,1,1,4,5],[1004,2,2,5,7],[1015,1,1,7,8],[1017,1,1,8,9]]],[43,3,3,9,12,[[1032,1,1,9,10],[1035,1,1,10,11],[1040,1,1,11,12]]],[44,1,1,12,13,[[1061,1,1,12,13]]],[45,2,2,13,15,[[1066,1,1,13,14],[1068,1,1,14,15]]],[46,3,3,15,18,[[1079,2,2,15,17],[1084,1,1,17,18]]],[56,1,1,18,19,[[1132,1,1,18,19]]],[62,1,1,19,20,[[1164,1,1,19,20]]],[63,1,1,20,21,[[1165,1,1,20,21]]]],[24593,24692,24956,25807,26256,26387,26389,26844,26922,27465,27584,27759,28358,28463,28488,28827,28828,28928,29959,30650,30667]]]]},{"k":"G1126","v":[["wives'",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29754]]]]},{"k":"G1127","v":[["*",[23,23,[[39,6,6,0,6,[[952,2,2,0,2],[953,1,1,2,3],[954,3,3,3,6]]],[40,6,6,6,12,[[969,3,3,6,9],[970,3,3,9,12]]],[41,2,2,12,14,[[984,2,2,12,14]]],[43,1,1,14,15,[[1037,1,1,14,15]]],[45,1,1,15,16,[[1077,1,1,15,16]]],[50,1,1,16,17,[[1110,1,1,16,17]]],[51,2,2,17,19,[[1115,2,2,17,19]]],[59,1,1,19,20,[[1155,1,1,19,20]]],[65,3,3,20,23,[[1169,2,2,20,22],[1182,1,1,22,23]]]],[23999,24000,24021,24092,24094,24095,24751,24752,24754,24788,24791,24792,25496,25498,27657,28789,29544,29627,29631,30473,30748,30749,30969]]],["+",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[24000,25498]]],["Watch",[7,7,[[39,3,3,0,3,[[952,1,1,0,1],[953,1,1,1,2],[954,1,1,2,3]]],[40,3,3,3,6,[[969,2,2,3,5],[970,1,1,5,6]]],[45,1,1,6,7,[[1077,1,1,6,7]]]],[23999,24021,24095,24752,24754,24792,28789]]],["vigilant",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30473]]],["wake",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29631]]],["watch",[9,9,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,3,3,2,5,[[969,1,1,2,3],[970,2,2,3,5]]],[43,1,1,5,6,[[1037,1,1,5,6]]],[50,1,1,6,7,[[1110,1,1,6,7]]],[51,1,1,7,8,[[1115,1,1,7,8]]],[65,1,1,8,9,[[1169,1,1,8,9]]]],[24092,24094,24751,24788,24791,27657,29544,29627,30749]]],["watcheth",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30969]]],["watchful",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30748]]],["watching",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25496]]]]},{"k":"G1128","v":[["*",[4,4,[[53,1,1,0,1,[[1122,1,1,0,1]]],[57,2,2,1,3,[[1137,1,1,1,2],[1144,1,1,2,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]]],[29754,30044,30223,30514]]],["exercise",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29754]]],["exercised",[3,3,[[57,2,2,0,2,[[1137,1,1,0,1],[1144,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[30044,30223,30514]]]]},{"k":"G1129","v":[["exercise",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29755]]]]},{"k":"G1130","v":[["naked",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28444]]]]},{"k":"G1131","v":[["*",[15,15,[[39,4,4,0,4,[[953,4,4,0,4]]],[40,2,2,4,6,[[970,2,2,4,6]]],[42,1,1,6,7,[[1017,1,1,6,7]]],[43,1,1,7,8,[[1036,1,1,7,8]]],[45,1,1,8,9,[[1076,1,1,8,9]]],[46,1,1,9,10,[[1082,1,1,9,10]]],[57,1,1,10,11,[[1136,1,1,10,11]]],[58,1,1,11,12,[[1147,1,1,11,12]]],[65,3,3,12,15,[[1169,1,1,12,13],[1182,1,1,13,14],[1183,1,1,14,15]]]],[24044,24046,24051,24052,24805,24806,26905,27601,28755,28880,30027,30308,30763,30969,30991]]],["Naked",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24044]]],["bare",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28755]]],["naked",[13,13,[[39,3,3,0,3,[[953,3,3,0,3]]],[40,2,2,3,5,[[970,2,2,3,5]]],[42,1,1,5,6,[[1017,1,1,5,6]]],[43,1,1,6,7,[[1036,1,1,6,7]]],[46,1,1,7,8,[[1082,1,1,7,8]]],[57,1,1,8,9,[[1136,1,1,8,9]]],[58,1,1,9,10,[[1147,1,1,9,10]]],[65,3,3,10,13,[[1169,1,1,10,11],[1182,1,1,11,12],[1183,1,1,12,13]]]],[24046,24051,24052,24805,24806,26905,27601,28880,30027,30308,30763,30969,30991]]]]},{"k":"G1132","v":[["nakedness",[3,3,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[65,1,1,2,3,[[1169,1,1,2,3]]]],[28151,29016,30764]]]]},{"k":"G1133","v":[["women",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29859]]]]},{"k":"G1134","v":[["wife",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30431]]]]},{"k":"G1135","v":[["*",[221,200,[[39,30,30,0,30,[[929,2,2,0,2],[933,3,3,2,5],[937,2,2,5,7],[939,1,1,7,8],[941,1,1,8,9],[942,2,2,9,11],[943,3,3,11,14],[946,1,1,14,15],[947,6,6,15,21],[950,4,4,21,25],[954,2,2,25,27],[955,2,2,27,29],[956,1,1,29,30]]],[40,19,17,30,47,[[961,2,2,30,32],[962,2,2,32,34],[963,2,2,34,36],[966,5,5,36,41],[968,6,4,41,45],[970,1,1,45,46],[971,1,1,46,47]]],[41,43,40,47,87,[[973,6,6,47,53],[974,1,1,53,54],[975,1,1,54,55],[976,1,1,55,56],[979,6,5,56,61],[980,4,4,61,65],[982,1,1,65,66],[983,1,1,66,67],[985,3,3,67,70],[986,2,2,70,72],[987,1,1,72,73],[988,1,1,73,74],[989,1,1,74,75],[990,1,1,75,76],[992,7,5,76,81],[994,1,1,81,82],[995,3,3,82,85],[996,2,2,85,87]]],[42,23,21,87,108,[[998,1,1,87,88],[1000,13,12,88,100],[1004,5,4,100,104],[1012,1,1,104,105],[1015,1,1,105,106],[1016,2,2,106,108]]],[43,19,19,108,127,[[1018,1,1,108,109],[1022,4,4,109,113],[1025,2,2,113,115],[1026,1,1,115,116],[1030,1,1,116,117],[1033,3,3,117,120],[1034,3,3,120,123],[1035,1,1,123,124],[1038,1,1,124,125],[1039,1,1,125,126],[1041,1,1,126,127]]],[44,1,1,127,128,[[1052,1,1,127,128]]],[45,41,30,128,158,[[1066,1,1,128,129],[1068,21,15,129,144],[1070,1,1,144,145],[1072,16,11,145,156],[1075,2,2,156,158]]],[47,1,1,158,159,[[1094,1,1,158,159]]],[48,9,7,159,166,[[1101,9,7,159,166]]],[50,2,2,166,168,[[1109,2,2,166,168]]],[53,9,9,168,177,[[1120,5,5,168,173],[1121,3,3,173,176],[1123,1,1,176,177]]],[55,1,1,177,178,[[1129,1,1,177,178]]],[57,1,1,178,179,[[1143,1,1,178,179]]],[59,3,2,179,181,[[1153,3,2,179,181]]],[65,19,19,181,200,[[1168,1,1,181,182],[1175,1,1,182,183],[1178,8,8,183,191],[1180,1,1,191,192],[1183,6,6,192,198],[1185,1,1,198,199],[1187,1,1,199,200]]]],[23164,23168,23262,23265,23266,23399,23401,23470,23572,23600,23618,23655,23661,23671,23752,23765,23767,23770,23771,23772,23791,23896,23897,23899,23900,24061,24064,24148,24184,24200,24389,24397,24424,24425,24488,24489,24590,24595,24599,24600,24617,24692,24693,24695,24696,24757,24866,24898,24906,24911,24917,24921,24935,24978,25044,25089,25223,25232,25234,25239,25245,25247,25248,25288,25292,25401,25432,25529,25530,25539,25573,25579,25596,25638,25683,25717,25807,25808,25809,25811,25812,25921,25962,25984,25990,26013,26015,26099,26163,26165,26167,26171,26173,26175,26177,26181,26183,26184,26195,26198,26384,26385,26390,26391,26747,26851,26880,26882,26937,27060,27061,27066,27073,27179,27188,27218,27412,27484,27496,27497,27527,27535,27557,27559,27669,27708,27793,28093,28455,28488,28489,28490,28491,28497,28498,28499,28500,28501,28503,28514,28516,28520,28521,28526,28545,28603,28605,28606,28607,28608,28609,28610,28611,28612,28613,28615,28712,28713,29135,29326,29327,29328,29329,29332,29335,29337,29535,29536,29725,29726,29727,29728,29730,29733,29742,29743,29772,29898,30207,30425,30429,30737,30848,30892,30895,30897,30904,30905,30906,30907,30908,30930,30978,30979,30981,30982,30984,30993,31024,31062]]],["Wives",[2,2,[[48,1,1,0,1,[[1101,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29326,29535]]],["Woman",[8,8,[[41,2,2,0,2,[[985,1,1,0,1],[994,1,1,1,2]]],[42,6,6,2,8,[[998,1,1,2,3],[1000,1,1,3,4],[1004,1,1,4,5],[1015,1,1,5,6],[1016,2,2,6,8]]]],[25530,25921,26099,26177,26391,26851,26880,26882]]],["Women",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30207]]],["wife",[80,69,[[39,15,15,0,15,[[929,2,2,0,2],[933,2,2,2,4],[942,1,1,4,5],[946,1,1,5,6],[947,5,5,6,11],[950,3,3,11,14],[955,1,1,14,15]]],[40,11,9,15,24,[[962,2,2,15,17],[966,4,4,17,21],[968,5,3,21,24]]],[41,18,16,24,40,[[973,4,4,24,28],[974,1,1,28,29],[975,1,1,29,30],[980,1,1,30,31],[986,2,2,31,33],[988,1,1,33,34],[989,1,1,34,35],[990,1,1,35,36],[992,6,4,36,40]]],[43,5,5,40,45,[[1022,3,3,40,43],[1035,1,1,43,44],[1041,1,1,44,45]]],[45,20,14,45,59,[[1066,1,1,45,46],[1068,18,12,46,58],[1070,1,1,58,59]]],[48,5,4,59,63,[[1101,5,4,59,63]]],[53,3,3,63,66,[[1121,2,2,63,65],[1123,1,1,65,66]]],[55,1,1,66,67,[[1129,1,1,66,67]]],[65,2,2,67,69,[[1185,1,1,67,68],[1187,1,1,68,69]]]],[23164,23168,23265,23266,23600,23752,23765,23767,23771,23772,23791,23896,23897,23900,24148,24424,24425,24590,24595,24599,24617,24692,24693,24696,24898,24906,24911,24917,24978,25044,25248,25573,25579,25638,25683,25717,25807,25808,25809,25812,27060,27061,27066,27559,27793,28455,28489,28490,28491,28497,28498,28499,28501,28503,28514,28520,28521,28526,28545,29327,29332,29335,29337,29733,29743,29772,29898,31024,31062]]],["wives",[10,9,[[39,1,1,0,1,[[947,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]],[45,1,1,2,3,[[1068,1,1,2,3]]],[48,3,3,3,6,[[1101,3,3,3,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[53,1,1,7,8,[[1121,1,1,7,8]]],[59,2,1,8,9,[[1153,2,1,8,9]]]],[23770,27669,28516,29328,29329,29332,29536,29742,30425]]],["woman",[88,81,[[39,9,9,0,9,[[933,1,1,0,1],[937,2,2,1,3],[941,1,1,3,4],[943,2,2,4,6],[950,1,1,6,7],[954,2,2,7,9]]],[40,7,7,9,16,[[961,2,2,9,11],[963,2,2,11,13],[966,1,1,13,14],[968,1,1,14,15],[970,1,1,15,16]]],[41,14,13,16,29,[[976,1,1,16,17],[979,5,4,17,21],[980,2,2,21,23],[982,1,1,23,24],[983,1,1,24,25],[985,2,2,25,27],[987,1,1,27,28],[992,1,1,28,29]]],[42,17,16,29,45,[[1000,12,11,29,40],[1004,4,4,40,44],[1012,1,1,44,45]]],[43,3,3,45,48,[[1033,2,2,45,47],[1034,1,1,47,48]]],[44,1,1,48,49,[[1052,1,1,48,49]]],[45,18,13,49,62,[[1068,2,2,49,51],[1072,16,11,51,62]]],[47,1,1,62,63,[[1094,1,1,62,63]]],[53,3,3,63,66,[[1120,3,3,63,66]]],[65,15,15,66,81,[[1168,1,1,66,67],[1178,8,8,67,75],[1183,6,6,75,81]]]],[23262,23399,23401,23572,23655,23661,23899,24061,24064,24389,24397,24488,24489,24600,24695,24757,25089,25232,25234,25239,25245,25288,25292,25401,25432,25529,25539,25596,25811,26163,26165,26167,26171,26173,26175,26181,26183,26184,26195,26198,26384,26385,26390,26391,26747,27484,27497,27557,28093,28488,28500,28603,28605,28606,28607,28608,28609,28610,28611,28612,28613,28615,29135,29727,29728,29730,30737,30892,30895,30897,30904,30905,30906,30907,30908,30978,30979,30981,30982,30984,30993]]],["women",[32,32,[[39,5,5,0,5,[[939,1,1,0,1],[942,1,1,1,2],[943,1,1,2,3],[955,1,1,3,4],[956,1,1,4,5]]],[40,1,1,5,6,[[971,1,1,5,6]]],[41,9,9,6,15,[[973,2,2,6,8],[979,1,1,8,9],[980,1,1,9,10],[995,3,3,10,13],[996,2,2,13,15]]],[43,10,10,15,25,[[1018,1,1,15,16],[1022,1,1,16,17],[1025,2,2,17,19],[1026,1,1,19,20],[1030,1,1,20,21],[1033,1,1,21,22],[1034,2,2,22,24],[1039,1,1,24,25]]],[45,2,2,25,27,[[1075,2,2,25,27]]],[53,2,2,27,29,[[1120,2,2,27,29]]],[59,1,1,29,30,[[1153,1,1,29,30]]],[65,2,2,30,32,[[1175,1,1,30,31],[1180,1,1,31,32]]]],[23470,23618,23671,24184,24200,24866,24921,24935,25223,25247,25962,25984,25990,26013,26015,26937,27073,27179,27188,27218,27412,27496,27527,27535,27708,28712,28713,29725,29726,30429,30848,30930]]]]},{"k":"G1136","v":[["Gog",[1,1,[[65,1,1,0,1,[[1186,1,1,0,1]]]],[31046]]]]},{"k":"G1137","v":[["*",[9,9,[[39,2,2,0,2,[[934,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]],[43,2,2,4,6,[[1021,1,1,4,5],[1043,1,1,5,6]]],[59,1,1,6,7,[[1152,1,1,6,7]]],[65,2,2,7,9,[[1173,1,1,7,8],[1186,1,1,8,9]]]],[23287,23868,24683,25796,27033,27849,30406,30811,31046]]],["corner",[6,6,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[43,2,2,3,5,[[1021,1,1,3,4],[1043,1,1,4,5]]],[59,1,1,5,6,[[1152,1,1,5,6]]]],[23868,24683,25796,27033,27849,30406]]],["corners",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[65,1,1,1,2,[[1173,1,1,1,2]]]],[23287,30811]]],["quarters",[1,1,[[65,1,1,0,1,[[1186,1,1,0,1]]]],[31046]]]]},{"k":"G1138","v":[["*",[59,54,[[39,17,15,0,15,[[929,6,4,0,4],[937,1,1,4,5],[940,2,2,5,7],[943,1,1,7,8],[948,2,2,8,10],[949,2,2,10,12],[950,3,3,12,15]]],[40,7,7,15,22,[[958,1,1,15,16],[966,2,2,16,18],[967,1,1,18,19],[968,3,3,19,22]]],[41,13,12,22,34,[[973,3,3,22,25],[974,3,2,25,27],[975,1,1,27,28],[978,1,1,28,29],[990,2,2,29,31],[992,3,3,31,34]]],[42,2,1,34,35,[[1003,2,1,34,35]]],[43,11,10,35,45,[[1018,1,1,35,36],[1019,3,3,36,39],[1021,1,1,39,40],[1024,1,1,40,41],[1030,4,3,41,44],[1032,1,1,44,45]]],[44,3,3,45,48,[[1046,1,1,45,46],[1049,1,1,46,47],[1056,1,1,47,48]]],[54,1,1,48,49,[[1126,1,1,48,49]]],[57,2,2,49,51,[[1136,1,1,49,50],[1143,1,1,50,51]]],[65,3,3,51,54,[[1169,1,1,51,52],[1171,1,1,52,53],[1188,1,1,53,54]]]],[23145,23150,23161,23164,23406,23492,23512,23655,23822,23823,23835,23841,23914,23915,23917,24285,24635,24636,24650,24708,24709,24710,24920,24925,24962,24977,24984,25056,25149,25726,25727,25820,25821,25823,26370,26939,26974,26978,26983,27047,27161,27384,27396,27398,27458,27933,28028,28218,29835,30021,30204,30753,30784,31096]]],["David",[58,53,[[39,17,15,0,15,[[929,6,4,0,4],[937,1,1,4,5],[940,2,2,5,7],[943,1,1,7,8],[948,2,2,8,10],[949,2,2,10,12],[950,3,3,12,15]]],[40,7,7,15,22,[[958,1,1,15,16],[966,2,2,16,18],[967,1,1,18,19],[968,3,3,19,22]]],[41,12,11,22,33,[[973,3,3,22,25],[974,3,2,25,27],[975,1,1,27,28],[978,1,1,28,29],[990,2,2,29,31],[992,2,2,31,33]]],[42,2,1,33,34,[[1003,2,1,33,34]]],[43,11,10,34,44,[[1018,1,1,34,35],[1019,3,3,35,38],[1021,1,1,38,39],[1024,1,1,39,40],[1030,4,3,40,43],[1032,1,1,43,44]]],[44,3,3,44,47,[[1046,1,1,44,45],[1049,1,1,45,46],[1056,1,1,46,47]]],[54,1,1,47,48,[[1126,1,1,47,48]]],[57,2,2,48,50,[[1136,1,1,48,49],[1143,1,1,49,50]]],[65,3,3,50,53,[[1169,1,1,50,51],[1171,1,1,51,52],[1188,1,1,52,53]]]],[23145,23150,23161,23164,23406,23492,23512,23655,23822,23823,23835,23841,23914,23915,23917,24285,24635,24636,24650,24708,24709,24710,24920,24925,24962,24977,24984,25056,25149,25726,25727,25821,25823,26370,26939,26974,26978,26983,27047,27161,27384,27396,27398,27458,27933,28028,28218,29835,30021,30204,30753,30784,31096]]],["David's",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25820]]]]},{"k":"G1139","v":[["*",[13,13,[[39,7,7,0,7,[[932,1,1,0,1],[936,3,3,1,4],[937,1,1,4,5],[940,1,1,5,6],[943,1,1,6,7]]],[40,4,4,7,11,[[957,1,1,7,8],[961,3,3,8,11]]],[41,1,1,11,12,[[980,1,1,11,12]]],[42,1,1,12,13,[[1006,1,1,12,13]]]],[23233,23361,23373,23378,23411,23511,23655,24247,24379,24380,24382,25281,26502]]],["devil",[7,7,[[39,3,3,0,3,[[937,1,1,0,1],[940,1,1,1,2],[943,1,1,2,3]]],[40,3,3,3,6,[[961,3,3,3,6]]],[42,1,1,6,7,[[1006,1,1,6,7]]]],[23411,23511,23655,24379,24380,24382,26502]]],["devils",[6,6,[[39,4,4,0,4,[[932,1,1,0,1],[936,3,3,1,4]]],[40,1,1,4,5,[[957,1,1,4,5]]],[41,1,1,5,6,[[980,1,1,5,6]]]],[23233,23361,23373,23378,24247,25281]]]]},{"k":"G1140","v":[["*",[60,52,[[39,11,9,0,9,[[935,1,1,0,1],[937,3,2,1,3],[938,1,1,3,4],[939,1,1,4,5],[940,4,3,5,8],[945,1,1,8,9]]],[40,13,11,9,20,[[957,3,2,9,11],[959,3,2,11,13],[962,1,1,13,14],[963,3,3,14,17],[965,1,1,17,18],[972,2,2,18,20]]],[41,22,20,20,40,[[976,3,3,20,23],[979,1,1,23,24],[980,6,6,24,30],[981,3,3,30,33],[982,1,1,33,34],[983,7,5,34,39],[985,1,1,39,40]]],[42,6,6,40,46,[[1003,1,1,40,41],[1004,3,3,41,44],[1006,2,2,44,46]]],[43,1,1,46,47,[[1034,1,1,46,47]]],[45,4,2,47,49,[[1071,4,2,47,49]]],[53,1,1,49,50,[[1122,1,1,49,50]]],[58,1,1,50,51,[[1147,1,1,50,51]]],[65,1,1,51,52,[[1175,1,1,51,52]]]],[23338,23412,23413,23425,23477,23513,23516,23517,23718,24249,24254,24303,24310,24420,24489,24492,24493,24576,24882,24890,25096,25098,25104,25228,25247,25272,25275,25278,25280,25283,25302,25343,25350,25380,25419,25420,25423,25424,25425,25550,26348,26429,26430,26433,26501,26502,27541,28587,28588,29748,30312,30860]]],["+",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25272]]],["devil",[18,17,[[39,3,3,0,3,[[937,1,1,0,1],[939,1,1,1,2],[945,1,1,2,3]]],[40,3,3,3,6,[[963,3,3,3,6]]],[41,6,5,6,11,[[976,2,2,6,8],[979,1,1,8,9],[981,1,1,9,10],[983,2,1,10,11]]],[42,6,6,11,17,[[1003,1,1,11,12],[1004,3,3,12,15],[1006,2,2,15,17]]]],[23412,23477,23718,24489,24492,24493,25096,25098,25228,25343,25419,26348,26429,26430,26433,26501,26502]]],["devils",[40,33,[[39,8,6,0,6,[[935,1,1,0,1],[937,2,1,1,2],[938,1,1,2,3],[940,4,3,3,6]]],[40,10,8,6,14,[[957,3,2,6,8],[959,3,2,8,10],[962,1,1,10,11],[965,1,1,11,12],[972,2,2,12,14]]],[41,15,14,14,28,[[976,1,1,14,15],[980,5,5,15,20],[981,2,2,20,22],[982,1,1,22,23],[983,5,4,23,27],[985,1,1,27,28]]],[45,4,2,28,30,[[1071,4,2,28,30]]],[53,1,1,30,31,[[1122,1,1,30,31]]],[58,1,1,31,32,[[1147,1,1,31,32]]],[65,1,1,32,33,[[1175,1,1,32,33]]]],[23338,23413,23425,23513,23516,23517,24249,24254,24303,24310,24420,24576,24882,24890,25104,25247,25275,25278,25280,25283,25302,25350,25380,25420,25423,25424,25425,25550,28587,28588,29748,30312,30860]]],["gods",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27541]]]]},{"k":"G1141","v":[["devilish",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30334]]]]},{"k":"G1142","v":[["*",[5,5,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[65,2,2,3,5,[[1182,1,1,3,4],[1184,1,1,4,5]]]],[23376,24376,25274,30968,30995]]],["devil",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25274]]],["devils",[4,4,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[65,2,2,2,4,[[1182,1,1,2,3],[1184,1,1,3,4]]]],[23376,24376,30968,30995]]]]},{"k":"G1143","v":[["bite",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29177]]]]},{"k":"G1144","v":[["tears",[11,11,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,2,2,1,3,[[979,2,2,1,3]]],[43,2,2,3,5,[[1037,2,2,3,5]]],[46,1,1,5,6,[[1079,1,1,5,6]]],[54,1,1,6,7,[[1125,1,1,6,7]]],[57,2,2,7,9,[[1137,1,1,7,8],[1144,1,1,8,9]]],[65,2,2,9,11,[[1173,1,1,9,10],[1187,1,1,10,11]]]],[24562,25233,25239,27645,27657,28828,29813,30037,30229,30827,31057]]]]},{"k":"G1145","v":[["wept",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26558]]]]},{"k":"G1146","v":[["ring",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25610]]]]},{"k":"G1147","v":[["*",[8,8,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,3,3,2,5,[[983,2,2,2,4],[988,1,1,4,5]]],[42,3,3,5,8,[[1004,1,1,5,6],[1016,2,2,6,8]]]],[23922,24496,25425,25451,25644,26387,26892,26894]]],["finger",[5,5,[[41,2,2,0,2,[[983,1,1,0,1],[988,1,1,1,2]]],[42,3,3,2,5,[[1004,1,1,2,3],[1016,2,2,3,5]]]],[25425,25644,26387,26892,26894]]],["fingers",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]]],[23922,24496,25451]]]]},{"k":"G1148","v":[["Dalmanutha",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24510]]]]},{"k":"G1149","v":[["Dalmatia",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29880]]]]},{"k":"G1150","v":[["*",[4,3,[[40,1,1,0,1,[[961,1,1,0,1]]],[58,3,2,1,3,[[1148,3,2,1,3]]]],[24368,30326,30327]]],["tame",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[24368,30327]]],["tamed",[2,1,[[58,2,1,0,1,[[1148,2,1,0,1]]]],[30326]]]]},{"k":"G1151","v":[["heifer",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30118]]]]},{"k":"G1152","v":[["Damaris",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27557]]]]},{"k":"G1153","v":[["+",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29021]]]]},{"k":"G1154","v":[["Damascus",[15,15,[[43,13,13,0,13,[[1026,7,7,0,7],[1039,4,4,7,11],[1043,2,2,11,13]]],[46,1,1,13,14,[[1088,1,1,13,14]]],[47,1,1,14,15,[[1091,1,1,14,15]]]],[27218,27219,27224,27226,27235,27238,27243,27709,27710,27714,27715,27835,27843,29021,29074]]]]},{"k":"G1155","v":[["*",[4,3,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,3,2,1,3,[[978,3,2,1,3]]]],[23276,25180,25181]]],["borrow",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23276]]],["lend",[3,2,[[41,3,2,0,2,[[978,3,2,0,2]]]],[25180,25181]]]]},{"k":"G1156","v":[["debt",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23754]]]]},{"k":"G1157","v":[["creditor",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25236]]]]},{"k":"G1158","v":[["Daniel",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23972,24731]]]]},{"k":"G1159","v":[["*",[5,5,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]],[43,1,1,2,3,[[1038,1,1,2,3]]],[46,1,1,3,4,[[1089,1,1,3,4]]],[58,1,1,4,5,[[1149,1,1,4,5]]]],[24390,25602,27688,29037,30340]]],["charges",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27688]]],["consume",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30340]]],["spend",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29037]]],["spent",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]]],[24390,25602]]]]},{"k":"G1160","v":[["cost",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25581]]]]},{"k":"G1161","v":[["*",[2841,2534,[[39,480,424,0,424,[[929,44,21,0,21],[930,12,11,21,32],[931,8,7,32,39],[932,5,5,39,44],[933,17,14,44,58],[934,12,12,58,70],[935,4,3,70,73],[936,16,16,73,89],[937,15,15,89,104],[938,16,15,104,119],[939,5,5,119,124],[940,17,17,124,141],[941,31,24,141,165],[942,18,18,165,183],[943,19,19,183,202],[944,14,12,202,214],[945,11,11,214,225],[946,12,11,225,236],[947,16,14,236,250],[948,17,16,250,266],[949,24,21,266,287],[950,18,17,287,304],[951,16,14,304,318],[952,15,15,318,333],[953,24,22,333,355],[954,31,31,355,386],[955,34,30,386,416],[956,9,8,416,424]]],[40,193,181,424,605,[[957,9,9,424,433],[958,5,5,433,438],[959,3,3,438,441],[960,10,9,441,450],[961,9,9,450,459],[962,11,10,459,469],[963,9,8,469,477],[964,11,8,477,485],[965,12,12,485,497],[966,28,26,497,523],[967,7,6,523,529],[968,10,9,529,538],[969,15,15,538,553],[970,24,23,553,576],[971,24,23,576,599],[972,6,6,599,605]]],[41,538,481,605,1086,[[973,15,15,605,620],[974,9,9,620,629],[975,12,11,629,640],[976,13,11,640,651],[977,17,16,651,667],[978,17,15,667,682],[979,29,27,682,709],[980,40,34,709,743],[981,51,37,743,780],[982,28,24,780,804],[983,24,22,804,826],[984,31,28,826,854],[985,13,12,854,866],[986,8,8,866,874],[987,16,15,874,889],[988,18,14,889,903],[989,13,11,903,914],[990,27,25,914,939],[991,17,17,939,956],[992,25,25,956,981],[993,16,15,981,996],[994,40,36,996,1032],[995,39,34,1032,1066],[996,20,20,1066,1086]]],[42,231,219,1086,1305,[[997,7,6,1086,1092],[998,8,7,1092,1099],[999,8,8,1099,1107],[1000,8,8,1107,1115],[1001,11,11,1115,1126],[1002,16,15,1126,1141],[1003,14,14,1141,1155],[1004,21,19,1155,1174],[1005,13,13,1174,1187],[1006,9,9,1187,1196],[1007,19,18,1196,1214],[1008,13,13,1214,1227],[1009,8,8,1227,1235],[1010,5,5,1235,1240],[1011,6,6,1240,1246],[1012,10,9,1246,1255],[1013,4,4,1255,1259],[1014,16,14,1259,1273],[1015,18,15,1273,1288],[1016,7,7,1288,1295],[1017,10,10,1295,1305]]],[43,563,503,1305,1808,[[1018,2,2,1305,1307],[1019,14,14,1307,1321],[1020,13,12,1321,1333],[1021,13,13,1333,1346],[1022,30,26,1346,1372],[1023,5,5,1372,1377],[1024,26,24,1377,1401],[1025,28,26,1401,1427],[1026,38,30,1427,1457],[1027,18,16,1457,1473],[1028,19,17,1473,1490],[1029,27,22,1490,1512],[1030,28,26,1512,1538],[1031,14,13,1538,1551],[1032,15,15,1551,1566],[1033,24,21,1566,1587],[1034,18,15,1587,1602],[1035,18,17,1602,1619],[1036,28,25,1619,1644],[1037,20,18,1644,1662],[1038,30,26,1662,1688],[1039,22,18,1688,1706],[1040,23,21,1706,1727],[1041,16,15,1727,1742],[1042,17,15,1742,1757],[1043,9,8,1757,1765],[1044,29,27,1765,1792],[1045,19,16,1792,1808]]],[44,144,124,1808,1932,[[1046,3,3,1808,1811],[1047,7,6,1811,1817],[1048,6,6,1817,1823],[1049,6,5,1823,1828],[1050,10,8,1828,1836],[1051,10,7,1836,1843],[1052,14,12,1843,1855],[1053,20,16,1855,1871],[1054,9,9,1871,1880],[1055,8,7,1880,1887],[1056,14,11,1887,1898],[1057,3,3,1898,1901],[1058,5,5,1901,1906],[1059,8,7,1906,1913],[1060,14,13,1913,1926],[1061,7,6,1926,1932]]],[45,219,171,1932,2103,[[1062,12,7,1932,1939],[1063,8,6,1939,1945],[1064,11,7,1945,1952],[1065,11,8,1952,1960],[1066,3,3,1960,1963],[1067,5,4,1963,1967],[1068,31,25,1967,1992],[1069,8,7,1992,1999],[1070,8,6,1999,2005],[1071,11,10,2005,2015],[1072,16,13,2015,2028],[1073,23,16,2028,2044],[1074,10,8,2044,2052],[1075,22,17,2052,2069],[1076,27,22,2069,2091],[1077,13,12,2091,2103]]],[46,76,69,2103,2172,[[1078,6,6,2103,2109],[1079,5,5,2109,2114],[1080,7,6,2114,2120],[1081,6,6,2120,2126],[1082,6,5,2126,2131],[1083,8,7,2131,2138],[1084,3,3,2138,2141],[1085,9,8,2141,2149],[1086,5,5,2149,2154],[1087,7,6,2154,2160],[1088,4,4,2160,2164],[1089,5,5,2164,2169],[1090,5,3,2169,2172]]],[47,59,52,2172,2224,[[1091,6,6,2172,2178],[1092,11,8,2178,2186],[1093,11,10,2186,2196],[1094,14,12,2196,2208],[1095,11,10,2208,2218],[1096,6,6,2218,2224]]],[48,20,18,2224,2242,[[1098,2,2,2224,2226],[1099,1,1,2226,2227],[1100,10,8,2227,2235],[1101,6,6,2235,2241],[1102,1,1,2241,2242]]],[49,27,24,2242,2266,[[1103,6,6,2242,2248],[1104,8,7,2248,2255],[1105,5,4,2255,2259],[1106,8,7,2259,2266]]],[50,7,7,2266,2273,[[1107,2,2,2266,2268],[1108,2,2,2268,2270],[1109,3,3,2270,2273]]],[51,14,14,2273,2287,[[1112,2,2,2273,2275],[1113,3,3,2275,2278],[1114,3,3,2278,2281],[1115,6,6,2281,2287]]],[52,11,11,2287,2298,[[1117,3,3,2287,2290],[1118,8,8,2290,2298]]],[53,30,27,2298,2325,[[1119,5,5,2298,2303],[1120,3,3,2303,2306],[1121,4,4,2306,2310],[1122,4,3,2310,2313],[1123,8,7,2313,2320],[1124,6,5,2320,2325]]],[54,24,21,2325,2346,[[1125,3,2,2325,2327],[1126,8,6,2327,2333],[1127,7,7,2333,2340],[1128,6,6,2340,2346]]],[55,8,8,2346,2354,[[1129,4,4,2346,2350],[1130,1,1,2350,2351],[1131,3,3,2351,2354]]],[56,7,7,2354,2361,[[1132,7,7,2354,2361]]],[57,71,69,2361,2430,[[1133,5,5,2361,2366],[1134,3,3,2366,2369],[1135,5,5,2369,2374],[1136,2,2,2374,2376],[1137,1,1,2376,2377],[1138,4,4,2377,2381],[1139,10,10,2381,2391],[1140,3,3,2391,2394],[1141,10,10,2394,2404],[1142,9,9,2404,2413],[1143,6,5,2413,2418],[1144,8,7,2418,2425],[1145,5,5,2425,2430]]],[58,34,30,2430,2460,[[1146,10,10,2430,2440],[1147,12,10,2440,2450],[1148,4,4,2450,2454],[1149,6,5,2454,2459],[1150,2,1,2459,2460]]],[59,29,24,2460,2484,[[1151,6,5,2460,2465],[1152,7,6,2465,2471],[1153,6,5,2471,2476],[1154,7,6,2476,2482],[1155,3,2,2482,2484]]],[60,22,17,2484,2501,[[1156,9,5,2484,2489],[1157,7,7,2489,2496],[1158,6,5,2496,2501]]],[61,11,11,2501,2512,[[1159,2,2,2501,2503],[1160,4,4,2503,2507],[1161,3,3,2507,2510],[1162,1,1,2510,2511],[1163,1,1,2511,2512]]],[63,3,3,2512,2515,[[1165,3,3,2512,2515]]],[64,11,10,2515,2525,[[1166,11,10,2515,2525]]],[65,9,9,2525,2534,[[1167,1,1,2525,2526],[1168,2,2,2526,2528],[1176,1,1,2528,2529],[1180,1,1,2529,2530],[1185,1,1,2530,2531],[1186,1,1,2531,2532],[1187,1,1,2532,2533],[1188,1,1,2533,2534]]]],[23146,23147,23148,23149,23150,23151,23152,23153,23154,23155,23156,23157,23158,23159,23160,23162,23163,23164,23165,23166,23168,23170,23172,23174,23177,23178,23179,23182,23183,23188,23190,23191,23196,23199,23202,23203,23204,23206,23207,23213,23221,23227,23229,23231,23235,23247,23253,23255,23256,23262,23263,23265,23266,23267,23268,23271,23273,23278,23285,23288,23289,23297,23298,23299,23302,23305,23309,23311,23312,23315,23319,23331,23333,23346,23350,23355,23356,23357,23361,23363,23365,23366,23367,23369,23372,23375,23376,23377,23378,23385,23387,23391,23392,23393,23394,23395,23401,23404,23407,23410,23411,23413,23415,23416,23419,23423,23424,23428,23429,23430,23434,23435,23436,23438,23439,23440,23445,23447,23450,23461,23466,23470,23471,23475,23491,23492,23495,23496,23500,23503,23504,23513,23514,23517,23520,23521,23525,23528,23535,23536,23537,23544,23545,23546,23547,23550,23551,23555,23559,23560,23561,23562,23564,23565,23566,23567,23568,23569,23571,23576,23577,23578,23587,23591,23596,23603,23605,23606,23612,23613,23614,23615,23616,23618,23620,23621,23622,23624,23625,23626,23627,23628,23630,23636,23638,23641,23642,23646,23647,23648,23649,23651,23653,23656,23657,23658,23659,23660,23665,23667,23669,23671,23674,23675,23678,23679,23680,23685,23686,23687,23688,23690,23695,23697,23702,23704,23708,23711,23712,23717,23720,23721,23722,23724,23727,23733,23735,23742,23743,23744,23751,23752,23754,23755,23757,23758,23766,23770,23771,23773,23775,23776,23779,23784,23785,23786,23787,23788,23790,23792,23794,23796,23798,23800,23802,23803,23805,23806,23808,23813,23814,23815,23817,23818,23823,23826,23830,23832,23834,23835,23837,23839,23841,23844,23847,23850,23851,23852,23854,23855,23856,23858,23860,23861,23863,23864,23870,23877,23878,23879,23880,23883,23884,23886,23890,23891,23897,23899,23901,23903,23906,23909,23911,23913,23921,23922,23923,23926,23929,23930,23931,23932,23934,23936,23942,23943,23945,23946,23959,23960,23963,23965,23970,23976,23977,23979,23989,23992,23993,23994,24000,24005,24006,24010,24012,24013,24014,24016,24017,24018,24019,24020,24023,24024,24026,24027,24029,24030,24032,24034,24037,24041,24046,24047,24054,24059,24060,24062,24064,24065,24069,24071,24072,24074,24077,24078,24079,24080,24083,24086,24087,24095,24102,24104,24110,24111,24112,24113,24114,24117,24120,24121,24123,24124,24125,24127,24130,24133,24135,24136,24140,24144,24145,24148,24149,24150,24152,24153,24155,24161,24164,24168,24170,24173,24174,24175,24176,24178,24179,24183,24184,24186,24190,24191,24194,24195,24198,24199,24200,24204,24206,24210,24211,24212,24221,24223,24229,24231,24243,24245,24247,24256,24260,24265,24266,24270,24278,24280,24292,24317,24320,24328,24329,24333,24334,24338,24352,24357,24359,24360,24370,24375,24377,24378,24383,24397,24398,24400,24404,24410,24411,24422,24423,24426,24431,24434,24444,24445,24456,24469,24470,24474,24483,24489,24490,24491,24499,24505,24508,24509,24520,24528,24529,24533,24535,24547,24550,24557,24559,24561,24563,24565,24570,24572,24576,24577,24588,24591,24592,24594,24601,24602,24606,24608,24609,24610,24612,24614,24615,24617,24619,24620,24624,24625,24626,24627,24628,24630,24631,24636,24638,24639,24640,24644,24646,24648,24657,24666,24669,24676,24678,24680,24687,24688,24689,24699,24702,24717,24722,24724,24726,24728,24729,24730,24731,24732,24734,24735,24740,24745,24748,24749,24754,24756,24758,24760,24761,24765,24773,24774,24775,24783,24785,24792,24798,24800,24801,24806,24809,24815,24816,24817,24818,24822,24824,24825,24828,24829,24830,24831,24832,24833,24835,24837,24838,24839,24840,24841,24842,24849,24851,24857,24859,24862,24863,24865,24866,24870,24873,24879,24881,24882,24889,24890,24893,24899,24901,24904,24906,24915,24917,24919,24922,24927,24931,24932,24949,24950,24957,24973,24974,24977,24979,24990,24992,25008,25013,25017,25020,25026,25034,25036,25037,25038,25039,25040,25041,25042,25044,25046,25064,25084,25087,25088,25093,25101,25102,25103,25104,25105,25106,25108,25109,25110,25111,25112,25113,25115,25117,25122,25123,25129,25131,25140,25141,25142,25143,25147,25148,25152,25153,25154,25156,25157,25158,25176,25185,25186,25187,25192,25194,25195,25196,25197,25198,25199,25201,25204,25207,25209,25211,25215,25216,25219,25223,25225,25226,25231,25234,25235,25236,25237,25238,25239,25240,25241,25242,25243,25245,25249,25254,25255,25256,25257,25258,25259,25260,25264,25266,25268,25269,25270,25272,25273,25275,25277,25278,25279,25280,25281,25282,25283,25285,25287,25290,25291,25292,25293,25295,25296,25297,25299,25301,25302,25307,25308,25309,25310,25312,25313,25314,25315,25317,25320,25321,25322,25324,25325,25326,25328,25329,25333,25335,25338,25342,25343,25344,25346,25347,25348,25350,25352,25355,25356,25358,25359,25360,25361,25362,25363,25365,25368,25370,25371,25373,25375,25379,25380,25381,25383,25389,25390,25391,25392,25393,25394,25395,25396,25397,25400,25401,25403,25404,25405,25407,25416,25419,25420,25421,25422,25423,25424,25425,25427,25432,25433,25434,25439,25442,25443,25444,25450,25451,25452,25453,25458,25461,25463,25464,25467,25468,25469,25470,25472,25473,25474,25475,25479,25481,25484,25486,25487,25489,25498,25500,25501,25504,25506,25507,25509,25513,25515,25516,25517,25519,25524,25525,25526,25528,25530,25532,25534,25536,25541,25546,25553,25557,25560,25565,25568,25569,25578,25579,25587,25589,25591,25599,25602,25605,25608,25609,25610,25613,25615,25616,25617,25618,25619,25620,25621,25623,25626,25627,25634,25635,25637,25639,25640,25642,25645,25647,25650,25651,25652,25654,25657,25658,25666,25668,25671,25673,25676,25680,25688,25689,25691,25692,25694,25695,25697,25702,25703,25704,25707,25709,25710,25711,25712,25714,25715,25716,25717,25719,25723,25724,25725,25727,25728,25729,25739,25740,25742,25744,25745,25747,25750,25753,25757,25763,25764,25765,25767,25768,25773,25777,25778,25782,25784,25785,25788,25789,25790,25791,25792,25793,25795,25796,25797,25802,25803,25804,25806,25810,25811,25814,25816,25817,25818,25819,25820,25824,25827,25828,25830,25833,25834,25835,25838,25839,25842,25846,25849,25854,25859,25860,25863,25865,25867,25871,25873,25874,25877,25888,25889,25890,25891,25892,25895,25896,25897,25898,25899,25902,25903,25904,25907,25908,25911,25912,25913,25915,25916,25918,25919,25920,25921,25922,25924,25931,25932,25934,25935,25937,25938,25939,25940,25941,25943,25944,25945,25946,25947,25948,25952,25953,25956,25957,25958,25959,25960,25962,25963,25967,25968,25969,25970,25971,25973,25974,25975,25976,25979,25982,25984,25990,25991,25992,25993,25996,26001,26003,26007,26008,26009,26010,26012,26015,26022,26027,26028,26032,26033,26035,26039,26040,26041,26056,26070,26082,26083,26086,26088,26097,26101,26104,26112,26116,26118,26119,26121,26138,26139,26141,26143,26149,26150,26156,26160,26162,26170,26187,26188,26195,26199,26207,26212,26215,26217,26219,26223,26227,26239,26244,26245,26246,26257,26260,26261,26263,26267,26268,26269,26273,26277,26280,26292,26296,26297,26308,26318,26328,26330,26334,26335,26337,26338,26340,26342,26346,26355,26357,26359,26367,26369,26372,26382,26383,26384,26386,26387,26388,26390,26391,26392,26395,26397,26398,26416,26421,26426,26427,26431,26436,26440,26449,26451,26454,26455,26457,26461,26466,26468,26469,26471,26477,26478,26481,26483,26486,26487,26493,26494,26501,26503,26519,26522,26524,26525,26527,26528,26533,26536,26541,26543,26553,26560,26561,26564,26565,26569,26572,26574,26578,26580,26582,26583,26586,26588,26590,26594,26596,26600,26603,26604,26613,26617,26624,26631,26637,26650,26653,26655,26658,26660,26666,26678,26685,26687,26689,26694,26714,26718,26721,26723,26725,26726,26730,26731,26733,26736,26737,26739,26746,26747,26748,26762,26772,26779,26784,26787,26790,26792,26795,26799,26800,26801,26803,26807,26808,26813,26821,26824,26825,26834,26837,26838,26839,26840,26841,26843,26844,26848,26850,26854,26858,26863,26864,26866,26868,26871,26878,26884,26891,26892,26898,26899,26902,26904,26906,26910,26916,26917,26918,26919,26923,26928,26930,26954,26955,26956,26961,26962,26963,26975,26983,26986,26987,26991,26992,26993,26996,26997,27000,27001,27002,27003,27007,27008,27010,27011,27014,27019,27020,27023,27026,27027,27035,27036,27037,27041,27043,27045,27046,27054,27057,27058,27060,27062,27064,27065,27066,27067,27068,27069,27071,27072,27073,27075,27076,27078,27080,27081,27082,27083,27084,27086,27088,27091,27092,27093,27098,27099,27102,27103,27105,27109,27110,27117,27118,27122,27127,27128,27130,27131,27133,27137,27138,27139,27141,27143,27145,27147,27148,27149,27158,27163,27165,27170,27171,27173,27176,27177,27178,27179,27181,27183,27185,27187,27188,27189,27190,27192,27194,27196,27200,27202,27205,27206,27207,27208,27209,27210,27211,27212,27213,27215,27216,27217,27219,27221,27223,27224,27226,27227,27229,27231,27233,27235,27237,27238,27239,27240,27241,27242,27243,27245,27246,27248,27249,27252,27253,27254,27255,27256,27257,27258,27259,27260,27263,27266,27268,27269,27273,27275,27276,27278,27280,27281,27282,27283,27284,27285,27293,27308,27311,27314,27315,27316,27317,27319,27322,27323,27325,27327,27329,27332,27333,27334,27335,27336,27338,27339,27340,27342,27343,27344,27345,27346,27347,27350,27351,27352,27353,27354,27355,27356,27357,27358,27359,27360,27361,27362,27363,27364,27367,27368,27370,27371,27373,27375,27376,27377,27378,27387,27391,27392,27396,27399,27404,27405,27406,27407,27408,27410,27411,27412,27413,27414,27415,27416,27418,27419,27425,27426,27427,27428,27433,27434,27437,27441,27442,27446,27447,27448,27449,27454,27455,27473,27475,27476,27477,27478,27479,27480,27482,27483,27484,27487,27489,27491,27493,27495,27498,27499,27501,27502,27508,27509,27510,27511,27512,27514,27518,27519,27520,27521,27523,27524,27525,27528,27529,27531,27533,27536,27537,27538,27539,27541,27544,27545,27555,27557,27558,27561,27562,27563,27565,27566,27569,27571,27572,27574,27575,27576,27577,27578,27581,27583,27584,27586,27587,27588,27589,27590,27592,27593,27594,27595,27598,27599,27600,27602,27604,27606,27607,27608,27612,27613,27615,27616,27618,27619,27620,27624,27627,27628,27630,27632,27633,27634,27635,27636,27637,27638,27639,27640,27641,27643,27644,27660,27663,27664,27665,27667,27669,27670,27671,27672,27673,27674,27676,27677,27678,27679,27680,27681,27682,27684,27685,27689,27691,27695,27696,27698,27699,27701,27703,27704,27706,27707,27710,27712,27713,27714,27715,27716,27718,27721,27726,27727,27729,27730,27731,27732,27733,27734,27735,27736,27738,27740,27741,27742,27743,27744,27745,27746,27747,27749,27750,27751,27753,27754,27762,27763,27764,27766,27768,27770,27771,27773,27776,27778,27779,27783,27785,27786,27787,27791,27793,27794,27795,27796,27798,27800,27802,27803,27805,27806,27807,27808,27809,27810,27815,27816,27817,27818,27821,27824,27837,27838,27847,27848,27851,27852,27855,27856,27857,27862,27864,27866,27867,27868,27869,27870,27871,27873,27875,27876,27881,27882,27883,27885,27888,27890,27891,27892,27893,27894,27896,27897,27898,27899,27901,27902,27903,27905,27906,27907,27910,27915,27916,27918,27920,27921,27922,27923,27924,27929,27942,27943,27947,27964,27965,27967,27970,27972,27987,27995,27996,28010,28012,28013,28020,28025,28026,28027,28042,28045,28050,28051,28052,28055,28058,28060,28063,28067,28076,28078,28079,28085,28086,28090,28091,28093,28094,28097,28099,28100,28105,28107,28108,28109,28111,28114,28116,28121,28122,28124,28125,28126,28127,28129,28133,28139,28140,28141,28142,28143,28144,28146,28150,28161,28165,28168,28173,28176,28177,28182,28185,28186,28194,28198,28202,28203,28205,28208,28209,28215,28216,28221,28225,28226,28227,28229,28231,28232,28237,28239,28249,28250,28251,28267,28268,28269,28270,28278,28281,28282,28284,28285,28290,28295,28303,28304,28308,28311,28312,28316,28317,28318,28323,28326,28328,28332,28333,28336,28337,28353,28355,28356,28361,28362,28373,28375,28379,28381,28386,28387,28393,28400,28404,28406,28408,28409,28410,28414,28415,28418,28420,28422,28425,28433,28435,28436,28437,28439,28440,28443,28451,28452,28457,28465,28467,28480,28481,28484,28485,28488,28489,28490,28491,28493,28494,28495,28496,28497,28498,28499,28501,28502,28512,28515,28516,28519,28520,28521,28522,28523,28524,28525,28526,28527,28528,28529,28530,28534,28535,28536,28539,28555,28556,28557,28563,28564,28565,28568,28571,28573,28578,28580,28587,28594,28595,28596,28597,28602,28603,28605,28606,28607,28612,28615,28616,28617,28621,28628,28632,28634,28635,28638,28640,28641,28642,28643,28644,28645,28646,28652,28653,28654,28655,28658,28661,28665,28666,28667,28671,28673,28675,28676,28677,28678,28679,28680,28681,28682,28683,28684,28692,28693,28698,28700,28701,28702,28706,28707,28708,28713,28716,28719,28724,28726,28728,28730,28731,28732,28733,28735,28738,28741,28745,28746,28753,28756,28757,28758,28768,28769,28772,28774,28775,28777,28779,28780,28781,28782,28783,28784,28786,28787,28788,28791,28793,28806,28812,28813,28818,28821,28823,28825,28829,28834,28838,28840,28845,28847,28848,28857,28858,28859,28862,28864,28866,28871,28872,28877,28882,28885,28888,28893,28895,28899,28908,28910,28911,28912,28913,28914,28923,28926,28929,28933,28943,28945,28948,28949,28950,28951,28954,28959,28962,28964,28966,28971,28972,28973,28981,28984,28986,28988,28992,28995,29001,29010,29027,29028,29037,29038,29041,29049,29050,29052,29068,29072,29076,29077,29079,29080,29083,29085,29087,29090,29092,29093,29098,29101,29110,29113,29114,29118,29119,29120,29122,29125,29127,29131,29132,29135,29137,29138,29140,29144,29149,29151,29154,29156,29157,29159,29165,29172,29173,29177,29178,29179,29180,29181,29184,29186,29192,29194,29196,29197,29198,29202,29233,29242,29271,29279,29281,29283,29287,29292,29295,29300,29304,29307,29312,29315,29317,29336,29337,29358,29373,29376,29378,29383,29385,29389,29399,29409,29410,29413,29415,29416,29418,29422,29433,29434,29439,29452,29454,29457,29460,29461,29462,29464,29486,29491,29498,29511,29525,29531,29542,29586,29587,29596,29601,29602,29612,29613,29616,29622,29625,29629,29633,29635,29644,29662,29674,29677,29681,29682,29683,29684,29690,29691,29692,29694,29701,29704,29705,29710,29713,29728,29730,29731,29736,29738,29741,29746,29748,29754,29755,29767,29768,29769,29771,29774,29776,29787,29790,29794,29796,29797,29799,29814,29819,29832,29843,29847,29849,29850,29851,29854,29858,29861,29863,29865,29866,29867,29874,29875,29878,29882,29887,29890,29893,29895,29907,29908,29909,29927,29932,29937,29947,29949,29950,29952,29954,29956,29960,29969,29971,29974,29975,29976,29983,29985,29986,29999,30001,30005,30012,30013,30027,30029,30044,30052,30053,30055,30056,30066,30067,30068,30070,30071,30072,30083,30085,30088,30092,30093,30098,30105,30108,30110,30111,30112,30116,30117,30126,30128,30131,30132,30138,30145,30148,30151,30160,30165,30166,30171,30172,30173,30178,30188,30207,30208,30218,30220,30222,30223,30225,30238,30239,30245,30257,30260,30261,30263,30270,30271,30272,30275,30276,30279,30280,30281,30288,30291,30295,30299,30302,30303,30304,30307,30308,30309,30313,30316,30327,30333,30336,30337,30339,30343,30348,30351,30353,30366,30381,30382,30386,30394,30399,30403,30406,30408,30409,30413,30422,30433,30436,30438,30439,30442,30452,30453,30454,30460,30462,30463,30470,30475,30484,30485,30486,30492,30494,30501,30509,30510,30512,30516,30520,30522,30529,30530,30532,30535,30540,30543,30547,30552,30555,30561,30567,30581,30591,30596,30621,30644,30669,30670,30672,30673,30677,30680,30681,30682,30686,30689,30692,30695,30696,30711,30726,30741,30863,30939,31029,31043,31061,31095]]],["+",[46,43,[[39,11,9,0,9,[[941,5,3,0,3],[944,1,1,3,4],[949,1,1,4,5],[950,1,1,5,6],[954,2,2,6,8],[955,1,1,8,9]]],[40,2,2,9,11,[[966,1,1,9,10],[970,1,1,10,11]]],[41,5,5,11,16,[[981,1,1,11,12],[982,2,2,12,14],[988,1,1,14,15],[989,1,1,15,16]]],[42,7,7,16,23,[[1003,1,1,16,17],[1005,2,2,17,19],[1007,1,1,19,20],[1013,1,1,20,21],[1014,2,2,21,23]]],[43,9,9,23,32,[[1019,1,1,23,24],[1025,1,1,24,25],[1034,2,2,25,27],[1035,1,1,27,28],[1038,1,1,28,29],[1039,1,1,29,30],[1041,1,1,30,31],[1042,1,1,31,32]]],[44,6,6,32,38,[[1046,1,1,32,33],[1049,1,1,33,34],[1058,2,2,34,36],[1059,2,2,36,38]]],[45,3,2,38,40,[[1070,1,1,38,39],[1076,2,1,39,40]]],[49,1,1,40,41,[[1106,1,1,40,41]]],[58,1,1,41,42,[[1147,1,1,41,42]]],[61,1,1,42,43,[[1162,1,1,42,43]]]],[23547,23561,23562,23686,23834,23877,24114,24120,24150,24639,24785,25321,25371,25373,25642,25654,26340,26455,26457,26572,26779,26795,26800,26975,27192,27537,27541,27583,27701,27731,27787,27818,27947,28025,28267,28278,28282,28285,28555,28757,29464,30316,30621]]],["-",[110,110,[[39,31,31,0,31,[[934,1,1,0,1],[937,1,1,1,2],[941,6,6,2,8],[942,1,1,8,9],[944,1,1,9,10],[949,2,2,10,12],[950,2,2,12,14],[951,1,1,14,15],[952,1,1,15,16],[953,6,6,16,22],[954,1,1,22,23],[955,7,7,23,30],[956,1,1,30,31]]],[40,9,9,31,40,[[961,1,1,31,32],[962,2,2,32,34],[963,2,2,34,36],[965,2,2,36,38],[966,1,1,38,39],[971,1,1,39,40]]],[41,16,16,40,56,[[978,1,1,40,41],[979,1,1,41,42],[980,3,3,42,45],[981,3,3,45,48],[982,1,1,48,49],[983,1,1,49,50],[984,2,2,50,52],[992,1,1,52,53],[994,2,2,53,55],[996,1,1,55,56]]],[42,16,16,56,72,[[998,1,1,56,57],[1000,1,1,57,58],[1002,2,2,58,60],[1004,3,3,60,63],[1006,1,1,63,64],[1008,4,4,64,68],[1012,2,2,68,70],[1016,1,1,70,71],[1017,1,1,71,72]]],[43,10,10,72,82,[[1019,1,1,72,73],[1022,1,1,73,74],[1025,1,1,74,75],[1027,1,1,75,76],[1035,1,1,76,77],[1036,2,2,77,79],[1038,1,1,79,80],[1042,1,1,80,81],[1045,1,1,81,82]]],[44,5,5,82,87,[[1046,1,1,82,83],[1053,1,1,83,84],[1054,1,1,84,85],[1059,1,1,85,86],[1061,1,1,86,87]]],[45,9,9,87,96,[[1065,1,1,87,88],[1071,2,2,88,90],[1075,2,2,90,92],[1076,1,1,92,93],[1077,3,3,93,96]]],[46,5,5,96,101,[[1079,1,1,96,97],[1081,1,1,97,98],[1082,1,1,98,99],[1085,1,1,99,100],[1086,1,1,100,101]]],[47,1,1,101,102,[[1096,1,1,101,102]]],[49,2,2,102,104,[[1104,1,1,102,103],[1106,1,1,103,104]]],[56,1,1,104,105,[[1132,1,1,104,105]]],[58,3,3,105,108,[[1146,2,2,105,107],[1147,1,1,107,108]]],[65,2,2,108,110,[[1167,1,1,108,109],[1185,1,1,109,110]]]],[23309,23395,23544,23550,23567,23576,23577,23578,23615,23674,23830,23847,23901,23909,23932,23965,24019,24027,24029,24030,24034,24046,24087,24150,24170,24173,24176,24178,24179,24194,24198,24400,24444,24445,24469,24489,24557,24561,24625,24857,25176,25238,25257,25258,25281,25320,25321,25361,25389,25423,25487,25517,25811,25892,25931,26001,26104,26187,26269,26328,26382,26387,26392,26494,26586,26596,26613,26624,26736,26737,26868,26917,26962,27075,27208,27275,27558,27604,27606,27689,27808,27906,27942,28142,28161,28281,28337,28435,28594,28596,28684,28708,28774,28788,28791,28793,28834,28872,28885,28943,28971,29194,29409,29454,29956,30271,30275,30308,30711,31029]]],["Also",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25467]]],["And",[943,918,[[39,130,128,0,128,[[929,15,15,0,15],[930,3,3,15,18],[931,3,3,18,21],[932,3,3,21,24],[933,2,2,24,26],[934,1,1,26,27],[935,1,1,27,28],[936,6,6,28,34],[937,1,1,34,35],[938,4,4,35,39],[939,2,2,39,41],[940,2,2,41,43],[941,2,2,43,45],[942,8,8,45,53],[943,5,5,53,58],[944,4,4,58,62],[945,5,5,62,67],[946,3,3,67,70],[947,5,5,70,75],[948,6,6,75,81],[949,9,9,81,90],[950,6,6,90,96],[951,1,1,96,97],[952,4,4,97,101],[953,4,4,101,105],[954,8,8,105,113],[955,13,12,113,125],[956,4,3,125,128]]],[40,86,82,128,210,[[957,4,4,128,132],[960,4,4,132,136],[961,2,2,136,138],[962,3,2,138,140],[963,2,2,140,142],[964,6,5,142,147],[965,4,4,147,151],[966,15,14,151,165],[967,4,4,165,169],[968,6,5,169,174],[969,5,5,174,179],[970,13,13,179,192],[971,15,15,192,207],[972,3,3,207,210]]],[41,279,272,210,482,[[973,12,12,210,222],[974,6,6,222,228],[975,4,4,228,232],[976,8,7,232,239],[977,7,7,239,246],[978,11,11,246,257],[979,14,14,257,271],[980,19,17,271,288],[981,22,21,288,309],[982,11,11,309,320],[983,11,11,320,331],[984,12,12,331,343],[985,6,6,343,349],[986,4,4,349,353],[987,9,9,353,362],[988,10,9,362,371],[989,6,6,371,377],[990,18,18,377,395],[991,11,11,395,406],[992,7,7,406,413],[993,10,10,413,423],[994,24,23,423,446],[995,25,24,446,470],[996,12,12,470,482]]],[42,64,63,482,545,[[997,1,1,482,483],[998,3,3,483,486],[999,2,2,486,488],[1000,3,3,488,491],[1001,2,2,491,493],[1002,9,9,493,502],[1003,2,2,502,504],[1004,8,8,504,512],[1005,3,3,512,515],[1006,3,3,515,518],[1007,5,5,518,523],[1008,3,3,523,526],[1011,1,1,526,527],[1012,1,1,527,528],[1013,2,2,528,530],[1014,6,6,530,536],[1015,6,5,536,541],[1017,4,4,541,545]]],[43,283,273,545,818,[[1018,1,1,545,546],[1019,7,7,546,553],[1020,6,6,553,559],[1021,7,7,559,566],[1022,11,10,566,576],[1023,2,2,576,578],[1024,5,5,578,583],[1025,13,11,583,594],[1026,20,18,594,612],[1027,8,7,612,619],[1028,9,9,619,628],[1029,12,12,628,640],[1030,11,11,640,651],[1031,7,7,651,658],[1032,9,9,658,667],[1033,15,15,667,682],[1034,7,7,682,689],[1035,10,10,689,699],[1036,16,15,699,714],[1037,15,15,714,729],[1038,19,18,729,747],[1039,14,13,747,760],[1040,14,14,760,774],[1041,7,7,774,781],[1042,5,5,781,786],[1043,5,4,786,790],[1044,17,17,790,807],[1045,11,11,807,818]]],[44,20,20,818,838,[[1047,1,1,818,819],[1050,4,4,819,823],[1053,5,5,823,828],[1054,1,1,828,829],[1055,1,1,829,830],[1056,3,3,830,833],[1059,1,1,833,834],[1060,3,3,834,837],[1061,1,1,837,838]]],[45,22,21,838,859,[[1062,1,1,838,839],[1064,1,1,839,840],[1065,1,1,840,841],[1067,1,1,841,842],[1068,2,2,842,844],[1069,1,1,844,845],[1070,2,2,845,847],[1072,2,1,847,848],[1073,2,2,848,850],[1074,1,1,850,851],[1075,1,1,851,852],[1076,4,4,852,856],[1077,3,3,856,859]]],[46,11,11,859,870,[[1078,1,1,859,860],[1080,1,1,860,861],[1082,1,1,861,862],[1083,2,2,862,864],[1084,1,1,864,865],[1085,3,3,865,868],[1086,1,1,868,869],[1089,1,1,869,870]]],[47,11,11,870,881,[[1091,1,1,870,871],[1092,2,2,871,873],[1093,4,4,873,877],[1094,1,1,877,878],[1095,2,2,878,880],[1096,1,1,880,881]]],[48,2,2,881,883,[[1100,2,2,881,883]]],[50,2,2,883,885,[[1108,1,1,883,884],[1109,1,1,884,885]]],[51,3,3,885,888,[[1113,1,1,885,886],[1115,2,2,886,888]]],[52,3,3,888,891,[[1118,3,3,888,891]]],[53,4,4,891,895,[[1119,1,1,891,892],[1123,1,1,892,893],[1124,2,2,893,895]]],[54,3,3,895,898,[[1126,2,2,895,897],[1128,1,1,897,898]]],[55,1,1,898,899,[[1131,1,1,898,899]]],[57,9,9,899,908,[[1133,1,1,899,900],[1135,1,1,900,901],[1138,1,1,901,902],[1139,1,1,902,903],[1141,2,2,903,905],[1143,1,1,905,906],[1144,1,1,906,907],[1145,1,1,907,908]]],[58,2,2,908,910,[[1147,1,1,908,909],[1148,1,1,909,910]]],[59,2,2,910,912,[[1151,1,1,910,911],[1154,1,1,911,912]]],[60,3,3,912,915,[[1156,3,3,912,915]]],[61,1,1,915,916,[[1163,1,1,915,916]]],[64,2,2,916,918,[[1166,2,2,916,918]]]],[23147,23148,23149,23150,23151,23152,23153,23154,23155,23156,23157,23158,23159,23160,23165,23174,23182,23190,23196,23202,23207,23227,23229,23231,23235,23263,23311,23319,23350,23356,23366,23375,23377,23378,23407,23424,23428,23429,23438,23466,23471,23500,23514,23545,23546,23605,23612,23614,23618,23622,23625,23626,23628,23647,23649,23660,23667,23671,23679,23686,23688,23690,23708,23711,23720,23722,23724,23744,23751,23757,23766,23771,23779,23786,23790,23794,23796,23798,23803,23813,23823,23832,23834,23835,23837,23841,23850,23851,23856,23860,23878,23883,23884,23891,23899,23911,23930,23959,23960,23963,23976,24010,24014,24016,24018,24069,24072,24077,24080,24104,24111,24125,24127,24133,24135,24136,24140,24145,24152,24161,24164,24168,24175,24184,24190,24199,24200,24204,24221,24243,24247,24256,24328,24333,24338,24359,24378,24398,24422,24431,24483,24491,24505,24509,24520,24528,24529,24547,24550,24559,24576,24591,24592,24606,24608,24610,24612,24614,24615,24617,24620,24624,24627,24638,24640,24644,24646,24648,24669,24676,24687,24689,24699,24702,24722,24724,24732,24735,24754,24758,24760,24765,24773,24774,24798,24800,24801,24806,24809,24816,24818,24824,24828,24830,24833,24838,24839,24840,24841,24842,24851,24859,24862,24863,24865,24870,24873,24879,24890,24893,24899,24901,24904,24915,24917,24919,24922,24931,24932,24949,24957,24973,24974,24977,24979,24990,25013,25020,25034,25038,25039,25040,25064,25084,25087,25101,25104,25105,25106,25108,25110,25117,25123,25140,25141,25143,25147,25148,25152,25153,25154,25156,25157,25158,25185,25187,25192,25197,25198,25199,25201,25211,25216,25219,25226,25231,25235,25237,25238,25243,25245,25249,25254,25255,25259,25266,25269,25270,25272,25275,25277,25285,25291,25292,25293,25296,25297,25299,25307,25309,25312,25313,25314,25315,25322,25324,25329,25338,25342,25343,25344,25348,25350,25352,25355,25358,25360,25362,25363,25368,25370,25380,25381,25390,25391,25393,25394,25395,25400,25404,25407,25419,25421,25424,25432,25434,25442,25443,25444,25451,25458,25463,25470,25472,25473,25474,25475,25481,25484,25498,25501,25506,25513,25526,25528,25530,25532,25534,25541,25557,25560,25568,25578,25591,25599,25602,25605,25609,25615,25616,25617,25619,25621,25626,25627,25634,25637,25640,25642,25650,25651,25657,25666,25668,25671,25673,25688,25689,25691,25694,25695,25697,25703,25707,25709,25711,25712,25714,25715,25717,25723,25724,25725,25728,25729,25739,25740,25742,25744,25750,25753,25763,25764,25765,25767,25768,25782,25784,25795,25796,25804,25819,25820,25827,25828,25833,25834,25839,25842,25846,25854,25860,25863,25873,25874,25877,25888,25889,25895,25897,25898,25899,25902,25904,25907,25911,25915,25918,25919,25921,25922,25924,25931,25932,25934,25935,25937,25938,25940,25943,25945,25946,25947,25948,25953,25957,25958,25959,25960,25962,25967,25969,25970,25971,25973,25974,25979,25984,25990,25991,25993,25996,26008,26009,26010,26022,26027,26032,26033,26035,26039,26041,26086,26097,26101,26112,26139,26143,26160,26195,26207,26215,26223,26260,26261,26263,26267,26268,26273,26292,26296,26297,26359,26372,26383,26384,26390,26392,26416,26426,26427,26431,26454,26477,26478,26486,26501,26503,26560,26564,26565,26574,26578,26594,26600,26603,26726,26730,26762,26772,26787,26790,26792,26800,26803,26807,26839,26841,26844,26863,26864,26904,26906,26910,26923,26930,26954,26956,26961,26991,26992,26993,26996,27000,27001,27007,27008,27011,27019,27023,27027,27036,27045,27046,27054,27058,27064,27065,27066,27067,27071,27072,27073,27080,27086,27099,27102,27109,27118,27122,27137,27139,27176,27177,27178,27187,27194,27202,27206,27207,27210,27212,27213,27215,27217,27219,27221,27223,27224,27226,27227,27233,27239,27242,27248,27249,27253,27254,27256,27257,27258,27259,27263,27266,27269,27281,27282,27283,27284,27308,27314,27317,27319,27322,27327,27333,27334,27335,27339,27343,27345,27350,27352,27354,27356,27357,27358,27359,27360,27362,27368,27373,27377,27387,27391,27396,27404,27406,27410,27411,27414,27415,27419,27425,27433,27437,27441,27442,27446,27448,27449,27455,27475,27478,27479,27482,27483,27487,27491,27493,27498,27499,27501,27502,27508,27509,27510,27514,27518,27519,27521,27523,27525,27529,27531,27533,27537,27538,27555,27561,27562,27563,27565,27569,27571,27575,27576,27581,27584,27586,27587,27588,27592,27593,27595,27599,27600,27602,27608,27613,27615,27616,27618,27620,27627,27628,27630,27632,27633,27634,27635,27636,27638,27639,27640,27643,27644,27663,27664,27665,27669,27671,27672,27673,27674,27676,27678,27679,27681,27682,27684,27685,27691,27695,27698,27699,27704,27706,27710,27712,27713,27714,27715,27716,27718,27721,27726,27727,27729,27732,27735,27736,27738,27741,27743,27744,27745,27746,27747,27750,27754,27762,27764,27768,27770,27771,27778,27785,27791,27793,27794,27802,27803,27809,27810,27816,27837,27838,27847,27852,27856,27857,27862,27867,27868,27870,27871,27873,27875,27885,27888,27890,27892,27893,27894,27896,27897,27901,27902,27903,27907,27910,27915,27916,27920,27922,27924,27929,27965,28050,28051,28052,28058,28126,28133,28139,28143,28144,28165,28203,28215,28226,28232,28303,28312,28317,28332,28356,28379,28433,28439,28481,28497,28522,28529,28563,28565,28634,28653,28655,28678,28713,28726,28732,28735,28746,28779,28780,28782,28806,28845,28895,28913,28914,28923,28950,28951,28954,28964,29037,29079,29083,29085,29110,29114,29119,29131,29137,29173,29186,29197,29295,29304,29498,29531,29602,29633,29644,29682,29683,29692,29710,29776,29790,29796,29832,29851,29882,29937,29969,30013,30055,30071,30108,30110,30208,30239,30263,30309,30337,30399,30454,30484,30485,30486,30644,30686,30695]]],["As",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]]],[23411,27364]]],["But",[588,588,[[39,121,121,0,121,[[929,1,1,0,1],[930,2,2,1,3],[931,2,2,3,5],[932,1,1,5,6],[933,7,7,6,13],[934,8,8,13,21],[936,3,3,21,24],[937,9,9,24,33],[938,6,6,33,39],[939,1,1,39,40],[940,10,10,40,50],[941,8,8,50,58],[942,5,5,58,63],[943,8,8,63,71],[944,2,2,71,73],[945,1,1,73,74],[946,4,4,74,78],[947,5,5,78,83],[948,5,5,83,88],[949,4,4,88,92],[950,5,5,92,97],[951,4,4,97,101],[952,6,6,101,107],[953,4,4,107,111],[954,8,8,111,119],[955,2,2,119,121]]],[40,50,50,121,171,[[957,2,2,121,123],[958,3,3,123,126],[959,2,2,126,128],[960,3,3,128,131],[961,3,3,131,134],[962,3,3,134,137],[963,2,2,137,139],[964,2,2,139,141],[965,4,4,141,145],[966,8,8,145,153],[967,1,1,153,154],[968,2,2,154,156],[969,6,6,156,162],[970,6,6,162,168],[971,3,3,168,171]]],[41,69,69,171,240,[[973,1,1,171,172],[974,2,2,172,174],[975,1,1,174,175],[976,2,2,175,177],[977,4,4,177,181],[978,2,2,181,183],[979,1,1,183,184],[980,4,4,184,188],[981,8,8,188,196],[982,6,6,196,202],[983,5,5,202,207],[984,6,6,207,213],[987,3,3,213,216],[988,1,1,216,217],[989,3,3,217,220],[990,1,1,220,221],[991,2,2,221,223],[992,4,4,223,227],[993,3,3,227,230],[994,4,4,230,234],[995,3,3,234,237],[996,3,3,237,240]]],[42,38,38,240,278,[[997,1,1,240,241],[998,2,2,241,243],[999,1,1,243,244],[1000,2,2,244,246],[1001,4,4,246,250],[1002,1,1,250,251],[1003,4,4,251,255],[1004,2,2,255,257],[1005,1,1,257,258],[1006,3,3,258,261],[1007,2,2,261,263],[1008,2,2,263,265],[1010,1,1,265,266],[1011,1,1,266,267],[1012,1,1,267,268],[1014,2,2,268,270],[1015,3,3,270,273],[1016,4,4,273,277],[1017,1,1,277,278]]],[43,73,73,278,351,[[1019,1,1,278,279],[1020,2,2,279,281],[1021,2,2,281,283],[1022,6,6,283,289],[1023,1,1,289,290],[1024,5,5,290,295],[1025,4,4,295,299],[1026,6,6,299,305],[1027,2,2,305,307],[1028,3,3,307,310],[1029,4,4,310,314],[1030,7,7,314,321],[1031,2,2,321,323],[1032,2,2,323,325],[1033,3,3,325,328],[1034,2,2,328,330],[1035,1,1,330,331],[1036,3,3,331,334],[1038,1,1,334,335],[1039,1,1,335,336],[1040,1,1,336,337],[1041,3,3,337,340],[1042,4,4,340,344],[1043,1,1,344,345],[1044,4,4,345,349],[1045,2,2,349,351]]],[44,29,29,351,380,[[1047,4,4,351,355],[1048,2,2,355,357],[1049,1,1,357,358],[1050,2,2,358,360],[1051,2,2,360,362],[1052,3,3,362,365],[1053,3,3,365,368],[1054,1,1,368,369],[1055,3,3,369,372],[1056,2,2,372,374],[1058,1,1,374,375],[1059,2,2,375,377],[1060,2,2,377,379],[1061,1,1,379,380]]],[45,54,54,380,434,[[1062,3,3,380,383],[1063,4,4,383,387],[1064,1,1,387,388],[1065,2,2,388,390],[1066,2,2,390,392],[1067,1,1,392,393],[1068,11,11,393,404],[1069,4,4,404,408],[1070,1,1,408,409],[1071,1,1,409,410],[1072,6,6,410,416],[1073,5,5,416,421],[1074,1,1,421,422],[1075,4,4,422,426],[1076,7,7,426,433],[1077,1,1,433,434]]],[46,17,17,434,451,[[1078,1,1,434,435],[1079,2,2,435,437],[1080,2,2,437,439],[1081,2,2,439,441],[1085,1,1,441,442],[1086,1,1,442,443],[1087,3,3,443,446],[1088,3,3,446,449],[1089,1,1,449,450],[1090,1,1,450,451]]],[47,19,19,451,470,[[1091,4,4,451,455],[1092,3,3,455,458],[1093,3,3,458,461],[1094,4,4,461,465],[1095,3,3,465,468],[1096,2,2,468,470]]],[48,8,8,470,478,[[1098,2,2,470,472],[1100,3,3,472,475],[1101,2,2,475,477],[1102,1,1,477,478]]],[49,9,9,478,487,[[1103,3,3,478,481],[1104,3,3,481,484],[1106,3,3,484,487]]],[50,2,2,487,489,[[1109,2,2,487,489]]],[51,7,7,489,496,[[1112,1,1,489,490],[1113,1,1,490,491],[1114,2,2,491,493],[1115,3,3,493,496]]],[52,3,3,496,499,[[1117,1,1,496,497],[1118,2,2,497,499]]],[53,11,11,499,510,[[1119,1,1,499,500],[1120,1,1,500,501],[1121,1,1,501,502],[1122,1,1,502,503],[1123,4,4,503,507],[1124,3,3,507,510]]],[54,8,8,510,518,[[1125,1,1,510,511],[1126,3,3,511,514],[1127,3,3,514,517],[1128,1,1,517,518]]],[55,4,4,518,522,[[1129,1,1,518,519],[1130,1,1,519,520],[1131,2,2,520,522]]],[56,2,2,522,524,[[1132,2,2,522,524]]],[57,24,24,524,548,[[1133,2,2,524,526],[1134,3,3,526,529],[1135,2,2,529,531],[1137,1,1,531,532],[1138,2,2,532,534],[1139,2,2,534,536],[1140,1,1,536,537],[1141,2,2,537,539],[1142,4,4,539,543],[1143,2,2,543,545],[1144,1,1,545,546],[1145,2,2,546,548]]],[58,15,15,548,563,[[1146,6,6,548,554],[1147,3,3,554,557],[1148,3,3,557,560],[1149,2,2,560,562],[1150,1,1,562,563]]],[59,5,5,563,568,[[1151,1,1,563,564],[1152,1,1,564,565],[1153,1,1,565,566],[1154,1,1,566,567],[1155,1,1,567,568]]],[60,9,9,568,577,[[1157,5,5,568,573],[1158,4,4,573,577]]],[61,4,4,577,581,[[1159,1,1,577,578],[1160,2,2,578,580],[1161,1,1,580,581]]],[63,1,1,581,582,[[1165,1,1,581,582]]],[64,3,3,582,585,[[1166,3,3,582,585]]],[65,3,3,585,588,[[1168,1,1,585,586],[1186,1,1,586,587],[1187,1,1,587,588]]]],[23164,23188,23191,23199,23206,23213,23256,23262,23266,23268,23271,23273,23278,23285,23288,23289,23297,23299,23302,23305,23315,23357,23367,23372,23385,23387,23391,23392,23401,23404,23410,23413,23415,23423,23434,23436,23440,23447,23450,23475,23491,23492,23495,23496,23504,23513,23517,23525,23528,23537,23547,23555,23559,23562,23564,23565,23568,23596,23603,23613,23621,23624,23627,23636,23638,23642,23646,23651,23656,23657,23659,23687,23695,23712,23733,23743,23752,23755,23773,23776,23784,23788,23792,23802,23805,23814,23817,23818,23852,23854,23863,23864,23877,23879,23890,23903,23906,23923,23926,23929,23931,23970,23977,23993,23994,24000,24005,24012,24017,24020,24026,24059,24062,24083,24086,24110,24112,24117,24124,24149,24152,24245,24260,24266,24270,24280,24292,24317,24329,24352,24357,24370,24397,24404,24411,24423,24456,24474,24490,24529,24533,24565,24570,24572,24577,24594,24602,24612,24619,24626,24628,24630,24631,24666,24680,24688,24726,24728,24731,24734,24740,24749,24756,24783,24785,24815,24822,24825,24831,24835,24837,24906,24992,25017,25044,25088,25093,25122,25129,25131,25142,25154,25195,25225,25260,25268,25287,25295,25314,25321,25328,25333,25344,25346,25356,25360,25373,25375,25392,25396,25403,25405,25420,25422,25425,25427,25433,25464,25468,25479,25504,25507,25509,25608,25610,25618,25645,25658,25676,25680,25704,25745,25778,25785,25793,25802,25814,25835,25838,25849,25890,25896,25912,25920,25956,25963,25975,26007,26012,26028,26056,26116,26119,26141,26170,26188,26227,26244,26246,26257,26277,26338,26357,26367,26369,26387,26421,26461,26483,26493,26519,26533,26569,26590,26617,26694,26725,26731,26801,26824,26834,26840,26858,26878,26891,26892,26898,26902,26963,27010,27014,27037,27041,27060,27062,27078,27080,27081,27098,27105,27128,27133,27143,27163,27171,27185,27188,27196,27216,27231,27237,27238,27240,27243,27256,27273,27285,27311,27315,27316,27352,27353,27354,27361,27370,27376,27392,27399,27407,27412,27413,27416,27418,27447,27480,27501,27511,27520,27528,27536,27572,27594,27619,27624,27703,27732,27740,27776,27783,27796,27805,27815,27817,27821,27848,27869,27876,27882,27898,27918,27921,27964,27967,27970,27972,27996,28012,28027,28055,28067,28085,28090,28097,28099,28114,28125,28127,28141,28186,28194,28208,28209,28215,28227,28270,28290,28295,28326,28328,28362,28386,28387,28393,28404,28408,28409,28410,28420,28436,28452,28465,28467,28484,28493,28496,28498,28499,28502,28515,28516,28519,28520,28523,28527,28530,28535,28536,28539,28555,28595,28603,28605,28615,28616,28628,28632,28641,28645,28652,28654,28665,28675,28681,28702,28706,28716,28728,28731,28738,28741,28745,28756,28775,28784,28818,28825,28829,28848,28859,28862,28866,28948,28962,28973,28984,28988,28992,28995,29001,29038,29049,29068,29072,29076,29080,29087,29092,29098,29113,29125,29127,29135,29140,29149,29157,29177,29180,29184,29192,29202,29233,29242,29279,29287,29292,29307,29317,29358,29373,29378,29383,29410,29413,29415,29452,29460,29461,29525,29542,29587,29596,29612,29616,29622,29625,29629,29674,29681,29691,29704,29728,29746,29754,29767,29769,29771,29774,29794,29797,29799,29819,29843,29847,29850,29863,29866,29867,29875,29895,29909,29927,29932,29952,29960,29971,29976,29983,29985,29986,30001,30012,30044,30052,30053,30070,30088,30098,30112,30116,30145,30160,30165,30172,30178,30188,30220,30257,30260,30270,30272,30276,30280,30288,30291,30299,30302,30313,30327,30333,30336,30343,30353,30366,30399,30408,30439,30453,30475,30501,30510,30512,30516,30522,30529,30530,30532,30540,30547,30555,30561,30596,30672,30682,30689,30692,30741,31043,31061]]],["Even",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28013]]],["For",[13,13,[[41,4,4,0,4,[[984,2,2,0,2],[992,1,1,2,3],[995,1,1,3,4]]],[43,2,2,4,6,[[1024,1,1,4,5],[1034,1,1,5,6]]],[44,2,2,6,8,[[1052,1,1,6,7],[1056,1,1,7,8]]],[45,2,2,8,10,[[1071,1,1,8,9],[1073,1,1,9,10]]],[47,1,1,10,11,[[1095,1,1,10,11]]],[53,1,1,11,12,[[1121,1,1,11,12]]],[65,1,1,12,13,[[1188,1,1,12,13]]]],[25461,25507,25817,25952,27141,27544,28100,28225,28597,28658,29165,29736,31095]]],["He",[3,3,[[41,1,1,0,1,[[975,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]],[44,1,1,2,3,[[1049,1,1,2,3]]]],[25036,27795,28042]]],["Howbeit",[13,13,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[963,1,1,2,3]]],[42,3,3,3,6,[[1002,1,1,3,4],[1007,1,1,4,5],[1012,1,1,5,6]]],[43,5,5,6,11,[[1021,1,1,6,7],[1031,1,1,7,8],[1034,1,1,8,9],[1044,1,1,9,10],[1045,1,1,10,11]]],[45,1,1,11,12,[[1063,1,1,11,12]]],[46,1,1,12,13,[[1088,1,1,12,13]]]],[23721,24383,24470,26280,26536,26739,27026,27434,27557,27881,27905,28400,29010]]],["I",[4,4,[[39,1,1,0,1,[[948,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[47,1,1,2,3,[[1094,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[23806,28683,29151,30677]]],["If",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25416]]],["It",[4,4,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]],[42,2,2,2,4,[[1007,2,2,2,4]]]],[23265,25620,26525,26561]]],["Let",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28707]]],["Moreover",[11,11,[[39,2,2,0,2,[[934,1,1,0,1],[946,1,1,1,2]]],[43,1,1,2,3,[[1028,1,1,2,3]]],[44,2,2,3,5,[[1050,1,1,3,4],[1053,1,1,4,5]]],[45,2,2,5,7,[[1071,1,1,5,6],[1076,1,1,6,7]]],[46,2,2,7,9,[[1078,1,1,7,8],[1085,1,1,8,9]]],[53,1,1,9,10,[[1121,1,1,9,10]]],[60,1,1,10,11,[[1156,1,1,10,11]]]],[23298,23742,27319,28067,28146,28568,28719,28823,28933,29738,30494]]],["Nevertheless",[8,8,[[43,1,1,0,1,[[1044,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[45,3,3,2,5,[[1068,3,3,2,5]]],[46,1,1,5,6,[[1080,1,1,5,6]]],[49,1,1,6,7,[[1103,1,1,6,7]]],[60,1,1,7,8,[[1158,1,1,7,8]]]],[27866,28318,28489,28515,28524,28857,29385,30535]]],["Notwithstanding",[5,5,[[39,1,1,0,1,[[945,1,1,0,1]]],[43,2,2,1,3,[[1032,1,1,1,2],[1041,1,1,2,3]]],[53,1,1,3,4,[[1120,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]]],[23727,27476,27773,29731,29887]]],["Now",[166,166,[[39,21,21,0,21,[[929,2,2,0,2],[930,1,1,2,3],[932,1,1,3,4],[936,1,1,4,5],[938,1,1,5,6],[939,1,1,6,7],[949,1,1,7,8],[950,1,1,8,9],[952,1,1,9,10],[954,6,6,10,16],[955,4,4,16,20],[956,1,1,20,21]]],[40,7,7,21,28,[[957,2,2,21,23],[961,1,1,23,24],[969,2,2,24,26],[971,1,1,26,27],[972,1,1,27,28]]],[41,18,18,28,46,[[973,1,1,28,29],[975,2,2,29,31],[976,1,1,31,32],[977,1,1,32,33],[979,3,3,33,36],[980,2,2,36,38],[981,1,1,38,39],[982,1,1,39,40],[987,1,1,40,41],[990,1,1,41,42],[992,1,1,42,43],[994,1,1,43,44],[995,1,1,44,45],[996,1,1,45,46]]],[42,22,22,46,68,[[997,1,1,46,47],[998,1,1,47,48],[1000,2,2,48,50],[1001,1,1,50,51],[1002,1,1,51,52],[1003,2,2,52,54],[1004,1,1,54,55],[1005,1,1,55,56],[1007,5,5,56,61],[1009,3,3,61,64],[1014,2,2,64,66],[1015,2,2,66,68]]],[43,20,20,68,88,[[1019,2,2,68,70],[1020,1,1,70,71],[1021,1,1,71,72],[1022,1,1,72,73],[1024,1,1,73,74],[1025,1,1,74,75],[1026,1,1,75,76],[1027,1,1,76,77],[1029,2,2,77,79],[1030,3,3,79,82],[1033,1,1,82,83],[1034,2,2,83,85],[1038,1,1,85,86],[1041,1,1,86,87],[1044,1,1,87,88]]],[44,15,15,88,103,[[1046,1,1,88,89],[1048,1,1,89,90],[1049,2,2,90,92],[1051,1,1,92,93],[1052,1,1,93,94],[1053,1,1,94,95],[1056,1,1,95,96],[1060,5,5,96,101],[1061,2,2,101,103]]],[45,22,22,103,125,[[1062,2,2,103,105],[1063,1,1,105,106],[1064,2,2,106,108],[1065,1,1,108,109],[1067,1,1,109,110],[1068,2,2,110,112],[1069,1,1,112,113],[1071,2,2,113,115],[1072,2,2,115,117],[1073,3,3,117,120],[1076,2,2,120,122],[1077,3,3,122,125]]],[46,8,8,125,133,[[1078,1,1,125,126],[1079,1,1,126,127],[1080,1,1,127,128],[1082,1,1,128,129],[1083,1,1,129,130],[1086,1,1,130,131],[1087,1,1,131,132],[1090,1,1,132,133]]],[47,6,6,133,139,[[1091,1,1,133,134],[1093,2,2,134,136],[1094,2,2,136,138],[1095,1,1,138,139]]],[48,2,2,139,141,[[1099,1,1,139,140],[1100,1,1,140,141]]],[49,2,2,141,143,[[1106,2,2,141,143]]],[51,2,2,143,145,[[1113,1,1,143,144],[1115,1,1,144,145]]],[52,5,5,145,150,[[1117,2,2,145,147],[1118,3,3,147,150]]],[53,4,4,150,154,[[1119,2,2,150,152],[1122,1,1,152,153],[1123,1,1,153,154]]],[54,1,1,154,155,[[1127,1,1,154,155]]],[57,9,9,155,164,[[1139,1,1,155,156],[1140,2,2,156,158],[1141,1,1,158,159],[1142,2,2,159,161],[1143,1,1,161,162],[1144,1,1,162,163],[1145,1,1,163,164]]],[58,1,1,164,165,[[1147,1,1,164,165]]],[64,1,1,165,166,[[1166,1,1,165,166]]]],[23162,23166,23170,23221,23363,23419,23461,23844,23897,23989,24060,24071,24074,24102,24113,24123,24144,24174,24183,24191,24206,24229,24231,24375,24729,24745,24832,24882,24950,25026,25046,25103,25111,25196,25207,25234,25256,25283,25308,25401,25613,25710,25816,25865,25982,25992,26088,26118,26162,26199,26212,26267,26330,26342,26386,26471,26524,26528,26541,26553,26580,26631,26653,26658,26799,26825,26850,26866,26955,26986,26997,27035,27083,27127,27190,27252,27276,27338,27355,27363,27375,27405,27489,27524,27539,27667,27786,27864,27943,28010,28026,28045,28076,28111,28125,28221,28308,28311,28316,28333,28336,28353,28361,28373,28375,28406,28418,28422,28451,28480,28488,28512,28528,28573,28578,28602,28617,28635,28638,28661,28730,28768,28777,28781,28786,28821,28838,28858,28882,28911,28966,28972,29050,29077,29118,29122,29132,29159,29181,29271,29281,29457,29462,29601,29635,29662,29677,29684,29690,29694,29701,29713,29748,29768,29861,30068,30093,30105,30111,30151,30171,30173,30223,30261,30304,30696]]],["On",[3,3,[[43,3,3,0,3,[[1027,1,1,0,1],[1039,1,1,1,2],[1040,1,1,2,3]]]],[27268,27734,27766]]],["Or",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24047]]],["So",[15,15,[[39,7,7,0,7,[[936,1,1,0,1],[941,1,1,1,2],[946,1,1,2,3],[948,2,2,3,5],[955,1,1,5,6],[956,1,1,6,7]]],[40,1,1,7,8,[[964,1,1,7,8]]],[42,2,2,8,10,[[1004,1,1,8,9],[1016,1,1,9,10]]],[43,3,3,10,13,[[1021,1,1,10,11],[1024,1,1,11,12],[1036,1,1,12,13]]],[44,1,1,13,14,[[1053,1,1,13,14]]],[45,1,1,14,15,[[1076,1,1,14,15]]]],[23376,23566,23758,23800,23826,24195,24210,24508,26388,26871,27043,27131,27607,28124,28772]]],["Then",[121,121,[[39,18,18,0,18,[[929,2,2,0,2],[940,2,2,2,4],[941,1,1,4,5],[942,1,1,5,6],[943,3,3,6,9],[944,1,1,9,10],[945,2,2,10,12],[946,1,1,12,13],[947,1,1,13,14],[953,2,2,14,16],[954,1,1,16,17],[956,1,1,17,18]]],[40,3,3,18,21,[[966,1,1,18,19],[970,1,1,19,20],[971,1,1,20,21]]],[41,38,38,21,59,[[973,1,1,21,22],[975,1,1,22,23],[979,1,1,23,24],[980,4,4,24,28],[981,3,3,28,31],[983,1,1,31,32],[984,1,1,32,33],[985,3,3,33,36],[986,2,2,36,38],[987,1,1,38,39],[988,2,2,39,41],[989,1,1,41,42],[990,2,2,42,44],[991,1,1,44,45],[992,5,5,45,50],[994,5,5,50,55],[995,3,3,55,58],[996,1,1,58,59]]],[42,3,3,59,62,[[997,1,1,59,60],[1005,1,1,60,61],[1017,1,1,61,62]]],[43,59,59,62,121,[[1019,1,1,62,63],[1020,1,1,63,64],[1022,6,6,64,70],[1023,2,2,70,72],[1024,7,7,72,79],[1025,5,5,79,84],[1026,4,4,84,88],[1027,2,2,88,90],[1028,4,4,90,94],[1029,2,2,94,96],[1030,3,3,96,99],[1031,1,1,99,100],[1032,1,1,100,101],[1033,2,2,101,103],[1034,2,2,103,105],[1035,2,2,105,107],[1036,2,2,107,109],[1038,1,1,109,110],[1039,1,1,110,111],[1040,2,2,111,113],[1041,1,1,113,114],[1042,3,3,114,117],[1043,3,3,117,120],[1044,1,1,120,121]]]],[23163,23168,23503,23536,23591,23630,23648,23658,23665,23678,23704,23717,23754,23785,24024,24032,24079,24211,24609,24817,24840,24927,25037,25201,25264,25269,25278,25280,25302,25317,25347,25450,25500,25525,25536,25541,25565,25569,25589,25623,25647,25652,25716,25719,25747,25788,25792,25806,25818,25824,25867,25871,25916,25918,25934,25939,25944,25969,26003,26082,26466,26918,26987,27002,27068,27069,27076,27084,27088,27093,27103,27110,27117,27130,27145,27148,27149,27158,27173,27181,27189,27200,27205,27211,27229,27235,27241,27255,27280,27293,27323,27329,27332,27336,27340,27352,27371,27378,27408,27427,27454,27484,27512,27541,27545,27566,27574,27589,27598,27677,27731,27751,27753,27779,27798,27806,27818,27824,27851,27855,27891]]],["There",[6,6,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,2,2,1,3,[[985,1,1,1,2],[988,1,1,2,3]]],[42,1,1,3,4,[[999,1,1,3,4]]],[43,2,2,4,6,[[1027,1,1,4,5],[1038,1,1,5,6]]]],[24866,25519,25639,26121,27260,27680]]],["Therefore",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24426]]],["They",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25803]]],["To",[2,2,[[45,2,2,0,2,[[1073,2,2,0,2]]]],[28643,28644]]],["What",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28177]]],["When",[37,37,[[39,14,14,0,14,[[930,4,4,0,4],[936,3,3,4,7],[944,1,1,7,8],[947,1,1,8,9],[954,1,1,9,10],[955,4,4,10,14]]],[40,2,2,14,16,[[958,1,1,14,15],[965,1,1,15,16]]],[41,8,8,16,24,[[977,1,1,16,17],[979,2,2,17,19],[980,3,3,19,22],[994,1,1,22,23],[995,1,1,23,24]]],[42,4,4,24,28,[[1002,1,1,24,25],[1003,1,1,25,26],[1004,1,1,26,27],[1007,1,1,27,28]]],[43,9,9,28,37,[[1022,1,1,28,29],[1024,2,2,29,31],[1028,1,1,31,32],[1029,1,1,32,33],[1035,1,1,33,34],[1036,1,1,34,35],[1037,1,1,35,36],[1039,1,1,36,37]]]],[23172,23178,23179,23183,23346,23355,23361,23685,23787,24064,24130,24148,24153,24186,24265,24563,25115,25204,25215,25273,25279,25290,25913,25941,26318,26337,26391,26527,27092,27147,27170,27325,27347,27577,27590,27637,27730]]],["Wherefore",[2,2,[[39,2,2,0,2,[[934,1,1,0,1],[946,1,1,1,2]]]],[23312,23735]]],["Whereof",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30148]]],["While",[5,5,[[39,3,3,0,3,[[940,1,1,0,1],[950,1,1,1,2],[953,1,1,2,3]]],[41,1,1,3,4,[[981,1,1,3,4]]],[43,1,1,4,5,[[1027,1,1,4,5]]]],[23535,23913,24013,25335,27278]]],["Ye",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29144]]],["Yea",[9,9,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,2,2,1,3,[[1020,1,1,1,2],[1037,1,1,2,3]]],[44,2,2,3,5,[[1059,1,1,3,4],[1060,1,1,4,5]]],[45,1,1,5,6,[[1076,1,1,5,6]]],[54,1,1,6,7,[[1127,1,1,6,7]]],[59,1,1,7,8,[[1155,1,1,7,8]]],[60,1,1,8,9,[[1156,1,1,8,9]]]],[25008,27020,27660,28284,28323,28733,29865,30470,30492]]],["Yet",[5,5,[[39,1,1,0,1,[[941,1,1,0,1]]],[46,1,1,1,2,[[1086,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[23560,28959,29416,30462,30681]]],["also",[9,9,[[41,1,1,0,1,[[985,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]],[43,3,3,2,5,[[1022,1,1,2,3],[1032,1,1,3,4],[1039,1,1,4,5]]],[44,1,1,5,6,[[1054,1,1,5,6]]],[53,1,1,6,7,[[1121,1,1,6,7]]],[54,2,2,7,9,[[1126,1,1,7,8],[1127,1,1,8,9]]]],[25524,26398,27091,27477,27733,28182,29741,29849,29854]]],["and",[266,241,[[39,45,33,0,33,[[929,24,13,0,13],[930,1,1,13,14],[931,1,1,14,15],[933,2,2,15,17],[942,2,2,17,19],[943,1,1,19,20],[944,2,2,20,22],[945,1,1,22,23],[947,1,1,23,24],[949,3,2,24,26],[951,2,2,26,28],[952,1,1,28,29],[953,1,1,29,30],[954,1,1,30,31],[955,2,2,31,33]]],[40,8,8,33,41,[[959,1,1,33,34],[960,2,2,34,36],[962,1,1,36,37],[964,1,1,37,38],[966,1,1,38,39],[967,1,1,39,40],[968,1,1,40,41]]],[41,41,41,41,82,[[975,1,1,41,42],[976,2,2,42,44],[977,1,1,44,45],[978,1,1,45,46],[979,2,2,46,48],[980,1,1,48,49],[981,5,5,49,54],[982,5,5,54,59],[983,3,3,59,62],[984,4,4,62,66],[985,2,2,66,68],[986,1,1,68,69],[987,1,1,69,70],[988,1,1,70,71],[990,2,2,71,73],[991,1,1,73,74],[992,3,3,74,77],[993,1,1,77,78],[994,2,2,78,80],[995,2,2,80,82]]],[42,18,18,82,100,[[999,1,1,82,83],[1001,3,3,83,86],[1002,1,1,86,87],[1005,1,1,87,88],[1008,1,1,88,89],[1009,2,2,89,91],[1010,1,1,91,92],[1012,1,1,92,93],[1014,2,2,93,95],[1015,3,3,95,98],[1017,2,2,98,100]]],[43,36,35,100,135,[[1020,1,1,100,101],[1021,1,1,101,102],[1022,1,1,102,103],[1024,3,3,103,106],[1025,2,2,106,108],[1026,2,2,108,110],[1029,2,2,110,112],[1030,2,2,112,114],[1031,2,2,114,116],[1033,2,2,116,118],[1034,1,1,118,119],[1036,1,1,119,120],[1037,3,2,120,122],[1038,5,5,122,127],[1040,2,2,127,129],[1042,2,2,129,131],[1044,2,2,131,133],[1045,2,2,133,135]]],[44,20,18,135,153,[[1050,1,1,135,136],[1051,2,1,136,137],[1052,1,1,137,138],[1053,2,2,138,140],[1054,2,2,140,142],[1055,4,3,142,145],[1056,3,3,145,148],[1057,2,2,148,150],[1058,1,1,150,151],[1060,1,1,151,152],[1061,1,1,152,153]]],[45,34,30,153,183,[[1062,4,2,153,155],[1064,5,5,155,160],[1065,1,1,160,161],[1068,4,4,161,165],[1071,3,3,165,168],[1072,3,2,168,170],[1073,1,1,170,171],[1074,2,2,171,173],[1075,6,5,173,178],[1076,5,5,178,183]]],[46,11,10,183,193,[[1078,2,2,183,185],[1079,1,1,185,186],[1080,1,1,186,187],[1081,1,1,187,188],[1082,1,1,188,189],[1083,1,1,189,190],[1084,1,1,190,191],[1085,1,1,191,192],[1090,2,1,192,193]]],[47,7,5,193,198,[[1092,2,2,193,195],[1094,3,2,195,197],[1095,2,1,197,198]]],[48,4,2,198,200,[[1100,3,1,198,199],[1101,1,1,199,200]]],[49,4,4,200,204,[[1103,1,1,200,201],[1104,1,1,201,202],[1105,2,2,202,204]]],[53,4,4,204,208,[[1122,1,1,204,205],[1123,2,2,205,207],[1124,1,1,207,208]]],[54,5,5,208,213,[[1125,2,2,208,210],[1126,1,1,210,211],[1128,2,2,211,213]]],[55,1,1,213,214,[[1129,1,1,213,214]]],[56,1,1,214,215,[[1132,1,1,214,215]]],[57,5,5,215,220,[[1135,1,1,215,216],[1139,1,1,216,217],[1142,1,1,217,218],[1143,1,1,218,219],[1144,1,1,219,220]]],[58,5,5,220,225,[[1146,1,1,220,221],[1147,3,3,221,224],[1149,1,1,224,225]]],[59,5,5,225,230,[[1152,1,1,225,226],[1153,2,2,226,228],[1154,1,1,228,229],[1155,1,1,229,230]]],[60,6,5,230,235,[[1156,4,3,230,233],[1157,1,1,233,234],[1158,1,1,234,235]]],[61,2,2,235,237,[[1160,1,1,235,236],[1161,1,1,236,237]]],[64,2,2,237,239,[[1166,2,2,237,239]]],[65,2,2,239,241,[[1176,1,1,239,240],[1180,1,1,240,241]]]],[23146,23147,23148,23149,23150,23151,23152,23153,23154,23156,23157,23158,23159,23177,23196,23255,23256,23616,23620,23669,23686,23697,23702,23775,23858,23861,23926,23942,24006,24023,24121,24149,24155,24320,24357,24360,24434,24528,24601,24648,24678,25026,25102,25103,25113,25194,25209,25236,25282,25309,25320,25326,25333,25335,25379,25397,25401,25403,25405,25442,25452,25453,25486,25489,25507,25516,25546,25553,25579,25605,25645,25702,25728,25757,25790,25791,25810,25863,25903,25908,25953,25968,26156,26219,26239,26245,26308,26451,26583,26650,26660,26689,26746,26803,26813,26839,26843,26854,26899,26919,27003,27057,27069,27138,27147,27165,27183,27209,27224,27257,27344,27353,27367,27375,27418,27426,27495,27508,27555,27612,27630,27641,27665,27670,27696,27698,27703,27740,27749,27800,27821,27883,27899,27916,27923,28051,28090,28100,28133,28146,28173,28176,28198,28202,28205,28216,28226,28229,28249,28250,28268,28326,28355,28375,28386,28414,28415,28418,28420,28433,28440,28490,28491,28494,28527,28571,28578,28587,28603,28621,28646,28666,28667,28679,28693,28701,28702,28706,28732,28753,28757,28758,28774,28812,28813,28840,28858,28864,28888,28912,28929,28945,29052,29090,29101,29138,29156,29179,29283,29337,29376,29418,29434,29439,29754,29776,29787,29799,29814,29819,29847,29874,29878,29893,29947,30005,30066,30166,30207,30218,30281,30295,30303,30307,30351,30413,30438,30439,30463,30470,30484,30485,30486,30509,30532,30552,30591,30673,30680,30863,30939]]],["are",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30520]]],["be",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23435]]],["both",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30126]]],["but",[350,345,[[39,59,58,0,58,[[931,2,2,0,2],[933,4,4,2,6],[935,3,3,6,9],[936,2,2,9,11],[937,3,3,11,14],[938,4,3,14,17],[940,2,2,17,19],[941,6,6,19,25],[943,2,2,25,27],[944,1,1,27,28],[946,1,1,28,29],[947,3,3,29,32],[948,3,3,32,35],[949,4,4,35,39],[950,2,2,39,41],[951,7,7,41,48],[952,2,2,48,50],[953,4,4,50,54],[954,3,3,54,57],[956,1,1,57,58]]],[40,18,18,58,76,[[957,1,1,58,59],[958,1,1,59,60],[960,1,1,60,61],[963,2,2,61,63],[964,1,1,63,64],[965,1,1,64,65],[966,1,1,65,66],[967,1,1,66,67],[968,1,1,67,68],[969,2,2,68,70],[970,3,3,70,73],[971,2,2,73,75],[972,1,1,75,76]]],[41,47,47,76,123,[[975,2,2,76,78],[977,2,2,78,80],[978,2,2,80,82],[979,5,5,82,87],[980,4,4,87,91],[981,6,6,91,97],[982,2,2,97,99],[983,2,2,99,101],[984,2,2,101,103],[986,1,1,103,104],[988,2,2,104,106],[989,2,2,106,108],[990,3,3,108,111],[991,2,2,111,113],[992,2,2,113,115],[993,2,2,115,117],[994,1,1,117,118],[995,3,3,118,121],[996,2,2,121,123]]],[42,43,43,123,166,[[997,1,1,123,124],[998,1,1,124,125],[999,3,3,125,128],[1001,1,1,128,129],[1003,4,4,129,133],[1004,3,3,133,136],[1005,2,2,136,138],[1006,2,2,138,140],[1007,2,2,140,142],[1008,3,3,142,145],[1009,2,2,145,147],[1010,3,3,147,150],[1011,4,4,150,154],[1012,4,4,154,158],[1013,1,1,158,159],[1014,2,2,159,161],[1015,3,3,161,164],[1016,1,1,164,165],[1017,1,1,165,166]]],[43,28,28,166,194,[[1018,1,1,166,167],[1019,1,1,167,168],[1020,1,1,168,169],[1022,1,1,169,170],[1024,1,1,170,171],[1026,3,3,171,174],[1027,1,1,174,175],[1028,1,1,175,176],[1029,4,4,176,180],[1030,1,1,180,181],[1033,1,1,181,182],[1035,2,2,182,184],[1036,1,1,184,185],[1039,1,1,185,186],[1040,3,3,186,189],[1042,1,1,189,190],[1044,2,2,190,192],[1045,2,2,192,194]]],[44,26,26,194,220,[[1047,2,2,194,196],[1048,1,1,196,197],[1049,1,1,197,198],[1050,2,2,198,200],[1051,4,4,200,204],[1052,6,6,204,210],[1053,5,5,210,215],[1054,1,1,215,216],[1056,3,3,216,219],[1061,1,1,219,220]]],[45,44,41,220,261,[[1062,2,2,220,222],[1064,1,1,222,223],[1065,4,2,223,225],[1066,1,1,225,226],[1067,2,2,226,228],[1068,7,7,228,235],[1069,1,1,235,236],[1070,3,3,236,239],[1071,1,1,239,240],[1072,3,3,240,243],[1073,2,2,243,245],[1074,6,5,245,250],[1075,6,6,250,256],[1076,2,2,256,258],[1077,3,3,258,261]]],[46,13,13,261,274,[[1080,1,1,261,262],[1081,2,2,262,264],[1082,1,1,264,265],[1083,1,1,265,266],[1084,1,1,266,267],[1085,2,2,267,269],[1087,3,3,269,272],[1089,2,2,272,274]]],[47,8,8,274,282,[[1092,3,3,274,277],[1093,2,2,277,279],[1094,1,1,279,280],[1095,1,1,280,281],[1096,1,1,281,282]]],[48,4,4,282,286,[[1100,1,1,282,283],[1101,3,3,283,286]]],[49,6,6,286,292,[[1103,1,1,286,287],[1104,1,1,287,288],[1105,3,3,288,291],[1106,1,1,291,292]]],[50,2,2,292,294,[[1107,1,1,292,293],[1108,1,1,293,294]]],[51,1,1,294,295,[[1114,1,1,294,295]]],[53,3,3,295,298,[[1119,1,1,295,296],[1120,1,1,296,297],[1122,1,1,297,298]]],[54,3,3,298,301,[[1126,1,1,298,299],[1127,1,1,299,300],[1128,1,1,300,301]]],[55,2,2,301,303,[[1129,2,2,301,303]]],[56,2,2,303,305,[[1132,2,2,303,305]]],[57,20,20,305,325,[[1133,2,2,305,307],[1135,1,1,307,308],[1136,2,2,308,310],[1138,1,1,310,311],[1139,5,5,311,316],[1141,4,4,316,320],[1142,1,1,320,321],[1144,3,3,321,324],[1145,1,1,324,325]]],[58,3,3,325,328,[[1149,2,2,325,327],[1150,1,1,327,328]]],[59,13,12,328,340,[[1151,2,2,328,330],[1152,5,4,330,334],[1153,3,3,334,337],[1154,3,3,337,340]]],[61,2,2,340,342,[[1160,1,1,340,341],[1161,1,1,341,342]]],[63,1,1,342,343,[[1165,1,1,342,343]]],[64,1,1,343,344,[[1166,1,1,343,344]]],[65,1,1,344,345,[[1168,1,1,344,345]]]],[23203,23204,23247,23253,23256,23267,23319,23331,23333,23365,23369,23393,23394,23416,23430,23439,23445,23520,23521,23550,23551,23569,23571,23577,23587,23641,23653,23675,23744,23770,23779,23788,23808,23815,23823,23839,23855,23858,23870,23880,23886,23921,23922,23934,23936,23943,23945,23946,23979,23992,24017,24037,24041,24054,24065,24078,24095,24212,24223,24278,24334,24469,24499,24535,24588,24636,24657,24717,24730,24748,24761,24775,24792,24829,24849,24889,25041,25042,25109,25140,25186,25187,25223,25239,25240,25241,25242,25255,25283,25297,25301,25310,25320,25325,25359,25361,25362,25365,25383,25439,25444,25469,25515,25587,25635,25645,25652,25668,25692,25703,25727,25773,25777,25789,25797,25830,25859,25891,25944,25960,25976,26015,26040,26070,26104,26138,26149,26150,26217,26334,26335,26346,26355,26395,26436,26440,26468,26481,26487,26522,26536,26543,26582,26588,26604,26637,26666,26678,26685,26687,26714,26718,26721,26723,26733,26746,26747,26748,26784,26808,26821,26837,26838,26863,26884,26916,26928,26983,27002,27082,27141,27223,27224,27245,27269,27323,27342,27346,27351,27357,27408,27484,27576,27578,27600,27713,27742,27743,27763,27807,27894,27896,27905,27915,27970,27987,27995,28027,28060,28063,28078,28079,28085,28091,28093,28094,28100,28105,28109,28116,28121,28122,28126,28129,28140,28168,28216,28231,28237,28355,28373,28381,28425,28437,28443,28457,28480,28485,28501,28502,28515,28521,28524,28525,28526,28528,28557,28564,28565,28580,28606,28607,28612,28638,28640,28671,28673,28676,28677,28678,28679,28682,28683,28692,28698,28700,28724,28769,28783,28787,28788,28847,28871,28877,28888,28910,28926,28949,28954,28972,28981,28986,29028,29041,29083,29093,29101,29120,29122,29154,29172,29196,29300,29312,29315,29336,29389,29416,29422,29433,29434,29452,29491,29511,29613,29705,29730,29755,29849,29858,29890,29907,29908,29949,29954,29974,29975,29999,30027,30029,30056,30067,30072,30083,30085,30092,30117,30128,30131,30132,30138,30222,30225,30238,30245,30343,30348,30366,30386,30394,30403,30406,30409,30422,30433,30436,30442,30452,30460,30462,30567,30581,30669,30682,30726]]],["even",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[28185,29399]]],["for",[9,9,[[39,2,2,0,2,[[933,1,1,0,1],[941,1,1,1,2]]],[40,1,1,2,3,[[972,1,1,2,3]]],[42,2,2,3,5,[[997,1,1,3,4],[1005,1,1,4,5]]],[43,1,1,5,6,[[1025,1,1,5,6]]],[44,1,1,6,7,[[1059,1,1,6,7]]],[45,1,1,7,8,[[1069,1,1,7,8]]],[51,1,1,8,9,[[1112,1,1,8,9]]]],[23271,23560,24881,26083,26469,27179,28303,28534,29586]]],["he",[2,2,[[42,1,1,0,1,[[1005,1,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]]],[26449,28020]]],["howbeit",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28680]]],["men",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29198]]],["neither",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30279]]],["nevertheless",[4,4,[[39,1,1,0,1,[[942,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]]],[23606,25112,29101,30223]]],["notwithstanding",[3,3,[[39,2,2,0,2,[[930,1,1,0,1],[939,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[23191,23470,30309]]],["now",[2,2,[[42,1,1,0,1,[[1015,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]]],[26848,28440]]],["or",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29140]]],["that",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27612]]],["the",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24410]]],["then",[11,11,[[41,2,2,0,2,[[981,1,1,0,1],[984,1,1,1,2]]],[42,1,1,2,3,[[1009,1,1,2,3]]],[44,6,6,3,9,[[1051,1,1,3,4],[1052,2,2,4,6],[1057,1,1,6,7],[1058,1,1,7,8],[1060,1,1,8,9]]],[46,1,1,9,10,[[1083,1,1,9,10]]],[47,1,1,10,11,[[1095,1,1,10,11]]]],[25313,25479,26655,28086,28107,28108,28251,28269,28304,28899,29178]]],["therefore",[2,2,[[45,1,1,0,1,[[1068,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[28495,29950]]],["they",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]]],[23923,24377,27081]]],["though",[2,2,[[46,1,1,0,1,[[1090,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[29050,30381]]],["to",[7,4,[[39,1,1,0,1,[[953,1,1,0,1]]],[45,6,3,1,4,[[1073,6,3,1,4]]]],[24023,28642,28643,28644]]],["truly",[1,1,[[61,1,1,0,1,[[1159,1,1,0,1]]]],[30543]]],["when",[6,6,[[39,1,1,0,1,[[944,1,1,0,1]]],[43,5,5,1,6,[[1026,2,2,1,3],[1031,1,1,3,4],[1032,1,1,4,5],[1041,1,1,5,6]]]],[23680,27246,27253,27428,27473,27794]]],["ye",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26082]]],["yea",[5,5,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[46,1,1,2,3,[[1082,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]],[63,1,1,4,5,[[1165,1,1,4,5]]]],[28150,28556,28893,30208,30670]]],["yet",[16,15,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,1,1,1,2,[[1039,1,1,1,2]]],[44,1,1,2,3,[[1056,1,1,2,3]]],[45,6,6,3,9,[[1063,2,2,3,5],[1064,1,1,5,6],[1068,1,1,6,7],[1073,1,1,7,8],[1076,1,1,8,9]]],[46,3,2,9,11,[[1083,2,1,9,10],[1089,1,1,10,11]]],[50,1,1,11,12,[[1107,1,1,11,12]]],[58,2,2,12,14,[[1147,1,1,12,13],[1149,1,1,13,14]]],[59,1,1,14,15,[[1151,1,1,14,15]]]],[26397,27707,28239,28400,28409,28425,28512,28654,28728,28908,29027,29486,30304,30339,30382]]]]},{"k":"G1162","v":[["*",[19,17,[[41,3,3,0,3,[[973,1,1,0,1],[974,1,1,1,2],[977,1,1,2,3]]],[43,1,1,3,4,[[1018,1,1,3,4]]],[44,1,1,4,5,[[1055,1,1,4,5]]],[46,2,2,5,7,[[1078,1,1,5,6],[1086,1,1,6,7]]],[48,2,1,7,8,[[1102,2,1,7,8]]],[49,4,3,8,11,[[1103,3,2,8,10],[1106,1,1,10,11]]],[53,2,2,11,13,[[1120,1,1,11,12],[1123,1,1,12,13]]],[54,1,1,13,14,[[1125,1,1,13,14]]],[57,1,1,14,15,[[1137,1,1,14,15]]],[58,1,1,15,16,[[1150,1,1,15,16]]],[59,1,1,16,17,[[1153,1,1,16,17]]]],[24906,25010,25140,26937,28189,28811,28970,29355,29365,29380,29448,29717,29768,29812,30037,30370,30436]]],["prayer",[7,7,[[41,1,1,0,1,[[973,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]],[46,2,2,2,4,[[1078,1,1,2,3],[1086,1,1,3,4]]],[49,2,2,4,6,[[1103,2,2,4,6]]],[58,1,1,6,7,[[1150,1,1,6,7]]]],[24906,28189,28811,28970,29365,29380,30370]]],["prayers",[5,5,[[41,2,2,0,2,[[974,1,1,0,1],[977,1,1,1,2]]],[54,1,1,2,3,[[1125,1,1,2,3]]],[57,1,1,3,4,[[1137,1,1,3,4]]],[59,1,1,4,5,[[1153,1,1,4,5]]]],[25010,25140,29812,30037,30436]]],["request",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29365]]],["supplication",[4,3,[[43,1,1,0,1,[[1018,1,1,0,1]]],[48,2,1,1,2,[[1102,2,1,1,2]]],[49,1,1,2,3,[[1106,1,1,2,3]]]],[26937,29355,29448]]],["supplications",[2,2,[[53,2,2,0,2,[[1120,1,1,0,1],[1123,1,1,1,2]]]],[29717,29768]]]]},{"k":"G1163","v":[["*",[105,104,[[39,8,8,0,8,[[944,1,1,0,1],[945,1,1,1,2],[946,1,1,2,3],[951,1,1,3,4],[952,1,1,4,5],[953,1,1,5,6],[954,2,2,6,8]]],[40,6,6,8,14,[[964,1,1,8,9],[965,1,1,9,10],[969,3,3,10,13],[970,1,1,13,14]]],[41,19,19,14,33,[[974,1,1,14,15],[976,1,1,15,16],[981,1,1,16,17],[983,1,1,17,18],[984,1,1,18,19],[985,3,3,19,22],[987,1,1,22,23],[989,1,1,23,24],[990,1,1,24,25],[991,1,1,25,26],[993,1,1,26,27],[994,2,2,27,29],[996,4,4,29,33]]],[42,10,10,33,43,[[999,3,3,33,36],[1000,3,3,36,39],[1005,1,1,39,40],[1006,1,1,40,41],[1008,1,1,41,42],[1016,1,1,42,43]]],[43,25,25,43,68,[[1018,2,2,43,45],[1020,1,1,45,46],[1021,1,1,46,47],[1022,1,1,47,48],[1026,2,2,48,50],[1027,1,1,50,51],[1031,1,1,51,52],[1032,1,1,52,53],[1033,1,1,53,54],[1034,1,1,54,55],[1035,1,1,55,56],[1036,2,2,56,58],[1037,1,1,58,59],[1038,1,1,59,60],[1040,1,1,60,61],[1041,1,1,61,62],[1042,2,2,62,64],[1043,1,1,64,65],[1044,3,3,65,68]]],[44,3,3,68,71,[[1046,1,1,68,69],[1053,1,1,69,70],[1057,1,1,70,71]]],[45,4,4,71,75,[[1069,1,1,71,72],[1072,1,1,72,73],[1076,2,2,73,75]]],[46,3,3,75,78,[[1079,1,1,75,76],[1082,1,1,76,77],[1088,1,1,77,78]]],[48,1,1,78,79,[[1102,1,1,78,79]]],[50,2,2,79,81,[[1110,2,2,79,81]]],[51,1,1,81,82,[[1114,1,1,81,82]]],[52,1,1,82,83,[[1118,1,1,82,83]]],[53,4,4,83,87,[[1121,3,3,83,86],[1123,1,1,86,87]]],[54,2,2,87,89,[[1126,2,2,87,89]]],[55,3,2,89,91,[[1129,3,2,89,91]]],[57,3,3,91,94,[[1134,1,1,91,92],[1141,1,1,92,93],[1143,1,1,93,94]]],[59,1,1,94,95,[[1151,1,1,94,95]]],[60,1,1,95,96,[[1158,1,1,95,96]]],[65,8,8,96,104,[[1167,1,1,96,97],[1170,1,1,97,98],[1176,1,1,98,99],[1177,1,1,99,100],[1179,1,1,100,101],[1183,1,1,101,102],[1186,1,1,102,103],[1188,1,1,103,104]]]],[23693,23710,23760,23941,23963,24035,24089,24108,24531,24549,24724,24727,24731,24785,25022,25106,25323,25447,25471,25532,25534,25551,25620,25676,25689,25736,25835,25871,25901,25998,26017,26035,26037,26127,26134,26150,26160,26176,26180,26444,26497,26614,26876,26939,26944,27017,27034,27088,27222,27232,27265,27436,27447,27513,27526,27578,27606,27621,27661,27686,27745,27788,27806,27820,27832,27876,27879,27881,27957,28142,28248,28529,28619,28743,28771,28827,28887,29019,29357,29546,29548,29604,29685,29733,29738,29746,29776,29833,29851,29899,29903,29978,30131,30178,30380,30533,30698,30769,30872,30877,30918,30985,31041,31086]]],["+",[4,4,[[43,1,1,0,1,[[1020,1,1,0,1]]],[53,1,1,1,2,[[1121,1,1,1,2]]],[55,1,1,2,3,[[1129,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[27017,29738,29903,30380]]],["Ought",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26017]]],["Shouldest",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23760]]],["behoved",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26037]]],["meet",[2,2,[[41,1,1,0,1,[[987,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[25620,27957]]],["must",[55,55,[[39,4,4,0,4,[[944,1,1,0,1],[945,1,1,1,2],[952,1,1,2,3],[954,1,1,3,4]]],[40,3,3,4,7,[[964,1,1,4,5],[965,1,1,5,6],[969,1,1,6,7]]],[41,11,11,7,18,[[974,1,1,7,8],[976,1,1,8,9],[981,1,1,9,10],[985,1,1,10,11],[989,1,1,11,12],[991,1,1,12,13],[993,1,1,13,14],[994,2,2,14,16],[996,2,2,16,18]]],[42,8,8,18,26,[[999,3,3,18,21],[1000,1,1,21,22],[1005,1,1,22,23],[1006,1,1,23,24],[1008,1,1,24,25],[1016,1,1,25,26]]],[43,11,11,26,37,[[1021,1,1,26,27],[1026,2,2,27,29],[1031,1,1,29,30],[1033,1,1,30,31],[1035,1,1,31,32],[1036,1,1,32,33],[1038,1,1,33,34],[1040,1,1,34,35],[1044,2,2,35,37]]],[45,3,3,37,40,[[1072,1,1,37,38],[1076,2,2,38,40]]],[46,1,1,40,41,[[1082,1,1,40,41]]],[53,1,1,41,42,[[1121,1,1,41,42]]],[54,2,2,42,44,[[1126,2,2,42,44]]],[55,1,1,44,45,[[1129,1,1,44,45]]],[57,2,2,45,47,[[1141,1,1,45,46],[1143,1,1,46,47]]],[65,8,8,47,55,[[1167,1,1,47,48],[1170,1,1,48,49],[1176,1,1,49,50],[1177,1,1,50,51],[1179,1,1,51,52],[1183,1,1,52,53],[1186,1,1,53,54],[1188,1,1,54,55]]]],[23693,23710,23963,24108,24531,24549,24727,25022,25106,25323,25551,25676,25736,25835,25871,25901,25998,26035,26127,26134,26150,26180,26444,26497,26614,26876,27034,27222,27232,27436,27513,27578,27606,27686,27745,27879,27881,28619,28743,28771,28887,29733,29833,29851,29899,30131,30178,30698,30769,30872,30877,30918,30985,31041,31086]]],["needful",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27447]]],["needs",[5,5,[[40,1,1,0,1,[[969,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]],[43,2,2,2,4,[[1018,1,1,2,3],[1034,1,1,3,4]]],[46,1,1,4,5,[[1088,1,1,4,5]]]],[24724,26160,26939,27526,29019]]],["of",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26944]]],["ought",[28,28,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,5,5,2,7,[[983,1,1,2,3],[984,1,1,3,4],[985,2,2,4,6],[990,1,1,6,7]]],[42,1,1,7,8,[[1000,1,1,7,8]]],[43,7,7,8,15,[[1022,1,1,8,9],[1036,1,1,9,10],[1037,1,1,10,11],[1041,1,1,11,12],[1042,2,2,12,14],[1043,1,1,14,15]]],[44,2,2,15,17,[[1053,1,1,15,16],[1057,1,1,16,17]]],[45,1,1,17,18,[[1069,1,1,17,18]]],[46,1,1,18,19,[[1079,1,1,18,19]]],[48,1,1,19,20,[[1102,1,1,19,20]]],[50,2,2,20,22,[[1110,2,2,20,22]]],[51,1,1,22,23,[[1114,1,1,22,23]]],[52,1,1,23,24,[[1118,1,1,23,24]]],[53,1,1,24,25,[[1123,1,1,24,25]]],[55,1,1,25,26,[[1129,1,1,25,26]]],[57,1,1,26,27,[[1134,1,1,26,27]]],[60,1,1,27,28,[[1158,1,1,27,28]]]],[23941,24731,25447,25471,25532,25534,25689,26176,27088,27621,27661,27788,27806,27820,27832,28142,28248,28529,28827,29357,29546,29548,29604,29685,29776,29903,29978,30533]]],["oughtest",[3,3,[[39,1,1,0,1,[[953,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]],[53,1,1,2,3,[[1121,1,1,2,3]]]],[24035,27265,29746]]],["should",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[43,1,1,2,3,[[1044,1,1,2,3]]]],[24089,24785,27876]]]]},{"k":"G1164","v":[["example",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30679]]]]},{"k":"G1165","v":[["shew",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29509]]]]},{"k":"G1166","v":[["*",[31,29,[[39,3,3,0,3,[[932,1,1,0,1],[936,1,1,1,2],[944,1,1,2,3]]],[40,2,2,3,5,[[957,1,1,3,4],[970,1,1,4,5]]],[41,3,3,5,8,[[976,1,1,5,6],[977,1,1,6,7],[994,1,1,7,8]]],[42,7,6,8,14,[[998,1,1,8,9],[1001,2,1,9,10],[1006,1,1,10,11],[1010,2,2,11,13],[1016,1,1,13,14]]],[43,2,2,14,16,[[1024,1,1,14,15],[1027,1,1,15,16]]],[45,1,1,16,17,[[1073,1,1,16,17]]],[53,1,1,17,18,[[1124,1,1,17,18]]],[57,1,1,18,19,[[1140,1,1,18,19]]],[58,3,2,19,21,[[1147,2,1,19,20],[1148,1,1,20,21]]],[65,8,8,21,29,[[1167,1,1,21,22],[1170,1,1,22,23],[1183,1,1,23,24],[1187,2,2,24,26],[1188,3,3,26,29]]]],[23217,23349,23693,24259,24769,25068,25121,25876,26113,26230,26513,26676,26677,26887,27119,27287,28665,29803,30097,30311,30332,30698,30769,30976,31062,31063,31081,31086,31088]]],["Shew",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26677]]],["shew",[19,18,[[39,2,2,0,2,[[936,1,1,0,1],[944,1,1,1,2]]],[40,2,2,2,4,[[957,1,1,2,3],[970,1,1,3,4]]],[41,2,2,4,6,[[977,1,1,4,5],[994,1,1,5,6]]],[42,2,2,6,8,[[1001,1,1,6,7],[1010,1,1,7,8]]],[43,1,1,8,9,[[1024,1,1,8,9]]],[45,1,1,9,10,[[1073,1,1,9,10]]],[53,1,1,10,11,[[1124,1,1,10,11]]],[58,3,2,11,13,[[1147,2,1,11,12],[1148,1,1,12,13]]],[65,5,5,13,18,[[1167,1,1,13,14],[1170,1,1,14,15],[1183,1,1,15,16],[1187,1,1,16,17],[1188,1,1,17,18]]]],[23349,23693,24259,24769,25121,25876,26230,26676,27119,28665,29803,30311,30332,30698,30769,30976,31062,31086]]],["shewed",[8,8,[[41,1,1,0,1,[[976,1,1,0,1]]],[42,2,2,1,3,[[1006,1,1,1,2],[1016,1,1,2,3]]],[43,1,1,3,4,[[1027,1,1,3,4]]],[57,1,1,4,5,[[1140,1,1,4,5]]],[65,3,3,5,8,[[1187,1,1,5,6],[1188,2,2,6,8]]]],[25068,26513,26887,27287,30097,31063,31081,31088]]],["shewest",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26113]]],["sheweth",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]]],[23217,26230]]]]},{"k":"G1167","v":[["fear",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29816]]]]},{"k":"G1168","v":[["afraid",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26695]]]]},{"k":"G1169","v":[["fearful",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[65,1,1,2,3,[[1187,1,1,2,3]]]],[23371,24363,31061]]]]},{"k":"G1170","v":[["man",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24072]]]]},{"k":"G1171","v":[["*",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23351,25458]]],["grievously",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23351]]],["vehemently",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25458]]]]},{"k":"G1172","v":[["*",[4,4,[[41,2,2,0,2,[[989,1,1,0,1],[994,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[65,1,1,3,4,[[1169,1,1,3,4]]]],[25659,25884,28625,30766]]],["sup",[2,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[65,1,1,1,2,[[1169,1,1,1,2]]]],[25659,30766]]],["supped",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28625]]],["supper",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25884]]]]},{"k":"G1173","v":[["*",[16,16,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[968,1,1,2,3]]],[41,5,5,3,8,[[986,4,4,3,7],[992,1,1,7,8]]],[42,4,4,8,12,[[1008,1,1,8,9],[1009,2,2,9,11],[1017,1,1,11,12]]],[45,2,2,12,14,[[1072,2,2,12,14]]],[65,2,2,14,16,[[1185,2,2,14,16]]]],[23924,24428,24712,25565,25569,25570,25577,25825,26582,26632,26634,26918,28620,28621,31026,31034]]],["feasts",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]]],[23924,24712,25825]]],["supper",[13,13,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,4,4,1,5,[[986,4,4,1,5]]],[42,4,4,5,9,[[1008,1,1,5,6],[1009,2,2,6,8],[1017,1,1,8,9]]],[45,2,2,9,11,[[1072,2,2,9,11]]],[65,2,2,11,13,[[1185,2,2,11,13]]]],[24428,25565,25569,25570,25577,26582,26632,26634,26918,28620,28621,31026,31034]]]]},{"k":"G1174","v":[["superstitious",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27545]]]]},{"k":"G1175","v":[["superstition",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27815]]]]},{"k":"G1176","v":[["*",[27,24,[[39,3,3,0,3,[[948,1,1,0,1],[953,2,2,1,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,13,12,4,16,[[985,3,3,4,7],[986,1,1,7,8],[987,1,1,8,9],[989,2,2,9,11],[991,6,5,11,16]]],[43,1,1,16,17,[[1042,1,1,16,17]]],[65,9,7,17,24,[[1168,1,1,17,18],[1178,1,1,18,19],[1179,2,1,19,20],[1183,5,4,20,24]]]],[23816,24009,24036,24629,25522,25529,25534,25584,25596,25663,25668,25744,25747,25748,25755,25756,27802,30727,30894,30909,30978,30982,30987,30991]]],["+",[3,3,[[41,3,3,0,3,[[985,3,3,0,3]]]],[25522,25529,25534]]],["ten",[24,21,[[39,3,3,0,3,[[948,1,1,0,1],[953,2,2,1,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,10,9,4,13,[[986,1,1,4,5],[987,1,1,5,6],[989,2,2,6,8],[991,6,5,8,13]]],[43,1,1,13,14,[[1042,1,1,13,14]]],[65,9,7,14,21,[[1168,1,1,14,15],[1178,1,1,15,16],[1179,2,1,16,17],[1183,5,4,17,21]]]],[23816,24009,24036,24629,25584,25596,25663,25668,25744,25747,25748,25755,25756,27802,30727,30894,30909,30978,30982,30987,30991]]]]},{"k":"G1177","v":[["twelve",[2,2,[[43,2,2,0,2,[[1036,1,1,0,1],[1041,1,1,1,2]]]],[27592,27780]]]]},{"k":"G1178","v":[["fifteen",[3,3,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]],[47,1,1,2,3,[[1091,1,1,2,3]]]],[26541,27883,29075]]]]},{"k":"G1179","v":[["Decapolis",[3,3,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[963,1,1,2,3]]]],[23234,24384,24494]]]]},{"k":"G1180","v":[["fourteen",[5,3,[[39,3,1,0,1,[[929,3,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]]],[23161,29024,29082]]]]},{"k":"G1181","v":[["*",[4,4,[[57,4,4,0,4,[[1139,4,4,0,4]]]],[30066,30068,30072,30073]]],["part",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30066]]],["tenth",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30068]]],["tithes",[2,2,[[57,2,2,0,2,[[1139,2,2,0,2]]]],[30072,30073]]]]},{"k":"G1182","v":[["*",[3,3,[[42,1,1,0,1,[[997,1,1,0,1]]],[65,2,2,1,3,[[1177,1,1,1,2],[1187,1,1,2,3]]]],[26083,30885,31073]]],["part",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30885]]],["tenth",[2,2,[[42,1,1,0,1,[[997,1,1,0,1]]],[65,1,1,1,2,[[1187,1,1,1,2]]]],[26083,31073]]]]},{"k":"G1183","v":[["tithes",[2,2,[[57,2,2,0,2,[[1139,2,2,0,2]]]],[30070,30073]]]]},{"k":"G1184","v":[["*",[5,5,[[41,2,2,0,2,[[976,2,2,0,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]],[49,1,1,4,5,[[1106,1,1,4,5]]]],[25082,25087,27294,28900,29460]]],["acceptable",[2,2,[[41,1,1,0,1,[[976,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]]],[25082,29460]]],["accepted",[3,3,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]],[46,1,1,2,3,[[1083,1,1,2,3]]]],[25087,27294,28900]]]]},{"k":"G1185","v":[["*",[3,3,[[58,1,1,0,1,[[1146,1,1,0,1]]],[60,2,2,1,3,[[1157,2,2,1,3]]]],[30280,30514,30518]]],["allure",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30518]]],["beguiling",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30514]]],["enticed",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30280]]]]},{"k":"G1186","v":[["*",[26,19,[[39,12,7,0,7,[[931,2,1,0,1],[935,5,3,1,4],[940,3,1,4,5],[941,1,1,5,6],[949,1,1,6,7]]],[40,2,2,7,9,[[964,1,1,7,8],[967,1,1,8,9]]],[41,7,5,9,14,[[975,2,1,9,10],[978,3,2,10,12],[985,1,1,12,13],[993,1,1,13,14]]],[64,1,1,14,15,[[1166,1,1,14,15]]],[65,4,4,15,19,[[1173,2,2,15,17],[1174,1,1,17,18],[1175,1,1,18,19]]]],[23202,23333,23334,23335,23522,23571,23834,24524,24648,25034,25189,25190,25537,25855,30684,30811,30813,30834,30844]]],["tree",[17,12,[[39,10,6,0,6,[[931,1,1,0,1],[935,5,3,1,4],[940,3,1,4,5],[941,1,1,5,6]]],[41,5,4,6,10,[[975,1,1,6,7],[978,3,2,7,9],[985,1,1,9,10]]],[65,2,2,10,12,[[1173,1,1,10,11],[1175,1,1,11,12]]]],[23202,23333,23334,23335,23522,23571,25034,25189,25190,25537,30811,30844]]],["trees",[9,9,[[39,2,2,0,2,[[931,1,1,0,1],[949,1,1,1,2]]],[40,2,2,2,4,[[964,1,1,2,3],[967,1,1,3,4]]],[41,2,2,4,6,[[975,1,1,4,5],[993,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]],[65,2,2,7,9,[[1173,1,1,7,8],[1174,1,1,8,9]]]],[23202,23834,24524,24648,25034,25855,30684,30813,30834]]]]},{"k":"G1187","v":[["spearmen",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27757]]]]},{"k":"G1188","v":[["*",[53,53,[[39,12,12,0,12,[[933,3,3,0,3],[934,1,1,3,4],[948,2,2,4,6],[950,1,1,6,7],[953,2,2,7,9],[954,1,1,9,10],[955,2,2,10,12]]],[40,7,7,12,19,[[966,2,2,12,14],[968,1,1,14,15],[970,1,1,15,16],[971,1,1,16,17],[972,2,2,17,19]]],[41,6,6,19,25,[[973,1,1,19,20],[978,1,1,20,21],[992,1,1,21,22],[994,2,2,22,24],[995,1,1,24,25]]],[42,2,2,25,27,[[1014,1,1,25,26],[1017,1,1,26,27]]],[43,7,7,27,34,[[1019,3,3,27,30],[1020,1,1,30,31],[1022,1,1,31,32],[1024,2,2,32,34]]],[44,1,1,34,35,[[1053,1,1,34,35]]],[46,1,1,35,36,[[1083,1,1,35,36]]],[47,1,1,36,37,[[1092,1,1,36,37]]],[48,1,1,37,38,[[1097,1,1,37,38]]],[50,1,1,38,39,[[1109,1,1,38,39]]],[57,5,5,39,44,[[1133,2,2,39,41],[1140,1,1,41,42],[1142,1,1,42,43],[1144,1,1,43,44]]],[59,1,1,44,45,[[1153,1,1,44,45]]],[65,8,8,45,53,[[1167,3,3,45,48],[1168,1,1,48,49],[1171,2,2,49,51],[1176,1,1,51,52],[1179,1,1,52,53]]]],[23263,23264,23273,23285,23813,23815,23916,24041,24042,24118,24158,24167,24625,24628,24709,24816,24853,24878,24892,24904,25152,25821,25914,25933,25968,26795,26904,26974,26982,26983,27003,27090,27171,27172,28150,28905,29090,29226,29518,29966,29976,30093,30145,30214,30446,30713,30714,30717,30718,30780,30786,30863,30924]]],["hand",[38,38,[[39,9,9,0,9,[[934,1,1,0,1],[948,2,2,1,3],[950,1,1,3,4],[953,2,2,4,6],[954,1,1,6,7],[955,2,2,7,9]]],[40,6,6,9,15,[[966,2,2,9,11],[968,1,1,11,12],[970,1,1,12,13],[971,1,1,13,14],[972,1,1,14,15]]],[41,3,3,15,18,[[992,1,1,15,16],[994,1,1,16,17],[995,1,1,17,18]]],[43,6,6,18,24,[[1019,3,3,18,21],[1022,1,1,21,22],[1024,2,2,22,24]]],[44,1,1,24,25,[[1053,1,1,24,25]]],[46,1,1,25,26,[[1083,1,1,25,26]]],[48,1,1,26,27,[[1097,1,1,26,27]]],[50,1,1,27,28,[[1109,1,1,27,28]]],[57,5,5,28,33,[[1133,2,2,28,30],[1140,1,1,30,31],[1142,1,1,31,32],[1144,1,1,32,33]]],[59,1,1,33,34,[[1153,1,1,33,34]]],[65,4,4,34,38,[[1167,1,1,34,35],[1168,1,1,35,36],[1171,2,2,36,38]]]],[23285,23813,23815,23916,24041,24042,24118,24158,24167,24625,24628,24709,24816,24853,24892,25821,25933,25968,26974,26982,26983,27090,27171,27172,28150,28905,29226,29518,29966,29976,30093,30145,30214,30446,30717,30718,30780,30786]]],["hands",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29090]]],["right",[12,12,[[39,3,3,0,3,[[933,3,3,0,3]]],[41,2,2,3,5,[[978,1,1,3,4],[994,1,1,4,5]]],[42,2,2,5,7,[[1014,1,1,5,6],[1017,1,1,6,7]]],[43,1,1,7,8,[[1020,1,1,7,8]]],[65,4,4,8,12,[[1167,2,2,8,10],[1176,1,1,10,11],[1179,1,1,11,12]]]],[23263,23264,23273,25152,25914,26795,26904,27003,30713,30714,30863,30924]]],["side",[2,2,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]]],[24878,24904]]]]},{"k":"G1189","v":[["*",[22,22,[[39,1,1,0,1,[[937,1,1,0,1]]],[41,8,8,1,9,[[977,1,1,1,2],[980,2,2,2,4],[981,2,2,4,6],[982,1,1,6,7],[993,1,1,7,8],[994,1,1,8,9]]],[43,7,7,9,16,[[1021,1,1,9,10],[1025,3,3,10,13],[1027,1,1,13,14],[1038,1,1,14,15],[1043,1,1,15,16]]],[44,1,1,16,17,[[1046,1,1,16,17]]],[46,3,3,17,20,[[1082,1,1,17,18],[1085,1,1,18,19],[1087,1,1,19,20]]],[47,1,1,20,21,[[1094,1,1,20,21]]],[51,1,1,21,22,[[1113,1,1,21,22]]]],[23417,25119,25273,25283,25339,25341,25365,25862,25896,27053,27198,27200,27210,27261,27703,27826,27940,28897,28936,28973,29143,29600]]],["Pray",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]]],[23417,27200]]],["Praying",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28936]]],["beseech",[6,6,[[41,2,2,0,2,[[980,1,1,0,1],[981,1,1,1,2]]],[43,2,2,2,4,[[1038,1,1,2,3],[1043,1,1,3,4]]],[46,1,1,4,5,[[1087,1,1,4,5]]],[47,1,1,5,6,[[1094,1,1,5,6]]]],[25273,25339,27703,27826,28973,29143]]],["besought",[3,3,[[41,3,3,0,3,[[977,1,1,0,1],[980,1,1,1,2],[981,1,1,2,3]]]],[25119,25283,25341]]],["pray",[5,5,[[41,2,2,0,2,[[982,1,1,0,1],[993,1,1,1,2]]],[43,2,2,2,4,[[1025,2,2,2,4]]],[46,1,1,4,5,[[1082,1,1,4,5]]]],[25365,25862,27198,27210,28897]]],["prayed",[3,3,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,2,2,1,3,[[1021,1,1,1,2],[1027,1,1,2,3]]]],[25896,27053,27261]]],["praying",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29600]]],["request",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27940]]]]},{"k":"G1190","v":[["Derbe",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27630]]]]},{"k":"G1191","v":[["Derbe",[3,3,[[43,3,3,0,3,[[1031,2,2,0,2],[1033,1,1,2,3]]]],[27420,27434,27484]]]]},{"k":"G1192","v":[["+",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30209]]]]},{"k":"G1193","v":[["*",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23196,24221]]],["leathern",[1,1,[[39,1,1,0,1,[[931,1,1,0,1]]]],[23196]]],["skin",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24221]]]]},{"k":"G1194","v":[["*",[15,15,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,3,3,1,4,[[968,2,2,1,3],[969,1,1,3,4]]],[41,5,5,4,9,[[984,2,2,4,6],[992,2,2,6,8],[994,1,1,8,9]]],[42,1,1,9,10,[[1014,1,1,9,10]]],[43,3,3,10,13,[[1022,1,1,10,11],[1033,1,1,11,12],[1039,1,1,12,13]]],[45,1,1,13,14,[[1070,1,1,13,14]]],[46,1,1,14,15,[[1088,1,1,14,15]]]],[23861,24676,24678,24726,25506,25507,25789,25790,25927,26808,27099,27520,27723,28566,29009]]],["beat",[5,5,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,2,2,4,[[992,2,2,2,4]]],[43,1,1,4,5,[[1039,1,1,4,5]]]],[23861,24676,25789,25790,27723]]],["beaten",[5,5,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,2,2,1,3,[[984,2,2,1,3]]],[43,2,2,3,5,[[1022,1,1,3,4],[1033,1,1,4,5]]]],[24726,25506,25507,27099,27520]]],["beateth",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28566]]],["beating",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24678]]],["smite",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29009]]],["smitest",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26808]]],["smote",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25927]]]]},{"k":"G1195","v":[["*",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[43,1,1,1,2,[[1039,1,1,1,2]]]],[23922,27708]]],["bind",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23922]]],["binding",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27708]]]]},{"k":"G1196","v":[["bound",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25274]]]]},{"k":"G1197","v":[["bundles",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23569]]]]},{"k":"G1198","v":[["*",[16,16,[[39,2,2,0,2,[[955,2,2,0,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[43,7,7,3,10,[[1033,2,2,3,5],[1040,1,1,5,6],[1042,2,2,6,8],[1045,2,2,8,10]]],[48,2,2,10,12,[[1099,1,1,10,11],[1100,1,1,11,12]]],[54,1,1,12,13,[[1125,1,1,12,13]]],[56,2,2,13,15,[[1132,2,2,13,15]]],[57,1,1,15,16,[[1145,1,1,15,16]]]],[24144,24145,24832,27508,27510,27752,27810,27823,27915,27916,29252,29273,29817,29939,29947,30244]]],["+",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27810]]],["bonds",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30244]]],["prisoner",[11,11,[[39,2,2,0,2,[[955,2,2,0,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[43,3,3,3,6,[[1040,1,1,3,4],[1042,1,1,4,5],[1045,1,1,5,6]]],[48,2,2,6,8,[[1099,1,1,6,7],[1100,1,1,7,8]]],[54,1,1,8,9,[[1125,1,1,8,9]]],[56,2,2,9,11,[[1132,2,2,9,11]]]],[24144,24145,24832,27752,27823,27916,29252,29273,29817,29939,29947]]],["prisoners",[3,3,[[43,3,3,0,3,[[1033,2,2,0,2],[1045,1,1,2,3]]]],[27508,27510,27915]]]]},{"k":"G1199","v":[["*",[20,20,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,2,2,1,3,[[980,1,1,1,2],[985,1,1,2,3]]],[43,6,6,3,9,[[1033,1,1,3,4],[1037,1,1,4,5],[1039,1,1,5,6],[1040,1,1,6,7],[1043,2,2,7,9]]],[49,4,4,9,13,[[1103,4,4,9,13]]],[50,1,1,13,14,[[1110,1,1,13,14]]],[54,1,1,14,15,[[1126,1,1,14,15]]],[56,2,2,15,17,[[1132,2,2,15,17]]],[57,2,2,17,19,[[1142,1,1,17,18],[1143,1,1,18,19]]],[64,1,1,19,20,[[1166,1,1,19,20]]]],[24498,25274,25534,27509,27649,27734,27763,27852,27854,29368,29374,29375,29377,29560,29836,29948,29951,30167,30208,30678]]],["bands",[3,3,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,2,2,1,3,[[1033,1,1,1,2],[1039,1,1,2,3]]]],[25274,27509,27734]]],["bond",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25534]]],["bonds",[14,14,[[43,4,4,0,4,[[1037,1,1,0,1],[1040,1,1,1,2],[1043,2,2,2,4]]],[49,4,4,4,8,[[1103,4,4,4,8]]],[50,1,1,8,9,[[1110,1,1,8,9]]],[54,1,1,9,10,[[1126,1,1,9,10]]],[56,2,2,10,12,[[1132,2,2,10,12]]],[57,2,2,12,14,[[1142,1,1,12,13],[1143,1,1,13,14]]]],[27649,27763,27852,27854,29368,29374,29375,29377,29560,29836,29948,29951,30167,30208]]],["chains",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30678]]],["string",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24498]]]]},{"k":"G1200","v":[["*",[3,3,[[43,3,3,0,3,[[1033,3,3,0,3]]]],[27506,27510,27519]]],["jailor",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27506]]],["prison",[2,2,[[43,2,2,0,2,[[1033,2,2,0,2]]]],[27510,27519]]]]},{"k":"G1201","v":[["prison",[4,4,[[39,1,1,0,1,[[939,1,1,0,1]]],[43,3,3,1,4,[[1022,2,2,1,3],[1033,1,1,3,4]]]],[23461,27080,27082,27509]]]]},{"k":"G1202","v":[["prisoners",[2,2,[[43,2,2,0,2,[[1044,2,2,0,2]]]],[27856,27897]]]]},{"k":"G1203","v":[["*",[10,10,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]],[53,2,2,2,4,[[1124,2,2,2,4]]],[54,1,1,4,5,[[1126,1,1,4,5]]],[55,1,1,5,6,[[1130,1,1,5,6]]],[59,1,1,6,7,[[1152,1,1,6,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]],[64,1,1,8,9,[[1166,1,1,8,9]]],[65,1,1,9,10,[[1172,1,1,9,10]]]],[25002,27046,29789,29790,29848,29917,30417,30501,30676,30803]]],["+",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29848]]],["Lord",[5,5,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]],[65,1,1,4,5,[[1172,1,1,4,5]]]],[25002,27046,30501,30676,30803]]],["masters",[4,4,[[53,2,2,0,2,[[1124,2,2,0,2]]],[55,1,1,2,3,[[1130,1,1,2,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[29789,29790,29917,30417]]]]},{"k":"G1204","v":[["*",[9,9,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[42,1,1,3,4,[[1007,1,1,3,4]]],[43,2,2,4,6,[[1024,2,2,4,6]]],[44,1,1,6,7,[[1046,1,1,6,7]]],[65,2,2,7,9,[[1183,1,1,7,8],[1187,1,1,8,9]]]],[23783,24609,25710,26566,27119,27150,27943,30976,31062]]],["+",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27943]]],["come",[6,6,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[42,1,1,3,4,[[1007,1,1,3,4]]],[43,2,2,4,6,[[1024,2,2,4,6]]]],[23783,24609,25710,26566,27119,27150]]],["hither",[2,2,[[65,2,2,0,2,[[1183,1,1,0,1],[1187,1,1,1,2]]]],[30976,31062]]]]},{"k":"G1205","v":[["*",[13,13,[[39,6,6,0,6,[[932,1,1,0,1],[939,1,1,1,2],[949,1,1,2,3],[950,1,1,3,4],[953,1,1,4,5],[956,1,1,5,6]]],[40,3,3,6,9,[[957,1,1,6,7],[962,1,1,7,8],[968,1,1,8,9]]],[41,1,1,9,10,[[992,1,1,9,10]]],[42,2,2,10,12,[[1000,1,1,10,11],[1017,1,1,11,12]]],[65,1,1,12,13,[[1185,1,1,12,13]]]],[23228,23487,23864,23876,24042,24201,24232,24438,24680,25793,26185,26910,31034]]],["+",[1,1,[[39,1,1,0,1,[[932,1,1,0,1]]]],[23228]]],["Come",[8,8,[[39,3,3,0,3,[[939,1,1,0,1],[953,1,1,1,2],[956,1,1,2,3]]],[40,2,2,3,5,[[957,1,1,3,4],[962,1,1,4,5]]],[42,2,2,5,7,[[1000,1,1,5,6],[1017,1,1,6,7]]],[65,1,1,7,8,[[1185,1,1,7,8]]]],[23487,24042,24201,24232,24438,26185,26910,31034]]],["come",[4,4,[[39,2,2,0,2,[[949,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]]],[23864,23876,24680,25793]]]]},{"k":"G1206","v":[["day",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27912]]]]},{"k":"G1207","v":[["+",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25147]]]]},{"k":"G1208","v":[["*",[43,42,[[39,4,4,0,4,[[949,1,1,0,1],[950,2,2,1,3],[954,1,1,3,4]]],[40,3,3,4,7,[[968,2,2,4,6],[970,1,1,6,7]]],[41,3,3,7,10,[[984,1,1,7,8],[991,1,1,8,9],[992,1,1,9,10]]],[42,4,4,10,14,[[999,1,1,10,11],[1000,1,1,11,12],[1005,1,1,12,13],[1017,1,1,13,14]]],[43,5,5,14,19,[[1024,1,1,14,15],[1027,1,1,15,16],[1028,1,1,16,17],[1029,1,1,17,18],[1030,1,1,18,19]]],[45,2,2,19,21,[[1073,1,1,19,20],[1076,1,1,20,21]]],[46,2,2,21,23,[[1078,1,1,21,22],[1090,1,1,22,23]]],[55,1,1,23,24,[[1131,1,1,23,24]]],[57,5,5,24,29,[[1140,1,1,24,25],[1141,3,3,25,28],[1142,1,1,28,29]]],[60,1,1,29,30,[[1158,1,1,29,30]]],[64,1,1,30,31,[[1166,1,1,30,31]]],[65,12,11,31,42,[[1168,1,1,31,32],[1170,1,1,32,33],[1172,2,1,33,34],[1174,1,1,34,35],[1177,1,1,35,36],[1182,1,1,36,37],[1185,1,1,37,38],[1186,2,2,38,40],[1187,2,2,40,42]]]],[23856,23898,23911,24096,24694,24704,24826,25497,25749,25809,26124,26210,26464,26914,27129,27274,27316,27347,27395,28662,28765,28815,29045,29933,30099,30108,30112,30133,30142,30523,30677,30728,30775,30796,30835,30886,30957,31020,31044,31052,31061,31072]]],["+",[2,2,[[42,1,1,0,1,[[1005,1,1,0,1]]],[43,1,1,1,2,[[1028,1,1,1,2]]]],[26464,27316]]],["afterward",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30677]]],["again",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31020]]],["second",[31,30,[[39,3,3,0,3,[[949,1,1,0,1],[950,2,2,1,3]]],[40,2,2,3,5,[[968,2,2,3,5]]],[41,3,3,5,8,[[984,1,1,5,6],[991,1,1,6,7],[992,1,1,7,8]]],[42,1,1,8,9,[[1000,1,1,8,9]]],[43,3,3,9,12,[[1024,1,1,9,10],[1029,1,1,10,11],[1030,1,1,11,12]]],[45,1,1,12,13,[[1076,1,1,12,13]]],[46,1,1,13,14,[[1078,1,1,13,14]]],[55,1,1,14,15,[[1131,1,1,14,15]]],[57,4,4,15,19,[[1140,1,1,15,16],[1141,2,2,16,18],[1142,1,1,18,19]]],[60,1,1,19,20,[[1158,1,1,19,20]]],[65,11,10,20,30,[[1168,1,1,20,21],[1170,1,1,21,22],[1172,2,1,22,23],[1174,1,1,23,24],[1177,1,1,24,25],[1182,1,1,25,26],[1186,2,2,26,28],[1187,2,2,28,30]]]],[23856,23898,23911,24694,24704,25497,25749,25809,26210,27129,27347,27395,28765,28815,29933,30099,30108,30112,30142,30523,30728,30775,30796,30835,30886,30957,31044,31052,31061,31072]]],["secondarily",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28662]]],["time",[7,7,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,2,2,2,4,[[999,1,1,2,3],[1017,1,1,3,4]]],[43,1,1,4,5,[[1027,1,1,4,5]]],[46,1,1,5,6,[[1090,1,1,5,6]]],[57,1,1,6,7,[[1141,1,1,6,7]]]],[24096,24826,26124,26914,27274,29045,30133]]]]},{"k":"G1209","v":[["*",[59,48,[[39,10,5,0,5,[[938,7,3,0,3],[939,1,1,3,4],[946,2,1,4,5]]],[40,6,3,5,8,[[962,1,1,5,6],[965,4,1,6,7],[966,1,1,7,8]]],[41,17,14,8,22,[[974,1,1,8,9],[980,1,1,9,10],[981,7,4,10,14],[982,2,2,14,16],[988,4,4,16,20],[990,1,1,20,21],[994,1,1,21,22]]],[42,1,1,22,23,[[1000,1,1,22,23]]],[43,9,9,23,32,[[1020,1,1,23,24],[1024,2,2,24,26],[1025,1,1,26,27],[1028,1,1,27,28],[1034,1,1,28,29],[1038,1,1,29,30],[1039,1,1,30,31],[1045,1,1,31,32]]],[45,1,1,32,33,[[1063,1,1,32,33]]],[46,6,6,33,39,[[1083,1,1,33,34],[1084,1,1,34,35],[1085,2,2,35,37],[1088,2,2,37,39]]],[47,1,1,39,40,[[1094,1,1,39,40]]],[48,1,1,40,41,[[1102,1,1,40,41]]],[49,1,1,41,42,[[1106,1,1,41,42]]],[50,1,1,42,43,[[1110,1,1,42,43]]],[51,2,2,43,45,[[1111,1,1,43,44],[1112,1,1,44,45]]],[52,1,1,45,46,[[1117,1,1,45,46]]],[57,1,1,46,47,[[1143,1,1,46,47]]],[58,1,1,47,48,[[1146,1,1,47,48]]]],[23431,23457,23458,23473,23732,24418,24575,24603,25001,25258,25306,25312,25349,25354,25371,25373,25624,25626,25627,25629,25705,25881,26201,27017,27154,27175,27190,27308,27534,27681,27709,27920,28408,28899,28931,28936,28949,28993,29005,29145,29354,29460,29552,29566,29583,29671,30203,30287]]],["+",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25001]]],["Take",[2,2,[[41,2,2,0,2,[[988,2,2,0,2]]]],[25626,25627]]],["accepted",[2,2,[[46,2,2,0,2,[[1085,1,1,0,1],[1088,1,1,1,2]]]],[28949,28993]]],["receive",[24,22,[[39,3,3,0,3,[[938,1,1,0,1],[939,1,1,1,2],[946,1,1,2,3]]],[40,4,3,3,6,[[962,1,1,3,4],[965,2,1,4,5],[966,1,1,5,6]]],[41,10,9,6,15,[[980,1,1,6,7],[981,4,3,7,10],[982,2,2,10,12],[988,2,2,12,14],[990,1,1,14,15]]],[43,2,2,15,17,[[1020,1,1,15,16],[1024,1,1,16,17]]],[46,3,3,17,20,[[1083,1,1,17,18],[1085,1,1,18,19],[1088,1,1,19,20]]],[50,1,1,20,21,[[1110,1,1,20,21]]],[58,1,1,21,22,[[1146,1,1,21,22]]]],[23431,23473,23732,24418,24575,24603,25258,25306,25349,25354,25371,25373,25624,25629,25705,27017,27175,28899,28936,29005,29552,30287]]],["received",[16,16,[[41,1,1,0,1,[[981,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]],[43,7,7,2,9,[[1024,1,1,2,3],[1025,1,1,3,4],[1028,1,1,4,5],[1034,1,1,5,6],[1038,1,1,6,7],[1039,1,1,7,8],[1045,1,1,8,9]]],[46,1,1,9,10,[[1084,1,1,9,10]]],[47,1,1,10,11,[[1094,1,1,10,11]]],[49,1,1,11,12,[[1106,1,1,11,12]]],[51,2,2,12,14,[[1111,1,1,12,13],[1112,1,1,13,14]]],[52,1,1,14,15,[[1117,1,1,14,15]]],[57,1,1,15,16,[[1143,1,1,15,16]]]],[25312,26201,27154,27190,27308,27534,27681,27709,27920,28931,29145,29460,29566,29583,29671,30203]]],["receiveth",[12,6,[[39,7,3,0,3,[[938,6,2,0,2],[946,1,1,2,3]]],[40,2,1,3,4,[[965,2,1,3,4]]],[41,2,1,4,5,[[981,2,1,4,5]]],[45,1,1,5,6,[[1063,1,1,5,6]]]],[23457,23458,23732,24575,25349,28408]]],["take",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29354]]],["took",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25881]]]]},{"k":"G1210","v":[["*",[44,41,[[39,10,8,0,8,[[940,1,1,0,1],[941,1,1,1,2],[942,1,1,2,3],[944,2,1,3,4],[946,2,1,4,5],[949,1,1,5,6],[950,1,1,6,7],[955,1,1,7,8]]],[40,8,8,8,16,[[959,1,1,8,9],[961,2,2,9,11],[962,1,1,11,12],[967,2,2,12,14],[971,2,2,14,16]]],[41,2,2,16,18,[[985,1,1,16,17],[991,1,1,17,18]]],[42,4,4,18,22,[[1007,1,1,18,19],[1014,2,2,19,21],[1015,1,1,21,22]]],[43,13,12,22,34,[[1026,3,3,22,25],[1027,1,1,25,26],[1029,1,1,26,27],[1037,1,1,27,28],[1038,4,3,28,31],[1039,2,2,31,33],[1041,1,1,33,34]]],[44,1,1,34,35,[[1052,1,1,34,35]]],[45,2,2,35,37,[[1068,2,2,35,37]]],[50,1,1,37,38,[[1110,1,1,37,38]]],[54,1,1,38,39,[[1126,1,1,38,39]]],[65,2,2,39,41,[[1175,1,1,39,40],[1186,1,1,40,41]]]],[23518,23569,23600,23691,23745,23828,23885,24131,24315,24367,24368,24424,24642,24644,24827,24833,25534,25761,26567,26797,26809,26865,27218,27230,27237,27270,27343,27648,27675,27677,27697,27709,27733,27796,28093,28514,28526,29545,29836,30854,31040]]],["+",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29545]]],["Bind",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23885]]],["bind",[8,8,[[39,4,4,0,4,[[940,1,1,0,1],[941,1,1,1,2],[944,1,1,2,3],[946,1,1,3,4]]],[40,2,2,4,6,[[959,1,1,4,5],[961,1,1,5,6]]],[43,2,2,6,8,[[1026,1,1,6,7],[1038,1,1,7,8]]]],[23518,23569,23691,23745,24315,24367,27230,27675]]],["bound",[28,28,[[39,4,4,0,4,[[942,1,1,0,1],[944,1,1,1,2],[946,1,1,2,3],[955,1,1,3,4]]],[40,4,4,4,8,[[961,1,1,4,5],[962,1,1,5,6],[971,2,2,6,8]]],[41,1,1,8,9,[[985,1,1,8,9]]],[42,3,3,9,12,[[1007,1,1,9,10],[1014,2,2,10,12]]],[43,10,10,12,22,[[1026,2,2,12,14],[1029,1,1,14,15],[1037,1,1,15,16],[1038,3,3,16,19],[1039,2,2,19,21],[1041,1,1,21,22]]],[44,1,1,22,23,[[1052,1,1,22,23]]],[45,2,2,23,25,[[1068,2,2,23,25]]],[54,1,1,25,26,[[1126,1,1,25,26]]],[65,2,2,26,28,[[1175,1,1,26,27],[1186,1,1,27,28]]]],[23600,23691,23745,24131,24368,24424,24827,24833,25534,26567,26797,26809,27218,27237,27343,27648,27675,27677,27697,27709,27733,27796,28093,28514,28526,29836,30854,31040]]],["knit",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27270]]],["tied",[4,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,2,2,1,3,[[967,2,2,1,3]]],[41,1,1,3,4,[[991,1,1,3,4]]]],[23828,24642,24644,25761]]],["wound",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26865]]]]},{"k":"G1211","v":[["*",[6,6,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[43,2,2,2,4,[[1030,1,1,2,3],[1032,1,1,3,4]]],[45,1,1,4,5,[[1067,1,1,4,5]]],[46,1,1,5,6,[[1089,1,1,5,6]]]],[23562,24988,27364,27478,28487,29023]]],["+",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1032,1,1,1,2]]]],[27364,27478]]],["also",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23562]]],["doubtless",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29023]]],["even",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24988]]],["therefore",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28487]]]]},{"k":"G1212","v":[["*",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[47,1,1,2,3,[[1093,1,1,2,3]]],[53,1,1,3,4,[[1124,1,1,3,4]]]],[24127,28745,29113,29795]]],["+",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[24127,29795]]],["evident",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29113]]],["manifest",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28745]]]]},{"k":"G1213","v":[["*",[7,7,[[45,2,2,0,2,[[1062,1,1,0,1],[1064,1,1,1,2]]],[50,1,1,2,3,[[1107,1,1,2,3]]],[57,2,2,3,5,[[1141,1,1,3,4],[1144,1,1,4,5]]],[59,1,1,5,6,[[1151,1,1,5,6]]],[60,1,1,6,7,[[1156,1,1,6,7]]]],[28374,28423,29473,30113,30239,30385,30493]]],["declare",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28423]]],["declared",[2,2,[[45,1,1,0,1,[[1062,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[28374,29473]]],["shewed",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30493]]],["signifieth",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30239]]],["signify",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30385]]],["signifying",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30113]]]]},{"k":"G1214","v":[["Demas",[3,3,[[50,1,1,0,1,[[1110,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]]],[29556,29880,29962]]]]},{"k":"G1215","v":[["oration",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27358]]]]},{"k":"G1216","v":[["Demetrius",[3,3,[[43,2,2,0,2,[[1036,2,2,0,2]]],[63,1,1,2,3,[[1165,1,1,2,3]]]],[27609,27623,30670]]]]},{"k":"G1217","v":[["maker",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30182]]]]},{"k":"G1218","v":[["people",[4,4,[[43,4,4,0,4,[[1029,1,1,0,1],[1034,1,1,1,2],[1036,2,2,2,4]]]],[27359,27528,27615,27618]]]]},{"k":"G1219","v":[["*",[4,4,[[43,4,4,0,4,[[1022,1,1,0,1],[1033,1,1,1,2],[1035,1,1,2,3],[1037,1,1,3,4]]]],[27077,27520,27585,27646]]],["common",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27077]]],["openly",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27520]]],["publickly",[2,2,[[43,2,2,0,2,[[1035,1,1,0,1],[1037,1,1,1,2]]]],[27585,27646]]]]},{"k":"G1220","v":[["*",[16,15,[[39,6,6,0,6,[[946,1,1,0,1],[948,4,4,1,5],[950,1,1,5,6]]],[40,3,3,6,9,[[962,1,1,6,7],[968,1,1,7,8],[970,1,1,8,9]]],[41,3,3,9,12,[[979,1,1,9,10],[982,1,1,10,11],[992,1,1,11,12]]],[42,2,2,12,14,[[1002,1,1,12,13],[1008,1,1,13,14]]],[65,2,1,14,15,[[1172,2,1,14,15]]]],[23755,23794,23801,23802,23805,23891,24444,24688,24759,25236,25398,25803,26264,26585,30799]]],["pence",[5,5,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,2,2,2,4,[[979,1,1,2,3],[982,1,1,3,4]]],[42,1,1,4,5,[[1008,1,1,4,5]]]],[23755,24759,25236,25398,26585]]],["penny",[9,8,[[39,5,5,0,5,[[948,4,4,0,4],[950,1,1,4,5]]],[40,1,1,5,6,[[968,1,1,5,6]]],[41,1,1,6,7,[[992,1,1,6,7]]],[65,2,1,7,8,[[1172,2,1,7,8]]]],[23794,23801,23802,23805,23891,24688,25803,30799]]],["pennyworth",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]]],[24444,26264]]]]},{"k":"G1221","v":[["+",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26214]]]]},{"k":"G1222","v":[["verily",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29993]]]]},{"k":"G1223","v":[["*",[610,546,[[39,46,45,0,45,[[929,1,1,0,1],[930,3,3,1,4],[932,2,2,4,6],[934,1,1,6,7],[935,2,1,7,8],[936,2,2,8,10],[938,1,1,10,11],[940,5,5,11,16],[941,5,5,16,21],[942,3,3,21,24],[943,2,2,24,26],[945,1,1,26,27],[946,3,3,27,30],[947,2,2,30,32],[949,2,2,32,34],[951,2,2,34,36],[952,4,4,36,40],[954,2,2,40,42],[955,3,3,42,45]]],[40,25,24,45,69,[[958,5,4,45,49],[959,1,1,49,50],[960,1,1,50,51],[962,5,5,51,56],[963,1,1,56,57],[965,1,1,57,58],[966,2,2,58,60],[967,2,2,60,62],[968,1,1,62,63],[969,2,2,63,65],[970,2,2,65,67],[971,1,1,67,68],[972,1,1,68,69]]],[41,27,25,69,94,[[973,2,2,69,71],[974,1,1,71,72],[976,1,1,72,73],[977,4,2,73,75],[978,1,1,75,76],[980,3,3,76,79],[983,4,4,79,83],[984,1,1,83,84],[985,1,1,84,85],[986,1,1,85,86],[989,2,2,86,88],[990,2,2,88,90],[993,1,1,90,91],[994,1,1,91,92],[995,2,2,92,94]]],[42,54,51,94,145,[[997,6,5,94,99],[999,2,2,99,101],[1000,4,4,101,105],[1001,2,2,105,107],[1002,3,2,107,109],[1003,3,3,109,112],[1004,2,2,112,114],[1005,1,1,114,115],[1006,6,6,115,121],[1007,3,3,121,124],[1008,8,7,124,131],[1009,1,1,131,132],[1010,2,2,132,134],[1011,3,3,134,137],[1012,2,2,137,139],[1013,1,1,139,140],[1015,4,4,140,144],[1016,1,1,144,145]]],[43,63,61,145,206,[[1018,2,2,145,147],[1019,6,6,147,153],[1020,3,3,153,156],[1021,4,4,156,160],[1022,2,2,160,162],[1024,1,1,162,163],[1025,2,2,163,165],[1026,2,2,165,167],[1027,3,3,167,170],[1028,2,2,170,172],[1029,1,1,172,173],[1030,2,2,173,175],[1031,2,2,175,177],[1032,6,6,177,183],[1033,2,2,183,185],[1034,1,1,185,186],[1035,4,4,186,190],[1036,2,2,190,192],[1037,2,2,192,194],[1038,4,4,194,198],[1039,1,1,198,199],[1040,2,2,199,201],[1041,3,2,201,203],[1045,4,3,203,206]]],[44,88,70,206,276,[[1046,5,5,206,211],[1047,5,5,211,216],[1048,9,7,216,223],[1049,8,6,223,229],[1050,19,12,229,241],[1051,3,2,241,243],[1052,9,7,243,250],[1053,7,6,250,256],[1055,1,1,256,257],[1056,3,2,257,259],[1057,2,2,259,261],[1058,3,2,261,263],[1059,3,3,263,266],[1060,8,7,266,273],[1061,3,3,273,276]]],[45,41,35,276,311,[[1062,5,4,276,280],[1063,1,1,280,281],[1064,2,2,281,283],[1065,4,4,283,287],[1067,1,1,287,288],[1068,3,3,288,291],[1069,3,2,291,293],[1070,3,2,293,295],[1071,4,4,295,299],[1072,6,4,299,303],[1073,1,1,303,304],[1074,1,1,304,305],[1075,2,2,305,307],[1076,4,3,307,310],[1077,1,1,310,311]]],[46,44,39,311,350,[[1078,8,7,311,318],[1079,3,3,318,321],[1080,3,3,321,324],[1081,6,5,324,329],[1082,5,4,329,333],[1083,3,2,333,335],[1084,1,1,335,336],[1085,4,4,336,340],[1086,4,4,340,344],[1087,3,3,344,347],[1088,2,1,347,348],[1089,1,1,348,349],[1090,1,1,349,350]]],[47,19,18,350,368,[[1091,4,3,350,353],[1092,5,5,353,358],[1093,4,4,358,362],[1094,3,3,362,365],[1095,2,2,365,367],[1096,1,1,367,368]]],[48,22,21,368,389,[[1097,4,4,368,372],[1098,4,4,372,376],[1099,6,6,376,382],[1100,4,3,382,385],[1101,2,2,385,387],[1102,2,2,387,389]]],[49,13,10,389,399,[[1103,8,6,389,395],[1104,1,1,395,396],[1105,4,3,396,399]]],[50,15,13,399,412,[[1107,9,7,399,406],[1108,3,3,406,409],[1109,2,2,409,411],[1110,1,1,411,412]]],[51,10,9,412,421,[[1111,1,1,412,413],[1112,1,1,413,414],[1113,4,3,414,417],[1114,2,2,417,419],[1115,2,2,419,421]]],[52,11,7,421,428,[[1117,8,4,421,425],[1118,3,3,425,428]]],[53,6,6,428,434,[[1119,1,1,428,429],[1120,2,2,429,431],[1122,2,2,431,433],[1123,1,1,433,434]]],[54,12,9,434,443,[[1125,7,5,434,439],[1126,3,2,439,441],[1127,1,1,441,442],[1128,1,1,442,443]]],[55,3,3,443,446,[[1129,1,1,443,444],[1131,2,2,444,446]]],[56,4,4,446,450,[[1132,4,4,446,450]]],[57,53,49,450,499,[[1133,4,4,450,454],[1134,10,8,454,462],[1135,2,2,462,464],[1136,1,1,464,465],[1137,3,3,465,468],[1138,3,3,468,471],[1139,6,6,471,477],[1141,6,5,477,482],[1142,2,2,482,484],[1143,6,5,484,489],[1144,4,4,489,493],[1145,6,6,493,499]]],[58,1,1,499,500,[[1147,1,1,499,500]]],[59,19,18,500,518,[[1151,8,8,500,508],[1152,4,4,508,512],[1153,4,4,512,516],[1154,1,1,516,517],[1155,2,1,517,518]]],[60,8,6,518,524,[[1156,4,2,518,520],[1157,1,1,520,521],[1158,3,3,521,524]]],[61,5,5,524,529,[[1160,1,1,524,525],[1161,1,1,525,526],[1162,2,2,526,528],[1163,1,1,528,529]]],[62,2,2,529,531,[[1164,2,2,529,531]]],[63,2,2,531,533,[[1165,2,2,531,533]]],[65,17,13,533,546,[[1167,3,2,533,535],[1168,1,1,535,536],[1170,1,1,536,537],[1172,2,1,537,538],[1173,1,1,538,539],[1178,3,2,539,541],[1179,1,1,541,542],[1184,3,3,542,545],[1186,2,1,545,546]]]],[23166,23174,23184,23192,23213,23223,23307,23329,23362,23373,23439,23490,23506,23516,23520,23532,23552,23560,23574,23591,23597,23599,23600,23606,23636,23639,23720,23734,23737,23750,23774,23786,23830,23869,23932,23952,23966,23972,23979,24001,24078,24115,24138,24147,24148,24261,24264,24283,24287,24297,24340,24409,24413,24421,24424,24433,24492,24568,24589,24613,24656,24664,24697,24730,24737,24775,24812,24836,24893,24963,24971,24977,25093,25112,25126,25147,25249,25264,25292,25413,25424,25429,25454,25481,25542,25573,25652,25662,25713,25719,25843,25886,25954,25960,26047,26051,26054,26061,26075,26137,26149,26160,26195,26197,26198,26226,26228,26314,26322,26341,26350,26371,26428,26440,26463,26482,26483,26490,26498,26500,26513,26527,26538,26565,26589,26591,26598,26607,26610,26619,26622,26641,26674,26679,26702,26718,26720,26741,26747,26779,26836,26848,26863,26867,26886,26925,26939,26965,26971,26972,26974,26975,26992,27012,27014,27017,27038,27043,27047,27052,27071,27078,27141,27194,27196,27241,27248,27280,27295,27302,27335,27337,27346,27400,27411,27417,27436,27449,27453,27454,27465,27469,27474,27486,27492,27533,27559,27566,27584,27585,27596,27611,27629,27654,27668,27683,27698,27699,27728,27762,27765,27771,27786,27901,27919,27924,27932,27935,27938,27942,27956,27974,27978,27985,27986,27989,28011,28013,28015,28016,28018,28021,28022,28033,28035,28038,28045,28046,28047,28048,28049,28052,28056,28057,28058,28059,28063,28064,28065,28066,28068,28072,28087,28095,28096,28098,28099,28102,28104,28116,28119,28126,28127,28136,28141,28153,28205,28237,28245,28246,28248,28271,28272,28294,28295,28300,28307,28312,28318,28321,28331,28333,28335,28354,28362,28363,28364,28372,28373,28384,28404,28415,28425,28439,28443,28448,28450,28481,28489,28492,28513,28533,28538,28550,28563,28568,28592,28594,28595,28609,28610,28612,28630,28642,28677,28687,28697,28720,28739,28775,28779,28801,28804,28805,28811,28816,28819,28820,28828,28834,28838,28845,28848,28852,28860,28864,28870,28873,28874,28884,28887,28895,28897,28905,28906,28929,28937,28940,28941,28950,28967,28968,28969,28970,28972,28980,28982,29022,29039,29053,29058,29069,29072,29082,29085,29097,29100,29102,29116,29120,29121,29128,29138,29144,29154,29168,29175,29202,29207,29211,29213,29221,29233,29237,29245,29247,29257,29260,29261,29263,29267,29268,29278,29288,29290,29310,29321,29350,29355,29372,29376,29380,29381,29385,29387,29421,29428,29429,29430,29466,29470,29474,29479,29481,29485,29487,29502,29506,29513,29523,29534,29545,29565,29583,29595,29597,29599,29605,29617,29630,29634,29663,29672,29675,29676,29690,29692,29694,29712,29726,29731,29752,29761,29786,29810,29815,29819,29821,29823,29829,29837,29868,29887,29905,29928,29929,29945,29947,29953,29960,29965,29966,29972,29977,29978,29979,29980,29986,29987,29988,29991,29992,30011,30014,30020,30033,30042,30044,30051,30056,30062,30073,30075,30082,30083,30085,30089,30116,30117,30119,30120,30131,30143,30153,30176,30179,30201,30205,30211,30213,30223,30227,30240,30243,30252,30253,30256,30262,30263,30305,30377,30379,30381,30386,30394,30395,30396,30397,30404,30412,30413,30418,30425,30438,30444,30445,30457,30477,30482,30483,30502,30527,30528,30534,30562,30580,30608,30612,30630,30647,30657,30668,30671,30698,30706,30720,30779,30802,30825,30902,30903,30922,31001,31003,31008,31042]]],["+",[138,135,[[39,19,19,0,19,[[934,1,1,0,1],[935,1,1,1,2],[938,1,1,2,3],[940,2,2,3,5],[941,2,2,5,7],[942,3,3,7,10],[946,2,2,10,12],[947,1,1,12,13],[949,1,1,13,14],[951,2,2,14,16],[952,3,3,16,19]]],[40,8,8,19,27,[[960,1,1,19,20],[962,3,3,20,23],[967,1,1,23,24],[968,1,1,24,25],[969,2,2,25,27]]],[41,6,6,27,33,[[977,1,1,27,28],[983,2,2,28,30],[984,1,1,30,31],[986,1,1,31,32],[993,1,1,32,33]]],[42,22,22,33,55,[[997,1,1,33,34],[1001,2,2,34,36],[1002,1,1,36,37],[1003,1,1,37,38],[1004,1,1,38,39],[1005,1,1,39,40],[1006,1,1,40,41],[1007,2,2,41,43],[1008,5,5,43,48],[1009,1,1,48,49],[1010,1,1,49,50],[1011,2,2,50,52],[1012,1,1,52,53],[1015,2,2,53,55]]],[43,6,6,55,61,[[1019,2,2,55,57],[1027,1,1,57,58],[1032,1,1,58,59],[1039,1,1,59,60],[1040,1,1,60,61]]],[44,11,10,61,71,[[1046,1,1,61,62],[1049,3,3,62,65],[1050,1,1,65,66],[1056,2,1,66,67],[1058,2,2,67,69],[1060,2,2,69,71]]],[45,11,10,71,81,[[1065,3,3,71,74],[1070,3,2,74,76],[1071,3,3,76,79],[1072,2,2,79,81]]],[46,10,10,81,91,[[1079,1,1,81,82],[1080,1,1,82,83],[1081,4,4,83,87],[1084,1,1,87,88],[1085,1,1,88,89],[1089,1,1,89,90],[1090,1,1,90,91]]],[48,4,4,91,95,[[1097,1,1,91,92],[1101,1,1,92,93],[1102,2,2,93,95]]],[50,1,1,95,96,[[1109,1,1,95,96]]],[51,6,6,96,102,[[1111,1,1,96,97],[1112,1,1,97,98],[1113,3,3,98,101],[1115,1,1,101,102]]],[52,3,3,102,105,[[1117,2,2,102,104],[1118,1,1,104,105]]],[53,2,2,105,107,[[1119,1,1,105,106],[1123,1,1,106,107]]],[54,3,2,107,109,[[1125,1,1,107,108],[1126,2,1,108,109]]],[55,1,1,109,110,[[1129,1,1,109,110]]],[56,2,2,110,112,[[1132,2,2,110,112]]],[57,8,8,112,120,[[1133,1,1,112,113],[1134,1,1,113,114],[1137,1,1,114,115],[1141,1,1,115,116],[1144,3,3,116,119],[1145,1,1,119,120]]],[59,3,3,120,123,[[1152,1,1,120,121],[1153,1,1,121,122],[1155,1,1,122,123]]],[60,3,3,123,126,[[1156,1,1,123,124],[1158,2,2,124,126]]],[61,3,3,126,129,[[1160,1,1,126,127],[1161,1,1,127,128],[1162,1,1,128,129]]],[62,1,1,129,130,[[1164,1,1,129,130]]],[63,1,1,130,131,[[1165,1,1,130,131]]],[65,4,4,131,135,[[1168,1,1,131,132],[1173,1,1,132,133],[1178,1,1,133,134],[1184,1,1,134,135]]]],[23307,23329,23439,23516,23520,23552,23591,23599,23600,23606,23737,23750,23774,23869,23932,23952,23966,23979,24001,24340,24421,24424,24433,24664,24697,24730,24737,25112,25424,25454,25481,25573,25843,26075,26226,26228,26322,26350,26428,26463,26498,26527,26538,26589,26598,26607,26610,26619,26641,26679,26718,26720,26741,26836,26848,26974,26975,27280,27469,27728,27762,27956,28033,28038,28045,28059,28237,28271,28272,28312,28333,28439,28443,28450,28550,28563,28592,28594,28595,28610,28630,28834,28852,28860,28864,28870,28874,28929,28941,29039,29053,29221,29321,29350,29355,29523,29565,29583,29595,29597,29599,29634,29672,29676,29694,29712,29786,29815,29837,29905,29947,29953,29972,29978,30033,30120,30223,30227,30240,30243,30412,30438,30477,30483,30528,30534,30562,30580,30608,30647,30668,30720,30825,30903,31001]]],["Because",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23720]]],["By",[7,7,[[44,3,3,0,3,[[1046,1,1,0,1],[1048,1,1,1,2],[1050,1,1,2,3]]],[45,1,1,3,4,[[1076,1,1,3,4]]],[46,1,1,4,5,[[1083,1,1,4,5]]],[57,1,1,5,6,[[1145,1,1,5,6]]],[59,1,1,6,7,[[1155,1,1,6,7]]]],[27935,28018,28049,28720,28906,30256,30477]]],["For",[5,5,[[40,1,1,0,1,[[963,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]],[50,2,2,2,4,[[1107,2,2,2,4]]],[54,1,1,4,5,[[1125,1,1,4,5]]]],[24492,27919,29470,29474,29821]]],["Through",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24971]]],["after",[3,3,[[40,1,1,0,1,[[958,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]]],[24261,27786,29082]]],["among",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29829]]],["at",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25542]]],["avoid",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28489]]],["because",[27,25,[[39,3,3,0,3,[[941,2,2,0,2],[955,1,1,2,3]]],[40,2,2,3,5,[[959,1,1,3,4],[962,1,1,4,5]]],[41,2,2,5,7,[[974,1,1,5,6],[983,1,1,6,7]]],[42,7,7,7,14,[[999,1,1,7,8],[1000,2,2,8,10],[1003,1,1,10,11],[1007,1,1,11,12],[1008,2,2,12,14]]],[43,3,2,14,16,[[1021,1,1,14,15],[1045,2,1,15,16]]],[44,4,3,16,19,[[1051,1,1,16,17],[1053,2,1,17,18],[1060,1,1,18,19]]],[45,1,1,19,20,[[1072,1,1,19,20]]],[47,1,1,20,21,[[1092,1,1,20,21]]],[48,2,2,21,23,[[1100,1,1,21,22],[1101,1,1,22,23]]],[57,2,2,23,25,[[1135,1,1,23,24],[1136,1,1,24,25]]]],[23560,23597,24148,24297,24413,24977,25413,26149,26197,26198,26371,26565,26610,26622,27043,27901,28087,28126,28318,28610,29085,29290,29310,30014,30020]]],["by",[233,210,[[39,16,16,0,16,[[929,1,1,0,1],[930,3,3,1,4],[932,1,1,4,5],[936,2,2,5,7],[940,1,1,7,8],[941,1,1,8,9],[943,2,2,9,11],[946,1,1,11,12],[949,1,1,12,13],[952,1,1,13,14],[954,1,1,14,15],[955,1,1,15,16]]],[40,3,3,16,19,[[962,1,1,16,17],[966,1,1,17,18],[970,1,1,18,19]]],[41,5,5,19,24,[[973,1,1,19,20],[977,1,1,20,21],[980,1,1,21,22],[990,1,1,22,23],[994,1,1,23,24]]],[42,10,8,24,32,[[997,4,3,24,27],[1002,2,1,27,28],[1006,3,3,28,31],[1010,1,1,31,32]]],[43,32,31,32,63,[[1018,1,1,32,33],[1019,4,4,33,37],[1020,3,3,37,40],[1021,3,3,40,43],[1022,2,2,43,45],[1024,1,1,45,46],[1026,1,1,46,47],[1027,1,1,47,48],[1028,2,2,48,50],[1029,1,1,50,51],[1031,1,1,51,52],[1032,3,3,52,55],[1034,1,1,55,56],[1035,2,2,56,58],[1036,1,1,58,59],[1038,1,1,59,60],[1040,1,1,60,61],[1041,2,1,61,62],[1045,1,1,62,63]]],[44,39,32,63,95,[[1046,2,2,63,65],[1047,3,3,65,68],[1048,3,3,68,71],[1050,13,9,71,80],[1051,2,1,80,81],[1052,8,6,81,87],[1053,1,1,87,88],[1055,1,1,88,89],[1057,1,1,89,90],[1060,3,3,90,93],[1061,2,2,93,95]]],[45,16,13,95,108,[[1062,4,3,95,98],[1063,1,1,98,99],[1064,2,2,99,101],[1067,1,1,101,102],[1069,2,1,102,103],[1072,1,1,103,104],[1073,1,1,104,105],[1075,1,1,105,106],[1076,2,1,106,107],[1077,1,1,107,108]]],[46,23,21,108,129,[[1078,8,7,108,115],[1079,1,1,115,116],[1081,1,1,116,117],[1082,4,3,117,120],[1083,2,2,120,122],[1085,1,1,122,123],[1086,2,2,123,125],[1087,3,3,125,128],[1088,1,1,128,129]]],[47,13,12,129,141,[[1091,4,3,129,132],[1092,2,2,132,134],[1093,3,3,134,137],[1094,1,1,137,138],[1095,2,2,138,140],[1096,1,1,140,141]]],[48,10,10,141,151,[[1097,2,2,141,143],[1098,1,1,143,144],[1099,6,6,144,150],[1100,1,1,150,151]]],[49,4,3,151,154,[[1103,4,3,151,154]]],[50,6,5,154,159,[[1107,4,3,154,157],[1108,1,1,157,158],[1109,1,1,158,159]]],[51,3,3,159,162,[[1113,1,1,159,160],[1114,1,1,160,161],[1115,1,1,161,162]]],[52,7,5,162,167,[[1117,5,3,162,165],[1118,2,2,165,167]]],[53,2,2,167,169,[[1122,2,2,167,169]]],[54,5,5,169,174,[[1125,4,4,169,173],[1128,1,1,173,174]]],[55,1,1,174,175,[[1131,1,1,174,175]]],[56,1,1,175,176,[[1132,1,1,175,176]]],[57,21,19,176,195,[[1133,2,2,176,178],[1134,3,3,178,181],[1135,1,1,181,182],[1138,2,2,182,184],[1139,4,4,184,188],[1141,4,3,188,191],[1143,4,3,191,194],[1145,1,1,194,195]]],[58,1,1,195,196,[[1147,1,1,195,196]]],[59,9,9,196,205,[[1151,4,4,196,200],[1152,2,2,200,202],[1153,3,3,202,205]]],[60,1,1,205,206,[[1156,1,1,205,206]]],[61,1,1,206,207,[[1163,1,1,206,207]]],[65,4,3,207,210,[[1167,1,1,207,208],[1178,2,1,208,209],[1179,1,1,209,210]]]],[23166,23174,23184,23192,23223,23362,23373,23506,23574,23636,23639,23734,23830,23972,24078,24138,24409,24589,24775,24963,25126,25249,25719,25886,26047,26054,26061,26314,26482,26483,26490,26674,26939,26965,26971,26972,26992,27012,27014,27017,27038,27047,27052,27071,27078,27141,27241,27295,27335,27337,27346,27417,27449,27454,27465,27533,27566,27585,27596,27683,27765,27771,27924,27932,27942,27974,27978,27989,28011,28013,28018,28052,28057,28058,28059,28063,28064,28065,28066,28068,28072,28095,28096,28098,28099,28102,28104,28127,28205,28246,28321,28331,28335,28354,28362,28372,28373,28384,28404,28415,28425,28481,28533,28612,28642,28687,28739,28779,28801,28804,28805,28811,28816,28819,28820,28838,28873,28884,28895,28897,28905,28906,28937,28968,28969,28972,28980,28982,29022,29058,29069,29072,29097,29102,29120,29121,29128,29154,29168,29175,29202,29207,29211,29245,29257,29260,29261,29263,29267,29268,29288,29372,29381,29387,29466,29481,29485,29513,29534,29597,29605,29630,29663,29675,29676,29690,29692,29752,29761,29810,29815,29819,29823,29887,29928,29945,29965,29966,29979,29980,29987,30011,30051,30062,30075,30083,30085,30089,30116,30117,30131,30176,30179,30201,30252,30305,30377,30386,30395,30397,30404,30413,30425,30444,30445,30483,30630,30698,30902,30922]]],["for",[55,48,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,4,3,1,4,[[958,3,2,1,3],[971,1,1,3,4]]],[41,4,4,4,8,[[980,2,2,4,6],[995,2,2,6,8]]],[42,7,7,8,15,[[1000,1,1,8,9],[1003,1,1,9,10],[1006,2,2,10,12],[1012,1,1,12,13],[1015,1,1,13,14],[1016,1,1,14,15]]],[43,2,2,15,17,[[1038,2,2,15,17]]],[44,6,5,17,22,[[1048,1,1,17,18],[1049,3,2,18,20],[1058,1,1,20,21],[1060,1,1,21,22]]],[45,5,4,22,26,[[1068,2,2,22,24],[1069,1,1,24,25],[1072,2,1,25,26]]],[46,2,2,26,28,[[1080,1,1,26,27],[1086,1,1,27,28]]],[48,1,1,28,29,[[1098,1,1,28,29]]],[49,5,4,29,33,[[1103,1,1,29,30],[1104,1,1,30,31],[1105,3,2,31,33]]],[50,1,1,33,34,[[1110,1,1,33,34]]],[57,6,6,34,40,[[1133,1,1,34,35],[1134,3,3,35,38],[1137,1,1,38,39],[1139,1,1,39,40]]],[59,2,2,40,42,[[1151,1,1,40,41],[1152,1,1,41,42]]],[65,9,6,42,48,[[1167,2,1,42,43],[1170,1,1,43,44],[1172,2,1,44,45],[1184,2,2,45,47],[1186,2,1,47,48]]]],[24147,24264,24287,24836,25264,25292,25954,25960,26195,26341,26500,26513,26747,26863,26886,27698,27699,28016,28046,28047,28271,28333,28492,28513,28538,28609,28848,28970,29233,29385,29421,29428,29429,29545,29977,29986,29987,29988,30042,30082,30394,30418,30706,30779,30802,31003,31008,31042]]],["from",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29663]]],["in",[9,9,[[39,2,2,0,2,[[935,1,1,0,1],[954,1,1,1,2]]],[43,1,1,2,3,[[1033,1,1,2,3]]],[46,1,1,3,4,[[1082,1,1,3,4]]],[51,1,1,4,5,[[1114,1,1,4,5]]],[53,1,1,5,6,[[1120,1,1,5,6]]],[57,2,2,6,8,[[1139,1,1,6,7],[1145,1,1,7,8]]],[60,1,1,8,9,[[1158,1,1,8,9]]]],[23329,24115,27492,28887,29617,29731,30073,30263,30527]]],["of",[12,11,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]],[42,2,2,2,4,[[1008,1,1,2,3],[1015,1,1,3,4]]],[43,1,1,4,5,[[1033,1,1,4,5]]],[44,2,2,5,7,[[1053,1,1,5,6],[1059,1,1,6,7]]],[46,1,1,7,8,[[1085,1,1,7,8]]],[49,2,1,8,9,[[1103,2,1,8,9]]],[57,1,1,9,10,[[1137,1,1,9,10]]],[60,1,1,10,11,[[1157,1,1,10,11]]]],[23213,25126,26591,26867,27486,28136,28294,28940,29376,30044,30502]]],["that",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27559]]],["their",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29992]]],["through",[92,91,[[39,3,3,0,3,[[940,2,2,0,2],[947,1,1,2,3]]],[40,4,4,3,7,[[958,1,1,3,4],[965,1,1,4,5],[966,1,1,5,6],[967,1,1,6,7]]],[41,7,7,7,14,[[976,1,1,7,8],[977,1,1,8,9],[978,1,1,9,10],[983,1,1,10,11],[989,2,2,11,13],[990,1,1,13,14]]],[42,6,6,14,20,[[997,1,1,14,15],[999,1,1,15,16],[1000,1,1,16,17],[1004,1,1,17,18],[1011,1,1,18,19],[1013,1,1,19,20]]],[43,9,9,20,29,[[1018,1,1,20,21],[1025,1,1,21,22],[1027,1,1,22,23],[1030,1,1,23,24],[1031,1,1,24,25],[1032,1,1,25,26],[1035,1,1,26,27],[1037,1,1,27,28],[1038,1,1,28,29]]],[44,20,19,29,48,[[1046,1,1,29,30],[1047,2,2,30,32],[1048,4,4,32,36],[1049,2,1,36,37],[1050,4,4,37,41],[1052,1,1,41,42],[1053,2,2,42,44],[1056,1,1,44,45],[1057,1,1,45,46],[1060,1,1,46,47],[1061,1,1,47,48]]],[45,5,5,48,53,[[1062,1,1,48,49],[1065,1,1,49,50],[1071,1,1,50,51],[1074,1,1,51,52],[1076,1,1,52,53]]],[46,4,4,53,57,[[1080,1,1,53,54],[1081,1,1,54,55],[1086,1,1,55,56],[1088,1,1,56,57]]],[47,4,4,57,61,[[1092,1,1,57,58],[1093,1,1,58,59],[1094,2,2,59,61]]],[48,5,5,61,66,[[1097,1,1,61,62],[1098,2,2,62,64],[1100,2,2,64,66]]],[49,2,2,66,68,[[1103,1,1,66,67],[1105,1,1,67,68]]],[50,5,5,68,73,[[1107,3,3,68,71],[1108,2,2,71,73]]],[54,2,2,73,75,[[1125,1,1,73,74],[1127,1,1,74,75]]],[55,1,1,75,76,[[1131,1,1,75,76]]],[56,1,1,76,77,[[1132,1,1,76,77]]],[57,9,9,77,86,[[1134,2,2,77,79],[1138,1,1,79,80],[1141,1,1,80,81],[1142,2,2,81,83],[1143,2,2,83,85],[1145,1,1,85,86]]],[59,3,3,86,89,[[1151,2,2,86,88],[1154,1,1,88,89]]],[60,1,1,89,90,[[1156,1,1,89,90]]],[61,1,1,90,91,[[1162,1,1,90,91]]]],[23490,23532,23786,24283,24568,24613,24656,25093,25126,25147,25429,25652,25662,25713,26051,26137,26160,26440,26702,26779,26925,27194,27302,27400,27436,27453,27584,27629,27668,27938,27985,27986,28015,28016,28021,28022,28035,28048,28056,28058,28068,28116,28119,28153,28245,28248,28307,28363,28364,28448,28568,28677,28775,28845,28874,28967,29022,29100,29116,29138,29144,29213,29237,29247,29278,29290,29380,29430,29479,29485,29487,29502,29506,29819,29868,29929,29960,29987,29991,30056,30119,30143,30153,30205,30211,30262,30379,30396,30457,30482,30612]]],["throughout",[3,3,[[43,2,2,0,2,[[1026,1,1,0,1],[1030,1,1,1,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]]],[27248,27411,28950]]],["to",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30482]]],["with",[16,16,[[40,1,1,0,1,[[972,1,1,0,1]]],[43,4,4,1,5,[[1025,1,1,1,2],[1032,1,1,2,3],[1036,1,1,3,4],[1037,1,1,4,5]]],[44,3,3,5,8,[[1053,1,1,5,6],[1059,2,2,6,8]]],[45,1,1,8,9,[[1075,1,1,8,9]]],[46,1,1,9,10,[[1079,1,1,9,10]]],[53,1,1,10,11,[[1120,1,1,10,11]]],[57,2,2,11,13,[[1144,1,1,11,12],[1145,1,1,12,13]]],[59,1,1,13,14,[[1151,1,1,13,14]]],[62,1,1,14,15,[[1164,1,1,14,15]]],[63,1,1,15,16,[[1165,1,1,15,16]]]],[24893,27196,27474,27611,27654,28141,28295,28300,28697,28828,29726,30213,30253,30381,30657,30671]]],["within",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24812]]]]},{"k":"G1224","v":[["*",[3,3,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,1,1,1,2,[[1033,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[25646,27492,30201]]],["over",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27492]]],["pass",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25646]]],["through",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30201]]]]},{"k":"G1225","v":[["accused",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25621]]]]},{"k":"G1226","v":[["*",[2,2,[[53,1,1,0,1,[[1119,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[29703,29931]]],["affirm",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29703]]],["constantly",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29931]]]]},{"k":"G1227","v":[["clearly",[2,2,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]]],[23321,25188]]]]},{"k":"G1228","v":[["*",[38,36,[[39,6,6,0,6,[[932,4,4,0,4],[941,1,1,4,5],[953,1,1,5,6]]],[41,6,6,6,12,[[976,5,5,6,11],[980,1,1,11,12]]],[42,3,3,12,15,[[1002,1,1,12,13],[1004,1,1,13,14],[1009,1,1,14,15]]],[43,2,2,15,17,[[1027,1,1,15,16],[1030,1,1,16,17]]],[48,2,2,17,19,[[1100,1,1,17,18],[1102,1,1,18,19]]],[53,3,3,19,22,[[1121,3,3,19,22]]],[54,2,2,22,24,[[1126,1,1,22,23],[1127,1,1,23,24]]],[55,1,1,24,25,[[1130,1,1,24,25]]],[57,1,1,25,26,[[1134,1,1,25,26]]],[58,1,1,26,27,[[1149,1,1,26,27]]],[59,1,1,27,28,[[1155,1,1,27,28]]],[61,4,2,28,30,[[1161,4,2,28,30]]],[64,1,1,30,31,[[1166,1,1,30,31]]],[65,5,5,31,36,[[1168,1,1,31,32],[1178,2,2,32,34],[1186,2,2,34,36]]]],[23210,23214,23217,23220,23578,24049,25065,25066,25068,25069,25076,25257,26327,26425,26632,27297,27372,29299,29348,29737,29738,29742,29853,29856,29911,29991,30344,30473,30587,30589,30681,30727,30900,30903,31040,31048]]],["Devil",[2,2,[[65,2,2,0,2,[[1178,1,1,0,1],[1186,1,1,1,2]]]],[30900,31040]]],["accusers",[2,2,[[54,1,1,0,1,[[1127,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]]],[29856,29911]]],["devil",[33,31,[[39,6,6,0,6,[[932,4,4,0,4],[941,1,1,4,5],[953,1,1,5,6]]],[41,6,6,6,12,[[976,5,5,6,11],[980,1,1,11,12]]],[42,3,3,12,15,[[1002,1,1,12,13],[1004,1,1,13,14],[1009,1,1,14,15]]],[43,2,2,15,17,[[1027,1,1,15,16],[1030,1,1,16,17]]],[48,2,2,17,19,[[1100,1,1,17,18],[1102,1,1,18,19]]],[53,2,2,19,21,[[1121,2,2,19,21]]],[54,1,1,21,22,[[1126,1,1,21,22]]],[57,1,1,22,23,[[1134,1,1,22,23]]],[58,1,1,23,24,[[1149,1,1,23,24]]],[59,1,1,24,25,[[1155,1,1,24,25]]],[61,4,2,25,27,[[1161,4,2,25,27]]],[64,1,1,27,28,[[1166,1,1,27,28]]],[65,3,3,28,31,[[1168,1,1,28,29],[1178,1,1,29,30],[1186,1,1,30,31]]]],[23210,23214,23217,23220,23578,24049,25065,25066,25068,25069,25076,25257,26327,26425,26632,27297,27372,29299,29348,29737,29738,29853,29991,30344,30473,30587,30589,30681,30727,30903,31048]]],["slanderers",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29742]]]]},{"k":"G1229","v":[["*",[3,3,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]]],[25361,27690,28172]]],["declared",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28172]]],["preach",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25361]]],["signify",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27690]]]]},{"k":"G1230","v":[["*",[3,3,[[40,1,1,0,1,[[972,1,1,0,1]]],[43,2,2,1,3,[[1042,1,1,1,2],[1044,1,1,2,3]]]],[24874,27809,27864]]],["after",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27809]]],["past",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24874]]],["spent",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27864]]]]},{"k":"G1231","v":[["*",[2,2,[[43,2,2,0,2,[[1040,1,1,0,1],[1041,1,1,1,2]]]],[27749,27791]]],["enquire",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27749]]],["uttermost",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27791]]]]},{"k":"G1232","v":[["known",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24990]]]]},{"k":"G1233","v":[["hearing",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27817]]]]},{"k":"G1234","v":[["murmured",[2,2,[[41,2,2,0,2,[[987,1,1,0,1],[991,1,1,1,2]]]],[25590,25738]]]]},{"k":"G1235","v":[["awake",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25333]]]]},{"k":"G1236","v":[["*",[2,2,[[53,1,1,0,1,[[1120,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[29718,29926]]],["lead",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29718]]],["living",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29926]]]]},{"k":"G1237","v":[["after",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27161]]]]},{"k":"G1238","v":[["crowns",[3,3,[[65,3,3,0,3,[[1178,1,1,0,1],[1179,1,1,1,2],[1185,1,1,2,3]]]],[30894,30909,31029]]]]},{"k":"G1239","v":[["*",[5,5,[[41,2,2,0,2,[[983,1,1,0,1],[990,1,1,1,2]]],[42,1,1,2,3,[[1002,1,1,2,3]]],[43,1,1,3,4,[[1021,1,1,3,4]]],[65,1,1,4,5,[[1183,1,1,4,5]]]],[25427,25710,26268,27057,30988]]],["distribute",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25710]]],["distributed",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26268]]],["divideth",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25427]]],["give",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30988]]],["made",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27057]]]]},{"k":"G1240","v":[["+",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27796]]]]},{"k":"G1241","v":[["*",[3,3,[[42,3,3,0,3,[[1009,2,2,0,2],[1017,1,1,2,3]]]],[26634,26635,26905]]],["girded",[2,2,[[42,2,2,0,2,[[1009,2,2,0,2]]]],[26634,26635]]],["girt",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26905]]]]},{"k":"G1242","v":[["*",[33,30,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[994,1,1,3,4]]],[43,2,2,4,6,[[1020,1,1,4,5],[1024,1,1,5,6]]],[44,2,2,6,8,[[1054,1,1,6,7],[1056,1,1,7,8]]],[45,1,1,8,9,[[1072,1,1,8,9]]],[46,2,2,9,11,[[1080,2,2,9,11]]],[47,3,3,11,14,[[1093,2,2,11,13],[1094,1,1,13,14]]],[48,1,1,14,15,[[1098,1,1,14,15]]],[57,17,14,15,29,[[1139,1,1,15,16],[1140,5,4,16,20],[1141,7,5,20,25],[1142,2,2,25,27],[1144,1,1,27,28],[1145,1,1,28,29]]],[65,1,1,29,30,[[1177,1,1,29,30]]]],[24082,24778,24965,25884,27021,27124,28159,28236,28625,28847,28855,29117,29119,29155,29241,30086,30098,30100,30101,30102,30109,30120,30121,30122,30125,30149,30162,30236,30261,30891]]],["covenant",[17,15,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,2,2,1,3,[[1020,1,1,1,2],[1024,1,1,2,3]]],[44,1,1,3,4,[[1056,1,1,3,4]]],[47,2,2,4,6,[[1093,2,2,4,6]]],[57,11,9,6,15,[[1140,5,4,6,10],[1141,2,1,10,11],[1142,2,2,11,13],[1144,1,1,13,14],[1145,1,1,14,15]]]],[24965,27021,27124,28236,29117,29119,30098,30100,30101,30102,30109,30149,30162,30236,30261]]],["covenants",[3,3,[[44,1,1,0,1,[[1054,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]],[48,1,1,2,3,[[1098,1,1,2,3]]]],[28159,29155,29241]]],["testament",[13,12,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[45,1,1,3,4,[[1072,1,1,3,4]]],[46,2,2,4,6,[[1080,2,2,4,6]]],[57,6,5,6,11,[[1139,1,1,6,7],[1141,5,4,7,11]]],[65,1,1,11,12,[[1177,1,1,11,12]]]],[24082,24778,25884,28625,28847,28855,30086,30120,30121,30122,30125,30891]]]]},{"k":"G1243","v":[["*",[3,3,[[45,3,3,0,3,[[1073,3,3,0,3]]]],[28638,28639,28640]]],["differences",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28639]]],["diversities",[2,2,[[45,2,2,0,2,[[1073,2,2,0,2]]]],[28638,28640]]]]},{"k":"G1244","v":[["*",[2,2,[[41,1,1,0,1,[[987,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]]],[25600,28645]]],["divided",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25600]]],["dividing",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28645]]]]},{"k":"G1245","v":[["purge",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23204,25042]]]]},{"k":"G1246","v":[["convinced",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27585]]]]},{"k":"G1247","v":[["*",[37,32,[[39,6,5,0,5,[[932,1,1,0,1],[936,1,1,1,2],[948,2,1,2,3],[953,1,1,3,4],[955,1,1,4,5]]],[40,5,4,5,9,[[957,2,2,5,7],[966,2,1,7,8],[971,1,1,8,9]]],[41,8,7,9,16,[[976,1,1,9,10],[980,1,1,10,11],[982,1,1,11,12],[984,1,1,12,13],[989,1,1,13,14],[994,3,2,14,16]]],[42,3,2,16,18,[[1008,3,2,16,18]]],[43,2,2,18,20,[[1023,1,1,18,19],[1036,1,1,19,20]]],[44,1,1,20,21,[[1060,1,1,20,21]]],[46,3,3,21,24,[[1080,1,1,21,22],[1085,2,2,22,24]]],[53,2,2,24,26,[[1121,2,2,24,26]]],[54,1,1,26,27,[[1125,1,1,26,27]]],[56,1,1,27,28,[[1132,1,1,27,28]]],[57,2,1,28,29,[[1138,2,1,28,29]]],[59,3,3,29,32,[[1151,1,1,29,30],[1154,2,2,30,32]]]],[23220,23360,23820,24052,24184,24228,24246,24633,24867,25102,25248,25403,25496,25659,25890,25891,26582,26606,27103,27607,28328,28844,28951,28952,29741,29744,29827,29951,30054,30386,30456,30457]]],["administered",[2,2,[[46,2,2,0,2,[[1085,2,2,0,2]]]],[28951,28952]]],["deacon",[2,2,[[53,2,2,0,2,[[1121,2,2,0,2]]]],[29741,29744]]],["minister",[7,7,[[39,2,2,0,2,[[948,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[966,1,1,2,3]]],[57,1,1,3,4,[[1138,1,1,3,4]]],[59,3,3,4,7,[[1151,1,1,4,5],[1154,2,2,5,7]]]],[23820,24052,24633,30054,30386,30456,30457]]],["ministered",[10,10,[[39,2,2,0,2,[[932,1,1,0,1],[936,1,1,1,2]]],[40,3,3,2,5,[[957,2,2,2,4],[971,1,1,4,5]]],[41,2,2,5,7,[[976,1,1,5,6],[980,1,1,6,7]]],[43,1,1,7,8,[[1036,1,1,7,8]]],[46,1,1,8,9,[[1080,1,1,8,9]]],[57,1,1,9,10,[[1138,1,1,9,10]]]],[23220,23360,24228,24246,24867,25102,25248,27607,28844,30054]]],["ministering",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24184]]],["serve",[7,6,[[41,4,4,0,4,[[982,1,1,0,1],[984,1,1,1,2],[989,1,1,2,3],[994,1,1,3,4]]],[42,2,1,4,5,[[1008,2,1,4,5]]],[43,1,1,5,6,[[1023,1,1,5,6]]]],[25403,25496,25659,25890,26606,27103]]],["served",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26582]]],["serveth",[2,1,[[41,2,1,0,1,[[994,2,1,0,1]]]],[25891]]],["unto",[5,5,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[44,1,1,2,3,[[1060,1,1,2,3]]],[54,1,1,3,4,[[1125,1,1,3,4]]],[56,1,1,4,5,[[1132,1,1,4,5]]]],[23820,24633,28328,29827,29951]]]]},{"k":"G1248","v":[["*",[34,32,[[41,1,1,0,1,[[982,1,1,0,1]]],[43,8,8,1,9,[[1018,2,2,1,3],[1023,2,2,3,5],[1028,1,1,5,6],[1029,1,1,6,7],[1037,1,1,7,8],[1038,1,1,8,9]]],[44,4,3,9,12,[[1056,1,1,9,10],[1057,2,1,10,11],[1060,1,1,11,12]]],[45,2,2,12,14,[[1073,1,1,12,13],[1077,1,1,13,14]]],[46,12,11,14,25,[[1080,4,3,14,17],[1081,1,1,17,18],[1082,1,1,18,19],[1083,1,1,19,20],[1085,1,1,20,21],[1086,3,3,21,24],[1088,1,1,24,25]]],[48,1,1,25,26,[[1100,1,1,25,26]]],[50,1,1,26,27,[[1110,1,1,26,27]]],[53,1,1,27,28,[[1119,1,1,27,28]]],[54,2,2,28,30,[[1128,2,2,28,30]]],[57,1,1,30,31,[[1133,1,1,30,31]]],[65,1,1,31,32,[[1168,1,1,31,32]]]],[25403,26940,26948,27102,27105,27336,27362,27650,27683,28222,28252,28334,28639,28791,28848,28849,28850,28860,28895,28901,28936,28957,28968,28969,28997,29284,29559,29708,29875,29881,29977,30736]]],["+",[2,2,[[43,1,1,0,1,[[1028,1,1,0,1]]],[57,1,1,1,2,[[1133,1,1,1,2]]]],[27336,29977]]],["administration",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28968]]],["administrations",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28639]]],["ministering",[3,3,[[44,1,1,0,1,[[1057,1,1,0,1]]],[46,2,2,1,3,[[1085,1,1,1,2],[1086,1,1,2,3]]]],[28252,28936,28957]]],["ministration",[6,5,[[43,1,1,0,1,[[1023,1,1,0,1]]],[46,5,4,1,5,[[1080,4,3,1,4],[1086,1,1,4,5]]]],[27102,28848,28849,28850,28969]]],["ministry",[16,16,[[43,6,6,0,6,[[1018,2,2,0,2],[1023,1,1,2,3],[1029,1,1,3,4],[1037,1,1,4,5],[1038,1,1,5,6]]],[44,1,1,6,7,[[1057,1,1,6,7]]],[45,1,1,7,8,[[1077,1,1,7,8]]],[46,3,3,8,11,[[1081,1,1,8,9],[1082,1,1,9,10],[1083,1,1,10,11]]],[48,1,1,11,12,[[1100,1,1,11,12]]],[50,1,1,12,13,[[1110,1,1,12,13]]],[53,1,1,13,14,[[1119,1,1,13,14]]],[54,2,2,14,16,[[1128,2,2,14,16]]]],[26940,26948,27105,27362,27650,27683,28252,28791,28860,28895,28901,29284,29559,29708,29875,29881]]],["office",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28222]]],["service",[3,3,[[44,1,1,0,1,[[1060,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[28334,28997,30736]]],["serving",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25403]]]]},{"k":"G1249","v":[["*",[30,28,[[39,3,3,0,3,[[948,1,1,0,1],[950,1,1,1,2],[951,1,1,2,3]]],[40,2,2,3,5,[[965,1,1,3,4],[966,1,1,4,5]]],[42,3,3,5,8,[[998,2,2,5,7],[1008,1,1,7,8]]],[44,4,3,8,11,[[1058,2,1,8,9],[1060,1,1,9,10],[1061,1,1,10,11]]],[45,1,1,11,12,[[1064,1,1,11,12]]],[46,5,4,12,16,[[1080,1,1,12,13],[1083,1,1,13,14],[1088,3,2,14,16]]],[47,1,1,16,17,[[1092,1,1,16,17]]],[48,2,2,17,19,[[1099,1,1,17,18],[1102,1,1,18,19]]],[49,1,1,19,20,[[1103,1,1,19,20]]],[50,4,4,20,24,[[1107,3,3,20,23],[1110,1,1,23,24]]],[51,1,1,24,25,[[1113,1,1,24,25]]],[53,3,3,25,28,[[1121,2,2,25,27],[1122,1,1,27,28]]]],[23818,23885,23929,24573,24631,26100,26104,26606,28270,28311,28337,28415,28847,28902,29004,29012,29098,29258,29358,29362,29472,29488,29490,29549,29592,29739,29743,29753]]],["deacons",[3,3,[[49,1,1,0,1,[[1103,1,1,0,1]]],[53,2,2,1,3,[[1121,2,2,1,3]]]],[29362,29739,29743]]],["minister",[14,13,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[44,3,2,2,4,[[1058,2,1,2,3],[1060,1,1,3,4]]],[47,1,1,4,5,[[1092,1,1,4,5]]],[48,2,2,5,7,[[1099,1,1,5,6],[1102,1,1,6,7]]],[50,4,4,7,11,[[1107,3,3,7,10],[1110,1,1,10,11]]],[51,1,1,11,12,[[1113,1,1,11,12]]],[53,1,1,12,13,[[1122,1,1,12,13]]]],[23818,24631,28270,28311,29098,29258,29358,29472,29488,29490,29549,29592,29753]]],["ministers",[6,5,[[45,1,1,0,1,[[1064,1,1,0,1]]],[46,5,4,1,5,[[1080,1,1,1,2],[1083,1,1,2,3],[1088,3,2,3,5]]]],[28415,28847,28902,29004,29012]]],["servant",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[42,1,1,2,3,[[1008,1,1,2,3]]],[44,1,1,3,4,[[1061,1,1,3,4]]]],[23929,24573,26606,28337]]],["servants",[3,3,[[39,1,1,0,1,[[950,1,1,0,1]]],[42,2,2,1,3,[[998,2,2,1,3]]]],[23885,26100,26104]]]]},{"k":"G1250","v":[["*",[8,7,[[40,1,1,0,1,[[962,1,1,0,1]]],[42,2,2,1,3,[[1002,1,1,1,2],[1017,1,1,2,3]]],[43,3,2,3,5,[[1040,2,1,3,4],[1044,1,1,4,5]]],[65,2,2,5,7,[[1177,1,1,5,6],[1178,1,1,6,7]]]],[24444,26264,26906,27757,27892,30875,30897]]],["+",[3,3,[[43,1,1,0,1,[[1044,1,1,0,1]]],[65,2,2,1,3,[[1177,1,1,1,2],[1178,1,1,2,3]]]],[27892,30875,30897]]],["hundred",[5,4,[[40,1,1,0,1,[[962,1,1,0,1]]],[42,2,2,1,3,[[1002,1,1,1,2],[1017,1,1,2,3]]],[43,2,1,3,4,[[1040,2,1,3,4]]]],[24444,26264,26906,27757]]]]},{"k":"G1251","v":[["hear",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27769]]]]},{"k":"G1252","v":[["*",[19,18,[[39,2,2,0,2,[[944,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[967,1,1,2,3]]],[43,4,4,3,7,[[1027,1,1,3,4],[1028,2,2,4,6],[1032,1,1,6,7]]],[44,2,2,7,9,[[1049,1,1,7,8],[1059,1,1,8,9]]],[45,5,5,9,14,[[1065,1,1,9,10],[1067,1,1,10,11],[1072,2,2,11,13],[1075,1,1,13,14]]],[58,3,2,14,16,[[1146,2,1,14,15],[1147,1,1,15,16]]],[64,2,2,16,18,[[1166,2,2,16,18]]]],[23675,23847,24663,27279,27309,27319,27451,28042,28303,28440,28472,28629,28631,28707,30272,30297,30681,30694]]],["+",[3,3,[[43,1,1,0,1,[[1032,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[27451,28440,30297]]],["contended",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27309]]],["contending",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30681]]],["difference",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30694]]],["discern",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23675]]],["discerning",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28629]]],["doubt",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]]],[23847,24663]]],["doubteth",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28303]]],["doubting",[2,2,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]]],[27279,27319]]],["judge",[3,3,[[45,3,3,0,3,[[1067,1,1,0,1],[1072,1,1,1,2],[1075,1,1,2,3]]]],[28472,28631,28707]]],["staggered",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28042]]],["wavereth",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30272]]],["wavering",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30272]]]]},{"k":"G1253","v":[["*",[3,3,[[44,1,1,0,1,[[1059,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]],[57,1,1,2,3,[[1137,1,1,2,3]]]],[28281,28644,30044]]],["discern",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30044]]],["discerning",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28644]]],["disputations",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28281]]]]},{"k":"G1254","v":[["forbad",[1,1,[[39,1,1,0,1,[[931,1,1,0,1]]]],[23206]]]]},{"k":"G1255","v":[["*",[2,2,[[41,2,2,0,2,[[973,1,1,0,1],[978,1,1,1,2]]]],[24958,25157]]],["abroad",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24958]]],["communed",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25157]]]]},{"k":"G1256","v":[["*",[13,13,[[40,1,1,0,1,[[965,1,1,0,1]]],[43,10,10,1,11,[[1034,2,2,1,3],[1035,2,2,3,5],[1036,2,2,5,7],[1037,2,2,7,9],[1041,2,2,9,11]]],[57,1,1,11,12,[[1144,1,1,11,12]]],[64,1,1,12,13,[[1166,1,1,12,13]]]],[24572,27525,27540,27561,27576,27593,27594,27633,27635,27781,27794,30217,30681]]],["disputed",[3,3,[[40,1,1,0,1,[[965,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[24572,27540,30681]]],["disputing",[3,3,[[43,3,3,0,3,[[1036,2,2,0,2],[1041,1,1,2,3]]]],[27593,27594,27781]]],["preached",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27633]]],["preaching",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27635]]],["reasoned",[4,4,[[43,4,4,0,4,[[1034,1,1,0,1],[1035,2,2,1,3],[1041,1,1,3,4]]]],[27525,27561,27576,27794]]],["speaketh",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30217]]]]},{"k":"G1257","v":[["ceased",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25240]]]]},{"k":"G1258","v":[["*",[6,6,[[43,6,6,0,6,[[1018,1,1,0,1],[1019,2,2,1,3],[1038,1,1,3,4],[1039,1,1,4,5],[1043,1,1,5,6]]]],[26942,26955,26957,27704,27706,27837]]],["language",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26955]]],["tongue",[5,5,[[43,5,5,0,5,[[1018,1,1,0,1],[1019,1,1,1,2],[1038,1,1,2,3],[1039,1,1,3,4],[1043,1,1,4,5]]]],[26942,26957,27704,27706,27837]]]]},{"k":"G1259","v":[["reconciled",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23258]]]]},{"k":"G1260","v":[["*",[16,15,[[39,3,3,0,3,[[944,2,2,0,2],[949,1,1,2,3]]],[40,6,5,3,8,[[958,3,2,3,5],[964,2,2,5,7],[965,1,1,7,8]]],[41,6,6,8,14,[[973,1,1,8,9],[975,1,1,9,10],[977,2,2,10,12],[984,1,1,12,13],[992,1,1,13,14]]],[42,1,1,14,15,[[1007,1,1,14,15]]]],[23679,23680,23851,24266,24268,24516,24517,24571,24922,25040,25128,25129,25476,25793,26573]]],["consider",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26573]]],["disputed",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24571]]],["mind",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24922]]],["mused",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25040]]],["reason",[5,5,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[964,1,1,2,3]]],[41,2,2,3,5,[[977,2,2,3,5]]]],[23680,24268,24517,25128,25129]]],["reasoned",[5,5,[[39,2,2,0,2,[[944,1,1,0,1],[949,1,1,1,2]]],[40,2,2,2,4,[[958,1,1,2,3],[964,1,1,3,4]]],[41,1,1,4,5,[[992,1,1,4,5]]]],[23679,23851,24268,24516,25793]]],["reasoning",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24266]]],["thought",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25476]]]]},{"k":"G1261","v":[["*",[14,14,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,6,6,2,8,[[974,1,1,2,3],[977,1,1,3,4],[978,1,1,4,5],[981,2,2,5,7],[996,1,1,7,8]]],[44,2,2,8,10,[[1046,1,1,8,9],[1059,1,1,9,10]]],[45,1,1,10,11,[[1064,1,1,10,11]]],[49,1,1,11,12,[[1104,1,1,11,12]]],[53,1,1,12,13,[[1120,1,1,12,13]]],[58,1,1,13,14,[[1147,1,1,13,14]]]],[23652,24484,25008,25129,25154,25347,25348,26029,27951,28281,28430,29405,29724,30297]]],["disputings",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29405]]],["doubtful",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28281]]],["doubting",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29724]]],["imaginations",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27951]]],["reasoning",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25347]]],["thought",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25348]]],["thoughts",[8,8,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,4,4,2,6,[[974,1,1,2,3],[977,1,1,3,4],[978,1,1,4,5],[996,1,1,5,6]]],[45,1,1,6,7,[[1064,1,1,6,7]]],[58,1,1,7,8,[[1147,1,1,7,8]]]],[23652,24484,25008,25129,25154,26029,28430,30297]]]]},{"k":"G1262","v":[["scattered",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27095]]]]},{"k":"G1263","v":[["*",[15,15,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,9,9,1,10,[[1019,1,1,1,2],[1025,1,1,2,3],[1027,1,1,3,4],[1035,1,1,4,5],[1037,3,3,5,8],[1040,1,1,8,9],[1045,1,1,9,10]]],[51,1,1,10,11,[[1114,1,1,10,11]]],[53,1,1,11,12,[[1123,1,1,11,12]]],[54,2,2,12,14,[[1126,1,1,12,13],[1128,1,1,13,14]]],[57,1,1,14,15,[[1134,1,1,14,15]]]],[25648,26989,27201,27301,27562,27647,27649,27650,27745,27922,29609,29784,29841,29871,29983]]],["Testifying",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27647]]],["charge",[2,2,[[53,1,1,0,1,[[1123,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]]],[29784,29871]]],["charging",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29841]]],["testified",[6,6,[[43,4,4,0,4,[[1025,1,1,0,1],[1035,1,1,1,2],[1040,1,1,2,3],[1045,1,1,3,4]]],[51,1,1,4,5,[[1114,1,1,4,5]]],[57,1,1,5,6,[[1134,1,1,5,6]]]],[27201,27562,27745,27922,29609,29983]]],["testify",[4,4,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,3,3,1,4,[[1019,1,1,1,2],[1027,1,1,2,3],[1037,1,1,3,4]]]],[25648,26989,27301,27650]]],["witnesseth",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27649]]]]},{"k":"G1264","v":[["strove",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27743]]]]},{"k":"G1265","v":[["*",[5,5,[[41,2,2,0,2,[[973,1,1,0,1],[994,1,1,1,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]],[57,1,1,3,4,[[1133,1,1,3,4]]],[60,1,1,4,5,[[1158,1,1,4,5]]]],[24915,25892,29086,29974,30526]]],["continue",[2,2,[[47,1,1,0,1,[[1092,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[29086,30526]]],["continued",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25892]]],["remained",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24915]]],["remainest",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29974]]]]},{"k":"G1266","v":[["*",[12,11,[[39,2,1,0,1,[[955,2,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,6,6,2,8,[[983,2,2,2,4],[984,2,2,4,6],[994,1,1,6,7],[995,1,1,7,8]]],[42,1,1,8,9,[[1015,1,1,8,9]]],[43,2,2,9,11,[[1019,2,2,9,11]]]],[24164,24850,25422,25423,25511,25512,25881,25969,26849,26952,26994]]],["cloven",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26952]]],["divide",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25881]]],["divided",[4,4,[[41,4,4,0,4,[[983,2,2,0,2],[984,2,2,2,4]]]],[25422,25423,25511,25512]]],["parted",[6,5,[[39,2,1,0,1,[[955,2,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[43,1,1,4,5,[[1019,1,1,4,5]]]],[24164,24850,25969,26849,26994]]]]},{"k":"G1267","v":[["division",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25510]]]]},{"k":"G1268","v":[["spread",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27039]]]]},{"k":"G1269","v":[["+",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24915]]]]},{"k":"G1270","v":[["thoughts",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25422]]]]},{"k":"G1271","v":[["*",[13,13,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[982,1,1,3,4]]],[48,3,3,4,7,[[1097,1,1,4,5],[1098,1,1,5,6],[1100,1,1,6,7]]],[50,1,1,7,8,[[1107,1,1,7,8]]],[57,2,2,8,10,[[1140,1,1,8,9],[1142,1,1,9,10]]],[59,1,1,10,11,[[1151,1,1,10,11]]],[60,1,1,11,12,[[1158,1,1,11,12]]],[61,1,1,12,13,[[1163,1,1,12,13]]]],[23909,24703,24944,25390,29224,29232,29290,29486,30102,30149,30387,30523,30644]]],["imagination",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24944]]],["mind",[7,7,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[48,1,1,3,4,[[1098,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]],[57,1,1,5,6,[[1140,1,1,5,6]]],[59,1,1,6,7,[[1151,1,1,6,7]]]],[23909,24703,25390,29232,29486,30102,30387]]],["minds",[2,2,[[57,1,1,0,1,[[1142,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[30149,30523]]],["understanding",[3,3,[[48,2,2,0,2,[[1097,1,1,0,1],[1100,1,1,1,2]]],[61,1,1,2,3,[[1163,1,1,2,3]]]],[29224,29290,30644]]]]},{"k":"G1272","v":[["*",[8,8,[[40,2,2,0,2,[[963,2,2,0,2]]],[41,4,4,2,6,[[974,1,1,2,3],[996,3,3,3,6]]],[43,2,2,6,8,[[1033,1,1,6,7],[1034,1,1,7,8]]]],[24497,24498,24996,26022,26023,26036,27497,27526]]],["Opening",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27526]]],["opened",[6,6,[[40,2,2,0,2,[[963,2,2,0,2]]],[41,3,3,2,5,[[996,3,3,2,5]]],[43,1,1,5,6,[[1033,1,1,5,6]]]],[24497,24498,26022,26023,26036,27497]]],["openeth",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24996]]]]},{"k":"G1273","v":[["+",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25158]]]]},{"k":"G1274","v":[["finished",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27671]]]]},{"k":"G1275","v":[["*",[7,7,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[43,2,2,2,4,[[1027,1,1,2,3],[1041,1,1,3,4]]],[44,1,1,4,5,[[1056,1,1,4,5]]],[57,2,2,5,7,[[1141,1,1,5,6],[1145,1,1,6,7]]]],[24369,26044,27261,27785,28219,30111,30256]]],["alway",[2,2,[[43,1,1,0,1,[[1027,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]]],[27261,28219]]],["always",[3,3,[[40,1,1,0,1,[[961,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[24369,27785,30111]]],["continually",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[26044,30256]]]]},{"k":"G1276","v":[["*",[6,6,[[39,2,2,0,2,[[937,1,1,0,1],[942,1,1,1,2]]],[40,2,2,2,4,[[961,1,1,2,3],[962,1,1,3,4]]],[41,1,1,4,5,[[988,1,1,4,5]]],[43,1,1,5,6,[[1038,1,1,5,6]]]],[23380,23631,24385,24460,25646,27666]]],["over",[5,5,[[39,2,2,0,2,[[937,1,1,0,1],[942,1,1,1,2]]],[40,2,2,2,4,[[961,1,1,2,3],[962,1,1,3,4]]],[43,1,1,4,5,[[1038,1,1,4,5]]]],[23380,23631,24385,24460,27666]]],["pass",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25646]]]]},{"k":"G1277","v":[["over",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27860]]]]},{"k":"G1278","v":[["grieved",[2,2,[[43,2,2,0,2,[[1021,1,1,0,1],[1033,1,1,1,2]]]],[27024,27501]]]]},{"k":"G1279","v":[["*",[5,5,[[41,3,3,0,3,[[978,1,1,0,1],[985,1,1,1,2],[990,1,1,2,3]]],[43,1,1,3,4,[[1033,1,1,3,4]]],[44,1,1,4,5,[[1060,1,1,4,5]]]],[25147,25540,25724,27487,28327]]],["by",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25724]]],["journey",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28327]]],["through",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27487]]],["went",[2,2,[[41,2,2,0,2,[[978,1,1,0,1],[985,1,1,1,2]]]],[25147,25540]]]]},{"k":"G1280","v":[["*",[5,5,[[41,2,2,0,2,[[981,1,1,0,1],[996,1,1,1,2]]],[43,3,3,2,5,[[1019,1,1,2,3],[1022,1,1,3,4],[1027,1,1,4,5]]]],[25308,25995,26961,27083,27276]]],["doubt",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26961]]],["doubted",[2,2,[[43,2,2,0,2,[[1022,1,1,0,1],[1027,1,1,1,2]]]],[27083,27276]]],["perplexed",[2,2,[[41,2,2,0,2,[[981,1,1,0,1],[996,1,1,1,2]]]],[25308,25995]]]]},{"k":"G1281","v":[["trading",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25746]]]]},{"k":"G1282","v":[["cut",[2,2,[[43,2,2,0,2,[[1022,1,1,0,1],[1024,1,1,1,2]]]],[27092,27170]]]]},{"k":"G1283","v":[["spoil",[4,2,[[39,2,1,0,1,[[940,2,1,0,1]]],[40,2,1,1,2,[[959,2,1,1,2]]]],[23518,24315]]]]},{"k":"G1284","v":[["*",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,2,2,2,4,[[977,1,1,2,3],[980,1,1,3,4]]],[43,1,1,4,5,[[1031,1,1,4,5]]]],[24119,24817,25113,25274,27428]]],["brake",[2,2,[[41,2,2,0,2,[[977,1,1,0,1],[980,1,1,1,2]]]],[25113,25274]]],["rent",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[43,1,1,2,3,[[1031,1,1,2,3]]]],[24119,24817,27428]]]]},{"k":"G1285","v":[["told",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23758]]]]},{"k":"G1286","v":[["violence",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25039]]]]},{"k":"G1287","v":[["*",[9,9,[[39,3,3,0,3,[[953,2,2,0,2],[954,1,1,2,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[41,3,3,4,7,[[973,1,1,4,5],[987,1,1,5,6],[988,1,1,6,7]]],[42,1,1,7,8,[[1007,1,1,7,8]]],[43,1,1,8,9,[[1022,1,1,8,9]]]],[24032,24034,24085,24781,24944,25601,25621,26575,27096]]],["abroad",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]]],[24085,26575]]],["dispersed",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27096]]],["scattered",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]]],[24781,24944]]],["strawed",[2,2,[[39,2,2,0,2,[[953,2,2,0,2]]]],[24032,24034]]],["wasted",[2,2,[[41,2,2,0,2,[[987,1,1,0,1],[988,1,1,1,2]]]],[25601,25621]]]]},{"k":"G1288","v":[["*",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[24368,27744]]],["asunder",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24368]]],["pieces",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27744]]]]},{"k":"G1289","v":[["*",[3,3,[[43,3,3,0,3,[[1025,2,2,0,2],[1028,1,1,2,3]]]],[27177,27180,27326]]],["+",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27326]]],["abroad",[2,2,[[43,2,2,0,2,[[1025,2,2,0,2]]]],[27177,27180]]]]},{"k":"G1290","v":[["*",[3,3,[[42,1,1,0,1,[[1003,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]],[59,1,1,2,3,[[1151,1,1,2,3]]]],[26363,30267,30375]]],["+",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30267]]],["dispersed",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26363]]],["throughout",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30375]]]]},{"k":"G1291","v":[["*",[8,7,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,5,4,1,5,[[961,1,1,1,2],[963,2,1,2,3],[964,1,1,3,4],[965,1,1,4,5]]],[43,1,1,5,6,[[1032,1,1,5,6]]],[57,1,1,6,7,[[1144,1,1,6,7]]]],[23692,24407,24499,24515,24547,27466,30232]]],["+",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27466]]],["charged",[6,5,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,5,4,1,5,[[961,1,1,1,2],[963,2,1,2,3],[964,1,1,3,4],[965,1,1,4,5]]]],[23692,24407,24499,24515,24547]]],["commanded",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30232]]]]},{"k":"G1292","v":[["space",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27066]]]]},{"k":"G1293","v":[["*",[3,3,[[44,2,2,0,2,[[1048,1,1,0,1],[1055,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]]],[28013,28200,28685]]],["difference",[2,2,[[44,2,2,0,2,[[1048,1,1,0,1],[1055,1,1,1,2]]]],[28013,28200]]],["distinction",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28685]]]]},{"k":"G1294","v":[["*",[7,7,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[995,1,1,2,3]]],[43,3,3,3,6,[[1030,2,2,3,5],[1037,1,1,5,6]]],[49,1,1,6,7,[[1104,1,1,6,7]]]],[23717,25342,25937,27370,27372,27656,29406]]],["away",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27370]]],["perverse",[3,3,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[23717,25342,29406]]],["pervert",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27372]]],["perverting",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25937]]],["things",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27656]]]]},{"k":"G1295","v":[["*",[8,8,[[39,1,1,0,1,[[942,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[43,5,5,2,7,[[1040,1,1,2,3],[1044,2,2,3,5],[1045,2,2,5,7]]],[59,1,1,7,8,[[1153,1,1,7,8]]]],[23633,25198,27758,27898,27899,27900,27903,30444]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27899]]],["escaped",[2,2,[[43,2,2,0,2,[[1045,2,2,0,2]]]],[27900,27903]]],["heal",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25198]]],["safe",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27758]]],["save",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27898]]],["saved",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30444]]],["whole",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23633]]]]},{"k":"G1296","v":[["*",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]]],[27169,28268]]],["disposition",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27169]]],["ordinance",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28268]]]]},{"k":"G1297","v":[["commandment",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30195]]]]},{"k":"G1298","v":[["troubled",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24922]]]]},{"k":"G1299","v":[["*",[16,16,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,4,4,1,5,[[975,1,1,1,2],[980,1,1,2,3],[989,2,2,3,5]]],[43,5,5,5,10,[[1024,1,1,5,6],[1035,1,1,6,7],[1037,1,1,7,8],[1040,1,1,8,9],[1041,1,1,9,10]]],[45,4,4,10,14,[[1068,1,1,10,11],[1070,1,1,11,12],[1072,1,1,12,13],[1077,1,1,13,14]]],[47,1,1,14,15,[[1093,1,1,14,15]]],[55,1,1,15,16,[[1129,1,1,15,16]]]],[23460,25038,25300,25660,25661,27160,27559,27639,27765,27792,28504,28554,28634,28777,29121,29897]]],["appointed",[4,4,[[41,1,1,0,1,[[975,1,1,0,1]]],[43,2,2,1,3,[[1024,1,1,1,2],[1037,1,1,2,3]]],[55,1,1,3,4,[[1129,1,1,3,4]]]],[25038,27160,27639,29897]]],["commanded",[6,6,[[41,3,3,0,3,[[980,1,1,0,1],[989,2,2,1,3]]],[43,3,3,3,6,[[1035,1,1,3,4],[1040,1,1,4,5],[1041,1,1,5,6]]]],[25300,25660,25661,27559,27765,27792]]],["commanding",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23460]]],["ordain",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28504]]],["ordained",[2,2,[[45,1,1,0,1,[[1070,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]]],[28554,29121]]],["order",[2,2,[[45,2,2,0,2,[[1072,1,1,0,1],[1077,1,1,1,2]]]],[28634,28777]]]]},{"k":"G1300","v":[["continued",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27888]]]]},{"k":"G1301","v":[["*",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]]],[25024,27471]]],["keep",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27471]]],["kept",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25024]]]]},{"k":"G1302","v":[["*",[27,26,[[39,7,7,0,7,[[937,2,2,0,2],[941,1,1,2,3],[943,2,2,3,5],[945,1,1,5,6],[949,1,1,6,7]]],[40,3,3,7,10,[[958,1,1,7,8],[963,1,1,8,9],[967,1,1,9,10]]],[41,6,6,10,16,[[977,2,2,10,12],[991,2,2,12,14],[992,1,1,14,15],[996,1,1,15,16]]],[42,5,5,16,21,[[1003,1,1,16,17],[1004,2,2,17,19],[1008,1,1,19,20],[1009,1,1,20,21]]],[43,1,1,21,22,[[1022,1,1,21,22]]],[44,1,1,22,23,[[1054,1,1,22,23]]],[45,2,1,23,24,[[1067,2,1,23,24]]],[46,1,1,24,25,[[1088,1,1,24,25]]],[65,1,1,25,26,[[1183,1,1,25,26]]]],[23390,23393,23549,23635,23636,23719,23851,24278,24468,24671,25137,25140,25754,25762,25784,26029,26373,26424,26427,26585,26667,27062,28187,28474,29000,30982]]],["Wherefore",[4,4,[[41,1,1,0,1,[[991,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]],[65,1,1,3,4,[[1183,1,1,3,4]]]],[25754,28187,29000,30982]]],["Why",[18,18,[[39,7,7,0,7,[[937,2,2,0,2],[941,1,1,2,3],[943,2,2,3,5],[945,1,1,5,6],[949,1,1,6,7]]],[40,3,3,7,10,[[958,1,1,7,8],[963,1,1,8,9],[967,1,1,9,10]]],[41,4,4,10,14,[[977,2,2,10,12],[991,1,1,12,13],[992,1,1,13,14]]],[42,3,3,14,17,[[1003,1,1,14,15],[1004,1,1,15,16],[1008,1,1,16,17]]],[45,1,1,17,18,[[1067,1,1,17,18]]]],[23390,23393,23549,23635,23636,23719,23851,24278,24468,24671,25137,25140,25762,25784,26373,26424,26585,28474]]],["why",[5,5,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,2,2,1,3,[[1004,1,1,1,2],[1009,1,1,2,3]]],[43,1,1,3,4,[[1022,1,1,3,4]]],[45,1,1,4,5,[[1067,1,1,4,5]]]],[26029,26427,26667,27062,28474]]]]},{"k":"G1303","v":[["*",[7,6,[[41,2,1,0,1,[[994,2,1,0,1]]],[43,1,1,1,2,[[1020,1,1,1,2]]],[57,4,4,2,6,[[1140,1,1,2,3],[1141,2,2,3,5],[1142,1,1,5,6]]]],[25893,27021,30102,30121,30122,30149]]],["appoint",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25893]]],["appointed",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25893]]],["made",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27021]]],["make",[2,2,[[57,2,2,0,2,[[1140,1,1,0,1],[1142,1,1,1,2]]]],[30102,30149]]],["testator",[2,2,[[57,2,2,0,2,[[1141,2,2,0,2]]]],[30121,30122]]]]},{"k":"G1304","v":[["*",[10,10,[[42,2,2,0,2,[[999,1,1,0,1],[1007,1,1,1,2]]],[43,8,8,2,10,[[1029,1,1,2,3],[1031,2,2,3,5],[1032,1,1,5,6],[1033,1,1,6,7],[1037,1,1,7,8],[1042,2,2,8,10]]]],[26142,26577,27356,27417,27442,27477,27495,27632,27802,27810]]],["abiding",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27495]]],["abode",[4,4,[[43,4,4,0,4,[[1029,1,1,0,1],[1031,2,2,1,3],[1037,1,1,3,4]]]],[27356,27417,27442,27632]]],["been",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27810]]],["continued",[2,2,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]]],[26577,27477]]],["tarried",[2,2,[[42,1,1,0,1,[[999,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]]],[26142,27802]]]]},{"k":"G1305","v":[["food",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29796]]]]},{"k":"G1306","v":[["dawn",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30498]]]]},{"k":"G1307","v":[["transparent",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31074]]]]},{"k":"G1308","v":[["*",[13,13,[[39,3,3,0,3,[[934,1,1,0,1],[938,1,1,1,2],[940,1,1,2,3]]],[40,1,1,3,4,[[967,1,1,3,4]]],[41,2,2,4,6,[[984,2,2,4,6]]],[43,2,2,6,8,[[1030,1,1,6,7],[1044,1,1,7,8]]],[44,1,1,8,9,[[1047,1,1,8,9]]],[45,1,1,9,10,[[1076,1,1,9,10]]],[47,2,2,10,12,[[1092,1,1,10,11],[1094,1,1,11,12]]],[49,1,1,12,13,[[1103,1,1,12,13]]]],[23308,23448,23501,24656,25466,25483,27411,27882,27980,28759,29087,29132,29371]]],["+",[4,4,[[39,2,2,0,2,[[934,1,1,0,1],[940,1,1,1,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[47,1,1,3,4,[[1092,1,1,3,4]]]],[23308,23501,25483,29087]]],["carry",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24656]]],["differeth",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29132]]],["down",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27882]]],["excellent",[2,2,[[44,1,1,0,1,[[1047,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[27980,29371]]],["from",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28759]]],["published",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27411]]],["value",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23448,25466]]]]},{"k":"G1309","v":[["escape",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27897]]]]},{"k":"G1310","v":[["*",[3,3,[[39,2,2,0,2,[[937,1,1,0,1],[956,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]]],[23410,24210,24260]]],["+",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23410]]],["abroad",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24260]]],["reported",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24210]]]]},{"k":"G1311","v":[["*",[6,5,[[41,1,1,0,1,[[984,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]],[65,3,2,3,5,[[1174,1,1,3,4],[1177,2,1,4,5]]]],[25492,28875,29793,30836,30890]]],["corrupt",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29793]]],["corrupteth",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25492]]],["destroy",[2,1,[[65,2,1,0,1,[[1177,2,1,0,1]]]],[30890]]],["destroyed",[1,1,[[65,1,1,0,1,[[1174,1,1,0,1]]]],[30836]]],["perish",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28875]]]]},{"k":"G1312","v":[["corruption",[6,6,[[43,6,6,0,6,[[1019,2,2,0,2],[1030,4,4,2,6]]]],[26976,26980,27396,27397,27398,27399]]]]},{"k":"G1313","v":[["*",[4,4,[[44,1,1,0,1,[[1057,1,1,0,1]]],[57,3,3,1,4,[[1133,1,1,1,2],[1140,1,1,2,3],[1141,1,1,3,4]]]],[28251,29967,30098,30115]]],["differing",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28251]]],["divers",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30115]]],["excellent",[2,2,[[57,2,2,0,2,[[1133,1,1,0,1],[1140,1,1,1,2]]]],[29967,30098]]]]},{"k":"G1314","v":[["keep",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25073]]]]},{"k":"G1315","v":[["*",[2,2,[[43,2,2,0,2,[[1022,1,1,0,1],[1043,1,1,1,2]]]],[27089,27844]]],["kill",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27844]]],["slew",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27089]]]]},{"k":"G1316","v":[["departed",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25334]]]]},{"k":"G1317","v":[["teach",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[29733,29851]]]]},{"k":"G1318","v":[["*",[3,2,[[42,1,1,0,1,[[1002,1,1,0,1]]],[45,2,1,1,2,[[1063,2,1,1,2]]]],[26302,28407]]],["taught",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26302]]],["teacheth",[2,1,[[45,2,1,0,1,[[1063,2,1,0,1]]]],[28407]]]]},{"k":"G1319","v":[["*",[21,21,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[44,2,2,2,4,[[1057,1,1,2,3],[1060,1,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]],[50,1,1,5,6,[[1108,1,1,5,6]]],[53,8,8,6,14,[[1119,1,1,6,7],[1122,4,4,7,11],[1123,1,1,11,12],[1124,2,2,12,14]]],[54,3,3,14,17,[[1127,2,2,14,16],[1128,1,1,16,17]]],[55,4,4,17,21,[[1129,1,1,17,18],[1130,3,3,18,21]]]],[23642,24470,28252,28307,29286,29516,29706,29748,29753,29760,29763,29780,29789,29791,29863,29869,29873,29901,29909,29915,29918]]],["doctrine",[15,15,[[48,1,1,0,1,[[1100,1,1,0,1]]],[53,7,7,1,8,[[1119,1,1,1,2],[1122,3,3,2,5],[1123,1,1,5,6],[1124,2,2,6,8]]],[54,3,3,8,11,[[1127,2,2,8,10],[1128,1,1,10,11]]],[55,4,4,11,15,[[1129,1,1,11,12],[1130,3,3,12,15]]]],[29286,29706,29753,29760,29763,29780,29789,29791,29863,29869,29873,29901,29909,29915,29918]]],["doctrines",[4,4,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]],[53,1,1,3,4,[[1122,1,1,3,4]]]],[23642,24470,29516,29748]]],["learning",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28307]]],["teaching",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28252]]]]},{"k":"G1320","v":[["*",[58,57,[[39,11,11,0,11,[[936,1,1,0,1],[937,1,1,1,2],[938,2,2,2,4],[940,1,1,4,5],[945,1,1,5,6],[947,1,1,6,7],[950,3,3,7,10],[954,1,1,10,11]]],[40,12,12,11,23,[[960,1,1,11,12],[961,1,1,12,13],[965,2,2,13,15],[966,3,3,15,18],[968,3,3,18,21],[969,1,1,21,22],[970,1,1,22,23]]],[41,17,16,23,39,[[974,1,1,23,24],[975,1,1,24,25],[978,2,1,25,26],[979,1,1,26,27],[980,1,1,27,28],[981,1,1,28,29],[982,1,1,29,30],[983,1,1,30,31],[984,1,1,31,32],[990,1,1,32,33],[991,1,1,33,34],[992,3,3,34,37],[993,1,1,37,38],[994,1,1,38,39]]],[42,8,8,39,47,[[997,1,1,39,40],[999,2,2,40,42],[1004,1,1,42,43],[1007,1,1,43,44],[1009,2,2,44,46],[1016,1,1,46,47]]],[43,1,1,47,48,[[1030,1,1,47,48]]],[44,1,1,48,49,[[1047,1,1,48,49]]],[45,2,2,49,51,[[1073,2,2,49,51]]],[48,1,1,51,52,[[1100,1,1,51,52]]],[53,1,1,52,53,[[1120,1,1,52,53]]],[54,2,2,53,55,[[1125,1,1,53,54],[1128,1,1,54,55]]],[57,1,1,55,56,[[1137,1,1,55,56]]],[58,1,1,56,57,[[1148,1,1,56,57]]]],[23364,23390,23441,23442,23527,23724,23778,23888,23896,23908,24072,24361,24399,24555,24576,24605,24608,24623,24687,24692,24705,24718,24768,25019,25037,25186,25235,25294,25339,25388,25450,25472,25706,25770,25800,25807,25818,25833,25875,26082,26122,26130,26385,26551,26643,26644,26883,27363,27982,28662,28663,29283,29723,29820,29873,30042,30320]]],["Master",[40,40,[[39,8,8,0,8,[[936,1,1,0,1],[937,1,1,1,2],[940,1,1,2,3],[947,1,1,3,4],[950,3,3,4,7],[954,1,1,7,8]]],[40,12,12,8,20,[[960,1,1,8,9],[961,1,1,9,10],[965,2,2,10,12],[966,3,3,12,15],[968,3,3,15,18],[969,1,1,18,19],[970,1,1,19,20]]],[41,14,14,20,34,[[975,1,1,20,21],[979,1,1,21,22],[980,1,1,22,23],[981,1,1,23,24],[982,1,1,24,25],[983,1,1,25,26],[984,1,1,26,27],[990,1,1,27,28],[991,1,1,28,29],[992,3,3,29,32],[993,1,1,32,33],[994,1,1,33,34]]],[42,6,6,34,40,[[997,1,1,34,35],[1004,1,1,35,36],[1007,1,1,36,37],[1009,2,2,37,39],[1016,1,1,39,40]]]],[23364,23390,23527,23778,23888,23896,23908,24072,24361,24399,24555,24576,24605,24608,24623,24687,24692,24705,24718,24768,25037,25235,25294,25339,25388,25450,25472,25706,25770,25800,25807,25818,25833,25875,26082,26385,26551,26643,26644,26883]]],["doctors",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25019]]],["master",[6,5,[[39,3,3,0,3,[[938,2,2,0,2],[945,1,1,2,3]]],[41,2,1,3,4,[[978,2,1,3,4]]],[42,1,1,4,5,[[999,1,1,4,5]]]],[23441,23442,23724,25186,26130]]],["masters",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30320]]],["teacher",[4,4,[[42,1,1,0,1,[[999,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]],[53,1,1,2,3,[[1120,1,1,2,3]]],[54,1,1,3,4,[[1125,1,1,3,4]]]],[26122,27982,29723,29820]]],["teachers",[6,6,[[43,1,1,0,1,[[1030,1,1,0,1]]],[45,2,2,1,3,[[1073,2,2,1,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]],[57,1,1,5,6,[[1137,1,1,5,6]]]],[27363,28662,28663,29283,29873,30042]]]]},{"k":"G1321","v":[["*",[97,91,[[39,14,13,0,13,[[932,1,1,0,1],[933,3,2,1,3],[935,1,1,3,4],[937,1,1,4,5],[939,1,1,5,6],[941,1,1,6,7],[943,1,1,7,8],[949,1,1,8,9],[950,1,1,9,10],[954,1,1,10,11],[956,2,2,11,13]]],[40,17,17,13,30,[[957,2,2,13,15],[958,1,1,15,16],[960,2,2,16,18],[962,4,4,18,22],[963,1,1,22,23],[964,1,1,23,24],[965,1,1,24,25],[966,1,1,25,26],[967,1,1,26,27],[968,2,2,27,29],[970,1,1,29,30]]],[41,17,15,30,45,[[976,2,2,30,32],[977,2,2,32,34],[978,1,1,34,35],[983,2,1,35,36],[984,1,1,36,37],[985,3,3,37,40],[991,1,1,40,41],[992,3,2,41,43],[993,1,1,43,44],[995,1,1,44,45]]],[42,10,10,45,55,[[1002,1,1,45,46],[1003,3,3,46,49],[1004,3,3,49,52],[1005,1,1,52,53],[1010,1,1,53,54],[1014,1,1,54,55]]],[43,16,16,55,71,[[1018,1,1,55,56],[1021,2,2,56,58],[1022,4,4,58,62],[1028,1,1,62,63],[1032,2,2,63,65],[1035,2,2,65,67],[1037,1,1,67,68],[1038,2,2,68,70],[1045,1,1,70,71]]],[44,3,2,71,73,[[1047,2,1,71,72],[1057,1,1,72,73]]],[45,2,2,73,75,[[1065,1,1,73,74],[1072,1,1,74,75]]],[47,1,1,75,76,[[1091,1,1,75,76]]],[48,1,1,76,77,[[1100,1,1,76,77]]],[50,3,3,77,80,[[1107,1,1,77,78],[1108,1,1,78,79],[1109,1,1,79,80]]],[52,1,1,80,81,[[1117,1,1,80,81]]],[53,3,3,81,84,[[1120,1,1,81,82],[1122,1,1,82,83],[1124,1,1,83,84]]],[54,1,1,84,85,[[1126,1,1,84,85]]],[55,1,1,85,86,[[1129,1,1,85,86]]],[57,2,2,86,88,[[1137,1,1,86,87],[1140,1,1,87,88]]],[61,3,1,88,89,[[1160,3,1,88,89]]],[65,2,2,89,91,[[1168,2,2,89,91]]]],[23232,23236,23253,23345,23414,23460,23593,23642,23849,23888,24109,24210,24215,24236,24237,24273,24324,24325,24409,24413,24437,24441,24470,24531,24569,24589,24657,24687,24708,24803,25078,25094,25110,25124,25152,25406,25471,25528,25540,25544,25778,25780,25800,25863,25940,26316,26342,26356,26363,26383,26401,26409,26474,26694,26805,26924,27024,27040,27080,27084,27087,27101,27333,27443,27477,27568,27582,27646,27685,27692,27930,27983,28252,28450,28614,29069,29293,29493,29501,29533,29676,29728,29758,29790,29829,29903,30042,30103,30577,30731,30737]]],["+",[6,6,[[39,1,1,0,1,[[935,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,2,2,2,4,[[976,1,1,2,3],[991,1,1,3,4]]],[42,1,1,4,5,[[1003,1,1,4,5]]],[44,1,1,5,6,[[1047,1,1,5,6]]]],[23345,24237,25094,25778,26356,27983]]],["Teaching",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24215]]],["taught",[35,35,[[39,3,3,0,3,[[933,1,1,0,1],[941,1,1,1,2],[956,1,1,2,3]]],[40,8,8,3,11,[[957,1,1,3,4],[958,1,1,4,5],[960,1,1,5,6],[962,1,1,6,7],[965,1,1,7,8],[966,1,1,8,9],[967,1,1,9,10],[968,1,1,10,11]]],[41,6,6,11,17,[[976,1,1,11,12],[977,1,1,12,13],[978,1,1,13,14],[983,1,1,14,15],[985,1,1,15,16],[992,1,1,16,17]]],[42,6,6,17,23,[[1002,1,1,17,18],[1003,1,1,18,19],[1004,3,3,19,22],[1014,1,1,22,23]]],[43,6,6,23,29,[[1021,1,1,23,24],[1022,1,1,24,25],[1028,1,1,25,26],[1032,1,1,26,27],[1035,1,1,27,28],[1037,1,1,28,29]]],[47,1,1,29,30,[[1091,1,1,29,30]]],[48,1,1,30,31,[[1100,1,1,30,31]]],[50,1,1,31,32,[[1108,1,1,31,32]]],[52,1,1,32,33,[[1117,1,1,32,33]]],[61,1,1,33,34,[[1160,1,1,33,34]]],[65,1,1,34,35,[[1168,1,1,34,35]]]],[23236,23593,24210,24236,24273,24325,24437,24569,24589,24657,24708,25078,25110,25152,25406,25544,25780,26316,26342,26383,26401,26409,26805,27024,27080,27333,27443,27582,27646,29069,29293,29501,29676,30577,30731]]],["teach",[26,25,[[39,3,2,0,2,[[933,2,1,0,1],[939,1,1,1,2]]],[40,4,4,2,6,[[960,1,1,2,3],[962,2,2,3,5],[964,1,1,5,6]]],[41,2,2,6,8,[[983,1,1,6,7],[984,1,1,7,8]]],[42,3,3,8,11,[[1003,1,1,8,9],[1005,1,1,9,10],[1010,1,1,10,11]]],[43,4,4,11,15,[[1018,1,1,11,12],[1021,1,1,12,13],[1022,2,2,13,15]]],[45,2,2,15,17,[[1065,1,1,15,16],[1072,1,1,16,17]]],[53,3,3,17,20,[[1120,1,1,17,18],[1122,1,1,18,19],[1124,1,1,19,20]]],[54,1,1,20,21,[[1126,1,1,20,21]]],[57,2,2,21,23,[[1137,1,1,21,22],[1140,1,1,22,23]]],[61,1,1,23,24,[[1160,1,1,23,24]]],[65,1,1,24,25,[[1168,1,1,24,25]]]],[23253,23460,24324,24409,24441,24531,25406,25471,26363,26474,26694,26924,27040,27087,27101,28450,28614,29728,29758,29790,29829,30042,30103,30577,30737]]],["teachest",[6,5,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,1,2,3,[[992,2,1,2,3]]],[43,1,1,3,4,[[1038,1,1,3,4]]],[44,1,1,4,5,[[1047,1,1,4,5]]]],[23888,24687,25800,27685,27983]]],["teacheth",[3,3,[[43,1,1,0,1,[[1038,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]],[61,1,1,2,3,[[1160,1,1,2,3]]]],[27692,28252,30577]]],["teaching",[20,20,[[39,5,5,0,5,[[932,1,1,0,1],[937,1,1,1,2],[943,1,1,2,3],[949,1,1,3,4],[954,1,1,4,5]]],[40,3,3,5,8,[[962,1,1,5,6],[963,1,1,6,7],[970,1,1,7,8]]],[41,5,5,8,13,[[977,1,1,8,9],[985,2,2,9,11],[993,1,1,11,12],[995,1,1,12,13]]],[43,4,4,13,17,[[1022,1,1,13,14],[1032,1,1,14,15],[1035,1,1,15,16],[1045,1,1,16,17]]],[50,2,2,17,19,[[1107,1,1,17,18],[1109,1,1,18,19]]],[55,1,1,19,20,[[1129,1,1,19,20]]]],[23232,23414,23642,23849,24109,24413,24470,24803,25124,25528,25540,25863,25940,27084,27477,27568,27930,29493,29533,29903]]]]},{"k":"G1322","v":[["*",[30,29,[[39,3,3,0,3,[[935,1,1,0,1],[944,1,1,1,2],[950,1,1,2,3]]],[40,5,5,3,8,[[957,2,2,3,5],[960,1,1,5,6],[967,1,1,6,7],[968,1,1,7,8]]],[41,1,1,8,9,[[976,1,1,8,9]]],[42,3,3,9,12,[[1003,2,2,9,11],[1014,1,1,11,12]]],[43,4,4,12,16,[[1019,1,1,12,13],[1022,1,1,13,14],[1030,1,1,14,15],[1034,1,1,15,16]]],[44,2,2,16,18,[[1051,1,1,16,17],[1061,1,1,17,18]]],[45,2,2,18,20,[[1075,2,2,18,20]]],[54,1,1,20,21,[[1128,1,1,20,21]]],[55,1,1,21,22,[[1129,1,1,21,22]]],[57,2,2,22,24,[[1138,1,1,22,23],[1145,1,1,23,24]]],[62,3,2,24,26,[[1164,3,2,24,26]]],[65,3,3,26,29,[[1168,3,3,26,29]]]],[23344,23684,23905,24237,24242,24325,24658,24711,25095,26344,26345,26804,26991,27087,27374,27542,28085,28353,28684,28704,29872,29901,30046,30250,30654,30655,30731,30732,30741]]],["+",[2,2,[[44,1,1,0,1,[[1051,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[28085,29901]]],["doctrine",[27,26,[[39,3,3,0,3,[[935,1,1,0,1],[944,1,1,1,2],[950,1,1,2,3]]],[40,5,5,3,8,[[957,2,2,3,5],[960,1,1,5,6],[967,1,1,6,7],[968,1,1,7,8]]],[41,1,1,8,9,[[976,1,1,8,9]]],[42,3,3,9,12,[[1003,2,2,9,11],[1014,1,1,11,12]]],[43,4,4,12,16,[[1019,1,1,12,13],[1022,1,1,13,14],[1030,1,1,14,15],[1034,1,1,15,16]]],[44,1,1,16,17,[[1061,1,1,16,17]]],[45,2,2,17,19,[[1075,2,2,17,19]]],[54,1,1,19,20,[[1128,1,1,19,20]]],[57,1,1,20,21,[[1138,1,1,20,21]]],[62,3,2,21,23,[[1164,3,2,21,23]]],[65,3,3,23,26,[[1168,3,3,23,26]]]],[23344,23684,23905,24237,24242,24325,24658,24711,25095,26344,26345,26804,26991,27087,27374,27542,28353,28684,28704,29872,30046,30654,30655,30731,30732,30741]]],["doctrines",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30250]]]]},{"k":"G1323","v":[["tribute",[2,1,[[39,2,1,0,1,[[945,2,1,0,1]]]],[23724]]]]},{"k":"G1324","v":[["Didymus",[3,3,[[42,3,3,0,3,[[1007,1,1,0,1],[1016,1,1,1,2],[1017,1,1,2,3]]]],[26539,26891,26900]]]]},{"k":"G1325","v":[["*",[413,377,[[39,56,54,0,54,[[932,1,1,0,1],[933,2,2,1,3],[934,1,1,3,4],[935,4,3,4,7],[937,1,1,7,8],[938,3,3,8,11],[940,1,1,11,12],[941,4,3,12,15],[942,6,6,15,21],[943,1,1,21,22],[944,3,3,22,25],[945,1,1,25,26],[947,3,3,26,29],[948,4,4,29,33],[949,2,2,33,35],[950,1,1,35,36],[952,3,3,36,39],[953,6,6,39,45],[954,5,5,45,50],[955,2,2,50,52],[956,2,2,52,54]]],[40,38,35,54,89,[[958,1,1,54,55],[960,4,4,55,59],[961,1,1,59,60],[962,10,8,60,68],[964,3,3,68,71],[966,4,4,71,75],[967,1,1,75,76],[968,4,3,76,79],[969,4,4,79,83],[970,5,5,83,88],[971,1,1,88,89]]],[41,60,54,89,143,[[973,3,3,89,92],[974,1,1,92,93],[976,2,1,93,94],[978,5,3,94,97],[979,3,3,97,100],[980,3,3,100,103],[981,3,3,103,106],[982,2,2,106,108],[983,9,7,108,115],[984,6,6,115,121],[986,1,1,121,122],[987,4,4,122,126],[988,1,1,126,127],[989,1,1,127,128],[990,1,1,128,129],[991,6,6,129,135],[992,4,4,135,139],[993,1,1,139,140],[994,3,2,140,142],[995,1,1,142,143]]],[42,75,63,143,206,[[997,3,3,143,146],[999,4,4,146,150],[1000,8,6,150,156],[1001,4,4,156,160],[1002,12,10,160,170],[1003,2,2,170,172],[1005,1,1,172,173],[1006,2,2,173,175],[1007,2,2,175,177],[1008,2,2,177,179],[1009,5,5,179,184],[1010,4,2,184,186],[1011,1,1,186,187],[1012,1,1,187,188],[1013,17,11,188,199],[1014,3,3,199,202],[1015,3,3,202,205],[1017,1,1,205,206]]],[43,35,34,206,240,[[1018,1,1,206,207],[1019,3,3,207,210],[1020,2,2,210,212],[1021,2,2,212,214],[1022,2,2,214,216],[1024,6,5,216,221],[1025,2,2,221,223],[1026,1,1,223,224],[1027,1,1,224,225],[1028,2,2,225,227],[1029,1,1,227,228],[1030,4,4,228,232],[1031,2,2,232,234],[1032,1,1,234,235],[1034,1,1,235,236],[1036,1,1,236,237],[1037,2,2,237,239],[1041,1,1,239,240]]],[44,9,9,240,249,[[1049,1,1,240,241],[1050,1,1,241,242],[1056,1,1,242,243],[1057,3,3,243,246],[1059,1,1,246,247],[1060,2,2,247,249]]],[45,15,14,249,263,[[1062,1,1,249,250],[1064,2,2,250,252],[1068,1,1,252,253],[1070,1,1,253,254],[1072,1,1,254,255],[1073,3,3,255,258],[1075,4,3,258,261],[1076,2,2,261,263]]],[46,13,13,263,276,[[1078,1,1,263,264],[1082,3,3,264,267],[1083,1,1,267,268],[1085,4,4,268,272],[1086,1,1,272,273],[1087,1,1,273,274],[1089,1,1,274,275],[1090,1,1,275,276]]],[47,6,5,276,281,[[1091,1,1,276,277],[1092,2,1,277,278],[1093,2,2,278,280],[1094,1,1,280,281]]],[48,12,12,281,293,[[1097,2,2,281,283],[1099,4,4,283,287],[1100,5,5,287,292],[1102,1,1,292,293]]],[50,1,1,293,294,[[1107,1,1,293,294]]],[51,2,2,294,296,[[1114,2,2,294,296]]],[52,4,4,296,300,[[1116,1,1,296,297],[1117,1,1,297,298],[1118,2,2,298,300]]],[53,3,3,300,303,[[1120,1,1,300,301],[1122,1,1,301,302],[1123,1,1,302,303]]],[54,6,6,303,309,[[1125,4,4,303,307],[1126,2,2,307,309]]],[55,1,1,309,310,[[1130,1,1,309,310]]],[57,4,4,310,314,[[1134,1,1,310,311],[1139,1,1,311,312],[1140,1,1,312,313],[1142,1,1,313,314]]],[58,6,4,314,318,[[1146,2,1,314,315],[1147,1,1,315,316],[1149,2,1,316,317],[1150,1,1,317,318]]],[59,2,2,318,320,[[1151,1,1,318,319],[1155,1,1,319,320]]],[60,1,1,320,321,[[1158,1,1,320,321]]],[61,7,7,321,328,[[1161,3,3,321,324],[1162,1,1,324,325],[1163,3,3,325,328]]],[65,57,49,328,377,[[1167,1,1,328,329],[1168,8,7,329,336],[1169,3,3,336,339],[1170,1,1,339,340],[1172,5,4,340,344],[1173,1,1,344,345],[1174,3,2,345,347],[1175,3,3,347,350],[1176,1,1,350,351],[1177,5,5,351,356],[1178,1,1,356,357],[1179,10,7,357,364],[1180,1,1,364,365],[1181,1,1,365,366],[1182,4,4,366,370],[1183,2,1,370,371],[1184,1,1,371,372],[1185,2,2,372,374],[1186,3,2,374,376],[1187,1,1,376,377]]]],[23218,23265,23276,23293,23322,23323,23327,23387,23418,23425,23436,23528,23547,23550,23551,23604,23605,23606,23608,23613,23616,23669,23676,23691,23698,23727,23769,23773,23783,23796,23806,23815,23820,23849,23869,23889,23981,23986,24002,24016,24023,24036,24037,24043,24050,24063,24069,24080,24081,24102,24139,24163,24207,24213,24286,24330,24331,24334,24348,24407,24409,24414,24429,24430,24432,24435,24444,24448,24506,24512,24537,24609,24625,24628,24633,24668,24682,24687,24688,24728,24739,24741,24751,24759,24765,24776,24777,24798,24849,24925,24967,24970,24997,25069,25150,25176,25184,25210,25239,25240,25255,25263,25300,25302,25314,25317,25382,25398,25408,25412,25413,25414,25418,25434,25446,25491,25492,25501,25507,25510,25517,25562,25600,25604,25610,25617,25632,25669,25731,25739,25744,25746,25754,25755,25757,25781,25789,25795,25801,25841,25869,25883,25937,26056,26061,26066,26136,26147,26154,26155,26161,26163,26166,26168,26170,26171,26232,26236,26237,26246,26284,26288,26289,26290,26291,26294,26296,26308,26309,26322,26347,26350,26464,26509,26510,26545,26580,26585,26629,26633,26645,26656,26659,26664,26684,26695,26715,26749,26761,26763,26765,26766,26767,26768,26770,26771,26773,26781,26783,26794,26796,26807,26828,26834,26836,26911,26949,26953,26968,26976,27002,27012,27034,27051,27090,27091,27121,27124,27126,27141,27154,27194,27195,27257,27299,27324,27325,27360,27382,27383,27396,27397,27417,27431,27450,27548,27616,27658,27661,27795,28042,28052,28217,28248,28251,28264,28292,28308,28318,28367,28415,28420,28512,28552,28615,28641,28642,28658,28685,28686,28687,28756,28775,28822,28882,28889,28895,28901,28933,28937,28942,28948,28965,28979,29029,29053,29061,29090,29123,29124,29146,29223,29228,29253,29258,29259,29267,29279,29280,29283,29299,29301,29356,29490,29605,29611,29657,29677,29687,29694,29722,29761,29777,29816,29818,29825,29827,29834,29852,29922,29990,30068,30102,30149,30271,30309,30343,30372,30395,30470,30537,30580,30602,30603,30616,30635,30640,30644,30698,30724,30727,30734,30738,30740,30743,30745,30754,30755,30767,30777,30795,30797,30801,30804,30812,30829,30830,30841,30843,30845,30870,30873,30874,30875,30885,30890,30905,30910,30912,30913,30915,30922,30923,30924,30933,30953,30960,30962,30963,30973,30992,31000,31024,31025,31042,31051,31059]]],["+",[11,11,[[42,3,3,0,3,[[1000,1,1,0,1],[1014,1,1,1,2],[1015,1,1,2,3]]],[43,2,2,3,5,[[1024,1,1,3,4],[1027,1,1,4,5]]],[45,1,1,5,6,[[1070,1,1,5,6]]],[46,1,1,6,7,[[1082,1,1,6,7]]],[51,1,1,7,8,[[1114,1,1,7,8]]],[65,3,3,8,11,[[1179,3,3,8,11]]]],[26166,26807,26828,27141,27299,28552,28882,29611,30922,30923,30924]]],["Give",[16,16,[[39,5,5,0,5,[[933,1,1,0,1],[934,1,1,1,2],[935,1,1,2,3],[942,1,1,3,4],[953,1,1,4,5]]],[40,1,1,5,6,[[962,1,1,5,6]]],[41,5,5,6,11,[[978,2,2,6,8],[981,1,1,8,9],[983,1,1,9,10],[986,1,1,10,11]]],[42,3,3,11,14,[[1000,2,2,11,13],[1005,1,1,13,14]]],[43,1,1,14,15,[[1025,1,1,14,15]]],[65,1,1,15,16,[[1176,1,1,15,16]]]],[23276,23293,23322,23605,24016,24444,25176,25184,25314,25408,25562,26163,26166,26464,27195,30870]]],["Giving",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28901]]],["Grant",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24625]]],["adventure",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27616]]],["bestowed",[2,2,[[46,1,1,0,1,[[1085,1,1,0,1]]],[61,1,1,1,2,[[1161,1,1,1,2]]]],[28933,30580]]],["committed",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26232]]],["delivered",[2,2,[[41,2,2,0,2,[[979,1,1,0,1],[991,1,1,1,2]]]],[25210,25744]]],["forth",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]]],[23547,26949]]],["gave",[73,72,[[39,13,13,0,13,[[938,1,1,0,1],[942,1,1,1,2],[943,1,1,2,3],[949,1,1,3,4],[953,3,3,4,7],[954,3,3,7,10],[955,2,2,10,12],[956,1,1,12,13]]],[40,11,10,13,23,[[958,1,1,13,14],[962,4,3,14,17],[964,1,1,17,18],[967,1,1,18,19],[969,1,1,19,20],[970,2,2,20,22],[971,1,1,22,23]]],[41,8,8,23,31,[[978,1,1,23,24],[981,2,2,24,26],[982,1,1,26,27],[987,1,1,27,28],[990,1,1,28,29],[992,1,1,29,30],[994,1,1,30,31]]],[42,11,11,31,42,[[997,1,1,31,32],[999,1,1,32,33],[1000,2,2,33,35],[1002,2,2,35,37],[1003,1,1,37,38],[1006,1,1,38,39],[1008,1,1,39,40],[1009,1,1,40,41],[1015,1,1,41,42]]],[43,10,10,42,52,[[1019,1,1,42,43],[1024,3,3,43,46],[1026,1,1,46,47],[1028,1,1,47,48],[1029,1,1,48,49],[1030,2,2,49,51],[1031,1,1,51,52]]],[45,1,1,52,53,[[1064,1,1,52,53]]],[46,1,1,53,54,[[1085,1,1,53,54]]],[47,2,2,54,56,[[1091,1,1,54,55],[1092,1,1,55,56]]],[48,3,3,56,59,[[1097,1,1,56,57],[1100,2,2,57,59]]],[51,1,1,59,60,[[1114,1,1,59,60]]],[53,1,1,60,61,[[1120,1,1,60,61]]],[55,1,1,61,62,[[1130,1,1,61,62]]],[57,1,1,62,63,[[1139,1,1,62,63]]],[58,1,1,63,64,[[1150,1,1,63,64]]],[59,1,1,64,65,[[1151,1,1,64,65]]],[61,1,1,65,66,[[1161,1,1,65,66]]],[65,6,6,66,72,[[1167,1,1,66,67],[1168,1,1,67,68],[1177,1,1,68,69],[1179,2,2,69,71],[1181,1,1,71,72]]]],[23418,23616,23669,23849,24023,24043,24050,24080,24081,24102,24139,24163,24207,24286,24414,24435,24448,24506,24668,24751,24776,24777,24849,25150,25302,25317,25398,25604,25731,25781,25883,26056,26136,26161,26168,26288,26289,26350,26510,26629,26656,26834,26953,27121,27124,27126,27257,27324,27360,27382,27383,27431,28415,28937,29061,29090,29228,29280,29283,29605,29722,29922,30068,30372,30395,30602,30698,30738,30885,30910,30912,30953]]],["gavest",[11,10,[[41,4,4,0,4,[[979,2,2,0,2],[987,1,1,2,3],[991,1,1,3,4]]],[42,7,6,4,10,[[1013,6,5,4,9],[1014,1,1,9,10]]]],[25239,25240,25617,25754,26763,26765,26767,26771,26781,26794]]],["give",[125,116,[[39,21,20,0,20,[[932,1,1,0,1],[933,1,1,1,2],[935,2,1,2,3],[938,1,1,3,4],[942,2,2,4,6],[944,2,2,6,8],[945,1,1,8,9],[947,2,2,9,11],[948,4,4,11,15],[950,1,1,15,16],[952,2,2,16,18],[953,1,1,18,19],[954,1,1,19,20]]],[40,14,13,20,33,[[962,4,4,20,24],[964,1,1,24,25],[966,3,3,25,28],[968,4,3,28,31],[969,1,1,31,32],[970,1,1,32,33]]],[41,29,26,33,59,[[973,2,2,33,35],[976,2,1,35,36],[978,1,1,36,37],[980,1,1,37,38],[982,1,1,38,39],[983,6,4,39,43],[984,5,5,43,48],[987,1,1,48,49],[988,1,1,49,50],[989,1,1,50,51],[991,2,2,51,53],[992,3,3,53,56],[993,1,1,56,57],[994,1,1,57,58],[995,1,1,58,59]]],[42,20,17,59,76,[[997,1,1,59,60],[1000,3,2,60,62],[1002,5,4,62,66],[1003,1,1,66,67],[1006,1,1,67,68],[1007,1,1,68,69],[1009,2,2,69,71],[1010,3,2,71,73],[1011,1,1,73,74],[1012,1,1,74,75],[1013,1,1,75,76]]],[43,7,7,76,83,[[1020,1,1,76,77],[1022,1,1,77,78],[1024,2,2,78,80],[1030,1,1,80,81],[1037,2,2,81,83]]],[44,2,2,83,85,[[1057,1,1,83,84],[1059,1,1,84,85]]],[45,3,3,85,88,[[1068,1,1,85,86],[1075,2,2,86,88]]],[46,2,2,88,90,[[1082,1,1,88,89],[1085,1,1,89,90]]],[48,2,2,90,92,[[1097,1,1,90,91],[1100,1,1,91,92]]],[52,1,1,92,93,[[1118,1,1,92,93]]],[53,1,1,93,94,[[1123,1,1,93,94]]],[54,3,3,94,97,[[1125,1,1,94,95],[1126,2,2,95,97]]],[58,1,1,97,98,[[1147,1,1,97,98]]],[61,1,1,98,99,[[1163,1,1,98,99]]],[65,18,17,99,116,[[1168,7,6,99,105],[1170,1,1,105,106],[1177,2,2,106,108],[1179,1,1,108,109],[1180,1,1,109,110],[1182,2,2,110,112],[1183,1,1,112,113],[1184,1,1,113,114],[1185,1,1,114,115],[1187,1,1,115,116]]]],[23218,23265,23327,23425,23604,23613,23691,23698,23727,23769,23783,23796,23806,23815,23820,23889,23986,24002,24036,24069,24429,24430,24432,24444,24537,24609,24628,24633,24682,24687,24688,24741,24765,24925,24970,25069,25184,25300,25382,25412,25413,25418,25446,25491,25492,25501,25510,25517,25600,25632,25669,25739,25755,25789,25795,25801,25841,25869,25937,26066,26170,26171,26284,26291,26308,26309,26347,26509,26545,26659,26664,26684,26695,26715,26749,26761,27002,27090,27121,27154,27396,27658,27661,28264,28292,28512,28685,28686,28889,28942,29223,29299,29694,29777,29825,29834,29852,30309,30640,30724,30727,30734,30740,30743,30745,30777,30875,30890,30923,30933,30963,30973,30992,31000,31024,31059]]],["given",[120,114,[[39,15,14,0,14,[[935,1,1,0,1],[937,1,1,1,2],[938,1,1,2,3],[940,1,1,3,4],[941,3,2,4,6],[942,2,2,6,8],[944,1,1,8,9],[947,1,1,9,10],[949,1,1,10,11],[953,1,1,11,12],[954,1,1,12,13],[956,1,1,13,14]]],[40,8,8,14,22,[[960,2,2,14,16],[961,1,1,16,17],[962,1,1,17,18],[964,1,1,18,19],[969,1,1,19,20],[970,2,2,20,22]]],[41,9,9,22,31,[[978,1,1,22,23],[980,2,2,23,25],[983,2,2,25,27],[984,1,1,27,28],[991,2,2,28,30],[994,1,1,30,31]]],[42,24,22,31,53,[[997,1,1,31,32],[999,2,2,32,34],[1001,3,3,34,37],[1002,2,2,37,39],[1007,1,1,39,40],[1008,1,1,40,41],[1009,2,2,41,43],[1013,10,8,43,51],[1014,1,1,51,52],[1015,1,1,52,53]]],[43,5,5,53,58,[[1020,1,1,53,54],[1021,1,1,54,55],[1022,1,1,55,56],[1025,1,1,56,57],[1041,1,1,57,58]]],[44,5,5,58,63,[[1050,1,1,58,59],[1056,1,1,59,60],[1057,2,2,60,62],[1060,1,1,62,63]]],[45,6,6,63,69,[[1062,1,1,63,64],[1064,1,1,64,65],[1072,1,1,65,66],[1073,3,3,66,69]]],[46,6,6,69,75,[[1078,1,1,69,70],[1082,1,1,70,71],[1086,1,1,71,72],[1087,1,1,72,73],[1089,1,1,73,74],[1090,1,1,74,75]]],[47,4,4,75,79,[[1092,1,1,75,76],[1093,2,2,76,78],[1094,1,1,78,79]]],[48,5,5,79,84,[[1099,3,3,79,82],[1100,1,1,82,83],[1102,1,1,83,84]]],[50,1,1,84,85,[[1107,1,1,84,85]]],[52,1,1,85,86,[[1117,1,1,85,86]]],[53,1,1,86,87,[[1122,1,1,86,87]]],[54,2,2,87,89,[[1125,2,2,87,89]]],[57,1,1,89,90,[[1134,1,1,89,90]]],[58,1,1,90,91,[[1146,1,1,90,91]]],[60,1,1,91,92,[[1158,1,1,91,92]]],[61,4,4,92,96,[[1161,1,1,92,93],[1162,1,1,93,94],[1163,2,2,94,96]]],[65,21,18,96,114,[[1172,5,4,96,100],[1173,1,1,100,101],[1174,2,2,101,103],[1175,3,3,103,106],[1177,2,2,106,108],[1178,1,1,108,109],[1179,4,2,109,111],[1182,2,2,111,113],[1186,1,1,113,114]]]],[23323,23387,23436,23528,23550,23551,23606,23608,23676,23773,23869,24037,24063,24213,24334,24348,24407,24409,24512,24728,24759,24798,25184,25255,25263,25414,25434,25507,25746,25757,25883,26061,26147,26155,26236,26237,26246,26296,26322,26580,26585,26633,26645,26761,26766,26767,26768,26770,26773,26781,26783,26796,26836,27012,27034,27091,27194,27795,28052,28217,28248,28251,28318,28367,28420,28615,28641,28642,28658,28822,28895,28965,28979,29029,29053,29090,29123,29124,29146,29253,29258,29259,29279,29356,29490,29677,29761,29816,29818,29990,30271,30537,30603,30616,30635,30644,30795,30797,30801,30804,30812,30829,30830,30841,30843,30845,30873,30874,30905,30913,30915,30960,30962,31042]]],["giveth",[13,12,[[42,6,6,0,6,[[999,1,1,0,1],[1002,3,3,1,4],[1010,1,1,4,5],[1017,1,1,5,6]]],[43,1,1,6,7,[[1034,1,1,6,7]]],[45,2,2,7,9,[[1076,2,2,7,9]]],[58,3,2,9,11,[[1146,1,1,9,10],[1149,2,1,10,11]]],[59,1,1,11,12,[[1155,1,1,11,12]]]],[26154,26289,26290,26294,26695,26911,27548,28756,28775,30271,30343,30470]]],["giving",[3,3,[[43,1,1,0,1,[[1032,1,1,0,1]]],[44,1,1,1,2,[[1049,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]]],[27450,28042,28685]]],["grant",[6,6,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]],[44,1,1,2,3,[[1060,1,1,2,3]]],[48,1,1,3,4,[[1099,1,1,3,4]]],[54,1,1,4,5,[[1125,1,1,4,5]]],[65,1,1,5,6,[[1169,1,1,5,6]]]],[24967,27051,28308,29267,29827,30767]]],["granted",[3,3,[[43,2,2,0,2,[[1028,1,1,0,1],[1031,1,1,1,2]]],[65,1,1,2,3,[[1185,1,1,2,3]]]],[27325,27417,31025]]],["make",[2,2,[[52,1,1,0,1,[[1118,1,1,0,1]]],[65,1,1,1,2,[[1169,1,1,1,2]]]],[29687,30755]]],["minister",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29301]]],["offer",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[65,1,1,1,2,[[1174,1,1,1,2]]]],[24997,30830]]],["put",[5,5,[[41,1,1,0,1,[[987,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]],[57,2,2,2,4,[[1140,1,1,2,3],[1142,1,1,3,4]]],[65,1,1,4,5,[[1183,1,1,4,5]]]],[25610,28948,30102,30149,30992]]],["set",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30754]]],["shew",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]]],[23981,24739,26968]]],["suffer",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1030,1,1,1,2]]]],[26976,27397]]],["taking",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29657]]],["up",[2,1,[[65,2,1,0,1,[[1186,2,1,0,1]]]],[31051]]],["utter",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28687]]],["yield",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24331]]],["yielded",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24330]]]]},{"k":"G1326","v":[["*",[7,7,[[39,1,1,0,1,[[929,1,1,0,1]]],[40,2,2,1,3,[[960,2,2,1,3]]],[41,1,1,3,4,[[980,1,1,3,4]]],[42,1,1,4,5,[[1002,1,1,4,5]]],[60,2,2,5,7,[[1156,1,1,5,6],[1158,1,1,6,7]]]],[23168,24361,24362,25269,26275,30492,30523]]],["+",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30492]]],["arose",[2,2,[[40,1,1,0,1,[[960,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]]],[24362,26275]]],["awake",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24361]]],["awoke",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25269]]],["raised",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23168]]],["up",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30523]]]]},{"k":"G1327","v":[["+",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23881]]]]},{"k":"G1328","v":[["interpreter",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28706]]]]},{"k":"G1329","v":[["*",[6,6,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]],[45,4,4,2,6,[[1073,1,1,2,3],[1075,3,3,3,6]]]],[26018,27252,28664,28683,28691,28705]]],["expounded",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26018]]],["interpret",[4,4,[[45,4,4,0,4,[[1073,1,1,0,1],[1075,3,3,1,4]]]],[28664,28683,28691,28705]]],["interpretation",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27252]]]]},{"k":"G1330","v":[["*",[42,41,[[39,2,2,0,2,[[940,1,1,0,1],[947,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,10,10,3,13,[[974,2,2,3,5],[976,1,1,5,6],[977,1,1,6,7],[980,1,1,7,8],[981,1,1,8,9],[983,1,1,9,10],[989,1,1,10,11],[991,2,2,11,13]]],[42,2,2,13,15,[[1000,1,1,13,14],[1004,1,1,14,15]]],[43,21,21,15,36,[[1025,2,2,15,17],[1026,2,2,17,19],[1027,1,1,19,20],[1028,2,2,20,22],[1029,1,1,22,23],[1030,2,2,23,25],[1031,1,1,25,26],[1032,2,2,26,28],[1033,1,1,28,29],[1034,1,1,29,30],[1035,2,2,30,32],[1036,2,2,32,34],[1037,2,2,34,36]]],[44,1,1,36,37,[[1050,1,1,36,37]]],[45,3,2,37,39,[[1071,1,1,37,38],[1077,2,1,38,39]]],[46,1,1,39,40,[[1078,1,1,39,40]]],[57,1,1,40,41,[[1136,1,1,40,41]]]],[23532,23786,24358,24988,25008,25093,25122,25267,25307,25429,25662,25732,25735,26160,26440,27180,27216,27248,27254,27297,27326,27329,27347,27368,27376,27438,27445,27483,27489,27546,27580,27584,27586,27606,27628,27651,28059,28568,28781,28816,30028]]],["+",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25122]]],["about",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27297]]],["by",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27546]]],["come",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27254]]],["departed",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27376]]],["go",[4,4,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[42,1,1,2,3,[[1000,1,1,2,3]]],[43,1,1,3,4,[[1028,1,1,3,4]]]],[23786,24988,26160,27329]]],["going",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26440]]],["gone",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27651]]],["into",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30028]]],["over",[4,4,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[43,2,2,2,4,[[1035,1,1,2,3],[1037,1,1,3,4]]]],[24358,25267,27580,27628]]],["pass",[3,3,[[41,1,1,0,1,[[991,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]],[46,1,1,2,3,[[1078,1,1,2,3]]]],[25735,27584,28816]]],["passed",[4,4,[[41,1,1,0,1,[[989,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]],[44,1,1,2,3,[[1050,1,1,2,3]]],[45,1,1,3,4,[[1071,1,1,3,4]]]],[25662,27248,28059,28568]]],["passing",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25093]]],["past",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27347]]],["through",[10,9,[[41,2,2,0,2,[[974,1,1,0,1],[991,1,1,1,2]]],[43,6,6,2,8,[[1025,1,1,2,3],[1030,1,1,3,4],[1032,2,2,4,6],[1036,2,2,6,8]]],[45,2,1,8,9,[[1077,2,1,8,9]]]],[25008,25732,27216,27368,27445,27483,27586,27606,28781]]],["throughout",[2,2,[[43,2,2,0,2,[[1031,1,1,0,1],[1033,1,1,1,2]]]],[27438,27489]]],["travelled",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27326]]],["walketh",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23532,25429]]],["went",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25307]]],["where",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27180]]]]},{"k":"G1331","v":[["enquiry",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27276]]]]},{"k":"G1332","v":[["old",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23185]]]]},{"k":"G1333","v":[["+",[2,2,[[43,2,2,0,2,[[1041,1,1,0,1],[1045,1,1,1,2]]]],[27796,27929]]]]},{"k":"G1334","v":[["*",[8,8,[[40,2,2,0,2,[[961,1,1,0,1],[965,1,1,1,2]]],[41,2,2,2,4,[[980,1,1,2,3],[981,1,1,3,4]]],[43,3,3,4,7,[[1025,1,1,4,5],[1026,1,1,5,6],[1029,1,1,6,7]]],[57,1,1,7,8,[[1143,1,1,7,8]]]],[24380,24547,25284,25311,27209,27243,27354,30204]]],["declare",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27209]]],["declared",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1029,1,1,1,2]]]],[27243,27354]]],["shew",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25284]]],["tell",[2,2,[[40,1,1,0,1,[[965,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[24547,30204]]],["told",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[24380,25311]]]]},{"k":"G1335","v":[["declaration",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24894]]]]},{"k":"G1336","v":[["+",[4,4,[[57,4,4,0,4,[[1139,1,1,0,1],[1142,3,3,1,4]]]],[30067,30134,30145,30147]]]]},{"k":"G1337","v":[["met",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27896]]]]},{"k":"G1338","v":[["piercing",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30026]]]]},{"k":"G1339","v":[["*",[3,3,[[41,2,2,0,2,[[994,1,1,0,1],[996,1,1,1,2]]],[43,1,1,2,3,[[1044,1,1,2,3]]]],[25923,26042,27883]]],["+",[2,2,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[25923,27883]]],["parted",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26042]]]]},{"k":"G1340","v":[["affirmed",[2,2,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]]],[25923,27352]]]]},{"k":"G1341","v":[["judgment",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27967]]]]},{"k":"G1342","v":[["*",[81,76,[[39,19,16,0,16,[[929,1,1,0,1],[933,1,1,1,2],[937,1,1,2,3],[938,3,1,3,4],[941,3,3,4,7],[948,2,2,7,9],[951,4,3,9,12],[953,2,2,12,14],[955,2,2,14,16]]],[40,2,2,16,18,[[958,1,1,16,17],[962,1,1,17,18]]],[41,11,11,18,29,[[973,2,2,18,20],[974,1,1,20,21],[977,1,1,21,22],[984,1,1,22,23],[986,1,1,23,24],[987,1,1,24,25],[990,1,1,25,26],[992,1,1,26,27],[995,2,2,27,29]]],[42,3,3,29,32,[[1001,1,1,29,30],[1003,1,1,30,31],[1013,1,1,31,32]]],[43,6,6,32,38,[[1020,1,1,32,33],[1021,1,1,33,34],[1024,1,1,34,35],[1027,1,1,35,36],[1039,1,1,36,37],[1041,1,1,37,38]]],[44,7,7,38,45,[[1046,1,1,38,39],[1047,1,1,39,40],[1048,2,2,40,42],[1050,2,2,42,44],[1052,1,1,44,45]]],[47,1,1,45,46,[[1093,1,1,45,46]]],[48,1,1,46,47,[[1102,1,1,46,47]]],[49,2,2,47,49,[[1103,1,1,47,48],[1106,1,1,48,49]]],[50,1,1,49,50,[[1110,1,1,49,50]]],[52,2,2,50,52,[[1116,2,2,50,52]]],[53,1,1,52,53,[[1119,1,1,52,53]]],[54,1,1,53,54,[[1128,1,1,53,54]]],[55,1,1,54,55,[[1129,1,1,54,55]]],[57,3,3,55,58,[[1142,1,1,55,56],[1143,1,1,56,57],[1144,1,1,57,58]]],[58,2,2,58,60,[[1150,2,2,58,60]]],[59,3,3,60,63,[[1153,2,2,60,62],[1154,1,1,62,63]]],[60,4,3,63,66,[[1156,1,1,63,64],[1157,3,2,64,66]]],[61,6,5,66,71,[[1159,1,1,66,67],[1160,2,2,67,69],[1161,3,2,69,71]]],[65,5,5,71,76,[[1181,1,1,71,72],[1182,2,2,72,74],[1185,1,1,74,75],[1188,1,1,75,76]]]],[23163,23279,23392,23458,23556,23582,23588,23796,23799,23946,23947,23953,24045,24054,24148,24153,24277,24427,24899,24910,24998,25139,25516,25567,25595,25697,25799,25982,25985,26240,26352,26784,27010,27041,27168,27281,27718,27784,27947,27975,28001,28017,28054,28066,28103,29113,29338,29368,29450,29543,29654,29655,29705,29878,29900,30171,30176,30235,30360,30370,30436,30442,30464,30492,30507,30508,30549,30551,30579,30586,30591,30949,30959,30961,31019,31091]]],["Just",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27010]]],["One",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1039,1,1,1,2]]]],[27168,27718]]],["just",[25,25,[[39,3,3,0,3,[[929,1,1,0,1],[933,1,1,1,2],[941,1,1,2,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[41,4,4,4,8,[[973,1,1,4,5],[974,1,1,5,6],[986,1,1,6,7],[995,1,1,7,8]]],[42,1,1,8,9,[[1001,1,1,8,9]]],[43,2,2,9,11,[[1027,1,1,9,10],[1041,1,1,10,11]]],[44,4,4,11,15,[[1046,1,1,11,12],[1047,1,1,12,13],[1048,1,1,13,14],[1052,1,1,14,15]]],[47,1,1,15,16,[[1093,1,1,15,16]]],[49,1,1,16,17,[[1106,1,1,16,17]]],[50,1,1,17,18,[[1110,1,1,17,18]]],[55,1,1,18,19,[[1129,1,1,18,19]]],[57,1,1,19,20,[[1142,1,1,19,20]]],[58,1,1,20,21,[[1150,1,1,20,21]]],[59,1,1,21,22,[[1153,1,1,21,22]]],[60,1,1,22,23,[[1157,1,1,22,23]]],[61,1,1,23,24,[[1159,1,1,23,24]]],[65,1,1,24,25,[[1181,1,1,24,25]]]],[23163,23279,23588,24427,24910,24998,25567,25985,26240,27281,27784,27947,27975,28017,28103,29113,29450,29543,29900,30171,30360,30442,30507,30549,30949]]],["man",[7,6,[[39,3,2,0,2,[[938,2,1,0,1],[955,1,1,1,2]]],[44,1,1,2,3,[[1050,1,1,2,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]],[58,1,1,4,5,[[1150,1,1,4,5]]],[60,1,1,5,6,[[1157,1,1,5,6]]]],[23458,24148,28054,29705,30370,30508]]],["man's",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23458]]],["meet",[2,2,[[49,1,1,0,1,[[1103,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[29368,30492]]],["men",[2,2,[[41,1,1,0,1,[[992,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[25799,30235]]],["person",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24153]]],["persons",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25595]]],["right",[5,5,[[39,2,2,0,2,[[948,2,2,0,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[43,1,1,3,4,[[1021,1,1,3,4]]],[48,1,1,4,5,[[1102,1,1,4,5]]]],[23796,23799,25516,27041,29338]]],["righteous",[33,31,[[39,9,8,0,8,[[937,1,1,0,1],[941,2,2,1,3],[951,4,3,3,6],[953,2,2,6,8]]],[40,1,1,8,9,[[958,1,1,8,9]]],[41,4,4,9,13,[[973,1,1,9,10],[977,1,1,10,11],[990,1,1,11,12],[995,1,1,12,13]]],[42,2,2,13,15,[[1003,1,1,13,14],[1013,1,1,14,15]]],[44,2,2,15,17,[[1048,1,1,15,16],[1050,1,1,16,17]]],[52,1,1,17,18,[[1116,1,1,17,18]]],[54,1,1,18,19,[[1128,1,1,18,19]]],[57,1,1,19,20,[[1143,1,1,19,20]]],[59,2,2,20,22,[[1153,1,1,20,21],[1154,1,1,21,22]]],[60,1,1,22,23,[[1157,1,1,22,23]]],[61,5,4,23,27,[[1160,2,2,23,25],[1161,3,2,25,27]]],[65,4,4,27,31,[[1182,2,2,27,29],[1185,1,1,29,30],[1188,1,1,30,31]]]],[23392,23556,23582,23946,23947,23953,24045,24054,24277,24899,25139,25697,25982,26352,26784,28001,28066,29654,29878,30176,30436,30464,30508,30551,30579,30586,30591,30959,30961,31019,31091]]],["thing",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29655]]]]},{"k":"G1343","v":[["*",[92,85,[[39,6,6,0,6,[[931,1,1,0,1],[933,3,3,1,4],[934,1,1,4,5],[949,1,1,5,6]]],[41,1,1,6,7,[[973,1,1,6,7]]],[42,2,2,7,9,[[1012,2,2,7,9]]],[43,4,4,9,13,[[1027,1,1,9,10],[1030,1,1,10,11],[1034,1,1,11,12],[1041,1,1,12,13]]],[44,36,30,13,43,[[1046,1,1,13,14],[1048,5,5,14,19],[1049,8,7,19,26],[1050,2,2,26,28],[1051,5,5,28,33],[1053,1,1,33,34],[1054,6,3,34,37],[1055,7,5,37,42],[1059,1,1,42,43]]],[45,1,1,43,44,[[1062,1,1,43,44]]],[46,7,7,44,51,[[1080,1,1,44,45],[1082,1,1,45,46],[1083,2,2,46,48],[1086,2,2,48,50],[1088,1,1,50,51]]],[47,4,4,51,55,[[1092,1,1,51,52],[1093,2,2,52,54],[1095,1,1,54,55]]],[48,3,3,55,58,[[1100,1,1,55,56],[1101,1,1,56,57],[1102,1,1,57,58]]],[49,4,3,58,61,[[1103,1,1,58,59],[1105,3,2,59,61]]],[53,1,1,61,62,[[1124,1,1,61,62]]],[54,3,3,62,65,[[1126,1,1,62,63],[1127,1,1,63,64],[1128,1,1,64,65]]],[55,1,1,65,66,[[1131,1,1,65,66]]],[57,6,6,66,72,[[1133,1,1,66,67],[1137,1,1,67,68],[1139,1,1,68,69],[1143,2,2,69,71],[1144,1,1,71,72]]],[58,3,3,72,75,[[1146,1,1,72,73],[1147,1,1,73,74],[1148,1,1,74,75]]],[59,2,2,75,77,[[1152,1,1,75,76],[1153,1,1,76,77]]],[60,4,4,77,81,[[1156,1,1,77,78],[1157,2,2,78,80],[1158,1,1,80,81]]],[61,3,3,81,84,[[1160,1,1,81,82],[1161,2,2,82,84]]],[65,1,1,84,85,[[1185,1,1,84,85]]]],[23207,23240,23244,23254,23315,23858,24968,26734,26736,27294,27372,27554,27794,27947,27996,28012,28013,28016,28017,28025,28027,28028,28031,28033,28035,28044,28064,28068,28081,28084,28086,28087,28088,28126,28183,28185,28186,28191,28192,28193,28194,28198,28297,28393,28850,28898,28905,28912,28965,28966,29004,29102,29108,29123,29167,29296,29313,29351,29372,29427,29430,29799,29849,29869,29878,29928,29972,30043,30066,30179,30205,30223,30286,30316,30337,30423,30438,30480,30505,30521,30535,30579,30586,30589,31028]]],["+",[3,3,[[39,1,1,0,1,[[933,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[23244,27794,30438]]],["righteousness",[89,82,[[39,5,5,0,5,[[931,1,1,0,1],[933,2,2,1,3],[934,1,1,3,4],[949,1,1,4,5]]],[41,1,1,5,6,[[973,1,1,5,6]]],[42,2,2,6,8,[[1012,2,2,6,8]]],[43,3,3,8,11,[[1027,1,1,8,9],[1030,1,1,9,10],[1034,1,1,10,11]]],[44,36,30,11,41,[[1046,1,1,11,12],[1048,5,5,12,17],[1049,8,7,17,24],[1050,2,2,24,26],[1051,5,5,26,31],[1053,1,1,31,32],[1054,6,3,32,35],[1055,7,5,35,40],[1059,1,1,40,41]]],[45,1,1,41,42,[[1062,1,1,41,42]]],[46,7,7,42,49,[[1080,1,1,42,43],[1082,1,1,43,44],[1083,2,2,44,46],[1086,2,2,46,48],[1088,1,1,48,49]]],[47,4,4,49,53,[[1092,1,1,49,50],[1093,2,2,50,52],[1095,1,1,52,53]]],[48,3,3,53,56,[[1100,1,1,53,54],[1101,1,1,54,55],[1102,1,1,55,56]]],[49,4,3,56,59,[[1103,1,1,56,57],[1105,3,2,57,59]]],[53,1,1,59,60,[[1124,1,1,59,60]]],[54,3,3,60,63,[[1126,1,1,60,61],[1127,1,1,61,62],[1128,1,1,62,63]]],[55,1,1,63,64,[[1131,1,1,63,64]]],[57,6,6,64,70,[[1133,1,1,64,65],[1137,1,1,65,66],[1139,1,1,66,67],[1143,2,2,67,69],[1144,1,1,69,70]]],[58,3,3,70,73,[[1146,1,1,70,71],[1147,1,1,71,72],[1148,1,1,72,73]]],[59,1,1,73,74,[[1152,1,1,73,74]]],[60,4,4,74,78,[[1156,1,1,74,75],[1157,2,2,75,77],[1158,1,1,77,78]]],[61,3,3,78,81,[[1160,1,1,78,79],[1161,2,2,79,81]]],[65,1,1,81,82,[[1185,1,1,81,82]]]],[23207,23240,23254,23315,23858,24968,26734,26736,27294,27372,27554,27947,27996,28012,28013,28016,28017,28025,28027,28028,28031,28033,28035,28044,28064,28068,28081,28084,28086,28087,28088,28126,28183,28185,28186,28191,28192,28193,28194,28198,28297,28393,28850,28898,28905,28912,28965,28966,29004,29102,29108,29123,29167,29296,29313,29351,29372,29427,29430,29799,29849,29869,29878,29928,29972,30043,30066,30179,30205,30223,30286,30316,30337,30423,30480,30505,30521,30535,30579,30586,30589,31028]]]]},{"k":"G1344","v":[["*",[40,36,[[39,2,2,0,2,[[939,1,1,0,1],[940,1,1,1,2]]],[41,5,5,2,7,[[979,2,2,2,4],[982,1,1,4,5],[988,1,1,5,6],[990,1,1,6,7]]],[43,2,1,7,8,[[1030,2,1,7,8]]],[44,15,14,8,22,[[1047,1,1,8,9],[1048,6,6,9,15],[1049,2,2,15,17],[1050,2,2,17,19],[1051,1,1,19,20],[1053,3,2,20,22]]],[45,2,2,22,24,[[1065,1,1,22,23],[1067,1,1,23,24]]],[47,8,6,24,30,[[1092,4,2,24,26],[1093,3,3,26,29],[1095,1,1,29,30]]],[53,1,1,30,31,[[1121,1,1,30,31]]],[55,1,1,31,32,[[1131,1,1,31,32]]],[58,3,3,32,35,[[1147,3,3,32,35]]],[65,1,1,35,36,[[1188,1,1,35,36]]]],[23478,23526,25224,25230,25392,25635,25702,27401,27975,27995,28011,28015,28017,28019,28021,28024,28027,28048,28056,28075,28146,28149,28437,28478,29097,29098,29110,29113,29126,29166,29747,29930,30314,30317,30318,31091]]],["+",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[27995]]],["freed",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28075]]],["justified",[30,26,[[39,2,2,0,2,[[939,1,1,0,1],[940,1,1,1,2]]],[41,3,3,2,5,[[979,2,2,2,4],[990,1,1,4,5]]],[43,2,1,5,6,[[1030,2,1,5,6]]],[44,9,8,6,14,[[1047,1,1,6,7],[1048,3,3,7,10],[1049,1,1,10,11],[1050,2,2,11,13],[1053,2,1,13,14]]],[45,2,2,14,16,[[1065,1,1,14,15],[1067,1,1,15,16]]],[47,7,5,16,21,[[1092,4,2,16,18],[1093,2,2,18,20],[1095,1,1,20,21]]],[53,1,1,21,22,[[1121,1,1,21,22]]],[55,1,1,22,23,[[1131,1,1,22,23]]],[58,3,3,23,26,[[1147,3,3,23,26]]]],[23478,23526,25224,25230,25702,27401,27975,28011,28015,28019,28024,28048,28056,28146,28437,28478,29097,29098,29113,29126,29166,29747,29930,30314,30317,30318]]],["justifier",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28017]]],["justifieth",[2,2,[[44,2,2,0,2,[[1049,1,1,0,1],[1053,1,1,1,2]]]],[28027,28149]]],["justify",[4,4,[[41,2,2,0,2,[[982,1,1,0,1],[988,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[47,1,1,3,4,[[1093,1,1,3,4]]]],[25392,25635,28021,29110]]],["righteous",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31091]]]]},{"k":"G1345","v":[["*",[10,10,[[41,1,1,0,1,[[973,1,1,0,1]]],[44,5,5,1,6,[[1046,1,1,1,2],[1047,1,1,2,3],[1050,2,2,3,5],[1053,1,1,5,6]]],[57,2,2,6,8,[[1141,2,2,6,8]]],[65,2,2,8,10,[[1181,1,1,8,9],[1185,1,1,9,10]]]],[24899,27962,27988,28063,28065,28120,30106,30115,30950,31025]]],["judgment",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27962]]],["judgments",[1,1,[[65,1,1,0,1,[[1181,1,1,0,1]]]],[30950]]],["justification",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28063]]],["ordinances",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[57,2,2,1,3,[[1141,2,2,1,3]]]],[24899,30106,30115]]],["righteousness",[4,4,[[44,3,3,0,3,[[1047,1,1,0,1],[1050,1,1,1,2],[1053,1,1,2,3]]],[65,1,1,3,4,[[1185,1,1,3,4]]]],[27988,28065,28120,31025]]]]},{"k":"G1346","v":[["*",[5,5,[[41,1,1,0,1,[[995,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]],[55,1,1,3,4,[[1130,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[25976,28752,29580,29920,30422]]],["+",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29920]]],["justly",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]]],[25976,29580]]],["righteously",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30422]]],["righteousness",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28752]]]]},{"k":"G1347","v":[["justification",[2,2,[[44,2,2,0,2,[[1049,1,1,0,1],[1050,1,1,1,2]]]],[28047,28065]]]]},{"k":"G1348","v":[["judge",[3,3,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,2,2,1,3,[[1024,2,2,1,3]]]],[25473,27143,27151]]]]},{"k":"G1349","v":[["*",[4,4,[[43,2,2,0,2,[[1042,1,1,0,1],[1045,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[27811,27903,29658,30679]]],["+",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29658]]],["judgment",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27811]]],["vengeance",[2,2,[[43,1,1,0,1,[[1045,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[27903,30679]]]]},{"k":"G1350","v":[["*",[12,11,[[39,2,2,0,2,[[932,2,2,0,2]]],[40,2,2,2,4,[[957,2,2,2,4]]],[41,4,4,4,8,[[977,4,4,4,8]]],[42,4,3,8,11,[[1017,4,3,8,11]]]],[23229,23230,24233,24234,25109,25111,25112,25113,26904,26906,26909]]],["net",[6,5,[[41,2,2,0,2,[[977,2,2,0,2]]],[42,4,3,2,5,[[1017,4,3,2,5]]]],[25112,25113,26904,26906,26909]]],["nets",[6,6,[[39,2,2,0,2,[[932,2,2,0,2]]],[40,2,2,2,4,[[957,2,2,2,4]]],[41,2,2,4,6,[[977,2,2,4,6]]]],[23229,23230,24233,24234,25109,25111]]]]},{"k":"G1351","v":[["doubletongued",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29739]]]]},{"k":"G1352","v":[["*",[53,52,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,2,2,1,3,[[973,1,1,1,2],[979,1,1,2,3]]],[43,10,10,3,13,[[1027,1,1,3,4],[1030,1,1,4,5],[1032,1,1,5,6],[1037,2,2,6,8],[1041,1,1,8,9],[1042,1,1,9,10],[1043,1,1,10,11],[1044,2,2,11,13]]],[44,6,6,13,19,[[1046,1,1,13,14],[1047,1,1,14,15],[1049,1,1,15,16],[1058,1,1,16,17],[1060,2,2,17,19]]],[45,1,1,19,20,[[1073,1,1,19,20]]],[46,7,6,20,26,[[1079,1,1,20,21],[1081,3,2,21,23],[1082,1,1,23,24],[1083,1,1,24,25],[1089,1,1,25,26]]],[48,5,5,26,31,[[1098,1,1,26,27],[1099,1,1,27,28],[1100,2,2,28,30],[1101,1,1,30,31]]],[49,1,1,31,32,[[1104,1,1,31,32]]],[51,3,3,32,35,[[1112,1,1,32,33],[1113,1,1,33,34],[1115,1,1,34,35]]],[56,1,1,35,36,[[1132,1,1,35,36]]],[57,9,9,36,45,[[1135,2,2,36,38],[1138,1,1,38,39],[1142,1,1,39,40],[1143,2,2,40,42],[1144,2,2,42,44],[1145,1,1,44,45]]],[58,2,2,45,47,[[1146,1,1,45,46],[1149,1,1,46,47]]],[59,2,2,47,49,[[1151,1,1,47,48],[1152,1,1,48,49]]],[60,3,3,49,52,[[1156,2,2,49,51],[1158,1,1,51,52]]]],[24137,24928,25202,27288,27397,27461,27652,27657,27795,27822,27826,27880,27889,27954,27963,28044,28271,28310,28325,28637,28832,28872,28875,28886,28915,29032,29240,29264,29280,29297,29318,29400,29588,29591,29632,29946,30002,30005,30045,30138,30184,30188,30224,30240,30253,30287,30343,30387,30405,30489,30491,30536]]],["+",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27288]]],["Therefore",[5,5,[[43,1,1,0,1,[[1037,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]],[46,1,1,2,3,[[1089,1,1,2,3]]],[57,2,2,3,5,[[1138,1,1,3,4],[1143,1,1,4,5]]]],[27657,27963,29032,30045,30184]]],["Wherefore",[38,38,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[43,6,6,2,8,[[1030,1,1,2,3],[1032,1,1,3,4],[1037,1,1,4,5],[1042,1,1,5,6],[1044,2,2,6,8]]],[44,3,3,8,11,[[1046,1,1,8,9],[1058,1,1,9,10],[1060,1,1,10,11]]],[45,1,1,11,12,[[1073,1,1,11,12]]],[46,3,3,12,15,[[1079,1,1,12,13],[1082,1,1,13,14],[1083,1,1,14,15]]],[48,5,5,15,20,[[1098,1,1,15,16],[1099,1,1,16,17],[1100,2,2,17,19],[1101,1,1,19,20]]],[49,1,1,20,21,[[1104,1,1,20,21]]],[51,3,3,21,24,[[1112,1,1,21,22],[1113,1,1,22,23],[1115,1,1,23,24]]],[56,1,1,24,25,[[1132,1,1,24,25]]],[57,6,6,25,31,[[1135,2,2,25,27],[1142,1,1,27,28],[1144,2,2,28,30],[1145,1,1,30,31]]],[58,2,2,31,33,[[1146,1,1,31,32],[1149,1,1,32,33]]],[59,2,2,33,35,[[1151,1,1,33,34],[1152,1,1,34,35]]],[60,3,3,35,38,[[1156,2,2,35,37],[1158,1,1,37,38]]]],[24137,25202,27397,27461,27652,27822,27880,27889,27954,28271,28310,28637,28832,28886,28915,29240,29264,29280,29297,29318,29400,29588,29591,29632,29946,30002,30005,30138,30224,30240,30253,30287,30343,30387,30405,30489,30491,30536]]],["cause",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]]],[28325,28875]]],["therefore",[4,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[44,1,1,1,2,[[1049,1,1,1,2]]],[46,2,1,2,3,[[1081,2,1,2,3]]]],[24928,28044,28872]]],["wherefore",[3,3,[[43,2,2,0,2,[[1041,1,1,0,1],[1043,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[27795,27826,30188]]]]},{"k":"G1353","v":[["*",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]]],[25246,27524]]],["through",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27524]]],["throughout",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25246]]]]},{"k":"G1354","v":[["Dionysius",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27557]]]]},{"k":"G1355","v":[["Wherefore",[3,3,[[45,3,3,0,3,[[1069,1,1,0,1],[1071,1,1,1,2],[1075,1,1,2,3]]]],[28540,28581,28691]]]]},{"k":"G1356","v":[["Jupiter",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27620]]]]},{"k":"G1357","v":[["reformation",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30115]]]]},{"k":"G1358","v":[["*",[4,4,[[39,3,3,0,3,[[934,2,2,0,2],[952,1,1,2,3]]],[41,1,1,3,4,[[984,1,1,3,4]]]],[23301,23302,24000,25498]]],["through",[3,3,[[39,2,2,0,2,[[934,2,2,0,2]]],[41,1,1,2,3,[[984,1,1,2,3]]]],[23301,23302,25498]]],["up",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[24000]]]]},{"k":"G1359","v":[["Pollux",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27910]]]]},{"k":"G1360","v":[["*",[22,21,[[41,3,3,0,3,[[973,1,1,0,1],[974,1,1,1,2],[993,1,1,2,3]]],[43,5,4,3,7,[[1027,1,1,3,4],[1034,1,1,4,5],[1035,2,1,5,6],[1039,1,1,6,7]]],[44,4,4,7,11,[[1046,2,2,7,9],[1048,1,1,9,10],[1053,1,1,10,11]]],[45,1,1,11,12,[[1076,1,1,11,12]]],[47,1,1,12,13,[[1092,1,1,12,13]]],[49,1,1,13,14,[[1104,1,1,13,14]]],[51,2,2,14,16,[[1112,1,1,14,15],[1114,1,1,15,16]]],[57,2,2,16,18,[[1143,2,2,16,18]]],[58,1,1,18,19,[[1149,1,1,18,19]]],[59,2,2,19,21,[[1151,2,2,19,21]]]],[24906,24980,25854,27279,27554,27567,27722,27949,27951,28011,28123,28727,29097,29417,29578,29609,30177,30195,30340,30390,30398]]],["Because",[4,4,[[43,1,1,0,1,[[1034,1,1,0,1]]],[44,2,2,1,3,[[1046,1,1,1,2],[1053,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[27554,27949,28123,30390]]],["For",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[27567,30398]]],["Therefore",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28011]]],["because",[7,7,[[41,1,1,0,1,[[974,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]],[57,2,2,4,6,[[1143,2,2,4,6]]],[58,1,1,6,7,[[1149,1,1,6,7]]]],[24980,28727,29417,29578,30177,30195,30340]]],["for",[6,6,[[41,2,2,0,2,[[973,1,1,0,1],[993,1,1,1,2]]],[43,3,3,2,5,[[1027,1,1,2,3],[1035,1,1,3,4],[1039,1,1,4,5]]],[47,1,1,5,6,[[1092,1,1,5,6]]]],[24906,25854,27279,27567,27722,29097]]],["that",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[51,1,1,1,2,[[1114,1,1,1,2]]]],[27951,29609]]]]},{"k":"G1361","v":[["Diotrephes",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30667]]]]},{"k":"G1362","v":[["*",[4,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]],[65,2,1,2,3,[[1184,2,1,2,3]]]],[23933,29780,30999]]],["double",[3,2,[[53,1,1,0,1,[[1123,1,1,0,1]]],[65,2,1,1,2,[[1184,2,1,1,2]]]],[29780,30999]]],["more",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23933]]]]},{"k":"G1363","v":[["double",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30999]]]]},{"k":"G1364","v":[["*",[6,6,[[40,2,2,0,2,[[970,2,2,0,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]],[51,1,1,4,5,[[1112,1,1,4,5]]],[64,1,1,5,6,[[1166,1,1,5,6]]]],[24784,24826,25700,29458,29588,30684]]],["+",[2,2,[[49,1,1,0,1,[[1106,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]]],[29458,29588]]],["twice",[4,4,[[40,2,2,0,2,[[970,2,2,0,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[24784,24826,25700,30684]]]]},{"k":"G1365","v":[["*",[2,2,[[39,2,2,0,2,[[942,1,1,0,1],[956,1,1,1,2]]]],[23628,24212]]],["doubt",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23628]]],["doubted",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24212]]]]},{"k":"G1366","v":[["*",[3,3,[[57,1,1,0,1,[[1136,1,1,0,1]]],[65,2,2,1,3,[[1167,1,1,1,2],[1168,1,1,2,3]]]],[30026,30713,30729]]],["edges",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30729]]],["twoedged",[2,2,[[57,1,1,0,1,[[1136,1,1,0,1]]],[65,1,1,1,2,[[1167,1,1,1,2]]]],[30026,30713]]]]},{"k":"G1367","v":[["thousand",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24377]]]]},{"k":"G1368","v":[["strain",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23942]]]]},{"k":"G1369","v":[["+",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23452]]]]},{"k":"G1370","v":[["*",[3,3,[[44,1,1,0,1,[[1061,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]]],[28353,28413,29182]]],["divisions",[2,2,[[44,1,1,0,1,[[1061,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]]],[28353,28413]]],["seditions",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29182]]]]},{"k":"G1371","v":[["+",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[24008,25505]]]]},{"k":"G1372","v":[["*",[16,16,[[39,5,5,0,5,[[933,1,1,0,1],[953,4,4,1,5]]],[42,6,6,5,11,[[1000,3,3,5,8],[1002,1,1,8,9],[1003,1,1,9,10],[1015,1,1,10,11]]],[44,1,1,11,12,[[1057,1,1,11,12]]],[45,1,1,12,13,[[1065,1,1,12,13]]],[65,3,3,13,16,[[1173,1,1,13,14],[1187,1,1,14,15],[1188,1,1,15,16]]]],[23240,24043,24045,24050,24052,26169,26170,26171,26292,26365,26853,28265,28444,30826,31059,31097]]],["athirst",[3,3,[[39,1,1,0,1,[[953,1,1,0,1]]],[65,2,2,1,3,[[1187,1,1,1,2],[1188,1,1,2,3]]]],[24052,31059,31097]]],["thirst",[10,10,[[39,1,1,0,1,[[933,1,1,0,1]]],[42,6,6,1,7,[[1000,3,3,1,4],[1002,1,1,4,5],[1003,1,1,5,6],[1015,1,1,6,7]]],[44,1,1,7,8,[[1057,1,1,7,8]]],[45,1,1,8,9,[[1065,1,1,8,9]]],[65,1,1,9,10,[[1173,1,1,9,10]]]],[23240,26169,26170,26171,26292,26365,26853,28265,28444,30826]]],["thirsty",[3,3,[[39,3,3,0,3,[[953,3,3,0,3]]]],[24043,24045,24050]]]]},{"k":"G1373","v":[["thirst",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29016]]]]},{"k":"G1374","v":[["minded",[2,2,[[58,2,2,0,2,[[1146,1,1,0,1],[1149,1,1,1,2]]]],[30274,30345]]]]},{"k":"G1375","v":[["*",[10,9,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,2,2,1,3,[[960,1,1,1,2],[966,1,1,2,3]]],[43,2,2,3,5,[[1025,1,1,3,4],[1030,1,1,4,5]]],[44,1,1,5,6,[[1053,1,1,5,6]]],[46,1,1,6,7,[[1089,1,1,6,7]]],[52,1,1,7,8,[[1116,1,1,7,8]]],[54,2,1,8,9,[[1127,2,1,8,9]]]],[23560,24340,24618,27177,27412,28151,29032,29653,29864]]],["Persecutions",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29864]]],["persecution",[5,5,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[43,2,2,2,4,[[1025,1,1,2,3],[1030,1,1,3,4]]],[44,1,1,4,5,[[1053,1,1,4,5]]]],[23560,24340,27177,27412,28151]]],["persecutions",[4,4,[[40,1,1,0,1,[[966,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]],[54,1,1,3,4,[[1127,1,1,3,4]]]],[24618,29032,29653,29864]]]]},{"k":"G1376","v":[["persecutor",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29709]]]]},{"k":"G1377","v":[["*",[44,43,[[39,6,6,0,6,[[933,4,4,0,4],[938,1,1,4,5],[951,1,1,5,6]]],[41,2,2,6,8,[[989,1,1,6,7],[993,1,1,7,8]]],[42,3,2,8,10,[[1001,1,1,8,9],[1011,2,1,9,10]]],[43,9,9,10,19,[[1024,1,1,10,11],[1026,2,2,11,13],[1039,3,3,13,16],[1043,3,3,16,19]]],[44,5,5,19,24,[[1054,2,2,19,21],[1057,2,2,21,23],[1059,1,1,23,24]]],[45,3,3,24,27,[[1065,1,1,24,25],[1075,1,1,25,26],[1076,1,1,26,27]]],[46,1,1,27,28,[[1081,1,1,27,28]]],[47,5,5,28,33,[[1091,2,2,28,30],[1094,1,1,30,31],[1095,1,1,31,32],[1096,1,1,32,33]]],[49,3,3,33,36,[[1105,3,3,33,36]]],[51,1,1,36,37,[[1115,1,1,36,37]]],[53,1,1,37,38,[[1124,1,1,37,38]]],[54,2,2,38,40,[[1126,1,1,38,39],[1127,1,1,39,40]]],[57,1,1,40,41,[[1144,1,1,40,41]]],[59,1,1,41,42,[[1153,1,1,41,42]]],[65,1,1,42,43,[[1178,1,1,42,43]]]],[23244,23245,23246,23278,23440,23952,25674,25838,26226,26719,27168,27220,27221,27708,27711,27712,27834,27837,27838,28185,28186,28258,28259,28299,28445,28679,28727,28868,29070,29080,29160,29173,29200,29427,29433,29435,29636,29799,29849,29865,30226,30435,30904]]],["+",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28299]]],["Follow",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30226]]],["Persecuted",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28868]]],["after",[3,3,[[45,1,1,0,1,[[1075,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]]],[28679,29433,29799]]],["ensue",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30435]]],["follow",[3,3,[[41,1,1,0,1,[[989,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]]],[25674,29636,29849]]],["followed",[2,2,[[44,2,2,0,2,[[1054,2,2,0,2]]]],[28185,28186]]],["persecute",[8,8,[[39,4,4,0,4,[[933,2,2,0,2],[938,1,1,2,3],[951,1,1,3,4]]],[41,1,1,4,5,[[993,1,1,4,5]]],[42,2,2,5,7,[[1001,1,1,5,6],[1011,1,1,6,7]]],[44,1,1,7,8,[[1057,1,1,7,8]]]],[23245,23278,23440,23952,25838,26226,26719,28259]]],["persecuted",[12,12,[[39,2,2,0,2,[[933,2,2,0,2]]],[42,1,1,2,3,[[1011,1,1,2,3]]],[43,3,3,3,6,[[1024,1,1,3,4],[1039,1,1,4,5],[1043,1,1,5,6]]],[45,2,2,6,8,[[1065,1,1,6,7],[1076,1,1,7,8]]],[47,3,3,8,11,[[1091,2,2,8,10],[1094,1,1,10,11]]],[65,1,1,11,12,[[1178,1,1,11,12]]]],[23244,23246,26719,27168,27708,27834,28445,28727,29070,29080,29160,30904]]],["persecutest",[6,6,[[43,6,6,0,6,[[1026,2,2,0,2],[1039,2,2,2,4],[1043,2,2,4,6]]]],[27220,27221,27711,27712,27837,27838]]],["persecuting",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29427]]],["persecution",[3,3,[[47,2,2,0,2,[[1095,1,1,0,1],[1096,1,1,1,2]]],[54,1,1,2,3,[[1127,1,1,2,3]]]],[29173,29200,29865]]],["press",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29435]]],["to",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28258]]]]},{"k":"G1378","v":[["*",[5,5,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,2,2,1,3,[[1033,1,1,1,2],[1034,1,1,2,3]]],[48,1,1,3,4,[[1098,1,1,3,4]]],[50,1,1,4,5,[[1108,1,1,4,5]]]],[24974,27487,27530,29244,29508]]],["decree",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24974]]],["decrees",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1034,1,1,1,2]]]],[27487,27530]]],["ordinances",[2,2,[[48,1,1,0,1,[[1098,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[29244,29508]]]]},{"k":"G1379","v":[["ordinances",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29514]]]]},{"k":"G1380","v":[["*",[63,62,[[39,10,10,0,10,[[931,1,1,0,1],[934,1,1,1,2],[945,1,1,2,3],[946,1,1,3,4],[949,1,1,4,5],[950,2,2,5,7],[952,1,1,7,8],[954,2,2,8,10]]],[40,2,2,10,12,[[962,1,1,10,11],[966,1,1,11,12]]],[41,11,11,12,23,[[973,1,1,12,13],[980,1,1,13,14],[982,1,1,14,15],[984,2,2,15,17],[985,2,2,17,19],[989,1,1,19,20],[991,1,1,20,21],[994,1,1,21,22],[996,1,1,22,23]]],[42,7,7,23,30,[[1001,2,2,23,25],[1007,2,2,25,27],[1009,1,1,27,28],[1012,1,1,28,29],[1016,1,1,29,30]]],[43,9,9,30,39,[[1029,1,1,30,31],[1032,4,4,31,35],[1034,1,1,35,36],[1042,1,1,36,37],[1043,1,1,37,38],[1044,1,1,38,39]]],[45,9,9,39,48,[[1064,1,1,39,40],[1065,1,1,40,41],[1068,1,1,41,42],[1069,1,1,42,43],[1071,1,1,43,44],[1072,1,1,44,45],[1073,2,2,45,47],[1075,1,1,47,48]]],[46,3,3,48,51,[[1087,1,1,48,49],[1088,1,1,49,50],[1089,1,1,50,51]]],[47,5,4,51,55,[[1092,4,3,51,54],[1096,1,1,54,55]]],[49,1,1,55,56,[[1105,1,1,55,56]]],[57,4,4,56,60,[[1136,1,1,56,57],[1142,1,1,57,58],[1144,2,2,58,60]]],[58,2,2,60,62,[[1146,1,1,60,61],[1149,1,1,61,62]]]],[23201,23289,23725,23739,23854,23889,23914,24001,24107,24120,24456,24630,24896,25263,25399,25499,25510,25520,25522,25660,25742,25888,26028,26249,26255,26536,26579,26659,26728,26882,27346,27464,27467,27470,27476,27541,27823,27832,27868,28428,28442,28527,28529,28579,28616,28656,28657,28715,28980,29005,29041,29083,29087,29090,29191,29425,30015,30162,30222,30223,30292,30342]]],["Suppose",[2,2,[[41,2,2,0,2,[[984,1,1,0,1],[985,1,1,1,2]]]],[25510,25520]]],["Thinkest",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24107]]],["accounted",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24630,25888]]],["good",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,2,2,1,3,[[1032,2,2,1,3]]]],[24896,27467,27470]]],["himself",[2,2,[[45,1,1,0,1,[[1075,1,1,0,1]]],[47,1,1,1,2,[[1096,1,1,1,2]]]],[28715,29191]]],["pleased",[2,2,[[43,2,2,0,2,[[1032,2,2,0,2]]]],[27464,27476]]],["pleasure",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30222]]],["reputation",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29083]]],["seem",[5,5,[[45,2,2,0,2,[[1072,1,1,0,1],[1073,1,1,1,2]]],[46,1,1,2,3,[[1087,1,1,2,3]]],[57,1,1,3,4,[[1136,1,1,3,4]]],[58,1,1,4,5,[[1146,1,1,4,5]]]],[28616,28656,28980,30015,30292]]],["seemed",[3,2,[[47,3,2,0,2,[[1092,3,2,0,2]]]],[29087,29090]]],["seemeth",[5,5,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,2,2,1,3,[[1034,1,1,1,2],[1042,1,1,2,3]]],[45,1,1,3,4,[[1064,1,1,3,4]]],[57,1,1,4,5,[[1144,1,1,4,5]]]],[25263,27541,27823,28428,30223]]],["suppose",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30162]]],["supposed",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]]],[24456,26028]]],["supposing",[2,2,[[42,1,1,0,1,[[1016,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[26882,27868]]],["think",[20,20,[[39,7,7,0,7,[[931,1,1,0,1],[934,1,1,1,2],[946,1,1,2,3],[949,1,1,3,4],[950,1,1,4,5],[952,1,1,5,6],[954,1,1,6,7]]],[41,2,2,7,9,[[984,1,1,7,8],[985,1,1,8,9]]],[42,4,4,9,13,[[1001,2,2,9,11],[1007,1,1,11,12],[1012,1,1,12,13]]],[45,4,4,13,17,[[1065,1,1,13,14],[1068,1,1,14,15],[1069,1,1,15,16],[1073,1,1,16,17]]],[46,2,2,17,19,[[1088,1,1,17,18],[1089,1,1,18,19]]],[58,1,1,19,20,[[1149,1,1,19,20]]]],[23201,23289,23739,23854,23914,24001,24120,25499,25522,26249,26255,26579,26728,28442,28527,28529,28657,29005,29041,30342]]],["thinkest",[3,3,[[39,2,2,0,2,[[945,1,1,0,1],[950,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]]],[23725,23889,25399]]],["thinketh",[2,2,[[45,1,1,0,1,[[1071,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[28579,29425]]],["thought",[5,5,[[41,1,1,0,1,[[991,1,1,0,1]]],[42,2,2,1,3,[[1007,1,1,1,2],[1009,1,1,2,3]]],[43,2,2,3,5,[[1029,1,1,3,4],[1043,1,1,4,5]]]],[25742,26536,26659,27346,27832]]],["trow",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25660]]]]},{"k":"G1381","v":[["*",[23,21,[[41,3,2,0,2,[[984,2,1,0,1],[986,1,1,1,2]]],[44,4,4,2,6,[[1046,1,1,2,3],[1047,1,1,3,4],[1057,1,1,4,5],[1059,1,1,5,6]]],[45,3,3,6,9,[[1064,1,1,6,7],[1072,1,1,7,8],[1077,1,1,8,9]]],[46,3,3,9,12,[[1085,2,2,9,11],[1090,1,1,11,12]]],[47,1,1,12,13,[[1096,1,1,12,13]]],[48,1,1,13,14,[[1101,1,1,13,14]]],[49,1,1,14,15,[[1103,1,1,14,15]]],[51,3,2,15,17,[[1112,2,1,15,16],[1115,1,1,16,17]]],[53,1,1,17,18,[[1121,1,1,17,18]]],[57,1,1,18,19,[[1135,1,1,18,19]]],[59,1,1,19,20,[[1151,1,1,19,20]]],[61,1,1,20,21,[[1162,1,1,20,21]]]],[25515,25572,27958,27980,28247,28302,28423,28628,28779,28940,28954,29048,29192,29314,29371,29574,29642,29741,30004,30381,30604]]],["+",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28954]]],["Prove",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29642]]],["Proving",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29314]]],["allowed",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29574]]],["alloweth",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28302]]],["approve",[2,2,[[45,1,1,0,1,[[1077,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[28779,29371]]],["approvest",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27980]]],["discern",[2,1,[[41,2,1,0,1,[[984,2,1,0,1]]]],[25515]]],["examine",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28628]]],["like",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27958]]],["prove",[5,5,[[41,1,1,0,1,[[986,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]],[46,2,2,2,4,[[1085,1,1,2,3],[1090,1,1,3,4]]],[47,1,1,4,5,[[1096,1,1,4,5]]]],[25572,28247,28940,29048,29192]]],["proved",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[57,1,1,1,2,[[1135,1,1,1,2]]]],[29741,30004]]],["tried",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30381]]],["trieth",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29574]]],["try",[2,2,[[45,1,1,0,1,[[1064,1,1,0,1]]],[61,1,1,1,2,[[1162,1,1,1,2]]]],[28423,30604]]]]},{"k":"G1382","v":[["*",[7,6,[[44,2,1,0,1,[[1050,2,1,0,1]]],[46,4,4,1,5,[[1079,1,1,1,2],[1085,1,1,2,3],[1086,1,1,3,4],[1090,1,1,4,5]]],[49,1,1,5,6,[[1104,1,1,5,6]]]],[28051,28833,28934,28969,29046,29413]]],["experience",[2,1,[[44,2,1,0,1,[[1050,2,1,0,1]]]],[28051]]],["experiment",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28969]]],["proof",[3,3,[[46,2,2,0,2,[[1079,1,1,0,1],[1090,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[28833,29046,29413]]],["trial",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28934]]]]},{"k":"G1383","v":[["*",[2,2,[[58,1,1,0,1,[[1146,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[30269,30381]]],["trial",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30381]]],["trying",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30269]]]]},{"k":"G1384","v":[["*",[7,7,[[44,2,2,0,2,[[1059,1,1,0,1],[1061,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[46,2,2,3,5,[[1087,1,1,3,4],[1090,1,1,4,5]]],[54,1,1,5,6,[[1126,1,1,5,6]]],[58,1,1,6,7,[[1146,1,1,6,7]]]],[28298,28346,28619,28989,29050,29842,30278]]],["approved",[6,6,[[44,2,2,0,2,[[1059,1,1,0,1],[1061,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[46,2,2,3,5,[[1087,1,1,3,4],[1090,1,1,4,5]]],[54,1,1,5,6,[[1126,1,1,5,6]]]],[28298,28346,28619,28989,29050,29842]]],["tried",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30278]]]]},{"k":"G1385","v":[["beam",[6,5,[[39,3,3,0,3,[[935,3,3,0,3]]],[41,3,2,3,5,[[978,3,2,3,5]]]],[23319,23320,23321,25187,25188]]]]},{"k":"G1386","v":[["deceitful",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29002]]]]},{"k":"G1387","v":[["deceit",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28004]]]]},{"k":"G1388","v":[["*",[12,12,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[963,1,1,1,2],[970,1,1,2,3]]],[42,1,1,3,4,[[997,1,1,3,4]]],[43,1,1,4,5,[[1030,1,1,4,5]]],[44,1,1,5,6,[[1046,1,1,5,6]]],[46,1,1,6,7,[[1089,1,1,6,7]]],[51,1,1,7,8,[[1112,1,1,7,8]]],[59,3,3,8,11,[[1152,2,2,8,10],[1153,1,1,10,11]]],[65,1,1,11,12,[[1180,1,1,11,12]]]],[24058,24485,24755,26091,27372,27959,29038,29573,30400,30421,30434,30931]]],["craft",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24755]]],["deceit",[2,2,[[40,1,1,0,1,[[963,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[24485,27959]]],["guile",[7,7,[[42,1,1,0,1,[[997,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]],[59,3,3,3,6,[[1152,2,2,3,5],[1153,1,1,5,6]]],[65,1,1,6,7,[[1180,1,1,6,7]]]],[26091,29038,29573,30400,30421,30434,30931]]],["subtilty",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]]],[24058,27372]]]]},{"k":"G1389","v":[["+",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28861]]]]},{"k":"G1390","v":[["*",[4,4,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]]],[23327,25418,29280,29459]]],["gift",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29459]]],["gifts",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]]],[23327,25418,29280]]]]},{"k":"G1391","v":[["*",[168,151,[[39,8,7,0,7,[[932,1,1,0,1],[934,2,2,1,3],[944,1,1,3,4],[947,1,1,4,5],[952,1,1,5,6],[953,2,1,6,7]]],[40,3,3,7,10,[[964,1,1,7,8],[966,1,1,8,9],[969,1,1,9,10]]],[41,13,13,10,23,[[974,3,3,10,13],[976,1,1,13,14],[981,3,3,14,17],[984,1,1,17,18],[986,1,1,18,19],[989,1,1,19,20],[991,1,1,20,21],[993,1,1,21,22],[996,1,1,22,23]]],[42,19,15,23,38,[[997,2,1,23,24],[998,1,1,24,25],[1001,3,2,25,27],[1003,2,1,27,28],[1004,2,2,28,30],[1005,1,1,30,31],[1007,2,2,31,33],[1008,3,2,33,35],[1013,3,3,35,38]]],[43,4,4,38,42,[[1024,2,2,38,40],[1029,1,1,40,41],[1039,1,1,41,42]]],[44,16,15,42,57,[[1046,1,1,42,43],[1047,2,2,43,45],[1048,2,2,45,47],[1049,1,1,47,48],[1050,1,1,48,49],[1051,1,1,49,50],[1053,2,2,50,52],[1054,3,2,52,54],[1056,1,1,54,55],[1060,1,1,55,56],[1061,1,1,56,57]]],[45,12,8,57,65,[[1063,2,2,57,59],[1071,1,1,59,60],[1072,3,2,60,62],[1076,6,3,62,65]]],[46,19,14,65,79,[[1078,1,1,65,66],[1080,11,6,66,72],[1081,4,4,72,76],[1083,1,1,76,77],[1085,2,2,77,79]]],[47,1,1,79,80,[[1091,1,1,79,80]]],[48,8,8,80,88,[[1097,5,5,80,85],[1099,3,3,85,88]]],[49,6,6,88,94,[[1103,1,1,88,89],[1104,1,1,89,90],[1105,2,2,90,92],[1106,2,2,92,94]]],[50,4,3,94,97,[[1107,3,2,94,96],[1109,1,1,96,97]]],[51,3,3,97,100,[[1112,3,3,97,100]]],[52,2,2,100,102,[[1116,1,1,100,101],[1117,1,1,101,102]]],[53,3,3,102,105,[[1119,2,2,102,104],[1121,1,1,104,105]]],[54,2,2,105,107,[[1126,1,1,105,106],[1128,1,1,106,107]]],[55,1,1,107,108,[[1130,1,1,107,108]]],[57,7,7,108,115,[[1133,1,1,108,109],[1134,3,3,109,112],[1135,1,1,112,113],[1141,1,1,113,114],[1145,1,1,114,115]]],[58,1,1,115,116,[[1147,1,1,115,116]]],[59,11,11,116,127,[[1151,4,4,116,120],[1154,3,3,120,123],[1155,4,4,123,127]]],[60,5,4,127,131,[[1156,3,2,127,129],[1157,1,1,129,130],[1158,1,1,130,131]]],[64,3,3,131,134,[[1166,3,3,131,134]]],[65,17,17,134,151,[[1167,1,1,134,135],[1170,2,2,135,137],[1171,2,2,137,139],[1173,1,1,139,140],[1177,1,1,140,141],[1180,1,1,141,142],[1181,1,1,142,143],[1182,1,1,143,144],[1184,1,1,144,145],[1185,2,2,145,147],[1187,4,4,147,151]]]],[23217,23295,23311,23699,23790,23987,24039,24538,24625,24743,24982,24987,25005,25069,25327,25332,25333,25486,25563,25669,25769,25853,26017,26058,26106,26251,26254,26346,26431,26435,26464,26527,26563,26621,26623,26764,26781,26783,27118,27171,27360,27715,27953,27969,27972,27998,28014,28042,28049,28072,28134,28137,28159,28178,28245,28310,28363,28401,28402,28598,28607,28615,28758,28759,28761,28820,28848,28849,28850,28851,28852,28859,28863,28865,28874,28876,28906,28951,28955,29062,29212,29218,29220,29223,29224,29264,29267,29272,29372,29402,29440,29442,29461,29462,29476,29492,29521,29576,29582,29590,29658,29675,29707,29713,29747,29837,29888,29921,29966,29984,29986,29987,29998,30110,30262,30294,30381,30385,30395,30398,30457,30459,30460,30466,30469,30475,30476,30482,30496,30510,30540,30680,30696,30697,30703,30777,30779,30791,30792,30822,30885,30933,30954,30963,30994,31018,31024,31064,31076,31077,31079]]],["+",[4,3,[[46,4,3,0,3,[[1080,4,3,0,3]]]],[28848,28849,28852]]],["Glory",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24987]]],["dignities",[2,2,[[60,1,1,0,1,[[1157,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[30510,30680]]],["glorious",[6,6,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]],[50,1,1,3,4,[[1107,1,1,3,4]]],[53,1,1,4,5,[[1119,1,1,4,5]]],[55,1,1,5,6,[[1130,1,1,5,6]]]],[28137,28863,29442,29476,29707,29921]]],["glory",[144,131,[[39,8,7,0,7,[[932,1,1,0,1],[934,2,2,1,3],[944,1,1,3,4],[947,1,1,4,5],[952,1,1,5,6],[953,2,1,6,7]]],[40,3,3,7,10,[[964,1,1,7,8],[966,1,1,8,9],[969,1,1,9,10]]],[41,11,11,10,21,[[974,2,2,10,12],[976,1,1,12,13],[981,3,3,13,16],[984,1,1,16,17],[989,1,1,17,18],[991,1,1,18,19],[993,1,1,19,20],[996,1,1,20,21]]],[42,12,10,21,31,[[997,2,1,21,22],[998,1,1,22,23],[1003,2,1,23,24],[1004,1,1,24,25],[1007,2,2,25,27],[1008,1,1,27,28],[1013,3,3,28,31]]],[43,4,4,31,35,[[1024,2,2,31,33],[1029,1,1,33,34],[1039,1,1,34,35]]],[44,15,14,35,49,[[1046,1,1,35,36],[1047,2,2,36,38],[1048,2,2,38,40],[1049,1,1,40,41],[1050,1,1,41,42],[1051,1,1,42,43],[1053,1,1,43,44],[1054,3,2,44,46],[1056,1,1,46,47],[1060,1,1,47,48],[1061,1,1,48,49]]],[45,12,8,49,57,[[1063,2,2,49,51],[1071,1,1,51,52],[1072,3,2,52,54],[1076,6,3,54,57]]],[46,13,10,57,67,[[1078,1,1,57,58],[1080,7,4,58,62],[1081,3,3,62,65],[1085,2,2,65,67]]],[47,1,1,67,68,[[1091,1,1,67,68]]],[48,8,8,68,76,[[1097,5,5,68,73],[1099,3,3,73,76]]],[49,5,5,76,81,[[1103,1,1,76,77],[1104,1,1,77,78],[1105,1,1,78,79],[1106,2,2,79,81]]],[50,3,2,81,83,[[1107,2,1,81,82],[1109,1,1,82,83]]],[51,3,3,83,86,[[1112,3,3,83,86]]],[52,2,2,86,88,[[1116,1,1,86,87],[1117,1,1,87,88]]],[53,2,2,88,90,[[1119,1,1,88,89],[1121,1,1,89,90]]],[54,2,2,90,92,[[1126,1,1,90,91],[1128,1,1,91,92]]],[57,7,7,92,99,[[1133,1,1,92,93],[1134,3,3,93,96],[1135,1,1,96,97],[1141,1,1,97,98],[1145,1,1,98,99]]],[58,1,1,99,100,[[1147,1,1,99,100]]],[59,10,10,100,110,[[1151,4,4,100,104],[1154,2,2,104,106],[1155,4,4,106,110]]],[60,4,3,110,113,[[1156,3,2,110,112],[1158,1,1,112,113]]],[64,2,2,113,115,[[1166,2,2,113,115]]],[65,16,16,115,131,[[1167,1,1,115,116],[1170,2,2,116,118],[1171,2,2,118,120],[1173,1,1,120,121],[1177,1,1,121,122],[1180,1,1,122,123],[1181,1,1,123,124],[1182,1,1,124,125],[1184,1,1,125,126],[1185,1,1,126,127],[1187,4,4,127,131]]]],[23217,23295,23311,23699,23790,23987,24039,24538,24625,24743,24982,25005,25069,25327,25332,25333,25486,25669,25769,25853,26017,26058,26106,26346,26431,26527,26563,26621,26764,26781,26783,27118,27171,27360,27715,27953,27969,27972,27998,28014,28042,28049,28072,28134,28159,28178,28245,28310,28363,28401,28402,28598,28607,28615,28758,28759,28761,28820,28848,28850,28851,28859,28865,28874,28876,28951,28955,29062,29212,29218,29220,29223,29224,29264,29267,29272,29372,29402,29440,29461,29462,29492,29521,29576,29582,29590,29658,29675,29713,29747,29837,29888,29966,29984,29986,29987,29998,30110,30262,30294,30381,30385,30395,30398,30459,30460,30466,30469,30475,30476,30482,30496,30540,30696,30697,30703,30777,30779,30791,30792,30822,30885,30933,30954,30963,30994,31018,31064,31076,31077,31079]]],["honour",[6,5,[[42,4,3,0,3,[[1001,3,2,0,2],[1004,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]],[65,1,1,4,5,[[1185,1,1,4,5]]]],[26251,26254,26435,28906,31024]]],["praise",[4,3,[[42,3,2,0,2,[[1005,1,1,0,1],[1008,2,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[26464,26623,30457]]],["worship",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25563]]]]},{"k":"G1392","v":[["*",[62,54,[[39,4,4,0,4,[[933,1,1,0,1],[934,1,1,1,2],[937,1,1,2,3],[943,1,1,3,4]]],[40,1,1,4,5,[[958,1,1,4,5]]],[41,9,9,5,14,[[974,1,1,5,6],[976,1,1,6,7],[977,2,2,7,9],[979,1,1,9,10],[985,1,1,10,11],[989,1,1,11,12],[990,1,1,12,13],[995,1,1,13,14]]],[42,23,16,14,30,[[1003,1,1,14,15],[1004,2,1,15,16],[1007,1,1,16,17],[1008,5,3,17,20],[1009,5,2,20,22],[1010,1,1,22,23],[1011,1,1,23,24],[1012,1,1,24,25],[1013,5,4,25,29],[1017,1,1,29,30]]],[43,5,5,30,35,[[1020,1,1,30,31],[1021,1,1,31,32],[1028,1,1,32,33],[1030,1,1,33,34],[1038,1,1,34,35]]],[44,5,5,35,40,[[1046,1,1,35,36],[1053,1,1,36,37],[1056,1,1,37,38],[1060,2,2,38,40]]],[45,2,2,40,42,[[1067,1,1,40,41],[1073,1,1,41,42]]],[46,3,2,42,44,[[1080,2,1,42,43],[1086,1,1,43,44]]],[47,1,1,44,45,[[1091,1,1,44,45]]],[52,1,1,45,46,[[1118,1,1,45,46]]],[57,1,1,46,47,[[1137,1,1,46,47]]],[59,5,5,47,52,[[1151,1,1,47,48],[1152,1,1,48,49],[1154,3,3,49,52]]],[65,2,2,52,54,[[1181,1,1,52,53],[1184,1,1,53,54]]]],[23250,23284,23387,23664,24272,24993,25078,25132,25133,25211,25531,25666,25731,25982,26367,26435,26527,26596,26603,26608,26661,26662,26681,26707,26740,26760,26763,26764,26769,26917,27009,27043,27325,27410,27684,27951,28146,28222,28309,28312,28487,28660,28851,28969,29081,29679,30035,30382,30411,30457,30460,30462,30950,31000]]],["+",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28851]]],["glorified",[34,33,[[39,2,2,0,2,[[937,1,1,0,1],[943,1,1,1,2]]],[40,1,1,2,3,[[958,1,1,2,3]]],[41,6,6,3,9,[[976,1,1,3,4],[977,1,1,4,5],[979,1,1,5,6],[985,1,1,6,7],[989,1,1,7,8],[995,1,1,8,9]]],[42,12,11,9,20,[[1003,1,1,9,10],[1007,1,1,10,11],[1008,3,3,11,14],[1009,3,2,14,16],[1010,1,1,16,17],[1011,1,1,17,18],[1013,2,2,18,20]]],[43,5,5,20,25,[[1020,1,1,20,21],[1021,1,1,21,22],[1028,1,1,22,23],[1030,1,1,23,24],[1038,1,1,24,25]]],[44,2,2,25,27,[[1046,1,1,25,26],[1053,1,1,26,27]]],[47,1,1,27,28,[[1091,1,1,27,28]]],[52,1,1,28,29,[[1118,1,1,28,29]]],[57,1,1,29,30,[[1137,1,1,29,30]]],[59,2,2,30,32,[[1154,2,2,30,32]]],[65,1,1,32,33,[[1184,1,1,32,33]]]],[23387,23664,24272,25078,25133,25211,25531,25666,25982,26367,26527,26596,26603,26608,26661,26662,26681,26707,26763,26769,27009,27043,27325,27410,27684,27951,28146,29081,29679,30035,30457,30460,31000]]],["glorify",[17,14,[[39,1,1,0,1,[[933,1,1,0,1]]],[42,9,6,1,7,[[1008,2,1,1,2],[1009,2,1,2,3],[1012,1,1,3,4],[1013,3,2,4,6],[1017,1,1,6,7]]],[44,2,2,7,9,[[1060,2,2,7,9]]],[45,1,1,9,10,[[1067,1,1,9,10]]],[46,1,1,10,11,[[1086,1,1,10,11]]],[59,2,2,11,13,[[1152,1,1,11,12],[1154,1,1,12,13]]],[65,1,1,13,14,[[1181,1,1,13,14]]]],[23250,26608,26662,26740,26760,26764,26917,28309,28312,28487,28969,30411,30462,30950]]],["glorifying",[3,3,[[41,3,3,0,3,[[974,1,1,0,1],[977,1,1,1,2],[990,1,1,2,3]]]],[24993,25132,25731]]],["glorious",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28851]]],["glory",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[23284,30382]]],["honour",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26435]]],["honoured",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28660]]],["honoureth",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26435]]],["magnify",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28222]]]]},{"k":"G1393","v":[["Dorcas",[2,2,[[43,2,2,0,2,[[1026,2,2,0,2]]]],[27252,27255]]]]},{"k":"G1394","v":[["*",[2,2,[[49,1,1,0,1,[[1106,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[29457,30283]]],["gift",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30283]]],["giving",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29457]]]]},{"k":"G1395","v":[["giver",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28963]]]]},{"k":"G1396","v":[["subjection",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28567]]]]},{"k":"G1397","v":[["bondage",[5,5,[[44,2,2,0,2,[[1053,2,2,0,2]]],[47,2,2,2,4,[[1094,1,1,2,3],[1095,1,1,3,4]]],[57,1,1,4,5,[[1134,1,1,4,5]]]],[28131,28137,29155,29163,29992]]]]},{"k":"G1398","v":[["*",[25,23,[[39,2,1,0,1,[[934,2,1,0,1]]],[41,3,2,1,3,[[987,1,1,1,2],[988,2,1,2,3]]],[42,1,1,3,4,[[1004,1,1,3,4]]],[43,2,2,4,6,[[1024,1,1,4,5],[1037,1,1,5,6]]],[44,7,7,6,13,[[1051,1,1,6,7],[1052,2,2,7,9],[1054,1,1,9,10],[1057,1,1,10,11],[1059,1,1,11,12],[1061,1,1,12,13]]],[47,4,4,13,17,[[1094,3,3,13,16],[1095,1,1,16,17]]],[48,1,1,17,18,[[1102,1,1,17,18]]],[49,1,1,18,19,[[1104,1,1,18,19]]],[50,1,1,19,20,[[1109,1,1,19,20]]],[51,1,1,20,21,[[1111,1,1,20,21]]],[53,1,1,21,22,[[1124,1,1,21,22]]],[55,1,1,22,23,[[1131,1,1,22,23]]]],[23306,25617,25633,26414,27123,27645,28074,28097,28116,28167,28256,28298,28354,29139,29140,29156,29175,29344,29413,29541,29569,29790,29926]]],["+",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26414]]],["Serving",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27645]]],["bondage",[3,3,[[43,1,1,0,1,[[1024,1,1,0,1]]],[47,2,2,1,3,[[1094,2,2,1,3]]]],[27123,29140,29156]]],["serve",[13,11,[[39,2,1,0,1,[[934,2,1,0,1]]],[41,3,2,1,3,[[987,1,1,1,2],[988,2,1,2,3]]],[44,5,5,3,8,[[1051,1,1,3,4],[1052,2,2,4,6],[1054,1,1,6,7],[1061,1,1,7,8]]],[47,1,1,8,9,[[1095,1,1,8,9]]],[50,1,1,9,10,[[1109,1,1,9,10]]],[51,1,1,10,11,[[1111,1,1,10,11]]]],[23306,25617,25633,28074,28097,28116,28167,28354,29175,29541,29569]]],["served",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29413]]],["serveth",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28298]]],["service",[3,3,[[47,1,1,0,1,[[1094,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]]],[29139,29344,29790]]],["serving",[2,2,[[44,1,1,0,1,[[1057,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[28256,29926]]]]},{"k":"G1399","v":[["*",[3,3,[[41,2,2,0,2,[[973,2,2,0,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]]],[24931,24941,26967]]],["handmaid",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24931]]],["handmaiden",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24941]]],["handmaidens",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26967]]]]},{"k":"G1400","v":[["servants",[2,1,[[44,2,1,0,1,[[1051,2,1,0,1]]]],[28087]]]]},{"k":"G1401","v":[["*",[125,118,[[39,30,30,0,30,[[936,1,1,0,1],[938,2,2,1,3],[941,2,2,3,5],[946,5,5,5,10],[948,1,1,10,11],[949,3,3,11,14],[950,5,5,14,19],[952,4,4,19,23],[953,6,6,23,29],[954,1,1,29,30]]],[40,5,5,30,35,[[966,1,1,30,31],[968,2,2,31,33],[969,1,1,33,34],[970,1,1,34,35]]],[41,27,26,35,61,[[974,1,1,35,36],[979,4,4,36,40],[984,6,6,40,46],[986,5,4,46,50],[987,1,1,50,51],[989,3,3,51,54],[991,4,4,54,58],[992,2,2,58,60],[994,1,1,60,61]]],[42,11,9,61,70,[[1000,1,1,61,62],[1004,2,2,62,64],[1009,1,1,64,65],[1011,3,2,65,67],[1014,4,3,67,70]]],[43,3,3,70,73,[[1019,1,1,70,71],[1021,1,1,71,72],[1033,1,1,72,73]]],[44,5,4,73,77,[[1046,1,1,73,74],[1051,4,3,74,77]]],[45,5,4,77,81,[[1068,4,3,77,80],[1073,1,1,80,81]]],[46,1,1,81,82,[[1081,1,1,81,82]]],[47,4,4,82,86,[[1091,1,1,82,83],[1093,1,1,83,84],[1094,2,2,84,86]]],[48,3,3,86,89,[[1102,3,3,86,89]]],[49,2,2,89,91,[[1103,1,1,89,90],[1104,1,1,90,91]]],[50,4,4,91,95,[[1109,2,2,91,93],[1110,2,2,93,95]]],[53,1,1,95,96,[[1124,1,1,95,96]]],[54,1,1,96,97,[[1126,1,1,96,97]]],[55,2,2,97,99,[[1129,1,1,97,98],[1130,1,1,98,99]]],[56,2,1,99,100,[[1132,2,1,99,100]]],[58,1,1,100,101,[[1146,1,1,100,101]]],[59,1,1,101,102,[[1152,1,1,101,102]]],[60,2,2,102,104,[[1156,1,1,102,103],[1157,1,1,103,104]]],[64,1,1,104,105,[[1166,1,1,104,105]]],[65,14,13,105,118,[[1167,2,1,105,106],[1168,1,1,106,107],[1172,1,1,107,108],[1173,1,1,108,109],[1176,1,1,109,110],[1177,1,1,110,111],[1179,1,1,111,112],[1181,1,1,112,113],[1185,3,3,113,116],[1188,2,2,116,118]]]],[23354,23441,23442,23566,23567,23750,23753,23754,23755,23759,23819,23860,23861,23862,23875,23876,23878,23880,23882,24002,24003,24005,24007,24022,24027,24029,24031,24034,24038,24105,24632,24675,24677,24751,24801,25002,25197,25198,25203,25205,25496,25497,25502,25504,25505,25506,25570,25574,25575,25576,25610,25658,25660,25661,25744,25746,25748,25753,25789,25790,25914,26207,26415,26416,26646,26714,26719,26795,26803,26811,26967,27051,27500,27931,28084,28085,28088,28508,28509,28510,28647,28864,29067,29130,29132,29138,29342,29343,29345,29362,29398,29528,29539,29543,29554,29789,29851,29893,29917,29954,30267,30415,30480,30519,30673,30698,30737,30808,30813,30868,30890,30924,30949,31019,31022,31035,31083,31086]]],["Servants",[2,2,[[48,1,1,0,1,[[1102,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29342,29539]]],["bond",[6,6,[[45,1,1,0,1,[[1073,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]],[50,1,1,3,4,[[1109,1,1,3,4]]],[65,2,2,4,6,[[1179,1,1,4,5],[1185,1,1,5,6]]]],[28647,29130,29345,29528,30924,31035]]],["bondman",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30808]]],["servant",[66,63,[[39,17,17,0,17,[[936,1,1,0,1],[938,2,2,1,3],[946,4,4,3,7],[948,1,1,7,8],[952,4,4,8,12],[953,4,4,12,16],[954,1,1,16,17]]],[40,4,4,17,21,[[966,1,1,17,18],[968,2,2,18,20],[970,1,1,20,21]]],[41,21,20,21,41,[[974,1,1,21,22],[979,4,4,22,26],[984,4,4,26,30],[986,5,4,30,34],[989,2,2,34,36],[991,2,2,36,38],[992,2,2,38,40],[994,1,1,40,41]]],[42,6,6,41,47,[[1004,2,2,41,43],[1009,1,1,43,44],[1011,2,2,44,46],[1014,1,1,46,47]]],[44,1,1,47,48,[[1046,1,1,47,48]]],[45,3,2,48,50,[[1068,3,2,48,50]]],[47,3,3,50,53,[[1091,1,1,50,51],[1094,2,2,51,53]]],[49,1,1,53,54,[[1104,1,1,53,54]]],[50,1,1,54,55,[[1110,1,1,54,55]]],[54,1,1,55,56,[[1126,1,1,55,56]]],[55,1,1,56,57,[[1129,1,1,56,57]]],[56,2,1,57,58,[[1132,2,1,57,58]]],[58,1,1,58,59,[[1146,1,1,58,59]]],[60,1,1,59,60,[[1156,1,1,59,60]]],[64,1,1,60,61,[[1166,1,1,60,61]]],[65,2,2,61,63,[[1167,1,1,61,62],[1181,1,1,62,63]]]],[23354,23441,23442,23753,23754,23755,23759,23819,24002,24003,24005,24007,24029,24031,24034,24038,24105,24632,24675,24677,24801,25002,25197,25198,25203,25205,25502,25504,25505,25506,25570,25574,25575,25576,25658,25660,25748,25753,25789,25790,25914,26415,26416,26646,26714,26719,26795,27931,28508,28509,29067,29132,29138,29398,29554,29851,29893,29954,30267,30480,30673,30698,30949]]],["servant's",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26795]]],["servants",[49,48,[[39,13,13,0,13,[[941,2,2,0,2],[946,1,1,2,3],[949,3,3,3,6],[950,5,5,6,11],[953,2,2,11,13]]],[40,1,1,13,14,[[969,1,1,13,14]]],[41,6,6,14,20,[[984,2,2,14,16],[987,1,1,16,17],[989,1,1,17,18],[991,2,2,18,20]]],[42,4,4,20,24,[[1000,1,1,20,21],[1011,1,1,21,22],[1014,2,2,22,24]]],[43,3,3,24,27,[[1019,1,1,24,25],[1021,1,1,25,26],[1033,1,1,26,27]]],[44,4,3,27,30,[[1051,4,3,27,30]]],[45,1,1,30,31,[[1068,1,1,30,31]]],[46,1,1,31,32,[[1081,1,1,31,32]]],[48,1,1,32,33,[[1102,1,1,32,33]]],[49,1,1,33,34,[[1103,1,1,33,34]]],[50,1,1,34,35,[[1110,1,1,34,35]]],[53,1,1,35,36,[[1124,1,1,35,36]]],[55,1,1,36,37,[[1130,1,1,36,37]]],[59,1,1,37,38,[[1152,1,1,37,38]]],[60,1,1,38,39,[[1157,1,1,38,39]]],[65,9,9,39,48,[[1167,1,1,39,40],[1168,1,1,40,41],[1173,1,1,41,42],[1176,1,1,42,43],[1177,1,1,43,44],[1185,2,2,44,46],[1188,2,2,46,48]]]],[23566,23567,23750,23860,23861,23862,23875,23876,23878,23880,23882,24022,24027,24751,25496,25497,25610,25661,25744,25746,26207,26714,26803,26811,26967,27051,27500,28084,28085,28088,28510,28864,29343,29362,29543,29789,29917,30415,30519,30698,30737,30813,30868,30890,31019,31022,31083,31086]]]]},{"k":"G1402","v":[["*",[8,8,[[43,1,1,0,1,[[1024,1,1,0,1]]],[44,2,2,1,3,[[1051,2,2,1,3]]],[45,2,2,3,5,[[1068,1,1,3,4],[1070,1,1,4,5]]],[47,1,1,5,6,[[1094,1,1,5,6]]],[55,1,1,6,7,[[1130,1,1,6,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]]],[27122,28086,28090,28502,28559,29134,29911,30519]]],["+",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]]],[27122,28559]]],["bondage",[3,3,[[45,1,1,0,1,[[1068,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[28502,29134,30519]]],["given",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29911]]],["servants",[2,2,[[44,2,2,0,2,[[1051,2,2,0,2]]]],[28086,28090]]]]},{"k":"G1403","v":[["feast",[2,2,[[41,2,2,0,2,[[977,1,1,0,1],[986,1,1,1,2]]]],[25136,25566]]]]},{"k":"G1404","v":[["dragon",[13,12,[[65,13,12,0,12,[[1178,8,7,0,7],[1179,3,3,7,10],[1182,1,1,10,11],[1186,1,1,11,12]]]],[30894,30895,30898,30900,30904,30907,30908,30910,30912,30919,30967,31040]]]]},{"k":"G1405","v":[["taketh",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28429]]]]},{"k":"G1406","v":[["*",[3,2,[[41,3,2,0,2,[[987,3,2,0,2]]]],[25596,25597]]],["piece",[2,2,[[41,2,2,0,2,[[987,2,2,0,2]]]],[25596,25597]]],["silver",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25596]]]]},{"k":"G1407","v":[["sickle",[8,7,[[40,1,1,0,1,[[960,1,1,0,1]]],[65,7,6,1,7,[[1180,7,6,1,7]]]],[24352,30940,30941,30942,30943,30944,30945]]]]},{"k":"G1408","v":[["course",[3,3,[[43,2,2,0,2,[[1030,1,1,0,1],[1037,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[27387,27650,29877]]]]},{"k":"G1409","v":[["Drusilla",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27793]]]]},{"k":"G1410","v":[["*",[210,201,[[39,27,24,0,24,[[931,1,1,0,1],[933,2,2,1,3],[934,3,2,3,5],[935,1,1,5,6],[936,1,1,6,7],[937,2,2,7,9],[938,2,1,9,10],[940,2,2,10,12],[944,1,1,12,13],[945,2,2,13,15],[947,2,2,15,17],[948,2,1,17,18],[950,1,1,18,19],[954,4,4,19,23],[955,1,1,23,24]]],[40,33,32,24,56,[[957,2,2,24,26],[958,4,3,26,29],[959,6,6,29,35],[960,2,2,35,37],[961,1,1,37,38],[962,2,2,38,40],[963,3,3,40,43],[964,1,1,43,44],[965,6,6,44,50],[966,3,3,50,53],[970,2,2,53,55],[971,1,1,55,56]]],[41,26,25,56,81,[[973,2,2,56,58],[975,1,1,58,59],[977,3,3,59,62],[978,2,2,62,64],[980,1,1,64,65],[981,1,1,65,66],[983,1,1,66,67],[984,2,2,67,69],[985,1,1,69,70],[986,4,4,70,74],[988,4,3,74,77],[990,1,1,77,78],[991,1,1,78,79],[992,1,1,79,80],[993,1,1,80,81]]],[42,37,36,81,117,[[997,1,1,81,82],[999,7,6,82,88],[1001,3,3,88,91],[1002,4,4,91,95],[1003,3,3,95,98],[1004,3,3,98,101],[1005,3,3,101,104],[1006,3,3,104,107],[1007,1,1,107,108],[1008,1,1,108,109],[1009,3,3,109,112],[1010,2,2,112,114],[1011,2,2,114,116],[1012,1,1,116,117]]],[43,21,21,117,138,[[1021,2,2,117,119],[1022,1,1,119,120],[1025,1,1,120,121],[1027,1,1,121,122],[1030,1,1,122,123],[1032,1,1,123,124],[1034,1,1,124,125],[1036,1,1,125,126],[1037,1,1,126,127],[1038,1,1,127,128],[1041,3,3,128,131],[1042,1,1,131,132],[1043,1,1,132,133],[1044,5,5,133,138]]],[44,5,5,138,143,[[1053,3,3,138,141],[1060,1,1,141,142],[1061,1,1,142,143]]],[45,15,12,143,155,[[1063,1,1,143,144],[1064,4,3,144,147],[1067,1,1,147,148],[1068,1,1,148,149],[1071,4,2,149,151],[1073,2,2,151,153],[1075,1,1,153,154],[1076,1,1,154,155]]],[46,3,3,155,158,[[1078,1,1,155,156],[1080,1,1,156,157],[1090,1,1,157,158]]],[47,1,1,158,159,[[1093,1,1,158,159]]],[48,5,5,159,164,[[1099,2,2,159,161],[1102,3,3,161,164]]],[49,1,1,164,165,[[1105,1,1,164,165]]],[51,2,2,165,167,[[1112,1,1,165,166],[1113,1,1,166,167]]],[53,3,3,167,170,[[1123,1,1,167,168],[1124,2,2,168,170]]],[54,3,3,170,173,[[1126,1,1,170,171],[1127,2,2,171,173]]],[57,9,9,173,182,[[1134,1,1,173,174],[1135,1,1,174,175],[1136,1,1,175,176],[1137,2,2,176,178],[1139,1,1,178,179],[1141,1,1,179,180],[1142,2,2,180,182]]],[58,6,6,182,188,[[1146,1,1,182,183],[1147,1,1,183,184],[1148,2,2,184,186],[1149,2,2,186,188]]],[61,2,2,188,190,[[1161,1,1,188,189],[1162,1,1,189,190]]],[64,1,1,190,191,[[1166,1,1,190,191]]],[65,10,10,191,201,[[1168,1,1,191,192],[1169,1,1,192,193],[1171,1,1,193,194],[1172,1,1,194,195],[1173,1,1,195,196],[1175,1,1,196,197],[1179,2,2,197,199],[1180,1,1,199,200],[1181,1,1,200,201]]]],[23201,23248,23270,23306,23309,23334,23347,23394,23407,23445,23518,23523,23675,23716,23719,23774,23787,23814,23918,24063,24096,24107,24115,24171,24255,24260,24264,24267,24279,24308,24311,24312,24313,24314,24315,24355,24356,24367,24412,24426,24478,24481,24487,24504,24541,24560,24561,24566,24567,24577,24614,24626,24627,24759,24761,24857,24913,24915,25033,25119,25128,25141,25185,25188,25264,25341,25412,25484,25485,25529,25573,25579,25580,25586,25622,25633,25646,25714,25734,25815,25841,26090,26122,26123,26124,26125,26129,26147,26229,26240,26254,26301,26309,26317,26322,26335,26362,26364,26402,26403,26424,26444,26456,26473,26502,26510,26516,26560,26619,26663,26666,26667,26673,26685,26703,26704,26738,27038,27042,27098,27207,27306,27401,27443,27542,27625,27658,27698,27777,27780,27782,27807,27855,27867,27870,27886,27894,27898,28123,28124,28155,28317,28361,28408,28411,28412,28421,28472,28508,28580,28588,28637,28655,28709,28768,28804,28848,29051,29123,29255,29271,29348,29350,29353,29442,29576,29599,29788,29795,29804,29840,29860,29868,29995,30014,30029,30032,30037,30089,30114,30134,30144,30287,30307,30327,30331,30339,30349,30588,30623,30696,30719,30754,30782,30810,30819,30860,30912,30925,30929,30954]]],["+",[58,56,[[39,6,6,0,6,[[933,1,1,0,1],[934,1,1,1,2],[935,1,1,2,3],[937,1,1,3,4],[954,1,1,4,5],[955,1,1,5,6]]],[40,8,7,6,13,[[958,2,1,6,7],[959,3,3,7,10],[963,1,1,10,11],[965,1,1,11,12],[971,1,1,12,13]]],[41,9,9,13,22,[[978,1,1,13,14],[983,1,1,14,15],[984,1,1,15,16],[986,4,4,16,20],[988,2,2,20,22]]],[42,18,18,22,40,[[999,3,3,22,25],[1001,2,2,25,27],[1003,3,3,27,30],[1004,3,3,30,33],[1006,1,1,33,34],[1009,2,2,34,36],[1010,1,1,36,37],[1011,2,2,37,39],[1012,1,1,39,40]]],[43,6,6,40,46,[[1021,2,2,40,42],[1022,1,1,42,43],[1025,1,1,43,44],[1032,1,1,44,45],[1044,1,1,45,46]]],[44,1,1,46,47,[[1053,1,1,46,47]]],[45,5,4,47,51,[[1064,1,1,47,48],[1071,2,1,48,49],[1073,1,1,49,50],[1076,1,1,50,51]]],[53,1,1,51,52,[[1123,1,1,51,52]]],[54,1,1,52,53,[[1126,1,1,52,53]]],[57,1,1,53,54,[[1136,1,1,53,54]]],[58,1,1,54,55,[[1149,1,1,54,55]]],[61,1,1,55,56,[[1161,1,1,55,56]]]],[23248,23306,23334,23394,24107,24171,24279,24312,24313,24314,24481,24560,24857,25185,25412,25485,25573,25579,25580,25586,25633,25646,26123,26125,26147,26229,26240,26335,26362,26364,26402,26403,26424,26516,26663,26667,26685,26703,26704,26738,27038,27042,27098,27207,27443,27886,28124,28412,28588,28655,28768,29788,29840,30029,30339,30588]]],["Can",[5,5,[[41,1,1,0,1,[[977,1,1,0,1]]],[42,2,2,1,3,[[997,1,1,1,2],[1006,1,1,2,3]]],[43,1,1,3,4,[[1027,1,1,3,4]]],[58,1,1,4,5,[[1148,1,1,4,5]]]],[25141,26090,26502,27306,30331]]],["Could",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26560]]],["May",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27542]]],["able",[39,36,[[39,9,7,0,7,[[931,1,1,0,1],[937,1,1,1,2],[938,2,1,2,3],[947,1,1,3,4],[948,2,1,4,5],[950,1,1,5,6],[954,1,1,6,7]]],[40,1,1,7,8,[[960,1,1,7,8]]],[41,3,3,8,11,[[973,1,1,8,9],[975,1,1,9,10],[993,1,1,10,11]]],[42,1,1,11,12,[[1006,1,1,11,12]]],[43,1,1,12,13,[[1037,1,1,12,13]]],[44,2,2,13,15,[[1053,1,1,13,14],[1060,1,1,14,15]]],[45,4,3,15,18,[[1064,1,1,15,16],[1067,1,1,16,17],[1071,2,1,17,18]]],[46,1,1,18,19,[[1078,1,1,18,19]]],[48,4,4,19,23,[[1099,1,1,19,20],[1102,3,3,20,23]]],[49,1,1,23,24,[[1105,1,1,23,24]]],[54,2,2,24,26,[[1127,2,2,24,26]]],[57,3,3,26,29,[[1134,1,1,26,27],[1137,1,1,27,28],[1139,1,1,28,29]]],[58,2,2,29,31,[[1146,1,1,29,30],[1149,1,1,30,31]]],[64,1,1,31,32,[[1166,1,1,31,32]]],[65,4,4,32,36,[[1171,1,1,32,33],[1172,1,1,33,34],[1179,1,1,34,35],[1181,1,1,35,36]]]],[23201,23407,23445,23774,23814,23918,24115,24356,24913,25033,25841,26510,27658,28155,28317,28412,28472,28580,28804,29271,29348,29350,29353,29442,29860,29868,29995,30037,30089,30287,30349,30696,30782,30810,30912,30954]]],["been",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24759]]],["can",[50,49,[[39,6,6,0,6,[[934,2,2,0,2],[940,2,2,2,4],[944,1,1,4,5],[947,1,1,5,6]]],[40,11,11,6,17,[[958,1,1,6,7],[959,2,2,7,9],[963,1,1,9,10],[964,1,1,10,11],[965,3,3,11,14],[966,3,3,14,17]]],[41,5,5,17,22,[[977,1,1,17,18],[984,1,1,18,19],[988,1,1,19,20],[990,1,1,20,21],[992,1,1,21,22]]],[42,12,11,22,33,[[999,4,3,22,25],[1001,1,1,25,26],[1002,4,4,26,30],[1005,2,2,30,32],[1010,1,1,32,33]]],[43,1,1,33,34,[[1041,1,1,33,34]]],[44,1,1,34,35,[[1053,1,1,34,35]]],[45,3,3,35,38,[[1063,1,1,35,36],[1064,1,1,36,37],[1073,1,1,37,38]]],[51,1,1,38,39,[[1113,1,1,38,39]]],[53,2,2,39,41,[[1124,2,2,39,41]]],[57,3,3,41,44,[[1137,1,1,41,42],[1142,2,2,42,44]]],[58,2,2,44,46,[[1147,1,1,44,45],[1148,1,1,45,46]]],[61,1,1,46,47,[[1162,1,1,46,47]]],[65,2,2,47,49,[[1169,1,1,47,48],[1175,1,1,48,49]]]],[23306,23309,23518,23523,23675,23787,24267,24311,24315,24478,24504,24541,24567,24577,24614,24626,24627,25128,25484,25633,25714,25815,26122,26124,26129,26254,26301,26309,26317,26322,26444,26456,26673,27782,28123,28408,28421,28637,29599,29795,29804,30032,30134,30144,30307,30327,30623,30754,30860]]],["canst",[8,8,[[39,2,2,0,2,[[933,1,1,0,1],[936,1,1,1,2]]],[40,2,2,2,4,[[957,1,1,2,3],[965,1,1,3,4]]],[41,2,2,4,6,[[977,1,1,4,5],[978,1,1,5,6]]],[42,1,1,6,7,[[1009,1,1,6,7]]],[65,1,1,7,8,[[1168,1,1,7,8]]]],[23270,23347,24255,24561,25119,25188,26666,30719]]],["could",[28,28,[[39,2,2,0,2,[[945,2,2,0,2]]],[40,8,8,2,10,[[957,1,1,2,3],[958,1,1,3,4],[959,1,1,4,5],[961,1,1,5,6],[962,2,2,6,8],[963,1,1,8,9],[965,1,1,9,10]]],[41,5,5,10,15,[[973,1,1,10,11],[980,1,1,11,12],[981,1,1,12,13],[985,1,1,13,14],[991,1,1,14,15]]],[42,2,2,15,17,[[1005,1,1,15,16],[1008,1,1,16,17]]],[43,4,4,17,21,[[1030,1,1,17,18],[1038,1,1,18,19],[1044,2,2,19,21]]],[45,1,1,21,22,[[1064,1,1,21,22]]],[46,1,1,22,23,[[1080,1,1,22,23]]],[47,1,1,23,24,[[1093,1,1,23,24]]],[57,2,2,24,26,[[1135,1,1,24,25],[1141,1,1,25,26]]],[65,2,2,26,28,[[1173,1,1,26,27],[1180,1,1,27,28]]]],[23716,23719,24260,24264,24308,24367,24412,24426,24487,24566,24915,25264,25341,25529,25734,26473,26619,27401,27698,27870,27898,28411,28848,29123,30014,30114,30819,30929]]],["do",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29051]]],["may",[7,7,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[960,1,1,1,2],[970,1,1,2,3]]],[43,2,2,3,5,[[1036,1,1,3,4],[1042,1,1,4,5]]],[45,1,1,5,6,[[1075,1,1,5,6]]],[48,1,1,6,7,[[1099,1,1,6,7]]]],[24096,24355,24761,27625,27807,28709,29255]]],["mayest",[4,4,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,2,2,1,3,[[1041,2,2,1,3]]],[45,1,1,3,4,[[1068,1,1,3,4]]]],[25622,27777,27780,28508]]],["might",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[43,2,2,1,3,[[1043,1,1,1,2],[1044,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]],[65,1,1,4,5,[[1179,1,1,4,5]]]],[24063,27855,27867,29576,30925]]],["possible",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27894]]],["power",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28361]]]]},{"k":"G1411","v":[["*",[120,116,[[39,13,13,0,13,[[934,1,1,0,1],[935,1,1,1,2],[939,3,3,2,5],[941,2,2,5,7],[942,1,1,7,8],[950,1,1,8,9],[952,2,2,9,11],[953,1,1,11,12],[954,1,1,12,13]]],[40,10,10,13,23,[[961,1,1,13,14],[962,3,3,14,17],[965,2,2,17,19],[968,1,1,19,20],[969,2,2,20,22],[970,1,1,22,23]]],[41,15,15,23,38,[[973,2,2,23,25],[976,2,2,25,27],[977,1,1,27,28],[978,1,1,28,29],[980,1,1,29,30],[981,1,1,30,31],[982,2,2,31,33],[991,1,1,33,34],[993,2,2,34,36],[994,1,1,36,37],[996,1,1,37,38]]],[43,10,10,38,48,[[1018,1,1,38,39],[1019,1,1,39,40],[1020,1,1,40,41],[1021,2,2,41,43],[1023,1,1,43,44],[1025,2,2,44,46],[1027,1,1,46,47],[1036,1,1,47,48]]],[44,8,7,48,55,[[1046,3,3,48,51],[1053,1,1,51,52],[1054,1,1,52,53],[1060,3,2,53,55]]],[45,15,15,55,70,[[1062,2,2,55,57],[1063,2,2,57,59],[1065,2,2,59,61],[1066,1,1,61,62],[1067,1,1,62,63],[1073,3,3,63,66],[1075,1,1,66,67],[1076,3,3,67,70]]],[46,10,7,70,77,[[1078,1,1,70,71],[1081,1,1,71,72],[1083,1,1,72,73],[1085,2,1,73,74],[1089,3,2,74,76],[1090,2,1,76,77]]],[47,1,1,77,78,[[1093,1,1,77,78]]],[48,5,5,78,83,[[1097,2,2,78,80],[1099,3,3,80,83]]],[49,1,1,83,84,[[1105,1,1,83,84]]],[50,2,2,84,86,[[1107,2,2,84,86]]],[51,1,1,86,87,[[1111,1,1,86,87]]],[52,3,3,87,90,[[1116,2,2,87,89],[1117,1,1,89,90]]],[54,3,3,90,93,[[1125,2,2,90,92],[1127,1,1,92,93]]],[57,6,6,93,99,[[1133,1,1,93,94],[1134,1,1,94,95],[1138,1,1,95,96],[1139,1,1,96,97],[1143,2,2,97,99]]],[59,2,2,99,101,[[1151,1,1,99,100],[1153,1,1,100,101]]],[60,3,3,101,104,[[1156,2,2,101,103],[1157,1,1,103,104]]],[65,12,12,104,116,[[1167,1,1,104,105],[1169,1,1,105,106],[1170,1,1,106,107],[1171,1,1,107,108],[1173,1,1,108,109],[1177,1,1,109,110],[1178,1,1,110,111],[1179,1,1,111,112],[1181,1,1,112,113],[1183,1,1,113,114],[1184,1,1,114,115],[1185,1,1,115,116]]]],[23295,23338,23479,23480,23482,23593,23597,23599,23901,23986,23987,24023,24118,24394,24409,24412,24421,24539,24577,24697,24742,24743,24816,24910,24928,25077,25099,25124,25165,25291,25302,25376,25382,25768,25852,25853,25933,26040,26931,26971,27008,27029,27055,27109,27186,27189,27297,27596,27934,27946,27950,28154,28172,28316,28322,28381,28387,28398,28399,28452,28453,28458,28481,28644,28662,28663,28689,28742,28761,28774,28808,28866,28905,28935,29031,29034,29047,29107,29225,29227,29258,29267,29271,29431,29476,29494,29565,29656,29660,29670,29816,29817,29858,29966,29981,30049,30080,30183,30206,30379,30446,30482,30495,30511,30713,30754,30779,30791,30822,30889,30901,30910,30954,30988,30996,31018]]],["+",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[25165,29494]]],["ability",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24023]]],["abundance",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30996]]],["deeds",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29034]]],["meaning",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28689]]],["might",[4,4,[[48,2,2,0,2,[[1097,1,1,0,1],[1099,1,1,1,2]]],[50,1,1,2,3,[[1107,1,1,2,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]]],[29227,29267,29476,30511]]],["mighty",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[52,1,1,1,2,[[1116,1,1,1,2]]]],[28322,29656]]],["miracle",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24577]]],["miracles",[8,8,[[43,3,3,0,3,[[1019,1,1,0,1],[1025,1,1,1,2],[1036,1,1,2,3]]],[45,3,3,3,6,[[1073,3,3,3,6]]],[47,1,1,6,7,[[1093,1,1,6,7]]],[57,1,1,7,8,[[1134,1,1,7,8]]]],[26971,27189,27596,28644,28662,28663,29107,29981]]],["power",[71,69,[[39,4,4,0,4,[[934,1,1,0,1],[950,1,1,1,2],[952,1,1,2,3],[954,1,1,3,4]]],[40,4,4,4,8,[[965,1,1,4,5],[968,1,1,5,6],[969,1,1,6,7],[970,1,1,7,8]]],[41,10,10,8,18,[[973,2,2,8,10],[976,2,2,10,12],[977,1,1,12,13],[981,1,1,13,14],[982,1,1,14,15],[993,1,1,15,16],[994,1,1,16,17],[996,1,1,17,18]]],[43,7,7,18,25,[[1018,1,1,18,19],[1020,1,1,19,20],[1021,2,2,20,22],[1023,1,1,22,23],[1025,1,1,23,24],[1027,1,1,24,25]]],[44,6,6,25,31,[[1046,3,3,25,28],[1054,1,1,28,29],[1060,2,2,29,31]]],[45,10,10,31,41,[[1062,2,2,31,33],[1063,2,2,33,35],[1065,2,2,35,37],[1066,1,1,37,38],[1067,1,1,38,39],[1076,2,2,39,41]]],[46,7,5,41,46,[[1081,1,1,41,42],[1083,1,1,42,43],[1085,2,1,43,44],[1089,1,1,44,45],[1090,2,1,45,46]]],[48,3,3,46,49,[[1097,1,1,46,47],[1099,2,2,47,49]]],[49,1,1,49,50,[[1105,1,1,49,50]]],[51,1,1,50,51,[[1111,1,1,50,51]]],[52,2,2,51,53,[[1116,1,1,51,52],[1117,1,1,52,53]]],[54,3,3,53,56,[[1125,2,2,53,55],[1127,1,1,55,56]]],[57,2,2,56,58,[[1133,1,1,56,57],[1139,1,1,57,58]]],[59,1,1,58,59,[[1151,1,1,58,59]]],[60,2,2,59,61,[[1156,2,2,59,61]]],[65,8,8,61,69,[[1170,1,1,61,62],[1171,1,1,62,63],[1173,1,1,63,64],[1177,1,1,64,65],[1179,1,1,65,66],[1181,1,1,66,67],[1183,1,1,67,68],[1185,1,1,68,69]]]],[23295,23901,23987,24118,24539,24697,24743,24816,24910,24928,25077,25099,25124,25302,25382,25853,25933,26040,26931,27008,27029,27055,27109,27186,27297,27934,27946,27950,28172,28316,28322,28381,28387,28398,28399,28452,28453,28458,28481,28742,28761,28866,28905,28935,29031,29047,29225,29258,29271,29431,29565,29660,29670,29816,29817,29858,29966,30080,30379,30482,30495,30779,30791,30822,30889,30910,30954,30988,31018]]],["powers",[6,6,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]],[44,1,1,3,4,[[1053,1,1,3,4]]],[57,1,1,4,5,[[1138,1,1,4,5]]],[59,1,1,5,6,[[1153,1,1,5,6]]]],[23986,24742,25852,28154,30049,30446]]],["strength",[7,7,[[45,1,1,0,1,[[1076,1,1,0,1]]],[46,2,2,1,3,[[1078,1,1,1,2],[1089,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]],[65,3,3,4,7,[[1167,1,1,4,5],[1169,1,1,5,6],[1178,1,1,6,7]]]],[28774,28808,29031,30183,30713,30754,30901]]],["violence",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30206]]],["virtue",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24394,25291]]],["work",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24412]]],["works",[11,11,[[39,7,7,0,7,[[935,1,1,0,1],[939,3,3,1,4],[941,2,2,4,6],[942,1,1,6,7]]],[40,2,2,7,9,[[962,2,2,7,9]]],[41,2,2,9,11,[[982,1,1,9,10],[991,1,1,10,11]]]],[23338,23479,23480,23482,23593,23597,23599,24409,24421,25376,25768]]]]},{"k":"G1412","v":[["Strengthened",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29476]]]]},{"k":"G1413","v":[["*",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]]],[24945,27203,29803]]],["Potentate",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29803]]],["authority",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27203]]],["mighty",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24945]]]]},{"k":"G1414","v":[["mighty",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29046]]]]},{"k":"G1415","v":[["*",[35,35,[[39,3,3,0,3,[[947,1,1,0,1],[952,1,1,1,2],[954,1,1,2,3]]],[40,5,5,3,8,[[965,1,1,3,4],[966,1,1,4,5],[969,1,1,5,6],[970,2,2,6,8]]],[41,4,4,8,12,[[973,1,1,8,9],[986,1,1,9,10],[990,1,1,10,11],[996,1,1,11,12]]],[43,6,6,12,18,[[1019,1,1,12,13],[1024,1,1,13,14],[1028,1,1,14,15],[1035,1,1,15,16],[1037,1,1,16,17],[1042,1,1,17,18]]],[44,6,6,18,24,[[1049,1,1,18,19],[1054,1,1,19,20],[1056,1,1,20,21],[1057,1,1,21,22],[1059,1,1,22,23],[1060,1,1,23,24]]],[45,1,1,24,25,[[1062,1,1,24,25]]],[46,4,4,25,29,[[1086,1,1,25,26],[1087,1,1,26,27],[1089,1,1,27,28],[1090,1,1,28,29]]],[47,1,1,29,30,[[1094,1,1,29,30]]],[54,1,1,30,31,[[1125,1,1,30,31]]],[55,1,1,31,32,[[1129,1,1,31,32]]],[57,1,1,32,33,[[1143,1,1,32,33]]],[58,1,1,33,34,[[1148,1,1,33,34]]],[65,1,1,34,35,[[1172,1,1,34,35]]]],[23788,23981,24093,24561,24615,24739,24789,24790,24942,25584,25715,26010,26973,27138,27324,27581,27642,27801,28043,28177,28232,28263,28284,28304,28389,28964,28975,29032,29052,29146,29821,29901,30191,30321,30808]]],["+",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28177]]],["able",[10,10,[[41,1,1,0,1,[[986,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]],[44,3,3,2,5,[[1049,1,1,2,3],[1056,1,1,3,4],[1059,1,1,4,5]]],[46,1,1,5,6,[[1086,1,1,5,6]]],[54,1,1,6,7,[[1125,1,1,6,7]]],[55,1,1,7,8,[[1129,1,1,7,8]]],[57,1,1,8,9,[[1143,1,1,8,9]]],[58,1,1,9,10,[[1148,1,1,9,10]]]],[25584,27801,28043,28232,28284,28964,29821,29901,30191,30321]]],["could",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27324]]],["men",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30808]]],["mighty",[6,6,[[41,2,2,0,2,[[973,1,1,0,1],[996,1,1,1,2]]],[43,2,2,2,4,[[1024,1,1,2,3],[1035,1,1,3,4]]],[45,1,1,4,5,[[1062,1,1,4,5]]],[46,1,1,5,6,[[1087,1,1,5,6]]]],[24942,26010,27138,27581,28389,28975]]],["possible",[13,13,[[39,3,3,0,3,[[947,1,1,0,1],[952,1,1,1,2],[954,1,1,2,3]]],[40,5,5,3,8,[[965,1,1,3,4],[966,1,1,4,5],[969,1,1,5,6],[970,2,2,6,8]]],[41,1,1,8,9,[[990,1,1,8,9]]],[43,2,2,9,11,[[1019,1,1,9,10],[1037,1,1,10,11]]],[44,1,1,11,12,[[1057,1,1,11,12]]],[47,1,1,12,13,[[1094,1,1,12,13]]]],[23788,23981,24093,24561,24615,24739,24789,24790,25715,26973,27642,28263,29146]]],["strong",[3,3,[[44,1,1,0,1,[[1060,1,1,0,1]]],[46,2,2,1,3,[[1089,1,1,1,2],[1090,1,1,2,3]]]],[28304,29032,29052]]]]},{"k":"G1416","v":[["*",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]]],[24247,25103]]],["set",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24247]]],["setting",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25103]]]]},{"k":"G1417","v":[["*",[135,124,[[39,41,36,0,36,[[932,2,2,0,2],[933,1,1,2,3],[934,1,1,3,4],[936,1,1,4,5],[937,1,1,5,6],[938,2,2,6,8],[939,1,1,8,9],[942,2,2,9,11],[946,7,5,11,16],[947,2,2,16,18],[948,3,3,18,21],[949,3,3,21,24],[950,1,1,24,25],[952,2,2,25,27],[953,6,3,27,30],[954,3,3,30,33],[955,3,3,33,36]]],[40,18,15,36,51,[[962,6,4,36,40],[965,3,3,40,43],[966,2,1,43,44],[967,1,1,44,45],[968,1,1,45,46],[970,2,2,46,48],[971,2,2,48,50],[972,1,1,50,51]]],[41,27,26,51,77,[[974,1,1,51,52],[975,1,1,52,53],[977,1,1,53,54],[979,2,2,54,56],[981,5,5,56,61],[982,2,2,61,63],[984,3,2,63,65],[987,1,1,65,66],[988,1,1,66,67],[989,3,3,67,70],[990,1,1,70,71],[991,1,1,71,72],[993,1,1,72,73],[994,1,1,73,74],[995,1,1,74,75],[996,2,2,75,77]]],[42,13,13,77,90,[[997,3,3,77,80],[998,1,1,80,81],[1000,2,2,81,83],[1002,1,1,83,84],[1004,1,1,84,85],[1007,1,1,85,86],[1015,1,1,86,87],[1016,2,2,87,89],[1017,1,1,89,90]]],[43,13,12,90,102,[[1018,3,3,90,93],[1024,1,1,93,94],[1026,1,1,94,95],[1027,1,1,95,96],[1029,2,1,96,97],[1036,3,3,97,100],[1038,1,1,100,101],[1040,1,1,101,102]]],[45,3,3,102,105,[[1067,1,1,102,103],[1075,2,2,103,105]]],[46,1,1,105,106,[[1090,1,1,105,106]]],[47,2,2,106,108,[[1094,2,2,106,108]]],[48,2,2,108,110,[[1098,1,1,108,109],[1101,1,1,109,110]]],[49,1,1,110,111,[[1103,1,1,110,111]]],[53,1,1,111,112,[[1123,1,1,111,112]]],[57,2,2,112,114,[[1138,1,1,112,113],[1142,1,1,113,114]]],[65,11,10,114,124,[[1175,2,2,114,116],[1177,5,4,116,120],[1178,1,1,120,121],[1179,2,2,121,123],[1185,1,1,123,124]]]],[23227,23230,23275,23306,23373,23406,23427,23446,23461,23614,23616,23735,23736,23743,23746,23747,23767,23768,23813,23816,23822,23827,23854,23857,23912,23997,23998,24023,24025,24030,24056,24091,24114,24150,24167,24180,24414,24416,24445,24448,24581,24583,24585,24596,24641,24715,24755,24767,24853,24864,24885,24997,25036,25109,25214,25236,25304,25314,25317,25331,25333,25364,25398,25465,25511,25599,25633,25685,25686,25687,25698,25760,25828,25902,25967,25995,26004,26079,26081,26084,26101,26196,26199,26266,26398,26529,26843,26871,26879,26900,26933,26946,26947,27145,27254,27266,27343,27595,27607,27619,27697,27757,28483,28705,28707,29044,29153,29155,29244,29335,29384,29782,30062,30161,30852,30856,30874,30875,30876,30882,30905,30913,30919,31037]]],["+",[7,6,[[40,2,1,0,1,[[962,2,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[48,1,1,2,3,[[1098,1,1,2,3]]],[65,3,3,3,6,[[1175,1,1,3,4],[1177,1,1,4,5],[1179,1,1,5,6]]]],[24414,25364,29244,30856,30874,30913]]],["Two",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,3,3,1,4,[[989,2,2,1,3],[990,1,1,3,4]]]],[23998,25686,25687,25698]]],["both",[2,2,[[42,1,1,0,1,[[1016,1,1,0,1]]],[65,1,1,1,2,[[1185,1,1,1,2]]]],[26871,31037]]],["twain",[9,8,[[39,6,6,0,6,[[933,1,1,0,1],[947,2,2,1,3],[949,1,1,3,4],[955,2,2,4,6]]],[40,3,2,6,8,[[966,2,1,6,7],[971,1,1,7,8]]]],[23275,23767,23768,23857,24150,24180,24596,24864]]],["two",[113,104,[[39,34,29,0,29,[[932,2,2,0,2],[934,1,1,2,3],[936,1,1,3,4],[937,1,1,4,5],[938,2,2,5,7],[939,1,1,7,8],[942,2,2,8,10],[946,7,5,10,15],[948,3,3,15,18],[949,2,2,18,20],[950,1,1,20,21],[952,1,1,21,22],[953,6,3,22,25],[954,3,3,25,28],[955,1,1,28,29]]],[40,13,12,29,41,[[962,4,3,29,32],[965,3,3,32,35],[967,1,1,35,36],[968,1,1,36,37],[970,2,2,37,39],[971,1,1,39,40],[972,1,1,40,41]]],[41,23,22,41,63,[[974,1,1,41,42],[975,1,1,42,43],[977,1,1,43,44],[979,2,2,44,46],[981,5,5,46,51],[982,1,1,51,52],[984,3,2,52,54],[987,1,1,54,55],[988,1,1,55,56],[989,1,1,56,57],[991,1,1,57,58],[993,1,1,58,59],[994,1,1,59,60],[995,1,1,60,61],[996,2,2,61,63]]],[42,12,12,63,75,[[997,3,3,63,66],[998,1,1,66,67],[1000,2,2,67,69],[1002,1,1,69,70],[1004,1,1,70,71],[1007,1,1,71,72],[1015,1,1,72,73],[1016,1,1,73,74],[1017,1,1,74,75]]],[43,13,12,75,87,[[1018,3,3,75,78],[1024,1,1,78,79],[1026,1,1,79,80],[1027,1,1,80,81],[1029,2,1,81,82],[1036,3,3,82,85],[1038,1,1,85,86],[1040,1,1,86,87]]],[45,3,3,87,90,[[1067,1,1,87,88],[1075,2,2,88,90]]],[46,1,1,90,91,[[1090,1,1,90,91]]],[47,2,2,91,93,[[1094,2,2,91,93]]],[48,1,1,93,94,[[1101,1,1,93,94]]],[49,1,1,94,95,[[1103,1,1,94,95]]],[53,1,1,95,96,[[1123,1,1,95,96]]],[57,2,2,96,98,[[1138,1,1,96,97],[1142,1,1,97,98]]],[65,7,6,98,104,[[1175,1,1,98,99],[1177,4,3,99,102],[1178,1,1,102,103],[1179,1,1,103,104]]]],[23227,23230,23306,23373,23406,23427,23446,23461,23614,23616,23735,23736,23743,23746,23747,23813,23816,23822,23827,23854,23912,23997,24023,24025,24030,24056,24091,24114,24167,24416,24445,24448,24581,24583,24585,24641,24715,24755,24767,24853,24885,24997,25036,25109,25214,25236,25304,25314,25317,25331,25333,25398,25465,25511,25599,25633,25685,25760,25828,25902,25967,25995,26004,26079,26081,26084,26101,26196,26199,26266,26398,26529,26843,26879,26900,26933,26946,26947,27145,27254,27266,27343,27595,27607,27619,27697,27757,28483,28705,28707,29044,29153,29155,29335,29384,29782,30062,30161,30852,30875,30876,30882,30905,30919]]]]},{"k":"G1418","v":[]},{"k":"G1419","v":[["borne",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23922,25451]]]]},{"k":"G1420","v":[["flux",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27907]]]]},{"k":"G1421","v":[["hard",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30041]]]]},{"k":"G1422","v":[["hard",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24612]]]]},{"k":"G1423","v":[["hardly",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]]],[23785,24611,25712]]]]},{"k":"G1424","v":[["west",[5,5,[[39,2,2,0,2,[[936,1,1,0,1],[952,1,1,1,2]]],[41,2,2,2,4,[[984,1,1,2,3],[985,1,1,3,4]]],[65,1,1,4,5,[[1187,1,1,4,5]]]],[23356,23984,25513,25547,31066]]]]},{"k":"G1425","v":[["understood",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30538]]]]},{"k":"G1426","v":[["report",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28906]]]]},{"k":"G1427","v":[["*",[72,59,[[39,13,12,0,12,[[937,1,1,0,1],[938,3,3,1,4],[939,1,1,4,5],[942,1,1,5,6],[947,2,1,6,7],[948,1,1,7,8],[954,4,4,8,12]]],[40,14,14,12,26,[[959,1,1,12,13],[960,1,1,13,14],[961,2,2,14,16],[962,2,2,16,18],[964,1,1,18,19],[965,1,1,19,20],[966,1,1,20,21],[967,1,1,21,22],[970,4,4,22,26]]],[41,13,13,26,39,[[974,1,1,26,27],[978,1,1,27,28],[980,3,3,28,31],[981,3,3,31,34],[990,1,1,34,35],[994,4,4,35,39]]],[42,6,6,39,45,[[1002,4,4,39,43],[1007,1,1,43,44],[1016,1,1,44,45]]],[43,2,2,45,47,[[1023,1,1,45,46],[1024,1,1,46,47]]],[45,1,1,47,48,[[1076,1,1,47,48]]],[58,1,1,48,49,[[1146,1,1,48,49]]],[65,22,10,49,59,[[1173,12,4,49,53],[1178,1,1,53,54],[1187,8,4,54,58],[1188,1,1,58,59]]]],[23399,23418,23419,23422,23460,23617,23790,23809,24068,24074,24101,24107,24302,24333,24389,24406,24414,24450,24519,24573,24620,24651,24764,24771,24774,24797,25015,25159,25246,25287,25288,25302,25313,25318,25719,25867,25878,25894,25911,26270,26324,26327,26328,26532,26891,27103,27124,28723,30267,30815,30816,30817,30818,30892,31065,31067,31069,31074,31082]]],["+",[2,2,[[41,2,2,0,2,[[974,1,1,0,1],[981,1,1,1,2]]]],[25015,25302]]],["Twelve",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24519]]],["twelve",[69,56,[[39,13,12,0,12,[[937,1,1,0,1],[938,3,3,1,4],[939,1,1,4,5],[942,1,1,5,6],[947,2,1,6,7],[948,1,1,7,8],[954,4,4,8,12]]],[40,13,13,12,25,[[959,1,1,12,13],[960,1,1,13,14],[961,2,2,14,16],[962,2,2,16,18],[965,1,1,18,19],[966,1,1,19,20],[967,1,1,20,21],[970,4,4,21,25]]],[41,11,11,25,36,[[978,1,1,25,26],[980,3,3,26,29],[981,2,2,29,31],[990,1,1,31,32],[994,4,4,32,36]]],[42,6,6,36,42,[[1002,4,4,36,40],[1007,1,1,40,41],[1016,1,1,41,42]]],[43,2,2,42,44,[[1023,1,1,42,43],[1024,1,1,43,44]]],[45,1,1,44,45,[[1076,1,1,44,45]]],[58,1,1,45,46,[[1146,1,1,45,46]]],[65,22,10,46,56,[[1173,12,4,46,50],[1178,1,1,50,51],[1187,8,4,51,55],[1188,1,1,55,56]]]],[23399,23418,23419,23422,23460,23617,23790,23809,24068,24074,24101,24107,24302,24333,24389,24406,24414,24450,24573,24620,24651,24764,24771,24774,24797,25159,25246,25287,25288,25313,25318,25719,25867,25878,25894,25911,26270,26324,26327,26328,26532,26891,27103,27124,28723,30267,30815,30816,30817,30818,30892,31065,31067,31069,31074,31082]]]]},{"k":"G1428","v":[["twelfth",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31073]]]]},{"k":"G1429","v":[["tribes",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27830]]]]},{"k":"G1430","v":[["*",[7,7,[[39,2,2,0,2,[[938,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,3,3,3,6,[[977,1,1,3,4],[984,1,1,4,5],[989,1,1,5,6]]],[43,1,1,6,7,[[1027,1,1,6,7]]]],[23444,23974,24732,25126,25462,25682,27268]]],["housetop",[5,5,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,2,2,2,4,[[977,1,1,2,3],[989,1,1,3,4]]],[43,1,1,4,5,[[1027,1,1,4,5]]]],[23974,24732,25126,25682,27268]]],["housetops",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23444,25462]]]]},{"k":"G1431","v":[["gift",[11,11,[[42,1,1,0,1,[[1000,1,1,0,1]]],[43,4,4,1,5,[[1019,1,1,1,2],[1025,1,1,2,3],[1027,1,1,3,4],[1028,1,1,4,5]]],[44,2,2,5,7,[[1050,2,2,5,7]]],[46,1,1,7,8,[[1086,1,1,7,8]]],[48,2,2,8,10,[[1099,1,1,8,9],[1100,1,1,9,10]]],[57,1,1,10,11,[[1138,1,1,10,11]]]],[26166,26987,27196,27304,27324,28062,28064,28971,29258,29279,30048]]]]},{"k":"G1432","v":[["*",[9,8,[[39,2,1,0,1,[[938,2,1,0,1]]],[42,1,1,1,2,[[1011,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[46,1,1,3,4,[[1088,1,1,3,4]]],[47,1,1,4,5,[[1092,1,1,4,5]]],[52,1,1,5,6,[[1118,1,1,5,6]]],[65,2,2,6,8,[[1187,1,1,6,7],[1188,1,1,7,8]]]],[23425,26724,28015,28996,29102,29686,31059,31097]]],["cause",[1,1,[[42,1,1,0,1,[[1011,1,1,0,1]]]],[26724]]],["freely",[6,5,[[39,2,1,0,1,[[938,2,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]],[65,2,2,3,5,[[1187,1,1,3,4],[1188,1,1,4,5]]]],[23425,28015,28996,31059,31097]]],["nought",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29686]]],["vain",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29102]]]]},{"k":"G1433","v":[["*",[3,3,[[40,1,1,0,1,[[971,1,1,0,1]]],[60,2,2,1,3,[[1156,2,2,1,3]]]],[24871,30482,30483]]],["gave",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24871]]],["given",[2,2,[[60,2,2,0,2,[[1156,2,2,0,2]]]],[30482,30483]]]]},{"k":"G1434","v":[["gift",[2,2,[[44,1,1,0,1,[[1050,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[28063,30283]]]]},{"k":"G1435","v":[["*",[19,17,[[39,9,7,0,7,[[930,1,1,0,1],[933,3,2,1,3],[936,1,1,3,4],[943,1,1,4,5],[951,3,2,5,7]]],[40,1,1,7,8,[[963,1,1,7,8]]],[41,2,2,8,10,[[993,2,2,8,10]]],[48,1,1,10,11,[[1098,1,1,10,11]]],[57,5,5,11,16,[[1137,1,1,11,12],[1140,2,2,12,14],[1141,1,1,14,15],[1143,1,1,15,16]]],[65,1,1,16,17,[[1177,1,1,16,17]]]],[23180,23257,23258,23349,23638,23936,23937,24474,25827,25830,29237,30031,30095,30096,30114,30176,30882]]],["gift",[10,8,[[39,8,6,0,6,[[933,3,2,0,2],[936,1,1,2,3],[943,1,1,3,4],[951,3,2,4,6]]],[40,1,1,6,7,[[963,1,1,6,7]]],[48,1,1,7,8,[[1098,1,1,7,8]]]],[23257,23258,23349,23638,23936,23937,24474,29237]]],["gifts",[8,8,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]],[57,5,5,2,7,[[1137,1,1,2,3],[1140,2,2,3,5],[1141,1,1,5,6],[1143,1,1,6,7]]],[65,1,1,7,8,[[1177,1,1,7,8]]]],[23180,25827,30031,30095,30096,30114,30176,30882]]],["offerings",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25830]]]]},{"k":"G1436","v":[["alone",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]]],[24239,25097]]]]},{"k":"G1437","v":[["*",[297,272,[[39,59,54,0,54,[[932,1,1,0,1],[933,6,6,1,7],[934,4,4,7,11],[935,2,2,11,13],[936,2,2,13,15],[937,1,1,15,16],[938,3,3,16,19],[939,2,2,19,21],[940,2,2,21,23],[942,1,1,23,24],[943,2,2,24,26],[944,3,2,26,28],[945,1,1,28,29],[946,12,8,29,37],[948,4,4,37,41],[949,5,5,41,46],[950,1,1,46,47],[951,1,1,47,48],[952,4,4,48,52],[954,1,1,52,53],[956,1,1,53,54]]],[40,32,30,54,84,[[957,1,1,54,55],[959,2,2,55,57],[960,1,1,57,58],[962,3,3,58,61],[963,2,1,61,62],[964,2,2,62,64],[965,6,5,64,69],[966,6,6,69,75],[967,4,4,75,79],[968,1,1,79,80],[969,2,2,80,82],[970,2,2,82,84]]],[41,32,29,84,113,[[976,2,2,84,86],[977,1,1,86,87],[978,2,2,87,89],[979,1,1,89,90],[981,2,1,90,91],[982,2,2,91,93],[983,1,1,93,94],[984,2,2,94,96],[985,2,2,96,98],[986,1,1,98,99],[987,1,1,99,100],[988,2,2,100,102],[989,5,3,102,105],[990,1,1,105,106],[991,2,2,106,108],[992,3,3,108,111],[994,2,2,111,113]]],[42,45,42,113,155,[[999,1,1,113,114],[1001,2,2,114,116],[1002,2,2,116,118],[1003,2,2,118,120],[1004,8,8,120,128],[1005,2,2,128,130],[1006,1,1,130,131],[1007,5,5,131,136],[1008,5,4,136,140],[1009,3,3,140,143],[1010,4,4,143,147],[1011,4,3,147,150],[1012,2,1,150,151],[1015,1,1,151,152],[1017,3,3,152,155]]],[43,6,6,155,161,[[1022,1,1,155,156],[1024,1,1,156,157],[1026,1,1,157,158],[1030,1,1,158,159],[1042,1,1,159,160],[1043,1,1,160,161]]],[44,19,12,161,173,[[1047,3,2,161,163],[1052,3,2,163,165],[1054,1,1,165,166],[1055,1,1,166,167],[1056,1,1,167,168],[1057,2,1,168,169],[1058,1,1,169,170],[1059,5,2,170,172],[1060,2,1,172,173]]],[45,42,37,173,210,[[1065,2,2,173,175],[1066,1,1,175,176],[1067,2,2,176,178],[1068,7,6,178,184],[1069,3,2,184,186],[1070,2,1,186,187],[1071,1,1,187,188],[1072,2,2,188,190],[1073,2,2,190,192],[1074,5,3,192,195],[1075,10,10,195,205],[1077,5,5,205,210]]],[46,6,6,210,216,[[1082,1,1,210,211],[1085,1,1,211,212],[1086,1,1,212,213],[1087,1,1,213,214],[1089,1,1,214,215],[1090,1,1,215,216]]],[47,4,4,216,220,[[1091,1,1,216,217],[1095,1,1,217,218],[1096,2,2,218,220]]],[48,1,1,220,221,[[1102,1,1,220,221]]],[50,3,3,221,224,[[1109,2,2,221,223],[1110,1,1,223,224]]],[51,1,1,224,225,[[1113,1,1,224,225]]],[53,3,3,225,228,[[1119,1,1,225,226],[1120,1,1,226,227],[1121,1,1,227,228]]],[54,2,2,228,230,[[1126,2,2,228,230]]],[57,8,8,230,238,[[1135,4,4,230,234],[1136,1,1,234,235],[1138,1,1,235,236],[1142,1,1,236,237],[1145,1,1,237,238]]],[58,6,6,238,244,[[1147,4,4,238,242],[1149,1,1,242,243],[1150,1,1,243,244]]],[59,1,1,244,245,[[1153,1,1,244,245]]],[61,19,19,245,264,[[1159,5,5,245,250],[1160,5,5,250,255],[1161,4,4,255,259],[1162,2,2,259,261],[1163,3,3,261,264]]],[63,2,2,264,266,[[1165,2,2,264,266]]],[65,6,6,266,272,[[1169,3,3,266,269],[1177,1,1,269,270],[1188,2,2,270,272]]]],[23218,23247,23253,23257,23266,23280,23281,23296,23297,23304,23305,23325,23326,23347,23364,23400,23430,23431,23459,23465,23486,23500,23525,23604,23638,23647,23691,23698,23720,23732,23739,23740,23742,23743,23744,23745,23746,23796,23799,23818,23819,23829,23847,23850,23851,23852,23896,23936,23980,23983,23985,24005,24067,24209,24255,24312,24313,24349,24417,24429,24430,24474,24503,24536,24575,24581,24583,24585,24588,24599,24600,24603,24618,24623,24631,24643,24663,24671,24672,24692,24728,24738,24768,24785,25069,25070,25119,25179,25180,25218,25349,25369,25385,25417,25497,25504,25521,25523,25587,25596,25650,25651,25654,25655,25684,25705,25762,25771,25784,25785,25807,25931,25932,26132,26241,26253,26308,26319,26345,26365,26397,26405,26412,26417,26432,26433,26435,26436,26462,26471,26490,26532,26533,26563,26571,26580,26604,26606,26612,26627,26647,26650,26665,26671,26682,26683,26691,26706,26709,26713,26733,26837,26920,26921,26923,27097,27123,27218,27403,27807,27828,27987,27988,28093,28094,28182,28197,28231,28265,28270,28288,28303,28327,28448,28452,28465,28471,28485,28495,28498,28515,28523,28526,28527,28535,28537,28556,28595,28614,28615,28649,28650,28666,28667,28668,28684,28685,28686,28689,28692,28694,28701,28702,28706,28708,28779,28780,28782,28783,28786,28878,28944,28960,28979,29028,29045,29065,29164,29189,29195,29345,29530,29540,29552,29598,29704,29731,29746,29832,29848,30001,30002,30009,30010,30021,30047,30171,30264,30295,30307,30308,30310,30352,30373,30437,30546,30547,30548,30549,30550,30551,30553,30565,30574,30579,30581,30599,30600,30601,30615,30623,30638,30639,30640,30663,30668,30749,30765,30766,30878,31098,31099]]],["+",[70,65,[[39,24,22,0,22,[[933,2,2,0,2],[936,1,1,2,3],[938,3,3,3,6],[939,2,2,6,8],[940,1,1,8,9],[942,1,1,9,10],[943,1,1,10,11],[944,2,1,11,12],[946,4,3,12,15],[948,4,4,15,19],[951,1,1,19,20],[952,1,1,20,21],[954,1,1,21,22]]],[40,14,13,22,35,[[962,3,3,22,25],[963,1,1,25,26],[965,2,1,26,27],[966,5,5,27,32],[967,1,1,32,33],[969,1,1,33,34],[970,1,1,34,35]]],[41,12,10,35,45,[[976,1,1,35,36],[979,1,1,36,37],[981,2,1,37,38],[982,2,2,38,40],[985,2,2,40,42],[988,1,1,42,43],[989,2,1,43,44],[990,1,1,44,45]]],[42,2,2,45,47,[[1009,1,1,45,46],[1011,1,1,46,47]]],[44,2,2,47,49,[[1059,1,1,47,48],[1060,1,1,48,49]]],[45,3,3,49,52,[[1067,1,1,49,50],[1077,2,2,50,52]]],[46,2,2,52,54,[[1085,1,1,52,53],[1087,1,1,53,54]]],[47,2,2,54,56,[[1091,1,1,54,55],[1096,1,1,55,56]]],[48,1,1,56,57,[[1102,1,1,56,57]]],[50,1,1,57,58,[[1109,1,1,57,58]]],[57,3,3,58,61,[[1135,2,2,58,60],[1138,1,1,60,61]]],[61,1,1,61,62,[[1161,1,1,61,62]]],[63,1,1,62,63,[[1165,1,1,62,63]]],[65,2,2,63,65,[[1169,1,1,63,64],[1177,1,1,64,65]]]],[23253,23266,23364,23430,23431,23459,23465,23486,23525,23604,23638,23691,23732,23745,23746,23796,23799,23818,23819,23936,23985,24067,24417,24429,24430,24474,24575,24599,24603,24618,24623,24631,24663,24728,24768,25069,25218,25349,25369,25385,25521,25523,25651,25684,25705,26650,26706,28288,28327,28485,28779,28782,28944,28979,29065,29195,29345,29540,30001,30009,30047,30601,30663,30765,30878]]],["I",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26733]]],["If",[53,53,[[39,5,5,0,5,[[937,1,1,0,1],[945,1,1,1,2],[949,2,2,2,4],[950,1,1,4,5]]],[40,5,5,5,10,[[957,1,1,5,6],[963,1,1,6,7],[967,1,1,7,8],[968,1,1,8,9],[970,1,1,9,10]]],[41,5,5,10,15,[[976,1,1,10,11],[989,1,1,11,12],[992,2,2,12,14],[994,1,1,14,15]]],[42,19,19,15,34,[[1001,1,1,15,16],[1003,2,2,16,18],[1004,5,5,18,23],[1007,2,2,23,25],[1008,1,1,25,26],[1010,3,3,26,29],[1011,2,2,29,31],[1015,1,1,31,32],[1017,2,2,32,34]]],[45,4,4,34,38,[[1067,1,1,34,35],[1073,1,1,35,36],[1075,2,2,36,38]]],[54,1,1,38,39,[[1126,1,1,38,39]]],[58,2,2,39,41,[[1147,1,1,39,40],[1149,1,1,40,41]]],[61,10,10,41,51,[[1159,4,4,41,45],[1160,3,3,45,48],[1162,2,2,48,50],[1163,1,1,50,51]]],[65,2,2,51,53,[[1169,1,1,51,52],[1188,1,1,52,53]]]],[23400,23720,23847,23851,23896,24255,24474,24671,24692,24785,25070,25654,25784,25807,25931,26241,26345,26365,26412,26417,26432,26433,26435,26532,26571,26606,26682,26683,26691,26706,26709,26837,26920,26921,28471,28649,28701,28708,29848,30308,30352,30546,30548,30549,30550,30565,30574,30579,30615,30623,30640,30749,31098]]],["Though",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[45,1,1,1,2,[[1074,1,1,1,2]]]],[28182,28666]]],["except",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28685]]],["if",[155,148,[[39,30,28,0,28,[[932,1,1,0,1],[933,4,4,1,5],[934,4,4,5,9],[935,2,2,9,11],[936,1,1,11,12],[940,1,1,12,13],[943,1,1,13,14],[944,1,1,14,15],[946,8,6,15,21],[949,3,3,21,24],[952,3,3,24,27],[956,1,1,27,28]]],[40,13,13,28,41,[[959,2,2,28,30],[960,1,1,30,31],[964,2,2,31,33],[965,4,4,33,37],[966,1,1,37,38],[967,2,2,38,40],[969,1,1,40,41]]],[41,15,15,41,56,[[977,1,1,41,42],[978,2,2,42,44],[983,1,1,44,45],[984,2,2,45,47],[986,1,1,47,48],[987,1,1,48,49],[988,1,1,49,50],[989,2,2,50,52],[991,2,2,52,54],[992,1,1,54,55],[994,1,1,55,56]]],[42,23,23,56,79,[[999,1,1,56,57],[1001,1,1,57,58],[1002,2,2,58,60],[1004,3,3,60,63],[1005,2,2,63,65],[1006,1,1,65,66],[1007,3,3,66,69],[1008,4,4,69,73],[1009,2,2,73,75],[1010,1,1,75,76],[1011,1,1,76,77],[1012,1,1,77,78],[1017,1,1,78,79]]],[43,4,4,79,83,[[1022,1,1,79,80],[1026,1,1,80,81],[1042,1,1,81,82],[1043,1,1,82,83]]],[44,13,10,83,93,[[1047,3,2,83,85],[1052,3,2,85,87],[1055,1,1,87,88],[1056,1,1,88,89],[1057,2,1,89,90],[1058,1,1,90,91],[1059,1,1,91,92],[1060,1,1,92,93]]],[45,26,24,93,117,[[1065,1,1,93,94],[1066,1,1,94,95],[1068,7,6,95,101],[1069,3,2,101,103],[1070,1,1,103,104],[1071,1,1,104,105],[1072,2,2,105,107],[1073,1,1,107,108],[1075,6,6,108,114],[1077,3,3,114,117]]],[46,3,3,117,120,[[1082,1,1,117,118],[1086,1,1,118,119],[1090,1,1,119,120]]],[47,2,2,120,122,[[1095,1,1,120,121],[1096,1,1,121,122]]],[50,2,2,122,124,[[1109,1,1,122,123],[1110,1,1,123,124]]],[51,1,1,124,125,[[1113,1,1,124,125]]],[53,3,3,125,128,[[1119,1,1,125,126],[1120,1,1,126,127],[1121,1,1,127,128]]],[54,1,1,128,129,[[1126,1,1,128,129]]],[57,5,5,129,134,[[1135,2,2,129,131],[1136,1,1,131,132],[1142,1,1,132,133],[1145,1,1,133,134]]],[58,3,3,134,137,[[1147,2,2,134,136],[1150,1,1,136,137]]],[59,1,1,137,138,[[1153,1,1,137,138]]],[61,7,7,138,145,[[1159,1,1,138,139],[1160,2,2,139,141],[1161,2,2,141,143],[1163,2,2,143,145]]],[63,1,1,145,146,[[1165,1,1,145,146]]],[65,2,2,146,148,[[1169,1,1,146,147],[1188,1,1,147,148]]]],[23218,23247,23257,23280,23281,23296,23297,23304,23305,23325,23326,23347,23500,23647,23698,23739,23740,23742,23743,23744,23746,23829,23850,23852,23980,23983,24005,24209,24312,24313,24349,24503,24536,24581,24583,24585,24588,24600,24643,24672,24738,25119,25179,25180,25417,25497,25504,25587,25596,25650,25654,25655,25762,25771,25785,25932,26132,26253,26308,26319,26397,26405,26436,26462,26471,26490,26533,26563,26580,26604,26606,26612,26627,26647,26665,26671,26713,26733,26923,27097,27218,27807,27828,27987,27988,28093,28094,28197,28231,28265,28270,28303,28327,28452,28465,28495,28498,28515,28523,28526,28527,28535,28537,28556,28595,28614,28615,28650,28684,28686,28689,28692,28702,28706,28780,28783,28786,28878,28960,29045,29164,29189,29530,29552,29598,29704,29731,29746,29832,30002,30010,30021,30171,30264,30295,30310,30373,30437,30547,30551,30553,30599,30600,30638,30639,30668,30766,31099]]],["shall",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27123]]],["though",[9,7,[[43,1,1,0,1,[[1030,1,1,0,1]]],[45,6,4,1,5,[[1065,1,1,1,2],[1070,1,1,2,3],[1074,4,2,3,5]]],[46,1,1,5,6,[[1089,1,1,5,6]]],[58,1,1,6,7,[[1147,1,1,6,7]]]],[27403,28448,28556,28667,28668,29028,30307]]],["when",[2,2,[[45,1,1,0,1,[[1075,1,1,0,1]]],[61,1,1,1,2,[[1161,1,1,1,2]]]],[28694,30581]]],["whether",[3,1,[[44,3,1,0,1,[[1059,3,1,0,1]]]],[28288]]]]},{"k":"G1438","v":[["*",[340,312,[[39,31,27,0,27,[[931,1,1,0,1],[934,1,1,1,2],[936,1,1,2,3],[937,2,2,3,5],[940,5,3,5,8],[941,1,1,8,9],[942,1,1,9,10],[943,1,1,10,11],[944,3,3,11,14],[946,1,1,14,15],[947,1,1,15,16],[949,3,3,16,19],[951,4,3,19,22],[953,3,2,22,24],[954,1,1,24,25],[955,2,2,25,27]]],[40,27,27,27,54,[[958,2,2,27,29],[959,3,3,29,32],[960,1,1,32,33],[961,3,3,33,36],[962,2,2,36,38],[964,2,2,38,40],[965,4,4,40,44],[966,1,1,44,45],[967,1,1,45,46],[968,2,2,46,48],[969,1,1,48,49],[970,3,3,49,52],[971,1,1,52,53],[972,1,1,53,54]]],[41,61,58,54,112,[[973,1,1,54,55],[975,1,1,55,56],[979,3,3,56,59],[981,4,4,59,63],[982,1,1,63,64],[983,4,4,64,68],[984,7,7,68,75],[985,2,2,75,77],[986,5,3,77,80],[987,3,3,80,83],[988,5,5,83,88],[989,2,2,88,90],[990,5,4,90,94],[991,3,3,94,97],[992,3,3,97,100],[993,2,2,100,102],[994,3,3,102,105],[995,5,5,105,110],[996,2,2,110,112]]],[42,27,26,112,138,[[998,1,1,112,113],[1001,5,4,113,117],[1002,2,2,117,119],[1003,2,2,119,121],[1004,1,1,121,122],[1007,4,4,122,126],[1008,2,2,126,128],[1009,2,2,128,130],[1011,1,1,130,131],[1012,1,1,131,132],[1014,1,1,132,133],[1015,2,2,133,135],[1016,1,1,135,136],[1017,2,2,136,138]]],[43,21,21,138,159,[[1018,1,1,138,139],[1022,2,2,139,141],[1024,1,1,141,142],[1025,2,2,142,144],[1027,1,1,144,145],[1029,1,1,145,146],[1030,1,1,146,147],[1031,1,1,147,148],[1032,1,1,148,149],[1033,1,1,149,150],[1036,1,1,150,151],[1037,1,1,151,152],[1038,1,1,152,153],[1040,3,3,153,156],[1042,1,1,156,157],[1045,2,2,157,159]]],[44,24,23,159,182,[[1046,2,2,159,161],[1047,1,1,161,162],[1049,1,1,162,163],[1050,1,1,163,164],[1051,3,3,164,167],[1053,2,2,167,169],[1056,1,1,169,170],[1057,2,2,170,172],[1058,2,2,172,174],[1059,5,4,174,178],[1060,2,2,178,180],[1061,2,2,180,182]]],[45,16,16,182,198,[[1064,1,1,182,183],[1067,2,2,183,185],[1068,2,2,185,187],[1071,2,2,187,189],[1072,4,4,189,193],[1074,1,1,193,194],[1075,2,2,194,196],[1077,2,2,196,198]]],[46,31,19,198,217,[[1078,2,1,198,199],[1080,4,3,199,202],[1081,3,2,202,204],[1082,4,4,204,208],[1083,1,1,208,209],[1084,2,2,209,211],[1085,1,1,211,212],[1087,11,4,212,216],[1090,3,1,216,217]]],[47,8,7,217,224,[[1091,1,1,217,218],[1092,2,2,218,220],[1095,1,1,220,221],[1096,4,3,221,224]]],[48,16,11,224,235,[[1098,1,1,224,225],[1100,3,3,225,228],[1101,12,7,228,235]]],[49,7,7,235,242,[[1104,6,6,235,241],[1105,1,1,241,242]]],[50,2,2,242,244,[[1109,2,2,242,244]]],[51,6,6,244,250,[[1112,4,4,244,248],[1114,1,1,248,249],[1115,1,1,249,250]]],[52,4,4,250,254,[[1117,2,2,250,252],[1118,2,2,252,254]]],[53,5,5,254,259,[[1120,2,2,254,256],[1121,1,1,256,257],[1124,2,2,257,259]]],[54,3,3,259,262,[[1126,2,2,259,261],[1128,1,1,261,262]]],[55,2,1,262,263,[[1130,2,1,262,263]]],[57,13,13,263,276,[[1133,1,1,263,264],[1135,1,1,264,265],[1137,3,3,265,268],[1138,2,2,268,270],[1139,1,1,270,271],[1141,3,3,271,274],[1142,2,2,274,276]]],[58,5,5,276,281,[[1146,3,3,276,279],[1147,2,2,279,281]]],[59,5,5,281,286,[[1151,1,1,281,282],[1153,1,1,282,283],[1154,3,3,283,286]]],[60,1,1,286,287,[[1157,1,1,286,287]]],[61,5,5,287,292,[[1159,1,1,287,288],[1161,1,1,288,289],[1163,3,3,289,292]]],[62,1,1,292,293,[[1164,1,1,292,293]]],[64,7,7,293,300,[[1166,7,7,293,300]]],[65,12,12,300,312,[[1168,2,2,300,302],[1169,1,1,302,303],[1170,1,1,303,304],[1172,1,1,304,305],[1174,1,1,305,306],[1176,3,3,306,309],[1183,1,1,309,310],[1184,1,1,310,311],[1185,1,1,311,312]]]],[23201,23316,23367,23382,23400,23514,23515,23534,23560,23612,23663,23679,23680,23696,23731,23774,23834,23851,23864,23930,23949,23955,24011,24017,24065,24164,24171,24268,24279,24312,24313,24314,24340,24369,24390,24394,24443,24458,24514,24534,24546,24548,24571,24588,24614,24671,24680,24706,24726,24758,24761,24787,24857,24876,24917,25033,25225,25234,25244,25324,25326,25348,25361,25392,25422,25423,25426,25431,25460,25476,25480,25492,25495,25506,25516,25537,25552,25564,25579,25586,25593,25605,25608,25623,25625,25628,25629,25635,25654,25665,25692,25697,25699,25702,25743,25744,25766,25784,25793,25799,25856,25860,25881,25887,25930,25937,25947,25963,25970,25983,26003,26018,26119,26228,26229,26236,26252,26310,26318,26346,26363,26403,26556,26561,26574,26578,26588,26599,26634,26662,26703,26739,26819,26832,26849,26877,26899,26905,26926,27094,27095,27137,27185,27210,27276,27348,27408,27431,27471,27510,27616,27654,27687,27746,27748,27755,27800,27915,27928,27954,27957,27976,28041,28055,28079,28081,28084,28119,28139,28234,28261,28264,28268,28275,28287,28292,28294,28302,28304,28306,28340,28354,28428,28474,28486,28489,28524,28591,28596,28605,28628,28629,28631,28670,28682,28706,28778,28791,28809,28842,28846,28854,28861,28864,28889,28892,28895,28896,28902,28917,28927,28937,28978,28983,28985,28989,29048,29061,29093,29101,29176,29191,29192,29196,29244,29288,29291,29304,29306,29323,29329,29331,29332,29333,29337,29394,29395,29398,29399,29403,29412,29442,29530,29533,29577,29578,29581,29582,29607,29634,29665,29667,29687,29690,29722,29725,29744,29798,29807,29840,29848,29873,29922,29966,30008,30033,30034,30035,30050,30057,30091,30112,30119,30130,30158,30167,30288,30290,30293,30297,30310,30386,30429,30454,30456,30465,30501,30548,30582,30634,30642,30645,30653,30678,30684,30685,30690,30691,30692,30693,30726,30737,30755,30776,30808,30833,30864,30865,30868,30988,31000,31024]]],["+",[22,21,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,2,2,2,4,[[986,1,1,2,3],[989,1,1,3,4]]],[42,1,1,4,5,[[1007,1,1,4,5]]],[43,3,3,5,8,[[1040,3,3,5,8]]],[45,1,1,8,9,[[1067,1,1,8,9]]],[46,4,3,9,12,[[1087,2,2,9,11],[1090,2,1,11,12]]],[48,1,1,12,13,[[1100,1,1,12,13]]],[49,1,1,13,14,[[1104,1,1,13,14]]],[53,1,1,14,15,[[1124,1,1,14,15]]],[57,2,2,15,17,[[1138,1,1,15,16],[1142,1,1,16,17]]],[58,1,1,17,18,[[1147,1,1,17,18]]],[59,1,1,18,19,[[1154,1,1,18,19]]],[65,2,2,19,21,[[1170,1,1,19,20],[1185,1,1,20,21]]]],[23774,24390,25586,25654,26556,27746,27748,27755,28474,28983,28985,29048,29291,29398,29798,30050,30158,30310,30456,30776,31024]]],["another",[4,4,[[48,1,1,0,1,[[1100,1,1,0,1]]],[50,2,2,1,3,[[1109,2,2,1,3]]],[57,1,1,3,4,[[1135,1,1,3,4]]]],[29304,29530,29533,30008]]],["conceits",[2,2,[[44,2,2,0,2,[[1056,1,1,0,1],[1057,1,1,1,2]]]],[28234,28261]]],["her",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]]],[23955,25552,28605,29577]]],["herself",[4,4,[[39,1,1,0,1,[[937,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[65,2,2,2,4,[[1168,1,1,2,3],[1184,1,1,3,4]]]],[23400,24917,30737,31000]]],["him",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]]],[24787,25348,28778]]],["himself",[111,103,[[39,9,7,0,7,[[940,3,2,0,2],[941,1,1,2,3],[944,1,1,3,4],[946,1,1,4,5],[951,2,1,5,6],[955,1,1,6,7]]],[40,6,6,7,13,[[959,1,1,7,8],[961,2,2,8,10],[964,1,1,10,11],[968,1,1,11,12],[971,1,1,12,13]]],[41,21,19,13,32,[[979,1,1,13,14],[981,2,2,14,16],[982,1,1,16,17],[983,2,2,17,19],[984,2,2,19,21],[986,2,1,21,22],[987,1,1,22,23],[988,1,1,23,24],[990,4,3,24,27],[991,1,1,27,28],[995,2,2,28,30],[996,2,2,30,32]]],[42,16,15,32,47,[[998,1,1,32,33],[1001,4,3,33,36],[1002,1,1,36,37],[1003,1,1,37,38],[1004,1,1,38,39],[1007,2,2,39,41],[1009,2,2,41,43],[1012,1,1,43,44],[1015,1,1,44,45],[1017,2,2,45,47]]],[43,11,11,47,58,[[1018,1,1,47,48],[1022,1,1,48,49],[1025,2,2,49,51],[1027,1,1,51,52],[1029,1,1,52,53],[1031,1,1,53,54],[1033,1,1,54,55],[1036,1,1,55,56],[1042,1,1,56,57],[1045,1,1,57,58]]],[44,5,4,58,62,[[1059,4,3,58,61],[1060,1,1,61,62]]],[45,5,5,62,67,[[1064,1,1,62,63],[1072,2,2,63,65],[1075,2,2,65,67]]],[46,5,4,67,71,[[1082,2,2,67,69],[1087,3,2,69,71]]],[47,5,5,71,76,[[1091,1,1,71,72],[1092,2,2,72,74],[1096,2,2,74,76]]],[48,6,6,76,82,[[1098,1,1,76,77],[1101,5,5,77,82]]],[49,2,2,82,84,[[1104,1,1,82,83],[1105,1,1,83,84]]],[52,1,1,84,85,[[1117,1,1,84,85]]],[53,1,1,85,86,[[1120,1,1,85,86]]],[54,2,2,86,88,[[1126,2,2,86,88]]],[55,2,1,88,89,[[1130,2,1,88,89]]],[57,9,9,89,98,[[1133,1,1,89,90],[1137,3,3,90,93],[1138,1,1,93,94],[1139,1,1,94,95],[1141,3,3,95,98]]],[58,2,2,98,100,[[1146,2,2,98,100]]],[61,3,3,100,103,[[1161,1,1,100,101],[1163,2,2,101,103]]]],[23515,23534,23560,23696,23731,23930,24171,24314,24369,24394,24534,24706,24857,25234,25324,25326,25392,25423,25431,25476,25480,25564,25605,25623,25692,25699,25702,25743,25937,25970,26003,26018,26119,26228,26229,26236,26318,26346,26403,26561,26574,26634,26662,26739,26832,26899,26905,26926,27095,27185,27210,27276,27348,27431,27510,27616,27800,27915,28287,28292,28302,28306,28428,28628,28629,28682,28706,28895,28896,28978,28989,29061,29093,29101,29191,29192,29244,29306,29329,29331,29332,29337,29399,29442,29665,29722,29840,29848,29922,29966,30033,30034,30035,30057,30091,30112,30119,30130,30290,30293,30582,30634,30642]]],["his",[19,19,[[41,8,8,0,8,[[983,1,1,0,1],[984,1,1,1,2],[985,1,1,2,3],[986,1,1,3,4],[987,2,2,4,6],[988,1,1,6,7],[991,1,1,7,8]]],[44,1,1,8,9,[[1050,1,1,8,9]]],[45,1,1,9,10,[[1068,1,1,9,10]]],[46,1,1,10,11,[[1080,1,1,10,11]]],[47,1,1,11,12,[[1096,1,1,11,12]]],[48,2,2,12,14,[[1101,2,2,12,14]]],[51,3,3,14,17,[[1112,2,2,14,16],[1114,1,1,16,17]]],[52,1,1,17,18,[[1117,1,1,17,18]]],[65,1,1,18,19,[[1176,1,1,18,19]]]],[25426,25506,25537,25579,25593,25608,25625,25744,28055,28524,28854,29196,29332,29337,29581,29582,29607,29667,30868]]],["home",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26877]]],["itself",[9,8,[[39,3,2,0,2,[[934,1,1,0,1],[940,2,1,1,2]]],[40,2,2,2,4,[[959,2,2,2,4]]],[41,1,1,4,5,[[983,1,1,4,5]]],[42,1,1,5,6,[[1011,1,1,5,6]]],[44,1,1,6,7,[[1059,1,1,6,7]]],[48,1,1,7,8,[[1100,1,1,7,8]]]],[23316,23514,24312,24313,25422,26703,28294,29288]]],["ourselves",[17,14,[[44,2,2,0,2,[[1053,1,1,0,1],[1060,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[46,12,9,3,12,[[1078,2,1,3,4],[1080,3,2,4,6],[1081,3,2,6,8],[1082,1,1,8,9],[1083,1,1,9,10],[1084,1,1,10,11],[1087,1,1,11,12]]],[52,1,1,12,13,[[1118,1,1,12,13]]],[61,1,1,13,14,[[1159,1,1,13,14]]]],[28139,28304,28631,28809,28842,28846,28861,28864,28889,28902,28917,28983,29687,30548]]],["own",[20,20,[[41,1,1,0,1,[[986,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[44,4,4,2,6,[[1049,1,1,2,3],[1053,1,1,3,4],[1061,2,2,4,6]]],[45,5,5,6,11,[[1067,1,1,6,7],[1068,1,1,7,8],[1071,2,2,8,10],[1074,1,1,10,11]]],[47,1,1,11,12,[[1096,1,1,11,12]]],[48,2,2,12,14,[[1101,2,2,12,14]]],[49,2,2,14,16,[[1104,2,2,14,16]]],[51,1,1,16,17,[[1112,1,1,16,17]]],[52,1,1,17,18,[[1118,1,1,17,18]]],[64,2,2,18,20,[[1166,2,2,18,20]]]],[25579,27137,28041,28119,28340,28354,28486,28489,28591,28596,28670,29192,29332,29333,29403,29412,29578,29690,30685,30690]]],["selves",[3,3,[[41,1,1,0,1,[[993,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[25856,28937,30288]]],["their",[15,15,[[39,3,3,0,3,[[936,1,1,0,1],[949,1,1,1,2],[953,1,1,2,3]]],[41,6,6,3,9,[[981,1,1,3,4],[984,1,1,4,5],[988,1,1,5,6],[991,1,1,6,7],[994,1,1,7,8],[995,1,1,8,9]]],[48,1,1,9,10,[[1101,1,1,9,10]]],[59,1,1,10,11,[[1154,1,1,10,11]]],[64,1,1,11,12,[[1166,1,1,11,12]]],[65,3,3,12,15,[[1176,2,2,12,14],[1183,1,1,14,15]]]],[23367,23834,24011,25361,25495,25628,25766,25930,25983,29332,30465,30678,30864,30865,30988]]],["them",[7,7,[[39,3,3,0,3,[[943,1,1,0,1],[953,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[958,1,1,3,4],[964,1,1,4,5]]],[42,1,1,5,6,[[1015,1,1,5,6]]],[43,1,1,6,7,[[1038,1,1,6,7]]]],[23663,24011,24164,24279,24514,26849,27687]]],["themselves",[51,47,[[39,5,5,0,5,[[937,1,1,0,1],[942,1,1,1,2],[944,1,1,2,3],[949,2,2,3,5]]],[40,11,11,5,16,[[958,1,1,5,6],[960,1,1,6,7],[962,2,2,7,9],[965,2,2,9,11],[966,1,1,11,12],[967,1,1,12,13],[968,1,1,13,14],[970,1,1,14,15],[972,1,1,15,16]]],[41,8,8,16,24,[[979,2,2,16,18],[990,1,1,18,19],[992,3,3,19,22],[994,1,1,22,23],[995,1,1,23,24]]],[42,3,3,24,27,[[1003,1,1,24,25],[1007,1,1,25,26],[1008,1,1,26,27]]],[43,1,1,27,28,[[1045,1,1,27,28]]],[44,4,4,28,32,[[1046,2,2,28,30],[1047,1,1,30,31],[1058,1,1,31,32]]],[45,1,1,32,33,[[1077,1,1,32,33]]],[46,6,2,33,35,[[1082,1,1,33,34],[1087,5,1,34,35]]],[49,1,1,35,36,[[1104,1,1,35,36]]],[53,3,3,36,39,[[1120,1,1,36,37],[1121,1,1,37,38],[1124,1,1,38,39]]],[54,1,1,39,40,[[1128,1,1,39,40]]],[59,2,2,40,42,[[1151,1,1,40,41],[1153,1,1,41,42]]],[60,1,1,42,43,[[1157,1,1,42,43]]],[64,2,2,43,45,[[1166,2,2,43,45]]],[65,2,2,45,47,[[1172,1,1,45,46],[1174,1,1,46,47]]]],[23382,23612,23679,23851,23864,24268,24340,24443,24458,24546,24548,24614,24671,24680,24758,24876,25225,25244,25697,25784,25793,25799,25887,25947,26363,26578,26599,27928,27954,27957,27976,28268,28791,28892,28983,29394,29725,29744,29807,29873,30386,30429,30501,30684,30691,30808,30833]]],["they",[2,2,[[65,2,2,0,2,[[1168,1,1,0,1],[1169,1,1,1,2]]]],[30726,30755]]],["things",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29395]]],["thyself",[3,3,[[42,1,1,0,1,[[1014,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]]],[26819,28275,29176]]],["ye",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25460]]],["you",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,3,3,2,5,[[1001,1,1,2,3],[1002,1,1,3,4],[1008,1,1,4,5]]]],[24065,24761,26252,26310,26588]]],["your",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29329]]],["yourselves",[35,35,[[39,4,4,0,4,[[931,1,1,0,1],[944,1,1,1,2],[951,1,1,2,3],[953,1,1,3,4]]],[40,3,3,4,7,[[965,2,2,4,6],[969,1,1,6,7]]],[41,9,9,7,16,[[975,1,1,7,8],[984,2,2,8,10],[988,2,2,10,12],[989,1,1,12,13],[993,1,1,13,14],[994,1,1,14,15],[995,1,1,15,16]]],[43,4,4,16,20,[[1022,1,1,16,17],[1030,1,1,17,18],[1032,1,1,18,19],[1037,1,1,19,20]]],[44,4,4,20,24,[[1051,3,3,20,23],[1057,1,1,23,24]]],[46,2,2,24,26,[[1084,1,1,24,25],[1090,1,1,25,26]]],[48,1,1,26,27,[[1101,1,1,26,27]]],[51,1,1,27,28,[[1115,1,1,27,28]]],[57,1,1,28,29,[[1142,1,1,28,29]]],[58,1,1,29,30,[[1147,1,1,29,30]]],[59,1,1,30,31,[[1154,1,1,30,31]]],[61,1,1,31,32,[[1163,1,1,31,32]]],[62,1,1,32,33,[[1164,1,1,32,33]]],[64,2,2,33,35,[[1166,2,2,33,35]]]],[23201,23680,23949,24017,24571,24588,24726,25033,25492,25516,25629,25635,25665,25860,25881,25963,27094,27408,27471,27654,28079,28081,28084,28264,28927,29048,29323,29634,30167,30297,30454,30645,30653,30692,30693]]]]},{"k":"G1439","v":[["*",[13,13,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,2,2,1,3,[[976,1,1,1,2],[994,1,1,2,3]]],[43,8,8,3,11,[[1022,1,1,3,4],[1031,1,1,4,5],[1033,1,1,5,6],[1036,1,1,6,7],[1040,1,1,7,8],[1044,2,2,8,10],[1045,1,1,10,11]]],[45,1,1,11,12,[[1071,1,1,11,12]]],[65,1,1,12,13,[[1168,1,1,12,13]]]],[24000,25104,25915,27097,27430,27490,27615,27766,27887,27895,27903,28580,30737]]],["+",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[24000,27097]]],["Suffer",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25915]]],["committed",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27895]]],["left",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27766]]],["let",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27887]]],["suffer",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28580]]],["suffered",[4,4,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,3,3,1,4,[[1031,1,1,1,2],[1033,1,1,2,3],[1036,1,1,3,4]]]],[25104,27430,27490,27615]]],["sufferest",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30737]]],["suffereth",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27903]]]]},{"k":"G1440","v":[["*",[5,5,[[41,2,2,0,2,[[982,2,2,0,2]]],[43,3,3,2,5,[[1024,1,1,2,3],[1040,1,1,3,4],[1044,1,1,4,5]]]],[25364,25380,27130,27757,27892]]],["+",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1044,1,1,1,2]]]],[27130,27892]]],["seventy",[2,2,[[41,2,2,0,2,[[982,2,2,0,2]]]],[25364,25380]]],["ten",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27757]]]]},{"k":"G1441","v":[["times",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23749]]]]},{"k":"G1442","v":[["seventh",[9,8,[[42,1,1,0,1,[[1000,1,1,0,1]]],[57,2,1,1,2,[[1136,2,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]],[65,5,5,3,8,[[1174,1,1,3,4],[1176,1,1,4,5],[1177,1,1,5,6],[1182,1,1,6,7],[1187,1,1,7,8]]]],[26208,30018,30686,30828,30868,30887,30971,31073]]]]},{"k":"G1443","v":[["Heber",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25060]]]]},{"k":"G1444","v":[["Hebrew",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25973]]]]},{"k":"G1445","v":[["*",[4,3,[[43,1,1,0,1,[[1023,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[49,2,1,2,3,[[1105,2,1,2,3]]]],[27102,29011,29426]]],["Hebrew",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29426]]],["Hebrews",[3,3,[[43,1,1,0,1,[[1023,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]]],[27102,29011,29426]]]]},{"k":"G1446","v":[["Hebrew",[3,3,[[43,3,3,0,3,[[1038,1,1,0,1],[1039,1,1,1,2],[1043,1,1,2,3]]]],[27704,27706,27837]]]]},{"k":"G1447","v":[["*",[6,6,[[42,4,4,0,4,[[1001,1,1,0,1],[1015,3,3,1,4]]],[65,2,2,4,6,[[1175,1,1,4,5],[1182,1,1,5,6]]]],[26212,26838,26842,26845,30851,30970]]],["Hebrew",[3,3,[[42,3,3,0,3,[[1015,3,3,0,3]]]],[26838,26842,26845]]],["tongue",[3,3,[[42,1,1,0,1,[[1001,1,1,0,1]]],[65,2,2,1,3,[[1175,1,1,1,2],[1182,1,1,2,3]]]],[26212,30851,30970]]]]},{"k":"G1448","v":[["*",[43,42,[[39,8,8,0,8,[[931,1,1,0,1],[932,1,1,1,2],[938,1,1,2,3],[943,1,1,3,4],[949,2,2,4,6],[954,2,2,6,8]]],[40,3,3,8,11,[[957,1,1,8,9],[967,1,1,9,10],[970,1,1,10,11]]],[41,18,18,11,29,[[979,1,1,11,12],[982,2,2,12,14],[984,1,1,14,15],[987,2,2,15,17],[990,2,2,17,19],[991,3,3,19,22],[993,3,3,22,25],[994,2,2,25,27],[996,2,2,27,29]]],[43,6,6,29,35,[[1024,1,1,29,30],[1026,1,1,30,31],[1027,1,1,31,32],[1038,1,1,32,33],[1039,1,1,33,34],[1040,1,1,34,35]]],[44,1,1,35,36,[[1058,1,1,35,36]]],[49,1,1,36,37,[[1104,1,1,36,37]]],[57,2,2,37,39,[[1139,1,1,37,38],[1142,1,1,38,39]]],[58,3,2,39,41,[[1149,2,1,39,40],[1150,1,1,40,41]]],[59,1,1,41,42,[[1154,1,1,41,42]]]],[23194,23226,23424,23641,23827,23860,24099,24100,24230,24641,24796,25207,25372,25374,25492,25589,25613,25723,25728,25760,25768,25772,25834,25846,25854,25865,25911,26006,26019,27133,27219,27268,27697,27710,27749,28278,29421,30083,30158,30345,30362,30453]]],["+",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25589]]],["approacheth",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25492]]],["approaching",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30158]]],["hand",[9,9,[[39,5,5,0,5,[[931,1,1,0,1],[932,1,1,1,2],[938,1,1,2,3],[954,2,2,3,5]]],[40,2,2,5,7,[[957,1,1,5,6],[970,1,1,6,7]]],[44,1,1,7,8,[[1058,1,1,7,8]]],[59,1,1,8,9,[[1154,1,1,8,9]]]],[23194,23226,23424,24099,24100,24230,24796,28278,30453]]],["near",[9,9,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,5,5,1,6,[[990,1,1,1,2],[991,1,1,2,3],[993,1,1,3,4],[994,1,1,4,5],[996,1,1,5,6]]],[43,3,3,6,9,[[1026,1,1,6,7],[1038,1,1,7,8],[1040,1,1,8,9]]]],[23860,25728,25772,25834,25911,26006,27219,27697,27749]]],["nigh",[22,21,[[39,2,2,0,2,[[943,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[967,1,1,2,3]]],[41,11,11,3,14,[[979,1,1,3,4],[982,2,2,4,6],[987,1,1,6,7],[990,1,1,7,8],[991,2,2,8,10],[993,2,2,10,12],[994,1,1,12,13],[996,1,1,13,14]]],[43,3,3,14,17,[[1024,1,1,14,15],[1027,1,1,15,16],[1039,1,1,16,17]]],[49,1,1,17,18,[[1104,1,1,17,18]]],[57,1,1,18,19,[[1139,1,1,18,19]]],[58,3,2,19,21,[[1149,2,1,19,20],[1150,1,1,20,21]]]],[23641,23827,24641,25207,25372,25374,25613,25723,25760,25768,25846,25854,25865,26019,27133,27268,27710,29421,30083,30345,30362]]]]},{"k":"G1449","v":[["written",[2,2,[[46,2,2,0,2,[[1080,2,2,0,2]]]],[28843,28844]]]]},{"k":"G1450","v":[["surety",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30086]]]]},{"k":"G1451","v":[["*",[30,30,[[39,3,3,0,3,[[952,2,2,0,2],[954,1,1,2,3]]],[40,2,2,3,5,[[969,2,2,3,5]]],[41,3,3,5,8,[[991,1,1,5,6],[993,2,2,6,8]]],[42,11,11,8,19,[[998,1,1,8,9],[999,1,1,9,10],[1002,3,3,10,13],[1003,1,1,13,14],[1007,3,3,14,17],[1015,2,2,17,19]]],[43,3,3,19,22,[[1018,1,1,19,20],[1026,1,1,20,21],[1044,1,1,21,22]]],[44,1,1,22,23,[[1055,1,1,22,23]]],[48,2,2,23,25,[[1098,2,2,23,25]]],[49,1,1,25,26,[[1106,1,1,25,26]]],[57,2,2,26,28,[[1138,1,1,26,27],[1140,1,1,27,28]]],[65,2,2,28,30,[[1167,1,1,28,29],[1188,1,1,29,30]]]],[23989,23990,24072,24745,24746,25742,25856,25857,26108,26143,26261,26276,26280,26330,26541,26577,26578,26845,26867,26935,27254,27863,28196,29242,29246,29447,30052,30105,30700,31090]]],["+",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30105]]],["from",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26935]]],["hand",[10,10,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,2,2,1,3,[[993,2,2,1,3]]],[42,4,4,3,7,[[998,1,1,3,4],[1003,1,1,4,5],[1007,1,1,5,6],[1015,1,1,6,7]]],[49,1,1,7,8,[[1106,1,1,7,8]]],[65,2,2,8,10,[[1167,1,1,8,9],[1188,1,1,9,10]]]],[24072,25856,25857,26108,26330,26578,26867,29447,30700,31090]]],["near",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23990,24745]]],["nigh",[8,8,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[42,2,2,2,4,[[1002,2,2,2,4]]],[43,1,1,4,5,[[1044,1,1,4,5]]],[44,1,1,5,6,[[1055,1,1,5,6]]],[48,2,2,6,8,[[1098,2,2,6,8]]]],[23989,24746,26261,26276,27863,28196,29242,29246]]],["to",[5,5,[[41,1,1,0,1,[[991,1,1,0,1]]],[42,3,3,1,4,[[999,1,1,1,2],[1007,1,1,2,3],[1015,1,1,3,4]]],[43,1,1,4,5,[[1026,1,1,4,5]]]],[25742,26143,26577,26845,27254]]],["unto",[3,3,[[42,2,2,0,2,[[1002,1,1,0,1],[1007,1,1,1,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]]],[26280,26541,30052]]]]},{"k":"G1452","v":[["nearer",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28277]]]]},{"k":"G1453","v":[["*",[141,135,[[39,33,33,0,33,[[930,4,4,0,4],[931,1,1,4,5],[936,3,3,5,8],[937,5,5,8,13],[938,1,1,13,14],[939,2,2,14,16],[940,2,2,16,18],[942,1,1,18,19],[944,1,1,19,20],[945,2,2,20,22],[952,3,3,22,25],[953,1,1,25,26],[954,2,2,26,28],[955,3,3,28,31],[956,2,2,31,33]]],[40,18,18,33,51,[[957,1,1,33,34],[958,3,3,34,37],[959,1,1,37,38],[960,1,1,38,39],[961,1,1,39,40],[962,2,2,40,42],[965,1,1,42,43],[966,1,1,43,44],[968,1,1,44,45],[969,2,2,45,47],[970,2,2,47,49],[972,2,2,49,51]]],[41,19,19,51,70,[[973,1,1,51,52],[975,1,1,52,53],[977,2,2,53,55],[978,1,1,55,56],[979,3,3,56,59],[980,2,2,59,61],[981,2,2,61,63],[983,2,2,63,65],[985,1,1,65,66],[992,1,1,66,67],[993,1,1,67,68],[996,2,2,68,70]]],[42,13,13,70,83,[[998,3,3,70,73],[1001,2,2,73,75],[1003,1,1,75,76],[1007,1,1,76,77],[1008,3,3,77,80],[1009,1,1,80,81],[1010,1,1,81,82],[1017,1,1,82,83]]],[43,14,14,83,97,[[1020,3,3,83,86],[1021,1,1,86,87],[1022,1,1,87,88],[1026,1,1,88,89],[1027,2,2,89,91],[1029,1,1,91,92],[1030,4,4,92,96],[1043,1,1,96,97]]],[44,10,9,97,106,[[1049,2,2,97,99],[1051,2,2,99,101],[1052,1,1,101,102],[1053,3,2,102,104],[1055,1,1,104,105],[1058,1,1,105,106]]],[45,20,16,106,122,[[1067,1,1,106,107],[1076,19,15,107,122]]],[46,4,3,122,125,[[1078,1,1,122,123],[1081,2,1,123,124],[1082,1,1,124,125]]],[47,1,1,125,126,[[1091,1,1,125,126]]],[48,2,2,126,128,[[1097,1,1,126,127],[1101,1,1,127,128]]],[50,1,1,128,129,[[1108,1,1,128,129]]],[51,1,1,129,130,[[1111,1,1,129,130]]],[54,1,1,130,131,[[1126,1,1,130,131]]],[57,1,1,131,132,[[1143,1,1,131,132]]],[58,1,1,132,133,[[1150,1,1,132,133]]],[59,1,1,133,134,[[1151,1,1,133,134]]],[65,1,1,134,135,[[1177,1,1,134,135]]]],[23182,23183,23189,23190,23201,23360,23370,23371,23384,23385,23386,23398,23404,23425,23464,23470,23500,23531,23599,23693,23707,23723,23964,23968,23981,24015,24086,24100,24181,24192,24193,24201,24202,24246,24269,24271,24272,24291,24350,24405,24421,24423,24565,24637,24699,24725,24739,24782,24796,24879,24887,24962,25033,25130,25131,25154,25209,25211,25217,25269,25299,25308,25323,25413,25436,25543,25816,25836,25997,26025,26114,26115,26117,26218,26231,26380,26552,26581,26589,26597,26634,26699,26912,27002,27003,27011,27032,27089,27224,27285,27299,27344,27384,27385,27392,27399,27831,28046,28047,28072,28077,28095,28127,28150,28197,28277,28481,28722,28730,28731,28732,28733,28734,28735,28738,28747,28750,28753,28760,28761,28762,28770,28809,28873,28892,29058,29226,29318,29506,29570,29835,30191,30369,30395,30873]]],["+",[9,9,[[40,2,2,0,2,[[957,1,1,0,1],[965,1,1,1,2]]],[42,2,2,2,4,[[998,2,2,2,4]]],[43,2,2,4,6,[[1027,1,1,4,5],[1029,1,1,5,6]]],[45,1,1,6,7,[[1076,1,1,6,7]]],[58,1,1,7,8,[[1150,1,1,7,8]]],[59,1,1,8,9,[[1151,1,1,8,9]]]],[24246,24565,26114,26115,27285,27344,28733,30369,30395]]],["Arise",[10,10,[[39,5,5,0,5,[[930,2,2,0,2],[937,2,2,2,4],[945,1,1,4,5]]],[40,2,2,5,7,[[958,2,2,5,7]]],[41,2,2,7,9,[[977,1,1,7,8],[979,1,1,8,9]]],[42,1,1,9,10,[[1010,1,1,9,10]]]],[23182,23189,23384,23385,23707,24269,24271,25131,25209,26699]]],["Awake",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29318]]],["Rise",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[65,1,1,2,3,[[1177,1,1,2,3]]]],[24100,26218,30873]]],["Stand",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24291]]],["again",[9,9,[[39,4,4,0,4,[[944,1,1,0,1],[945,1,1,1,2],[954,1,1,2,3],[955,1,1,3,4]]],[43,1,1,4,5,[[1030,1,1,4,5]]],[44,2,2,5,7,[[1049,1,1,5,6],[1053,1,1,6,7]]],[45,1,1,7,8,[[1076,1,1,7,8]]],[46,1,1,8,9,[[1082,1,1,8,9]]]],[23693,23723,24086,24192,27399,28047,28150,28722,28892]]],["arise",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23981,24405,25299]]],["ariseth",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26380]]],["arose",[13,13,[[39,9,9,0,9,[[930,2,2,0,2],[936,2,2,2,4],[937,3,3,4,7],[953,1,1,7,8],[955,1,1,8,9]]],[40,1,1,9,10,[[958,1,1,9,10]]],[41,1,1,10,11,[[980,1,1,10,11]]],[42,1,1,11,12,[[1007,1,1,11,12]]],[43,1,1,12,13,[[1026,1,1,12,13]]]],[23183,23190,23360,23371,23386,23398,23404,24015,24181,24272,25269,26552,27224]]],["awake",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28277]]],["awoke",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23370]]],["out",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23500]]],["raise",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]]],[23425,27831]]],["raised",[25,24,[[41,3,3,0,3,[[979,1,1,0,1],[981,1,1,1,2],[992,1,1,2,3]]],[42,3,3,3,6,[[1008,3,3,3,6]]],[43,4,4,6,10,[[1020,1,1,6,7],[1021,1,1,7,8],[1030,2,2,8,10]]],[44,3,3,10,13,[[1051,1,1,10,11],[1052,1,1,11,12],[1055,1,1,12,13]]],[45,7,6,13,19,[[1076,7,6,13,19]]],[47,1,1,19,20,[[1091,1,1,19,20]]],[48,1,1,20,21,[[1097,1,1,20,21]]],[50,1,1,21,22,[[1108,1,1,21,22]]],[51,1,1,22,23,[[1111,1,1,22,23]]],[54,1,1,23,24,[[1126,1,1,23,24]]]],[25217,25323,25816,26581,26589,26597,27011,27032,27385,27392,28077,28095,28197,28734,28735,28760,28761,28762,28770,29058,29226,29506,29570,29835]]],["raiseth",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28809]]],["rise",[13,13,[[39,2,2,0,2,[[952,2,2,0,2]]],[40,5,5,2,7,[[960,1,1,2,3],[966,1,1,3,4],[968,1,1,4,5],[969,2,2,5,7]]],[41,2,2,7,9,[[983,1,1,7,8],[993,1,1,8,9]]],[45,4,4,9,13,[[1076,4,4,9,13]]]],[23964,23968,24350,24637,24699,24725,24739,25413,25836,28733,28734,28747,28750]]],["risen",[18,18,[[39,5,5,0,5,[[939,1,1,0,1],[942,1,1,1,2],[955,1,1,2,3],[956,2,2,3,5]]],[40,5,5,5,10,[[962,2,2,5,7],[970,1,1,7,8],[972,2,2,8,10]]],[41,3,3,10,13,[[981,1,1,10,11],[996,2,2,11,13]]],[42,2,2,13,15,[[998,1,1,13,14],[1017,1,1,14,15]]],[45,3,3,15,18,[[1076,3,3,15,18]]]],[23470,23599,24193,24201,24202,24421,24423,24782,24879,24887,25308,25997,26025,26117,26912,28731,28732,28738]]],["riseth",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26634]]],["rose",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28730]]],["up",[27,25,[[39,3,3,0,3,[[931,1,1,0,1],[939,1,1,1,2],[940,1,1,2,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[41,7,7,4,11,[[973,1,1,4,5],[975,1,1,5,6],[977,1,1,6,7],[978,1,1,7,8],[979,1,1,8,9],[983,1,1,9,10],[985,1,1,10,11]]],[42,1,1,11,12,[[1001,1,1,11,12]]],[43,5,5,12,17,[[1020,2,2,12,14],[1022,1,1,14,15],[1027,1,1,15,16],[1030,1,1,16,17]]],[44,4,3,17,20,[[1049,1,1,17,18],[1051,1,1,18,19],[1053,2,1,19,20]]],[45,3,3,20,23,[[1067,1,1,20,21],[1076,2,2,21,23]]],[46,2,1,23,24,[[1081,2,1,23,24]]],[57,1,1,24,25,[[1143,1,1,24,25]]]],[23201,23464,23531,24796,24962,25033,25130,25154,25211,25436,25543,26231,27002,27003,27089,27299,27384,28046,28072,28127,28481,28733,28753,28873,30191]]]]},{"k":"G1454","v":[["resurrection",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24182]]]]},{"k":"G1455","v":[["spies",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25799]]]]},{"k":"G1456","v":[["dedication",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26503]]]]},{"k":"G1457","v":[["*",[2,2,[[57,2,2,0,2,[[1141,1,1,0,1],[1142,1,1,1,2]]]],[30123,30153]]],["consecrated",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30153]]],["dedicated",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30123]]]]},{"k":"G1458","v":[["*",[7,7,[[43,6,6,0,6,[[1036,2,2,0,2],[1040,2,2,2,4],[1043,2,2,4,6]]],[44,1,1,6,7,[[1053,1,1,6,7]]]],[27623,27625,27762,27763,27825,27830,28149]]],["+",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28149]]],["accused",[4,4,[[43,4,4,0,4,[[1040,2,2,0,2],[1043,2,2,2,4]]]],[27762,27763,27825,27830]]],["implead",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27623]]],["question",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27625]]]]},{"k":"G1459","v":[["*",[9,9,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]],[44,1,1,3,4,[[1054,1,1,3,4]]],[46,1,1,4,5,[[1081,1,1,4,5]]],[54,2,2,5,7,[[1128,2,2,5,7]]],[57,2,2,7,9,[[1142,1,1,7,8],[1145,1,1,8,9]]]],[24175,24860,26976,28184,28868,29880,29886,30158,30246]]],["forsake",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30246]]],["forsaken",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[46,1,1,2,3,[[1081,1,1,2,3]]],[54,1,1,3,4,[[1128,1,1,3,4]]]],[24175,24860,28868,29880]]],["forsaking",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30158]]],["forsook",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29886]]],["leave",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26976]]],["left",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28184]]]]},{"k":"G1460","v":[["dwelling",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30508]]]]},{"k":"G1461","v":[["*",[6,4,[[44,6,4,0,4,[[1056,6,4,0,4]]]],[28226,28228,28232,28233]]],["+",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28232]]],["graffed",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28233]]],["in",[3,3,[[44,3,3,0,3,[[1056,3,3,0,3]]]],[28226,28228,28232]]],["into",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28233]]]]},{"k":"G1462","v":[["*",[2,2,[[43,2,2,0,2,[[1040,1,1,0,1],[1042,1,1,1,2]]]],[27763,27812]]],["charge",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27763]]],["him",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27812]]]]},{"k":"G1463","v":[["with",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30470]]]]},{"k":"G1464","v":[["+",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28552]]]]},{"k":"G1465","v":[["*",[3,3,[[43,1,1,0,1,[[1041,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]]],[27773,28325,29588]]],["+",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27773]]],["hindered",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]]],[28325,29588]]]]},{"k":"G1466","v":[["temperance",[4,3,[[43,1,1,0,1,[[1041,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[60,2,1,2,3,[[1156,2,1,2,3]]]],[27794,29185,30485]]]]},{"k":"G1467","v":[["*",[2,2,[[45,2,2,0,2,[[1068,1,1,0,1],[1070,1,1,1,2]]]],[28496,28565]]],["+",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28496]]],["temperate",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28565]]]]},{"k":"G1468","v":[["temperate",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29900]]]]},{"k":"G1469","v":[["+",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28983]]]]},{"k":"G1470","v":[["hid",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23572,25539]]]]},{"k":"G1471","v":[["child",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24978]]]]},{"k":"G1472","v":[["anoint",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30764]]]]},{"k":"G1473","v":[["*",[368,332,[[39,31,30,0,30,[[931,2,2,0,2],[933,6,6,2,8],[936,2,2,8,10],[938,1,1,10,11],[939,1,1,11,12],[940,2,2,12,14],[942,1,1,14,15],[946,1,1,15,16],[948,4,3,16,19],[949,2,2,19,21],[950,1,1,21,22],[951,1,1,22,23],[952,1,1,23,24],[953,1,1,24,25],[954,4,4,25,29],[956,1,1,29,30]]],[40,18,15,30,45,[[957,2,2,30,32],[962,2,2,32,34],[965,1,1,34,35],[966,4,2,35,37],[967,1,1,37,38],[968,1,1,38,39],[969,1,1,39,40],[970,6,5,40,45]]],[41,23,22,45,67,[[973,2,2,45,47],[975,1,1,47,48],[979,2,2,48,50],[980,1,1,50,51],[981,2,1,51,52],[982,2,2,52,54],[983,1,1,54,55],[987,1,1,55,56],[991,2,2,56,58],[992,1,1,58,59],[993,2,2,59,61],[994,3,3,61,64],[995,1,1,64,65],[996,2,2,65,67]]],[42,141,129,67,196,[[997,6,6,67,73],[999,1,1,73,74],[1000,4,4,74,78],[1001,8,7,78,85],[1002,12,10,85,95],[1003,6,6,95,101],[1004,22,19,101,120],[1005,2,2,120,122],[1006,10,10,122,132],[1007,3,3,132,135],[1008,5,5,135,140],[1009,7,7,140,147],[1010,15,13,147,160],[1011,8,8,160,168],[1012,8,7,168,175],[1013,12,11,175,186],[1014,11,9,186,195],[1015,1,1,195,196]]],[43,42,38,196,234,[[1024,2,2,196,198],[1026,3,3,198,201],[1027,2,2,201,203],[1028,1,1,203,204],[1030,3,3,204,207],[1032,1,1,207,208],[1034,2,2,208,210],[1035,3,3,210,213],[1037,4,4,213,217],[1038,2,2,217,219],[1039,7,5,219,224],[1040,3,2,224,226],[1041,1,1,226,227],[1042,3,3,227,230],[1043,4,3,230,233],[1045,1,1,233,234]]],[44,18,16,234,250,[[1052,8,6,234,240],[1054,1,1,240,241],[1055,1,1,241,242],[1056,3,3,242,245],[1057,1,1,245,246],[1059,1,1,246,247],[1060,1,1,247,248],[1061,2,2,248,250]]],[45,25,20,250,270,[[1062,4,1,250,251],[1063,1,1,251,252],[1064,4,3,252,255],[1065,1,1,255,256],[1066,1,1,256,257],[1067,1,1,257,258],[1068,3,3,258,261],[1070,3,3,261,264],[1071,2,1,264,265],[1072,1,1,265,266],[1076,3,3,266,269],[1077,1,1,269,270]]],[46,11,10,270,280,[[1078,1,1,270,271],[1079,3,2,271,273],[1087,1,1,273,274],[1088,2,2,274,276],[1089,4,4,276,280]]],[47,8,8,280,288,[[1091,1,1,280,281],[1092,2,2,281,283],[1094,1,1,283,284],[1095,3,3,284,287],[1096,1,1,287,288]]],[48,3,3,288,291,[[1099,1,1,288,289],[1100,1,1,289,290],[1101,1,1,290,291]]],[49,4,3,291,294,[[1105,3,2,291,293],[1106,1,1,293,294]]],[50,2,2,294,296,[[1107,2,2,294,296]]],[51,1,1,296,297,[[1112,1,1,296,297]]],[53,3,3,297,300,[[1119,2,2,297,299],[1120,1,1,299,300]]],[54,3,3,300,303,[[1125,1,1,300,301],[1128,2,2,301,303]]],[55,2,2,303,305,[[1129,2,2,303,305]]],[56,4,3,305,308,[[1132,4,3,305,308]]],[57,7,5,308,313,[[1133,2,1,308,309],[1134,2,1,309,310],[1137,1,1,310,311],[1142,1,1,311,312],[1144,1,1,312,313]]],[59,1,1,313,314,[[1151,1,1,313,314]]],[60,1,1,314,315,[[1156,1,1,314,315]]],[62,2,1,315,316,[[1164,2,1,315,316]]],[63,1,1,316,317,[[1165,1,1,316,317]]],[65,17,15,317,332,[[1167,4,4,317,321],[1168,2,2,321,323],[1169,2,2,323,325],[1171,1,1,325,326],[1183,1,1,326,327],[1187,3,2,327,329],[1188,4,3,329,332]]]],[23203,23206,23256,23262,23266,23268,23273,23278,23352,23354,23433,23469,23516,23517,23624,23760,23807,23814,23815,23853,23856,23904,23952,23962,24035,24076,24079,24087,24093,24215,24217,24223,24423,24457,24563,24626,24627,24673,24699,24723,24773,24783,24790,24812,24816,24911,24912,25041,25203,25222,25291,25310,25366,25398,25424,25605,25753,25754,25787,25834,25841,25891,25896,25934,25949,26030,26040,26064,26067,26070,26071,26074,26075,26148,26170,26182,26188,26194,26217,26240,26241,26244,26246,26253,26255,26277,26292,26297,26298,26301,26305,26308,26311,26320,26327,26335,26336,26345,26357,26362,26364,26392,26393,26395,26396,26397,26399,26402,26403,26404,26405,26409,26410,26419,26423,26426,26430,26431,26435,26439,26449,26479,26488,26490,26491,26492,26495,26498,26499,26506,26511,26515,26548,26550,26565,26606,26626,26627,26629,26630,26637,26644,26645,26648,26649,26656,26663,26671,26672,26674,26678,26679,26680,26682,26684,26687,26688,26689,26695,26696,26700,26704,26709,26713,26715,26718,26719,26725,26730,26733,26742,26743,26752,26753,26759,26763,26768,26770,26771,26773,26775,26778,26781,26782,26783,26784,26790,26791,26793,26805,26806,26811,26820,26822,26823,26831,27123,27148,27221,27226,27232,27279,27280,27312,27387,27395,27403,27461,27526,27546,27563,27567,27572,27648,27651,27652,27655,27677,27703,27707,27712,27723,27725,27732,27735,27740,27790,27814,27816,27821,27832,27833,27838,27916,28100,28105,28108,28111,28115,28116,28158,28207,28210,28222,28228,28264,28291,28317,28340,28358,28375,28397,28411,28414,28416,28448,28457,28479,28497,28499,28515,28546,28555,28566,28597,28623,28727,28728,28729,28786,28823,28826,28834,28972,29012,29018,29033,29035,29037,29038,29069,29100,29101,29143,29164,29172,29173,29205,29252,29273,29336,29425,29434,29453,29488,29490,29588,29707,29711,29723,29820,29871,29876,29895,29897,29951,29957,29958,29968,29990,30035,30163,30238,30390,30496,30646,30659,30705,30706,30708,30714,30739,30740,30755,30765,30783,30982,31055,31059,31088,31093,31096]]],["+",[3,3,[[45,2,2,0,2,[[1062,1,1,0,1],[1064,1,1,1,2]]],[46,1,1,2,3,[[1079,1,1,2,3]]]],[28375,28414,28834]]],["I",[360,327,[[39,31,30,0,30,[[931,2,2,0,2],[933,6,6,2,8],[936,2,2,8,10],[938,1,1,10,11],[939,1,1,11,12],[940,2,2,12,14],[942,1,1,14,15],[946,1,1,15,16],[948,4,3,16,19],[949,2,2,19,21],[950,1,1,21,22],[951,1,1,22,23],[952,1,1,23,24],[953,1,1,24,25],[954,4,4,25,29],[956,1,1,29,30]]],[40,18,15,30,45,[[957,2,2,30,32],[962,2,2,32,34],[965,1,1,34,35],[966,4,2,35,37],[967,1,1,37,38],[968,1,1,38,39],[969,1,1,39,40],[970,6,5,40,45]]],[41,22,21,45,66,[[973,2,2,45,47],[975,1,1,47,48],[979,2,2,48,50],[980,1,1,50,51],[981,2,1,51,52],[982,2,2,52,54],[983,1,1,54,55],[987,1,1,55,56],[991,1,1,56,57],[992,1,1,57,58],[993,2,2,58,60],[994,3,3,60,63],[995,1,1,63,64],[996,2,2,64,66]]],[42,141,129,66,195,[[997,6,6,66,72],[999,1,1,72,73],[1000,4,4,73,77],[1001,8,7,77,84],[1002,12,10,84,94],[1003,6,6,94,100],[1004,22,19,100,119],[1005,2,2,119,121],[1006,10,10,121,131],[1007,3,3,131,134],[1008,5,5,134,139],[1009,7,7,139,146],[1010,15,13,146,159],[1011,8,8,159,167],[1012,8,7,167,174],[1013,12,11,174,185],[1014,11,9,185,194],[1015,1,1,194,195]]],[43,41,37,195,232,[[1024,2,2,195,197],[1026,3,3,197,200],[1027,2,2,200,202],[1028,1,1,202,203],[1030,3,3,203,206],[1034,2,2,206,208],[1035,3,3,208,211],[1037,4,4,211,215],[1038,2,2,215,217],[1039,7,5,217,222],[1040,3,2,222,224],[1041,1,1,224,225],[1042,3,3,225,228],[1043,4,3,228,231],[1045,1,1,231,232]]],[44,18,16,232,248,[[1052,8,6,232,238],[1054,1,1,238,239],[1055,1,1,239,240],[1056,3,3,240,243],[1057,1,1,243,244],[1059,1,1,244,245],[1060,1,1,245,246],[1061,2,2,246,248]]],[45,23,20,248,268,[[1062,3,1,248,249],[1063,1,1,249,250],[1064,3,3,250,253],[1065,1,1,253,254],[1066,1,1,254,255],[1067,1,1,255,256],[1068,3,3,256,259],[1070,3,3,259,262],[1071,2,1,262,263],[1072,1,1,263,264],[1076,3,3,264,267],[1077,1,1,267,268]]],[46,10,10,268,278,[[1078,1,1,268,269],[1079,2,2,269,271],[1087,1,1,271,272],[1088,2,2,272,274],[1089,4,4,274,278]]],[47,8,8,278,286,[[1091,1,1,278,279],[1092,2,2,279,281],[1094,1,1,281,282],[1095,3,3,282,285],[1096,1,1,285,286]]],[48,3,3,286,289,[[1099,1,1,286,287],[1100,1,1,287,288],[1101,1,1,288,289]]],[49,4,3,289,292,[[1105,3,2,289,291],[1106,1,1,291,292]]],[50,2,2,292,294,[[1107,2,2,292,294]]],[51,1,1,294,295,[[1112,1,1,294,295]]],[53,2,2,295,297,[[1119,1,1,295,296],[1120,1,1,296,297]]],[54,3,3,297,300,[[1125,1,1,297,298],[1128,2,2,298,300]]],[55,1,1,300,301,[[1129,1,1,300,301]]],[56,3,2,301,303,[[1132,3,2,301,303]]],[57,7,5,303,308,[[1133,2,1,303,304],[1134,2,1,304,305],[1137,1,1,305,306],[1142,1,1,306,307],[1144,1,1,307,308]]],[59,1,1,308,309,[[1151,1,1,308,309]]],[60,1,1,309,310,[[1156,1,1,309,310]]],[62,2,1,310,311,[[1164,2,1,310,311]]],[63,1,1,311,312,[[1165,1,1,311,312]]],[65,17,15,312,327,[[1167,4,4,312,316],[1168,2,2,316,318],[1169,2,2,318,320],[1171,1,1,320,321],[1183,1,1,321,322],[1187,3,2,322,324],[1188,4,3,324,327]]]],[23203,23206,23256,23262,23266,23268,23273,23278,23352,23354,23433,23469,23516,23517,23624,23760,23807,23814,23815,23853,23856,23904,23952,23962,24035,24076,24079,24087,24093,24215,24217,24223,24423,24457,24563,24626,24627,24673,24699,24723,24773,24783,24790,24812,24816,24911,24912,25041,25203,25222,25291,25310,25366,25398,25424,25605,25753,25787,25834,25841,25891,25896,25934,25949,26030,26040,26064,26067,26070,26071,26074,26075,26148,26170,26182,26188,26194,26217,26240,26241,26244,26246,26253,26255,26277,26292,26297,26298,26301,26305,26308,26311,26320,26327,26335,26336,26345,26357,26362,26364,26392,26393,26395,26396,26397,26399,26402,26403,26404,26405,26409,26410,26419,26423,26426,26430,26431,26435,26439,26449,26479,26488,26490,26491,26492,26495,26498,26499,26506,26511,26515,26548,26550,26565,26606,26626,26627,26629,26630,26637,26644,26645,26648,26649,26656,26663,26671,26672,26674,26678,26679,26680,26682,26684,26687,26688,26689,26695,26696,26700,26704,26709,26713,26715,26718,26719,26725,26730,26733,26742,26743,26752,26753,26759,26763,26768,26770,26771,26773,26775,26778,26781,26782,26783,26784,26790,26791,26793,26805,26806,26811,26820,26822,26823,26831,27123,27148,27221,27226,27232,27279,27280,27312,27387,27395,27403,27526,27546,27563,27567,27572,27648,27651,27652,27655,27677,27703,27707,27712,27723,27725,27732,27735,27740,27790,27814,27816,27821,27832,27833,27838,27916,28100,28105,28108,28111,28115,28116,28158,28207,28210,28222,28228,28264,28291,28317,28340,28358,28375,28397,28411,28414,28416,28448,28457,28479,28497,28499,28515,28546,28555,28566,28597,28623,28727,28728,28729,28786,28823,28826,28834,28972,29012,29018,29033,29035,29037,29038,29069,29100,29101,29143,29164,29172,29173,29205,29252,29273,29336,29425,29434,29453,29488,29490,29588,29711,29723,29820,29871,29876,29897,29951,29957,29968,29990,30035,30163,30238,30390,30496,30646,30659,30705,30706,30708,30714,30739,30740,30755,30765,30783,30982,31055,31059,31088,31093,31096]]],["me",[2,2,[[55,1,1,0,1,[[1129,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[29895,29958]]],["my",[2,2,[[41,1,1,0,1,[[991,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]]],[25754,27461]]],["trust",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29707]]]]},{"k":"G1474","v":[["+",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25775]]]]},{"k":"G1475","v":[["ground",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27711]]]]},{"k":"G1476","v":[["*",[3,3,[[45,2,2,0,2,[[1068,1,1,0,1],[1076,1,1,1,2]]],[50,1,1,2,3,[[1107,1,1,2,3]]]],[28524,28776,29488]]],["settled",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29488]]],["stedfast",[2,2,[[45,2,2,0,2,[[1068,1,1,0,1],[1076,1,1,1,2]]]],[28524,28776]]]]},{"k":"G1477","v":[["ground",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29746]]]]},{"k":"G1478","v":[["Ezekias",[2,2,[[39,2,2,0,2,[[929,2,2,0,2]]]],[23153,23154]]]]},{"k":"G1479","v":[["worship",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29517]]]]},{"k":"G1480","v":[["custom",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25000]]]]},{"k":"G1481","v":[["governor",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29021]]]]},{"k":"G1482","v":[["*",[2,2,[[39,2,2,0,2,[[934,1,1,0,1],[946,1,1,1,2]]]],[23289,23744]]],["heathen",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23289]]],["man",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23744]]]]},{"k":"G1483","v":[["Gentiles",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29095]]]]},{"k":"G1484","v":[["*",[164,152,[[39,15,14,0,14,[[932,1,1,0,1],[934,1,1,1,2],[938,2,2,2,4],[940,2,2,4,6],[948,2,2,6,8],[949,1,1,8,9],[952,4,3,9,12],[953,1,1,12,13],[956,1,1,13,14]]],[40,6,5,14,19,[[966,2,2,14,16],[967,1,1,16,17],[969,3,2,17,19]]],[41,13,10,19,29,[[974,1,1,19,20],[979,1,1,20,21],[984,1,1,21,22],[990,1,1,22,23],[993,6,3,23,26],[994,1,1,26,27],[995,1,1,27,28],[996,1,1,28,29]]],[42,5,5,29,34,[[1007,4,4,29,33],[1014,1,1,33,34]]],[43,44,44,34,78,[[1019,1,1,34,35],[1021,2,2,35,37],[1024,2,2,37,39],[1025,1,1,39,40],[1026,1,1,40,41],[1027,3,3,41,44],[1028,2,2,44,46],[1030,5,5,46,51],[1031,4,4,51,55],[1032,7,7,55,62],[1034,1,1,62,63],[1035,1,1,63,64],[1038,4,4,64,68],[1039,1,1,68,69],[1041,3,3,69,72],[1043,4,4,72,76],[1045,2,2,76,78]]],[44,29,23,78,101,[[1046,2,2,78,80],[1047,2,2,80,82],[1048,2,1,82,83],[1049,2,2,83,85],[1054,2,2,85,87],[1055,2,1,87,88],[1056,5,4,88,92],[1060,10,7,92,99],[1061,2,2,99,101]]],[45,3,3,101,104,[[1066,1,1,101,102],[1071,1,1,102,103],[1073,1,1,103,104]]],[46,1,1,104,105,[[1088,1,1,104,105]]],[47,10,9,105,114,[[1091,1,1,105,106],[1092,6,6,106,112],[1093,3,2,112,114]]],[48,5,5,114,119,[[1098,1,1,114,115],[1099,3,3,115,118],[1100,1,1,118,119]]],[50,1,1,119,120,[[1107,1,1,119,120]]],[51,2,2,120,122,[[1112,1,1,120,121],[1114,1,1,121,122]]],[53,2,2,122,124,[[1120,1,1,122,123],[1121,1,1,123,124]]],[54,2,2,124,126,[[1125,1,1,124,125],[1128,1,1,125,126]]],[59,3,3,126,129,[[1152,2,2,126,128],[1154,1,1,128,129]]],[63,1,1,129,130,[[1165,1,1,129,130]]],[65,22,22,130,152,[[1168,1,1,130,131],[1171,1,1,131,132],[1173,1,1,132,133],[1176,1,1,133,134],[1177,3,3,134,137],[1178,1,1,137,138],[1179,1,1,138,139],[1180,2,2,139,141],[1181,1,1,141,142],[1182,1,1,142,143],[1183,1,1,143,144],[1184,2,2,144,146],[1185,1,1,146,147],[1186,2,2,147,149],[1187,2,2,149,151],[1188,1,1,151,152]]]],[23224,23314,23422,23435,23507,23510,23811,23817,23869,23964,23966,23971,24040,24214,24621,24630,24657,24725,24727,25005,25200,25489,25720,25836,25850,25851,25889,25937,26038,26571,26573,26574,26575,26820,26954,27047,27049,27123,27161,27185,27231,27281,27294,27304,27308,27325,27381,27404,27408,27409,27410,27416,27419,27430,27441,27445,27449,27454,27456,27459,27461,27465,27549,27563,27675,27683,27685,27689,27725,27771,27779,27786,27827,27840,27843,27846,27918,27927,27935,27943,27976,27986,28020,28039,28040,28179,28185,28207,28220,28221,28222,28234,28312,28313,28314,28315,28319,28321,28330,28340,28362,28455,28587,28636,29015,29073,29083,29089,29090,29093,29095,29096,29110,29116,29240,29252,29257,29259,29289,29492,29586,29608,29723,29747,29820,29887,30408,30411,30449,30665,30743,30788,30819,30872,30874,30881,30890,30896,30915,30932,30934,30950,30973,30990,30996,31016,31032,31041,31046,31077,31079,31082]]],["+",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[65,1,1,1,2,[[1180,1,1,1,2]]]],[28321,30934]]],["Gentiles",[92,86,[[39,8,8,0,8,[[932,1,1,0,1],[934,1,1,1,2],[938,2,2,2,4],[940,2,2,4,6],[948,2,2,6,8]]],[40,2,2,8,10,[[966,2,2,8,10]]],[41,5,4,10,14,[[974,1,1,10,11],[990,1,1,11,12],[993,2,1,12,13],[994,1,1,13,14]]],[43,30,30,14,44,[[1021,1,1,14,15],[1024,1,1,15,16],[1026,1,1,16,17],[1027,1,1,17,18],[1028,2,2,18,20],[1030,4,4,20,24],[1031,3,3,24,27],[1032,7,7,27,34],[1035,1,1,34,35],[1038,4,4,35,39],[1039,1,1,39,40],[1043,3,3,40,43],[1045,1,1,43,44]]],[44,22,17,44,61,[[1046,1,1,44,45],[1047,2,2,45,47],[1048,2,1,47,48],[1054,2,2,48,50],[1056,5,4,50,54],[1060,9,6,54,60],[1061,1,1,60,61]]],[45,3,3,61,64,[[1066,1,1,61,62],[1071,1,1,62,63],[1073,1,1,63,64]]],[47,6,6,64,70,[[1092,5,5,64,69],[1093,1,1,69,70]]],[48,5,5,70,75,[[1098,1,1,70,71],[1099,3,3,71,74],[1100,1,1,74,75]]],[50,1,1,75,76,[[1107,1,1,75,76]]],[51,2,2,76,78,[[1112,1,1,76,77],[1114,1,1,77,78]]],[53,2,2,78,80,[[1120,1,1,78,79],[1121,1,1,79,80]]],[54,2,2,80,82,[[1125,1,1,80,81],[1128,1,1,81,82]]],[59,2,2,82,84,[[1152,1,1,82,83],[1154,1,1,83,84]]],[63,1,1,84,85,[[1165,1,1,84,85]]],[65,1,1,85,86,[[1177,1,1,85,86]]]],[23224,23314,23422,23435,23507,23510,23811,23817,24621,24630,25005,25720,25850,25889,27049,27161,27231,27304,27308,27325,27404,27408,27409,27410,27416,27419,27441,27445,27449,27454,27456,27459,27461,27465,27563,27675,27683,27685,27689,27725,27840,27843,27846,27927,27943,27976,27986,28020,28179,28185,28220,28221,28222,28234,28312,28313,28314,28315,28319,28330,28340,28455,28587,28636,29083,29089,29093,29095,29096,29116,29240,29252,29257,29259,29289,29492,29586,29608,29723,29747,29820,29887,30411,30449,30665,30874]]],["Nation",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25836]]],["heathen",[5,5,[[43,1,1,0,1,[[1021,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[47,3,3,2,5,[[1091,1,1,2,3],[1092,1,1,3,4],[1093,1,1,4,5]]]],[27047,29015,29073,29090,29110]]],["nation",[26,24,[[39,3,2,0,2,[[949,1,1,0,1],[952,2,1,1,2]]],[40,2,1,2,3,[[969,2,1,2,3]]],[41,3,3,3,6,[[979,1,1,3,4],[993,1,1,4,5],[995,1,1,5,6]]],[42,5,5,6,11,[[1007,4,4,6,10],[1014,1,1,10,11]]],[43,9,9,11,20,[[1019,1,1,11,12],[1024,1,1,12,13],[1027,2,2,13,15],[1041,3,3,15,18],[1043,1,1,18,19],[1045,1,1,19,20]]],[44,1,1,20,21,[[1055,1,1,20,21]]],[59,1,1,21,22,[[1152,1,1,21,22]]],[65,2,2,22,24,[[1171,1,1,22,23],[1180,1,1,23,24]]]],[23869,23964,24725,25200,25836,25937,26571,26573,26574,26575,26820,26954,27123,27281,27294,27771,27779,27786,27827,27918,28207,30408,30788,30932]]],["nations",[36,36,[[39,4,4,0,4,[[952,2,2,0,2],[953,1,1,2,3],[956,1,1,3,4]]],[40,2,2,4,6,[[967,1,1,4,5],[969,1,1,5,6]]],[41,4,4,6,10,[[984,1,1,6,7],[993,2,2,7,9],[996,1,1,9,10]]],[43,3,3,10,13,[[1030,1,1,10,11],[1031,1,1,11,12],[1034,1,1,12,13]]],[44,4,4,13,17,[[1046,1,1,13,14],[1049,2,2,14,16],[1061,1,1,16,17]]],[47,1,1,17,18,[[1093,1,1,17,18]]],[65,18,18,18,36,[[1168,1,1,18,19],[1173,1,1,19,20],[1176,1,1,20,21],[1177,2,2,21,23],[1178,1,1,23,24],[1179,1,1,24,25],[1181,1,1,25,26],[1182,1,1,26,27],[1183,1,1,27,28],[1184,2,2,28,30],[1185,1,1,30,31],[1186,2,2,31,33],[1187,2,2,33,35],[1188,1,1,35,36]]]],[23966,23971,24040,24214,24657,24727,25489,25850,25851,26038,27381,27430,27549,27935,28039,28040,28362,29110,30743,30819,30872,30881,30890,30896,30915,30950,30973,30990,30996,31016,31032,31041,31046,31077,31079,31082]]],["people",[2,2,[[43,1,1,0,1,[[1025,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]]],[27185,28207]]]]},{"k":"G1485","v":[["*",[12,12,[[41,3,3,0,3,[[973,1,1,0,1],[974,1,1,1,2],[994,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[43,7,7,4,11,[[1023,1,1,4,5],[1032,1,1,5,6],[1033,1,1,6,7],[1038,1,1,7,8],[1042,1,1,8,9],[1043,1,1,9,10],[1045,1,1,10,11]]],[57,1,1,11,12,[[1142,1,1,11,12]]]],[24902,25015,25903,26865,27115,27443,27504,27685,27812,27826,27916,30158]]],["+",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25903]]],["custom",[2,2,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]]],[24902,25015]]],["customs",[5,5,[[43,5,5,0,5,[[1023,1,1,0,1],[1033,1,1,1,2],[1038,1,1,2,3],[1043,1,1,3,4],[1045,1,1,4,5]]]],[27115,27504,27685,27826,27916]]],["manner",[4,4,[[42,1,1,0,1,[[1015,1,1,0,1]]],[43,2,2,1,3,[[1032,1,1,1,2],[1042,1,1,2,3]]],[57,1,1,3,4,[[1142,1,1,3,4]]]],[26865,27443,27812,30158]]]]},{"k":"G1486","v":[["*",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]],[43,1,1,3,4,[[1034,1,1,3,4]]]],[24144,24589,25079,27525]]],["+",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27525]]],["custom",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25079]]],["wont",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]]],[24144,24589]]]]},{"k":"G1487","v":[["*",[323,302,[[39,38,38,0,38,[[932,2,2,0,2],[933,2,2,2,4],[934,2,2,4,6],[935,1,1,6,7],[936,1,1,7,8],[938,1,1,8,9],[939,3,3,9,12],[940,5,5,12,17],[942,1,1,17,18],[945,1,1,18,19],[946,2,2,19,21],[947,4,4,21,25],[948,1,1,25,26],[950,1,1,26,27],[951,1,1,27,28],[952,2,2,28,30],[954,4,4,30,34],[955,4,4,34,38]]],[40,16,15,38,53,[[959,2,2,38,40],[964,1,1,40,41],[965,2,2,41,43],[966,1,1,43,44],[967,3,3,44,47],[969,1,1,47,48],[970,3,3,48,51],[971,3,2,51,53]]],[41,34,34,53,87,[[976,2,2,53,55],[978,2,2,55,57],[979,1,1,57,58],[981,1,1,58,59],[982,1,1,59,60],[983,6,6,60,66],[984,4,4,66,70],[985,1,1,70,71],[986,3,3,71,74],[988,2,2,74,76],[989,2,2,76,78],[991,2,2,78,80],[994,2,2,80,82],[995,5,5,82,87]]],[42,38,36,87,123,[[997,1,1,87,88],[999,1,1,88,89],[1000,1,1,89,90],[1001,2,2,90,92],[1003,2,2,92,94],[1004,4,4,94,98],[1005,2,2,98,100],[1006,4,4,100,104],[1007,3,3,104,107],[1009,3,3,107,110],[1010,2,2,110,112],[1011,6,5,112,117],[1014,5,4,117,121],[1015,1,1,121,122],[1016,1,1,122,123]]],[43,32,30,123,153,[[1018,1,1,123,124],[1021,2,2,124,126],[1022,2,2,126,128],[1024,1,1,128,129],[1025,2,2,129,131],[1027,1,1,131,132],[1028,1,1,132,133],[1030,1,1,133,134],[1033,1,1,134,135],[1034,2,2,135,137],[1035,2,2,137,139],[1036,4,3,139,142],[1037,1,1,142,143],[1038,1,1,143,144],[1039,2,2,144,146],[1040,1,1,146,147],[1042,2,2,147,149],[1043,4,3,149,152],[1044,1,1,152,153]]],[44,34,31,153,184,[[1048,3,3,153,156],[1049,2,2,156,158],[1050,3,3,158,161],[1051,2,2,161,163],[1052,2,2,163,165],[1053,7,6,165,171],[1054,1,1,171,172],[1056,11,9,172,181],[1057,1,1,181,182],[1059,1,1,182,183],[1060,1,1,183,184]]],[45,43,36,184,220,[[1063,1,1,184,185],[1065,2,1,185,186],[1067,1,1,186,187],[1068,6,5,187,192],[1069,3,3,192,195],[1070,6,4,195,199],[1071,2,2,199,201],[1072,5,4,201,205],[1073,3,2,205,207],[1075,3,3,207,210],[1076,11,10,210,220]]],[46,14,14,220,234,[[1079,3,3,220,223],[1080,3,3,223,226],[1081,1,1,226,227],[1082,1,1,227,228],[1085,1,1,228,229],[1088,3,3,229,232],[1090,2,2,232,234]]],[47,15,15,234,249,[[1091,1,1,234,235],[1092,4,4,235,239],[1093,3,3,239,242],[1094,2,2,242,244],[1095,4,4,244,248],[1096,1,1,248,249]]],[49,2,2,249,251,[[1103,1,1,249,250],[1105,1,1,250,251]]],[50,3,3,251,254,[[1108,2,2,251,253],[1109,1,1,253,254]]],[51,1,1,254,255,[[1114,1,1,254,255]]],[52,1,1,255,256,[[1118,1,1,255,256]]],[53,8,4,256,260,[[1121,1,1,256,257],[1123,7,3,257,260]]],[54,4,3,260,263,[[1126,4,3,260,263]]],[56,2,2,263,265,[[1132,2,2,263,265]]],[57,14,14,265,279,[[1134,1,1,265,266],[1135,1,1,266,267],[1136,3,3,267,270],[1139,2,2,270,272],[1140,2,2,272,274],[1141,1,1,274,275],[1143,1,1,275,276],[1144,3,3,276,279]]],[58,6,6,279,285,[[1146,1,1,279,280],[1147,3,3,280,283],[1148,1,1,283,284],[1149,1,1,284,285]]],[59,11,10,285,295,[[1151,2,2,285,287],[1152,3,2,287,289],[1153,2,2,289,291],[1154,4,4,291,295]]],[60,2,2,295,297,[[1157,2,2,295,297]]],[61,5,5,297,302,[[1160,1,1,297,298],[1161,1,1,298,299],[1162,2,2,299,301],[1163,1,1,301,302]]]],[23212,23215,23263,23264,23305,23312,23327,23376,23442,23473,23480,23482,23496,23499,23515,23516,23517,23625,23704,23735,23736,23765,23772,23779,23783,23807,23917,23948,23981,24000,24078,24093,24096,24117,24169,24171,24172,24178,24290,24314,24512,24561,24580,24590,24653,24665,24666,24739,24775,24783,24789,24862,24870,25066,25072,25153,25178,25234,25324,25376,25416,25418,25423,25424,25425,25441,25485,25487,25498,25508,25541,25556,25581,25584,25631,25632,25653,25657,25739,25773,25906,25913,25941,25966,25970,25972,25974,26069,26132,26166,26256,26257,26332,26351,26400,26420,26423,26427,26465,26481,26505,26516,26518,26519,26535,26544,26555,26644,26647,26662,26675,26696,26717,26718,26719,26721,26723,26793,26808,26815,26821,26836,26882,26929,27031,27041,27067,27098,27117,27198,27213,27277,27324,27377,27498,27534,27550,27571,27572,27587,27623,27624,27642,27701,27729,27731,27743,27807,27816,27831,27846,27855,27894,27994,27996,27998,28024,28036,28057,28062,28064,28073,28076,28107,28111,28126,28127,28129,28133,28141,28147,28177,28215,28221,28223,28224,28225,28226,28227,28230,28233,28263,28295,28330,28402,28440,28469,28496,28502,28503,28508,28523,28529,28530,28540,28542,28551,28552,28557,28594,28597,28606,28616,28631,28634,28651,28653,28688,28713,28716,28720,28730,28731,28732,28734,28735,28737,28747,28750,28755,28826,28829,28833,28848,28850,28852,28862,28891,28944,28993,28995,29019,29047,29048,29067,29095,29098,29099,29102,29120,29123,29131,29138,29146,29173,29177,29180,29187,29191,29383,29432,29499,29514,29518,29617,29692,29736,29767,29771,29773,29838,29839,29840,29955,29956,29979,30006,30017,30019,30022,30075,30079,30096,30099,30118,30187,30219,30220,30237,30271,30301,30302,30304,30333,30348,30380,30391,30418,30419,30438,30441,30460,30462,30463,30464,30504,30520,30569,30592,30604,30614,30633]]],["+",[19,19,[[39,3,3,0,3,[[940,1,1,0,1],[947,1,1,1,2],[948,1,1,2,3]]],[40,2,2,3,5,[[966,1,1,3,4],[970,1,1,4,5]]],[41,1,1,5,6,[[986,1,1,5,6]]],[42,1,1,6,7,[[1015,1,1,6,7]]],[43,5,5,7,12,[[1024,1,1,7,8],[1036,1,1,8,9],[1038,1,1,9,10],[1039,2,2,10,12]]],[45,2,2,12,14,[[1075,1,1,12,13],[1076,1,1,13,14]]],[46,3,3,14,17,[[1081,1,1,14,15],[1088,1,1,15,16],[1090,1,1,16,17]]],[50,1,1,17,18,[[1108,1,1,17,18]]],[57,1,1,18,19,[[1139,1,1,18,19]]]],[23499,23765,23807,24590,24783,25556,26836,27117,27623,27701,27729,27731,28688,28755,28862,28995,29047,29499,30075]]],["Forasmuch",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27324]]],["Have",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27587]]],["If",[79,78,[[39,12,12,0,12,[[932,2,2,0,2],[934,1,1,2,3],[935,1,1,3,4],[936,1,1,4,5],[938,1,1,5,6],[947,2,2,6,8],[950,1,1,8,9],[951,1,1,9,10],[955,2,2,10,12]]],[40,1,1,12,13,[[965,1,1,12,13]]],[41,13,13,13,26,[[976,2,2,13,15],[981,1,1,15,16],[983,3,3,16,19],[984,2,2,19,21],[988,1,1,21,22],[989,1,1,22,23],[991,1,1,23,24],[995,2,2,24,26]]],[42,22,22,26,48,[[999,1,1,26,27],[1000,1,1,27,28],[1003,2,2,28,30],[1004,2,2,30,32],[1005,1,1,32,33],[1006,3,3,33,36],[1009,3,3,36,39],[1010,2,2,39,41],[1011,5,5,41,46],[1014,2,2,46,48]]],[43,4,4,48,52,[[1021,1,1,48,49],[1025,1,1,49,50],[1033,1,1,50,51],[1035,1,1,51,52]]],[44,4,4,52,56,[[1052,1,1,52,53],[1053,1,1,53,54],[1056,1,1,54,55],[1057,1,1,55,56]]],[45,8,7,56,63,[[1070,3,3,56,59],[1071,1,1,59,60],[1073,2,1,60,61],[1076,2,2,61,63]]],[46,1,1,63,64,[[1088,1,1,63,64]]],[47,2,2,64,66,[[1092,1,1,64,65],[1095,1,1,65,66]]],[49,1,1,66,67,[[1105,1,1,66,67]]],[50,1,1,67,68,[[1109,1,1,67,68]]],[54,2,2,68,70,[[1126,2,2,68,70]]],[56,2,2,70,72,[[1132,2,2,70,72]]],[57,2,2,72,74,[[1136,1,1,72,73],[1144,1,1,73,74]]],[58,2,2,74,76,[[1146,1,1,74,75],[1147,1,1,75,76]]],[59,1,1,76,77,[[1154,1,1,76,77]]],[61,1,1,77,78,[[1163,1,1,77,78]]]],[23212,23215,23305,23327,23376,23442,23772,23783,23917,23948,24169,24171,24561,25066,25072,25324,25418,25423,25441,25485,25487,25631,25657,25773,25972,25974,26132,26166,26332,26351,26420,26423,26481,26505,26516,26518,26644,26647,26662,26675,26696,26717,26718,26719,26721,26723,26808,26815,27031,27213,27498,27571,28107,28147,28223,28263,28542,28551,28552,28594,28651,28737,28750,29019,29095,29187,29432,29518,29839,29840,29955,29956,30019,30219,30271,30301,30460,30633]]],["That",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27846]]],["There",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24512]]],["They",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30006]]],["Whether",[2,2,[[42,1,1,0,1,[[1005,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]]],[26465,27041]]],["are",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25541]]],["if",[189,178,[[39,21,21,0,21,[[933,2,2,0,2],[934,1,1,2,3],[939,3,3,3,6],[940,4,4,6,10],[942,1,1,10,11],[945,1,1,11,12],[946,2,2,12,14],[947,1,1,14,15],[952,2,2,15,17],[954,3,3,17,20],[955,1,1,20,21]]],[40,8,8,21,29,[[959,1,1,21,22],[967,3,3,22,25],[969,1,1,25,26],[970,2,2,26,28],[971,1,1,28,29]]],[41,13,13,29,42,[[978,1,1,29,30],[979,1,1,30,31],[982,1,1,31,32],[983,3,3,32,35],[984,2,2,35,37],[988,1,1,37,38],[991,1,1,38,39],[994,1,1,39,40],[995,2,2,40,42]]],[42,13,13,42,55,[[997,1,1,42,43],[1001,1,1,43,44],[1004,2,2,44,46],[1006,1,1,46,47],[1007,3,3,47,50],[1011,1,1,50,51],[1014,3,3,51,54],[1016,1,1,54,55]]],[43,11,11,55,66,[[1022,1,1,55,56],[1025,1,1,56,57],[1030,1,1,57,58],[1034,1,1,58,59],[1035,1,1,59,60],[1036,1,1,60,61],[1037,1,1,61,62],[1040,1,1,62,63],[1042,1,1,63,64],[1043,1,1,64,65],[1044,1,1,65,66]]],[44,30,27,66,93,[[1048,3,3,66,69],[1049,2,2,69,71],[1050,3,3,71,74],[1051,2,2,74,76],[1052,1,1,76,77],[1053,6,5,77,82],[1054,1,1,82,83],[1056,10,8,83,91],[1059,1,1,91,92],[1060,1,1,92,93]]],[45,30,27,93,120,[[1065,2,1,93,94],[1067,1,1,94,95],[1068,4,4,95,99],[1069,3,3,99,102],[1070,3,2,102,104],[1071,1,1,104,105],[1072,5,4,105,109],[1073,1,1,109,110],[1075,2,2,110,112],[1076,8,8,112,120]]],[46,8,8,120,128,[[1079,2,2,120,122],[1080,3,3,122,125],[1082,1,1,125,126],[1085,1,1,126,127],[1088,1,1,127,128]]],[47,13,13,128,141,[[1091,1,1,128,129],[1092,3,3,129,132],[1093,3,3,132,135],[1094,2,2,135,137],[1095,3,3,137,140],[1096,1,1,140,141]]],[49,1,1,141,142,[[1103,1,1,141,142]]],[50,1,1,142,143,[[1108,1,1,142,143]]],[51,1,1,143,144,[[1114,1,1,143,144]]],[52,1,1,144,145,[[1118,1,1,144,145]]],[53,8,4,145,149,[[1121,1,1,145,146],[1123,7,3,146,149]]],[54,2,2,149,151,[[1126,2,2,149,151]]],[57,9,9,151,160,[[1134,1,1,151,152],[1136,2,2,152,154],[1140,2,2,154,156],[1141,1,1,156,157],[1143,1,1,157,158],[1144,2,2,158,160]]],[58,4,4,160,164,[[1147,2,2,160,162],[1148,1,1,162,163],[1149,1,1,163,164]]],[59,10,9,164,173,[[1151,2,2,164,166],[1152,3,2,166,168],[1153,2,2,168,170],[1154,3,3,170,173]]],[60,2,2,173,175,[[1157,2,2,173,175]]],[61,3,3,175,178,[[1160,1,1,175,176],[1161,1,1,176,177],[1162,1,1,177,178]]]],[23263,23264,23312,23473,23480,23482,23496,23515,23516,23517,23625,23704,23735,23736,23779,23981,24000,24078,24093,24096,24172,24314,24653,24665,24666,24739,24775,24789,24870,25178,25234,25376,25416,25424,25425,25498,25508,25632,25739,25906,25966,25970,26069,26257,26400,26427,26519,26535,26544,26555,26719,26793,26808,26821,26882,27098,27198,27377,27550,27572,27624,27642,27743,27807,27855,27894,27994,27996,27998,28024,28036,28057,28062,28064,28073,28076,28111,28126,28127,28129,28133,28141,28177,28215,28221,28224,28225,28226,28227,28230,28233,28295,28330,28440,28469,28496,28502,28508,28523,28529,28530,28540,28551,28557,28597,28606,28616,28631,28634,28653,28713,28716,28720,28730,28731,28732,28734,28735,28747,28750,28826,28829,28848,28850,28852,28891,28944,28993,29067,29098,29099,29102,29120,29123,29131,29138,29146,29173,29177,29180,29191,29383,29514,29617,29692,29736,29767,29771,29773,29838,29839,29979,30017,30022,30096,30099,30118,30187,30220,30237,30302,30304,30333,30348,30380,30391,30418,30419,30438,30441,30462,30463,30464,30504,30520,30569,30592,30614]]],["that",[5,5,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]],[43,2,2,2,4,[[1043,2,2,2,4]]],[57,1,1,4,5,[[1139,1,1,4,5]]]],[24580,25653,27831,27846,30079]]],["they",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28402]]],["thou",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26929]]],["we",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25913]]],["whether",[19,18,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,3,3,2,5,[[959,1,1,2,3],[971,2,2,3,5]]],[41,4,4,5,9,[[978,1,1,5,6],[986,2,2,6,8],[995,1,1,8,9]]],[43,5,5,9,14,[[1022,1,1,9,10],[1027,1,1,10,11],[1034,1,1,11,12],[1036,1,1,12,13],[1042,1,1,13,14]]],[45,2,1,14,15,[[1068,2,1,14,15]]],[46,2,2,15,17,[[1079,1,1,15,16],[1090,1,1,16,17]]],[61,1,1,17,18,[[1162,1,1,17,18]]]],[24117,24178,24290,24862,24870,25153,25581,25584,25941,27067,27277,27534,27587,27816,28503,28833,29048,30604]]],["ye",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26256]]]]},{"k":"G1488","v":[["*",[92,89,[[39,17,17,0,17,[[930,1,1,0,1],[932,2,2,1,3],[933,1,1,3,4],[939,1,1,4,5],[942,2,2,5,7],[944,4,4,7,11],[950,1,1,11,12],[953,1,1,12,13],[954,2,2,13,15],[955,2,2,15,17]]],[40,10,9,17,26,[[957,2,2,17,19],[959,1,1,19,20],[964,1,1,20,21],[968,2,2,21,23],[970,3,2,23,25],[971,1,1,25,26]]],[41,16,16,26,42,[[975,1,1,26,27],[976,4,4,27,31],[979,2,2,31,33],[987,1,1,33,34],[991,1,1,34,35],[994,3,3,35,38],[995,4,4,38,42]]],[42,26,24,42,66,[[997,8,6,42,48],[999,1,1,48,49],[1000,2,2,49,51],[1002,1,1,51,52],[1003,1,1,52,53],[1004,3,3,53,56],[1005,1,1,56,57],[1006,1,1,57,58],[1007,1,1,58,59],[1014,4,4,59,63],[1015,2,2,63,65],[1017,1,1,65,66]]],[43,6,6,66,72,[[1026,1,1,66,67],[1030,1,1,67,68],[1038,1,1,68,69],[1039,2,2,69,71],[1043,1,1,71,72]]],[44,3,3,72,75,[[1047,1,1,72,73],[1054,1,1,73,74],[1059,1,1,74,75]]],[47,1,1,75,76,[[1094,1,1,75,76]]],[57,3,3,76,79,[[1133,2,2,76,78],[1137,1,1,78,79]]],[58,2,2,79,81,[[1149,2,2,79,81]]],[65,8,8,81,89,[[1168,1,1,81,82],[1169,4,4,82,86],[1170,1,1,86,87],[1171,1,1,87,88],[1182,1,1,88,89]]]],[23175,23212,23215,23259,23462,23625,23630,23688,23689,23690,23695,23888,24032,24117,24127,24140,24169,24226,24239,24299,24529,24687,24707,24815,24824,24828,25047,25066,25072,25097,25104,25214,25215,25619,25752,25922,25931,25934,25938,25972,25974,25975,26063,26065,26066,26069,26086,26093,26130,26168,26175,26326,26380,26406,26429,26434,26468,26505,26550,26802,26810,26818,26822,26834,26837,26910,27221,27395,27702,27712,27731,27838,27963,28175,28284,29138,29968,29975,30035,30348,30349,30726,30747,30761,30762,30763,30779,30788,30959]]],["+",[2,2,[[42,2,2,0,2,[[1003,1,1,0,1],[1004,1,1,1,2]]]],[26380,26434]]],["Art",[18,17,[[39,2,2,0,2,[[939,1,1,0,1],[955,1,1,1,2]]],[40,2,2,2,4,[[970,1,1,2,3],[971,1,1,3,4]]],[41,5,5,4,9,[[979,2,2,4,6],[994,2,2,6,8],[995,1,1,8,9]]],[42,8,7,9,16,[[997,2,1,9,10],[999,1,1,10,11],[1000,1,1,11,12],[1014,4,4,12,16]]],[43,1,1,16,17,[[1038,1,1,16,17]]]],[23462,24140,24815,24828,25214,25215,25931,25934,25938,26065,26130,26168,26802,26810,26818,26822,27702]]],["art",[61,59,[[39,10,10,0,10,[[930,1,1,0,1],[933,1,1,1,2],[942,1,1,2,3],[944,4,4,3,7],[950,1,1,7,8],[953,1,1,8,9],[954,1,1,9,10]]],[40,8,7,10,17,[[957,2,2,10,12],[959,1,1,12,13],[964,1,1,13,14],[968,2,2,14,16],[970,2,1,16,17]]],[41,7,7,17,24,[[975,1,1,17,18],[976,2,2,18,20],[987,1,1,20,21],[991,1,1,21,22],[994,1,1,22,23],[995,1,1,23,24]]],[42,14,13,24,37,[[997,5,4,24,28],[1000,1,1,28,29],[1002,1,1,29,30],[1004,2,2,30,32],[1005,1,1,32,33],[1007,1,1,33,34],[1015,2,2,34,36],[1017,1,1,36,37]]],[43,5,5,37,42,[[1026,1,1,37,38],[1030,1,1,38,39],[1039,2,2,39,41],[1043,1,1,41,42]]],[44,3,3,42,45,[[1047,1,1,42,43],[1054,1,1,43,44],[1059,1,1,44,45]]],[47,1,1,45,46,[[1094,1,1,45,46]]],[57,3,3,46,49,[[1133,2,2,46,48],[1137,1,1,48,49]]],[58,2,2,49,51,[[1149,2,2,49,51]]],[65,8,8,51,59,[[1168,1,1,51,52],[1169,4,4,52,56],[1170,1,1,56,57],[1171,1,1,57,58],[1182,1,1,58,59]]]],[23175,23259,23630,23688,23689,23690,23695,23888,24032,24127,24226,24239,24299,24529,24687,24707,24824,25047,25097,25104,25619,25752,25922,25975,26063,26066,26086,26093,26175,26326,26406,26429,26468,26550,26834,26837,26910,27221,27395,27712,27731,27838,27963,28175,28284,29138,29968,29975,30035,30348,30349,30726,30747,30761,30762,30763,30779,30788,30959]]],["be",[11,11,[[39,5,5,0,5,[[932,2,2,0,2],[942,1,1,2,3],[954,1,1,3,4],[955,1,1,4,5]]],[41,4,4,5,9,[[976,2,2,5,7],[995,2,2,7,9]]],[42,2,2,9,11,[[997,1,1,9,10],[1006,1,1,10,11]]]],[23212,23215,23625,24117,24169,25066,25072,25972,25974,26069,26505]]]]},{"k":"G1489","v":[["*",[5,5,[[46,1,1,0,1,[[1082,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]],[48,2,2,2,4,[[1099,1,1,2,3],[1100,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]]],[28880,29106,29253,29293,29488]]],["If",[2,2,[[48,1,1,0,1,[[1099,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[29253,29488]]],["be",[2,2,[[46,1,1,0,1,[[1082,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[28880,29293]]],["if",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29106]]]]},{"k":"G1490","v":[["*",[15,14,[[39,2,2,0,2,[[934,1,1,0,1],[937,1,1,1,2]]],[40,2,2,2,4,[[958,2,2,2,4]]],[41,5,5,4,9,[[977,2,2,4,6],[982,1,1,6,7],[985,1,1,7,8],[986,1,1,8,9]]],[42,2,2,9,11,[[1010,2,2,9,11]]],[46,2,1,11,12,[[1088,2,1,11,12]]],[65,2,2,12,14,[[1168,2,2,12,14]]]],[23283,23396,24281,24282,25143,25144,25369,25527,25585,26670,26679,29005,30722,30733]]],["+",[2,1,[[46,2,1,0,1,[[1088,2,1,0,1]]]],[29005]]],["else",[8,8,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,2,2,1,3,[[958,2,2,1,3]]],[41,2,2,3,5,[[977,1,1,3,4],[986,1,1,4,5]]],[42,1,1,5,6,[[1010,1,1,5,6]]],[65,2,2,6,8,[[1168,2,2,6,8]]]],[23396,24281,24282,25144,25585,26679,30722,30733]]],["not",[3,3,[[41,2,2,0,2,[[982,1,1,0,1],[985,1,1,1,2]]],[42,1,1,2,3,[[1010,1,1,2,3]]]],[25369,25527,26670]]],["otherwise",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]]],[23283,25143]]]]},{"k":"G1491","v":[["*",[6,6,[[41,2,2,0,2,[[975,1,1,0,1],[981,1,1,1,2]]],[42,2,2,2,4,[[1001,1,1,2,3],[1016,1,1,3,4]]],[46,1,1,4,5,[[1082,1,1,4,5]]],[51,1,1,5,6,[[1115,1,1,5,6]]]],[25047,25330,26247,26875,28884,29643]]],["appearance",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29643]]],["fashion",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25330]]],["saw",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26875]]],["shape",[2,2,[[41,1,1,0,1,[[975,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]]],[25047,26247]]],["sight",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28884]]]]},{"k":"G1492","v":[["*",[664,625,[[39,83,82,0,82,[[930,5,5,0,5],[931,2,2,5,7],[932,3,3,7,10],[933,2,2,10,12],[934,2,2,12,14],[935,1,1,14,15],[936,3,3,15,18],[937,9,9,18,27],[939,2,2,27,29],[940,3,3,29,32],[941,4,3,32,35],[942,2,2,35,37],[943,1,1,37,38],[944,1,1,38,39],[945,1,1,39,40],[946,1,1,40,41],[948,3,3,41,44],[949,6,6,44,50],[950,3,3,50,53],[951,1,1,53,54],[952,5,5,54,59],[953,7,7,59,66],[954,7,7,66,73],[955,6,6,73,79],[956,3,3,79,82]]],[40,64,63,82,145,[[957,5,5,82,87],[958,5,5,87,92],[960,3,3,92,95],[961,6,6,95,101],[962,7,7,101,108],[963,1,1,108,109],[964,1,1,109,110],[965,9,9,110,119],[966,4,4,119,123],[967,3,3,123,126],[968,6,5,126,131],[969,5,5,131,136],[970,5,5,136,141],[971,3,3,141,144],[972,1,1,144,145]]],[41,95,90,145,235,[[973,2,2,145,147],[974,8,7,147,154],[976,2,2,154,156],[977,6,6,156,162],[978,1,1,162,163],[979,5,5,163,168],[980,7,7,168,175],[981,8,8,175,183],[982,5,4,183,187],[983,4,4,187,191],[984,4,4,191,195],[985,4,4,195,199],[986,1,1,199,200],[987,1,1,200,201],[989,3,3,201,204],[990,4,4,204,208],[991,7,7,208,215],[992,4,4,215,219],[993,5,5,219,224],[994,6,6,224,230],[995,5,3,230,233],[996,3,2,233,235]]],[42,122,104,235,339,[[997,10,8,235,243],[998,2,1,243,244],[999,4,4,244,248],[1000,8,7,248,255],[1001,3,3,255,258],[1002,9,9,258,267],[1003,7,5,267,272],[1004,11,5,272,277],[1005,12,9,277,286],[1006,2,2,286,288],[1007,8,8,288,296],[1008,6,6,296,302],[1009,6,6,302,308],[1010,4,2,308,310],[1011,2,2,310,312],[1012,3,2,312,314],[1014,4,4,314,318],[1015,6,6,318,324],[1016,8,8,324,332],[1017,7,7,332,339]]],[43,68,67,339,406,[[1019,4,4,339,343],[1020,5,5,343,348],[1021,1,1,348,349],[1022,1,1,349,350],[1023,1,1,350,351],[1024,7,6,351,357],[1025,1,1,357,358],[1026,4,4,358,362],[1027,3,3,362,365],[1028,4,4,365,369],[1029,4,4,369,373],[1030,6,6,373,379],[1031,2,2,379,381],[1032,1,1,381,382],[1033,5,5,382,387],[1036,2,2,387,389],[1037,3,3,389,392],[1038,1,1,392,393],[1039,2,2,393,395],[1040,1,1,395,396],[1041,1,1,396,397],[1043,4,4,397,401],[1045,5,5,401,406]]],[44,18,18,406,424,[[1046,1,1,406,407],[1047,1,1,407,408],[1048,1,1,408,409],[1050,1,1,409,410],[1051,2,2,410,412],[1052,3,3,412,415],[1053,4,4,415,419],[1056,2,2,419,421],[1058,1,1,421,422],[1059,1,1,422,423],[1060,1,1,423,424]]],[45,30,28,424,452,[[1062,1,1,424,425],[1063,5,4,425,429],[1064,1,1,429,430],[1066,1,1,430,431],[1067,6,6,431,437],[1068,2,1,437,438],[1069,4,4,438,442],[1070,2,2,442,444],[1072,1,1,444,445],[1073,1,1,445,446],[1074,1,1,446,447],[1075,2,2,447,449],[1076,1,1,449,450],[1077,2,2,450,452]]],[46,16,11,452,463,[[1078,1,1,452,453],[1081,1,1,453,454],[1082,4,4,454,458],[1086,1,1,458,459],[1088,2,2,459,461],[1089,7,2,461,463]]],[47,7,7,463,470,[[1091,1,1,463,464],[1092,3,3,464,467],[1094,2,2,467,469],[1096,1,1,469,470]]],[48,4,4,470,474,[[1097,1,1,470,471],[1102,3,3,471,474]]],[49,10,9,474,483,[[1103,5,5,474,479],[1104,1,1,479,480],[1106,4,3,480,483]]],[50,4,4,483,487,[[1108,1,1,483,484],[1109,1,1,484,485],[1110,2,2,485,487]]],[51,16,16,487,503,[[1111,2,2,487,489],[1112,5,5,489,494],[1113,4,4,494,498],[1114,3,3,498,501],[1115,2,2,501,503]]],[52,3,3,503,506,[[1116,1,1,503,504],[1117,1,1,504,505],[1118,1,1,505,506]]],[53,6,5,506,511,[[1119,2,2,506,508],[1121,2,2,508,510],[1124,2,1,510,511]]],[54,6,6,511,517,[[1125,3,3,511,514],[1126,1,1,514,515],[1127,2,2,515,517]]],[55,2,2,517,519,[[1129,1,1,517,518],[1131,1,1,518,519]]],[56,1,1,519,520,[[1132,1,1,519,520]]],[57,6,6,520,526,[[1135,1,1,520,521],[1140,1,1,521,522],[1142,1,1,522,523],[1143,3,3,523,526]]],[58,4,4,526,530,[[1148,1,1,526,527],[1149,2,2,527,529],[1150,1,1,529,530]]],[59,5,5,530,535,[[1151,2,2,530,532],[1153,2,2,532,534],[1155,1,1,534,535]]],[60,3,3,535,538,[[1156,2,2,535,537],[1157,1,1,537,538]]],[61,17,15,538,553,[[1160,5,4,538,542],[1161,5,5,542,547],[1163,7,6,547,553]]],[63,2,2,553,555,[[1165,2,2,553,555]]],[64,2,2,555,557,[[1166,2,2,555,557]]],[65,70,68,557,625,[[1167,6,5,557,562],[1168,4,4,562,566],[1169,4,4,566,570],[1170,2,2,570,572],[1171,4,4,572,576],[1172,6,6,576,582],[1173,4,4,582,586],[1174,2,2,586,588],[1175,2,2,588,590],[1176,2,2,590,592],[1178,2,2,592,594],[1179,4,4,594,598],[1180,3,3,598,601],[1181,3,3,601,604],[1182,1,1,604,605],[1183,8,7,605,612],[1184,2,2,612,614],[1185,4,4,614,618],[1186,4,4,618,622],[1187,3,3,622,625]]]],[23171,23178,23179,23180,23185,23199,23208,23225,23227,23230,23235,23250,23290,23314,23327,23359,23363,23379,23381,23383,23385,23387,23388,23390,23401,23402,23415,23467,23468,23491,23514,23527,23553,23554,23556,23611,23623,23645,23700,23708,23758,23795,23814,23817,23841,23845,23846,23853,23858,23864,23883,23888,23901,23957,23972,23990,23993,23999,24000,24020,24021,24034,24045,24046,24047,24052,24056,24062,24112,24124,24125,24126,24128,24132,24147,24153,24178,24183,24194,24200,24201,24212,24225,24231,24234,24239,24249,24265,24270,24272,24274,24276,24335,24336,24350,24370,24378,24380,24386,24396,24397,24427,24440,24441,24445,24455,24456,24457,24465,24533,24539,24544,24546,24547,24552,24553,24558,24563,24576,24602,24607,24626,24630,24653,24660,24673,24687,24688,24697,24701,24707,24731,24746,24749,24750,24752,24794,24821,24822,24823,24825,24858,24862,24865,24878,24905,24922,24988,24990,24993,24999,25003,25021,25022,25097,25104,25109,25115,25119,25127,25131,25133,25154,25208,25217,25220,25221,25234,25265,25273,25279,25280,25281,25292,25298,25310,25328,25333,25334,25348,25350,25355,25356,25387,25394,25395,25396,25418,25422,25443,25449,25489,25498,25513,25515,25530,25543,25545,25553,25571,25608,25665,25666,25673,25703,25708,25712,25731,25734,25735,25736,25738,25753,25768,25772,25786,25792,25793,25800,25827,25828,25846,25855,25857,25898,25913,25920,25921,25922,25924,25943,25969,25982,26015,26030,26070,26075,26077,26083,26090,26091,26092,26094,26104,26122,26123,26128,26131,26166,26178,26181,26185,26188,26198,26204,26216,26223,26242,26263,26271,26279,26281,26283,26287,26299,26318,26321,26343,26355,26356,26357,26380,26395,26400,26418,26436,26437,26441,26452,26460,26461,26464,26465,26469,26470,26471,26485,26486,26545,26547,26554,26555,26556,26557,26565,26572,26589,26601,26615,26620,26621,26630,26631,26633,26637,26641,26647,26648,26672,26673,26714,26720,26744,26756,26787,26789,26806,26811,26831,26835,26851,26853,26858,26860,26869,26876,26880,26881,26887,26892,26894,26896,26902,26910,26913,26914,26915,26919,26922,26971,26976,26979,26980,26999,27005,27008,27012,27013,27042,27066,27116,27134,27140,27147,27150,27156,27171,27215,27228,27243,27251,27256,27262,27276,27296,27312,27313,27320,27330,27340,27346,27348,27353,27374,27397,27398,27399,27403,27407,27423,27425,27448,27486,27493,27502,27510,27523,27606,27617,27648,27651,27655,27696,27718,27722,27739,27791,27826,27836,27839,27850,27903,27914,27919,27925,27926,27941,27964,28010,28050,28077,28084,28098,28105,28109,28138,28142,28143,28144,28211,28231,28277,28294,28332,28379,28396,28403,28405,28406,28426,28460,28469,28470,28476,28482,28483,28486,28503,28528,28529,28531,28537,28553,28564,28603,28636,28667,28689,28694,28776,28783,28791,28807,28873,28878,28883,28888,28893,28958,29000,29020,29024,29025,29076,29088,29095,29097,29139,29144,29199,29224,29345,29346,29358,29378,29380,29386,29388,29391,29419,29451,29454,29457,29495,29541,29543,29548,29564,29565,29571,29572,29575,29581,29587,29593,29594,29596,29600,29605,29607,29608,29623,29633,29657,29667,29685,29704,29705,29736,29746,29804,29813,29821,29824,29850,29867,29868,29908,29934,29959,30004,30103,30163,30177,30185,30195,30320,30341,30354,30365,30382,30392,30433,30434,30474,30491,30493,30509,30561,30570,30571,30579,30580,30581,30584,30593,30594,30637,30639,30640,30642,30643,30644,30670,30672,30677,30682,30699,30709,30714,30716,30717,30719,30726,30730,30736,30747,30754,30761,30763,30769,30772,30780,30781,30785,30790,30794,30795,30798,30801,30802,30805,30811,30812,30819,30824,30829,30840,30841,30857,30862,30866,30903,30904,30909,30910,30911,30919,30927,30932,30940,30947,30948,30951,30967,30978,30981,30983,30987,30990,30991,30993,30994,31000,31028,31029,31034,31036,31039,31042,31049,31050,31054,31055,31075]]],["+",[16,15,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,2,2,2,4,[[980,1,1,2,3],[983,1,1,3,4]]],[42,8,8,4,12,[[999,1,1,4,5],[1003,1,1,5,6],[1004,2,2,6,8],[1007,1,1,8,9],[1012,1,1,9,10],[1016,2,2,10,12]]],[43,1,1,12,13,[[1041,1,1,12,13]]],[46,3,2,13,15,[[1089,3,2,13,15]]]],[23853,24673,25281,25449,26128,26356,26395,26400,26572,26744,26876,26896,27791,29024,29025]]],["Behold",[5,5,[[41,2,2,0,2,[[993,1,1,0,1],[996,1,1,1,2]]],[43,1,1,2,3,[[1030,1,1,2,3]]],[44,1,1,3,4,[[1056,1,1,3,4]]],[61,1,1,4,5,[[1161,1,1,4,5]]]],[25855,26030,27403,28231,30580]]],["I",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27836]]],["Know",[8,8,[[40,1,1,0,1,[[960,1,1,0,1]]],[44,1,1,1,2,[[1051,1,1,1,2]]],[45,6,6,2,8,[[1064,1,1,2,3],[1066,1,1,3,4],[1067,3,3,4,7],[1070,1,1,7,8]]]],[24336,28084,28426,28460,28470,28476,28482,28564]]],["Knowest",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23645]]],["Knowing",[10,10,[[44,1,1,0,1,[[1051,1,1,0,1]]],[46,2,2,1,3,[[1081,1,1,1,2],[1082,1,1,2,3]]],[47,1,1,3,4,[[1092,1,1,3,4]]],[48,1,1,4,5,[[1102,1,1,4,5]]],[50,1,1,5,6,[[1109,1,1,5,6]]],[51,1,1,6,7,[[1111,1,1,6,7]]],[53,1,1,7,8,[[1119,1,1,7,8]]],[55,1,1,8,9,[[1131,1,1,8,9]]],[60,1,1,9,10,[[1156,1,1,9,10]]]],[28077,28873,28888,29097,29345,29541,29564,29705,29934,30493]]],["Wot",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28211]]],["beheld",[10,10,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,2,2,1,3,[[991,1,1,1,2],[994,1,1,2,3]]],[65,7,7,3,10,[[1171,2,2,3,5],[1172,2,2,5,7],[1173,1,1,7,8],[1174,1,1,8,9],[1179,1,1,9,10]]]],[24553,25772,25920,30785,30790,30798,30805,30819,30840,30919]]],["behold",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26894]]],["can",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[24194,25515]]],["consider",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27448]]],["knew",[27,26,[[39,2,2,0,2,[[940,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,2,2,3,5,[[976,1,1,3,4],[978,1,1,4,5]]],[42,13,12,5,17,[[997,2,2,5,7],[998,2,1,7,8],[1002,3,3,8,11],[1007,1,1,11,12],[1009,2,2,12,14],[1014,1,1,14,15],[1016,1,1,15,16],[1017,1,1,16,17]]],[43,3,3,17,20,[[1024,1,1,17,18],[1033,1,1,18,19],[1036,1,1,19,20]]],[46,2,2,20,22,[[1089,2,2,20,22]]],[47,1,1,22,23,[[1094,1,1,22,23]]],[50,1,1,23,24,[[1108,1,1,23,24]]],[64,1,1,24,25,[[1166,1,1,24,25]]],[65,1,1,25,26,[[1185,1,1,25,26]]]],[23514,24147,24249,25104,25154,26075,26077,26104,26263,26318,26321,26565,26631,26641,26787,26881,26902,27134,27486,27617,29024,29025,29139,29495,30677,31029]]],["knewest",[3,3,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,1,1,1,2,[[991,1,1,1,2]]],[42,1,1,2,3,[[1000,1,1,2,3]]]],[24034,25753,26166]]],["know",[169,157,[[39,13,13,0,13,[[935,1,1,0,1],[937,1,1,1,2],[948,2,2,2,4],[950,1,1,4,5],[952,1,1,5,6],[953,2,2,6,8],[954,4,4,8,12],[956,1,1,12,13]]],[40,10,10,13,23,[[957,1,1,13,14],[958,1,1,14,15],[966,2,2,15,17],[968,2,2,17,19],[969,2,2,19,21],[970,2,2,21,23]]],[41,10,10,23,33,[[976,1,1,23,24],[977,1,1,24,25],[981,1,1,25,26],[983,1,1,26,27],[985,2,2,27,29],[992,1,1,29,30],[994,2,2,30,32],[995,1,1,32,33]]],[42,47,38,33,71,[[997,1,1,33,34],[999,2,2,34,36],[1000,5,4,36,40],[1001,1,1,40,41],[1002,1,1,41,42],[1003,4,3,42,45],[1004,6,4,45,49],[1005,11,8,49,57],[1006,2,2,57,59],[1007,2,2,59,61],[1008,1,1,61,62],[1009,2,2,62,64],[1010,4,2,64,66],[1011,1,1,66,67],[1014,1,1,67,68],[1016,2,2,68,70],[1017,1,1,70,71]]],[43,8,8,71,79,[[1019,1,1,71,72],[1020,1,1,72,73],[1027,1,1,73,74],[1029,1,1,74,75],[1037,2,2,75,77],[1043,2,2,77,79]]],[44,7,7,79,86,[[1048,1,1,79,80],[1052,2,2,80,82],[1053,3,3,82,85],[1059,1,1,85,86]]],[45,14,14,86,100,[[1062,1,1,86,87],[1063,2,2,87,89],[1067,3,3,89,92],[1069,2,2,92,94],[1070,1,1,94,95],[1072,1,1,95,96],[1073,1,1,96,97],[1075,1,1,97,98],[1076,1,1,98,99],[1077,1,1,99,100]]],[46,3,3,100,103,[[1082,2,2,100,102],[1086,1,1,102,103]]],[47,1,1,103,104,[[1094,1,1,103,104]]],[48,2,2,104,106,[[1097,1,1,104,105],[1102,1,1,105,106]]],[49,5,4,106,110,[[1103,2,2,106,108],[1106,3,2,108,110]]],[50,1,1,110,111,[[1110,1,1,110,111]]],[51,12,12,111,123,[[1111,1,1,111,112],[1112,4,4,112,116],[1113,2,2,116,118],[1114,3,3,118,121],[1115,2,2,121,123]]],[52,3,3,123,126,[[1116,1,1,123,124],[1117,1,1,124,125],[1118,1,1,125,126]]],[53,3,3,126,129,[[1119,1,1,126,127],[1121,2,2,127,129]]],[54,1,1,129,130,[[1125,1,1,129,130]]],[55,1,1,130,131,[[1129,1,1,130,131]]],[57,2,2,131,133,[[1140,1,1,131,132],[1142,1,1,132,133]]],[58,1,1,133,134,[[1149,1,1,133,134]]],[59,1,1,134,135,[[1151,1,1,134,135]]],[60,1,1,135,136,[[1156,1,1,135,136]]],[61,14,12,136,148,[[1160,4,3,136,139],[1161,4,4,139,143],[1163,6,5,143,148]]],[63,1,1,148,149,[[1165,1,1,148,149]]],[64,1,1,149,150,[[1166,1,1,149,150]]],[65,7,7,150,157,[[1168,4,4,150,154],[1169,3,3,154,157]]]],[23327,23385,23814,23817,23888,23999,24020,24021,24056,24124,24126,24128,24200,24239,24270,24626,24630,24687,24697,24750,24752,24822,24825,25097,25131,25356,25418,25543,25545,25800,25921,25924,25969,26070,26122,26131,26178,26181,26188,26198,26242,26299,26355,26356,26357,26395,26400,26418,26436,26452,26460,26461,26464,26465,26469,26470,26471,26485,26486,26545,26547,26630,26647,26648,26672,26673,26720,26806,26869,26880,26922,26971,27012,27296,27348,27651,27655,27826,27850,28010,28105,28109,28138,28142,28144,28294,28379,28396,28406,28469,28483,28486,28528,28531,28553,28603,28636,28689,28776,28791,28878,28893,28958,29144,29224,29358,29380,29386,29454,29457,29548,29565,29571,29572,29575,29581,29593,29594,29605,29607,29608,29623,29633,29657,29667,29685,29704,29736,29746,29821,29908,30103,30163,30341,30392,30491,30570,30571,30579,30581,30584,30593,30594,30637,30639,30642,30643,30644,30670,30682,30719,30726,30730,30736,30747,30754,30761]]],["knowest",[14,13,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,2,2,1,3,[[990,1,1,1,2],[994,1,1,2,3]]],[42,6,6,3,9,[[1009,1,1,3,4],[1012,1,1,4,5],[1015,1,1,5,6],[1017,3,3,6,9]]],[45,2,1,9,10,[[1068,2,1,9,10]]],[54,1,1,10,11,[[1125,1,1,10,11]]],[65,2,2,11,13,[[1169,1,1,11,12],[1173,1,1,12,13]]]],[24607,25708,25898,26637,26756,26835,26913,26914,26915,28503,29824,30763,30824]]],["knoweth",[22,21,[[39,3,3,0,3,[[934,2,2,0,2],[952,1,1,2,3]]],[40,2,2,3,5,[[960,1,1,3,4],[969,1,1,4,5]]],[41,1,1,5,6,[[984,1,1,5,6]]],[42,4,4,6,10,[[1003,1,1,6,7],[1008,1,1,7,8],[1011,1,1,8,9],[1015,1,1,9,10]]],[44,1,1,10,11,[[1053,1,1,10,11]]],[45,3,2,11,13,[[1063,2,1,11,12],[1069,1,1,12,13]]],[46,4,4,13,17,[[1088,2,2,13,15],[1089,2,2,15,17]]],[58,1,1,17,18,[[1149,1,1,17,18]]],[60,1,1,18,19,[[1157,1,1,18,19]]],[61,1,1,19,20,[[1160,1,1,19,20]]],[65,1,1,20,21,[[1178,1,1,20,21]]]],[23290,23314,23993,24350,24749,25489,26343,26615,26714,26860,28143,28405,28529,29000,29020,29024,29025,30354,30509,30561,30903]]],["knowing",[28,28,[[39,2,2,0,2,[[937,1,1,0,1],[950,1,1,1,2]]],[40,3,3,2,5,[[961,1,1,2,3],[962,1,1,3,4],[968,1,1,4,5]]],[41,3,3,5,8,[[980,1,1,5,6],[981,1,1,6,7],[983,1,1,7,8]]],[42,4,4,8,12,[[1009,1,1,8,9],[1014,1,1,9,10],[1015,1,1,10,11],[1017,1,1,11,12]]],[43,3,3,12,15,[[1019,1,1,12,13],[1022,1,1,13,14],[1037,1,1,14,15]]],[44,2,2,15,17,[[1050,1,1,15,16],[1058,1,1,16,17]]],[46,2,2,17,19,[[1078,1,1,17,18],[1082,1,1,18,19]]],[48,1,1,19,20,[[1102,1,1,19,20]]],[49,1,1,20,21,[[1103,1,1,20,21]]],[50,1,1,21,22,[[1110,1,1,21,22]]],[54,2,2,22,24,[[1126,1,1,22,23],[1127,1,1,23,24]]],[56,1,1,24,25,[[1132,1,1,24,25]]],[58,1,1,25,26,[[1148,1,1,25,26]]],[59,2,2,26,28,[[1153,1,1,26,27],[1155,1,1,27,28]]]],[23383,23901,24397,24427,24688,25298,25334,25422,26633,26789,26853,26910,26979,27066,27648,28050,28277,28807,28883,29346,29378,29543,29850,29867,29959,30320,30433,30474]]],["known",[5,5,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]],[44,1,1,3,4,[[1052,1,1,3,4]]],[54,1,1,4,5,[[1127,1,1,4,5]]]],[24000,25498,26400,28098,29868]]],["look",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26380]]],["looked",[6,6,[[41,1,1,0,1,[[982,1,1,0,1]]],[65,5,5,1,6,[[1170,1,1,1,2],[1172,1,1,2,3],[1180,2,2,3,5],[1181,1,1,5,6]]]],[25395,30769,30801,30927,30940,30951]]],["on",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24533]]],["perceive",[3,3,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]]],[23553,24335,27925]]],["perceiving",[3,3,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[43,1,1,2,3,[[1031,1,1,2,3]]]],[24701,25348,27423]]],["saw",[186,185,[[39,39,39,0,39,[[930,4,4,0,4],[931,2,2,4,6],[932,3,3,6,9],[936,3,3,9,12],[937,6,6,12,18],[940,1,1,18,19],[942,2,2,19,21],[945,1,1,21,22],[946,1,1,22,23],[948,1,1,23,24],[949,4,4,24,28],[950,1,1,28,29],[953,4,4,29,33],[954,2,2,33,35],[955,3,3,35,38],[956,1,1,38,39]]],[40,28,28,39,67,[[957,3,3,39,42],[958,4,4,42,46],[961,3,3,46,49],[962,5,5,49,54],[963,1,1,54,55],[965,5,5,55,60],[966,1,1,60,61],[967,1,1,61,62],[968,1,1,62,63],[970,2,2,63,65],[971,1,1,65,66],[972,1,1,66,67]]],[41,34,34,67,101,[[973,2,2,67,69],[974,1,1,69,70],[977,3,3,70,73],[979,2,2,73,75],[980,3,3,75,78],[981,3,3,78,81],[982,2,2,81,83],[983,1,1,83,84],[985,1,1,84,85],[987,1,1,85,86],[989,2,2,86,88],[990,3,3,88,91],[991,2,2,91,93],[992,1,1,93,94],[993,2,2,94,96],[994,2,2,96,98],[995,2,2,98,100],[996,1,1,100,101]]],[42,18,18,101,119,[[997,4,4,101,105],[1001,1,1,105,106],[1002,3,3,106,109],[1004,1,1,109,110],[1005,1,1,110,111],[1007,3,3,111,114],[1008,1,1,114,115],[1015,3,3,115,118],[1016,1,1,118,119]]],[43,23,23,119,142,[[1020,2,2,119,121],[1023,1,1,121,122],[1024,2,2,122,124],[1025,1,1,124,125],[1026,2,2,125,127],[1027,1,1,127,128],[1028,2,2,128,130],[1029,2,2,130,132],[1030,4,4,132,136],[1031,1,1,136,137],[1033,1,1,137,138],[1038,1,1,138,139],[1039,1,1,139,140],[1045,2,2,140,142]]],[47,3,3,142,145,[[1091,1,1,142,143],[1092,2,2,143,145]]],[49,1,1,145,146,[[1103,1,1,145,146]]],[57,2,2,146,148,[[1135,1,1,146,147],[1143,1,1,147,148]]],[65,38,37,148,185,[[1167,3,3,148,151],[1170,1,1,151,152],[1171,2,2,152,154],[1172,3,3,154,157],[1173,2,2,157,159],[1174,1,1,159,160],[1175,2,2,160,162],[1176,2,2,162,164],[1178,1,1,164,165],[1179,3,3,165,168],[1180,1,1,168,169],[1181,2,2,169,171],[1182,1,1,171,172],[1183,3,2,172,174],[1184,1,1,174,175],[1185,3,3,175,178],[1186,4,4,178,182],[1187,3,3,182,185]]]],[23178,23179,23180,23185,23199,23208,23225,23227,23230,23359,23363,23379,23387,23388,23390,23401,23402,23415,23491,23611,23623,23708,23758,23795,23841,23845,23846,23864,23883,24045,24046,24047,24052,24062,24125,24132,24153,24183,24212,24225,24231,24234,24265,24272,24274,24276,24370,24380,24386,24440,24441,24455,24456,24457,24465,24546,24552,24558,24563,24576,24602,24660,24707,24821,24823,24865,24878,24905,24922,25021,25109,25115,25127,25208,25234,25273,25279,25292,25333,25350,25355,25394,25396,25443,25530,25608,25665,25666,25703,25712,25731,25736,25738,25793,25827,25828,25913,25922,25943,25982,26015,26083,26091,26092,26094,26216,26279,26281,26283,26437,26441,26554,26555,26556,26621,26831,26851,26858,26887,27005,27008,27116,27147,27171,27215,27251,27256,27262,27312,27313,27340,27353,27374,27398,27399,27407,27425,27502,27696,27722,27903,27914,29076,29088,29095,29391,30004,30195,30699,30709,30714,30772,30780,30781,30794,30795,30802,30811,30812,30829,30841,30857,30862,30866,30904,30909,30910,30911,30932,30947,30948,30967,30978,30981,30994,31028,31034,31036,31039,31042,31049,31050,31054,31055,31075]]],["sawest",[7,6,[[65,7,6,0,6,[[1167,2,1,0,1],[1183,5,5,1,6]]]],[30717,30983,30987,30990,30991,30993]]],["see",[78,78,[[39,13,13,0,13,[[933,1,1,0,1],[939,2,2,1,3],[940,1,1,3,4],[941,2,2,4,6],[944,1,1,6,7],[951,1,1,7,8],[952,2,2,8,10],[954,1,1,10,11],[955,1,1,11,12],[956,1,1,12,13]]],[40,8,8,13,21,[[961,2,2,13,15],[962,1,1,15,16],[968,1,1,16,17],[969,2,2,17,19],[971,2,2,19,21]]],[41,20,20,21,41,[[974,2,2,21,23],[979,2,2,23,25],[980,2,2,25,27],[981,2,2,27,29],[982,1,1,29,30],[984,1,1,30,31],[985,1,1,31,32],[986,1,1,32,33],[989,1,1,33,34],[991,2,2,34,36],[992,1,1,36,37],[993,2,2,37,39],[995,1,1,39,40],[996,1,1,40,41]]],[42,14,14,41,55,[[997,3,3,41,44],[999,1,1,44,45],[1000,2,2,45,47],[1002,1,1,47,48],[1004,1,1,48,49],[1007,1,1,49,50],[1008,3,3,50,53],[1014,1,1,53,54],[1016,1,1,54,55]]],[43,7,7,55,62,[[1019,2,2,55,57],[1030,1,1,57,58],[1036,1,1,58,59],[1039,1,1,59,60],[1045,2,2,60,62]]],[44,1,1,62,63,[[1046,1,1,62,63]]],[45,2,2,63,65,[[1069,1,1,63,64],[1077,1,1,64,65]]],[47,1,1,65,66,[[1096,1,1,65,66]]],[49,2,2,66,68,[[1103,1,1,66,67],[1104,1,1,67,68]]],[51,3,3,68,71,[[1112,1,1,68,69],[1113,2,2,69,71]]],[53,1,1,71,72,[[1124,1,1,71,72]]],[54,1,1,72,73,[[1125,1,1,72,73]]],[57,1,1,73,74,[[1143,1,1,73,74]]],[59,1,1,74,75,[[1153,1,1,74,75]]],[61,1,1,75,76,[[1163,1,1,75,76]]],[63,1,1,76,77,[[1165,1,1,76,77]]],[65,1,1,77,78,[[1184,1,1,77,78]]]],[23250,23467,23468,23527,23554,23556,23700,23957,23972,23990,24112,24178,24201,24378,24396,24445,24688,24731,24746,24858,24862,24988,24999,25220,25221,25265,25280,25310,25328,25387,25513,25553,25571,25673,25734,25735,25792,25846,25857,25943,26030,26077,26083,26090,26123,26185,26204,26287,26437,26557,26589,26601,26620,26811,26892,26976,26980,27397,27606,27718,27919,27926,27941,28537,28783,29199,29388,29419,29587,29596,29600,29804,29813,30177,30434,30640,30672,31000]]],["seeing",[8,8,[[39,2,2,0,2,[[933,1,1,0,1],[937,1,1,1,2]]],[40,1,1,2,3,[[967,1,1,2,3]]],[41,1,1,3,4,[[977,1,1,3,4]]],[42,1,1,4,5,[[1017,1,1,4,5]]],[43,3,3,5,8,[[1020,1,1,5,6],[1024,1,1,6,7],[1033,1,1,7,8]]]],[23235,23381,24653,25119,26919,26999,27140,27510]]],["seen",[33,32,[[39,3,3,0,3,[[930,1,1,0,1],[941,1,1,1,2],[949,1,1,2,3]]],[40,2,2,3,5,[[965,2,2,3,5]]],[41,9,9,5,14,[[974,4,4,5,9],[977,1,1,9,10],[979,1,1,10,11],[982,1,1,11,12],[991,1,1,12,13],[995,1,1,13,14]]],[42,1,1,14,15,[[1002,1,1,14,15]]],[43,11,10,15,25,[[1021,1,1,15,16],[1024,2,1,16,17],[1026,2,2,17,19],[1027,1,1,19,20],[1028,2,2,20,22],[1033,2,2,22,24],[1043,1,1,24,25]]],[45,1,1,25,26,[[1063,1,1,25,26]]],[49,1,1,26,27,[[1106,1,1,26,27]]],[53,1,1,27,28,[[1124,1,1,27,28]]],[57,1,1,28,29,[[1143,1,1,28,29]]],[58,1,1,29,30,[[1150,1,1,29,30]]],[59,1,1,30,31,[[1151,1,1,30,31]]],[65,1,1,31,32,[[1167,1,1,31,32]]]],[23171,23556,23858,24539,24547,24990,24993,24999,25003,25133,25217,25387,25768,25943,26271,27042,27150,27228,27243,27276,27320,27330,27493,27523,27839,28403,29451,29804,30185,30365,30382,30716]]],["sure",[3,3,[[42,1,1,0,1,[[1012,1,1,0,1]]],[44,2,2,1,3,[[1047,1,1,1,2],[1060,1,1,2,3]]]],[26756,27964,28332]]],["tell",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25786]]],["understand",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28667]]],["understandeth",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28694]]],["wist",[6,6,[[40,2,2,0,2,[[965,1,1,0,1],[970,1,1,1,2]]],[41,1,1,2,3,[[974,1,1,2,3]]],[42,1,1,3,4,[[1001,1,1,3,4]]],[43,2,2,4,6,[[1029,1,1,4,5],[1040,1,1,5,6]]]],[24544,24794,25022,26223,27346,27739]]],["wot",[2,2,[[43,2,2,0,2,[[1020,1,1,0,1],[1024,1,1,1,2]]]],[27013,27156]]]]},{"k":"G1493","v":[["temple",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28537]]]]},{"k":"G1494","v":[["*",[10,10,[[43,2,2,0,2,[[1032,1,1,0,1],[1038,1,1,1,2]]],[45,6,6,2,8,[[1069,4,4,2,6],[1071,2,2,6,8]]],[65,2,2,8,10,[[1168,2,2,8,10]]]],[27471,27689,28528,28531,28534,28537,28586,28595,30731,30737]]],["idol",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28534]]],["idols",[9,9,[[43,2,2,0,2,[[1032,1,1,0,1],[1038,1,1,1,2]]],[45,5,5,2,7,[[1069,3,3,2,5],[1071,2,2,5,7]]],[65,2,2,7,9,[[1168,2,2,7,9]]]],[27471,27689,28528,28531,28537,28586,28595,30731,30737]]]]},{"k":"G1495","v":[["*",[4,4,[[45,1,1,0,1,[[1071,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]]],[28581,29182,29522,30449]]],["Idolatry",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29182]]],["idolatries",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30449]]],["idolatry",[2,2,[[45,1,1,0,1,[[1071,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[28581,29522]]]]},{"k":"G1496","v":[["*",[7,7,[[45,4,4,0,4,[[1066,2,2,0,2],[1067,1,1,2,3],[1071,1,1,3,4]]],[48,1,1,4,5,[[1101,1,1,4,5]]],[65,2,2,5,7,[[1187,1,1,5,6],[1188,1,1,6,7]]]],[28464,28465,28476,28574,29309,31061,31095]]],["idolater",[2,2,[[45,1,1,0,1,[[1066,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]]],[28465,29309]]],["idolaters",[5,5,[[45,3,3,0,3,[[1066,1,1,0,1],[1067,1,1,1,2],[1071,1,1,2,3]]],[65,2,2,3,5,[[1187,1,1,3,4],[1188,1,1,4,5]]]],[28464,28476,28574,31061,31095]]]]},{"k":"G1497","v":[["*",[11,11,[[43,2,2,0,2,[[1024,1,1,0,1],[1032,1,1,1,2]]],[44,1,1,2,3,[[1047,1,1,2,3]]],[45,4,4,3,7,[[1069,2,2,3,5],[1071,1,1,5,6],[1073,1,1,6,7]]],[46,1,1,7,8,[[1083,1,1,7,8]]],[51,1,1,8,9,[[1111,1,1,8,9]]],[61,1,1,9,10,[[1163,1,1,9,10]]],[65,1,1,10,11,[[1175,1,1,10,11]]]],[27157,27462,27984,28531,28534,28586,28636,28914,29569,30645,30860]]],["idol",[4,4,[[43,1,1,0,1,[[1024,1,1,0,1]]],[45,3,3,1,4,[[1069,2,2,1,3],[1071,1,1,3,4]]]],[27157,28531,28534,28586]]],["idols",[7,7,[[43,1,1,0,1,[[1032,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]],[45,1,1,2,3,[[1073,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]],[51,1,1,4,5,[[1111,1,1,4,5]]],[61,1,1,5,6,[[1163,1,1,5,6]]],[65,1,1,6,7,[[1175,1,1,6,7]]]],[27462,27984,28636,28914,29569,30645,30860]]]]},{"k":"G1498","v":[["*",[12,12,[[41,7,7,0,7,[[973,1,1,0,1],[975,1,1,1,2],[980,1,1,2,3],[981,1,1,3,4],[987,1,1,4,5],[990,1,1,5,6],[994,1,1,6,7]]],[42,1,1,7,8,[[1009,1,1,7,8]]],[43,3,3,8,11,[[1025,1,1,8,9],[1027,1,1,9,10],[1038,1,1,10,11]]],[65,1,1,11,12,[[1169,1,1,11,12]]]],[24922,25040,25254,25347,25614,25724,25887,26654,27196,27276,27697,30761]]],["+",[5,5,[[41,1,1,0,1,[[975,1,1,0,1]]],[42,1,1,1,2,[[1009,1,1,1,2]]],[43,3,3,2,5,[[1025,1,1,2,3],[1027,1,1,3,4],[1038,1,1,4,5]]]],[25040,26654,27196,27276,27697]]],["be",[3,3,[[41,3,3,0,3,[[973,1,1,0,1],[980,1,1,1,2],[981,1,1,2,3]]]],[24922,25254,25347]]],["meant",[2,2,[[41,2,2,0,2,[[987,1,1,0,1],[990,1,1,1,2]]]],[25614,25724]]],["was",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25887]]],["wert",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30761]]]]},{"k":"G1499","v":[["*",[15,13,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[990,1,1,2,3]]],[46,9,7,3,10,[[1081,1,1,3,4],[1082,1,1,4,5],[1084,4,2,5,7],[1088,1,1,7,8],[1089,2,2,8,10]]],[49,2,2,10,12,[[1104,1,1,10,11],[1105,1,1,11,12]]],[57,1,1,12,13,[[1138,1,1,12,13]]]],[24087,25413,25692,28875,28893,28924,28928,29004,29033,29037,29408,29433,30053]]],["Though",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[990,1,1,2,3]]]],[24087,25413,25692]]],["if",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[29004,29408]]],["that",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29433]]],["though",[9,7,[[46,8,6,0,6,[[1081,1,1,0,1],[1082,1,1,1,2],[1084,4,2,2,4],[1089,2,2,4,6]]],[57,1,1,6,7,[[1138,1,1,6,7]]]],[28875,28893,28924,28928,29033,29037,30053]]]]},{"k":"G1500","v":[["*",[7,6,[[39,1,1,0,1,[[933,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]],[47,3,2,3,5,[[1093,2,1,3,4],[1094,1,1,4,5]]],[50,1,1,5,6,[[1108,1,1,5,6]]]],[23256,28270,28720,29106,29142,29512]]],["cause",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23256]]],["vain",[5,4,[[44,1,1,0,1,[[1058,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[47,3,2,2,4,[[1093,2,1,2,3],[1094,1,1,3,4]]]],[28270,28720,29106,29142]]],["vainly",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29512]]]]},{"k":"G1501","v":[["*",[12,11,[[41,1,1,0,1,[[986,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[43,2,2,2,4,[[1018,1,1,2,3],[1044,1,1,3,4]]],[45,1,1,4,5,[[1071,1,1,4,5]]],[65,7,6,5,11,[[1170,3,2,5,7],[1171,2,2,7,9],[1177,1,1,9,10],[1185,1,1,10,11]]]],[25584,26276,26938,27883,28575,30772,30778,30787,30793,30888,31021]]],["+",[10,9,[[42,1,1,0,1,[[1002,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]],[45,1,1,2,3,[[1071,1,1,2,3]]],[65,7,6,3,9,[[1170,3,2,3,5],[1171,2,2,5,7],[1177,1,1,7,8],[1185,1,1,8,9]]]],[26276,26938,28575,30772,30778,30787,30793,30888,31021]]],["twenty",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[25584,27883]]]]},{"k":"G1502","v":[["place",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29086]]]]},{"k":"G1503","v":[["*",[2,2,[[58,2,2,0,2,[[1146,2,2,0,2]]]],[30272,30289]]],["like",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30272]]],["unto",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30289]]]]},{"k":"G1504","v":[["image",[23,20,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[44,2,2,3,5,[[1046,1,1,3,4],[1053,1,1,4,5]]],[45,3,2,5,7,[[1072,1,1,5,6],[1076,2,1,6,7]]],[46,2,2,7,9,[[1080,1,1,7,8],[1081,1,1,8,9]]],[50,2,2,9,11,[[1107,1,1,9,10],[1109,1,1,10,11]]],[57,1,1,11,12,[[1142,1,1,11,12]]],[65,10,8,12,20,[[1179,4,2,12,14],[1180,2,2,14,16],[1181,1,1,16,17],[1182,1,1,17,18],[1185,1,1,18,19],[1186,1,1,19,20]]]],[23892,24689,25803,27953,28145,28607,28767,28859,28863,29480,29527,30134,30922,30923,30935,30937,30948,30956,31037,31042]]]]},{"k":"G1505","v":[["sincerity",[3,3,[[45,1,1,0,1,[[1066,1,1,0,1]]],[46,2,2,1,3,[[1078,1,1,1,2],[1079,1,1,2,3]]]],[28462,28812,28841]]]]},{"k":"G1506","v":[["*",[2,2,[[49,1,1,0,1,[[1103,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[29371,30523]]],["pure",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30523]]],["sincere",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29371]]]]},{"k":"G1507","v":[["together",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30807]]]]},{"k":"G1508","v":[["*",[85,81,[[39,17,16,0,16,[[933,1,1,0,1],[939,2,1,1,2],[940,3,3,2,5],[941,1,1,5,6],[942,1,1,6,7],[943,1,1,7,8],[944,1,1,8,9],[945,2,2,9,11],[947,2,2,11,13],[949,1,1,13,14],[952,2,2,14,16]]],[40,13,13,16,29,[[958,2,2,16,18],[961,1,1,18,19],[962,3,3,19,22],[964,1,1,22,23],[965,2,2,23,25],[966,1,1,25,26],[967,1,1,26,27],[969,2,2,27,29]]],[41,10,9,29,38,[[976,2,2,29,31],[977,1,1,31,32],[978,1,1,32,33],[980,1,1,33,34],[982,2,1,34,35],[983,1,1,35,36],[989,1,1,36,37],[990,1,1,37,38]]],[42,8,8,38,46,[[999,1,1,38,39],[1002,2,2,39,41],[1005,1,1,41,42],[1006,1,1,42,43],[1010,1,1,43,44],[1013,1,1,44,45],[1015,1,1,45,46]]],[43,2,2,46,48,[[1028,1,1,46,47],[1038,1,1,47,48]]],[44,7,6,48,54,[[1052,2,1,48,49],[1054,1,1,49,50],[1056,1,1,50,51],[1058,2,2,51,53],[1059,1,1,53,54]]],[45,10,9,54,63,[[1062,1,1,54,55],[1063,3,2,55,57],[1068,1,1,57,58],[1069,1,1,58,59],[1071,1,1,59,60],[1073,1,1,60,61],[1075,1,1,61,62],[1076,1,1,62,63]]],[46,4,4,63,67,[[1079,1,1,63,64],[1080,1,1,64,65],[1089,2,2,65,67]]],[47,3,3,67,70,[[1091,2,2,67,69],[1096,1,1,69,70]]],[48,1,1,70,71,[[1100,1,1,70,71]]],[49,1,1,71,72,[[1106,1,1,71,72]]],[53,1,1,72,73,[[1123,1,1,72,73]]],[57,1,1,73,74,[[1135,1,1,73,74]]],[61,2,2,74,76,[[1160,1,1,74,75],[1163,1,1,75,76]]],[65,5,5,76,81,[[1168,1,1,76,77],[1175,1,1,77,78],[1179,1,1,78,79],[1180,1,1,79,80],[1185,1,1,80,81]]]],[23247,23486,23493,23513,23528,23596,23614,23657,23676,23708,23721,23771,23779,23845,23979,23993,24267,24286,24401,24411,24412,24415,24514,24547,24567,24606,24653,24737,24749,25089,25090,25128,25150,25296,25385,25434,25669,25707,26133,26279,26303,26473,26491,26674,26771,26840,27326,27689,28098,28184,28224,28267,28274,28294,28377,28396,28405,28504,28531,28580,28637,28683,28720,28826,28842,29027,29035,29064,29076,29202,29281,29457,29782,30013,30572,30629,30734,30844,30925,30929,31029]]],["+",[4,4,[[40,1,1,0,1,[[965,1,1,0,1]]],[45,2,2,1,3,[[1075,1,1,1,2],[1076,1,1,2,3]]],[53,1,1,3,4,[[1123,1,1,3,4]]]],[24547,28683,28720,29782]]],["But",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28504]]],["Except",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28184]]],["If",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26473]]],["but",[51,50,[[39,12,12,0,12,[[933,1,1,0,1],[939,1,1,1,2],[940,3,3,2,5],[942,1,1,5,6],[943,1,1,6,7],[944,1,1,7,8],[945,1,1,8,9],[947,1,1,9,10],[949,1,1,10,11],[952,1,1,11,12]]],[40,7,7,12,19,[[958,2,2,12,14],[962,1,1,14,15],[965,1,1,15,16],[966,1,1,16,17],[967,1,1,17,18],[969,1,1,18,19]]],[41,5,4,19,23,[[977,1,1,19,20],[978,1,1,20,21],[982,2,1,21,22],[983,1,1,22,23]]],[42,5,5,23,28,[[999,1,1,23,24],[1006,1,1,24,25],[1010,1,1,25,26],[1013,1,1,26,27],[1015,1,1,27,28]]],[43,1,1,28,29,[[1028,1,1,28,29]]],[44,5,5,29,34,[[1052,1,1,29,30],[1056,1,1,30,31],[1058,2,2,31,33],[1059,1,1,33,34]]],[45,5,5,34,39,[[1062,1,1,34,35],[1063,1,1,35,36],[1069,1,1,36,37],[1071,1,1,37,38],[1073,1,1,38,39]]],[46,2,2,39,41,[[1079,1,1,39,40],[1089,1,1,40,41]]],[47,1,1,41,42,[[1091,1,1,41,42]]],[48,1,1,42,43,[[1100,1,1,42,43]]],[49,1,1,43,44,[[1106,1,1,43,44]]],[57,1,1,44,45,[[1135,1,1,44,45]]],[61,2,2,45,47,[[1160,1,1,45,46],[1163,1,1,46,47]]],[65,3,3,47,50,[[1175,1,1,47,48],[1180,1,1,48,49],[1185,1,1,49,50]]]],[23247,23486,23493,23513,23528,23614,23657,23676,23721,23779,23845,23993,24267,24286,24411,24567,24606,24653,24749,25128,25150,25385,25434,26133,26491,26674,26771,26840,27326,28098,28224,28267,28274,28294,28377,28405,28531,28580,28637,28826,29027,29064,29281,29457,30013,30572,30629,30844,30929,31029]]],["except",[5,5,[[39,2,2,0,2,[[947,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[44,1,1,3,4,[[1052,1,1,3,4]]],[46,1,1,4,5,[[1089,1,1,4,5]]]],[23771,23979,24737,28098,29035]]],["or",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28842]]],["save",[17,17,[[39,3,3,0,3,[[939,1,1,0,1],[941,1,1,1,2],[945,1,1,2,3]]],[40,2,2,3,5,[[961,1,1,3,4],[962,1,1,4,5]]],[41,4,4,5,9,[[976,1,1,5,6],[980,1,1,6,7],[989,1,1,7,8],[990,1,1,8,9]]],[42,2,2,9,11,[[1002,2,2,9,11]]],[43,1,1,11,12,[[1038,1,1,11,12]]],[45,2,2,12,14,[[1063,2,2,12,14]]],[47,2,2,14,16,[[1091,1,1,14,15],[1096,1,1,15,16]]],[65,1,1,16,17,[[1179,1,1,16,17]]]],[23486,23596,23708,24401,24415,25089,25296,25669,25707,26279,26303,27689,28396,28405,29076,29202,30925]]],["saving",[2,2,[[41,1,1,0,1,[[976,1,1,0,1]]],[65,1,1,1,2,[[1168,1,1,1,2]]]],[25090,30734]]],["than",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24514]]],["that",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24412]]]]},{"k":"G1509","v":[["*",[3,3,[[41,1,1,0,1,[[981,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]],[46,1,1,2,3,[[1090,1,1,2,3]]]],[25314,28492,29048]]],["+",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28492]]],["except",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[46,1,1,1,2,[[1090,1,1,1,2]]]],[25314,29048]]]]},{"k":"G1510","v":[["*",[146,137,[[39,14,14,0,14,[[931,1,1,0,1],[936,2,2,1,3],[939,1,1,3,4],[942,1,1,4,5],[946,1,1,5,6],[948,1,1,6,7],[950,1,1,7,8],[952,1,1,8,9],[954,2,2,9,11],[955,2,2,11,13],[956,1,1,13,14]]],[40,4,4,14,18,[[957,1,1,14,15],[962,1,1,15,16],[969,1,1,16,17],[970,1,1,17,18]]],[41,16,16,18,34,[[973,2,2,18,20],[975,1,1,20,21],[977,1,1,21,22],[979,2,2,22,24],[987,2,2,24,26],[990,1,1,26,27],[991,1,1,27,28],[993,1,1,28,29],[994,4,4,29,33],[996,1,1,33,34]]],[42,54,52,34,86,[[997,3,3,34,37],[999,2,1,37,38],[1000,1,1,38,39],[1002,5,5,39,44],[1003,5,5,44,49],[1004,8,7,49,56],[1005,2,2,56,58],[1006,5,5,58,63],[1007,1,1,63,64],[1008,1,1,64,65],[1009,3,3,65,68],[1010,3,3,68,71],[1011,2,2,71,73],[1012,1,1,73,74],[1013,4,4,74,78],[1014,7,7,78,85],[1015,1,1,85,86]]],[43,19,18,86,104,[[1026,1,1,86,87],[1027,2,2,87,89],[1028,1,1,89,90],[1030,2,1,90,91],[1035,1,1,91,92],[1038,1,1,92,93],[1039,2,2,93,95],[1040,2,2,95,97],[1041,2,2,97,99],[1042,1,1,99,100],[1043,2,2,100,102],[1044,2,2,102,104]]],[44,4,4,104,108,[[1046,1,1,104,105],[1052,1,1,105,106],[1056,2,2,106,108]]],[45,15,9,108,117,[[1062,1,1,108,109],[1064,1,1,109,110],[1070,4,2,110,112],[1073,4,2,112,114],[1074,1,1,114,115],[1076,4,2,115,117]]],[46,2,2,117,119,[[1089,2,2,117,119]]],[49,1,1,119,120,[[1106,1,1,119,120]]],[50,1,1,120,121,[[1108,1,1,120,121]]],[53,1,1,121,122,[[1119,1,1,121,122]]],[57,1,1,122,123,[[1144,1,1,122,123]]],[59,1,1,123,124,[[1151,1,1,123,124]]],[60,1,1,124,125,[[1156,1,1,124,125]]],[65,12,12,125,137,[[1167,4,4,125,129],[1168,1,1,129,130],[1169,1,1,130,131],[1184,1,1,131,132],[1185,1,1,132,133],[1187,1,1,133,134],[1188,3,3,134,137]]]],[23203,23353,23354,23488,23624,23747,23807,23904,23962,24076,24079,24153,24172,24215,24222,24457,24723,24816,24911,24912,25041,25115,25201,25203,25607,25609,25699,25753,25834,25891,25897,25922,25934,26030,26064,26065,26071,26148,26182,26277,26292,26298,26305,26308,26356,26357,26361,26362,26364,26393,26397,26399,26404,26405,26409,26439,26445,26449,26488,26490,26492,26495,26517,26548,26606,26643,26649,26663,26671,26674,26677,26700,26704,26758,26770,26773,26775,26783,26790,26791,26793,26802,26810,26820,26822,26846,27221,27280,27285,27335,27387,27567,27703,27707,27712,27740,27764,27784,27794,27806,27838,27852,27865,27878,27944,28105,28210,28222,28375,28414,28541,28542,28649,28650,28667,28727,28728,29032,29033,29453,29499,29711,30233,30390,30492,30705,30708,30714,30715,30740,30763,31000,31027,31059,31089,31093,31096]]],["+",[6,6,[[43,2,2,0,2,[[1040,1,1,0,1],[1042,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]],[65,3,3,3,6,[[1167,2,2,3,5],[1187,1,1,5,6]]]],[27764,27806,30233,30705,30708,31059]]],["Am",[2,2,[[42,1,1,0,1,[[1014,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]]],[26820,28541]]],["a",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23354]]],["am",[123,116,[[39,10,10,0,10,[[931,1,1,0,1],[936,1,1,1,2],[939,1,1,2,3],[946,1,1,3,4],[948,1,1,4,5],[950,1,1,5,6],[952,1,1,6,7],[955,2,2,7,9],[956,1,1,9,10]]],[40,3,3,10,13,[[957,1,1,10,11],[969,1,1,11,12],[970,1,1,12,13]]],[41,14,14,13,27,[[973,2,2,13,15],[975,1,1,15,16],[977,1,1,16,17],[979,2,2,17,19],[987,2,2,19,21],[990,1,1,21,22],[993,1,1,22,23],[994,4,4,23,27]]],[42,51,49,27,76,[[997,3,3,27,30],[999,2,1,30,31],[1000,1,1,31,32],[1002,4,4,32,36],[1003,5,5,36,41],[1004,8,7,41,48],[1005,2,2,48,50],[1006,5,5,50,55],[1007,1,1,55,56],[1008,1,1,56,57],[1009,3,3,57,60],[1010,2,2,60,62],[1011,2,2,62,64],[1012,1,1,64,65],[1013,4,4,65,69],[1014,6,6,69,75],[1015,1,1,75,76]]],[43,13,12,76,88,[[1026,1,1,76,77],[1027,2,2,77,79],[1030,2,1,79,80],[1035,1,1,80,81],[1038,1,1,81,82],[1039,2,2,82,84],[1040,1,1,84,85],[1043,2,2,85,87],[1044,1,1,87,88]]],[44,4,4,88,92,[[1046,1,1,88,89],[1052,1,1,89,90],[1056,2,2,90,92]]],[45,13,9,92,101,[[1062,1,1,92,93],[1064,1,1,93,94],[1070,2,2,94,96],[1073,4,2,96,98],[1074,1,1,98,99],[1076,4,2,99,101]]],[46,1,1,101,102,[[1089,1,1,101,102]]],[49,1,1,102,103,[[1106,1,1,102,103]]],[50,1,1,103,104,[[1108,1,1,103,104]]],[53,1,1,104,105,[[1119,1,1,104,105]]],[59,1,1,105,106,[[1151,1,1,105,106]]],[60,1,1,106,107,[[1156,1,1,106,107]]],[65,9,9,107,116,[[1167,2,2,107,109],[1168,1,1,109,110],[1169,1,1,110,111],[1184,1,1,111,112],[1185,1,1,112,113],[1188,3,3,113,116]]]],[23203,23353,23488,23747,23807,23904,23962,24153,24172,24215,24222,24723,24816,24911,24912,25041,25115,25201,25203,25607,25609,25699,25834,25891,25897,25922,25934,26064,26065,26071,26148,26182,26292,26298,26305,26308,26356,26357,26361,26362,26364,26393,26397,26399,26404,26405,26409,26439,26445,26449,26488,26490,26492,26495,26517,26548,26606,26643,26649,26663,26671,26674,26700,26704,26758,26770,26773,26775,26783,26790,26791,26793,26802,26810,26822,26846,27221,27280,27285,27387,27567,27703,27707,27712,27740,27838,27852,27878,27944,28105,28210,28222,28375,28414,28541,28542,28649,28650,28667,28727,28728,29032,29453,29499,29711,30390,30492,30714,30715,30740,30763,31000,31027,31089,31093,31096]]],["be",[5,5,[[43,3,3,0,3,[[1028,1,1,0,1],[1041,1,1,1,2],[1044,1,1,2,3]]],[45,1,1,3,4,[[1070,1,1,3,4]]],[46,1,1,4,5,[[1089,1,1,4,5]]]],[27335,27784,27865,28542,29033]]],["been",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26677]]],["come",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27794]]],["is",[6,6,[[39,3,3,0,3,[[942,1,1,0,1],[954,2,2,1,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[41,1,1,4,5,[[996,1,1,4,5]]],[42,1,1,5,6,[[1002,1,1,5,6]]]],[23624,24076,24079,24457,26030,26277]]],["was",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25753]]]]},{"k":"G1511","v":[["*",[125,123,[[39,6,6,0,6,[[944,2,2,0,2],[945,1,1,2,3],[947,1,1,3,4],[948,1,1,4,5],[950,1,1,5,6]]],[40,7,7,6,13,[[962,1,1,6,7],[964,2,2,7,9],[965,2,2,9,11],[968,1,1,11,12],[970,1,1,12,13]]],[41,22,21,13,34,[[974,4,4,13,17],[976,1,1,17,18],[977,1,1,18,19],[980,1,1,19,20],[981,4,3,20,23],[983,2,2,23,25],[986,3,3,25,28],[991,1,1,28,29],[992,3,3,29,32],[994,1,1,32,33],[995,1,1,33,34]]],[42,3,3,34,37,[[997,1,1,34,35],[1003,1,1,35,36],[1013,1,1,36,37]]],[43,20,20,37,57,[[1019,1,1,37,38],[1021,1,1,38,39],[1022,1,1,39,40],[1025,2,2,40,42],[1030,2,2,42,44],[1033,2,2,44,46],[1034,4,4,46,50],[1035,3,3,50,53],[1036,1,1,53,54],[1040,1,1,54,55],[1044,1,1,55,56],[1045,1,1,56,57]]],[44,15,15,57,72,[[1046,2,2,57,59],[1047,1,1,59,60],[1048,2,2,60,62],[1049,3,3,62,65],[1051,1,1,65,66],[1052,1,1,66,67],[1053,1,1,67,68],[1054,1,1,68,69],[1059,1,1,69,70],[1060,1,1,70,71],[1061,1,1,71,72]]],[45,10,10,72,82,[[1064,1,1,72,73],[1068,4,4,73,77],[1071,1,1,77,78],[1072,2,2,78,80],[1073,1,1,80,81],[1075,1,1,81,82]]],[46,5,5,82,87,[[1082,1,1,82,83],[1084,1,1,83,84],[1086,1,1,84,85],[1087,1,1,85,86],[1088,1,1,86,87]]],[47,4,4,87,91,[[1092,2,2,87,89],[1094,1,1,89,90],[1096,1,1,90,91]]],[48,3,3,91,94,[[1097,2,2,91,93],[1099,1,1,93,94]]],[49,5,4,94,98,[[1103,1,1,94,95],[1104,1,1,95,96],[1105,2,1,96,97],[1106,1,1,97,98]]],[51,1,1,98,99,[[1112,1,1,98,99]]],[53,5,5,99,104,[[1119,1,1,99,100],[1120,1,1,100,101],[1121,1,1,101,102],[1124,2,2,102,104]]],[54,1,1,104,105,[[1126,1,1,104,105]]],[55,6,6,105,111,[[1129,1,1,105,106],[1130,3,3,106,109],[1131,2,2,109,111]]],[57,3,3,111,114,[[1137,1,1,111,112],[1143,1,1,112,113],[1144,1,1,113,114]]],[58,3,3,114,117,[[1146,2,2,114,116],[1149,1,1,116,117]]],[59,2,2,117,119,[[1151,1,1,117,118],[1155,1,1,118,119]]],[61,1,1,119,120,[[1160,1,1,119,120]]],[65,3,3,120,123,[[1168,2,2,120,122],[1169,1,1,122,123]]]],[23685,23687,23704,23783,23819,23895,24456,24527,24529,24543,24573,24691,24818,24977,24979,25017,25022,25104,25119,25283,25319,25321,25334,25406,25413,25579,25580,25586,25742,25785,25806,25820,25888,25937,26090,26332,26764,26961,27054,27095,27185,27213,27387,27409,27496,27498,27530,27541,27543,27552,27560,27572,27585,27586,27742,27859,27905,27950,27952,27981,28000,28017,28033,28035,28038,28079,28094,28145,28158,28294,28319,28355,28428,28494,28512,28513,28519,28573,28616,28619,28657,28715,28886,28927,28961,28978,29005,29087,29090,29152,29191,29210,29218,29257,29384,29397,29429,29453,29576,29703,29728,29733,29793,29806,29851,29899,29910,29912,29917,29924,29925,30042,30176,30223,30284,30292,30341,30395,30477,30559,30719,30726,30755]]],["+",[6,6,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,2,2,1,3,[[1019,1,1,1,2],[1034,1,1,2,3]]],[44,1,1,3,4,[[1061,1,1,3,4]]],[45,1,1,4,5,[[1071,1,1,4,5]]],[53,1,1,5,6,[[1124,1,1,5,6]]]],[25321,26961,27543,28355,28573,29806]]],["a",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29005]]],["am",[6,6,[[39,2,2,0,2,[[944,2,2,0,2]]],[40,2,2,2,4,[[964,2,2,2,4]]],[41,1,1,4,5,[[981,1,1,4,5]]],[43,1,1,5,6,[[1030,1,1,5,6]]]],[23685,23687,24527,24529,25319,27387]]],["and",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29917]]],["are",[5,5,[[44,2,2,0,2,[[1046,1,1,0,1],[1048,1,1,1,2]]],[65,3,3,2,5,[[1168,2,2,2,4],[1169,1,1,4,5]]]],[27950,28000,30719,30726,30755]]],["art",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27981]]],["be",[61,61,[[39,3,3,0,3,[[945,1,1,0,1],[947,1,1,1,2],[948,1,1,2,3]]],[40,3,3,3,6,[[965,2,2,3,5],[970,1,1,5,6]]],[41,6,6,6,12,[[974,1,1,6,7],[980,1,1,7,8],[981,1,1,8,9],[986,3,3,9,12]]],[42,1,1,12,13,[[1003,1,1,12,13]]],[43,5,5,13,18,[[1022,1,1,13,14],[1030,1,1,14,15],[1033,1,1,15,16],[1034,1,1,16,17],[1035,1,1,17,18]]],[44,9,9,18,27,[[1046,1,1,18,19],[1048,1,1,19,20],[1049,3,3,20,23],[1051,1,1,23,24],[1053,1,1,24,25],[1059,1,1,25,26],[1060,1,1,26,27]]],[45,7,7,27,34,[[1064,1,1,27,28],[1068,2,2,28,30],[1072,2,2,30,32],[1073,1,1,32,33],[1075,1,1,33,34]]],[46,3,3,34,37,[[1082,1,1,34,35],[1084,1,1,35,36],[1086,1,1,36,37]]],[47,4,4,37,41,[[1092,2,2,37,39],[1094,1,1,39,40],[1096,1,1,40,41]]],[48,3,3,41,44,[[1097,2,2,41,43],[1099,1,1,43,44]]],[49,3,3,44,47,[[1103,1,1,44,45],[1104,1,1,45,46],[1106,1,1,46,47]]],[53,3,3,47,50,[[1119,1,1,47,48],[1120,1,1,48,49],[1121,1,1,49,50]]],[54,1,1,50,51,[[1126,1,1,50,51]]],[55,4,4,51,55,[[1129,1,1,51,52],[1130,1,1,52,53],[1131,2,2,53,55]]],[57,2,2,55,57,[[1137,1,1,55,56],[1144,1,1,56,57]]],[58,3,3,57,60,[[1146,2,2,57,59],[1149,1,1,59,60]]],[59,1,1,60,61,[[1151,1,1,60,61]]]],[23704,23783,23819,24543,24573,24818,25022,25283,25334,25579,25580,25586,26332,27095,27409,27498,27541,27572,27952,28017,28033,28035,28038,28079,28145,28294,28319,28428,28512,28513,28616,28619,28657,28715,28886,28927,28961,29087,29090,29152,29191,29210,29218,29257,29384,29397,29453,29703,29728,29733,29851,29899,29910,29924,29925,30042,30223,30284,30292,30341,30395]]],["been",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]]],[24456,25017,29576]]],["but",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29429]]],["come",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26090]]],["have",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28519]]],["is",[15,15,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,4,4,2,6,[[983,1,1,2,3],[992,2,2,3,5],[995,1,1,5,6]]],[43,4,4,6,10,[[1025,1,1,6,7],[1034,2,2,7,9],[1040,1,1,9,10]]],[44,1,1,10,11,[[1052,1,1,10,11]]],[46,1,1,11,12,[[1087,1,1,11,12]]],[53,1,1,12,13,[[1124,1,1,12,13]]],[59,1,1,13,14,[[1155,1,1,13,14]]],[61,1,1,14,15,[[1160,1,1,14,15]]]],[23895,24691,25413,25806,25820,25937,27213,27530,27552,27742,28094,28978,29793,30477,30559]]],["made",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27496]]],["the",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25888]]],["them",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29429]]],["to",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29912]]],["was",[15,15,[[41,7,7,0,7,[[974,1,1,0,1],[976,1,1,1,2],[977,1,1,2,3],[981,1,1,3,4],[983,1,1,4,5],[991,1,1,5,6],[992,1,1,6,7]]],[42,1,1,7,8,[[1013,1,1,7,8]]],[43,6,6,8,14,[[1021,1,1,8,9],[1025,1,1,9,10],[1035,2,2,10,12],[1036,1,1,12,13],[1045,1,1,13,14]]],[57,1,1,14,15,[[1143,1,1,14,15]]]],[24977,25104,25119,25319,25406,25742,25785,26764,27054,27185,27560,27585,27586,27905,30176]]],["were",[4,4,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]],[45,1,1,3,4,[[1068,1,1,3,4]]]],[24979,27859,28158,28494]]]]},{"k":"G1512","v":[["*",[6,6,[[44,2,2,0,2,[[1053,2,2,0,2]]],[45,2,2,2,4,[[1069,1,1,2,3],[1076,1,1,3,4]]],[52,1,1,4,5,[[1116,1,1,4,5]]],[59,1,1,5,6,[[1152,1,1,5,6]]]],[28125,28133,28532,28733,29655,30402]]],["+",[2,2,[[45,2,2,0,2,[[1069,1,1,0,1],[1076,1,1,1,2]]]],[28532,28733]]],["Seeing",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29655]]],["be",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30402]]],["that",[2,2,[[44,2,2,0,2,[[1053,2,2,0,2]]]],[28125,28133]]]]},{"k":"G1513","v":[["means",[2,2,[[43,1,1,0,1,[[1044,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[27867,27940]]]]},{"k":"G1514","v":[["*",[4,4,[[40,1,1,0,1,[[965,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]],[46,1,1,2,3,[[1090,1,1,2,3]]],[51,1,1,3,4,[[1115,1,1,3,4]]]],[24588,28263,29054,29634]]],["peace",[3,3,[[40,1,1,0,1,[[965,1,1,0,1]]],[46,1,1,1,2,[[1090,1,1,1,2]]],[51,1,1,2,3,[[1115,1,1,2,3]]]],[24588,29054,29634]]],["peaceably",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28263]]]]},{"k":"G1515","v":[["*",[92,86,[[39,4,2,0,2,[[938,4,2,0,2]]],[40,1,1,2,3,[[961,1,1,2,3]]],[41,14,13,3,16,[[973,1,1,3,4],[974,2,2,4,6],[979,1,1,6,7],[980,1,1,7,8],[982,3,2,8,10],[983,1,1,10,11],[984,1,1,11,12],[986,1,1,12,13],[991,2,2,13,15],[996,1,1,15,16]]],[42,6,5,16,21,[[1010,2,1,16,17],[1012,1,1,17,18],[1016,3,3,18,21]]],[43,7,7,21,28,[[1024,1,1,21,22],[1026,1,1,22,23],[1027,1,1,23,24],[1029,1,1,24,25],[1032,1,1,25,26],[1033,1,1,26,27],[1041,1,1,27,28]]],[44,11,11,28,39,[[1046,1,1,28,29],[1047,1,1,29,30],[1048,1,1,30,31],[1050,1,1,31,32],[1053,1,1,32,33],[1055,1,1,33,34],[1059,2,2,34,36],[1060,2,2,36,38],[1061,1,1,38,39]]],[45,4,4,39,43,[[1062,1,1,39,40],[1068,1,1,40,41],[1075,1,1,41,42],[1077,1,1,42,43]]],[46,2,2,43,45,[[1078,1,1,43,44],[1090,1,1,44,45]]],[47,3,3,45,48,[[1091,1,1,45,46],[1095,1,1,46,47],[1096,1,1,47,48]]],[48,7,7,48,55,[[1097,1,1,48,49],[1098,3,3,49,52],[1100,1,1,52,53],[1102,2,2,53,55]]],[49,3,3,55,58,[[1103,1,1,55,56],[1106,2,2,56,58]]],[50,2,2,58,60,[[1107,1,1,58,59],[1109,1,1,59,60]]],[51,3,3,60,63,[[1111,1,1,60,61],[1115,2,2,61,63]]],[52,3,2,63,65,[[1116,1,1,63,64],[1118,2,1,64,65]]],[53,1,1,65,66,[[1119,1,1,65,66]]],[54,2,2,66,68,[[1125,1,1,66,67],[1126,1,1,67,68]]],[55,1,1,68,69,[[1129,1,1,68,69]]],[56,1,1,69,70,[[1132,1,1,69,70]]],[57,4,4,70,74,[[1139,1,1,70,71],[1143,1,1,71,72],[1144,1,1,72,73],[1145,1,1,73,74]]],[58,3,2,74,76,[[1147,1,1,74,75],[1148,2,1,75,76]]],[59,3,3,76,79,[[1151,1,1,76,77],[1153,1,1,77,78],[1155,1,1,78,79]]],[60,2,2,79,81,[[1156,1,1,79,80],[1158,1,1,80,81]]],[62,1,1,81,82,[[1164,1,1,81,82]]],[63,1,1,82,83,[[1165,1,1,82,83]]],[64,1,1,83,84,[[1166,1,1,83,84]]],[65,2,2,84,86,[[1167,1,1,84,85],[1172,1,1,85,86]]]],[23430,23451,24398,24972,24987,25002,25245,25293,25368,25369,25426,25510,25585,25769,25773,26027,26695,26759,26886,26888,26893,27142,27247,27295,27357,27475,27519,27771,27937,27972,28008,28048,28122,28203,28297,28299,28316,28336,28356,28366,28502,28711,28787,28802,29054,29060,29184,29204,29208,29243,29244,29246,29275,29352,29360,29363,29449,29451,29467,29532,29561,29624,29644,29651,29694,29698,29811,29849,29896,29941,30066,30203,30226,30261,30309,30337,30376,30435,30479,30481,30536,30648,30672,30674,30701,30797]]],["+",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27142]]],["Peace",[10,10,[[41,2,2,0,2,[[982,1,1,0,1],[996,1,1,1,2]]],[42,4,4,2,6,[[1010,1,1,2,3],[1016,3,3,3,6]]],[48,1,1,6,7,[[1102,1,1,6,7]]],[51,1,1,7,8,[[1115,1,1,7,8]]],[59,1,1,8,9,[[1155,1,1,8,9]]],[63,1,1,9,10,[[1165,1,1,9,10]]]],[25368,26027,26695,26886,26888,26893,29360,29624,30479,30672]]],["peace",[79,74,[[39,4,2,0,2,[[938,4,2,0,2]]],[40,1,1,2,3,[[961,1,1,2,3]]],[41,12,11,3,14,[[973,1,1,3,4],[974,2,2,4,6],[979,1,1,6,7],[980,1,1,7,8],[982,2,1,8,9],[983,1,1,9,10],[984,1,1,10,11],[986,1,1,11,12],[991,2,2,12,14]]],[42,2,2,14,16,[[1010,1,1,14,15],[1012,1,1,15,16]]],[43,4,4,16,20,[[1027,1,1,16,17],[1029,1,1,17,18],[1032,1,1,18,19],[1033,1,1,19,20]]],[44,11,11,20,31,[[1046,1,1,20,21],[1047,1,1,21,22],[1048,1,1,22,23],[1050,1,1,23,24],[1053,1,1,24,25],[1055,1,1,25,26],[1059,2,2,26,28],[1060,2,2,28,30],[1061,1,1,30,31]]],[45,4,4,31,35,[[1062,1,1,31,32],[1068,1,1,32,33],[1075,1,1,33,34],[1077,1,1,34,35]]],[46,2,2,35,37,[[1078,1,1,35,36],[1090,1,1,36,37]]],[47,3,3,37,40,[[1091,1,1,37,38],[1095,1,1,38,39],[1096,1,1,39,40]]],[48,6,6,40,46,[[1097,1,1,40,41],[1098,3,3,41,44],[1100,1,1,44,45],[1102,1,1,45,46]]],[49,3,3,46,49,[[1103,1,1,46,47],[1106,2,2,47,49]]],[50,2,2,49,51,[[1107,1,1,49,50],[1109,1,1,50,51]]],[51,2,2,51,53,[[1111,1,1,51,52],[1115,1,1,52,53]]],[52,3,2,53,55,[[1116,1,1,53,54],[1118,2,1,54,55]]],[53,1,1,55,56,[[1119,1,1,55,56]]],[54,2,2,56,58,[[1125,1,1,56,57],[1126,1,1,57,58]]],[55,1,1,58,59,[[1129,1,1,58,59]]],[56,1,1,59,60,[[1132,1,1,59,60]]],[57,4,4,60,64,[[1139,1,1,60,61],[1143,1,1,61,62],[1144,1,1,62,63],[1145,1,1,63,64]]],[58,3,2,64,66,[[1147,1,1,64,65],[1148,2,1,65,66]]],[59,2,2,66,68,[[1151,1,1,66,67],[1153,1,1,67,68]]],[60,2,2,68,70,[[1156,1,1,68,69],[1158,1,1,69,70]]],[62,1,1,70,71,[[1164,1,1,70,71]]],[64,1,1,71,72,[[1166,1,1,71,72]]],[65,2,2,72,74,[[1167,1,1,72,73],[1172,1,1,73,74]]]],[23430,23451,24398,24972,24987,25002,25245,25293,25369,25426,25510,25585,25769,25773,26695,26759,27295,27357,27475,27519,27937,27972,28008,28048,28122,28203,28297,28299,28316,28336,28356,28366,28502,28711,28787,28802,29054,29060,29184,29204,29208,29243,29244,29246,29275,29352,29363,29449,29451,29467,29532,29561,29644,29651,29694,29698,29811,29849,29896,29941,30066,30203,30226,30261,30309,30337,30376,30435,30481,30536,30648,30674,30701,30797]]],["quietness",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27771]]],["rest",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27247]]]]},{"k":"G1516","v":[["peaceable",[2,2,[[57,1,1,0,1,[[1144,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[30223,30336]]]]},{"k":"G1517","v":[["peace",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29485]]]]},{"k":"G1518","v":[["peacemakers",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23243]]]]},{"k":"G1519","v":[["*",[1693,1452,[[39,216,194,0,194,[[930,10,10,0,10],[931,3,3,10,13],[932,7,7,13,20],[933,8,8,20,28],[934,7,5,28,33],[935,4,4,33,37],[936,13,11,37,48],[937,11,9,48,57],[938,15,13,57,70],[939,1,1,70,71],[940,9,8,71,79],[941,12,11,79,90],[942,10,9,90,99],[943,10,7,99,106],[944,3,3,106,109],[945,7,6,109,115],[946,11,9,115,124],[947,5,5,124,129],[948,6,6,129,135],[949,12,11,135,146],[950,8,7,146,153],[951,1,1,153,154],[952,4,4,154,158],[953,9,8,158,166],[954,14,14,166,180],[955,9,8,180,188],[956,7,6,188,194]]],[40,163,129,194,323,[[957,14,12,194,206],[958,7,5,206,211],[959,7,6,211,217],[960,7,7,217,224],[961,14,10,224,234],[962,14,12,234,246],[963,11,8,246,254],[964,12,9,254,263],[965,17,10,263,273],[966,9,9,273,282],[967,14,8,282,290],[968,4,4,290,294],[969,11,8,294,302],[970,15,14,302,316],[971,2,2,316,318],[972,5,5,318,323]]],[41,225,202,323,525,[[973,13,12,323,335],[974,16,13,335,348],[975,5,4,348,352],[976,13,12,352,364],[977,10,9,364,373],[978,7,7,373,380],[979,9,8,380,388],[980,20,17,388,405],[981,18,16,405,421],[982,12,10,421,431],[983,6,6,431,437],[984,8,7,437,444],[985,5,5,444,449],[986,10,8,449,457],[987,7,6,457,463],[988,7,7,463,470],[989,8,8,470,478],[990,10,9,478,487],[991,5,5,487,492],[992,1,1,492,493],[993,9,8,493,501],[994,12,10,501,511],[995,3,3,511,514],[996,11,11,514,525]]],[42,190,166,525,691,[[997,6,6,525,531],[998,5,5,531,536],[999,12,11,536,547],[1000,15,13,547,560],[1001,7,5,560,565],[1002,20,16,565,581],[1003,12,11,581,592],[1004,10,9,592,601],[1005,6,5,601,606],[1006,5,5,606,611],[1007,16,14,611,625],[1008,18,14,625,639],[1009,8,8,639,647],[1010,4,3,647,650],[1011,1,1,650,651],[1012,6,6,651,657],[1013,5,4,657,661],[1014,10,7,661,668],[1015,5,5,668,673],[1016,13,12,673,685],[1017,6,6,685,691]]],[43,291,250,691,941,[[1018,7,5,691,696],[1019,9,8,696,704],[1020,6,5,704,709],[1021,6,5,709,714],[1022,4,3,714,717],[1023,3,3,717,720],[1024,13,12,720,732],[1025,11,10,732,742],[1026,11,9,742,751],[1027,8,8,751,759],[1028,13,13,759,772],[1029,4,4,772,776],[1030,17,13,776,789],[1031,12,10,789,799],[1032,6,6,799,805],[1033,16,14,805,819],[1034,6,5,819,824],[1035,11,9,824,833],[1036,15,11,833,844],[1037,17,14,844,858],[1038,23,18,858,876],[1039,12,11,876,887],[1040,9,9,887,896],[1041,3,3,896,899],[1042,14,11,899,910],[1043,9,8,910,918],[1044,16,14,918,932],[1045,10,9,932,941]]],[44,102,80,941,1021,[[1046,10,9,941,950],[1047,2,2,950,952],[1048,3,3,952,955],[1049,5,5,955,960],[1050,12,7,960,967],[1051,10,6,967,973],[1052,2,1,973,974],[1053,5,5,974,979],[1054,8,7,979,986],[1055,10,8,986,994],[1056,8,4,994,998],[1057,2,2,998,1000],[1058,4,3,1000,1003],[1059,3,3,1003,1006],[1060,10,10,1006,1016],[1061,8,5,1016,1021]]],[45,32,29,1021,1050,[[1062,3,3,1021,1024],[1063,1,1,1024,1025],[1065,2,2,1025,1027],[1066,1,1,1027,1028],[1067,1,1,1028,1029],[1069,4,3,1029,1032],[1071,3,3,1032,1035],[1072,5,4,1035,1039],[1073,2,1,1039,1040],[1075,4,4,1040,1044],[1076,3,3,1044,1047],[1077,3,3,1047,1050]]],[46,73,59,1050,1109,[[1078,7,6,1050,1056],[1079,9,6,1056,1062],[1080,3,3,1062,1065],[1081,3,3,1065,1068],[1082,1,1,1068,1069],[1083,3,2,1069,1071],[1084,4,4,1071,1075],[1085,9,7,1075,1082],[1086,10,7,1082,1089],[1087,10,7,1089,1096],[1088,7,7,1096,1103],[1089,3,3,1103,1106],[1090,4,3,1106,1109]]],[47,30,24,1109,1133,[[1091,7,5,1109,1114],[1092,8,6,1114,1120],[1093,6,6,1120,1126],[1094,3,3,1126,1129],[1095,2,2,1129,1131],[1096,4,2,1131,1133]]],[48,33,28,1133,1161,[[1097,10,8,1133,1141],[1098,3,3,1141,1144],[1099,4,4,1144,1148],[1100,12,9,1148,1157],[1101,2,2,1157,1159],[1102,2,2,1159,1161]]],[49,20,17,1161,1178,[[1103,8,8,1161,1169],[1104,6,3,1169,1172],[1105,2,2,1172,1174],[1106,4,4,1174,1178]]],[50,20,18,1178,1196,[[1107,11,10,1178,1188],[1108,4,3,1188,1191],[1109,3,3,1191,1194],[1110,2,2,1194,1196]]],[51,20,15,1196,1211,[[1111,1,1,1196,1197],[1112,3,3,1197,1200],[1113,5,3,1200,1203],[1114,6,5,1203,1208],[1115,5,3,1208,1211]]],[52,8,6,1211,1217,[[1116,2,2,1211,1213],[1117,4,3,1213,1216],[1118,2,1,1216,1217]]],[53,19,18,1217,1235,[[1119,6,6,1217,1223],[1120,2,2,1223,1225],[1121,2,2,1225,1227],[1122,2,2,1227,1229],[1123,1,1,1229,1230],[1124,6,5,1230,1235]]],[54,19,14,1235,1249,[[1125,2,2,1235,1237],[1126,7,5,1237,1242],[1127,3,3,1242,1245],[1128,7,4,1245,1249]]],[55,2,2,1249,1251,[[1131,2,2,1249,1251]]],[56,2,2,1251,1253,[[1132,2,2,1251,1253]]],[57,65,58,1253,1311,[[1133,5,4,1253,1257],[1134,2,2,1257,1259],[1135,3,3,1259,1262],[1136,8,7,1262,1269],[1137,1,1,1269,1270],[1138,6,6,1270,1276],[1139,7,7,1276,1283],[1140,3,1,1283,1284],[1141,10,9,1284,1293],[1142,9,8,1293,1301],[1143,6,5,1301,1306],[1144,2,2,1306,1308],[1145,3,3,1308,1311]]],[58,12,11,1311,1322,[[1146,2,2,1311,1313],[1147,3,3,1313,1316],[1148,1,1,1316,1317],[1149,3,2,1317,1319],[1150,3,3,1319,1322]]],[59,37,33,1322,1355,[[1151,16,13,1322,1335],[1152,6,5,1335,1340],[1153,5,5,1340,1345],[1154,7,7,1345,1352],[1155,3,3,1352,1355]]],[60,12,11,1355,1366,[[1156,3,3,1355,1358],[1157,5,5,1358,1363],[1158,4,3,1363,1366]]],[61,9,8,1366,1374,[[1160,1,1,1366,1367],[1161,2,2,1367,1369],[1162,2,2,1369,1371],[1163,4,3,1371,1374]]],[62,3,3,1374,1377,[[1164,3,3,1374,1377]]],[63,2,1,1377,1378,[[1165,2,1,1377,1378]]],[64,6,5,1378,1383,[[1166,6,5,1378,1383]]],[65,82,69,1383,1452,[[1167,10,3,1383,1386],[1168,3,2,1386,1388],[1170,2,2,1388,1390],[1171,3,3,1390,1393],[1172,3,2,1393,1395],[1173,1,1,1395,1396],[1174,4,4,1396,1400],[1175,5,5,1400,1405],[1176,2,2,1405,1407],[1177,4,4,1407,1411],[1178,6,5,1411,1416],[1179,4,4,1416,1420],[1180,3,2,1420,1422],[1181,2,2,1422,1424],[1182,9,8,1424,1432],[1183,4,4,1432,1436],[1184,1,1,1436,1437],[1185,4,4,1437,1441],[1186,6,5,1441,1446],[1187,3,3,1446,1449],[1188,3,3,1449,1452]]]],[23170,23177,23180,23181,23182,23183,23189,23190,23191,23192,23202,23203,23204,23210,23214,23217,23221,23222,23227,23233,23235,23247,23254,23256,23259,23263,23264,23269,23288,23295,23308,23312,23316,23329,23330,23335,23337,23349,23350,23357,23359,23363,23368,23373,23376,23377,23378,23379,23380,23385,23386,23392,23396,23402,23405,23407,23417,23422,23426,23427,23428,23429,23434,23435,23438,23439,23440,23444,23458,23459,23466,23493,23498,23500,23507,23509,23518,23530,23533,23541,23561,23569,23572,23575,23581,23586,23587,23589,23591,23593,23610,23612,23616,23619,23620,23628,23629,23631,23632,23644,23647,23650,23654,23657,23662,23672,23677,23685,23693,23701,23715,23722,23724,23725,23727,23730,23733,23735,23736,23742,23747,23748,23756,23757,23763,23767,23779,23785,23786,23793,23794,23796,23799,23809,23810,23827,23828,23836,23838,23843,23844,23845,23847,23849,23857,23868,23875,23876,23877,23881,23882,23885,23888,23952,23966,23970,23971,23995,24009,24014,24018,24029,24031,24038,24049,24054,24057,24062,24064,24067,24072,24082,24084,24086,24090,24095,24099,24106,24121,24125,24135,24136,24139,24156,24159,24162,24180,24182,24196,24202,24205,24206,24211,24214,24219,24224,24227,24229,24236,24243,24244,24250,24253,24254,24259,24260,24261,24271,24277,24282,24286,24289,24291,24301,24307,24315,24317,24324,24330,24331,24341,24345,24358,24360,24365,24376,24377,24378,24382,24383,24385,24390,24398,24402,24408,24415,24417,24418,24438,24439,24443,24448,24452,24453,24458,24463,24478,24480,24481,24482,24487,24493,24496,24497,24503,24510,24513,24519,24520,24522,24523,24526,24527,24540,24560,24563,24566,24569,24571,24580,24581,24583,24585,24589,24603,24605,24611,24612,24613,24620,24621,24634,24641,24642,24648,24651,24654,24655,24663,24667,24683,24687,24714,24716,24720,24726,24727,24729,24730,24731,24732,24733,24760,24762,24763,24767,24770,24774,24780,24782,24786,24792,24795,24808,24814,24822,24864,24867,24878,24880,24885,24888,24892,24902,24913,24916,24919,24926,24932,24933,24937,24943,24948,24949,24972,24976,24977,24988,24995,25000,25001,25005,25007,25012,25014,25015,25018,25024,25028,25030,25034,25042,25064,25068,25072,25077,25079,25089,25094,25098,25100,25101,25105,25106,25110,25111,25121,25126,25131,25132,25139,25144,25145,25150,25152,25154,25158,25166,25184,25185,25196,25205,25206,25219,25225,25231,25239,25245,25259,25262,25267,25268,25271,25274,25275,25276,25277,25278,25279,25282,25284,25286,25288,25293,25296,25304,25305,25306,25311,25313,25314,25317,25329,25335,25345,25352,25353,25354,25357,25362,25363,25364,25365,25368,25370,25371,25373,25393,25397,25399,25401,25409,25412,25429,25437,25438,25454,25464,25469,25478,25480,25487,25508,25517,25527,25529,25537,25539,25540,25554,25558,25561,25563,25574,25576,25584,25588,25601,25603,25605,25606,25609,25610,25624,25628,25629,25636,25642,25647,25648,25653,25654,25655,25662,25663,25675,25678,25682,25693,25698,25701,25702,25705,25712,25713,25719,25723,25743,25759,25760,25761,25776,25796,25827,25830,25838,25839,25840,25847,25850,25863,25867,25874,25883,25897,25903,25904,25910,25918,25929,25930,25954,25960,25981,25996,25998,26004,26011,26017,26019,26024,26038,26041,26042,26043,26051,26053,26055,26056,26062,26087,26097,26106,26107,26108,26118,26124,26125,26133,26135,26136,26137,26138,26139,26142,26144,26156,26159,26161,26164,26170,26184,26192,26194,26195,26199,26201,26202,26203,26210,26211,26217,26234,26239,26255,26260,26266,26271,26272,26274,26278,26279,26281,26284,26286,26292,26297,26304,26308,26315,26323,26331,26333,26336,26338,26342,26359,26363,26366,26367,26376,26381,26382,26383,26387,26389,26407,26411,26416,26432,26433,26447,26451,26475,26476,26479,26482,26509,26517,26521,26523,26530,26548,26549,26550,26553,26554,26555,26561,26568,26571,26575,26577,26578,26579,26581,26587,26591,26592,26593,26604,26605,26607,26614,26616,26617,26622,26624,26626,26631,26632,26633,26635,26638,26652,26657,26659,26669,26680,26684,26705,26735,26739,26746,26747,26754,26758,26760,26777,26779,26782,26786,26791,26796,26800,26813,26818,26822,26834,26838,26842,26852,26862,26868,26870,26871,26873,26874,26875,26878,26881,26886,26892,26893,26894,26901,26902,26904,26905,26907,26921,26933,26934,26935,26936,26948,26969,26971,26974,26976,26980,26983,26987,26988,26997,26998,26999,27000,27004,27025,27028,27033,27039,27052,27075,27080,27095,27112,27113,27116,27119,27120,27121,27125,27131,27132,27137,27142,27150,27155,27169,27171,27179,27181,27192,27196,27199,27201,27202,27203,27214,27216,27217,27218,27222,27224,27233,27237,27242,27246,27255,27263,27264,27267,27275,27281,27283,27291,27302,27309,27313,27315,27317,27319,27320,27325,27327,27329,27332,27333,27334,27336,27341,27347,27354,27356,27364,27366,27371,27375,27376,27384,27391,27393,27396,27408,27409,27410,27413,27415,27420,27428,27434,27435,27436,27437,27438,27439,27440,27444,27446,27464,27472,27480,27481,27484,27491,27492,27493,27494,27495,27498,27499,27502,27506,27507,27517,27520,27523,27524,27528,27533,27543,27544,27558,27563,27564,27575,27576,27578,27579,27581,27584,27586,27588,27589,27590,27593,27606,27607,27612,27614,27615,27616,27627,27628,27629,27632,27639,27640,27641,27642,27643,27644,27647,27648,27655,27664,27665,27666,27667,27668,27670,27671,27672,27675,27676,27677,27679,27681,27690,27692,27693,27698,27701,27702,27708,27709,27711,27714,27715,27717,27721,27725,27727,27728,27734,27744,27745,27750,27754,27762,27764,27765,27766,27767,27784,27786,27793,27797,27799,27802,27804,27805,27809,27811,27812,27816,27817,27819,27830,27834,27835,27837,27839,27840,27841,27843,27856,27858,27860,27861,27863,27867,27872,27881,27884,27885,27893,27894,27895,27896,27904,27905,27911,27912,27913,27914,27915,27916,27922,27931,27935,27946,27947,27954,27955,27956,27957,27958,27966,27988,27998,28013,28016,28025,28027,28031,28042,28044,28049,28055,28059,28062,28063,28065,28068,28071,28072,28084,28085,28087,28090,28101,28123,28131,28134,28137,28144,28160,28163,28172,28176,28177,28178,28186,28189,28192,28194,28195,28198,28200,28202,28206,28218,28233,28241,28245,28255,28261,28270,28272,28280,28281,28289,28299,28305,28307,28310,28319,28321,28327,28328,28329,28331,28334,28341,28342,28355,28362,28363,28372,28376,28378,28401,28436,28439,28459,28485,28533,28539,28540,28569,28578,28598,28617,28624,28625,28634,28647,28686,28687,28700,28714,28728,28763,28772,28777,28779,28791,28805,28810,28811,28816,28821,28823,28828,28832,28833,28836,28837,28840,28848,28854,28859,28870,28874,28876,28882,28899,28916,28921,28925,28926,28931,28934,28936,28938,28946,28954,28955,28956,28957,28961,28964,28965,28966,28967,28969,28972,28976,28979,28984,28985,28986,28987,28992,28995,28999,29002,29003,29009,29020,29023,29026,29028,29046,29047,29053,29062,29063,29074,29075,29078,29082,29083,29089,29090,29092,29097,29108,29116,29119,29125,29126,29129,29137,29142,29155,29172,29175,29192,29196,29211,29212,29214,29216,29218,29220,29221,29225,29244,29250,29251,29253,29267,29270,29272,29280,29281,29284,29285,29287,29288,29291,29302,29304,29306,29336,29355,29359,29366,29371,29372,29373,29378,29380,29386,29390,29402,29407,29413,29432,29437,29457,29458,29459,29462,29469,29471,29475,29476,29477,29478,29481,29485,29490,29494,29496,29499,29516,29526,29527,29532,29550,29553,29565,29579,29582,29586,29593,29595,29602,29611,29612,29613,29618,29620,29630,29636,29639,29652,29660,29665,29674,29675,29683,29699,29702,29708,29711,29712,29713,29720,29723,29737,29738,29750,29757,29787,29795,29797,29800,29805,29807,29820,29821,29841,29847,29848,29852,29853,29859,29860,29868,29880,29881,29882,29888,29935,29937,29943,29944,29968,29969,29971,29977,29980,29987,30000,30006,30013,30015,30017,30019,30020,30024,30025,30030,30036,30050,30052,30054,30060,30063,30064,30067,30078,30081,30085,30088,30089,30092,30102,30111,30112,30114,30117,30120,30129,30130,30131,30133,30134,30138,30145,30147,30152,30157,30164,30172,30179,30180,30181,30183,30198,30214,30215,30249,30252,30262,30285,30291,30295,30299,30316,30322,30346,30350,30357,30358,30366,30376,30377,30378,30379,30381,30382,30384,30385,30386,30395,30396,30397,30399,30406,30407,30408,30413,30420,30433,30436,30444,30445,30446,30450,30452,30453,30454,30455,30456,30457,30475,30476,30477,30487,30490,30496,30504,30509,30512,30517,30522,30529,30531,30540,30567,30587,30593,30604,30612,30632,30634,30637,30647,30652,30655,30663,30676,30678,30685,30693,30697,30703,30708,30715,30727,30739,30777,30778,30785,30792,30793,30806,30808,30822,30832,30834,30835,30838,30841,30843,30847,30849,30855,30866,30867,30878,30881,30884,30887,30895,30897,30900,30904,30905,30911,30914,30918,30921,30937,30945,30953,30954,30955,30956,30957,30958,30968,30970,30971,30973,30978,30983,30986,30992,31014,31020,31026,31034,31037,31041,31046,31048,31052,31053,31077,31079,31080,31082,31085,31094]]],["+",[174,171,[[39,12,12,0,12,[[934,2,2,0,2],[936,1,1,2,3],[942,1,1,3,4],[943,1,1,4,5],[947,1,1,5,6],[949,2,2,6,8],[952,1,1,8,9],[953,2,2,9,11],[955,1,1,11,12]]],[40,10,10,12,22,[[957,1,1,12,13],[959,2,2,13,15],[960,1,1,15,16],[961,2,2,16,18],[962,1,1,18,19],[966,1,1,19,20],[967,1,1,20,21],[969,1,1,21,22]]],[41,16,16,22,38,[[973,2,2,22,24],[975,1,1,24,25],[976,1,1,25,26],[980,1,1,26,27],[981,1,1,27,28],[982,2,2,28,30],[983,1,1,30,31],[985,2,2,31,33],[986,1,1,33,34],[989,1,1,34,35],[990,2,2,35,37],[993,1,1,37,38]]],[42,19,18,38,56,[[1000,1,1,38,39],[1002,6,6,39,45],[1004,4,3,45,48],[1006,1,1,48,49],[1007,1,1,49,50],[1008,1,1,50,51],[1009,2,2,51,53],[1010,1,1,53,54],[1014,1,1,54,55],[1016,1,1,55,56]]],[43,12,10,56,66,[[1019,1,1,56,57],[1024,2,2,57,59],[1025,1,1,59,60],[1028,1,1,60,61],[1030,2,2,61,63],[1036,2,1,63,64],[1038,2,1,64,65],[1044,1,1,65,66]]],[44,11,11,66,77,[[1046,2,2,66,68],[1048,1,1,68,69],[1051,1,1,69,70],[1054,1,1,70,71],[1055,1,1,71,72],[1056,1,1,72,73],[1057,2,2,73,75],[1059,1,1,75,76],[1061,1,1,76,77]]],[45,1,1,77,78,[[1069,1,1,77,78]]],[46,8,8,78,86,[[1081,1,1,78,79],[1083,1,1,79,80],[1085,1,1,80,81],[1086,1,1,81,82],[1087,2,2,82,84],[1088,2,2,84,86]]],[47,2,2,86,88,[[1091,1,1,86,87],[1094,1,1,87,88]]],[48,3,3,88,91,[[1098,1,1,88,89],[1100,1,1,89,90],[1102,1,1,90,91]]],[49,4,4,91,95,[[1104,1,1,91,92],[1105,1,1,92,93],[1106,2,2,93,95]]],[50,4,4,95,99,[[1107,2,2,95,97],[1108,1,1,97,98],[1109,1,1,98,99]]],[51,4,4,99,103,[[1113,2,2,99,101],[1114,1,1,101,102],[1115,1,1,102,103]]],[52,2,2,103,105,[[1116,1,1,103,104],[1117,1,1,104,105]]],[53,5,5,105,110,[[1119,1,1,105,106],[1120,1,1,106,107],[1122,2,2,107,109],[1124,1,1,109,110]]],[54,3,3,110,113,[[1125,1,1,110,111],[1126,1,1,111,112],[1128,1,1,112,113]]],[57,23,23,113,136,[[1133,2,2,113,115],[1136,2,2,115,117],[1137,1,1,117,118],[1138,2,2,118,120],[1139,5,5,120,125],[1141,2,2,125,127],[1142,6,6,127,133],[1143,1,1,133,134],[1145,2,2,134,136]]],[59,12,12,136,148,[[1151,2,2,136,138],[1152,3,3,138,141],[1153,2,2,141,143],[1154,3,3,143,146],[1155,2,2,146,148]]],[60,3,3,148,151,[[1157,2,2,148,150],[1158,1,1,150,151]]],[61,1,1,151,152,[[1160,1,1,151,152]]],[62,1,1,152,153,[[1164,1,1,152,153]]],[64,2,2,153,155,[[1166,2,2,153,155]]],[65,16,16,155,171,[[1167,2,2,155,157],[1170,2,2,157,159],[1171,2,2,159,161],[1173,1,1,161,162],[1174,1,1,162,163],[1176,1,1,163,164],[1177,1,1,164,165],[1180,1,1,165,166],[1181,1,1,166,167],[1182,1,1,167,168],[1185,1,1,168,169],[1186,1,1,169,170],[1188,1,1,170,171]]]],[23295,23308,23379,23628,23672,23767,23845,23857,23966,24009,24014,24136,24253,24291,24317,24345,24383,24390,24452,24603,24654,24733,24926,24948,25030,25106,25262,25363,25371,25373,25454,25527,25529,25584,25682,25693,25705,25847,26170,26278,26279,26281,26308,26315,26323,26416,26432,26433,26509,26549,26614,26638,26652,26684,26791,26881,26988,27120,27142,27196,27336,27384,27409,27612,27670,27861,27955,27957,28016,28085,28160,28189,28245,28255,28261,28299,28363,28540,28876,28916,28956,28965,28986,28987,28999,29020,29062,29142,29244,29304,29355,29407,29437,29457,29462,29477,29494,29516,29526,29593,29602,29620,29630,29660,29675,29713,29723,29750,29757,29800,29820,29841,29888,29971,29977,30020,30030,30036,30052,30064,30067,30081,30085,30088,30092,30111,30131,30134,30145,30147,30152,30157,30172,30179,30249,30262,30397,30399,30407,30408,30420,30433,30444,30455,30456,30457,30476,30477,30512,30517,30540,30567,30647,30685,30697,30703,30715,30777,30778,30792,30793,30822,30838,30867,30887,30937,30953,30958,31020,31048,31085]]],["For",[2,2,[[42,1,1,0,1,[[1005,1,1,0,1]]],[61,1,1,1,2,[[1161,1,1,1,2]]]],[26479,30587]]],["To",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[48,1,1,2,3,[[1097,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[24062,26822,29212,30378]]],["Unto",[3,2,[[43,3,2,0,2,[[1036,2,1,0,1],[1043,1,1,1,2]]]],[27588,27830]]],["Upon",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27313]]],["a",[12,7,[[44,4,1,0,1,[[1056,4,1,0,1]]],[45,2,2,1,3,[[1065,1,1,1,2],[1076,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]],[57,4,2,4,6,[[1133,2,1,4,5],[1140,2,1,5,6]]],[58,1,1,6,7,[[1150,1,1,6,7]]]],[28218,28436,28763,28916,29968,30102,30357]]],["against",[26,22,[[39,2,2,0,2,[[946,2,2,0,2]]],[40,1,1,2,3,[[959,1,1,2,3]]],[41,8,7,3,10,[[979,1,1,3,4],[984,2,1,4,5],[987,2,2,5,7],[989,2,2,7,9],[994,1,1,9,10]]],[42,2,2,10,12,[[1008,1,1,10,11],[1009,1,1,11,12]]],[43,5,3,12,15,[[1023,1,1,12,13],[1026,1,1,13,14],[1042,3,1,14,15]]],[44,1,1,15,16,[[1053,1,1,15,16]]],[45,3,2,16,18,[[1067,1,1,16,17],[1069,2,1,17,18]]],[53,1,1,18,19,[[1124,1,1,18,19]]],[54,1,1,19,20,[[1125,1,1,19,20]]],[57,1,1,20,21,[[1144,1,1,20,21]]],[60,1,1,21,22,[[1158,1,1,21,22]]]],[23742,23748,24317,25225,25469,25606,25609,25654,25655,25929,26587,26659,27112,27217,27804,28123,28485,28539,29807,29821,30215,30529]]],["among",[18,18,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,5,5,1,6,[[960,2,2,1,3],[964,2,2,3,5],[969,1,1,5,6]]],[41,3,3,6,9,[[980,1,1,6,7],[982,1,1,7,8],[996,1,1,8,9]]],[42,2,2,9,11,[[1002,1,1,9,10],[1017,1,1,10,11]]],[43,4,4,11,15,[[1019,1,1,11,12],[1021,1,1,12,13],[1031,1,1,13,14],[1037,1,1,14,15]]],[46,1,1,15,16,[[1088,1,1,15,16]]],[51,1,1,16,17,[[1115,1,1,16,17]]],[59,1,1,17,18,[[1154,1,1,17,18]]]],[23561,24330,24341,24519,24520,24727,25259,25399,26038,26266,26921,26971,27039,27428,27655,28995,29636,30454]]],["at",[20,20,[[39,2,2,0,2,[[940,1,1,0,1],[946,1,1,1,2]]],[41,3,3,2,5,[[980,1,1,2,3],[981,1,1,3,4],[983,1,1,4,5]]],[42,1,1,5,6,[[1007,1,1,5,6]]],[43,12,12,6,18,[[1021,1,1,6,7],[1025,1,1,7,8],[1035,1,1,8,9],[1037,3,3,9,12],[1038,2,2,12,14],[1040,1,1,14,15],[1042,1,1,15,16],[1044,1,1,16,17],[1045,1,1,17,18]]],[44,1,1,18,19,[[1049,1,1,18,19]]],[54,1,1,19,20,[[1126,1,1,19,20]]]],[23530,23756,25271,25362,25437,26555,27028,27216,27579,27640,27641,27642,27667,27677,27745,27811,27858,27911,28042,29853]]],["before",[2,2,[[43,1,1,0,1,[[1039,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[27734,30299]]],["behold",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28848]]],["by",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[23269,27169]]],["concerning",[5,5,[[43,1,1,0,1,[[1019,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]],[51,1,1,4,5,[[1115,1,1,4,5]]]],[26974,28355,28955,29336,29639]]],["for",[92,86,[[39,9,9,0,9,[[933,1,1,0,1],[934,1,1,1,2],[936,1,1,2,3],[938,2,2,3,5],[952,1,1,5,6],[954,2,2,6,8],[955,1,1,8,9]]],[40,6,6,9,15,[[957,2,2,9,11],[962,2,2,11,13],[969,1,1,13,14],[970,1,1,14,15]]],[41,13,11,15,26,[[974,2,1,15,16],[975,1,1,16,17],[977,2,2,17,19],[981,4,4,19,23],[984,1,1,23,24],[986,2,1,24,25],[993,1,1,25,26]]],[42,2,2,26,28,[[997,1,1,26,27],[1014,1,1,27,28]]],[43,10,10,28,38,[[1019,1,1,28,29],[1024,2,2,29,31],[1026,1,1,31,32],[1027,1,1,32,33],[1030,2,2,33,35],[1031,1,1,35,36],[1040,1,1,36,37],[1043,1,1,37,38]]],[44,16,16,38,54,[[1046,1,1,38,39],[1047,1,1,39,40],[1049,4,4,40,44],[1053,1,1,44,45],[1054,2,2,45,47],[1055,1,1,47,48],[1058,1,1,48,49],[1060,4,4,49,53],[1061,1,1,53,54]]],[45,5,4,54,58,[[1066,1,1,54,55],[1072,2,1,55,56],[1075,1,1,56,57],[1077,1,1,57,58]]],[46,6,4,58,62,[[1082,1,1,58,59],[1085,2,1,59,60],[1086,1,1,60,61],[1087,2,1,61,62]]],[47,2,2,62,64,[[1093,1,1,62,63],[1095,1,1,63,64]]],[48,5,4,64,68,[[1098,1,1,64,65],[1100,2,1,65,66],[1101,1,1,66,67],[1102,1,1,67,68]]],[49,2,2,68,70,[[1103,2,2,68,70]]],[50,3,3,70,73,[[1107,2,2,70,72],[1110,1,1,72,73]]],[54,1,1,73,74,[[1128,1,1,73,74]]],[55,1,1,74,75,[[1131,1,1,74,75]]],[57,5,5,75,80,[[1135,1,1,75,76],[1138,1,1,76,77],[1141,2,2,77,79],[1143,1,1,79,80]]],[58,1,1,80,81,[[1147,1,1,80,81]]],[59,3,3,81,84,[[1151,1,1,81,82],[1152,1,1,82,83],[1154,1,1,83,84]]],[65,2,2,84,86,[[1175,1,1,84,85],[1188,1,1,85,86]]]],[23247,23316,23349,23427,23435,23971,24067,24082,24139,24219,24259,24415,24418,24726,24763,25007,25028,25111,25121,25304,25306,25314,25363,25478,25588,25839,26051,26822,26987,27121,27137,27237,27263,27364,27409,27440,27764,27839,27935,27988,28025,28027,28031,28044,28144,28163,28172,28192,28270,28305,28307,28329,28334,28362,28459,28617,28700,28777,28882,28946,28966,28979,29108,29175,29251,29284,29306,29359,29378,29386,29481,29490,29550,29881,29937,30000,30060,30114,30120,30180,30316,30378,30413,30452,30855,31082]]],["from",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24943]]],["in",[137,127,[[39,16,15,0,15,[[930,1,1,0,1],[932,1,1,1,2],[938,5,4,2,6],[940,1,1,6,7],[941,2,2,7,9],[943,1,1,9,10],[946,2,2,10,12],[954,1,1,12,13],[955,1,1,13,14],[956,1,1,14,15]]],[40,14,12,15,27,[[957,1,1,15,16],[958,1,1,16,17],[961,3,2,17,19],[962,1,1,19,20],[965,1,1,20,21],[967,2,1,21,22],[969,2,2,22,24],[970,2,2,24,26],[971,1,1,26,27]]],[41,19,18,27,45,[[973,2,2,27,29],[974,1,1,29,30],[976,1,1,30,31],[978,1,1,31,32],[979,2,2,32,34],[980,3,2,34,36],[983,2,2,36,38],[985,1,1,38,39],[986,2,2,39,41],[988,1,1,41,42],[993,2,2,42,44],[994,1,1,44,45]]],[42,19,18,45,63,[[997,1,1,45,46],[998,1,1,46,47],[999,3,3,47,50],[1001,1,1,50,51],[1003,1,1,51,52],[1005,1,1,52,53],[1007,3,3,53,56],[1008,1,1,56,57],[1010,2,1,57,58],[1013,1,1,58,59],[1015,1,1,59,60],[1016,3,3,60,63]]],[43,15,15,63,78,[[1019,2,2,63,65],[1021,1,1,65,66],[1025,2,2,66,68],[1027,1,1,68,69],[1029,1,1,69,70],[1030,1,1,70,71],[1033,1,1,71,72],[1034,1,1,72,73],[1035,1,1,73,74],[1036,2,2,74,76],[1041,1,1,76,77],[1043,1,1,77,78]]],[44,3,3,78,81,[[1053,1,1,78,79],[1055,1,1,79,80],[1056,1,1,80,81]]],[45,6,6,81,87,[[1062,2,2,81,83],[1069,1,1,83,84],[1072,2,2,84,86],[1076,1,1,86,87]]],[46,9,9,87,96,[[1078,3,3,87,90],[1079,1,1,90,91],[1083,1,1,91,92],[1085,2,2,92,94],[1087,1,1,94,95],[1088,1,1,95,96]]],[47,6,5,96,101,[[1092,2,2,96,98],[1093,1,1,98,99],[1095,1,1,99,100],[1096,2,1,100,101]]],[48,3,3,101,104,[[1097,1,1,101,102],[1099,1,1,102,103],[1100,1,1,103,104]]],[49,5,3,104,107,[[1103,1,1,104,105],[1104,4,2,105,107]]],[50,3,3,107,110,[[1107,1,1,107,108],[1108,1,1,108,109],[1109,1,1,109,110]]],[51,2,2,110,112,[[1113,1,1,110,111],[1114,1,1,111,112]]],[52,1,1,112,113,[[1117,1,1,112,113]]],[53,1,1,113,114,[[1124,1,1,113,114]]],[56,1,1,114,115,[[1132,1,1,114,115]]],[57,1,1,115,116,[[1143,1,1,115,116]]],[58,1,1,116,117,[[1148,1,1,116,117]]],[59,3,2,117,119,[[1151,3,2,117,119]]],[60,2,2,119,121,[[1156,2,2,119,121]]],[61,1,1,121,122,[[1163,1,1,121,122]]],[65,6,5,122,127,[[1167,1,1,122,123],[1172,2,1,123,124],[1177,1,1,124,125],[1179,1,1,125,126],[1183,1,1,126,127]]]],[23192,23222,23426,23444,23458,23459,23507,23569,23572,23650,23733,23747,24121,24180,24214,24224,24261,24378,24398,24415,24580,24648,24726,24733,24774,24814,24864,24913,24937,25001,25098,25154,25196,25245,25279,25293,25412,25438,25539,25561,25563,25628,25840,25863,25883,26062,26118,26135,26136,26138,26255,26333,26447,26548,26549,26575,26616,26669,26782,26838,26874,26886,26893,26976,26980,27025,27192,27199,27302,27341,27391,27507,27544,27578,27590,27607,27793,27841,28134,28202,28241,28376,28378,28533,28624,28625,28772,28805,28810,28821,28833,28899,28938,28954,28987,28992,29083,29097,29119,29172,29192,29216,29267,29285,29366,29407,29413,29475,29499,29527,29595,29620,29665,29797,29944,30181,30322,30382,30395,30487,30496,30632,30708,30808,30881,30914,30992]]],["into",[571,527,[[39,126,116,0,116,[[930,7,7,0,7],[931,2,2,7,9],[932,5,5,9,14],[933,5,5,14,19],[934,4,4,19,23],[935,2,2,23,25],[936,9,8,25,33],[937,8,6,33,39],[938,5,4,39,43],[939,1,1,43,44],[940,5,5,44,49],[941,8,8,49,57],[942,7,7,57,64],[943,7,6,64,70],[944,1,1,70,71],[945,5,4,71,75],[946,6,4,75,79],[947,4,4,79,83],[948,4,4,83,87],[949,7,7,87,94],[950,2,2,94,96],[952,1,1,96,97],[953,6,5,97,102],[954,7,7,102,109],[955,3,3,109,112],[956,5,4,112,116]]],[40,90,74,116,190,[[957,8,7,116,123],[958,5,4,123,127],[959,4,4,127,131],[960,2,2,131,133],[961,6,4,133,137],[962,9,9,137,146],[963,9,6,146,152],[964,5,4,152,156],[965,15,9,156,165],[966,5,5,165,170],[967,6,4,170,174],[968,2,2,174,176],[969,1,1,176,177],[970,8,8,177,185],[972,5,5,185,190]]],[41,101,96,190,286,[[973,5,4,190,194],[974,5,5,194,199],[975,3,3,199,202],[976,7,7,202,209],[977,6,6,209,215],[978,5,5,215,220],[979,5,5,220,225],[980,10,9,225,234],[981,8,7,234,241],[982,6,5,241,246],[983,1,1,246,247],[984,3,3,247,250],[985,1,1,250,251],[986,4,4,251,255],[987,2,2,255,257],[988,5,5,257,262],[989,3,3,262,265],[990,3,3,265,268],[991,3,3,268,271],[993,2,2,271,273],[994,8,7,273,280],[995,3,3,280,283],[996,3,3,283,286]]],[42,64,62,286,348,[[997,2,2,286,288],[999,6,6,288,294],[1000,9,9,294,303],[1001,2,2,303,305],[1002,6,6,305,311],[1003,2,2,311,313],[1004,1,1,313,314],[1005,1,1,314,315],[1006,3,3,315,318],[1007,4,4,318,322],[1008,2,2,322,324],[1009,4,4,324,328],[1011,1,1,328,329],[1012,4,4,329,333],[1013,2,1,333,334],[1014,6,6,334,340],[1015,2,2,340,342],[1016,5,4,342,346],[1017,2,2,346,348]]],[43,88,85,348,433,[[1018,4,2,348,350],[1019,3,2,350,352],[1020,4,4,352,356],[1022,1,1,356,357],[1024,8,8,357,365],[1025,1,1,365,366],[1026,4,4,366,370],[1027,3,3,370,373],[1028,3,3,373,376],[1029,1,1,376,377],[1030,1,1,377,378],[1031,4,4,378,382],[1033,9,9,382,391],[1034,1,1,391,392],[1035,4,4,392,396],[1036,4,4,396,400],[1037,4,4,400,404],[1038,9,9,404,413],[1039,5,5,413,418],[1040,4,4,418,422],[1042,1,1,422,423],[1044,7,7,423,430],[1045,3,3,430,433]]],[44,13,12,433,445,[[1046,1,1,433,434],[1050,2,2,434,436],[1051,3,2,436,438],[1053,1,1,438,439],[1055,3,3,439,442],[1056,1,1,442,443],[1060,2,2,443,445]]],[45,3,2,445,447,[[1073,2,1,445,446],[1075,1,1,446,447]]],[46,6,6,447,453,[[1078,1,1,447,448],[1079,1,1,448,449],[1084,1,1,449,450],[1088,2,2,450,452],[1089,1,1,452,453]]],[47,4,4,453,457,[[1091,2,2,453,455],[1093,1,1,455,456],[1094,1,1,456,457]]],[48,2,2,457,459,[[1100,2,2,457,459]]],[50,1,1,459,460,[[1107,1,1,459,460]]],[52,2,1,460,461,[[1118,2,1,460,461]]],[53,7,7,461,468,[[1119,3,3,461,464],[1121,2,2,464,466],[1124,2,2,466,468]]],[54,1,1,468,469,[[1127,1,1,468,469]]],[57,20,18,469,487,[[1133,1,1,469,470],[1135,2,2,470,472],[1136,6,5,472,477],[1138,1,1,477,478],[1140,1,1,478,479],[1141,5,4,479,483],[1142,2,2,483,485],[1143,1,1,485,486],[1145,1,1,486,487]]],[58,4,4,487,491,[[1146,1,1,487,488],[1149,1,1,488,489],[1150,2,2,489,491]]],[59,3,3,491,494,[[1151,1,1,491,492],[1152,1,1,492,493],[1153,1,1,493,494]]],[60,1,1,494,495,[[1156,1,1,494,495]]],[61,2,2,495,497,[[1162,2,2,495,497]]],[62,2,2,497,499,[[1164,2,2,497,499]]],[64,1,1,499,500,[[1166,1,1,499,500]]],[65,30,27,500,527,[[1168,3,2,500,502],[1171,1,1,502,503],[1174,2,2,503,505],[1178,4,3,505,508],[1179,1,1,508,509],[1180,2,1,509,510],[1181,1,1,510,511],[1182,3,3,511,514],[1183,3,3,514,517],[1184,1,1,517,518],[1185,1,1,518,519],[1186,4,4,519,523],[1187,3,3,523,526],[1188,1,1,526,527]]]],[23180,23181,23182,23183,23189,23190,23191,23202,23204,23210,23214,23217,23221,23227,23235,23254,23259,23263,23264,23288,23295,23308,23312,23335,23337,23350,23357,23359,23368,23373,23376,23377,23378,23380,23396,23402,23405,23407,23417,23422,23428,23429,23440,23466,23493,23498,23500,23518,23533,23541,23569,23575,23581,23586,23587,23589,23593,23610,23612,23619,23620,23629,23631,23632,23644,23647,23650,23654,23662,23672,23685,23701,23715,23722,23725,23730,23735,23736,23757,23763,23779,23785,23786,23793,23794,23796,23799,23828,23836,23838,23843,23844,23847,23849,23882,23885,23995,24029,24031,24038,24049,24054,24072,24084,24086,24095,24099,24106,24125,24135,24156,24182,24202,24205,24206,24211,24227,24229,24236,24244,24250,24253,24260,24261,24271,24282,24286,24289,24301,24307,24315,24324,24360,24365,24376,24377,24382,24408,24417,24438,24439,24443,24452,24453,24458,24463,24478,24480,24481,24482,24487,24496,24510,24513,24526,24527,24540,24560,24563,24566,24569,24580,24581,24583,24585,24589,24605,24611,24612,24613,24642,24651,24655,24663,24714,24716,24732,24767,24770,24780,24782,24792,24795,24808,24822,24878,24880,24885,24888,24892,24902,24932,24933,24972,24976,24977,24988,25000,25012,25028,25034,25042,25064,25068,25077,25079,25100,25101,25105,25110,25111,25126,25131,25144,25145,25150,25152,25158,25184,25185,25196,25206,25219,25231,25239,25267,25274,25275,25276,25277,25278,25282,25286,25296,25305,25311,25313,25329,25335,25345,25353,25364,25365,25368,25373,25401,25409,25464,25487,25517,25537,25554,25558,25574,25576,25601,25603,25624,25629,25636,25642,25648,25653,25663,25678,25698,25712,25713,25743,25761,25776,25827,25850,25867,25874,25897,25904,25910,25918,25930,25954,25960,25981,25998,26017,26042,26053,26087,26124,26125,26137,26139,26142,26144,26159,26170,26184,26194,26199,26201,26202,26203,26210,26217,26234,26260,26271,26272,26274,26278,26279,26331,26342,26383,26479,26482,26517,26521,26530,26550,26553,26577,26604,26626,26632,26633,26635,26657,26705,26739,26746,26747,26754,26777,26786,26796,26800,26813,26818,26822,26834,26842,26873,26878,26892,26894,26901,26905,26934,26936,26969,26983,26997,26998,26999,27004,27080,27119,27120,27125,27131,27132,27150,27155,27171,27214,27222,27224,27233,27255,27275,27281,27283,27315,27317,27319,27354,27376,27415,27434,27436,27439,27492,27493,27498,27502,27506,27507,27517,27520,27523,27533,27564,27575,27576,27584,27593,27607,27614,27616,27627,27628,27629,27644,27667,27672,27675,27690,27692,27693,27698,27701,27702,27708,27714,27715,27727,27728,27744,27750,27754,27762,27819,27856,27861,27872,27885,27893,27894,27896,27904,27916,27922,27956,28049,28059,28071,28072,28137,28194,28195,28206,28233,28327,28331,28647,28687,28816,28837,28921,29002,29003,29026,29074,29078,29129,29137,29281,29287,29478,29683,29699,29708,29711,29737,29738,29795,29797,29859,29969,30006,30013,30015,30017,30019,30024,30025,30063,30102,30112,30117,30129,30130,30138,30164,30180,30252,30291,30350,30358,30366,30386,30408,30446,30490,30604,30612,30652,30655,30676,30727,30739,30785,30832,30835,30897,30900,30905,30918,30945,30954,30970,30971,30973,30978,30983,30986,31014,31037,31041,31048,31052,31053,31077,31079,31080,31094]]],["my",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23507]]],["of",[7,7,[[39,1,1,0,1,[[933,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]],[46,3,3,2,5,[[1087,2,2,2,4],[1089,1,1,4,5]]],[57,1,1,5,6,[[1139,1,1,5,6]]],[59,1,1,6,7,[[1151,1,1,6,7]]]],[23256,27816,28984,28986,29028,30078,30385]]],["on",[58,53,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,3,3,1,4,[[960,1,1,1,2],[964,1,1,2,3],[970,1,1,3,4]]],[41,5,4,4,8,[[978,1,1,4,5],[980,1,1,5,6],[984,1,1,6,7],[987,2,1,7,8]]],[42,34,32,8,40,[[997,1,1,8,9],[998,1,1,9,10],[999,2,2,10,12],[1000,1,1,12,13],[1002,4,4,13,17],[1003,4,4,17,21],[1004,3,3,21,24],[1005,2,2,24,26],[1006,1,1,26,27],[1007,2,2,27,29],[1008,7,5,29,34],[1010,1,1,34,35],[1012,1,1,35,36],[1013,1,1,36,37],[1015,1,1,37,38],[1017,2,2,38,40]]],[43,6,5,40,45,[[1020,1,1,40,41],[1023,1,1,41,42],[1030,1,1,42,43],[1031,1,1,43,44],[1036,2,1,44,45]]],[44,1,1,45,46,[[1061,1,1,45,46]]],[46,1,1,46,47,[[1088,1,1,46,47]]],[47,1,1,47,48,[[1093,1,1,47,48]]],[48,1,1,48,49,[[1100,1,1,48,49]]],[49,1,1,49,50,[[1103,1,1,49,50]]],[61,3,2,50,52,[[1163,3,2,50,52]]],[65,1,1,52,53,[[1179,1,1,52,53]]]],[24159,24331,24523,24760,25166,25268,25508,25610,26056,26106,26138,26156,26195,26286,26292,26297,26304,26359,26366,26367,26376,26387,26389,26411,26475,26476,26523,26568,26571,26591,26617,26622,26624,26626,26680,26735,26779,26862,26902,26904,27000,27116,27371,27437,27589,28342,29009,29116,29280,29390,30634,30637,30921]]],["the",[9,9,[[39,2,2,0,2,[[949,1,1,0,1],[950,1,1,1,2]]],[40,2,2,2,4,[[968,2,2,2,4]]],[41,1,1,4,5,[[992,1,1,4,5]]],[43,1,1,5,6,[[1021,1,1,5,6]]],[44,1,1,6,7,[[1058,1,1,6,7]]],[45,1,1,7,8,[[1071,1,1,7,8]]],[59,1,1,8,9,[[1152,1,1,8,9]]]],[23868,23888,24683,24687,25796,27033,28280,28598,30406]]],["throughout",[6,6,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,3,3,1,4,[[957,2,2,1,3],[970,1,1,3,4]]],[43,1,1,4,5,[[1043,1,1,4,5]]],[48,1,1,5,6,[[1099,1,1,5,6]]]],[23233,24243,24254,24763,27843,29272]]],["till",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29371]]],["to",[285,272,[[39,22,21,0,21,[[930,2,2,0,2],[935,1,1,2,3],[936,1,1,3,4],[937,2,2,4,6],[938,3,3,6,9],[942,1,1,9,10],[944,1,1,10,11],[945,2,2,11,13],[948,2,2,13,15],[949,1,1,15,16],[950,4,3,16,19],[951,1,1,19,20],[953,1,1,20,21]]],[40,21,21,21,42,[[958,1,1,21,22],[961,1,1,22,23],[962,1,1,23,24],[963,2,2,24,26],[964,4,4,26,30],[965,1,1,30,31],[966,3,3,31,34],[967,3,3,34,37],[969,3,3,37,40],[970,2,2,40,42]]],[41,41,41,42,83,[[973,2,2,42,44],[974,7,7,44,51],[976,3,3,51,54],[977,2,2,54,56],[979,1,1,56,57],[980,1,1,57,58],[981,4,4,58,62],[982,3,3,62,65],[986,1,1,65,66],[987,1,1,66,67],[988,1,1,67,68],[989,1,1,68,69],[990,2,2,69,71],[991,2,2,71,73],[993,2,2,73,75],[994,2,2,75,77],[996,6,6,77,83]]],[42,22,21,83,104,[[998,3,3,83,86],[999,1,1,86,87],[1000,1,1,87,88],[1001,1,1,88,89],[1002,1,1,89,90],[1004,1,1,90,91],[1005,1,1,91,92],[1007,3,3,92,95],[1008,4,3,95,98],[1012,1,1,98,99],[1013,1,1,99,100],[1016,3,3,100,103],[1017,1,1,103,104]]],[43,84,80,104,184,[[1018,1,1,104,105],[1021,1,1,105,106],[1022,2,2,106,108],[1023,1,1,108,109],[1025,5,5,109,114],[1026,4,3,114,117],[1027,3,3,117,120],[1028,4,4,120,124],[1029,1,1,124,125],[1030,8,7,125,132],[1031,4,4,132,136],[1032,5,5,136,141],[1033,6,5,141,146],[1034,3,3,146,149],[1035,4,4,149,153],[1036,2,2,153,155],[1037,4,4,155,159],[1038,5,5,159,164],[1039,2,2,164,166],[1040,3,3,166,169],[1041,1,1,169,170],[1042,5,5,170,175],[1043,3,3,175,178],[1044,2,2,178,180],[1045,5,4,180,184]]],[44,19,19,184,203,[[1046,3,3,184,187],[1047,1,1,187,188],[1050,2,2,188,190],[1051,1,1,190,191],[1052,1,1,191,192],[1053,1,1,192,193],[1054,2,2,193,195],[1056,1,1,195,196],[1058,1,1,196,197],[1059,2,2,197,199],[1060,3,3,199,202],[1061,1,1,202,203]]],[45,3,3,203,206,[[1065,1,1,203,204],[1075,1,1,204,205],[1077,1,1,205,206]]],[46,18,16,206,222,[[1079,3,2,206,208],[1080,2,2,208,210],[1081,1,1,210,211],[1084,2,2,211,213],[1085,2,2,213,215],[1086,3,3,215,218],[1087,1,1,218,219],[1089,1,1,219,220],[1090,3,2,220,222]]],[47,8,7,222,229,[[1091,2,2,222,224],[1092,3,3,224,227],[1094,1,1,227,228],[1096,2,1,228,229]]],[48,5,5,229,234,[[1097,3,3,229,232],[1099,1,1,232,233],[1100,1,1,233,234]]],[49,3,3,234,237,[[1103,1,1,234,235],[1104,1,1,235,236],[1106,1,1,236,237]]],[50,3,3,237,240,[[1107,1,1,237,238],[1108,1,1,238,239],[1109,1,1,239,240]]],[51,4,4,240,244,[[1112,1,1,240,241],[1114,1,1,241,242],[1115,2,2,242,244]]],[52,2,2,244,246,[[1117,2,2,244,246]]],[53,3,3,246,249,[[1119,1,1,246,247],[1123,1,1,247,248],[1124,1,1,248,249]]],[54,6,5,249,254,[[1126,3,2,249,251],[1127,1,1,251,252],[1128,2,2,252,254]]],[55,1,1,254,255,[[1131,1,1,254,255]]],[57,2,2,255,257,[[1139,1,1,255,256],[1143,1,1,256,257]]],[58,3,2,257,259,[[1146,1,1,257,258],[1149,2,1,258,259]]],[59,1,1,259,260,[[1154,1,1,259,260]]],[60,3,2,260,262,[[1157,1,1,260,261],[1158,2,1,261,262]]],[63,2,1,262,263,[[1165,2,1,262,263]]],[64,1,1,263,264,[[1166,1,1,263,264]]],[65,8,8,264,272,[[1175,1,1,264,265],[1176,1,1,265,266],[1177,2,2,266,268],[1178,1,1,268,269],[1179,1,1,269,270],[1182,1,1,270,271],[1186,1,1,271,272]]]],[23170,23177,23329,23373,23386,23392,23434,23438,23439,23616,23677,23724,23727,23809,23810,23827,23875,23877,23881,23952,24018,24277,24402,24448,24493,24497,24503,24513,24522,24526,24571,24620,24621,24634,24641,24655,24667,24726,24729,24731,24762,24786,24916,24949,24995,25005,25012,25014,25015,25018,25024,25072,25079,25094,25132,25139,25205,25284,25317,25352,25354,25357,25370,25393,25397,25561,25605,25647,25662,25702,25719,25759,25760,25838,25847,25897,25903,25996,26004,26011,26024,26041,26043,26097,26107,26108,26133,26161,26211,26281,26407,26451,26561,26578,26579,26581,26592,26593,26758,26760,26870,26871,26875,26907,26948,27052,27080,27095,27113,27179,27181,27201,27203,27216,27218,27242,27246,27264,27267,27291,27309,27320,27327,27332,27356,27366,27375,27376,27393,27396,27408,27410,27434,27435,27438,27440,27444,27446,27464,27472,27480,27484,27491,27494,27495,27499,27524,27528,27543,27558,27576,27579,27581,27586,27606,27632,27640,27641,27643,27668,27671,27676,27679,27681,27709,27721,27765,27766,27767,27786,27797,27799,27805,27812,27816,27835,27837,27841,27860,27867,27905,27912,27914,27915,27947,27954,27958,27966,28063,28065,28084,28101,28131,28177,28186,28245,28270,28281,28289,28310,28319,28321,28362,28439,28686,28791,28833,28836,28854,28859,28874,28925,28926,28936,28956,28957,28964,28967,28976,29023,29046,29053,29074,29075,29082,29089,29092,29155,29196,29211,29218,29225,29253,29291,29380,29402,29459,29469,29496,29532,29586,29612,29630,29636,29674,29675,29712,29787,29805,29847,29852,29860,29880,29882,29935,30089,30183,30285,30346,30450,30522,30531,30663,30676,30849,30866,30878,30884,30895,30911,30968,31046]]],["toward",[26,24,[[39,1,1,0,1,[[956,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[985,1,1,2,3]]],[42,1,1,3,4,[[1002,1,1,3,4]]],[43,6,5,4,9,[[1018,1,1,4,5],[1037,2,1,5,6],[1041,1,1,6,7],[1044,1,1,7,8],[1045,1,1,8,9]]],[44,1,1,9,10,[[1050,1,1,9,10]]],[46,6,6,10,16,[[1078,1,1,10,11],[1079,1,1,11,12],[1084,1,1,12,13],[1086,1,1,13,14],[1087,1,1,14,15],[1090,1,1,15,16]]],[47,1,1,16,17,[[1092,1,1,16,17]]],[48,1,1,17,18,[[1097,1,1,17,18]]],[51,3,2,18,20,[[1113,2,1,18,19],[1114,1,1,19,20]]],[52,1,1,20,21,[[1116,1,1,20,21]]],[56,1,1,21,22,[[1132,1,1,21,22]]],[57,1,1,22,23,[[1138,1,1,22,23]]],[59,1,1,23,24,[[1153,1,1,23,24]]]],[24196,25480,25540,26274,26933,27647,27784,27895,27913,28055,28816,28832,28931,28964,28972,29047,29089,29214,29602,29613,29652,29943,30054,30445]]],["until",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29220]]],["unto",[205,183,[[39,15,15,0,15,[[931,1,1,0,1],[935,1,1,1,2],[936,1,1,2,3],[937,1,1,3,4],[940,1,1,4,5],[941,1,1,5,6],[942,1,1,6,7],[943,1,1,7,8],[944,1,1,8,9],[949,1,1,9,10],[950,1,1,10,11],[952,1,1,11,12],[954,2,2,12,14],[955,1,1,14,15]]],[40,7,7,15,22,[[960,1,1,15,16],[961,2,2,16,18],[967,2,2,18,20],[969,1,1,20,21],[971,1,1,21,22]]],[41,10,10,22,32,[[973,1,1,22,23],[974,1,1,23,24],[976,1,1,24,25],[980,1,1,25,26],[983,1,1,26,27],[989,1,1,27,28],[990,2,2,28,30],[993,1,1,30,31],[996,1,1,31,32]]],[42,22,20,32,52,[[997,1,1,32,33],[1000,3,3,33,36],[1001,3,2,36,38],[1002,1,1,38,39],[1003,5,4,39,43],[1004,1,1,43,44],[1007,2,2,44,46],[1008,2,2,46,48],[1009,1,1,48,49],[1014,1,1,49,50],[1015,1,1,50,51],[1016,1,1,51,52]]],[43,35,33,52,85,[[1018,1,1,52,53],[1021,1,1,53,54],[1022,1,1,54,55],[1025,1,1,55,56],[1026,1,1,56,57],[1028,4,4,57,61],[1029,1,1,61,62],[1030,2,2,62,64],[1031,1,1,64,65],[1032,1,1,65,66],[1034,1,1,66,67],[1035,1,1,67,68],[1036,1,1,68,69],[1037,3,3,69,72],[1038,5,3,72,75],[1039,3,3,75,78],[1042,3,3,78,81],[1043,2,2,81,83],[1044,2,2,83,85]]],[44,26,21,85,106,[[1046,3,3,85,88],[1048,2,2,88,90],[1050,4,4,90,94],[1051,5,3,94,97],[1052,1,1,97,98],[1054,3,2,98,100],[1055,4,3,100,103],[1060,1,1,103,104],[1061,3,2,104,106]]],[45,6,6,106,112,[[1062,1,1,106,107],[1063,1,1,107,108],[1071,1,1,108,109],[1072,1,1,109,110],[1075,1,1,110,111],[1077,1,1,111,112]]],[46,11,8,112,120,[[1078,1,1,112,113],[1079,3,2,113,115],[1081,1,1,115,116],[1085,1,1,116,117],[1086,4,2,117,119],[1087,1,1,119,120]]],[47,6,5,120,125,[[1091,2,2,120,122],[1092,2,1,122,123],[1093,2,2,123,125]]],[48,8,7,125,132,[[1097,3,3,125,128],[1098,1,1,128,129],[1100,4,3,129,132]]],[49,4,4,132,136,[[1103,2,2,132,134],[1105,1,1,134,135],[1106,1,1,135,136]]],[50,6,6,136,142,[[1107,4,4,136,140],[1108,1,1,140,141],[1110,1,1,141,142]]],[51,5,5,142,147,[[1111,1,1,142,143],[1112,2,2,143,145],[1114,2,2,145,147]]],[53,2,2,147,149,[[1119,1,1,147,148],[1120,1,1,148,149]]],[54,6,4,149,153,[[1126,2,1,149,150],[1127,1,1,150,151],[1128,3,2,151,153]]],[57,7,7,153,160,[[1134,2,2,153,155],[1138,1,1,155,156],[1141,1,1,156,157],[1142,1,1,157,158],[1143,1,1,158,159],[1144,1,1,159,160]]],[58,1,1,160,161,[[1147,1,1,160,161]]],[59,10,10,161,171,[[1151,7,7,161,168],[1153,1,1,168,169],[1154,1,1,169,170],[1155,1,1,170,171]]],[60,2,2,171,173,[[1157,2,2,171,173]]],[61,1,1,173,174,[[1161,1,1,173,174]]],[64,2,2,174,176,[[1166,2,2,174,176]]],[65,13,7,176,183,[[1167,7,1,176,177],[1172,1,1,177,178],[1175,2,2,178,180],[1178,1,1,180,181],[1185,2,2,181,183]]]],[23203,23330,23363,23385,23509,23591,23619,23657,23693,23827,23876,23970,24057,24090,24162,24358,24365,24385,24641,24651,24730,24867,24919,24977,25089,25267,25429,25675,25701,25723,25830,26019,26055,26164,26192,26201,26234,26239,26284,26336,26338,26363,26381,26382,26554,26577,26605,26607,26631,26813,26852,26868,26935,27025,27075,27202,27218,27325,27329,27333,27334,27347,27366,27413,27420,27481,27533,27563,27615,27639,27648,27664,27665,27666,27672,27709,27711,27725,27802,27809,27817,27834,27840,27863,27895,27931,27946,27956,27998,28013,28062,28063,28065,28068,28084,28087,28090,28101,28176,28178,28198,28200,28206,28328,28341,28355,28372,28401,28569,28634,28714,28779,28823,28828,28840,28870,28934,28961,28969,28985,29063,29074,29090,29125,29126,29211,29220,29221,29250,29285,29288,29302,29372,29373,29432,29458,29471,29475,29476,29485,29496,29553,29565,29579,29582,29611,29618,29702,29720,29848,29868,29880,29888,29980,29987,30050,30133,30172,30198,30214,30295,30376,30377,30379,30381,30384,30396,30399,30436,30453,30475,30504,30509,30593,30678,30693,30708,30806,30841,30847,30904,31026,31034]]],["upon",[22,21,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,2,2,3,5,[[980,1,1,3,4],[990,1,1,4,5]]],[43,4,4,5,9,[[1020,1,1,5,6],[1039,1,1,6,7],[1044,2,2,7,9]]],[44,4,3,9,12,[[1050,3,2,9,11],[1058,1,1,11,12]]],[45,2,2,12,14,[[1071,1,1,12,13],[1076,1,1,13,14]]],[46,1,1,14,15,[[1078,1,1,14,15]]],[65,6,6,15,21,[[1174,1,1,15,16],[1175,1,1,16,17],[1182,4,4,17,21]]]],[24064,24159,24720,25288,25701,27000,27717,27881,27884,28059,28065,28272,28578,28728,28811,30834,30843,30955,30956,30957,30958]]],["with",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29270]]]]},{"k":"G1520","v":[["*",[272,235,[[39,50,46,0,46,[[933,4,4,0,4],[934,4,3,4,7],[936,1,1,7,8],[937,1,1,8,9],[938,2,2,9,11],[940,1,1,11,12],[941,1,1,12,13],[944,1,1,13,14],[946,8,8,14,22],[947,2,2,22,24],[948,3,2,24,26],[949,1,1,26,27],[950,1,1,27,28],[951,4,4,28,32],[952,2,1,32,33],[953,5,5,33,38],[954,4,4,38,42],[955,5,4,42,46]]],[40,35,29,46,75,[[958,1,1,46,47],[960,6,2,47,49],[961,1,1,49,50],[962,1,1,50,51],[964,2,2,51,53],[965,3,3,53,56],[966,5,4,56,60],[967,1,1,60,61],[968,4,4,61,65],[969,1,1,65,66],[970,6,6,66,72],[971,4,3,72,75]]],[41,32,31,75,106,[[976,1,1,75,76],[977,1,1,76,77],[979,1,1,77,78],[981,1,1,78,79],[982,1,1,79,80],[983,1,1,80,81],[984,4,4,81,85],[987,6,6,85,91],[988,3,2,91,93],[989,4,4,93,97],[990,3,3,97,100],[992,1,1,100,101],[994,2,2,101,103],[995,2,2,103,105],[996,1,1,105,106]]],[42,36,33,106,139,[[997,2,2,106,108],[1002,5,5,108,113],[1003,2,2,113,115],[1004,1,1,115,116],[1005,1,1,116,117],[1006,2,2,117,119],[1007,3,3,119,122],[1008,2,2,122,124],[1009,2,2,124,126],[1013,6,4,126,130],[1014,4,4,130,134],[1015,1,1,134,135],[1016,4,3,135,138],[1017,1,1,138,139]]],[43,14,14,139,153,[[1018,2,2,139,141],[1019,2,2,141,143],[1021,1,1,143,144],[1028,1,1,144,145],[1034,2,2,145,147],[1037,1,1,147,148],[1038,2,2,148,150],[1040,2,2,150,152],[1045,1,1,152,153]]],[44,20,13,153,166,[[1048,3,3,153,156],[1050,12,6,156,162],[1054,1,1,162,163],[1057,3,2,163,165],[1060,1,1,165,166]]],[45,29,20,166,186,[[1064,1,1,166,167],[1065,2,1,167,168],[1067,3,3,168,171],[1069,3,2,171,173],[1070,1,1,173,174],[1071,3,1,174,175],[1072,1,1,175,176],[1073,13,8,176,184],[1075,2,2,184,186]]],[46,2,2,186,188,[[1082,1,1,186,187],[1088,1,1,187,188]]],[47,7,5,188,193,[[1093,4,3,188,191],[1094,2,1,191,192],[1095,1,1,192,193]]],[48,12,10,193,203,[[1098,4,4,193,197],[1100,7,5,197,202],[1101,1,1,202,203]]],[49,3,3,203,206,[[1103,1,1,203,204],[1104,1,1,204,205],[1105,1,1,205,206]]],[50,2,2,206,208,[[1109,1,1,206,207],[1110,1,1,207,208]]],[51,3,2,208,210,[[1112,1,1,208,209],[1115,2,1,209,210]]],[52,1,1,210,211,[[1116,1,1,210,211]]],[53,3,2,211,213,[[1120,2,1,211,212],[1123,1,1,212,213]]],[57,2,2,213,215,[[1134,1,1,213,214],[1143,1,1,214,215]]],[58,4,4,215,219,[[1147,2,2,215,217],[1149,2,2,217,219]]],[60,1,1,219,220,[[1158,1,1,219,220]]],[61,2,2,220,222,[[1163,2,2,220,222]]],[65,14,13,222,235,[[1170,1,1,222,223],[1171,1,1,223,224],[1172,1,1,224,225],[1173,1,1,225,226],[1174,1,1,226,227],[1181,1,1,227,228],[1183,2,2,228,230],[1184,1,1,230,231],[1185,1,1,231,232],[1187,3,2,232,234],[1188,1,1,234,235]]]],[23252,23263,23264,23275,23306,23309,23311,23364,23397,23446,23459,23500,23585,23686,23732,23733,23737,23739,23741,23743,23751,23755,23778,23779,23805,23813,23850,23907,23926,23927,23928,23933,23997,24023,24026,24032,24048,24053,24068,24075,24101,24105,24143,24144,24167,24177,24267,24331,24343,24386,24422,24514,24528,24555,24575,24580,24605,24606,24609,24625,24669,24679,24701,24702,24705,24718,24764,24772,24774,24797,24801,24805,24832,24853,24862,25103,25110,25236,25309,25405,25451,25465,25484,25486,25511,25592,25595,25598,25603,25607,25614,25625,25633,25653,25666,25685,25687,25698,25707,25710,25782,25911,25914,25952,25974,26009,26047,26084,26265,26266,26279,26327,26328,26349,26378,26422,26465,26497,26511,26572,26573,26575,26582,26584,26651,26653,26770,26780,26781,26782,26799,26807,26811,26824,26859,26874,26879,26891,26923,26945,26947,26952,26955,27054,27335,27549,27550,27657,27683,27690,27740,27751,27924,28001,28003,28021,28059,28062,28063,28064,28065,28066,28165,28249,28250,28309,28418,28439,28472,28483,28484,28531,28533,28564,28584,28605,28645,28646,28647,28648,28652,28653,28654,28660,28705,28709,28891,28991,29118,29122,29130,29153,29176,29243,29244,29245,29247,29276,29277,29278,29279,29288,29337,29388,29393,29434,29532,29548,29581,29632,29652,29721,29772,29988,30184,30303,30312,30349,30350,30530,30631,30632,30776,30784,30794,30823,30840,30953,30976,30985,31014,31034,31062,31074,31082]]],["+",[16,15,[[42,1,1,0,1,[[1017,1,1,0,1]]],[43,5,5,1,6,[[1018,1,1,1,2],[1019,2,2,2,4],[1038,1,1,4,5],[1040,1,1,5,6]]],[45,2,2,6,8,[[1072,1,1,6,7],[1075,1,1,7,8]]],[48,2,2,8,10,[[1100,1,1,8,9],[1101,1,1,9,10]]],[50,1,1,10,11,[[1110,1,1,10,11]]],[51,2,1,11,12,[[1115,2,1,11,12]]],[65,3,3,12,15,[[1170,1,1,12,13],[1187,1,1,13,14],[1188,1,1,14,15]]]],[26923,26947,26952,26955,27683,27751,28605,28709,29288,29337,29548,29632,30776,31074,31082]]],["One",[7,7,[[40,2,2,0,2,[[964,1,1,0,1],[970,1,1,1,2]]],[42,3,3,2,5,[[997,1,1,2,3],[1002,1,1,3,4],[1014,1,1,4,5]]],[48,2,2,5,7,[[1100,2,2,5,7]]]],[24528,24772,26084,26265,26811,29277,29278]]],["a",[9,9,[[39,3,3,0,3,[[933,1,1,0,1],[955,2,2,1,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[41,1,1,4,5,[[987,1,1,4,5]]],[42,2,2,5,7,[[1002,1,1,5,6],[1016,1,1,6,7]]],[58,1,1,7,8,[[1149,1,1,7,8]]],[65,1,1,8,9,[[1184,1,1,8,9]]]],[23275,24143,24144,24805,25603,26266,26874,30350,31014]]],["an",[2,2,[[65,2,2,0,2,[[1174,1,1,0,1],[1185,1,1,1,2]]]],[30840,31034]]],["another",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24167]]],["any",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27054]]],["certain",[2,2,[[39,2,2,0,2,[[936,1,1,0,1],[937,1,1,1,2]]]],[23364,23397]]],["man's",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28064]]],["one",[213,191,[[39,42,41,0,41,[[933,3,3,0,3],[934,4,3,3,6],[938,2,2,6,8],[940,1,1,8,9],[941,1,1,9,10],[944,1,1,10,11],[946,8,8,11,19],[947,2,2,19,21],[948,2,2,21,23],[949,1,1,23,24],[950,1,1,24,25],[951,4,4,25,29],[952,1,1,29,30],[953,5,5,30,35],[954,4,4,35,39],[955,2,2,39,41]]],[40,22,22,41,63,[[961,1,1,41,42],[962,1,1,42,43],[964,1,1,43,44],[965,3,3,44,47],[966,3,3,47,50],[967,1,1,50,51],[968,4,4,51,55],[969,1,1,55,56],[970,4,4,56,60],[971,3,3,60,63]]],[41,29,28,63,91,[[976,1,1,63,64],[977,1,1,64,65],[979,1,1,65,66],[981,1,1,66,67],[983,1,1,67,68],[984,4,4,68,72],[987,5,5,72,77],[988,3,2,77,79],[989,4,4,79,83],[990,2,2,83,85],[992,1,1,85,86],[994,2,2,86,88],[995,2,2,88,90],[996,1,1,90,91]]],[42,27,25,91,116,[[1002,3,3,91,94],[1003,2,2,94,96],[1004,1,1,96,97],[1006,2,2,97,99],[1007,3,3,99,102],[1008,2,2,102,104],[1009,2,2,104,106],[1013,6,4,106,110],[1014,3,3,110,113],[1015,1,1,113,114],[1016,2,2,114,116]]],[43,8,8,116,124,[[1018,1,1,116,117],[1028,1,1,117,118],[1034,2,2,118,120],[1037,1,1,120,121],[1038,1,1,121,122],[1040,1,1,122,123],[1045,1,1,123,124]]],[44,19,13,124,137,[[1048,3,3,124,127],[1050,11,6,127,133],[1054,1,1,133,134],[1057,3,2,134,136],[1060,1,1,136,137]]],[45,27,18,137,155,[[1064,1,1,137,138],[1065,2,1,138,139],[1067,3,3,139,142],[1069,3,2,142,144],[1070,1,1,144,145],[1071,3,1,145,146],[1073,13,8,146,154],[1075,1,1,154,155]]],[46,2,2,155,157,[[1082,1,1,155,156],[1088,1,1,156,157]]],[47,6,5,157,162,[[1093,4,3,157,160],[1094,1,1,160,161],[1095,1,1,161,162]]],[48,8,7,162,169,[[1098,4,4,162,166],[1100,4,3,166,169]]],[49,2,2,169,171,[[1103,1,1,169,170],[1104,1,1,170,171]]],[50,1,1,171,172,[[1109,1,1,171,172]]],[51,1,1,172,173,[[1112,1,1,172,173]]],[52,1,1,173,174,[[1116,1,1,173,174]]],[53,3,2,174,176,[[1120,2,1,174,175],[1123,1,1,175,176]]],[57,2,2,176,178,[[1134,1,1,176,177],[1143,1,1,177,178]]],[58,3,3,178,181,[[1147,2,2,178,180],[1149,1,1,180,181]]],[61,2,2,181,183,[[1163,2,2,181,183]]],[65,8,8,183,191,[[1171,1,1,183,184],[1172,1,1,184,185],[1173,1,1,185,186],[1181,1,1,186,187],[1183,2,2,187,189],[1187,2,2,189,191]]]],[23252,23263,23264,23306,23309,23311,23446,23459,23500,23585,23686,23732,23733,23737,23739,23741,23743,23751,23755,23778,23779,23805,23813,23850,23907,23926,23927,23928,23933,23997,24023,24026,24032,24048,24053,24068,24075,24101,24105,24167,24177,24386,24422,24514,24555,24575,24580,24605,24606,24625,24669,24679,24701,24702,24705,24718,24764,24774,24797,24801,24832,24853,24862,25103,25110,25236,25309,25451,25465,25484,25486,25511,25592,25595,25598,25607,25614,25625,25633,25653,25666,25685,25687,25698,25707,25782,25911,25914,25952,25974,26009,26279,26327,26328,26349,26378,26422,26497,26511,26572,26573,26575,26582,26584,26651,26653,26770,26780,26781,26782,26799,26807,26824,26859,26879,26891,26945,27335,27549,27550,27657,27690,27740,27924,28001,28003,28021,28059,28062,28063,28064,28065,28066,28165,28249,28250,28309,28418,28439,28472,28483,28484,28531,28533,28564,28584,28645,28646,28647,28648,28652,28653,28654,28660,28705,28891,28991,29118,29122,29130,29153,29176,29243,29244,29245,29247,29276,29277,29279,29388,29393,29532,29581,29652,29721,29772,29988,30184,30303,30312,30349,30631,30632,30784,30794,30823,30953,30976,30985,31062,31074]]],["only",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24267]]],["other",[6,6,[[39,2,2,0,2,[[948,1,1,0,1],[952,1,1,1,2]]],[40,2,2,2,4,[[966,1,1,2,3],[971,1,1,3,4]]],[42,1,1,4,5,[[1016,1,1,4,5]]],[47,1,1,5,6,[[1094,1,1,5,6]]]],[23813,23997,24625,24853,26879,29153]]],["some",[6,2,[[40,6,2,0,2,[[960,6,2,0,2]]]],[24331,24343]]],["thing",[7,7,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,2,2,1,3,[[982,1,1,1,2],[990,1,1,2,3]]],[42,2,2,3,5,[[997,1,1,3,4],[1005,1,1,4,5]]],[49,1,1,5,6,[[1105,1,1,5,6]]],[60,1,1,6,7,[[1158,1,1,6,7]]]],[24609,25405,25710,26047,26465,29434,30530]]]]},{"k":"G1521","v":[["*",[10,10,[[41,3,3,0,3,[[974,1,1,0,1],[986,1,1,1,2],[994,1,1,2,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]],[43,5,5,4,9,[[1024,1,1,4,5],[1026,1,1,5,6],[1038,3,3,6,9]]],[57,1,1,9,10,[[1133,1,1,9,10]]]],[25000,25574,25918,26801,27161,27224,27692,27693,27701,29969]]],["brought",[4,4,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,3,3,1,4,[[1026,1,1,1,2],[1038,2,2,2,4]]]],[25918,27224,27692,27693]]],["in",[5,5,[[41,2,2,0,2,[[974,1,1,0,1],[986,1,1,1,2]]],[42,1,1,2,3,[[1014,1,1,2,3]]],[43,1,1,3,4,[[1024,1,1,3,4]]],[57,1,1,4,5,[[1133,1,1,4,5]]]],[25000,25574,26801,27161,29969]]],["led",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27701]]]]},{"k":"G1522","v":[["*",[5,5,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]],[45,1,1,3,4,[[1075,1,1,3,4]]],[57,1,1,4,5,[[1137,1,1,4,5]]]],[23289,24906,27290,28699,30037]]],["hear",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28699]]],["heard",[4,4,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]],[57,1,1,3,4,[[1137,1,1,3,4]]]],[23289,24906,27290,30037]]]]},{"k":"G1523","v":[["receive",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28915]]]]},{"k":"G1524","v":[["*",[4,4,[[43,3,3,0,3,[[1020,1,1,0,1],[1038,2,2,1,3]]],[57,1,1,3,4,[[1141,1,1,3,4]]]],[26999,27682,27690,30111]]],["entered",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27690]]],["go",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[26999]]],["in",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27682]]],["went",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30111]]]]},{"k":"G1525","v":[["*",[198,186,[[39,36,33,0,33,[[933,1,1,0,1],[934,1,1,1,2],[935,3,2,2,4],[936,2,2,4,6],[937,1,1,6,7],[938,3,3,7,10],[940,3,3,10,13],[943,1,1,13,14],[945,1,1,14,15],[946,3,3,15,18],[947,3,3,18,21],[949,2,2,21,23],[950,2,2,23,25],[951,3,1,25,26],[952,1,1,26,27],[953,3,3,27,30],[954,2,2,30,32],[955,1,1,32,33]]],[40,32,31,33,64,[[957,2,2,33,35],[958,2,2,35,37],[959,2,2,37,39],[961,3,3,39,42],[962,3,3,42,45],[963,2,2,45,47],[964,1,1,47,48],[965,5,5,48,53],[966,5,4,53,57],[967,2,2,57,59],[969,1,1,59,60],[970,2,2,60,62],[971,1,1,62,63],[972,1,1,63,64]]],[41,52,48,64,112,[[973,3,3,64,67],[976,2,2,67,69],[978,2,2,69,71],[979,5,5,71,76],[980,6,5,76,81],[981,4,4,81,85],[982,4,4,85,89],[983,4,3,89,92],[985,2,1,92,93],[986,1,1,93,94],[987,1,1,94,95],[989,3,3,95,98],[990,4,3,98,101],[991,3,3,101,104],[993,1,1,104,105],[994,4,4,105,109],[996,3,3,109,112]]],[42,15,14,112,126,[[999,2,2,112,114],[1000,1,1,114,115],[1006,4,3,115,118],[1009,1,1,118,119],[1014,3,3,119,122],[1015,1,1,122,123],[1016,3,3,123,126]]],[43,33,33,126,159,[[1018,2,2,126,128],[1020,1,1,128,129],[1022,3,3,129,132],[1026,3,3,132,135],[1027,4,4,135,139],[1028,4,4,139,143],[1030,1,1,143,144],[1031,3,3,144,147],[1033,2,2,147,149],[1034,1,1,149,150],[1035,1,1,150,151],[1036,2,2,151,153],[1037,1,1,153,154],[1038,1,1,154,155],[1040,2,2,155,157],[1042,1,1,157,158],[1045,1,1,158,159]]],[44,2,2,159,161,[[1050,1,1,159,160],[1056,1,1,160,161]]],[45,2,2,161,163,[[1075,2,2,161,163]]],[57,17,15,163,178,[[1135,3,3,163,166],[1136,8,6,166,172],[1138,2,2,172,174],[1141,3,3,174,177],[1142,1,1,177,178]]],[58,3,2,178,180,[[1147,2,1,178,179],[1150,1,1,179,180]]],[62,1,1,180,181,[[1164,1,1,180,181]]],[65,5,5,181,186,[[1169,1,1,181,182],[1177,1,1,182,183],[1181,1,1,183,184],[1187,1,1,184,185],[1188,1,1,185,186]]]],[23254,23288,23329,23337,23350,23353,23404,23422,23428,23429,23493,23518,23534,23644,23725,23730,23735,23736,23779,23785,23786,23836,23838,23883,23884,23931,23995,24018,24029,24031,24095,24112,24182,24236,24260,24261,24286,24289,24315,24376,24377,24403,24417,24429,24432,24480,24487,24526,24563,24566,24581,24583,24585,24603,24611,24612,24613,24651,24655,24732,24768,24792,24869,24878,24902,24921,24933,25079,25101,25150,25152,25196,25201,25231,25239,25240,25275,25277,25278,25286,25296,25305,25335,25347,25353,25368,25371,25373,25401,25431,25442,25457,25542,25576,25616,25658,25663,25678,25705,25712,25713,25732,25738,25776,25847,25867,25874,25904,25910,25994,26017,26020,26124,26125,26194,26482,26483,26490,26657,26786,26813,26818,26834,26872,26873,26875,26936,26944,27004,27066,27069,27080,27222,27228,27233,27262,27283,27284,27286,27310,27315,27319,27327,27376,27415,27434,27436,27498,27523,27525,27576,27593,27615,27655,27672,27750,27767,27819,27907,28059,28234,28701,28702,30006,30013,30014,30015,30017,30019,30020,30024,30025,30063,30064,30117,30129,30130,30138,30295,30358,30652,30766,30883,30954,31080,31094]]],["+",[3,3,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,1,1,1,2,[[1016,1,1,1,2]]],[57,1,1,2,3,[[1136,1,1,2,3]]]],[25457,26872,30020]]],["Enter",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23329]]],["arose",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25347]]],["came",[3,3,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,2,2,1,3,[[1031,1,1,1,2],[1040,1,1,2,3]]]],[25296,27434,27767]]],["camest",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23884]]],["come",[10,10,[[39,4,4,0,4,[[936,1,1,0,1],[938,1,1,1,2],[945,1,1,2,3],[949,1,1,3,4]]],[40,1,1,4,5,[[965,1,1,4,5]]],[41,2,2,5,7,[[980,1,1,5,6],[989,1,1,6,7]]],[43,2,2,7,9,[[1028,1,1,7,8],[1033,1,1,8,9]]],[58,1,1,9,10,[[1147,1,1,9,10]]]],[23353,23429,23725,23836,24566,25286,25658,27327,27498,30295]]],["cometh",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30138]]],["enter",[54,53,[[39,15,15,0,15,[[933,1,1,0,1],[934,1,1,1,2],[935,1,1,2,3],[938,2,2,3,5],[940,1,1,5,6],[946,3,3,6,9],[947,3,3,9,12],[953,2,2,12,14],[954,1,1,14,15]]],[40,14,14,15,29,[[957,1,1,15,16],[959,1,1,16,17],[961,1,1,17,18],[962,1,1,18,19],[965,4,4,19,23],[966,4,4,23,27],[969,1,1,27,28],[970,1,1,28,29]]],[41,13,13,29,42,[[979,1,1,29,30],[980,1,1,30,31],[981,1,1,31,32],[982,3,3,32,35],[990,3,3,35,38],[993,1,1,38,39],[994,2,2,39,41],[996,1,1,41,42]]],[42,2,2,42,44,[[999,2,2,42,44]]],[43,1,1,44,45,[[1031,1,1,44,45]]],[57,7,6,45,51,[[1135,2,2,45,47],[1136,5,4,47,51]]],[65,2,2,51,53,[[1181,1,1,51,52],[1187,1,1,52,53]]]],[23254,23288,23337,23422,23428,23518,23730,23735,23736,23779,23785,23786,24029,24031,24095,24260,24315,24376,24417,24563,24581,24583,24585,24603,24611,24612,24613,24732,24792,25201,25277,25305,25368,25371,25373,25705,25712,25713,25847,25904,25910,26017,26124,26125,27436,30006,30013,30017,30019,30020,30025,30954,31080]]],["entered",[47,47,[[39,3,3,0,3,[[936,1,1,0,1],[940,1,1,1,2],[952,1,1,2,3]]],[40,7,7,3,10,[[957,1,1,3,4],[958,1,1,4,5],[959,1,1,5,6],[961,1,1,6,7],[963,2,2,7,9],[967,1,1,9,10]]],[41,15,15,10,25,[[973,1,1,10,11],[976,1,1,11,12],[978,1,1,12,13],[979,2,2,13,15],[980,2,2,15,17],[981,2,2,17,19],[982,1,1,19,20],[989,2,2,20,22],[991,1,1,22,23],[994,2,2,23,25]]],[42,4,4,25,29,[[1000,1,1,25,26],[1009,1,1,26,27],[1014,2,2,27,29]]],[43,11,11,29,40,[[1020,1,1,29,30],[1022,1,1,30,31],[1026,1,1,31,32],[1027,1,1,32,33],[1028,2,2,33,35],[1033,1,1,35,36],[1035,1,1,36,37],[1038,1,1,37,38],[1040,1,1,38,39],[1042,1,1,39,40]]],[44,1,1,40,41,[[1050,1,1,40,41]]],[57,3,3,41,44,[[1136,1,1,41,42],[1138,1,1,42,43],[1141,1,1,43,44]]],[58,1,1,44,45,[[1150,1,1,44,45]]],[62,1,1,45,46,[[1164,1,1,45,46]]],[65,1,1,46,47,[[1177,1,1,46,47]]]],[23350,23493,23995,24236,24261,24289,24377,24480,24487,24651,24933,25101,25152,25196,25239,25275,25278,25335,25353,25401,25663,25678,25732,25867,25874,26194,26657,26786,26818,27004,27080,27233,27283,27315,27319,27523,27576,27672,27750,27819,28059,30024,30064,30129,30358,30652,30883]]],["entereth",[3,3,[[42,1,1,0,1,[[1006,1,1,0,1]]],[57,2,2,1,3,[[1138,1,1,1,2],[1141,1,1,2,3]]]],[26482,30063,30130]]],["entering",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[972,1,1,1,2]]],[57,1,1,2,3,[[1136,1,1,2,3]]]],[23931,24878,30015]]],["go",[4,4,[[40,2,2,0,2,[[964,1,1,0,1],[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[43,1,1,3,4,[[1026,1,1,3,4]]]],[24526,24613,25713,27222]]],["goeth",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23644]]],["gone",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25738]]],["in",[48,45,[[39,7,6,0,6,[[935,1,1,0,1],[937,1,1,1,2],[940,1,1,2,3],[950,1,1,3,4],[951,2,1,4,5],[953,1,1,5,6]]],[40,5,5,6,11,[[961,1,1,6,7],[962,2,2,7,9],[970,1,1,9,10],[971,1,1,10,11]]],[41,11,10,11,21,[[973,1,1,11,12],[979,1,1,12,13],[980,1,1,13,14],[983,2,2,14,16],[985,2,1,16,17],[986,1,1,17,18],[987,1,1,18,19],[996,2,2,19,21]]],[42,4,3,21,24,[[1006,3,2,21,23],[1016,1,1,23,24]]],[43,13,13,24,37,[[1018,2,2,24,26],[1022,2,2,26,28],[1026,1,1,28,29],[1027,3,3,29,32],[1028,1,1,32,33],[1034,1,1,33,34],[1036,1,1,34,35],[1037,1,1,35,36],[1045,1,1,36,37]]],[44,1,1,37,38,[[1056,1,1,37,38]]],[45,2,2,38,40,[[1075,2,2,38,40]]],[57,2,2,40,42,[[1135,1,1,40,41],[1141,1,1,41,42]]],[58,1,1,42,43,[[1147,1,1,42,43]]],[65,2,2,43,45,[[1169,1,1,43,44],[1188,1,1,44,45]]]],[23329,23404,23534,23883,23931,24018,24403,24429,24432,24768,24869,24921,25240,25296,25431,25457,25542,25576,25616,25994,26020,26483,26490,26875,26936,26944,27066,27069,27228,27262,27284,27286,27310,27525,27615,27655,27907,28234,28701,28702,30014,30117,30295,30766,31094]]],["went",[17,17,[[39,3,3,0,3,[[949,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[958,1,1,3,4],[967,1,1,4,5]]],[41,6,6,5,11,[[973,1,1,5,6],[976,1,1,6,7],[978,1,1,7,8],[979,1,1,8,9],[983,1,1,9,10],[991,1,1,10,11]]],[42,3,3,11,14,[[1014,1,1,11,12],[1015,1,1,12,13],[1016,1,1,13,14]]],[43,3,3,14,17,[[1030,1,1,14,15],[1031,1,1,15,16],[1036,1,1,16,17]]]],[23838,24112,24182,24286,24655,24902,25079,25150,25231,25442,25776,26813,26834,26873,27376,27415,27593]]]]},{"k":"G1526","v":[["*",[162,146,[[39,23,20,0,20,[[930,1,1,0,1],[935,3,3,1,4],[938,1,1,4,5],[939,1,1,5,6],[940,2,2,6,8],[941,4,3,8,11],[943,1,1,11,12],[944,1,1,12,13],[945,1,1,13,14],[946,1,1,14,15],[947,4,2,15,17],[948,1,1,17,18],[950,2,2,18,20]]],[40,9,9,20,29,[[960,5,5,20,25],[962,1,1,25,26],[965,1,1,26,27],[966,1,1,27,28],[968,1,1,28,29]]],[41,19,17,29,46,[[979,3,3,29,32],[980,4,4,32,36],[981,2,2,36,38],[983,1,1,38,39],[984,1,1,39,40],[985,3,2,40,42],[988,1,1,42,43],[990,1,1,43,44],[992,2,1,44,45],[993,1,1,45,46]]],[42,14,13,46,59,[[1000,1,1,46,47],[1001,1,1,47,48],[1002,2,1,48,49],[1003,1,1,49,50],[1004,1,1,50,51],[1006,2,2,51,53],[1007,1,1,53,54],[1010,1,1,54,55],[1013,4,4,55,59]]],[43,13,13,59,72,[[1019,2,2,59,61],[1021,1,1,61,62],[1022,1,1,62,63],[1030,1,1,63,64],[1033,2,2,64,66],[1036,2,2,66,68],[1038,2,2,68,70],[1040,1,1,70,71],[1041,1,1,71,72]]],[44,10,10,72,82,[[1046,1,1,72,73],[1047,1,1,73,74],[1053,1,1,74,75],[1054,2,2,75,77],[1058,3,3,77,80],[1060,1,1,80,81],[1061,1,1,81,82]]],[45,11,10,82,92,[[1062,1,1,82,83],[1064,2,2,83,85],[1069,2,1,85,86],[1071,1,1,86,87],[1073,3,3,87,90],[1075,2,2,90,92]]],[46,4,2,92,94,[[1088,4,2,92,94]]],[47,5,4,94,98,[[1091,1,1,94,95],[1093,3,2,95,97],[1094,1,1,97,98]]],[48,1,1,98,99,[[1101,1,1,98,99]]],[50,1,1,99,100,[[1108,1,1,99,100]]],[53,4,3,100,103,[[1123,1,1,100,101],[1124,3,2,101,103]]],[54,1,1,103,104,[[1127,1,1,103,104]]],[55,2,2,104,106,[[1129,1,1,104,105],[1131,1,1,105,106]]],[57,5,5,106,111,[[1133,2,2,106,108],[1139,2,2,108,110],[1143,1,1,110,111]]],[60,2,2,111,113,[[1157,1,1,111,112],[1158,1,1,112,113]]],[61,7,5,113,118,[[1160,1,1,113,114],[1162,1,1,114,115],[1163,5,3,115,118]]],[64,3,3,118,121,[[1166,3,3,118,121]]],[65,28,25,121,146,[[1167,3,2,121,123],[1168,2,2,123,125],[1169,2,2,125,127],[1170,2,2,127,129],[1171,2,2,129,131],[1173,3,3,131,134],[1175,1,1,134,135],[1177,1,1,135,136],[1180,4,2,136,138],[1182,2,2,138,140],[1183,4,4,140,144],[1185,1,1,144,145],[1187,1,1,145,146]]]],[23187,23329,23330,23331,23447,23467,23494,23537,23577,23578,23595,23647,23700,23726,23747,23768,23774,23808,23886,23902,24338,24339,24340,24341,24343,24410,24539,24596,24698,25220,25226,25227,25257,25259,25260,25266,25314,25328,25412,25497,25532,25548,25628,25697,25815,25848,26191,26249,26321,26377,26391,26489,26493,26532,26670,26768,26770,26773,26775,26956,26962,27035,27084,27393,27500,27521,27611,27623,27684,27687,27755,27780,27962,27976,28130,28159,28162,28267,28269,28272,28330,28343,28374,28418,28430,28532,28585,28638,28639,28640,28700,28715,29011,29012,29064,29109,29112,29155,29320,29497,29787,29789,29790,29859,29902,29932,29973,29977,30085,30087,30185,30517,30529,30569,30608,30627,30631,30632,30684,30688,30691,30716,30717,30719,30726,30750,30755,30773,30779,30785,30787,30823,30824,30825,30859,30876,30930,30931,30960,30968,30984,30985,30987,30990,31026,31058]]],["+",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]]],[23577,27780]]],["Are",[6,4,[[42,1,1,0,1,[[1007,1,1,0,1]]],[46,4,2,1,3,[[1088,4,2,1,3]]],[57,1,1,3,4,[[1133,1,1,3,4]]]],[26532,29011,29012,29977]]],["agree",[1,1,[[61,1,1,0,1,[[1163,1,1,0,1]]]],[30632]]],["are",[127,118,[[39,16,15,0,15,[[930,1,1,0,1],[935,1,1,1,2],[938,1,1,2,3],[939,1,1,3,4],[940,2,2,4,6],[941,3,3,6,9],[945,1,1,9,10],[946,1,1,10,11],[947,3,2,11,13],[950,2,2,13,15]]],[40,7,7,15,22,[[960,4,4,15,19],[962,1,1,19,20],[966,1,1,20,21],[968,1,1,21,22]]],[41,15,13,22,35,[[979,3,3,22,25],[980,4,4,25,29],[983,1,1,29,30],[984,1,1,30,31],[985,3,2,31,33],[988,1,1,33,34],[992,2,1,34,35]]],[42,12,12,35,47,[[1000,1,1,35,36],[1001,1,1,36,37],[1002,1,1,37,38],[1003,1,1,38,39],[1004,1,1,39,40],[1006,2,2,40,42],[1010,1,1,42,43],[1013,4,4,43,47]]],[43,8,8,47,55,[[1019,2,2,47,49],[1022,1,1,49,50],[1030,1,1,50,51],[1033,1,1,51,52],[1036,1,1,52,53],[1038,1,1,53,54],[1040,1,1,54,55]]],[44,10,10,55,65,[[1046,1,1,55,56],[1047,1,1,56,57],[1053,1,1,57,58],[1054,2,2,58,60],[1058,3,3,60,63],[1060,1,1,63,64],[1061,1,1,64,65]]],[45,9,9,65,74,[[1062,1,1,65,66],[1064,2,2,66,68],[1071,1,1,68,69],[1073,3,3,69,72],[1075,2,2,72,74]]],[47,4,3,74,77,[[1093,3,2,74,76],[1094,1,1,76,77]]],[48,1,1,77,78,[[1101,1,1,77,78]]],[50,1,1,78,79,[[1108,1,1,78,79]]],[53,4,3,79,82,[[1123,1,1,79,80],[1124,3,2,80,82]]],[54,1,1,82,83,[[1127,1,1,82,83]]],[55,2,2,83,85,[[1129,1,1,83,84],[1131,1,1,84,85]]],[57,1,1,85,86,[[1133,1,1,85,86]]],[60,2,2,86,88,[[1157,1,1,86,87],[1158,1,1,87,88]]],[61,5,4,88,92,[[1162,1,1,88,89],[1163,4,3,89,92]]],[64,2,2,92,94,[[1166,2,2,92,94]]],[65,27,24,94,118,[[1167,3,2,94,96],[1168,2,2,96,98],[1169,2,2,98,100],[1170,2,2,100,102],[1171,2,2,102,104],[1173,3,3,104,107],[1177,1,1,107,108],[1180,4,2,108,110],[1182,2,2,110,112],[1183,4,4,112,116],[1185,1,1,116,117],[1187,1,1,117,118]]]],[23187,23331,23447,23467,23494,23537,23577,23578,23595,23726,23747,23768,23774,23886,23902,24338,24339,24341,24343,24410,24596,24698,25220,25226,25227,25257,25259,25260,25266,25412,25497,25532,25548,25628,25815,26191,26249,26321,26377,26391,26489,26493,26670,26768,26770,26773,26775,26956,26962,27084,27393,27500,27623,27684,27755,27962,27976,28130,28159,28162,28267,28269,28272,28330,28343,28374,28418,28430,28585,28638,28639,28640,28700,28715,29109,29112,29155,29320,29497,29787,29789,29790,29859,29902,29932,29973,30517,30529,30608,30627,30631,30632,30684,30688,30716,30717,30719,30726,30750,30755,30773,30779,30785,30787,30823,30824,30825,30876,30930,30931,30960,30968,30984,30985,30987,30990,31026,31058]]],["be",[14,13,[[39,6,6,0,6,[[935,2,2,0,2],[943,1,1,2,3],[944,1,1,3,4],[947,1,1,4,5],[948,1,1,5,6]]],[40,1,1,6,7,[[965,1,1,6,7]]],[41,2,2,7,9,[[981,1,1,7,8],[993,1,1,8,9]]],[43,1,1,9,10,[[1036,1,1,9,10]]],[45,2,1,10,11,[[1069,2,1,10,11]]],[47,1,1,11,12,[[1091,1,1,11,12]]],[64,1,1,12,13,[[1166,1,1,12,13]]]],[23329,23330,23647,23700,23774,23808,24539,25328,25848,27611,28532,29064,30691]]],["have",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[25314,27687]]],["is",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30859]]],["so",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24340]]],["were",[8,8,[[41,1,1,0,1,[[990,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[43,2,2,2,4,[[1021,1,1,2,3],[1033,1,1,3,4]]],[57,3,3,4,7,[[1139,2,2,4,6],[1143,1,1,6,7]]],[61,1,1,7,8,[[1160,1,1,7,8]]]],[25697,26321,27035,27521,30085,30087,30185,30569]]]]},{"k":"G1527","v":[["one",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]]],[24773,26390]]]]},{"k":"G1528","v":[["+",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27282]]]]},{"k":"G1529","v":[["*",[5,5,[[43,1,1,0,1,[[1030,1,1,0,1]]],[51,2,2,1,3,[[1111,1,1,1,2],[1112,1,1,2,3]]],[57,1,1,3,4,[[1142,1,1,3,4]]],[60,1,1,4,5,[[1156,1,1,4,5]]]],[27386,29569,29571,30152,30490]]],["+",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[27386,30152]]],["entrance",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30490]]],["in",[2,2,[[51,2,2,0,2,[[1111,1,1,0,1],[1112,1,1,1,2]]]],[29569,29571]]]]},{"k":"G1530","v":[["in",[2,2,[[43,2,2,0,2,[[1031,1,1,0,1],[1033,1,1,1,2]]]],[27428,27512]]]]},{"k":"G1531","v":[["*",[17,17,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,8,8,1,9,[[957,1,1,1,2],[960,1,1,2,3],[961,1,1,3,4],[962,1,1,4,5],[963,3,3,5,8],[967,1,1,8,9]]],[41,4,4,9,13,[[980,1,1,9,10],[983,1,1,10,11],[991,1,1,11,12],[994,1,1,12,13]]],[43,4,4,13,17,[[1020,1,1,13,14],[1025,1,1,14,15],[1026,1,1,15,16],[1045,1,1,16,17]]]],[23650,24236,24342,24404,24463,24478,24481,24482,24642,25261,25438,25761,25874,26998,27179,27244,27929]]],["entered",[3,3,[[40,2,2,0,2,[[962,1,1,0,1],[967,1,1,1,2]]],[43,1,1,2,3,[[1020,1,1,2,3]]]],[24463,24642,26998]]],["entereth",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[963,2,2,1,3]]]],[23650,24481,24482]]],["entering",[2,2,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,1,1,1,2,[[991,1,1,1,2]]]],[24478,25761]]],["in",[7,7,[[40,2,2,0,2,[[960,1,1,0,1],[961,1,1,1,2]]],[41,3,3,2,5,[[980,1,1,2,3],[983,1,1,3,4],[994,1,1,4,5]]],[43,2,2,5,7,[[1026,1,1,5,6],[1045,1,1,6,7]]]],[24342,24404,25261,25438,25874,27244,27929]]],["into",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27179]]],["went",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24236]]]]},{"k":"G1532","v":[["in",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27351]]]]},{"k":"G1533","v":[["*",[7,7,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,3,3,1,4,[[977,2,2,1,3],[983,1,1,3,4]]],[43,1,1,4,5,[[1034,1,1,4,5]]],[53,1,1,5,6,[[1124,1,1,5,6]]],[57,1,1,6,7,[[1145,1,1,6,7]]]],[23295,25125,25126,25409,27543,29795,30252]]],["+",[2,2,[[41,2,2,0,2,[[977,2,2,0,2]]]],[25125,25126]]],["bringest",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27543]]],["brought",[2,2,[[53,1,1,0,1,[[1124,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[29795,30252]]],["lead",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23295,25409]]]]},{"k":"G1534","v":[["*",[16,15,[[40,4,3,0,3,[[960,3,2,0,2],[964,1,1,2,3]]],[41,1,1,3,4,[[980,1,1,3,4]]],[42,3,3,4,7,[[1009,1,1,4,5],[1015,1,1,5,6],[1016,1,1,6,7]]],[45,4,4,7,11,[[1073,1,1,7,8],[1076,3,3,8,11]]],[53,2,2,11,13,[[1120,1,1,11,12],[1121,1,1,12,13]]],[57,1,1,13,14,[[1144,1,1,13,14]]],[58,1,1,14,15,[[1146,1,1,14,15]]]],[24340,24351,24525,25257,26635,26852,26894,28662,28723,28725,28742,29729,29741,30221,30281]]],["Furthermore",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30221]]],["Then",[4,4,[[42,2,2,0,2,[[1015,1,1,0,1],[1016,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]],[58,1,1,3,4,[[1146,1,1,3,4]]]],[26852,26894,28742,30281]]],["after",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24351]]],["afterward",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24340]]],["that",[2,2,[[40,1,1,0,1,[[964,1,1,0,1]]],[42,1,1,1,2,[[1009,1,1,1,2]]]],[24525,26635]]],["then",[7,7,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[45,3,3,2,5,[[1073,1,1,2,3],[1076,2,2,3,5]]],[53,2,2,5,7,[[1120,1,1,5,6],[1121,1,1,6,7]]]],[24351,25257,28662,28723,28725,29729,29741]]]]},{"k":"G1535","v":[["*",[64,29,[[44,4,3,0,3,[[1057,4,3,0,3]]],[45,26,9,3,12,[[1064,8,1,3,4],[1069,2,1,4,5],[1071,3,1,5,6],[1073,6,2,6,8],[1074,3,1,8,9],[1075,3,2,9,11],[1076,1,1,11,12]]],[46,14,7,12,19,[[1078,2,1,12,13],[1082,6,3,13,16],[1085,2,1,16,17],[1089,4,2,17,19]]],[48,2,1,19,20,[[1102,2,1,19,20]]],[49,6,3,20,23,[[1103,6,3,20,23]]],[50,6,2,23,25,[[1107,6,2,23,25]]],[51,2,1,25,26,[[1115,2,1,25,26]]],[52,2,1,26,27,[[1117,2,1,26,27]]],[59,2,2,27,29,[[1152,2,2,27,29]]]],[28251,28252,28253,28432,28532,28598,28647,28660,28673,28685,28705,28729,28806,28886,28887,28890,28955,29024,29025,29345,29379,29381,29388,29481,29485,29631,29676,30412,30413]]],["+",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29676]]],["If",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28705]]],["Or",[3,3,[[44,2,2,0,2,[[1057,2,2,0,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]]],[28252,28253,30413]]],["Whether",[3,3,[[45,2,2,0,2,[[1064,1,1,0,1],[1071,1,1,1,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]]],[28432,28598,28955]]],["else",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29388]]],["or",[27,17,[[44,1,1,0,1,[[1057,1,1,0,1]]],[45,14,6,1,7,[[1064,7,1,1,2],[1069,1,1,2,3],[1071,2,1,3,4],[1073,3,2,4,6],[1075,1,1,6,7]]],[46,4,4,7,11,[[1082,2,2,7,9],[1085,1,1,9,10],[1089,1,1,10,11]]],[48,1,1,11,12,[[1102,1,1,11,12]]],[49,2,2,12,14,[[1103,2,2,12,14]]],[50,4,2,14,16,[[1107,4,2,14,16]]],[51,1,1,16,17,[[1115,1,1,16,17]]]],[28252,28432,28532,28598,28647,28660,28685,28886,28887,28955,29025,29345,29379,29381,29481,29485,29631]]],["whether",[28,22,[[44,1,1,0,1,[[1057,1,1,0,1]]],[45,9,6,1,7,[[1069,1,1,1,2],[1073,3,2,2,4],[1074,3,1,4,5],[1075,1,1,5,6],[1076,1,1,6,7]]],[46,9,6,7,13,[[1078,2,1,7,8],[1082,4,3,8,11],[1089,3,2,11,13]]],[48,1,1,13,14,[[1102,1,1,13,14]]],[49,3,3,14,17,[[1103,3,3,14,17]]],[50,2,2,17,19,[[1107,2,2,17,19]]],[51,1,1,19,20,[[1115,1,1,19,20]]],[52,1,1,20,21,[[1117,1,1,20,21]]],[59,1,1,21,22,[[1152,1,1,21,22]]]],[28251,28532,28647,28660,28673,28685,28729,28806,28886,28887,28890,29024,29025,29345,29379,29381,29388,29481,29485,29631,29676,30412]]]]},{"k":"G1536","v":[["*",[61,50,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,5,5,1,6,[[960,1,1,1,2],[963,1,1,2,3],[964,1,1,3,4],[965,2,2,4,6]]],[41,1,1,6,7,[[986,1,1,6,7]]],[43,3,3,7,10,[[1041,2,2,7,9],[1042,1,1,9,10]]],[44,2,2,10,12,[[1053,1,1,10,11],[1058,1,1,11,12]]],[45,9,9,12,21,[[1062,1,1,12,13],[1064,5,5,13,18],[1068,1,1,18,19],[1075,1,1,19,20],[1077,1,1,20,21]]],[46,9,5,21,26,[[1079,1,1,21,22],[1082,1,1,22,23],[1084,1,1,23,24],[1087,1,1,24,25],[1088,5,1,25,26]]],[47,1,1,26,27,[[1091,1,1,26,27]]],[48,1,1,27,28,[[1100,1,1,27,28]]],[49,8,4,28,32,[[1104,4,1,28,29],[1105,2,2,29,31],[1106,2,1,31,32]]],[52,1,1,32,33,[[1118,1,1,32,33]]],[53,4,4,33,37,[[1119,1,1,33,34],[1121,1,1,34,35],[1123,1,1,35,36],[1124,1,1,36,37]]],[55,1,1,37,38,[[1129,1,1,37,38]]],[58,3,3,38,41,[[1146,2,2,38,40],[1148,1,1,40,41]]],[59,3,2,41,43,[[1153,1,1,41,42],[1154,2,1,42,43]]],[62,1,1,43,44,[[1164,1,1,43,44]]],[65,8,6,44,50,[[1177,2,1,44,45],[1179,3,2,45,47],[1180,2,2,47,49],[1186,1,1,49,50]]]],[23696,24346,24479,24523,24560,24573,25579,27788,27789,27801,28125,28275,28379,28422,28424,28425,28427,28428,28499,28715,28798,28834,28894,28930,28978,29009,29066,29301,29392,29425,29436,29450,29688,29706,29732,29779,29791,29898,30289,30292,30321,30425,30457,30655,30877,30917,30918,30935,30937,31053]]],["+",[10,10,[[40,2,2,0,2,[[964,1,1,0,1],[965,1,1,1,2]]],[43,3,3,2,5,[[1041,2,2,2,4],[1042,1,1,4,5]]],[45,1,1,5,6,[[1062,1,1,5,6]]],[46,2,2,6,8,[[1079,1,1,6,7],[1084,1,1,7,8]]],[49,1,1,8,9,[[1104,1,1,8,9]]],[62,1,1,9,10,[[1164,1,1,9,10]]]],[24523,24560,27788,27789,27801,28379,28834,28930,29392,30655]]],["any",[17,14,[[39,1,1,0,1,[[944,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]],[44,1,1,2,3,[[1058,1,1,2,3]]],[45,1,1,3,4,[[1068,1,1,3,4]]],[47,1,1,4,5,[[1091,1,1,4,5]]],[49,6,3,5,8,[[1104,3,1,5,6],[1105,1,1,6,7],[1106,2,1,7,8]]],[52,1,1,8,9,[[1118,1,1,8,9]]],[53,2,2,9,11,[[1119,1,1,9,10],[1123,1,1,10,11]]],[55,1,1,11,12,[[1129,1,1,11,12]]],[58,1,1,12,13,[[1146,1,1,12,13]]],[59,1,1,13,14,[[1153,1,1,13,14]]]],[23696,25579,28275,28499,29066,29392,29425,29450,29688,29706,29779,29898,30289,30425]]],["man",[26,20,[[40,3,3,0,3,[[960,1,1,0,1],[963,1,1,1,2],[965,1,1,2,3]]],[44,1,1,3,4,[[1053,1,1,3,4]]],[45,5,5,4,9,[[1064,3,3,4,7],[1075,1,1,7,8],[1077,1,1,8,9]]],[46,7,3,9,12,[[1082,1,1,9,10],[1087,1,1,10,11],[1088,5,1,11,12]]],[53,2,2,12,14,[[1121,1,1,12,13],[1124,1,1,13,14]]],[58,2,2,14,16,[[1146,1,1,14,15],[1148,1,1,15,16]]],[59,2,1,16,17,[[1154,2,1,16,17]]],[65,4,3,17,20,[[1177,2,1,17,18],[1179,1,1,18,19],[1180,1,1,19,20]]]],[24346,24479,24573,28125,28422,28427,28428,28715,28798,28894,28978,29009,29732,29791,30292,30321,30457,30877,30917,30935]]],["man's",[2,2,[[45,2,2,0,2,[[1064,2,2,0,2]]]],[28424,28425]]],["that",[3,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[65,2,1,1,2,[[1179,2,1,1,2]]]],[29301,30918]]],["thing",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29436]]],["whosoever",[2,2,[[65,2,2,0,2,[[1180,1,1,0,1],[1186,1,1,1,2]]]],[30937,31053]]]]},{"k":"G1537","v":[["*",[917,759,[[39,80,68,0,68,[[929,7,6,0,6],[930,2,2,6,8],[931,2,2,8,10],[933,1,1,10,11],[934,1,1,11,12],[935,3,2,12,14],[936,1,1,14,15],[938,1,1,15,16],[940,8,6,16,22],[941,4,4,22,26],[943,5,4,26,30],[944,1,1,30,31],[945,2,2,31,33],[946,1,1,33,34],[947,2,2,34,36],[948,5,3,36,39],[949,7,5,39,44],[950,2,2,44,46],[951,3,2,46,48],[952,2,2,48,50],[953,6,5,50,55],[954,7,7,55,62],[955,6,5,62,67],[956,1,1,67,68]]],[40,66,54,68,122,[[957,4,4,68,72],[961,4,3,72,75],[962,4,4,75,79],[963,6,6,79,85],[965,5,5,85,90],[966,5,3,90,93],[967,7,6,93,99],[968,12,5,99,104],[969,3,3,104,107],[970,9,9,107,116],[971,4,3,116,119],[972,3,3,119,122]]],[41,90,74,122,196,[[973,10,8,122,130],[974,4,3,130,133],[975,2,2,133,135],[976,3,3,135,138],[977,2,2,138,140],[978,7,3,140,143],[980,2,1,143,144],[981,2,2,144,146],[982,7,4,146,150],[983,9,9,150,159],[984,5,5,159,164],[986,2,2,164,166],[987,2,1,166,167],[988,2,2,167,169],[989,4,3,169,172],[990,1,1,172,173],[991,1,1,173,174],[992,6,5,174,179],[993,4,3,179,182],[994,6,6,182,188],[995,5,4,188,192],[996,4,4,192,196]]],[42,161,133,196,329,[[997,11,8,196,204],[998,3,2,204,206],[999,13,9,206,215],[1000,10,10,215,225],[1001,1,1,225,226],[1002,25,21,226,247],[1003,16,13,247,260],[1004,12,7,260,267],[1005,6,6,267,273],[1006,7,7,273,280],[1007,6,6,280,286],[1008,14,12,286,298],[1009,4,4,298,302],[1011,3,1,302,303],[1012,5,5,303,308],[1013,8,5,308,313],[1014,8,7,313,320],[1015,3,3,320,323],[1016,4,4,323,327],[1017,2,2,327,329]]],[43,90,87,329,416,[[1018,3,3,329,332],[1019,4,4,332,336],[1020,4,4,336,340],[1021,3,3,340,343],[1022,2,2,343,345],[1023,2,2,345,347],[1024,8,7,347,354],[1025,2,2,354,356],[1026,1,1,356,357],[1027,4,4,357,361],[1028,6,5,361,366],[1029,4,4,366,370],[1030,5,5,370,375],[1031,1,1,375,376],[1032,7,7,376,383],[1033,1,1,383,384],[1034,6,6,384,390],[1035,2,2,390,392],[1036,4,4,392,396],[1037,1,1,396,397],[1038,1,1,397,398],[1039,3,3,398,401],[1040,3,3,401,404],[1041,2,2,404,406],[1043,3,3,406,409],[1044,5,4,409,413],[1045,3,3,413,416]]],[44,61,50,416,466,[[1046,4,3,416,419],[1047,5,4,419,423],[1048,3,3,423,426],[1049,7,5,426,431],[1050,3,2,431,433],[1051,4,4,433,437],[1052,2,2,437,439],[1053,2,1,439,440],[1054,11,8,440,448],[1055,5,5,448,453],[1056,8,7,453,460],[1057,1,1,460,461],[1058,2,2,461,463],[1059,2,1,463,464],[1061,2,2,464,466]]],[45,35,27,466,493,[[1062,1,1,466,467],[1063,1,1,467,468],[1066,3,3,468,471],[1068,2,2,471,473],[1069,1,1,473,474],[1070,5,4,474,478],[1071,2,2,478,480],[1072,6,3,480,483],[1073,5,3,483,486],[1074,4,3,486,489],[1076,5,4,489,493]]],[46,29,23,493,516,[[1078,2,2,493,495],[1079,4,3,495,498],[1080,3,2,498,500],[1081,2,2,500,502],[1082,4,4,502,506],[1083,1,1,506,507],[1084,1,1,507,508],[1085,3,3,508,511],[1086,3,2,511,513],[1088,2,1,513,514],[1089,1,1,514,515],[1090,3,1,515,516]]],[47,35,26,516,542,[[1091,4,4,516,520],[1092,6,3,520,523],[1093,16,13,523,536],[1094,5,3,536,539],[1095,2,2,539,541],[1096,2,1,541,542]]],[48,11,10,542,552,[[1097,1,1,542,543],[1098,2,2,543,545],[1099,2,2,545,547],[1100,2,2,547,549],[1101,3,2,549,551],[1102,1,1,551,552]]],[49,9,7,552,559,[[1103,3,3,552,555],[1105,5,3,555,558],[1106,1,1,558,559]]],[50,11,11,559,570,[[1107,2,2,559,561],[1108,3,3,561,564],[1109,2,2,564,566],[1110,4,4,566,570]]],[51,7,5,570,575,[[1111,2,1,570,571],[1112,3,2,571,573],[1113,1,1,573,574],[1115,1,1,574,575]]],[52,1,1,575,576,[[1117,1,1,575,576]]],[53,2,2,576,578,[[1119,1,1,576,577],[1124,1,1,577,578]]],[54,7,6,578,584,[[1126,4,3,578,581],[1127,2,2,581,583],[1128,1,1,583,584]]],[55,4,4,584,588,[[1129,2,2,584,586],[1130,1,1,586,587],[1131,1,1,587,588]]],[57,21,20,588,608,[[1133,1,1,588,589],[1134,1,1,589,590],[1135,2,2,590,592],[1136,1,1,592,593],[1137,2,2,593,595],[1139,6,5,595,600],[1140,1,1,600,601],[1141,1,1,601,602],[1142,1,1,602,603],[1143,3,3,603,606],[1145,2,2,606,608]]],[58,13,11,608,619,[[1147,7,6,608,614],[1148,3,3,614,617],[1149,1,1,617,618],[1150,2,1,618,619]]],[59,8,8,619,627,[[1151,5,5,619,624],[1152,2,2,624,626],[1154,1,1,626,627]]],[60,5,5,627,632,[[1156,1,1,627,628],[1157,3,3,628,631],[1158,1,1,631,632]]],[61,34,23,632,655,[[1160,8,4,632,636],[1161,8,7,636,643],[1162,12,8,643,651],[1163,6,4,651,655]]],[62,1,1,655,656,[[1164,1,1,655,656]]],[63,2,2,656,658,[[1165,2,2,656,658]]],[64,2,2,658,660,[[1166,2,2,658,660]]],[65,132,99,660,759,[[1167,2,2,660,662],[1168,6,6,662,668],[1169,6,6,668,674],[1170,1,1,674,675],[1171,4,3,675,678],[1172,3,2,678,680],[1173,16,8,680,688],[1174,5,5,688,693],[1175,15,8,693,701],[1176,4,4,701,705],[1177,5,5,705,710],[1178,2,2,710,712],[1179,3,3,712,715],[1180,9,8,715,723],[1181,8,4,723,727],[1182,11,6,727,733],[1183,6,5,733,738],[1184,10,6,738,744],[1185,5,4,744,748],[1186,4,4,748,752],[1187,5,5,752,757],[1188,2,2,757,759]]]],[23147,23149,23150,23160,23162,23164,23175,23184,23201,23209,23271,23309,23321,23325,23373,23446,23500,23522,23523,23524,23526,23531,23580,23586,23588,23591,23638,23644,23651,23652,23673,23705,23709,23739,23774,23782,23794,23813,23815,23842,23845,23851,23852,23857,23907,23916,23943,23952,23974,23988,24010,24016,24041,24042,24049,24075,24081,24083,24096,24098,24118,24127,24136,24158,24167,24177,24182,24197,24226,24240,24241,24244,24366,24372,24394,24421,24423,24458,24461,24474,24483,24484,24489,24492,24494,24545,24547,24548,24555,24563,24608,24625,24628,24648,24654,24660,24670,24671,24672,24698,24703,24706,24709,24717,24718,24732,24744,24772,24774,24777,24779,24785,24816,24823,24824,24826,24853,24865,24872,24876,24885,24892,24898,24904,24908,24920,24928,24964,24967,24971,24977,25008,25009,25033,25047,25085,25098,25101,25110,25124,25188,25190,25191,25272,25308,25336,25370,25374,25381,25390,25410,25411,25418,25420,25421,25432,25436,25454,25459,25465,25472,25474,25484,25495,25581,25586,25592,25629,25651,25658,25666,25675,25709,25753,25783,25784,25785,25814,25821,25830,25842,25844,25867,25880,25887,25914,25922,25933,25942,25943,25968,25990,26004,26013,26037,26040,26057,26060,26063,26068,26076,26079,26084,26090,26110,26117,26121,26125,26126,26128,26133,26145,26147,26151,26154,26162,26163,26168,26169,26170,26178,26186,26195,26203,26210,26234,26265,26268,26270,26280,26283,26288,26289,26290,26295,26296,26298,26299,26307,26308,26315,26317,26321,26322,26323,26327,26328,26345,26347,26350,26353,26359,26366,26368,26369,26370,26372,26376,26378,26380,26404,26422,26423,26425,26427,26428,26440,26441,26446,26456,26464,26472,26480,26497,26501,26507,26509,26510,26513,26520,26542,26560,26568,26569,26572,26578,26581,26583,26584,26589,26597,26600,26607,26608,26612,26614,26622,26629,26631,26634,26651,26653,26718,26730,26731,26740,26741,26743,26765,26771,26773,26774,26775,26788,26794,26802,26810,26811,26821,26822,26827,26837,26848,26868,26869,26876,26891,26900,26912,26941,26947,26948,26951,26974,26979,26983,26998,27011,27018,27019,27024,27028,27032,27097,27098,27104,27110,27119,27120,27126,27153,27156,27171,27172,27213,27215,27249,27260,27274,27300,27304,27309,27312,27316,27327,27335,27344,27348,27354,27362,27379,27383,27392,27396,27404,27422,27444,27456,27463,27464,27465,27466,27471,27523,27526,27527,27535,27549,27554,27556,27558,27559,27601,27610,27618,27619,27656,27672,27710,27718,27722,27744,27755,27768,27776,27779,27827,27840,27846,27877,27884,27885,27889,27902,27903,27916,27933,27934,27947,27970,27980,27989,27991,28011,28017,28021,28024,28034,28036,28038,28046,28048,28063,28072,28077,28081,28085,28095,28115,28127,28160,28161,28165,28166,28176,28179,28185,28187,28193,28194,28195,28197,28205,28210,28215,28223,28224,28233,28235,28245,28263,28269,28277,28303,28346,28347,28393,28406,28456,28464,28467,28492,28494,28533,28547,28553,28554,28559,28571,28584,28608,28612,28628,28649,28650,28661,28674,28675,28677,28724,28730,28738,28765,28810,28811,28826,28828,28841,28842,28846,28865,28866,28878,28879,28885,28895,28915,28925,28939,28943,28946,28958,28963,29015,29028,29047,29058,29061,29065,29072,29093,29096,29097,29104,29107,29109,29110,29111,29112,29113,29114,29115,29120,29123,29124,29126,29135,29153,29154,29167,29170,29196,29226,29237,29238,29266,29271,29288,29301,29318,29334,29343,29377,29378,29384,29426,29430,29441,29464,29478,29483,29506,29508,29513,29525,29540,29551,29553,29554,29558,29570,29573,29576,29600,29634,29668,29701,29792,29835,29849,29853,29859,29864,29887,29902,29904,29916,29928,29976,29988,30008,30011,30015,30031,30037,30068,30069,30070,30076,30078,30101,30133,30171,30175,30191,30207,30251,30261,30309,30311,30314,30315,30317,30318,30329,30330,30332,30338,30374,30377,30392,30395,30396,30397,30408,30411,30457,30497,30508,30509,30521,30527,30566,30569,30571,30579,30587,30588,30589,30591,30593,30598,30603,30604,30605,30606,30607,30608,30609,30610,30616,30625,30628,30642,30643,30649,30668,30669,30677,30695,30702,30713,30722,30724,30727,30728,30738,30739,30751,30755,30756,30758,30762,30764,30773,30784,30786,30788,30794,30807,30814,30815,30816,30817,30818,30819,30823,30824,30831,30832,30837,30838,30840,30841,30842,30843,30853,30857,30858,30860,30861,30862,30865,30869,30871,30877,30879,30881,30883,30884,30906,30907,30909,30919,30921,30928,30934,30936,30939,30941,30943,30944,30946,30948,30952,30953,30954,30955,30961,30964,30965,30967,30975,30976,30977,30981,30983,30986,30994,30996,30997,31005,31012,31013,31019,31022,31032,31038,31039,31045,31047,31050,31055,31056,31059,31063,31074,31081,31099]]],["+",[33,33,[[40,2,2,0,2,[[970,1,1,0,1],[971,1,1,1,2]]],[41,4,4,2,6,[[980,1,1,2,3],[983,1,1,3,4],[994,1,1,4,5],[995,1,1,5,6]]],[42,7,7,6,13,[[999,1,1,6,7],[1000,1,1,7,8],[1002,2,2,8,10],[1005,2,2,10,12],[1007,1,1,12,13]]],[43,6,6,13,19,[[1026,1,1,13,14],[1027,1,1,14,15],[1028,1,1,15,16],[1032,1,1,16,17],[1036,1,1,17,18],[1043,1,1,18,19]]],[44,3,3,19,22,[[1047,1,1,19,20],[1048,1,1,20,21],[1057,1,1,21,22]]],[46,2,2,22,24,[[1086,2,2,22,24]]],[48,1,1,24,25,[[1099,1,1,24,25]]],[50,1,1,25,26,[[1109,1,1,25,26]]],[51,2,2,26,28,[[1113,1,1,26,27],[1115,1,1,27,28]]],[53,1,1,28,29,[[1124,1,1,28,29]]],[57,2,2,29,31,[[1143,1,1,29,30],[1145,1,1,30,31]]],[61,1,1,31,32,[[1162,1,1,31,32]]],[65,1,1,32,33,[[1182,1,1,32,33]]]],[24785,24865,25272,25418,25880,25942,26151,26168,26296,26307,26464,26472,26578,27249,27304,27316,27463,27619,27846,27970,28017,28263,28958,28963,29271,29540,29600,29634,29792,30207,30251,30609,30965]]],["From",[5,5,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[42,1,1,3,4,[[1002,1,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]]],[23851,24671,25784,26323,29288]]],["Of",[17,9,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]],[48,1,1,4,5,[[1099,1,1,4,5]]],[65,12,4,5,9,[[1173,12,4,5,9]]]],[23852,24672,25785,26794,29266,30815,30816,30817,30818]]],["Out",[3,3,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[991,1,1,1,2]]],[58,1,1,2,3,[[1148,1,1,2,3]]]],[23184,25753,30329]]],["among",[6,6,[[39,1,1,0,1,[[940,1,1,0,1]]],[42,2,2,1,3,[[1008,2,2,1,3]]],[43,2,2,3,5,[[1023,1,1,3,4],[1044,1,1,4,5]]],[57,1,1,5,6,[[1137,1,1,5,6]]]],[23500,26600,26622,27104,27877,30031]]],["at",[3,3,[[42,1,1,0,1,[[1012,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]],[65,1,1,2,3,[[1185,1,1,2,3]]]],[26730,30330,31019]]],["betwixt",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29384]]],["beyond",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24458]]],["by",[55,42,[[39,4,3,0,3,[[940,3,2,0,2],[943,1,1,2,3]]],[40,1,1,3,4,[[963,1,1,3,4]]],[41,1,1,4,5,[[978,1,1,4,5]]],[42,1,1,5,6,[[999,1,1,5,6]]],[43,1,1,6,7,[[1036,1,1,6,7]]],[44,12,11,7,18,[[1046,2,2,7,9],[1047,1,1,9,10],[1048,2,2,10,12],[1049,1,1,12,13],[1050,2,2,13,15],[1054,3,2,15,17],[1055,1,1,17,18]]],[46,7,5,18,23,[[1079,1,1,18,19],[1084,1,1,19,20],[1085,1,1,20,21],[1088,2,1,21,22],[1090,2,1,22,23]]],[47,15,9,23,32,[[1092,4,1,23,24],[1093,8,6,24,30],[1094,2,1,30,31],[1095,1,1,31,32]]],[55,1,1,32,33,[[1131,1,1,32,33]]],[57,1,1,33,34,[[1142,1,1,33,34]]],[58,6,5,34,39,[[1147,6,5,34,39]]],[59,1,1,39,40,[[1152,1,1,39,40]]],[61,1,1,40,41,[[1161,1,1,40,41]]],[65,3,1,41,42,[[1175,3,1,41,42]]]],[23522,23526,23638,24474,25190,26154,27610,27934,27947,27989,28011,28021,28024,28048,28063,28165,28187,28205,28826,28925,28946,29015,29047,29097,29104,29107,29113,29123,29124,29126,29153,29167,29928,30171,30311,30314,30315,30317,30318,30411,30603,30858]]],["for",[2,2,[[39,1,1,0,1,[[948,1,1,0,1]]],[65,1,1,1,2,[[1182,1,1,1,2]]]],[23794,30964]]],["from",[182,174,[[39,11,11,0,11,[[931,1,1,0,1],[940,1,1,1,2],[941,1,1,2,3],[943,1,1,3,4],[944,1,1,4,5],[945,1,1,5,6],[947,2,2,6,8],[949,1,1,8,9],[952,1,1,9,10],[956,1,1,10,11]]],[40,12,12,11,23,[[957,1,1,11,12],[962,2,2,12,14],[963,1,1,14,15],[965,2,2,15,17],[966,1,1,17,18],[967,2,2,18,20],[968,1,1,20,21],[969,1,1,21,22],[972,1,1,22,23]]],[41,19,18,23,41,[[973,4,3,23,26],[975,1,1,26,27],[981,1,1,27,28],[982,2,2,28,30],[983,2,2,30,32],[984,1,1,32,33],[988,1,1,33,34],[989,1,1,34,35],[990,1,1,35,36],[992,2,2,36,38],[995,1,1,38,39],[996,2,2,39,41]]],[42,38,36,41,77,[[997,2,2,41,43],[998,1,1,43,44],[999,3,3,44,47],[1001,1,1,47,48],[1002,12,11,48,59],[1004,3,2,59,61],[1005,1,1,61,62],[1006,1,1,62,63],[1008,6,6,63,69],[1009,1,1,69,70],[1013,1,1,70,71],[1014,1,1,71,72],[1015,2,2,72,74],[1016,2,2,74,76],[1017,1,1,76,77]]],[43,29,29,77,106,[[1018,1,1,77,78],[1019,1,1,78,79],[1020,3,3,79,82],[1021,2,2,82,84],[1024,1,1,84,85],[1027,1,1,85,86],[1028,2,2,86,88],[1029,2,2,88,90],[1030,2,2,90,92],[1031,1,1,92,93],[1032,2,2,93,95],[1034,3,3,95,98],[1035,2,2,98,100],[1039,1,1,100,101],[1040,1,1,101,102],[1043,2,2,102,104],[1044,1,1,104,105],[1045,1,1,105,106]]],[44,13,12,106,118,[[1046,1,1,106,107],[1049,1,1,107,108],[1051,4,4,108,112],[1052,2,2,112,114],[1053,2,1,114,115],[1055,2,2,115,117],[1056,1,1,117,118]]],[45,6,6,118,124,[[1066,2,2,118,120],[1070,1,1,120,121],[1076,3,3,121,124]]],[46,5,5,124,129,[[1078,1,1,124,125],[1080,1,1,125,126],[1082,2,2,126,128],[1083,1,1,128,129]]],[47,5,5,129,134,[[1091,4,4,129,133],[1093,1,1,133,134]]],[48,3,3,134,137,[[1097,1,1,134,135],[1101,1,1,135,136],[1102,1,1,136,137]]],[49,1,1,137,138,[[1105,1,1,137,138]]],[50,5,5,138,143,[[1107,2,2,138,140],[1108,2,2,140,142],[1110,1,1,142,143]]],[51,2,1,143,144,[[1111,2,1,143,144]]],[54,1,1,144,145,[[1126,1,1,144,145]]],[57,4,4,145,149,[[1137,1,1,145,146],[1139,1,1,146,147],[1143,1,1,147,148],[1145,1,1,148,149]]],[58,2,1,149,150,[[1150,2,1,149,150]]],[59,3,3,150,153,[[1151,3,3,150,153]]],[60,2,2,153,155,[[1156,1,1,153,154],[1157,1,1,154,155]]],[61,2,2,155,157,[[1160,1,1,155,156],[1161,1,1,156,157]]],[65,19,17,157,174,[[1169,1,1,157,158],[1174,1,1,158,159],[1175,2,2,159,161],[1176,3,3,161,164],[1177,2,2,164,166],[1179,1,1,166,167],[1180,4,3,167,170],[1181,2,1,170,171],[1184,2,2,171,173],[1186,1,1,173,174]]]],[23209,23531,23588,23651,23673,23709,23774,23782,23851,23988,24197,24226,24421,24423,24494,24547,24548,24608,24660,24670,24698,24744,24876,24908,24964,24971,25047,25308,25370,25381,25421,25436,25495,25651,25658,25709,25783,25814,25990,26037,26040,26063,26076,26117,26133,26147,26151,26234,26280,26288,26289,26290,26295,26298,26299,26307,26308,26315,26321,26404,26423,26441,26513,26581,26589,26597,26607,26608,26612,26634,26774,26788,26837,26848,26868,26876,26912,26948,26951,26998,27011,27019,27024,27032,27119,27300,27312,27316,27344,27362,27392,27396,27422,27466,27471,27526,27554,27556,27558,27559,27710,27744,27827,27840,27889,27916,27947,28046,28072,28077,28081,28085,28095,28115,28127,28195,28197,28224,28456,28467,28559,28730,28738,28765,28810,28842,28879,28885,28915,29058,29061,29065,29072,29115,29226,29318,29343,29441,29478,29483,29506,29513,29558,29570,29835,30037,30070,30191,30261,30374,30377,30392,30395,30497,30521,30569,30593,30756,30837,30841,30853,30862,30865,30869,30883,30884,30921,30928,30939,30944,30954,30994,30997,31039]]],["in",[8,7,[[41,1,1,0,1,[[983,1,1,0,1]]],[45,5,4,1,5,[[1073,1,1,1,2],[1074,4,3,2,5]]],[46,1,1,5,6,[[1085,1,1,5,6]]],[65,1,1,6,7,[[1169,1,1,6,7]]]],[25411,28661,28674,28675,28677,28939,30764]]],["of",[511,441,[[39,35,33,0,33,[[929,7,6,0,6],[931,1,1,6,7],[933,1,1,7,8],[934,1,1,8,9],[935,2,2,9,11],[938,1,1,11,12],[940,1,1,12,13],[941,2,2,13,15],[943,1,1,15,16],[946,1,1,16,17],[949,3,3,17,20],[950,1,1,20,21],[951,3,2,21,23],[952,1,1,23,24],[953,2,2,24,26],[954,4,4,26,30],[955,3,3,30,33]]],[40,29,27,33,60,[[957,3,3,33,36],[961,4,3,36,39],[962,1,1,39,40],[963,4,4,40,44],[965,3,3,44,47],[967,2,2,47,49],[968,2,1,49,50],[969,2,2,50,52],[970,6,6,52,58],[971,1,1,58,59],[972,1,1,59,60]]],[41,50,45,60,105,[[973,5,4,60,64],[974,4,3,64,67],[975,1,1,67,68],[976,3,3,68,71],[977,2,2,71,73],[978,4,3,73,76],[980,1,1,76,77],[981,1,1,77,78],[982,1,1,78,79],[983,5,5,79,84],[984,4,4,84,88],[986,2,2,88,90],[987,2,1,90,91],[988,1,1,91,92],[989,2,2,92,94],[992,1,1,94,95],[993,4,3,95,98],[994,4,4,98,102],[995,1,1,102,103],[996,2,2,103,105]]],[42,107,90,105,195,[[997,9,6,105,111],[998,2,1,111,112],[999,8,6,112,118],[1000,8,8,118,126],[1002,10,10,126,136],[1003,16,13,136,149],[1004,9,6,149,155],[1005,3,3,155,158],[1006,6,6,158,164],[1007,5,5,164,169],[1008,5,5,169,174],[1009,3,3,174,177],[1011,3,1,177,178],[1012,4,4,178,182],[1013,7,5,182,187],[1014,6,5,187,192],[1015,1,1,192,193],[1016,1,1,193,194],[1017,1,1,194,195]]],[43,43,42,195,237,[[1018,1,1,195,196],[1019,1,1,196,197],[1020,1,1,197,198],[1021,1,1,198,199],[1022,2,2,199,201],[1023,1,1,201,202],[1024,5,5,202,207],[1025,1,1,207,208],[1027,1,1,208,209],[1028,3,3,209,212],[1029,2,2,212,214],[1030,3,3,214,217],[1032,4,4,217,221],[1033,1,1,221,222],[1034,3,3,222,225],[1036,2,2,225,227],[1037,1,1,227,228],[1038,1,1,228,229],[1039,2,2,229,231],[1040,2,2,231,233],[1041,2,2,233,235],[1044,2,1,235,236],[1045,1,1,236,237]]],[44,32,25,237,262,[[1046,1,1,237,238],[1047,3,2,238,240],[1049,5,3,240,243],[1050,1,1,243,244],[1054,8,6,244,250],[1055,2,2,250,252],[1056,6,5,252,257],[1058,2,2,257,259],[1059,2,1,259,260],[1061,2,2,260,262]]],[45,23,17,262,279,[[1062,1,1,262,263],[1063,1,1,263,264],[1066,1,1,264,265],[1068,1,1,265,266],[1069,1,1,266,267],[1070,4,3,267,270],[1071,2,2,270,272],[1072,6,3,272,275],[1073,4,2,275,277],[1076,2,2,277,279]]],[46,13,11,279,290,[[1078,1,1,279,280],[1079,3,2,280,282],[1080,2,1,282,283],[1081,2,2,283,285],[1082,2,2,285,287],[1085,1,1,287,288],[1086,1,1,288,289],[1089,1,1,289,290]]],[47,14,11,290,301,[[1092,2,2,290,292],[1093,6,5,292,297],[1094,3,2,297,299],[1095,1,1,299,300],[1096,2,1,300,301]]],[48,5,4,301,305,[[1098,2,2,301,303],[1100,1,1,303,304],[1101,2,1,304,305]]],[49,7,5,305,310,[[1103,2,2,305,307],[1105,4,2,307,309],[1106,1,1,309,310]]],[50,5,5,310,315,[[1108,1,1,310,311],[1109,1,1,311,312],[1110,3,3,312,315]]],[51,3,2,315,317,[[1112,3,2,315,317]]],[52,1,1,317,318,[[1117,1,1,317,318]]],[53,1,1,318,319,[[1119,1,1,318,319]]],[54,6,6,319,325,[[1126,3,3,319,322],[1127,2,2,322,324],[1128,1,1,324,325]]],[55,3,3,325,328,[[1129,2,2,325,327],[1130,1,1,327,328]]],[57,11,10,328,338,[[1134,1,1,328,329],[1135,2,2,329,331],[1136,1,1,331,332],[1139,5,4,332,336],[1140,1,1,336,337],[1143,1,1,337,338]]],[58,3,3,338,341,[[1147,1,1,338,339],[1148,1,1,339,340],[1149,1,1,340,341]]],[59,3,3,341,344,[[1151,1,1,341,342],[1152,1,1,342,343],[1154,1,1,343,344]]],[60,2,2,344,346,[[1157,1,1,344,345],[1158,1,1,345,346]]],[61,30,21,346,367,[[1160,7,4,346,350],[1161,6,5,350,355],[1162,11,8,355,363],[1163,6,4,363,367]]],[62,1,1,367,368,[[1164,1,1,367,368]]],[63,2,2,368,370,[[1165,2,2,368,370]]],[64,2,2,370,372,[[1166,2,2,370,372]]],[65,80,69,372,441,[[1167,2,2,372,374],[1168,6,6,374,380],[1169,3,3,380,383],[1171,4,3,383,386],[1172,3,2,386,388],[1173,4,4,388,392],[1174,3,3,392,395],[1175,10,6,395,401],[1176,1,1,401,402],[1177,3,3,402,405],[1178,2,2,405,407],[1179,2,2,407,409],[1180,5,5,409,414],[1181,2,2,414,416],[1182,9,5,416,421],[1183,3,3,421,424],[1184,5,4,424,428],[1185,3,3,428,431],[1186,3,3,431,434],[1187,5,5,434,439],[1188,2,2,439,441]]]],[23147,23149,23150,23160,23162,23164,23201,23271,23309,23321,23325,23446,23524,23580,23586,23651,23739,23842,23851,23857,23907,23943,23952,23974,24010,24016,24075,24081,24083,24127,24158,24177,24182,24240,24241,24244,24366,24372,24394,24461,24483,24484,24489,24492,24545,24555,24563,24654,24670,24717,24718,24732,24772,24774,24777,24779,24823,24824,24872,24885,24898,24920,24928,24967,24977,25008,25009,25033,25085,25098,25101,25110,25124,25188,25190,25191,25272,25336,25374,25410,25420,25432,25454,25459,25465,25472,25474,25484,25581,25586,25592,25629,25658,25666,25783,25830,25842,25844,25867,25887,25914,25922,25943,26004,26013,26057,26060,26068,26079,26084,26090,26110,26121,26125,26126,26128,26145,26151,26163,26169,26170,26178,26186,26195,26203,26210,26265,26268,26270,26283,26308,26317,26321,26322,26327,26328,26345,26347,26350,26353,26359,26366,26368,26369,26370,26372,26376,26378,26380,26404,26422,26425,26427,26428,26440,26446,26456,26480,26497,26501,26507,26509,26510,26520,26542,26560,26568,26569,26572,26584,26589,26597,26614,26629,26631,26651,26653,26718,26731,26740,26741,26743,26765,26771,26773,26774,26775,26802,26810,26811,26821,26822,26827,26891,26900,26947,26979,27018,27028,27097,27098,27110,27119,27120,27126,27153,27156,27215,27260,27309,27327,27335,27348,27354,27379,27383,27404,27444,27456,27464,27465,27523,27527,27535,27549,27601,27618,27656,27672,27718,27722,27755,27768,27776,27779,27885,27902,27933,27980,27991,28034,28036,28038,28063,28160,28161,28166,28176,28179,28185,28193,28194,28210,28215,28223,28235,28245,28269,28277,28303,28346,28347,28393,28406,28464,28494,28533,28547,28553,28554,28571,28584,28608,28612,28628,28649,28650,28724,28765,28811,28828,28841,28846,28865,28866,28878,28895,28943,28963,29028,29093,29096,29109,29111,29112,29114,29120,29135,29154,29170,29196,29237,29238,29301,29334,29377,29378,29426,29430,29464,29508,29525,29551,29553,29554,29573,29576,29668,29701,29835,29849,29853,29859,29864,29887,29902,29904,29916,29988,30008,30011,30015,30068,30069,30076,30078,30101,30175,30309,30332,30338,30397,30408,30457,30509,30527,30566,30569,30571,30579,30587,30588,30589,30591,30598,30604,30605,30606,30607,30608,30609,30610,30616,30625,30628,30642,30643,30649,30668,30669,30677,30695,30702,30713,30722,30724,30727,30728,30738,30739,30755,30758,30762,30784,30786,30788,30794,30807,30814,30819,30823,30824,30831,30838,30840,30842,30843,30857,30858,30860,30861,30871,30877,30879,30881,30906,30907,30909,30919,30934,30936,30941,30943,30946,30952,30953,30955,30961,30965,30967,30975,30976,30983,30986,30996,30997,31005,31012,31022,31032,31038,31045,31047,31050,31055,31056,31059,31063,31074,31081,31099]]],["off",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24648]]],["on",[34,26,[[39,13,9,0,9,[[948,4,2,0,2],[949,1,1,2,3],[950,1,1,3,4],[953,4,3,4,7],[954,1,1,7,8],[955,2,1,8,9]]],[40,9,6,9,15,[[966,4,2,9,11],[968,1,1,11,12],[970,1,1,12,13],[971,2,1,13,14],[972,1,1,14,15]]],[41,5,4,15,19,[[973,1,1,15,16],[992,1,1,16,17],[994,1,1,17,18],[995,2,1,18,19]]],[43,5,5,19,24,[[1019,2,2,19,21],[1024,2,2,21,23],[1045,1,1,23,24]]],[57,1,1,24,25,[[1133,1,1,24,25]]],[65,1,1,25,26,[[1184,1,1,25,26]]]],[23813,23815,23845,23916,24041,24042,24049,24118,24167,24625,24628,24709,24816,24853,24892,24904,25821,25933,25968,26974,26983,27171,27172,27903,29976,31013]]],["out",[17,16,[[39,9,9,0,9,[[930,1,1,0,1],[935,1,1,1,2],[936,1,1,2,3],[940,2,2,3,5],[941,1,1,5,6],[943,2,2,6,8],[945,1,1,8,9]]],[41,3,2,9,11,[[978,2,1,9,10],[989,1,1,10,11]]],[42,1,1,11,12,[[1016,1,1,11,12]]],[43,1,1,12,13,[[1044,1,1,12,13]]],[44,1,1,13,14,[[1056,1,1,13,14]]],[65,2,2,14,16,[[1169,1,1,14,15],[1170,1,1,15,16]]]],[23175,23321,23373,23523,23524,23591,23644,23652,23705,25191,25675,26869,27884,28233,30751,30773]]],["over",[4,1,[[65,4,1,0,1,[[1181,4,1,0,1]]]],[30948]]],["the",[5,5,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[43,1,1,3,4,[[1027,1,1,3,4]]],[57,1,1,4,5,[[1141,1,1,4,5]]]],[24096,24098,24826,27274,30133]]],["through",[3,3,[[46,1,1,0,1,[[1090,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[29047,29110,30996]]],["to",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30508]]],["with",[25,15,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,8,2,1,3,[[968,8,2,1,3]]],[41,4,1,3,4,[[982,4,1,3,4]]],[42,2,2,4,6,[[1000,1,1,4,5],[1008,1,1,5,6]]],[43,2,2,6,8,[[1018,1,1,6,7],[1025,1,1,7,8]]],[45,1,1,8,9,[[1068,1,1,8,9]]],[59,1,1,9,10,[[1151,1,1,9,10]]],[65,6,5,10,15,[[1174,1,1,10,11],[1183,3,2,11,13],[1184,1,1,13,14],[1185,1,1,14,15]]]],[24136,24703,24706,25390,26162,26583,26941,27213,28492,30396,30832,30977,30981,30994,31038]]]]},{"k":"G1538","v":[["*",[83,78,[[39,4,4,0,4,[[944,1,1,0,1],[946,1,1,1,2],[953,1,1,2,3],[954,1,1,3,4]]],[40,1,1,4,5,[[969,1,1,4,5]]],[41,5,5,5,10,[[974,1,1,5,6],[976,1,1,6,7],[978,1,1,7,8],[985,1,1,8,9],[988,1,1,9,10]]],[42,4,4,10,14,[[1002,1,1,10,11],[1003,1,1,11,12],[1012,1,1,12,13],[1015,1,1,13,14]]],[43,11,11,14,25,[[1019,4,4,14,18],[1020,1,1,18,19],[1021,1,1,19,20],[1028,1,1,20,21],[1034,1,1,21,22],[1037,1,1,22,23],[1038,2,2,23,25]]],[44,5,5,25,30,[[1047,1,1,25,26],[1057,1,1,26,27],[1059,2,2,27,29],[1060,1,1,29,30]]],[45,23,20,30,50,[[1062,1,1,30,31],[1064,5,4,31,35],[1065,1,1,35,36],[1068,7,5,36,41],[1071,1,1,41,42],[1072,1,1,42,43],[1073,3,3,43,46],[1075,1,1,46,47],[1076,2,2,47,49],[1077,1,1,49,50]]],[46,2,2,50,52,[[1082,1,1,50,51],[1086,1,1,51,52]]],[47,2,2,52,54,[[1096,2,2,52,54]]],[48,5,5,54,59,[[1100,3,3,54,57],[1101,1,1,57,58],[1102,1,1,58,59]]],[49,2,1,59,60,[[1104,2,1,59,60]]],[50,1,1,60,61,[[1110,1,1,60,61]]],[51,2,2,61,63,[[1112,1,1,61,62],[1114,1,1,62,63]]],[52,1,1,63,64,[[1116,1,1,63,64]]],[57,5,4,64,68,[[1135,1,1,64,65],[1138,1,1,65,66],[1140,2,1,66,67],[1143,1,1,67,68]]],[58,1,1,68,69,[[1146,1,1,68,69]]],[59,2,2,69,71,[[1151,1,1,69,70],[1154,1,1,70,71]]],[65,7,7,71,78,[[1168,1,1,71,72],[1171,1,1,72,73],[1172,1,1,73,74],[1186,1,1,74,75],[1187,1,1,75,76],[1188,2,2,76,78]]]],[23699,23762,24023,24076,24751,24976,25103,25190,25533,25625,26264,26381,26758,26848,26952,26955,26957,26987,27022,27057,27336,27550,27657,27683,27690,27968,28248,28285,28292,28305,28375,28415,28418,28420,28423,28438,28489,28494,28504,28507,28511,28591,28621,28641,28645,28652,28704,28741,28756,28778,28887,28963,29192,29193,29279,29288,29297,29337,29345,29395,29548,29581,29607,29652,30008,30055,30103,30193,30280,30391,30456,30740,30787,30804,31051,31074,31082,31092]]],["+",[9,9,[[43,3,3,0,3,[[1019,2,2,0,2],[1038,1,1,2,3]]],[45,1,1,3,4,[[1068,1,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]],[50,1,1,5,6,[[1110,1,1,5,6]]],[57,1,1,6,7,[[1135,1,1,6,7]]],[65,2,2,7,9,[[1187,1,1,7,8],[1188,1,1,8,9]]]],[26952,26955,27683,28507,29288,29548,30008,31074,31082]]],["both",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30193]]],["every",[12,12,[[41,3,3,0,3,[[976,1,1,0,1],[978,1,1,1,2],[988,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[43,3,3,4,7,[[1034,1,1,4,5],[1037,1,1,5,6],[1038,1,1,6,7]]],[45,2,2,7,9,[[1073,1,1,7,8],[1076,1,1,8,9]]],[48,1,1,9,10,[[1100,1,1,9,10]]],[51,1,1,10,11,[[1112,1,1,10,11]]],[52,1,1,11,12,[[1116,1,1,11,12]]]],[25103,25190,25625,26848,27550,27657,27690,28652,28756,29279,29581,29652]]],["man",[36,34,[[39,2,2,0,2,[[944,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[42,2,2,3,5,[[1003,1,1,3,4],[1012,1,1,4,5]]],[43,3,3,5,8,[[1019,1,1,5,6],[1021,1,1,6,7],[1028,1,1,7,8]]],[44,3,3,8,11,[[1047,1,1,8,9],[1057,1,1,9,10],[1059,1,1,10,11]]],[45,12,12,11,23,[[1064,3,3,11,14],[1065,1,1,14,15],[1068,4,4,15,19],[1071,1,1,19,20],[1073,2,2,20,22],[1076,1,1,22,23]]],[46,1,1,23,24,[[1086,1,1,23,24]]],[47,2,2,24,26,[[1096,2,2,24,26]]],[48,2,2,26,28,[[1100,1,1,26,27],[1102,1,1,27,28]]],[49,2,1,28,29,[[1104,2,1,28,29]]],[57,2,1,29,30,[[1140,2,1,29,30]]],[58,1,1,30,31,[[1146,1,1,30,31]]],[59,1,1,31,32,[[1154,1,1,31,32]]],[65,2,2,32,34,[[1186,1,1,32,33],[1188,1,1,33,34]]]],[23699,24023,24751,26381,26758,26957,27057,27336,27968,28248,28285,28415,28418,28420,28438,28489,28494,28504,28511,28591,28641,28645,28741,28963,29192,29193,29297,29345,29395,30103,30280,30456,31051,31092]]],["man's",[3,2,[[45,2,1,0,1,[[1064,2,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[28423,30391]]],["one",[19,19,[[39,2,2,0,2,[[946,1,1,0,1],[954,1,1,1,2]]],[41,2,2,2,4,[[974,1,1,2,3],[985,1,1,3,4]]],[42,1,1,4,5,[[1002,1,1,4,5]]],[43,2,2,5,7,[[1019,1,1,5,6],[1020,1,1,6,7]]],[44,2,2,7,9,[[1059,1,1,7,8],[1060,1,1,8,9]]],[45,5,5,9,14,[[1062,1,1,9,10],[1068,1,1,10,11],[1072,1,1,11,12],[1075,1,1,12,13],[1077,1,1,13,14]]],[46,1,1,14,15,[[1082,1,1,14,15]]],[48,1,1,15,16,[[1101,1,1,15,16]]],[51,1,1,16,17,[[1114,1,1,16,17]]],[57,1,1,17,18,[[1138,1,1,17,18]]],[65,1,1,18,19,[[1168,1,1,18,19]]]],[23762,24076,24976,25533,26264,26987,27022,28292,28305,28375,28504,28621,28704,28778,28887,29337,29607,30055,30740]]],["them",[2,2,[[65,2,2,0,2,[[1171,1,1,0,1],[1172,1,1,1,2]]]],[30787,30804]]],["woman",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28489]]]]},{"k":"G1539","v":[["always",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30494]]]]},{"k":"G1540","v":[["*",[17,17,[[39,4,4,0,4,[[941,2,2,0,2],[946,2,2,2,4]]],[40,3,3,4,7,[[960,2,2,4,6],[962,1,1,6,7]]],[41,3,3,7,10,[[987,1,1,7,8],[988,2,2,8,10]]],[42,2,2,10,12,[[1015,1,1,10,11],[1017,1,1,11,12]]],[43,1,1,12,13,[[1018,1,1,12,13]]],[65,4,4,13,17,[[1173,1,1,13,14],[1180,2,2,14,16],[1187,1,1,16,17]]]],[23547,23562,23739,23755,24331,24343,24447,25592,25626,25627,26864,26909,26938,30814,30927,30929,31070]]],["+",[9,9,[[39,2,2,0,2,[[941,2,2,0,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[42,1,1,3,4,[[1017,1,1,3,4]]],[43,1,1,4,5,[[1018,1,1,4,5]]],[65,4,4,5,9,[[1173,1,1,5,6],[1180,2,2,6,8],[1187,1,1,8,9]]]],[23547,23562,24447,26909,26938,30814,30927,30929,31070]]],["hundred",[8,8,[[39,2,2,0,2,[[946,2,2,0,2]]],[40,2,2,2,4,[[960,2,2,2,4]]],[41,3,3,4,7,[[987,1,1,4,5],[988,2,2,5,7]]],[42,1,1,7,8,[[1015,1,1,7,8]]]],[23739,23755,24331,24343,25592,25626,25627,26864]]]]},{"k":"G1541","v":[["old",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28041]]]]},{"k":"G1542","v":[["hundredfold",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23791,24618,25253]]]]},{"k":"G1543","v":[["*",[21,21,[[39,4,4,0,4,[[936,3,3,0,3],[955,1,1,3,4]]],[41,3,3,4,7,[[979,2,2,4,6],[995,1,1,6,7]]],[43,14,14,7,21,[[1027,2,2,7,9],[1038,1,1,9,10],[1039,2,2,10,12],[1040,2,2,12,14],[1041,1,1,14,15],[1044,5,5,15,20],[1045,1,1,20,21]]]],[23350,23353,23358,24183,25197,25201,25982,27260,27281,27696,27729,27730,27751,27757,27792,27856,27861,27866,27886,27898,27915]]],["+",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27751]]],["centurion",[17,17,[[39,4,4,0,4,[[936,3,3,0,3],[955,1,1,3,4]]],[41,2,2,4,6,[[979,1,1,4,5],[995,1,1,5,6]]],[43,11,11,6,17,[[1027,2,2,6,8],[1039,2,2,8,10],[1041,1,1,10,11],[1044,5,5,11,16],[1045,1,1,16,17]]]],[23350,23353,23358,24183,25201,25982,27260,27281,27729,27730,27792,27856,27861,27866,27886,27898,27915]]],["centurion's",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25197]]],["centurions",[2,2,[[43,2,2,0,2,[[1038,1,1,0,1],[1040,1,1,1,2]]]],[27696,27757]]]]},{"k":"G1544","v":[["*",[82,76,[[39,28,25,0,25,[[935,4,3,0,3],[936,3,3,3,6],[937,4,4,6,10],[938,2,2,10,12],[940,8,6,12,18],[941,1,1,18,19],[943,1,1,19,20],[945,1,1,20,21],[949,2,2,21,23],[950,1,1,23,24],[953,1,1,24,25]]],[40,18,18,25,43,[[957,4,4,25,29],[959,3,3,29,32],[961,1,1,32,33],[962,1,1,33,34],[963,1,1,34,35],[965,4,4,35,39],[967,1,1,39,40],[968,1,1,40,41],[972,2,2,41,43]]],[41,21,18,43,61,[[976,1,1,43,44],[978,4,2,44,46],[980,1,1,46,47],[981,2,2,47,49],[982,2,2,49,51],[983,6,5,51,56],[985,2,2,56,58],[991,1,1,58,59],[992,2,2,59,61]]],[42,6,6,61,67,[[998,1,1,61,62],[1002,1,1,62,63],[1005,2,2,63,65],[1006,1,1,65,66],[1008,1,1,66,67]]],[43,5,5,67,72,[[1024,1,1,67,68],[1026,1,1,68,69],[1030,1,1,69,70],[1033,1,1,70,71],[1044,1,1,71,72]]],[47,1,1,72,73,[[1094,1,1,72,73]]],[58,1,1,73,74,[[1147,1,1,73,74]]],[63,1,1,74,75,[[1165,1,1,74,75]]],[65,1,1,75,76,[[1177,1,1,75,76]]]],[23320,23321,23338,23357,23361,23376,23404,23412,23413,23417,23418,23425,23509,23513,23515,23516,23517,23524,23591,23650,23719,23838,23865,23885,24038,24227,24249,24254,24258,24303,24310,24311,24404,24420,24489,24556,24566,24576,24585,24655,24681,24882,24890,25092,25168,25188,25299,25341,25350,25365,25398,25419,25420,25423,25424,25425,25546,25550,25776,25791,25794,26110,26294,26474,26475,26485,26611,27174,27256,27412,27520,27893,29161,30318,30668,30874]]],["+",[10,10,[[39,3,3,0,3,[[936,1,1,0,1],[938,1,1,1,2],[945,1,1,2,3]]],[40,5,5,3,8,[[957,1,1,3,4],[961,1,1,4,5],[965,3,3,5,8]]],[41,1,1,8,9,[[981,1,1,8,9]]],[43,1,1,9,10,[[1033,1,1,9,10]]]],[23376,23418,23719,24258,24404,24556,24566,24585,25341,27520]]],["cast",[11,11,[[39,3,3,0,3,[[949,1,1,0,1],[950,1,1,1,2],[953,1,1,2,3]]],[40,2,2,3,5,[[968,1,1,3,4],[972,1,1,4,5]]],[41,1,1,5,6,[[992,1,1,5,6]]],[42,4,4,6,10,[[1002,1,1,6,7],[1005,2,2,7,9],[1008,1,1,9,10]]],[43,1,1,10,11,[[1024,1,1,10,11]]]],[23865,23885,24038,24681,24882,25794,26294,26474,26475,26611,27174]]],["casteth",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30668]]],["driveth",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24227]]],["drove",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26110]]],["expelled",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27412]]],["forth",[9,8,[[39,6,5,0,5,[[937,2,2,0,2],[940,3,2,2,4],[941,1,1,4,5]]],[40,1,1,5,6,[[963,1,1,5,6]]],[41,1,1,6,7,[[982,1,1,6,7]]],[42,1,1,7,8,[[1006,1,1,7,8]]]],[23404,23417,23509,23524,23591,24489,25365,26485]]],["leave",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30874]]],["out",[43,38,[[39,16,14,0,14,[[935,4,3,0,3],[936,2,2,3,5],[937,2,2,5,7],[938,1,1,7,8],[940,5,4,8,12],[943,1,1,12,13],[949,1,1,13,14]]],[40,9,9,14,23,[[957,2,2,14,16],[959,3,3,16,19],[962,1,1,19,20],[965,1,1,20,21],[967,1,1,21,22],[972,1,1,22,23]]],[41,15,12,23,35,[[978,4,2,23,25],[981,1,1,25,26],[982,1,1,26,27],[983,6,5,27,32],[985,1,1,32,33],[991,1,1,33,34],[992,1,1,34,35]]],[43,1,1,35,36,[[1044,1,1,35,36]]],[47,1,1,36,37,[[1094,1,1,36,37]]],[58,1,1,37,38,[[1147,1,1,37,38]]]],[23320,23321,23338,23357,23361,23412,23413,23425,23513,23515,23516,23517,23650,23838,24249,24254,24303,24310,24311,24420,24576,24655,24890,25168,25188,25350,25398,25419,25420,25423,25424,25425,25550,25776,25791,27893,29161,30318]]],["put",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[25299,27256]]],["thrust",[2,2,[[41,2,2,0,2,[[976,1,1,0,1],[985,1,1,1,2]]]],[25092,25546]]]]},{"k":"G1545","v":[["*",[2,2,[[45,1,1,0,1,[[1071,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[28580,30248]]],["end",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30248]]],["escape",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28580]]]]},{"k":"G1546","v":[["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27873]]]]},{"k":"G1547","v":[["*",[5,4,[[39,2,2,0,2,[[950,1,1,0,1],[952,1,1,1,2]]],[41,1,1,2,3,[[989,1,1,2,3]]],[45,2,1,3,4,[[1068,2,1,3,4]]]],[23902,23995,25678,28525]]],["+",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28525]]],["marriage",[4,4,[[39,2,2,0,2,[[950,1,1,0,1],[952,1,1,1,2]]],[41,1,1,2,3,[[989,1,1,2,3]]],[45,1,1,3,4,[[1068,1,1,3,4]]]],[23902,23995,25678,28525]]]]},{"k":"G1548","v":[["marriage",[2,2,[[41,2,2,0,2,[[992,2,2,0,2]]]],[25813,25814]]]]},{"k":"G1549","v":[["nephews",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29767]]]]},{"k":"G1550","v":[["spent",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29037]]]]},{"k":"G1551","v":[["*",[8,8,[[42,1,1,0,1,[[1001,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[45,2,2,2,4,[[1072,1,1,2,3],[1077,1,1,3,4]]],[57,2,2,4,6,[[1142,1,1,4,5],[1143,1,1,5,6]]],[58,1,1,6,7,[[1150,1,1,6,7]]],[59,1,1,7,8,[[1153,1,1,7,8]]]],[26213,27539,28633,28787,30146,30182,30361,30444]]],["expecting",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30146]]],["for",[5,5,[[42,1,1,0,1,[[1001,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]],[58,1,1,4,5,[[1150,1,1,4,5]]]],[26213,27539,28787,30182,30361]]],["tarry",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28633]]],["waited",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30444]]]]},{"k":"G1552","v":[["manifest",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29862]]]]},{"k":"G1553","v":[["absent",[3,3,[[46,3,3,0,3,[[1082,3,3,0,3]]]],[28883,28885,28886]]]]},{"k":"G1554","v":[["*",[4,4,[[39,2,2,0,2,[[949,2,2,0,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]]],[23859,23867,24674,25788]]],["+",[3,3,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]]],[23859,24674,25788]]],["out",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23867]]]]},{"k":"G1555","v":[["*",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1032,1,1,1,2]]]],[27403,27445]]],["declare",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27403]]],["declaring",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27445]]]]},{"k":"G1556","v":[["*",[6,6,[[41,2,2,0,2,[[990,2,2,0,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[46,1,1,3,4,[[1087,1,1,3,4]]],[65,2,2,4,6,[[1172,1,1,4,5],[1185,1,1,5,6]]]],[25691,25693,28264,28977,30803,31019]]],["Avenge",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25691]]],["avenge",[3,3,[[41,1,1,0,1,[[990,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]],[65,1,1,2,3,[[1172,1,1,2,3]]]],[25693,28264,30803]]],["avenged",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31019]]],["revenge",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28977]]]]},{"k":"G1557","v":[["*",[9,9,[[41,3,3,0,3,[[990,2,2,0,2],[993,1,1,2,3]]],[43,1,1,3,4,[[1024,1,1,3,4]]],[44,1,1,4,5,[[1057,1,1,4,5]]],[46,1,1,5,6,[[1084,1,1,5,6]]],[52,1,1,6,7,[[1116,1,1,6,7]]],[57,1,1,7,8,[[1142,1,1,7,8]]],[59,1,1,8,9,[[1152,1,1,8,9]]]],[25695,25696,25848,27140,28264,28927,29657,30163,30413]]],["+",[3,3,[[41,2,2,0,2,[[990,2,2,0,2]]],[43,1,1,2,3,[[1024,1,1,2,3]]]],[25695,25696,27140]]],["Vengeance",[2,2,[[44,1,1,0,1,[[1057,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[28264,30163]]],["punishment",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30413]]],["revenge",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28927]]],["vengeance",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[52,1,1,1,2,[[1116,1,1,1,2]]]],[25848,29657]]]]},{"k":"G1558","v":[["*",[2,2,[[44,1,1,0,1,[[1058,1,1,0,1]]],[51,1,1,1,2,[[1114,1,1,1,2]]]],[28270,29609]]],["avenger",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29609]]],["revenger",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28270]]]]},{"k":"G1559","v":[["*",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]]],[25454,29585]]],["persecute",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25454]]],["persecuted",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29585]]]]},{"k":"G1560","v":[["delivered",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26972]]]]},{"k":"G1561","v":[["for",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30160]]]]},{"k":"G1562","v":[["*",[6,5,[[39,3,2,0,2,[[955,3,2,0,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[41,1,1,3,4,[[982,1,1,3,4]]],[46,1,1,4,5,[[1082,1,1,4,5]]]],[24157,24160,24846,25393,28881]]],["from",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24160]]],["off",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24846]]],["stripped",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[24157,25393]]],["took",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24160]]],["unclothed",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28881]]]]},{"k":"G1563","v":[["*",[98,98,[[39,28,28,0,28,[[930,3,3,0,3],[933,1,1,3,4],[934,1,1,4,5],[936,1,1,5,6],[940,1,1,6,7],[941,3,3,7,10],[942,1,1,10,11],[943,1,1,11,12],[945,1,1,12,13],[946,1,1,13,14],[947,1,1,14,15],[949,1,1,15,16],[950,2,2,16,18],[952,2,2,18,20],[953,1,1,20,21],[954,2,2,21,23],[955,4,4,23,27],[956,1,1,27,28]]],[40,12,12,28,40,[[957,1,1,28,29],[958,1,1,29,30],[959,1,1,30,31],[961,1,1,31,32],[962,4,4,32,36],[967,1,1,36,37],[969,1,1,37,38],[970,1,1,38,39],[972,1,1,39,40]]],[41,16,16,40,56,[[974,1,1,40,41],[978,1,1,41,42],[980,1,1,42,43],[981,1,1,43,44],[982,1,1,44,45],[983,1,1,45,46],[984,2,2,46,48],[985,1,1,48,49],[987,1,1,49,50],[989,3,3,50,53],[993,1,1,53,54],[994,1,1,54,55],[995,1,1,55,56]]],[42,22,22,56,78,[[998,3,3,56,59],[999,2,2,59,61],[1000,2,2,61,63],[1001,1,1,63,64],[1002,3,3,64,67],[1006,2,2,67,69],[1007,3,3,69,72],[1008,3,3,72,75],[1014,2,2,75,77],[1015,1,1,77,78]]],[43,7,7,78,85,[[1026,1,1,78,79],[1031,1,1,79,80],[1033,1,1,80,81],[1034,1,1,81,82],[1036,1,1,82,83],[1042,2,2,83,85]]],[44,2,2,85,87,[[1054,1,1,85,86],[1060,1,1,86,87]]],[46,1,1,87,88,[[1080,1,1,87,88]]],[55,1,1,88,89,[[1131,1,1,88,89]]],[57,1,1,89,90,[[1139,1,1,89,90]]],[58,3,3,90,93,[[1147,1,1,90,91],[1148,1,1,91,92],[1149,1,1,92,93]]],[65,5,5,93,98,[[1168,1,1,93,94],[1178,2,2,94,96],[1187,1,1,96,97],[1188,1,1,97,98]]]],[23182,23184,23191,23258,23303,23357,23534,23581,23589,23597,23620,23662,23720,23747,23764,23843,23883,23885,23985,24008,24038,24090,24125,24165,24176,24184,24190,24202,24228,24266,24289,24375,24412,24417,24440,24462,24645,24738,24769,24880,24979,25152,25277,25305,25369,25431,25477,25493,25546,25601,25672,25674,25688,25828,25876,25968,26096,26101,26107,26142,26143,26162,26196,26215,26260,26279,26281,26521,26523,26531,26538,26554,26582,26589,26606,26787,26788,26867,27249,27442,27484,27537,27606,27805,27810,28181,28327,28858,29935,30072,30296,30335,30350,30731,30897,30905,31078,31085]]],["+",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24462]]],["There",[3,3,[[41,1,1,0,1,[[985,1,1,0,1]]],[42,2,2,1,3,[[1008,1,1,1,2],[1015,1,1,2,3]]]],[25546,26582,26867]]],["for",[1,1,[[65,1,1,0,1,[[1178,1,1,0,1]]]],[30905]]],["place",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23720]]],["there",[83,83,[[39,25,25,0,25,[[930,2,2,0,2],[933,1,1,2,3],[934,1,1,3,4],[936,1,1,4,5],[940,1,1,5,6],[941,3,3,6,9],[942,1,1,9,10],[943,1,1,10,11],[946,1,1,11,12],[947,1,1,12,13],[949,1,1,13,14],[950,2,2,14,16],[952,2,2,16,18],[953,1,1,18,19],[954,1,1,19,20],[955,4,4,20,24],[956,1,1,24,25]]],[40,10,10,25,35,[[957,1,1,25,26],[958,1,1,26,27],[959,1,1,27,28],[961,1,1,28,29],[962,2,2,29,31],[967,1,1,31,32],[969,1,1,32,33],[970,1,1,33,34],[972,1,1,34,35]]],[41,13,13,35,48,[[974,1,1,35,36],[978,1,1,36,37],[980,1,1,37,38],[981,1,1,38,39],[982,1,1,39,40],[983,1,1,40,41],[984,2,2,41,43],[987,1,1,43,44],[989,2,2,44,46],[994,1,1,46,47],[995,1,1,47,48]]],[42,17,17,48,65,[[998,3,3,48,51],[999,2,2,51,53],[1000,2,2,53,55],[1001,1,1,55,56],[1002,3,3,56,59],[1006,2,2,59,61],[1007,2,2,61,63],[1008,2,2,63,65]]],[43,7,7,65,72,[[1026,1,1,65,66],[1031,1,1,66,67],[1033,1,1,67,68],[1034,1,1,68,69],[1036,1,1,69,70],[1042,2,2,70,72]]],[44,1,1,72,73,[[1054,1,1,72,73]]],[46,1,1,73,74,[[1080,1,1,73,74]]],[55,1,1,74,75,[[1131,1,1,74,75]]],[57,1,1,75,76,[[1139,1,1,75,76]]],[58,3,3,76,79,[[1147,1,1,76,77],[1148,1,1,77,78],[1149,1,1,78,79]]],[65,4,4,79,83,[[1168,1,1,79,80],[1178,1,1,80,81],[1187,1,1,81,82],[1188,1,1,82,83]]]],[23182,23184,23258,23303,23357,23534,23581,23589,23597,23620,23662,23747,23764,23843,23883,23885,23985,24008,24038,24125,24165,24176,24184,24190,24202,24228,24266,24289,24375,24412,24417,24645,24738,24769,24880,24979,25152,25277,25305,25369,25431,25477,25493,25601,25672,25674,25876,25968,26096,26101,26107,26142,26143,26162,26196,26215,26260,26279,26281,26521,26523,26538,26554,26589,26606,27249,27442,27484,27537,27606,27805,27810,28181,28858,29935,30072,30296,30335,30350,30731,30897,31078,31085]]],["thither",[7,7,[[39,1,1,0,1,[[930,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,2,2,2,4,[[989,1,1,2,3],[993,1,1,3,4]]],[42,3,3,4,7,[[1007,1,1,4,5],[1014,2,2,5,7]]]],[23191,24440,25688,25828,26531,26787,26788]]],["thitherward",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28327]]],["yonder",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24090]]]]},{"k":"G1564","v":[["*",[27,27,[[39,12,12,0,12,[[932,1,1,0,1],[933,1,1,1,2],[937,2,2,2,4],[939,1,1,4,5],[940,2,2,5,7],[941,1,1,7,8],[942,1,1,8,9],[943,2,2,9,11],[947,1,1,11,12]]],[40,6,6,12,18,[[957,1,1,12,13],[962,3,3,13,16],[963,1,1,16,17],[965,1,1,17,18]]],[41,3,3,18,21,[[981,1,1,18,19],[984,1,1,19,20],[988,1,1,20,21]]],[42,2,2,21,23,[[1000,1,1,21,22],[1007,1,1,22,23]]],[43,4,4,23,27,[[1030,1,1,23,24],[1033,1,1,24,25],[1035,1,1,25,26],[1037,1,1,26,27]]]],[23230,23260,23388,23406,23460,23498,23504,23592,23610,23654,23662,23777,24234,24408,24417,24418,24487,24568,25305,25518,25646,26199,26577,27366,27495,27564,27639]]],["place",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24417]]],["thence",[25,25,[[39,12,12,0,12,[[932,1,1,0,1],[933,1,1,1,2],[937,2,2,2,4],[939,1,1,4,5],[940,2,2,5,7],[941,1,1,7,8],[942,1,1,8,9],[943,2,2,9,11],[947,1,1,11,12]]],[40,5,5,12,17,[[957,1,1,12,13],[962,2,2,13,15],[963,1,1,15,16],[965,1,1,16,17]]],[41,3,3,17,20,[[981,1,1,17,18],[984,1,1,18,19],[988,1,1,19,20]]],[42,2,2,20,22,[[1000,1,1,20,21],[1007,1,1,21,22]]],[43,3,3,22,25,[[1030,1,1,22,23],[1033,1,1,23,24],[1035,1,1,24,25]]]],[23230,23260,23388,23406,23460,23498,23504,23592,23610,23654,23662,23777,24234,24408,24418,24487,24568,25305,25518,25646,26199,26577,27366,27495,27564]]],["there",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27639]]]]},{"k":"G1565","v":[["*",[251,244,[[39,53,50,0,50,[[931,1,1,0,1],[935,3,3,1,4],[936,2,2,4,6],[937,3,3,6,9],[938,3,3,9,12],[939,1,1,12,13],[940,2,2,13,15],[941,3,3,15,18],[942,3,2,18,20],[943,2,2,20,22],[945,2,2,22,24],[946,5,5,24,29],[949,1,1,29,30],[950,4,4,30,34],[952,9,8,34,42],[953,2,2,42,44],[954,4,3,44,47],[955,3,3,47,50]]],[40,24,22,50,72,[[957,1,1,50,51],[958,1,1,51,52],[959,2,2,52,54],[960,2,2,54,56],[962,2,2,56,58],[963,2,2,58,60],[964,1,1,60,61],[968,1,1,61,62],[969,6,5,62,67],[970,3,2,67,69],[972,3,3,69,72]]],[41,37,36,72,108,[[974,1,1,72,73],[976,1,1,73,74],[977,1,1,74,75],[978,3,3,75,78],[980,1,1,78,79],[981,3,3,79,82],[982,3,2,82,84],[983,1,1,84,85],[984,6,6,85,91],[985,1,1,91,92],[986,2,2,92,94],[987,2,2,94,96],[989,2,2,96,98],[990,2,2,98,100],[991,2,2,100,102],[992,3,3,102,105],[993,2,2,105,107],[994,1,1,107,108]]],[42,70,70,108,178,[[997,4,4,108,112],[998,1,1,112,113],[999,2,2,113,115],[1000,3,3,115,118],[1001,9,9,118,127],[1002,2,2,127,129],[1003,2,2,129,131],[1004,3,3,131,134],[1005,7,7,134,141],[1006,3,3,141,144],[1007,5,5,144,149],[1008,1,1,149,150],[1009,5,5,150,155],[1010,3,3,155,158],[1011,1,1,158,159],[1012,5,5,159,164],[1014,4,4,164,168],[1015,3,3,168,171],[1016,4,4,171,175],[1017,3,3,175,178]]],[43,23,23,178,201,[[1018,1,1,178,179],[1019,2,2,179,181],[1020,2,2,181,183],[1024,1,1,183,184],[1025,2,2,184,186],[1026,1,1,186,187],[1027,2,2,187,189],[1029,2,2,189,191],[1031,1,1,191,192],[1033,3,3,192,195],[1036,2,2,195,197],[1037,1,1,197,198],[1038,1,1,198,199],[1039,1,1,199,200],[1045,1,1,200,201]]],[44,4,4,201,205,[[1051,1,1,201,202],[1056,1,1,202,203],[1059,2,2,203,205]]],[45,4,4,205,209,[[1070,1,1,205,206],[1071,2,2,206,208],[1076,1,1,208,209]]],[46,5,4,209,213,[[1084,1,1,209,210],[1085,3,2,210,212],[1087,1,1,212,213]]],[48,1,1,213,214,[[1098,1,1,213,214]]],[52,1,1,214,215,[[1116,1,1,214,215]]],[54,6,6,215,221,[[1125,2,2,215,217],[1126,2,2,217,219],[1127,1,1,219,220],[1128,1,1,220,221]]],[55,1,1,221,222,[[1131,1,1,221,222]]],[57,9,9,222,231,[[1135,1,1,222,223],[1136,2,2,223,225],[1138,1,1,225,226],[1140,2,2,226,228],[1142,1,1,228,229],[1143,1,1,229,230],[1144,1,1,230,231]]],[58,2,2,231,233,[[1146,1,1,231,232],[1149,1,1,232,233]]],[60,1,1,233,234,[[1156,1,1,233,234]]],[61,7,7,234,241,[[1160,1,1,234,235],[1161,4,4,235,239],[1162,1,1,239,240],[1163,1,1,240,241]]],[65,3,3,241,244,[[1175,1,1,241,242],[1177,1,1,242,243],[1182,1,1,243,244]]]],[23193,23338,23341,23343,23358,23373,23401,23405,23410,23431,23432,23436,23484,23490,23534,23540,23550,23583,23598,23632,23655,23661,23718,23727,23728,23734,23754,23755,23759,23866,23879,23882,23895,23918,23976,23979,23986,23993,24000,24003,24005,24007,24015,24027,24078,24083,24109,24137,24148,24192,24224,24280,24312,24313,24334,24358,24418,24462,24478,24483,24501,24680,24728,24734,24736,24741,24749,24775,24779,24883,24886,24893,24974,25065,25142,25169,25194,25195,25277,25306,25335,25337,25375,25394,25431,25496,25497,25502,25504,25505,25506,25522,25574,25577,25602,25603,25660,25682,25691,25702,25735,25758,25780,25797,25814,25849,25860,25886,26052,26062,26077,26083,26116,26148,26150,26181,26195,26209,26219,26221,26229,26245,26248,26249,26253,26256,26257,26279,26286,26339,26373,26391,26423,26425,26449,26451,26452,26465,26468,26476,26477,26482,26487,26516,26536,26552,26572,26574,26576,26628,26636,26655,26656,26657,26660,26688,26689,26694,26725,26734,26739,26740,26749,26752,26798,26800,26802,26810,26846,26852,26856,26880,26882,26883,26886,26901,26905,26921,26942,26967,26990,27009,27019,27157,27177,27184,27253,27268,27269,27338,27343,27435,27486,27516,27518,27601,27608,27628,27670,27715,27906,28089,28232,28294,28295,28565,28578,28595,28729,28924,28941,28946,28989,29241,29659,29821,29827,29840,29853,29862,29878,29930,30005,30016,30025,30051,30099,30102,30149,30187,30237,30273,30352,30495,30556,30582,30584,30586,30595,30620,30640,30846,30885,30968]]],["+",[4,4,[[43,3,3,0,3,[[1033,1,1,0,1],[1036,1,1,1,2],[1045,1,1,2,3]]],[45,1,1,3,4,[[1071,1,1,3,4]]]],[27518,27608,27906,28595]]],["He",[13,13,[[42,13,13,0,13,[[997,1,1,0,1],[999,1,1,1,2],[1001,1,1,2,3],[1004,1,1,3,4],[1005,3,3,4,7],[1009,3,3,7,10],[1012,1,1,10,11],[1014,2,2,11,13]]]],[26052,26150,26245,26425,26451,26465,26476,26655,26656,26660,26740,26802,26810]]],["Peter",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26636]]],["She",[2,2,[[42,2,2,0,2,[[1016,2,2,0,2]]]],[26882,26883]]],["he",[27,27,[[42,18,18,0,18,[[997,1,1,0,1],[998,1,1,1,2],[1000,1,1,2,3],[1001,3,3,3,6],[1002,1,1,6,7],[1003,1,1,7,8],[1004,1,1,8,9],[1005,3,3,9,12],[1010,2,2,12,14],[1011,1,1,14,15],[1012,2,2,15,17],[1015,1,1,17,18]]],[43,1,1,18,19,[[1020,1,1,18,19]]],[46,1,1,19,20,[[1087,1,1,19,20]]],[54,1,1,20,21,[[1126,1,1,20,21]]],[61,6,6,21,27,[[1160,1,1,21,22],[1161,4,4,22,26],[1162,1,1,26,27]]]],[26062,26116,26181,26229,26248,26256,26286,26339,26423,26449,26452,26477,26689,26694,26725,26734,26739,26846,27009,28989,29840,30556,30582,30584,30586,30595,30620]]],["him",[5,5,[[42,3,3,0,3,[[999,1,1,0,1],[1001,1,1,1,2],[1009,1,1,2,3]]],[44,2,2,3,5,[[1059,2,2,3,5]]]],[26148,26253,26657,28294,28295]]],["his",[6,6,[[42,2,2,0,2,[[1001,1,1,0,1],[1005,1,1,1,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]],[54,1,1,3,4,[[1126,1,1,3,4]]],[55,1,1,4,5,[[1131,1,1,4,5]]],[60,1,1,5,6,[[1156,1,1,5,6]]]],[26257,26468,28941,29853,29930,30495]]],["it",[1,1,[[61,1,1,0,1,[[1163,1,1,0,1]]]],[30640]]],["other",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25702]]],["same",[22,22,[[39,7,7,0,7,[[938,1,1,0,1],[941,1,1,1,2],[943,1,1,2,3],[946,2,2,3,5],[950,1,1,5,6],[954,1,1,6,7]]],[40,1,1,7,8,[[960,1,1,7,8]]],[42,9,9,8,17,[[997,1,1,8,9],[1000,1,1,9,10],[1001,2,2,10,12],[1006,1,1,12,13],[1007,1,1,13,14],[1008,1,1,14,15],[1014,1,1,15,16],[1016,1,1,16,17]]],[43,3,3,17,20,[[1019,1,1,17,18],[1029,1,1,18,19],[1033,1,1,19,20]]],[46,1,1,20,21,[[1084,1,1,20,21]]],[65,1,1,21,22,[[1177,1,1,21,22]]]],[23436,23540,23655,23728,23755,23895,24109,24358,26077,26209,26219,26221,26482,26572,26628,26798,26886,26990,27343,27516,28924,30885]]],["selfsame",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23358]]],["she",[2,2,[[40,1,1,0,1,[[972,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]]],[24883,26552]]],["that",[99,95,[[39,31,29,0,29,[[935,3,3,0,3],[936,1,1,3,4],[937,3,3,4,7],[938,2,2,7,9],[939,1,1,9,10],[940,2,2,10,12],[941,1,1,12,13],[942,3,2,13,15],[945,1,1,15,16],[946,3,3,16,19],[950,1,1,19,20],[952,4,4,20,24],[954,3,2,24,26],[955,3,3,26,29]]],[40,11,10,29,39,[[959,2,2,29,31],[962,2,2,31,33],[963,1,1,33,34],[969,3,3,34,37],[970,3,2,37,39]]],[41,23,22,39,61,[[978,3,3,39,42],[981,1,1,42,43],[982,3,2,43,45],[983,1,1,45,46],[984,4,4,46,50],[986,1,1,50,51],[987,2,2,51,53],[989,2,2,53,55],[990,1,1,55,56],[991,1,1,56,57],[992,2,2,57,59],[993,1,1,59,60],[994,1,1,60,61]]],[42,14,14,61,75,[[997,1,1,61,62],[1000,1,1,62,63],[1002,1,1,63,64],[1007,2,2,64,66],[1010,1,1,66,67],[1012,2,2,67,69],[1014,1,1,69,70],[1015,2,2,70,72],[1017,3,3,72,75]]],[43,8,8,75,83,[[1018,1,1,75,76],[1020,1,1,76,77],[1025,2,2,77,79],[1029,1,1,79,80],[1031,1,1,80,81],[1036,1,1,81,82],[1039,1,1,82,83]]],[48,1,1,83,84,[[1098,1,1,83,84]]],[52,1,1,84,85,[[1116,1,1,84,85]]],[54,3,3,85,88,[[1125,2,2,85,87],[1128,1,1,87,88]]],[57,4,4,88,92,[[1135,1,1,88,89],[1136,1,1,89,90],[1140,1,1,90,91],[1143,1,1,91,92]]],[58,2,2,92,94,[[1146,1,1,92,93],[1149,1,1,93,94]]],[65,1,1,94,95,[[1182,1,1,94,95]]]],[23338,23341,23343,23373,23401,23405,23410,23431,23432,23484,23490,23534,23583,23598,23632,23727,23734,23754,23759,23918,23993,24003,24005,24007,24078,24083,24137,24148,24192,24312,24313,24418,24462,24483,24728,24741,24749,24775,24779,25169,25194,25195,25306,25375,25394,25431,25502,25504,25505,25506,25574,25602,25603,25660,25682,25691,25735,25797,25814,25860,25886,26083,26195,26279,26574,26576,26688,26749,26752,26800,26852,26856,26901,26905,26921,26942,27019,27177,27184,27338,27435,27601,27715,29241,29659,29821,29827,29878,30005,30025,30099,30187,30273,30352,30968]]],["their",[2,1,[[46,2,1,0,1,[[1085,2,1,0,1]]]],[28946]]],["theirs",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29862]]],["them",[8,8,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,2,2,1,3,[[960,1,1,1,2],[972,1,1,2,3]]],[41,1,1,3,4,[[980,1,1,3,4]]],[42,1,1,4,5,[[1006,1,1,4,5]]],[45,1,1,5,6,[[1071,1,1,5,6]]],[57,2,2,6,8,[[1136,1,1,6,7],[1138,1,1,7,8]]]],[23550,24334,24886,25277,26516,28578,30016,30051]]],["they",[14,14,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[42,5,5,2,7,[[1001,1,1,2,3],[1003,1,1,3,4],[1006,1,1,4,5],[1007,1,1,5,6],[1016,1,1,6,7]]],[43,3,3,7,10,[[1027,2,2,7,9],[1038,1,1,9,10]]],[44,1,1,10,11,[[1056,1,1,10,11]]],[45,2,2,11,13,[[1070,1,1,11,12],[1076,1,1,12,13]]],[57,1,1,13,14,[[1144,1,1,13,14]]]],[24893,25335,26249,26373,26487,26536,26880,27268,27269,27670,28232,28565,28729,30237]]],["things",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28089]]],["this",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[24000]]],["those",[38,37,[[39,10,9,0,9,[[931,1,1,0,1],[949,1,1,1,2],[950,2,2,2,4],[952,4,3,4,7],[953,2,2,7,9]]],[40,8,8,9,17,[[957,1,1,9,10],[958,1,1,10,11],[963,1,1,11,12],[964,1,1,12,13],[968,1,1,13,14],[969,3,3,14,17]]],[41,11,11,17,28,[[974,1,1,17,18],[976,1,1,18,19],[977,1,1,19,20],[981,1,1,20,21],[984,2,2,21,23],[985,1,1,23,24],[986,1,1,24,25],[991,1,1,25,26],[992,1,1,26,27],[993,1,1,27,28]]],[42,1,1,28,29,[[1004,1,1,28,29]]],[43,5,5,29,34,[[1019,1,1,29,30],[1024,1,1,30,31],[1026,1,1,31,32],[1033,1,1,32,33],[1037,1,1,33,34]]],[57,2,2,34,36,[[1140,1,1,34,35],[1142,1,1,35,36]]],[65,1,1,36,37,[[1175,1,1,36,37]]]],[23193,23866,23879,23882,23976,23979,23986,24015,24027,24224,24280,24478,24501,24680,24734,24736,24741,24974,25065,25142,25337,25496,25497,25522,25577,25758,25780,25849,26391,26967,27157,27253,27486,27628,30102,30149,30846]]],["very",[2,2,[[39,2,2,0,2,[[943,1,1,0,1],[945,1,1,1,2]]]],[23661,23718]]]]},{"k":"G1566","v":[["there",[2,2,[[43,2,2,0,2,[[1038,1,1,0,1],[1039,1,1,1,2]]]],[27667,27709]]]]},{"k":"G1567","v":[["*",[7,7,[[41,2,2,0,2,[[983,2,2,0,2]]],[43,1,1,2,3,[[1032,1,1,2,3]]],[44,1,1,3,4,[[1048,1,1,3,4]]],[57,2,2,4,6,[[1143,1,1,4,5],[1144,1,1,5,6]]],[59,1,1,6,7,[[1151,1,1,6,7]]]],[25455,25456,27459,28002,30178,30229,30384]]],["+",[2,2,[[43,1,1,0,1,[[1032,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[27459,30229]]],["after",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28002]]],["enquired",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30384]]],["required",[2,2,[[41,2,2,0,2,[[983,2,2,0,2]]]],[25455,25456]]],["seek",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30178]]]]},{"k":"G1568","v":[["*",[4,4,[[40,4,4,0,4,[[965,1,1,0,1],[970,1,1,1,2],[972,2,2,2,4]]]],[24553,24787,24878,24879]]],["affrighted",[2,2,[[40,2,2,0,2,[[972,2,2,0,2]]]],[24878,24879]]],["amazed",[2,2,[[40,2,2,0,2,[[965,1,1,0,1],[970,1,1,1,2]]]],[24553,24787]]]]},{"k":"G1569","v":[["wondering",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27007]]]]},{"k":"G1570","v":[["+",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27135]]]]},{"k":"G1571","v":[["*",[2,2,[[45,1,1,0,1,[[1066,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[28461,29848]]],["out",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28461]]],["purge",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29848]]]]},{"k":"G1572","v":[["burned",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27957]]]]},{"k":"G1573","v":[["*",[6,6,[[41,1,1,0,1,[[990,1,1,0,1]]],[46,2,2,1,3,[[1081,2,2,1,3]]],[47,1,1,3,4,[[1096,1,1,3,4]]],[48,1,1,4,5,[[1099,1,1,4,5]]],[52,1,1,5,6,[[1118,1,1,5,6]]]],[25689,28860,28875,29197,29264,29691]]],["+",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29691]]],["faint",[4,4,[[41,1,1,0,1,[[990,1,1,0,1]]],[46,2,2,1,3,[[1081,2,2,1,3]]],[48,1,1,3,4,[[1099,1,1,3,4]]]],[25689,28860,28875,29264]]],["weary",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29197]]]]},{"k":"G1574","v":[["pierced",[2,2,[[42,1,1,0,1,[[1015,1,1,0,1]]],[65,1,1,1,2,[[1167,1,1,1,2]]]],[26862,30704]]]]},{"k":"G1575","v":[["off",[3,3,[[44,3,3,0,3,[[1056,3,3,0,3]]]],[28226,28228,28229]]]]},{"k":"G1576","v":[["*",[2,2,[[44,1,1,0,1,[[1048,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]]],[28018,29148]]],["exclude",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29148]]],["excluded",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28018]]]]},{"k":"G1577","v":[["*",[115,112,[[39,3,2,0,2,[[944,1,1,0,1],[946,2,1,1,2]]],[43,24,24,2,26,[[1019,1,1,2,3],[1022,1,1,3,4],[1024,1,1,4,5],[1025,2,2,5,7],[1026,1,1,7,8],[1028,2,2,8,10],[1029,2,2,10,12],[1030,1,1,12,13],[1031,2,2,13,15],[1032,4,4,15,19],[1033,1,1,19,20],[1035,1,1,20,21],[1036,3,3,21,24],[1037,2,2,24,26]]],[44,5,5,26,31,[[1061,5,5,26,31]]],[45,22,21,31,52,[[1062,1,1,31,32],[1065,1,1,32,33],[1067,1,1,33,34],[1068,1,1,34,35],[1071,1,1,35,36],[1072,3,3,36,39],[1073,1,1,39,40],[1075,9,9,40,49],[1076,1,1,49,50],[1077,3,2,50,52]]],[46,9,9,52,61,[[1078,1,1,52,53],[1085,5,5,53,58],[1088,2,2,58,60],[1089,1,1,60,61]]],[47,3,3,61,64,[[1091,3,3,61,64]]],[48,9,9,64,73,[[1097,1,1,64,65],[1099,2,2,65,67],[1101,6,6,67,73]]],[49,2,2,73,75,[[1105,1,1,73,74],[1106,1,1,74,75]]],[50,4,4,75,79,[[1107,2,2,75,77],[1110,2,2,77,79]]],[51,2,2,79,81,[[1111,1,1,79,80],[1112,1,1,80,81]]],[52,2,2,81,83,[[1116,2,2,81,83]]],[53,3,3,83,86,[[1121,2,2,83,85],[1123,1,1,85,86]]],[56,1,1,86,87,[[1132,1,1,86,87]]],[57,2,2,87,89,[[1134,1,1,87,88],[1144,1,1,88,89]]],[58,1,1,89,90,[[1150,1,1,89,90]]],[63,3,3,90,93,[[1165,3,3,90,93]]],[65,20,19,93,112,[[1167,4,3,93,96],[1168,9,9,96,105],[1169,6,6,105,111],[1188,1,1,111,112]]]],[23690,23744,26996,27070,27154,27177,27179,27247,27329,27333,27338,27342,27363,27437,27441,27445,27446,27464,27483,27488,27579,27617,27624,27626,27643,27654,28337,28340,28341,28352,28359,28365,28450,28471,28504,28599,28616,28618,28622,28662,28682,28683,28690,28697,28701,28706,28711,28712,28713,28727,28777,28795,28801,28933,28950,28951,28955,28956,28997,29017,29035,29059,29070,29079,29228,29261,29272,29327,29328,29329,29331,29333,29336,29427,29457,29483,29489,29557,29558,29561,29584,29650,29653,29736,29746,29779,29940,29989,30235,30368,30664,30667,30668,30701,30708,30717,30718,30724,30725,30728,30729,30734,30735,30740,30746,30747,30752,30753,30759,30760,30768,31096]]],["+",[2,2,[[43,2,2,0,2,[[1031,2,2,0,2]]]],[27437,27441]]],["assembly",[3,3,[[43,3,3,0,3,[[1036,3,3,0,3]]]],[27617,27624,27626]]],["church",[74,73,[[39,3,2,0,2,[[944,1,1,0,1],[946,2,1,1,2]]],[43,16,16,2,18,[[1019,1,1,2,3],[1022,1,1,3,4],[1024,1,1,4,5],[1025,2,2,5,7],[1028,2,2,7,9],[1029,2,2,9,11],[1030,1,1,11,12],[1032,3,3,12,15],[1035,1,1,15,16],[1037,2,2,16,18]]],[44,3,3,18,21,[[1061,3,3,18,21]]],[45,16,16,21,37,[[1062,1,1,21,22],[1065,1,1,22,23],[1067,1,1,23,24],[1071,1,1,24,25],[1072,2,2,25,27],[1073,1,1,27,28],[1075,7,7,28,35],[1076,1,1,35,36],[1077,1,1,36,37]]],[46,1,1,37,38,[[1078,1,1,37,38]]],[47,1,1,38,39,[[1091,1,1,38,39]]],[48,9,9,39,48,[[1097,1,1,39,40],[1099,2,2,40,42],[1101,6,6,42,48]]],[49,2,2,48,50,[[1105,1,1,48,49],[1106,1,1,49,50]]],[50,4,4,50,54,[[1107,2,2,50,52],[1110,2,2,52,54]]],[51,1,1,54,55,[[1111,1,1,54,55]]],[52,1,1,55,56,[[1116,1,1,55,56]]],[53,3,3,56,59,[[1121,2,2,56,58],[1123,1,1,58,59]]],[56,1,1,59,60,[[1132,1,1,59,60]]],[57,2,2,60,62,[[1134,1,1,60,61],[1144,1,1,61,62]]],[58,1,1,62,63,[[1150,1,1,62,63]]],[63,3,3,63,66,[[1165,3,3,63,66]]],[65,7,7,66,73,[[1168,4,4,66,70],[1169,3,3,70,73]]]],[23690,23744,26996,27070,27154,27177,27179,27329,27333,27338,27342,27363,27445,27446,27464,27579,27643,27654,28337,28341,28359,28365,28450,28471,28599,28618,28622,28662,28682,28683,28690,28697,28701,28706,28713,28727,28795,28801,29070,29228,29261,29272,29327,29328,29329,29331,29333,29336,29427,29457,29483,29489,29557,29558,29561,29650,29736,29746,29779,29940,29989,30235,30368,30664,30667,30668,30718,30725,30729,30735,30747,30753,30760]]],["churches",[36,35,[[43,3,3,0,3,[[1026,1,1,0,1],[1032,1,1,1,2],[1033,1,1,2,3]]],[44,2,2,3,5,[[1061,2,2,3,5]]],[45,6,6,5,11,[[1068,1,1,5,6],[1072,1,1,6,7],[1075,2,2,7,9],[1077,2,2,9,11]]],[46,8,8,11,19,[[1085,5,5,11,16],[1088,2,2,16,18],[1089,1,1,18,19]]],[47,2,2,19,21,[[1091,2,2,19,21]]],[51,1,1,21,22,[[1112,1,1,21,22]]],[52,1,1,22,23,[[1116,1,1,22,23]]],[65,13,12,23,35,[[1167,4,3,23,26],[1168,5,5,26,31],[1169,3,3,31,34],[1188,1,1,34,35]]]],[27247,27483,27488,28340,28352,28504,28616,28711,28712,28777,28795,28933,28950,28951,28955,28956,28997,29017,29035,29059,29079,29584,29653,30701,30708,30717,30724,30728,30734,30740,30746,30752,30759,30768,31096]]]]},{"k":"G1578","v":[["*",[3,3,[[44,2,2,0,2,[[1048,1,1,0,1],[1061,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[28003,28353,30435]]],["+",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28353]]],["eschew",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30435]]],["way",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28003]]]]},{"k":"G1579","v":[["out",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27897]]]]},{"k":"G1580","v":[["out",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25207]]]]},{"k":"G1581","v":[["*",[11,11,[[39,4,4,0,4,[[931,1,1,0,1],[933,1,1,1,2],[935,1,1,2,3],[946,1,1,3,4]]],[41,3,3,4,7,[[975,1,1,4,5],[985,2,2,5,7]]],[44,2,2,7,9,[[1056,2,2,7,9]]],[46,1,1,9,10,[[1088,1,1,9,10]]],[59,1,1,10,11,[[1153,1,1,10,11]]]],[23202,23264,23335,23735,25034,25525,25527,28231,28233,29001,30431]]],["+",[4,4,[[39,2,2,0,2,[[933,1,1,0,1],[946,1,1,1,2]]],[41,2,2,2,4,[[985,2,2,2,4]]]],[23264,23735,25525,25527]]],["cut",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28233]]],["down",[3,3,[[39,2,2,0,2,[[931,1,1,0,1],[935,1,1,1,2]]],[41,1,1,2,3,[[975,1,1,2,3]]]],[23202,23335,25034]]],["hindered",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30431]]],["off",[2,2,[[44,1,1,0,1,[[1056,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[28231,29001]]]]},{"k":"G1582","v":[["attentive",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25779]]]]},{"k":"G1583","v":[["tell",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27756]]]]},{"k":"G1584","v":[["forth",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23582]]]]},{"k":"G1585","v":[["forgotten",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30217]]]]},{"k":"G1586","v":[["*",[21,19,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,3,3,1,4,[[978,1,1,1,2],[982,1,1,2,3],[986,1,1,3,4]]],[42,5,4,4,8,[[1002,1,1,4,5],[1009,1,1,5,6],[1011,3,2,6,8]]],[43,7,7,8,15,[[1018,2,2,8,10],[1023,1,1,10,11],[1030,1,1,11,12],[1032,3,3,12,15]]],[45,3,2,15,17,[[1062,3,2,15,17]]],[48,1,1,17,18,[[1097,1,1,17,18]]],[58,1,1,18,19,[[1147,1,1,18,19]]]],[24737,25159,25405,25560,26327,26648,26715,26718,26925,26947,27106,27379,27449,27464,27467,28390,28391,29210,30298]]],["choice",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27449]]],["chose",[3,3,[[41,1,1,0,1,[[978,1,1,0,1]]],[43,2,2,1,3,[[1023,1,1,1,2],[1030,1,1,2,3]]]],[25159,27106,27379]]],["chosen",[16,14,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[42,5,4,2,6,[[1002,1,1,2,3],[1009,1,1,3,4],[1011,3,2,4,6]]],[43,4,4,6,10,[[1018,2,2,6,8],[1032,2,2,8,10]]],[45,3,2,10,12,[[1062,3,2,10,12]]],[48,1,1,12,13,[[1097,1,1,12,13]]],[58,1,1,13,14,[[1147,1,1,13,14]]]],[24737,25405,26327,26648,26715,26718,26925,26947,27464,27467,28390,28391,29210,30298]]],["out",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25560]]]]},{"k":"G1587","v":[["fail",[3,3,[[41,2,2,0,2,[[988,1,1,0,1],[994,1,1,1,2]]],[57,1,1,2,3,[[1133,1,1,2,3]]]],[25629,25896,29975]]]]},{"k":"G1588","v":[["*",[23,23,[[39,5,5,0,5,[[948,1,1,0,1],[950,1,1,1,2],[952,3,3,2,5]]],[40,3,3,5,8,[[969,3,3,5,8]]],[41,2,2,8,10,[[990,1,1,8,9],[995,1,1,9,10]]],[44,2,2,10,12,[[1053,1,1,10,11],[1061,1,1,11,12]]],[50,1,1,12,13,[[1109,1,1,12,13]]],[53,1,1,13,14,[[1123,1,1,13,14]]],[54,1,1,14,15,[[1126,1,1,14,15]]],[55,1,1,15,16,[[1129,1,1,15,16]]],[59,4,4,16,20,[[1151,1,1,16,17],[1152,3,3,17,20]]],[62,2,2,20,22,[[1164,2,2,20,22]]],[65,1,1,22,23,[[1183,1,1,22,23]]]],[23808,23886,23979,23981,23988,24737,24739,24744,25695,25970,28149,28349,29529,29784,29837,29893,30376,30403,30405,30408,30646,30658,30989]]],["+",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]]],[23979,24737,29837]]],["Elect",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30376]]],["chosen",[7,7,[[39,2,2,0,2,[[948,1,1,0,1],[950,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[44,1,1,3,4,[[1061,1,1,3,4]]],[59,2,2,4,6,[[1152,2,2,4,6]]],[65,1,1,6,7,[[1183,1,1,6,7]]]],[23808,23886,25970,28349,30403,30408,30989]]],["elect",[12,12,[[39,2,2,0,2,[[952,2,2,0,2]]],[40,2,2,2,4,[[969,2,2,2,4]]],[41,1,1,4,5,[[990,1,1,4,5]]],[44,1,1,5,6,[[1053,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[53,1,1,7,8,[[1123,1,1,7,8]]],[55,1,1,8,9,[[1129,1,1,8,9]]],[59,1,1,9,10,[[1152,1,1,9,10]]],[62,2,2,10,12,[[1164,2,2,10,12]]]],[23981,23988,24739,24744,25695,28149,29529,29784,29893,30405,30646,30658]]]]},{"k":"G1589","v":[["*",[7,7,[[43,1,1,0,1,[[1026,1,1,0,1]]],[44,4,4,1,5,[[1054,1,1,1,2],[1056,3,3,2,5]]],[51,1,1,5,6,[[1111,1,1,5,6]]],[60,1,1,6,7,[[1156,1,1,6,7]]]],[27231,28166,28214,28216,28237,29564,30489]]],["chosen",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27231]]],["election",[6,6,[[44,4,4,0,4,[[1054,1,1,0,1],[1056,3,3,1,4]]],[51,1,1,4,5,[[1111,1,1,4,5]]],[60,1,1,5,6,[[1156,1,1,5,6]]]],[28166,28214,28216,28237,29564,30489]]]]},{"k":"G1590","v":[["*",[6,6,[[39,2,2,0,2,[[937,1,1,0,1],[943,1,1,1,2]]],[40,1,1,2,3,[[964,1,1,2,3]]],[47,1,1,3,4,[[1096,1,1,3,4]]],[57,2,2,4,6,[[1144,2,2,4,6]]]],[23415,23665,24503,29197,30215,30217]]],["+",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23415]]],["faint",[5,5,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[47,1,1,2,3,[[1096,1,1,2,3]]],[57,2,2,3,5,[[1144,2,2,3,5]]]],[23665,24503,29197,30215,30217]]]]},{"k":"G1591","v":[["*",[5,5,[[41,2,2,0,2,[[979,2,2,0,2]]],[42,3,3,2,5,[[1007,1,1,2,3],[1008,1,1,3,4],[1009,1,1,4,5]]]],[25233,25239,26525,26583,26635]]],["wipe",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[42,1,1,1,2,[[1009,1,1,1,2]]]],[25233,26635]]],["wiped",[3,3,[[41,1,1,0,1,[[979,1,1,0,1]]],[42,2,2,1,3,[[1007,1,1,1,2],[1008,1,1,2,3]]]],[25239,26525,26583]]]]},{"k":"G1592","v":[["derided",[2,2,[[41,2,2,0,2,[[988,1,1,0,1],[995,1,1,1,2]]]],[25634,25970]]]]},{"k":"G1593","v":[["away",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26223]]]]},{"k":"G1594","v":[["Awake",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28752]]]]},{"k":"G1595","v":[["+",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29952]]]]},{"k":"G1596","v":[["*",[2,2,[[57,1,1,0,1,[[1142,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[30159,30467]]],["wilfully",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30159]]],["willingly",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30467]]]]},{"k":"G1597","v":[["*",[2,2,[[60,2,2,0,2,[[1157,1,1,0,1],[1158,1,1,1,2]]]],[30503,30527]]],["old",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30527]]],["time",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30503]]]]},{"k":"G1598","v":[["*",[4,4,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,2,2,1,3,[[976,1,1,1,2],[982,1,1,2,3]]],[45,1,1,3,4,[[1071,1,1,3,4]]]],[23216,25075,25388,28576]]],["tempt",[3,3,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]],[45,1,1,2,3,[[1071,1,1,2,3]]]],[23216,25075,28576]]],["tempted",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25388]]]]},{"k":"G1599","v":[["*",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1034,1,1,1,2]]]],[27366,27533]]],["+",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27533]]],["forth",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27366]]]]},{"k":"G1600","v":[["forth",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28209]]]]},{"k":"G1601","v":[["*",[13,13,[[40,1,1,0,1,[[969,1,1,0,1]]],[43,5,5,1,6,[[1029,1,1,1,2],[1044,4,4,2,6]]],[44,1,1,6,7,[[1054,1,1,6,7]]],[45,1,1,7,8,[[1074,1,1,7,8]]],[47,1,1,8,9,[[1095,1,1,8,9]]],[58,1,1,9,10,[[1146,1,1,9,10]]],[59,1,1,10,11,[[1151,1,1,10,11]]],[60,1,1,11,12,[[1158,1,1,11,12]]],[65,1,1,12,13,[[1168,1,1,12,13]]]],[24742,27344,27872,27881,27884,27887,28161,28673,29166,30277,30398,30539,30722]]],["away",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30398]]],["cast",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27881]]],["effect",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28161]]],["faileth",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28673]]],["fall",[2,2,[[40,1,1,0,1,[[969,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[24742,27872]]],["fallen",[3,3,[[43,1,1,0,1,[[1044,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[27884,29166,30722]]],["falleth",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30277]]],["from",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30539]]],["off",[2,2,[[43,2,2,0,2,[[1029,1,1,0,1],[1044,1,1,1,2]]]],[27344,27887]]]]},{"k":"G1602","v":[["*",[3,3,[[43,3,3,0,3,[[1032,1,1,0,1],[1035,1,1,1,2],[1037,1,1,2,3]]]],[27481,27575,27632]]],["away",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27632]]],["sailed",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27481]]],["thence",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27575]]]]},{"k":"G1603","v":[["fulfilled",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27395]]]]},{"k":"G1604","v":[["accomplishment",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27690]]]]},{"k":"G1605","v":[["*",[13,13,[[39,4,4,0,4,[[935,1,1,0,1],[941,1,1,1,2],[947,1,1,2,3],[950,1,1,3,4]]],[40,5,5,4,9,[[957,1,1,4,5],[962,1,1,5,6],[963,1,1,6,7],[966,1,1,7,8],[967,1,1,8,9]]],[41,3,3,9,12,[[974,1,1,9,10],[976,1,1,10,11],[981,1,1,11,12]]],[43,1,1,12,13,[[1030,1,1,12,13]]]],[23344,23593,23787,23905,24237,24409,24500,24614,24658,25021,25095,25344,27374]]],["amazed",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[981,1,1,2,3]]]],[23787,25021,25344]]],["astonished",[10,10,[[39,3,3,0,3,[[935,1,1,0,1],[941,1,1,1,2],[950,1,1,2,3]]],[40,5,5,3,8,[[957,1,1,3,4],[962,1,1,4,5],[963,1,1,5,6],[966,1,1,6,7],[967,1,1,7,8]]],[41,1,1,8,9,[[976,1,1,8,9]]],[43,1,1,9,10,[[1030,1,1,9,10]]]],[23344,23593,23905,24237,24409,24500,24614,24658,25095,27374]]]]},{"k":"G1606","v":[["ghost",[3,3,[[40,2,2,0,2,[[971,2,2,0,2]]],[41,1,1,2,3,[[995,1,1,2,3]]]],[24863,24865,25981]]]]},{"k":"G1607","v":[["*",[34,34,[[39,6,6,0,6,[[931,1,1,0,1],[932,1,1,1,2],[943,2,2,2,4],[945,1,1,4,5],[948,1,1,5,6]]],[40,11,11,6,17,[[957,1,1,6,7],[962,1,1,7,8],[963,5,5,8,13],[966,2,2,13,15],[967,1,1,15,16],[969,1,1,16,17]]],[41,3,3,17,20,[[975,1,1,17,18],[976,2,2,18,20]]],[42,2,2,20,22,[[1001,1,1,20,21],[1011,1,1,21,22]]],[43,2,2,22,24,[[1026,1,1,22,23],[1042,1,1,23,24]]],[48,1,1,24,25,[[1100,1,1,24,25]]],[65,9,9,25,34,[[1167,1,1,25,26],[1170,1,1,26,27],[1175,2,2,27,29],[1177,1,1,29,30],[1182,1,1,30,31],[1185,2,2,31,33],[1188,1,1,33,34]]]],[23197,23213,23644,23651,23721,23821,24220,24418,24478,24482,24483,24484,24486,24605,24634,24659,24718,25032,25085,25100,26239,26725,27244,27800,29301,30713,30773,30857,30858,30877,30968,31032,31038,31081]]],["+",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23721]]],["come",[2,2,[[40,2,2,0,2,[[963,2,2,0,2]]]],[24478,24486]]],["cometh",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[23644,24483]]],["depart",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]]],[24418,27800]]],["departed",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23821]]],["forth",[4,4,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[42,1,1,2,3,[[1001,1,1,2,3]]],[65,1,1,3,4,[[1182,1,1,3,4]]]],[24605,25032,26239,30968]]],["goeth",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31032]]],["issued",[2,2,[[65,2,2,0,2,[[1175,2,2,0,2]]]],[30857,30858]]],["out",[5,5,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,2,2,1,3,[[957,1,1,1,2],[963,1,1,2,3]]],[41,1,1,3,4,[[976,1,1,3,4]]],[43,1,1,4,5,[[1026,1,1,4,5]]]],[23197,24220,24482,25100,27244]]],["proceed",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]]],[23651,24484,29301]]],["proceeded",[3,3,[[41,1,1,0,1,[[976,1,1,0,1]]],[65,2,2,1,3,[[1170,1,1,1,2],[1185,1,1,2,3]]]],[25085,30773,31038]]],["proceedeth",[3,3,[[39,1,1,0,1,[[932,1,1,0,1]]],[42,1,1,1,2,[[1011,1,1,1,2]]],[65,1,1,2,3,[[1177,1,1,2,3]]]],[23213,26725,30877]]],["proceeding",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31081]]],["went",[4,4,[[40,3,3,0,3,[[966,1,1,0,1],[967,1,1,1,2],[969,1,1,2,3]]],[65,1,1,3,4,[[1167,1,1,3,4]]]],[24634,24659,24718,30713]]]]},{"k":"G1608","v":[["fornication",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30679]]]]},{"k":"G1609","v":[["rejected",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29145]]]]},{"k":"G1610","v":[["*",[4,4,[[39,2,2,0,2,[[941,1,1,0,1],[943,1,1,1,2]]],[41,1,1,2,3,[[989,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[23568,23646,25657,30684]]],["root",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25657]]],["roots",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30684]]],["up",[2,2,[[39,2,2,0,2,[[941,1,1,0,1],[943,1,1,1,2]]]],[23568,23646]]]]},{"k":"G1611","v":[["*",[7,7,[[40,2,2,0,2,[[961,1,1,0,1],[972,1,1,1,2]]],[41,1,1,2,3,[[977,1,1,2,3]]],[43,4,4,3,7,[[1020,1,1,3,4],[1027,1,1,4,5],[1028,1,1,5,6],[1039,1,1,6,7]]]],[24406,24881,25133,27006,27269,27312,27721]]],["+",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25133]]],["amazed",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24881]]],["amazement",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27006]]],["astonishment",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24406]]],["trance",[3,3,[[43,3,3,0,3,[[1027,1,1,0,1],[1028,1,1,1,2],[1039,1,1,2,3]]]],[27269,27312,27721]]]]},{"k":"G1612","v":[["subverted",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29934]]]]},{"k":"G1613","v":[["trouble",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27503]]]]},{"k":"G1614","v":[["*",[16,14,[[39,6,5,0,5,[[936,1,1,0,1],[940,3,2,1,3],[942,1,1,3,4],[954,1,1,4,5]]],[40,3,2,5,7,[[957,1,1,5,6],[959,2,1,6,7]]],[41,3,3,7,10,[[977,1,1,7,8],[978,1,1,8,9],[994,1,1,9,10]]],[42,1,1,10,11,[[1017,1,1,10,11]]],[43,3,3,11,14,[[1021,1,1,11,12],[1043,1,1,12,13],[1044,1,1,13,14]]]],[23348,23502,23538,23628,24105,24256,24293,25120,25156,25917,26916,27052,27824,27885]]],["cast",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27885]]],["forth",[13,12,[[39,5,4,0,4,[[936,1,1,0,1],[940,3,2,1,3],[942,1,1,3,4]]],[40,2,2,4,6,[[957,1,1,4,5],[959,1,1,5,6]]],[41,3,3,6,9,[[977,1,1,6,7],[978,1,1,7,8],[994,1,1,8,9]]],[42,1,1,9,10,[[1017,1,1,9,10]]],[43,2,2,10,12,[[1021,1,1,10,11],[1043,1,1,11,12]]]],[23348,23502,23538,23628,24256,24293,25120,25156,25917,26916,27052,27824]]],["out",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]]],[24105,24293]]]]},{"k":"G1615","v":[["finish",[2,2,[[41,2,2,0,2,[[986,2,2,0,2]]]],[25582,25583]]]]},{"k":"G1616","v":[["+",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27830]]]]},{"k":"G1617","v":[["earnestly",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25908]]]]},{"k":"G1618","v":[["*",[2,2,[[43,1,1,0,1,[[1029,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[27342,30454]]],["ceasing",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27342]]],["fervent",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30454]]]]},{"k":"G1619","v":[["fervently",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30396]]]]},{"k":"G1620","v":[["*",[4,4,[[43,4,4,0,4,[[1024,1,1,0,1],[1028,1,1,1,2],[1035,1,1,2,3],[1045,1,1,3,4]]]],[27137,27311,27583,27922]]],["expounded",[3,3,[[43,3,3,0,3,[[1028,1,1,0,1],[1035,1,1,1,2],[1045,1,1,2,3]]]],[27311,27583,27922]]],["out",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27137]]]]},{"k":"G1621","v":[["*",[4,4,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[43,2,2,2,4,[[1030,1,1,2,3],[1035,1,1,3,4]]]],[23431,24418,27413,27563]]],["off",[3,3,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[43,1,1,2,3,[[1030,1,1,2,3]]]],[23431,24418,27413]]],["shook",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27563]]]]},{"k":"G1622","v":[["*",[9,9,[[39,1,1,0,1,[[951,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[45,4,4,2,6,[[1067,1,1,2,3],[1075,1,1,3,4],[1076,2,2,4,6]]],[46,2,2,6,8,[[1089,2,2,6,8]]],[53,1,1,8,9,[[1123,1,1,8,9]]]],[23944,27845,28485,28683,28720,28745,29024,29025,29782]]],["+",[3,3,[[45,2,2,0,2,[[1075,1,1,0,1],[1076,1,1,1,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]]],[28683,28720,29782]]],["excepted",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28745]]],["out",[2,2,[[46,2,2,0,2,[[1089,2,2,0,2]]]],[29024,29025]]],["outside",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23944]]],["things",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27845]]],["without",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28485]]]]},{"k":"G1623","v":[["sixth",[14,14,[[39,2,2,0,2,[[948,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[41,3,3,3,6,[[973,2,2,3,5],[995,1,1,5,6]]],[42,2,2,6,8,[[1000,1,1,6,7],[1015,1,1,7,8]]],[43,1,1,8,9,[[1027,1,1,8,9]]],[65,5,5,9,14,[[1172,1,1,9,10],[1175,2,2,10,12],[1182,1,1,12,13],[1187,1,1,13,14]]]],[23797,24174,24859,24919,24929,25979,26162,26839,27268,30805,30853,30854,30966,31073]]]]},{"k":"G1624","v":[["*",[5,5,[[53,3,3,0,3,[[1119,1,1,0,1],[1123,1,1,1,2],[1124,1,1,2,3]]],[54,1,1,3,4,[[1128,1,1,3,4]]],[57,1,1,4,5,[[1144,1,1,4,5]]]],[29702,29778,29808,29874,30225]]],["aside",[2,2,[[53,2,2,0,2,[[1119,1,1,0,1],[1123,1,1,1,2]]]],[29702,29778]]],["avoiding",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29808]]],["turned",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29874]]],["way",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30225]]]]},{"k":"G1625","v":[["*",[2,2,[[48,2,2,0,2,[[1101,1,1,0,1],[1102,1,1,1,2]]]],[29333,29341]]],["+",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29341]]],["nourisheth",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29333]]]]},{"k":"G1626","v":[["time",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28726]]]]},{"k":"G1627","v":[["*",[7,7,[[41,1,1,0,1,[[987,1,1,0,1]]],[43,4,4,1,5,[[1022,4,4,1,5]]],[53,1,1,5,6,[[1124,1,1,5,6]]],[57,1,1,6,7,[[1138,1,1,6,7]]]],[25610,27065,27068,27069,27074,29795,30052]]],["+",[2,2,[[43,1,1,0,1,[[1022,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[27068,29795]]],["beareth",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30052]]],["forth",[3,3,[[41,1,1,0,1,[[987,1,1,0,1]]],[43,2,2,1,3,[[1022,2,2,1,3]]]],[25610,27069,27074]]],["out",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27065]]]]},{"k":"G1628","v":[["*",[7,7,[[41,1,1,0,1,[[993,1,1,0,1]]],[43,2,2,1,3,[[1033,1,1,1,2],[1036,1,1,2,3]]],[44,1,1,3,4,[[1047,1,1,3,4]]],[46,1,1,4,5,[[1088,1,1,4,5]]],[51,1,1,5,6,[[1115,1,1,5,6]]],[57,1,1,6,7,[[1134,1,1,6,7]]]],[25862,27510,27601,27965,29022,29624,29980]]],["escape",[4,4,[[41,1,1,0,1,[[993,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]],[51,1,1,2,3,[[1115,1,1,2,3]]],[57,1,1,3,4,[[1134,1,1,3,4]]]],[25862,27965,29624,29980]]],["escaped",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29022]]],["fled",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1036,1,1,1,2]]]],[27510,27601]]]]},{"k":"G1629","v":[["terrify",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28980]]]]},{"k":"G1630","v":[["*",[2,2,[[40,1,1,0,1,[[965,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[24544,30233]]],["+",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30233]]],["afraid",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24544]]]]},{"k":"G1631","v":[["forth",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23989,24745]]]]},{"k":"G1632","v":[["*",[28,28,[[39,3,3,0,3,[[937,1,1,0,1],[951,1,1,1,2],[954,1,1,2,3]]],[40,2,2,3,5,[[958,1,1,3,4],[970,1,1,4,5]]],[41,3,3,5,8,[[977,1,1,5,6],[983,1,1,6,7],[994,1,1,7,8]]],[42,1,1,8,9,[[998,1,1,8,9]]],[43,6,6,9,15,[[1018,1,1,9,10],[1019,3,3,10,13],[1027,1,1,13,14],[1039,1,1,14,15]]],[44,2,2,15,17,[[1048,1,1,15,16],[1050,1,1,16,17]]],[55,1,1,17,18,[[1131,1,1,17,18]]],[64,1,1,18,19,[[1166,1,1,18,19]]],[65,9,9,19,28,[[1182,9,9,19,28]]]],[23396,23953,24082,24282,24778,25144,25455,25884,26110,26941,26966,26967,26982,27304,27724,28006,28052,29929,30683,30955,30956,30957,30958,30960,30962,30964,30966,30971]]],["abroad",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28052]]],["after",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30683]]],["forth",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26982]]],["out",[14,14,[[39,1,1,0,1,[[937,1,1,0,1]]],[42,1,1,1,2,[[998,1,1,1,2]]],[43,4,4,2,6,[[1018,1,1,2,3],[1019,2,2,3,5],[1027,1,1,5,6]]],[65,8,8,6,14,[[1182,8,8,6,14]]]],[23396,26110,26941,26966,26967,27304,30955,30956,30957,30958,30962,30964,30966,30971]]],["shed",[9,9,[[39,2,2,0,2,[[951,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,2,2,3,5,[[983,1,1,3,4],[994,1,1,4,5]]],[43,1,1,5,6,[[1039,1,1,5,6]]],[44,1,1,6,7,[[1048,1,1,6,7]]],[55,1,1,7,8,[[1131,1,1,7,8]]],[65,1,1,8,9,[[1182,1,1,8,9]]]],[23953,24082,24778,25455,25884,27724,28006,29929,30960]]],["spilled",[2,2,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]]],[24282,25144]]]]},{"k":"G1633","v":[["out",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25847]]]]},{"k":"G1634","v":[["ghost",[3,3,[[43,3,3,0,3,[[1022,2,2,0,2],[1029,1,1,2,3]]]],[27064,27069,27360]]]]},{"k":"G1635","v":[["willingly",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]]],[28136,28557]]]]},{"k":"G1636","v":[["*",[15,15,[[39,3,3,0,3,[[949,1,1,0,1],[952,1,1,1,2],[954,1,1,2,3]]],[40,3,3,3,6,[[967,1,1,3,4],[969,1,1,4,5],[970,1,1,5,6]]],[41,4,4,6,10,[[991,2,2,6,8],[993,1,1,8,9],[994,1,1,9,10]]],[42,1,1,10,11,[[1004,1,1,10,11]]],[44,2,2,11,13,[[1056,2,2,11,13]]],[58,1,1,13,14,[[1148,1,1,13,14]]],[65,1,1,14,15,[[1177,1,1,14,15]]]],[23827,23960,24084,24641,24720,24780,25760,25768,25863,25903,26382,28226,28233,30331,30876]]],["Olives",[11,11,[[39,3,3,0,3,[[949,1,1,0,1],[952,1,1,1,2],[954,1,1,2,3]]],[40,3,3,3,6,[[967,1,1,3,4],[969,1,1,4,5],[970,1,1,5,6]]],[41,4,4,6,10,[[991,2,2,6,8],[993,1,1,8,9],[994,1,1,9,10]]],[42,1,1,10,11,[[1004,1,1,10,11]]]],[23827,23960,24084,24641,24720,24780,25760,25768,25863,25903,26382]]],["berries",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30331]]],["tree",[2,2,[[44,2,2,0,2,[[1056,2,2,0,2]]]],[28226,28233]]],["trees",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30876]]]]},{"k":"G1637","v":[["oil",[11,11,[[39,3,3,0,3,[[953,3,3,0,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[41,3,3,4,7,[[979,1,1,4,5],[982,1,1,5,6],[988,1,1,6,7]]],[57,1,1,7,8,[[1133,1,1,7,8]]],[58,1,1,8,9,[[1150,1,1,8,9]]],[65,2,2,9,11,[[1172,1,1,9,10],[1184,1,1,10,11]]]],[24011,24012,24016,24420,25241,25397,25626,29972,30368,30799,31006]]]]},{"k":"G1638","v":[["Olivet",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26935]]]]},{"k":"G1639","v":[["Elamites",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26958]]]]},{"k":"G1640","v":[["*",[4,4,[[42,1,1,0,1,[[998,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]],[57,1,1,3,4,[[1139,1,1,3,4]]]],[26105,28167,29772,30071]]],["less",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30071]]],["under",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29772]]],["worse",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26105]]],["younger",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28167]]]]},{"k":"G1641","v":[["+",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28947]]]]},{"k":"G1642","v":[["*",[3,3,[[42,1,1,0,1,[[999,1,1,0,1]]],[57,2,2,1,3,[[1134,2,2,1,3]]]],[26150,29984,29986]]],["+",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29986]]],["decrease",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26150]]],["madest",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29984]]]]},{"k":"G1643","v":[["*",[5,5,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[42,1,1,2,3,[[1002,1,1,2,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]],[60,1,1,4,5,[[1157,1,1,4,5]]]],[24455,25274,26276,30323,30517]]],["carried",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30517]]],["driven",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[25274,30323]]],["rowed",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26276]]],["rowing",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24455]]]]},{"k":"G1644","v":[["lightness",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28817]]]]},{"k":"G1645","v":[["light",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]]],[23489,28876]]]]},{"k":"G1646","v":[["*",[13,11,[[39,5,4,0,4,[[930,1,1,0,1],[933,2,1,1,2],[953,2,2,2,4]]],[41,4,3,4,7,[[984,1,1,4,5],[988,2,1,5,6],[991,1,1,6,7]]],[45,3,3,7,10,[[1065,1,1,7,8],[1067,1,1,8,9],[1076,1,1,9,10]]],[58,1,1,10,11,[[1148,1,1,10,11]]]],[23175,23253,24048,24053,25485,25630,25748,28436,28469,28727,30323]]],["+",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28469]]],["least",[9,7,[[39,5,4,0,4,[[930,1,1,0,1],[933,2,1,1,2],[953,2,2,2,4]]],[41,3,2,4,6,[[984,1,1,4,5],[988,2,1,5,6]]],[45,1,1,6,7,[[1076,1,1,6,7]]]],[23175,23253,24048,24053,25485,25630,28727]]],["little",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25748]]],["small",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30323]]],["thing",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28436]]]]},{"k":"G1647","v":[["least",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29259]]]]},{"k":"G1648","v":[["Eleazar",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23159]]]]},{"k":"G1649","v":[["+",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30516]]]]},{"k":"G1650","v":[["*",[2,2,[[54,1,1,0,1,[[1127,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[29869,30173]]],["evidence",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30173]]],["reproof",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29869]]]]},{"k":"G1651","v":[["*",[17,17,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[42,4,4,2,6,[[999,1,1,2,3],[1004,2,2,3,5],[1012,1,1,5,6]]],[45,1,1,6,7,[[1075,1,1,6,7]]],[48,2,2,7,9,[[1101,2,2,7,9]]],[53,1,1,9,10,[[1123,1,1,9,10]]],[54,1,1,10,11,[[1128,1,1,10,11]]],[55,3,3,11,14,[[1129,2,2,11,13],[1130,1,1,13,14]]],[57,1,1,14,15,[[1144,1,1,14,15]]],[58,1,1,15,16,[[1147,1,1,15,16]]],[65,1,1,16,17,[[1169,1,1,16,17]]]],[23742,25044,26140,26390,26427,26734,28702,29315,29317,29783,29872,29901,29905,29923,30217,30302,30765]]],["+",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23742]]],["convicted",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26390]]],["convince",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29901]]],["convinced",[2,2,[[45,1,1,0,1,[[1075,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[28702,30302]]],["convinceth",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26427]]],["rebuke",[4,4,[[53,1,1,0,1,[[1123,1,1,0,1]]],[55,2,2,1,3,[[1129,1,1,1,2],[1130,1,1,2,3]]],[65,1,1,3,4,[[1169,1,1,3,4]]]],[29783,29905,29923,30765]]],["rebuked",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30217]]],["reprove",[3,3,[[42,1,1,0,1,[[1012,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[26734,29315,29872]]],["reproved",[3,3,[[41,1,1,0,1,[[975,1,1,0,1]]],[42,1,1,1,2,[[999,1,1,1,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]]],[25044,26140,29317]]]]},{"k":"G1652","v":[["miserable",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[65,1,1,1,2,[[1169,1,1,1,2]]]],[28737,30763]]]]},{"k":"G1653","v":[["*",[31,28,[[39,8,7,0,7,[[933,1,1,0,1],[937,1,1,1,2],[943,1,1,2,3],[945,1,1,3,4],[946,2,1,4,5],[948,2,2,5,7]]],[40,3,3,7,10,[[961,1,1,7,8],[966,2,2,8,10]]],[41,4,4,10,14,[[988,1,1,10,11],[989,1,1,11,12],[990,2,2,12,14]]],[44,8,7,14,21,[[1054,4,3,14,17],[1056,3,3,17,20],[1057,1,1,20,21]]],[45,1,1,21,22,[[1068,1,1,21,22]]],[46,1,1,22,23,[[1081,1,1,22,23]]],[49,1,1,23,24,[[1104,1,1,23,24]]],[53,2,2,24,26,[[1119,2,2,24,26]]],[59,2,1,26,27,[[1152,2,1,26,27]]],[64,1,1,27,28,[[1166,1,1,27,28]]]],[23241,23406,23655,23715,23760,23822,23823,24383,24635,24636,25644,25664,25726,25727,28170,28171,28173,28239,28240,28241,28253,28512,28860,29418,29709,29712,30409,30694]]],["+",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30409]]],["compassion",[3,3,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[23760,24383,30694]]],["mercy",[26,25,[[39,6,6,0,6,[[933,1,1,0,1],[937,1,1,1,2],[943,1,1,2,3],[945,1,1,3,4],[948,2,2,4,6]]],[40,2,2,6,8,[[966,2,2,6,8]]],[41,4,4,8,12,[[988,1,1,8,9],[989,1,1,9,10],[990,2,2,10,12]]],[44,8,7,12,19,[[1054,4,3,12,15],[1056,3,3,15,18],[1057,1,1,18,19]]],[45,1,1,19,20,[[1068,1,1,19,20]]],[46,1,1,20,21,[[1081,1,1,20,21]]],[49,1,1,21,22,[[1104,1,1,21,22]]],[53,2,2,22,24,[[1119,2,2,22,24]]],[59,1,1,24,25,[[1152,1,1,24,25]]]],[23241,23406,23655,23715,23822,23823,24635,24636,25644,25664,25726,25727,28170,28171,28173,28239,28240,28241,28253,28512,28860,29418,29709,29712,30409]]],["pity",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23760]]]]},{"k":"G1654","v":[["*",[14,14,[[39,4,4,0,4,[[934,4,4,0,4]]],[41,2,2,4,6,[[983,1,1,4,5],[984,1,1,5,6]]],[43,8,8,6,14,[[1020,3,3,6,9],[1026,1,1,9,10],[1027,3,3,10,13],[1041,1,1,13,14]]]],[23283,23284,23285,23286,25446,25492,26998,26999,27006,27252,27261,27263,27290,27786]]],["alms",[13,13,[[39,4,4,0,4,[[934,4,4,0,4]]],[41,2,2,4,6,[[983,1,1,4,5],[984,1,1,5,6]]],[43,7,7,6,13,[[1020,3,3,6,9],[1027,3,3,9,12],[1041,1,1,12,13]]]],[23283,23284,23285,23286,25446,25492,26998,26999,27006,27261,27263,27290,27786]]],["almsdeeds",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27252]]]]},{"k":"G1655","v":[["merciful",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]]],[23241,29994]]]]},{"k":"G1656","v":[["*",[28,27,[[39,3,3,0,3,[[937,1,1,0,1],[940,1,1,1,2],[951,1,1,2,3]]],[41,6,6,3,9,[[973,5,5,3,8],[982,1,1,8,9]]],[44,3,3,9,12,[[1054,1,1,9,10],[1056,1,1,10,11],[1060,1,1,11,12]]],[47,1,1,12,13,[[1096,1,1,12,13]]],[48,1,1,13,14,[[1098,1,1,13,14]]],[53,1,1,14,15,[[1119,1,1,14,15]]],[54,3,3,15,18,[[1125,3,3,15,18]]],[55,2,2,18,20,[[1129,1,1,18,19],[1131,1,1,19,20]]],[57,1,1,20,21,[[1136,1,1,20,21]]],[58,3,2,21,23,[[1147,2,1,21,22],[1148,1,1,22,23]]],[59,1,1,23,24,[[1151,1,1,23,24]]],[62,1,1,24,25,[[1164,1,1,24,25]]],[64,2,2,25,27,[[1166,2,2,25,27]]]],[23392,23496,23941,24943,24947,24951,24965,24971,25400,28178,28240,28312,29204,29233,29698,29811,29825,29827,29896,29928,30030,30306,30336,30377,30648,30674,30693]]],["+",[2,2,[[41,2,2,0,2,[[973,2,2,0,2]]]],[24951,24971]]],["Mercy",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30674]]],["mercy",[25,24,[[39,3,3,0,3,[[937,1,1,0,1],[940,1,1,1,2],[951,1,1,2,3]]],[41,4,4,3,7,[[973,3,3,3,6],[982,1,1,6,7]]],[44,3,3,7,10,[[1054,1,1,7,8],[1056,1,1,8,9],[1060,1,1,9,10]]],[47,1,1,10,11,[[1096,1,1,10,11]]],[48,1,1,11,12,[[1098,1,1,11,12]]],[53,1,1,12,13,[[1119,1,1,12,13]]],[54,3,3,13,16,[[1125,3,3,13,16]]],[55,2,2,16,18,[[1129,1,1,16,17],[1131,1,1,17,18]]],[57,1,1,18,19,[[1136,1,1,18,19]]],[58,3,2,19,21,[[1147,2,1,19,20],[1148,1,1,20,21]]],[59,1,1,21,22,[[1151,1,1,21,22]]],[62,1,1,22,23,[[1164,1,1,22,23]]],[64,1,1,23,24,[[1166,1,1,23,24]]]],[23392,23496,23941,24943,24947,24965,25400,28178,28240,28312,29204,29233,29698,29811,29825,29827,29896,29928,30030,30306,30336,30377,30648,30693]]]]},{"k":"G1657","v":[["liberty",[11,10,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]],[46,1,1,2,3,[[1080,1,1,2,3]]],[47,4,3,3,6,[[1092,1,1,3,4],[1095,3,2,4,6]]],[58,2,2,6,8,[[1146,1,1,6,7],[1147,1,1,7,8]]],[59,1,1,8,9,[[1152,1,1,8,9]]],[60,1,1,9,10,[[1157,1,1,9,10]]]],[28137,28596,28858,29085,29163,29175,30291,30305,30415,30519]]]]},{"k":"G1658","v":[["*",[23,23,[[39,1,1,0,1,[[945,1,1,0,1]]],[42,2,2,1,3,[[1004,2,2,1,3]]],[44,2,2,3,5,[[1051,1,1,3,4],[1052,1,1,4,5]]],[45,6,6,5,11,[[1068,3,3,5,8],[1070,2,2,8,10],[1073,1,1,10,11]]],[47,6,6,11,17,[[1093,1,1,11,12],[1094,5,5,12,17]]],[48,1,1,17,18,[[1102,1,1,17,18]]],[50,1,1,18,19,[[1109,1,1,18,19]]],[59,1,1,19,20,[[1152,1,1,19,20]]],[65,3,3,20,23,[[1172,1,1,20,21],[1179,1,1,21,22],[1185,1,1,22,23]]]],[23726,26414,26417,28088,28094,28508,28509,28526,28541,28559,28647,29130,29153,29154,29157,29161,29162,29345,29528,30415,30808,30924,31035]]],["free",[18,18,[[39,1,1,0,1,[[945,1,1,0,1]]],[42,2,2,1,3,[[1004,2,2,1,3]]],[44,2,2,3,5,[[1051,1,1,3,4],[1052,1,1,4,5]]],[45,5,5,5,10,[[1068,2,2,5,7],[1070,2,2,7,9],[1073,1,1,9,10]]],[47,3,3,10,13,[[1093,1,1,10,11],[1094,2,2,11,13]]],[48,1,1,13,14,[[1102,1,1,13,14]]],[50,1,1,14,15,[[1109,1,1,14,15]]],[59,1,1,15,16,[[1152,1,1,15,16]]],[65,2,2,16,18,[[1179,1,1,16,17],[1185,1,1,17,18]]]],[23726,26414,26417,28088,28094,28508,28509,28541,28559,28647,29130,29157,29162,29345,29528,30415,30924,31035]]],["freewoman",[3,3,[[47,3,3,0,3,[[1094,3,3,0,3]]]],[29153,29154,29161]]],["liberty",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28526]]],["man",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30808]]]]},{"k":"G1659","v":[["*",[7,7,[[42,2,2,0,2,[[1004,2,2,0,2]]],[44,4,4,2,6,[[1051,2,2,2,4],[1053,2,2,4,6]]],[47,1,1,6,7,[[1095,1,1,6,7]]]],[26413,26417,28086,28090,28118,28137,29163]]],["+",[4,4,[[42,2,2,0,2,[[1004,2,2,0,2]]],[44,1,1,2,3,[[1053,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]]],[26413,26417,28118,29163]]],["delivered",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28137]]],["free",[2,2,[[44,2,2,0,2,[[1051,2,2,0,2]]]],[28086,28090]]]]},{"k":"G1660","v":[["coming",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27168]]]]},{"k":"G1661","v":[["ivory",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31005]]]]},{"k":"G1662","v":[["Eliakim",[3,2,[[39,2,1,0,1,[[929,2,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23157,25055]]]]},{"k":"G1663","v":[["Eliezer",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25054]]]]},{"k":"G1664","v":[["Eliud",[2,2,[[39,2,2,0,2,[[929,2,2,0,2]]]],[23158,23159]]]]},{"k":"G1665","v":[["*",[9,8,[[41,9,8,0,8,[[973,9,8,0,8]]]],[24898,24900,24906,24917,24929,24933,24934,24950]]],["Elisabeth",[8,7,[[41,8,7,0,7,[[973,8,7,0,7]]]],[24898,24900,24906,24917,24929,24933,24934]]],["Elisabeth's",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24950]]]]},{"k":"G1666","v":[["Eliseus",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25090]]]]},{"k":"G1667","v":[["+",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29975]]]]},{"k":"G1668","v":[["*",[3,3,[[41,1,1,0,1,[[988,1,1,0,1]]],[65,2,2,1,3,[[1182,2,2,1,3]]]],[25641,30956,30965]]],["sore",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30956]]],["sores",[2,2,[[41,1,1,0,1,[[988,1,1,0,1]]],[65,1,1,1,2,[[1182,1,1,1,2]]]],[25641,30965]]]]},{"k":"G1669","v":[["sores",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25640]]]]},{"k":"G1670","v":[["*",[8,8,[[42,5,5,0,5,[[1002,1,1,0,1],[1008,1,1,1,2],[1014,1,1,2,3],[1017,2,2,3,5]]],[43,2,2,5,7,[[1033,1,1,5,6],[1038,1,1,6,7]]],[58,1,1,7,8,[[1147,1,1,7,8]]]],[26301,26612,26795,26904,26909,27502,27694,30299]]],["draw",[4,4,[[42,3,3,0,3,[[1002,1,1,0,1],[1008,1,1,1,2],[1017,1,1,2,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[26301,26612,26904,30299]]],["drew",[4,4,[[42,2,2,0,2,[[1014,1,1,0,1],[1017,1,1,1,2]]],[43,2,2,2,4,[[1033,1,1,2,3],[1038,1,1,3,4]]]],[26795,26909,27502,27694]]]]},{"k":"G1671","v":[["Greece",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27628]]]]},{"k":"G1672","v":[["*",[27,26,[[42,3,2,0,2,[[1003,2,1,0,1],[1008,1,1,1,2]]],[43,10,10,2,12,[[1031,1,1,2,3],[1033,2,2,3,5],[1034,1,1,5,6],[1035,2,2,6,8],[1036,2,2,8,10],[1037,1,1,10,11],[1038,1,1,11,12]]],[44,6,6,12,18,[[1046,2,2,12,14],[1047,2,2,14,16],[1048,1,1,16,17],[1055,1,1,17,18]]],[45,5,5,18,23,[[1062,3,3,18,21],[1071,1,1,21,22],[1073,1,1,22,23]]],[47,2,2,23,25,[[1092,1,1,23,24],[1093,1,1,24,25]]],[50,1,1,25,26,[[1109,1,1,25,26]]]],[26363,26600,27415,27484,27486,27527,27561,27574,27595,27602,27647,27692,27944,27946,27971,27972,28000,28200,28385,28386,28387,28599,28647,29084,29130,29528]]],["Gentile",[2,2,[[44,2,2,0,2,[[1047,2,2,0,2]]]],[27971,27972]]],["Gentiles",[5,4,[[42,2,1,0,1,[[1003,2,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]],[45,2,2,2,4,[[1071,1,1,2,3],[1073,1,1,3,4]]]],[26363,28000,28599,28647]]],["Greek",[7,7,[[43,2,2,0,2,[[1033,2,2,0,2]]],[44,2,2,2,4,[[1046,1,1,2,3],[1055,1,1,3,4]]],[47,2,2,4,6,[[1092,1,1,4,5],[1093,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]]],[27484,27486,27946,28200,29084,29130,29528]]],["Greeks",[13,13,[[42,1,1,0,1,[[1008,1,1,0,1]]],[43,8,8,1,9,[[1031,1,1,1,2],[1034,1,1,2,3],[1035,2,2,3,5],[1036,2,2,5,7],[1037,1,1,7,8],[1038,1,1,8,9]]],[44,1,1,9,10,[[1046,1,1,9,10]]],[45,3,3,10,13,[[1062,3,3,10,13]]]],[26600,27415,27527,27561,27574,27595,27602,27647,27692,27944,28385,28386,28387]]]]},{"k":"G1673","v":[["*",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[65,1,1,1,2,[[1175,1,1,1,2]]]],[25973,30851]]],["Greek",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25973]]],["tongue",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30851]]]]},{"k":"G1674","v":[["*",[2,2,[[40,1,1,0,1,[[963,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]]],[24489,27535]]],["Greek",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24489]]],["Greeks",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27535]]]]},{"k":"G1675","v":[["Grecians",[3,3,[[43,3,3,0,3,[[1023,1,1,0,1],[1026,1,1,1,2],[1028,1,1,2,3]]]],[27102,27245,27327]]]]},{"k":"G1676","v":[["*",[2,2,[[42,1,1,0,1,[[1015,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[26845,27701]]],["+",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27701]]],["Greek",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26845]]]]},{"k":"G1677","v":[["*",[2,2,[[44,1,1,0,1,[[1050,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[28060,29956]]],["+",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29956]]],["imputed",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28060]]]]},{"k":"G1678","v":[["Elmodam",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25053]]]]},{"k":"G1679","v":[["*",[31,31,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,3,3,1,4,[[978,1,1,1,2],[995,1,1,2,3],[996,1,1,3,4]]],[42,1,1,4,5,[[1001,1,1,4,5]]],[43,2,2,5,7,[[1041,1,1,5,6],[1043,1,1,6,7]]],[44,4,4,7,11,[[1053,2,2,7,9],[1060,2,2,9,11]]],[45,3,3,11,14,[[1074,1,1,11,12],[1076,1,1,12,13],[1077,1,1,13,14]]],[46,5,5,14,19,[[1078,2,2,14,16],[1082,1,1,16,17],[1085,1,1,17,18],[1090,1,1,18,19]]],[49,2,2,19,21,[[1104,2,2,19,21]]],[53,4,4,21,25,[[1121,1,1,21,22],[1122,1,1,22,23],[1123,1,1,23,24],[1124,1,1,24,25]]],[56,1,1,25,26,[[1132,1,1,25,26]]],[57,1,1,26,27,[[1143,1,1,26,27]]],[59,2,2,27,29,[[1151,1,1,27,28],[1153,1,1,28,29]]],[62,1,1,29,30,[[1164,1,1,29,30]]],[63,1,1,30,31,[[1165,1,1,30,31]]]],[23510,25180,25943,26012,26255,27795,27830,28140,28141,28315,28327,28672,28737,28783,28810,28813,28888,28937,29049,29410,29414,29745,29757,29768,29805,29960,30173,30387,30429,30657,30672]]],["for",[3,3,[[44,2,2,0,2,[[1053,2,2,0,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[28140,28141,30173]]],["hope",[5,5,[[41,1,1,0,1,[[978,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]],[49,1,1,3,4,[[1104,1,1,3,4]]],[59,1,1,4,5,[[1151,1,1,4,5]]]],[25180,27830,28737,29414,30387]]],["hoped",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]]],[25943,27795,28937]]],["hopeth",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28672]]],["hoping",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29745]]],["trust",[15,15,[[39,1,1,0,1,[[940,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[44,2,2,2,4,[[1060,2,2,2,4]]],[45,1,1,4,5,[[1077,1,1,4,5]]],[46,4,4,5,9,[[1078,2,2,5,7],[1082,1,1,7,8],[1090,1,1,8,9]]],[49,1,1,9,10,[[1104,1,1,9,10]]],[53,2,2,10,12,[[1122,1,1,10,11],[1124,1,1,11,12]]],[56,1,1,12,13,[[1132,1,1,12,13]]],[62,1,1,13,14,[[1164,1,1,13,14]]],[63,1,1,14,15,[[1165,1,1,14,15]]]],[23510,26255,28315,28327,28783,28810,28813,28888,29049,29410,29757,29805,29960,30657,30672]]],["trusted",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[26012,30429]]],["trusteth",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29768]]]]},{"k":"G1680","v":[["*",[54,48,[[43,8,8,0,8,[[1019,1,1,0,1],[1033,1,1,1,2],[1040,1,1,2,3],[1041,1,1,3,4],[1043,2,2,4,6],[1044,1,1,6,7],[1045,1,1,7,8]]],[44,13,9,8,17,[[1049,2,1,8,9],[1050,3,3,9,12],[1053,4,2,12,14],[1057,1,1,14,15],[1060,3,2,15,17]]],[45,4,2,17,19,[[1070,3,1,17,18],[1074,1,1,18,19]]],[46,3,3,19,22,[[1078,1,1,19,20],[1080,1,1,20,21],[1087,1,1,21,22]]],[47,1,1,22,23,[[1095,1,1,22,23]]],[48,3,3,23,26,[[1097,1,1,23,24],[1098,1,1,24,25],[1100,1,1,25,26]]],[49,1,1,26,27,[[1103,1,1,26,27]]],[50,3,3,27,30,[[1107,3,3,27,30]]],[51,4,4,30,34,[[1111,1,1,30,31],[1112,1,1,31,32],[1114,1,1,32,33],[1115,1,1,33,34]]],[52,1,1,34,35,[[1117,1,1,34,35]]],[53,1,1,35,36,[[1119,1,1,35,36]]],[55,3,3,36,39,[[1129,1,1,36,37],[1130,1,1,37,38],[1131,1,1,38,39]]],[57,5,5,39,44,[[1135,1,1,39,40],[1138,2,2,40,42],[1139,1,1,42,43],[1142,1,1,43,44]]],[59,3,3,44,47,[[1151,2,2,44,46],[1153,1,1,46,47]]],[61,1,1,47,48,[[1161,1,1,47,48]]]],[26975,27502,27740,27784,27829,27830,27875,27919,28040,28049,28051,28052,28136,28140,28257,28307,28316,28550,28678,28807,28853,28986,29167,29224,29241,29276,29381,29470,29488,29492,29563,29589,29616,29629,29677,29697,29894,29921,29930,30001,30055,30062,30083,30156,30377,30395,30439,30582]]],["faith",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30156]]],["hope",[52,46,[[43,7,7,0,7,[[1019,1,1,0,1],[1033,1,1,1,2],[1040,1,1,2,3],[1041,1,1,3,4],[1043,1,1,4,5],[1044,1,1,5,6],[1045,1,1,6,7]]],[44,13,9,7,16,[[1049,2,1,7,8],[1050,3,3,8,11],[1053,4,2,11,13],[1057,1,1,13,14],[1060,3,2,14,16]]],[45,4,2,16,18,[[1070,3,1,16,17],[1074,1,1,17,18]]],[46,3,3,18,21,[[1078,1,1,18,19],[1080,1,1,19,20],[1087,1,1,20,21]]],[47,1,1,21,22,[[1095,1,1,21,22]]],[48,3,3,22,25,[[1097,1,1,22,23],[1098,1,1,23,24],[1100,1,1,24,25]]],[49,1,1,25,26,[[1103,1,1,25,26]]],[50,3,3,26,29,[[1107,3,3,26,29]]],[51,4,4,29,33,[[1111,1,1,29,30],[1112,1,1,30,31],[1114,1,1,31,32],[1115,1,1,32,33]]],[52,1,1,33,34,[[1117,1,1,33,34]]],[53,1,1,34,35,[[1119,1,1,34,35]]],[55,3,3,35,38,[[1129,1,1,35,36],[1130,1,1,36,37],[1131,1,1,37,38]]],[57,4,4,38,42,[[1135,1,1,38,39],[1138,2,2,39,41],[1139,1,1,41,42]]],[59,3,3,42,45,[[1151,2,2,42,44],[1153,1,1,44,45]]],[61,1,1,45,46,[[1161,1,1,45,46]]]],[26975,27502,27740,27784,27829,27875,27919,28040,28049,28051,28052,28136,28140,28257,28307,28316,28550,28678,28807,28853,28986,29167,29224,29241,29276,29381,29470,29488,29492,29563,29589,29616,29629,29677,29697,29894,29921,29930,30001,30055,30062,30083,30377,30395,30439,30582]]],["hope's",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27830]]]]},{"k":"G1681","v":[["Elymas",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27370]]]]},{"k":"G1682","v":[["Eloi",[2,1,[[40,2,1,0,1,[[971,2,1,0,1]]]],[24860]]]]},{"k":"G1683","v":[["*",[37,37,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,2,2,1,3,[[979,2,2,1,3]]],[42,16,16,3,19,[[1001,2,2,3,5],[1003,2,2,5,7],[1004,5,5,7,12],[1006,1,1,12,13],[1008,2,2,13,15],[1010,3,3,15,18],[1013,1,1,18,19]]],[43,4,4,19,23,[[1037,1,1,19,20],[1041,1,1,20,21],[1043,2,2,21,23]]],[44,1,1,23,24,[[1056,1,1,23,24]]],[45,6,6,24,30,[[1065,3,3,24,27],[1068,1,1,27,28],[1070,1,1,28,29],[1071,1,1,29,30]]],[46,4,4,30,34,[[1079,1,1,30,31],[1088,2,2,31,33],[1089,1,1,33,34]]],[47,1,1,34,35,[[1092,1,1,34,35]]],[49,1,1,35,36,[[1105,1,1,35,36]]],[56,1,1,36,37,[[1132,1,1,36,37]]]],[23354,25202,25203,26240,26241,26345,26356,26395,26399,26409,26423,26435,26499,26612,26629,26671,26678,26689,26778,27650,27779,27825,27832,28213,28436,28437,28439,28494,28559,28600,28825,28996,28998,29027,29099,29434,29951]]],["+",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]]],[25202,28559]]],["me",[4,4,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[42,1,1,2,3,[[1008,1,1,2,3]]],[56,1,1,3,4,[[1132,1,1,3,4]]]],[23354,25203,26612,29951]]],["myself",[28,28,[[42,14,14,0,14,[[1001,1,1,0,1],[1003,2,2,1,3],[1004,5,5,3,8],[1006,1,1,8,9],[1008,1,1,9,10],[1010,3,3,10,13],[1013,1,1,13,14]]],[43,4,4,14,18,[[1037,1,1,14,15],[1041,1,1,15,16],[1043,2,2,16,18]]],[44,1,1,18,19,[[1056,1,1,18,19]]],[45,3,3,19,22,[[1065,2,2,19,21],[1068,1,1,21,22]]],[46,4,4,22,26,[[1079,1,1,22,23],[1088,2,2,23,25],[1089,1,1,25,26]]],[47,1,1,26,27,[[1092,1,1,26,27]]],[49,1,1,27,28,[[1105,1,1,27,28]]]],[26241,26345,26356,26395,26399,26409,26423,26435,26499,26629,26671,26678,26689,26778,27650,27779,27825,27832,28213,28437,28439,28494,28825,28996,28998,29027,29099,29434]]],["own",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28600]]],["self",[2,2,[[42,1,1,0,1,[[1001,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]]],[26240,28436]]]]},{"k":"G1684","v":[["*",[18,18,[[39,6,6,0,6,[[936,1,1,0,1],[937,1,1,1,2],[941,1,1,2,3],[942,2,2,3,5],[943,1,1,5,6]]],[40,5,5,6,11,[[960,1,1,6,7],[961,1,1,7,8],[962,1,1,8,9],[964,2,2,9,11]]],[41,3,3,11,14,[[977,1,1,11,12],[980,2,2,12,14]]],[42,4,4,14,18,[[1001,1,1,14,15],[1002,3,3,15,18]]]],[23368,23380,23541,23619,23629,23672,24324,24382,24452,24510,24513,25110,25267,25282,26214,26274,26279,26281]]],["+",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23672]]],["come",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]]],[23629,24382]]],["entered",[7,7,[[39,2,2,0,2,[[936,1,1,0,1],[937,1,1,1,2]]],[40,2,2,2,4,[[960,1,1,2,3],[964,1,1,3,4]]],[41,1,1,4,5,[[977,1,1,4,5]]],[42,2,2,5,7,[[1002,2,2,5,7]]]],[23368,23380,24324,24510,25110,26274,26279]]],["entering",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24513]]],["get",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]]],[23619,24452]]],["in",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26214]]],["took",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26281]]],["up",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25282]]],["went",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[23541,25267]]]]},{"k":"G1685","v":[["cast",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25464]]]]},{"k":"G1686","v":[["*",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,1,1,2,3,[[1009,1,1,2,3]]]],[24077,24774,26656]]],["dipped",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26656]]],["dippeth",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24077,24774]]]]},{"k":"G1687","v":[["into",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29512]]]]},{"k":"G1688","v":[["put",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27861]]]]},{"k":"G1689","v":[["*",[12,12,[[39,2,2,0,2,[[934,1,1,0,1],[947,1,1,1,2]]],[40,4,4,2,6,[[964,1,1,2,3],[966,2,2,3,5],[970,1,1,5,6]]],[41,2,2,6,8,[[992,1,1,6,7],[994,1,1,7,8]]],[42,2,2,8,10,[[997,2,2,8,10]]],[43,2,2,10,12,[[1018,1,1,10,11],[1039,1,1,11,12]]]],[23308,23788,24525,24609,24615,24821,25796,25925,26080,26086,26934,27715]]],["+",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23308]]],["beheld",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,1,1,1,2,[[992,1,1,1,2]]],[42,1,1,2,3,[[997,1,1,2,3]]]],[23788,25796,26086]]],["beholding",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24609]]],["saw",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24525]]],["see",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27715]]],["up",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26934]]],["upon",[4,4,[[40,2,2,0,2,[[966,1,1,0,1],[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,1,1,3,4,[[997,1,1,3,4]]]],[24615,24821,25925,26080]]]]},{"k":"G1690","v":[["*",[5,5,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,2,2,1,3,[[957,1,1,1,2],[970,1,1,2,3]]],[42,2,2,3,5,[[1007,2,2,3,5]]]],[23409,24258,24759,26556,26561]]],["against",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24759]]],["charged",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23409,24258]]],["groaned",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26556]]],["groaning",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26561]]]]},{"k":"G1691","v":[["*",[88,77,[[39,9,7,0,7,[[938,4,2,0,2],[946,3,3,2,5],[954,2,2,5,7]]],[40,6,4,7,11,[[965,4,2,7,9],[970,2,2,9,11]]],[41,8,6,11,17,[[976,1,1,11,12],[981,2,1,12,13],[982,2,1,13,14],[994,1,1,14,15],[995,1,1,15,16],[996,1,1,16,17]]],[42,40,37,17,54,[[999,1,1,17,18],[1002,4,4,18,22],[1003,2,2,22,24],[1004,3,2,24,26],[1005,1,1,26,27],[1007,2,2,27,29],[1008,7,6,29,35],[1009,3,2,35,37],[1010,3,3,37,40],[1011,4,4,40,44],[1012,6,6,44,50],[1013,3,3,50,53],[1014,1,1,53,54]]],[43,6,6,54,60,[[1020,1,1,54,55],[1024,1,1,55,56],[1025,1,1,56,57],[1030,1,1,57,58],[1039,1,1,58,59],[1043,1,1,59,60]]],[44,4,3,60,63,[[1046,1,1,60,61],[1055,2,1,61,62],[1060,1,1,62,63]]],[45,2,2,63,65,[[1070,1,1,63,64],[1076,1,1,64,65]]],[46,4,4,65,69,[[1079,1,1,65,66],[1088,1,1,66,67],[1089,2,2,67,69]]],[48,1,1,69,70,[[1102,1,1,69,70]]],[49,3,3,70,73,[[1103,1,1,70,71],[1104,2,2,71,73]]],[50,1,1,73,74,[[1110,1,1,73,74]]],[54,1,1,74,75,[[1125,1,1,74,75]]],[56,2,1,75,76,[[1132,2,1,75,76]]],[65,1,1,76,77,[[1167,1,1,76,77]]]],[23454,23457,23732,23733,23748,24064,24065,24575,24580,24760,24761,25081,25349,25379,25917,25963,26030,26150,26292,26294,26304,26314,26335,26366,26400,26423,26444,26548,26549,26588,26610,26624,26625,26626,26628,26648,26650,26669,26677,26680,26717,26719,26722,26723,26729,26735,26740,26749,26753,26758,26777,26779,26782,26793,27018,27153,27200,27387,27710,27841,27945,28208,28306,28543,28728,28829,28999,29028,29031,29358,29373,29414,29418,29549,29817,29955,30714]]],["+",[3,3,[[44,1,1,0,1,[[1046,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]],[50,1,1,2,3,[[1110,1,1,2,3]]]],[27945,29358,29549]]],["I",[2,2,[[42,2,2,0,2,[[999,1,1,0,1],[1005,1,1,1,2]]]],[26150,26444]]],["me",[82,72,[[39,9,7,0,7,[[938,4,2,0,2],[946,3,3,2,5],[954,2,2,5,7]]],[40,6,4,7,11,[[965,4,2,7,9],[970,2,2,9,11]]],[41,8,6,11,17,[[976,1,1,11,12],[981,2,1,12,13],[982,2,1,13,14],[994,1,1,14,15],[995,1,1,15,16],[996,1,1,16,17]]],[42,38,35,17,52,[[1002,4,4,17,21],[1003,2,2,21,23],[1004,3,2,23,25],[1007,2,2,25,27],[1008,7,6,27,33],[1009,3,2,33,35],[1010,3,3,35,38],[1011,4,4,38,42],[1012,6,6,42,48],[1013,3,3,48,51],[1014,1,1,51,52]]],[43,6,6,52,58,[[1020,1,1,52,53],[1024,1,1,53,54],[1025,1,1,54,55],[1030,1,1,55,56],[1039,1,1,56,57],[1043,1,1,57,58]]],[44,3,2,58,60,[[1055,2,1,58,59],[1060,1,1,59,60]]],[45,2,2,60,62,[[1070,1,1,60,61],[1076,1,1,61,62]]],[46,4,4,62,66,[[1079,1,1,62,63],[1088,1,1,63,64],[1089,2,2,64,66]]],[49,3,3,66,69,[[1103,1,1,66,67],[1104,2,2,67,69]]],[54,1,1,69,70,[[1125,1,1,69,70]]],[56,1,1,70,71,[[1132,1,1,70,71]]],[65,1,1,71,72,[[1167,1,1,71,72]]]],[23454,23457,23732,23733,23748,24064,24065,24575,24580,24760,24761,25081,25349,25379,25917,25963,26030,26292,26294,26304,26314,26335,26366,26400,26423,26548,26549,26588,26610,26624,26625,26626,26628,26648,26650,26669,26677,26680,26717,26719,26722,26723,26729,26735,26740,26749,26753,26758,26777,26779,26782,26793,27018,27153,27200,27387,27710,27841,28208,28306,28543,28728,28829,28999,29028,29031,29373,29414,29418,29817,29955,30714]]],["myself",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29955]]]]},{"k":"G1692","v":[["spue",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30762]]]]},{"k":"G1693","v":[["+",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27834]]]]},{"k":"G1694","v":[["Emmanuel",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23167]]]]},{"k":"G1695","v":[["Emmaus",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26004]]]]},{"k":"G1696","v":[["*",[3,3,[[43,1,1,0,1,[[1031,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]],[57,1,1,2,3,[[1140,1,1,2,3]]]],[27436,29112,30101]]],["continue",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27436]]],["continued",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30101]]],["continueth",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29112]]]]},{"k":"G1697","v":[["Emmor",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27132]]]]},{"k":"G1698","v":[["*",[97,89,[[39,7,7,0,7,[[938,1,1,0,1],[939,1,1,1,2],[946,2,2,2,4],[953,2,2,4,6],[954,1,1,6,7]]],[40,2,2,7,9,[[961,1,1,7,8],[970,1,1,8,9]]],[41,6,6,9,15,[[976,1,1,9,10],[979,1,1,10,11],[980,1,1,11,12],[984,1,1,12,13],[987,1,1,13,14],[994,1,1,14,15]]],[42,29,24,15,39,[[998,1,1,15,16],[1001,1,1,16,17],[1002,1,1,17,18],[1003,1,1,18,19],[1004,1,1,19,20],[1006,2,1,20,21],[1008,3,1,21,22],[1009,1,1,22,23],[1010,5,4,23,27],[1011,7,6,27,33],[1012,1,1,33,34],[1013,3,3,34,37],[1014,1,1,37,38],[1015,1,1,38,39]]],[43,6,6,39,45,[[1027,1,1,39,40],[1028,1,1,40,41],[1039,1,1,41,42],[1041,1,1,42,43],[1043,1,1,43,44],[1045,1,1,44,45]]],[44,9,8,45,53,[[1052,7,6,45,51],[1057,1,1,51,52],[1059,1,1,52,53]]],[45,5,5,53,58,[[1065,1,1,53,54],[1070,1,1,54,55],[1075,1,1,55,56],[1076,1,1,56,57],[1077,1,1,57,58]]],[46,4,4,58,62,[[1078,1,1,58,59],[1086,1,1,59,60],[1088,1,1,60,61],[1090,1,1,61,62]]],[47,10,9,62,71,[[1091,3,3,62,65],[1092,5,5,65,70],[1096,2,1,70,71]]],[48,1,1,71,72,[[1099,1,1,71,72]]],[49,10,9,72,81,[[1103,5,4,72,76],[1104,2,2,76,78],[1105,1,1,78,79],[1106,2,2,79,81]]],[50,1,1,81,82,[[1107,1,1,81,82]]],[53,1,1,82,83,[[1119,1,1,82,83]]],[54,1,1,83,84,[[1128,1,1,83,84]]],[56,3,3,84,87,[[1132,3,3,84,87]]],[57,2,2,87,89,[[1142,1,1,87,88],[1145,1,1,88,89]]]],[23449,23465,23753,23756,24048,24053,24085,24371,24781,25069,25218,25273,25467,25617,25901,26099,26256,26313,26351,26393,26519,26606,26665,26678,26679,26688,26698,26701,26703,26704,26705,26706,26707,26759,26765,26780,26782,26820,26835,27287,27319,27713,27789,27836,27917,28099,28104,28108,28109,28111,28112,28264,28291,28436,28555,28689,28728,28780,28817,28960,28999,29046,29059,29073,29081,29084,29087,29089,29090,29101,29202,29259,29368,29382,29387,29391,29407,29413,29422,29451,29463,29494,29712,29878,29949,29954,29956,30163,30247]]],["+",[6,6,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[970,1,1,2,3]]],[41,1,1,3,4,[[980,1,1,3,4]]],[42,1,1,4,5,[[998,1,1,4,5]]],[56,1,1,5,6,[[1132,1,1,5,6]]]],[24085,24371,24781,25273,26099,29956]]],["I",[3,3,[[44,1,1,0,1,[[1052,1,1,0,1]]],[47,1,1,1,2,[[1096,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[28112,29202,29407]]],["me",[84,78,[[39,6,6,0,6,[[938,1,1,0,1],[939,1,1,1,2],[946,2,2,2,4],[953,2,2,4,6]]],[41,5,5,6,11,[[976,1,1,6,7],[979,1,1,7,8],[984,1,1,8,9],[987,1,1,9,10],[994,1,1,10,11]]],[42,26,21,11,32,[[1001,1,1,11,12],[1002,1,1,12,13],[1003,1,1,13,14],[1004,1,1,14,15],[1006,2,1,15,16],[1008,3,1,16,17],[1010,5,4,17,21],[1011,6,5,21,26],[1012,1,1,26,27],[1013,3,3,27,30],[1014,1,1,30,31],[1015,1,1,31,32]]],[43,6,6,32,38,[[1027,1,1,32,33],[1028,1,1,33,34],[1039,1,1,34,35],[1041,1,1,35,36],[1043,1,1,36,37],[1045,1,1,37,38]]],[44,7,7,38,45,[[1052,6,6,38,44],[1059,1,1,44,45]]],[45,5,5,45,50,[[1065,1,1,45,46],[1070,1,1,46,47],[1075,1,1,47,48],[1076,1,1,48,49],[1077,1,1,49,50]]],[46,4,4,50,54,[[1078,1,1,50,51],[1086,1,1,51,52],[1088,1,1,52,53],[1090,1,1,53,54]]],[47,9,9,54,63,[[1091,3,3,54,57],[1092,5,5,57,62],[1096,1,1,62,63]]],[48,1,1,63,64,[[1099,1,1,63,64]]],[49,9,8,64,72,[[1103,5,4,64,68],[1104,1,1,68,69],[1105,1,1,69,70],[1106,2,2,70,72]]],[50,1,1,72,73,[[1107,1,1,72,73]]],[53,1,1,73,74,[[1119,1,1,73,74]]],[54,1,1,74,75,[[1128,1,1,74,75]]],[56,2,2,75,77,[[1132,2,2,75,77]]],[57,1,1,77,78,[[1142,1,1,77,78]]]],[23449,23465,23753,23756,24048,24053,25069,25218,25467,25617,25901,26256,26313,26351,26393,26519,26606,26678,26679,26688,26698,26701,26703,26704,26705,26706,26759,26765,26780,26782,26820,26835,27287,27319,27713,27789,27836,27917,28099,28104,28108,28109,28111,28112,28291,28436,28555,28689,28728,28780,28817,28960,28999,29046,29059,29073,29081,29084,29087,29089,29090,29101,29202,29259,29368,29382,29387,29391,29413,29422,29451,29463,29494,29712,29878,29949,29954,30163]]],["mine",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28264]]],["my",[3,3,[[42,2,2,0,2,[[1009,1,1,0,1],[1011,1,1,1,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]]],[26665,26707,30247]]]]},{"k":"G1699","v":[["*",[76,66,[[39,4,4,0,4,[[946,1,1,0,1],[948,2,2,1,3],[953,1,1,3,4]]],[40,2,2,4,6,[[964,1,1,4,5],[966,1,1,5,6]]],[41,3,3,6,9,[[981,1,1,6,7],[987,1,1,7,8],[994,1,1,8,9]]],[42,39,30,9,39,[[999,1,1,9,10],[1000,1,1,10,11],[1001,3,2,11,13],[1002,1,1,13,14],[1003,4,3,14,17],[1004,7,6,17,23],[1006,4,3,23,26],[1008,1,1,26,27],[1010,3,3,27,30],[1011,3,3,30,33],[1012,3,2,33,35],[1013,4,3,35,38],[1014,4,1,38,39]]],[44,2,2,39,41,[[1048,1,1,39,40],[1055,1,1,40,41]]],[45,10,9,41,50,[[1062,1,1,41,42],[1066,1,1,42,43],[1068,1,1,43,44],[1070,2,2,44,46],[1072,3,2,46,48],[1077,2,2,48,50]]],[46,3,3,50,53,[[1078,1,1,50,51],[1079,1,1,51,52],[1085,1,1,52,53]]],[47,2,2,53,55,[[1091,1,1,53,54],[1096,1,1,54,55]]],[49,2,2,55,57,[[1103,1,1,55,56],[1105,1,1,56,57]]],[50,1,1,57,58,[[1110,1,1,57,58]]],[52,1,1,58,59,[[1118,1,1,58,59]]],[54,1,1,59,60,[[1128,1,1,59,60]]],[56,3,3,60,63,[[1132,3,3,60,63]]],[60,1,1,63,64,[[1156,1,1,63,64]]],[63,1,1,64,65,[[1165,1,1,64,65]]],[65,1,1,65,66,[[1168,1,1,65,66]]]],[23747,23807,23815,24035,24538,24628,25327,25619,25883,26149,26190,26240,26257,26295,26334,26336,26344,26397,26412,26418,26424,26432,26437,26495,26507,26508,26606,26683,26692,26695,26708,26710,26711,26740,26741,26769,26772,26783,26821,27998,28189,28378,28458,28527,28542,28543,28624,28625,28794,28797,28823,28827,28955,29070,29199,29387,29430,29560,29695,29876,29948,29950,29957,30494,30662,30737]]],["+",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23807]]],["Mine",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28543]]],["My",[5,5,[[42,5,5,0,5,[[1000,1,1,0,1],[1003,2,2,1,3],[1006,1,1,3,4],[1014,1,1,4,5]]]],[26190,26334,26344,26508,26821]]],["have",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25619]]],["me",[4,4,[[41,1,1,0,1,[[994,1,1,0,1]]],[45,2,2,1,3,[[1072,2,2,1,3]]],[50,1,1,3,4,[[1110,1,1,3,4]]]],[25883,28624,28625,29560]]],["mine",[11,9,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[42,8,6,2,8,[[1003,1,1,2,3],[1006,1,1,3,4],[1010,1,1,4,5],[1012,3,2,5,7],[1013,2,1,7,8]]],[45,1,1,8,9,[[1070,1,1,8,9]]]],[23815,24628,26344,26495,26692,26740,26741,26769,28542]]],["my",[43,40,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[42,24,21,3,24,[[999,1,1,3,4],[1001,2,2,4,6],[1003,1,1,6,7],[1004,7,6,7,13],[1006,2,2,13,15],[1008,1,1,15,16],[1010,2,2,16,18],[1011,3,3,18,21],[1013,2,2,21,23],[1014,3,1,23,24]]],[44,2,2,24,26,[[1048,1,1,24,25],[1055,1,1,25,26]]],[45,4,4,26,30,[[1066,1,1,26,27],[1068,1,1,27,28],[1072,1,1,28,29],[1077,1,1,29,30]]],[46,3,3,30,33,[[1078,1,1,30,31],[1079,1,1,31,32],[1085,1,1,32,33]]],[47,1,1,33,34,[[1091,1,1,33,34]]],[49,1,1,34,35,[[1103,1,1,34,35]]],[54,1,1,35,36,[[1128,1,1,35,36]]],[56,1,1,36,37,[[1132,1,1,36,37]]],[60,1,1,37,38,[[1156,1,1,37,38]]],[63,1,1,38,39,[[1165,1,1,38,39]]],[65,1,1,39,40,[[1168,1,1,39,40]]]],[23747,24538,25327,26149,26240,26257,26336,26397,26412,26418,26424,26432,26437,26495,26507,26606,26683,26695,26708,26710,26711,26772,26783,26821,27998,28189,28458,28527,28625,28794,28823,28827,28955,29070,29387,29876,29948,30494,30662,30737]]],["own",[10,10,[[39,1,1,0,1,[[953,1,1,0,1]]],[42,2,2,1,3,[[1001,1,1,1,2],[1002,1,1,2,3]]],[45,2,2,3,5,[[1062,1,1,3,4],[1077,1,1,4,5]]],[47,1,1,5,6,[[1096,1,1,5,6]]],[49,1,1,6,7,[[1105,1,1,6,7]]],[52,1,1,7,8,[[1118,1,1,7,8]]],[56,2,2,8,10,[[1132,2,2,8,10]]]],[24035,26240,26295,28378,28797,29199,29430,29695,29950,29957]]]]},{"k":"G1700","v":[["*",[109,104,[[39,18,16,0,16,[[933,1,1,0,1],[935,1,1,1,2],[938,2,2,2,4],[939,1,1,4,5],[940,3,1,5,6],[943,2,2,6,8],[944,1,1,8,9],[945,1,1,9,10],[953,1,1,10,11],[954,5,5,11,16]]],[40,8,8,16,24,[[963,2,2,16,18],[964,1,1,18,19],[966,1,1,19,20],[969,1,1,20,21],[970,3,3,21,24]]],[41,18,16,24,40,[[977,1,1,24,25],[980,1,1,25,26],[981,1,1,26,27],[982,1,1,27,28],[983,4,2,28,30],[984,1,1,30,31],[985,1,1,31,32],[987,1,1,32,33],[988,1,1,33,34],[994,4,4,34,38],[995,1,1,38,39],[996,1,1,39,40]]],[42,25,24,40,64,[[1000,1,1,40,41],[1001,7,6,41,47],[1004,2,2,47,49],[1006,4,4,49,53],[1009,3,3,53,56],[1010,1,1,56,57],[1011,3,3,57,60],[1012,1,1,60,61],[1013,1,1,61,62],[1014,1,1,62,63],[1015,1,1,63,64]]],[43,6,6,64,70,[[1025,1,1,64,65],[1028,1,1,65,66],[1037,1,1,66,67],[1039,1,1,67,68],[1040,1,1,68,69],[1042,1,1,69,70]]],[44,7,7,70,77,[[1046,1,1,70,71],[1056,1,1,71,72],[1060,2,2,72,74],[1061,3,3,74,77]]],[46,5,5,77,82,[[1078,1,1,77,78],[1079,1,1,78,79],[1084,1,1,79,80],[1089,2,2,80,82]]],[47,3,3,82,85,[[1091,2,2,82,84],[1092,1,1,84,85]]],[48,1,1,85,86,[[1102,1,1,85,86]]],[49,1,1,86,87,[[1106,1,1,86,87]]],[54,4,4,87,91,[[1125,1,1,87,88],[1126,1,1,88,89],[1128,2,2,89,91]]],[55,1,1,91,92,[[1131,1,1,91,92]]],[57,1,1,92,93,[[1142,1,1,92,93]]],[65,11,11,93,104,[[1167,1,1,93,94],[1169,4,4,94,98],[1170,1,1,98,99],[1176,1,1,99,100],[1183,1,1,100,101],[1187,2,2,101,103],[1188,1,1,103,104]]]],[23245,23339,23435,23456,23488,23519,23638,23641,23697,23727,24049,24077,24092,24093,24094,24096,24469,24474,24535,24617,24726,24772,24774,24790,25115,25291,25325,25379,25412,25428,25472,25545,25619,25623,25885,25892,25901,25906,25978,26035,26165,26217,26242,26246,26247,26249,26256,26399,26410,26489,26490,26499,26506,26638,26648,26668,26674,26704,26725,26726,26758,26783,26819,26836,27200,27312,27660,27722,27745,27805,27942,28236,28321,28333,28338,28343,28349,28819,28826,28923,29028,29030,29068,29074,29101,29356,29452,29822,29829,29881,29887,29938,30140,30709,30750,30764,30766,30767,30769,30869,30976,31062,31068,31092]]],["+",[9,9,[[39,4,4,0,4,[[933,1,1,0,1],[938,2,2,1,3],[944,1,1,3,4]]],[40,3,3,4,7,[[964,1,1,4,5],[966,1,1,5,6],[969,1,1,6,7]]],[41,1,1,7,8,[[981,1,1,7,8]]],[42,1,1,8,9,[[1009,1,1,8,9]]]],[23245,23435,23456,23697,24535,24617,24726,25325,26668]]],["me",[96,91,[[39,14,12,0,12,[[935,1,1,0,1],[939,1,1,1,2],[940,3,1,2,3],[943,2,2,3,5],[945,1,1,5,6],[953,1,1,6,7],[954,5,5,7,12]]],[40,5,5,12,17,[[963,2,2,12,14],[970,3,3,14,17]]],[41,17,15,17,32,[[977,1,1,17,18],[980,1,1,18,19],[982,1,1,19,20],[983,4,2,20,22],[984,1,1,22,23],[985,1,1,23,24],[987,1,1,24,25],[988,1,1,25,26],[994,4,4,26,30],[995,1,1,30,31],[996,1,1,31,32]]],[42,24,23,32,55,[[1000,1,1,32,33],[1001,7,6,33,39],[1004,2,2,39,41],[1006,4,4,41,45],[1009,2,2,45,47],[1010,1,1,47,48],[1011,3,3,48,51],[1012,1,1,51,52],[1013,1,1,52,53],[1014,1,1,53,54],[1015,1,1,54,55]]],[43,6,6,55,61,[[1025,1,1,55,56],[1028,1,1,56,57],[1037,1,1,57,58],[1039,1,1,58,59],[1040,1,1,59,60],[1042,1,1,60,61]]],[44,4,4,61,65,[[1046,1,1,61,62],[1060,2,2,62,64],[1061,1,1,64,65]]],[46,5,5,65,70,[[1078,1,1,65,66],[1079,1,1,66,67],[1084,1,1,67,68],[1089,2,2,68,70]]],[47,3,3,70,73,[[1091,2,2,70,72],[1092,1,1,72,73]]],[48,1,1,73,74,[[1102,1,1,73,74]]],[49,1,1,74,75,[[1106,1,1,74,75]]],[54,4,4,75,79,[[1125,1,1,75,76],[1126,1,1,76,77],[1128,2,2,77,79]]],[55,1,1,79,80,[[1131,1,1,79,80]]],[65,11,11,80,91,[[1167,1,1,80,81],[1169,4,4,81,85],[1170,1,1,85,86],[1176,1,1,86,87],[1183,1,1,87,88],[1187,2,2,88,90],[1188,1,1,90,91]]]],[23339,23488,23519,23638,23641,23727,24049,24077,24092,24093,24094,24096,24469,24474,24772,24774,24790,25115,25291,25379,25412,25428,25472,25545,25619,25623,25885,25892,25901,25906,25978,26035,26165,26217,26242,26246,26247,26249,26256,26399,26410,26489,26490,26499,26506,26638,26648,26674,26704,26725,26726,26758,26783,26819,26836,27200,27312,27660,27722,27745,27805,27942,28321,28333,28343,28819,28826,28923,29028,29030,29068,29074,29101,29356,29452,29822,29829,29881,29887,29938,30709,30750,30764,30766,30767,30769,30869,30976,31062,31068,31092]]],["mine",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28349]]],["my",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28236]]],["of",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28338]]],["to",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30140]]]]},{"k":"G1701","v":[["mockings",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30208]]]]},{"k":"G1702","v":[["*",[13,13,[[39,5,5,0,5,[[930,1,1,0,1],[948,1,1,1,2],[955,3,3,2,5]]],[40,3,3,5,8,[[966,1,1,5,6],[971,2,2,6,8]]],[41,5,5,8,13,[[986,1,1,8,9],[990,1,1,9,10],[994,1,1,10,11],[995,2,2,11,13]]]],[23185,23811,24158,24160,24170,24622,24846,24857,25582,25720,25927,25946,25971]]],["mock",[3,3,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[986,1,1,2,3]]]],[23811,24622,25582]]],["mocked",[8,8,[[39,3,3,0,3,[[930,1,1,0,1],[955,2,2,1,3]]],[40,1,1,3,4,[[971,1,1,3,4]]],[41,4,4,4,8,[[990,1,1,4,5],[994,1,1,5,6],[995,2,2,6,8]]]],[23185,24158,24160,24846,25720,25927,25946,25971]]],["mocking",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24170,24857]]]]},{"k":"G1703","v":[["*",[2,2,[[60,1,1,0,1,[[1158,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[30525,30690]]],["mockers",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30690]]],["scoffers",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30525]]]]},{"k":"G1704","v":[["in",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28914]]]]},{"k":"G1705","v":[["*",[5,5,[[41,2,2,0,2,[[973,1,1,0,1],[978,1,1,1,2]]],[42,1,1,2,3,[[1002,1,1,2,3]]],[43,1,1,3,4,[[1031,1,1,3,4]]],[44,1,1,4,5,[[1060,1,1,4,5]]]],[24946,25171,26269,27431,28327]]],["filled",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[44,1,1,2,3,[[1060,1,1,2,3]]]],[24946,26269,28327]]],["filling",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27431]]],["full",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25171]]]]},{"k":"G1706","v":[["*",[7,7,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,2,2,1,3,[[982,1,1,1,2],[986,1,1,2,3]]],[53,3,3,3,6,[[1121,2,2,3,5],[1124,1,1,5,6]]],[57,1,1,6,7,[[1142,1,1,6,7]]]],[23500,25399,25558,29737,29738,29797,30164]]],["fall",[5,5,[[39,1,1,0,1,[[940,1,1,0,1]]],[53,3,3,1,4,[[1121,2,2,1,3],[1124,1,1,3,4]]],[57,1,1,4,5,[[1142,1,1,4,5]]]],[23500,29737,29738,29797,30164]]],["fallen",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25558]]],["fell",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25399]]]]},{"k":"G1707","v":[["*",[2,2,[[54,1,1,0,1,[[1126,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[29831,30520]]],["entangled",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30520]]],["with",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29831]]]]},{"k":"G1708","v":[["plaiting",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30427]]]]},{"k":"G1709","v":[["out",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27217]]]]},{"k":"G1710","v":[["*",[2,2,[[58,1,1,0,1,[[1149,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[30350,30503]]],["merchandise",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30503]]],["sell",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30350]]]]},{"k":"G1711","v":[["merchandise",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23877]]]]},{"k":"G1712","v":[["merchandise",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26111]]]]},{"k":"G1713","v":[["*",[5,5,[[39,1,1,0,1,[[941,1,1,0,1]]],[65,4,4,1,5,[[1184,4,4,1,5]]]],[23584,30996,31004,31008,31016]]],["merchant",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23584]]],["merchants",[4,4,[[65,4,4,0,4,[[1184,4,4,0,4]]]],[30996,31004,31008,31016]]]]},{"k":"G1714","v":[["up",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23879]]]]},{"k":"G1715","v":[["*",[48,45,[[39,18,16,0,16,[[933,2,2,0,2],[934,2,2,2,4],[935,1,1,4,5],[938,4,2,5,7],[939,2,2,7,9],[945,1,1,9,10],[946,1,1,10,11],[951,1,1,11,12],[953,1,1,12,13],[954,1,1,13,14],[955,2,2,14,16]]],[40,2,2,16,18,[[957,1,1,16,17],[965,1,1,17,18]]],[41,10,9,18,27,[[977,1,1,18,19],[979,1,1,19,20],[982,1,1,20,21],[984,2,1,21,22],[986,1,1,22,23],[991,3,3,23,26],[993,1,1,26,27]]],[42,6,6,27,33,[[997,3,3,27,30],[999,1,1,30,31],[1006,1,1,31,32],[1008,1,1,32,33]]],[43,1,1,33,34,[[1035,1,1,33,34]]],[46,1,1,34,35,[[1082,1,1,34,35]]],[47,1,1,35,36,[[1092,1,1,35,36]]],[49,1,1,36,37,[[1105,1,1,36,37]]],[51,4,4,37,41,[[1111,1,1,37,38],[1112,1,1,38,39],[1113,2,2,39,41]]],[61,1,1,41,42,[[1161,1,1,41,42]]],[65,3,3,42,45,[[1170,1,1,42,43],[1185,1,1,43,44],[1188,1,1,44,45]]]],[23250,23258,23283,23284,23322,23449,23450,23469,23485,23702,23741,23931,24040,24124,24140,24158,24217,24540,25126,25222,25384,25467,25555,25735,25758,25759,25862,26059,26071,26074,26148,26485,26617,27574,28887,29095,29434,29563,29589,29599,29603,30598,30774,31027,31088]]],["+",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[23485,25384]]],["against",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23931]]],["at",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31027]]],["before",[41,38,[[39,15,13,0,13,[[933,2,2,0,2],[934,2,2,2,4],[935,1,1,4,5],[938,4,2,5,7],[939,1,1,7,8],[945,1,1,8,9],[953,1,1,9,10],[954,1,1,10,11],[955,2,2,11,13]]],[40,2,2,13,15,[[957,1,1,13,14],[965,1,1,14,15]]],[41,9,8,15,23,[[977,1,1,15,16],[979,1,1,16,17],[984,2,1,17,18],[986,1,1,18,19],[991,3,3,19,22],[993,1,1,22,23]]],[42,6,6,23,29,[[997,3,3,23,26],[999,1,1,26,27],[1006,1,1,27,28],[1008,1,1,28,29]]],[43,1,1,29,30,[[1035,1,1,29,30]]],[46,1,1,30,31,[[1082,1,1,30,31]]],[47,1,1,31,32,[[1092,1,1,31,32]]],[49,1,1,32,33,[[1105,1,1,32,33]]],[51,2,2,33,35,[[1113,2,2,33,35]]],[61,1,1,35,36,[[1161,1,1,35,36]]],[65,2,2,36,38,[[1170,1,1,36,37],[1188,1,1,37,38]]]],[23250,23258,23283,23284,23322,23449,23450,23469,23702,24040,24124,24140,24158,24217,24540,25126,25222,25467,25555,25735,25758,25759,25862,26059,26071,26074,26148,26485,26617,27574,28887,29095,29434,29599,29603,30598,30774,31088]]],["of",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23741]]],["presence",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29589]]],["sight",[1,1,[[51,1,1,0,1,[[1111,1,1,0,1]]]],[29563]]]]},{"k":"G1716","v":[["*",[6,6,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,3,3,2,5,[[966,1,1,2,3],[970,1,1,3,4],[971,1,1,4,5]]],[41,1,1,5,6,[[990,1,1,5,6]]]],[24121,24159,24622,24819,24845,25720]]],["on",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]]],[24819,25720]]],["spit",[2,2,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]]],[24121,24159]]],["upon",[2,2,[[40,2,2,0,2,[[966,1,1,0,1],[971,1,1,1,2]]]],[24622,24845]]]]},{"k":"G1717","v":[["*",[2,2,[[43,1,1,0,1,[[1027,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]]],[27299,28208]]],["+",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27299]]],["manifest",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28208]]]]},{"k":"G1718","v":[["*",[10,10,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,2,2,1,3,[[1010,2,2,1,3]]],[43,5,5,3,8,[[1040,2,2,3,5],[1041,1,1,5,6],[1042,2,2,6,8]]],[57,2,2,8,10,[[1141,1,1,8,9],[1143,1,1,9,10]]]],[24182,26689,26690,27749,27756,27770,27798,27811,30129,30186]]],["appear",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30129]]],["appeared",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24182]]],["informed",[3,3,[[43,3,3,0,3,[[1041,1,1,0,1],[1042,2,2,1,3]]]],[27770,27798,27811]]],["manifest",[2,2,[[42,2,2,0,2,[[1010,2,2,0,2]]]],[26689,26690]]],["plainly",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30186]]],["shewed",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27756]]],["signify",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27749]]]]},{"k":"G1719","v":[["*",[6,6,[[41,2,2,0,2,[[996,2,2,0,2]]],[43,3,3,2,5,[[1027,1,1,2,3],[1039,1,1,3,4],[1041,1,1,4,5]]],[65,1,1,5,6,[[1177,1,1,5,6]]]],[25996,26028,27263,27713,27794,30885]]],["+",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]]],[26028,27794]]],["affrighted",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30885]]],["afraid",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,2,2,1,3,[[1027,1,1,1,2],[1039,1,1,2,3]]]],[25996,27263,27713]]]]},{"k":"G1720","v":[["on",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26889]]]]},{"k":"G1721","v":[["engrafted",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30287]]]]},{"k":"G1722","v":[["*",[2720,2073,[[39,296,235,0,235,[[929,3,3,0,3],[930,10,8,3,11],[931,9,7,11,18],[932,6,4,18,22],[933,13,12,22,34],[934,20,12,34,46],[935,10,8,46,54],[936,6,6,54,60],[937,9,8,60,68],[938,14,11,68,79],[939,17,12,79,91],[940,18,14,91,105],[941,20,18,105,123],[942,7,7,123,130],[943,2,2,130,132],[944,7,6,132,138],[945,4,4,138,142],[946,12,9,142,151],[947,2,2,151,153],[948,7,6,153,159],[949,19,16,159,175],[950,12,9,175,184],[951,21,11,184,195],[952,17,14,195,209],[953,10,10,209,219],[954,15,11,219,230],[955,5,4,230,234],[956,1,1,234,235]]],[40,140,117,235,352,[[957,16,14,235,249],[958,9,7,249,256],[959,2,2,256,258],[960,11,10,258,268],[961,11,9,268,277],[962,13,11,277,288],[964,7,6,288,294],[965,12,8,294,302],[966,9,7,302,309],[967,12,11,309,320],[968,12,9,320,329],[969,8,7,329,336],[970,10,8,336,344],[971,5,5,344,349],[972,3,3,349,352]]],[41,329,264,352,616,[[973,31,29,352,381],[974,27,22,381,403],[975,9,8,403,411],[976,21,19,411,430],[977,8,8,430,438],[978,13,8,438,446],[979,16,11,446,457],[980,12,9,457,466],[981,9,8,466,474],[982,14,11,474,485],[983,14,11,485,496],[984,19,15,496,511],[985,16,12,511,523],[986,5,5,523,528],[987,3,3,528,531],[988,13,8,531,539],[989,9,6,539,545],[990,7,6,545,551],[991,13,10,551,561],[992,11,7,561,568],[993,15,10,568,578],[994,14,13,578,591],[995,15,13,591,604],[996,15,12,604,616]]],[42,222,168,616,784,[[997,14,13,616,629],[998,9,7,629,636],[999,5,5,636,641],[1000,16,12,641,653],[1001,19,16,653,669],[1002,11,9,669,678],[1003,15,12,678,690],[1004,16,12,690,702],[1005,5,5,702,707],[1006,8,6,707,713],[1007,13,11,713,724],[1008,6,6,724,730],[1009,7,5,730,735],[1010,16,9,735,744],[1011,18,12,744,756],[1012,10,6,756,762],[1013,17,9,762,771],[1014,6,4,771,775],[1015,6,4,775,779],[1016,4,4,779,783],[1017,1,1,783,784]]],[43,269,217,784,1001,[[1018,12,9,784,793],[1019,9,8,793,801],[1020,1,1,801,802],[1021,13,8,802,810],[1022,14,11,810,821],[1023,5,4,821,825],[1024,35,23,825,848],[1025,7,6,848,854],[1026,21,17,854,871],[1027,11,9,871,880],[1028,12,10,880,890],[1029,5,4,890,894],[1030,16,13,894,907],[1031,5,5,907,912],[1032,6,6,912,918],[1033,8,8,918,926],[1034,15,10,926,936],[1035,7,7,936,943],[1036,5,5,943,948],[1037,11,11,948,959],[1038,5,5,959,964],[1039,5,3,964,967],[1040,4,4,967,971],[1041,8,6,971,977],[1042,6,4,977,981],[1043,12,10,981,991],[1044,4,4,991,995],[1045,7,6,995,1001]]],[44,170,133,1001,1134,[[1046,26,20,1001,1021],[1047,15,12,1021,1033],[1048,8,7,1033,1040],[1049,6,3,1040,1043],[1050,10,10,1043,1053],[1051,6,5,1053,1058],[1052,11,7,1058,1065],[1053,19,14,1065,1079],[1054,10,8,1079,1087],[1055,6,4,1087,1091],[1056,3,3,1091,1094],[1057,10,6,1094,1100],[1058,3,2,1100,1102],[1059,6,6,1102,1108],[1060,15,13,1108,1121],[1061,16,13,1121,1134]]],[45,171,121,1134,1255,[[1062,18,12,1134,1146],[1063,13,8,1146,1154],[1064,8,7,1154,1161],[1065,13,8,1161,1169],[1066,8,5,1169,1174],[1067,9,7,1174,1181],[1068,14,9,1181,1190],[1069,4,4,1190,1194],[1070,6,6,1194,1200],[1071,6,4,1200,1204],[1072,11,9,1204,1213],[1073,9,7,1213,1220],[1074,1,1,1220,1221],[1075,17,10,1221,1231],[1076,26,16,1231,1247],[1077,8,8,1247,1255]]],[46,166,105,1255,1360,[[1078,16,10,1255,1265],[1079,8,6,1265,1271],[1080,11,8,1271,1279],[1081,12,9,1279,1288],[1082,10,9,1288,1297],[1083,24,8,1297,1305],[1084,13,10,1305,1315],[1085,11,9,1315,1324],[1086,4,4,1324,1328],[1087,9,8,1328,1336],[1088,27,13,1336,1349],[1089,15,7,1349,1356],[1090,6,4,1356,1360]]],[47,43,36,1360,1396,[[1091,8,6,1360,1366],[1092,6,4,1366,1370],[1093,11,10,1370,1380],[1094,5,5,1380,1385],[1095,5,4,1385,1389],[1096,8,7,1389,1396]]],[48,126,87,1396,1483,[[1097,28,17,1396,1413],[1098,28,14,1413,1427],[1099,18,14,1427,1441],[1100,19,15,1441,1456],[1101,12,11,1456,1467],[1102,21,16,1467,1483]]],[49,66,50,1483,1533,[[1103,23,16,1483,1499],[1104,15,11,1499,1510],[1105,10,8,1510,1518],[1106,18,15,1518,1533]]],[50,88,58,1533,1591,[[1107,31,22,1533,1555],[1108,27,16,1555,1571],[1109,17,10,1571,1581],[1110,13,10,1581,1591]]],[51,52,37,1591,1628,[[1111,10,5,1591,1596],[1112,12,9,1596,1605],[1113,6,5,1605,1610],[1114,13,10,1610,1620],[1115,11,8,1620,1628]]],[52,27,21,1628,1649,[[1116,12,7,1628,1635],[1117,8,7,1635,1642],[1118,7,7,1642,1649]]],[53,46,30,1649,1679,[[1119,7,7,1649,1656],[1120,11,7,1656,1663],[1121,11,6,1663,1669],[1122,11,5,1669,1674],[1123,3,3,1674,1677],[1124,3,2,1677,1679]]],[54,37,28,1679,1707,[[1125,15,10,1679,1689],[1126,7,6,1689,1695],[1127,8,6,1695,1701],[1128,7,6,1701,1707]]],[55,13,13,1707,1720,[[1129,5,5,1707,1712],[1130,5,5,1712,1717],[1131,3,3,1717,1720]]],[56,10,7,1720,1727,[[1132,10,7,1720,1727]]],[57,61,54,1727,1781,[[1133,4,3,1727,1730],[1134,2,2,1730,1732],[1135,8,7,1732,1739],[1136,4,4,1739,1743],[1137,2,2,1743,1745],[1138,2,2,1745,1747],[1139,1,1,1747,1748],[1140,5,3,1748,1751],[1141,5,5,1751,1756],[1142,11,10,1756,1766],[1143,9,8,1766,1774],[1144,2,2,1774,1776],[1145,6,5,1776,1781]]],[58,37,32,1781,1813,[[1146,11,11,1781,1792],[1147,7,6,1792,1798],[1148,8,6,1798,1804],[1149,5,4,1804,1808],[1150,6,5,1808,1813]]],[59,51,42,1813,1855,[[1151,14,12,1813,1825],[1152,9,6,1825,1831],[1153,10,7,1831,1838],[1154,10,10,1838,1848],[1155,8,7,1848,1855]]],[60,43,27,1855,1882,[[1156,17,10,1855,1865],[1157,14,10,1865,1875],[1158,12,7,1875,1882]]],[61,80,48,1882,1930,[[1159,6,5,1882,1887],[1160,26,14,1887,1901],[1161,13,10,1901,1911],[1162,25,11,1911,1922],[1163,10,8,1922,1930]]],[62,8,7,1930,1937,[[1164,8,7,1930,1937]]],[63,3,3,1937,1940,[[1165,3,3,1937,1940]]],[64,9,9,1940,1949,[[1166,9,9,1940,1949]]],[65,157,124,1949,2073,[[1167,14,10,1949,1959],[1168,11,9,1959,1968],[1169,8,6,1968,1974],[1170,5,4,1974,1978],[1171,7,4,1978,1982],[1172,5,3,1982,1985],[1173,3,3,1985,1988],[1174,3,3,1988,1991],[1175,8,6,1991,1997],[1176,9,6,1997,2003],[1177,7,6,2003,2009],[1178,8,8,2009,2017],[1179,5,4,2017,2021],[1180,11,10,2021,2031],[1181,3,2,2031,2033],[1182,2,2,2033,2035],[1183,3,3,2035,2038],[1184,16,10,2038,2048],[1185,11,8,2048,2056],[1186,6,5,2056,2061],[1187,7,7,2061,2068],[1188,5,5,2068,2073]]]],[23162,23164,23167,23170,23171,23174,23175,23178,23185,23187,23188,23193,23195,23198,23201,23203,23204,23209,23222,23225,23230,23232,23246,23247,23249,23250,23253,23259,23262,23268,23269,23270,23279,23282,23283,23284,23286,23287,23288,23289,23291,23292,23300,23302,23305,23311,23318,23319,23320,23322,23327,23331,23337,23338,23351,23355,23356,23358,23369,23377,23382,23383,23389,23400,23410,23412,23413,23414,23428,23432,23433,23434,23436,23437,23440,23444,23445,23449,23450,23460,23461,23465,23467,23470,23475,23479,23480,23481,23482,23483,23484,23490,23491,23494,23508,23510,23513,23516,23517,23521,23525,23529,23530,23531,23539,23542,23549,23552,23558,23560,23563,23566,23569,23570,23571,23573,23574,23579,23582,23583,23588,23593,23596,23598,23599,23600,23603,23607,23610,23630,23665,23666,23679,23680,23689,23691,23699,23700,23705,23712,23721,23722,23728,23729,23731,23733,23737,23741,23745,23746,23747,23783,23790,23795,23807,23809,23813,23818,23819,23834,23835,23838,23840,23841,23845,23848,23849,23850,23853,23854,23858,23859,23864,23867,23868,23873,23887,23888,23900,23902,23908,23909,23912,23915,23924,23925,23927,23934,23936,23938,23939,23940,23948,23952,23957,23971,23972,23973,23975,23976,23977,23983,23987,23995,23997,23998,24002,24005,24007,24012,24021,24024,24026,24033,24039,24044,24047,24051,24052,24059,24060,24067,24077,24083,24085,24087,24088,24106,24109,24123,24134,24169,24185,24189,24213,24217,24218,24219,24220,24223,24224,24226,24228,24231,24234,24235,24238,24254,24260,24266,24268,24275,24279,24280,24283,24284,24310,24311,24324,24325,24334,24338,24340,24347,24351,24353,24358,24359,24366,24367,24369,24377,24384,24385,24389,24391,24394,24409,24410,24411,24418,24421,24424,24434,24436,24454,24458,24463,24501,24503,24514,24526,24527,24538,24539,24567,24571,24572,24574,24576,24579,24588,24598,24609,24618,24620,24625,24631,24640,24649,24650,24653,24655,24663,24665,24666,24667,24668,24669,24673,24674,24684,24696,24698,24699,24708,24709,24711,24712,24728,24731,24734,24741,24742,24743,24749,24755,24756,24757,24779,24781,24784,24803,24820,24833,24855,24866,24867,24872,24878,24885,24890,24894,24898,24899,24900,24901,24910,24911,24914,24915,24918,24919,24921,24924,24929,24932,24934,24935,24937,24944,24952,24954,24958,24959,24962,24968,24970,24971,24972,24973,24974,24980,24981,24984,24985,24987,24989,24992,24994,24996,24997,24998,25000,25002,25007,25009,25011,25016,25017,25019,25022,25024,25026,25029,25033,25040,25041,25042,25045,25047,25064,25065,25068,25077,25078,25079,25081,25083,25084,25086,25087,25088,25090,25091,25094,25095,25096,25099,25107,25114,25119,25123,25124,25129,25136,25141,25142,25147,25148,25152,25153,25158,25169,25187,25188,25204,25211,25212,25216,25218,25220,25223,25227,25232,25234,25244,25246,25252,25255,25258,25260,25267,25272,25277,25288,25313,25327,25332,25337,25338,25347,25349,25358,25366,25370,25372,25375,25376,25377,25380,25383,25384,25389,25394,25406,25407,25420,25423,25424,25425,25426,25436,25437,25440,25448,25460,25462,25467,25471,25476,25486,25487,25492,25497,25501,25504,25505,25510,25511,25517,25519,25522,25524,25525,25528,25532,25537,25544,25546,25547,25549,25553,25558,25567,25568,25584,25587,25592,25595,25613,25623,25630,25631,25632,25635,25643,25644,25645,25657,25675,25677,25679,25682,25687,25690,25691,25692,25696,25710,25718,25736,25748,25751,25761,25767,25769,25773,25775,25776,25778,25780,25781,25787,25789,25812,25821,25825,25832,25845,25847,25849,25851,25853,25860,25862,25863,25864,25871,25880,25884,25888,25890,25891,25892,25894,25901,25908,25913,25917,25919,25939,25942,25944,25947,25949,25954,25957,25964,25966,25975,25977,25978,25988,25995,25997,26009,26010,26018,26023,26026,26027,26029,26035,26040,26044,26045,26046,26048,26049,26054,26058,26067,26070,26072,26075,26077,26089,26091,26096,26106,26109,26114,26115,26118,26120,26133,26134,26141,26143,26155,26170,26176,26177,26179,26180,26187,26193,26200,26201,26202,26208,26209,26212,26213,26214,26215,26217,26219,26223,26224,26226,26236,26238,26245,26248,26249,26252,26253,26267,26288,26296,26302,26306,26310,26313,26316,26318,26329,26332,26337,26338,26339,26340,26346,26350,26351,26356,26365,26371,26384,26386,26390,26393,26398,26401,26402,26405,26412,26416,26418,26425,26443,26445,26456,26470,26474,26500,26503,26504,26506,26515,26519,26529,26532,26533,26540,26543,26547,26553,26554,26561,26577,26579,26593,26600,26605,26615,26626,26628,26631,26653,26661,26662,26665,26670,26678,26679,26681,26682,26685,26688,26694,26698,26701,26703,26704,26705,26706,26707,26708,26709,26710,26715,26723,26724,26749,26750,26751,26752,26756,26759,26769,26770,26771,26772,26776,26778,26780,26782,26785,26805,26811,26823,26824,26829,26831,26856,26866,26879,26892,26897,26898,26918,26926,26928,26929,26930,26931,26933,26938,26943,26944,26954,26957,26966,26967,26968,26971,26978,26995,27002,27024,27029,27031,27032,27034,27046,27053,27056,27063,27071,27077,27079,27081,27082,27084,27086,27093,27096,27101,27102,27108,27109,27116,27118,27120,27121,27122,27123,27128,27129,27132,27133,27136,27138,27145,27146,27149,27150,27151,27152,27154,27157,27158,27160,27161,27164,27177,27184,27185,27190,27197,27209,27226,27227,27228,27229,27233,27235,27236,27237,27238,27241,27243,27244,27245,27252,27253,27254,27259,27260,27262,27271,27276,27289,27291,27294,27298,27307,27312,27318,27320,27321,27322,27323,27329,27333,27334,27336,27342,27344,27348,27355,27363,27367,27377,27379,27380,27381,27388,27389,27395,27397,27401,27402,27403,27415,27422,27429,27430,27439,27449,27454,27463,27464,27477,27478,27485,27486,27487,27489,27495,27501,27515,27519,27534,27536,27539,27540,27545,27546,27547,27551,27554,27557,27561,27566,27567,27568,27575,27581,27583,27586,27594,27601,27606,27624,27631,27633,27634,27636,27641,27642,27645,27648,27651,27654,27658,27675,27683,27691,27693,27698,27707,27721,27722,27740,27743,27745,27769,27780,27781,27785,27787,27789,27790,27800,27801,27802,27820,27827,27830,27833,27835,27841,27843,27844,27849,27851,27852,27876,27882,27886,27892,27906,27908,27910,27917,27928,27929,27932,27934,27935,27936,27937,27938,27939,27940,27942,27943,27945,27947,27948,27949,27951,27953,27954,27955,27957,27958,27963,27967,27974,27977,27978,27979,27981,27982,27985,27986,27990,27991,27995,27998,28007,28010,28015,28016,28017,28032,28033,28034,28049,28050,28052,28056,28057,28058,28060,28062,28064,28068,28070,28072,28079,28080,28091,28096,28097,28099,28108,28109,28111,28114,28117,28118,28119,28120,28124,28125,28126,28127,28131,28139,28145,28150,28153,28155,28156,28162,28172,28177,28180,28181,28183,28188,28193,28194,28196,28197,28211,28214,28226,28248,28249,28250,28252,28253,28266,28275,28279,28285,28294,28297,28298,28301,28302,28308,28309,28312,28316,28319,28320,28322,28326,28329,28332,28333,28334,28335,28337,28338,28339,28343,28344,28345,28346,28347,28348,28349,28352,28356,28358,28365,28367,28368,28369,28370,28371,28373,28374,28380,28384,28393,28394,28396,28397,28398,28399,28400,28401,28405,28407,28411,28413,28423,28426,28428,28429,28431,28435,28437,28439,28443,28448,28450,28453,28454,28455,28458,28459,28462,28463,28469,28471,28472,28474,28478,28486,28487,28501,28502,28504,28505,28507,28509,28511,28524,28526,28531,28532,28534,28537,28541,28542,28549,28555,28558,28564,28569,28572,28575,28592,28611,28613,28618,28619,28621,28622,28625,28630,28634,28637,28640,28643,28647,28652,28659,28662,28677,28684,28688,28689,28697,28699,28703,28706,28711,28712,28713,28719,28721,28730,28735,28736,28737,28740,28741,28746,28749,28750,28759,28760,28761,28770,28776,28783,28784,28787,28789,28790,28795,28796,28800,28801,28804,28806,28808,28809,28812,28814,28819,28820,28822,28825,28834,28836,28838,28839,28841,28843,28844,28848,28849,28850,28851,28852,28855,28861,28862,28863,28865,28866,28867,28869,28870,28871,28878,28879,28881,28883,28888,28889,28894,28896,28898,28900,28901,28902,28903,28904,28905,28910,28914,28917,28919,28921,28922,28923,28924,28925,28927,28930,28932,28933,28934,28939,28942,28946,28948,28950,28952,28954,28959,28960,28964,28967,28972,28974,28977,28983,28985,28986,28987,28988,28992,28995,28998,28999,29001,29006,29010,29012,29014,29015,29016,29021,29022,29024,29025,29027,29031,29032,29034,29041,29046,29047,29048,29055,29063,29070,29071,29073,29079,29081,29083,29085,29098,29101,29103,29107,29110,29112,29113,29114,29116,29121,29128,29130,29145,29149,29150,29151,29156,29166,29168,29172,29176,29189,29194,29200,29201,29202,29203,29205,29207,29209,29210,29212,29213,29214,29215,29216,29217,29218,29219,29221,29223,29224,29226,29227,29229,29231,29232,29233,29235,29236,29239,29240,29241,29242,29244,29245,29247,29250,29251,29254,29255,29256,29257,29259,29260,29261,29262,29263,29264,29266,29268,29271,29272,29273,29274,29275,29276,29278,29286,29287,29288,29289,29290,29291,29293,29296,29302,29304,29306,29307,29309,29312,29313,29322,29323,29324,29325,29328,29330,29338,29339,29341,29342,29346,29347,29349,29350,29351,29352,29353,29355,29356,29357,29358,29361,29362,29365,29367,29368,29369,29370,29374,29375,29379,29381,29383,29385,29387,29388,29389,29391,29392,29396,29397,29398,29401,29403,29404,29406,29410,29415,29420,29422,29424,29425,29427,29430,29435,29440,29441,29443,29444,29445,29446,29448,29449,29451,29452,29453,29454,29455,29457,29458,29461,29463,29467,29469,29470,29471,29473,29474,29475,29476,29477,29479,29481,29482,29483,29484,29485,29486,29487,29488,29489,29492,29493,29494,29495,29496,29497,29498,29500,29501,29503,29504,29505,29506,29507,29509,29510,29512,29514,29517,29518,29520,29521,29524,29528,29532,29533,29534,29535,29539,29543,29544,29547,29548,29549,29554,29555,29557,29558,29559,29561,29565,29566,29567,29568,29572,29573,29575,29576,29577,29583,29584,29587,29589,29591,29592,29593,29598,29603,29604,29607,29608,29609,29610,29613,29618,29619,29620,29621,29623,29624,29625,29633,29634,29639,29644,29647,29650,29653,29656,29657,29659,29660,29661,29667,29670,29671,29673,29674,29677,29678,29682,29684,29685,29686,29689,29694,29695,29698,29699,29700,29709,29710,29712,29714,29718,29723,29725,29727,29728,29730,29731,29735,29740,29742,29744,29746,29747,29748,29749,29759,29761,29762,29765,29773,29780,29805,29806,29810,29812,29814,29815,29818,29822,29823,29824,29826,29827,29828,29834,29836,29837,29847,29852,29854,29864,29865,29867,29868,29869,29872,29875,29878,29883,29886,29890,29895,29897,29898,29901,29905,29911,29915,29917,29918,29920,29926,29928,29938,29944,29946,29948,29951,29954,29958,29961,29964,29965,29966,29989,29995,29997,30000,30003,30006,30007,30010,30012,30017,30019,30021,30025,30036,30037,30061,30062,30074,30093,30097,30101,30107,30109,30127,30128,30130,30136,30140,30143,30145,30152,30155,30162,30165,30167,30171,30174,30181,30190,30191,30198,30206,30209,30210,30214,30235,30244,30245,30259,30261,30262,30267,30272,30274,30275,30276,30277,30287,30289,30291,30292,30293,30294,30295,30297,30298,30303,30309,30321,30325,30328,30332,30333,30337,30338,30340,30342,30353,30357,30359,30367,30368,30373,30376,30378,30379,30380,30381,30385,30386,30387,30388,30389,30391,30396,30401,30405,30411,30417,30421,30423,30426,30428,30439,30440,30443,30444,30446,30447,30448,30449,30450,30457,30458,30459,30460,30462,30465,30466,30467,30471,30474,30475,30478,30479,30480,30481,30483,30484,30485,30486,30491,30492,30497,30498,30501,30503,30507,30508,30510,30512,30513,30516,30518,30520,30523,30532,30533,30535,30536,30538,30540,30545,30546,30547,30548,30550,30553,30554,30555,30556,30558,30559,30560,30561,30564,30565,30566,30574,30577,30578,30584,30585,30588,30589,30593,30594,30595,30596,30598,30603,30605,30606,30607,30612,30613,30615,30616,30618,30619,30620,30621,30626,30630,30631,30632,30634,30635,30643,30644,30646,30647,30648,30649,30651,30652,30654,30659,30661,30662,30673,30682,30684,30686,30690,30692,30693,30695,30696,30698,30700,30701,30702,30706,30707,30708,30710,30712,30713,30718,30724,30729,30730,30733,30735,30740,30741,30744,30747,30750,30751,30753,30758,30767,30769,30770,30772,30774,30782,30785,30788,30792,30798,30799,30801,30819,30824,30825,30828,30836,30840,30846,30850,30851,30857,30859,30860,30863,30867,30868,30869,30870,30871,30873,30878,30884,30885,30887,30891,30892,30893,30894,30896,30898,30899,30901,30903,30914,30916,30918,30920,30928,30931,30932,30933,30935,30936,30939,30940,30941,30943,30947,30951,30957,30962,30978,30979,30991,30995,30999,31000,31001,31003,31009,31012,31015,31016,31017,31018,31019,31028,31031,31032,31034,31037,31038,31044,31046,31050,31051,31053,31061,31063,31067,31075,31076,31077,31080,31082,31083,31086,31098,31099]]],["+",[174,164,[[39,15,14,0,14,[[929,2,2,0,2],[933,1,1,2,3],[934,3,3,3,6],[938,2,1,6,7],[939,1,1,7,8],[942,1,1,8,9],[949,1,1,9,10],[952,1,1,10,11],[953,1,1,11,12],[954,2,2,12,14]]],[40,6,5,14,19,[[958,1,1,14,15],[965,2,1,15,16],[967,1,1,16,17],[969,1,1,17,18],[970,1,1,18,19]]],[41,21,21,19,40,[[973,1,1,19,20],[974,2,2,20,22],[977,1,1,22,23],[979,1,1,23,24],[980,2,2,24,26],[982,3,3,26,29],[984,2,2,29,31],[985,1,1,31,32],[986,1,1,32,33],[990,1,1,33,34],[991,1,1,34,35],[993,2,2,35,37],[994,3,3,37,40]]],[42,8,8,40,48,[[1000,2,2,40,42],[1001,1,1,42,43],[1003,1,1,43,44],[1005,1,1,44,45],[1009,1,1,45,46],[1011,1,1,46,47],[1015,1,1,47,48]]],[43,26,25,48,73,[[1018,2,2,48,50],[1019,1,1,50,51],[1021,2,2,51,53],[1024,1,1,53,54],[1026,1,1,54,55],[1027,1,1,55,56],[1028,2,2,56,58],[1029,1,1,58,59],[1030,1,1,59,60],[1031,1,1,60,61],[1032,1,1,61,62],[1034,2,2,62,64],[1037,1,1,64,65],[1039,1,1,65,66],[1041,2,2,66,68],[1042,1,1,68,69],[1043,5,4,69,73]]],[44,17,16,73,89,[[1046,3,3,73,76],[1047,4,3,76,79],[1049,2,2,79,81],[1050,1,1,81,82],[1051,1,1,82,83],[1052,1,1,83,84],[1053,1,1,84,85],[1058,1,1,85,86],[1059,1,1,86,87],[1060,1,1,87,88],[1061,1,1,88,89]]],[45,9,8,89,97,[[1065,1,1,89,90],[1068,3,2,90,92],[1074,1,1,92,93],[1075,1,1,93,94],[1076,2,2,94,96],[1077,1,1,96,97]]],[46,10,8,97,105,[[1080,4,3,97,100],[1085,1,1,100,101],[1088,5,4,101,105]]],[48,9,9,105,114,[[1097,1,1,105,106],[1098,2,2,106,108],[1100,2,2,108,110],[1101,1,1,110,111],[1102,3,3,111,114]]],[49,2,2,114,116,[[1103,1,1,114,115],[1106,1,1,115,116]]],[50,5,5,116,121,[[1107,1,1,116,117],[1108,4,4,117,121]]],[51,4,4,121,125,[[1112,3,3,121,124],[1115,1,1,124,125]]],[54,1,1,125,126,[[1126,1,1,125,126]]],[55,1,1,126,127,[[1129,1,1,126,127]]],[57,4,4,127,131,[[1138,1,1,127,128],[1141,2,2,128,130],[1142,1,1,130,131]]],[58,4,3,131,134,[[1146,1,1,131,132],[1148,2,1,132,133],[1150,1,1,133,134]]],[59,6,6,134,140,[[1151,1,1,134,135],[1152,2,2,135,137],[1153,1,1,137,138],[1154,2,2,138,140]]],[60,4,4,140,144,[[1156,1,1,140,141],[1157,1,1,141,142],[1158,2,2,142,144]]],[61,9,9,144,153,[[1160,2,2,144,146],[1161,3,3,146,149],[1162,4,4,149,153]]],[65,13,11,153,164,[[1167,2,2,153,155],[1168,1,1,155,156],[1176,3,1,156,157],[1177,1,1,157,158],[1178,1,1,158,159],[1179,1,1,159,160],[1184,2,2,160,162],[1187,1,1,162,163],[1188,1,1,163,164]]]],[23162,23167,23247,23286,23288,23300,23449,23479,23603,23845,23976,24021,24085,24088,24279,24588,24653,24734,24781,24971,25009,25017,25141,25220,25246,25252,25366,25372,25394,25460,25467,25524,25587,25696,25776,25849,25862,25871,25891,25919,26193,26208,26217,26332,26470,26665,26707,26866,26943,26944,26957,27034,27053,27149,27254,27271,27318,27321,27344,27377,27429,27478,27546,27547,27648,27722,27785,27787,27800,27830,27835,27851,27852,27938,27942,27947,27963,27990,27991,28033,28034,28049,28070,28097,28131,28275,28301,28308,28356,28437,28507,28511,28677,28699,28719,28721,28783,28848,28849,28852,28942,28995,29001,29006,29010,29212,29231,29245,29302,29304,29322,29353,29356,29357,29379,29454,29494,29501,29506,29509,29512,29575,29576,29577,29624,29836,29898,30061,30107,30109,30162,30267,30328,30367,30380,30401,30411,30440,30450,30458,30492,30507,30532,30535,30553,30555,30595,30598,30603,30605,30613,30616,30620,30698,30700,30730,30867,30873,30893,30920,30995,31012,31075,31086]]],["Among",[5,5,[[39,2,2,0,2,[[939,1,1,0,1],[955,1,1,1,2]]],[41,1,1,2,3,[[979,1,1,2,3]]],[44,1,1,3,4,[[1046,1,1,3,4]]],[48,1,1,4,5,[[1098,1,1,4,5]]]],[23470,24185,25223,27936,29232]]],["At",[7,7,[[39,4,4,0,4,[[939,1,1,0,1],[940,1,1,1,2],[942,1,1,2,3],[946,1,1,3,4]]],[42,2,2,4,6,[[1010,1,1,4,5],[1012,1,1,5,6]]],[54,1,1,6,7,[[1128,1,1,6,7]]]],[23484,23490,23598,23728,26688,26752,29886]]],["By",[9,9,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[42,1,1,2,3,[[1009,1,1,2,3]]],[43,1,1,3,4,[[1021,1,1,3,4]]],[46,2,2,4,6,[[1083,2,2,4,6]]],[57,1,1,6,7,[[1142,1,1,6,7]]],[59,1,1,7,8,[[1153,1,1,7,8]]],[61,1,1,8,9,[[1163,1,1,8,9]]]],[23849,24668,26665,27029,28904,28905,30143,30443,30626]]],["I",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29356]]],["In",[50,50,[[39,4,4,0,4,[[930,2,2,0,2],[931,1,1,2,3],[954,1,1,3,4]]],[40,3,3,4,7,[[964,1,1,4,5],[968,1,1,5,6],[972,1,1,6,7]]],[41,4,4,7,11,[[973,1,1,7,8],[982,1,1,8,9],[989,1,1,9,10],[993,1,1,10,11]]],[42,7,7,11,18,[[997,2,2,11,13],[1000,1,1,13,14],[1001,1,1,14,15],[1003,1,1,15,16],[1010,1,1,16,17],[1012,1,1,17,18]]],[43,4,4,18,22,[[1020,1,1,18,19],[1024,1,1,19,20],[1025,1,1,20,21],[1045,1,1,21,22]]],[44,2,2,22,24,[[1047,1,1,22,23],[1054,1,1,23,24]]],[45,3,3,24,27,[[1066,1,1,24,25],[1075,1,1,25,26],[1076,1,1,26,27]]],[46,5,5,27,32,[[1081,1,1,27,28],[1083,1,1,28,29],[1084,1,1,29,30],[1088,2,2,30,32]]],[47,1,1,32,33,[[1093,1,1,32,33]]],[48,6,6,33,39,[[1097,3,3,33,36],[1098,2,2,36,38],[1099,1,1,38,39]]],[50,5,5,39,44,[[1107,2,2,39,41],[1108,2,2,41,43],[1109,1,1,43,44]]],[51,1,1,44,45,[[1115,1,1,44,45]]],[52,1,1,45,46,[[1116,1,1,45,46]]],[54,1,1,46,47,[[1126,1,1,46,47]]],[61,2,2,47,49,[[1161,1,1,47,48],[1162,1,1,48,49]]],[65,1,1,49,50,[[1188,1,1,49,50]]]],[23174,23187,23193,24109,24501,24696,24890,24968,25384,25682,25845,26045,26048,26187,26213,26365,26670,26759,27002,27136,27209,27906,27978,28162,28458,28699,28770,28863,28903,28927,29016,29021,29110,29213,29217,29219,29250,29251,29263,29479,29487,29497,29505,29524,29639,29657,29852,30589,30612,31082]]],["On",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23912]]],["The",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25549]]],["Through",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28322]]],["With",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28699]]],["about",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25022]]],["after",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30025]]],["against",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27967]]],["among",[106,100,[[39,10,9,0,9,[[930,1,1,0,1],[932,1,1,1,2],[937,1,1,2,3],[944,2,2,3,5],[948,3,2,5,7],[949,1,1,7,8],[954,1,1,8,9]]],[40,5,4,9,13,[[961,1,1,9,10],[962,1,1,10,11],[966,2,1,11,12],[971,1,1,12,13]]],[41,11,11,13,24,[[973,4,4,13,17],[974,1,1,17,18],[979,1,1,18,19],[981,2,2,19,21],[988,1,1,21,22],[994,2,2,22,24]]],[42,7,7,24,31,[[997,1,1,24,25],[1003,2,2,25,27],[1005,1,1,27,28],[1006,1,1,28,29],[1007,1,1,29,30],[1011,1,1,30,31]]],[43,21,21,31,52,[[1021,2,2,31,33],[1022,1,1,33,34],[1023,1,1,34,35],[1029,1,1,35,36],[1030,1,1,36,37],[1032,3,3,37,40],[1034,1,1,40,41],[1035,1,1,41,42],[1037,2,2,42,44],[1038,2,2,44,46],[1041,1,1,46,47],[1042,2,2,47,49],[1043,2,2,49,51],[1045,1,1,51,52]]],[44,9,8,52,60,[[1046,3,2,52,54],[1047,1,1,54,55],[1053,1,1,55,56],[1056,1,1,56,57],[1057,1,1,57,58],[1060,1,1,58,59],[1061,1,1,59,60]]],[45,15,13,60,73,[[1062,2,2,60,62],[1063,2,2,62,64],[1064,2,2,64,66],[1066,2,1,66,67],[1067,2,2,67,69],[1072,4,3,69,72],[1076,1,1,72,73]]],[46,4,4,73,77,[[1078,1,1,73,74],[1087,1,1,74,75],[1088,1,1,75,76],[1089,1,1,76,77]]],[47,4,4,77,81,[[1091,1,1,77,78],[1092,1,1,78,79],[1093,2,2,79,81]]],[48,2,2,81,83,[[1099,1,1,81,82],[1101,1,1,82,83]]],[49,1,1,83,84,[[1104,1,1,83,84]]],[50,1,1,84,85,[[1107,1,1,84,85]]],[51,3,3,85,88,[[1111,1,1,85,86],[1115,2,2,86,88]]],[52,2,2,88,90,[[1118,2,2,88,90]]],[58,5,5,90,95,[[1146,1,1,90,91],[1148,2,2,91,93],[1149,1,1,93,94],[1150,1,1,94,95]]],[59,3,3,95,98,[[1152,1,1,95,96],[1155,2,2,96,98]]],[60,3,2,98,100,[[1157,3,2,98,100]]]],[23175,23232,23414,23679,23680,23818,23819,23864,24059,24367,24411,24631,24866,24894,24918,24921,24935,25017,25211,25347,25349,25635,25888,25890,26058,26340,26371,26456,26500,26577,26723,27034,27056,27071,27109,27355,27388,27449,27454,27464,27557,27568,27651,27658,27683,27698,27790,27801,27802,27827,27841,27928,27935,27943,27986,28145,28226,28248,28312,28343,28373,28374,28396,28400,28413,28428,28455,28472,28474,28618,28619,28630,28730,28819,28972,29015,29034,29073,29083,29103,29107,29259,29307,29406,29492,29565,29633,29634,29685,29689,30292,30325,30332,30338,30368,30411,30466,30467,30501,30508]]],["an",[3,3,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[42,1,1,2,3,[[1001,1,1,2,3]]]],[24389,25288,26215]]],["and",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[28309,29286]]],["as",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24275]]],["at",[104,98,[[39,5,5,0,5,[[936,1,1,0,1],[939,1,1,1,2],[941,1,1,2,3],[951,1,1,3,4],[952,1,1,4,5]]],[40,2,2,5,7,[[962,1,1,5,6],[968,1,1,6,7]]],[41,12,11,7,18,[[976,1,1,7,8],[981,1,1,8,9],[982,1,1,9,10],[984,1,1,10,11],[985,1,1,11,12],[986,1,1,12,13],[991,1,1,13,14],[992,2,2,14,16],[995,3,2,16,18]]],[42,14,13,18,31,[[998,1,1,18,19],[1000,5,4,19,23],[1001,1,1,23,24],[1002,1,1,24,25],[1003,1,1,25,26],[1006,1,1,26,27],[1007,1,1,27,28],[1008,1,1,28,29],[1014,1,1,29,30],[1017,1,1,30,31]]],[43,30,29,31,60,[[1018,1,1,31,32],[1019,1,1,32,33],[1024,2,2,33,35],[1025,3,2,35,37],[1026,7,7,37,44],[1028,1,1,44,45],[1030,3,3,45,48],[1031,1,1,48,49],[1033,2,2,49,51],[1034,2,2,51,53],[1036,1,1,53,54],[1037,2,2,54,56],[1038,1,1,56,57],[1042,2,2,57,59],[1043,1,1,59,60]]],[44,6,6,60,66,[[1046,1,1,60,61],[1048,1,1,61,62],[1053,1,1,62,63],[1056,1,1,63,64],[1060,1,1,64,65],[1061,1,1,65,66]]],[45,7,7,66,73,[[1062,1,1,66,67],[1072,1,1,67,68],[1075,1,1,68,69],[1076,3,3,69,72],[1077,1,1,72,73]]],[46,2,2,73,75,[[1078,1,1,73,74],[1085,1,1,74,75]]],[48,4,4,75,79,[[1097,2,2,75,77],[1098,1,1,77,78],[1099,1,1,78,79]]],[49,2,2,79,81,[[1103,1,1,79,80],[1104,1,1,80,81]]],[50,2,2,81,83,[[1107,1,1,81,82],[1108,1,1,82,83]]],[51,4,4,83,87,[[1112,2,2,83,85],[1113,2,2,85,87]]],[53,1,1,87,88,[[1119,1,1,87,88]]],[54,8,5,88,93,[[1125,1,1,88,89],[1127,3,1,89,90],[1128,4,3,90,93]]],[57,1,1,93,94,[[1144,1,1,93,94]]],[59,3,3,94,97,[[1151,2,2,94,96],[1155,1,1,96,97]]],[61,1,1,97,98,[[1160,1,1,97,98]]]],[23351,23481,23588,23924,23998,24410,24712,25081,25332,25377,25505,25519,25567,25736,25789,25825,25942,25947,26118,26177,26201,26202,26209,26212,26296,26339,26503,26547,26600,26824,26918,26929,26954,27129,27145,27177,27190,27226,27229,27235,27238,27243,27244,27252,27322,27363,27367,27389,27422,27485,27487,27536,27539,27586,27631,27641,27675,27800,27820,27827,27945,28017,28150,28214,28329,28337,28365,28634,28713,28741,28750,28770,28784,28801,28946,29207,29226,29241,29264,29362,29401,29467,29495,29572,29589,29591,29603,29699,29827,29864,29878,29883,29890,30214,30381,30387,30478,30578]]],["because",[2,2,[[39,2,2,0,2,[[954,2,2,0,2]]]],[24085,24087]]],["before",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27086]]],["between",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27954]]],["by",[130,105,[[39,25,16,0,16,[[933,3,3,0,3],[940,4,3,3,6],[942,1,1,6,7],[945,1,1,7,8],[949,2,2,8,10],[950,1,1,10,11],[951,13,5,11,16]]],[40,14,13,16,29,[[959,1,1,16,17],[960,1,1,17,18],[961,1,1,18,19],[964,2,2,19,21],[965,4,3,21,24],[967,2,2,24,26],[968,2,2,26,28],[970,1,1,28,29]]],[41,8,7,29,36,[[973,1,1,29,30],[974,1,1,30,31],[976,1,1,31,32],[983,2,1,32,33],[992,2,2,33,35],[996,1,1,35,36]]],[42,1,1,36,37,[[1012,1,1,36,37]]],[43,10,8,37,45,[[1018,1,1,37,38],[1021,4,3,38,41],[1024,1,1,41,42],[1030,2,1,42,43],[1034,1,1,43,44],[1037,1,1,44,45]]],[44,8,8,45,53,[[1046,1,1,45,46],[1050,3,3,46,49],[1055,1,1,49,50],[1059,1,1,50,51],[1060,2,2,51,53]]],[45,16,10,53,63,[[1062,2,2,53,55],[1064,1,1,55,56],[1067,2,2,56,58],[1068,2,1,58,59],[1073,5,3,59,62],[1075,4,1,62,63]]],[46,12,7,63,70,[[1078,1,1,63,64],[1083,6,2,64,66],[1084,3,2,66,68],[1087,2,2,68,70]]],[47,4,4,70,74,[[1092,2,2,70,72],[1093,1,1,72,73],[1095,1,1,73,74]]],[48,7,7,74,81,[[1098,2,2,74,76],[1099,2,2,76,78],[1100,2,2,78,80],[1101,1,1,80,81]]],[49,1,1,81,82,[[1106,1,1,81,82]]],[50,4,4,82,86,[[1107,3,3,82,85],[1108,1,1,85,86]]],[51,3,3,86,89,[[1113,1,1,86,87],[1114,2,2,87,89]]],[52,1,1,89,90,[[1118,1,1,89,90]]],[53,1,1,90,91,[[1119,1,1,90,91]]],[55,1,1,91,92,[[1129,1,1,91,92]]],[56,1,1,92,93,[[1132,1,1,92,93]]],[57,4,4,93,97,[[1133,2,2,93,95],[1142,1,1,95,96],[1143,1,1,96,97]]],[59,2,2,97,99,[[1151,1,1,97,98],[1155,1,1,98,99]]],[61,2,1,99,100,[[1163,2,1,99,100]]],[64,1,1,100,101,[[1166,1,1,100,101]]],[65,4,4,101,105,[[1171,1,1,101,102],[1175,1,1,102,103],[1176,1,1,103,104],[1184,1,1,104,105]]]],[23268,23269,23270,23513,23516,23517,23610,23721,23850,23853,23873,23934,23936,23938,23939,23940,24310,24325,24385,24503,24527,24567,24571,24572,24669,24673,24674,24709,24755,24970,25000,25064,25424,25781,25787,26023,26756,26926,27029,27031,27032,27151,27401,27554,27645,27940,28056,28057,28062,28193,28294,28319,28322,28367,28368,28423,28469,28478,28501,28637,28643,28647,28684,28812,28904,28905,28922,28923,28983,28986,29098,29101,29113,29166,29242,29247,29256,29272,29286,29293,29330,29461,29481,29482,29486,29505,29593,29604,29618,29694,29714,29901,29944,29964,29965,30152,30174,30379,30475,30630,30673,30788,30860,30867,31016]]],["for",[6,6,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[53,1,1,3,4,[[1123,1,1,3,4]]],[58,1,1,4,5,[[1150,1,1,4,5]]],[59,1,1,5,6,[[1154,1,1,5,6]]]],[23289,24937,29387,29773,30357,30460]]],["in",[1813,1467,[[39,206,174,0,174,[[929,1,1,0,1],[930,7,5,1,6],[931,5,5,6,11],[932,5,4,11,15],[933,9,8,15,23],[934,16,11,23,34],[935,6,5,34,39],[936,5,5,39,44],[937,5,5,44,49],[938,12,11,49,60],[939,13,9,60,69],[940,12,9,69,78],[941,19,17,78,95],[942,4,4,95,99],[943,2,2,99,101],[944,5,4,101,105],[945,2,2,105,107],[946,11,9,107,116],[947,2,2,116,118],[948,3,3,118,121],[949,14,11,121,132],[950,7,6,132,138],[951,7,6,138,144],[952,14,12,144,156],[953,8,8,156,164],[954,7,6,164,170],[955,4,3,170,173],[956,1,1,173,174]]],[40,92,83,174,257,[[957,12,12,174,186],[958,4,4,186,190],[959,1,1,190,191],[960,7,7,191,198],[961,7,5,198,203],[962,11,10,203,213],[964,4,3,213,216],[965,5,5,216,221],[966,7,6,221,227],[967,8,7,227,234],[968,8,6,234,240],[969,7,7,240,247],[970,6,5,247,252],[971,4,4,252,256],[972,1,1,256,257]]],[41,221,181,257,438,[[973,18,18,257,275],[974,21,19,275,294],[975,7,6,294,300],[976,15,13,300,313],[977,5,5,313,318],[978,9,4,318,322],[979,9,7,322,329],[980,5,4,329,333],[981,5,5,333,338],[982,8,5,338,343],[983,9,7,343,350],[984,14,11,350,361],[985,11,9,361,370],[986,1,1,370,371],[987,3,3,371,374],[988,11,6,374,380],[989,8,6,380,386],[990,5,4,386,390],[991,10,8,390,398],[992,6,4,398,402],[993,9,7,402,409],[994,8,8,409,417],[995,11,10,417,427],[996,13,11,427,438]]],[42,164,124,438,562,[[997,7,7,438,445],[998,8,7,445,452],[999,4,4,452,456],[1000,8,7,456,463],[1001,12,9,463,472],[1002,10,8,472,480],[1003,7,6,480,486],[1004,16,12,486,498],[1005,3,3,498,501],[1006,6,4,501,505],[1007,11,10,505,515],[1008,5,5,515,520],[1009,4,3,520,523],[1010,14,8,523,531],[1011,16,10,531,541],[1012,7,5,541,546],[1013,14,7,546,553],[1014,5,3,553,556],[1015,4,3,556,559],[1016,3,3,559,562]]],[43,162,137,562,699,[[1018,7,5,562,567],[1019,5,5,567,572],[1021,3,3,572,575],[1022,11,9,575,584],[1023,4,3,584,587],[1024,29,20,587,607],[1025,3,3,607,610],[1026,13,11,610,621],[1027,10,8,621,629],[1028,7,6,629,635],[1029,2,2,635,637],[1030,8,8,637,645],[1031,3,3,645,648],[1032,2,2,648,650],[1033,6,6,650,656],[1034,9,7,656,663],[1035,6,6,663,669],[1036,4,4,669,673],[1037,3,3,673,676],[1038,2,2,676,678],[1039,4,2,678,680],[1040,4,4,680,684],[1041,4,3,684,687],[1042,1,1,687,688],[1043,3,3,688,691],[1044,4,4,691,695],[1045,5,4,695,699]]],[44,92,75,699,774,[[1046,9,8,699,707],[1047,6,6,707,713],[1048,4,4,713,717],[1049,4,1,717,718],[1050,5,5,718,723],[1051,3,2,723,725],[1052,10,7,725,732],[1053,15,10,732,742],[1054,7,6,742,748],[1055,4,3,748,751],[1057,2,2,751,753],[1058,2,2,753,755],[1059,4,4,755,759],[1060,5,5,759,764],[1061,12,10,764,774]]],[45,107,86,774,860,[[1062,12,9,774,783],[1063,9,6,783,789],[1064,5,5,789,794],[1065,11,7,794,801],[1066,2,2,801,803],[1067,5,4,803,807],[1068,8,7,807,814],[1069,4,4,814,818],[1070,5,5,818,823],[1071,5,4,823,827],[1072,6,6,827,833],[1073,4,4,833,837],[1075,8,7,837,844],[1076,19,12,844,856],[1077,4,4,856,860]]],[46,118,81,860,941,[[1078,12,10,860,870],[1079,7,5,870,875],[1080,7,6,875,881],[1081,9,6,881,887],[1082,9,9,887,896],[1083,15,6,896,902],[1084,7,6,902,908],[1085,6,5,908,913],[1086,4,4,913,917],[1087,5,5,917,922],[1088,18,9,922,931],[1089,14,7,931,938],[1090,5,3,938,941]]],[47,30,25,941,966,[[1091,6,5,941,946],[1092,3,2,946,948],[1093,6,5,948,953],[1094,4,4,953,957],[1095,3,2,957,959],[1096,8,7,959,966]]],[48,83,67,966,1033,[[1097,21,15,966,981],[1098,18,12,981,993],[1099,12,11,993,1004],[1100,12,10,1004,1014],[1101,8,8,1014,1022],[1102,12,11,1022,1033]]],[49,56,46,1033,1079,[[1103,19,15,1033,1048],[1104,13,10,1048,1058],[1105,10,8,1058,1066],[1106,14,13,1066,1079]]],[50,62,47,1079,1126,[[1107,21,16,1079,1095],[1108,17,13,1095,1108],[1109,13,9,1108,1117],[1110,11,9,1117,1126]]],[51,28,23,1126,1149,[[1111,9,5,1126,1131],[1112,5,4,1131,1135],[1113,3,3,1135,1138],[1114,6,6,1138,1144],[1115,5,5,1144,1149]]],[52,16,11,1149,1160,[[1116,9,4,1149,1153],[1117,4,4,1153,1157],[1118,3,3,1157,1160]]],[53,36,25,1160,1185,[[1119,5,5,1160,1165],[1120,9,7,1165,1172],[1121,9,6,1172,1178],[1122,9,4,1178,1182],[1123,1,1,1182,1183],[1124,3,2,1183,1185]]],[54,24,20,1185,1205,[[1125,13,10,1185,1195],[1126,5,4,1195,1199],[1127,5,5,1199,1204],[1128,1,1,1204,1205]]],[55,9,9,1205,1214,[[1129,2,2,1205,1207],[1130,5,5,1207,1212],[1131,2,2,1212,1214]]],[56,9,7,1214,1221,[[1132,9,7,1214,1221]]],[57,42,38,1221,1259,[[1134,2,2,1221,1223],[1135,8,7,1223,1230],[1136,3,3,1230,1233],[1137,2,2,1233,1235],[1138,1,1,1235,1236],[1139,1,1,1236,1237],[1140,4,3,1237,1240],[1141,1,1,1240,1241],[1142,7,6,1241,1247],[1143,7,7,1247,1254],[1144,1,1,1254,1255],[1145,5,4,1255,1259]]],[58,22,21,1259,1280,[[1146,8,8,1259,1267],[1147,6,5,1267,1272],[1148,3,3,1272,1275],[1149,3,3,1275,1278],[1150,2,2,1278,1280]]],[59,26,24,1280,1304,[[1151,7,7,1280,1287],[1152,5,4,1287,1291],[1153,6,5,1291,1296],[1154,5,5,1296,1301],[1155,3,3,1301,1304]]],[60,19,15,1304,1319,[[1156,6,5,1304,1309],[1157,4,4,1309,1313],[1158,9,6,1313,1319]]],[61,63,40,1319,1359,[[1159,6,5,1319,1324],[1160,23,13,1324,1337],[1161,9,7,1337,1344],[1162,18,9,1344,1353],[1163,7,6,1353,1359]]],[62,8,7,1359,1366,[[1164,8,7,1359,1366]]],[63,3,3,1366,1369,[[1165,3,3,1366,1369]]],[64,5,5,1369,1374,[[1166,5,5,1369,1374]]],[65,110,93,1374,1467,[[1167,11,8,1374,1382],[1168,7,6,1382,1388],[1169,8,6,1388,1394],[1170,5,4,1394,1398],[1171,5,3,1398,1401],[1172,2,2,1401,1403],[1173,3,3,1403,1406],[1174,2,2,1406,1408],[1175,6,5,1408,1413],[1176,5,5,1413,1418],[1177,6,5,1418,1423],[1178,6,6,1423,1429],[1179,2,2,1429,1431],[1180,5,5,1431,1436],[1181,3,2,1436,1438],[1182,1,1,1438,1439],[1183,2,2,1439,1441],[1184,11,8,1441,1449],[1185,5,4,1449,1453],[1186,6,5,1453,1458],[1187,6,6,1458,1464],[1188,3,3,1464,1467]]]],[23164,23170,23171,23178,23185,23188,23193,23195,23198,23204,23209,23222,23225,23230,23232,23246,23249,23250,23253,23259,23262,23279,23282,23283,23284,23286,23287,23288,23291,23292,23300,23302,23305,23311,23319,23327,23331,23337,23338,23355,23356,23358,23369,23377,23383,23389,23410,23412,23414,23428,23432,23433,23434,23436,23437,23440,23444,23445,23449,23450,23460,23461,23465,23467,23470,23475,23480,23482,23483,23494,23508,23510,23521,23525,23529,23530,23531,23539,23542,23549,23552,23558,23560,23563,23566,23569,23570,23571,23573,23574,23579,23582,23583,23593,23596,23599,23600,23607,23630,23665,23666,23689,23691,23699,23700,23705,23722,23728,23729,23731,23733,23737,23741,23745,23746,23747,23783,23790,23795,23809,23813,23834,23835,23838,23840,23841,23848,23854,23858,23859,23867,23868,23887,23888,23900,23902,23908,23915,23924,23925,23927,23948,23952,23957,23971,23972,23973,23975,23976,23983,23987,23995,23997,24002,24005,24007,24012,24026,24033,24039,24044,24047,24051,24052,24060,24067,24077,24083,24109,24123,24134,24169,24189,24213,24217,24218,24219,24220,24224,24226,24228,24234,24235,24238,24254,24260,24266,24268,24275,24280,24311,24324,24325,24334,24338,24340,24351,24359,24369,24377,24384,24391,24394,24409,24411,24418,24421,24424,24434,24436,24454,24458,24463,24514,24526,24538,24571,24574,24576,24579,24588,24598,24609,24618,24620,24625,24640,24649,24650,24655,24663,24665,24666,24667,24684,24698,24699,24708,24711,24712,24728,24731,24734,24741,24742,24743,24749,24757,24779,24784,24803,24820,24833,24855,24867,24872,24885,24898,24899,24900,24901,24911,24914,24915,24918,24919,24924,24929,24932,24934,24937,24959,24962,24972,24973,24974,24980,24981,24984,24985,24987,24989,24992,24994,24996,24997,24998,25002,25007,25011,25016,25017,25019,25024,25026,25029,25040,25042,25045,25047,25065,25068,25077,25078,25083,25084,25086,25087,25088,25090,25091,25096,25107,25114,25119,25129,25136,25142,25158,25169,25187,25188,25204,25216,25218,25220,25223,25227,25232,25255,25258,25260,25272,25313,25327,25332,25337,25358,25370,25375,25376,25383,25389,25406,25407,25426,25436,25437,25440,25448,25462,25471,25486,25487,25492,25497,25501,25504,25505,25511,25517,25522,25524,25528,25532,25537,25544,25546,25547,25553,25568,25592,25595,25613,25630,25631,25632,25643,25644,25645,25657,25675,25677,25679,25682,25687,25690,25691,25710,25718,25748,25751,25761,25767,25769,25773,25775,25778,25780,25812,25821,25825,25832,25847,25849,25851,25853,25863,25864,25880,25884,25892,25894,25901,25908,25917,25919,25939,25944,25949,25954,25957,25964,25966,25975,25978,25988,25995,25997,26009,26010,26018,26026,26027,26029,26035,26040,26044,26046,26049,26054,26067,26072,26089,26091,26096,26106,26109,26114,26115,26118,26120,26133,26134,26141,26143,26170,26176,26177,26179,26180,26200,26209,26223,26224,26236,26238,26245,26248,26249,26252,26253,26267,26288,26302,26306,26310,26313,26316,26318,26329,26332,26337,26338,26346,26356,26384,26386,26390,26393,26398,26401,26402,26405,26412,26416,26418,26425,26443,26445,26474,26504,26506,26515,26519,26529,26532,26533,26540,26543,26547,26553,26554,26561,26579,26593,26605,26615,26626,26628,26631,26661,26662,26678,26679,26681,26682,26685,26688,26694,26698,26701,26703,26704,26705,26706,26708,26709,26710,26715,26724,26749,26750,26751,26752,26759,26769,26770,26771,26772,26780,26782,26785,26805,26811,26823,26829,26831,26866,26879,26892,26897,26930,26931,26933,26938,26943,26966,26967,26968,26971,26995,27029,27034,27046,27063,27071,27077,27079,27081,27084,27093,27096,27101,27102,27108,27116,27118,27120,27121,27122,27123,27128,27132,27133,27136,27138,27145,27146,27150,27151,27152,27154,27157,27158,27160,27164,27184,27185,27197,27226,27227,27228,27233,27236,27237,27241,27243,27245,27253,27259,27260,27262,27276,27289,27291,27294,27298,27307,27312,27320,27329,27333,27334,27336,27342,27344,27367,27379,27380,27381,27395,27397,27402,27403,27415,27430,27439,27463,27477,27486,27489,27495,27501,27515,27519,27534,27539,27540,27545,27547,27551,27554,27561,27566,27567,27575,27581,27583,27594,27601,27606,27624,27634,27636,27642,27691,27693,27707,27721,27740,27743,27745,27769,27781,27787,27789,27801,27833,27844,27849,27876,27882,27886,27892,27908,27910,27917,27929,27932,27937,27939,27948,27949,27951,27957,27958,27974,27977,27981,27982,27990,27991,27995,28007,28015,28016,28032,28050,28052,28058,28060,28064,28072,28080,28096,28097,28099,28108,28109,28111,28114,28117,28118,28119,28120,28124,28125,28126,28127,28153,28155,28156,28172,28180,28181,28183,28188,28194,28196,28197,28249,28250,28275,28279,28285,28297,28298,28302,28316,28326,28332,28333,28334,28338,28339,28343,28344,28345,28346,28347,28348,28349,28358,28365,28368,28369,28370,28371,28373,28384,28393,28394,28397,28398,28399,28401,28405,28407,28411,28426,28428,28429,28431,28435,28439,28443,28448,28450,28453,28454,28459,28463,28471,28478,28486,28487,28502,28504,28505,28507,28509,28524,28526,28531,28532,28534,28537,28541,28542,28549,28558,28564,28569,28572,28575,28592,28611,28613,28618,28621,28622,28625,28640,28652,28659,28662,28688,28697,28703,28706,28711,28712,28713,28735,28736,28737,28740,28741,28746,28749,28759,28760,28761,28770,28776,28787,28789,28795,28800,28801,28804,28806,28808,28809,28812,28814,28819,28820,28822,28825,28834,28838,28839,28841,28843,28844,28848,28850,28851,28855,28861,28865,28866,28869,28870,28871,28878,28879,28881,28883,28888,28889,28894,28896,28898,28900,28901,28902,28903,28910,28914,28917,28919,28925,28927,28930,28932,28934,28939,28950,28952,28954,28959,28960,28964,28967,28974,28977,28985,28987,28988,28995,28998,28999,29006,29012,29014,29015,29016,29022,29024,29025,29027,29031,29032,29034,29041,29046,29047,29048,29070,29071,29073,29079,29081,29085,29101,29112,29114,29121,29128,29130,29145,29149,29150,29156,29168,29176,29189,29194,29200,29201,29202,29203,29205,29207,29209,29210,29212,29214,29215,29216,29218,29219,29221,29223,29224,29226,29227,29229,29231,29232,29233,29235,29236,29239,29240,29241,29242,29244,29245,29250,29254,29255,29256,29257,29260,29261,29262,29266,29268,29271,29272,29274,29275,29276,29278,29287,29288,29289,29290,29293,29296,29306,29309,29312,29313,29323,29324,29325,29328,29338,29341,29342,29346,29347,29349,29350,29355,29357,29358,29361,29362,29365,29367,29368,29369,29370,29374,29375,29381,29383,29385,29387,29388,29389,29391,29392,29396,29397,29398,29403,29404,29406,29410,29415,29420,29422,29424,29425,29427,29430,29435,29440,29441,29443,29444,29445,29446,29448,29451,29452,29453,29454,29457,29458,29461,29463,29467,29469,29470,29471,29473,29474,29475,29477,29481,29483,29484,29485,29489,29492,29493,29494,29495,29496,29500,29501,29503,29504,29505,29506,29507,29509,29510,29514,29517,29520,29521,29524,29528,29532,29533,29534,29535,29539,29543,29544,29547,29549,29554,29555,29557,29558,29559,29561,29565,29566,29567,29568,29572,29573,29583,29584,29592,29598,29603,29607,29608,29609,29613,29619,29620,29623,29625,29633,29634,29639,29650,29653,29659,29661,29667,29671,29673,29678,29682,29684,29695,29698,29700,29709,29710,29712,29718,29723,29725,29727,29728,29730,29731,29735,29740,29742,29744,29746,29747,29748,29749,29759,29761,29780,29805,29806,29810,29812,29814,29815,29818,29822,29823,29824,29826,29827,29828,29834,29837,29847,29854,29865,29867,29868,29869,29875,29897,29905,29911,29915,29917,29918,29920,29926,29938,29944,29946,29948,29951,29954,29958,29961,29989,29995,29997,30000,30003,30006,30007,30010,30012,30017,30019,30021,30036,30037,30062,30074,30093,30097,30101,30128,30136,30140,30155,30165,30167,30171,30181,30190,30191,30198,30206,30209,30210,30235,30244,30245,30259,30262,30272,30274,30275,30276,30277,30289,30291,30293,30295,30297,30298,30303,30309,30321,30333,30337,30338,30342,30353,30359,30368,30378,30379,30385,30388,30389,30391,30396,30405,30411,30421,30423,30428,30439,30440,30443,30444,30447,30448,30449,30457,30465,30471,30474,30479,30483,30491,30492,30497,30498,30510,30512,30513,30518,30523,30532,30533,30536,30538,30540,30545,30546,30547,30548,30550,30554,30555,30556,30558,30559,30560,30561,30564,30565,30566,30574,30577,30578,30584,30585,30588,30593,30594,30596,30603,30605,30606,30607,30615,30616,30618,30619,30620,30621,30631,30632,30634,30635,30643,30644,30646,30647,30648,30649,30651,30652,30654,30659,30661,30662,30682,30684,30690,30692,30693,30701,30702,30706,30707,30708,30710,30712,30713,30718,30724,30729,30730,30735,30741,30747,30750,30751,30753,30758,30767,30769,30770,30772,30774,30782,30785,30792,30798,30799,30819,30824,30825,30828,30836,30846,30850,30851,30857,30859,30863,30868,30869,30870,30871,30878,30884,30885,30887,30891,30892,30894,30898,30899,30901,30903,30914,30916,30931,30932,30939,30940,30943,30947,30951,30957,30978,30979,30999,31000,31001,31003,31012,31015,31016,31017,31018,31028,31031,31034,31044,31046,31050,31051,31053,31061,31063,31067,31076,31077,31080,31083,31098,31099]]],["into",[12,12,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,2,2,1,3,[[977,1,1,1,2],[995,1,1,2,3]]],[42,2,2,3,5,[[999,1,1,3,4],[1001,1,1,4,5]]],[43,1,1,5,6,[[1024,1,1,5,6]]],[44,2,2,6,8,[[1046,2,2,6,8]]],[46,1,1,8,9,[[1085,1,1,8,9]]],[47,1,1,9,10,[[1091,1,1,9,10]]],[53,1,1,10,11,[[1121,1,1,10,11]]],[65,1,1,11,12,[[1180,1,1,11,12]]]],[24231,25123,25977,26155,26214,27161,27953,27955,28948,29063,29747,30936]]],["is",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23320]]],["of",[14,14,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[43,1,1,2,3,[[1043,1,1,2,3]]],[44,3,3,3,6,[[1047,2,2,3,5],[1056,1,1,5,6]]],[46,2,2,6,8,[[1079,1,1,6,7],[1087,1,1,7,8]]],[47,1,1,8,9,[[1094,1,1,8,9]]],[48,1,1,9,10,[[1100,1,1,9,10]]],[55,1,1,10,11,[[1131,1,1,10,11]]],[58,1,1,11,12,[[1150,1,1,11,12]]],[60,2,2,12,14,[[1157,1,1,12,13],[1158,1,1,13,14]]]],[24781,24954,27843,27979,27985,28211,28836,28986,29151,29273,29928,30373,30512,30523]]],["on",[45,42,[[39,2,2,0,2,[[952,1,1,0,1],[954,1,1,1,2]]],[40,4,4,2,6,[[958,2,2,2,4],[970,1,1,4,5],[972,1,1,5,6]]],[41,17,17,6,23,[[973,1,1,6,7],[976,2,2,7,9],[977,1,1,9,10],[978,4,4,10,14],[980,3,3,14,17],[981,1,1,17,18],[984,1,1,18,19],[985,2,2,19,21],[986,1,1,21,22],[992,1,1,22,23]]],[42,7,6,23,29,[[1001,2,2,23,25],[1003,3,2,25,27],[1009,1,1,27,28],[1015,1,1,28,29]]],[44,3,2,29,31,[[1057,3,2,29,31]]],[46,3,3,31,34,[[1081,1,1,31,32],[1084,1,1,32,33],[1085,1,1,33,34]]],[50,1,1,34,35,[[1109,1,1,34,35]]],[57,4,3,35,38,[[1133,2,1,35,36],[1140,1,1,36,37],[1142,1,1,37,38]]],[59,2,2,38,40,[[1153,1,1,38,39],[1154,1,1,39,40]]],[65,2,2,40,42,[[1167,1,1,40,41],[1171,1,1,41,42]]]],[23977,24059,24283,24284,24756,24878,24952,25079,25094,25124,25147,25148,25152,25153,25260,25267,25277,25338,25510,25525,25528,25558,25780,26219,26226,26350,26351,26653,26856,28252,28253,28867,28921,28933,29518,29966,30093,30145,30446,30462,30707,30792]]],["over",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27654]]],["the",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24358]]],["through",[36,36,[[39,1,1,0,1,[[937,1,1,0,1]]],[41,3,3,1,4,[[982,1,1,1,2],[983,2,2,2,4]]],[42,4,4,4,8,[[1013,3,3,4,7],[1016,1,1,7,8]]],[43,1,1,8,9,[[1021,1,1,8,9]]],[44,7,7,9,16,[[1046,1,1,9,10],[1048,2,2,10,12],[1051,2,2,12,14],[1060,2,2,14,16]]],[46,1,1,16,17,[[1088,1,1,16,17]]],[47,2,2,17,19,[[1093,1,1,17,18],[1095,1,1,18,19]]],[48,2,2,19,21,[[1098,2,2,19,21]]],[49,2,2,21,23,[[1106,2,2,21,23]]],[52,2,2,23,25,[[1117,2,2,23,25]]],[55,1,1,25,26,[[1129,1,1,25,26]]],[57,1,1,26,27,[[1145,1,1,26,27]]],[59,2,2,27,29,[[1151,2,2,27,29]]],[60,6,6,29,35,[[1156,3,3,29,32],[1157,3,3,32,35]]],[65,1,1,35,36,[[1174,1,1,35,36]]]],[23413,25380,25420,25423,26770,26776,26778,26898,27024,27954,27998,28016,28079,28091,28316,28320,28992,29116,29172,29236,29251,29449,29455,29674,29677,29895,30261,30376,30380,30480,30481,30483,30503,30518,30520,30840]]],["throughout",[4,3,[[41,3,2,0,2,[[973,1,1,0,1],[979,2,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]]],[24958,25212,28172]]],["to",[17,12,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,2,2,1,3,[[1029,1,1,1,2],[1041,1,1,2,3]]],[45,1,1,3,4,[[1068,1,1,3,4]]],[46,2,2,4,6,[[1081,1,1,4,5],[1085,1,1,5,6]]],[50,1,1,6,7,[[1107,1,1,6,7]]],[53,2,1,7,8,[[1122,2,1,7,8]]],[60,7,3,8,11,[[1156,7,3,8,11]]],[61,1,1,11,12,[[1162,1,1,11,12]]]],[24910,27348,27780,28502,28862,28939,29488,29762,30484,30485,30486,30619]]],["toward",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[61,1,1,1,2,[[1162,1,1,1,2]]]],[24987,30612]]],["under",[2,2,[[39,1,1,0,1,[[935,1,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]]],[23322,28010]]],["unto",[8,8,[[39,1,1,0,1,[[945,1,1,0,1]]],[44,1,1,1,2,[[1050,1,1,1,2]]],[45,2,2,2,4,[[1070,1,1,2,3],[1075,1,1,3,4]]],[46,1,1,4,5,[[1082,1,1,4,5]]],[51,2,2,5,7,[[1114,1,1,5,6],[1115,1,1,6,7]]],[53,1,1,7,8,[[1121,1,1,7,8]]]],[23712,28068,28555,28689,28896,29610,29644,29747]]],["upon",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]],[43,1,1,2,3,[[1037,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]]],[23491,25849,27633,30340]]],["when",[3,3,[[43,1,1,0,1,[[1030,1,1,0,1]]],[52,1,1,1,2,[[1116,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[27379,29656,30459]]],["which",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28407]]],["with",[134,116,[[39,10,6,0,6,[[931,2,1,0,1],[935,2,1,1,2],[948,1,1,2,3],[950,3,1,3,4],[953,1,1,4,5],[954,1,1,5,6]]],[40,7,6,6,12,[[957,3,2,6,8],[960,2,2,8,10],[961,1,1,10,11],[965,1,1,11,12]]],[41,10,10,12,22,[[973,1,1,12,13],[975,1,1,13,14],[976,2,2,14,16],[980,1,1,16,17],[983,1,1,17,18],[986,1,1,18,19],[993,2,2,19,21],[994,1,1,21,22]]],[42,4,3,22,25,[[997,4,3,22,25]]],[43,6,6,25,31,[[1018,1,1,25,26],[1019,2,2,26,28],[1022,1,1,28,29],[1028,2,2,29,31]]],[44,12,10,31,41,[[1046,4,4,31,35],[1054,1,1,35,36],[1055,1,1,36,37],[1057,4,2,37,39],[1060,1,1,39,40],[1061,1,1,40,41]]],[45,9,7,41,48,[[1062,1,1,41,42],[1063,1,1,42,43],[1065,1,1,43,44],[1066,3,1,44,45],[1071,1,1,45,46],[1077,2,2,46,48]]],[46,3,3,48,51,[[1078,1,1,48,49],[1084,1,1,49,50],[1090,1,1,50,51]]],[48,9,8,51,59,[[1097,1,1,51,52],[1099,1,1,52,53],[1100,1,1,53,54],[1101,1,1,54,55],[1102,5,4,55,59]]],[49,1,1,59,60,[[1103,1,1,59,60]]],[50,7,7,60,67,[[1107,1,1,60,61],[1108,2,2,61,63],[1109,2,2,63,65],[1110,2,2,65,67]]],[51,7,5,67,72,[[1112,2,2,67,69],[1114,4,2,69,71],[1115,1,1,71,72]]],[52,4,4,72,76,[[1116,1,1,72,73],[1117,2,2,73,75],[1118,1,1,75,76]]],[53,3,3,76,79,[[1120,2,2,76,78],[1123,1,1,78,79]]],[54,2,2,79,81,[[1125,1,1,79,80],[1128,1,1,80,81]]],[57,3,3,81,84,[[1141,2,2,81,83],[1143,1,1,83,84]]],[58,3,3,84,87,[[1146,1,1,84,85],[1147,1,1,85,86],[1148,1,1,86,87]]],[59,4,4,87,91,[[1151,1,1,87,88],[1152,1,1,88,89],[1153,1,1,89,90],[1155,1,1,90,91]]],[60,2,2,91,93,[[1157,2,2,91,93]]],[64,3,3,93,96,[[1166,3,3,93,96]]],[65,25,20,96,116,[[1168,3,3,96,99],[1172,3,1,99,100],[1175,1,1,100,101],[1178,1,1,101,102],[1179,2,1,102,103],[1180,5,5,103,108],[1182,1,1,108,109],[1183,1,1,109,110],[1184,2,2,110,112],[1185,6,4,112,116]]]],[23203,23318,23807,23909,24024,24106,24223,24238,24347,24353,24366,24539,24944,25041,25095,25099,25260,25425,25584,25851,25860,25913,26070,26075,26077,26928,26978,26995,27082,27323,27333,27934,27939,27942,27957,28177,28197,28253,28266,28335,28352,28380,28398,28454,28462,28572,28790,28796,28812,28924,29055,29209,29263,29291,29322,29339,29351,29352,29355,29381,29476,29498,29501,29533,29539,29544,29548,29572,29587,29619,29621,29647,29660,29670,29671,29686,29725,29727,29765,29812,29872,30127,30130,30209,30287,30294,30332,30386,30417,30426,30479,30513,30516,30686,30695,30696,30733,30740,30744,30801,30859,30896,30918,30928,30933,30935,30936,30941,30962,30991,31001,31009,31019,31032,31037,31038]]],["within",[13,13,[[39,3,3,0,3,[[931,1,1,0,1],[937,2,2,1,3]]],[40,1,1,3,4,[[958,1,1,3,4]]],[41,8,8,4,12,[[975,1,1,4,5],[979,2,2,5,7],[984,1,1,7,8],[988,1,1,8,9],[990,1,1,9,10],[991,1,1,10,11],[996,1,1,11,12]]],[44,1,1,12,13,[[1053,1,1,12,13]]]],[23201,23382,23400,24268,25033,25234,25244,25476,25623,25692,25775,26023,28139]]]]},{"k":"G1723","v":[["+",[2,2,[[40,2,2,0,2,[[965,1,1,0,1],[966,1,1,1,2]]]],[24574,24604]]]]},{"k":"G1724","v":[["sea",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30326]]]]},{"k":"G1725","v":[["before",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24901]]]]},{"k":"G1726","v":[["*",[5,5,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,2,2,1,3,[[992,1,1,1,2],[996,1,1,2,3]]],[43,2,2,3,5,[[1024,1,1,3,4],[1025,1,1,4,5]]]],[24272,25805,26010,27126,27208]]],["before",[4,4,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,2,2,1,3,[[992,1,1,1,2],[996,1,1,2,3]]],[43,1,1,3,4,[[1025,1,1,3,4]]]],[24272,25805,26010,27208]]],["sight",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27126]]]]},{"k":"G1727","v":[["*",[8,8,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[971,1,1,2,3]]],[43,3,3,3,6,[[1043,1,1,3,4],[1044,1,1,4,5],[1045,1,1,5,6]]],[51,1,1,6,7,[[1112,1,1,6,7]]],[55,1,1,7,8,[[1130,1,1,7,8]]]],[23621,24455,24865,27832,27859,27916,29585,29916]]],["+",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24865]]],["against",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27916]]],["contrary",[5,5,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[43,2,2,2,4,[[1043,1,1,2,3],[1044,1,1,3,4]]],[51,1,1,4,5,[[1112,1,1,4,5]]]],[23621,24455,27832,27859,29585]]],["part",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29916]]]]},{"k":"G1728","v":[["begun",[2,2,[[47,1,1,0,1,[[1093,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[29105,29367]]]]},{"k":"G1729","v":[["lacked",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27056]]]]},{"k":"G1730","v":[["token",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29654]]]]},{"k":"G1731","v":[["*",[11,11,[[44,3,3,0,3,[[1047,1,1,0,1],[1054,2,2,1,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]],[48,1,1,4,5,[[1098,1,1,4,5]]],[53,1,1,5,6,[[1119,1,1,5,6]]],[54,1,1,6,7,[[1128,1,1,6,7]]],[55,2,2,7,9,[[1130,1,1,7,8],[1131,1,1,8,9]]],[57,2,2,9,11,[[1138,2,2,9,11]]]],[27977,28172,28177,28956,29236,29712,29884,29918,29925,30054,30055]]],["did",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29884]]],["forth",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29712]]],["shew",[6,6,[[44,3,3,0,3,[[1047,1,1,0,1],[1054,2,2,1,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]],[48,1,1,4,5,[[1098,1,1,4,5]]],[57,1,1,5,6,[[1138,1,1,5,6]]]],[27977,28172,28177,28956,29236,30055]]],["shewed",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30054]]],["shewing",[2,2,[[55,2,2,0,2,[[1130,1,1,0,1],[1131,1,1,1,2]]]],[29918,29925]]]]},{"k":"G1732","v":[["*",[4,4,[[44,2,2,0,2,[[1048,2,2,0,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]],[49,1,1,3,4,[[1103,1,1,3,4]]]],[28016,28017,28956,29389]]],["+",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28016]]],["declare",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28017]]],["proof",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28956]]],["token",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29389]]]]},{"k":"G1733","v":[["eleven",[6,6,[[39,1,1,0,1,[[956,1,1,0,1]]],[40,1,1,1,2,[[972,1,1,1,2]]],[41,2,2,2,4,[[996,2,2,2,4]]],[43,2,2,4,6,[[1018,1,1,4,5],[1019,1,1,5,6]]]],[24211,24887,26000,26024,26949,26963]]]]},{"k":"G1734","v":[["eleventh",[3,3,[[39,2,2,0,2,[[948,2,2,0,2]]],[65,1,1,2,3,[[1187,1,1,2,3]]]],[23798,23801,31073]]]]},{"k":"G1735","v":[["+",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25551]]]]},{"k":"G1736","v":[["*",[3,3,[[46,3,3,0,3,[[1082,3,3,0,3]]]],[28883,28885,28886]]],["home",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28883]]],["present",[2,2,[[46,2,2,0,2,[[1082,2,2,0,2]]]],[28885,28886]]]]},{"k":"G1737","v":[["*",[2,2,[[41,2,2,0,2,[[980,1,1,0,1],[988,1,1,1,2]]]],[25272,25639]]],["clothed",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25639]]],["ware",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25272]]]]},{"k":"G1738","v":[["just",[2,2,[[44,1,1,0,1,[[1048,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]]],[27999,29979]]]]},{"k":"G1739","v":[["building",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31071]]]]},{"k":"G1740","v":[["glorified",[2,2,[[52,2,2,0,2,[[1116,2,2,0,2]]]],[29659,29661]]]]},{"k":"G1741","v":[["*",[4,4,[[41,2,2,0,2,[[979,1,1,0,1],[985,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]]],[25220,25535,28443,29331]]],["+",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25220]]],["glorious",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29331]]],["honourable",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28443]]],["things",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25535]]]]},{"k":"G1742","v":[["*",[8,8,[[39,7,7,0,7,[[931,1,1,0,1],[934,2,2,1,3],[935,1,1,3,4],[950,2,2,4,6],[956,1,1,6,7]]],[41,1,1,7,8,[[984,1,1,7,8]]]],[23196,23307,23310,23331,23883,23884,24198,25482]]],["clothing",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23331]]],["garment",[2,2,[[39,2,2,0,2,[[950,2,2,0,2]]]],[23883,23884]]],["raiment",[5,5,[[39,4,4,0,4,[[931,1,1,0,1],[934,2,2,1,3],[956,1,1,3,4]]],[41,1,1,4,5,[[984,1,1,4,5]]]],[23196,23307,23310,24198,25482]]]]},{"k":"G1743","v":[["*",[8,8,[[43,1,1,0,1,[[1026,1,1,0,1]]],[44,1,1,1,2,[[1049,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]],[53,1,1,4,5,[[1119,1,1,4,5]]],[54,2,2,5,7,[[1126,1,1,5,6],[1128,1,1,6,7]]],[57,1,1,7,8,[[1143,1,1,7,8]]]],[27238,28042,29347,29455,29708,29828,29887,30206]]],["+",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27238]]],["enabled",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29708]]],["strengthened",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29887]]],["strengtheneth",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29455]]],["strong",[4,4,[[44,1,1,0,1,[[1049,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[28042,29347,29828,30206]]]]},{"k":"G1744","v":[["creep",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29859]]]]},{"k":"G1745","v":[["on",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30427]]]]},{"k":"G1746","v":[["*",[28,26,[[39,3,3,0,3,[[934,1,1,0,1],[950,1,1,1,2],[955,1,1,2,3]]],[40,4,4,3,7,[[957,1,1,3,4],[962,1,1,4,5],[971,2,2,5,7]]],[41,3,3,7,10,[[984,1,1,7,8],[987,1,1,8,9],[996,1,1,9,10]]],[43,1,1,10,11,[[1029,1,1,10,11]]],[44,2,2,11,13,[[1058,2,2,11,13]]],[45,4,2,13,15,[[1076,4,2,13,15]]],[46,1,1,15,16,[[1082,1,1,15,16]]],[47,1,1,16,17,[[1093,1,1,16,17]]],[48,3,3,17,20,[[1100,1,1,17,18],[1102,2,2,18,20]]],[50,2,2,20,22,[[1109,2,2,20,22]]],[51,1,1,22,23,[[1115,1,1,22,23]]],[65,3,3,23,26,[[1167,1,1,23,24],[1181,1,1,24,25],[1185,1,1,25,26]]]],[23307,23883,24160,24221,24416,24843,24846,25481,25610,26040,27358,28278,28280,28771,28772,28880,29129,29296,29348,29351,29527,29529,29629,30710,30952,31031]]],["+",[3,3,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,2,2,1,3,[[971,2,2,1,3]]]],[23883,24843,24846]]],["arrayed",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27358]]],["clothed",[2,2,[[46,1,1,0,1,[[1082,1,1,0,1]]],[65,1,1,1,2,[[1181,1,1,1,2]]]],[28880,30952]]],["endued",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26040]]],["in",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31031]]],["on",[17,15,[[39,1,1,0,1,[[934,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,2,2,2,4,[[984,1,1,2,3],[987,1,1,3,4]]],[44,2,2,4,6,[[1058,2,2,4,6]]],[45,4,2,6,8,[[1076,4,2,6,8]]],[47,1,1,8,9,[[1093,1,1,8,9]]],[48,3,3,9,12,[[1100,1,1,9,10],[1102,2,2,10,12]]],[50,2,2,12,14,[[1109,2,2,12,14]]],[51,1,1,14,15,[[1115,1,1,14,15]]]],[23307,24416,25481,25610,28278,28280,28771,28772,29129,29296,29348,29351,29527,29529,29629]]],["put",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24160]]],["with",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[65,1,1,1,2,[[1167,1,1,1,2]]]],[24221,30710]]]]},{"k":"G1747","v":[["+",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27799]]]]},{"k":"G1748","v":[["wait",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[25459,27755]]]]},{"k":"G1749","v":[["wait",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27750]]]]},{"k":"G1750","v":[["in",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24872]]]]},{"k":"G1751","v":[["have",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25446]]]]},{"k":"G1752","v":[["*",[24,23,[[39,7,7,0,7,[[933,2,2,0,2],[938,2,2,2,4],[944,1,1,4,5],[947,2,2,5,7]]],[40,4,4,7,11,[[964,1,1,7,8],[966,2,2,8,10],[969,1,1,10,11]]],[41,5,5,11,16,[[976,1,1,11,12],[978,1,1,12,13],[981,1,1,13,14],[990,1,1,14,15],[993,1,1,15,16]]],[43,3,3,16,19,[[1036,1,1,16,17],[1043,1,1,17,18],[1045,1,1,18,19]]],[44,2,2,19,21,[[1053,1,1,19,20],[1059,1,1,20,21]]],[46,3,2,21,23,[[1080,1,1,21,22],[1084,2,1,22,23]]]],[23244,23245,23435,23456,23697,23767,23791,24535,24595,24617,24726,25081,25168,25325,25717,25838,27617,27844,27919,28152,28300,28851,28928]]],["+",[19,19,[[39,7,7,0,7,[[933,2,2,0,2],[938,2,2,2,4],[944,1,1,4,5],[947,2,2,5,7]]],[40,4,4,7,11,[[964,1,1,7,8],[966,2,2,8,10],[969,1,1,10,11]]],[41,5,5,11,16,[[976,1,1,11,12],[978,1,1,12,13],[981,1,1,13,14],[990,1,1,14,15],[993,1,1,15,16]]],[43,2,2,16,18,[[1036,1,1,16,17],[1043,1,1,17,18]]],[44,1,1,18,19,[[1053,1,1,18,19]]]],[23244,23245,23435,23456,23697,23767,23791,24535,24595,24617,24726,25081,25168,25325,25717,25838,27617,27844,28152]]],["For",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28300]]],["because",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27919]]],["cause",[2,1,[[46,2,1,0,1,[[1084,2,1,0,1]]]],[28928]]],["of",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28851]]]]},{"k":"G1753","v":[["*",[8,8,[[48,3,3,0,3,[[1097,1,1,0,1],[1099,1,1,1,2],[1100,1,1,2,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]],[50,2,2,4,6,[[1107,1,1,4,5],[1108,1,1,5,6]]],[52,2,2,6,8,[[1117,2,2,6,8]]]],[29225,29258,29288,29442,29494,29506,29670,29672]]],["+",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29672]]],["operation",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29506]]],["working",[6,6,[[48,3,3,0,3,[[1097,1,1,0,1],[1099,1,1,1,2],[1100,1,1,2,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]],[52,1,1,5,6,[[1117,1,1,5,6]]]],[29225,29258,29288,29442,29494,29670]]]]},{"k":"G1754","v":[["*",[21,19,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[44,1,1,2,3,[[1052,1,1,2,3]]],[45,2,2,3,5,[[1073,2,2,3,5]]],[46,2,2,5,7,[[1078,1,1,5,6],[1081,1,1,6,7]]],[47,4,3,7,10,[[1092,2,1,7,8],[1093,1,1,8,9],[1095,1,1,9,10]]],[48,4,4,10,14,[[1097,2,2,10,12],[1098,1,1,12,13],[1099,1,1,13,14]]],[49,2,1,14,15,[[1104,2,1,14,15]]],[50,1,1,15,16,[[1107,1,1,15,16]]],[51,1,1,16,17,[[1112,1,1,16,17]]],[52,1,1,17,18,[[1117,1,1,17,18]]],[58,1,1,18,19,[[1150,1,1,18,19]]]],[23599,24421,28096,28640,28645,28806,28871,29089,29107,29168,29217,29226,29231,29271,29404,29494,29583,29668,30370]]],["+",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29231]]],["do",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29404]]],["effectual",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28806]]],["effectually",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29089]]],["fervent",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30370]]],["forth",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]]],[23599,24421]]],["mighty",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29089]]],["work",[2,2,[[44,1,1,0,1,[[1052,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]]],[28096,29668]]],["worketh",[10,10,[[45,2,2,0,2,[[1073,2,2,0,2]]],[46,1,1,2,3,[[1081,1,1,2,3]]],[47,2,2,3,5,[[1093,1,1,3,4],[1095,1,1,4,5]]],[48,2,2,5,7,[[1097,1,1,5,6],[1099,1,1,6,7]]],[49,1,1,7,8,[[1104,1,1,7,8]]],[50,1,1,8,9,[[1107,1,1,8,9]]],[51,1,1,9,10,[[1112,1,1,9,10]]]],[28640,28645,28871,29107,29168,29217,29271,29404,29494,29583]]],["wrought",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29226]]]]},{"k":"G1755","v":[["*",[2,2,[[45,2,2,0,2,[[1073,2,2,0,2]]]],[28640,28644]]],["operations",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28640]]],["working",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28644]]]]},{"k":"G1756","v":[["*",[3,3,[[45,1,1,0,1,[[1077,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]],[57,1,1,2,3,[[1136,1,1,2,3]]]],[28785,29944,30026]]],["effectual",[2,2,[[45,1,1,0,1,[[1077,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[28785,29944]]],["powerful",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30026]]]]},{"k":"G1757","v":[["blessed",[2,2,[[43,1,1,0,1,[[1020,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]]],[27021,29110]]]]},{"k":"G1758","v":[["*",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]]],[24426,25458,29163]]],["+",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29163]]],["against",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24426]]],["urge",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25458]]]]},{"k":"G1759","v":[["*",[8,8,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,2,2,1,3,[[1000,2,2,1,3]]],[43,5,5,3,8,[[1027,1,1,3,4],[1033,1,1,4,5],[1034,1,1,5,6],[1042,2,2,6,8]]]],[26032,26171,26172,27277,27511,27529,27813,27820]]],["here",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,2,2,1,3,[[1033,1,1,1,2],[1042,1,1,2,3]]]],[26032,27511,27820]]],["hither",[4,4,[[42,2,2,0,2,[[1000,2,2,0,2]]],[43,2,2,2,4,[[1034,1,1,2,3],[1042,1,1,3,4]]]],[26171,26172,27529,27813]]],["there",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27277]]]]},{"k":"G1760","v":[["*",[3,3,[[39,2,2,0,2,[[929,1,1,0,1],[937,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]]],[23164,23383,27278]]],["think",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23383]]],["thought",[2,2,[[39,1,1,0,1,[[929,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]]],[23164,27278]]]]},{"k":"G1761","v":[["*",[4,4,[[39,2,2,0,2,[[937,1,1,0,1],[940,1,1,1,2]]],[43,1,1,2,3,[[1034,1,1,2,3]]],[57,1,1,3,4,[[1136,1,1,3,4]]]],[23383,23514,27552,30026]]],["device",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27552]]],["thoughts",[3,3,[[39,2,2,0,2,[[937,1,1,0,1],[940,1,1,1,2]]],[57,1,1,2,3,[[1136,1,1,2,3]]]],[23383,23514,30026]]]]},{"k":"G1762","v":[["is",[5,3,[[47,3,1,0,1,[[1093,3,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[29130,29528,30283]]]]},{"k":"G1763","v":[["*",[14,14,[[41,1,1,0,1,[[976,1,1,0,1]]],[42,3,3,1,4,[[1007,2,2,1,3],[1014,1,1,3,4]]],[43,2,2,4,6,[[1028,1,1,4,5],[1035,1,1,5,6]]],[47,1,1,6,7,[[1094,1,1,6,7]]],[57,4,4,7,11,[[1141,2,2,7,9],[1142,2,2,9,11]]],[58,2,2,11,13,[[1149,1,1,11,12],[1150,1,1,12,13]]],[65,1,1,13,14,[[1175,1,1,13,14]]]],[25082,26572,26574,26798,27333,27568,29141,30112,30130,30134,30136,30350,30371,30855]]],["+",[3,3,[[57,3,3,0,3,[[1141,1,1,0,1],[1142,2,2,1,3]]]],[30130,30134,30136]]],["year",[9,9,[[41,1,1,0,1,[[976,1,1,0,1]]],[42,3,3,1,4,[[1007,2,2,1,3],[1014,1,1,3,4]]],[43,2,2,4,6,[[1028,1,1,4,5],[1035,1,1,5,6]]],[57,1,1,6,7,[[1141,1,1,6,7]]],[58,1,1,7,8,[[1149,1,1,7,8]]],[65,1,1,8,9,[[1175,1,1,8,9]]]],[25082,26572,26574,26798,27333,27568,30112,30350,30855]]],["years",[2,2,[[47,1,1,0,1,[[1094,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[29141,30371]]]]},{"k":"G1764","v":[["*",[7,7,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,2,2,1,3,[[1064,1,1,1,2],[1068,1,1,2,3]]],[47,1,1,3,4,[[1091,1,1,3,4]]],[52,1,1,4,5,[[1117,1,1,4,5]]],[54,1,1,5,6,[[1127,1,1,5,6]]],[57,1,1,6,7,[[1141,1,1,6,7]]]],[28154,28432,28513,29061,29663,29854,30114]]],["come",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29854]]],["hand",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29663]]],["present",[5,5,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,2,2,1,3,[[1064,1,1,1,2],[1068,1,1,2,3]]],[47,1,1,3,4,[[1091,1,1,3,4]]],[57,1,1,4,5,[[1141,1,1,4,5]]]],[28154,28432,28513,29061,30114]]]]},{"k":"G1765","v":[["*",[2,2,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[25907,27235]]],["strengthened",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27235]]],["strengthening",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25907]]]]},{"k":"G1766","v":[["ninth",[10,10,[[39,3,3,0,3,[[948,1,1,0,1],[955,2,2,1,3]]],[40,2,2,3,5,[[971,2,2,3,5]]],[41,1,1,5,6,[[995,1,1,5,6]]],[43,3,3,6,9,[[1020,1,1,6,7],[1027,2,2,7,9]]],[65,1,1,9,10,[[1187,1,1,9,10]]]],[23797,24174,24175,24859,24860,25979,26997,27262,27289,31073]]]]},{"k":"G1767","v":[["nine",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25668]]]]},{"k":"G1768","v":[["nine",[4,4,[[39,2,2,0,2,[[946,2,2,0,2]]],[41,2,2,2,4,[[987,2,2,2,4]]]],[23739,23740,25592,25595]]]]},{"k":"G1769","v":[["speechless",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27223]]]]},{"k":"G1770","v":[["signs",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24955]]]]},{"k":"G1771","v":[["*",[2,2,[[57,1,1,0,1,[[1136,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[30026,30447]]],["intents",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30026]]],["mind",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30447]]]]},{"k":"G1772","v":[["*",[2,2,[[43,1,1,0,1,[[1036,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]]],[27624,28561]]],["law",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28561]]],["lawful",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27624]]]]},{"k":"G1773","v":[["morning",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24250]]]]},{"k":"G1774","v":[["*",[5,5,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]],[54,2,2,3,5,[[1125,2,2,3,5]]]],[28127,28914,29533,29814,29823]]],["dwell",[2,2,[[46,1,1,0,1,[[1083,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[28914,29533]]],["dwelleth",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]]],[28127,29823]]],["dwelt",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29814]]]]},{"k":"G1775","v":[["unity",[2,2,[[48,2,2,0,2,[[1100,2,2,0,2]]]],[29275,29285]]]]},{"k":"G1776","v":[["trouble",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30227]]]]},{"k":"G1777","v":[["*",[10,8,[[39,5,3,0,3,[[933,4,2,0,2],[954,1,1,2,3]]],[40,2,2,3,5,[[959,1,1,3,4],[970,1,1,4,5]]],[45,1,1,5,6,[[1072,1,1,5,6]]],[57,1,1,6,7,[[1134,1,1,6,7]]],[58,1,1,7,8,[[1147,1,1,7,8]]]],[23255,23256,24120,24317,24818,28627,29992,30303]]],["danger",[5,3,[[39,4,2,0,2,[[933,4,2,0,2]]],[40,1,1,2,3,[[959,1,1,2,3]]]],[23255,23256,24317]]],["guilty",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[24120,24818,28627,30303]]],["to",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29992]]]]},{"k":"G1778","v":[["commandments",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]]],[23642,24470,29516]]]]},{"k":"G1779","v":[["*",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]]],[24066,26865]]],["burial",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24066]]],["bury",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26865]]]]},{"k":"G1780","v":[["burying",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]]],[24762,26587]]]]},{"k":"G1781","v":[["*",[17,17,[[39,5,5,0,5,[[932,1,1,0,1],[943,1,1,1,2],[945,1,1,2,3],[947,1,1,3,4],[956,1,1,4,5]]],[40,3,3,5,8,[[966,1,1,5,6],[967,1,1,6,7],[969,1,1,7,8]]],[41,1,1,8,9,[[976,1,1,8,9]]],[42,4,4,9,13,[[1004,1,1,9,10],[1010,1,1,10,11],[1011,2,2,11,13]]],[43,2,2,13,15,[[1018,1,1,13,14],[1030,1,1,14,15]]],[57,2,2,15,17,[[1141,1,1,15,16],[1143,1,1,16,17]]]],[23215,23637,23709,23769,24215,24591,24646,24751,25073,26386,26699,26713,26716,26925,27409,30125,30194]]],["+",[3,3,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]],[42,1,1,2,3,[[1010,1,1,2,3]]]],[23215,25073,26699]]],["charged",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23709]]],["command",[4,4,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[42,2,2,2,4,[[1011,2,2,2,4]]]],[23769,24591,26713,26716]]],["commanded",[6,6,[[39,2,2,0,2,[[943,1,1,0,1],[956,1,1,1,2]]],[40,2,2,2,4,[[967,1,1,2,3],[969,1,1,3,4]]],[42,1,1,4,5,[[1004,1,1,4,5]]],[43,1,1,5,6,[[1030,1,1,5,6]]]],[23637,24215,24646,24751,26386,27409]]],["commandment",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30194]]],["commandments",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26925]]],["enjoined",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30125]]]]},{"k":"G1782","v":[["*",[13,11,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,3,3,1,4,[[976,1,1,1,2],[985,1,1,2,3],[988,1,1,3,4]]],[42,6,5,4,9,[[998,1,1,4,5],[1003,1,1,5,6],[1010,1,1,6,7],[1014,1,1,7,8],[1015,2,1,8,9]]],[58,1,1,9,10,[[1149,1,1,9,10]]],[65,2,1,10,11,[[1188,2,1,10,11]]]],[23720,25072,25549,25646,26111,26331,26699,26821,26843,30338,31082]]],["+",[4,2,[[42,2,1,0,1,[[1015,2,1,0,1]]],[65,2,1,1,2,[[1188,2,1,1,2]]]],[26843,31082]]],["hence",[9,9,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,3,3,1,4,[[976,1,1,1,2],[985,1,1,2,3],[988,1,1,3,4]]],[42,4,4,4,8,[[998,1,1,4,5],[1003,1,1,5,6],[1010,1,1,6,7],[1014,1,1,7,8]]],[58,1,1,8,9,[[1149,1,1,8,9]]]],[23720,25072,25549,25646,26111,26331,26699,26821,30338]]]]},{"k":"G1783","v":[["*",[2,2,[[53,2,2,0,2,[[1120,1,1,0,1],[1122,1,1,1,2]]]],[29717,29752]]],["intercessions",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29717]]],["prayer",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29752]]]]},{"k":"G1784","v":[["*",[5,5,[[41,2,2,0,2,[[979,1,1,0,1],[986,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[59,2,2,3,5,[[1152,2,2,3,5]]]],[25197,25561,29420,30403,30405]]],["dear",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25197]]],["man",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25561]]],["precious",[2,2,[[59,2,2,0,2,[[1152,2,2,0,2]]]],[30403,30405]]],["reputation",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29420]]]]},{"k":"G1785","v":[["*",[71,65,[[39,7,7,0,7,[[933,1,1,0,1],[943,2,2,1,3],[947,1,1,3,4],[950,3,3,4,7]]],[40,8,8,7,15,[[963,2,2,7,9],[966,2,2,9,11],[968,4,4,11,15]]],[41,4,4,15,19,[[973,1,1,15,16],[987,1,1,16,17],[990,1,1,17,18],[995,1,1,18,19]]],[42,10,9,19,28,[[1006,1,1,19,20],[1007,1,1,20,21],[1008,2,2,21,23],[1009,1,1,23,24],[1010,2,2,24,26],[1011,3,2,26,28]]],[43,1,1,28,29,[[1034,1,1,28,29]]],[44,7,7,29,36,[[1052,6,6,29,35],[1058,1,1,35,36]]],[45,2,2,36,38,[[1068,1,1,36,37],[1075,1,1,37,38]]],[48,2,2,38,40,[[1098,1,1,38,39],[1102,1,1,39,40]]],[50,1,1,40,41,[[1110,1,1,40,41]]],[53,1,1,41,42,[[1124,1,1,41,42]]],[55,1,1,42,43,[[1129,1,1,42,43]]],[57,4,4,43,47,[[1139,3,3,43,46],[1141,1,1,46,47]]],[60,2,2,47,49,[[1157,1,1,47,48],[1158,1,1,48,49]]],[61,14,10,49,59,[[1160,6,4,49,53],[1161,4,3,53,56],[1162,1,1,56,57],[1163,3,2,57,59]]],[62,4,3,59,62,[[1164,4,3,59,62]]],[65,3,3,62,65,[[1178,1,1,62,63],[1180,1,1,63,64],[1188,1,1,64,65]]]],[23253,23636,23639,23779,23908,23910,23912,24471,24472,24593,24607,24701,24702,24703,24704,24899,25617,25708,25991,26499,26580,26629,26630,26664,26683,26689,26709,26711,27538,28099,28100,28101,28102,28103,28104,28275,28506,28715,29244,29339,29552,29802,29906,30069,30080,30082,30124,30521,30524,30553,30554,30557,30558,30601,30602,30603,30624,30626,30627,30649,30650,30651,30908,30938,31094]]],["+",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23639]]],["commandment",[41,38,[[39,3,3,0,3,[[943,1,1,0,1],[950,2,2,1,3]]],[40,5,5,3,8,[[963,2,2,3,5],[968,3,3,5,8]]],[41,2,2,8,10,[[987,1,1,8,9],[995,1,1,9,10]]],[42,6,6,10,16,[[1006,1,1,10,11],[1007,1,1,11,12],[1008,2,2,12,14],[1009,1,1,14,15],[1011,1,1,15,16]]],[43,1,1,16,17,[[1034,1,1,16,17]]],[44,7,7,17,24,[[1052,6,6,17,23],[1058,1,1,23,24]]],[48,1,1,24,25,[[1102,1,1,24,25]]],[53,1,1,25,26,[[1124,1,1,25,26]]],[57,3,3,26,29,[[1139,3,3,26,29]]],[60,2,2,29,31,[[1157,1,1,29,30],[1158,1,1,30,31]]],[61,7,4,31,35,[[1160,4,2,31,33],[1161,2,1,33,34],[1162,1,1,34,35]]],[62,3,3,35,38,[[1164,3,3,35,38]]]],[23636,23908,23910,24471,24472,24701,24703,24704,25617,25991,26499,26580,26629,26630,26664,26711,27538,28099,28100,28101,28102,28103,28104,28275,29339,29802,30069,30080,30082,30521,30524,30557,30558,30602,30624,30649,30650,30651]]],["commandments",[27,25,[[39,3,3,0,3,[[933,1,1,0,1],[947,1,1,1,2],[950,1,1,2,3]]],[40,2,2,3,5,[[966,1,1,3,4],[968,1,1,4,5]]],[41,2,2,5,7,[[973,1,1,5,6],[990,1,1,6,7]]],[42,4,3,7,10,[[1010,2,2,7,9],[1011,2,1,9,10]]],[45,2,2,10,12,[[1068,1,1,10,11],[1075,1,1,11,12]]],[48,1,1,12,13,[[1098,1,1,12,13]]],[50,1,1,13,14,[[1110,1,1,13,14]]],[55,1,1,14,15,[[1129,1,1,14,15]]],[61,7,6,15,21,[[1160,2,2,15,17],[1161,2,2,17,19],[1163,3,2,19,21]]],[62,1,1,21,22,[[1164,1,1,21,22]]],[65,3,3,22,25,[[1178,1,1,22,23],[1180,1,1,23,24],[1188,1,1,24,25]]]],[23253,23779,23912,24607,24702,24899,25708,26683,26689,26709,28506,28715,29244,29552,29906,30553,30554,30601,30603,30626,30627,30651,30908,30938,31094]]],["precept",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[24593,30124]]]]},{"k":"G1786","v":[["place",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27676]]]]},{"k":"G1787","v":[["within",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]]],[23944,25672]]]]},{"k":"G1788","v":[["*",[9,9,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,3,3,2,5,[[990,2,2,2,4],[992,1,1,4,5]]],[45,1,1,5,6,[[1065,1,1,5,6]]],[52,1,1,6,7,[[1118,1,1,6,7]]],[55,1,1,7,8,[[1130,1,1,7,8]]],[57,1,1,8,9,[[1144,1,1,8,9]]]],[23863,24679,25690,25692,25792,28447,29692,29916,30221]]],["ashamed",[2,2,[[52,1,1,0,1,[[1118,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]]],[29692,29916]]],["regard",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25692]]],["regarded",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25690]]],["reverence",[4,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]]],[23863,24679,25792,30221]]],["shame",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28447]]]]},{"k":"G1789","v":[["up",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29753]]]]},{"k":"G1790","v":[["*",[3,3,[[43,2,2,0,2,[[1024,1,1,0,1],[1033,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[27148,27512,30233]]],["+",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27148]]],["quake",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30233]]],["trembling",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27512]]]]},{"k":"G1791","v":[["shame",[2,2,[[45,2,2,0,2,[[1067,1,1,0,1],[1076,1,1,1,2]]]],[28472,28752]]]]},{"k":"G1792","v":[["themselves",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30513]]]]},{"k":"G1793","v":[["*",[5,5,[[43,1,1,0,1,[[1042,1,1,0,1]]],[44,3,3,1,4,[[1053,2,2,1,3],[1056,1,1,3,4]]],[57,1,1,4,5,[[1139,1,1,4,5]]]],[27820,28143,28150,28211,30089]]],["dealt",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27820]]],["intercession",[4,4,[[44,3,3,0,3,[[1053,2,2,0,2],[1056,1,1,2,3]]],[57,1,1,3,4,[[1139,1,1,3,4]]]],[28143,28150,28211,30089]]]]},{"k":"G1794","v":[["*",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]],[42,1,1,2,3,[[1016,1,1,2,3]]]],[24188,25988,26874]]],["together",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26874]]],["wrapped",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24188,25988]]]]},{"k":"G1795","v":[["engraven",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28848]]]]},{"k":"G1796","v":[["despite",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30162]]]]},{"k":"G1797","v":[["*",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[26966,30680]]],["dream",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26966]]],["dreamers",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30680]]]]},{"k":"G1798","v":[["dreams",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26966]]]]},{"k":"G1799","v":[["*",[96,88,[[41,21,19,0,19,[[973,5,5,0,5],[977,2,2,5,7],[980,1,1,7,8],[984,3,2,8,10],[985,1,1,10,11],[986,1,1,11,12],[987,3,3,12,15],[988,2,1,15,16],[995,1,1,16,17],[996,2,2,17,19]]],[42,1,1,19,20,[[1016,1,1,19,20]]],[43,15,15,20,35,[[1019,1,1,20,21],[1021,2,2,21,23],[1023,2,2,23,25],[1024,1,1,25,26],[1025,1,1,26,27],[1026,1,1,27,28],[1027,4,4,28,32],[1036,2,2,32,34],[1044,1,1,34,35]]],[44,3,3,35,38,[[1048,1,1,35,36],[1057,1,1,36,37],[1059,1,1,37,38]]],[45,1,1,38,39,[[1062,1,1,38,39]]],[46,4,3,39,42,[[1081,1,1,39,40],[1084,1,1,40,41],[1085,2,1,41,42]]],[47,1,1,42,43,[[1091,1,1,42,43]]],[53,6,6,43,49,[[1120,1,1,43,44],[1123,3,3,44,47],[1124,2,2,47,49]]],[54,2,2,49,51,[[1126,1,1,49,50],[1128,1,1,50,51]]],[57,2,2,51,53,[[1136,1,1,51,52],[1145,1,1,52,53]]],[58,1,1,53,54,[[1149,1,1,53,54]]],[59,1,1,54,55,[[1153,1,1,54,55]]],[61,1,1,55,56,[[1161,1,1,55,56]]],[63,1,1,56,57,[[1165,1,1,56,57]]],[65,36,31,57,88,[[1167,1,1,57,58],[1168,1,1,58,59],[1169,5,4,59,63],[1170,4,3,63,66],[1171,1,1,66,67],[1173,4,3,67,70],[1174,3,3,70,73],[1175,1,1,73,74],[1177,2,2,74,76],[1178,2,2,76,78],[1179,3,3,78,81],[1180,5,3,81,84],[1181,1,1,84,85],[1182,1,1,85,86],[1185,1,1,86,87],[1186,1,1,87,88]]]],[24899,24908,24910,24912,24968,25125,25132,25292,25465,25468,25544,25563,25598,25606,25609,25635,25949,26002,26034,26897,26974,27032,27041,27106,27107,27162,27197,27231,27263,27289,27290,27292,27594,27604,27890,28011,28262,28302,28392,28861,28928,28953,29077,29719,29767,29783,29784,29800,29801,29841,29871,30027,30262,30347,30428,30601,30664,30701,30731,30748,30751,30754,30755,30773,30774,30778,30787,30819,30821,30825,30829,30830,30831,30853,30876,30888,30895,30901,30920,30921,30922,30929,30931,30936,30950,30973,31037,31050]]],["+",[7,7,[[41,2,2,0,2,[[985,1,1,0,1],[987,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[45,1,1,3,4,[[1062,1,1,3,4]]],[57,2,2,4,6,[[1136,1,1,4,5],[1145,1,1,5,6]]],[61,1,1,6,7,[[1161,1,1,6,7]]]],[25544,25609,28011,28392,30027,30262,30601]]],["before",[64,59,[[41,13,12,0,12,[[973,3,3,0,3],[977,2,2,3,5],[980,1,1,5,6],[984,3,2,6,8],[987,1,1,8,9],[988,1,1,9,10],[995,1,1,10,11],[996,1,1,11,12]]],[43,10,10,12,22,[[1019,1,1,12,13],[1021,1,1,13,14],[1023,1,1,14,15],[1024,1,1,15,16],[1026,1,1,16,17],[1027,3,3,17,20],[1036,2,2,20,22]]],[44,1,1,22,23,[[1059,1,1,22,23]]],[47,1,1,23,24,[[1091,1,1,23,24]]],[53,4,4,24,28,[[1123,3,3,24,27],[1124,1,1,27,28]]],[54,2,2,28,30,[[1126,1,1,28,29],[1128,1,1,29,30]]],[63,1,1,30,31,[[1165,1,1,30,31]]],[65,32,28,31,59,[[1167,1,1,31,32],[1168,1,1,32,33],[1169,5,4,33,37],[1170,4,3,37,40],[1171,1,1,40,41],[1173,4,3,41,44],[1174,3,3,44,47],[1175,1,1,47,48],[1177,2,2,48,50],[1178,2,2,50,52],[1179,1,1,52,53],[1180,3,2,53,55],[1181,1,1,55,56],[1182,1,1,56,57],[1185,1,1,57,58],[1186,1,1,58,59]]]],[24899,24910,24968,25125,25132,25292,25465,25468,25606,25635,25949,26034,26974,27032,27107,27162,27231,27263,27289,27292,27594,27604,28302,29077,29767,29783,29784,29800,29841,29871,30664,30701,30731,30748,30751,30754,30755,30773,30774,30778,30787,30819,30821,30825,30829,30830,30831,30853,30876,30888,30895,30901,30920,30929,30931,30950,30973,31037,31050]]],["presence",[7,6,[[41,3,3,0,3,[[973,1,1,0,1],[986,1,1,1,2],[987,1,1,2,3]]],[42,1,1,3,4,[[1016,1,1,3,4]]],[43,1,1,4,5,[[1044,1,1,4,5]]],[65,2,1,5,6,[[1180,2,1,5,6]]]],[24912,25563,25598,26897,27890,30936]]],["sight",[16,15,[[41,2,2,0,2,[[973,1,1,0,1],[988,1,1,1,2]]],[43,3,3,2,5,[[1021,1,1,2,3],[1025,1,1,3,4],[1027,1,1,4,5]]],[44,1,1,5,6,[[1057,1,1,5,6]]],[46,4,3,6,9,[[1081,1,1,6,7],[1084,1,1,7,8],[1085,2,1,8,9]]],[53,2,2,9,11,[[1120,1,1,9,10],[1124,1,1,10,11]]],[58,1,1,11,12,[[1149,1,1,11,12]]],[59,1,1,12,13,[[1153,1,1,12,13]]],[65,2,2,13,15,[[1179,2,2,13,15]]]],[24908,25635,27041,27197,27290,28262,28861,28928,28953,29719,29801,30347,30428,30921,30922]]],["the",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27106]]],["to",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26002]]]]},{"k":"G1800","v":[["Enos",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25063]]]]},{"k":"G1801","v":[["hearken",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26963]]]]},{"k":"G1802","v":[["Enoch",[3,3,[[41,1,1,0,1,[[975,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[25062,30177,30686]]]]},{"k":"G1803","v":[["*",[12,12,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,2,2,2,4,[[976,1,1,2,3],[985,1,1,3,4]]],[42,3,3,4,7,[[998,2,2,4,6],[1008,1,1,6,7]]],[43,3,3,7,10,[[1028,1,1,7,8],[1035,1,1,8,9],[1044,1,1,9,10]]],[58,1,1,10,11,[[1150,1,1,10,11]]],[65,1,1,11,12,[[1170,1,1,11,12]]]],[23701,24540,25088,25532,26101,26115,26581,27319,27568,27892,30371,30776]]],["+",[2,2,[[42,1,1,0,1,[[998,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[26115,27892]]],["six",[10,10,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,2,2,2,4,[[976,1,1,2,3],[985,1,1,3,4]]],[42,2,2,4,6,[[998,1,1,4,5],[1008,1,1,5,6]]],[43,2,2,6,8,[[1028,1,1,6,7],[1035,1,1,7,8]]],[58,1,1,8,9,[[1150,1,1,8,9]]],[65,1,1,9,10,[[1170,1,1,9,10]]]],[23701,24540,25088,25532,26101,26581,27319,27568,30371,30776]]]]},{"k":"G1804","v":[["forth",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30408]]]]},{"k":"G1805","v":[["*",[4,4,[[47,2,2,0,2,[[1093,1,1,0,1],[1094,1,1,1,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]],[50,1,1,3,4,[[1110,1,1,3,4]]]],[29115,29136,29320,29547]]],["Redeeming",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29320]]],["redeem",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29136]]],["redeemed",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29115]]],["redeeming",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29547]]]]},{"k":"G1806","v":[["*",[13,13,[[40,2,2,0,2,[[964,1,1,0,1],[971,1,1,1,2]]],[41,1,1,2,3,[[996,1,1,2,3]]],[42,1,1,3,4,[[1006,1,1,3,4]]],[43,8,8,4,12,[[1022,1,1,4,5],[1024,2,2,5,7],[1029,1,1,7,8],[1030,1,1,8,9],[1033,2,2,9,11],[1038,1,1,11,12]]],[57,1,1,12,13,[[1140,1,1,12,13]]]],[24523,24846,26041,26484,27078,27152,27156,27354,27379,27520,27522,27702,30101]]],["+",[5,5,[[40,1,1,0,1,[[971,1,1,0,1]]],[42,1,1,1,2,[[1006,1,1,1,2]]],[43,3,3,2,5,[[1022,1,1,2,3],[1024,1,1,3,4],[1033,1,1,4,5]]]],[24846,26484,27078,27152,27520]]],["brought",[3,3,[[43,3,3,0,3,[[1024,1,1,0,1],[1029,1,1,1,2],[1030,1,1,2,3]]]],[27156,27354,27379]]],["lead",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30101]]],["led",[2,2,[[40,1,1,0,1,[[964,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]]],[24523,26041]]],["out",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1038,1,1,1,2]]]],[27522,27702]]]]},{"k":"G1807","v":[["*",[8,8,[[39,2,2,0,2,[[933,1,1,0,1],[946,1,1,1,2]]],[43,5,5,2,7,[[1024,2,2,2,4],[1029,1,1,4,5],[1040,1,1,5,6],[1043,1,1,6,7]]],[47,1,1,7,8,[[1091,1,1,7,8]]]],[23263,23736,27126,27150,27348,27761,27840,29061]]],["+",[2,2,[[39,2,2,0,2,[[933,1,1,0,1],[946,1,1,1,2]]]],[23263,23736]]],["Delivering",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27840]]],["deliver",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[47,1,1,1,2,[[1091,1,1,1,2]]]],[27150,29061]]],["delivered",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1029,1,1,1,2]]]],[27126,27348]]],["rescued",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27761]]]]},{"k":"G1808","v":[["away",[2,2,[[45,2,2,0,2,[[1066,2,2,0,2]]]],[28456,28467]]]]},{"k":"G1809","v":[["desired",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25895]]]]},{"k":"G1810","v":[["suddenly",[5,5,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[981,1,1,2,3]]],[43,2,2,3,5,[[1026,1,1,3,4],[1039,1,1,4,5]]]],[24753,24986,25340,27219,27710]]]]},{"k":"G1811","v":[["*",[3,3,[[60,3,3,0,3,[[1156,1,1,0,1],[1157,2,2,1,3]]]],[30495,30502,30515]]],["follow",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30502]]],["followed",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30495]]],["following",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30515]]]]},{"k":"G1812","v":[["+",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30946]]]]},{"k":"G1813","v":[["*",[5,5,[[43,1,1,0,1,[[1020,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]],[65,3,3,2,5,[[1169,1,1,2,3],[1173,1,1,3,4],[1187,1,1,4,5]]]],[27015,29508,30751,30827,31057]]],["away",[2,2,[[65,2,2,0,2,[[1173,1,1,0,1],[1187,1,1,1,2]]]],[30827,31057]]],["out",[3,3,[[43,1,1,0,1,[[1020,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]],[65,1,1,2,3,[[1169,1,1,2,3]]]],[27015,29508,30751]]]]},{"k":"G1814","v":[["up",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27004]]]]},{"k":"G1815","v":[["resurrection",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29432]]]]},{"k":"G1816","v":[["up",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]]],[23544,24328]]]]},{"k":"G1817","v":[["up",[3,3,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[992,1,1,1,2]]],[43,1,1,2,3,[[1032,1,1,2,3]]]],[24692,25807,27447]]]]},{"k":"G1818","v":[["*",[5,5,[[44,2,2,0,2,[[1052,1,1,0,1],[1061,1,1,1,2]]],[45,1,1,2,3,[[1064,1,1,2,3]]],[46,1,1,3,4,[[1088,1,1,3,4]]],[52,1,1,4,5,[[1117,1,1,4,5]]]],[28102,28354,28428,28992,29664]]],["beguiled",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28992]]],["deceive",[3,3,[[44,1,1,0,1,[[1061,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]]],[28354,28428,29664]]],["deceived",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28102]]]]},{"k":"G1819","v":[["suddenly",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24546]]]]},{"k":"G1820","v":[["*",[2,2,[[46,2,2,0,2,[[1078,1,1,0,1],[1081,1,1,1,2]]]],[28808,28867]]],["despair",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28867]]],["despaired",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28808]]]]},{"k":"G1821","v":[["*",[11,11,[[41,3,3,0,3,[[973,1,1,0,1],[992,2,2,1,3]]],[43,6,6,3,9,[[1024,1,1,3,4],[1026,1,1,4,5],[1028,1,1,5,6],[1029,1,1,6,7],[1034,1,1,7,8],[1039,1,1,8,9]]],[47,2,2,9,11,[[1094,2,2,9,11]]]],[24946,25789,25790,27128,27246,27329,27348,27537,27725,29135,29137]]],["+",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[24946,27246]]],["away",[3,3,[[41,2,2,0,2,[[992,2,2,0,2]]],[43,1,1,2,3,[[1034,1,1,2,3]]]],[25789,25790,27537]]],["forth",[3,3,[[43,1,1,0,1,[[1028,1,1,0,1]]],[47,2,2,1,3,[[1094,2,2,1,3]]]],[27329,29135,29137]]],["out",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27128]]],["send",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27725]]],["sent",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27348]]]]},{"k":"G1822","v":[["*",[2,2,[[43,1,1,0,1,[[1038,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[27669,29870]]],["accomplished",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27669]]],["furnished",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29870]]]]},{"k":"G1823","v":[["glistering",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25330]]]]},{"k":"G1824","v":[["*",[6,6,[[40,1,1,0,1,[[962,1,1,0,1]]],[43,4,4,1,5,[[1027,1,1,1,2],[1028,1,1,2,3],[1038,1,1,3,4],[1040,1,1,4,5]]],[49,1,1,5,6,[[1104,1,1,5,6]]]],[24432,27292,27318,27696,27764,29414]]],["Immediately",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27292]]],["by",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24432]]],["immediately",[2,2,[[43,2,2,0,2,[[1028,1,1,0,1],[1038,1,1,1,2]]]],[27318,27696]]],["presently",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29414]]],["straightway",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27764]]]]},{"k":"G1825","v":[["*",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[45,1,1,1,2,[[1067,1,1,1,2]]]],[28172,28481]]],["+",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28172]]],["up",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28481]]]]},{"k":"G1826","v":[["*",[4,4,[[43,4,4,0,4,[[1030,1,1,0,1],[1034,1,1,1,2],[1037,1,1,2,3],[1044,1,1,3,4]]]],[27404,27538,27633,27898]]],["depart",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27633]]],["departed",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27538]]],["get",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27898]]],["gone",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27404]]]]},{"k":"G1827","v":[["convince",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30687]]]]},{"k":"G1828","v":[["away",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30280]]]]},{"k":"G1829","v":[["+",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30522]]]]},{"k":"G1830","v":[["diligently",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30384]]]]},{"k":"G1831","v":[["*",[222,216,[[39,44,44,0,44,[[930,1,1,0,1],[933,1,1,1,2],[936,3,3,2,5],[937,3,3,5,8],[938,2,2,8,10],[939,3,3,10,13],[940,3,3,13,16],[941,3,3,16,19],[942,1,1,19,20],[943,4,4,20,24],[945,1,1,24,25],[946,1,1,25,26],[948,4,4,26,30],[949,1,1,30,31],[950,1,1,31,32],[952,3,3,32,35],[953,2,2,35,37],[954,4,4,37,41],[955,2,2,41,43],[956,1,1,43,44]]],[40,40,40,44,84,[[957,7,7,44,51],[958,2,2,51,53],[959,2,2,53,55],[960,1,1,55,56],[961,5,5,56,61],[962,6,6,61,67],[963,3,3,67,70],[964,2,2,70,72],[965,4,4,72,76],[967,2,2,76,78],[970,4,4,78,82],[972,2,2,82,84]]],[41,44,41,84,125,[[973,1,1,84,85],[974,1,1,85,86],[976,6,5,86,91],[977,2,2,91,93],[978,2,2,93,95],[979,4,4,95,99],[980,9,8,99,107],[981,3,3,107,110],[982,2,2,110,112],[983,3,2,112,114],[984,1,1,114,115],[985,1,1,115,116],[986,3,3,116,119],[987,1,1,119,120],[989,1,1,120,121],[993,1,1,121,122],[994,3,3,122,125]]],[42,30,30,125,155,[[997,1,1,125,126],[1000,2,2,126,128],[1004,3,3,128,131],[1006,2,2,131,133],[1007,2,2,133,135],[1008,1,1,135,136],[1009,3,3,136,139],[1012,3,3,139,142],[1013,1,1,142,143],[1014,5,5,143,148],[1015,4,4,148,152],[1016,1,1,152,153],[1017,2,2,153,155]]],[43,33,31,155,186,[[1018,1,1,155,156],[1024,3,3,156,159],[1025,1,1,159,160],[1027,1,1,160,161],[1028,1,1,161,162],[1029,3,3,162,165],[1031,1,1,165,166],[1032,2,2,166,168],[1033,10,8,168,176],[1034,1,1,176,177],[1035,1,1,177,178],[1036,1,1,178,179],[1037,2,2,179,181],[1038,2,2,181,183],[1039,1,1,183,184],[1045,2,2,184,186]]],[44,1,1,186,187,[[1055,1,1,186,187]]],[45,2,2,187,189,[[1066,1,1,187,188],[1075,1,1,188,189]]],[46,3,3,189,192,[[1079,1,1,189,190],[1083,1,1,190,191],[1085,1,1,191,192]]],[49,1,1,192,193,[[1106,1,1,192,193]]],[51,1,1,193,194,[[1111,1,1,193,194]]],[57,6,5,194,199,[[1135,1,1,194,195],[1139,1,1,195,196],[1143,3,2,196,198],[1145,1,1,198,199]]],[58,1,1,199,200,[[1148,1,1,199,200]]],[61,2,2,200,202,[[1160,1,1,200,201],[1162,1,1,201,202]]],[63,1,1,202,203,[[1165,1,1,202,203]]],[65,13,13,203,216,[[1169,1,1,203,204],[1172,2,2,204,206],[1175,1,1,206,207],[1180,4,4,207,211],[1181,1,1,211,212],[1182,1,1,212,213],[1184,1,1,213,214],[1185,1,1,214,215],[1186,1,1,215,216]]]],[23175,23260,23373,23377,23379,23405,23410,23411,23428,23431,23466,23467,23468,23503,23532,23533,23540,23542,23588,23611,23651,23652,23654,23655,23718,23755,23793,23795,23797,23798,23843,23882,23958,23983,23984,24009,24014,24084,24109,24125,24129,24161,24182,24203,24240,24241,24243,24244,24250,24253,24260,24272,24273,24294,24309,24326,24366,24372,24377,24378,24394,24408,24417,24419,24431,24441,24461,24492,24493,24494,24511,24527,24563,24564,24567,24568,24651,24652,24770,24780,24802,24822,24881,24893,24915,24974,25077,25098,25099,25104,25105,25115,25134,25158,25165,25212,25219,25220,25221,25247,25250,25272,25274,25278,25280,25283,25291,25305,25306,25307,25373,25398,25419,25429,25518,25549,25571,25574,25576,25616,25680,25863,25903,25916,25926,26087,26186,26199,26390,26423,26440,26490,26520,26554,26567,26593,26633,26660,26661,26753,26754,26756,26767,26786,26789,26801,26814,26823,26829,26830,26842,26859,26870,26901,26921,26944,27119,27120,27123,27183,27282,27332,27346,27347,27354,27434,27466,27482,27486,27493,27496,27501,27502,27519,27522,27523,27556,27580,27597,27627,27637,27669,27672,27722,27902,27914,28206,28464,28714,28837,28915,28949,29457,29568,30011,30069,30180,30187,30254,30329,30569,30604,30665,30758,30795,30797,30843,30941,30943,30944,30946,30952,30971,30997,31022,31046]]],["+",[5,5,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,2,2,1,3,[[978,1,1,1,2],[987,1,1,2,3]]],[42,2,2,3,5,[[1009,1,1,3,4],[1017,1,1,4,5]]]],[23983,25165,25616,26660,26921]]],["Come",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[24372,30997]]],["Depart",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25115]]],["Get",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27119]]],["abroad",[3,3,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[51,1,1,2,3,[[1111,1,1,2,3]]]],[23405,24243,29568]]],["away",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27282]]],["came",[19,19,[[39,2,2,0,2,[[943,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,2,2,3,5,[[976,2,2,3,5]]],[42,1,1,5,6,[[1015,1,1,5,6]]],[43,3,3,6,9,[[1024,1,1,6,7],[1045,2,2,7,9]]],[45,1,1,9,10,[[1075,1,1,9,10]]],[57,1,1,10,11,[[1135,1,1,10,11]]],[65,8,8,11,19,[[1175,1,1,11,12],[1180,4,4,12,16],[1181,1,1,16,17],[1182,1,1,17,18],[1185,1,1,18,19]]]],[23655,24182,24241,25098,25104,26830,27120,27902,27914,28714,30011,30843,30941,30943,30944,30946,30952,30971,31022]]],["come",[12,12,[[39,1,1,0,1,[[930,1,1,0,1]]],[40,6,6,1,7,[[957,2,2,1,3],[961,1,1,3,4],[962,1,1,4,5],[965,1,1,5,6],[967,1,1,6,7]]],[41,2,2,7,9,[[976,1,1,7,8],[980,1,1,8,9]]],[42,1,1,9,10,[[1009,1,1,9,10]]],[43,1,1,10,11,[[1033,1,1,10,11]]],[57,1,1,11,12,[[1139,1,1,11,12]]]],[23175,24240,24244,24366,24461,24563,24652,25098,25274,26633,27501,30069]]],["cometh",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23984]]],["coming",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23373]]],["depart",[5,5,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,2,2,2,4,[[981,1,1,2,3],[984,1,1,3,4]]],[43,1,1,4,5,[[1033,1,1,4,5]]]],[23431,24417,25305,25518,27519]]],["departed",[22,22,[[39,3,3,0,3,[[937,1,1,0,1],[945,1,1,1,2],[956,1,1,2,3]]],[40,1,1,3,4,[[965,1,1,3,4]]],[41,5,5,4,9,[[976,1,1,4,5],[980,2,2,5,7],[981,1,1,7,8],[982,1,1,8,9]]],[42,1,1,9,10,[[1000,1,1,9,10]]],[43,11,11,10,21,[[1028,1,1,10,11],[1029,1,1,11,12],[1031,1,1,12,13],[1032,1,1,13,14],[1033,1,1,14,15],[1034,1,1,15,16],[1035,1,1,16,17],[1037,2,2,17,19],[1038,2,2,19,21]]],[49,1,1,21,22,[[1106,1,1,21,22]]]],[23410,23718,24203,24568,25105,25280,25283,25307,25398,26199,27332,27354,27434,27482,27523,27556,27580,27627,27637,27669,27672,29457]]],["departing",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24494]]],["escaped",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26520]]],["forth",[33,33,[[39,5,5,0,5,[[941,2,2,0,2],[942,1,1,2,3],[943,1,1,3,4],[953,1,1,4,5]]],[40,9,9,5,14,[[957,1,1,5,6],[958,2,2,6,8],[959,1,1,8,9],[962,1,1,9,10],[964,1,1,10,11],[965,1,1,11,12],[970,1,1,12,13],[972,1,1,13,14]]],[41,3,3,14,17,[[977,1,1,14,15],[979,1,1,15,16],[980,1,1,16,17]]],[42,11,11,17,28,[[997,1,1,17,18],[1004,1,1,18,19],[1007,1,1,19,20],[1008,1,1,20,21],[1012,2,2,21,23],[1014,2,2,23,25],[1015,1,1,25,26],[1016,1,1,26,27],[1017,1,1,27,28]]],[43,2,2,28,30,[[1024,1,1,28,29],[1033,1,1,29,30]]],[57,1,1,30,31,[[1145,1,1,30,31]]],[63,1,1,31,32,[[1165,1,1,31,32]]],[65,1,1,32,33,[[1172,1,1,32,33]]]],[23542,23588,23611,23651,24009,24253,24272,24273,24294,24431,24511,24567,24770,24893,25134,25212,25272,26087,26423,26567,26593,26754,26756,26786,26789,26842,26870,26901,27123,27486,30254,30665,30795]]],["get",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27722]]],["go",[6,6,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[986,1,1,2,3]]],[43,1,1,3,4,[[1033,1,1,3,4]]],[45,1,1,4,5,[[1066,1,1,4,5]]],[65,1,1,5,6,[[1169,1,1,5,6]]]],[23428,25306,25571,27493,28464,30758]]],["gone",[6,6,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[963,1,1,2,3]]],[41,2,2,3,5,[[980,1,1,3,4],[983,1,1,4,5]]],[43,1,1,5,6,[[1033,1,1,5,6]]]],[23532,24394,24492,25291,25429,27502]]],["out",[82,81,[[39,21,21,0,21,[[933,1,1,0,1],[936,2,2,1,3],[937,1,1,3,4],[939,3,3,4,7],[940,2,2,7,9],[946,1,1,9,10],[948,4,4,10,14],[950,1,1,14,15],[952,1,1,15,16],[953,1,1,16,17],[954,3,3,17,20],[955,1,1,20,21]]],[40,16,16,21,37,[[957,2,2,21,23],[959,1,1,23,24],[960,1,1,24,25],[961,2,2,25,27],[962,3,3,27,30],[963,1,1,30,31],[964,1,1,31,32],[965,1,1,32,33],[967,1,1,33,34],[970,2,2,34,36],[972,1,1,36,37]]],[41,20,20,37,57,[[973,1,1,37,38],[974,1,1,38,39],[976,2,2,39,41],[978,1,1,41,42],[979,3,3,42,45],[980,2,2,45,47],[982,1,1,47,48],[983,2,2,48,50],[985,1,1,50,51],[986,2,2,51,53],[989,1,1,53,54],[993,1,1,54,55],[994,2,2,55,57]]],[42,10,10,57,67,[[1004,1,1,57,58],[1006,1,1,58,59],[1007,1,1,59,60],[1009,1,1,60,61],[1012,1,1,61,62],[1013,1,1,62,63],[1014,3,3,63,66],[1015,1,1,66,67]]],[43,7,7,67,74,[[1018,1,1,67,68],[1025,1,1,68,69],[1029,2,2,69,71],[1032,1,1,71,72],[1033,2,2,72,74]]],[46,1,1,74,75,[[1083,1,1,74,75]]],[57,3,2,75,77,[[1143,3,2,75,77]]],[61,2,2,77,79,[[1160,1,1,77,78],[1162,1,1,78,79]]],[65,2,2,79,81,[[1172,1,1,79,80],[1186,1,1,80,81]]]],[23260,23377,23379,23411,23466,23467,23468,23503,23533,23755,23793,23795,23797,23798,23882,23958,24014,24084,24109,24125,24161,24250,24260,24309,24326,24377,24378,24408,24419,24441,24493,24527,24564,24651,24780,24802,24881,24915,24974,25077,25099,25158,25219,25220,25221,25250,25280,25373,25419,25429,25549,25574,25576,25680,25863,25903,25916,26390,26490,26554,26661,26753,26767,26801,26814,26823,26859,26944,27183,27346,27347,27466,27501,27522,28915,30180,30187,30569,30604,30797,31046]]],["proceed",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23652]]],["proceedeth",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30329]]],["thence",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28837]]],["went",[16,16,[[39,4,4,0,4,[[941,1,1,0,1],[943,1,1,1,2],[949,1,1,2,3],[954,1,1,3,4]]],[40,1,1,4,5,[[970,1,1,4,5]]],[41,3,3,5,8,[[980,2,2,5,7],[994,1,1,7,8]]],[42,3,3,8,11,[[1000,1,1,8,9],[1004,1,1,9,10],[1015,1,1,10,11]]],[43,3,3,11,14,[[1033,2,2,11,13],[1036,1,1,13,14]]],[44,1,1,14,15,[[1055,1,1,14,15]]],[46,1,1,15,16,[[1085,1,1,15,16]]]],[23540,23654,23843,24129,24822,25247,25278,25926,26186,26440,26829,27496,27523,27597,28206,28949]]]]},{"k":"G1832","v":[["*",[32,30,[[39,9,9,0,9,[[940,4,4,0,4],[942,1,1,4,5],[947,1,1,5,6],[948,1,1,6,7],[950,1,1,7,8],[955,1,1,8,9]]],[40,6,6,9,15,[[958,2,2,9,11],[959,1,1,11,12],[962,1,1,12,13],[966,1,1,13,14],[968,1,1,14,15]]],[41,5,5,15,20,[[978,3,3,15,18],[986,1,1,18,19],[992,1,1,19,20]]],[42,2,2,20,22,[[1001,1,1,20,21],[1014,1,1,21,22]]],[43,5,5,22,27,[[1019,1,1,22,23],[1025,1,1,23,24],[1033,1,1,24,25],[1038,1,1,25,26],[1039,1,1,26,27]]],[45,4,2,27,29,[[1067,2,1,27,28],[1071,2,1,28,29]]],[46,1,1,29,30,[[1089,1,1,29,30]]]],[23491,23493,23499,23501,23601,23765,23807,23889,24135,24284,24286,24292,24425,24590,24687,25148,25150,25155,25556,25801,26220,26816,26978,27213,27504,27701,27729,28479,28590,29026]]],["+",[13,13,[[39,4,4,0,4,[[940,1,1,0,1],[942,1,1,1,2],[948,1,1,2,3],[955,1,1,3,4]]],[40,3,3,4,7,[[958,2,2,4,6],[962,1,1,6,7]]],[41,2,2,7,9,[[978,2,2,7,9]]],[42,2,2,9,11,[[1001,1,1,9,10],[1014,1,1,10,11]]],[43,1,1,11,12,[[1033,1,1,11,12]]],[46,1,1,12,13,[[1089,1,1,12,13]]]],[23491,23601,23807,24135,24284,24286,24425,25148,25150,26220,26816,27504,29026]]],["May",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27701]]],["lawful",[16,14,[[39,5,5,0,5,[[940,3,3,0,3],[947,1,1,3,4],[950,1,1,4,5]]],[40,3,3,5,8,[[959,1,1,5,6],[966,1,1,6,7],[968,1,1,7,8]]],[41,3,3,8,11,[[978,1,1,8,9],[986,1,1,9,10],[992,1,1,10,11]]],[43,1,1,11,12,[[1039,1,1,11,12]]],[45,4,2,12,14,[[1067,2,1,12,13],[1071,2,1,13,14]]]],[23493,23499,23501,23765,23889,24292,24590,24687,25155,25556,25801,27729,28479,28590]]],["let",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26978]]],["mayest",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27213]]]]},{"k":"G1833","v":[["*",[3,3,[[39,2,2,0,2,[[930,1,1,0,1],[938,1,1,1,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]]],[23177,23428,26910]]],["ask",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26910]]],["enquire",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23428]]],["search",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23177]]]]},{"k":"G1834","v":[["*",[6,6,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]],[43,4,4,2,6,[[1027,1,1,2,3],[1032,2,2,3,5],[1038,1,1,5,6]]]],[26026,26062,27267,27454,27456,27683]]],["declared",[4,4,[[42,1,1,0,1,[[997,1,1,0,1]]],[43,3,3,1,4,[[1027,1,1,1,2],[1032,1,1,2,3],[1038,1,1,3,4]]]],[26062,27267,27456,27683]]],["declaring",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27454]]],["told",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26026]]]]},{"k":"G1835","v":[["*",[8,8,[[39,2,2,0,2,[[941,2,2,0,2]]],[40,2,2,2,4,[[960,2,2,2,4]]],[41,1,1,4,5,[[996,1,1,4,5]]],[53,1,1,5,6,[[1123,1,1,5,6]]],[65,2,2,6,8,[[1177,1,1,6,7],[1178,1,1,7,8]]]],[23547,23562,24331,24343,26004,29772,30875,30897]]],["+",[4,4,[[39,2,2,0,2,[[941,2,2,0,2]]],[65,2,2,2,4,[[1177,1,1,2,3],[1178,1,1,3,4]]]],[23547,23562,30875,30897]]],["sixty",[2,2,[[40,2,2,0,2,[[960,2,2,0,2]]]],[24331,24343]]],["threescore",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[26004,29772]]]]},{"k":"G1836","v":[["*",[5,5,[[41,2,2,0,2,[[979,1,1,0,1],[981,1,1,1,2]]],[43,3,3,2,5,[[1038,1,1,2,3],[1042,1,1,3,4],[1044,1,1,4,5]]]],[25206,25338,27665,27813,27873]]],["after",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25206]]],["following",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27665]]],["morrow",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27813]]],["next",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[25338,27873]]]]},{"k":"G1837","v":[["out",[1,1,[[51,1,1,0,1,[[1111,1,1,0,1]]]],[29568]]]]},{"k":"G1838","v":[["use",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30044]]]]},{"k":"G1839","v":[["*",[17,17,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,4,4,1,5,[[958,1,1,1,2],[959,1,1,2,3],[961,1,1,3,4],[962,1,1,4,5]]],[41,3,3,5,8,[[974,1,1,5,6],[980,1,1,6,7],[996,1,1,7,8]]],[43,8,8,8,16,[[1019,2,2,8,10],[1025,3,3,10,13],[1026,1,1,13,14],[1027,1,1,14,15],[1029,1,1,15,16]]],[46,1,1,16,17,[[1082,1,1,16,17]]]],[23512,24272,24309,24406,24458,25020,25301,26013,26956,26961,27185,27187,27189,27237,27304,27353,28890]]],["+",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26013]]],["amazed",[6,6,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[962,1,1,2,3]]],[43,3,3,3,6,[[1019,2,2,3,5],[1026,1,1,5,6]]]],[23512,24272,24458,26956,26961,27237]]],["astonished",[5,5,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[980,1,1,2,3]]],[43,2,2,3,5,[[1027,1,1,3,4],[1029,1,1,4,5]]]],[24406,25020,25301,27304,27353]]],["bewitched",[2,2,[[43,2,2,0,2,[[1025,2,2,0,2]]]],[27185,27187]]],["himself",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24309]]],["ourselves",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28890]]],["wondered",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27189]]]]},{"k":"G1840","v":[["able",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29269]]]]},{"k":"G1841","v":[["*",[3,3,[[41,1,1,0,1,[[981,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]],[60,1,1,2,3,[[1156,1,1,2,3]]]],[25332,30194,30494]]],["decease",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[25332,30494]]],["departing",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30194]]]]},{"k":"G1842","v":[["destroyed",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27019]]]]},{"k":"G1843","v":[["*",[11,11,[[39,2,2,0,2,[[931,1,1,0,1],[939,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,2,2,3,5,[[982,1,1,3,4],[994,1,1,4,5]]],[43,1,1,5,6,[[1036,1,1,5,6]]],[44,2,2,6,8,[[1059,1,1,6,7],[1060,1,1,7,8]]],[49,1,1,8,9,[[1104,1,1,8,9]]],[58,1,1,9,10,[[1150,1,1,9,10]]],[65,1,1,10,11,[[1169,1,1,10,11]]]],[23198,23484,24220,25384,25870,27603,28291,28312,29402,30370,30751]]],["Confess",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30370]]],["confess",[4,4,[[44,2,2,0,2,[[1059,1,1,0,1],[1060,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[65,1,1,3,4,[[1169,1,1,3,4]]]],[28291,28312,29402,30751]]],["confessed",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27603]]],["confessing",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23198,24220]]],["promised",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25870]]],["thank",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[23484,25384]]]]},{"k":"G1844","v":[["adjure",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24117]]]]},{"k":"G1845","v":[["exorcists",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27598]]]]},{"k":"G1846","v":[["*",[2,2,[[40,1,1,0,1,[[958,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]]],[24264,29146]]],["+",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29146]]],["up",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24264]]]]},{"k":"G1847","v":[["nought",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24550]]]]},{"k":"G1848","v":[["*",[11,11,[[41,2,2,0,2,[[990,1,1,0,1],[995,1,1,1,2]]],[43,1,1,2,3,[[1021,1,1,2,3]]],[44,2,2,3,5,[[1059,2,2,3,5]]],[45,3,3,5,8,[[1062,1,1,5,6],[1067,1,1,6,7],[1077,1,1,7,8]]],[46,1,1,8,9,[[1087,1,1,8,9]]],[47,1,1,9,10,[[1094,1,1,9,10]]],[51,1,1,10,11,[[1115,1,1,10,11]]]],[25697,25946,27033,28283,28290,28391,28471,28787,28981,29145,29641]]],["+",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25946]]],["Despise",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29641]]],["contemptible",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28981]]],["despise",[2,2,[[44,1,1,0,1,[[1059,1,1,0,1]]],[45,1,1,1,2,[[1077,1,1,1,2]]]],[28283,28787]]],["despised",[3,3,[[41,1,1,0,1,[[990,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]],[47,1,1,2,3,[[1094,1,1,2,3]]]],[25697,28391,29145]]],["esteemed",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28471]]],["nought",[2,2,[[43,1,1,0,1,[[1021,1,1,0,1]]],[44,1,1,1,2,[[1059,1,1,1,2]]]],[27033,28290]]]]},{"k":"G1849","v":[["*",[103,93,[[39,10,9,0,9,[[935,1,1,0,1],[936,1,1,1,2],[937,2,2,2,4],[938,1,1,4,5],[949,4,3,5,8],[956,1,1,8,9]]],[40,10,9,9,18,[[957,2,2,9,11],[958,1,1,11,12],[959,1,1,12,13],[962,1,1,13,14],[967,4,3,14,17],[969,1,1,17,18]]],[41,16,15,18,33,[[976,3,3,18,21],[977,1,1,21,22],[979,1,1,22,23],[981,1,1,23,24],[982,1,1,24,25],[984,2,2,25,27],[991,1,1,27,28],[992,4,3,28,31],[994,1,1,31,32],[995,1,1,32,33]]],[42,8,6,33,39,[[997,1,1,33,34],[1001,1,1,34,35],[1006,2,1,35,36],[1013,1,1,36,37],[1015,3,2,37,39]]],[43,7,7,39,46,[[1018,1,1,39,40],[1022,1,1,40,41],[1025,1,1,41,42],[1026,1,1,42,43],[1043,3,3,43,46]]],[44,6,4,46,50,[[1054,1,1,46,47],[1058,5,3,47,50]]],[45,10,9,50,59,[[1068,1,1,50,51],[1069,1,1,51,52],[1070,6,5,52,57],[1072,1,1,57,58],[1076,1,1,58,59]]],[46,2,2,59,61,[[1087,1,1,59,60],[1090,1,1,60,61]]],[48,4,4,61,65,[[1097,1,1,61,62],[1098,1,1,62,63],[1099,1,1,63,64],[1102,1,1,64,65]]],[50,4,4,65,69,[[1107,2,2,65,67],[1108,2,2,67,69]]],[52,1,1,69,70,[[1118,1,1,69,70]]],[55,1,1,70,71,[[1131,1,1,70,71]]],[57,1,1,71,72,[[1145,1,1,71,72]]],[59,1,1,72,73,[[1153,1,1,72,73]]],[64,1,1,73,74,[[1166,1,1,73,74]]],[65,21,19,74,93,[[1168,1,1,74,75],[1172,1,1,75,76],[1175,4,3,76,79],[1177,2,1,79,80],[1178,1,1,80,81],[1179,5,5,81,86],[1180,1,1,86,87],[1182,1,1,87,88],[1183,2,2,88,90],[1184,1,1,90,91],[1186,1,1,91,92],[1188,1,1,92,93]]]],[23345,23354,23385,23387,23418,23849,23850,23853,24213,24237,24242,24270,24303,24414,24668,24669,24673,24751,25069,25095,25099,25131,25203,25302,25382,25464,25470,25748,25781,25787,25799,25917,25942,26056,26237,26499,26761,26835,26836,26930,27063,27195,27230,27833,27835,27841,28176,28267,28268,28269,28524,28536,28544,28545,28546,28552,28558,28610,28742,28979,29053,29227,29231,29261,29349,29478,29481,29504,29509,29687,29924,30251,30446,30697,30743,30801,30843,30850,30859,30878,30901,30910,30912,30913,30915,30920,30944,30963,30987,30988,30994,31044,31094]]],["+",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27063]]],["authorities",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30446]]],["authority",[28,25,[[39,6,5,0,5,[[935,1,1,0,1],[936,1,1,1,2],[949,4,3,2,5]]],[40,7,6,5,11,[[957,2,2,5,7],[967,4,3,7,10],[969,1,1,10,11]]],[41,8,7,11,18,[[976,1,1,11,12],[979,1,1,12,13],[981,1,1,13,14],[991,1,1,14,15],[992,4,3,15,18]]],[42,1,1,18,19,[[1001,1,1,18,19]]],[43,3,3,19,22,[[1026,1,1,19,20],[1043,2,2,20,22]]],[45,1,1,22,23,[[1076,1,1,22,23]]],[46,1,1,23,24,[[1087,1,1,23,24]]],[65,1,1,24,25,[[1179,1,1,24,25]]]],[23345,23354,23849,23850,23853,24237,24242,24668,24669,24673,24751,25099,25203,25302,25748,25781,25787,25799,26237,27230,27833,27835,28742,28979,30910]]],["jurisdiction",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25942]]],["liberty",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28536]]],["power",[60,55,[[39,4,4,0,4,[[937,2,2,0,2],[938,1,1,2,3],[956,1,1,3,4]]],[40,3,3,4,7,[[958,1,1,4,5],[959,1,1,5,6],[962,1,1,6,7]]],[41,6,6,7,13,[[976,2,2,7,9],[977,1,1,9,10],[982,1,1,10,11],[984,1,1,11,12],[994,1,1,12,13]]],[42,7,5,13,18,[[997,1,1,13,14],[1006,2,1,14,15],[1013,1,1,15,16],[1015,3,2,16,18]]],[43,3,3,18,21,[[1018,1,1,18,19],[1025,1,1,19,20],[1043,1,1,20,21]]],[44,4,4,21,25,[[1054,1,1,21,22],[1058,3,3,22,25]]],[45,8,7,25,32,[[1068,1,1,25,26],[1070,6,5,26,31],[1072,1,1,31,32]]],[46,1,1,32,33,[[1090,1,1,32,33]]],[48,2,2,33,35,[[1097,1,1,33,34],[1098,1,1,34,35]]],[50,2,2,35,37,[[1107,1,1,35,36],[1108,1,1,36,37]]],[52,1,1,37,38,[[1118,1,1,37,38]]],[64,1,1,38,39,[[1166,1,1,38,39]]],[65,18,16,39,55,[[1168,1,1,39,40],[1172,1,1,40,41],[1175,4,3,41,44],[1177,2,1,44,45],[1178,1,1,45,46],[1179,4,4,46,50],[1180,1,1,50,51],[1182,1,1,51,52],[1183,1,1,52,53],[1184,1,1,53,54],[1186,1,1,54,55]]]],[23385,23387,23418,24213,24270,24303,24414,25069,25095,25131,25382,25464,25917,26056,26499,26761,26835,26836,26930,27195,27841,28176,28267,28268,28269,28524,28544,28545,28546,28552,28558,28610,29053,29227,29231,29478,29504,29687,30697,30743,30801,30843,30850,30859,30878,30901,30912,30913,30915,30920,30944,30963,30987,30994,31044]]],["powers",[8,7,[[41,1,1,0,1,[[984,1,1,0,1]]],[44,2,1,1,2,[[1058,2,1,1,2]]],[48,2,2,2,4,[[1099,1,1,2,3],[1102,1,1,3,4]]],[50,2,2,4,6,[[1107,1,1,4,5],[1108,1,1,5,6]]],[55,1,1,6,7,[[1131,1,1,6,7]]]],[25470,28267,29261,29349,29481,29509,29924]]],["right",[2,2,[[57,1,1,0,1,[[1145,1,1,0,1]]],[65,1,1,1,2,[[1188,1,1,1,2]]]],[30251,31094]]],["strength",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30988]]]]},{"k":"G1850","v":[["*",[4,3,[[41,1,1,0,1,[[994,1,1,0,1]]],[45,3,2,1,3,[[1067,1,1,1,2],[1068,2,1,2,3]]]],[25889,28479,28491]]],["+",[2,1,[[45,2,1,0,1,[[1068,2,1,0,1]]]],[28491]]],["power",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28479]]],["upon",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25889]]]]},{"k":"G1851","v":[["+",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27819]]]]},{"k":"G1852","v":[["+",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26534]]]]},{"k":"G1853","v":[["+",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27510]]]]},{"k":"G1854","v":[["*",[65,64,[[39,8,8,0,8,[[933,1,1,0,1],[940,2,2,1,3],[941,1,1,3,4],[949,2,2,4,6],[954,2,2,6,8]]],[40,10,10,8,18,[[957,1,1,8,9],[959,2,2,9,11],[960,1,1,11,12],[961,1,1,12,13],[964,1,1,13,14],[967,2,2,14,16],[968,1,1,16,17],[970,1,1,17,18]]],[41,11,11,18,29,[[973,1,1,18,19],[976,1,1,19,20],[980,2,2,20,22],[985,3,3,22,25],[986,1,1,25,26],[992,1,1,26,27],[994,1,1,27,28],[996,1,1,28,29]]],[42,12,11,29,40,[[1002,1,1,29,30],[1005,2,2,30,32],[1007,1,1,32,33],[1008,1,1,33,34],[1011,1,1,34,35],[1014,1,1,35,36],[1015,4,3,36,39],[1016,1,1,39,40]]],[43,11,11,40,51,[[1021,1,1,40,41],[1022,2,2,41,43],[1024,1,1,43,44],[1026,1,1,44,45],[1031,1,1,45,46],[1033,2,2,46,48],[1038,2,2,48,50],[1043,1,1,50,51]]],[45,2,2,51,53,[[1066,2,2,51,53]]],[46,1,1,53,54,[[1081,1,1,53,54]]],[50,1,1,54,55,[[1110,1,1,54,55]]],[51,1,1,55,56,[[1114,1,1,55,56]]],[57,3,3,56,59,[[1145,3,3,56,59]]],[61,1,1,59,60,[[1162,1,1,59,60]]],[65,4,4,60,64,[[1169,1,1,60,61],[1177,1,1,61,62],[1180,1,1,62,63],[1188,1,1,63,64]]]],[23247,23535,23536,23587,23843,23865,24123,24129,24260,24319,24320,24334,24374,24523,24644,24659,24681,24822,24903,25092,25265,25299,25543,25546,25551,25588,25794,25926,26041,26294,26474,26475,26566,26611,26705,26801,26829,26830,26838,26878,27037,27082,27093,27174,27256,27433,27496,27513,27669,27694,27834,28466,28467,28875,29547,29615,30252,30253,30254,30621,30758,30874,30946,31095]]],["+",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28466]]],["away",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23587]]],["forth",[8,7,[[42,6,5,0,5,[[1007,1,1,0,1],[1011,1,1,1,2],[1015,4,3,2,5]]],[43,2,2,5,7,[[1022,1,1,5,6],[1026,1,1,6,7]]]],[26566,26705,26829,26830,26838,27093,27256]]],["out",[31,31,[[39,4,4,0,4,[[933,1,1,0,1],[949,2,2,1,3],[954,1,1,3,4]]],[40,5,5,4,9,[[961,1,1,4,5],[964,1,1,5,6],[967,1,1,6,7],[968,1,1,7,8],[970,1,1,8,9]]],[41,8,8,9,17,[[976,1,1,9,10],[980,1,1,10,11],[985,2,2,11,13],[986,1,1,13,14],[992,1,1,14,15],[994,1,1,15,16],[996,1,1,16,17]]],[42,4,4,17,21,[[1002,1,1,17,18],[1005,2,2,18,20],[1008,1,1,20,21]]],[43,7,7,21,28,[[1021,1,1,21,22],[1024,1,1,22,23],[1031,1,1,23,24],[1033,2,2,24,26],[1038,2,2,26,28]]],[61,1,1,28,29,[[1162,1,1,28,29]]],[65,2,2,29,31,[[1169,1,1,29,30],[1177,1,1,30,31]]]],[23247,23843,23865,24129,24374,24523,24659,24681,24822,25092,25299,25546,25551,25588,25794,25926,26041,26294,26474,26475,26611,27037,27174,27433,27496,27513,27669,27694,30621,30758,30874]]],["outward",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28875]]],["strange",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27834]]],["without",[22,22,[[39,3,3,0,3,[[940,2,2,0,2],[954,1,1,2,3]]],[40,5,5,3,8,[[957,1,1,3,4],[959,2,2,4,6],[960,1,1,6,7],[967,1,1,7,8]]],[41,3,3,8,11,[[973,1,1,8,9],[980,1,1,9,10],[985,1,1,10,11]]],[42,2,2,11,13,[[1014,1,1,11,12],[1016,1,1,12,13]]],[43,1,1,13,14,[[1022,1,1,13,14]]],[45,1,1,14,15,[[1066,1,1,14,15]]],[50,1,1,15,16,[[1110,1,1,15,16]]],[51,1,1,16,17,[[1114,1,1,16,17]]],[57,3,3,17,20,[[1145,3,3,17,20]]],[65,2,2,20,22,[[1180,1,1,20,21],[1188,1,1,21,22]]]],[23535,23536,24123,24260,24319,24320,24334,24644,24903,25265,25543,26801,26878,27082,28467,29547,29615,30252,30253,30254,30946,31095]]]]},{"k":"G1855","v":[["*",[11,11,[[39,3,3,0,3,[[951,3,3,0,3]]],[40,2,2,3,5,[[963,2,2,3,5]]],[41,2,2,5,7,[[983,2,2,5,7]]],[46,1,1,7,8,[[1084,1,1,7,8]]],[53,1,1,8,9,[[1121,1,1,8,9]]],[59,1,1,9,10,[[1153,1,1,9,10]]],[65,1,1,10,11,[[1177,1,1,10,11]]]],[23943,23945,23946,24478,24481,25444,25445,28921,29738,30427,30874]]],["+",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23946]]],["outside",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23943,25444]]],["outward",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[23945,30427]]],["without",[6,6,[[40,2,2,0,2,[[963,2,2,0,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[46,1,1,3,4,[[1084,1,1,3,4]]],[53,1,1,4,5,[[1121,1,1,4,5]]],[65,1,1,5,6,[[1177,1,1,5,6]]]],[24478,24481,25445,28921,29738,30874]]]]},{"k":"G1856","v":[["*",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1044,1,1,1,2]]]],[27161,27894]]],["in",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27894]]],["out",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27161]]]]},{"k":"G1857","v":[["outer",[3,3,[[39,3,3,0,3,[[936,1,1,0,1],[950,1,1,1,2],[953,1,1,2,3]]]],[23357,23885,24038]]]]},{"k":"G1858","v":[["feast",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28462]]]]},{"k":"G1859","v":[["*",[27,25,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,2,2,2,4,[[970,1,1,2,3],[971,1,1,3,4]]],[41,4,4,4,8,[[974,2,2,4,6],[994,1,1,6,7],[995,1,1,7,8]]],[42,17,15,8,23,[[998,1,1,8,9],[1000,2,1,9,10],[1001,1,1,10,11],[1002,1,1,11,12],[1003,7,6,12,18],[1007,1,1,18,19],[1008,2,2,19,21],[1009,2,2,21,23]]],[43,1,1,23,24,[[1035,1,1,23,24]]],[50,1,1,24,25,[[1108,1,1,24,25]]]],[24059,24144,24756,24832,25014,25015,25865,25952,26118,26201,26211,26261,26330,26336,26338,26339,26342,26365,26579,26592,26600,26631,26659,27578,29510]]],["feast",[26,24,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,2,2,2,4,[[970,1,1,2,3],[971,1,1,3,4]]],[41,4,4,4,8,[[974,2,2,4,6],[994,1,1,6,7],[995,1,1,7,8]]],[42,17,15,8,23,[[998,1,1,8,9],[1000,2,1,9,10],[1001,1,1,10,11],[1002,1,1,11,12],[1003,7,6,12,18],[1007,1,1,18,19],[1008,2,2,19,21],[1009,2,2,21,23]]],[43,1,1,23,24,[[1035,1,1,23,24]]]],[24059,24144,24756,24832,25014,25015,25865,25952,26118,26201,26211,26261,26330,26336,26338,26339,26342,26365,26579,26592,26600,26631,26659,27578]]],["holyday",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29510]]]]},{"k":"G1860","v":[["*",[53,51,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,8,8,1,9,[[1018,1,1,1,2],[1019,2,2,2,4],[1024,1,1,4,5],[1030,2,2,5,7],[1040,1,1,7,8],[1043,1,1,8,9]]],[44,8,8,9,17,[[1049,4,4,9,13],[1054,3,3,13,16],[1060,1,1,16,17]]],[46,2,2,17,19,[[1078,1,1,17,18],[1084,1,1,18,19]]],[47,10,9,19,28,[[1093,8,7,19,26],[1094,2,2,26,28]]],[48,4,4,28,32,[[1097,1,1,28,29],[1098,1,1,29,30],[1099,1,1,30,31],[1102,1,1,31,32]]],[53,1,1,32,33,[[1122,1,1,32,33]]],[54,1,1,33,34,[[1125,1,1,33,34]]],[57,14,13,34,47,[[1136,1,1,34,35],[1138,3,3,35,38],[1139,1,1,38,39],[1140,1,1,39,40],[1141,1,1,40,41],[1142,1,1,41,42],[1143,6,5,42,47]]],[60,2,2,47,49,[[1158,2,2,47,49]]],[61,2,2,49,51,[[1159,1,1,49,50],[1160,1,1,50,51]]]],[26040,26927,26982,26988,27133,27385,27394,27755,27829,28035,28036,28038,28042,28159,28163,28164,28311,28820,28917,29116,29118,29119,29120,29123,29124,29131,29154,29159,29219,29241,29257,29339,29755,29810,30015,30056,30059,30061,30070,30098,30120,30169,30181,30185,30189,30205,30211,30526,30531,30545,30575]]],["+",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29119]]],["message",[1,1,[[61,1,1,0,1,[[1159,1,1,0,1]]]],[30545]]],["promise",[39,37,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,8,8,1,9,[[1018,1,1,1,2],[1019,2,2,2,4],[1024,1,1,4,5],[1030,2,2,5,7],[1040,1,1,7,8],[1043,1,1,8,9]]],[44,6,6,9,15,[[1049,4,4,9,13],[1054,2,2,13,15]]],[47,7,6,15,21,[[1093,5,4,15,19],[1094,2,2,19,21]]],[48,4,4,21,25,[[1097,1,1,21,22],[1098,1,1,22,23],[1099,1,1,23,24],[1102,1,1,24,25]]],[53,1,1,25,26,[[1122,1,1,25,26]]],[54,1,1,26,27,[[1125,1,1,26,27]]],[57,8,7,27,34,[[1136,1,1,27,28],[1138,2,2,28,30],[1141,1,1,30,31],[1142,1,1,31,32],[1143,3,2,32,34]]],[60,2,2,34,36,[[1158,2,2,34,36]]],[61,1,1,36,37,[[1160,1,1,36,37]]]],[26040,26927,26982,26988,27133,27385,27394,27755,27829,28035,28036,28038,28042,28163,28164,29116,29120,29124,29131,29154,29159,29219,29241,29257,29339,29755,29810,30015,30059,30061,30120,30169,30181,30211,30526,30531,30575]]],["promises",[12,12,[[44,2,2,0,2,[[1054,1,1,0,1],[1060,1,1,1,2]]],[46,2,2,2,4,[[1078,1,1,2,3],[1084,1,1,3,4]]],[47,2,2,4,6,[[1093,2,2,4,6]]],[57,6,6,6,12,[[1138,1,1,6,7],[1139,1,1,7,8],[1140,1,1,8,9],[1143,3,3,9,12]]]],[28159,28311,28820,28917,29118,29123,30056,30070,30098,30185,30189,30205]]]]},{"k":"G1861","v":[["*",[15,15,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[44,1,1,2,3,[[1049,1,1,2,3]]],[47,1,1,3,4,[[1093,1,1,3,4]]],[53,2,2,4,6,[[1120,1,1,4,5],[1124,1,1,5,6]]],[55,1,1,6,7,[[1129,1,1,6,7]]],[57,4,4,7,11,[[1138,1,1,7,8],[1142,1,1,8,9],[1143,1,1,9,10],[1144,1,1,10,11]]],[58,2,2,11,13,[[1146,1,1,11,12],[1147,1,1,12,13]]],[60,1,1,13,14,[[1157,1,1,13,14]]],[61,1,1,14,15,[[1160,1,1,14,15]]]],[24765,27121,28043,29121,29726,29809,29894,30057,30156,30183,30238,30278,30298,30519,30575]]],["made",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29121]]],["professing",[2,2,[[53,2,2,0,2,[[1120,1,1,0,1],[1124,1,1,1,2]]]],[29726,29809]]],["promise",[2,2,[[57,1,1,0,1,[[1138,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[30057,30519]]],["promised",[10,10,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[44,1,1,2,3,[[1049,1,1,2,3]]],[55,1,1,3,4,[[1129,1,1,3,4]]],[57,3,3,4,7,[[1142,1,1,4,5],[1143,1,1,5,6],[1144,1,1,6,7]]],[58,2,2,7,9,[[1146,1,1,7,8],[1147,1,1,8,9]]],[61,1,1,9,10,[[1160,1,1,9,10]]]],[24765,27121,28043,29894,30156,30183,30238,30278,30298,30575]]]]},{"k":"G1862","v":[["*",[2,2,[[60,2,2,0,2,[[1156,1,1,0,1],[1158,1,1,1,2]]]],[30483,30535]]],["promise",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30535]]],["promises",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30483]]]]},{"k":"G1863","v":[["*",[3,3,[[43,1,1,0,1,[[1022,1,1,0,1]]],[60,2,2,1,3,[[1157,2,2,1,3]]]],[27087,30501,30505]]],["bring",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27087]]],["in",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30505]]],["upon",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30501]]]]},{"k":"G1864","v":[["for",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30675]]]]},{"k":"G1865","v":[["together",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25434]]]]},{"k":"G1866","v":[["Epaenetus",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28341]]]]},{"k":"G1867","v":[["*",[6,5,[[41,1,1,0,1,[[988,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[45,4,3,2,5,[[1072,4,3,2,5]]]],[25628,28314,28602,28617,28622]]],["commended",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25628]]],["laud",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28314]]],["praise",[4,3,[[45,4,3,0,3,[[1072,4,3,0,3]]]],[28602,28617,28622]]]]},{"k":"G1868","v":[["praise",[11,11,[[44,2,2,0,2,[[1047,1,1,0,1],[1058,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]],[48,3,3,4,7,[[1097,3,3,4,7]]],[49,2,2,7,9,[[1103,1,1,7,8],[1106,1,1,8,9]]],[59,2,2,9,11,[[1151,1,1,9,10],[1152,1,1,10,11]]]],[27991,28269,28438,28950,29212,29218,29220,29372,29450,30381,30413]]]]},{"k":"G1869","v":[["*",[19,19,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,6,6,1,7,[[978,1,1,1,2],[983,1,1,2,3],[988,1,1,3,4],[990,1,1,4,5],[993,1,1,5,6],[996,1,1,6,7]]],[42,4,4,7,11,[[1000,1,1,7,8],[1002,1,1,8,9],[1009,1,1,9,10],[1013,1,1,10,11]]],[43,5,5,11,16,[[1018,1,1,11,12],[1019,1,1,12,13],[1031,1,1,13,14],[1039,1,1,14,15],[1044,1,1,15,16]]],[46,2,2,16,18,[[1087,1,1,16,17],[1088,1,1,17,18]]],[53,1,1,18,19,[[1120,1,1,18,19]]]],[23708,25166,25432,25643,25701,25854,26041,26191,26262,26648,26760,26932,26963,27425,27726,27895,28976,29009,29724]]],["himself",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29009]]],["itself",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28976]]],["up",[17,17,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,6,6,1,7,[[978,1,1,1,2],[983,1,1,2,3],[988,1,1,3,4],[990,1,1,4,5],[993,1,1,5,6],[996,1,1,6,7]]],[42,4,4,7,11,[[1000,1,1,7,8],[1002,1,1,8,9],[1009,1,1,9,10],[1013,1,1,10,11]]],[43,5,5,11,16,[[1018,1,1,11,12],[1019,1,1,12,13],[1031,1,1,13,14],[1039,1,1,14,15],[1044,1,1,15,16]]],[53,1,1,16,17,[[1120,1,1,16,17]]]],[23708,25166,25432,25643,25701,25854,26041,26191,26262,26648,26760,26932,26963,27425,27726,27895,29724]]]]},{"k":"G1870","v":[["*",[11,9,[[40,2,1,0,1,[[964,2,1,0,1]]],[41,2,1,1,2,[[981,2,1,1,2]]],[44,2,2,2,4,[[1046,1,1,2,3],[1051,1,1,3,4]]],[54,3,3,4,7,[[1125,3,3,4,7]]],[57,2,2,7,9,[[1134,1,1,7,8],[1143,1,1,8,9]]]],[24538,25327,27946,28089,29817,29821,29825,29988,30188]]],["+",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28089]]],["ashamed",[10,8,[[40,2,1,0,1,[[964,2,1,0,1]]],[41,2,1,1,2,[[981,2,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[54,3,3,3,6,[[1125,3,3,3,6]]],[57,2,2,6,8,[[1134,1,1,6,7],[1143,1,1,7,8]]]],[24538,25327,27946,29817,29821,29825,29988,30188]]]]},{"k":"G1871","v":[["beg",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25623]]]]},{"k":"G1872","v":[["*",[4,4,[[40,1,1,0,1,[[972,1,1,0,1]]],[53,2,2,1,3,[[1123,2,2,1,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[24893,29773,29787,30420]]],["after",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29787]]],["follow",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30420]]],["followed",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29773]]],["following",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24893]]]]},{"k":"G1873","v":[["heard",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28900]]]]},{"k":"G1874","v":[["heard",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27508]]]]},{"k":"G1875","v":[["when",[3,3,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,2,2,1,3,[[983,2,2,1,3]]]],[23177,25427,25439]]]]},{"k":"G1876","v":[["things",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27470]]]]},{"k":"G1877","v":[["*",[3,3,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,2,2,1,3,[[977,2,2,1,3]]]],[23844,25110,25111]]],["out",[2,2,[[41,2,2,0,2,[[977,2,2,0,2]]]],[25110,25111]]],["returned",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23844]]]]},{"k":"G1878","v":[["+",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28318]]]]},{"k":"G1879","v":[["*",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]]],[25369,27979]]],["in",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27979]]],["rest",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25369]]]]},{"k":"G1880","v":[["*",[2,2,[[41,2,2,0,2,[[982,1,1,0,1],[991,1,1,1,2]]]],[25398,25746]]],["again",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25398]]],["returned",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25746]]]]},{"k":"G1881","v":[["up",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23438,24729]]]]},{"k":"G1882","v":[["correction",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29869]]]]},{"k":"G1883","v":[["*",[20,18,[[39,9,8,0,8,[[930,1,1,0,1],[933,1,1,1,2],[949,2,1,2,3],[951,3,3,3,6],[955,1,1,6,7],[956,1,1,7,8]]],[40,1,1,8,9,[[970,1,1,8,9]]],[41,5,5,9,14,[[976,1,1,9,10],[982,1,1,10,11],[983,1,1,11,12],[991,2,2,12,14]]],[42,2,1,14,15,[[999,2,1,14,15]]],[45,1,1,15,16,[[1076,1,1,15,16]]],[65,2,2,16,18,[[1172,1,1,16,17],[1186,1,1,17,18]]]],[23178,23248,23833,23936,23938,23940,24166,24197,24759,25102,25382,25449,25748,25750,26151,28724,30801,31041]]],["+",[3,3,[[39,3,3,0,3,[[949,1,1,0,1],[951,2,2,1,3]]]],[23833,23938,23940]]],["above",[3,2,[[42,2,1,0,1,[[999,2,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]]],[26151,28724]]],["on",[4,4,[[39,2,2,0,2,[[933,1,1,0,1],[949,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[65,1,1,3,4,[[1172,1,1,3,4]]]],[23248,23833,25382,30801]]],["over",[6,6,[[39,2,2,0,2,[[930,1,1,0,1],[955,1,1,1,2]]],[41,4,4,2,6,[[976,1,1,2,3],[983,1,1,3,4],[991,2,2,4,6]]]],[23178,24166,25102,25449,25748,25750]]],["than",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24759]]],["upon",[3,3,[[39,2,2,0,2,[[951,1,1,0,1],[956,1,1,1,2]]],[65,1,1,2,3,[[1186,1,1,2,3]]]],[23936,24197,31041]]]]},{"k":"G1884","v":[["*",[3,2,[[53,3,2,0,2,[[1123,3,2,0,2]]]],[29773,29779]]],["relieve",[2,1,[[53,2,1,0,1,[[1123,2,1,0,1]]]],[29779]]],["relieved",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29773]]]]},{"k":"G1885","v":[["province",[2,2,[[43,2,2,0,2,[[1040,1,1,0,1],[1042,1,1,1,2]]]],[27768,27797]]]]},{"k":"G1886","v":[["habitation",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26943]]]]},{"k":"G1887","v":[["*",[17,17,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[42,5,5,2,7,[[997,3,3,2,5],[1002,1,1,5,6],[1008,1,1,6,7]]],[43,10,10,7,17,[[1027,3,3,7,10],[1031,1,1,10,11],[1037,1,1,11,12],[1038,1,1,12,13],[1039,1,1,13,14],[1040,1,1,14,15],[1042,2,2,15,17]]]],[24191,24652,26073,26079,26087,26279,26592,27268,27282,27283,27434,27633,27672,27734,27766,27802,27819]]],["after",[2,2,[[42,1,1,0,1,[[997,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]]],[26079,27283]]],["day",[5,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,2,2,1,3,[[997,1,1,1,2],[1008,1,1,2,3]]],[43,2,2,3,5,[[1031,1,1,3,4],[1042,1,1,4,5]]]],[24191,26073,26592,27434,27802]]],["following",[2,2,[[42,2,2,0,2,[[997,1,1,0,1],[1002,1,1,1,2]]]],[26087,26279]]],["morrow",[7,7,[[40,1,1,0,1,[[967,1,1,0,1]]],[43,6,6,1,7,[[1027,2,2,1,3],[1037,1,1,3,4],[1039,1,1,4,5],[1040,1,1,5,6],[1042,1,1,6,7]]]],[24652,27268,27282,27633,27734,27766,27819]]],["next",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27672]]]]},{"k":"G1888","v":[["act",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26385]]]]},{"k":"G1889","v":[["Epaphras",[3,3,[[50,2,2,0,2,[[1107,1,1,0,1],[1110,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]]],[29472,29554,29961]]]]},{"k":"G1890","v":[["out",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30685]]]]},{"k":"G1891","v":[["Epaphroditus",[2,2,[[49,2,2,0,2,[[1104,1,1,0,1],[1106,1,1,1,2]]]],[29416,29460]]]]},{"k":"G1892","v":[["*",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1031,1,1,1,2]]]],[27412,27416]]],["raised",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27412]]],["up",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27416]]]]},{"k":"G1893","v":[["*",[27,26,[[39,2,2,0,2,[[946,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[41,2,2,3,5,[[973,1,1,3,4],[979,1,1,4,5]]],[42,2,2,5,7,[[1009,1,1,5,6],[1015,1,1,6,7]]],[44,4,3,7,10,[[1048,1,1,7,8],[1056,3,2,8,10]]],[45,5,5,10,15,[[1066,1,1,10,11],[1068,1,1,11,12],[1075,2,2,12,14],[1076,1,1,14,15]]],[46,2,2,15,17,[[1088,1,1,15,16],[1090,1,1,16,17]]],[57,9,9,17,26,[[1134,1,1,17,18],[1136,1,1,18,19],[1137,2,2,19,21],[1138,1,1,21,22],[1141,2,2,22,24],[1142,1,1,24,25],[1143,1,1,25,26]]]],[23759,24135,24868,24927,25196,26659,26856,27997,28215,28231,28464,28501,28690,28694,28747,29007,29046,29991,30020,30032,30041,30057,30122,30131,30135,30183]]],["+",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28501]]],["Else",[2,2,[[45,2,2,0,2,[[1075,1,1,0,1],[1076,1,1,1,2]]]],[28694,28747]]],["Forasmuch",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29991]]],["Seeing",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30020]]],["Since",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29046]]],["as",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28690]]],["because",[7,7,[[39,2,2,0,2,[[946,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[42,2,2,3,5,[[1009,1,1,3,4],[1015,1,1,4,5]]],[57,2,2,5,7,[[1138,1,1,5,6],[1143,1,1,6,7]]]],[23759,24135,24868,26659,26856,30057,30183]]],["for",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28464]]],["otherwise",[4,3,[[44,3,2,0,2,[[1056,3,2,0,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[28215,28231,30122]]],["seeing",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[57,1,1,1,2,[[1137,1,1,1,2]]]],[24927,30041]]],["that",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[57,1,1,1,2,[[1137,1,1,1,2]]]],[29007,30032]]],["then",[3,3,[[44,1,1,0,1,[[1048,1,1,0,1]]],[57,2,2,1,3,[[1141,1,1,1,2],[1142,1,1,2,3]]]],[27997,30131,30135]]],["when",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25196]]]]},{"k":"G1894","v":[["*",[10,10,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[43,3,3,2,5,[[1030,1,1,2,3],[1031,1,1,3,4],[1032,1,1,4,5]]],[45,4,4,5,9,[[1062,2,2,5,7],[1075,1,1,7,8],[1076,1,1,8,9]]],[49,1,1,9,10,[[1104,1,1,9,10]]]],[23872,25411,27408,27426,27466,28384,28385,28694,28739,29417]]],["For",[3,3,[[41,1,1,0,1,[[983,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[25411,28385,29417]]],["as",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27466]]],["because",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[43,1,1,1,2,[[1031,1,1,1,2]]]],[23872,27426]]],["seeing",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[27408,28694]]],["since",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28739]]],["that",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28384]]]]},{"k":"G1895","v":[["Forasmuch",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24894]]]]},{"k":"G1896","v":[["*",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]]],[24918,27051]]],["+",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27051]]],["on",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24918]]]]},{"k":"G1897","v":[["Seeing",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28021]]]]},{"k":"G1898","v":[["in",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30083]]]]},{"k":"G1899","v":[["*",[16,16,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[42,1,1,2,3,[[1007,1,1,2,3]]],[45,5,5,3,8,[[1073,1,1,3,4],[1076,4,4,4,8]]],[47,3,3,8,11,[[1091,2,2,8,10],[1092,1,1,10,11]]],[51,1,1,11,12,[[1114,1,1,11,12]]],[57,2,2,12,14,[[1139,2,2,12,14]]],[58,2,2,14,16,[[1148,1,1,14,15],[1149,1,1,15,16]]]],[24468,25627,26530,28662,28724,28725,28741,28764,29075,29078,29082,29620,30066,30091,30336,30351]]],["Afterwards",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29078]]],["Then",[6,6,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[42,1,1,2,3,[[1007,1,1,2,3]]],[47,2,2,3,5,[[1091,1,1,3,4],[1092,1,1,4,5]]],[51,1,1,5,6,[[1114,1,1,5,6]]]],[24468,25627,26530,29075,29082,29620]]],["afterward",[2,2,[[45,2,2,0,2,[[1076,2,2,0,2]]]],[28741,28764]]],["that",[4,4,[[45,3,3,0,3,[[1073,1,1,0,1],[1076,2,2,1,3]]],[57,1,1,3,4,[[1139,1,1,3,4]]]],[28662,28724,28725,30066]]],["then",[3,3,[[57,1,1,0,1,[[1139,1,1,0,1]]],[58,2,2,1,3,[[1148,1,1,1,2],[1149,1,1,2,3]]]],[30091,30336,30351]]]]},{"k":"G1900","v":[["beyond",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27159]]]]},{"k":"G1901","v":[["forth",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29434]]]]},{"k":"G1902","v":[["upon",[2,2,[[46,2,2,0,2,[[1082,2,2,0,2]]]],[28879,28881]]]]},{"k":"G1903","v":[["coat",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26905]]]]},{"k":"G1904","v":[["*",[10,10,[[41,4,4,0,4,[[973,1,1,0,1],[983,1,1,1,2],[993,2,2,2,4]]],[43,4,4,4,8,[[1018,1,1,4,5],[1025,1,1,5,6],[1030,1,1,6,7],[1031,1,1,7,8]]],[48,1,1,8,9,[[1098,1,1,8,9]]],[58,1,1,9,10,[[1150,1,1,9,10]]]],[24928,25427,25852,25861,26931,27200,27402,27433,29236,30355]]],["come",[6,6,[[41,2,2,0,2,[[973,1,1,0,1],[993,1,1,1,2]]],[43,3,3,2,5,[[1018,1,1,2,3],[1025,1,1,3,4],[1030,1,1,4,5]]],[48,1,1,5,6,[[1098,1,1,5,6]]]],[24928,25861,26931,27200,27402,29236]]],["on",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25852]]],["thither",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27433]]],["upon",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[25427,30355]]]]},{"k":"G1905","v":[["*",[60,58,[[39,8,8,0,8,[[940,1,1,0,1],[944,1,1,1,2],[945,1,1,2,3],[950,4,4,3,7],[955,1,1,7,8]]],[40,25,25,8,33,[[961,1,1,8,9],[963,2,2,9,11],[964,3,3,11,14],[965,6,6,14,20],[966,3,3,20,23],[967,1,1,23,24],[968,3,3,24,27],[969,1,1,27,28],[970,2,2,28,30],[971,3,3,30,33]]],[41,18,18,33,51,[[974,1,1,33,34],[975,2,2,34,36],[978,1,1,36,37],[980,2,2,37,39],[981,1,1,39,40],[989,1,1,40,41],[990,2,2,41,43],[992,3,3,43,46],[993,1,1,46,47],[994,1,1,47,48],[995,3,3,48,51]]],[42,4,2,51,53,[[1014,4,2,51,53]]],[43,3,3,53,56,[[1018,1,1,53,54],[1022,1,1,54,55],[1040,1,1,55,56]]],[44,1,1,56,57,[[1055,1,1,56,57]]],[45,1,1,57,58,[[1075,1,1,57,58]]]],[23499,23673,23710,23895,23907,23913,23918,24140,24373,24468,24480,24505,24523,24527,24549,24554,24559,24566,24570,24571,24590,24598,24605,24669,24691,24701,24707,24720,24814,24815,24828,24830,24870,25019,25035,25039,25155,25254,25275,25319,25671,25706,25728,25800,25806,25819,25833,25928,25938,25941,25944,26792,26806,26929,27086,27768,28208,28713]]],["+",[3,3,[[40,1,1,0,1,[[967,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[44,1,1,2,3,[[1055,1,1,2,3]]]],[24669,25019,28208]]],["ask",[7,7,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,2,2,1,3,[[965,1,1,1,2],[968,1,1,2,3]]],[41,2,2,3,5,[[978,1,1,3,4],[992,1,1,4,5]]],[42,1,1,5,6,[[1014,1,1,5,6]]],[45,1,1,6,7,[[1075,1,1,6,7]]]],[23918,24570,24707,25155,25819,26806,28713]]],["asked",[44,44,[[39,6,6,0,6,[[940,1,1,0,1],[945,1,1,1,2],[950,3,3,2,5],[955,1,1,5,6]]],[40,22,22,6,28,[[961,1,1,6,7],[963,2,2,7,9],[964,3,3,9,12],[965,5,5,12,17],[966,3,3,17,20],[968,2,2,20,22],[969,1,1,22,23],[970,2,2,23,25],[971,3,3,25,28]]],[41,12,12,28,40,[[975,1,1,28,29],[980,2,2,29,31],[981,1,1,31,32],[990,2,2,32,34],[992,2,2,34,36],[993,1,1,36,37],[994,1,1,37,38],[995,2,2,38,40]]],[42,1,1,40,41,[[1014,1,1,40,41]]],[43,3,3,41,44,[[1018,1,1,41,42],[1022,1,1,42,43],[1040,1,1,43,44]]]],[23499,23710,23895,23907,23913,24140,24373,24468,24480,24505,24523,24527,24549,24554,24559,24566,24571,24590,24598,24605,24691,24701,24720,24814,24815,24828,24830,24870,25035,25254,25275,25319,25706,25728,25800,25806,25833,25928,25938,25941,26792,26929,27086,27768]]],["askest",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26806]]],["demanded",[2,2,[[41,2,2,0,2,[[975,1,1,0,1],[989,1,1,1,2]]]],[25039,25671]]],["desired",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23673]]],["me",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26806]]],["questioned",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25944]]]]},{"k":"G1906","v":[["answer",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30445]]]]},{"k":"G1907","v":[["*",[5,5,[[41,1,1,0,1,[[986,1,1,0,1]]],[43,2,2,1,3,[[1020,1,1,1,2],[1036,1,1,2,3]]],[49,1,1,3,4,[[1104,1,1,3,4]]],[53,1,1,4,5,[[1122,1,1,4,5]]]],[25560,27001,27607,29407,29763]]],["forth",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29407]]],["heed",[2,2,[[43,1,1,0,1,[[1020,1,1,0,1]]],[53,1,1,1,2,[[1122,1,1,1,2]]]],[27001,29763]]],["marked",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25560]]],["stayed",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27607]]]]},{"k":"G1908","v":[["*",[3,3,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[23278,25174,30440]]],["accuse",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30440]]],["use",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]]],[23278,25174]]]]},{"k":"G1909","v":[["*",[885,780,[[39,126,111,0,111,[[929,1,1,0,1],[930,1,1,1,2],[931,3,3,2,5],[932,4,3,5,8],[933,5,4,8,12],[934,3,3,12,15],[935,4,4,15,19],[937,6,6,19,25],[938,6,6,25,31],[939,1,1,31,32],[940,4,4,32,36],[941,8,8,36,44],[942,8,8,44,52],[943,2,2,52,54],[944,3,2,54,56],[945,1,1,56,57],[946,11,9,57,66],[947,3,2,66,68],[949,5,3,68,71],[950,3,3,71,74],[951,6,5,74,79],[952,11,10,79,89],[953,9,7,89,96],[954,7,6,96,102],[955,9,7,102,109],[956,2,2,109,111]]],[40,78,74,111,185,[[957,2,2,111,113],[958,5,5,113,118],[959,4,4,118,122],[960,10,8,122,130],[961,2,2,130,132],[962,10,10,132,142],[963,1,1,142,143],[964,4,4,143,147],[965,7,7,147,154],[966,5,4,154,158],[967,5,5,158,163],[968,4,4,163,167],[969,8,7,167,174],[970,4,4,174,178],[971,5,5,178,183],[972,2,2,183,185]]],[41,163,141,185,326,[[973,10,10,185,195],[974,7,7,195,202],[975,4,3,202,205],[976,12,10,205,215],[977,10,10,215,225],[978,6,5,225,230],[979,2,2,230,232],[980,5,5,232,237],[981,8,7,237,244],[982,7,6,244,250],[983,7,6,250,256],[984,15,9,256,265],[985,2,2,265,267],[986,1,1,267,268],[987,6,5,268,273],[988,1,1,273,274],[989,5,5,274,279],[990,4,4,279,283],[991,10,10,283,293],[992,6,5,293,298],[993,11,8,298,306],[994,9,7,306,313],[995,9,7,313,320],[996,6,6,320,326]]],[42,34,33,326,359,[[997,4,3,326,329],[999,1,1,329,330],[1000,2,2,330,332],[1001,1,1,332,333],[1002,4,4,333,337],[1003,2,2,337,339],[1004,2,2,339,341],[1005,1,1,341,342],[1007,1,1,342,343],[1008,3,3,343,346],[1009,2,2,346,348],[1013,1,1,348,349],[1014,1,1,349,350],[1015,5,5,350,355],[1016,1,1,355,356],[1017,3,3,356,359]]],[43,162,147,359,506,[[1018,4,4,359,363],[1019,10,9,363,372],[1020,7,5,372,377],[1021,12,10,377,387],[1022,11,9,387,396],[1023,1,1,396,397],[1024,6,6,397,403],[1025,10,10,403,413],[1026,7,7,413,420],[1027,11,10,420,430],[1028,8,6,430,436],[1029,4,4,436,440],[1030,6,5,440,445],[1031,4,4,445,449],[1032,5,5,449,454],[1033,3,3,454,457],[1034,4,4,457,461],[1035,2,2,461,463],[1036,8,8,463,471],[1037,6,5,471,476],[1038,7,7,476,483],[1039,1,1,483,484],[1040,1,1,484,485],[1041,4,4,485,489],[1042,7,6,489,495],[1043,5,5,495,500],[1044,5,3,500,503],[1045,3,3,503,506]]],[44,32,28,506,534,[[1046,2,2,506,508],[1047,2,2,508,510],[1048,1,1,510,511],[1049,5,4,511,515],[1050,4,3,515,518],[1051,1,1,518,519],[1052,1,1,519,520],[1053,1,1,520,521],[1054,4,4,521,525],[1055,3,2,525,527],[1056,3,2,527,529],[1057,1,1,529,530],[1060,3,3,530,533],[1061,1,1,533,534]]],[45,19,17,534,551,[[1062,1,1,534,535],[1063,1,1,535,536],[1064,1,1,536,537],[1067,3,2,537,539],[1068,2,2,539,541],[1069,2,2,541,543],[1070,2,1,543,544],[1072,2,2,544,546],[1074,1,1,546,547],[1075,3,3,547,550],[1077,1,1,550,551]]],[46,22,19,551,570,[[1078,4,3,551,554],[1079,1,1,554,555],[1080,3,3,555,558],[1082,1,1,558,559],[1084,5,4,559,563],[1086,4,3,563,566],[1087,1,1,566,567],[1089,2,2,567,569],[1090,1,1,569,570]]],[47,7,5,570,575,[[1093,3,2,570,572],[1094,1,1,572,573],[1095,1,1,573,574],[1096,2,1,574,575]]],[48,10,10,575,585,[[1097,2,2,575,577],[1098,3,3,577,580],[1100,2,2,580,582],[1101,1,1,582,583],[1102,2,2,583,585]]],[49,8,8,585,593,[[1103,2,2,585,587],[1104,2,2,587,589],[1105,3,3,589,592],[1106,1,1,592,593]]],[50,6,6,593,599,[[1107,2,2,593,595],[1109,4,4,595,599]]],[51,6,5,599,604,[[1111,1,1,599,600],[1112,1,1,600,601],[1113,3,2,601,603],[1114,1,1,603,604]]],[52,4,4,604,608,[[1116,1,1,604,605],[1117,2,2,605,607],[1118,1,1,607,608]]],[53,7,7,608,615,[[1119,2,2,608,610],[1122,1,1,610,611],[1123,2,2,611,613],[1124,2,2,613,615]]],[54,5,5,615,620,[[1126,2,2,615,617],[1127,2,2,617,619],[1128,1,1,619,620]]],[55,2,2,620,622,[[1129,1,1,620,621],[1131,1,1,621,622]]],[56,2,2,622,624,[[1132,2,2,622,624]]],[57,29,26,624,650,[[1133,1,1,624,625],[1134,2,2,625,627],[1135,1,1,627,628],[1138,3,2,628,630],[1139,2,2,630,632],[1140,6,5,632,637],[1141,4,4,637,641],[1142,4,3,641,644],[1143,4,4,644,648],[1144,2,2,648,650]]],[58,8,8,650,658,[[1147,3,3,650,653],[1150,5,5,653,658]]],[59,10,9,658,667,[[1151,2,2,658,660],[1152,3,3,660,663],[1153,3,2,663,665],[1154,1,1,665,666],[1155,1,1,666,667]]],[60,3,3,667,670,[[1156,1,1,667,668],[1157,1,1,668,669],[1158,1,1,669,670]]],[61,1,1,670,671,[[1161,1,1,670,671]]],[63,1,1,671,672,[[1165,1,1,671,672]]],[65,140,108,672,780,[[1167,3,3,672,675],[1168,3,3,675,678],[1169,6,4,678,682],[1170,5,4,682,686],[1171,7,5,686,691],[1172,7,6,691,697],[1173,11,7,697,704],[1174,5,3,704,707],[1175,5,5,707,712],[1176,8,5,712,717],[1177,10,5,717,722],[1178,3,3,722,725],[1179,9,5,725,730],[1180,11,7,730,737],[1181,1,1,737,738],[1182,8,8,738,746],[1183,8,7,746,753],[1184,6,6,753,759],[1185,9,8,759,767],[1186,7,5,767,772],[1187,4,4,772,776],[1188,4,4,776,780]]]],[23155,23191,23199,23205,23208,23213,23214,23215,23249,23257,23273,23279,23292,23301,23309,23340,23341,23342,23344,23381,23385,23388,23394,23395,23397,23430,23435,23438,23444,23446,23451,23488,23507,23515,23517,23538,23541,23544,23546,23547,23553,23559,23562,23587,23605,23608,23611,23616,23622,23623,23625,23626,23665,23668,23690,23691,23706,23732,23733,23739,23740,23743,23745,23746,23753,23756,23771,23790,23831,23845,23870,23881,23905,23906,23920,23922,23927,23953,23954,23959,23960,23962,23964,23973,23974,23987,23990,24002,24004,24028,24029,24030,24031,24039,24048,24053,24061,24066,24093,24104,24109,24118,24148,24154,24156,24158,24164,24172,24174,24209,24213,24225,24237,24264,24270,24274,24281,24286,24293,24312,24313,24314,24324,24328,24339,24343,24344,24349,24354,24361,24385,24397,24432,24435,24441,24446,24454,24455,24456,24459,24460,24462,24493,24502,24504,24506,24525,24541,24550,24551,24558,24560,24575,24577,24599,24604,24610,24612,24642,24644,24647,24653,24658,24687,24690,24699,24705,24719,24723,24725,24726,24729,24732,24746,24789,24800,24802,24805,24827,24848,24850,24859,24872,24875,24891,24905,24907,24909,24910,24922,24926,24928,24940,24952,24958,24981,24987,24993,24998,25006,25013,25020,25027,25045,25047,25067,25072,25074,25081,25085,25088,25090,25092,25095,25099,25112,25116,25118,25119,25125,25126,25131,25132,25134,25143,25163,25175,25181,25194,25195,25208,25239,25251,25253,25258,25261,25272,25302,25306,25339,25344,25349,25350,25363,25369,25372,25374,25382,25397,25398,25407,25422,25423,25425,25427,25438,25462,25470,25473,25484,25501,25503,25511,25512,25517,25522,25535,25584,25592,25593,25595,25598,25608,25646,25655,25667,25682,25685,25686,25692,25695,25696,25697,25735,25736,25745,25754,25758,25761,25766,25772,25774,25775,25797,25798,25800,25805,25816,25832,25834,25836,25838,25849,25851,25860,25861,25885,25894,25904,25908,25916,25917,25923,25936,25963,25965,25968,25973,25979,25983,25992,26003,26013,26015,26038,26040,26076,26077,26095,26156,26162,26183,26212,26259,26273,26276,26278,26358,26372,26388,26440,26455,26561,26594,26595,26596,26648,26655,26763,26789,26838,26844,26849,26856,26858,26874,26899,26909,26918,26931,26938,26944,26949,26950,26952,26966,26967,26968,26975,26979,26987,26993,26997,27006,27007,27008,27012,27027,27031,27039,27040,27043,27044,27048,27049,27051,27055,27064,27068,27070,27074,27077,27087,27089,27094,27099,27104,27126,27127,27139,27143,27170,27173,27177,27178,27192,27193,27200,27202,27203,27204,27208,27212,27220,27227,27233,27237,27249,27251,27258,27268,27269,27270,27275,27276,27284,27293,27298,27303,27304,27318,27322,27324,27326,27328,27335,27347,27349,27357,27358,27373,27374,27402,27412,27413,27417,27424,27427,27429,27452,27456,27459,27461,27473,27501,27502,27514,27529,27537,27542,27549,27563,27569,27591,27593,27595,27597,27598,27601,27602,27619,27635,27637,27639,27663,27664,27669,27687,27688,27691,27696,27699,27704,27723,27764,27773,27777,27788,27789,27802,27805,27806,27808,27813,27822,27825,27829,27839,27841,27843,27875,27898,27899,27902,27905,27913,27939,27948,27964,27971,28013,28027,28031,28040,28046,28049,28059,28061,28089,28092,28136,28160,28178,28183,28188,28199,28207,28222,28231,28265,28306,28315,28323,28355,28367,28403,28422,28468,28473,28523,28526,28532,28538,28550,28610,28620,28671,28694,28701,28703,28793,28804,28809,28823,28827,28854,28855,28856,28881,28920,28923,28929,28930,28962,28970,28971,28973,29031,29043,29044,29115,29118,29140,29175,29204,29216,29222,29236,29239,29249,29278,29298,29310,29340,29353,29364,29366,29408,29418,29430,29433,29435,29452,29481,29485,29519,29522,29523,29531,29562,29586,29597,29599,29610,29659,29662,29665,29682,29712,29714,29757,29768,29782,29801,29805,29841,29843,29862,29866,29874,29894,29929,29942,29945,29965,29984,29990,30001,30045,30051,30075,30077,30093,30096,30098,30100,30102,30115,30120,30122,30131,30149,30154,30161,30176,30185,30193,30202,30222,30237,30296,30300,30314,30355,30359,30361,30368,30371,30387,30394,30405,30423,30424,30429,30436,30460,30472,30492,30522,30525,30582,30668,30704,30714,30717,30734,30741,30743,30749,30756,30758,30766,30770,30772,30777,30778,30780,30782,30786,30789,30792,30795,30797,30798,30801,30803,30809,30811,30813,30820,30821,30825,30826,30827,30830,30837,30840,30844,30847,30851,30854,30857,30862,30863,30866,30869,30872,30878,30880,30882,30883,30888,30892,30894,30908,30909,30915,30916,30922,30924,30927,30932,30935,30940,30941,30942,30944,30948,30956,30962,30963,30964,30966,30968,30972,30975,30976,30978,30980,30983,30984,30991,30993,31002,31004,31010,31012,31013,31017,31021,31028,31029,31031,31033,31035,31036,31038,31039,31042,31044,31047,31049,31058,31063,31065,31069,31084,31094,31096,31098]]],["+",[55,54,[[39,7,7,0,7,[[937,1,1,0,1],[950,1,1,1,2],[952,1,1,2,3],[953,2,2,3,5],[954,1,1,5,6],[956,1,1,6,7]]],[40,3,3,7,10,[[958,1,1,7,8],[967,1,1,8,9],[969,1,1,9,10]]],[41,12,12,10,22,[[975,1,1,10,11],[976,1,1,11,12],[977,1,1,12,13],[982,1,1,13,14],[983,1,1,14,15],[989,1,1,15,16],[990,1,1,16,17],[991,2,2,17,19],[992,1,1,19,20],[993,1,1,20,21],[994,1,1,21,22]]],[42,1,1,22,23,[[1008,1,1,22,23]]],[43,13,13,23,36,[[1018,1,1,23,24],[1019,1,1,24,25],[1020,1,1,25,26],[1021,3,3,26,29],[1025,1,1,29,30],[1026,1,1,30,31],[1029,1,1,31,32],[1036,1,1,32,33],[1037,1,1,33,34],[1041,1,1,34,35],[1045,1,1,35,36]]],[44,4,4,36,40,[[1052,1,1,36,37],[1056,2,2,37,39],[1061,1,1,39,40]]],[45,1,1,40,41,[[1068,1,1,40,41]]],[46,3,2,41,43,[[1082,1,1,41,42],[1086,2,1,42,43]]],[49,1,1,43,44,[[1106,1,1,43,44]]],[54,2,2,44,46,[[1127,2,2,44,46]]],[57,2,2,46,48,[[1141,1,1,46,47],[1143,1,1,47,48]]],[58,1,1,48,49,[[1147,1,1,48,49]]],[60,2,2,49,51,[[1156,1,1,49,50],[1157,1,1,50,51]]],[63,1,1,51,52,[[1165,1,1,51,52]]],[65,2,2,52,54,[[1172,1,1,52,53],[1187,1,1,53,54]]]],[23394,23906,23959,24048,24053,24104,24209,24264,24642,24719,25027,25092,25132,25369,25427,25686,25692,25761,25775,25800,25832,25923,26594,26938,26993,26997,27039,27048,27051,27203,27249,27357,27619,27637,27773,27905,28092,28222,28231,28355,28526,28881,28962,29452,29862,29866,30122,30202,30300,30492,30522,30668,30797,31069]]],["Above",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29353]]],["For",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29366]]],["In",[2,2,[[46,1,1,0,1,[[1090,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[29044,29894]]],["Of",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27293]]],["Upon",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26077]]],["about",[5,5,[[39,2,2,0,2,[[929,1,1,0,1],[946,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[42,1,1,3,4,[[1016,1,1,3,4]]],[43,1,1,4,5,[[1028,1,1,4,5]]]],[23155,23733,24805,26874,27326]]],["above",[4,4,[[41,1,1,0,1,[[975,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]],[52,1,1,3,4,[[1117,1,1,3,4]]]],[25045,29278,29531,29665]]],["after",[3,3,[[41,2,2,0,2,[[973,1,1,0,1],[987,1,1,1,2]]],[44,1,1,2,3,[[1050,1,1,2,3]]]],[24952,25592,28061]]],["against",[39,29,[[39,5,4,0,4,[[938,1,1,0,1],[940,1,1,1,2],[952,2,1,2,3],[954,1,1,3,4]]],[40,8,7,4,11,[[959,3,3,4,7],[966,1,1,7,8],[969,3,2,8,10],[970,1,1,10,11]]],[41,17,9,11,20,[[981,1,1,11,12],[983,3,2,12,14],[984,8,2,14,16],[986,1,1,16,17],[993,2,1,17,18],[994,2,2,18,20]]],[42,1,1,20,21,[[1009,1,1,20,21]]],[43,4,4,21,25,[[1021,1,1,21,22],[1025,1,1,22,23],[1030,2,2,23,25]]],[44,2,2,25,27,[[1046,1,1,25,26],[1047,1,1,26,27]]],[46,1,1,27,28,[[1087,1,1,27,28]]],[59,1,1,28,29,[[1153,1,1,28,29]]]],[23438,23515,23964,24109,24312,24313,24314,24599,24725,24729,24802,25306,25422,25423,25511,25512,25584,25836,25916,25917,26648,27049,27177,27412,27413,27948,27964,28973,30436]]],["among",[4,4,[[39,1,1,0,1,[[941,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]],[65,1,1,3,4,[[1173,1,1,3,4]]]],[23546,26944,29659,30825]]],["at",[42,40,[[39,4,4,0,4,[[935,1,1,0,1],[937,1,1,1,2],[950,1,1,2,3],[952,1,1,3,4]]],[40,7,7,4,11,[[957,1,1,4,5],[958,1,1,5,6],[966,2,2,6,8],[967,1,1,8,9],[968,1,1,9,10],[969,1,1,10,11]]],[41,16,15,11,26,[[973,2,2,11,13],[974,2,2,13,15],[976,2,2,15,17],[977,3,3,17,20],[981,2,1,20,21],[992,2,2,21,23],[994,2,2,23,25],[996,1,1,25,26]]],[42,4,4,26,30,[[1002,1,1,26,27],[1004,2,2,27,29],[1017,1,1,29,30]]],[43,7,6,30,36,[[1020,3,2,30,32],[1022,1,1,32,33],[1027,1,1,33,34],[1030,1,1,34,35],[1042,1,1,35,36]]],[45,1,1,36,37,[[1075,1,1,36,37]]],[65,3,3,37,40,[[1169,1,1,37,38],[1174,1,1,38,39],[1187,1,1,39,40]]]],[23344,23388,23905,23990,24237,24274,24610,24612,24658,24690,24746,24907,24922,25006,25020,25085,25095,25112,25116,25134,25344,25805,25816,25894,25904,26013,26278,26388,26440,26899,26997,27006,27068,27284,27374,27806,28694,30766,30830,31065]]],["before",[18,16,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]],[43,8,7,3,10,[[1027,1,1,3,4],[1040,1,1,4,5],[1041,2,2,5,7],[1042,3,2,7,9],[1043,1,1,9,10]]],[45,3,2,10,12,[[1067,3,2,10,12]]],[46,1,1,12,13,[[1084,1,1,12,13]]],[53,2,2,13,15,[[1123,1,1,13,14],[1124,1,1,14,15]]],[65,1,1,15,16,[[1176,1,1,15,16]]]],[23435,24726,25838,27276,27764,27788,27789,27805,27822,27825,28468,28473,28930,29782,29801,30872]]],["beside",[3,3,[[39,2,2,0,2,[[953,2,2,0,2]]],[41,1,1,2,3,[[988,1,1,2,3]]]],[24028,24030,25646]]],["by",[8,5,[[39,2,1,0,1,[[932,2,1,0,1]]],[41,2,1,1,2,[[976,2,1,1,2]]],[42,1,1,2,3,[[1001,1,1,2,3]]],[44,2,1,3,4,[[1055,2,1,3,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]]],[23213,25067,26212,28207,29430]]],["done",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27275]]],["for",[26,24,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[41,6,4,2,6,[[974,1,1,2,3],[979,1,1,3,4],[985,1,1,4,5],[995,3,1,5,6]]],[42,1,1,6,7,[[1015,1,1,6,7]]],[43,5,5,7,12,[[1021,1,1,7,8],[1032,2,2,8,10],[1037,1,1,10,11],[1043,1,1,11,12]]],[44,1,1,12,13,[[1050,1,1,12,13]]],[45,1,1,13,14,[[1062,1,1,13,14]]],[46,2,2,14,16,[[1084,1,1,14,15],[1086,1,1,15,16]]],[49,2,2,16,18,[[1105,2,2,16,18]]],[51,1,1,18,19,[[1113,1,1,18,19]]],[57,1,1,19,20,[[1144,1,1,19,20]]],[58,2,2,20,22,[[1150,2,2,20,22]]],[59,1,1,22,23,[[1151,1,1,22,23]]],[65,1,1,23,24,[[1184,1,1,23,24]]]],[23771,24293,24993,25239,25535,25963,26849,27043,27456,27473,27664,27829,28059,28367,28929,28971,29433,29435,29599,30222,30355,30361,30387,31002]]],["in",[120,115,[[39,17,17,0,17,[[930,1,1,0,1],[932,1,1,1,2],[934,1,1,2,3],[941,1,1,3,4],[942,2,2,4,6],[946,2,2,6,8],[947,1,1,8,9],[949,1,1,9,10],[951,1,1,10,11],[952,2,2,11,13],[954,1,1,13,14],[955,2,2,14,16],[956,1,1,16,17]]],[40,17,16,17,33,[[958,1,1,17,18],[960,3,2,18,20],[961,1,1,20,21],[962,3,3,21,24],[964,1,1,24,25],[965,2,2,25,27],[966,1,1,27,28],[967,1,1,28,29],[968,2,2,29,31],[969,1,1,31,32],[971,1,1,32,33]]],[41,12,12,33,45,[[973,1,1,33,34],[976,1,1,34,35],[977,1,1,35,36],[978,1,1,36,37],[981,2,2,37,39],[983,1,1,39,40],[989,1,1,40,41],[990,1,1,41,42],[993,2,2,42,44],[996,1,1,44,45]]],[42,1,1,45,46,[[1015,1,1,45,46]]],[43,14,14,46,60,[[1019,4,4,46,50],[1020,1,1,50,51],[1021,2,2,51,53],[1022,2,2,53,55],[1025,1,1,55,56],[1026,1,1,56,57],[1031,1,1,57,58],[1037,1,1,58,59],[1044,1,1,59,60]]],[44,6,6,60,66,[[1046,1,1,60,61],[1049,1,1,61,62],[1050,1,1,62,63],[1051,1,1,63,64],[1053,1,1,64,65],[1060,1,1,65,66]]],[45,4,3,66,69,[[1069,1,1,66,67],[1070,2,1,67,68],[1074,1,1,68,69]]],[46,9,8,69,77,[[1078,3,2,69,71],[1079,1,1,71,72],[1080,1,1,72,73],[1084,3,3,73,76],[1086,1,1,76,77]]],[48,1,1,77,78,[[1097,1,1,77,78]]],[50,2,2,78,80,[[1107,2,2,78,80]]],[51,2,2,80,82,[[1111,1,1,80,81],[1113,1,1,81,82]]],[53,3,3,82,85,[[1122,1,1,82,83],[1123,1,1,83,84],[1124,1,1,84,85]]],[56,2,2,85,87,[[1132,2,2,85,87]]],[57,6,6,87,93,[[1133,1,1,87,88],[1134,1,1,88,89],[1140,1,1,89,90],[1141,2,2,90,92],[1142,1,1,92,93]]],[59,2,2,93,95,[[1151,1,1,93,94],[1153,1,1,94,95]]],[60,1,1,95,96,[[1158,1,1,95,96]]],[61,1,1,96,97,[[1161,1,1,96,97]]],[65,20,18,97,115,[[1167,1,1,97,98],[1168,1,1,98,99],[1171,3,3,99,102],[1173,1,1,102,103],[1175,2,2,103,105],[1177,1,1,105,106],[1179,2,1,106,107],[1180,3,2,107,109],[1183,1,1,109,110],[1184,1,1,110,111],[1186,2,2,111,113],[1188,2,2,113,115]]]],[23191,23215,23292,23553,23605,23608,23732,23743,23790,23845,23920,23962,23987,24118,24158,24172,24213,24286,24354,24361,24397,24432,24435,24462,24504,24575,24577,24612,24644,24687,24699,24723,24827,24940,25074,25125,25163,25349,25350,25407,25685,25697,25834,25849,26038,26838,26950,26968,26975,26987,27007,27039,27040,27087,27099,27204,27258,27417,27635,27875,27939,28040,28049,28089,28136,28315,28532,28550,28671,28804,28809,28827,28855,28920,28923,28929,28970,29222,29481,29485,29562,29597,29757,29768,29805,29942,29945,29965,29990,30102,30115,30131,30149,30394,30429,30525,30582,30717,30734,30780,30782,30792,30813,30844,30854,30880,30924,30927,30935,30983,31010,31039,31042,31084,31096]]],["into",[18,18,[[39,6,6,0,6,[[941,3,3,0,3],[946,1,1,3,4],[950,1,1,4,5],[952,1,1,5,6]]],[40,2,2,6,8,[[960,1,1,6,7],[962,1,1,7,8]]],[41,2,2,8,10,[[991,2,2,8,10]]],[43,3,3,10,13,[[1024,1,1,10,11],[1026,1,1,11,12],[1027,1,1,12,13]]],[45,3,3,13,16,[[1063,1,1,13,14],[1072,1,1,14,15],[1075,1,1,15,16]]],[57,1,1,16,17,[[1142,1,1,16,17]]],[65,1,1,17,18,[[1177,1,1,17,18]]]],[23547,23559,23562,23739,23881,23973,24349,24460,25735,25754,27139,27227,27269,28403,28620,28701,30149,30883]]],["of",[21,19,[[39,2,1,0,1,[[946,2,1,0,1]]],[40,3,3,1,4,[[962,1,1,1,2],[965,2,2,2,4]]],[41,1,1,4,5,[[976,1,1,4,5]]],[42,1,1,5,6,[[1008,1,1,5,6]]],[43,5,5,6,11,[[1021,2,2,6,8],[1028,1,1,8,9],[1036,2,2,9,11]]],[45,1,1,11,12,[[1077,1,1,11,12]]],[46,1,1,12,13,[[1089,1,1,12,13]]],[47,2,1,13,14,[[1093,2,1,13,14]]],[57,3,3,14,17,[[1139,1,1,14,15],[1140,1,1,15,16],[1143,1,1,16,17]]],[65,2,2,17,19,[[1167,1,1,17,18],[1174,1,1,18,19]]]],[23740,24459,24550,24551,25088,26596,27031,27049,27335,27593,27595,28793,29043,29118,30077,30093,30176,30704,30840]]],["on",[195,179,[[39,34,29,0,29,[[932,1,1,0,1],[933,4,3,1,4],[937,2,2,4,6],[938,2,2,6,8],[941,1,1,8,9],[942,5,5,9,14],[943,2,2,14,16],[944,2,1,16,17],[945,1,1,17,18],[946,3,2,18,20],[949,2,1,20,21],[951,1,1,21,22],[952,1,1,22,23],[954,4,4,23,27],[955,3,2,27,29]]],[40,18,18,29,47,[[958,2,2,29,31],[960,6,6,31,37],[962,1,1,37,38],[964,2,2,38,40],[965,3,3,40,43],[969,1,1,43,44],[970,2,2,44,46],[972,1,1,46,47]]],[41,25,24,47,71,[[973,1,1,47,48],[974,1,1,48,49],[976,1,1,49,50],[977,1,1,50,51],[978,2,2,51,53],[979,1,1,53,54],[980,3,3,54,57],[982,2,2,57,59],[983,1,1,59,60],[987,2,2,60,62],[989,1,1,62,63],[990,1,1,63,64],[992,2,2,64,66],[993,3,2,66,68],[994,2,2,68,70],[995,1,1,70,71]]],[42,12,12,71,83,[[997,1,1,71,72],[999,1,1,72,73],[1000,1,1,73,74],[1002,2,2,74,76],[1003,2,2,76,78],[1008,1,1,78,79],[1009,1,1,79,80],[1013,1,1,80,81],[1015,1,1,81,82],[1017,1,1,82,83]]],[43,36,33,83,116,[[1019,3,2,83,85],[1021,2,2,85,87],[1022,4,4,87,91],[1024,1,1,91,92],[1025,1,1,92,93],[1026,1,1,93,94],[1027,3,3,94,97],[1028,3,2,97,99],[1030,1,1,99,100],[1031,1,1,100,101],[1033,1,1,101,102],[1034,1,1,102,103],[1036,3,3,103,106],[1037,1,1,106,107],[1038,4,4,107,111],[1039,1,1,111,112],[1042,2,2,112,114],[1044,2,1,114,115],[1045,1,1,115,116]]],[44,7,7,116,123,[[1049,2,2,116,118],[1054,2,2,118,120],[1055,1,1,120,121],[1057,1,1,121,122],[1060,1,1,122,123]]],[45,2,2,123,125,[[1072,1,1,123,124],[1075,1,1,124,125]]],[47,2,2,125,127,[[1093,1,1,125,126],[1096,1,1,126,127]]],[48,2,2,127,129,[[1097,1,1,127,128],[1102,1,1,128,129]]],[50,2,2,129,131,[[1109,2,2,129,131]]],[53,2,2,131,133,[[1119,2,2,131,133]]],[55,1,1,133,134,[[1131,1,1,133,134]]],[57,3,3,134,137,[[1140,1,1,134,135],[1143,1,1,135,136],[1144,1,1,136,137]]],[58,2,2,137,139,[[1150,2,2,137,139]]],[59,2,2,139,141,[[1152,2,2,139,141]]],[65,45,38,141,179,[[1169,1,1,141,142],[1170,4,4,142,146],[1171,2,2,146,148],[1172,5,4,148,152],[1173,7,4,152,156],[1175,2,2,156,158],[1176,1,1,158,159],[1177,2,2,159,161],[1179,2,1,161,162],[1180,6,5,162,167],[1181,1,1,167,168],[1183,2,2,168,170],[1184,1,1,170,171],[1185,6,5,171,176],[1186,3,3,176,179]]]],[23214,23249,23273,23279,23381,23385,23446,23451,23541,23616,23622,23623,23625,23626,23665,23668,23691,23706,23745,23746,23870,23922,23974,24061,24066,24093,24104,24148,24154,24270,24281,24324,24328,24339,24343,24344,24361,24454,24502,24506,24541,24558,24560,24732,24789,24800,24891,24958,24987,25072,25119,25175,25194,25208,25253,25258,25261,25397,25398,25438,25593,25608,25667,25696,25797,25798,25838,25861,25885,25894,25965,26077,26156,26162,26259,26276,26358,26372,26595,26655,26763,26844,26918,26967,26979,27027,27044,27064,27074,27077,27089,27170,27193,27233,27298,27303,27304,27322,27324,27373,27424,27514,27549,27591,27601,27602,27663,27669,27687,27691,27704,27723,27802,27813,27899,27902,28027,28046,28178,28188,28199,28265,28306,28610,28703,29115,29204,29216,29340,29519,29523,29712,29714,29929,30096,30185,30237,30359,30371,30405,30423,30749,30770,30772,30777,30778,30780,30789,30795,30798,30803,30809,30811,30821,30825,30826,30847,30857,30863,30882,30888,30922,30927,30932,30940,30941,30942,30948,30983,30984,31012,31021,31029,31033,31035,31036,31044,31047,31049]]],["over",[49,46,[[39,7,5,0,5,[[952,2,2,0,2],[953,4,2,2,4],[955,1,1,4,5]]],[40,1,1,5,6,[[971,1,1,5,6]]],[41,15,14,6,20,[[973,1,1,6,7],[974,1,1,7,8],[981,1,1,8,9],[982,1,1,9,10],[984,3,3,10,13],[987,3,2,13,15],[991,3,3,15,18],[995,2,2,18,20]]],[43,6,6,20,26,[[1023,1,1,20,21],[1024,3,3,21,24],[1025,1,1,24,25],[1036,1,1,25,26]]],[44,2,2,26,28,[[1050,1,1,26,27],[1054,1,1,27,28]]],[46,1,1,28,29,[[1080,1,1,28,29]]],[51,1,1,29,30,[[1113,1,1,29,30]]],[57,3,3,30,33,[[1134,1,1,30,31],[1135,1,1,31,32],[1142,1,1,32,33]]],[58,1,1,33,34,[[1150,1,1,33,34]]],[59,1,1,34,35,[[1153,1,1,34,35]]],[65,11,11,35,46,[[1168,1,1,35,36],[1172,1,1,36,37],[1175,1,1,37,38],[1177,2,2,38,40],[1179,1,1,40,41],[1180,1,1,41,42],[1182,1,1,42,43],[1183,1,1,43,44],[1184,2,2,44,46]]]],[24002,24004,24029,24031,24174,24859,24926,24981,25302,25382,25473,25501,25503,25595,25598,25745,25758,25772,25973,25979,27104,27126,27127,27143,27178,27598,28061,28160,28854,29597,29984,30001,30154,30368,30436,30743,30801,30851,30878,30882,30915,30944,30963,30993,31004,31013]]],["she",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27501]]],["the",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24705]]],["through",[2,2,[[43,1,1,0,1,[[1020,1,1,0,1]]],[45,1,1,1,2,[[1069,1,1,1,2]]]],[27012,28538]]],["throughout",[2,2,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,1,1,1,2,[[1028,1,1,1,2]]]],[25088,27335]]],["time",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25090]]],["to",[39,39,[[39,5,5,0,5,[[931,2,2,0,2],[933,1,1,2,3],[941,1,1,3,4],[949,1,1,4,5]]],[40,1,1,5,6,[[967,1,1,5,6]]],[41,14,14,6,20,[[973,2,2,6,8],[977,1,1,8,9],[980,1,1,9,10],[981,1,1,10,11],[984,2,2,11,13],[989,1,1,13,14],[991,1,1,14,15],[994,2,2,15,17],[995,2,2,17,19],[996,1,1,19,20]]],[42,2,2,20,22,[[1015,1,1,20,21],[1017,1,1,21,22]]],[43,12,12,22,34,[[1025,1,1,22,23],[1026,2,2,23,25],[1027,1,1,25,26],[1029,1,1,26,27],[1032,1,1,27,28],[1034,1,1,28,29],[1035,1,1,29,30],[1037,1,1,30,31],[1043,1,1,31,32],[1044,2,2,32,34]]],[47,1,1,34,35,[[1094,1,1,34,35]]],[54,1,1,35,36,[[1126,1,1,35,36]]],[58,1,1,36,37,[[1147,1,1,36,37]]],[65,2,2,37,39,[[1187,1,1,37,38],[1188,1,1,38,39]]]],[23199,23205,23257,23587,23845,24653,24909,24910,25118,25272,25363,25484,25517,25655,25736,25908,25916,25968,25983,26015,26858,26909,27208,27220,27251,27270,27349,27461,27537,27569,27639,27843,27898,27899,29140,29841,30296,31063,31094]]],["touching",[2,2,[[43,1,1,0,1,[[1022,1,1,0,1]]],[52,1,1,1,2,[[1118,1,1,1,2]]]],[27094,29682]]],["toward",[7,7,[[39,2,2,0,2,[[940,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[44,1,1,3,4,[[1056,1,1,3,4]]],[45,1,1,4,5,[[1068,1,1,4,5]]],[48,1,1,5,6,[[1098,1,1,5,6]]],[57,1,1,6,7,[[1138,1,1,6,7]]]],[23538,23611,24441,28231,28523,29236,30045]]],["under",[3,3,[[57,3,3,0,3,[[1139,1,1,0,1],[1141,1,1,1,2],[1142,1,1,2,3]]]],[30075,30120,30161]]],["unto",[45,45,[[39,4,4,0,4,[[934,1,1,0,1],[937,1,1,1,2],[940,1,1,2,3],[955,1,1,3,4]]],[40,4,4,4,8,[[961,1,1,4,5],[971,2,2,5,7],[972,1,1,7,8]]],[41,8,8,8,16,[[975,1,1,8,9],[978,1,1,9,10],[982,2,2,10,12],[984,1,1,12,13],[995,1,1,13,14],[996,2,2,14,16]]],[42,1,1,16,17,[[1002,1,1,16,17]]],[43,17,17,17,34,[[1025,2,2,17,19],[1026,1,1,19,20],[1027,1,1,20,21],[1028,2,2,21,23],[1029,1,1,23,24],[1031,2,2,24,26],[1033,1,1,26,27],[1034,2,2,27,29],[1036,1,1,29,30],[1038,1,1,30,31],[1041,1,1,31,32],[1042,1,1,32,33],[1043,1,1,33,34]]],[47,1,1,34,35,[[1095,1,1,34,35]]],[48,1,1,35,36,[[1098,1,1,35,36]]],[51,1,1,36,37,[[1114,1,1,36,37]]],[52,1,1,37,38,[[1117,1,1,37,38]]],[54,2,2,38,40,[[1126,1,1,38,39],[1128,1,1,39,40]]],[57,1,1,40,41,[[1138,1,1,40,41]]],[59,1,1,41,42,[[1152,1,1,41,42]]],[65,3,3,42,45,[[1173,1,1,42,43],[1182,1,1,43,44],[1188,1,1,44,45]]]],[23309,23395,23517,24156,24385,24848,24872,24875,25027,25181,25372,25374,25470,25936,25992,26003,26273,27202,27212,27237,27270,27318,27328,27347,27427,27429,27502,27529,27542,27597,27696,27777,27808,27841,29175,29239,29610,29662,29843,29874,30045,30424,30827,30968,31098]]],["upon",[154,143,[[39,22,21,0,21,[[931,1,1,0,1],[934,1,1,1,2],[935,3,3,2,5],[937,1,1,5,6],[938,2,2,6,8],[939,1,1,8,9],[940,1,1,9,10],[941,1,1,10,11],[944,1,1,11,12],[947,1,1,12,13],[949,1,1,13,14],[951,4,3,14,17],[952,1,1,17,18],[953,1,1,18,19],[955,2,2,19,21]]],[40,9,9,21,30,[[957,1,1,21,22],[962,3,3,22,25],[963,1,1,25,26],[964,1,1,26,27],[966,1,1,27,28],[967,1,1,28,29],[971,1,1,29,30]]],[41,24,24,30,54,[[973,2,2,30,32],[974,2,2,32,34],[975,1,1,34,35],[976,1,1,35,36],[977,3,3,36,39],[978,2,2,39,41],[980,1,1,41,42],[981,1,1,42,43],[982,1,1,43,44],[983,1,1,44,45],[984,1,1,45,46],[985,1,1,46,47],[989,1,1,47,48],[991,2,2,48,50],[992,1,1,50,51],[993,2,2,51,53],[996,1,1,53,54]]],[42,7,7,54,61,[[997,2,2,54,56],[1000,1,1,56,57],[1005,1,1,57,58],[1007,1,1,58,59],[1014,1,1,59,60],[1015,1,1,60,61]]],[43,20,19,61,80,[[1018,2,2,61,63],[1019,2,2,63,65],[1021,1,1,65,66],[1022,3,2,66,68],[1024,1,1,68,69],[1025,2,2,69,71],[1027,1,1,71,72],[1029,1,1,72,73],[1030,2,2,73,75],[1032,2,2,75,77],[1035,1,1,77,78],[1038,1,1,78,79],[1043,1,1,79,80]]],[44,6,5,80,85,[[1047,1,1,80,81],[1048,1,1,81,82],[1049,2,1,82,83],[1054,1,1,83,84],[1060,1,1,84,85]]],[45,1,1,85,86,[[1064,1,1,85,86]]],[46,3,3,86,89,[[1078,1,1,86,87],[1080,1,1,87,88],[1089,1,1,88,89]]],[47,1,1,89,90,[[1096,1,1,89,90]]],[48,3,3,90,93,[[1098,1,1,90,91],[1100,1,1,91,92],[1101,1,1,92,93]]],[49,3,3,93,96,[[1103,1,1,93,94],[1104,2,2,94,96]]],[50,1,1,96,97,[[1109,1,1,96,97]]],[51,1,1,97,98,[[1112,1,1,97,98]]],[57,3,3,98,101,[[1138,1,1,98,99],[1140,1,1,99,100],[1143,1,1,100,101]]],[58,1,1,101,102,[[1147,1,1,101,102]]],[59,2,2,102,104,[[1154,1,1,102,103],[1155,1,1,103,104]]],[65,47,39,104,143,[[1167,1,1,104,105],[1168,1,1,105,106],[1169,4,3,106,109],[1170,1,1,109,110],[1171,2,2,110,112],[1173,1,1,112,113],[1174,3,2,113,115],[1176,6,4,115,119],[1177,4,3,119,122],[1178,2,2,122,124],[1179,4,2,124,126],[1180,1,1,126,127],[1182,6,6,127,133],[1183,4,4,133,137],[1184,1,1,137,138],[1185,3,3,138,141],[1186,2,1,141,142],[1187,1,1,142,143]]]],[23208,23301,23340,23341,23342,23397,23430,23444,23488,23507,23544,23690,23790,23831,23927,23953,23954,23960,24039,24158,24164,24225,24446,24455,24456,24493,24525,24604,24647,24850,24905,24928,24998,25013,25047,25081,25126,25131,25143,25194,25195,25251,25339,25369,25425,25462,25522,25682,25766,25774,25797,25851,25860,26040,26076,26095,26183,26455,26561,26789,26856,26931,26949,26952,26966,27055,27070,27087,27173,27192,27200,27268,27358,27373,27402,27452,27459,27563,27699,27839,27971,28013,28031,28183,28323,28422,28823,28856,29031,29204,29249,29298,29310,29364,29408,29418,29522,29586,30051,30098,30193,30314,30460,30472,30714,30741,30749,30756,30758,30772,30786,30792,30820,30830,30837,30862,30863,30866,30869,30882,30883,30888,30892,30894,30909,30916,30940,30956,30962,30964,30966,30972,30975,30976,30978,30980,30991,31017,31028,31031,31038,31042,31058]]],["was",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27635]]],["were",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25099]]],["with",[8,7,[[39,2,2,0,2,[[946,2,2,0,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[43,2,2,3,5,[[1038,1,1,3,4],[1045,1,1,4,5]]],[57,2,1,5,6,[[1140,2,1,5,6]]],[65,1,1,6,7,[[1178,1,1,6,7]]]],[23753,23756,25695,27688,27913,30100,30908]]],["ye",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27008]]]]},{"k":"G1910","v":[["*",[6,6,[[39,1,1,0,1,[[949,1,1,0,1]]],[43,5,5,1,6,[[1037,1,1,1,2],[1038,2,2,2,4],[1042,1,1,4,5],[1044,1,1,5,6]]]],[23831,27644,27666,27670,27797,27857]]],["+",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27670]]],["aboard",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27666]]],["came",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27644]]],["into",[2,2,[[43,2,2,0,2,[[1042,1,1,0,1],[1044,1,1,1,2]]]],[27797,27857]]],["sitting",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23831]]]]},{"k":"G1911","v":[["*",[18,18,[[39,2,2,0,2,[[937,1,1,0,1],[954,1,1,1,2]]],[40,4,4,2,6,[[960,1,1,2,3],[967,1,1,3,4],[970,2,2,4,6]]],[41,5,5,6,11,[[977,1,1,6,7],[981,1,1,7,8],[987,1,1,8,9],[992,1,1,9,10],[993,1,1,10,11]]],[42,2,2,11,13,[[1003,2,2,11,13]]],[43,4,4,13,17,[[1021,1,1,13,14],[1022,1,1,14,15],[1029,1,1,15,16],[1038,1,1,16,17]]],[45,1,1,17,18,[[1068,1,1,17,18]]]],[23395,24104,24360,24647,24800,24826,25143,25363,25600,25798,25838,26358,26372,27025,27077,27338,27691,28522]]],["+",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27025]]],["beat",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24360]]],["cast",[2,2,[[40,1,1,0,1,[[967,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[24647,28522]]],["falleth",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25600]]],["forth",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27338]]],["laid",[6,6,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,2,2,2,4,[[1003,2,2,2,4]]],[43,2,2,4,6,[[1022,1,1,4,5],[1038,1,1,5,6]]]],[24104,24800,26358,26372,27077,27691]]],["lay",[2,2,[[41,2,2,0,2,[[992,1,1,0,1],[993,1,1,1,2]]]],[25798,25838]]],["put",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25363]]],["putteth",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]]],[23395,25143]]],["thereon",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24826]]]]},{"k":"G1912","v":[["*",[3,3,[[46,1,1,0,1,[[1079,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]],[52,1,1,2,3,[[1118,1,1,2,3]]]],[28829,29579,29686]]],["chargeable",[2,2,[[51,1,1,0,1,[[1112,1,1,0,1]]],[52,1,1,1,2,[[1118,1,1,1,2]]]],[29579,29686]]],["overcharge",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28829]]]]},{"k":"G1913","v":[["*",[3,3,[[41,2,2,0,2,[[982,1,1,0,1],[991,1,1,1,2]]],[43,1,1,2,3,[[1040,1,1,2,3]]]],[25397,25766,27758]]],["+",[2,2,[[41,1,1,0,1,[[991,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[25766,27758]]],["set",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25397]]]]},{"k":"G1914","v":[["*",[3,3,[[41,2,2,0,2,[[973,1,1,0,1],[981,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[24941,25339,30296]]],["look",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25339]]],["regarded",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24941]]],["respect",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30296]]]]},{"k":"G1915","v":[["piece",[4,3,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,2,1,2,3,[[977,2,1,2,3]]]],[23395,24281,25143]]]]},{"k":"G1916","v":[["crying",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27820]]]]},{"k":"G1917","v":[["*",[4,4,[[43,4,4,0,4,[[1026,1,1,0,1],[1037,2,2,1,3],[1040,1,1,3,4]]]],[27240,27629,27645,27764]]],["+",[2,2,[[43,2,2,0,2,[[1037,1,1,0,1],[1040,1,1,1,2]]]],[27629,27764]]],["await",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27240]]],["wait",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27645]]]]},{"k":"G1918","v":[["marry",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23896]]]]},{"k":"G1919","v":[["*",[7,6,[[42,1,1,0,1,[[999,1,1,0,1]]],[45,2,1,1,2,[[1076,2,1,1,2]]],[46,1,1,2,3,[[1082,1,1,2,3]]],[49,2,2,3,5,[[1104,1,1,3,4],[1105,1,1,4,5]]],[58,1,1,5,6,[[1148,1,1,5,6]]]],[26132,28758,28878,29401,29440,30334]]],["earth",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29401]]],["earthly",[2,2,[[46,1,1,0,1,[[1082,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[28878,30334]]],["terrestrial",[2,1,[[45,2,1,0,1,[[1076,2,1,0,1]]]],[28758]]],["things",[2,2,[[42,1,1,0,1,[[999,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[26132,29440]]]]},{"k":"G1920","v":[["blew",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27912]]]]},{"k":"G1921","v":[["*",[42,38,[[39,6,5,0,5,[[935,2,2,0,2],[939,2,1,2,3],[942,1,1,3,4],[945,1,1,4,5]]],[40,4,4,5,9,[[958,1,1,5,6],[961,1,1,6,7],[962,2,2,7,9]]],[41,7,7,9,16,[[973,2,2,9,11],[977,1,1,11,12],[979,1,1,12,13],[995,1,1,13,14],[996,2,2,14,16]]],[43,11,11,16,27,[[1020,1,1,16,17],[1021,1,1,17,18],[1026,1,1,18,19],[1029,1,1,19,20],[1036,1,1,20,21],[1039,2,2,21,23],[1041,1,1,23,24],[1042,1,1,24,25],[1044,1,1,25,26],[1045,1,1,26,27]]],[44,1,1,27,28,[[1046,1,1,27,28]]],[45,4,3,28,31,[[1074,2,1,28,29],[1075,1,1,29,30],[1077,1,1,30,31]]],[46,5,4,31,35,[[1078,3,2,31,33],[1083,1,1,33,34],[1090,1,1,34,35]]],[50,1,1,35,36,[[1107,1,1,35,36]]],[53,1,1,36,37,[[1122,1,1,36,37]]],[60,2,1,37,38,[[1157,2,1,37,38]]]],[23332,23336,23486,23632,23712,24268,24394,24440,24461,24897,24915,25129,25232,25942,26007,26022,27006,27035,27246,27351,27619,27728,27733,27777,27806,27894,27900,27962,28677,28715,28794,28813,28814,28907,29048,29471,29750,30521]]],["Know",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29048]]],["acknowledge",[4,3,[[45,2,2,0,2,[[1075,1,1,0,1],[1077,1,1,1,2]]],[46,2,1,2,3,[[1078,2,1,2,3]]]],[28715,28794,28813]]],["acknowledged",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28814]]],["knew",[14,14,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,2,2,1,3,[[962,2,2,1,3]]],[41,3,3,3,6,[[979,1,1,3,4],[995,1,1,4,5],[996,1,1,5,6]]],[43,7,7,6,13,[[1020,1,1,6,7],[1026,1,1,7,8],[1029,1,1,8,9],[1036,1,1,9,10],[1039,1,1,10,11],[1044,1,1,11,12],[1045,1,1,12,13]]],[50,1,1,13,14,[[1107,1,1,13,14]]]],[23712,24440,24461,25232,25942,26022,27006,27246,27351,27619,27733,27894,27900,29471]]],["know",[7,7,[[39,2,2,0,2,[[935,2,2,0,2]]],[41,2,2,2,4,[[973,1,1,2,3],[996,1,1,3,4]]],[43,1,1,4,5,[[1039,1,1,4,5]]],[45,1,1,5,6,[[1074,1,1,5,6]]],[53,1,1,6,7,[[1122,1,1,6,7]]]],[23332,23336,24897,26007,27728,28677,29750]]],["knowest",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27806]]],["knoweth",[2,1,[[39,2,1,0,1,[[939,2,1,0,1]]]],[23486]]],["knowing",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[24394,27962]]],["knowledge",[3,3,[[39,1,1,0,1,[[942,1,1,0,1]]],[43,2,2,1,3,[[1021,1,1,1,2],[1041,1,1,2,3]]]],[23632,27035,27777]]],["known",[4,3,[[45,1,1,0,1,[[1074,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]],[60,2,1,2,3,[[1157,2,1,2,3]]]],[28677,28907,30521]]],["perceived",[3,3,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,2,2,1,3,[[973,1,1,1,2],[977,1,1,2,3]]]],[24268,24915,25129]]]]},{"k":"G1922","v":[["*",[20,20,[[44,3,3,0,3,[[1046,1,1,0,1],[1048,1,1,1,2],[1055,1,1,2,3]]],[48,2,2,3,5,[[1097,1,1,3,4],[1100,1,1,4,5]]],[49,1,1,5,6,[[1103,1,1,5,6]]],[50,4,4,6,10,[[1107,2,2,6,8],[1108,1,1,8,9],[1109,1,1,9,10]]],[53,1,1,10,11,[[1120,1,1,10,11]]],[54,2,2,11,13,[[1126,1,1,11,12],[1127,1,1,12,13]]],[55,1,1,13,14,[[1129,1,1,13,14]]],[56,1,1,14,15,[[1132,1,1,14,15]]],[57,1,1,15,16,[[1142,1,1,15,16]]],[60,4,4,16,20,[[1156,3,3,16,19],[1157,1,1,19,20]]]],[27958,28011,28190,29223,29285,29370,29474,29475,29496,29527,29720,29852,29860,29893,29944,30159,30481,30482,30487,30520]]],["acknowledgement",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29496]]],["acknowledging",[3,3,[[54,1,1,0,1,[[1126,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]]],[29852,29893,29944]]],["knowledge",[16,16,[[44,3,3,0,3,[[1046,1,1,0,1],[1048,1,1,1,2],[1055,1,1,2,3]]],[48,2,2,3,5,[[1097,1,1,3,4],[1100,1,1,4,5]]],[49,1,1,5,6,[[1103,1,1,5,6]]],[50,3,3,6,9,[[1107,2,2,6,8],[1109,1,1,8,9]]],[53,1,1,9,10,[[1120,1,1,9,10]]],[54,1,1,10,11,[[1127,1,1,10,11]]],[57,1,1,11,12,[[1142,1,1,11,12]]],[60,4,4,12,16,[[1156,3,3,12,15],[1157,1,1,15,16]]]],[27958,28011,28190,29223,29285,29370,29474,29475,29527,29720,29860,30159,30481,30482,30487,30520]]]]},{"k":"G1923","v":[["superscription",[5,5,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,2,2,1,3,[[968,1,1,1,2],[971,1,1,2,3]]],[41,2,2,3,5,[[992,1,1,3,4],[995,1,1,4,5]]]],[23892,24689,24852,25803,25973]]]]},{"k":"G1924","v":[["*",[5,5,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[57,2,2,2,4,[[1140,1,1,2,3],[1142,1,1,3,4]]],[65,1,1,4,5,[[1187,1,1,4,5]]]],[24852,27546,30102,30149,31065]]],["+",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27546]]],["over",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24852]]],["thereon",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31065]]],["write",[2,2,[[57,2,2,0,2,[[1140,1,1,0,1],[1142,1,1,1,2]]]],[30102,30149]]]]},{"k":"G1925","v":[["*",[9,9,[[39,3,3,0,3,[[944,1,1,0,1],[950,1,1,1,2],[952,1,1,2,3]]],[41,3,3,3,6,[[989,1,1,3,4],[992,1,1,4,5],[996,1,1,5,6]]],[43,2,2,6,8,[[1026,1,1,6,7],[1035,1,1,7,8]]],[57,1,1,8,9,[[1138,1,1,8,9]]]],[23673,23891,23958,25665,25803,26031,27255,27585,30061]]],["Shew",[2,2,[[39,1,1,0,1,[[950,1,1,0,1]]],[41,1,1,1,2,[[992,1,1,1,2]]]],[23891,25803]]],["shew",[4,4,[[39,2,2,0,2,[[944,1,1,0,1],[952,1,1,1,2]]],[41,1,1,2,3,[[989,1,1,2,3]]],[57,1,1,3,4,[[1138,1,1,3,4]]]],[23673,23958,25665,30061]]],["shewed",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26031]]],["shewing",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1035,1,1,1,2]]]],[27255,27585]]]]},{"k":"G1926","v":[["*",[2,2,[[63,2,2,0,2,[[1165,2,2,0,2]]]],[30667,30668]]],["receive",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30668]]],["receiveth",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30667]]]]},{"k":"G1927","v":[["*",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1034,1,1,1,2]]]],[26959,27544]]],["strangers",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26959]]],["there",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27544]]]]},{"k":"G1928","v":[["thereto",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29117]]]]},{"k":"G1929","v":[["*",[11,10,[[39,2,2,0,2,[[935,2,2,0,2]]],[41,6,5,2,7,[[976,1,1,2,3],[983,3,2,3,5],[996,2,2,5,7]]],[42,1,1,7,8,[[1009,1,1,7,8]]],[43,2,2,8,10,[[1032,1,1,8,9],[1044,1,1,9,10]]]],[23325,23326,25080,25416,25417,26021,26033,26656,27472,27870]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27870]]],["delivered",[2,2,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]]],[25080,27472]]],["gave",[2,2,[[41,2,2,0,2,[[996,2,2,0,2]]]],[26021,26033]]],["give",[5,4,[[39,2,2,0,2,[[935,2,2,0,2]]],[41,2,1,2,3,[[983,2,1,2,3]]],[42,1,1,3,4,[[1009,1,1,3,4]]]],[23325,23326,25416,26656]]],["offer",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25417]]]]},{"k":"G1930","v":[["order",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29897]]]]},{"k":"G1931","v":[["down",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29298]]]]},{"k":"G1932","v":[["*",[2,2,[[43,1,1,0,1,[[1041,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]]],[27773,28972]]],["clemency",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27773]]],["gentleness",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28972]]]]},{"k":"G1933","v":[["*",[5,5,[[49,1,1,0,1,[[1106,1,1,0,1]]],[53,1,1,1,2,[[1121,1,1,1,2]]],[55,1,1,2,3,[[1131,1,1,2,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[29447,29734,29925,30336,30417]]],["gentle",[3,3,[[55,1,1,0,1,[[1131,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]]],[29925,30336,30417]]],["moderation",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29447]]],["patient",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29734]]]]},{"k":"G1934","v":[["*",[14,13,[[39,3,3,0,3,[[934,1,1,0,1],[940,1,1,1,2],[944,1,1,2,3]]],[40,1,1,3,4,[[964,1,1,3,4]]],[41,2,2,4,6,[[983,1,1,4,5],[984,1,1,5,6]]],[43,3,3,6,9,[[1029,1,1,6,7],[1030,1,1,7,8],[1036,1,1,8,9]]],[44,1,1,9,10,[[1056,1,1,9,10]]],[49,2,1,10,11,[[1106,2,1,10,11]]],[57,2,2,11,13,[[1143,1,1,11,12],[1145,1,1,12,13]]]],[23314,23528,23676,24512,25434,25489,27356,27369,27624,28216,29459,30186,30255]]],["after",[4,4,[[39,2,2,0,2,[[940,1,1,0,1],[944,1,1,1,2]]],[40,1,1,2,3,[[964,1,1,2,3]]],[41,1,1,3,4,[[984,1,1,3,4]]]],[23528,23676,24512,25489]]],["desire",[2,1,[[49,2,1,0,1,[[1106,2,1,0,1]]]],[29459]]],["desired",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27369]]],["enquire",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27624]]],["for",[2,2,[[43,1,1,0,1,[[1029,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]]],[27356,28216]]],["seek",[4,4,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[57,2,2,2,4,[[1143,1,1,2,3],[1145,1,1,3,4]]]],[23314,25434,30186,30255]]]]},{"k":"G1935","v":[["death",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28442]]]]},{"k":"G1936","v":[["on",[4,4,[[43,1,1,0,1,[[1025,1,1,0,1]]],[53,1,1,1,2,[[1122,1,1,1,2]]],[54,1,1,2,3,[[1125,1,1,2,3]]],[57,1,1,3,4,[[1138,1,1,3,4]]]],[27194,29761,29815,30046]]]]},{"k":"G1937","v":[["*",[16,16,[[39,2,2,0,2,[[933,1,1,0,1],[941,1,1,1,2]]],[41,4,4,2,6,[[987,1,1,2,3],[988,1,1,3,4],[989,1,1,4,5],[994,1,1,5,6]]],[43,1,1,6,7,[[1037,1,1,6,7]]],[44,2,2,7,9,[[1052,1,1,7,8],[1058,1,1,8,9]]],[45,1,1,9,10,[[1071,1,1,9,10]]],[47,1,1,10,11,[[1095,1,1,10,11]]],[53,1,1,11,12,[[1121,1,1,11,12]]],[57,1,1,12,13,[[1138,1,1,12,13]]],[58,1,1,13,14,[[1149,1,1,13,14]]],[59,1,1,14,15,[[1151,1,1,14,15]]],[65,1,1,15,16,[[1175,1,1,15,16]]]],[23262,23556,25604,25641,25673,25879,27659,28098,28275,28573,29179,29732,30055,30339,30386,30846]]],["covet",[2,2,[[44,2,2,0,2,[[1052,1,1,0,1],[1058,1,1,1,2]]]],[28098,28275]]],["coveted",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27659]]],["desire",[4,4,[[41,1,1,0,1,[[989,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]],[59,1,1,2,3,[[1151,1,1,2,3]]],[65,1,1,3,4,[[1175,1,1,3,4]]]],[25673,30055,30386,30846]]],["desired",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[23556,25879]]],["desireth",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29732]]],["desiring",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25641]]],["fain",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25604]]],["lust",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[58,1,1,1,2,[[1149,1,1,1,2]]]],[23262,30339]]],["lusted",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28573]]],["lusteth",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29179]]]]},{"k":"G1938","v":[["+",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28573]]]]},{"k":"G1939","v":[["*",[38,37,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]],[44,5,5,3,8,[[1046,1,1,3,4],[1051,1,1,4,5],[1052,2,2,5,7],[1058,1,1,7,8]]],[47,2,2,8,10,[[1095,2,2,8,10]]],[48,2,2,10,12,[[1098,1,1,10,11],[1100,1,1,11,12]]],[49,1,1,12,13,[[1103,1,1,12,13]]],[50,1,1,13,14,[[1109,1,1,13,14]]],[51,2,2,14,16,[[1112,1,1,14,15],[1114,1,1,15,16]]],[53,1,1,16,17,[[1124,1,1,16,17]]],[54,3,3,17,20,[[1126,1,1,17,18],[1127,1,1,18,19],[1128,1,1,19,20]]],[55,2,2,20,22,[[1130,1,1,20,21],[1131,1,1,21,22]]],[58,2,2,22,24,[[1146,2,2,22,24]]],[59,4,4,24,28,[[1151,1,1,24,25],[1152,1,1,25,26],[1154,2,2,26,28]]],[60,4,4,28,32,[[1156,1,1,28,29],[1157,2,2,29,31],[1158,1,1,31,32]]],[61,3,2,32,34,[[1160,3,2,32,34]]],[64,2,2,34,36,[[1166,2,2,34,36]]],[65,1,1,36,37,[[1184,1,1,36,37]]]],[24342,25879,26425,27954,28080,28098,28099,28280,29178,29186,29232,29294,29384,29522,29587,29608,29797,29849,29859,29873,29920,29926,30280,30281,30388,30410,30448,30449,30483,30510,30518,30525,30566,30567,30688,30690,31007]]],["after",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31007]]],["concupiscence",[3,3,[[44,1,1,0,1,[[1052,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]]],[28099,29522,29608]]],["desire",[3,3,[[41,1,1,0,1,[[994,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]]],[25879,29384,29587]]],["lust",[9,8,[[44,1,1,0,1,[[1052,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[58,2,2,2,4,[[1146,2,2,2,4]]],[60,2,2,4,6,[[1156,1,1,4,5],[1157,1,1,5,6]]],[61,3,2,6,8,[[1160,3,2,6,8]]]],[28098,29178,30280,30281,30483,30510,30566,30567]]],["lusts",[22,22,[[40,1,1,0,1,[[960,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]],[44,3,3,2,5,[[1046,1,1,2,3],[1051,1,1,3,4],[1058,1,1,4,5]]],[47,1,1,5,6,[[1095,1,1,5,6]]],[48,2,2,6,8,[[1098,1,1,6,7],[1100,1,1,7,8]]],[53,1,1,8,9,[[1124,1,1,8,9]]],[54,3,3,9,12,[[1126,1,1,9,10],[1127,1,1,10,11],[1128,1,1,11,12]]],[55,2,2,12,14,[[1130,1,1,12,13],[1131,1,1,13,14]]],[59,4,4,14,18,[[1151,1,1,14,15],[1152,1,1,15,16],[1154,2,2,16,18]]],[60,2,2,18,20,[[1157,1,1,18,19],[1158,1,1,19,20]]],[64,2,2,20,22,[[1166,2,2,20,22]]]],[24342,26425,27954,28080,28280,29186,29232,29294,29797,29849,29859,29873,29920,29926,30388,30410,30448,30449,30518,30525,30688,30690]]]]},{"k":"G1940","v":[["set",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23833]]]]},{"k":"G1941","v":[["*",[32,32,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[43,21,21,2,23,[[1018,1,1,2,3],[1019,1,1,3,4],[1021,1,1,4,5],[1024,1,1,5,6],[1026,2,2,6,8],[1027,3,3,8,11],[1028,1,1,11,12],[1029,2,2,12,14],[1032,2,2,14,16],[1039,1,1,16,17],[1042,4,4,17,21],[1043,1,1,21,22],[1045,1,1,22,23]]],[44,3,3,23,26,[[1055,3,3,23,26]]],[45,1,1,26,27,[[1062,1,1,26,27]]],[46,1,1,27,28,[[1078,1,1,27,28]]],[54,1,1,28,29,[[1126,1,1,28,29]]],[57,1,1,29,30,[[1143,1,1,29,30]]],[58,1,1,30,31,[[1147,1,1,30,31]]],[59,1,1,31,32,[[1151,1,1,31,32]]]],[23420,25867,26946,26970,27058,27175,27230,27237,27264,27277,27291,27320,27349,27362,27459,27464,27720,27807,27808,27817,27821,27855,27918,28200,28201,28202,28365,28823,29849,30188,30300,30391]]],["appeal",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27807]]],["appealed",[4,4,[[43,4,4,0,4,[[1042,3,3,0,3],[1043,1,1,3,4]]]],[27808,27817,27821,27855]]],["call",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28823]]],["called",[3,3,[[43,1,1,0,1,[[1032,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[27459,30188,30300]]],["is",[3,3,[[43,3,3,0,3,[[1027,2,2,0,2],[1028,1,1,2,3]]]],[27264,27291,27320]]],["on",[7,7,[[43,4,4,0,4,[[1019,1,1,0,1],[1026,2,2,1,3],[1039,1,1,3,4]]],[44,1,1,4,5,[[1055,1,1,4,5]]],[54,1,1,5,6,[[1126,1,1,5,6]]],[59,1,1,6,7,[[1151,1,1,6,7]]]],[26970,27230,27237,27720,28202,29849,30391]]],["surname",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27349]]],["surnamed",[5,5,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,4,4,1,5,[[1018,1,1,1,2],[1021,1,1,2,3],[1027,1,1,3,4],[1032,1,1,4,5]]]],[25867,26946,27058,27277,27464]]],["unto",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27918]]],["upon",[4,4,[[43,1,1,0,1,[[1024,1,1,0,1]]],[44,2,2,1,3,[[1055,2,2,1,3]]],[45,1,1,3,4,[[1062,1,1,3,4]]]],[27175,28200,28201,28365]]],["was",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]]],[23420,27362]]]]},{"k":"G1942","v":[["cloke",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30415]]]]},{"k":"G1943","v":[["covered",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28029]]]]},{"k":"G1944","v":[["*",[3,3,[[42,1,1,0,1,[[1003,1,1,0,1]]],[47,2,2,1,3,[[1093,2,2,1,3]]]],[26377,29112,29115]]],["Cursed",[2,2,[[47,2,2,0,2,[[1093,2,2,0,2]]]],[29112,29115]]],["cursed",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26377]]]]},{"k":"G1945","v":[["*",[7,7,[[41,2,2,0,2,[[977,1,1,0,1],[995,1,1,1,2]]],[42,2,2,2,4,[[1007,1,1,2,3],[1017,1,1,3,4]]],[43,1,1,4,5,[[1044,1,1,4,5]]],[45,1,1,5,6,[[1070,1,1,5,6]]],[57,1,1,6,7,[[1141,1,1,6,7]]]],[25108,25958,26561,26907,27875,28556,30115]]],["imposed",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30115]]],["instant",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25958]]],["lay",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26561]]],["on",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27875]]],["thereon",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26907]]],["upon",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]]],[25108,28556]]]]},{"k":"G1946","v":[["Epicureans",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27541]]]]},{"k":"G1947","v":[["help",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27845]]]]},{"k":"G1948","v":[["sentence",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25959]]]]},{"k":"G1949","v":[["*",[19,18,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,5,5,2,7,[[981,1,1,2,3],[986,1,1,3,4],[992,2,2,4,6],[995,1,1,6,7]]],[43,7,7,7,14,[[1026,1,1,7,8],[1033,1,1,8,9],[1034,1,1,9,10],[1035,1,1,10,11],[1038,2,2,11,13],[1040,1,1,13,14]]],[53,2,2,14,16,[[1124,2,2,14,16]]],[57,3,2,16,18,[[1134,2,1,16,17],[1140,1,1,17,18]]]],[23628,24523,25348,25557,25799,25805,25961,27243,27502,27542,27574,27694,27697,27753,29800,29807,29993,30101]]],["+",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29993]]],["caught",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[43,1,1,1,2,[[1033,1,1,1,2]]]],[23628,27502]]],["hold",[2,2,[[41,2,2,0,2,[[992,2,2,0,2]]]],[25799,25805]]],["on",[3,3,[[53,2,2,0,2,[[1124,2,2,0,2]]],[57,1,1,2,3,[[1134,1,1,2,3]]]],[29800,29807,29993]]],["took",[10,10,[[40,1,1,0,1,[[964,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[986,1,1,2,3]]],[43,6,6,3,9,[[1026,1,1,3,4],[1034,1,1,4,5],[1035,1,1,5,6],[1038,2,2,6,8],[1040,1,1,8,9]]],[57,1,1,9,10,[[1140,1,1,9,10]]]],[24523,25348,25557,27243,27542,27574,27694,27697,27753,30101]]],["upon",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25961]]]]},{"k":"G1950","v":[["*",[8,8,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]],[57,3,3,4,7,[[1138,1,1,4,5],[1145,2,2,5,7]]],[58,1,1,7,8,[[1146,1,1,7,8]]]],[23677,24514,25465,29434,30054,30243,30257,30290]]],["+",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30243]]],["forget",[2,2,[[57,2,2,0,2,[[1138,1,1,0,1],[1145,1,1,1,2]]]],[30054,30257]]],["forgetteth",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30290]]],["forgetting",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29434]]],["forgotten",[3,3,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,1,1,2,3,[[984,1,1,2,3]]]],[23677,24514,25465]]]]},{"k":"G1951","v":[["*",[2,2,[[42,1,1,0,1,[[1001,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]]],[26212,27482]]],["called",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26212]]],["chose",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27482]]]]},{"k":"G1952","v":[["fail",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30204]]]]},{"k":"G1953","v":[["forgetful",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30291]]]]},{"k":"G1954","v":[["rest",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30448]]]]},{"k":"G1955","v":[["interpretation",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30499]]]]},{"k":"G1956","v":[["*",[2,2,[[40,1,1,0,1,[[960,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[24357,27624]]],["determined",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27624]]],["expounded",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24357]]]]},{"k":"G1957","v":[["testifying",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30477]]]]},{"k":"G1958","v":[["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27858]]]]},{"k":"G1959","v":[["*",[3,3,[[41,2,2,0,2,[[982,2,2,0,2]]],[53,1,1,2,3,[[1121,1,1,2,3]]]],[25397,25398,29736]]],["care",[2,2,[[41,2,2,0,2,[[982,2,2,0,2]]]],[25397,25398]]],["of",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29736]]]]},{"k":"G1960","v":[["diligently",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25596]]]]},{"k":"G1961","v":[["*",[18,18,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,8,8,1,9,[[1027,1,1,1,2],[1029,1,1,2,3],[1030,1,1,3,4],[1032,1,1,4,5],[1038,2,2,5,7],[1045,2,2,7,9]]],[44,3,3,9,12,[[1051,1,1,9,10],[1056,2,2,10,12]]],[45,2,2,12,14,[[1077,2,2,12,14]]],[47,1,1,14,15,[[1091,1,1,14,15]]],[49,1,1,15,16,[[1103,1,1,15,16]]],[50,1,1,16,17,[[1107,1,1,16,17]]],[53,1,1,17,18,[[1122,1,1,17,18]]]],[26388,27307,27353,27405,27476,27668,27674,27911,27913,28069,28231,28232,28783,28784,29075,29385,29488,29763]]],["+",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28232]]],["abide",[2,2,[[43,1,1,0,1,[[1032,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[27476,29385]]],["abode",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29075]]],["continue",[4,4,[[43,1,1,0,1,[[1030,1,1,0,1]]],[44,1,1,1,2,[[1051,1,1,1,2]]],[50,1,1,2,3,[[1107,1,1,2,3]]],[53,1,1,3,4,[[1122,1,1,3,4]]]],[27405,28069,29488,29763]]],["continued",[2,2,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]]],[26388,27353]]],["in",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28231]]],["tarried",[3,3,[[43,3,3,0,3,[[1038,2,2,0,2],[1045,1,1,2,3]]]],[27668,27674,27911]]],["tarry",[4,4,[[43,2,2,0,2,[[1027,1,1,0,1],[1045,1,1,1,2]]],[45,2,2,2,4,[[1077,2,2,2,4]]]],[27307,27913,28783,28784]]]]},{"k":"G1962","v":[["consented",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27577]]]]},{"k":"G1963","v":[["thought",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27198]]]]},{"k":"G1964","v":[["forswear",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23267]]]]},{"k":"G1965","v":[["persons",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29706]]]]},{"k":"G1966","v":[["*",[5,5,[[43,5,5,0,5,[[1024,1,1,0,1],[1033,1,1,1,2],[1037,1,1,2,3],[1038,1,1,3,4],[1040,1,1,4,5]]]],[27142,27494,27641,27682,27745]]],["following",[2,2,[[43,2,2,0,2,[[1038,1,1,0,1],[1040,1,1,1,2]]]],[27682,27745]]],["next",[3,3,[[43,3,3,0,3,[[1024,1,1,0,1],[1033,1,1,1,2],[1037,1,1,2,3]]]],[27142,27494,27641]]]]},{"k":"G1967","v":[["daily",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23293,25408]]]]},{"k":"G1968","v":[["*",[13,13,[[40,1,1,0,1,[[959,1,1,0,1]]],[41,2,2,1,3,[[973,1,1,1,2],[987,1,1,2,3]]],[42,1,1,3,4,[[1009,1,1,3,4]]],[43,8,8,4,12,[[1025,1,1,4,5],[1027,2,2,5,7],[1028,1,1,7,8],[1030,1,1,8,9],[1036,1,1,9,10],[1037,2,2,10,12]]],[44,1,1,12,13,[[1060,1,1,12,13]]]],[24298,24905,25608,26655,27192,27269,27303,27322,27373,27602,27636,27663,28306]]],["fallen",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27192]]],["fell",[9,9,[[41,2,2,0,2,[[973,1,1,0,1],[987,1,1,1,2]]],[43,6,6,2,8,[[1027,2,2,2,4],[1028,1,1,4,5],[1030,1,1,5,6],[1036,1,1,6,7],[1037,1,1,7,8]]],[44,1,1,8,9,[[1060,1,1,8,9]]]],[24905,25608,27269,27303,27322,27373,27602,27663,28306]]],["lying",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26655]]],["on",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27636]]],["upon",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24298]]]]},{"k":"G1969","v":[["Rebuke",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29764]]]]},{"k":"G1970","v":[]},{"k":"G1971","v":[["*",[9,9,[[44,1,1,0,1,[[1046,1,1,0,1]]],[46,2,2,1,3,[[1082,1,1,1,2],[1086,1,1,2,3]]],[49,2,2,3,5,[[1103,1,1,3,4],[1104,1,1,4,5]]],[51,1,1,5,6,[[1113,1,1,5,6]]],[54,1,1,6,7,[[1125,1,1,6,7]]],[58,1,1,7,8,[[1149,1,1,7,8]]],[59,1,1,8,9,[[1152,1,1,8,9]]]],[27941,28879,28970,29369,29417,29596,29813,30342,30401]]],["+",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29417]]],["after",[2,2,[[46,1,1,0,1,[[1086,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[28970,29369]]],["desire",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30401]]],["desiring",[2,2,[[46,1,1,0,1,[[1082,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]]],[28879,29813]]],["greatly",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29596]]],["long",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27941]]],["lusteth",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30342]]]]},{"k":"G1972","v":[["desire",[2,2,[[46,2,2,0,2,[[1084,2,2,0,2]]]],[28923,28927]]]]},{"k":"G1973","v":[["for",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29443]]]]},{"k":"G1974","v":[["desire",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28326]]]]},{"k":"G1975","v":[["come",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25249]]]]},{"k":"G1976","v":[["seweth",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24281]]]]},{"k":"G1977","v":[["*",[2,2,[[41,1,1,0,1,[[991,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[25766,30472]]],["Casting",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30472]]],["cast",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25766]]]]},{"k":"G1978","v":[["*",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]]],[24145,28343]]],["notable",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24145]]],["note",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28343]]]]},{"k":"G1979","v":[["victuals",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25313]]]]},{"k":"G1980","v":[["*",[11,11,[[39,2,2,0,2,[[953,2,2,0,2]]],[41,3,3,2,5,[[973,2,2,2,4],[979,1,1,4,5]]],[43,4,4,5,9,[[1023,1,1,5,6],[1024,1,1,6,7],[1032,2,2,7,9]]],[57,1,1,9,10,[[1134,1,1,9,10]]],[58,1,1,10,11,[[1146,1,1,10,11]]]],[24044,24051,24961,24971,25211,27104,27139,27456,27478,29983,30293]]],["out",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27104]]],["visit",[4,4,[[43,3,3,0,3,[[1024,1,1,0,1],[1032,2,2,1,3]]],[58,1,1,3,4,[[1146,1,1,3,4]]]],[27139,27456,27478,30293]]],["visited",[5,5,[[39,2,2,0,2,[[953,2,2,0,2]]],[41,3,3,2,5,[[973,2,2,2,4],[979,1,1,4,5]]]],[24044,24051,24961,24971,25211]]],["visitest",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29983]]]]},{"k":"G1981","v":[["rest",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29031]]]]},{"k":"G1982","v":[["*",[5,5,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[981,1,1,3,4]]],[43,1,1,4,5,[[1022,1,1,4,5]]]],[23705,24545,24928,25335,27074]]],["overshadow",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[24928,27074]]],["overshadowed",[3,3,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]]],[23705,24545,25335]]]]},{"k":"G1983","v":[["*",[2,2,[[57,1,1,0,1,[[1144,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[30227,30467]]],["diligently",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30227]]],["oversight",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30467]]]]},{"k":"G1984","v":[["*",[4,4,[[41,1,1,0,1,[[991,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]],[53,1,1,2,3,[[1121,1,1,2,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[25775,26943,29732,30411]]],["bishop",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29732]]],["bishoprick",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26943]]],["visitation",[2,2,[[41,1,1,0,1,[[991,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[25775,30411]]]]},{"k":"G1985","v":[["*",[5,5,[[43,1,1,0,1,[[1037,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]],[53,1,1,2,3,[[1121,1,1,2,3]]],[55,1,1,3,4,[[1129,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[27654,29362,29733,29899,30424]]],["Bishop",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30424]]],["bishop",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[29733,29899]]],["bishops",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29362]]],["overseers",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27654]]]]},{"k":"G1986","v":[["uncircumcised",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28505]]]]},{"k":"G1987","v":[["*",[14,14,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,9,9,1,10,[[1027,1,1,1,2],[1032,1,1,2,3],[1035,1,1,3,4],[1036,2,2,4,6],[1037,1,1,6,7],[1039,1,1,7,8],[1041,1,1,8,9],[1043,1,1,9,10]]],[53,1,1,10,11,[[1124,1,1,10,11]]],[57,1,1,11,12,[[1143,1,1,11,12]]],[58,1,1,12,13,[[1149,1,1,12,13]]],[64,1,1,13,14,[[1166,1,1,13,14]]]],[24822,27287,27449,27582,27600,27610,27644,27723,27779,27849,29792,30180,30351,30682]]],["know",[9,9,[[43,7,7,0,7,[[1027,1,1,0,1],[1032,1,1,1,2],[1036,2,2,2,4],[1037,1,1,4,5],[1039,1,1,5,6],[1041,1,1,6,7]]],[58,1,1,7,8,[[1149,1,1,7,8]]],[64,1,1,8,9,[[1166,1,1,8,9]]]],[27287,27449,27600,27610,27644,27723,27779,30351,30682]]],["knoweth",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27849]]],["knowing",[3,3,[[43,1,1,0,1,[[1035,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[27582,29792,30180]]],["understand",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24822]]]]},{"k":"G1988","v":[["*",[7,6,[[41,7,6,0,6,[[977,1,1,0,1],[980,3,2,1,3],[981,2,2,3,5],[989,1,1,5,6]]]],[25112,25269,25290,25334,25350,25664]]],["Master",[6,6,[[41,6,6,0,6,[[977,1,1,0,1],[980,2,2,1,3],[981,2,2,3,5],[989,1,1,5,6]]]],[25112,25269,25290,25334,25350,25664]]],["master",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25269]]]]},{"k":"G1989","v":[["*",[3,3,[[43,2,2,0,2,[[1032,1,1,0,1],[1038,1,1,1,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]]],[27462,27689,30263]]],["letter",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30263]]],["write",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27462]]],["written",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27689]]]]},{"k":"G1990","v":[["knowledge",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30332]]]]},{"k":"G1991","v":[["*",[4,4,[[43,4,4,0,4,[[1031,1,1,0,1],[1032,2,2,1,3],[1035,1,1,3,4]]]],[27436,27474,27483,27580]]],["Confirming",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27436]]],["confirmed",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27474]]],["confirming",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27483]]],["strengthening",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27580]]]]},{"k":"G1992","v":[["*",[24,23,[[43,5,5,0,5,[[1026,1,1,0,1],[1032,1,1,1,2],[1039,1,1,2,3],[1040,2,2,3,5]]],[44,1,1,5,6,[[1061,1,1,5,6]]],[45,2,2,6,8,[[1066,1,1,6,7],[1077,1,1,7,8]]],[46,8,7,8,15,[[1080,3,3,8,11],[1084,2,1,11,12],[1087,3,3,12,15]]],[50,1,1,15,16,[[1110,1,1,15,16]]],[51,1,1,16,17,[[1115,1,1,16,17]]],[52,4,4,17,21,[[1117,2,2,17,19],[1118,2,2,19,21]]],[60,2,2,21,23,[[1158,2,2,21,23]]]],[27218,27472,27709,27759,27767,28358,28463,28779,28842,28843,28844,28924,28980,28981,28982,29558,29648,29663,29676,29692,29695,30523,30538]]],["+",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28981]]],["epistle",[13,13,[[43,2,2,0,2,[[1032,1,1,0,1],[1040,1,1,1,2]]],[44,1,1,2,3,[[1061,1,1,2,3]]],[45,1,1,3,4,[[1066,1,1,3,4]]],[46,3,3,4,7,[[1080,2,2,4,6],[1084,1,1,6,7]]],[50,1,1,7,8,[[1110,1,1,7,8]]],[51,1,1,8,9,[[1115,1,1,8,9]]],[52,3,3,9,12,[[1117,1,1,9,10],[1118,2,2,10,12]]],[60,1,1,12,13,[[1158,1,1,12,13]]]],[27472,27767,28358,28463,28843,28844,28924,29558,29648,29676,29692,29695,30523]]],["epistles",[2,2,[[46,1,1,0,1,[[1080,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[28842,30538]]],["letter",[3,3,[[43,1,1,0,1,[[1040,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]]],[27759,28924,29663]]],["letters",[5,5,[[43,2,2,0,2,[[1026,1,1,0,1],[1039,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[46,2,2,3,5,[[1087,2,2,3,5]]]],[27218,27709,28779,28980,28982]]]]},{"k":"G1993","v":[["+",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29903]]]]},{"k":"G1994","v":[["*",[39,38,[[39,5,5,0,5,[[937,1,1,0,1],[938,1,1,1,2],[940,1,1,2,3],[941,1,1,3,4],[952,1,1,4,5]]],[40,4,4,5,9,[[960,1,1,5,6],[961,1,1,6,7],[964,1,1,7,8],[969,1,1,8,9]]],[41,7,7,9,16,[[973,2,2,9,11],[974,1,1,11,12],[980,1,1,12,13],[989,2,2,13,15],[994,1,1,15,16]]],[42,2,2,16,18,[[1008,1,1,16,17],[1017,1,1,17,18]]],[43,11,11,18,29,[[1020,1,1,18,19],[1026,2,2,19,21],[1028,1,1,21,22],[1031,1,1,22,23],[1032,2,2,23,25],[1033,1,1,25,26],[1043,2,2,26,28],[1045,1,1,28,29]]],[46,1,1,29,30,[[1080,1,1,29,30]]],[47,1,1,30,31,[[1094,1,1,30,31]]],[51,1,1,31,32,[[1111,1,1,31,32]]],[58,2,2,32,34,[[1150,2,2,32,34]]],[59,1,1,34,35,[[1152,1,1,34,35]]],[60,2,2,35,37,[[1157,2,2,35,37]]],[65,2,1,37,38,[[1167,2,1,37,38]]]],[23401,23430,23533,23554,23975,24335,24394,24533,24733,24909,24910,24993,25300,25655,25682,25896,26620,26918,27015,27251,27256,27328,27429,27461,27478,27501,27841,27843,27926,28857,29140,29569,30373,30374,30424,30521,30522,30709]]],["+",[2,2,[[43,1,1,0,1,[[1032,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[27478,30522]]],["about",[4,4,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[964,1,1,2,3]]],[42,1,1,3,4,[[1017,1,1,3,4]]]],[23401,24394,24533,26918]]],["again",[2,2,[[41,2,2,0,2,[[980,1,1,0,1],[989,1,1,1,2]]]],[25300,25655]]],["back",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24733]]],["convert",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30373]]],["converted",[6,6,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,1,1,3,4,[[1008,1,1,3,4]]],[43,2,2,4,6,[[1020,1,1,4,5],[1045,1,1,5,6]]]],[23554,24335,25896,26620,27015,27926]]],["converteth",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30374]]],["return",[4,4,[[39,3,3,0,3,[[938,1,1,0,1],[940,1,1,1,2],[952,1,1,2,3]]],[41,1,1,3,4,[[989,1,1,3,4]]]],[23430,23533,23975,25682]]],["returned",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[24993,30424]]],["turn",[8,8,[[41,2,2,0,2,[[973,2,2,0,2]]],[43,3,3,2,5,[[1031,1,1,2,3],[1043,2,2,3,5]]],[46,1,1,5,6,[[1080,1,1,5,6]]],[47,1,1,6,7,[[1094,1,1,6,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]]],[24909,24910,27429,27841,27843,28857,29140,30521]]],["turned",[7,6,[[43,4,4,0,4,[[1026,1,1,0,1],[1028,1,1,1,2],[1032,1,1,2,3],[1033,1,1,3,4]]],[51,1,1,4,5,[[1111,1,1,4,5]]],[65,2,1,5,6,[[1167,2,1,5,6]]]],[27251,27328,27461,27501,29569,30709]]],["turning",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27256]]]]},{"k":"G1995","v":[["conversion",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27445]]]]},{"k":"G1996","v":[["*",[7,6,[[39,3,2,0,2,[[951,2,1,0,1],[952,1,1,1,2]]],[40,2,2,2,4,[[957,1,1,2,3],[969,1,1,3,4]]],[41,2,2,4,6,[[984,1,1,4,5],[985,1,1,5,6]]]],[23955,23988,24248,24744,25460,25552]]],["+",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23955,25552]]],["gathereth",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23955]]],["together",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,2,2,1,3,[[957,1,1,1,2],[969,1,1,2,3]]],[41,1,1,3,4,[[984,1,1,3,4]]]],[23988,24248,24744,25460]]]]},{"k":"G1997","v":[["*",[2,2,[[52,1,1,0,1,[[1117,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[29662,30158]]],["+",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30158]]],["together",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29662]]]]},{"k":"G1998","v":[["together",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24563]]]]},{"k":"G1999","v":[["*",[2,2,[[43,1,1,0,1,[[1041,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[27781,29017]]],["+",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27781]]],["upon",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29017]]]]},{"k":"G2000","v":[["dangerous",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27864]]]]},{"k":"G2001","v":[["fierce",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25940]]]]},{"k":"G2002","v":[["heap",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29873]]]]},{"k":"G2003","v":[["*",[7,7,[[44,1,1,0,1,[[1061,1,1,0,1]]],[45,2,2,1,3,[[1068,2,2,1,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]],[53,1,1,4,5,[[1119,1,1,4,5]]],[55,2,2,5,7,[[1129,1,1,5,6],[1130,1,1,6,7]]]],[28362,28493,28512,28940,29697,29895,29923]]],["authority",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29923]]],["commandment",[6,6,[[44,1,1,0,1,[[1061,1,1,0,1]]],[45,2,2,1,3,[[1068,2,2,1,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]],[53,1,1,4,5,[[1119,1,1,4,5]]],[55,1,1,5,6,[[1129,1,1,5,6]]]],[28362,28493,28512,28940,29697,29895]]]]},{"k":"G2004","v":[["*",[10,10,[[40,4,4,0,4,[[957,1,1,0,1],[962,2,2,1,3],[965,1,1,3,4]]],[41,4,4,4,8,[[976,1,1,4,5],[980,2,2,5,7],[986,1,1,7,8]]],[43,1,1,8,9,[[1040,1,1,8,9]]],[56,1,1,9,10,[[1132,1,1,9,10]]]],[24242,24434,24446,24563,25099,25270,25276,25575,27736,29946]]],["charge",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24563]]],["command",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25276]]],["commanded",[4,4,[[40,2,2,0,2,[[962,2,2,0,2]]],[41,1,1,2,3,[[986,1,1,2,3]]],[43,1,1,3,4,[[1040,1,1,3,4]]]],[24434,24446,25575,27736]]],["commandeth",[3,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,2,2,1,3,[[976,1,1,1,2],[980,1,1,2,3]]]],[24242,25099,25270]]],["enjoin",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29946]]]]},{"k":"G2005","v":[["*",[11,10,[[41,1,1,0,1,[[985,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[46,4,3,2,5,[[1084,1,1,2,3],[1085,3,2,3,5]]],[47,1,1,5,6,[[1093,1,1,5,6]]],[49,1,1,6,7,[[1103,1,1,6,7]]],[57,2,2,7,9,[[1140,1,1,7,8],[1141,1,1,8,9]]],[59,1,1,9,10,[[1155,1,1,9,10]]]],[25550,28331,28917,28938,28943,29105,29367,30097,30111,30474]]],["accomplished",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30474]]],["accomplishing",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30111]]],["do",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25550]]],["finish",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28938]]],["make",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30097]]],["perfect",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29105]]],["perfecting",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28917]]],["perform",[2,2,[[46,1,1,0,1,[[1085,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[28943,29367]]],["performance",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28943]]],["performed",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28331]]]]},{"k":"G2006","v":[["needful",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30309]]]]},{"k":"G2007","v":[["*",[42,41,[[39,7,7,0,7,[[937,1,1,0,1],[947,2,2,1,3],[949,1,1,3,4],[951,1,1,4,5],[955,2,2,5,7]]],[40,9,9,7,16,[[959,2,2,7,9],[960,1,1,9,10],[961,1,1,10,11],[962,1,1,11,12],[963,1,1,12,13],[964,2,2,13,15],[972,1,1,15,16]]],[41,6,6,16,22,[[976,1,1,16,17],[980,1,1,17,18],[982,1,1,18,19],[985,1,1,19,20],[987,1,1,20,21],[995,1,1,21,22]]],[42,2,2,22,24,[[1005,1,1,22,23],[1015,1,1,23,24]]],[43,14,14,24,38,[[1023,1,1,24,25],[1025,2,2,25,27],[1026,2,2,27,29],[1030,1,1,29,30],[1032,2,2,30,32],[1033,1,1,32,33],[1035,1,1,33,34],[1036,1,1,34,35],[1045,3,3,35,38]]],[53,1,1,38,39,[[1123,1,1,38,39]]],[65,3,2,39,41,[[1167,1,1,39,40],[1188,2,1,40,41]]]],[23397,23775,23777,23833,23922,24158,24166,24304,24305,24344,24387,24412,24495,24523,24525,24891,25103,25261,25393,25531,25593,25961,26455,26827,27107,27193,27195,27228,27233,27365,27452,27470,27506,27567,27591,27902,27907,27909,29785,30714,31098]]],["+",[8,8,[[40,5,5,0,5,[[959,2,2,0,2],[962,1,1,2,3],[963,1,1,3,4],[964,1,1,4,5]]],[41,2,2,5,7,[[976,1,1,5,6],[982,1,1,6,7]]],[43,1,1,7,8,[[1023,1,1,7,8]]]],[24304,24305,24412,24495,24523,25103,25393,27107]]],["Lay",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29785]]],["add",[2,1,[[65,2,1,0,1,[[1188,2,1,0,1]]]],[31098]]],["laded",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27909]]],["laid",[10,10,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,2,2,1,3,[[985,1,1,1,2],[995,1,1,2,3]]],[43,6,6,3,9,[[1025,1,1,3,4],[1030,1,1,4,5],[1033,1,1,5,6],[1036,1,1,6,7],[1045,2,2,7,9]]],[65,1,1,9,10,[[1167,1,1,9,10]]]],[23777,25531,25961,27193,27365,27506,27591,27902,27907,30714]]],["lay",[6,6,[[39,2,2,0,2,[[937,1,1,0,1],[951,1,1,1,2]]],[40,2,2,2,4,[[961,1,1,2,3],[972,1,1,3,4]]],[43,2,2,4,6,[[1025,1,1,4,5],[1032,1,1,5,6]]]],[23397,23922,24387,24891,27195,27470]]],["layeth",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25593]]],["on",[2,2,[[42,1,1,0,1,[[1015,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]]],[26827,27567]]],["put",[6,6,[[39,3,3,0,3,[[947,1,1,0,1],[949,1,1,1,2],[955,1,1,2,3]]],[40,1,1,3,4,[[964,1,1,3,4]]],[42,1,1,4,5,[[1005,1,1,4,5]]],[43,1,1,5,6,[[1032,1,1,5,6]]]],[23775,23833,24158,24525,26455,27452]]],["putting",[2,2,[[43,2,2,0,2,[[1026,2,2,0,2]]]],[27228,27233]]],["set",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24344]]],["setteth",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25261]]],["up",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24166]]]]},{"k":"G2008","v":[["*",[29,29,[[39,6,6,0,6,[[936,1,1,0,1],[940,1,1,1,2],[944,1,1,2,3],[945,1,1,3,4],[947,1,1,4,5],[948,1,1,5,6]]],[40,9,9,6,15,[[957,1,1,6,7],[959,1,1,7,8],[960,1,1,8,9],[964,3,3,9,12],[965,1,1,12,13],[966,2,2,13,15]]],[41,12,12,15,27,[[976,3,3,15,18],[980,1,1,18,19],[981,3,3,19,22],[989,1,1,22,23],[990,2,2,23,25],[991,1,1,25,26],[995,1,1,26,27]]],[54,1,1,27,28,[[1128,1,1,27,28]]],[64,1,1,28,29,[[1166,1,1,28,29]]]],[23371,23505,23694,23718,23775,23823,24240,24300,24362,24530,24532,24533,24563,24601,24636,25098,25102,25104,25269,25322,25343,25356,25654,25703,25727,25770,25975,29872,30681]]],["charged",[5,5,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,3,3,1,4,[[959,1,1,1,2],[964,1,1,2,3],[966,1,1,3,4]]],[41,1,1,4,5,[[981,1,1,4,5]]]],[23505,24300,24530,24636,25322]]],["rebuke",[6,6,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,2,2,2,4,[[989,1,1,2,3],[991,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]],[64,1,1,5,6,[[1166,1,1,5,6]]]],[23694,24532,25654,25770,29872,30681]]],["rebuked",[17,17,[[39,4,4,0,4,[[936,1,1,0,1],[945,1,1,1,2],[947,1,1,2,3],[948,1,1,3,4]]],[40,5,5,4,9,[[957,1,1,4,5],[960,1,1,5,6],[964,1,1,6,7],[965,1,1,7,8],[966,1,1,8,9]]],[41,8,8,9,17,[[976,2,2,9,11],[980,1,1,11,12],[981,2,2,12,14],[990,2,2,14,16],[995,1,1,16,17]]]],[23371,23718,23775,23823,24240,24362,24533,24563,24601,25098,25102,25269,25343,25356,25703,25727,25975]]],["rebuking",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25104]]]]},{"k":"G2009","v":[["punishment",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28830]]]]},{"k":"G2010","v":[["*",[19,18,[[39,3,3,0,3,[[936,2,2,0,2],[947,1,1,2,3]]],[40,2,2,3,5,[[961,1,1,3,4],[966,1,1,4,5]]],[41,4,3,5,8,[[980,2,1,5,6],[981,2,2,6,8]]],[42,1,1,8,9,[[1015,1,1,8,9]]],[43,5,5,9,14,[[1038,2,2,9,11],[1043,1,1,11,12],[1044,1,1,12,13],[1045,1,1,13,14]]],[45,2,2,14,16,[[1075,1,1,14,15],[1077,1,1,15,16]]],[53,1,1,16,17,[[1120,1,1,16,17]]],[57,1,1,17,18,[[1138,1,1,17,18]]]],[23366,23376,23770,24377,24592,25277,25360,25362,26863,27703,27704,27824,27858,27915,28712,28783,29728,30047]]],["+",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24377]]],["leave",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26863]]],["let",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25362]]],["liberty",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27858]]],["licence",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27704]]],["permit",[2,2,[[45,1,1,0,1,[[1077,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[28783,30047]]],["permitted",[2,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[27824,28712]]],["suffer",[6,6,[[39,2,2,0,2,[[936,2,2,0,2]]],[41,2,2,2,4,[[980,1,1,2,3],[981,1,1,3,4]]],[43,1,1,4,5,[[1038,1,1,4,5]]],[53,1,1,5,6,[[1120,1,1,5,6]]]],[23366,23376,25277,25360,27703,29728]]],["suffered",[4,4,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[43,1,1,3,4,[[1045,1,1,3,4]]]],[23770,24592,25277,27915]]]]},{"k":"G2011","v":[["commission",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27835]]]]},{"k":"G2012","v":[["*",[3,3,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[47,1,1,2,3,[[1094,1,1,2,3]]]],[23800,25248,29133]]],["steward",[2,2,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[23800,25248]]],["tutors",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29133]]]]},{"k":"G2013","v":[["*",[5,4,[[44,2,1,0,1,[[1056,2,1,0,1]]],[57,2,2,1,3,[[1138,1,1,1,2],[1143,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]]],[28216,30059,30205,30339]]],["obtain",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30339]]],["obtained",[4,3,[[44,2,1,0,1,[[1056,2,1,0,1]]],[57,2,2,1,3,[[1138,1,1,1,2],[1143,1,1,2,3]]]],[28216,30059,30205]]]]},{"k":"G2014","v":[["*",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]],[55,2,2,2,4,[[1130,1,1,2,3],[1131,1,1,3,4]]]],[24972,27875,29919,29927]]],["appeared",[3,3,[[43,1,1,0,1,[[1044,1,1,0,1]]],[55,2,2,1,3,[[1130,1,1,1,2],[1131,1,1,2,3]]]],[27875,29919,29927]]],["light",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24972]]]]},{"k":"G2015","v":[["*",[6,6,[[52,1,1,0,1,[[1117,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]],[54,3,3,2,5,[[1125,1,1,2,3],[1128,2,2,3,5]]],[55,1,1,5,6,[[1130,1,1,5,6]]]],[29669,29802,29819,29871,29878,29921]]],["appearing",[5,5,[[53,1,1,0,1,[[1124,1,1,0,1]]],[54,3,3,1,4,[[1125,1,1,1,2],[1128,2,2,2,4]]],[55,1,1,4,5,[[1130,1,1,4,5]]]],[29802,29819,29871,29878,29921]]],["brightness",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29669]]]]},{"k":"G2016","v":[["notable",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26969]]]]},{"k":"G2017","v":[["+",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29318]]]]},{"k":"G2018","v":[["*",[5,5,[[43,2,2,0,2,[[1036,1,1,0,1],[1042,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[49,1,1,3,4,[[1103,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[27597,27814,27996,29377,30681]]],["add",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29377]]],["against",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30681]]],["brought",[2,2,[[43,2,2,0,2,[[1036,1,1,0,1],[1042,1,1,1,2]]]],[27597,27814]]],["taketh",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[27996]]]]},{"k":"G2019","v":[["*",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,2,2,1,3,[[1029,1,1,1,2],[1039,1,1,2,3]]]],[25956,27359,27728]]],["+",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27728]]],["cried",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25956]]],["shout",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27359]]]]},{"k":"G2020","v":[["*",[2,2,[[39,1,1,0,1,[[956,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24196,25989]]],["dawn",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24196]]],["on",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25989]]]]},{"k":"G2021","v":[["*",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,2,2,1,3,[[1026,1,1,1,2],[1036,1,1,2,3]]]],[24894,27245,27598]]],["about",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27245]]],["hand",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24894]]],["upon",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27598]]]]},{"k":"G2022","v":[["in",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25397]]]]},{"k":"G2023","v":[["*",[5,5,[[46,1,1,0,1,[[1086,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]],[60,2,2,3,5,[[1156,2,2,3,5]]]],[28966,29107,29513,30484,30490]]],["+",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29107]]],["add",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30484]]],["ministered",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29513]]],["ministereth",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28966]]],["unto",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30490]]]]},{"k":"G2024","v":[["*",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[29288,29380]]],["supplieth",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29288]]],["supply",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29380]]]]},{"k":"G2025","v":[["anointed",[2,2,[[42,2,2,0,2,[[1005,2,2,0,2]]]],[26446,26451]]]]},{"k":"G2026","v":[["*",[8,7,[[43,1,1,0,1,[[1037,1,1,0,1]]],[45,4,3,1,4,[[1064,4,3,1,4]]],[48,1,1,4,5,[[1098,1,1,4,5]]],[50,1,1,5,6,[[1108,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[27658,28420,28422,28424,29249,29501,30692]]],["build",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28422]]],["built",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29249]]],["thereon",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28420]]],["thereupon",[2,2,[[45,2,2,0,2,[[1064,2,2,0,2]]]],[28420,28424]]],["up",[3,3,[[43,1,1,0,1,[[1037,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[27658,29501,30692]]]]},{"k":"G2027","v":[["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27896]]]]},{"k":"G2028","v":[["called",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27979]]]]},{"k":"G2029","v":[["behold",[2,2,[[59,2,2,0,2,[[1152,1,1,0,1],[1153,1,1,1,2]]]],[30411,30426]]]]},{"k":"G2030","v":[["eyewitnesses",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30495]]]]},{"k":"G2031","v":[["+",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30073]]]]},{"k":"G2032","v":[["*",[20,18,[[39,1,1,0,1,[[946,1,1,0,1]]],[42,1,1,1,2,[[999,1,1,1,2]]],[45,5,3,2,5,[[1076,5,3,2,5]]],[48,5,5,5,10,[[1097,2,2,5,7],[1098,1,1,7,8],[1099,1,1,8,9],[1102,1,1,9,10]]],[49,1,1,10,11,[[1104,1,1,10,11]]],[54,1,1,11,12,[[1128,1,1,11,12]]],[57,6,6,12,18,[[1135,1,1,12,13],[1138,1,1,13,14],[1140,1,1,14,15],[1141,1,1,15,16],[1143,1,1,16,17],[1144,1,1,17,18]]]],[23762,26132,28758,28766,28767,29209,29226,29235,29261,29349,29401,29888,29996,30048,30097,30128,30188,30234]]],["+",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28766]]],["celestial",[2,1,[[45,2,1,0,1,[[1076,2,1,0,1]]]],[28758]]],["heaven",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29401]]],["heavenly",[12,12,[[39,1,1,0,1,[[946,1,1,0,1]]],[45,2,2,1,3,[[1076,2,2,1,3]]],[48,4,4,3,7,[[1097,2,2,3,5],[1098,1,1,5,6],[1099,1,1,6,7]]],[54,1,1,7,8,[[1128,1,1,7,8]]],[57,4,4,8,12,[[1135,1,1,8,9],[1138,1,1,9,10],[1143,1,1,10,11],[1144,1,1,11,12]]]],[23762,28766,28767,29209,29226,29235,29261,29888,29996,30048,30188,30234]]],["high",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29349]]],["things",[3,3,[[42,1,1,0,1,[[999,1,1,0,1]]],[57,2,2,1,3,[[1140,1,1,1,2],[1141,1,1,2,3]]]],[26132,30097,30128]]]]},{"k":"G2033","v":[["*",[87,63,[[39,9,9,0,9,[[940,1,1,0,1],[943,3,3,1,4],[944,1,1,4,5],[946,1,1,5,6],[950,3,3,6,9]]],[40,9,8,9,17,[[964,5,4,9,13],[968,3,3,13,16],[972,1,1,16,17]]],[41,6,6,17,23,[[974,1,1,17,18],[980,1,1,18,19],[983,1,1,19,20],[992,3,3,20,23]]],[43,8,8,23,31,[[1023,1,1,23,24],[1030,1,1,24,25],[1036,1,1,25,26],[1037,1,1,26,27],[1038,3,3,27,30],[1045,1,1,30,31]]],[57,1,1,31,32,[[1143,1,1,31,32]]],[65,54,31,32,63,[[1167,12,6,32,38],[1168,2,1,38,39],[1169,2,1,39,40],[1170,2,1,40,41],[1171,5,3,41,44],[1174,4,2,44,46],[1176,3,2,46,48],[1177,1,1,48,49],[1178,2,1,49,50],[1179,1,1,50,51],[1181,8,4,51,55],[1182,1,1,55,56],[1183,8,6,56,62],[1187,3,1,62,63]]]],[23534,23667,23669,23670,23682,23749,23897,23898,23900,24505,24506,24508,24520,24693,24695,24696,24882,25009,25247,25431,25808,25810,25812,27104,27381,27599,27632,27668,27672,27691,27913,30202,30701,30708,30709,30710,30713,30717,30718,30747,30773,30780,30784,30785,30829,30833,30864,30865,30885,30894,30909,30947,30952,30953,30954,30955,30976,30978,30982,30984,30985,30986,31062]]],["Seven",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[964,2,2,1,3]]]],[23667,24505,24520]]],["seven",[83,60,[[39,7,7,0,7,[[940,1,1,0,1],[943,2,2,1,3],[944,1,1,3,4],[946,1,1,4,5],[950,2,2,5,7]]],[40,7,7,7,14,[[964,3,3,7,10],[968,3,3,10,13],[972,1,1,13,14]]],[41,6,6,14,20,[[974,1,1,14,15],[980,1,1,15,16],[983,1,1,16,17],[992,3,3,17,20]]],[43,8,8,20,28,[[1023,1,1,20,21],[1030,1,1,21,22],[1036,1,1,22,23],[1037,1,1,23,24],[1038,3,3,24,27],[1045,1,1,27,28]]],[57,1,1,28,29,[[1143,1,1,28,29]]],[65,54,31,29,60,[[1167,12,6,29,35],[1168,2,1,35,36],[1169,2,1,36,37],[1170,2,1,37,38],[1171,5,3,38,41],[1174,4,2,41,43],[1176,3,2,43,45],[1177,1,1,45,46],[1178,2,1,46,47],[1179,1,1,47,48],[1181,8,4,48,52],[1182,1,1,52,53],[1183,8,6,53,59],[1187,3,1,59,60]]]],[23534,23669,23670,23682,23749,23897,23900,24506,24508,24520,24693,24695,24696,24882,25009,25247,25431,25808,25810,25812,27104,27381,27599,27632,27668,27672,27691,27913,30202,30701,30708,30709,30710,30713,30717,30718,30747,30773,30780,30784,30785,30829,30833,30864,30865,30885,30894,30909,30947,30952,30953,30954,30955,30976,30978,30982,30984,30985,30986,31062]]],["seventh",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23898]]]]},{"k":"G2034","v":[["times",[4,3,[[39,2,2,0,2,[[946,2,2,0,2]]],[41,2,1,2,3,[[989,2,1,2,3]]]],[23748,23749,25655]]]]},{"k":"G2035","v":[["thousand",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28213]]]]},{"k":"G2036","v":[["*",[975,900,[[39,186,172,0,172,[[930,3,3,0,3],[931,2,2,3,5],[932,3,2,5,7],[933,3,2,7,9],[936,8,8,9,17],[937,9,8,17,25],[938,1,1,25,26],[939,3,3,26,29],[940,12,10,29,39],[941,7,7,39,46],[942,5,5,46,51],[943,13,13,51,64],[944,11,11,64,75],[945,10,10,75,85],[946,3,3,85,88],[947,11,11,88,99],[948,8,7,99,106],[949,15,12,106,118],[950,9,9,118,127],[951,2,2,127,129],[952,6,6,129,135],[953,5,5,135,140],[954,23,20,140,160],[955,9,8,160,168],[956,5,4,168,172]]],[40,98,90,172,262,[[957,3,3,172,175],[958,4,3,175,178],[959,2,2,178,180],[960,2,2,180,182],[961,4,4,182,186],[962,6,5,186,191],[963,6,6,191,197],[964,5,5,197,202],[965,8,8,202,210],[966,16,15,210,225],[967,9,7,225,232],[968,12,10,232,242],[969,3,3,242,245],[970,11,11,245,256],[971,3,3,256,259],[972,4,3,259,262]]],[41,307,280,262,542,[[973,12,12,262,274],[974,6,6,274,280],[975,3,3,280,283],[976,9,8,283,291],[977,14,13,291,304],[978,7,7,304,311],[979,16,13,311,324],[980,13,12,324,336],[981,27,23,336,359],[982,15,13,359,372],[983,12,11,372,383],[984,14,13,383,396],[985,10,8,396,404],[986,13,13,404,417],[987,9,9,417,426],[988,12,10,426,436],[989,9,9,436,445],[990,15,15,445,460],[991,18,18,460,478],[992,20,17,478,495],[993,4,4,495,499],[994,29,25,499,524],[995,7,6,524,530],[996,13,12,530,542]]],[42,214,199,542,741,[[997,12,11,542,553],[998,5,5,553,558],[999,10,9,558,567],[1000,12,11,567,578],[1001,4,4,578,582],[1002,17,17,582,599],[1003,13,13,599,612],[1004,19,18,612,630],[1005,23,22,630,652],[1006,8,8,652,660],[1007,18,17,660,677],[1008,11,11,677,688],[1009,7,6,688,694],[1010,5,4,694,698],[1011,1,1,698,699],[1012,6,4,699,703],[1013,1,1,703,704],[1014,22,19,704,723],[1015,3,3,723,726],[1016,10,10,726,736],[1017,7,5,736,741]]],[43,133,124,741,865,[[1018,5,5,741,746],[1019,3,3,746,749],[1020,3,3,749,752],[1021,5,5,752,757],[1022,7,6,757,763],[1023,1,1,763,764],[1024,11,11,764,775],[1025,8,7,775,782],[1026,9,7,782,789],[1027,8,7,789,796],[1028,3,3,796,799],[1029,4,4,799,803],[1030,5,5,803,808],[1031,1,1,808,809],[1032,2,2,809,811],[1033,3,3,811,814],[1034,1,1,814,815],[1035,4,4,815,819],[1036,9,7,819,826],[1037,4,4,826,830],[1038,5,5,830,835],[1039,10,9,835,844],[1040,7,7,844,851],[1041,2,2,851,853],[1042,2,2,853,855],[1043,4,3,855,858],[1044,3,3,858,861],[1045,4,4,861,865]]],[44,1,1,865,866,[[1055,1,1,865,866]]],[45,9,9,866,875,[[1062,1,1,866,867],[1071,1,1,867,868],[1072,2,2,868,870],[1073,4,4,870,874],[1076,1,1,874,875]]],[46,2,2,875,877,[[1081,1,1,875,876],[1083,1,1,876,877]]],[47,1,1,877,878,[[1092,1,1,877,878]]],[50,1,1,878,879,[[1110,1,1,878,879]]],[55,1,1,879,880,[[1129,1,1,879,880]]],[57,6,6,880,886,[[1133,1,1,880,881],[1135,1,1,881,882],[1139,1,1,882,883],[1142,2,2,883,885],[1144,1,1,885,886]]],[58,5,3,886,889,[[1147,5,3,886,889]]],[61,4,4,889,893,[[1159,3,3,889,892],[1162,1,1,892,893]]],[64,1,1,893,894,[[1166,1,1,893,894]]],[65,6,6,894,900,[[1173,1,1,894,895],[1183,1,1,895,896],[1187,2,2,896,898],[1188,2,2,898,900]]]],[23174,23177,23182,23199,23207,23212,23213,23245,23256,23349,23353,23355,23358,23364,23366,23367,23377,23381,23382,23383,23384,23390,23391,23394,23401,23444,23462,23463,23484,23491,23492,23500,23513,23514,23521,23528,23536,23537,23538,23549,23550,23566,23567,23576,23591,23596,23599,23613,23615,23625,23626,23636,23638,23643,23645,23646,23648,23649,23657,23659,23660,23661,23665,23667,23674,23678,23680,23683,23684,23686,23688,23689,23692,23695,23696,23704,23707,23709,23711,23713,23717,23719,23720,23722,23724,23730,23744,23748,23766,23767,23773,23776,23778,23779,23780,23785,23788,23789,23790,23796,23805,23809,23813,23814,23817,23824,23829,23831,23842,23847,23850,23851,23852,23853,23854,23855,23856,23864,23873,23876,23885,23889,23890,23896,23901,23909,23916,23921,23957,23959,23960,23961,23980,23983,24005,24016,24020,24030,24032,24034,24055,24064,24069,24072,24075,24077,24079,24080,24087,24089,24098,24103,24104,24109,24115,24116,24117,24118,24120,24127,24133,24135,24146,24150,24154,24172,24192,24193,24200,24201,24202,24208,24232,24257,24259,24268,24269,24279,24297,24320,24362,24363,24371,24397,24398,24407,24423,24429,24431,24438,24444,24469,24473,24474,24490,24492,24499,24505,24507,24520,24526,24534,24550,24555,24556,24559,24561,24567,24574,24577,24591,24592,24593,24602,24606,24608,24609,24617,24624,24625,24626,24627,24637,24639,24640,24643,24646,24654,24663,24669,24671,24672,24680,24685,24688,24689,24690,24697,24699,24705,24707,24709,24719,24721,24738,24760,24768,24770,24772,24774,24776,24778,24793,24802,24816,24826,24828,24838,24865,24880,24881,24888,24906,24911,24912,24921,24923,24927,24928,24931,24935,24939,24953,24954,24983,24988,25001,25007,25021,25022,25037,25038,25039,25066,25069,25071,25072,25075,25086,25087,25106,25111,25112,25117,25120,25121,25127,25129,25130,25131,25134,25138,25140,25141,25148,25149,25154,25155,25156,25172,25185,25202,25204,25208,25209,25215,25217,25226,25234,25235,25237,25238,25243,25245,25249,25255,25266,25267,25270,25273,25275,25290,25291,25293,25297,25301,25304,25310,25313,25314,25315,25320,25321,25322,25323,25334,25342,25344,25349,25350,25351,25355,25356,25358,25359,25360,25361,25362,25363,25373,25381,25384,25386,25389,25390,25391,25392,25393,25398,25400,25403,25404,25406,25407,25410,25412,25420,25422,25432,25433,25444,25451,25454,25462,25470,25471,25472,25473,25474,25475,25477,25479,25481,25500,25501,25504,25520,25525,25530,25533,25538,25541,25550,25553,25556,25558,25563,25568,25569,25570,25571,25572,25573,25574,25575,25576,25578,25591,25599,25600,25605,25609,25610,25615,25617,25619,25622,25623,25626,25627,25635,25644,25645,25647,25650,25651,25652,25656,25657,25665,25668,25670,25671,25673,25688,25692,25694,25697,25704,25707,25709,25710,25712,25714,25715,25716,25717,25719,25729,25730,25736,25739,25740,25742,25743,25744,25746,25748,25750,25755,25756,25759,25761,25763,25764,25765,25770,25771,25781,25782,25784,25785,25787,25792,25795,25796,25798,25802,25803,25804,25813,25818,25820,25821,25824,25829,25831,25834,25855,25872,25873,25874,25879,25881,25889,25895,25897,25898,25899,25900,25902,25904,25910,25912,25913,25915,25916,25920,25922,25924,25925,25931,25934,25935,25939,25949,25957,25963,25978,25981,25996,26008,26009,26010,26015,26016,26023,26029,26031,26032,26035,26037,26059,26066,26067,26069,26074,26077,26082,26086,26090,26092,26094,26111,26113,26114,26115,26117,26122,26123,26127,26129,26130,26132,26146,26147,26148,26166,26169,26173,26183,26185,26188,26195,26204,26206,26208,26209,26221,26222,26224,26229,26267,26282,26283,26285,26286,26287,26289,26291,26292,26293,26298,26300,26310,26316,26317,26318,26324,26331,26337,26344,26348,26349,26361,26363,26364,26366,26367,26370,26373,26380,26388,26391,26392,26394,26395,26402,26404,26405,26406,26409,26420,26422,26423,26429,26433,26436,26438,26439,26446,26447,26451,26452,26455,26457,26460,26462,26463,26464,26465,26466,26467,26468,26470,26474,26475,26476,26477,26479,26480,26481,26487,26488,26505,26506,26507,26515,26516,26522,26527,26534,26535,26537,26539,26544,26548,26551,26557,26560,26563,26564,26565,26566,26569,26572,26574,26586,26587,26599,26607,26610,26615,26618,26619,26621,26624,26629,26637,26641,26642,26651,26658,26663,26670,26691,26694,26696,26719,26730,26741,26743,26745,26760,26786,26789,26791,26792,26793,26794,26796,26801,26806,26807,26810,26814,26815,26816,26817,26818,26819,26822,26823,26846,26849,26855,26881,26882,26884,26885,26887,26888,26889,26892,26893,26895,26904,26915,26917,26918,26921,26930,26932,26934,26938,26947,26978,26983,26986,27000,27002,27018,27030,27041,27045,27046,27047,27062,27067,27068,27078,27088,27094,27103,27117,27119,27123,27142,27143,27149,27151,27153,27156,27172,27176,27196,27200,27205,27206,27207,27210,27213,27221,27222,27226,27231,27233,27250,27256,27262,27263,27273,27278,27280,27281,27293,27315,27319,27320,27345,27348,27352,27354,27364,27372,27378,27384,27408,27424,27449,27478,27501,27503,27514,27555,27563,27566,27571,27578,27587,27588,27589,27600,27606,27610,27626,27636,27644,27661,27662,27675,27678,27684,27701,27703,27712,27714,27717,27718,27723,27725,27728,27729,27731,27735,27737,27738,27745,27748,27754,27757,27789,27791,27805,27806,27838,27852,27853,27876,27886,27890,27920,27924,27925,27928,28194,28378,28595,28622,28624,28637,28649,28650,28655,28745,28865,28914,29095,29559,29904,29968,30005,30073,30140,30163,30233,30296,30304,30309,30546,30548,30550,30623,30681,30824,30982,31058,31059,31086,31097]]],["+",[10,10,[[39,2,2,0,2,[[930,1,1,0,1],[948,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[42,1,1,3,4,[[1010,1,1,3,4]]],[43,3,3,4,7,[[1025,2,2,4,6],[1044,1,1,6,7]]],[45,2,2,7,9,[[1072,1,1,7,8],[1076,1,1,8,9]]],[57,1,1,9,10,[[1139,1,1,9,10]]]],[23182,23796,25697,26670,27206,27207,27876,28624,28745,30073]]],["Grant",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23813]]],["I",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26846]]],["Said",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]],[43,1,1,2,3,[[1031,1,1,2,3]]]],[25949,26563,27424]]],["Say",[2,2,[[39,1,1,0,1,[[956,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]]],[24208,28194]]],["Saying",[3,3,[[41,2,2,0,2,[[981,1,1,0,1],[991,1,1,1,2]]],[43,1,1,2,3,[[1024,1,1,2,3]]]],[25323,25761,27156]]],["Tell",[9,9,[[39,5,5,0,5,[[945,1,1,0,1],[949,1,1,1,2],[950,2,2,2,4],[952,1,1,4,5]]],[40,1,1,5,6,[[969,1,1,5,6]]],[41,2,2,6,8,[[979,1,1,6,7],[992,1,1,7,8]]],[43,1,1,8,9,[[1022,1,1,8,9]]]],[23709,23831,23876,23889,23960,24721,25237,25781,27067]]],["answer",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25782]]],["bade",[3,3,[[39,1,1,0,1,[[944,1,1,0,1]]],[43,2,2,1,3,[[1028,1,1,1,2],[1039,1,1,2,3]]]],[23684,27319,27728]]],["bid",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[23921,25403]]],["called",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26516]]],["command",[3,3,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,2,2,1,3,[[976,1,1,1,2],[981,1,1,2,3]]]],[23212,25066,25355]]],["commanded",[5,5,[[40,3,3,0,3,[[961,1,1,0,1],[964,1,1,1,2],[966,1,1,2,3]]],[41,1,1,3,4,[[991,1,1,3,4]]],[46,1,1,4,5,[[1081,1,1,4,5]]]],[24407,24507,24637,25746,28865]]],["on",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25235]]],["said",[762,722,[[39,142,139,0,139,[[930,2,2,0,2],[931,2,2,2,4],[932,2,2,4,6],[936,6,6,6,12],[937,7,7,12,19],[939,3,3,19,22],[940,9,9,22,31],[941,7,7,31,38],[942,5,5,38,43],[943,12,12,43,55],[944,8,8,55,63],[945,8,8,63,71],[946,2,2,71,73],[947,11,11,73,84],[948,6,6,84,90],[949,9,8,90,98],[950,6,6,98,104],[952,2,2,104,106],[953,5,5,106,111],[954,20,19,111,130],[955,8,7,130,137],[956,2,2,137,139]]],[40,71,67,139,206,[[957,1,1,139,140],[958,2,2,140,142],[959,1,1,142,143],[960,2,2,143,145],[961,2,2,145,147],[962,6,5,147,152],[963,4,4,152,156],[964,3,3,156,159],[965,6,6,159,165],[966,15,14,165,179],[967,3,3,179,182],[968,10,8,182,190],[969,1,1,190,191],[970,9,9,191,200],[971,3,3,200,203],[972,3,3,203,206]]],[41,256,242,206,448,[[973,12,12,206,218],[974,6,6,218,224],[975,3,3,224,227],[976,8,8,227,235],[977,10,10,235,245],[978,5,5,245,250],[979,11,10,250,260],[980,11,10,260,270],[981,24,21,270,291],[982,13,12,291,303],[983,10,10,303,313],[984,8,8,313,321],[985,8,7,321,328],[986,9,9,328,337],[987,8,8,337,345],[988,12,10,345,355],[989,9,9,355,364],[990,14,14,364,378],[991,14,14,378,392],[992,14,13,392,405],[993,3,3,405,408],[994,26,24,408,432],[995,6,5,432,437],[996,12,11,437,448]]],[42,172,162,448,610,[[997,11,10,448,458],[998,5,5,458,463],[999,8,8,463,471],[1000,9,8,471,479],[1001,4,4,479,483],[1002,17,17,483,500],[1003,12,12,500,512],[1004,17,16,512,528],[1005,20,19,528,547],[1006,3,3,547,550],[1007,13,13,550,563],[1008,8,8,563,571],[1009,6,5,571,576],[1010,4,3,576,579],[1011,1,1,579,580],[1012,5,4,580,584],[1013,1,1,584,585],[1014,14,12,585,597],[1015,2,2,597,599],[1016,7,7,599,606],[1017,5,4,606,610]]],[43,105,97,610,707,[[1018,4,4,610,614],[1019,2,2,614,616],[1020,3,3,616,619],[1021,5,5,619,624],[1022,6,6,624,630],[1023,1,1,630,631],[1024,7,7,631,638],[1025,6,5,638,643],[1026,9,7,643,650],[1027,7,6,650,656],[1028,2,2,656,658],[1029,4,4,658,662],[1030,5,5,662,667],[1032,2,2,667,669],[1033,2,2,669,671],[1034,1,1,671,672],[1035,2,2,672,674],[1036,7,5,674,679],[1037,3,3,679,682],[1038,3,3,682,685],[1039,9,8,685,693],[1040,6,6,693,699],[1041,1,1,699,700],[1042,2,2,700,702],[1043,3,2,702,704],[1044,1,1,704,705],[1045,2,2,705,707]]],[46,1,1,707,708,[[1083,1,1,707,708]]],[47,1,1,708,709,[[1092,1,1,708,709]]],[55,1,1,709,710,[[1129,1,1,709,710]]],[57,5,5,710,715,[[1133,1,1,710,711],[1135,1,1,711,712],[1142,2,2,712,714],[1144,1,1,714,715]]],[58,2,1,715,716,[[1147,2,1,715,716]]],[64,1,1,716,717,[[1166,1,1,716,717]]],[65,5,5,717,722,[[1173,1,1,717,718],[1183,1,1,718,719],[1187,2,2,719,721],[1188,1,1,721,722]]]],[23174,23177,23199,23207,23212,23213,23355,23358,23364,23366,23367,23377,23381,23382,23383,23390,23391,23394,23401,23462,23463,23484,23491,23492,23500,23513,23514,23528,23536,23537,23538,23549,23550,23566,23567,23576,23591,23596,23599,23613,23615,23625,23626,23636,23643,23645,23646,23648,23649,23657,23659,23660,23661,23665,23667,23674,23678,23680,23686,23688,23689,23695,23696,23704,23707,23711,23717,23719,23720,23722,23724,23730,23748,23766,23767,23773,23776,23778,23779,23780,23785,23788,23789,23790,23805,23809,23813,23814,23817,23824,23842,23847,23850,23853,23854,23855,23856,23864,23885,23890,23896,23901,23909,23916,23959,23961,24016,24020,24030,24032,24034,24055,24064,24069,24072,24075,24077,24079,24080,24087,24089,24103,24104,24109,24115,24116,24117,24118,24120,24127,24133,24135,24146,24150,24154,24172,24192,24200,24201,24232,24268,24279,24320,24362,24363,24371,24398,24423,24429,24431,24438,24444,24469,24473,24490,24492,24505,24520,24534,24555,24559,24561,24567,24574,24577,24591,24592,24593,24602,24606,24608,24609,24617,24624,24625,24626,24627,24639,24640,24646,24654,24669,24680,24688,24689,24690,24697,24705,24707,24709,24719,24760,24770,24772,24774,24776,24778,24802,24816,24826,24828,24838,24865,24880,24881,24888,24906,24911,24912,24921,24923,24927,24928,24931,24935,24939,24953,24954,24983,24988,25001,25007,25021,25022,25037,25038,25039,25066,25069,25071,25072,25075,25086,25087,25106,25111,25112,25117,25127,25129,25131,25134,25138,25140,25141,25148,25149,25154,25155,25156,25204,25208,25209,25215,25217,25226,25235,25238,25243,25245,25255,25266,25267,25270,25273,25275,25290,25291,25293,25297,25304,25310,25313,25314,25315,25320,25321,25334,25342,25344,25349,25350,25351,25355,25356,25358,25359,25360,25361,25362,25363,25381,25384,25386,25389,25390,25391,25392,25393,25398,25400,25403,25404,25406,25407,25410,25420,25422,25432,25433,25444,25451,25454,25472,25473,25474,25477,25479,25481,25500,25501,25520,25525,25530,25533,25538,25541,25550,25568,25569,25571,25572,25573,25574,25575,25576,25578,25599,25600,25605,25609,25610,25615,25617,25619,25622,25623,25626,25627,25635,25644,25645,25647,25650,25651,25652,25656,25657,25665,25668,25670,25671,25673,25688,25692,25694,25704,25707,25709,25710,25712,25714,25715,25716,25717,25719,25729,25730,25736,25739,25740,25743,25744,25748,25750,25755,25756,25763,25764,25765,25770,25771,25782,25787,25792,25795,25796,25802,25803,25804,25813,25818,25820,25821,25824,25829,25831,25834,25873,25874,25879,25881,25889,25895,25897,25898,25899,25900,25902,25904,25910,25912,25913,25915,25916,25920,25922,25924,25925,25931,25934,25935,25939,25957,25963,25978,25981,25996,26008,26009,26010,26015,26016,26023,26029,26032,26035,26037,26066,26067,26069,26074,26077,26082,26086,26090,26092,26094,26111,26113,26114,26115,26117,26122,26123,26127,26129,26130,26146,26147,26148,26166,26169,26173,26183,26188,26204,26208,26209,26221,26222,26224,26229,26267,26282,26283,26285,26286,26287,26289,26291,26292,26293,26298,26300,26310,26316,26317,26318,26324,26331,26337,26344,26348,26349,26361,26363,26364,26366,26370,26373,26380,26388,26391,26392,26394,26395,26402,26404,26405,26409,26420,26422,26423,26429,26433,26438,26439,26447,26451,26452,26455,26457,26460,26463,26464,26465,26466,26468,26470,26474,26475,26476,26477,26479,26480,26481,26488,26507,26515,26527,26534,26535,26537,26539,26544,26548,26551,26557,26560,26564,26565,26572,26586,26587,26599,26610,26615,26619,26621,26624,26637,26641,26642,26651,26663,26691,26694,26696,26719,26730,26741,26743,26745,26760,26789,26791,26792,26796,26806,26810,26814,26815,26816,26818,26822,26823,26849,26855,26881,26887,26888,26889,26892,26893,26895,26904,26915,26918,26921,26930,26934,26938,26947,26983,26986,27000,27002,27018,27030,27041,27045,27046,27047,27062,27067,27068,27078,27088,27094,27103,27117,27119,27123,27149,27153,27172,27176,27196,27200,27205,27210,27213,27221,27222,27226,27231,27233,27250,27256,27263,27273,27278,27280,27281,27293,27315,27320,27345,27348,27352,27354,27364,27372,27378,27384,27408,27449,27478,27501,27514,27555,27563,27571,27587,27588,27589,27600,27610,27636,27644,27661,27675,27684,27703,27712,27714,27717,27718,27723,27725,27729,27731,27735,27737,27738,27745,27748,27754,27791,27805,27806,27838,27852,27886,27920,27928,28914,29095,29904,29968,30005,30140,30163,30233,30304,30681,30824,30982,31058,31059,31086]]],["saith",[2,2,[[40,1,1,0,1,[[967,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]]],[24663,26406]]],["say",[64,58,[[39,16,14,0,14,[[933,3,2,0,2],[937,2,1,2,3],[943,1,1,3,4],[949,4,4,4,8],[951,1,1,8,9],[952,3,3,9,12],[954,1,1,12,13],[955,1,1,13,14]]],[40,11,9,14,23,[[957,1,1,14,15],[958,2,1,15,16],[963,1,1,16,17],[967,5,4,17,21],[969,1,1,21,22],[970,1,1,22,23]]],[41,15,14,23,37,[[977,2,1,23,24],[979,2,2,24,26],[982,1,1,26,27],[983,2,2,27,29],[984,3,3,29,32],[985,1,1,32,33],[986,2,2,33,35],[992,2,2,35,37]]],[42,4,4,37,41,[[1004,1,1,37,38],[1008,2,2,38,40],[1016,1,1,40,41]]],[43,2,2,41,43,[[1041,1,1,41,42],[1045,1,1,42,43]]],[45,7,7,43,50,[[1062,1,1,43,44],[1071,1,1,44,45],[1072,1,1,45,46],[1073,4,4,46,50]]],[50,1,1,50,51,[[1110,1,1,50,51]]],[58,3,2,51,53,[[1147,3,2,51,53]]],[61,4,4,53,57,[[1159,3,3,53,56],[1162,1,1,56,57]]],[65,1,1,57,58,[[1188,1,1,57,58]]]],[23245,23256,23384,23638,23829,23847,23851,23852,23957,23980,23983,24005,24072,24193,24259,24269,24474,24643,24663,24671,24672,24738,24768,25130,25202,25235,25373,25410,25412,25470,25471,25504,25553,25563,25570,25784,25785,26436,26607,26629,26884,27789,27925,28378,28595,28622,28637,28649,28650,28655,29559,30296,30309,30546,30548,30550,30623,31097]]],["saying",[15,15,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,3,3,1,4,[[977,1,1,1,2],[986,1,1,2,3],[994,1,1,3,4]]],[42,2,2,4,6,[[1007,1,1,4,5],[1014,1,1,5,6]]],[43,9,9,6,15,[[1024,3,3,6,9],[1027,1,1,9,10],[1033,1,1,10,11],[1035,1,1,11,12],[1036,1,1,12,13],[1038,1,1,13,14],[1040,1,1,14,15]]]],[24098,25120,25558,25872,26551,26807,27142,27143,27151,27262,27503,27578,27606,27678,27757]]],["spake",[29,29,[[39,3,3,0,3,[[944,1,1,0,1],[945,1,1,1,2],[950,1,1,2,3]]],[40,4,4,3,7,[[959,1,1,3,4],[965,1,1,4,5],[968,1,1,5,6],[970,1,1,6,7]]],[41,9,9,7,16,[[978,1,1,7,8],[979,1,1,8,9],[980,1,1,9,10],[984,1,1,10,11],[986,1,1,11,12],[987,1,1,12,13],[991,1,1,13,14],[992,1,1,14,15],[993,1,1,15,16]]],[42,12,12,16,28,[[997,1,1,16,17],[1003,1,1,17,18],[1005,1,1,18,19],[1006,2,2,19,21],[1007,1,1,21,22],[1008,1,1,22,23],[1009,1,1,23,24],[1014,3,3,24,27],[1017,1,1,27,28]]],[43,1,1,28,29,[[1035,1,1,28,29]]]],[23683,23713,23873,24297,24556,24699,24793,25185,25234,25249,25475,25556,25591,25742,25781,25855,26059,26367,26462,26487,26522,26574,26618,26658,26794,26801,26817,26917,27566]]],["speak",[6,6,[[39,2,2,0,2,[[936,1,1,0,1],[938,1,1,1,2]]],[41,2,2,2,4,[[978,1,1,2,3],[984,1,1,3,4]]],[43,2,2,4,6,[[1019,1,1,4,5],[1038,1,1,5,6]]]],[23353,23444,25172,25472,26978,27701]]],["speaketh",[2,1,[[39,2,1,0,1,[[940,2,1,0,1]]]],[23521]]],["spoken",[19,19,[[40,2,2,0,2,[[957,1,1,0,1],[968,1,1,1,2]]],[41,4,4,2,6,[[984,1,1,2,3],[991,1,1,3,4],[992,1,1,4,5],[996,1,1,5,6]]],[42,7,7,6,13,[[1000,1,1,6,7],[1005,1,1,7,8],[1007,1,1,8,9],[1014,2,2,9,11],[1016,1,1,11,12],[1017,1,1,12,13]]],[43,6,6,13,19,[[1018,1,1,13,14],[1036,1,1,14,15],[1037,1,1,15,16],[1043,1,1,16,17],[1044,1,1,17,18],[1045,1,1,18,19]]]],[24257,24685,25462,25759,25798,26031,26206,26446,26566,26786,26807,26885,26917,26932,27626,27662,27853,27890,27924]]],["tell",[19,18,[[39,6,6,0,6,[[936,1,1,0,1],[944,1,1,1,2],[946,1,1,2,3],[949,1,1,3,4],[954,1,1,4,5],[956,1,1,5,6]]],[40,3,3,6,9,[[963,1,1,6,7],[964,1,1,7,8],[972,1,1,8,9]]],[41,6,5,9,14,[[977,1,1,9,10],[980,1,1,10,11],[981,1,1,11,12],[985,1,1,12,13],[994,2,1,13,14]]],[42,4,4,14,18,[[999,1,1,14,15],[1006,1,1,15,16],[1014,1,1,16,17],[1016,1,1,17,18]]]],[23349,23692,23744,23850,24117,24202,24499,24526,24880,25121,25301,25322,25550,25931,26132,26505,26819,26882]]],["told",[12,12,[[39,2,2,0,2,[[940,1,1,0,1],[956,1,1,1,2]]],[40,2,2,2,4,[[961,1,1,2,3],[965,1,1,3,4]]],[42,8,8,4,12,[[999,1,1,4,5],[1000,2,2,5,7],[1005,1,1,7,8],[1006,1,1,8,9],[1007,1,1,9,10],[1012,1,1,10,11],[1014,1,1,11,12]]]],[23537,24202,24397,24550,26132,26185,26195,26467,26506,26569,26730,26793]]]]},{"k":"G2037","v":[["Erastus",[3,3,[[43,1,1,0,1,[[1036,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[27607,28359,29890]]]]},{"k":"G2038","v":[["*",[39,37,[[39,4,4,0,4,[[935,1,1,0,1],[949,1,1,1,2],[953,1,1,2,3],[954,1,1,3,4]]],[40,1,1,4,5,[[970,1,1,4,5]]],[41,1,1,5,6,[[985,1,1,5,6]]],[42,8,6,6,12,[[999,1,1,6,7],[1001,2,1,7,8],[1002,3,3,8,11],[1005,2,1,11,12]]],[43,3,3,12,15,[[1027,1,1,12,13],[1030,1,1,13,14],[1035,1,1,14,15]]],[44,4,4,15,19,[[1047,1,1,15,16],[1049,2,2,16,18],[1058,1,1,18,19]]],[45,4,4,19,23,[[1065,1,1,19,20],[1070,2,2,20,22],[1077,1,1,22,23]]],[47,1,1,23,24,[[1096,1,1,23,24]]],[48,1,1,24,25,[[1100,1,1,24,25]]],[50,1,1,25,26,[[1109,1,1,25,26]]],[51,2,2,26,28,[[1112,1,1,26,27],[1114,1,1,27,28]]],[52,4,4,28,32,[[1118,4,4,28,32]]],[57,1,1,32,33,[[1143,1,1,32,33]]],[58,1,1,33,34,[[1147,1,1,33,34]]],[62,1,1,34,35,[[1164,1,1,34,35]]],[63,1,1,35,36,[[1165,1,1,35,36]]],[65,1,1,36,37,[[1184,1,1,36,37]]]],[23339,23854,24024,24064,24760,25532,26141,26227,26284,26285,26287,26444,27294,27403,27560,27972,28026,28027,28276,28445,28546,28553,28786,29198,29300,29540,29579,29614,29686,29688,29689,29690,30205,30302,30653,30663,31010]]],["+",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28546]]],["Labour",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26284]]],["commit",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30302]]],["do",[2,2,[[47,1,1,0,1,[[1096,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29198,29540]]],["doest",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30663]]],["labouring",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29579]]],["minister",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28553]]],["trade",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31010]]],["traded",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24024]]],["work",[12,11,[[39,2,2,0,2,[[935,1,1,0,1],[949,1,1,1,2]]],[41,1,1,2,3,[[985,1,1,2,3]]],[42,5,4,3,7,[[1001,1,1,3,4],[1002,2,2,4,6],[1005,2,1,6,7]]],[43,1,1,7,8,[[1030,1,1,7,8]]],[51,1,1,8,9,[[1114,1,1,8,9]]],[52,2,2,9,11,[[1118,2,2,9,11]]]],[23339,23854,25532,26227,26285,26287,26444,27403,29614,29688,29690]]],["worketh",[7,7,[[42,1,1,0,1,[[1001,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]],[44,4,4,2,6,[[1047,1,1,2,3],[1049,2,2,3,5],[1058,1,1,5,6]]],[45,1,1,6,7,[[1077,1,1,6,7]]]],[26227,27294,27972,28026,28027,28276,28786]]],["working",[3,3,[[45,1,1,0,1,[[1065,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[52,1,1,2,3,[[1118,1,1,2,3]]]],[28445,29300,29689]]],["wrought",[7,7,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,1,1,2,3,[[999,1,1,2,3]]],[43,1,1,3,4,[[1035,1,1,3,4]]],[52,1,1,4,5,[[1118,1,1,4,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]],[62,1,1,6,7,[[1164,1,1,6,7]]]],[24064,24760,26141,27560,29686,30205,30653]]]]},{"k":"G2039","v":[["*",[6,6,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,4,4,1,5,[[1033,2,2,1,3],[1036,2,2,3,5]]],[48,1,1,5,6,[[1100,1,1,5,6]]]],[25517,27499,27502,27609,27610,29291]]],["craft",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27610]]],["diligence",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25517]]],["gain",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1036,1,1,1,2]]]],[27499,27609]]],["gains",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27502]]],["work",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29291]]]]},{"k":"G2040","v":[["*",[16,15,[[39,6,6,0,6,[[937,2,2,0,2],[938,1,1,2,3],[948,3,3,3,6]]],[41,4,3,6,9,[[982,3,2,6,8],[985,1,1,8,9]]],[43,1,1,9,10,[[1036,1,1,9,10]]],[46,1,1,10,11,[[1088,1,1,10,11]]],[49,1,1,11,12,[[1105,1,1,11,12]]],[53,1,1,12,13,[[1123,1,1,12,13]]],[54,1,1,13,14,[[1126,1,1,13,14]]],[58,1,1,14,15,[[1150,1,1,14,15]]]],[23416,23417,23427,23793,23794,23800,25365,25370,25545,27610,29002,29423,29781,29842,30358]]],["labourer",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[25370,29781]]],["labourers",[8,7,[[39,5,5,0,5,[[937,2,2,0,2],[948,3,3,2,5]]],[41,2,1,5,6,[[982,2,1,5,6]]],[58,1,1,6,7,[[1150,1,1,6,7]]]],[23416,23417,23793,23794,23800,25365,30358]]],["workers",[3,3,[[41,1,1,0,1,[[985,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]]],[25545,29002,29423]]],["workman",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[23427,29842]]],["workmen",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27610]]]]},{"k":"G2041","v":[["*",[176,161,[[39,5,5,0,5,[[933,1,1,0,1],[939,1,1,1,2],[951,2,2,2,4],[954,1,1,4,5]]],[40,2,2,5,7,[[969,1,1,5,6],[970,1,1,6,7]]],[41,2,2,7,9,[[983,1,1,7,8],[996,1,1,8,9]]],[42,27,25,9,34,[[999,3,3,9,12],[1000,1,1,12,13],[1001,3,2,13,15],[1002,2,2,15,17],[1003,3,3,17,20],[1004,2,2,20,22],[1005,2,2,22,24],[1006,6,5,24,29],[1010,3,3,29,32],[1011,1,1,32,33],[1013,1,1,33,34]]],[43,11,10,34,44,[[1022,1,1,34,35],[1024,2,2,35,37],[1026,1,1,37,38],[1030,3,2,38,40],[1031,1,1,40,41],[1032,2,2,41,43],[1043,1,1,43,44]]],[44,18,15,44,59,[[1047,3,3,44,47],[1048,3,3,47,50],[1049,2,2,50,52],[1054,2,2,52,54],[1056,4,1,54,55],[1058,2,2,55,57],[1059,1,1,57,58],[1060,1,1,58,59]]],[45,8,7,59,66,[[1064,4,3,59,62],[1066,1,1,62,63],[1070,1,1,63,64],[1076,1,1,64,65],[1077,1,1,65,66]]],[46,3,3,66,69,[[1086,1,1,66,67],[1087,1,1,67,68],[1088,1,1,68,69]]],[47,8,6,69,75,[[1092,3,1,69,70],[1093,3,3,70,73],[1095,1,1,73,74],[1096,1,1,74,75]]],[48,4,4,75,79,[[1098,2,2,75,77],[1100,1,1,77,78],[1101,1,1,78,79]]],[49,3,3,79,82,[[1103,2,2,79,81],[1104,1,1,81,82]]],[50,3,3,82,85,[[1107,2,2,82,84],[1109,1,1,84,85]]],[51,2,2,85,87,[[1111,1,1,85,86],[1115,1,1,86,87]]],[52,2,2,87,89,[[1116,1,1,87,88],[1117,1,1,88,89]]],[53,6,5,89,94,[[1120,1,1,89,90],[1121,1,1,90,91],[1123,3,2,91,93],[1124,1,1,93,94]]],[54,6,6,94,100,[[1125,1,1,94,95],[1126,1,1,95,96],[1127,1,1,96,97],[1128,3,3,97,100]]],[55,8,7,100,107,[[1129,2,1,100,101],[1130,2,2,101,103],[1131,4,4,103,107]]],[57,11,11,107,118,[[1133,1,1,107,108],[1134,1,1,108,109],[1135,1,1,109,110],[1136,3,3,110,113],[1138,2,2,113,115],[1141,1,1,115,116],[1142,1,1,116,117],[1145,1,1,117,118]]],[58,15,12,118,130,[[1146,2,2,118,120],[1147,12,9,120,129],[1148,1,1,129,130]]],[59,2,2,130,132,[[1151,1,1,130,131],[1152,1,1,131,132]]],[60,2,2,132,134,[[1157,1,1,132,133],[1158,1,1,133,134]]],[61,3,3,134,137,[[1161,3,3,134,137]]],[62,1,1,137,138,[[1164,1,1,137,138]]],[63,1,1,138,139,[[1165,1,1,138,139]]],[64,1,1,139,140,[[1166,1,1,139,140]]],[65,22,21,140,161,[[1168,10,9,140,149],[1169,4,4,149,153],[1175,1,1,153,154],[1180,1,1,154,155],[1181,1,1,155,156],[1182,1,1,156,157],[1184,1,1,157,158],[1186,2,2,158,160],[1188,1,1,160,161]]]],[23250,23461,23921,23923,24064,24751,24760,25453,26010,26139,26140,26141,26190,26230,26246,26285,26286,26331,26335,26349,26420,26422,26443,26444,26506,26513,26514,26518,26519,26678,26679,26680,26723,26763,27097,27138,27157,27252,27364,27403,27440,27460,27480,27843,27968,27969,27977,28011,28018,28019,28024,28028,28166,28187,28215,28269,28278,28300,28321,28423,28424,28425,28456,28541,28776,28786,28964,28982,29004,29097,29104,29107,29112,29181,29192,29238,29239,29284,29315,29367,29383,29421,29475,29486,29534,29563,29634,29660,29678,29726,29732,29773,29788,29806,29818,29848,29870,29875,29884,29888,29908,29915,29922,29924,29928,29931,29937,29973,29984,30004,30017,30018,30024,30045,30054,30119,30157,30262,30270,30291,30307,30310,30311,30313,30314,30315,30317,30318,30319,30332,30391,30411,30508,30532,30587,30591,30597,30656,30668,30687,30719,30722,30723,30726,30730,30736,30739,30740,30743,30747,30748,30754,30761,30860,30939,30949,30965,30999,31050,31051,31092]]],["+",[4,4,[[42,1,1,0,1,[[1010,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[26679,29634,29806,30307]]],["deed",[6,6,[[41,1,1,0,1,[[996,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[45,1,1,2,3,[[1066,1,1,2,3]]],[46,1,1,3,4,[[1087,1,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]],[61,1,1,5,6,[[1161,1,1,5,6]]]],[26010,28321,28456,28982,29534,30597]]],["deeds",[16,16,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,4,4,1,5,[[999,3,3,1,4],[1004,1,1,4,5]]],[43,1,1,5,6,[[1024,1,1,5,6]]],[44,3,3,6,9,[[1047,1,1,6,7],[1048,2,2,7,9]]],[60,1,1,9,10,[[1157,1,1,9,10]]],[62,1,1,10,11,[[1164,1,1,10,11]]],[63,1,1,11,12,[[1165,1,1,11,12]]],[64,1,1,12,13,[[1166,1,1,12,13]]],[65,3,3,13,16,[[1168,2,2,13,15],[1182,1,1,15,16]]]],[25453,26139,26140,26141,26422,27138,27968,28011,28019,30508,30656,30668,30687,30723,30739,30965]]],["doing",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27969]]],["labour",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29383]]],["work",[47,44,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[969,1,1,1,2],[970,1,1,2,3]]],[42,5,5,3,8,[[1000,1,1,3,4],[1002,1,1,4,5],[1003,1,1,5,6],[1006,1,1,6,7],[1013,1,1,7,8]]],[43,6,5,8,13,[[1022,1,1,8,9],[1030,3,2,9,11],[1031,1,1,11,12],[1032,1,1,12,13]]],[44,4,3,13,16,[[1047,1,1,13,14],[1056,2,1,14,15],[1059,1,1,15,16]]],[45,7,6,16,22,[[1064,4,3,16,19],[1070,1,1,19,20],[1076,1,1,20,21],[1077,1,1,21,22]]],[46,1,1,22,23,[[1086,1,1,22,23]]],[47,1,1,23,24,[[1096,1,1,23,24]]],[48,1,1,24,25,[[1100,1,1,24,25]]],[49,2,2,25,27,[[1103,1,1,25,26],[1104,1,1,26,27]]],[50,1,1,27,28,[[1107,1,1,27,28]]],[51,1,1,28,29,[[1111,1,1,28,29]]],[52,2,2,29,31,[[1116,1,1,29,30],[1117,1,1,30,31]]],[53,2,2,31,33,[[1121,1,1,31,32],[1123,1,1,32,33]]],[54,3,3,33,36,[[1126,1,1,33,34],[1128,2,2,34,36]]],[55,2,2,36,38,[[1129,1,1,36,37],[1131,1,1,37,38]]],[57,2,2,38,40,[[1138,1,1,38,39],[1145,1,1,39,40]]],[58,2,2,40,42,[[1146,2,2,40,42]]],[59,1,1,42,43,[[1151,1,1,42,43]]],[65,1,1,43,44,[[1188,1,1,43,44]]]],[24064,24751,24760,26190,26286,26349,26514,26763,27097,27364,27403,27440,27480,27977,28215,28300,28423,28424,28425,28541,28776,28786,28964,29192,29284,29367,29421,29475,29563,29660,29678,29732,29773,29848,29875,29888,29908,29924,30054,30262,30270,30291,30391,31092]]],["works",[101,92,[[39,4,4,0,4,[[933,1,1,0,1],[939,1,1,1,2],[951,2,2,2,4]]],[42,17,15,4,19,[[1001,3,2,4,6],[1002,1,1,6,7],[1003,2,2,7,9],[1004,1,1,9,10],[1005,2,2,10,12],[1006,5,4,12,16],[1010,2,2,16,18],[1011,1,1,18,19]]],[43,4,4,19,23,[[1024,1,1,19,20],[1026,1,1,20,21],[1032,1,1,21,22],[1043,1,1,22,23]]],[44,9,8,23,31,[[1048,1,1,23,24],[1049,2,2,24,26],[1054,2,2,26,28],[1056,2,1,28,29],[1058,2,2,29,31]]],[46,1,1,31,32,[[1088,1,1,31,32]]],[47,7,5,32,37,[[1092,3,1,32,33],[1093,3,3,33,36],[1095,1,1,36,37]]],[48,3,3,37,40,[[1098,2,2,37,39],[1101,1,1,39,40]]],[50,1,1,40,41,[[1107,1,1,40,41]]],[53,3,3,41,44,[[1120,1,1,41,42],[1123,2,2,42,44]]],[54,3,3,44,47,[[1125,1,1,44,45],[1127,1,1,45,46],[1128,1,1,46,47]]],[55,6,6,47,53,[[1129,1,1,47,48],[1130,2,2,48,50],[1131,3,3,50,53]]],[57,9,9,53,62,[[1133,1,1,53,54],[1134,1,1,54,55],[1135,1,1,55,56],[1136,3,3,56,59],[1138,1,1,59,60],[1141,1,1,60,61],[1142,1,1,61,62]]],[58,12,9,62,71,[[1147,11,8,62,70],[1148,1,1,70,71]]],[59,1,1,71,72,[[1152,1,1,71,72]]],[60,1,1,72,73,[[1158,1,1,72,73]]],[61,2,2,73,75,[[1161,2,2,73,75]]],[65,18,17,75,92,[[1168,8,7,75,82],[1169,4,4,82,86],[1175,1,1,86,87],[1180,1,1,87,88],[1181,1,1,88,89],[1184,1,1,89,90],[1186,2,2,90,92]]]],[23250,23461,23921,23923,26230,26246,26285,26331,26335,26420,26443,26444,26506,26513,26518,26519,26678,26680,26723,27157,27252,27460,27843,28018,28024,28028,28166,28187,28215,28269,28278,29004,29097,29104,29107,29112,29181,29238,29239,29315,29486,29726,29773,29788,29818,29870,29884,29908,29915,29922,29928,29931,29937,29973,29984,30004,30017,30018,30024,30045,30119,30157,30310,30311,30313,30314,30315,30317,30318,30319,30332,30411,30532,30587,30591,30719,30722,30726,30730,30736,30740,30743,30747,30748,30754,30761,30860,30939,30949,30999,31050,31051]]]]},{"k":"G2042","v":[["*",[2,2,[[46,1,1,0,1,[[1086,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[28958,29538]]],["provoke",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29538]]],["provoked",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28958]]]]},{"k":"G2043","v":[["fast",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27896]]]]},{"k":"G2044","v":[["utter",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23574]]]]},{"k":"G2045","v":[["*",[6,6,[[42,2,2,0,2,[[1001,1,1,0,1],[1003,1,1,1,2]]],[44,1,1,2,3,[[1053,1,1,2,3]]],[45,1,1,3,4,[[1063,1,1,3,4]]],[59,1,1,4,5,[[1151,1,1,4,5]]],[65,1,1,5,6,[[1168,1,1,5,6]]]],[26249,26380,28143,28404,30385,30740]]],["Search",[2,2,[[42,2,2,0,2,[[1001,1,1,0,1],[1003,1,1,1,2]]]],[26249,26380]]],["Searching",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30385]]],["searcheth",[3,3,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,1,1,1,2,[[1063,1,1,1,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[28143,28404,30740]]]]},{"k":"G2046","v":[["*",[71,71,[[39,11,11,0,11,[[935,2,2,0,2],[941,1,1,2,3],[945,1,1,3,4],[949,3,3,4,7],[953,3,3,7,10],[954,1,1,10,11]]],[40,2,2,11,13,[[967,2,2,11,13]]],[41,18,18,13,31,[[974,1,1,13,14],[976,2,2,14,16],[984,2,2,16,18],[985,2,2,18,20],[986,1,1,20,21],[987,1,1,21,22],[989,4,4,22,26],[991,1,1,26,27],[992,1,1,27,28],[994,2,2,28,30],[995,1,1,30,31]]],[42,6,6,31,37,[[1000,1,1,31,32],[1002,1,1,32,33],[1007,1,1,33,34],[1008,1,1,34,35],[1010,1,1,35,36],[1011,1,1,36,37]]],[43,7,7,37,44,[[1019,1,1,37,38],[1025,1,1,38,39],[1030,2,2,39,41],[1034,1,1,41,42],[1037,1,1,42,43],[1040,1,1,43,44]]],[44,11,11,44,55,[[1048,1,1,44,45],[1049,2,2,45,47],[1051,1,1,47,48],[1052,1,1,48,49],[1053,1,1,49,50],[1054,4,4,50,54],[1056,1,1,54,55]]],[45,3,3,55,58,[[1075,2,2,55,57],[1076,1,1,57,58]]],[46,2,2,58,60,[[1089,2,2,58,60]]],[49,1,1,60,61,[[1106,1,1,60,61]]],[57,6,6,61,67,[[1133,1,1,61,62],[1136,3,3,62,65],[1142,1,1,65,66],[1145,1,1,66,67]]],[58,1,1,67,68,[[1147,1,1,67,68]]],[65,3,3,68,71,[[1173,1,1,68,69],[1183,1,1,69,70],[1185,1,1,70,71]]]],[23320,23338,23569,23720,23829,23850,23851,24042,24048,24049,24129,24669,24671,24997,25075,25086,25469,25478,25543,25545,25562,25606,25658,25659,25672,25674,25762,25784,25875,25877,25964,26174,26322,26536,26630,26697,26714,26965,27200,27396,27402,27551,27664,27739,27996,28023,28040,28069,28098,28147,28169,28174,28175,28185,28228,28694,28701,28753,29028,29031,29446,29976,30017,30018,30021,30142,30246,30311,30824,30982,31020]]],["called",[1,1,[[42,1,1,0,1,[[1011,1,1,0,1]]]],[26714]]],["of",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27402]]],["said",[16,16,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,3,3,1,4,[[974,1,1,1,2],[976,1,1,2,3],[994,1,1,3,4]]],[42,2,2,4,6,[[1002,1,1,4,5],[1008,1,1,5,6]]],[43,2,2,6,8,[[1030,1,1,6,7],[1034,1,1,7,8]]],[46,1,1,8,9,[[1089,1,1,8,9]]],[57,5,5,9,14,[[1133,1,1,9,10],[1136,2,2,10,12],[1142,1,1,12,13],[1145,1,1,13,14]]],[65,2,2,14,16,[[1173,1,1,14,15],[1185,1,1,15,16]]]],[24129,24997,25075,25877,26322,26630,27396,27551,29031,29976,30017,30021,30142,30246,30824,31020]]],["saidst",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26174]]],["say",[40,40,[[39,9,9,0,9,[[935,2,2,0,2],[941,1,1,2,3],[945,1,1,3,4],[949,2,2,4,6],[953,3,3,6,9]]],[40,1,1,9,10,[[967,1,1,9,10]]],[41,14,14,10,24,[[976,1,1,10,11],[984,1,1,11,12],[985,2,2,12,14],[986,1,1,14,15],[987,1,1,15,16],[989,4,4,16,20],[991,1,1,20,21],[992,1,1,21,22],[994,1,1,22,23],[995,1,1,23,24]]],[44,10,10,24,34,[[1048,1,1,24,25],[1049,1,1,25,26],[1051,1,1,26,27],[1052,1,1,27,28],[1053,1,1,28,29],[1054,4,4,29,33],[1056,1,1,33,34]]],[45,3,3,34,37,[[1075,2,2,34,36],[1076,1,1,36,37]]],[46,1,1,37,38,[[1089,1,1,37,38]]],[49,1,1,38,39,[[1106,1,1,38,39]]],[58,1,1,39,40,[[1147,1,1,39,40]]]],[23320,23338,23569,23720,23829,23851,24042,24048,24049,24671,25086,25478,25543,25545,25562,25606,25658,25659,25672,25674,25762,25784,25875,25964,27996,28023,28069,28098,28147,28169,28174,28175,28185,28228,28694,28701,28753,29028,29446,30311]]],["spake",[3,3,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,1,1,1,2,[[1037,1,1,1,2]]],[57,1,1,2,3,[[1136,1,1,2,3]]]],[26536,27664,30018]]],["speak",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[25469,27739]]],["spoken",[3,3,[[43,2,2,0,2,[[1019,1,1,0,1],[1025,1,1,1,2]]],[44,1,1,2,3,[[1049,1,1,2,3]]]],[26965,27200,28040]]],["tell",[3,3,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[65,1,1,2,3,[[1183,1,1,2,3]]]],[23850,24669,30982]]],["told",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26697]]]]},{"k":"G2047","v":[["*",[4,4,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[23666,24504,29015,30210]]],["deserts",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30210]]],["wilderness",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]]],[23666,24504,29015]]]]},{"k":"G2048","v":[["*",[50,50,[[39,8,8,0,8,[[931,2,2,0,2],[932,1,1,2,3],[939,1,1,3,4],[942,2,2,4,6],[951,1,1,6,7],[952,1,1,7,8]]],[40,9,9,8,17,[[957,6,6,8,14],[962,3,3,14,17]]],[41,12,12,17,29,[[973,1,1,17,18],[975,2,2,18,20],[976,2,2,20,22],[977,1,1,22,23],[979,1,1,23,24],[980,1,1,24,25],[981,2,2,25,27],[985,1,1,27,28],[987,1,1,28,29]]],[42,5,5,29,34,[[997,1,1,29,30],[999,1,1,30,31],[1002,2,2,31,33],[1007,1,1,33,34]]],[43,9,9,34,43,[[1018,1,1,34,35],[1024,5,5,35,40],[1025,1,1,40,41],[1030,1,1,41,42],[1038,1,1,42,43]]],[45,1,1,43,44,[[1071,1,1,43,44]]],[47,1,1,44,45,[[1094,1,1,44,45]]],[57,2,2,45,47,[[1135,2,2,45,47]]],[65,3,3,47,50,[[1178,2,2,47,49],[1183,1,1,49,50]]]],[23193,23195,23210,23466,23610,23612,23956,23983,24218,24219,24227,24228,24250,24260,24438,24439,24442,24973,25027,25029,25064,25105,25123,25219,25274,25311,25313,25553,25592,26067,26134,26288,26306,26577,26943,27146,27152,27154,27158,27160,27202,27380,27702,28572,29158,30003,30012,30897,30905,30978]]],["desert",[12,12,[[39,3,3,0,3,[[942,2,2,0,2],[952,1,1,2,3]]],[40,4,4,3,7,[[957,1,1,3,4],[962,3,3,4,7]]],[41,3,3,7,10,[[976,1,1,7,8],[981,2,2,8,10]]],[42,1,1,10,11,[[1002,1,1,10,11]]],[43,1,1,11,12,[[1025,1,1,11,12]]]],[23610,23612,23983,24260,24438,24439,24442,25105,25311,25313,26288,27202]]],["deserts",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24973]]],["desolate",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[43,1,1,2,3,[[1018,1,1,2,3]]],[47,1,1,3,4,[[1094,1,1,3,4]]]],[23956,25553,26943,29158]]],["solitary",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24250]]],["wilderness",[32,32,[[39,4,4,0,4,[[931,2,2,0,2],[932,1,1,2,3],[939,1,1,3,4]]],[40,4,4,4,8,[[957,4,4,4,8]]],[41,7,7,8,15,[[975,2,2,8,10],[976,1,1,10,11],[977,1,1,11,12],[979,1,1,12,13],[980,1,1,13,14],[987,1,1,14,15]]],[42,4,4,15,19,[[997,1,1,15,16],[999,1,1,16,17],[1002,1,1,17,18],[1007,1,1,18,19]]],[43,7,7,19,26,[[1024,5,5,19,24],[1030,1,1,24,25],[1038,1,1,25,26]]],[45,1,1,26,27,[[1071,1,1,26,27]]],[57,2,2,27,29,[[1135,2,2,27,29]]],[65,3,3,29,32,[[1178,2,2,29,31],[1183,1,1,31,32]]]],[23193,23195,23210,23466,24218,24219,24227,24228,25027,25029,25064,25123,25219,25274,25592,26067,26134,26306,26577,27146,27152,27154,27158,27160,27380,27702,28572,30003,30012,30897,30905,30978]]]]},{"k":"G2049","v":[["*",[5,5,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[65,3,3,2,5,[[1183,1,1,2,3],[1184,2,2,3,5]]]],[23514,25422,30991,31010,31012]]],["desolate",[2,2,[[65,2,2,0,2,[[1183,1,1,0,1],[1184,1,1,1,2]]]],[30991,31012]]],["desolation",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23514,25422]]],["nought",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31010]]]]},{"k":"G2050","v":[["desolation",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]]],[23972,24731,25846]]]]},{"k":"G2051","v":[["strive",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23508]]]]},{"k":"G2052","v":[["*",[7,7,[[44,1,1,0,1,[[1047,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]],[49,2,2,3,5,[[1103,1,1,3,4],[1104,1,1,4,5]]],[58,2,2,5,7,[[1148,2,2,5,7]]]],[27970,29042,29182,29377,29394,30333,30335]]],["+",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27970]]],["contention",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29377]]],["strife",[4,4,[[47,1,1,0,1,[[1095,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]],[58,2,2,2,4,[[1148,2,2,2,4]]]],[29182,29394,30333,30335]]],["strifes",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29042]]]]},{"k":"G2053","v":[["wool",[2,2,[[57,1,1,0,1,[[1141,1,1,0,1]]],[65,1,1,1,2,[[1167,1,1,1,2]]]],[30124,30711]]]]},{"k":"G2054","v":[["*",[9,9,[[44,2,2,0,2,[[1046,1,1,0,1],[1058,1,1,1,2]]],[45,2,2,2,4,[[1062,1,1,2,3],[1064,1,1,3,4]]],[46,1,1,4,5,[[1089,1,1,4,5]]],[47,1,1,5,6,[[1095,1,1,5,6]]],[49,1,1,6,7,[[1103,1,1,6,7]]],[53,1,1,7,8,[[1124,1,1,7,8]]],[55,1,1,8,9,[[1131,1,1,8,9]]]],[27959,28279,28374,28413,29042,29182,29376,29792,29932]]],["contentions",[2,2,[[45,1,1,0,1,[[1062,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[28374,29932]]],["debate",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27959]]],["debates",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29042]]],["strife",[4,4,[[44,1,1,0,1,[[1058,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[53,1,1,3,4,[[1124,1,1,3,4]]]],[28279,28413,29376,29792]]],["variance",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29182]]]]},{"k":"G2055","v":[["goats",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24041]]]]},{"k":"G2056","v":[["*",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]]],[24040,25617]]],["goats",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24040]]],["kid",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25617]]]]},{"k":"G2057","v":[["Hermas",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28350]]]]},{"k":"G2058","v":[["interpretation",[2,2,[[45,2,2,0,2,[[1073,1,1,0,1],[1075,1,1,1,2]]]],[28644,28704]]]]},{"k":"G2059","v":[["*",[4,4,[[42,3,3,0,3,[[997,2,2,0,2],[1005,1,1,2,3]]],[57,1,1,3,4,[[1139,1,1,3,4]]]],[26082,26086,26447,30066]]],["interpretation",[3,3,[[42,2,2,0,2,[[997,1,1,0,1],[1005,1,1,1,2]]],[57,1,1,2,3,[[1139,1,1,2,3]]]],[26086,26447,30066]]],["interpreted",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26082]]]]},{"k":"G2060","v":[["*",[2,2,[[43,1,1,0,1,[[1031,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]]],[27426,28350]]],["Hermes",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28350]]],["Mercurius",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27426]]]]},{"k":"G2061","v":[["Hermogenes",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29824]]]]},{"k":"G2062","v":[["*",[4,4,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]]],[27271,27313,27953,30326]]],["serpents",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30326]]],["things",[3,3,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]]],[27271,27313,27953]]]]},{"k":"G2063","v":[["Red",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[27152,30201]]]]},{"k":"G2064","v":[["*",[639,601,[[39,119,113,0,113,[[930,6,6,0,6],[931,4,4,6,10],[932,1,1,10,11],[933,3,2,11,13],[934,1,1,13,14],[935,3,3,14,17],[936,7,6,17,23],[937,8,7,23,30],[938,5,4,30,34],[939,4,4,34,38],[940,3,3,38,41],[941,6,6,41,47],[942,6,5,47,52],[943,3,3,52,55],[944,5,5,55,60],[945,5,5,60,65],[946,4,3,65,68],[947,2,2,68,70],[948,3,3,70,73],[949,7,7,73,80],[950,1,1,80,81],[951,2,2,81,83],[952,8,8,83,91],[953,9,9,91,100],[954,6,6,100,106],[955,4,4,106,110],[956,3,3,110,113]]],[40,84,81,113,194,[[957,7,7,113,120],[958,5,5,120,125],[959,3,3,125,128],[960,4,4,128,132],[961,9,9,132,141],[962,6,6,141,147],[963,3,3,147,150],[964,4,4,150,154],[965,7,7,154,161],[966,6,6,161,167],[967,7,5,167,172],[968,4,4,172,176],[969,4,4,176,180],[970,10,9,180,189],[971,3,3,189,192],[972,2,2,192,194]]],[41,101,96,194,290,[[973,2,2,194,196],[974,4,4,196,200],[975,3,3,200,203],[976,3,3,203,206],[977,5,4,206,210],[978,2,2,210,212],[979,8,7,212,219],[980,6,6,219,225],[981,3,3,225,228],[982,3,3,228,231],[983,3,3,231,234],[984,10,9,234,243],[985,4,4,243,247],[986,8,8,247,255],[987,5,5,255,260],[988,2,2,260,262],[989,6,4,262,266],[990,5,5,266,271],[991,7,7,271,278],[992,1,1,278,279],[993,3,3,279,282],[994,3,3,282,285],[995,3,3,285,288],[996,2,2,288,290]]],[42,156,142,290,432,[[997,12,11,290,301],[999,11,8,301,309],[1000,16,14,309,323],[1001,7,6,323,329],[1002,12,11,329,340],[1003,11,11,340,351],[1004,7,6,351,357],[1005,3,3,357,360],[1006,5,4,360,364],[1007,12,12,364,376],[1008,12,11,376,387],[1009,3,3,387,390],[1010,6,6,390,396],[1011,2,2,396,398],[1012,11,9,398,407],[1013,3,3,407,410],[1014,3,3,410,413],[1015,5,4,413,417],[1016,10,10,417,427],[1017,5,5,427,432]]],[43,54,54,432,486,[[1018,1,1,432,433],[1019,1,1,433,434],[1020,1,1,434,435],[1021,1,1,435,436],[1022,1,1,436,437],[1024,1,1,437,438],[1025,3,3,438,441],[1026,2,2,441,443],[1027,1,1,443,444],[1028,2,2,444,446],[1029,2,2,446,448],[1030,4,4,448,452],[1031,1,1,452,453],[1032,1,1,453,454],[1033,3,3,454,457],[1034,3,3,457,460],[1035,4,4,460,464],[1036,5,5,464,469],[1037,4,4,469,473],[1038,4,4,473,477],[1039,3,3,477,480],[1041,1,1,480,481],[1042,1,1,481,482],[1044,1,1,482,483],[1045,3,3,483,486]]],[44,11,10,486,496,[[1046,2,2,486,488],[1048,1,1,488,489],[1052,1,1,489,490],[1054,1,1,490,491],[1060,6,5,491,496]]],[45,18,15,496,511,[[1063,2,1,496,497],[1065,4,4,497,501],[1072,2,2,501,503],[1074,1,1,503,504],[1075,1,1,504,505],[1076,1,1,505,506],[1077,7,5,506,511]]],[46,16,16,511,527,[[1078,3,3,511,514],[1079,3,3,514,517],[1084,1,1,517,518],[1086,1,1,518,519],[1088,2,2,519,521],[1089,4,4,521,525],[1090,2,2,525,527]]],[47,8,7,527,534,[[1091,1,1,527,528],[1092,3,2,528,530],[1093,3,3,530,533],[1094,1,1,533,534]]],[48,2,2,534,536,[[1098,1,1,534,535],[1101,1,1,535,536]]],[49,3,3,536,539,[[1103,2,2,536,538],[1104,1,1,538,539]]],[50,2,2,539,541,[[1109,1,1,539,540],[1110,1,1,540,541]]],[51,4,4,541,545,[[1111,1,1,541,542],[1112,1,1,542,543],[1113,1,1,543,544],[1115,1,1,544,545]]],[52,2,2,545,547,[[1116,1,1,545,546],[1117,1,1,546,547]]],[53,4,4,547,551,[[1119,1,1,547,548],[1120,1,1,548,549],[1121,1,1,549,550],[1122,1,1,550,551]]],[54,4,4,551,555,[[1127,1,1,551,552],[1128,3,3,552,555]]],[55,1,1,555,556,[[1131,1,1,555,556]]],[57,5,5,556,561,[[1138,1,1,556,557],[1140,1,1,557,558],[1142,1,1,558,559],[1143,1,1,559,560],[1145,1,1,560,561]]],[60,1,1,561,562,[[1158,1,1,561,562]]],[61,5,4,562,566,[[1160,1,1,562,563],[1162,3,2,563,565],[1163,1,1,565,566]]],[62,3,3,566,569,[[1164,3,3,566,569]]],[63,2,2,569,571,[[1165,2,2,569,571]]],[64,1,1,571,572,[[1166,1,1,571,572]]],[65,33,29,572,601,[[1167,1,1,572,573],[1168,2,2,573,575],[1169,2,2,575,577],[1171,1,1,577,578],[1172,5,5,578,583],[1173,2,2,583,585],[1174,1,1,585,586],[1175,1,1,586,587],[1177,2,2,587,589],[1180,2,2,589,591],[1182,1,1,591,592],[1183,3,2,592,594],[1184,1,1,594,595],[1185,1,1,595,596],[1187,1,1,596,597],[1188,7,4,597,601]]]],[23171,23177,23178,23180,23190,23192,23199,23203,23206,23208,23222,23251,23258,23292,23331,23341,23343,23347,23352,23354,23359,23373,23374,23380,23389,23392,23394,23397,23402,23407,23430,23440,23451,23452,23462,23473,23477,23478,23498,23531,23533,23543,23558,23564,23571,23575,23593,23609,23625,23626,23630,23631,23658,23662,23672,23677,23685,23696,23699,23700,23710,23711,23712,23714,23724,23734,23738,23758,23763,23776,23801,23802,23820,23827,23831,23835,23845,23849,23858,23866,23875,23953,23957,23962,23987,23996,23999,24000,24001,24003,24005,24014,24018,24019,24021,24027,24035,24039,24044,24047,24090,24094,24097,24099,24101,24118,24162,24178,24186,24193,24196,24206,24208,24222,24224,24229,24239,24244,24255,24260,24263,24273,24277,24278,24280,24296,24307,24319,24327,24338,24344,24345,24365,24379,24386,24387,24390,24391,24397,24399,24402,24408,24428,24436,24438,24455,24460,24464,24488,24494,24510,24522,24534,24538,24539,24545,24549,24550,24551,24552,24571,24589,24602,24618,24633,24634,24638,24649,24650,24653,24655,24667,24682,24687,24691,24715,24723,24743,24752,24753,24757,24770,24771,24786,24791,24795,24799,24816,24820,24847,24862,24869,24874,24875,24936,24952,24989,25000,25017,25024,25028,25037,25041,25079,25097,25105,25114,25124,25139,25142,25163,25193,25198,25202,25203,25214,25215,25228,25229,25257,25262,25280,25286,25292,25294,25324,25327,25357,25364,25395,25396,25407,25430,25436,25495,25496,25497,25498,25499,25502,25504,25508,25513,25524,25525,25532,25553,25554,25562,25563,25570,25573,25579,25580,25584,25594,25605,25608,25613,25618,25641,25648,25652,25671,25673,25678,25691,25693,25696,25704,25718,25736,25741,25744,25749,25751,25754,25769,25795,25832,25834,25853,25871,25882,25909,25961,25964,25977,25992,26014,26051,26053,26055,26059,26071,26073,26074,26075,26083,26090,26091,26122,26128,26139,26140,26141,26142,26146,26151,26161,26163,26171,26172,26177,26179,26181,26183,26186,26191,26196,26201,26202,26210,26217,26234,26235,26238,26250,26253,26262,26271,26272,26274,26280,26281,26292,26294,26301,26302,26322,26355,26356,26358,26359,26362,26364,26365,26369,26370,26373,26378,26383,26395,26401,26402,26403,26423,26444,26447,26479,26489,26491,26493,26522,26540,26542,26543,26550,26552,26553,26555,26557,26561,26568,26571,26579,26581,26589,26592,26593,26595,26602,26603,26607,26608,26626,26627,26631,26636,26663,26671,26674,26686,26691,26696,26698,26721,26725,26728,26730,26733,26734,26739,26747,26751,26754,26758,26760,26770,26772,26788,26789,26822,26857,26858,26863,26864,26868,26869,26870,26871,26873,26875,26885,26886,26891,26893,26901,26906,26911,26920,26921,26934,26969,27015,27045,27074,27127,27203,27212,27216,27233,27237,27288,27312,27319,27347,27349,27375,27387,27406,27413,27438,27472,27490,27520,27522,27524,27536,27538,27558,27559,27564,27578,27586,27589,27591,27603,27612,27628,27632,27640,27641,27665,27672,27675,27686,27715,27717,27734,27777,27819,27863,27912,27913,27915,27940,27943,27999,28100,28164,28325,28326,28327,28332,28335,28395,28438,28451,28452,28454,28626,28634,28675,28684,28753,28778,28781,28786,28787,28788,28815,28816,28823,28825,28827,28836,28921,28960,28993,28998,29023,29036,29042,29043,29044,29045,29078,29092,29093,29121,29125,29127,29135,29246,29310,29373,29388,29415,29523,29552,29570,29588,29596,29623,29659,29664,29711,29720,29745,29760,29860,29879,29883,29891,29935,30051,30100,30170,30180,30264,30525,30568,30605,30606,30630,30652,30655,30657,30661,30668,30686,30704,30722,30733,30756,30757,30786,30794,30796,30798,30800,30810,30823,30824,30830,30852,30886,30890,30933,30941,30969,30976,30985,31003,31024,31062,31087,31092,31097,31100]]],["+",[7,7,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]],[43,3,3,3,6,[[1020,1,1,3,4],[1028,1,1,4,5],[1036,1,1,5,6]]],[62,1,1,6,7,[[1164,1,1,6,7]]]],[24390,25142,26864,27015,27319,27612,30655]]],["Came",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27717]]],["Come",[12,11,[[39,2,2,0,2,[[936,1,1,0,1],[942,1,1,1,2]]],[41,2,2,2,4,[[979,1,1,2,3],[986,1,1,3,4]]],[42,2,2,4,6,[[997,2,2,4,6]]],[65,6,5,6,11,[[1172,4,4,6,10],[1188,2,1,10,11]]]],[23354,23626,25203,25570,26083,26090,30794,30796,30798,30800,31097]]],["appear",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27734]]],["brought",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24344]]],["by",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27074]]],["came",[194,192,[[39,41,41,0,41,[[930,3,3,0,3],[932,1,1,3,4],[935,2,2,4,6],[936,1,1,6,7],[937,4,4,7,11],[938,1,1,11,12],[939,2,2,12,14],[940,1,1,14,15],[941,2,2,15,17],[942,2,2,17,19],[943,3,3,19,22],[944,1,1,22,23],[946,1,1,23,24],[947,1,1,24,25],[948,3,3,25,28],[949,2,2,28,30],[952,1,1,30,31],[953,4,4,31,35],[954,2,2,35,37],[955,1,1,37,38],[956,3,3,38,41]]],[40,32,31,41,72,[[957,4,4,41,45],[958,1,1,45,46],[959,2,2,46,48],[960,1,1,48,49],[961,3,3,49,52],[962,3,3,52,55],[963,3,3,55,58],[964,1,1,58,59],[965,3,3,59,62],[966,3,3,62,65],[967,2,1,65,66],[968,1,1,66,67],[970,3,3,67,70],[971,1,1,70,71],[972,1,1,71,72]]],[41,31,31,72,103,[[973,1,1,72,73],[974,3,3,73,76],[975,2,2,76,78],[976,2,2,78,80],[977,2,2,80,82],[978,1,1,82,83],[979,1,1,83,84],[980,3,3,84,87],[982,2,2,87,89],[983,1,1,89,90],[985,1,1,90,91],[987,3,3,91,94],[988,1,1,94,95],[989,1,1,95,96],[990,1,1,96,97],[991,3,3,97,100],[994,1,1,100,101],[996,2,2,101,103]]],[42,40,40,103,143,[[997,3,3,103,106],[999,3,3,106,109],[1000,3,3,109,112],[1002,2,2,112,114],[1003,2,2,114,116],[1004,3,3,116,119],[1005,1,1,119,120],[1006,1,1,120,121],[1007,4,4,121,125],[1008,5,5,125,130],[1014,1,1,130,131],[1015,4,4,131,135],[1016,7,7,135,142],[1017,1,1,142,143]]],[43,29,29,143,172,[[1024,1,1,143,144],[1025,2,2,144,146],[1026,1,1,146,147],[1027,1,1,147,148],[1028,1,1,148,149],[1029,2,2,149,151],[1030,2,2,151,153],[1031,1,1,153,154],[1032,1,1,154,155],[1033,1,1,155,156],[1034,2,2,156,158],[1035,1,1,158,159],[1036,3,3,159,162],[1037,4,4,162,166],[1038,2,2,166,168],[1039,1,1,168,169],[1044,1,1,169,170],[1045,2,2,170,172]]],[44,1,1,172,173,[[1052,1,1,172,173]]],[45,2,1,173,174,[[1063,2,1,173,174]]],[46,4,4,174,178,[[1078,1,1,174,175],[1079,2,2,175,177],[1088,1,1,177,178]]],[47,3,3,178,181,[[1091,1,1,178,179],[1092,1,1,179,180],[1093,1,1,180,181]]],[48,1,1,181,182,[[1098,1,1,181,182]]],[51,1,1,182,183,[[1113,1,1,182,183]]],[53,1,1,183,184,[[1119,1,1,183,184]]],[61,1,1,184,185,[[1163,1,1,184,185]]],[63,1,1,185,186,[[1165,1,1,185,186]]],[65,6,6,186,192,[[1171,1,1,186,187],[1173,2,2,187,189],[1174,1,1,189,190],[1183,1,1,190,191],[1187,1,1,191,192]]]],[23178,23190,23192,23222,23341,23343,23347,23380,23389,23397,23402,23451,23477,23478,23531,23543,23564,23630,23631,23658,23662,23672,23685,23758,23763,23801,23802,23820,23845,23858,23996,24018,24019,24044,24047,24097,24101,24186,24196,24206,24208,24224,24229,24255,24260,24277,24296,24319,24327,24391,24397,24399,24408,24436,24460,24464,24488,24494,24510,24545,24552,24571,24633,24634,24638,24653,24715,24757,24770,24786,24869,24875,24952,24989,25000,25024,25028,25037,25079,25105,25114,25139,25163,25228,25280,25286,25292,25395,25396,25436,25524,25605,25608,25613,25641,25678,25691,25736,25749,25751,25871,25992,26014,26051,26055,26083,26122,26142,26146,26183,26186,26202,26280,26281,26373,26378,26383,26395,26423,26447,26489,26540,26542,26552,26568,26581,26589,26607,26608,26627,26822,26857,26858,26863,26864,26870,26871,26875,26885,26886,26891,26893,26906,27127,27212,27216,27237,27288,27312,27347,27349,27375,27413,27438,27472,27522,27524,27536,27558,27586,27591,27603,27628,27632,27640,27641,27665,27672,27715,27863,27912,27915,28100,28395,28823,28827,28836,28998,29078,29093,29125,29246,29596,29711,30630,30661,30786,30823,30824,30830,30976,31062]]],["camest",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27233]]],["come",[272,261,[[39,49,48,0,48,[[930,3,3,0,3],[931,1,1,3,4],[933,3,2,4,6],[934,1,1,6,7],[935,1,1,7,8],[936,4,4,8,12],[937,4,4,12,16],[938,4,4,16,20],[939,2,2,20,22],[940,1,1,22,23],[941,2,2,23,25],[942,1,1,25,26],[944,3,3,26,29],[945,5,5,29,34],[946,2,2,34,36],[947,1,1,36,37],[949,2,2,37,39],[950,1,1,39,40],[951,1,1,40,41],[952,3,3,41,44],[953,1,1,44,45],[955,3,3,45,48]]],[40,25,24,48,72,[[957,1,1,48,49],[958,3,3,49,52],[960,1,1,52,53],[961,2,2,53,55],[962,1,1,55,56],[964,1,1,56,57],[965,3,3,57,60],[966,2,2,60,62],[967,3,2,62,64],[968,3,3,64,67],[969,1,1,67,68],[970,2,2,68,70],[971,1,1,70,71],[972,1,1,71,72]]],[41,40,38,72,110,[[973,1,1,72,73],[976,1,1,73,74],[977,2,2,74,76],[979,5,5,76,81],[980,1,1,81,82],[981,3,3,82,85],[982,1,1,85,86],[983,1,1,86,87],[984,4,3,87,90],[985,2,2,90,92],[986,4,4,92,96],[987,1,1,96,97],[988,1,1,97,98],[989,4,3,98,101],[990,2,2,101,103],[991,2,2,103,105],[992,1,1,105,106],[993,2,2,106,108],[994,2,2,108,110]]],[42,63,61,110,171,[[997,1,1,110,111],[999,3,3,111,114],[1000,6,6,114,120],[1001,4,3,120,123],[1002,6,6,123,129],[1003,6,6,129,135],[1004,4,4,135,139],[1005,1,1,139,140],[1006,1,1,140,141],[1007,6,6,141,147],[1008,3,3,147,150],[1009,2,2,150,152],[1010,4,4,152,156],[1011,2,2,156,158],[1012,8,7,158,165],[1013,3,3,165,168],[1014,1,1,168,169],[1017,2,2,169,171]]],[43,12,12,171,183,[[1018,1,1,171,172],[1019,1,1,172,173],[1025,1,1,173,174],[1033,2,2,174,176],[1034,1,1,176,177],[1035,1,1,177,178],[1036,1,1,178,179],[1038,2,2,179,181],[1041,1,1,181,182],[1042,1,1,182,183]]],[44,9,8,183,191,[[1046,2,2,183,185],[1048,1,1,185,186],[1054,1,1,186,187],[1060,5,4,187,191]]],[45,16,14,191,205,[[1065,4,4,191,195],[1072,2,2,195,197],[1074,1,1,197,198],[1075,1,1,198,199],[1076,1,1,199,200],[1077,7,5,200,205]]],[46,10,10,205,215,[[1078,2,2,205,207],[1079,1,1,207,208],[1084,1,1,208,209],[1086,1,1,209,210],[1089,4,4,210,214],[1090,1,1,214,215]]],[47,5,5,215,220,[[1092,2,2,215,217],[1093,2,2,217,219],[1094,1,1,219,220]]],[49,2,2,220,222,[[1103,1,1,220,221],[1104,1,1,221,222]]],[50,1,1,222,223,[[1110,1,1,222,223]]],[51,2,2,223,225,[[1111,1,1,223,224],[1112,1,1,224,225]]],[52,2,2,225,227,[[1116,1,1,225,226],[1117,1,1,226,227]]],[53,3,3,227,230,[[1120,1,1,227,228],[1121,1,1,228,229],[1122,1,1,229,230]]],[54,3,3,230,233,[[1127,1,1,230,231],[1128,2,2,231,233]]],[55,1,1,233,234,[[1131,1,1,233,234]]],[57,3,3,234,237,[[1140,1,1,234,235],[1142,1,1,235,236],[1145,1,1,236,237]]],[60,1,1,237,238,[[1158,1,1,237,238]]],[61,4,3,238,241,[[1160,1,1,238,239],[1162,3,2,239,241]]],[62,2,2,241,243,[[1164,2,2,241,243]]],[63,1,1,243,244,[[1165,1,1,243,244]]],[65,18,17,244,261,[[1168,2,2,244,246],[1169,2,2,246,248],[1172,1,1,248,249],[1175,1,1,249,250],[1177,1,1,250,251],[1180,2,2,251,253],[1182,1,1,253,254],[1183,1,1,254,255],[1184,1,1,255,256],[1185,1,1,256,257],[1188,5,4,257,261]]]],[23171,23177,23180,23199,23251,23258,23292,23331,23352,23359,23373,23374,23392,23394,23397,23407,23430,23440,23451,23452,23462,23473,23533,23571,23593,23625,23677,23696,23699,23710,23711,23712,23714,23724,23734,23738,23776,23827,23849,23875,23953,23962,23999,24000,24039,24162,24178,24193,24239,24263,24278,24280,24345,24379,24387,24428,24534,24539,24549,24551,24602,24618,24655,24667,24682,24687,24691,24723,24795,24799,24862,24874,24936,25097,25114,25124,25198,25202,25214,25215,25229,25262,25324,25327,25357,25364,25407,25497,25498,25508,25525,25532,25562,25573,25579,25580,25618,25648,25652,25671,25673,25704,25718,25741,25744,25795,25832,25834,25882,25909,26075,26122,26139,26146,26171,26172,26181,26196,26201,26210,26234,26250,26253,26262,26271,26272,26274,26301,26322,26356,26358,26362,26364,26365,26369,26395,26401,26402,26403,26479,26491,26550,26553,26555,26557,26571,26579,26592,26603,26626,26631,26663,26671,26686,26691,26696,26721,26725,26730,26733,26734,26739,26747,26754,26758,26760,26770,26772,26789,26920,26921,26934,26969,27203,27490,27520,27538,27559,27589,27675,27686,27777,27819,27940,27943,27999,28164,28326,28327,28332,28335,28438,28451,28452,28454,28626,28634,28675,28684,28753,28778,28781,28786,28787,28788,28815,28816,28825,28921,28960,29023,29036,29042,29043,29045,29092,29093,29121,29127,29135,29388,29415,29552,29570,29588,29659,29664,29720,29745,29760,29860,29879,29891,29935,30100,30170,30264,30525,30568,30605,30606,30652,30657,30668,30722,30733,30756,30757,30810,30852,30890,30933,30941,30969,30985,31003,31024,31087,31092,31097,31100]]],["comest",[3,3,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[23206,25977,29883]]],["cometh",[98,97,[[39,16,16,0,16,[[931,1,1,0,1],[936,1,1,1,2],[941,1,1,2,3],[946,1,1,3,4],[949,3,3,4,7],[951,1,1,7,8],[952,2,2,8,10],[953,3,3,10,13],[954,3,3,13,16]]],[40,16,16,16,32,[[957,1,1,16,17],[960,1,1,17,18],[961,2,2,18,20],[962,1,1,20,21],[964,2,2,21,23],[965,1,1,23,24],[966,1,1,24,25],[967,2,2,25,27],[969,1,1,27,28],[970,4,4,28,32]]],[41,18,18,32,50,[[975,1,1,32,33],[978,1,1,33,34],[979,1,1,34,35],[980,2,2,35,37],[983,1,1,37,38],[984,5,5,38,43],[985,1,1,43,44],[986,2,2,44,46],[987,1,1,46,47],[989,1,1,47,48],[990,1,1,48,49],[991,1,1,49,50]]],[42,37,36,50,86,[[997,3,3,50,53],[999,5,4,53,57],[1000,6,6,57,63],[1002,3,3,63,66],[1003,3,3,66,69],[1005,1,1,69,70],[1006,1,1,70,71],[1007,1,1,71,72],[1008,3,3,72,75],[1009,1,1,75,76],[1010,2,2,76,78],[1012,3,3,78,81],[1014,1,1,81,82],[1016,3,3,82,85],[1017,1,1,85,86]]],[43,2,2,86,88,[[1030,1,1,86,87],[1035,1,1,87,88]]],[46,1,1,88,89,[[1088,1,1,88,89]]],[48,1,1,89,90,[[1101,1,1,89,90]]],[50,1,1,90,91,[[1109,1,1,90,91]]],[51,1,1,91,92,[[1115,1,1,91,92]]],[57,1,1,92,93,[[1138,1,1,92,93]]],[64,1,1,93,94,[[1166,1,1,93,94]]],[65,3,3,94,97,[[1167,1,1,94,95],[1177,1,1,95,96],[1183,1,1,96,97]]]],[23203,23354,23558,23734,23831,23835,23866,23957,24001,24003,24014,24021,24027,24090,24094,24099,24222,24338,24386,24402,24455,24522,24538,24550,24589,24649,24650,24752,24771,24791,24795,24820,25041,25193,25203,25257,25294,25430,25495,25496,25499,25502,25513,25553,25563,25584,25594,25671,25696,25769,26053,26059,26074,26128,26140,26141,26151,26161,26163,26177,26179,26181,26191,26292,26294,26302,26355,26359,26370,26444,26491,26561,26593,26595,26602,26636,26674,26698,26728,26751,26758,26788,26868,26869,26873,26911,27387,27578,28993,29310,29523,29623,30051,30686,30704,30886,30985]]],["coming",[27,27,[[39,5,5,0,5,[[944,1,1,0,1],[952,2,2,1,3],[953,1,1,3,4],[954,1,1,4,5]]],[40,5,5,5,10,[[962,1,1,5,6],[969,2,2,6,8],[970,1,1,8,9],[971,1,1,9,10]]],[41,6,6,10,16,[[984,1,1,10,11],[990,1,1,11,12],[991,1,1,12,13],[993,1,1,13,14],[995,2,2,14,16]]],[42,9,9,16,25,[[997,3,3,16,19],[1001,3,3,19,22],[1006,1,1,22,23],[1007,1,1,23,24],[1008,1,1,24,25]]],[44,1,1,25,26,[[1060,1,1,25,26]]],[46,1,1,26,27,[[1090,1,1,26,27]]]],[23700,23987,24005,24035,24118,24438,24743,24753,24816,24847,25504,25693,25754,25853,25961,25964,26071,26073,26091,26217,26235,26238,26493,26543,26592,28325,29044]]],["entered",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]]],[24244,27564]]],["go",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[42,1,1,1,2,[[1017,1,1,1,2]]]],[23626,26901]]],["lighting",[1,1,[[39,1,1,0,1,[[931,1,1,0,1]]]],[23208]]],["next",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27406]]],["out",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29373]]],["over",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24365]]],["resorted",[2,2,[[40,1,1,0,1,[[958,1,1,0,1]]],[42,1,1,1,2,[[1006,1,1,1,2]]]],[24273,26522]]],["went",[11,11,[[39,3,3,0,3,[[940,1,1,0,1],[941,1,1,1,2],[942,1,1,2,3]]],[40,1,1,3,4,[[959,1,1,3,4]]],[41,2,2,4,6,[[974,1,1,4,5],[986,1,1,5,6]]],[42,2,2,6,8,[[1000,1,1,6,7],[1002,1,1,7,8]]],[43,2,2,8,10,[[1021,1,1,8,9],[1045,1,1,9,10]]],[57,1,1,10,11,[[1143,1,1,10,11]]]],[23498,23575,23609,24307,25017,25554,26201,26274,27045,27913,30180]]]]},{"k":"G2065","v":[["*",[58,57,[[39,3,3,0,3,[[943,1,1,0,1],[944,1,1,1,2],[949,1,1,2,3]]],[40,2,2,3,5,[[960,1,1,3,4],[963,1,1,4,5]]],[41,14,14,5,19,[[976,1,1,5,6],[977,1,1,6,7],[979,2,2,7,9],[980,1,1,9,10],[981,1,1,10,11],[983,1,1,11,12],[986,3,3,12,15],[988,1,1,15,16],[991,1,1,16,17],[992,1,1,17,18],[994,1,1,18,19]]],[42,27,26,19,45,[[997,3,3,19,22],[1000,3,3,22,25],[1001,1,1,25,26],[1004,1,1,26,27],[1005,5,5,27,32],[1008,1,1,32,33],[1010,1,1,33,34],[1012,5,5,34,39],[1013,4,3,39,42],[1014,1,1,42,43],[1015,2,2,43,45]]],[43,6,6,45,51,[[1020,1,1,45,46],[1027,1,1,46,47],[1033,1,1,47,48],[1035,1,1,48,49],[1040,2,2,49,51]]],[49,1,1,51,52,[[1106,1,1,51,52]]],[51,2,2,52,54,[[1114,1,1,52,53],[1115,1,1,53,54]]],[52,1,1,54,55,[[1117,1,1,54,55]]],[61,1,1,55,56,[[1163,1,1,55,56]]],[62,1,1,56,57,[[1164,1,1,56,57]]]],[23656,23685,23850,24333,24489,25101,25110,25198,25231,25282,25346,25442,25571,25572,25585,25647,25762,25782,25932,26063,26065,26069,26187,26196,26203,26222,26388,26442,26455,26459,26461,26463,26601,26684,26731,26745,26749,26752,26756,26768,26774,26779,26804,26856,26863,26999,27307,27522,27577,27752,27754,29445,29604,29633,29662,30640,30650]]],["+",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25782]]],["ask",[10,10,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,3,3,1,4,[[981,1,1,1,2],[991,1,1,2,3],[994,1,1,3,4]]],[42,6,6,4,10,[[997,1,1,4,5],[1005,2,2,5,7],[1012,3,3,7,10]]]],[23850,25346,25762,25932,26063,26461,26463,26745,26749,26756]]],["asked",[10,10,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[42,7,7,2,9,[[997,2,2,2,4],[1001,1,1,4,5],[1005,3,3,5,8],[1014,1,1,8,9]]],[43,1,1,9,10,[[1020,1,1,9,10]]]],[23685,24333,26065,26069,26222,26442,26455,26459,26804,26999]]],["asketh",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26731]]],["asking",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26388]]],["beseech",[4,4,[[51,2,2,0,2,[[1114,1,1,0,1],[1115,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]],[62,1,1,3,4,[[1164,1,1,3,4]]]],[29604,29633,29662,30650]]],["beseeching",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25198]]],["besought",[9,9,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,3,3,2,5,[[976,1,1,2,3],[980,1,1,3,4],[983,1,1,4,5]]],[42,4,4,5,9,[[1000,2,2,5,7],[1015,2,2,7,9]]]],[23656,24489,25101,25282,25442,26196,26203,26856,26863]]],["desire",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27754]]],["desired",[4,4,[[41,1,1,0,1,[[979,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]],[43,2,2,2,4,[[1033,1,1,2,3],[1035,1,1,3,4]]]],[25231,26601,27522,27577]]],["desireth",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25585]]],["intreat",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29445]]],["pray",[10,9,[[41,3,3,0,3,[[986,2,2,0,2],[988,1,1,2,3]]],[42,6,5,3,8,[[1010,1,1,3,4],[1012,1,1,4,5],[1013,4,3,5,8]]],[61,1,1,8,9,[[1163,1,1,8,9]]]],[25571,25572,25647,26684,26752,26768,26774,26779,30640]]],["prayed",[4,4,[[41,1,1,0,1,[[977,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]],[43,2,2,2,4,[[1027,1,1,2,3],[1040,1,1,3,4]]]],[25110,26187,27307,27752]]]]},{"k":"G2066","v":[["*",[7,6,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,3,3,1,4,[[1018,1,1,1,2],[1027,1,1,2,3],[1029,1,1,3,4]]],[58,3,2,4,6,[[1147,3,2,4,6]]]],[25946,26933,27289,27358,30295,30296]]],["+",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27358]]],["apparel",[2,2,[[43,1,1,0,1,[[1018,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[26933,30295]]],["clothing",[2,2,[[43,1,1,0,1,[[1027,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[27289,30296]]],["raiment",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30295]]],["robe",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25946]]]]},{"k":"G2067","v":[["garments",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[25995]]]]},{"k":"G2068","v":[["*",[65,55,[[39,11,11,0,11,[[937,1,1,0,1],[939,2,2,1,3],[940,1,1,3,4],[942,1,1,4,5],[943,3,3,5,8],[952,1,1,8,9],[954,2,2,9,11]]],[40,11,9,11,20,[[957,1,1,11,12],[958,2,1,12,13],[963,5,5,13,18],[970,3,2,18,20]]],[41,12,12,20,32,[[977,2,2,20,22],[978,1,1,22,23],[979,2,2,23,25],[982,2,2,25,27],[984,1,1,27,28],[987,1,1,28,29],[989,2,2,29,31],[994,1,1,31,32]]],[43,1,1,32,33,[[1044,1,1,32,33]]],[44,10,4,33,37,[[1059,10,4,33,37]]],[45,17,15,37,52,[[1069,2,2,37,39],[1070,3,2,39,41],[1071,5,5,41,46],[1072,7,6,46,52]]],[52,2,2,52,54,[[1118,2,2,52,54]]],[57,1,1,54,55,[[1142,1,1,54,55]]]],[23390,23477,23478,23490,23618,23635,23660,23671,24006,24075,24080,24221,24276,24465,24466,24467,24468,24491,24772,24776,25137,25140,25147,25228,25229,25370,25371,25504,25604,25678,25679,25894,27890,28282,28283,28286,28300,28534,28537,28547,28553,28585,28592,28594,28595,28598,28622,28626,28627,28628,28629,28634,29688,29690,30160]]],["+",[4,3,[[44,3,2,0,2,[[1059,3,2,0,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]]],[28283,28286,28626]]],["devour",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30160]]],["eat",[38,38,[[39,6,6,0,6,[[940,1,1,0,1],[943,3,3,1,4],[952,1,1,4,5],[954,1,1,5,6]]],[40,9,9,6,15,[[957,1,1,6,7],[958,1,1,7,8],[963,5,5,8,13],[970,2,2,13,15]]],[41,9,9,15,24,[[977,2,2,15,17],[978,1,1,17,18],[982,1,1,18,19],[984,1,1,19,20],[987,1,1,20,21],[989,2,2,21,23],[994,1,1,23,24]]],[43,1,1,24,25,[[1044,1,1,24,25]]],[45,11,11,25,36,[[1069,2,2,25,27],[1071,5,5,27,32],[1072,4,4,32,36]]],[52,2,2,36,38,[[1118,2,2,36,38]]]],[23490,23635,23660,23671,24006,24075,24221,24276,24465,24466,24467,24468,24491,24772,24776,25137,25140,25147,25371,25504,25604,25678,25679,25894,27890,28534,28537,28585,28592,28594,28595,28598,28622,28627,28628,28634,29688,29690]]],["eaten",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23618]]],["eateth",[14,9,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[970,1,1,2,3]]],[44,7,4,3,7,[[1059,7,4,3,7]]],[45,4,2,7,9,[[1070,2,1,7,8],[1072,2,1,8,9]]]],[23390,24276,24772,28282,28283,28286,28300,28547,28629]]],["eating",[6,6,[[39,3,3,0,3,[[939,2,2,0,2],[954,1,1,2,3]]],[41,3,3,3,6,[[979,2,2,3,5],[982,1,1,5,6]]]],[23477,23478,24080,25228,25229,25370]]],["live",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28553]]]]},{"k":"G2069","v":[["Esli",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25050]]]]},{"k":"G2070","v":[["*",[53,51,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[989,1,1,2,3]]],[42,5,5,3,8,[[1004,1,1,3,4],[1005,2,2,4,6],[1006,1,1,6,7],[1013,1,1,7,8]]],[43,9,8,8,16,[[1019,1,1,8,9],[1020,1,1,9,10],[1022,1,1,10,11],[1027,1,1,11,12],[1031,1,1,12,13],[1033,1,1,13,14],[1034,2,1,14,15],[1040,1,1,15,16]]],[44,5,5,16,21,[[1051,1,1,16,17],[1053,2,2,17,19],[1057,1,1,19,20],[1059,1,1,20,21]]],[45,5,4,21,25,[[1064,1,1,21,22],[1071,2,2,22,24],[1076,2,1,24,25]]],[46,7,7,25,32,[[1078,2,2,25,27],[1079,2,2,27,29],[1080,1,1,29,30],[1087,1,1,30,31],[1090,1,1,31,32]]],[47,3,3,32,35,[[1093,1,1,32,33],[1094,2,2,33,35]]],[48,3,3,35,38,[[1098,1,1,35,36],[1100,1,1,36,37],[1101,1,1,37,38]]],[49,1,1,38,39,[[1105,1,1,38,39]]],[51,1,1,39,40,[[1115,1,1,39,40]]],[57,4,4,40,44,[[1135,1,1,40,41],[1136,1,1,41,42],[1142,2,2,42,44]]],[61,7,7,44,51,[[1160,1,1,44,45],[1161,2,2,45,47],[1162,2,2,47,49],[1163,2,2,49,51]]]],[24373,25313,25661,26414,26468,26480,26511,26781,26981,27011,27091,27298,27429,27511,27551,27749,28083,28128,28132,28250,28288,28419,28584,28589,28737,28814,28824,28839,28841,28846,28982,29049,29127,29159,29162,29239,29297,29334,29424,29626,30001,30016,30143,30172,30555,30581,30598,30609,30620,30643,30644]]],["+",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30016]]],["Are",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26480]]],["are",[48,48,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[989,1,1,2,3]]],[42,3,3,3,6,[[1005,1,1,3,4],[1006,1,1,4,5],[1013,1,1,5,6]]],[43,8,8,6,14,[[1019,1,1,6,7],[1020,1,1,7,8],[1022,1,1,8,9],[1027,1,1,9,10],[1031,1,1,10,11],[1033,1,1,11,12],[1034,1,1,12,13],[1040,1,1,13,14]]],[44,5,5,14,19,[[1051,1,1,14,15],[1053,2,2,15,17],[1057,1,1,17,18],[1059,1,1,18,19]]],[45,4,4,19,23,[[1064,1,1,19,20],[1071,2,2,20,22],[1076,1,1,22,23]]],[46,7,7,23,30,[[1078,2,2,23,25],[1079,2,2,25,27],[1080,1,1,27,28],[1087,1,1,28,29],[1090,1,1,29,30]]],[47,3,3,30,33,[[1093,1,1,30,31],[1094,2,2,31,33]]],[48,3,3,33,36,[[1098,1,1,33,34],[1100,1,1,34,35],[1101,1,1,35,36]]],[49,1,1,36,37,[[1105,1,1,36,37]]],[51,1,1,37,38,[[1115,1,1,37,38]]],[57,3,3,38,41,[[1135,1,1,38,39],[1142,2,2,39,41]]],[61,7,7,41,48,[[1160,1,1,41,42],[1161,2,2,42,44],[1162,2,2,44,46],[1163,2,2,46,48]]]],[24373,25313,25661,26468,26511,26781,26981,27011,27091,27298,27429,27511,27551,27749,28083,28128,28132,28250,28288,28419,28584,28589,28737,28814,28824,28839,28841,28846,28982,29049,29127,29159,29162,29239,29297,29334,29424,29626,30001,30143,30172,30555,30581,30598,30609,30620,30643,30644]]],["be",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26414]]],["being",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27551]]],["have",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28737]]]]},{"k":"G2071","v":[["*",[188,170,[[39,47,43,0,43,[[933,5,3,0,3],[934,4,4,3,7],[936,1,1,7,8],[938,2,2,8,10],[939,2,2,10,12],[940,4,4,12,16],[941,4,4,16,20],[944,3,2,20,22],[945,1,1,22,23],[946,2,1,23,24],[947,3,3,24,27],[948,2,2,27,29],[950,2,2,29,31],[951,1,1,31,32],[952,9,9,32,41],[953,1,1,41,42],[955,1,1,42,43]]],[40,19,17,43,60,[[962,1,1,43,44],[965,2,2,44,46],[966,5,4,46,50],[967,2,2,50,52],[968,2,2,52,54],[969,6,5,54,59],[970,1,1,59,60]]],[41,49,46,60,106,[[973,8,8,60,68],[974,1,1,68,69],[975,1,1,69,70],[976,1,1,70,71],[977,1,1,71,72],[978,3,2,72,74],[981,2,2,74,76],[982,2,2,76,78],[983,3,3,78,81],[984,4,4,81,85],[985,3,2,85,87],[986,2,2,87,89],[987,1,1,89,90],[989,7,7,90,97],[993,7,6,97,103],[994,2,2,103,105],[995,1,1,105,106]]],[42,6,6,106,112,[[1002,1,1,106,107],[1004,2,2,107,109],[1008,1,1,109,110],[1010,1,1,110,111],[1015,1,1,111,112]]],[43,9,9,112,121,[[1018,1,1,112,113],[1019,2,2,113,115],[1020,1,1,115,116],[1024,1,1,116,117],[1030,1,1,117,118],[1039,1,1,118,119],[1044,2,2,119,121]]],[44,5,5,121,126,[[1049,1,1,121,122],[1051,1,1,122,123],[1054,2,2,123,125],[1060,1,1,125,126]]],[45,4,4,126,130,[[1067,1,1,126,127],[1072,1,1,127,128],[1075,2,2,128,130]]],[46,8,6,130,136,[[1080,1,1,130,131],[1083,4,2,131,133],[1088,1,1,133,134],[1089,1,1,134,135],[1090,1,1,135,136]]],[48,2,2,136,138,[[1101,1,1,136,137],[1102,1,1,137,138]]],[49,1,1,138,139,[[1106,1,1,138,139]]],[51,1,1,139,140,[[1114,1,1,139,140]]],[53,1,1,140,141,[[1122,1,1,140,141]]],[54,5,5,141,146,[[1126,2,2,141,143],[1127,2,2,143,145],[1128,1,1,145,146]]],[57,7,5,146,151,[[1133,2,1,146,147],[1134,1,1,147,148],[1135,1,1,148,149],[1140,3,2,149,151]]],[58,2,2,151,153,[[1146,1,1,151,152],[1150,1,1,152,153]]],[60,1,1,153,154,[[1157,1,1,153,154]]],[61,2,1,154,155,[[1161,2,1,154,155]]],[62,2,2,155,157,[[1164,2,2,155,157]]],[64,1,1,157,158,[[1166,1,1,157,158]]],[65,16,12,158,170,[[1176,2,2,158,160],[1182,1,1,160,161],[1186,1,1,161,162],[1187,7,4,162,166],[1188,5,4,166,170]]]],[23255,23256,23282,23287,23303,23304,23305,23357,23432,23439,23481,23483,23500,23516,23529,23534,23579,23581,23588,23589,23691,23694,23717,23745,23767,23789,23792,23808,23818,23885,23900,23929,23960,23964,23966,23978,23984,23994,23996,23997,24008,24038,24193,24418,24557,24573,24596,24619,24631,24632,24663,24664,24680,24696,24721,24725,24730,24736,24742,24756,24907,24908,24913,24925,24926,24927,24938,24959,24983,25030,25070,25117,25181,25186,25342,25349,25375,25377,25424,25435,25441,25479,25493,25511,25514,25546,25548,25563,25567,25595,25675,25677,25681,25682,25685,25686,25687,25833,25837,25843,25849,25850,25851,25913,25933,25978,26302,26417,26436,26606,26685,26849,26931,26966,26970,27019,27122,27373,27719,27877,27880,28040,28073,28164,28181,28315,28483,28627,28687,28689,28849,28914,28916,29004,29028,29054,29335,29340,29451,29620,29753,29829,29848,29855,29862,29873,29968,29990,30007,30102,30104,30291,30357,30501,30581,30647,30648,30690,30867,30870,30959,31044,31056,31057,31060,31078,31083,31085,31092,31094]]],["+",[6,6,[[42,1,1,0,1,[[1008,1,1,0,1]]],[44,1,1,1,2,[[1051,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]],[57,1,1,4,5,[[1134,1,1,4,5]]],[65,1,1,5,6,[[1187,1,1,5,6]]]],[26606,28073,28687,28916,29990,31057]]],["Be",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23282]]],["be",[161,146,[[39,44,41,0,41,[[933,4,2,0,2],[934,4,4,2,6],[936,1,1,6,7],[938,2,2,7,9],[939,2,2,9,11],[940,4,4,11,15],[941,4,4,15,19],[944,2,2,19,21],[945,1,1,21,22],[946,2,1,22,23],[947,2,2,23,25],[948,2,2,25,27],[950,2,2,27,29],[951,1,1,29,30],[952,9,9,30,39],[953,1,1,39,40],[955,1,1,40,41]]],[40,16,14,41,55,[[962,1,1,41,42],[965,2,2,42,44],[966,5,4,44,48],[968,2,2,48,50],[969,5,4,50,54],[970,1,1,54,55]]],[41,43,40,55,95,[[973,7,7,55,62],[974,1,1,62,63],[976,1,1,63,64],[978,3,2,64,66],[981,2,2,66,68],[982,2,2,68,70],[983,3,3,70,73],[984,4,4,73,77],[985,3,2,77,79],[986,1,1,79,80],[987,1,1,80,81],[989,7,7,81,88],[993,7,6,88,94],[995,1,1,94,95]]],[42,5,5,95,100,[[1002,1,1,95,96],[1004,2,2,96,98],[1010,1,1,98,99],[1015,1,1,99,100]]],[43,5,5,100,105,[[1018,1,1,100,101],[1030,1,1,101,102],[1039,1,1,102,103],[1044,2,2,103,105]]],[44,2,2,105,107,[[1049,1,1,105,106],[1060,1,1,106,107]]],[45,3,3,107,110,[[1067,1,1,107,108],[1072,1,1,108,109],[1075,1,1,109,110]]],[46,7,6,110,116,[[1080,1,1,110,111],[1083,3,2,111,113],[1088,1,1,113,114],[1089,1,1,114,115],[1090,1,1,115,116]]],[48,1,1,116,117,[[1101,1,1,116,117]]],[49,1,1,117,118,[[1106,1,1,117,118]]],[51,1,1,118,119,[[1114,1,1,118,119]]],[53,1,1,119,120,[[1122,1,1,119,120]]],[54,4,4,120,124,[[1126,2,2,120,122],[1127,2,2,122,124]]],[57,6,4,124,128,[[1133,2,1,124,125],[1135,1,1,125,126],[1140,3,2,126,128]]],[58,2,2,128,130,[[1146,1,1,128,129],[1150,1,1,129,130]]],[60,1,1,130,131,[[1157,1,1,130,131]]],[61,2,1,131,132,[[1161,2,1,131,132]]],[62,2,2,132,134,[[1164,2,2,132,134]]],[64,1,1,134,135,[[1166,1,1,134,135]]],[65,14,11,135,146,[[1176,2,2,135,137],[1182,1,1,137,138],[1186,1,1,138,139],[1187,6,4,139,143],[1188,4,3,143,146]]]],[23255,23256,23287,23303,23304,23305,23357,23432,23439,23481,23483,23500,23516,23529,23534,23579,23581,23588,23589,23691,23694,23717,23745,23767,23792,23808,23818,23885,23900,23929,23960,23964,23966,23978,23984,23994,23996,23997,24008,24038,24193,24418,24557,24573,24596,24619,24631,24632,24680,24696,24721,24725,24730,24736,24756,24908,24913,24925,24926,24927,24938,24959,24983,25070,25181,25186,25342,25349,25375,25377,25424,25435,25441,25479,25493,25511,25514,25546,25548,25567,25595,25675,25677,25681,25682,25685,25686,25687,25833,25837,25843,25849,25850,25851,25978,26302,26417,26436,26685,26849,26931,27373,27719,27877,27880,28040,28315,28483,28627,28689,28849,28914,28916,29004,29028,29054,29335,29451,29620,29753,29829,29848,29855,29862,29968,30007,30102,30104,30291,30357,30501,30581,30647,30648,30690,30867,30870,30959,31044,31056,31057,31060,31078,31083,31085,31092]]],["come",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29873]]],["follow",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25913]]],["have",[7,7,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,2,2,1,3,[[967,2,2,1,3]]],[41,2,2,3,5,[[973,1,1,3,4],[986,1,1,4,5]]],[44,1,1,5,6,[[1054,1,1,5,6]]],[65,1,1,6,7,[[1188,1,1,6,7]]]],[23789,24663,24664,24907,25563,28164,31094]]],["made",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25030]]],["mayest",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29340]]],["pass",[4,4,[[43,3,3,0,3,[[1019,2,2,0,2],[1020,1,1,2,3]]],[44,1,1,3,4,[[1054,1,1,3,4]]]],[26966,26970,27019,28181]]],["shall",[3,3,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]]],[23691,24742,25933]]],["shalt",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25117]]],["should",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27122]]]]},{"k":"G2072","v":[["glass",[2,2,[[45,1,1,0,1,[[1074,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[28677,30289]]]]},{"k":"G2073","v":[["*",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,2,2,1,3,[[1021,1,1,1,2],[1045,1,1,2,3]]]],[26020,27025,27922]]],["evening",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]]],[26020,27922]]],["eventide",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27025]]]]},{"k":"G2074","v":[["Esrom",[3,2,[[39,2,1,0,1,[[929,2,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23147,25058]]]]},{"k":"G2075","v":[["*",[92,88,[[39,9,9,0,9,[[933,3,3,0,3],[936,1,1,3,4],[938,1,1,4,5],[943,1,1,5,6],[951,3,3,6,9]]],[40,4,4,9,13,[[960,1,1,9,10],[963,1,1,10,11],[965,1,1,11,12],[969,1,1,12,13]]],[41,10,10,13,23,[[978,1,1,13,14],[981,1,1,14,15],[983,1,1,15,16],[985,2,2,16,18],[988,1,1,18,19],[994,1,1,19,20],[996,3,3,20,23]]],[42,16,15,23,38,[[1004,6,5,23,28],[1006,2,2,28,30],[1009,4,4,30,34],[1011,4,4,34,38]]],[43,4,4,38,42,[[1020,1,1,38,39],[1024,1,1,39,40],[1036,1,1,40,41],[1039,1,1,41,42]]],[44,5,5,42,47,[[1046,1,1,42,43],[1051,2,2,43,45],[1053,1,1,45,46],[1060,1,1,46,47]]],[45,17,16,47,63,[[1062,1,1,47,48],[1064,6,5,48,53],[1065,1,1,53,54],[1066,2,2,54,56],[1067,2,2,56,58],[1070,2,2,58,60],[1073,1,1,60,61],[1075,1,1,61,62],[1076,1,1,62,63]]],[46,8,7,63,70,[[1078,1,1,63,64],[1079,1,1,64,65],[1080,2,2,65,67],[1083,1,1,67,68],[1084,1,1,68,69],[1090,2,1,69,70]]],[47,6,6,70,76,[[1093,4,4,70,74],[1094,1,1,74,75],[1095,1,1,75,76]]],[48,4,4,76,80,[[1098,3,3,76,79],[1101,1,1,79,80]]],[50,1,1,80,81,[[1108,1,1,80,81]]],[51,4,4,81,85,[[1112,1,1,81,82],[1114,1,1,82,83],[1115,2,2,83,85]]],[57,2,1,85,86,[[1144,2,1,85,86]]],[61,2,2,86,88,[[1160,1,1,86,87],[1162,1,1,87,88]]]],[23245,23247,23248,23371,23437,23649,23926,23946,23949,24363,24481,24579,24728,25168,25356,25449,25543,25545,25635,25892,26008,26029,26039,26404,26412,26418,26425,26428,26507,26515,26640,26641,26647,26665,26702,26713,26718,26726,27021,27142,27600,27707,27936,28082,28084,28125,28317,28393,28413,28414,28419,28426,28427,28441,28456,28461,28469,28486,28541,28542,28661,28690,28735,28807,28833,28843,28844,28914,28919,29048,29105,29128,29130,29131,29137,29180,29234,29237,29248,29309,29504,29590,29612,29625,29626,30220,30564,30607]]],["+",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29309]]],["Are",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[47,1,1,2,3,[[1093,1,1,2,3]]]],[23649,24481,29105]]],["are",[79,77,[[39,7,7,0,7,[[933,3,3,0,3],[936,1,1,3,4],[951,3,3,4,7]]],[40,1,1,7,8,[[960,1,1,7,8]]],[41,10,10,8,18,[[978,1,1,8,9],[981,1,1,9,10],[983,1,1,10,11],[985,2,2,11,13],[988,1,1,13,14],[994,1,1,14,15],[996,3,3,15,18]]],[42,15,14,18,32,[[1004,6,5,18,23],[1006,2,2,23,25],[1009,4,4,25,29],[1011,3,3,29,32]]],[43,4,4,32,36,[[1020,1,1,32,33],[1024,1,1,33,34],[1036,1,1,34,35],[1039,1,1,35,36]]],[44,5,5,36,41,[[1046,1,1,36,37],[1051,2,2,37,39],[1053,1,1,39,40],[1060,1,1,40,41]]],[45,17,16,41,57,[[1062,1,1,41,42],[1064,6,5,42,47],[1065,1,1,47,48],[1066,2,2,48,50],[1067,2,2,50,52],[1070,2,2,52,54],[1073,1,1,54,55],[1075,1,1,55,56],[1076,1,1,56,57]]],[46,4,4,57,61,[[1078,1,1,57,58],[1080,1,1,58,59],[1083,1,1,59,60],[1084,1,1,60,61]]],[47,5,5,61,66,[[1093,3,3,61,64],[1094,1,1,64,65],[1095,1,1,65,66]]],[48,3,3,66,69,[[1098,3,3,66,69]]],[50,1,1,69,70,[[1108,1,1,69,70]]],[51,4,4,70,74,[[1112,1,1,70,71],[1114,1,1,71,72],[1115,2,2,72,74]]],[57,1,1,74,75,[[1144,1,1,74,75]]],[61,2,2,75,77,[[1160,1,1,75,76],[1162,1,1,76,77]]]],[23245,23247,23248,23371,23926,23946,23949,24363,25168,25356,25449,25543,25545,25635,25892,26008,26029,26039,26404,26412,26418,26425,26428,26507,26515,26640,26641,26647,26665,26702,26713,26718,27021,27142,27600,27707,27936,28082,28084,28125,28317,28393,28413,28414,28419,28426,28427,28441,28456,28461,28469,28486,28541,28542,28661,28690,28735,28807,28843,28914,28919,29128,29130,29131,29137,29180,29234,29237,29248,29504,29590,29612,29625,29626,30220,30564,30607]]],["be",[5,4,[[46,4,3,0,3,[[1079,1,1,0,1],[1080,1,1,1,2],[1090,2,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]]],[28833,28844,29048,30220]]],["been",[1,1,[[42,1,1,0,1,[[1011,1,1,0,1]]]],[26726]]],["is",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23437,24728]]],["to",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24579]]]]},{"k":"G2076","v":[["*",[889,800,[[39,120,115,0,115,[[929,2,2,0,2],[930,1,1,2,3],[931,4,4,3,7],[933,7,6,7,13],[934,5,5,13,18],[935,2,2,18,20],[936,1,1,20,21],[937,3,3,21,24],[938,8,7,24,31],[939,6,6,31,37],[940,7,7,37,44],[941,19,17,44,61],[942,3,3,61,64],[943,2,2,64,66],[944,1,1,66,67],[945,2,2,67,69],[946,6,6,69,75],[947,5,4,75,79],[948,3,3,79,82],[949,4,4,82,86],[950,5,5,86,91],[951,6,6,91,97],[952,4,4,97,101],[954,8,8,101,109],[955,5,5,109,114],[956,1,1,114,115]]],[40,66,61,115,176,[[957,1,1,115,116],[958,4,4,116,120],[959,3,3,120,123],[960,5,4,123,127],[961,2,2,127,129],[962,7,6,129,135],[963,4,3,135,138],[965,11,10,138,148],[966,7,7,148,155],[968,11,10,155,165],[969,3,3,165,168],[970,7,7,168,175],[972,1,1,175,176]]],[41,107,99,176,275,[[973,3,3,176,179],[974,1,1,179,180],[976,2,2,180,182],[977,4,4,182,186],[978,12,12,186,198],[979,7,6,198,204],[980,7,5,204,209],[981,7,6,209,215],[982,5,4,215,219],[983,7,6,219,225],[984,8,8,225,233],[985,3,3,233,236],[986,4,4,236,240],[987,1,1,240,241],[988,4,3,241,244],[989,2,2,244,246],[990,4,4,246,250],[991,4,3,250,253],[992,6,6,253,259],[993,2,2,259,261],[994,6,6,261,267],[995,5,5,267,272],[996,3,3,272,275]]],[42,164,146,275,421,[[997,6,6,275,281],[998,2,2,281,283],[999,10,7,283,290],[1000,11,11,290,301],[1001,12,11,301,312],[1002,22,18,312,330],[1003,17,15,330,345],[1004,15,12,345,357],[1005,16,14,357,371],[1006,7,7,371,378],[1007,4,4,378,382],[1008,6,6,382,388],[1009,4,4,388,392],[1010,3,3,392,395],[1011,3,3,395,398],[1012,4,4,398,402],[1013,4,4,402,406],[1014,4,3,406,409],[1015,2,2,409,411],[1016,4,4,411,415],[1017,8,6,415,421]]],[43,67,65,421,486,[[1018,1,1,421,422],[1019,5,5,422,427],[1021,4,3,427,430],[1022,1,1,430,431],[1023,1,1,431,432],[1024,3,3,432,435],[1025,4,3,435,438],[1026,6,6,438,444],[1027,7,7,444,451],[1029,3,3,451,454],[1030,1,1,454,455],[1032,1,1,455,456],[1033,1,1,456,457],[1034,1,1,457,458],[1035,2,2,458,460],[1036,5,5,460,465],[1037,2,2,465,467],[1038,5,5,467,472],[1039,2,2,472,474],[1040,5,5,474,479],[1042,4,4,479,483],[1043,1,1,483,484],[1045,2,2,484,486]]],[44,39,35,486,521,[[1046,5,5,486,491],[1047,3,3,491,494],[1048,8,6,494,500],[1049,3,3,500,503],[1050,1,1,503,504],[1052,2,2,504,506],[1053,3,3,506,509],[1054,1,1,509,510],[1055,3,3,510,513],[1056,3,2,513,515],[1058,3,2,515,517],[1059,3,3,517,520],[1061,1,1,520,521]]],[45,74,64,521,585,[[1062,4,2,521,523],[1063,1,1,523,524],[1064,8,8,524,532],[1065,3,3,532,535],[1067,8,8,535,543],[1068,11,8,543,551],[1070,4,3,551,554],[1071,5,3,554,557],[1072,10,10,557,567],[1073,7,6,567,573],[1075,7,7,573,580],[1076,5,4,580,584],[1077,1,1,584,585]]],[46,14,13,585,598,[[1078,1,1,585,586],[1079,2,2,586,588],[1080,1,1,588,589],[1081,3,2,589,591],[1084,1,1,591,592],[1086,2,2,592,594],[1087,1,1,594,595],[1088,1,1,595,596],[1089,1,1,596,597],[1090,1,1,597,598]]],[47,18,14,598,612,[[1091,2,2,598,600],[1093,4,3,600,603],[1094,7,5,603,608],[1095,5,4,608,612]]],[48,22,20,612,632,[[1097,3,3,612,615],[1098,1,1,615,616],[1099,1,1,616,617],[1100,4,4,617,621],[1101,8,7,621,628],[1102,5,4,628,632]]],[49,5,5,632,637,[[1103,3,3,632,635],[1104,1,1,635,636],[1106,1,1,636,637]]],[50,17,16,637,653,[[1107,7,6,637,643],[1108,4,4,643,647],[1109,5,5,647,652],[1110,1,1,652,653]]],[51,2,2,653,655,[[1112,1,1,653,654],[1114,1,1,654,655]]],[52,5,5,655,660,[[1116,1,1,655,656],[1117,2,2,656,658],[1118,2,2,658,660]]],[53,12,11,660,671,[[1119,2,2,660,662],[1121,2,2,662,664],[1122,3,2,664,666],[1123,3,3,666,669],[1124,2,2,669,671]]],[54,7,6,671,677,[[1125,3,3,671,674],[1126,2,2,674,676],[1128,2,1,676,677]]],[55,3,3,677,680,[[1129,2,2,677,679],[1131,1,1,679,680]]],[57,11,11,680,691,[[1134,1,1,680,681],[1136,1,1,681,682],[1137,2,2,682,684],[1139,1,1,684,685],[1140,1,1,685,686],[1141,2,2,686,688],[1143,2,2,688,690],[1144,1,1,690,691]]],[58,17,16,691,707,[[1146,4,4,691,695],[1147,5,4,695,699],[1148,2,2,699,701],[1149,5,5,701,706],[1150,1,1,706,707]]],[59,6,6,707,713,[[1151,2,2,707,709],[1152,1,1,709,710],[1153,2,2,710,712],[1154,1,1,712,713]]],[60,5,5,713,718,[[1156,3,3,713,716],[1158,2,2,716,718]]],[61,74,56,718,774,[[1159,7,5,718,723],[1160,21,15,723,738],[1161,13,11,738,749],[1162,16,14,749,763],[1163,17,11,763,774]]],[62,3,2,774,776,[[1164,3,2,774,776]]],[63,2,2,776,778,[[1165,2,2,776,778]]],[65,29,22,778,800,[[1167,1,1,778,779],[1168,1,1,779,780],[1171,4,3,780,783],[1179,3,2,783,785],[1180,1,1,785,786],[1182,1,1,786,787],[1183,9,5,787,792],[1185,1,1,792,793],[1186,2,2,793,795],[1187,5,4,795,799],[1188,1,1,799,800]]]],[23164,23167,23171,23195,23203,23207,23209,23237,23244,23268,23269,23271,23282,23295,23303,23304,23305,23307,23325,23328,23372,23384,23392,23394,23419,23427,23428,23441,23443,23454,23455,23465,23469,23470,23473,23475,23489,23495,23496,23497,23512,23519,23537,23539,23558,23559,23560,23561,23562,23570,23571,23572,23576,23577,23578,23583,23584,23586,23591,23594,23596,23599,23612,23623,23653,23659,23692,23704,23705,23728,23731,23734,23735,23736,23741,23772,23776,23786,23788,23793,23807,23815,23836,23837,23864,23868,23880,23904,23910,23914,23917,23926,23927,23928,23934,23935,23936,23963,23983,23990,24002,24072,24080,24082,24092,24093,24102,24120,24122,24135,24162,24166,24171,24191,24201,24242,24261,24269,24279,24288,24317,24321,24323,24345,24349,24354,24364,24378,24405,24410,24411,24422,24423,24442,24462,24467,24478,24490,24543,24545,24548,24559,24577,24578,24580,24581,24583,24585,24602,24612,24613,24615,24617,24628,24635,24680,24684,24700,24701,24702,24704,24705,24706,24708,24710,24745,24746,24750,24768,24776,24778,24788,24789,24798,24823,24879,24929,24954,24956,24984,25085,25087,25128,25130,25141,25146,25151,25166,25178,25179,25180,25181,25182,25186,25189,25193,25194,25195,25199,25218,25222,25223,25234,25244,25256,25262,25270,25271,25275,25310,25334,25336,25339,25351,25363,25370,25385,25392,25405,25426,25428,25434,25439,25440,25446,25460,25461,25465,25474,25482,25483,25493,25501,25536,25537,25539,25570,25575,25584,25588,25619,25630,25635,25637,25652,25672,25704,25713,25715,25717,25734,25740,25777,25781,25785,25793,25796,25817,25823,25856,25857,25875,25883,25902,25917,25923,25928,25941,25942,25950,25970,25973,25997,26012,26020,26063,26071,26074,26077,26078,26091,26104,26112,26126,26128,26139,26141,26149,26151,26153,26166,26167,26174,26176,26178,26179,26185,26190,26191,26193,26198,26212,26220,26222,26223,26225,26235,26237,26240,26241,26242,26255,26266,26271,26281,26286,26288,26290,26296,26297,26299,26302,26307,26308,26312,26315,26317,26320,26321,26327,26334,26335,26339,26340,26344,26345,26346,26350,26353,26354,26355,26356,26364,26368,26369,26394,26395,26397,26398,26400,26407,26410,26415,26420,26425,26431,26435,26444,26448,26449,26452,26456,26457,26459,26460,26464,26465,26469,26470,26476,26477,26482,26483,26494,26497,26502,26510,26515,26527,26533,26562,26580,26589,26594,26611,26614,26615,26630,26640,26646,26655,26656,26689,26692,26696,26700,26711,26719,26741,26743,26744,26758,26762,26766,26769,26776,26821,26823,26824,26860,26865,26881,26882,26897,26898,26902,26905,26910,26918,26922,26923,26930,26964,26965,26974,26978,26988,27033,27034,27041,27098,27103,27149,27153,27154,27186,27197,27202,27231,27236,27237,27238,27242,27254,27263,27265,27287,27293,27294,27295,27301,27340,27346,27352,27377,27460,27495,27526,27567,27572,27587,27610,27619,27620,27621,27636,27661,27675,27686,27688,27692,27697,27730,27733,27739,27740,27753,27761,27768,27801,27807,27810,27812,27849,27903,27921,27939,27942,27946,27949,27955,27964,27973,27990,27999,28001,28002,28003,28009,28013,28037,28038,28043,28061,28094,28105,28125,28140,28150,28157,28189,28196,28200,28215,28232,28267,28270,28284,28297,28303,28341,28381,28388,28408,28415,28417,28421,28423,28427,28429,28431,28432,28436,28437,28450,28472,28474,28482,28483,28484,28485,28486,28487,28495,28496,28501,28506,28509,28516,28526,28527,28543,28556,28558,28583,28586,28595,28603,28605,28607,28608,28613,28614,28615,28620,28624,28625,28640,28646,28648,28649,28650,28656,28688,28692,28693,28703,28704,28711,28713,28730,28731,28762,28776,28791,28812,28826,28827,28858,28862,28863,28931,28957,28968,28989,28999,29035,29048,29064,29068,29114,29118,29122,29132,29133,29155,29156,29157,29165,29181,29184,29185,29220,29224,29229,29243,29264,29281,29282,29287,29293,29309,29314,29316,29317,29322,29327,29336,29338,29339,29346,29349,29368,29369,29389,29404,29450,29471,29472,29480,29482,29483,29492,29504,29511,29516,29517,29518,29522,29531,29537,29542,29551,29583,29606,29652,29665,29670,29681,29695,29701,29716,29746,29747,29755,29757,29767,29771,29788,29794,29798,29815,29821,29824,29844,29847,29881,29898,29905,29931,29983,30027,30043,30044,30079,30098,30110,30120,30173,30178,30219,30279,30283,30289,30293,30310,30312,30313,30319,30324,30336,30341,30349,30351,30353,30354,30365,30380,30399,30414,30428,30446,30457,30488,30493,30496,30526,30538,30545,30547,30548,30549,30550,30552,30554,30557,30558,30559,30560,30561,30565,30566,30568,30571,30572,30575,30577,30579,30581,30582,30583,30584,30586,30587,30589,30590,30594,30599,30602,30604,30605,30606,30607,30609,30610,30611,30613,30615,30618,30619,30620,30621,30623,30625,30627,30628,30629,30630,30633,30635,30638,30640,30641,30644,30651,30652,30669,30670,30701,30724,30781,30791,30792,30918,30926,30938,30975,30983,30985,30986,30989,30993,31025,31040,31052,31054,31065,31069,31075,31090]]],["+",[23,23,[[39,3,3,0,3,[[941,1,1,0,1],[946,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[962,1,1,3,4],[965,1,1,4,5]]],[41,2,2,5,7,[[978,1,1,5,6],[995,1,1,6,7]]],[43,5,5,7,12,[[1029,1,1,7,8],[1030,1,1,8,9],[1036,1,1,9,10],[1042,1,1,10,11],[1045,1,1,11,12]]],[45,1,1,12,13,[[1068,1,1,12,13]]],[46,1,1,13,14,[[1086,1,1,13,14]]],[48,1,1,14,15,[[1102,1,1,14,15]]],[50,3,3,15,18,[[1107,1,1,15,16],[1108,1,1,16,17],[1109,1,1,17,18]]],[53,1,1,18,19,[[1122,1,1,18,19]]],[57,1,1,19,20,[[1141,1,1,19,20]]],[58,1,1,20,21,[[1146,1,1,20,21]]],[59,1,1,21,22,[[1151,1,1,21,22]]],[61,1,1,22,23,[[1160,1,1,22,23]]]],[23560,23734,24191,24462,24559,25189,25942,27340,27377,27621,27801,27921,28516,28968,29349,29471,29517,29518,29755,30110,30279,30380,30572]]],["IS",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24166,25973]]],["Is",[12,12,[[39,4,4,0,4,[[934,1,1,0,1],[940,1,1,1,2],[941,1,1,2,3],[948,1,1,3,4]]],[40,1,1,4,5,[[962,1,1,4,5]]],[41,1,1,5,6,[[976,1,1,5,6]]],[42,5,5,6,11,[[1002,1,1,6,7],[1003,1,1,7,8],[1005,2,2,8,10],[1006,1,1,10,11]]],[43,1,1,11,12,[[1026,1,1,11,12]]]],[23307,23512,23594,23807,24410,25085,26299,26353,26448,26459,26515,27237]]],["and",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25734]]],["are",[51,49,[[39,3,3,0,3,[[938,1,1,0,1],[943,1,1,1,2],[947,1,1,2,3]]],[40,2,2,3,5,[[963,1,1,3,4],[966,1,1,4,5]]],[41,4,4,5,9,[[983,2,2,5,7],[986,1,1,7,8],[990,1,1,8,9]]],[42,13,12,9,21,[[999,1,1,9,10],[1000,1,1,10,11],[1002,3,2,11,13],[1003,1,1,13,14],[1006,2,2,14,16],[1012,1,1,16,17],[1013,2,2,17,19],[1016,1,1,19,20],[1017,1,1,20,21]]],[43,2,2,21,23,[[1032,1,1,21,22],[1038,1,1,22,23]]],[45,9,9,23,32,[[1063,1,1,23,24],[1064,2,2,24,26],[1067,2,2,26,28],[1068,1,1,28,29],[1073,2,2,29,31],[1075,1,1,31,32]]],[47,3,2,32,34,[[1094,1,1,32,33],[1095,2,1,33,34]]],[49,1,1,34,35,[[1106,1,1,34,35]]],[50,2,2,35,37,[[1108,2,2,35,37]]],[53,1,1,37,38,[[1123,1,1,37,38]]],[54,2,2,38,40,[[1125,1,1,38,39],[1126,1,1,39,40]]],[55,1,1,40,41,[[1131,1,1,40,41]]],[60,1,1,41,42,[[1158,1,1,41,42]]],[61,2,2,42,44,[[1161,1,1,42,43],[1162,1,1,43,44]]],[65,5,5,44,49,[[1167,1,1,44,45],[1171,1,1,45,46],[1187,3,3,46,49]]]],[23419,23653,23788,24478,24615,25426,25446,25570,25715,26141,26191,26266,26320,26335,26497,26502,26741,26766,26769,26897,26923,27460,27688,28408,28431,28432,28482,28487,28501,28646,28656,28688,29155,29181,29450,29511,29516,29788,29824,29847,29931,30538,30589,30604,30701,30792,31065,31069,31075]]],["be",[23,23,[[39,4,4,0,4,[[934,1,1,0,1],[947,1,1,1,2],[954,1,1,2,3],[955,1,1,3,4]]],[40,2,2,4,6,[[960,1,1,4,5],[963,1,1,5,6]]],[41,4,4,6,10,[[983,1,1,6,7],[986,1,1,7,8],[992,1,1,8,9],[995,1,1,9,10]]],[42,3,3,10,13,[[1003,1,1,10,11],[1005,1,1,11,12],[1016,1,1,12,13]]],[43,5,5,13,18,[[1021,1,1,13,14],[1022,1,1,14,15],[1035,1,1,15,16],[1036,1,1,16,17],[1042,1,1,17,18]]],[45,1,1,18,19,[[1076,1,1,18,19]]],[46,1,1,19,20,[[1081,1,1,19,20]]],[55,1,1,20,21,[[1129,1,1,20,21]]],[58,1,1,21,22,[[1146,1,1,21,22]]],[59,1,1,22,23,[[1154,1,1,22,23]]]],[23305,23772,24093,24171,24354,24467,25440,25584,25785,25970,26345,26465,26882,27041,27098,27572,27587,27807,28731,28862,29898,30289,30457]]],["been",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]]],[26012,26562]]],["belongeth",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30044]]],["cometh",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23271]]],["consisteth",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25474]]],["had",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27697]]],["hast",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27197]]],["have",[9,9,[[41,4,4,0,4,[[978,3,3,0,3],[984,1,1,3,4]]],[42,1,1,4,5,[[1014,1,1,4,5]]],[43,2,2,5,7,[[1035,1,1,5,6],[1036,1,1,6,7]]],[44,1,1,7,8,[[1054,1,1,7,8]]],[45,1,1,8,9,[[1070,1,1,8,9]]]],[25178,25179,25180,25483,26824,27567,27610,28157,28556]]],["he",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25823]]],["is",[719,651,[[39,100,96,0,96,[[929,2,2,0,2],[930,1,1,2,3],[931,3,3,3,6],[933,6,5,6,11],[934,3,3,11,14],[935,2,2,14,16],[936,1,1,16,17],[937,2,2,17,19],[938,7,6,19,25],[939,6,6,25,31],[940,5,5,31,36],[941,17,15,36,51],[942,3,3,51,54],[943,1,1,54,55],[945,2,2,55,57],[946,5,5,57,62],[947,3,3,62,65],[948,2,2,65,67],[949,4,4,67,71],[950,5,5,71,76],[951,6,6,76,82],[952,4,4,82,86],[954,7,7,86,93],[955,2,2,93,95],[956,1,1,95,96]]],[40,54,51,96,147,[[957,1,1,96,97],[958,3,3,97,100],[959,3,3,100,103],[960,4,4,103,107],[961,1,1,107,108],[962,5,4,108,112],[963,2,2,112,114],[965,9,8,114,122],[966,5,5,122,127],[968,11,10,127,137],[969,3,3,137,140],[970,6,6,140,146],[972,1,1,146,147]]],[41,84,77,147,224,[[973,3,3,147,150],[974,1,1,150,151],[976,1,1,151,152],[977,4,4,152,156],[978,8,8,156,164],[979,6,5,164,169],[980,7,5,169,174],[981,7,6,174,180],[982,5,4,180,184],[983,4,3,184,187],[984,6,6,187,193],[985,3,3,193,196],[986,2,2,196,198],[987,1,1,198,199],[988,4,3,199,202],[989,2,2,202,204],[990,3,3,204,207],[991,2,2,207,209],[992,4,4,209,213],[993,2,2,213,215],[994,6,6,215,221],[995,1,1,221,222],[996,2,2,222,224]]],[42,129,115,224,339,[[997,6,6,224,230],[999,9,6,230,236],[1000,10,10,236,246],[1001,10,9,246,255],[1002,16,15,255,270],[1003,14,12,270,282],[1004,15,12,282,294],[1005,13,11,294,305],[1006,4,4,305,309],[1007,2,2,309,311],[1008,5,5,311,316],[1009,4,4,316,320],[1010,3,3,320,323],[1011,3,3,323,326],[1012,3,3,326,329],[1013,2,2,329,331],[1014,3,2,331,333],[1015,2,2,333,335],[1016,1,1,335,336],[1017,4,3,336,339]]],[43,39,38,339,377,[[1018,1,1,339,340],[1019,5,5,340,345],[1021,3,2,345,347],[1023,1,1,347,348],[1024,3,3,348,351],[1025,3,3,351,354],[1026,3,3,354,357],[1027,7,7,357,364],[1029,1,1,364,365],[1033,1,1,365,366],[1034,1,1,366,367],[1036,1,1,367,368],[1037,2,2,368,370],[1038,2,2,370,372],[1039,1,1,372,373],[1040,1,1,373,374],[1042,2,2,374,376],[1045,1,1,376,377]]],[44,36,33,377,410,[[1046,5,5,377,382],[1047,3,3,382,385],[1048,7,6,385,391],[1049,2,2,391,393],[1050,1,1,393,394],[1052,2,2,394,396],[1053,3,3,396,399],[1055,3,3,399,402],[1056,3,2,402,404],[1058,3,2,404,406],[1059,3,3,406,409],[1061,1,1,409,410]]],[45,61,54,410,464,[[1062,4,2,410,412],[1064,6,6,412,418],[1065,3,3,418,421],[1067,6,6,421,427],[1068,8,6,427,433],[1070,3,3,433,436],[1071,5,3,436,439],[1072,10,10,439,449],[1073,5,5,449,454],[1075,6,6,454,460],[1076,4,3,460,463],[1077,1,1,463,464]]],[46,12,12,464,476,[[1078,1,1,464,465],[1079,2,2,465,467],[1080,1,1,467,468],[1081,2,2,468,470],[1084,1,1,470,471],[1086,1,1,471,472],[1087,1,1,472,473],[1088,1,1,473,474],[1089,1,1,474,475],[1090,1,1,475,476]]],[47,15,13,476,489,[[1091,2,2,476,478],[1093,4,3,478,481],[1094,6,5,481,486],[1095,3,3,486,489]]],[48,21,19,489,508,[[1097,3,3,489,492],[1098,1,1,492,493],[1099,1,1,493,494],[1100,4,4,494,498],[1101,8,7,498,505],[1102,4,3,505,508]]],[49,4,4,508,512,[[1103,3,3,508,511],[1104,1,1,511,512]]],[50,12,11,512,523,[[1107,6,5,512,517],[1108,1,1,517,518],[1109,4,4,518,522],[1110,1,1,522,523]]],[51,2,2,523,525,[[1112,1,1,523,524],[1114,1,1,524,525]]],[52,5,5,525,530,[[1116,1,1,525,526],[1117,2,2,526,528],[1118,2,2,528,530]]],[53,10,10,530,540,[[1119,2,2,530,532],[1121,2,2,532,534],[1122,2,2,534,536],[1123,2,2,536,538],[1124,2,2,538,540]]],[54,5,4,540,544,[[1125,2,2,540,542],[1126,1,1,542,543],[1128,2,1,543,544]]],[55,1,1,544,545,[[1129,1,1,544,545]]],[57,9,9,545,554,[[1134,1,1,545,546],[1136,1,1,546,547],[1137,1,1,547,548],[1139,1,1,548,549],[1140,1,1,549,550],[1141,1,1,550,551],[1143,2,2,551,553],[1144,1,1,553,554]]],[58,15,14,554,568,[[1146,2,2,554,556],[1147,5,4,556,560],[1148,2,2,560,562],[1149,5,5,562,567],[1150,1,1,567,568]]],[59,4,4,568,572,[[1151,1,1,568,569],[1152,1,1,569,570],[1153,2,2,570,572]]],[60,3,3,572,575,[[1156,2,2,572,574],[1158,1,1,574,575]]],[61,71,55,575,630,[[1159,7,5,575,580],[1160,20,15,580,595],[1161,12,11,595,606],[1162,15,13,606,619],[1163,17,11,619,630]]],[62,3,2,630,632,[[1164,3,2,630,632]]],[63,2,2,632,634,[[1165,2,2,632,634]]],[65,22,17,634,651,[[1168,1,1,634,635],[1171,3,3,635,638],[1179,3,2,638,640],[1180,1,1,640,641],[1183,9,5,641,646],[1185,1,1,646,647],[1186,2,2,647,649],[1187,1,1,649,650],[1188,1,1,650,651]]]],[23164,23167,23171,23195,23203,23209,23237,23244,23268,23269,23282,23295,23303,23304,23325,23328,23372,23384,23394,23427,23428,23441,23443,23454,23455,23465,23469,23470,23473,23475,23489,23495,23497,23519,23537,23539,23558,23559,23561,23562,23570,23571,23572,23576,23577,23578,23583,23584,23586,23591,23596,23599,23612,23623,23659,23704,23705,23728,23731,23735,23736,23741,23776,23786,23788,23793,23815,23836,23837,23864,23868,23880,23904,23910,23914,23917,23926,23927,23928,23934,23935,23936,23963,23983,23990,24002,24072,24080,24082,24092,24102,24120,24122,24135,24162,24201,24242,24269,24279,24288,24317,24321,24323,24345,24349,24354,24364,24405,24411,24422,24423,24442,24478,24490,24543,24545,24577,24578,24580,24581,24583,24585,24602,24612,24613,24617,24628,24680,24684,24700,24701,24702,24704,24705,24706,24708,24710,24745,24746,24750,24768,24776,24778,24788,24798,24823,24879,24929,24954,24956,24984,25087,25128,25130,25141,25146,25151,25166,25181,25182,25186,25193,25194,25195,25218,25222,25223,25234,25244,25256,25262,25270,25271,25275,25310,25334,25336,25339,25351,25363,25370,25385,25392,25405,25428,25434,25439,25460,25461,25465,25482,25493,25501,25536,25537,25539,25575,25588,25619,25630,25635,25637,25652,25672,25704,25713,25717,25740,25777,25781,25793,25796,25817,25856,25857,25875,25883,25902,25917,25923,25928,25950,25997,26020,26063,26071,26074,26077,26078,26091,26126,26128,26139,26149,26151,26153,26166,26167,26174,26176,26178,26179,26185,26190,26193,26198,26212,26220,26222,26235,26237,26240,26241,26242,26255,26266,26271,26286,26288,26290,26296,26297,26302,26307,26308,26312,26315,26317,26320,26327,26334,26339,26340,26344,26346,26350,26354,26355,26356,26364,26368,26369,26394,26395,26397,26398,26400,26407,26410,26415,26420,26425,26431,26435,26444,26449,26452,26456,26457,26460,26464,26469,26470,26476,26477,26482,26483,26494,26510,26527,26533,26594,26611,26614,26615,26630,26640,26646,26655,26656,26689,26692,26696,26700,26711,26719,26743,26744,26758,26762,26776,26821,26823,26860,26865,26898,26905,26918,26922,26930,26964,26965,26974,26978,26988,27033,27034,27103,27149,27153,27154,27186,27197,27202,27231,27236,27238,27263,27265,27287,27293,27294,27295,27301,27352,27495,27526,27620,27636,27661,27686,27692,27730,27753,27810,27812,27903,27939,27942,27946,27949,27955,27964,27973,27990,27999,28001,28002,28003,28009,28013,28037,28038,28061,28094,28105,28125,28140,28150,28189,28196,28200,28215,28232,28267,28270,28284,28297,28303,28341,28381,28388,28415,28417,28421,28423,28427,28429,28436,28437,28450,28472,28474,28483,28484,28485,28486,28495,28496,28506,28509,28526,28527,28543,28556,28558,28583,28586,28595,28603,28605,28607,28608,28613,28614,28615,28620,28624,28625,28640,28646,28648,28649,28650,28692,28693,28703,28704,28711,28713,28730,28762,28776,28791,28812,28826,28827,28858,28862,28863,28931,28957,28989,28999,29035,29048,29064,29068,29114,29118,29122,29132,29133,29155,29156,29157,29165,29184,29185,29220,29224,29229,29243,29264,29281,29282,29287,29293,29309,29314,29316,29317,29322,29327,29336,29338,29339,29346,29368,29369,29389,29404,29472,29480,29482,29483,29492,29504,29522,29531,29537,29542,29551,29583,29606,29652,29665,29670,29681,29695,29701,29716,29746,29747,29755,29757,29767,29771,29794,29798,29815,29821,29844,29881,29905,29983,30027,30043,30079,30098,30120,30173,30178,30219,30283,30293,30310,30312,30313,30319,30324,30336,30341,30349,30351,30353,30354,30365,30399,30414,30428,30446,30488,30496,30526,30545,30547,30548,30549,30550,30552,30554,30557,30558,30559,30560,30561,30565,30566,30568,30571,30572,30575,30577,30579,30581,30582,30583,30584,30586,30587,30589,30590,30594,30599,30602,30605,30606,30607,30609,30610,30611,30613,30615,30618,30619,30620,30621,30623,30625,30627,30628,30629,30630,30633,30635,30638,30640,30641,30644,30651,30652,30669,30670,30724,30781,30791,30792,30918,30926,30938,30983,30985,30986,30989,30993,31025,31040,31052,31069,31090]]],["it",[1,1,[[39,1,1,0,1,[[931,1,1,0,1]]]],[23207]]],["mean",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24548]]],["meaneth",[2,2,[[39,2,2,0,2,[[937,1,1,0,1],[940,1,1,1,2]]]],[23392,23496]]],["must",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30493]]],["no",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28003]]],["owneth",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27675]]],["should",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26321]]],["was",[28,28,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,3,3,1,4,[[958,1,1,1,2],[961,1,1,2,3],[966,1,1,3,4]]],[41,2,2,4,6,[[979,1,1,4,5],[991,1,1,5,6]]],[42,10,10,6,16,[[998,2,2,6,8],[1001,2,2,8,10],[1002,1,1,10,11],[1008,1,1,11,12],[1016,1,1,12,13],[1017,3,3,13,16]]],[43,9,9,16,25,[[1026,2,2,16,18],[1029,1,1,18,19],[1036,1,1,19,20],[1039,1,1,20,21],[1040,3,3,21,24],[1043,1,1,24,25]]],[44,1,1,25,26,[[1049,1,1,25,26]]],[65,2,2,26,28,[[1182,1,1,26,27],[1187,1,1,27,28]]]],[23692,24261,24378,24635,25199,25734,26104,26112,26223,26225,26281,26589,26881,26902,26905,26910,27242,27254,27346,27619,27733,27739,27761,27768,27849,28043,30975,31054]]],["were",[5,5,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]],[42,1,1,2,3,[[1007,1,1,2,3]]],[43,1,1,3,4,[[1040,1,1,3,4]]],[45,1,1,4,5,[[1068,1,1,4,5]]]],[24789,25941,26580,27740,28501]]]]},{"k":"G2077","v":[["*",[16,16,[[39,4,4,0,4,[[933,1,1,0,1],[946,1,1,1,2],[948,2,2,2,4]]],[41,1,1,4,5,[[984,1,1,4,5]]],[43,5,5,5,10,[[1018,1,1,5,6],[1019,1,1,6,7],[1021,1,1,7,8],[1030,1,1,8,9],[1045,1,1,9,10]]],[46,1,1,10,11,[[1089,1,1,10,11]]],[47,2,2,11,13,[[1091,2,2,11,13]]],[53,1,1,13,14,[[1121,1,1,13,14]]],[58,1,1,14,15,[[1146,1,1,14,15]]],[59,1,1,15,16,[[1153,1,1,15,16]]]],[23271,23744,23818,23819,25494,26943,26963,27032,27400,27927,29038,29065,29066,29743,30285,30427]]],["Be",[3,3,[[43,3,3,0,3,[[1021,1,1,0,1],[1030,1,1,1,2],[1045,1,1,2,3]]]],[27032,27400,27927]]],["be",[12,12,[[39,4,4,0,4,[[933,1,1,0,1],[946,1,1,1,2],[948,2,2,2,4]]],[41,1,1,4,5,[[984,1,1,4,5]]],[43,1,1,5,6,[[1019,1,1,5,6]]],[46,1,1,6,7,[[1089,1,1,6,7]]],[47,2,2,7,9,[[1091,2,2,7,9]]],[53,1,1,9,10,[[1121,1,1,9,10]]],[58,1,1,10,11,[[1146,1,1,10,11]]],[59,1,1,11,12,[[1153,1,1,11,12]]]],[23271,23744,23818,23819,25494,26963,29038,29065,29066,29743,30285,30427]]],["man",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26943]]]]},{"k":"G2078","v":[["*",[54,49,[[39,10,8,0,8,[[933,1,1,0,1],[940,1,1,1,2],[947,2,1,2,3],[948,5,4,3,7],[955,1,1,7,8]]],[40,5,4,8,12,[[965,1,1,8,9],[966,2,1,9,10],[968,2,2,10,12]]],[41,6,5,12,17,[[983,1,1,12,13],[984,1,1,13,14],[985,2,1,14,15],[986,2,2,15,17]]],[42,8,8,17,25,[[1002,4,4,17,21],[1003,1,1,21,22],[1004,1,1,22,23],[1007,1,1,23,24],[1008,1,1,24,25]]],[43,3,3,25,28,[[1018,1,1,25,26],[1019,1,1,26,27],[1030,1,1,27,28]]],[45,5,5,28,33,[[1065,1,1,28,29],[1076,4,4,29,33]]],[54,1,1,33,34,[[1127,1,1,33,34]]],[57,1,1,34,35,[[1133,1,1,34,35]]],[58,1,1,35,36,[[1150,1,1,35,36]]],[59,2,2,36,38,[[1151,2,2,36,38]]],[60,2,2,38,40,[[1157,1,1,38,39],[1158,1,1,39,40]]],[61,2,1,40,41,[[1160,2,1,40,41]]],[64,1,1,41,42,[[1166,1,1,41,42]]],[65,7,7,42,49,[[1167,2,2,42,44],[1168,2,2,44,46],[1181,1,1,46,47],[1187,1,1,47,48],[1188,1,1,48,49]]]],[23260,23534,23792,23800,23804,23806,23808,24193,24573,24619,24679,24695,25431,25518,25548,25562,25563,26296,26297,26301,26311,26365,26390,26547,26628,26931,26966,27409,28442,28726,28744,28763,28770,29854,29965,30357,30379,30394,30520,30525,30568,30690,30708,30714,30725,30736,30947,31062,31093]]],["end",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30520]]],["ends",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27409]]],["last",[48,43,[[39,9,7,0,7,[[940,1,1,0,1],[947,2,1,1,2],[948,5,4,2,6],[955,1,1,6,7]]],[40,5,4,7,11,[[965,1,1,7,8],[966,2,1,8,9],[968,2,2,9,11]]],[41,4,3,11,14,[[983,1,1,11,12],[984,1,1,12,13],[985,2,1,13,14]]],[42,8,8,14,22,[[1002,4,4,14,18],[1003,1,1,18,19],[1004,1,1,19,20],[1007,1,1,20,21],[1008,1,1,21,22]]],[43,1,1,22,23,[[1019,1,1,22,23]]],[45,5,5,23,28,[[1065,1,1,23,24],[1076,4,4,24,28]]],[54,1,1,28,29,[[1127,1,1,28,29]]],[57,1,1,29,30,[[1133,1,1,29,30]]],[58,1,1,30,31,[[1150,1,1,30,31]]],[59,2,2,31,33,[[1151,2,2,31,33]]],[60,1,1,33,34,[[1158,1,1,33,34]]],[61,2,1,34,35,[[1160,2,1,34,35]]],[64,1,1,35,36,[[1166,1,1,35,36]]],[65,7,7,36,43,[[1167,2,2,36,38],[1168,2,2,38,40],[1181,1,1,40,41],[1187,1,1,41,42],[1188,1,1,42,43]]]],[23534,23792,23800,23804,23806,23808,24193,24573,24619,24679,24695,25431,25518,25548,26296,26297,26301,26311,26365,26390,26547,26628,26966,28442,28726,28744,28763,28770,29854,29965,30357,30379,30394,30525,30568,30690,30708,30714,30725,30736,30947,31062,31093]]],["lowest",[2,2,[[41,2,2,0,2,[[986,2,2,0,2]]]],[25562,25563]]],["part",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26931]]],["uttermost",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23260]]]]},{"k":"G2079","v":[["+",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24387]]]]},{"k":"G2080","v":[["*",[7,7,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,1,1,2,3,[[1016,1,1,2,3]]],[43,1,1,3,4,[[1022,1,1,3,4]]],[44,1,1,4,5,[[1052,1,1,4,5]]],[45,1,1,5,6,[[1066,1,1,5,6]]],[48,1,1,6,7,[[1099,1,1,6,7]]]],[24112,24842,26893,27082,28113,28466,29267]]],["in",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24112]]],["inner",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29267]]],["into",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24842]]],["inward",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28113]]],["within",[3,3,[[42,1,1,0,1,[[1016,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]],[45,1,1,2,3,[[1066,1,1,2,3]]]],[26893,27082,28466]]]]},{"k":"G2081","v":[["*",[13,13,[[39,4,4,0,4,[[935,1,1,0,1],[951,3,3,1,4]]],[40,2,2,4,6,[[963,2,2,4,6]]],[41,3,3,6,9,[[983,3,3,6,9]]],[46,2,2,9,11,[[1081,1,1,9,10],[1084,1,1,10,11]]],[65,2,2,11,13,[[1170,1,1,11,12],[1171,1,1,12,13]]]],[23331,23943,23945,23946,24484,24486,25412,25444,25445,28875,28921,30776,30780]]],["+",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23945]]],["inward",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28875]]],["inwardly",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23331]]],["part",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25444]]],["within",[9,9,[[39,2,2,0,2,[[951,2,2,0,2]]],[40,2,2,2,4,[[963,2,2,2,4]]],[41,2,2,4,6,[[983,2,2,4,6]]],[46,1,1,6,7,[[1084,1,1,6,7]]],[65,2,2,7,9,[[1170,1,1,7,8],[1171,1,1,8,9]]]],[23943,23946,24484,24486,25412,25445,28921,30776,30780]]]]},{"k":"G2082","v":[["*",[2,2,[[43,1,1,0,1,[[1033,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[27507,30063]]],["inner",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27507]]],["within",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30063]]]]},{"k":"G2083","v":[["*",[4,4,[[39,4,4,0,4,[[939,1,1,0,1],[948,1,1,1,2],[950,1,1,2,3],[954,1,1,3,4]]]],[23475,23805,23884,24104]]],["Friend",[3,3,[[39,3,3,0,3,[[948,1,1,0,1],[950,1,1,1,2],[954,1,1,2,3]]]],[23805,23884,24104]]],["fellows",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23475]]]]},{"k":"G2084","v":[["tongues",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28699]]]]},{"k":"G2085","v":[["*",[2,2,[[53,2,2,0,2,[[1119,1,1,0,1],[1124,1,1,1,2]]]],[29699,29791]]],["+",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29699]]],["otherwise",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29791]]]]},{"k":"G2086","v":[["together",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28912]]]]},{"k":"G2087","v":[["*",[99,94,[[39,7,6,0,6,[[934,2,1,0,1],[936,1,1,1,2],[939,1,1,2,3],[940,1,1,3,4],[943,1,1,4,5],[944,1,1,5,6]]],[40,1,1,6,7,[[972,1,1,6,7]]],[41,33,32,7,39,[[975,1,1,7,8],[976,1,1,8,9],[977,1,1,9,10],[978,1,1,10,11],[979,1,1,11,12],[980,4,4,12,16],[981,4,4,16,20],[982,1,1,20,21],[983,2,2,21,23],[986,3,3,23,26],[988,4,3,26,29],[989,3,3,29,32],[990,1,1,32,33],[991,1,1,33,34],[992,1,1,34,35],[994,2,2,35,37],[995,2,2,37,39]]],[42,1,1,39,40,[[1015,1,1,39,40]]],[43,18,18,40,58,[[1018,1,1,40,41],[1019,3,3,41,44],[1021,1,1,44,45],[1024,1,1,45,46],[1025,1,1,46,47],[1029,1,1,47,48],[1030,1,1,48,49],[1032,1,1,49,50],[1034,3,3,50,53],[1036,1,1,53,54],[1037,1,1,54,55],[1040,1,1,55,56],[1044,2,2,56,58]]],[44,9,8,58,66,[[1047,2,2,58,60],[1052,4,3,60,63],[1053,1,1,63,64],[1058,2,2,64,66]]],[45,12,11,66,77,[[1064,1,1,66,67],[1065,1,1,67,68],[1067,1,1,68,69],[1069,1,1,69,70],[1071,2,2,70,72],[1073,2,2,72,74],[1075,2,2,74,76],[1076,2,1,76,77]]],[46,3,2,77,79,[[1085,1,1,77,78],[1088,2,1,78,79]]],[47,3,3,79,82,[[1091,2,2,79,81],[1096,1,1,81,82]]],[48,1,1,82,83,[[1099,1,1,82,83]]],[49,1,1,83,84,[[1104,1,1,83,84]]],[53,1,1,84,85,[[1119,1,1,84,85]]],[54,1,1,85,86,[[1126,1,1,85,86]]],[57,5,5,86,91,[[1137,1,1,86,87],[1139,3,3,87,90],[1143,1,1,90,91]]],[58,2,2,91,93,[[1147,1,1,91,92],[1149,1,1,92,93]]],[64,1,1,93,94,[[1166,1,1,93,94]]]],[23306,23366,23462,23534,23663,23686,24885,25043,25106,25114,25152,25236,25248,25251,25252,25253,25330,25357,25360,25362,25364,25421,25431,25572,25573,25584,25627,25633,25638,25685,25686,25687,25698,25751,25790,25922,25929,25967,25975,26862,26943,26953,26962,26989,27034,27134,27210,27354,27397,27477,27530,27544,27557,27624,27641,27740,27856,27858,27963,27983,28094,28095,28114,28155,28274,28275,28414,28439,28468,28531,28591,28596,28643,28644,28695,28699,28758,28940,28993,29063,29076,29192,29256,29395,29706,29829,30036,30075,30077,30079,30208,30318,30349,30679]]],["+",[2,2,[[43,1,1,0,1,[[1025,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[27210,28699]]],["Others",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26962]]],["altered",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25330]]],["another",[44,42,[[39,2,2,0,2,[[936,1,1,0,1],[939,1,1,1,2]]],[40,1,1,2,3,[[972,1,1,2,3]]],[41,12,12,3,15,[[978,1,1,3,4],[981,3,3,4,7],[986,3,3,7,10],[988,2,2,10,12],[991,1,1,12,13],[992,1,1,13,14],[994,1,1,14,15]]],[42,1,1,15,16,[[1015,1,1,15,16]]],[43,5,5,16,21,[[1018,1,1,16,17],[1024,1,1,17,18],[1029,1,1,18,19],[1030,1,1,19,20],[1034,1,1,20,21]]],[44,7,6,21,27,[[1047,2,2,21,23],[1052,4,3,23,26],[1058,1,1,26,27]]],[45,6,6,27,33,[[1064,1,1,27,28],[1065,1,1,28,29],[1067,1,1,29,30],[1073,2,2,30,32],[1076,1,1,32,33]]],[46,2,1,33,34,[[1088,2,1,33,34]]],[47,2,2,34,36,[[1091,1,1,34,35],[1096,1,1,35,36]]],[57,4,4,36,40,[[1137,1,1,36,37],[1139,3,3,37,40]]],[58,2,2,40,42,[[1147,1,1,40,41],[1149,1,1,41,42]]]],[23366,23462,24885,25152,25357,25360,25362,25572,25573,25584,25627,25638,25751,25790,25922,26862,26943,27134,27354,27397,27530,27963,27983,28094,28095,28114,28274,28414,28439,28468,28643,28644,28758,28993,29063,29192,30036,30075,30077,30079,30318,30349]]],["another's",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28591]]],["else",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27544]]],["matters",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27624]]],["next",[2,2,[[43,2,2,0,2,[[1037,1,1,0,1],[1044,1,1,1,2]]]],[27641,27858]]],["one",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28758]]],["other",[29,27,[[39,3,2,0,2,[[934,2,1,0,1],[940,1,1,1,2]]],[41,14,13,2,15,[[976,1,1,2,3],[977,1,1,3,4],[979,1,1,4,5],[980,1,1,5,6],[982,1,1,6,7],[983,1,1,7,8],[988,2,1,8,9],[989,3,3,9,12],[990,1,1,12,13],[995,2,2,13,15]]],[43,5,5,15,20,[[1019,2,2,15,17],[1021,1,1,17,18],[1040,1,1,18,19],[1044,1,1,19,20]]],[44,2,2,20,22,[[1053,1,1,20,21],[1058,1,1,21,22]]],[45,3,3,22,25,[[1069,1,1,22,23],[1071,1,1,23,24],[1075,1,1,24,25]]],[47,1,1,25,26,[[1091,1,1,25,26]]],[48,1,1,26,27,[[1099,1,1,26,27]]]],[23306,23534,25106,25114,25236,25253,25364,25431,25633,25685,25686,25687,25698,25967,25975,26953,26989,27034,27740,27856,28155,28275,28531,28596,28695,29076,29256]]],["others",[10,10,[[39,2,2,0,2,[[943,1,1,0,1],[944,1,1,1,2]]],[41,2,2,2,4,[[980,1,1,2,3],[983,1,1,3,4]]],[43,2,2,4,6,[[1032,1,1,4,5],[1034,1,1,5,6]]],[46,1,1,6,7,[[1085,1,1,6,7]]],[49,1,1,7,8,[[1104,1,1,7,8]]],[54,1,1,8,9,[[1126,1,1,8,9]]],[57,1,1,9,10,[[1143,1,1,9,10]]]],[23663,23686,25248,25421,27477,27557,28940,29395,29829,30208]]],["some",[2,2,[[41,2,2,0,2,[[980,2,2,0,2]]]],[25251,25252]]],["strange",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30679]]],["thing",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29706]]],["things",[2,2,[[41,2,2,0,2,[[975,1,1,0,1],[994,1,1,1,2]]]],[25043,25929]]]]},{"k":"G2088","v":[["+",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29436]]]]},{"k":"G2089","v":[["*",[101,90,[[39,8,8,0,8,[[933,1,1,0,1],[940,1,1,1,2],[945,1,1,2,3],[946,1,1,3,4],[947,1,1,4,5],[954,2,2,5,7],[955,1,1,7,8]]],[40,6,5,8,13,[[961,2,1,8,9],[964,1,1,9,10],[968,1,1,10,11],[970,2,2,11,13]]],[41,17,17,13,30,[[973,1,1,13,14],[980,1,1,14,15],[981,1,1,15,16],[986,3,3,16,19],[987,1,1,19,20],[988,1,1,20,21],[990,1,1,21,22],[992,1,1,22,23],[994,4,4,23,27],[996,3,3,27,30]]],[42,15,14,30,44,[[1000,1,1,30,31],[1003,1,1,31,32],[1007,1,1,32,33],[1008,1,1,33,34],[1009,1,1,34,35],[1010,3,2,35,37],[1012,4,4,37,41],[1013,1,1,41,42],[1016,1,1,42,43],[1017,1,1,43,44]]],[43,5,5,44,49,[[1019,1,1,44,45],[1026,1,1,45,46],[1027,1,1,46,47],[1035,1,1,47,48],[1038,1,1,48,49]]],[44,5,5,49,54,[[1048,1,1,49,50],[1050,2,2,50,52],[1051,1,1,52,53],[1054,1,1,53,54]]],[45,4,4,54,58,[[1064,2,2,54,56],[1073,1,1,56,57],[1076,1,1,57,58]]],[46,1,1,58,59,[[1078,1,1,58,59]]],[47,3,2,59,61,[[1091,1,1,59,60],[1095,2,1,60,61]]],[49,1,1,61,62,[[1103,1,1,61,62]]],[52,1,1,62,63,[[1117,1,1,62,63]]],[57,13,13,63,76,[[1139,3,3,63,66],[1140,1,1,66,67],[1141,1,1,67,68],[1142,3,3,68,71],[1143,3,3,71,74],[1144,2,2,74,76]]],[65,22,14,76,90,[[1169,1,1,76,77],[1172,1,1,77,78],[1173,2,1,78,79],[1175,1,1,79,80],[1176,1,1,80,81],[1178,1,1,81,82],[1184,6,3,82,85],[1186,1,1,85,86],[1187,3,2,86,88],[1188,5,2,88,90]]]],[23247,23535,23705,23743,23782,24101,24119,24192,24399,24517,24679,24797,24817,24908,25294,25343,25575,25579,25585,25608,25622,25710,25815,25901,25911,25924,25935,25997,26032,26035,26191,26361,26577,26615,26663,26687,26698,26736,26738,26747,26751,26770,26868,26904,26975,27217,27303,27575,27692,27998,28053,28055,28070,28174,28412,28413,28665,28735,28810,29067,29173,29370,29666,30074,30075,30079,30104,30113,30135,30150,30170,30176,30204,30208,30238,30239,30758,30804,30826,30852,30867,30899,31014,31015,31016,31041,31054,31057,31083,31091]]],["+",[13,10,[[41,2,2,0,2,[[987,1,1,0,1],[988,1,1,1,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]],[57,3,3,3,6,[[1140,1,1,3,4],[1142,2,2,4,6]]],[65,7,4,6,10,[[1184,6,3,6,9],[1188,1,1,9,10]]]],[25608,25622,26975,30104,30135,30150,31014,31015,31016,31083]]],["Hereafter",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26698]]],["Yet",[6,6,[[41,1,1,0,1,[[990,1,1,0,1]]],[42,3,3,1,4,[[1003,1,1,1,2],[1008,1,1,2,3],[1010,1,1,3,4]]],[57,2,2,4,6,[[1144,2,2,4,6]]]],[25710,26361,26615,26687,30238,30239]]],["even",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24908]]],["further",[6,6,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[970,1,1,2,3]]],[41,1,1,3,4,[[994,1,1,3,4]]],[43,1,1,4,5,[[1038,1,1,4,5]]],[57,1,1,5,6,[[1139,1,1,5,6]]]],[24119,24399,24817,25935,27692,30075]]],["longer",[2,2,[[44,1,1,0,1,[[1051,1,1,0,1]]],[65,1,1,1,2,[[1176,1,1,1,2]]]],[28070,30867]]],["more",[18,16,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,1,1,1,2,[[992,1,1,1,2]]],[42,6,6,2,8,[[1007,1,1,2,3],[1010,1,1,3,4],[1012,3,3,4,7],[1013,1,1,7,8]]],[57,1,1,8,9,[[1143,1,1,8,9]]],[65,9,7,9,16,[[1169,1,1,9,10],[1173,2,1,10,11],[1175,1,1,11,12],[1178,1,1,12,13],[1186,1,1,13,14],[1187,3,2,14,16]]]],[23743,25815,26577,26687,26736,26747,26751,26770,30204,30758,30826,30852,30899,31041,31054,31057]]],["moreover",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30208]]],["now",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26904]]],["still",[4,1,[[65,4,1,0,1,[[1188,4,1,0,1]]]],[31091]]],["thenceforth",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23247]]],["while",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24192]]],["yea",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25579]]],["yet",[45,44,[[39,4,4,0,4,[[940,1,1,0,1],[945,1,1,1,2],[947,1,1,2,3],[954,1,1,3,4]]],[40,4,4,4,8,[[961,1,1,4,5],[964,1,1,5,6],[968,1,1,6,7],[970,1,1,7,8]]],[41,10,10,8,18,[[980,1,1,8,9],[981,1,1,9,10],[986,2,2,10,12],[994,3,3,12,15],[996,3,3,15,18]]],[42,4,4,18,22,[[1000,1,1,18,19],[1009,1,1,19,20],[1012,1,1,20,21],[1016,1,1,21,22]]],[43,3,3,22,25,[[1026,1,1,22,23],[1027,1,1,23,24],[1035,1,1,24,25]]],[44,4,4,25,29,[[1048,1,1,25,26],[1050,2,2,26,28],[1054,1,1,28,29]]],[45,4,4,29,33,[[1064,2,2,29,31],[1073,1,1,31,32],[1076,1,1,32,33]]],[46,1,1,33,34,[[1078,1,1,33,34]]],[47,3,2,34,36,[[1091,1,1,34,35],[1095,2,1,35,36]]],[49,1,1,36,37,[[1103,1,1,36,37]]],[52,1,1,37,38,[[1117,1,1,37,38]]],[57,5,5,38,43,[[1139,2,2,38,40],[1141,1,1,40,41],[1142,1,1,41,42],[1143,1,1,42,43]]],[65,1,1,43,44,[[1172,1,1,43,44]]]],[23535,23705,23782,24101,24399,24517,24679,24797,25294,25343,25575,25585,25901,25911,25924,25997,26032,26035,26191,26663,26738,26868,27217,27303,27575,27998,28053,28055,28174,28412,28413,28665,28735,28810,29067,29173,29370,29666,30074,30079,30113,30170,30176,30804]]]]},{"k":"G2090","v":[["*",[40,40,[[39,7,7,0,7,[[931,1,1,0,1],[948,1,1,1,2],[950,1,1,2,3],[953,2,2,3,5],[954,2,2,5,7]]],[40,5,5,7,12,[[957,1,1,7,8],[966,1,1,8,9],[970,3,3,9,12]]],[41,14,14,12,26,[[973,2,2,12,14],[974,1,1,14,15],[975,1,1,15,16],[981,1,1,16,17],[984,2,2,17,19],[989,1,1,19,20],[994,4,4,20,24],[995,1,1,24,25],[996,1,1,25,26]]],[42,2,2,26,28,[[1010,2,2,26,28]]],[43,1,1,28,29,[[1040,1,1,28,29]]],[45,1,1,29,30,[[1063,1,1,29,30]]],[54,1,1,30,31,[[1126,1,1,30,31]]],[56,1,1,31,32,[[1132,1,1,31,32]]],[57,1,1,32,33,[[1143,1,1,32,33]]],[65,7,7,33,40,[[1174,1,1,33,34],[1175,2,2,34,36],[1178,1,1,36,37],[1182,1,1,37,38],[1185,1,1,38,39],[1187,1,1,39,40]]]],[23195,23815,23876,24042,24049,24071,24073,24218,24628,24766,24769,24770,24910,24969,25004,25029,25353,25479,25506,25659,25872,25873,25876,25877,25991,25992,26670,26671,27757,28403,29848,29960,30188,30833,30847,30855,30897,30966,31024,31055]]],["+",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31024]]],["Prepare",[3,3,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[975,1,1,2,3]]]],[23195,24218,25029]]],["prepare",[8,8,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,3,3,2,5,[[973,1,1,2,3],[994,2,2,3,5]]],[42,2,2,5,7,[[1010,2,2,5,7]]],[56,1,1,7,8,[[1132,1,1,7,8]]]],[24071,24766,24969,25872,25873,26670,26671,29960]]],["prepared",[18,18,[[39,4,4,0,4,[[948,1,1,0,1],[950,1,1,1,2],[953,2,2,2,4]]],[40,1,1,4,5,[[966,1,1,4,5]]],[41,4,4,5,9,[[974,1,1,5,6],[984,1,1,6,7],[995,1,1,7,8],[996,1,1,8,9]]],[45,1,1,9,10,[[1063,1,1,9,10]]],[54,1,1,10,11,[[1126,1,1,10,11]]],[57,1,1,11,12,[[1143,1,1,11,12]]],[65,6,6,12,18,[[1174,1,1,12,13],[1175,2,2,13,15],[1178,1,1,15,16],[1182,1,1,16,17],[1187,1,1,17,18]]]],[23815,23876,24042,24049,24628,25004,25506,25991,25992,28403,29848,30188,30833,30847,30855,30897,30966,31055]]],["provided",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25479]]],["ready",[9,9,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[970,2,2,1,3]]],[41,5,5,3,8,[[973,1,1,3,4],[981,1,1,4,5],[989,1,1,5,6],[994,2,2,6,8]]],[43,1,1,8,9,[[1040,1,1,8,9]]]],[24073,24769,24770,24910,25353,25659,25876,25877,27757]]]]},{"k":"G2091","v":[["preparation",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29352]]]]},{"k":"G2092","v":[["*",[17,17,[[39,4,4,0,4,[[950,2,2,0,2],[952,1,1,2,3],[953,1,1,3,4]]],[40,1,1,4,5,[[970,1,1,4,5]]],[41,3,3,5,8,[[984,1,1,5,6],[986,1,1,6,7],[994,1,1,7,8]]],[42,1,1,8,9,[[1003,1,1,8,9]]],[43,2,2,9,11,[[1040,2,2,9,11]]],[46,3,3,11,14,[[1086,1,1,11,12],[1087,2,2,12,14]]],[55,1,1,14,15,[[1131,1,1,14,15]]],[59,2,2,15,17,[[1151,1,1,15,16],[1153,1,1,16,17]]]],[23876,23880,24001,24018,24769,25499,25570,25897,26334,27749,27755,28961,28977,28987,29924,30379,30439]]],["+",[2,2,[[46,2,2,0,2,[[1086,1,1,0,1],[1087,1,1,1,2]]]],[28961,28987]]],["prepared",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24769]]],["readiness",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28977]]],["ready",[13,13,[[39,4,4,0,4,[[950,2,2,0,2],[952,1,1,2,3],[953,1,1,3,4]]],[41,3,3,4,7,[[984,1,1,4,5],[986,1,1,5,6],[994,1,1,6,7]]],[42,1,1,7,8,[[1003,1,1,7,8]]],[43,2,2,8,10,[[1040,2,2,8,10]]],[55,1,1,10,11,[[1131,1,1,10,11]]],[59,2,2,11,13,[[1151,1,1,11,12],[1153,1,1,12,13]]]],[23876,23880,24001,24018,25499,25570,25897,26334,27749,27755,29924,30379,30439]]]]},{"k":"G2093","v":[["ready",[3,3,[[43,1,1,0,1,[[1038,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[27677,29036,30451]]]]},{"k":"G2094","v":[["*",[49,48,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,2,2,1,3,[[961,2,2,1,3]]],[41,15,15,3,18,[[974,4,4,3,7],[975,2,2,7,9],[976,1,1,9,10],[980,2,2,10,12],[984,1,1,12,13],[985,4,4,13,17],[987,1,1,17,18]]],[42,3,3,18,21,[[998,1,1,18,19],[1001,1,1,19,20],[1004,1,1,20,21]]],[43,11,11,21,32,[[1021,1,1,21,22],[1024,4,4,22,26],[1026,1,1,26,27],[1030,2,2,27,29],[1036,1,1,29,30],[1041,2,2,30,32]]],[44,1,1,32,33,[[1060,1,1,32,33]]],[46,1,1,33,34,[[1089,1,1,33,34]]],[47,3,3,34,37,[[1091,1,1,34,35],[1092,1,1,35,36],[1093,1,1,36,37]]],[53,1,1,37,38,[[1123,1,1,37,38]]],[57,3,3,38,41,[[1133,1,1,38,39],[1135,2,2,39,41]]],[60,2,1,41,42,[[1158,2,1,41,42]]],[65,6,6,42,48,[[1186,6,6,42,48]]]],[23399,24389,24406,25009,25010,25014,25015,25026,25048,25088,25287,25288,25478,25525,25526,25529,25534,25617,26115,26215,26438,27044,27122,27146,27152,27158,27249,27382,27383,27595,27779,27786,28326,29024,29075,29082,29119,29772,29975,30004,30012,30530,31040,31041,31042,31043,31044,31045]]],["+",[3,3,[[41,3,3,0,3,[[974,2,2,0,2],[975,1,1,2,3]]]],[25014,25015,25048]]],["age",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25287]]],["old",[2,2,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]]],[26438,27044]]],["year",[2,2,[[41,2,2,0,2,[[975,1,1,0,1],[985,1,1,1,2]]]],[25026,25526]]],["years",[41,40,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,2,2,1,3,[[961,2,2,1,3]]],[41,9,9,3,12,[[974,2,2,3,5],[976,1,1,5,6],[980,1,1,6,7],[984,1,1,7,8],[985,3,3,8,11],[987,1,1,11,12]]],[42,2,2,12,14,[[998,1,1,12,13],[1001,1,1,13,14]]],[43,10,10,14,24,[[1024,4,4,14,18],[1026,1,1,18,19],[1030,2,2,19,21],[1036,1,1,21,22],[1041,2,2,22,24]]],[44,1,1,24,25,[[1060,1,1,24,25]]],[46,1,1,25,26,[[1089,1,1,25,26]]],[47,3,3,26,29,[[1091,1,1,26,27],[1092,1,1,27,28],[1093,1,1,28,29]]],[53,1,1,29,30,[[1123,1,1,29,30]]],[57,3,3,30,33,[[1133,1,1,30,31],[1135,2,2,31,33]]],[60,2,1,33,34,[[1158,2,1,33,34]]],[65,6,6,34,40,[[1186,6,6,34,40]]]],[23399,24389,24406,25009,25010,25088,25288,25478,25525,25529,25534,25617,26115,26215,27122,27146,27152,27158,27249,27382,27383,27595,27779,27786,28326,29024,29075,29082,29119,29772,29975,30004,30012,30530,31040,31041,31042,31043,31044,31045]]]]},{"k":"G2095","v":[["*",[6,6,[[39,2,2,0,2,[[953,2,2,0,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,1,1,3,4,[[991,1,1,3,4]]],[43,1,1,4,5,[[1032,1,1,4,5]]],[48,1,1,5,6,[[1102,1,1,5,6]]]],[24029,24031,24761,25748,27471,29340]]],["Well",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25748]]],["done",[2,2,[[39,2,2,0,2,[[953,2,2,0,2]]]],[24029,24031]]],["good",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24761]]],["well",[2,2,[[43,1,1,0,1,[[1032,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]]],[27471,29340]]]]},{"k":"G2096","v":[["Eve",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[53,1,1,1,2,[[1120,1,1,1,2]]]],[28992,29729]]]]},{"k":"G2097","v":[["*",[55,52,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,10,10,1,11,[[973,1,1,1,2],[974,1,1,2,3],[975,1,1,3,4],[976,2,2,4,6],[979,1,1,6,7],[980,1,1,7,8],[981,1,1,8,9],[988,1,1,9,10],[992,1,1,10,11]]],[43,15,15,11,26,[[1022,1,1,11,12],[1025,5,5,12,17],[1027,1,1,17,18],[1028,1,1,18,19],[1030,1,1,19,20],[1031,3,3,20,23],[1032,1,1,23,24],[1033,1,1,24,25],[1034,1,1,25,26]]],[44,4,3,26,29,[[1046,1,1,26,27],[1055,2,1,27,28],[1060,1,1,28,29]]],[45,6,5,29,34,[[1062,1,1,29,30],[1070,3,2,30,32],[1076,2,2,32,34]]],[46,2,2,34,36,[[1087,1,1,34,35],[1088,1,1,35,36]]],[47,7,6,36,42,[[1091,6,5,36,41],[1094,1,1,41,42]]],[48,2,2,42,44,[[1098,1,1,42,43],[1099,1,1,43,44]]],[51,1,1,44,45,[[1113,1,1,44,45]]],[57,2,2,45,47,[[1136,2,2,45,47]]],[59,3,3,47,50,[[1151,2,2,47,49],[1154,1,1,49,50]]],[65,2,2,50,52,[[1176,1,1,50,51],[1180,1,1,51,52]]]],[23464,24912,24983,25043,25081,25106,25217,25246,25307,25636,25780,27101,27180,27188,27201,27211,27216,27295,27327,27394,27421,27429,27435,27477,27493,27541,27945,28203,28323,28380,28556,28558,28719,28720,28987,28996,29065,29066,29068,29073,29080,29144,29246,29259,29596,30016,30020,30386,30399,30452,30868,30932]]],["+",[8,8,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]],[43,2,2,2,4,[[1030,1,1,2,3],[1031,1,1,3,4]]],[45,1,1,4,5,[[1070,1,1,4,5]]],[51,1,1,5,6,[[1113,1,1,5,6]]],[57,2,2,6,8,[[1136,2,2,6,8]]]],[24912,24983,27394,27421,28556,29596,30016,30020]]],["declared",[1,1,[[65,1,1,0,1,[[1176,1,1,0,1]]]],[30868]]],["gospel",[17,17,[[41,3,3,0,3,[[976,1,1,0,1],[981,1,1,1,2],[992,1,1,2,3]]],[43,3,3,3,6,[[1025,1,1,3,4],[1031,1,1,4,5],[1033,1,1,5,6]]],[44,3,3,6,9,[[1046,1,1,6,7],[1055,1,1,7,8],[1060,1,1,8,9]]],[45,3,3,9,12,[[1062,1,1,9,10],[1070,2,2,10,12]]],[46,1,1,12,13,[[1087,1,1,12,13]]],[47,3,3,13,16,[[1091,2,2,13,15],[1094,1,1,15,16]]],[59,1,1,16,17,[[1151,1,1,16,17]]]],[25081,25307,25780,27201,27435,27493,27945,28203,28323,28380,28556,28558,28987,29065,29066,29144,30386]]],["preach",[6,6,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,2,2,1,3,[[1022,1,1,1,2],[1031,1,1,2,3]]],[47,1,1,3,4,[[1091,1,1,3,4]]],[48,1,1,4,5,[[1099,1,1,4,5]]],[65,1,1,5,6,[[1180,1,1,5,6]]]],[25106,27101,27429,29073,29259,30932]]],["preached",[14,14,[[41,3,3,0,3,[[975,1,1,0,1],[979,1,1,1,2],[988,1,1,2,3]]],[43,3,3,3,6,[[1025,2,2,3,5],[1034,1,1,5,6]]],[45,2,2,6,8,[[1076,2,2,6,8]]],[46,1,1,8,9,[[1088,1,1,8,9]]],[47,2,2,9,11,[[1091,2,2,9,11]]],[48,1,1,11,12,[[1098,1,1,11,12]]],[59,2,2,12,14,[[1151,1,1,12,13],[1154,1,1,13,14]]]],[25043,25217,25636,27211,27216,27541,28719,28720,28996,29065,29068,29246,30399,30452]]],["preacheth",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29080]]],["preaching",[5,5,[[43,5,5,0,5,[[1025,2,2,0,2],[1027,1,1,2,3],[1028,1,1,3,4],[1032,1,1,4,5]]]],[27180,27188,27295,27327,27477]]],["them",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23464]]],["tidings",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]]],[25246,28203]]]]},{"k":"G2098","v":[["*",[77,74,[[39,4,4,0,4,[[932,1,1,0,1],[937,1,1,1,2],[952,1,1,2,3],[954,1,1,3,4]]],[40,8,8,4,12,[[957,3,3,4,7],[964,1,1,7,8],[966,1,1,8,9],[969,1,1,9,10],[970,1,1,10,11],[972,1,1,11,12]]],[43,2,2,12,14,[[1032,1,1,12,13],[1037,1,1,13,14]]],[44,10,10,14,24,[[1046,3,3,14,17],[1047,1,1,17,18],[1055,1,1,18,19],[1056,1,1,19,20],[1060,3,3,20,23],[1061,1,1,23,24]]],[45,8,6,24,30,[[1065,1,1,24,25],[1070,6,4,25,29],[1076,1,1,29,30]]],[46,8,8,30,38,[[1079,1,1,30,31],[1081,2,2,31,33],[1085,1,1,33,34],[1086,1,1,34,35],[1087,1,1,35,36],[1088,2,2,36,38]]],[47,7,7,38,45,[[1091,3,3,38,41],[1092,4,4,41,45]]],[48,4,4,45,49,[[1097,1,1,45,46],[1099,1,1,46,47],[1102,2,2,47,49]]],[49,9,8,49,57,[[1103,6,5,49,54],[1104,1,1,54,55],[1106,2,2,55,57]]],[50,2,2,57,59,[[1107,2,2,57,59]]],[51,6,6,59,65,[[1111,1,1,59,60],[1112,4,4,60,64],[1113,1,1,64,65]]],[52,2,2,65,67,[[1116,1,1,65,66],[1117,1,1,66,67]]],[53,1,1,67,68,[[1119,1,1,67,68]]],[54,3,3,68,71,[[1125,2,2,68,70],[1126,1,1,70,71]]],[56,1,1,71,72,[[1132,1,1,71,72]]],[59,1,1,72,73,[[1154,1,1,72,73]]],[65,1,1,73,74,[[1180,1,1,73,74]]]],[23232,23414,23971,24067,24216,24229,24230,24535,24617,24727,24763,24888,27449,27650,27931,27939,27946,27978,28204,28237,28319,28322,28332,28361,28448,28552,28554,28558,28563,28719,28836,28862,28863,28950,28969,28985,28993,28996,29063,29064,29068,29083,29086,29088,29095,29219,29257,29352,29356,29366,29368,29373,29378,29388,29413,29445,29457,29470,29488,29565,29572,29574,29578,29579,29592,29657,29675,29707,29817,29819,29835,29951,30463,30932]]],["+",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28563]]],["gospel",[74,71,[[39,4,4,0,4,[[932,1,1,0,1],[937,1,1,1,2],[952,1,1,2,3],[954,1,1,3,4]]],[40,6,6,4,10,[[957,3,3,4,7],[969,1,1,7,8],[970,1,1,8,9],[972,1,1,9,10]]],[43,2,2,10,12,[[1032,1,1,10,11],[1037,1,1,11,12]]],[44,10,10,12,22,[[1046,3,3,12,15],[1047,1,1,15,16],[1055,1,1,16,17],[1056,1,1,17,18],[1060,3,3,18,21],[1061,1,1,21,22]]],[45,7,5,22,27,[[1065,1,1,22,23],[1070,5,3,23,26],[1076,1,1,26,27]]],[46,8,8,27,35,[[1079,1,1,27,28],[1081,2,2,28,30],[1085,1,1,30,31],[1086,1,1,31,32],[1087,1,1,32,33],[1088,2,2,33,35]]],[47,7,7,35,42,[[1091,3,3,35,38],[1092,4,4,38,42]]],[48,4,4,42,46,[[1097,1,1,42,43],[1099,1,1,43,44],[1102,2,2,44,46]]],[49,9,8,46,54,[[1103,6,5,46,51],[1104,1,1,51,52],[1106,2,2,52,54]]],[50,2,2,54,56,[[1107,2,2,54,56]]],[51,6,6,56,62,[[1111,1,1,56,57],[1112,4,4,57,61],[1113,1,1,61,62]]],[52,2,2,62,64,[[1116,1,1,62,63],[1117,1,1,63,64]]],[53,1,1,64,65,[[1119,1,1,64,65]]],[54,3,3,65,68,[[1125,2,2,65,67],[1126,1,1,67,68]]],[56,1,1,68,69,[[1132,1,1,68,69]]],[59,1,1,69,70,[[1154,1,1,69,70]]],[65,1,1,70,71,[[1180,1,1,70,71]]]],[23232,23414,23971,24067,24216,24229,24230,24727,24763,24888,27449,27650,27931,27939,27946,27978,28204,28237,28319,28322,28332,28361,28448,28552,28554,28558,28719,28836,28862,28863,28950,28969,28985,28993,28996,29063,29064,29068,29083,29086,29088,29095,29219,29257,29352,29356,29366,29368,29373,29378,29388,29413,29445,29457,29470,29488,29565,29572,29574,29578,29579,29592,29657,29675,29707,29817,29819,29835,29951,30463,30932]]],["gospel's",[2,2,[[40,2,2,0,2,[[964,1,1,0,1],[966,1,1,1,2]]]],[24535,24617]]]]},{"k":"G2099","v":[["*",[3,3,[[43,1,1,0,1,[[1038,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[27672,29283,29875]]],["evangelist",[2,2,[[43,1,1,0,1,[[1038,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]]],[27672,29875]]],["evangelists",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29283]]]]},{"k":"G2100","v":[["*",[3,3,[[57,3,3,0,3,[[1143,2,2,0,2],[1145,1,1,2,3]]]],[30177,30178,30257]]],["please",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30178]]],["pleased",[2,2,[[57,2,2,0,2,[[1143,1,1,0,1],[1145,1,1,1,2]]]],[30177,30257]]]]},{"k":"G2101","v":[["*",[9,9,[[44,3,3,0,3,[[1057,2,2,0,2],[1059,1,1,2,3]]],[46,1,1,3,4,[[1082,1,1,3,4]]],[48,1,1,4,5,[[1101,1,1,4,5]]],[49,1,1,5,6,[[1106,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[55,1,1,7,8,[[1130,1,1,7,8]]],[57,1,1,8,9,[[1145,1,1,8,9]]]],[28246,28247,28298,28886,29314,29460,29537,29917,30262]]],["acceptable",[4,4,[[44,3,3,0,3,[[1057,2,2,0,2],[1059,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]]],[28246,28247,28298,29314]]],["accepted",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28886]]],["pleasing",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29537]]],["well",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29917]]],["wellpleasing",[2,2,[[49,1,1,0,1,[[1106,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[29460,30262]]]]},{"k":"G2102","v":[["acceptably",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30240]]]]},{"k":"G2103","v":[["Eubulus",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29891]]]]},{"k":"G2104","v":[["*",[3,3,[[41,1,1,0,1,[[991,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[45,1,1,2,3,[[1062,1,1,2,3]]]],[25743,27534,28389]]],["+",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25743]]],["noble",[2,2,[[43,1,1,0,1,[[1034,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]]],[27534,28389]]]]},{"k":"G2105","v":[["weather",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23674]]]]},{"k":"G2106","v":[["*",[21,21,[[39,3,3,0,3,[[931,1,1,0,1],[940,1,1,1,2],[945,1,1,2,3]]],[40,1,1,3,4,[[957,1,1,3,4]]],[41,2,2,4,6,[[975,1,1,4,5],[984,1,1,5,6]]],[44,2,2,6,8,[[1060,2,2,6,8]]],[45,2,2,8,10,[[1062,1,1,8,9],[1071,1,1,9,10]]],[46,2,2,10,12,[[1082,1,1,10,11],[1089,1,1,11,12]]],[47,1,1,12,13,[[1091,1,1,12,13]]],[50,1,1,13,14,[[1107,1,1,13,14]]],[51,2,2,14,16,[[1112,1,1,14,15],[1113,1,1,15,16]]],[52,1,1,16,17,[[1117,1,1,16,17]]],[57,3,3,17,20,[[1142,3,3,17,20]]],[60,1,1,20,21,[[1156,1,1,20,21]]]],[23209,23507,23705,24226,25047,25491,28329,28330,28384,28572,28885,29032,29072,29484,29578,29591,29673,30139,30141,30171,30496]]],["+",[4,4,[[41,1,1,0,1,[[984,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]],[57,2,2,2,4,[[1142,2,2,2,4]]]],[25491,28572,30139,30171]]],["good",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29591]]],["pleased",[11,11,[[39,3,3,0,3,[[931,1,1,0,1],[940,1,1,1,2],[945,1,1,2,3]]],[40,1,1,3,4,[[957,1,1,3,4]]],[41,1,1,4,5,[[975,1,1,4,5]]],[44,2,2,5,7,[[1060,2,2,5,7]]],[45,1,1,7,8,[[1062,1,1,7,8]]],[47,1,1,8,9,[[1091,1,1,8,9]]],[50,1,1,9,10,[[1107,1,1,9,10]]],[60,1,1,10,11,[[1156,1,1,10,11]]]],[23209,23507,23705,24226,25047,28329,28330,28384,29072,29484,30496]]],["pleasure",[3,3,[[46,1,1,0,1,[[1089,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[29032,29673,30141]]],["willing",[2,2,[[46,1,1,0,1,[[1082,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]]],[28885,29578]]]]},{"k":"G2107","v":[["*",[9,9,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[982,1,1,2,3]]],[44,1,1,3,4,[[1055,1,1,3,4]]],[48,2,2,4,6,[[1097,2,2,4,6]]],[49,2,2,6,8,[[1103,1,1,6,7],[1104,1,1,7,8]]],[52,1,1,8,9,[[1116,1,1,8,9]]]],[23485,24987,25384,28189,29211,29215,29376,29404,29660]]],["+",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28189]]],["good",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[23485,25384]]],["pleasure",[4,4,[[48,2,2,0,2,[[1097,2,2,0,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[52,1,1,3,4,[[1116,1,1,3,4]]]],[29211,29215,29404,29660]]],["will",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[24987,29376]]]]},{"k":"G2108","v":[["*",[2,2,[[43,1,1,0,1,[[1021,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[27031,29790]]],["benefit",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29790]]],["done",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27031]]]]},{"k":"G2109","v":[["good",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27297]]]]},{"k":"G2110","v":[["benefactors",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25889]]]]},{"k":"G2111","v":[["*",[3,3,[[41,2,2,0,2,[[981,1,1,0,1],[986,1,1,1,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]]],[25363,25588,30051]]],["fit",[2,2,[[41,2,2,0,2,[[981,1,1,0,1],[986,1,1,1,2]]]],[25363,25588]]],["meet",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30051]]]]},{"k":"G2112","v":[["*",[80,80,[[39,15,15,0,15,[[932,2,2,0,2],[936,1,1,2,3],[941,1,1,3,4],[942,3,3,4,7],[948,1,1,7,8],[949,2,2,8,10],[952,1,1,10,11],[953,1,1,11,12],[954,2,2,12,14],[955,1,1,14,15]]],[40,40,40,15,55,[[957,9,9,15,24],[958,3,3,24,27],[959,1,1,27,28],[960,5,5,28,33],[961,6,6,33,39],[962,5,5,39,44],[963,1,1,44,45],[964,1,1,45,46],[965,3,3,46,49],[966,1,1,49,50],[967,2,2,50,52],[970,2,2,52,54],[971,1,1,54,55]]],[41,8,8,55,63,[[977,2,2,55,57],[978,1,1,57,58],[984,2,2,58,60],[986,1,1,60,61],[989,1,1,61,62],[993,1,1,62,63]]],[42,4,4,63,67,[[1001,1,1,63,64],[1002,1,1,64,65],[1009,1,1,65,66],[1014,1,1,66,67]]],[43,9,9,67,76,[[1026,3,3,67,70],[1029,1,1,70,71],[1033,1,1,71,72],[1034,2,2,72,74],[1038,1,1,74,75],[1039,1,1,75,76]]],[47,1,1,76,77,[[1091,1,1,76,77]]],[58,1,1,77,78,[[1146,1,1,77,78]]],[63,1,1,78,79,[[1165,1,1,78,79]]],[65,1,1,79,80,[[1170,1,1,79,80]]]],[23229,23231,23348,23544,23619,23624,23628,23826,23828,23829,23986,24023,24103,24128,24177,24225,24233,24235,24236,24244,24245,24246,24257,24258,24262,24268,24272,24294,24328,24338,24339,24340,24352,24366,24377,24393,24394,24400,24406,24432,24434,24452,24457,24461,24498,24510,24553,24558,24562,24640,24642,24643,24797,24799,24827,25120,25146,25195,25495,25513,25558,25658,25835,26219,26278,26660,26812,27234,27236,27250,27347,27493,27533,27537,27694,27733,29073,30290,30672,30770]]],["+",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[42,1,1,1,2,[[1009,1,1,1,2]]]],[23231,26660]]],["Immediately",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23986]]],["anon",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24245]]],["as",[2,2,[[40,2,2,0,2,[[961,1,1,0,1],[967,1,1,1,2]]]],[24400,24642]]],["by",[2,2,[[41,2,2,0,2,[[989,1,1,0,1],[993,1,1,1,2]]]],[25658,25835]]],["forthwith",[7,7,[[39,2,2,0,2,[[941,1,1,0,1],[954,1,1,1,2]]],[40,3,3,2,5,[[957,2,2,2,4],[961,1,1,4,5]]],[43,2,2,5,7,[[1029,1,1,5,6],[1038,1,1,6,7]]]],[23544,24103,24244,24258,24377,27347,27694]]],["immediately",[32,32,[[39,4,4,0,4,[[936,1,1,0,1],[942,1,1,1,2],[948,1,1,2,3],[954,1,1,3,4]]],[40,15,15,4,19,[[957,2,2,4,6],[958,2,2,6,8],[960,5,5,8,13],[961,2,2,13,15],[962,2,2,15,17],[966,1,1,17,18],[970,1,1,18,19]]],[41,3,3,19,22,[[977,1,1,19,20],[978,1,1,20,21],[984,1,1,21,22]]],[42,3,3,22,25,[[1001,1,1,22,23],[1002,1,1,23,24],[1014,1,1,24,25]]],[43,5,5,25,30,[[1026,2,2,25,27],[1033,1,1,27,28],[1034,2,2,28,30]]],[47,1,1,30,31,[[1091,1,1,30,31]]],[65,1,1,31,32,[[1170,1,1,31,32]]]],[23348,23628,23826,24128,24246,24257,24268,24272,24328,24338,24339,24340,24352,24366,24394,24434,24457,24640,24797,25120,25195,25495,26219,26278,26812,27234,27250,27493,27533,27537,29073,30770]]],["shortly",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30672]]],["straightway",[32,32,[[39,7,7,0,7,[[932,1,1,0,1],[942,2,2,1,3],[949,2,2,3,5],[953,1,1,5,6],[955,1,1,6,7]]],[40,19,19,7,26,[[957,4,4,7,11],[958,1,1,11,12],[959,1,1,12,13],[961,2,2,13,15],[962,3,3,15,18],[963,1,1,18,19],[964,1,1,19,20],[965,3,3,20,23],[967,1,1,23,24],[970,1,1,24,25],[971,1,1,25,26]]],[41,3,3,26,29,[[977,1,1,26,27],[984,1,1,27,28],[986,1,1,28,29]]],[43,2,2,29,31,[[1026,1,1,29,30],[1039,1,1,30,31]]],[58,1,1,31,32,[[1146,1,1,31,32]]]],[23229,23619,23624,23828,23829,24023,24177,24225,24233,24235,24236,24262,24294,24393,24406,24432,24452,24461,24498,24510,24553,24558,24562,24643,24799,24827,25146,25513,25558,27236,27733,30290]]]]},{"k":"G2113","v":[["course",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1038,1,1,1,2]]]],[27494,27665]]]]},{"k":"G2114","v":[["*",[3,3,[[43,2,2,0,2,[[1044,2,2,0,2]]],[58,1,1,2,3,[[1150,1,1,2,3]]]],[27877,27880,30367]]],["+",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30367]]],["cheer",[2,2,[[43,2,2,0,2,[[1044,2,2,0,2]]]],[27877,27880]]]]},{"k":"G2115","v":[["*",[2,2,[[43,2,2,0,2,[[1041,1,1,0,1],[1044,1,1,1,2]]]],[27779,27891]]],["cheer",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27891]]],["cheerfully",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27779]]]]},{"k":"G2116","v":[["*",[2,2,[[42,1,1,0,1,[[997,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[26067,30323]]],["+",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30323]]],["straight",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26067]]]]},{"k":"G2117","v":[["*",[16,16,[[39,4,4,0,4,[[931,2,2,0,2],[941,2,2,2,4]]],[40,3,3,4,7,[[957,3,3,4,7]]],[41,2,2,7,9,[[975,2,2,7,9]]],[42,3,3,9,12,[[1009,1,1,9,10],[1015,1,1,10,11],[1017,1,1,11,12]]],[43,3,3,12,15,[[1025,1,1,12,13],[1026,1,1,13,14],[1030,1,1,14,15]]],[60,1,1,15,16,[[1157,1,1,15,16]]]],[23195,23208,23559,23560,24218,24227,24243,25029,25030,26662,26859,26901,27197,27227,27372,30515]]],["Straight",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27227]]],["anon",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23559]]],["by",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23560]]],["forthwith",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26859]]],["immediately",[3,3,[[40,2,2,0,2,[[957,2,2,0,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]]],[24227,24243,26901]]],["right",[3,3,[[43,2,2,0,2,[[1025,1,1,0,1],[1030,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[27197,27372,30515]]],["straight",[4,4,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,2,2,2,4,[[975,2,2,2,4]]]],[23195,24218,25029,25030]]],["straightway",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[42,1,1,1,2,[[1009,1,1,1,2]]]],[23208,26662]]]]},{"k":"G2118","v":[["righteousness",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29971]]]]},{"k":"G2119","v":[["*",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]]],[24438,27544,28788]]],["+",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24438]]],["time",[2,2,[[43,1,1,0,1,[[1034,1,1,0,1]]],[45,1,1,1,2,[[1077,1,1,1,2]]]],[27544,28788]]]]},{"k":"G2120","v":[["opportunity",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24070,25870]]]]},{"k":"G2121","v":[["*",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[57,1,1,1,2,[[1136,1,1,1,2]]]],[24428,30030]]],["+",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30030]]],["convenient",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24428]]]]},{"k":"G2122","v":[["*",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]]],[24765,29872]]],["conveniently",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24765]]],["season",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29872]]]]},{"k":"G2123","v":[["easier",[7,7,[[39,2,2,0,2,[[937,1,1,0,1],[947,1,1,1,2]]],[40,2,2,2,4,[[958,1,1,2,3],[966,1,1,3,4]]],[41,3,3,4,7,[[977,1,1,4,5],[988,1,1,5,6],[990,1,1,6,7]]]],[23384,23786,24269,24613,25130,25637,25713]]]]},{"k":"G2124","v":[["*",[2,2,[[57,2,2,0,2,[[1137,1,1,0,1],[1144,1,1,1,2]]]],[30037,30240]]],["+",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30037]]],["fear",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30240]]]]},{"k":"G2125","v":[["*",[2,2,[[43,1,1,0,1,[[1040,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[27744,30179]]],["fear",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30179]]],["fearing",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27744]]]]},{"k":"G2126","v":[["devout",[3,3,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,2,2,1,3,[[1019,1,1,1,2],[1025,1,1,2,3]]]],[24998,26954,27178]]]]},{"k":"G2127","v":[["*",[44,41,[[39,6,6,0,6,[[933,1,1,0,1],[942,1,1,1,2],[949,1,1,2,3],[951,1,1,3,4],[953,1,1,4,5],[954,1,1,5,6]]],[40,6,6,6,12,[[962,1,1,6,7],[964,1,1,7,8],[966,1,1,8,9],[967,2,2,9,11],[970,1,1,11,12]]],[41,14,13,12,25,[[973,4,3,12,15],[974,2,2,15,17],[978,1,1,17,18],[981,1,1,18,19],[985,1,1,19,20],[991,1,1,20,21],[996,4,4,21,25]]],[42,1,1,25,26,[[1008,1,1,25,26]]],[43,1,1,26,27,[[1020,1,1,26,27]]],[44,2,1,27,28,[[1057,2,1,27,28]]],[45,3,3,28,31,[[1065,1,1,28,29],[1071,1,1,29,30],[1075,1,1,30,31]]],[47,1,1,31,32,[[1093,1,1,31,32]]],[48,1,1,32,33,[[1097,1,1,32,33]]],[57,7,6,33,39,[[1138,2,1,33,34],[1139,3,3,34,37],[1143,2,2,37,39]]],[58,1,1,39,40,[[1148,1,1,39,40]]],[59,1,1,40,41,[[1153,1,1,40,41]]]],[23278,23616,23835,23957,24042,24080,24448,24507,24604,24649,24650,24776,24921,24935,24957,25001,25007,25174,25317,25553,25769,26021,26041,26042,26044,26593,27022,28259,28445,28583,28694,29111,29209,30058,30065,30070,30071,30192,30193,30328,30433]]],["Bless",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]]],[25174,28259]]],["Blessed",[8,8,[[39,2,2,0,2,[[949,1,1,0,1],[951,1,1,1,2]]],[40,2,2,2,4,[[967,2,2,2,4]]],[41,3,3,4,7,[[973,1,1,4,5],[985,1,1,5,6],[991,1,1,6,7]]],[42,1,1,7,8,[[1008,1,1,7,8]]]],[23835,23957,24649,24650,24935,25553,25769,26593]]],["bless",[8,8,[[39,1,1,0,1,[[933,1,1,0,1]]],[43,1,1,1,2,[[1020,1,1,1,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[45,3,3,3,6,[[1065,1,1,3,4],[1071,1,1,4,5],[1075,1,1,5,6]]],[57,1,1,6,7,[[1138,1,1,6,7]]],[58,1,1,7,8,[[1148,1,1,7,8]]]],[23278,27022,28259,28445,28583,28694,30058,30328]]],["blessed",[22,22,[[39,3,3,0,3,[[942,1,1,0,1],[953,1,1,1,2],[954,1,1,2,3]]],[40,4,4,3,7,[[962,1,1,3,4],[964,1,1,4,5],[966,1,1,5,6],[970,1,1,6,7]]],[41,8,8,7,15,[[973,2,2,7,9],[974,2,2,9,11],[981,1,1,11,12],[996,3,3,12,15]]],[47,1,1,15,16,[[1093,1,1,15,16]]],[48,1,1,16,17,[[1097,1,1,16,17]]],[57,5,5,17,22,[[1139,3,3,17,20],[1143,2,2,20,22]]]],[23616,24042,24080,24448,24507,24604,24776,24921,24935,25001,25007,25317,26021,26041,26042,29111,29209,30065,30070,30071,30192,30193]]],["blessing",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[26044,30058,30433]]],["praised",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24957]]]]},{"k":"G2128","v":[["*",[8,8,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[44,2,2,2,4,[[1046,1,1,2,3],[1054,1,1,3,4]]],[46,2,2,4,6,[[1078,1,1,4,5],[1088,1,1,5,6]]],[48,1,1,6,7,[[1097,1,1,6,7]]],[59,1,1,7,8,[[1151,1,1,7,8]]]],[24815,24961,27955,28160,28803,29020,29209,30377]]],["Blessed",[5,5,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[46,1,1,2,3,[[1078,1,1,2,3]]],[48,1,1,3,4,[[1097,1,1,3,4]]],[59,1,1,4,5,[[1151,1,1,4,5]]]],[24815,24961,28803,29209,30377]]],["blessed",[3,3,[[44,2,2,0,2,[[1046,1,1,0,1],[1054,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]]],[27955,28160,29020]]]]},{"k":"G2129","v":[["*",[16,14,[[44,2,2,0,2,[[1060,1,1,0,1],[1061,1,1,1,2]]],[45,1,1,2,3,[[1071,1,1,2,3]]],[46,4,2,3,5,[[1086,4,2,3,5]]],[47,1,1,5,6,[[1093,1,1,5,6]]],[48,1,1,6,7,[[1097,1,1,6,7]]],[57,2,2,7,9,[[1138,1,1,7,8],[1144,1,1,8,9]]],[58,1,1,9,10,[[1148,1,1,9,10]]],[59,1,1,10,11,[[1153,1,1,10,11]]],[65,3,3,11,14,[[1171,2,2,11,13],[1173,1,1,13,14]]]],[28332,28354,28583,28961,28962,29116,29209,30051,30229,30329,30433,30791,30792,30822]]],["+",[2,1,[[46,2,1,0,1,[[1086,2,1,0,1]]]],[28962]]],["Blessing",[2,2,[[65,2,2,0,2,[[1171,1,1,0,1],[1173,1,1,1,2]]]],[30792,30822]]],["blessing",[8,8,[[44,1,1,0,1,[[1060,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]],[47,1,1,2,3,[[1093,1,1,2,3]]],[57,2,2,3,5,[[1138,1,1,3,4],[1144,1,1,4,5]]],[58,1,1,5,6,[[1148,1,1,5,6]]],[59,1,1,6,7,[[1153,1,1,6,7]]],[65,1,1,7,8,[[1171,1,1,7,8]]]],[28332,28583,29116,30051,30229,30329,30433,30791]]],["blessings",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29209]]],["bounty",[2,1,[[46,2,1,0,1,[[1086,2,1,0,1]]]],[28961]]],["speeches",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28354]]]]},{"k":"G2130","v":[["distribute",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29806]]]]},{"k":"G2131","v":[["Eunice",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29814]]]]},{"k":"G2132","v":[["+",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23259]]]]},{"k":"G2133","v":[["*",[2,2,[[45,1,1,0,1,[[1068,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]]],[28490,29344]]],["benevolence",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28490]]],["will",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29344]]]]},{"k":"G2134","v":[["*",[2,1,[[39,2,1,0,1,[[947,2,1,0,1]]]],[23774]]],["+",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23774]]],["eunuchs",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23774]]]]},{"k":"G2135","v":[["*",[8,6,[[39,3,1,0,1,[[947,3,1,0,1]]],[43,5,5,1,6,[[1025,5,5,1,6]]]],[23774,27203,27210,27212,27214,27215]]],["+",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27215]]],["eunuch",[4,4,[[43,4,4,0,4,[[1025,4,4,0,4]]]],[27203,27210,27212,27214]]],["eunuchs",[3,1,[[39,3,1,0,1,[[947,3,1,0,1]]]],[23774]]]]},{"k":"G2136","v":[["Euodias",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29444]]]]},{"k":"G2137","v":[["*",[4,3,[[44,1,1,0,1,[[1046,1,1,0,1]]],[45,1,1,1,2,[[1077,1,1,1,2]]],[63,2,1,2,3,[[1165,2,1,2,3]]]],[27940,28778,30660]]],["journey",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27940]]],["prosper",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30660]]],["prospered",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28778]]],["prospereth",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30660]]]]},{"k":"G2138","v":[["intreated",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30336]]]]},{"k":"G2139","v":[["beset",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30213]]]]},{"k":"G2140","v":[["good",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30257]]]]},{"k":"G2141","v":[["+",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27336]]]]},{"k":"G2142","v":[["wealth",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27610]]]]},{"k":"G2143","v":[["grace",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30277]]]]},{"k":"G2144","v":[["*",[5,5,[[44,2,2,0,2,[[1060,2,2,0,2]]],[46,2,2,2,4,[[1083,1,1,2,3],[1085,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[28319,28334,28900,28944,30404]]],["acceptable",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[28319,30404]]],["accepted",[3,3,[[44,1,1,0,1,[[1060,1,1,0,1]]],[46,2,2,1,3,[[1083,1,1,1,2],[1085,1,1,2,3]]]],[28334,28900,28944]]]]},{"k":"G2145","v":[["upon",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28522]]]]},{"k":"G2146","v":[["shew",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29200]]]]},{"k":"G2147","v":[["*",[177,167,[[39,28,26,0,26,[[929,1,1,0,1],[930,1,1,1,2],[935,3,3,2,5],[936,1,1,5,6],[938,2,1,6,7],[939,1,1,7,8],[940,2,2,8,10],[941,2,2,10,12],[944,1,1,12,13],[945,1,1,13,14],[946,2,2,14,16],[948,1,1,16,17],[949,2,2,17,19],[950,2,2,19,21],[952,1,1,21,22],[954,4,3,22,25],[955,1,1,25,26]]],[40,11,10,26,36,[[957,1,1,26,27],[963,1,1,27,28],[967,4,3,28,31],[969,1,1,31,32],[970,4,4,32,36]]],[41,45,44,36,80,[[973,1,1,36,37],[974,3,3,37,40],[976,1,1,40,41],[977,1,1,41,42],[978,1,1,42,43],[979,2,2,43,45],[980,1,1,45,46],[981,2,2,46,48],[983,4,4,48,52],[984,3,3,52,55],[985,2,2,55,57],[987,8,7,57,64],[989,1,1,64,65],[990,1,1,65,66],[991,3,3,66,69],[994,2,2,69,71],[995,4,4,71,75],[996,5,5,75,80]]],[42,19,17,80,97,[[997,5,3,80,83],[998,1,1,83,84],[1001,1,1,84,85],[1002,1,1,85,86],[1003,3,3,86,89],[1005,1,1,89,90],[1006,1,1,90,91],[1007,1,1,91,92],[1008,1,1,92,93],[1014,1,1,93,94],[1015,2,2,94,96],[1017,1,1,96,97]]],[43,35,32,97,129,[[1021,1,1,97,98],[1022,5,4,98,102],[1024,3,2,102,104],[1025,1,1,104,105],[1026,2,2,105,107],[1027,1,1,107,108],[1028,1,1,108,109],[1029,1,1,109,110],[1030,3,3,110,113],[1034,3,3,113,116],[1035,1,1,116,117],[1036,2,2,117,119],[1038,1,1,119,120],[1040,2,2,120,122],[1041,4,4,122,126],[1044,3,2,126,128],[1045,1,1,128,129]]],[44,5,5,129,134,[[1049,1,1,129,130],[1052,3,3,130,133],[1055,1,1,133,134]]],[45,2,2,134,136,[[1065,1,1,134,135],[1076,1,1,135,136]]],[46,6,5,136,141,[[1079,1,1,136,137],[1082,1,1,137,138],[1086,1,1,138,139],[1088,1,1,139,140],[1089,2,1,140,141]]],[47,1,1,141,142,[[1092,1,1,141,142]]],[49,2,2,142,144,[[1104,1,1,142,143],[1105,1,1,143,144]]],[54,2,2,144,146,[[1125,2,2,144,146]]],[57,4,4,146,150,[[1136,1,1,146,147],[1141,1,1,147,148],[1143,1,1,148,149],[1144,1,1,149,150]]],[59,2,2,150,152,[[1151,1,1,150,151],[1152,1,1,151,152]]],[60,1,1,152,153,[[1158,1,1,152,153]]],[62,1,1,153,154,[[1164,1,1,153,154]]],[65,13,13,154,167,[[1168,1,1,154,155],[1169,1,1,155,156],[1171,1,1,156,157],[1175,1,1,157,158],[1178,1,1,158,159],[1180,1,1,159,160],[1182,1,1,160,161],[1184,4,4,161,165],[1186,2,2,165,167]]]],[23162,23177,23323,23324,23330,23355,23456,23488,23532,23533,23583,23585,23697,23727,23740,23755,23798,23828,23845,23881,23882,24003,24094,24097,24114,24161,24252,24493,24642,24644,24653,24753,24770,24791,24794,24809,24923,24985,25018,25019,25080,25126,25153,25204,25205,25280,25313,25337,25414,25415,25429,25430,25496,25497,25502,25524,25525,25592,25593,25594,25596,25597,25612,25620,25669,25696,25761,25763,25779,25877,25909,25937,25939,25949,25957,25993,25994,26014,26015,26024,26085,26087,26089,26109,26224,26282,26362,26363,26364,26475,26490,26540,26594,26823,26829,26831,26904,27043,27069,27081,27082,27098,27127,27162,27216,27218,27249,27286,27333,27356,27368,27384,27390,27529,27546,27550,27559,27586,27604,27666,27743,27763,27774,27781,27787,27789,27861,27883,27913,28023,28101,28109,28112,28208,28435,28733,28837,28880,28960,29001,29042,29098,29399,29430,29826,29827,30030,30117,30177,30229,30381,30421,30536,30649,30719,30748,30783,30846,30899,30931,30974,31007,31014,31015,31017,31049,31053]]],["+",[2,2,[[39,1,1,0,1,[[929,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]]],[23162,27789]]],["find",[46,46,[[39,10,10,0,10,[[935,2,2,0,2],[938,1,1,2,3],[939,1,1,3,4],[944,1,1,4,5],[945,1,1,5,6],[946,1,1,6,7],[949,1,1,7,8],[950,1,1,8,9],[952,1,1,9,10]]],[40,3,3,10,13,[[967,2,2,10,12],[969,1,1,12,13]]],[41,14,14,13,27,[[974,1,1,13,14],[977,1,1,14,15],[978,1,1,15,16],[983,1,1,16,17],[984,3,3,17,20],[985,1,1,20,21],[987,2,2,21,23],[990,1,1,23,24],[991,2,2,24,26],[995,1,1,26,27]]],[42,8,8,27,35,[[1003,3,3,27,30],[1006,1,1,30,31],[1014,1,1,31,32],[1015,2,2,32,34],[1017,1,1,34,35]]],[43,3,3,35,38,[[1024,1,1,35,36],[1034,1,1,36,37],[1040,1,1,37,38]]],[44,2,2,38,40,[[1052,2,2,38,40]]],[46,2,2,40,42,[[1086,1,1,40,41],[1089,1,1,41,42]]],[54,1,1,42,43,[[1125,1,1,42,43]]],[57,1,1,43,44,[[1136,1,1,43,44]]],[65,2,2,44,46,[[1175,1,1,44,45],[1184,1,1,45,46]]]],[23323,23330,23456,23488,23697,23727,23740,23828,23881,24003,24642,24653,24753,24985,25126,25153,25414,25496,25497,25502,25525,25592,25596,25696,25761,25779,25939,26362,26363,26364,26490,26823,26829,26831,26904,27162,27550,27743,28109,28112,28960,29042,29827,30030,30846,31007]]],["findeth",[12,12,[[39,5,5,0,5,[[935,1,1,0,1],[938,1,1,1,2],[940,2,2,2,4],[954,1,1,4,5]]],[40,1,1,5,6,[[970,1,1,5,6]]],[41,2,2,6,8,[[983,2,2,6,8]]],[42,4,4,8,12,[[997,3,3,8,11],[1001,1,1,11,12]]]],[23324,23456,23532,23533,24094,24791,25415,25430,26085,26087,26089,26224]]],["finding",[4,4,[[41,1,1,0,1,[[983,1,1,0,1]]],[43,3,3,1,4,[[1021,1,1,1,2],[1036,1,1,2,3],[1038,1,1,3,4]]]],[25429,27043,27586,27666]]],["found",[110,106,[[39,12,11,0,11,[[930,1,1,0,1],[936,1,1,1,2],[941,2,2,2,4],[946,1,1,4,5],[948,1,1,5,6],[949,1,1,6,7],[950,1,1,7,8],[954,3,2,8,10],[955,1,1,10,11]]],[40,7,7,11,18,[[957,1,1,11,12],[963,1,1,12,13],[967,2,2,13,15],[970,3,3,15,18]]],[41,27,26,18,44,[[973,1,1,18,19],[974,2,2,19,21],[976,1,1,21,22],[979,2,2,22,24],[980,1,1,24,25],[981,1,1,25,26],[985,1,1,26,27],[987,6,5,27,32],[989,1,1,32,33],[991,1,1,33,34],[994,2,2,34,36],[995,3,3,36,39],[996,5,5,39,44]]],[42,7,7,44,51,[[997,2,2,44,46],[998,1,1,46,47],[1002,1,1,47,48],[1005,1,1,48,49],[1007,1,1,49,50],[1008,1,1,50,51]]],[43,27,25,51,76,[[1022,5,4,51,55],[1024,2,2,55,57],[1025,1,1,57,58],[1026,2,2,58,60],[1027,1,1,60,61],[1028,1,1,61,62],[1029,1,1,62,63],[1030,3,3,63,66],[1034,2,2,66,68],[1035,1,1,68,69],[1036,1,1,69,70],[1041,3,3,70,73],[1044,3,2,73,75],[1045,1,1,75,76]]],[44,3,3,76,79,[[1049,1,1,76,77],[1052,1,1,77,78],[1055,1,1,78,79]]],[45,2,2,79,81,[[1065,1,1,79,80],[1076,1,1,80,81]]],[46,4,4,81,85,[[1079,1,1,81,82],[1082,1,1,82,83],[1088,1,1,83,84],[1089,1,1,84,85]]],[47,1,1,85,86,[[1092,1,1,85,86]]],[49,2,2,86,88,[[1104,1,1,86,87],[1105,1,1,87,88]]],[54,1,1,88,89,[[1125,1,1,88,89]]],[57,2,2,89,91,[[1143,1,1,89,90],[1144,1,1,90,91]]],[59,2,2,91,93,[[1151,1,1,91,92],[1152,1,1,92,93]]],[60,1,1,93,94,[[1158,1,1,93,94]]],[62,1,1,94,95,[[1164,1,1,94,95]]],[65,11,11,95,106,[[1168,1,1,95,96],[1169,1,1,96,97],[1171,1,1,97,98],[1178,1,1,98,99],[1180,1,1,99,100],[1182,1,1,100,101],[1184,3,3,101,104],[1186,2,2,104,106]]]],[23177,23355,23583,23585,23755,23798,23845,23882,24097,24114,24161,24252,24493,24644,24653,24770,24794,24809,24923,25018,25019,25080,25204,25205,25280,25337,25524,25593,25594,25597,25612,25620,25669,25763,25877,25909,25937,25949,25957,25993,25994,26014,26015,26024,26085,26089,26109,26282,26475,26540,26594,27069,27081,27082,27098,27127,27162,27216,27218,27249,27286,27333,27356,27368,27384,27390,27529,27546,27559,27604,27774,27781,27787,27861,27883,27913,28023,28101,28208,28435,28733,28837,28880,29001,29042,29098,29399,29430,29826,30177,30229,30381,30421,30536,30649,30719,30748,30783,30899,30931,30974,31014,31015,31017,31049,31053]]],["get",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25313]]],["obtained",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30117]]],["perceived",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27763]]]]},{"k":"G2148","v":[["Euroclydon",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27869]]]]},{"k":"G2149","v":[["broad",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23329]]]]},{"k":"G2150","v":[["*",[15,15,[[43,1,1,0,1,[[1020,1,1,0,1]]],[53,8,8,1,9,[[1120,1,1,1,2],[1121,1,1,2,3],[1122,2,2,3,5],[1124,4,4,5,9]]],[54,1,1,9,10,[[1127,1,1,9,10]]],[55,1,1,10,11,[[1129,1,1,10,11]]],[60,4,4,11,15,[[1156,3,3,11,14],[1158,1,1,14,15]]]],[27008,29718,29747,29754,29755,29791,29793,29794,29799,29858,29893,30482,30485,30486,30533]]],["godliness",[14,14,[[53,8,8,0,8,[[1120,1,1,0,1],[1121,1,1,1,2],[1122,2,2,2,4],[1124,4,4,4,8]]],[54,1,1,8,9,[[1127,1,1,8,9]]],[55,1,1,9,10,[[1129,1,1,9,10]]],[60,4,4,10,14,[[1156,3,3,10,13],[1158,1,1,13,14]]]],[29718,29747,29754,29755,29791,29793,29794,29799,29858,29893,30482,30485,30486,30533]]],["holiness",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27008]]]]},{"k":"G2151","v":[["*",[2,2,[[43,1,1,0,1,[[1034,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[27546,29767]]],["piety",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29767]]],["worship",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27546]]]]},{"k":"G2152","v":[["*",[4,4,[[43,3,3,0,3,[[1027,2,2,0,2],[1039,1,1,2,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]]],[27261,27266,27716,30509]]],["devout",[3,3,[[43,3,3,0,3,[[1027,2,2,0,2],[1039,1,1,2,3]]]],[27261,27266,27716]]],["godly",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30509]]]]},{"k":"G2153","v":[["godly",[2,2,[[54,1,1,0,1,[[1127,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]]],[29865,29920]]]]},{"k":"G2154","v":[["understood",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28687]]]]},{"k":"G2155","v":[["*",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[29304,30432]]],["pitiful",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30432]]],["tenderhearted",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29304]]]]},{"k":"G2156","v":[["*",[3,3,[[44,1,1,0,1,[[1058,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]]],[28279,28718,29615]]],["decently",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28718]]],["honestly",[2,2,[[44,1,1,0,1,[[1058,1,1,0,1]]],[51,1,1,1,2,[[1114,1,1,1,2]]]],[28279,29615]]]]},{"k":"G2157","v":[["comeliness",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28657]]]]},{"k":"G2158","v":[["*",[5,5,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,2,2,1,3,[[1030,1,1,1,2],[1034,1,1,2,3]]],[45,2,2,3,5,[[1068,1,1,3,4],[1073,1,1,4,5]]]],[24869,27412,27535,28522,28658]]],["comely",[2,2,[[45,2,2,0,2,[[1068,1,1,0,1],[1073,1,1,1,2]]]],[28522,28658]]],["honourable",[3,3,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,2,2,1,3,[[1030,1,1,1,2],[1034,1,1,2,3]]]],[24869,27412,27535]]]]},{"k":"G2159","v":[["*",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]]],[25945,27585]]],["mightily",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27585]]],["vehemently",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25945]]]]},{"k":"G2160","v":[["jesting",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29308]]]]},{"k":"G2161","v":[["Eutychus",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27635]]]]},{"k":"G2162","v":[["report",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28906]]]]},{"k":"G2163","v":[["report",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29450]]]]},{"k":"G2164","v":[["plentifully",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25475]]]]},{"k":"G2165","v":[["*",[14,14,[[41,6,6,0,6,[[984,1,1,0,1],[987,4,4,1,5],[988,1,1,5,6]]],[43,2,2,6,8,[[1019,1,1,6,7],[1024,1,1,7,8]]],[44,1,1,8,9,[[1060,1,1,8,9]]],[46,1,1,9,10,[[1079,1,1,9,10]]],[47,1,1,10,11,[[1094,1,1,10,11]]],[65,3,3,11,14,[[1177,1,1,11,12],[1178,1,1,12,13],[1184,1,1,13,14]]]],[25478,25611,25612,25617,25620,25639,26975,27157,28313,28826,29158,30882,30903,31013]]],["+",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28826]]],["Rejoice",[3,3,[[44,1,1,0,1,[[1060,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[28313,29158,31013]]],["fared",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25639]]],["merry",[6,6,[[41,5,5,0,5,[[984,1,1,0,1],[987,4,4,1,5]]],[65,1,1,5,6,[[1177,1,1,5,6]]]],[25478,25611,25612,25617,25620,30882]]],["rejoice",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[65,1,1,1,2,[[1178,1,1,1,2]]]],[26975,30903]]],["rejoiced",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27157]]]]},{"k":"G2166","v":[["Euphrates",[2,2,[[65,2,2,0,2,[[1175,1,1,0,1],[1182,1,1,1,2]]]],[30854,30966]]]]},{"k":"G2167","v":[["*",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1031,1,1,1,2]]]],[26977,27431]]],["gladness",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27431]]],["joy",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26977]]]]},{"k":"G2168","v":[["*",[39,38,[[39,2,2,0,2,[[943,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[964,1,1,2,3],[970,1,1,3,4]]],[41,4,4,4,8,[[989,1,1,4,5],[990,1,1,5,6],[994,2,2,6,8]]],[42,3,3,8,11,[[1002,2,2,8,10],[1007,1,1,10,11]]],[43,2,2,11,13,[[1044,1,1,11,12],[1045,1,1,12,13]]],[44,6,5,13,18,[[1046,2,2,13,15],[1052,1,1,15,16],[1059,2,1,16,17],[1061,1,1,17,18]]],[45,6,6,18,24,[[1062,2,2,18,20],[1071,1,1,20,21],[1072,1,1,21,22],[1075,2,2,22,24]]],[46,1,1,24,25,[[1078,1,1,24,25]]],[48,2,2,25,27,[[1097,1,1,25,26],[1101,1,1,26,27]]],[49,1,1,27,28,[[1103,1,1,27,28]]],[50,3,3,28,31,[[1107,2,2,28,30],[1109,1,1,30,31]]],[51,3,3,31,34,[[1111,1,1,31,32],[1112,1,1,32,33],[1115,1,1,33,34]]],[52,2,2,34,36,[[1116,1,1,34,35],[1117,1,1,35,36]]],[56,1,1,36,37,[[1132,1,1,36,37]]],[65,1,1,37,38,[[1177,1,1,37,38]]]],[23669,24081,24506,24777,25667,25699,25881,25883,26268,26280,26564,27890,27914,27938,27951,28116,28286,28340,28367,28377,28597,28624,28695,28696,28811,29222,29324,29364,29468,29477,29534,29562,29583,29639,29652,29674,29942,30889]]],["+",[4,3,[[41,1,1,0,1,[[989,1,1,0,1]]],[44,2,1,1,2,[[1059,2,1,1,2]]],[65,1,1,2,3,[[1177,1,1,2,3]]]],[25667,28286,30889]]],["given",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28811]]],["thank",[11,11,[[41,1,1,0,1,[[990,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]],[44,2,2,2,4,[[1046,1,1,2,3],[1052,1,1,3,4]]],[45,3,3,4,7,[[1062,2,2,4,6],[1075,1,1,6,7]]],[49,1,1,7,8,[[1103,1,1,7,8]]],[51,1,1,8,9,[[1112,1,1,8,9]]],[52,1,1,9,10,[[1116,1,1,9,10]]],[56,1,1,10,11,[[1132,1,1,10,11]]]],[25699,26564,27938,28116,28367,28377,28696,29364,29583,29652,29942]]],["thanked",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27914]]],["thankful",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27951]]],["thanks",[21,21,[[39,2,2,0,2,[[943,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[964,1,1,2,3],[970,1,1,3,4]]],[41,2,2,4,6,[[994,2,2,4,6]]],[42,2,2,6,8,[[1002,2,2,6,8]]],[43,1,1,8,9,[[1044,1,1,8,9]]],[44,1,1,9,10,[[1061,1,1,9,10]]],[45,3,3,10,13,[[1071,1,1,10,11],[1072,1,1,11,12],[1075,1,1,12,13]]],[48,2,2,13,15,[[1097,1,1,13,14],[1101,1,1,14,15]]],[50,3,3,15,18,[[1107,2,2,15,17],[1109,1,1,17,18]]],[51,2,2,18,20,[[1111,1,1,18,19],[1115,1,1,19,20]]],[52,1,1,20,21,[[1117,1,1,20,21]]]],[23669,24081,24506,24777,25881,25883,26268,26280,27890,28340,28597,28624,28695,29222,29324,29468,29477,29534,29562,29639,29674]]]]},{"k":"G2169","v":[["*",[15,15,[[43,1,1,0,1,[[1041,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[46,3,3,2,5,[[1081,1,1,2,3],[1086,2,2,3,5]]],[48,1,1,5,6,[[1101,1,1,5,6]]],[49,1,1,6,7,[[1106,1,1,6,7]]],[50,2,2,7,9,[[1108,1,1,7,8],[1110,1,1,8,9]]],[51,1,1,9,10,[[1113,1,1,9,10]]],[53,3,3,10,13,[[1120,1,1,10,11],[1122,2,2,11,13]]],[65,2,2,13,15,[[1170,1,1,13,14],[1173,1,1,14,15]]]],[27772,28694,28874,28967,28968,29308,29448,29501,29544,29599,29717,29750,29751,30777,30822]]],["thankfulness",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27772]]],["thanks",[5,5,[[45,1,1,0,1,[[1075,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]],[51,1,1,2,3,[[1113,1,1,2,3]]],[53,1,1,3,4,[[1120,1,1,3,4]]],[65,1,1,4,5,[[1170,1,1,4,5]]]],[28694,29308,29599,29717,30777]]],["thanksgiving",[8,8,[[46,2,2,0,2,[[1081,1,1,0,1],[1086,1,1,1,2]]],[49,1,1,2,3,[[1106,1,1,2,3]]],[50,2,2,3,5,[[1108,1,1,3,4],[1110,1,1,4,5]]],[53,2,2,5,7,[[1122,2,2,5,7]]],[65,1,1,7,8,[[1173,1,1,7,8]]]],[28874,28967,29448,29501,29544,29750,29751,30822]]],["thanksgivings",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28968]]]]},{"k":"G2170","v":[["thankful",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29532]]]]},{"k":"G2171","v":[["*",[3,3,[[43,2,2,0,2,[[1035,1,1,0,1],[1038,1,1,1,2]]],[58,1,1,2,3,[[1150,1,1,2,3]]]],[27575,27687,30369]]],["prayer",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30369]]],["vow",[2,2,[[43,2,2,0,2,[[1035,1,1,0,1],[1038,1,1,1,2]]]],[27575,27687]]]]},{"k":"G2172","v":[["*",[7,7,[[43,2,2,0,2,[[1043,1,1,0,1],[1044,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]],[46,2,2,3,5,[[1090,2,2,3,5]]],[58,1,1,5,6,[[1150,1,1,5,6]]],[63,1,1,6,7,[[1165,1,1,6,7]]]],[27852,27884,28158,29050,29052,30370,30660]]],["+",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27852]]],["pray",[2,2,[[46,1,1,0,1,[[1090,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[29050,30370]]],["wish",[3,3,[[44,1,1,0,1,[[1054,1,1,0,1]]],[46,1,1,1,2,[[1090,1,1,1,2]]],[63,1,1,2,3,[[1165,1,1,2,3]]]],[28158,29052,30660]]],["wished",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27884]]]]},{"k":"G2173","v":[["*",[3,3,[[54,2,2,0,2,[[1126,1,1,0,1],[1128,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]]],[29848,29881,29949]]],["+",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29848]]],["profitable",[2,2,[[54,1,1,0,1,[[1128,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[29881,29949]]]]},{"k":"G2174","v":[["comfort",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29410]]]]},{"k":"G2175","v":[["*",[3,3,[[46,1,1,0,1,[[1079,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]],[49,1,1,2,3,[[1106,1,1,2,3]]]],[28839,29306,29460]]],["savour",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28839]]],["smell",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29460]]],["sweetsmelling",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29306]]]]},{"k":"G2176","v":[["*",[10,10,[[39,5,5,0,5,[[948,2,2,0,2],[953,2,2,2,4],[955,1,1,4,5]]],[40,3,3,5,8,[[966,2,2,5,7],[971,1,1,7,8]]],[43,1,1,8,9,[[1038,1,1,8,9]]],[65,1,1,9,10,[[1176,1,1,9,10]]]],[23813,23815,24041,24049,24167,24625,24628,24853,27667,30863]]],["hand",[4,4,[[39,1,1,0,1,[[953,1,1,0,1]]],[40,2,2,1,3,[[966,2,2,1,3]]],[43,1,1,3,4,[[1038,1,1,3,4]]]],[24049,24625,24628,27667]]],["left",[6,6,[[39,4,4,0,4,[[948,2,2,0,2],[953,1,1,2,3],[955,1,1,3,4]]],[40,1,1,4,5,[[971,1,1,4,5]]],[65,1,1,5,6,[[1176,1,1,5,6]]]],[23813,23815,24041,24167,24853,30863]]]]},{"k":"G2177","v":[["leaped",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27601]]]]},{"k":"G2178","v":[["once",[5,5,[[44,1,1,0,1,[[1051,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[57,3,3,2,5,[[1139,1,1,2,3],[1141,1,1,3,4],[1142,1,1,4,5]]]],[28078,28724,30091,30117,30143]]]]},{"k":"G2179","v":[["Ephesus",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30718]]]]},{"k":"G2180","v":[["*",[5,4,[[43,5,4,0,4,[[1036,4,3,0,3],[1038,1,1,3,4]]]],[27613,27619,27620,27693]]],["+",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27620]]],["Ephesian",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27693]]],["Ephesians",[3,3,[[43,3,3,0,3,[[1036,3,3,0,3]]]],[27613,27619,27620]]]]},{"k":"G2181","v":[["Ephesus",[15,15,[[43,8,8,0,8,[[1035,3,3,0,3],[1036,3,3,3,6],[1037,2,2,6,8]]],[45,2,2,8,10,[[1076,1,1,8,9],[1077,1,1,9,10]]],[48,1,1,10,11,[[1097,1,1,10,11]]],[53,1,1,11,12,[[1119,1,1,11,12]]],[54,2,2,12,14,[[1125,1,1,12,13],[1128,1,1,13,14]]],[65,1,1,14,15,[[1167,1,1,14,15]]]],[27576,27578,27581,27586,27602,27611,27642,27643,28750,28784,29207,29699,29827,29882,30708]]]]},{"k":"G2182","v":[["inventors",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27960]]]]},{"k":"G2183","v":[["course",[2,2,[[41,2,2,0,2,[[973,2,2,0,2]]]],[24898,24901]]]]},{"k":"G2184","v":[["daily",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30308]]]]},{"k":"G2185","v":[["*",[2,2,[[46,2,2,0,2,[[1087,2,2,0,2]]]],[28984,28985]]],["reach",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28984]]],["reached",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28985]]]]},{"k":"G2186","v":[["*",[21,21,[[41,7,7,0,7,[[974,2,2,0,2],[976,1,1,2,3],[982,1,1,3,4],[992,1,1,4,5],[993,1,1,5,6],[996,1,1,6,7]]],[43,11,11,7,18,[[1021,1,1,7,8],[1023,1,1,8,9],[1027,1,1,9,10],[1028,1,1,10,11],[1029,1,1,11,12],[1034,1,1,12,13],[1039,2,2,13,15],[1040,2,2,15,17],[1045,1,1,17,18]]],[51,1,1,18,19,[[1115,1,1,18,19]]],[54,2,2,19,21,[[1128,2,2,19,21]]]],[24982,25011,25102,25403,25780,25860,25995,27023,27113,27276,27318,27344,27528,27717,27724,27745,27761,27901,29624,29872,29876]]],["assaulted",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27528]]],["by",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,2,2,1,3,[[1039,1,1,1,2],[1040,1,1,2,3]]]],[25995,27724,27745]]],["came",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[25403,27761]]],["come",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[43,1,1,1,2,[[1028,1,1,1,2]]]],[25860,27318]]],["coming",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25011]]],["hand",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29876]]],["instant",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29872]]],["present",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27901]]],["stood",[3,3,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,2,2,1,3,[[1027,1,1,1,2],[1039,1,1,2,3]]]],[25102,27276,27717]]],["upon",[6,6,[[41,2,2,0,2,[[974,1,1,0,1],[992,1,1,1,2]]],[43,3,3,2,5,[[1021,1,1,2,3],[1023,1,1,3,4],[1029,1,1,4,5]]],[51,1,1,5,6,[[1115,1,1,5,6]]]],[24982,25780,27023,27113,27344,29624]]]]},{"k":"G2187","v":[["Ephraim",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26577]]]]},{"k":"G2188","v":[["Ephphatha",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24497]]]]},{"k":"G2189","v":[["*",[6,6,[[41,1,1,0,1,[[995,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]],[48,2,2,3,5,[[1098,2,2,3,5]]],[58,1,1,5,6,[[1149,1,1,5,6]]]],[25947,28123,29182,29244,29245,30341]]],["enmity",[5,5,[[41,1,1,0,1,[[995,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]],[48,2,2,2,4,[[1098,2,2,2,4]]],[58,1,1,4,5,[[1149,1,1,4,5]]]],[25947,28123,29244,29245,30341]]],["hatred",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29182]]]]},{"k":"G2190","v":[["*",[32,32,[[39,7,7,0,7,[[933,2,2,0,2],[938,1,1,2,3],[941,3,3,3,6],[950,1,1,6,7]]],[40,1,1,7,8,[[968,1,1,7,8]]],[41,8,8,8,16,[[973,2,2,8,10],[978,2,2,10,12],[982,1,1,12,13],[991,2,2,13,15],[992,1,1,15,16]]],[43,2,2,16,18,[[1019,1,1,16,17],[1030,1,1,17,18]]],[44,3,3,18,21,[[1050,1,1,18,19],[1056,1,1,19,20],[1057,1,1,20,21]]],[45,2,2,21,23,[[1076,2,2,21,23]]],[47,1,1,23,24,[[1094,1,1,23,24]]],[49,1,1,24,25,[[1105,1,1,24,25]]],[50,1,1,25,26,[[1107,1,1,25,26]]],[52,1,1,26,27,[[1118,1,1,26,27]]],[57,2,2,27,29,[[1133,1,1,27,28],[1142,1,1,28,29]]],[58,1,1,29,30,[[1149,1,1,29,30]]],[65,2,2,30,32,[[1177,2,2,30,32]]]],[23277,23278,23453,23564,23567,23578,23916,24709,24964,24967,25173,25181,25382,25758,25774,25822,26984,27372,28057,28237,28265,28743,28744,29147,29439,29486,29693,29976,30146,30341,30877,30884]]],["enemies",[19,19,[[39,2,2,0,2,[[933,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,7,7,3,10,[[973,2,2,3,5],[978,2,2,5,7],[991,2,2,7,9],[992,1,1,9,10]]],[44,2,2,10,12,[[1050,1,1,10,11],[1056,1,1,11,12]]],[45,1,1,12,13,[[1076,1,1,12,13]]],[49,1,1,13,14,[[1105,1,1,13,14]]],[50,1,1,14,15,[[1107,1,1,14,15]]],[57,2,2,15,17,[[1133,1,1,15,16],[1142,1,1,16,17]]],[65,2,2,17,19,[[1177,2,2,17,19]]]],[23278,23916,24709,24964,24967,25173,25181,25758,25774,25822,28057,28237,28743,29439,29486,29976,30146,30877,30884]]],["enemy",[11,11,[[39,4,4,0,4,[[933,1,1,0,1],[941,3,3,1,4]]],[41,1,1,4,5,[[982,1,1,4,5]]],[43,1,1,5,6,[[1030,1,1,5,6]]],[44,1,1,6,7,[[1057,1,1,6,7]]],[45,1,1,7,8,[[1076,1,1,7,8]]],[47,1,1,8,9,[[1094,1,1,8,9]]],[52,1,1,9,10,[[1118,1,1,9,10]]],[58,1,1,10,11,[[1149,1,1,10,11]]]],[23277,23564,23567,23578,25382,27372,28265,28744,29147,29693,30341]]],["foes",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[23453,26984]]]]},{"k":"G2191","v":[["*",[5,5,[[39,3,3,0,3,[[931,1,1,0,1],[940,1,1,1,2],[951,1,1,2,3]]],[41,1,1,3,4,[[975,1,1,3,4]]],[43,1,1,4,5,[[1045,1,1,4,5]]]],[23199,23523,23951,25032,27902]]],["viper",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27902]]],["vipers",[4,4,[[39,3,3,0,3,[[931,1,1,0,1],[940,1,1,1,2],[951,1,1,2,3]]],[41,1,1,3,4,[[975,1,1,3,4]]]],[23199,23523,23951,25032]]]]},{"k":"G2192","v":[["*",[709,626,[[39,72,63,0,63,[[929,2,2,0,2],[931,3,3,2,5],[932,1,1,5,6],[933,2,2,6,8],[934,2,2,8,10],[935,1,1,10,11],[936,4,3,11,14],[937,4,3,14,17],[939,2,2,17,19],[940,2,2,19,21],[941,12,9,21,30],[942,5,5,30,35],[943,3,3,35,38],[945,1,1,38,39],[946,4,3,39,42],[947,3,3,42,45],[949,5,5,45,50],[950,4,4,50,54],[952,1,1,54,55],[953,5,3,55,58],[954,4,3,58,61],[955,2,2,61,63]]],[40,72,64,63,127,[[957,4,4,63,67],[958,5,4,67,71],[959,8,8,71,79],[960,10,7,79,86],[961,3,3,86,89],[962,5,5,89,94],[963,2,2,94,96],[964,10,8,96,104],[965,5,5,104,109],[966,4,3,109,112],[967,5,5,112,117],[968,3,3,117,120],[969,1,1,120,121],[970,5,4,121,125],[972,2,2,125,127]]],[41,78,66,127,193,[[975,4,2,127,129],[976,2,2,129,131],[977,3,2,131,133],[978,1,1,133,134],[979,5,5,134,139],[980,7,5,139,144],[981,4,3,144,147],[983,3,3,147,150],[984,5,5,150,155],[985,3,3,155,158],[986,6,5,158,163],[987,4,4,163,167],[988,3,3,167,170],[989,3,3,170,173],[990,3,2,173,175],[991,9,7,175,182],[992,3,3,182,185],[993,2,2,185,187],[994,4,3,187,190],[995,1,1,190,191],[996,3,2,191,193]]],[42,87,75,193,268,[[998,2,2,193,195],[999,4,4,195,199],[1000,9,6,199,205],[1001,12,11,205,216],[1002,6,6,216,222],[1003,1,1,222,223],[1004,8,8,223,231],[1005,3,3,231,234],[1006,6,4,234,238],[1007,1,1,238,239],[1008,6,5,239,244],[1009,5,4,244,248],[1010,2,2,248,250],[1011,4,3,250,253],[1012,7,6,253,259],[1013,2,2,259,261],[1014,1,1,261,262],[1015,6,4,262,266],[1016,1,1,266,267],[1017,1,1,267,268]]],[43,44,43,268,311,[[1018,1,1,268,269],[1019,3,3,269,272],[1020,1,1,272,273],[1021,2,2,273,275],[1024,1,1,275,276],[1025,1,1,276,277],[1026,2,2,277,279],[1029,1,1,279,280],[1030,1,1,280,281],[1031,1,1,281,282],[1032,2,2,282,284],[1033,1,1,284,285],[1034,1,1,285,286],[1035,1,1,286,287],[1036,2,2,287,289],[1037,2,2,289,291],[1038,3,3,291,294],[1040,4,4,294,298],[1041,6,6,298,304],[1042,4,3,304,307],[1044,1,1,307,308],[1045,3,3,308,311]]],[44,25,21,311,332,[[1046,2,2,311,313],[1047,3,2,313,315],[1049,1,1,315,316],[1050,2,2,316,318],[1051,2,2,318,320],[1053,2,2,320,322],[1054,2,2,322,324],[1055,1,1,324,325],[1057,3,2,325,327],[1058,1,1,327,328],[1059,2,1,328,329],[1060,4,3,329,332]]],[45,49,38,332,370,[[1063,1,1,332,333],[1065,2,2,333,335],[1066,1,1,335,336],[1067,4,4,336,340],[1068,12,9,340,349],[1069,2,2,349,351],[1070,4,4,351,355],[1072,5,4,355,359],[1073,6,5,359,364],[1074,5,3,364,367],[1075,5,1,367,368],[1076,2,2,368,370]]],[46,22,21,370,391,[[1078,2,2,370,372],[1079,3,3,372,375],[1080,2,2,375,377],[1081,3,3,377,380],[1082,2,2,380,382],[1083,1,1,382,383],[1084,2,2,383,385],[1085,3,2,385,387],[1086,1,1,387,388],[1087,2,2,388,390],[1089,1,1,390,391]]],[47,6,5,391,396,[[1092,1,1,391,392],[1094,3,2,392,394],[1096,2,2,394,396]]],[48,8,7,396,403,[[1097,1,1,396,397],[1098,2,2,397,399],[1099,1,1,399,400],[1100,2,1,400,401],[1101,2,2,401,403]]],[49,10,10,403,413,[[1103,3,3,403,406],[1104,4,4,406,410],[1105,3,3,410,413]]],[50,6,6,413,419,[[1107,1,1,413,414],[1108,2,2,414,416],[1109,1,1,416,417],[1110,2,2,417,419]]],[51,8,8,419,427,[[1111,2,2,419,421],[1113,1,1,421,422],[1114,3,3,422,425],[1115,2,2,425,427]]],[52,1,1,427,428,[[1118,1,1,427,428]]],[53,14,14,428,442,[[1119,2,2,428,430],[1121,3,3,430,433],[1122,1,1,433,434],[1123,5,5,434,439],[1124,3,3,439,442]]],[54,6,5,442,447,[[1125,3,2,442,444],[1126,2,2,444,446],[1127,1,1,446,447]]],[55,2,2,447,449,[[1129,1,1,447,448],[1130,1,1,448,449]]],[56,4,4,449,453,[[1132,4,4,449,453]]],[57,38,35,453,488,[[1134,1,1,453,454],[1135,1,1,454,455],[1136,2,2,455,457],[1137,3,2,457,459],[1138,4,4,459,463],[1139,6,6,463,469],[1140,2,2,469,471],[1141,4,3,471,474],[1142,6,6,474,480],[1143,3,3,480,483],[1144,2,2,483,485],[1145,4,3,485,488]]],[58,10,7,488,495,[[1146,1,1,488,489],[1147,6,4,489,493],[1148,1,1,493,494],[1149,2,1,494,495]]],[59,5,5,495,500,[[1152,2,2,495,497],[1153,1,1,497,498],[1154,2,2,498,500]]],[60,5,4,500,504,[[1156,2,2,500,502],[1157,3,2,502,504]]],[61,28,23,504,527,[[1159,4,4,504,508],[1160,7,6,508,514],[1161,5,4,514,518],[1162,4,4,518,522],[1163,8,5,522,527]]],[62,4,3,527,530,[[1164,4,3,527,530]]],[63,2,2,530,532,[[1165,2,2,530,532]]],[64,2,2,532,534,[[1166,2,2,532,534]]],[65,101,92,534,626,[[1167,2,2,534,536],[1168,16,15,536,551],[1169,10,9,551,560],[1170,4,3,560,563],[1171,2,2,563,565],[1172,3,3,565,568],[1173,1,1,568,569],[1174,3,3,569,572],[1175,10,9,572,581],[1176,1,1,581,582],[1177,2,1,582,583],[1178,6,5,583,588],[1179,6,6,588,594],[1180,7,6,594,600],[1181,3,3,600,603],[1182,2,2,603,605],[1183,7,7,605,612],[1184,2,2,612,614],[1185,3,3,614,617],[1186,3,2,617,619],[1187,7,6,619,625],[1188,1,1,625,626]]]],[23162,23167,23196,23201,23206,23233,23257,23280,23283,23290,23345,23354,23361,23365,23385,23391,23415,23474,23477,23499,23500,23544,23545,23548,23551,23560,23566,23582,23583,23585,23601,23602,23613,23614,23632,23663,23665,23667,23720,23735,23736,23752,23778,23783,23784,23829,23847,23852,23854,23872,23884,23896,23897,23900,23976,24033,24036,24037,24061,24065,24119,24145,24194,24237,24247,24249,24253,24270,24277,24279,24285,24289,24291,24298,24303,24310,24314,24317,24318,24328,24329,24332,24340,24346,24348,24363,24367,24379,24387,24425,24441,24443,24445,24462,24479,24488,24501,24502,24505,24507,24514,24516,24517,24518,24555,24581,24583,24585,24588,24609,24610,24611,24643,24653,24662,24665,24672,24679,24696,24717,24734,24757,24761,24762,24817,24881,24891,25033,25036,25096,25103,25131,25138,25154,25197,25203,25228,25235,25237,25251,25253,25258,25263,25272,25304,25312,25359,25410,25411,25441,25463,25464,25476,25478,25509,25524,25529,25551,25567,25571,25572,25581,25588,25592,25595,25596,25599,25621,25648,25649,25657,25658,25660,25710,25712,25748,25751,25755,25756,25757,25762,25765,25803,25807,25812,25830,25849,25900,25901,25935,25952,26030,26032,26098,26120,26135,26136,26149,26156,26167,26173,26174,26188,26200,26208,26212,26215,26216,26217,26234,26236,26246,26248,26249,26250,26252,26266,26297,26304,26310,26311,26325,26348,26387,26393,26407,26422,26429,26430,26433,26438,26461,26463,26481,26491,26497,26499,26501,26540,26586,26588,26615,26616,26628,26638,26640,26659,26665,26689,26698,26712,26721,26723,26738,26741,26747,26748,26756,26759,26764,26772,26795,26832,26835,26836,26840,26898,26903,26935,26993,26994,26996,27002,27036,27057,27117,27183,27230,27247,27352,27367,27423,27463,27478,27499,27534,27575,27598,27623,27641,27650,27677,27687,27690,27751,27752,27753,27763,27778,27784,27785,27788,27792,27794,27812,27815,27822,27894,27908,27918,27928,27943,27958,27976,27982,28024,28048,28049,28089,28090,28125,28139,28165,28176,28190,28249,28251,28269,28302,28307,28320,28326,28410,28440,28448,28455,28468,28471,28474,28486,28489,28494,28499,28500,28512,28515,28516,28524,28527,28528,28537,28544,28545,28546,28557,28604,28610,28616,28622,28646,28655,28657,28658,28664,28666,28667,28668,28704,28749,28752,28809,28815,28827,28828,28837,28845,28853,28860,28866,28872,28878,28889,28908,28917,28921,28943,28944,28964,28977,28986,29036,29085,29153,29158,29192,29198,29213,29241,29247,29263,29300,29309,29331,29368,29384,29391,29393,29411,29418,29420,29425,29430,29438,29479,29495,29517,29530,29543,29555,29568,29569,29596,29612,29615,29616,29622,29624,29687,29708,29715,29735,29738,29740,29755,29767,29775,29779,29783,29788,29790,29796,29804,29812,29822,29844,29846,29858,29898,29916,29943,29945,29946,29955,29991,29998,30028,30029,30042,30044,30053,30057,30062,30063,30067,30069,30070,30088,30091,30092,30093,30095,30106,30109,30113,30134,30135,30152,30167,30168,30169,30182,30187,30197,30221,30240,30251,30255,30259,30270,30294,30307,30310,30311,30333,30339,30411,30415,30440,30451,30454,30494,30498,30514,30516,30543,30546,30547,30548,30551,30557,30570,30573,30577,30578,30582,30594,30596,30600,30619,30620,30621,30624,30634,30636,30637,30638,30639,30650,30654,30657,30662,30671,30675,30691,30713,30715,30720,30721,30723,30724,30727,30728,30729,30731,30732,30734,30735,30737,30741,30742,30746,30747,30750,30752,30753,30754,30757,30759,30763,30768,30772,30775,30776,30785,30787,30795,30798,30802,30812,30830,30833,30836,30843,30844,30848,30849,30850,30851,30854,30857,30859,30863,30878,30893,30894,30897,30903,30908,30909,30917,30919,30922,30925,30926,30927,30932,30937,30940,30943,30944,30947,30948,30952,30956,30963,30976,30978,30979,30982,30984,30988,30993,30994,31012,31027,31029,31033,31039,31044,31062,31064,31065,31067,31068,31076,31085]]],["+",[63,61,[[39,11,10,0,10,[[929,2,2,0,2],[932,1,1,2,3],[936,1,1,3,4],[937,2,1,4,5],[942,3,3,5,8],[947,1,1,8,9],[952,1,1,9,10]]],[40,10,10,10,20,[[957,2,2,10,12],[958,1,1,12,13],[961,1,1,13,14],[962,1,1,14,15],[966,1,1,15,16],[969,1,1,16,17],[970,1,1,17,18],[972,2,2,18,20]]],[41,10,9,20,29,[[977,2,1,20,21],[979,1,1,21,22],[980,1,1,22,23],[986,1,1,23,24],[987,1,1,24,25],[989,1,1,25,26],[991,1,1,26,27],[993,1,1,27,28],[994,1,1,28,29]]],[42,8,8,29,37,[[998,1,1,29,30],[1000,1,1,30,31],[1005,3,3,31,34],[1009,1,1,34,35],[1010,1,1,35,36],[1012,1,1,36,37]]],[43,2,2,37,39,[[1041,2,2,37,39]]],[45,2,2,39,41,[[1067,1,1,39,40],[1076,1,1,40,41]]],[46,1,1,41,42,[[1085,1,1,41,42]]],[48,1,1,42,43,[[1100,1,1,42,43]]],[50,1,1,43,44,[[1108,1,1,43,44]]],[51,3,3,44,47,[[1111,1,1,44,45],[1114,1,1,45,46],[1115,1,1,46,47]]],[53,2,2,47,49,[[1119,1,1,47,48],[1123,1,1,48,49]]],[54,2,2,49,51,[[1125,1,1,49,50],[1126,1,1,50,51]]],[57,3,3,51,54,[[1139,1,1,51,52],[1143,2,2,52,54]]],[60,1,1,54,55,[[1157,1,1,54,55]]],[61,1,1,55,56,[[1160,1,1,55,56]]],[64,1,1,56,57,[[1166,1,1,56,57]]],[65,4,4,57,61,[[1170,1,1,57,58],[1178,1,1,58,59],[1183,1,1,59,60],[1188,1,1,60,61]]]],[23162,23167,23233,23361,23391,23613,23614,23632,23784,23976,24247,24249,24277,24387,24462,24610,24734,24817,24881,24891,25138,25197,25251,25567,25595,25660,25748,25849,25935,26120,26208,26461,26463,26481,26640,26698,26756,27788,27794,28474,28752,28944,29300,29517,29568,29612,29624,29708,29783,29812,29844,30091,30187,30197,30516,30577,30675,30776,30893,30993,31085]]],["Are",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27117]]],["Hast",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28302]]],["Hath",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28176]]],["Have",[6,6,[[40,2,2,0,2,[[965,1,1,0,1],[967,1,1,1,2]]],[41,1,1,2,3,[[996,1,1,2,3]]],[45,3,3,3,6,[[1070,2,2,3,5],[1073,1,1,5,6]]]],[24588,24662,26032,28544,28545,28664]]],["Having",[13,13,[[40,2,2,0,2,[[964,1,1,0,1],[968,1,1,1,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[46,1,1,3,4,[[1084,1,1,3,4]]],[49,1,1,4,5,[[1103,1,1,4,5]]],[53,1,1,5,6,[[1123,1,1,5,6]]],[54,1,1,6,7,[[1127,1,1,6,7]]],[57,1,1,7,8,[[1142,1,1,7,8]]],[59,2,2,8,10,[[1152,1,1,8,9],[1153,1,1,9,10]]],[60,1,1,10,11,[[1157,1,1,10,11]]],[62,1,1,11,12,[[1164,1,1,11,12]]],[65,1,1,12,13,[[1187,1,1,12,13]]]],[24518,24679,28251,28917,29391,29775,29858,30152,30411,30440,30514,30657,31064]]],["Holding",[2,2,[[53,2,2,0,2,[[1119,1,1,0,1],[1121,1,1,1,2]]]],[29715,29740]]],["a",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26935]]],["accompany",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30053]]],["am",[2,2,[[43,1,1,0,1,[[1038,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]]],[27677,29036]]],["are",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29788]]],["art",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26438]]],["be",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29946]]],["been",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26216]]],["could",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]]],[24762,27036,30057]]],["count",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[27650,29955]]],["counted",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]]],[23602,24672]]],["do",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27478]]],["fast",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29822]]],["following",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25551]]],["had",[107,101,[[39,11,9,0,9,[[931,1,1,0,1],[940,1,1,1,2],[941,4,3,2,5],[946,2,1,5,6],[949,1,1,6,7],[950,1,1,7,8],[955,1,1,8,9]]],[40,15,14,9,23,[[957,1,1,9,10],[958,1,1,10,11],[959,3,3,11,14],[960,3,2,14,16],[961,2,2,16,18],[963,1,1,18,19],[964,2,2,19,21],[968,2,2,21,23]]],[41,13,13,23,36,[[976,2,2,23,25],[978,1,1,25,26],[979,1,1,26,27],[980,1,1,27,28],[981,1,1,28,29],[985,2,2,29,31],[987,1,1,31,32],[988,1,1,32,33],[989,1,1,33,34],[992,1,1,34,35],[993,1,1,35,36]]],[42,8,8,36,44,[[1000,1,1,36,37],[1001,1,1,37,38],[1007,1,1,38,39],[1008,1,1,39,40],[1009,1,1,40,41],[1011,2,2,41,43],[1013,1,1,43,44]]],[43,12,12,44,56,[[1019,2,2,44,46],[1021,1,1,46,47],[1026,1,1,47,48],[1030,1,1,48,49],[1031,1,1,49,50],[1035,1,1,50,51],[1036,1,1,51,52],[1042,1,1,52,53],[1045,3,3,53,56]]],[44,2,2,56,58,[[1051,1,1,56,57],[1054,1,1,57,58]]],[45,1,1,58,59,[[1068,1,1,58,59]]],[46,3,3,59,62,[[1078,1,1,59,60],[1079,1,1,60,61],[1084,1,1,61,62]]],[47,1,1,62,63,[[1094,1,1,62,63]]],[51,1,1,63,64,[[1111,1,1,63,64]]],[57,7,6,64,70,[[1134,1,1,64,65],[1139,1,1,65,66],[1141,3,2,66,68],[1142,1,1,68,69],[1144,1,1,69,70]]],[61,1,1,70,71,[[1160,1,1,70,71]]],[62,1,1,71,72,[[1164,1,1,71,72]]],[63,1,1,72,73,[[1165,1,1,72,73]]],[65,30,28,73,101,[[1167,1,1,73,74],[1170,3,3,74,77],[1172,2,2,77,79],[1174,2,2,79,81],[1175,6,6,81,87],[1176,1,1,87,88],[1179,3,3,88,91],[1180,2,1,91,92],[1182,1,1,92,93],[1183,1,1,93,94],[1184,1,1,94,95],[1185,1,1,95,96],[1187,6,5,96,101]]]],[23196,23499,23544,23545,23585,23752,23854,23900,24145,24237,24285,24289,24291,24298,24328,24329,24367,24379,24488,24507,24514,24696,24717,25096,25103,25154,25237,25272,25312,25524,25529,25599,25621,25657,25812,25830,26174,26215,26540,26586,26659,26721,26723,26764,26993,26994,27057,27247,27367,27423,27575,27598,27815,27908,27918,27928,28089,28165,28516,28809,28837,28921,29153,29569,29991,30070,30106,30109,30135,30221,30557,30650,30671,30713,30772,30775,30776,30795,30798,30833,30836,30848,30849,30850,30851,30854,30859,30863,30919,30922,30925,30944,30956,30976,31012,31029,31062,31065,31067,31068,31076]]],["hast",[26,25,[[39,1,1,0,1,[[953,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,2,2,2,4,[[984,1,1,2,3],[990,1,1,3,4]]],[42,8,7,4,11,[[1000,3,2,4,6],[1002,1,1,6,7],[1003,1,1,7,8],[1004,2,2,8,10],[1009,1,1,10,11]]],[43,1,1,11,12,[[1040,1,1,11,12]]],[44,1,1,12,13,[[1047,1,1,12,13]]],[45,2,2,13,15,[[1065,1,1,13,14],[1069,1,1,14,15]]],[56,1,1,15,16,[[1132,1,1,15,16]]],[58,1,1,16,17,[[1147,1,1,16,17]]],[65,8,8,17,25,[[1168,4,4,17,21],[1169,4,4,21,25]]]],[24033,24609,25478,25710,26167,26174,26325,26348,26429,26433,26638,27753,27982,28440,28537,29943,30311,30720,30723,30731,30732,30747,30750,30754,30757]]],["hath",[128,105,[[39,18,14,0,14,[[933,1,1,0,1],[936,1,1,1,2],[937,1,1,2,3],[939,2,2,3,5],[941,8,6,5,11],[949,1,1,11,12],[953,4,2,12,14]]],[40,11,9,14,23,[[958,1,1,14,15],[959,4,4,15,19],[960,4,2,19,21],[965,1,1,21,22],[967,1,1,22,23]]],[41,22,16,23,39,[[975,3,1,23,24],[977,1,1,24,25],[979,1,1,25,26],[980,3,2,26,28],[981,1,1,28,29],[984,1,1,29,30],[986,1,1,30,31],[991,7,5,31,36],[992,1,1,36,37],[994,2,1,37,38],[996,1,1,38,39]]],[42,15,15,39,54,[[999,2,2,39,41],[1000,1,1,41,42],[1001,2,2,42,44],[1002,3,3,44,47],[1006,1,1,47,48],[1008,1,1,48,49],[1010,1,1,49,50],[1011,1,1,50,51],[1012,2,2,51,53],[1015,1,1,53,54]]],[43,4,4,54,58,[[1026,1,1,54,55],[1032,1,1,55,56],[1040,2,2,56,58]]],[44,1,1,58,59,[[1049,1,1,58,59]]],[45,10,6,59,65,[[1068,4,4,59,63],[1073,1,1,63,64],[1075,5,1,64,65]]],[46,1,1,65,66,[[1085,1,1,65,66]]],[47,2,1,66,67,[[1094,2,1,66,67]]],[48,1,1,67,68,[[1101,1,1,67,68]]],[50,1,1,68,69,[[1110,1,1,68,69]]],[53,1,1,69,70,[[1124,1,1,69,70]]],[57,4,4,70,74,[[1135,1,1,70,71],[1139,1,1,71,72],[1142,1,1,72,73],[1143,1,1,73,74]]],[58,2,2,74,76,[[1147,2,2,74,76]]],[61,12,8,76,84,[[1160,2,1,76,77],[1161,3,3,77,80],[1162,2,2,80,82],[1163,5,2,82,84]]],[62,2,1,84,85,[[1164,2,1,84,85]]],[65,21,20,85,105,[[1168,6,6,85,91],[1169,5,5,91,96],[1175,1,1,96,97],[1178,2,2,97,99],[1179,1,1,99,100],[1182,1,1,100,101],[1183,2,2,101,103],[1185,1,1,103,104],[1186,2,1,104,105]]]],[23257,23365,23385,23474,23477,23548,23551,23560,23566,23582,23583,23829,24036,24037,24270,24310,24314,24317,24318,24332,24348,24555,24643,25036,25131,25228,25253,25263,25359,25464,25588,25755,25756,25757,25762,25765,25803,25900,26030,26149,26156,26200,26234,26236,26266,26304,26311,26501,26628,26689,26712,26741,26747,26836,27230,27463,27751,27752,28024,28494,28499,28500,28524,28646,28704,28944,29158,29309,29555,29804,29998,30088,30168,30182,30307,30310,30573,30582,30594,30596,30619,30621,30634,30636,30654,30724,30728,30729,30734,30735,30746,30747,30752,30753,30759,30768,30851,30897,30903,30926,30963,30982,30984,31033,31044]]],["have",[253,233,[[39,18,17,0,17,[[931,2,2,0,2],[933,1,1,2,3],[934,2,2,3,5],[936,1,1,5,6],[940,1,1,6,7],[942,1,1,7,8],[943,2,2,8,10],[945,1,1,10,11],[947,2,2,11,13],[949,1,1,13,14],[954,3,2,14,16],[955,1,1,16,17]]],[40,20,18,17,35,[[958,2,2,17,19],[959,1,1,19,20],[960,3,3,20,23],[962,3,3,23,26],[963,1,1,26,27],[964,5,4,27,31],[966,2,2,31,33],[967,1,1,33,34],[970,2,1,34,35]]],[41,21,21,35,56,[[975,1,1,35,36],[979,1,1,36,37],[980,2,2,37,39],[981,2,2,39,41],[983,2,2,41,43],[984,3,3,43,46],[986,3,3,46,49],[988,2,2,49,51],[990,2,2,51,53],[991,1,1,53,54],[994,1,1,54,55],[996,1,1,55,56]]],[42,44,38,56,94,[[998,1,1,56,57],[999,2,2,57,59],[1000,3,2,59,61],[1001,7,7,61,68],[1002,2,2,68,70],[1004,5,5,70,75],[1006,5,3,75,78],[1008,4,3,78,81],[1009,2,2,81,83],[1011,1,1,83,84],[1012,4,3,84,87],[1013,1,1,87,88],[1015,5,4,88,92],[1016,1,1,92,93],[1017,1,1,93,94]]],[43,10,9,94,103,[[1020,1,1,94,95],[1036,1,1,95,96],[1038,1,1,96,97],[1040,1,1,97,98],[1041,3,3,98,101],[1042,3,2,101,103]]],[44,14,13,103,116,[[1046,1,1,103,104],[1047,1,1,104,105],[1050,2,2,105,107],[1051,1,1,107,108],[1053,2,2,108,110],[1055,1,1,110,111],[1057,2,1,111,112],[1058,1,1,112,113],[1059,1,1,113,114],[1060,2,2,114,116]]],[45,28,23,116,139,[[1063,1,1,116,117],[1065,1,1,117,118],[1066,1,1,118,119],[1067,2,2,119,121],[1068,6,5,121,126],[1069,1,1,126,127],[1070,2,2,127,129],[1072,4,3,129,132],[1073,4,3,132,135],[1074,5,3,135,138],[1076,1,1,138,139]]],[46,10,10,139,149,[[1078,1,1,139,140],[1079,2,2,140,142],[1080,2,2,142,144],[1081,2,2,144,146],[1082,2,2,146,148],[1085,1,1,148,149]]],[47,3,3,149,152,[[1092,1,1,149,150],[1096,2,2,150,152]]],[48,4,4,152,156,[[1097,1,1,152,153],[1098,1,1,153,154],[1099,1,1,154,155],[1100,1,1,155,156]]],[49,5,5,156,161,[[1103,1,1,156,157],[1104,2,2,157,159],[1105,2,2,159,161]]],[50,4,4,161,165,[[1107,1,1,161,162],[1108,1,1,162,163],[1109,1,1,163,164],[1110,1,1,164,165]]],[51,4,4,165,169,[[1113,1,1,165,166],[1114,2,2,166,168],[1115,1,1,168,169]]],[52,1,1,169,170,[[1118,1,1,169,170]]],[53,4,4,170,174,[[1121,1,1,170,171],[1123,2,2,171,173],[1124,1,1,173,174]]],[54,1,1,174,175,[[1125,1,1,174,175]]],[56,1,1,175,176,[[1132,1,1,175,176]]],[57,18,16,176,192,[[1136,2,2,176,178],[1137,3,2,178,180],[1138,2,2,180,182],[1139,2,2,182,184],[1140,2,2,184,186],[1142,2,2,186,188],[1144,1,1,188,189],[1145,4,3,189,192]]],[58,7,6,192,198,[[1146,1,1,192,193],[1147,3,3,193,196],[1148,1,1,196,197],[1149,2,1,197,198]]],[59,1,1,198,199,[[1154,1,1,198,199]]],[60,3,3,199,202,[[1156,2,2,199,201],[1157,1,1,201,202]]],[61,14,14,202,216,[[1159,4,4,202,206],[1160,3,3,206,209],[1161,2,2,209,211],[1162,2,2,211,213],[1163,3,3,213,216]]],[63,1,1,216,217,[[1165,1,1,216,217]]],[65,17,16,217,233,[[1167,1,1,217,218],[1168,6,6,218,224],[1169,1,1,224,225],[1175,2,2,225,227],[1177,2,1,227,228],[1178,1,1,228,229],[1179,1,1,229,230],[1180,1,1,230,231],[1183,1,1,231,232],[1185,1,1,232,233]]]],[23201,23206,23280,23283,23290,23365,23500,23601,23665,23667,23720,23778,23783,23847,24065,24119,24194,24277,24279,24303,24340,24346,24363,24425,24443,24445,24479,24502,24505,24516,24517,24609,24611,24665,24761,25033,25235,25258,25263,25304,25359,25410,25411,25463,25476,25509,25571,25572,25581,25648,25649,25710,25712,25751,25901,26030,26098,26135,26136,26173,26188,26217,26236,26246,26248,26249,26250,26252,26297,26310,26387,26393,26407,26422,26430,26491,26497,26499,26588,26615,26616,26659,26665,26721,26738,26748,26759,26772,26832,26835,26836,26840,26898,26903,27002,27623,27687,27763,27784,27785,27792,27812,27822,27943,27976,28048,28049,28090,28125,28139,28190,28249,28269,28302,28307,28320,28410,28448,28455,28471,28486,28489,28512,28515,28516,28527,28528,28546,28557,28610,28616,28622,28655,28657,28658,28666,28667,28668,28749,28815,28827,28828,28845,28853,28860,28866,28878,28889,28943,29085,29192,29198,29213,29247,29263,29300,29368,29411,29418,29425,29438,29479,29495,29530,29543,29596,29615,29616,29622,29687,29738,29767,29779,29790,29812,29945,30028,30029,30042,30044,30062,30063,30069,30092,30093,30095,30167,30169,30240,30251,30255,30259,30270,30294,30307,30311,30333,30339,30454,30494,30498,30514,30543,30546,30547,30548,30551,30570,30578,30596,30600,30620,30624,30637,30638,30639,30662,30715,30721,30727,30731,30737,30741,30742,30763,30843,30844,30878,30908,30917,30937,30988,31027]]],["having",[71,70,[[39,10,10,0,10,[[935,1,1,0,1],[936,1,1,1,2],[937,1,1,2,3],[943,1,1,3,4],[946,2,2,4,6],[950,3,3,6,9],[954,1,1,9,10]]],[40,8,8,10,18,[[962,1,1,10,11],[964,2,2,11,13],[965,3,3,13,16],[967,1,1,16,17],[970,1,1,17,18]]],[41,6,6,18,24,[[979,1,1,18,19],[983,1,1,19,20],[987,2,2,20,22],[989,1,1,22,23],[992,1,1,23,24]]],[42,2,2,24,26,[[1001,1,1,24,25],[1014,1,1,25,26]]],[43,1,1,26,27,[[1019,1,1,26,27]]],[44,3,2,27,29,[[1047,1,1,27,28],[1060,2,1,28,29]]],[45,3,3,29,32,[[1067,1,1,29,30],[1068,1,1,30,31],[1072,1,1,31,32]]],[46,5,5,32,37,[[1081,1,1,32,33],[1083,1,1,33,34],[1086,1,1,34,35],[1087,2,2,35,37]]],[48,2,2,37,39,[[1098,1,1,37,38],[1101,1,1,38,39]]],[49,3,3,39,42,[[1103,1,1,39,40],[1104,1,1,40,41],[1105,1,1,41,42]]],[53,3,3,42,45,[[1121,1,1,42,43],[1122,1,1,43,44],[1124,1,1,44,45]]],[54,1,1,45,46,[[1126,1,1,45,46]]],[55,2,2,46,48,[[1129,1,1,46,47],[1130,1,1,47,48]]],[57,2,2,48,50,[[1139,1,1,48,49],[1142,1,1,49,50]]],[64,1,1,50,51,[[1166,1,1,50,51]]],[65,19,19,51,70,[[1171,2,2,51,53],[1173,1,1,53,54],[1174,1,1,54,55],[1175,1,1,55,56],[1178,2,2,56,58],[1179,1,1,58,59],[1180,4,4,59,63],[1181,3,3,63,66],[1183,2,2,66,68],[1184,1,1,68,69],[1186,1,1,69,70]]]],[23345,23354,23415,23663,23735,23736,23884,23896,23897,24061,24441,24501,24518,24581,24583,24585,24653,24757,25203,25441,25592,25596,25658,25807,26212,26795,26996,27976,28326,28468,28524,28604,28872,28908,28964,28977,28986,29241,29331,29384,29393,29430,29735,29755,29796,29846,29898,29916,30067,30134,30691,30785,30787,30812,30830,30857,30894,30903,30909,30927,30932,30940,30943,30947,30948,30952,30978,30979,30994,31039]]],["held",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30802]]],["hold",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[23852,29420]]],["is",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30451]]],["must",[2,2,[[41,2,2,0,2,[[986,1,1,0,1],[995,1,1,1,2]]]],[25571,25952]]],["next",[3,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[43,2,2,1,3,[[1037,1,1,1,2],[1038,1,1,2,3]]]],[24253,27641,27690]]],["possessed",[2,2,[[43,2,2,0,2,[[1025,1,1,0,1],[1033,1,1,1,2]]]],[27183,27499]]],["retain",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27958]]],["took",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23872]]],["using",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30415]]],["was",[2,2,[[43,1,1,0,1,[[1029,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[27352,30113]]],["were",[2,2,[[43,2,2,0,2,[[1034,1,1,0,1],[1041,1,1,1,2]]]],[27534,27778]]],["with",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27894]]]]},{"k":"G2193","v":[["*",[148,139,[[39,48,42,0,42,[[929,4,2,0,2],[930,3,3,2,5],[933,4,3,5,8],[938,2,2,8,10],[939,4,3,10,13],[940,1,1,13,14],[941,1,1,14,15],[942,1,1,15,16],[944,1,1,16,17],[945,3,2,17,19],[946,5,4,19,23],[948,1,1,23,24],[950,2,2,24,26],[951,2,2,26,28],[952,5,5,28,33],[954,4,4,33,37],[955,4,4,37,41],[956,1,1,41,42]]],[40,15,14,42,56,[[962,3,3,42,45],[965,3,2,45,47],[968,1,1,47,48],[969,2,2,48,50],[970,4,4,50,54],[971,2,2,54,56]]],[41,28,27,56,83,[[973,1,1,56,57],[974,1,1,57,58],[976,2,2,58,60],[981,2,2,60,62],[982,2,1,62,63],[983,1,1,63,64],[984,2,2,64,66],[985,3,3,66,69],[987,2,2,69,71],[988,1,1,71,72],[989,1,1,72,73],[991,1,1,73,74],[992,1,1,74,75],[993,1,1,75,76],[994,3,3,76,79],[995,2,2,79,81],[996,2,2,81,83]]],[42,13,13,83,96,[[998,2,2,83,85],[1001,1,1,85,86],[1004,1,1,86,87],[1005,2,2,87,89],[1006,1,1,89,90],[1008,2,2,90,92],[1009,1,1,92,93],[1012,1,1,93,94],[1017,2,2,94,96]]],[43,21,21,96,117,[[1018,2,2,96,98],[1019,1,1,98,99],[1024,1,1,99,100],[1025,2,2,100,102],[1026,1,1,102,103],[1028,2,2,103,105],[1030,2,2,105,107],[1034,1,1,107,108],[1038,2,2,108,110],[1040,4,4,110,114],[1042,1,1,114,115],[1043,1,1,115,116],[1045,1,1,116,117]]],[44,2,2,117,119,[[1048,1,1,117,118],[1056,1,1,118,119]]],[45,6,6,119,125,[[1062,1,1,119,120],[1065,2,2,120,122],[1069,1,1,122,123],[1076,1,1,123,124],[1077,1,1,124,125]]],[46,3,3,125,128,[[1078,1,1,125,126],[1080,1,1,126,127],[1089,1,1,127,128]]],[52,1,1,128,129,[[1117,1,1,128,129]]],[53,1,1,129,130,[[1122,1,1,129,130]]],[57,3,3,130,133,[[1133,1,1,130,131],[1140,1,1,131,132],[1142,1,1,132,133]]],[58,2,1,133,134,[[1150,2,1,133,134]]],[60,1,1,134,135,[[1156,1,1,134,135]]],[61,1,1,135,136,[[1160,1,1,135,136]]],[65,3,3,136,139,[[1172,2,2,136,138],[1186,1,1,138,139]]]],[23161,23169,23178,23182,23184,23252,23259,23260,23428,23440,23471,23472,23482,23509,23572,23619,23700,23709,23717,23748,23749,23757,23761,23800,23898,23916,23953,23957,23978,23984,23988,23991,23996,24083,24090,24092,24112,24137,24174,24180,24193,24215,24417,24430,24452,24539,24557,24709,24736,24744,24779,24786,24788,24808,24859,24864,24973,24988,25092,25105,25328,25342,25378,25456,25509,25518,25526,25539,25553,25592,25596,25636,25659,25744,25822,25858,25880,25882,25915,25940,25979,26040,26041,26102,26105,26227,26390,26444,26458,26505,26615,26616,26668,26750,26920,26921,26931,26945,26984,27161,27186,27216,27254,27326,27329,27382,27409,27538,27669,27690,27746,27748,27755,27757,27817,27834,27922,28003,28217,28371,28438,28446,28534,28724,28784,28813,28856,29024,29668,29760,29976,30103,30146,30361,30498,30559,30803,30804,31043]]],["+",[50,48,[[39,14,13,0,13,[[930,1,1,0,1],[933,2,2,1,3],[938,2,2,3,5],[940,1,1,5,6],[942,1,1,6,7],[944,1,1,7,8],[945,3,2,8,10],[951,1,1,10,11],[952,1,1,11,12],[954,1,1,12,13]]],[40,5,4,13,17,[[962,1,1,13,14],[965,3,2,14,16],[968,1,1,16,17]]],[41,13,13,17,30,[[981,2,2,17,19],[984,1,1,19,20],[985,3,3,20,23],[987,1,1,23,24],[992,1,1,24,25],[993,1,1,25,26],[994,3,3,26,29],[996,1,1,29,30]]],[42,5,5,30,35,[[1001,1,1,30,31],[1005,1,1,31,32],[1006,1,1,32,33],[1009,1,1,33,34],[1012,1,1,34,35]]],[43,6,6,35,41,[[1038,1,1,35,36],[1040,3,3,36,39],[1042,1,1,39,40],[1043,1,1,40,41]]],[44,1,1,41,42,[[1048,1,1,41,42]]],[45,1,1,42,43,[[1065,1,1,42,43]]],[57,1,1,43,44,[[1133,1,1,43,44]]],[58,1,1,44,45,[[1150,1,1,44,45]]],[60,1,1,45,46,[[1156,1,1,45,46]]],[65,2,2,46,48,[[1172,2,2,46,48]]]],[23182,23259,23260,23428,23440,23509,23619,23700,23709,23717,23957,23991,24090,24417,24539,24557,24709,25328,25342,25518,25526,25539,25553,25596,25822,25858,25880,25882,25915,26040,26227,26458,26505,26668,26750,27690,27746,27748,27755,27817,27834,28003,28438,29976,30361,30498,30803,30804]]],["Till",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[53,1,1,1,2,[[1122,1,1,1,2]]]],[23252,29760]]],["Until",[3,2,[[39,2,1,0,1,[[946,2,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[23749,26984]]],["While",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26616]]],["as",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,2,2,1,3,[[1028,2,2,1,3]]]],[26041,27326,27329]]],["even",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24808]]],["till",[18,18,[[39,8,8,0,8,[[929,1,1,0,1],[930,1,1,1,2],[933,1,1,2,3],[941,1,1,3,4],[946,3,3,4,7],[950,1,1,7,8]]],[41,4,4,8,12,[[973,1,1,8,9],[984,1,1,9,10],[989,1,1,10,11],[991,1,1,11,12]]],[42,2,2,12,14,[[1017,2,2,12,14]]],[43,3,3,14,17,[[1025,1,1,14,15],[1038,1,1,15,16],[1045,1,1,16,17]]],[57,1,1,17,18,[[1142,1,1,17,18]]]],[23169,23178,23252,23572,23748,23757,23761,23916,24973,25509,25659,25744,26920,26921,27216,27669,27922,30146]]],["to",[17,16,[[39,5,5,0,5,[[929,1,1,0,1],[939,1,1,1,2],[952,2,2,2,4],[955,1,1,4,5]]],[40,2,2,5,7,[[969,1,1,5,6],[971,1,1,6,7]]],[41,3,2,7,9,[[982,2,1,7,8],[995,1,1,8,9]]],[42,1,1,9,10,[[998,1,1,9,10]]],[43,3,3,10,13,[[1025,1,1,10,11],[1026,1,1,11,12],[1040,1,1,12,13]]],[46,2,2,13,15,[[1078,1,1,13,14],[1089,1,1,14,15]]],[57,1,1,15,16,[[1140,1,1,15,16]]]],[23161,23482,23978,23988,24180,24744,24864,25378,25940,26102,27186,27254,27757,28813,29024,30103]]],["until",[18,18,[[39,7,7,0,7,[[929,1,1,0,1],[930,1,1,1,2],[939,2,2,2,4],[952,1,1,4,5],[954,1,1,5,6],[955,1,1,6,7]]],[40,2,2,7,9,[[970,1,1,7,8],[971,1,1,8,9]]],[41,3,3,9,12,[[987,1,1,9,10],[988,1,1,10,11],[995,1,1,11,12]]],[42,1,1,12,13,[[998,1,1,12,13]]],[43,1,1,13,14,[[1030,1,1,13,14]]],[45,1,1,14,15,[[1077,1,1,14,15]]],[52,1,1,15,16,[[1117,1,1,15,16]]],[61,1,1,16,17,[[1160,1,1,16,17]]],[65,1,1,17,18,[[1186,1,1,17,18]]]],[23161,23184,23471,23472,23996,24083,24193,24779,24859,25592,25636,25979,26105,27382,28784,29668,30559,31043]]],["unto",[31,31,[[39,11,11,0,11,[[929,1,1,0,1],[939,1,1,1,2],[948,1,1,2,3],[950,1,1,3,4],[951,1,1,4,5],[952,1,1,5,6],[954,2,2,6,8],[955,2,2,8,10],[956,1,1,10,11]]],[40,3,3,11,14,[[962,1,1,11,12],[969,1,1,12,13],[970,1,1,13,14]]],[41,4,4,14,18,[[974,1,1,14,15],[976,2,2,15,17],[983,1,1,17,18]]],[42,1,1,18,19,[[1004,1,1,18,19]]],[43,5,5,19,24,[[1018,2,2,19,21],[1024,1,1,21,22],[1030,1,1,22,23],[1034,1,1,23,24]]],[44,1,1,24,25,[[1056,1,1,24,25]]],[45,4,4,25,29,[[1062,1,1,25,26],[1065,1,1,26,27],[1069,1,1,27,28],[1076,1,1,28,29]]],[46,1,1,29,30,[[1080,1,1,29,30]]],[58,1,1,30,31,[[1150,1,1,30,31]]]],[23161,23482,23800,23898,23953,23984,24092,24112,24137,24174,24215,24430,24736,24788,24988,25092,25105,25456,26390,26931,26945,27161,27409,27538,28217,28371,28446,28534,28724,28856,30361]]],["while",[4,4,[[40,2,2,0,2,[[962,1,1,0,1],[970,1,1,1,2]]],[42,2,2,2,4,[[1005,1,1,2,3],[1008,1,1,3,4]]]],[24452,24786,26444,26615]]]]},{"k":"G2194","v":[["Zabulon",[3,3,[[39,2,2,0,2,[[932,2,2,0,2]]],[65,1,1,2,3,[[1173,1,1,2,3]]]],[23222,23224,30818]]]]},{"k":"G2195","v":[["*",[3,3,[[41,3,3,0,3,[[991,3,3,0,3]]]],[25733,25736,25739]]],["+",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25733]]],["Zacchaeus",[2,2,[[41,2,2,0,2,[[991,2,2,0,2]]]],[25736,25739]]]]},{"k":"G2196","v":[["Zara",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23147]]]]},{"k":"G2197","v":[["*",[12,11,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,11,10,1,11,[[973,8,8,1,9],[975,2,1,9,10],[983,1,1,10,11]]]],[23953,24898,24905,24906,24911,24914,24933,24952,24960,25027,25456]]],["Zacharias",[11,11,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,10,10,1,11,[[973,8,8,1,9],[975,1,1,9,10],[983,1,1,10,11]]]],[23953,24898,24905,24906,24911,24914,24933,24952,24960,25027,25456]]],["in",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25027]]]]},{"k":"G2198","v":[["*",[142,127,[[39,6,6,0,6,[[932,1,1,0,1],[937,1,1,1,2],[944,1,1,2,3],[950,1,1,3,4],[954,1,1,4,5],[955,1,1,5,6]]],[40,3,3,6,9,[[961,1,1,6,7],[968,1,1,7,8],[972,1,1,8,9]]],[41,8,7,9,16,[[974,1,1,9,10],[976,1,1,10,11],[982,1,1,11,12],[987,1,1,12,13],[992,2,1,13,14],[996,2,2,14,16]]],[42,18,14,16,30,[[1000,5,5,16,21],[1001,1,1,21,22],[1002,7,4,22,26],[1003,1,1,26,27],[1007,2,2,27,29],[1010,2,1,29,30]]],[43,12,12,30,42,[[1018,1,1,30,31],[1024,1,1,31,32],[1026,1,1,32,33],[1027,1,1,33,34],[1031,1,1,34,35],[1034,1,1,35,36],[1037,1,1,36,37],[1039,1,1,37,38],[1042,2,2,38,40],[1043,1,1,40,41],[1045,1,1,41,42]]],[44,22,18,42,60,[[1046,1,1,42,43],[1051,5,4,43,47],[1052,4,4,47,51],[1053,3,2,51,53],[1054,1,1,53,54],[1055,1,1,54,55],[1057,1,1,55,56],[1059,6,4,56,60]]],[45,3,3,60,63,[[1068,1,1,60,61],[1070,1,1,61,62],[1076,1,1,62,63]]],[46,9,7,63,70,[[1078,1,1,63,64],[1080,1,1,64,65],[1081,1,1,65,66],[1082,2,1,66,67],[1083,2,2,67,69],[1090,2,1,69,70]]],[47,9,6,70,76,[[1092,6,3,70,73],[1093,2,2,73,75],[1095,1,1,75,76]]],[49,2,2,76,78,[[1103,2,2,76,78]]],[50,2,2,78,80,[[1108,1,1,78,79],[1109,1,1,79,80]]],[51,5,5,80,85,[[1111,1,1,80,81],[1113,1,1,81,82],[1114,2,2,82,84],[1115,1,1,84,85]]],[53,4,4,85,89,[[1121,1,1,85,86],[1122,1,1,86,87],[1123,1,1,87,88],[1124,1,1,88,89]]],[54,2,2,89,91,[[1127,1,1,89,90],[1128,1,1,90,91]]],[55,1,1,91,92,[[1130,1,1,91,92]]],[57,12,12,92,104,[[1134,1,1,92,93],[1135,1,1,93,94],[1136,1,1,94,95],[1139,2,2,95,97],[1141,2,2,97,99],[1142,3,3,99,102],[1144,2,2,102,104]]],[58,1,1,104,105,[[1149,1,1,104,105]]],[59,7,7,105,112,[[1151,2,2,105,107],[1152,3,3,107,110],[1154,2,2,110,112]]],[61,1,1,112,113,[[1162,1,1,112,113]]],[65,15,14,113,127,[[1167,2,1,113,114],[1168,1,1,114,115],[1169,1,1,115,116],[1170,2,2,116,118],[1171,1,1,118,119],[1173,2,2,119,121],[1176,1,1,121,122],[1179,1,1,122,123],[1181,1,1,123,124],[1182,1,1,124,125],[1185,1,1,125,126],[1186,1,1,126,127]]]],[23213,23397,23688,23904,24117,24192,24387,24700,24884,25009,25067,25391,25601,25817,25996,26014,26166,26167,26206,26207,26209,26235,26308,26314,26315,26326,26366,26548,26549,26687,26926,27154,27257,27301,27429,27551,27638,27726,27815,27820,27828,27903,27947,28070,28078,28079,28081,28092,28093,28094,28100,28128,28129,28181,28193,28246,28287,28288,28289,28291,28526,28554,28763,28808,28844,28870,28892,28907,28914,29047,29095,29100,29101,29113,29114,29187,29382,29383,29514,29524,29569,29598,29618,29620,29631,29746,29757,29769,29805,29865,29871,29920,29992,30007,30026,30072,30089,30119,30122,30153,30164,30171,30221,30234,30352,30377,30397,30403,30404,30423,30451,30452,30612,30715,30725,30747,30777,30778,30793,30812,30827,30867,30922,30953,30957,31037,31042]]],["alive",[15,15,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[972,1,1,1,2]]],[41,1,1,2,3,[[996,1,1,2,3]]],[43,4,4,3,7,[[1018,1,1,3,4],[1026,1,1,4,5],[1037,1,1,5,6],[1042,1,1,6,7]]],[44,3,3,7,10,[[1051,2,2,7,9],[1052,1,1,9,10]]],[51,2,2,10,12,[[1114,2,2,10,12]]],[65,3,3,12,15,[[1167,1,1,12,13],[1168,1,1,13,14],[1185,1,1,14,15]]]],[24192,24884,26014,26926,27257,27638,27815,28079,28081,28100,29618,29620,30715,30725,31037]]],["life",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28808]]],["lifetime",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29992]]],["live",[54,46,[[39,2,2,0,2,[[932,1,1,0,1],[937,1,1,1,2]]],[40,1,1,2,3,[[961,1,1,2,3]]],[41,3,3,3,6,[[976,1,1,3,4],[982,1,1,4,5],[992,1,1,5,6]]],[42,8,6,6,12,[[1001,1,1,6,7],[1002,4,3,7,10],[1007,1,1,10,11],[1010,2,1,11,12]]],[43,4,4,12,16,[[1034,1,1,12,13],[1039,1,1,13,14],[1042,1,1,14,15],[1045,1,1,15,16]]],[44,10,7,16,23,[[1046,1,1,16,17],[1051,1,1,17,18],[1053,3,2,18,20],[1055,1,1,20,21],[1059,4,2,21,23]]],[45,1,1,23,24,[[1070,1,1,23,24]]],[46,5,4,24,28,[[1081,1,1,24,25],[1082,2,1,25,26],[1083,1,1,26,27],[1090,1,1,27,28]]],[47,7,5,28,33,[[1092,4,2,28,30],[1093,2,2,30,32],[1095,1,1,32,33]]],[49,2,2,33,35,[[1103,2,2,33,35]]],[51,2,2,35,37,[[1113,1,1,35,36],[1115,1,1,36,37]]],[54,1,1,37,38,[[1127,1,1,37,38]]],[55,1,1,38,39,[[1130,1,1,38,39]]],[57,2,2,39,41,[[1142,1,1,39,40],[1144,1,1,40,41]]],[58,1,1,41,42,[[1149,1,1,41,42]]],[59,2,2,42,44,[[1152,1,1,42,43],[1154,1,1,43,44]]],[61,1,1,44,45,[[1162,1,1,44,45]]],[65,1,1,45,46,[[1179,1,1,45,46]]]],[23213,23397,24387,25067,25391,25817,26235,26308,26314,26315,26548,26687,27551,27726,27820,27903,27947,28070,28128,28129,28193,28288,28291,28554,28870,28892,28907,29047,29100,29101,29113,29114,29187,29382,29383,29598,29631,29865,29920,30171,30221,30352,30423,30452,30612,30922]]],["lived",[4,4,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]],[65,1,1,3,4,[[1186,1,1,3,4]]]],[25009,27828,29524,31042]]],["lively",[3,3,[[43,1,1,0,1,[[1024,1,1,0,1]]],[59,2,2,1,3,[[1151,1,1,1,2],[1152,1,1,2,3]]]],[27154,30377,30404]]],["livest",[2,2,[[47,1,1,0,1,[[1092,1,1,0,1]]],[65,1,1,1,2,[[1169,1,1,1,2]]]],[29095,30747]]],["liveth",[24,23,[[42,4,4,0,4,[[1000,3,3,0,3],[1007,1,1,3,4]]],[44,6,5,4,9,[[1051,2,1,4,5],[1052,3,3,5,8],[1059,1,1,8,9]]],[45,1,1,9,10,[[1068,1,1,9,10]]],[46,1,1,10,11,[[1090,1,1,10,11]]],[47,1,1,11,12,[[1092,1,1,11,12]]],[53,1,1,12,13,[[1123,1,1,12,13]]],[57,3,3,13,16,[[1139,2,2,13,15],[1141,1,1,15,16]]],[59,1,1,16,17,[[1151,1,1,16,17]]],[65,6,6,17,23,[[1167,1,1,17,18],[1170,2,2,18,20],[1171,1,1,20,21],[1176,1,1,21,22],[1181,1,1,22,23]]]],[26206,26207,26209,26549,28078,28092,28093,28094,28287,28526,29047,29101,29769,30072,30089,30122,30397,30715,30777,30778,30793,30867,30953]]],["living",[34,34,[[39,3,3,0,3,[[944,1,1,0,1],[950,1,1,1,2],[954,1,1,2,3]]],[40,1,1,3,4,[[968,1,1,3,4]]],[41,3,3,4,7,[[987,1,1,4,5],[992,1,1,5,6],[996,1,1,6,7]]],[42,6,6,7,13,[[1000,2,2,7,9],[1002,3,3,9,12],[1003,1,1,12,13]]],[43,1,1,13,14,[[1031,1,1,13,14]]],[44,3,3,14,17,[[1054,1,1,14,15],[1057,1,1,15,16],[1059,1,1,16,17]]],[45,1,1,17,18,[[1076,1,1,17,18]]],[46,2,2,18,20,[[1080,1,1,18,19],[1083,1,1,19,20]]],[50,1,1,20,21,[[1108,1,1,20,21]]],[51,1,1,21,22,[[1111,1,1,21,22]]],[53,3,3,22,25,[[1121,1,1,22,23],[1122,1,1,23,24],[1124,1,1,24,25]]],[57,5,5,25,30,[[1135,1,1,25,26],[1141,1,1,26,27],[1142,2,2,27,29],[1144,1,1,29,30]]],[59,1,1,30,31,[[1152,1,1,30,31]]],[65,3,3,31,34,[[1173,2,2,31,33],[1182,1,1,33,34]]]],[23688,23904,24117,24700,25601,25817,25996,26166,26167,26308,26314,26326,26366,27429,28181,28246,28289,28763,28844,28914,29514,29569,29746,29757,29805,30007,30119,30153,30164,30234,30403,30812,30827,30957]]],["quick",[4,4,[[43,1,1,0,1,[[1027,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]],[57,1,1,2,3,[[1136,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]]],[27301,29871,30026,30451]]]]},{"k":"G2199","v":[["*",[12,11,[[39,6,5,0,5,[[932,2,1,0,1],[938,1,1,1,2],[948,1,1,2,3],[954,1,1,3,4],[955,1,1,4,5]]],[40,4,4,5,9,[[957,2,2,5,7],[959,1,1,7,8],[966,1,1,8,9]]],[41,1,1,9,10,[[977,1,1,9,10]]],[42,1,1,10,11,[[1017,1,1,10,11]]]],[23230,23419,23812,24091,24185,24234,24235,24305,24623,25117,26900]]],["Zebedee",[10,9,[[39,4,3,0,3,[[932,2,1,0,1],[938,1,1,1,2],[954,1,1,2,3]]],[40,4,4,3,7,[[957,2,2,3,5],[959,1,1,5,6],[966,1,1,6,7]]],[41,1,1,7,8,[[977,1,1,7,8]]],[42,1,1,8,9,[[1017,1,1,8,9]]]],[23230,23419,24091,24234,24235,24305,24623,25117,26900]]],["Zebedee's",[2,2,[[39,2,2,0,2,[[948,1,1,0,1],[955,1,1,1,2]]]],[23812,24185]]]]},{"k":"G2200","v":[["hot",[3,2,[[65,3,2,0,2,[[1169,3,2,0,2]]]],[30761,30762]]]]},{"k":"G2201","v":[["*",[2,2,[[41,2,2,0,2,[[974,1,1,0,1],[986,1,1,1,2]]]],[24997,25572]]],["pair",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24997]]],["yoke",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25572]]]]},{"k":"G2202","v":[["bands",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27895]]]]},{"k":"G2203","v":[["Jupiter",[2,2,[[43,2,2,0,2,[[1031,2,2,0,2]]]],[27426,27427]]]]},{"k":"G2204","v":[["fervent",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]]],[27582,28256]]]]},{"k":"G2205","v":[["*",[17,17,[[42,1,1,0,1,[[998,1,1,0,1]]],[43,2,2,1,3,[[1022,1,1,1,2],[1030,1,1,2,3]]],[44,2,2,3,5,[[1055,1,1,3,4],[1058,1,1,4,5]]],[45,1,1,5,6,[[1064,1,1,5,6]]],[46,5,5,6,11,[[1084,2,2,6,8],[1086,1,1,8,9],[1088,1,1,9,10],[1089,1,1,10,11]]],[47,1,1,11,12,[[1095,1,1,11,12]]],[49,1,1,12,13,[[1105,1,1,12,13]]],[50,1,1,13,14,[[1110,1,1,13,14]]],[57,1,1,14,15,[[1142,1,1,14,15]]],[58,2,2,15,17,[[1148,2,2,15,17]]]],[26112,27076,27407,28190,28279,28413,28923,28927,28958,28991,29042,29182,29427,29555,30160,30333,30335]]],["emulations",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29182]]],["envy",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27407]]],["envying",[4,4,[[44,1,1,0,1,[[1058,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]],[58,2,2,2,4,[[1148,2,2,2,4]]]],[28279,28413,30333,30335]]],["envyings",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29042]]],["indignation",[2,2,[[43,1,1,0,1,[[1022,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[27076,30160]]],["jealousy",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28991]]],["mind",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28923]]],["zeal",[6,6,[[42,1,1,0,1,[[998,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]],[46,2,2,2,4,[[1084,1,1,2,3],[1086,1,1,3,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]],[50,1,1,5,6,[[1110,1,1,5,6]]]],[26112,28190,28927,28958,29427,29555]]]]},{"k":"G2206","v":[["*",[12,11,[[43,2,2,0,2,[[1024,1,1,0,1],[1034,1,1,1,2]]],[45,4,4,2,6,[[1073,1,1,2,3],[1074,1,1,3,4],[1075,2,2,4,6]]],[46,1,1,6,7,[[1088,1,1,6,7]]],[47,3,2,7,9,[[1094,3,2,7,9]]],[58,1,1,9,10,[[1149,1,1,9,10]]],[65,1,1,10,11,[[1169,1,1,10,11]]]],[27125,27528,28665,28669,28679,28717,28991,29148,29149,30339,30765]]],["+",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27528]]],["affect",[2,1,[[47,2,1,0,1,[[1094,2,1,0,1]]]],[29148]]],["affected",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29149]]],["covet",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28717]]],["desire",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28679]]],["earnestly",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28665]]],["envieth",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28669]]],["envy",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27125]]],["have",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30339]]],["jealous",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28991]]],["zealous",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30765]]]]},{"k":"G2207","v":[["zealous",[5,5,[[43,2,2,0,2,[[1038,1,1,0,1],[1039,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]],[47,1,1,3,4,[[1091,1,1,3,4]]],[55,1,1,4,5,[[1130,1,1,4,5]]]],[27684,27707,28690,29071,29922]]]]},{"k":"G2208","v":[["Zelotes",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]]],[25161,26936]]]]},{"k":"G2209","v":[["*",[4,4,[[43,2,2,0,2,[[1044,2,2,0,2]]],[49,2,2,2,4,[[1105,2,2,2,4]]]],[27865,27876,29428,29429]]],["damage",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27865]]],["loss",[3,3,[[43,1,1,0,1,[[1044,1,1,0,1]]],[49,2,2,1,3,[[1105,2,2,1,3]]]],[27876,29428,29429]]]]},{"k":"G2210","v":[["*",[6,6,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[45,1,1,3,4,[[1064,1,1,3,4]]],[46,1,1,4,5,[[1084,1,1,4,5]]],[49,1,1,5,6,[[1105,1,1,5,6]]]],[23698,24536,25326,28425,28925,29429]]],["away",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25326]]],["damage",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28925]]],["lose",[2,2,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]]],[23698,24536]]],["loss",[2,2,[[45,1,1,0,1,[[1064,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[28425,29429]]]]},{"k":"G2211","v":[["+",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29936]]]]},{"k":"G2212","v":[["*",[119,116,[[39,14,14,0,14,[[930,2,2,0,2],[934,1,1,2,3],[935,2,2,3,5],[940,3,3,5,8],[941,1,1,8,9],[946,1,1,9,10],[949,1,1,10,11],[954,2,2,11,13],[956,1,1,13,14]]],[40,9,9,14,23,[[957,1,1,14,15],[959,1,1,15,16],[964,1,1,16,17],[967,1,1,17,18],[968,1,1,18,19],[970,3,3,19,22],[972,1,1,22,23]]],[41,27,27,23,50,[[974,3,3,23,26],[976,1,1,26,27],[977,1,1,27,28],[978,1,1,28,29],[981,1,1,29,30],[983,5,5,30,35],[984,3,3,35,38],[985,3,3,38,41],[987,1,1,41,42],[989,1,1,42,43],[991,3,3,43,46],[992,1,1,46,47],[994,2,2,47,49],[996,1,1,49,50]]],[42,35,33,50,83,[[997,1,1,50,51],[1000,2,2,51,53],[1001,4,4,53,57],[1002,2,2,57,59],[1003,11,10,59,69],[1004,5,4,69,73],[1006,1,1,73,74],[1007,2,2,74,76],[1009,1,1,76,77],[1012,1,1,77,78],[1014,3,3,78,81],[1015,1,1,81,82],[1016,1,1,82,83]]],[43,10,10,83,93,[[1026,1,1,83,84],[1027,2,2,84,86],[1030,2,2,86,88],[1033,1,1,88,89],[1034,2,2,89,91],[1038,1,1,91,92],[1044,1,1,92,93]]],[44,4,4,93,97,[[1047,1,1,93,94],[1055,2,2,94,96],[1056,1,1,96,97]]],[45,8,7,97,104,[[1062,1,1,97,98],[1065,1,1,98,99],[1068,2,1,99,100],[1071,2,2,100,102],[1074,1,1,102,103],[1075,1,1,103,104]]],[46,2,2,104,106,[[1089,1,1,104,105],[1090,1,1,105,106]]],[47,2,2,106,108,[[1091,1,1,106,107],[1092,1,1,107,108]]],[49,1,1,108,109,[[1104,1,1,108,109]]],[50,1,1,109,110,[[1109,1,1,109,110]]],[51,1,1,110,111,[[1112,1,1,110,111]]],[54,1,1,111,112,[[1125,1,1,111,112]]],[57,1,1,112,113,[[1140,1,1,112,113]]],[59,2,2,113,115,[[1153,1,1,113,114],[1155,1,1,114,115]]],[65,1,1,115,116,[[1175,1,1,115,116]]]],[23182,23189,23315,23323,23324,23532,23535,23536,23584,23739,23872,24070,24113,24200,24252,24320,24511,24658,24685,24755,24765,24809,24879,25018,25021,25022,25105,25125,25165,25310,25414,25415,25421,25429,25459,25488,25490,25507,25524,25525,25542,25596,25684,25734,25741,25778,25798,25866,25870,25996,26082,26179,26183,26226,26228,26240,26254,26281,26283,26329,26332,26339,26346,26347,26348,26353,26358,26362,26364,26402,26418,26421,26431,26520,26531,26579,26663,26745,26789,26792,26793,26837,26882,27227,27278,27280,27370,27373,27493,27528,27550,27695,27885,27969,28191,28208,28212,28385,28435,28514,28591,28600,28670,28690,29036,29046,29067,29098,29412,29518,29576,29826,30099,30435,30473,30846]]],["+",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29826]]],["about",[5,5,[[42,2,2,0,2,[[1003,2,2,0,2]]],[43,2,2,2,4,[[1038,1,1,2,3],[1044,1,1,3,4]]],[44,1,1,4,5,[[1055,1,1,4,5]]]],[26347,26348,27695,27885,28191]]],["after",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28385]]],["desired",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25310]]],["desiring",[2,2,[[39,2,2,0,2,[[940,2,2,0,2]]]],[23535,23536]]],["endeavoured",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27493]]],["enquire",[2,2,[[42,1,1,0,1,[[1012,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[26745,27227]]],["for",[3,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[44,1,1,2,3,[[1047,1,1,2,3]]]],[24252,26281,27969]]],["required",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]]],[25507,28435]]],["seek",[45,44,[[39,4,4,0,4,[[930,1,1,0,1],[934,1,1,1,2],[935,1,1,2,3],[956,1,1,3,4]]],[40,2,2,4,6,[[959,1,1,4,5],[972,1,1,5,6]]],[41,8,8,6,14,[[983,1,1,6,7],[984,2,2,7,9],[985,1,1,9,10],[987,1,1,10,11],[989,1,1,11,12],[991,1,1,12,13],[996,1,1,13,14]]],[42,15,15,14,29,[[997,1,1,14,15],[1001,2,2,15,17],[1002,1,1,17,18],[1003,3,3,18,21],[1004,4,4,21,25],[1009,1,1,25,26],[1014,3,3,26,29]]],[43,3,3,29,32,[[1027,2,2,29,31],[1034,1,1,31,32]]],[44,1,1,32,33,[[1056,1,1,32,33]]],[45,4,3,33,36,[[1068,2,1,33,34],[1071,1,1,34,35],[1075,1,1,35,36]]],[46,2,2,36,38,[[1089,1,1,36,37],[1090,1,1,37,38]]],[47,2,2,38,40,[[1091,1,1,38,39],[1092,1,1,39,40]]],[49,1,1,40,41,[[1104,1,1,40,41]]],[50,1,1,41,42,[[1109,1,1,41,42]]],[59,1,1,42,43,[[1153,1,1,42,43]]],[65,1,1,43,44,[[1175,1,1,43,44]]]],[23182,23315,23323,24200,24320,24879,25414,25488,25490,25542,25596,25684,25741,25996,26082,26240,26254,26283,26353,26362,26364,26402,26418,26421,26431,26663,26789,26792,26793,27278,27280,27550,28212,28514,28591,28690,29036,29046,29067,29098,29412,29518,30435,30846]]],["seekest",[2,2,[[42,2,2,0,2,[[1000,1,1,0,1],[1016,1,1,1,2]]]],[26183,26882]]],["seeketh",[9,8,[[39,2,2,0,2,[[935,1,1,0,1],[946,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[42,5,4,3,7,[[1000,1,1,3,4],[1003,3,2,4,6],[1004,1,1,6,7]]],[45,1,1,7,8,[[1074,1,1,7,8]]]],[23324,23739,25415,26179,26332,26346,26431,28670]]],["seeking",[11,11,[[39,2,2,0,2,[[940,1,1,0,1],[941,1,1,1,2]]],[40,1,1,2,3,[[964,1,1,2,3]]],[41,4,4,3,7,[[974,1,1,3,4],[983,2,2,4,6],[985,1,1,6,7]]],[43,2,2,7,9,[[1030,2,2,7,9]]],[45,1,1,9,10,[[1071,1,1,9,10]]],[59,1,1,10,11,[[1155,1,1,10,11]]]],[23532,23584,24511,25018,25429,25459,25525,27370,27373,28600,30473]]],["sought",[34,34,[[39,4,4,0,4,[[930,1,1,0,1],[949,1,1,1,2],[954,2,2,2,4]]],[40,5,5,4,9,[[967,1,1,4,5],[968,1,1,5,6],[970,3,3,6,9]]],[41,12,12,9,21,[[974,2,2,9,11],[976,1,1,11,12],[977,1,1,12,13],[978,1,1,13,14],[983,1,1,14,15],[985,1,1,15,16],[991,2,2,16,18],[992,1,1,18,19],[994,2,2,19,21]]],[42,9,9,21,30,[[1001,2,2,21,23],[1003,3,3,23,26],[1006,1,1,26,27],[1007,2,2,27,29],[1015,1,1,29,30]]],[43,1,1,30,31,[[1034,1,1,30,31]]],[44,1,1,31,32,[[1055,1,1,31,32]]],[51,1,1,32,33,[[1112,1,1,32,33]]],[57,1,1,33,34,[[1140,1,1,33,34]]]],[23189,23872,24070,24113,24658,24685,24755,24765,24809,25021,25022,25105,25125,25165,25421,25524,25734,25778,25798,25866,25870,26226,26228,26329,26339,26358,26520,26531,26579,26837,27528,28208,29576,30099]]]]},{"k":"G2213","v":[["*",[5,5,[[43,5,5,0,5,[[1032,1,1,0,1],[1035,1,1,1,2],[1040,1,1,2,3],[1042,1,1,3,4],[1043,1,1,4,5]]]],[27444,27572,27763,27815,27826]]],["question",[2,2,[[43,2,2,0,2,[[1032,1,1,0,1],[1035,1,1,1,2]]]],[27444,27572]]],["questions",[3,3,[[43,3,3,0,3,[[1040,1,1,0,1],[1042,1,1,1,2],[1043,1,1,2,3]]]],[27763,27815,27826]]]]},{"k":"G2214","v":[["*",[6,6,[[42,1,1,0,1,[[999,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]],[53,2,2,2,4,[[1119,1,1,2,3],[1124,1,1,3,4]]],[54,1,1,4,5,[[1126,1,1,4,5]]],[55,1,1,5,6,[[1131,1,1,5,6]]]],[26145,27816,29700,29792,29850,29932]]],["+",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27816]]],["question",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26145]]],["questions",[4,4,[[53,2,2,0,2,[[1119,1,1,0,1],[1124,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[55,1,1,3,4,[[1131,1,1,3,4]]]],[29700,29792,29850,29932]]]]},{"k":"G2215","v":[["tares",[8,8,[[39,8,8,0,8,[[941,8,8,0,8]]]],[23564,23565,23566,23568,23569,23575,23577,23579]]]]},{"k":"G2216","v":[["Zorobabel",[3,3,[[39,2,2,0,2,[[929,2,2,0,2]]],[41,1,1,2,3,[[975,1,1,2,3]]]],[23156,23157,25052]]]]},{"k":"G2217","v":[["*",[4,4,[[60,2,2,0,2,[[1157,2,2,0,2]]],[64,2,2,2,4,[[1166,2,2,2,4]]]],[30504,30517,30678,30685]]],["blackness",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30685]]],["darkness",[2,2,[[60,1,1,0,1,[[1157,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[30504,30678]]],["mist",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30517]]]]},{"k":"G2218","v":[["*",[6,6,[[39,2,2,0,2,[[939,2,2,0,2]]],[43,1,1,2,3,[[1032,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]],[53,1,1,4,5,[[1124,1,1,4,5]]],[65,1,1,5,6,[[1172,1,1,5,6]]]],[23488,23489,27452,29163,29789,30798]]],["balances",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30798]]],["yoke",[5,5,[[39,2,2,0,2,[[939,2,2,0,2]]],[43,1,1,2,3,[[1032,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]],[53,1,1,4,5,[[1124,1,1,4,5]]]],[23488,23489,27452,29163,29789]]]]},{"k":"G2219","v":[["leaven",[13,11,[[39,4,4,0,4,[[941,1,1,0,1],[944,3,3,1,4]]],[40,2,1,4,5,[[964,2,1,4,5]]],[41,2,2,5,7,[[984,1,1,5,6],[985,1,1,6,7]]],[45,4,3,7,10,[[1066,4,3,7,10]]],[47,1,1,10,11,[[1095,1,1,10,11]]]],[23572,23678,23683,23684,24515,25460,25539,28460,28461,28462,29171]]]]},{"k":"G2220","v":[["*",[4,4,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[45,1,1,2,3,[[1066,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]]],[23572,25539,28460,29171]]],["leavened",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23572,25539]]],["leaveneth",[2,2,[[45,1,1,0,1,[[1066,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]]],[28460,29171]]]]},{"k":"G2221","v":[["*",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[25117,29853]]],["captive",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29853]]],["catch",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25117]]]]},{"k":"G2222","v":[["*",[134,126,[[39,7,7,0,7,[[935,1,1,0,1],[946,2,2,1,3],[947,3,3,3,6],[953,1,1,6,7]]],[40,4,4,7,11,[[965,2,2,7,9],[966,2,2,9,11]]],[41,6,6,11,17,[[973,1,1,11,12],[982,1,1,12,13],[984,1,1,13,14],[988,1,1,14,15],[990,2,2,15,17]]],[42,36,32,17,49,[[997,2,1,17,18],[999,4,3,18,21],[1000,2,2,21,23],[1001,7,5,23,28],[1002,11,11,28,39],[1004,1,1,39,40],[1006,2,2,40,42],[1007,1,1,42,43],[1008,2,2,43,45],[1010,1,1,45,46],[1013,2,2,46,48],[1016,1,1,48,49]]],[43,8,8,49,57,[[1019,1,1,49,50],[1020,1,1,50,51],[1022,1,1,51,52],[1025,1,1,52,53],[1028,1,1,53,54],[1030,2,2,54,56],[1034,1,1,56,57]]],[44,14,14,57,71,[[1047,1,1,57,58],[1050,4,4,58,62],[1051,3,3,62,65],[1052,1,1,65,66],[1053,4,4,66,70],[1056,1,1,70,71]]],[45,2,2,71,73,[[1064,1,1,71,72],[1076,1,1,72,73]]],[46,6,5,73,78,[[1079,2,1,73,74],[1081,3,3,74,77],[1082,1,1,77,78]]],[47,1,1,78,79,[[1096,1,1,78,79]]],[48,1,1,79,80,[[1100,1,1,79,80]]],[49,3,3,80,83,[[1103,1,1,80,81],[1104,1,1,81,82],[1106,1,1,82,83]]],[50,2,2,83,85,[[1109,2,2,83,85]]],[53,4,4,85,89,[[1119,1,1,85,86],[1122,1,1,86,87],[1124,2,2,87,89]]],[54,2,2,89,91,[[1125,2,2,89,91]]],[55,2,2,91,93,[[1129,1,1,91,92],[1131,1,1,92,93]]],[57,2,2,93,95,[[1139,2,2,93,95]]],[58,2,2,95,97,[[1146,1,1,95,96],[1149,1,1,96,97]]],[59,2,2,97,99,[[1153,2,2,97,99]]],[60,1,1,99,100,[[1156,1,1,99,100]]],[61,13,10,100,110,[[1159,3,2,100,102],[1160,1,1,102,103],[1161,2,2,103,105],[1163,7,5,105,110]]],[64,1,1,110,111,[[1166,1,1,110,111]]],[65,15,15,111,126,[[1168,2,2,111,113],[1169,1,1,113,114],[1177,1,1,114,115],[1179,1,1,115,116],[1183,1,1,116,117],[1186,2,2,117,119],[1187,2,2,119,121],[1188,5,5,121,126]]]],[23330,23735,23736,23778,23779,23791,24054,24581,24583,24605,24618,24968,25388,25474,25645,25706,25718,26048,26135,26136,26156,26170,26192,26234,26236,26239,26249,26250,26284,26290,26292,26297,26304,26305,26308,26310,26311,26320,26325,26393,26491,26509,26548,26605,26630,26674,26761,26762,26898,26977,27011,27079,27209,27325,27408,27410,27548,27969,28057,28064,28065,28068,28072,28090,28091,28101,28118,28122,28126,28154,28224,28432,28737,28840,28869,28870,28871,28881,29196,29290,29381,29407,29445,29520,29521,29712,29755,29800,29807,29810,29819,29894,29930,30067,30080,30278,30351,30431,30434,30482,30541,30542,30575,30593,30594,30635,30636,30637,30640,30644,30693,30724,30727,30751,30883,30916,30983,31050,31053,31059,31080,31081,31082,31094,31097,31099]]],["+",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29819]]],["life",[132,124,[[39,7,7,0,7,[[935,1,1,0,1],[946,2,2,1,3],[947,3,3,3,6],[953,1,1,6,7]]],[40,4,4,7,11,[[965,2,2,7,9],[966,2,2,9,11]]],[41,5,5,11,16,[[973,1,1,11,12],[982,1,1,12,13],[984,1,1,13,14],[990,2,2,14,16]]],[42,36,32,16,48,[[997,2,1,16,17],[999,4,3,17,20],[1000,2,2,20,22],[1001,7,5,22,27],[1002,11,11,27,38],[1004,1,1,38,39],[1006,2,2,39,41],[1007,1,1,41,42],[1008,2,2,42,44],[1010,1,1,44,45],[1013,2,2,45,47],[1016,1,1,47,48]]],[43,8,8,48,56,[[1019,1,1,48,49],[1020,1,1,49,50],[1022,1,1,50,51],[1025,1,1,51,52],[1028,1,1,52,53],[1030,2,2,53,55],[1034,1,1,55,56]]],[44,14,14,56,70,[[1047,1,1,56,57],[1050,4,4,57,61],[1051,3,3,61,64],[1052,1,1,64,65],[1053,4,4,65,69],[1056,1,1,69,70]]],[45,2,2,70,72,[[1064,1,1,70,71],[1076,1,1,71,72]]],[46,6,5,72,77,[[1079,2,1,72,73],[1081,3,3,73,76],[1082,1,1,76,77]]],[47,1,1,77,78,[[1096,1,1,77,78]]],[48,1,1,78,79,[[1100,1,1,78,79]]],[49,3,3,79,82,[[1103,1,1,79,80],[1104,1,1,80,81],[1106,1,1,81,82]]],[50,2,2,82,84,[[1109,2,2,82,84]]],[53,4,4,84,88,[[1119,1,1,84,85],[1122,1,1,85,86],[1124,2,2,86,88]]],[54,1,1,88,89,[[1125,1,1,88,89]]],[55,2,2,89,91,[[1129,1,1,89,90],[1131,1,1,90,91]]],[57,2,2,91,93,[[1139,2,2,91,93]]],[58,2,2,93,95,[[1146,1,1,93,94],[1149,1,1,94,95]]],[59,2,2,95,97,[[1153,2,2,95,97]]],[60,1,1,97,98,[[1156,1,1,97,98]]],[61,13,10,98,108,[[1159,3,2,98,100],[1160,1,1,100,101],[1161,2,2,101,103],[1163,7,5,103,108]]],[64,1,1,108,109,[[1166,1,1,108,109]]],[65,15,15,109,124,[[1168,2,2,109,111],[1169,1,1,111,112],[1177,1,1,112,113],[1179,1,1,113,114],[1183,1,1,114,115],[1186,2,2,115,117],[1187,2,2,117,119],[1188,5,5,119,124]]]],[23330,23735,23736,23778,23779,23791,24054,24581,24583,24605,24618,24968,25388,25474,25706,25718,26048,26135,26136,26156,26170,26192,26234,26236,26239,26249,26250,26284,26290,26292,26297,26304,26305,26308,26310,26311,26320,26325,26393,26491,26509,26548,26605,26630,26674,26761,26762,26898,26977,27011,27079,27209,27325,27408,27410,27548,27969,28057,28064,28065,28068,28072,28090,28091,28101,28118,28122,28126,28154,28224,28432,28737,28840,28869,28870,28871,28881,29196,29290,29381,29407,29445,29520,29521,29712,29755,29800,29807,29810,29894,29930,30067,30080,30278,30351,30431,30434,30482,30541,30542,30575,30593,30594,30635,30636,30637,30640,30644,30693,30724,30727,30751,30883,30916,30983,31050,31053,31059,31080,31081,31082,31094,31097,31099]]],["lifetime",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25645]]]]},{"k":"G2223","v":[["*",[8,7,[[39,2,2,0,2,[[931,1,1,0,1],[938,1,1,1,2]]],[40,2,2,2,4,[[957,1,1,2,3],[962,1,1,3,4]]],[43,2,1,4,5,[[1038,2,1,4,5]]],[65,2,2,5,7,[[1167,1,1,5,6],[1181,1,1,6,7]]]],[23196,23426,24221,24415,27675,30710,30952]]],["girdle",[5,4,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[43,2,1,2,3,[[1038,2,1,2,3]]],[65,1,1,3,4,[[1167,1,1,3,4]]]],[23196,24221,27675,30710]]],["girdles",[1,1,[[65,1,1,0,1,[[1181,1,1,0,1]]]],[30952]]],["purse",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24415]]],["purses",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23426]]]]},{"k":"G2224","v":[["*",[2,1,[[42,2,1,0,1,[[1017,2,1,0,1]]]],[26916]]],["gird",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26916]]],["girdedst",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26916]]]]},{"k":"G2225","v":[["*",[2,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[25684,27135]]],["live",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27135]]],["preserve",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25684]]]]},{"k":"G2226","v":[["*",[23,20,[[57,1,1,0,1,[[1145,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]],[65,20,17,3,20,[[1170,7,4,3,7],[1171,4,4,7,11],[1172,5,5,11,16],[1173,1,1,16,17],[1180,1,1,17,18],[1181,1,1,18,19],[1185,1,1,19,20]]]],[30252,30512,30682,30774,30775,30776,30777,30785,30787,30790,30793,30794,30796,30798,30799,30800,30821,30929,30953,31021]]],["beast",[7,4,[[65,7,4,0,4,[[1170,4,1,0,1],[1172,3,3,1,4]]]],[30775,30796,30798,30800]]],["beasts",[16,16,[[57,1,1,0,1,[[1145,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]],[65,13,13,3,16,[[1170,3,3,3,6],[1171,4,4,6,10],[1172,2,2,10,12],[1173,1,1,12,13],[1180,1,1,13,14],[1181,1,1,14,15],[1185,1,1,15,16]]]],[30252,30512,30682,30774,30776,30777,30785,30787,30790,30793,30794,30799,30821,30929,30953,31021]]]]},{"k":"G2227","v":[["*",[12,11,[[42,3,2,0,2,[[1001,2,1,0,1],[1002,1,1,1,2]]],[44,2,2,2,4,[[1049,1,1,2,3],[1053,1,1,3,4]]],[45,3,3,4,7,[[1076,3,3,4,7]]],[46,1,1,7,8,[[1080,1,1,7,8]]],[47,1,1,8,9,[[1093,1,1,8,9]]],[53,1,1,9,10,[[1124,1,1,9,10]]],[59,1,1,10,11,[[1153,1,1,10,11]]]],[26231,26320,28039,28127,28740,28754,28763,28847,29123,29801,30442]]],["alive",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28740]]],["life",[2,2,[[46,1,1,0,1,[[1080,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]]],[28847,29123]]],["quicken",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28127]]],["quickened",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[28754,30442]]],["quickeneth",[5,4,[[42,3,2,0,2,[[1001,2,1,0,1],[1002,1,1,1,2]]],[44,1,1,2,3,[[1049,1,1,2,3]]],[53,1,1,3,4,[[1124,1,1,3,4]]]],[26231,26320,28039,29801]]],["quickening",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28763]]]]},{"k":"G2228","v":[["*",[353,279,[[39,66,46,0,46,[[933,3,3,0,3],[934,4,2,3,5],[935,3,3,5,8],[937,1,1,8,9],[938,6,5,9,14],[939,3,3,14,17],[940,5,4,17,21],[941,1,1,21,22],[943,3,3,22,25],[944,2,2,25,27],[945,2,1,27,28],[946,9,5,28,33],[947,8,2,33,35],[949,1,1,35,36],[950,1,1,36,37],[951,2,2,37,39],[952,1,1,39,40],[953,8,4,40,44],[954,2,1,44,45],[955,1,1,45,46]]],[40,35,24,46,70,[[958,1,1,46,47],[959,3,2,47,49],[960,3,3,49,52],[962,5,3,52,55],[963,3,3,55,58],[964,1,1,58,59],[965,3,3,59,62],[966,8,2,62,64],[967,1,1,64,65],[968,2,2,65,67],[969,4,2,67,69],[970,1,1,69,70]]],[41,46,40,70,110,[[974,1,1,70,71],[977,1,1,71,72],[978,3,2,72,74],[979,2,2,74,76],[980,1,1,76,77],[981,2,2,77,79],[982,2,2,79,81],[983,1,1,81,82],[984,6,5,82,87],[985,2,2,87,89],[986,3,3,89,92],[987,2,2,92,94],[988,3,2,94,96],[989,4,4,96,100],[990,7,4,100,104],[992,3,3,104,107],[994,3,3,107,110]]],[42,12,12,110,122,[[998,1,1,110,111],[999,1,1,111,112],[1000,2,2,112,114],[1002,1,1,114,115],[1003,2,2,115,117],[1005,2,2,117,119],[1009,2,2,119,121],[1014,1,1,121,122]]],[43,38,34,122,156,[[1018,1,1,122,123],[1019,1,1,123,124],[1020,2,1,124,125],[1021,3,3,125,128],[1022,2,2,128,130],[1024,2,2,130,132],[1025,1,1,132,133],[1027,3,2,133,135],[1028,1,1,135,136],[1034,3,2,136,138],[1035,1,1,138,139],[1036,1,1,139,140],[1037,3,2,140,142],[1040,2,2,142,144],[1041,5,5,144,149],[1042,2,2,149,151],[1043,1,1,151,152],[1044,1,1,152,153],[1045,3,3,153,156]]],[44,29,23,156,179,[[1046,1,1,156,157],[1047,2,2,157,159],[1048,2,2,159,161],[1049,3,3,161,164],[1051,2,2,164,166],[1052,1,1,166,167],[1053,6,1,167,168],[1054,2,2,168,170],[1055,1,1,170,171],[1056,3,3,171,174],[1058,1,1,174,175],[1059,5,4,175,179]]],[45,51,41,179,220,[[1062,1,1,179,180],[1063,1,1,180,181],[1064,1,1,181,182],[1065,2,2,182,184],[1066,8,2,184,186],[1067,3,3,186,189],[1068,4,4,189,193],[1070,5,5,193,198],[1071,2,2,198,200],[1072,6,6,200,206],[1073,1,1,206,207],[1074,1,1,207,208],[1075,14,10,208,218],[1076,1,1,218,219],[1077,1,1,219,220]]],[46,13,10,220,230,[[1078,3,2,220,222],[1080,1,1,222,223],[1083,1,1,223,224],[1086,1,1,224,225],[1087,1,1,225,226],[1088,3,2,226,228],[1089,1,1,228,229],[1090,2,1,229,230]]],[47,8,7,230,237,[[1091,3,2,230,232],[1092,1,1,232,233],[1093,3,3,233,236],[1094,1,1,236,237]]],[48,7,5,237,242,[[1099,1,1,237,238],[1101,6,4,238,242]]],[49,2,2,242,244,[[1104,1,1,242,243],[1105,1,1,243,244]]],[50,5,2,244,246,[[1108,4,1,244,245],[1109,1,1,245,246]]],[51,3,1,246,247,[[1112,3,1,246,247]]],[52,1,1,247,248,[[1117,1,1,247,248]]],[53,7,5,248,253,[[1119,1,1,248,249],[1120,3,1,249,250],[1123,3,3,250,253]]],[54,1,1,253,254,[[1127,1,1,253,254]]],[55,2,2,254,256,[[1129,1,1,254,255],[1131,1,1,255,256]]],[56,1,1,256,257,[[1132,1,1,256,257]]],[57,4,4,257,261,[[1134,1,1,257,258],[1142,1,1,258,259],[1143,1,1,259,260],[1144,1,1,260,261]]],[58,6,6,261,267,[[1146,1,1,261,262],[1147,2,2,262,264],[1148,1,1,264,265],[1149,2,2,265,267]]],[59,8,6,267,273,[[1151,2,2,267,269],[1153,3,3,269,272],[1154,3,1,272,273]]],[60,1,1,273,274,[[1157,1,1,273,274]]],[61,1,1,274,275,[[1162,1,1,274,275]]],[65,6,4,275,279,[[1169,1,1,275,276],[1179,4,2,276,278],[1180,1,1,278,279]]]],[23251,23252,23270,23306,23313,23320,23325,23332,23384,23428,23431,23432,23436,23454,23462,23481,23483,23494,23514,23518,23522,23560,23637,23638,23639,23686,23698,23725,23735,23736,23740,23743,23747,23786,23791,23851,23889,23935,23937,23980,24045,24046,24047,24052,24107,24146,24269,24292,24321,24340,24344,24353,24418,24422,24463,24473,24474,24475,24537,24581,24583,24585,24613,24617,24670,24687,24688,24738,24752,24784,24997,25130,25155,25188,25214,25215,25261,25314,25326,25375,25377,25417,25470,25473,25488,25500,25510,25522,25533,25558,25565,25584,25595,25596,25633,25637,25653,25658,25672,25674,25699,25702,25713,25717,25781,25783,25801,25891,25898,25932,26101,26139,26157,26183,26276,26345,26376,26442,26461,26640,26659,26819,26930,26969,27008,27029,27041,27056,27088,27097,27118,27165,27210,27273,27287,27315,27544,27552,27571,27597,27659,27661,27743,27763,27780,27781,27789,27790,27792,27802,27812,27854,27866,27905,27916,27920,27951,27966,27977,27992,28020,28031,28032,28035,28071,28084,28092,28151,28166,28176,28195,28211,28243,28244,28277,28284,28290,28293,28301,28376,28395,28415,28436,28454,28464,28465,28476,28483,28486,28496,28498,28502,28503,28546,28547,28548,28550,28555,28586,28589,28604,28605,28606,28614,28622,28627,28655,28666,28683,28684,28685,28697,28701,28702,28705,28707,28714,28715,28755,28782,28813,28817,28842,28913,28963,28983,28993,28996,29028,29048,29065,29067,29083,29104,29107,29117,29158,29271,29307,29308,29309,29331,29394,29433,29510,29534,29589,29665,29700,29725,29767,29779,29782,29857,29898,29935,29956,29983,30161,30197,30228,30283,30296,30308,30331,30342,30352,30385,30392,30427,30433,30441,30461,30521,30607,30761,30924,30925,30935]]],["+",[11,9,[[41,1,1,0,1,[[983,1,1,0,1]]],[43,2,2,1,3,[[1024,1,1,1,2],[1041,1,1,2,3]]],[44,2,2,3,5,[[1056,1,1,3,4],[1059,1,1,4,5]]],[45,2,2,5,7,[[1064,1,1,5,6],[1071,1,1,6,7]]],[46,4,2,7,9,[[1078,2,1,7,8],[1090,2,1,8,9]]]],[25417,27118,27780,28211,28290,28415,28586,28813,29048]]],["-",[6,6,[[39,1,1,0,1,[[954,1,1,0,1]]],[44,3,3,1,4,[[1051,1,1,1,2],[1052,1,1,2,3],[1054,1,1,3,4]]],[45,1,1,4,5,[[1067,1,1,4,5]]],[46,1,1,5,6,[[1088,1,1,5,6]]]],[24107,28071,28092,28176,28476,28996]]],["Are",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29589]]],["Doth",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28614]]],["Either",[3,3,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,2,2,1,3,[[978,1,1,1,2],[987,1,1,2,3]]]],[23522,25188,25596]]],["Except",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27790]]],["Or",[12,12,[[39,3,3,0,3,[[935,2,2,0,2],[940,1,1,2,3]]],[40,1,1,3,4,[[964,1,1,3,4]]],[41,2,2,4,6,[[985,1,1,4,5],[986,1,1,5,6]]],[43,1,1,6,7,[[1041,1,1,6,7]]],[44,3,3,7,10,[[1047,1,1,7,8],[1055,1,1,8,9],[1056,1,1,9,10]]],[45,2,2,10,12,[[1070,2,2,10,12]]]],[23320,23325,23494,24537,25522,25584,27789,27966,28195,28244,28546,28550]]],["What",[3,3,[[45,3,3,0,3,[[1067,2,2,0,2],[1075,1,1,2,3]]]],[28483,28486,28714]]],["and",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[45,1,1,1,2,[[1072,1,1,1,2]]],[59,1,1,2,3,[[1151,1,1,2,3]]]],[24418,28627,30392]]],["but",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]]],[25314,27544]]],["either",[5,5,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]],[58,1,1,4,5,[[1148,1,1,4,5]]]],[23306,25633,28684,29433,30331]]],["else",[3,3,[[39,2,2,0,2,[[940,2,2,0,2]]],[41,1,1,2,3,[[988,1,1,2,3]]]],[23518,23522,25633]]],["he",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28020]]],["neither",[3,3,[[43,1,1,0,1,[[1041,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[27781,27951,30283]]],["nor",[5,4,[[41,1,1,0,1,[[994,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]],[48,3,2,2,4,[[1101,3,2,2,4]]]],[25932,28655,29308,29309]]],["or",[245,183,[[39,50,34,0,34,[[933,3,3,0,3],[934,3,2,3,5],[935,1,1,5,6],[937,1,1,6,7],[938,5,4,7,11],[939,1,1,11,12],[940,1,1,12,13],[941,1,1,13,14],[943,3,3,14,17],[944,2,2,17,19],[945,2,1,19,20],[946,6,3,20,23],[947,7,1,23,24],[949,1,1,24,25],[950,1,1,25,26],[951,2,2,26,28],[952,1,1,28,29],[953,8,4,29,33],[955,1,1,33,34]]],[40,27,17,34,51,[[958,1,1,34,35],[959,3,2,35,37],[960,3,3,37,40],[962,3,2,40,42],[963,3,3,42,45],[966,7,1,45,46],[967,1,1,46,47],[968,2,2,47,49],[969,4,2,49,51]]],[41,28,23,51,74,[[974,1,1,51,52],[977,1,1,52,53],[978,2,1,53,54],[979,2,2,54,56],[980,1,1,56,57],[981,1,1,57,58],[984,5,4,58,62],[985,1,1,62,63],[986,2,2,63,65],[989,3,3,65,68],[990,5,2,68,70],[992,3,3,70,73],[994,1,1,73,74]]],[42,9,9,74,83,[[998,1,1,74,75],[1000,1,1,75,76],[1002,1,1,76,77],[1003,2,2,77,79],[1005,2,2,79,81],[1009,1,1,81,82],[1014,1,1,82,83]]],[43,25,21,83,104,[[1018,1,1,83,84],[1020,2,1,84,85],[1021,2,2,85,87],[1022,1,1,87,88],[1024,1,1,88,89],[1025,1,1,89,90],[1027,3,2,90,92],[1028,1,1,92,93],[1034,2,1,93,94],[1035,1,1,94,95],[1036,1,1,95,96],[1037,2,1,96,97],[1040,2,2,97,99],[1041,1,1,99,100],[1043,1,1,100,101],[1045,3,3,101,104]]],[44,18,12,104,116,[[1047,1,1,104,105],[1048,1,1,105,106],[1049,3,3,106,109],[1051,1,1,109,110],[1053,6,1,110,111],[1054,1,1,111,112],[1056,1,1,112,113],[1059,4,3,113,116]]],[45,33,25,116,141,[[1062,1,1,116,117],[1063,1,1,117,118],[1065,2,2,118,120],[1066,8,2,120,122],[1068,3,3,122,125],[1070,2,2,125,127],[1072,4,4,127,131],[1074,1,1,131,132],[1075,10,8,132,140],[1076,1,1,140,141]]],[46,8,7,141,148,[[1078,1,1,141,142],[1080,1,1,142,143],[1083,1,1,143,144],[1086,1,1,144,145],[1087,1,1,145,146],[1088,2,1,146,147],[1089,1,1,147,148]]],[47,7,6,148,154,[[1091,3,2,148,150],[1092,1,1,150,151],[1093,3,3,151,154]]],[48,4,3,154,157,[[1099,1,1,154,155],[1101,3,2,155,157]]],[49,1,1,157,158,[[1104,1,1,157,158]]],[50,5,2,158,160,[[1108,4,1,158,159],[1109,1,1,159,160]]],[51,2,1,160,161,[[1112,2,1,160,161]]],[52,1,1,161,162,[[1117,1,1,161,162]]],[53,6,4,162,166,[[1120,3,1,162,163],[1123,3,3,163,166]]],[55,2,2,166,168,[[1129,1,1,166,167],[1131,1,1,167,168]]],[56,1,1,168,169,[[1132,1,1,168,169]]],[57,3,3,169,172,[[1134,1,1,169,170],[1142,1,1,170,171],[1144,1,1,171,172]]],[58,3,3,172,175,[[1147,2,2,172,174],[1149,1,1,174,175]]],[59,6,4,175,179,[[1151,1,1,175,176],[1153,2,2,176,178],[1154,3,1,178,179]]],[65,6,4,179,183,[[1169,1,1,179,180],[1179,4,2,180,182],[1180,1,1,182,183]]]],[23251,23252,23270,23306,23313,23332,23384,23428,23431,23436,23454,23462,23514,23560,23637,23638,23639,23686,23698,23725,23735,23743,23747,23791,23851,23889,23935,23937,23980,24045,24046,24047,24052,24146,24269,24292,24321,24340,24344,24353,24422,24463,24473,24474,24475,24617,24670,24687,24688,24738,24752,24997,25130,25155,25214,25215,25261,25326,25470,25473,25488,25500,25533,25558,25565,25658,25672,25674,25699,25717,25781,25783,25801,25891,26101,26183,26276,26345,26376,26442,26461,26659,26819,26930,27008,27029,27056,27097,27165,27210,27273,27287,27315,27552,27571,27597,27659,27743,27763,27792,27854,27905,27916,27920,27977,27992,28031,28032,28035,28084,28151,28166,28243,28284,28293,28301,28376,28395,28436,28454,28464,28465,28498,28502,28503,28547,28548,28604,28605,28606,28622,28666,28684,28685,28701,28702,28705,28707,28714,28715,28755,28817,28842,28913,28963,28983,28993,29028,29065,29067,29083,29104,29107,29117,29271,29307,29331,29394,29510,29534,29589,29665,29725,29767,29779,29782,29898,29935,29956,29983,30161,30228,30296,30308,30352,30385,30427,30433,30461,30761,30924,30925,30935]]],["rather",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23736,25510]]],["save",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26640]]],["than",[38,38,[[39,7,7,0,7,[[938,1,1,0,1],[939,2,2,1,3],[946,2,2,3,5],[947,1,1,5,6],[954,1,1,6,7]]],[40,5,5,7,12,[[962,1,1,7,8],[965,3,3,8,11],[966,1,1,11,12]]],[41,7,7,12,19,[[982,2,2,12,14],[987,1,1,14,15],[988,1,1,15,16],[989,1,1,16,17],[990,2,2,17,19]]],[42,2,2,19,21,[[999,1,1,19,20],[1000,1,1,20,21]]],[43,5,5,21,26,[[1021,1,1,21,22],[1022,1,1,22,23],[1037,1,1,23,24],[1042,1,1,24,25],[1044,1,1,25,26]]],[44,1,1,26,27,[[1058,1,1,26,27]]],[45,4,4,27,31,[[1068,1,1,27,28],[1070,1,1,28,29],[1075,2,2,29,31]]],[47,1,1,31,32,[[1094,1,1,31,32]]],[53,1,1,32,33,[[1119,1,1,32,33]]],[54,1,1,33,34,[[1127,1,1,33,34]]],[57,1,1,34,35,[[1143,1,1,34,35]]],[59,1,1,35,36,[[1153,1,1,35,36]]],[60,1,1,36,37,[[1157,1,1,36,37]]],[61,1,1,37,38,[[1162,1,1,37,38]]]],[23432,23481,23483,23735,23740,23786,24107,24418,24581,24583,24585,24613,25375,25377,25595,25637,25653,25702,25713,26139,26157,27041,27088,27661,27802,27866,28277,28496,28555,28683,28697,29158,29700,29857,30197,30441,30521,30607]]],["that",[3,3,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,2,2,1,3,[[1019,1,1,1,2],[1042,1,1,2,3]]]],[25898,26969,27812]]],["the",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24784]]],["we",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28589]]],["ye",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30342]]],["yea",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28782]]]]},{"k":"G2229","v":[["+",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30058]]]]},{"k":"G2230","v":[["governor",[2,2,[[41,2,2,0,2,[[974,1,1,0,1],[975,1,1,1,2]]]],[24975,25026]]]]},{"k":"G2231","v":[["reign",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25026]]]]},{"k":"G2232","v":[["*",[22,21,[[39,11,10,0,10,[[930,1,1,0,1],[938,1,1,1,2],[955,8,7,2,9],[956,1,1,9,10]]],[40,1,1,10,11,[[969,1,1,10,11]]],[41,2,2,11,13,[[992,1,1,11,12],[993,1,1,12,13]]],[43,7,7,13,20,[[1040,4,4,13,17],[1041,2,2,17,19],[1043,1,1,19,20]]],[59,1,1,20,21,[[1152,1,1,20,21]]]],[23175,23435,24131,24140,24143,24144,24150,24152,24156,24209,24726,25799,25838,27758,27760,27767,27768,27770,27779,27853,30413]]],["+",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24209]]],["governor",[16,15,[[39,8,7,0,7,[[955,8,7,0,7]]],[41,1,1,7,8,[[992,1,1,7,8]]],[43,7,7,8,15,[[1040,4,4,8,12],[1041,2,2,12,14],[1043,1,1,14,15]]]],[24131,24140,24143,24144,24150,24152,24156,25799,27758,27760,27767,27768,27770,27779,27853]]],["governors",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[23435,30413]]],["princes",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23175]]],["rulers",[2,2,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]]],[24726,25838]]]]},{"k":"G2233","v":[["*",[28,27,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[43,4,4,2,6,[[1024,1,1,2,3],[1031,1,1,3,4],[1032,1,1,4,5],[1043,1,1,5,6]]],[46,1,1,6,7,[[1086,1,1,6,7]]],[49,6,5,7,12,[[1104,3,3,7,10],[1105,3,2,10,12]]],[51,1,1,12,13,[[1115,1,1,12,13]]],[52,1,1,13,14,[[1118,1,1,13,14]]],[53,2,2,14,16,[[1119,1,1,14,15],[1124,1,1,15,16]]],[57,6,6,16,22,[[1142,1,1,16,17],[1143,2,2,17,19],[1145,3,3,19,22]]],[58,1,1,22,23,[[1146,1,1,22,23]]],[60,4,4,23,27,[[1156,1,1,23,24],[1157,1,1,24,25],[1158,2,2,25,27]]]],[23175,25890,27126,27426,27464,27825,28961,29394,29397,29416,29428,29429,29634,29693,29708,29789,30162,30183,30198,30248,30258,30265,30268,30492,30513,30531,30537]]],["+",[2,2,[[43,1,1,0,1,[[1031,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[27426,29394]]],["Esteeming",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30198]]],["Governor",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23175]]],["account",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30537]]],["chief",[2,2,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]]],[25890,27464]]],["count",[7,6,[[49,2,1,0,1,[[1105,2,1,0,1]]],[52,1,1,1,2,[[1118,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]],[58,1,1,3,4,[[1146,1,1,3,4]]],[60,2,2,4,6,[[1157,1,1,4,5],[1158,1,1,5,6]]]],[29429,29693,29789,30268,30513,30531]]],["counted",[3,3,[[49,1,1,0,1,[[1105,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[29428,29708,30162]]],["esteem",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29634]]],["governor",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27126]]],["judged",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30183]]],["over",[3,3,[[57,3,3,0,3,[[1145,3,3,0,3]]]],[30248,30258,30265]]],["supposed",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29416]]],["think",[2,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[27825,30492]]],["thought",[2,2,[[46,1,1,0,1,[[1086,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[28961,29397]]]]},{"k":"G2234","v":[["gladly",[3,3,[[40,2,2,0,2,[[962,1,1,0,1],[968,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]]],[24427,24710,29008]]]]},{"k":"G2235","v":[["*",[59,54,[[39,7,7,0,7,[[931,1,1,0,1],[933,1,1,1,2],[942,2,2,2,4],[943,1,1,4,5],[945,1,1,5,6],[952,1,1,6,7]]],[40,8,7,7,14,[[960,1,1,7,8],[962,2,1,8,9],[964,1,1,9,10],[967,1,1,10,11],[969,1,1,11,12],[971,2,2,12,14]]],[41,8,7,14,21,[[975,1,1,14,15],[979,1,1,15,16],[983,1,1,16,17],[984,1,1,17,18],[986,1,1,18,19],[991,1,1,19,20],[993,2,1,20,21]]],[42,16,16,21,37,[[999,1,1,21,22],[1000,2,2,22,24],[1001,1,1,24,25],[1002,1,1,25,26],[1003,1,1,26,27],[1005,2,2,27,29],[1007,2,2,29,31],[1009,1,1,31,32],[1011,1,1,32,33],[1015,2,2,33,35],[1017,2,2,35,37]]],[43,3,2,37,39,[[1021,1,1,37,38],[1044,2,1,38,39]]],[44,3,3,39,42,[[1046,1,1,39,40],[1049,1,1,40,41],[1058,1,1,41,42]]],[45,4,3,42,45,[[1065,2,1,42,43],[1066,1,1,43,44],[1067,1,1,44,45]]],[49,3,2,45,47,[[1105,2,1,45,46],[1106,1,1,46,47]]],[52,1,1,47,48,[[1117,1,1,47,48]]],[53,1,1,48,49,[[1123,1,1,48,49]]],[54,2,2,49,51,[[1126,1,1,49,50],[1128,1,1,50,51]]],[60,1,1,51,52,[[1158,1,1,51,52]]],[61,2,2,52,54,[[1160,1,1,52,53],[1162,1,1,53,54]]]],[23202,23262,23612,23621,23665,23712,23989,24360,24442,24502,24651,24745,24868,24870,25034,25201,25412,25508,25570,25768,25856,26138,26191,26207,26216,26274,26342,26462,26467,26540,26562,26632,26702,26853,26858,26902,26912,27025,27864,27940,28041,28277,28441,28457,28474,29433,29452,29668,29778,29845,29876,30523,30558,30606]]],["+",[6,6,[[40,3,3,0,3,[[960,1,1,0,1],[962,1,1,1,2],[971,1,1,2,3]]],[43,1,1,3,4,[[1044,1,1,3,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]],[54,1,1,5,6,[[1128,1,1,5,6]]]],[24360,24442,24870,27864,29433,29876]]],["Now",[3,3,[[42,1,1,0,1,[[1011,1,1,0,1]]],[45,2,2,1,3,[[1065,1,1,1,2],[1067,1,1,2,3]]]],[26702,28441,28474]]],["about",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26342]]],["already",[15,15,[[39,2,2,0,2,[[933,1,1,0,1],[945,1,1,1,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[42,6,6,3,9,[[999,1,1,3,4],[1000,1,1,4,5],[1005,2,2,5,7],[1007,1,1,7,8],[1015,1,1,8,9]]],[45,1,1,9,10,[[1066,1,1,9,10]]],[49,1,1,10,11,[[1105,1,1,10,11]]],[52,1,1,11,12,[[1117,1,1,11,12]]],[53,1,1,12,13,[[1123,1,1,12,13]]],[54,1,1,13,14,[[1126,1,1,13,14]]],[61,1,1,14,15,[[1162,1,1,14,15]]]],[23262,23712,25508,26138,26191,26462,26467,26540,26858,28457,29433,29668,29778,29845,30606]]],["now",[31,30,[[39,4,4,0,4,[[931,1,1,0,1],[942,2,2,1,3],[943,1,1,3,4]]],[40,4,4,4,8,[[962,1,1,4,5],[964,1,1,5,6],[967,1,1,6,7],[971,1,1,7,8]]],[41,7,6,8,14,[[975,1,1,8,9],[979,1,1,9,10],[983,1,1,10,11],[986,1,1,11,12],[991,1,1,12,13],[993,2,1,13,14]]],[42,7,7,14,21,[[1000,1,1,14,15],[1001,1,1,15,16],[1002,1,1,16,17],[1009,1,1,17,18],[1015,1,1,18,19],[1017,2,2,19,21]]],[43,2,2,21,23,[[1021,1,1,21,22],[1044,1,1,22,23]]],[44,3,3,23,26,[[1046,1,1,23,24],[1049,1,1,24,25],[1058,1,1,25,26]]],[45,1,1,26,27,[[1065,1,1,26,27]]],[49,1,1,27,28,[[1106,1,1,27,28]]],[60,1,1,28,29,[[1158,1,1,28,29]]],[61,1,1,29,30,[[1160,1,1,29,30]]]],[23202,23612,23621,23665,24442,24502,24651,24868,25034,25201,25412,25570,25768,25856,26207,26216,26274,26632,26853,26902,26912,27025,27864,27940,28041,28277,28441,29452,30523,30558]]],["time",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26562]]],["yet",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23989,24745]]]]},{"k":"G2236","v":[["gladly",[2,2,[[46,2,2,0,2,[[1089,2,2,0,2]]]],[29031,29037]]]]},{"k":"G2237","v":[["*",[5,5,[[41,1,1,0,1,[[980,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]],[58,2,2,2,4,[[1149,2,2,2,4]]],[60,1,1,4,5,[[1157,1,1,4,5]]]],[25259,29926,30338,30340,30513]]],["lusts",[2,2,[[58,2,2,0,2,[[1149,2,2,0,2]]]],[30338,30340]]],["pleasure",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30513]]],["pleasures",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[25259,29926]]]]},{"k":"G2238","v":[["mint",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23941,25447]]]]},{"k":"G2239","v":[["manners",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28751]]]]},{"k":"G2240","v":[["*",[27,26,[[39,4,4,0,4,[[936,1,1,0,1],[951,1,1,1,2],[952,2,2,2,4]]],[40,1,1,4,5,[[964,1,1,4,5]]],[41,5,5,5,10,[[984,1,1,5,6],[985,2,2,6,8],[987,1,1,8,9],[991,1,1,9,10]]],[42,4,4,10,14,[[998,1,1,10,11],[1000,1,1,11,12],[1002,1,1,12,13],[1004,1,1,13,14]]],[43,1,1,14,15,[[1045,1,1,14,15]]],[44,1,1,15,16,[[1056,1,1,15,16]]],[57,3,3,16,19,[[1142,3,3,16,19]]],[60,1,1,19,20,[[1158,1,1,19,20]]],[61,1,1,20,21,[[1163,1,1,20,21]]],[65,6,5,21,26,[[1168,1,1,21,22],[1169,3,2,22,24],[1181,1,1,24,25],[1184,1,1,25,26]]]],[23356,23954,23971,24007,24503,25505,25547,25553,25615,25774,26099,26203,26294,26423,27922,28235,30140,30142,30170,30532,30644,30742,30749,30755,30950,31001]]],["+",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30742]]],["came",[3,3,[[40,1,1,0,1,[[964,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]]],[24503,26423,27922]]],["come",[23,22,[[39,4,4,0,4,[[936,1,1,0,1],[951,1,1,1,2],[952,2,2,2,4]]],[41,5,5,4,9,[[984,1,1,4,5],[985,2,2,5,7],[987,1,1,7,8],[991,1,1,8,9]]],[42,3,3,9,12,[[998,1,1,9,10],[1000,1,1,10,11],[1002,1,1,11,12]]],[44,1,1,12,13,[[1056,1,1,12,13]]],[57,3,3,13,16,[[1142,3,3,13,16]]],[60,1,1,16,17,[[1158,1,1,16,17]]],[61,1,1,17,18,[[1163,1,1,17,18]]],[65,5,4,18,22,[[1169,3,2,18,20],[1181,1,1,20,21],[1184,1,1,21,22]]]],[23356,23954,23971,24007,25505,25547,25553,25615,25774,26099,26203,26294,28235,30140,30142,30170,30532,30644,30749,30755,30950,31001]]]]},{"k":"G2241","v":[["Eli",[2,1,[[39,2,1,0,1,[[955,2,1,0,1]]]],[24175]]]]},{"k":"G2242","v":[["Heli",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25048]]]]},{"k":"G2243","v":[["Elias",[30,30,[[39,9,9,0,9,[[939,1,1,0,1],[944,1,1,1,2],[945,5,5,2,7],[955,2,2,7,9]]],[40,9,9,9,18,[[962,1,1,9,10],[964,1,1,10,11],[965,5,5,11,16],[971,2,2,16,18]]],[41,8,8,18,26,[[973,1,1,18,19],[976,2,2,19,21],[981,5,5,21,26]]],[42,2,2,26,28,[[997,2,2,26,28]]],[44,1,1,28,29,[[1056,1,1,28,29]]],[58,1,1,29,30,[[1150,1,1,29,30]]]],[23473,23686,23703,23704,23710,23711,23712,24176,24178,24422,24528,24542,24543,24549,24550,24551,24861,24862,24910,25088,25089,25309,25320,25331,25334,25355,26065,26069,28211,30371]]]]},{"k":"G2244","v":[["*",[8,8,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,3,3,1,4,[[974,1,1,1,2],[984,1,1,2,3],[991,1,1,3,4]]],[42,2,2,4,6,[[1005,2,2,4,6]]],[48,1,1,6,7,[[1100,1,1,6,7]]],[57,1,1,7,8,[[1143,1,1,7,8]]]],[23309,25025,25484,25734,26461,26463,29285,30183]]],["+",[3,3,[[42,2,2,0,2,[[1005,2,2,0,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[26461,26463,30183]]],["stature",[5,5,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,3,3,1,4,[[974,1,1,1,2],[984,1,1,2,3],[991,1,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]]],[23309,25025,25484,25734,29285]]]]},{"k":"G2245","v":[["great",[2,2,[[50,1,1,0,1,[[1108,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[29495,30324]]]]},{"k":"G2246","v":[["*",[32,32,[[39,5,5,0,5,[[933,1,1,0,1],[941,2,2,1,3],[945,1,1,3,4],[952,1,1,4,5]]],[40,4,4,5,9,[[957,1,1,5,6],[960,1,1,6,7],[969,1,1,7,8],[972,1,1,8,9]]],[41,3,3,9,12,[[976,1,1,9,10],[993,1,1,10,11],[995,1,1,11,12]]],[43,4,4,12,16,[[1019,1,1,12,13],[1030,1,1,13,14],[1043,1,1,14,15],[1044,1,1,15,16]]],[45,1,1,16,17,[[1076,1,1,16,17]]],[48,1,1,17,18,[[1100,1,1,17,18]]],[58,1,1,18,19,[[1146,1,1,18,19]]],[65,13,13,19,32,[[1167,1,1,19,20],[1172,1,1,20,21],[1173,2,2,21,23],[1174,1,1,23,24],[1175,1,1,24,25],[1176,1,1,25,26],[1178,1,1,26,27],[1182,2,2,27,29],[1185,1,1,29,30],[1187,1,1,30,31],[1188,1,1,31,32]]]],[23279,23545,23582,23702,23986,24247,24329,24741,24875,25103,25851,25980,26969,27373,27836,27875,28759,29298,30277,30713,30805,30812,30826,30839,30842,30862,30892,30962,30966,31034,31076,31085]]],["+",[2,2,[[65,2,2,0,2,[[1173,1,1,0,1],[1182,1,1,1,2]]]],[30812,30966]]],["sun",[30,30,[[39,5,5,0,5,[[933,1,1,0,1],[941,2,2,1,3],[945,1,1,3,4],[952,1,1,4,5]]],[40,4,4,5,9,[[957,1,1,5,6],[960,1,1,6,7],[969,1,1,7,8],[972,1,1,8,9]]],[41,3,3,9,12,[[976,1,1,9,10],[993,1,1,10,11],[995,1,1,11,12]]],[43,4,4,12,16,[[1019,1,1,12,13],[1030,1,1,13,14],[1043,1,1,14,15],[1044,1,1,15,16]]],[45,1,1,16,17,[[1076,1,1,16,17]]],[48,1,1,17,18,[[1100,1,1,17,18]]],[58,1,1,18,19,[[1146,1,1,18,19]]],[65,11,11,19,30,[[1167,1,1,19,20],[1172,1,1,20,21],[1173,1,1,21,22],[1174,1,1,22,23],[1175,1,1,23,24],[1176,1,1,24,25],[1178,1,1,25,26],[1182,1,1,26,27],[1185,1,1,27,28],[1187,1,1,28,29],[1188,1,1,29,30]]]],[23279,23545,23582,23702,23986,24247,24329,24741,24875,25103,25851,25980,26969,27373,27836,27875,28759,29298,30277,30713,30805,30826,30839,30842,30862,30892,30962,31034,31076,31085]]]]},{"k":"G2247","v":[["nails",[2,1,[[42,2,1,0,1,[[1016,2,1,0,1]]]],[26892]]]]},{"k":"G2248","v":[["*",[180,166,[[39,13,12,0,12,[[934,2,1,0,1],[936,3,3,1,4],[937,1,1,4,5],[941,1,1,5,6],[945,1,1,6,7],[948,3,3,7,10],[955,2,2,10,12]]],[40,5,5,12,17,[[957,1,1,12,13],[961,1,1,13,14],[962,1,1,14,15],[965,2,2,15,17]]],[41,19,17,17,34,[[973,2,2,17,19],[975,1,1,19,20],[976,1,1,20,21],[979,1,1,21,22],[981,1,1,22,23],[983,4,3,23,26],[984,1,1,26,27],[988,1,1,27,28],[989,1,1,28,29],[991,1,1,29,30],[992,1,1,30,31],[995,3,2,31,33],[996,1,1,33,34]]],[42,2,2,34,36,[[997,1,1,34,35],[1005,1,1,35,36]]],[43,29,26,36,62,[[1018,1,1,36,37],[1020,1,1,37,38],[1021,1,1,38,39],[1022,1,1,39,40],[1023,1,1,40,41],[1024,2,2,41,43],[1028,1,1,43,44],[1031,2,2,44,46],[1033,5,3,46,49],[1037,1,1,49,50],[1038,5,4,50,54],[1044,5,5,54,59],[1045,3,3,59,62]]],[44,13,13,62,75,[[1048,1,1,62,63],[1049,1,1,63,64],[1050,1,1,64,65],[1051,1,1,65,66],[1052,1,1,66,67],[1053,4,4,67,71],[1054,1,1,71,72],[1058,1,1,72,73],[1060,1,1,73,74],[1061,1,1,74,75]]],[45,8,7,75,82,[[1065,2,2,75,77],[1067,1,1,77,78],[1068,1,1,78,79],[1069,1,1,79,80],[1070,2,1,80,81],[1071,1,1,81,82]]],[46,23,21,82,103,[[1078,10,8,82,90],[1079,1,1,90,91],[1080,1,1,91,92],[1081,1,1,92,93],[1082,4,4,93,97],[1084,2,2,97,99],[1085,3,3,99,102],[1087,1,1,102,103]]],[47,5,5,103,108,[[1091,2,2,103,105],[1092,1,1,105,106],[1093,1,1,106,107],[1095,1,1,107,108]]],[48,12,11,108,119,[[1097,8,7,108,115],[1098,3,3,115,118],[1101,1,1,118,119]]],[49,1,1,119,120,[[1105,1,1,119,120]]],[50,2,2,120,122,[[1107,2,2,120,122]]],[51,10,9,122,131,[[1111,2,2,122,124],[1112,3,3,124,127],[1113,2,1,127,128],[1114,2,2,128,130],[1115,1,1,130,131]]],[52,4,4,131,135,[[1116,1,1,131,132],[1117,1,1,132,133],[1118,2,2,133,135]]],[54,2,2,135,137,[[1125,1,1,135,136],[1126,1,1,136,137]]],[55,5,5,137,142,[[1130,2,2,137,139],[1131,3,3,139,142]]],[57,3,3,142,145,[[1134,2,2,142,144],[1145,1,1,144,145]]],[58,2,1,145,146,[[1146,2,1,145,146]]],[59,5,5,146,151,[[1151,2,2,146,148],[1153,2,2,148,150],[1155,1,1,150,151]]],[60,2,2,151,153,[[1156,1,1,151,152],[1158,1,1,152,153]]],[61,6,6,153,159,[[1159,2,2,153,155],[1161,1,1,155,156],[1162,3,3,156,159]]],[63,2,2,159,161,[[1165,2,2,159,161]]],[65,7,5,161,166,[[1167,3,2,161,163],[1171,2,2,163,165],[1172,2,1,165,166]]]],[23295,23370,23374,23376,23406,23595,23704,23799,23822,23823,24133,24154,24239,24376,24410,24543,24560,24964,24971,25039,25097,25215,25334,25406,25409,25450,25500,25646,25664,25745,25785,25965,25974,26013,26066,26474,26944,27000,27034,27087,27103,27143,27156,27322,27425,27436,27493,27498,27520,27631,27665,27669,27675,27681,27856,27861,27862,27875,27881,27901,27906,27909,27999,28046,28055,28074,28097,28134,28151,28153,28155,28179,28277,28310,28342,28434,28442,28481,28502,28535,28550,28573,28804,28805,28808,28810,28811,28814,28821,28822,28838,28847,28873,28882,28887,28891,28895,28918,28922,28936,28938,28952,28973,29061,29080,29085,29115,29163,29209,29210,29211,29212,29214,29218,29225,29233,29234,29236,29306,29438,29477,29478,29568,29570,29585,29586,29588,29596,29610,29611,29630,29653,29677,29685,29687,29818,29839,29920,29922,29928,29929,29938,29978,29980,30247,30284,30377,30378,30442,30445,30475,30482,30531,30547,30549,30580,30613,30614,30622,30667,30668,30702,30703,30788,30789,30809]]],["+",[14,12,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[43,3,2,2,4,[[1033,2,1,2,3],[1038,1,1,3,4]]],[45,2,1,4,5,[[1070,2,1,4,5]]],[46,2,2,5,7,[[1079,1,1,5,6],[1080,1,1,6,7]]],[47,2,2,7,9,[[1092,1,1,7,8],[1095,1,1,8,9]]],[48,1,1,9,10,[[1097,1,1,9,10]]],[50,1,1,10,11,[[1107,1,1,10,11]]],[59,1,1,11,12,[[1151,1,1,11,12]]]],[23376,26013,27520,27669,28550,28838,28847,29085,29163,29212,29477,30377]]],["to",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28277]]],["us",[136,129,[[39,12,11,0,11,[[934,2,1,0,1],[936,2,2,1,3],[937,1,1,3,4],[941,1,1,4,5],[945,1,1,5,6],[948,3,3,6,9],[955,2,2,9,11]]],[40,5,5,11,16,[[957,1,1,11,12],[961,1,1,12,13],[962,1,1,13,14],[965,2,2,14,16]]],[41,17,15,16,31,[[973,2,2,16,18],[976,1,1,18,19],[979,1,1,19,20],[981,1,1,20,21],[983,4,3,21,24],[984,1,1,24,25],[988,1,1,25,26],[989,1,1,26,27],[991,1,1,27,28],[992,1,1,28,29],[995,3,2,29,31]]],[42,2,2,31,33,[[997,1,1,31,32],[1005,1,1,32,33]]],[43,18,18,33,51,[[1018,1,1,33,34],[1020,1,1,34,35],[1022,1,1,35,36],[1024,2,2,36,38],[1028,1,1,38,39],[1031,1,1,39,40],[1033,3,3,40,43],[1037,1,1,43,44],[1038,2,2,44,46],[1044,2,2,46,48],[1045,3,3,48,51]]],[44,9,9,51,60,[[1049,1,1,51,52],[1050,1,1,52,53],[1053,4,4,53,57],[1054,1,1,57,58],[1060,1,1,58,59],[1061,1,1,59,60]]],[45,5,5,60,65,[[1065,2,2,60,62],[1067,1,1,62,63],[1068,1,1,63,64],[1069,1,1,64,65]]],[46,16,15,65,80,[[1078,8,7,65,72],[1081,1,1,72,73],[1082,3,3,73,76],[1084,2,2,76,78],[1085,1,1,78,79],[1087,1,1,79,80]]],[47,3,3,80,83,[[1091,2,2,80,82],[1093,1,1,82,83]]],[48,7,7,83,90,[[1097,4,4,83,87],[1098,2,2,87,89],[1101,1,1,89,90]]],[49,1,1,90,91,[[1105,1,1,90,91]]],[50,1,1,91,92,[[1107,1,1,91,92]]],[51,9,8,92,100,[[1111,1,1,92,93],[1112,3,3,93,96],[1113,2,1,96,97],[1114,2,2,97,99],[1115,1,1,99,100]]],[52,3,3,100,103,[[1117,1,1,100,101],[1118,2,2,101,103]]],[54,2,2,103,105,[[1125,1,1,103,104],[1126,1,1,104,105]]],[55,5,5,105,110,[[1130,2,2,105,107],[1131,3,3,107,110]]],[57,1,1,110,111,[[1134,1,1,110,111]]],[58,1,1,111,112,[[1146,1,1,111,112]]],[59,3,3,112,115,[[1153,2,2,112,114],[1155,1,1,114,115]]],[60,1,1,115,116,[[1156,1,1,115,116]]],[61,6,6,116,122,[[1159,2,2,116,118],[1161,1,1,118,119],[1162,3,3,119,122]]],[63,2,2,122,124,[[1165,2,2,122,124]]],[65,7,5,124,129,[[1167,3,2,124,126],[1171,2,2,126,128],[1172,2,1,128,129]]]],[23295,23370,23374,23406,23595,23704,23799,23822,23823,24133,24154,24239,24376,24410,24543,24560,24964,24971,25097,25215,25334,25406,25409,25450,25500,25646,25664,25745,25785,25965,25974,26066,26474,26944,27000,27087,27143,27156,27322,27425,27493,27498,27520,27631,27675,27681,27861,27862,27901,27906,27909,28046,28055,28134,28151,28153,28155,28179,28310,28342,28434,28442,28481,28502,28535,28804,28805,28810,28811,28814,28821,28822,28873,28882,28891,28895,28918,28922,28952,28973,29061,29080,29115,29209,29210,29211,29214,29233,29236,29306,29438,29478,29570,29585,29586,29588,29596,29610,29611,29630,29677,29685,29687,29818,29839,29920,29922,29928,29929,29938,29980,30284,30442,30445,30475,30482,30547,30549,30580,30613,30614,30622,30667,30668,30702,30703,30788,30789,30809]]],["usward",[2,2,[[48,1,1,0,1,[[1097,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[29225,30531]]],["we",[26,26,[[41,1,1,0,1,[[975,1,1,0,1]]],[43,8,8,1,9,[[1021,1,1,1,2],[1023,1,1,2,3],[1031,1,1,3,4],[1038,2,2,4,6],[1044,3,3,6,9]]],[44,3,3,9,12,[[1048,1,1,9,10],[1051,1,1,10,11],[1052,1,1,11,12]]],[45,1,1,12,13,[[1071,1,1,12,13]]],[46,5,5,13,18,[[1078,2,2,13,15],[1082,1,1,15,16],[1085,2,2,16,18]]],[48,3,3,18,21,[[1097,2,2,18,20],[1098,1,1,20,21]]],[51,1,1,21,22,[[1111,1,1,21,22]]],[52,1,1,22,23,[[1116,1,1,22,23]]],[57,2,2,23,25,[[1134,1,1,23,24],[1145,1,1,24,25]]],[58,1,1,25,26,[[1146,1,1,25,26]]]],[25039,27034,27103,27436,27665,27669,27856,27875,27881,27999,28074,28097,28573,28804,28808,28887,28936,28938,29210,29218,29234,29568,29653,29978,30247,30284]]],["you",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30378]]]]},{"k":"G2249","v":[["*",[125,120,[[39,5,5,0,5,[[934,1,1,0,1],[937,1,1,1,2],[945,1,1,2,3],[947,1,1,3,4],[956,1,1,4,5]]],[40,3,3,5,8,[[965,1,1,5,6],[966,1,1,6,7],[970,1,1,7,8]]],[41,4,4,8,12,[[981,1,1,8,9],[990,1,1,9,10],[995,1,1,10,11],[996,1,1,11,12]]],[42,18,18,12,30,[[997,1,1,12,13],[1000,1,1,13,14],[1002,2,2,14,16],[1003,1,1,16,17],[1004,2,2,17,19],[1005,5,5,19,24],[1007,1,1,24,25],[1008,1,1,25,26],[1013,2,2,26,28],[1015,1,1,28,29],[1017,1,1,29,30]]],[43,21,21,30,51,[[1019,2,2,30,32],[1020,1,1,32,33],[1021,2,2,33,35],[1022,1,1,35,36],[1023,1,1,36,37],[1027,3,3,37,40],[1030,1,1,40,41],[1031,1,1,41,42],[1032,1,1,42,43],[1037,2,2,43,45],[1038,3,3,45,48],[1040,1,1,48,49],[1041,1,1,49,50],[1045,1,1,50,51]]],[44,3,3,51,54,[[1051,1,1,51,52],[1053,1,1,52,53],[1060,1,1,53,54]]],[45,17,13,54,67,[[1062,1,1,54,55],[1063,2,2,55,57],[1065,4,2,57,59],[1069,2,1,59,60],[1070,4,3,60,63],[1072,1,1,63,64],[1073,1,1,64,65],[1076,2,2,65,67]]],[46,16,15,67,82,[[1078,1,1,67,68],[1080,1,1,68,69],[1081,2,2,69,71],[1082,2,2,71,73],[1086,1,1,73,74],[1087,2,2,74,76],[1088,2,2,76,78],[1090,5,4,78,82]]],[47,7,7,82,89,[[1091,1,1,82,83],[1092,3,3,83,86],[1094,2,2,86,88],[1095,1,1,88,89]]],[48,1,1,89,90,[[1098,1,1,89,90]]],[49,1,1,90,91,[[1105,1,1,90,91]]],[50,2,2,91,93,[[1107,2,2,91,93]]],[51,7,7,93,100,[[1112,2,2,93,95],[1113,2,2,95,97],[1114,2,2,97,99],[1115,1,1,99,100]]],[52,1,1,100,101,[[1117,1,1,100,101]]],[55,2,2,101,103,[[1131,2,2,101,103]]],[57,5,5,103,108,[[1134,1,1,103,104],[1135,1,1,104,105],[1142,1,1,105,106],[1144,2,2,106,108]]],[60,1,1,108,109,[[1156,1,1,108,109]]],[61,9,9,109,118,[[1161,2,2,109,111],[1162,7,7,111,118]]],[63,2,2,118,120,[[1165,2,2,118,120]]]],[23294,23393,23719,23789,24209,24566,24616,24812,25314,25716,25976,26012,26060,26178,26299,26326,26363,26422,26429,26461,26464,26468,26469,26480,26539,26614,26770,26781,26832,26901,26957,26981,27011,27031,27042,27091,27105,27292,27298,27306,27394,27429,27452,27632,27639,27671,27676,27689,27749,27777,27920,28072,28139,28304,28386,28406,28410,28441,28443,28533,28551,28552,28565,28616,28647,28748,28770,28806,28859,28870,28872,28893,28898,28960,28978,28984,29001,29010,29047,29049,29050,29052,29065,29090,29096,29097,29134,29159,29167,29232,29424,29474,29493,29583,29587,29596,29602,29618,29620,29629,29674,29926,29928,29980,30001,30172,30213,30237,30497,30593,30595,30609,30613,30614,30617,30619,30620,30622,30666,30670]]],["+",[3,3,[[42,1,1,0,1,[[1005,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]]],[26480,27292,28748]]],["We",[15,15,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,5,5,1,6,[[1004,1,1,1,2],[1005,1,1,2,3],[1008,1,1,3,4],[1015,1,1,4,5],[1017,1,1,5,6]]],[43,2,2,6,8,[[1031,1,1,6,7],[1045,1,1,7,8]]],[44,1,1,8,9,[[1060,1,1,8,9]]],[45,1,1,9,10,[[1065,1,1,9,10]]],[47,1,1,10,11,[[1092,1,1,10,11]]],[61,3,3,11,14,[[1161,1,1,11,12],[1162,2,2,12,14]]],[63,1,1,14,15,[[1165,1,1,14,15]]]],[24812,26422,26469,26614,26832,26901,27429,27920,28304,28443,29096,30593,30609,30622,30666]]],["us",[2,2,[[42,1,1,0,1,[[1007,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]]],[26539,29629]]],["we",[105,101,[[39,5,5,0,5,[[934,1,1,0,1],[937,1,1,1,2],[945,1,1,2,3],[947,1,1,3,4],[956,1,1,4,5]]],[40,2,2,5,7,[[965,1,1,5,6],[966,1,1,6,7]]],[41,4,4,7,11,[[981,1,1,7,8],[990,1,1,8,9],[995,1,1,9,10],[996,1,1,10,11]]],[42,11,11,11,22,[[997,1,1,11,12],[1000,1,1,12,13],[1002,2,2,13,15],[1003,1,1,15,16],[1004,1,1,16,17],[1005,3,3,17,20],[1013,2,2,20,22]]],[43,18,18,22,40,[[1019,2,2,22,24],[1020,1,1,24,25],[1021,2,2,25,27],[1022,1,1,27,28],[1023,1,1,28,29],[1027,2,2,29,31],[1030,1,1,31,32],[1032,1,1,32,33],[1037,2,2,33,35],[1038,3,3,35,38],[1040,1,1,38,39],[1041,1,1,39,40]]],[44,2,2,40,42,[[1051,1,1,40,41],[1053,1,1,41,42]]],[45,15,12,42,54,[[1062,1,1,42,43],[1063,2,2,43,45],[1065,3,2,45,47],[1069,2,1,47,48],[1070,4,3,48,51],[1072,1,1,51,52],[1073,1,1,52,53],[1076,1,1,53,54]]],[46,16,15,54,69,[[1078,1,1,54,55],[1080,1,1,55,56],[1081,2,2,56,58],[1082,2,2,58,60],[1086,1,1,60,61],[1087,2,2,61,63],[1088,2,2,63,65],[1090,5,4,65,69]]],[47,6,6,69,75,[[1091,1,1,69,70],[1092,2,2,70,72],[1094,2,2,72,74],[1095,1,1,74,75]]],[48,1,1,75,76,[[1098,1,1,75,76]]],[49,1,1,76,77,[[1105,1,1,76,77]]],[50,2,2,77,79,[[1107,2,2,77,79]]],[51,6,6,79,85,[[1112,2,2,79,81],[1113,2,2,81,83],[1114,2,2,83,85]]],[52,1,1,85,86,[[1117,1,1,85,86]]],[55,2,2,86,88,[[1131,2,2,86,88]]],[57,5,5,88,93,[[1134,1,1,88,89],[1135,1,1,89,90],[1142,1,1,90,91],[1144,2,2,91,93]]],[60,1,1,93,94,[[1156,1,1,93,94]]],[61,6,6,94,100,[[1161,1,1,94,95],[1162,5,5,95,100]]],[63,1,1,100,101,[[1165,1,1,100,101]]]],[23294,23393,23719,23789,24209,24566,24616,25314,25716,25976,26012,26060,26178,26299,26326,26363,26429,26461,26464,26468,26770,26781,26957,26981,27011,27031,27042,27091,27105,27298,27306,27394,27452,27632,27639,27671,27676,27689,27749,27777,28072,28139,28386,28406,28410,28441,28443,28533,28551,28552,28565,28616,28647,28770,28806,28859,28870,28872,28893,28898,28960,28978,28984,29001,29010,29047,29049,29050,29052,29065,29090,29097,29134,29159,29167,29232,29424,29474,29493,29583,29587,29596,29602,29618,29620,29674,29926,29928,29980,30001,30172,30213,30237,30497,30595,30613,30614,30617,30619,30620,30670]]]]},{"k":"G2250","v":[["*",[389,366,[[39,43,40,0,40,[[930,1,1,0,1],[931,1,1,1,2],[932,1,1,2,3],[934,1,1,3,4],[935,1,1,4,5],[937,1,1,5,6],[938,1,1,6,7],[939,3,3,7,10],[940,3,2,10,12],[941,1,1,12,13],[943,1,1,13,14],[944,1,1,14,15],[945,2,2,15,17],[948,4,4,17,21],[950,2,2,21,23],[951,1,1,23,24],[952,9,7,24,31],[953,1,1,31,32],[954,4,4,32,36],[955,3,3,36,39],[956,1,1,39,40]]],[40,28,26,40,66,[[957,2,2,40,42],[958,3,2,42,44],[960,2,2,44,46],[961,1,1,46,47],[962,2,2,47,49],[964,3,3,49,52],[965,2,2,52,54],[966,1,1,54,55],[969,6,5,55,60],[970,5,5,60,65],[971,1,1,65,66]]],[41,85,79,66,145,[[973,11,11,66,77],[974,9,9,77,86],[976,5,4,86,90],[977,3,2,90,92],[978,3,3,92,95],[980,1,1,95,96],[981,7,7,96,103],[982,1,1,103,104],[983,1,1,104,105],[984,1,1,105,106],[985,4,3,106,109],[986,1,1,109,110],[987,1,1,110,111],[988,1,1,111,112],[989,12,9,112,121],[990,2,2,121,123],[991,3,3,123,126],[992,1,1,126,127],[993,5,5,127,132],[994,3,3,132,135],[995,4,4,135,139],[996,6,6,139,145]]],[42,30,29,145,174,[[997,1,1,145,146],[998,4,4,146,150],[1000,2,2,150,152],[1001,1,1,152,153],[1002,4,4,153,157],[1003,1,1,157,158],[1004,1,1,158,159],[1005,1,1,159,160],[1007,6,5,160,165],[1008,3,3,165,168],[1010,1,1,168,169],[1012,2,2,169,171],[1015,1,1,171,172],[1016,2,2,172,174]]],[43,94,90,174,264,[[1018,5,5,174,179],[1019,9,9,179,188],[1020,2,2,188,190],[1022,3,3,190,193],[1023,1,1,193,194],[1024,4,4,194,198],[1025,1,1,198,199],[1026,6,6,199,205],[1027,4,4,205,209],[1028,1,1,209,210],[1029,3,3,210,213],[1030,3,3,213,216],[1032,2,2,216,218],[1033,5,5,218,223],[1034,3,3,223,226],[1035,1,1,226,227],[1036,1,1,227,228],[1037,7,5,228,233],[1038,9,8,233,241],[1040,2,2,241,243],[1041,3,3,243,246],[1042,4,4,246,250],[1043,3,3,250,253],[1044,6,5,253,258],[1045,6,6,258,264]]],[44,12,9,264,273,[[1047,2,2,264,266],[1053,1,1,266,267],[1055,1,1,267,268],[1056,1,1,268,269],[1058,2,2,269,271],[1059,5,2,271,273]]],[45,7,7,273,280,[[1062,1,1,273,274],[1064,1,1,274,275],[1065,1,1,275,276],[1066,1,1,276,277],[1071,1,1,277,278],[1076,2,2,278,280]]],[46,6,4,280,284,[[1078,1,1,280,281],[1081,2,1,281,282],[1083,2,1,282,283],[1088,1,1,283,284]]],[47,2,2,284,286,[[1091,1,1,284,285],[1094,1,1,285,286]]],[48,3,3,286,289,[[1100,1,1,286,287],[1101,1,1,287,288],[1102,1,1,288,289]]],[49,4,4,289,293,[[1103,3,3,289,292],[1104,1,1,292,293]]],[50,2,2,293,295,[[1107,2,2,293,295]]],[51,6,6,295,301,[[1112,1,1,295,296],[1113,1,1,296,297],[1115,4,4,297,301]]],[52,3,3,301,304,[[1116,1,1,301,302],[1117,1,1,302,303],[1118,1,1,303,304]]],[53,1,1,304,305,[[1123,1,1,304,305]]],[54,5,5,305,310,[[1125,3,3,305,308],[1127,1,1,308,309],[1128,1,1,309,310]]],[57,18,18,310,328,[[1133,1,1,310,311],[1135,2,2,311,313],[1136,3,3,313,316],[1137,1,1,316,317],[1139,2,2,317,319],[1140,3,3,319,322],[1142,4,4,322,326],[1143,1,1,326,327],[1144,1,1,327,328]]],[58,2,2,328,330,[[1150,2,2,328,330]]],[59,3,3,330,333,[[1152,1,1,330,331],[1153,2,2,331,333]]],[60,12,10,333,343,[[1156,1,1,333,334],[1157,4,3,334,337],[1158,7,6,337,343]]],[61,1,1,343,344,[[1162,1,1,343,344]]],[64,1,1,344,345,[[1166,1,1,344,345]]],[65,21,21,345,366,[[1167,1,1,345,346],[1168,2,2,346,348],[1170,1,1,348,349],[1172,1,1,349,350],[1173,1,1,350,351],[1174,1,1,351,352],[1175,2,2,352,354],[1176,1,1,354,355],[1177,4,4,355,359],[1178,2,2,359,361],[1180,1,1,361,362],[1182,1,1,362,363],[1184,1,1,363,364],[1186,1,1,364,365],[1187,1,1,365,366]]]],[23170,23193,23211,23316,23338,23394,23432,23471,23481,23483,23525,23529,23540,23665,23693,23701,23723,23794,23798,23804,23811,23895,23918,23948,23976,23979,23986,23993,23994,23995,24007,24021,24056,24083,24109,24115,24169,24192,24193,24215,24224,24228,24261,24280,24350,24358,24369,24418,24428,24501,24502,24531,24540,24569,24622,24734,24736,24737,24741,24749,24755,24766,24779,24803,24812,24855,24898,24900,24911,24913,24916,24917,24918,24932,24952,24968,24973,24974,24979,24994,24995,25009,25010,25016,25017,25019,25065,25079,25088,25105,25124,25142,25158,25159,25169,25267,25313,25323,25324,25329,25337,25338,25352,25375,25408,25505,25532,25534,25549,25558,25601,25639,25655,25673,25675,25677,25678,25679,25680,25681,25682,25695,25721,25773,25774,25778,25780,25832,25848,25849,25860,25863,25871,25917,25930,25942,25947,25964,25989,25998,26004,26009,26012,26020,26037,26083,26096,26107,26114,26115,26196,26199,26219,26296,26297,26301,26311,26365,26437,26444,26529,26532,26540,26547,26576,26581,26587,26628,26688,26749,26752,26856,26886,26893,26925,26926,26928,26938,26945,26950,26964,26966,26967,26969,26978,26990,26995,26996,26998,27020,27095,27096,27101,27102,27124,27142,27157,27161,27177,27225,27235,27239,27240,27253,27259,27262,27289,27299,27307,27334,27340,27355,27358,27376,27393,27403,27449,27478,27488,27495,27496,27501,27518,27534,27540,27554,27575,27594,27632,27642,27644,27652,27657,27668,27669,27671,27674,27679,27690,27691,27702,27735,27746,27770,27780,27793,27797,27802,27809,27810,27830,27836,27845,27862,27875,27884,27888,27894,27906,27911,27912,27913,27916,27922,27967,27978,28152,28209,28217,28278,28279,28285,28286,28371,28423,28436,28459,28575,28722,28749,28814,28875,28900,29017,29075,29141,29302,29320,29350,29366,29367,29371,29407,29471,29474,29579,29600,29623,29625,29626,29629,29659,29663,29686,29768,29812,29821,29827,29854,29878,29965,30003,30008,30018,30021,30022,30037,30067,30091,30100,30101,30102,30144,30149,30158,30165,30202,30222,30357,30359,30411,30434,30444,30498,30508,30509,30513,30525,30529,30530,30532,30534,30540,30620,30678,30707,30727,30730,30776,30810,30825,30839,30846,30855,30868,30875,30878,30881,30883,30897,30901,30937,30968,31001,31048,31078]]],["+",[31,29,[[39,2,2,0,2,[[954,1,1,0,1],[956,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,6,6,3,9,[[974,1,1,3,4],[981,1,1,4,5],[983,1,1,5,6],[988,1,1,6,7],[991,1,1,7,8],[994,1,1,8,9]]],[43,12,12,9,21,[[1019,2,2,9,11],[1020,1,1,11,12],[1022,1,1,12,13],[1032,1,1,13,14],[1033,1,1,14,15],[1034,2,2,15,17],[1035,1,1,17,18],[1036,1,1,18,19],[1043,1,1,19,20],[1044,1,1,20,21]]],[44,2,1,21,22,[[1059,2,1,21,22]]],[45,1,1,22,23,[[1076,1,1,22,23]]],[46,3,2,23,25,[[1081,2,1,23,24],[1088,1,1,24,25]]],[57,3,3,25,28,[[1135,1,1,25,26],[1139,1,1,26,27],[1142,1,1,27,28]]],[60,1,1,28,29,[[1158,1,1,28,29]]]],[24109,24215,24803,25009,25324,25408,25639,25778,25917,26995,26996,26998,27101,27449,27488,27534,27540,27575,27594,27836,27884,28285,28749,28875,29017,30008,30091,30144,30540]]],["day",[194,187,[[39,21,21,0,21,[[934,1,1,0,1],[935,1,1,1,2],[938,1,1,2,3],[939,2,2,3,5],[940,1,1,5,6],[941,1,1,6,7],[944,1,1,7,8],[945,1,1,8,9],[948,4,4,9,13],[950,2,2,13,15],[952,3,3,15,18],[953,1,1,18,19],[954,1,1,19,20],[955,1,1,20,21]]],[40,10,10,21,31,[[960,2,2,21,23],[961,1,1,23,24],[962,2,2,24,26],[965,1,1,26,27],[966,1,1,27,28],[969,1,1,28,29],[970,2,2,29,31]]],[41,39,38,31,69,[[973,3,3,31,34],[974,1,1,34,35],[976,2,2,35,37],[977,1,1,37,38],[978,2,2,38,40],[980,1,1,40,41],[981,3,3,41,44],[982,1,1,44,45],[984,1,1,45,46],[985,3,3,46,49],[986,1,1,49,50],[989,7,6,50,56],[990,2,2,56,58],[991,1,1,58,59],[993,1,1,59,60],[994,2,2,60,62],[995,2,2,62,64],[996,5,5,64,69]]],[42,21,20,69,89,[[997,1,1,69,70],[998,1,1,70,71],[1001,1,1,71,72],[1002,4,4,72,76],[1003,1,1,76,77],[1004,1,1,77,78],[1005,1,1,78,79],[1007,4,3,79,82],[1008,2,2,82,84],[1010,1,1,84,85],[1012,2,2,85,87],[1015,1,1,87,88],[1016,1,1,88,89]]],[43,32,31,89,120,[[1018,2,2,89,91],[1019,5,5,91,96],[1024,2,2,96,98],[1026,1,1,98,99],[1027,2,2,99,101],[1029,2,2,101,103],[1030,1,1,103,104],[1033,1,1,104,105],[1034,1,1,105,106],[1037,4,4,106,110],[1038,2,2,110,112],[1040,2,2,112,114],[1043,2,2,114,116],[1044,3,2,116,118],[1045,2,2,118,120]]],[44,10,9,120,129,[[1047,2,2,120,122],[1053,1,1,122,123],[1055,1,1,123,124],[1056,1,1,124,125],[1058,2,2,125,127],[1059,3,2,127,129]]],[45,5,5,129,134,[[1062,1,1,129,130],[1064,1,1,130,131],[1066,1,1,131,132],[1071,1,1,132,133],[1076,1,1,133,134]]],[46,3,2,134,136,[[1078,1,1,134,135],[1083,2,1,135,136]]],[48,2,2,136,138,[[1100,1,1,136,137],[1102,1,1,137,138]]],[49,4,4,138,142,[[1103,3,3,138,141],[1104,1,1,141,142]]],[50,2,2,142,144,[[1107,2,2,142,144]]],[51,6,6,144,150,[[1112,1,1,144,145],[1113,1,1,145,146],[1115,4,4,146,150]]],[52,3,3,150,153,[[1116,1,1,150,151],[1117,1,1,151,152],[1118,1,1,152,153]]],[53,1,1,153,154,[[1123,1,1,153,154]]],[54,4,4,154,158,[[1125,3,3,154,157],[1128,1,1,157,158]]],[57,6,6,158,164,[[1135,1,1,158,159],[1136,3,3,159,162],[1140,1,1,162,163],[1142,1,1,163,164]]],[58,1,1,164,165,[[1150,1,1,164,165]]],[59,1,1,165,166,[[1152,1,1,165,166]]],[60,9,7,166,173,[[1156,1,1,166,167],[1157,3,2,167,169],[1158,5,4,169,173]]],[61,1,1,173,174,[[1162,1,1,173,174]]],[64,1,1,174,175,[[1166,1,1,174,175]]],[65,12,12,175,187,[[1167,1,1,175,176],[1170,1,1,176,177],[1172,1,1,177,178],[1173,1,1,178,179],[1174,1,1,179,180],[1175,1,1,180,181],[1178,1,1,181,182],[1180,1,1,182,183],[1182,1,1,183,184],[1184,1,1,184,185],[1186,1,1,185,186],[1187,1,1,186,187]]]],[23316,23338,23432,23481,23483,23525,23540,23693,23723,23794,23798,23804,23811,23895,23918,23993,23995,24007,24021,24083,24193,24350,24358,24369,24418,24428,24569,24622,24749,24766,24779,24913,24952,24973,25010,25079,25105,25124,25159,25169,25267,25313,25323,25338,25375,25505,25532,25534,25549,25558,25655,25675,25678,25680,25681,25682,25695,25721,25773,25860,25871,25930,25947,25989,25998,26004,26012,26020,26037,26083,26096,26219,26296,26297,26301,26311,26365,26437,26444,26532,26547,26576,26587,26628,26688,26749,26752,26856,26886,26925,26945,26950,26964,26969,26978,26990,27124,27142,27240,27262,27299,27355,27358,27376,27518,27554,27642,27644,27652,27657,27671,27690,27735,27746,27830,27845,27888,27894,27912,27922,27967,27978,28152,28209,28217,28278,28279,28285,28286,28371,28423,28459,28575,28722,28814,28900,29302,29350,29366,29367,29371,29407,29471,29474,29579,29600,29623,29625,29626,29629,29659,29663,29686,29768,29812,29821,29827,29878,30003,30018,30021,30022,30101,30158,30359,30411,30498,30508,30509,30529,30530,30532,30534,30620,30678,30707,30776,30810,30825,30839,30855,30901,30937,30968,31001,31048,31078]]],["day's",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25017]]],["days",[154,144,[[39,20,18,0,18,[[930,1,1,0,1],[931,1,1,1,2],[932,1,1,2,3],[937,1,1,3,4],[939,1,1,4,5],[940,2,1,5,6],[943,1,1,6,7],[945,1,1,7,8],[951,1,1,8,9],[952,6,5,9,14],[954,2,2,14,16],[955,2,2,16,18]]],[40,17,15,18,33,[[957,2,2,18,20],[958,3,2,20,22],[964,3,3,22,25],[965,1,1,25,26],[969,5,4,26,30],[970,2,2,30,32],[971,1,1,32,33]]],[41,34,30,33,63,[[973,6,6,33,39],[974,6,6,39,45],[976,3,2,45,47],[977,2,1,47,48],[978,1,1,48,49],[981,2,2,49,51],[985,1,1,51,52],[987,1,1,52,53],[989,5,3,53,56],[991,1,1,56,57],[992,1,1,57,58],[993,3,3,58,61],[995,1,1,61,62],[996,1,1,62,63]]],[42,9,9,63,72,[[998,3,3,63,66],[1000,2,2,66,68],[1007,2,2,68,70],[1008,1,1,70,71],[1016,1,1,71,72]]],[43,48,46,72,118,[[1018,3,3,72,75],[1019,2,2,75,77],[1020,1,1,77,78],[1022,2,2,78,80],[1023,1,1,80,81],[1024,2,2,81,83],[1026,5,5,83,88],[1027,2,2,88,90],[1028,1,1,90,91],[1029,1,1,91,92],[1030,2,2,92,94],[1032,1,1,94,95],[1033,2,2,95,97],[1037,3,1,97,98],[1038,7,7,98,105],[1041,3,3,105,108],[1042,4,4,108,112],[1044,2,2,112,114],[1045,4,4,114,118]]],[47,2,2,118,120,[[1091,1,1,118,119],[1094,1,1,119,120]]],[48,1,1,120,121,[[1101,1,1,120,121]]],[54,1,1,121,122,[[1127,1,1,121,122]]],[57,9,9,122,131,[[1133,1,1,122,123],[1137,1,1,123,124],[1139,1,1,124,125],[1140,2,2,125,127],[1142,2,2,127,129],[1143,1,1,129,130],[1144,1,1,130,131]]],[58,1,1,131,132,[[1150,1,1,131,132]]],[59,2,2,132,134,[[1153,2,2,132,134]]],[60,1,1,134,135,[[1158,1,1,134,135]]],[65,9,9,135,144,[[1168,2,2,135,137],[1175,1,1,137,138],[1176,1,1,138,139],[1177,4,4,139,143],[1178,1,1,143,144]]]],[23170,23193,23211,23394,23471,23529,23665,23701,23948,23976,23979,23986,23994,23995,24056,24115,24169,24192,24224,24228,24261,24280,24501,24502,24531,24540,24734,24736,24737,24741,24755,24812,24855,24898,24916,24917,24918,24932,24968,24974,24979,24994,24995,25016,25019,25065,25088,25142,25158,25329,25337,25532,25601,25673,25677,25679,25774,25780,25832,25848,25849,25964,26009,26107,26114,26115,26196,26199,26529,26540,26581,26893,26926,26928,26938,26966,26967,27020,27095,27096,27102,27157,27161,27225,27235,27239,27253,27259,27289,27307,27334,27340,27393,27403,27478,27495,27501,27632,27668,27669,27674,27679,27690,27691,27702,27770,27780,27793,27797,27802,27809,27810,27862,27875,27906,27911,27913,27916,29075,29141,29320,29854,29965,30037,30067,30100,30102,30149,30165,30202,30222,30357,30434,30444,30525,30727,30730,30846,30868,30875,30878,30881,30883,30897]]],["judgment",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28436]]],["on",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27496]]],["time",[5,5,[[41,3,3,0,3,[[981,1,1,0,1],[993,1,1,1,2],[995,1,1,2,3]]],[43,1,1,3,4,[[1025,1,1,3,4]]],[60,1,1,4,5,[[1157,1,1,4,5]]]],[25352,25863,25942,27177,30513]]],["years",[2,2,[[41,2,2,0,2,[[973,2,2,0,2]]]],[24900,24911]]]]},{"k":"G2251","v":[["*",[9,9,[[43,3,3,0,3,[[1019,1,1,0,1],[1041,1,1,1,2],[1043,1,1,2,3]]],[44,1,1,3,4,[[1060,1,1,3,4]]],[45,1,1,4,5,[[1076,1,1,4,5]]],[54,1,1,5,6,[[1128,1,1,5,6]]],[55,1,1,6,7,[[1131,1,1,6,7]]],[61,2,2,7,9,[[1159,1,1,7,8],[1160,1,1,8,9]]]],[26960,27775,27828,28307,28749,29885,29937,30543,30552]]],["our",[6,6,[[43,3,3,0,3,[[1019,1,1,0,1],[1041,1,1,1,2],[1043,1,1,2,3]]],[44,1,1,3,4,[[1060,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]],[61,1,1,5,6,[[1159,1,1,5,6]]]],[26960,27775,27828,28307,29885,30543]]],["ours",[2,2,[[55,1,1,0,1,[[1131,1,1,0,1]]],[61,1,1,1,2,[[1160,1,1,1,2]]]],[29937,30552]]],["your",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28749]]]]},{"k":"G2252","v":[["*",[16,16,[[39,3,3,0,3,[[953,3,3,0,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[42,3,3,4,7,[[1007,1,1,4,5],[1012,1,1,5,6],[1013,1,1,6,7]]],[43,6,6,7,13,[[1027,1,1,7,8],[1028,3,3,8,11],[1039,2,2,11,13]]],[45,1,1,13,14,[[1074,1,1,13,14]]],[47,2,2,14,16,[[1091,2,2,14,16]]]],[24043,24044,24051,24803,26538,26730,26771,27289,27312,27318,27324,27723,27724,28676,29067,29079]]],["+",[2,2,[[43,1,1,0,1,[[1039,1,1,0,1]]],[47,1,1,1,2,[[1091,1,1,1,2]]]],[27723,29067]]],["was",[14,14,[[39,3,3,0,3,[[953,3,3,0,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[42,3,3,4,7,[[1007,1,1,4,5],[1012,1,1,5,6],[1013,1,1,6,7]]],[43,5,5,7,12,[[1027,1,1,7,8],[1028,3,3,8,11],[1039,1,1,11,12]]],[45,1,1,12,13,[[1074,1,1,12,13]]],[47,1,1,13,14,[[1091,1,1,13,14]]]],[24043,24044,24051,24803,26538,26730,26771,27289,27312,27318,27324,27724,28676,29079]]]]},{"k":"G2253","v":[["dead",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25393]]]]},{"k":"G2254","v":[["*",[179,169,[[39,19,19,0,19,[[931,1,1,0,1],[934,2,2,1,3],[936,2,2,3,5],[941,1,1,5,6],[943,2,2,6,8],[947,1,1,8,9],[948,1,1,9,10],[949,1,1,10,11],[950,2,2,11,13],[952,1,1,13,14],[953,3,3,14,17],[954,2,2,17,19]]],[40,11,10,19,29,[[957,1,1,19,20],[965,3,2,20,22],[966,2,2,22,24],[968,2,2,24,26],[969,1,1,26,27],[970,1,1,27,28],[972,1,1,28,29]]],[41,28,25,29,54,[[973,4,4,29,33],[974,2,2,33,35],[976,1,1,35,36],[979,2,2,36,38],[981,1,1,38,39],[982,2,2,39,41],[983,3,2,41,43],[985,1,1,43,44],[989,1,1,44,45],[992,4,4,45,49],[994,2,2,49,51],[995,1,1,51,52],[996,4,2,52,54]]],[42,16,15,54,69,[[997,1,1,54,55],[998,1,1,55,56],[1000,2,2,56,58],[1002,2,2,58,60],[1004,1,1,60,61],[1006,1,1,61,62],[1007,1,1,62,63],[1010,4,3,63,66],[1012,1,1,66,67],[1013,1,1,67,68],[1014,1,1,68,69]]],[43,34,33,69,102,[[1018,3,3,69,72],[1019,1,1,72,73],[1020,1,1,73,74],[1023,1,1,74,75],[1024,2,2,75,77],[1027,2,2,77,79],[1028,2,2,79,81],[1030,2,2,81,83],[1031,1,1,83,84],[1032,4,4,84,88],[1033,5,4,88,92],[1036,1,1,92,93],[1037,1,1,93,94],[1038,3,3,94,97],[1042,1,1,97,98],[1044,1,1,98,99],[1045,3,3,99,102]]],[44,5,5,102,107,[[1050,1,1,102,103],[1053,2,2,103,105],[1054,1,1,105,106],[1057,1,1,106,107]]],[45,7,7,107,114,[[1062,2,2,107,109],[1063,2,2,109,111],[1065,1,1,111,112],[1069,1,1,112,113],[1076,1,1,113,114]]],[46,12,12,114,126,[[1078,1,1,114,115],[1081,2,2,115,117],[1082,3,3,117,120],[1083,1,1,120,121],[1084,1,1,121,122],[1085,2,2,122,124],[1087,2,2,124,126]]],[48,3,3,126,129,[[1097,1,1,126,127],[1099,1,1,127,128],[1102,1,1,128,129]]],[50,3,3,129,132,[[1107,1,1,129,130],[1108,1,1,130,131],[1110,1,1,131,132]]],[51,2,2,132,134,[[1112,1,1,132,133],[1113,1,1,133,134]]],[53,1,1,134,135,[[1124,1,1,134,135]]],[54,3,3,135,138,[[1125,3,3,135,138]]],[57,8,7,138,145,[[1133,1,1,138,139],[1136,1,1,139,140],[1137,1,1,140,141],[1139,1,1,141,142],[1142,2,2,142,144],[1144,2,1,144,145]]],[58,3,3,145,148,[[1148,1,1,145,146],[1149,1,1,146,147],[1150,1,1,147,148]]],[59,3,3,148,151,[[1151,1,1,148,149],[1152,1,1,149,150],[1154,1,1,150,151]]],[60,3,3,151,154,[[1156,3,3,151,154]]],[61,17,14,154,168,[[1159,4,4,154,158],[1160,1,1,158,159],[1161,4,3,159,162],[1162,6,4,162,166],[1163,2,2,166,168]]],[62,1,1,168,169,[[1164,1,1,168,169]]]],[23207,23293,23294,23374,23376,23575,23648,23666,23789,23804,23851,23889,23897,23960,24016,24017,24019,24117,24122,24239,24560,24576,24623,24625,24684,24692,24721,24769,24876,24894,24895,24962,24967,24988,25021,25097,25200,25211,25314,25374,25380,25408,25409,25543,25656,25781,25793,25801,25807,25872,25931,25953,26015,26023,26058,26113,26168,26181,26291,26309,26386,26505,26573,26676,26677,26690,26743,26780,26816,26940,26944,26945,26978,27008,27115,27154,27156,27300,27301,27320,27324,27395,27409,27431,27449,27450,27467,27470,27492,27499,27500,27504,27612,27640,27680,27682,27687,27820,27857,27901,27914,27921,28052,28120,28148,28184,28251,28381,28393,28404,28406,28439,28533,28775,28808,28871,28876,28882,28895,28896,28910,28923,28937,28939,28979,28984,29215,29271,29349,29473,29508,29545,29578,29596,29805,29816,29818,29823,29965,30027,30041,30090,30148,30153,30213,30322,30342,30371,30386,30420,30449,30480,30482,30483,30542,30548,30549,30550,30575,30580,30602,30603,30612,30615,30616,30619,30635,30644,30647]]],["+",[6,6,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,2,2,1,3,[[957,1,1,1,2],[972,1,1,2,3]]],[41,1,1,3,4,[[976,1,1,3,4]]],[51,1,1,4,5,[[1113,1,1,4,5]]],[57,1,1,5,6,[[1136,1,1,5,6]]]],[23374,24239,24876,25097,29596,30027]]],["We",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[25314,27687]]],["our",[3,3,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]],[43,1,1,2,3,[[1036,1,1,2,3]]]],[24684,25656,27612]]],["ours",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25793]]],["us",[160,151,[[39,16,16,0,16,[[931,1,1,0,1],[934,2,2,1,3],[936,1,1,3,4],[941,1,1,4,5],[943,1,1,5,6],[948,1,1,6,7],[949,1,1,7,8],[950,2,2,8,10],[952,1,1,10,11],[953,3,3,11,14],[954,2,2,14,16]]],[40,8,7,16,23,[[965,3,2,16,18],[966,2,2,18,20],[968,1,1,20,21],[969,1,1,21,22],[970,1,1,22,23]]],[41,24,21,23,44,[[973,4,4,23,27],[974,2,2,27,29],[979,2,2,29,31],[982,2,2,31,33],[983,3,2,33,35],[985,1,1,35,36],[992,3,3,36,39],[994,2,2,39,41],[995,1,1,41,42],[996,4,2,42,44]]],[42,16,15,44,59,[[997,1,1,44,45],[998,1,1,45,46],[1000,2,2,46,48],[1002,2,2,48,50],[1004,1,1,50,51],[1006,1,1,51,52],[1007,1,1,52,53],[1010,4,3,53,56],[1012,1,1,56,57],[1013,1,1,57,58],[1014,1,1,58,59]]],[43,31,30,59,89,[[1018,3,3,59,62],[1019,1,1,62,63],[1020,1,1,63,64],[1023,1,1,64,65],[1024,2,2,65,67],[1027,2,2,67,69],[1028,2,2,69,71],[1030,2,2,71,73],[1031,1,1,73,74],[1032,4,4,74,78],[1033,5,4,78,82],[1037,1,1,82,83],[1038,2,2,83,85],[1042,1,1,85,86],[1044,1,1,86,87],[1045,2,2,87,89]]],[44,5,5,89,94,[[1050,1,1,89,90],[1053,2,2,90,92],[1054,1,1,92,93],[1057,1,1,93,94]]],[45,7,7,94,101,[[1062,2,2,94,96],[1063,2,2,96,98],[1065,1,1,98,99],[1069,1,1,99,100],[1076,1,1,100,101]]],[46,12,12,101,113,[[1078,1,1,101,102],[1081,2,2,102,104],[1082,3,3,104,107],[1083,1,1,107,108],[1084,1,1,108,109],[1085,2,2,109,111],[1087,2,2,111,113]]],[48,2,2,113,115,[[1097,1,1,113,114],[1099,1,1,114,115]]],[50,3,3,115,118,[[1107,1,1,115,116],[1108,1,1,116,117],[1110,1,1,117,118]]],[51,1,1,118,119,[[1112,1,1,118,119]]],[53,1,1,119,120,[[1124,1,1,119,120]]],[54,3,3,120,123,[[1125,3,3,120,123]]],[57,5,5,123,128,[[1133,1,1,123,124],[1139,1,1,124,125],[1142,2,2,125,127],[1144,1,1,127,128]]],[58,2,2,128,130,[[1148,1,1,128,129],[1149,1,1,129,130]]],[59,3,3,130,133,[[1151,1,1,130,131],[1152,1,1,131,132],[1154,1,1,132,133]]],[60,3,3,133,136,[[1156,3,3,133,136]]],[61,17,14,136,150,[[1159,4,4,136,140],[1160,1,1,140,141],[1161,4,3,141,144],[1162,6,4,144,148],[1163,2,2,148,150]]],[62,1,1,150,151,[[1164,1,1,150,151]]]],[23207,23293,23294,23376,23575,23648,23804,23851,23889,23897,23960,24016,24017,24019,24117,24122,24560,24576,24623,24625,24692,24721,24769,24894,24895,24962,24967,24988,25021,25200,25211,25374,25380,25408,25409,25543,25781,25801,25807,25872,25931,25953,26015,26023,26058,26113,26168,26181,26291,26309,26386,26505,26573,26676,26677,26690,26743,26780,26816,26940,26944,26945,26978,27008,27115,27154,27156,27300,27301,27320,27324,27395,27409,27431,27449,27450,27467,27470,27492,27499,27500,27504,27640,27680,27682,27820,27857,27901,27914,28052,28120,28148,28184,28251,28381,28393,28404,28406,28439,28533,28775,28808,28871,28876,28882,28895,28896,28910,28923,28937,28939,28979,28984,29215,29271,29473,29508,29545,29578,29805,29816,29818,29823,29965,30090,30148,30153,30213,30322,30342,30386,30420,30449,30480,30482,30483,30542,30548,30549,30550,30575,30580,30602,30603,30612,30615,30616,30619,30635,30644,30647]]],["we",[6,6,[[39,2,2,0,2,[[943,1,1,0,1],[947,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]],[48,1,1,3,4,[[1102,1,1,3,4]]],[57,1,1,4,5,[[1137,1,1,4,5]]],[58,1,1,5,6,[[1150,1,1,5,6]]]],[23666,23789,27921,29349,30041,30371]]],["with",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30213]]]]},{"k":"G2255","v":[["half",[5,5,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[991,1,1,1,2]]],[65,3,3,2,5,[[1177,2,2,2,4],[1178,1,1,4,5]]]],[24430,25739,30881,30883,30905]]]]},{"k":"G2256","v":[["hour",[1,1,[[65,1,1,0,1,[[1174,1,1,0,1]]]],[30828]]]]},{"k":"G2257","v":[["*",[406,361,[[39,13,12,0,12,[[929,1,1,0,1],[934,4,3,1,4],[936,1,1,4,5],[943,1,1,5,6],[948,1,1,6,7],[949,1,1,7,8],[951,1,1,8,9],[953,1,1,9,10],[955,1,1,10,11],[956,1,1,11,12]]],[40,3,3,12,15,[[967,1,1,12,13],[968,2,2,13,15]]],[41,21,20,15,35,[[973,8,8,15,23],[979,1,1,23,24],[981,3,2,24,26],[983,3,3,26,29],[985,1,1,29,30],[988,1,1,30,31],[996,4,4,31,35]]],[42,13,13,35,48,[[999,1,1,35,36],[1000,2,2,36,38],[1002,1,1,38,39],[1003,1,1,39,40],[1004,2,2,40,42],[1005,1,1,42,43],[1006,1,1,43,44],[1007,2,2,44,46],[1008,1,1,46,47],[1015,1,1,47,48]]],[43,44,42,48,90,[[1018,1,1,48,49],[1019,2,2,49,51],[1020,2,2,51,53],[1022,1,1,53,54],[1024,12,10,54,64],[1030,1,1,64,65],[1031,1,1,65,66],[1032,6,6,66,72],[1033,2,2,72,74],[1034,2,2,74,76],[1036,1,1,76,77],[1037,1,1,77,78],[1038,2,2,78,80],[1039,1,1,80,81],[1041,2,2,81,83],[1043,2,2,83,85],[1044,3,3,85,88],[1045,2,2,88,90]]],[44,44,39,90,129,[[1046,2,2,90,92],[1048,1,1,92,93],[1049,6,5,93,98],[1050,7,6,98,104],[1051,3,3,104,107],[1052,2,2,107,109],[1053,9,7,109,116],[1054,1,1,116,117],[1055,1,1,117,118],[1058,1,1,118,119],[1059,2,2,119,121],[1060,3,3,121,124],[1061,6,5,124,129]]],[45,24,21,129,150,[[1062,7,6,129,135],[1063,1,1,135,136],[1065,1,1,136,137],[1066,4,2,137,139],[1067,1,1,139,140],[1070,1,1,140,141],[1071,3,3,141,144],[1073,2,2,144,146],[1076,4,4,146,150]]],[46,56,50,150,200,[[1078,15,13,150,163],[1079,1,1,163,164],[1080,4,3,164,167],[1081,8,8,167,175],[1082,5,5,175,180],[1083,2,1,180,181],[1084,7,6,181,187],[1085,8,7,187,194],[1086,2,2,194,196],[1087,3,3,196,199],[1088,1,1,199,200]]],[47,9,8,200,208,[[1091,3,2,200,202],[1092,1,1,202,203],[1093,2,2,203,205],[1094,1,1,205,206],[1096,2,2,206,208]]],[48,13,13,208,221,[[1097,4,4,208,212],[1098,2,2,212,214],[1099,2,2,214,216],[1100,1,1,216,217],[1101,2,2,217,219],[1102,2,2,219,221]]],[49,5,5,221,226,[[1103,1,1,221,222],[1105,2,2,222,224],[1106,2,2,224,226]]],[50,6,6,226,232,[[1107,3,3,226,229],[1108,1,1,229,230],[1109,1,1,230,231],[1110,1,1,231,232]]],[51,33,27,232,259,[[1111,7,6,232,238],[1112,9,8,238,246],[1113,11,7,246,253],[1114,1,1,253,254],[1115,5,5,254,259]]],[52,22,17,259,276,[[1116,8,7,259,266],[1117,8,5,266,271],[1118,6,5,271,276]]],[53,9,7,276,283,[[1119,6,4,276,280],[1120,1,1,280,281],[1124,2,2,281,283]]],[54,4,4,283,287,[[1125,4,4,283,287]]],[55,7,7,287,294,[[1129,2,2,287,289],[1130,3,3,289,292],[1131,2,2,292,294]]],[56,3,3,294,297,[[1132,3,3,294,297]]],[57,13,12,297,309,[[1133,1,1,297,298],[1135,1,1,298,299],[1136,1,1,299,300],[1138,1,1,300,301],[1139,1,1,301,302],[1141,1,1,302,303],[1142,1,1,303,304],[1143,2,1,304,305],[1144,2,2,305,307],[1145,2,2,307,309]]],[58,3,3,309,312,[[1147,2,2,309,311],[1148,1,1,311,312]]],[59,5,5,312,317,[[1151,1,1,312,313],[1152,2,2,313,315],[1154,2,2,315,317]]],[60,10,9,317,326,[[1156,6,6,317,323],[1158,4,3,323,326]]],[61,24,16,326,342,[[1159,4,3,326,329],[1160,6,2,329,331],[1161,7,5,331,336],[1162,4,3,336,339],[1163,3,3,339,342]]],[62,2,2,342,344,[[1164,2,2,342,344]]],[63,1,1,344,345,[[1165,1,1,344,345]]],[64,5,4,345,349,[[1166,5,4,345,349]]],[65,14,12,349,361,[[1167,1,1,349,350],[1171,1,1,350,351],[1172,1,1,351,352],[1173,3,3,352,355],[1177,2,2,355,357],[1178,3,1,357,358],[1185,2,2,358,360],[1188,1,1,360,361]]]],[23167,23291,23293,23294,23362,23656,23825,23868,23948,24016,24154,24208,24650,24680,24702,24948,24964,24965,24966,24967,24968,24971,24972,25200,25350,25351,25407,25408,25409,25544,25646,26011,26013,26020,26023,26131,26168,26176,26288,26379,26420,26434,26460,26505,26534,26571,26618,26832,26945,26957,26988,27009,27021,27089,27118,27127,27128,27131,27135,27154,27155,27156,27160,27161,27379,27431,27451,27452,27466,27467,27468,27478,27499,27503,27543,27550,27610,27647,27674,27681,27718,27773,27776,27830,27837,27865,27873,27882,27914,27924,27933,27937,27996,28023,28034,28038,28046,28047,28048,28052,28053,28055,28058,28068,28074,28079,28091,28096,28116,28132,28139,28142,28147,28148,28150,28155,28165,28204,28277,28287,28292,28305,28309,28333,28337,28345,28354,28356,28360,28365,28366,28370,28371,28372,28373,28401,28441,28458,28461,28478,28541,28568,28573,28578,28657,28658,28721,28732,28749,28775,28802,28803,28804,28805,28807,28808,28811,28812,28814,28818,28819,28820,28822,28838,28843,28844,28846,28862,28865,28866,28869,28870,28875,28876,28877,28878,28879,28889,28897,28898,28909,28919,28920,28921,28925,28928,28930,28936,28941,28951,28952,28954,28955,28956,28959,28967,28975,28979,28986,29020,29060,29061,29085,29115,29126,29157,29202,29206,29208,29209,29220,29223,29232,29243,29262,29265,29279,29306,29324,29359,29361,29363,29441,29442,29462,29465,29467,29468,29472,29508,29521,29545,29561,29562,29563,29565,29566,29569,29571,29572,29573,29574,29579,29583,29589,29590,29592,29595,29596,29597,29599,29601,29603,29604,29630,29631,29644,29646,29649,29650,29651,29656,29657,29659,29660,29661,29662,29663,29675,29676,29677,29679,29684,29690,29692,29696,29697,29698,29708,29710,29719,29791,29802,29811,29817,29818,29819,29895,29896,29918,29921,29922,29927,29929,29940,29941,29963,29966,29996,30029,30064,30078,30129,30159,30212,30221,30241,30259,30261,30294,30314,30325,30377,30420,30423,30447,30463,30480,30481,30487,30490,30493,30495,30524,30537,30540,30541,30543,30549,30552,30569,30584,30595,30598,30599,30600,30609,30613,30620,30628,30638,30639,30647,30657,30670,30676,30689,30693,30697,30702,30789,30803,30813,30820,30822,30880,30887,30901,31018,31022,31101]]],["+",[6,6,[[42,1,1,0,1,[[1006,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[46,2,2,2,4,[[1078,1,1,2,3],[1082,1,1,3,4]]],[48,1,1,4,5,[[1102,1,1,4,5]]],[55,1,1,5,6,[[1131,1,1,5,6]]]],[26505,28333,28811,28889,29359,29927]]],["Our",[6,6,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,3,3,2,5,[[1000,1,1,2,3],[1002,1,1,3,4],[1007,1,1,4,5]]],[43,1,1,5,6,[[1024,1,1,5,6]]]],[23291,25407,26176,26288,26534,27160]]],["company",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26013]]],["our",[297,270,[[39,9,8,0,8,[[934,3,2,0,2],[936,1,1,2,3],[948,1,1,3,4],[949,1,1,4,5],[951,1,1,5,6],[953,1,1,6,7],[955,1,1,7,8]]],[40,2,2,8,10,[[967,1,1,8,9],[968,1,1,9,10]]],[41,14,14,10,24,[[973,8,8,10,18],[979,1,1,18,19],[983,2,2,19,21],[985,1,1,21,22],[996,2,2,22,24]]],[42,9,9,24,33,[[999,1,1,24,25],[1000,1,1,25,26],[1003,1,1,26,27],[1004,2,2,27,29],[1005,1,1,29,30],[1007,1,1,30,31],[1008,1,1,31,32],[1015,1,1,32,33]]],[43,30,28,33,61,[[1019,2,2,33,35],[1020,2,2,35,37],[1022,1,1,37,38],[1024,10,8,38,46],[1030,1,1,46,47],[1031,1,1,47,48],[1032,4,4,48,52],[1033,1,1,52,53],[1034,1,1,53,54],[1036,1,1,54,55],[1037,1,1,55,56],[1039,1,1,56,57],[1041,1,1,57,58],[1043,1,1,58,59],[1044,1,1,59,60],[1045,1,1,60,61]]],[44,30,29,61,90,[[1046,2,2,61,63],[1048,1,1,63,64],[1049,5,4,64,68],[1050,4,4,68,72],[1051,3,3,72,75],[1052,2,2,75,77],[1053,4,4,77,81],[1054,1,1,81,82],[1055,1,1,82,83],[1058,1,1,83,84],[1060,1,1,84,85],[1061,5,5,85,90]]],[45,21,20,90,110,[[1062,6,6,90,96],[1063,1,1,96,97],[1066,3,2,97,99],[1067,1,1,99,100],[1070,1,1,100,101],[1071,3,3,101,104],[1073,2,2,104,106],[1076,4,4,106,110]]],[46,37,34,110,144,[[1078,10,9,110,119],[1080,3,2,119,121],[1081,6,6,121,127],[1082,2,2,127,129],[1083,2,1,129,130],[1084,5,5,130,135],[1085,4,4,135,139],[1086,1,1,139,140],[1087,3,3,140,143],[1088,1,1,143,144]]],[47,7,6,144,150,[[1091,3,2,144,146],[1092,1,1,146,147],[1093,1,1,147,148],[1096,2,2,148,150]]],[48,10,10,150,160,[[1097,4,4,150,154],[1098,2,2,154,156],[1099,2,2,156,158],[1101,1,1,158,159],[1102,1,1,159,160]]],[49,5,5,160,165,[[1103,1,1,160,161],[1105,2,2,161,163],[1106,2,2,163,165]]],[50,4,4,165,169,[[1107,3,3,165,168],[1109,1,1,168,169]]],[51,26,20,169,189,[[1111,5,4,169,173],[1112,8,7,173,180],[1113,10,6,180,186],[1115,3,3,186,189]]],[52,18,14,189,203,[[1116,7,6,189,195],[1117,7,4,195,199],[1118,4,4,199,203]]],[53,9,7,203,210,[[1119,6,4,203,207],[1120,1,1,207,208],[1124,2,2,208,210]]],[54,4,4,210,214,[[1125,4,4,210,214]]],[55,5,5,214,219,[[1129,2,2,214,216],[1130,2,2,216,218],[1131,1,1,218,219]]],[56,3,3,219,222,[[1132,3,3,219,222]]],[57,7,7,222,229,[[1133,1,1,222,223],[1135,1,1,223,224],[1136,1,1,224,225],[1139,1,1,225,226],[1144,2,2,226,228],[1145,1,1,228,229]]],[58,3,3,229,232,[[1147,2,2,229,231],[1148,1,1,231,232]]],[59,2,2,232,234,[[1151,1,1,232,233],[1152,1,1,233,234]]],[60,9,8,234,242,[[1156,6,6,234,240],[1158,3,2,240,242]]],[61,12,10,242,252,[[1159,3,2,242,244],[1160,1,1,244,245],[1161,5,4,245,249],[1162,2,2,249,251],[1163,1,1,251,252]]],[62,1,1,252,253,[[1164,1,1,252,253]]],[63,1,1,253,254,[[1165,1,1,253,254]]],[64,5,4,254,258,[[1166,5,4,254,258]]],[65,14,12,258,270,[[1167,1,1,258,259],[1171,1,1,259,260],[1172,1,1,260,261],[1173,3,3,261,264],[1177,2,2,264,266],[1178,3,1,266,267],[1185,2,2,267,269],[1188,1,1,269,270]]]],[23293,23294,23362,23825,23868,23948,24016,24154,24650,24702,24948,24964,24965,24966,24967,24968,24971,24972,25200,25408,25409,25544,26011,26023,26131,26168,26379,26420,26434,26460,26571,26618,26832,26957,26988,27009,27021,27089,27118,27127,27128,27131,27135,27154,27155,27161,27379,27431,27452,27467,27468,27478,27503,27543,27610,27647,27718,27776,27830,27865,27924,27933,27937,27996,28023,28034,28046,28047,28048,28052,28058,28068,28074,28079,28091,28096,28116,28132,28139,28142,28155,28165,28204,28277,28309,28337,28345,28354,28356,28360,28365,28366,28370,28371,28372,28373,28401,28458,28461,28478,28541,28568,28573,28578,28657,28658,28721,28732,28749,28775,28802,28803,28804,28805,28807,28808,28812,28818,28822,28843,28846,28862,28865,28869,28870,28875,28876,28878,28879,28909,28919,28920,28921,28928,28930,28941,28954,28955,28956,28959,28975,28979,28986,29020,29060,29061,29085,29126,29202,29206,29208,29209,29220,29223,29232,29243,29262,29265,29324,29361,29363,29441,29442,29462,29465,29467,29468,29472,29521,29561,29562,29563,29565,29571,29572,29573,29574,29579,29589,29590,29592,29595,29597,29599,29601,29603,29630,29644,29649,29650,29651,29657,29659,29660,29661,29662,29675,29676,29677,29684,29690,29692,29696,29697,29698,29708,29710,29719,29791,29802,29811,29817,29818,29819,29895,29896,29918,29921,29929,29940,29941,29963,29966,29996,30029,30078,30221,30241,30261,30294,30314,30325,30377,30423,30480,30481,30487,30490,30493,30495,30537,30540,30541,30549,30552,30584,30598,30599,30600,30613,30620,30628,30657,30670,30676,30689,30693,30697,30702,30789,30803,30813,30820,30822,30880,30887,30901,31018,31022,31101]]],["ours",[3,3,[[40,1,1,0,1,[[968,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]],[46,1,1,2,3,[[1078,1,1,2,3]]]],[24680,28365,28814]]],["us",[80,71,[[39,2,2,0,2,[[929,1,1,0,1],[943,1,1,1,2]]],[41,5,4,2,6,[[981,3,2,2,4],[988,1,1,4,5],[996,1,1,5,6]]],[43,7,7,6,13,[[1018,1,1,6,7],[1024,1,1,7,8],[1032,2,2,8,10],[1034,1,1,10,11],[1041,1,1,11,12],[1045,1,1,12,13]]],[44,10,9,13,22,[[1049,1,1,13,14],[1050,1,1,14,15],[1053,5,4,15,19],[1059,2,2,19,21],[1060,1,1,21,22]]],[45,2,2,22,24,[[1065,1,1,22,23],[1066,1,1,23,24]]],[46,14,13,24,37,[[1078,3,3,24,27],[1079,1,1,27,28],[1080,1,1,28,29],[1081,1,1,29,30],[1082,2,2,30,32],[1084,1,1,32,33],[1085,4,3,33,36],[1086,1,1,36,37]]],[47,2,2,37,39,[[1093,1,1,37,38],[1094,1,1,38,39]]],[48,2,2,39,41,[[1100,1,1,39,40],[1101,1,1,40,41]]],[50,2,2,41,43,[[1108,1,1,41,42],[1110,1,1,42,43]]],[51,7,7,43,50,[[1111,2,2,43,45],[1112,1,1,45,46],[1113,1,1,46,47],[1114,1,1,47,48],[1115,2,2,48,50]]],[52,4,4,50,54,[[1116,1,1,50,51],[1117,1,1,51,52],[1118,2,2,52,54]]],[55,1,1,54,55,[[1130,1,1,54,55]]],[57,5,4,55,59,[[1138,1,1,55,56],[1141,1,1,56,57],[1143,2,1,57,58],[1145,1,1,58,59]]],[59,3,3,59,62,[[1152,1,1,59,60],[1154,2,2,60,62]]],[60,1,1,62,63,[[1158,1,1,62,63]]],[61,12,7,63,70,[[1159,1,1,63,64],[1160,5,1,64,65],[1161,2,2,65,67],[1162,2,1,67,68],[1163,2,2,68,70]]],[62,1,1,70,71,[[1164,1,1,70,71]]]],[23167,23656,25350,25351,25646,26020,26945,27156,27451,27466,27550,27773,27914,28038,28055,28142,28147,28148,28150,28287,28292,28305,28441,28461,28811,28819,28820,28838,28844,28866,28897,28898,28925,28936,28951,28952,28967,29115,29157,29279,29306,29508,29545,29566,29569,29583,29596,29604,29631,29646,29656,29663,29679,29684,29922,30064,30129,30212,30259,30420,30447,30463,30524,30543,30569,30595,30600,30609,30638,30639,30647]]],["we",[12,12,[[39,1,1,0,1,[[956,1,1,0,1]]],[43,6,6,1,7,[[1033,1,1,1,2],[1038,2,2,2,4],[1043,1,1,4,5],[1044,2,2,5,7]]],[44,2,2,7,9,[[1050,2,2,7,9]]],[46,2,2,9,11,[[1081,1,1,9,10],[1084,1,1,10,11]]],[57,1,1,11,12,[[1142,1,1,11,12]]]],[24208,27499,27674,27681,27837,27873,27882,28053,28055,28877,28921,30159]]],["your",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28356]]]]},{"k":"G2258","v":[["*",[451,411,[[39,37,35,0,35,[[929,1,1,0,1],[930,2,2,1,3],[931,1,1,3,4],[932,1,1,4,5],[935,2,2,5,7],[936,1,1,7,8],[937,1,1,8,9],[940,3,3,9,12],[942,4,3,12,15],[943,1,1,15,16],[947,1,1,16,17],[949,2,2,17,19],[950,2,2,19,21],[951,2,1,21,22],[952,1,1,22,23],[953,3,3,23,26],[954,4,4,26,30],[955,4,4,30,34],[956,1,1,34,35]]],[40,60,56,35,91,[[957,9,8,35,43],[958,4,4,43,47],[959,1,1,47,48],[960,4,3,48,51],[961,6,6,51,57],[962,6,6,57,63],[963,1,1,63,64],[964,1,1,64,65],[965,2,2,65,67],[966,3,2,67,69],[967,3,3,69,72],[968,1,1,72,73],[970,8,8,73,81],[971,10,9,81,90],[972,1,1,90,91]]],[41,102,88,91,179,[[973,9,7,91,98],[974,9,8,98,106],[975,1,1,106,107],[976,10,10,107,117],[977,11,7,117,124],[978,3,2,124,126],[979,6,5,126,131],[980,4,4,131,135],[981,5,5,135,140],[982,1,1,140,141],[983,2,1,141,142],[985,3,2,142,144],[986,2,2,144,146],[987,6,4,146,150],[988,3,3,150,153],[989,1,1,153,154],[990,4,4,154,158],[991,4,3,158,161],[992,2,2,161,163],[993,1,1,163,164],[994,2,2,164,166],[995,9,9,166,175],[996,4,4,175,179]]],[42,110,99,179,278,[[997,17,13,179,192],[998,5,5,192,197],[999,6,5,197,202],[1000,3,2,202,204],[1001,4,4,204,208],[1002,4,4,208,212],[1003,4,4,212,216],[1004,3,3,216,219],[1005,7,7,219,226],[1006,4,4,226,230],[1007,11,10,230,240],[1008,5,5,240,245],[1009,3,3,245,248],[1011,1,1,248,249],[1013,1,1,249,250],[1014,14,12,250,262],[1015,10,8,262,270],[1016,4,4,270,274],[1017,4,4,274,278]]],[43,81,78,278,356,[[1018,5,5,278,283],[1019,6,6,283,289],[1020,1,1,289,290],[1021,8,7,290,297],[1022,1,1,297,298],[1024,4,4,298,302],[1025,6,6,302,308],[1026,6,5,308,313],[1027,3,3,313,316],[1028,3,3,316,319],[1029,6,6,319,325],[1030,4,4,325,329],[1031,4,4,329,333],[1033,3,3,333,336],[1034,2,2,336,338],[1035,4,4,338,342],[1036,4,4,342,346],[1037,4,3,346,349],[1038,3,3,349,352],[1039,1,1,352,353],[1040,1,1,353,354],[1044,2,2,354,356]]],[44,5,4,356,360,[[1050,1,1,356,357],[1051,3,2,357,359],[1052,1,1,359,360]]],[45,6,6,360,366,[[1067,1,1,360,361],[1071,2,2,361,363],[1073,2,2,363,365],[1077,1,1,365,366]]],[46,1,1,366,367,[[1082,1,1,366,367]]],[47,7,6,367,373,[[1091,1,1,367,368],[1092,2,2,368,370],[1093,1,1,370,371],[1094,3,2,371,373]]],[48,3,3,373,376,[[1098,2,2,373,375],[1101,1,1,375,376]]],[49,2,2,376,378,[[1104,1,1,376,377],[1105,1,1,377,378]]],[50,1,1,378,379,[[1108,1,1,378,379]]],[51,1,1,379,380,[[1113,1,1,379,380]]],[52,1,1,380,381,[[1118,1,1,380,381]]],[55,1,1,381,382,[[1131,1,1,381,382]]],[57,8,7,382,389,[[1134,1,1,382,383],[1139,2,2,383,385],[1140,3,2,385,387],[1143,1,1,387,388],[1144,1,1,388,389]]],[58,2,2,389,391,[[1146,1,1,389,390],[1150,1,1,390,391]]],[59,1,1,391,392,[[1152,1,1,391,392]]],[60,2,2,392,394,[[1157,1,1,392,393],[1158,1,1,393,394]]],[61,6,4,394,398,[[1159,2,2,394,396],[1160,2,1,396,397],[1161,2,1,397,398]]],[65,14,13,398,411,[[1170,1,1,398,399],[1171,1,1,399,400],[1175,2,2,400,402],[1176,1,1,402,403],[1179,1,1,403,404],[1182,1,1,404,405],[1183,4,3,405,408],[1184,1,1,408,409],[1187,2,2,409,411]]]],[23162,23178,23184,23196,23227,23343,23345,23375,23415,23493,23499,23529,23618,23620,23621,23671,23784,23851,23859,23880,23897,23948,23995,24010,24029,24031,24078,24097,24123,24125,24183,24184,24185,24190,24198,24221,24228,24231,24237,24238,24248,24254,24260,24264,24266,24275,24278,24289,24324,24359,24361,24369,24375,24377,24385,24404,24406,24438,24441,24451,24454,24455,24459,24489,24509,24542,24544,24610,24620,24653,24670,24672,24693,24755,24758,24775,24794,24808,24810,24813,24821,24833,24851,24852,24865,24866,24867,24868,24869,24872,24877,24899,24900,24903,24914,24915,24959,24973,24980,24981,24998,24999,25006,25009,25013,25024,25048,25079,25080,25083,25088,25090,25094,25095,25096,25101,25107,25108,25110,25117,25123,25124,25125,25136,25152,25158,25197,25207,25232,25234,25236,25247,25277,25285,25287,25315,25331,25333,25346,25354,25402,25419,25528,25529,25554,25555,25589,25612,25613,25620,25621,25639,25640,25667,25690,25691,25711,25722,25733,25734,25778,25783,25808,25863,25920,25923,25943,25954,25973,25979,25982,25986,25988,25989,25990,26001,26004,26023,26044,26045,26046,26048,26052,26053,26054,26059,26068,26072,26074,26083,26084,26088,26096,26101,26108,26118,26120,26121,26139,26143,26144,26146,26162,26202,26211,26215,26219,26245,26261,26267,26279,26319,26330,26340,26367,26370,26420,26423,26425,26448,26454,26456,26458,26464,26473,26481,26487,26503,26521,26522,26524,26525,26529,26541,26544,26553,26555,26561,26564,26578,26581,26582,26586,26596,26600,26635,26653,26660,26718,26765,26786,26795,26798,26799,26800,26801,26803,26810,26813,26815,26821,26825,26836,26839,26844,26845,26848,26856,26866,26867,26874,26886,26891,26893,26900,26905,26906,26916,26933,26936,26937,26938,26940,26950,26951,26954,26973,26991,26993,27006,27025,27028,27035,27044,27053,27054,27055,27071,27125,27136,27138,27160,27177,27189,27192,27203,27204,27208,27225,27226,27244,27249,27252,27260,27283,27297,27327,27328,27331,27340,27342,27343,27349,27355,27357,27363,27369,27408,27410,27418,27421,27426,27440,27484,27492,27495,27524,27534,27560,27564,27571,27582,27592,27599,27601,27617,27634,27639,27642,27667,27673,27693,27733,27747,27863,27892,28060,28085,28088,28096,28478,28568,28571,28636,28653,28788,28896,29080,29087,29092,29123,29134,29146,29232,29241,29312,29417,29428,29508,29594,29688,29926,29992,30074,30075,30096,30099,30210,30233,30290,30371,30424,30521,30527,30541,30542,30569,30591,30771,30790,30848,30850,30871,30910,30959,30979,30983,30986,31016,31071,31074]]],["+",[44,44,[[39,4,4,0,4,[[935,1,1,0,1],[937,1,1,1,2],[947,1,1,2,3],[951,1,1,3,4]]],[40,9,9,4,13,[[957,2,2,4,6],[958,1,1,6,7],[966,2,2,7,9],[970,3,3,9,12],[971,1,1,12,13]]],[41,16,16,13,29,[[973,3,3,13,16],[974,1,1,16,17],[976,2,2,17,19],[977,3,3,19,22],[978,1,1,22,23],[986,1,1,23,24],[987,1,1,24,25],[991,1,1,25,26],[995,1,1,26,27],[996,2,2,27,29]]],[42,3,3,29,32,[[1006,1,1,29,30],[1014,2,2,30,32]]],[43,10,10,32,42,[[1018,3,3,32,35],[1019,1,1,35,36],[1025,2,2,36,38],[1027,1,1,38,39],[1031,1,1,39,40],[1033,1,1,40,41],[1035,1,1,41,42]]],[49,1,1,42,43,[[1104,1,1,42,43]]],[57,1,1,43,44,[[1140,1,1,43,44]]]],[23345,23415,23784,23948,24237,24254,24278,24610,24620,24808,24810,24813,24869,24900,24914,24915,25006,25094,25107,25108,25123,25136,25158,25554,25589,25778,25990,26004,26023,26521,26803,26810,26933,26936,26937,26991,27189,27203,27283,27421,27492,27564,29417,30096]]],["Was",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27204]]],["be",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25048]]],["been",[15,15,[[39,4,4,0,4,[[951,1,1,0,1],[953,2,2,1,3],[954,1,1,3,4]]],[41,2,2,4,6,[[976,1,1,4,5],[980,1,1,5,6]]],[42,3,3,6,9,[[1005,1,1,6,7],[1007,2,2,7,9]]],[43,2,2,9,11,[[1021,1,1,9,10],[1031,1,1,10,11]]],[47,1,1,11,12,[[1093,1,1,11,12]]],[57,1,1,12,13,[[1140,1,1,12,13]]],[60,1,1,13,14,[[1157,1,1,13,14]]],[61,1,1,14,15,[[1160,1,1,14,15]]]],[23948,24029,24031,24078,25079,25247,26458,26544,26555,27035,27440,29123,30099,30521,30569]]],["had",[11,11,[[41,4,4,0,4,[[979,1,1,0,1],[980,1,1,1,2],[982,1,1,2,3],[995,1,1,3,4]]],[43,6,6,4,10,[[1021,1,1,4,5],[1024,1,1,5,6],[1037,1,1,6,7],[1038,2,2,7,9],[1039,1,1,9,10]]],[47,1,1,10,11,[[1091,1,1,10,11]]]],[25236,25287,25402,25986,27054,27160,27639,27673,27693,27733,29080]]],["held",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27418]]],["is",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29146]]],["was",[257,235,[[39,19,18,0,18,[[929,1,1,0,1],[930,2,2,1,3],[931,1,1,3,4],[935,1,1,4,5],[936,1,1,5,6],[940,3,3,6,9],[942,3,2,9,11],[949,2,2,11,13],[954,1,1,13,14],[955,3,3,14,17],[956,1,1,17,18]]],[40,33,32,18,50,[[957,6,5,18,23],[958,1,1,23,24],[959,1,1,24,25],[960,3,3,25,28],[961,5,5,28,33],[962,3,3,33,36],[963,1,1,36,37],[967,3,3,37,40],[970,1,1,40,41],[971,8,8,41,49],[972,1,1,49,50]]],[41,62,53,50,103,[[973,3,3,50,53],[974,7,6,53,59],[976,4,4,59,63],[977,5,4,63,67],[978,2,1,67,68],[979,4,3,68,71],[980,1,1,71,72],[981,2,2,72,74],[983,2,1,74,75],[985,3,2,75,77],[986,1,1,77,78],[987,5,3,78,81],[988,3,3,81,84],[989,1,1,84,85],[990,4,4,85,89],[991,3,2,89,91],[992,1,1,91,92],[993,1,1,92,93],[994,2,2,93,95],[995,7,7,95,102],[996,1,1,102,103]]],[42,83,74,103,177,[[997,16,12,103,115],[998,4,4,115,119],[999,5,4,119,123],[1000,3,2,123,125],[1001,4,4,125,129],[1002,4,4,129,133],[1003,4,4,133,137],[1004,1,1,137,138],[1005,4,4,138,142],[1006,1,1,142,143],[1007,9,9,143,152],[1008,3,3,152,155],[1009,3,3,155,158],[1014,10,9,158,167],[1015,9,7,167,174],[1016,2,2,174,176],[1017,1,1,176,177]]],[43,36,35,177,212,[[1018,1,1,177,178],[1019,1,1,178,179],[1020,1,1,179,180],[1021,3,3,180,183],[1024,3,3,183,186],[1025,3,3,186,189],[1026,6,5,189,194],[1027,2,2,194,196],[1028,2,2,196,198],[1029,4,4,198,202],[1030,2,2,202,204],[1031,1,1,204,205],[1033,1,1,205,206],[1034,1,1,206,207],[1035,1,1,207,208],[1036,2,2,208,210],[1038,1,1,210,211],[1044,1,1,211,212]]],[44,1,1,212,213,[[1050,1,1,212,213]]],[45,2,2,213,215,[[1071,1,1,213,214],[1077,1,1,214,215]]],[46,1,1,215,216,[[1082,1,1,215,216]]],[47,1,1,216,217,[[1092,1,1,216,217]]],[50,1,1,217,218,[[1108,1,1,217,218]]],[57,3,3,218,221,[[1139,1,1,218,219],[1143,1,1,219,220],[1144,1,1,220,221]]],[58,2,2,221,223,[[1146,1,1,221,222],[1150,1,1,222,223]]],[61,3,3,223,226,[[1159,2,2,223,225],[1161,1,1,225,226]]],[65,10,9,226,235,[[1170,1,1,226,227],[1171,1,1,227,228],[1176,1,1,228,229],[1179,1,1,229,230],[1183,4,3,230,233],[1187,2,2,233,235]]]],[23162,23178,23184,23196,23343,23375,23493,23499,23529,23620,23621,23851,23859,24125,24183,24185,24190,24198,24221,24228,24238,24248,24260,24264,24289,24324,24359,24361,24369,24375,24385,24404,24406,24454,24455,24459,24489,24653,24670,24672,24755,24833,24851,24852,24865,24866,24867,24868,24872,24877,24900,24959,24973,24980,24998,24999,25009,25013,25024,25080,25095,25096,25101,25110,25124,25125,25136,25152,25197,25207,25232,25277,25346,25354,25419,25528,25529,25555,25612,25613,25620,25621,25639,25640,25667,25690,25691,25711,25722,25733,25734,25783,25863,25920,25923,25943,25954,25973,25979,25982,25988,25989,26001,26045,26046,26048,26052,26053,26054,26059,26072,26074,26083,26084,26088,26096,26108,26118,26120,26121,26143,26144,26146,26162,26202,26211,26215,26219,26245,26261,26267,26279,26319,26330,26340,26367,26370,26425,26448,26454,26456,26464,26503,26524,26525,26529,26541,26553,26555,26561,26564,26578,26581,26582,26586,26635,26653,26660,26786,26795,26798,26799,26800,26801,26803,26813,26825,26839,26844,26845,26848,26856,26866,26867,26874,26891,26905,26940,26973,27006,27025,27044,27055,27125,27136,27138,27177,27192,27208,27225,27226,27244,27249,27252,27260,27297,27328,27331,27342,27343,27355,27357,27369,27408,27426,27484,27524,27582,27601,27617,27667,27863,28060,28571,28788,28896,29092,29508,30074,30210,30233,30290,30371,30541,30542,30591,30771,30790,30871,30910,30979,30983,30986,31071,31074]]],["wast",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]],[65,1,1,3,4,[[1182,1,1,3,4]]]],[24123,24821,26916,30959]]],["were",[116,112,[[39,9,9,0,9,[[932,1,1,0,1],[942,1,1,1,2],[943,1,1,2,3],[950,2,2,3,5],[952,1,1,5,6],[953,1,1,6,7],[954,1,1,7,8],[955,1,1,8,9]]],[40,17,17,9,26,[[957,1,1,9,10],[958,2,2,10,12],[960,1,1,12,13],[961,1,1,13,14],[962,3,3,14,17],[964,1,1,17,18],[965,2,2,18,20],[966,1,1,20,21],[968,1,1,21,22],[970,3,3,22,25],[971,1,1,25,26]]],[41,17,16,26,42,[[973,3,3,26,29],[974,1,1,29,30],[976,3,3,30,33],[977,3,2,33,35],[979,1,1,35,36],[980,1,1,36,37],[981,3,3,37,40],[992,1,1,40,41],[996,1,1,41,42]]],[42,20,20,42,62,[[997,1,1,42,43],[998,1,1,43,44],[999,1,1,44,45],[1004,2,2,45,47],[1005,2,2,47,49],[1006,2,2,49,51],[1008,2,2,51,53],[1011,1,1,53,54],[1013,1,1,54,55],[1014,2,2,55,57],[1015,1,1,57,58],[1016,2,2,58,60],[1017,2,2,60,62]]],[43,25,24,62,86,[[1018,1,1,62,63],[1019,4,4,63,67],[1021,3,3,67,70],[1022,1,1,70,71],[1028,1,1,71,72],[1029,2,2,72,74],[1030,2,2,74,76],[1033,1,1,76,77],[1034,1,1,77,78],[1035,2,2,78,80],[1036,2,2,80,82],[1037,3,2,82,84],[1040,1,1,84,85],[1044,1,1,85,86]]],[44,4,3,86,89,[[1051,3,2,86,88],[1052,1,1,88,89]]],[45,4,4,89,93,[[1067,1,1,89,90],[1071,1,1,90,91],[1073,2,2,91,93]]],[47,3,2,93,95,[[1092,1,1,93,94],[1094,2,1,94,95]]],[48,3,3,95,98,[[1098,2,2,95,97],[1101,1,1,97,98]]],[49,1,1,98,99,[[1105,1,1,98,99]]],[51,1,1,99,100,[[1113,1,1,99,100]]],[52,1,1,100,101,[[1118,1,1,100,101]]],[55,1,1,101,102,[[1131,1,1,101,102]]],[57,3,3,102,105,[[1134,1,1,102,103],[1139,1,1,103,104],[1140,1,1,104,105]]],[59,1,1,105,106,[[1152,1,1,105,106]]],[60,1,1,106,107,[[1158,1,1,106,107]]],[61,2,2,107,109,[[1160,1,1,107,108],[1161,1,1,108,109]]],[65,3,3,109,112,[[1175,2,2,109,111],[1184,1,1,111,112]]]],[23227,23618,23671,23880,23897,23995,24010,24097,24184,24231,24266,24275,24359,24377,24438,24441,24451,24509,24542,24544,24620,24693,24758,24775,24794,24866,24899,24900,24903,24981,25083,25088,25090,25117,25124,25234,25285,25315,25331,25333,25808,26044,26068,26101,26139,26420,26423,26473,26481,26487,26522,26596,26600,26718,26765,26815,26821,26836,26886,26893,26900,26906,26938,26950,26951,26954,26993,27028,27053,27054,27071,27327,27340,27349,27363,27410,27495,27534,27560,27571,27592,27599,27634,27642,27747,27892,28085,28088,28096,28478,28568,28636,28653,29087,29134,29232,29241,29312,29428,29594,29688,29926,29992,30075,30096,30424,30527,30569,30591,30848,30850,31016]]]]},{"k":"G2259","v":[["*",[2,2,[[46,2,2,0,2,[[1080,2,2,0,2]]]],[28856,28857]]],["+",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28857]]],["when",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28856]]]]},{"k":"G2260","v":[["than",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26623]]]]},{"k":"G2261","v":[["gentle",[2,2,[[51,1,1,0,1,[[1112,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[29577,29851]]]]},{"k":"G2262","v":[["Er",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25053]]]]},{"k":"G2263","v":[["quiet",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29718]]]]},{"k":"G2264","v":[["*",[44,41,[[39,13,12,0,12,[[930,9,9,0,9],[942,4,3,9,12]]],[40,8,8,12,20,[[962,7,7,12,19],[964,1,1,19,20]]],[41,14,12,20,32,[[973,1,1,20,21],[975,3,2,21,23],[980,1,1,23,24],[981,2,2,24,26],[985,1,1,26,27],[995,6,5,27,32]]],[43,9,9,32,41,[[1021,1,1,32,33],[1029,6,6,33,39],[1030,1,1,39,40],[1040,1,1,40,41]]]],[23170,23172,23176,23181,23182,23184,23185,23188,23191,23598,23600,23603,24421,24423,24424,24425,24427,24428,24429,24515,24898,25026,25044,25248,25308,25310,25549,25942,25943,25946,25947,25950,27049,27338,27343,27348,27356,27357,27358,27363,27769]]],["Herod",[40,39,[[39,12,12,0,12,[[930,9,9,0,9],[942,3,3,9,12]]],[40,8,8,12,20,[[962,7,7,12,19],[964,1,1,19,20]]],[41,12,11,20,31,[[973,1,1,20,21],[975,3,2,21,23],[981,2,2,23,25],[985,1,1,25,26],[995,5,5,26,31]]],[43,8,8,31,39,[[1021,1,1,31,32],[1029,6,6,32,38],[1030,1,1,38,39]]]],[23170,23172,23176,23181,23182,23184,23185,23188,23191,23598,23600,23603,24421,24423,24424,24425,24427,24428,24429,24515,24898,25026,25044,25308,25310,25549,25942,25943,25946,25947,25950,27049,27338,27343,27348,27356,27357,27358,27363]]],["Herod's",[4,4,[[39,1,1,0,1,[[942,1,1,0,1]]],[41,2,2,1,3,[[980,1,1,1,2],[995,1,1,2,3]]],[43,1,1,3,4,[[1040,1,1,3,4]]]],[23603,25248,25942,27769]]]]},{"k":"G2265","v":[["Herodians",[3,3,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,2,2,1,3,[[959,1,1,1,2],[968,1,1,2,3]]]],[23888,24294,24686]]]]},{"k":"G2266","v":[["*",[6,6,[[39,2,2,0,2,[[942,2,2,0,2]]],[40,3,3,2,5,[[962,3,3,2,5]]],[41,1,1,5,6,[[975,1,1,5,6]]]],[23600,23603,24424,24426,24429,25044]]],["+",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]]],[23600,24424]]],["Herodias",[4,4,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,2,2,1,3,[[962,2,2,1,3]]],[41,1,1,3,4,[[975,1,1,3,4]]]],[23603,24426,24429,25044]]]]},{"k":"G2267","v":[["Herodion",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28347]]]]},{"k":"G2268","v":[["Esaias",[21,21,[[39,6,6,0,6,[[931,1,1,0,1],[932,1,1,1,2],[936,1,1,2,3],[940,1,1,3,4],[941,1,1,4,5],[943,1,1,5,6]]],[40,1,1,6,7,[[963,1,1,6,7]]],[41,2,2,7,9,[[975,1,1,7,8],[976,1,1,8,9]]],[42,4,4,9,13,[[997,1,1,9,10],[1008,3,3,10,13]]],[43,3,3,13,16,[[1025,2,2,13,15],[1045,1,1,15,16]]],[44,5,5,16,21,[[1054,2,2,16,18],[1055,2,2,18,20],[1060,1,1,20,21]]]],[23195,23223,23362,23506,23553,23640,24469,25029,25080,26067,26618,26619,26621,27204,27206,27924,28182,28184,28204,28208,28315]]]]},{"k":"G2269","v":[["Esau",[3,3,[[44,1,1,0,1,[[1054,1,1,0,1]]],[57,2,2,1,3,[[1143,1,1,1,2],[1144,1,1,2,3]]]],[28168,30192,30228]]]]},{"k":"G2270","v":[["*",[5,5,[[41,2,2,0,2,[[986,1,1,0,1],[995,1,1,1,2]]],[43,2,2,2,4,[[1028,1,1,2,3],[1038,1,1,3,4]]],[51,1,1,4,5,[[1114,1,1,4,5]]]],[25557,25991,27325,27678,29614]]],["ceased",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27678]]],["peace",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[43,1,1,1,2,[[1028,1,1,1,2]]]],[25557,27325]]],["quiet",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29614]]],["rested",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25991]]]]},{"k":"G2271","v":[["*",[4,4,[[43,1,1,0,1,[[1039,1,1,0,1]]],[52,1,1,1,2,[[1118,1,1,1,2]]],[53,2,2,2,4,[[1120,2,2,2,4]]]],[27706,29690,29727,29728]]],["quietness",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29690]]],["silence",[3,3,[[43,1,1,0,1,[[1039,1,1,0,1]]],[53,2,2,1,3,[[1120,2,2,1,3]]]],[27706,29727,29728]]]]},{"k":"G2272","v":[["*",[2,2,[[53,1,1,0,1,[[1120,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[29718,30428]]],["peaceable",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29718]]],["quiet",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30428]]]]},{"k":"G2273","v":[["whether",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28084]]]]},{"k":"G2274","v":[["*",[3,3,[[46,1,1,0,1,[[1089,1,1,0,1]]],[60,2,2,1,3,[[1157,2,2,1,3]]]],[29035,30519,30520]]],["inferior",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29035]]],["overcome",[2,2,[[60,2,2,0,2,[[1157,2,2,0,2]]]],[30519,30520]]]]},{"k":"G2275","v":[["*",[2,2,[[44,1,1,0,1,[[1056,1,1,0,1]]],[45,1,1,1,2,[[1067,1,1,1,2]]]],[28221,28474]]],["diminishing",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28221]]],["fault",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28474]]]]},{"k":"G2276","v":[["*",[2,2,[[45,1,1,0,1,[[1072,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]]],[28617,29037]]],["less",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29037]]],["worse",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28617]]]]},{"k":"G2277","v":[["be",[2,2,[[45,1,1,0,1,[[1077,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[28798,30366]]]]},{"k":"G2278","v":[["*",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[45,1,1,1,2,[[1074,1,1,1,2]]]],[25851,28666]]],["roaring",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25851]]],["sounding",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28666]]]]},{"k":"G2279","v":[["*",[3,3,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[25100,26951,30231]]],["fame",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25100]]],["sound",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[26951,30231]]]]},{"k":"G2280","v":[["Thaddaeus",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]]],[23420,24306]]]]},{"k":"G2281","v":[["*",[92,83,[[39,17,16,0,16,[[932,3,2,0,2],[936,4,4,2,6],[941,2,2,6,8],[942,3,3,8,11],[943,1,1,11,12],[945,1,1,12,13],[946,1,1,13,14],[949,1,1,14,15],[951,1,1,15,16]]],[40,19,15,16,31,[[957,2,1,16,17],[958,1,1,17,18],[959,1,1,18,19],[960,5,3,19,22],[961,4,3,22,25],[962,3,3,25,28],[963,1,1,28,29],[965,1,1,29,30],[967,1,1,30,31]]],[41,3,3,31,34,[[989,2,2,31,33],[993,1,1,33,34]]],[42,9,9,34,43,[[1002,7,7,34,41],[1017,2,2,41,43]]],[43,10,10,43,53,[[1021,1,1,43,44],[1024,1,1,44,45],[1027,2,2,45,47],[1031,1,1,47,48],[1034,1,1,48,49],[1044,3,3,49,52],[1045,1,1,52,53]]],[44,1,1,53,54,[[1054,1,1,53,54]]],[45,2,2,54,56,[[1071,2,2,54,56]]],[46,1,1,56,57,[[1088,1,1,56,57]]],[57,2,2,57,59,[[1143,2,2,57,59]]],[58,1,1,59,60,[[1146,1,1,59,60]]],[64,1,1,60,61,[[1166,1,1,60,61]]],[65,26,22,61,83,[[1170,1,1,61,62],[1171,1,1,62,63],[1173,3,3,63,66],[1174,3,2,66,68],[1176,4,4,68,72],[1178,1,1,72,73],[1179,2,1,73,74],[1180,1,1,74,75],[1181,2,1,75,76],[1182,2,1,76,77],[1184,3,3,77,80],[1186,2,2,80,82],[1187,1,1,82,83]]]],[23224,23227,23369,23371,23372,23377,23540,23586,23621,23622,23623,23662,23727,23733,23847,23933,24231,24273,24295,24324,24362,24364,24365,24377,24385,24454,24455,24456,24494,24580,24663,25653,25657,25851,26258,26273,26274,26275,26276,26279,26282,26899,26905,27046,27152,27265,27291,27429,27537,27885,27893,27895,27903,28182,28568,28569,29015,30184,30201,30272,30685,30774,30792,30811,30812,30813,30835,30836,30863,30866,30867,30869,30903,30909,30933,30948,30957,31010,31012,31014,31046,31051,31054]]],["+",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30184]]],["sea",[86,78,[[39,16,15,0,15,[[932,3,2,0,2],[936,4,4,2,6],[941,1,1,6,7],[942,3,3,7,10],[943,1,1,10,11],[945,1,1,11,12],[946,1,1,12,13],[949,1,1,13,14],[951,1,1,14,15]]],[40,17,14,15,29,[[957,2,1,15,16],[959,1,1,16,17],[960,4,3,17,20],[961,4,3,20,23],[962,3,3,23,26],[963,1,1,26,27],[965,1,1,27,28],[967,1,1,28,29]]],[41,3,3,29,32,[[989,2,2,29,31],[993,1,1,31,32]]],[42,9,9,32,41,[[1002,7,7,32,39],[1017,2,2,39,41]]],[43,8,8,41,49,[[1021,1,1,41,42],[1024,1,1,42,43],[1031,1,1,43,44],[1034,1,1,44,45],[1044,3,3,45,48],[1045,1,1,48,49]]],[44,1,1,49,50,[[1054,1,1,49,50]]],[45,2,2,50,52,[[1071,2,2,50,52]]],[46,1,1,52,53,[[1088,1,1,52,53]]],[57,1,1,53,54,[[1143,1,1,53,54]]],[58,1,1,54,55,[[1146,1,1,54,55]]],[64,1,1,55,56,[[1166,1,1,55,56]]],[65,26,22,56,78,[[1170,1,1,56,57],[1171,1,1,57,58],[1173,3,3,58,61],[1174,3,2,61,63],[1176,4,4,63,67],[1178,1,1,67,68],[1179,2,1,68,69],[1180,1,1,69,70],[1181,2,1,70,71],[1182,2,1,71,72],[1184,3,3,72,75],[1186,2,2,75,77],[1187,1,1,77,78]]]],[23224,23227,23369,23371,23372,23377,23586,23621,23622,23623,23662,23727,23733,23847,23933,24231,24295,24324,24362,24364,24365,24377,24385,24454,24455,24456,24494,24580,24663,25653,25657,25851,26258,26273,26274,26275,26276,26279,26282,26899,26905,27046,27152,27429,27537,27885,27893,27895,27903,28182,28568,28569,29015,30201,30272,30685,30774,30792,30811,30812,30813,30835,30836,30863,30866,30867,30869,30903,30909,30933,30948,30957,31010,31012,31014,31046,31051,31054]]],["side",[5,5,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[960,1,1,2,3]]],[43,2,2,3,5,[[1027,2,2,3,5]]]],[23540,24273,24324,27265,27291]]]]},{"k":"G2282","v":[["cherisheth",[2,2,[[48,1,1,0,1,[[1101,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]]],[29333,29577]]]]},{"k":"G2283","v":[["Thamar",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23147]]]]},{"k":"G2284","v":[["*",[4,4,[[40,3,3,0,3,[[957,1,1,0,1],[966,2,2,1,3]]],[43,1,1,3,4,[[1026,1,1,3,4]]]],[24242,24612,24620,27222]]],["amazed",[2,2,[[40,2,2,0,2,[[957,1,1,0,1],[966,1,1,1,2]]]],[24242,24620]]],["astonished",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[24612,27222]]]]},{"k":"G2285","v":[["*",[3,3,[[41,2,2,0,2,[[976,1,1,0,1],[977,1,1,1,2]]],[43,1,1,2,3,[[1020,1,1,2,3]]]],[25099,25116,27006]]],["+",[2,2,[[41,2,2,0,2,[[976,1,1,0,1],[977,1,1,1,2]]]],[25099,25116]]],["wonder",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27006]]]]},{"k":"G2286","v":[["thing",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24891]]]]},{"k":"G2287","v":[["deadly",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30327]]]]},{"k":"G2288","v":[["*",[119,106,[[39,7,7,0,7,[[932,1,1,0,1],[938,1,1,1,2],[943,1,1,2,3],[944,1,1,3,4],[948,1,1,4,5],[954,2,2,5,7]]],[40,6,6,7,13,[[963,1,1,7,8],[965,1,1,8,9],[966,1,1,9,10],[969,1,1,10,11],[970,2,2,11,13]]],[41,7,7,13,20,[[973,1,1,13,14],[974,1,1,14,15],[981,1,1,15,16],[994,1,1,16,17],[995,2,2,17,19],[996,1,1,19,20]]],[42,8,8,20,28,[[1001,1,1,20,21],[1004,2,2,21,23],[1007,2,2,23,25],[1008,1,1,25,26],[1014,1,1,26,27],[1017,1,1,27,28]]],[43,8,8,28,36,[[1019,1,1,28,29],[1030,1,1,29,30],[1039,1,1,30,31],[1040,1,1,31,32],[1042,2,2,32,34],[1043,1,1,34,35],[1045,1,1,35,36]]],[44,22,20,36,56,[[1046,1,1,36,37],[1050,6,5,37,42],[1051,7,7,42,49],[1052,5,4,49,53],[1053,3,3,53,56]]],[45,7,7,56,63,[[1064,1,1,56,57],[1072,1,1,57,58],[1076,5,5,58,63]]],[46,9,8,63,71,[[1078,2,2,63,65],[1079,2,1,65,66],[1080,1,1,66,67],[1081,2,2,67,69],[1084,1,1,69,70],[1088,1,1,70,71]]],[49,6,5,71,76,[[1103,1,1,71,72],[1104,4,3,72,75],[1105,1,1,75,76]]],[50,1,1,76,77,[[1107,1,1,76,77]]],[54,1,1,77,78,[[1125,1,1,77,78]]],[57,10,8,78,86,[[1134,5,3,78,81],[1137,1,1,81,82],[1139,1,1,82,83],[1141,2,2,83,85],[1143,1,1,85,86]]],[58,2,2,86,88,[[1146,1,1,86,87],[1150,1,1,87,88]]],[61,6,3,88,91,[[1161,2,1,88,89],[1163,4,2,89,91]]],[65,19,15,91,106,[[1167,1,1,91,92],[1168,3,3,92,95],[1172,2,1,95,96],[1175,2,1,96,97],[1178,1,1,97,98],[1179,3,2,98,100],[1184,1,1,100,101],[1186,4,3,101,104],[1187,2,2,104,106]]]],[23225,23438,23637,23700,23810,24092,24120,24473,24539,24621,24729,24788,24818,24972,24999,25328,25897,25950,25957,26011,26234,26432,26433,26527,26536,26613,26817,26917,26973,27390,27708,27763,27807,27821,27854,27917,27962,28057,28059,28061,28064,28068,28071,28072,28073,28077,28084,28089,28091,28096,28101,28104,28115,28118,28122,28154,28432,28626,28739,28744,28772,28773,28774,28809,28810,28840,28848,28870,28871,28926,29012,29381,29399,29418,29421,29431,29487,29819,29986,29991,29992,30037,30087,30120,30121,30177,30281,30374,30593,30640,30641,30715,30727,30728,30740,30801,30846,30902,30911,30920,31001,31044,31051,31052,31057,31061]]],["+",[2,2,[[57,1,1,0,1,[[1141,1,1,0,1]]],[65,1,1,1,2,[[1179,1,1,1,2]]]],[30120,30920]]],["Death",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[65,1,1,1,2,[[1172,1,1,1,2]]]],[28772,30801]]],["deadly",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30911]]],["death",[113,102,[[39,7,7,0,7,[[932,1,1,0,1],[938,1,1,1,2],[943,1,1,2,3],[944,1,1,3,4],[948,1,1,4,5],[954,2,2,5,7]]],[40,6,6,7,13,[[963,1,1,7,8],[965,1,1,8,9],[966,1,1,9,10],[969,1,1,10,11],[970,2,2,11,13]]],[41,7,7,13,20,[[973,1,1,13,14],[974,1,1,14,15],[981,1,1,15,16],[994,1,1,16,17],[995,2,2,17,19],[996,1,1,19,20]]],[42,8,8,20,28,[[1001,1,1,20,21],[1004,2,2,21,23],[1007,2,2,23,25],[1008,1,1,25,26],[1014,1,1,26,27],[1017,1,1,27,28]]],[43,8,8,28,36,[[1019,1,1,28,29],[1030,1,1,29,30],[1039,1,1,30,31],[1040,1,1,31,32],[1042,2,2,32,34],[1043,1,1,34,35],[1045,1,1,35,36]]],[44,22,20,36,56,[[1046,1,1,36,37],[1050,6,5,37,42],[1051,7,7,42,49],[1052,5,4,49,53],[1053,3,3,53,56]]],[45,6,6,56,62,[[1064,1,1,56,57],[1072,1,1,57,58],[1076,4,4,58,62]]],[46,8,7,62,69,[[1078,2,2,62,64],[1079,2,1,64,65],[1080,1,1,65,66],[1081,2,2,66,68],[1084,1,1,68,69]]],[49,6,5,69,74,[[1103,1,1,69,70],[1104,4,3,70,73],[1105,1,1,73,74]]],[50,1,1,74,75,[[1107,1,1,74,75]]],[54,1,1,75,76,[[1125,1,1,75,76]]],[57,9,7,76,83,[[1134,5,3,76,79],[1137,1,1,79,80],[1139,1,1,80,81],[1141,1,1,81,82],[1143,1,1,82,83]]],[58,2,2,83,85,[[1146,1,1,83,84],[1150,1,1,84,85]]],[61,6,3,85,88,[[1161,2,1,85,86],[1163,4,2,86,88]]],[65,16,14,88,102,[[1167,1,1,88,89],[1168,3,3,89,92],[1172,1,1,92,93],[1175,2,1,93,94],[1178,1,1,94,95],[1179,1,1,95,96],[1184,1,1,96,97],[1186,4,3,97,100],[1187,2,2,100,102]]]],[23225,23438,23637,23700,23810,24092,24120,24473,24539,24621,24729,24788,24818,24972,24999,25328,25897,25950,25957,26011,26234,26432,26433,26527,26536,26613,26817,26917,26973,27390,27708,27763,27807,27821,27854,27917,27962,28057,28059,28061,28064,28068,28071,28072,28073,28077,28084,28089,28091,28096,28101,28104,28115,28118,28122,28154,28432,28626,28739,28744,28773,28774,28809,28810,28840,28848,28870,28871,28926,29381,29399,29418,29421,29431,29487,29819,29986,29991,29992,30037,30087,30121,30177,30281,30374,30593,30640,30641,30715,30727,30728,30740,30801,30846,30902,30911,31001,31044,31051,31052,31057,31061]]],["deaths",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29012]]]]},{"k":"G2289","v":[["*",[11,11,[[39,3,3,0,3,[[938,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[969,1,1,3,4],[970,1,1,4,5]]],[41,1,1,5,6,[[993,1,1,5,6]]],[44,3,3,6,9,[[1052,1,1,6,7],[1053,2,2,7,9]]],[46,1,1,9,10,[[1083,1,1,9,10]]],[59,1,1,10,11,[[1153,1,1,10,11]]]],[23438,24113,24130,24729,24809,25842,28095,28129,28152,28907,30442]]],["+",[5,5,[[39,3,3,0,3,[[938,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[969,1,1,3,4],[970,1,1,4,5]]]],[23438,24113,24130,24729,24809]]],["dead",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28095]]],["death",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[25842,30442]]],["killed",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]]],[28152,28907]]],["mortify",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28129]]]]},{"k":"G2290","v":[["*",[11,11,[[39,3,3,0,3,[[936,2,2,0,2],[942,1,1,2,3]]],[41,3,3,3,6,[[981,2,2,3,5],[988,1,1,5,6]]],[43,4,4,6,10,[[1019,1,1,6,7],[1022,3,3,7,10]]],[45,1,1,10,11,[[1076,1,1,10,11]]]],[23366,23367,23609,25360,25361,25642,26978,27065,27068,27069,28722]]],["buried",[7,7,[[39,1,1,0,1,[[942,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[43,4,4,2,6,[[1019,1,1,2,3],[1022,3,3,3,6]]],[45,1,1,6,7,[[1076,1,1,6,7]]]],[23609,25642,26978,27065,27068,27069,28722]]],["bury",[4,4,[[39,2,2,0,2,[[936,2,2,0,2]]],[41,2,2,2,4,[[981,2,2,2,4]]]],[23366,23367,25360,25361]]]]},{"k":"G2291","v":[["Thara",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25059]]]]},{"k":"G2292","v":[["*",[6,6,[[46,5,5,0,5,[[1082,2,2,0,2],[1084,1,1,2,3],[1087,2,2,3,5]]],[57,1,1,5,6,[[1145,1,1,5,6]]]],[28883,28885,28932,28972,28973,30247]]],["bold",[2,2,[[46,2,2,0,2,[[1087,2,2,0,2]]]],[28972,28973]]],["boldly",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30247]]],["confidence",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28932]]],["confident",[2,2,[[46,2,2,0,2,[[1082,2,2,0,2]]]],[28883,28885]]]]},{"k":"G2293","v":[["*",[8,8,[[39,3,3,0,3,[[937,2,2,0,2],[942,1,1,2,3]]],[40,2,2,3,5,[[962,1,1,3,4],[966,1,1,4,5]]],[41,1,1,5,6,[[980,1,1,5,6]]],[42,1,1,6,7,[[1012,1,1,6,7]]],[43,1,1,7,8,[[1040,1,1,7,8]]]],[23381,23401,23624,24457,24637,25293,26759,27745]]],["cheer",[5,5,[[39,2,2,0,2,[[937,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[42,1,1,3,4,[[1012,1,1,3,4]]],[43,1,1,4,5,[[1040,1,1,4,5]]]],[23381,23624,24457,26759,27745]]],["comfort",[3,3,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23401,24637,25293]]]]},{"k":"G2294","v":[["courage",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27914]]]]},{"k":"G2295","v":[["admiration",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30981]]]]},{"k":"G2296","v":[["*",[46,46,[[39,8,8,0,8,[[936,2,2,0,2],[937,2,2,2,4],[943,1,1,4,5],[949,1,1,5,6],[950,1,1,6,7],[955,1,1,7,8]]],[40,6,6,8,14,[[961,1,1,8,9],[962,2,2,9,11],[968,1,1,11,12],[971,2,2,12,14]]],[41,13,13,14,27,[[973,2,2,14,16],[974,2,2,16,18],[976,1,1,18,19],[979,1,1,19,20],[980,1,1,20,21],[981,1,1,21,22],[983,2,2,22,24],[992,1,1,24,25],[996,2,2,25,27]]],[42,6,6,27,33,[[999,1,1,27,28],[1000,1,1,28,29],[1001,2,2,29,31],[1003,2,2,31,33]]],[43,5,5,33,38,[[1019,1,1,33,34],[1020,1,1,34,35],[1021,1,1,35,36],[1024,1,1,36,37],[1030,1,1,37,38]]],[47,1,1,38,39,[[1091,1,1,38,39]]],[52,1,1,39,40,[[1116,1,1,39,40]]],[61,1,1,40,41,[[1161,1,1,40,41]]],[64,1,1,41,42,[[1166,1,1,41,42]]],[65,4,4,42,46,[[1179,1,1,42,43],[1183,3,3,43,46]]]],[23355,23372,23387,23412,23664,23846,23894,24143,24384,24413,24458,24690,24831,24870,24914,24956,24991,25006,25085,25204,25270,25344,25419,25443,25805,26003,26032,26127,26183,26230,26238,26343,26349,26956,27008,27035,27147,27403,29063,29659,30592,30688,30911,30981,30982,30983]]],["+",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[25006,30688]]],["Marvel",[3,3,[[42,2,2,0,2,[[999,1,1,0,1],[1001,1,1,1,2]]],[61,1,1,2,3,[[1161,1,1,2,3]]]],[26127,26238,30592]]],["admired",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29659]]],["marvel",[6,6,[[40,1,1,0,1,[[961,1,1,0,1]]],[42,2,2,1,3,[[1001,1,1,1,2],[1003,1,1,2,3]]],[43,1,1,3,4,[[1020,1,1,3,4]]],[47,1,1,4,5,[[1091,1,1,4,5]]],[65,1,1,5,6,[[1183,1,1,5,6]]]],[24384,26230,26349,27008,29063,30982]]],["marvelled",[20,20,[[39,7,7,0,7,[[936,2,2,0,2],[937,2,2,2,4],[949,1,1,4,5],[950,1,1,5,6],[955,1,1,6,7]]],[40,4,4,7,11,[[962,1,1,7,8],[968,1,1,8,9],[971,2,2,9,11]]],[41,5,5,11,16,[[973,2,2,11,13],[979,1,1,13,14],[983,1,1,14,15],[992,1,1,15,16]]],[42,2,2,16,18,[[1000,1,1,16,17],[1003,1,1,17,18]]],[43,2,2,18,20,[[1019,1,1,18,19],[1021,1,1,19,20]]]],[23355,23372,23387,23412,23846,23894,24143,24413,24690,24831,24870,24914,24956,25204,25443,25805,26183,26343,26956,27035]]],["wonder",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[65,1,1,1,2,[[1183,1,1,1,2]]]],[27403,30983]]],["wondered",[11,11,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,6,6,2,8,[[974,1,1,2,3],[976,1,1,3,4],[980,1,1,4,5],[981,1,1,5,6],[983,1,1,6,7],[996,1,1,7,8]]],[43,1,1,8,9,[[1024,1,1,8,9]]],[65,2,2,9,11,[[1179,1,1,9,10],[1183,1,1,10,11]]]],[23664,24458,24991,25085,25270,25344,25419,26032,27147,30911,30981]]],["wondering",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26003]]]]},{"k":"G2297","v":[["things",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23841]]]]},{"k":"G2298","v":[["*",[7,7,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[42,1,1,2,3,[[1005,1,1,2,3]]],[46,1,1,3,4,[[1088,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]],[65,2,2,5,7,[[1181,2,2,5,7]]]],[23868,24684,26470,29003,30408,30947,30949]]],["marvel",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29003]]],["marvellous",[5,5,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]],[65,2,2,3,5,[[1181,2,2,3,5]]]],[23868,24684,30408,30947,30949]]],["thing",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26470]]]]},{"k":"G2299","v":[["goddess",[3,3,[[43,3,3,0,3,[[1036,3,3,0,3]]]],[27612,27620,27622]]]]},{"k":"G2300","v":[["*",[24,24,[[39,4,4,0,4,[[934,1,1,0,1],[939,1,1,1,2],[950,1,1,2,3],[951,1,1,3,4]]],[40,2,2,4,6,[[972,2,2,4,6]]],[41,3,3,6,9,[[977,1,1,6,7],[979,1,1,7,8],[995,1,1,8,9]]],[42,7,7,9,16,[[997,3,3,9,12],[1000,1,1,12,13],[1002,1,1,13,14],[1004,1,1,14,15],[1007,1,1,15,16]]],[43,4,4,16,20,[[1018,1,1,16,17],[1025,1,1,17,18],[1038,1,1,18,19],[1039,1,1,19,20]]],[44,1,1,20,21,[[1060,1,1,20,21]]],[61,3,3,21,24,[[1159,1,1,21,22],[1162,2,2,22,24]]]],[23283,23466,23883,23923,24884,24887,25134,25219,25990,26058,26076,26082,26191,26262,26391,26568,26934,27194,27691,27713,28327,30541,30615,30617]]],["beheld",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]]],[25990,26058]]],["on",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26191]]],["saw",[8,8,[[41,1,1,0,1,[[977,1,1,0,1]]],[42,4,4,1,5,[[997,2,2,1,3],[1002,1,1,3,4],[1004,1,1,4,5]]],[43,3,3,5,8,[[1025,1,1,5,6],[1038,1,1,6,7],[1039,1,1,7,8]]]],[25134,26076,26082,26262,26391,27194,27691,27713]]],["see",[4,4,[[39,2,2,0,2,[[939,1,1,0,1],[950,1,1,1,2]]],[41,1,1,2,3,[[979,1,1,2,3]]],[44,1,1,3,4,[[1060,1,1,3,4]]]],[23466,23883,25219,28327]]],["seen",[8,8,[[39,2,2,0,2,[[934,1,1,0,1],[951,1,1,1,2]]],[40,2,2,2,4,[[972,2,2,2,4]]],[42,1,1,4,5,[[1007,1,1,4,5]]],[43,1,1,5,6,[[1018,1,1,5,6]]],[61,2,2,6,8,[[1162,2,2,6,8]]]],[23283,23923,24884,24887,26568,26934,30615,30617]]],["upon",[1,1,[[61,1,1,0,1,[[1159,1,1,0,1]]]],[30541]]]]},{"k":"G2301","v":[["gazingstock",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30166]]]]},{"k":"G2302","v":[["*",[3,3,[[43,2,2,0,2,[[1036,2,2,0,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]]],[27614,27616,28442]]],["spectacle",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28442]]],["theatre",[2,2,[[43,2,2,0,2,[[1036,2,2,0,2]]]],[27614,27616]]]]},{"k":"G2303","v":[["brimstone",[7,7,[[41,1,1,0,1,[[989,1,1,0,1]]],[65,6,6,1,7,[[1175,2,2,1,3],[1180,1,1,3,4],[1185,1,1,4,5],[1186,1,1,5,6],[1187,1,1,6,7]]]],[25680,30857,30858,30936,31037,31048,31061]]]]},{"k":"G2304","v":[["*",[3,3,[[43,1,1,0,1,[[1034,1,1,0,1]]],[60,2,2,1,3,[[1156,2,2,1,3]]]],[27552,30482,30483]]],["Godhead",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27552]]],["divine",[2,2,[[60,2,2,0,2,[[1156,2,2,0,2]]]],[30482,30483]]]]},{"k":"G2305","v":[["Godhead",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27950]]]]},{"k":"G2306","v":[["brimstone",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30857]]]]},{"k":"G2307","v":[["*",[64,60,[[39,6,6,0,6,[[934,1,1,0,1],[935,1,1,1,2],[940,1,1,2,3],[946,1,1,3,4],[949,1,1,4,5],[954,1,1,5,6]]],[40,1,1,6,7,[[959,1,1,6,7]]],[41,5,4,7,11,[[983,1,1,7,8],[984,2,1,8,9],[994,1,1,9,10],[995,1,1,10,11]]],[42,11,8,11,19,[[997,2,1,11,12],[1000,1,1,12,13],[1001,2,1,13,14],[1002,4,3,14,17],[1003,1,1,17,18],[1005,1,1,18,19]]],[43,3,3,19,22,[[1030,1,1,19,20],[1038,1,1,20,21],[1039,1,1,21,22]]],[44,4,4,22,26,[[1046,1,1,22,23],[1047,1,1,23,24],[1057,1,1,24,25],[1060,1,1,25,26]]],[45,3,3,26,29,[[1062,1,1,26,27],[1068,1,1,27,28],[1077,1,1,28,29]]],[46,2,2,29,31,[[1078,1,1,29,30],[1085,1,1,30,31]]],[47,1,1,31,32,[[1091,1,1,31,32]]],[48,7,7,32,39,[[1097,4,4,32,36],[1098,1,1,36,37],[1101,1,1,37,38],[1102,1,1,38,39]]],[50,3,3,39,42,[[1107,2,2,39,41],[1110,1,1,41,42]]],[51,2,2,42,44,[[1114,1,1,42,43],[1115,1,1,43,44]]],[54,2,2,44,46,[[1125,1,1,44,45],[1126,1,1,45,46]]],[57,5,5,46,51,[[1142,4,4,46,50],[1145,1,1,50,51]]],[59,5,5,51,56,[[1152,1,1,51,52],[1153,1,1,52,53],[1154,3,3,53,56]]],[60,1,1,56,57,[[1156,1,1,56,57]]],[61,2,2,57,59,[[1160,1,1,57,58],[1163,1,1,58,59]]],[65,1,1,59,60,[[1170,1,1,59,60]]]],[23292,23337,23539,23741,23857,24096,24323,25407,25506,25906,25960,26057,26190,26240,26295,26296,26297,26345,26471,27384,27678,27718,27940,27980,28247,28335,28364,28524,28788,28801,28937,29061,29207,29211,29215,29217,29232,29321,29343,29466,29474,29554,29606,29639,29810,29853,30140,30142,30143,30169,30262,30414,30441,30448,30449,30465,30500,30567,30638,30779]]],["desires",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29232]]],["pleasure",[1,1,[[65,1,1,0,1,[[1170,1,1,0,1]]]],[30779]]],["will",[62,58,[[39,6,6,0,6,[[934,1,1,0,1],[935,1,1,1,2],[940,1,1,2,3],[946,1,1,3,4],[949,1,1,4,5],[954,1,1,5,6]]],[40,1,1,6,7,[[959,1,1,6,7]]],[41,5,4,7,11,[[983,1,1,7,8],[984,2,1,8,9],[994,1,1,9,10],[995,1,1,10,11]]],[42,11,8,11,19,[[997,2,1,11,12],[1000,1,1,12,13],[1001,2,1,13,14],[1002,4,3,14,17],[1003,1,1,17,18],[1005,1,1,18,19]]],[43,3,3,19,22,[[1030,1,1,19,20],[1038,1,1,20,21],[1039,1,1,21,22]]],[44,4,4,22,26,[[1046,1,1,22,23],[1047,1,1,23,24],[1057,1,1,24,25],[1060,1,1,25,26]]],[45,3,3,26,29,[[1062,1,1,26,27],[1068,1,1,27,28],[1077,1,1,28,29]]],[46,2,2,29,31,[[1078,1,1,29,30],[1085,1,1,30,31]]],[47,1,1,31,32,[[1091,1,1,31,32]]],[48,6,6,32,38,[[1097,4,4,32,36],[1101,1,1,36,37],[1102,1,1,37,38]]],[50,3,3,38,41,[[1107,2,2,38,40],[1110,1,1,40,41]]],[51,2,2,41,43,[[1114,1,1,41,42],[1115,1,1,42,43]]],[54,2,2,43,45,[[1125,1,1,43,44],[1126,1,1,44,45]]],[57,5,5,45,50,[[1142,4,4,45,49],[1145,1,1,49,50]]],[59,5,5,50,55,[[1152,1,1,50,51],[1153,1,1,51,52],[1154,3,3,52,55]]],[60,1,1,55,56,[[1156,1,1,55,56]]],[61,2,2,56,58,[[1160,1,1,56,57],[1163,1,1,57,58]]]],[23292,23337,23539,23741,23857,24096,24323,25407,25506,25906,25960,26057,26190,26240,26295,26296,26297,26345,26471,27384,27678,27718,27940,27980,28247,28335,28364,28524,28788,28801,28937,29061,29207,29211,29215,29217,29321,29343,29466,29474,29554,29606,29639,29810,29853,30140,30142,30143,30169,30262,30414,30441,30448,30449,30465,30500,30567,30638]]]]},{"k":"G2308","v":[["will",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29981]]]]},{"k":"G2309","v":[["*",[210,201,[[39,42,41,0,41,[[929,1,1,0,1],[930,1,1,1,2],[933,2,2,2,4],[935,1,1,4,5],[936,2,2,5,7],[937,1,1,7,8],[939,1,1,8,9],[940,2,2,9,11],[941,1,1,11,12],[942,1,1,12,13],[943,2,2,13,15],[944,2,2,15,17],[945,2,2,17,19],[946,2,2,19,21],[947,2,2,21,23],[948,6,6,23,29],[949,1,1,29,30],[950,1,1,30,31],[951,3,2,31,33],[954,3,3,33,36],[955,5,5,36,41]]],[40,25,25,41,66,[[957,2,2,41,43],[959,1,1,43,44],[962,5,5,44,49],[963,1,1,49,50],[964,2,2,50,52],[965,3,3,52,55],[966,5,5,55,60],[968,1,1,60,61],[970,3,3,61,64],[971,2,2,64,66]]],[41,28,27,66,93,[[973,1,1,66,67],[976,1,1,67,68],[977,3,3,68,71],[978,1,1,71,72],[980,1,1,72,73],[981,3,3,73,76],[982,2,2,76,78],[984,1,1,78,79],[985,3,2,79,81],[986,1,1,81,82],[987,1,1,82,83],[988,1,1,83,84],[990,3,3,84,87],[991,2,2,87,89],[992,1,1,89,90],[994,1,1,90,91],[995,2,2,91,93]]],[42,23,21,93,114,[[997,1,1,93,94],[999,1,1,94,95],[1001,4,4,95,99],[1002,3,3,99,102],[1003,3,3,102,105],[1004,1,1,105,106],[1005,2,1,106,107],[1008,1,1,107,108],[1011,1,1,108,109],[1012,1,1,109,110],[1013,1,1,110,111],[1017,4,3,111,114]]],[43,16,15,114,129,[[1019,1,1,114,115],[1024,2,2,115,117],[1026,1,1,117,118],[1027,1,1,118,119],[1031,1,1,119,120],[1033,1,1,120,121],[1034,2,2,121,123],[1035,1,1,123,124],[1036,1,1,124,125],[1041,2,2,125,127],[1042,2,1,127,128],[1043,1,1,128,129]]],[44,15,13,129,142,[[1046,1,1,129,130],[1052,7,6,130,136],[1054,4,3,136,139],[1056,1,1,139,140],[1058,1,1,140,141],[1061,1,1,141,142]]],[45,17,17,142,159,[[1065,2,2,142,144],[1068,4,4,144,148],[1071,3,3,148,151],[1072,1,1,151,152],[1073,2,2,152,154],[1075,3,3,154,157],[1076,1,1,157,158],[1077,1,1,158,159]]],[46,9,8,159,167,[[1078,1,1,159,160],[1082,1,1,160,161],[1085,2,2,161,163],[1088,2,2,163,165],[1089,3,2,165,167]]],[47,9,9,167,176,[[1091,1,1,167,168],[1093,1,1,168,169],[1094,4,4,169,173],[1095,1,1,173,174],[1096,2,2,174,176]]],[49,1,1,176,177,[[1104,1,1,176,177]]],[50,3,3,177,180,[[1107,1,1,177,178],[1108,2,2,178,180]]],[51,2,2,180,182,[[1112,1,1,180,181],[1114,1,1,181,182]]],[52,1,1,182,183,[[1118,1,1,182,183]]],[53,3,3,183,186,[[1119,1,1,183,184],[1120,1,1,184,185],[1123,1,1,185,186]]],[54,1,1,186,187,[[1127,1,1,186,187]]],[56,1,1,187,188,[[1132,1,1,187,188]]],[57,4,4,188,192,[[1142,2,2,188,190],[1144,1,1,190,191],[1145,1,1,191,192]]],[58,2,2,192,194,[[1147,1,1,192,193],[1149,1,1,193,194]]],[59,2,2,194,196,[[1153,2,2,194,196]]],[60,1,1,196,197,[[1158,1,1,196,197]]],[63,1,1,197,198,[[1165,1,1,197,198]]],[65,4,3,198,201,[[1177,3,2,198,200],[1188,1,1,200,201]]]],[23163,23187,23274,23276,23328,23347,23348,23392,23473,23496,23527,23567,23602,23661,23665,23696,23697,23704,23712,23750,23757,23779,23783,23806,23807,23813,23818,23819,23824,23855,23875,23922,23955,24069,24071,24093,24144,24146,24150,24163,24172,24255,24256,24301,24426,24429,24432,24433,24455,24487,24534,24535,24551,24568,24573,24623,24624,24631,24632,24639,24711,24761,24766,24790,24835,24838,24955,25069,25119,25120,25146,25177,25265,25324,25325,25355,25387,25392,25508,25549,25552,25581,25616,25646,25692,25701,25729,25745,25758,25825,25873,25943,25955,26087,26128,26216,26231,26245,26250,26268,26278,26324,26329,26345,26372,26425,26467,26601,26706,26745,26783,26916,26920,26921,26961,27144,27155,27222,27269,27427,27486,27541,27543,27578,27618,27775,27796,27805,27828,27943,28106,28107,28109,28110,28111,28112,28171,28173,28177,28234,28269,28355,28452,28454,28494,28519,28523,28526,28568,28587,28594,28603,28635,28652,28683,28697,28713,28756,28783,28808,28881,28942,28943,29001,29021,29028,29042,29064,29104,29140,29148,29151,29152,29179,29200,29201,29404,29492,29495,29512,29588,29616,29688,29703,29720,29774,29865,29952,30138,30141,30229,30259,30313,30352,30434,30441,30527,30671,30877,30878,31097]]],["+",[9,9,[[41,1,1,0,1,[[973,1,1,0,1]]],[42,2,2,1,3,[[1002,1,1,1,2],[1005,1,1,2,3]]],[43,4,4,3,7,[[1019,1,1,3,4],[1024,1,1,4,5],[1034,2,2,5,7]]],[50,1,1,7,8,[[1108,1,1,7,8]]],[65,1,1,8,9,[[1177,1,1,8,9]]]],[24955,26324,26467,26961,27144,27541,27543,29512,30878]]],["Desiring",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29703]]],["Will",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24835]]],["Wilt",[4,4,[[39,1,1,0,1,[[941,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[43,1,1,2,3,[[1042,1,1,2,3]]],[44,1,1,3,4,[[1058,1,1,3,4]]]],[23567,26216,27805,28269]]],["be",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30441]]],["desire",[9,9,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[992,1,1,1,2]]],[46,2,2,2,4,[[1088,1,1,2,3],[1089,1,1,3,4]]],[47,5,5,4,9,[[1094,3,3,4,7],[1096,2,2,7,9]]]],[24573,25825,29001,29028,29140,29151,29152,29200,29201]]],["desired",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25387]]],["desireth",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25146]]],["desiring",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25265]]],["desirous",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[42,1,1,1,2,[[1012,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]]],[25943,26745,29021]]],["disposed",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28594]]],["forward",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28942]]],["had",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28697]]],["have",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25745]]],["intending",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25581]]],["listed",[2,2,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]]],[23712,24551]]],["listeth",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26128]]],["love",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24711]]],["pleased",[2,2,[[45,2,2,0,2,[[1073,1,1,0,1],[1076,1,1,1,2]]]],[28652,28756]]],["will",[64,62,[[39,20,20,0,20,[[933,1,1,0,1],[936,1,1,1,2],[937,1,1,2,3],[939,1,1,3,4],[940,1,1,4,5],[943,1,1,5,6],[944,2,2,6,8],[948,5,5,8,13],[949,1,1,13,14],[951,1,1,14,15],[954,2,2,15,17],[955,3,3,17,20]]],[40,9,9,20,29,[[957,1,1,20,21],[962,1,1,21,22],[964,2,2,22,24],[966,2,2,24,26],[970,2,2,26,28],[971,1,1,28,29]]],[41,6,6,29,35,[[976,1,1,29,30],[977,1,1,30,31],[981,2,2,31,33],[984,1,1,33,34],[985,1,1,34,35]]],[42,8,8,35,43,[[1001,2,2,35,37],[1003,1,1,37,38],[1004,1,1,38,39],[1011,1,1,39,40],[1013,1,1,40,41],[1017,2,2,41,43]]],[43,1,1,43,44,[[1035,1,1,43,44]]],[44,3,2,44,46,[[1052,1,1,44,45],[1054,2,1,45,46]]],[45,6,6,46,52,[[1065,2,2,46,48],[1068,2,2,48,50],[1075,1,1,50,51],[1077,1,1,51,52]]],[46,1,1,52,53,[[1085,1,1,52,53]]],[49,1,1,53,54,[[1104,1,1,53,54]]],[53,2,2,54,56,[[1120,1,1,54,55],[1123,1,1,55,56]]],[54,1,1,56,57,[[1127,1,1,56,57]]],[58,1,1,57,58,[[1149,1,1,57,58]]],[59,1,1,58,59,[[1153,1,1,58,59]]],[63,1,1,59,60,[[1165,1,1,59,60]]],[65,3,2,60,62,[[1177,2,1,60,61],[1188,1,1,61,62]]]],[23274,23348,23392,23473,23496,23665,23696,23697,23806,23807,23818,23819,23824,23855,23922,24069,24093,24146,24150,24172,24256,24432,24534,24535,24631,24632,24761,24790,24838,25069,25120,25324,25325,25508,25549,26231,26250,26345,26425,26706,26783,26920,26921,27578,28109,28173,28452,28454,28523,28526,28713,28783,28943,29404,29720,29774,29865,30352,30434,30671,30877,31097]]],["willeth",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28171]]],["willing",[8,8,[[39,1,1,0,1,[[929,1,1,0,1]]],[41,2,2,1,3,[[982,1,1,1,2],[995,1,1,2,3]]],[42,1,1,3,4,[[1001,1,1,3,4]]],[43,2,2,4,6,[[1041,1,1,4,5],[1042,1,1,5,6]]],[44,1,1,6,7,[[1054,1,1,6,7]]],[57,1,1,7,8,[[1145,1,1,7,8]]]],[23163,25392,25955,26245,27796,27805,28177,30259]]],["willingly",[2,2,[[42,1,1,0,1,[[1002,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[26278,30527]]],["wilt",[17,17,[[39,7,7,0,7,[[936,1,1,0,1],[943,1,1,1,2],[945,1,1,2,3],[947,2,2,3,5],[948,1,1,5,6],[954,1,1,6,7]]],[40,4,4,7,11,[[957,1,1,7,8],[962,1,1,8,9],[966,1,1,9,10],[970,1,1,10,11]]],[41,4,4,11,15,[[977,1,1,11,12],[981,1,1,12,13],[990,1,1,13,14],[994,1,1,14,15]]],[43,1,1,15,16,[[1026,1,1,15,16]]],[58,1,1,16,17,[[1147,1,1,16,17]]]],[23347,23661,23704,23779,23783,23813,24071,24255,24429,24639,24766,25119,25355,25729,25873,27222,30313]]],["would",[72,68,[[39,12,11,0,11,[[930,1,1,0,1],[933,1,1,1,2],[935,1,1,2,3],[940,1,1,3,4],[942,1,1,4,5],[946,2,2,5,7],[950,1,1,7,8],[951,2,1,8,9],[955,2,2,9,11]]],[40,8,8,11,19,[[959,1,1,11,12],[962,3,3,12,15],[963,1,1,15,16],[965,1,1,16,17],[966,2,2,17,19]]],[41,8,7,19,26,[[978,1,1,19,20],[985,2,1,20,21],[987,1,1,21,22],[988,1,1,22,23],[990,2,2,23,25],[991,1,1,25,26]]],[42,6,6,26,32,[[997,1,1,26,27],[1002,1,1,27,28],[1003,2,2,28,30],[1005,1,1,30,31],[1008,1,1,31,32]]],[43,7,7,32,39,[[1024,1,1,32,33],[1027,1,1,33,34],[1031,1,1,34,35],[1033,1,1,35,36],[1036,1,1,36,37],[1041,1,1,37,38],[1043,1,1,38,39]]],[44,9,8,39,47,[[1046,1,1,39,40],[1052,6,5,40,45],[1056,1,1,45,46],[1061,1,1,46,47]]],[45,7,7,47,54,[[1068,2,2,47,49],[1071,2,2,49,51],[1072,1,1,51,52],[1073,1,1,52,53],[1075,1,1,53,54]]],[46,4,3,54,57,[[1078,1,1,54,55],[1082,1,1,55,56],[1089,2,1,56,57]]],[47,4,4,57,61,[[1091,1,1,57,58],[1093,1,1,58,59],[1094,1,1,59,60],[1095,1,1,60,61]]],[50,2,2,61,63,[[1107,1,1,61,62],[1108,1,1,62,63]]],[51,2,2,63,65,[[1112,1,1,63,64],[1114,1,1,64,65]]],[52,1,1,65,66,[[1118,1,1,65,66]]],[56,1,1,66,67,[[1132,1,1,66,67]]],[57,1,1,67,68,[[1144,1,1,67,68]]]],[23187,23276,23328,23527,23602,23750,23757,23875,23955,24144,24163,24301,24426,24433,24455,24487,24568,24623,24624,25177,25552,25616,25646,25692,25701,25758,26087,26268,26329,26372,26467,26601,27155,27269,27427,27486,27618,27775,27828,27943,28106,28107,28110,28111,28112,28234,28355,28494,28519,28568,28587,28603,28635,28683,28808,28881,29042,29064,29104,29148,29179,29492,29495,29588,29616,29688,29952,30229]]],["wouldest",[4,3,[[42,2,1,0,1,[[1017,2,1,0,1]]],[57,2,2,1,3,[[1142,2,2,1,3]]]],[26916,30138,30141]]]]},{"k":"G2310","v":[["*",[16,15,[[41,3,3,0,3,[[978,2,2,0,2],[986,1,1,2,3]]],[43,1,1,3,4,[[1033,1,1,3,4]]],[44,1,1,4,5,[[1060,1,1,4,5]]],[45,3,3,5,8,[[1064,3,3,5,8]]],[48,1,1,8,9,[[1098,1,1,8,9]]],[53,1,1,9,10,[[1124,1,1,9,10]]],[54,1,1,10,11,[[1126,1,1,10,11]]],[57,2,2,11,13,[[1138,1,1,11,12],[1143,1,1,12,13]]],[65,3,2,13,15,[[1187,3,2,13,15]]]],[25194,25195,25582,27509,28323,28420,28421,28422,29249,29807,29846,30045,30182,31067,31072]]],["foundation",[12,12,[[41,3,3,0,3,[[978,2,2,0,2],[986,1,1,2,3]]],[44,1,1,3,4,[[1060,1,1,3,4]]],[45,3,3,4,7,[[1064,3,3,4,7]]],[48,1,1,7,8,[[1098,1,1,7,8]]],[53,1,1,8,9,[[1124,1,1,8,9]]],[54,1,1,9,10,[[1126,1,1,9,10]]],[57,1,1,10,11,[[1138,1,1,10,11]]],[65,1,1,11,12,[[1187,1,1,11,12]]]],[25194,25195,25582,28323,28420,28421,28422,29249,29807,29846,30045,31072]]],["foundations",[4,4,[[43,1,1,0,1,[[1033,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]],[65,2,2,2,4,[[1187,2,2,2,4]]]],[27509,30182,31067,31072]]]]},{"k":"G2311","v":[["*",[6,6,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[48,1,1,2,3,[[1099,1,1,2,3]]],[50,1,1,3,4,[[1107,1,1,3,4]]],[57,1,1,4,5,[[1133,1,1,4,5]]],[59,1,1,5,6,[[1155,1,1,5,6]]]],[23341,25194,29268,29488,29973,30475]]],["foundation",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29973]]],["founded",[2,2,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]]],[23341,25194]]],["grounded",[2,2,[[48,1,1,0,1,[[1099,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[29268,29488]]],["settle",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30475]]]]},{"k":"G2312","v":[["God",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29612]]]]},{"k":"G2313","v":[["God",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27743]]]]},{"k":"G2314","v":[["God",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27098]]]]},{"k":"G2315","v":[["God",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29869]]]]},{"k":"G2316","v":[["*",[1343,1172,[[39,55,46,0,46,[[929,1,1,0,1],[931,2,2,1,3],[932,5,5,3,8],[933,3,3,8,11],[934,3,3,11,14],[936,1,1,14,15],[937,1,1,15,16],[940,3,2,16,18],[942,1,1,18,19],[943,4,4,19,23],[944,2,2,23,25],[947,4,4,25,29],[949,3,3,29,32],[950,12,7,32,39],[951,1,1,39,40],[954,3,2,40,42],[955,6,4,42,46]]],[40,52,44,46,90,[[957,4,4,46,50],[958,3,3,50,53],[959,2,2,53,55],[960,3,3,55,58],[961,2,1,58,59],[963,3,3,59,62],[964,1,1,62,63],[965,2,2,63,65],[966,10,9,65,74],[967,1,1,74,75],[968,14,9,75,84],[969,1,1,84,85],[970,1,1,85,86],[971,4,3,86,89],[972,1,1,89,90]]],[41,124,116,90,206,[[973,13,13,90,103],[974,6,6,103,109],[975,4,4,109,113],[976,8,8,113,121],[977,4,4,121,125],[978,3,3,125,128],[979,5,4,128,132],[980,6,6,132,138],[981,7,7,138,145],[982,3,3,145,148],[983,5,4,148,152],[984,8,8,152,160],[985,5,5,160,165],[986,1,1,165,166],[987,1,1,166,167],[988,4,3,167,170],[989,5,4,170,174],[990,14,13,174,187],[991,2,2,187,189],[992,8,5,189,194],[993,2,2,194,196],[994,4,4,196,200],[995,4,4,200,204],[996,2,2,204,206]]],[42,84,70,206,276,[[997,12,11,206,217],[999,13,10,217,227],[1000,2,2,227,229],[1001,5,4,229,233],[1002,7,7,233,240],[1003,1,1,240,241],[1004,8,5,241,246],[1005,7,7,246,253],[1006,5,4,253,257],[1007,7,5,257,262],[1008,1,1,262,263],[1009,5,3,263,266],[1010,1,1,266,267],[1012,3,3,267,270],[1013,1,1,270,271],[1015,1,1,271,272],[1016,4,3,272,275],[1017,1,1,275,276]]],[43,171,157,276,433,[[1018,1,1,276,277],[1019,12,11,277,288],[1020,10,9,288,297],[1021,7,5,297,302],[1022,6,6,302,308],[1023,3,3,308,311],[1024,21,16,311,327],[1025,7,7,327,334],[1026,1,1,334,335],[1027,17,14,335,349],[1028,7,5,349,354],[1029,4,4,354,358],[1030,14,14,358,372],[1031,5,5,372,377],[1032,9,9,377,386],[1033,4,4,386,390],[1034,5,5,390,395],[1035,5,5,395,400],[1036,3,3,400,403],[1037,6,6,403,409],[1038,1,1,409,410],[1039,2,2,410,412],[1040,3,3,412,415],[1041,3,3,415,418],[1043,6,6,418,424],[1044,4,4,424,428],[1045,5,5,428,433]]],[44,153,135,433,568,[[1046,21,17,433,450],[1047,11,11,450,461],[1048,17,15,461,476],[1049,6,5,476,481],[1050,7,7,481,488],[1051,7,6,488,494],[1052,4,3,494,497],[1053,18,15,497,512],[1054,9,9,512,521],[1055,6,5,521,526],[1056,11,10,526,536],[1057,4,3,536,539],[1058,6,4,539,543],[1059,10,9,543,552],[1060,13,13,552,565],[1061,3,3,565,568]]],[45,106,86,568,654,[[1062,20,14,568,582],[1063,12,8,582,590],[1064,13,8,590,598],[1065,4,4,598,602],[1066,1,1,602,603],[1067,8,7,603,610],[1068,6,6,610,616],[1069,6,5,616,621],[1070,2,2,621,623],[1071,5,5,623,628],[1072,6,6,628,634],[1073,5,5,634,639],[1075,7,6,639,645],[1076,11,9,645,654]]],[46,79,65,654,719,[[1078,15,11,654,665],[1079,5,3,665,668],[1080,3,3,668,671],[1081,8,5,671,676],[1082,9,8,676,684],[1083,7,4,684,688],[1084,6,6,688,694],[1085,3,3,694,697],[1086,7,7,697,704],[1087,3,3,704,707],[1088,4,4,707,711],[1089,4,4,711,715],[1090,5,4,715,719]]],[47,31,29,719,748,[[1091,8,8,719,727],[1092,4,4,727,731],[1093,8,8,731,739],[1094,8,6,739,745],[1095,1,1,745,746],[1096,2,2,746,748]]],[48,32,32,748,780,[[1097,4,4,748,752],[1098,6,6,752,758],[1099,5,5,758,763],[1100,6,6,763,769],[1101,6,6,769,775],[1102,5,5,775,780]]],[49,23,22,780,802,[[1103,5,5,780,785],[1104,7,6,785,791],[1105,5,5,791,796],[1106,6,6,796,802]]],[50,22,21,802,823,[[1107,9,8,802,810],[1108,3,3,810,813],[1109,7,7,813,820],[1110,3,3,820,823]]],[51,37,30,823,853,[[1111,8,6,823,829],[1112,14,10,829,839],[1113,5,4,839,843],[1114,7,7,843,850],[1115,3,3,850,853]]],[52,19,14,853,867,[[1116,10,9,853,862],[1117,8,4,862,866],[1118,1,1,866,867]]],[53,23,21,867,888,[[1119,5,5,867,872],[1120,3,2,872,874],[1121,4,3,874,877],[1122,4,4,877,881],[1123,3,3,881,884],[1124,4,4,884,888]]],[54,12,12,888,900,[[1125,6,6,888,894],[1126,4,4,894,898],[1127,1,1,898,899],[1128,1,1,899,900]]],[55,13,12,900,912,[[1129,7,6,900,906],[1130,4,4,906,910],[1131,2,2,910,912]]],[56,2,2,912,914,[[1132,2,2,912,914]]],[57,69,64,914,978,[[1133,5,4,914,918],[1134,4,4,918,922],[1135,2,2,922,924],[1136,5,5,924,929],[1137,4,4,929,933],[1138,9,9,933,942],[1139,4,4,942,946],[1140,1,1,946,947],[1141,4,3,947,950],[1142,7,7,950,957],[1143,12,9,957,966],[1144,7,7,966,973],[1145,5,5,973,978]]],[58,17,13,978,991,[[1146,6,5,978,983],[1147,4,3,983,986],[1148,2,1,986,987],[1149,5,4,987,991]]],[59,39,35,991,1026,[[1151,6,5,991,996],[1152,9,9,996,1005],[1153,8,8,1005,1013],[1154,11,8,1013,1021],[1155,5,5,1021,1026]]],[60,7,7,1026,1033,[[1156,4,4,1026,1030],[1157,1,1,1030,1031],[1158,2,2,1031,1033]]],[61,64,41,1033,1074,[[1159,1,1,1033,1034],[1160,3,3,1034,1037],[1161,11,9,1037,1046],[1162,29,15,1046,1061],[1163,20,13,1061,1074]]],[62,2,2,1074,1076,[[1164,2,2,1074,1076]]],[63,3,2,1076,1078,[[1165,3,2,1076,1078]]],[64,5,4,1078,1082,[[1166,5,4,1078,1082]]],[65,99,90,1082,1172,[[1167,4,4,1082,1086],[1168,2,2,1086,1088],[1169,7,4,1088,1092],[1170,2,2,1092,1094],[1171,3,3,1094,1097],[1172,1,1,1097,1098],[1173,7,7,1098,1105],[1174,2,2,1105,1107],[1175,2,2,1107,1109],[1176,1,1,1109,1110],[1177,8,7,1110,1117],[1178,5,4,1117,1121],[1179,1,1,1121,1122],[1180,6,6,1122,1128],[1181,6,5,1128,1133],[1182,7,7,1133,1140],[1183,2,1,1140,1141],[1184,3,3,1141,1144],[1185,9,9,1144,1153],[1186,4,4,1153,1157],[1187,10,8,1157,1165],[1188,7,7,1165,1172]]]],[23167,23201,23208,23212,23213,23215,23216,23219,23242,23243,23268,23306,23312,23315,23374,23387,23493,23517,23630,23636,23637,23639,23664,23688,23695,23768,23779,23786,23788,23838,23857,23869,23888,23893,23901,23902,23903,23904,23909,23940,24115,24117,24169,24172,24175,24183,24216,24229,24230,24239,24267,24272,24286,24299,24323,24334,24349,24353,24371,24471,24472,24476,24533,24539,24585,24594,24597,24602,24603,24606,24611,24612,24613,24615,24662,24687,24690,24697,24699,24700,24702,24703,24705,24707,24736,24779,24860,24865,24869,24892,24899,24901,24909,24912,24919,24923,24925,24928,24930,24940,24957,24961,24971,24986,24987,24993,25001,25013,25025,25027,25031,25033,25063,25066,25067,25071,25072,25075,25097,25104,25106,25108,25128,25132,25133,25150,25158,25166,25211,25223,25224,25225,25246,25255,25256,25266,25273,25284,25303,25312,25321,25328,25344,25361,25363,25372,25374,25390,25425,25433,25447,25454,25465,25467,25468,25479,25480,25483,25487,25490,25531,25536,25538,25546,25547,25568,25598,25633,25635,25636,25666,25669,25671,25672,25690,25692,25695,25699,25701,25704,25705,25707,25712,25713,25715,25717,25731,25742,25768,25800,25804,25815,25816,25817,25830,25857,25880,25882,25933,25934,25970,25975,25982,25986,26010,26044,26045,26046,26050,26056,26057,26062,26073,26078,26080,26093,26095,26122,26123,26125,26136,26137,26138,26141,26153,26154,26156,26166,26180,26228,26235,26252,26254,26284,26285,26286,26290,26302,26303,26326,26345,26421,26422,26423,26428,26435,26443,26456,26464,26469,26471,26473,26475,26514,26515,26516,26517,26527,26545,26550,26563,26575,26623,26633,26661,26662,26669,26728,26753,26756,26762,26832,26884,26895,26898,26917,26926,26960,26966,26971,26972,26973,26979,26981,26982,26985,26988,26996,27004,27005,27009,27011,27014,27017,27018,27021,27022,27032,27041,27043,27046,27053,27063,27088,27089,27090,27091,27098,27103,27108,27112,27118,27122,27123,27125,27133,27141,27148,27151,27153,27156,27158,27159,27161,27162,27171,27172,27186,27188,27190,27196,27197,27198,27213,27236,27261,27262,27263,27274,27281,27287,27290,27292,27293,27297,27299,27300,27301,27305,27308,27316,27324,27325,27330,27342,27359,27360,27361,27367,27369,27378,27379,27383,27385,27388,27392,27395,27398,27399,27405,27406,27408,27425,27429,27436,27440,27441,27446,27449,27450,27452,27454,27456,27460,27461,27482,27497,27500,27508,27517,27536,27546,27547,27552,27553,27564,27568,27570,27578,27583,27593,27596,27611,27647,27650,27651,27653,27654,27658,27683,27707,27718,27735,27737,27738,27783,27784,27785,27829,27831,27841,27843,27845,27852,27878,27879,27880,27890,27905,27914,27922,27927,27930,27931,27934,27937,27938,27939,27940,27946,27947,27948,27949,27951,27953,27954,27955,27956,27958,27962,27964,27965,27966,27967,27973,27975,27978,27979,27985,27986,27991,27993,27994,27995,27996,27997,27998,28002,28009,28010,28012,28013,28014,28016,28020,28021,28024,28025,28028,28039,28042,28048,28049,28052,28055,28057,28058,28062,28078,28079,28081,28085,28090,28091,28095,28113,28116,28119,28123,28124,28125,28130,28132,28133,28135,28137,28143,28144,28147,28149,28150,28155,28160,28161,28163,28166,28169,28171,28175,28177,28181,28189,28190,28191,28197,28205,28210,28211,28217,28230,28231,28232,28238,28239,28241,28242,28246,28247,28248,28267,28268,28270,28272,28283,28284,28286,28291,28292,28297,28298,28300,28302,28308,28309,28310,28311,28312,28316,28318,28319,28320,28322,28333,28335,28336,28356,28362,28363,28364,28365,28366,28367,28372,28377,28381,28383,28384,28387,28388,28390,28391,28393,28395,28399,28401,28403,28404,28405,28406,28408,28416,28417,28419,28420,28426,28427,28429,28433,28434,28438,28442,28453,28467,28476,28477,28478,28480,28481,28486,28487,28494,28502,28504,28506,28511,28527,28530,28531,28532,28533,28535,28549,28561,28572,28580,28587,28598,28599,28603,28607,28612,28613,28616,28622,28637,28640,28652,28658,28662,28680,28696,28703,28706,28711,28714,28727,28728,28733,28742,28746,28752,28756,28768,28775,28801,28802,28803,28804,28809,28812,28818,28819,28820,28821,28823,28838,28839,28841,28844,28845,28846,28861,28863,28865,28866,28874,28878,28882,28888,28890,28895,28896,28897,28898,28899,28902,28905,28914,28917,28922,28925,28926,28927,28928,28933,28937,28948,28963,28964,28967,28968,28969,28970,28971,28975,28976,28984,28991,28996,29000,29020,29024,29025,29041,29043,29047,29050,29054,29057,29058,29060,29061,29067,29070,29072,29077,29081,29087,29100,29101,29102,29108,29110,29113,29119,29120,29122,29123,29128,29135,29137,29138,29139,29140,29145,29183,29195,29204,29207,29208,29209,29223,29233,29237,29239,29245,29248,29251,29253,29258,29260,29261,29270,29278,29285,29290,29296,29302,29304,29305,29306,29309,29310,29324,29325,29343,29348,29350,29354,29360,29363,29364,29369,29372,29389,29397,29400,29402,29404,29406,29418,29424,29430,29435,29436,29440,29448,29449,29451,29460,29461,29462,29466,29467,29468,29471,29475,29480,29490,29492,29496,29506,29513,29518,29520,29523,29529,29532,29534,29539,29545,29553,29554,29561,29562,29563,29564,29568,29569,29572,29574,29575,29578,29579,29580,29582,29583,29584,29585,29592,29599,29601,29603,29604,29606,29608,29610,29611,29617,29619,29630,29639,29644,29650,29651,29652,29653,29654,29655,29657,29660,29661,29665,29672,29674,29677,29683,29697,29698,29700,29707,29713,29719,29721,29736,29746,29747,29750,29751,29752,29757,29767,29768,29784,29789,29799,29801,29805,29810,29811,29812,29815,29816,29817,29836,29842,29846,29852,29870,29871,29893,29894,29895,29896,29899,29908,29913,29918,29919,29921,29927,29931,29941,29942,29964,29969,29971,29972,29981,29986,29990,29994,29999,30007,30018,30023,30024,30026,30028,30031,30034,30040,30042,30045,30047,30049,30050,30051,30054,30057,30061,30062,30065,30067,30083,30089,30102,30119,30125,30129,30140,30142,30145,30154,30162,30164,30169,30175,30176,30177,30178,30182,30188,30191,30197,30212,30214,30219,30227,30234,30235,30240,30241,30245,30248,30256,30257,30261,30267,30271,30279,30286,30293,30298,30312,30316,30328,30341,30343,30344,30345,30376,30377,30379,30395,30397,30403,30404,30409,30411,30414,30415,30416,30418,30419,30428,30429,30439,30441,30442,30444,30445,30446,30448,30452,30456,30457,30460,30462,30463,30465,30467,30470,30471,30475,30477,30480,30481,30496,30500,30504,30527,30534,30545,30555,30564,30567,30580,30581,30587,30588,30589,30595,30596,30599,30600,30604,30605,30606,30607,30609,30610,30611,30612,30613,30614,30615,30618,30619,30623,30624,30625,30626,30627,30628,30629,30633,30634,30635,30636,30637,30642,30643,30644,30648,30654,30664,30669,30673,30676,30693,30697,30698,30699,30703,30706,30724,30735,30747,30748,30758,30760,30773,30776,30785,30788,30789,30802,30812,30813,30820,30821,30822,30825,30827,30829,30831,30844,30853,30868,30873,30876,30883,30885,30888,30889,30891,30896,30897,30901,30908,30914,30930,30931,30933,30936,30938,30945,30947,30948,30949,30953,30954,30955,30961,30963,30965,30968,30973,30975,30992,30998,31001,31013,31018,31021,31022,31023,31026,31027,31030,31032,31034,31042,31044,31047,31050,31055,31056,31057,31060,31063,31064,31075,31076,31081,31083,31085,31086,31089,31098,31099]]],["+",[22,21,[[39,2,2,0,2,[[943,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[963,1,1,2,3]]],[41,2,2,3,5,[[977,1,1,3,4],[990,1,1,4,5]]],[42,1,1,5,6,[[1004,1,1,5,6]]],[43,1,1,6,7,[[1045,1,1,6,7]]],[44,5,4,7,11,[[1048,1,1,7,8],[1051,1,1,8,9],[1058,1,1,9,10],[1059,2,1,10,11]]],[46,4,4,11,15,[[1081,1,1,11,12],[1084,3,3,12,15]]],[47,1,1,15,16,[[1091,1,1,15,16]]],[51,1,1,16,17,[[1113,1,1,16,17]]],[54,1,1,17,18,[[1126,1,1,17,18]]],[55,1,1,18,19,[[1131,1,1,18,19]]],[57,1,1,19,20,[[1138,1,1,19,20]]],[63,1,1,20,21,[[1165,1,1,20,21]]]],[23639,23857,24476,25108,25717,26423,27922,27994,28085,28267,28286,28861,28925,28926,28927,29077,29599,29852,29927,30050,30664]]],["GOD",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27546]]],["God",[1288,1137,[[39,51,43,0,43,[[929,1,1,0,1],[931,2,2,1,3],[932,5,5,3,8],[933,2,2,8,10],[934,3,3,10,13],[936,1,1,13,14],[937,1,1,14,15],[940,3,2,15,17],[942,1,1,17,18],[943,3,3,18,21],[944,2,2,21,23],[947,4,4,23,27],[949,2,2,27,29],[950,11,7,29,36],[951,1,1,36,37],[954,3,2,37,39],[955,6,4,39,43]]],[40,50,43,43,86,[[957,4,4,43,47],[958,3,3,47,50],[959,2,2,50,52],[960,3,3,52,55],[961,2,1,55,56],[963,2,2,56,58],[964,1,1,58,59],[965,2,2,59,61],[966,10,9,61,70],[967,1,1,70,71],[968,13,9,71,80],[969,1,1,80,81],[970,1,1,81,82],[971,4,3,82,85],[972,1,1,85,86]]],[41,120,113,86,199,[[973,13,13,86,99],[974,6,6,99,105],[975,4,4,105,109],[976,8,8,109,117],[977,3,3,117,120],[978,3,3,120,123],[979,5,4,123,127],[980,6,6,127,133],[981,7,7,133,140],[982,3,3,140,143],[983,5,4,143,147],[984,8,8,147,155],[985,4,4,155,159],[986,1,1,159,160],[987,1,1,160,161],[988,4,3,161,164],[989,5,4,164,168],[990,13,12,168,180],[991,2,2,180,182],[992,7,5,182,187],[993,2,2,187,189],[994,4,4,189,193],[995,4,4,193,197],[996,2,2,197,199]]],[42,80,69,199,268,[[997,12,11,199,210],[999,13,10,210,220],[1000,2,2,220,222],[1001,5,4,222,226],[1002,7,7,226,233],[1003,1,1,233,234],[1004,6,5,234,239],[1005,7,7,239,246],[1006,3,3,246,249],[1007,7,5,249,254],[1008,1,1,254,255],[1009,5,3,255,258],[1010,1,1,258,259],[1012,3,3,259,262],[1013,1,1,262,263],[1015,1,1,263,264],[1016,4,3,264,267],[1017,1,1,267,268]]],[43,162,148,268,416,[[1018,1,1,268,269],[1019,12,11,269,280],[1020,10,9,280,289],[1021,7,5,289,294],[1022,6,6,294,300],[1023,3,3,300,303],[1024,19,14,303,317],[1025,7,7,317,324],[1026,1,1,324,325],[1027,17,14,325,339],[1028,7,5,339,344],[1029,3,3,344,347],[1030,14,14,347,361],[1031,4,4,361,365],[1032,9,9,365,374],[1033,4,4,374,378],[1034,4,4,378,382],[1035,5,5,382,387],[1036,2,2,387,389],[1037,6,6,389,395],[1038,1,1,395,396],[1039,2,2,396,398],[1040,2,2,398,400],[1041,3,3,400,403],[1043,6,6,403,409],[1044,4,4,409,413],[1045,3,3,413,416]]],[44,145,131,416,547,[[1046,21,17,416,433],[1047,11,11,433,444],[1048,16,14,444,458],[1049,6,5,458,463],[1050,7,7,463,470],[1051,6,5,470,475],[1052,4,3,475,478],[1053,17,15,478,493],[1054,9,9,493,502],[1055,5,5,502,507],[1056,11,10,507,517],[1057,4,3,517,520],[1058,4,3,520,523],[1059,8,8,523,531],[1060,13,13,531,544],[1061,3,3,544,547]]],[45,100,84,547,631,[[1062,20,14,547,561],[1063,12,8,561,569],[1064,10,7,569,576],[1065,4,4,576,580],[1066,1,1,580,581],[1067,7,7,581,588],[1068,6,6,588,594],[1069,4,4,594,598],[1070,2,2,598,600],[1071,5,5,600,605],[1072,6,6,605,611],[1073,5,5,611,616],[1075,7,6,616,622],[1076,11,9,622,631]]],[46,71,60,631,691,[[1078,14,11,631,642],[1079,5,3,642,645],[1080,2,2,645,647],[1081,6,5,647,652],[1082,9,8,652,660],[1083,7,4,660,664],[1084,3,3,664,667],[1085,3,3,667,670],[1086,7,7,670,677],[1087,3,3,677,680],[1088,3,3,680,683],[1089,4,4,683,687],[1090,5,4,687,691]]],[47,29,28,691,719,[[1091,7,7,691,698],[1092,4,4,698,702],[1093,8,8,702,710],[1094,7,6,710,716],[1095,1,1,716,717],[1096,2,2,717,719]]],[48,32,32,719,751,[[1097,4,4,719,723],[1098,6,6,723,729],[1099,5,5,729,734],[1100,6,6,734,740],[1101,6,6,740,746],[1102,5,5,746,751]]],[49,23,22,751,773,[[1103,5,5,751,756],[1104,7,6,756,762],[1105,5,5,762,767],[1106,6,6,767,773]]],[50,22,21,773,794,[[1107,9,8,773,781],[1108,3,3,781,784],[1109,7,7,784,791],[1110,3,3,791,794]]],[51,35,29,794,823,[[1111,7,5,794,799],[1112,14,10,799,809],[1113,4,4,809,813],[1114,7,7,813,820],[1115,3,3,820,823]]],[52,19,14,823,837,[[1116,10,9,823,832],[1117,8,4,832,836],[1118,1,1,836,837]]],[53,22,20,837,857,[[1119,4,4,837,841],[1120,3,2,841,843],[1121,4,3,843,846],[1122,4,4,846,850],[1123,3,3,850,853],[1124,4,4,853,857]]],[54,11,11,857,868,[[1125,6,6,857,863],[1126,3,3,863,866],[1127,1,1,866,867],[1128,1,1,867,868]]],[55,11,11,868,879,[[1129,6,6,868,874],[1130,4,4,874,878],[1131,1,1,878,879]]],[56,2,2,879,881,[[1132,2,2,879,881]]],[57,68,63,881,944,[[1133,5,4,881,885],[1134,4,4,885,889],[1135,2,2,889,891],[1136,5,5,891,896],[1137,4,4,896,900],[1138,8,8,900,908],[1139,4,4,908,912],[1140,1,1,912,913],[1141,4,3,913,916],[1142,7,7,916,923],[1143,12,9,923,932],[1144,7,7,932,939],[1145,5,5,939,944]]],[58,17,13,944,957,[[1146,6,5,944,949],[1147,4,3,949,952],[1148,2,1,952,953],[1149,5,4,953,957]]],[59,39,35,957,992,[[1151,6,5,957,962],[1152,9,9,962,971],[1153,8,8,971,979],[1154,11,8,979,987],[1155,5,5,987,992]]],[60,7,7,992,999,[[1156,4,4,992,996],[1157,1,1,996,997],[1158,2,2,997,999]]],[61,64,41,999,1040,[[1159,1,1,999,1000],[1160,3,3,1000,1003],[1161,11,9,1003,1012],[1162,29,15,1012,1027],[1163,20,13,1027,1040]]],[62,2,2,1040,1042,[[1164,2,2,1040,1042]]],[63,2,1,1042,1043,[[1165,2,1,1042,1043]]],[64,5,4,1043,1047,[[1166,5,4,1043,1047]]],[65,99,90,1047,1137,[[1167,4,4,1047,1051],[1168,2,2,1051,1053],[1169,7,4,1053,1057],[1170,2,2,1057,1059],[1171,3,3,1059,1062],[1172,1,1,1062,1063],[1173,7,7,1063,1070],[1174,2,2,1070,1072],[1175,2,2,1072,1074],[1176,1,1,1074,1075],[1177,8,7,1075,1082],[1178,5,4,1082,1086],[1179,1,1,1086,1087],[1180,6,6,1087,1093],[1181,6,5,1093,1098],[1182,7,7,1098,1105],[1183,2,1,1105,1106],[1184,3,3,1106,1109],[1185,9,9,1109,1118],[1186,4,4,1118,1122],[1187,10,8,1122,1130],[1188,7,7,1130,1137]]]],[23167,23201,23208,23212,23213,23215,23216,23219,23242,23243,23306,23312,23315,23374,23387,23493,23517,23630,23636,23637,23664,23688,23695,23768,23779,23786,23788,23838,23869,23888,23893,23901,23902,23903,23904,23909,23940,24115,24117,24169,24172,24175,24183,24216,24229,24230,24239,24267,24272,24286,24299,24323,24334,24349,24353,24371,24471,24472,24533,24539,24585,24594,24597,24602,24603,24606,24611,24612,24613,24615,24662,24687,24690,24697,24699,24700,24702,24703,24705,24707,24736,24779,24860,24865,24869,24892,24899,24901,24909,24912,24919,24923,24925,24928,24930,24940,24957,24961,24971,24986,24987,24993,25001,25013,25025,25027,25031,25033,25063,25066,25067,25071,25072,25075,25097,25104,25106,25128,25132,25133,25150,25158,25166,25211,25223,25224,25225,25246,25255,25256,25266,25273,25284,25303,25312,25321,25328,25344,25361,25363,25372,25374,25390,25425,25433,25447,25454,25465,25467,25468,25479,25480,25483,25487,25490,25531,25536,25538,25546,25568,25598,25633,25635,25636,25666,25669,25671,25672,25690,25692,25695,25699,25701,25704,25705,25707,25712,25713,25715,25731,25742,25768,25800,25804,25815,25816,25817,25830,25857,25880,25882,25933,25934,25970,25975,25982,25986,26010,26044,26045,26046,26050,26056,26057,26062,26073,26078,26080,26093,26095,26122,26123,26125,26136,26137,26138,26141,26153,26154,26156,26166,26180,26228,26235,26252,26254,26284,26285,26286,26290,26302,26303,26326,26345,26421,26422,26423,26428,26435,26443,26456,26464,26469,26471,26473,26475,26514,26516,26517,26527,26545,26550,26563,26575,26623,26633,26661,26662,26669,26728,26753,26756,26762,26832,26884,26895,26898,26917,26926,26960,26966,26971,26972,26973,26979,26981,26982,26985,26988,26996,27004,27005,27009,27011,27014,27017,27018,27021,27022,27032,27041,27043,27046,27053,27063,27088,27089,27090,27091,27098,27103,27108,27112,27118,27122,27123,27125,27133,27141,27148,27151,27153,27158,27161,27162,27171,27172,27186,27188,27190,27196,27197,27198,27213,27236,27261,27262,27263,27274,27281,27287,27290,27292,27293,27297,27299,27300,27301,27305,27308,27316,27324,27325,27330,27342,27360,27361,27367,27369,27378,27379,27383,27385,27388,27392,27395,27398,27399,27405,27406,27408,27429,27436,27440,27441,27446,27449,27450,27452,27454,27456,27460,27461,27482,27497,27500,27508,27517,27536,27547,27552,27553,27564,27568,27570,27578,27583,27593,27596,27647,27650,27651,27653,27654,27658,27683,27707,27718,27735,27737,27783,27784,27785,27829,27831,27841,27843,27845,27852,27878,27879,27880,27890,27914,27927,27930,27931,27934,27937,27938,27939,27940,27946,27947,27948,27949,27951,27953,27954,27955,27956,27958,27962,27964,27965,27966,27967,27973,27975,27978,27979,27985,27986,27991,27993,27995,27996,27997,27998,28002,28009,28010,28012,28013,28014,28016,28020,28021,28024,28025,28028,28039,28042,28048,28049,28052,28055,28057,28058,28062,28078,28079,28081,28090,28091,28095,28113,28116,28119,28123,28124,28125,28130,28132,28133,28135,28137,28143,28144,28147,28149,28150,28155,28160,28161,28163,28166,28169,28171,28175,28177,28181,28189,28190,28191,28197,28205,28210,28211,28217,28230,28231,28232,28238,28239,28241,28242,28246,28247,28248,28267,28268,28270,28283,28284,28291,28292,28297,28298,28300,28302,28308,28309,28310,28311,28312,28316,28318,28319,28320,28322,28333,28335,28336,28356,28362,28363,28364,28365,28366,28367,28372,28377,28381,28383,28384,28387,28388,28390,28391,28393,28395,28399,28401,28403,28404,28405,28406,28408,28416,28417,28419,28420,28426,28427,28429,28434,28438,28442,28453,28467,28476,28477,28478,28480,28481,28486,28487,28494,28502,28504,28506,28511,28527,28530,28531,28533,28535,28549,28561,28572,28580,28587,28598,28599,28603,28607,28612,28613,28616,28622,28637,28640,28652,28658,28662,28680,28696,28703,28706,28711,28714,28727,28728,28733,28742,28746,28752,28756,28768,28775,28801,28802,28803,28804,28809,28812,28818,28819,28820,28821,28823,28838,28839,28841,28844,28846,28861,28863,28865,28866,28874,28878,28882,28888,28890,28895,28896,28897,28898,28899,28902,28905,28914,28917,28922,28928,28933,28937,28948,28963,28964,28967,28968,28969,28970,28971,28975,28976,28984,28996,29000,29020,29024,29025,29041,29043,29047,29050,29054,29057,29058,29060,29061,29067,29070,29072,29081,29087,29100,29101,29102,29108,29110,29113,29119,29120,29122,29123,29128,29135,29137,29138,29139,29140,29145,29183,29195,29204,29207,29208,29209,29223,29233,29237,29239,29245,29248,29251,29253,29258,29260,29261,29270,29278,29285,29290,29296,29302,29304,29305,29306,29309,29310,29324,29325,29343,29348,29350,29354,29360,29363,29364,29369,29372,29389,29397,29400,29402,29404,29406,29418,29424,29430,29435,29436,29440,29448,29449,29451,29460,29461,29462,29466,29467,29468,29471,29475,29480,29490,29492,29496,29506,29513,29518,29520,29523,29529,29532,29534,29539,29545,29553,29554,29561,29562,29563,29564,29569,29572,29574,29575,29578,29579,29580,29582,29583,29584,29585,29592,29599,29601,29603,29604,29606,29608,29610,29611,29617,29619,29630,29639,29644,29650,29651,29652,29653,29654,29655,29657,29660,29661,29665,29672,29674,29677,29683,29697,29698,29707,29713,29719,29721,29736,29746,29747,29750,29751,29752,29757,29767,29768,29784,29789,29799,29801,29805,29810,29811,29812,29815,29816,29817,29836,29842,29846,29870,29871,29893,29894,29895,29896,29899,29908,29913,29918,29919,29921,29931,29941,29942,29964,29969,29971,29972,29981,29986,29990,29994,29999,30007,30018,30023,30024,30026,30028,30031,30034,30040,30042,30045,30047,30049,30051,30054,30057,30061,30062,30065,30067,30083,30089,30102,30119,30125,30129,30140,30142,30145,30154,30162,30164,30169,30175,30176,30177,30178,30182,30188,30191,30197,30212,30214,30219,30227,30234,30235,30240,30241,30245,30248,30256,30257,30261,30267,30271,30279,30286,30293,30298,30312,30316,30328,30341,30343,30344,30345,30376,30377,30379,30395,30397,30403,30404,30409,30411,30414,30415,30416,30418,30419,30428,30429,30439,30441,30442,30444,30445,30446,30448,30452,30456,30457,30460,30462,30463,30465,30467,30470,30471,30475,30477,30480,30481,30496,30500,30504,30527,30534,30545,30555,30564,30567,30580,30581,30587,30588,30589,30595,30596,30599,30600,30604,30605,30606,30607,30609,30610,30611,30612,30613,30614,30615,30618,30619,30623,30624,30625,30626,30627,30628,30629,30633,30634,30635,30636,30637,30642,30643,30644,30648,30654,30669,30673,30676,30693,30697,30698,30699,30703,30706,30724,30735,30747,30748,30758,30760,30773,30776,30785,30788,30789,30802,30812,30813,30820,30821,30822,30825,30827,30829,30831,30844,30853,30868,30873,30876,30883,30885,30888,30889,30891,30896,30897,30901,30908,30914,30930,30931,30933,30936,30938,30945,30947,30948,30949,30953,30954,30955,30961,30963,30965,30968,30973,30975,30992,30998,31001,31013,31018,31021,31022,31023,31026,31027,31030,31032,31034,31042,31044,31047,31050,31055,31056,31057,31060,31063,31064,31075,31076,31081,31083,31085,31086,31089,31098,31099]]],["God's",[14,13,[[39,2,2,0,2,[[933,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]],[42,1,1,4,5,[[1004,1,1,4,5]]],[43,1,1,5,6,[[1040,1,1,5,6]]],[44,3,3,6,9,[[1053,1,1,6,7],[1055,1,1,7,8],[1058,1,1,8,9]]],[45,4,3,9,12,[[1064,3,2,9,11],[1067,1,1,11,12]]],[55,1,1,12,13,[[1129,1,1,12,13]]]],[23268,23893,24690,25804,26428,27738,28149,28191,28272,28419,28433,28487,29893]]],["Godward",[2,2,[[46,1,1,0,1,[[1080,1,1,0,1]]],[51,1,1,1,2,[[1111,1,1,1,2]]]],[28845,29568]]],["god",[4,4,[[43,3,3,0,3,[[1024,1,1,0,1],[1029,1,1,1,2],[1045,1,1,2,3]]],[46,1,1,3,4,[[1081,1,1,3,4]]]],[27159,27359,27905,28863]]],["godly",[3,3,[[46,2,2,0,2,[[1078,1,1,0,1],[1088,1,1,1,2]]],[53,1,1,2,3,[[1119,1,1,2,3]]]],[28812,28991,29700]]],["gods",[8,7,[[42,2,2,0,2,[[1006,2,2,0,2]]],[43,3,3,2,5,[[1024,1,1,2,3],[1031,1,1,3,4],[1036,1,1,4,5]]],[45,2,1,5,6,[[1069,2,1,5,6]]],[47,1,1,6,7,[[1094,1,1,6,7]]]],[26515,26516,27156,27425,27611,28532,29139]]],["of",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25547]]]]},{"k":"G2317","v":[["godliness",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29726]]]]},{"k":"G2318","v":[["God",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26471]]]]},{"k":"G2319","v":[["God",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27960]]]]},{"k":"G2320","v":[["Godhead",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29503]]]]},{"k":"G2321","v":[["Theophilus",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]]],[24896,26924]]]]},{"k":"G2322","v":[["*",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[984,1,1,2,3]]],[65,1,1,3,4,[[1188,1,1,3,4]]]],[24002,25312,25501,31082]]],["healing",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[65,1,1,1,2,[[1188,1,1,1,2]]]],[25312,31082]]],["household",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[24002,25501]]]]},{"k":"G2323","v":[["*",[44,43,[[39,16,16,0,16,[[932,2,2,0,2],[936,2,2,2,4],[937,1,1,4,5],[938,2,2,5,7],[940,3,3,7,10],[942,1,1,10,11],[943,1,1,11,12],[945,2,2,12,14],[947,1,1,14,15],[949,1,1,15,16]]],[40,6,6,16,22,[[957,1,1,16,17],[959,3,3,17,20],[962,2,2,20,22]]],[41,14,13,22,35,[[976,2,2,22,24],[977,1,1,24,25],[978,2,2,25,27],[979,1,1,27,28],[980,2,2,28,30],[981,2,2,30,32],[982,1,1,32,33],[985,2,1,33,34],[986,1,1,34,35]]],[42,1,1,35,36,[[1001,1,1,35,36]]],[43,5,5,36,41,[[1021,1,1,36,37],[1022,1,1,37,38],[1025,1,1,38,39],[1034,1,1,39,40],[1045,1,1,40,41]]],[65,2,2,41,43,[[1179,2,2,41,43]]]],[23232,23233,23352,23361,23414,23418,23425,23499,23504,23511,23611,23663,23716,23718,23764,23840,24249,24290,24298,24303,24412,24420,25086,25103,25122,25153,25164,25216,25247,25288,25302,25307,25372,25532,25556,26220,27036,27075,27183,27548,27908,30911,30920]]],["Heal",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23425]]],["cure",[2,2,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[23716,25302]]],["cured",[3,3,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[42,1,1,2,3,[[1001,1,1,2,3]]]],[23718,25216,26220]]],["heal",[9,9,[[39,3,3,0,3,[[936,1,1,0,1],[938,1,1,1,2],[940,1,1,2,3]]],[40,2,2,3,5,[[959,2,2,3,5]]],[41,4,4,5,9,[[976,1,1,5,6],[978,1,1,6,7],[982,1,1,7,8],[986,1,1,8,9]]]],[23352,23418,23499,24290,24303,25086,25153,25372,25556]]],["healed",[25,24,[[39,8,8,0,8,[[932,1,1,0,1],[936,1,1,1,2],[940,2,2,2,4],[942,1,1,4,5],[943,1,1,5,6],[947,1,1,6,7],[949,1,1,7,8]]],[40,4,4,8,12,[[957,1,1,8,9],[959,1,1,9,10],[962,2,2,10,12]]],[41,7,6,12,18,[[976,1,1,12,13],[977,1,1,13,14],[978,1,1,14,15],[980,2,2,15,17],[985,2,1,17,18]]],[43,4,4,18,22,[[1021,1,1,18,19],[1022,1,1,19,20],[1025,1,1,20,21],[1045,1,1,21,22]]],[65,2,2,22,24,[[1179,2,2,22,24]]]],[23233,23361,23504,23511,23611,23663,23764,23840,24249,24298,24412,24420,25103,25122,25164,25247,25288,25532,27036,27075,27183,27908,30911,30920]]],["healing",[3,3,[[39,2,2,0,2,[[932,1,1,0,1],[937,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]]],[23232,23414,25307]]],["worshipped",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27548]]]]},{"k":"G2324","v":[["servant",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30000]]]]},{"k":"G2325","v":[["*",[21,17,[[39,3,3,0,3,[[934,1,1,0,1],[953,2,2,1,3]]],[41,3,3,3,6,[[984,1,1,3,4],[991,2,2,4,6]]],[42,4,3,6,9,[[1000,4,3,6,9]]],[45,1,1,9,10,[[1070,1,1,9,10]]],[46,2,1,10,11,[[1086,2,1,10,11]]],[47,4,3,11,14,[[1096,4,3,11,14]]],[58,1,1,14,15,[[1150,1,1,14,15]]],[65,3,2,15,17,[[1180,3,2,15,17]]]],[23308,24032,24034,25483,25752,25753,26192,26193,26194,28551,28962,29195,29196,29197,30358,30941,30942]]],["reap",[13,10,[[39,2,2,0,2,[[934,1,1,0,1],[953,1,1,1,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[42,1,1,3,4,[[1000,1,1,3,4]]],[45,1,1,4,5,[[1070,1,1,4,5]]],[46,2,1,5,6,[[1086,2,1,5,6]]],[47,4,3,6,9,[[1096,4,3,6,9]]],[65,2,1,9,10,[[1180,2,1,9,10]]]],[23308,24034,25483,26194,28551,28962,29195,29196,29197,30941]]],["reaped",[2,2,[[58,1,1,0,1,[[1150,1,1,0,1]]],[65,1,1,1,2,[[1180,1,1,1,2]]]],[30358,30942]]],["reapest",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25752]]],["reapeth",[3,2,[[42,3,2,0,2,[[1000,3,2,0,2]]]],[26192,26193]]],["reaping",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,1,1,1,2,[[991,1,1,1,2]]]],[24032,25753]]]]},{"k":"G2326","v":[["harvest",[13,8,[[39,6,4,0,4,[[937,3,2,0,2],[941,3,2,2,4]]],[40,1,1,4,5,[[960,1,1,4,5]]],[41,3,1,5,6,[[982,3,1,5,6]]],[42,2,1,6,7,[[1000,2,1,6,7]]],[65,1,1,7,8,[[1180,1,1,7,8]]]],[23416,23417,23569,23578,24352,25365,26191,30941]]]]},{"k":"G2327","v":[["reapers",[2,2,[[39,2,2,0,2,[[941,2,2,0,2]]]],[23569,23578]]]]},{"k":"G2328","v":[["*",[6,5,[[40,2,2,0,2,[[970,2,2,0,2]]],[42,3,2,2,4,[[1014,3,2,2,4]]],[58,1,1,4,5,[[1147,1,1,4,5]]]],[24808,24821,26803,26810,30309]]],["warmed",[5,4,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,3,2,1,3,[[1014,3,2,1,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[24808,26803,26810,30309]]],["warming",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24821]]]]},{"k":"G2329","v":[["heat",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27902]]]]},{"k":"G2330","v":[["summer",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]]],[23989,24745,25856]]]]},{"k":"G2331","v":[["*",[4,4,[[43,2,2,0,2,[[1037,1,1,0,1],[1044,1,1,1,2]]],[51,1,1,2,3,[[1111,1,1,2,3]]],[52,1,1,3,4,[[1116,1,1,3,4]]]],[27630,27857,29561,29650]]],["Thessalonians",[3,3,[[43,1,1,0,1,[[1037,1,1,0,1]]],[51,1,1,1,2,[[1111,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]]],[27630,29561,29650]]],["Thessalonica",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27857]]]]},{"k":"G2332","v":[["Thessalonica",[5,5,[[43,3,3,0,3,[[1034,3,3,0,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]]],[27524,27534,27536,29458,29880]]]]},{"k":"G2333","v":[["Theudas",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27095]]]]},{"k":"G2334","v":[["*",[57,55,[[39,2,2,0,2,[[955,1,1,0,1],[956,1,1,1,2]]],[40,7,7,2,9,[[959,1,1,2,3],[961,2,2,3,5],[968,1,1,5,6],[971,2,2,6,8],[972,1,1,8,9]]],[41,7,7,9,16,[[982,1,1,9,10],[986,1,1,10,11],[993,1,1,11,12],[995,2,2,12,14],[996,2,2,14,16]]],[42,23,21,16,37,[[998,1,1,16,17],[1000,1,1,17,18],[1002,3,3,18,21],[1003,1,1,21,22],[1004,1,1,22,23],[1005,1,1,23,24],[1006,1,1,24,25],[1008,3,2,25,27],[1010,3,2,27,29],[1012,4,4,29,33],[1013,1,1,33,34],[1016,3,3,34,37]]],[43,14,14,37,51,[[1020,1,1,37,38],[1021,1,1,38,39],[1024,1,1,39,40],[1025,1,1,40,41],[1026,1,1,41,42],[1027,1,1,42,43],[1034,2,2,43,45],[1036,1,1,45,46],[1037,1,1,46,47],[1038,1,1,47,48],[1042,1,1,48,49],[1044,1,1,49,50],[1045,1,1,50,51]]],[57,1,1,51,52,[[1139,1,1,51,52]]],[61,1,1,52,53,[[1161,1,1,52,53]]],[65,2,2,53,55,[[1177,2,2,53,55]]]],[24184,24196,24299,24379,24402,24714,24866,24873,24877,25381,25582,25832,25970,25983,26028,26030,26118,26175,26276,26297,26319,26331,26432,26448,26493,26599,26625,26685,26687,26736,26742,26743,26745,26783,26873,26879,26881,27012,27035,27172,27189,27223,27270,27539,27545,27611,27664,27684,27820,27865,27905,30068,30596,30883,30884]]],["Perceive",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26599]]],["beheld",[4,4,[[40,2,2,0,2,[[968,1,1,0,1],[971,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[65,1,1,3,4,[[1177,1,1,3,4]]]],[24714,24873,25381,30884]]],["behold",[3,3,[[41,2,2,0,2,[[986,1,1,0,1],[993,1,1,1,2]]],[42,1,1,2,3,[[1013,1,1,2,3]]]],[25582,25832,26783]]],["beholding",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,2,2,1,3,[[995,2,2,1,3]]],[43,1,1,3,4,[[1025,1,1,3,4]]]],[24184,25970,25983,27189]]],["consider",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30068]]],["on",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24866]]],["perceive",[3,3,[[42,1,1,0,1,[[1000,1,1,0,1]]],[43,2,2,1,3,[[1034,1,1,1,2],[1044,1,1,2,3]]]],[26175,27545,27865]]],["saw",[9,9,[[40,2,2,0,2,[[959,1,1,0,1],[972,1,1,1,2]]],[42,2,2,2,4,[[998,1,1,2,3],[1016,1,1,3,4]]],[43,4,4,4,8,[[1021,1,1,4,5],[1027,1,1,5,6],[1034,1,1,6,7],[1045,1,1,7,8]]],[65,1,1,8,9,[[1177,1,1,8,9]]]],[24299,24877,26118,26881,27035,27270,27539,27905,30883]]],["see",[17,17,[[39,1,1,0,1,[[956,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[996,1,1,2,3]]],[42,9,9,3,12,[[1002,2,2,3,5],[1003,1,1,5,6],[1004,1,1,6,7],[1010,1,1,7,8],[1012,4,4,8,12]]],[43,5,5,12,17,[[1020,1,1,12,13],[1024,1,1,13,14],[1036,1,1,14,15],[1037,1,1,15,16],[1042,1,1,16,17]]]],[24196,24379,26030,26276,26319,26331,26432,26687,26736,26742,26743,26745,27012,27172,27611,27664,27820]]],["seeing",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27223]]],["seen",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,1,1,1,2,[[1005,1,1,1,2]]]],[26028,26448]]],["seest",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27684]]],["seeth",[10,9,[[40,1,1,0,1,[[961,1,1,0,1]]],[42,8,7,1,8,[[1002,1,1,1,2],[1006,1,1,2,3],[1008,2,1,3,4],[1010,2,2,4,6],[1016,2,2,6,8]]],[61,1,1,8,9,[[1161,1,1,8,9]]]],[24402,26297,26493,26625,26685,26687,26873,26879,30596]]]]},{"k":"G2335","v":[["sight",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25983]]]]},{"k":"G2336","v":[["sheath",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26796]]]]},{"k":"G2337","v":[["*",[6,6,[[39,2,2,0,2,[[949,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,3,3,3,6,[[983,1,1,3,4],[993,1,1,4,5],[995,1,1,5,6]]]],[23842,23976,24734,25432,25849,25964]]],["suck",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,2,2,2,4,[[993,1,1,2,3],[995,1,1,3,4]]]],[23976,24734,25849,25964]]],["sucked",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25432]]],["sucklings",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23842]]]]},{"k":"G2338","v":[["*",[5,5,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[44,2,2,2,4,[[1046,2,2,2,4]]],[47,1,1,4,5,[[1093,1,1,4,5]]]],[23766,24594,27956,27957,29130]]],["female",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[47,1,1,2,3,[[1093,1,1,2,3]]]],[23766,24594,29130]]],["woman",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27957]]],["women",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27956]]]]},{"k":"G2339","v":[["trap",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28218]]]]},{"k":"G2340","v":[["catch",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25459]]]]},{"k":"G2341","v":[["beasts",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28750]]]]},{"k":"G2342","v":[["*",[46,38,[[40,1,1,0,1,[[957,1,1,0,1]]],[43,4,4,1,5,[[1027,1,1,1,2],[1028,1,1,2,3],[1045,2,2,3,5]]],[55,1,1,5,6,[[1129,1,1,5,6]]],[57,1,1,6,7,[[1144,1,1,6,7]]],[58,1,1,7,8,[[1148,1,1,7,8]]],[65,38,30,8,38,[[1172,1,1,8,9],[1177,1,1,9,10],[1179,16,10,10,20],[1180,2,2,20,22],[1181,1,1,22,23],[1182,3,3,23,26],[1183,9,8,26,34],[1185,3,2,34,36],[1186,2,2,36,38]]]],[24228,27271,27313,27903,27904,29904,30232,30326,30801,30879,30909,30910,30911,30912,30919,30920,30922,30923,30925,30926,30935,30937,30948,30956,30964,30967,30978,30982,30983,30986,30987,30988,30991,30992,31036,31037,31042,31048]]],["beast",[40,32,[[43,2,2,0,2,[[1045,2,2,0,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]],[65,37,29,3,32,[[1177,1,1,3,4],[1179,16,10,4,14],[1180,2,2,14,16],[1181,1,1,16,17],[1182,3,3,17,20],[1183,9,8,20,28],[1185,3,2,28,30],[1186,2,2,30,32]]]],[27903,27904,30232,30879,30909,30910,30911,30912,30919,30920,30922,30923,30925,30926,30935,30937,30948,30956,30964,30967,30978,30982,30983,30986,30987,30988,30991,30992,31036,31037,31042,31048]]],["beasts",[6,6,[[40,1,1,0,1,[[957,1,1,0,1]]],[43,2,2,1,3,[[1027,1,1,1,2],[1028,1,1,2,3]]],[55,1,1,3,4,[[1129,1,1,3,4]]],[58,1,1,4,5,[[1148,1,1,4,5]]],[65,1,1,5,6,[[1172,1,1,5,6]]]],[24228,27271,27313,29904,30326,30801]]]]},{"k":"G2343","v":[["*",[8,8,[[39,2,2,0,2,[[934,2,2,0,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[44,1,1,3,4,[[1047,1,1,3,4]]],[45,1,1,4,5,[[1077,1,1,4,5]]],[46,1,1,5,6,[[1089,1,1,5,6]]],[58,1,1,6,7,[[1150,1,1,6,7]]],[60,1,1,7,8,[[1158,1,1,7,8]]]],[23301,23302,25480,27967,28778,29036,30357,30529]]],["+",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23301]]],["store",[2,2,[[45,1,1,0,1,[[1077,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[28778,30529]]],["together",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30357]]],["treasure",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25480]]],["up",[3,3,[[39,1,1,0,1,[[934,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]],[46,1,1,2,3,[[1089,1,1,2,3]]]],[23302,27967,29036]]]]},{"k":"G2344","v":[["*",[18,16,[[39,9,8,0,8,[[930,1,1,0,1],[934,3,3,1,4],[940,2,1,4,5],[941,2,2,5,7],[947,1,1,7,8]]],[40,1,1,8,9,[[966,1,1,8,9]]],[41,5,4,9,13,[[978,2,1,9,10],[984,2,2,10,12],[990,1,1,12,13]]],[46,1,1,13,14,[[1081,1,1,13,14]]],[50,1,1,14,15,[[1108,1,1,14,15]]],[57,1,1,15,16,[[1143,1,1,15,16]]]],[23180,23301,23302,23303,23524,23583,23591,23783,24609,25191,25492,25493,25710,28866,29497,30198]]],["treasure",[13,11,[[39,6,5,0,5,[[934,1,1,0,1],[940,2,1,1,2],[941,2,2,2,4],[947,1,1,4,5]]],[40,1,1,5,6,[[966,1,1,5,6]]],[41,5,4,6,10,[[978,2,1,6,7],[984,2,2,7,9],[990,1,1,9,10]]],[46,1,1,10,11,[[1081,1,1,10,11]]]],[23303,23524,23583,23591,23783,24609,25191,25492,25493,25710,28866]]],["treasures",[5,5,[[39,3,3,0,3,[[930,1,1,0,1],[934,2,2,1,3]]],[50,1,1,3,4,[[1108,1,1,3,4]]],[57,1,1,4,5,[[1143,1,1,4,5]]]],[23180,23301,23302,29497,30198]]]]},{"k":"G2345","v":[["*",[3,3,[[50,1,1,0,1,[[1108,1,1,0,1]]],[57,2,2,1,3,[[1143,1,1,1,2],[1144,1,1,2,3]]]],[29515,30200,30232]]],["handle",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29515]]],["touch",[2,2,[[57,2,2,0,2,[[1143,1,1,0,1],[1144,1,1,1,2]]]],[30200,30232]]]]},{"k":"G2346","v":[["*",[10,10,[[39,1,1,0,1,[[935,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[46,3,3,2,5,[[1078,1,1,2,3],[1081,1,1,3,4],[1084,1,1,4,5]]],[51,1,1,5,6,[[1113,1,1,5,6]]],[52,2,2,6,8,[[1116,2,2,6,8]]],[53,1,1,8,9,[[1123,1,1,8,9]]],[57,1,1,9,10,[[1143,1,1,9,10]]]],[23330,24297,28806,28867,28921,29594,29655,29656,29773,30209]]],["afflicted",[3,3,[[46,1,1,0,1,[[1078,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[28806,29773,30209]]],["narrow",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23330]]],["throng",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24297]]],["tribulation",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29594]]],["trouble",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29655]]],["troubled",[3,3,[[46,2,2,0,2,[[1081,1,1,0,1],[1084,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]]],[28867,28921,29656]]]]},{"k":"G2347","v":[["*",[45,43,[[39,4,4,0,4,[[941,1,1,0,1],[952,3,3,1,4]]],[40,3,3,4,7,[[960,1,1,4,5],[969,2,2,5,7]]],[42,2,2,7,9,[[1012,2,2,7,9]]],[43,5,5,9,14,[[1024,2,2,9,11],[1028,1,1,11,12],[1031,1,1,12,13],[1037,1,1,13,14]]],[44,5,4,14,18,[[1047,1,1,14,15],[1050,2,1,15,16],[1053,1,1,16,17],[1057,1,1,17,18]]],[45,1,1,18,19,[[1068,1,1,18,19]]],[46,9,8,19,27,[[1078,3,2,19,21],[1079,1,1,21,22],[1081,1,1,22,23],[1083,1,1,23,24],[1084,1,1,24,25],[1085,2,2,25,27]]],[48,1,1,27,28,[[1099,1,1,27,28]]],[49,2,2,28,30,[[1103,1,1,28,29],[1106,1,1,29,30]]],[50,1,1,30,31,[[1107,1,1,30,31]]],[51,3,3,31,34,[[1111,1,1,31,32],[1113,2,2,32,34]]],[52,2,2,34,36,[[1116,2,2,34,36]]],[57,1,1,36,37,[[1142,1,1,36,37]]],[58,1,1,37,38,[[1146,1,1,37,38]]],[65,5,5,38,43,[[1167,1,1,38,39],[1168,3,3,39,42],[1173,1,1,42,43]]]],[23560,23966,23978,23986,24340,24736,24741,26747,26759,27126,27127,27326,27436,27649,27971,28050,28151,28257,28515,28804,28808,28828,28876,28902,28920,28934,28945,29264,29377,29456,29489,29566,29593,29597,29653,29655,30166,30293,30706,30726,30727,30739,30824]]],["+",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23966]]],["Tribulation",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27971]]],["affliction",[11,11,[[40,2,2,0,2,[[960,1,1,0,1],[969,1,1,1,2]]],[43,1,1,2,3,[[1024,1,1,2,3]]],[46,3,3,3,6,[[1079,1,1,3,4],[1081,1,1,4,5],[1085,1,1,5,6]]],[49,2,2,6,8,[[1103,1,1,6,7],[1106,1,1,7,8]]],[51,2,2,8,10,[[1111,1,1,8,9],[1113,1,1,9,10]]],[58,1,1,10,11,[[1146,1,1,10,11]]]],[24340,24736,27127,28828,28876,28934,29377,29456,29566,29597,30293]]],["afflictions",[6,6,[[43,2,2,0,2,[[1024,1,1,0,1],[1037,1,1,1,2]]],[46,1,1,2,3,[[1083,1,1,2,3]]],[50,1,1,3,4,[[1107,1,1,3,4]]],[51,1,1,4,5,[[1113,1,1,4,5]]],[57,1,1,5,6,[[1142,1,1,5,6]]]],[27126,27649,28902,29489,29593,30166]]],["anguish",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26747]]],["burdened",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28945]]],["persecution",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27326]]],["tribulation",[17,17,[[39,3,3,0,3,[[941,1,1,0,1],[952,2,2,1,3]]],[40,1,1,3,4,[[969,1,1,3,4]]],[42,1,1,4,5,[[1012,1,1,4,5]]],[43,1,1,5,6,[[1031,1,1,5,6]]],[44,3,3,6,9,[[1050,1,1,6,7],[1053,1,1,7,8],[1057,1,1,8,9]]],[46,2,2,9,11,[[1078,1,1,9,10],[1084,1,1,10,11]]],[52,1,1,11,12,[[1116,1,1,11,12]]],[65,5,5,12,17,[[1167,1,1,12,13],[1168,3,3,13,16],[1173,1,1,16,17]]]],[23560,23978,23986,24741,26759,27436,28050,28151,28257,28804,28920,29655,30706,30726,30727,30739,30824]]],["tribulations",[3,3,[[44,1,1,0,1,[[1050,1,1,0,1]]],[48,1,1,1,2,[[1099,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]]],[28050,29264,29653]]],["trouble",[3,3,[[45,1,1,0,1,[[1068,1,1,0,1]]],[46,2,2,1,3,[[1078,2,2,1,3]]]],[28515,28804,28808]]]]},{"k":"G2348","v":[["*",[13,13,[[39,1,1,0,1,[[930,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,2,2,2,4,[[979,1,1,2,3],[980,1,1,3,4]]],[42,6,6,4,10,[[1007,4,4,4,8],[1008,1,1,8,9],[1015,1,1,9,10]]],[43,2,2,10,12,[[1031,1,1,10,11],[1042,1,1,11,12]]],[53,1,1,12,13,[[1123,1,1,12,13]]]],[23189,24870,25207,25294,26544,26562,26564,26567,26581,26858,27433,27815,29769]]],["+",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]]],[24870,26544]]],["dead",[10,10,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[42,5,5,2,7,[[1007,3,3,2,5],[1008,1,1,5,6],[1015,1,1,6,7]]],[43,2,2,7,9,[[1031,1,1,7,8],[1042,1,1,8,9]]],[53,1,1,9,10,[[1123,1,1,9,10]]]],[23189,25294,26562,26564,26567,26581,26858,27433,27815,29769]]],["man",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25207]]]]},{"k":"G2349","v":[["*",[6,6,[[44,2,2,0,2,[[1051,1,1,0,1],[1053,1,1,1,2]]],[45,2,2,2,4,[[1076,2,2,2,4]]],[46,2,2,4,6,[[1081,1,1,4,5],[1082,1,1,5,6]]]],[28080,28127,28771,28772,28870,28881]]],["mortal",[5,5,[[44,2,2,0,2,[[1051,1,1,0,1],[1053,1,1,1,2]]],[45,2,2,2,4,[[1076,2,2,2,4]]],[46,1,1,4,5,[[1081,1,1,4,5]]]],[28080,28127,28771,28772,28870]]],["mortality",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28881]]]]},{"k":"G2350","v":[["*",[4,4,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[43,2,2,2,4,[[1034,1,1,2,3],[1037,1,1,3,4]]]],[23402,24403,27528,27636]]],["+",[2,2,[[43,2,2,0,2,[[1034,1,1,0,1],[1037,1,1,1,2]]]],[27528,27636]]],["ado",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24403]]],["noise",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23402]]]]},{"k":"G2351","v":[["*",[7,7,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,2,2,2,4,[[961,1,1,2,3],[970,1,1,3,4]]],[43,3,3,4,7,[[1037,1,1,4,5],[1038,1,1,5,6],[1041,1,1,6,7]]]],[24059,24153,24402,24756,27627,27698,27787]]],["tumult",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[43,2,2,2,4,[[1038,1,1,2,3],[1041,1,1,3,4]]]],[24153,24402,27698,27787]]],["uproar",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[43,1,1,2,3,[[1037,1,1,2,3]]]],[24059,24756,27627]]]]},{"k":"G2352","v":[["bruised",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25081]]]]},{"k":"G2353","v":[["cattle",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26168]]]]},{"k":"G2354","v":[["*",[4,4,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,2,2,1,3,[[979,1,1,1,2],[995,1,1,2,3]]],[42,1,1,3,4,[[1012,1,1,3,4]]]],[23476,25227,25962,26746]]],["lament",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26746]]],["lamented",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25962]]],["mourned",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]]],[23476,25227]]]]},{"k":"G2355","v":[["lamentation",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23187]]]]},{"k":"G2356","v":[["*",[4,4,[[43,1,1,0,1,[[1043,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]],[58,2,2,2,4,[[1146,2,2,2,4]]]],[27828,29512,30292,30293]]],["religion",[3,3,[[43,1,1,0,1,[[1043,1,1,0,1]]],[58,2,2,1,3,[[1146,2,2,1,3]]]],[27828,30292,30293]]],["worshipping",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29512]]]]},{"k":"G2357","v":[["religious",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30292]]]]},{"k":"G2358","v":[["*",[2,2,[[46,1,1,0,1,[[1079,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[28838,29509]]],["+",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28838]]],["over",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29509]]]]},{"k":"G2359","v":[["*",[15,14,[[39,3,3,0,3,[[931,1,1,0,1],[933,1,1,1,2],[938,1,1,2,3]]],[40,1,1,3,4,[[957,1,1,3,4]]],[41,4,4,4,8,[[979,2,2,4,6],[984,1,1,6,7],[993,1,1,7,8]]],[42,2,2,8,10,[[1007,1,1,8,9],[1008,1,1,9,10]]],[43,1,1,10,11,[[1044,1,1,10,11]]],[59,1,1,11,12,[[1153,1,1,11,12]]],[65,3,2,12,14,[[1167,1,1,12,13],[1175,2,1,13,14]]]],[23196,23270,23447,24221,25233,25239,25466,25844,26525,26583,27889,30427,30711,30848]]],["hair",[10,9,[[39,2,2,0,2,[[931,1,1,0,1],[933,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,1,1,3,4,[[993,1,1,3,4]]],[42,2,2,4,6,[[1007,1,1,4,5],[1008,1,1,5,6]]],[43,1,1,6,7,[[1044,1,1,6,7]]],[59,1,1,7,8,[[1153,1,1,7,8]]],[65,2,1,8,9,[[1175,2,1,8,9]]]],[23196,23270,24221,25844,26525,26583,27889,30427,30848]]],["hairs",[5,5,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,3,3,1,4,[[979,2,2,1,3],[984,1,1,3,4]]],[65,1,1,4,5,[[1167,1,1,4,5]]]],[23447,25233,25239,25466,30711]]]]},{"k":"G2360","v":[["troubled",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]]],[23963,24724,29663]]]]},{"k":"G2361","v":[["drops",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25908]]]]},{"k":"G2362","v":[["*",[61,50,[[39,5,4,0,4,[[933,1,1,0,1],[947,2,1,1,2],[951,1,1,2,3],[953,1,1,3,4]]],[41,3,3,4,7,[[973,2,2,4,6],[994,1,1,6,7]]],[43,2,2,7,9,[[1019,1,1,7,8],[1024,1,1,8,9]]],[50,1,1,9,10,[[1107,1,1,9,10]]],[57,4,4,10,14,[[1133,1,1,10,11],[1136,1,1,11,12],[1140,1,1,12,13],[1144,1,1,13,14]]],[65,46,36,14,50,[[1167,1,1,14,15],[1168,1,1,15,16],[1169,2,1,16,17],[1170,14,7,17,24],[1171,5,5,24,29],[1172,1,1,29,30],[1173,7,5,30,35],[1174,1,1,35,36],[1177,1,1,36,37],[1178,1,1,37,38],[1179,1,1,38,39],[1180,2,2,39,41],[1182,2,2,41,43],[1185,2,2,43,45],[1186,2,2,45,47],[1187,1,1,47,48],[1188,2,2,48,50]]]],[23268,23790,23940,24039,24925,24945,25894,26979,27165,29481,29971,30030,30093,30214,30701,30730,30767,30770,30771,30772,30773,30774,30777,30778,30780,30785,30786,30790,30792,30809,30819,30820,30821,30825,30827,30830,30888,30896,30910,30929,30931,30964,30971,31021,31022,31042,31049,31058,31081,31083]]],["seat",[3,3,[[65,3,3,0,3,[[1168,1,1,0,1],[1179,1,1,1,2],[1182,1,1,2,3]]]],[30730,30910,30964]]],["seats",[4,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[65,3,2,1,3,[[1170,2,1,1,2],[1177,1,1,2,3]]]],[24945,30772,30888]]],["throne",[50,42,[[39,4,4,0,4,[[933,1,1,0,1],[947,1,1,1,2],[951,1,1,2,3],[953,1,1,3,4]]],[41,1,1,4,5,[[973,1,1,4,5]]],[43,2,2,5,7,[[1019,1,1,5,6],[1024,1,1,6,7]]],[57,4,4,7,11,[[1133,1,1,7,8],[1136,1,1,8,9],[1140,1,1,9,10],[1144,1,1,10,11]]],[65,39,31,11,42,[[1167,1,1,11,12],[1169,2,1,12,13],[1170,12,7,13,20],[1171,5,5,20,25],[1172,1,1,25,26],[1173,7,5,26,31],[1174,1,1,31,32],[1178,1,1,32,33],[1180,2,2,33,35],[1182,1,1,35,36],[1185,2,2,36,38],[1186,1,1,38,39],[1187,1,1,39,40],[1188,2,2,40,42]]]],[23268,23790,23940,24039,24925,26979,27165,29971,30030,30093,30214,30701,30767,30770,30771,30772,30773,30774,30777,30778,30780,30785,30786,30790,30792,30809,30819,30820,30821,30825,30827,30830,30896,30929,30931,30971,31021,31022,31049,31058,31081,31083]]],["thrones",[4,4,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[50,1,1,2,3,[[1107,1,1,2,3]]],[65,1,1,3,4,[[1186,1,1,3,4]]]],[23790,25894,29481,31042]]]]},{"k":"G2363","v":[["Thyatira",[4,4,[[43,1,1,0,1,[[1033,1,1,0,1]]],[65,3,3,1,4,[[1167,1,1,1,2],[1168,2,2,2,4]]]],[27497,30708,30735,30741]]]]},{"k":"G2364","v":[["*",[29,28,[[39,8,8,0,8,[[937,2,2,0,2],[938,2,2,2,4],[942,1,1,4,5],[943,2,2,5,7],[949,1,1,7,8]]],[40,6,6,8,14,[[961,2,2,8,10],[962,1,1,10,11],[963,3,3,11,14]]],[41,9,8,14,22,[[973,1,1,14,15],[974,1,1,15,16],[980,3,3,16,19],[984,2,1,19,20],[985,1,1,20,21],[995,1,1,21,22]]],[42,1,1,22,23,[[1008,1,1,22,23]]],[43,3,3,23,26,[[1019,1,1,23,24],[1024,1,1,24,25],[1038,1,1,25,26]]],[46,1,1,26,27,[[1083,1,1,26,27]]],[57,1,1,27,28,[[1143,1,1,27,28]]]],[23397,23401,23452,23454,23603,23655,23661,23831,24398,24399,24429,24489,24492,24493,24898,25009,25287,25293,25294,25512,25534,25963,26595,26966,27137,27673,28916,30196]]],["Daughter",[3,3,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23401,24398,25293]]],["Daughters",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25963]]],["daughter",[21,20,[[39,7,7,0,7,[[937,1,1,0,1],[938,2,2,1,3],[942,1,1,3,4],[943,2,2,4,6],[949,1,1,6,7]]],[40,5,5,7,12,[[961,1,1,7,8],[962,1,1,8,9],[963,3,3,9,12]]],[41,6,5,12,17,[[974,1,1,12,13],[980,2,2,13,15],[984,2,1,15,16],[985,1,1,16,17]]],[42,1,1,17,18,[[1008,1,1,17,18]]],[43,1,1,18,19,[[1024,1,1,18,19]]],[57,1,1,19,20,[[1143,1,1,19,20]]]],[23397,23452,23454,23603,23655,23661,23831,24399,24429,24489,24492,24493,25009,25287,25294,25512,25534,26595,27137,30196]]],["daughters",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,2,2,1,3,[[1019,1,1,1,2],[1038,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]]],[24898,26966,27673,28916]]]]},{"k":"G2365","v":[["daughter",[2,2,[[40,2,2,0,2,[[961,1,1,0,1],[963,1,1,1,2]]]],[24387,24488]]]]},{"k":"G2366","v":[["tempest",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30230]]]]},{"k":"G2367","v":[["thyine",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31005]]]]},{"k":"G2368","v":[["*",[6,6,[[41,2,2,0,2,[[973,2,2,0,2]]],[65,4,4,2,6,[[1171,1,1,2,3],[1174,2,2,3,5],[1184,1,1,5,6]]]],[24903,24904,30787,30830,30831,31006]]],["incense",[4,4,[[41,2,2,0,2,[[973,2,2,0,2]]],[65,2,2,2,4,[[1174,2,2,2,4]]]],[24903,24904,30830,30831]]],["odours",[2,2,[[65,2,2,0,2,[[1171,1,1,0,1],[1184,1,1,1,2]]]],[30787,31006]]]]},{"k":"G2369","v":[["censer",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30109]]]]},{"k":"G2370","v":[["incense",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24902]]]]},{"k":"G2371","v":[["displeased",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27357]]]]},{"k":"G2372","v":[["*",[18,18,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]],[44,1,1,2,3,[[1047,1,1,2,3]]],[46,1,1,3,4,[[1089,1,1,3,4]]],[47,1,1,4,5,[[1095,1,1,4,5]]],[48,1,1,5,6,[[1100,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[57,1,1,7,8,[[1143,1,1,7,8]]],[65,10,10,8,18,[[1178,1,1,8,9],[1180,3,3,9,12],[1181,2,2,12,14],[1182,2,2,14,16],[1184,1,1,16,17],[1185,1,1,17,18]]]],[25091,27613,27970,29042,29182,29303,29525,30199,30903,30934,30936,30945,30947,30953,30955,30973,30996,31032]]],["fierceness",[2,2,[[65,2,2,0,2,[[1182,1,1,0,1],[1185,1,1,1,2]]]],[30973,31032]]],["indignation",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27970]]],["wrath",[14,14,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]],[65,8,8,6,14,[[1178,1,1,6,7],[1180,3,3,7,10],[1181,2,2,10,12],[1182,1,1,12,13],[1184,1,1,13,14]]]],[25091,27613,29182,29303,29525,30199,30903,30934,30936,30945,30947,30953,30955,30996]]],["wraths",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29042]]]]},{"k":"G2373","v":[["+",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23185]]]]},{"k":"G2374","v":[["*",[39,37,[[39,5,5,0,5,[[934,1,1,0,1],[952,1,1,1,2],[953,1,1,2,3],[955,1,1,3,4],[956,1,1,4,5]]],[40,6,6,5,11,[[957,1,1,5,6],[958,1,1,6,7],[967,1,1,7,8],[969,1,1,8,9],[971,1,1,9,10],[972,1,1,10,11]]],[41,3,2,11,13,[[983,1,1,11,12],[985,2,1,12,13]]],[42,7,7,13,20,[[1006,4,4,13,17],[1014,1,1,17,18],[1016,2,2,18,20]]],[43,10,10,20,30,[[1020,1,1,20,21],[1022,3,3,21,24],[1029,2,2,24,26],[1031,1,1,26,27],[1033,2,2,27,29],[1038,1,1,29,30]]],[45,1,1,30,31,[[1077,1,1,30,31]]],[46,1,1,31,32,[[1079,1,1,31,32]]],[50,1,1,32,33,[[1110,1,1,32,33]]],[58,1,1,33,34,[[1150,1,1,33,34]]],[65,4,3,34,37,[[1169,3,2,34,36],[1170,1,1,36,37]]]],[23288,23990,24018,24189,24197,24248,24262,24644,24746,24872,24876,25412,25543,26482,26483,26488,26490,26801,26886,26893,26998,27068,27078,27082,27343,27350,27441,27509,27510,27694,28785,28836,29545,30363,30754,30766,30769]]],["door",[29,27,[[39,4,4,0,4,[[934,1,1,0,1],[953,1,1,1,2],[955,1,1,2,3],[956,1,1,3,4]]],[40,5,5,4,9,[[957,1,1,4,5],[958,1,1,5,6],[967,1,1,6,7],[971,1,1,7,8],[972,1,1,8,9]]],[41,3,2,9,11,[[983,1,1,9,10],[985,2,1,10,11]]],[42,5,5,11,16,[[1006,4,4,11,15],[1014,1,1,15,16]]],[43,4,4,16,20,[[1022,1,1,16,17],[1029,2,2,17,19],[1031,1,1,19,20]]],[45,1,1,20,21,[[1077,1,1,20,21]]],[46,1,1,21,22,[[1079,1,1,21,22]]],[50,1,1,22,23,[[1110,1,1,22,23]]],[58,1,1,23,24,[[1150,1,1,23,24]]],[65,4,3,24,27,[[1169,3,2,24,26],[1170,1,1,26,27]]]],[23288,24018,24189,24197,24248,24262,24644,24872,24876,25412,25543,26482,26483,26488,26490,26801,27068,27343,27350,27441,28785,28836,29545,30363,30754,30766,30769]]],["doors",[9,9,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[42,2,2,2,4,[[1016,2,2,2,4]]],[43,5,5,4,9,[[1022,2,2,4,6],[1033,2,2,6,8],[1038,1,1,8,9]]]],[23990,24746,26886,26893,27078,27082,27509,27510,27694]]],["gate",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[26998]]]]},{"k":"G2375","v":[["shield",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29353]]]]},{"k":"G2376","v":[["window",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[27635,29022]]]]},{"k":"G2377","v":[["*",[4,4,[[40,1,1,0,1,[[969,1,1,0,1]]],[42,3,3,1,4,[[1006,1,1,1,2],[1014,2,2,2,4]]]],[24751,26484,26801,26802]]],["door",[2,2,[[42,2,2,0,2,[[1014,2,2,0,2]]]],[26801,26802]]],["porter",[2,2,[[40,1,1,0,1,[[969,1,1,0,1]]],[42,1,1,1,2,[[1006,1,1,1,2]]]],[24751,26484]]]]},{"k":"G2378","v":[["*",[29,29,[[39,2,2,0,2,[[937,1,1,0,1],[940,1,1,1,2]]],[40,2,2,2,4,[[965,1,1,2,3],[968,1,1,3,4]]],[41,2,2,4,6,[[974,1,1,4,5],[985,1,1,5,6]]],[43,2,2,6,8,[[1024,2,2,6,8]]],[44,1,1,8,9,[[1057,1,1,8,9]]],[45,1,1,9,10,[[1071,1,1,9,10]]],[48,1,1,10,11,[[1101,1,1,10,11]]],[49,2,2,11,13,[[1104,1,1,11,12],[1106,1,1,12,13]]],[57,15,15,13,28,[[1137,1,1,13,14],[1139,1,1,14,15],[1140,1,1,15,16],[1141,3,3,16,19],[1142,6,6,19,25],[1143,1,1,25,26],[1145,2,2,26,28]]],[59,1,1,28,29,[[1152,1,1,28,29]]]],[23392,23496,24587,24706,24997,25519,27157,27158,28246,28585,29306,29408,29460,30031,30091,30095,30114,30128,30131,30134,30138,30141,30144,30145,30159,30176,30256,30257,30404]]],["Sacrifice",[2,2,[[57,2,2,0,2,[[1142,2,2,0,2]]]],[30138,30141]]],["sacrifice",[15,15,[[39,2,2,0,2,[[937,1,1,0,1],[940,1,1,1,2]]],[40,1,1,2,3,[[965,1,1,2,3]]],[41,1,1,3,4,[[974,1,1,3,4]]],[43,1,1,4,5,[[1024,1,1,4,5]]],[44,1,1,5,6,[[1057,1,1,5,6]]],[48,1,1,6,7,[[1101,1,1,6,7]]],[49,2,2,7,9,[[1104,1,1,7,8],[1106,1,1,8,9]]],[57,6,6,9,15,[[1139,1,1,9,10],[1141,1,1,10,11],[1142,2,2,11,13],[1143,1,1,13,14],[1145,1,1,14,15]]]],[23392,23496,24587,24997,27157,28246,29306,29408,29460,30091,30131,30145,30159,30176,30256]]],["sacrifices",[12,12,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[43,1,1,2,3,[[1024,1,1,2,3]]],[45,1,1,3,4,[[1071,1,1,3,4]]],[57,7,7,4,11,[[1137,1,1,4,5],[1140,1,1,5,6],[1141,2,2,6,8],[1142,2,2,8,10],[1145,1,1,10,11]]],[59,1,1,11,12,[[1152,1,1,11,12]]]],[24706,25519,27158,28585,30031,30095,30114,30128,30134,30144,30257,30404]]]]},{"k":"G2379","v":[["*",[23,21,[[39,6,6,0,6,[[933,2,2,0,2],[951,4,4,2,6]]],[41,2,2,6,8,[[973,1,1,6,7],[983,1,1,7,8]]],[44,1,1,8,9,[[1056,1,1,8,9]]],[45,3,2,9,11,[[1070,2,1,9,10],[1071,1,1,10,11]]],[57,2,2,11,13,[[1139,1,1,11,12],[1145,1,1,12,13]]],[58,1,1,13,14,[[1147,1,1,13,14]]],[65,8,7,14,21,[[1172,1,1,14,15],[1174,3,2,15,17],[1175,1,1,17,18],[1177,1,1,18,19],[1180,1,1,19,20],[1182,1,1,20,21]]]],[23257,23258,23936,23937,23938,23953,24904,25456,28212,28553,28585,30077,30251,30314,30802,30830,30832,30853,30873,30944,30961]]],["altar",[22,20,[[39,6,6,0,6,[[933,2,2,0,2],[951,4,4,2,6]]],[41,2,2,6,8,[[973,1,1,6,7],[983,1,1,7,8]]],[45,3,2,8,10,[[1070,2,1,8,9],[1071,1,1,9,10]]],[57,2,2,10,12,[[1139,1,1,10,11],[1145,1,1,11,12]]],[58,1,1,12,13,[[1147,1,1,12,13]]],[65,8,7,13,20,[[1172,1,1,13,14],[1174,3,2,14,16],[1175,1,1,16,17],[1177,1,1,17,18],[1180,1,1,18,19],[1182,1,1,19,20]]]],[23257,23258,23936,23937,23938,23953,24904,25456,28553,28585,30077,30251,30314,30802,30830,30832,30853,30873,30944,30961]]],["altars",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28212]]]]},{"k":"G2380","v":[["*",[14,13,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,4,4,2,6,[[987,3,3,2,5],[994,1,1,5,6]]],[42,1,1,6,7,[[1006,1,1,6,7]]],[43,4,4,7,11,[[1027,1,1,7,8],[1028,1,1,8,9],[1031,2,2,9,11]]],[45,3,2,11,13,[[1066,1,1,11,12],[1071,2,1,12,13]]]],[23876,24766,25611,25615,25618,25871,26491,27272,27314,27427,27432,28461,28587]]],["kill",[3,3,[[41,1,1,0,1,[[987,1,1,0,1]]],[42,1,1,1,2,[[1006,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]]],[25611,26491,27272]]],["killed",[5,5,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,3,3,2,5,[[987,2,2,2,4],[994,1,1,4,5]]]],[23876,24766,25615,25618,25871]]],["sacrifice",[4,3,[[43,2,2,0,2,[[1031,2,2,0,2]]],[45,2,1,2,3,[[1071,2,1,2,3]]]],[27427,27432,28587]]],["sacrificed",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28461]]],["slay",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27314]]]]},{"k":"G2381","v":[["Thomas",[12,12,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[42,8,8,3,11,[[1007,1,1,3,4],[1010,1,1,4,5],[1016,5,5,5,10],[1017,1,1,10,11]]],[43,1,1,11,12,[[1018,1,1,11,12]]]],[23420,24306,25161,26539,26673,26891,26893,26894,26895,26896,26900,26936]]]]},{"k":"G2382","v":[["*",[5,4,[[48,1,1,0,1,[[1102,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]],[65,3,2,2,4,[[1175,3,2,2,4]]]],[29351,29629,30849,30857]]],["breastplate",[2,2,[[48,1,1,0,1,[[1102,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]]],[29351,29629]]],["breastplates",[3,2,[[65,3,2,0,2,[[1175,3,2,0,2]]]],[30849,30857]]]]},{"k":"G2383","v":[["Jairus",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24386,25286]]]]},{"k":"G2384","v":[["*",[27,25,[[39,6,5,0,5,[[929,4,3,0,3],[936,1,1,3,4],[950,1,1,4,5]]],[40,1,1,5,6,[[968,1,1,5,6]]],[41,4,4,6,10,[[973,1,1,6,7],[975,1,1,7,8],[985,1,1,8,9],[992,1,1,9,10]]],[42,3,3,10,13,[[1000,3,3,10,13]]],[43,8,7,13,20,[[1020,1,1,13,14],[1024,7,6,14,20]]],[44,2,2,20,22,[[1054,1,1,20,21],[1056,1,1,21,22]]],[57,3,3,22,25,[[1143,3,3,22,25]]]],[23146,23159,23160,23356,23904,24699,24926,25059,25546,25816,26161,26162,26168,27009,27124,27128,27130,27131,27148,27162,28168,28235,30181,30192,30193]]],["Jacob",[26,24,[[39,6,5,0,5,[[929,4,3,0,3],[936,1,1,3,4],[950,1,1,4,5]]],[40,1,1,5,6,[[968,1,1,5,6]]],[41,4,4,6,10,[[973,1,1,6,7],[975,1,1,7,8],[985,1,1,8,9],[992,1,1,9,10]]],[42,2,2,10,12,[[1000,2,2,10,12]]],[43,8,7,12,19,[[1020,1,1,12,13],[1024,7,6,13,19]]],[44,2,2,19,21,[[1054,1,1,19,20],[1056,1,1,20,21]]],[57,3,3,21,24,[[1143,3,3,21,24]]]],[23146,23159,23160,23356,23904,24699,24926,25059,25546,25816,26161,26168,27009,27124,27128,27130,27131,27148,27162,28168,28235,30181,30192,30193]]],["Jacob's",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26162]]]]},{"k":"G2385","v":[["*",[43,38,[[39,7,6,0,6,[[932,1,1,0,1],[938,3,2,1,3],[941,1,1,3,4],[945,1,1,4,5],[955,1,1,5,6]]],[40,15,13,6,19,[[957,2,2,6,8],[959,3,2,8,10],[961,2,1,10,11],[962,1,1,11,12],[965,1,1,12,13],[966,2,2,13,15],[969,1,1,15,16],[970,1,1,16,17],[971,1,1,17,18],[972,1,1,18,19]]],[41,8,8,19,27,[[977,1,1,19,20],[978,3,3,20,23],[980,1,1,23,24],[981,2,2,24,26],[996,1,1,26,27]]],[43,7,5,27,32,[[1018,3,1,27,28],[1029,2,2,28,30],[1032,1,1,30,31],[1038,1,1,31,32]]],[45,1,1,32,33,[[1076,1,1,32,33]]],[47,3,3,33,36,[[1091,1,1,33,34],[1092,2,2,34,36]]],[58,1,1,36,37,[[1146,1,1,36,37]]],[64,1,1,37,38,[[1166,1,1,37,38]]]],[23230,23419,23420,23594,23701,24185,24234,24244,24305,24306,24401,24410,24540,24623,24629,24720,24787,24866,24874,25117,25160,25161,25162,25296,25329,25355,26001,26936,27339,27354,27455,27682,28725,29076,29090,29093,30267,30673]]],["+",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29090]]],["James",[41,37,[[39,6,6,0,6,[[932,1,1,0,1],[938,2,2,1,3],[941,1,1,3,4],[945,1,1,4,5],[955,1,1,5,6]]],[40,15,13,6,19,[[957,2,2,6,8],[959,3,2,8,10],[961,2,1,10,11],[962,1,1,11,12],[965,1,1,12,13],[966,2,2,13,15],[969,1,1,15,16],[970,1,1,16,17],[971,1,1,17,18],[972,1,1,18,19]]],[41,8,8,19,27,[[977,1,1,19,20],[978,3,3,20,23],[980,1,1,23,24],[981,2,2,24,26],[996,1,1,26,27]]],[43,7,5,27,32,[[1018,3,1,27,28],[1029,2,2,28,30],[1032,1,1,30,31],[1038,1,1,31,32]]],[45,1,1,32,33,[[1076,1,1,32,33]]],[47,2,2,33,35,[[1091,1,1,33,34],[1092,1,1,34,35]]],[58,1,1,35,36,[[1146,1,1,35,36]]],[64,1,1,36,37,[[1166,1,1,36,37]]]],[23230,23419,23420,23594,23701,24185,24234,24244,24305,24306,24401,24410,24540,24623,24629,24720,24787,24866,24874,25117,25160,25161,25162,25296,25329,25355,26001,26936,27339,27354,27455,27682,28725,29076,29093,30267,30673]]],["the",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23420]]]]},{"k":"G2386","v":[["*",[3,3,[[45,3,3,0,3,[[1073,3,3,0,3]]]],[28643,28662,28664]]],["healing",[2,2,[[45,2,2,0,2,[[1073,2,2,0,2]]]],[28643,28664]]],["healings",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28662]]]]},{"k":"G2387","v":[["Jambres",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29861]]]]},{"k":"G2388","v":[["Janna",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25049]]]]},{"k":"G2389","v":[["Jannes",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29861]]]]},{"k":"G2390","v":[["*",[28,28,[[39,4,4,0,4,[[936,2,2,0,2],[941,1,1,2,3],[943,1,1,3,4]]],[40,1,1,4,5,[[961,1,1,4,5]]],[41,12,12,5,17,[[976,1,1,5,6],[977,1,1,6,7],[978,2,2,7,9],[979,1,1,9,10],[980,1,1,10,11],[981,3,3,11,14],[986,1,1,14,15],[989,1,1,15,16],[994,1,1,16,17]]],[42,3,3,17,20,[[1000,1,1,17,18],[1001,1,1,18,19],[1008,1,1,19,20]]],[43,5,5,20,25,[[1020,1,1,20,21],[1026,1,1,21,22],[1027,1,1,22,23],[1045,2,2,23,25]]],[57,1,1,25,26,[[1144,1,1,25,26]]],[58,1,1,26,27,[[1150,1,1,26,27]]],[59,1,1,27,28,[[1152,1,1,27,28]]]],[23353,23358,23554,23661,24393,25081,25124,25163,25165,25202,25292,25303,25312,25343,25557,25666,25915,26203,26223,26620,27007,27250,27297,27907,27926,30225,30370,30423]]],["+",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27250]]],["heal",[7,7,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,3,3,1,4,[[976,1,1,1,2],[977,1,1,2,3],[981,1,1,3,4]]],[42,2,2,4,6,[[1000,1,1,4,5],[1008,1,1,5,6]]],[43,1,1,6,7,[[1045,1,1,6,7]]]],[23554,25081,25124,25303,26203,26620,27926]]],["healed",[18,18,[[39,2,2,0,2,[[936,2,2,0,2]]],[40,1,1,2,3,[[961,1,1,2,3]]],[41,9,9,3,12,[[978,2,2,3,5],[979,1,1,5,6],[980,1,1,6,7],[981,2,2,7,9],[986,1,1,9,10],[989,1,1,10,11],[994,1,1,11,12]]],[42,1,1,12,13,[[1001,1,1,12,13]]],[43,2,2,13,15,[[1020,1,1,13,14],[1045,1,1,14,15]]],[57,1,1,15,16,[[1144,1,1,15,16]]],[58,1,1,16,17,[[1150,1,1,16,17]]],[59,1,1,17,18,[[1152,1,1,17,18]]]],[23353,23358,24393,25163,25165,25202,25292,25312,25343,25557,25666,25915,26223,27007,27907,30225,30370,30423]]],["healing",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27297]]],["whole",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23661]]]]},{"k":"G2391","v":[["Jared",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25062]]]]},{"k":"G2392","v":[["*",[3,3,[[41,1,1,0,1,[[985,1,1,0,1]]],[43,2,2,1,3,[[1021,2,2,1,3]]]],[25550,27044,27052]]],["cures",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25550]]],["heal",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27052]]],["healing",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27044]]]]},{"k":"G2393","v":[["jasper",[4,4,[[65,4,4,0,4,[[1170,1,1,0,1],[1187,3,3,1,4]]]],[30771,31064,31071,31072]]]]},{"k":"G2394","v":[["Jason",[5,5,[[43,4,4,0,4,[[1034,4,4,0,4]]],[44,1,1,4,5,[[1061,1,1,4,5]]]],[27528,27529,27530,27532,28357]]]]},{"k":"G2395","v":[["*",[7,7,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[961,1,1,2,3]]],[41,3,3,3,6,[[976,1,1,3,4],[977,1,1,4,5],[980,1,1,5,6]]],[50,1,1,6,7,[[1110,1,1,6,7]]]],[23391,24277,24390,25086,25138,25288,29556]]],["Physician",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25086]]],["physician",[4,4,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,1,1,2,3,[[977,1,1,2,3]]],[50,1,1,3,4,[[1110,1,1,3,4]]]],[23391,24277,25138,29556]]],["physicians",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24390,25288]]]]},{"k":"G2396","v":[["*",[26,26,[[39,4,4,0,4,[[953,3,3,0,3],[954,1,1,3,4]]],[40,6,6,4,10,[[958,1,1,4,5],[959,1,1,5,6],[967,1,1,6,7],[969,1,1,7,8],[971,1,1,8,9],[972,1,1,9,10]]],[42,14,14,10,24,[[997,3,3,10,13],[999,1,1,13,14],[1001,1,1,14,15],[1003,1,1,15,16],[1007,2,2,16,18],[1008,1,1,18,19],[1012,1,1,19,20],[1014,1,1,20,21],[1015,3,3,21,24]]],[44,1,1,24,25,[[1047,1,1,24,25]]],[47,1,1,25,26,[[1095,1,1,25,26]]]],[24028,24030,24033,24119,24284,24322,24661,24718,24830,24879,26073,26080,26091,26146,26224,26354,26526,26559,26599,26755,26806,26829,26830,26839,27979,29164]]],["Behold",[12,12,[[40,2,2,0,2,[[958,1,1,0,1],[959,1,1,1,2]]],[42,8,8,2,10,[[997,3,3,2,5],[1001,1,1,5,6],[1007,1,1,6,7],[1015,3,3,7,10]]],[44,1,1,10,11,[[1047,1,1,10,11]]],[47,1,1,11,12,[[1095,1,1,11,12]]]],[24284,24322,26073,26080,26091,26224,26559,26829,26830,26839,27979,29164]]],["Lo",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26755]]],["behold",[10,10,[[39,3,3,0,3,[[953,2,2,0,2],[954,1,1,2,3]]],[40,3,3,3,6,[[967,1,1,3,4],[971,1,1,4,5],[972,1,1,5,6]]],[42,4,4,6,10,[[999,1,1,6,7],[1007,1,1,7,8],[1008,1,1,8,9],[1014,1,1,9,10]]]],[24028,24030,24119,24661,24830,24879,26146,26526,26599,26806]]],["lo",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[42,1,1,1,2,[[1003,1,1,1,2]]]],[24033,26354]]],["see",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24718]]]]},{"k":"G2397","v":[["countenance",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24198]]]]},{"k":"G2398","v":[["*",[113,109,[[39,10,10,0,10,[[937,1,1,0,1],[942,2,2,1,3],[945,2,2,3,5],[948,1,1,5,6],[950,1,1,6,7],[952,1,1,7,8],[953,2,2,8,10]]],[40,8,8,10,18,[[960,1,1,10,11],[962,2,2,11,13],[963,1,1,13,14],[965,2,2,14,16],[969,1,1,16,17],[971,1,1,17,18]]],[41,6,6,18,24,[[974,1,1,18,19],[978,2,2,19,21],[981,1,1,21,22],[982,2,2,22,24]]],[42,15,14,24,38,[[997,3,2,24,26],[1000,1,1,26,27],[1001,2,2,27,29],[1003,1,1,29,30],[1004,1,1,30,31],[1006,3,3,31,34],[1009,1,1,34,35],[1011,1,1,35,36],[1012,1,1,36,37],[1015,1,1,37,38]]],[43,15,15,38,53,[[1018,3,3,38,41],[1019,2,2,41,43],[1020,1,1,43,44],[1021,2,2,44,46],[1030,1,1,46,47],[1037,1,1,47,48],[1038,1,1,48,49],[1040,1,1,49,50],[1041,1,1,50,51],[1042,1,1,51,52],[1045,1,1,52,53]]],[44,5,5,53,58,[[1053,1,1,53,54],[1055,1,1,54,55],[1056,1,1,55,56],[1059,2,2,56,58]]],[45,15,13,58,71,[[1064,2,1,58,59],[1065,1,1,59,60],[1067,1,1,60,61],[1068,5,4,61,65],[1070,1,1,65,66],[1072,1,1,66,67],[1073,1,1,67,68],[1075,1,1,68,69],[1076,2,2,69,71]]],[47,3,3,71,74,[[1092,1,1,71,72],[1096,2,2,72,74]]],[48,2,2,74,76,[[1101,2,2,74,76]]],[50,1,1,76,77,[[1109,1,1,76,77]]],[51,4,3,77,80,[[1112,2,2,77,79],[1114,2,1,79,80]]],[53,9,9,80,89,[[1120,1,1,80,81],[1121,3,3,81,84],[1122,1,1,84,85],[1123,2,2,85,87],[1124,2,2,87,89]]],[54,2,2,89,91,[[1125,1,1,89,90],[1128,1,1,90,91]]],[55,4,4,91,95,[[1129,2,2,91,93],[1130,2,2,93,95]]],[57,4,4,95,99,[[1136,1,1,95,96],[1139,1,1,96,97],[1141,1,1,97,98],[1145,1,1,98,99]]],[58,1,1,99,100,[[1146,1,1,99,100]]],[59,2,2,100,102,[[1153,2,2,100,102]]],[60,6,6,102,108,[[1156,1,1,102,103],[1157,2,2,103,105],[1158,3,3,105,108]]],[64,1,1,108,109,[[1166,1,1,108,109]]]],[23380,23610,23620,23701,23719,23809,23877,23960,24022,24023,24357,24438,24439,24496,24540,24566,24720,24846,24976,25187,25190,25311,25386,25397,26055,26085,26200,26228,26253,26346,26425,26484,26485,26493,26631,26718,26758,26852,26930,26942,26948,26955,26957,27008,27045,27054,27398,27654,27670,27753,27792,27815,27929,28148,28191,28233,28284,28285,28418,28445,28485,28489,28491,28494,28524,28547,28621,28645,28713,28741,28756,29083,29193,29197,29326,29328,29535,29584,29585,29614,29722,29735,29736,29743,29749,29767,29771,29789,29803,29818,29873,29895,29904,29913,29917,30024,30091,30117,30253,30280,30425,30429,30499,30516,30522,30525,30538,30539,30678]]],["+",[21,21,[[39,6,6,0,6,[[942,2,2,0,2],[945,2,2,2,4],[948,1,1,4,5],[952,1,1,5,6]]],[40,8,8,6,14,[[960,1,1,6,7],[962,2,2,7,9],[963,1,1,9,10],[965,2,2,10,12],[969,1,1,12,13],[971,1,1,13,14]]],[41,2,2,14,16,[[981,1,1,14,15],[982,1,1,15,16]]],[43,2,2,16,18,[[1038,1,1,16,17],[1040,1,1,17,18]]],[47,1,1,18,19,[[1092,1,1,18,19]]],[51,1,1,19,20,[[1114,1,1,19,20]]],[60,1,1,20,21,[[1157,1,1,20,21]]]],[23610,23620,23701,23719,23809,23960,24357,24438,24439,24496,24540,24566,24720,24846,25311,25386,27670,27753,29083,29614,30522]]],["acquaintance",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27792]]],["at",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29767]]],["company",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27045]]],["due",[3,3,[[47,1,1,0,1,[[1096,1,1,0,1]]],[53,1,1,1,2,[[1120,1,1,1,2]]],[55,1,1,2,3,[[1129,1,1,2,3]]]],[29197,29722,29895]]],["his",[5,5,[[39,1,1,0,1,[[950,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]],[57,1,1,3,4,[[1136,1,1,3,4]]],[60,1,1,4,5,[[1157,1,1,4,5]]]],[23877,26228,29803,30024,30516]]],["own",[74,71,[[39,2,2,0,2,[[937,1,1,0,1],[953,1,1,1,2]]],[41,4,4,2,6,[[974,1,1,2,3],[978,2,2,3,5],[982,1,1,5,6]]],[42,14,13,6,19,[[997,3,2,6,8],[1000,1,1,8,9],[1001,1,1,9,10],[1003,1,1,10,11],[1004,1,1,11,12],[1006,3,3,12,15],[1009,1,1,15,16],[1011,1,1,16,17],[1012,1,1,17,18],[1015,1,1,18,19]]],[43,10,10,19,29,[[1018,2,2,19,21],[1019,2,2,21,23],[1020,1,1,23,24],[1021,1,1,24,25],[1030,1,1,25,26],[1037,1,1,26,27],[1042,1,1,27,28],[1045,1,1,28,29]]],[44,5,5,29,34,[[1053,1,1,29,30],[1055,1,1,30,31],[1056,1,1,31,32],[1059,2,2,32,34]]],[45,12,10,34,44,[[1064,2,1,34,35],[1065,1,1,35,36],[1067,1,1,36,37],[1068,4,3,37,40],[1070,1,1,40,41],[1072,1,1,41,42],[1076,2,2,42,44]]],[47,1,1,44,45,[[1096,1,1,44,45]]],[48,2,2,45,47,[[1101,2,2,45,47]]],[50,1,1,47,48,[[1109,1,1,47,48]]],[51,3,3,48,51,[[1112,2,2,48,50],[1114,1,1,50,51]]],[53,5,5,51,56,[[1121,3,3,51,54],[1123,1,1,54,55],[1124,1,1,55,56]]],[54,2,2,56,58,[[1125,1,1,56,57],[1128,1,1,57,58]]],[55,3,3,58,61,[[1129,1,1,58,59],[1130,2,2,59,61]]],[57,3,3,61,64,[[1139,1,1,61,62],[1141,1,1,62,63],[1145,1,1,63,64]]],[58,1,1,64,65,[[1146,1,1,64,65]]],[59,2,2,65,67,[[1153,2,2,65,67]]],[60,3,3,67,70,[[1158,3,3,67,70]]],[64,1,1,70,71,[[1166,1,1,70,71]]]],[23380,24022,24976,25187,25190,25397,26055,26085,26200,26253,26346,26425,26484,26485,26493,26631,26718,26758,26852,26930,26948,26955,26957,27008,27054,27398,27654,27815,27929,28148,28191,28233,28284,28285,28418,28445,28485,28489,28491,28524,28547,28621,28741,28756,29193,29326,29328,29535,29584,29585,29614,29735,29736,29743,29771,29789,29818,29873,29904,29913,29917,30091,30117,30253,30280,30425,30429,30525,30538,30539,30678]]],["private",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30499]]],["proper",[2,2,[[43,1,1,0,1,[[1018,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[26942,28494]]],["several",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24023]]],["severally",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28645]]],["their",[2,2,[[45,1,1,0,1,[[1075,1,1,0,1]]],[53,1,1,1,2,[[1122,1,1,1,2]]]],[28713,29749]]]]},{"k":"G2399","v":[["*",[5,5,[[43,1,1,0,1,[[1021,1,1,0,1]]],[45,3,3,1,4,[[1075,3,3,1,4]]],[46,1,1,4,5,[[1088,1,1,4,5]]]],[27035,28694,28701,28702,28995]]],["ignorant",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27035]]],["rude",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28995]]],["unlearned",[3,3,[[45,3,3,0,3,[[1075,3,3,0,3]]]],[28694,28701,28702]]]]},{"k":"G2400","v":[["*",[213,204,[[39,62,59,0,59,[[929,2,2,0,2],[930,4,4,2,6],[931,2,2,6,8],[932,1,1,8,9],[935,1,1,9,10],[936,5,5,10,15],[937,6,6,15,21],[938,1,1,21,22],[939,3,3,22,25],[940,8,8,25,33],[941,1,1,33,34],[943,1,1,34,35],[945,3,2,35,37],[947,2,2,37,39],[948,2,2,39,41],[949,1,1,41,42],[950,1,1,42,43],[951,2,2,43,45],[952,4,3,45,48],[953,1,1,48,49],[954,4,4,49,53],[955,1,1,53,54],[956,6,5,54,59]]],[40,12,11,59,70,[[957,1,1,59,60],[959,1,1,60,61],[960,1,1,61,62],[961,1,1,62,63],[966,2,2,63,65],[969,3,2,65,67],[970,2,2,67,69],[971,1,1,69,70]]],[41,59,56,70,126,[[973,6,6,70,76],[974,5,5,76,81],[977,2,2,81,83],[978,1,1,83,84],[979,5,5,84,89],[980,1,1,89,90],[981,3,3,90,93],[982,3,3,93,96],[983,3,3,96,99],[985,6,6,99,105],[986,1,1,105,106],[987,1,1,106,107],[989,5,2,107,109],[990,2,2,109,111],[991,3,3,111,114],[994,5,5,114,119],[995,4,4,119,123],[996,3,3,123,126]]],[42,5,5,126,131,[[1000,1,1,126,127],[1008,1,1,127,128],[1012,1,1,128,129],[1015,2,2,129,131]]],[43,23,23,131,154,[[1018,1,1,131,132],[1019,1,1,132,133],[1022,3,3,133,136],[1024,1,1,136,137],[1025,2,2,137,139],[1026,2,2,139,141],[1027,4,4,141,145],[1028,1,1,145,146],[1029,1,1,146,147],[1030,3,3,147,150],[1033,1,1,150,151],[1037,2,2,151,153],[1044,1,1,153,154]]],[44,1,1,154,155,[[1054,1,1,154,155]]],[45,1,1,155,156,[[1076,1,1,155,156]]],[46,6,5,156,161,[[1082,1,1,156,157],[1083,3,2,157,159],[1084,1,1,159,160],[1089,1,1,160,161]]],[47,1,1,161,162,[[1091,1,1,161,162]]],[57,4,4,162,166,[[1134,1,1,162,163],[1140,1,1,163,164],[1142,2,2,164,166]]],[58,7,7,166,173,[[1148,3,3,166,169],[1150,4,4,169,173]]],[59,1,1,173,174,[[1152,1,1,173,174]]],[64,1,1,174,175,[[1166,1,1,174,175]]],[65,30,29,175,204,[[1167,2,2,175,177],[1168,2,2,177,179],[1169,5,4,179,183],[1170,2,2,183,185],[1171,2,2,185,187],[1172,4,4,187,191],[1173,1,1,191,192],[1175,1,1,192,193],[1177,1,1,193,194],[1178,1,1,194,195],[1180,2,2,195,197],[1181,1,1,197,198],[1182,1,1,198,199],[1185,1,1,199,200],[1187,2,2,200,202],[1188,2,2,202,204]]]],[23164,23167,23170,23178,23182,23188,23208,23209,23220,23320,23347,23369,23374,23377,23379,23381,23382,23389,23397,23399,23411,23433,23467,23469,23478,23491,23499,23507,23530,23531,23535,23536,23538,23542,23655,23703,23705,23778,23789,23810,23822,23831,23876,23952,23956,23980,23982,23983,24014,24099,24100,24101,24105,24180,24197,24202,24204,24206,24215,24217,24320,24326,24386,24616,24621,24738,24740,24795,24796,24861,24913,24924,24929,24931,24937,24941,24982,24983,24998,25007,25021,25119,25125,25169,25207,25220,25222,25229,25232,25286,25331,25339,25340,25366,25382,25388,25436,25437,25446,25525,25529,25534,25548,25550,25553,25555,25617,25672,25674,25716,25719,25733,25739,25751,25874,25885,25895,25902,25911,25949,25950,25964,25985,25995,26004,26040,26191,26595,26758,26851,26852,26933,26956,27068,27084,27087,27172,27203,27212,27226,27227,27276,27278,27280,27289,27318,27344,27373,27387,27408,27484,27648,27651,27879,28188,28769,28894,28900,28907,28927,29036,29077,29990,30100,30140,30142,30322,30323,30324,30358,30361,30363,30365,30405,30686,30704,30715,30727,30739,30754,30755,30757,30766,30769,30770,30784,30785,30795,30798,30801,30805,30819,30852,30886,30894,30927,30940,30951,30969,31028,31056,31058,31087,31092]]],["+",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24204]]],["Behold",[64,64,[[39,17,17,0,17,[[929,1,1,0,1],[938,1,1,1,2],[939,2,2,2,4],[940,4,4,4,8],[941,1,1,8,9],[947,1,1,9,10],[948,1,1,10,11],[949,1,1,11,12],[950,1,1,12,13],[951,1,1,13,14],[952,2,2,14,16],[953,1,1,16,17]]],[40,5,5,17,22,[[957,1,1,17,18],[959,1,1,18,19],[960,1,1,19,20],[966,1,1,20,21],[971,1,1,21,22]]],[41,12,12,22,34,[[973,1,1,22,23],[974,1,1,23,24],[979,3,3,24,27],[982,1,1,27,28],[985,3,3,28,31],[990,1,1,31,32],[991,1,1,32,33],[994,1,1,33,34]]],[42,2,2,34,36,[[1012,1,1,34,35],[1015,1,1,35,36]]],[43,6,6,36,42,[[1019,1,1,36,37],[1022,1,1,37,38],[1024,1,1,38,39],[1026,1,1,39,40],[1027,2,2,40,42]]],[44,1,1,42,43,[[1054,1,1,42,43]]],[45,1,1,43,44,[[1076,1,1,43,44]]],[46,1,1,44,45,[[1089,1,1,44,45]]],[57,2,2,45,47,[[1134,1,1,45,46],[1140,1,1,46,47]]],[58,6,6,47,53,[[1148,3,3,47,50],[1150,3,3,50,53]]],[59,1,1,53,54,[[1152,1,1,53,54]]],[64,1,1,54,55,[[1166,1,1,54,55]]],[65,9,9,55,64,[[1167,1,1,55,56],[1168,1,1,56,57],[1169,3,3,57,60],[1182,1,1,60,61],[1187,2,2,61,63],[1188,1,1,63,64]]]],[23167,23433,23469,23478,23491,23507,23536,23538,23542,23789,23810,23831,23876,23956,23982,23983,24014,24217,24320,24326,24621,24861,24931,25007,25220,25222,25229,25382,25525,25550,25553,25719,25739,25874,26758,26852,26956,27084,27172,27226,27278,27280,28188,28769,29036,29990,30100,30322,30323,30324,30358,30361,30365,30405,30686,30704,30739,30755,30757,30766,30969,31056,31058,31087]]],["Lo",[8,8,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,2,2,1,3,[[966,1,1,1,2],[969,1,1,2,3]]],[41,3,3,3,6,[[987,1,1,3,4],[989,1,1,4,5],[990,1,1,5,6]]],[57,2,2,6,8,[[1142,2,2,6,8]]]],[23980,24616,24738,25617,25672,25716,30140,30142]]],["See",[2,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]]],[25674,27212]]],["behold",[116,114,[[39,37,36,0,36,[[929,1,1,0,1],[930,3,3,1,4],[932,1,1,4,5],[935,1,1,5,6],[936,5,5,6,11],[937,6,6,11,17],[939,1,1,17,18],[940,4,4,18,22],[943,1,1,22,23],[945,3,2,23,25],[947,1,1,25,26],[948,1,1,26,27],[951,1,1,27,28],[952,1,1,28,29],[954,3,3,29,32],[955,1,1,32,33],[956,3,3,33,36]]],[40,3,3,36,39,[[961,1,1,36,37],[969,1,1,37,38],[970,1,1,38,39]]],[41,36,36,39,75,[[973,4,4,39,43],[974,3,3,43,46],[977,2,2,46,48],[978,1,1,48,49],[979,2,2,49,51],[980,1,1,51,52],[981,2,2,52,54],[982,2,2,54,56],[983,3,3,56,59],[985,2,2,59,61],[986,1,1,61,62],[989,1,1,62,63],[991,2,2,63,65],[994,4,4,65,69],[995,3,3,69,72],[996,3,3,72,75]]],[42,3,3,75,78,[[1000,1,1,75,76],[1008,1,1,76,77],[1015,1,1,77,78]]],[43,14,14,78,92,[[1018,1,1,78,79],[1022,2,2,79,81],[1025,1,1,81,82],[1026,1,1,82,83],[1027,2,2,83,85],[1028,1,1,85,86],[1029,1,1,86,87],[1030,2,2,87,89],[1033,1,1,89,90],[1037,2,2,90,92]]],[46,5,4,92,96,[[1082,1,1,92,93],[1083,3,2,93,95],[1084,1,1,95,96]]],[47,1,1,96,97,[[1091,1,1,96,97]]],[58,1,1,97,98,[[1150,1,1,97,98]]],[65,16,16,98,114,[[1167,1,1,98,99],[1168,1,1,99,100],[1169,2,2,100,102],[1170,2,2,102,104],[1171,1,1,104,105],[1172,2,2,105,107],[1175,1,1,107,108],[1177,1,1,108,109],[1178,1,1,109,110],[1180,1,1,110,111],[1181,1,1,111,112],[1185,1,1,112,113],[1188,1,1,113,114]]]],[23164,23170,23182,23188,23220,23320,23347,23369,23374,23377,23379,23381,23382,23389,23397,23399,23411,23467,23499,23530,23531,23535,23655,23703,23705,23778,23822,23952,23983,24099,24100,24105,24180,24197,24202,24206,24386,24740,24795,24913,24924,24929,24941,24983,24998,25021,25119,25125,25169,25207,25232,25286,25331,25339,25366,25388,25436,25437,25446,25529,25548,25555,25672,25733,25751,25885,25895,25902,25911,25949,25964,25985,25995,26004,26040,26191,26595,26851,26933,27068,27087,27203,27227,27276,27289,27318,27344,27373,27387,27484,27648,27651,28894,28900,28907,28927,29077,30363,30715,30727,30754,30755,30769,30770,30784,30795,30801,30852,30886,30894,30940,30951,31028,31092]]],["lo",[21,21,[[39,6,6,0,6,[[930,1,1,0,1],[931,2,2,1,3],[954,1,1,3,4],[956,2,2,4,6]]],[40,2,2,6,8,[[969,1,1,6,7],[970,1,1,7,8]]],[41,6,6,8,14,[[973,1,1,8,9],[974,1,1,9,10],[981,1,1,10,11],[985,1,1,11,12],[989,1,1,12,13],[995,1,1,13,14]]],[43,2,2,14,16,[[1030,1,1,14,15],[1044,1,1,15,16]]],[65,5,5,16,21,[[1171,1,1,16,17],[1172,2,2,17,19],[1173,1,1,19,20],[1180,1,1,20,21]]]],[23178,23208,23209,24101,24202,24215,24738,24796,24937,24982,25340,25534,25672,25950,27408,27879,30785,30798,30805,30819,30927]]],["see",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25674]]]]},{"k":"G2401","v":[["Idumaea",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24296]]]]},{"k":"G2402","v":[["sweat",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25908]]]]},{"k":"G2403","v":[["Jezebel",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30737]]]]},{"k":"G2404","v":[["Hierapolis",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29555]]]]},{"k":"G2405","v":[["*",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[24902,30069]]],["office",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24902]]],["priesthood",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30069]]]]},{"k":"G2406","v":[["priesthood",[2,2,[[59,2,2,0,2,[[1152,2,2,0,2]]]],[30404,30408]]]]},{"k":"G2407","v":[["office",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24901]]]]},{"k":"G2408","v":[["*",[3,3,[[39,3,3,0,3,[[930,1,1,0,1],[944,1,1,1,2],[955,1,1,2,3]]]],[23186,23686,24138]]],["Jeremias",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23686]]],["Jeremy",[2,2,[[39,2,2,0,2,[[930,1,1,0,1],[955,1,1,1,2]]]],[23186,24138]]]]},{"k":"G2409","v":[["*",[32,30,[[39,3,3,0,3,[[936,1,1,0,1],[940,2,2,1,3]]],[40,2,2,3,5,[[957,1,1,3,4],[958,1,1,4,5]]],[41,5,5,5,10,[[973,1,1,5,6],[977,1,1,6,7],[978,1,1,7,8],[982,1,1,8,9],[989,1,1,9,10]]],[42,1,1,10,11,[[997,1,1,10,11]]],[43,4,4,11,15,[[1021,1,1,11,12],[1022,1,1,12,13],[1023,1,1,13,14],[1031,1,1,14,15]]],[57,14,12,15,27,[[1137,1,1,15,16],[1139,8,7,16,23],[1140,2,1,23,24],[1141,1,1,24,25],[1142,2,2,25,27]]],[65,3,3,27,30,[[1167,1,1,27,28],[1171,1,1,28,29],[1186,1,1,29,30]]]],[23349,23493,23494,24259,24286,24898,25121,25150,25394,25665,26063,27023,27083,27108,27427,30036,30065,30067,30075,30079,30081,30085,30087,30096,30111,30144,30154,30703,30789,31044]]],["+",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[25394,30085]]],["priest",[16,16,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[977,1,1,3,4]]],[43,2,2,4,6,[[1022,1,1,4,5],[1031,1,1,5,6]]],[57,10,10,6,16,[[1137,1,1,6,7],[1139,6,6,7,13],[1140,1,1,13,14],[1142,2,2,14,16]]]],[23349,24259,24898,25121,27083,27427,30036,30065,30067,30075,30079,30081,30085,30096,30144,30154]]],["priests",[14,14,[[39,2,2,0,2,[[940,2,2,0,2]]],[40,1,1,2,3,[[958,1,1,2,3]]],[41,2,2,3,5,[[978,1,1,3,4],[989,1,1,4,5]]],[42,1,1,5,6,[[997,1,1,5,6]]],[43,2,2,6,8,[[1021,1,1,6,7],[1023,1,1,7,8]]],[57,3,3,8,11,[[1139,1,1,8,9],[1140,1,1,9,10],[1141,1,1,10,11]]],[65,3,3,11,14,[[1167,1,1,11,12],[1171,1,1,12,13],[1186,1,1,13,14]]]],[23493,23494,24286,25150,25665,26063,27023,27108,30087,30096,30111,30703,30789,31044]]]]},{"k":"G2410","v":[["Jericho",[7,6,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,2,1,1,2,[[966,2,1,1,2]]],[41,3,3,2,5,[[982,1,1,2,3],[990,1,1,3,4],[991,1,1,4,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]]],[23821,24634,25393,25723,25732,30202]]]]},{"k":"G2411","v":[["temple",[71,67,[[39,11,9,0,9,[[932,1,1,0,1],[940,2,2,1,3],[949,5,4,3,7],[952,2,1,7,8],[954,1,1,8,9]]],[40,9,8,9,17,[[967,5,4,9,13],[968,1,1,13,14],[969,2,2,14,16],[970,1,1,16,17]]],[41,14,14,17,31,[[974,3,3,17,20],[976,1,1,20,21],[990,1,1,21,22],[991,2,2,22,24],[992,1,1,24,25],[993,3,3,25,28],[994,2,2,28,30],[996,1,1,30,31]]],[42,11,11,31,42,[[998,2,2,31,33],[1001,1,1,33,34],[1003,2,2,34,36],[1004,3,3,36,39],[1006,1,1,39,40],[1007,1,1,40,41],[1014,1,1,41,42]]],[43,25,24,42,66,[[1019,1,1,42,43],[1020,6,5,43,48],[1021,1,1,48,49],[1022,5,5,49,54],[1036,1,1,54,55],[1038,5,5,55,60],[1039,1,1,60,61],[1041,3,3,61,64],[1042,1,1,64,65],[1043,1,1,65,66]]],[45,1,1,66,67,[[1070,1,1,66,67]]]],[23214,23494,23495,23838,23840,23841,23849,23958,24109,24651,24655,24656,24667,24708,24718,24720,24803,25000,25010,25019,25072,25698,25776,25778,25780,25831,25863,25864,25916,25917,26044,26109,26110,26224,26342,26356,26383,26401,26440,26504,26579,26805,26995,26997,26998,26999,27004,27006,27023,27079,27080,27083,27084,27101,27612,27690,27691,27692,27693,27694,27721,27775,27781,27787,27804,27844,28553]]]]},{"k":"G2412","v":[["holiness",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29911]]]]},{"k":"G2413","v":[["*",[2,2,[[45,1,1,0,1,[[1070,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[28553,29868]]],["holy",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29868]]],["things",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28553]]]]},{"k":"G2414","v":[["Jerusalem",[59,59,[[39,11,11,0,11,[[930,2,2,0,2],[931,1,1,2,3],[932,1,1,3,4],[933,1,1,4,5],[943,1,1,5,6],[944,1,1,6,7],[948,2,2,7,9],[949,2,2,9,11]]],[40,9,9,11,20,[[959,2,2,11,13],[963,1,1,13,14],[966,2,2,14,16],[967,3,3,16,19],[971,1,1,19,20]]],[41,5,5,20,25,[[974,2,2,20,22],[990,1,1,22,23],[991,1,1,23,24],[995,1,1,24,25]]],[42,12,12,25,37,[[997,1,1,25,26],[998,2,2,26,28],[1000,3,3,28,31],[1001,2,2,31,33],[1006,1,1,33,34],[1007,2,2,34,36],[1008,1,1,36,37]]],[43,19,19,37,56,[[1018,1,1,37,38],[1025,2,2,38,40],[1028,3,3,40,43],[1030,1,1,43,44],[1035,1,1,44,45],[1037,1,1,45,46],[1038,1,1,46,47],[1042,5,5,47,52],[1043,3,3,52,55],[1045,1,1,55,56]]],[47,3,3,56,59,[[1091,2,2,56,58],[1092,1,1,58,59]]]],[23170,23172,23197,23234,23269,23634,23693,23809,23810,23827,23836,24296,24310,24464,24620,24621,24651,24655,24667,24867,24995,25015,25719,25759,25942,26063,26108,26118,26176,26177,26201,26211,26212,26503,26541,26578,26592,26927,27177,27190,27309,27329,27334,27375,27578,27642,27681,27797,27803,27805,27811,27820,27827,27833,27843,27916,29074,29075,29082]]]]},{"k":"G2415","v":[["Jerusalem",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[42,1,1,1,2,[[1003,1,1,1,2]]]],[24220,26353]]]]},{"k":"G2416","v":[["sacrilege",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27984]]]]},{"k":"G2417","v":[["churches",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27622]]]]},{"k":"G2418","v":[["ministering",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28319]]]]},{"k":"G2419","v":[["Jerusalem",[83,80,[[39,2,1,0,1,[[951,2,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,28,27,2,29,[[974,5,5,2,7],[976,1,1,7,8],[977,1,1,8,9],[978,1,1,9,10],[981,3,3,10,13],[982,1,1,13,14],[985,5,4,14,18],[989,1,1,18,19],[991,1,1,19,20],[993,2,2,20,22],[995,1,1,22,23],[996,6,6,23,29]]],[43,41,40,29,69,[[1018,4,3,29,32],[1019,2,2,32,34],[1021,2,2,34,36],[1022,2,2,36,38],[1023,1,1,38,39],[1025,3,3,39,42],[1026,5,5,42,47],[1027,1,1,47,48],[1029,1,1,48,49],[1030,2,2,49,51],[1032,2,2,51,53],[1033,1,1,53,54],[1036,1,1,54,55],[1037,1,1,55,56],[1038,6,6,56,62],[1039,3,3,62,65],[1040,1,1,65,66],[1041,1,1,66,67],[1042,2,2,67,69]]],[44,4,4,69,73,[[1060,4,4,69,73]]],[45,1,1,73,74,[[1077,1,1,73,74]]],[47,2,2,74,76,[[1094,2,2,74,76]]],[57,1,1,76,77,[[1144,1,1,76,77]]],[65,3,3,77,80,[[1169,1,1,77,78],[1187,2,2,78,80]]]],[23955,24641,24998,25011,25014,25016,25018,25072,25124,25163,25332,25352,25354,25393,25522,25540,25551,25552,25662,25742,25846,25850,25963,26004,26009,26024,26038,26040,26043,26931,26935,26942,26954,26963,27028,27038,27075,27087,27108,27201,27202,27203,27218,27229,27237,27242,27244,27298,27362,27389,27393,27444,27446,27487,27606,27648,27668,27675,27676,27677,27679,27695,27709,27721,27722,27745,27780,27799,27816,28322,28328,28329,28334,28779,29156,29157,30234,30758,31055,31063]]]]},{"k":"G2420","v":[["priesthood",[4,4,[[57,4,4,0,4,[[1139,4,4,0,4]]]],[30075,30076,30078,30088]]]]},{"k":"G2421","v":[["Jesse",[5,5,[[39,2,2,0,2,[[929,2,2,0,2]]],[41,1,1,2,3,[[975,1,1,2,3]]],[43,1,1,3,4,[[1030,1,1,3,4]]],[44,1,1,4,5,[[1060,1,1,4,5]]]],[23149,23150,25057,27384,28315]]]]},{"k":"G2422","v":[["Jephthae",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30204]]]]},{"k":"G2423","v":[["Jechonias",[2,2,[[39,2,2,0,2,[[929,2,2,0,2]]]],[23155,23156]]]]},{"k":"G2424","v":[["*",[975,935,[[39,172,170,0,170,[[929,5,5,0,5],[930,1,1,5,6],[931,3,3,6,9],[932,7,7,9,16],[935,1,1,16,17],[936,12,12,17,29],[937,13,13,29,42],[938,1,1,42,43],[939,4,4,43,47],[940,3,3,47,50],[941,6,6,50,56],[942,10,10,56,66],[943,8,8,66,74],[944,7,7,74,81],[945,13,13,81,94],[946,3,3,94,97],[947,7,7,97,104],[948,6,6,104,110],[949,10,10,110,120],[950,5,5,120,125],[951,1,1,125,126],[952,3,3,126,129],[954,23,22,129,151],[955,15,14,151,165],[956,5,5,165,170]]],[40,93,90,170,260,[[957,7,7,170,177],[958,5,5,177,182],[959,1,1,182,183],[961,10,10,183,193],[962,3,3,193,196],[963,1,1,196,197],[964,3,3,197,200],[965,8,8,200,208],[966,19,17,208,225],[967,9,8,225,233],[968,6,6,233,239],[969,2,2,239,241],[970,12,12,241,253],[971,6,6,253,259],[972,1,1,259,260]]],[41,98,95,260,355,[[973,1,1,260,261],[974,4,4,261,265],[975,2,2,265,267],[976,7,7,267,274],[977,6,6,274,280],[978,3,3,280,283],[979,7,7,283,290],[980,12,10,290,300],[981,10,10,300,310],[982,6,6,310,316],[985,3,3,316,319],[986,1,1,319,320],[989,2,2,320,322],[990,8,8,322,330],[991,5,4,330,334],[992,2,2,334,336],[994,5,5,336,341],[995,10,10,341,351],[996,4,4,351,355]]],[42,254,243,355,598,[[997,12,11,355,366],[998,10,10,366,376],[999,5,5,376,381],[1000,19,18,381,399],[1001,9,9,399,408],[1002,23,22,408,430],[1003,9,9,430,439],[1004,20,20,439,459],[1005,7,7,459,466],[1006,6,6,466,472],[1007,24,24,472,496],[1008,15,15,496,511],[1009,15,14,511,525],[1010,3,3,525,528],[1012,2,2,528,530],[1013,2,2,530,532],[1014,21,19,532,551],[1015,22,19,551,570],[1016,14,13,570,583],[1017,16,15,583,598]]],[43,68,67,598,665,[[1018,5,5,598,603],[1019,4,4,603,607],[1020,4,4,607,611],[1021,7,7,611,618],[1022,3,3,618,621],[1023,1,1,621,622],[1024,3,3,622,625],[1025,4,4,625,629],[1026,5,5,629,634],[1027,2,2,634,636],[1028,2,2,636,638],[1030,2,2,638,640],[1032,2,2,640,642],[1033,2,2,642,644],[1034,3,3,644,647],[1035,2,2,647,649],[1036,7,6,649,655],[1037,3,3,655,658],[1038,1,1,658,659],[1039,1,1,659,660],[1042,1,1,660,661],[1043,2,2,661,663],[1045,2,2,663,665]]],[44,38,38,665,703,[[1046,5,5,665,670],[1047,1,1,670,671],[1048,3,3,671,674],[1049,1,1,674,675],[1050,5,5,675,680],[1051,3,3,680,683],[1052,1,1,683,684],[1053,4,4,684,688],[1055,1,1,688,689],[1058,1,1,689,690],[1059,1,1,690,691],[1060,6,6,691,697],[1061,6,6,697,703]]],[45,27,24,703,727,[[1062,10,9,703,712],[1063,1,1,712,713],[1064,1,1,713,714],[1065,1,1,714,715],[1066,3,2,715,717],[1067,1,1,717,718],[1069,1,1,718,719],[1070,1,1,719,720],[1072,1,1,720,721],[1073,2,1,721,722],[1076,2,2,722,724],[1077,3,3,724,727]]],[46,20,16,727,743,[[1078,5,5,727,732],[1081,9,5,732,737],[1082,1,1,737,738],[1085,1,1,738,739],[1088,2,2,739,741],[1090,2,2,741,743]]],[47,17,16,743,759,[[1091,3,3,743,746],[1092,3,2,746,748],[1093,5,5,748,753],[1094,1,1,753,754],[1095,1,1,754,755],[1096,4,4,755,759]]],[48,21,20,759,779,[[1097,7,6,759,765],[1098,5,5,765,770],[1099,5,5,770,775],[1100,1,1,775,776],[1101,1,1,776,777],[1102,2,2,777,779]]],[49,22,21,779,800,[[1103,8,7,779,786],[1104,5,5,786,791],[1105,5,5,791,796],[1106,4,4,796,800]]],[50,8,8,800,808,[[1107,5,5,800,805],[1108,1,1,805,806],[1109,1,1,806,807],[1110,1,1,807,808]]],[51,17,15,808,823,[[1111,4,3,808,811],[1112,3,3,811,814],[1113,2,2,814,816],[1114,4,3,816,819],[1115,4,4,819,823]]],[52,12,11,823,834,[[1116,6,5,823,828],[1117,3,3,828,831],[1118,3,3,831,834]]],[53,14,13,834,847,[[1119,7,6,834,840],[1120,1,1,840,841],[1121,1,1,841,842],[1122,1,1,842,843],[1123,1,1,843,844],[1124,3,3,844,847]]],[54,14,13,847,860,[[1125,6,5,847,852],[1126,4,4,852,856],[1127,2,2,856,858],[1128,2,2,858,860]]],[55,4,4,860,864,[[1129,2,2,860,862],[1130,1,1,862,863],[1131,1,1,863,864]]],[56,7,7,864,871,[[1132,7,7,864,871]]],[57,14,14,871,885,[[1134,1,1,871,872],[1135,1,1,872,873],[1136,2,2,873,875],[1138,1,1,875,876],[1139,1,1,876,877],[1142,2,2,877,879],[1144,2,2,879,881],[1145,4,4,881,885]]],[58,2,2,885,887,[[1146,1,1,885,886],[1147,1,1,886,887]]],[59,11,10,887,897,[[1151,6,5,887,892],[1152,1,1,892,893],[1153,1,1,893,894],[1154,1,1,894,895],[1155,2,2,895,897]]],[60,9,8,897,905,[[1156,7,6,897,903],[1157,1,1,903,904],[1158,1,1,904,905]]],[61,12,12,905,917,[[1159,2,2,905,907],[1160,2,2,907,909],[1161,1,1,909,910],[1162,3,3,910,913],[1163,4,4,913,917]]],[62,2,2,917,919,[[1164,2,2,917,919]]],[64,5,4,919,923,[[1166,5,4,919,923]]],[65,14,12,923,935,[[1167,5,4,923,927],[1178,1,1,927,928],[1180,1,1,928,929],[1183,1,1,929,930],[1185,2,1,930,931],[1186,1,1,931,932],[1188,3,3,932,935]]]],[23145,23160,23162,23165,23169,23170,23205,23207,23208,23210,23216,23219,23221,23226,23227,23232,23344,23348,23349,23350,23352,23355,23358,23359,23363,23365,23367,23374,23379,23381,23383,23388,23389,23391,23394,23398,23401,23402,23406,23407,23409,23414,23422,23460,23463,23466,23484,23490,23504,23514,23540,23573,23575,23590,23592,23596,23598,23609,23610,23611,23613,23619,23622,23624,23626,23628,23634,23649,23654,23661,23662,23663,23665,23667,23678,23680,23685,23689,23692,23693,23696,23701,23704,23707,23708,23709,23711,23717,23718,23719,23720,23722,23725,23726,23728,23729,23749,23763,23776,23780,23783,23785,23788,23790,23809,23814,23817,23822,23824,23826,23827,23832,23837,23838,23842,23847,23850,23853,23857,23868,23873,23890,23901,23909,23913,23919,23958,23959,23961,24055,24058,24060,24064,24071,24073,24080,24085,24088,24090,24103,24104,24105,24106,24109,24111,24113,24117,24118,24123,24125,24129,24130,24140,24146,24149,24151,24155,24156,24166,24175,24179,24183,24184,24186,24187,24200,24204,24205,24211,24213,24216,24224,24229,24232,24239,24240,24256,24265,24268,24275,24277,24279,24295,24370,24371,24377,24379,24383,24384,24385,24391,24394,24400,24411,24437,24441,24490,24501,24517,24527,24540,24542,24543,24546,24561,24563,24565,24577,24593,24602,24606,24609,24611,24612,24615,24617,24620,24626,24627,24630,24635,24637,24638,24639,24640,24646,24647,24651,24654,24655,24662,24669,24673,24690,24697,24702,24707,24708,24714,24719,24722,24760,24772,24776,24781,24784,24802,24807,24809,24814,24816,24821,24826,24827,24831,24841,24860,24863,24869,24879,24924,24994,25000,25016,25025,25046,25048,25064,25067,25071,25075,25077,25097,25098,25115,25117,25119,25126,25129,25138,25149,25155,25157,25198,25199,25201,25204,25214,25217,25235,25273,25275,25280,25283,25284,25285,25286,25290,25291,25295,25334,25337,25342,25343,25344,25348,25351,25359,25361,25363,25384,25392,25393,25400,25402,25404,25520,25530,25532,25556,25664,25668,25704,25707,25710,25712,25725,25726,25728,25730,25734,25736,25740,25766,25787,25813,25911,25912,25915,25916,25927,25943,25955,25960,25961,25963,25969,25977,25978,25981,25987,25994,26006,26010,26027,26061,26073,26080,26081,26082,26086,26087,26089,26091,26092,26094,26096,26097,26098,26099,26102,26106,26108,26114,26117,26119,26122,26123,26125,26130,26142,26157,26158,26162,26163,26166,26169,26172,26173,26177,26182,26190,26200,26202,26203,26204,26206,26209,26210,26211,26216,26218,26223,26224,26225,26226,26227,26229,26258,26260,26262,26267,26268,26271,26272,26274,26276,26279,26281,26283,26286,26289,26292,26299,26300,26310,26318,26321,26324,26327,26329,26334,26342,26344,26349,26356,26361,26365,26367,26382,26387,26390,26391,26392,26393,26395,26400,26401,26402,26406,26409,26412,26415,26420,26423,26430,26435,26439,26440,26443,26451,26454,26475,26477,26479,26481,26487,26488,26504,26506,26513,26515,26527,26528,26532,26536,26537,26540,26543,26544,26546,26548,26553,26555,26556,26558,26561,26562,26563,26564,26567,26568,26569,26574,26577,26579,26581,26583,26587,26589,26591,26592,26594,26596,26601,26602,26603,26610,26615,26616,26624,26631,26633,26637,26638,26640,26651,26653,26655,26656,26657,26659,26661,26666,26668,26674,26677,26691,26745,26757,26760,26762,26786,26787,26789,26790,26792,26793,26796,26797,26800,26804,26805,26807,26808,26813,26817,26818,26819,26821,26822,26826,26830,26834,26836,26838,26841,26843,26844,26845,26848,26850,26851,26853,26855,26858,26863,26864,26865,26867,26869,26879,26881,26882,26883,26884,26886,26888,26891,26893,26896,26897,26898,26899,26902,26903,26905,26908,26910,26911,26912,26913,26915,26918,26919,26920,26921,26923,26924,26934,26937,26939,26944,26971,26981,26985,26987,27002,27009,27016,27022,27024,27032,27035,27040,27049,27052,27055,27089,27099,27101,27115,27161,27171,27175,27188,27192,27211,27213,27221,27233,27243,27245,27250,27295,27297,27324,27327,27385,27395,27453,27468,27501,27514,27526,27530,27541,27562,27585,27589,27590,27595,27598,27600,27602,27647,27650,27661,27677,27712,27815,27832,27838,27922,27930,27931,27933,27936,27937,27938,27978,28013,28015,28017,28046,28048,28058,28062,28064,28068,28071,28079,28091,28116,28117,28118,28127,28155,28197,28280,28294,28308,28309,28311,28319,28320,28333,28339,28354,28356,28360,28361,28363,28364,28365,28366,28367,28370,28371,28372,28373,28393,28396,28421,28448,28458,28459,28478,28533,28541,28623,28637,28749,28775,28798,28799,28800,28801,28802,28803,28814,28819,28864,28865,28869,28870,28873,28895,28941,28993,29020,29048,29057,29058,29060,29069,29085,29097,29103,29116,29124,29128,29130,29145,29168,29202,29203,29205,29206,29207,29208,29209,29211,29221,29223,29235,29236,29239,29242,29249,29252,29260,29262,29265,29272,29293,29324,29360,29361,29362,29363,29367,29369,29372,29380,29387,29396,29401,29402,29410,29412,29424,29429,29433,29435,29441,29449,29461,29463,29465,29466,29467,29468,29469,29493,29500,29534,29553,29561,29563,29570,29584,29585,29589,29601,29603,29604,29605,29617,29630,29639,29644,29649,29650,29651,29656,29657,29661,29662,29675,29677,29684,29690,29696,29697,29698,29708,29710,29711,29712,29721,29744,29753,29784,29791,29801,29802,29810,29811,29818,29819,29822,29828,29830,29835,29837,29865,29868,29871,29892,29893,29896,29921,29929,29939,29941,29943,29944,29947,29961,29963,29986,29996,30022,30028,30064,30086,30143,30152,30214,30236,30249,30253,30261,30262,30267,30294,30375,30376,30377,30381,30387,30404,30445,30457,30475,30479,30480,30481,30487,30490,30493,30495,30520,30540,30543,30547,30551,30572,30602,30605,30606,30618,30625,30629,30630,30644,30648,30652,30673,30676,30689,30693,30698,30699,30702,30706,30908,30938,30981,31027,31042,31096,31100,31101]]],["+",[9,9,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[991,1,1,2,3]]],[42,2,2,3,5,[[1008,1,1,3,4],[1014,1,1,4,5]]],[43,1,1,5,6,[[1030,1,1,5,6]]],[44,1,1,6,7,[[1060,1,1,6,7]]],[46,2,2,7,9,[[1081,2,2,7,9]]]],[24186,24807,25766,26589,26807,27395,28333,28864,28870]]],["JESUS",[6,6,[[39,3,3,0,3,[[929,2,2,0,2],[955,1,1,2,3]]],[41,2,2,3,5,[[973,1,1,3,4],[974,1,1,4,5]]],[42,1,1,5,6,[[1015,1,1,5,6]]]],[23165,23169,24166,24924,24994,26844]]],["Jesus",[954,918,[[39,167,165,0,165,[[929,3,3,0,3],[930,1,1,3,4],[931,3,3,4,7],[932,7,7,7,14],[935,1,1,14,15],[936,12,12,15,27],[937,13,13,27,40],[938,1,1,40,41],[939,4,4,41,45],[940,3,3,45,48],[941,6,6,48,54],[942,10,10,54,64],[943,7,7,64,71],[944,7,7,71,78],[945,13,13,78,91],[946,3,3,91,94],[947,7,7,94,101],[948,6,6,101,107],[949,10,10,107,117],[950,5,5,117,122],[951,1,1,122,123],[952,3,3,123,126],[954,23,22,126,148],[955,13,12,148,160],[956,5,5,160,165]]],[40,92,89,165,254,[[957,7,7,165,172],[958,5,5,172,177],[959,1,1,177,178],[961,10,10,178,188],[962,3,3,188,191],[963,1,1,191,192],[964,3,3,192,195],[965,8,8,195,203],[966,19,17,203,220],[967,9,8,220,228],[968,6,6,228,234],[969,2,2,234,236],[970,11,11,236,247],[971,6,6,247,253],[972,1,1,253,254]]],[41,92,90,254,344,[[974,3,3,254,257],[975,2,2,257,259],[976,7,7,259,266],[977,5,5,266,271],[978,3,3,271,274],[979,7,7,274,281],[980,11,9,281,290],[981,10,10,290,300],[982,5,5,300,305],[985,3,3,305,308],[986,1,1,308,309],[989,2,2,309,311],[990,8,8,311,319],[991,4,4,319,323],[992,2,2,323,325],[994,5,5,325,330],[995,10,10,330,340],[996,4,4,340,344]]],[42,249,239,344,583,[[997,12,11,344,355],[998,10,10,355,365],[999,5,5,365,370],[1000,19,18,370,388],[1001,9,9,388,397],[1002,23,22,397,419],[1003,9,9,419,428],[1004,20,20,428,448],[1005,7,7,448,455],[1006,6,6,455,461],[1007,24,24,461,485],[1008,14,14,485,499],[1009,13,13,499,512],[1010,3,3,512,515],[1012,2,2,515,517],[1013,2,2,517,519],[1014,20,18,519,537],[1015,21,18,537,555],[1016,14,13,555,568],[1017,16,15,568,583]]],[43,67,66,583,649,[[1018,5,5,583,588],[1019,4,4,588,592],[1020,4,4,592,596],[1021,7,7,596,603],[1022,3,3,603,606],[1023,1,1,606,607],[1024,3,3,607,610],[1025,4,4,610,614],[1026,5,5,614,619],[1027,2,2,619,621],[1028,2,2,621,623],[1030,1,1,623,624],[1032,2,2,624,626],[1033,2,2,626,628],[1034,3,3,628,631],[1035,2,2,631,633],[1036,7,6,633,639],[1037,3,3,639,642],[1038,1,1,642,643],[1039,1,1,643,644],[1042,1,1,644,645],[1043,2,2,645,647],[1045,2,2,647,649]]],[44,37,37,649,686,[[1046,5,5,649,654],[1047,1,1,654,655],[1048,3,3,655,658],[1049,1,1,658,659],[1050,5,5,659,664],[1051,3,3,664,667],[1052,1,1,667,668],[1053,4,4,668,672],[1055,1,1,672,673],[1058,1,1,673,674],[1059,1,1,674,675],[1060,5,5,675,680],[1061,6,6,680,686]]],[45,27,24,686,710,[[1062,10,9,686,695],[1063,1,1,695,696],[1064,1,1,696,697],[1065,1,1,697,698],[1066,3,2,698,700],[1067,1,1,700,701],[1069,1,1,701,702],[1070,1,1,702,703],[1072,1,1,703,704],[1073,2,1,704,705],[1076,2,2,705,707],[1077,3,3,707,710]]],[46,18,16,710,726,[[1078,5,5,710,715],[1081,7,5,715,720],[1082,1,1,720,721],[1085,1,1,721,722],[1088,2,2,722,724],[1090,2,2,724,726]]],[47,17,16,726,742,[[1091,3,3,726,729],[1092,3,2,729,731],[1093,5,5,731,736],[1094,1,1,736,737],[1095,1,1,737,738],[1096,4,4,738,742]]],[48,21,20,742,762,[[1097,7,6,742,748],[1098,5,5,748,753],[1099,5,5,753,758],[1100,1,1,758,759],[1101,1,1,759,760],[1102,2,2,760,762]]],[49,22,21,762,783,[[1103,8,7,762,769],[1104,5,5,769,774],[1105,5,5,774,779],[1106,4,4,779,783]]],[50,8,8,783,791,[[1107,5,5,783,788],[1108,1,1,788,789],[1109,1,1,789,790],[1110,1,1,790,791]]],[51,17,15,791,806,[[1111,4,3,791,794],[1112,3,3,794,797],[1113,2,2,797,799],[1114,4,3,799,802],[1115,4,4,802,806]]],[52,12,11,806,817,[[1116,6,5,806,811],[1117,3,3,811,814],[1118,3,3,814,817]]],[53,14,13,817,830,[[1119,7,6,817,823],[1120,1,1,823,824],[1121,1,1,824,825],[1122,1,1,825,826],[1123,1,1,826,827],[1124,3,3,827,830]]],[54,14,13,830,843,[[1125,6,5,830,835],[1126,4,4,835,839],[1127,2,2,839,841],[1128,2,2,841,843]]],[55,4,4,843,847,[[1129,2,2,843,845],[1130,1,1,845,846],[1131,1,1,846,847]]],[56,7,7,847,854,[[1132,7,7,847,854]]],[57,14,14,854,868,[[1134,1,1,854,855],[1135,1,1,855,856],[1136,2,2,856,858],[1138,1,1,858,859],[1139,1,1,859,860],[1142,2,2,860,862],[1144,2,2,862,864],[1145,4,4,864,868]]],[58,2,2,868,870,[[1146,1,1,868,869],[1147,1,1,869,870]]],[59,11,10,870,880,[[1151,6,5,870,875],[1152,1,1,875,876],[1153,1,1,876,877],[1154,1,1,877,878],[1155,2,2,878,880]]],[60,9,8,880,888,[[1156,7,6,880,886],[1157,1,1,886,887],[1158,1,1,887,888]]],[61,12,12,888,900,[[1159,2,2,888,890],[1160,2,2,890,892],[1161,1,1,892,893],[1162,3,3,893,896],[1163,4,4,896,900]]],[62,2,2,900,902,[[1164,2,2,900,902]]],[64,5,4,902,906,[[1166,5,4,902,906]]],[65,14,12,906,918,[[1167,5,4,906,910],[1178,1,1,910,911],[1180,1,1,911,912],[1183,1,1,912,913],[1185,2,1,913,914],[1186,1,1,914,915],[1188,3,3,915,918]]]],[23145,23160,23162,23170,23205,23207,23208,23210,23216,23219,23221,23226,23227,23232,23344,23348,23349,23350,23352,23355,23358,23359,23363,23365,23367,23374,23379,23381,23383,23388,23389,23391,23394,23398,23401,23402,23406,23407,23409,23414,23422,23460,23463,23466,23484,23490,23504,23514,23540,23573,23575,23590,23592,23596,23598,23609,23610,23611,23613,23619,23622,23624,23626,23628,23634,23649,23654,23661,23662,23665,23667,23678,23680,23685,23689,23692,23693,23696,23701,23704,23707,23708,23709,23711,23717,23718,23719,23720,23722,23725,23726,23728,23729,23749,23763,23776,23780,23783,23785,23788,23790,23809,23814,23817,23822,23824,23826,23827,23832,23837,23838,23842,23847,23850,23853,23857,23868,23873,23890,23901,23909,23913,23919,23958,23959,23961,24055,24058,24060,24064,24071,24073,24080,24085,24088,24090,24103,24104,24105,24106,24109,24111,24113,24117,24118,24123,24125,24129,24130,24140,24146,24149,24151,24155,24156,24175,24179,24183,24184,24187,24200,24204,24205,24211,24213,24216,24224,24229,24232,24239,24240,24256,24265,24268,24275,24277,24279,24295,24370,24371,24377,24379,24383,24384,24385,24391,24394,24400,24411,24437,24441,24490,24501,24517,24527,24540,24542,24543,24546,24561,24563,24565,24577,24593,24602,24606,24609,24611,24612,24615,24617,24620,24626,24627,24630,24635,24637,24638,24639,24640,24646,24647,24651,24654,24655,24662,24669,24673,24690,24697,24702,24707,24708,24714,24719,24722,24760,24772,24776,24781,24784,24802,24809,24814,24816,24821,24826,24827,24831,24841,24860,24863,24869,24879,25000,25016,25025,25046,25048,25064,25067,25071,25075,25077,25097,25098,25117,25119,25126,25129,25138,25149,25155,25157,25198,25199,25201,25204,25214,25217,25235,25273,25275,25280,25283,25284,25285,25290,25291,25295,25334,25337,25342,25343,25344,25348,25351,25359,25361,25363,25384,25392,25393,25400,25404,25520,25530,25532,25556,25664,25668,25704,25707,25710,25712,25725,25726,25728,25730,25734,25736,25740,25766,25787,25813,25911,25912,25915,25916,25927,25943,25955,25960,25961,25963,25969,25977,25978,25981,25987,25994,26006,26010,26027,26061,26073,26080,26081,26082,26086,26087,26089,26091,26092,26094,26096,26097,26098,26099,26102,26106,26108,26114,26117,26119,26122,26123,26125,26130,26142,26157,26158,26162,26163,26166,26169,26172,26173,26177,26182,26190,26200,26202,26203,26204,26206,26209,26210,26211,26216,26218,26223,26224,26225,26226,26227,26229,26258,26260,26262,26267,26268,26271,26272,26274,26276,26279,26281,26283,26286,26289,26292,26299,26300,26310,26318,26321,26324,26327,26329,26334,26342,26344,26349,26356,26361,26365,26367,26382,26387,26390,26391,26392,26393,26395,26400,26401,26402,26406,26409,26412,26415,26420,26423,26430,26435,26439,26440,26443,26451,26454,26475,26477,26479,26481,26487,26488,26504,26506,26513,26515,26527,26528,26532,26536,26537,26540,26543,26544,26546,26548,26553,26555,26556,26558,26561,26562,26563,26564,26567,26568,26569,26574,26577,26579,26581,26583,26587,26591,26592,26594,26596,26601,26602,26603,26610,26615,26616,26624,26631,26633,26637,26638,26640,26651,26653,26656,26657,26659,26661,26666,26668,26674,26677,26691,26745,26757,26760,26762,26786,26787,26789,26790,26792,26793,26796,26797,26800,26804,26805,26808,26813,26817,26818,26819,26821,26822,26826,26830,26834,26836,26838,26841,26843,26845,26848,26850,26851,26853,26855,26858,26863,26864,26865,26867,26869,26879,26881,26882,26883,26884,26886,26888,26891,26893,26896,26897,26898,26899,26902,26903,26905,26908,26910,26911,26912,26913,26915,26918,26919,26920,26921,26923,26924,26934,26937,26939,26944,26971,26981,26985,26987,27002,27009,27016,27022,27024,27032,27035,27040,27049,27052,27055,27089,27099,27101,27115,27161,27171,27175,27188,27192,27211,27213,27221,27233,27243,27245,27250,27295,27297,27324,27327,27385,27453,27468,27501,27514,27526,27530,27541,27562,27585,27589,27590,27595,27598,27600,27602,27647,27650,27661,27677,27712,27815,27832,27838,27922,27930,27931,27933,27936,27937,27938,27978,28013,28015,28017,28046,28048,28058,28062,28064,28068,28071,28079,28091,28116,28117,28118,28127,28155,28197,28280,28294,28308,28309,28311,28319,28320,28339,28354,28356,28360,28361,28363,28364,28365,28366,28367,28370,28371,28372,28373,28393,28396,28421,28448,28458,28459,28478,28533,28541,28623,28637,28749,28775,28798,28799,28800,28801,28802,28803,28814,28819,28864,28865,28869,28870,28873,28895,28941,28993,29020,29048,29057,29058,29060,29069,29085,29097,29103,29116,29124,29128,29130,29145,29168,29202,29203,29205,29206,29207,29208,29209,29211,29221,29223,29235,29236,29239,29242,29249,29252,29260,29262,29265,29272,29293,29324,29360,29361,29362,29363,29367,29369,29372,29380,29387,29396,29401,29402,29410,29412,29424,29429,29433,29435,29441,29449,29461,29463,29465,29466,29467,29468,29469,29493,29500,29534,29553,29561,29563,29570,29584,29585,29589,29601,29603,29604,29605,29617,29630,29639,29644,29649,29650,29651,29656,29657,29661,29662,29675,29677,29684,29690,29696,29697,29698,29708,29710,29711,29712,29721,29744,29753,29784,29791,29801,29802,29810,29811,29818,29819,29822,29828,29830,29835,29837,29865,29868,29871,29892,29893,29896,29921,29929,29939,29941,29943,29944,29947,29961,29963,29986,29996,30022,30028,30064,30086,30143,30152,30214,30236,30249,30253,30261,30262,30267,30294,30375,30376,30377,30381,30387,30404,30445,30457,30475,30479,30480,30481,30487,30490,30493,30495,30520,30540,30543,30547,30551,30572,30602,30605,30606,30618,30625,30629,30630,30644,30648,30652,30673,30676,30689,30693,30698,30699,30702,30706,30908,30938,30981,31027,31042,31096,31100,31101]]],["Jesus'",[6,6,[[39,1,1,0,1,[[943,1,1,0,1]]],[41,3,3,1,4,[[977,1,1,1,2],[980,1,1,2,3],[982,1,1,3,4]]],[42,2,2,4,6,[[1009,2,2,4,6]]]],[23663,25115,25286,25402,26653,26655]]]]},{"k":"G2425","v":[["*",[41,41,[[39,3,3,0,3,[[931,1,1,0,1],[936,1,1,1,2],[956,1,1,2,3]]],[40,3,3,3,6,[[957,1,1,3,4],[966,1,1,4,5],[971,1,1,5,6]]],[41,10,10,6,16,[[975,1,1,6,7],[979,3,3,7,10],[980,2,2,10,12],[992,1,1,12,13],[994,1,1,13,14],[995,2,2,14,16]]],[43,19,19,16,35,[[1022,1,1,16,17],[1025,1,1,17,18],[1026,2,2,18,20],[1028,2,2,20,22],[1029,1,1,22,23],[1031,2,2,23,25],[1034,1,1,25,26],[1035,1,1,26,27],[1036,2,2,27,29],[1037,3,3,29,32],[1039,1,1,32,33],[1044,2,2,33,35]]],[45,2,2,35,37,[[1072,1,1,35,36],[1076,1,1,36,37]]],[46,3,3,37,40,[[1079,2,2,37,39],[1080,1,1,39,40]]],[54,1,1,40,41,[[1126,1,1,40,41]]]],[23203,23353,24207,24222,24634,24841,25041,25201,25206,25207,25272,25277,25788,25902,25943,25944,27096,27187,27239,27259,27331,27333,27349,27417,27435,27532,27575,27604,27611,27634,27637,27663,27710,27862,27864,28630,28727,28830,28840,28846,29829]]],["+",[5,5,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[43,3,3,2,5,[[1035,1,1,2,3],[1037,2,2,3,5]]]],[24841,25272,27575,27637,27663]]],["Long",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27417]]],["Many",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27604]]],["Sufficient",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28830]]],["able",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29829]]],["enough",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25902]]],["great",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27710]]],["large",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24207]]],["long",[3,3,[[41,2,2,0,2,[[992,1,1,0,1],[995,1,1,1,2]]],[43,1,1,2,3,[[1025,1,1,2,3]]]],[25788,25943,27187]]],["many",[10,10,[[41,3,3,0,3,[[979,1,1,0,1],[980,1,1,1,2],[995,1,1,2,3]]],[43,6,6,3,9,[[1026,2,2,3,5],[1029,1,1,5,6],[1031,1,1,6,7],[1037,1,1,7,8],[1044,1,1,8,9]]],[45,1,1,9,10,[[1072,1,1,9,10]]]],[25206,25277,25944,27239,27259,27349,27435,27634,27862,28630]]],["meet",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28727]]],["much",[6,6,[[41,1,1,0,1,[[979,1,1,0,1]]],[43,5,5,1,6,[[1022,1,1,1,2],[1028,2,2,2,4],[1036,1,1,4,5],[1044,1,1,5,6]]]],[25207,27096,27331,27333,27611,27864]]],["number",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24634]]],["security",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27532]]],["sufficient",[2,2,[[46,2,2,0,2,[[1079,1,1,0,1],[1080,1,1,1,2]]]],[28840,28846]]],["worthy",[5,5,[[39,2,2,0,2,[[931,1,1,0,1],[936,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,2,2,3,5,[[975,1,1,3,4],[979,1,1,4,5]]]],[23203,23353,24222,25041,25201]]]]},{"k":"G2426","v":[["sufficiency",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28846]]]]},{"k":"G2427","v":[["+",[2,2,[[46,1,1,0,1,[[1080,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[28847,29477]]]]},{"k":"G2428","v":[["supplications",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30037]]]]},{"k":"G2429","v":[["moisture",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25251]]]]},{"k":"G2430","v":[["Iconium",[6,6,[[43,5,5,0,5,[[1030,1,1,0,1],[1031,3,3,1,4],[1033,1,1,4,5]]],[54,1,1,5,6,[[1127,1,1,5,6]]]],[27413,27415,27433,27435,27485,29864]]]]},{"k":"G2431","v":[["cheerful",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28963]]]]},{"k":"G2432","v":[["cheerfulness",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28253]]]]},{"k":"G2433","v":[["*",[2,2,[[41,1,1,0,1,[[990,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]]],[25701,29994]]],["for",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29994]]],["merciful",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25701]]]]},{"k":"G2434","v":[["propitiation",[2,2,[[61,2,2,0,2,[[1160,1,1,0,1],[1162,1,1,1,2]]]],[30552,30613]]]]},{"k":"G2435","v":[["*",[2,2,[[44,1,1,0,1,[[1048,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[28016,30110]]],["mercyseat",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30110]]],["propitiation",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28016]]]]},{"k":"G2436","v":[["*",[2,2,[[39,1,1,0,1,[[944,1,1,0,1]]],[57,1,1,1,2,[[1140,1,1,1,2]]]],[23694,30104]]],["far",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23694]]],["merciful",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30104]]]]},{"k":"G2437","v":[["Illyricum",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28322]]]]},{"k":"G2438","v":[["*",[4,4,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[42,1,1,2,3,[[997,1,1,2,3]]],[43,1,1,3,4,[[1039,1,1,3,4]]]],[24222,25041,26071,27729]]],["latchet",[3,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[42,1,1,2,3,[[997,1,1,2,3]]]],[24222,25041,26071]]],["thongs",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27729]]]]},{"k":"G2439","v":[["clothed",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24379,25280]]]]},{"k":"G2440","v":[["*",[61,59,[[39,16,14,0,14,[[933,1,1,0,1],[937,4,3,1,4],[939,1,1,4,5],[942,1,1,5,6],[945,1,1,6,7],[949,2,2,7,9],[951,1,1,9,10],[952,1,1,10,11],[954,1,1,11,12],[955,3,2,12,14]]],[40,12,12,14,26,[[958,1,1,14,15],[961,3,3,15,18],[962,1,1,18,19],[965,1,1,19,20],[966,1,1,20,21],[967,2,2,21,23],[969,1,1,23,24],[971,2,2,24,26]]],[41,9,9,26,35,[[977,1,1,26,27],[978,1,1,27,28],[979,1,1,28,29],[980,2,2,29,31],[991,2,2,31,33],[994,1,1,33,34],[995,1,1,34,35]]],[42,6,6,35,41,[[1009,2,2,35,37],[1015,4,4,37,41]]],[43,8,8,41,49,[[1024,1,1,41,42],[1026,1,1,42,43],[1029,1,1,43,44],[1031,1,1,44,45],[1033,1,1,45,46],[1035,1,1,46,47],[1039,2,2,47,49]]],[57,1,1,49,50,[[1133,1,1,49,50]]],[58,1,1,50,51,[[1150,1,1,50,51]]],[59,1,1,51,52,[[1153,1,1,51,52]]],[65,7,7,52,59,[[1169,3,3,52,55],[1170,1,1,55,56],[1182,1,1,56,57],[1185,2,2,57,59]]]],[23274,23395,23399,23400,23467,23633,23702,23833,23834,23923,23975,24119,24160,24164,24281,24391,24392,24394,24463,24541,24638,24647,24648,24733,24846,24850,25143,25175,25220,25272,25289,25766,25767,25900,25969,26634,26642,26827,26830,26848,26849,27174,27255,27345,27428,27505,27563,27724,27727,29974,30356,30427,30750,30751,30764,30772,30969,31030,31033]]],["+",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]]],[24846,27345]]],["apparel",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30427]]],["cloke",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]]],[23274,25175]]],["clothes",[11,11,[[39,3,3,0,3,[[949,1,1,0,1],[952,1,1,1,2],[954,1,1,2,3]]],[40,2,2,3,5,[[961,2,2,3,5]]],[41,2,2,5,7,[[980,1,1,5,6],[991,1,1,6,7]]],[43,4,4,7,11,[[1024,1,1,7,8],[1031,1,1,8,9],[1033,1,1,9,10],[1039,1,1,10,11]]]],[23833,23975,24119,24392,24394,25272,25767,27174,27428,27505,27727]]],["garment",[14,13,[[39,5,4,0,4,[[937,4,3,0,3],[942,1,1,3,4]]],[40,5,5,4,9,[[958,1,1,4,5],[961,1,1,5,6],[962,1,1,6,7],[966,1,1,7,8],[969,1,1,8,9]]],[41,3,3,9,12,[[977,1,1,9,10],[980,1,1,10,11],[994,1,1,11,12]]],[57,1,1,12,13,[[1133,1,1,12,13]]]],[23395,23399,23400,23633,24281,24391,24463,24638,24733,25143,25289,25900,29974]]],["garments",[15,14,[[39,4,3,0,3,[[949,1,1,0,1],[951,1,1,1,2],[955,2,1,2,3]]],[40,3,3,3,6,[[967,2,2,3,5],[971,1,1,5,6]]],[41,1,1,6,7,[[991,1,1,6,7]]],[42,3,3,7,10,[[1009,2,2,7,9],[1015,1,1,9,10]]],[43,1,1,10,11,[[1026,1,1,10,11]]],[58,1,1,11,12,[[1150,1,1,11,12]]],[65,2,2,12,14,[[1169,1,1,12,13],[1182,1,1,13,14]]]],[23834,23923,24164,24647,24648,24850,25766,26634,26642,26848,27255,30356,30750,30969]]],["raiment",[12,12,[[39,3,3,0,3,[[939,1,1,0,1],[945,1,1,1,2],[955,1,1,2,3]]],[40,1,1,3,4,[[965,1,1,3,4]]],[41,2,2,4,6,[[979,1,1,4,5],[995,1,1,5,6]]],[42,1,1,6,7,[[1015,1,1,6,7]]],[43,2,2,7,9,[[1035,1,1,7,8],[1039,1,1,8,9]]],[65,3,3,9,12,[[1169,2,2,9,11],[1170,1,1,11,12]]]],[23467,23702,24160,24541,25220,25969,26849,27563,27724,30751,30764,30772]]],["robe",[2,2,[[42,2,2,0,2,[[1015,2,2,0,2]]]],[26827,26830]]],["vesture",[2,2,[[65,2,2,0,2,[[1185,2,2,0,2]]]],[31030,31033]]]]},{"k":"G2441","v":[["*",[6,6,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,2,2,1,3,[[979,1,1,1,2],[981,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[43,1,1,4,5,[[1037,1,1,4,5]]],[53,1,1,5,6,[[1120,1,1,5,6]]]],[24164,25220,25330,26849,27659,29725]]],["+",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25220]]],["apparel",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27659]]],["array",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29725]]],["raiment",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25330]]],["vesture",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]]],[24164,26849]]]]},{"k":"G2442","v":[["desirous",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29578]]]]},{"k":"G2443","v":[["*",[620,582,[[39,37,37,0,37,[[929,1,1,0,1],[930,1,1,1,2],[932,2,2,2,4],[933,2,2,4,6],[935,2,2,6,8],[936,1,1,8,9],[937,1,1,9,10],[938,1,1,10,11],[940,2,2,11,13],[942,2,2,13,15],[944,1,1,15,16],[946,3,3,16,19],[947,2,2,19,21],[948,3,3,21,24],[949,1,1,24,25],[951,1,1,25,26],[952,1,1,26,27],[954,5,5,27,32],[955,4,4,32,36],[956,1,1,36,37]]],[40,60,58,37,95,[[957,1,1,37,38],[958,1,1,38,39],[959,6,5,39,44],[960,4,3,44,47],[961,5,5,47,52],[962,6,6,52,58],[963,4,4,58,62],[964,3,3,62,65],[965,5,5,65,70],[966,6,6,70,76],[967,3,3,76,79],[968,4,4,79,83],[969,2,2,83,85],[970,4,4,85,89],[971,5,5,89,94],[972,1,1,94,95]]],[41,43,43,95,138,[[973,2,2,95,97],[976,1,1,97,98],[977,1,1,98,99],[978,3,3,99,102],[979,2,2,102,104],[980,4,4,104,108],[981,3,3,108,111],[982,1,1,111,112],[983,3,3,112,115],[984,1,1,115,116],[986,3,3,116,119],[987,1,1,119,120],[988,4,4,120,124],[989,1,1,124,125],[990,3,3,125,128],[991,2,2,128,130],[992,4,4,130,134],[993,1,1,134,135],[994,3,3,135,138]]],[42,139,126,138,264,[[997,7,6,138,144],[998,1,1,144,145],[999,5,4,145,149],[1000,5,5,149,154],[1001,6,6,154,160],[1002,11,11,160,171],[1003,3,3,171,174],[1004,3,3,174,177],[1005,5,5,177,182],[1006,5,4,182,186],[1007,13,13,186,199],[1008,10,9,199,208],[1009,8,7,208,215],[1010,5,5,215,220],[1011,9,8,220,228],[1012,8,8,228,236],[1013,19,14,236,250],[1014,6,6,250,256],[1015,8,7,256,263],[1016,2,1,263,264]]],[43,14,14,264,278,[[1019,1,1,264,265],[1021,1,1,265,266],[1022,1,1,266,267],[1025,1,1,267,268],[1026,1,1,268,269],[1033,2,2,269,271],[1036,1,1,271,272],[1038,1,1,272,273],[1039,2,2,273,275],[1040,1,1,275,276],[1041,1,1,276,277],[1044,1,1,277,278]]],[44,29,27,278,305,[[1046,2,2,278,280],[1048,2,2,280,282],[1049,1,1,282,283],[1050,2,2,283,285],[1051,3,3,285,288],[1052,3,2,288,290],[1053,2,2,290,292],[1054,2,2,292,294],[1056,4,4,294,298],[1059,1,1,298,299],[1060,6,5,299,304],[1061,1,1,304,305]]],[45,54,46,305,351,[[1062,5,4,305,309],[1063,2,2,309,311],[1064,1,1,311,312],[1065,5,4,312,316],[1066,3,3,316,319],[1068,5,4,319,323],[1070,12,9,323,332],[1071,1,1,332,333],[1072,3,3,333,336],[1073,1,1,336,337],[1074,1,1,337,338],[1075,7,6,338,344],[1076,1,1,344,345],[1077,7,6,345,351]]],[46,38,35,351,386,[[1078,4,4,351,355],[1079,4,3,355,358],[1081,4,4,358,362],[1082,5,5,362,367],[1083,1,1,367,368],[1084,1,1,368,369],[1085,5,5,369,374],[1086,4,4,374,378],[1087,1,1,378,379],[1088,4,3,379,382],[1089,3,3,382,385],[1090,2,1,385,386]]],[47,16,14,386,400,[[1091,1,1,386,387],[1092,6,6,387,393],[1093,4,3,393,396],[1094,3,2,396,398],[1095,1,1,398,399],[1096,1,1,399,400]]],[48,22,21,400,421,[[1097,1,1,400,401],[1098,3,3,401,404],[1099,4,4,404,408],[1100,4,4,408,412],[1101,4,3,412,415],[1102,6,6,415,421]]],[49,11,11,421,432,[[1103,4,4,421,425],[1104,6,6,425,431],[1105,1,1,431,432]]],[50,10,10,432,442,[[1107,3,3,432,435],[1108,1,1,435,436],[1110,6,6,436,442]]],[51,6,6,442,448,[[1112,1,1,442,443],[1114,3,3,443,446],[1115,2,2,446,448]]],[52,7,7,448,455,[[1116,1,1,448,449],[1117,1,1,449,450],[1118,5,5,450,455]]],[53,13,13,455,468,[[1119,4,4,455,459],[1120,1,1,459,460],[1121,1,1,460,461],[1122,1,1,461,462],[1123,4,4,462,466],[1124,2,2,466,468]]],[54,5,5,468,473,[[1125,1,1,468,469],[1126,2,2,469,471],[1127,1,1,471,472],[1128,1,1,472,473]]],[55,13,13,473,486,[[1129,3,3,473,476],[1130,6,6,476,482],[1131,4,4,482,486]]],[56,4,4,486,490,[[1132,4,4,486,490]]],[57,15,15,490,505,[[1134,2,2,490,492],[1136,1,1,492,493],[1137,1,1,493,494],[1138,2,2,494,496],[1141,1,1,496,497],[1142,2,2,497,499],[1143,2,2,499,501],[1144,1,1,501,502],[1145,3,3,502,505]]],[58,2,2,505,507,[[1146,1,1,505,506],[1149,1,1,506,507]]],[59,13,13,507,520,[[1151,1,1,507,508],[1152,4,4,508,512],[1153,4,4,512,516],[1154,3,3,516,519],[1155,1,1,519,520]]],[60,1,1,520,521,[[1156,1,1,520,521]]],[61,20,19,521,540,[[1159,3,3,521,524],[1160,4,4,524,528],[1161,5,5,528,533],[1162,3,3,533,536],[1163,5,4,536,540]]],[62,5,4,540,544,[[1164,5,4,540,544]]],[63,2,2,544,546,[[1165,2,2,544,546]]],[65,41,36,546,582,[[1168,2,2,546,548],[1169,5,3,548,551],[1172,3,3,551,554],[1173,1,1,554,555],[1174,3,3,555,558],[1175,5,4,558,562],[1177,1,1,562,563],[1178,4,4,563,567],[1179,6,5,567,572],[1180,1,1,572,573],[1182,1,1,573,574],[1184,2,1,574,575],[1185,3,3,575,578],[1186,1,1,578,579],[1187,2,2,579,581],[1188,1,1,581,582]]]],[23166,23184,23212,23223,23263,23264,23317,23328,23353,23385,23442,23499,23505,23612,23633,23692,23733,23741,23743,23775,23778,23813,23823,23825,23830,23944,23977,24058,24070,24095,24110,24117,24149,24155,24161,24164,24205,24253,24270,24290,24297,24298,24300,24302,24335,24344,24345,24374,24376,24382,24387,24407,24415,24419,24432,24443,24448,24463,24472,24489,24495,24499,24506,24522,24530,24547,24550,24556,24560,24568,24601,24605,24623,24625,24636,24639,24656,24665,24668,24675,24686,24688,24692,24735,24751,24764,24766,24789,24803,24837,24841,24846,24847,24858,24874,24897,24936,25066,25131,25153,25177,25180,25201,25231,25255,25261,25276,25277,25313,25341,25346,25403,25438,25455,25459,25495,25563,25576,25582,25617,25624,25629,25644,25647,25653,25703,25727,25729,25735,25746,25789,25793,25799,25807,25862,25872,25894,25896,26051,26052,26063,26066,26071,26075,26120,26135,26136,26137,26141,26164,26171,26190,26192,26203,26217,26230,26233,26244,26246,26250,26262,26264,26269,26272,26285,26286,26287,26295,26296,26297,26307,26331,26351,26360,26387,26437,26440,26442,26443,26462,26476,26479,26491,26498,26512,26519,26527,26534,26538,26539,26542,26554,26560,26565,26573,26575,26576,26578,26580,26589,26590,26600,26603,26616,26618,26620,26626,26627,26631,26632,26645,26648,26649,26659,26664,26671,26681,26684,26697,26699,26701,26707,26710,26711,26712,26715,26716,26724,26727,26728,26730,26733,26750,26756,26758,26759,26760,26761,26762,26763,26770,26771,26772,26774,26778,26780,26781,26782,26783,26785,26794,26813,26817,26821,26822,26824,26829,26849,26853,26856,26860,26861,26863,26898,26974,27039,27074,27195,27237,27513,27519,27589,27688,27709,27728,27758,27773,27897,27941,27943,27999,28010,28038,28067,28068,28069,28072,28074,28095,28104,28120,28133,28166,28178,28220,28228,28240,28241,28289,28307,28309,28319,28334,28335,28338,28373,28390,28391,28394,28399,28406,28428,28435,28436,28439,28441,28456,28459,28461,28492,28516,28521,28522,28555,28558,28559,28560,28561,28562,28563,28564,28565,28600,28619,28632,28634,28659,28668,28679,28683,28690,28691,28697,28709,28746,28778,28782,28786,28787,28788,28792,28809,28811,28815,28817,28828,28829,28833,28866,28869,28870,28874,28881,28887,28889,28892,28898,28901,28925,28938,28939,28941,28945,28946,28959,28960,28961,28964,28980,28996,29001,29005,29029,29030,29031,29050,29073,29085,29086,29090,29091,29097,29100,29116,29124,29126,29136,29148,29179,29201,29223,29236,29239,29244,29261,29267,29268,29270,29282,29286,29300,29301,29330,29331,29337,29340,29350,29356,29357,29358,29359,29370,29371,29387,29388,29393,29401,29406,29410,29419,29421,29429,29474,29483,29493,29496,29545,29546,29550,29554,29558,29559,29586,29604,29615,29616,29625,29631,29660,29673,29679,29680,29687,29690,29692,29699,29712,29714,29716,29718,29746,29762,29770,29779,29783,29784,29789,29807,29813,29831,29837,29870,29887,29897,29901,29905,29912,29913,29916,29918,29920,29922,29930,29931,29936,29937,29951,29952,29953,29957,29991,29994,30030,30031,30056,30062,30130,30142,30169,30207,30212,30239,30253,30258,30260,30270,30340,30381,30401,30411,30420,30423,30425,30433,30440,30442,30452,30457,30459,30471,30483,30543,30544,30549,30551,30569,30577,30578,30580,30584,30587,30590,30602,30612,30620,30624,30627,30637,30640,30644,30650,30651,30653,30657,30662,30666,30727,30738,30755,30757,30764,30795,30797,30804,30811,30830,30833,30839,30844,30845,30855,30860,30878,30895,30897,30905,30906,30920,30921,30923,30924,30925,30939,30966,30997,31025,31032,31035,31041,31068,31076,31094]]],["+",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]]],[24803,26217,28792]]],["That",[48,48,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,3,3,2,5,[[973,1,1,2,3],[983,1,1,3,4],[994,1,1,4,5]]],[42,8,8,5,13,[[999,1,1,5,6],[1001,1,1,6,7],[1008,1,1,7,8],[1009,1,1,8,9],[1011,1,1,9,10],[1013,1,1,10,11],[1014,2,2,11,13]]],[44,6,6,13,19,[[1050,1,1,13,14],[1053,1,1,14,15],[1060,3,3,15,18],[1061,1,1,18,19]]],[45,3,3,19,22,[[1062,1,1,19,20],[1063,1,1,20,21],[1073,1,1,21,22]]],[46,1,1,22,23,[[1087,1,1,22,23]]],[47,1,1,23,24,[[1093,1,1,23,24]]],[48,7,7,24,31,[[1097,1,1,24,25],[1098,1,1,25,26],[1099,1,1,26,27],[1100,1,1,27,28],[1101,2,2,28,30],[1102,1,1,30,31]]],[49,3,3,31,34,[[1103,1,1,31,32],[1104,2,2,32,34]]],[50,2,2,34,36,[[1108,1,1,34,35],[1110,1,1,35,36]]],[51,1,1,36,37,[[1114,1,1,36,37]]],[52,1,1,37,38,[[1117,1,1,37,38]]],[54,1,1,38,39,[[1127,1,1,38,39]]],[55,2,2,39,41,[[1130,1,1,39,40],[1131,1,1,40,41]]],[57,2,2,41,43,[[1138,2,2,41,43]]],[59,1,1,43,44,[[1151,1,1,43,44]]],[61,2,2,44,46,[[1161,1,1,44,45],[1162,1,1,45,46]]],[62,1,1,46,47,[[1164,1,1,46,47]]],[65,1,1,47,48,[[1185,1,1,47,48]]]],[23223,24335,24897,25455,25894,26135,26233,26618,26664,26711,26780,26794,26817,28068,28120,28309,28334,28335,28338,28394,28399,28659,28980,29116,29223,29236,29267,29286,29330,29331,29340,29387,29401,29406,29496,29546,29615,29673,29870,29912,29930,30056,30062,30381,30602,30624,30651,31035]]],["To",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29136]]],["after",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25582]]],["albeit",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29957]]],["as",[1,1,[[65,1,1,0,1,[[1174,1,1,0,1]]]],[30839]]],["because",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23823]]],["intent",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26538]]],["pray",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24387]]],["should",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30923]]],["that",[487,464,[[39,32,32,0,32,[[929,1,1,0,1],[930,1,1,1,2],[932,1,1,2,3],[933,2,2,3,5],[935,2,2,5,7],[936,1,1,7,8],[937,1,1,8,9],[938,1,1,9,10],[940,2,2,10,12],[942,2,2,12,14],[944,1,1,14,15],[946,3,3,15,18],[947,2,2,18,20],[948,2,2,20,22],[949,1,1,22,23],[951,1,1,23,24],[952,1,1,24,25],[954,4,4,25,29],[955,2,2,29,31],[956,1,1,31,32]]],[40,42,41,32,73,[[957,1,1,32,33],[958,1,1,33,34],[959,5,4,34,38],[960,1,1,38,39],[961,4,4,39,43],[962,5,5,43,48],[963,3,3,48,51],[964,1,1,51,52],[965,4,4,52,56],[966,6,6,56,62],[967,2,2,62,64],[968,3,3,64,67],[969,1,1,67,68],[970,2,2,68,70],[971,2,2,70,72],[972,1,1,72,73]]],[41,36,36,73,109,[[973,1,1,73,74],[976,1,1,74,75],[977,1,1,75,76],[978,2,2,76,78],[979,2,2,78,80],[980,4,4,80,84],[981,2,2,84,86],[982,1,1,86,87],[983,2,2,87,89],[984,1,1,89,90],[986,2,2,90,92],[987,1,1,92,93],[988,4,4,93,97],[989,1,1,97,98],[990,3,3,98,101],[991,1,1,101,102],[992,4,4,102,106],[993,1,1,106,107],[994,2,2,107,109]]],[42,105,98,109,207,[[997,3,3,109,112],[998,1,1,112,113],[999,3,3,113,116],[1000,3,3,116,119],[1001,3,3,119,122],[1002,9,9,122,131],[1003,2,2,131,133],[1004,1,1,133,134],[1005,5,5,134,139],[1006,3,3,139,142],[1007,8,8,142,150],[1008,6,6,150,156],[1009,6,6,156,162],[1010,5,5,162,167],[1011,8,7,167,174],[1012,8,8,174,182],[1013,17,13,182,195],[1014,4,4,195,199],[1015,8,7,199,206],[1016,2,1,206,207]]],[43,10,10,207,217,[[1019,1,1,207,208],[1021,1,1,208,209],[1022,1,1,209,210],[1025,1,1,210,211],[1026,1,1,211,212],[1036,1,1,212,213],[1038,1,1,213,214],[1039,1,1,214,215],[1040,1,1,215,216],[1041,1,1,216,217]]],[44,23,22,217,239,[[1046,2,2,217,219],[1048,2,2,219,221],[1049,1,1,221,222],[1050,1,1,222,223],[1051,3,3,223,226],[1052,3,2,226,228],[1053,1,1,228,229],[1054,2,2,229,231],[1056,4,4,231,235],[1059,1,1,235,236],[1060,3,3,236,239]]],[45,43,37,239,276,[[1062,1,1,239,240],[1063,1,1,240,241],[1064,1,1,241,242],[1065,5,4,242,246],[1066,3,3,246,249],[1068,5,4,249,253],[1070,11,8,253,261],[1071,1,1,261,262],[1072,3,3,262,265],[1075,7,6,265,271],[1076,1,1,271,272],[1077,4,4,272,276]]],[46,36,33,276,309,[[1078,4,4,276,280],[1079,4,3,280,283],[1081,4,4,283,287],[1082,5,5,287,292],[1083,1,1,292,293],[1084,1,1,293,294],[1085,5,5,294,299],[1086,4,4,299,303],[1088,4,3,303,306],[1089,2,2,306,308],[1090,2,1,308,309]]],[47,14,14,309,323,[[1091,1,1,309,310],[1092,6,6,310,316],[1093,3,3,316,319],[1094,2,2,319,321],[1095,1,1,321,322],[1096,1,1,322,323]]],[48,14,14,323,337,[[1098,1,1,323,324],[1099,3,3,324,327],[1100,3,3,327,330],[1101,2,2,330,332],[1102,5,5,332,337]]],[49,7,7,337,344,[[1103,3,3,337,340],[1104,3,3,340,343],[1105,1,1,343,344]]],[50,8,8,344,352,[[1107,3,3,344,347],[1110,5,5,347,352]]],[51,4,4,352,356,[[1112,1,1,352,353],[1114,1,1,353,354],[1115,2,2,354,356]]],[52,5,5,356,361,[[1116,1,1,356,357],[1118,4,4,357,361]]],[53,13,13,361,374,[[1119,4,4,361,365],[1120,1,1,365,366],[1121,1,1,366,367],[1122,1,1,367,368],[1123,4,4,368,372],[1124,2,2,372,374]]],[54,4,4,374,378,[[1125,1,1,374,375],[1126,2,2,375,377],[1128,1,1,377,378]]],[55,11,11,378,389,[[1129,3,3,378,381],[1130,5,5,381,386],[1131,3,3,386,389]]],[56,3,3,389,392,[[1132,3,3,389,392]]],[57,13,13,392,405,[[1134,2,2,392,394],[1136,1,1,394,395],[1137,1,1,395,396],[1141,1,1,396,397],[1142,2,2,397,399],[1143,2,2,399,401],[1144,1,1,401,402],[1145,3,3,402,405]]],[58,2,2,405,407,[[1146,1,1,405,406],[1149,1,1,406,407]]],[59,12,12,407,419,[[1152,4,4,407,411],[1153,4,4,411,415],[1154,3,3,415,418],[1155,1,1,418,419]]],[60,1,1,419,420,[[1156,1,1,419,420]]],[61,16,15,420,435,[[1159,2,2,420,422],[1160,4,4,422,426],[1161,3,3,426,429],[1162,2,2,429,431],[1163,5,4,431,435]]],[62,4,4,435,439,[[1164,4,4,435,439]]],[63,1,1,439,440,[[1165,1,1,439,440]]],[65,28,24,440,464,[[1168,1,1,440,441],[1169,4,2,441,443],[1172,2,2,443,445],[1173,1,1,445,446],[1174,1,1,446,447],[1175,4,3,447,450],[1177,1,1,450,451],[1178,3,3,451,454],[1179,3,3,454,457],[1180,1,1,457,458],[1182,1,1,458,459],[1184,2,1,459,460],[1185,2,2,460,462],[1186,1,1,462,463],[1188,1,1,463,464]]]],[23166,23184,23212,23263,23264,23317,23328,23353,23385,23442,23499,23505,23612,23633,23692,23733,23741,23743,23775,23778,23813,23825,23830,23944,23977,24058,24095,24110,24117,24149,24164,24205,24253,24270,24290,24297,24300,24302,24345,24374,24376,24382,24407,24415,24419,24432,24443,24463,24472,24489,24499,24530,24547,24550,24556,24568,24601,24605,24623,24625,24636,24639,24656,24665,24675,24688,24692,24735,24766,24789,24837,24858,24874,24936,25066,25131,25153,25177,25201,25231,25255,25261,25276,25277,25313,25346,25403,25438,25459,25495,25563,25576,25617,25624,25629,25644,25647,25653,25703,25727,25729,25746,25789,25793,25799,25807,25862,25872,25896,26051,26066,26075,26120,26136,26137,26141,26171,26192,26203,26230,26244,26250,26262,26264,26269,26285,26286,26287,26296,26297,26307,26331,26351,26387,26442,26443,26462,26476,26479,26491,26498,26519,26527,26534,26539,26560,26565,26573,26575,26580,26589,26590,26603,26616,26620,26626,26631,26645,26648,26649,26659,26664,26671,26681,26684,26697,26699,26701,26707,26710,26712,26715,26716,26724,26727,26728,26730,26733,26750,26756,26758,26759,26760,26761,26762,26770,26771,26772,26774,26778,26780,26781,26782,26783,26785,26813,26821,26822,26824,26829,26849,26853,26856,26860,26861,26863,26898,26974,27039,27074,27195,27237,27589,27688,27728,27758,27773,27941,27943,27999,28010,28038,28067,28069,28072,28074,28095,28104,28133,28166,28178,28220,28228,28240,28241,28289,28307,28319,28334,28373,28406,28428,28435,28436,28439,28441,28456,28459,28461,28492,28516,28521,28522,28555,28558,28559,28560,28561,28562,28563,28564,28600,28619,28632,28634,28679,28683,28690,28691,28697,28709,28746,28778,28782,28786,28787,28809,28811,28815,28817,28828,28829,28833,28866,28869,28870,28874,28881,28887,28889,28892,28898,28901,28925,28938,28939,28941,28945,28946,28959,28960,28961,28964,28996,29001,29005,29030,29031,29050,29073,29085,29086,29090,29091,29097,29100,29116,29124,29126,29136,29148,29179,29201,29239,29261,29268,29270,29282,29300,29301,29331,29337,29350,29356,29357,29358,29359,29370,29371,29388,29393,29410,29419,29429,29474,29483,29493,29545,29550,29554,29558,29559,29586,29616,29625,29631,29660,29679,29680,29690,29692,29699,29712,29714,29716,29718,29746,29762,29770,29779,29783,29784,29789,29807,29813,29831,29837,29887,29897,29901,29905,29913,29916,29918,29920,29922,29931,29936,29937,29951,29952,29953,29991,29994,30030,30031,30130,30142,30169,30207,30212,30239,30253,30258,30260,30270,30340,30401,30411,30420,30423,30425,30433,30440,30442,30452,30457,30459,30471,30483,30543,30544,30551,30569,30577,30578,30580,30587,30590,30612,30620,30627,30637,30640,30644,30650,30651,30653,30657,30666,30727,30757,30764,30797,30804,30811,30830,30844,30845,30860,30878,30897,30905,30906,30921,30923,30925,30939,30966,30997,31025,31032,31041,31094]]],["to",[73,69,[[39,3,3,0,3,[[954,1,1,0,1],[955,2,2,1,3]]],[40,15,14,3,17,[[959,1,1,3,4],[960,2,1,4,5],[962,1,1,5,6],[963,1,1,6,7],[964,2,2,7,9],[965,1,1,9,10],[967,1,1,10,11],[968,1,1,11,12],[969,1,1,12,13],[970,1,1,13,14],[971,3,3,14,17]]],[41,3,3,17,20,[[978,1,1,17,18],[981,1,1,18,19],[991,1,1,19,20]]],[42,24,23,20,43,[[997,4,4,20,24],[999,1,1,24,25],[1000,2,2,25,27],[1001,1,1,27,28],[1002,2,2,28,30],[1003,1,1,30,31],[1004,2,2,31,33],[1006,2,2,33,35],[1007,4,4,35,39],[1008,3,2,39,41],[1009,1,1,41,42],[1013,1,1,42,43]]],[43,4,4,43,47,[[1033,2,2,43,45],[1039,1,1,45,46],[1044,1,1,46,47]]],[45,7,5,47,52,[[1062,3,2,47,49],[1070,1,1,49,50],[1074,1,1,50,51],[1077,2,1,51,52]]],[46,1,1,52,53,[[1089,1,1,52,53]]],[48,1,1,53,54,[[1098,1,1,53,54]]],[49,1,1,54,55,[[1104,1,1,54,55]]],[52,1,1,55,56,[[1118,1,1,55,56]]],[61,2,2,56,58,[[1159,1,1,56,57],[1161,1,1,57,58]]],[63,1,1,58,59,[[1165,1,1,58,59]]],[65,10,10,59,69,[[1168,1,1,59,60],[1169,1,1,60,61],[1172,1,1,61,62],[1174,1,1,62,63],[1175,1,1,63,64],[1178,1,1,64,65],[1179,2,2,65,67],[1187,2,2,67,69]]]],[24070,24155,24161,24298,24344,24448,24495,24506,24522,24560,24668,24686,24751,24764,24841,24846,24847,25180,25341,25735,26051,26052,26063,26071,26137,26164,26190,26246,26272,26295,26360,26437,26440,26491,26512,26542,26554,26576,26578,26600,26627,26632,26763,27513,27519,27709,27897,28390,28391,28565,28668,28788,29029,29244,29421,29687,30549,30584,30662,30738,30755,30795,30833,30855,30895,30920,30924,31068,31076]]],["would",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29604]]]]},{"k":"G2444","v":[["*",[6,6,[[39,2,2,0,2,[[937,1,1,0,1],[955,1,1,1,2]]],[41,1,1,2,3,[[985,1,1,2,3]]],[43,2,2,3,5,[[1021,1,1,3,4],[1024,1,1,4,5]]],[45,1,1,5,6,[[1071,1,1,5,6]]]],[23383,24175,25525,27047,27142,28596]]],["+",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25525]]],["Wherefore",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23383]]],["Why",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27047]]],["why",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[45,1,1,2,3,[[1071,1,1,2,3]]]],[24175,27142,28596]]]]},{"k":"G2445","v":[["Joppa",[10,10,[[43,10,10,0,10,[[1026,4,4,0,4],[1027,4,4,4,8],[1028,2,2,8,10]]]],[27252,27254,27258,27259,27264,27267,27282,27291,27312,27320]]]]},{"k":"G2446","v":[["Jordan",[15,15,[[39,6,6,0,6,[[931,3,3,0,3],[932,2,2,3,5],[947,1,1,5,6]]],[40,4,4,6,10,[[957,2,2,6,8],[959,1,1,8,9],[966,1,1,9,10]]],[41,2,2,10,12,[[975,1,1,10,11],[976,1,1,11,12]]],[42,3,3,12,15,[[997,1,1,12,13],[999,1,1,13,14],[1006,1,1,14,15]]]],[23197,23198,23205,23224,23234,23763,24220,24224,24296,24589,25028,25064,26072,26146,26521]]]]},{"k":"G2447","v":[["*",[3,3,[[44,1,1,0,1,[[1048,1,1,0,1]]],[58,2,2,1,3,[[1148,1,1,1,2],[1150,1,1,2,3]]]],[28004,30327,30357]]],["poison",[2,2,[[44,1,1,0,1,[[1048,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[28004,30327]]],["rust",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30357]]]]},{"k":"G2448","v":[["Juda",[3,2,[[39,2,1,0,1,[[930,2,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]]],[23175,24932]]]]},{"k":"G2449","v":[["*",[44,44,[[39,8,8,0,8,[[930,3,3,0,3],[931,2,2,3,5],[932,1,1,5,6],[947,1,1,6,7],[952,1,1,7,8]]],[40,4,4,8,12,[[957,1,1,8,9],[959,1,1,9,10],[966,1,1,10,11],[969,1,1,11,12]]],[41,9,9,12,21,[[973,2,2,12,14],[974,1,1,14,15],[975,1,1,15,16],[977,1,1,16,17],[978,1,1,17,18],[979,1,1,18,19],[993,1,1,19,20],[995,1,1,20,21]]],[42,7,7,21,28,[[999,1,1,21,22],[1000,3,3,22,25],[1003,2,2,25,27],[1007,1,1,27,28]]],[43,12,12,28,40,[[1018,1,1,28,29],[1019,1,1,29,30],[1025,1,1,30,31],[1026,1,1,31,32],[1027,1,1,32,33],[1028,2,2,33,35],[1029,1,1,35,36],[1032,1,1,36,37],[1038,1,1,37,38],[1043,1,1,38,39],[1045,1,1,39,40]]],[44,1,1,40,41,[[1060,1,1,40,41]]],[46,1,1,41,42,[[1078,1,1,41,42]]],[47,1,1,42,43,[[1091,1,1,42,43]]],[51,1,1,43,44,[[1112,1,1,43,44]]]],[23170,23174,23191,23193,23197,23234,23763,23973,24220,24295,24589,24731,24898,24958,24977,25026,25124,25163,25212,25847,25940,26142,26159,26203,26210,26329,26331,26530,26931,26958,27177,27247,27296,27308,27336,27356,27443,27674,27843,27920,28334,28816,29079,29584]]],["Jewry",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[42,1,1,1,2,[[1003,1,1,1,2]]]],[25940,26329]]],["Judaea",[42,42,[[39,8,8,0,8,[[930,3,3,0,3],[931,2,2,3,5],[932,1,1,5,6],[947,1,1,6,7],[952,1,1,7,8]]],[40,4,4,8,12,[[957,1,1,8,9],[959,1,1,9,10],[966,1,1,10,11],[969,1,1,11,12]]],[41,8,8,12,20,[[973,2,2,12,14],[974,1,1,14,15],[975,1,1,15,16],[977,1,1,16,17],[978,1,1,17,18],[979,1,1,18,19],[993,1,1,19,20]]],[42,6,6,20,26,[[999,1,1,20,21],[1000,3,3,21,24],[1003,1,1,24,25],[1007,1,1,25,26]]],[43,12,12,26,38,[[1018,1,1,26,27],[1019,1,1,27,28],[1025,1,1,28,29],[1026,1,1,29,30],[1027,1,1,30,31],[1028,2,2,31,33],[1029,1,1,33,34],[1032,1,1,34,35],[1038,1,1,35,36],[1043,1,1,36,37],[1045,1,1,37,38]]],[44,1,1,38,39,[[1060,1,1,38,39]]],[46,1,1,39,40,[[1078,1,1,39,40]]],[47,1,1,40,41,[[1091,1,1,40,41]]],[51,1,1,41,42,[[1112,1,1,41,42]]]],[23170,23174,23191,23193,23197,23234,23763,23973,24220,24295,24589,24731,24898,24958,24977,25026,25124,25163,25212,25847,26142,26159,26203,26210,26331,26530,26931,26958,27177,27247,27296,27308,27336,27356,27443,27674,27843,27920,28334,28816,29079,29584]]]]},{"k":"G2450","v":[["Jews",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29095]]]]},{"k":"G2451","v":[["Jewish",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29906]]]]},{"k":"G2452","v":[["Jews",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29095]]]]},{"k":"G2453","v":[["*",[196,187,[[39,5,5,0,5,[[930,1,1,0,1],[955,3,3,1,4],[956,1,1,4,5]]],[40,6,6,5,11,[[963,1,1,5,6],[971,5,5,6,11]]],[41,5,5,11,16,[[979,1,1,11,12],[995,4,4,12,16]]],[42,70,66,16,82,[[997,1,1,16,17],[998,4,4,17,21],[999,2,2,21,23],[1000,3,2,23,25],[1001,5,5,25,30],[1002,3,3,30,33],[1003,6,6,33,39],[1004,5,5,39,44],[1005,3,2,44,46],[1006,4,4,46,50],[1007,8,8,50,58],[1008,2,2,58,60],[1009,1,1,60,61],[1014,9,9,61,70],[1015,13,11,70,81],[1016,1,1,81,82]]],[43,82,79,82,161,[[1019,3,3,82,85],[1026,2,2,85,87],[1027,3,3,87,90],[1028,1,1,90,91],[1029,2,2,91,93],[1030,6,6,93,99],[1031,6,5,99,104],[1033,3,3,104,107],[1034,5,5,107,112],[1035,10,8,112,120],[1036,6,6,120,126],[1037,3,3,126,129],[1038,5,5,129,134],[1039,3,3,134,137],[1040,4,4,137,141],[1041,5,5,141,146],[1042,7,7,146,153],[1043,5,5,153,158],[1045,3,3,158,161]]],[44,11,11,161,172,[[1046,1,1,161,162],[1047,5,5,162,167],[1048,3,3,167,170],[1054,1,1,170,171],[1055,1,1,171,172]]],[45,8,6,172,178,[[1062,3,3,172,175],[1070,3,1,175,176],[1071,1,1,176,177],[1073,1,1,177,178]]],[46,1,1,178,179,[[1088,1,1,178,179]]],[47,4,4,179,183,[[1092,3,3,179,182],[1093,1,1,182,183]]],[50,1,1,183,184,[[1109,1,1,183,184]]],[51,1,1,184,185,[[1112,1,1,184,185]]],[65,2,2,185,187,[[1168,1,1,185,186],[1169,1,1,186,187]]]],[23171,24140,24158,24166,24210,24466,24828,24835,24838,24844,24852,25198,25938,25972,25973,25986,26063,26101,26108,26113,26115,26121,26145,26165,26178,26211,26220,26225,26226,26228,26261,26298,26309,26329,26330,26339,26341,26343,26363,26403,26412,26429,26433,26438,26458,26462,26500,26505,26512,26514,26531,26542,26554,26556,26559,26568,26577,26578,26589,26591,26663,26797,26799,26805,26816,26818,26820,26821,26823,26824,26828,26832,26837,26839,26844,26845,26846,26856,26863,26865,26867,26886,26954,26959,26963,27238,27239,27281,27287,27298,27326,27340,27348,27367,27368,27404,27405,27407,27412,27415,27416,27418,27419,27433,27484,27486,27503,27524,27528,27533,27536,27540,27559,27561,27562,27569,27571,27576,27581,27585,27595,27598,27599,27602,27618,27619,27629,27645,27647,27675,27684,27685,27691,27703,27707,27716,27734,27746,27754,27761,27764,27774,27778,27787,27793,27796,27798,27803,27804,27805,27806,27811,27820,27825,27826,27827,27830,27844,27916,27918,27928,27946,27971,27972,27979,27990,27991,27992,28000,28020,28179,28200,28385,28386,28387,28560,28599,28647,29013,29094,29095,29096,29130,29528,29584,30726,30755]]],["+",[2,2,[[42,1,1,0,1,[[1006,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]]],[26505,27916]]],["JEWS",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]]],[24166,24852,25973,26844]]],["Jew",[22,22,[[42,2,2,0,2,[[1000,1,1,0,1],[1014,1,1,1,2]]],[43,8,8,2,10,[[1027,1,1,2,3],[1030,1,1,3,4],[1035,2,2,4,6],[1036,2,2,6,8],[1038,1,1,8,9],[1039,1,1,9,10]]],[44,8,8,10,18,[[1046,1,1,10,11],[1047,5,5,11,16],[1048,1,1,16,17],[1055,1,1,17,18]]],[45,1,1,18,19,[[1070,1,1,18,19]]],[47,2,2,19,21,[[1092,1,1,19,20],[1093,1,1,20,21]]],[50,1,1,21,22,[[1109,1,1,21,22]]]],[26165,26820,27287,27368,27559,27581,27599,27619,27703,27707,27946,27971,27972,27979,27990,27991,27992,28200,28560,29095,29130,29528]]],["Jewess",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1041,1,1,1,2]]]],[27484,27793]]],["Jews",[161,155,[[39,4,4,0,4,[[930,1,1,0,1],[955,2,2,1,3],[956,1,1,3,4]]],[40,5,5,4,9,[[963,1,1,4,5],[971,4,4,5,9]]],[41,4,4,9,13,[[979,1,1,9,10],[995,3,3,10,13]]],[42,62,59,13,72,[[997,1,1,13,14],[998,3,3,14,17],[999,2,2,17,19],[1000,2,2,19,21],[1001,5,5,21,26],[1002,3,3,26,29],[1003,5,5,29,34],[1004,5,5,34,39],[1005,3,2,39,41],[1006,3,3,41,44],[1007,7,7,44,51],[1008,2,2,51,53],[1009,1,1,53,54],[1014,8,8,54,62],[1015,11,9,62,71],[1016,1,1,71,72]]],[43,70,68,72,140,[[1019,2,2,72,74],[1026,2,2,74,76],[1027,2,2,76,78],[1028,1,1,78,79],[1029,2,2,79,81],[1030,5,5,81,86],[1031,6,5,86,91],[1033,2,2,91,93],[1034,5,5,93,98],[1035,8,7,98,105],[1036,4,4,105,109],[1037,3,3,109,112],[1038,4,4,112,116],[1039,2,2,116,118],[1040,4,4,118,122],[1041,4,4,122,126],[1042,7,7,126,133],[1043,5,5,133,138],[1045,2,2,138,140]]],[44,3,3,140,143,[[1048,2,2,140,142],[1054,1,1,142,143]]],[45,7,6,143,149,[[1062,3,3,143,146],[1070,2,1,146,147],[1071,1,1,147,148],[1073,1,1,148,149]]],[46,1,1,149,150,[[1088,1,1,149,150]]],[47,2,2,150,152,[[1092,2,2,150,152]]],[51,1,1,152,153,[[1112,1,1,152,153]]],[65,2,2,153,155,[[1168,1,1,153,154],[1169,1,1,154,155]]]],[23171,24140,24158,24210,24466,24828,24835,24838,24844,25198,25938,25972,25986,26063,26101,26113,26115,26121,26145,26165,26178,26211,26220,26225,26226,26228,26261,26298,26309,26329,26339,26341,26343,26363,26403,26412,26429,26433,26438,26458,26462,26500,26512,26514,26531,26542,26554,26556,26559,26568,26577,26589,26591,26663,26797,26799,26805,26816,26818,26821,26823,26824,26828,26832,26837,26839,26845,26846,26856,26863,26865,26886,26954,26959,27238,27239,27281,27298,27326,27340,27348,27367,27404,27405,27407,27412,27415,27416,27418,27419,27433,27486,27503,27524,27528,27533,27536,27540,27559,27561,27562,27569,27571,27576,27585,27595,27598,27602,27618,27629,27645,27647,27675,27684,27685,27691,27716,27734,27746,27754,27761,27764,27774,27778,27787,27796,27798,27803,27804,27805,27806,27811,27820,27825,27826,27827,27830,27844,27918,27928,28000,28020,28179,28385,28386,28387,28560,28599,28647,29013,29094,29096,29584,30726,30755]]],["Jews'",[4,4,[[42,4,4,0,4,[[998,1,1,0,1],[1003,1,1,1,2],[1007,1,1,2,3],[1015,1,1,3,4]]]],[26108,26330,26578,26867]]],["Judaea",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26963]]]]},{"k":"G2454","v":[["religion",[2,2,[[47,2,2,0,2,[[1091,2,2,0,2]]]],[29070,29071]]]]},{"k":"G2455","v":[["*",[42,41,[[39,8,8,0,8,[[929,2,2,0,2],[938,1,1,2,3],[941,1,1,3,4],[954,3,3,4,7],[955,1,1,7,8]]],[40,4,4,8,12,[[959,1,1,8,9],[962,1,1,9,10],[970,2,2,10,12]]],[41,8,7,12,19,[[975,3,3,12,15],[978,2,1,15,16],[994,3,3,16,19]]],[42,9,9,19,28,[[1002,1,1,19,20],[1008,1,1,20,21],[1009,3,3,21,24],[1010,1,1,24,25],[1014,3,3,25,28]]],[43,8,8,28,36,[[1018,3,3,28,31],[1022,1,1,31,32],[1026,1,1,32,33],[1032,3,3,33,36]]],[57,2,2,36,38,[[1139,1,1,36,37],[1140,1,1,37,38]]],[64,1,1,38,39,[[1166,1,1,38,39]]],[65,2,2,39,41,[[1171,1,1,39,40],[1173,1,1,40,41]]]],[23146,23147,23421,23594,24068,24079,24101,24132,24307,24410,24764,24797,25051,25055,25058,25162,25867,25911,25912,26328,26584,26632,26656,26659,26690,26787,26788,26790,26936,26939,26948,27096,27227,27464,27469,27474,30078,30100,30673,30784,30815]]],["Juda",[7,7,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,3,3,1,4,[[975,3,3,1,4]]],[57,1,1,4,5,[[1139,1,1,4,5]]],[65,2,2,5,7,[[1171,1,1,5,6],[1173,1,1,6,7]]]],[24410,25051,25055,25058,30078,30784,30815]]],["Judah",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30100]]],["Judas",[33,32,[[39,8,8,0,8,[[929,2,2,0,2],[938,1,1,2,3],[941,1,1,3,4],[954,3,3,4,7],[955,1,1,7,8]]],[40,3,3,8,11,[[959,1,1,8,9],[970,2,2,9,11]]],[41,5,4,11,15,[[978,2,1,11,12],[994,3,3,12,15]]],[42,9,9,15,24,[[1002,1,1,15,16],[1008,1,1,16,17],[1009,3,3,17,20],[1010,1,1,20,21],[1014,3,3,21,24]]],[43,8,8,24,32,[[1018,3,3,24,27],[1022,1,1,27,28],[1026,1,1,28,29],[1032,3,3,29,32]]]],[23146,23147,23421,23594,24068,24079,24101,24132,24307,24764,24797,25162,25867,25911,25912,26328,26584,26632,26656,26659,26690,26787,26788,26790,26936,26939,26948,27096,27227,27464,27469,27474]]],["Jude",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30673]]]]},{"k":"G2456","v":[["Julia",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28351]]]]},{"k":"G2457","v":[["Julius",[2,2,[[43,2,2,0,2,[[1044,2,2,0,2]]]],[27856,27858]]]]},{"k":"G2458","v":[["Junia",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28343]]]]},{"k":"G2459","v":[["Justus",[3,3,[[43,2,2,0,2,[[1018,1,1,0,1],[1035,1,1,1,2]]],[50,1,1,2,3,[[1110,1,1,2,3]]]],[26946,27564,29553]]]]},{"k":"G2460","v":[["horsemen",[2,2,[[43,2,2,0,2,[[1040,2,2,0,2]]]],[27757,27766]]]]},{"k":"G2461","v":[["horsemen",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30856]]]]},{"k":"G2462","v":[["*",[16,15,[[58,1,1,0,1,[[1148,1,1,0,1]]],[65,15,14,1,15,[[1172,4,4,1,5],[1175,4,3,5,8],[1180,1,1,8,9],[1184,1,1,9,10],[1185,5,5,10,15]]]],[30322,30795,30797,30798,30801,30847,30849,30857,30946,31006,31028,31031,31035,31036,31038]]],["horse",[8,8,[[65,8,8,0,8,[[1172,4,4,0,4],[1180,1,1,4,5],[1185,3,3,5,8]]]],[30795,30797,30798,30801,30946,31028,31036,31038]]],["horses",[7,6,[[65,7,6,0,6,[[1175,4,3,0,3],[1184,1,1,3,4],[1185,2,2,4,6]]]],[30847,30849,30857,31006,31031,31035]]],["horses'",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30322]]]]},{"k":"G2463","v":[["rainbow",[2,2,[[65,2,2,0,2,[[1170,1,1,0,1],[1176,1,1,1,2]]]],[30771,30862]]]]},{"k":"G2464","v":[["Isaac",[20,18,[[39,4,3,0,3,[[929,2,1,0,1],[936,1,1,1,2],[950,1,1,2,3]]],[40,1,1,3,4,[[968,1,1,3,4]]],[41,3,3,4,7,[[975,1,1,4,5],[985,1,1,5,6],[992,1,1,6,7]]],[43,4,3,7,10,[[1020,1,1,7,8],[1024,3,2,8,10]]],[44,2,2,10,12,[[1054,2,2,10,12]]],[47,1,1,12,13,[[1094,1,1,12,13]]],[57,4,4,13,17,[[1143,4,4,13,17]]],[58,1,1,17,18,[[1147,1,1,17,18]]]],[23146,23356,23904,24699,25059,25546,25816,27009,27124,27148,28162,28165,29159,30181,30189,30190,30192,30314]]]]},{"k":"G2465","v":[["angels",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25815]]]]},{"k":"G2466","v":[["Issachar",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30817]]]]},{"k":"G2467","v":[["know",[2,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[27827,30229]]]]},{"k":"G2468","v":[["*",[5,5,[[39,2,2,0,2,[[930,1,1,0,1],[933,1,1,1,2]]],[40,1,1,2,3,[[961,1,1,2,3]]],[41,1,1,3,4,[[991,1,1,3,4]]],[53,1,1,4,5,[[1122,1,1,4,5]]]],[23182,23259,24398,25748,29762]]],["+",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[991,1,1,1,2]]]],[23259,25748]]],["be",[2,2,[[39,1,1,0,1,[[930,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]]],[23182,24398]]],["wholly",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29762]]]]},{"k":"G2469","v":[["Iscariot",[11,11,[[39,2,2,0,2,[[938,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[959,1,1,2,3],[970,1,1,3,4]]],[41,2,2,4,6,[[978,1,1,4,5],[994,1,1,5,6]]],[42,5,5,6,11,[[1002,1,1,6,7],[1008,1,1,7,8],[1009,2,2,8,10],[1010,1,1,10,11]]]],[23421,24068,24307,24764,25162,25867,26328,26584,26632,26656,26690]]]]},{"k":"G2470","v":[["*",[8,8,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,2,2,1,3,[[970,2,2,1,3]]],[41,1,1,3,4,[[978,1,1,3,4]]],[42,1,1,4,5,[[1001,1,1,4,5]]],[43,1,1,5,6,[[1028,1,1,5,6]]],[49,1,1,6,7,[[1104,1,1,6,7]]],[65,1,1,7,8,[[1187,1,1,7,8]]]],[23804,24810,24813,25180,26228,27324,29397,31069]]],["+",[2,2,[[40,2,2,0,2,[[970,2,2,0,2]]]],[24810,24813]]],["again",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25180]]],["equal",[4,4,[[39,1,1,0,1,[[948,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[65,1,1,3,4,[[1187,1,1,3,4]]]],[23804,26228,29397,31069]]],["like",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27324]]]]},{"k":"G2471","v":[["*",[3,2,[[46,2,1,0,1,[[1085,2,1,0,1]]],[50,1,1,1,2,[[1110,1,1,1,2]]]],[28946,29543]]],["equal",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29543]]],["equality",[2,1,[[46,2,1,0,1,[[1085,2,1,0,1]]]],[28946]]]]},{"k":"G2472","v":[["precious",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30480]]]]},{"k":"G2473","v":[["likeminded",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29411]]]]},{"k":"G2474","v":[["Israel",[70,68,[[39,12,12,0,12,[[930,3,3,0,3],[936,1,1,3,4],[937,1,1,4,5],[938,2,2,5,7],[943,2,2,7,9],[947,1,1,9,10],[955,2,2,10,12]]],[40,2,2,12,14,[[968,1,1,12,13],[971,1,1,13,14]]],[41,12,12,14,26,[[973,4,4,14,18],[974,3,3,18,21],[976,2,2,21,23],[979,1,1,23,24],[994,1,1,24,25],[996,1,1,25,26]]],[42,4,4,26,30,[[997,2,2,26,28],[999,1,1,28,29],[1008,1,1,29,30]]],[43,16,16,30,46,[[1018,1,1,30,31],[1019,1,1,31,32],[1021,3,3,32,35],[1022,2,2,35,37],[1024,3,3,37,40],[1026,1,1,40,41],[1027,1,1,41,42],[1030,3,3,42,45],[1045,1,1,45,46]]],[44,12,10,46,56,[[1054,5,3,46,49],[1055,3,3,49,52],[1056,4,4,52,56]]],[45,1,1,56,57,[[1071,1,1,56,57]]],[46,2,2,57,59,[[1080,2,2,57,59]]],[47,1,1,59,60,[[1096,1,1,59,60]]],[48,1,1,60,61,[[1098,1,1,60,61]]],[49,1,1,61,62,[[1105,1,1,61,62]]],[57,3,3,62,65,[[1140,2,2,62,64],[1143,1,1,64,65]]],[65,3,3,65,68,[[1168,1,1,65,66],[1173,1,1,66,67],[1187,1,1,67,68]]]],[23175,23189,23190,23355,23412,23423,23440,23657,23664,23790,24138,24171,24702,24858,24909,24947,24961,24973,24998,25005,25007,25088,25090,25204,25894,26012,26075,26093,26130,26593,26929,26985,27030,27032,27049,27080,27090,27139,27153,27158,27231,27295,27379,27385,27386,27919,28161,28182,28186,28189,28207,28209,28211,28216,28234,28235,28585,28848,28854,29204,29241,29426,30100,30102,30194,30731,30814,31065]]]]},{"k":"G2475","v":[["*",[9,9,[[42,1,1,0,1,[[997,1,1,0,1]]],[43,5,5,1,6,[[1019,1,1,1,2],[1020,1,1,2,3],[1022,1,1,3,4],[1030,1,1,4,5],[1038,1,1,5,6]]],[44,2,2,6,8,[[1054,1,1,6,7],[1056,1,1,7,8]]],[46,1,1,8,9,[[1088,1,1,8,9]]]],[26091,26971,27008,27094,27378,27692,28159,28210,29011]]],["Israel",[5,5,[[43,5,5,0,5,[[1019,1,1,0,1],[1020,1,1,1,2],[1022,1,1,2,3],[1030,1,1,3,4],[1038,1,1,4,5]]]],[26971,27008,27094,27378,27692]]],["Israelite",[2,2,[[42,1,1,0,1,[[997,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]]],[26091,28210]]],["Israelites",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[28159,29011]]]]},{"k":"G2476","v":[["*",[156,152,[[39,21,20,0,20,[[930,1,1,0,1],[932,1,1,1,2],[934,1,1,2,3],[940,4,4,3,7],[941,1,1,7,8],[944,1,1,8,9],[946,2,2,9,11],[948,4,3,11,14],[952,1,1,14,15],[953,1,1,15,16],[954,2,2,16,18],[955,2,2,18,20]]],[40,10,10,20,30,[[959,4,4,20,24],[965,2,2,24,26],[966,1,1,26,27],[967,1,1,27,28],[969,2,2,28,30]]],[41,25,24,30,54,[[973,1,1,30,31],[976,1,1,31,32],[977,2,2,32,34],[978,3,2,34,36],[979,2,2,36,38],[980,2,2,38,40],[981,2,2,40,42],[983,1,1,42,43],[985,1,1,43,44],[989,1,1,44,45],[990,3,3,45,48],[991,1,1,48,49],[993,1,1,49,50],[995,3,3,50,53],[996,1,1,53,54]]],[42,21,20,54,74,[[997,2,2,54,56],[999,1,1,56,57],[1002,1,1,57,58],[1003,1,1,58,59],[1004,3,3,59,62],[1007,1,1,62,63],[1008,1,1,63,64],[1014,5,4,64,68],[1015,1,1,68,69],[1016,4,4,69,73],[1017,1,1,73,74]]],[43,35,35,74,109,[[1018,2,2,74,76],[1019,1,1,76,77],[1020,1,1,77,78],[1021,2,2,78,80],[1022,4,4,80,84],[1023,2,2,84,86],[1024,4,4,86,90],[1025,1,1,90,91],[1026,1,1,91,92],[1027,1,1,92,93],[1028,1,1,93,94],[1029,1,1,94,95],[1033,1,1,95,96],[1034,2,2,96,98],[1038,1,1,98,99],[1039,2,2,99,101],[1041,2,2,101,103],[1042,2,2,103,105],[1043,3,3,105,108],[1044,1,1,108,109]]],[44,6,5,109,114,[[1048,1,1,109,110],[1050,1,1,110,111],[1055,1,1,111,112],[1056,1,1,112,113],[1059,2,1,113,114]]],[45,3,3,114,117,[[1068,1,1,114,115],[1071,1,1,115,116],[1076,1,1,116,117]]],[46,2,2,117,119,[[1078,1,1,117,118],[1090,1,1,118,119]]],[48,3,3,119,122,[[1102,3,3,119,122]]],[50,1,1,122,123,[[1110,1,1,122,123]]],[54,1,1,123,124,[[1126,1,1,123,124]]],[57,2,2,124,126,[[1142,2,2,124,126]]],[58,2,2,126,128,[[1147,1,1,126,127],[1150,1,1,127,128]]],[59,1,1,128,129,[[1155,1,1,128,129]]],[64,1,1,129,130,[[1166,1,1,129,130]]],[65,22,22,130,152,[[1169,1,1,130,131],[1171,1,1,131,132],[1172,1,1,132,133],[1173,3,3,133,136],[1174,2,2,136,138],[1176,2,2,138,140],[1177,3,3,140,143],[1178,1,1,143,144],[1179,1,1,144,145],[1180,1,1,145,146],[1181,1,1,146,147],[1184,3,3,147,150],[1185,1,1,150,151],[1186,1,1,151,152]]]],[23178,23214,23287,23514,23515,23535,23536,23541,23700,23729,23743,23795,23798,23824,23972,24041,24069,24127,24140,24176,24312,24313,24314,24319,24539,24574,24637,24645,24726,24731,24904,25072,25108,25109,25154,25163,25209,25233,25265,25289,25328,25348,25423,25543,25663,25699,25701,25728,25739,25862,25945,25970,25984,26027,26070,26079,26149,26279,26365,26384,26390,26425,26579,26609,26790,26801,26803,26810,26850,26878,26881,26886,26893,26902,26934,26946,26963,27004,27029,27036,27079,27082,27084,27086,27107,27114,27149,27171,27172,27176,27214,27223,27289,27320,27351,27492,27545,27554,27704,27729,27734,27789,27790,27806,27814,27829,27839,27845,27876,28022,28049,28191,28229,28284,28524,28579,28719,28824,29044,29348,29350,29351,29554,29846,30142,30144,30296,30363,30477,30696,30766,30785,30810,30811,30819,30821,30829,30830,30866,30869,30873,30876,30883,30895,30909,30927,30948,31003,31008,31010,31034,31050]]],["+",[7,7,[[41,1,1,0,1,[[977,1,1,0,1]]],[42,2,2,1,3,[[1014,2,2,1,3]]],[43,3,3,3,6,[[1033,1,1,3,4],[1039,1,1,4,5],[1042,1,1,5,6]]],[44,1,1,6,7,[[1059,1,1,6,7]]]],[25108,26803,26810,27492,27729,27806,28284]]],["Stand",[2,2,[[48,1,1,0,1,[[1102,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[29351,30296]]],["Standing",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31003]]],["abode",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26425]]],["appointed",[2,2,[[43,2,2,0,2,[[1018,1,1,0,1],[1034,1,1,1,2]]]],[26946,27554]]],["brought",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24726]]],["by",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]]],[24127,26609]]],["continue",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27845]]],["covenanted",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24069]]],["establish",[3,3,[[44,2,2,0,2,[[1048,1,1,0,1],[1055,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[28022,28191,30142]]],["established",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[46,1,1,1,2,[[1090,1,1,1,2]]]],[23743,29044]]],["forth",[3,2,[[41,2,1,0,1,[[978,2,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[25154,27876]]],["lay",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27176]]],["present",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30696]]],["set",[10,10,[[39,2,2,0,2,[[946,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[965,1,1,2,3]]],[41,2,2,3,5,[[976,1,1,3,4],[981,1,1,4,5]]],[42,1,1,5,6,[[1004,1,1,5,6]]],[43,4,4,6,10,[[1021,1,1,6,7],[1022,1,1,7,8],[1023,1,1,8,9],[1039,1,1,9,10]]]],[23729,24041,24574,25072,25348,26384,27029,27086,27107,27734]]],["setteth",[1,1,[[39,1,1,0,1,[[932,1,1,0,1]]]],[23214]]],["stanched",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25289]]],["stand",[30,30,[[39,5,5,0,5,[[940,3,3,0,3],[948,1,1,3,4],[952,1,1,4,5]]],[40,4,4,5,9,[[959,3,3,5,8],[965,1,1,8,9]]],[41,4,4,9,13,[[980,1,1,9,10],[983,1,1,10,11],[985,1,1,11,12],[993,1,1,12,13]]],[43,4,4,13,17,[[1018,1,1,13,14],[1022,1,1,14,15],[1043,2,2,15,17]]],[44,1,1,17,18,[[1050,1,1,17,18]]],[45,1,1,18,19,[[1076,1,1,18,19]]],[46,1,1,19,20,[[1078,1,1,19,20]]],[48,2,2,20,22,[[1102,2,2,20,22]]],[50,1,1,22,23,[[1110,1,1,22,23]]],[59,1,1,23,24,[[1155,1,1,23,24]]],[65,6,6,24,30,[[1169,1,1,24,25],[1172,1,1,25,26],[1176,1,1,26,27],[1181,1,1,27,28],[1184,1,1,28,29],[1186,1,1,29,30]]]],[23514,23515,23536,23798,23972,24312,24313,24314,24539,25265,25423,25543,25862,26934,27079,27829,27839,28049,28719,28824,29348,29350,29554,30477,30766,30810,30866,30948,31008,31050]]],["standest",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]]],[27149,28229]]],["standeth",[8,8,[[42,2,2,0,2,[[997,1,1,0,1],[999,1,1,1,2]]],[45,2,2,2,4,[[1068,1,1,2,3],[1071,1,1,3,4]]],[54,1,1,4,5,[[1126,1,1,4,5]]],[57,1,1,5,6,[[1142,1,1,5,6]]],[58,1,1,6,7,[[1150,1,1,6,7]]],[65,1,1,7,8,[[1176,1,1,7,8]]]],[26070,26149,28524,28579,29846,30144,30363,30869]]],["standing",[21,21,[[39,4,4,0,4,[[934,1,1,0,1],[944,1,1,1,2],[948,2,2,2,4]]],[40,2,2,4,6,[[959,1,1,4,5],[969,1,1,5,6]]],[41,4,4,6,10,[[973,1,1,6,7],[977,1,1,7,8],[981,1,1,8,9],[990,1,1,9,10]]],[42,2,2,10,12,[[1004,1,1,10,11],[1016,1,1,11,12]]],[43,6,6,12,18,[[1021,1,1,12,13],[1022,2,2,13,15],[1024,2,2,15,17],[1041,1,1,17,18]]],[65,3,3,18,21,[[1173,1,1,18,19],[1177,1,1,19,20],[1185,1,1,20,21]]]],[23287,23700,23795,23798,24319,24731,24904,25109,25328,25701,26390,26881,27036,27082,27084,27171,27172,27790,30811,30876,31034]]],["still",[4,4,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[979,1,1,2,3]]],[43,1,1,3,4,[[1025,1,1,3,4]]]],[23824,24637,25209,27214]]],["stood",[47,47,[[39,5,5,0,5,[[930,1,1,0,1],[940,1,1,1,2],[941,1,1,2,3],[955,2,2,3,5]]],[40,1,1,5,6,[[967,1,1,5,6]]],[41,10,10,6,16,[[978,1,1,6,7],[979,1,1,7,8],[989,1,1,8,9],[990,2,2,9,11],[991,1,1,11,12],[995,3,3,12,15],[996,1,1,15,16]]],[42,12,12,16,28,[[997,1,1,16,17],[1002,1,1,17,18],[1003,1,1,18,19],[1007,1,1,19,20],[1014,3,3,20,23],[1015,1,1,23,24],[1016,3,3,24,27],[1017,1,1,27,28]]],[43,8,8,28,36,[[1020,1,1,28,29],[1026,1,1,29,30],[1027,1,1,30,31],[1028,1,1,31,32],[1029,1,1,32,33],[1034,1,1,33,34],[1038,1,1,34,35],[1041,1,1,35,36]]],[65,11,11,36,47,[[1171,1,1,36,37],[1173,2,2,37,39],[1174,2,2,39,41],[1177,2,2,41,43],[1178,1,1,43,44],[1179,1,1,44,45],[1180,1,1,45,46],[1184,1,1,46,47]]]],[23178,23535,23541,24140,24176,24645,25163,25233,25663,25699,25728,25739,25945,25970,25984,26027,26079,26279,26365,26579,26790,26801,26803,26850,26878,26886,26893,26902,27004,27223,27289,27320,27351,27545,27704,27789,30785,30819,30821,30829,30830,30873,30883,30895,30909,30927,31010]]],["up",[4,4,[[43,3,3,0,3,[[1019,1,1,0,1],[1023,1,1,1,2],[1042,1,1,2,3]]],[44,1,1,3,4,[[1059,1,1,3,4]]]],[26963,27114,27814,28284]]]]},{"k":"G2477","v":[["see",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29075]]]]},{"k":"G2478","v":[["*",[27,25,[[39,4,3,0,3,[[931,1,1,0,1],[940,2,1,1,2],[942,1,1,2,3]]],[40,3,2,3,5,[[957,1,1,3,4],[959,2,1,4,5]]],[41,4,4,5,9,[[975,1,1,5,6],[983,2,2,6,8],[987,1,1,8,9]]],[45,4,4,9,13,[[1062,2,2,9,11],[1065,1,1,11,12],[1071,1,1,12,13]]],[46,1,1,13,14,[[1087,1,1,13,14]]],[57,3,3,14,17,[[1137,1,1,14,15],[1138,1,1,15,16],[1143,1,1,16,17]]],[61,1,1,17,18,[[1160,1,1,17,18]]],[65,7,7,18,25,[[1171,1,1,18,19],[1176,1,1,19,20],[1184,3,3,20,23],[1185,2,2,23,25]]]],[23203,23518,23627,24222,24315,25041,25426,25427,25602,28388,28390,28443,28589,28981,30037,30062,30206,30564,30781,30862,31001,31003,31014,31023,31035]]],["boisterous",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23627]]],["man",[3,3,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]]],[23518,24315,25426]]],["man's",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]]],[23518,24315]]],["men",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31035]]],["mightier",[3,3,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[975,1,1,2,3]]]],[23203,24222,25041]]],["mighty",[6,6,[[41,1,1,0,1,[[987,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]],[65,4,4,2,6,[[1176,1,1,2,3],[1184,2,2,3,5],[1185,1,1,5,6]]]],[25602,28390,30862,31003,31014,31023]]],["powerful",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28981]]],["strong",[6,6,[[45,1,1,0,1,[[1065,1,1,0,1]]],[57,2,2,1,3,[[1137,1,1,1,2],[1138,1,1,2,3]]],[61,1,1,3,4,[[1160,1,1,3,4]]],[65,2,2,4,6,[[1171,1,1,4,5],[1184,1,1,5,6]]]],[28443,30037,30062,30564,30781,31001]]],["stronger",[3,3,[[41,1,1,0,1,[[983,1,1,0,1]]],[45,2,2,1,3,[[1062,1,1,1,2],[1071,1,1,2,3]]]],[25427,28388,28589]]],["valiant",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30206]]]]},{"k":"G2479","v":[["*",[11,11,[[40,2,2,0,2,[[968,2,2,0,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[48,2,2,3,5,[[1097,1,1,3,4],[1102,1,1,4,5]]],[52,1,1,5,6,[[1116,1,1,5,6]]],[59,1,1,6,7,[[1154,1,1,6,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]],[65,3,3,8,11,[[1171,1,1,8,9],[1173,1,1,9,10],[1184,1,1,10,11]]]],[24703,24706,25390,29225,29347,29658,30457,30511,30791,30822,30995]]],["+",[2,2,[[48,1,1,0,1,[[1097,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[29225,30995]]],["ability",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30457]]],["might",[2,2,[[48,1,1,0,1,[[1102,1,1,0,1]]],[65,1,1,1,2,[[1173,1,1,1,2]]]],[29347,30822]]],["power",[2,2,[[52,1,1,0,1,[[1116,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[29658,30511]]],["strength",[4,4,[[40,2,2,0,2,[[968,2,2,0,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[65,1,1,3,4,[[1171,1,1,3,4]]]],[24703,24706,25390,30791]]]]},{"k":"G2480","v":[["*",[29,29,[[39,4,4,0,4,[[933,1,1,0,1],[936,1,1,1,2],[937,1,1,2,3],[954,1,1,3,4]]],[40,4,4,4,8,[[958,1,1,4,5],[961,1,1,5,6],[965,1,1,6,7],[970,1,1,7,8]]],[41,8,8,8,16,[[978,1,1,8,9],[980,1,1,9,10],[985,1,1,10,11],[986,3,3,11,14],[988,1,1,14,15],[992,1,1,15,16]]],[42,1,1,16,17,[[1017,1,1,16,17]]],[43,6,6,17,23,[[1023,1,1,17,18],[1032,1,1,18,19],[1036,2,2,19,21],[1042,1,1,21,22],[1044,1,1,22,23]]],[47,2,2,23,25,[[1095,1,1,23,24],[1096,1,1,24,25]]],[49,1,1,25,26,[[1106,1,1,25,26]]],[57,1,1,26,27,[[1141,1,1,26,27]]],[58,1,1,27,28,[[1150,1,1,27,28]]],[65,1,1,28,29,[[1178,1,1,28,29]]]],[23247,23373,23391,24094,24277,24368,24556,24791,25194,25288,25542,25559,25582,25583,25623,25805,26904,27111,27452,27601,27605,27803,27871,29168,29203,29455,30122,30370,30899]]],["+",[7,7,[[41,3,3,0,3,[[986,2,2,0,2],[988,1,1,2,3]]],[42,1,1,3,4,[[1017,1,1,3,4]]],[43,2,2,4,6,[[1023,1,1,4,5],[1044,1,1,5,6]]],[57,1,1,6,7,[[1141,1,1,6,7]]]],[25582,25583,25623,26904,27111,27871,30122]]],["able",[2,2,[[41,1,1,0,1,[[985,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]]],[25542,27452]]],["availeth",[3,3,[[47,2,2,0,2,[[1095,1,1,0,1],[1096,1,1,1,2]]],[58,1,1,2,3,[[1150,1,1,2,3]]]],[29168,29203,30370]]],["could",[8,8,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[965,1,1,2,3]]],[41,4,4,3,7,[[978,1,1,3,4],[980,1,1,4,5],[986,1,1,5,6],[992,1,1,6,7]]],[43,1,1,7,8,[[1042,1,1,7,8]]]],[24094,24368,24556,25194,25288,25559,25805,27803]]],["couldest",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24791]]],["do",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29455]]],["good",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23247]]],["might",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23373]]],["prevailed",[3,3,[[43,2,2,0,2,[[1036,2,2,0,2]]],[65,1,1,2,3,[[1178,1,1,2,3]]]],[27601,27605,30899]]],["whole",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]]],[23391,24277]]]]},{"k":"G2481","v":[["be",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25792]]]]},{"k":"G2482","v":[["Italy",[4,4,[[43,3,3,0,3,[[1035,1,1,0,1],[1044,2,2,1,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]]],[27559,27856,27861,30265]]]]},{"k":"G2483","v":[["Italian",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27260]]]]},{"k":"G2484","v":[["Ituraea",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25026]]]]},{"k":"G2485","v":[["fishes",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]]],[23667,24507]]]]},{"k":"G2486","v":[["*",[20,18,[[39,5,5,0,5,[[935,1,1,0,1],[942,2,2,1,3],[943,1,1,3,4],[945,1,1,4,5]]],[40,4,3,5,8,[[962,4,3,5,8]]],[41,7,6,8,14,[[977,2,2,8,10],[981,2,2,10,12],[983,2,1,12,13],[996,1,1,13,14]]],[42,3,3,14,17,[[1017,3,3,14,17]]],[45,1,1,17,18,[[1076,1,1,17,18]]]],[23326,23614,23616,23669,23727,24445,24448,24450,25113,25116,25314,25317,25416,26033,26904,26906,26909,28757]]],["fish",[5,4,[[39,2,2,0,2,[[935,1,1,0,1],[945,1,1,1,2]]],[41,3,2,2,4,[[983,2,1,2,3],[996,1,1,3,4]]]],[23326,23727,25416,26033]]],["fishes",[15,14,[[39,3,3,0,3,[[942,2,2,0,2],[943,1,1,2,3]]],[40,4,3,3,6,[[962,4,3,3,6]]],[41,4,4,6,10,[[977,2,2,6,8],[981,2,2,8,10]]],[42,3,3,10,13,[[1017,3,3,10,13]]],[45,1,1,13,14,[[1076,1,1,13,14]]]],[23614,23616,23669,24445,24448,24450,25113,25116,25314,25317,26904,26906,26909,28757]]]]},{"k":"G2487","v":[["steps",[3,3,[[44,1,1,0,1,[[1049,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]]],[28034,29040,30420]]]]},{"k":"G2488","v":[["Joatham",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23153]]]]},{"k":"G2489","v":[["Joanna",[2,2,[[41,2,2,0,2,[[980,1,1,0,1],[996,1,1,1,2]]]],[25248,26001]]]]},{"k":"G2490","v":[["Joanna",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25052]]]]},{"k":"G2491","v":[["*",[133,130,[[39,26,26,0,26,[[931,4,4,0,4],[932,2,2,4,6],[937,1,1,6,7],[938,1,1,7,8],[939,7,7,8,15],[942,5,5,15,20],[944,1,1,20,21],[945,2,2,21,23],[949,3,3,23,26]]],[40,26,25,26,51,[[957,6,6,26,32],[958,2,1,32,33],[959,1,1,33,34],[961,1,1,34,35],[962,7,7,35,42],[964,1,1,42,43],[965,2,2,43,45],[966,2,2,45,47],[967,2,2,47,49],[969,1,1,49,50],[970,1,1,50,51]]],[41,31,30,51,81,[[973,3,3,51,54],[975,4,4,54,58],[977,2,2,58,60],[978,1,1,60,61],[979,9,8,61,69],[980,1,1,69,70],[981,6,6,70,76],[983,1,1,76,77],[988,1,1,77,78],[992,2,2,78,80],[994,1,1,80,81]]],[42,20,19,81,100,[[997,9,9,81,90],[999,5,5,90,95],[1000,1,1,95,96],[1001,2,2,96,98],[1006,3,2,98,100]]],[43,24,24,100,124,[[1018,3,3,100,103],[1020,4,4,103,107],[1021,3,3,107,110],[1025,1,1,110,111],[1027,1,1,111,112],[1028,1,1,112,113],[1029,3,3,113,116],[1030,4,4,116,120],[1032,1,1,120,121],[1035,1,1,121,122],[1036,2,2,122,124]]],[47,1,1,124,125,[[1092,1,1,124,125]]],[65,5,5,125,130,[[1167,3,3,125,128],[1187,1,1,128,129],[1188,1,1,129,130]]]],[23193,23196,23205,23206,23221,23230,23393,23419,23461,23463,23466,23470,23471,23472,23477,23599,23600,23601,23605,23607,23686,23701,23713,23851,23852,23858,24219,24221,24224,24229,24234,24244,24278,24305,24401,24421,24423,24424,24425,24427,24431,24432,24528,24540,24576,24623,24629,24670,24672,24720,24787,24906,24953,24956,25027,25040,25041,25045,25117,25140,25160,25213,25214,25215,25217,25219,25223,25224,25228,25296,25308,25310,25320,25329,25350,25355,25406,25636,25783,25785,25872,26050,26059,26063,26070,26072,26073,26076,26079,26084,26143,26144,26145,26146,26147,26157,26243,26246,26521,26522,26928,26936,26945,26997,26999,27000,27007,27028,27035,27041,27190,27296,27323,27339,27349,27362,27367,27375,27386,27387,27479,27582,27588,27589,29090,30698,30701,30706,31055,31088]]],["+",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23463]]],["John",[130,127,[[39,25,25,0,25,[[931,4,4,0,4],[932,2,2,4,6],[937,1,1,6,7],[938,1,1,7,8],[939,6,6,8,14],[942,5,5,14,19],[944,1,1,19,20],[945,2,2,20,22],[949,3,3,22,25]]],[40,26,25,25,50,[[957,6,6,25,31],[958,2,1,31,32],[959,1,1,32,33],[961,1,1,33,34],[962,7,7,34,41],[964,1,1,41,42],[965,2,2,42,44],[966,2,2,44,46],[967,2,2,46,48],[969,1,1,48,49],[970,1,1,49,50]]],[41,31,30,50,80,[[973,3,3,50,53],[975,4,4,53,57],[977,2,2,57,59],[978,1,1,59,60],[979,9,8,60,68],[980,1,1,68,69],[981,6,6,69,75],[983,1,1,75,76],[988,1,1,76,77],[992,2,2,77,79],[994,1,1,79,80]]],[42,19,18,80,98,[[997,9,9,80,89],[999,4,4,89,93],[1000,1,1,93,94],[1001,2,2,94,96],[1006,3,2,96,98]]],[43,23,23,98,121,[[1018,3,3,98,101],[1020,4,4,101,105],[1021,3,3,105,108],[1025,1,1,108,109],[1027,1,1,109,110],[1028,1,1,110,111],[1029,3,3,111,114],[1030,4,4,114,118],[1032,1,1,118,119],[1035,1,1,119,120],[1036,1,1,120,121]]],[47,1,1,121,122,[[1092,1,1,121,122]]],[65,5,5,122,127,[[1167,3,3,122,125],[1187,1,1,125,126],[1188,1,1,126,127]]]],[23193,23196,23205,23206,23221,23230,23393,23419,23461,23466,23470,23471,23472,23477,23599,23600,23601,23605,23607,23686,23701,23713,23851,23852,23858,24219,24221,24224,24229,24234,24244,24278,24305,24401,24421,24423,24424,24425,24427,24431,24432,24528,24540,24576,24623,24629,24670,24672,24720,24787,24906,24953,24956,25027,25040,25041,25045,25117,25140,25160,25213,25214,25215,25217,25219,25223,25224,25228,25296,25308,25310,25320,25329,25350,25355,25406,25636,25783,25785,25872,26050,26059,26063,26070,26072,26073,26076,26079,26084,26143,26144,26146,26147,26157,26243,26246,26521,26522,26928,26936,26945,26997,26999,27000,27007,27028,27035,27041,27190,27296,27323,27339,27349,27362,27367,27375,27386,27387,27479,27582,27589,29090,30698,30701,30706,31055,31088]]],["John's",[2,2,[[42,1,1,0,1,[[999,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[26145,27588]]]]},{"k":"G2492","v":[["Job",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30365]]]]},{"k":"G2493","v":[["Joel",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26965]]]]},{"k":"G2494","v":[["Jonan",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25055]]]]},{"k":"G2495","v":[["*",[13,11,[[39,5,4,0,4,[[940,4,3,0,3],[944,1,1,3,4]]],[41,4,3,4,7,[[983,4,3,4,7]]],[42,4,4,7,11,[[997,1,1,7,8],[1017,3,3,8,11]]]],[23528,23529,23530,23676,25434,25435,25437,26086,26913,26914,26915]]],["Jona",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26086]]],["Jonas",[12,10,[[39,5,4,0,4,[[940,4,3,0,3],[944,1,1,3,4]]],[41,4,3,4,7,[[983,4,3,4,7]]],[42,3,3,7,10,[[1017,3,3,7,10]]]],[23528,23529,23530,23676,25434,25435,25437,26913,26914,26915]]]]},{"k":"G2496","v":[["Joram",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23152]]]]},{"k":"G2497","v":[["Jorim",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25054]]]]},{"k":"G2498","v":[["Josaphat",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23152]]]]},{"k":"G2499","v":[["Jose",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25054]]]]},{"k":"G2500","v":[["Joses",[6,6,[[39,2,2,0,2,[[941,1,1,0,1],[955,1,1,1,2]]],[40,3,3,2,5,[[962,1,1,2,3],[971,2,2,3,5]]],[43,1,1,5,6,[[1021,1,1,5,6]]]],[23594,24185,24410,24866,24873,27058]]]]},{"k":"G2501","v":[["*",[35,34,[[39,9,9,0,9,[[929,5,5,0,5],[930,2,2,5,7],[955,2,2,7,9]]],[40,2,2,9,11,[[971,2,2,9,11]]],[41,11,11,11,22,[[973,1,1,11,12],[974,4,4,12,16],[975,4,4,16,20],[976,1,1,20,21],[995,1,1,21,22]]],[42,4,4,22,26,[[997,1,1,22,23],[1000,1,1,23,24],[1002,1,1,24,25],[1015,1,1,25,26]]],[43,6,5,26,31,[[1018,1,1,26,27],[1024,5,4,27,31]]],[57,2,2,31,33,[[1143,2,2,31,33]]],[65,1,1,33,34,[[1173,1,1,33,34]]]],[23160,23162,23163,23164,23168,23182,23188,24186,24188,24869,24871,24920,24977,24989,25006,25016,25048,25049,25051,25055,25085,25985,26089,26161,26299,26863,26946,27125,27129,27130,27134,30193,30194,30818]]],["Joseph",[33,33,[[39,9,9,0,9,[[929,5,5,0,5],[930,2,2,5,7],[955,2,2,7,9]]],[40,2,2,9,11,[[971,2,2,9,11]]],[41,10,10,11,21,[[973,1,1,11,12],[974,4,4,12,16],[975,4,4,16,20],[995,1,1,20,21]]],[42,4,4,21,25,[[997,1,1,21,22],[1000,1,1,22,23],[1002,1,1,23,24],[1015,1,1,24,25]]],[43,5,5,25,30,[[1018,1,1,25,26],[1024,4,4,26,30]]],[57,2,2,30,32,[[1143,2,2,30,32]]],[65,1,1,32,33,[[1173,1,1,32,33]]]],[23160,23162,23163,23164,23168,23182,23188,24186,24188,24869,24871,24920,24977,24989,25006,25016,25048,25049,25051,25055,25985,26089,26161,26299,26863,26946,27125,27129,27130,27134,30193,30194,30818]]],["Joseph's",[2,2,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[25085,27129]]]]},{"k":"G2502","v":[["Josias",[2,2,[[39,2,2,0,2,[[929,2,2,0,2]]]],[23154,23155]]]]},{"k":"G2503","v":[["jot",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23252]]]]},{"k":"G2504","v":[["*",[72,68,[[39,8,7,0,7,[[930,1,1,0,1],[938,2,2,1,3],[939,1,1,3,4],[944,1,1,4,5],[949,2,1,5,6],[954,1,1,6,7]]],[40,1,1,7,8,[[967,1,1,7,8]]],[41,6,6,8,14,[[973,1,1,8,9],[974,1,1,9,10],[983,1,1,10,11],[988,1,1,11,12],[992,1,1,12,13],[994,1,1,13,14]]],[42,22,22,14,36,[[997,3,3,14,17],[1001,1,1,17,18],[1002,2,2,18,20],[1003,1,1,20,21],[1004,1,1,21,22],[1006,4,4,22,26],[1008,1,1,26,27],[1010,1,1,27,28],[1011,3,3,28,31],[1013,3,3,31,34],[1016,2,2,34,36]]],[43,5,5,36,41,[[1025,1,1,36,37],[1027,1,1,37,38],[1039,2,2,38,40],[1043,1,1,40,41]]],[44,2,2,41,43,[[1048,1,1,41,42],[1056,1,1,42,43]]],[45,7,7,43,50,[[1063,1,1,43,44],[1068,2,2,44,46],[1071,1,1,46,47],[1072,1,1,47,48],[1076,1,1,48,49],[1077,1,1,49,50]]],[46,8,6,50,56,[[1083,1,1,50,51],[1088,6,4,51,55],[1089,1,1,55,56]]],[47,2,2,56,58,[[1094,1,1,56,57],[1096,1,1,57,58]]],[48,1,1,58,59,[[1097,1,1,58,59]]],[49,2,2,59,61,[[1104,2,2,59,61]]],[51,1,1,61,62,[[1113,1,1,61,62]]],[57,1,1,62,63,[[1140,1,1,62,63]]],[58,2,1,63,64,[[1147,2,1,63,64]]],[65,4,4,64,68,[[1168,2,2,64,66],[1169,2,2,66,68]]]],[23177,23449,23450,23487,23690,23850,24069,24669,24896,25021,25414,25629,25782,25893,26075,26077,26078,26227,26313,26314,26356,26407,26496,26508,26509,26519,26612,26688,26703,26704,26708,26777,26780,26785,26882,26888,27195,27285,27717,27723,27852,27998,28212,28395,28495,28527,28600,28601,28726,28780,28915,29005,29007,29010,29011,29042,29143,29202,29221,29410,29419,29595,30101,30311,30723,30744,30756,30767]]],["+",[14,14,[[39,2,2,0,2,[[938,1,1,0,1],[944,1,1,1,2]]],[40,1,1,2,3,[[967,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]],[42,4,4,4,8,[[1003,1,1,4,5],[1006,1,1,5,6],[1011,1,1,6,7],[1016,1,1,7,8]]],[43,1,1,8,9,[[1027,1,1,8,9]]],[45,3,3,9,12,[[1068,1,1,9,10],[1071,1,1,10,11],[1077,1,1,11,12]]],[46,2,2,12,14,[[1088,2,2,12,14]]]],[23449,23690,24669,25782,26356,26496,26708,26888,27285,28495,28600,28780,29007,29010]]],["I",[44,41,[[39,3,3,0,3,[[930,1,1,0,1],[939,1,1,1,2],[954,1,1,2,3]]],[41,4,4,3,7,[[974,1,1,3,4],[983,1,1,4,5],[988,1,1,5,6],[994,1,1,6,7]]],[42,17,17,7,24,[[997,3,3,7,10],[1001,1,1,10,11],[1002,2,2,11,13],[1004,1,1,13,14],[1006,3,3,14,17],[1008,1,1,17,18],[1010,1,1,18,19],[1011,2,2,19,21],[1013,2,2,21,23],[1016,1,1,23,24]]],[43,3,3,24,27,[[1039,2,2,24,26],[1043,1,1,26,27]]],[44,1,1,27,28,[[1056,1,1,27,28]]],[45,2,2,28,30,[[1063,1,1,28,29],[1068,1,1,29,30]]],[46,6,4,30,34,[[1083,1,1,30,31],[1088,4,2,31,33],[1089,1,1,33,34]]],[47,2,2,34,36,[[1094,1,1,34,35],[1096,1,1,35,36]]],[49,1,1,36,37,[[1104,1,1,36,37]]],[51,1,1,37,38,[[1113,1,1,37,38]]],[57,1,1,38,39,[[1140,1,1,38,39]]],[58,2,1,39,40,[[1147,2,1,39,40]]],[65,1,1,40,41,[[1168,1,1,40,41]]]],[23177,23487,24069,25021,25414,25629,25893,26075,26077,26078,26227,26313,26314,26407,26508,26509,26519,26612,26688,26703,26704,26780,26785,26882,27717,27723,27852,28212,28395,28527,28915,29005,29011,29042,29143,29202,29419,29595,30101,30311,30744]]],["also",[13,13,[[39,2,2,0,2,[[938,1,1,0,1],[949,1,1,1,2]]],[41,1,1,2,3,[[973,1,1,2,3]]],[42,1,1,3,4,[[1013,1,1,3,4]]],[43,1,1,4,5,[[1025,1,1,4,5]]],[44,1,1,5,6,[[1048,1,1,5,6]]],[45,2,2,6,8,[[1072,1,1,6,7],[1076,1,1,7,8]]],[48,1,1,8,9,[[1097,1,1,8,9]]],[49,1,1,9,10,[[1104,1,1,9,10]]],[65,3,3,10,13,[[1168,1,1,10,11],[1169,2,2,11,13]]]],[23450,23850,24896,26777,27195,27998,28601,28726,29221,29410,30723,30756,30767]]],["wise",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23850]]]]},{"k":"G2505","v":[["as",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24139]]]]},{"k":"G2506","v":[["*",[3,3,[[46,3,3,0,3,[[1087,2,2,0,2],[1090,1,1,2,3]]]],[28975,28979,29053]]],["destruction",[2,2,[[46,2,2,0,2,[[1087,1,1,0,1],[1090,1,1,1,2]]]],[28979,29053]]],["down",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28975]]]]},{"k":"G2507","v":[["*",[9,9,[[40,2,2,0,2,[[971,2,2,0,2]]],[41,3,3,2,5,[[973,1,1,2,3],[984,1,1,3,4],[995,1,1,4,5]]],[43,3,3,5,8,[[1030,2,2,5,7],[1036,1,1,7,8]]],[46,1,1,8,9,[[1087,1,1,8,9]]]],[24862,24872,24945,25477,25988,27381,27391,27612,28976]]],["+",[3,3,[[40,2,2,0,2,[[971,2,2,0,2]]],[41,1,1,2,3,[[995,1,1,2,3]]]],[24862,24872,25988]]],["destroyed",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1036,1,1,1,2]]]],[27381,27612]]],["down",[4,4,[[41,2,2,0,2,[[973,1,1,0,1],[984,1,1,1,2]]],[43,1,1,2,3,[[1030,1,1,2,3]]],[46,1,1,3,4,[[1087,1,1,3,4]]]],[24945,25477,27391,28976]]]]},{"k":"G2508","v":[["*",[2,2,[[42,1,1,0,1,[[1011,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[26701,30135]]],["purged",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30135]]],["purgeth",[1,1,[[42,1,1,0,1,[[1011,1,1,0,1]]]],[26701]]]]},{"k":"G2509","v":[["*",[13,13,[[44,2,2,0,2,[[1049,1,1,0,1],[1057,1,1,1,2]]],[45,1,1,2,3,[[1073,1,1,2,3]]],[46,4,4,3,7,[[1078,1,1,3,4],[1080,2,2,4,6],[1085,1,1,6,7]]],[51,4,4,7,11,[[1112,1,1,7,8],[1113,2,2,8,10],[1114,1,1,10,11]]],[57,2,2,11,13,[[1136,1,1,11,12],[1137,1,1,12,13]]]],[28028,28249,28646,28814,28854,28859,28943,29581,29596,29602,29608,30016,30034]]],["As",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29581]]],["as",[12,12,[[44,2,2,0,2,[[1049,1,1,0,1],[1057,1,1,1,2]]],[45,1,1,2,3,[[1073,1,1,2,3]]],[46,4,4,3,7,[[1078,1,1,3,4],[1080,2,2,4,6],[1085,1,1,6,7]]],[51,3,3,7,10,[[1113,2,2,7,9],[1114,1,1,9,10]]],[57,2,2,10,12,[[1136,1,1,10,11],[1137,1,1,11,12]]]],[28028,28249,28646,28814,28854,28859,28943,29596,29602,29608,30016,30034]]]]},{"k":"G2510","v":[["fastened",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27902]]]]},{"k":"G2511","v":[["*",[30,29,[[39,7,6,0,6,[[936,3,2,0,2],[938,1,1,2,3],[939,1,1,3,4],[951,2,2,4,6]]],[40,4,4,6,10,[[957,3,3,6,9],[963,1,1,9,10]]],[41,7,7,10,17,[[976,1,1,10,11],[977,2,2,11,13],[979,1,1,13,14],[983,1,1,14,15],[989,2,2,15,17]]],[43,3,3,17,20,[[1027,1,1,17,18],[1028,1,1,18,19],[1032,1,1,19,20]]],[46,1,1,20,21,[[1084,1,1,20,21]]],[48,1,1,21,22,[[1101,1,1,21,22]]],[55,1,1,22,23,[[1130,1,1,22,23]]],[57,3,3,23,26,[[1141,3,3,23,26]]],[58,1,1,26,27,[[1149,1,1,26,27]]],[61,2,2,27,29,[[1159,2,2,27,29]]]],[23347,23348,23425,23464,23943,23944,24255,24256,24257,24482,25090,25119,25120,25217,25444,25665,25668,27274,27316,27451,28917,29330,29922,30119,30127,30128,30345,30547,30549]]],["+",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[977,1,1,2,3]]]],[23347,24255,25119]]],["Cleanse",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30345]]],["clean",[5,5,[[39,2,2,0,2,[[936,1,1,0,1],[951,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,2,2,3,5,[[977,1,1,3,4],[983,1,1,4,5]]]],[23348,23943,24256,25120,25444]]],["cleanse",[5,5,[[39,2,2,0,2,[[938,1,1,0,1],[951,1,1,1,2]]],[46,1,1,2,3,[[1084,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]],[61,1,1,4,5,[[1159,1,1,4,5]]]],[23425,23944,28917,29330,30549]]],["cleansed",[9,9,[[39,2,2,0,2,[[936,1,1,0,1],[939,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,4,4,3,7,[[976,1,1,3,4],[979,1,1,4,5],[989,2,2,5,7]]],[43,2,2,7,9,[[1027,1,1,7,8],[1028,1,1,8,9]]]],[23348,23464,24257,25090,25217,25665,25668,27274,27316]]],["cleanseth",[1,1,[[61,1,1,0,1,[[1159,1,1,0,1]]]],[30547]]],["purge",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30119]]],["purged",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30127]]],["purging",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24482]]],["purified",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30128]]],["purify",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29922]]],["purifying",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27451]]]]},{"k":"G2512","v":[["*",[7,7,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[977,1,1,2,3]]],[42,2,2,3,5,[[998,1,1,3,4],[999,1,1,4,5]]],[57,1,1,5,6,[[1133,1,1,5,6]]],[60,1,1,6,7,[[1156,1,1,6,7]]]],[24259,24995,25121,26101,26145,29966,30488]]],["+",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29966]]],["cleansing",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]]],[24259,25121]]],["purged",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30488]]],["purification",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24995]]],["purifying",[2,2,[[42,2,2,0,2,[[998,1,1,0,1],[999,1,1,1,2]]]],[26101,26145]]]]},{"k":"G2513","v":[["*",[28,24,[[39,3,3,0,3,[[933,1,1,0,1],[951,1,1,1,2],[955,1,1,2,3]]],[41,1,1,3,4,[[983,1,1,3,4]]],[42,4,3,4,7,[[1009,3,2,4,6],[1011,1,1,6,7]]],[43,2,2,7,9,[[1035,1,1,7,8],[1037,1,1,8,9]]],[44,1,1,9,10,[[1059,1,1,9,10]]],[53,2,2,10,12,[[1119,1,1,10,11],[1121,1,1,11,12]]],[54,2,2,12,14,[[1125,1,1,12,13],[1126,1,1,13,14]]],[55,3,1,14,15,[[1129,3,1,14,15]]],[57,1,1,15,16,[[1142,1,1,15,16]]],[58,1,1,16,17,[[1146,1,1,16,17]]],[59,1,1,17,18,[[1151,1,1,17,18]]],[65,7,6,18,24,[[1181,1,1,18,19],[1185,2,2,19,21],[1187,3,2,21,23],[1188,1,1,23,24]]]],[23242,23944,24188,25446,26640,26641,26702,27563,27652,28300,29701,29740,29812,29849,29907,30155,30293,30396,30952,31025,31031,31071,31074,31081]]],["Pure",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30293]]],["clean",[10,9,[[39,2,2,0,2,[[951,1,1,0,1],[955,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[42,4,3,3,6,[[1009,3,2,3,5],[1011,1,1,5,6]]],[43,1,1,6,7,[[1035,1,1,6,7]]],[65,2,2,7,9,[[1185,2,2,7,9]]]],[23944,24188,25446,26640,26641,26702,27563,31025,31031]]],["clear",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31071]]],["pure",[16,14,[[39,1,1,0,1,[[933,1,1,0,1]]],[43,1,1,1,2,[[1037,1,1,1,2]]],[44,1,1,2,3,[[1059,1,1,2,3]]],[53,2,2,3,5,[[1119,1,1,3,4],[1121,1,1,4,5]]],[54,2,2,5,7,[[1125,1,1,5,6],[1126,1,1,6,7]]],[55,3,1,7,8,[[1129,3,1,7,8]]],[57,1,1,8,9,[[1142,1,1,8,9]]],[59,1,1,9,10,[[1151,1,1,9,10]]],[65,4,4,10,14,[[1181,1,1,10,11],[1187,2,2,11,13],[1188,1,1,13,14]]]],[23242,27652,28300,29701,29740,29812,29849,29907,30155,30396,30952,31071,31074,31081]]]]},{"k":"G2514","v":[["purifying",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30118]]]]},{"k":"G2515","v":[["*",[3,3,[[39,2,2,0,2,[[949,1,1,0,1],[951,1,1,1,2]]],[40,1,1,2,3,[[967,1,1,2,3]]]],[23838,23920,24655]]],["seat",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23920]]],["seats",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]]],[23838,24655]]]]},{"k":"G2516","v":[["*",[6,6,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[42,3,3,2,5,[[1000,1,1,2,3],[1007,1,1,3,4],[1016,1,1,4,5]]],[43,1,1,5,6,[[1023,1,1,5,6]]]],[24109,25019,26162,26543,26879,27116]]],["sat",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,2,2,1,3,[[1000,1,1,1,2],[1007,1,1,2,3]]],[43,1,1,3,4,[[1023,1,1,3,4]]]],[24109,26162,26543,27116]]],["sitting",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[42,1,1,1,2,[[1016,1,1,1,2]]]],[25019,26879]]]]},{"k":"G2517","v":[["*",[5,5,[[41,2,2,0,2,[[973,1,1,0,1],[980,1,1,1,2]]],[43,3,3,2,5,[[1020,1,1,2,3],[1028,1,1,3,4],[1035,1,1,4,5]]]],[24896,25246,27020,27311,27580]]],["+",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25246]]],["after",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27020]]],["order",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,2,2,1,3,[[1028,1,1,1,2],[1035,1,1,2,3]]]],[24896,27311,27580]]]]},{"k":"G2518","v":[["*",[22,20,[[39,7,7,0,7,[[936,1,1,0,1],[937,1,1,1,2],[941,1,1,2,3],[953,1,1,3,4],[954,3,3,4,7]]],[40,8,7,7,14,[[960,2,2,7,9],[961,1,1,9,10],[969,1,1,10,11],[970,4,3,11,14]]],[41,2,2,14,16,[[980,1,1,14,15],[994,1,1,15,16]]],[48,1,1,16,17,[[1101,1,1,16,17]]],[51,4,3,17,20,[[1115,4,3,17,20]]]],[23369,23403,23564,24013,24094,24097,24099,24350,24361,24403,24753,24791,24794,24795,25297,25910,29318,29627,29628,29631]]],["asleep",[5,5,[[39,3,3,0,3,[[936,1,1,0,1],[954,2,2,1,3]]],[40,2,2,3,5,[[960,1,1,3,4],[970,1,1,4,5]]]],[23369,24094,24097,24361,24794]]],["on",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24099,24795]]],["sleep",[6,5,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[51,4,3,2,5,[[1115,4,3,2,5]]]],[24350,25910,29627,29628,29631]]],["sleepest",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]]],[24791,29318]]],["sleepeth",[3,3,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23403,24403,25297]]],["sleeping",[2,2,[[40,2,2,0,2,[[969,1,1,0,1],[970,1,1,1,2]]]],[24753,24791]]],["slept",[2,2,[[39,2,2,0,2,[[941,1,1,0,1],[953,1,1,1,2]]]],[23564,24013]]]]},{"k":"G2519","v":[["*",[3,2,[[39,3,2,0,2,[[951,3,2,0,2]]]],[23926,23928]]],["Master",[2,2,[[39,2,2,0,2,[[951,2,2,0,2]]]],[23926,23928]]],["masters",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23928]]]]},{"k":"G2520","v":[["+",[2,2,[[43,1,1,0,1,[[1039,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[27726,27958]]]]},{"k":"G2521","v":[["*",[89,87,[[39,18,17,0,17,[[932,2,1,0,1],[937,1,1,1,2],[939,1,1,2,3],[941,2,2,3,5],[943,1,1,5,6],[948,1,1,6,7],[950,1,1,7,8],[951,1,1,8,9],[952,1,1,9,10],[954,3,3,10,13],[955,3,3,13,16],[956,1,1,16,17]]],[40,11,11,17,28,[[958,2,2,17,19],[959,2,2,19,21],[960,1,1,21,22],[961,1,1,22,23],[966,1,1,23,24],[968,1,1,24,25],[969,1,1,25,26],[970,1,1,26,27],[972,1,1,27,28]]],[41,12,12,28,40,[[973,1,1,28,29],[977,2,2,29,31],[979,1,1,31,32],[980,1,1,32,33],[982,1,1,33,34],[990,1,1,34,35],[992,1,1,35,36],[993,1,1,36,37],[994,3,3,37,40]]],[42,4,4,40,44,[[998,1,1,40,41],[1002,1,1,41,42],[1005,1,1,42,43],[1008,1,1,43,44]]],[43,7,7,44,51,[[1019,2,2,44,46],[1020,1,1,46,47],[1025,1,1,47,48],[1031,1,1,48,49],[1037,1,1,49,50],[1040,1,1,50,51]]],[45,1,1,51,52,[[1075,1,1,51,52]]],[50,1,1,52,53,[[1109,1,1,52,53]]],[57,1,1,53,54,[[1133,1,1,53,54]]],[58,2,1,54,55,[[1147,2,1,54,55]]],[65,32,32,55,87,[[1170,5,5,55,60],[1171,3,3,60,63],[1172,5,5,63,68],[1173,2,2,68,70],[1175,1,1,70,71],[1177,1,1,71,72],[1180,3,3,72,75],[1183,4,4,75,79],[1184,1,1,79,80],[1185,5,5,80,85],[1186,1,1,85,86],[1187,1,1,86,87]]]],[23225,23388,23475,23540,23541,23662,23822,23916,23940,23960,24112,24118,24123,24148,24165,24190,24197,24266,24274,24320,24322,24324,24379,24634,24709,24720,24816,24878,24972,25124,25134,25227,25280,25376,25723,25821,25861,25919,25920,25933,26109,26260,26448,26595,26951,26983,27006,27204,27422,27635,27737,28708,29518,29976,30296,30770,30771,30772,30777,30778,30780,30786,30792,30795,30797,30798,30801,30809,30820,30825,30857,30888,30940,30941,30942,30976,30978,30984,30990,31000,31021,31028,31035,31036,31038,31049,31058]]],["+",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29518]]],["Sit",[6,6,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[43,1,1,3,4,[[1019,1,1,3,4]]],[57,1,1,4,5,[[1133,1,1,4,5]]],[58,1,1,5,6,[[1147,1,1,5,6]]]],[23916,24709,25821,26983,29976,30296]]],["by",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[25124,28708]]],["down",[4,4,[[39,3,3,0,3,[[943,1,1,0,1],[955,2,2,1,3]]],[41,1,1,3,4,[[994,1,1,3,4]]]],[23662,24148,24165,25919]]],["dwell",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25861]]],["sat",[41,40,[[39,8,7,0,7,[[932,2,1,0,1],[941,2,2,1,3],[952,1,1,3,4],[954,2,2,4,6],[956,1,1,6,7]]],[40,5,5,7,12,[[959,2,2,7,9],[960,1,1,9,10],[966,1,1,10,11],[969,1,1,11,12]]],[41,2,2,12,14,[[990,1,1,12,13],[994,1,1,13,14]]],[42,2,2,14,16,[[1002,1,1,14,15],[1005,1,1,15,16]]],[43,3,3,16,19,[[1020,1,1,16,17],[1031,1,1,17,18],[1037,1,1,18,19]]],[65,21,21,19,40,[[1170,4,4,19,23],[1171,2,2,23,25],[1172,4,4,25,29],[1175,1,1,29,30],[1177,1,1,30,31],[1180,3,3,31,34],[1185,4,4,34,38],[1186,1,1,38,39],[1187,1,1,39,40]]]],[23225,23540,23541,23960,24112,24123,24197,24320,24322,24324,24634,24720,25723,25920,26260,26448,27006,27422,27635,30770,30771,30777,30778,30780,30786,30795,30797,30798,30801,30857,30888,30940,30941,30942,31021,31028,31036,31038,31049,31058]]],["sit",[6,6,[[41,2,2,0,2,[[973,1,1,0,1],[994,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]],[65,3,3,3,6,[[1183,1,1,3,4],[1184,1,1,4,5],[1185,1,1,5,6]]]],[24972,25933,30296,30978,31000,31035]]],["sittest",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27737]]],["sitteth",[8,8,[[39,1,1,0,1,[[951,1,1,0,1]]],[65,7,7,1,8,[[1171,1,1,1,2],[1172,1,1,2,3],[1173,2,2,3,5],[1183,3,3,5,8]]]],[23940,30792,30809,30820,30825,30976,30984,30990]]],["sitting",[19,19,[[39,5,5,0,5,[[937,1,1,0,1],[939,1,1,1,2],[948,1,1,2,3],[954,1,1,3,4],[955,1,1,4,5]]],[40,5,5,5,10,[[958,2,2,5,7],[961,1,1,7,8],[970,1,1,8,9],[972,1,1,9,10]]],[41,4,4,10,14,[[977,1,1,10,11],[979,1,1,11,12],[980,1,1,12,13],[982,1,1,13,14]]],[42,2,2,14,16,[[998,1,1,14,15],[1008,1,1,15,16]]],[43,2,2,16,18,[[1019,1,1,16,17],[1025,1,1,17,18]]],[65,1,1,18,19,[[1170,1,1,18,19]]]],[23388,23475,23822,24118,24190,24266,24274,24379,24816,24878,25134,25227,25280,25376,26109,26595,26951,27204,30772]]]]},{"k":"G2522","v":[["daily",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27102]]]]},{"k":"G2523","v":[["*",[48,46,[[39,9,8,0,8,[[933,1,1,0,1],[941,1,1,1,2],[947,2,1,2,3],[948,2,2,3,5],[951,1,1,5,6],[953,1,1,6,7],[954,1,1,7,8]]],[40,8,8,8,16,[[965,1,1,8,9],[966,2,2,9,11],[967,2,2,11,13],[968,1,1,13,14],[970,1,1,14,15],[972,1,1,15,16]]],[41,8,8,16,24,[[976,1,1,16,17],[977,1,1,17,18],[986,2,2,18,20],[988,1,1,20,21],[991,1,1,21,22],[994,1,1,22,23],[996,1,1,23,24]]],[42,3,3,24,27,[[1004,1,1,24,25],[1008,1,1,25,26],[1015,1,1,26,27]]],[43,9,9,27,36,[[1019,2,2,27,29],[1025,1,1,29,30],[1029,1,1,30,31],[1030,1,1,31,32],[1033,1,1,32,33],[1035,1,1,33,34],[1042,2,2,34,36]]],[45,2,2,36,38,[[1067,1,1,36,37],[1071,1,1,37,38]]],[48,1,1,38,39,[[1097,1,1,38,39]]],[52,1,1,39,40,[[1117,1,1,39,40]]],[57,4,4,40,44,[[1133,1,1,40,41],[1140,1,1,41,42],[1142,1,1,42,43],[1144,1,1,43,44]]],[65,3,2,44,46,[[1169,2,1,44,45],[1186,1,1,45,46]]]],[23235,23587,23790,23813,23815,23920,24039,24090,24573,24625,24628,24642,24647,24714,24786,24892,25083,25110,25581,25584,25626,25761,25894,26040,26383,26594,26838,26952,26979,27207,27358,27376,27496,27568,27802,27813,28471,28574,29226,29665,29966,30093,30145,30214,30767,31042]]],["+",[2,2,[[41,2,2,0,2,[[986,2,2,0,2]]]],[25581,25584]]],["Sit",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24090,24786]]],["continued",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27568]]],["down",[14,14,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,3,3,2,5,[[976,1,1,2,3],[977,1,1,3,4],[988,1,1,4,5]]],[42,2,2,5,7,[[1004,1,1,5,6],[1015,1,1,6,7]]],[43,2,2,7,9,[[1030,1,1,7,8],[1033,1,1,8,9]]],[45,1,1,9,10,[[1071,1,1,9,10]]],[57,3,3,10,13,[[1133,1,1,10,11],[1142,1,1,11,12],[1144,1,1,12,13]]],[65,1,1,13,14,[[1169,1,1,13,14]]]],[23587,24573,25083,25110,25626,26383,26838,27376,27496,28574,29966,30145,30214,30767]]],["sat",[10,10,[[40,4,4,0,4,[[967,2,2,0,2],[968,1,1,2,3],[972,1,1,3,4]]],[41,1,1,4,5,[[991,1,1,4,5]]],[42,1,1,5,6,[[1008,1,1,5,6]]],[43,3,3,6,9,[[1019,1,1,6,7],[1029,1,1,7,8],[1042,1,1,8,9]]],[65,1,1,9,10,[[1186,1,1,9,10]]]],[24642,24647,24714,24892,25761,26594,26952,27358,27813,31042]]],["set",[4,4,[[39,1,1,0,1,[[933,1,1,0,1]]],[45,1,1,1,2,[[1067,1,1,1,2]]],[48,1,1,2,3,[[1097,1,1,2,3]]],[57,1,1,3,4,[[1140,1,1,3,4]]]],[23235,28471,29226,30093]]],["sit",[12,11,[[39,6,5,0,5,[[947,2,1,0,1],[948,2,2,1,3],[951,1,1,3,4],[953,1,1,4,5]]],[40,2,2,5,7,[[966,2,2,5,7]]],[41,1,1,7,8,[[994,1,1,7,8]]],[43,2,2,8,10,[[1019,1,1,8,9],[1025,1,1,9,10]]],[65,1,1,10,11,[[1169,1,1,10,11]]]],[23790,23813,23815,23920,24039,24625,24628,25894,26979,27207,30767]]],["sitteth",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29665]]],["sitting",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27802]]],["tarry",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26040]]]]},{"k":"G2524","v":[["*",[4,4,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,3,3,1,4,[[1026,1,1,1,2],[1027,1,1,2,3],[1028,1,1,3,4]]]],[25126,27241,27270,27312]]],["+",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[25126,27241]]],["down",[2,2,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]]],[27270,27312]]]]},{"k":"G2525","v":[["*",[22,21,[[39,4,4,0,4,[[952,2,2,0,2],[953,2,2,2,4]]],[41,3,3,4,7,[[984,3,3,4,7]]],[43,5,5,7,12,[[1023,1,1,7,8],[1024,3,3,8,11],[1034,1,1,11,12]]],[44,2,1,12,13,[[1050,2,1,12,13]]],[55,1,1,13,14,[[1129,1,1,13,14]]],[57,4,4,14,18,[[1134,1,1,14,15],[1137,1,1,15,16],[1139,1,1,16,17],[1140,1,1,17,18]]],[58,2,2,18,20,[[1148,1,1,18,19],[1149,1,1,19,20]]],[60,1,1,20,21,[[1156,1,1,20,21]]]],[24002,24004,24029,24031,25473,25501,25503,27104,27126,27143,27151,27538,28066,29897,29984,30031,30092,30095,30325,30341,30487]]],["+",[4,4,[[39,3,3,0,3,[[952,1,1,0,1],[953,2,2,1,3]]],[41,1,1,3,4,[[984,1,1,3,4]]]],[24004,24029,24031,25503]]],["appoint",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27104]]],["conducted",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27538]]],["is",[2,2,[[58,2,2,0,2,[[1148,1,1,0,1],[1149,1,1,1,2]]]],[30325,30341]]],["made",[6,5,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,3,3,1,4,[[1024,3,3,1,4]]],[44,2,1,4,5,[[1050,2,1,4,5]]]],[25473,27126,27143,27151,28066]]],["make",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30487]]],["maketh",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30092]]],["ordain",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29897]]],["ordained",[2,2,[[57,2,2,0,2,[[1137,1,1,0,1],[1140,1,1,1,2]]]],[30031,30095]]],["ruler",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[24002,25501]]],["set",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29984]]]]},{"k":"G2526","v":[["*",[4,3,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,2,1,1,2,[[1085,2,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[28142,28944,30459]]],["as",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[28142,30459]]],["that",[2,1,[[46,2,1,0,1,[[1085,2,1,0,1]]]],[28944]]]]},{"k":"G2527","v":[["all",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27040]]]]},{"k":"G2528","v":[["armed",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25426]]]]},{"k":"G2529","v":[["seen",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27950]]]]},{"k":"G2530","v":[["*",[5,5,[[41,2,2,0,2,[[973,1,1,0,1],[991,1,1,1,2]]],[43,3,3,2,5,[[1019,2,2,2,4],[1021,1,1,4,5]]]],[24900,25740,26973,26994,27057]]],["+",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27057]]],["as",[2,2,[[41,1,1,0,1,[[991,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[25740,26994]]],["because",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26973]]],["that",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24900]]]]},{"k":"G2531","v":[["*",[180,178,[[39,3,3,0,3,[[949,1,1,0,1],[954,1,1,1,2],[956,1,1,2,3]]],[40,7,7,3,10,[[960,1,1,3,4],[965,1,1,4,5],[967,1,1,5,6],[970,2,2,6,8],[971,1,1,8,9],[972,1,1,9,10]]],[41,16,16,10,26,[[973,3,3,10,13],[974,2,2,13,15],[977,1,1,15,16],[978,2,2,16,18],[983,2,2,18,20],[989,1,1,20,21],[991,1,1,21,22],[994,2,2,22,24],[996,2,2,24,26]]],[42,32,32,26,58,[[997,1,1,26,27],[999,1,1,27,28],[1001,2,2,28,30],[1002,3,3,30,33],[1003,1,1,33,34],[1004,1,1,34,35],[1006,2,2,35,37],[1008,2,2,37,39],[1009,3,3,39,42],[1010,2,2,42,44],[1011,4,4,44,48],[1013,8,8,48,56],[1015,1,1,56,57],[1016,1,1,57,58]]],[43,11,11,58,69,[[1019,2,2,58,60],[1024,3,3,60,63],[1027,1,1,63,64],[1028,1,1,64,65],[1032,3,3,65,68],[1039,1,1,68,69]]],[44,20,19,69,88,[[1046,3,3,69,72],[1047,1,1,72,73],[1048,4,3,73,76],[1049,1,1,76,77],[1053,1,1,77,78],[1054,3,3,78,81],[1055,1,1,81,82],[1056,2,2,82,84],[1060,4,4,84,88]]],[45,20,20,88,108,[[1062,2,2,88,90],[1063,1,1,90,91],[1065,1,1,91,92],[1066,1,1,92,93],[1069,1,1,93,94],[1071,6,6,94,100],[1072,2,2,100,102],[1073,2,2,102,104],[1074,1,1,104,105],[1075,1,1,105,106],[1076,2,2,106,108]]],[46,12,12,108,120,[[1078,2,2,108,110],[1081,1,1,110,111],[1083,1,1,111,112],[1085,3,3,112,115],[1086,3,3,115,118],[1087,1,1,118,119],[1088,1,1,119,120]]],[47,3,3,120,123,[[1092,1,1,120,121],[1093,1,1,121,122],[1095,1,1,122,123]]],[48,10,10,123,133,[[1097,1,1,123,124],[1099,1,1,124,125],[1100,4,4,125,129],[1101,4,4,129,133]]],[49,3,3,133,136,[[1103,1,1,133,134],[1104,1,1,134,135],[1105,1,1,135,136]]],[50,5,4,136,140,[[1107,3,2,136,138],[1108,1,1,138,139],[1109,1,1,139,140]]],[51,12,12,140,152,[[1111,1,1,140,141],[1112,5,5,141,146],[1113,1,1,146,147],[1114,4,4,147,151],[1115,1,1,151,152]]],[52,2,2,152,154,[[1116,1,1,152,153],[1118,1,1,153,154]]],[53,1,1,154,155,[[1119,1,1,154,155]]],[57,8,8,155,163,[[1135,1,1,155,156],[1136,2,2,156,158],[1137,2,2,158,160],[1140,1,1,160,161],[1142,1,1,161,162],[1143,1,1,162,163]]],[59,1,1,163,164,[[1154,1,1,163,164]]],[60,1,1,164,165,[[1156,1,1,164,165]]],[61,9,9,165,174,[[1160,3,3,165,168],[1161,5,5,168,173],[1162,1,1,173,174]]],[62,2,2,174,176,[[1164,2,2,174,176]]],[63,2,2,176,178,[[1165,2,2,176,178]]]],[23832,24078,24201,24356,24551,24646,24770,24775,24834,24880,24895,24948,24963,24993,24996,25121,25177,25182,25406,25435,25677,25763,25877,25893,26015,26030,26067,26134,26233,26240,26288,26314,26315,26366,26409,26496,26507,26594,26630,26645,26663,26664,26695,26699,26703,26708,26709,26711,26761,26770,26773,26775,26777,26780,26781,26782,26865,26888,26953,26971,27133,27158,27164,27306,27336,27450,27456,27457,27707,27943,27947,27958,27986,27995,27999,28001,28039,28152,28168,28184,28188,28203,28217,28235,28306,28310,28312,28324,28369,28394,28403,28450,28461,28529,28573,28574,28575,28576,28577,28600,28601,28602,28645,28652,28677,28712,28756,28767,28805,28814,28860,28914,28937,28938,28947,28959,28963,28965,28978,29001,29088,29108,29183,29210,29254,29276,29289,29293,29304,29306,29307,29329,29333,29368,29403,29438,29471,29472,29501,29530,29565,29572,29574,29575,29583,29584,29594,29604,29609,29614,29616,29632,29652,29679,29699,30002,30017,30021,30033,30036,30097,30158,30184,30456,30493,30556,30568,30577,30581,30582,30586,30591,30602,30620,30649,30651,30660,30661]]],["+",[3,3,[[43,1,1,0,1,[[1027,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]]],[27306,28600,29289]]],["As",[21,21,[[41,3,3,0,3,[[973,2,2,0,2],[974,1,1,2,3]]],[42,6,6,3,9,[[1002,1,1,3,4],[1006,1,1,4,5],[1011,2,2,5,7],[1013,2,2,7,9]]],[44,5,5,9,14,[[1048,1,1,9,10],[1049,1,1,10,11],[1053,1,1,11,12],[1054,2,2,12,14]]],[46,3,3,14,17,[[1078,1,1,14,15],[1085,1,1,15,16],[1086,1,1,16,17]]],[50,1,1,17,18,[[1107,1,1,17,18]]],[53,1,1,18,19,[[1119,1,1,18,19]]],[57,1,1,19,20,[[1137,1,1,19,20]]],[59,1,1,20,21,[[1154,1,1,20,21]]]],[24948,24963,24996,26314,26496,26703,26708,26761,26777,28001,28039,28152,28168,28188,28814,28947,28965,29472,29699,30036,30456]]],["as",[152,150,[[39,3,3,0,3,[[949,1,1,0,1],[954,1,1,1,2],[956,1,1,2,3]]],[40,7,7,3,10,[[960,1,1,3,4],[965,1,1,4,5],[967,1,1,5,6],[970,2,2,6,8],[971,1,1,8,9],[972,1,1,9,10]]],[41,13,13,10,23,[[973,1,1,10,11],[974,1,1,11,12],[977,1,1,12,13],[978,2,2,13,15],[983,2,2,15,17],[989,1,1,17,18],[991,1,1,18,19],[994,2,2,19,21],[996,2,2,21,23]]],[42,26,26,23,49,[[997,1,1,23,24],[999,1,1,24,25],[1001,2,2,25,27],[1002,2,2,27,29],[1003,1,1,29,30],[1004,1,1,30,31],[1006,1,1,31,32],[1008,2,2,32,34],[1009,3,3,34,37],[1010,2,2,37,39],[1011,2,2,39,41],[1013,6,6,41,47],[1015,1,1,47,48],[1016,1,1,48,49]]],[43,7,7,49,56,[[1019,2,2,49,51],[1024,2,2,51,53],[1032,2,2,53,55],[1039,1,1,55,56]]],[44,14,13,56,69,[[1046,3,3,56,59],[1047,1,1,59,60],[1048,3,2,60,62],[1054,1,1,62,63],[1056,2,2,63,65],[1060,4,4,65,69]]],[45,19,19,69,88,[[1062,2,2,69,71],[1063,1,1,71,72],[1065,1,1,72,73],[1066,1,1,73,74],[1069,1,1,74,75],[1071,5,5,75,80],[1072,2,2,80,82],[1073,2,2,82,84],[1074,1,1,84,85],[1075,1,1,85,86],[1076,2,2,86,88]]],[46,9,9,88,97,[[1078,1,1,88,89],[1081,1,1,89,90],[1083,1,1,90,91],[1085,2,2,91,93],[1086,2,2,93,95],[1087,1,1,95,96],[1088,1,1,96,97]]],[47,3,3,97,100,[[1092,1,1,97,98],[1093,1,1,98,99],[1095,1,1,99,100]]],[48,9,9,100,109,[[1097,1,1,100,101],[1099,1,1,101,102],[1100,3,3,102,105],[1101,4,4,105,109]]],[49,3,3,109,112,[[1103,1,1,109,110],[1104,1,1,110,111],[1105,1,1,111,112]]],[50,4,3,112,115,[[1107,2,1,112,113],[1108,1,1,113,114],[1109,1,1,114,115]]],[51,12,12,115,127,[[1111,1,1,115,116],[1112,5,5,116,121],[1113,1,1,121,122],[1114,4,4,122,126],[1115,1,1,126,127]]],[52,2,2,127,129,[[1116,1,1,127,128],[1118,1,1,128,129]]],[57,7,7,129,136,[[1135,1,1,129,130],[1136,2,2,130,132],[1137,1,1,132,133],[1140,1,1,133,134],[1142,1,1,134,135],[1143,1,1,135,136]]],[60,1,1,136,137,[[1156,1,1,136,137]]],[61,9,9,137,146,[[1160,3,3,137,140],[1161,5,5,140,145],[1162,1,1,145,146]]],[62,2,2,146,148,[[1164,2,2,146,148]]],[63,2,2,148,150,[[1165,2,2,148,150]]]],[23832,24078,24201,24356,24551,24646,24770,24775,24834,24880,24895,24993,25121,25177,25182,25406,25435,25677,25763,25877,25893,26015,26030,26067,26134,26233,26240,26288,26315,26366,26409,26507,26594,26630,26645,26663,26664,26695,26699,26709,26711,26770,26773,26775,26780,26781,26782,26865,26888,26953,26971,27158,27164,27450,27457,27707,27943,27947,27958,27986,27995,27999,28184,28217,28235,28306,28310,28312,28324,28369,28394,28403,28450,28461,28529,28573,28574,28575,28576,28577,28601,28602,28645,28652,28677,28712,28756,28767,28805,28860,28914,28937,28938,28959,28963,28978,29001,29088,29108,29183,29210,29254,29276,29293,29304,29306,29307,29329,29333,29368,29403,29438,29471,29501,29530,29565,29572,29574,29575,29583,29584,29594,29604,29609,29614,29616,29632,29652,29679,30002,30017,30021,30033,30097,30158,30184,30493,30556,30568,30577,30581,30582,30586,30591,30602,30620,30649,30651,30660,30661]]],["how",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27456]]],["it",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28203]]],["to",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27336]]],["when",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27133]]]]},{"k":"G2532","v":[["*",[9264,5218,[[39,1233,723,0,723,[[929,12,9,0,9],[930,31,16,9,25],[931,19,12,25,37],[932,42,19,37,56],[933,40,26,56,82],[934,28,18,82,100],[935,36,19,100,119],[936,57,29,119,148],[937,53,30,148,178],[938,41,27,178,205],[939,36,20,205,225],[940,63,40,225,265],[941,80,45,265,310],[942,45,25,310,335],[943,41,24,335,359],[944,31,17,359,376],[945,43,22,376,398],[946,30,21,398,419],[947,29,18,419,437],[948,41,26,437,463],[949,69,36,463,499],[950,42,26,499,525],[951,53,29,525,554],[952,60,34,554,588],[953,59,37,588,625],[954,72,47,625,672],[955,59,37,672,709],[956,21,14,709,723]]],[40,1099,563,723,1286,[[957,76,39,723,762],[958,56,25,762,787],[959,64,32,787,819],[960,74,32,819,851],[961,81,37,851,888],[962,118,50,888,938],[963,49,28,938,966],[964,63,35,966,1001],[965,77,43,1001,1044],[966,73,40,1044,1084],[967,55,29,1084,1113],[968,74,36,1113,1149],[969,46,27,1149,1176],[970,114,61,1176,1237],[971,58,34,1237,1271],[972,21,15,1271,1286]]],[41,1535,854,1286,2140,[[973,98,60,1286,1346],[974,81,41,1346,1387],[975,34,20,1387,1407],[976,66,37,1407,1444],[977,70,35,1444,1479],[978,85,38,1479,1517],[979,66,34,1517,1551],[980,101,47,1551,1598],[981,89,45,1598,1643],[982,59,32,1643,1675],[983,66,39,1675,1714],[984,60,42,1714,1756],[985,60,27,1756,1783],[986,51,24,1783,1807],[987,53,26,1807,1833],[988,42,24,1833,1857],[989,41,28,1857,1885],[990,38,25,1885,1910],[991,58,40,1910,1950],[992,51,30,1950,1980],[993,47,26,1980,2006],[994,76,46,2006,2052],[995,60,41,2052,2093],[996,83,47,2093,2140]]],[42,864,544,2140,2684,[[997,58,36,2140,2176],[998,38,19,2176,2195],[999,33,22,2195,2217],[1000,48,32,2217,2249],[1001,38,29,2249,2278],[1002,53,40,2278,2318],[1003,42,30,2318,2348],[1004,51,33,2348,2381],[1005,45,25,2381,2406],[1006,46,29,2406,2435],[1007,47,30,2435,2465],[1008,45,32,2465,2497],[1009,28,19,2497,2516],[1010,39,25,2516,2541],[1011,23,13,2541,2554],[1012,35,20,2554,2574],[1013,31,17,2574,2591],[1014,39,24,2591,2615],[1015,46,32,2615,2647],[1016,51,23,2647,2670],[1017,28,14,2670,2684]]],[43,1123,671,2684,3355,[[1018,39,19,2684,2703],[1019,68,35,2703,2738],[1020,34,17,2738,2755],[1021,48,28,2755,2783],[1022,52,32,2783,2815],[1023,30,13,2815,2828],[1024,84,43,2828,2871],[1025,35,25,2871,2896],[1026,53,32,2896,2928],[1027,53,34,2928,2962],[1028,37,23,2962,2985],[1029,32,18,2985,3003],[1030,57,32,3003,3035],[1031,35,21,3035,3056],[1032,49,25,3056,3081],[1033,44,31,3081,3112],[1034,45,25,3112,3137],[1035,29,20,3137,3157],[1036,39,26,3157,3183],[1037,32,23,3183,3206],[1038,39,21,3206,3227],[1039,36,22,3227,3249],[1040,22,16,3249,3265],[1041,20,16,3265,3281],[1042,20,13,3281,3294],[1043,31,19,3294,3313],[1044,29,22,3313,3335],[1045,31,20,3335,3355]]],[44,290,199,3355,3554,[[1046,26,17,3355,3372],[1047,25,14,3372,3386],[1048,15,13,3386,3399],[1049,18,14,3399,3413],[1050,15,12,3413,3425],[1051,7,6,3425,3431],[1052,8,6,3431,3437],[1053,21,14,3437,3451],[1054,23,15,3451,3466],[1055,8,8,3466,3474],[1056,34,21,3474,3495],[1057,5,3,3495,3498],[1058,10,8,3498,3506],[1059,18,10,3506,3516],[1060,29,23,3516,3539],[1061,28,15,3539,3554]]],[45,290,207,3554,3761,[[1062,22,15,3554,3569],[1063,12,8,3569,3577],[1064,10,8,3577,3585],[1065,18,10,3585,3595],[1066,10,8,3595,3603],[1067,15,9,3603,3612],[1068,30,22,3612,3634],[1069,9,6,3634,3640],[1070,12,9,3640,3649],[1071,23,15,3649,3664],[1072,23,18,3664,3682],[1073,16,13,3682,3695],[1074,10,5,3695,3700],[1075,24,19,3700,3719],[1076,42,32,3719,3751],[1077,14,10,3751,3761]]],[46,193,128,3761,3889,[[1078,33,20,3761,3781],[1079,11,10,3781,3791],[1080,4,4,3791,3795],[1081,10,7,3795,3802],[1082,13,11,3802,3813],[1083,20,11,3813,3824],[1084,7,6,3824,3830],[1085,25,15,3830,3845],[1086,14,8,3845,3853],[1087,13,10,3853,3863],[1088,17,9,3863,3872],[1089,14,10,3872,3882],[1090,12,7,3882,3889]]],[47,74,58,3889,3947,[[1091,16,15,3889,3904],[1092,18,12,3904,3916],[1093,9,7,3916,3923],[1094,14,12,3923,3935],[1095,8,7,3935,3942],[1096,9,5,3942,3947]]],[48,136,88,3947,4035,[[1097,22,15,3947,3962],[1098,20,12,3962,3974],[1099,11,8,3974,3982],[1100,25,17,3982,3999],[1101,33,19,3999,4018],[1102,25,17,4018,4035]]],[49,105,63,4035,4098,[[1103,32,20,4035,4055],[1104,27,18,4055,4073],[1105,16,12,4073,4085],[1106,30,13,4085,4098]]],[50,109,66,4098,4164,[[1107,35,22,4098,4120],[1108,28,16,4120,4136],[1109,25,15,4136,4151],[1110,21,13,4151,4164]]],[51,104,53,4164,4217,[[1111,19,8,4164,4172],[1112,25,12,4172,4184],[1113,21,9,4184,4193],[1114,19,12,4193,4205],[1115,20,12,4205,4217]]],[52,51,34,4217,4251,[[1116,18,11,4217,4228],[1117,18,12,4228,4240],[1118,15,11,4240,4251]]],[53,95,65,4251,4316,[[1119,18,13,4251,4264],[1120,15,9,4264,4273],[1121,7,6,4273,4279],[1122,14,11,4279,4290],[1123,21,13,4290,4303],[1124,20,13,4303,4316]]],[54,68,47,4316,4363,[[1125,18,13,4316,4329],[1126,17,12,4329,4341],[1127,12,10,4341,4351],[1128,21,12,4351,4363]]],[55,36,22,4363,4385,[[1129,13,8,4363,4371],[1130,7,4,4371,4375],[1131,16,10,4375,4385]]],[56,17,11,4385,4396,[[1132,17,11,4385,4396]]],[57,259,172,4396,4568,[[1133,15,10,4396,4406],[1134,18,11,4406,4417],[1135,7,7,4417,4424],[1136,15,8,4424,4432],[1137,18,11,4432,4443],[1138,20,15,4443,4458],[1139,18,16,4458,4474],[1140,16,9,4474,4483],[1141,24,14,4483,4497],[1142,28,20,4497,4517],[1143,37,23,4517,4540],[1144,30,18,4540,4558],[1145,13,10,4558,4568]]],[58,117,73,4568,4641,[[1146,20,13,4568,4581],[1147,24,17,4581,4598],[1148,24,14,4598,4612],[1149,24,13,4612,4625],[1150,25,16,4625,4641]]],[59,74,56,4641,4697,[[1151,19,14,4641,4655],[1152,18,10,4655,4665],[1153,19,16,4665,4681],[1154,11,10,4681,4691],[1155,7,6,4691,4697]]],[60,64,43,4697,4740,[[1156,19,15,4697,4712],[1157,20,15,4712,4727],[1158,25,13,4727,4740]]],[61,132,78,4740,4818,[[1159,21,10,4740,4750],[1160,36,21,4750,4771],[1161,26,16,4771,4787],[1162,23,15,4787,4802],[1163,26,16,4802,4818]]],[62,16,9,4818,4827,[[1164,16,9,4818,4827]]],[63,11,7,4827,4834,[[1165,11,7,4827,4834]]],[64,22,13,4834,4847,[[1166,22,13,4834,4847]]],[65,1147,371,4847,5218,[[1167,57,20,4847,4867],[1168,55,22,4867,4889],[1169,47,16,4889,4905],[1170,40,11,4905,4916],[1171,52,14,4916,4930],[1172,65,17,4930,4947],[1173,35,11,4947,4958],[1174,42,13,4958,4971],[1175,55,19,4971,4990],[1176,34,10,4990,5000],[1177,66,18,5000,5018],[1178,45,17,5018,5035],[1179,50,17,5035,5052],[1180,55,20,5052,5072],[1181,21,8,5072,5080],[1182,53,21,5080,5101],[1183,53,17,5101,5118],[1184,88,23,5118,5141],[1185,67,21,5141,5162],[1186,51,14,5162,5176],[1187,65,25,5176,5201],[1188,51,17,5201,5218]]]],[23146,23147,23155,23161,23163,23165,23167,23168,23169,23171,23172,23173,23175,23177,23178,23180,23181,23182,23183,23184,23185,23187,23189,23190,23192,23194,23196,23197,23198,23199,23201,23202,23203,23204,23206,23208,23209,23211,23212,23214,23215,23217,23218,23219,23220,23222,23224,23225,23226,23227,23228,23230,23231,23232,23233,23234,23235,23236,23240,23245,23246,23247,23249,23250,23252,23253,23254,23258,23259,23263,23264,23266,23272,23273,23274,23275,23276,23277,23278,23279,23280,23281,23284,23286,23287,23288,23294,23295,23296,23299,23300,23301,23302,23303,23306,23307,23308,23310,23312,23315,23318,23320,23321,23322,23323,23324,23326,23328,23329,23330,23335,23338,23339,23340,23341,23342,23343,23344,23345,23347,23348,23349,23351,23352,23353,23354,23355,23356,23357,23358,23359,23360,23361,23362,23364,23365,23366,23367,23368,23369,23370,23371,23372,23373,23374,23377,23378,23379,23380,23381,23382,23383,23384,23385,23386,23387,23388,23389,23390,23392,23393,23394,23395,23396,23397,23398,23399,23401,23402,23403,23404,23405,23406,23407,23409,23412,23414,23415,23418,23419,23420,23421,23422,23430,23431,23432,23433,23434,23435,23438,23439,23442,23443,23444,23445,23446,23447,23452,23453,23454,23455,23456,23457,23458,23459,23460,23463,23464,23465,23468,23471,23472,23473,23475,23476,23477,23478,23480,23481,23482,23484,23486,23487,23488,23489,23490,23492,23493,23494,23496,23497,23498,23499,23500,23502,23504,23505,23507,23509,23510,23511,23512,23514,23515,23516,23518,23519,23520,23521,23522,23524,23526,23527,23528,23529,23530,23531,23532,23533,23534,23535,23536,23537,23538,23539,23540,23541,23542,23543,23544,23545,23546,23547,23549,23551,23552,23553,23554,23555,23556,23558,23559,23561,23562,23564,23565,23567,23569,23570,23571,23572,23573,23575,23578,23579,23580,23581,23583,23585,23586,23587,23588,23589,23591,23592,23593,23594,23595,23596,23597,23599,23600,23602,23603,23606,23607,23608,23609,23610,23611,23612,23614,23616,23617,23618,23619,23620,23623,23626,23627,23628,23629,23631,23632,23633,23634,23636,23637,23639,23641,23643,23649,23650,23654,23655,23656,23659,23661,23662,23663,23664,23665,23666,23667,23668,23669,23670,23671,23672,23673,23675,23676,23677,23678,23681,23682,23683,23684,23689,23690,23691,23693,23694,23696,23698,23699,23701,23702,23703,23704,23705,23706,23707,23709,23710,23711,23712,23714,23715,23716,23717,23718,23720,23721,23723,23724,23725,23727,23729,23730,23732,23733,23735,23736,23739,23740,23742,23744,23745,23748,23752,23753,23754,23755,23756,23758,23760,23761,23762,23763,23764,23765,23766,23767,23769,23771,23774,23775,23776,23777,23778,23781,23783,23789,23790,23791,23792,23795,23796,23797,23798,23799,23800,23801,23802,23804,23806,23808,23809,23810,23811,23812,23813,23814,23815,23816,23817,23819,23820,23821,23822,23824,23826,23827,23828,23829,23831,23832,23833,23834,23835,23836,23838,23839,23840,23841,23842,23843,23845,23846,23847,23848,23849,23853,23854,23856,23857,23858,23859,23861,23862,23864,23865,23867,23868,23869,23870,23871,23872,23873,23875,23876,23878,23879,23881,23882,23884,23885,23887,23888,23892,23893,23894,23895,23896,23897,23898,23899,23904,23905,23907,23909,23910,23912,23918,23919,23920,23921,23922,23923,23924,23925,23927,23930,23931,23932,23933,23935,23936,23937,23938,23939,23940,23941,23943,23944,23945,23946,23947,23948,23950,23952,23953,23955,23958,23960,23961,23962,23963,23964,23966,23967,23968,23969,23971,23975,23976,23979,23981,23984,23986,23987,23988,23989,23990,23992,23993,23994,23995,23996,23997,23998,24000,24001,24002,24006,24007,24008,24010,24013,24015,24017,24018,24019,24022,24023,24024,24025,24026,24027,24028,24029,24030,24031,24032,24033,24034,24035,24036,24037,24038,24039,24040,24041,24043,24044,24045,24046,24047,24048,24049,24050,24051,24052,24054,24055,24056,24057,24058,24061,24063,24067,24070,24072,24073,24075,24076,24080,24081,24084,24085,24089,24090,24091,24092,24093,24094,24095,24097,24098,24099,24101,24103,24104,24105,24107,24109,24111,24112,24113,24114,24115,24116,24117,24118,24121,24123,24125,24126,24127,24128,24129,24130,24131,24132,24134,24138,24139,24140,24141,24143,24149,24154,24157,24158,24159,24160,24162,24163,24164,24165,24166,24167,24169,24170,24171,24177,24180,24181,24182,24183,24185,24186,24188,24189,24190,24191,24193,24195,24196,24197,24198,24199,24202,24203,24204,24207,24209,24210,24212,24213,24214,24215,24219,24220,24221,24222,24224,24225,24226,24227,24228,24230,24231,24232,24233,24234,24235,24236,24237,24238,24239,24240,24241,24242,24244,24245,24246,24247,24248,24249,24250,24251,24252,24253,24254,24255,24256,24257,24258,24259,24260,24261,24262,24263,24264,24266,24268,24269,24271,24272,24273,24274,24275,24276,24277,24278,24279,24280,24281,24282,24283,24284,24285,24286,24287,24288,24289,24290,24291,24292,24293,24294,24295,24296,24297,24299,24300,24301,24302,24303,24304,24305,24306,24307,24308,24309,24310,24311,24312,24313,24314,24315,24316,24319,24320,24321,24322,24323,24324,24325,24327,24328,24329,24330,24331,24332,24334,24335,24336,24338,24339,24340,24341,24342,24343,24344,24347,24348,24349,24350,24353,24355,24356,24358,24359,24360,24361,24362,24363,24364,24365,24366,24367,24368,24369,24370,24371,24373,24374,24376,24377,24378,24379,24380,24381,24382,24383,24384,24385,24386,24387,24388,24389,24390,24393,24394,24395,24396,24397,24398,24401,24402,24403,24404,24405,24406,24407,24408,24409,24410,24411,24412,24413,24414,24415,24416,24417,24418,24419,24420,24421,24424,24426,24427,24428,24429,24430,24432,24433,24434,24435,24436,24437,24438,24439,24440,24441,24442,24443,24444,24445,24446,24447,24448,24449,24450,24451,24452,24453,24454,24455,24456,24457,24458,24460,24461,24463,24464,24465,24466,24467,24468,24471,24472,24473,24475,24476,24477,24480,24481,24482,24486,24487,24489,24490,24491,24492,24493,24494,24495,24496,24497,24498,24499,24500,24501,24502,24503,24504,24505,24506,24507,24508,24509,24510,24511,24512,24513,24514,24515,24516,24517,24518,24521,24522,24523,24524,24525,24526,24527,24528,24529,24530,24531,24532,24533,24534,24535,24536,24538,24539,24540,24541,24542,24543,24545,24546,24548,24549,24550,24551,24552,24553,24554,24555,24556,24558,24559,24560,24562,24563,24564,24565,24566,24567,24568,24569,24570,24571,24573,24574,24575,24576,24577,24580,24581,24582,24583,24584,24585,24586,24587,24588,24589,24590,24592,24593,24594,24595,24596,24598,24599,24600,24601,24602,24604,24605,24607,24609,24611,24614,24616,24617,24618,24619,24620,24621,24622,24623,24625,24626,24627,24628,24629,24630,24632,24633,24634,24635,24636,24637,24639,24640,24641,24642,24643,24644,24645,24646,24647,24648,24649,24651,24652,24653,24654,24655,24656,24657,24658,24659,24660,24661,24662,24663,24664,24665,24667,24668,24669,24671,24673,24674,24675,24676,24677,24678,24679,24680,24681,24682,24684,24685,24686,24687,24689,24690,24691,24692,24693,24694,24695,24697,24699,24701,24703,24704,24705,24706,24707,24708,24710,24711,24712,24713,24714,24715,24716,24718,24719,24720,24721,24723,24724,24725,24726,24727,24729,24730,24733,24734,24736,24737,24738,24739,24741,24742,24743,24744,24745,24746,24748,24749,24750,24751,24755,24757,24758,24759,24761,24763,24764,24765,24766,24767,24768,24769,24770,24771,24772,24773,24776,24777,24778,24780,24781,24783,24784,24785,24786,24787,24788,24789,24790,24791,24792,24793,24794,24795,24797,24798,24799,24800,24801,24802,24803,24804,24805,24807,24808,24809,24810,24811,24812,24813,24814,24815,24816,24819,24820,24821,24822,24823,24824,24825,24826,24827,24828,24829,24834,24841,24842,24843,24844,24845,24846,24847,24848,24849,24850,24851,24852,24853,24854,24855,24856,24857,24858,24860,24861,24862,24864,24866,24867,24868,24869,24870,24871,24872,24873,24874,24875,24876,24877,24878,24880,24881,24883,24884,24887,24888,24889,24891,24892,24893,24895,24898,24899,24900,24903,24905,24906,24907,24908,24909,24910,24911,24912,24913,24914,24915,24916,24917,24920,24921,24922,24923,24924,24925,24926,24928,24929,24931,24933,24934,24935,24936,24938,24939,24940,24942,24943,24945,24946,24948,24949,24950,24951,24952,24953,24954,24955,24956,24957,24958,24959,24960,24961,24962,24964,24965,24968,24969,24972,24973,24976,24977,24980,24981,24982,24983,24985,24986,24987,24988,24989,24991,24993,24994,24995,24997,24998,24999,25000,25001,25005,25006,25007,25008,25009,25010,25011,25012,25013,25014,25015,25016,25017,25018,25019,25020,25021,25022,25023,25024,25025,25026,25027,25028,25030,25031,25033,25034,25035,25036,25037,25039,25040,25041,25042,25043,25044,25045,25046,25047,25048,25064,25065,25066,25067,25068,25069,25071,25072,25074,25075,25076,25077,25078,25079,25080,25081,25083,25085,25086,25088,25089,25090,25091,25092,25094,25095,25096,25097,25098,25099,25100,25101,25102,25104,25105,25106,25107,25108,25109,25110,25111,25112,25113,25114,25116,25117,25118,25119,25120,25121,25122,25123,25124,25125,25126,25127,25128,25130,25131,25132,25133,25134,25135,25136,25137,25138,25140,25142,25143,25144,25145,25146,25147,25149,25150,25151,25152,25153,25154,25156,25157,25158,25159,25160,25161,25162,25163,25164,25165,25166,25168,25169,25171,25174,25175,25176,25177,25178,25179,25180,25181,25182,25183,25184,25188,25191,25192,25193,25194,25195,25198,25200,25202,25203,25204,25205,25206,25207,25208,25209,25210,25211,25212,25213,25214,25216,25217,25218,25220,25221,25224,25225,25226,25227,25228,25229,25230,25231,25232,25233,25234,25235,25239,25244,25246,25247,25248,25249,25250,25251,25252,25253,25255,25257,25258,25259,25260,25262,25263,25264,25265,25266,25267,25268,25269,25270,25271,25272,25273,25274,25276,25277,25278,25279,25280,25281,25282,25284,25286,25287,25288,25289,25290,25292,25295,25296,25297,25298,25299,25300,25301,25302,25303,25304,25305,25306,25307,25308,25310,25311,25312,25313,25314,25316,25317,25318,25319,25323,25324,25327,25329,25330,25331,25333,25334,25335,25336,25337,25339,25340,25341,25342,25343,25346,25349,25350,25351,25352,25353,25354,25355,25356,25357,25359,25362,25363,25364,25367,25369,25370,25371,25372,25373,25374,25376,25377,25378,25379,25380,25382,25384,25385,25386,25387,25388,25390,25391,25392,25393,25394,25395,25396,25397,25398,25400,25401,25402,25404,25406,25407,25409,25410,25411,25412,25414,25415,25416,25417,25419,25422,25423,25427,25428,25429,25430,25431,25432,25433,25434,25435,25436,25437,25439,25444,25445,25446,25447,25448,25449,25450,25451,25453,25454,25456,25457,25458,25459,25461,25462,25463,25465,25466,25467,25469,25470,25474,25476,25477,25478,25480,25482,25483,25487,25488,25490,25492,25493,25494,25495,25496,25497,25498,25499,25500,25501,25504,25505,25506,25507,25508,25509,25511,25512,25513,25514,25515,25516,25517,25518,25520,25522,25524,25525,25526,25529,25530,25531,25532,25533,25534,25535,25536,25537,25538,25540,25542,25543,25544,25545,25546,25547,25548,25549,25550,25551,25552,25554,25555,25556,25557,25558,25559,25562,25564,25565,25567,25569,25570,25571,25572,25573,25574,25575,25576,25578,25579,25580,25582,25583,25584,25589,25590,25592,25593,25594,25596,25597,25600,25601,25602,25603,25604,25606,25607,25608,25609,25610,25611,25612,25613,25614,25615,25616,25617,25619,25620,25621,25622,25625,25626,25627,25628,25630,25632,25633,25634,25635,25636,25637,25638,25639,25641,25642,25643,25644,25645,25646,25648,25649,25651,25653,25654,25655,25656,25657,25659,25661,25662,25663,25664,25665,25667,25670,25671,25673,25674,25675,25676,25677,25678,25679,25680,25682,25684,25685,25686,25687,25688,25689,25690,25691,25692,25695,25697,25698,25699,25701,25703,25704,25706,25708,25710,25714,25716,25718,25719,25720,25721,25722,25726,25727,25730,25731,25732,25733,25734,25735,25736,25737,25738,25739,25740,25741,25742,25743,25744,25745,25746,25748,25749,25750,25751,25752,25753,25754,25755,25756,25757,25758,25759,25760,25762,25766,25769,25770,25771,25772,25773,25774,25775,25776,25778,25779,25780,25781,25782,25786,25787,25788,25789,25790,25791,25794,25795,25798,25799,25800,25803,25804,25805,25807,25808,25809,25810,25811,25813,25814,25815,25816,25821,25823,25825,25826,25828,25829,25831,25833,25834,25835,25836,25837,25838,25841,25842,25843,25844,25847,25849,25850,25851,25852,25853,25854,25855,25857,25859,25860,25862,25864,25866,25868,25869,25870,25872,25875,25877,25878,25879,25881,25883,25884,25886,25887,25888,25889,25890,25894,25896,25897,25899,25900,25901,25903,25905,25908,25909,25910,25911,25914,25915,25916,25917,25918,25919,25920,25922,25923,25924,25925,25926,25927,25928,25929,25930,25932,25936,25937,25939,25942,25943,25945,25946,25947,25948,25949,25950,25954,25957,25958,25960,25961,25962,25963,25964,25965,25967,25968,25970,25971,25972,25973,25974,25976,25977,25978,25979,25980,25981,25983,25984,25985,25986,25988,25989,25990,25991,25992,25994,25995,25996,25998,25999,26000,26001,26002,26003,26004,26005,26006,26008,26009,26010,26011,26013,26014,26015,26016,26017,26018,26019,26020,26021,26022,26023,26024,26025,26026,26027,26028,26029,26030,26031,26032,26033,26034,26035,26037,26038,26040,26041,26042,26043,26044,26045,26047,26048,26049,26054,26055,26058,26059,26060,26061,26063,26064,26065,26068,26069,26073,26076,26077,26078,26079,26080,26081,26082,26083,26084,26085,26086,26087,26088,26089,26090,26091,26092,26093,26094,26095,26096,26097,26098,26099,26102,26103,26104,26105,26106,26107,26108,26109,26110,26111,26113,26114,26115,26117,26120,26122,26123,26124,26125,26126,26128,26129,26130,26131,26132,26133,26134,26139,26140,26142,26143,26146,26147,26149,26151,26152,26155,26157,26159,26166,26167,26168,26169,26172,26173,26174,26176,26179,26180,26183,26184,26186,26190,26191,26192,26193,26194,26196,26197,26198,26199,26201,26202,26203,26204,26206,26207,26208,26209,26211,26214,26216,26218,26219,26221,26222,26224,26225,26226,26228,26229,26230,26231,26234,26235,26236,26237,26239,26240,26242,26243,26245,26247,26248,26249,26250,26253,26254,26259,26260,26262,26266,26268,26270,26272,26274,26276,26278,26279,26281,26282,26283,26286,26287,26290,26292,26293,26294,26297,26299,26300,26301,26302,26306,26307,26310,26311,26312,26313,26314,26315,26320,26321,26322,26323,26324,26326,26327,26329,26331,26332,26338,26339,26340,26342,26343,26344,26346,26347,26348,26349,26350,26354,26356,26358,26359,26360,26361,26362,26363,26364,26365,26370,26373,26375,26379,26380,26381,26383,26384,26389,26390,26391,26392,26395,26397,26398,26399,26400,26401,26402,26404,26406,26407,26409,26410,26413,26414,26419,26420,26423,26425,26429,26430,26431,26433,26434,26436,26437,26438,26440,26441,26442,26446,26447,26448,26451,26454,26455,26456,26458,26459,26460,26464,26465,26467,26468,26470,26471,26474,26475,26476,26477,26478,26479,26480,26482,26484,26485,26489,26490,26491,26493,26494,26495,26496,26497,26499,26501,26503,26504,26505,26506,26508,26509,26510,26511,26514,26516,26517,26519,26520,26521,26522,26523,26524,26525,26528,26531,26534,26538,26539,26542,26545,26548,26549,26551,26552,26554,26556,26557,26560,26561,26564,26566,26567,26568,26569,26570,26571,26573,26575,26578,26579,26580,26582,26583,26585,26586,26589,26590,26591,26593,26596,26597,26598,26601,26602,26605,26606,26607,26608,26609,26610,26614,26615,26616,26618,26620,26621,26622,26624,26625,26627,26628,26629,26630,26632,26633,26634,26635,26636,26637,26639,26640,26642,26643,26644,26645,26651,26656,26657,26661,26662,26663,26664,26669,26671,26672,26673,26674,26675,26676,26677,26678,26679,26680,26681,26684,26685,26687,26688,26689,26690,26691,26692,26694,26696,26697,26698,26699,26700,26701,26705,26706,26707,26709,26710,26715,26719,26721,26722,26723,26726,26729,26731,26734,26736,26739,26740,26741,26742,26743,26745,26746,26748,26749,26750,26752,26753,26754,26755,26756,26758,26760,26762,26764,26765,26767,26769,26770,26771,26772,26773,26778,26779,26780,26781,26782,26784,26785,26786,26787,26788,26790,26791,26795,26797,26798,26800,26801,26802,26803,26804,26805,26810,26812,26813,26814,26815,26816,26818,26820,26822,26823,26826,26827,26828,26829,26830,26831,26832,26834,26835,26838,26839,26841,26842,26843,26844,26845,26848,26849,26850,26851,26852,26854,26855,26856,26857,26859,26860,26862,26863,26864,26865,26866,26868,26869,26870,26871,26872,26873,26874,26875,26879,26880,26881,26884,26885,26886,26887,26889,26892,26893,26894,26895,26896,26897,26898,26900,26901,26904,26905,26907,26909,26911,26915,26916,26917,26918,26921,26922,26923,26924,26926,26927,26931,26932,26933,26934,26936,26937,26938,26940,26941,26942,26943,26944,26946,26947,26948,26949,26950,26951,26952,26953,26955,26956,26957,26958,26959,26960,26961,26963,26966,26967,26968,26969,26970,26971,26972,26975,26978,26979,26982,26985,26986,26987,26988,26989,26990,26991,26992,26993,26994,26995,26996,26997,26998,26999,27002,27003,27004,27005,27006,27007,27009,27010,27012,27013,27015,27016,27020,27021,27023,27024,27025,27026,27027,27028,27029,27030,27032,27034,27035,27038,27040,27041,27042,27045,27046,27047,27048,27049,27050,27051,27052,27053,27054,27055,27057,27059,27061,27062,27063,27064,27065,27066,27068,27069,27070,27071,27073,27074,27075,27076,27077,27079,27080,27082,27083,27084,27086,27087,27088,27090,27091,27092,27095,27096,27097,27098,27099,27101,27104,27105,27106,27107,27108,27109,27110,27111,27112,27113,27114,27115,27116,27118,27119,27121,27122,27123,27124,27125,27126,27127,27129,27130,27131,27132,27133,27136,27137,27138,27140,27142,27143,27145,27146,27148,27150,27151,27152,27154,27155,27157,27158,27159,27161,27162,27167,27168,27169,27170,27171,27172,27173,27174,27175,27176,27177,27178,27179,27182,27183,27184,27185,27188,27189,27190,27193,27198,27199,27201,27202,27203,27204,27205,27206,27208,27211,27212,27214,27215,27216,27217,27218,27219,27220,27222,27225,27226,27227,27228,27230,27231,27233,27234,27235,27236,27237,27238,27240,27242,27243,27244,27245,27246,27247,27248,27250,27251,27252,27255,27256,27257,27258,27261,27262,27263,27264,27266,27267,27268,27269,27270,27271,27272,27274,27275,27276,27277,27279,27281,27282,27283,27286,27287,27288,27289,27290,27291,27294,27297,27298,27299,27300,27301,27304,27305,27306,27308,27309,27310,27312,27313,27314,27317,27318,27319,27320,27321,27322,27324,27325,27326,27327,27328,27329,27330,27331,27333,27335,27337,27340,27341,27344,27345,27346,27347,27348,27349,27351,27353,27354,27356,27357,27358,27359,27360,27361,27362,27363,27364,27365,27367,27369,27371,27372,27373,27376,27377,27378,27379,27380,27381,27382,27383,27384,27388,27389,27390,27394,27395,27397,27398,27401,27403,27405,27407,27408,27410,27412,27414,27415,27416,27417,27418,27419,27420,27422,27423,27424,27427,27428,27429,27431,27432,27433,27434,27435,27436,27438,27439,27441,27443,27444,27445,27446,27448,27449,27450,27451,27454,27457,27458,27459,27462,27464,27465,27466,27467,27469,27470,27471,27472,27474,27477,27480,27483,27484,27485,27486,27487,27488,27489,27490,27492,27496,27497,27498,27500,27501,27502,27503,27504,27505,27507,27508,27509,27510,27512,27513,27514,27515,27516,27517,27520,27521,27522,27523,27524,27525,27526,27527,27528,27529,27530,27531,27532,27533,27535,27537,27538,27540,27541,27544,27546,27547,27548,27549,27550,27551,27552,27556,27557,27559,27560,27561,27562,27563,27564,27565,27566,27567,27568,27569,27572,27573,27574,27575,27578,27579,27580,27582,27583,27586,27591,27593,27594,27595,27597,27600,27601,27602,27603,27604,27605,27606,27607,27610,27611,27612,27613,27614,27616,27617,27620,27621,27623,27625,27626,27627,27628,27630,27632,27635,27636,27637,27638,27641,27645,27646,27647,27648,27649,27650,27651,27654,27656,27657,27658,27660,27662,27663,27666,27667,27668,27669,27670,27671,27672,27675,27676,27677,27680,27683,27684,27688,27689,27691,27692,27694,27696,27697,27702,27705,27706,27708,27709,27710,27711,27713,27717,27718,27719,27720,27721,27722,27723,27724,27725,27726,27727,27729,27732,27733,27734,27737,27740,27741,27743,27745,27748,27750,27752,27753,27755,27757,27761,27764,27767,27768,27769,27770,27771,27772,27774,27775,27778,27781,27783,27784,27785,27786,27788,27792,27793,27794,27795,27798,27803,27806,27807,27809,27811,27815,27818,27819,27820,27821,27822,27823,27826,27829,27830,27833,27834,27835,27836,27837,27839,27840,27841,27843,27845,27846,27848,27849,27852,27853,27854,27856,27860,27862,27864,27865,27866,27867,27870,27874,27876,27877,27878,27879,27883,27885,27886,27887,27890,27891,27895,27896,27899,27900,27901,27902,27905,27907,27908,27909,27911,27912,27913,27914,27919,27922,27923,27925,27926,27927,27928,27929,27930,27935,27936,27937,27942,27943,27944,27945,27946,27948,27950,27951,27953,27954,27955,27957,27958,27962,27965,27966,27967,27969,27970,27971,27972,27974,27977,27979,27980,27982,27989,27991,27995,27999,28000,28005,28007,28008,28010,28012,28013,28014,28017,28020,28021,28025,28028,28029,28031,28033,28034,28036,28038,28039,28041,28043,28044,28046,28047,28049,28050,28054,28058,28059,28061,28062,28063,28064,28065,28066,28068,28072,28073,28076,28079,28081,28087,28095,28097,28101,28102,28103,28114,28118,28119,28122,28127,28133,28137,28138,28139,28140,28142,28145,28146,28148,28150,28157,28159,28160,28164,28165,28170,28172,28177,28178,28179,28180,28181,28183,28184,28188,28189,28191,28196,28197,28200,28206,28208,28209,28210,28212,28214,28217,28218,28219,28221,28223,28225,28226,28231,28232,28233,28235,28236,28238,28239,28240,28242,28244,28245,28247,28259,28260,28269,28271,28272,28275,28277,28278,28279,28280,28283,28286,28287,28289,28290,28291,28294,28297,28298,28299,28304,28306,28307,28308,28309,28310,28312,28313,28314,28315,28316,28317,28321,28322,28324,28325,28327,28329,28330,28331,28333,28334,28335,28338,28339,28340,28341,28343,28345,28348,28349,28350,28351,28353,28354,28357,28359,28361,28364,28365,28366,28368,28371,28373,28377,28379,28382,28385,28387,28388,28390,28391,28393,28396,28397,28398,28403,28404,28405,28407,28408,28411,28412,28413,28415,28418,28423,28426,28430,28434,28438,28439,28440,28441,28442,28444,28445,28450,28452,28455,28456,28458,28461,28462,28464,28466,28467,28468,28469,28473,28475,28478,28480,28481,28486,28487,28489,28490,28491,28492,28494,28495,28498,28499,28500,28501,28504,28506,28509,28515,28516,28517,28518,28521,28522,28523,28524,28525,28531,28532,28533,28534,28538,28539,28544,28545,28546,28547,28548,28550,28554,28560,28567,28568,28569,28570,28571,28574,28575,28576,28577,28580,28587,28588,28593,28594,28595,28599,28602,28605,28606,28607,28609,28612,28618,28619,28621,28622,28623,28624,28625,28626,28627,28628,28629,28630,28637,28639,28640,28645,28646,28647,28648,28650,28657,28660,28661,28662,28665,28666,28667,28668,28674,28677,28681,28686,28687,28688,28689,28690,28693,28697,28699,28701,28703,28705,28706,28707,28709,28710,28712,28717,28718,28719,28720,28721,28722,28723,28724,28728,28729,28732,28733,28736,28739,28740,28742,28746,28747,28748,28750,28752,28755,28756,28758,28759,28760,28762,28763,28766,28767,28768,28770,28771,28772,28777,28782,28785,28786,28788,28791,28792,28793,28794,28795,28801,28802,28803,28805,28806,28807,28808,28810,28811,28812,28813,28814,28815,28816,28817,28818,28819,28820,28821,28822,28826,28827,28828,28831,28833,28834,28836,28838,28839,28840,28843,28847,28851,28854,28862,28866,28869,28870,28872,28873,28875,28879,28880,28881,28882,28885,28886,28888,28889,28892,28895,28896,28899,28900,28905,28906,28907,28908,28911,28912,28914,28915,28916,28917,28919,28921,28923,28930,28931,28934,28935,28936,28937,28938,28939,28940,28942,28943,28946,28947,28951,28953,28955,28956,28958,28960,28961,28962,28966,28968,28969,28970,28972,28976,28977,28978,28979,28981,28982,28983,28984,28985,28990,28995,28998,29001,29003,29016,29018,29020,29022,29023,29025,29026,29029,29031,29034,29036,29037,29040,29043,29044,29045,29047,29052,29053,29054,29057,29058,29059,29060,29061,29064,29065,29066,29070,29071,29072,29073,29074,29075,29078,29081,29082,29083,29089,29090,29091,29093,29094,29095,29096,29097,29098,29101,29106,29107,29108,29118,29119,29130,29131,29133,29134,29138,29140,29141,29145,29149,29151,29153,29158,29160,29161,29163,29174,29177,29178,29183,29186,29187,29189,29190,29192,29195,29204,29207,29208,29209,29210,29214,29216,29217,29219,29221,29223,29224,29225,29226,29227,29228,29230,29232,29234,29235,29237,29241,29243,29245,29246,29248,29249,29251,29256,29257,29260,29261,29263,29266,29268,29269,29274,29276,29278,29280,29281,29282,29283,29285,29286,29288,29289,29293,29296,29298,29302,29303,29304,29306,29307,29308,29309,29313,29315,29316,29318,29322,29323,29324,29327,29329,29331,29333,29334,29335,29336,29337,29339,29340,29341,29342,29344,29346,29347,29349,29350,29351,29352,29354,29355,29356,29358,29359,29360,29362,29363,29368,29370,29371,29372,29374,29375,29376,29379,29380,29381,29382,29383,29384,29386,29388,29389,29390,29391,29392,29395,29396,29399,29400,29401,29402,29403,29404,29405,29406,29408,29409,29415,29416,29417,29418,29420,29424,29425,29429,29430,29431,29433,29436,29438,29439,29440,29441,29442,29443,29444,29445,29448,29449,29450,29451,29452,29454,29457,29458,29460,29462,29466,29467,29468,29469,29471,29472,29473,29474,29475,29476,29478,29481,29482,29483,29485,29486,29487,29488,29489,29491,29493,29494,29495,29496,29497,29499,29501,29502,29504,29505,29506,29507,29508,29509,29512,29513,29516,29517,29520,29521,29522,29524,29525,29527,29528,29529,29530,29532,29533,29534,29536,29540,29542,29543,29545,29549,29550,29551,29552,29553,29554,29555,29556,29557,29558,29559,29561,29563,29565,29566,29567,29568,29569,29570,29572,29578,29579,29580,29581,29582,29583,29584,29585,29588,29589,29590,29592,29594,29595,29596,29597,29600,29601,29602,29603,29604,29607,29608,29609,29611,29613,29614,29615,29616,29617,29619,29620,29622,29624,29626,29627,29628,29629,29632,29633,29634,29636,29644,29645,29650,29651,29652,29653,29654,29656,29657,29658,29659,29660,29661,29662,29664,29665,29667,29669,29670,29671,29672,29674,29676,29677,29678,29679,29680,29681,29682,29683,29684,29686,29688,29690,29692,29693,29697,29698,29700,29701,29705,29706,29708,29709,29710,29711,29713,29715,29716,29718,29719,29720,29721,29723,29724,29725,29730,29731,29738,29741,29743,29744,29746,29747,29748,29750,29751,29752,29753,29754,29755,29756,29757,29758,29763,29767,29768,29770,29771,29776,29779,29780,29781,29783,29784,29786,29787,29788,29789,29790,29791,29792,29793,29796,29797,29798,29800,29801,29803,29804,29808,29811,29812,29814,29816,29818,29819,29820,29821,29822,29824,29825,29826,29827,29829,29832,29837,29838,29839,29844,29845,29846,29847,29848,29850,29853,29859,29860,29861,29862,29864,29865,29866,29867,29868,29869,29871,29872,29874,29876,29878,29880,29883,29885,29887,29888,29889,29891,29893,29896,29897,29901,29902,29906,29907,29908,29920,29921,29922,29923,29924,29926,29927,29928,29931,29932,29933,29934,29936,29937,29939,29940,29941,29943,29945,29947,29949,29954,29957,29959,29960,29964,29965,29966,29968,29969,29970,29972,29973,29974,29975,29979,29980,29981,29984,29986,29987,29988,29990,29991,29992,29994,29996,29997,30000,30001,30004,30005,30014,30016,30018,30019,30020,30024,30026,30027,30030,30031,30032,30033,30034,30035,30036,30037,30039,30041,30042,30044,30045,30046,30047,30048,30049,30050,30051,30052,30053,30054,30056,30058,30059,30060,30063,30065,30066,30068,30069,30070,30072,30073,30075,30076,30079,30082,30084,30085,30087,30089,30090,30094,30095,30097,30098,30100,30102,30103,30104,30105,30106,30107,30109,30112,30114,30115,30116,30117,30118,30120,30124,30126,30127,30132,30137,30138,30139,30141,30144,30148,30149,30150,30153,30154,30155,30157,30158,30160,30162,30163,30166,30167,30170,30171,30176,30177,30178,30179,30180,30181,30182,30183,30184,30185,30187,30189,30191,30192,30193,30194,30195,30200,30204,30208,30209,30210,30211,30213,30214,30217,30220,30221,30224,30225,30226,30227,30230,30231,30233,30234,30235,30236,30238,30240,30241,30244,30245,30247,30249,30250,30253,30257,30258,30263,30265,30267,30270,30271,30272,30277,30280,30283,30287,30288,30289,30290,30291,30293,30295,30296,30297,30298,30299,30304,30305,30306,30308,30309,30310,30312,30315,30316,30317,30318,30319,30321,30322,30323,30324,30325,30326,30328,30329,30330,30331,30332,30333,30335,30336,30338,30339,30340,30341,30344,30345,30346,30347,30348,30349,30350,30352,30354,30356,30357,30358,30359,30361,30362,30364,30365,30366,30368,30369,30370,30371,30372,30373,30374,30375,30376,30377,30378,30381,30382,30384,30385,30389,30391,30393,30395,30397,30398,30400,30404,30405,30407,30410,30415,30417,30419,30420,30424,30425,30427,30428,30429,30430,30431,30434,30435,30436,30437,30438,30439,30442,30443,30445,30446,30447,30449,30451,30452,30453,30457,30459,30460,30464,30465,30466,30469,30470,30476,30477,30478,30480,30481,30482,30483,30484,30487,30489,30490,30491,30493,30494,30495,30496,30497,30498,30501,30502,30503,30505,30506,30507,30508,30510,30511,30512,30513,30514,30519,30520,30522,30524,30526,30527,30529,30530,30532,30533,30534,30535,30536,30537,30538,30540,30541,30542,30543,30544,30545,30546,30547,30548,30549,30550,30551,30552,30553,30554,30556,30558,30559,30560,30561,30564,30566,30567,30568,30570,30571,30572,30573,30574,30575,30577,30578,30581,30582,30583,30584,30588,30589,30591,30594,30595,30596,30597,30598,30599,30601,30602,30603,30606,30607,30608,30609,30610,30613,30614,30615,30616,30617,30618,30619,30620,30623,30624,30625,30626,30627,30628,30630,30631,30632,30635,30637,30638,30639,30640,30641,30642,30643,30644,30646,30647,30648,30650,30651,30652,30654,30655,30657,30660,30661,30663,30668,30670,30671,30672,30673,30674,30676,30679,30680,30683,30686,30687,30688,30694,30695,30696,30697,30698,30699,30700,30701,30702,30703,30704,30705,30706,30707,30708,30709,30710,30711,30712,30713,30714,30715,30716,30717,30719,30720,30722,30725,30726,30727,30729,30730,30731,30732,30733,30734,30735,30736,30737,30738,30739,30740,30741,30743,30744,30745,30747,30748,30749,30750,30751,30753,30754,30755,30758,30760,30762,30763,30764,30765,30766,30767,30769,30770,30771,30772,30773,30774,30775,30776,30777,30778,30779,30780,30781,30782,30783,30784,30785,30786,30787,30788,30789,30790,30791,30792,30793,30794,30795,30796,30797,30798,30799,30800,30801,30802,30803,30804,30805,30806,30807,30808,30809,30810,30811,30812,30814,30819,30820,30821,30822,30823,30824,30825,30827,30828,30829,30830,30831,30832,30833,30834,30835,30836,30837,30838,30839,30840,30841,30842,30843,30844,30845,30846,30847,30848,30849,30850,30851,30853,30855,30856,30857,30858,30859,30860,30861,30862,30863,30864,30865,30866,30867,30869,30870,30871,30872,30873,30874,30875,30876,30877,30878,30879,30880,30881,30882,30883,30884,30885,30887,30888,30889,30890,30891,30892,30893,30894,30895,30896,30897,30898,30899,30900,30901,30902,30903,30904,30905,30906,30907,30908,30909,30910,30911,30912,30913,30914,30915,30916,30918,30919,30920,30921,30922,30923,30924,30925,30926,30927,30928,30929,30930,30931,30932,30933,30934,30935,30936,30937,30938,30939,30940,30941,30942,30943,30944,30945,30946,30947,30948,30949,30950,30951,30952,30953,30954,30955,30956,30957,30958,30959,30960,30961,30962,30963,30964,30965,30966,30967,30968,30969,30970,30971,30972,30973,30974,30975,30976,30977,30978,30979,30980,30981,30982,30983,30985,30986,30987,30988,30989,30990,30991,30992,30993,30994,30995,30996,30997,30998,30999,31000,31001,31002,31004,31005,31006,31007,31008,31009,31010,31011,31012,31013,31014,31015,31016,31017,31018,31019,31020,31021,31022,31023,31024,31025,31026,31027,31028,31029,31030,31031,31032,31033,31034,31035,31036,31037,31038,31039,31040,31041,31042,31044,31045,31046,31047,31048,31049,31050,31051,31052,31053,31054,31055,31056,31057,31058,31059,31060,31061,31062,31063,31064,31065,31067,31068,31069,31070,31071,31072,31074,31075,31076,31077,31078,31079,31080,31081,31082,31083,31084,31085,31086,31088,31089,31090,31091,31092,31093,31094,31095,31096,31097,31099]]],["+",[177,172,[[39,9,9,0,9,[[938,1,1,0,1],[945,1,1,1,2],[950,1,1,2,3],[951,1,1,3,4],[953,3,3,4,7],[954,1,1,7,8],[956,1,1,8,9]]],[40,13,13,9,22,[[957,1,1,9,10],[958,1,1,10,11],[960,1,1,11,12],[961,1,1,12,13],[962,1,1,13,14],[963,2,2,14,16],[964,1,1,16,17],[965,1,1,17,18],[968,1,1,18,19],[969,1,1,19,20],[970,2,2,20,22]]],[41,34,34,22,56,[[974,2,2,22,24],[975,1,1,24,25],[976,1,1,25,26],[977,3,3,26,29],[978,1,1,29,30],[979,1,1,30,31],[980,3,3,31,34],[982,2,2,34,36],[983,1,1,36,37],[984,1,1,37,38],[985,4,4,38,42],[987,1,1,42,43],[988,1,1,43,44],[989,1,1,44,45],[990,4,4,45,49],[991,2,2,49,51],[992,1,1,51,52],[994,2,2,52,54],[996,2,2,54,56]]],[42,15,15,56,71,[[998,3,3,56,59],[999,1,1,59,60],[1000,1,1,60,61],[1001,1,1,61,62],[1003,2,2,62,64],[1006,1,1,64,65],[1008,3,3,65,68],[1013,2,2,68,70],[1015,1,1,70,71]]],[43,23,23,71,94,[[1018,1,1,71,72],[1019,2,2,72,74],[1021,2,2,74,76],[1022,1,1,76,77],[1025,1,1,77,78],[1027,3,3,78,81],[1028,3,3,81,84],[1029,2,2,84,86],[1030,1,1,86,87],[1034,1,1,87,88],[1036,1,1,88,89],[1039,1,1,89,90],[1041,1,1,90,91],[1042,1,1,91,92],[1043,2,2,92,94]]],[44,4,4,94,98,[[1046,1,1,94,95],[1049,1,1,95,96],[1050,1,1,96,97],[1059,1,1,97,98]]],[45,15,14,98,112,[[1063,2,2,98,100],[1066,1,1,100,101],[1068,2,2,101,103],[1069,1,1,103,104],[1070,1,1,104,105],[1072,2,2,105,107],[1073,1,1,107,108],[1075,1,1,108,109],[1076,3,2,109,111],[1077,1,1,111,112]]],[46,15,15,112,127,[[1078,4,4,112,116],[1079,2,2,116,118],[1081,2,2,118,120],[1082,2,2,120,122],[1084,1,1,122,123],[1086,1,1,123,124],[1087,1,1,124,125],[1088,1,1,125,126],[1090,1,1,126,127]]],[47,3,3,127,130,[[1091,1,1,127,128],[1092,2,2,128,130]]],[48,4,4,130,134,[[1100,1,1,130,131],[1101,2,2,131,133],[1102,1,1,133,134]]],[49,2,1,134,135,[[1106,2,1,134,135]]],[50,3,3,135,138,[[1107,1,1,135,136],[1108,1,1,136,137],[1110,1,1,137,138]]],[51,5,4,138,142,[[1112,3,2,138,140],[1114,2,2,140,142]]],[53,1,1,142,143,[[1121,1,1,142,143]]],[54,2,2,143,145,[[1125,1,1,143,144],[1128,1,1,144,145]]],[55,2,2,145,147,[[1129,1,1,145,146],[1131,1,1,146,147]]],[57,3,3,147,150,[[1136,1,1,147,148],[1142,1,1,148,149],[1144,1,1,149,150]]],[58,2,2,150,152,[[1147,1,1,150,151],[1150,1,1,151,152]]],[59,1,1,152,153,[[1152,1,1,152,153]]],[60,2,2,153,155,[[1156,1,1,153,154],[1157,1,1,154,155]]],[61,2,2,155,157,[[1161,1,1,155,156],[1163,1,1,156,157]]],[62,1,1,157,158,[[1164,1,1,157,158]]],[65,16,14,158,172,[[1167,2,2,158,160],[1170,3,2,160,162],[1172,1,1,162,163],[1175,1,1,163,164],[1177,1,1,164,165],[1179,2,1,165,166],[1182,2,2,166,168],[1185,1,1,168,169],[1186,1,1,169,170],[1187,1,1,170,171],[1188,1,1,171,172]]]],[23421,23701,23888,23941,24030,24032,24037,24093,24204,24239,24275,24343,24371,24428,24467,24491,24507,24560,24687,24736,24783,24794,24994,25017,25043,25097,25108,25119,25142,25152,25207,25272,25273,25281,25388,25393,25417,25488,25522,25525,25529,25534,25597,25641,25661,25690,25692,25697,25722,25733,25773,25800,25901,25914,25995,26006,26099,26115,26120,26140,26179,26231,26338,26356,26509,26590,26606,26622,26779,26784,26843,26933,26967,26978,27034,27054,27079,27204,27276,27288,27306,27319,27322,27335,27349,27358,27371,27528,27597,27709,27794,27806,27826,27834,27962,28034,28066,28290,28403,28408,28466,28494,28525,28532,28545,28605,28609,28648,28686,28736,28766,28792,28813,28818,28819,28822,28826,28834,28862,28875,28881,28882,28923,28958,28979,28995,29047,29065,29090,29094,29289,29315,29337,29346,29458,29471,29499,29545,29585,29588,29611,29617,29738,29819,29878,29902,29936,30027,30167,30241,30297,30362,30419,30484,30506,30583,30625,30655,30705,30708,30772,30778,30804,30861,30888,30924,30958,30965,31021,31042,31059,31082]]],["-",[10,10,[[39,6,6,0,6,[[936,2,2,0,2],[939,1,1,2,3],[944,1,1,3,4],[950,1,1,4,5],[952,1,1,5,6]]],[42,1,1,6,7,[[1003,1,1,6,7]]],[43,1,1,7,8,[[1034,1,1,7,8]]],[65,2,2,8,10,[[1167,1,1,8,9],[1174,1,1,9,10]]]],[23353,23354,23463,23673,23894,23975,26329,27556,30715,30834]]],["AND",[2,2,[[65,2,2,0,2,[[1183,1,1,0,1],[1185,1,1,1,2]]]],[30980,31033]]],["Also",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27656]]],["And",[1949,1879,[[39,287,278,0,278,[[929,1,1,0,1],[930,7,7,1,8],[931,5,5,8,13],[932,10,10,13,23],[933,5,5,23,28],[934,4,4,28,32],[935,5,5,32,37],[936,20,18,37,55],[937,20,19,55,74],[938,9,9,74,83],[939,5,5,83,88],[940,11,10,88,98],[941,12,12,98,110],[942,17,17,110,127],[943,13,13,127,140],[944,5,5,140,145],[945,13,12,145,157],[946,6,6,157,163],[947,6,6,163,169],[948,10,10,169,179],[949,21,18,179,197],[950,7,7,197,204],[951,5,5,204,209],[952,12,12,209,221],[953,9,9,221,230],[954,22,21,230,251],[955,20,20,251,271],[956,7,7,271,278]]],[40,411,394,278,672,[[957,31,31,278,309],[958,18,17,309,326],[959,28,27,326,353],[960,27,26,353,379],[961,33,31,379,410],[962,42,41,410,451],[963,18,17,451,468],[964,24,23,468,491],[965,29,29,491,520],[966,22,21,520,541],[967,25,23,541,564],[968,27,25,564,589],[969,11,11,589,600],[970,45,42,600,642],[971,24,23,642,665],[972,7,7,665,672]]],[41,421,403,672,1075,[[973,39,37,672,709],[974,32,32,709,741],[975,7,6,741,747],[976,33,29,747,776],[977,24,22,776,798],[978,11,11,798,809],[979,18,16,809,825],[980,18,18,825,843],[981,26,23,843,866],[982,10,10,866,876],[983,6,5,876,881],[984,8,8,881,889],[985,9,9,889,898],[986,15,15,898,913],[987,14,13,913,926],[988,10,10,926,936],[989,12,11,936,947],[990,9,9,947,956],[991,24,24,956,980],[992,15,15,980,995],[993,8,8,995,1003],[994,30,29,1003,1032],[995,16,16,1032,1048],[996,27,27,1048,1075]]],[42,126,122,1075,1197,[[997,16,14,1075,1089],[998,10,9,1089,1098],[999,4,4,1098,1102],[1000,6,6,1102,1108],[1001,7,7,1108,1115],[1002,8,7,1115,1122],[1003,3,3,1122,1125],[1004,6,6,1125,1131],[1005,9,9,1131,1140],[1006,6,6,1140,1146],[1007,8,8,1146,1154],[1008,3,3,1154,1157],[1009,3,3,1157,1160],[1010,5,5,1160,1165],[1012,4,4,1165,1169],[1013,6,6,1169,1175],[1014,2,2,1175,1177],[1015,8,8,1177,1185],[1016,10,10,1185,1195],[1017,2,2,1195,1197]]],[43,178,175,1197,1372,[[1018,9,9,1197,1206],[1019,9,9,1206,1215],[1020,8,8,1215,1223],[1021,8,8,1223,1231],[1022,5,5,1231,1236],[1023,4,4,1236,1240],[1024,17,17,1240,1257],[1025,3,3,1257,1260],[1026,13,12,1260,1272],[1027,13,13,1272,1285],[1028,4,4,1285,1289],[1029,10,9,1289,1298],[1030,9,9,1298,1307],[1031,5,5,1307,1312],[1032,4,4,1312,1316],[1033,11,11,1316,1327],[1034,3,3,1327,1330],[1035,8,8,1330,1338],[1036,4,4,1338,1342],[1037,4,4,1342,1346],[1038,5,5,1346,1351],[1039,4,4,1351,1355],[1040,2,2,1355,1357],[1041,1,1,1357,1358],[1042,1,1,1358,1359],[1043,4,4,1359,1363],[1044,6,5,1363,1368],[1045,4,4,1368,1372]]],[44,23,23,1372,1395,[[1046,2,2,1372,1374],[1047,2,2,1374,1376],[1048,2,2,1376,1378],[1049,5,5,1378,1383],[1050,1,1,1383,1384],[1052,1,1,1384,1385],[1054,3,3,1385,1388],[1056,2,2,1388,1390],[1057,1,1,1390,1391],[1058,1,1,1391,1392],[1060,3,3,1392,1395]]],[45,34,34,1395,1429,[[1062,1,1,1395,1396],[1063,2,2,1396,1398],[1064,2,2,1398,1400],[1065,1,1,1400,1401],[1066,1,1,1401,1402],[1067,1,1,1402,1403],[1068,4,4,1403,1407],[1069,1,1,1407,1408],[1070,1,1,1408,1409],[1071,3,3,1409,1412],[1072,1,1,1412,1413],[1073,6,6,1413,1419],[1074,2,2,1419,1421],[1075,2,2,1421,1423],[1076,6,6,1423,1429]]],[46,19,19,1429,1448,[[1078,3,3,1429,1432],[1079,2,2,1432,1434],[1080,1,1,1434,1435],[1082,1,1,1435,1436],[1083,1,1,1436,1437],[1084,1,1,1437,1438],[1085,2,2,1438,1440],[1086,1,1,1440,1441],[1087,1,1,1441,1442],[1088,3,3,1442,1445],[1089,3,3,1445,1448]]],[47,9,8,1448,1456,[[1091,3,3,1448,1451],[1092,2,2,1451,1453],[1093,2,1,1453,1454],[1094,1,1,1454,1455],[1096,1,1,1455,1456]]],[48,18,18,1456,1474,[[1097,2,2,1456,1458],[1098,4,4,1458,1462],[1099,1,1,1462,1463],[1100,3,3,1463,1466],[1101,3,3,1466,1469],[1102,5,5,1469,1474]]],[49,9,9,1474,1483,[[1103,4,4,1474,1478],[1104,2,2,1478,1480],[1105,1,1,1480,1481],[1106,2,2,1481,1483]]],[50,14,14,1483,1497,[[1107,4,4,1483,1487],[1108,3,3,1487,1490],[1109,4,4,1490,1494],[1110,3,3,1494,1497]]],[51,5,5,1497,1502,[[1111,2,2,1497,1499],[1113,1,1,1499,1500],[1114,1,1,1500,1501],[1115,1,1,1501,1502]]],[52,6,6,1502,1508,[[1116,1,1,1502,1503],[1117,4,4,1503,1507],[1118,1,1,1507,1508]]],[53,6,6,1508,1514,[[1119,1,1,1508,1509],[1120,1,1,1509,1510],[1121,2,2,1510,1512],[1123,2,2,1512,1514]]],[54,7,7,1514,1521,[[1126,4,4,1514,1518],[1127,1,1,1518,1519],[1128,2,2,1519,1521]]],[56,1,1,1521,1522,[[1132,1,1,1521,1522]]],[57,40,39,1522,1561,[[1133,5,5,1522,1527],[1134,3,2,1527,1529],[1135,1,1,1529,1530],[1136,2,2,1530,1532],[1137,3,3,1532,1535],[1138,3,3,1535,1538],[1139,6,6,1538,1544],[1140,1,1,1544,1545],[1141,3,3,1545,1548],[1142,5,5,1548,1553],[1143,3,3,1553,1556],[1144,5,5,1556,1561]]],[58,5,5,1561,1566,[[1147,2,2,1561,1563],[1148,1,1,1563,1564],[1150,2,2,1564,1566]]],[59,5,5,1566,1571,[[1151,1,1,1566,1567],[1152,1,1,1567,1568],[1153,1,1,1568,1569],[1154,1,1,1569,1570],[1155,1,1,1570,1571]]],[60,8,8,1571,1579,[[1156,1,1,1571,1572],[1157,5,5,1572,1577],[1158,2,2,1577,1579]]],[61,24,23,1579,1602,[[1159,1,1,1579,1580],[1160,6,6,1580,1586],[1161,8,7,1586,1593],[1162,4,4,1593,1597],[1163,5,5,1597,1602]]],[62,2,2,1602,1604,[[1164,2,2,1602,1604]]],[64,1,1,1604,1605,[[1166,1,1,1604,1605]]],[65,290,274,1605,1879,[[1167,9,7,1605,1612],[1168,9,9,1612,1621],[1169,3,3,1621,1624],[1170,8,8,1624,1632],[1171,14,13,1632,1645],[1172,18,16,1645,1661],[1173,8,7,1661,1668],[1174,12,12,1668,1680],[1175,16,16,1680,1696],[1176,11,10,1696,1706],[1177,15,14,1706,1720],[1178,16,16,1720,1736],[1179,15,15,1736,1751],[1180,16,16,1751,1767],[1181,7,7,1767,1774],[1182,18,18,1774,1792],[1183,11,11,1792,1803],[1184,15,15,1803,1818],[1185,20,17,1818,1835],[1186,13,13,1835,1848],[1187,22,21,1848,1869],[1188,14,10,1869,1879]]]],[23169,23173,23175,23177,23180,23181,23184,23192,23194,23198,23201,23208,23209,23211,23212,23215,23218,23222,23228,23230,23232,23233,23234,23236,23264,23274,23275,23281,23287,23294,23295,23310,23339,23341,23342,23343,23344,23347,23348,23349,23351,23352,23358,23359,23360,23364,23365,23368,23369,23370,23371,23373,23374,23377,23379,23380,23381,23382,23383,23386,23388,23389,23390,23394,23398,23399,23401,23402,23403,23405,23406,23409,23412,23414,23418,23430,23431,23435,23439,23445,23453,23455,23459,23460,23465,23473,23476,23482,23498,23499,23502,23505,23510,23512,23515,23516,23521,23538,23541,23542,23543,23549,23553,23581,23589,23592,23593,23595,23596,23597,23599,23602,23606,23607,23608,23609,23611,23616,23617,23619,23620,23623,23626,23629,23631,23632,23633,23639,23643,23655,23656,23661,23662,23663,23666,23667,23668,23669,23670,23672,23675,23676,23677,23689,23691,23701,23702,23703,23706,23707,23709,23710,23714,23716,23718,23723,23725,23729,23730,23732,23736,23740,23761,23763,23764,23767,23777,23778,23791,23795,23801,23809,23811,23815,23816,23819,23821,23822,23824,23827,23829,23836,23838,23839,23840,23842,23843,23845,23846,23848,23849,23853,23856,23861,23865,23870,23871,23873,23875,23884,23888,23892,23905,23918,23925,23927,23936,23940,23948,23958,23961,23967,23968,23969,23971,23979,23987,23988,23996,24006,24008,24023,24025,24028,24033,24038,24040,24041,24048,24054,24055,24058,24070,24073,24075,24076,24081,24084,24091,24093,24094,24097,24098,24101,24103,24105,24116,24117,24126,24128,24129,24131,24134,24138,24139,24141,24143,24157,24158,24159,24160,24162,24165,24166,24169,24177,24180,24181,24182,24188,24189,24197,24202,24203,24207,24209,24212,24213,24220,24222,24224,24225,24226,24227,24228,24230,24232,24233,24234,24235,24236,24237,24238,24240,24241,24242,24244,24246,24248,24249,24250,24251,24252,24253,24254,24255,24257,24258,24259,24261,24262,24263,24264,24268,24272,24273,24274,24275,24276,24278,24279,24282,24283,24284,24285,24287,24289,24290,24291,24292,24293,24294,24296,24297,24299,24300,24301,24302,24303,24304,24305,24306,24307,24308,24309,24310,24311,24312,24313,24314,24320,24321,24322,24324,24325,24327,24330,24331,24332,24334,24336,24339,24340,24341,24342,24343,24344,24347,24349,24350,24353,24356,24358,24359,24360,24361,24362,24363,24364,24365,24366,24369,24371,24373,24374,24376,24377,24378,24379,24380,24381,24382,24384,24385,24386,24387,24388,24389,24390,24393,24394,24395,24396,24401,24402,24403,24404,24405,24406,24407,24408,24409,24410,24412,24413,24414,24415,24417,24418,24419,24420,24421,24428,24430,24432,24433,24434,24435,24436,24437,24438,24439,24440,24441,24442,24445,24446,24447,24448,24449,24450,24451,24452,24453,24454,24455,24457,24458,24460,24461,24463,24465,24467,24472,24475,24477,24480,24481,24487,24492,24493,24494,24495,24496,24497,24498,24499,24500,24503,24504,24505,24506,24507,24510,24511,24512,24513,24515,24516,24517,24521,24522,24523,24524,24526,24527,24529,24530,24531,24532,24534,24539,24540,24541,24542,24543,24545,24546,24548,24549,24552,24553,24554,24555,24556,24558,24559,24560,24562,24564,24566,24567,24568,24571,24573,24574,24580,24581,24583,24585,24590,24593,24596,24598,24599,24600,24601,24604,24605,24611,24620,24622,24623,24629,24632,24634,24635,24636,24637,24639,24640,24641,24642,24643,24645,24647,24649,24651,24652,24653,24654,24655,24656,24657,24658,24659,24660,24661,24662,24665,24667,24668,24671,24673,24674,24675,24677,24678,24681,24685,24686,24689,24690,24694,24695,24697,24701,24703,24704,24705,24706,24707,24708,24710,24711,24712,24714,24715,24716,24718,24719,24720,24727,24730,24733,24737,24738,24742,24743,24744,24757,24759,24764,24765,24766,24767,24768,24769,24770,24771,24772,24776,24777,24778,24780,24781,24784,24786,24787,24788,24789,24790,24791,24793,24794,24795,24797,24799,24802,24804,24805,24807,24808,24811,24814,24819,24820,24821,24822,24823,24824,24826,24827,24828,24829,24834,24843,24844,24845,24846,24847,24848,24849,24850,24852,24853,24854,24855,24858,24860,24861,24864,24868,24871,24872,24874,24875,24876,24877,24878,24881,24888,24900,24903,24905,24907,24909,24910,24911,24912,24913,24914,24916,24921,24923,24924,24926,24928,24929,24931,24933,24934,24935,24936,24938,24939,24940,24943,24951,24952,24953,24954,24955,24956,24958,24959,24960,24962,24969,24976,24980,24981,24982,24983,24985,24986,24988,24989,24991,24993,24994,24995,24997,24998,24999,25000,25006,25007,25009,25010,25011,25012,25015,25016,25018,25019,25021,25022,25023,25024,25025,25028,25031,25035,25039,25047,25048,25065,25066,25067,25068,25069,25071,25072,25074,25075,25076,25077,25078,25079,25080,25083,25085,25086,25090,25091,25092,25094,25095,25096,25098,25099,25100,25102,25104,25107,25109,25110,25112,25113,25114,25117,25118,25119,25120,25121,25124,25125,25126,25127,25128,25132,25133,25134,25135,25136,25138,25144,25149,25151,25156,25159,25163,25164,25165,25166,25177,25179,25180,25205,25206,25208,25209,25210,25212,25213,25214,25218,25224,25231,25232,25233,25235,25239,25244,25246,25247,25248,25251,25252,25253,25265,25267,25271,25276,25277,25284,25286,25288,25290,25298,25300,25301,25303,25304,25305,25306,25310,25311,25316,25318,25319,25330,25331,25334,25336,25337,25339,25340,25341,25349,25351,25353,25354,25357,25359,25369,25371,25372,25378,25386,25388,25392,25397,25398,25402,25406,25409,25410,25419,25430,25469,25476,25477,25478,25488,25495,25497,25514,25520,25529,25531,25535,25538,25540,25547,25548,25550,25554,25555,25556,25557,25558,25559,25562,25567,25570,25571,25572,25573,25575,25576,25580,25590,25593,25594,25597,25600,25601,25603,25604,25607,25608,25611,25612,25614,25622,25626,25627,25628,25632,25635,25641,25643,25644,25646,25655,25656,25662,25663,25664,25665,25667,25670,25674,25677,25688,25692,25701,25706,25721,25722,25726,25727,25730,25731,25732,25733,25734,25735,25736,25737,25738,25746,25748,25749,25751,25755,25756,25759,25760,25762,25766,25770,25771,25772,25775,25776,25778,25779,25780,25781,25786,25787,25789,25790,25791,25798,25799,25800,25805,25809,25810,25813,25821,25829,25831,25843,25850,25851,25853,25855,25864,25866,25868,25869,25870,25872,25875,25878,25879,25881,25883,25886,25887,25899,25901,25903,25905,25908,25909,25910,25915,25922,25923,25924,25925,25926,25927,25928,25929,25930,25936,25942,25958,25961,25968,25970,25972,25976,25977,25978,25980,25981,25983,25985,25988,25989,25994,25995,25999,26000,26002,26004,26005,26006,26010,26014,26015,26018,26019,26020,26021,26023,26024,26026,26029,26031,26034,26037,26038,26040,26042,26043,26044,26049,26058,26060,26063,26064,26065,26068,26069,26076,26080,26081,26086,26090,26095,26096,26098,26102,26103,26105,26108,26109,26110,26111,26133,26134,26146,26152,26183,26192,26197,26202,26206,26208,26219,26226,26237,26239,26247,26248,26250,26259,26274,26282,26299,26302,26322,26326,26340,26343,26381,26389,26397,26404,26406,26410,26413,26441,26442,26447,26456,26459,26474,26478,26479,26480,26485,26497,26504,26521,26522,26523,26538,26542,26549,26551,26557,26566,26567,26575,26625,26627,26630,26632,26656,26657,26671,26672,26681,26684,26697,26729,26734,26748,26749,26764,26769,26770,26778,26781,26785,26798,26823,26827,26828,26830,26834,26842,26852,26860,26862,26872,26874,26879,26880,26881,26887,26889,26893,26895,26897,26915,26917,26927,26932,26933,26936,26938,26942,26946,26947,26949,26950,26951,26952,26953,26957,26966,26968,26970,26994,26998,27003,27004,27005,27012,27013,27016,27021,27025,27028,27029,27040,27051,27053,27055,27057,27061,27070,27077,27091,27097,27106,27108,27111,27116,27119,27121,27123,27124,27125,27126,27129,27132,27138,27140,27146,27150,27157,27172,27174,27175,27176,27184,27203,27214,27220,27222,27225,27228,27230,27234,27235,27236,27244,27245,27250,27251,27264,27267,27270,27272,27274,27277,27283,27286,27289,27290,27298,27301,27304,27309,27318,27328,27333,27340,27341,27344,27345,27346,27348,27351,27354,27356,27367,27373,27380,27381,27382,27384,27390,27394,27401,27422,27429,27432,27438,27439,27443,27450,27451,27457,27492,27497,27498,27501,27503,27504,27505,27513,27515,27516,27522,27527,27532,27541,27559,27560,27564,27573,27574,27578,27579,27580,27591,27601,27614,27626,27648,27651,27658,27662,27666,27668,27670,27675,27683,27720,27722,27724,27725,27757,27768,27781,27820,27829,27834,27853,27854,27874,27877,27883,27895,27899,27900,27911,27923,27928,27953,27958,27980,27989,27999,28008,28033,28034,28041,28043,28044,28063,28101,28178,28181,28184,28218,28235,28247,28277,28313,28314,28315,28391,28397,28398,28411,28430,28445,28456,28478,28500,28504,28517,28518,28538,28560,28569,28570,28571,28624,28639,28640,28650,28657,28660,28662,28667,28668,28703,28710,28722,28723,28748,28755,28763,28767,28807,28815,28816,28827,28840,28854,28892,28916,28931,28937,28942,28970,28977,28998,29003,29022,29025,29029,29031,29059,29071,29081,29090,29094,29118,29145,29204,29225,29228,29230,29235,29245,29246,29260,29283,29296,29302,29306,29315,29322,29341,29346,29352,29354,29356,29370,29375,29386,29389,29399,29402,29430,29445,29449,29482,29483,29485,29486,29504,29507,29513,29527,29532,29534,29540,29553,29558,29559,29566,29570,29592,29614,29634,29656,29667,29669,29671,29672,29680,29708,29730,29741,29747,29770,29781,29829,29844,29846,29853,29868,29874,29888,29940,29968,29969,29970,29973,29975,29990,29992,30000,30018,30019,30033,30034,30039,30047,30049,30059,30069,30072,30073,30079,30084,30087,30103,30120,30127,30132,30144,30150,30154,30157,30163,30187,30204,30211,30217,30225,30231,30233,30236,30296,30316,30325,30369,30372,30391,30407,30437,30464,30469,30497,30502,30503,30505,30506,30507,30526,30537,30544,30551,30552,30553,30567,30575,30578,30582,30584,30591,30598,30601,30602,30603,30606,30617,30619,30624,30630,30632,30635,30638,30639,30650,30651,30694,30702,30703,30709,30710,30712,30713,30714,30720,30725,30729,30735,30738,30740,30743,30744,30745,30747,30753,30760,30770,30771,30772,30773,30774,30775,30776,30777,30780,30781,30782,30783,30784,30785,30786,30787,30788,30789,30790,30792,30793,30794,30795,30796,30797,30798,30799,30800,30801,30802,30803,30804,30805,30806,30807,30808,30809,30811,30812,30814,30820,30821,30823,30824,30828,30829,30830,30831,30832,30833,30835,30836,30837,30838,30839,30840,30841,30842,30843,30844,30845,30846,30847,30848,30849,30850,30851,30853,30855,30856,30857,30860,30862,30863,30864,30865,30866,30867,30869,30870,30871,30872,30873,30875,30877,30879,30880,30881,30882,30883,30884,30885,30887,30888,30890,30891,30892,30893,30894,30895,30896,30897,30898,30899,30900,30901,30902,30904,30905,30906,30907,30908,30909,30910,30911,30912,30913,30914,30915,30916,30919,30920,30921,30922,30923,30924,30925,30927,30928,30929,30931,30932,30934,30935,30937,30939,30940,30941,30942,30943,30944,30945,30946,30947,30948,30949,30951,30952,30953,30954,30955,30956,30957,30958,30959,30961,30962,30963,30964,30965,30966,30967,30970,30971,30972,30973,30974,30975,30976,30979,30980,30981,30982,30985,30986,30987,30990,30991,30993,30994,30995,30997,31002,31004,31006,31007,31009,31010,31011,31012,31014,31015,31016,31017,31018,31020,31021,31022,31023,31025,31026,31027,31028,31030,31031,31032,31033,31034,31036,31037,31038,31039,31040,31041,31042,31045,31046,31047,31048,31049,31050,31051,31052,31053,31054,31055,31056,31057,31058,31059,31062,31063,31067,31068,31069,31070,31071,31072,31074,31075,31076,31077,31078,31079,31080,31081,31083,31084,31085,31086,31088,31090,31092,31097,31099]]],["But",[16,16,[[39,3,3,0,3,[[939,1,1,0,1],[949,1,1,1,2],[954,1,1,2,3]]],[40,3,3,3,6,[[959,1,1,3,4],[960,1,1,4,5],[970,1,1,5,6]]],[41,6,6,6,12,[[976,1,1,6,7],[977,1,1,7,8],[979,1,1,8,9],[985,1,1,9,10],[993,1,1,10,11],[996,1,1,11,12]]],[42,1,1,12,13,[[1003,1,1,12,13]]],[61,2,2,13,15,[[1160,2,2,13,15]]],[65,1,1,15,16,[[1177,1,1,15,16]]]],[23478,23872,24114,24295,24355,24813,25089,25137,25230,25545,25844,26020,26354,30570,30577,30874]]],["Even",[9,9,[[41,1,1,0,1,[[982,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]],[45,2,2,3,5,[[1070,1,1,3,4],[1075,1,1,4,5]]],[47,1,1,5,6,[[1094,1,1,5,6]]],[48,1,1,6,7,[[1098,1,1,6,7]]],[58,2,2,7,9,[[1147,1,1,7,8],[1148,1,1,8,9]]]],[25374,26406,28179,28554,28690,29134,29234,30310,30324]]],["For",[3,3,[[41,1,1,0,1,[[978,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]],[61,1,1,2,3,[[1159,1,1,2,3]]]],[25178,28236,30542]]],["I",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29001]]],["Likewise",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28341]]],["Moreover",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27611]]],["Neither",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29308]]],["Now",[3,3,[[40,1,1,0,1,[[964,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[980,1,1,2,3]]]],[24514,25014,25267]]],["Or",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23326]]],["So",[7,7,[[39,1,1,0,1,[[950,1,1,0,1]]],[41,4,4,1,5,[[986,1,1,1,2],[988,1,1,2,3],[992,1,1,3,4],[993,1,1,4,5]]],[57,1,1,5,6,[[1135,1,1,5,6]]],[65,1,1,6,7,[[1183,1,1,6,7]]]],[23882,25574,25625,25794,25857,30014,30978]]],["Then",[12,12,[[39,4,4,0,4,[[943,1,1,0,1],[944,1,1,1,2],[950,1,1,2,3],[955,1,1,3,4]]],[40,3,3,4,7,[[963,1,1,4,5],[966,1,1,5,6],[968,1,1,6,7]]],[41,4,4,7,11,[[974,1,1,7,8],[979,1,1,8,9],[980,1,1,9,10],[996,1,1,10,11]]],[65,1,1,11,12,[[1188,1,1,11,12]]]],[23654,23694,23907,24154,24464,24616,24691,25001,25217,25282,26016,31089]]],["Therefore",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28467]]],["Thus",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23639]]],["When",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]]],[23610,24277]]],["Yea",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27159]]],["Yet",[3,3,[[42,1,1,0,1,[[1004,1,1,0,1]]],[45,1,1,1,2,[[1066,1,1,1,2]]],[52,1,1,2,3,[[1118,1,1,2,3]]]],[26436,28464,29693]]],["a",[3,3,[[41,3,3,0,3,[[982,1,1,0,1],[990,1,1,1,2],[994,1,1,2,3]]]],[25395,25689,25923]]],["also",[497,475,[[39,36,36,0,36,[[931,1,1,0,1],[933,2,2,1,3],[934,2,2,3,5],[940,1,1,5,6],[941,1,1,6,7],[943,2,2,7,9],[944,1,1,9,10],[945,1,1,10,11],[946,2,2,11,13],[947,2,2,13,15],[948,2,2,15,17],[950,2,2,17,19],[951,2,2,19,21],[952,4,4,21,25],[953,4,4,25,29],[954,5,5,29,34],[955,2,2,34,36]]],[40,17,17,36,53,[[957,1,1,36,37],[958,3,3,37,40],[959,1,1,40,41],[960,1,1,41,42],[963,1,1,42,43],[964,1,1,43,44],[967,1,1,44,45],[968,2,2,45,47],[970,2,2,47,49],[971,4,4,49,53]]],[41,81,77,53,130,[[973,2,2,53,55],[974,2,2,55,57],[975,3,3,57,60],[976,3,3,60,63],[977,3,3,63,66],[978,13,12,66,78],[979,2,2,78,80],[981,1,1,80,81],[982,2,2,81,83],[983,10,9,83,92],[984,4,4,92,96],[985,1,1,96,97],[986,3,2,97,99],[988,6,5,99,104],[989,3,3,104,107],[990,1,1,107,108],[991,2,2,108,110],[992,2,2,110,112],[993,1,1,112,113],[994,7,7,113,120],[995,8,8,120,128],[996,2,2,128,130]]],[42,45,44,130,174,[[999,1,1,130,131],[1000,1,1,131,132],[1001,3,3,132,135],[1002,3,3,135,138],[1003,3,3,138,141],[1004,1,1,141,142],[1005,3,3,142,145],[1007,2,2,145,147],[1008,4,4,147,151],[1009,4,4,151,155],[1010,4,4,155,159],[1011,4,3,159,162],[1013,3,3,162,165],[1014,4,4,165,169],[1015,1,1,169,170],[1016,1,1,170,171],[1017,3,3,171,174]]],[43,53,51,174,225,[[1018,2,2,174,176],[1019,2,2,176,178],[1020,1,1,178,179],[1022,2,2,179,181],[1024,1,1,181,182],[1025,1,1,182,183],[1026,1,1,183,184],[1027,1,1,184,185],[1028,3,3,185,188],[1029,1,1,188,189],[1030,5,5,189,194],[1031,1,1,194,195],[1032,3,3,195,198],[1034,4,3,198,201],[1036,2,2,201,203],[1038,4,4,203,207],[1039,3,2,207,209],[1040,4,4,209,213],[1041,4,4,213,217],[1042,1,1,217,218],[1043,3,3,218,221],[1044,2,2,221,223],[1045,2,2,223,225]]],[44,54,48,225,273,[[1046,5,5,225,230],[1047,1,1,230,231],[1048,2,1,231,232],[1049,6,6,232,238],[1050,4,4,238,242],[1051,4,4,242,246],[1052,1,1,246,247],[1053,11,9,247,256],[1054,3,3,256,259],[1056,7,6,259,265],[1058,2,2,265,267],[1060,6,4,267,271],[1061,2,2,271,273]]],[45,32,31,273,304,[[1062,2,2,273,275],[1063,1,1,275,276],[1065,1,1,276,277],[1068,3,3,277,280],[1070,1,1,280,281],[1071,3,3,281,284],[1072,5,5,284,289],[1073,1,1,289,290],[1074,1,1,290,291],[1075,4,3,291,294],[1076,9,9,294,303],[1077,1,1,303,304]]],[46,31,28,304,332,[[1078,6,5,304,309],[1079,2,2,309,311],[1080,1,1,311,312],[1081,4,4,312,316],[1082,1,1,316,317],[1083,2,2,317,319],[1085,8,7,319,326],[1086,3,2,326,328],[1087,2,2,328,330],[1090,2,2,330,332]]],[47,8,8,332,340,[[1092,4,4,332,336],[1095,2,2,336,338],[1096,2,2,338,340]]],[48,12,11,340,351,[[1097,4,3,340,343],[1098,2,2,343,345],[1100,2,2,345,347],[1101,2,2,347,349],[1102,2,2,349,351]]],[49,16,15,351,366,[[1103,3,3,351,354],[1104,6,6,354,360],[1105,3,3,360,363],[1106,4,3,363,366]]],[50,15,15,366,381,[[1107,5,5,366,371],[1108,2,2,371,373],[1109,5,5,373,378],[1110,3,3,378,381]]],[51,10,9,381,390,[[1111,2,2,381,383],[1112,4,3,383,386],[1113,1,1,386,387],[1114,1,1,387,388],[1115,2,2,388,390]]],[52,2,2,390,392,[[1116,2,2,390,392]]],[53,5,5,392,397,[[1120,1,1,392,393],[1123,3,3,393,396],[1124,1,1,396,397]]],[54,11,11,397,408,[[1125,2,2,397,399],[1126,6,6,399,405],[1127,2,2,405,407],[1128,1,1,407,408]]],[55,2,2,408,410,[[1131,2,2,408,410]]],[56,3,3,410,413,[[1132,3,3,410,413]]],[57,23,22,413,435,[[1133,1,1,413,414],[1134,1,1,414,415],[1135,1,1,415,416],[1136,1,1,416,417],[1137,4,4,417,421],[1139,5,4,421,425],[1140,2,2,425,427],[1141,1,1,427,428],[1142,1,1,428,429],[1143,2,2,429,431],[1144,2,2,431,433],[1145,2,2,433,435]]],[58,8,8,435,443,[[1146,1,1,435,436],[1147,5,5,436,441],[1148,2,2,441,443]]],[59,12,12,443,455,[[1152,5,5,443,448],[1153,5,5,448,453],[1154,2,2,453,455]]],[60,6,5,455,460,[[1156,1,1,455,456],[1157,1,1,456,457],[1158,4,3,457,460]]],[61,7,7,460,467,[[1159,1,1,460,461],[1160,4,4,461,465],[1162,2,2,465,467]]],[62,1,1,467,468,[[1164,1,1,467,468]]],[64,2,2,468,470,[[1166,2,2,468,470]]],[65,5,5,470,475,[[1167,1,1,470,471],[1168,1,1,471,472],[1172,1,1,472,473],[1177,1,1,473,474],[1180,1,1,474,475]]]],[23202,23273,23274,23296,23303,23534,23565,23636,23649,23673,23712,23760,23762,23765,23790,23796,23799,23898,23899,23944,23946,23984,23994,23996,24001,24019,24025,24049,24052,24067,24089,24123,24125,24127,24170,24186,24234,24281,24286,24288,24307,24359,24481,24538,24665,24679,24695,24763,24785,24857,24866,24867,24869,24928,24929,24977,25008,25034,25037,25046,25086,25104,25106,25117,25143,25146,25150,25151,25152,25159,25160,25162,25175,25177,25178,25179,25180,25182,25203,25244,25362,25364,25402,25406,25409,25423,25435,25439,25445,25450,25451,25454,25467,25493,25499,25513,25526,25565,25579,25621,25630,25634,25642,25648,25675,25677,25679,25703,25740,25750,25810,25811,25828,25884,25888,25903,25920,25922,25923,25932,25942,25962,25967,25970,25971,25973,25986,25990,26013,26014,26143,26201,26228,26229,26237,26281,26293,26324,26331,26375,26380,26400,26455,26467,26480,26539,26575,26589,26598,26606,26622,26639,26644,26662,26664,26669,26671,26675,26687,26719,26722,26726,26760,26778,26780,26787,26790,26802,26810,26864,26875,26901,26918,26923,26926,26934,26971,26975,27013,27061,27075,27161,27189,27248,27304,27308,27325,27337,27340,27367,27371,27384,27395,27397,27429,27469,27474,27477,27529,27535,27551,27606,27612,27677,27680,27688,27692,27709,27724,27745,27764,27767,27769,27775,27778,27784,27795,27818,27833,27849,27852,27865,27891,27908,27909,27936,27943,27945,27954,27957,27974,28020,28028,28031,28033,28038,28043,28046,28049,28050,28058,28062,28072,28073,28076,28079,28095,28127,28133,28137,28139,28142,28145,28146,28148,28150,28165,28179,28180,28210,28214,28225,28231,28232,28240,28271,28272,28310,28317,28325,28330,28340,28343,28371,28379,28407,28441,28490,28491,28509,28548,28576,28577,28580,28606,28612,28619,28623,28625,28646,28677,28693,28697,28712,28719,28720,28721,28732,28739,28746,28758,28760,28767,28786,28805,28806,28807,28811,28814,28833,28834,28847,28869,28870,28872,28873,28888,28899,28911,28938,28939,28942,28943,28946,28951,28953,28962,28968,28982,28985,29047,29052,29082,29091,29094,29098,29183,29187,29189,29195,29217,29219,29227,29232,29251,29281,29282,29306,29329,29346,29358,29376,29381,29390,29395,29396,29400,29409,29415,29418,29425,29433,29441,29445,29452,29457,29471,29472,29473,29474,29494,29505,29506,29521,29524,29525,29530,29532,29543,29545,29558,29565,29568,29578,29583,29584,29596,29609,29632,29645,29654,29660,29725,29776,29783,29788,29800,29814,29821,29829,29832,29837,29838,29839,29847,29861,29862,29885,29926,29937,29947,29959,29960,29965,29991,29997,30024,30032,30033,30035,30036,30066,30073,30076,30089,30095,30098,30106,30148,30183,30191,30213,30238,30244,30253,30277,30295,30304,30312,30318,30319,30321,30323,30404,30405,30407,30417,30420,30425,30429,30442,30443,30445,30452,30459,30498,30501,30532,30537,30538,30543,30552,30556,30573,30574,30614,30624,30646,30680,30686,30706,30732,30804,30880,30943]]],["an",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27546]]],["and",[6226,3957,[[39,865,568,0,568,[[929,11,9,0,9],[930,24,11,9,20],[931,13,8,20,28],[932,32,17,28,45],[933,31,21,45,66],[934,20,13,66,79],[935,29,16,79,95],[936,34,19,95,114],[937,33,24,114,138],[938,29,21,138,159],[939,29,17,159,176],[940,49,32,176,208],[941,66,40,208,248],[942,27,19,248,267],[943,24,16,267,283],[944,23,14,283,297],[945,28,19,297,316],[946,21,16,316,332],[947,21,15,332,347],[948,27,20,347,367],[949,47,28,367,395],[950,29,21,395,416],[951,44,25,416,441],[952,41,27,441,468],[953,43,29,468,497],[954,42,31,497,528],[955,35,28,528,556],[956,13,12,556,568]]],[40,626,378,568,946,[[957,42,31,568,599],[958,33,18,599,617],[959,34,20,617,637],[960,41,19,637,656],[961,46,26,656,682],[962,70,36,682,718],[963,25,21,718,739],[964,35,20,739,759],[965,45,29,759,788],[966,47,28,788,816],[967,29,17,816,833],[968,42,26,833,859],[969,32,19,859,878],[970,62,38,878,916],[971,30,19,916,935],[972,13,11,935,946]]],[41,924,600,946,1546,[[973,55,42,946,988],[974,40,24,988,1012],[975,20,14,1012,1026],[976,28,20,1026,1046],[977,35,21,1046,1067],[978,58,31,1067,1098],[979,43,25,1098,1123],[980,73,40,1123,1163],[981,58,34,1163,1197],[982,41,23,1197,1220],[983,46,28,1220,1248],[984,41,29,1248,1277],[985,45,23,1277,1300],[986,31,19,1300,1319],[987,36,22,1319,1341],[988,23,17,1341,1358],[989,24,17,1358,1375],[990,20,15,1375,1390],[991,23,20,1390,1410],[992,30,22,1410,1432],[993,35,20,1432,1452],[994,34,26,1452,1478],[995,36,31,1478,1509],[996,49,37,1509,1546]]],[42,648,450,1546,1996,[[997,41,32,1546,1578],[998,24,14,1578,1592],[999,27,19,1592,1611],[1000,39,28,1611,1639],[1001,26,22,1639,1661],[1002,41,35,1661,1696],[1003,31,23,1696,1719],[1004,40,27,1719,1746],[1005,32,20,1746,1766],[1006,38,26,1766,1792],[1007,33,24,1792,1816],[1008,32,26,1816,1842],[1009,19,14,1842,1856],[1010,30,22,1856,1878],[1011,16,9,1878,1887],[1012,30,18,1887,1905],[1013,19,12,1905,1917],[1014,33,20,1917,1937],[1015,36,29,1937,1966],[1016,39,20,1966,1986],[1017,22,10,1986,1996]]],[43,824,546,1996,2542,[[1018,27,13,1996,2009],[1019,54,31,2009,2040],[1020,23,14,2040,2054],[1021,38,23,2054,2077],[1022,42,29,2077,2106],[1023,26,12,2106,2118],[1024,62,39,2118,2157],[1025,29,23,2157,2180],[1026,37,24,2180,2204],[1027,34,26,2204,2230],[1028,26,17,2230,2247],[1029,18,12,2247,2259],[1030,41,22,2259,2281],[1031,28,17,2281,2298],[1032,42,22,2298,2320],[1033,32,26,2320,2346],[1034,34,24,2346,2370],[1035,20,15,2370,2385],[1036,27,22,2385,2407],[1037,27,19,2407,2426],[1038,28,16,2426,2442],[1039,26,19,2442,2461],[1040,14,12,2461,2473],[1041,13,13,2473,2486],[1042,13,9,2486,2495],[1043,20,14,2495,2509],[1044,18,17,2509,2526],[1045,25,16,2526,2542]]],[44,184,137,2542,2679,[[1046,16,11,2542,2553],[1047,21,14,2553,2567],[1048,11,11,2567,2578],[1049,5,5,2578,2583],[1050,5,4,2583,2587],[1051,2,2,2587,2589],[1052,6,4,2589,2593],[1053,5,5,2593,2598],[1054,16,11,2598,2609],[1055,8,8,2609,2617],[1056,21,15,2617,2632],[1057,4,3,2632,2635],[1058,7,5,2635,2640],[1059,15,9,2640,2649],[1060,18,17,2649,2666],[1061,24,13,2666,2679]]],[45,182,136,2679,2815,[[1062,18,13,2679,2692],[1063,5,3,2692,2695],[1064,7,5,2695,2700],[1065,13,8,2700,2708],[1066,5,4,2708,2712],[1067,12,9,2712,2721],[1068,19,14,2721,2735],[1069,7,5,2735,2740],[1070,8,6,2740,2746],[1071,14,11,2746,2757],[1072,15,11,2757,2768],[1073,7,7,2768,2775],[1074,7,4,2775,2779],[1075,15,12,2779,2791],[1076,20,17,2791,2808],[1077,10,7,2808,2815]]],[46,109,73,2815,2888,[[1078,16,12,2815,2827],[1079,5,5,2827,2832],[1080,1,1,2832,2833],[1081,4,3,2833,2836],[1082,6,5,2836,2841],[1083,16,8,2841,2849],[1084,3,3,2849,2852],[1085,14,10,2852,2862],[1086,8,5,2862,2867],[1087,7,5,2867,2872],[1088,10,5,2872,2877],[1089,11,7,2877,2884],[1090,8,4,2884,2888]]],[47,43,37,2888,2925,[[1091,11,10,2888,2898],[1092,8,7,2898,2905],[1093,5,5,2905,2910],[1094,9,7,2910,2917],[1095,5,5,2917,2922],[1096,5,3,2922,2925]]],[48,94,69,2925,2994,[[1097,16,12,2925,2937],[1098,12,9,2937,2946],[1099,10,7,2946,2953],[1100,18,13,2953,2966],[1101,21,14,2966,2980],[1102,17,14,2980,2994]]],[49,67,46,2994,3040,[[1103,23,17,2994,3011],[1104,17,12,3011,3023],[1105,9,6,3023,3029],[1106,18,11,3029,3040]]],[50,72,52,3040,3092,[[1107,24,17,3040,3057],[1108,22,14,3057,3071],[1109,13,11,3071,3082],[1110,13,10,3082,3092]]],[51,71,40,3092,3132,[[1111,15,7,3092,3099],[1112,14,7,3099,3106],[1113,15,8,3106,3114],[1114,12,8,3114,3122],[1115,15,10,3122,3132]]],[52,38,27,3132,3159,[[1116,15,9,3132,3141],[1117,13,9,3141,3150],[1118,10,9,3150,3159]]],[53,80,57,3159,3216,[[1119,17,12,3159,3171],[1120,13,8,3171,3179],[1121,4,4,3179,3183],[1122,12,11,3183,3194],[1123,15,9,3194,3203],[1124,19,13,3203,3216]]],[54,47,33,3216,3249,[[1125,15,12,3216,3228],[1126,7,5,3228,3233],[1127,8,7,3233,3240],[1128,17,9,3240,3249]]],[55,30,20,3249,3269,[[1129,10,8,3249,3257],[1130,7,4,3257,3261],[1131,13,8,3261,3269]]],[56,11,7,3269,3276,[[1132,11,7,3269,3276]]],[57,179,126,3276,3402,[[1133,9,8,3276,3284],[1134,14,10,3284,3294],[1135,4,4,3294,3298],[1136,9,4,3298,3302],[1137,9,6,3302,3308],[1138,15,12,3308,3320],[1139,6,6,3320,3326],[1140,12,8,3326,3334],[1141,20,11,3334,3345],[1142,20,16,3345,3361],[1143,30,20,3361,3381],[1144,21,14,3381,3395],[1145,10,7,3395,3402]]],[58,96,67,3402,3469,[[1146,18,13,3402,3415],[1147,15,13,3415,3428],[1148,19,13,3428,3441],[1149,22,13,3441,3454],[1150,22,15,3454,3469]]],[59,53,41,3469,3510,[[1151,17,12,3469,3481],[1152,11,8,3481,3489],[1153,13,10,3489,3499],[1154,6,6,3499,3505],[1155,6,5,3505,3510]]],[60,41,31,3510,3541,[[1156,14,11,3510,3521],[1157,10,9,3521,3530],[1158,17,11,3530,3541]]],[61,91,64,3541,3605,[[1159,17,9,3541,3550],[1160,23,15,3550,3565],[1161,15,14,3565,3579],[1162,16,12,3579,3591],[1163,20,14,3591,3605]]],[62,11,7,3605,3612,[[1164,11,7,3605,3612]]],[63,11,7,3612,3619,[[1165,11,7,3612,3619]]],[64,17,9,3619,3628,[[1166,17,9,3619,3628]]],[65,812,329,3628,3957,[[1167,44,19,3628,3647],[1168,44,18,3647,3665],[1169,42,16,3665,3681],[1170,29,11,3681,3692],[1171,38,13,3692,3705],[1172,45,16,3705,3721],[1173,27,9,3721,3730],[1174,29,10,3730,3740],[1175,37,16,3740,3756],[1176,23,10,3756,3766],[1177,48,18,3766,3784],[1178,29,13,3784,3797],[1179,31,14,3797,3811],[1180,36,16,3811,3827],[1181,14,7,3827,3834],[1182,33,20,3834,3854],[1183,39,14,3854,3868],[1184,72,22,3868,3890],[1185,43,19,3890,3909],[1186,36,12,3909,3921],[1187,40,20,3921,3941],[1188,33,16,3941,3957]]]],[23146,23147,23155,23161,23163,23165,23167,23168,23169,23171,23172,23173,23178,23180,23182,23183,23185,23187,23189,23190,23196,23197,23199,23202,23203,23204,23206,23208,23211,23214,23215,23217,23219,23220,23222,23224,23225,23226,23227,23228,23230,23231,23232,23233,23234,23235,23240,23245,23246,23247,23249,23250,23252,23253,23254,23258,23259,23263,23264,23266,23272,23274,23276,23277,23278,23279,23284,23286,23287,23288,23295,23299,23300,23301,23302,23306,23307,23312,23315,23318,23320,23321,23322,23323,23324,23328,23329,23330,23335,23338,23340,23341,23342,23343,23345,23349,23353,23354,23355,23356,23357,23358,23359,23360,23361,23362,23365,23366,23367,23371,23372,23377,23378,23379,23380,23381,23384,23385,23387,23388,23389,23390,23392,23393,23394,23395,23396,23397,23398,23401,23402,23404,23406,23407,23409,23412,23414,23415,23418,23419,23420,23421,23422,23432,23433,23434,23435,23438,23442,23443,23444,23445,23446,23452,23454,23455,23456,23457,23458,23460,23463,23464,23468,23471,23472,23475,23476,23477,23478,23480,23481,23484,23486,23487,23488,23489,23490,23492,23493,23494,23496,23500,23502,23504,23507,23509,23511,23512,23514,23518,23519,23520,23522,23524,23526,23527,23528,23529,23530,23531,23532,23533,23534,23535,23536,23537,23538,23539,23540,23541,23543,23544,23545,23546,23547,23551,23552,23553,23554,23555,23556,23558,23559,23561,23562,23564,23565,23567,23569,23570,23571,23572,23573,23575,23578,23579,23580,23581,23583,23585,23586,23587,23588,23589,23591,23593,23594,23596,23599,23600,23603,23606,23608,23609,23610,23611,23612,23614,23616,23617,23618,23619,23623,23627,23628,23632,23633,23634,23637,23641,23643,23650,23654,23659,23662,23663,23664,23665,23667,23669,23670,23671,23672,23675,23676,23678,23681,23682,23683,23684,23689,23690,23691,23693,23696,23698,23699,23701,23702,23703,23704,23705,23706,23707,23711,23712,23714,23715,23716,23717,23718,23720,23721,23723,23724,23727,23729,23730,23733,23735,23736,23739,23742,23744,23745,23748,23752,23753,23754,23755,23756,23758,23763,23764,23765,23766,23767,23769,23771,23774,23775,23776,23781,23783,23789,23791,23792,23796,23797,23798,23799,23800,23802,23804,23806,23808,23809,23810,23811,23812,23813,23814,23815,23817,23820,23824,23826,23827,23828,23829,23831,23832,23833,23834,23835,23838,23840,23841,23842,23843,23845,23847,23849,23854,23856,23857,23858,23859,23862,23864,23865,23867,23868,23869,23871,23875,23876,23878,23879,23881,23882,23885,23887,23888,23892,23893,23894,23895,23896,23897,23898,23904,23907,23909,23910,23912,23919,23920,23921,23922,23923,23924,23925,23930,23931,23932,23933,23935,23937,23938,23939,23940,23941,23943,23944,23945,23946,23947,23952,23953,23955,23958,23960,23962,23963,23964,23966,23967,23968,23971,23976,23981,23984,23986,23987,23988,23989,23992,23993,23995,23996,23997,23998,24000,24002,24006,24007,24008,24010,24013,24015,24017,24018,24022,24023,24024,24026,24027,24029,24031,24032,24034,24035,24036,24037,24038,24039,24040,24043,24044,24045,24046,24047,24049,24050,24051,24052,24056,24057,24058,24061,24063,24072,24073,24080,24081,24085,24090,24091,24092,24094,24095,24099,24101,24103,24104,24105,24107,24109,24111,24112,24113,24115,24118,24121,24123,24125,24128,24130,24131,24132,24134,24140,24141,24149,24154,24158,24159,24160,24163,24164,24167,24169,24170,24171,24177,24180,24181,24182,24183,24185,24189,24190,24191,24193,24195,24196,24197,24198,24199,24202,24203,24204,24209,24210,24213,24214,24215,24219,24220,24221,24224,24225,24228,24230,24231,24232,24233,24234,24235,24236,24237,24238,24240,24241,24242,24244,24245,24246,24247,24249,24250,24251,24254,24255,24256,24257,24259,24260,24261,24262,24264,24266,24269,24271,24272,24273,24274,24275,24276,24278,24280,24281,24282,24283,24285,24286,24289,24293,24295,24296,24299,24301,24302,24303,24305,24306,24307,24310,24311,24314,24315,24316,24319,24320,24322,24323,24324,24325,24327,24328,24329,24330,24331,24335,24336,24338,24342,24343,24347,24348,24350,24355,24361,24362,24364,24367,24368,24369,24370,24377,24378,24379,24380,24383,24384,24385,24386,24387,24388,24390,24393,24394,24395,24397,24398,24401,24402,24403,24404,24406,24407,24408,24409,24410,24411,24414,24416,24420,24421,24424,24426,24427,24428,24429,24433,24435,24436,24437,24438,24440,24441,24442,24443,24444,24445,24447,24448,24449,24450,24452,24454,24455,24456,24457,24458,24460,24463,24464,24466,24467,24468,24471,24473,24476,24477,24482,24486,24487,24489,24490,24491,24493,24494,24495,24496,24497,24498,24500,24501,24502,24506,24507,24508,24509,24511,24512,24515,24518,24522,24523,24525,24527,24531,24533,24534,24535,24536,24538,24540,24542,24543,24545,24550,24551,24552,24553,24556,24558,24560,24563,24564,24565,24567,24568,24569,24570,24571,24573,24574,24575,24576,24580,24582,24584,24586,24587,24588,24589,24592,24594,24595,24599,24600,24602,24605,24607,24609,24616,24617,24618,24619,24620,24621,24622,24623,24625,24626,24627,24628,24629,24630,24633,24634,24635,24640,24641,24642,24643,24644,24646,24647,24648,24649,24651,24653,24655,24658,24663,24664,24667,24668,24669,24674,24676,24677,24678,24680,24681,24682,24684,24685,24686,24689,24690,24691,24692,24693,24694,24695,24699,24703,24705,24706,24710,24711,24712,24713,24714,24718,24720,24721,24723,24724,24725,24726,24729,24734,24739,24741,24742,24743,24744,24745,24748,24749,24750,24751,24755,24757,24758,24759,24761,24765,24767,24770,24772,24773,24776,24777,24781,24786,24787,24788,24789,24791,24792,24795,24797,24798,24799,24800,24801,24802,24803,24805,24807,24808,24809,24812,24815,24816,24819,24822,24824,24825,24827,24841,24842,24843,24845,24846,24847,24851,24853,24855,24856,24858,24862,24866,24867,24869,24870,24872,24873,24874,24878,24880,24881,24883,24884,24887,24889,24891,24892,24893,24895,24898,24899,24900,24905,24906,24907,24908,24910,24911,24912,24913,24914,24915,24917,24920,24922,24924,24925,24926,24928,24929,24933,24934,24935,24942,24945,24946,24948,24949,24950,24951,24952,24957,24958,24960,24961,24964,24965,24968,24972,24973,24977,24980,24982,24986,24987,24988,24989,24993,24998,25000,25001,25005,25006,25007,25010,25011,25013,25016,25017,25019,25020,25021,25024,25025,25026,25027,25030,25033,25034,25036,25037,25039,25040,25041,25042,25044,25046,25047,25064,25065,25069,25071,25072,25077,25079,25081,25085,25088,25090,25092,25094,25096,25098,25099,25101,25102,25104,25105,25111,25114,25116,25117,25121,25122,25123,25124,25125,25126,25128,25130,25131,25133,25134,25136,25137,25140,25143,25144,25145,25147,25149,25150,25152,25153,25154,25156,25157,25158,25159,25160,25161,25162,25163,25164,25165,25168,25169,25171,25174,25175,25176,25181,25183,25184,25188,25191,25192,25193,25194,25195,25198,25200,25202,25203,25204,25206,25207,25208,25210,25211,25212,25216,25217,25220,25221,25224,25225,25226,25227,25228,25229,25231,25233,25234,25239,25246,25247,25248,25249,25250,25251,25252,25253,25255,25257,25258,25259,25260,25262,25263,25264,25265,25266,25267,25268,25269,25270,25272,25273,25274,25277,25278,25279,25280,25284,25286,25287,25289,25290,25292,25295,25296,25297,25299,25300,25302,25303,25305,25307,25308,25312,25313,25314,25316,25317,25318,25319,25323,25324,25327,25329,25330,25331,25333,25334,25335,25337,25340,25341,25342,25343,25346,25349,25350,25353,25355,25356,25359,25363,25364,25367,25370,25371,25372,25373,25376,25377,25379,25382,25384,25385,25387,25390,25391,25393,25394,25395,25396,25397,25398,25400,25404,25410,25411,25412,25414,25415,25419,25422,25427,25428,25429,25430,25431,25432,25433,25434,25436,25437,25444,25446,25447,25448,25449,25451,25454,25456,25457,25458,25459,25462,25463,25465,25470,25474,25477,25480,25482,25483,25487,25490,25492,25494,25495,25496,25497,25498,25501,25504,25505,25506,25507,25508,25509,25511,25512,25514,25515,25517,25522,25524,25525,25526,25529,25530,25531,25532,25533,25535,25536,25537,25540,25542,25543,25544,25546,25547,25548,25549,25550,25551,25552,25556,25557,25558,25562,25564,25565,25569,25571,25572,25573,25574,25575,25576,25578,25579,25580,25582,25583,25584,25589,25590,25592,25594,25596,25601,25602,25603,25604,25606,25608,25609,25610,25611,25612,25613,25614,25615,25616,25617,25619,25620,25621,25626,25627,25630,25633,25634,25636,25637,25638,25639,25642,25643,25644,25645,25646,25649,25651,25653,25654,25655,25657,25659,25662,25667,25671,25673,25676,25678,25680,25682,25684,25685,25686,25687,25689,25691,25695,25697,25698,25704,25708,25710,25716,25718,25719,25720,25721,25722,25731,25733,25736,25737,25739,25741,25742,25743,25744,25745,25752,25753,25755,25758,25760,25766,25769,25774,25775,25776,25778,25780,25782,25788,25790,25791,25795,25798,25799,25800,25803,25804,25805,25807,25808,25809,25810,25813,25814,25815,25816,25825,25826,25831,25833,25834,25835,25836,25837,25838,25841,25842,25847,25849,25850,25851,25852,25853,25854,25855,25859,25860,25862,25866,25868,25869,25870,25872,25877,25878,25881,25883,25889,25890,25894,25896,25897,25899,25900,25905,25911,25914,25916,25917,25918,25919,25920,25928,25930,25937,25939,25943,25945,25946,25947,25948,25949,25950,25954,25957,25958,25960,25962,25963,25964,25965,25968,25971,25973,25974,25979,25980,25981,25984,25985,25986,25988,25989,25990,25991,25992,25996,25998,26000,26001,26002,26003,26006,26008,26009,26010,26011,26015,26016,26017,26018,26019,26020,26021,26022,26023,26024,26025,26026,26027,26028,26029,26030,26031,26032,26033,26035,26037,26038,26041,26042,26044,26045,26047,26048,26049,26054,26055,26058,26059,26060,26061,26063,26064,26069,26073,26076,26077,26078,26079,26081,26082,26083,26084,26085,26087,26088,26089,26090,26091,26092,26093,26094,26095,26096,26097,26103,26104,26105,26106,26107,26108,26109,26110,26113,26114,26115,26117,26122,26123,26124,26125,26126,26128,26129,26130,26131,26132,26139,26142,26143,26146,26147,26149,26151,26152,26155,26157,26159,26166,26167,26168,26169,26172,26173,26174,26176,26179,26180,26183,26184,26186,26190,26191,26192,26193,26194,26196,26198,26199,26203,26204,26206,26207,26209,26211,26214,26216,26218,26219,26221,26222,26224,26225,26226,26229,26230,26231,26234,26235,26240,26242,26243,26245,26249,26253,26254,26260,26262,26266,26268,26270,26272,26274,26276,26278,26279,26281,26283,26286,26287,26290,26292,26293,26294,26297,26299,26300,26301,26302,26306,26307,26310,26311,26312,26313,26315,26320,26321,26323,26326,26327,26331,26332,26339,26342,26344,26346,26347,26348,26349,26350,26354,26356,26359,26360,26361,26362,26363,26364,26365,26370,26373,26379,26380,26383,26384,26390,26391,26392,26395,26397,26399,26401,26402,26407,26409,26413,26414,26419,26420,26423,26425,26429,26430,26431,26433,26434,26436,26437,26438,26440,26446,26447,26448,26451,26454,26455,26458,26460,26464,26465,26467,26468,26470,26471,26474,26475,26476,26477,26479,26480,26482,26484,26485,26489,26490,26491,26493,26494,26495,26496,26497,26499,26501,26503,26505,26506,26508,26509,26510,26511,26514,26516,26517,26519,26521,26522,26524,26525,26528,26531,26534,26542,26548,26549,26551,26552,26554,26556,26557,26561,26564,26567,26568,26569,26570,26571,26573,26578,26579,26580,26582,26583,26585,26586,26589,26591,26593,26596,26597,26601,26602,26605,26606,26607,26608,26609,26610,26614,26616,26618,26620,26621,26624,26627,26628,26629,26633,26634,26635,26636,26637,26639,26640,26642,26643,26644,26651,26661,26662,26663,26671,26672,26673,26674,26675,26676,26677,26678,26679,26680,26684,26685,26687,26688,26689,26690,26691,26692,26694,26696,26698,26699,26700,26701,26705,26706,26709,26710,26715,26721,26723,26731,26734,26736,26739,26740,26741,26742,26743,26745,26746,26748,26750,26752,26753,26754,26755,26756,26758,26760,26762,26765,26767,26769,26770,26771,26772,26773,26782,26784,26785,26786,26788,26791,26795,26797,26800,26801,26803,26804,26805,26810,26812,26813,26814,26815,26816,26818,26820,26822,26823,26826,26827,26828,26829,26830,26831,26832,26834,26835,26838,26839,26841,26843,26844,26845,26848,26849,26850,26851,26854,26855,26856,26857,26859,26860,26863,26864,26865,26866,26868,26869,26870,26871,26873,26875,26879,26880,26881,26884,26885,26886,26887,26889,26892,26893,26894,26895,26896,26898,26900,26901,26904,26905,26907,26909,26911,26916,26918,26922,26924,26926,26931,26932,26936,26937,26940,26941,26943,26944,26946,26948,26949,26951,26953,26955,26956,26958,26959,26960,26961,26963,26966,26967,26968,26969,26971,26972,26975,26978,26979,26982,26985,26986,26987,26988,26989,26990,26991,26992,26993,26994,26995,26996,26997,26999,27002,27003,27004,27005,27006,27007,27009,27010,27012,27015,27020,27021,27023,27024,27025,27026,27027,27028,27030,27032,27035,27038,27041,27042,27045,27046,27047,27048,27049,27050,27051,27052,27053,27054,27059,27061,27062,27063,27064,27065,27068,27069,27070,27071,27073,27074,27075,27076,27077,27080,27082,27083,27084,27086,27087,27088,27090,27091,27092,27095,27096,27097,27099,27101,27104,27105,27106,27107,27108,27109,27110,27111,27112,27113,27114,27115,27118,27119,27121,27122,27123,27124,27126,27127,27129,27130,27131,27132,27133,27136,27137,27138,27140,27142,27143,27145,27148,27150,27151,27152,27154,27155,27157,27158,27159,27162,27167,27168,27169,27170,27171,27172,27173,27174,27175,27177,27178,27179,27182,27183,27185,27188,27189,27190,27193,27198,27199,27201,27202,27203,27204,27205,27206,27208,27211,27212,27214,27216,27217,27219,27222,27225,27226,27227,27228,27231,27233,27234,27237,27238,27240,27243,27244,27246,27247,27250,27251,27252,27255,27256,27257,27258,27261,27262,27263,27264,27266,27268,27269,27270,27271,27272,27275,27279,27281,27282,27283,27286,27289,27290,27291,27294,27297,27298,27299,27300,27301,27305,27308,27310,27312,27313,27314,27317,27319,27320,27321,27325,27326,27327,27329,27330,27331,27333,27337,27344,27345,27346,27347,27348,27354,27356,27357,27359,27360,27361,27362,27363,27364,27365,27369,27372,27373,27376,27377,27378,27379,27382,27383,27388,27389,27398,27403,27405,27407,27408,27410,27412,27414,27415,27416,27417,27418,27419,27420,27423,27424,27427,27428,27429,27431,27433,27434,27435,27436,27441,27444,27445,27446,27448,27449,27451,27454,27458,27459,27462,27464,27465,27466,27467,27469,27470,27471,27472,27474,27477,27480,27483,27484,27485,27486,27487,27488,27489,27492,27496,27498,27500,27501,27502,27505,27507,27508,27509,27510,27512,27514,27515,27516,27517,27520,27521,27522,27523,27524,27525,27526,27527,27528,27529,27530,27531,27532,27533,27535,27537,27538,27540,27541,27544,27546,27547,27548,27549,27550,27551,27552,27557,27560,27561,27562,27563,27565,27566,27567,27568,27569,27572,27575,27579,27580,27582,27583,27586,27591,27593,27594,27595,27597,27600,27601,27602,27603,27604,27605,27606,27607,27611,27612,27613,27614,27617,27620,27621,27623,27627,27628,27630,27632,27635,27636,27637,27638,27641,27645,27646,27647,27649,27650,27654,27657,27658,27660,27663,27667,27669,27671,27672,27675,27676,27677,27684,27688,27689,27691,27692,27694,27696,27697,27702,27705,27706,27708,27709,27710,27711,27713,27717,27718,27719,27720,27722,27723,27724,27726,27727,27729,27733,27734,27737,27740,27741,27743,27748,27750,27752,27753,27755,27757,27761,27767,27770,27771,27772,27774,27775,27783,27784,27785,27786,27788,27792,27793,27794,27798,27803,27809,27811,27815,27819,27820,27822,27823,27830,27833,27835,27836,27837,27839,27840,27841,27843,27845,27846,27848,27852,27853,27856,27860,27862,27864,27865,27866,27867,27870,27876,27878,27879,27883,27886,27887,27890,27895,27896,27901,27902,27905,27907,27908,27909,27912,27913,27914,27919,27922,27925,27926,27927,27929,27930,27935,27937,27942,27944,27946,27948,27950,27951,27953,27955,27957,27965,27966,27967,27969,27970,27971,27972,27974,27977,27979,27980,27982,27989,27991,27995,27999,28000,28005,28007,28010,28012,28013,28014,28017,28021,28025,28029,28036,28039,28047,28049,28059,28062,28064,28081,28087,28097,28102,28103,28114,28118,28119,28122,28138,28146,28157,28159,28160,28164,28170,28172,28177,28180,28183,28184,28188,28189,28191,28196,28197,28200,28206,28208,28209,28212,28217,28218,28219,28221,28223,28225,28226,28231,28233,28235,28238,28242,28244,28245,28247,28259,28260,28269,28275,28278,28279,28280,28283,28286,28287,28289,28291,28294,28297,28298,28299,28304,28307,28308,28312,28314,28315,28316,28321,28322,28324,28327,28329,28330,28331,28333,28334,28335,28338,28339,28343,28345,28348,28349,28350,28351,28353,28354,28357,28359,28361,28364,28365,28366,28368,28373,28377,28382,28385,28387,28388,28390,28391,28393,28396,28397,28398,28412,28413,28418,28423,28426,28434,28438,28439,28441,28442,28444,28450,28452,28455,28456,28458,28462,28468,28469,28473,28475,28478,28480,28481,28486,28487,28489,28492,28495,28498,28499,28500,28501,28506,28515,28517,28521,28522,28523,28524,28531,28532,28533,28534,28539,28544,28545,28546,28547,28550,28567,28568,28569,28574,28575,28576,28577,28587,28588,28593,28594,28595,28602,28607,28618,28621,28622,28624,28626,28627,28628,28629,28630,28637,28645,28646,28647,28657,28661,28665,28666,28667,28668,28674,28681,28688,28689,28699,28701,28703,28705,28706,28707,28709,28717,28718,28719,28722,28728,28729,28733,28742,28750,28752,28756,28758,28759,28762,28766,28768,28770,28771,28772,28782,28785,28791,28792,28793,28794,28795,28801,28802,28803,28806,28810,28812,28816,28817,28819,28820,28821,28822,28828,28831,28836,28838,28839,28843,28866,28872,28873,28885,28889,28892,28895,28896,28900,28905,28906,28907,28908,28914,28915,28916,28917,28919,28931,28934,28935,28936,28937,28939,28940,28947,28951,28955,28956,28960,28961,28962,28966,28969,28972,28976,28979,28981,28983,28998,29016,29018,29020,29022,29023,29026,29034,29036,29037,29040,29043,29045,29053,29054,29057,29058,29060,29061,29064,29070,29072,29073,29074,29075,29078,29083,29090,29093,29095,29096,29097,29101,29107,29108,29118,29119,29131,29133,29140,29141,29149,29151,29158,29161,29163,29177,29178,29183,29186,29190,29192,29204,29207,29208,29209,29210,29214,29216,29221,29223,29224,29226,29227,29228,29230,29232,29235,29237,29241,29243,29246,29248,29249,29256,29257,29261,29263,29266,29268,29269,29274,29276,29278,29280,29283,29285,29286,29288,29289,29293,29296,29298,29303,29306,29307,29309,29313,29318,29323,29324,29327,29329,29331,29333,29334,29335,29336,29339,29340,29341,29342,29344,29347,29349,29350,29351,29354,29355,29358,29359,29360,29362,29363,29368,29370,29371,29372,29374,29376,29379,29380,29381,29382,29384,29386,29388,29389,29391,29392,29400,29401,29403,29404,29405,29406,29408,29409,29416,29417,29420,29424,29429,29431,29436,29438,29440,29443,29444,29445,29448,29449,29450,29451,29454,29457,29460,29462,29466,29467,29468,29469,29471,29474,29475,29476,29478,29481,29482,29486,29487,29488,29489,29491,29493,29495,29496,29497,29499,29501,29502,29504,29507,29508,29509,29512,29513,29516,29517,29520,29522,29528,29529,29530,29532,29533,29534,29536,29540,29542,29543,29549,29550,29551,29552,29554,29555,29556,29557,29558,29561,29563,29565,29566,29567,29568,29569,29572,29579,29580,29581,29582,29585,29590,29592,29594,29595,29596,29597,29600,29601,29602,29604,29607,29609,29614,29615,29617,29619,29620,29622,29624,29626,29627,29628,29629,29632,29633,29636,29644,29650,29651,29652,29653,29657,29658,29659,29660,29661,29662,29664,29665,29669,29670,29674,29676,29677,29678,29679,29680,29681,29682,29683,29684,29686,29690,29692,29697,29698,29700,29701,29705,29706,29709,29710,29711,29713,29715,29716,29718,29719,29720,29721,29723,29724,29725,29731,29738,29743,29744,29746,29748,29750,29751,29752,29753,29754,29755,29756,29757,29758,29763,29767,29768,29771,29776,29779,29780,29784,29786,29788,29789,29790,29791,29792,29793,29796,29797,29798,29800,29801,29803,29804,29808,29811,29812,29814,29816,29818,29820,29821,29822,29824,29825,29826,29827,29844,29845,29847,29848,29850,29859,29860,29861,29865,29866,29867,29869,29871,29872,29876,29880,29883,29887,29888,29889,29891,29893,29896,29897,29901,29902,29906,29907,29908,29920,29921,29922,29923,29924,29926,29927,29928,29931,29932,29933,29934,29939,29940,29941,29943,29945,29949,29954,29964,29966,29968,29970,29972,29973,29974,29975,29979,29980,29981,29984,29986,29987,29988,29990,29991,29994,29996,30001,30004,30005,30020,30026,30027,30030,30031,30032,30037,30041,30042,30044,30045,30046,30048,30050,30051,30052,30053,30054,30056,30058,30060,30063,30065,30070,30075,30082,30085,30090,30094,30095,30097,30100,30102,30103,30104,30105,30107,30109,30112,30114,30115,30116,30117,30118,30124,30126,30127,30137,30138,30139,30141,30144,30149,30150,30153,30155,30157,30158,30160,30162,30166,30167,30170,30176,30177,30178,30179,30180,30181,30182,30183,30184,30185,30189,30192,30193,30194,30195,30200,30204,30208,30209,30210,30213,30214,30220,30221,30224,30226,30227,30230,30231,30233,30234,30235,30236,30240,30245,30247,30249,30250,30257,30258,30265,30267,30270,30271,30272,30277,30280,30283,30287,30288,30289,30290,30291,30293,30296,30297,30298,30299,30305,30306,30308,30309,30312,30315,30316,30317,30318,30322,30323,30324,30325,30326,30328,30329,30330,30331,30332,30333,30335,30336,30338,30339,30340,30341,30344,30345,30346,30347,30348,30349,30350,30352,30354,30356,30357,30358,30359,30361,30364,30365,30366,30368,30369,30370,30371,30372,30373,30374,30375,30376,30377,30378,30381,30382,30384,30385,30393,30395,30397,30398,30400,30405,30407,30410,30415,30417,30419,30424,30427,30428,30430,30431,30434,30435,30436,30438,30439,30446,30449,30451,30453,30457,30460,30464,30466,30470,30476,30477,30478,30480,30481,30482,30483,30487,30489,30490,30491,30495,30496,30498,30503,30508,30510,30511,30512,30513,30514,30520,30522,30524,30527,30529,30530,30532,30533,30534,30535,30536,30538,30540,30541,30542,30543,30545,30546,30547,30548,30549,30550,30554,30558,30559,30560,30561,30564,30566,30567,30568,30570,30571,30572,30574,30577,30578,30581,30584,30588,30589,30591,30594,30595,30596,30597,30598,30599,30601,30602,30603,30606,30607,30608,30609,30610,30613,30615,30616,30617,30618,30619,30623,30625,30626,30627,30628,30630,30631,30632,30635,30637,30640,30641,30642,30643,30644,30646,30647,30648,30652,30654,30655,30657,30660,30661,30663,30668,30670,30671,30672,30673,30674,30676,30679,30683,30687,30688,30696,30697,30698,30699,30700,30701,30702,30703,30704,30705,30706,30707,30708,30710,30711,30712,30713,30714,30715,30716,30717,30719,30720,30722,30725,30726,30727,30730,30731,30733,30734,30735,30736,30737,30738,30739,30740,30741,30743,30747,30748,30749,30750,30751,30753,30754,30755,30758,30760,30762,30763,30764,30765,30766,30767,30769,30770,30771,30772,30773,30774,30775,30776,30777,30778,30779,30780,30781,30783,30784,30785,30786,30787,30788,30789,30790,30791,30792,30793,30794,30795,30796,30797,30798,30799,30800,30801,30802,30803,30804,30805,30807,30808,30809,30810,30812,30819,30820,30821,30822,30823,30824,30825,30827,30829,30830,30832,30834,30835,30836,30837,30838,30839,30840,30841,30842,30843,30845,30846,30847,30848,30849,30850,30853,30855,30856,30857,30858,30859,30860,30862,30863,30864,30865,30866,30867,30869,30870,30871,30872,30873,30874,30875,30876,30877,30878,30879,30880,30881,30882,30883,30884,30885,30887,30888,30889,30890,30891,30892,30893,30894,30895,30896,30898,30900,30901,30902,30903,30905,30907,30908,30909,30910,30911,30912,30913,30914,30915,30918,30919,30920,30922,30923,30924,30926,30927,30928,30929,30930,30932,30933,30935,30936,30937,30938,30940,30941,30942,30944,30945,30946,30947,30948,30949,30950,30951,30952,30954,30955,30956,30957,30958,30959,30960,30961,30962,30963,30964,30965,30966,30967,30968,30969,30971,30972,30973,30974,30975,30976,30977,30978,30979,30981,30982,30983,30985,30986,30988,30989,30990,30991,30992,30994,30995,30996,30997,30998,30999,31000,31001,31002,31004,31005,31006,31007,31008,31009,31010,31012,31013,31014,31015,31016,31017,31018,31019,31021,31022,31023,31024,31025,31027,31028,31029,31030,31031,31032,31033,31034,31035,31036,31037,31038,31039,31040,31041,31042,31044,31046,31047,31048,31049,31050,31051,31052,31054,31056,31057,31058,31059,31060,31061,31062,31063,31064,31065,31067,31068,31069,31071,31074,31075,31076,31077,31079,31081,31082,31083,31084,31085,31086,31088,31089,31091,31092,31093,31094,31095,31096,31097,31099]]],["are",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28724]]],["as",[3,3,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[60,1,1,2,3,[[1158,1,1,2,3]]]],[25124,27835,30537]]],["at",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27819]]],["be",[2,2,[[43,1,1,0,1,[[1036,1,1,0,1]]],[47,1,1,1,2,[[1096,1,1,1,2]]]],[27612,29189]]],["because",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27864]]],["being",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26390]]],["both",[44,41,[[39,2,2,0,2,[[938,1,1,0,1],[940,1,1,1,2]]],[40,2,2,2,4,[[962,1,1,2,3],[963,1,1,3,4]]],[41,4,4,4,8,[[974,1,1,4,5],[977,1,1,5,6],[993,1,1,6,7],[994,1,1,7,8]]],[42,8,7,8,15,[[998,1,1,8,9],[1000,1,1,9,10],[1005,1,1,10,11],[1007,2,2,11,13],[1008,1,1,13,14],[1011,2,1,14,15]]],[43,2,2,15,17,[[1019,1,1,15,16],[1043,1,1,16,17]]],[44,3,2,17,19,[[1056,1,1,17,18],[1059,2,1,18,19]]],[45,6,6,19,25,[[1065,2,2,19,21],[1067,2,2,21,23],[1068,2,2,23,25]]],[46,1,1,25,26,[[1086,1,1,25,26]]],[49,4,3,26,29,[[1104,1,1,26,27],[1106,3,2,27,29]]],[51,1,1,29,30,[[1115,1,1,29,30]]],[52,1,1,30,31,[[1118,1,1,30,31]]],[53,2,2,31,33,[[1122,2,2,31,33]]],[55,1,1,33,34,[[1129,1,1,33,34]]],[56,1,1,34,35,[[1132,1,1,34,35]]],[60,1,1,35,36,[[1158,1,1,35,36]]],[62,1,1,36,37,[[1164,1,1,36,37]]],[64,1,1,37,38,[[1166,1,1,37,38]]],[65,3,3,38,41,[[1179,1,1,38,39],[1185,2,2,39,41]]]],[23445,23511,24437,24500,25019,25143,25842,25897,26097,26192,26477,26571,26580,26608,26723,26985,27852,28242,28289,28438,28444,28480,28481,28516,28521,28966,29404,29451,29454,29636,29682,29757,29763,29901,29954,30540,30654,30697,30923,31022,31035]]],["but",[25,25,[[40,6,6,0,6,[[960,1,1,0,1],[962,1,1,1,2],[963,1,1,2,3],[964,1,1,3,4],[968,1,1,4,5],[970,1,1,5,6]]],[41,1,1,6,7,[[974,1,1,6,7]]],[42,4,4,7,11,[[997,1,1,7,8],[1003,1,1,8,9],[1006,1,1,9,10],[1013,1,1,10,11]]],[43,4,4,11,15,[[1024,1,1,11,12],[1026,1,1,12,13],[1027,1,1,13,14],[1033,1,1,14,15]]],[44,1,1,15,16,[[1046,1,1,15,16]]],[45,2,2,16,18,[[1073,1,1,16,17],[1077,1,1,17,18]]],[51,1,1,18,19,[[1112,1,1,18,19]]],[54,1,1,19,20,[[1127,1,1,19,20]]],[57,1,1,20,21,[[1142,1,1,20,21]]],[58,1,1,21,22,[[1146,1,1,21,22]]],[65,3,3,22,25,[[1169,1,1,22,23],[1175,1,1,23,24],[1188,1,1,24,25]]]],[24338,24426,24487,24528,24685,24810,25024,26064,26358,26520,26770,27125,27242,27287,27490,27943,28639,28788,29588,29864,30171,30277,30751,30851,31083]]],["did",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27324]]],["didst",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28440]]],["do",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29627]]],["else",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27977]]],["even",[95,94,[[39,8,8,0,8,[[933,2,2,0,2],[935,1,1,2,3],[936,1,1,3,4],[940,1,1,4,5],[941,1,1,5,6],[946,1,1,6,7],[948,1,1,7,8]]],[40,6,6,8,14,[[957,1,1,8,9],[960,2,2,9,11],[962,1,1,11,12],[966,1,1,12,13],[969,1,1,13,14]]],[41,13,13,14,27,[[978,1,1,14,15],[980,2,2,15,17],[981,1,1,17,18],[982,1,1,18,19],[984,3,3,19,22],[990,1,1,22,23],[991,2,2,23,25],[992,1,1,25,26],[996,1,1,26,27]]],[42,2,2,27,29,[[1007,2,2,27,29]]],[43,2,2,29,31,[[1022,1,1,29,30],[1039,1,1,30,31]]],[44,10,10,31,41,[[1046,1,1,31,32],[1050,4,4,32,36],[1051,1,1,36,37],[1053,2,2,37,39],[1060,2,2,39,41]]],[45,6,6,41,47,[[1063,1,1,41,42],[1064,1,1,42,43],[1066,1,1,43,44],[1076,2,2,44,46],[1077,1,1,46,47]]],[46,8,8,47,55,[[1078,3,3,47,50],[1080,1,1,50,51],[1084,1,1,51,52],[1087,2,2,52,54],[1088,1,1,54,55]]],[47,3,3,55,58,[[1092,1,1,55,56],[1094,1,1,56,57],[1095,1,1,57,58]]],[48,5,5,58,63,[[1098,1,1,58,59],[1100,1,1,59,60],[1101,3,3,60,63]]],[49,5,5,63,68,[[1103,1,1,63,64],[1105,3,3,64,67],[1106,1,1,67,68]]],[50,1,1,68,69,[[1109,1,1,68,69]]],[51,7,7,69,76,[[1112,2,2,69,71],[1113,3,3,71,74],[1114,2,2,74,76]]],[52,3,3,76,79,[[1117,1,1,76,77],[1118,2,2,77,79]]],[55,1,1,79,80,[[1129,1,1,79,80]]],[56,1,1,80,81,[[1132,1,1,80,81]]],[57,4,4,81,85,[[1136,1,1,81,82],[1139,1,1,82,83],[1143,2,2,83,85]]],[58,1,1,85,86,[[1148,1,1,85,86]]],[60,3,2,86,88,[[1156,1,1,86,87],[1157,2,1,87,88]]],[61,1,1,88,89,[[1160,1,1,88,89]]],[64,1,1,89,90,[[1166,1,1,89,90]]],[65,4,4,90,94,[[1168,1,1,90,91],[1169,1,1,91,92],[1183,1,1,92,93],[1184,1,1,93,94]]]],[23280,23281,23328,23372,23497,23551,23760,23806,24242,24348,24364,24409,24633,24739,25179,25263,25270,25355,25380,25466,25500,25516,25699,25757,25773,25816,26015,26545,26560,27098,27721,27943,28054,28061,28065,28068,28072,28139,28150,28306,28309,28405,28415,28461,28740,28742,28777,28803,28808,28813,28851,28930,28978,28984,29001,29097,29160,29174,29232,29304,29316,29327,29333,29376,29436,29439,29442,29458,29530,29572,29589,29594,29602,29603,29608,29616,29677,29679,29688,29907,29957,30026,30068,30184,30191,30328,30493,30501,30568,30695,30730,30750,30986,30999]]],["field",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24981]]],["for",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]],[43,1,1,2,3,[[1040,1,1,2,3]]],[61,1,1,3,4,[[1161,1,1,3,4]]]],[24915,26615,27737,30583]]],["hath",[2,2,[[43,1,1,0,1,[[1042,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]]],[27821,28338]]],["have",[3,3,[[44,1,1,0,1,[[1056,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]]],[28239,29584,30263]]],["he",[8,8,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,5,5,1,6,[[1027,1,1,1,2],[1038,1,1,2,3],[1040,1,1,3,4],[1041,1,1,4,5],[1044,1,1,5,6]]],[60,1,1,6,7,[[1157,1,1,6,7]]],[65,1,1,7,8,[[1179,1,1,7,8]]]],[25329,27263,27675,27768,27795,27890,30519,30921]]],["his",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25900]]],["if",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25592]]],["in",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29089]]],["indeed",[4,4,[[40,1,1,0,1,[[965,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[51,1,1,3,4,[[1114,1,1,3,4]]]],[24551,28990,29418,29613]]],["is",[2,2,[[42,1,1,0,1,[[1004,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[26398,30051]]],["it",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29471]]],["let",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30465]]],["likewise",[8,8,[[39,2,2,0,2,[[948,1,1,0,1],[952,1,1,1,2]]],[41,2,2,2,4,[[975,1,1,2,3],[991,1,1,3,4]]],[43,1,1,4,5,[[1020,1,1,4,5]]],[45,1,1,5,6,[[1075,1,1,5,6]]],[50,1,1,6,7,[[1110,1,1,6,7]]],[59,1,1,7,8,[[1154,1,1,7,8]]]],[23802,23990,25039,25750,27020,28687,29558,30447]]],["manner",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24746]]],["neither",[9,9,[[40,2,2,0,2,[[961,1,1,0,1],[972,1,1,1,2]]],[41,2,2,2,4,[[984,1,1,2,3],[987,1,1,3,4]]],[44,1,1,4,5,[[1049,1,1,4,5]]],[45,1,1,5,6,[[1071,1,1,5,6]]],[61,1,1,6,7,[[1161,1,1,6,7]]],[65,2,2,7,9,[[1187,1,1,7,8],[1188,1,1,8,9]]]],[24368,24881,25461,25617,28041,28599,30589,31080,31085]]],["nor",[11,9,[[41,1,1,0,1,[[973,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]],[43,1,1,2,3,[[1030,1,1,2,3]]],[45,2,1,3,4,[[1071,2,1,3,4]]],[47,1,1,4,5,[[1093,1,1,4,5]]],[48,1,1,5,6,[[1101,1,1,5,6]]],[50,2,1,6,7,[[1109,2,1,6,7]]],[57,1,1,7,8,[[1144,1,1,7,8]]],[65,1,1,8,9,[[1180,1,1,8,9]]]],[24908,26620,27389,28599,29130,29308,29528,30230,30937]]],["of",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27616]]],["or",[10,10,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[984,1,1,2,3]]],[43,3,3,3,6,[[1026,1,1,3,4],[1034,1,1,4,5],[1042,1,1,5,6]]],[46,1,1,6,7,[[1090,1,1,6,7]]],[58,1,1,7,8,[[1149,1,1,7,8]]],[65,2,2,8,10,[[1186,1,1,8,9],[1187,1,1,9,10]]]],[23307,25416,25497,27218,27544,27807,29044,30350,31042,31080]]],["shall",[2,2,[[58,1,1,0,1,[[1149,1,1,0,1]]],[65,1,1,1,2,[[1180,1,1,1,2]]]],[30352,30936]]],["should",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26645]]],["so",[10,10,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,3,3,2,5,[[1002,1,1,2,3],[1009,1,1,3,4],[1011,1,1,4,5]]],[43,1,1,5,6,[[1024,1,1,5,6]]],[44,1,1,6,7,[[1056,1,1,6,7]]],[47,1,1,7,8,[[1091,1,1,7,8]]],[59,1,1,8,9,[[1151,1,1,8,9]]],[61,1,1,9,10,[[1162,1,1,9,10]]]],[24193,25407,26314,26663,26707,27167,28225,29066,30389,30620]]],["that",[16,16,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,11,11,1,12,[[975,1,1,1,2],[977,1,1,2,3],[980,2,2,3,5],[981,1,1,5,6],[982,1,1,6,7],[983,1,1,7,8],[986,1,1,8,9],[989,1,1,9,10],[991,2,2,10,12]]],[43,1,1,12,13,[[1025,1,1,12,13]]],[44,1,1,13,14,[[1053,1,1,13,14]]],[46,1,1,14,15,[[1082,1,1,14,15]]],[60,1,1,15,16,[[1156,1,1,15,16]]]],[24577,25045,25124,25246,25267,25352,25401,25453,25554,25662,25754,25774,27215,28150,28880,30494]]],["the",[2,2,[[45,1,1,0,1,[[1062,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]]],[28385,29153]]],["then",[10,10,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,4,4,2,6,[[990,1,1,2,3],[991,2,2,3,5],[992,1,1,5,6]]],[44,1,1,6,7,[[1053,1,1,6,7]]],[45,1,1,7,8,[[1076,1,1,7,8]]],[47,1,1,8,9,[[1094,1,1,8,9]]],[61,1,1,9,10,[[1159,1,1,9,10]]]],[23950,24614,25714,25746,25754,25823,28133,28747,29138,30545]]],["therefore",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28943]]],["they",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]]],[24444,29787,30050]]],["thou",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24824]]],["though",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]]],[24114,25695]]],["to",[2,2,[[42,1,1,0,1,[[1001,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[26236,27625]]],["us",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30016]]],["verily",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29594]]],["very",[4,4,[[39,2,2,0,2,[[938,1,1,0,1],[952,1,1,1,2]]],[41,2,2,2,4,[[981,1,1,2,3],[984,1,1,3,4]]]],[23447,23981,25306,25518]]],["was",[2,2,[[43,1,1,0,1,[[1039,1,1,0,1]]],[57,1,1,1,2,[[1137,1,1,1,2]]]],[27732,30034]]],["we",[3,3,[[43,1,1,0,1,[[1038,1,1,0,1]]],[46,2,2,1,3,[[1082,2,2,1,3]]]],[27667,28879,28886]]],["were",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27353]]],["when",[7,7,[[40,1,1,0,1,[[962,1,1,0,1]]],[42,1,1,1,2,[[1016,1,1,1,2]]],[43,2,2,2,4,[[1022,1,1,2,3],[1044,1,1,3,4]]],[46,1,1,4,5,[[1084,1,1,4,5]]],[57,2,2,5,7,[[1137,1,1,5,6],[1140,1,1,6,7]]]],[24429,26886,27066,27885,28921,30042,30100]]],["which",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25639]]],["who",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1031,1,1,1,2]]]],[25119,27433]]],["will",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28810]]],["with",[5,5,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[43,2,2,2,4,[[1035,1,1,2,3],[1036,1,1,3,4]]],[46,1,1,4,5,[[1083,1,1,4,5]]]],[24634,25267,27559,27610,28912]]],["withal",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27823]]],["yea",[3,3,[[42,1,1,0,1,[[1012,1,1,0,1]]],[43,1,1,1,2,[[1020,1,1,1,2]]],[45,1,1,2,3,[[1063,1,1,2,3]]]],[26758,27012,28404]]],["yet",[7,7,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]],[43,1,1,3,4,[[1024,1,1,3,4]]],[44,1,1,4,5,[[1053,1,1,4,5]]],[47,1,1,5,6,[[1093,1,1,5,6]]],[49,1,1,6,7,[[1103,1,1,6,7]]]],[23308,25045,26921,27121,28140,29106,29383]]]]},{"k":"G2533","v":[["Caiaphas",[9,9,[[39,2,2,0,2,[[954,2,2,0,2]]],[41,1,1,2,3,[[975,1,1,2,3]]],[42,5,5,3,8,[[1007,1,1,3,4],[1014,4,4,4,8]]],[43,1,1,8,9,[[1021,1,1,8,9]]]],[24057,24111,25027,26572,26798,26799,26809,26813,27028]]]]},{"k":"G2534","v":[]},{"k":"G2535","v":[["Cain",[3,3,[[57,1,1,0,1,[[1143,1,1,0,1]]],[61,1,1,1,2,[[1161,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[30176,30591,30683]]]]},{"k":"G2536","v":[["Cainan",[2,2,[[41,2,2,0,2,[[975,2,2,0,2]]]],[25061,25062]]]]},{"k":"G2537","v":[["*",[44,38,[[39,5,5,0,5,[[937,1,1,0,1],[941,1,1,1,2],[954,2,2,2,4],[955,1,1,4,5]]],[40,6,6,5,11,[[957,1,1,5,6],[958,2,2,6,8],[970,2,2,8,10],[972,1,1,10,11]]],[41,5,3,11,14,[[977,4,2,11,13],[994,1,1,13,14]]],[42,2,2,14,16,[[1009,1,1,14,15],[1015,1,1,15,16]]],[43,2,2,16,18,[[1034,2,2,16,18]]],[45,1,1,18,19,[[1072,1,1,18,19]]],[46,3,2,19,21,[[1080,1,1,19,20],[1082,2,1,20,21]]],[47,1,1,21,22,[[1096,1,1,21,22]]],[48,2,2,22,24,[[1098,1,1,22,23],[1100,1,1,23,24]]],[57,3,3,24,27,[[1140,2,2,24,26],[1141,1,1,26,27]]],[60,2,1,27,28,[[1158,2,1,27,28]]],[61,2,2,28,30,[[1160,2,2,28,30]]],[62,1,1,30,31,[[1164,1,1,30,31]]],[65,9,7,31,38,[[1168,1,1,31,32],[1169,2,1,32,33],[1171,1,1,33,34],[1180,1,1,34,35],[1187,4,3,35,38]]]],[23396,23591,24082,24083,24189,24242,24281,24282,24778,24779,24890,25143,25145,25884,26664,26866,27542,27544,28625,28847,28894,29203,29244,29296,30100,30105,30120,30535,30557,30558,30650,30734,30758,30788,30929,31054,31055,31058]]],["new",[42,36,[[39,5,5,0,5,[[937,1,1,0,1],[941,1,1,1,2],[954,2,2,2,4],[955,1,1,4,5]]],[40,5,5,5,10,[[957,1,1,5,6],[958,1,1,6,7],[970,2,2,7,9],[972,1,1,9,10]]],[41,5,3,10,13,[[977,4,2,10,12],[994,1,1,12,13]]],[42,2,2,13,15,[[1009,1,1,13,14],[1015,1,1,14,15]]],[43,1,1,15,16,[[1034,1,1,15,16]]],[45,1,1,16,17,[[1072,1,1,16,17]]],[46,3,2,17,19,[[1080,1,1,17,18],[1082,2,1,18,19]]],[47,1,1,19,20,[[1096,1,1,19,20]]],[48,2,2,20,22,[[1098,1,1,20,21],[1100,1,1,21,22]]],[57,3,3,22,25,[[1140,2,2,22,24],[1141,1,1,24,25]]],[60,2,1,25,26,[[1158,2,1,25,26]]],[61,2,2,26,28,[[1160,2,2,26,28]]],[62,1,1,28,29,[[1164,1,1,28,29]]],[65,9,7,29,36,[[1168,1,1,29,30],[1169,2,1,30,31],[1171,1,1,31,32],[1180,1,1,32,33],[1187,4,3,33,36]]]],[23396,23591,24082,24083,24189,24242,24282,24778,24779,24890,25143,25145,25884,26664,26866,27542,28625,28847,28894,29203,29244,29296,30100,30105,30120,30535,30557,30558,30650,30734,30758,30788,30929,31054,31055,31058]]],["piece",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24281]]],["thing",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27544]]]]},{"k":"G2538","v":[["newness",[2,2,[[44,2,2,0,2,[[1051,1,1,0,1],[1052,1,1,1,2]]]],[28072,28097]]]]},{"k":"G2539","v":[["*",[6,6,[[49,1,1,0,1,[[1105,1,1,0,1]]],[57,3,3,1,4,[[1137,1,1,1,2],[1139,1,1,2,3],[1144,1,1,3,4]]],[60,1,1,4,5,[[1156,1,1,4,5]]],[65,1,1,5,6,[[1183,1,1,5,6]]]],[29425,30038,30069,30229,30491,30983]]],["Though",[2,2,[[49,1,1,0,1,[[1105,1,1,0,1]]],[57,1,1,1,2,[[1137,1,1,1,2]]]],[29425,30038]]],["though",[3,3,[[57,2,2,0,2,[[1139,1,1,0,1],[1144,1,1,1,2]]],[60,1,1,2,3,[[1156,1,1,2,3]]]],[30069,30229,30491]]],["yet",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30983]]]]},{"k":"G2540","v":[["*",[86,81,[[39,10,10,0,10,[[936,1,1,0,1],[939,1,1,1,2],[940,1,1,2,3],[941,1,1,3,4],[942,1,1,4,5],[944,1,1,5,6],[949,2,2,6,8],[952,1,1,8,9],[954,1,1,9,10]]],[40,5,5,10,15,[[957,1,1,10,11],[966,1,1,11,12],[967,1,1,12,13],[968,1,1,13,14],[969,1,1,14,15]]],[41,13,12,15,27,[[973,1,1,15,16],[976,1,1,16,17],[980,2,1,17,18],[984,2,2,18,20],[985,1,1,20,21],[990,1,1,21,22],[991,1,1,22,23],[992,1,1,23,24],[993,3,3,24,27]]],[42,4,3,27,30,[[1001,1,1,27,28],[1003,3,2,28,30]]],[43,9,9,30,39,[[1018,1,1,30,31],[1020,1,1,31,32],[1024,1,1,32,33],[1029,1,1,33,34],[1030,1,1,34,35],[1031,1,1,35,36],[1034,1,1,36,37],[1036,1,1,37,38],[1041,1,1,38,39]]],[44,6,6,39,45,[[1048,1,1,39,40],[1050,1,1,40,41],[1053,1,1,41,42],[1054,1,1,42,43],[1056,1,1,43,44],[1058,1,1,44,45]]],[45,3,3,45,48,[[1065,1,1,45,46],[1068,2,2,46,48]]],[46,3,2,48,50,[[1083,2,1,48,49],[1085,1,1,49,50]]],[47,3,3,50,53,[[1094,1,1,50,51],[1096,2,2,51,53]]],[48,4,4,53,57,[[1097,1,1,53,54],[1098,1,1,54,55],[1101,1,1,55,56],[1102,1,1,56,57]]],[50,1,1,57,58,[[1110,1,1,57,58]]],[51,2,2,58,60,[[1112,1,1,58,59],[1115,1,1,59,60]]],[52,1,1,60,61,[[1117,1,1,60,61]]],[53,3,3,61,64,[[1120,1,1,61,62],[1122,1,1,62,63],[1124,1,1,63,64]]],[54,3,3,64,67,[[1127,1,1,64,65],[1128,2,2,65,67]]],[55,1,1,67,68,[[1129,1,1,67,68]]],[57,4,4,68,72,[[1141,2,2,68,70],[1143,2,2,70,72]]],[59,4,4,72,76,[[1151,2,2,72,74],[1154,1,1,74,75],[1155,1,1,75,76]]],[65,7,5,76,81,[[1167,1,1,76,77],[1177,1,1,77,78],[1178,4,2,78,80],[1188,1,1,80,81]]]],[23374,23484,23490,23569,23598,23675,23860,23867,24002,24072,24230,24618,24653,24675,24750,24913,25076,25258,25501,25515,25519,25718,25775,25789,25834,25850,25862,26214,26334,26336,26930,27015,27136,27338,27373,27431,27549,27608,27794,28017,28053,28134,28164,28214,28277,28438,28492,28516,28900,28946,29141,29197,29198,29216,29241,29320,29355,29547,29587,29622,29667,29722,29748,29803,29854,29873,29876,29895,30114,30115,30183,30187,30379,30385,30463,30471,30700,30890,30903,30905,31090]]],["+",[6,6,[[41,2,2,0,2,[[976,1,1,0,1],[993,1,1,1,2]]],[42,1,1,2,3,[[1001,1,1,2,3]]],[48,1,1,3,4,[[1102,1,1,3,4]]],[51,1,1,4,5,[[1112,1,1,4,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]]],[25076,25862,26214,29355,29587,30183]]],["opportunity",[2,2,[[47,1,1,0,1,[[1096,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[29198,30187]]],["season",[9,9,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,4,4,2,6,[[973,1,1,2,3],[984,1,1,3,4],[985,1,1,4,5],[992,1,1,5,6]]],[43,2,2,6,8,[[1030,1,1,6,7],[1041,1,1,7,8]]],[47,1,1,8,9,[[1096,1,1,8,9]]]],[24002,24675,24913,25501,25519,25789,27373,27794,29197]]],["seasons",[4,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[43,2,2,1,3,[[1018,1,1,1,2],[1031,1,1,2,3]]],[51,1,1,3,4,[[1115,1,1,3,4]]]],[23867,26930,27431,29622]]],["time",[53,50,[[39,7,7,0,7,[[936,1,1,0,1],[939,1,1,1,2],[940,1,1,2,3],[941,1,1,3,4],[942,1,1,4,5],[949,1,1,5,6],[954,1,1,6,7]]],[40,4,4,7,11,[[957,1,1,7,8],[966,1,1,8,9],[967,1,1,9,10],[969,1,1,10,11]]],[41,5,5,11,16,[[980,1,1,11,12],[984,1,1,12,13],[990,1,1,13,14],[991,1,1,14,15],[993,1,1,15,16]]],[42,3,2,16,18,[[1003,3,2,16,18]]],[43,3,3,18,21,[[1024,1,1,18,19],[1029,1,1,19,20],[1036,1,1,20,21]]],[44,6,6,21,27,[[1048,1,1,21,22],[1050,1,1,22,23],[1053,1,1,23,24],[1054,1,1,24,25],[1056,1,1,25,26],[1058,1,1,26,27]]],[45,3,3,27,30,[[1065,1,1,27,28],[1068,2,2,28,30]]],[46,3,2,30,32,[[1083,2,1,30,31],[1085,1,1,31,32]]],[48,2,2,32,34,[[1098,1,1,32,33],[1101,1,1,33,34]]],[50,1,1,34,35,[[1110,1,1,34,35]]],[52,1,1,35,36,[[1117,1,1,35,36]]],[53,1,1,36,37,[[1120,1,1,36,37]]],[54,2,2,37,39,[[1128,2,2,37,39]]],[57,2,2,39,41,[[1141,2,2,39,41]]],[59,4,4,41,45,[[1151,2,2,41,43],[1154,1,1,43,44],[1155,1,1,44,45]]],[65,6,5,45,50,[[1167,1,1,45,46],[1177,1,1,46,47],[1178,3,2,47,49],[1188,1,1,49,50]]]],[23374,23484,23490,23569,23598,23860,24072,24230,24618,24653,24750,25258,25515,25718,25775,25834,26334,26336,27136,27338,27608,28017,28053,28134,28164,28214,28277,28438,28492,28516,28900,28946,29241,29320,29547,29667,29722,29873,29876,30114,30115,30379,30385,30463,30471,30700,30890,30903,30905,31090]]],["times",[11,11,[[39,1,1,0,1,[[944,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]],[43,2,2,2,4,[[1020,1,1,2,3],[1034,1,1,3,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]],[48,1,1,5,6,[[1097,1,1,5,6]]],[53,2,2,6,8,[[1122,1,1,6,7],[1124,1,1,7,8]]],[54,1,1,8,9,[[1127,1,1,8,9]]],[55,1,1,9,10,[[1129,1,1,9,10]]],[65,1,1,10,11,[[1178,1,1,10,11]]]],[23675,25850,27015,27549,29141,29216,29748,29803,29854,29895,30905]]],["while",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25258]]]]},{"k":"G2541","v":[["*",[30,24,[[39,4,2,0,2,[[950,4,2,0,2]]],[40,4,3,2,5,[[968,4,3,2,5]]],[41,7,6,5,11,[[974,1,1,5,6],[975,1,1,6,7],[992,4,3,7,10],[995,1,1,10,11]]],[42,3,2,11,13,[[1015,3,2,11,13]]],[43,11,10,13,23,[[1028,1,1,13,14],[1034,1,1,14,15],[1042,6,5,15,20],[1043,1,1,20,21],[1044,1,1,21,22],[1045,1,1,22,23]]],[49,1,1,23,24,[[1106,1,1,23,24]]]],[23889,23893,24687,24689,24690,24974,25026,25801,25803,25804,25937,26837,26840,27335,27530,27804,27806,27807,27808,27817,27855,27879,27918,29464]]],["Caesar",[21,20,[[39,2,2,0,2,[[950,2,2,0,2]]],[40,2,2,2,4,[[968,2,2,2,4]]],[41,5,5,4,9,[[974,1,1,4,5],[975,1,1,5,6],[992,2,2,6,8],[995,1,1,8,9]]],[42,2,2,9,11,[[1015,2,2,9,11]]],[43,10,9,11,20,[[1028,1,1,11,12],[1034,1,1,12,13],[1042,5,4,13,17],[1043,1,1,17,18],[1044,1,1,18,19],[1045,1,1,19,20]]]],[23889,23893,24687,24690,24974,25026,25801,25804,25937,26837,26840,27335,27530,27804,27807,27808,27817,27855,27879,27918]]],["Caesar's",[9,8,[[39,2,1,0,1,[[950,2,1,0,1]]],[40,2,2,1,3,[[968,2,2,1,3]]],[41,2,2,3,5,[[992,2,2,3,5]]],[42,1,1,5,6,[[1015,1,1,5,6]]],[43,1,1,6,7,[[1042,1,1,6,7]]],[49,1,1,7,8,[[1106,1,1,7,8]]]],[23893,24689,24690,25803,25804,26837,27806,29464]]]]},{"k":"G2542","v":[["Caesarea",[17,17,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[43,15,15,2,17,[[1025,1,1,2,3],[1026,1,1,3,4],[1027,2,2,4,6],[1028,1,1,6,7],[1029,1,1,7,8],[1035,1,1,8,9],[1038,2,2,9,11],[1040,2,2,11,13],[1042,4,4,13,17]]]],[23685,24527,27216,27246,27260,27283,27318,27356,27579,27672,27680,27757,27767,27797,27800,27802,27809]]]]},{"k":"G2543","v":[["*",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[57,1,1,1,2,[[1136,1,1,1,2]]]],[25513,30017]]],["although",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30017]]],["and",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25513]]]]},{"k":"G2544","v":[["*",[3,3,[[42,1,1,0,1,[[1000,1,1,0,1]]],[43,2,2,1,3,[[1031,1,1,1,2],[1034,1,1,2,3]]]],[26158,27431,27550]]],["Nevertheless",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27431]]],["Though",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26158]]],["though",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27550]]]]},{"k":"G2545","v":[["*",[12,12,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[996,1,1,2,3]]],[42,2,2,3,5,[[1001,1,1,3,4],[1011,1,1,4,5]]],[45,1,1,5,6,[[1074,1,1,5,6]]],[57,1,1,6,7,[[1144,1,1,6,7]]],[65,5,5,7,12,[[1170,1,1,7,8],[1174,2,2,8,10],[1185,1,1,10,11],[1187,1,1,11,12]]]],[23249,25494,26023,26245,26705,28668,30230,30773,30835,30837,31037,31061]]],["+",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26023]]],["burned",[3,3,[[42,1,1,0,1,[[1011,1,1,0,1]]],[45,1,1,1,2,[[1074,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[26705,28668,30230]]],["burneth",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31061]]],["burning",[6,6,[[41,1,1,0,1,[[984,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[65,4,4,2,6,[[1170,1,1,2,3],[1174,2,2,3,5],[1185,1,1,5,6]]]],[25494,26245,30773,30835,30837,31037]]],["light",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23249]]]]},{"k":"G2546","v":[["*",[11,11,[[39,3,3,0,3,[[933,1,1,0,1],[938,1,1,1,2],[956,1,1,2,3]]],[40,2,2,3,5,[[957,2,2,3,5]]],[42,1,1,5,6,[[1007,1,1,5,6]]],[43,5,5,6,11,[[1031,1,1,6,7],[1034,1,1,7,8],[1039,1,1,8,9],[1042,1,1,9,10],[1044,1,1,10,11]]]],[23257,23428,24205,24250,24253,26577,27421,27536,27714,27816,27861]]],["also",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]]],[24253,27536]]],["there",[9,9,[[39,3,3,0,3,[[933,1,1,0,1],[938,1,1,1,2],[956,1,1,2,3]]],[40,1,1,3,4,[[957,1,1,3,4]]],[42,1,1,4,5,[[1007,1,1,4,5]]],[43,4,4,5,9,[[1031,1,1,5,6],[1039,1,1,6,7],[1042,1,1,7,8],[1044,1,1,8,9]]]],[23257,23428,24205,24250,26577,27421,27714,27816,27861]]]]},{"k":"G2547","v":[["*",[9,9,[[40,1,1,0,1,[[966,1,1,0,1]]],[43,8,8,1,9,[[1024,1,1,1,2],[1030,1,1,2,3],[1031,1,1,3,4],[1037,1,1,4,5],[1038,1,1,5,6],[1044,2,2,6,8],[1045,1,1,8,9]]]],[24589,27120,27383,27440,27641,27665,27859,27867,27914]]],["+",[3,3,[[40,1,1,0,1,[[966,1,1,0,1]]],[43,2,2,1,3,[[1037,1,1,1,2],[1044,1,1,2,3]]]],[24589,27641,27859]]],["afterward",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27383]]],["also",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27867]]],["thence",[4,4,[[43,4,4,0,4,[[1024,1,1,0,1],[1031,1,1,1,2],[1038,1,1,2,3],[1045,1,1,3,4]]]],[27120,27440,27665,27914]]]]},{"k":"G2548","v":[["*",[23,23,[[39,3,3,0,3,[[943,1,1,0,1],[948,1,1,1,2],[951,1,1,2,3]]],[40,4,4,3,7,[[968,2,2,3,5],[972,2,2,5,7]]],[41,4,4,7,11,[[983,2,2,7,9],[992,1,1,9,10],[994,1,1,10,11]]],[42,6,6,11,17,[[1002,1,1,11,12],[1003,1,1,12,13],[1006,1,1,13,14],[1010,1,1,14,15],[1013,1,1,15,16],[1015,1,1,16,17]]],[43,3,3,17,20,[[1022,1,1,17,18],[1032,1,1,18,19],[1035,1,1,19,20]]],[45,1,1,20,21,[[1071,1,1,20,21]]],[54,1,1,21,22,[[1126,1,1,21,22]]],[57,1,1,22,23,[[1136,1,1,22,23]]]],[23651,23796,23941,24677,24678,24884,24886,25412,25447,25790,25876,26314,26357,26497,26680,26783,26860,27096,27453,27576,28573,29839,30016]]],["+",[5,5,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,1,1,2,3,[[1010,1,1,2,3]]],[43,2,2,3,5,[[1032,1,1,3,4],[1035,1,1,4,5]]]],[23796,25447,26680,27453,27576]]],["also",[6,6,[[41,1,1,0,1,[[992,1,1,0,1]]],[42,2,2,1,3,[[1006,1,1,1,2],[1013,1,1,2,3]]],[43,1,1,3,4,[[1022,1,1,3,4]]],[45,1,1,4,5,[[1071,1,1,4,5]]],[54,1,1,5,6,[[1126,1,1,5,6]]]],[25790,26497,26783,27096,28573,29839]]],["he",[5,5,[[41,2,2,0,2,[[983,1,1,0,1],[994,1,1,1,2]]],[42,3,3,2,5,[[1002,1,1,2,3],[1003,1,1,3,4],[1015,1,1,4,5]]]],[25412,25876,26314,26357,26860]]],["him",[2,2,[[40,2,2,0,2,[[968,2,2,0,2]]]],[24677,24678]]],["other",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23941]]],["them",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30016]]],["they",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[972,2,2,1,3]]]],[23651,24884,24886]]]]},{"k":"G2549","v":[["*",[11,11,[[39,1,1,0,1,[[934,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[45,2,2,3,5,[[1066,1,1,3,4],[1075,1,1,4,5]]],[48,1,1,5,6,[[1100,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[55,1,1,7,8,[[1131,1,1,7,8]]],[58,1,1,8,9,[[1146,1,1,8,9]]],[59,2,2,9,11,[[1152,2,2,9,11]]]],[23316,27198,27959,28462,28698,29303,29525,29926,30287,30400,30415]]],["evil",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23316]]],["malice",[6,6,[[45,2,2,0,2,[[1066,1,1,0,1],[1075,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]],[50,1,1,3,4,[[1109,1,1,3,4]]],[55,1,1,4,5,[[1131,1,1,4,5]]],[59,1,1,5,6,[[1152,1,1,5,6]]]],[28462,28698,29303,29525,29926,30400]]],["maliciousness",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[27959,30415]]],["naughtiness",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30287]]],["wickedness",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27198]]]]},{"k":"G2550","v":[["malignity",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27959]]]]},{"k":"G2551","v":[["*",[4,4,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[963,1,1,1,2],[965,1,1,2,3]]],[43,1,1,3,4,[[1036,1,1,3,4]]]],[23637,24473,24577,27594]]],["curseth",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[23637,24473]]],["evil",[2,2,[[40,1,1,0,1,[[965,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[24577,27594]]]]},{"k":"G2552","v":[["affliction",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30364]]]]},{"k":"G2553","v":[["*",[4,4,[[54,3,3,0,3,[[1126,2,2,0,2],[1128,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]]],[29830,29836,29875,30367]]],["+",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30367]]],["afflictions",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29875]]],["hardness",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29830]]],["trouble",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29836]]]]},{"k":"G2554","v":[["*",[4,4,[[40,1,1,0,1,[[959,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]],[63,1,1,3,4,[[1165,1,1,3,4]]]],[24292,25155,30441,30669]]],["doing",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30441]]],["evil",[3,3,[[40,1,1,0,1,[[959,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[63,1,1,2,3,[[1165,1,1,2,3]]]],[24292,25155,30669]]]]},{"k":"G2555","v":[["*",[5,5,[[42,1,1,0,1,[[1014,1,1,0,1]]],[59,4,4,1,5,[[1152,2,2,1,3],[1153,1,1,3,4],[1154,1,1,4,5]]]],[26815,30411,30413,30440,30461]]],["evildoer",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30461]]],["evildoers",[3,3,[[59,3,3,0,3,[[1152,2,2,0,2],[1153,1,1,2,3]]]],[30411,30413,30440]]],["malefactor",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26815]]]]},{"k":"G2556","v":[["*",[51,46,[[39,3,3,0,3,[[949,1,1,0,1],[952,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[963,1,1,3,4],[971,1,1,4,5]]],[41,2,2,5,7,[[988,1,1,5,6],[995,1,1,6,7]]],[42,1,1,7,8,[[1014,1,1,7,8]]],[43,4,4,8,12,[[1026,1,1,8,9],[1033,1,1,9,10],[1040,1,1,10,11],[1045,1,1,11,12]]],[44,16,13,12,25,[[1046,1,1,12,13],[1047,1,1,13,14],[1048,1,1,14,15],[1052,2,2,15,17],[1054,1,1,17,18],[1057,4,2,18,20],[1058,4,3,20,23],[1059,1,1,23,24],[1061,1,1,24,25]]],[45,3,3,25,28,[[1071,1,1,25,26],[1074,1,1,26,27],[1076,1,1,27,28]]],[46,2,2,28,30,[[1082,1,1,28,29],[1090,1,1,29,30]]],[49,1,1,30,31,[[1105,1,1,30,31]]],[50,1,1,31,32,[[1109,1,1,31,32]]],[51,2,1,32,33,[[1115,2,1,32,33]]],[53,1,1,33,34,[[1124,1,1,33,34]]],[54,1,1,34,35,[[1128,1,1,34,35]]],[55,1,1,35,36,[[1129,1,1,35,36]]],[57,1,1,36,37,[[1137,1,1,36,37]]],[58,2,2,37,39,[[1146,1,1,37,38],[1148,1,1,38,39]]],[59,5,4,39,43,[[1153,5,4,39,43]]],[63,1,1,43,44,[[1165,1,1,43,44]]],[65,2,2,44,46,[[1168,1,1,44,45],[1182,1,1,45,46]]]],[23867,24005,24152,24484,24840,25645,25957,26808,27229,27511,27743,27904,27960,27971,27999,28110,28112,28166,28262,28266,28269,28270,28276,28300,28355,28573,28670,28751,28887,29050,29423,29522,29636,29798,29884,29904,30044,30279,30327,30433,30434,30435,30436,30669,30719,30956]]],["bad",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28887]]],["evil",[42,37,[[39,2,2,0,2,[[952,1,1,0,1],[955,1,1,1,2]]],[40,2,2,2,4,[[963,1,1,2,3],[971,1,1,3,4]]],[41,1,1,4,5,[[995,1,1,4,5]]],[42,1,1,5,6,[[1014,1,1,5,6]]],[43,2,2,6,8,[[1026,1,1,6,7],[1040,1,1,7,8]]],[44,14,11,8,19,[[1047,1,1,8,9],[1048,1,1,9,10],[1052,2,2,10,12],[1054,1,1,12,13],[1057,4,2,13,15],[1058,3,2,15,17],[1059,1,1,17,18],[1061,1,1,18,19]]],[45,2,2,19,21,[[1074,1,1,19,20],[1076,1,1,20,21]]],[46,1,1,21,22,[[1090,1,1,21,22]]],[49,1,1,22,23,[[1105,1,1,22,23]]],[50,1,1,23,24,[[1109,1,1,23,24]]],[51,2,1,24,25,[[1115,2,1,24,25]]],[53,1,1,25,26,[[1124,1,1,25,26]]],[54,1,1,26,27,[[1128,1,1,26,27]]],[55,1,1,27,28,[[1129,1,1,27,28]]],[57,1,1,28,29,[[1137,1,1,28,29]]],[58,2,2,29,31,[[1146,1,1,29,30],[1148,1,1,30,31]]],[59,5,4,31,35,[[1153,5,4,31,35]]],[63,1,1,35,36,[[1165,1,1,35,36]]],[65,1,1,36,37,[[1168,1,1,36,37]]]],[24005,24152,24484,24840,25957,26808,27229,27743,27971,27999,28110,28112,28166,28262,28266,28269,28270,28300,28355,28670,28751,29050,29423,29522,29636,29798,29884,29904,30044,30279,30327,30433,30434,30435,30436,30669,30719]]],["harm",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1045,1,1,1,2]]]],[27511,27904]]],["ill",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28276]]],["men",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23867]]],["noisome",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30956]]],["things",[3,3,[[41,1,1,0,1,[[988,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[45,1,1,2,3,[[1071,1,1,2,3]]]],[25645,27960,28573]]]]},{"k":"G2557","v":[["*",[4,4,[[41,3,3,0,3,[[995,3,3,0,3]]],[54,1,1,3,4,[[1126,1,1,3,4]]]],[25967,25968,25974,29836]]],["doer",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29836]]],["malefactors",[3,3,[[41,3,3,0,3,[[995,3,3,0,3]]]],[25967,25968,25974]]]]},{"k":"G2558","v":[["*",[2,2,[[57,2,2,0,2,[[1143,1,1,0,1],[1145,1,1,1,2]]]],[30209,30244]]],["adversity",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30244]]],["tormented",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30209]]]]},{"k":"G2559","v":[["*",[6,6,[[43,5,5,0,5,[[1024,2,2,0,2],[1029,1,1,2,3],[1031,1,1,3,4],[1035,1,1,4,5]]],[59,1,1,5,6,[[1153,1,1,5,6]]]],[27122,27135,27338,27416,27567,30437]]],["+",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27416]]],["entreated",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27135]]],["evil",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27122]]],["harm",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30437]]],["hurt",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27567]]],["vex",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27338]]]]},{"k":"G2560","v":[["*",[16,16,[[39,7,7,0,7,[[932,1,1,0,1],[936,1,1,1,2],[937,1,1,2,3],[942,1,1,3,4],[943,1,1,4,5],[945,1,1,5,6],[949,1,1,6,7]]],[40,4,4,7,11,[[957,2,2,7,9],[958,1,1,9,10],[962,1,1,10,11]]],[41,2,2,11,13,[[977,1,1,11,12],[979,1,1,12,13]]],[42,1,1,13,14,[[1014,1,1,13,14]]],[43,1,1,14,15,[[1040,1,1,14,15]]],[58,1,1,15,16,[[1149,1,1,15,16]]]],[23233,23361,23391,23632,23655,23715,23867,24247,24249,24277,24462,25138,25197,26808,27739,30340]]],["+",[10,10,[[39,4,4,0,4,[[932,1,1,0,1],[936,1,1,1,2],[937,1,1,2,3],[942,1,1,3,4]]],[40,4,4,4,8,[[957,2,2,4,6],[958,1,1,6,7],[962,1,1,7,8]]],[41,2,2,8,10,[[977,1,1,8,9],[979,1,1,9,10]]]],[23233,23361,23391,23632,24247,24249,24277,24462,25138,25197]]],["amiss",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30340]]],["evil",[2,2,[[42,1,1,0,1,[[1014,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[26808,27739]]],["grievously",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23655]]],["miserably",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23867]]],["sore",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23715]]]]},{"k":"G2561","v":[["affliction",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27150]]]]},{"k":"G2562","v":[["stubble",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28422]]]]},{"k":"G2563","v":[["*",[12,12,[[39,5,5,0,5,[[939,1,1,0,1],[940,1,1,1,2],[955,3,3,2,5]]],[40,2,2,5,7,[[971,2,2,5,7]]],[41,1,1,7,8,[[979,1,1,7,8]]],[63,1,1,8,9,[[1165,1,1,8,9]]],[65,3,3,9,12,[[1177,1,1,9,10],[1187,2,2,10,12]]]],[23466,23509,24158,24159,24177,24845,24862,25219,30671,30873,31068,31069]]],["pen",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30671]]],["reed",[11,11,[[39,5,5,0,5,[[939,1,1,0,1],[940,1,1,1,2],[955,3,3,2,5]]],[40,2,2,5,7,[[971,2,2,5,7]]],[41,1,1,7,8,[[979,1,1,7,8]]],[65,3,3,8,11,[[1177,1,1,8,9],[1187,2,2,9,11]]]],[23466,23509,24158,24159,24177,24845,24862,25219,30873,31068,31069]]]]},{"k":"G2564","v":[["*",[146,138,[[39,27,25,0,25,[[929,3,3,0,3],[930,3,3,3,6],[932,1,1,6,7],[933,3,2,7,9],[937,1,1,9,10],[938,1,1,10,11],[948,1,1,11,12],[949,1,1,12,13],[950,7,6,13,19],[951,4,4,19,23],[953,1,1,23,24],[955,1,1,24,25]]],[40,3,3,25,28,[[957,1,1,25,26],[958,1,1,26,27],[967,1,1,27,28]]],[41,42,39,28,67,[[973,10,10,28,38],[974,4,3,38,41],[977,1,1,41,42],[978,2,2,42,44],[979,2,2,44,46],[980,1,1,46,47],[981,1,1,47,48],[982,1,1,48,49],[986,11,9,49,58],[987,2,2,58,60],[991,3,3,60,63],[992,1,1,63,64],[993,1,1,64,65],[994,1,1,65,66],[995,1,1,66,67]]],[42,3,3,67,70,[[997,1,1,67,68],[998,1,1,68,69],[1006,1,1,69,70]]],[43,16,16,70,86,[[1018,3,3,70,73],[1020,1,1,73,74],[1021,1,1,74,75],[1024,1,1,75,76],[1026,1,1,76,77],[1027,1,1,77,78],[1030,1,1,78,79],[1031,1,1,79,80],[1032,1,1,80,81],[1041,1,1,81,82],[1044,3,3,82,85],[1045,1,1,85,86]]],[44,8,7,86,93,[[1049,1,1,86,87],[1053,2,1,87,88],[1054,5,5,88,93]]],[45,12,10,93,103,[[1062,1,1,93,94],[1068,9,7,94,101],[1071,1,1,101,102],[1076,1,1,102,103]]],[47,4,4,103,107,[[1091,2,2,103,105],[1095,2,2,105,107]]],[48,2,2,107,109,[[1100,2,2,107,109]]],[50,1,1,109,110,[[1109,1,1,109,110]]],[51,3,3,110,113,[[1112,1,1,110,111],[1114,1,1,111,112],[1115,1,1,112,113]]],[52,1,1,113,114,[[1117,1,1,113,114]]],[53,1,1,114,115,[[1124,1,1,114,115]]],[54,1,1,115,116,[[1125,1,1,115,116]]],[57,6,6,116,122,[[1134,1,1,116,117],[1135,1,1,117,118],[1137,1,1,118,119],[1141,1,1,119,120],[1143,2,2,120,122]]],[58,1,1,122,123,[[1147,1,1,122,123]]],[59,6,6,123,129,[[1151,1,1,123,124],[1152,2,2,124,126],[1153,2,2,126,128],[1155,1,1,128,129]]],[60,1,1,129,130,[[1156,1,1,129,130]]],[61,1,1,130,131,[[1161,1,1,130,131]]],[65,7,7,131,138,[[1167,1,1,131,132],[1177,1,1,132,133],[1178,1,1,133,134],[1182,1,1,134,135],[1185,3,3,135,138]]]],[23165,23167,23169,23176,23184,23192,23230,23243,23253,23392,23442,23800,23839,23875,23876,23880,23881,23915,23917,23925,23926,23927,23928,24022,24137,24235,24277,24657,24906,24924,24925,24928,24929,24952,24953,24954,24955,24969,24977,24994,24996,25139,25161,25192,25206,25234,25247,25311,25402,25560,25561,25562,25563,25565,25566,25569,25570,25577,25607,25609,25733,25744,25760,25823,25863,25889,25968,26086,26097,26484,26935,26942,26946,27007,27040,27174,27227,27260,27363,27426,27479,27771,27863,27869,27871,27900,28039,28146,28162,28166,28179,28180,28181,28372,28502,28504,28505,28507,28508,28509,28511,28594,28727,29063,29072,29170,29175,29273,29276,29532,29582,29610,29645,29675,29800,29818,29988,30008,30034,30120,30180,30190,30316,30389,30408,30420,30430,30433,30475,30482,30580,30706,30880,30900,30970,31026,31028,31030]]],["+",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25733]]],["Call",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23800]]],["bade",[4,4,[[41,4,4,0,4,[[986,4,4,0,4]]]],[25562,25563,25565,25569]]],["bid",[2,2,[[39,1,1,0,1,[[950,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]]],[23881,28594]]],["bidden",[10,9,[[39,3,3,0,3,[[950,3,3,0,3]]],[41,7,6,3,9,[[979,1,1,3,4],[986,6,5,4,9]]]],[23875,23876,23880,25234,25560,25561,25563,25570,25577]]],["call",[15,15,[[39,7,7,0,7,[[929,2,2,0,2],[937,1,1,2,3],[950,3,3,3,6],[951,1,1,6,7]]],[40,1,1,7,8,[[958,1,1,7,8]]],[41,5,5,8,13,[[973,2,2,8,10],[977,1,1,10,11],[978,1,1,11,12],[986,1,1,12,13]]],[44,1,1,13,14,[[1054,1,1,13,14]]],[57,1,1,14,15,[[1134,1,1,14,15]]]],[23165,23167,23392,23875,23915,23917,23927,24277,24906,24924,25139,25192,25566,28180,29988]]],["called",[102,98,[[39,15,14,0,14,[[929,1,1,0,1],[930,3,3,1,4],[932,1,1,4,5],[933,3,2,5,7],[938,1,1,7,8],[949,1,1,8,9],[951,3,3,9,12],[953,1,1,12,13],[955,1,1,13,14]]],[40,2,2,14,16,[[957,1,1,14,15],[967,1,1,15,16]]],[41,23,23,16,39,[[973,8,8,16,24],[974,3,3,24,27],[978,1,1,27,28],[979,1,1,28,29],[980,1,1,29,30],[981,1,1,30,31],[982,1,1,31,32],[987,2,2,32,34],[991,2,2,34,36],[993,1,1,36,37],[994,1,1,37,38],[995,1,1,38,39]]],[42,2,2,39,41,[[997,1,1,39,40],[998,1,1,40,41]]],[43,13,13,41,54,[[1018,3,3,41,44],[1020,1,1,44,45],[1021,1,1,45,46],[1026,1,1,46,47],[1027,1,1,47,48],[1030,1,1,48,49],[1031,1,1,49,50],[1044,3,3,50,53],[1045,1,1,53,54]]],[44,5,4,54,58,[[1053,2,1,54,55],[1054,3,3,55,58]]],[45,11,9,58,67,[[1062,1,1,58,59],[1068,9,7,59,66],[1076,1,1,66,67]]],[47,3,3,67,70,[[1091,2,2,67,69],[1095,1,1,69,70]]],[48,2,2,70,72,[[1100,2,2,70,72]]],[50,1,1,72,73,[[1109,1,1,72,73]]],[51,2,2,73,75,[[1112,1,1,73,74],[1114,1,1,74,75]]],[52,1,1,75,76,[[1117,1,1,75,76]]],[53,1,1,76,77,[[1124,1,1,76,77]]],[54,1,1,77,78,[[1125,1,1,77,78]]],[57,5,5,78,83,[[1135,1,1,78,79],[1137,1,1,79,80],[1141,1,1,80,81],[1143,2,2,81,83]]],[58,1,1,83,84,[[1147,1,1,83,84]]],[59,5,5,84,89,[[1151,1,1,84,85],[1152,2,2,85,87],[1153,1,1,87,88],[1155,1,1,88,89]]],[60,1,1,89,90,[[1156,1,1,89,90]]],[61,1,1,90,91,[[1161,1,1,90,91]]],[65,7,7,91,98,[[1167,1,1,91,92],[1177,1,1,92,93],[1178,1,1,93,94],[1182,1,1,94,95],[1185,3,3,95,98]]]],[23169,23176,23184,23192,23230,23243,23253,23442,23839,23925,23926,23928,24022,24137,24235,24657,24925,24928,24929,24952,24953,24954,24955,24969,24977,24994,24996,25161,25206,25247,25311,25402,25607,25609,25744,25760,25863,25889,25968,26086,26097,26935,26942,26946,27007,27040,27227,27260,27363,27426,27863,27869,27871,27900,28146,28162,28179,28181,28372,28502,28504,28505,28507,28508,28509,28511,28727,29063,29072,29175,29273,29276,29532,29582,29610,29675,29800,29818,30008,30034,30120,30180,30190,30316,30389,30408,30420,30433,30475,30482,30580,30706,30880,30900,30970,31026,31028,31030]]],["calleth",[6,6,[[41,1,1,0,1,[[992,1,1,0,1]]],[42,1,1,1,2,[[1006,1,1,1,2]]],[44,2,2,2,4,[[1049,1,1,2,3],[1054,1,1,3,4]]],[47,1,1,4,5,[[1095,1,1,4,5]]],[51,1,1,5,6,[[1115,1,1,5,6]]]],[25823,26484,28039,28166,29170,29645]]],["calling",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30430]]],["forth",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27771]]],["name",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27174]]],["named",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24994]]],["was",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27479]]]]},{"k":"G2565","v":[["tree",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28233]]]]},{"k":"G2566","v":[["well",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27806]]]]},{"k":"G2567","v":[["things",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29911]]]]},{"k":"G2568","v":[["fair",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27863]]]]},{"k":"G2569","v":[["doing",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29691]]]]},{"k":"G2570","v":[["*",[101,90,[[39,21,20,0,20,[[931,1,1,0,1],[933,1,1,1,2],[935,3,3,2,5],[940,2,1,5,6],[941,8,8,6,14],[943,1,1,14,15],[945,1,1,15,16],[946,2,2,16,18],[954,2,2,18,20]]],[40,11,11,20,31,[[960,2,2,20,22],[963,1,1,22,23],[965,6,6,23,29],[970,2,2,29,31]]],[41,9,7,31,38,[[975,1,1,31,32],[978,3,2,32,34],[980,2,1,34,35],[981,1,1,35,36],[986,1,1,36,37],[993,1,1,37,38]]],[42,7,5,38,43,[[998,2,1,38,39],[1006,5,4,39,43]]],[44,5,5,43,48,[[1052,3,3,43,46],[1057,1,1,46,47],[1059,1,1,47,48]]],[45,6,5,48,53,[[1066,1,1,48,49],[1068,4,3,49,52],[1070,1,1,52,53]]],[46,2,2,53,55,[[1085,1,1,53,54],[1090,1,1,54,55]]],[47,3,2,55,57,[[1094,2,1,55,56],[1096,1,1,56,57]]],[51,1,1,57,58,[[1115,1,1,57,58]]],[53,17,15,58,73,[[1119,2,2,58,60],[1120,1,1,60,61],[1121,3,3,61,64],[1122,3,2,64,66],[1123,3,3,66,69],[1124,5,4,69,73]]],[54,3,3,73,76,[[1125,1,1,73,74],[1126,1,1,74,75],[1128,1,1,75,76]]],[55,5,4,76,80,[[1130,2,2,76,78],[1131,3,2,78,80]]],[57,5,5,80,85,[[1137,1,1,80,81],[1138,1,1,81,82],[1142,1,1,82,83],[1145,2,2,83,85]]],[58,3,3,85,88,[[1147,1,1,85,86],[1148,1,1,86,87],[1149,1,1,87,88]]],[59,3,2,88,90,[[1152,2,1,88,89],[1154,1,1,89,90]]]],[23202,23250,23333,23334,23335,23522,23547,23562,23563,23566,23576,23577,23584,23587,23659,23704,23735,23736,24064,24078,24331,24343,24490,24543,24580,24581,24583,24585,24588,24760,24775,25034,25184,25189,25260,25334,25587,25831,26105,26492,26495,26513,26514,28107,28109,28112,28262,28301,28460,28488,28495,28513,28555,28953,29050,29149,29197,29642,29704,29714,29719,29732,29738,29744,29751,29753,29767,29773,29788,29800,29801,29806,29807,29823,29830,29877,29915,29922,29931,29937,30044,30049,30157,30250,30259,30300,30332,30354,30411,30456]]],["+",[2,2,[[40,1,1,0,1,[[965,1,1,0,1]]],[44,1,1,1,2,[[1052,1,1,1,2]]]],[24580,28112]]],["better",[6,6,[[39,2,2,0,2,[[946,2,2,0,2]]],[40,3,3,2,5,[[965,3,3,2,5]]],[45,1,1,5,6,[[1070,1,1,5,6]]]],[23735,23736,24581,24583,24585,28555]]],["good",[80,71,[[39,17,16,0,16,[[931,1,1,0,1],[933,1,1,1,2],[935,3,3,2,5],[940,2,1,5,6],[941,7,7,6,13],[945,1,1,13,14],[954,2,2,14,16]]],[40,6,6,16,22,[[960,2,2,16,18],[965,2,2,18,20],[970,2,2,20,22]]],[41,7,6,22,28,[[975,1,1,22,23],[978,3,2,23,25],[980,1,1,25,26],[981,1,1,26,27],[986,1,1,27,28]]],[42,7,5,28,33,[[998,2,1,28,29],[1006,5,4,29,33]]],[44,3,3,33,36,[[1052,2,2,33,35],[1059,1,1,35,36]]],[45,5,4,36,40,[[1066,1,1,36,37],[1068,4,3,37,40]]],[47,2,1,40,41,[[1094,2,1,40,41]]],[51,1,1,41,42,[[1115,1,1,41,42]]],[53,17,15,42,57,[[1119,2,2,42,44],[1120,1,1,44,45],[1121,3,3,45,48],[1122,3,2,48,50],[1123,3,3,50,53],[1124,5,4,53,57]]],[54,2,2,57,59,[[1126,1,1,57,58],[1128,1,1,58,59]]],[55,5,4,59,63,[[1130,2,2,59,61],[1131,3,2,61,63]]],[57,4,4,63,67,[[1137,1,1,63,64],[1138,1,1,64,65],[1142,1,1,65,66],[1145,1,1,66,67]]],[58,2,2,67,69,[[1148,1,1,67,68],[1149,1,1,68,69]]],[59,2,2,69,71,[[1152,1,1,69,70],[1154,1,1,70,71]]]],[23202,23250,23333,23334,23335,23522,23547,23562,23563,23566,23576,23577,23587,23704,24064,24078,24331,24343,24543,24588,24760,24775,25034,25184,25189,25260,25334,25587,26105,26492,26495,26513,26514,28107,28109,28301,28460,28488,28495,28513,29149,29642,29704,29714,29719,29732,29738,29744,29751,29753,29767,29773,29788,29800,29801,29806,29807,29830,29877,29915,29922,29931,29937,30044,30049,30157,30259,30332,30354,30411,30456]]],["goodly",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]]],[23584,25831]]],["honest",[4,4,[[41,1,1,0,1,[[980,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]],[46,1,1,2,3,[[1090,1,1,2,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[25260,28262,29050,30411]]],["meet",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[23659,24490]]],["thing",[2,2,[[54,1,1,0,1,[[1125,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[29823,30250]]],["things",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28953]]],["well",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29197]]],["worthy",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30300]]]]},{"k":"G2571","v":[["vail",[4,4,[[46,4,4,0,4,[[1080,4,4,0,4]]]],[28854,28855,28856,28857]]]]},{"k":"G2572","v":[["*",[8,7,[[39,2,2,0,2,[[936,1,1,0,1],[938,1,1,1,2]]],[41,2,2,2,4,[[980,1,1,2,3],[995,1,1,3,4]]],[46,2,1,4,5,[[1081,2,1,4,5]]],[58,1,1,5,6,[[1150,1,1,5,6]]],[59,1,1,6,7,[[1154,1,1,6,7]]]],[23369,23443,25261,25965,28862,30374,30454]]],["Cover",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25965]]],["cover",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30454]]],["covered",[2,2,[[39,2,2,0,2,[[936,1,1,0,1],[938,1,1,1,2]]]],[23369,23443]]],["covereth",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25261]]],["hid",[2,1,[[46,2,1,0,1,[[1081,2,1,0,1]]]],[28862]]],["hide",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30374]]]]},{"k":"G2573","v":[["*",[36,36,[[39,3,3,0,3,[[933,1,1,0,1],[940,1,1,1,2],[943,1,1,2,3]]],[40,6,6,3,9,[[963,3,3,3,6],[968,2,2,6,8],[972,1,1,8,9]]],[41,3,3,9,12,[[978,2,2,9,11],[992,1,1,11,12]]],[42,4,4,12,16,[[1000,1,1,12,13],[1004,1,1,13,14],[1009,1,1,14,15],[1014,1,1,15,16]]],[43,2,2,16,18,[[1027,1,1,16,17],[1045,1,1,17,18]]],[44,1,1,18,19,[[1056,1,1,18,19]]],[45,3,3,19,22,[[1068,2,2,19,21],[1075,1,1,21,22]]],[46,1,1,22,23,[[1088,1,1,22,23]]],[47,2,2,23,25,[[1094,1,1,23,24],[1095,1,1,24,25]]],[49,1,1,25,26,[[1106,1,1,25,26]]],[53,4,4,26,30,[[1121,3,3,26,29],[1123,1,1,29,30]]],[57,1,1,30,31,[[1145,1,1,30,31]]],[58,3,3,31,34,[[1147,3,3,31,34]]],[60,1,1,34,35,[[1156,1,1,34,35]]],[63,1,1,35,36,[[1165,1,1,35,36]]]],[23278,23501,23640,24469,24472,24500,24701,24705,24891,25172,25173,25818,26173,26429,26643,26808,27292,27924,28229,28524,28525,28695,28993,29148,29169,29456,29735,29743,29744,29780,30259,30296,30301,30312,30498,30664]]],["+",[2,2,[[40,1,1,0,1,[[972,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[24891,30259]]],["Well",[4,4,[[40,2,2,0,2,[[963,1,1,0,1],[968,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]],[44,1,1,3,4,[[1056,1,1,3,4]]]],[24469,24705,27924,28229]]],["good",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]]],[23278,25173]]],["place",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30296]]],["well",[27,27,[[39,2,2,0,2,[[940,1,1,0,1],[943,1,1,1,2]]],[40,3,3,2,5,[[963,2,2,2,4],[968,1,1,4,5]]],[41,2,2,5,7,[[978,1,1,5,6],[992,1,1,6,7]]],[42,4,4,7,11,[[1000,1,1,7,8],[1004,1,1,8,9],[1009,1,1,9,10],[1014,1,1,10,11]]],[43,1,1,11,12,[[1027,1,1,11,12]]],[45,3,3,12,15,[[1068,2,2,12,14],[1075,1,1,14,15]]],[46,1,1,15,16,[[1088,1,1,15,16]]],[47,2,2,16,18,[[1094,1,1,16,17],[1095,1,1,17,18]]],[49,1,1,18,19,[[1106,1,1,18,19]]],[53,4,4,19,23,[[1121,3,3,19,22],[1123,1,1,22,23]]],[58,2,2,23,25,[[1147,2,2,23,25]]],[60,1,1,25,26,[[1156,1,1,25,26]]],[63,1,1,26,27,[[1165,1,1,26,27]]]],[23501,23640,24472,24500,24701,25172,25818,26173,26429,26643,26808,27292,28524,28525,28695,28993,29148,29169,29456,29735,29743,29744,29780,30301,30312,30498,30664]]]]},{"k":"G2574","v":[["*",[6,6,[[39,3,3,0,3,[[931,1,1,0,1],[947,1,1,1,2],[951,1,1,2,3]]],[40,2,2,3,5,[[957,1,1,3,4],[966,1,1,4,5]]],[41,1,1,5,6,[[990,1,1,5,6]]]],[23196,23786,23942,24221,24613,25713]]],["camel",[4,4,[[39,2,2,0,2,[[947,1,1,0,1],[951,1,1,1,2]]],[40,1,1,2,3,[[966,1,1,2,3]]],[41,1,1,3,4,[[990,1,1,3,4]]]],[23786,23942,24613,25713]]],["camel's",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23196,24221]]]]},{"k":"G2575","v":[["furnace",[4,4,[[39,2,2,0,2,[[941,2,2,0,2]]],[65,2,2,2,4,[[1167,1,1,2,3],[1175,1,1,3,4]]]],[23581,23589,30712,30842]]]]},{"k":"G2576","v":[["closed",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]]],[23554,27926]]]]},{"k":"G2577","v":[["*",[3,3,[[57,1,1,0,1,[[1144,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[30215,30369,30720]]],["fainted",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30720]]],["sick",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30369]]],["wearied",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30215]]]]},{"k":"G2578","v":[["*",[4,4,[[44,2,2,0,2,[[1056,1,1,0,1],[1059,1,1,1,2]]],[48,1,1,2,3,[[1099,1,1,2,3]]],[49,1,1,3,4,[[1104,1,1,3,4]]]],[28213,28291,29265,29401]]],["bow",[3,3,[[44,1,1,0,1,[[1059,1,1,0,1]]],[48,1,1,1,2,[[1099,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[28291,29265,29401]]],["bowed",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28213]]]]},{"k":"G2579","v":[["*",[13,13,[[39,2,2,0,2,[[949,1,1,0,1],[954,1,1,1,2]]],[40,3,3,2,5,[[961,1,1,2,3],[962,1,1,3,4],[972,1,1,4,5]]],[41,1,1,5,6,[[985,1,1,5,6]]],[42,3,3,6,9,[[1004,1,1,6,7],[1006,1,1,7,8],[1007,1,1,8,9]]],[43,1,1,9,10,[[1022,1,1,9,10]]],[46,1,1,10,11,[[1088,1,1,10,11]]],[57,1,1,11,12,[[1144,1,1,11,12]]],[58,1,1,12,13,[[1150,1,1,12,13]]]],[23847,24089,24392,24463,24891,25527,26395,26519,26548,27074,29005,30232,30369]]],["If",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24392]]],["Though",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]]],[24089,26395]]],["as",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30232]]],["but",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24463]]],["if",[4,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[972,1,1,1,2]]],[41,1,1,2,3,[[985,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]]],[23847,24891,25527,30369]]],["least",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27074]]],["though",[2,2,[[42,2,2,0,2,[[1006,1,1,0,1],[1007,1,1,1,2]]]],[26519,26548]]],["yet",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29005]]]]},{"k":"G2580","v":[["Cana",[4,4,[[42,4,4,0,4,[[998,2,2,0,2],[1000,1,1,2,3],[1017,1,1,3,4]]]],[26096,26106,26202,26900]]]]},{"k":"G2581","v":[["Canaanite",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]]],[23421,24306]]]]},{"k":"G2582","v":[["Candace",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27203]]]]},{"k":"G2583","v":[["*",[5,5,[[46,3,3,0,3,[[1087,3,3,0,3]]],[47,1,1,3,4,[[1096,1,1,3,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]]],[28984,28986,28987,29204,29437]]],["rule",[4,4,[[46,2,2,0,2,[[1087,2,2,0,2]]],[47,1,1,2,3,[[1096,1,1,2,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]]],[28984,28986,29204,29437]]],["things",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28987]]]]},{"k":"G2584","v":[["Capernaum",[16,16,[[39,4,4,0,4,[[932,1,1,0,1],[936,1,1,1,2],[939,1,1,2,3],[945,1,1,3,4]]],[40,3,3,4,7,[[957,1,1,4,5],[958,1,1,5,6],[965,1,1,6,7]]],[41,4,4,7,11,[[976,2,2,7,9],[979,1,1,9,10],[982,1,1,10,11]]],[42,5,5,11,16,[[998,1,1,11,12],[1000,1,1,12,13],[1002,3,3,13,16]]]],[23222,23350,23482,23724,24236,24261,24571,25086,25094,25196,25378,26107,26202,26274,26281,26316]]]]},{"k":"G2585","v":[["corrupt",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28841]]]]},{"k":"G2586","v":[["smoke",[13,11,[[43,1,1,0,1,[[1019,1,1,0,1]]],[65,12,10,1,11,[[1174,1,1,1,2],[1175,6,4,2,6],[1180,1,1,6,7],[1181,1,1,7,8],[1184,2,2,8,10],[1185,1,1,10,11]]]],[26968,30831,30842,30843,30857,30858,30937,30954,31002,31011,31020]]]]},{"k":"G2587","v":[["Cappadocia",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[26958,30375]]]]},{"k":"G2588","v":[["*",[160,152,[[39,17,16,0,16,[[933,2,2,0,2],[934,1,1,2,3],[937,1,1,3,4],[939,1,1,4,5],[940,3,3,5,8],[941,3,2,8,10],[943,3,3,10,13],[946,1,1,13,14],[950,1,1,14,15],[952,1,1,15,16]]],[40,12,12,16,28,[[958,2,2,16,18],[959,1,1,18,19],[960,1,1,19,20],[962,1,1,20,21],[963,3,3,21,24],[964,1,1,24,25],[967,1,1,25,26],[968,2,2,26,28]]],[41,24,22,28,50,[[973,3,3,28,31],[974,3,3,31,34],[975,1,1,34,35],[976,1,1,35,36],[977,1,1,36,37],[978,3,1,37,38],[980,2,2,38,40],[981,1,1,40,41],[982,1,1,41,42],[984,2,2,42,44],[988,1,1,44,45],[993,2,2,45,47],[996,3,3,47,50]]],[42,7,6,50,56,[[1008,2,1,50,51],[1009,1,1,51,52],[1010,2,2,52,54],[1012,2,2,54,56]]],[43,21,20,56,76,[[1019,3,3,56,59],[1021,1,1,59,60],[1022,2,2,60,62],[1024,4,4,62,66],[1025,3,3,66,69],[1028,1,1,69,70],[1030,1,1,70,71],[1031,1,1,71,72],[1032,1,1,72,73],[1033,1,1,73,74],[1038,1,1,74,75],[1045,2,1,75,76]]],[44,15,15,76,91,[[1046,2,2,76,78],[1047,3,3,78,81],[1050,1,1,81,82],[1051,1,1,82,83],[1053,1,1,83,84],[1054,1,1,84,85],[1055,5,5,85,90],[1061,1,1,90,91]]],[45,5,4,91,95,[[1063,1,1,91,92],[1065,1,1,92,93],[1068,2,1,93,94],[1075,1,1,94,95]]],[46,11,11,95,106,[[1078,1,1,95,96],[1079,1,1,96,97],[1080,3,3,97,100],[1081,1,1,100,101],[1082,1,1,101,102],[1083,1,1,102,103],[1084,1,1,103,104],[1085,1,1,104,105],[1086,1,1,105,106]]],[47,1,1,106,107,[[1094,1,1,106,107]]],[48,5,5,107,112,[[1099,1,1,107,108],[1100,1,1,108,109],[1101,1,1,109,110],[1102,2,2,110,112]]],[49,2,2,112,114,[[1103,1,1,112,113],[1106,1,1,113,114]]],[50,5,5,114,119,[[1108,1,1,114,115],[1109,3,3,115,118],[1110,1,1,118,119]]],[51,3,3,119,122,[[1112,2,2,119,121],[1113,1,1,121,122]]],[52,2,2,122,124,[[1117,1,1,122,123],[1118,1,1,123,124]]],[53,1,1,124,125,[[1119,1,1,124,125]]],[54,1,1,125,126,[[1126,1,1,125,126]]],[57,11,10,126,136,[[1135,4,4,126,130],[1136,2,2,130,132],[1140,1,1,132,133],[1142,3,2,133,135],[1145,1,1,135,136]]],[58,5,5,136,141,[[1146,1,1,136,137],[1148,1,1,137,138],[1149,1,1,138,139],[1150,2,2,139,141]]],[59,3,3,141,144,[[1151,1,1,141,142],[1153,2,2,142,144]]],[60,2,2,144,146,[[1156,1,1,144,145],[1157,1,1,145,146]]],[61,4,3,146,149,[[1161,4,3,146,149]]],[65,3,3,149,152,[[1168,1,1,149,150],[1183,1,1,150,151],[1184,1,1,151,152]]]],[23242,23262,23303,23383,23488,23523,23524,23529,23554,23558,23641,23651,23652,23762,23909,24005,24266,24268,24293,24338,24459,24469,24482,24484,24517,24663,24703,24706,24910,24944,24959,24992,25008,25024,25040,25081,25129,25191,25257,25260,25348,25390,25493,25504,25635,25840,25860,26016,26023,26029,26620,26632,26669,26695,26732,26748,26975,26986,26995,27054,27062,27063,27139,27155,27167,27170,27197,27198,27213,27330,27384,27431,27451,27497,27677,27926,27951,27954,27967,27977,27991,28052,28085,28143,28157,28189,28194,28196,28197,28198,28354,28403,28438,28524,28703,28822,28828,28843,28844,28856,28865,28889,28909,28919,28948,28963,29137,29268,29290,29323,29342,29359,29368,29449,29496,29532,29533,29539,29550,29574,29587,29603,29678,29683,29701,29849,30003,30005,30007,30010,30021,30026,30102,30149,30155,30250,30292,30333,30345,30359,30362,30396,30428,30439,30498,30514,30598,30599,30600,30740,30992,31000]]],["+",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25081]]],["heart",[101,94,[[39,15,14,0,14,[[933,2,2,0,2],[934,1,1,2,3],[939,1,1,3,4],[940,3,3,4,7],[941,3,2,7,9],[943,3,3,9,12],[950,1,1,12,13],[952,1,1,13,14]]],[40,8,8,14,22,[[962,1,1,14,15],[963,3,3,15,18],[964,1,1,18,19],[967,1,1,19,20],[968,2,2,20,22]]],[41,12,10,22,32,[[974,2,2,22,24],[978,3,1,24,25],[980,1,1,25,26],[981,1,1,26,27],[982,1,1,27,28],[984,2,2,28,30],[996,2,2,30,32]]],[42,7,6,32,38,[[1008,2,1,32,33],[1009,1,1,33,34],[1010,2,2,34,36],[1012,2,2,36,38]]],[43,18,17,38,55,[[1019,3,3,38,41],[1021,1,1,41,42],[1022,2,2,42,44],[1024,3,3,44,47],[1025,3,3,47,50],[1028,1,1,50,51],[1030,1,1,51,52],[1033,1,1,52,53],[1038,1,1,53,54],[1045,2,1,54,55]]],[44,9,9,55,64,[[1046,1,1,55,56],[1047,2,2,56,58],[1051,1,1,58,59],[1054,1,1,59,60],[1055,4,4,60,64]]],[45,4,3,64,67,[[1063,1,1,64,65],[1068,2,1,65,66],[1075,1,1,66,67]]],[46,7,7,67,74,[[1079,1,1,67,68],[1080,2,2,68,70],[1082,1,1,70,71],[1083,1,1,71,72],[1085,1,1,72,73],[1086,1,1,73,74]]],[48,3,3,74,77,[[1100,1,1,74,75],[1101,1,1,75,76],[1102,1,1,76,77]]],[49,1,1,77,78,[[1103,1,1,77,78]]],[50,1,1,78,79,[[1109,1,1,78,79]]],[51,1,1,79,80,[[1112,1,1,79,80]]],[53,1,1,80,81,[[1119,1,1,80,81]]],[54,1,1,81,82,[[1126,1,1,81,82]]],[57,5,5,82,87,[[1135,2,2,82,84],[1136,1,1,84,85],[1142,1,1,85,86],[1145,1,1,86,87]]],[58,1,1,87,88,[[1146,1,1,87,88]]],[59,2,2,88,90,[[1151,1,1,88,89],[1153,1,1,89,90]]],[60,1,1,90,91,[[1157,1,1,90,91]]],[61,3,2,91,93,[[1161,3,2,91,93]]],[65,1,1,93,94,[[1184,1,1,93,94]]]],[23242,23262,23303,23488,23523,23524,23529,23554,23558,23641,23651,23652,23909,24005,24459,24469,24482,24484,24517,24663,24703,24706,24992,25024,25191,25260,25348,25390,25493,25504,26016,26023,26620,26632,26669,26695,26732,26748,26975,26986,26995,27054,27062,27063,27139,27167,27170,27197,27198,27213,27330,27384,27497,27677,27926,27951,27967,27991,28085,28157,28194,28196,28197,28198,28403,28524,28703,28828,28844,28856,28889,28909,28948,28963,29290,29323,29342,29368,29539,29587,29701,29849,30005,30007,30026,30155,30250,30292,30396,30428,30514,30599,30600,31000]]],["heart's",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28189]]],["hearts",[57,57,[[39,2,2,0,2,[[937,1,1,0,1],[946,1,1,1,2]]],[40,4,4,2,6,[[958,2,2,2,4],[959,1,1,4,5],[960,1,1,5,6]]],[41,11,11,6,17,[[973,3,3,6,9],[974,1,1,9,10],[975,1,1,10,11],[977,1,1,11,12],[980,1,1,12,13],[988,1,1,13,14],[993,2,2,14,16],[996,1,1,16,17]]],[43,3,3,17,20,[[1024,1,1,17,18],[1031,1,1,18,19],[1032,1,1,19,20]]],[44,5,5,20,25,[[1046,1,1,20,21],[1047,1,1,21,22],[1050,1,1,22,23],[1053,1,1,23,24],[1061,1,1,24,25]]],[45,1,1,25,26,[[1065,1,1,25,26]]],[46,4,4,26,30,[[1078,1,1,26,27],[1080,1,1,27,28],[1081,1,1,28,29],[1084,1,1,29,30]]],[47,1,1,30,31,[[1094,1,1,30,31]]],[48,2,2,31,33,[[1099,1,1,31,32],[1102,1,1,32,33]]],[49,1,1,33,34,[[1106,1,1,33,34]]],[50,4,4,34,38,[[1108,1,1,34,35],[1109,2,2,35,37],[1110,1,1,37,38]]],[51,2,2,38,40,[[1112,1,1,38,39],[1113,1,1,39,40]]],[52,2,2,40,42,[[1117,1,1,40,41],[1118,1,1,41,42]]],[57,6,6,42,48,[[1135,2,2,42,44],[1136,1,1,44,45],[1140,1,1,45,46],[1142,2,2,46,48]]],[58,4,4,48,52,[[1148,1,1,48,49],[1149,1,1,49,50],[1150,2,2,50,52]]],[59,1,1,52,53,[[1153,1,1,52,53]]],[60,1,1,53,54,[[1156,1,1,53,54]]],[61,1,1,54,55,[[1161,1,1,54,55]]],[65,2,2,55,57,[[1168,1,1,55,56],[1183,1,1,56,57]]]],[23383,23762,24266,24268,24293,24338,24910,24944,24959,25008,25040,25129,25257,25635,25840,25860,26029,27155,27431,27451,27954,27977,28052,28143,28354,28438,28822,28843,28865,28919,29137,29268,29359,29449,29496,29532,29533,29550,29574,29603,29678,29683,30003,30010,30021,30102,30149,30155,30333,30345,30359,30362,30439,30498,30598,30740,30992]]]]},{"k":"G2589","v":[["hearts",[2,2,[[43,2,2,0,2,[[1018,1,1,0,1],[1032,1,1,1,2]]]],[26947,27450]]]]},{"k":"G2590","v":[["*",[66,56,[[39,19,14,0,14,[[931,2,2,0,2],[935,7,5,2,7],[940,3,1,7,8],[941,2,2,8,10],[949,5,4,10,14]]],[40,5,5,14,19,[[960,3,3,14,17],[967,1,1,17,18],[968,1,1,18,19]]],[41,12,11,19,30,[[973,1,1,19,20],[975,2,2,20,22],[978,3,2,22,24],[980,1,1,24,25],[984,1,1,25,26],[985,3,3,26,29],[992,1,1,29,30]]],[42,10,7,30,37,[[1000,1,1,30,31],[1008,1,1,31,32],[1011,8,5,32,37]]],[43,1,1,37,38,[[1019,1,1,37,38]]],[44,4,4,38,42,[[1046,1,1,38,39],[1051,2,2,39,41],[1060,1,1,41,42]]],[45,1,1,42,43,[[1070,1,1,42,43]]],[47,1,1,43,44,[[1095,1,1,43,44]]],[48,1,1,44,45,[[1101,1,1,44,45]]],[49,3,3,45,48,[[1103,2,2,45,47],[1106,1,1,47,48]]],[54,1,1,48,49,[[1126,1,1,48,49]]],[57,2,2,49,51,[[1144,1,1,49,50],[1145,1,1,50,51]]],[58,4,4,51,55,[[1148,2,2,51,53],[1150,2,2,53,55]]],[65,2,1,55,56,[[1188,2,1,55,56]]]],[23200,23202,23332,23333,23334,23335,23336,23522,23547,23565,23845,23860,23867,23869,24330,24331,24352,24654,24675,24935,25033,25034,25189,25190,25253,25476,25524,25525,25527,25789,26192,26604,26701,26703,26704,26707,26715,26979,27943,28089,28090,28331,28547,29184,29313,29372,29383,29459,29833,30223,30256,30336,30337,30361,30372,31082]]],["+",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28089]]],["fruit",[53,45,[[39,13,9,0,9,[[931,1,1,0,1],[935,5,3,1,4],[940,3,1,4,5],[941,2,2,5,7],[949,2,2,7,9]]],[40,5,5,9,14,[[960,3,3,9,12],[967,1,1,12,13],[968,1,1,13,14]]],[41,10,9,14,23,[[973,1,1,14,15],[975,1,1,15,16],[978,3,2,16,18],[980,1,1,18,19],[985,3,3,19,22],[992,1,1,22,23]]],[42,10,7,23,30,[[1000,1,1,23,24],[1008,1,1,24,25],[1011,8,5,25,30]]],[43,1,1,30,31,[[1019,1,1,30,31]]],[44,3,3,31,34,[[1046,1,1,31,32],[1051,1,1,32,33],[1060,1,1,33,34]]],[45,1,1,34,35,[[1070,1,1,34,35]]],[47,1,1,35,36,[[1095,1,1,35,36]]],[48,1,1,36,37,[[1101,1,1,36,37]]],[49,2,2,37,39,[[1103,1,1,37,38],[1106,1,1,38,39]]],[57,2,2,39,41,[[1144,1,1,39,40],[1145,1,1,40,41]]],[58,3,3,41,44,[[1148,1,1,41,42],[1150,2,2,42,44]]],[65,1,1,44,45,[[1188,1,1,44,45]]]],[23202,23333,23334,23335,23522,23547,23565,23845,23860,24330,24331,24352,24654,24675,24935,25034,25189,25190,25253,25524,25525,25527,25789,26192,26604,26701,26703,26704,26707,26715,26979,27943,28090,28331,28547,29184,29313,29383,29459,30223,30256,30337,30361,30372,31082]]],["fruits",[12,12,[[39,6,6,0,6,[[931,1,1,0,1],[935,2,2,1,3],[949,3,3,3,6]]],[41,2,2,6,8,[[975,1,1,6,7],[984,1,1,7,8]]],[49,1,1,8,9,[[1103,1,1,8,9]]],[54,1,1,9,10,[[1126,1,1,9,10]]],[58,1,1,10,11,[[1148,1,1,10,11]]],[65,1,1,11,12,[[1188,1,1,11,12]]]],[23200,23332,23336,23860,23867,23869,25033,25476,29372,29833,30336,31082]]]]},{"k":"G2591","v":[["Carpus",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29883]]]]},{"k":"G2592","v":[["*",[8,8,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,2,2,1,3,[[960,2,2,1,3]]],[41,1,1,3,4,[[980,1,1,3,4]]],[44,2,2,4,6,[[1052,2,2,4,6]]],[50,2,2,6,8,[[1107,2,2,6,8]]]],[23562,24343,24351,25260,28095,28096,29471,29475]]],["fruit",[7,7,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,2,2,1,3,[[960,2,2,1,3]]],[41,1,1,3,4,[[980,1,1,3,4]]],[44,2,2,4,6,[[1052,2,2,4,6]]],[50,1,1,6,7,[[1107,1,1,6,7]]]],[23562,24343,24351,25260,28095,28096,29471]]],["fruitful",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29475]]]]},{"k":"G2593","v":[["fruitful",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27431]]]]},{"k":"G2594","v":[["endured",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30199]]]]},{"k":"G2595","v":[["mote",[6,5,[[39,3,3,0,3,[[935,3,3,0,3]]],[41,3,2,3,5,[[978,3,2,3,5]]]],[23319,23320,23321,25187,25188]]]]},{"k":"G2596","v":[["*",[475,432,[[39,37,33,0,33,[[929,1,1,0,1],[930,5,5,1,6],[933,2,2,6,8],[936,1,1,8,9],[937,1,1,9,10],[938,3,1,10,11],[940,6,4,11,15],[942,2,2,15,17],[944,1,1,17,18],[945,2,2,18,20],[947,1,1,20,21],[948,2,2,21,23],[951,1,1,23,24],[952,2,2,24,26],[953,1,1,26,27],[954,3,3,27,30],[955,3,3,30,33]]],[40,20,20,33,53,[[957,1,1,33,34],[959,1,1,34,35],[960,1,1,35,36],[961,1,1,36,37],[962,2,2,37,39],[963,2,2,39,41],[965,3,3,41,44],[967,1,1,44,45],[969,2,2,45,47],[970,5,5,47,52],[971,1,1,52,53]]],[41,42,42,53,95,[[973,3,3,53,56],[974,8,8,56,64],[976,2,2,64,66],[978,2,2,66,68],[980,4,4,68,72],[981,4,4,72,76],[982,5,5,76,81],[983,2,2,81,83],[985,1,1,83,84],[987,1,1,84,85],[988,1,1,85,86],[989,1,1,86,87],[991,1,1,87,88],[993,1,1,88,89],[994,3,3,89,92],[995,3,3,92,95]]],[42,10,10,95,105,[[998,1,1,95,96],[1001,1,1,96,97],[1003,1,1,97,98],[1004,1,1,98,99],[1006,1,1,99,100],[1014,2,2,100,102],[1015,2,2,102,104],[1017,1,1,104,105]]],[43,93,86,105,191,[[1019,5,4,105,109],[1020,4,4,109,113],[1021,2,1,113,114],[1022,2,2,114,116],[1023,1,1,116,117],[1024,1,1,117,118],[1025,4,4,118,122],[1026,2,2,122,124],[1027,1,1,124,125],[1028,1,1,125,126],[1029,1,1,126,127],[1030,4,4,127,131],[1031,3,3,131,134],[1032,5,4,134,138],[1033,5,4,138,142],[1034,6,6,142,148],[1035,2,2,148,150],[1036,4,4,150,154],[1037,2,2,154,156],[1038,3,3,156,159],[1039,3,3,159,162],[1040,3,3,162,165],[1041,7,6,165,171],[1042,9,8,171,179],[1043,4,4,179,183],[1044,8,7,183,190],[1045,1,1,190,191]]],[44,51,43,191,234,[[1046,3,3,191,194],[1047,5,5,194,199],[1048,1,1,199,200],[1049,5,4,200,204],[1050,1,1,204,205],[1052,2,2,205,207],[1053,12,9,207,216],[1054,4,4,216,220],[1055,1,1,220,221],[1056,7,5,221,226],[1057,3,2,226,228],[1059,2,2,228,230],[1060,1,1,230,231],[1061,4,3,231,234]]],[45,24,23,234,257,[[1062,1,1,234,235],[1063,1,1,235,236],[1064,3,3,236,239],[1065,1,1,239,240],[1068,3,2,240,242],[1070,1,1,242,243],[1071,1,1,243,244],[1072,1,1,244,245],[1073,2,2,245,247],[1075,3,3,247,250],[1076,5,5,250,255],[1077,2,2,255,257]]],[46,25,24,257,281,[[1078,2,2,257,259],[1081,2,2,259,261],[1082,2,1,261,262],[1084,3,3,262,265],[1085,2,2,265,267],[1087,7,7,267,274],[1088,5,5,274,279],[1090,2,2,279,281]]],[47,17,14,281,295,[[1091,3,3,281,284],[1092,3,2,284,286],[1093,4,4,286,290],[1094,4,3,290,293],[1095,3,2,293,295]]],[48,24,20,295,315,[[1097,7,6,295,301],[1098,2,1,301,302],[1099,6,5,302,307],[1100,5,4,307,311],[1101,1,1,311,312],[1102,3,3,312,315]]],[49,10,9,315,324,[[1103,2,2,315,317],[1104,1,1,317,318],[1105,5,4,318,322],[1106,2,2,322,324]]],[50,14,11,324,335,[[1107,3,3,324,327],[1108,5,3,327,330],[1109,4,3,330,333],[1110,2,2,333,335]]],[52,4,4,335,339,[[1116,1,1,335,336],[1117,2,2,336,338],[1118,1,1,338,339]]],[53,6,6,339,345,[[1119,3,3,339,342],[1123,2,2,342,344],[1124,1,1,344,345]]],[54,8,7,345,352,[[1125,4,3,345,348],[1126,1,1,348,349],[1128,3,3,349,352]]],[55,8,7,352,359,[[1129,6,5,352,357],[1131,2,2,357,359]]],[56,3,2,359,361,[[1132,3,2,359,361]]],[57,42,37,361,398,[[1133,1,1,361,362],[1134,2,2,362,364],[1135,3,3,364,367],[1136,2,1,367,368],[1137,2,2,368,370],[1138,4,3,370,373],[1139,11,9,373,382],[1140,3,3,382,385],[1141,7,6,385,391],[1142,4,4,391,395],[1143,2,2,395,397],[1144,1,1,397,398]]],[58,5,5,398,403,[[1147,2,2,398,400],[1148,2,2,400,402],[1150,1,1,402,403]]],[59,11,9,403,412,[[1151,4,4,403,407],[1152,1,1,407,408],[1153,1,1,408,409],[1154,5,3,409,412]]],[60,4,4,412,416,[[1157,1,1,412,413],[1158,3,3,413,416]]],[61,1,1,416,417,[[1163,1,1,416,417]]],[62,1,1,417,418,[[1164,1,1,417,418]]],[63,1,1,418,419,[[1165,1,1,418,419]]],[64,4,3,419,422,[[1166,4,3,419,422]]],[65,10,10,422,432,[[1168,4,4,422,426],[1170,1,1,426,427],[1178,1,1,427,428],[1184,1,1,428,429],[1186,2,2,429,431],[1188,1,1,431,432]]]],[23164,23181,23182,23185,23188,23191,23245,23257,23377,23408,23452,23503,23514,23519,23521,23610,23620,23699,23701,23719,23765,23803,23809,23921,23960,23964,24023,24109,24113,24117,24130,24144,24148,24242,24294,24357,24377,24438,24439,24468,24496,24540,24566,24578,24665,24720,24725,24757,24803,24809,24810,24811,24832,24902,24911,24931,24995,24997,25000,25002,25004,25012,25014,25015,25077,25079,25169,25172,25246,25249,25278,25284,25307,25311,25324,25351,25367,25386,25394,25395,25396,25408,25428,25540,25602,25639,25681,25778,25837,25886,25903,25917,25940,25952,25991,26101,26214,26352,26396,26484,26814,26816,26832,26836,26923,26959,26979,26995,26996,26998,27009,27013,27018,27048,27074,27101,27114,27160,27177,27179,27202,27212,27247,27258,27296,27308,27338,27363,27384,27385,27389,27415,27416,27437,27453,27463,27465,27478,27488,27490,27505,27508,27525,27534,27540,27545,27548,27551,27561,27572,27594,27601,27605,27608,27646,27649,27683,27685,27692,27707,27716,27723,27737,27753,27765,27770,27774,27775,27781,27783,27791,27798,27799,27803,27810,27811,27812,27819,27823,27826,27828,27834,27836,27857,27860,27862,27867,27869,27880,27882,27915,27933,27934,27945,27964,27967,27968,27969,27978,27996,28023,28026,28038,28040,28053,28104,28113,28117,28120,28121,28128,28129,28143,28144,28147,28149,28158,28160,28164,28166,28190,28211,28214,28230,28233,28237,28250,28251,28295,28302,28308,28341,28361,28362,28389,28395,28413,28418,28420,28439,28493,28527,28548,28585,28604,28642,28665,28705,28709,28718,28721,28722,28733,28749,28750,28778,28795,28808,28817,28872,28876,28893,28925,28926,28927,28935,28940,28972,28973,28974,28976,28978,28984,28986,29004,29006,29007,29010,29017,29051,29053,29061,29068,29070,29083,29092,29103,29117,29123,29131,29154,29159,29160,29179,29185,29211,29213,29215,29217,29221,29225,29231,29254,29258,29262,29267,29271,29279,29288,29294,29296,29337,29342,29343,29358,29373,29381,29394,29426,29427,29435,29442,29453,29461,29476,29490,29494,29502,29508,29516,29527,29537,29539,29549,29557,29661,29664,29670,29684,29697,29707,29714,29782,29784,29791,29810,29817,29818,29835,29871,29873,29884,29893,29895,29896,29897,29901,29928,29930,29940,29952,29973,29981,29994,29998,30003,30008,30029,30036,30040,30057,30060,30064,30069,30075,30079,30080,30081,30084,30085,30086,30091,30096,30097,30101,30110,30114,30124,30127,30130,30132,30134,30136,30141,30144,30179,30185,30222,30301,30310,30328,30333,30363,30376,30377,30389,30391,30410,30431,30452,30460,30465,30511,30525,30535,30537,30638,30651,30672,30687,30688,30690,30721,30731,30737,30740,30776,30898,30999,31050,31051,31082]]],["+",[111,108,[[39,7,7,0,7,[[942,2,2,0,2],[945,2,2,2,4],[948,1,1,4,5],[952,1,1,5,6],[954,1,1,6,7]]],[40,9,9,7,16,[[960,1,1,7,8],[962,2,2,8,10],[963,1,1,10,11],[965,2,2,11,13],[969,2,2,13,15],[970,1,1,15,16]]],[41,17,17,16,33,[[973,1,1,16,17],[974,1,1,17,18],[978,2,2,18,20],[980,2,2,20,22],[981,2,2,22,24],[982,2,2,24,26],[983,1,1,26,27],[988,1,1,27,28],[989,1,1,28,29],[991,1,1,29,30],[993,1,1,30,31],[994,2,2,31,33]]],[42,2,2,33,35,[[1001,1,1,33,34],[1017,1,1,34,35]]],[43,33,31,35,66,[[1019,3,2,35,37],[1020,2,2,37,39],[1022,1,1,39,40],[1025,1,1,40,41],[1030,1,1,41,42],[1031,2,2,42,44],[1032,3,2,44,46],[1033,1,1,46,47],[1034,5,5,47,52],[1035,1,1,52,53],[1036,3,3,53,56],[1037,2,2,56,58],[1038,1,1,58,59],[1039,1,1,59,60],[1040,1,1,60,61],[1041,1,1,61,62],[1042,2,2,62,64],[1043,1,1,64,65],[1044,1,1,65,66]]],[44,7,7,66,73,[[1046,1,1,66,67],[1052,1,1,67,68],[1053,1,1,68,69],[1056,3,3,69,72],[1059,1,1,72,73]]],[45,5,5,73,78,[[1072,1,1,73,74],[1073,1,1,74,75],[1075,1,1,75,76],[1076,1,1,76,77],[1077,1,1,77,78]]],[46,6,6,78,84,[[1078,1,1,78,79],[1081,1,1,79,80],[1084,3,3,80,83],[1088,1,1,83,84]]],[47,2,2,84,86,[[1091,1,1,84,85],[1092,1,1,85,86]]],[48,2,2,86,88,[[1101,1,1,86,87],[1102,1,1,87,88]]],[50,1,1,88,89,[[1110,1,1,88,89]]],[55,2,2,89,91,[[1129,2,2,89,91]]],[56,1,1,91,92,[[1132,1,1,91,92]]],[57,11,11,92,103,[[1135,2,2,92,94],[1136,1,1,94,95],[1139,2,2,95,97],[1141,3,3,97,100],[1142,3,3,100,103]]],[58,2,2,103,105,[[1147,1,1,103,104],[1150,1,1,104,105]]],[59,2,1,105,106,[[1154,2,1,105,106]]],[65,2,2,106,108,[[1170,1,1,106,107],[1188,1,1,107,108]]]],[23610,23620,23701,23719,23809,23960,24109,24357,24438,24439,24496,24540,24566,24720,24725,24803,24911,25014,25169,25172,25246,25249,25311,25324,25386,25396,25408,25639,25681,25778,25837,25903,25917,26214,26923,26995,26996,26998,27009,27101,27179,27389,27415,27437,27453,27463,27488,27525,27534,27540,27548,27551,27561,27594,27605,27608,27646,27649,27683,27723,27753,27791,27812,27819,27834,27880,27945,28104,28149,28230,28233,28237,28295,28604,28665,28709,28749,28778,28808,28876,28925,28926,28927,29017,29070,29083,29337,29358,29549,29897,29901,29952,29998,30008,30029,30084,30091,30110,30130,30132,30134,30136,30144,30310,30363,30460,30776,31082]]],["According",[6,6,[[39,1,1,0,1,[[937,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[45,1,1,2,3,[[1064,1,1,2,3]]],[48,1,1,3,4,[[1099,1,1,3,4]]],[49,1,1,4,5,[[1103,1,1,4,5]]],[53,1,1,5,6,[[1119,1,1,5,6]]]],[23408,24902,28420,29262,29381,29707]]],["Against",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29782]]],["At",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28164]]],["By",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30086]]],["Concerning",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29427]]],["about",[3,3,[[43,3,3,0,3,[[1019,1,1,0,1],[1029,1,1,1,2],[1044,1,1,2,3]]]],[26959,27338,27882]]],["according",[100,95,[[39,3,3,0,3,[[930,1,1,0,1],[944,1,1,1,2],[953,1,1,2,3]]],[40,1,1,3,4,[[963,1,1,3,4]]],[41,6,6,4,10,[[973,1,1,4,5],[974,4,4,5,9],[995,1,1,9,10]]],[42,2,2,10,12,[[1003,1,1,10,11],[1014,1,1,11,12]]],[43,5,5,12,17,[[1024,1,1,12,13],[1030,1,1,13,14],[1039,2,2,14,16],[1041,1,1,16,17]]],[44,18,16,17,33,[[1046,2,2,17,19],[1047,3,3,19,22],[1049,1,1,22,23],[1053,2,2,23,25],[1054,2,2,25,27],[1055,1,1,27,28],[1056,1,1,28,29],[1057,2,1,29,30],[1060,1,1,30,31],[1061,3,2,31,33]]],[45,3,3,33,36,[[1064,1,1,33,34],[1076,2,2,34,36]]],[46,6,6,36,42,[[1078,1,1,36,37],[1087,3,3,37,40],[1088,1,1,40,41],[1090,1,1,41,42]]],[47,2,2,42,44,[[1091,1,1,42,43],[1093,1,1,43,44]]],[48,14,13,44,57,[[1097,5,5,44,49],[1098,2,1,49,50],[1099,3,3,50,53],[1100,3,3,53,56],[1102,1,1,56,57]]],[49,2,2,57,59,[[1105,1,1,57,58],[1106,1,1,58,59]]],[50,4,4,59,63,[[1107,3,3,59,62],[1109,1,1,62,63]]],[52,1,1,63,64,[[1116,1,1,63,64]]],[53,2,2,64,66,[[1119,1,1,64,65],[1124,1,1,65,66]]],[54,6,5,66,71,[[1125,4,3,66,69],[1126,1,1,69,70],[1128,1,1,70,71]]],[55,4,4,71,75,[[1129,2,2,71,73],[1131,2,2,73,75]]],[57,6,6,75,81,[[1134,1,1,75,76],[1139,1,1,76,77],[1140,3,3,77,80],[1141,1,1,80,81]]],[58,1,1,81,82,[[1147,1,1,81,82]]],[59,7,6,82,88,[[1151,3,3,82,85],[1153,1,1,85,86],[1154,3,2,86,88]]],[60,2,2,88,90,[[1158,2,2,88,90]]],[61,1,1,90,91,[[1163,1,1,90,91]]],[65,4,4,91,95,[[1168,1,1,91,92],[1184,1,1,92,93],[1186,2,2,93,95]]]],[23185,23699,24023,24468,24931,24995,24997,25002,25012,25991,26352,26816,27160,27385,27707,27716,27775,27933,27934,27964,27968,27978,28040,28143,28144,28158,28166,28190,28214,28251,28308,28361,28362,28418,28721,28722,28817,28973,28984,28986,29004,29053,29061,29131,29211,29213,29215,29217,29225,29231,29258,29267,29271,29279,29288,29294,29342,29442,29461,29476,29490,29494,29539,29661,29714,29791,29810,29817,29818,29835,29884,29893,29895,29928,29930,29981,30069,30096,30097,30101,30124,30301,30376,30377,30391,30431,30452,30465,30535,30537,30638,30740,30999,31050,31051]]],["after",[60,51,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,2,2,1,3,[[974,2,2,1,3]]],[42,2,2,3,5,[[998,1,1,3,4],[1004,1,1,4,5]]],[43,4,4,5,9,[[1030,1,1,5,6],[1040,1,1,6,7],[1041,1,1,7,8],[1043,1,1,8,9]]],[44,10,7,9,16,[[1047,1,1,9,10],[1052,1,1,10,11],[1053,8,5,11,16]]],[45,3,3,16,19,[[1062,1,1,16,17],[1068,1,1,17,18],[1071,1,1,18,19]]],[46,6,5,19,24,[[1082,2,1,19,20],[1087,2,2,20,22],[1088,2,2,22,24]]],[47,4,3,24,27,[[1091,1,1,24,25],[1094,3,2,25,27]]],[48,2,2,27,29,[[1097,1,1,27,28],[1100,1,1,28,29]]],[50,5,3,29,32,[[1108,4,2,29,31],[1109,1,1,31,32]]],[52,2,2,32,34,[[1117,1,1,32,33],[1118,1,1,33,34]]],[54,1,1,34,35,[[1128,1,1,34,35]]],[55,2,2,35,37,[[1129,2,2,35,37]]],[57,11,9,37,46,[[1137,2,2,37,39],[1138,1,1,39,40],[1139,7,5,40,45],[1144,1,1,45,46]]],[58,1,1,46,47,[[1148,1,1,46,47]]],[60,1,1,47,48,[[1158,1,1,47,48]]],[62,1,1,48,49,[[1164,1,1,48,49]]],[64,2,2,49,51,[[1166,2,2,49,51]]]],[23921,25000,25015,26101,26396,27384,27737,27783,27828,27967,28113,28117,28120,28121,28128,28129,28389,28527,28585,28893,28974,28978,29006,29007,29068,29154,29160,29217,29296,29502,29516,29527,29670,29684,29873,29893,29896,30036,30040,30064,30075,30079,30080,30081,30085,30222,30328,30525,30651,30688,30690]]],["against",[58,51,[[39,14,10,0,10,[[933,2,2,0,2],[938,3,1,2,3],[940,6,4,3,7],[948,1,1,7,8],[954,1,1,8,9],[955,1,1,9,10]]],[40,6,6,10,16,[[959,1,1,10,11],[965,1,1,11,12],[967,1,1,12,13],[970,3,3,13,16]]],[41,2,2,16,18,[[981,1,1,16,17],[983,1,1,17,18]]],[42,2,2,18,20,[[1014,1,1,18,19],[1015,1,1,19,20]]],[43,16,14,20,34,[[1021,2,1,20,21],[1023,1,1,21,22],[1031,1,1,22,23],[1033,1,1,23,24],[1036,1,1,24,25],[1038,1,1,25,26],[1041,1,1,26,27],[1042,5,5,27,32],[1044,3,2,32,34]]],[44,2,2,34,36,[[1053,1,1,34,35],[1056,1,1,35,36]]],[45,1,1,36,37,[[1065,1,1,36,37]]],[46,2,2,37,39,[[1087,1,1,37,38],[1090,1,1,38,39]]],[47,4,3,39,42,[[1093,1,1,39,40],[1095,3,2,40,42]]],[50,1,1,42,43,[[1108,1,1,42,43]]],[58,1,1,43,44,[[1148,1,1,43,44]]],[59,1,1,44,45,[[1152,1,1,44,45]]],[60,1,1,45,46,[[1157,1,1,45,46]]],[64,1,1,46,47,[[1166,1,1,46,47]]],[65,4,4,47,51,[[1168,3,3,47,50],[1178,1,1,50,51]]]],[23245,23257,23452,23503,23514,23519,23521,23803,24113,24130,24294,24578,24665,24809,24810,24811,25351,25428,26814,26836,27048,27114,27416,27505,27601,27692,27770,27798,27799,27803,27811,27823,27862,27869,28147,28211,28439,28976,29051,29123,29179,29185,29508,30333,30410,30511,30687,30721,30731,30737,30898]]],["among",[2,2,[[43,2,2,0,2,[[1038,1,1,0,1],[1043,1,1,1,2]]]],[27685,27826]]],["as",[9,9,[[41,2,2,0,2,[[976,1,1,0,1],[994,1,1,1,2]]],[43,1,1,2,3,[[1040,1,1,2,3]]],[44,1,1,3,4,[[1048,1,1,3,4]]],[45,2,2,4,6,[[1064,1,1,4,5],[1070,1,1,5,6]]],[46,1,1,6,7,[[1081,1,1,6,7]]],[47,1,1,7,8,[[1094,1,1,7,8]]],[59,1,1,8,9,[[1151,1,1,8,9]]]],[25079,25886,27765,27996,28413,28548,28872,29159,30389]]],["at",[6,6,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,2,2,2,4,[[982,1,1,2,3],[995,1,1,3,4]]],[43,1,1,4,5,[[1033,1,1,4,5]]],[54,1,1,5,6,[[1128,1,1,5,6]]]],[24144,24832,25395,25952,27508,29871]]],["before",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]]],[25004,29103]]],["by",[26,25,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,2,2,1,3,[[982,2,2,1,3]]],[42,2,2,3,5,[[1006,1,1,3,4],[1015,1,1,4,5]]],[43,1,1,5,6,[[1045,1,1,5,6]]],[44,3,3,6,9,[[1047,1,1,6,7],[1049,1,1,7,8],[1056,1,1,8,9]]],[45,3,3,9,12,[[1068,1,1,9,10],[1073,1,1,10,11],[1075,1,1,11,12]]],[46,1,1,12,13,[[1085,1,1,12,13]]],[47,1,1,13,14,[[1092,1,1,13,14]]],[48,2,2,14,16,[[1099,2,2,14,16]]],[52,1,1,16,17,[[1117,1,1,16,17]]],[53,2,2,17,19,[[1119,1,1,17,18],[1123,1,1,18,19]]],[57,6,5,19,24,[[1138,3,2,19,21],[1141,1,1,21,22],[1142,1,1,22,23],[1143,1,1,23,24]]],[63,1,1,24,25,[[1165,1,1,24,25]]]],[24117,25367,25394,26484,26832,27915,27969,28038,28233,28493,28642,28705,28940,29083,29254,29258,29664,29697,29784,30057,30060,30127,30141,30179,30672]]],["cause",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27810]]],["concerning",[3,3,[[44,1,1,0,1,[[1054,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]]],[28160,29010,29294]]],["down",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23377,24377,25278]]],["every",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28250]]],["for",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23765]]],["in",[33,33,[[39,7,7,0,7,[[929,1,1,0,1],[930,4,4,1,5],[952,1,1,5,6],[955,1,1,6,7]]],[41,1,1,7,8,[[987,1,1,7,8]]],[43,10,10,8,18,[[1020,1,1,8,9],[1028,1,1,9,10],[1030,1,1,10,11],[1032,2,2,11,13],[1034,1,1,13,14],[1041,2,2,14,16],[1042,1,1,16,17],[1043,1,1,17,18]]],[44,2,2,18,20,[[1050,1,1,18,19],[1061,1,1,19,20]]],[45,2,2,20,22,[[1075,1,1,20,21],[1077,1,1,21,22]]],[46,1,1,22,23,[[1087,1,1,22,23]]],[50,3,3,23,26,[[1109,2,2,23,25],[1110,1,1,25,26]]],[56,1,1,26,27,[[1132,1,1,26,27]]],[57,6,6,27,33,[[1133,1,1,27,28],[1134,1,1,28,29],[1135,1,1,29,30],[1136,1,1,30,31],[1141,1,1,31,32],[1143,1,1,32,33]]]],[23164,23181,23182,23188,23191,23964,24148,25602,27018,27308,27363,27465,27478,27545,27781,27783,27799,27836,28053,28341,28718,28795,28972,29537,29539,29557,29940,29973,29994,30003,30029,30114,30185]]],["into",[2,2,[[43,2,2,0,2,[[1022,1,1,0,1],[1033,1,1,1,2]]]],[27074,27490]]],["manner",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]]],[28750,29117]]],["of",[10,9,[[43,3,3,0,3,[[1035,1,1,0,1],[1044,2,2,1,3]]],[44,2,1,3,4,[[1049,2,1,3,4]]],[45,2,2,4,6,[[1068,1,1,4,5],[1076,1,1,5,6]]],[48,1,1,6,7,[[1097,1,1,6,7]]],[49,1,1,7,8,[[1106,1,1,7,8]]],[56,1,1,8,9,[[1132,1,1,8,9]]]],[27572,27857,27860,28026,28493,28733,29221,29453,29952]]],["on",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]]],[24757,27212]]],["pertaining",[2,2,[[44,1,1,0,1,[[1049,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[28023,30114]]],["through",[5,5,[[41,3,3,0,3,[[976,1,1,0,1],[981,1,1,1,2],[985,1,1,2,3]]],[43,1,1,3,4,[[1020,1,1,3,4]]],[49,1,1,4,5,[[1104,1,1,4,5]]]],[25077,25307,25540,27013,29394]]],["throughout",[7,7,[[41,2,2,0,2,[[980,1,1,0,1],[995,1,1,1,2]]],[43,5,5,2,7,[[1025,1,1,2,3],[1026,2,2,3,5],[1027,1,1,5,6],[1041,1,1,6,7]]]],[25284,25940,27177,27247,27258,27296,27774]]],["to",[5,5,[[43,2,2,0,2,[[1019,1,1,0,1],[1033,1,1,1,2]]],[44,1,1,2,3,[[1059,1,1,2,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]],[47,1,1,4,5,[[1092,1,1,4,5]]]],[26979,27490,28302,28935,29092]]],["touching",[3,3,[[44,1,1,0,1,[[1056,1,1,0,1]]],[49,2,2,1,3,[[1105,2,2,1,3]]]],[28237,29426,29427]]],["toward",[3,3,[[43,2,2,0,2,[[1025,1,1,0,1],[1044,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]]],[27202,27867,29435]]],["unto",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29373]]],["upon",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30687]]],["with",[3,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[45,1,1,1,2,[[1063,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]]],[24242,28395,29343]]]]},{"k":"G2597","v":[["*",[80,80,[[39,10,10,0,10,[[931,1,1,0,1],[935,2,2,1,3],[936,1,1,3,4],[942,1,1,4,5],[945,1,1,5,6],[952,1,1,6,7],[955,2,2,7,9],[956,1,1,9,10]]],[40,6,6,10,16,[[957,1,1,10,11],[959,1,1,11,12],[965,1,1,12,13],[969,1,1,13,14],[971,2,2,14,16]]],[41,12,12,16,28,[[974,1,1,16,17],[975,1,1,17,18],[978,1,1,18,19],[980,1,1,19,20],[981,1,1,20,21],[982,2,2,21,23],[989,1,1,23,24],[990,1,1,24,25],[991,2,2,25,27],[994,1,1,27,28]]],[42,18,18,28,46,[[997,3,3,28,31],[998,1,1,31,32],[999,1,1,32,33],[1000,3,3,33,36],[1001,2,2,36,38],[1002,8,8,38,46]]],[43,19,19,46,65,[[1024,2,2,46,48],[1025,3,3,48,51],[1027,3,3,51,54],[1028,1,1,54,55],[1031,2,2,55,57],[1033,1,1,57,58],[1035,1,1,58,59],[1037,1,1,59,60],[1040,1,1,60,61],[1041,2,2,61,63],[1042,2,2,63,65]]],[44,1,1,65,66,[[1055,1,1,65,66]]],[48,2,2,66,68,[[1100,2,2,66,68]]],[51,1,1,68,69,[[1114,1,1,68,69]]],[58,1,1,69,70,[[1146,1,1,69,70]]],[65,10,10,70,80,[[1169,1,1,70,71],[1176,1,1,71,72],[1178,1,1,72,73],[1179,1,1,73,74],[1182,1,1,74,75],[1184,1,1,75,76],[1186,2,2,76,78],[1187,2,2,78,80]]]],[23208,23341,23343,23346,23626,23709,23974,24169,24171,24197,24225,24310,24547,24732,24856,24858,25024,25047,25163,25268,25355,25393,25394,25682,25702,25736,25737,25908,26076,26077,26095,26107,26133,26203,26205,26207,26214,26217,26273,26290,26295,26298,26299,26307,26308,26315,27131,27150,27191,27202,27214,27270,27279,27280,27312,27425,27439,27491,27579,27636,27744,27770,27791,27802,27803,28195,29281,29282,29619,30283,30758,30862,30903,30921,30975,30994,31039,31047,31055,31063]]],["descend",[4,4,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,1,1,1,2,[[1028,1,1,1,2]]],[44,1,1,2,3,[[1055,1,1,2,3]]],[51,1,1,3,4,[[1114,1,1,3,4]]]],[24858,27312,28195,29619]]],["descended",[7,7,[[39,3,3,0,3,[[935,2,2,0,2],[956,1,1,2,3]]],[41,1,1,3,4,[[975,1,1,3,4]]],[43,1,1,4,5,[[1041,1,1,4,5]]],[48,2,2,5,7,[[1100,2,2,5,7]]]],[23341,23343,24197,25047,27770,29281,29282]]],["descending",[7,7,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[42,3,3,2,5,[[997,3,3,2,5]]],[43,1,1,5,6,[[1027,1,1,5,6]]],[65,1,1,6,7,[[1187,1,1,6,7]]]],[23208,24225,26076,26077,26095,27270,31063]]],["down",[61,61,[[39,6,6,0,6,[[936,1,1,0,1],[942,1,1,1,2],[945,1,1,2,3],[952,1,1,3,4],[955,2,2,4,6]]],[40,4,4,6,10,[[959,1,1,6,7],[965,1,1,7,8],[969,1,1,8,9],[971,1,1,9,10]]],[41,11,11,10,21,[[974,1,1,10,11],[978,1,1,11,12],[980,1,1,12,13],[981,1,1,13,14],[982,2,2,14,16],[989,1,1,16,17],[990,1,1,17,18],[991,2,2,18,20],[994,1,1,20,21]]],[42,15,15,21,36,[[998,1,1,21,22],[999,1,1,22,23],[1000,3,3,23,26],[1001,2,2,26,28],[1002,8,8,28,36]]],[43,16,16,36,52,[[1024,2,2,36,38],[1025,3,3,38,41],[1027,2,2,41,43],[1031,2,2,43,45],[1033,1,1,45,46],[1035,1,1,46,47],[1037,1,1,47,48],[1040,1,1,48,49],[1041,1,1,49,50],[1042,2,2,50,52]]],[58,1,1,52,53,[[1146,1,1,52,53]]],[65,8,8,53,61,[[1169,1,1,53,54],[1176,1,1,54,55],[1178,1,1,55,56],[1179,1,1,56,57],[1184,1,1,57,58],[1186,2,2,58,60],[1187,1,1,60,61]]]],[23346,23626,23709,23974,24169,24171,24310,24547,24732,24856,25024,25163,25268,25355,25393,25394,25682,25702,25736,25737,25908,26107,26133,26203,26205,26207,26214,26217,26273,26290,26295,26298,26299,26307,26308,26315,27131,27150,27191,27202,27214,27279,27280,27425,27439,27491,27579,27636,27744,27791,27802,27803,30283,30758,30862,30903,30921,30994,31039,31047,31055]]],["fell",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30975]]]]},{"k":"G2598","v":[["*",[3,3,[[46,1,1,0,1,[[1081,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]],[65,1,1,2,3,[[1178,1,1,2,3]]]],[28868,30045,30901]]],["down",[2,2,[[46,1,1,0,1,[[1081,1,1,0,1]]],[65,1,1,1,2,[[1178,1,1,1,2]]]],[28868,30901]]],["laying",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30045]]]]},{"k":"G2599","v":[["burden",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29038]]]]},{"k":"G2600","v":[["descent",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25768]]]]},{"k":"G2601","v":[["down",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[23482,25378]]]]},{"k":"G2602","v":[["*",[11,11,[[39,2,2,0,2,[[941,1,1,0,1],[953,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[42,1,1,3,4,[[1013,1,1,3,4]]],[48,1,1,4,5,[[1097,1,1,4,5]]],[57,3,3,5,8,[[1136,1,1,5,6],[1141,1,1,6,7],[1143,1,1,7,8]]],[59,1,1,8,9,[[1151,1,1,8,9]]],[65,2,2,9,11,[[1179,1,1,9,10],[1183,1,1,10,11]]]],[23574,24042,25455,26783,29210,30017,30131,30183,30394,30916,30983]]],["conceive",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30183]]],["foundation",[10,10,[[39,2,2,0,2,[[941,1,1,0,1],[953,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[42,1,1,3,4,[[1013,1,1,3,4]]],[48,1,1,4,5,[[1097,1,1,4,5]]],[57,2,2,5,7,[[1136,1,1,5,6],[1141,1,1,6,7]]],[59,1,1,7,8,[[1151,1,1,7,8]]],[65,2,2,8,10,[[1179,1,1,8,9],[1183,1,1,9,10]]]],[23574,24042,25455,26783,29210,30017,30131,30394,30916,30983]]]]},{"k":"G2603","v":[["+",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29512]]]]},{"k":"G2604","v":[["forth",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27541]]]]},{"k":"G2605","v":[["*",[17,17,[[43,10,10,0,10,[[1021,1,1,0,1],[1030,2,2,1,3],[1032,1,1,3,4],[1033,2,2,4,6],[1034,3,3,6,9],[1043,1,1,9,10]]],[44,1,1,10,11,[[1046,1,1,10,11]]],[45,3,3,11,14,[[1063,1,1,11,12],[1070,1,1,12,13],[1072,1,1,13,14]]],[49,2,2,14,16,[[1103,2,2,14,16]]],[50,1,1,16,17,[[1107,1,1,16,17]]]],[27024,27367,27400,27478,27500,27504,27526,27536,27546,27846,27938,28395,28554,28626,29377,29379,29493]]],["+",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27938]]],["declare",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27546]]],["declaring",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28395]]],["preach",[4,4,[[43,1,1,0,1,[[1034,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[50,1,1,3,4,[[1107,1,1,3,4]]]],[27526,28554,29377,29493]]],["preached",[6,6,[[43,5,5,0,5,[[1021,1,1,0,1],[1030,2,2,1,3],[1032,1,1,3,4],[1034,1,1,4,5]]],[49,1,1,5,6,[[1103,1,1,5,6]]]],[27024,27367,27400,27478,27536,29379]]],["shew",[3,3,[[43,2,2,0,2,[[1033,1,1,0,1],[1043,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]]],[27500,27846,28626]]],["teach",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27504]]]]},{"k":"G2606","v":[["+",[3,3,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23403,24404,25298]]]]},{"k":"G2607","v":[["*",[3,3,[[47,1,1,0,1,[[1092,1,1,0,1]]],[61,2,2,1,3,[[1161,2,2,1,3]]]],[29092,30599,30600]]],["blamed",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29092]]],["condemn",[2,2,[[61,2,2,0,2,[[1161,2,2,0,2]]]],[30599,30600]]]]},{"k":"G2608","v":[["*",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[42,3,3,1,4,[[1015,3,3,1,4]]]],[23509,26856,26857,26858]]],["brake",[2,2,[[42,2,2,0,2,[[1015,2,2,0,2]]]],[26857,26858]]],["break",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23509]]],["broken",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26856]]]]},{"k":"G2609","v":[["*",[10,10,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,8,8,1,9,[[1026,1,1,1,2],[1038,1,1,2,3],[1039,1,1,3,4],[1040,3,3,4,7],[1044,1,1,7,8],[1045,1,1,8,9]]],[44,1,1,9,10,[[1055,1,1,9,10]]]],[25118,27246,27667,27734,27749,27754,27762,27858,27911,28194]]],["+",[5,5,[[43,4,4,0,4,[[1026,1,1,0,1],[1039,1,1,1,2],[1040,2,2,2,4]]],[44,1,1,4,5,[[1055,1,1,4,5]]]],[27246,27734,27749,27762,28194]]],["brought",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25118]]],["down",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27754]]],["landed",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27667]]],["landing",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27911]]],["touched",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27858]]]]},{"k":"G2610","v":[["subdued",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30205]]]]},{"k":"G2611","v":[["up",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25397]]]]},{"k":"G2612","v":[["evident",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30079]]]]},{"k":"G2613","v":[["*",[5,4,[[39,2,2,0,2,[[940,2,2,0,2]]],[41,2,1,2,3,[[978,2,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]]],[23496,23526,25183,30360]]],["condemn",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25183]]],["condemned",[4,4,[[39,2,2,0,2,[[940,2,2,0,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]]],[23496,23526,25183,30360]]]]},{"k":"G2614","v":[["after",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24251]]]]},{"k":"G2615","v":[["+",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]]],[29009,29085]]]]},{"k":"G2616","v":[["*",[2,2,[[43,1,1,0,1,[[1027,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[27297,30299]]],["oppress",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30299]]],["oppressed",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27297]]]]},{"k":"G2617","v":[["*",[13,12,[[41,1,1,0,1,[[985,1,1,0,1]]],[44,3,3,1,4,[[1050,1,1,1,2],[1054,1,1,2,3],[1055,1,1,3,4]]],[45,5,4,4,8,[[1062,2,1,4,5],[1072,3,3,5,8]]],[46,2,2,8,10,[[1084,1,1,8,9],[1086,1,1,9,10]]],[59,2,2,10,12,[[1152,1,1,10,11],[1153,1,1,11,12]]]],[25535,28052,28188,28199,28390,28604,28605,28622,28930,28960,30405,30440]]],["+",[2,2,[[44,1,1,0,1,[[1050,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]]],[28052,28930]]],["ashamed",[5,5,[[41,1,1,0,1,[[985,1,1,0,1]]],[44,2,2,1,3,[[1054,1,1,1,2],[1055,1,1,2,3]]],[46,1,1,3,4,[[1086,1,1,3,4]]],[59,1,1,4,5,[[1153,1,1,4,5]]]],[25535,28188,28199,28960,30440]]],["confound",[2,1,[[45,2,1,0,1,[[1062,2,1,0,1]]]],[28390]]],["confounded",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30405]]],["dishonoureth",[2,2,[[45,2,2,0,2,[[1072,2,2,0,2]]]],[28604,28605]]],["shame",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28622]]]]},{"k":"G2618","v":[["*",[12,11,[[39,3,3,0,3,[[931,1,1,0,1],[941,2,2,1,3]]],[41,1,1,3,4,[[975,1,1,3,4]]],[43,1,1,4,5,[[1036,1,1,4,5]]],[45,1,1,5,6,[[1064,1,1,5,6]]],[57,1,1,6,7,[[1145,1,1,6,7]]],[60,1,1,7,8,[[1158,1,1,7,8]]],[65,4,3,8,11,[[1174,2,1,8,9],[1183,1,1,9,10],[1184,1,1,10,11]]]],[23204,23569,23579,25042,27604,28425,30252,30532,30834,30991,31001]]],["burn",[3,3,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[65,1,1,2,3,[[1183,1,1,2,3]]]],[23569,25042,30991]]],["burned",[5,5,[[39,1,1,0,1,[[941,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]],[45,1,1,2,3,[[1064,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]],[65,1,1,4,5,[[1184,1,1,4,5]]]],[23579,27604,28425,30252,31001]]],["up",[4,3,[[39,1,1,0,1,[[931,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]],[65,2,1,2,3,[[1174,2,1,2,3]]]],[23204,30532,30834]]]]},{"k":"G2619","v":[["*",[3,2,[[45,3,2,0,2,[[1072,3,2,0,2]]]],[28606,28607]]],["cover",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28607]]],["covered",[2,1,[[45,2,1,0,1,[[1072,2,1,0,1]]]],[28606]]]]},{"k":"G2620","v":[["*",[4,3,[[44,2,1,0,1,[[1056,2,1,0,1]]],[58,2,2,1,3,[[1147,1,1,1,2],[1148,1,1,2,3]]]],[28227,30306,30333]]],["+",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28227]]],["against",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30306]]],["boast",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28227]]],["glory",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30333]]]]},{"k":"G2621","v":[["*",[11,11,[[40,4,4,0,4,[[957,1,1,0,1],[958,2,2,1,3],[970,1,1,3,4]]],[41,2,2,4,6,[[977,2,2,4,6]]],[42,2,2,6,8,[[1001,2,2,6,8]]],[43,2,2,8,10,[[1026,1,1,8,9],[1045,1,1,9,10]]],[45,1,1,10,11,[[1069,1,1,10,11]]]],[24245,24264,24275,24757,25132,25136,26213,26216,27249,27907,28537]]],["+",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[25136,27249]]],["lay",[5,5,[[40,2,2,0,2,[[957,1,1,0,1],[958,1,1,1,2]]],[41,1,1,2,3,[[977,1,1,2,3]]],[42,1,1,3,4,[[1001,1,1,3,4]]],[43,1,1,4,5,[[1045,1,1,4,5]]]],[24245,24264,25132,26213,27907]]],["lie",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26216]]],["meat",[3,3,[[40,2,2,0,2,[[958,1,1,0,1],[970,1,1,1,2]]],[45,1,1,2,3,[[1069,1,1,2,3]]]],[24275,24757,28537]]]]},{"k":"G2622","v":[["brake",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[24448,25317]]]]},{"k":"G2623","v":[["up",[2,2,[[41,1,1,0,1,[[975,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]]],[25045,27833]]]]},{"k":"G2624","v":[["+",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27381]]]]},{"k":"G2625","v":[["*",[3,3,[[41,3,3,0,3,[[981,1,1,0,1],[986,1,1,1,2],[996,1,1,2,3]]]],[25315,25561,26021]]],["+",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25561]]],["down",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25315]]],["meat",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26021]]]]},{"k":"G2626","v":[["overflowed",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30528]]]]},{"k":"G2627","v":[["flood",[4,4,[[39,2,2,0,2,[[952,2,2,0,2]]],[41,1,1,2,3,[[989,1,1,2,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]]],[23995,23996,25678,30505]]]]},{"k":"G2628","v":[["*",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,1,1,1,2,[[1033,1,1,1,2]]]],[25990,27500]]],["after",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25990]]],["followed",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27500]]]]},{"k":"G2629","v":[["cutting",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24369]]]]},{"k":"G2630","v":[["+",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25092]]]]},{"k":"G2631","v":[["condemnation",[3,3,[[44,3,3,0,3,[[1050,2,2,0,2],[1053,1,1,2,3]]]],[28063,28065,28117]]]]},{"k":"G2632","v":[["*",[19,19,[[39,4,4,0,4,[[940,2,2,0,2],[948,1,1,2,3],[955,1,1,3,4]]],[40,3,3,4,7,[[966,1,1,4,5],[970,1,1,5,6],[972,1,1,6,7]]],[41,2,2,7,9,[[983,2,2,7,9]]],[42,2,2,9,11,[[1004,2,2,9,11]]],[44,4,4,11,15,[[1047,1,1,11,12],[1053,2,2,12,14],[1059,1,1,14,15]]],[45,1,1,15,16,[[1072,1,1,15,16]]],[57,1,1,16,17,[[1143,1,1,16,17]]],[58,1,1,17,18,[[1150,1,1,17,18]]],[60,1,1,18,19,[[1157,1,1,18,19]]]],[23530,23531,23810,24132,24621,24818,24889,25436,25437,26391,26392,27963,28119,28150,28303,28632,30179,30363,30506]]],["condemn",[7,7,[[39,3,3,0,3,[[940,2,2,0,2],[948,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,2,2,4,6,[[983,2,2,4,6]]],[42,1,1,6,7,[[1004,1,1,6,7]]]],[23530,23531,23810,24621,25436,25437,26392]]],["condemned",[8,8,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]],[44,1,1,3,4,[[1053,1,1,3,4]]],[45,1,1,4,5,[[1072,1,1,4,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]],[58,1,1,6,7,[[1150,1,1,6,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]]],[24132,24818,26391,28119,28632,30179,30363,30506]]],["condemnest",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27963]]],["condemneth",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28150]]],["damned",[2,2,[[40,1,1,0,1,[[972,1,1,0,1]]],[44,1,1,1,2,[[1059,1,1,1,2]]]],[24889,28303]]]]},{"k":"G2633","v":[["*",[2,2,[[46,2,2,0,2,[[1080,1,1,0,1],[1084,1,1,1,2]]]],[28850,28919]]],["condemn",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28919]]],["condemnation",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28850]]]]},{"k":"G2634","v":[["*",[4,4,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[43,1,1,2,3,[[1036,1,1,2,3]]],[59,1,1,3,4,[[1155,1,1,3,4]]]],[23817,24630,27601,30468]]],["dominion",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23817]]],["lordship",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24630]]],["over",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30468]]],["overcame",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27601]]]]},{"k":"G2635","v":[["*",[5,3,[[58,3,1,0,1,[[1149,3,1,0,1]]],[59,2,2,1,3,[[1152,1,1,1,2],[1153,1,1,2,3]]]],[30348,30411,30440]]],["+",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30348]]],["against",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30411]]],["evil",[2,1,[[58,2,1,0,1,[[1149,2,1,0,1]]]],[30348]]],["of",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30440]]]]},{"k":"G2636","v":[["*",[2,2,[[46,1,1,0,1,[[1089,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[29042,30400]]],["backbitings",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29042]]],["speakings",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30400]]]]},{"k":"G2637","v":[["Backbiters",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27960]]]]},{"k":"G2638","v":[["*",[15,14,[[40,1,1,0,1,[[965,1,1,0,1]]],[42,4,4,1,5,[[997,1,1,1,2],[1004,2,2,2,4],[1008,1,1,4,5]]],[43,3,3,5,8,[[1021,1,1,5,6],[1027,1,1,6,7],[1042,1,1,7,8]]],[44,1,1,8,9,[[1054,1,1,8,9]]],[45,1,1,9,10,[[1070,1,1,9,10]]],[48,1,1,10,11,[[1099,1,1,10,11]]],[49,3,2,11,13,[[1105,3,2,11,13]]],[51,1,1,13,14,[[1115,1,1,13,14]]]],[24556,26049,26384,26385,26615,27035,27293,27821,28185,28564,29269,29433,29434,29625]]],["apprehend",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29433]]],["apprehended",[2,2,[[49,2,2,0,2,[[1105,2,2,0,2]]]],[29433,29434]]],["attained",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28185]]],["comprehend",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29269]]],["comprehended",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26049]]],["found",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27821]]],["obtain",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28564]]],["overtake",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29625]]],["perceive",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27293]]],["perceived",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27035]]],["taken",[2,2,[[42,2,2,0,2,[[1004,2,2,0,2]]]],[26384,26385]]],["taketh",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24556]]],["upon",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26615]]]]},{"k":"G2639","v":[["number",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29772]]]]},{"k":"G2640","v":[["remnant",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28182]]]]},{"k":"G2641","v":[["*",[25,25,[[39,4,4,0,4,[[932,1,1,0,1],[944,1,1,1,2],[947,1,1,2,3],[949,1,1,3,4]]],[40,3,3,4,7,[[966,1,1,4,5],[968,1,1,5,6],[970,1,1,6,7]]],[41,4,4,7,11,[[977,1,1,7,8],[982,1,1,8,9],[987,1,1,9,10],[992,1,1,10,11]]],[42,1,1,11,12,[[1004,1,1,11,12]]],[43,6,6,12,18,[[1019,1,1,12,13],[1023,1,1,13,14],[1035,1,1,14,15],[1038,1,1,15,16],[1041,1,1,16,17],[1042,1,1,17,18]]],[44,1,1,18,19,[[1056,1,1,18,19]]],[48,1,1,19,20,[[1101,1,1,19,20]]],[51,1,1,20,21,[[1113,1,1,20,21]]],[55,1,1,21,22,[[1129,1,1,21,22]]],[57,2,2,22,24,[[1136,1,1,22,23],[1143,1,1,23,24]]],[60,1,1,24,25,[[1157,1,1,24,25]]]],[23222,23676,23767,23843,24595,24692,24806,25135,25403,25592,25810,26390,26980,27103,27576,27667,27796,27810,28213,29335,29591,29897,30015,30199,30515]]],["+",[2,2,[[43,2,2,0,2,[[1035,1,1,0,1],[1042,1,1,1,2]]]],[27576,27810]]],["forsaken",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30515]]],["forsook",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30199]]],["leave",[6,6,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,2,2,1,3,[[966,1,1,1,2],[968,1,1,2,3]]],[41,1,1,3,4,[[987,1,1,3,4]]],[43,1,1,4,5,[[1023,1,1,4,5]]],[48,1,1,5,6,[[1101,1,1,5,6]]]],[23767,24595,24692,25592,27103,29335]]],["leaving",[1,1,[[39,1,1,0,1,[[932,1,1,0,1]]]],[23222]]],["left",[13,13,[[39,2,2,0,2,[[944,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,3,3,3,6,[[977,1,1,3,4],[982,1,1,4,5],[992,1,1,5,6]]],[42,1,1,6,7,[[1004,1,1,6,7]]],[43,3,3,7,10,[[1019,1,1,7,8],[1038,1,1,8,9],[1041,1,1,9,10]]],[51,1,1,10,11,[[1113,1,1,10,11]]],[55,1,1,11,12,[[1129,1,1,11,12]]],[57,1,1,12,13,[[1136,1,1,12,13]]]],[23676,23843,24806,25135,25403,25810,26390,26980,27667,27796,29591,29897,30015]]],["reserved",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28213]]]]},{"k":"G2642","v":[["stone",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25785]]]]},{"k":"G2643","v":[["*",[4,4,[[44,2,2,0,2,[[1050,1,1,0,1],[1056,1,1,1,2]]],[46,2,2,2,4,[[1082,2,2,2,4]]]],[28058,28224,28895,28896]]],["atonement",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28058]]],["reconciliation",[2,2,[[46,2,2,0,2,[[1082,2,2,0,2]]]],[28895,28896]]],["reconciling",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28224]]]]},{"k":"G2644","v":[["*",[6,5,[[44,2,1,0,1,[[1050,2,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]],[46,3,3,2,5,[[1082,3,3,2,5]]]],[28057,28498,28895,28896,28897]]],["reconciled",[5,4,[[44,2,1,0,1,[[1050,2,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]],[46,2,2,2,4,[[1082,2,2,2,4]]]],[28057,28498,28895,28897]]],["reconciling",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28896]]]]},{"k":"G2645","v":[["residue",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27459]]]]},{"k":"G2646","v":[["*",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[994,1,1,2,3]]]],[24768,24980,25875]]],["guestchamber",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24768,25875]]],["inn",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24980]]]]},{"k":"G2647","v":[["*",[17,16,[[39,5,4,0,4,[[933,2,1,0,1],[952,1,1,1,2],[954,1,1,2,3],[955,1,1,3,4]]],[40,3,3,4,7,[[969,1,1,4,5],[970,1,1,5,6],[971,1,1,6,7]]],[41,3,3,7,10,[[981,1,1,7,8],[991,1,1,8,9],[993,1,1,9,10]]],[43,3,3,10,13,[[1022,2,2,10,12],[1023,1,1,12,13]]],[44,1,1,13,14,[[1059,1,1,13,14]]],[46,1,1,14,15,[[1082,1,1,14,15]]],[47,1,1,15,16,[[1092,1,1,15,16]]]],[23251,23959,24115,24169,24719,24812,24855,25313,25738,25832,27097,27098,27115,28300,28878,29099]]],["destroy",[6,5,[[39,3,2,0,2,[[933,2,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[43,1,1,3,4,[[1023,1,1,3,4]]],[44,1,1,4,5,[[1059,1,1,4,5]]]],[23251,24115,24812,27115,28300]]],["destroyed",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29099]]],["destroyest",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24169,24855]]],["dissolved",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28878]]],["down",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]]],[23959,24719,25832]]],["guest",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25738]]],["lodge",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25313]]],["nought",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27097]]],["overthrow",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27098]]]]},{"k":"G2648","v":[["Consider",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23310]]]]},{"k":"G2649","v":[["against",[4,4,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,2,2,2,4,[[970,1,1,2,3],[971,1,1,3,4]]]],[24116,24142,24814,24830]]]]},{"k":"G2650","v":[["+",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26936]]]]},{"k":"G2651","v":[["alone",[2,2,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[24333,25319]]]]},{"k":"G2652","v":[["curse",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31083]]]]},{"k":"G2653","v":[["curse",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24128]]]]},{"k":"G2654","v":[["consuming",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30241]]]]},{"k":"G2655","v":[["*",[3,3,[[46,3,3,0,3,[[1088,1,1,0,1],[1089,2,2,1,3]]]],[28998,29035,29036]]],["+",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29035]]],["burdensome",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29036]]],["chargeable",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28998]]]]},{"k":"G2656","v":[["beckoned",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25114]]]]},{"k":"G2657","v":[["*",[14,14,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,4,4,1,5,[[978,1,1,1,2],[984,2,2,2,4],[992,1,1,4,5]]],[43,4,4,5,9,[[1024,2,2,5,7],[1028,1,1,7,8],[1044,1,1,8,9]]],[44,1,1,9,10,[[1049,1,1,9,10]]],[57,2,2,10,12,[[1135,1,1,10,11],[1142,1,1,11,12]]],[58,2,2,12,14,[[1146,2,2,12,14]]]],[23319,25187,25483,25486,25802,27147,27148,27313,27894,28041,29996,30157,30289,30290]]],["Consider",[2,2,[[41,2,2,0,2,[[984,2,2,0,2]]]],[25483,25486]]],["behold",[2,2,[[43,2,2,0,2,[[1024,2,2,0,2]]]],[27147,27148]]],["beholdeth",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30290]]],["beholding",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30289]]],["consider",[2,2,[[57,2,2,0,2,[[1135,1,1,0,1],[1142,1,1,1,2]]]],[29996,30157]]],["considered",[2,2,[[43,1,1,0,1,[[1028,1,1,0,1]]],[44,1,1,1,2,[[1049,1,1,1,2]]]],[27313,28041]]],["considerest",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23319]]],["discovered",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27894]]],["perceived",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25802]]],["perceivest",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25187]]]]},{"k":"G2658","v":[["*",[13,13,[[43,9,9,0,9,[[1033,1,1,0,1],[1035,2,2,1,3],[1037,1,1,3,4],[1038,1,1,4,5],[1042,1,1,5,6],[1043,1,1,6,7],[1044,1,1,7,8],[1045,1,1,8,9]]],[45,2,2,9,11,[[1071,1,1,9,10],[1075,1,1,10,11]]],[48,1,1,11,12,[[1100,1,1,11,12]]],[49,1,1,12,13,[[1105,1,1,12,13]]]],[27484,27576,27581,27641,27671,27809,27830,27867,27912,28578,28714,29285,29432]]],["attain",[2,2,[[43,1,1,0,1,[[1044,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[27867,29432]]],["came",[8,8,[[43,7,7,0,7,[[1033,1,1,0,1],[1035,2,2,1,3],[1037,1,1,3,4],[1038,1,1,4,5],[1042,1,1,5,6],[1045,1,1,6,7]]],[45,1,1,7,8,[[1075,1,1,7,8]]]],[27484,27576,27581,27641,27671,27809,27912,28714]]],["come",[3,3,[[43,1,1,0,1,[[1043,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]]],[27830,28578,29285]]]]},{"k":"G2659","v":[["slumber",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28217]]]]},{"k":"G2660","v":[["pricked",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26986]]]]},{"k":"G2661","v":[["worthy",[4,4,[[41,2,2,0,2,[[992,1,1,0,1],[993,1,1,1,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]],[52,1,1,3,4,[[1116,1,1,3,4]]]],[25814,25862,27100,29654]]]]},{"k":"G2662","v":[["*",[5,5,[[39,2,2,0,2,[[933,1,1,0,1],[935,1,1,1,2]]],[41,2,2,2,4,[[980,1,1,2,3],[984,1,1,3,4]]],[57,1,1,4,5,[[1142,1,1,4,5]]]],[23247,23322,25250,25460,30162]]],["down",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25250]]],["foot",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[23247,30162]]],["trample",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23322]]],["trode",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25460]]]]},{"k":"G2663","v":[["rest",[9,8,[[43,1,1,0,1,[[1024,1,1,0,1]]],[57,8,7,1,8,[[1135,2,2,1,3],[1136,6,5,3,8]]]],[27165,30006,30013,30015,30017,30019,30024,30025]]]]},{"k":"G2664","v":[["*",[4,4,[[43,1,1,0,1,[[1031,1,1,0,1]]],[57,3,3,1,4,[[1136,3,3,1,4]]]],[27432,30018,30022,30024]]],["+",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30022]]],["ceased",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30024]]],["rest",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30018]]],["restrained",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27432]]]]},{"k":"G2665","v":[["veil",[6,6,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[57,3,3,3,6,[[1138,1,1,3,4],[1141,1,1,4,5],[1142,1,1,5,6]]]],[24180,24864,25980,30063,30108,30153]]]]},{"k":"G2666","v":[["*",[7,7,[[39,1,1,0,1,[[951,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[46,2,2,2,4,[[1079,1,1,2,3],[1082,1,1,3,4]]],[57,1,1,4,5,[[1143,1,1,4,5]]],[59,1,1,5,6,[[1155,1,1,5,6]]],[65,1,1,6,7,[[1178,1,1,6,7]]]],[23942,28772,28831,28881,30201,30473,30907]]],["devour",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30473]]],["drowned",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30201]]],["swallow",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23942]]],["up",[4,4,[[45,1,1,0,1,[[1076,1,1,0,1]]],[46,2,2,1,3,[[1079,1,1,1,2],[1082,1,1,2,3]]],[65,1,1,3,4,[[1178,1,1,3,4]]]],[28772,28831,28881,30907]]]]},{"k":"G2667","v":[["*",[2,2,[[43,2,2,0,2,[[1043,1,1,0,1],[1045,1,1,1,2]]]],[27837,27905]]],["down",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27905]]],["fallen",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27837]]]]},{"k":"G2668","v":[["arrived",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25271]]]]},{"k":"G2669","v":[["*",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[27140,30507]]],["oppressed",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27140]]],["vexed",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30507]]]]},{"k":"G2670","v":[["*",[2,2,[[39,2,2,0,2,[[942,1,1,0,1],[946,1,1,1,2]]]],[23627,23733]]],["drowned",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23733]]],["sink",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23627]]]]},{"k":"G2671","v":[["*",[6,5,[[47,3,2,0,2,[[1093,3,2,0,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]],[60,1,1,4,5,[[1157,1,1,4,5]]]],[29112,29115,30052,30329,30514]]],["curse",[3,2,[[47,3,2,0,2,[[1093,3,2,0,2]]]],[29112,29115]]],["cursed",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30514]]],["cursing",[2,2,[[57,1,1,0,1,[[1138,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[30052,30329]]]]},{"k":"G2672","v":[["*",[6,6,[[39,2,2,0,2,[[933,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[967,1,1,2,3]]],[41,1,1,3,4,[[978,1,1,3,4]]],[44,1,1,4,5,[[1057,1,1,4,5]]],[58,1,1,5,6,[[1148,1,1,5,6]]]],[23278,24049,24661,25174,28259,30328]]],["curse",[4,4,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]]],[23278,25174,28259,30328]]],["cursed",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24049]]],["cursedst",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24661]]]]},{"k":"G2673","v":[["*",[27,26,[[41,1,1,0,1,[[985,1,1,0,1]]],[44,6,6,1,7,[[1048,2,2,1,3],[1049,1,1,3,4],[1051,1,1,4,5],[1052,2,2,5,7]]],[45,9,8,7,15,[[1062,1,1,7,8],[1063,1,1,8,9],[1067,1,1,9,10],[1074,4,3,10,13],[1076,2,2,13,15]]],[46,4,4,15,19,[[1080,4,4,15,19]]],[47,3,3,19,22,[[1093,1,1,19,20],[1095,2,2,20,22]]],[48,1,1,22,23,[[1098,1,1,22,23]]],[52,1,1,23,24,[[1117,1,1,23,24]]],[54,1,1,24,25,[[1125,1,1,24,25]]],[57,1,1,25,26,[[1134,1,1,25,26]]]],[25525,27994,28022,28036,28074,28093,28097,28391,28400,28480,28673,28675,28676,28742,28744,28848,28852,28854,28855,29119,29166,29173,29244,29669,29819,29991]]],["+",[3,3,[[44,1,1,0,1,[[1048,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]],[54,1,1,2,3,[[1125,1,1,2,3]]]],[27994,29119,29819]]],["abolished",[2,2,[[46,1,1,0,1,[[1080,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]]],[28854,29244]]],["away",[6,6,[[45,3,3,0,3,[[1074,3,3,0,3]]],[46,3,3,3,6,[[1080,3,3,3,6]]]],[28673,28675,28676,28848,28852,28855]]],["ceased",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29173]]],["cumbereth",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25525]]],["delivered",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28097]]],["destroy",[3,3,[[45,1,1,0,1,[[1067,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]],[57,1,1,2,3,[[1134,1,1,2,3]]]],[28480,29669,29991]]],["destroyed",[2,2,[[44,1,1,0,1,[[1051,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]]],[28074,28744]]],["down",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28742]]],["effect",[2,2,[[44,1,1,0,1,[[1049,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]]],[28036,29166]]],["fail",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28673]]],["loosed",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28093]]],["nought",[2,2,[[45,2,2,0,2,[[1062,1,1,0,1],[1063,1,1,1,2]]]],[28391,28400]]],["void",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28022]]]]},{"k":"G2674","v":[["numbered",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26940]]]]},{"k":"G2675","v":[["*",[13,13,[[39,2,2,0,2,[[932,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,1,1,3,4,[[978,1,1,3,4]]],[44,1,1,4,5,[[1054,1,1,4,5]]],[45,1,1,5,6,[[1062,1,1,5,6]]],[46,1,1,6,7,[[1090,1,1,6,7]]],[47,1,1,7,8,[[1096,1,1,7,8]]],[51,1,1,8,9,[[1113,1,1,8,9]]],[57,3,3,9,12,[[1142,1,1,9,10],[1143,1,1,10,11],[1145,1,1,11,12]]],[59,1,1,12,13,[[1155,1,1,12,13]]]],[23230,23842,24234,25186,28177,28373,29054,29189,29600,30138,30175,30262,30475]]],["+",[2,2,[[57,1,1,0,1,[[1145,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[30262,30475]]],["fitted",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28177]]],["framed",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30175]]],["mending",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23230,24234]]],["perfect",[3,3,[[41,1,1,0,1,[[978,1,1,0,1]]],[46,1,1,1,2,[[1090,1,1,1,2]]],[51,1,1,2,3,[[1113,1,1,2,3]]]],[25186,29054,29600]]],["perfected",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23842]]],["prepared",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30138]]],["restore",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29189]]],["together",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28373]]]]},{"k":"G2676","v":[["perfection",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29052]]]]},{"k":"G2677","v":[["perfecting",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29284]]]]},{"k":"G2678","v":[["*",[4,4,[[43,4,4,0,4,[[1029,1,1,0,1],[1030,1,1,1,2],[1036,1,1,2,3],[1038,1,1,3,4]]]],[27354,27378,27618,27704]]],["beckoned",[2,2,[[43,2,2,0,2,[[1036,1,1,0,1],[1038,1,1,1,2]]]],[27618,27704]]],["beckoning",[2,2,[[43,2,2,0,2,[[1029,1,1,0,1],[1030,1,1,1,2]]]],[27354,27378]]]]},{"k":"G2679","v":[["*",[2,2,[[43,1,1,0,1,[[1032,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]]],[27458,28212]]],["down",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28212]]],["ruins",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27458]]]]},{"k":"G2680","v":[["*",[11,10,[[39,1,1,0,1,[[939,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[979,1,1,3,4]]],[57,6,5,4,9,[[1135,3,2,4,6],[1141,2,2,6,8],[1143,1,1,8,9]]],[59,1,1,9,10,[[1153,1,1,9,10]]]],[23469,24217,24910,25222,29998,29999,30107,30111,30179,30444]]],["builded",[2,2,[[57,2,2,0,2,[[1135,2,2,0,2]]]],[29998,29999]]],["built",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[29999]]],["made",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30107]]],["ordained",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30111]]],["prepare",[3,3,[[39,1,1,0,1,[[939,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[979,1,1,2,3]]]],[23469,24217,25222]]],["prepared",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[24910,30179]]],["preparing",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30444]]]]},{"k":"G2681","v":[["*",[4,4,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[985,1,1,2,3]]],[43,1,1,3,4,[[1019,1,1,3,4]]]],[23571,24355,25537,26975]]],["lodge",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]]],[23571,24355]]],["lodged",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25537]]],["rest",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26975]]]]},{"k":"G2682","v":[["nests",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[23365,25359]]]]},{"k":"G2683","v":[["shadowing",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30110]]]]},{"k":"G2684","v":[["out",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29085]]]]},{"k":"G2685","v":[["spies",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30203]]]]},{"k":"G2686","v":[["with",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27135]]]]},{"k":"G2687","v":[["*",[2,2,[[43,2,2,0,2,[[1036,2,2,0,2]]]],[27620,27621]]],["appeased",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27620]]],["quiet",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27621]]]]},{"k":"G2688","v":[["behaviour",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29911]]]]},{"k":"G2689","v":[["apparel",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29725]]]]},{"k":"G2690","v":[["overthrew",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]]],[23838,24655]]]]},{"k":"G2691","v":[["against",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29774]]]]},{"k":"G2692","v":[["*",[2,2,[[54,1,1,0,1,[[1126,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[29841,30506]]],["overthrow",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30506]]],["subverting",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29841]]]]},{"k":"G2693","v":[["overthrown",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28572]]]]},{"k":"G2694","v":[["hale",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25517]]]]},{"k":"G2695","v":[["slay",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25758]]]]},{"k":"G2696","v":[["sealed",[1,1,[[65,1,1,0,1,[[1171,1,1,0,1]]]],[30780]]]]},{"k":"G2697","v":[["possession",[2,2,[[43,2,2,0,2,[[1024,2,2,0,2]]]],[27121,27161]]]]},{"k":"G2698","v":[["*",[3,3,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,2,2,1,3,[[1041,1,1,1,2],[1042,1,1,2,3]]]],[24872,27796,27805]]],["do",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27805]]],["laid",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24872]]],["shew",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27796]]]]},{"k":"G2699","v":[["concision",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29423]]]]},{"k":"G2700","v":[["through",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30232]]]]},{"k":"G2701","v":[["down",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27696]]]]},{"k":"G2702","v":[["*",[3,2,[[43,3,2,0,2,[[1037,2,1,0,1],[1043,1,1,1,2]]]],[27635,27833]]],["+",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27833]]],["down",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27635]]],["into",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27635]]]]},{"k":"G2703","v":[["*",[2,2,[[43,1,1,0,1,[[1031,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[27420,30062]]],["fled",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27420]]],["refuge",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30062]]]]},{"k":"G2704","v":[["*",[2,2,[[54,1,1,0,1,[[1127,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[29861,30512]]],["corrupt",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29861]]],["perish",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30512]]]]},{"k":"G2705","v":[["*",[6,6,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,3,3,2,5,[[979,2,2,2,4],[987,1,1,4,5]]],[43,1,1,5,6,[[1037,1,1,5,6]]]],[24103,24799,25233,25240,25608,27663]]],["kiss",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25240]]],["kissed",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,2,2,2,4,[[979,1,1,2,3],[987,1,1,3,4]]],[43,1,1,4,5,[[1037,1,1,4,5]]]],[24103,24799,25233,25608,27663]]]]},{"k":"G2706","v":[["*",[9,9,[[39,2,2,0,2,[[934,1,1,0,1],[946,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[44,1,1,3,4,[[1047,1,1,3,4]]],[45,1,1,4,5,[[1072,1,1,4,5]]],[53,2,2,5,7,[[1122,1,1,5,6],[1124,1,1,6,7]]],[57,1,1,7,8,[[1144,1,1,7,8]]],[60,1,1,8,9,[[1157,1,1,8,9]]]],[23306,23737,25633,27966,28622,29759,29790,30214,30510]]],["despise",[7,7,[[39,2,2,0,2,[[934,1,1,0,1],[946,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[45,1,1,3,4,[[1072,1,1,3,4]]],[53,2,2,4,6,[[1122,1,1,4,5],[1124,1,1,5,6]]],[60,1,1,6,7,[[1157,1,1,6,7]]]],[23306,23737,25633,28622,29759,29790,30510]]],["despisest",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27966]]],["despising",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30214]]]]},{"k":"G2707","v":[["despisers",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27403]]]]},{"k":"G2708","v":[["poured",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24061,24757]]]]},{"k":"G2709","v":[["earth",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29401]]]]},{"k":"G2710","v":[["*",[2,2,[[45,2,2,0,2,[[1068,1,1,0,1],[1070,1,1,1,2]]]],[28518,28558]]],["abuse",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28558]]],["abusing",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28518]]]]},{"k":"G2711","v":[["cool",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25644]]]]},{"k":"G2712","v":[["idolatry",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27539]]]]},{"k":"G2713","v":[["*",[5,5,[[40,3,3,0,3,[[967,1,1,0,1],[968,1,1,1,2],[969,1,1,2,3]]],[41,1,1,3,4,[[991,1,1,3,4]]],[44,1,1,4,5,[[1049,1,1,4,5]]]],[24642,24714,24720,25761,28039]]],["against",[4,4,[[40,3,3,0,3,[[967,1,1,0,1],[968,1,1,1,2],[969,1,1,2,3]]],[41,1,1,3,4,[[991,1,1,3,4]]]],[24642,24714,24720,25761]]],["before",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28039]]]]},{"k":"G2714","v":[["*",[5,5,[[46,2,2,0,2,[[1079,1,1,0,1],[1089,1,1,1,2]]],[48,1,1,2,3,[[1097,1,1,2,3]]],[50,1,1,3,4,[[1107,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[28841,29041,29210,29487,30696]]],["+",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29487]]],["before",[2,2,[[46,1,1,0,1,[[1089,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]]],[29041,29210]]],["presence",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30696]]],["sight",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28841]]]]},{"k":"G2715","v":[["authority",[2,2,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]]],[23817,24630]]]]},{"k":"G2716","v":[["*",[24,23,[[44,11,11,0,11,[[1046,1,1,0,1],[1047,1,1,1,2],[1049,1,1,2,3],[1050,1,1,3,4],[1052,6,6,4,10],[1060,1,1,10,11]]],[45,1,1,11,12,[[1066,1,1,11,12]]],[46,7,6,12,18,[[1081,1,1,12,13],[1082,1,1,13,14],[1084,3,2,14,16],[1086,1,1,16,17],[1089,1,1,17,18]]],[48,1,1,18,19,[[1102,1,1,18,19]]],[49,1,1,19,20,[[1104,1,1,19,20]]],[58,2,2,20,22,[[1146,2,2,20,22]]],[59,1,1,22,23,[[1154,1,1,22,23]]]],[27957,27971,28037,28050,28099,28104,28106,28108,28109,28111,28321,28457,28876,28882,28926,28927,28967,29034,29350,29403,30269,30286,30449]]],["+",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28457]]],["causeth",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28967]]],["do",[3,3,[[44,3,3,0,3,[[1052,3,3,0,3]]]],[28106,28108,28111]]],["doeth",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27971]]],["done",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29350]]],["out",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29403]]],["perform",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28109]]],["worketh",[7,6,[[44,2,2,0,2,[[1049,1,1,0,1],[1050,1,1,1,2]]],[46,3,2,2,4,[[1081,1,1,2,3],[1084,2,1,3,4]]],[58,2,2,4,6,[[1146,2,2,4,6]]]],[28037,28050,28876,28926,30269,30286]]],["working",[2,2,[[44,2,2,0,2,[[1046,1,1,0,1],[1052,1,1,1,2]]]],[27957,28104]]],["wrought",[6,6,[[44,2,2,0,2,[[1052,1,1,0,1],[1060,1,1,1,2]]],[46,3,3,2,5,[[1082,1,1,2,3],[1084,1,1,3,4],[1089,1,1,4,5]]],[59,1,1,5,6,[[1154,1,1,5,6]]]],[28099,28321,28882,28927,29034,30449]]]]},{"k":"G2718","v":[["*",[13,13,[[41,2,2,0,2,[[976,1,1,0,1],[981,1,1,1,2]]],[43,10,10,2,12,[[1025,1,1,2,3],[1026,1,1,3,4],[1028,1,1,4,5],[1029,1,1,5,6],[1030,1,1,6,7],[1032,1,1,7,8],[1035,2,2,8,10],[1038,1,1,10,11],[1044,1,1,11,12]]],[58,1,1,12,13,[[1148,1,1,12,13]]]],[25094,25338,27181,27248,27334,27356,27366,27443,27562,27579,27674,27860,30334]]],["came",[2,2,[[43,2,2,0,2,[[1028,1,1,0,1],[1044,1,1,1,2]]]],[27334,27860]]],["come",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27562]]],["departed",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27366]]],["descendeth",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30334]]],["down",[7,7,[[41,2,2,0,2,[[976,1,1,0,1],[981,1,1,1,2]]],[43,5,5,2,7,[[1025,1,1,2,3],[1026,1,1,3,4],[1029,1,1,4,5],[1032,1,1,5,6],[1038,1,1,6,7]]]],[25094,25338,27181,27248,27356,27443,27674]]],["landed",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27579]]]]},{"k":"G2719","v":[["*",[15,15,[[39,2,2,0,2,[[941,1,1,0,1],[951,1,1,1,2]]],[40,2,2,2,4,[[960,1,1,2,3],[968,1,1,3,4]]],[41,3,3,4,7,[[980,1,1,4,5],[987,1,1,5,6],[992,1,1,6,7]]],[42,1,1,7,8,[[998,1,1,7,8]]],[46,1,1,8,9,[[1088,1,1,8,9]]],[47,1,1,9,10,[[1095,1,1,9,10]]],[65,5,5,10,15,[[1176,2,2,10,12],[1177,1,1,12,13],[1178,1,1,13,14],[1186,1,1,14,15]]]],[23543,23932,24327,24713,25250,25618,25826,26112,29009,29177,30870,30871,30877,30895,31047]]],["+",[5,5,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[42,1,1,2,3,[[998,1,1,2,3]]],[65,2,2,3,5,[[1176,2,2,3,5]]]],[23543,24327,26112,30870,30871]]],["devour",[6,6,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[46,1,1,3,4,[[1088,1,1,3,4]]],[47,1,1,4,5,[[1095,1,1,4,5]]],[65,1,1,5,6,[[1178,1,1,5,6]]]],[23932,24713,25826,29009,29177,30895]]],["devoured",[3,3,[[41,2,2,0,2,[[980,1,1,0,1],[987,1,1,1,2]]],[65,1,1,2,3,[[1186,1,1,2,3]]]],[25250,25618,31047]]],["devoureth",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30877]]]]},{"k":"G2720","v":[["*",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[51,1,1,1,2,[[1113,1,1,1,2]]],[52,1,1,2,3,[[1118,1,1,2,3]]]],[24972,29601,29683]]],["direct",[2,2,[[51,1,1,0,1,[[1113,1,1,0,1]]],[52,1,1,1,2,[[1118,1,1,1,2]]]],[29601,29683]]],["guide",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24972]]]]},{"k":"G2721","v":[["+",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27569]]]]},{"k":"G2722","v":[["*",[19,19,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,3,3,1,4,[[976,1,1,1,2],[980,1,1,2,3],[986,1,1,3,4]]],[42,1,1,4,5,[[1001,1,1,4,5]]],[43,1,1,5,6,[[1044,1,1,5,6]]],[44,2,2,6,8,[[1046,1,1,6,7],[1052,1,1,7,8]]],[45,3,3,8,11,[[1068,1,1,8,9],[1072,1,1,9,10],[1076,1,1,10,11]]],[46,1,1,11,12,[[1083,1,1,11,12]]],[51,1,1,12,13,[[1115,1,1,12,13]]],[52,2,2,13,15,[[1117,2,2,13,15]]],[56,1,1,15,16,[[1132,1,1,15,16]]],[57,3,3,16,19,[[1135,2,2,16,18],[1142,1,1,18,19]]]],[23864,25105,25260,25562,26214,27895,27948,28097,28517,28602,28720,28908,29642,29667,29668,29951,30001,30009,30156]]],["+",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29668]]],["fast",[3,3,[[51,1,1,0,1,[[1115,1,1,0,1]]],[57,2,2,1,3,[[1135,1,1,1,2],[1142,1,1,2,3]]]],[29642,30001,30156]]],["had",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26214]]],["held",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28097]]],["hold",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[57,1,1,1,2,[[1135,1,1,1,2]]]],[27948,30009]]],["keep",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[45,1,1,1,2,[[1072,1,1,1,2]]]],[25260,28602]]],["made",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27895]]],["memory",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28720]]],["on",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23864]]],["possessed",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28517]]],["possessing",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28908]]],["retained",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29951]]],["stayed",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25105]]],["take",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25562]]],["withholdeth",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29667]]]]},{"k":"G2723","v":[["*",[22,21,[[39,2,2,0,2,[[940,1,1,0,1],[955,1,1,1,2]]],[40,2,2,2,4,[[959,1,1,2,3],[971,1,1,3,4]]],[41,4,4,4,8,[[983,1,1,4,5],[995,3,3,5,8]]],[42,3,2,8,10,[[1001,2,1,8,9],[1004,1,1,9,10]]],[43,9,9,10,19,[[1039,1,1,10,11],[1041,4,4,11,15],[1042,3,3,15,18],[1045,1,1,18,19]]],[44,1,1,19,20,[[1047,1,1,19,20]]],[65,1,1,20,21,[[1178,1,1,20,21]]]],[23499,24141,24290,24829,25459,25937,25945,25949,26255,26387,27734,27771,27777,27782,27788,27801,27807,27812,27918,27977,30901]]],["accuse",[13,13,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[41,3,3,2,5,[[983,1,1,2,3],[995,2,2,3,5]]],[42,2,2,5,7,[[1001,1,1,5,6],[1004,1,1,6,7]]],[43,6,6,7,13,[[1041,3,3,7,10],[1042,2,2,10,12],[1045,1,1,12,13]]]],[23499,24290,25459,25937,25949,26255,26387,27771,27777,27782,27801,27807,27918]]],["accused",[6,6,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[43,2,2,3,5,[[1039,1,1,3,4],[1042,1,1,4,5]]],[65,1,1,5,6,[[1178,1,1,5,6]]]],[24141,24829,25945,27734,27812,30901]]],["accuseth",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26255]]],["accusing",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27977]]],["object",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27788]]]]},{"k":"G2724","v":[["*",[4,4,[[41,1,1,0,1,[[978,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]],[55,1,1,3,4,[[1129,1,1,3,4]]]],[25153,26814,29782,29898]]],["+",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29898]]],["accusation",[3,3,[[41,1,1,0,1,[[978,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]]],[25153,26814,29782]]]]},{"k":"G2725","v":[["*",[7,7,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,5,5,1,6,[[1040,2,2,1,3],[1041,1,1,3,4],[1042,2,2,4,6]]],[65,1,1,6,7,[[1178,1,1,6,7]]]],[26391,27764,27769,27777,27812,27814,30901]]],["accuser",[1,1,[[65,1,1,0,1,[[1178,1,1,0,1]]]],[30901]]],["accusers",[6,6,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,5,5,1,6,[[1040,2,2,1,3],[1041,1,1,3,4],[1042,2,2,4,6]]]],[26391,27764,27769,27777,27812,27814]]]]},{"k":"G2726","v":[["heaviness",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30346]]]]},{"k":"G2727","v":[["*",[8,7,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,3,3,1,4,[[1035,1,1,1,2],[1038,2,2,2,4]]],[44,1,1,4,5,[[1047,1,1,4,5]]],[45,1,1,5,6,[[1075,1,1,5,6]]],[47,2,1,6,7,[[1096,2,1,6,7]]]],[24897,27582,27685,27688,27980,28697,29194]]],["informed",[2,2,[[43,2,2,0,2,[[1038,2,2,0,2]]]],[27685,27688]]],["instructed",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]],[44,1,1,2,3,[[1047,1,1,2,3]]]],[24897,27582,27980]]],["taught",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29194]]],["teach",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28697]]],["teacheth",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29194]]]]},{"k":"G2728","v":[["cankered",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30357]]]]},{"k":"G2729","v":[["*",[2,2,[[39,1,1,0,1,[[944,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[23690,25958]]],["against",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23690]]],["prevailed",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25958]]]]},{"k":"G2730","v":[["*",[47,43,[[39,4,4,0,4,[[930,1,1,0,1],[932,1,1,1,2],[940,1,1,2,3],[951,1,1,3,4]]],[41,2,2,4,6,[[983,1,1,4,5],[985,1,1,5,6]]],[43,20,19,6,25,[[1018,2,2,6,8],[1019,3,3,8,11],[1021,1,1,11,12],[1024,4,3,12,15],[1026,3,3,15,18],[1028,1,1,18,19],[1030,1,1,19,20],[1034,2,2,20,22],[1036,2,2,22,24],[1039,1,1,24,25]]],[48,1,1,25,26,[[1099,1,1,25,26]]],[50,2,2,26,28,[[1107,1,1,26,27],[1108,1,1,27,28]]],[57,1,1,28,29,[[1143,1,1,28,29]]],[58,1,1,29,30,[[1149,1,1,29,30]]],[60,1,1,30,31,[[1158,1,1,30,31]]],[65,15,12,31,43,[[1168,2,1,31,32],[1169,1,1,32,33],[1172,1,1,33,34],[1174,1,1,34,35],[1177,2,1,35,36],[1178,1,1,36,37],[1179,4,3,37,40],[1180,1,1,40,41],[1183,2,2,41,43]]]],[23192,23222,23534,23939,25431,25522,26942,26943,26954,26958,26963,27038,27118,27120,27164,27238,27248,27251,27336,27389,27547,27549,27595,27602,27716,29268,29484,29503,30181,30342,30535,30730,30756,30803,30840,30882,30903,30916,30920,30922,30932,30977,30983]]],["+",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23939]]],["dwell",[19,18,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[43,6,6,2,8,[[1018,1,1,2,3],[1019,1,1,3,4],[1021,1,1,4,5],[1024,1,1,5,6],[1030,1,1,6,7],[1034,1,1,7,8]]],[48,1,1,8,9,[[1099,1,1,8,9]]],[50,1,1,9,10,[[1107,1,1,9,10]]],[65,9,8,10,18,[[1169,1,1,10,11],[1172,1,1,11,12],[1177,1,1,12,13],[1179,4,3,13,16],[1180,1,1,16,17],[1183,1,1,17,18]]]],[23534,25431,26943,26963,27038,27120,27389,27549,29268,29484,30756,30803,30882,30916,30920,30922,30932,30983]]],["dwellers",[2,2,[[43,2,2,0,2,[[1018,1,1,0,1],[1019,1,1,1,2]]]],[26942,26958]]],["dwellest",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30730]]],["dwelleth",[6,6,[[43,2,2,0,2,[[1024,1,1,0,1],[1034,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]],[60,1,1,4,5,[[1158,1,1,4,5]]],[65,1,1,5,6,[[1168,1,1,5,6]]]],[27164,27547,29503,30342,30535,30730]]],["dwelling",[3,3,[[43,2,2,0,2,[[1019,1,1,0,1],[1036,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[26954,27602,30181]]],["dwelt",[12,12,[[39,2,2,0,2,[[930,1,1,0,1],[932,1,1,1,2]]],[41,1,1,2,3,[[985,1,1,2,3]]],[43,8,8,3,11,[[1024,2,2,3,5],[1026,3,3,5,8],[1028,1,1,8,9],[1036,1,1,9,10],[1039,1,1,10,11]]],[65,1,1,11,12,[[1177,1,1,11,12]]]],[23192,23222,25522,27118,27120,27238,27248,27251,27336,27595,27716,30882]]],["inhabitants",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30977]]],["inhabiters",[2,2,[[65,2,2,0,2,[[1174,1,1,0,1],[1178,1,1,1,2]]]],[30840,30903]]]]},{"k":"G2731","v":[["dwelling",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24367]]]]},{"k":"G2732","v":[["habitation",[2,2,[[48,1,1,0,1,[[1098,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[29251,30995]]]]},{"k":"G2733","v":[["habitation",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27549]]]]},{"k":"G2734","v":[["glass",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28859]]]]},{"k":"G2735","v":[["deeds",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27771]]]]},{"k":"G2736","v":[["*",[11,11,[[39,3,3,0,3,[[930,1,1,0,1],[932,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[970,1,1,3,4],[971,1,1,4,5]]],[41,1,1,5,6,[[976,1,1,5,6]]],[42,3,3,6,9,[[1004,3,3,6,9]]],[43,2,2,9,11,[[1019,1,1,9,10],[1037,1,1,10,11]]]],[23185,23215,24180,24820,24864,25072,26387,26389,26404,26968,27635]]],["beneath",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]]],[24820,26404,26968]]],["bottom",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24180,24864]]],["down",[5,5,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]],[42,2,2,2,4,[[1004,2,2,2,4]]],[43,1,1,4,5,[[1037,1,1,4,5]]]],[23215,25072,26387,26389,27635]]],["under",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23185]]]]},{"k":"G2737","v":[["lower",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29281]]]]},{"k":"G2738","v":[["heat",[2,2,[[65,2,2,0,2,[[1173,1,1,0,1],[1182,1,1,1,2]]]],[30826,30963]]]]},{"k":"G2739","v":[["*",[4,4,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[65,2,2,2,4,[[1182,2,2,2,4]]]],[23545,24329,30962,30963]]],["scorch",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30962]]],["scorched",[3,3,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[65,1,1,2,3,[[1182,1,1,2,3]]]],[23545,24329,30963]]]]},{"k":"G2740","v":[["+",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30052]]]]},{"k":"G2741","v":[["heat",[2,2,[[60,2,2,0,2,[[1158,2,2,0,2]]]],[30532,30534]]]]},{"k":"G2742","v":[["heat",[3,3,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[23804,25514,30277]]]]},{"k":"G2743","v":[["iron",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29749]]]]},{"k":"G2744","v":[["*",[38,33,[[44,5,5,0,5,[[1047,2,2,0,2],[1050,3,3,2,5]]],[45,5,4,5,9,[[1062,3,2,5,7],[1064,1,1,7,8],[1065,1,1,8,9]]],[46,21,17,9,26,[[1082,1,1,9,10],[1084,1,1,10,11],[1086,1,1,11,12],[1087,6,5,12,17],[1088,6,4,17,21],[1089,6,5,21,26]]],[47,2,2,26,28,[[1096,2,2,26,28]]],[48,1,1,28,29,[[1098,1,1,28,29]]],[49,1,1,29,30,[[1105,1,1,29,30]]],[52,1,1,30,31,[[1116,1,1,30,31]]],[58,2,2,31,33,[[1146,1,1,31,32],[1149,1,1,32,33]]]],[27979,27985,28049,28050,28058,28392,28394,28431,28440,28889,28930,28958,28979,28984,28986,28987,28988,29001,29005,29007,29019,29023,29027,29028,29031,29033,29201,29202,29238,29424,29653,30275,30353]]],["+",[3,3,[[46,3,3,0,3,[[1084,1,1,0,1],[1087,1,1,1,2],[1088,1,1,2,3]]]],[28930,28979,29007]]],["boast",[7,7,[[44,2,2,0,2,[[1047,2,2,0,2]]],[46,4,4,2,6,[[1086,1,1,2,3],[1087,2,2,3,5],[1088,1,1,5,6]]],[48,1,1,6,7,[[1098,1,1,6,7]]]],[27979,27985,28958,28984,28987,29005,29238]]],["boasting",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28986]]],["glorieth",[2,2,[[45,1,1,0,1,[[1062,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]]],[28394,28988]]],["glory",[19,17,[[44,1,1,0,1,[[1050,1,1,0,1]]],[45,4,4,1,5,[[1062,2,2,1,3],[1064,1,1,3,4],[1065,1,1,4,5]]],[46,11,9,5,14,[[1082,1,1,5,6],[1087,1,1,6,7],[1088,4,3,7,10],[1089,5,4,10,14]]],[47,2,2,14,16,[[1096,2,2,14,16]]],[52,1,1,16,17,[[1116,1,1,16,17]]]],[28050,28392,28394,28431,28440,28889,28988,29001,29007,29019,29023,29027,29028,29031,29201,29202,29653]]],["glorying",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29033]]],["joy",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28058]]],["rejoice",[4,4,[[44,1,1,0,1,[[1050,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]],[58,2,2,2,4,[[1146,1,1,2,3],[1149,1,1,3,4]]]],[28049,29424,30275,30353]]]]},{"k":"G2745","v":[["*",[11,11,[[44,1,1,0,1,[[1049,1,1,0,1]]],[45,3,3,1,4,[[1066,1,1,1,2],[1070,2,2,2,4]]],[46,3,3,4,7,[[1078,1,1,4,5],[1082,1,1,5,6],[1086,1,1,6,7]]],[47,1,1,7,8,[[1096,1,1,7,8]]],[49,2,2,8,10,[[1103,1,1,8,9],[1104,1,1,9,10]]],[57,1,1,10,11,[[1135,1,1,10,11]]]],[28024,28460,28555,28556,28814,28889,28959,29192,29387,29407,30001]]],["+",[2,2,[[45,1,1,0,1,[[1070,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[28555,29407]]],["boasting",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28959]]],["glory",[2,2,[[44,1,1,0,1,[[1049,1,1,0,1]]],[46,1,1,1,2,[[1082,1,1,1,2]]]],[28024,28889]]],["glorying",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28460]]],["of",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28556]]],["rejoicing",[4,4,[[46,1,1,0,1,[[1078,1,1,0,1]]],[47,1,1,1,2,[[1096,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[57,1,1,3,4,[[1135,1,1,3,4]]]],[28814,29192,29387,30001]]]]},{"k":"G2746","v":[["*",[12,12,[[44,2,2,0,2,[[1048,1,1,0,1],[1060,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]],[46,7,7,3,10,[[1078,1,1,3,4],[1084,2,2,4,6],[1085,1,1,6,7],[1086,1,1,7,8],[1088,2,2,8,10]]],[51,1,1,10,11,[[1112,1,1,10,11]]],[58,1,1,11,12,[[1149,1,1,11,12]]]],[28018,28320,28749,28812,28920,28930,28956,28960,28999,29006,29589,30353]]],["boasting",[6,6,[[44,1,1,0,1,[[1048,1,1,0,1]]],[46,5,5,1,6,[[1084,1,1,1,2],[1085,1,1,2,3],[1086,1,1,3,4],[1088,2,2,4,6]]]],[28018,28930,28956,28960,28999,29006]]],["glory",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28320]]],["glorying",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28920]]],["rejoicing",[4,4,[[45,1,1,0,1,[[1076,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]]],[28749,28812,29589,30353]]]]},{"k":"G2747","v":[["Cenchrea",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]]],[27575,28337]]]]},{"k":"G2748","v":[["Cedron",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26786]]]]},{"k":"G2749","v":[["*",[26,26,[[39,3,3,0,3,[[931,1,1,0,1],[933,1,1,1,2],[956,1,1,2,3]]],[41,7,7,3,10,[[974,3,3,3,6],[975,1,1,6,7],[984,1,1,7,8],[995,1,1,8,9],[996,1,1,9,10]]],[42,8,8,10,18,[[998,1,1,10,11],[1007,1,1,11,12],[1015,1,1,12,13],[1016,4,4,13,17],[1017,1,1,17,18]]],[45,1,1,18,19,[[1064,1,1,18,19]]],[46,1,1,19,20,[[1080,1,1,19,20]]],[49,1,1,20,21,[[1103,1,1,20,21]]],[51,1,1,21,22,[[1113,1,1,21,22]]],[53,1,1,22,23,[[1119,1,1,22,23]]],[61,1,1,23,24,[[1163,1,1,23,24]]],[65,2,2,24,26,[[1170,1,1,24,25],[1187,1,1,25,26]]]],[23202,23248,24201,24985,24989,25007,25034,25478,25988,26003,26101,26564,26854,26872,26873,26874,26879,26907,28421,28856,29378,29593,29705,30643,30770,31069]]],["appointed",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29593]]],["is",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28856]]],["laid",[6,6,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,3,3,1,4,[[975,1,1,1,2],[995,1,1,2,3],[996,1,1,3,4]]],[42,1,1,4,5,[[1007,1,1,4,5]]],[45,1,1,5,6,[[1064,1,1,5,6]]]],[23202,25034,25988,26003,26564,28421]]],["lain",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26879]]],["lay",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24201]]],["lie",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26873]]],["lieth",[2,2,[[61,1,1,0,1,[[1163,1,1,0,1]]],[65,1,1,1,2,[[1187,1,1,1,2]]]],[30643,31069]]],["lying",[4,4,[[41,2,2,0,2,[[974,2,2,0,2]]],[42,2,2,2,4,[[1016,2,2,2,4]]]],[24985,24989,26872,26874]]],["made",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29705]]],["set",[6,6,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[42,2,2,2,4,[[998,1,1,2,3],[1015,1,1,3,4]]],[49,1,1,4,5,[[1103,1,1,4,5]]],[65,1,1,5,6,[[1170,1,1,5,6]]]],[23248,25007,26101,26854,29378,30770]]],["there",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26907]]],["up",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25478]]]]},{"k":"G2750","v":[["graveclothes",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26567]]]]},{"k":"G2751","v":[["*",[4,3,[[43,2,2,0,2,[[1025,1,1,0,1],[1035,1,1,1,2]]],[45,2,1,2,3,[[1072,2,1,2,3]]]],[27208,27575,28606]]],["shearer",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27208]]],["shorn",[3,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[45,2,1,1,2,[[1072,2,1,1,2]]]],[27575,28606]]]]},{"k":"G2752","v":[["shout",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29619]]]]},{"k":"G2753","v":[["*",[27,27,[[39,8,8,0,8,[[936,1,1,0,1],[942,3,3,1,4],[943,1,1,4,5],[946,1,1,5,6],[955,2,2,6,8]]],[41,1,1,8,9,[[990,1,1,8,9]]],[43,18,18,9,27,[[1021,1,1,9,10],[1022,1,1,10,11],[1025,1,1,11,12],[1029,1,1,12,13],[1033,1,1,13,14],[1038,2,2,14,16],[1039,2,2,16,18],[1040,3,3,18,21],[1041,1,1,21,22],[1042,4,4,22,26],[1044,1,1,26,27]]]],[23363,23606,23616,23625,23668,23752,24187,24193,25728,27037,27093,27214,27356,27505,27697,27698,27728,27734,27737,27744,27769,27777,27802,27813,27817,27819,27898]]],["Command",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24193]]],["Commanding",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27777]]],["bid",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23625]]],["commanded",[21,21,[[39,5,5,0,5,[[942,2,2,0,2],[943,1,1,2,3],[946,1,1,3,4],[955,1,1,4,5]]],[41,1,1,5,6,[[990,1,1,5,6]]],[43,15,15,6,21,[[1021,1,1,6,7],[1022,1,1,7,8],[1025,1,1,8,9],[1029,1,1,9,10],[1033,1,1,10,11],[1038,2,2,11,13],[1039,2,2,13,15],[1040,2,2,15,17],[1042,3,3,17,20],[1044,1,1,20,21]]]],[23606,23616,23668,23752,24187,25728,27037,27093,27214,27356,27505,27697,27698,27728,27734,27744,27769,27802,27813,27817,27898]]],["commandest",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27737]]],["commandment",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]]],[23363,27819]]]]},{"k":"G2754","v":[["vainglory",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29394]]]]},{"k":"G2755","v":[["glory",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29188]]]]},{"k":"G2756","v":[["*",[18,16,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,3,3,1,4,[[973,1,1,1,2],[992,2,2,2,4]]],[43,1,1,4,5,[[1021,1,1,4,5]]],[45,4,3,5,8,[[1076,4,3,5,8]]],[46,1,1,8,9,[[1083,1,1,8,9]]],[47,1,1,9,10,[[1092,1,1,9,10]]],[48,1,1,10,11,[[1101,1,1,10,11]]],[49,2,1,11,12,[[1104,2,1,11,12]]],[50,1,1,12,13,[[1108,1,1,12,13]]],[51,2,2,13,15,[[1112,1,1,13,14],[1113,1,1,14,15]]],[58,1,1,15,16,[[1147,1,1,15,16]]]],[24676,24946,25789,25790,27047,28728,28732,28776,28899,29083,29310,29407,29502,29571,29595,30313]]],["+",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24946]]],["empty",[3,3,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,2,2,1,3,[[992,2,2,1,3]]]],[24676,25789,25790]]],["things",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27047]]],["vain",[13,11,[[45,4,3,0,3,[[1076,4,3,0,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]],[47,1,1,4,5,[[1092,1,1,4,5]]],[48,1,1,5,6,[[1101,1,1,5,6]]],[49,2,1,6,7,[[1104,2,1,6,7]]],[50,1,1,7,8,[[1108,1,1,7,8]]],[51,2,2,8,10,[[1112,1,1,8,9],[1113,1,1,9,10]]],[58,1,1,10,11,[[1147,1,1,10,11]]]],[28728,28732,28776,28899,29083,29310,29407,29502,29571,29595,30313]]]]},{"k":"G2757","v":[["babblings",[2,2,[[53,1,1,0,1,[[1124,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[29808,29843]]]]},{"k":"G2758","v":[["*",[5,5,[[44,1,1,0,1,[[1049,1,1,0,1]]],[45,2,2,1,3,[[1062,1,1,1,2],[1070,1,1,2,3]]],[46,1,1,3,4,[[1086,1,1,3,4]]],[49,1,1,4,5,[[1104,1,1,4,5]]]],[28036,28380,28555,28959,29398]]],["+",[2,2,[[45,1,1,0,1,[[1070,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[28555,29398]]],["effect",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28380]]],["vain",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28959]]],["void",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28036]]]]},{"k":"G2759","v":[["*",[5,5,[[43,2,2,0,2,[[1026,1,1,0,1],[1043,1,1,1,2]]],[45,2,2,2,4,[[1076,2,2,2,4]]],[65,1,1,4,5,[[1175,1,1,4,5]]]],[27221,27837,28773,28774,30850]]],["pricks",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1043,1,1,1,2]]]],[27221,27837]]],["sting",[2,2,[[45,2,2,0,2,[[1076,2,2,0,2]]]],[28773,28774]]],["stings",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30850]]]]},{"k":"G2760","v":[["centurion",[3,3,[[40,3,3,0,3,[[971,3,3,0,3]]]],[24865,24870,24871]]]]},{"k":"G2761","v":[["vain",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30342]]]]},{"k":"G2762","v":[["tittle",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]]],[23252,25637]]]]},{"k":"G2763","v":[["*",[3,3,[[39,2,2,0,2,[[955,2,2,0,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]]],[24136,24139,28176]]],["potter",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28176]]],["potter's",[2,2,[[39,2,2,0,2,[[955,2,2,0,2]]]],[24136,24139]]]]},{"k":"G2764","v":[["potter",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30744]]]]},{"k":"G2765","v":[["pitcher",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24767,25874]]]]},{"k":"G2766","v":[["tiling",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25126]]]]},{"k":"G2767","v":[["*",[3,2,[[65,3,2,0,2,[[1180,1,1,0,1],[1184,2,1,1,2]]]],[30936,30999]]],["fill",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30999]]],["filled",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30999]]],["out",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30936]]]]},{"k":"G2768","v":[["*",[11,10,[[41,1,1,0,1,[[973,1,1,0,1]]],[65,10,9,1,10,[[1171,1,1,1,2],[1175,1,1,2,3],[1178,1,1,3,4],[1179,3,2,4,6],[1183,4,4,6,10]]]],[24962,30785,30853,30894,30909,30919,30978,30982,30987,30991]]],["horn",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24962]]],["horns",[10,9,[[65,10,9,0,9,[[1171,1,1,0,1],[1175,1,1,1,2],[1178,1,1,2,3],[1179,3,2,3,5],[1183,4,4,5,9]]]],[30785,30853,30894,30909,30919,30978,30982,30987,30991]]]]},{"k":"G2769","v":[["husks",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25604]]]]},{"k":"G2770","v":[["*",[16,15,[[39,5,5,0,5,[[944,1,1,0,1],[946,1,1,1,2],[953,3,3,2,5]]],[40,1,1,5,6,[[964,1,1,5,6]]],[41,1,1,6,7,[[981,1,1,6,7]]],[43,1,1,7,8,[[1044,1,1,7,8]]],[45,5,4,8,12,[[1070,5,4,8,12]]],[49,1,1,12,13,[[1105,1,1,12,13]]],[58,1,1,13,14,[[1149,1,1,13,14]]],[59,1,1,14,15,[[1153,1,1,14,15]]]],[23698,23742,24025,24028,24030,24536,25326,27876,28559,28560,28561,28562,29429,30350,30425]]],["gain",[9,8,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[45,5,4,3,7,[[1070,5,4,3,7]]],[58,1,1,7,8,[[1149,1,1,7,8]]]],[23698,24536,25326,28559,28560,28561,28562,30350]]],["gained",[5,5,[[39,4,4,0,4,[[946,1,1,0,1],[953,3,3,1,4]]],[43,1,1,4,5,[[1044,1,1,4,5]]]],[23742,24025,24028,24030,27876]]],["win",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29429]]],["won",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30425]]]]},{"k":"G2771","v":[["*",[3,3,[[49,2,2,0,2,[[1103,1,1,0,1],[1105,1,1,1,2]]],[55,1,1,2,3,[[1129,1,1,2,3]]]],[29382,29428,29903]]],["+",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29903]]],["gain",[2,2,[[49,2,2,0,2,[[1103,1,1,0,1],[1105,1,1,1,2]]]],[29382,29428]]]]},{"k":"G2772","v":[["money",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26110]]]]},{"k":"G2773","v":[["money",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26109]]]]},{"k":"G2774","v":[["sum",[2,2,[[43,1,1,0,1,[[1039,1,1,0,1]]],[57,1,1,1,2,[[1140,1,1,1,2]]]],[27732,30093]]]]},{"k":"G2775","v":[["head",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24677]]]]},{"k":"G2776","v":[["*",[76,68,[[39,12,12,0,12,[[933,1,1,0,1],[934,1,1,1,2],[936,1,1,2,3],[938,1,1,3,4],[942,2,2,4,6],[949,1,1,6,7],[954,1,1,7,8],[955,4,4,8,12]]],[40,8,8,12,20,[[962,4,4,12,16],[968,1,1,16,17],[970,1,1,17,18],[971,2,2,18,20]]],[41,8,8,20,28,[[979,3,3,20,23],[981,1,1,23,24],[984,1,1,24,25],[992,1,1,25,26],[993,2,2,26,28]]],[42,5,5,28,33,[[1009,1,1,28,29],[1015,2,2,29,31],[1016,2,2,31,33]]],[43,5,5,33,38,[[1021,1,1,33,34],[1035,2,2,34,36],[1038,1,1,36,37],[1044,1,1,37,38]]],[44,1,1,38,39,[[1057,1,1,38,39]]],[45,10,6,39,45,[[1072,9,5,39,44],[1073,1,1,44,45]]],[48,4,3,45,48,[[1097,1,1,45,46],[1100,1,1,46,47],[1101,2,1,47,48]]],[50,3,3,48,51,[[1107,1,1,48,49],[1108,2,2,49,51]]],[59,1,1,51,52,[[1152,1,1,51,52]]],[65,19,16,52,68,[[1167,1,1,52,53],[1170,1,1,53,54],[1175,4,3,54,57],[1176,1,1,57,58],[1178,3,2,58,60],[1179,3,2,60,62],[1180,1,1,62,63],[1183,3,3,63,66],[1184,1,1,66,67],[1185,1,1,67,68]]]],[23270,23299,23365,23447,23605,23608,23868,24061,24158,24159,24166,24168,24431,24432,24434,24435,24683,24757,24845,24855,25233,25239,25241,25359,25466,25796,25844,25854,26639,26827,26855,26874,26879,27033,27563,27575,27688,27889,28265,28603,28604,28605,28607,28610,28655,29228,29287,29327,29483,29504,29513,30406,30711,30772,30847,30857,30859,30862,30892,30894,30909,30911,30940,30978,30982,30984,31012,31029]]],["+",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28604]]],["Head",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29513]]],["head",[55,51,[[39,11,11,0,11,[[933,1,1,0,1],[934,1,1,1,2],[936,1,1,2,3],[938,1,1,3,4],[942,2,2,4,6],[949,1,1,6,7],[954,1,1,7,8],[955,3,3,8,11]]],[40,7,7,11,18,[[962,4,4,11,15],[968,1,1,15,16],[970,1,1,16,17],[971,1,1,17,18]]],[41,7,7,18,25,[[979,3,3,18,21],[981,1,1,21,22],[984,1,1,22,23],[992,1,1,23,24],[993,1,1,24,25]]],[42,5,5,25,30,[[1009,1,1,25,26],[1015,2,2,26,28],[1016,2,2,28,30]]],[43,3,3,30,33,[[1021,1,1,30,31],[1035,1,1,31,32],[1044,1,1,32,33]]],[44,1,1,33,34,[[1057,1,1,33,34]]],[45,9,6,34,40,[[1072,8,5,34,39],[1073,1,1,39,40]]],[48,4,3,40,43,[[1097,1,1,40,41],[1100,1,1,41,42],[1101,2,1,42,43]]],[50,2,2,43,45,[[1107,1,1,43,44],[1108,1,1,44,45]]],[59,1,1,45,46,[[1152,1,1,45,46]]],[65,5,5,46,51,[[1167,1,1,46,47],[1176,1,1,47,48],[1178,1,1,48,49],[1180,1,1,49,50],[1185,1,1,50,51]]]],[23270,23299,23365,23447,23605,23608,23868,24061,24158,24159,24166,24431,24432,24434,24435,24683,24757,24845,25233,25239,25241,25359,25466,25796,25844,26639,26827,26855,26874,26879,27033,27575,27889,28265,28603,28604,28605,28607,28610,28655,29228,29287,29327,29483,29504,30406,30711,30862,30892,30940,31029]]],["heads",[19,16,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]],[43,2,2,3,5,[[1035,1,1,3,4],[1038,1,1,4,5]]],[65,14,11,5,16,[[1170,1,1,5,6],[1175,4,3,6,9],[1178,2,1,9,10],[1179,3,2,10,12],[1183,3,3,12,15],[1184,1,1,15,16]]]],[24168,24855,25854,27563,27688,30772,30847,30857,30859,30894,30909,30911,30978,30982,30984,31012]]]]},{"k":"G2777","v":[["volume",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30140]]]]},{"k":"G2778","v":[["tribute",[4,4,[[39,3,3,0,3,[[945,1,1,0,1],[950,2,2,1,3]]],[40,1,1,3,4,[[968,1,1,3,4]]]],[23725,23889,23891,24687]]]]},{"k":"G2779","v":[["garden",[5,4,[[41,1,1,0,1,[[985,1,1,0,1]]],[42,4,3,1,4,[[1014,2,2,1,3],[1015,2,1,3,4]]]],[25537,26786,26811,26866]]]]},{"k":"G2780","v":[["gardener",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26882]]]]},{"k":"G2781","v":[["+",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26033]]]]},{"k":"G2782","v":[["preaching",[8,8,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[44,1,1,2,3,[[1061,1,1,2,3]]],[45,3,3,3,6,[[1062,1,1,3,4],[1063,1,1,4,5],[1076,1,1,5,6]]],[54,1,1,6,7,[[1128,1,1,6,7]]],[55,1,1,7,8,[[1129,1,1,7,8]]]],[23530,25437,28361,28384,28398,28732,29887,29895]]]]},{"k":"G2783","v":[["preacher",[3,3,[[53,1,1,0,1,[[1120,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[29723,29820,30505]]]]},{"k":"G2784","v":[["*",[61,60,[[39,9,9,0,9,[[931,1,1,0,1],[932,2,2,1,3],[937,1,1,3,4],[938,2,2,4,6],[939,1,1,6,7],[952,1,1,7,8],[954,1,1,8,9]]],[40,14,14,9,23,[[957,6,6,9,15],[959,1,1,15,16],[961,1,1,16,17],[962,1,1,17,18],[963,1,1,18,19],[969,1,1,19,20],[970,1,1,20,21],[972,2,2,21,23]]],[41,9,9,23,32,[[975,1,1,23,24],[976,3,3,24,27],[980,2,2,27,29],[981,1,1,29,30],[984,1,1,30,31],[996,1,1,31,32]]],[43,8,8,32,40,[[1025,1,1,32,33],[1026,1,1,33,34],[1027,2,2,34,36],[1032,1,1,36,37],[1036,1,1,37,38],[1037,1,1,38,39],[1045,1,1,39,40]]],[44,4,4,40,44,[[1047,1,1,40,41],[1055,3,3,41,44]]],[45,4,4,44,48,[[1062,1,1,44,45],[1070,1,1,45,46],[1076,2,2,46,48]]],[46,4,3,48,51,[[1078,1,1,48,49],[1081,1,1,49,50],[1088,2,1,50,51]]],[47,2,2,51,53,[[1092,1,1,51,52],[1095,1,1,52,53]]],[49,1,1,53,54,[[1103,1,1,53,54]]],[50,1,1,54,55,[[1107,1,1,54,55]]],[51,1,1,55,56,[[1112,1,1,55,56]]],[53,1,1,56,57,[[1121,1,1,56,57]]],[54,1,1,57,58,[[1128,1,1,57,58]]],[59,1,1,58,59,[[1153,1,1,58,59]]],[65,1,1,59,60,[[1171,1,1,59,60]]]],[23193,23226,23232,23414,23424,23444,23460,23971,24067,24219,24222,24229,24253,24254,24260,24302,24384,24419,24499,24727,24763,24888,24893,25028,25081,25082,25107,25246,25284,25303,25462,26038,27181,27236,27296,27301,27463,27598,27651,27930,27983,28196,28202,28203,28386,28567,28729,28730,28819,28864,28993,29083,29173,29376,29488,29579,29747,29872,30443,30781]]],["+",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]]],[24254,25107]]],["Preach",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29872]]],["Preaching",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27930]]],["preach",[21,21,[[39,4,4,0,4,[[932,1,1,0,1],[938,2,2,1,3],[939,1,1,3,4]]],[40,4,4,4,8,[[957,2,2,4,6],[959,1,1,6,7],[972,1,1,7,8]]],[41,3,3,8,11,[[976,2,2,8,10],[981,1,1,10,11]]],[43,2,2,11,13,[[1027,1,1,11,12],[1032,1,1,12,13]]],[44,2,2,13,15,[[1055,2,2,13,15]]],[45,2,2,15,17,[[1062,1,1,15,16],[1076,1,1,16,17]]],[46,1,1,17,18,[[1081,1,1,17,18]]],[47,2,2,18,20,[[1092,1,1,18,19],[1095,1,1,19,20]]],[49,1,1,20,21,[[1103,1,1,20,21]]]],[23226,23424,23444,23460,24219,24253,24302,24888,25081,25082,25303,27301,27463,28196,28203,28386,28729,28864,29083,29173,29376]]],["preached",[18,18,[[39,2,2,0,2,[[952,1,1,0,1],[954,1,1,1,2]]],[40,4,4,2,6,[[957,1,1,2,3],[962,1,1,3,4],[970,1,1,4,5],[972,1,1,5,6]]],[41,1,1,6,7,[[996,1,1,6,7]]],[43,3,3,7,10,[[1025,1,1,7,8],[1026,1,1,8,9],[1027,1,1,9,10]]],[45,2,2,10,12,[[1070,1,1,10,11],[1076,1,1,11,12]]],[46,2,2,12,14,[[1078,1,1,12,13],[1088,1,1,13,14]]],[50,1,1,14,15,[[1107,1,1,14,15]]],[51,1,1,15,16,[[1112,1,1,15,16]]],[53,1,1,16,17,[[1121,1,1,16,17]]],[59,1,1,17,18,[[1153,1,1,17,18]]]],[23971,24067,24222,24419,24763,24893,26038,27181,27236,27296,28567,28730,28819,28993,29488,29579,29747,30443]]],["preacher",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28202]]],["preachest",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27983]]],["preacheth",[2,2,[[43,1,1,0,1,[[1036,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[27598,28993]]],["preaching",[7,7,[[39,3,3,0,3,[[931,1,1,0,1],[932,1,1,1,2],[937,1,1,2,3]]],[40,1,1,3,4,[[957,1,1,3,4]]],[41,2,2,4,6,[[975,1,1,4,5],[980,1,1,5,6]]],[43,1,1,6,7,[[1037,1,1,6,7]]]],[23193,23232,23414,24229,25028,25246,27651]]],["proclaimed",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25462]]],["proclaiming",[1,1,[[65,1,1,0,1,[[1171,1,1,0,1]]]],[30781]]],["publish",[2,2,[[40,2,2,0,2,[[957,1,1,0,1],[961,1,1,1,2]]]],[24260,24384]]],["published",[3,3,[[40,2,2,0,2,[[963,1,1,0,1],[969,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[24499,24727,25284]]]]},{"k":"G2785","v":[["whale's",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23529]]]]},{"k":"G2786","v":[["Cephas",[6,6,[[42,1,1,0,1,[[997,1,1,0,1]]],[45,4,4,1,5,[[1062,1,1,1,2],[1064,1,1,2,3],[1070,1,1,3,4],[1076,1,1,4,5]]],[47,1,1,5,6,[[1092,1,1,5,6]]]],[26086,28375,28432,28545,28723,29090]]]]},{"k":"G2787","v":[["ark",[6,6,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]],[57,2,2,2,4,[[1141,1,1,2,3],[1143,1,1,3,4]]],[59,1,1,4,5,[[1153,1,1,4,5]]],[65,1,1,5,6,[[1177,1,1,5,6]]]],[23995,25678,30109,30179,30444,30891]]]]},{"k":"G2788","v":[["*",[4,4,[[45,1,1,0,1,[[1075,1,1,0,1]]],[65,3,3,1,4,[[1171,1,1,1,2],[1180,1,1,2,3],[1181,1,1,3,4]]]],[28685,30787,30928,30948]]],["harp",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28685]]],["harps",[3,3,[[65,3,3,0,3,[[1171,1,1,0,1],[1180,1,1,1,2],[1181,1,1,2,3]]]],[30787,30928,30948]]]]},{"k":"G2789","v":[["*",[2,2,[[45,1,1,0,1,[[1075,1,1,0,1]]],[65,1,1,1,2,[[1180,1,1,1,2]]]],[28685,30928]]],["harped",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28685]]],["harping",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30928]]]]},{"k":"G2790","v":[["harpers",[2,2,[[65,2,2,0,2,[[1180,1,1,0,1],[1184,1,1,1,2]]]],[30928,31015]]]]},{"k":"G2791","v":[["Cilicia",[8,8,[[43,7,7,0,7,[[1023,1,1,0,1],[1032,2,2,1,3],[1038,1,1,3,4],[1039,1,1,4,5],[1040,1,1,5,6],[1044,1,1,6,7]]],[47,1,1,7,8,[[1091,1,1,7,8]]]],[27110,27465,27483,27703,27707,27768,27860,29078]]]]},{"k":"G2792","v":[["cinnamon",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31006]]]]},{"k":"G2793","v":[["*",[4,4,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,2,2,1,3,[[1036,2,2,1,3]]],[45,1,1,3,4,[[1076,1,1,3,4]]]],[25268,27612,27625,28748]]],["+",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28748]]],["danger",[2,2,[[43,2,2,0,2,[[1036,2,2,0,2]]]],[27612,27625]]],["jeopardy",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25268]]]]},{"k":"G2794","v":[["*",[9,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,8,1,1,2,[[1088,8,1,1,2]]]],[28151,29015]]],["peril",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28151]]],["perils",[8,1,[[46,8,1,0,1,[[1088,8,1,0,1]]]],[29015]]]]},{"k":"G2795","v":[["*",[8,8,[[39,2,2,0,2,[[951,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[43,3,3,3,6,[[1034,1,1,3,4],[1038,1,1,4,5],[1041,1,1,5,6]]],[65,2,2,6,8,[[1168,1,1,6,7],[1172,1,1,7,8]]]],[23922,24168,24855,27551,27694,27774,30722,30807]]],["move",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]]],[23922,27551]]],["moved",[2,2,[[43,1,1,0,1,[[1038,1,1,0,1]]],[65,1,1,1,2,[[1172,1,1,1,2]]]],[27694,30807]]],["mover",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27774]]],["remove",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30722]]],["wagging",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24168,24855]]]]},{"k":"G2796","v":[["moving",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26213]]]]},{"k":"G2797","v":[["Cis",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27383]]]]},{"k":"G2798","v":[["*",[11,11,[[39,3,3,0,3,[[941,1,1,0,1],[949,1,1,1,2],[952,1,1,2,3]]],[40,2,2,3,5,[[960,1,1,3,4],[969,1,1,4,5]]],[41,1,1,5,6,[[985,1,1,5,6]]],[44,5,5,6,11,[[1056,5,5,6,11]]]],[23571,23834,23989,24355,24745,25537,28225,28226,28227,28228,28230]]],["branch",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23989,24745]]],["branches",[9,9,[[39,2,2,0,2,[[941,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,1,1,3,4,[[985,1,1,3,4]]],[44,5,5,4,9,[[1056,5,5,4,9]]]],[23571,23834,24355,25537,28225,28226,28227,28228,28230]]]]},{"k":"G2799","v":[["*",[40,34,[[39,2,2,0,2,[[930,1,1,0,1],[954,1,1,1,2]]],[40,4,4,2,6,[[961,2,2,2,4],[970,1,1,4,5],[972,1,1,5,6]]],[41,11,9,6,15,[[978,2,2,6,8],[979,3,3,8,11],[980,2,1,11,12],[991,1,1,12,13],[994,1,1,13,14],[995,2,1,14,15]]],[42,8,6,15,21,[[1007,3,2,15,17],[1012,1,1,17,18],[1016,4,3,18,21]]],[43,2,2,21,23,[[1026,1,1,21,22],[1038,1,1,22,23]]],[44,2,1,23,24,[[1057,2,1,23,24]]],[45,2,1,24,25,[[1068,2,1,24,25]]],[49,1,1,25,26,[[1105,1,1,25,26]]],[58,2,2,26,28,[[1149,1,1,26,27],[1150,1,1,27,28]]],[65,6,6,28,34,[[1171,2,2,28,30],[1184,4,4,30,34]]]],[23187,24129,24402,24403,24826,24883,25167,25171,25208,25227,25233,25297,25772,25926,25963,26554,26556,26746,26878,26880,26882,27255,27677,28260,28517,29439,30346,30355,30783,30784,31002,31004,31008,31012]]],["Weep",[3,3,[[41,2,2,0,2,[[979,1,1,0,1],[980,1,1,1,2]]],[65,1,1,2,3,[[1171,1,1,2,3]]]],[25208,25297,30784]]],["bewail",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31002]]],["weep",[14,12,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,4,3,1,4,[[978,2,2,1,3],[995,2,1,3,4]]],[42,2,2,4,6,[[1007,1,1,4,5],[1012,1,1,5,6]]],[43,1,1,6,7,[[1038,1,1,6,7]]],[44,2,1,7,8,[[1057,2,1,7,8]]],[45,1,1,8,9,[[1068,1,1,8,9]]],[58,2,2,9,11,[[1149,1,1,9,10],[1150,1,1,10,11]]],[65,1,1,11,12,[[1184,1,1,11,12]]]],[24403,25167,25171,25963,26554,26746,27677,28260,28517,30346,30355,31004]]],["weepest",[2,2,[[42,2,2,0,2,[[1016,2,2,0,2]]]],[26880,26882]]],["weeping",[9,8,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[42,3,2,2,4,[[1007,2,1,2,3],[1016,1,1,3,4]]],[43,1,1,4,5,[[1026,1,1,4,5]]],[49,1,1,5,6,[[1105,1,1,5,6]]],[65,2,2,6,8,[[1184,2,2,6,8]]]],[23187,25233,26556,26878,27255,29439,31008,31012]]],["wept",[11,11,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,3,3,1,4,[[961,1,1,1,2],[970,1,1,2,3],[972,1,1,3,4]]],[41,4,4,4,8,[[979,1,1,4,5],[980,1,1,5,6],[991,1,1,6,7],[994,1,1,7,8]]],[42,1,1,8,9,[[1016,1,1,8,9]]],[45,1,1,9,10,[[1068,1,1,9,10]]],[65,1,1,10,11,[[1171,1,1,10,11]]]],[24129,24402,24826,24883,25227,25297,25772,25926,26878,28517,30783]]]]},{"k":"G2800","v":[["breaking",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[26026,26991]]]]},{"k":"G2801","v":[["*",[9,9,[[39,2,2,0,2,[[942,1,1,0,1],[943,1,1,1,2]]],[40,4,4,2,6,[[962,1,1,2,3],[964,3,3,3,6]]],[41,1,1,6,7,[[981,1,1,6,7]]],[42,2,2,7,9,[[1002,2,2,7,9]]]],[23617,23670,24450,24508,24519,24520,25318,26269,26270]]],["broken",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]]],[23670,24508]]],["fragments",[7,7,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,3,3,1,4,[[962,1,1,1,2],[964,2,2,2,4]]],[41,1,1,4,5,[[981,1,1,4,5]]],[42,2,2,5,7,[[1002,2,2,5,7]]]],[23617,24450,24519,24520,25318,26269,26270]]]]},{"k":"G2802","v":[["Clauda",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27871]]]]},{"k":"G2803","v":[["Claudia",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29891]]]]},{"k":"G2804","v":[["Claudius",[3,3,[[43,3,3,0,3,[[1028,1,1,0,1],[1035,1,1,1,2],[1040,1,1,2,3]]]],[27335,27559,27760]]]]},{"k":"G2805","v":[["*",[9,9,[[39,7,7,0,7,[[930,1,1,0,1],[936,1,1,1,2],[941,2,2,2,4],[950,1,1,4,5],[952,1,1,5,6],[953,1,1,6,7]]],[41,1,1,7,8,[[985,1,1,7,8]]],[43,1,1,8,9,[[1037,1,1,8,9]]]],[23187,23357,23581,23589,23885,24008,24038,25546,27663]]],["+",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27663]]],["wailing",[2,2,[[39,2,2,0,2,[[941,2,2,0,2]]]],[23581,23589]]],["weeping",[6,6,[[39,5,5,0,5,[[930,1,1,0,1],[936,1,1,1,2],[950,1,1,2,3],[952,1,1,3,4],[953,1,1,4,5]]],[41,1,1,5,6,[[985,1,1,5,6]]]],[23187,23357,23885,24008,24038,25546]]]]},{"k":"G2806","v":[["*",[15,14,[[39,3,3,0,3,[[942,1,1,0,1],[943,1,1,1,2],[954,1,1,2,3]]],[40,3,3,3,6,[[964,2,2,3,5],[970,1,1,5,6]]],[41,2,2,6,8,[[994,1,1,6,7],[996,1,1,7,8]]],[43,4,4,8,12,[[1019,1,1,8,9],[1037,2,2,9,11],[1044,1,1,11,12]]],[45,3,2,12,14,[[1071,1,1,12,13],[1072,2,1,13,14]]]],[23616,23669,24080,24506,24519,24776,25883,26021,26995,27633,27637,27890,28583,28624]]],["brake",[9,9,[[39,3,3,0,3,[[942,1,1,0,1],[943,1,1,1,2],[954,1,1,2,3]]],[40,3,3,3,6,[[964,2,2,3,5],[970,1,1,5,6]]],[41,2,2,6,8,[[994,1,1,6,7],[996,1,1,7,8]]],[45,1,1,8,9,[[1072,1,1,8,9]]]],[23616,23669,24080,24506,24519,24776,25883,26021,28624]]],["break",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]]],[27633,28583]]],["breaking",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26995]]],["broken",[3,3,[[43,2,2,0,2,[[1037,1,1,0,1],[1044,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]]],[27637,27890,28624]]]]},{"k":"G2807","v":[["*",[6,6,[[39,1,1,0,1,[[944,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[65,4,4,2,6,[[1167,1,1,2,3],[1169,1,1,3,4],[1175,1,1,4,5],[1186,1,1,5,6]]]],[23691,25457,30715,30753,30841,31039]]],["key",[4,4,[[41,1,1,0,1,[[983,1,1,0,1]]],[65,3,3,1,4,[[1169,1,1,1,2],[1175,1,1,2,3],[1186,1,1,3,4]]]],[25457,30753,30841,31039]]],["keys",[2,2,[[39,1,1,0,1,[[944,1,1,0,1]]],[65,1,1,1,2,[[1167,1,1,1,2]]]],[23691,30715]]]]},{"k":"G2808","v":[["*",[16,15,[[39,3,3,0,3,[[934,1,1,0,1],[951,1,1,1,2],[953,1,1,2,3]]],[41,2,2,3,5,[[976,1,1,3,4],[983,1,1,4,5]]],[42,2,2,5,7,[[1016,2,2,5,7]]],[43,2,2,7,9,[[1022,1,1,7,8],[1038,1,1,8,9]]],[61,1,1,9,10,[[1161,1,1,9,10]]],[65,6,5,10,15,[[1169,3,2,10,12],[1177,1,1,12,13],[1186,1,1,13,14],[1187,1,1,14,15]]]],[23288,23931,24018,25088,25412,26886,26893,27082,27694,30596,30753,30754,30878,31041,31078]]],["+",[2,2,[[65,2,2,0,2,[[1186,1,1,0,1],[1187,1,1,1,2]]]],[31041,31078]]],["shut",[9,9,[[39,2,2,0,2,[[934,1,1,0,1],[953,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[42,2,2,3,5,[[1016,2,2,3,5]]],[43,2,2,5,7,[[1022,1,1,5,6],[1038,1,1,6,7]]],[65,2,2,7,9,[[1169,1,1,7,8],[1177,1,1,8,9]]]],[23288,24018,25412,26886,26893,27082,27694,30754,30878]]],["shutteth",[2,1,[[65,2,1,0,1,[[1169,2,1,0,1]]]],[30753]]],["up",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]],[61,1,1,2,3,[[1161,1,1,2,3]]]],[23931,25088,30596]]]]},{"k":"G2809","v":[["thefts",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30861]]]]},{"k":"G2810","v":[["Cleopas",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26009]]]]},{"k":"G2811","v":[["glory",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30419]]]]},{"k":"G2812","v":[["*",[16,16,[[39,3,3,0,3,[[934,2,2,0,2],[952,1,1,2,3]]],[41,2,2,3,5,[[984,2,2,3,5]]],[42,4,4,5,9,[[1006,3,3,5,8],[1008,1,1,8,9]]],[45,1,1,9,10,[[1067,1,1,9,10]]],[51,2,2,10,12,[[1115,2,2,10,12]]],[59,1,1,12,13,[[1154,1,1,12,13]]],[60,1,1,13,14,[[1158,1,1,13,14]]],[65,2,2,14,16,[[1169,1,1,14,15],[1182,1,1,15,16]]]],[23301,23302,24000,25492,25498,26482,26489,26491,26586,28477,29623,29625,30461,30532,30749,30969]]],["thief",[12,12,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,2,2,1,3,[[984,2,2,1,3]]],[42,3,3,3,6,[[1006,2,2,3,5],[1008,1,1,5,6]]],[51,2,2,6,8,[[1115,2,2,6,8]]],[59,1,1,8,9,[[1154,1,1,8,9]]],[60,1,1,9,10,[[1158,1,1,9,10]]],[65,2,2,10,12,[[1169,1,1,10,11],[1182,1,1,11,12]]]],[24000,25492,25498,26482,26491,26586,29623,29625,30461,30532,30749,30969]]],["thieves",[4,4,[[39,2,2,0,2,[[934,2,2,0,2]]],[42,1,1,2,3,[[1006,1,1,2,3]]],[45,1,1,3,4,[[1067,1,1,3,4]]]],[23301,23302,26489,28477]]]]},{"k":"G2813","v":[["*",[13,11,[[39,5,5,0,5,[[934,2,2,0,2],[947,1,1,2,3],[955,1,1,3,4],[956,1,1,4,5]]],[40,1,1,5,6,[[966,1,1,5,6]]],[41,1,1,6,7,[[990,1,1,6,7]]],[42,1,1,7,8,[[1006,1,1,7,8]]],[44,3,2,8,10,[[1047,2,1,8,9],[1058,1,1,9,10]]],[48,2,1,10,11,[[1100,2,1,10,11]]]],[23301,23302,23780,24193,24208,24607,25708,26491,27983,28275,29300]]],["+",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24193]]],["steal",[10,9,[[39,3,3,0,3,[[934,2,2,0,2],[947,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,1,1,4,5,[[990,1,1,4,5]]],[42,1,1,5,6,[[1006,1,1,5,6]]],[44,3,2,6,8,[[1047,2,1,6,7],[1058,1,1,7,8]]],[48,1,1,8,9,[[1100,1,1,8,9]]]],[23301,23302,23780,24607,25708,26491,27983,28275,29300]]],["stole",[2,2,[[39,1,1,0,1,[[956,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[24208,29300]]]]},{"k":"G2814","v":[["*",[4,4,[[42,4,4,0,4,[[1011,4,4,0,4]]]],[26701,26703,26704,26705]]],["branch",[3,3,[[42,3,3,0,3,[[1011,3,3,0,3]]]],[26701,26703,26705]]],["branches",[1,1,[[42,1,1,0,1,[[1011,1,1,0,1]]]],[26704]]]]},{"k":"G2815","v":[["Clement",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29445]]]]},{"k":"G2816","v":[["*",[18,17,[[39,3,3,0,3,[[933,1,1,0,1],[947,1,1,1,2],[953,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,2,2,4,6,[[982,1,1,4,5],[990,1,1,5,6]]],[45,4,3,6,9,[[1067,2,2,6,8],[1076,2,1,8,9]]],[47,2,2,9,11,[[1094,1,1,9,10],[1095,1,1,10,11]]],[57,4,4,11,15,[[1133,2,2,11,13],[1138,1,1,13,14],[1144,1,1,14,15]]],[59,1,1,15,16,[[1153,1,1,15,16]]],[65,1,1,16,17,[[1187,1,1,16,17]]]],[23239,23791,24042,24605,25388,25706,28476,28477,28768,29161,29183,29967,29977,30056,30229,30433,31060]]],["heir",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29161]]],["heirs",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29977]]],["inherit",[14,13,[[39,3,3,0,3,[[933,1,1,0,1],[947,1,1,1,2],[953,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,2,2,4,6,[[982,1,1,4,5],[990,1,1,5,6]]],[45,4,3,6,9,[[1067,2,2,6,8],[1076,2,1,8,9]]],[47,1,1,9,10,[[1095,1,1,9,10]]],[57,1,1,10,11,[[1138,1,1,10,11]]],[59,1,1,11,12,[[1153,1,1,11,12]]],[65,1,1,12,13,[[1187,1,1,12,13]]]],[23239,23791,24042,24605,25388,25706,28476,28477,28768,29183,30056,30433,31060]]],["inherited",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30229]]],["obtained",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29967]]]]},{"k":"G2817","v":[["inheritance",[14,14,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,2,2,4,[[984,1,1,2,3],[992,1,1,3,4]]],[43,2,2,4,6,[[1024,1,1,4,5],[1037,1,1,5,6]]],[47,1,1,6,7,[[1093,1,1,6,7]]],[48,3,3,7,10,[[1097,2,2,7,9],[1101,1,1,9,10]]],[50,1,1,10,11,[[1109,1,1,10,11]]],[57,2,2,11,13,[[1141,1,1,11,12],[1143,1,1,12,13]]],[59,1,1,13,14,[[1151,1,1,13,14]]]],[23864,24680,25472,25793,27121,27658,29120,29220,29224,29309,29541,30120,30180,30378]]]]},{"k":"G2818","v":[["*",[15,14,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[44,4,3,3,6,[[1049,2,2,3,5],[1053,2,1,5,6]]],[47,3,3,6,9,[[1093,1,1,6,7],[1094,2,2,7,9]]],[55,1,1,9,10,[[1131,1,1,9,10]]],[57,3,3,10,13,[[1133,1,1,10,11],[1138,1,1,11,12],[1143,1,1,12,13]]],[58,1,1,13,14,[[1147,1,1,13,14]]]],[23864,24680,25793,28035,28036,28133,29131,29132,29138,29930,29965,30061,30179,30298]]],["heir",[8,8,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[44,1,1,3,4,[[1049,1,1,3,4]]],[47,2,2,4,6,[[1094,2,2,4,6]]],[57,2,2,6,8,[[1133,1,1,6,7],[1143,1,1,7,8]]]],[23864,24680,25793,28035,29132,29138,29965,30179]]],["heirs",[7,6,[[44,3,2,0,2,[[1049,1,1,0,1],[1053,2,1,1,2]]],[47,1,1,2,3,[[1093,1,1,2,3]]],[55,1,1,3,4,[[1131,1,1,3,4]]],[57,1,1,4,5,[[1138,1,1,4,5]]],[58,1,1,5,6,[[1147,1,1,5,6]]]],[28036,28133,29131,29930,30061,30298]]]]},{"k":"G2819","v":[["*",[13,11,[[39,2,1,0,1,[[955,2,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[43,6,5,4,9,[[1018,4,3,4,7],[1025,1,1,7,8],[1043,1,1,8,9]]],[50,1,1,9,10,[[1107,1,1,9,10]]],[59,1,1,10,11,[[1155,1,1,10,11]]]],[24164,24850,25969,26849,26940,26948,26949,27197,27841,29477,30468]]],["heritage",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30468]]],["inheritance",[2,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[27841,29477]]],["lot",[2,2,[[43,2,2,0,2,[[1018,1,1,0,1],[1025,1,1,1,2]]]],[26949,27197]]],["lots",[6,5,[[39,2,1,0,1,[[955,2,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[43,1,1,4,5,[[1018,1,1,4,5]]]],[24164,24850,25969,26849,26949]]],["part",[2,2,[[43,2,2,0,2,[[1018,2,2,0,2]]]],[26940,26948]]]]},{"k":"G2820","v":[["inheritance",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29217]]]]},{"k":"G2821","v":[["*",[11,11,[[44,1,1,0,1,[[1056,1,1,0,1]]],[45,2,2,1,3,[[1062,1,1,1,2],[1068,1,1,2,3]]],[48,3,3,3,6,[[1097,1,1,3,4],[1100,2,2,4,6]]],[49,1,1,6,7,[[1105,1,1,6,7]]],[52,1,1,7,8,[[1116,1,1,7,8]]],[54,1,1,8,9,[[1125,1,1,8,9]]],[57,1,1,9,10,[[1135,1,1,9,10]]],[60,1,1,10,11,[[1156,1,1,10,11]]]],[28238,28389,28507,29224,29273,29276,29435,29660,29818,29996,30489]]],["calling",[10,10,[[44,1,1,0,1,[[1056,1,1,0,1]]],[45,2,2,1,3,[[1062,1,1,1,2],[1068,1,1,2,3]]],[48,2,2,3,5,[[1097,1,1,3,4],[1100,1,1,4,5]]],[49,1,1,5,6,[[1105,1,1,5,6]]],[52,1,1,6,7,[[1116,1,1,6,7]]],[54,1,1,7,8,[[1125,1,1,7,8]]],[57,1,1,8,9,[[1135,1,1,8,9]]],[60,1,1,9,10,[[1156,1,1,9,10]]]],[28238,28389,28507,29224,29276,29435,29660,29818,29996,30489]]],["vocation",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29273]]]]},{"k":"G2822","v":[["called",[11,11,[[39,2,2,0,2,[[948,1,1,0,1],[950,1,1,1,2]]],[44,4,4,2,6,[[1046,3,3,2,5],[1053,1,1,5,6]]],[45,3,3,6,9,[[1062,3,3,6,9]]],[64,1,1,9,10,[[1166,1,1,9,10]]],[65,1,1,10,11,[[1183,1,1,10,11]]]],[23808,23886,27931,27936,27937,28144,28364,28365,28387,30673,30989]]]]},{"k":"G2823","v":[["oven",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23312,25487]]]]},{"k":"G2824","v":[["*",[3,3,[[44,1,1,0,1,[[1060,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[47,1,1,2,3,[[1091,1,1,2,3]]]],[28326,28999,29078]]],["parts",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28326]]],["regions",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[47,1,1,1,2,[[1091,1,1,1,2]]]],[28999,29078]]]]},{"k":"G2825","v":[["*",[10,10,[[39,2,2,0,2,[[937,2,2,0,2]]],[40,3,3,2,5,[[960,1,1,2,3],[963,2,2,3,5]]],[41,3,3,5,8,[[977,1,1,5,6],[980,1,1,6,7],[989,1,1,7,8]]],[43,1,1,8,9,[[1022,1,1,8,9]]],[65,1,1,9,10,[[1168,1,1,9,10]]]],[23381,23385,24344,24467,24493,25125,25261,25685,27074,30739]]],["bed",[8,8,[[39,2,2,0,2,[[937,2,2,0,2]]],[40,2,2,2,4,[[960,1,1,2,3],[963,1,1,3,4]]],[41,3,3,4,7,[[977,1,1,4,5],[980,1,1,5,6],[989,1,1,6,7]]],[65,1,1,7,8,[[1168,1,1,7,8]]]],[23381,23385,24344,24493,25125,25261,25685,30739]]],["beds",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27074]]],["tables",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24467]]]]},{"k":"G2826","v":[["couch",[2,2,[[41,2,2,0,2,[[977,2,2,0,2]]]],[25126,25131]]]]},{"k":"G2827","v":[["*",[7,7,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,4,4,1,5,[[981,2,2,1,3],[996,2,2,3,5]]],[42,1,1,5,6,[[1015,1,1,5,6]]],[57,1,1,6,7,[[1143,1,1,6,7]]]],[23365,25313,25359,25996,26020,26855,30206]]],["away",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25313]]],["bowed",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26855]]],["down",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[25996]]],["flight",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30206]]],["lay",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[23365,25359]]],["spent",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26020]]]]},{"k":"G2828","v":[["company",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25315]]]]},{"k":"G2829","v":[["*",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[23652,24485]]],["Thefts",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24485]]],["thefts",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23652]]]]},{"k":"G2830","v":[["*",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[25269,30272]]],["raging",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25269]]],["wave",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30272]]]]},{"k":"G2831","v":[["fro",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29286]]]]},{"k":"G2832","v":[["Cleophas",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26850]]]]},{"k":"G2833","v":[["itching",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29873]]]]},{"k":"G2834","v":[["Cnidus",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27862]]]]},{"k":"G2835","v":[["farthing",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]]],[23260,24715]]]]},{"k":"G2836","v":[["*",[23,22,[[39,3,3,0,3,[[940,1,1,0,1],[943,1,1,1,2],[947,1,1,2,3]]],[40,1,1,3,4,[[963,1,1,3,4]]],[41,8,8,4,12,[[973,4,4,4,8],[974,1,1,8,9],[983,1,1,9,10],[987,1,1,10,11],[995,1,1,11,12]]],[42,2,2,12,14,[[999,1,1,12,13],[1003,1,1,13,14]]],[43,2,2,14,16,[[1020,1,1,14,15],[1031,1,1,15,16]]],[44,1,1,16,17,[[1061,1,1,16,17]]],[45,2,1,17,18,[[1067,2,1,17,18]]],[47,1,1,18,19,[[1091,1,1,18,19]]],[49,1,1,19,20,[[1105,1,1,19,20]]],[65,2,2,20,22,[[1176,2,2,20,22]]]],[23529,23650,23774,24482,24908,24934,24935,24937,24994,25432,25604,25964,26124,26366,26998,27422,28354,28480,29072,29440,30870,30871]]],["+",[1,1,[[65,1,1,0,1,[[1176,1,1,0,1]]]],[30870]]],["belly",[10,9,[[39,2,2,0,2,[[940,1,1,0,1],[943,1,1,1,2]]],[40,1,1,2,3,[[963,1,1,2,3]]],[41,1,1,3,4,[[987,1,1,3,4]]],[42,1,1,4,5,[[1003,1,1,4,5]]],[44,1,1,5,6,[[1061,1,1,5,6]]],[45,2,1,6,7,[[1067,2,1,6,7]]],[49,1,1,7,8,[[1105,1,1,7,8]]],[65,1,1,8,9,[[1176,1,1,8,9]]]],[23529,23650,24482,25604,26366,28354,28480,29440,30871]]],["womb",[11,11,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,6,6,1,7,[[973,4,4,1,5],[974,1,1,5,6],[983,1,1,6,7]]],[42,1,1,7,8,[[999,1,1,7,8]]],[43,2,2,8,10,[[1020,1,1,8,9],[1031,1,1,9,10]]],[47,1,1,10,11,[[1091,1,1,10,11]]]],[23774,24908,24934,24935,24937,24994,25432,26124,26998,27422,29072]]],["wombs",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25964]]]]},{"k":"G2837","v":[["*",[18,18,[[39,2,2,0,2,[[955,1,1,0,1],[956,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,2,2,3,5,[[1007,2,2,3,5]]],[43,3,3,5,8,[[1024,1,1,5,6],[1029,1,1,6,7],[1030,1,1,7,8]]],[45,6,6,8,14,[[1068,1,1,8,9],[1072,1,1,9,10],[1076,4,4,10,14]]],[51,3,3,14,17,[[1114,3,3,14,17]]],[60,1,1,17,18,[[1158,1,1,17,18]]]],[24181,24208,25909,26534,26535,27176,27343,27398,28526,28630,28724,28736,28738,28769,29616,29617,29618,30526]]],["+",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[51,1,1,1,2,[[1114,1,1,1,2]]]],[28736,29617]]],["asleep",[5,5,[[43,1,1,0,1,[[1024,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[51,2,2,2,4,[[1114,2,2,2,4]]],[60,1,1,4,5,[[1158,1,1,4,5]]]],[27176,28724,29616,29618,30526]]],["dead",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28526]]],["sleep",[4,4,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]],[45,2,2,2,4,[[1072,1,1,2,3],[1076,1,1,3,4]]]],[26535,27398,28630,28769]]],["sleepeth",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26534]]],["sleeping",[2,2,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]]],[25909,27343]]],["slept",[3,3,[[39,2,2,0,2,[[955,1,1,0,1],[956,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]]],[24181,24208,28738]]]]},{"k":"G2838","v":[["rest",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26536]]]]},{"k":"G2839","v":[["*",[12,10,[[40,1,1,0,1,[[963,1,1,0,1]]],[43,5,5,1,6,[[1019,1,1,1,2],[1021,1,1,2,3],[1027,2,2,3,5],[1028,1,1,5,6]]],[44,3,1,6,7,[[1059,3,1,6,7]]],[55,1,1,7,8,[[1129,1,1,7,8]]],[57,1,1,8,9,[[1142,1,1,8,9]]],[64,1,1,9,10,[[1166,1,1,9,10]]]],[24465,26993,27054,27273,27287,27315,28294,29896,30162,30675]]],["common",[7,7,[[43,5,5,0,5,[[1019,1,1,0,1],[1021,1,1,1,2],[1027,2,2,2,4],[1028,1,1,4,5]]],[55,1,1,5,6,[[1129,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[26993,27054,27273,27287,27315,29896,30675]]],["defiled",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24465]]],["thing",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30162]]],["unclean",[3,1,[[44,3,1,0,1,[[1059,3,1,0,1]]]],[28294]]]]},{"k":"G2840","v":[["*",[15,12,[[39,5,3,0,3,[[943,5,3,0,3]]],[40,5,4,3,7,[[963,5,4,3,7]]],[43,3,3,7,10,[[1027,1,1,7,8],[1028,1,1,8,9],[1038,1,1,9,10]]],[57,1,1,10,11,[[1141,1,1,10,11]]],[65,1,1,11,12,[[1187,1,1,11,12]]]],[23644,23651,23653,24478,24481,24483,24486,27274,27316,27692,30118,31080]]],["+",[2,2,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]]],[27274,27316]]],["defile",[6,5,[[39,2,2,0,2,[[943,2,2,0,2]]],[40,4,3,2,5,[[963,4,3,2,5]]]],[23651,23653,24478,24481,24486]]],["defileth",[5,4,[[39,3,2,0,2,[[943,3,2,0,2]]],[40,1,1,2,3,[[963,1,1,2,3]]],[65,1,1,3,4,[[1187,1,1,3,4]]]],[23644,23653,24483,31080]]],["polluted",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27692]]],["unclean",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30118]]]]},{"k":"G2841","v":[["*",[8,8,[[44,2,2,0,2,[[1057,1,1,0,1],[1060,1,1,1,2]]],[47,1,1,2,3,[[1096,1,1,2,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]],[53,1,1,4,5,[[1123,1,1,4,5]]],[57,1,1,5,6,[[1134,1,1,5,6]]],[59,1,1,6,7,[[1154,1,1,6,7]]],[62,1,1,7,8,[[1164,1,1,7,8]]]],[28258,28330,29194,29457,29785,29991,30459,30656]]],["Distributing",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28258]]],["communicate",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29194]]],["communicated",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29457]]],["partaker",[2,2,[[53,1,1,0,1,[[1123,1,1,0,1]]],[62,1,1,1,2,[[1164,1,1,1,2]]]],[29785,30656]]],["partakers",[3,3,[[44,1,1,0,1,[[1060,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[28330,29991,30459]]]]},{"k":"G2842","v":[["*",[20,18,[[43,1,1,0,1,[[1019,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[45,3,2,2,4,[[1062,1,1,2,3],[1071,2,1,3,4]]],[46,4,4,4,8,[[1083,1,1,4,5],[1085,1,1,5,6],[1086,1,1,6,7],[1090,1,1,7,8]]],[47,1,1,8,9,[[1092,1,1,8,9]]],[48,1,1,9,10,[[1099,1,1,9,10]]],[49,3,3,10,13,[[1103,1,1,10,11],[1104,1,1,11,12],[1105,1,1,12,13]]],[56,1,1,13,14,[[1132,1,1,13,14]]],[57,1,1,14,15,[[1145,1,1,14,15]]],[61,4,3,15,18,[[1159,4,3,15,18]]]],[26991,28329,28372,28583,28912,28936,28969,29057,29090,29260,29366,29392,29431,29944,30257,30543,30546,30547]]],["communicate",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30257]]],["communication",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29944]]],["communion",[4,3,[[45,2,1,0,1,[[1071,2,1,0,1]]],[46,2,2,1,3,[[1083,1,1,1,2],[1090,1,1,2,3]]]],[28583,28912,29057]]],["contribution",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28329]]],["distribution",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28969]]],["fellowship",[12,11,[[43,1,1,0,1,[[1019,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]],[47,1,1,3,4,[[1092,1,1,3,4]]],[48,1,1,4,5,[[1099,1,1,4,5]]],[49,3,3,5,8,[[1103,1,1,5,6],[1104,1,1,6,7],[1105,1,1,7,8]]],[61,4,3,8,11,[[1159,4,3,8,11]]]],[26991,28372,28936,29090,29260,29366,29392,29431,30543,30546,30547]]]]},{"k":"G2843","v":[["communicate",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29806]]]]},{"k":"G2844","v":[["*",[10,10,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]],[45,2,2,2,4,[[1071,2,2,2,4]]],[46,2,2,4,6,[[1078,1,1,4,5],[1085,1,1,5,6]]],[56,1,1,6,7,[[1132,1,1,6,7]]],[57,1,1,7,8,[[1142,1,1,7,8]]],[59,1,1,8,9,[[1155,1,1,8,9]]],[60,1,1,9,10,[[1156,1,1,9,10]]]],[23948,25117,28585,28587,28807,28955,29955,30166,30466,30483]]],["companions",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30166]]],["fellowship",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28587]]],["partaker",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30466]]],["partakers",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]],[46,1,1,2,3,[[1078,1,1,2,3]]],[60,1,1,3,4,[[1156,1,1,3,4]]]],[23948,28585,28807,30483]]],["partner",[2,2,[[46,1,1,0,1,[[1085,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[28955,29955]]],["partners",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25117]]]]},{"k":"G2845","v":[["*",[4,4,[[41,1,1,0,1,[[983,1,1,0,1]]],[44,2,2,1,3,[[1054,1,1,1,2],[1058,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]]],[25412,28165,28279,30245]]],["bed",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[25412,30245]]],["chambering",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28279]]],["conceived",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28165]]]]},{"k":"G2846","v":[["+",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27357]]]]},{"k":"G2847","v":[["*",[6,6,[[39,1,1,0,1,[[955,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]],[65,4,4,2,6,[[1183,2,2,2,4],[1184,2,2,4,6]]]],[24157,30124,30978,30979,31005,31009]]],["colour",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30979]]],["coloured",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30978]]],["scarlet",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]],[65,2,2,2,4,[[1184,2,2,2,4]]]],[24157,30124,31005,31009]]]]},{"k":"G2848","v":[["*",[7,7,[[39,2,2,0,2,[[941,1,1,0,1],[945,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,2,2,3,5,[[985,1,1,3,4],[989,1,1,4,5]]],[42,1,1,5,6,[[1008,1,1,5,6]]],[45,1,1,6,7,[[1076,1,1,6,7]]]],[23570,23720,24354,25537,25657,26604,28755]]],["+",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28755]]],["corn",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26604]]],["grain",[5,5,[[39,2,2,0,2,[[941,1,1,0,1],[945,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,2,2,3,5,[[985,1,1,3,4],[989,1,1,4,5]]]],[23570,23720,24354,25537,25657]]]]},{"k":"G2849","v":[["*",[2,2,[[43,1,1,0,1,[[1021,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[27043,30509]]],["punish",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27043]]],["punished",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30509]]]]},{"k":"G2850","v":[["+",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29575]]]]},{"k":"G2851","v":[["*",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[61,1,1,1,2,[[1162,1,1,1,2]]]],[24054,30621]]],["+",[1,1,[[61,1,1,0,1,[[1162,1,1,0,1]]]],[30621]]],["punishment",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24054]]]]},{"k":"G2852","v":[["*",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[46,1,1,3,4,[[1089,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[24121,24819,28444,29029,30419]]],["+",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30419]]],["buffet",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]]],[24819,29029]]],["buffeted",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]]],[24121,28444]]]]},{"k":"G2853","v":[["*",[10,10,[[41,2,2,0,2,[[982,1,1,0,1],[987,1,1,1,2]]],[43,5,5,2,7,[[1022,1,1,2,3],[1025,1,1,3,4],[1026,1,1,4,5],[1027,1,1,5,6],[1034,1,1,6,7]]],[44,1,1,7,8,[[1057,1,1,7,8]]],[45,2,2,8,10,[[1067,2,2,8,10]]]],[25374,25603,27072,27205,27242,27287,27557,28254,28483,28484]]],["clave",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27557]]],["cleave",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28254]]],["cleaveth",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25374]]],["company",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27287]]],["himself",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27242]]],["join",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27072]]],["joined",[3,3,[[41,1,1,0,1,[[987,1,1,0,1]]],[45,2,2,1,3,[[1067,2,2,1,3]]]],[25603,28483,28484]]],["thyself",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27205]]]]},{"k":"G2854","v":[["eyesalve",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30764]]]]},{"k":"G2855","v":[["*",[3,3,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[42,1,1,2,3,[[998,1,1,2,3]]]],[23838,24655,26110]]],["changers'",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26110]]],["moneychangers",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]]],[23838,24655]]]]},{"k":"G2856","v":[["shortened",[4,2,[[39,2,1,0,1,[[952,2,1,0,1]]],[40,2,1,1,2,[[969,2,1,1,2]]]],[23979,24737]]]]},{"k":"G2857","v":[["Colosse",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29467]]]]},{"k":"G2858","v":[]},{"k":"G2859","v":[["*",[6,6,[[41,3,3,0,3,[[978,1,1,0,1],[988,2,2,1,3]]],[42,2,2,3,5,[[997,1,1,3,4],[1009,1,1,4,5]]],[43,1,1,5,6,[[1044,1,1,5,6]]]],[25184,25642,25643,26062,26653,27894]]],["+",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25642]]],["bosom",[4,4,[[41,2,2,0,2,[[978,1,1,0,1],[988,1,1,1,2]]],[42,2,2,2,4,[[997,1,1,2,3],[1009,1,1,3,4]]]],[25184,25643,26062,26653]]],["creek",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27894]]]]},{"k":"G2860","v":[["swim",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27898]]]]},{"k":"G2861","v":[["pool",[5,5,[[42,5,5,0,5,[[1001,3,3,0,3],[1005,2,2,3,5]]]],[26212,26214,26217,26447,26451]]]]},{"k":"G2862","v":[["colony",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27495]]]]},{"k":"G2863","v":[["hair",[2,2,[[45,2,2,0,2,[[1072,2,2,0,2]]]],[28614,28615]]]]},{"k":"G2864","v":[["hair",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28615]]]]},{"k":"G2865","v":[["*",[11,11,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[46,1,1,2,3,[[1082,1,1,2,3]]],[48,1,1,3,4,[[1102,1,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]],[57,3,3,5,8,[[1142,1,1,5,6],[1143,2,2,6,8]]],[59,2,2,8,10,[[1151,1,1,8,9],[1155,1,1,9,10]]],[60,1,1,10,11,[[1157,1,1,10,11]]]],[24035,25232,28887,29345,29542,30169,30191,30211,30383,30469,30513]]],["+",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24035]]],["Receiving",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30383]]],["brought",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25232]]],["receive",[6,6,[[46,1,1,0,1,[[1082,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]],[57,1,1,3,4,[[1142,1,1,3,4]]],[59,1,1,4,5,[[1155,1,1,4,5]]],[60,1,1,5,6,[[1157,1,1,5,6]]]],[28887,29345,29542,30169,30469,30513]]],["received",[2,2,[[57,2,2,0,2,[[1143,2,2,0,2]]]],[30191,30211]]]]},{"k":"G2866","v":[["+",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26208]]]]},{"k":"G2867","v":[["whited",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[23945,27737]]]]},{"k":"G2868","v":[["dust",[5,5,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[982,1,1,2,3]]],[43,2,2,3,5,[[1030,1,1,3,4],[1039,1,1,4,5]]]],[23431,25306,25374,27413,27727]]]]},{"k":"G2869","v":[["ceased",[3,3,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,2,2,1,3,[[960,1,1,1,2],[962,1,1,2,3]]]],[23629,24362,24458]]]]},{"k":"G2870","v":[["lamentation",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27178]]]]},{"k":"G2871","v":[["slaughter",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30065]]]]},{"k":"G2872","v":[["*",[23,21,[[39,2,2,0,2,[[934,1,1,0,1],[939,1,1,1,2]]],[41,2,2,2,4,[[977,1,1,2,3],[984,1,1,3,4]]],[42,3,2,4,6,[[1000,3,2,4,6]]],[43,1,1,6,7,[[1037,1,1,6,7]]],[44,3,2,7,9,[[1061,3,2,7,9]]],[45,3,3,9,12,[[1065,1,1,9,10],[1076,1,1,10,11],[1077,1,1,11,12]]],[47,1,1,12,13,[[1094,1,1,12,13]]],[48,1,1,13,14,[[1100,1,1,13,14]]],[49,1,1,14,15,[[1104,1,1,14,15]]],[50,1,1,15,16,[[1107,1,1,15,16]]],[51,1,1,16,17,[[1115,1,1,16,17]]],[53,2,2,17,19,[[1122,1,1,17,18],[1123,1,1,18,19]]],[54,1,1,19,20,[[1126,1,1,19,20]]],[65,1,1,20,21,[[1168,1,1,20,21]]]],[23310,23487,25112,25486,26162,26194,27661,28342,28348,28445,28728,28792,29142,29300,29407,29494,29633,29757,29780,29833,30720]]],["+",[4,4,[[41,1,1,0,1,[[977,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]],[44,1,1,2,3,[[1061,1,1,2,3]]],[47,1,1,3,4,[[1094,1,1,3,4]]]],[25112,26194,28342,29142]]],["labour",[8,8,[[39,1,1,0,1,[[939,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]],[51,1,1,5,6,[[1115,1,1,5,6]]],[53,2,2,6,8,[[1122,1,1,6,7],[1123,1,1,7,8]]]],[23487,28348,28445,29300,29494,29633,29757,29780]]],["laboured",[5,5,[[42,1,1,0,1,[[1000,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]],[49,1,1,3,4,[[1104,1,1,3,4]]],[65,1,1,4,5,[[1168,1,1,4,5]]]],[26194,28348,28728,29407,30720]]],["laboureth",[2,2,[[45,1,1,0,1,[[1077,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[28792,29833]]],["labouring",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27661]]],["toil",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23310,25486]]],["wearied",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26162]]]]},{"k":"G2873","v":[["*",[19,19,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,2,2,2,4,[[983,1,1,2,3],[990,1,1,3,4]]],[42,1,1,4,5,[[1000,1,1,4,5]]],[45,2,2,5,7,[[1064,1,1,5,6],[1076,1,1,6,7]]],[46,4,4,7,11,[[1083,1,1,7,8],[1087,1,1,8,9],[1088,2,2,9,11]]],[47,1,1,11,12,[[1096,1,1,11,12]]],[51,3,3,12,15,[[1111,1,1,12,13],[1112,1,1,13,14],[1113,1,1,14,15]]],[52,1,1,15,16,[[1118,1,1,15,16]]],[57,1,1,16,17,[[1138,1,1,16,17]]],[65,2,2,17,19,[[1168,1,1,17,18],[1180,1,1,18,19]]]],[24064,24760,25412,25693,26194,28418,28776,28903,28986,29012,29016,29205,29563,29579,29595,29686,30054,30719,30939]]],["+",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,2,2,2,4,[[983,1,1,2,3],[990,1,1,3,4]]],[47,1,1,4,5,[[1096,1,1,4,5]]]],[24064,24760,25412,25693,29205]]],["labour",[8,8,[[45,2,2,0,2,[[1064,1,1,0,1],[1076,1,1,1,2]]],[51,3,3,2,5,[[1111,1,1,2,3],[1112,1,1,3,4],[1113,1,1,4,5]]],[52,1,1,5,6,[[1118,1,1,5,6]]],[57,1,1,6,7,[[1138,1,1,6,7]]],[65,1,1,7,8,[[1168,1,1,7,8]]]],[28418,28776,29563,29579,29595,29686,30054,30719]]],["labours",[5,5,[[42,1,1,0,1,[[1000,1,1,0,1]]],[46,3,3,1,4,[[1083,1,1,1,2],[1087,1,1,2,3],[1088,1,1,3,4]]],[65,1,1,4,5,[[1180,1,1,4,5]]]],[26194,28903,28986,29012,30939]]],["weariness",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29016]]]]},{"k":"G2874","v":[["*",[2,2,[[41,2,2,0,2,[[985,1,1,0,1],[986,1,1,1,2]]]],[25526,25588]]],["+",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25526]]],["dunghill",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25588]]]]},{"k":"G2875","v":[["*",[8,8,[[39,3,3,0,3,[[939,1,1,0,1],[949,1,1,1,2],[952,1,1,2,3]]],[40,1,1,3,4,[[967,1,1,3,4]]],[41,2,2,4,6,[[980,1,1,4,5],[995,1,1,5,6]]],[65,2,2,6,8,[[1167,1,1,6,7],[1184,1,1,7,8]]]],[23476,23834,23987,24648,25297,25962,30704,31002]]],["bewailed",[2,2,[[41,2,2,0,2,[[980,1,1,0,1],[995,1,1,1,2]]]],[25297,25962]]],["down",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]]],[23834,24648]]],["lament",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31002]]],["lamented",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23476]]],["mourn",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23987]]],["wail",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30704]]]]},{"k":"G2876","v":[["ravens",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25483]]]]},{"k":"G2877","v":[["*",[8,7,[[39,3,3,0,3,[[937,2,2,0,2],[942,1,1,2,3]]],[40,5,4,3,7,[[961,2,2,3,5],[962,3,2,5,7]]]],[23403,23404,23608,24405,24406,24429,24435]]],["Damsel",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24405]]],["damsel",[5,4,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,4,3,1,4,[[961,1,1,1,2],[962,3,2,2,4]]]],[23608,24406,24429,24435]]],["maid",[2,2,[[39,2,2,0,2,[[937,2,2,0,2]]]],[23403,23404]]]]},{"k":"G2878","v":[["*",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[24135,24474]]],["Corban",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24474]]],["treasury",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24135]]]]},{"k":"G2879","v":[["Core",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30683]]]]},{"k":"G2880","v":[["*",[2,2,[[43,1,1,0,1,[[1044,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]]],[27893,28441]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27893]]],["full",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28441]]]]},{"k":"G2881","v":[["Corinthians",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]]],[27565,28909]]]]},{"k":"G2882","v":[["Corinth",[6,6,[[43,2,2,0,2,[[1035,1,1,0,1],[1036,1,1,1,2]]],[45,1,1,2,3,[[1062,1,1,2,3]]],[46,2,2,3,5,[[1078,2,2,3,5]]],[54,1,1,5,6,[[1128,1,1,5,6]]]],[27558,27586,28365,28801,28823,29890]]]]},{"k":"G2883","v":[["Cornelius",[10,10,[[43,10,10,0,10,[[1027,10,10,0,10]]]],[27260,27262,27266,27276,27280,27281,27283,27284,27289,27290]]]]},{"k":"G2884","v":[["measures",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25627]]]]},{"k":"G2885","v":[["*",[10,10,[[39,3,3,0,3,[[940,1,1,0,1],[951,1,1,1,2],[953,1,1,2,3]]],[41,2,2,3,5,[[983,1,1,3,4],[993,1,1,4,5]]],[53,1,1,5,6,[[1120,1,1,5,6]]],[55,1,1,6,7,[[1130,1,1,6,7]]],[59,1,1,7,8,[[1153,1,1,7,8]]],[65,2,2,8,10,[[1187,2,2,8,10]]]],[23533,23947,24015,25430,25831,29725,29918,30429,31055,31072]]],["adorn",[2,2,[[53,1,1,0,1,[[1120,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]]],[29725,29918]]],["adorned",[3,3,[[41,1,1,0,1,[[993,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]],[65,1,1,2,3,[[1187,1,1,2,3]]]],[25831,30429,31055]]],["garnish",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23947]]],["garnished",[3,3,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[65,1,1,2,3,[[1187,1,1,2,3]]]],[23533,25430,31072]]],["trimmed",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24015]]]]},{"k":"G2886","v":[["worldly",[2,2,[[55,1,1,0,1,[[1130,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[29920,30106]]]]},{"k":"G2887","v":[["*",[2,2,[[53,2,2,0,2,[[1120,1,1,0,1],[1121,1,1,1,2]]]],[29725,29733]]],["behaviour",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29733]]],["modest",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29725]]]]},{"k":"G2888","v":[["rulers",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29349]]]]},{"k":"G2889","v":[["*",[187,152,[[39,9,9,0,9,[[932,1,1,0,1],[933,1,1,1,2],[941,2,2,2,4],[944,1,1,4,5],[946,1,1,5,6],[952,1,1,6,7],[953,1,1,7,8],[954,1,1,8,9]]],[40,3,3,9,12,[[964,1,1,9,10],[970,1,1,10,11],[972,1,1,11,12]]],[41,3,3,12,15,[[981,1,1,12,13],[983,1,1,13,14],[984,1,1,14,15]]],[42,79,58,15,73,[[997,5,3,15,18],[999,5,3,18,21],[1000,1,1,21,22],[1002,3,3,22,25],[1003,2,2,25,27],[1004,4,3,27,30],[1005,3,2,30,32],[1006,1,1,32,33],[1007,2,2,33,35],[1008,7,5,35,40],[1009,2,1,40,41],[1010,6,6,41,47],[1011,6,2,47,49],[1012,8,6,49,55],[1013,19,14,55,69],[1014,4,3,69,72],[1017,1,1,72,73]]],[43,1,1,73,74,[[1034,1,1,73,74]]],[44,9,9,74,83,[[1046,2,2,74,76],[1048,2,2,76,78],[1049,1,1,78,79],[1050,2,2,79,81],[1056,2,2,81,83]]],[45,21,17,83,100,[[1062,5,4,83,87],[1063,1,1,87,88],[1064,2,2,88,90],[1065,2,2,90,92],[1066,2,1,92,93],[1067,2,1,93,94],[1068,4,3,94,97],[1069,1,1,97,98],[1072,1,1,98,99],[1075,1,1,99,100]]],[46,3,3,100,103,[[1078,1,1,100,101],[1082,1,1,101,102],[1084,1,1,102,103]]],[47,3,2,103,105,[[1094,1,1,103,104],[1096,2,1,104,105]]],[48,3,3,105,108,[[1097,1,1,105,106],[1098,2,2,106,108]]],[49,1,1,108,109,[[1104,1,1,108,109]]],[50,4,3,109,112,[[1107,1,1,109,110],[1108,3,2,110,112]]],[53,3,3,112,115,[[1119,1,1,112,113],[1121,1,1,113,114],[1124,1,1,114,115]]],[57,5,5,115,120,[[1136,1,1,115,116],[1141,1,1,116,117],[1142,1,1,117,118],[1143,2,2,118,120]]],[58,5,4,120,124,[[1146,1,1,120,121],[1147,1,1,121,122],[1148,1,1,122,123],[1149,2,1,123,124]]],[59,3,3,124,127,[[1151,1,1,124,125],[1153,1,1,125,126],[1155,1,1,126,127]]],[60,5,4,127,131,[[1156,1,1,127,128],[1157,3,2,128,130],[1158,1,1,130,131]]],[61,23,17,131,148,[[1160,7,4,131,135],[1161,3,3,135,138],[1162,9,7,138,145],[1163,4,3,145,148]]],[62,1,1,148,149,[[1164,1,1,148,149]]],[65,3,3,149,152,[[1177,1,1,149,150],[1179,1,1,150,151],[1183,1,1,151,152]]]],[23217,23248,23574,23577,23698,23734,23978,24042,24067,24536,24763,24888,25326,25455,25489,26053,26054,26073,26136,26137,26139,26198,26271,26290,26308,26332,26335,26393,26404,26407,26445,26479,26517,26532,26550,26599,26605,26611,26626,26627,26631,26685,26687,26690,26695,26698,26699,26717,26718,26734,26737,26746,26747,26754,26759,26764,26765,26768,26770,26771,26772,26773,26774,26775,26777,26780,26782,26783,26784,26805,26821,26822,26923,27547,27938,27950,27997,28010,28035,28059,28060,28221,28224,28383,28384,28390,28391,28406,28429,28432,28442,28446,28464,28469,28518,28520,28521,28531,28632,28688,28812,28896,28926,29134,29202,29210,29231,29241,29406,29471,29502,29514,29711,29747,29795,30017,30131,30138,30179,30210,30293,30298,30325,30341,30394,30427,30474,30483,30505,30520,30528,30552,30565,30566,30567,30580,30592,30596,30604,30606,30607,30608,30612,30617,30620,30628,30629,30643,30652,30887,30916,30983]]],["adorning",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30427]]],["world",[185,150,[[39,9,9,0,9,[[932,1,1,0,1],[933,1,1,1,2],[941,2,2,2,4],[944,1,1,4,5],[946,1,1,5,6],[952,1,1,6,7],[953,1,1,7,8],[954,1,1,8,9]]],[40,3,3,9,12,[[964,1,1,9,10],[970,1,1,10,11],[972,1,1,11,12]]],[41,3,3,12,15,[[981,1,1,12,13],[983,1,1,13,14],[984,1,1,14,15]]],[42,79,58,15,73,[[997,5,3,15,18],[999,5,3,18,21],[1000,1,1,21,22],[1002,3,3,22,25],[1003,2,2,25,27],[1004,4,3,27,30],[1005,3,2,30,32],[1006,1,1,32,33],[1007,2,2,33,35],[1008,7,5,35,40],[1009,2,1,40,41],[1010,6,6,41,47],[1011,6,2,47,49],[1012,8,6,49,55],[1013,19,14,55,69],[1014,4,3,69,72],[1017,1,1,72,73]]],[43,1,1,73,74,[[1034,1,1,73,74]]],[44,9,9,74,83,[[1046,2,2,74,76],[1048,2,2,76,78],[1049,1,1,78,79],[1050,2,2,79,81],[1056,2,2,81,83]]],[45,21,17,83,100,[[1062,5,4,83,87],[1063,1,1,87,88],[1064,2,2,88,90],[1065,2,2,90,92],[1066,2,1,92,93],[1067,2,1,93,94],[1068,4,3,94,97],[1069,1,1,97,98],[1072,1,1,98,99],[1075,1,1,99,100]]],[46,3,3,100,103,[[1078,1,1,100,101],[1082,1,1,101,102],[1084,1,1,102,103]]],[47,3,2,103,105,[[1094,1,1,103,104],[1096,2,1,104,105]]],[48,3,3,105,108,[[1097,1,1,105,106],[1098,2,2,106,108]]],[49,1,1,108,109,[[1104,1,1,108,109]]],[50,4,3,109,112,[[1107,1,1,109,110],[1108,3,2,110,112]]],[53,3,3,112,115,[[1119,1,1,112,113],[1121,1,1,113,114],[1124,1,1,114,115]]],[57,5,5,115,120,[[1136,1,1,115,116],[1141,1,1,116,117],[1142,1,1,117,118],[1143,2,2,118,120]]],[58,5,4,120,124,[[1146,1,1,120,121],[1147,1,1,121,122],[1148,1,1,122,123],[1149,2,1,123,124]]],[59,2,2,124,126,[[1151,1,1,124,125],[1155,1,1,125,126]]],[60,5,4,126,130,[[1156,1,1,126,127],[1157,3,2,127,129],[1158,1,1,129,130]]],[61,22,16,130,146,[[1160,7,4,130,134],[1161,2,2,134,136],[1162,9,7,136,143],[1163,4,3,143,146]]],[62,1,1,146,147,[[1164,1,1,146,147]]],[65,3,3,147,150,[[1177,1,1,147,148],[1179,1,1,148,149],[1183,1,1,149,150]]]],[23217,23248,23574,23577,23698,23734,23978,24042,24067,24536,24763,24888,25326,25455,25489,26053,26054,26073,26136,26137,26139,26198,26271,26290,26308,26332,26335,26393,26404,26407,26445,26479,26517,26532,26550,26599,26605,26611,26626,26627,26631,26685,26687,26690,26695,26698,26699,26717,26718,26734,26737,26746,26747,26754,26759,26764,26765,26768,26770,26771,26772,26773,26774,26775,26777,26780,26782,26783,26784,26805,26821,26822,26923,27547,27938,27950,27997,28010,28035,28059,28060,28221,28224,28383,28384,28390,28391,28406,28429,28432,28442,28446,28464,28469,28518,28520,28521,28531,28632,28688,28812,28896,28926,29134,29202,29210,29231,29241,29406,29471,29502,29514,29711,29747,29795,30017,30131,30138,30179,30210,30293,30298,30325,30341,30394,30474,30483,30505,30520,30528,30552,30565,30566,30567,30580,30592,30604,30606,30607,30608,30612,30617,30620,30628,30629,30643,30652,30887,30916,30983]]],["world's",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30596]]]]},{"k":"G2890","v":[["Quartus",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28359]]]]},{"k":"G2891","v":[["cumi",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24405]]]]},{"k":"G2892","v":[["*",[3,3,[[39,3,3,0,3,[[955,2,2,0,2],[956,1,1,2,3]]]],[24194,24195,24206]]],["+",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24195]]],["watch",[2,2,[[39,2,2,0,2,[[955,1,1,0,1],[956,1,1,1,2]]]],[24194,24206]]]]},{"k":"G2893","v":[["lightened",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27893]]]]},{"k":"G2894","v":[["baskets",[6,6,[[39,2,2,0,2,[[942,1,1,0,1],[944,1,1,1,2]]],[40,2,2,2,4,[[962,1,1,2,3],[964,1,1,3,4]]],[41,1,1,4,5,[[981,1,1,4,5]]],[42,1,1,5,6,[[1002,1,1,5,6]]]],[23617,23681,24450,24519,25318,26270]]]]},{"k":"G2895","v":[["*",[12,12,[[40,5,5,0,5,[[958,4,4,0,4],[962,1,1,4,5]]],[42,5,5,5,10,[[1001,5,5,5,10]]],[43,2,2,10,12,[[1022,1,1,10,11],[1026,1,1,11,12]]]],[24264,24269,24271,24272,24462,26218,26219,26220,26221,26222,27074,27249]]],["+",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27249]]],["bed",[9,9,[[40,4,4,0,4,[[958,4,4,0,4]]],[42,5,5,4,9,[[1001,5,5,4,9]]]],[24264,24269,24271,24272,26218,26219,26220,26221,26222]]],["beds",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24462]]],["couches",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27074]]]]},{"k":"G2896","v":[["*",[59,58,[[39,11,11,0,11,[[936,1,1,0,1],[937,1,1,1,2],[942,2,2,2,4],[943,1,1,4,5],[948,2,2,5,7],[949,2,2,7,9],[955,2,2,9,11]]],[40,12,12,11,23,[[957,1,1,11,12],[959,1,1,12,13],[961,2,2,13,15],[965,2,2,15,17],[966,2,2,17,19],[967,1,1,19,20],[971,3,3,20,23]]],[41,4,4,23,27,[[976,1,1,23,24],[981,1,1,24,25],[990,1,1,25,26],[991,1,1,26,27]]],[42,6,6,27,33,[[997,1,1,27,28],[1003,2,2,28,30],[1008,2,2,30,32],[1015,1,1,32,33]]],[43,11,11,33,44,[[1024,2,2,33,35],[1031,1,1,35,36],[1033,1,1,36,37],[1036,3,3,37,40],[1038,2,2,40,42],[1040,1,1,42,43],[1041,1,1,43,44]]],[44,2,2,44,46,[[1053,1,1,44,45],[1054,1,1,45,46]]],[47,1,1,46,47,[[1094,1,1,46,47]]],[58,1,1,47,48,[[1150,1,1,47,48]]],[65,11,10,48,58,[[1172,1,1,48,49],[1173,2,2,49,51],[1176,2,1,51,52],[1178,1,1,52,53],[1180,1,1,53,54],[1184,3,3,54,57],[1185,1,1,57,58]]]],[23374,23406,23623,23627,23656,23822,23823,23835,23841,24152,24179,24241,24299,24369,24371,24562,24564,24635,24636,24649,24839,24840,24865,25104,25340,25727,25771,26059,26356,26365,26593,26624,26837,27173,27176,27428,27500,27613,27617,27619,27692,27700,27740,27790,28131,28182,29137,30358,30803,30812,30820,30864,30893,30941,30995,31011,31012,31034]]],["+",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27617]]],["cried",[29,28,[[39,4,4,0,4,[[942,1,1,0,1],[948,1,1,1,2],[949,1,1,2,3],[955,1,1,3,4]]],[40,6,6,4,10,[[957,1,1,4,5],[959,1,1,5,6],[961,1,1,6,7],[965,1,1,7,8],[966,1,1,8,9],[967,1,1,9,10]]],[41,1,1,10,11,[[990,1,1,10,11]]],[42,5,5,11,16,[[997,1,1,11,12],[1003,2,2,12,14],[1008,2,2,14,16]]],[43,3,3,16,19,[[1024,1,1,16,17],[1033,1,1,17,18],[1041,1,1,18,19]]],[65,10,9,19,28,[[1172,1,1,19,20],[1173,2,2,20,22],[1176,2,1,22,23],[1178,1,1,23,24],[1184,3,3,24,27],[1185,1,1,27,28]]]],[23627,23823,23835,24179,24241,24299,24371,24564,24636,24649,25727,26059,26356,26365,26593,26624,27176,27500,27790,30803,30812,30820,30864,30893,30995,31011,31012,31034]]],["crieth",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]],[58,1,1,2,3,[[1150,1,1,2,3]]]],[23656,28182,30358]]],["cry",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28131]]],["crying",[6,6,[[39,2,2,0,2,[[937,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[961,1,1,2,3]]],[43,1,1,3,4,[[1038,1,1,3,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]],[65,1,1,5,6,[[1180,1,1,5,6]]]],[23406,23841,24369,27700,29137,30941]]],["out",[19,19,[[39,4,4,0,4,[[936,1,1,0,1],[942,1,1,1,2],[948,1,1,2,3],[955,1,1,3,4]]],[40,5,5,4,9,[[965,1,1,4,5],[966,1,1,5,6],[971,3,3,6,9]]],[41,3,3,9,12,[[976,1,1,9,10],[981,1,1,10,11],[991,1,1,11,12]]],[42,1,1,12,13,[[1015,1,1,12,13]]],[43,6,6,13,19,[[1024,1,1,13,14],[1031,1,1,14,15],[1036,2,2,15,17],[1038,1,1,17,18],[1040,1,1,18,19]]]],[23374,23623,23822,24152,24562,24635,24839,24840,24865,25104,25340,25771,26837,27173,27428,27613,27619,27692,27740]]]]},{"k":"G2897","v":[["surfeiting",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25860]]]]},{"k":"G2898","v":[["*",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]]],[24162,24848,25968,26842]]],["Calvary",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25968]]],["skull",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]]],[24162,24848,26842]]]]},{"k":"G2899","v":[["*",[5,5,[[39,3,3,0,3,[[937,1,1,0,1],[942,1,1,1,2],[951,1,1,2,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[41,1,1,4,5,[[980,1,1,4,5]]]],[23399,23633,23923,24463,25289]]],["border",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24463,25289]]],["borders",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23923]]],["hem",[2,2,[[39,2,2,0,2,[[937,1,1,0,1],[942,1,1,1,2]]]],[23399,23633]]]]},{"k":"G2900","v":[["mighty",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30471]]]]},{"k":"G2901","v":[["*",[4,4,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[48,1,1,3,4,[[1099,1,1,3,4]]]],[24973,25013,28789,29267]]],["strengthened",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29267]]],["strong",[3,3,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]]],[24973,25013,28789]]]]},{"k":"G2902","v":[["*",[47,46,[[39,12,12,0,12,[[937,1,1,0,1],[940,1,1,1,2],[942,1,1,2,3],[946,1,1,3,4],[949,1,1,4,5],[950,1,1,5,6],[954,5,5,6,11],[956,1,1,11,12]]],[40,15,15,12,27,[[957,1,1,12,13],[959,1,1,13,14],[961,1,1,14,15],[962,1,1,15,16],[963,3,3,16,19],[965,2,2,19,21],[968,1,1,21,22],[970,5,5,22,27]]],[41,2,2,27,29,[[980,1,1,27,28],[996,1,1,28,29]]],[42,2,1,29,30,[[1016,2,1,29,30]]],[43,4,4,30,34,[[1019,1,1,30,31],[1020,1,1,31,32],[1041,1,1,32,33],[1044,1,1,33,34]]],[50,1,1,34,35,[[1108,1,1,34,35]]],[52,1,1,35,36,[[1117,1,1,35,36]]],[57,2,2,36,38,[[1136,1,1,36,37],[1138,1,1,37,38]]],[65,8,8,38,46,[[1168,5,5,38,43],[1169,1,1,43,44],[1173,1,1,44,45],[1186,1,1,45,46]]]],[23404,23500,23600,23755,23872,23878,24058,24102,24104,24109,24111,24204,24246,24309,24405,24424,24466,24467,24471,24548,24565,24685,24755,24798,24800,24803,24805,25299,26007,26890,26973,27007,27775,27868,29513,29676,30028,30062,30718,30730,30731,30732,30742,30757,30811,31040]]],["+",[2,2,[[39,2,2,0,2,[[954,2,2,0,2]]]],[24102,24109]]],["fast",[4,4,[[57,1,1,0,1,[[1136,1,1,0,1]]],[65,3,3,1,4,[[1168,2,2,1,3],[1169,1,1,3,4]]]],[30028,30730,30742,30757]]],["hands",[2,2,[[39,2,2,0,2,[[946,1,1,0,1],[949,1,1,1,2]]]],[23755,23872]]],["held",[2,2,[[39,1,1,0,1,[[956,1,1,0,1]]],[43,1,1,1,2,[[1020,1,1,1,2]]]],[24204,27007]]],["hold",[7,7,[[39,2,2,0,2,[[940,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[963,2,2,2,4]]],[52,1,1,4,5,[[1117,1,1,4,5]]],[65,2,2,5,7,[[1168,2,2,5,7]]]],[23500,24111,24467,24471,29676,30731,30732]]],["holden",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[26007,26973]]],["holdeth",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30718]]],["holding",[3,3,[[40,1,1,0,1,[[963,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]],[65,1,1,2,3,[[1173,1,1,2,3]]]],[24466,29513,30811]]],["kept",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24548]]],["obtained",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27868]]],["on",[5,5,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,3,3,1,4,[[959,1,1,1,2],[968,1,1,2,3],[970,1,1,3,4]]],[65,1,1,4,5,[[1186,1,1,4,5]]]],[23600,24309,24685,24805,31040]]],["retain",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26890]]],["retained",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26890]]],["take",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[970,2,2,1,3]]]],[24058,24755,24798]]],["took",[10,10,[[39,3,3,0,3,[[937,1,1,0,1],[950,1,1,1,2],[954,1,1,2,3]]],[40,5,5,3,8,[[957,1,1,3,4],[961,1,1,4,5],[965,1,1,5,6],[970,2,2,6,8]]],[41,1,1,8,9,[[980,1,1,8,9]]],[43,1,1,9,10,[[1041,1,1,9,10]]]],[23404,23878,24104,24246,24405,24565,24800,24803,25299,27775]]],["upon",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[24424,30062]]]]},{"k":"G2903","v":[["*",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,3,3,1,4,[[1040,1,1,1,2],[1041,1,1,2,3],[1043,1,1,3,4]]]],[24896,27760,27772,27848]]],["excellent",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[24896,27760]]],["noble",[2,2,[[43,2,2,0,2,[[1041,1,1,0,1],[1043,1,1,1,2]]]],[27772,27848]]]]},{"k":"G2904","v":[["*",[12,12,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]],[48,2,2,2,4,[[1097,1,1,2,3],[1102,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]],[53,1,1,5,6,[[1124,1,1,5,6]]],[57,1,1,6,7,[[1134,1,1,6,7]]],[59,2,2,7,9,[[1154,1,1,7,8],[1155,1,1,8,9]]],[64,1,1,9,10,[[1166,1,1,9,10]]],[65,2,2,10,12,[[1167,1,1,10,11],[1171,1,1,11,12]]]],[24944,27605,29225,29347,29476,29804,29991,30457,30476,30697,30703,30792]]],["+",[2,2,[[43,1,1,0,1,[[1036,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]]],[27605,29225]]],["dominion",[4,4,[[59,2,2,0,2,[[1154,1,1,0,1],[1155,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]],[65,1,1,3,4,[[1167,1,1,3,4]]]],[30457,30476,30697,30703]]],["power",[5,5,[[48,1,1,0,1,[[1102,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]],[53,1,1,2,3,[[1124,1,1,2,3]]],[57,1,1,3,4,[[1134,1,1,3,4]]],[65,1,1,4,5,[[1171,1,1,4,5]]]],[29347,29476,29804,29991,30792]]],["strength",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24944]]]]},{"k":"G2905","v":[["*",[7,7,[[39,2,2,0,2,[[940,1,1,0,1],[943,1,1,1,2]]],[42,4,4,2,6,[[1007,1,1,2,3],[1014,1,1,3,4],[1015,2,2,4,6]]],[43,1,1,6,7,[[1039,1,1,6,7]]]],[23508,23655,26566,26825,26831,26840,27727]]],["cried",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[42,2,2,1,3,[[1007,1,1,1,2],[1014,1,1,2,3]]]],[23655,26566,26825]]],["cry",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23508]]],["out",[3,3,[[42,2,2,0,2,[[1015,2,2,0,2]]],[43,1,1,2,3,[[1039,1,1,2,3]]]],[26831,26840,27727]]]]},{"k":"G2906","v":[["*",[6,6,[[39,1,1,0,1,[[953,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]],[57,1,1,3,4,[[1137,1,1,3,4]]],[65,2,2,4,6,[[1180,1,1,4,5],[1187,1,1,5,6]]]],[24014,27743,29303,30037,30944,31057]]],["clamour",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29303]]],["cry",[3,3,[[39,1,1,0,1,[[953,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]],[65,1,1,2,3,[[1180,1,1,2,3]]]],[24014,27743,30944]]],["crying",[2,2,[[57,1,1,0,1,[[1137,1,1,0,1]]],[65,1,1,1,2,[[1187,1,1,1,2]]]],[30037,31057]]]]},{"k":"G2907","v":[["flesh",[2,2,[[44,1,1,0,1,[[1059,1,1,0,1]]],[45,1,1,1,2,[[1069,1,1,1,2]]]],[28301,28540]]]]},{"k":"G2908","v":[["better",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28525]]]]},{"k":"G2909","v":[["*",[19,18,[[45,3,3,0,3,[[1068,1,1,0,1],[1072,1,1,1,2],[1073,1,1,2,3]]],[49,1,1,3,4,[[1103,1,1,3,4]]],[57,13,12,4,16,[[1133,1,1,4,5],[1138,1,1,5,6],[1139,3,3,6,9],[1140,2,1,9,10],[1141,1,1,10,11],[1142,1,1,11,12],[1143,3,3,12,15],[1144,1,1,15,16]]],[59,1,1,16,17,[[1153,1,1,16,17]]],[60,1,1,17,18,[[1157,1,1,17,18]]]],[28496,28617,28665,29384,29967,30053,30071,30083,30086,30098,30128,30167,30188,30207,30212,30236,30441,30521]]],["best",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28665]]],["better",[15,14,[[45,2,2,0,2,[[1068,1,1,0,1],[1072,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[57,10,9,3,12,[[1133,1,1,3,4],[1139,3,3,4,7],[1140,2,1,7,8],[1141,1,1,8,9],[1142,1,1,9,10],[1143,2,2,10,12]]],[59,1,1,12,13,[[1153,1,1,12,13]]],[60,1,1,13,14,[[1157,1,1,13,14]]]],[28496,28617,29384,29967,30071,30083,30086,30098,30128,30167,30188,30207,30441,30521]]],["thing",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30212]]],["things",[2,2,[[57,2,2,0,2,[[1138,1,1,0,1],[1144,1,1,1,2]]]],[30053,30236]]]]},{"k":"G2910","v":[["*",[7,7,[[39,2,2,0,2,[[946,1,1,0,1],[950,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[43,3,3,3,6,[[1022,1,1,3,4],[1027,1,1,4,5],[1045,1,1,5,6]]],[47,1,1,6,7,[[1093,1,1,6,7]]]],[23733,23912,25974,27089,27298,27903,29115]]],["hang",[2,2,[[39,1,1,0,1,[[950,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]]],[23912,27903]]],["hanged",[4,4,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]],[43,2,2,2,4,[[1022,1,1,2,3],[1027,1,1,3,4]]]],[23733,25974,27089,27298]]],["hangeth",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29115]]]]},{"k":"G2911","v":[["place",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23377,24377,25278]]]]},{"k":"G2912","v":[["*",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[26960,29904]]],["Cretes",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26960]]],["Cretians",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29904]]]]},{"k":"G2913","v":[["Crescens",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29880]]]]},{"k":"G2914","v":[["Crete",[5,5,[[43,4,4,0,4,[[1044,4,4,0,4]]],[55,1,1,4,5,[[1129,1,1,4,5]]]],[27862,27867,27868,27876,29897]]]]},{"k":"G2915","v":[["barley",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30799]]]]},{"k":"G2916","v":[["barley",[2,2,[[42,2,2,0,2,[[1002,2,2,0,2]]]],[26266,26270]]]]},{"k":"G2917","v":[["*",[28,28,[[39,2,2,0,2,[[935,1,1,0,1],[951,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,3,3,3,6,[[992,1,1,3,4],[995,1,1,4,5],[996,1,1,5,6]]],[42,1,1,6,7,[[1005,1,1,6,7]]],[43,1,1,7,8,[[1041,1,1,7,8]]],[44,6,6,8,14,[[1047,2,2,8,10],[1048,1,1,10,11],[1050,1,1,11,12],[1056,1,1,12,13],[1058,1,1,13,14]]],[45,3,3,14,17,[[1067,1,1,14,15],[1072,2,2,15,17]]],[47,1,1,17,18,[[1095,1,1,17,18]]],[53,2,2,18,20,[[1121,1,1,18,19],[1123,1,1,19,20]]],[57,1,1,20,21,[[1138,1,1,20,21]]],[58,1,1,21,22,[[1148,1,1,21,22]]],[59,1,1,22,23,[[1154,1,1,22,23]]],[60,1,1,23,24,[[1157,1,1,23,24]]],[64,1,1,24,25,[[1166,1,1,24,25]]],[65,3,3,25,28,[[1183,1,1,25,26],[1184,1,1,26,27],[1186,1,1,27,28]]]],[23318,23932,24713,25826,25975,26011,26479,27794,27964,27965,27999,28063,28242,28268,28474,28629,28634,29172,29737,29775,30046,30320,30463,30503,30676,30976,31013,31042]]],["+",[2,2,[[45,1,1,0,1,[[1067,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[28474,31013]]],["condemnation",[5,5,[[41,1,1,0,1,[[995,1,1,0,1]]],[45,1,1,1,2,[[1072,1,1,1,2]]],[53,1,1,2,3,[[1121,1,1,2,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[25975,28634,29737,30320,30676]]],["condemned",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26011]]],["damnation",[7,7,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[44,2,2,3,5,[[1048,1,1,3,4],[1058,1,1,4,5]]],[45,1,1,5,6,[[1072,1,1,5,6]]],[53,1,1,6,7,[[1123,1,1,6,7]]]],[23932,24713,25826,27999,28268,28629,29775]]],["judgment",[12,12,[[39,1,1,0,1,[[935,1,1,0,1]]],[42,1,1,1,2,[[1005,1,1,1,2]]],[43,1,1,2,3,[[1041,1,1,2,3]]],[44,3,3,3,6,[[1047,2,2,3,5],[1050,1,1,5,6]]],[47,1,1,6,7,[[1095,1,1,6,7]]],[57,1,1,7,8,[[1138,1,1,7,8]]],[59,1,1,8,9,[[1154,1,1,8,9]]],[60,1,1,9,10,[[1157,1,1,9,10]]],[65,2,2,10,12,[[1183,1,1,10,11],[1186,1,1,11,12]]]],[23318,26479,27794,27964,27965,28063,29172,30046,30463,30503,30976,31042]]],["judgments",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28242]]]]},{"k":"G2918","v":[["lilies",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23310,25486]]]]},{"k":"G2919","v":[["*",[114,98,[[39,6,4,0,4,[[933,1,1,0,1],[935,4,2,1,3],[947,1,1,3,4]]],[41,6,5,4,9,[[978,2,1,4,5],[979,1,1,5,6],[984,1,1,6,7],[991,1,1,7,8],[994,1,1,8,9]]],[42,19,14,9,23,[[999,3,2,9,11],[1001,2,2,11,13],[1003,3,2,13,15],[1004,5,4,15,19],[1008,4,2,19,21],[1012,1,1,21,22],[1014,1,1,22,23]]],[43,22,22,23,45,[[1020,1,1,23,24],[1021,1,1,24,25],[1024,1,1,25,26],[1030,2,2,26,28],[1032,1,1,28,29],[1033,2,2,29,31],[1034,1,1,31,32],[1037,1,1,32,33],[1038,1,1,33,34],[1040,2,2,34,36],[1041,2,2,36,38],[1042,4,4,38,42],[1043,2,2,42,44],[1044,1,1,44,45]]],[44,18,14,45,59,[[1047,7,5,45,50],[1048,3,3,50,53],[1059,8,6,53,59]]],[45,17,15,59,74,[[1063,1,1,59,60],[1065,1,1,60,61],[1066,4,3,61,64],[1067,5,4,64,68],[1068,1,1,68,69],[1071,2,2,69,71],[1072,3,3,71,74]]],[46,2,2,74,76,[[1079,1,1,74,75],[1082,1,1,75,76]]],[50,1,1,76,77,[[1108,1,1,76,77]]],[52,1,1,77,78,[[1117,1,1,77,78]]],[54,1,1,78,79,[[1128,1,1,78,79]]],[55,1,1,79,80,[[1131,1,1,79,80]]],[57,2,2,80,82,[[1142,1,1,80,81],[1145,1,1,81,82]]],[58,5,3,82,85,[[1147,1,1,82,83],[1149,4,2,83,85]]],[59,4,4,85,89,[[1151,1,1,85,86],[1152,1,1,86,87],[1154,2,2,87,89]]],[65,9,9,89,98,[[1172,1,1,89,90],[1177,1,1,90,91],[1182,1,1,91,92],[1184,2,2,92,94],[1185,2,2,94,96],[1186,2,2,96,98]]]],[23274,23317,23318,23790,25183,25238,25516,25753,25894,26137,26138,26232,26240,26352,26379,26396,26397,26407,26431,26627,26628,26737,26816,27009,27041,27123,27389,27408,27461,27487,27498,27554,27642,27689,27737,27740,27775,27790,27805,27806,27816,27821,27829,27831,27856,27963,27965,27974,27978,27989,27995,27997,27998,28283,28284,28285,28290,28293,28302,28396,28438,28457,28466,28467,28468,28469,28470,28473,28524,28582,28596,28613,28631,28632,28825,28891,29510,29673,29871,29935,30163,30245,30305,30348,30349,30391,30422,30451,30452,30803,30890,30959,31001,31013,31019,31028,31050,31051]]],["+",[5,5,[[39,1,1,0,1,[[933,1,1,0,1]]],[44,1,1,1,2,[[1059,1,1,1,2]]],[59,2,2,2,4,[[1151,1,1,2,3],[1154,1,1,3,4]]],[65,1,1,4,5,[[1184,1,1,4,5]]]],[23274,28293,30391,30452,31013]]],["Judge",[4,4,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[42,1,1,2,3,[[1003,1,1,2,3]]],[45,1,1,3,4,[[1072,1,1,3,4]]]],[23317,25183,26352,28613]]],["concluded",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27689]]],["condemn",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26137]]],["condemned",[2,1,[[42,2,1,0,1,[[999,2,1,0,1]]]],[26138]]],["condemneth",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28302]]],["condemning",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27389]]],["damned",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29673]]],["decreed",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28524]]],["determined",[7,7,[[43,4,4,0,4,[[1020,1,1,0,1],[1037,1,1,1,2],[1042,1,1,2,3],[1044,1,1,3,4]]],[45,1,1,4,5,[[1063,1,1,4,5]]],[46,1,1,5,6,[[1079,1,1,5,6]]],[55,1,1,6,7,[[1131,1,1,6,7]]]],[27009,27642,27821,27856,28396,28825,29935]]],["esteemeth",[2,1,[[44,2,1,0,1,[[1059,2,1,0,1]]]],[28285]]],["is",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27461]]],["judge",[40,37,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[991,1,1,2,3]]],[42,11,9,3,12,[[1001,1,1,3,4],[1003,2,2,4,6],[1004,4,3,6,9],[1008,3,2,9,11],[1014,1,1,11,12]]],[43,5,5,12,17,[[1021,1,1,12,13],[1024,1,1,13,14],[1030,1,1,14,15],[1034,1,1,15,16],[1040,1,1,16,17]]],[44,6,6,17,23,[[1047,2,2,17,19],[1048,1,1,19,20],[1059,3,3,20,23]]],[45,6,5,23,28,[[1065,1,1,23,24],[1066,2,1,24,25],[1067,2,2,25,27],[1071,1,1,27,28]]],[46,1,1,28,29,[[1082,1,1,28,29]]],[50,1,1,29,30,[[1108,1,1,29,30]]],[54,1,1,30,31,[[1128,1,1,30,31]]],[57,2,2,31,33,[[1142,1,1,31,32],[1145,1,1,32,33]]],[58,1,1,33,34,[[1149,1,1,33,34]]],[59,1,1,34,35,[[1154,1,1,34,35]]],[65,2,2,35,37,[[1172,1,1,35,36],[1185,1,1,36,37]]]],[23318,25516,25753,26240,26352,26379,26396,26397,26407,26627,26628,26816,27041,27123,27408,27554,27737,27978,27989,27997,28283,28290,28293,28438,28466,28469,28470,28582,28891,29510,29871,30163,30245,30348,30451,30803,31028]]],["judged",[25,25,[[39,2,2,0,2,[[935,2,2,0,2]]],[41,2,2,2,4,[[978,1,1,2,3],[979,1,1,3,4]]],[42,1,1,4,5,[[1012,1,1,4,5]]],[43,6,6,5,11,[[1033,1,1,5,6],[1041,1,1,6,7],[1042,3,3,7,10],[1043,1,1,10,11]]],[44,3,3,11,14,[[1047,1,1,11,12],[1048,2,2,12,14]]],[45,5,5,14,19,[[1066,1,1,14,15],[1067,1,1,15,16],[1071,1,1,16,17],[1072,2,2,17,19]]],[58,1,1,19,20,[[1147,1,1,19,20]]],[65,5,5,20,25,[[1177,1,1,20,21],[1182,1,1,21,22],[1185,1,1,22,23],[1186,2,2,23,25]]]],[23317,23318,25183,25238,26737,27498,27775,27805,27806,27816,27829,27974,27995,27998,28457,28469,28596,28631,28632,30305,30890,30959,31019,31050,31051]]],["judgest",[6,4,[[44,5,3,0,3,[[1047,4,2,0,2],[1059,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]]],[27963,27965,28284,30349]]],["judgeth",[8,7,[[42,3,3,0,3,[[1001,1,1,0,1],[1004,1,1,1,2],[1008,1,1,2,3]]],[45,1,1,3,4,[[1066,1,1,3,4]]],[58,2,1,4,5,[[1149,2,1,4,5]]],[59,1,1,5,6,[[1152,1,1,5,6]]],[65,1,1,6,7,[[1184,1,1,6,7]]]],[26232,26431,26628,28467,30348,30422,31001]]],["judging",[2,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[23790,25894]]],["law",[2,2,[[45,2,2,0,2,[[1067,2,2,0,2]]]],[28468,28473]]],["ordained",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27487]]],["question",[2,2,[[43,2,2,0,2,[[1040,1,1,0,1],[1041,1,1,1,2]]]],[27740,27790]]],["thought",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27831]]]]},{"k":"G2920","v":[["*",[48,47,[[39,12,12,0,12,[[933,2,2,0,2],[938,1,1,2,3],[939,2,2,3,5],[940,5,5,5,10],[951,2,2,10,12]]],[40,2,2,12,14,[[959,1,1,12,13],[962,1,1,13,14]]],[41,4,4,14,18,[[982,1,1,14,15],[983,3,3,15,18]]],[42,11,11,18,29,[[999,1,1,18,19],[1001,5,5,19,24],[1003,1,1,24,25],[1004,1,1,25,26],[1008,1,1,26,27],[1012,2,2,27,29]]],[43,1,1,29,30,[[1025,1,1,29,30]]],[52,1,1,30,31,[[1116,1,1,30,31]]],[53,1,1,31,32,[[1123,1,1,31,32]]],[57,2,2,32,34,[[1141,1,1,32,33],[1142,1,1,33,34]]],[58,2,1,34,35,[[1147,2,1,34,35]]],[60,4,4,35,39,[[1157,3,3,35,38],[1158,1,1,38,39]]],[61,1,1,39,40,[[1162,1,1,39,40]]],[64,3,3,40,43,[[1166,3,3,40,43]]],[65,4,4,43,47,[[1180,1,1,43,44],[1182,1,1,44,45],[1184,1,1,45,46],[1185,1,1,46,47]]]],[23255,23256,23432,23481,23483,23507,23509,23525,23530,23531,23941,23951,24317,24418,25377,25436,25437,25447,26139,26232,26234,26237,26239,26240,26352,26397,26611,26734,26737,27209,29654,29787,30132,30160,30306,30504,30509,30511,30529,30620,30678,30681,30687,30933,30961,31003,31019]]],["+",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23941]]],["accusation",[2,2,[[60,1,1,0,1,[[1157,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[30511,30681]]],["condemnation",[2,2,[[42,2,2,0,2,[[999,1,1,0,1],[1001,1,1,1,2]]]],[26139,26234]]],["damnation",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[42,1,1,2,3,[[1001,1,1,2,3]]]],[23951,24317,26239]]],["judgment",[38,37,[[39,10,10,0,10,[[933,2,2,0,2],[938,1,1,2,3],[939,2,2,3,5],[940,5,5,5,10]]],[40,1,1,10,11,[[962,1,1,10,11]]],[41,4,4,11,15,[[982,1,1,11,12],[983,3,3,12,15]]],[42,8,8,15,23,[[1001,3,3,15,18],[1003,1,1,18,19],[1004,1,1,19,20],[1008,1,1,20,21],[1012,2,2,21,23]]],[43,1,1,23,24,[[1025,1,1,23,24]]],[52,1,1,24,25,[[1116,1,1,24,25]]],[53,1,1,25,26,[[1123,1,1,25,26]]],[57,2,2,26,28,[[1141,1,1,26,27],[1142,1,1,27,28]]],[58,2,1,28,29,[[1147,2,1,28,29]]],[60,3,3,29,32,[[1157,2,2,29,31],[1158,1,1,31,32]]],[61,1,1,32,33,[[1162,1,1,32,33]]],[64,2,2,33,35,[[1166,2,2,33,35]]],[65,2,2,35,37,[[1180,1,1,35,36],[1184,1,1,36,37]]]],[23255,23256,23432,23481,23483,23507,23509,23525,23530,23531,24418,25377,25436,25437,25447,26232,26237,26240,26352,26397,26611,26734,26737,27209,29654,29787,30132,30160,30306,30504,30509,30529,30620,30678,30687,30933,31003]]],["judgments",[2,2,[[65,2,2,0,2,[[1182,1,1,0,1],[1185,1,1,1,2]]]],[30961,31019]]]]},{"k":"G2921","v":[["Crispus",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]]],[27565,28377]]]]},{"k":"G2922","v":[["*",[3,3,[[45,2,2,0,2,[[1067,2,2,0,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[28469,28471,30299]]],["+",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28469]]],["judgments",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28471]]],["seats",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30299]]]]},{"k":"G2923","v":[["*",[17,15,[[39,3,2,0,2,[[933,2,1,0,1],[940,1,1,1,2]]],[41,5,4,2,6,[[983,1,1,2,3],[984,2,1,3,4],[990,2,2,4,6]]],[43,4,4,6,10,[[1027,1,1,6,7],[1030,1,1,7,8],[1035,1,1,8,9],[1041,1,1,9,10]]],[54,1,1,10,11,[[1128,1,1,10,11]]],[57,1,1,11,12,[[1144,1,1,11,12]]],[58,3,3,12,15,[[1147,1,1,12,13],[1149,1,1,13,14],[1150,1,1,14,15]]]],[23259,23516,25424,25517,25690,25694,27301,27382,27572,27779,29878,30235,30297,30348,30363]]],["Judge",[2,2,[[43,1,1,0,1,[[1027,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[27301,30235]]],["judge",[11,9,[[39,2,1,0,1,[[933,2,1,0,1]]],[41,4,3,1,4,[[984,2,1,1,2],[990,2,2,2,4]]],[43,2,2,4,6,[[1035,1,1,4,5],[1041,1,1,5,6]]],[54,1,1,6,7,[[1128,1,1,6,7]]],[58,2,2,7,9,[[1149,1,1,7,8],[1150,1,1,8,9]]]],[23259,25517,25690,25694,27572,27779,29878,30348,30363]]],["judges",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[43,1,1,2,3,[[1030,1,1,2,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[23516,25424,27382,30297]]]]},{"k":"G2924","v":[["discerner",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30026]]]]},{"k":"G2925","v":[["*",[9,9,[[39,2,2,0,2,[[935,2,2,0,2]]],[41,4,4,2,6,[[983,2,2,2,4],[984,1,1,4,5],[985,1,1,5,6]]],[43,2,2,6,8,[[1029,2,2,6,8]]],[65,1,1,8,9,[[1169,1,1,8,9]]]],[23323,23324,25414,25415,25495,25543,27350,27353,30766]]],["knock",[4,4,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[985,1,1,2,3]]],[65,1,1,3,4,[[1169,1,1,3,4]]]],[23323,25414,25543,30766]]],["knocked",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27350]]],["knocketh",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[984,1,1,2,3]]]],[23324,25415,25495]]],["knocking",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27353]]]]},{"k":"G2926","v":[]},{"k":"G2927","v":[["*",[20,17,[[39,7,4,0,4,[[934,6,3,0,3],[938,1,1,3,4]]],[40,1,1,4,5,[[960,1,1,4,5]]],[41,3,3,5,8,[[980,1,1,5,6],[983,1,1,6,7],[984,1,1,7,8]]],[42,3,3,8,11,[[1003,2,2,8,10],[1014,1,1,10,11]]],[44,2,2,11,13,[[1047,2,2,11,13]]],[45,2,2,13,15,[[1065,1,1,13,14],[1075,1,1,14,15]]],[46,1,1,15,16,[[1081,1,1,15,16]]],[59,1,1,16,17,[[1153,1,1,16,17]]]],[23286,23288,23300,23443,24345,25262,25438,25461,26332,26338,26805,27978,27991,28438,28703,28861,30428]]],["+",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27991]]],["hid",[3,3,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[984,1,1,2,3]]]],[23443,24345,25461]]],["hidden",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30428]]],["place",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25438]]],["secret",[10,7,[[39,6,3,0,3,[[934,6,3,0,3]]],[41,1,1,3,4,[[980,1,1,3,4]]],[42,3,3,4,7,[[1003,2,2,4,6],[1014,1,1,6,7]]]],[23286,23288,23300,25262,26332,26338,26805]]],["secrets",[2,2,[[44,1,1,0,1,[[1047,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[27978,28703]]],["things",[2,2,[[45,1,1,0,1,[[1065,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]]],[28438,28861]]]]},{"k":"G2928","v":[["*",[16,15,[[39,5,4,0,4,[[933,1,1,0,1],[941,3,2,1,3],[953,1,1,3,4]]],[41,2,2,4,6,[[990,1,1,4,5],[991,1,1,5,6]]],[42,3,3,6,9,[[1004,1,1,6,7],[1008,1,1,7,8],[1015,1,1,8,9]]],[50,1,1,9,10,[[1109,1,1,9,10]]],[53,1,1,10,11,[[1123,1,1,10,11]]],[57,1,1,11,12,[[1143,1,1,11,12]]],[65,3,3,12,15,[[1168,1,1,12,13],[1172,2,2,13,15]]]],[23248,23574,23583,24033,25722,25773,26440,26616,26863,29520,29788,30195,30734,30808,30809]]],["+",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30734]]],["hid",[10,10,[[39,3,3,0,3,[[933,1,1,0,1],[941,1,1,1,2],[953,1,1,2,3]]],[41,2,2,3,5,[[990,1,1,3,4],[991,1,1,4,5]]],[42,1,1,5,6,[[1004,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[53,1,1,7,8,[[1123,1,1,7,8]]],[57,1,1,8,9,[[1143,1,1,8,9]]],[65,1,1,9,10,[[1172,1,1,9,10]]]],[23248,23583,24033,25722,25773,26440,29520,29788,30195,30808]]],["hide",[2,2,[[42,1,1,0,1,[[1008,1,1,0,1]]],[65,1,1,1,2,[[1172,1,1,1,2]]]],[26616,30809]]],["hideth",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23583]]],["secret",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23574]]],["secretly",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26863]]]]},{"k":"G2929","v":[["crystal",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31064]]]]},{"k":"G2930","v":[["crystal",[2,2,[[65,2,2,0,2,[[1170,1,1,0,1],[1188,1,1,1,2]]]],[30774,31081]]]]},{"k":"G2931","v":[["secret",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29316]]]]},{"k":"G2932","v":[["*",[7,7,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,2,2,1,3,[[990,1,1,1,2],[993,1,1,2,3]]],[43,3,3,3,6,[[1018,1,1,3,4],[1025,1,1,4,5],[1039,1,1,5,6]]],[51,1,1,6,7,[[1114,1,1,6,7]]]],[23426,25700,25845,26941,27196,27732,29607]]],["Provide",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23426]]],["obtained",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27732]]],["possess",[3,3,[[41,2,2,0,2,[[990,1,1,0,1],[993,1,1,1,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]]],[25700,25845,29607]]],["purchased",[2,2,[[43,2,2,0,2,[[1018,1,1,0,1],[1025,1,1,1,2]]]],[26941,27196]]]]},{"k":"G2933","v":[["*",[4,4,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[43,2,2,2,4,[[1019,1,1,2,3],[1022,1,1,3,4]]]],[23784,24610,26994,27060]]],["possession",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27060]]],["possessions",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]]],[23784,24610,26994]]]]},{"k":"G2934","v":[["*",[4,4,[[41,1,1,0,1,[[982,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]],[65,1,1,3,4,[[1184,1,1,3,4]]]],[25397,27758,28757,31006]]],["+",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28757]]],["beast",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25397]]],["beasts",[2,2,[[43,1,1,0,1,[[1040,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[27758,31006]]]]},{"k":"G2935","v":[["possessors",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27056]]]]},{"k":"G2936","v":[["*",[14,12,[[40,1,1,0,1,[[969,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[48,4,4,3,7,[[1098,2,2,3,5],[1099,1,1,5,6],[1100,1,1,6,7]]],[50,3,2,7,9,[[1107,2,1,7,8],[1109,1,1,8,9]]],[53,1,1,9,10,[[1122,1,1,9,10]]],[65,3,2,10,12,[[1170,2,1,10,11],[1176,1,1,11,12]]]],[24736,27955,28609,29239,29244,29260,29296,29481,29527,29750,30779,30867]]],["Creator",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27955]]],["created",[12,10,[[40,1,1,0,1,[[969,1,1,0,1]]],[45,1,1,1,2,[[1072,1,1,1,2]]],[48,3,3,2,5,[[1098,1,1,2,3],[1099,1,1,3,4],[1100,1,1,4,5]]],[50,3,2,5,7,[[1107,2,1,5,6],[1109,1,1,6,7]]],[53,1,1,7,8,[[1122,1,1,7,8]]],[65,3,2,8,10,[[1170,2,1,8,9],[1176,1,1,9,10]]]],[24736,28609,29239,29260,29296,29481,29527,29750,30779,30867]]],["make",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29244]]]]},{"k":"G2937","v":[["*",[19,19,[[40,3,3,0,3,[[966,1,1,0,1],[969,1,1,1,2],[972,1,1,2,3]]],[44,7,7,3,10,[[1046,2,2,3,5],[1053,5,5,5,10]]],[46,1,1,10,11,[[1082,1,1,10,11]]],[47,1,1,11,12,[[1096,1,1,11,12]]],[50,2,2,12,14,[[1107,2,2,12,14]]],[57,2,2,14,16,[[1136,1,1,14,15],[1141,1,1,15,16]]],[59,1,1,16,17,[[1152,1,1,16,17]]],[60,1,1,17,18,[[1158,1,1,17,18]]],[65,1,1,18,19,[[1169,1,1,18,19]]]],[24594,24736,24888,27950,27955,28135,28136,28137,28138,28155,28894,29203,29480,29488,30027,30116,30412,30526,30760]]],["building",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30116]]],["creation",[6,6,[[40,2,2,0,2,[[966,1,1,0,1],[969,1,1,1,2]]],[44,2,2,2,4,[[1046,1,1,2,3],[1053,1,1,3,4]]],[60,1,1,4,5,[[1158,1,1,4,5]]],[65,1,1,5,6,[[1169,1,1,5,6]]]],[24594,24736,27950,28138,30526,30760]]],["creature",[11,11,[[40,1,1,0,1,[[972,1,1,0,1]]],[44,5,5,1,6,[[1046,1,1,1,2],[1053,4,4,2,6]]],[46,1,1,6,7,[[1082,1,1,6,7]]],[47,1,1,7,8,[[1096,1,1,7,8]]],[50,2,2,8,10,[[1107,2,2,8,10]]],[57,1,1,10,11,[[1136,1,1,10,11]]]],[24888,27955,28135,28136,28137,28155,28894,29203,29480,29488,30027]]],["ordinance",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30412]]]]},{"k":"G2938","v":[["*",[4,4,[[53,1,1,0,1,[[1122,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]],[65,2,2,2,4,[[1171,1,1,2,3],[1174,1,1,3,4]]]],[29751,30284,30792,30836]]],["creature",[2,2,[[53,1,1,0,1,[[1122,1,1,0,1]]],[65,1,1,1,2,[[1171,1,1,1,2]]]],[29751,30792]]],["creatures",[2,2,[[58,1,1,0,1,[[1146,1,1,0,1]]],[65,1,1,1,2,[[1174,1,1,1,2]]]],[30284,30836]]]]},{"k":"G2939","v":[["Creator",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30465]]]]},{"k":"G2940","v":[["sleight",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29286]]]]},{"k":"G2941","v":[["governments",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28662]]]]},{"k":"G2942","v":[["*",[2,2,[[43,1,1,0,1,[[1044,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[27866,31010]]],["master",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27866]]],["shipmaster",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31010]]]]},{"k":"G2943","v":[["about",[4,4,[[65,4,4,0,4,[[1170,3,3,0,3],[1171,1,1,3,4]]]],[30771,30772,30776,30790]]]]},{"k":"G2944","v":[["*",[5,5,[[41,1,1,0,1,[[993,1,1,0,1]]],[42,1,1,1,2,[[1006,1,1,1,2]]],[43,1,1,2,3,[[1031,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]],[65,1,1,4,5,[[1186,1,1,4,5]]]],[25846,26505,27434,30202,31047]]],["+",[3,3,[[42,1,1,0,1,[[1006,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]],[65,1,1,2,3,[[1186,1,1,2,3]]]],[26505,30202,31047]]],["about",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27434]]],["compassed",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25846]]]]},{"k":"G2945","v":[["about",[7,7,[[40,3,3,0,3,[[959,1,1,0,1],[962,2,2,1,3]]],[41,1,1,3,4,[[981,1,1,3,4]]],[44,1,1,4,5,[[1060,1,1,4,5]]],[65,2,2,5,7,[[1170,1,1,5,6],[1173,1,1,6,7]]]],[24322,24413,24443,25313,28322,30774,30821]]]]},{"k":"G2946","v":[["wallowing",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30522]]]]},{"k":"G2947","v":[["wallowed",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24558]]]]},{"k":"G2948","v":[["maimed",[4,4,[[39,3,3,0,3,[[943,2,2,0,2],[946,1,1,2,3]]],[40,1,1,3,4,[[965,1,1,3,4]]]],[23663,23664,23735,24581]]]]},{"k":"G2949","v":[["waves",[5,5,[[39,2,2,0,2,[[936,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[43,1,1,3,4,[[1044,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[23369,23621,24360,27896,30685]]]]},{"k":"G2950","v":[["cymbal",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28666]]]]},{"k":"G2951","v":[["cummin",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23941]]]]},{"k":"G2952","v":[["dogs",[4,4,[[39,2,2,0,2,[[943,2,2,0,2]]],[40,2,2,2,4,[[963,2,2,2,4]]]],[23659,23660,24490,24491]]]]},{"k":"G2953","v":[["*",[3,3,[[43,3,3,0,3,[[1021,1,1,0,1],[1028,1,1,1,2],[1038,1,1,2,3]]]],[27058,27327,27680]]],["+",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27058]]],["Cyprus",[2,2,[[43,2,2,0,2,[[1028,1,1,0,1],[1038,1,1,1,2]]]],[27327,27680]]]]},{"k":"G2954","v":[["Cyprus",[5,5,[[43,5,5,0,5,[[1028,1,1,0,1],[1030,1,1,1,2],[1032,1,1,2,3],[1038,1,1,3,4],[1044,1,1,4,5]]]],[27326,27366,27481,27667,27859]]]]},{"k":"G2955","v":[["*",[3,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[42,2,2,1,3,[[1004,2,2,1,3]]]],[24222,26387,26389]]],["down",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24222]]],["stooped",[2,2,[[42,2,2,0,2,[[1004,2,2,0,2]]]],[26387,26389]]]]},{"k":"G2956","v":[["*",[6,6,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[43,3,3,3,6,[[1023,1,1,3,4],[1028,1,1,4,5],[1030,1,1,5,6]]]],[24161,24847,25961,27110,27327,27363]]],["Cyrene",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[43,2,2,1,3,[[1028,1,1,1,2],[1030,1,1,2,3]]]],[24161,27327,27363]]],["Cyrenian",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24847,25961]]],["Cyrenians",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27110]]]]},{"k":"G2957","v":[["Cyrene",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26959]]]]},{"k":"G2958","v":[["Cyrenius",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24975]]]]},{"k":"G2959","v":[["lady",[2,2,[[62,2,2,0,2,[[1164,2,2,0,2]]]],[30646,30650]]]]},{"k":"G2960","v":[["Lord's",[2,2,[[45,1,1,0,1,[[1072,1,1,0,1]]],[65,1,1,1,2,[[1167,1,1,1,2]]]],[28620,30707]]]]},{"k":"G2961","v":[["*",[7,7,[[41,1,1,0,1,[[994,1,1,0,1]]],[44,4,4,1,5,[[1051,2,2,1,3],[1052,1,1,3,4],[1059,1,1,4,5]]],[46,1,1,5,6,[[1078,1,1,5,6]]],[53,1,1,6,7,[[1124,1,1,6,7]]]],[25889,28077,28082,28092,28289,28824,29803]]],["+",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28077]]],["Lord",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28289]]],["lords",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29803]]],["over",[4,4,[[41,1,1,0,1,[[994,1,1,0,1]]],[44,2,2,1,3,[[1051,1,1,1,2],[1052,1,1,2,3]]],[46,1,1,3,4,[[1078,1,1,3,4]]]],[25889,28082,28092,28824]]]]},{"k":"G2962","v":[["*",[748,687,[[39,83,76,0,76,[[929,3,3,0,3],[930,3,3,3,6],[931,1,1,6,7],[932,2,2,7,9],[933,1,1,9,10],[934,1,1,10,11],[935,4,2,11,13],[936,5,5,13,18],[937,2,2,18,20],[938,2,2,20,22],[939,1,1,22,23],[940,1,1,23,24],[941,2,2,24,26],[942,2,2,26,28],[943,4,3,28,31],[944,1,1,31,32],[945,2,2,32,34],[946,7,7,34,41],[948,4,4,41,45],[949,5,5,45,50],[950,5,4,50,54],[951,1,1,54,55],[952,5,5,55,60],[953,14,11,60,71],[954,1,1,71,72],[955,2,2,72,74],[956,2,2,74,76]]],[40,20,18,76,94,[[957,1,1,76,77],[958,1,1,77,78],[961,1,1,78,79],[963,1,1,79,80],[965,1,1,80,81],[967,3,3,81,84],[968,8,6,84,90],[969,2,2,90,92],[972,2,2,92,94]]],[41,107,98,94,192,[[973,17,17,94,111],[974,11,9,111,120],[975,1,1,120,121],[976,4,4,121,125],[977,3,3,125,128],[978,3,2,128,130],[979,3,3,130,133],[981,4,4,133,137],[982,6,6,137,143],[983,2,2,143,145],[984,9,8,145,153],[985,6,5,153,158],[986,3,3,158,161],[988,5,4,161,165],[989,3,3,165,168],[990,2,2,168,170],[991,10,9,170,179],[992,6,5,179,184],[994,6,5,184,189],[995,1,1,189,190],[996,2,2,190,192]]],[42,53,51,192,243,[[997,1,1,192,193],[1000,5,5,193,198],[1001,1,1,198,199],[1002,3,3,199,202],[1004,1,1,202,203],[1005,2,2,203,205],[1007,8,8,205,213],[1008,4,3,213,216],[1009,8,8,216,224],[1010,3,3,224,227],[1011,2,2,227,229],[1016,7,7,229,236],[1017,8,7,236,243]]],[43,113,105,243,348,[[1018,3,3,243,246],[1019,8,7,246,253],[1020,2,2,253,255],[1021,3,3,255,258],[1022,3,3,258,261],[1024,7,7,261,268],[1025,5,5,268,273],[1026,16,13,273,286],[1027,4,4,286,290],[1028,8,7,290,297],[1029,4,4,297,301],[1030,7,7,301,308],[1031,2,2,308,310],[1032,6,5,310,315],[1033,8,8,315,323],[1034,2,2,323,325],[1035,4,3,325,328],[1036,5,5,328,333],[1037,4,4,333,337],[1038,3,3,337,340],[1039,5,4,340,344],[1040,1,1,344,345],[1042,1,1,345,346],[1043,1,1,346,347],[1045,1,1,347,348]]],[44,45,39,348,387,[[1046,2,2,348,350],[1049,2,2,350,352],[1050,3,3,352,355],[1051,2,2,355,357],[1052,1,1,357,358],[1053,1,1,358,359],[1054,2,2,359,361],[1055,4,4,361,365],[1056,2,2,365,367],[1057,2,2,367,369],[1058,1,1,369,370],[1059,10,5,370,375],[1060,3,3,375,378],[1061,10,9,378,387]]],[45,69,59,387,446,[[1062,7,7,387,394],[1063,2,2,394,396],[1064,2,2,396,398],[1065,4,4,398,402],[1066,3,2,402,404],[1067,5,4,404,408],[1068,12,9,408,417],[1069,2,2,417,419],[1070,5,4,419,423],[1071,5,4,423,427],[1072,8,6,427,433],[1073,2,2,433,435],[1075,2,2,435,437],[1076,5,4,437,441],[1077,5,5,441,446]]],[46,30,28,446,474,[[1078,3,3,446,449],[1079,1,1,449,450],[1080,5,3,450,453],[1081,3,3,453,456],[1082,3,3,456,459],[1083,2,2,459,461],[1085,4,4,461,465],[1087,3,3,465,468],[1088,2,2,468,470],[1089,2,2,470,472],[1090,2,2,472,474]]],[47,7,7,474,481,[[1091,2,2,474,476],[1094,1,1,476,477],[1095,1,1,477,478],[1096,3,3,478,481]]],[48,28,27,481,508,[[1097,4,4,481,485],[1098,1,1,485,486],[1099,2,2,486,488],[1100,3,3,488,491],[1101,7,7,491,498],[1102,11,10,498,508]]],[49,15,15,508,523,[[1103,2,2,508,510],[1104,4,4,510,514],[1105,3,3,514,517],[1106,6,6,517,523]]],[50,16,14,523,537,[[1107,3,3,523,526],[1108,1,1,526,527],[1109,8,7,527,534],[1110,4,3,534,537]]],[51,25,22,537,559,[[1111,5,4,537,541],[1112,2,2,541,543],[1113,4,4,543,547],[1114,8,6,547,553],[1115,6,6,553,559]]],[52,21,19,559,578,[[1116,7,6,559,565],[1117,5,5,565,570],[1118,9,8,570,578]]],[53,8,8,578,586,[[1119,4,4,578,582],[1123,1,1,582,583],[1124,3,3,583,586]]],[54,17,16,586,602,[[1125,5,4,586,590],[1126,5,5,590,595],[1127,1,1,595,596],[1128,6,6,596,602]]],[55,1,1,602,603,[[1129,1,1,602,603]]],[56,6,5,603,608,[[1132,6,5,603,608]]],[57,17,16,608,624,[[1133,1,1,608,609],[1134,1,1,609,610],[1139,2,2,610,612],[1140,5,5,612,617],[1142,3,2,617,619],[1144,3,3,619,622],[1145,2,2,622,624]]],[58,14,13,624,637,[[1146,3,3,624,627],[1147,1,1,627,628],[1149,2,2,628,630],[1150,8,7,630,637]]],[59,8,7,637,644,[[1151,2,2,637,639],[1152,2,2,639,641],[1153,4,3,641,644]]],[60,14,14,644,658,[[1156,5,5,644,649],[1157,3,3,649,652],[1158,6,6,652,658]]],[62,1,1,658,659,[[1164,1,1,658,659]]],[64,6,6,659,665,[[1166,6,6,659,665]]],[65,24,22,665,687,[[1167,1,1,665,666],[1170,2,2,666,668],[1173,1,1,668,669],[1177,3,3,669,672],[1180,1,1,672,673],[1181,2,2,673,675],[1182,2,2,675,677],[1183,2,1,677,678],[1184,1,1,678,679],[1185,4,3,679,682],[1187,1,1,682,683],[1188,4,4,683,687]]]],[23164,23166,23168,23182,23184,23188,23195,23216,23219,23267,23306,23337,23338,23347,23351,23353,23366,23370,23407,23417,23441,23442,23484,23497,23566,23590,23625,23627,23655,23658,23660,23694,23704,23715,23748,23752,23753,23754,23758,23759,23761,23800,23822,23823,23825,23829,23835,23856,23866,23868,23909,23915,23916,23917,23957,23999,24002,24003,24005,24007,24019,24026,24027,24028,24029,24030,24031,24032,24034,24045,24052,24076,24139,24192,24197,24201,24218,24288,24383,24491,24562,24643,24649,24650,24682,24684,24702,24703,24709,24710,24737,24752,24892,24893,24899,24902,24904,24908,24909,24910,24918,24921,24925,24931,24936,24938,24939,24951,24959,24961,24969,24982,24984,24988,24995,24996,24997,24999,25011,25012,25029,25071,25075,25081,25082,25115,25119,25124,25151,25192,25201,25208,25226,25355,25358,25360,25362,25364,25365,25380,25384,25390,25403,25406,25444,25495,25496,25500,25501,25502,25504,25505,25506,25526,25533,25541,25543,25553,25574,25575,25576,25623,25625,25628,25633,25656,25657,25688,25694,25729,25739,25747,25749,25751,25756,25762,25764,25765,25769,25792,25794,25816,25821,25823,25895,25897,25902,25913,25925,25977,25994,26025,26067,26157,26167,26171,26175,26205,26217,26280,26291,26325,26392,26476,26478,26525,26526,26535,26544,26550,26555,26557,26562,26593,26601,26618,26636,26639,26643,26644,26646,26655,26666,26667,26673,26676,26690,26714,26719,26869,26880,26882,26885,26887,26892,26895,26905,26910,26913,26914,26915,26918,26919,26929,26944,26947,26969,26970,26974,26983,26985,26988,26996,27015,27018,27048,27051,27055,27068,27073,27078,27146,27147,27149,27153,27165,27175,27176,27192,27200,27201,27202,27215,27217,27221,27222,27226,27227,27229,27231,27233,27243,27245,27247,27251,27258,27263,27273,27295,27307,27315,27323,27324,27327,27328,27330,27331,27344,27348,27354,27360,27364,27372,27373,27374,27409,27410,27411,27417,27437,27453,27459,27468,27477,27478,27493,27497,27498,27499,27502,27513,27514,27515,27547,27550,27565,27566,27582,27590,27595,27598,27602,27605,27645,27647,27650,27661,27677,27678,27684,27712,27714,27720,27723,27745,27822,27838,27930,27933,27937,28030,28046,28048,28058,28068,28079,28091,28116,28155,28183,28184,28197,28200,28201,28204,28212,28243,28256,28264,28280,28284,28286,28288,28291,28294,28309,28314,28333,28338,28344,28347,28348,28349,28354,28356,28358,28360,28365,28366,28370,28371,28372,28373,28394,28402,28410,28415,28430,28437,28438,28450,28452,28458,28459,28478,28480,28481,28484,28497,28499,28504,28509,28512,28519,28521,28522,28526,28532,28533,28541,28542,28545,28554,28588,28589,28593,28595,28611,28623,28626,28627,28629,28632,28637,28639,28699,28715,28749,28765,28775,28776,28783,28786,28795,28798,28799,28802,28803,28814,28836,28857,28858,28859,28864,28869,28873,28883,28885,28888,28915,28916,28937,28941,28951,28953,28979,28988,28989,29006,29020,29023,29030,29053,29057,29060,29076,29132,29172,29202,29205,29206,29208,29209,29221,29223,29250,29262,29265,29273,29277,29289,29312,29314,29321,29323,29324,29326,29333,29338,29341,29342,29344,29345,29346,29347,29358,29360,29361,29363,29375,29402,29410,29415,29420,29422,29429,29441,29443,29444,29446,29447,29452,29465,29467,29468,29475,29500,29533,29534,29535,29537,29539,29540,29541,29543,29549,29559,29561,29563,29566,29568,29585,29589,29598,29601,29602,29603,29604,29605,29609,29618,29619,29620,29623,29630,29633,29644,29648,29649,29650,29651,29656,29657,29658,29661,29662,29669,29674,29675,29677,29679,29681,29682,29683,29684,29690,29694,29696,29697,29698,29708,29710,29784,29791,29802,29803,29811,29817,29825,29827,29834,29841,29846,29849,29851,29864,29871,29878,29884,29887,29888,29892,29896,29941,29943,29954,29958,29963,29973,29980,30078,30085,30094,30100,30101,30102,30103,30149,30163,30217,30218,30226,30247,30261,30267,30273,30278,30294,30347,30352,30358,30361,30362,30364,30365,30368,30369,30377,30399,30402,30412,30430,30436,30439,30481,30487,30490,30493,30495,30509,30511,30520,30524,30530,30531,30532,30537,30540,30648,30676,30677,30681,30686,30689,30693,30705,30776,30779,30824,30880,30887,30889,30939,30949,30950,30959,30961,30989,31001,31018,31023,31033,31075,31085,31086,31100,31101]]],["+",[8,8,[[39,2,2,0,2,[[949,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[44,3,3,3,6,[[1059,2,2,3,5],[1060,1,1,5,6]]],[45,1,1,6,7,[[1071,1,1,6,7]]],[59,1,1,7,8,[[1152,1,1,7,8]]]],[23868,24076,24684,28288,28291,28333,28589,30412]]],["God",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27605]]],["LORD",[5,5,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[43,1,1,3,4,[[1019,1,1,3,4]]],[65,1,1,4,5,[[1185,1,1,4,5]]]],[23916,24709,25821,26983,31033]]],["LORDS",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31033]]],["Lord",[654,610,[[39,55,52,0,52,[[929,3,3,0,3],[930,3,3,3,6],[931,1,1,6,7],[932,2,2,7,9],[933,1,1,9,10],[935,4,2,10,12],[936,5,5,12,17],[937,2,2,17,19],[939,1,1,19,20],[940,1,1,20,21],[941,1,1,21,22],[942,2,2,22,24],[943,3,3,24,27],[944,1,1,27,28],[945,2,2,28,30],[946,2,2,30,32],[948,3,3,32,35],[949,2,2,35,37],[950,4,4,37,41],[951,1,1,41,42],[952,1,1,42,43],[953,7,6,43,49],[955,1,1,49,50],[956,2,2,50,52]]],[40,16,15,52,67,[[957,1,1,52,53],[958,1,1,53,54],[961,1,1,54,55],[963,1,1,55,56],[965,1,1,56,57],[967,3,3,57,60],[968,5,4,60,64],[969,1,1,64,65],[972,2,2,65,67]]],[41,88,82,67,149,[[973,17,17,67,84],[974,10,8,84,92],[975,1,1,92,93],[976,4,4,93,97],[977,3,3,97,100],[978,3,2,100,102],[979,3,3,102,105],[981,4,4,105,109],[982,6,6,109,115],[983,2,2,115,117],[984,2,2,117,119],[985,6,5,119,124],[986,1,1,124,125],[989,3,3,125,128],[990,2,2,128,130],[991,9,8,130,138],[992,3,3,138,141],[994,6,5,141,146],[995,1,1,146,147],[996,2,2,147,149]]],[42,43,41,149,190,[[997,1,1,149,150],[1000,1,1,150,151],[1002,3,3,151,154],[1004,1,1,154,155],[1005,2,2,155,157],[1007,8,8,157,165],[1008,3,2,165,167],[1009,7,7,167,174],[1010,3,3,174,177],[1016,6,6,177,183],[1017,8,7,183,190]]],[43,107,100,190,290,[[1018,3,3,190,193],[1019,7,7,193,200],[1020,2,2,200,202],[1021,3,3,202,205],[1022,3,3,205,208],[1024,7,7,208,215],[1025,5,5,215,220],[1026,16,13,220,233],[1027,4,4,233,237],[1028,8,7,237,244],[1029,4,4,244,248],[1030,7,7,248,255],[1031,2,2,255,257],[1032,6,5,257,262],[1033,5,5,262,267],[1034,2,2,267,269],[1035,4,3,269,272],[1036,4,4,272,276],[1037,4,4,276,280],[1038,3,3,280,283],[1039,5,4,283,287],[1040,1,1,287,288],[1043,1,1,288,289],[1045,1,1,289,290]]],[44,40,36,290,326,[[1046,2,2,290,292],[1049,2,2,292,294],[1050,3,3,294,297],[1051,2,2,297,299],[1052,1,1,299,300],[1053,1,1,300,301],[1054,2,2,301,303],[1055,4,4,303,307],[1056,2,2,307,309],[1057,2,2,309,311],[1058,1,1,311,312],[1059,6,3,312,315],[1060,2,2,315,317],[1061,10,9,317,326]]],[45,61,53,326,379,[[1062,7,7,326,333],[1063,2,2,333,335],[1064,2,2,335,337],[1065,4,4,337,341],[1066,3,2,341,343],[1067,5,4,343,347],[1068,11,9,347,356],[1069,1,1,356,357],[1070,5,4,357,361],[1071,1,1,361,362],[1072,6,4,362,366],[1073,2,2,366,368],[1075,2,2,368,370],[1076,5,4,370,374],[1077,5,5,374,379]]],[46,30,28,379,407,[[1078,3,3,379,382],[1079,1,1,382,383],[1080,5,3,383,386],[1081,3,3,386,389],[1082,3,3,389,392],[1083,2,2,392,394],[1085,4,4,394,398],[1087,3,3,398,401],[1088,2,2,401,403],[1089,2,2,403,405],[1090,2,2,405,407]]],[47,5,5,407,412,[[1091,1,1,407,408],[1095,1,1,408,409],[1096,3,3,409,412]]],[48,25,25,412,437,[[1097,4,4,412,416],[1098,1,1,416,417],[1099,2,2,417,419],[1100,3,3,419,422],[1101,7,7,422,429],[1102,8,8,429,437]]],[49,15,15,437,452,[[1103,2,2,437,439],[1104,4,4,439,443],[1105,3,3,443,446],[1106,6,6,446,452]]],[50,13,12,452,464,[[1107,3,3,452,455],[1108,1,1,455,456],[1109,7,6,456,462],[1110,2,2,462,464]]],[51,25,22,464,486,[[1111,5,4,464,468],[1112,2,2,468,470],[1113,4,4,470,474],[1114,8,6,474,480],[1115,6,6,480,486]]],[52,21,19,486,505,[[1116,7,6,486,492],[1117,5,5,492,497],[1118,9,8,497,505]]],[53,8,8,505,513,[[1119,4,4,505,509],[1123,1,1,509,510],[1124,3,3,510,513]]],[54,17,16,513,529,[[1125,5,4,513,517],[1126,5,5,517,522],[1127,1,1,522,523],[1128,6,6,523,529]]],[55,1,1,529,530,[[1129,1,1,529,530]]],[56,6,5,530,535,[[1132,6,5,530,535]]],[57,17,16,535,551,[[1133,1,1,535,536],[1134,1,1,536,537],[1139,2,2,537,539],[1140,5,5,539,544],[1142,3,2,544,546],[1144,3,3,546,549],[1145,2,2,549,551]]],[58,14,13,551,564,[[1146,3,3,551,554],[1147,1,1,554,555],[1149,2,2,555,557],[1150,8,7,557,564]]],[59,6,5,564,569,[[1151,2,2,564,566],[1152,1,1,566,567],[1153,3,2,567,569]]],[60,14,14,569,583,[[1156,5,5,569,574],[1157,3,3,574,577],[1158,6,6,577,583]]],[62,1,1,583,584,[[1164,1,1,583,584]]],[64,6,6,584,590,[[1166,6,6,584,590]]],[65,20,20,590,610,[[1167,1,1,590,591],[1170,2,2,591,593],[1177,3,3,593,596],[1180,1,1,596,597],[1181,2,2,597,599],[1182,2,2,599,601],[1183,1,1,601,602],[1184,1,1,602,603],[1185,2,2,603,605],[1187,1,1,605,606],[1188,4,4,606,610]]]],[23164,23166,23168,23182,23184,23188,23195,23216,23219,23267,23337,23338,23347,23351,23353,23366,23370,23407,23417,23484,23497,23590,23625,23627,23655,23658,23660,23694,23704,23715,23748,23753,23822,23823,23825,23829,23835,23909,23915,23916,23917,23957,23999,24019,24028,24030,24032,24045,24052,24139,24197,24201,24218,24288,24383,24491,24562,24643,24649,24650,24702,24703,24709,24710,24737,24892,24893,24899,24902,24904,24908,24909,24910,24918,24921,24925,24931,24936,24938,24939,24951,24959,24961,24969,24982,24984,24988,24995,24996,24997,25011,25012,25029,25071,25075,25081,25082,25115,25119,25124,25151,25192,25201,25208,25226,25355,25358,25360,25362,25364,25365,25380,25384,25390,25403,25406,25444,25500,25501,25526,25533,25541,25543,25553,25575,25656,25657,25688,25694,25729,25739,25747,25749,25751,25756,25762,25765,25769,25816,25821,25823,25895,25897,25902,25913,25925,25977,25994,26025,26067,26157,26280,26291,26325,26392,26476,26478,26525,26526,26535,26544,26550,26555,26557,26562,26593,26618,26636,26639,26643,26644,26655,26666,26667,26673,26676,26690,26869,26880,26885,26887,26892,26895,26905,26910,26913,26914,26915,26918,26919,26929,26944,26947,26969,26970,26974,26983,26985,26988,26996,27015,27018,27048,27051,27055,27068,27073,27078,27146,27147,27149,27153,27165,27175,27176,27192,27200,27201,27202,27215,27217,27221,27222,27226,27227,27229,27231,27233,27243,27245,27247,27251,27258,27263,27273,27295,27307,27315,27323,27324,27327,27328,27330,27331,27344,27348,27354,27360,27364,27372,27373,27374,27409,27410,27411,27417,27437,27453,27459,27468,27477,27478,27493,27497,27498,27514,27515,27547,27550,27565,27566,27582,27590,27595,27598,27602,27645,27647,27650,27661,27677,27678,27684,27712,27714,27720,27723,27745,27838,27930,27933,27937,28030,28046,28048,28058,28068,28079,28091,28116,28155,28183,28184,28197,28200,28201,28204,28212,28243,28256,28264,28280,28286,28288,28294,28309,28314,28338,28344,28347,28348,28349,28354,28356,28358,28360,28365,28366,28370,28371,28372,28373,28394,28402,28410,28415,28430,28437,28438,28450,28452,28458,28459,28478,28480,28481,28484,28497,28499,28504,28509,28512,28519,28521,28522,28526,28533,28541,28542,28545,28554,28588,28611,28623,28627,28632,28637,28639,28699,28715,28749,28765,28775,28776,28783,28786,28795,28798,28799,28802,28803,28814,28836,28857,28858,28859,28864,28869,28873,28883,28885,28888,28915,28916,28937,28941,28951,28953,28979,28988,28989,29006,29020,29023,29030,29053,29057,29060,29172,29202,29205,29206,29208,29209,29221,29223,29250,29262,29265,29273,29277,29289,29312,29314,29321,29323,29324,29326,29333,29338,29341,29344,29345,29347,29358,29360,29361,29363,29375,29402,29410,29415,29420,29422,29429,29441,29443,29444,29446,29447,29452,29465,29467,29468,29475,29500,29533,29534,29535,29537,29540,29541,29549,29559,29561,29563,29566,29568,29585,29589,29598,29601,29602,29603,29604,29605,29609,29618,29619,29620,29623,29630,29633,29644,29648,29649,29650,29651,29656,29657,29658,29661,29662,29669,29674,29675,29677,29679,29681,29682,29683,29684,29690,29694,29696,29697,29698,29708,29710,29784,29791,29802,29803,29811,29817,29825,29827,29834,29841,29846,29849,29851,29864,29871,29878,29884,29887,29888,29892,29896,29941,29943,29954,29958,29963,29973,29980,30078,30085,30094,30100,30101,30102,30103,30149,30163,30217,30218,30226,30247,30261,30267,30273,30278,30294,30347,30352,30358,30361,30362,30364,30365,30368,30369,30377,30399,30402,30436,30439,30481,30487,30490,30493,30495,30509,30511,30520,30524,30530,30531,30532,30537,30540,30648,30676,30677,30681,30686,30689,30693,30705,30776,30779,30880,30887,30889,30939,30949,30950,30959,30961,30989,31001,31018,31023,31075,31085,31086,31100,31101]]],["Lord's",[9,9,[[41,1,1,0,1,[[974,1,1,0,1]]],[44,1,1,1,2,[[1059,1,1,1,2]]],[45,6,6,2,8,[[1068,1,1,2,3],[1071,3,3,3,6],[1072,2,2,6,8]]],[47,1,1,8,9,[[1091,1,1,8,9]]]],[24999,28288,28509,28588,28593,28595,28626,28629,29076]]],["Master",[2,2,[[48,1,1,0,1,[[1102,1,1,0,1]]],[50,1,1,1,2,[[1110,1,1,1,2]]]],[29346,29543]]],["Masters",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29543]]],["Sir",[10,10,[[39,2,2,0,2,[[941,1,1,0,1],[955,1,1,1,2]]],[42,7,7,2,9,[[1000,4,4,2,6],[1001,1,1,6,7],[1008,1,1,7,8],[1016,1,1,8,9]]],[65,1,1,9,10,[[1173,1,1,9,10]]]],[23566,24192,26167,26171,26175,26205,26217,26601,26882,30824]]],["Sirs",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27513]]],["lord",[39,37,[[39,19,17,0,17,[[938,2,2,0,2],[946,5,5,2,7],[948,1,1,7,8],[949,1,1,8,9],[952,4,4,9,13],[953,6,4,13,17]]],[40,1,1,17,18,[[968,1,1,17,18]]],[41,13,13,18,31,[[984,6,6,18,24],[986,2,2,24,26],[988,3,3,26,29],[992,2,2,29,31]]],[42,3,3,31,34,[[1009,1,1,31,32],[1011,2,2,32,34]]],[43,1,1,34,35,[[1042,1,1,34,35]]],[47,1,1,35,36,[[1094,1,1,35,36]]],[59,1,1,36,37,[[1153,1,1,36,37]]]],[23441,23442,23752,23754,23758,23759,23761,23800,23866,24002,24003,24005,24007,24027,24029,24031,24034,24682,25495,25496,25501,25502,25504,25505,25574,25576,25623,25625,25628,25792,25794,26646,26714,26719,27822,29132,30430]]],["lord's",[3,3,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[988,1,1,2,3]]]],[24026,25506,25625]]],["lords",[2,2,[[45,1,1,0,1,[[1069,1,1,0,1]]],[65,1,1,1,2,[[1183,1,1,1,2]]]],[28532,30989]]],["master",[2,2,[[40,1,1,0,1,[[969,1,1,0,1]]],[44,1,1,1,2,[[1059,1,1,1,2]]]],[24752,28284]]],["masters",[7,7,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[43,2,2,2,4,[[1033,2,2,2,4]]],[48,2,2,4,6,[[1102,2,2,4,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]]],[23306,25633,27499,27502,29342,29346,29539]]],["masters'",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23660]]],["owners",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25764]]],["sir",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23856]]]]},{"k":"G2963","v":[["*",[4,4,[[48,1,1,0,1,[[1097,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[29227,29481,30510,30680]]],["dominion",[2,2,[[48,1,1,0,1,[[1097,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[29227,30680]]],["dominions",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29481]]],["government",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30510]]]]},{"k":"G2964","v":[["*",[2,2,[[46,1,1,0,1,[[1079,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]]],[28832,29117]]],["confirm",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28832]]],["confirmed",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29117]]]]},{"k":"G2965","v":[["*",[5,5,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]],[65,1,1,4,5,[[1188,1,1,4,5]]]],[23322,25641,29423,30522,31095]]],["dog",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30522]]],["dogs",[4,4,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]],[65,1,1,3,4,[[1188,1,1,3,4]]]],[23322,25641,29423,31095]]]]},{"k":"G2966","v":[["carcases",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30012]]]]},{"k":"G2967","v":[["*",[23,23,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,3,3,1,4,[[965,2,2,1,3],[966,1,1,3,4]]],[41,6,6,4,10,[[978,1,1,4,5],[981,2,2,5,7],[983,1,1,7,8],[990,1,1,8,9],[995,1,1,9,10]]],[43,6,6,10,16,[[1025,1,1,10,11],[1027,1,1,11,12],[1028,1,1,12,13],[1033,1,1,13,14],[1041,1,1,14,15],[1044,1,1,15,16]]],[44,1,1,16,17,[[1046,1,1,16,17]]],[45,1,1,17,18,[[1075,1,1,17,18]]],[51,1,1,18,19,[[1112,1,1,18,19]]],[53,1,1,19,20,[[1122,1,1,19,20]]],[57,1,1,20,21,[[1139,1,1,20,21]]],[60,1,1,21,22,[[1157,1,1,21,22]]],[63,1,1,22,23,[[1165,1,1,22,23]]]],[23776,24576,24577,24602,25175,25350,25351,25457,25704,25937,27212,27306,27324,27489,27792,27898,27943,28717,29586,29750,30087,30516,30668]]],["+",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27306]]],["Forbid",[2,2,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[24577,25351]]],["Forbidding",[2,2,[[51,1,1,0,1,[[1112,1,1,0,1]]],[53,1,1,1,2,[[1122,1,1,1,2]]]],[29586,29750]]],["forbad",[3,3,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[24576,25350,30516]]],["forbid",[6,6,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,2,2,2,4,[[978,1,1,2,3],[990,1,1,3,4]]],[43,1,1,4,5,[[1041,1,1,4,5]]],[45,1,1,5,6,[[1075,1,1,5,6]]]],[23776,24602,25175,25704,27792,28717]]],["forbidden",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27489]]],["forbiddeth",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30668]]],["forbidding",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25937]]],["hinder",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27212]]],["hindered",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25457]]],["kept",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27898]]],["let",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27943]]],["suffered",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30087]]],["withstand",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27324]]]]},{"k":"G2968","v":[["*",[28,27,[[39,4,4,0,4,[[937,1,1,0,1],[938,1,1,1,2],[942,1,1,2,3],[949,1,1,3,4]]],[40,8,7,4,11,[[962,3,3,4,7],[964,4,3,7,10],[967,1,1,10,11]]],[41,12,12,11,23,[[977,1,1,11,12],[980,1,1,12,13],[981,4,4,13,17],[982,1,1,17,18],[985,1,1,18,19],[989,1,1,19,20],[991,1,1,20,21],[996,2,2,21,23]]],[42,3,3,23,26,[[1003,1,1,23,24],[1007,2,2,24,26]]],[43,1,1,26,27,[[1025,1,1,26,27]]]],[23414,23428,23612,23828,24413,24443,24463,24523,24526,24527,24642,25124,25246,25307,25313,25353,25357,25401,25540,25663,25761,26004,26019,26370,26524,26553,27201]]],["town",[8,7,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,3,2,1,3,[[964,3,2,1,3]]],[41,1,1,3,4,[[977,1,1,3,4]]],[42,3,3,4,7,[[1003,1,1,4,5],[1007,2,2,5,7]]]],[23428,24523,24526,25124,26370,26524,26553]]],["towns",[3,3,[[40,1,1,0,1,[[964,1,1,0,1]]],[41,2,2,1,3,[[981,2,2,1,3]]]],[24527,25307,25313]]],["village",[10,10,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,8,8,2,10,[[980,1,1,2,3],[981,2,2,3,5],[982,1,1,5,6],[989,1,1,6,7],[991,1,1,7,8],[996,2,2,8,10]]]],[23828,24642,25246,25353,25357,25401,25663,25761,26004,26019]]],["villages",[7,7,[[39,2,2,0,2,[[937,1,1,0,1],[942,1,1,1,2]]],[40,3,3,2,5,[[962,3,3,2,5]]],[41,1,1,5,6,[[985,1,1,5,6]]],[43,1,1,6,7,[[1025,1,1,6,7]]]],[23414,23612,24413,24443,24463,25540,27201]]]]},{"k":"G2969","v":[["towns",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24253]]]]},{"k":"G2970","v":[["*",[3,3,[[44,1,1,0,1,[[1058,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[28279,29183,30449]]],["revellings",[2,2,[[47,1,1,0,1,[[1095,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[29183,30449]]],["rioting",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28279]]]]},{"k":"G2971","v":[["gnat",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23942]]]]},{"k":"G2972","v":[["Coos",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27665]]]]},{"k":"G2973","v":[["Cosam",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25053]]]]},{"k":"G2974","v":[["*",[14,12,[[39,7,6,0,6,[[937,2,2,0,2],[939,1,1,2,3],[940,2,1,3,4],[943,2,2,4,6]]],[40,3,3,6,9,[[963,2,2,6,8],[965,1,1,8,9]]],[41,4,3,9,12,[[973,1,1,9,10],[979,1,1,10,11],[983,2,1,11,12]]]],[23411,23412,23464,23511,23663,23664,24495,24500,24563,24915,25217,25419]]],["deaf",[5,5,[[39,1,1,0,1,[[939,1,1,0,1]]],[40,3,3,1,4,[[963,2,2,1,3],[965,1,1,3,4]]],[41,1,1,4,5,[[979,1,1,4,5]]]],[23464,24495,24500,24563,25217]]],["dumb",[8,6,[[39,6,5,0,5,[[937,2,2,0,2],[940,2,1,2,3],[943,2,2,3,5]]],[41,2,1,5,6,[[983,2,1,5,6]]]],[23411,23412,23511,23663,23664,25419]]],["speechless",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24915]]]]},{"k":"G2975","v":[["*",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]],[43,1,1,2,3,[[1018,1,1,2,3]]],[60,1,1,3,4,[[1156,1,1,3,4]]]],[24902,26849,26940,30480]]],["lots",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26849]]],["obtained",[2,2,[[43,1,1,0,1,[[1018,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[26940,30480]]],["was",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24902]]]]},{"k":"G2976","v":[["*",[15,15,[[41,4,4,0,4,[[988,4,4,0,4]]],[42,11,11,4,15,[[1007,6,6,4,10],[1008,5,5,10,15]]]],[25640,25643,25644,25645,26524,26525,26528,26534,26537,26566,26581,26582,26589,26590,26597]]],["+",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26590]]],["Lazarus",[14,14,[[41,4,4,0,4,[[988,4,4,0,4]]],[42,10,10,4,14,[[1007,6,6,4,10],[1008,4,4,10,14]]]],[25640,25643,25644,25645,26524,26525,26528,26534,26537,26566,26581,26582,26589,26597]]]]},{"k":"G2977","v":[["*",[4,4,[[39,2,2,0,2,[[929,1,1,0,1],[930,1,1,1,2]]],[42,1,1,2,3,[[1007,1,1,2,3]]],[43,1,1,3,4,[[1033,1,1,3,4]]]],[23163,23176,26551,27520]]],["privily",[3,3,[[39,2,2,0,2,[[929,1,1,0,1],[930,1,1,1,2]]],[43,1,1,2,3,[[1033,1,1,2,3]]]],[23163,23176,27520]]],["secretly",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26551]]]]},{"k":"G2978","v":[["*",[3,3,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[24360,25268,30517]]],["storm",[2,2,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24360,25268]]],["tempest",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30517]]]]},{"k":"G2979","v":[["kick",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1043,1,1,1,2]]]],[27221,27837]]]]},{"k":"G2980","v":[["*",[295,271,[[39,26,21,0,21,[[937,2,2,0,2],[938,4,2,2,4],[940,7,5,4,9],[941,6,5,9,14],[942,1,1,14,15],[943,1,1,15,16],[945,1,1,16,17],[951,1,1,17,18],[954,2,2,18,20],[956,1,1,20,21]]],[40,19,17,21,38,[[957,1,1,21,22],[958,2,2,22,24],[960,2,2,24,26],[961,2,2,26,28],[962,1,1,28,29],[963,2,2,29,31],[964,1,1,31,32],[965,1,1,32,33],[969,3,1,33,34],[970,2,2,34,36],[972,2,2,36,38]]],[41,30,30,38,68,[[973,7,7,38,45],[974,6,6,45,51],[976,1,1,51,52],[977,2,2,52,54],[978,1,1,54,55],[979,1,1,55,56],[980,1,1,56,57],[981,1,1,57,58],[983,2,2,58,60],[984,1,1,60,61],[994,2,2,61,63],[996,5,5,63,68]]],[42,59,51,68,119,[[997,1,1,68,69],[999,3,3,69,72],[1000,3,2,72,74],[1002,1,1,74,75],[1003,5,5,75,80],[1004,10,9,80,89],[1005,3,3,89,92],[1006,1,1,92,93],[1008,8,6,93,99],[1010,4,3,99,102],[1011,3,3,102,105],[1012,10,8,105,113],[1013,2,2,113,115],[1014,4,3,115,118],[1015,1,1,118,119]]],[43,62,62,119,181,[[1019,5,5,119,124],[1020,3,3,124,127],[1021,5,5,127,132],[1022,2,2,132,134],[1023,3,3,134,137],[1024,3,3,137,140],[1025,2,2,140,142],[1026,3,3,142,145],[1027,5,5,145,150],[1028,4,4,150,154],[1030,2,2,154,156],[1031,3,3,156,159],[1033,4,4,159,163],[1034,1,1,163,164],[1035,2,2,164,166],[1036,1,1,166,167],[1037,1,1,167,168],[1038,1,1,168,169],[1039,2,2,169,171],[1040,3,3,171,174],[1043,4,4,174,178],[1044,1,1,178,179],[1045,2,2,179,181]]],[44,3,3,181,184,[[1048,1,1,181,182],[1052,1,1,182,183],[1060,1,1,183,184]]],[45,33,27,184,211,[[1063,3,3,184,187],[1064,1,1,187,188],[1070,1,1,188,189],[1073,2,2,189,191],[1074,2,2,191,193],[1075,24,18,193,211]]],[46,10,8,211,219,[[1079,1,1,211,212],[1081,2,1,212,213],[1084,1,1,213,214],[1088,3,2,214,216],[1089,2,2,216,218],[1090,1,1,218,219]]],[48,3,3,219,222,[[1100,1,1,219,220],[1101,1,1,220,221],[1102,1,1,221,222]]],[49,1,1,222,223,[[1103,1,1,222,223]]],[50,2,2,223,225,[[1110,2,2,223,225]]],[51,4,4,225,229,[[1111,1,1,225,226],[1112,3,3,226,229]]],[53,1,1,229,230,[[1123,1,1,229,230]]],[55,2,2,230,232,[[1130,2,2,230,232]]],[57,16,16,232,248,[[1133,2,2,232,234],[1134,3,3,234,237],[1135,1,1,237,238],[1136,1,1,238,239],[1137,1,1,239,240],[1138,1,1,240,241],[1139,1,1,241,242],[1141,1,1,242,243],[1143,2,2,243,245],[1144,2,2,245,247],[1145,1,1,247,248]]],[58,3,3,248,251,[[1146,1,1,248,249],[1147,1,1,249,250],[1150,1,1,250,251]]],[59,2,2,251,253,[[1153,1,1,251,252],[1154,1,1,252,253]]],[60,2,2,253,255,[[1156,1,1,253,254],[1158,1,1,254,255]]],[61,1,1,255,256,[[1162,1,1,255,256]]],[62,1,1,256,257,[[1164,1,1,256,257]]],[63,1,1,257,258,[[1165,1,1,257,258]]],[64,2,2,258,260,[[1166,2,2,258,260]]],[65,12,11,260,271,[[1167,1,1,260,261],[1170,1,1,261,262],[1176,4,3,262,265],[1179,3,3,265,268],[1183,1,1,268,269],[1187,2,2,269,271]]]],[23397,23412,23436,23437,23511,23523,23525,23535,23536,23542,23549,23552,23572,23573,23624,23664,23705,23919,24067,24101,24213,24249,24262,24267,24356,24357,24399,24400,24457,24498,24500,24532,24544,24728,24763,24797,24890,24892,24912,24913,24915,24938,24948,24957,24963,24990,24991,24993,25006,25011,25023,25104,25111,25128,25191,25210,25294,25312,25419,25442,25462,25911,25924,25997,26016,26023,26027,26035,26081,26131,26151,26154,26182,26183,26320,26341,26345,26346,26354,26374,26393,26401,26406,26407,26409,26411,26419,26421,26425,26461,26469,26477,26487,26609,26616,26621,26628,26629,26630,26678,26693,26698,26702,26710,26721,26727,26730,26732,26739,26744,26751,26755,26759,26760,26772,26805,26806,26808,26835,26953,26955,26956,26960,26980,27017,27018,27020,27023,27039,27042,27051,27053,27079,27099,27111,27112,27114,27122,27154,27160,27201,27202,27222,27243,27245,27265,27266,27291,27303,27305,27321,27322,27326,27327,27404,27408,27415,27423,27439,27489,27496,27497,27515,27542,27566,27582,27591,27656,27703,27713,27714,27741,27743,27752,27837,27845,27849,27854,27880,27920,27924,28010,28092,28321,28400,28401,28407,28411,28548,28637,28664,28666,28676,28680,28681,28682,28683,28684,28687,28689,28691,28696,28697,28699,28701,28705,28706,28707,28712,28713,28717,28841,28872,28930,29006,29012,29026,29041,29046,29297,29323,29357,29375,29545,29546,29568,29572,29574,29586,29776,29909,29923,29964,29965,29979,29980,29982,30000,30022,30035,30053,30078,30124,30176,30190,30236,30237,30248,30285,30305,30364,30434,30457,30500,30538,30608,30657,30672,30687,30688,30709,30769,30864,30865,30869,30913,30919,30923,30976,31062,31068]]],["+",[2,2,[[43,1,1,0,1,[[1026,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[27245,28687]]],["Say",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28548]]],["Speakest",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26835]]],["Speaking",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29323]]],["after",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30000]]],["of",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24763]]],["preach",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27489]]],["preached",[4,4,[[40,1,1,0,1,[[958,1,1,0,1]]],[43,3,3,1,4,[[1025,1,1,1,2],[1030,1,1,2,3],[1031,1,1,3,4]]]],[24262,27201,27404,27439]]],["preaching",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27326]]],["said",[7,7,[[42,4,4,0,4,[[1004,1,1,0,1],[1012,1,1,1,2],[1014,2,2,2,4]]],[43,1,1,4,5,[[1040,1,1,4,5]]],[57,2,2,5,7,[[1137,1,1,5,6],[1143,1,1,6,7]]]],[26406,26732,26805,26806,27741,30035,30190]]],["saith",[2,2,[[42,1,1,0,1,[[1012,1,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]]],[26744,28010]]],["say",[5,5,[[40,1,1,0,1,[[965,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]],[43,3,3,2,5,[[1020,1,1,2,3],[1040,1,1,3,4],[1043,1,1,4,5]]]],[24544,26407,27018,27752,27845]]],["spake",[71,70,[[39,12,11,0,11,[[937,2,2,0,2],[940,1,1,2,3],[941,4,3,3,6],[942,1,1,6,7],[945,1,1,7,8],[951,1,1,8,9],[954,1,1,9,10],[956,1,1,10,11]]],[40,6,6,11,17,[[960,2,2,11,13],[961,1,1,13,14],[963,1,1,14,15],[964,1,1,15,16],[970,1,1,16,17]]],[41,14,14,17,31,[[973,3,3,17,20],[974,2,2,20,22],[980,1,1,22,23],[981,1,1,23,24],[983,2,2,24,26],[994,2,2,26,28],[996,3,3,28,31]]],[42,12,12,31,43,[[1003,2,2,31,33],[1004,3,3,33,36],[1005,1,1,36,37],[1006,1,1,37,38],[1008,3,3,38,41],[1013,1,1,41,42],[1014,1,1,42,43]]],[43,18,18,43,61,[[1019,1,1,43,44],[1021,2,2,44,46],[1023,1,1,46,47],[1024,2,2,47,49],[1025,1,1,49,50],[1027,2,2,50,52],[1028,1,1,52,53],[1031,1,1,53,54],[1033,2,2,54,56],[1035,1,1,56,57],[1036,1,1,57,58],[1039,1,1,58,59],[1045,2,2,59,61]]],[45,2,2,61,63,[[1074,1,1,61,62],[1075,1,1,62,63]]],[46,1,1,63,64,[[1084,1,1,63,64]]],[57,2,2,64,66,[[1133,1,1,64,65],[1139,1,1,65,66]]],[60,1,1,66,67,[[1156,1,1,66,67]]],[65,3,3,67,70,[[1167,1,1,67,68],[1176,1,1,68,69],[1179,1,1,69,70]]]],[23397,23412,23511,23542,23572,23573,23624,23705,23919,24101,24213,24356,24357,24399,24498,24532,24797,24948,24957,24963,25011,25023,25294,25312,25419,25442,25911,25924,25997,26027,26035,26341,26374,26393,26401,26411,26469,26487,26609,26616,26621,26760,26805,26980,27023,27053,27111,27122,27154,27202,27266,27303,27327,27415,27496,27515,27582,27591,27713,27920,27924,28676,28683,28930,29964,30078,30500,30709,30869,30919]]],["speak",[102,95,[[39,9,8,0,8,[[938,3,2,0,2],[940,4,4,2,6],[941,1,1,6,7],[943,1,1,7,8]]],[40,7,5,8,13,[[957,1,1,8,9],[958,1,1,9,10],[963,1,1,10,11],[969,3,1,11,12],[972,1,1,12,13]]],[41,5,5,13,18,[[973,3,3,13,16],[976,1,1,16,17],[979,1,1,17,18]]],[42,17,14,18,32,[[997,1,1,18,19],[999,1,1,19,20],[1000,1,1,20,21],[1002,1,1,21,22],[1003,1,1,22,23],[1004,2,2,23,25],[1005,1,1,25,26],[1008,3,2,26,28],[1010,2,1,28,29],[1012,3,2,29,31],[1013,1,1,31,32]]],[43,18,18,32,50,[[1019,4,4,32,36],[1021,3,3,36,39],[1022,2,2,39,41],[1023,2,2,41,43],[1027,2,2,43,45],[1028,1,1,45,46],[1031,1,1,46,47],[1035,1,1,47,48],[1038,1,1,48,49],[1043,1,1,49,50]]],[44,2,2,50,52,[[1052,1,1,50,51],[1060,1,1,51,52]]],[45,17,17,52,69,[[1063,3,3,52,55],[1064,1,1,55,56],[1073,1,1,56,57],[1074,1,1,57,58],[1075,11,11,58,69]]],[46,6,5,69,74,[[1079,1,1,69,70],[1081,1,1,70,71],[1088,3,2,71,73],[1089,1,1,73,74]]],[48,2,2,74,76,[[1100,1,1,74,75],[1102,1,1,75,76]]],[49,1,1,76,77,[[1103,1,1,76,77]]],[50,2,2,77,79,[[1110,2,2,77,79]]],[51,4,4,79,83,[[1111,1,1,79,80],[1112,3,3,80,83]]],[55,2,2,83,85,[[1130,2,2,83,85]]],[57,2,2,85,87,[[1134,1,1,85,86],[1138,1,1,86,87]]],[58,2,2,87,89,[[1146,1,1,87,88],[1147,1,1,88,89]]],[59,2,2,89,91,[[1153,1,1,89,90],[1154,1,1,90,91]]],[61,1,1,91,92,[[1162,1,1,91,92]]],[62,1,1,92,93,[[1164,1,1,92,93]]],[63,1,1,93,94,[[1165,1,1,93,94]]],[65,1,1,94,95,[[1179,1,1,94,95]]]],[23436,23437,23523,23525,23535,23536,23552,23664,24249,24267,24500,24728,24890,24912,24913,24915,25104,25210,26081,26131,26182,26320,26345,26409,26419,26461,26629,26630,26678,26739,26751,26772,26953,26955,26956,26960,27039,27042,27051,27079,27099,27112,27114,27291,27305,27322,27423,27566,27703,27849,28092,28321,28400,28401,28407,28411,28664,28666,28684,28696,28697,28699,28701,28705,28706,28707,28712,28713,28717,28841,28872,29006,29012,29041,29297,29357,29375,29545,29546,29568,29572,29574,29586,29909,29923,29982,30053,30285,30305,30434,30457,30608,30657,30672,30923]]],["speakest",[3,3,[[39,1,1,0,1,[[941,1,1,0,1]]],[42,1,1,1,2,[[1012,1,1,1,2]]],[43,1,1,2,3,[[1034,1,1,2,3]]]],[23549,26755,27542]]],["speaketh",[23,19,[[39,2,2,0,2,[[938,1,1,0,1],[940,1,1,1,2]]],[41,2,2,2,4,[[977,1,1,2,3],[978,1,1,3,4]]],[42,6,5,4,9,[[999,2,2,4,6],[1003,2,2,6,8],[1004,2,1,8,9]]],[45,9,6,9,15,[[1075,9,6,9,15]]],[57,3,3,15,18,[[1143,1,1,15,16],[1144,2,2,16,18]]],[64,1,1,18,19,[[1166,1,1,18,19]]]],[23437,23523,25128,25191,26151,26154,26346,26354,26425,28680,28681,28682,28683,28689,28691,30176,30236,30237,30688]]],["speaking",[10,10,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,3,3,1,4,[[1024,1,1,1,2],[1037,1,1,2,3],[1043,1,1,3,4]]],[45,2,2,4,6,[[1073,1,1,4,5],[1075,1,1,5,6]]],[46,1,1,6,7,[[1090,1,1,6,7]]],[53,1,1,7,8,[[1123,1,1,7,8]]],[60,1,1,8,9,[[1158,1,1,8,9]]],[65,1,1,9,10,[[1179,1,1,9,10]]]],[25111,27160,27656,27837,28637,28684,29046,29776,30538,30913]]],["spoken",[31,31,[[40,2,2,0,2,[[961,1,1,0,1],[972,1,1,1,2]]],[41,3,3,2,5,[[974,1,1,2,3],[984,1,1,3,4],[996,1,1,4,5]]],[42,10,10,5,15,[[1008,2,2,5,7],[1010,1,1,7,8],[1011,3,3,8,11],[1012,3,3,11,14],[1014,1,1,14,15]]],[43,6,6,15,21,[[1020,2,2,15,17],[1026,1,1,17,18],[1030,1,1,18,19],[1033,1,1,19,20],[1040,1,1,20,21]]],[45,1,1,21,22,[[1075,1,1,21,22]]],[46,1,1,22,23,[[1081,1,1,22,23]]],[57,6,6,23,29,[[1133,1,1,23,24],[1134,2,2,24,26],[1136,1,1,26,27],[1141,1,1,27,28],[1145,1,1,28,29]]],[58,1,1,29,30,[[1150,1,1,29,30]]],[64,1,1,30,31,[[1166,1,1,30,31]]]],[24400,24892,25006,25462,26016,26628,26629,26693,26702,26710,26721,26727,26751,26759,26808,27017,27020,27243,27408,27497,27743,28687,28872,29965,29979,29980,30022,30124,30248,30364,30687]]],["talk",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26698]]],["talked",[8,8,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,1,1,2,3,[[996,1,1,2,3]]],[42,1,1,3,4,[[1000,1,1,3,4]]],[43,1,1,4,5,[[1043,1,1,4,5]]],[65,3,3,5,8,[[1183,1,1,5,6],[1187,2,2,6,8]]]],[23535,24457,26023,26183,27854,30976,31062,31068]]],["talkest",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26183]]],["talketh",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26477]]],["talking",[1,1,[[65,1,1,0,1,[[1170,1,1,0,1]]]],[30769]]],["tell",[2,2,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]]],[27265,27321]]],["told",[10,10,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,4,4,1,5,[[973,1,1,1,2],[974,3,3,2,5]]],[42,2,2,5,7,[[1004,1,1,5,6],[1012,1,1,6,7]]],[43,3,3,7,10,[[1026,1,1,7,8],[1039,1,1,8,9],[1044,1,1,9,10]]]],[24067,24938,24990,24991,24993,26421,26730,27222,27714,27880]]],["utter",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29026]]],["uttered",[3,2,[[65,3,2,0,2,[[1176,3,2,0,2]]]],[30864,30865]]]]},{"k":"G2981","v":[["*",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,2,2,2,4,[[1000,1,1,2,3],[1004,1,1,3,4]]]],[24127,24824,26198,26424]]],["saying",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26198]]],["speech",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]]],[24127,24824,26424]]]]},{"k":"G2982","v":[["lama",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24175,24860]]]]},{"k":"G2983","v":[["*",[263,248,[[39,57,53,0,53,[[933,1,1,0,1],[935,1,1,1,2],[936,1,1,2,3],[938,4,3,3,6],[940,1,1,6,7],[941,3,3,7,10],[942,1,1,10,11],[943,2,2,11,13],[944,5,5,13,18],[945,3,3,18,21],[947,1,1,21,22],[948,5,4,22,26],[949,4,4,26,30],[950,1,1,30,31],[951,1,1,31,32],[953,9,8,32,40],[954,4,3,40,43],[955,8,8,43,51],[956,2,2,51,53]]],[40,20,19,53,72,[[960,1,1,53,54],[962,1,1,54,55],[963,1,1,55,56],[964,2,2,56,58],[965,1,1,58,59],[966,1,1,59,60],[967,1,1,60,61],[968,8,8,61,69],[970,3,2,69,71],[971,1,1,71,72]]],[41,21,21,72,93,[[977,2,2,72,74],[978,1,1,74,75],[979,1,1,75,76],[981,2,2,76,78],[983,1,1,78,79],[985,2,2,79,81],[991,2,2,81,83],[992,6,6,83,89],[994,2,2,89,91],[996,2,2,91,93]]],[42,45,40,93,133,[[997,2,2,93,95],[999,4,4,95,99],[1000,1,1,99,100],[1001,5,4,100,104],[1002,3,3,104,107],[1003,2,2,107,109],[1006,3,2,109,111],[1008,3,3,111,114],[1009,7,4,114,118],[1010,1,1,118,119],[1012,3,3,119,122],[1013,1,1,122,123],[1014,2,2,123,125],[1015,6,6,125,131],[1016,1,1,131,132],[1017,1,1,132,133]]],[43,30,30,133,163,[[1018,3,3,133,136],[1019,3,3,136,139],[1020,2,2,139,141],[1024,1,1,141,142],[1025,3,3,142,145],[1026,2,2,145,147],[1027,2,2,147,149],[1032,1,1,149,150],[1033,2,2,150,152],[1034,2,2,152,154],[1036,1,1,154,155],[1037,2,2,155,157],[1041,1,1,157,158],[1042,1,1,158,159],[1043,2,2,159,161],[1044,1,1,161,162],[1045,1,1,162,163]]],[44,9,8,163,171,[[1046,1,1,163,164],[1049,1,1,164,165],[1050,2,2,165,167],[1052,2,2,167,169],[1053,2,1,169,170],[1058,1,1,170,171]]],[45,12,10,171,181,[[1063,1,1,171,172],[1064,2,2,172,174],[1065,3,1,174,175],[1070,2,2,175,177],[1071,1,1,177,178],[1072,2,2,178,180],[1075,1,1,180,181]]],[46,6,5,181,186,[[1088,5,4,181,185],[1089,1,1,185,186]]],[47,3,3,186,189,[[1092,1,1,186,187],[1093,2,2,187,189]]],[49,2,2,189,191,[[1104,1,1,189,190],[1105,1,1,190,191]]],[50,1,1,191,192,[[1110,1,1,191,192]]],[53,1,1,192,193,[[1122,1,1,192,193]]],[54,1,1,193,194,[[1125,1,1,193,194]]],[57,17,17,194,211,[[1134,2,2,194,196],[1136,1,1,196,197],[1137,2,2,197,199],[1139,3,3,199,202],[1141,2,2,202,204],[1142,1,1,204,205],[1143,6,6,205,211]]],[58,6,6,211,217,[[1146,2,2,211,213],[1148,1,1,213,214],[1149,1,1,214,215],[1150,2,2,215,217]]],[59,1,1,217,218,[[1154,1,1,217,218]]],[60,2,2,218,220,[[1156,2,2,218,220]]],[61,3,3,220,223,[[1160,1,1,220,221],[1161,1,1,221,222],[1163,1,1,222,223]]],[62,2,2,223,225,[[1164,2,2,223,225]]],[63,1,1,225,226,[[1165,1,1,225,226]]],[65,23,22,226,248,[[1168,2,2,226,228],[1169,2,2,228,230],[1170,1,1,230,231],[1171,4,4,231,235],[1172,1,1,235,236],[1174,1,1,236,237],[1176,3,3,237,240],[1177,1,1,240,241],[1180,2,2,241,243],[1183,2,1,243,244],[1184,1,1,244,245],[1185,1,1,245,246],[1186,1,1,246,247],[1188,1,1,247,248]]]],[23274,23324,23362,23425,23455,23458,23503,23559,23570,23572,23616,23659,23669,23677,23679,23680,23681,23682,23724,23725,23727,23791,23799,23801,23802,23803,23848,23860,23861,23865,23887,23932,24009,24011,24012,24024,24026,24028,24030,24032,24080,24081,24106,24130,24135,24136,24138,24153,24159,24177,24188,24207,24210,24339,24448,24490,24506,24514,24574,24618,24664,24675,24676,24681,24692,24693,24694,24695,24713,24776,24777,24849,25112,25133,25150,25211,25317,25340,25415,25537,25539,25743,25746,25800,25807,25808,25809,25810,25826,25881,25883,26021,26034,26056,26060,26131,26147,26152,26153,26192,26244,26251,26253,26254,26264,26268,26278,26351,26367,26498,26499,26583,26593,26628,26634,26642,26650,26660,26685,26740,26741,26750,26767,26788,26816,26826,26831,26848,26852,26855,26865,26889,26911,26931,26943,26948,26972,26982,26987,26999,27001,27169,27191,27193,27195,27235,27241,27302,27306,27456,27486,27507,27532,27538,27587,27650,27661,27796,27812,27833,27841,27890,27914,27935,28033,28058,28064,28099,28102,28131,28268,28406,28418,28424,28440,28564,28565,28580,28623,28624,28683,28993,28997,29009,29013,29038,29087,29104,29116,29398,29433,29552,29751,29814,29979,29980,30030,30031,30034,30069,30072,30073,30120,30124,30159,30180,30183,30185,30201,30207,30208,30273,30278,30320,30340,30361,30364,30456,30488,30496,30577,30601,30633,30649,30655,30665,30734,30744,30749,30757,30779,30786,30787,30788,30791,30797,30832,30869,30870,30871,30889,30935,30937,30987,30997,31037,31042,31097]]],["+",[9,9,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,2,2,1,3,[[977,1,1,1,2],[979,1,1,2,3]]],[43,2,2,3,5,[[1041,1,1,3,4],[1042,1,1,4,5]]],[45,1,1,5,6,[[1072,1,1,5,6]]],[57,2,2,6,8,[[1134,1,1,6,7],[1143,1,1,7,8]]],[60,1,1,8,9,[[1156,1,1,8,9]]]],[24030,25133,25211,27796,27812,28624,29980,30201,30488]]],["Receive",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26889]]],["Received",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29104]]],["Take",[7,7,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,2,2,3,5,[[1014,1,1,3,4],[1015,1,1,4,5]]],[58,1,1,5,6,[[1150,1,1,5,6]]],[65,1,1,6,7,[[1176,1,1,6,7]]]],[24080,24776,25881,26816,26831,30364,30870]]],["Took",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26593]]],["acceptest",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25800]]],["accepteth",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29087]]],["an",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[26999]]],["attained",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29433]]],["away",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23274]]],["brought",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23680]]],["call",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29814]]],["caught",[3,3,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[46,1,1,2,3,[[1089,1,1,2,3]]]],[23865,24676,29038]]],["had",[2,2,[[40,1,1,0,1,[[968,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[24695,30208]]],["held",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23503]]],["obtain",[2,2,[[45,1,1,0,1,[[1070,1,1,0,1]]],[57,1,1,1,2,[[1136,1,1,1,2]]]],[28565,30030]]],["receive",[60,57,[[39,7,6,0,6,[[938,2,1,0,1],[947,1,1,1,2],[948,1,1,2,3],[949,2,2,3,5],[951,1,1,5,6]]],[40,5,5,6,11,[[960,1,1,6,7],[966,1,1,7,8],[967,1,1,8,9],[968,2,2,9,11]]],[41,2,2,11,13,[[991,1,1,11,12],[992,1,1,12,13]]],[42,12,11,13,24,[[999,2,2,13,15],[1001,5,4,15,19],[1003,2,2,19,21],[1010,1,1,21,22],[1012,2,2,22,24]]],[43,8,8,24,32,[[1018,1,1,24,25],[1019,1,1,25,26],[1020,1,1,26,27],[1025,2,2,27,29],[1027,1,1,29,30],[1037,1,1,30,31],[1043,1,1,31,32]]],[44,2,2,32,34,[[1050,1,1,32,33],[1058,1,1,33,34]]],[45,5,4,34,38,[[1064,2,2,34,36],[1065,2,1,36,37],[1075,1,1,37,38]]],[46,1,1,38,39,[[1088,1,1,38,39]]],[47,1,1,39,40,[[1093,1,1,39,40]]],[57,4,4,40,44,[[1139,2,2,40,42],[1141,1,1,42,43],[1143,1,1,43,44]]],[58,5,5,44,49,[[1146,2,2,44,46],[1148,1,1,46,47],[1149,1,1,47,48],[1150,1,1,48,49]]],[61,2,2,49,51,[[1161,1,1,49,50],[1163,1,1,50,51]]],[62,1,1,51,52,[[1164,1,1,51,52]]],[65,5,5,52,57,[[1170,1,1,52,53],[1171,1,1,53,54],[1180,1,1,54,55],[1183,1,1,55,56],[1184,1,1,56,57]]]],[23458,23791,23799,23848,23860,23932,24339,24618,24664,24675,24713,25743,25826,26131,26147,26244,26251,26253,26254,26351,26367,26685,26740,26750,26931,26987,27001,27191,27195,27302,27661,27841,28064,28268,28418,28424,28440,28683,28993,29116,30069,30072,30120,30180,30273,30278,30320,30340,30361,30601,30633,30655,30779,30791,30935,30987,30997]]],["received",[55,53,[[39,10,9,0,9,[[938,1,1,0,1],[945,1,1,1,2],[948,4,3,2,5],[953,4,4,5,9]]],[40,1,1,9,10,[[971,1,1,9,10]]],[41,1,1,10,11,[[991,1,1,10,11]]],[42,9,9,11,20,[[997,2,2,11,13],[999,1,1,13,14],[1002,1,1,14,15],[1006,1,1,15,16],[1009,1,1,16,17],[1013,1,1,17,18],[1014,1,1,18,19],[1015,1,1,19,20]]],[43,9,9,20,29,[[1019,1,1,20,21],[1024,1,1,21,22],[1025,1,1,22,23],[1026,1,1,23,24],[1027,1,1,24,25],[1033,1,1,25,26],[1036,1,1,26,27],[1037,1,1,27,28],[1043,1,1,28,29]]],[44,5,4,29,33,[[1046,1,1,29,30],[1049,1,1,30,31],[1050,1,1,31,32],[1053,2,1,32,33]]],[45,2,2,33,35,[[1063,1,1,33,34],[1065,1,1,34,35]]],[46,2,2,35,37,[[1088,2,2,35,37]]],[50,1,1,37,38,[[1110,1,1,37,38]]],[53,1,1,38,39,[[1122,1,1,38,39]]],[57,5,5,39,44,[[1134,1,1,39,40],[1142,1,1,40,41],[1143,3,3,41,44]]],[59,1,1,44,45,[[1154,1,1,44,45]]],[60,1,1,45,46,[[1156,1,1,45,46]]],[61,1,1,46,47,[[1160,1,1,46,47]]],[62,1,1,47,48,[[1164,1,1,47,48]]],[65,5,5,48,53,[[1168,1,1,48,49],[1169,1,1,49,50],[1183,1,1,50,51],[1185,1,1,51,52],[1186,1,1,52,53]]]],[23425,23724,23801,23802,23803,24024,24026,24028,24032,24849,25746,26056,26060,26153,26278,26499,26660,26767,26788,26855,26982,27169,27193,27235,27306,27507,27587,27650,27833,27935,28033,28058,28131,28406,28440,28993,29013,29552,29751,29979,30159,30183,30185,30207,30456,30496,30577,30649,30744,30749,30987,31037,31042]]],["receiveth",[14,11,[[39,2,2,0,2,[[935,1,1,0,1],[941,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[42,7,4,3,7,[[999,1,1,3,4],[1000,1,1,4,5],[1008,1,1,5,6],[1009,4,1,6,7]]],[45,1,1,7,8,[[1070,1,1,7,8]]],[57,1,1,8,9,[[1139,1,1,8,9]]],[65,2,2,9,11,[[1168,1,1,9,10],[1180,1,1,10,11]]]],[23324,23559,25415,26152,26192,26628,26650,28564,30073,30734,30937]]],["receiving",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27538]]],["take",[23,23,[[39,5,5,0,5,[[943,1,1,0,1],[944,1,1,1,2],[945,2,2,2,4],[954,1,1,4,5]]],[40,3,3,5,8,[[963,1,1,5,6],[964,1,1,6,7],[968,1,1,7,8]]],[41,2,2,8,10,[[978,1,1,8,9],[992,1,1,9,10]]],[42,4,4,10,14,[[1002,1,1,10,11],[1006,2,2,11,13],[1012,1,1,13,14]]],[43,3,3,14,17,[[1018,2,2,14,16],[1032,1,1,16,17]]],[46,1,1,17,18,[[1088,1,1,17,18]]],[65,5,5,18,23,[[1169,1,1,18,19],[1171,1,1,19,20],[1172,1,1,20,21],[1176,1,1,21,22],[1188,1,1,22,23]]]],[23659,23677,23725,23727,24106,24490,24514,24692,25150,25807,26264,26498,26499,26741,26943,26948,27456,29009,30757,30788,30797,30869,31097]]],["taken",[12,12,[[39,3,3,0,3,[[944,1,1,0,1],[955,1,1,1,2],[956,1,1,2,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[41,1,1,4,5,[[977,1,1,4,5]]],[42,1,1,5,6,[[1009,1,1,5,6]]],[43,2,2,6,8,[[1019,1,1,6,7],[1034,1,1,7,8]]],[45,1,1,8,9,[[1071,1,1,8,9]]],[57,1,1,9,10,[[1137,1,1,9,10]]],[65,2,2,10,12,[[1171,1,1,10,11],[1177,1,1,11,12]]]],[23679,24188,24207,24448,25112,26642,26972,27532,28580,30031,30787,30889]]],["taketh",[4,4,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]],[57,1,1,3,4,[[1137,1,1,3,4]]]],[23455,25340,26911,30034]]],["taking",[4,4,[[44,2,2,0,2,[[1052,2,2,0,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]],[63,1,1,3,4,[[1165,1,1,3,4]]]],[28099,28102,28997,30665]]],["took",[54,53,[[39,21,20,0,20,[[936,1,1,0,1],[941,2,2,1,3],[942,1,1,3,4],[943,1,1,4,5],[949,1,1,5,6],[950,1,1,6,7],[953,4,3,7,10],[954,2,2,10,12],[955,7,7,12,19],[956,1,1,19,20]]],[40,7,7,20,27,[[964,1,1,20,21],[965,1,1,21,22],[968,3,3,22,25],[970,2,2,25,27]]],[41,9,9,27,36,[[981,1,1,27,28],[985,2,2,28,30],[992,3,3,30,33],[994,1,1,33,34],[996,2,2,34,36]]],[42,7,7,36,43,[[1002,1,1,36,37],[1008,1,1,37,38],[1009,1,1,38,39],[1015,4,4,39,43]]],[43,4,4,43,47,[[1026,1,1,43,44],[1033,1,1,44,45],[1044,1,1,45,46],[1045,1,1,46,47]]],[45,1,1,47,48,[[1072,1,1,47,48]]],[49,1,1,48,49,[[1104,1,1,48,49]]],[57,1,1,49,50,[[1141,1,1,49,50]]],[65,3,3,50,53,[[1171,1,1,50,51],[1174,1,1,51,52],[1176,1,1,52,53]]]],[23362,23570,23572,23616,23669,23861,23887,24009,24011,24012,24080,24081,24130,24135,24136,24138,24153,24159,24177,24210,24506,24574,24681,24693,24694,24776,24777,25317,25537,25539,25808,25809,25810,25883,26021,26034,26268,26583,26634,26826,26848,26852,26865,27241,27486,27890,27914,28623,29398,30124,30786,30832,30871]]],["up",[2,2,[[39,2,2,0,2,[[944,2,2,0,2]]]],[23681,23682]]]]},{"k":"G2984","v":[["Lamech",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25061]]]]},{"k":"G2985","v":[["*",[9,9,[[39,5,5,0,5,[[953,5,5,0,5]]],[42,1,1,5,6,[[1014,1,1,5,6]]],[43,1,1,6,7,[[1037,1,1,6,7]]],[65,2,2,7,9,[[1170,1,1,7,8],[1174,1,1,8,9]]]],[24009,24011,24012,24015,24016,26788,27634,30773,30837]]],["lamp",[1,1,[[65,1,1,0,1,[[1174,1,1,0,1]]]],[30837]]],["lamps",[6,6,[[39,5,5,0,5,[[953,5,5,0,5]]],[65,1,1,5,6,[[1170,1,1,5,6]]]],[24009,24011,24012,24015,24016,30773]]],["lights",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27634]]],["torches",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26788]]]]},{"k":"G2986","v":[["*",[9,9,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]],[58,2,2,2,4,[[1147,2,2,2,4]]],[65,5,5,4,9,[[1181,1,1,4,5],[1184,1,1,5,6],[1185,1,1,6,7],[1188,2,2,7,9]]]],[25946,27289,30295,30296,30952,31007,31025,31081,31096]]],["bright",[2,2,[[43,1,1,0,1,[[1027,1,1,0,1]]],[65,1,1,1,2,[[1188,1,1,1,2]]]],[27289,31096]]],["clear",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31081]]],["gay",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30296]]],["goodly",[2,2,[[58,1,1,0,1,[[1147,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[30295,31007]]],["gorgeous",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25946]]],["white",[2,2,[[65,2,2,0,2,[[1181,1,1,0,1],[1185,1,1,1,2]]]],[30952,31025]]]]},{"k":"G2987","v":[["brightness",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27836]]]]},{"k":"G2988","v":[["sumptuously",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25639]]]]},{"k":"G2989","v":[["*",[7,6,[[39,3,3,0,3,[[933,2,2,0,2],[945,1,1,2,3]]],[41,1,1,3,4,[[989,1,1,3,4]]],[43,1,1,4,5,[[1029,1,1,4,5]]],[46,2,1,5,6,[[1081,2,1,5,6]]]],[23249,23250,23702,25675,27344,28865]]],["light",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23249]]],["shine",[3,3,[[39,2,2,0,2,[[933,1,1,0,1],[945,1,1,1,2]]],[46,1,1,2,3,[[1081,1,1,2,3]]]],[23250,23702,28865]]],["shined",[2,2,[[43,1,1,0,1,[[1029,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]]],[27344,28865]]],["shineth",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25675]]]]},{"k":"G2990","v":[["*",[6,6,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[43,1,1,2,3,[[1043,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]],[60,2,2,4,6,[[1158,2,2,4,6]]]],[24487,25292,27849,30243,30527,30530]]],["+",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30530]]],["hid",[2,2,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24487,25292]]],["hidden",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27849]]],["of",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30527]]],["unawares",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30243]]]]},{"k":"G2991","v":[["stone",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25988]]]]},{"k":"G2992","v":[["*",[143,139,[[39,15,15,0,15,[[929,1,1,0,1],[930,2,2,1,3],[932,2,2,3,5],[937,1,1,5,6],[941,1,1,6,7],[943,1,1,7,8],[949,1,1,8,9],[954,3,3,9,12],[955,3,3,12,15]]],[40,3,3,15,18,[[963,1,1,15,16],[967,1,1,16,17],[970,1,1,17,18]]],[41,36,36,18,54,[[973,5,5,18,23],[974,3,3,23,26],[975,3,3,26,29],[978,1,1,29,30],[979,3,3,30,33],[980,1,1,33,34],[981,1,1,34,35],[990,1,1,35,36],[991,2,2,36,38],[992,6,6,38,44],[993,2,2,44,46],[994,2,2,46,48],[995,5,5,48,53],[996,1,1,53,54]]],[42,3,3,54,57,[[1004,1,1,54,55],[1007,1,1,55,56],[1014,1,1,56,57]]],[43,48,47,57,104,[[1019,1,1,57,58],[1020,4,4,58,62],[1021,8,8,62,70],[1022,7,7,70,77],[1023,2,2,77,79],[1024,2,2,79,81],[1027,3,3,81,84],[1029,2,2,84,86],[1030,5,4,86,90],[1032,1,1,90,91],[1035,1,1,91,92],[1036,1,1,92,93],[1038,5,5,93,98],[1040,1,1,98,99],[1043,2,2,99,101],[1045,3,3,101,104]]],[44,8,7,104,111,[[1054,3,2,104,106],[1055,1,1,106,107],[1056,2,2,107,109],[1060,2,2,109,111]]],[45,2,2,111,113,[[1071,1,1,111,112],[1075,1,1,112,113]]],[46,1,1,113,114,[[1083,1,1,113,114]]],[55,1,1,114,115,[[1130,1,1,114,115]]],[57,13,12,115,127,[[1134,1,1,115,116],[1136,1,1,116,117],[1137,1,1,117,118],[1139,3,3,118,121],[1140,1,1,121,122],[1141,3,2,122,124],[1142,1,1,124,125],[1143,1,1,125,126],[1145,1,1,126,127]]],[59,3,2,127,129,[[1152,3,2,127,129]]],[60,1,1,129,130,[[1157,1,1,129,130]]],[64,1,1,130,131,[[1166,1,1,130,131]]],[65,8,8,131,139,[[1171,1,1,131,132],[1173,1,1,132,133],[1176,1,1,133,134],[1177,1,1,134,135],[1180,1,1,135,136],[1183,1,1,136,137],[1184,1,1,137,138],[1187,1,1,138,139]]]],[23165,23173,23175,23225,23232,23414,23554,23641,23849,24057,24059,24101,24130,24154,24193,24469,24672,24756,24903,24910,24914,24961,24970,24983,25004,25005,25040,25043,25046,25163,25196,25211,25224,25292,25314,25731,25778,25779,25780,25785,25788,25798,25805,25824,25849,25864,25866,25930,25940,25948,25949,25962,25970,26010,26383,26573,26799,26996,27005,27007,27008,27019,27023,27024,27030,27032,27039,27043,27047,27049,27071,27072,27079,27084,27085,27093,27096,27109,27113,27133,27150,27261,27300,27301,27341,27348,27377,27379,27386,27393,27456,27567,27589,27692,27694,27700,27703,27704,27739,27840,27846,27916,27925,27926,28180,28181,28209,28210,28211,28313,28314,28574,28699,28914,29922,29994,30023,30033,30069,30075,30091,30102,30112,30124,30163,30197,30253,30408,30409,30501,30677,30788,30819,30872,30881,30932,30990,30997,31056]]],["people",[139,135,[[39,14,14,0,14,[[929,1,1,0,1],[930,2,2,1,3],[932,2,2,3,5],[937,1,1,5,6],[943,1,1,6,7],[949,1,1,7,8],[954,3,3,8,11],[955,3,3,11,14]]],[40,3,3,14,17,[[963,1,1,14,15],[967,1,1,15,16],[970,1,1,16,17]]],[41,36,36,17,53,[[973,5,5,17,22],[974,3,3,22,25],[975,3,3,25,28],[978,1,1,28,29],[979,3,3,29,32],[980,1,1,32,33],[981,1,1,33,34],[990,1,1,34,35],[991,2,2,35,37],[992,6,6,37,43],[993,2,2,43,45],[994,2,2,45,47],[995,5,5,47,52],[996,1,1,52,53]]],[42,3,3,53,56,[[1004,1,1,53,54],[1007,1,1,54,55],[1014,1,1,55,56]]],[43,48,47,56,103,[[1019,1,1,56,57],[1020,4,4,57,61],[1021,8,8,61,69],[1022,7,7,69,76],[1023,2,2,76,78],[1024,2,2,78,80],[1027,3,3,80,83],[1029,2,2,83,85],[1030,5,4,85,89],[1032,1,1,89,90],[1035,1,1,90,91],[1036,1,1,91,92],[1038,5,5,92,97],[1040,1,1,97,98],[1043,2,2,98,100],[1045,3,3,100,103]]],[44,8,7,103,110,[[1054,3,2,103,105],[1055,1,1,105,106],[1056,2,2,106,108],[1060,2,2,108,110]]],[45,2,2,110,112,[[1071,1,1,110,111],[1075,1,1,111,112]]],[46,1,1,112,113,[[1083,1,1,112,113]]],[55,1,1,113,114,[[1130,1,1,113,114]]],[57,12,11,114,125,[[1134,1,1,114,115],[1136,1,1,115,116],[1137,1,1,116,117],[1139,2,2,117,119],[1140,1,1,119,120],[1141,3,2,120,122],[1142,1,1,122,123],[1143,1,1,123,124],[1145,1,1,124,125]]],[59,3,2,125,127,[[1152,3,2,125,127]]],[60,1,1,127,128,[[1157,1,1,127,128]]],[64,1,1,128,129,[[1166,1,1,128,129]]],[65,6,6,129,135,[[1171,1,1,129,130],[1173,1,1,130,131],[1177,1,1,131,132],[1180,1,1,132,133],[1184,1,1,133,134],[1187,1,1,134,135]]]],[23165,23173,23175,23225,23232,23414,23641,23849,24057,24059,24101,24130,24154,24193,24469,24672,24756,24903,24910,24914,24961,24970,24983,25004,25005,25040,25043,25046,25163,25196,25211,25224,25292,25314,25731,25778,25779,25780,25785,25788,25798,25805,25824,25849,25864,25866,25930,25940,25948,25949,25962,25970,26010,26383,26573,26799,26996,27005,27007,27008,27019,27023,27024,27030,27032,27039,27043,27047,27049,27071,27072,27079,27084,27085,27093,27096,27109,27113,27133,27150,27261,27300,27301,27341,27348,27377,27379,27386,27393,27456,27567,27589,27692,27694,27700,27703,27704,27739,27840,27846,27916,27925,27926,28180,28181,28209,28210,28211,28313,28314,28574,28699,28914,29922,29994,30023,30033,30069,30075,30102,30112,30124,30163,30197,30253,30408,30409,30501,30677,30788,30819,30881,30932,30997,31056]]],["people's",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[23554,30091]]],["peoples",[2,2,[[65,2,2,0,2,[[1176,1,1,0,1],[1183,1,1,1,2]]]],[30872,30990]]]]},{"k":"G2993","v":[["Laodicea",[5,5,[[50,4,4,0,4,[[1108,1,1,0,1],[1110,3,3,1,4]]],[65,1,1,4,5,[[1167,1,1,4,5]]]],[29495,29555,29557,29558,30708]]]]},{"k":"G2994","v":[["Laodiceans",[2,2,[[50,1,1,0,1,[[1110,1,1,0,1]]],[65,1,1,1,2,[[1169,1,1,1,2]]]],[29558,30760]]]]},{"k":"G2995","v":[["throat",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28004]]]]},{"k":"G2996","v":[["Lasea",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27863]]]]},{"k":"G2997","v":[["asunder",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26941]]]]},{"k":"G2998","v":[["*",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24189,24872]]],["hewn",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24872]]],["out",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24189]]]]},{"k":"G2999","v":[["service",[5,5,[[42,1,1,0,1,[[1012,1,1,0,1]]],[44,2,2,1,3,[[1054,1,1,1,2],[1057,1,1,2,3]]],[57,2,2,3,5,[[1141,2,2,3,5]]]],[26728,28159,28246,30106,30111]]]]},{"k":"G3000","v":[["*",[21,21,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,3,3,1,4,[[973,1,1,1,2],[974,1,1,2,3],[976,1,1,3,4]]],[43,5,5,4,9,[[1024,2,2,4,6],[1041,1,1,6,7],[1043,1,1,7,8],[1044,1,1,8,9]]],[44,2,2,9,11,[[1046,2,2,9,11]]],[49,1,1,11,12,[[1105,1,1,11,12]]],[54,1,1,12,13,[[1125,1,1,12,13]]],[57,6,6,13,19,[[1140,1,1,13,14],[1141,2,2,14,16],[1142,1,1,16,17],[1144,1,1,17,18],[1145,1,1,18,19]]],[65,2,2,19,21,[[1173,1,1,19,20],[1188,1,1,20,21]]]],[23219,24967,25010,25071,27123,27158,27783,27830,27878,27939,27955,29424,29812,30097,30114,30119,30135,30240,30251,30825,31083]]],["+",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30114]]],["serve",[13,13,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,2,2,1,3,[[973,1,1,1,2],[976,1,1,2,3]]],[43,2,2,3,5,[[1024,1,1,3,4],[1044,1,1,4,5]]],[44,1,1,5,6,[[1046,1,1,5,6]]],[54,1,1,6,7,[[1125,1,1,6,7]]],[57,4,4,7,11,[[1140,1,1,7,8],[1141,1,1,8,9],[1144,1,1,9,10],[1145,1,1,10,11]]],[65,2,2,11,13,[[1173,1,1,11,12],[1188,1,1,12,13]]]],[23219,24967,25071,27123,27878,27939,29812,30097,30119,30240,30251,30825,31083]]],["served",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[25010,27955]]],["serving",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27830]]],["worship",[3,3,[[43,2,2,0,2,[[1024,1,1,0,1],[1041,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]]],[27158,27783,29424]]],["worshippers",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30135]]]]},{"k":"G3001","v":[["herbs",[4,4,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[44,1,1,3,4,[[1059,1,1,3,4]]]],[23571,24355,25447,28282]]]]},{"k":"G3002","v":[["Lebbaeus",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23420]]]]},{"k":"G3003","v":[["*",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[961,2,2,1,3]]],[41,1,1,3,4,[[980,1,1,3,4]]]],[24107,24373,24379,25275]]],["Legion",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24373,25275]]],["legion",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24379]]],["legions",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24107]]]]},{"k":"G3004","v":[["*",[1343,1243,[[39,292,268,0,268,[[929,3,3,0,3],[930,6,6,3,9],[931,6,5,9,14],[932,7,7,14,21],[933,10,10,21,31],[934,6,6,31,37],[935,1,1,37,38],[936,15,15,38,53],[937,15,13,53,66],[938,7,7,66,73],[939,8,8,73,81],[940,9,9,81,90],[941,11,10,90,100],[942,8,8,100,108],[943,9,9,108,117],[944,9,7,117,124],[945,10,8,124,132],[946,12,11,132,143],[947,12,12,143,155],[948,10,9,155,164],[949,23,20,164,184],[950,16,13,184,197],[951,6,6,197,203],[952,5,5,203,208],[953,9,8,208,216],[954,32,29,216,245],[955,23,19,245,264],[956,4,4,264,268]]],[40,207,187,268,455,[[957,11,11,268,279],[958,11,11,279,290],[959,11,11,290,301],[960,11,11,301,312],[961,14,12,312,324],[962,14,12,324,336],[963,8,8,336,344],[964,17,13,344,357],[965,15,13,357,370],[966,15,15,370,385],[967,14,11,385,396],[968,13,10,396,406],[969,6,5,406,411],[970,33,30,411,441],[971,12,12,441,453],[972,2,2,453,455]]],[41,227,218,455,673,[[973,4,4,455,459],[974,1,1,459,460],[975,9,8,460,468],[976,9,9,468,477],[977,8,8,477,485],[978,5,5,485,490],[979,17,17,490,507],[980,11,11,507,518],[981,11,10,518,528],[982,7,7,528,535],[983,11,10,535,545],[984,16,15,545,560],[985,13,13,560,573],[986,6,5,573,578],[987,6,6,578,584],[988,5,5,584,589],[989,6,6,589,595],[990,14,14,595,609],[991,11,11,609,620],[992,11,10,620,630],[993,6,6,630,636],[994,17,17,636,653],[995,16,14,653,667],[996,7,6,667,673]]],[42,268,234,673,907,[[997,19,17,673,690],[998,9,8,690,698],[999,4,4,698,702],[1000,24,22,702,724],[1001,8,8,724,732],[1002,15,14,732,746],[1003,14,12,746,758],[1004,21,20,758,778],[1005,14,10,778,788],[1006,9,8,788,796],[1007,20,19,796,815],[1008,10,8,815,823],[1009,20,20,823,843],[1010,7,6,843,849],[1011,1,1,849,850],[1012,10,8,850,858],[1014,9,7,858,865],[1015,20,18,865,883],[1016,15,11,883,894],[1017,19,13,894,907]]],[43,105,103,907,1010,[[1018,2,2,907,909],[1019,7,7,909,916],[1020,2,2,916,918],[1021,2,2,918,920],[1022,5,5,920,925],[1023,4,4,925,929],[1024,3,3,929,932],[1025,6,6,932,938],[1026,3,3,938,941],[1027,2,2,941,943],[1028,5,5,943,948],[1029,3,3,948,951],[1030,5,4,951,955],[1031,3,3,955,958],[1032,4,4,958,962],[1033,5,5,962,967],[1034,5,4,967,971],[1035,1,1,971,972],[1036,4,4,972,976],[1037,1,1,976,977],[1038,6,6,977,983],[1039,5,5,983,988],[1040,4,4,988,992],[1041,3,3,992,995],[1042,2,2,995,997],[1043,4,4,997,1001],[1044,4,4,1001,1005],[1045,5,5,1005,1010]]],[44,35,33,1010,1043,[[1047,1,1,1010,1011],[1048,3,3,1011,1014],[1049,3,3,1014,1017],[1051,1,1,1017,1018],[1052,1,1,1018,1019],[1054,4,4,1019,1023],[1055,9,8,1023,1031],[1056,7,6,1031,1037],[1057,2,2,1037,1039],[1059,1,1,1039,1040],[1060,3,3,1040,1043]]],[45,22,21,1043,1064,[[1062,3,2,1043,1045],[1064,1,1,1045,1046],[1067,1,1,1046,1047],[1068,4,4,1047,1051],[1069,1,1,1051,1052],[1070,2,2,1052,1054],[1071,2,2,1054,1056],[1072,1,1,1056,1057],[1073,1,1,1057,1058],[1075,3,3,1058,1061],[1076,3,3,1061,1064]]],[46,11,10,1064,1074,[[1083,4,4,1064,1068],[1084,1,1,1068,1069],[1085,1,1,1069,1070],[1086,2,2,1070,1072],[1088,3,2,1072,1074]]],[47,9,9,1074,1083,[[1091,1,1,1074,1075],[1093,3,3,1075,1078],[1094,3,3,1078,1081],[1095,2,2,1081,1083]]],[48,7,6,1083,1089,[[1098,2,1,1083,1084],[1100,2,2,1084,1086],[1101,3,3,1086,1089]]],[49,3,2,1089,1091,[[1105,2,1,1089,1090],[1106,1,1,1090,1091]]],[50,2,2,1091,1093,[[1108,1,1,1091,1092],[1110,1,1,1092,1093]]],[51,2,2,1093,1095,[[1114,1,1,1093,1094],[1115,1,1,1094,1095]]],[52,2,2,1095,1097,[[1117,2,2,1095,1097]]],[53,4,4,1097,1101,[[1119,1,1,1097,1098],[1120,1,1,1098,1099],[1122,1,1,1099,1100],[1123,1,1,1100,1101]]],[54,2,2,1101,1103,[[1126,2,2,1101,1103]]],[55,1,1,1103,1104,[[1130,1,1,1103,1104]]],[56,2,2,1104,1106,[[1132,2,2,1104,1106]]],[57,33,32,1106,1138,[[1133,2,2,1106,1108],[1134,2,2,1108,1110],[1135,2,2,1110,1112],[1136,1,1,1112,1113],[1137,2,2,1113,1115],[1138,1,1,1115,1116],[1139,3,3,1116,1119],[1140,7,6,1119,1125],[1141,4,4,1125,1129],[1142,4,4,1129,1133],[1143,3,3,1133,1136],[1144,1,1,1136,1137],[1145,1,1,1137,1138]]],[58,7,7,1138,1145,[[1146,1,1,1138,1139],[1147,2,2,1139,1141],[1149,4,4,1141,1145]]],[60,1,1,1145,1146,[[1158,1,1,1145,1146]]],[61,4,4,1146,1150,[[1160,3,3,1146,1149],[1163,1,1,1149,1150]]],[62,2,2,1150,1152,[[1164,2,2,1150,1152]]],[64,2,2,1152,1154,[[1166,2,2,1152,1154]]],[65,93,89,1154,1243,[[1167,3,3,1154,1157],[1168,12,11,1157,1168],[1169,8,8,1168,1176],[1170,3,3,1176,1179],[1171,5,5,1179,1184],[1172,7,7,1184,1191],[1173,4,4,1191,1195],[1174,2,2,1195,1197],[1175,1,1,1197,1198],[1176,5,4,1198,1202],[1177,4,4,1202,1206],[1178,1,1,1206,1207],[1179,2,2,1207,1209],[1180,6,5,1209,1214],[1181,1,1,1214,1215],[1182,4,4,1215,1219],[1183,2,2,1219,1221],[1184,8,8,1221,1229],[1185,8,7,1229,1236],[1187,3,3,1236,1239],[1188,4,4,1239,1243]]]],[23160,23164,23166,23171,23182,23184,23186,23189,23192,23194,23195,23201,23206,23209,23215,23218,23219,23223,23226,23227,23228,23236,23252,23254,23256,23260,23262,23266,23268,23273,23278,23284,23287,23298,23307,23311,23313,23337,23347,23348,23349,23351,23352,23354,23355,23356,23362,23365,23370,23371,23372,23374,23376,23385,23388,23393,23397,23400,23403,23406,23407,23408,23409,23412,23413,23416,23419,23422,23424,23432,23440,23444,23459,23466,23468,23470,23476,23477,23478,23481,23483,23495,23499,23502,23506,23512,23520,23525,23527,23533,23542,23553,23556,23563,23570,23574,23575,23590,23593,23594,23601,23612,23614,23623,23624,23627,23628,23630,23634,23637,23638,23640,23655,23656,23658,23666,23667,23674,23679,23685,23687,23690,23694,23700,23705,23709,23710,23712,23714,23720,23725,23726,23728,23730,23737,23740,23745,23746,23749,23753,23755,23756,23759,23765,23769,23770,23771,23772,23779,23780,23782,23785,23786,23787,23790,23798,23799,23804,23813,23814,23815,23822,23823,23825,23828,23830,23835,23836,23837,23839,23841,23842,23845,23846,23847,23849,23851,23853,23857,23863,23867,23868,23869,23871,23873,23876,23880,23884,23888,23892,23893,23895,23896,23903,23907,23914,23915,23920,23921,23934,23948,23954,23957,23959,23960,23962,23991,24004,24017,24019,24020,24028,24045,24048,24052,24053,24057,24059,24062,24067,24068,24071,24072,24075,24076,24079,24081,24083,24085,24088,24089,24090,24092,24093,24094,24096,24099,24102,24106,24118,24119,24122,24123,24124,24125,24133,24138,24140,24142,24145,24146,24148,24151,24152,24153,24158,24162,24169,24170,24175,24176,24178,24183,24192,24204,24205,24208,24213,24222,24230,24239,24240,24242,24245,24252,24253,24255,24256,24259,24265,24270,24271,24272,24274,24276,24277,24278,24284,24285,24287,24291,24292,24293,24299,24309,24310,24311,24316,24318,24321,24322,24325,24332,24334,24336,24344,24347,24349,24353,24358,24361,24364,24372,24373,24376,24383,24387,24392,24394,24395,24399,24400,24403,24405,24409,24411,24417,24418,24421,24422,24425,24432,24442,24444,24445,24457,24472,24474,24477,24481,24483,24491,24497,24500,24501,24512,24515,24516,24517,24519,24521,24524,24526,24527,24529,24530,24533,24539,24543,24545,24549,24551,24557,24562,24563,24564,24569,24573,24576,24579,24599,24603,24606,24611,24612,24614,24615,24616,24617,24620,24623,24630,24635,24637,24639,24642,24645,24649,24657,24661,24662,24663,24664,24668,24671,24673,24674,24679,24687,24689,24691,24699,24708,24710,24711,24716,24718,24722,24723,24747,24754,24756,24758,24763,24766,24767,24768,24772,24773,24779,24781,24784,24785,24786,24788,24790,24791,24795,24798,24799,24811,24812,24814,24815,24817,24819,24821,24822,24823,24824,24825,24828,24830,24833,24835,24838,24840,24854,24855,24857,24860,24861,24862,24876,24879,24917,24956,24959,24960,24986,25029,25032,25033,25035,25036,25039,25041,25047,25067,25084,25085,25087,25088,25097,25098,25099,25104,25115,25119,25128,25131,25133,25137,25143,25146,25151,25166,25173,25188,25192,25199,25201,25203,25204,25209,25211,25214,25215,25219,25221,25223,25227,25228,25229,25234,25242,25244,25253,25254,25265,25269,25270,25275,25283,25290,25294,25295,25299,25308,25319,25321,25324,25328,25332,25334,25335,25336,25339,25365,25368,25372,25375,25380,25387,25388,25407,25413,25414,25423,25429,25432,25434,25450,25456,25458,25460,25463,25464,25467,25475,25476,25481,25486,25496,25500,25503,25510,25513,25514,25518,25521,25523,25524,25526,25532,25535,25536,25542,25543,25544,25545,25549,25553,25556,25560,25565,25577,25583,25590,25591,25594,25595,25597,25598,25621,25625,25627,25629,25649,25655,25657,25661,25664,25685,25688,25689,25690,25691,25694,25696,25701,25702,25705,25706,25707,25717,25722,25726,25729,25738,25745,25747,25749,25751,25753,25757,25769,25771,25773,25777,25781,25784,25787,25788,25793,25800,25807,25816,25820,25821,25829,25831,25833,25834,25836,25858,25865,25875,25880,25882,25883,25884,25898,25901,25906,25911,25921,25923,25924,25928,25929,25930,25934,25937,25938,25940,25953,25956,25965,25969,25970,25972,25974,25975,25977,25978,25982,25998,26001,26014,26020,26025,26027,26059,26065,26066,26070,26073,26076,26080,26082,26083,26085,26087,26089,26090,26091,26092,26093,26095,26098,26099,26100,26102,26103,26105,26116,26117,26123,26124,26125,26131,26161,26163,26165,26166,26167,26171,26172,26173,26175,26176,26177,26181,26182,26184,26187,26189,26190,26191,26198,26205,26206,26207,26216,26218,26220,26228,26229,26234,26235,26244,26262,26263,26265,26269,26271,26277,26283,26289,26299,26304,26309,26310,26322,26328,26334,26339,26340,26343,26353,26354,26356,26359,26365,26368,26369,26378,26385,26386,26387,26393,26400,26403,26406,26407,26408,26412,26414,26415,26420,26426,26427,26429,26432,26433,26435,26439,26442,26448,26449,26450,26451,26452,26456,26457,26459,26481,26482,26488,26501,26502,26505,26514,26517,26522,26526,26530,26531,26534,26536,26539,26546,26547,26550,26554,26555,26557,26559,26562,26563,26567,26570,26577,26579,26584,26601,26602,26603,26604,26609,26613,26614,26636,26638,26639,26640,26643,26646,26648,26649,26650,26651,26652,26654,26655,26657,26659,26661,26663,26666,26667,26668,26673,26674,26676,26677,26680,26690,26714,26733,26738,26743,26744,26746,26749,26752,26755,26790,26802,26811,26819,26822,26823,26825,26828,26829,26830,26831,26834,26835,26837,26838,26839,26840,26842,26846,26849,26851,26852,26853,26860,26862,26869,26880,26882,26883,26884,26886,26889,26891,26892,26894,26896,26900,26901,26903,26905,26908,26910,26913,26914,26915,26916,26917,26919,26920,26926,26929,26956,26961,26962,26966,26974,26983,26989,26998,27021,27038,27054,27082,27084,27087,27095,27097,27110,27112,27114,27115,27164,27165,27175,27182,27185,27186,27195,27202,27210,27220,27237,27252,27285,27287,27310,27311,27314,27323,27325,27344,27345,27352,27377,27387,27397,27407,27425,27429,27432,27447,27455,27459,27466,27492,27498,27500,27511,27518,27530,27541,27542,27544,27570,27589,27598,27611,27613,27649,27668,27675,27685,27687,27701,27704,27711,27722,27726,27730,27731,27742,27743,27746,27764,27771,27779,27783,27810,27816,27824,27837,27845,27854,27865,27866,27879,27888,27903,27905,27916,27923,27925,27984,27996,27999,28010,28025,28028,28031,28087,28098,28156,28170,28172,28180,28194,28196,28199,28204,28206,28207,28208,28209,28210,28211,28213,28218,28220,28222,28248,28264,28291,28311,28313,28315,28373,28375,28414,28472,28493,28495,28499,28522,28532,28548,28550,28582,28596,28625,28637,28694,28699,28712,28730,28752,28769,28900,28911,28915,28916,28919,28940,28959,28960,29005,29010,29066,29117,29118,29119,29132,29152,29161,29164,29178,29240,29280,29289,29316,29318,29336,29439,29453,29498,29553,29618,29624,29665,29666,29703,29723,29748,29781,29834,29845,29916,29957,29959,29969,29970,29983,29989,30002,30010,30021,30036,30041,30058,30075,30077,30085,30093,30100,30101,30102,30103,30105,30107,30108,30110,30125,30138,30141,30149,30163,30186,30196,30204,30238,30247,30279,30307,30316,30342,30343,30350,30352,30526,30554,30556,30559,30640,30655,30656,30686,30690,30705,30708,30714,30718,30724,30725,30726,30728,30729,30734,30735,30737,30741,30746,30747,30752,30753,30755,30759,30760,30763,30768,30769,30776,30778,30784,30788,30791,30792,30793,30794,30796,30798,30799,30800,30803,30809,30813,30820,30822,30823,30838,30840,30854,30865,30869,30870,30872,30873,30884,30887,30889,30901,30912,30922,30933,30934,30935,30939,30944,30949,30955,30959,30961,30971,30976,30990,30995,30997,31000,31003,31009,31011,31012,31014,31018,31021,31022,31023,31026,31027,31034,31056,31058,31062,31089,31090,31097,31100]]],["+",[11,11,[[39,2,2,0,2,[[940,1,1,0,1],[944,1,1,1,2]]],[40,2,2,2,4,[[963,1,1,2,3],[970,1,1,3,4]]],[41,2,2,4,6,[[986,1,1,4,5],[989,1,1,5,6]]],[42,2,2,6,8,[[1011,1,1,6,7],[1016,1,1,7,8]]],[43,2,2,8,10,[[1032,1,1,8,9],[1034,1,1,9,10]]],[58,1,1,10,11,[[1147,1,1,10,11]]]],[23499,23690,24483,24814,25556,25657,26714,26883,27459,27541,30316]]],["Say",[3,3,[[42,3,3,0,3,[[1000,1,1,0,1],[1004,1,1,1,2],[1006,1,1,2,3]]]],[26191,26429,26517]]],["Sayest",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26819]]],["Saying",[41,41,[[39,11,11,0,11,[[930,2,2,0,2],[948,1,1,2,3],[949,1,1,3,4],[950,2,2,4,6],[951,1,1,6,7],[954,1,1,7,8],[955,2,2,8,10],[956,1,1,10,11]]],[40,1,1,11,12,[[957,1,1,11,12]]],[41,11,11,12,23,[[976,1,1,12,13],[986,1,1,13,14],[990,2,2,14,16],[991,3,3,16,19],[992,1,1,19,20],[994,1,1,20,21],[996,2,2,21,23]]],[43,8,8,23,31,[[1021,1,1,23,24],[1022,2,2,24,26],[1025,1,1,26,27],[1028,1,1,27,28],[1035,1,1,28,29],[1044,1,1,29,30],[1045,1,1,30,31]]],[57,3,3,31,34,[[1134,1,1,31,32],[1138,1,1,32,33],[1141,1,1,33,34]]],[65,7,7,34,41,[[1167,1,1,34,35],[1171,1,1,35,36],[1173,2,2,36,38],[1175,1,1,38,39],[1177,1,1,39,40],[1180,1,1,40,41]]]],[23171,23189,23804,23828,23896,23914,23920,24122,24133,24192,24208,24239,25097,25583,25690,25729,25769,25773,25777,25807,25906,25998,26025,27038,27082,27087,27195,27310,27570,27879,27925,29989,30058,30125,30708,30791,30813,30822,30854,30889,30933]]],["Tell",[2,2,[[43,1,1,0,1,[[1039,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]]],[27731,29152]]],["asked",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27816]]],["bid",[1,1,[[62,1,1,0,1,[[1164,1,1,0,1]]]],[30655]]],["biddeth",[1,1,[[62,1,1,0,1,[[1164,1,1,0,1]]]],[30656]]],["boasting",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27095]]],["call",[3,3,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,2,2,1,3,[[1027,1,1,1,2],[1041,1,1,2,3]]]],[24838,27287,27783]]],["called",[37,35,[[39,12,12,0,12,[[929,1,1,0,1],[930,1,1,1,2],[932,1,1,2,3],[938,1,1,3,4],[941,1,1,4,5],[954,3,3,5,8],[955,4,4,8,12]]],[41,2,2,12,14,[[994,2,2,12,14]]],[42,10,9,14,23,[[1000,2,2,14,16],[1005,1,1,16,17],[1007,2,2,17,19],[1015,3,2,19,21],[1016,1,1,21,22],[1017,1,1,22,23]]],[43,3,3,23,26,[[1020,1,1,23,24],[1023,1,1,24,25],[1026,1,1,25,26]]],[45,1,1,26,27,[[1069,1,1,26,27]]],[48,2,1,27,28,[[1098,2,1,27,28]]],[50,1,1,28,29,[[1110,1,1,28,29]]],[52,1,1,29,30,[[1117,1,1,29,30]]],[57,4,4,30,34,[[1139,1,1,30,31],[1141,2,2,31,33],[1143,1,1,33,34]]],[65,1,1,34,35,[[1174,1,1,34,35]]]],[23160,23192,23227,23419,23594,24057,24068,24090,24145,24146,24151,24162,25865,25911,26161,26181,26451,26539,26577,26838,26842,26891,26900,26998,27110,27252,28532,29240,29553,29665,30075,30107,30108,30196,30838]]],["callest",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]]],[23779,24606,25707]]],["calleth",[4,4,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[992,1,1,1,2]]],[45,1,1,2,3,[[1073,1,1,2,3]]],[65,1,1,3,4,[[1168,1,1,3,4]]]],[24710,25816,28637,30737]]],["describeth",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28028]]],["forth",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25560]]],["named",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[23388,24833]]],["on",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27377]]],["out",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27185]]],["said",[199,192,[[39,25,25,0,25,[[937,4,4,0,4],[940,1,1,4,5],[941,1,1,5,6],[942,2,2,6,8],[945,1,1,8,9],[946,1,1,9,10],[949,4,4,10,14],[950,1,1,14,15],[954,5,5,15,20],[955,4,4,20,24],[956,1,1,24,25]]],[40,62,61,25,86,[[957,2,2,25,27],[958,6,6,27,33],[959,5,5,33,38],[960,9,9,38,47],[961,6,6,47,53],[962,7,6,53,59],[963,3,3,59,62],[964,2,2,62,64],[965,5,5,64,69],[966,1,1,69,70],[967,2,2,70,72],[968,2,2,72,74],[970,8,8,74,82],[971,3,3,82,85],[972,1,1,85,86]]],[41,28,28,86,114,[[975,2,2,86,88],[976,1,1,88,89],[978,2,2,89,91],[980,2,2,91,93],[981,3,3,93,96],[982,1,1,96,97],[983,2,2,97,99],[984,1,1,99,100],[985,4,4,100,104],[986,1,1,104,105],[988,3,3,105,108],[989,2,2,108,110],[993,1,1,110,111],[995,2,2,111,113],[996,1,1,113,114]]],[42,54,49,114,163,[[998,1,1,114,115],[1000,3,3,115,118],[1001,2,2,118,120],[1002,5,5,120,125],[1003,9,7,125,132],[1004,5,5,132,137],[1005,7,5,137,142],[1006,5,5,142,147],[1007,4,4,147,151],[1008,3,2,151,153],[1009,5,5,153,158],[1012,2,2,158,160],[1015,2,2,160,162],[1016,1,1,162,163]]],[43,16,16,163,179,[[1019,1,1,163,164],[1021,1,1,164,165],[1023,2,2,165,167],[1026,1,1,167,168],[1028,1,1,168,169],[1029,1,1,169,170],[1030,1,1,170,171],[1034,1,1,171,172],[1038,2,2,172,174],[1039,1,1,174,175],[1044,1,1,175,176],[1045,3,3,176,179]]],[44,1,1,179,180,[[1052,1,1,179,180]]],[46,1,1,180,181,[[1086,1,1,180,181]]],[57,3,3,181,184,[[1135,1,1,181,182],[1139,1,1,182,183],[1142,1,1,183,184]]],[65,9,8,184,192,[[1170,1,1,184,185],[1171,1,1,185,186],[1172,1,1,186,187],[1176,4,3,187,190],[1185,1,1,190,191],[1187,1,1,191,192]]]],[23400,23403,23407,23413,23512,23593,23601,23628,23705,23759,23837,23839,23845,23849,23873,24059,24079,24089,24106,24125,24142,24170,24176,24178,24205,24252,24253,24265,24274,24276,24284,24285,24287,24309,24310,24311,24318,24322,24325,24332,24334,24336,24344,24347,24349,24353,24364,24372,24392,24394,24395,24399,24405,24411,24417,24421,24422,24425,24442,24472,24477,24491,24521,24524,24539,24543,24562,24564,24569,24639,24645,24673,24708,24711,24756,24758,24766,24785,24790,24815,24821,24824,24840,24857,24861,24876,25032,25047,25085,25151,25166,25253,25265,25308,25324,25334,25365,25450,25458,25513,25526,25532,25535,25536,25565,25621,25625,25627,25664,25688,25836,25969,25977,26014,26117,26173,26189,26198,26220,26228,26263,26269,26271,26299,26322,26334,26339,26340,26353,26359,26368,26369,26387,26400,26403,26406,26412,26448,26449,26450,26452,26456,26501,26502,26505,26517,26522,26557,26559,26562,26570,26609,26613,26657,26659,26661,26666,26667,26744,26755,26828,26846,26892,26962,27054,27112,27114,27237,27323,27352,27387,27541,27668,27701,27726,27865,27903,27905,27916,28098,28959,30010,30085,30141,30769,30793,30809,30869,30870,30872,31027,31058]]],["saith",[292,279,[[39,45,45,0,45,[[932,4,4,0,4],[935,1,1,4,5],[936,4,4,5,9],[937,4,4,9,13],[940,2,2,13,15],[941,2,2,15,17],[943,1,1,17,18],[944,1,1,18,19],[945,2,2,19,21],[946,1,1,21,22],[947,3,3,22,25],[948,4,4,25,29],[949,3,3,29,32],[950,5,5,32,37],[954,7,7,37,44],[955,1,1,44,45]]],[40,47,46,45,91,[[957,2,2,45,47],[958,2,2,47,49],[959,3,3,49,52],[960,1,1,52,53],[961,3,3,53,56],[962,2,2,56,58],[963,2,2,58,60],[964,5,4,60,64],[965,2,2,64,66],[966,5,5,66,71],[967,5,5,71,76],[968,2,2,76,78],[969,1,1,78,79],[970,10,10,79,89],[971,1,1,89,90],[972,1,1,90,91]]],[41,9,9,91,100,[[975,1,1,91,92],[977,1,1,92,93],[983,1,1,93,94],[988,1,1,94,95],[990,1,1,95,96],[991,1,1,96,97],[992,1,1,97,98],[994,1,1,98,99],[996,1,1,99,100]]],[42,111,101,100,201,[[997,13,13,100,113],[998,7,6,113,119],[999,1,1,119,120],[1000,14,14,120,134],[1001,2,2,134,136],[1002,4,4,136,140],[1003,1,1,140,141],[1004,2,2,141,143],[1007,8,8,143,151],[1008,1,1,151,152],[1009,5,5,152,157],[1010,5,5,157,162],[1012,2,2,162,164],[1014,6,4,164,168],[1015,13,13,168,181],[1016,11,9,181,190],[1017,16,11,190,201]]],[43,7,7,201,208,[[1019,2,2,201,203],[1024,2,2,203,205],[1029,1,1,205,206],[1030,1,1,206,207],[1038,1,1,207,208]]],[44,18,18,208,226,[[1048,1,1,208,209],[1049,1,1,209,210],[1054,3,3,210,213],[1055,6,6,213,219],[1056,3,3,219,222],[1057,1,1,222,223],[1059,1,1,223,224],[1060,2,2,224,226]]],[45,6,6,226,232,[[1062,1,1,226,227],[1064,1,1,227,228],[1070,2,2,228,230],[1075,2,2,230,232]]],[46,3,3,232,235,[[1083,3,3,232,235]]],[47,2,2,235,237,[[1093,1,1,235,236],[1094,1,1,236,237]]],[48,2,2,237,239,[[1100,1,1,237,238],[1101,1,1,238,239]]],[53,1,1,239,240,[[1123,1,1,239,240]]],[57,12,11,240,251,[[1133,2,2,240,242],[1135,1,1,242,243],[1137,1,1,243,244],[1140,5,4,244,248],[1142,3,3,248,251]]],[58,2,2,251,253,[[1149,2,2,251,253]]],[61,3,3,253,256,[[1160,3,3,253,256]]],[65,24,23,256,279,[[1167,1,1,256,257],[1168,8,8,257,265],[1169,6,6,265,271],[1171,1,1,271,272],[1180,1,1,272,273],[1183,1,1,273,274],[1184,1,1,274,275],[1185,2,1,275,276],[1188,3,3,276,279]]]],[23215,23218,23219,23228,23337,23349,23352,23365,23371,23385,23388,23407,23416,23502,23533,23553,23590,23667,23687,23725,23726,23749,23770,23780,23782,23798,23799,23813,23815,23842,23857,23868,23880,23884,23892,23893,23915,24072,24085,24090,24092,24094,24099,24118,24151,24256,24259,24270,24277,24291,24292,24293,24358,24383,24400,24403,24445,24457,24481,24497,24501,24512,24517,24529,24557,24573,24599,24611,24612,24615,24630,24642,24661,24662,24663,24673,24689,24716,24718,24767,24768,24781,24784,24786,24788,24791,24795,24799,24817,24854,24879,25036,25146,25429,25649,25694,25753,25821,25875,26027,26065,26073,26080,26082,26083,26085,26087,26089,26090,26091,26092,26093,26095,26098,26099,26100,26102,26103,26105,26124,26163,26165,26166,26167,26171,26172,26175,26177,26181,26182,26184,26190,26205,26206,26216,26218,26262,26265,26277,26299,26378,26403,26420,26530,26534,26546,26547,26550,26562,26563,26567,26584,26636,26638,26639,26640,26655,26673,26674,26676,26677,26690,26743,26744,26790,26802,26811,26823,26829,26830,26831,26834,26835,26839,26840,26849,26851,26852,26853,26860,26862,26869,26880,26882,26883,26884,26886,26889,26894,26896,26901,26903,26905,26908,26910,26913,26914,26915,26917,26919,26920,26966,26983,27164,27165,27345,27397,27675,28010,28025,28170,28172,28180,28196,28199,28204,28207,28208,28209,28211,28213,28218,28264,28291,28313,28315,28375,28414,28548,28550,28699,28712,28900,28915,28916,29118,29161,29280,29318,29781,29969,29970,30002,30036,30100,30101,30102,30105,30138,30149,30163,30342,30343,30554,30556,30559,30705,30718,30724,30725,30728,30729,30734,30735,30746,30747,30752,30753,30759,30760,30768,30784,30939,30990,31000,31026,31089,31090,31100]]],["say",[281,277,[[39,88,86,0,86,[[931,2,1,0,1],[932,1,1,1,2],[933,9,9,2,11],[934,5,5,11,16],[936,3,3,16,19],[938,3,3,19,22],[939,7,7,22,29],[940,3,3,29,32],[941,2,2,32,34],[942,1,1,34,35],[943,2,2,35,37],[944,4,4,37,41],[945,3,3,41,44],[946,6,6,44,50],[947,6,6,50,56],[948,3,3,56,59],[949,6,5,59,64],[950,3,3,64,67],[951,5,5,67,72],[952,3,3,72,75],[953,3,3,75,78],[954,6,6,78,84],[955,2,2,84,86]]],[40,40,39,86,125,[[958,2,2,86,88],[959,1,1,88,89],[960,1,1,89,90],[961,1,1,90,91],[962,3,3,91,94],[963,1,1,94,95],[964,4,4,95,99],[965,4,4,99,103],[966,4,4,103,107],[967,3,3,107,110],[968,4,4,110,114],[969,4,3,114,117],[970,8,8,117,125]]],[41,58,57,125,182,[[975,2,1,125,126],[976,2,2,126,128],[977,1,1,128,129],[978,3,3,129,132],[979,9,9,132,141],[981,2,2,141,143],[982,3,3,143,146],[983,6,6,146,152],[984,10,10,152,162],[985,3,3,162,165],[986,1,1,165,166],[987,2,2,166,168],[988,1,1,168,169],[989,1,1,169,170],[990,2,2,170,172],[991,1,1,172,173],[992,1,1,173,174],[993,2,2,174,176],[994,4,4,176,180],[995,2,2,180,182]]],[42,43,43,182,225,[[997,2,2,182,184],[999,3,3,184,187],[1000,2,2,187,189],[1001,4,4,189,193],[1002,4,4,193,197],[1003,1,1,197,198],[1004,6,6,198,204],[1005,3,3,204,207],[1006,2,2,207,209],[1007,1,1,209,210],[1008,1,1,210,211],[1009,6,6,211,217],[1010,1,1,217,218],[1012,4,4,218,222],[1016,1,1,222,223],[1017,2,2,223,225]]],[43,5,5,225,230,[[1022,1,1,225,226],[1023,1,1,226,227],[1038,1,1,227,228],[1040,2,2,228,230]]],[44,9,9,230,239,[[1048,1,1,230,231],[1049,1,1,231,232],[1054,1,1,232,233],[1055,2,2,233,235],[1056,2,2,235,237],[1057,1,1,237,238],[1060,1,1,238,239]]],[45,4,4,239,243,[[1062,1,1,239,240],[1068,1,1,240,241],[1071,1,1,241,242],[1076,1,1,242,243]]],[46,2,2,243,245,[[1086,1,1,243,244],[1088,1,1,244,245]]],[47,5,5,245,250,[[1091,1,1,245,246],[1093,1,1,246,247],[1094,1,1,247,248],[1095,2,2,248,250]]],[48,1,1,250,251,[[1100,1,1,250,251]]],[50,1,1,251,252,[[1108,1,1,251,252]]],[51,2,2,252,254,[[1114,1,1,252,253],[1115,1,1,253,254]]],[53,1,1,254,255,[[1119,1,1,254,255]]],[54,1,1,255,256,[[1126,1,1,255,256]]],[55,1,1,256,257,[[1130,1,1,256,257]]],[56,2,2,257,259,[[1132,2,2,257,259]]],[57,3,3,259,262,[[1143,2,2,259,261],[1145,1,1,261,262]]],[58,4,4,262,266,[[1146,1,1,262,263],[1147,1,1,263,264],[1149,2,2,264,266]]],[61,1,1,266,267,[[1163,1,1,266,267]]],[65,10,10,267,277,[[1168,2,2,267,269],[1169,1,1,269,270],[1172,4,4,270,274],[1182,2,2,274,276],[1188,1,1,276,277]]]],[23201,23226,23252,23254,23256,23260,23262,23266,23268,23273,23278,23284,23287,23298,23307,23311,23354,23355,23356,23432,23440,23459,23466,23468,23470,23477,23478,23481,23483,23495,23520,23525,23556,23590,23614,23638,23666,23674,23685,23687,23700,23710,23712,23720,23730,23737,23740,23745,23746,23749,23769,23771,23772,23785,23786,23790,23799,23814,23825,23842,23847,23857,23867,23869,23893,23895,23914,23921,23934,23948,23954,23957,23959,23991,24004,24020,24048,24053,24067,24075,24076,24083,24088,24118,24151,24162,24271,24278,24316,24361,24405,24418,24444,24445,24474,24512,24519,24527,24529,24539,24549,24551,24579,24603,24616,24617,24635,24663,24664,24668,24687,24691,24708,24716,24722,24747,24754,24763,24772,24773,24779,24784,24812,24819,24823,25033,25084,25087,25131,25173,25188,25192,25203,25204,25209,25221,25223,25228,25229,25242,25244,25319,25321,25368,25372,25375,25407,25413,25414,25423,25434,25456,25460,25463,25464,25467,25481,25486,25496,25503,25513,25514,25542,25544,25553,25577,25595,25598,25629,25661,25705,25717,25757,25820,25829,25858,25880,25882,25901,25934,25965,25978,26082,26095,26123,26125,26131,26176,26191,26229,26234,26235,26244,26283,26289,26304,26310,26354,26385,26415,26427,26432,26435,26439,26457,26459,26481,26482,26488,26531,26604,26643,26646,26650,26651,26663,26668,26680,26738,26746,26749,26752,26880,26901,26916,27097,27115,27687,27742,27764,27999,28031,28156,28206,28207,28210,28220,28248,28311,28375,28495,28596,28730,28960,29005,29066,29119,29132,29164,29178,29289,29498,29618,29624,29703,29834,29916,29957,29959,30186,30204,30247,30279,30307,30350,30352,30640,30726,30741,30755,30796,30798,30799,30800,30959,30961,31097]]],["sayest",[20,20,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,3,3,2,5,[[961,1,1,2,3],[970,1,1,3,4],[971,1,1,4,5]]],[41,4,4,5,9,[[980,1,1,5,6],[992,1,1,6,7],[994,1,1,7,8],[995,1,1,8,9]]],[42,8,8,9,17,[[997,1,1,9,10],[1004,3,3,10,13],[1005,1,1,13,14],[1008,1,1,14,15],[1010,1,1,15,16],[1014,1,1,16,17]]],[44,1,1,17,18,[[1047,1,1,17,18]]],[45,1,1,18,19,[[1075,1,1,18,19]]],[65,1,1,19,20,[[1169,1,1,19,20]]]],[24124,24140,24395,24822,24828,25290,25800,25924,25938,26066,26386,26414,26433,26457,26614,26677,26822,27984,28694,30763]]],["saying",[341,340,[[39,102,102,0,102,[[929,2,2,0,2],[930,3,3,2,5],[931,4,4,5,9],[932,1,1,9,10],[933,1,1,10,11],[934,1,1,11,12],[936,8,8,12,20],[937,6,6,20,26],[938,2,2,26,28],[939,1,1,28,29],[940,2,2,29,31],[941,5,5,31,36],[942,5,5,36,41],[943,6,6,41,47],[944,3,3,47,50],[945,4,4,50,54],[946,4,4,54,58],[947,2,2,58,60],[948,2,2,60,62],[949,7,7,62,69],[950,5,5,69,74],[952,2,2,74,76],[953,6,6,76,82],[954,9,9,82,91],[955,9,9,91,100],[956,2,2,100,102]]],[40,41,41,102,143,[[957,5,5,102,107],[958,1,1,107,108],[959,2,2,108,110],[961,3,3,110,113],[962,2,2,113,115],[963,1,1,115,116],[964,5,5,116,121],[965,4,4,121,125],[966,3,3,125,128],[967,3,3,128,131],[968,3,3,131,134],[969,1,1,134,135],[970,3,3,135,138],[971,5,5,138,143]]],[41,83,82,143,225,[[973,4,4,143,147],[974,1,1,147,148],[975,4,4,148,152],[976,4,4,152,156],[977,5,5,156,161],[979,7,7,161,168],[980,8,8,168,176],[981,3,3,176,179],[982,2,2,179,181],[983,1,1,181,182],[984,2,2,182,184],[985,2,2,184,186],[986,1,1,186,187],[987,4,4,187,191],[989,1,1,191,192],[990,4,4,192,196],[991,5,5,196,201],[992,4,4,201,205],[993,2,2,205,207],[994,6,6,207,213],[995,11,10,213,223],[996,2,2,223,225]]],[42,21,21,225,246,[[997,3,3,225,228],[1000,2,2,228,230],[1002,1,1,230,231],[1003,3,3,231,234],[1004,1,1,234,235],[1005,2,2,235,237],[1006,1,1,237,238],[1007,3,3,238,241],[1008,2,2,241,243],[1014,1,1,243,244],[1015,2,2,244,246]]],[43,46,46,246,292,[[1018,1,1,246,247],[1019,3,3,247,250],[1020,1,1,250,251],[1022,1,1,251,252],[1024,1,1,252,253],[1025,2,2,253,255],[1026,1,1,255,256],[1027,1,1,256,257],[1028,3,3,257,260],[1029,1,1,260,261],[1030,1,1,261,262],[1031,2,2,262,264],[1032,3,3,264,267],[1033,5,5,267,272],[1034,2,2,272,274],[1036,4,4,274,278],[1037,1,1,278,279],[1038,2,2,279,281],[1039,3,3,281,284],[1040,2,2,284,286],[1041,1,1,286,287],[1042,1,1,287,288],[1043,3,3,288,291],[1044,1,1,291,292]]],[44,1,1,292,293,[[1056,1,1,292,293]]],[45,1,1,293,294,[[1072,1,1,293,294]]],[54,1,1,294,295,[[1126,1,1,294,295]]],[57,4,4,295,299,[[1134,1,1,295,296],[1136,1,1,296,297],[1140,1,1,297,298],[1144,1,1,298,299]]],[60,1,1,299,300,[[1158,1,1,299,300]]],[64,1,1,300,301,[[1166,1,1,300,301]]],[65,39,39,301,340,[[1167,1,1,301,302],[1170,2,2,302,304],[1171,2,2,304,306],[1172,2,2,306,308],[1173,2,2,308,310],[1174,1,1,310,311],[1176,1,1,311,312],[1177,3,3,312,315],[1178,1,1,315,316],[1179,2,2,316,318],[1180,4,4,318,322],[1181,1,1,322,323],[1182,2,2,323,325],[1183,1,1,325,326],[1184,7,7,326,333],[1185,5,5,333,338],[1187,2,2,338,340]]]],[23164,23166,23182,23184,23186,23194,23195,23206,23209,23223,23236,23313,23347,23348,23351,23362,23370,23372,23374,23376,23393,23397,23406,23408,23409,23412,23422,23424,23476,23506,23527,23542,23563,23570,23574,23575,23612,23623,23624,23627,23630,23634,23637,23640,23655,23656,23658,23679,23685,23694,23709,23710,23714,23725,23728,23753,23755,23756,23765,23787,23822,23823,23830,23835,23836,23841,23846,23851,23863,23876,23888,23903,23907,23915,23960,23962,24017,24019,24028,24045,24052,24053,24062,24071,24081,24093,24096,24102,24119,24123,24124,24138,24140,24148,24152,24153,24158,24169,24175,24183,24204,24213,24222,24230,24240,24242,24255,24272,24299,24321,24373,24376,24387,24409,24432,24500,24515,24516,24526,24527,24533,24545,24549,24563,24576,24614,24623,24637,24649,24657,24671,24679,24691,24699,24723,24798,24811,24822,24830,24835,24855,24860,24862,24917,24956,24959,24960,24986,25029,25035,25039,25041,25067,25098,25099,25104,25115,25119,25128,25133,25137,25199,25201,25211,25214,25215,25227,25234,25254,25269,25270,25275,25283,25294,25295,25299,25319,25336,25339,25380,25388,25450,25475,25476,25543,25549,25560,25590,25591,25594,25597,25655,25691,25701,25706,25726,25738,25745,25747,25749,25751,25781,25784,25793,25800,25833,25834,25883,25884,25921,25923,25928,25930,25937,25938,25940,25953,25956,25970,25972,25974,25975,25982,26014,26020,26059,26070,26076,26187,26207,26309,26343,26356,26365,26393,26442,26459,26514,26526,26554,26555,26601,26603,26825,26831,26837,26929,26956,26961,26989,27021,27084,27175,27186,27202,27220,27285,27311,27314,27325,27344,27377,27425,27429,27447,27455,27466,27492,27498,27500,27511,27518,27530,27542,27589,27598,27611,27613,27649,27685,27704,27711,27722,27730,27743,27746,27771,27810,27837,27845,27854,27888,28211,28625,29845,29983,30021,30103,30238,30526,30686,30714,30776,30778,30788,30792,30794,30803,30820,30823,30840,30865,30873,30884,30887,30901,30912,30922,30934,30935,30939,30944,30949,30955,30971,30976,30995,30997,31003,31009,31011,31012,31014,31018,31021,31022,31023,31034,31056,31062]]],["sayings",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27432]]],["shew",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28769]]],["spake",[17,17,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,8,8,2,10,[[977,1,1,2,3],[981,2,2,3,5],[983,1,1,5,6],[985,1,1,6,7],[990,1,1,7,8],[993,1,1,8,9],[994,1,1,9,10]]],[42,6,6,10,16,[[998,1,1,10,11],[1002,1,1,11,12],[1004,1,1,12,13],[1007,1,1,13,14],[1009,2,2,14,16]]],[43,1,1,16,17,[[1025,1,1,16,17]]]],[23871,24785,25143,25332,25335,25432,25524,25689,25831,25929,26116,26328,26408,26579,26652,26654,27182]]],["speak",[30,29,[[40,2,2,0,2,[[968,1,1,0,1],[970,1,1,1,2]]],[41,2,2,2,4,[[979,1,1,2,3],[992,1,1,3,4]]],[42,2,2,4,6,[[1004,1,1,4,5],[1009,1,1,5,6]]],[43,2,2,6,8,[[1041,1,1,6,7],[1043,1,1,7,8]]],[44,3,3,8,11,[[1048,1,1,8,9],[1051,1,1,9,10],[1056,1,1,10,11]]],[45,7,7,11,18,[[1062,1,1,11,12],[1067,1,1,12,13],[1068,3,3,13,16],[1071,1,1,16,17],[1076,1,1,17,18]]],[46,5,4,18,22,[[1083,1,1,18,19],[1084,1,1,19,20],[1085,1,1,20,21],[1088,2,1,21,22]]],[47,1,1,22,23,[[1093,1,1,22,23]]],[48,2,2,23,25,[[1101,2,2,23,25]]],[49,1,1,25,26,[[1106,1,1,25,26]]],[53,1,1,26,27,[[1120,1,1,26,27]]],[57,1,1,27,28,[[1141,1,1,27,28]]],[65,1,1,28,29,[[1168,1,1,28,29]]]],[24674,24825,25219,25788,26407,26648,27779,27824,27996,28087,28222,28373,28472,28493,28499,28522,28582,28752,28911,28919,28940,29010,29117,29316,29336,29453,29723,30110,30741]]],["speakest",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[42,1,1,1,2,[[1012,1,1,1,2]]]],[25500,26755]]],["speaketh",[4,4,[[43,2,2,0,2,[[1019,1,1,0,1],[1025,1,1,1,2]]],[44,1,1,2,3,[[1055,1,1,2,3]]],[53,1,1,3,4,[[1122,1,1,3,4]]]],[26974,27210,28194,29748]]],["speaking",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26926]]],["spoken",[7,7,[[41,1,1,0,1,[[990,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]],[43,3,3,2,5,[[1030,1,1,2,3],[1044,1,1,3,4],[1045,1,1,4,5]]],[57,2,2,5,7,[[1139,1,1,5,6],[1140,1,1,6,7]]]],[25722,26536,27407,27866,27923,30077,30093]]],["tell",[26,26,[[39,2,2,0,2,[[938,1,1,0,1],[949,1,1,1,2]]],[40,4,4,2,6,[[957,1,1,2,3],[964,1,1,3,4],[966,1,1,4,5],[967,1,1,5,6]]],[41,14,14,6,20,[[976,1,1,6,7],[981,1,1,7,8],[982,1,1,8,9],[984,2,2,9,11],[985,3,3,11,14],[989,1,1,14,15],[990,2,2,15,17],[991,1,1,17,18],[992,1,1,18,19],[994,1,1,19,20]]],[42,4,4,20,24,[[1004,1,1,20,21],[1008,1,1,21,22],[1009,1,1,22,23],[1012,1,1,23,24]]],[43,1,1,24,25,[[1034,1,1,24,25]]],[49,1,1,25,26,[[1105,1,1,25,26]]]],[23444,23853,24245,24530,24620,24673,25088,25328,25387,25510,25518,25521,25523,25545,25685,25696,25702,25771,25787,25898,26426,26602,26649,26733,27544,29439]]],["telleth",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26602]]],["told",[4,4,[[41,1,1,0,1,[[996,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[26001,29439,29666,30690]]],["uttered",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30041]]]]},{"k":"G3005","v":[["remnant",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28214]]]]},{"k":"G3006","v":[["smooth",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25030]]]]},{"k":"G3007","v":[["*",[6,6,[[41,1,1,0,1,[[990,1,1,0,1]]],[55,2,2,1,3,[[1129,1,1,1,2],[1131,1,1,2,3]]],[58,3,3,3,6,[[1146,2,2,3,5],[1147,1,1,5,6]]]],[25710,29897,29936,30270,30271,30308]]],["+",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30308]]],["lack",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30271]]],["lackest",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25710]]],["wanting",[3,3,[[55,2,2,0,2,[[1129,1,1,0,1],[1131,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[29897,29936,30270]]]]},{"k":"G3008","v":[["*",[3,3,[[43,1,1,0,1,[[1030,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[27364,28330,30144]]],["minister",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28330]]],["ministered",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27364]]],["ministering",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30144]]]]},{"k":"G3009","v":[["*",[6,6,[[41,1,1,0,1,[[973,1,1,0,1]]],[46,1,1,1,2,[[1086,1,1,1,2]]],[49,2,2,2,4,[[1104,2,2,2,4]]],[57,2,2,4,6,[[1140,1,1,4,5],[1141,1,1,5,6]]]],[24916,28968,29408,29421,30098,30126]]],["ministration",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24916]]],["ministry",[2,2,[[57,2,2,0,2,[[1140,1,1,0,1],[1141,1,1,1,2]]]],[30098,30126]]],["service",[3,3,[[46,1,1,0,1,[[1086,1,1,0,1]]],[49,2,2,1,3,[[1104,2,2,1,3]]]],[28968,29408,29421]]]]},{"k":"G3010","v":[["ministering",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29977]]]]},{"k":"G3011","v":[["*",[5,5,[[44,2,2,0,2,[[1058,1,1,0,1],[1060,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[57,2,2,3,5,[[1133,1,1,3,4],[1140,1,1,4,5]]]],[28272,28319,29416,29970,30094]]],["minister",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[57,1,1,1,2,[[1140,1,1,1,2]]]],[28319,30094]]],["ministered",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29416]]],["ministers",[2,2,[[44,1,1,0,1,[[1058,1,1,0,1]]],[57,1,1,1,2,[[1133,1,1,1,2]]]],[28272,29970]]]]},{"k":"G3012","v":[["towel",[2,2,[[42,2,2,0,2,[[1009,2,2,0,2]]]],[26634,26635]]]]},{"k":"G3013","v":[["scales",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27234]]]]},{"k":"G3014","v":[["leprosy",[4,4,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,2,2,2,4,[[977,2,2,2,4]]]],[23348,24257,25119,25120]]]]},{"k":"G3015","v":[["*",[9,9,[[39,4,4,0,4,[[936,1,1,0,1],[938,1,1,1,2],[939,1,1,2,3],[954,1,1,3,4]]],[40,2,2,4,6,[[957,1,1,4,5],[970,1,1,5,6]]],[41,3,3,6,9,[[976,1,1,6,7],[979,1,1,7,8],[989,1,1,8,9]]]],[23347,23425,23464,24060,24255,24757,25090,25217,25663]]],["leper",[4,4,[[39,2,2,0,2,[[936,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[957,1,1,2,3],[970,1,1,3,4]]]],[23347,24060,24255,24757]]],["lepers",[5,5,[[39,2,2,0,2,[[938,1,1,0,1],[939,1,1,1,2]]],[41,3,3,2,5,[[976,1,1,2,3],[979,1,1,3,4],[989,1,1,4,5]]]],[23425,23464,25090,25217,25663]]]]},{"k":"G3016","v":[["*",[3,3,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[993,1,1,2,3]]]],[24715,25518,25828]]],["mite",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25518]]],["mites",[2,2,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]]],[24715,25828]]]]},{"k":"G3017","v":[["Levi",[5,5,[[41,2,2,0,2,[[975,2,2,0,2]]],[57,2,2,2,4,[[1139,2,2,2,4]]],[65,1,1,4,5,[[1173,1,1,4,5]]]],[25049,25054,30069,30073,30817]]]]},{"k":"G3018","v":[["Levi",[3,3,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,2,2,1,3,[[977,2,2,1,3]]]],[24274,25134,25136]]]]},{"k":"G3019","v":[["*",[3,3,[[41,1,1,0,1,[[982,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]],[43,1,1,2,3,[[1021,1,1,2,3]]]],[25395,26063,27058]]],["Levite",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]]],[25395,27058]]],["Levites",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26063]]]]},{"k":"G3020","v":[["Levitical",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30075]]]]},{"k":"G3021","v":[["*",[2,2,[[40,1,1,0,1,[[965,1,1,0,1]]],[65,1,1,1,2,[[1173,1,1,1,2]]]],[24541,30824]]],["+",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30824]]],["white",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24541]]]]},{"k":"G3022","v":[["*",[25,23,[[39,3,3,0,3,[[933,1,1,0,1],[945,1,1,1,2],[956,1,1,2,3]]],[40,2,2,3,5,[[965,1,1,3,4],[972,1,1,4,5]]],[41,1,1,5,6,[[981,1,1,5,6]]],[42,2,2,6,8,[[1000,1,1,6,7],[1016,1,1,7,8]]],[43,1,1,8,9,[[1018,1,1,8,9]]],[65,16,14,9,23,[[1167,2,1,9,10],[1168,1,1,10,11],[1169,3,3,11,14],[1170,1,1,14,15],[1172,2,2,15,17],[1173,2,2,17,19],[1180,1,1,19,20],[1185,3,2,20,22],[1186,1,1,22,23]]]],[23270,23702,24198,24541,24878,25330,26191,26879,26933,30711,30734,30750,30751,30764,30772,30795,30804,30819,30823,30940,31028,31031,31049]]],["+",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24878]]],["white",[24,22,[[39,3,3,0,3,[[933,1,1,0,1],[945,1,1,1,2],[956,1,1,2,3]]],[40,1,1,3,4,[[965,1,1,3,4]]],[41,1,1,4,5,[[981,1,1,4,5]]],[42,2,2,5,7,[[1000,1,1,5,6],[1016,1,1,6,7]]],[43,1,1,7,8,[[1018,1,1,7,8]]],[65,16,14,8,22,[[1167,2,1,8,9],[1168,1,1,9,10],[1169,3,3,10,13],[1170,1,1,13,14],[1172,2,2,14,16],[1173,2,2,16,18],[1180,1,1,18,19],[1185,3,2,19,21],[1186,1,1,21,22]]]],[23270,23702,24198,24541,25330,26191,26879,26933,30711,30734,30750,30751,30764,30772,30795,30804,30819,30823,30940,31028,31031,31049]]]]},{"k":"G3023","v":[["*",[9,9,[[54,1,1,0,1,[[1128,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]],[59,1,1,2,3,[[1155,1,1,2,3]]],[65,6,6,3,9,[[1170,1,1,3,4],[1171,1,1,4,5],[1175,2,2,5,7],[1176,1,1,7,8],[1179,1,1,8,9]]]],[29887,30205,30473,30775,30784,30848,30857,30864,30910]]],["+",[1,1,[[65,1,1,0,1,[[1171,1,1,0,1]]]],[30784]]],["lion",[5,5,[[54,1,1,0,1,[[1128,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]],[65,3,3,2,5,[[1170,1,1,2,3],[1176,1,1,3,4],[1179,1,1,4,5]]]],[29887,30473,30775,30864,30910]]],["lions",[3,3,[[57,1,1,0,1,[[1143,1,1,0,1]]],[65,2,2,1,3,[[1175,2,2,1,3]]]],[30205,30848,30857]]]]},{"k":"G3024","v":[["+",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30488]]]]},{"k":"G3025","v":[["*",[5,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[65,4,3,1,4,[[1180,3,2,1,3],[1185,1,1,3,4]]]],[23859,30945,30946,31032]]],["+",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31032]]],["winepress",[4,3,[[39,1,1,0,1,[[949,1,1,0,1]]],[65,3,2,1,3,[[1180,3,2,1,3]]]],[23859,30945,30946]]]]},{"k":"G3026","v":[["tales",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26002]]]]},{"k":"G3027","v":[["*",[15,15,[[39,4,4,0,4,[[949,1,1,0,1],[954,1,1,1,2],[955,2,2,2,4]]],[40,3,3,4,7,[[967,1,1,4,5],[970,1,1,5,6],[971,1,1,6,7]]],[41,4,4,7,11,[[982,2,2,7,9],[991,1,1,9,10],[994,1,1,10,11]]],[42,3,3,11,14,[[1006,2,2,11,13],[1014,1,1,13,14]]],[46,1,1,14,15,[[1088,1,1,14,15]]]],[23839,24109,24167,24173,24657,24802,24853,25393,25399,25777,25916,26482,26489,26825,29015]]],["robber",[2,2,[[42,2,2,0,2,[[1006,1,1,0,1],[1014,1,1,1,2]]]],[26482,26825]]],["robbers",[2,2,[[42,1,1,0,1,[[1006,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[26489,29015]]],["thief",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]]],[24109,24802,25916]]],["thieves",[8,8,[[39,3,3,0,3,[[949,1,1,0,1],[955,2,2,1,3]]],[40,2,2,3,5,[[967,1,1,3,4],[971,1,1,4,5]]],[41,3,3,5,8,[[982,2,2,5,7],[991,1,1,7,8]]]],[23839,24167,24173,24657,24853,25393,25399,25777]]]]},{"k":"G3028","v":[["receiving",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29457]]]]},{"k":"G3029","v":[["*",[14,14,[[39,4,4,0,4,[[930,1,1,0,1],[932,1,1,1,2],[936,1,1,2,3],[955,1,1,3,4]]],[40,4,4,4,8,[[957,1,1,4,5],[962,1,1,5,6],[965,1,1,6,7],[972,1,1,7,8]]],[41,1,1,8,9,[[995,1,1,8,9]]],[46,2,2,9,11,[[1088,1,1,9,10],[1089,1,1,10,11]]],[54,1,1,11,12,[[1128,1,1,11,12]]],[62,1,1,12,13,[[1164,1,1,12,13]]],[63,1,1,13,14,[[1165,1,1,13,14]]]],[23185,23217,23373,24143,24250,24458,24541,24875,25943,28994,29033,29885,30649,30661]]],["+",[5,5,[[39,1,1,0,1,[[930,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[46,2,2,3,5,[[1088,1,1,3,4],[1089,1,1,4,5]]]],[23185,24250,25943,28994,29033]]],["exceeding",[3,3,[[39,2,2,0,2,[[932,1,1,0,1],[936,1,1,1,2]]],[40,1,1,2,3,[[965,1,1,2,3]]]],[23217,23373,24541]]],["greatly",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]],[62,1,1,2,3,[[1164,1,1,2,3]]],[63,1,1,3,4,[[1165,1,1,3,4]]]],[24143,29885,30649,30661]]],["sore",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24458]]],["very",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24875]]]]},{"k":"G3030","v":[["frankincense",[2,2,[[39,1,1,0,1,[[930,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[23180,31006]]]]},{"k":"G3031","v":[["censer",[2,2,[[65,2,2,0,2,[[1174,2,2,0,2]]]],[30830,30832]]]]},{"k":"G3032","v":[["Libertines",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27110]]]]},{"k":"G3033","v":[["Libya",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26959]]]]},{"k":"G3034","v":[["*",[8,8,[[42,4,4,0,4,[[1006,3,3,0,3],[1007,1,1,3,4]]],[43,2,2,4,6,[[1022,1,1,4,5],[1031,1,1,5,6]]],[46,1,1,6,7,[[1088,1,1,6,7]]],[57,1,1,7,8,[[1143,1,1,7,8]]]],[26512,26513,26514,26531,27085,27433,29014,30209]]],["stone",[4,4,[[42,4,4,0,4,[[1006,3,3,0,3],[1007,1,1,3,4]]]],[26512,26513,26514,26531]]],["stoned",[4,4,[[43,2,2,0,2,[[1022,1,1,0,1],[1031,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[27085,27433,29014,30209]]]]},{"k":"G3035","v":[["stone",[3,3,[[42,1,1,0,1,[[998,1,1,0,1]]],[46,1,1,1,2,[[1080,1,1,1,2]]],[65,1,1,2,3,[[1175,1,1,2,3]]]],[26101,28844,30860]]]]},{"k":"G3036","v":[["*",[9,9,[[39,2,2,0,2,[[949,1,1,0,1],[951,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[985,1,1,3,4]]],[42,1,1,4,5,[[1004,1,1,4,5]]],[43,3,3,5,8,[[1024,2,2,5,7],[1031,1,1,7,8]]],[57,1,1,8,9,[[1144,1,1,8,9]]]],[23861,23955,24677,25552,26386,27174,27175,27419,30232]]],["stone",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27419]]],["stoned",[5,5,[[39,1,1,0,1,[[949,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]],[43,2,2,2,4,[[1024,2,2,2,4]]],[57,1,1,4,5,[[1144,1,1,4,5]]]],[23861,26386,27174,27175,30232]]],["stones",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24677]]],["stonest",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23955,25552]]]]},{"k":"G3037","v":[["*",[60,55,[[39,11,10,0,10,[[931,1,1,0,1],[932,2,2,1,3],[935,1,1,3,4],[949,2,2,4,6],[952,2,1,6,7],[955,2,2,7,9],[956,1,1,9,10]]],[40,9,8,10,18,[[961,1,1,10,11],[965,1,1,11,12],[968,1,1,12,13],[969,3,2,13,15],[971,1,1,15,16],[972,2,2,16,18]]],[41,14,12,18,30,[[975,1,1,18,19],[976,2,2,19,21],[983,1,1,21,22],[991,3,2,22,24],[992,2,2,24,26],[993,3,2,26,28],[994,1,1,28,29],[996,1,1,29,30]]],[42,7,7,30,37,[[1004,2,2,30,32],[1006,1,1,32,33],[1007,3,3,33,36],[1016,1,1,36,37]]],[43,2,2,37,39,[[1021,1,1,37,38],[1034,1,1,38,39]]],[44,2,2,39,41,[[1054,2,2,39,41]]],[45,1,1,41,42,[[1064,1,1,41,42]]],[46,1,1,42,43,[[1080,1,1,42,43]]],[59,5,5,43,48,[[1152,5,5,43,48]]],[65,8,7,48,55,[[1170,1,1,48,49],[1183,1,1,49,50],[1184,3,3,50,53],[1187,3,2,53,55]]]],[23201,23212,23215,23325,23868,23870,23959,24189,24195,24197,24369,24580,24683,24718,24719,24872,24876,24877,25033,25066,25074,25416,25771,25775,25796,25797,25831,25832,25905,25993,26388,26440,26512,26561,26562,26564,26868,27033,27552,28187,28188,28422,28848,30403,30404,30405,30406,30407,30771,30979,31005,31009,31014,31064,31072]]],["+",[12,8,[[39,2,1,0,1,[[952,2,1,0,1]]],[40,3,2,1,3,[[965,1,1,1,2],[969,2,1,2,3]]],[41,4,2,3,5,[[991,2,1,3,4],[993,2,1,4,5]]],[44,2,2,5,7,[[1054,2,2,5,7]]],[59,1,1,7,8,[[1152,1,1,7,8]]]],[23959,24580,24719,25775,25832,28187,28188,30405]]],["stone",[31,30,[[39,7,7,0,7,[[932,1,1,0,1],[935,1,1,1,2],[949,2,2,2,4],[955,2,2,4,6],[956,1,1,6,7]]],[40,4,4,7,11,[[968,1,1,7,8],[971,1,1,8,9],[972,2,2,9,11]]],[41,6,6,11,17,[[976,2,2,11,13],[983,1,1,13,14],[992,2,2,14,16],[996,1,1,16,17]]],[42,5,5,17,22,[[1004,1,1,17,18],[1007,3,3,18,21],[1016,1,1,21,22]]],[43,2,2,22,24,[[1021,1,1,22,23],[1034,1,1,23,24]]],[59,3,3,24,27,[[1152,3,3,24,27]]],[65,4,3,27,30,[[1170,1,1,27,28],[1184,1,1,28,29],[1187,2,1,29,30]]]],[23215,23325,23868,23870,24189,24195,24197,24683,24872,24876,24877,25066,25074,25416,25796,25797,25993,26388,26561,26562,26564,26868,27033,27552,30403,30406,30407,30771,31014,31064]]],["stone's",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25905]]],["stones",[16,16,[[39,2,2,0,2,[[931,1,1,0,1],[932,1,1,1,2]]],[40,2,2,2,4,[[961,1,1,2,3],[969,1,1,3,4]]],[41,3,3,4,7,[[975,1,1,4,5],[991,1,1,5,6],[993,1,1,6,7]]],[42,2,2,7,9,[[1004,1,1,7,8],[1006,1,1,8,9]]],[45,1,1,9,10,[[1064,1,1,9,10]]],[46,1,1,10,11,[[1080,1,1,10,11]]],[59,1,1,11,12,[[1152,1,1,11,12]]],[65,4,4,12,16,[[1183,1,1,12,13],[1184,2,2,13,15],[1187,1,1,15,16]]]],[23201,23212,24369,24718,25033,25771,25831,26440,26512,28422,28848,30404,30979,31005,31009,31072]]]]},{"k":"G3038","v":[["Pavement",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26838]]]]},{"k":"G3039","v":[["+",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,1,1,1,2,[[992,1,1,1,2]]]],[23870,25797]]]]},{"k":"G3040","v":[["haven",[2,1,[[43,2,1,0,1,[[1044,2,1,0,1]]]],[27867]]]]},{"k":"G3041","v":[["lake",[10,10,[[41,5,5,0,5,[[977,2,2,0,2],[980,3,3,2,5]]],[65,5,5,5,10,[[1185,1,1,5,6],[1186,3,3,6,9],[1187,1,1,9,10]]]],[25108,25109,25267,25268,25278,31037,31048,31052,31053,31061]]]]},{"k":"G3042","v":[["*",[12,12,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,4,4,2,6,[[976,1,1,2,3],[987,2,2,3,5],[993,1,1,5,6]]],[43,2,2,6,8,[[1024,1,1,6,7],[1028,1,1,7,8]]],[44,1,1,8,9,[[1053,1,1,8,9]]],[46,1,1,9,10,[[1088,1,1,9,10]]],[65,2,2,10,12,[[1172,1,1,10,11],[1184,1,1,11,12]]]],[23964,24725,25088,25602,25605,25837,27127,27335,28151,29016,30801,31001]]],["dearth",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1028,1,1,1,2]]]],[27127,27335]]],["famine",[4,4,[[41,2,2,0,2,[[976,1,1,0,1],[987,1,1,1,2]]],[44,1,1,2,3,[[1053,1,1,2,3]]],[65,1,1,3,4,[[1184,1,1,3,4]]]],[25088,25602,28151,31001]]],["famines",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]]],[23964,24725,25837]]],["hunger",[3,3,[[41,1,1,0,1,[[987,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[65,1,1,2,3,[[1172,1,1,2,3]]]],[25605,29016,30801]]]]},{"k":"G3043","v":[["*",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[65,1,1,1,2,[[1181,1,1,1,2]]]],[23509,30952]]],["flax",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23509]]],["linen",[1,1,[[65,1,1,0,1,[[1181,1,1,0,1]]]],[30952]]]]},{"k":"G3044","v":[["Linus",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29891]]]]},{"k":"G3045","v":[["dainty",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31007]]]]},{"k":"G3046","v":[["pound",[2,2,[[42,2,2,0,2,[[1008,1,1,0,1],[1015,1,1,1,2]]]],[26583,26864]]]]},{"k":"G3047","v":[["west",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27867]]]]},{"k":"G3048","v":[["*",[2,2,[[45,2,2,0,2,[[1077,2,2,0,2]]]],[28777,28778]]],["collection",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28777]]],["gatherings",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28778]]]]},{"k":"G3049","v":[["*",[41,40,[[40,2,2,0,2,[[967,1,1,0,1],[971,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[43,1,1,3,4,[[1036,1,1,3,4]]],[44,19,19,4,23,[[1047,2,2,4,6],[1048,1,1,6,7],[1049,11,11,7,18],[1051,1,1,18,19],[1053,2,2,19,21],[1054,1,1,21,22],[1059,1,1,22,23]]],[45,3,3,23,26,[[1065,1,1,23,24],[1074,2,2,24,26]]],[46,8,7,26,33,[[1080,1,1,26,27],[1082,1,1,27,28],[1087,4,3,28,31],[1088,1,1,31,32],[1089,1,1,32,33]]],[47,1,1,33,34,[[1093,1,1,33,34]]],[49,2,2,34,36,[[1105,1,1,34,35],[1106,1,1,35,36]]],[54,1,1,36,37,[[1128,1,1,36,37]]],[57,1,1,37,38,[[1143,1,1,37,38]]],[58,1,1,38,39,[[1147,1,1,38,39]]],[59,1,1,39,40,[[1155,1,1,39,40]]]],[24671,24854,25901,27612,27965,27988,28019,28025,28026,28027,28028,28030,28031,28032,28033,28044,28045,28046,28079,28134,28152,28163,28294,28434,28670,28676,28846,28896,28973,28978,28982,28994,29028,29108,29434,29450,29886,30191,30316,30477]]],["+",[2,2,[[43,1,1,0,1,[[1036,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]]],[27612,29886]]],["Accounting",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30191]]],["account",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28434]]],["accounted",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]]],[28152,29108]]],["conclude",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28019]]],["count",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29434]]],["counted",[4,4,[[44,4,4,0,4,[[1047,1,1,0,1],[1049,2,2,1,3],[1054,1,1,3,4]]]],[27988,28025,28027,28163]]],["esteemeth",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28294]]],["impute",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28030]]],["imputed",[5,5,[[44,4,4,0,4,[[1049,4,4,0,4]]],[58,1,1,4,5,[[1147,1,1,4,5]]]],[28033,28044,28045,28046,30316]]],["imputeth",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28028]]],["imputing",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28896]]],["numbered",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24854]]],["on",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29450]]],["reasoned",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24671]]],["reckon",[2,2,[[44,2,2,0,2,[[1051,1,1,0,1],[1053,1,1,1,2]]]],[28079,28134]]],["reckoned",[4,4,[[41,1,1,0,1,[[994,1,1,0,1]]],[44,3,3,1,4,[[1049,3,3,1,4]]]],[25901,28026,28031,28032]]],["suppose",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[28994,30477]]],["think",[6,5,[[46,6,5,0,5,[[1080,1,1,0,1],[1087,4,3,1,4],[1089,1,1,4,5]]]],[28846,28973,28978,28982,29028]]],["thinkest",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27965]]],["thinketh",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28670]]],["thought",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28676]]]]},{"k":"G3050","v":[["*",[2,2,[[44,1,1,0,1,[[1057,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[28246,30401]]],["reasonable",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28246]]],["word",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30401]]]]},{"k":"G3051","v":[["oracles",[4,4,[[43,1,1,0,1,[[1024,1,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]],[57,1,1,2,3,[[1137,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]]],[27154,27993,30042,30457]]]]},{"k":"G3052","v":[["eloquent",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27581]]]]},{"k":"G3053","v":[["*",[2,2,[[44,1,1,0,1,[[1047,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]]],[27977,28976]]],["imaginations",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28976]]],["thoughts",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27977]]]]},{"k":"G3054","v":[["+",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29841]]]]},{"k":"G3055","v":[["words",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29792]]]]},{"k":"G3056","v":[["*",[330,316,[[39,32,30,0,30,[[933,2,2,0,2],[935,3,3,2,5],[936,2,2,5,7],[938,1,1,7,8],[940,4,3,8,11],[941,6,5,11,16],[943,2,2,16,18],[946,1,1,18,19],[947,3,3,19,22],[949,1,1,22,23],[950,2,2,23,25],[952,1,1,25,26],[953,1,1,26,27],[954,2,2,27,29],[956,1,1,29,30]]],[40,24,23,30,53,[[957,1,1,30,31],[958,1,1,31,32],[960,9,8,32,40],[961,1,1,40,41],[963,2,2,41,43],[964,2,2,43,45],[965,1,1,45,46],[966,2,2,46,48],[967,1,1,48,49],[968,1,1,49,50],[969,1,1,50,51],[970,1,1,51,52],[972,1,1,52,53]]],[41,33,33,53,86,[[973,4,4,53,57],[975,1,1,57,58],[976,3,3,58,61],[977,2,2,61,63],[978,1,1,63,64],[979,2,2,64,66],[980,5,5,66,71],[981,3,3,71,74],[982,1,1,74,75],[983,1,1,75,76],[984,1,1,76,77],[988,1,1,77,78],[992,2,2,78,80],[993,1,1,80,81],[994,1,1,81,82],[995,1,1,82,83],[996,3,3,83,86]]],[42,40,36,86,122,[[997,4,2,86,88],[998,1,1,88,89],[1000,4,4,89,93],[1001,2,2,93,95],[1002,1,1,95,96],[1003,2,2,96,98],[1004,6,6,98,104],[1006,2,2,104,106],[1008,2,2,106,108],[1010,3,2,108,110],[1011,4,3,110,113],[1013,4,4,113,117],[1014,2,2,117,119],[1015,2,2,119,121],[1017,1,1,121,122]]],[43,64,64,122,186,[[1018,1,1,122,123],[1019,3,3,123,126],[1021,3,3,126,129],[1022,2,2,129,131],[1023,4,4,131,135],[1024,2,2,135,137],[1025,4,4,137,141],[1027,3,3,141,144],[1028,3,3,144,147],[1029,1,1,147,148],[1030,8,8,148,156],[1031,3,3,156,159],[1032,8,8,159,167],[1033,3,3,167,170],[1034,2,2,170,172],[1035,3,3,172,175],[1036,4,4,175,179],[1037,6,6,179,185],[1039,1,1,185,186]]],[44,8,7,186,193,[[1048,1,1,186,187],[1054,4,3,187,190],[1058,1,1,190,191],[1059,1,1,191,192],[1060,1,1,192,193]]],[45,17,14,193,207,[[1062,3,3,193,196],[1063,4,3,196,199],[1065,2,2,199,201],[1073,2,1,201,202],[1075,4,3,202,205],[1076,2,2,205,207]]],[46,9,9,207,216,[[1078,1,1,207,208],[1079,1,1,208,209],[1081,1,1,209,210],[1082,1,1,210,211],[1083,1,1,211,212],[1085,1,1,212,213],[1087,2,2,213,215],[1088,1,1,215,216]]],[47,2,2,216,218,[[1095,1,1,216,217],[1096,1,1,217,218]]],[48,4,4,218,222,[[1097,1,1,218,219],[1100,1,1,219,220],[1101,1,1,220,221],[1102,1,1,221,222]]],[49,4,4,222,226,[[1103,1,1,222,223],[1104,1,1,223,224],[1106,2,2,224,226]]],[50,7,7,226,233,[[1107,2,2,226,228],[1108,1,1,228,229],[1109,2,2,229,231],[1110,2,2,231,233]]],[51,9,7,233,240,[[1111,3,3,233,236],[1112,4,2,236,238],[1114,2,2,238,240]]],[52,5,5,240,245,[[1117,3,3,240,243],[1118,2,2,243,245]]],[53,8,8,245,253,[[1119,1,1,245,246],[1121,1,1,246,247],[1122,4,4,247,251],[1123,1,1,251,252],[1124,1,1,252,253]]],[54,7,7,253,260,[[1125,1,1,253,254],[1126,4,4,254,258],[1128,2,2,258,260]]],[55,5,5,260,265,[[1129,2,2,260,262],[1130,2,2,262,264],[1131,1,1,264,265]]],[57,12,12,265,277,[[1134,1,1,265,266],[1136,3,3,266,269],[1137,2,2,269,271],[1138,1,1,271,272],[1139,1,1,272,273],[1144,1,1,273,274],[1145,3,3,274,277]]],[58,5,5,277,282,[[1146,4,4,277,281],[1148,1,1,281,282]]],[59,6,5,282,287,[[1151,1,1,282,283],[1152,1,1,283,284],[1153,3,2,284,286],[1154,1,1,286,287]]],[60,4,4,287,291,[[1156,1,1,287,288],[1157,1,1,288,289],[1158,2,2,289,291]]],[61,7,7,291,298,[[1159,2,2,291,293],[1160,3,3,293,296],[1161,1,1,296,297],[1163,1,1,297,298]]],[63,1,1,298,299,[[1165,1,1,298,299]]],[65,17,17,299,316,[[1167,3,3,299,302],[1169,2,2,302,304],[1172,1,1,304,305],[1178,1,1,305,306],[1185,2,2,306,308],[1186,1,1,308,309],[1187,1,1,309,310],[1188,6,6,310,316]]]],[23266,23271,23340,23342,23344,23353,23361,23431,23521,23525,23526,23558,23559,23560,23561,23562,23645,23656,23750,23763,23773,23784,23850,23887,23918,23992,24027,24055,24098,24210,24260,24262,24337,24338,24339,24340,24341,24342,24343,24356,24400,24476,24492,24532,24538,24548,24610,24612,24669,24686,24748,24793,24893,24895,24897,24913,24922,25029,25085,25095,25099,25108,25122,25193,25202,25212,25256,25257,25258,25260,25266,25327,25329,25345,25402,25433,25469,25622,25782,25799,25859,25925,25944,26008,26010,26035,26045,26058,26117,26193,26195,26197,26206,26234,26248,26317,26364,26368,26412,26418,26424,26432,26433,26436,26500,26516,26618,26628,26691,26692,26702,26719,26724,26765,26773,26776,26779,26794,26817,26833,26838,26921,26924,26971,26989,26990,27026,27051,27053,27064,27083,27103,27105,27106,27108,27138,27145,27180,27190,27197,27201,27288,27295,27303,27308,27326,27329,27361,27367,27369,27377,27388,27406,27408,27410,27411,27417,27426,27439,27448,27449,27457,27466,27469,27474,27477,27478,27489,27515,27519,27534,27536,27568,27571,27572,27595,27605,27623,27625,27628,27633,27650,27658,27661,27664,27726,27995,28161,28164,28183,28275,28292,28321,28368,28380,28381,28395,28398,28407,28452,28453,28642,28687,28697,28714,28720,28772,28818,28841,28861,28896,28905,28939,28981,28982,28995,29176,29194,29219,29301,29310,29356,29375,29407,29457,29459,29470,29490,29517,29533,29534,29545,29548,29565,29566,29568,29575,29583,29618,29621,29663,29676,29678,29679,29692,29711,29732,29752,29753,29756,29759,29780,29791,29822,29836,29838,29842,29844,29872,29885,29895,29901,29913,29916,29931,29979,30016,30026,30027,30041,30043,30045,30092,30231,30248,30258,30263,30284,30287,30288,30289,30321,30397,30407,30425,30439,30451,30498,30503,30527,30529,30541,30550,30555,30557,30564,30597,30631,30668,30699,30700,30706,30754,30756,30802,30902,31026,31030,31042,31058,31086,31087,31089,31090,31098,31099]]],["+",[14,14,[[39,1,1,0,1,[[953,1,1,0,1]]],[40,2,2,1,3,[[960,1,1,1,2],[963,1,1,2,3]]],[41,1,1,3,4,[[977,1,1,3,4]]],[42,1,1,4,5,[[1017,1,1,4,5]]],[43,4,4,5,9,[[1028,1,1,5,6],[1031,1,1,6,7],[1032,1,1,7,8],[1037,1,1,8,9]]],[46,1,1,9,10,[[1081,1,1,9,10]]],[49,1,1,10,11,[[1106,1,1,10,11]]],[51,1,1,11,12,[[1112,1,1,11,12]]],[57,2,2,12,14,[[1136,1,1,12,13],[1137,1,1,13,14]]]],[24027,24340,24476,25122,26921,27329,27426,27469,27650,28861,29457,29575,30027,30041]]],["I",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28720]]],["Word",[7,5,[[42,4,2,0,2,[[997,4,2,0,2]]],[61,2,2,2,4,[[1159,1,1,2,3],[1163,1,1,3,4]]],[65,1,1,4,5,[[1185,1,1,4,5]]]],[26045,26058,30541,30631,31030]]],["account",[8,8,[[39,2,2,0,2,[[940,1,1,0,1],[946,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[43,1,1,3,4,[[1036,1,1,3,4]]],[44,1,1,4,5,[[1059,1,1,4,5]]],[49,1,1,5,6,[[1106,1,1,5,6]]],[57,1,1,6,7,[[1145,1,1,6,7]]],[59,1,1,7,8,[[1154,1,1,7,8]]]],[23525,23750,25622,27625,28292,29459,30258,30451]]],["cause",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23266]]],["communication",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[23271,29301]]],["communications",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26008]]],["doctrine",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30045]]],["exhortation",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27628]]],["intent",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27288]]],["matter",[4,4,[[40,1,1,0,1,[[957,1,1,0,1]]],[43,3,3,1,4,[[1025,1,1,1,2],[1032,1,1,2,3],[1036,1,1,3,4]]]],[24260,27197,27448,27623]]],["preaching",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28381]]],["question",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24669]]],["reason",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[27571,30439]]],["rumour",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25212]]],["saying",[33,33,[[39,4,4,0,4,[[943,1,1,0,1],[947,2,2,1,3],[956,1,1,3,4]]],[40,4,4,4,8,[[963,1,1,4,5],[964,1,1,5,6],[965,1,1,6,7],[966,1,1,7,8]]],[41,1,1,8,9,[[973,1,1,8,9]]],[42,14,14,9,23,[[1000,2,2,9,11],[1002,1,1,11,12],[1003,2,2,12,14],[1004,3,3,14,17],[1008,1,1,17,18],[1011,1,1,18,19],[1014,2,2,19,21],[1015,2,2,21,23]]],[43,3,3,23,26,[[1023,1,1,23,24],[1024,1,1,24,25],[1033,1,1,25,26]]],[44,1,1,26,27,[[1058,1,1,26,27]]],[45,1,1,27,28,[[1076,1,1,27,28]]],[53,3,3,28,31,[[1119,1,1,28,29],[1121,1,1,29,30],[1122,1,1,30,31]]],[54,1,1,31,32,[[1126,1,1,31,32]]],[55,1,1,32,33,[[1131,1,1,32,33]]]],[23645,23773,23784,24210,24492,24532,24548,24610,24922,26193,26195,26317,26364,26368,26432,26433,26436,26618,26719,26794,26817,26833,26838,27106,27145,27519,28275,28772,29711,29732,29756,29838,29931]]],["sayings",[16,16,[[39,5,5,0,5,[[935,3,3,0,3],[947,1,1,3,4],[954,1,1,4,5]]],[41,3,3,5,8,[[978,1,1,5,6],[981,2,2,6,8]]],[42,2,2,8,10,[[1006,1,1,8,9],[1010,1,1,9,10]]],[44,1,1,10,11,[[1048,1,1,10,11]]],[65,5,5,11,16,[[1185,1,1,11,12],[1188,4,4,12,16]]]],[23340,23342,23344,23763,24055,25193,25329,25345,26500,26692,27995,31026,31086,31087,31089,31090]]],["shew",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29517]]],["speech",[8,8,[[43,1,1,0,1,[[1037,1,1,0,1]]],[45,3,3,1,4,[[1063,2,2,1,3],[1065,1,1,3,4]]],[46,2,2,4,6,[[1087,1,1,4,5],[1088,1,1,5,6]]],[50,1,1,6,7,[[1110,1,1,6,7]]],[55,1,1,7,8,[[1130,1,1,7,8]]]],[27633,28395,28398,28452,28981,28995,29548,29916]]],["talk",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23887]]],["thing",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,1,1,1,2,[[992,1,1,1,2]]]],[23850,25782]]],["things",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[24897,27083]]],["treatise",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26924]]],["utterance",[4,4,[[45,1,1,0,1,[[1062,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]],[50,1,1,3,4,[[1110,1,1,3,4]]]],[28368,28939,29356,29545]]],["word",[167,161,[[39,11,10,0,10,[[936,2,2,0,2],[940,1,1,2,3],[941,6,5,3,8],[943,1,1,8,9],[950,1,1,9,10]]],[40,11,10,10,20,[[958,1,1,10,11],[960,8,7,11,18],[961,1,1,18,19],[972,1,1,19,20]]],[41,15,15,20,35,[[973,1,1,20,21],[976,2,2,21,23],[977,1,1,23,24],[979,1,1,24,25],[980,5,5,25,30],[982,1,1,30,31],[983,1,1,31,32],[984,1,1,32,33],[994,1,1,33,34],[996,1,1,34,35]]],[42,18,18,35,53,[[998,1,1,35,36],[1000,2,2,36,38],[1001,2,2,38,40],[1004,3,3,40,43],[1006,1,1,43,44],[1008,1,1,44,45],[1010,1,1,45,46],[1011,3,3,46,49],[1013,4,4,49,53]]],[43,37,37,53,90,[[1019,1,1,53,54],[1021,3,3,54,57],[1023,3,3,57,60],[1025,3,3,60,63],[1027,2,2,63,65],[1028,2,2,65,67],[1029,1,1,67,68],[1030,8,8,68,76],[1031,2,2,76,78],[1032,3,3,78,81],[1033,2,2,81,83],[1034,2,2,83,85],[1035,1,1,85,86],[1036,2,2,86,88],[1037,1,1,88,89],[1039,1,1,89,90]]],[44,3,3,90,93,[[1054,2,2,90,92],[1060,1,1,92,93]]],[45,4,3,93,96,[[1065,1,1,93,94],[1073,2,1,94,95],[1075,1,1,95,96]]],[46,5,5,96,101,[[1078,1,1,96,97],[1079,1,1,97,98],[1082,1,1,98,99],[1083,1,1,99,100],[1087,1,1,100,101]]],[47,2,2,101,103,[[1095,1,1,101,102],[1096,1,1,102,103]]],[48,1,1,103,104,[[1097,1,1,103,104]]],[49,2,2,104,106,[[1103,1,1,104,105],[1104,1,1,105,106]]],[50,4,4,106,110,[[1107,2,2,106,108],[1109,2,2,108,110]]],[51,7,5,110,115,[[1111,3,3,110,113],[1112,3,1,113,114],[1114,1,1,114,115]]],[52,5,5,115,120,[[1117,3,3,115,118],[1118,2,2,118,120]]],[53,3,3,120,123,[[1122,2,2,120,122],[1123,1,1,122,123]]],[54,4,4,123,127,[[1126,3,3,123,126],[1128,1,1,126,127]]],[55,3,3,127,130,[[1129,2,2,127,129],[1130,1,1,129,130]]],[57,8,8,130,138,[[1134,1,1,130,131],[1136,2,2,131,133],[1137,1,1,133,134],[1139,1,1,134,135],[1144,1,1,135,136],[1145,2,2,136,138]]],[58,5,5,138,143,[[1146,4,4,138,142],[1148,1,1,142,143]]],[59,4,3,143,146,[[1151,1,1,143,144],[1152,1,1,144,145],[1153,2,1,145,146]]],[60,3,3,146,149,[[1156,1,1,146,147],[1158,2,2,147,149]]],[61,5,5,149,154,[[1159,1,1,149,150],[1160,3,3,150,153],[1161,1,1,153,154]]],[65,7,7,154,161,[[1167,2,2,154,156],[1169,2,2,156,158],[1172,1,1,158,159],[1178,1,1,159,160],[1186,1,1,160,161]]]],[23353,23361,23521,23558,23559,23560,23561,23562,23656,23918,24262,24337,24338,24339,24341,24342,24343,24356,24400,24893,24895,25095,25099,25108,25202,25256,25257,25258,25260,25266,25402,25433,25469,25925,26010,26117,26197,26206,26234,26248,26412,26418,26424,26516,26628,26692,26702,26719,26724,26765,26773,26776,26779,26990,27026,27051,27053,27103,27105,27108,27180,27190,27201,27295,27303,27308,27326,27361,27367,27369,27377,27388,27406,27408,27410,27411,27417,27439,27449,27477,27478,27489,27515,27534,27536,27568,27595,27605,27658,27726,28161,28164,28321,28453,28642,28714,28818,28841,28896,28905,28982,29176,29194,29219,29375,29407,29470,29490,29533,29534,29565,29566,29568,29583,29618,29663,29676,29678,29679,29692,29752,29759,29780,29836,29842,29844,29872,29895,29901,29913,29979,30016,30026,30043,30092,30231,30248,30263,30284,30287,30288,30289,30321,30397,30407,30425,30498,30527,30529,30550,30555,30557,30564,30597,30699,30706,30754,30756,30802,30902,31042]]],["words",[47,45,[[39,5,4,0,4,[[938,1,1,0,1],[940,2,1,1,2],[952,1,1,2,3],[954,1,1,3,4]]],[40,5,5,4,9,[[964,1,1,4,5],[966,1,1,5,6],[968,1,1,6,7],[969,1,1,7,8],[970,1,1,8,9]]],[41,8,8,9,17,[[973,1,1,9,10],[975,1,1,10,11],[976,1,1,11,12],[981,1,1,12,13],[992,1,1,13,14],[993,1,1,14,15],[995,1,1,15,16],[996,1,1,16,17]]],[42,1,1,17,18,[[1010,1,1,17,18]]],[43,10,10,18,28,[[1019,2,2,18,20],[1022,1,1,20,21],[1024,1,1,21,22],[1032,3,3,22,25],[1035,1,1,25,26],[1037,2,2,26,28]]],[45,6,5,28,33,[[1062,1,1,28,29],[1063,2,2,29,31],[1075,3,2,31,33]]],[48,1,1,33,34,[[1101,1,1,33,34]]],[51,1,1,34,35,[[1114,1,1,34,35]]],[53,2,2,35,37,[[1122,1,1,35,36],[1124,1,1,36,37]]],[54,2,2,37,39,[[1125,1,1,37,38],[1128,1,1,38,39]]],[60,1,1,39,40,[[1157,1,1,39,40]]],[63,1,1,40,41,[[1165,1,1,40,41]]],[65,4,4,41,45,[[1167,1,1,41,42],[1187,1,1,42,43],[1188,2,2,43,45]]]],[23431,23526,23992,24098,24538,24612,24686,24748,24793,24913,25029,25085,25327,25799,25859,25944,26035,26691,26971,26989,27064,27138,27457,27466,27474,27572,27661,27664,28380,28398,28407,28687,28697,29310,29621,29753,29791,29822,29885,30503,30668,30700,31058,31098,31099]]],["work",[2,1,[[44,2,1,0,1,[[1054,2,1,0,1]]]],[28183]]]]},{"k":"G3057","v":[["spear",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26859]]]]},{"k":"G3058","v":[["*",[4,4,[[42,1,1,0,1,[[1005,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[26468,27738,28445,30422]]],["Revilest",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27738]]],["reviled",[3,3,[[42,1,1,0,1,[[1005,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]]],[26468,28445,30422]]]]},{"k":"G3059","v":[["*",[3,2,[[53,1,1,0,1,[[1123,1,1,0,1]]],[59,2,1,1,2,[[1153,2,1,1,2]]]],[29777,30433]]],["+",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29777]]],["railing",[2,1,[[59,2,1,0,1,[[1153,2,1,0,1]]]],[30433]]]]},{"k":"G3060","v":[["*",[2,2,[[45,2,2,0,2,[[1066,1,1,0,1],[1067,1,1,1,2]]]],[28465,28477]]],["railer",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28465]]],["revilers",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28477]]]]},{"k":"G3061","v":[["*",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]],[43,1,1,2,3,[[1041,1,1,2,3]]]],[23964,25837,27774]]],["pestilences",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]]],[23964,25837]]],["pestilent",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27774]]]]},{"k":"G3062","v":[["*",[41,41,[[39,3,3,0,3,[[950,1,1,0,1],[953,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[960,1,1,3,4],[972,1,1,4,5]]],[41,6,6,5,11,[[980,1,1,5,6],[984,1,1,6,7],[990,2,2,7,9],[996,2,2,9,11]]],[43,5,5,11,16,[[1019,1,1,11,12],[1022,1,1,12,13],[1034,1,1,13,14],[1044,1,1,14,15],[1045,1,1,15,16]]],[44,2,2,16,18,[[1046,1,1,16,17],[1056,1,1,17,18]]],[45,4,4,18,22,[[1068,1,1,18,19],[1070,1,1,19,20],[1072,1,1,20,21],[1076,1,1,21,22]]],[46,2,2,22,24,[[1089,1,1,22,23],[1090,1,1,23,24]]],[47,1,1,24,25,[[1092,1,1,24,25]]],[48,2,2,25,27,[[1098,1,1,25,26],[1100,1,1,26,27]]],[49,2,2,27,29,[[1103,1,1,27,28],[1106,1,1,28,29]]],[51,2,2,29,31,[[1114,1,1,29,30],[1115,1,1,30,31]]],[53,1,1,31,32,[[1123,1,1,31,32]]],[60,1,1,32,33,[[1158,1,1,32,33]]],[65,8,8,33,41,[[1168,1,1,33,34],[1169,1,1,34,35],[1174,1,1,35,36],[1175,1,1,36,37],[1177,1,1,37,38],[1178,1,1,38,39],[1185,1,1,39,40],[1186,1,1,40,41]]]],[23878,24019,24178,24342,24886,25255,25485,25697,25699,26000,26001,26986,27072,27532,27899,27908,27943,28216,28499,28545,28634,28755,29035,29045,29094,29232,29289,29374,29445,29616,29627,29783,30538,30741,30748,30840,30860,30885,30908,31038,31043]]],["other",[15,15,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,2,2,1,3,[[990,1,1,1,2],[996,1,1,2,3]]],[43,1,1,3,4,[[1034,1,1,3,4]]],[44,1,1,4,5,[[1046,1,1,4,5]]],[45,2,2,5,7,[[1070,1,1,5,6],[1076,1,1,6,7]]],[46,2,2,7,9,[[1089,1,1,7,8],[1090,1,1,8,9]]],[47,1,1,9,10,[[1092,1,1,9,10]]],[48,1,1,10,11,[[1100,1,1,10,11]]],[49,2,2,11,13,[[1103,1,1,11,12],[1106,1,1,12,13]]],[60,1,1,13,14,[[1158,1,1,13,14]]],[65,1,1,14,15,[[1174,1,1,14,15]]]],[24019,25699,26001,27532,27943,28545,28755,29035,29045,29094,29289,29374,29445,30538,30840]]],["others",[7,7,[[41,2,2,0,2,[[980,1,1,0,1],[990,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]],[48,1,1,3,4,[[1098,1,1,3,4]]],[51,2,2,4,6,[[1114,1,1,4,5],[1115,1,1,5,6]]],[53,1,1,6,7,[[1123,1,1,6,7]]]],[25255,25697,27908,29232,29616,29627,29783]]],["remain",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30748]]],["remnant",[4,4,[[39,1,1,0,1,[[950,1,1,0,1]]],[65,3,3,1,4,[[1177,1,1,1,2],[1178,1,1,2,3],[1185,1,1,3,4]]]],[23878,30885,30908,31038]]],["residue",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24886]]],["rest",[12,12,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[996,1,1,2,3]]],[43,3,3,3,6,[[1019,1,1,3,4],[1022,1,1,4,5],[1044,1,1,5,6]]],[44,1,1,6,7,[[1056,1,1,6,7]]],[45,2,2,7,9,[[1068,1,1,7,8],[1072,1,1,8,9]]],[65,3,3,9,12,[[1168,1,1,9,10],[1175,1,1,10,11],[1186,1,1,11,12]]]],[24178,25485,26000,26986,27072,27899,28216,28499,28634,30741,30860,31043]]],["things",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24342]]]]},{"k":"G3063","v":[["*",[14,14,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[43,1,1,2,3,[[1044,1,1,2,3]]],[45,3,3,3,6,[[1062,1,1,3,4],[1065,1,1,4,5],[1068,1,1,5,6]]],[46,1,1,6,7,[[1090,1,1,6,7]]],[48,1,1,7,8,[[1102,1,1,7,8]]],[49,2,2,8,10,[[1105,1,1,8,9],[1106,1,1,9,10]]],[51,1,1,10,11,[[1114,1,1,10,11]]],[52,1,1,11,12,[[1118,1,1,11,12]]],[54,1,1,12,13,[[1128,1,1,12,13]]],[57,1,1,13,14,[[1142,1,1,13,14]]]],[24099,24795,27875,28379,28435,28516,29054,29347,29422,29450,29604,29679,29878,30146]]],["+",[2,2,[[45,2,2,0,2,[[1065,1,1,0,1],[1068,1,1,1,2]]]],[28435,28516]]],["Finally",[5,5,[[46,1,1,0,1,[[1090,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]],[49,2,2,2,4,[[1105,1,1,2,3],[1106,1,1,3,4]]],[52,1,1,4,5,[[1118,1,1,4,5]]]],[29054,29347,29422,29450,29679]]],["Furthermore",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29604]]],["Henceforth",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29878]]],["besides",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28379]]],["henceforth",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30146]]],["now",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24099,24795]]],["then",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27875]]]]},{"k":"G3064","v":[["henceforth",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29205]]]]},{"k":"G3065","v":[["*",[3,3,[[50,1,1,0,1,[[1110,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]]],[29556,29881,29962]]],["Lucas",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29962]]],["Luke",[2,2,[[50,1,1,0,1,[[1110,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]]],[29556,29881]]]]},{"k":"G3066","v":[["Lucius",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]]],[27363,28357]]]]},{"k":"G3067","v":[["washing",[2,2,[[48,1,1,0,1,[[1101,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[29330,29928]]]]},{"k":"G3068","v":[["washed",[6,6,[[42,1,1,0,1,[[1009,1,1,0,1]]],[43,2,2,1,3,[[1026,1,1,1,2],[1033,1,1,2,3]]],[57,1,1,3,4,[[1142,1,1,3,4]]],[60,1,1,4,5,[[1157,1,1,4,5]]],[65,1,1,5,6,[[1167,1,1,5,6]]]],[26640,27253,27516,30155,30522,30702]]]]},{"k":"G3069","v":[["Lydda",[3,3,[[43,3,3,0,3,[[1026,3,3,0,3]]]],[27248,27251,27254]]]]},{"k":"G3070","v":[["Lydia",[2,2,[[43,2,2,0,2,[[1033,2,2,0,2]]]],[27497,27523]]]]},{"k":"G3071","v":[["Lycaonia",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27420]]]]},{"k":"G3072","v":[["Lycaonia",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27425]]]]},{"k":"G3073","v":[["Lycia",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27860]]]]},{"k":"G3074","v":[["*",[6,5,[[39,2,2,0,2,[[935,1,1,0,1],[938,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[42,2,1,3,4,[[1006,2,1,3,4]]],[43,1,1,4,5,[[1037,1,1,4,5]]]],[23331,23433,25366,26493,27655]]],["wolf",[2,1,[[42,2,1,0,1,[[1006,2,1,0,1]]]],[26493]]],["wolves",[4,4,[[39,2,2,0,2,[[935,1,1,0,1],[938,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[43,1,1,3,4,[[1037,1,1,3,4]]]],[23331,23433,25366,27655]]]]},{"k":"G3075","v":[["havock",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27179]]]]},{"k":"G3076","v":[["*",[26,21,[[39,6,6,0,6,[[942,1,1,0,1],[945,1,1,1,2],[946,1,1,2,3],[947,1,1,3,4],[954,2,2,4,6]]],[40,2,2,6,8,[[966,1,1,6,7],[970,1,1,7,8]]],[42,2,2,8,10,[[1012,1,1,8,9],[1017,1,1,9,10]]],[44,1,1,10,11,[[1059,1,1,10,11]]],[46,12,7,11,18,[[1079,5,3,11,14],[1083,1,1,14,15],[1084,6,3,15,18]]],[48,1,1,18,19,[[1100,1,1,18,19]]],[51,1,1,19,20,[[1114,1,1,19,20]]],[59,1,1,20,21,[[1151,1,1,20,21]]]],[23606,23723,23758,23784,24076,24091,24610,24773,26746,26915,28295,28826,28828,28829,28908,28924,28925,28927,29302,29616,30380]]],["+",[6,5,[[39,3,3,0,3,[[945,1,1,0,1],[946,1,1,1,2],[954,1,1,2,3]]],[46,3,2,3,5,[[1079,1,1,3,4],[1084,2,1,4,5]]]],[23723,23758,24076,28826,28924]]],["grief",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28829]]],["grieve",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29302]]],["grieved",[5,5,[[40,1,1,0,1,[[966,1,1,0,1]]],[42,1,1,1,2,[[1017,1,1,1,2]]],[44,1,1,2,3,[[1059,1,1,2,3]]],[46,2,2,3,5,[[1079,2,2,3,5]]]],[24610,26915,28295,28828,28829]]],["heaviness",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30380]]],["sorrow",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29616]]],["sorrowed",[2,2,[[46,2,2,0,2,[[1084,2,2,0,2]]]],[28925,28927]]],["sorrowful",[5,5,[[39,2,2,0,2,[[947,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[42,1,1,3,4,[[1012,1,1,3,4]]],[46,1,1,4,5,[[1083,1,1,4,5]]]],[23784,24091,24773,26746,28908]]],["sorry",[4,3,[[39,1,1,0,1,[[942,1,1,0,1]]],[46,3,2,1,3,[[1079,1,1,1,2],[1084,2,1,2,3]]]],[23606,28826,28925]]]]},{"k":"G3077","v":[["*",[16,14,[[41,1,1,0,1,[[994,1,1,0,1]]],[42,4,4,1,5,[[1012,4,4,1,5]]],[44,1,1,5,6,[[1054,1,1,5,6]]],[46,6,5,6,11,[[1079,3,3,6,9],[1084,2,1,9,10],[1086,1,1,10,11]]],[49,2,1,11,12,[[1104,2,1,11,12]]],[57,1,1,12,13,[[1144,1,1,12,13]]],[59,1,1,13,14,[[1152,1,1,13,14]]]],[25909,26732,26746,26747,26748,28157,28825,28827,28831,28926,28963,29418,30223,30418]]],["+",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28963]]],["grief",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30418]]],["grievous",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30223]]],["heaviness",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[46,1,1,1,2,[[1079,1,1,1,2]]]],[28157,28825]]],["sorrow",[11,9,[[41,1,1,0,1,[[994,1,1,0,1]]],[42,4,4,1,5,[[1012,4,4,1,5]]],[46,4,3,5,8,[[1079,2,2,5,7],[1084,2,1,7,8]]],[49,2,1,8,9,[[1104,2,1,8,9]]]],[25909,26732,26746,26747,26748,28827,28831,28926,29418]]]]},{"k":"G3078","v":[["Lysanias",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25026]]]]},{"k":"G3079","v":[["Lysias",[3,3,[[43,3,3,0,3,[[1040,1,1,0,1],[1041,2,2,1,3]]]],[27760,27776,27791]]]]},{"k":"G3080","v":[["loosed",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28514]]]]},{"k":"G3081","v":[["better",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25653]]]]},{"k":"G3082","v":[["Lystra",[6,6,[[43,5,5,0,5,[[1031,3,3,0,3],[1033,2,2,3,5]]],[54,1,1,5,6,[[1127,1,1,5,6]]]],[27420,27422,27435,27484,27485,29864]]]]},{"k":"G3083","v":[["ransom",[2,2,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]]],[23820,24633]]]]},{"k":"G3084","v":[["*",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]],[59,1,1,2,3,[[1151,1,1,2,3]]]],[26012,29922,30392]]],["redeem",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29922]]],["redeemed",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[26012,30392]]]]},{"k":"G3085","v":[["*",[3,3,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[24961,25011,30117]]],["+",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24961]]],["redemption",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[25011,30117]]]]},{"k":"G3086","v":[["deliverer",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27151]]]]},{"k":"G3087","v":[["*",[12,11,[[39,1,1,0,1,[[933,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,2,2,2,4,[[980,1,1,2,3],[983,1,1,3,4]]],[57,1,1,4,5,[[1141,1,1,4,5]]],[65,7,6,5,11,[[1167,4,3,5,8],[1168,2,2,8,10],[1177,1,1,10,11]]]],[23249,24344,25261,25438,30107,30709,30710,30717,30718,30722,30876]]],["candlestick",[6,6,[[39,1,1,0,1,[[933,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,2,2,2,4,[[980,1,1,2,3],[983,1,1,3,4]]],[57,1,1,4,5,[[1141,1,1,4,5]]],[65,1,1,5,6,[[1168,1,1,5,6]]]],[23249,24344,25261,25438,30107,30722]]],["candlesticks",[6,5,[[65,6,5,0,5,[[1167,4,3,0,3],[1168,1,1,3,4],[1177,1,1,4,5]]]],[30709,30710,30717,30718,30876]]]]},{"k":"G3088","v":[["*",[14,14,[[39,2,2,0,2,[[933,1,1,0,1],[934,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,6,6,3,9,[[980,1,1,3,4],[983,3,3,4,7],[984,1,1,7,8],[987,1,1,8,9]]],[42,1,1,9,10,[[1001,1,1,9,10]]],[60,1,1,10,11,[[1156,1,1,10,11]]],[65,3,3,11,14,[[1184,1,1,11,12],[1187,1,1,12,13],[1188,1,1,13,14]]]],[23249,23304,24344,25261,25438,25439,25441,25494,25596,26245,30498,31016,31076,31085]]],["candle",[8,8,[[39,1,1,0,1,[[933,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,4,4,2,6,[[980,1,1,2,3],[983,2,2,3,5],[987,1,1,5,6]]],[65,2,2,6,8,[[1184,1,1,6,7],[1188,1,1,7,8]]]],[23249,24344,25261,25438,25441,25596,31016,31085]]],["light",[5,5,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,1,1,2,3,[[1001,1,1,2,3]]],[60,1,1,3,4,[[1156,1,1,3,4]]],[65,1,1,4,5,[[1187,1,1,4,5]]]],[23304,25439,26245,30498,31076]]],["lights",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25494]]]]},{"k":"G3089","v":[["*",[43,40,[[39,6,4,0,4,[[933,1,1,0,1],[944,2,1,1,2],[946,2,1,2,3],[949,1,1,3,4]]],[40,5,5,4,9,[[957,1,1,4,5],[963,1,1,5,6],[967,3,3,6,9]]],[41,7,6,9,15,[[975,1,1,9,10],[985,2,2,10,12],[991,4,3,12,15]]],[42,6,6,15,21,[[997,1,1,15,16],[998,1,1,16,17],[1001,1,1,17,18],[1003,1,1,18,19],[1006,1,1,19,20],[1007,1,1,20,21]]],[43,7,7,21,28,[[1019,1,1,21,22],[1024,1,1,22,23],[1030,2,2,23,25],[1039,1,1,25,26],[1041,1,1,26,27],[1044,1,1,27,28]]],[45,1,1,28,29,[[1068,1,1,28,29]]],[48,1,1,29,30,[[1098,1,1,29,30]]],[60,3,3,30,33,[[1158,3,3,30,33]]],[61,1,1,33,34,[[1161,1,1,33,34]]],[65,6,6,34,40,[[1171,2,2,34,36],[1175,2,2,36,38],[1186,2,2,38,40]]]],[23253,23691,23745,23828,24222,24498,24642,24644,24645,25041,25533,25534,25761,25762,25764,26071,26114,26228,26351,26516,26567,26973,27149,27387,27405,27734,27795,27896,28514,29243,30532,30533,30534,30587,30781,30784,30854,30855,31041,31045]]],["+",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26071]]],["Destroy",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26114]]],["Loose",[2,2,[[42,1,1,0,1,[[1007,1,1,0,1]]],[65,1,1,1,2,[[1175,1,1,1,2]]]],[26567,30854]]],["break",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23253]]],["broken",[4,4,[[42,3,3,0,3,[[1001,1,1,0,1],[1003,1,1,1,2],[1006,1,1,2,3]]],[43,1,1,3,4,[[1044,1,1,3,4]]]],[26228,26351,26516,27896]]],["destroy",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30587]]],["dissolved",[2,2,[[60,2,2,0,2,[[1158,2,2,0,2]]]],[30533,30534]]],["down",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29243]]],["loose",[13,13,[[39,3,3,0,3,[[944,1,1,0,1],[946,1,1,1,2],[949,1,1,2,3]]],[40,2,2,3,5,[[967,2,2,3,5]]],[41,4,4,5,9,[[985,1,1,5,6],[991,3,3,6,9]]],[43,2,2,9,11,[[1030,1,1,9,10],[1041,1,1,10,11]]],[65,2,2,11,13,[[1171,2,2,11,13]]]],[23691,23745,23828,24642,24644,25533,25761,25762,25764,27387,27795,30781,30784]]],["loosed",[10,10,[[39,2,2,0,2,[[944,1,1,0,1],[946,1,1,1,2]]],[40,1,1,2,3,[[963,1,1,2,3]]],[41,1,1,3,4,[[985,1,1,3,4]]],[43,2,2,4,6,[[1019,1,1,4,5],[1039,1,1,5,6]]],[45,1,1,6,7,[[1068,1,1,6,7]]],[65,3,3,7,10,[[1175,1,1,7,8],[1186,2,2,8,10]]]],[23691,23745,24498,25534,26973,27734,28514,30855,31041,31045]]],["loosing",[2,2,[[40,1,1,0,1,[[967,1,1,0,1]]],[41,1,1,1,2,[[991,1,1,1,2]]]],[24645,25764]]],["melt",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30532]]],["off",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27149]]],["unloose",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[24222,25041]]],["up",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27405]]]]},{"k":"G3090","v":[["Lois",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29814]]]]},{"k":"G3091","v":[["*",[4,4,[[41,3,3,0,3,[[989,3,3,0,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]]],[25679,25680,25683,30507]]],["Lot",[3,3,[[41,2,2,0,2,[[989,2,2,0,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[25679,25680,30507]]],["Lot's",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25683]]]]},{"k":"G3092","v":[["Maath",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25051]]]]},{"k":"G3093","v":[["Magdala",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23672]]]]},{"k":"G3094","v":[["Magdalene",[12,12,[[39,3,3,0,3,[[955,2,2,0,2],[956,1,1,2,3]]],[40,4,4,3,7,[[971,2,2,3,5],[972,2,2,5,7]]],[41,2,2,7,9,[[980,1,1,7,8],[996,1,1,8,9]]],[42,3,3,9,12,[[1015,1,1,9,10],[1016,2,2,10,12]]]],[24185,24190,24196,24866,24873,24874,24882,25247,26001,26850,26868,26885]]]]},{"k":"G3095","v":[["sorceries",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27187]]]]},{"k":"G3096","v":[["sorcery",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27185]]]]},{"k":"G3097","v":[["*",[6,5,[[39,4,3,0,3,[[930,4,3,0,3]]],[43,2,2,3,5,[[1030,2,2,3,5]]]],[23170,23176,23185,27368,27370]]],["men",[4,3,[[39,4,3,0,3,[[930,4,3,0,3]]]],[23170,23176,23185]]],["sorcerer",[2,2,[[43,2,2,0,2,[[1030,2,2,0,2]]]],[27368,27370]]]]},{"k":"G3098","v":[["Magog",[1,1,[[65,1,1,0,1,[[1186,1,1,0,1]]]],[31046]]]]},{"k":"G3099","v":[["Madian",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27145]]]]},{"k":"G3100","v":[["*",[4,4,[[39,3,3,0,3,[[941,1,1,0,1],[955,1,1,1,2],[956,1,1,2,3]]],[43,1,1,3,4,[[1031,1,1,3,4]]]],[23591,24186,24214,27435]]],["+",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24186]]],["instructed",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23591]]],["taught",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27435]]],["teach",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24214]]]]},{"k":"G3101","v":[["*",[268,252,[[39,74,71,0,71,[[933,1,1,0,1],[936,3,3,1,4],[937,6,5,4,9],[938,4,4,9,13],[939,2,2,13,15],[940,3,3,15,18],[941,2,2,18,20],[942,6,5,20,25],[943,7,6,25,31],[944,5,5,31,36],[945,5,5,36,41],[946,1,1,41,42],[947,4,4,42,46],[948,1,1,46,47],[949,3,3,47,50],[950,1,1,50,51],[951,1,1,51,52],[952,2,2,52,54],[954,11,11,54,65],[955,1,1,65,66],[956,5,5,66,71]]],[40,45,42,71,113,[[958,6,4,71,75],[959,2,2,75,77],[960,1,1,77,78],[961,1,1,78,79],[962,5,5,79,84],[963,3,3,84,87],[964,8,7,87,94],[965,4,4,94,98],[966,5,5,98,103],[967,2,2,103,105],[968,1,1,105,106],[969,1,1,106,107],[970,5,5,107,112],[972,1,1,112,113]]],[41,38,37,113,150,[[977,2,2,113,115],[978,5,5,115,120],[979,3,3,120,123],[980,2,2,123,125],[981,7,7,125,132],[982,1,1,132,133],[983,2,1,133,134],[984,2,2,134,136],[986,3,3,136,139],[988,1,1,139,140],[989,2,2,140,142],[990,1,1,142,143],[991,3,3,143,146],[992,1,1,146,147],[994,3,3,147,150]]],[42,81,74,150,224,[[997,2,2,150,152],[998,5,5,152,157],[999,2,2,157,159],[1000,6,6,159,165],[1002,13,10,165,175],[1003,1,1,175,176],[1004,1,1,176,177],[1005,4,3,177,180],[1007,4,4,180,184],[1008,2,2,184,186],[1009,4,4,186,190],[1011,1,1,190,191],[1012,2,2,191,193],[1014,9,7,193,200],[1015,4,3,200,203],[1016,11,11,203,214],[1017,10,10,214,224]]],[43,30,28,224,252,[[1018,1,1,224,225],[1023,3,3,225,228],[1026,7,6,228,234],[1028,2,2,234,236],[1030,1,1,236,237],[1031,3,3,237,240],[1032,1,1,240,241],[1033,1,1,241,242],[1035,2,2,242,244],[1036,3,3,244,247],[1037,3,3,247,250],[1038,3,2,250,252]]]],[23235,23366,23368,23370,23389,23390,23393,23398,23416,23418,23441,23442,23459,23460,23461,23490,23491,23538,23549,23575,23609,23612,23616,23619,23623,23635,23645,23656,23665,23666,23669,23677,23685,23692,23693,23696,23706,23710,23713,23716,23719,23728,23772,23775,23785,23787,23809,23827,23832,23846,23888,23919,23958,23960,24055,24062,24071,24072,24073,24080,24089,24090,24094,24099,24110,24193,24202,24203,24204,24208,24211,24275,24276,24278,24283,24295,24297,24357,24395,24408,24436,24442,24448,24452,24465,24468,24480,24501,24504,24506,24510,24527,24533,24534,24552,24556,24566,24569,24598,24601,24611,24612,24634,24641,24654,24716,24718,24766,24767,24768,24770,24786,24880,25137,25140,25147,25159,25163,25166,25186,25206,25213,25214,25254,25267,25302,25315,25317,25319,25341,25344,25355,25386,25406,25460,25481,25579,25580,25586,25621,25652,25673,25703,25760,25768,25770,25824,25875,25903,25909,26079,26081,26097,26106,26107,26112,26117,26142,26145,26157,26158,26164,26183,26187,26189,26260,26265,26268,26269,26273,26279,26281,26317,26318,26323,26331,26412,26442,26467,26468,26530,26531,26535,26577,26584,26596,26635,26652,26653,26665,26707,26743,26755,26786,26787,26800,26801,26802,26804,26810,26851,26852,26863,26869,26870,26871,26875,26877,26885,26886,26887,26892,26893,26897,26899,26900,26902,26905,26906,26910,26912,26918,26921,26922,26938,27102,27103,27108,27217,27226,27235,27241,27242,27254,27333,27336,27414,27434,27436,27442,27452,27484,27580,27584,27586,27594,27615,27627,27633,27656,27668,27680]]],["+",[4,4,[[39,1,1,0,1,[[956,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[42,2,2,2,4,[[1014,1,1,2,3],[1016,1,1,3,4]]]],[24203,25302,26800,26887]]],["disciple",[26,25,[[39,3,3,0,3,[[938,3,3,0,3]]],[41,4,4,3,7,[[978,1,1,3,4],[986,3,3,4,7]]],[42,15,14,7,21,[[1005,1,1,7,8],[1014,2,2,8,10],[1015,4,3,10,13],[1016,4,4,13,17],[1017,4,4,17,21]]],[43,4,4,21,25,[[1026,2,2,21,23],[1033,1,1,23,24],[1038,1,1,24,25]]]],[23441,23442,23459,25186,25579,25580,25586,26468,26800,26801,26851,26852,26863,26869,26870,26871,26875,26905,26918,26921,26922,27226,27242,27484,27680]]],["disciples",[237,226,[[39,70,67,0,67,[[933,1,1,0,1],[936,3,3,1,4],[937,6,5,4,9],[938,1,1,9,10],[939,2,2,10,12],[940,3,3,12,15],[941,2,2,15,17],[942,6,5,17,22],[943,7,6,22,28],[944,5,5,28,33],[945,5,5,33,38],[946,1,1,38,39],[947,4,4,39,43],[948,1,1,43,44],[949,3,3,44,47],[950,1,1,47,48],[951,1,1,48,49],[952,2,2,49,51],[954,11,11,51,62],[955,1,1,62,63],[956,4,4,63,67]]],[40,45,42,67,109,[[958,6,4,67,71],[959,2,2,71,73],[960,1,1,73,74],[961,1,1,74,75],[962,5,5,75,80],[963,3,3,80,83],[964,8,7,83,90],[965,4,4,90,94],[966,5,5,94,99],[967,2,2,99,101],[968,1,1,101,102],[969,1,1,102,103],[970,5,5,103,108],[972,1,1,108,109]]],[41,33,32,109,141,[[977,2,2,109,111],[978,4,4,111,115],[979,3,3,115,118],[980,2,2,118,120],[981,6,6,120,126],[982,1,1,126,127],[983,2,1,127,128],[984,2,2,128,130],[988,1,1,130,131],[989,2,2,131,133],[990,1,1,133,134],[991,3,3,134,137],[992,1,1,137,138],[994,3,3,138,141]]],[42,63,59,141,200,[[997,2,2,141,143],[998,5,5,143,148],[999,2,2,148,150],[1000,6,6,150,156],[1002,13,10,156,166],[1003,1,1,166,167],[1004,1,1,167,168],[1005,3,3,168,171],[1007,4,4,171,175],[1008,2,2,175,177],[1009,3,3,177,180],[1011,1,1,180,181],[1012,2,2,181,183],[1014,6,5,183,188],[1016,6,6,188,194],[1017,6,6,194,200]]],[43,26,26,200,226,[[1018,1,1,200,201],[1023,3,3,201,204],[1026,5,5,204,209],[1028,2,2,209,211],[1030,1,1,211,212],[1031,3,3,212,215],[1032,1,1,215,216],[1035,2,2,216,218],[1036,3,3,218,221],[1037,3,3,221,224],[1038,2,2,224,226]]]],[23235,23366,23368,23370,23389,23390,23393,23398,23416,23418,23460,23461,23490,23491,23538,23549,23575,23609,23612,23616,23619,23623,23635,23645,23656,23665,23666,23669,23677,23685,23692,23693,23696,23706,23710,23713,23716,23719,23728,23772,23775,23785,23787,23809,23827,23832,23846,23888,23919,23958,23960,24055,24062,24071,24072,24073,24080,24089,24090,24094,24099,24110,24193,24202,24204,24208,24211,24275,24276,24278,24283,24295,24297,24357,24395,24408,24436,24442,24448,24452,24465,24468,24480,24501,24504,24506,24510,24527,24533,24534,24552,24556,24566,24569,24598,24601,24611,24612,24634,24641,24654,24716,24718,24766,24767,24768,24770,24786,24880,25137,25140,25147,25159,25163,25166,25206,25213,25214,25254,25267,25315,25317,25319,25341,25344,25355,25386,25406,25460,25481,25621,25652,25673,25703,25760,25768,25770,25824,25875,25903,25909,26079,26081,26097,26106,26107,26112,26117,26142,26145,26157,26158,26164,26183,26187,26189,26260,26265,26268,26269,26273,26279,26281,26317,26318,26323,26331,26412,26442,26467,26468,26530,26531,26535,26577,26584,26596,26652,26653,26665,26707,26743,26755,26786,26787,26802,26804,26810,26877,26885,26886,26892,26893,26897,26899,26900,26902,26906,26910,26912,26938,27102,27103,27108,27217,27235,27241,27242,27254,27333,27336,27414,27434,27436,27442,27452,27580,27584,27586,27594,27615,27627,27633,27656,27668,27680]]],["disciples'",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26635]]]]},{"k":"G3102","v":[["disciple",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27252]]]]},{"k":"G3103","v":[["Mathusala",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25062]]]]},{"k":"G3104","v":[["Menan",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25056]]]]},{"k":"G3105","v":[["*",[5,5,[[42,1,1,0,1,[[1006,1,1,0,1]]],[43,3,3,1,4,[[1029,1,1,1,2],[1043,2,2,2,4]]],[45,1,1,4,5,[[1075,1,1,4,5]]]],[26501,27352,27847,27848,28701]]],["+",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27848]]],["mad",[3,3,[[42,1,1,0,1,[[1006,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]]],[26501,27352,28701]]],["thyself",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27847]]]]},{"k":"G3106","v":[["*",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[24941,30365]]],["+",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24941]]],["happy",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30365]]]]},{"k":"G3107","v":[["*",[50,49,[[39,13,13,0,13,[[933,9,9,0,9],[939,1,1,9,10],[941,1,1,10,11],[944,1,1,11,12],[952,1,1,12,13]]],[41,15,14,13,27,[[973,1,1,13,14],[978,4,3,14,17],[979,1,1,17,18],[982,1,1,18,19],[983,2,2,19,21],[984,3,3,21,24],[986,2,2,24,26],[995,1,1,26,27]]],[42,2,2,27,29,[[1009,1,1,27,28],[1016,1,1,28,29]]],[43,2,2,29,31,[[1037,1,1,29,30],[1043,1,1,30,31]]],[44,3,3,31,34,[[1049,2,2,31,33],[1059,1,1,33,34]]],[45,1,1,34,35,[[1068,1,1,34,35]]],[53,2,2,35,37,[[1119,1,1,35,36],[1124,1,1,36,37]]],[55,1,1,37,38,[[1130,1,1,37,38]]],[58,2,2,38,40,[[1146,2,2,38,40]]],[59,2,2,40,42,[[1153,1,1,40,41],[1154,1,1,41,42]]],[65,7,7,42,49,[[1167,1,1,42,43],[1180,1,1,43,44],[1182,1,1,44,45],[1185,1,1,45,46],[1186,1,1,46,47],[1188,2,2,47,49]]]],[23237,23238,23239,23240,23241,23242,23243,23244,23245,23465,23555,23689,24003,24938,25166,25167,25168,25218,25386,25432,25433,25496,25497,25502,25567,25568,25964,26647,26896,27661,27825,28029,28030,28302,28527,29707,29803,29921,30278,30291,30438,30460,30700,30939,30969,31026,31044,31087,31094]]],["Blessed",[30,29,[[39,11,11,0,11,[[933,9,9,0,9],[944,1,1,9,10],[952,1,1,10,11]]],[41,10,9,11,20,[[978,4,3,11,14],[982,1,1,14,15],[983,1,1,15,16],[984,2,2,16,18],[986,1,1,18,19],[995,1,1,19,20]]],[44,2,2,20,22,[[1049,2,2,20,22]]],[58,1,1,22,23,[[1146,1,1,22,23]]],[65,6,6,23,29,[[1167,1,1,23,24],[1180,1,1,24,25],[1182,1,1,25,26],[1185,1,1,26,27],[1186,1,1,27,28],[1188,1,1,28,29]]]],[23237,23238,23239,23240,23241,23242,23243,23244,23245,23689,24003,25166,25167,25168,25386,25432,25496,25502,25568,25964,28029,28030,30278,30700,30939,30969,31026,31044,31094]]],["Happy",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28302]]],["blessed",[14,14,[[39,2,2,0,2,[[939,1,1,0,1],[941,1,1,1,2]]],[41,5,5,2,7,[[973,1,1,2,3],[979,1,1,3,4],[983,1,1,4,5],[984,1,1,5,6],[986,1,1,6,7]]],[42,1,1,7,8,[[1016,1,1,7,8]]],[43,1,1,8,9,[[1037,1,1,8,9]]],[53,2,2,9,11,[[1119,1,1,9,10],[1124,1,1,10,11]]],[55,1,1,11,12,[[1130,1,1,11,12]]],[58,1,1,12,13,[[1146,1,1,12,13]]],[65,1,1,13,14,[[1188,1,1,13,14]]]],[23465,23555,24938,25218,25433,25497,25567,26896,27661,29707,29803,29921,30291,31087]]],["happier",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28527]]],["happy",[4,4,[[42,1,1,0,1,[[1009,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[59,2,2,2,4,[[1153,1,1,2,3],[1154,1,1,3,4]]]],[26647,27825,30438,30460]]]]},{"k":"G3108","v":[["blessedness",[3,3,[[44,2,2,0,2,[[1049,2,2,0,2]]],[47,1,1,2,3,[[1094,1,1,2,3]]]],[28028,28031,29146]]]]},{"k":"G3109","v":[["Macedonia",[22,20,[[43,8,8,0,8,[[1033,3,3,0,3],[1035,1,1,3,4],[1036,2,2,4,6],[1037,2,2,6,8]]],[44,1,1,8,9,[[1060,1,1,8,9]]],[45,2,1,9,10,[[1077,2,1,9,10]]],[46,6,5,10,15,[[1078,2,1,10,11],[1079,1,1,11,12],[1084,1,1,12,13],[1085,1,1,13,14],[1088,1,1,14,15]]],[49,1,1,15,16,[[1106,1,1,15,16]]],[51,3,3,16,19,[[1111,2,2,16,18],[1114,1,1,18,19]]],[53,1,1,19,20,[[1119,1,1,19,20]]]],[27492,27493,27495,27562,27606,27607,27627,27629,28329,28781,28816,28837,28921,28933,28998,29457,29567,29568,29613,29699]]]]},{"k":"G3110","v":[["*",[5,5,[[43,3,3,0,3,[[1033,1,1,0,1],[1036,1,1,1,2],[1044,1,1,2,3]]],[46,2,2,3,5,[[1086,2,2,3,5]]]],[27492,27614,27857,28958,28960]]],["Macedonia",[4,4,[[43,2,2,0,2,[[1033,1,1,0,1],[1036,1,1,1,2]]],[46,2,2,2,4,[[1086,2,2,2,4]]]],[27492,27614,28958,28960]]],["Macedonian",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27857]]]]},{"k":"G3111","v":[["shambles",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28592]]]]},{"k":"G3112","v":[["*",[10,10,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,2,2,4,[[979,1,1,2,3],[987,1,1,3,4]]],[42,1,1,4,5,[[1017,1,1,4,5]]],[43,3,3,5,8,[[1019,1,1,5,6],[1034,1,1,6,7],[1039,1,1,7,8]]],[48,2,2,8,10,[[1098,2,2,8,10]]]],[23375,24707,25201,25608,26906,26988,27550,27725,29242,29246]]],["+",[2,2,[[41,1,1,0,1,[[987,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[25608,26988]]],["far",[4,4,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]],[43,1,1,3,4,[[1034,1,1,3,4]]]],[24707,25201,26906,27550]]],["hence",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27725]]],["off",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[48,2,2,1,3,[[1098,2,2,1,3]]]],[23375,29242,29246]]]]},{"k":"G3113","v":[["*",[14,14,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,5,5,2,7,[[961,1,1,2,3],[964,1,1,3,4],[967,1,1,4,5],[970,1,1,5,6],[971,1,1,6,7]]],[41,4,4,7,11,[[988,1,1,7,8],[990,1,1,8,9],[994,1,1,9,10],[995,1,1,10,11]]],[65,3,3,11,14,[[1184,3,3,11,14]]]],[24112,24184,24370,24503,24653,24808,24866,25643,25701,25918,25984,31003,31008,31010]]],["+",[9,9,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,3,3,2,5,[[961,1,1,2,3],[970,1,1,3,4],[971,1,1,4,5]]],[41,1,1,5,6,[[988,1,1,5,6]]],[65,3,3,6,9,[[1184,3,3,6,9]]]],[24112,24184,24370,24808,24866,25643,31003,31008,31010]]],["far",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24503]]],["off",[4,4,[[40,1,1,0,1,[[967,1,1,0,1]]],[41,3,3,1,4,[[990,1,1,1,2],[994,1,1,2,3],[995,1,1,3,4]]]],[24653,25701,25918,25984]]]]},{"k":"G3114","v":[["*",[10,9,[[39,2,2,0,2,[[946,2,2,0,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[45,1,1,3,4,[[1074,1,1,3,4]]],[51,1,1,4,5,[[1115,1,1,4,5]]],[57,1,1,5,6,[[1138,1,1,5,6]]],[58,3,2,6,8,[[1150,3,2,6,8]]],[60,1,1,8,9,[[1158,1,1,8,9]]]],[23753,23756,25695,28669,29635,30059,30361,30362,30531]]],["+",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30362]]],["endured",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30059]]],["long",[2,2,[[41,1,1,0,1,[[990,1,1,0,1]]],[45,1,1,1,2,[[1074,1,1,1,2]]]],[25695,28669]]],["longsuffering",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30531]]],["patience",[3,3,[[39,2,2,0,2,[[946,2,2,0,2]]],[58,1,1,2,3,[[1150,1,1,2,3]]]],[23753,23756,30361]]],["patient",[2,2,[[51,1,1,0,1,[[1115,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[29635,30361]]]]},{"k":"G3115","v":[["*",[14,14,[[44,2,2,0,2,[[1047,1,1,0,1],[1054,1,1,1,2]]],[46,1,1,2,3,[[1083,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]],[50,2,2,5,7,[[1107,1,1,5,6],[1109,1,1,6,7]]],[53,1,1,7,8,[[1119,1,1,7,8]]],[54,2,2,8,10,[[1127,1,1,8,9],[1128,1,1,9,10]]],[57,1,1,10,11,[[1138,1,1,10,11]]],[58,1,1,11,12,[[1150,1,1,11,12]]],[59,1,1,12,13,[[1153,1,1,12,13]]],[60,1,1,13,14,[[1158,1,1,13,14]]]],[27966,28177,28904,29184,29274,29476,29529,29712,29863,29872,30056,30364,30444,30537]]],["longsuffering",[12,12,[[44,2,2,0,2,[[1047,1,1,0,1],[1054,1,1,1,2]]],[46,1,1,2,3,[[1083,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]],[50,2,2,5,7,[[1107,1,1,5,6],[1109,1,1,6,7]]],[53,1,1,7,8,[[1119,1,1,7,8]]],[54,2,2,8,10,[[1127,1,1,8,9],[1128,1,1,9,10]]],[59,1,1,10,11,[[1153,1,1,10,11]]],[60,1,1,11,12,[[1158,1,1,11,12]]]],[27966,28177,28904,29184,29274,29476,29529,29712,29863,29872,30444,30537]]],["patience",[2,2,[[57,1,1,0,1,[[1138,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[30056,30364]]]]},{"k":"G3116","v":[["patiently",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27826]]]]},{"k":"G3117","v":[["*",[5,5,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,3,3,2,5,[[987,1,1,2,3],[991,1,1,3,4],[992,1,1,4,5]]]],[23932,24713,25601,25743,25826]]],["+",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]]],[23932,24713,25826]]],["far",[2,2,[[41,2,2,0,2,[[987,1,1,0,1],[991,1,1,1,2]]]],[25601,25743]]]]},{"k":"G3118","v":[["long",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29340]]]]},{"k":"G3119","v":[["disease",[3,3,[[39,3,3,0,3,[[932,1,1,0,1],[937,1,1,1,2],[938,1,1,2,3]]]],[23232,23414,23418]]]]},{"k":"G3120","v":[["*",[4,3,[[39,2,1,0,1,[[939,2,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[45,1,1,2,3,[[1067,1,1,2,3]]]],[23467,25220,28476]]],["effeminate",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28476]]],["soft",[3,2,[[39,2,1,0,1,[[939,2,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]]],[23467,25220]]]]},{"k":"G3121","v":[["Maleleel",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25062]]]]},{"k":"G3122","v":[["*",[12,12,[[43,3,3,0,3,[[1037,1,1,0,1],[1042,1,1,1,2],[1043,1,1,2,3]]],[47,1,1,3,4,[[1096,1,1,3,4]]],[49,1,1,4,5,[[1106,1,1,4,5]]],[53,3,3,5,8,[[1122,1,1,5,6],[1123,2,2,6,8]]],[54,1,1,8,9,[[1128,1,1,8,9]]],[55,1,1,9,10,[[1129,1,1,9,10]]],[56,1,1,10,11,[[1132,1,1,10,11]]],[60,1,1,11,12,[[1157,1,1,11,12]]]],[27664,27822,27826,29198,29464,29757,29771,29780,29883,29902,29954,30510]]],["Especially",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27826]]],["all",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27664]]],["chiefly",[2,2,[[49,1,1,0,1,[[1106,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[29464,30510]]],["especially",[3,3,[[47,1,1,0,1,[[1096,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[29198,29780,29883]]],["specially",[5,5,[[43,1,1,0,1,[[1042,1,1,0,1]]],[53,2,2,1,3,[[1122,1,1,1,2],[1123,1,1,2,3]]],[55,1,1,3,4,[[1129,1,1,3,4]]],[56,1,1,4,5,[[1132,1,1,4,5]]]],[27822,29757,29771,29902,29954]]]]},{"k":"G3123","v":[["*",[83,81,[[39,9,9,0,9,[[934,2,2,0,2],[935,1,1,2,3],[938,3,3,3,6],[946,1,1,6,7],[953,1,1,7,8],[955,1,1,8,9]]],[40,6,6,9,15,[[961,1,1,9,10],[963,1,1,10,11],[965,1,1,11,12],[966,1,1,12,13],[970,1,1,13,14],[971,1,1,14,15]]],[41,6,6,15,21,[[977,1,1,15,16],[982,1,1,16,17],[983,1,1,17,18],[984,2,2,18,20],[990,1,1,20,21]]],[42,4,4,21,25,[[999,1,1,21,22],[1001,1,1,22,23],[1008,1,1,23,24],[1015,1,1,24,25]]],[43,7,7,25,32,[[1021,1,1,25,26],[1022,2,2,26,28],[1026,1,1,28,29],[1037,1,1,29,30],[1039,1,1,30,31],[1044,1,1,31,32]]],[44,8,8,32,40,[[1050,4,4,32,36],[1053,1,1,36,37],[1056,2,2,37,39],[1059,1,1,39,40]]],[45,10,9,40,49,[[1066,1,1,40,41],[1067,2,1,41,42],[1068,1,1,42,43],[1070,2,2,43,45],[1073,1,1,45,46],[1075,3,3,46,49]]],[46,8,8,49,57,[[1079,1,1,49,50],[1080,3,3,50,53],[1082,1,1,53,54],[1084,2,2,54,56],[1089,1,1,56,57]]],[47,2,2,57,59,[[1094,2,2,57,59]]],[48,3,3,59,62,[[1100,1,1,59,60],[1101,2,2,60,62]]],[49,6,5,62,67,[[1103,4,3,62,65],[1104,1,1,65,66],[1105,1,1,66,67]]],[51,2,2,67,69,[[1114,2,2,67,69]]],[53,2,2,69,71,[[1119,1,1,69,70],[1124,1,1,70,71]]],[54,1,1,71,72,[[1127,1,1,71,72]]],[56,2,2,72,74,[[1132,2,2,72,74]]],[57,6,6,74,80,[[1141,1,1,74,75],[1142,1,1,75,76],[1143,1,1,76,77],[1144,3,3,77,80]]],[60,1,1,80,81,[[1156,1,1,80,81]]]],[23308,23312,23327,23423,23442,23445,23740,24017,24153,24390,24499,24580,24636,24785,24837,25122,25383,25418,25483,25487,25727,26139,26228,26623,26833,27041,27073,27088,27238,27661,27706,27866,28056,28057,28062,28064,28150,28221,28233,28293,28456,28474,28508,28552,28555,28656,28679,28683,28696,28831,28849,28850,28852,28885,28923,28929,29031,29140,29158,29300,29308,29315,29370,29373,29384,29403,29425,29604,29613,29700,29790,29857,29947,29954,30119,30158,30197,30221,30225,30237,30489]]],["+",[6,6,[[39,1,1,0,1,[[934,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]],[43,1,1,3,4,[[1026,1,1,3,4]]],[48,1,1,4,5,[[1101,1,1,4,5]]],[49,1,1,5,6,[[1103,1,1,5,6]]]],[23308,24580,26833,27238,29315,29384]]],["deal",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24636]]],["more",[42,41,[[39,4,4,0,4,[[934,1,1,0,1],[935,1,1,1,2],[938,1,1,2,3],[946,1,1,3,4]]],[40,2,2,4,6,[[963,1,1,4,5],[970,1,1,5,6]]],[41,5,5,6,11,[[977,1,1,6,7],[983,1,1,7,8],[984,2,2,8,10],[990,1,1,10,11]]],[42,2,2,11,13,[[1001,1,1,11,12],[1008,1,1,12,13]]],[43,5,5,13,18,[[1021,1,1,13,14],[1022,1,1,14,15],[1037,1,1,15,16],[1039,1,1,16,17],[1044,1,1,17,18]]],[44,6,6,18,24,[[1050,4,4,18,22],[1056,2,2,22,24]]],[45,2,2,24,26,[[1073,1,1,24,25],[1075,1,1,25,26]]],[46,4,4,26,30,[[1080,2,2,26,28],[1084,2,2,28,30]]],[47,1,1,30,31,[[1094,1,1,30,31]]],[49,4,3,31,34,[[1103,2,1,31,32],[1104,1,1,32,33],[1105,1,1,33,34]]],[51,2,2,34,36,[[1114,2,2,34,36]]],[54,1,1,36,37,[[1127,1,1,36,37]]],[56,1,1,37,38,[[1132,1,1,37,38]]],[57,3,3,38,41,[[1141,1,1,38,39],[1142,1,1,39,40],[1144,1,1,40,41]]]],[23312,23327,23442,23740,24499,24785,25122,25418,25483,25487,25727,26228,26623,27041,27073,27661,27706,27866,28056,28057,28062,28064,28221,28233,28656,28696,28850,28852,28923,28929,29158,29370,29403,29425,29604,29613,29857,29954,30119,30158,30237]]],["rather",[33,32,[[39,4,4,0,4,[[938,2,2,0,2],[953,1,1,2,3],[955,1,1,3,4]]],[40,2,2,4,6,[[961,1,1,4,5],[971,1,1,5,6]]],[41,1,1,6,7,[[982,1,1,6,7]]],[42,1,1,7,8,[[999,1,1,7,8]]],[43,1,1,8,9,[[1022,1,1,8,9]]],[44,2,2,9,11,[[1053,1,1,9,10],[1059,1,1,10,11]]],[45,7,6,11,17,[[1066,1,1,11,12],[1067,2,1,12,13],[1068,1,1,13,14],[1070,1,1,14,15],[1075,2,2,15,17]]],[46,4,4,17,21,[[1079,1,1,17,18],[1080,1,1,18,19],[1082,1,1,19,20],[1089,1,1,20,21]]],[47,1,1,21,22,[[1094,1,1,21,22]]],[48,2,2,22,24,[[1100,1,1,22,23],[1101,1,1,23,24]]],[49,1,1,24,25,[[1103,1,1,24,25]]],[53,2,2,25,27,[[1119,1,1,25,26],[1124,1,1,26,27]]],[56,1,1,27,28,[[1132,1,1,27,28]]],[57,3,3,28,31,[[1143,1,1,28,29],[1144,2,2,29,31]]],[60,1,1,31,32,[[1156,1,1,31,32]]]],[23423,23445,24017,24153,24390,24837,25383,26139,27088,28150,28293,28456,28474,28508,28552,28679,28683,28831,28849,28885,29031,29140,29300,29308,29373,29700,29790,29947,30197,30221,30225,30489]]],["to",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28555]]]]},{"k":"G3124","v":[["Malchus",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26795]]]]},{"k":"G3125","v":[["grandmother",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29814]]]]},{"k":"G3126","v":[["mammon",[4,4,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,3,3,1,4,[[988,3,3,1,4]]]],[23306,25629,25631,25633]]]]},{"k":"G3127","v":[["Manaen",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27363]]]]},{"k":"G3128","v":[["Manasses",[3,2,[[39,2,1,0,1,[[929,2,1,0,1]]],[65,1,1,1,2,[[1173,1,1,1,2]]]],[23154,30816]]]]},{"k":"G3129","v":[["*",[25,24,[[39,3,3,0,3,[[937,1,1,0,1],[939,1,1,1,2],[952,1,1,2,3]]],[40,1,1,3,4,[[969,1,1,3,4]]],[42,2,2,4,6,[[1002,1,1,4,5],[1003,1,1,5,6]]],[43,1,1,6,7,[[1040,1,1,6,7]]],[44,1,1,7,8,[[1061,1,1,7,8]]],[45,3,3,8,11,[[1065,1,1,8,9],[1075,2,2,9,11]]],[47,1,1,11,12,[[1093,1,1,11,12]]],[48,1,1,12,13,[[1100,1,1,12,13]]],[49,2,2,13,15,[[1106,2,2,13,15]]],[50,1,1,15,16,[[1107,1,1,15,16]]],[53,3,3,16,19,[[1120,1,1,16,17],[1123,2,2,17,19]]],[54,3,2,19,21,[[1127,3,2,19,21]]],[55,1,1,21,22,[[1131,1,1,21,22]]],[57,1,1,22,23,[[1137,1,1,22,23]]],[65,1,1,23,24,[[1180,1,1,23,24]]]],[23392,23488,23989,24745,26302,26343,27761,28353,28439,28709,28713,29104,29292,29451,29453,29472,29727,29767,29776,29860,29867,29937,30038,30929]]],["learn",[13,13,[[39,3,3,0,3,[[937,1,1,0,1],[939,1,1,1,2],[952,1,1,2,3]]],[40,1,1,3,4,[[969,1,1,3,4]]],[45,3,3,4,7,[[1065,1,1,4,5],[1075,2,2,5,7]]],[47,1,1,7,8,[[1093,1,1,7,8]]],[53,3,3,8,11,[[1120,1,1,8,9],[1123,2,2,9,11]]],[55,1,1,11,12,[[1131,1,1,11,12]]],[65,1,1,12,13,[[1180,1,1,12,13]]]],[23392,23488,23989,24745,28439,28709,28713,29104,29727,29767,29776,29937,30929]]],["learned",[10,9,[[42,2,2,0,2,[[1002,1,1,0,1],[1003,1,1,1,2]]],[44,1,1,2,3,[[1061,1,1,2,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]],[49,2,2,4,6,[[1106,2,2,4,6]]],[50,1,1,6,7,[[1107,1,1,6,7]]],[54,2,1,7,8,[[1127,2,1,7,8]]],[57,1,1,8,9,[[1137,1,1,8,9]]]],[26302,26343,28353,29292,29451,29453,29472,29867,30038]]],["learning",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29860]]],["understood",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27761]]]]},{"k":"G3130","v":[["mad",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27847]]]]},{"k":"G3131","v":[["manna",[5,5,[[42,3,3,0,3,[[1002,3,3,0,3]]],[57,1,1,3,4,[[1141,1,1,3,4]]],[65,1,1,4,5,[[1168,1,1,4,5]]]],[26288,26306,26315,30109,30734]]]]},{"k":"G3132","v":[["soothsaying",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27499]]]]},{"k":"G3133","v":[["away",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30277]]]]},{"k":"G3134","v":[["Maranatha",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28798]]]]},{"k":"G3135","v":[["*",[9,8,[[39,3,3,0,3,[[935,1,1,0,1],[941,2,2,1,3]]],[53,1,1,3,4,[[1120,1,1,3,4]]],[65,5,4,4,8,[[1183,1,1,4,5],[1184,2,2,5,7],[1187,2,1,7,8]]]],[23322,23584,23585,29725,30979,31005,31009,31074]]],["pearl",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[65,1,1,1,2,[[1187,1,1,1,2]]]],[23585,31074]]],["pearls",[7,7,[[39,2,2,0,2,[[935,1,1,0,1],[941,1,1,1,2]]],[53,1,1,2,3,[[1120,1,1,2,3]]],[65,4,4,3,7,[[1183,1,1,3,4],[1184,2,2,4,6],[1187,1,1,6,7]]]],[23322,23584,29725,30979,31005,31009,31074]]]]},{"k":"G3136","v":[["Martha",[13,12,[[41,4,3,0,3,[[982,4,3,0,3]]],[42,9,9,3,12,[[1007,8,8,3,11],[1008,1,1,11,12]]]],[25401,25403,25404,26524,26528,26542,26543,26544,26547,26553,26562,26582]]]]},{"k":"G3137","v":[["Mary",[54,46,[[39,11,8,0,8,[[929,3,3,0,3],[930,1,1,3,4],[941,1,1,4,5],[955,4,2,5,7],[956,2,1,7,8]]],[40,8,5,8,13,[[962,1,1,8,9],[971,4,2,9,11],[972,3,2,11,13]]],[41,17,16,13,29,[[973,8,8,13,21],[974,4,4,21,25],[980,1,1,25,26],[982,2,2,26,28],[996,2,1,28,29]]],[42,15,14,29,43,[[1007,8,8,29,37],[1008,1,1,37,38],[1015,2,1,38,39],[1016,4,4,39,43]]],[43,2,2,43,45,[[1018,1,1,43,44],[1029,1,1,44,45]]],[44,1,1,45,46,[[1061,1,1,45,46]]]],[23160,23162,23164,23180,23594,24185,24190,24196,24410,24866,24873,24874,24882,24920,24923,24927,24931,24932,24934,24939,24949,24978,24989,24992,25007,25247,25402,25405,26001,26524,26525,26542,26543,26551,26554,26555,26568,26583,26850,26868,26878,26883,26885,26937,27349,28342]]]]},{"k":"G3138","v":[["*",[8,8,[[43,4,4,0,4,[[1029,2,2,0,2],[1032,2,2,2,4]]],[50,1,1,4,5,[[1110,1,1,4,5]]],[54,1,1,5,6,[[1128,1,1,5,6]]],[56,1,1,6,7,[[1132,1,1,6,7]]],[59,1,1,7,8,[[1155,1,1,7,8]]]],[27349,27362,27479,27481,29552,29881,29962,30478]]],["Marcus",[3,3,[[50,1,1,0,1,[[1110,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]],[59,1,1,2,3,[[1155,1,1,2,3]]]],[29552,29962,30478]]],["Mark",[5,5,[[43,4,4,0,4,[[1029,2,2,0,2],[1032,2,2,2,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]]],[27349,27362,27479,27481,29881]]]]},{"k":"G3139","v":[["marble",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31005]]]]},{"k":"G3140","v":[["*",[79,75,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,2,2,1,3,[[976,1,1,1,2],[983,1,1,2,3]]],[42,33,31,3,34,[[997,5,5,3,8],[998,1,1,8,9],[999,4,4,9,13],[1000,2,2,13,15],[1001,7,6,15,21],[1003,1,1,21,22],[1004,4,3,22,25],[1006,1,1,25,26],[1008,1,1,26,27],[1009,1,1,27,28],[1011,2,2,28,30],[1014,2,2,30,32],[1015,1,1,32,33],[1017,1,1,33,34]]],[43,12,12,34,46,[[1023,1,1,34,35],[1027,2,2,35,37],[1030,1,1,37,38],[1031,1,1,38,39],[1032,1,1,39,40],[1033,1,1,40,41],[1039,2,2,41,43],[1040,1,1,43,44],[1043,2,2,44,46]]],[44,2,2,46,48,[[1048,1,1,46,47],[1055,1,1,47,48]]],[45,1,1,48,49,[[1076,1,1,48,49]]],[46,1,1,49,50,[[1085,1,1,49,50]]],[47,1,1,50,51,[[1094,1,1,50,51]]],[50,1,1,51,52,[[1110,1,1,51,52]]],[51,1,1,52,53,[[1112,1,1,52,53]]],[53,2,2,53,55,[[1123,1,1,53,54],[1124,1,1,54,55]]],[57,8,7,55,62,[[1139,2,2,55,57],[1142,1,1,57,58],[1143,5,4,58,62]]],[61,7,7,62,69,[[1159,1,1,62,63],[1162,1,1,63,64],[1163,5,5,64,69]]],[63,4,3,69,72,[[1165,4,3,69,72]]],[65,3,3,72,75,[[1167,1,1,72,73],[1188,2,2,73,75]]]],[23949,25085,25453,26051,26052,26059,26076,26078,26120,26131,26146,26148,26152,26195,26200,26241,26242,26243,26246,26247,26249,26335,26394,26395,26399,26506,26597,26651,26725,26726,26808,26822,26860,26922,27104,27281,27302,27384,27417,27450,27485,27709,27716,27745,27828,27845,28012,28190,28733,28935,29146,29555,29581,29773,29801,30072,30081,30148,30174,30176,30177,30211,30542,30617,30630,30631,30632,30633,30634,30661,30664,30670,30699,31096,31100]]],["+",[8,8,[[41,1,1,0,1,[[976,1,1,0,1]]],[42,1,1,1,2,[[999,1,1,1,2]]],[43,3,3,2,5,[[1027,1,1,2,3],[1032,1,1,3,4],[1039,1,1,4,5]]],[44,1,1,5,6,[[1055,1,1,5,6]]],[47,1,1,6,7,[[1094,1,1,6,7]]],[50,1,1,7,8,[[1110,1,1,7,8]]]],[25085,26148,27302,27450,27709,28190,29146,29555]]],["charged",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29581]]],["gave",[1,1,[[61,1,1,0,1,[[1163,1,1,0,1]]]],[30634]]],["of",[2,2,[[43,1,1,0,1,[[1033,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[27485,29773]]],["record",[10,10,[[42,6,6,0,6,[[997,2,2,0,2],[1004,2,2,2,4],[1008,1,1,4,5],[1015,1,1,5,6]]],[46,1,1,6,7,[[1085,1,1,6,7]]],[61,1,1,7,8,[[1163,1,1,7,8]]],[63,1,1,8,9,[[1165,1,1,8,9]]],[65,1,1,9,10,[[1167,1,1,9,10]]]],[26076,26078,26394,26395,26597,26860,28935,30631,30670,30699]]],["report",[6,6,[[43,3,3,0,3,[[1023,1,1,0,1],[1027,1,1,1,2],[1039,1,1,2,3]]],[57,2,2,3,5,[[1143,2,2,3,5]]],[63,1,1,5,6,[[1165,1,1,5,6]]]],[27104,27281,27716,30174,30211,30670]]],["testified",[6,6,[[42,3,3,0,3,[[1000,2,2,0,2],[1009,1,1,2,3]]],[45,1,1,3,4,[[1076,1,1,3,4]]],[61,1,1,4,5,[[1163,1,1,4,5]]],[63,1,1,5,6,[[1165,1,1,5,6]]]],[26195,26200,26651,28733,30633,30661]]],["testifieth",[4,4,[[42,2,2,0,2,[[999,1,1,0,1],[1017,1,1,1,2]]],[57,1,1,2,3,[[1139,1,1,2,3]]],[65,1,1,3,4,[[1188,1,1,3,4]]]],[26152,26922,30081,31100]]],["testify",[8,8,[[42,5,5,0,5,[[998,1,1,0,1],[999,1,1,1,2],[1001,1,1,2,3],[1003,1,1,3,4],[1011,1,1,4,5]]],[43,1,1,5,6,[[1043,1,1,5,6]]],[61,1,1,6,7,[[1162,1,1,6,7]]],[65,1,1,7,8,[[1188,1,1,7,8]]]],[26120,26131,26249,26335,26725,27828,30617,31096]]],["testifying",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30176]]],["testimony",[3,3,[[43,2,2,0,2,[[1030,1,1,0,1],[1031,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[27384,27417,30177]]],["witness",[23,22,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,15,14,1,15,[[997,3,3,1,4],[999,1,1,4,5],[1001,5,5,5,10],[1004,2,1,10,11],[1006,1,1,11,12],[1011,1,1,12,13],[1014,2,2,13,15]]],[43,1,1,15,16,[[1040,1,1,15,16]]],[57,2,2,16,18,[[1142,1,1,16,17],[1143,1,1,17,18]]],[61,3,3,18,21,[[1159,1,1,18,19],[1163,2,2,19,21]]],[63,1,1,21,22,[[1165,1,1,21,22]]]],[25453,26051,26052,26059,26146,26241,26242,26243,26246,26247,26399,26506,26726,26808,26822,27745,30148,30176,30542,30630,30632,30664]]],["witnessed",[3,3,[[44,1,1,0,1,[[1048,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]],[57,1,1,2,3,[[1139,1,1,2,3]]]],[28012,29801,30072]]],["witnesses",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23949]]],["witnesseth",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26242]]],["witnessing",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27845]]]]},{"k":"G3141","v":[["*",[37,33,[[40,3,3,0,3,[[970,3,3,0,3]]],[41,1,1,3,4,[[994,1,1,3,4]]],[42,14,14,4,18,[[997,2,2,4,6],[999,3,3,6,9],[1001,4,4,9,13],[1004,3,3,13,16],[1015,1,1,16,17],[1017,1,1,17,18]]],[43,1,1,18,19,[[1039,1,1,18,19]]],[53,1,1,19,20,[[1121,1,1,19,20]]],[55,1,1,20,21,[[1129,1,1,20,21]]],[61,6,3,21,24,[[1163,6,3,21,24]]],[63,1,1,24,25,[[1165,1,1,24,25]]],[65,9,8,25,33,[[1167,2,2,25,27],[1172,1,1,27,28],[1177,1,1,28,29],[1178,2,2,29,31],[1185,2,1,31,32],[1186,1,1,32,33]]]],[24809,24810,24813,25935,26051,26063,26131,26152,26153,26241,26242,26244,26246,26394,26395,26398,26860,26922,27722,29738,29905,30633,30634,30635,30670,30699,30706,30802,30879,30902,30908,31027,31042]]],["record",[7,7,[[42,4,4,0,4,[[997,1,1,0,1],[1004,2,2,1,3],[1015,1,1,3,4]]],[61,2,2,4,6,[[1163,2,2,4,6]]],[63,1,1,6,7,[[1165,1,1,6,7]]]],[26063,26394,26395,26860,30634,30635,30670]]],["report",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29738]]],["testimony",[14,13,[[42,5,5,0,5,[[999,2,2,0,2],[1001,1,1,2,3],[1004,1,1,3,4],[1017,1,1,4,5]]],[43,1,1,5,6,[[1039,1,1,5,6]]],[65,8,7,6,13,[[1167,2,2,6,8],[1172,1,1,8,9],[1177,1,1,9,10],[1178,2,2,10,12],[1185,2,1,12,13]]]],[26152,26153,26244,26398,26922,27722,30699,30706,30802,30879,30902,30908,31027]]],["witness",[15,13,[[40,3,3,0,3,[[970,3,3,0,3]]],[41,1,1,3,4,[[994,1,1,3,4]]],[42,5,5,4,9,[[997,1,1,4,5],[999,1,1,5,6],[1001,3,3,6,9]]],[55,1,1,9,10,[[1129,1,1,9,10]]],[61,4,2,10,12,[[1163,4,2,10,12]]],[65,1,1,12,13,[[1186,1,1,12,13]]]],[24809,24810,24813,25935,26051,26131,26241,26242,26246,29905,30633,30634,31042]]]]},{"k":"G3142","v":[["*",[20,20,[[39,3,3,0,3,[[936,1,1,0,1],[938,1,1,1,2],[952,1,1,2,3]]],[40,3,3,3,6,[[957,1,1,3,4],[962,1,1,4,5],[969,1,1,5,6]]],[41,3,3,6,9,[[977,1,1,6,7],[981,1,1,7,8],[993,1,1,8,9]]],[43,2,2,9,11,[[1021,1,1,9,10],[1024,1,1,10,11]]],[45,2,2,11,13,[[1062,1,1,11,12],[1063,1,1,12,13]]],[46,1,1,13,14,[[1078,1,1,13,14]]],[52,1,1,14,15,[[1116,1,1,14,15]]],[53,1,1,15,16,[[1120,1,1,15,16]]],[54,1,1,16,17,[[1125,1,1,16,17]]],[57,1,1,17,18,[[1135,1,1,17,18]]],[58,1,1,18,19,[[1150,1,1,18,19]]],[65,1,1,19,20,[[1181,1,1,19,20]]]],[23349,23435,23971,24259,24418,24726,25121,25306,25839,27055,27160,28369,28395,28812,29659,29722,29817,30000,30357,30951]]],["testified",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29722]]],["testimony",[15,15,[[39,2,2,0,2,[[936,1,1,0,1],[938,1,1,1,2]]],[40,3,3,2,5,[[957,1,1,2,3],[962,1,1,3,4],[969,1,1,4,5]]],[41,3,3,5,8,[[977,1,1,5,6],[981,1,1,6,7],[993,1,1,7,8]]],[45,2,2,8,10,[[1062,1,1,8,9],[1063,1,1,9,10]]],[46,1,1,10,11,[[1078,1,1,10,11]]],[52,1,1,11,12,[[1116,1,1,11,12]]],[54,1,1,12,13,[[1125,1,1,12,13]]],[57,1,1,13,14,[[1135,1,1,13,14]]],[65,1,1,14,15,[[1181,1,1,14,15]]]],[23349,23435,24259,24418,24726,25121,25306,25839,28369,28395,28812,29659,29817,30000,30951]]],["witness",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[43,2,2,1,3,[[1021,1,1,1,2],[1024,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]]],[23971,27055,27160,30357]]]]},{"k":"G3143","v":[["*",[3,3,[[43,1,1,0,1,[[1037,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]]],[27652,29165,29289]]],["+",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27652]]],["testify",[2,2,[[47,1,1,0,1,[[1095,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[29165,29289]]]]},{"k":"G3144","v":[["*",[34,34,[[39,2,2,0,2,[[946,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,1,1,3,4,[[996,1,1,3,4]]],[43,13,13,4,17,[[1018,2,2,4,6],[1019,1,1,6,7],[1020,1,1,7,8],[1022,1,1,8,9],[1023,1,1,9,10],[1024,1,1,10,11],[1027,2,2,11,13],[1030,1,1,13,14],[1039,2,2,14,16],[1043,1,1,16,17]]],[44,1,1,17,18,[[1046,1,1,17,18]]],[46,2,2,18,20,[[1078,1,1,18,19],[1090,1,1,19,20]]],[49,1,1,20,21,[[1103,1,1,20,21]]],[51,2,2,21,23,[[1112,2,2,21,23]]],[53,2,2,23,25,[[1123,1,1,23,24],[1124,1,1,24,25]]],[54,1,1,25,26,[[1126,1,1,25,26]]],[57,2,2,26,28,[[1142,1,1,26,27],[1144,1,1,27,28]]],[59,1,1,28,29,[[1155,1,1,28,29]]],[65,5,5,29,34,[[1167,1,1,29,30],[1168,1,1,30,31],[1169,1,1,31,32],[1177,1,1,32,33],[1183,1,1,33,34]]]],[23743,24119,24817,26039,26931,26945,26981,27011,27091,27114,27174,27298,27300,27393,27719,27724,27839,27939,28823,29044,29369,29575,29580,29782,29800,29829,30161,30213,30466,30702,30730,30760,30875,30981]]],["martyr",[2,2,[[43,1,1,0,1,[[1039,1,1,0,1]]],[65,1,1,1,2,[[1168,1,1,1,2]]]],[27724,30730]]],["martyrs",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30981]]],["record",[2,2,[[46,1,1,0,1,[[1078,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[28823,29369]]],["witness",[8,8,[[43,3,3,0,3,[[1018,1,1,0,1],[1039,1,1,1,2],[1043,1,1,2,3]]],[44,1,1,3,4,[[1046,1,1,3,4]]],[51,1,1,4,5,[[1112,1,1,4,5]]],[59,1,1,5,6,[[1155,1,1,5,6]]],[65,2,2,6,8,[[1167,1,1,6,7],[1169,1,1,7,8]]]],[26945,27719,27839,27939,29575,30466,30702,30760]]],["witnesses",[21,21,[[39,2,2,0,2,[[946,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,1,1,3,4,[[996,1,1,3,4]]],[43,9,9,4,13,[[1018,1,1,4,5],[1019,1,1,5,6],[1020,1,1,6,7],[1022,1,1,7,8],[1023,1,1,8,9],[1024,1,1,9,10],[1027,2,2,10,12],[1030,1,1,12,13]]],[46,1,1,13,14,[[1090,1,1,13,14]]],[51,1,1,14,15,[[1112,1,1,14,15]]],[53,2,2,15,17,[[1123,1,1,15,16],[1124,1,1,16,17]]],[54,1,1,17,18,[[1126,1,1,17,18]]],[57,2,2,18,20,[[1142,1,1,18,19],[1144,1,1,19,20]]],[65,1,1,20,21,[[1177,1,1,20,21]]]],[23743,24119,24817,26039,26931,26981,27011,27091,27114,27174,27298,27300,27393,29044,29580,29782,29800,29829,30161,30213,30875]]]]},{"k":"G3145","v":[["gnawed",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30964]]]]},{"k":"G3146","v":[["*",[7,7,[[39,3,3,0,3,[[938,1,1,0,1],[948,1,1,1,2],[951,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,1,1,4,5,[[990,1,1,4,5]]],[42,1,1,5,6,[[1015,1,1,5,6]]],[57,1,1,6,7,[[1144,1,1,6,7]]]],[23434,23811,23952,24622,25721,26826,30218]]],["scourge",[5,5,[[39,3,3,0,3,[[938,1,1,0,1],[948,1,1,1,2],[951,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,1,1,4,5,[[990,1,1,4,5]]]],[23434,23811,23952,24622,25721]]],["scourged",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26826]]],["scourgeth",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30218]]]]},{"k":"G3147","v":[["scourge",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27729]]]]},{"k":"G3148","v":[["*",[6,6,[[40,3,3,0,3,[[959,1,1,0,1],[961,2,2,1,3]]],[41,1,1,3,4,[[979,1,1,3,4]]],[43,1,1,4,5,[[1039,1,1,4,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]]],[24298,24393,24398,25216,27728,30208]]],["plague",[2,2,[[40,2,2,0,2,[[961,2,2,0,2]]]],[24393,24398]]],["plagues",[2,2,[[40,1,1,0,1,[[959,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]]],[24298,25216]]],["scourging",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27728]]],["scourgings",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30208]]]]},{"k":"G3149","v":[["paps",[3,3,[[41,2,2,0,2,[[983,1,1,0,1],[995,1,1,1,2]]],[65,1,1,2,3,[[1167,1,1,2,3]]]],[25432,25964,30710]]]]},{"k":"G3150","v":[["jangling",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29702]]]]},{"k":"G3151","v":[["talkers",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29902]]]]},{"k":"G3152","v":[["*",[6,6,[[43,1,1,0,1,[[1031,1,1,0,1]]],[45,2,2,1,3,[[1064,1,1,1,2],[1076,1,1,2,3]]],[55,1,1,3,4,[[1131,1,1,3,4]]],[58,1,1,4,5,[[1146,1,1,4,5]]],[59,1,1,5,6,[[1151,1,1,5,6]]]],[27429,28430,28735,29932,30292,30392]]],["vain",[5,5,[[45,2,2,0,2,[[1064,1,1,0,1],[1076,1,1,1,2]]],[55,1,1,2,3,[[1131,1,1,2,3]]],[58,1,1,3,4,[[1146,1,1,3,4]]],[59,1,1,4,5,[[1151,1,1,4,5]]]],[28430,28735,29932,30292,30392]]],["vanities",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27429]]]]},{"k":"G3153","v":[["vanity",[3,3,[[44,1,1,0,1,[[1053,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[28136,29289,30518]]]]},{"k":"G3154","v":[["vain",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27951]]]]},{"k":"G3155","v":[["vain",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[23642,24470]]]]},{"k":"G3156","v":[["Matthew",[5,5,[[39,2,2,0,2,[[937,1,1,0,1],[938,1,1,1,2]]],[40,1,1,2,3,[[959,1,1,2,3]]],[41,1,1,3,4,[[978,1,1,3,4]]],[43,1,1,4,5,[[1018,1,1,4,5]]]],[23388,23420,24306,25161,26936]]]]},{"k":"G3157","v":[["Matthan",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23159]]]]},{"k":"G3158","v":[["Matthat",[2,2,[[41,2,2,0,2,[[975,2,2,0,2]]]],[25049,25054]]]]},{"k":"G3159","v":[["Matthias",[2,2,[[43,2,2,0,2,[[1018,2,2,0,2]]]],[26946,26949]]]]},{"k":"G3160","v":[["Mattatha",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25056]]]]},{"k":"G3161","v":[["Mattathias",[2,2,[[41,2,2,0,2,[[975,2,2,0,2]]]],[25050,25051]]]]},{"k":"G3162","v":[["*",[29,26,[[39,7,5,0,5,[[938,1,1,0,1],[954,6,4,1,5]]],[40,3,3,5,8,[[970,3,3,5,8]]],[41,5,5,8,13,[[993,1,1,8,9],[994,4,4,9,13]]],[42,2,2,13,15,[[1014,2,2,13,15]]],[43,2,2,15,17,[[1029,1,1,15,16],[1033,1,1,16,17]]],[44,2,2,17,19,[[1053,1,1,17,18],[1058,1,1,18,19]]],[48,1,1,19,20,[[1102,1,1,19,20]]],[57,3,3,20,23,[[1136,1,1,20,21],[1143,2,2,21,23]]],[65,4,3,23,26,[[1172,1,1,23,24],[1179,3,2,24,26]]]],[23451,24101,24105,24106,24109,24797,24801,24802,25850,25900,25902,25913,25916,26795,26796,27339,27510,28151,28270,29354,30026,30206,30209,30797,30918,30922]]],["one",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25900]]],["sword",[22,19,[[39,5,3,0,3,[[938,1,1,0,1],[954,4,2,1,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[41,2,2,4,6,[[993,1,1,4,5],[994,1,1,5,6]]],[42,2,2,6,8,[[1014,2,2,6,8]]],[43,2,2,8,10,[[1029,1,1,8,9],[1033,1,1,9,10]]],[44,2,2,10,12,[[1053,1,1,10,11],[1058,1,1,11,12]]],[48,1,1,12,13,[[1102,1,1,12,13]]],[57,3,3,13,16,[[1136,1,1,13,14],[1143,2,2,14,16]]],[65,4,3,16,19,[[1172,1,1,16,17],[1179,3,2,17,19]]]],[23451,24105,24106,24801,25850,25913,26795,26796,27339,27510,28151,28270,29354,30026,30206,30209,30797,30918,30922]]],["swords",[6,6,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,2,2,2,4,[[970,2,2,2,4]]],[41,2,2,4,6,[[994,2,2,4,6]]]],[24101,24109,24797,24802,25902,25916]]]]},{"k":"G3163","v":[["*",[4,4,[[46,1,1,0,1,[[1084,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]],[55,1,1,2,3,[[1131,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]]],[28921,29850,29932,30338]]],["fightings",[2,2,[[46,1,1,0,1,[[1084,1,1,0,1]]],[58,1,1,1,2,[[1149,1,1,1,2]]]],[28921,30338]]],["strifes",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29850]]],["strivings",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29932]]]]},{"k":"G3164","v":[["*",[4,4,[[42,1,1,0,1,[[1002,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]]],[26309,27142,29851,30339]]],["fight",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30339]]],["strive",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29851]]],["strove",[2,2,[[42,1,1,0,1,[[1002,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[26309,27142]]]]},{"k":"G3165","v":[["*",[300,275,[[39,38,32,0,32,[[931,1,1,0,1],[936,1,1,1,2],[938,2,2,2,4],[939,1,1,4,5],[942,2,2,5,7],[943,3,3,7,10],[944,2,2,10,12],[946,1,1,12,13],[947,2,2,13,15],[950,1,1,15,16],[951,1,1,16,17],[953,9,4,17,21],[954,10,9,21,30],[955,1,1,30,31],[956,1,1,31,32]]],[40,27,27,32,59,[[957,1,1,32,33],[961,1,1,33,34],[962,2,2,34,36],[963,2,2,36,38],[964,3,3,38,41],[965,3,3,41,44],[966,5,5,44,49],[968,1,1,49,50],[970,8,8,50,58],[971,1,1,58,59]]],[41,44,42,59,101,[[973,2,2,59,61],[974,2,1,61,62],[976,3,2,62,64],[977,1,1,64,65],[978,2,2,65,67],[980,1,1,67,68],[981,4,4,68,72],[982,3,3,72,75],[983,2,2,75,77],[984,2,2,77,79],[985,2,2,79,81],[986,3,3,81,84],[987,1,1,84,85],[988,2,2,85,87],[990,6,6,87,93],[991,2,2,93,95],[992,1,1,95,96],[994,4,4,96,100],[996,1,1,100,101]]],[42,100,89,101,190,[[997,2,2,101,103],[998,1,1,103,104],[1000,1,1,104,105],[1001,8,8,105,113],[1002,13,11,113,124],[1003,8,8,124,132],[1004,13,12,132,144],[1005,1,1,144,145],[1006,4,4,145,149],[1007,1,1,149,150],[1008,4,4,150,154],[1009,5,5,154,159],[1010,11,8,159,167],[1011,4,4,167,171],[1012,9,5,171,176],[1013,7,7,176,183],[1014,1,1,183,184],[1015,1,1,184,185],[1016,2,2,185,187],[1017,4,3,187,190]]],[43,40,37,190,227,[[1019,1,1,190,191],[1024,1,1,191,192],[1025,2,2,192,194],[1026,3,3,194,197],[1027,1,1,197,198],[1028,2,2,198,200],[1029,1,1,200,201],[1030,1,1,201,202],[1033,2,2,202,204],[1035,1,1,204,205],[1036,2,1,205,206],[1037,1,1,206,207],[1039,6,6,207,213],[1040,4,3,213,216],[1041,3,3,216,219],[1042,2,2,219,221],[1043,6,5,221,226],[1045,1,1,226,227]]],[44,7,7,227,234,[[1052,3,3,227,230],[1053,1,1,230,231],[1054,1,1,231,232],[1060,2,2,232,234]]],[45,4,4,234,238,[[1062,1,1,234,235],[1065,1,1,235,236],[1077,2,2,236,238]]],[46,11,10,238,248,[[1079,3,3,238,241],[1084,1,1,241,242],[1088,3,2,242,244],[1089,4,4,244,248]]],[47,5,5,248,253,[[1091,1,1,248,249],[1092,1,1,249,250],[1094,3,3,250,253]]],[48,1,1,253,254,[[1102,1,1,253,254]]],[49,3,3,254,257,[[1103,1,1,254,255],[1104,1,1,255,256],[1106,1,1,256,257]]],[50,1,1,257,258,[[1110,1,1,257,258]]],[53,2,1,258,259,[[1119,2,1,258,259]]],[54,9,9,259,268,[[1125,3,3,259,262],[1127,1,1,262,263],[1128,5,5,263,268]]],[55,1,1,268,269,[[1131,1,1,268,269]]],[57,4,3,269,272,[[1135,2,1,269,270],[1140,1,1,270,271],[1143,1,1,271,272]]],[65,3,3,272,275,[[1183,1,1,272,273],[1187,2,2,273,275]]]],[23206,23347,23450,23457,23487,23625,23627,23641,23642,23655,23685,23687,23759,23776,23779,23890,23957,24043,24044,24050,24051,24066,24075,24077,24086,24088,24089,24100,24109,24129,24175,24205,24255,24371,24429,24430,24469,24470,24527,24529,24538,24557,24575,24577,24602,24606,24624,24635,24636,24688,24772,24782,24784,24785,24796,24802,24803,24826,24860,24936,24941,25022,25081,25106,25119,25192,25193,25273,25319,25321,25327,25349,25379,25398,25403,25411,25423,25468,25473,25551,25553,25571,25572,25579,25607,25624,25644,25691,25693,25704,25707,25726,25727,25736,25758,25802,25879,25885,25898,25925,26030,26077,26092,26112,26190,26217,26221,26234,26240,26246,26247,26250,26253,26283,26292,26293,26294,26295,26296,26297,26301,26302,26314,26322,26344,26347,26356,26357,26361,26362,26364,26365,26397,26399,26402,26407,26409,26410,26418,26421,26423,26427,26430,26435,26444,26496,26497,26498,26513,26565,26607,26624,26625,26629,26643,26650,26651,26663,26668,26675,26677,26683,26687,26689,26691,26692,26696,26708,26715,26720,26724,26731,26736,26742,26743,26745,26764,26767,26780,26782,26783,26784,26785,26808,26836,26888,26896,26913,26914,26915,26977,27144,27207,27212,27220,27222,27233,27288,27318,27322,27348,27387,27498,27513,27578,27606,27649,27711,27712,27714,27717,27721,27725,27737,27752,27756,27781,27787,27788,27806,27807,27828,27836,27837,27844,27851,27917,28102,28114,28115,28118,28175,28319,28322,28380,28437,28782,28787,28826,28827,28837,28923,29005,29021,29028,29029,29033,29043,29072,29101,29143,29145,29149,29357,29368,29421,29455,29546,29708,29824,29825,29826,29864,29879,29880,29886,29887,29888,29935,30004,30103,30204,30978,31062,31063]]],["+",[19,18,[[39,5,4,0,4,[[936,1,1,0,1],[953,4,3,1,4]]],[40,1,1,4,5,[[957,1,1,4,5]]],[41,2,2,5,7,[[973,1,1,5,6],[977,1,1,6,7]]],[42,1,1,7,8,[[998,1,1,7,8]]],[43,2,2,8,10,[[1019,1,1,8,9],[1040,1,1,9,10]]],[44,2,2,10,12,[[1052,1,1,10,11],[1053,1,1,11,12]]],[45,1,1,12,13,[[1077,1,1,12,13]]],[46,1,1,13,14,[[1079,1,1,13,14]]],[47,1,1,14,15,[[1094,1,1,14,15]]],[54,1,1,15,16,[[1125,1,1,15,16]]],[65,2,2,16,18,[[1183,1,1,16,17],[1187,1,1,17,18]]]],[23347,24043,24050,24051,24255,24941,25119,26112,26977,27752,28114,28118,28782,28826,29143,29826,30978,31063]]],["He",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26914]]],["I",[35,34,[[39,4,4,0,4,[[944,2,2,0,2],[954,2,2,2,4]]],[40,4,4,4,8,[[964,2,2,4,6],[966,1,1,6,7],[970,1,1,7,8]]],[41,10,10,8,18,[[974,1,1,8,9],[976,1,1,9,10],[981,2,2,10,12],[982,1,1,12,13],[983,1,1,13,14],[985,1,1,14,15],[991,2,2,15,17],[994,1,1,17,18]]],[42,1,1,18,19,[[1006,1,1,18,19]]],[43,8,7,19,26,[[1028,1,1,19,20],[1030,1,1,20,21],[1033,1,1,21,22],[1035,1,1,22,23],[1036,2,1,23,24],[1039,1,1,24,25],[1042,1,1,25,26]]],[44,1,1,26,27,[[1060,1,1,26,27]]],[46,3,3,27,30,[[1079,2,2,27,29],[1084,1,1,29,30]]],[47,1,1,30,31,[[1094,1,1,30,31]]],[48,1,1,31,32,[[1102,1,1,31,32]]],[49,1,1,32,33,[[1103,1,1,32,33]]],[50,1,1,33,34,[[1110,1,1,33,34]]]],[23685,23687,24086,24089,24527,24529,24624,24785,25022,25106,25319,25321,25398,25423,25551,25736,25758,25879,26497,27322,27387,27513,27578,27606,27721,27806,28322,28827,28837,28923,29149,29357,29368,29546]]],["am",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24782]]],["me",[242,221,[[39,28,24,0,24,[[931,1,1,0,1],[938,2,2,1,3],[939,1,1,3,4],[942,2,2,4,6],[943,3,3,6,9],[946,1,1,9,10],[947,2,2,10,12],[950,1,1,12,13],[951,1,1,13,14],[953,5,2,14,16],[954,7,6,16,22],[955,1,1,22,23],[956,1,1,23,24]]],[40,21,21,24,45,[[961,1,1,24,25],[962,2,2,25,27],[963,2,2,27,29],[964,1,1,29,30],[965,3,3,30,33],[966,4,4,33,37],[968,1,1,37,38],[970,6,6,38,44],[971,1,1,44,45]]],[41,32,31,45,76,[[973,1,1,45,46],[974,1,1,46,47],[976,2,1,47,48],[978,2,2,48,50],[980,1,1,50,51],[981,2,2,51,53],[982,2,2,53,55],[983,1,1,55,56],[984,2,2,56,58],[985,1,1,58,59],[986,3,3,59,62],[987,1,1,62,63],[988,2,2,63,65],[990,6,6,65,71],[992,1,1,71,72],[994,3,3,72,75],[996,1,1,75,76]]],[42,97,86,76,162,[[997,2,2,76,78],[1000,1,1,78,79],[1001,8,8,79,87],[1002,13,11,87,98],[1003,8,8,98,106],[1004,13,12,106,118],[1005,1,1,118,119],[1006,3,3,119,122],[1007,1,1,122,123],[1008,4,4,123,127],[1009,5,5,127,132],[1010,11,8,132,140],[1011,4,4,140,144],[1012,9,5,144,149],[1013,7,7,149,156],[1014,1,1,156,157],[1015,1,1,157,158],[1016,2,2,158,160],[1017,3,2,160,162]]],[43,30,28,162,190,[[1024,1,1,162,163],[1025,2,2,163,165],[1026,3,3,165,168],[1027,1,1,168,169],[1028,1,1,169,170],[1029,1,1,170,171],[1033,1,1,171,172],[1037,1,1,172,173],[1039,5,5,173,178],[1040,3,2,178,180],[1041,3,3,180,183],[1042,1,1,183,184],[1043,6,5,184,189],[1045,1,1,189,190]]],[44,3,3,190,193,[[1052,2,2,190,192],[1054,1,1,192,193]]],[45,3,3,193,196,[[1062,1,1,193,194],[1065,1,1,194,195],[1077,1,1,195,196]]],[46,7,6,196,202,[[1088,3,2,196,198],[1089,4,4,198,202]]],[47,3,3,202,205,[[1091,1,1,202,203],[1092,1,1,203,204],[1094,1,1,204,205]]],[49,2,2,205,207,[[1104,1,1,205,206],[1106,1,1,206,207]]],[53,2,1,207,208,[[1119,2,1,207,208]]],[54,8,8,208,216,[[1125,2,2,208,210],[1127,1,1,210,211],[1128,5,5,211,216]]],[55,1,1,216,217,[[1131,1,1,216,217]]],[57,4,3,217,220,[[1135,2,1,217,218],[1140,1,1,218,219],[1143,1,1,219,220]]],[65,1,1,220,221,[[1187,1,1,220,221]]]],[23206,23450,23457,23487,23625,23627,23641,23642,23655,23759,23776,23779,23890,23957,24044,24051,24075,24077,24088,24100,24109,24129,24175,24205,24371,24429,24430,24469,24470,24538,24557,24575,24577,24602,24606,24635,24636,24688,24772,24784,24796,24802,24803,24826,24860,24936,25022,25081,25192,25193,25273,25327,25349,25379,25403,25411,25468,25473,25553,25571,25572,25579,25607,25624,25644,25691,25693,25704,25707,25726,25727,25802,25885,25898,25925,26030,26077,26092,26190,26217,26221,26234,26240,26246,26247,26250,26253,26283,26292,26293,26294,26295,26296,26297,26301,26302,26314,26322,26344,26347,26356,26357,26361,26362,26364,26365,26397,26399,26402,26407,26409,26410,26418,26421,26423,26427,26430,26435,26444,26496,26498,26513,26565,26607,26624,26625,26629,26643,26650,26651,26663,26668,26675,26677,26683,26687,26689,26691,26692,26696,26708,26715,26720,26724,26731,26736,26742,26743,26745,26764,26767,26780,26782,26783,26784,26785,26808,26836,26888,26896,26913,26915,27144,27207,27212,27220,27222,27233,27288,27318,27348,27498,27649,27711,27712,27714,27717,27725,27737,27756,27781,27787,27788,27807,27828,27836,27837,27844,27851,27917,28102,28115,28175,28380,28437,28787,29005,29021,29028,29029,29033,29043,29072,29101,29145,29421,29455,29708,29824,29825,29864,29879,29880,29886,29887,29888,29935,30004,30103,30204,31062]]],["my",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24066]]],["should",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28319]]]]},{"k":"G3166","v":[["things",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30324]]]]},{"k":"G3167","v":[["*",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[24942,26960]]],["things",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24942]]],["works",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26960]]]]},{"k":"G3168","v":[["*",[3,3,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]],[60,1,1,2,3,[[1156,1,1,2,3]]]],[25344,27612,30495]]],["magnificence",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27612]]],["majesty",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30495]]],["power",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25344]]]]},{"k":"G3169","v":[["excellent",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30496]]]]},{"k":"G3170","v":[["*",[8,8,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,2,2,1,3,[[973,2,2,1,3]]],[43,3,3,3,6,[[1022,1,1,3,4],[1027,1,1,4,5],[1036,1,1,5,6]]],[46,1,1,6,7,[[1087,1,1,6,7]]],[49,1,1,7,8,[[1103,1,1,7,8]]]],[23923,24939,24951,27072,27305,27602,28986,29381]]],["+",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24951]]],["enlarge",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23923]]],["enlarged",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28986]]],["magnified",[3,3,[[43,2,2,0,2,[[1022,1,1,0,1],[1036,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]]],[27072,27602,29381]]],["magnify",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]]],[24939,27305]]]]},{"k":"G3171","v":[["greatly",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29452]]]]},{"k":"G3172","v":[["*",[3,3,[[57,2,2,0,2,[[1133,1,1,0,1],[1140,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[29966,30093,30697]]],["Majesty",[2,2,[[57,2,2,0,2,[[1133,1,1,0,1],[1140,1,1,1,2]]]],[29966,30093]]],["majesty",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30697]]]]},{"k":"G3173","v":[["*",[195,185,[[39,20,20,0,20,[[930,1,1,0,1],[932,1,1,1,2],[933,2,2,2,4],[935,1,1,4,5],[936,2,2,5,7],[943,1,1,7,8],[948,2,2,8,10],[950,2,2,10,12],[952,3,3,12,15],[955,3,3,15,18],[956,2,2,18,20]]],[40,15,15,20,35,[[957,1,1,20,21],[960,4,4,21,25],[961,3,3,25,28],[966,2,2,28,30],[969,1,1,30,31],[970,1,1,31,32],[971,2,2,32,34],[972,1,1,34,35]]],[41,26,25,35,60,[[973,3,3,35,38],[974,2,2,38,40],[976,3,3,40,43],[977,1,1,43,44],[978,1,1,44,45],[979,1,1,45,46],[980,2,2,46,48],[981,1,1,48,49],[985,1,1,49,50],[986,1,1,50,51],[988,1,1,51,52],[989,1,1,52,53],[991,1,1,53,54],[993,3,2,54,56],[994,1,1,56,57],[995,2,2,57,59],[996,1,1,59,60]]],[42,5,5,60,65,[[1002,1,1,60,61],[1003,1,1,61,62],[1007,1,1,62,63],[1015,1,1,63,64],[1017,1,1,64,65]]],[43,31,29,65,94,[[1019,1,1,65,66],[1021,2,1,66,67],[1022,2,2,67,69],[1023,1,1,69,70],[1024,3,3,70,73],[1025,8,7,73,80],[1027,1,1,80,81],[1028,2,2,81,83],[1031,1,1,83,84],[1032,1,1,84,85],[1033,2,2,85,87],[1036,4,4,87,91],[1040,1,1,91,92],[1043,2,2,92,94]]],[44,1,1,94,95,[[1054,1,1,94,95]]],[45,2,2,95,97,[[1070,1,1,95,96],[1077,1,1,96,97]]],[46,1,1,97,98,[[1088,1,1,97,98]]],[48,1,1,98,99,[[1101,1,1,98,99]]],[53,2,2,99,101,[[1121,1,1,99,100],[1124,1,1,100,101]]],[54,1,1,101,102,[[1126,1,1,101,102]]],[55,1,1,102,103,[[1130,1,1,102,103]]],[57,6,6,103,109,[[1136,1,1,103,104],[1140,1,1,104,105],[1142,2,2,105,107],[1143,1,1,107,108],[1145,1,1,108,109]]],[64,1,1,109,110,[[1166,1,1,109,110]]],[65,82,75,110,185,[[1167,1,1,110,111],[1168,1,1,111,112],[1171,2,2,112,114],[1172,5,5,114,119],[1173,3,3,119,122],[1174,3,3,122,125],[1175,2,2,125,127],[1176,1,1,127,128],[1177,8,8,128,136],[1178,6,6,136,142],[1179,4,4,142,146],[1180,7,7,146,153],[1181,2,2,153,155],[1182,11,8,155,163],[1183,4,4,163,167],[1184,9,7,167,174],[1185,6,5,174,179],[1186,3,3,179,182],[1187,4,3,182,185]]]],[23179,23225,23253,23269,23343,23369,23371,23661,23817,23818,23908,23910,23978,23981,23988,24175,24179,24189,24197,24203,24241,24355,24360,24362,24364,24371,24375,24406,24630,24631,24719,24769,24860,24863,24877,24908,24925,24935,24982,24983,25088,25096,25101,25136,25195,25211,25273,25282,25349,25537,25569,25646,25666,25768,25837,25849,25876,25958,25981,26043,26275,26365,26566,26856,26909,26969,27055,27064,27070,27109,27127,27173,27176,27177,27178,27183,27184,27185,27186,27189,27270,27312,27335,27424,27445,27509,27511,27612,27613,27619,27620,27743,27845,27847,28157,28551,28785,29004,29336,29747,29794,29847,29921,30028,30103,30154,30168,30196,30261,30678,30707,30739,30781,30791,30797,30803,30805,30806,30810,30812,30820,30824,30835,30837,30840,30842,30854,30864,30880,30883,30884,30885,30887,30889,30890,30891,30892,30894,30900,30901,30903,30905,30910,30913,30921,30924,30928,30933,30934,30935,30941,30944,30945,30947,30949,30955,30963,30966,30968,30971,30972,30973,30975,30976,30980,30981,30993,30994,30995,31003,31009,31011,31012,31014,31018,31019,31022,31034,31035,31039,31049,31050,31056,31063,31065]]],["+",[5,5,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[57,2,2,2,4,[[1140,1,1,2,3],[1143,1,1,3,4]]],[65,1,1,4,5,[[1179,1,1,4,5]]]],[24364,24982,30103,30196,30924]]],["GREAT",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30980]]],["Great",[3,3,[[43,2,2,0,2,[[1036,2,2,0,2]]],[65,1,1,2,3,[[1181,1,1,2,3]]]],[27613,27619,30949]]],["day",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26856]]],["great",[140,133,[[39,18,18,0,18,[[930,1,1,0,1],[932,1,1,1,2],[933,2,2,2,4],[935,1,1,4,5],[936,2,2,5,7],[943,1,1,7,8],[948,2,2,8,10],[950,2,2,10,12],[952,3,3,12,15],[955,1,1,15,16],[956,2,2,16,18]]],[40,8,8,18,26,[[960,3,3,18,21],[961,2,2,21,23],[966,1,1,23,24],[969,1,1,24,25],[972,1,1,25,26]]],[41,17,16,26,42,[[973,2,2,26,28],[974,1,1,28,29],[976,2,2,29,31],[977,1,1,31,32],[978,1,1,32,33],[979,1,1,33,34],[980,1,1,34,35],[981,1,1,35,36],[985,1,1,36,37],[986,1,1,37,38],[988,1,1,38,39],[993,3,2,39,41],[996,1,1,41,42]]],[42,3,3,42,45,[[1002,1,1,42,43],[1003,1,1,43,44],[1017,1,1,44,45]]],[43,20,19,45,64,[[1019,1,1,45,46],[1021,2,1,46,47],[1022,2,2,47,49],[1023,1,1,49,50],[1024,1,1,50,51],[1025,4,4,51,55],[1027,1,1,55,56],[1028,2,2,56,58],[1032,1,1,58,59],[1033,1,1,59,60],[1036,2,2,60,62],[1040,1,1,62,63],[1043,1,1,63,64]]],[44,1,1,64,65,[[1054,1,1,64,65]]],[45,1,1,65,66,[[1077,1,1,65,66]]],[48,1,1,66,67,[[1101,1,1,66,67]]],[53,2,2,67,69,[[1121,1,1,67,68],[1124,1,1,68,69]]],[54,1,1,69,70,[[1126,1,1,69,70]]],[55,1,1,70,71,[[1130,1,1,70,71]]],[57,3,3,71,74,[[1136,1,1,71,72],[1142,1,1,72,73],[1145,1,1,73,74]]],[64,1,1,74,75,[[1166,1,1,74,75]]],[65,63,58,75,133,[[1167,1,1,75,76],[1168,1,1,76,77],[1172,3,3,77,80],[1173,1,1,80,81],[1174,2,2,81,83],[1175,2,2,83,85],[1177,8,8,85,93],[1178,5,5,93,98],[1179,2,2,98,100],[1180,3,3,100,103],[1181,1,1,103,104],[1182,11,8,104,112],[1183,3,3,112,115],[1184,8,7,115,122],[1185,5,5,122,127],[1186,3,3,127,130],[1187,4,3,130,133]]]],[23179,23225,23253,23269,23343,23369,23371,23661,23817,23818,23908,23910,23978,23981,23988,24189,24197,24203,24355,24360,24362,24375,24406,24631,24719,24877,24908,24925,24983,25088,25101,25136,25195,25211,25282,25349,25537,25569,25646,25837,25849,26043,26275,26365,26909,26969,27055,27064,27070,27109,27127,27177,27178,27184,27186,27270,27312,27335,27445,27509,27612,27620,27743,27845,28157,28785,29336,29747,29794,29847,29921,30028,30168,30261,30678,30707,30739,30797,30805,30810,30824,30835,30837,30842,30854,30880,30883,30884,30885,30887,30889,30890,30891,30892,30894,30900,30903,30905,30910,30921,30928,30934,30945,30947,30955,30963,30966,30968,30971,30972,30973,30975,30976,30981,30993,30994,30995,31003,31009,31011,31012,31014,31018,31019,31022,31034,31035,31039,31049,31050,31056,31063,31065]]],["greatest",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27186]]],["high",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30154]]],["large",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24769,25876]]],["loud",[33,33,[[39,2,2,0,2,[[955,2,2,0,2]]],[40,4,4,2,6,[[957,1,1,2,3],[961,1,1,3,4],[971,2,2,4,6]]],[41,7,7,6,13,[[973,1,1,6,7],[976,1,1,7,8],[980,1,1,8,9],[989,1,1,9,10],[991,1,1,10,11],[995,2,2,11,13]]],[42,1,1,13,14,[[1007,1,1,13,14]]],[43,6,6,14,20,[[1024,2,2,14,16],[1025,1,1,16,17],[1031,1,1,17,18],[1033,1,1,18,19],[1043,1,1,19,20]]],[65,13,13,20,33,[[1171,2,2,20,22],[1172,1,1,22,23],[1173,2,2,23,25],[1174,1,1,25,26],[1176,1,1,26,27],[1178,1,1,27,28],[1180,4,4,28,32],[1185,1,1,32,33]]]],[24175,24179,24241,24371,24860,24863,24935,25096,25273,25666,25768,25958,25981,26566,27173,27176,27183,27424,27511,27847,30781,30791,30803,30812,30820,30840,30864,30901,30933,30935,30941,30944,31034]]],["mighty",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30806]]],["one",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27185]]],["ones",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24630]]],["strong",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30995]]],["the",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27189]]],["thing",[2,2,[[45,1,1,0,1,[[1070,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[28551,29004]]],["things",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30913]]]]},{"k":"G3174","v":[["greatness",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29225]]]]},{"k":"G3175","v":[["*",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[65,2,2,1,3,[[1172,1,1,1,2],[1184,1,1,2,3]]]],[24428,30808,31016]]],["+",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24428]]],["men",[2,2,[[65,2,2,0,2,[[1172,1,1,0,1],[1184,1,1,1,2]]]],[30808,31016]]]]},{"k":"G3176","v":[["great",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30483]]]]},{"k":"G3177","v":[["*",[7,7,[[39,1,1,0,1,[[929,1,1,0,1]]],[40,3,3,1,4,[[961,1,1,1,2],[971,2,2,2,4]]],[42,1,1,4,5,[[997,1,1,4,5]]],[43,2,2,5,7,[[1021,1,1,5,6],[1030,1,1,6,7]]]],[23167,24405,24848,24860,26085,27058,27370]]],["+",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27370]]],["interpreted",[6,6,[[39,1,1,0,1,[[929,1,1,0,1]]],[40,3,3,1,4,[[961,1,1,1,2],[971,2,2,2,4]]],[42,1,1,4,5,[[997,1,1,4,5]]],[43,1,1,5,6,[[1021,1,1,5,6]]]],[23167,24405,24848,24860,26085,27058]]]]},{"k":"G3178","v":[["drunkenness",[3,3,[[41,1,1,0,1,[[993,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]]],[25860,28279,29183]]]]},{"k":"G3179","v":[["*",[5,5,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,2,2,1,3,[[1030,1,1,1,2],[1036,1,1,2,3]]],[45,1,1,3,4,[[1074,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]]],[25624,27384,27611,28667,29478]]],["away",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27611]]],["out",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25624]]],["remove",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28667]]],["removed",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27384]]],["translated",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29478]]]]},{"k":"G3180","v":[["*",[2,2,[[48,2,2,0,2,[[1100,1,1,0,1],[1102,1,1,1,2]]]],[29286,29348]]],["+",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29286]]],["wiles",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29348]]]]},{"k":"G3181","v":[["borders",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24487]]]]},{"k":"G3182","v":[["*",[3,3,[[41,1,1,0,1,[[984,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]],[51,1,1,2,3,[[1115,1,1,2,3]]]],[25504,29322,29628]]],["+",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29322]]],["drunken",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]]],[25504,29628]]]]},{"k":"G3183","v":[["*",[2,2,[[45,2,2,0,2,[[1066,1,1,0,1],[1067,1,1,1,2]]]],[28465,28477]]],["drunkard",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28465]]],["drunkards",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28477]]]]},{"k":"G3184","v":[["*",[7,7,[[39,1,1,0,1,[[952,1,1,0,1]]],[42,1,1,1,2,[[998,1,1,1,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]],[45,1,1,3,4,[[1072,1,1,3,4]]],[51,1,1,4,5,[[1115,1,1,4,5]]],[65,2,2,5,7,[[1183,2,2,5,7]]]],[24006,26105,26964,28621,29628,30977,30981]]],["drunk",[2,2,[[42,1,1,0,1,[[998,1,1,0,1]]],[65,1,1,1,2,[[1183,1,1,1,2]]]],[26105,30977]]],["drunken",[5,5,[[39,1,1,0,1,[[952,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[51,1,1,3,4,[[1115,1,1,3,4]]],[65,1,1,4,5,[[1183,1,1,4,5]]]],[24006,26964,28621,29628,30981]]]]},{"k":"G3185","v":[["more",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23823]]]]},{"k":"G3186","v":[["greater",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30662]]]]},{"k":"G3187","v":[["*",[45,42,[[39,9,8,0,8,[[939,2,1,0,1],[940,1,1,1,2],[941,1,1,2,3],[946,2,2,3,5],[951,3,3,5,8]]],[40,3,3,8,11,[[960,1,1,8,9],[965,1,1,9,10],[968,1,1,10,11]]],[41,7,6,11,17,[[979,2,1,11,12],[981,1,1,12,13],[984,1,1,13,14],[994,3,3,14,17]]],[42,13,12,17,29,[[997,1,1,17,18],[1000,1,1,18,19],[1001,2,2,19,21],[1004,1,1,21,22],[1006,1,1,22,23],[1009,2,1,23,24],[1010,2,2,24,26],[1011,2,2,26,28],[1015,1,1,28,29]]],[44,1,1,29,30,[[1054,1,1,29,30]]],[45,2,2,30,32,[[1074,1,1,30,31],[1075,1,1,31,32]]],[57,4,4,32,36,[[1138,2,2,32,34],[1141,1,1,34,35],[1143,1,1,35,36]]],[58,2,2,36,38,[[1148,1,1,36,37],[1149,1,1,37,38]]],[60,1,1,38,39,[[1157,1,1,38,39]]],[61,3,3,39,42,[[1161,1,1,39,40],[1162,1,1,40,41],[1163,1,1,41,42]]]],[23470,23495,23571,23728,23731,23929,23935,23937,24355,24572,24704,25223,25347,25477,25888,25890,25891,26094,26168,26230,26246,26434,26510,26646,26680,26696,26712,26719,26836,28167,28678,28683,30057,30060,30116,30198,30320,30343,30511,30599,30607,30633]]],["Greater",[1,1,[[42,1,1,0,1,[[1011,1,1,0,1]]]],[26712]]],["elder",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28167]]],["greater",[32,29,[[39,5,4,0,4,[[939,2,1,0,1],[940,1,1,1,2],[951,2,2,2,4]]],[40,2,2,4,6,[[960,1,1,4,5],[968,1,1,5,6]]],[41,4,3,6,9,[[979,2,1,6,7],[984,1,1,7,8],[994,1,1,8,9]]],[42,11,10,9,19,[[1000,1,1,9,10],[1001,2,2,10,12],[1004,1,1,12,13],[1006,1,1,13,14],[1009,2,1,14,15],[1010,2,2,15,17],[1011,1,1,17,18],[1015,1,1,18,19]]],[45,1,1,19,20,[[1075,1,1,19,20]]],[57,4,4,20,24,[[1138,2,2,20,22],[1141,1,1,22,23],[1143,1,1,23,24]]],[58,1,1,24,25,[[1148,1,1,24,25]]],[60,1,1,25,26,[[1157,1,1,25,26]]],[61,3,3,26,29,[[1161,1,1,26,27],[1162,1,1,27,28],[1163,1,1,28,29]]]],[23470,23495,23935,23937,24355,24704,25223,25477,25891,26168,26230,26246,26434,26510,26646,26680,26696,26719,26836,28683,30057,30060,30116,30198,30320,30511,30599,30607,30633]]],["greatest",[9,9,[[39,4,4,0,4,[[941,1,1,0,1],[946,2,2,1,3],[951,1,1,3,4]]],[40,1,1,4,5,[[965,1,1,4,5]]],[41,3,3,5,8,[[981,1,1,5,6],[994,2,2,6,8]]],[45,1,1,8,9,[[1074,1,1,8,9]]]],[23571,23728,23731,23929,24572,25347,25888,25890,28678]]],["more",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30343]]],["things",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26094]]]]},{"k":"G3188","v":[["ink",[3,3,[[46,1,1,0,1,[[1080,1,1,0,1]]],[62,1,1,1,2,[[1164,1,1,1,2]]],[63,1,1,2,3,[[1165,1,1,2,3]]]],[28844,30657,30671]]]]},{"k":"G3189","v":[["black",[3,3,[[39,1,1,0,1,[[933,1,1,0,1]]],[65,2,2,1,3,[[1172,2,2,1,3]]]],[23270,30798,30805]]]]},{"k":"G3190","v":[["Melea",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25056]]]]},{"k":"G3191","v":[["*",[3,3,[[40,1,1,0,1,[[969,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]]],[24728,27047,29762]]],["imagine",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27047]]],["premeditate",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24728]]],["upon",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29762]]]]},{"k":"G3192","v":[["honey",[4,4,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[65,2,2,2,4,[[1176,2,2,2,4]]]],[23196,24221,30870,30871]]]]},{"k":"G3193","v":[["+",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26033]]]]},{"k":"G3194","v":[["Melita",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27900]]]]},{"k":"G3195","v":[["*",[109,106,[[39,9,9,0,9,[[930,1,1,0,1],[931,1,1,1,2],[939,1,1,2,3],[940,1,1,3,4],[944,1,1,4,5],[945,2,2,5,7],[948,1,1,7,8],[952,1,1,8,9]]],[40,2,2,9,11,[[966,1,1,9,10],[969,1,1,10,11]]],[41,12,12,11,23,[[975,1,1,11,12],[979,1,1,12,13],[981,2,2,13,15],[982,1,1,15,16],[985,1,1,16,17],[991,2,2,17,19],[993,2,2,19,21],[994,1,1,21,22],[996,1,1,22,23]]],[42,12,11,23,34,[[1000,1,1,23,24],[1002,3,3,24,27],[1003,3,2,27,29],[1007,1,1,29,30],[1008,2,2,30,32],[1010,1,1,32,33],[1014,1,1,33,34]]],[43,34,33,34,67,[[1020,1,1,34,35],[1022,1,1,35,36],[1028,1,1,36,37],[1029,1,1,37,38],[1030,1,1,38,39],[1033,1,1,39,40],[1034,1,1,40,41],[1035,1,1,41,42],[1036,1,1,42,43],[1037,5,4,43,47],[1038,2,2,47,49],[1039,3,3,49,52],[1040,5,5,52,57],[1041,1,1,57,58],[1042,1,1,58,59],[1043,3,3,59,62],[1044,4,4,62,66],[1045,1,1,66,67]]],[44,5,5,67,72,[[1049,1,1,67,68],[1050,1,1,68,69],[1053,3,3,69,72]]],[45,1,1,72,73,[[1064,1,1,72,73]]],[47,1,1,73,74,[[1093,1,1,73,74]]],[48,1,1,74,75,[[1097,1,1,74,75]]],[50,1,1,75,76,[[1108,1,1,75,76]]],[51,1,1,76,77,[[1113,1,1,76,77]]],[53,3,3,77,80,[[1119,1,1,77,78],[1122,1,1,78,79],[1124,1,1,79,80]]],[54,1,1,80,81,[[1128,1,1,80,81]]],[57,10,10,81,91,[[1133,1,1,81,82],[1134,1,1,82,83],[1138,1,1,83,84],[1140,1,1,84,85],[1141,1,1,85,86],[1142,2,2,86,88],[1143,2,2,88,90],[1145,1,1,90,91]]],[58,1,1,91,92,[[1147,1,1,91,92]]],[59,1,1,92,93,[[1155,1,1,92,93]]],[60,1,1,93,94,[[1157,1,1,93,94]]],[65,13,12,94,106,[[1167,1,1,94,95],[1168,2,1,95,96],[1169,3,3,96,99],[1172,1,1,99,100],[1174,1,1,100,101],[1176,2,2,101,103],[1178,2,2,103,105],[1183,1,1,105,106]]]],[23182,23199,23473,23521,23699,23712,23722,23814,23963,24620,24721,25032,25197,25332,25345,25364,25527,25735,25742,25833,25862,25887,26012,26203,26263,26272,26328,26363,26367,26574,26584,26613,26690,26817,26999,27094,27335,27343,27396,27510,27554,27571,27612,27629,27633,27639,27664,27691,27701,27720,27730,27733,27737,27749,27754,27761,27764,27784,27800,27825,27845,27846,27857,27865,27885,27888,27905,28046,28061,28129,28134,28154,28432,29125,29227,29511,29594,29712,29755,29807,29871,29977,29982,30049,30097,30116,30134,30160,30180,30192,30255,30305,30466,30506,30716,30727,30748,30756,30762,30804,30840,30865,30868,30895,30896,30983]]],["+",[3,3,[[41,1,1,0,1,[[985,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]],[43,1,1,2,3,[[1040,1,1,2,3]]]],[25527,26203,27764]]],["about",[5,5,[[43,3,3,0,3,[[1020,1,1,0,1],[1035,1,1,1,2],[1037,1,1,2,3]]],[57,1,1,3,4,[[1140,1,1,3,4]]],[65,1,1,4,5,[[1176,1,1,4,5]]]],[26999,27571,27629,30097,30865]]],["after",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30180]]],["afterwards",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29125]]],["almost",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27691]]],["be",[2,2,[[57,1,1,0,1,[[1133,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[29977,30305]]],["begin",[1,1,[[65,1,1,0,1,[[1176,1,1,0,1]]]],[30868]]],["come",[16,16,[[39,2,2,0,2,[[931,1,1,0,1],[940,1,1,1,2]]],[41,1,1,2,3,[[975,1,1,2,3]]],[44,2,2,3,5,[[1050,1,1,3,4],[1053,1,1,4,5]]],[45,1,1,5,6,[[1064,1,1,5,6]]],[48,1,1,6,7,[[1097,1,1,6,7]]],[50,1,1,7,8,[[1108,1,1,7,8]]],[53,2,2,8,10,[[1122,1,1,8,9],[1124,1,1,9,10]]],[57,6,6,10,16,[[1134,1,1,10,11],[1138,1,1,11,12],[1141,1,1,12,13],[1142,1,1,13,14],[1143,1,1,14,15],[1145,1,1,15,16]]]],[23199,23521,25032,28061,28154,28432,29227,29511,29755,29807,29982,30049,30116,30134,30192,30255]]],["hereafter",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29712]]],["intend",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27094]]],["intending",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27639]]],["meaning",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27857]]],["minding",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27639]]],["ready",[4,4,[[41,1,1,0,1,[[979,1,1,0,1]]],[43,1,1,1,2,[[1037,1,1,1,2]]],[65,2,2,2,4,[[1169,1,1,2,3],[1178,1,1,3,4]]]],[25197,27633,30748,30895]]],["shall",[22,22,[[39,5,5,0,5,[[944,1,1,0,1],[945,2,2,1,3],[948,1,1,3,4],[952,1,1,4,5]]],[40,1,1,5,6,[[969,1,1,5,6]]],[41,3,3,6,9,[[981,1,1,6,7],[993,2,2,7,9]]],[43,3,3,9,12,[[1040,1,1,9,10],[1041,1,1,10,11],[1043,1,1,11,12]]],[44,3,3,12,15,[[1049,1,1,12,13],[1053,2,2,13,15]]],[54,1,1,15,16,[[1128,1,1,15,16]]],[57,1,1,16,17,[[1142,1,1,16,17]]],[59,1,1,17,18,[[1155,1,1,17,18]]],[65,4,4,18,22,[[1167,1,1,18,19],[1168,1,1,19,20],[1169,1,1,20,21],[1183,1,1,21,22]]]],[23699,23712,23722,23814,23963,24721,25345,25833,25862,27737,27784,27825,28046,28129,28134,29871,30160,30466,30716,30727,30756,30983]]],["shalt",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30727]]],["should",[22,22,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,4,4,1,5,[[981,1,1,1,2],[991,1,1,2,3],[994,1,1,3,4],[996,1,1,4,5]]],[42,6,6,5,11,[[1002,1,1,5,6],[1003,1,1,6,7],[1007,1,1,7,8],[1008,2,2,8,10],[1014,1,1,10,11]]],[43,8,8,11,19,[[1028,1,1,11,12],[1036,1,1,12,13],[1037,1,1,13,14],[1039,1,1,14,15],[1040,1,1,15,16],[1043,2,2,16,18],[1045,1,1,18,19]]],[51,1,1,19,20,[[1113,1,1,19,20]]],[60,1,1,20,21,[[1157,1,1,20,21]]],[65,1,1,21,22,[[1172,1,1,21,22]]]],[24620,25332,25742,25887,26012,26328,26367,26574,26584,26613,26817,27335,27612,27664,27733,27761,27845,27846,27905,29594,30506,30804]]],["tarriest",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27720]]],["thou",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27730]]],["to",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27396]]],["was",[5,5,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[991,1,1,1,2]]],[43,2,2,2,4,[[1038,1,1,2,3],[1044,1,1,3,4]]],[65,1,1,4,5,[[1178,1,1,4,5]]]],[23473,25735,27701,27888,30896]]],["will",[6,5,[[39,1,1,0,1,[[930,1,1,0,1]]],[42,2,1,1,2,[[1003,2,1,1,2]]],[43,2,2,2,4,[[1034,1,1,2,3],[1044,1,1,3,4]]],[65,1,1,4,5,[[1169,1,1,4,5]]]],[23182,26363,27554,27865,30762]]],["wilt",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26690]]],["would",[9,9,[[41,1,1,0,1,[[982,1,1,0,1]]],[42,2,2,1,3,[[1002,2,2,1,3]]],[43,6,6,3,9,[[1029,1,1,3,4],[1033,1,1,4,5],[1040,2,2,5,7],[1042,1,1,7,8],[1044,1,1,8,9]]]],[25364,26263,26272,27343,27510,27749,27754,27800,27885]]],["yet",[1,1,[[65,1,1,0,1,[[1174,1,1,0,1]]]],[30840]]]]},{"k":"G3196","v":[["*",[34,24,[[39,2,2,0,2,[[933,2,2,0,2]]],[44,10,6,2,8,[[1051,4,2,2,4],[1052,3,2,4,6],[1057,3,2,6,8]]],[45,16,10,8,18,[[1067,3,1,8,9],[1073,13,9,9,18]]],[48,2,2,18,20,[[1100,1,1,18,19],[1101,1,1,19,20]]],[50,1,1,20,21,[[1109,1,1,20,21]]],[58,3,3,21,24,[[1148,2,2,21,23],[1149,1,1,23,24]]]],[23263,23264,28081,28087,28096,28114,28249,28250,28482,28646,28648,28652,28653,28654,28656,28659,28660,28661,29297,29334,29522,30324,30325,30338]]],["member",[5,4,[[45,4,3,0,3,[[1073,4,3,0,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]]],[28648,28653,28660,30324]]],["members",[29,21,[[39,2,2,0,2,[[933,2,2,0,2]]],[44,10,6,2,8,[[1051,4,2,2,4],[1052,3,2,4,6],[1057,3,2,6,8]]],[45,12,8,8,16,[[1067,3,1,8,9],[1073,9,7,9,16]]],[48,2,2,16,18,[[1100,1,1,16,17],[1101,1,1,17,18]]],[50,1,1,18,19,[[1109,1,1,18,19]]],[58,2,2,19,21,[[1148,1,1,19,20],[1149,1,1,20,21]]]],[23263,23264,28081,28087,28096,28114,28249,28250,28482,28646,28652,28654,28656,28659,28660,28661,29297,29334,29522,30325,30338]]]]},{"k":"G3197","v":[["Melchi",[2,2,[[41,2,2,0,2,[[975,2,2,0,2]]]],[25049,25053]]]]},{"k":"G3198","v":[["Melchisedec",[9,9,[[57,9,9,0,9,[[1137,2,2,0,2],[1138,1,1,2,3],[1139,6,6,3,9]]]],[30036,30040,30064,30065,30074,30075,30079,30081,30085]]]]},{"k":"G3199","v":[["*",[10,10,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,2,2,1,3,[[960,1,1,1,2],[968,1,1,2,3]]],[41,1,1,3,4,[[982,1,1,3,4]]],[42,2,2,4,6,[[1006,1,1,4,5],[1008,1,1,5,6]]],[43,1,1,6,7,[[1035,1,1,6,7]]],[45,2,2,7,9,[[1068,1,1,7,8],[1070,1,1,8,9]]],[59,1,1,9,10,[[1155,1,1,9,10]]]],[23888,24361,24687,25403,26494,26586,27574,28508,28549,30472]]],["+",[2,2,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[24687,25403]]],["care",[2,2,[[45,2,2,0,2,[[1068,1,1,0,1],[1070,1,1,1,2]]]],[28508,28549]]],["cared",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26586]]],["carest",[2,2,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]]],[23888,24361]]],["careth",[2,2,[[42,1,1,0,1,[[1006,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[26494,30472]]],["for",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27574]]]]},{"k":"G3200","v":[["parchments",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29883]]]]},{"k":"G3201","v":[["fault",[3,3,[[40,1,1,0,1,[[963,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]],[57,1,1,2,3,[[1140,1,1,2,3]]]],[24465,28174,30100]]]]},{"k":"G3202","v":[["complainers",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30688]]]]},{"k":"G3303","v":[["*",[181,180,[[39,20,19,0,19,[[931,1,1,0,1],[937,1,1,1,2],[938,1,1,2,3],[941,4,4,3,7],[944,2,2,7,9],[945,1,1,9,10],[948,1,1,10,11],[949,1,1,11,12],[950,3,2,12,14],[951,2,2,14,16],[953,1,1,16,17],[954,2,2,17,19]]],[40,8,8,19,27,[[957,1,1,19,20],[960,1,1,20,21],[965,1,1,21,22],[966,1,1,22,23],[968,1,1,23,24],[970,2,2,24,26],[972,1,1,26,27]]],[41,11,11,27,38,[[975,2,2,27,29],[980,1,1,29,30],[982,2,2,30,32],[983,1,1,32,33],[985,1,1,33,34],[994,1,1,34,35],[995,3,3,35,38]]],[42,6,6,38,44,[[1003,1,1,38,39],[1007,1,1,39,40],[1012,2,2,40,42],[1015,1,1,42,43],[1016,1,1,43,44]]],[43,50,50,44,94,[[1018,4,4,44,48],[1019,1,1,48,49],[1020,2,2,49,51],[1021,1,1,51,52],[1022,2,2,52,54],[1025,2,2,54,56],[1026,2,2,56,58],[1028,2,2,58,60],[1029,1,1,60,61],[1030,2,2,61,63],[1031,3,3,63,66],[1032,2,2,66,68],[1033,1,1,68,69],[1034,4,4,69,73],[1035,1,1,73,74],[1036,3,3,74,77],[1038,1,1,77,78],[1039,2,2,78,80],[1040,4,4,80,84],[1042,2,2,84,86],[1043,2,2,86,88],[1044,3,3,88,91],[1045,3,3,91,94]]],[44,18,18,94,112,[[1046,1,1,94,95],[1047,3,3,95,98],[1048,1,1,98,99],[1050,1,1,99,100],[1051,1,1,100,101],[1052,1,1,101,102],[1053,2,2,102,104],[1054,1,1,104,105],[1055,1,1,105,106],[1056,3,3,106,109],[1059,3,3,109,112]]],[45,19,19,112,131,[[1062,3,3,112,115],[1063,1,1,115,116],[1064,1,1,116,117],[1066,1,1,117,118],[1067,2,2,118,120],[1068,1,1,120,121],[1070,2,2,121,123],[1072,3,3,123,126],[1073,2,2,126,128],[1075,1,1,128,129],[1076,2,2,129,131]]],[46,7,7,131,138,[[1079,1,1,131,132],[1081,1,1,132,133],[1085,1,1,133,134],[1086,1,1,134,135],[1087,2,2,135,137],[1089,1,1,137,138]]],[47,3,3,138,141,[[1094,3,3,138,141]]],[48,1,1,141,142,[[1100,1,1,141,142]]],[49,5,5,142,147,[[1103,3,3,142,145],[1105,2,2,145,147]]],[50,1,1,147,148,[[1108,1,1,147,148]]],[51,1,1,148,149,[[1112,1,1,148,149]]],[54,3,3,149,152,[[1125,1,1,149,150],[1126,1,1,150,151],[1128,1,1,151,152]]],[55,1,1,152,153,[[1129,1,1,152,153]]],[57,17,17,153,170,[[1135,1,1,153,154],[1138,1,1,154,155],[1139,7,7,155,162],[1140,1,1,162,163],[1141,3,3,163,166],[1142,2,2,166,168],[1143,1,1,168,169],[1144,1,1,169,170]]],[58,1,1,170,171,[[1148,1,1,170,171]]],[59,6,6,171,177,[[1151,1,1,171,172],[1152,2,2,172,174],[1153,1,1,174,175],[1154,2,2,175,177]]],[64,3,3,177,180,[[1166,3,3,177,180]]]],[23203,23416,23430,23543,23547,23562,23571,23675,23686,23711,23815,23861,23877,23880,23945,23946,24023,24078,24095,24223,24327,24550,24627,24678,24775,24792,24892,25041,25043,25250,25365,25369,25453,25527,25886,25968,25976,25991,26340,26529,26735,26748,26849,26897,26924,26928,26929,26941,26990,27017,27018,27038,27082,27100,27180,27201,27223,27247,27323,27326,27342,27366,27398,27417,27418,27426,27445,27472,27488,27535,27540,27553,27555,27571,27589,27617,27623,27703,27707,27713,27742,27752,27756,27765,27800,27807,27827,27832,27876,27896,27899,27904,27921,27923,27938,27969,27970,27987,27993,28063,28079,28116,28126,28133,28176,28189,28222,28231,28237,28282,28285,28300,28375,28381,28386,28409,28414,28457,28471,28474,28494,28564,28565,28607,28618,28621,28642,28662,28695,28757,28758,28840,28871,28949,28957,28972,28981,29034,29139,29154,29155,29283,29376,29377,29389,29422,29434,29517,29588,29819,29847,29874,29907,30000,30060,30066,30069,30072,30075,30082,30085,30087,30096,30106,30111,30128,30144,30166,30187,30222,30336,30394,30403,30413,30442,30452,30460,30680,30682,30694]]],["+",[95,94,[[39,11,10,0,10,[[938,1,1,0,1],[941,3,3,1,4],[944,1,1,4,5],[949,1,1,5,6],[950,3,2,6,8],[951,1,1,8,9],[953,1,1,9,10]]],[40,2,2,10,12,[[960,1,1,10,11],[968,1,1,11,12]]],[41,5,5,12,17,[[975,1,1,12,13],[980,1,1,13,14],[982,1,1,14,15],[995,2,2,15,17]]],[42,5,5,17,22,[[1003,1,1,17,18],[1007,1,1,18,19],[1012,2,2,19,21],[1015,1,1,21,22]]],[43,27,27,22,49,[[1018,2,2,22,24],[1019,1,1,24,25],[1020,1,1,25,26],[1022,1,1,26,27],[1025,2,2,27,29],[1026,1,1,29,30],[1028,1,1,30,31],[1031,3,3,31,34],[1034,3,3,34,37],[1035,1,1,37,38],[1036,2,2,38,40],[1040,2,2,40,42],[1042,1,1,42,43],[1043,2,2,43,45],[1044,2,2,45,47],[1045,2,2,47,49]]],[44,11,11,49,60,[[1047,1,1,49,50],[1048,1,1,50,51],[1050,1,1,51,52],[1052,1,1,52,53],[1054,1,1,53,54],[1055,1,1,54,55],[1056,3,3,55,58],[1059,2,2,58,60]]],[45,10,10,60,70,[[1062,2,2,60,62],[1063,1,1,62,63],[1064,1,1,63,64],[1067,1,1,64,65],[1068,1,1,65,66],[1070,1,1,66,67],[1072,1,1,67,68],[1073,2,2,68,70]]],[46,4,4,70,74,[[1079,1,1,70,71],[1081,1,1,71,72],[1086,1,1,72,73],[1087,1,1,73,74]]],[47,2,2,74,76,[[1094,2,2,74,76]]],[48,1,1,76,77,[[1100,1,1,76,77]]],[49,2,2,77,79,[[1103,1,1,77,78],[1105,1,1,78,79]]],[54,3,3,79,82,[[1125,1,1,79,80],[1126,1,1,80,81],[1128,1,1,81,82]]],[57,8,8,82,90,[[1139,4,4,82,86],[1141,2,2,86,88],[1142,2,2,88,90]]],[58,1,1,90,91,[[1148,1,1,90,91]]],[59,1,1,91,92,[[1154,1,1,91,92]]],[64,2,2,92,94,[[1166,2,2,92,94]]]],[23430,23543,23547,23562,23675,23861,23877,23880,23946,24023,24327,24678,25043,25250,25369,25968,25991,26340,26529,26735,26748,26849,26929,26941,26990,27017,27100,27180,27201,27247,27326,27417,27418,27426,27535,27553,27555,27571,27617,27623,27752,27765,27800,27827,27832,27896,27899,27904,27923,27970,27993,28063,28116,28176,28189,28222,28231,28237,28282,28285,28375,28381,28409,28414,28474,28494,28564,28621,28642,28662,28840,28871,28957,28981,29154,29155,29283,29377,29434,29819,29847,29874,30066,30072,30075,30085,30111,30128,30144,30166,30336,30452,30680,30694]]],["I",[2,2,[[43,1,1,0,1,[[1042,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[27807,27938]]],["Truly",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29034]]],["a",[2,2,[[43,1,1,0,1,[[1026,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]]],[27223,28386]]],["am",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28972]]],["an",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29389]]],["are",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29907]]],["as",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27921]]],["being",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1032,1,1,1,2]]]],[27366,27445]]],["even",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29588]]],["have",[2,2,[[43,2,2,0,2,[[1018,1,1,0,1],[1044,1,1,1,2]]]],[26924,27876]]],["he",[4,4,[[43,2,2,0,2,[[1030,1,1,0,1],[1034,1,1,1,2]]],[57,1,1,2,3,[[1140,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]]],[27398,27540,30096,30460]]],["indeed",[22,22,[[39,5,5,0,5,[[931,1,1,0,1],[941,1,1,1,2],[948,1,1,2,3],[951,1,1,3,4],[954,1,1,4,5]]],[40,3,3,5,8,[[957,1,1,5,6],[966,1,1,6,7],[970,1,1,7,8]]],[41,3,3,8,11,[[975,1,1,8,9],[983,1,1,9,10],[995,1,1,10,11]]],[43,3,3,11,14,[[1021,1,1,11,12],[1028,1,1,12,13],[1039,1,1,13,14]]],[44,2,2,14,16,[[1051,1,1,14,15],[1059,1,1,15,16]]],[45,1,1,16,17,[[1072,1,1,16,17]]],[46,1,1,17,18,[[1085,1,1,17,18]]],[49,2,2,18,20,[[1103,1,1,18,19],[1105,1,1,19,20]]],[50,1,1,20,21,[[1108,1,1,20,21]]],[59,1,1,21,22,[[1152,1,1,21,22]]]],[23203,23571,23815,23945,24095,24223,24627,24775,25041,25453,25976,27038,27323,27713,28079,28300,28607,28949,29376,29422,29517,30403]]],["is",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]]],[28126,28758]]],["it",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[45,1,1,2,3,[[1070,1,1,2,3]]]],[24078,25527,28565]]],["kind",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28757]]],["of",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[28133,30413]]],["say",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23686]]],["so",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27488]]],["the",[2,2,[[43,1,1,0,1,[[1040,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[27742,30442]]],["then",[2,2,[[40,1,1,0,1,[[972,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[24892,27756]]],["they",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30682]]],["truly",[11,11,[[39,2,2,0,2,[[937,1,1,0,1],[945,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,2,2,3,5,[[982,1,1,3,4],[994,1,1,4,5]]],[42,1,1,5,6,[[1016,1,1,5,6]]],[43,3,3,6,9,[[1018,1,1,6,7],[1020,1,1,7,8],[1022,1,1,8,9]]],[57,2,2,9,11,[[1139,1,1,9,10],[1143,1,1,10,11]]]],[23416,23711,24792,25365,25886,26897,26928,27018,27082,30087,30187]]],["verily",[13,13,[[40,1,1,0,1,[[965,1,1,0,1]]],[43,2,2,1,3,[[1036,1,1,1,2],[1039,1,1,2,3]]],[44,1,1,3,4,[[1047,1,1,3,4]]],[45,2,2,4,6,[[1066,1,1,4,5],[1075,1,1,5,6]]],[57,6,6,6,12,[[1135,1,1,6,7],[1138,1,1,7,8],[1139,2,2,8,10],[1141,1,1,10,11],[1144,1,1,11,12]]],[59,1,1,12,13,[[1151,1,1,12,13]]]],[24550,27589,27707,27987,28457,28695,30000,30060,30069,30082,30106,30222,30394]]],["was",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27342]]],["were",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27472]]],["when",[2,2,[[45,1,1,0,1,[[1072,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]]],[28618,29139]]],["which",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27703]]],["who",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27969]]],["ye",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28471]]]]},{"k":"G3304","v":[["*",[4,4,[[41,1,1,0,1,[[983,1,1,0,1]]],[44,2,2,1,3,[[1054,1,1,1,2],[1055,1,1,2,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]]],[25433,28175,28206,29429]]],["but",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28175]]],["doubtless",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29429]]],["rather",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25433]]],["verily",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28206]]]]},{"k":"G3305","v":[["*",[7,7,[[42,5,5,0,5,[[1000,1,1,0,1],[1003,1,1,1,2],[1008,1,1,2,3],[1016,1,1,3,4],[1017,1,1,4,5]]],[54,1,1,5,6,[[1126,1,1,5,6]]],[58,1,1,6,7,[[1147,1,1,6,7]]]],[26183,26341,26622,26872,26902,29846,30301]]],["+",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26622]]],["Howbeit",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26341]]],["Nevertheless",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29846]]],["but",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26902]]],["ye",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30301]]],["yet",[2,2,[[42,2,2,0,2,[[1000,1,1,0,1],[1016,1,1,1,2]]]],[26183,26872]]]]},{"k":"G3306","v":[["*",[120,105,[[39,3,3,0,3,[[938,1,1,0,1],[939,1,1,1,2],[954,1,1,2,3]]],[40,2,2,3,5,[[962,1,1,3,4],[970,1,1,4,5]]],[41,7,6,5,11,[[973,1,1,5,6],[980,1,1,6,7],[981,1,1,7,8],[982,1,1,8,9],[991,1,1,9,10],[996,2,1,10,11]]],[42,41,34,11,45,[[997,5,4,11,15],[998,1,1,15,16],[999,1,1,16,17],[1000,2,1,17,18],[1001,1,1,18,19],[1002,2,2,19,21],[1003,1,1,21,22],[1004,3,2,22,24],[1005,1,1,24,25],[1006,1,1,25,26],[1007,1,1,26,27],[1008,3,3,27,30],[1010,4,4,30,34],[1011,12,8,34,42],[1015,1,1,42,43],[1017,2,2,43,45]]],[43,15,14,45,59,[[1022,2,1,45,46],[1026,1,1,46,47],[1033,1,1,47,48],[1035,2,2,48,50],[1037,3,3,50,53],[1038,2,2,53,55],[1044,2,2,55,57],[1045,2,2,57,59]]],[44,1,1,59,60,[[1054,1,1,59,60]]],[45,8,8,60,68,[[1064,1,1,60,61],[1068,5,5,61,66],[1074,1,1,66,67],[1076,1,1,67,68]]],[46,3,3,68,71,[[1080,2,2,68,70],[1086,1,1,70,71]]],[49,1,1,71,72,[[1103,1,1,71,72]]],[53,1,1,72,73,[[1120,1,1,72,73]]],[54,3,3,73,76,[[1126,1,1,73,74],[1127,1,1,74,75],[1128,1,1,75,76]]],[57,6,6,76,82,[[1139,2,2,76,78],[1142,1,1,78,79],[1144,1,1,79,80],[1145,2,2,80,82]]],[59,2,2,82,84,[[1151,2,2,82,84]]],[61,23,18,84,102,[[1160,11,8,84,92],[1161,7,6,92,98],[1162,5,4,98,102]]],[62,3,2,102,104,[[1164,3,2,102,104]]],[65,1,1,104,105,[[1183,1,1,104,105]]]],[23428,23482,24092,24417,24788,24949,25272,25305,25370,25736,26020,26076,26077,26082,26083,26107,26156,26196,26248,26284,26313,26337,26412,26416,26481,26521,26529,26604,26614,26626,26678,26684,26685,26693,26703,26704,26705,26706,26708,26709,26710,26715,26856,26920,26921,27063,27259,27498,27560,27577,27631,27641,27649,27671,27672,27886,27896,27915,27929,28166,28424,28495,28498,28507,28511,28527,28678,28724,28852,28855,28965,29386,29731,29840,29867,29890,30067,30088,30167,30239,30242,30255,30397,30399,30556,30560,30564,30567,30569,30574,30577,30578,30585,30588,30593,30594,30596,30603,30615,30616,30618,30619,30647,30654,30985]]],["+",[4,4,[[42,2,2,0,2,[[1007,1,1,0,1],[1011,1,1,1,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]],[61,1,1,3,4,[[1160,1,1,3,4]]]],[26529,26705,27063,30569]]],["Abide",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,1,1,1,2,[[1011,1,1,1,2]]]],[26020,26703]]],["abide",[24,21,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,2,2,2,4,[[981,1,1,2,3],[991,1,1,3,4]]],[42,8,5,4,9,[[1008,1,1,4,5],[1010,1,1,5,6],[1011,6,3,6,9]]],[43,3,3,9,12,[[1033,1,1,9,10],[1037,1,1,10,11],[1044,1,1,11,12]]],[45,5,5,12,17,[[1064,1,1,12,13],[1068,4,4,13,17]]],[49,1,1,17,18,[[1103,1,1,17,18]]],[61,3,3,18,21,[[1160,3,3,18,21]]]],[23428,24417,25305,25736,26626,26684,26703,26706,26709,27498,27649,27886,28424,28495,28507,28511,28527,29386,30574,30577,30578]]],["abideth",[20,18,[[42,6,5,0,5,[[999,1,1,0,1],[1004,2,1,1,2],[1008,2,2,2,4],[1011,1,1,4,5]]],[45,1,1,5,6,[[1074,1,1,5,6]]],[54,1,1,6,7,[[1126,1,1,6,7]]],[57,1,1,7,8,[[1139,1,1,7,8]]],[59,1,1,8,9,[[1151,1,1,8,9]]],[61,8,8,9,17,[[1160,5,5,9,14],[1161,3,3,14,17]]],[62,2,1,17,18,[[1164,2,1,17,18]]]],[26156,26416,26604,26614,26704,28678,29840,30067,30397,30556,30560,30564,30567,30577,30585,30593,30603,30654]]],["abiding",[2,2,[[42,1,1,0,1,[[1001,1,1,0,1]]],[61,1,1,1,2,[[1161,1,1,1,2]]]],[26248,30594]]],["abode",[11,11,[[41,2,2,0,2,[[973,1,1,0,1],[980,1,1,1,2]]],[42,5,5,2,7,[[997,2,2,2,4],[1000,1,1,4,5],[1003,1,1,5,6],[1006,1,1,6,7]]],[43,3,3,7,10,[[1035,1,1,7,8],[1038,2,2,8,10]]],[54,1,1,10,11,[[1128,1,1,10,11]]]],[24949,25272,26076,26083,26196,26337,26521,27560,27671,27672,29890]]],["continue",[7,7,[[42,2,2,0,2,[[1004,1,1,0,1],[1011,1,1,1,2]]],[53,1,1,2,3,[[1120,1,1,2,3]]],[54,1,1,3,4,[[1127,1,1,3,4]]],[57,1,1,4,5,[[1145,1,1,4,5]]],[61,1,1,5,6,[[1160,1,1,5,6]]],[65,1,1,6,7,[[1183,1,1,6,7]]]],[26412,26708,29731,29867,30242,30574,30985]]],["continued",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26107]]],["continueth",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30088]]],["continuing",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30255]]],["dwell",[2,2,[[43,1,1,0,1,[[1045,1,1,0,1]]],[61,1,1,1,2,[[1162,1,1,1,2]]]],[27915,30616]]],["dwellest",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26082]]],["dwelleth",[10,9,[[42,3,3,0,3,[[1002,1,1,0,1],[1010,2,2,1,3]]],[61,6,5,3,8,[[1161,2,2,3,5],[1162,4,3,5,8]]],[62,1,1,8,9,[[1164,1,1,8,9]]]],[26313,26678,26685,30596,30603,30615,30618,30619,30647]]],["dwelt",[2,2,[[42,1,1,0,1,[[997,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]]],[26083,27929]]],["endureth",[2,2,[[42,1,1,0,1,[[1002,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[26284,30399]]],["enduring",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30167]]],["present",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26693]]],["remain",[8,8,[[41,1,1,0,1,[[982,1,1,0,1]]],[42,3,3,1,4,[[1011,2,2,1,3],[1015,1,1,3,4]]],[45,2,2,4,6,[[1068,1,1,4,5],[1076,1,1,5,6]]],[57,1,1,6,7,[[1144,1,1,6,7]]],[61,1,1,7,8,[[1160,1,1,7,8]]]],[25370,26710,26715,26856,28498,28724,30239,30574]]],["remained",[3,3,[[39,1,1,0,1,[[939,1,1,0,1]]],[43,2,2,1,3,[[1022,1,1,1,2],[1044,1,1,2,3]]]],[23482,27063,27896]]],["remaineth",[5,5,[[42,1,1,0,1,[[1005,1,1,0,1]]],[46,3,3,1,4,[[1080,2,2,1,3],[1086,1,1,3,4]]],[61,1,1,4,5,[[1161,1,1,4,5]]]],[26481,28852,28855,28965,30588]]],["remaining",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26077]]],["stand",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28166]]],["tarried",[3,3,[[43,3,3,0,3,[[1026,1,1,0,1],[1037,2,2,1,3]]]],[27259,27631,27641]]],["tarry",[7,7,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[996,1,1,2,3]]],[42,3,3,3,6,[[1000,1,1,3,4],[1017,2,2,4,6]]],[43,1,1,6,7,[[1035,1,1,6,7]]]],[24092,24788,26020,26196,26920,26921,27577]]]]},{"k":"G3307","v":[["*",[14,13,[[39,3,2,0,2,[[940,3,2,0,2]]],[40,4,4,2,6,[[959,3,3,2,5],[962,1,1,5,6]]],[41,1,1,6,7,[[984,1,1,6,7]]],[44,1,1,7,8,[[1057,1,1,7,8]]],[45,3,3,8,11,[[1062,1,1,8,9],[1068,2,2,9,11]]],[46,1,1,11,12,[[1087,1,1,11,12]]],[57,1,1,12,13,[[1139,1,1,12,13]]]],[23514,23515,24312,24313,24314,24448,25472,28248,28376,28504,28521,28984,30066]]],["between",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28521]]],["dealt",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28248]]],["distributed",[2,2,[[45,1,1,0,1,[[1068,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]]],[28504,28984]]],["divide",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25472]]],["divided",[8,7,[[39,3,2,0,2,[[940,3,2,0,2]]],[40,4,4,2,6,[[959,3,3,2,5],[962,1,1,5,6]]],[45,1,1,6,7,[[1062,1,1,6,7]]]],[23514,23515,24312,24313,24314,24448,28376]]],["gave",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30066]]]]},{"k":"G3308","v":[["*",[6,6,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,2,2,2,4,[[980,1,1,2,3],[993,1,1,3,4]]],[46,1,1,4,5,[[1088,1,1,4,5]]],[59,1,1,5,6,[[1155,1,1,5,6]]]],[23561,24342,25259,25860,29017,30472]]],["care",[3,3,[[39,1,1,0,1,[[941,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[59,1,1,2,3,[[1155,1,1,2,3]]]],[23561,29017,30472]]],["cares",[3,3,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,2,2,1,3,[[980,1,1,1,2],[993,1,1,2,3]]]],[24342,25259,25860]]]]},{"k":"G3309","v":[["*",[19,17,[[39,7,6,0,6,[[934,6,5,0,5],[938,1,1,5,6]]],[41,5,5,6,11,[[982,1,1,6,7],[984,4,4,7,11]]],[45,5,4,11,15,[[1068,4,3,11,14],[1073,1,1,14,15]]],[49,2,2,15,17,[[1104,1,1,15,16],[1106,1,1,16,17]]]],[23307,23309,23310,23313,23316,23436,25404,25470,25481,25484,25485,28519,28520,28521,28659,29411,29448]]],["+",[7,7,[[39,4,4,0,4,[[934,3,3,0,3],[938,1,1,3,4]]],[41,2,2,4,6,[[984,2,2,4,6]]],[45,1,1,6,7,[[1073,1,1,6,7]]]],[23307,23313,23316,23436,25470,25481,28659]]],["care",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29411]]],["careful",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]]],[25404,29448]]],["for",[4,3,[[45,4,3,0,3,[[1068,4,3,0,3]]]],[28519,28520,28521]]],["thought",[5,5,[[39,3,3,0,3,[[934,3,3,0,3]]],[41,2,2,3,5,[[984,2,2,3,5]]]],[23309,23310,23316,25484,25485]]]]},{"k":"G3310","v":[["*",[5,5,[[41,1,1,0,1,[[982,1,1,0,1]]],[43,2,2,1,3,[[1025,1,1,1,2],[1033,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]]],[25405,27197,27495,28913,29477]]],["+",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29477]]],["part",[4,4,[[41,1,1,0,1,[[982,1,1,0,1]]],[43,2,2,1,3,[[1025,1,1,1,2],[1033,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]]],[25405,27197,27495,28913]]]]},{"k":"G3311","v":[["*",[2,2,[[57,2,2,0,2,[[1134,1,1,0,1],[1136,1,1,1,2]]]],[29981,30026]]],["asunder",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30026]]],["gifts",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29981]]]]},{"k":"G3312","v":[["divider",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25473]]]]},{"k":"G3313","v":[["*",[43,41,[[39,4,4,0,4,[[930,1,1,0,1],[943,1,1,1,2],[944,1,1,2,3],[952,1,1,3,4]]],[40,1,1,4,5,[[964,1,1,4,5]]],[41,4,4,5,9,[[983,1,1,5,6],[984,1,1,6,7],[987,1,1,7,8],[996,1,1,8,9]]],[42,4,3,9,12,[[1009,1,1,9,10],[1015,2,1,10,11],[1017,1,1,11,12]]],[43,7,7,12,19,[[1019,1,1,12,13],[1022,1,1,13,14],[1036,2,2,14,16],[1037,1,1,16,17],[1040,2,2,17,19]]],[44,3,3,19,22,[[1056,1,1,19,20],[1060,2,2,20,22]]],[45,7,6,22,28,[[1072,1,1,22,23],[1073,1,1,23,24],[1074,4,3,24,27],[1075,1,1,27,28]]],[46,4,4,28,32,[[1078,1,1,28,29],[1079,1,1,29,30],[1080,1,1,30,31],[1086,1,1,31,32]]],[48,2,2,32,34,[[1100,2,2,32,34]]],[50,1,1,34,35,[[1108,1,1,34,35]]],[57,1,1,35,36,[[1141,1,1,35,36]]],[59,1,1,36,37,[[1154,1,1,36,37]]],[65,4,4,37,41,[[1182,1,1,37,38],[1186,1,1,38,39],[1187,1,1,39,40],[1188,1,1,40,41]]]],[23191,23654,23685,24008,24510,25441,25505,25600,26033,26638,26848,26904,26959,27061,27586,27612,27628,27740,27743,28234,28318,28327,28618,28661,28674,28675,28677,28705,28814,28829,28851,28959,29281,29288,29510,30110,30462,30973,31044,31061,31099]]],["+",[5,5,[[44,2,2,0,2,[[1060,2,2,0,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[46,1,1,3,4,[[1079,1,1,3,4]]],[57,1,1,4,5,[[1141,1,1,4,5]]]],[28318,28327,28618,28829,30110]]],["behalf",[2,2,[[46,1,1,0,1,[[1086,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[28959,30462]]],["coasts",[3,3,[[39,2,2,0,2,[[943,1,1,0,1],[944,1,1,1,2]]],[43,1,1,2,3,[[1036,1,1,2,3]]]],[23654,23685,27586]]],["course",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28705]]],["craft",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27612]]],["part",[16,15,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,2,2,1,3,[[1009,1,1,1,2],[1015,1,1,2,3]]],[43,3,3,3,6,[[1022,1,1,3,4],[1040,2,2,4,6]]],[44,1,1,6,7,[[1056,1,1,6,7]]],[45,4,3,7,10,[[1074,4,3,7,10]]],[46,1,1,10,11,[[1078,1,1,10,11]]],[48,1,1,11,12,[[1100,1,1,11,12]]],[65,3,3,12,15,[[1186,1,1,12,13],[1187,1,1,13,14],[1188,1,1,14,15]]]],[25441,26638,26848,27061,27740,27743,28234,28674,28675,28677,28814,29288,31044,31061,31099]]],["particular",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28661]]],["parts",[7,7,[[39,1,1,0,1,[[930,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]],[43,2,2,3,5,[[1019,1,1,3,4],[1037,1,1,4,5]]],[48,1,1,5,6,[[1100,1,1,5,6]]],[65,1,1,6,7,[[1182,1,1,6,7]]]],[23191,24510,26848,26959,27628,29281,30973]]],["piece",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26033]]],["portion",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[987,1,1,2,3]]]],[24008,25505,25600]]],["respect",[2,2,[[46,1,1,0,1,[[1080,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[28851,29510]]],["side",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26904]]]]},{"k":"G3314","v":[["*",[2,2,[[43,2,2,0,2,[[1025,1,1,0,1],[1039,1,1,1,2]]]],[27202,27710]]],["noon",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27710]]],["south",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27202]]]]},{"k":"G3315","v":[["confirmed",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30061]]]]},{"k":"G3316","v":[["mediator",[6,6,[[47,2,2,0,2,[[1093,2,2,0,2]]],[53,1,1,2,3,[[1120,1,1,2,3]]],[57,3,3,3,6,[[1140,1,1,3,4],[1141,1,1,4,5],[1144,1,1,5,6]]]],[29121,29122,29721,30098,30120,30236]]]]},{"k":"G3317","v":[["midnight",[4,4,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[43,2,2,2,4,[[1033,1,1,2,3],[1037,1,1,3,4]]]],[24752,25410,27508,27633]]]]},{"k":"G3318","v":[["Mesopotamia",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1024,1,1,1,2]]]],[26958,27118]]]]},{"k":"G3319","v":[["*",[61,59,[[39,8,8,0,8,[[938,1,1,0,1],[941,2,2,1,3],[942,2,2,3,5],[946,2,2,5,7],[953,1,1,7,8]]],[40,5,5,8,13,[[959,1,1,8,9],[962,1,1,9,10],[963,1,1,10,11],[965,1,1,11,12],[970,1,1,12,13]]],[41,14,13,13,26,[[974,1,1,13,14],[976,2,2,14,16],[977,1,1,16,17],[978,1,1,17,18],[980,1,1,18,19],[982,1,1,19,20],[989,1,1,20,21],[993,1,1,21,22],[994,3,2,22,24],[995,1,1,24,25],[996,1,1,25,26]]],[42,7,7,26,33,[[997,1,1,26,27],[1004,3,3,27,30],[1015,1,1,30,31],[1016,2,2,31,33]]],[43,10,10,33,43,[[1018,2,2,33,35],[1019,1,1,35,36],[1021,1,1,36,37],[1034,2,2,37,39],[1040,1,1,39,40],[1043,1,1,40,41],[1044,2,2,41,43]]],[45,2,2,43,45,[[1066,1,1,43,44],[1067,1,1,44,45]]],[46,1,1,45,46,[[1083,1,1,45,46]]],[49,1,1,46,47,[[1104,1,1,46,47]]],[50,1,1,47,48,[[1108,1,1,47,48]]],[51,1,1,48,49,[[1112,1,1,48,49]]],[52,1,1,49,50,[[1117,1,1,49,50]]],[57,1,1,50,51,[[1134,1,1,50,51]]],[65,9,8,51,59,[[1167,1,1,51,52],[1168,2,2,52,54],[1170,1,1,54,55],[1171,2,1,55,56],[1172,1,1,56,57],[1173,1,1,57,58],[1188,1,1,58,59]]]],[23433,23564,23588,23603,23621,23729,23747,24014,24291,24454,24494,24574,24814,25019,25093,25098,25126,25154,25252,25366,25662,25847,25891,25919,25980,26027,26070,26384,26390,26440,26843,26886,26893,26938,26941,26971,27029,27545,27556,27744,27836,27876,27882,28456,28472,28915,29406,29508,29577,29668,29989,30710,30718,30724,30774,30785,30799,30827,31082]]],["+",[12,12,[[39,3,3,0,3,[[941,1,1,0,1],[942,1,1,1,2],[953,1,1,2,3]]],[40,1,1,3,4,[[959,1,1,3,4]]],[41,4,4,4,8,[[980,1,1,4,5],[982,1,1,5,6],[994,2,2,6,8]]],[43,2,2,8,10,[[1043,1,1,8,9],[1044,1,1,9,10]]],[45,1,1,10,11,[[1067,1,1,10,11]]],[51,1,1,11,12,[[1112,1,1,11,12]]]],[23564,23603,24014,24291,25252,25366,25891,25919,27836,27882,28472,29577]]],["among",[6,6,[[39,1,1,0,1,[[941,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]],[43,2,2,2,4,[[1034,1,1,2,3],[1040,1,1,3,4]]],[45,1,1,4,5,[[1066,1,1,4,5]]],[46,1,1,5,6,[[1083,1,1,5,6]]]],[23588,26070,27556,27744,28456,28915]]],["midst",[41,40,[[39,4,4,0,4,[[938,1,1,0,1],[942,1,1,1,2],[946,2,2,2,4]]],[40,4,4,4,8,[[962,1,1,4,5],[963,1,1,5,6],[965,1,1,6,7],[970,1,1,7,8]]],[41,10,10,8,18,[[974,1,1,8,9],[976,2,2,9,11],[977,1,1,11,12],[978,1,1,12,13],[989,1,1,13,14],[993,1,1,14,15],[994,1,1,15,16],[995,1,1,16,17],[996,1,1,17,18]]],[42,6,6,18,24,[[1004,3,3,18,21],[1015,1,1,21,22],[1016,2,2,22,24]]],[43,6,6,24,30,[[1018,2,2,24,26],[1019,1,1,26,27],[1021,1,1,27,28],[1034,1,1,28,29],[1044,1,1,29,30]]],[49,1,1,30,31,[[1104,1,1,30,31]]],[57,1,1,31,32,[[1134,1,1,31,32]]],[65,9,8,32,40,[[1167,1,1,32,33],[1168,2,2,33,35],[1170,1,1,35,36],[1171,2,1,36,37],[1172,1,1,37,38],[1173,1,1,38,39],[1188,1,1,39,40]]]],[23433,23621,23729,23747,24454,24494,24574,24814,25019,25093,25098,25126,25154,25662,25847,25919,25980,26027,26384,26390,26440,26843,26886,26893,26938,26941,26971,27029,27545,27876,29406,29989,30710,30718,30724,30774,30785,30799,30827,31082]]],["way",[2,2,[[50,1,1,0,1,[[1108,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]]],[29508,29668]]]]},{"k":"G3320","v":[["wall",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29243]]]]},{"k":"G3321","v":[["heaven",[3,3,[[65,3,3,0,3,[[1174,1,1,0,1],[1180,1,1,1,2],[1185,1,1,2,3]]]],[30840,30932,31034]]]]},{"k":"G3322","v":[["midst",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26342]]]]},{"k":"G3323","v":[["Messias",[2,2,[[42,2,2,0,2,[[997,1,1,0,1],[1000,1,1,1,2]]]],[26085,26181]]]]},{"k":"G3324","v":[["full",[8,8,[[39,1,1,0,1,[[951,1,1,0,1]]],[42,2,2,1,3,[[1015,1,1,1,2],[1017,1,1,2,3]]],[44,2,2,3,5,[[1046,1,1,3,4],[1060,1,1,4,5]]],[58,2,2,5,7,[[1148,2,2,5,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]]],[23946,26854,26909,27959,28317,30327,30336,30514]]]]},{"k":"G3325","v":[["full",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26962]]]]},{"k":"G3326","v":[["*",[462,434,[[39,70,67,0,67,[[929,2,2,0,2],[930,2,2,2,4],[932,1,1,4,5],[933,2,2,5,7],[936,1,1,7,8],[937,2,2,8,10],[940,7,6,10,16],[941,1,1,16,17],[942,1,1,17,18],[943,1,1,18,19],[944,1,1,19,20],[945,3,3,20,23],[946,2,2,23,25],[947,1,1,25,26],[948,2,2,26,28],[949,1,1,28,29],[950,1,1,29,30],[952,5,5,30,35],[953,6,5,35,40],[954,18,17,40,57],[955,7,7,57,64],[956,3,3,64,67]]],[40,54,51,67,118,[[957,5,5,67,72],[958,5,3,72,75],[959,4,4,75,79],[960,2,2,79,81],[961,3,3,81,84],[962,2,2,84,86],[964,4,4,86,90],[965,3,3,90,93],[966,1,1,93,94],[967,1,1,94,95],[969,2,2,95,97],[970,15,14,97,111],[971,4,4,111,115],[972,3,3,115,118]]],[41,62,61,118,179,[[973,6,6,118,124],[974,3,3,124,127],[977,4,4,127,131],[978,3,3,131,134],[979,1,1,134,135],[980,2,2,135,137],[981,3,3,137,140],[982,3,3,140,143],[983,5,4,143,147],[984,4,4,147,151],[985,1,1,151,152],[986,2,2,152,154],[987,4,4,154,158],[989,3,3,158,161],[990,1,1,161,162],[993,1,1,162,163],[994,10,10,163,173],[995,2,2,173,175],[996,4,4,175,179]]],[42,58,55,179,234,[[998,1,1,179,180],[999,5,4,180,184],[1000,3,2,184,186],[1001,3,3,186,189],[1002,4,4,189,193],[1003,2,2,193,195],[1004,1,1,195,196],[1005,2,2,196,198],[1007,6,6,198,204],[1008,3,3,204,207],[1009,5,5,207,212],[1010,3,3,212,215],[1011,1,1,215,216],[1012,3,3,216,219],[1013,2,2,219,221],[1014,5,5,221,226],[1015,4,4,226,230],[1016,4,3,230,233],[1017,1,1,233,234]]],[43,60,58,234,292,[[1018,1,1,234,235],[1019,2,2,235,237],[1021,2,2,237,239],[1022,2,2,239,241],[1024,5,5,241,246],[1026,3,3,246,249],[1027,2,2,249,251],[1028,1,1,251,252],[1029,1,1,252,253],[1030,4,4,253,257],[1031,2,2,257,259],[1032,5,5,259,264],[1034,1,1,264,265],[1035,2,2,265,267],[1036,1,1,267,268],[1037,7,7,268,275],[1038,1,1,275,276],[1041,7,5,276,281],[1042,3,3,281,284],[1043,1,1,284,285],[1044,3,3,285,288],[1045,4,4,288,292]]],[44,7,6,292,298,[[1057,3,2,292,294],[1060,2,2,294,296],[1061,2,2,296,298]]],[45,9,9,298,307,[[1067,2,2,298,300],[1068,2,2,300,302],[1072,1,1,302,303],[1077,4,4,303,307]]],[46,7,7,307,314,[[1083,2,2,307,309],[1084,1,1,309,310],[1085,2,2,310,312],[1090,2,2,312,314]]],[47,7,7,314,321,[[1091,1,1,314,315],[1092,2,2,315,317],[1093,1,1,317,318],[1094,2,2,318,320],[1096,1,1,320,321]]],[48,7,6,321,327,[[1100,3,2,321,323],[1102,4,4,323,327]]],[49,7,7,327,334,[[1103,1,1,327,328],[1104,2,2,328,330],[1106,4,4,330,334]]],[50,2,2,334,336,[[1107,1,1,334,335],[1110,1,1,335,336]]],[51,3,3,336,339,[[1111,1,1,336,337],[1113,1,1,337,338],[1115,1,1,338,339]]],[52,5,4,339,343,[[1116,2,1,339,340],[1118,3,3,340,343]]],[53,9,9,343,352,[[1119,1,1,343,344],[1120,2,2,344,346],[1121,1,1,346,347],[1122,3,3,347,350],[1124,2,2,350,352]]],[54,6,4,352,356,[[1126,2,2,352,354],[1128,4,2,354,356]]],[55,4,3,356,359,[[1130,1,1,356,357],[1131,3,2,357,359]]],[56,1,1,359,360,[[1132,1,1,359,360]]],[57,22,22,360,382,[[1136,3,3,360,363],[1137,1,1,363,364],[1139,2,2,364,366],[1140,1,1,366,367],[1141,3,3,367,370],[1142,4,4,370,374],[1143,2,2,374,376],[1144,3,3,376,379],[1145,3,3,379,382]]],[59,2,2,382,384,[[1151,1,1,382,383],[1153,1,1,383,384]]],[60,1,1,384,385,[[1156,1,1,384,385]]],[61,7,5,385,390,[[1159,5,3,385,388],[1160,1,1,388,389],[1162,1,1,389,390]]],[62,2,2,390,392,[[1164,2,2,390,392]]],[65,50,42,392,434,[[1167,3,3,392,395],[1168,2,2,395,397],[1169,5,3,397,400],[1170,3,1,400,401],[1172,1,1,401,402],[1173,2,2,402,404],[1175,1,1,404,405],[1176,1,1,405,406],[1177,2,2,406,408],[1178,2,2,408,410],[1179,2,2,410,412],[1180,3,3,412,415],[1181,1,1,415,416],[1183,5,4,416,420],[1184,3,3,420,423],[1185,4,3,423,426],[1186,3,3,426,429],[1187,5,3,429,432],[1188,2,2,432,434]]]],[23156,23167,23172,23180,23230,23259,23275,23356,23390,23394,23492,23493,23519,23530,23531,23534,23559,23604,23663,23699,23701,23703,23717,23743,23750,23772,23794,23812,23828,23888,23986,23987,23988,24006,24008,24011,24012,24018,24027,24039,24056,24065,24072,24074,24077,24083,24090,24092,24094,24101,24105,24109,24112,24123,24125,24126,24127,24163,24170,24182,24183,24191,24192,24195,24203,24207,24215,24228,24229,24235,24244,24251,24276,24279,24285,24293,24294,24295,24302,24339,24359,24382,24388,24404,24432,24457,24510,24514,24531,24538,24540,24546,24562,24618,24651,24741,24743,24755,24761,24768,24771,24772,24774,24782,24787,24797,24802,24808,24816,24821,24824,24827,24833,24854,24857,24883,24885,24892,24917,24921,24932,24951,24959,24965,25009,25019,25024,25134,25136,25137,25141,25149,25150,25163,25231,25258,25290,25329,25340,25350,25364,25380,25400,25412,25428,25436,25437,25463,25472,25505,25517,25519,25562,25584,25601,25617,25618,25619,25659,25666,25671,25692,25853,25875,25879,25885,25892,25897,25901,25916,25917,25922,25923,25947,25978,25996,26020,26021,26043,26107,26122,26142,26145,26146,26183,26199,26211,26214,26224,26258,26260,26300,26323,26329,26361,26410,26477,26480,26530,26534,26539,26554,26577,26579,26588,26597,26615,26637,26638,26648,26657,26663,26677,26684,26698,26726,26730,26745,26758,26771,26783,26787,26788,26790,26803,26811,26843,26853,26863,26865,26874,26891,26893,26899,26949,26977,26978,27051,27053,27085,27096,27121,27123,27125,27154,27161,27235,27244,27255,27296,27297,27328,27341,27377,27379,27382,27387,27437,27441,27446,27458,27475,27477,27478,27534,27558,27567,27589,27632,27644,27645,27650,27655,27657,27660,27679,27770,27772,27776,27787,27793,27797,27808,27819,27835,27865,27869,27879,27910,27912,27916,27930,28260,28263,28313,28336,28356,28360,28473,28474,28499,28500,28625,28787,28788,28799,28800,28913,28914,28931,28936,28950,29054,29057,29075,29082,29093,29119,29156,29161,29206,29274,29297,29342,29344,29360,29361,29365,29403,29420,29445,29448,29451,29465,29476,29560,29566,29603,29649,29656,29690,29694,29696,29710,29725,29731,29735,29750,29751,29761,29794,29809,29837,29849,29881,29892,29923,29933,29938,29963,30021,30022,30030,30037,30085,30092,30102,30108,30124,30132,30148,30149,30155,30167,30181,30203,30226,30229,30240,30258,30264,30266,30385,30439,30494,30543,30546,30547,30569,30620,30647,30648,30704,30709,30716,30733,30739,30750,30766,30767,30769,30801,30811,30819,30852,30869,30879,30883,30900,30908,30912,30915,30927,30930,30939,30951,30976,30977,30987,30989,30994,30996,31002,31018,31036,31037,31041,31042,31044,31056,31062,31068,31092,31101]]],["+",[20,20,[[39,2,2,0,2,[[955,2,2,0,2]]],[41,4,4,2,6,[[981,1,1,2,3],[989,1,1,3,4],[990,1,1,4,5],[995,1,1,5,6]]],[42,2,2,6,8,[[1001,1,1,6,7],[1009,1,1,7,8]]],[43,2,2,8,10,[[1019,1,1,8,9],[1022,1,1,9,10]]],[45,1,1,10,11,[[1067,1,1,10,11]]],[57,3,3,11,14,[[1136,2,2,11,13],[1142,1,1,13,14]]],[59,1,1,14,15,[[1151,1,1,14,15]]],[61,1,1,15,16,[[1159,1,1,15,16]]],[65,4,4,16,20,[[1167,1,1,16,17],[1170,1,1,17,18],[1175,1,1,18,19],[1180,1,1,19,20]]]],[24191,24195,25340,25659,25692,25947,26224,26637,26978,27085,28474,30022,30030,30167,30385,30547,30716,30769,30852,30939]]],["After",[18,18,[[39,2,2,0,2,[[953,1,1,0,1],[955,1,1,1,2]]],[40,2,2,2,4,[[970,1,1,2,3],[972,1,1,3,4]]],[41,1,1,4,5,[[982,1,1,4,5]]],[42,7,7,5,12,[[998,1,1,5,6],[999,1,1,6,7],[1001,1,1,7,8],[1002,1,1,8,9],[1003,1,1,9,10],[1015,1,1,10,11],[1017,1,1,11,12]]],[43,3,3,12,15,[[1022,1,1,12,13],[1032,1,1,13,14],[1035,1,1,14,15]]],[45,1,1,15,16,[[1072,1,1,15,16]]],[65,2,2,16,18,[[1170,1,1,16,17],[1173,1,1,17,18]]]],[24027,24192,24755,24885,25364,26107,26142,26211,26258,26329,26853,26899,27096,27458,27558,28625,30769,30819]]],["With",[3,3,[[48,2,2,0,2,[[1100,1,1,0,1],[1102,1,1,1,2]]],[65,1,1,2,3,[[1183,1,1,2,3]]]],[29274,29344,30977]]],["after",[62,62,[[39,6,6,0,6,[[929,1,1,0,1],[945,1,1,1,2],[952,1,1,2,3],[954,2,2,3,5],[955,1,1,5,6]]],[40,7,7,6,13,[[957,1,1,6,7],[964,1,1,7,8],[965,1,1,8,9],[969,1,1,9,10],[970,2,2,10,12],[972,1,1,12,13]]],[41,7,7,13,20,[[973,1,1,13,14],[974,1,1,14,15],[977,1,1,15,16],[981,1,1,16,17],[984,1,1,17,18],[987,1,1,18,19],[994,1,1,19,20]]],[42,7,7,20,27,[[1000,1,1,20,21],[1001,1,1,21,22],[1007,2,2,22,24],[1009,1,1,24,25],[1015,1,1,25,26],[1016,1,1,26,27]]],[43,19,19,27,46,[[1024,2,2,27,29],[1027,1,1,29,30],[1029,1,1,30,31],[1030,3,3,31,34],[1032,1,1,34,35],[1036,1,1,35,36],[1037,2,2,36,38],[1038,1,1,38,39],[1041,2,2,39,41],[1042,1,1,41,42],[1044,1,1,42,43],[1045,3,3,43,46]]],[47,2,2,46,48,[[1091,1,1,46,47],[1093,1,1,47,48]]],[55,1,1,48,49,[[1131,1,1,48,49]]],[57,6,6,49,55,[[1136,1,1,49,50],[1140,1,1,50,51],[1141,2,2,51,53],[1142,2,2,53,55]]],[60,1,1,55,56,[[1156,1,1,55,56]]],[65,6,6,56,62,[[1173,1,1,56,57],[1177,1,1,57,58],[1181,1,1,58,59],[1184,1,1,59,60],[1185,1,1,60,61],[1186,1,1,61,62]]]],[23156,23701,23986,24056,24127,24182,24229,24531,24540,24741,24782,24824,24892,24917,25019,25134,25329,25463,25601,25922,26199,26214,26530,26534,26657,26863,26893,27121,27123,27296,27341,27377,27382,27387,27478,27589,27632,27655,27679,27770,27793,27797,27869,27910,27912,27916,29075,29119,29933,30021,30102,30108,30132,30148,30149,30494,30811,30883,30951,30994,31018,31041]]],["against",[4,3,[[65,4,3,0,3,[[1168,1,1,0,1],[1177,1,1,1,2],[1185,2,1,2,3]]]],[30733,30879,31036]]],["among",[5,5,[[41,2,2,0,2,[[994,1,1,0,1],[996,1,1,1,2]]],[42,3,3,2,5,[[1002,1,1,2,3],[1007,1,1,3,4],[1012,1,1,4,5]]]],[25901,25996,26300,26579,26745]]],["and",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26145]]],["in",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]]],[24816,27475]]],["is",[1,1,[[61,1,1,0,1,[[1162,1,1,0,1]]]],[30620]]],["of",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23750]]],["on",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25400]]],["since",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30092]]],["to",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24965]]],["unto",[1,1,[[65,1,1,0,1,[[1176,1,1,0,1]]]],[30869]]],["upon",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24951]]],["with",[340,320,[[39,59,57,0,57,[[929,1,1,0,1],[930,2,2,1,3],[932,1,1,3,4],[933,2,2,4,6],[936,1,1,6,7],[937,2,2,7,9],[940,7,6,9,15],[941,1,1,15,16],[942,1,1,16,17],[943,1,1,17,18],[944,1,1,18,19],[945,2,2,19,21],[946,1,1,21,22],[947,1,1,22,23],[948,2,2,23,25],[949,1,1,25,26],[950,1,1,26,27],[952,4,4,27,31],[953,5,5,31,36],[954,16,15,36,51],[955,3,3,51,54],[956,3,3,54,57]]],[40,44,41,57,98,[[957,4,4,57,61],[958,5,3,61,64],[959,4,4,64,68],[960,2,2,68,70],[961,3,3,70,73],[962,2,2,73,75],[964,3,3,75,78],[965,2,2,78,80],[966,1,1,80,81],[967,1,1,81,82],[969,1,1,82,83],[970,11,10,83,93],[971,4,4,93,97],[972,1,1,97,98]]],[41,45,44,98,142,[[973,3,3,98,101],[974,2,2,101,103],[977,3,3,103,106],[978,3,3,106,109],[979,1,1,109,110],[980,2,2,110,112],[981,1,1,112,113],[982,1,1,113,114],[983,5,4,114,118],[984,3,3,118,121],[985,1,1,121,122],[986,2,2,122,124],[987,3,3,124,127],[989,2,2,127,129],[993,1,1,129,130],[994,8,8,130,138],[995,1,1,138,139],[996,3,3,139,142]]],[42,38,37,142,179,[[999,3,3,142,145],[1000,2,1,145,146],[1002,2,2,146,148],[1003,1,1,148,149],[1004,1,1,149,150],[1005,2,2,150,152],[1007,3,3,152,155],[1008,3,3,155,158],[1009,3,3,158,161],[1010,3,3,161,164],[1011,1,1,164,165],[1012,2,2,165,167],[1013,2,2,167,169],[1014,5,5,169,174],[1015,2,2,174,176],[1016,3,3,176,179]]],[43,35,34,179,213,[[1018,1,1,179,180],[1019,1,1,180,181],[1021,2,2,181,183],[1024,3,3,183,186],[1026,3,3,186,189],[1027,1,1,189,190],[1028,1,1,190,191],[1030,1,1,191,192],[1031,2,2,192,194],[1032,2,2,194,196],[1034,1,1,196,197],[1035,1,1,197,198],[1037,5,5,198,203],[1041,5,4,203,207],[1042,2,2,207,209],[1043,1,1,209,210],[1044,2,2,210,212],[1045,1,1,212,213]]],[44,7,6,213,219,[[1057,3,2,213,215],[1060,2,2,215,217],[1061,2,2,217,219]]],[45,7,7,219,226,[[1067,1,1,219,220],[1068,2,2,220,222],[1077,4,4,222,226]]],[46,7,7,226,233,[[1083,2,2,226,228],[1084,1,1,228,229],[1085,2,2,229,231],[1090,2,2,231,233]]],[47,5,5,233,238,[[1092,2,2,233,235],[1094,2,2,235,237],[1096,1,1,237,238]]],[48,5,5,238,243,[[1100,2,2,238,240],[1102,3,3,240,243]]],[49,7,7,243,250,[[1103,1,1,243,244],[1104,2,2,244,246],[1106,4,4,246,250]]],[50,2,2,250,252,[[1107,1,1,250,251],[1110,1,1,251,252]]],[51,3,3,252,255,[[1111,1,1,252,253],[1113,1,1,253,254],[1115,1,1,254,255]]],[52,5,4,255,259,[[1116,2,1,255,256],[1118,3,3,256,259]]],[53,9,9,259,268,[[1119,1,1,259,260],[1120,2,2,260,262],[1121,1,1,262,263],[1122,3,3,263,266],[1124,2,2,266,268]]],[54,6,4,268,272,[[1126,2,2,268,270],[1128,4,2,270,272]]],[55,3,2,272,274,[[1130,1,1,272,273],[1131,2,1,273,274]]],[56,1,1,274,275,[[1132,1,1,274,275]]],[57,12,12,275,287,[[1137,1,1,275,276],[1139,1,1,276,277],[1141,1,1,277,278],[1142,1,1,278,279],[1143,2,2,279,281],[1144,3,3,281,284],[1145,3,3,284,287]]],[59,1,1,287,288,[[1153,1,1,287,288]]],[61,5,3,288,291,[[1159,4,2,288,290],[1160,1,1,290,291]]],[62,2,2,291,293,[[1164,2,2,291,293]]],[65,32,27,293,320,[[1167,2,2,293,295],[1168,1,1,295,296],[1169,5,3,296,299],[1170,1,1,299,300],[1172,1,1,300,301],[1178,2,2,301,303],[1179,2,2,303,305],[1180,2,2,305,307],[1183,4,3,307,310],[1184,2,2,310,312],[1185,1,1,312,313],[1186,2,2,313,315],[1187,5,3,315,318],[1188,2,2,318,320]]]],[23167,23172,23180,23230,23259,23275,23356,23390,23394,23492,23493,23519,23530,23531,23534,23559,23604,23663,23699,23703,23717,23743,23772,23794,23812,23828,23888,23987,23988,24006,24008,24011,24012,24018,24027,24039,24065,24072,24074,24077,24083,24090,24092,24094,24101,24105,24109,24112,24123,24125,24126,24163,24170,24183,24203,24207,24215,24228,24235,24244,24251,24276,24279,24285,24293,24294,24295,24302,24339,24359,24382,24388,24404,24432,24457,24510,24514,24538,24546,24562,24618,24651,24743,24761,24768,24771,24772,24774,24787,24797,24802,24808,24821,24827,24833,24854,24857,24883,24921,24932,24959,25009,25024,25136,25137,25141,25149,25150,25163,25231,25258,25290,25350,25380,25412,25428,25436,25437,25472,25505,25517,25519,25562,25584,25617,25618,25619,25666,25671,25853,25875,25879,25885,25892,25897,25916,25917,25923,25978,26020,26021,26043,26122,26142,26146,26183,26260,26323,26361,26410,26477,26480,26539,26554,26577,26588,26597,26615,26638,26648,26663,26677,26684,26698,26726,26730,26758,26771,26783,26787,26788,26790,26803,26811,26843,26865,26874,26891,26893,26949,26977,27051,27053,27125,27154,27161,27235,27244,27255,27297,27328,27379,27437,27441,27446,27477,27534,27567,27644,27645,27650,27657,27660,27770,27772,27776,27787,27808,27819,27835,27865,27879,27930,28260,28263,28313,28336,28356,28360,28473,28499,28500,28787,28788,28799,28800,28913,28914,28931,28936,28950,29054,29057,29082,29093,29156,29161,29206,29274,29297,29342,29360,29361,29365,29403,29420,29445,29448,29451,29465,29476,29560,29566,29603,29649,29656,29690,29694,29696,29710,29725,29731,29735,29750,29751,29761,29794,29809,29837,29849,29881,29892,29923,29938,29963,30037,30085,30124,30155,30181,30203,30226,30229,30240,30258,30264,30266,30439,30543,30546,30569,30647,30648,30704,30709,30739,30750,30766,30767,30769,30801,30900,30908,30912,30915,30927,30930,30976,30987,30989,30996,31002,31037,31042,31044,31056,31062,31068,31092,31101]]]]},{"k":"G3327","v":[["*",[12,11,[[39,6,5,0,5,[[936,1,1,0,1],[939,1,1,1,2],[940,1,1,2,3],[943,1,1,3,4],[945,2,1,4,5]]],[41,1,1,5,6,[[982,1,1,5,6]]],[42,3,3,6,9,[[1001,1,1,6,7],[1003,1,1,7,8],[1009,1,1,8,9]]],[43,1,1,9,10,[[1035,1,1,9,10]]],[61,1,1,10,11,[[1161,1,1,10,11]]]],[23379,23460,23498,23662,23720,25370,26234,26331,26631,27564,30593]]],["Depart",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26331]]],["Go",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25370]]],["Remove",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23720]]],["depart",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[42,1,1,1,2,[[1009,1,1,1,2]]]],[23379,26631]]],["departed",[4,4,[[39,3,3,0,3,[[939,1,1,0,1],[940,1,1,1,2],[943,1,1,2,3]]],[43,1,1,3,4,[[1035,1,1,3,4]]]],[23460,23498,23662,27564]]],["passed",[2,2,[[42,1,1,0,1,[[1001,1,1,0,1]]],[61,1,1,1,2,[[1161,1,1,1,2]]]],[26234,30593]]],["remove",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23720]]]]},{"k":"G3328","v":[["minds",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27905]]]]},{"k":"G3329","v":[["about",[2,2,[[58,2,2,0,2,[[1148,2,2,0,2]]]],[30322,30323]]]]},{"k":"G3330","v":[["*",[5,5,[[41,1,1,0,1,[[975,1,1,0,1]]],[44,2,2,1,3,[[1046,1,1,1,2],[1057,1,1,2,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]],[51,1,1,4,5,[[1112,1,1,4,5]]]],[25036,27941,28253,29300,29578]]],["give",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29300]]],["giveth",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28253]]],["impart",[2,2,[[41,1,1,0,1,[[975,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[25036,27941]]],["imparted",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29578]]]]},{"k":"G3331","v":[["*",[3,3,[[57,3,3,0,3,[[1139,1,1,0,1],[1143,1,1,1,2],[1144,1,1,2,3]]]],[30076,30177,30239]]],["change",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30076]]],["removing",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30239]]],["translation",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30177]]]]},{"k":"G3332","v":[["departed",[2,2,[[39,2,2,0,2,[[941,1,1,0,1],[947,1,1,1,2]]]],[23592,23763]]]]},{"k":"G3333","v":[["*",[4,4,[[43,4,4,0,4,[[1024,1,1,0,1],[1027,1,1,1,2],[1037,1,1,2,3],[1041,1,1,3,4]]]],[27130,27291,27643,27794]]],["called",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1037,1,1,1,2]]]],[27130,27643]]],["for",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27794]]],["hither",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27291]]]]},{"k":"G3334","v":[["away",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29488]]]]},{"k":"G3335","v":[["*",[6,6,[[43,3,3,0,3,[[1019,1,1,0,1],[1041,1,1,1,2],[1044,1,1,2,3]]],[54,1,1,3,4,[[1126,1,1,3,4]]],[57,2,2,4,6,[[1138,1,1,4,5],[1144,1,1,5,6]]]],[26995,27794,27888,29833,30051,30222]]],["+",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29833]]],["eat",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26995]]],["have",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27794]]],["partakers",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30222]]],["receiveth",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30051]]],["take",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27888]]]]},{"k":"G3336","v":[["+",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29750]]]]},{"k":"G3337","v":[["*",[2,2,[[44,2,2,0,2,[[1046,2,2,0,2]]]],[27955,27956]]],["change",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27956]]],["changed",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27955]]]]},{"k":"G3338","v":[["*",[6,5,[[39,3,3,0,3,[[949,2,2,0,2],[955,1,1,2,3]]],[46,2,1,3,4,[[1084,2,1,3,4]]],[57,1,1,4,5,[[1139,1,1,4,5]]]],[23855,23858,24132,28924,30085]]],["repent",[3,2,[[46,2,1,0,1,[[1084,2,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[28924,30085]]],["repented",[3,3,[[39,3,3,0,3,[[949,2,2,0,2],[955,1,1,2,3]]]],[23855,23858,24132]]]]},{"k":"G3339","v":[["*",[4,4,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[46,1,1,3,4,[[1080,1,1,3,4]]]],[23702,24540,28247,28859]]],["changed",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28859]]],["transfigured",[2,2,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]]],[23702,24540]]],["transformed",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28247]]]]},{"k":"G3340","v":[["*",[34,32,[[39,5,5,0,5,[[931,1,1,0,1],[932,1,1,1,2],[939,2,2,2,4],[940,1,1,4,5]]],[40,2,2,5,7,[[957,1,1,5,6],[962,1,1,6,7]]],[41,9,9,7,16,[[982,1,1,7,8],[983,1,1,8,9],[985,2,2,9,11],[987,2,2,11,13],[988,1,1,13,14],[989,2,2,14,16]]],[43,5,5,16,21,[[1019,1,1,16,17],[1020,1,1,17,18],[1025,1,1,18,19],[1034,1,1,19,20],[1043,1,1,20,21]]],[46,1,1,21,22,[[1089,1,1,21,22]]],[65,12,10,22,32,[[1168,6,4,22,26],[1169,2,2,26,28],[1175,2,2,28,30],[1182,2,2,30,32]]]],[23194,23226,23479,23480,23530,24230,24419,25376,25437,25521,25523,25595,25598,25650,25654,25655,26987,27015,27198,27553,27843,29043,30722,30733,30738,30739,30749,30765,30860,30861,30963,30965]]],["+",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30860]]],["Repent",[6,6,[[39,2,2,0,2,[[931,1,1,0,1],[932,1,1,1,2]]],[43,3,3,2,5,[[1019,1,1,2,3],[1020,1,1,3,4],[1025,1,1,4,5]]],[65,1,1,5,6,[[1168,1,1,5,6]]]],[23194,23226,26987,27015,27198,30733]]],["repent",[15,14,[[40,2,2,0,2,[[957,1,1,0,1],[962,1,1,1,2]]],[41,5,5,2,7,[[985,2,2,2,4],[988,1,1,4,5],[989,2,2,5,7]]],[43,2,2,7,9,[[1034,1,1,7,8],[1043,1,1,8,9]]],[65,6,5,9,14,[[1168,4,3,9,12],[1169,2,2,12,14]]]],[24230,24419,25521,25523,25650,25654,25655,27553,27843,30722,30738,30739,30749,30765]]],["repented",[10,10,[[39,3,3,0,3,[[939,2,2,0,2],[940,1,1,2,3]]],[41,2,2,3,5,[[982,1,1,3,4],[983,1,1,4,5]]],[46,1,1,5,6,[[1089,1,1,5,6]]],[65,4,4,6,10,[[1168,1,1,6,7],[1175,1,1,7,8],[1182,2,2,8,10]]]],[23479,23480,23530,25376,25437,29043,30738,30861,30963,30965]]],["repenteth",[2,2,[[41,2,2,0,2,[[987,2,2,0,2]]]],[25595,25598]]]]},{"k":"G3341","v":[["repentance",[24,24,[[39,3,3,0,3,[[931,2,2,0,2],[937,1,1,2,3]]],[40,2,2,3,5,[[957,1,1,3,4],[958,1,1,4,5]]],[41,5,5,5,10,[[975,2,2,5,7],[977,1,1,7,8],[987,1,1,8,9],[996,1,1,9,10]]],[43,6,6,10,16,[[1022,1,1,10,11],[1028,1,1,11,12],[1030,1,1,12,13],[1036,1,1,13,14],[1037,1,1,14,15],[1043,1,1,15,16]]],[44,1,1,16,17,[[1047,1,1,16,17]]],[46,2,2,17,19,[[1084,2,2,17,19]]],[54,1,1,19,20,[[1126,1,1,19,20]]],[57,3,3,20,23,[[1138,2,2,20,22],[1144,1,1,22,23]]],[60,1,1,23,24,[[1158,1,1,23,24]]]],[23200,23203,23392,24219,24277,25028,25033,25139,25595,26038,27090,27325,27386,27589,27647,27843,27966,28925,28926,29852,30045,30050,30229,30531]]]]},{"k":"G3342","v":[["*",[9,9,[[39,2,2,0,2,[[946,1,1,0,1],[951,1,1,1,2]]],[41,2,2,2,4,[[983,1,1,2,3],[988,1,1,3,4]]],[42,1,1,4,5,[[1000,1,1,4,5]]],[43,3,3,5,8,[[1029,1,1,5,6],[1030,1,1,6,7],[1032,1,1,7,8]]],[44,1,1,8,9,[[1047,1,1,8,9]]]],[23742,23953,25456,25646,26187,27343,27404,27451,27977]]],["+",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27451]]],["between",[5,5,[[39,2,2,0,2,[[946,1,1,0,1],[951,1,1,1,2]]],[41,2,2,2,4,[[983,1,1,2,3],[988,1,1,3,4]]],[43,1,1,4,5,[[1029,1,1,4,5]]]],[23742,23953,25456,25646,27343]]],["next",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27404]]],["while",[2,2,[[42,1,1,0,1,[[1000,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]]],[26187,27977]]]]},{"k":"G3343","v":[["for",[8,7,[[43,8,7,0,7,[[1027,4,3,0,3],[1028,1,1,3,4],[1041,2,2,4,6],[1042,1,1,6,7]]]],[27264,27281,27288,27320,27793,27795,27799]]]]},{"k":"G3344","v":[["*",[3,3,[[43,1,1,0,1,[[1019,1,1,0,1]]],[47,1,1,1,2,[[1091,1,1,1,2]]],[58,1,1,2,3,[[1149,1,1,2,3]]]],[26969,29064,30346]]],["pervert",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29064]]],["turned",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[58,1,1,1,2,[[1149,1,1,1,2]]]],[26969,30346]]]]},{"k":"G3345","v":[["*",[5,5,[[45,1,1,0,1,[[1065,1,1,0,1]]],[46,3,3,1,4,[[1088,3,3,1,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]]],[28439,29002,29003,29004,29442]]],["change",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29442]]],["themselves",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29002]]],["transferred",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28439]]],["transformed",[2,2,[[46,2,2,0,2,[[1088,2,2,0,2]]]],[29003,29004]]]]},{"k":"G3346","v":[["*",[6,5,[[43,1,1,0,1,[[1024,1,1,0,1]]],[47,1,1,1,2,[[1091,1,1,1,2]]],[57,3,2,2,4,[[1139,1,1,2,3],[1143,2,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[27132,29063,30076,30177,30676]]],["changed",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30076]]],["over",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27132]]],["removed",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29063]]],["translated",[2,1,[[57,2,1,0,1,[[1143,2,1,0,1]]]],[30177]]],["turning",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30676]]]]},{"k":"G3347","v":[["afterward",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30229]]]]},{"k":"G3348","v":[["*",[8,8,[[45,5,5,0,5,[[1070,2,2,0,2],[1071,3,3,2,5]]],[57,3,3,5,8,[[1134,1,1,5,6],[1137,1,1,6,7],[1139,1,1,7,8]]]],[28550,28552,28584,28588,28597,29991,30043,30077]]],["+",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28584]]],["part",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29991]]],["partaker",[2,2,[[45,2,2,0,2,[[1070,1,1,0,1],[1071,1,1,1,2]]]],[28550,28597]]],["partakers",[2,2,[[45,2,2,0,2,[[1070,1,1,0,1],[1071,1,1,1,2]]]],[28552,28588]]],["pertaineth",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30077]]],["useth",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30043]]]]},{"k":"G3349","v":[["mind",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25488]]]]},{"k":"G3350","v":[["*",[4,3,[[39,4,3,0,3,[[929,4,3,0,3]]]],[23155,23156,23161]]],["away",[3,2,[[39,3,2,0,2,[[929,3,2,0,2]]]],[23155,23161]]],["brought",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23156]]]]},{"k":"G3351","v":[["*",[2,2,[[43,2,2,0,2,[[1024,2,2,0,2]]]],[27120,27159]]],["+",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27159]]],["removed",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27120]]]]},{"k":"G3352","v":[["fellowship",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28912]]]]},{"k":"G3353","v":[["*",[6,6,[[41,1,1,0,1,[[977,1,1,0,1]]],[57,5,5,1,6,[[1133,1,1,1,2],[1135,2,2,2,4],[1138,1,1,4,5],[1144,1,1,5,6]]]],[25114,29972,29996,30009,30048,30220]]],["fellows",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29972]]],["partakers",[4,4,[[57,4,4,0,4,[[1135,2,2,0,2],[1138,1,1,2,3],[1144,1,1,3,4]]]],[29996,30009,30048,30220]]],["partners",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25114]]]]},{"k":"G3354","v":[["*",[10,9,[[39,1,1,0,1,[[935,1,1,0,1]]],[40,2,1,1,2,[[960,2,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[46,1,1,3,4,[[1087,1,1,3,4]]],[65,5,5,4,9,[[1177,2,2,4,6],[1187,3,3,6,9]]]],[23318,24347,25184,28983,30873,30874,31068,31069,31070]]],["measure",[3,3,[[65,3,3,0,3,[[1177,2,2,0,2],[1187,1,1,2,3]]]],[30873,30874,31068]]],["measured",[3,3,[[40,1,1,0,1,[[960,1,1,0,1]]],[65,2,2,1,3,[[1187,2,2,1,3]]]],[24347,31069,31070]]],["measuring",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28983]]],["mete",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]]],[23318,24347,25184]]]]},{"k":"G3355","v":[["firkins",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26101]]]]},{"k":"G3356","v":[["compassion",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30032]]]]},{"k":"G3357","v":[["little",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27638]]]]},{"k":"G3358","v":[["measure",[13,11,[[39,2,2,0,2,[[935,1,1,0,1],[951,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,2,1,3,4,[[978,2,1,3,4]]],[42,1,1,4,5,[[999,1,1,4,5]]],[44,1,1,5,6,[[1057,1,1,5,6]]],[46,2,1,6,7,[[1087,2,1,6,7]]],[48,3,3,7,10,[[1100,3,3,7,10]]],[65,1,1,10,11,[[1187,1,1,10,11]]]],[23318,23950,24347,25184,26154,28248,28984,29279,29285,29288,31070]]]]},{"k":"G3359","v":[["*",[8,8,[[65,8,8,0,8,[[1173,1,1,0,1],[1175,1,1,1,2],[1179,1,1,2,3],[1180,2,2,3,5],[1183,1,1,5,6],[1186,1,1,6,7],[1188,1,1,7,8]]]],[30813,30844,30924,30927,30935,30980,31042,31084]]],["forehead",[2,2,[[65,2,2,0,2,[[1180,1,1,0,1],[1183,1,1,1,2]]]],[30935,30980]]],["foreheads",[6,6,[[65,6,6,0,6,[[1173,1,1,0,1],[1175,1,1,1,2],[1179,1,1,2,3],[1180,1,1,3,4],[1186,1,1,4,5],[1188,1,1,5,6]]]],[30813,30844,30924,30927,31042,31084]]]]},{"k":"G3360","v":[["*",[17,17,[[39,3,3,0,3,[[939,1,1,0,1],[941,1,1,1,2],[956,1,1,2,3]]],[40,1,1,3,4,[[969,1,1,3,4]]],[43,2,2,4,6,[[1027,1,1,4,5],[1037,1,1,5,6]]],[44,2,2,6,8,[[1050,1,1,6,7],[1060,1,1,7,8]]],[48,1,1,8,9,[[1100,1,1,8,9]]],[49,2,2,9,11,[[1104,2,2,9,11]]],[53,1,1,11,12,[[1124,1,1,11,12]]],[54,1,1,12,13,[[1126,1,1,12,13]]],[57,4,4,13,17,[[1135,2,2,13,15],[1141,1,1,15,16],[1144,1,1,16,17]]]],[23482,23569,24210,24747,27289,27633,28061,28322,29285,29399,29421,29802,29836,30001,30009,30115,30216]]],["Till",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29285]]],["till",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24747]]],["to",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28061]]],["until",[7,7,[[39,3,3,0,3,[[939,1,1,0,1],[941,1,1,1,2],[956,1,1,2,3]]],[43,2,2,3,5,[[1027,1,1,3,4],[1037,1,1,4,5]]],[53,1,1,5,6,[[1124,1,1,5,6]]],[57,1,1,6,7,[[1141,1,1,6,7]]]],[23482,23569,24210,27289,27633,29802,30115]]],["unto",[7,7,[[44,1,1,0,1,[[1060,1,1,0,1]]],[49,2,2,1,3,[[1104,2,2,1,3]]],[54,1,1,3,4,[[1126,1,1,3,4]]],[57,3,3,4,7,[[1135,2,2,4,6],[1144,1,1,6,7]]]],[28322,29399,29421,29836,30001,30009,30216]]]]},{"k":"G3361","v":[["*",[750,673,[[39,83,78,0,78,[[929,2,2,0,2],[930,1,1,2,3],[931,2,2,3,5],[933,6,6,5,11],[934,13,13,11,24],[935,6,5,24,29],[936,1,1,29,30],[937,2,2,30,32],[938,11,9,32,41],[939,1,1,41,42],[940,3,2,42,44],[941,3,3,44,47],[942,1,1,47,48],[944,1,1,48,49],[945,1,1,49,50],[946,4,4,50,54],[947,2,2,54,56],[949,1,1,56,57],[950,5,5,57,62],[951,4,4,62,66],[952,8,7,66,73],[953,1,1,73,74],[954,2,2,74,76],[956,2,2,76,78]]],[40,44,37,78,115,[[958,2,2,78,80],[959,2,2,80,82],[960,4,3,82,85],[961,3,3,85,88],[962,7,5,88,93],[964,1,1,93,94],[965,1,1,94,95],[966,9,5,95,100],[967,1,1,100,101],[968,4,4,101,105],[969,8,8,105,113],[970,1,1,113,114],[972,1,1,114,115]]],[41,105,92,115,207,[[973,3,3,115,118],[974,3,3,118,121],[975,3,3,121,124],[976,1,1,124,125],[977,3,3,125,128],[978,5,4,128,132],[979,5,5,132,137],[980,9,8,137,145],[981,4,4,145,149],[982,5,4,149,153],[983,11,9,153,162],[984,12,10,162,172],[985,4,4,172,176],[986,3,3,176,179],[988,1,1,179,180],[989,5,4,180,184],[990,9,5,184,189],[991,2,2,189,191],[992,3,3,191,194],[993,5,4,194,198],[994,6,6,198,204],[995,1,1,204,205],[996,2,2,205,207]]],[42,66,65,207,272,[[998,1,1,207,208],[999,6,5,208,213],[1000,2,2,213,215],[1001,3,3,215,218],[1002,8,8,218,226],[1003,9,9,226,235],[1004,2,2,235,237],[1005,3,3,237,240],[1006,4,4,240,244],[1007,2,2,244,246],[1008,5,5,246,251],[1009,1,1,251,252],[1010,3,3,252,255],[1011,3,3,255,258],[1012,2,2,258,260],[1014,5,5,260,265],[1015,4,4,265,269],[1016,3,3,269,272]]],[43,55,53,272,325,[[1018,2,2,272,274],[1019,1,1,274,275],[1020,1,1,275,276],[1021,3,3,276,279],[1022,3,3,279,282],[1024,4,4,282,286],[1026,3,3,286,289],[1027,2,2,289,291],[1028,1,1,291,292],[1029,1,1,292,293],[1030,2,2,293,295],[1031,1,1,295,296],[1032,3,2,296,298],[1034,1,1,298,299],[1035,2,1,299,300],[1036,1,1,300,301],[1037,5,5,301,306],[1038,5,5,306,311],[1040,4,4,311,315],[1041,1,1,315,316],[1042,2,2,316,318],[1043,1,1,318,319],[1044,6,6,319,325]]],[44,66,53,325,378,[[1046,1,1,325,326],[1047,4,3,326,329],[1048,5,5,329,334],[1049,3,3,334,337],[1050,2,2,337,339],[1051,3,3,339,342],[1052,3,3,342,345],[1053,2,2,345,347],[1054,4,3,347,350],[1055,3,2,350,352],[1056,9,6,352,358],[1057,8,7,358,365],[1058,5,3,365,368],[1059,13,9,368,377],[1060,1,1,377,378]]],[45,73,61,378,439,[[1062,5,5,378,383],[1063,1,1,383,384],[1065,5,4,384,388],[1066,3,3,388,391],[1067,2,2,391,393],[1068,20,15,393,408],[1069,1,1,408,409],[1070,6,6,409,415],[1071,5,5,415,420],[1072,5,4,420,424],[1073,8,3,424,427],[1074,3,3,427,430],[1075,5,5,430,435],[1076,2,2,435,437],[1077,2,2,437,439]]],[46,33,30,439,469,[[1078,1,1,439,440],[1079,3,3,440,443],[1080,3,3,443,446],[1081,6,4,446,450],[1082,2,2,450,452],[1083,5,5,452,457],[1085,1,1,457,458],[1086,3,3,458,461],[1087,3,3,461,464],[1088,1,1,464,465],[1089,4,3,465,468],[1090,1,1,468,469]]],[47,16,15,469,484,[[1092,1,1,469,470],[1093,2,2,470,472],[1094,2,2,472,474],[1095,6,6,474,480],[1096,5,4,480,484]]],[48,14,13,484,497,[[1098,1,1,484,485],[1099,1,1,485,486],[1100,4,3,486,489],[1101,6,6,489,495],[1102,2,2,495,497]]],[49,4,4,497,501,[[1103,1,1,497,498],[1104,2,2,498,500],[1105,1,1,500,501]]],[50,10,10,501,511,[[1107,1,1,501,502],[1108,4,4,502,506],[1109,5,5,506,511]]],[51,12,10,511,521,[[1111,1,1,511,512],[1112,2,2,512,514],[1114,5,3,514,517],[1115,4,4,517,521]]],[52,10,9,521,530,[[1116,2,1,521,522],[1117,3,3,522,525],[1118,5,5,525,530]]],[53,21,17,530,547,[[1119,2,2,530,532],[1120,1,1,532,533],[1121,8,4,533,537],[1122,1,1,537,538],[1123,5,5,538,543],[1124,4,4,543,547]]],[54,3,3,547,550,[[1125,1,1,547,548],[1126,1,1,548,549],[1128,1,1,549,550]]],[55,14,9,550,559,[[1129,8,4,550,554],[1130,5,4,554,558],[1131,1,1,558,559]]],[56,2,2,559,561,[[1132,2,2,559,561]]],[57,29,28,561,589,[[1135,3,3,561,564],[1136,3,3,564,567],[1138,2,2,567,569],[1139,1,1,569,570],[1141,1,1,570,571],[1142,2,2,571,573],[1143,6,6,573,579],[1144,7,6,579,585],[1145,4,4,585,589]]],[58,22,20,589,609,[[1146,5,5,589,594],[1147,8,6,594,600],[1148,3,3,600,603],[1149,3,3,603,606],[1150,3,3,606,609]]],[59,13,13,609,622,[[1151,2,2,609,611],[1152,1,1,611,612],[1153,5,5,612,617],[1154,4,4,617,621],[1155,1,1,621,622]]],[60,4,4,622,626,[[1156,1,1,622,623],[1157,1,1,623,624],[1158,2,2,624,626]]],[61,18,16,626,642,[[1160,4,4,626,630],[1161,6,5,630,635],[1162,4,4,635,639],[1163,4,3,639,642]]],[62,5,4,642,646,[[1164,5,4,642,646]]],[63,2,2,646,648,[[1165,2,2,646,648]]],[64,3,3,648,651,[[1166,3,3,648,651]]],[65,23,22,651,673,[[1167,1,1,651,652],[1169,2,2,652,654],[1171,1,1,654,655],[1172,1,1,655,656],[1173,3,3,656,659],[1174,1,1,659,660],[1175,3,3,660,663],[1176,1,1,663,664],[1177,2,2,664,666],[1179,2,2,666,668],[1184,2,1,668,669],[1185,1,1,669,670],[1186,1,1,670,671],[1188,2,2,671,673]]]],[23163,23164,23181,23201,23202,23251,23263,23264,23268,23273,23276,23283,23284,23285,23289,23290,23295,23297,23298,23300,23301,23307,23313,23316,23317,23322,23325,23335,23342,23373,23394,23415,23422,23426,23427,23431,23436,23443,23445,23448,23451,23465,23505,23519,23544,23545,23558,23624,23700,23707,23737,23740,23743,23752,23768,23776,23847,23884,23895,23896,23897,23901,23921,23926,23927,23941,23961,23963,23974,23975,23977,23980,23983,24037,24059,24095,24200,24205,24264,24279,24300,24308,24328,24329,24335,24371,24374,24400,24415,24416,24418,24441,24457,24501,24577,24597,24602,24603,24607,24618,24663,24688,24691,24692,24697,24722,24724,24728,24732,24733,24735,24738,24753,24756,24879,24906,24913,24923,24983,24999,25018,25033,25034,25036,25105,25117,25126,25141,25175,25176,25183,25195,25201,25208,25218,25225,25237,25251,25255,25263,25273,25276,25294,25295,25297,25306,25334,25346,25351,25367,25370,25373,25383,25409,25412,25416,25417,25428,25429,25440,25441,25447,25463,25466,25470,25480,25481,25488,25491,25492,25506,25507,25521,25523,25529,25532,25561,25565,25582,25646,25652,25660,25674,25682,25689,25690,25704,25705,25708,25757,25758,25786,25795,25806,25834,25835,25840,25847,25896,25898,25899,25900,25904,25906,25963,26007,26014,26111,26124,26127,26135,26136,26138,26168,26171,26233,26238,26255,26269,26277,26284,26296,26300,26307,26321,26324,26343,26351,26352,26363,26369,26375,26377,26379,26380,26405,26434,26467,26479,26480,26482,26502,26518,26519,26560,26573,26595,26620,26626,26627,26628,26639,26669,26692,26695,26701,26721,26723,26727,26733,26802,26810,26815,26821,26825,26836,26846,26849,26856,26884,26894,26896,26927,26943,26974,27019,27039,27040,27042,27066,27087,27099,27135,27144,27158,27176,27225,27242,27254,27274,27306,27316,27356,27373,27402,27432,27461,27480,27529,27566,27616,27636,27642,27648,27653,27655,27668,27676,27678,27685,27698,27742,27743,27744,27755,27773,27820,27823,27855,27862,27870,27872,27876,27879,27897,27958,27976,27983,27984,27994,27995,27997,27999,28022,28027,28039,28041,28060,28061,28070,28080,28083,28094,28098,28104,28117,28120,28169,28175,28185,28194,28208,28210,28217,28219,28220,28227,28229,28247,28248,28256,28259,28261,28264,28266,28269,28279,28280,28281,28283,28286,28293,28295,28296,28300,28301,28302,28304,28370,28373,28376,28391,28392,28399,28438,28439,28440,28451,28462,28463,28465,28476,28482,28488,28492,28497,28498,28499,28500,28505,28508,28510,28514,28516,28517,28518,28524,28525,28535,28546,28548,28549,28556,28558,28561,28573,28579,28589,28595,28600,28622,28629,28632,28634,28659,28663,28664,28666,28667,28668,28685,28689,28698,28706,28717,28751,28752,28778,28787,28809,28825,28829,28837,28848,28854,28855,28861,28863,28866,28877,28896,28898,28899,28901,28907,28912,28915,28952,28960,28961,28963,28973,28980,28985,29005,29028,29039,29043,29050,29098,29103,29123,29139,29149,29163,29169,29175,29177,29179,29188,29189,29195,29197,29202,29241,29264,29298,29301,29302,29311,29315,29319,29321,29322,29331,29341,29343,29389,29395,29403,29430,29488,29502,29510,29512,29515,29519,29526,29536,29538,29539,29568,29579,29585,29608,29609,29616,29627,29636,29640,29641,29657,29663,29664,29673,29684,29686,29691,29692,29693,29699,29716,29725,29734,29737,29739,29742,29761,29764,29772,29776,29779,29782,29789,29790,29791,29805,29817,29841,29886,29898,29899,29903,29906,29911,29913,29917,29918,29937,29952,29957,30003,30010,30013,30016,30021,30029,30045,30056,30070,30114,30158,30168,30175,30177,30180,30185,30199,30212,30217,30227,30228,30231,30237,30239,30243,30250,30257,30258,30271,30273,30282,30288,30292,30294,30304,30306,30307,30309,30310,30320,30331,30333,30339,30348,30354,30363,30366,30371,30382,30388,30415,30430,30431,30433,30434,30438,30450,30458,30461,30462,30467,30488,30521,30530,30531,30551,30554,30565,30578,30589,30592,30593,30597,30600,30604,30606,30611,30623,30634,30636,30640,30652,30653,30654,30655,30668,30669,30677,30678,30691,30714,30749,30764,30784,30799,30811,30813,30826,30839,30844,30845,30860,30865,30874,30878,30923,30925,30997,31027,31041,31089,31090]]],["+",[138,132,[[39,16,16,0,16,[[931,1,1,0,1],[933,1,1,1,2],[934,5,5,2,7],[935,1,1,7,8],[937,1,1,8,9],[938,2,2,9,11],[942,1,1,11,12],[945,1,1,12,13],[946,1,1,13,14],[952,1,1,14,15],[956,1,1,15,16]]],[40,6,6,16,22,[[958,1,1,16,17],[961,1,1,17,18],[962,1,1,18,19],[964,1,1,19,20],[966,1,1,20,21],[969,1,1,21,22]]],[41,23,23,22,45,[[975,1,1,22,23],[978,1,1,23,24],[980,1,1,24,25],[983,3,3,25,28],[984,6,6,28,34],[985,3,3,34,37],[986,2,2,37,39],[988,1,1,39,40],[989,2,2,40,42],[990,1,1,42,43],[992,1,1,43,44],[994,1,1,44,45]]],[42,13,13,45,58,[[1000,1,1,45,46],[1002,3,3,46,49],[1003,3,3,49,52],[1004,1,1,52,53],[1005,2,2,53,55],[1012,1,1,55,56],[1015,1,1,56,57],[1016,1,1,57,58]]],[43,10,8,58,66,[[1024,1,1,58,59],[1027,1,1,59,60],[1028,1,1,60,61],[1032,2,1,61,62],[1035,2,1,62,63],[1037,1,1,63,64],[1041,1,1,64,65],[1044,1,1,65,66]]],[44,21,19,66,85,[[1046,1,1,66,67],[1048,4,4,67,71],[1049,1,1,71,72],[1050,1,1,72,73],[1051,2,2,73,75],[1052,2,2,75,77],[1054,1,1,77,78],[1055,1,1,78,79],[1056,4,4,79,83],[1059,4,2,83,85]]],[45,11,11,85,96,[[1062,2,2,85,87],[1065,1,1,87,88],[1067,1,1,88,89],[1068,1,1,89,90],[1070,3,3,90,93],[1071,1,1,93,94],[1072,2,2,94,96]]],[46,5,3,96,99,[[1080,1,1,96,97],[1081,3,1,97,98],[1090,1,1,98,99]]],[47,3,3,99,102,[[1092,1,1,99,100],[1093,1,1,100,101],[1096,1,1,101,102]]],[48,4,4,102,106,[[1100,1,1,102,103],[1101,2,2,103,105],[1102,1,1,105,106]]],[49,1,1,106,107,[[1103,1,1,106,107]]],[50,1,1,107,108,[[1109,1,1,107,108]]],[51,1,1,108,109,[[1115,1,1,108,109]]],[52,2,2,109,111,[[1118,2,2,109,111]]],[53,2,2,111,113,[[1119,1,1,111,112],[1124,1,1,112,113]]],[54,1,1,113,114,[[1126,1,1,113,114]]],[57,5,5,114,119,[[1136,1,1,114,115],[1139,1,1,115,116],[1142,1,1,116,117],[1144,1,1,117,118],[1145,1,1,118,119]]],[58,2,2,119,121,[[1147,1,1,119,120],[1149,1,1,120,121]]],[59,5,5,121,126,[[1153,2,2,121,123],[1154,3,3,123,126]]],[60,2,2,126,128,[[1156,1,1,126,127],[1158,1,1,127,128]]],[62,1,1,128,129,[[1164,1,1,128,129]]],[65,3,3,129,132,[[1173,1,1,129,130],[1177,1,1,130,131],[1184,1,1,131,132]]]],[23202,23276,23289,23301,23307,23313,23316,23335,23394,23436,23445,23624,23707,23740,23983,24205,24279,24400,24457,24501,24618,24728,25034,25176,25251,25412,25441,25447,25463,25470,25480,25481,25488,25492,25521,25523,25529,25561,25582,25646,25660,25674,25690,25795,25899,26168,26269,26277,26324,26369,26379,26380,26434,26467,26480,26733,26836,26896,27144,27274,27316,27480,27566,27636,27773,27897,27958,27994,27995,27997,28022,28041,28061,28070,28083,28098,28104,28169,28208,28210,28220,28227,28229,28283,28286,28370,28392,28438,28482,28525,28546,28548,28556,28573,28622,28634,28855,28877,29050,29098,29123,29202,29301,29315,29322,29341,29389,29536,29636,29691,29692,29699,29805,29841,30029,30070,30168,30239,30243,30307,30348,30430,30438,30450,30458,30461,30488,30530,30655,30826,30878,30997]]],["-",[2,2,[[45,1,1,0,1,[[1073,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[28664,30331]]],["Are",[2,2,[[42,1,1,0,1,[[1003,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]]],[26375,28663]]],["Doth",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28549]]],["Hath",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28210]]],["Lest",[2,2,[[40,1,1,0,1,[[969,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[24753,30228]]],["Neither",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23975]]],["Nor",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23427]]],["Not",[12,12,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,1,1,2,3,[[1014,1,1,2,3]]],[44,1,1,3,4,[[1057,1,1,3,4]]],[48,1,1,4,5,[[1102,1,1,4,5]]],[51,1,1,5,6,[[1114,1,1,5,6]]],[53,2,2,6,8,[[1121,2,2,6,8]]],[55,2,2,8,10,[[1129,1,1,8,9],[1130,1,1,9,10]]],[57,1,1,10,11,[[1142,1,1,10,11]]],[59,1,1,11,12,[[1153,1,1,11,12]]]],[24059,24756,26825,28256,29343,29608,29734,29737,29906,29918,30158,30433]]],["Shall",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28175]]],["a",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[42,1,1,1,2,[[1006,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]]],[23325,26502,28685]]],["any",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25806]]],["are",[3,1,[[45,3,1,0,1,[[1073,3,1,0,1]]]],[28663]]],["but",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27042]]],["by",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29039]]],["cannot",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29179]]],["do",[2,1,[[45,2,1,0,1,[[1073,2,1,0,1]]]],[28664]]],["he",[4,4,[[41,2,2,0,2,[[983,2,2,0,2]]],[42,2,2,2,4,[[999,1,1,2,3],[1003,1,1,3,4]]]],[25416,25417,26124,26363]]],["lest",[12,11,[[40,1,1,0,1,[[969,1,1,0,1]]],[43,3,3,1,4,[[1030,1,1,1,2],[1040,1,1,2,3],[1044,1,1,3,4]]],[45,1,1,4,5,[[1071,1,1,4,5]]],[46,3,3,5,8,[[1081,1,1,5,6],[1089,2,2,6,8]]],[47,1,1,8,9,[[1096,1,1,8,9]]],[50,1,1,9,10,[[1108,1,1,9,10]]],[57,2,1,10,11,[[1144,2,1,10,11]]]],[24722,27402,27744,27872,28579,28863,29028,29043,29189,29502,30227]]],["let",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29298]]],["man",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28293]]],["neither",[3,3,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[44,1,1,2,3,[[1059,1,1,2,3]]]],[23426,25367,28301]]],["never",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26343]]],["no",[45,43,[[39,9,9,0,9,[[936,1,1,0,1],[937,1,1,1,2],[941,2,2,2,4],[950,3,3,4,7],[951,1,1,7,8],[952,1,1,8,9]]],[40,7,5,9,14,[[960,2,2,9,11],[962,3,1,11,12],[968,2,2,12,14]]],[41,2,2,14,16,[[984,1,1,14,15],[994,1,1,15,16]]],[43,3,3,16,19,[[1018,1,1,16,17],[1021,1,1,17,18],[1040,1,1,18,19]]],[44,2,2,19,21,[[1050,1,1,19,20],[1052,1,1,20,21]]],[45,7,7,21,28,[[1062,1,1,21,22],[1065,1,1,22,23],[1068,1,1,23,24],[1073,1,1,24,25],[1075,1,1,25,26],[1077,2,2,26,28]]],[46,3,3,28,31,[[1082,1,1,28,29],[1085,1,1,29,30],[1088,1,1,30,31]]],[47,1,1,31,32,[[1094,1,1,31,32]]],[48,1,1,32,33,[[1098,1,1,32,33]]],[50,1,1,33,34,[[1108,1,1,33,34]]],[51,2,2,34,36,[[1114,2,2,34,36]]],[52,1,1,36,37,[[1117,1,1,36,37]]],[53,1,1,37,38,[[1121,1,1,37,38]]],[55,1,1,38,39,[[1129,1,1,38,39]]],[58,1,1,39,40,[[1147,1,1,39,40]]],[59,1,1,40,41,[[1153,1,1,40,41]]],[65,2,2,41,43,[[1179,1,1,41,42],[1186,1,1,42,43]]]],[23373,23415,23544,23545,23895,23896,23897,23927,23961,24328,24329,24415,24691,24692,25463,25900,26943,27039,27742,28060,28094,28373,28439,28524,28659,28706,28778,28787,28898,28952,29005,29139,29241,29510,29609,29616,29664,29734,29899,30306,30434,30925,31041]]],["none",[3,3,[[41,2,2,0,2,[[975,1,1,0,1],[983,1,1,1,2]]],[45,1,1,2,3,[[1068,1,1,2,3]]]],[25036,25429,28516]]],["nor",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25367]]],["not",[493,454,[[39,53,50,0,50,[[929,2,2,0,2],[930,1,1,2,3],[931,1,1,3,4],[933,5,5,4,9],[934,8,8,9,17],[935,4,3,17,20],[938,7,6,20,26],[939,1,1,26,27],[940,3,2,27,29],[941,1,1,29,30],[944,1,1,30,31],[946,3,3,31,34],[947,2,2,34,36],[949,1,1,36,37],[950,2,2,37,39],[951,3,3,39,42],[952,5,5,42,47],[953,1,1,47,48],[954,1,1,48,49],[956,1,1,49,50]]],[40,28,23,50,73,[[958,1,1,50,51],[959,2,2,51,53],[960,2,1,53,54],[961,2,2,54,56],[962,3,3,56,59],[965,1,1,59,60],[966,8,4,60,64],[967,1,1,64,65],[968,2,2,65,67],[969,5,5,67,72],[972,1,1,72,73]]],[41,68,60,73,133,[[973,3,3,73,76],[974,3,3,76,79],[975,1,1,79,80],[976,1,1,80,81],[977,2,2,81,83],[978,4,3,83,86],[979,4,4,86,90],[980,8,7,90,97],[981,4,4,97,101],[982,3,3,101,104],[983,4,3,104,107],[984,5,5,107,112],[985,1,1,112,113],[986,1,1,113,114],[989,2,1,114,115],[990,8,5,115,120],[991,2,2,120,122],[992,1,1,122,123],[993,5,4,123,127],[994,3,3,127,130],[995,1,1,130,131],[996,2,2,131,133]]],[42,46,45,133,178,[[998,1,1,133,134],[999,5,4,134,138],[1000,1,1,138,139],[1001,3,3,139,142],[1002,4,4,142,146],[1003,3,3,146,149],[1004,1,1,149,150],[1005,1,1,150,151],[1006,3,3,151,154],[1007,2,2,154,156],[1008,5,5,156,161],[1009,1,1,161,162],[1010,3,3,162,165],[1011,3,3,165,168],[1012,1,1,168,169],[1014,4,4,169,173],[1015,3,3,173,176],[1016,2,2,176,178]]],[43,35,35,178,213,[[1018,1,1,178,179],[1019,1,1,179,180],[1020,1,1,180,181],[1021,1,1,181,182],[1022,3,3,182,185],[1024,2,2,185,187],[1026,2,2,187,189],[1027,1,1,189,190],[1029,1,1,190,191],[1030,1,1,191,192],[1031,1,1,192,193],[1032,1,1,193,194],[1034,1,1,194,195],[1036,1,1,195,196],[1037,3,3,196,199],[1038,5,5,199,204],[1040,2,2,204,206],[1042,2,2,206,208],[1043,1,1,208,209],[1044,4,4,209,213]]],[44,36,30,213,243,[[1047,4,3,213,216],[1048,1,1,216,217],[1049,2,2,217,219],[1051,1,1,219,220],[1053,2,2,220,222],[1054,1,1,222,223],[1055,2,2,223,225],[1056,3,2,225,227],[1057,7,6,227,233],[1058,5,3,233,236],[1059,7,6,236,242],[1060,1,1,242,243]]],[45,42,37,243,280,[[1062,1,1,243,244],[1063,1,1,244,245],[1065,3,3,245,248],[1066,3,3,248,251],[1067,1,1,251,252],[1068,17,12,252,264],[1069,1,1,264,265],[1070,2,2,265,267],[1071,2,2,267,269],[1072,3,3,269,272],[1074,3,3,272,275],[1075,3,3,275,278],[1076,2,2,278,280]]],[46,21,21,280,301,[[1078,1,1,280,281],[1079,3,3,281,284],[1080,2,2,284,286],[1081,2,2,286,288],[1082,1,1,288,289],[1083,5,5,289,294],[1086,3,3,294,297],[1087,3,3,297,300],[1089,1,1,300,301]]],[47,10,9,301,310,[[1093,1,1,301,302],[1094,1,1,302,303],[1095,5,5,303,308],[1096,3,2,308,310]]],[48,7,7,310,317,[[1099,1,1,310,311],[1100,2,2,311,313],[1101,4,4,313,317]]],[49,3,3,317,320,[[1104,2,2,317,319],[1105,1,1,319,320]]],[50,7,7,320,327,[[1107,1,1,320,321],[1108,2,2,321,323],[1109,4,4,323,327]]],[51,8,8,327,335,[[1111,1,1,327,328],[1112,2,2,328,330],[1114,2,2,330,332],[1115,3,3,332,335]]],[52,7,6,335,341,[[1116,2,1,335,336],[1117,2,2,336,338],[1118,3,3,338,341]]],[53,16,14,341,355,[[1119,1,1,341,342],[1120,1,1,342,343],[1121,5,3,343,346],[1122,1,1,346,347],[1123,5,5,347,352],[1124,3,3,352,355]]],[54,2,2,355,357,[[1125,1,1,355,356],[1128,1,1,356,357]]],[55,11,7,357,364,[[1129,6,3,357,360],[1130,4,3,360,363],[1131,1,1,363,364]]],[56,2,2,364,366,[[1132,2,2,364,366]]],[57,20,20,366,386,[[1135,3,3,366,369],[1136,2,2,369,371],[1138,2,2,371,373],[1141,1,1,373,374],[1143,6,6,374,380],[1144,3,3,380,383],[1145,3,3,383,386]]],[58,18,17,386,403,[[1146,5,5,386,391],[1147,6,5,391,396],[1148,2,2,396,398],[1149,2,2,398,400],[1150,3,3,400,403]]],[59,6,6,403,409,[[1151,2,2,403,405],[1152,1,1,405,406],[1153,1,1,406,407],[1154,1,1,407,408],[1155,1,1,408,409]]],[60,2,2,409,411,[[1157,1,1,409,410],[1158,1,1,410,411]]],[61,18,16,411,427,[[1160,4,4,411,415],[1161,6,5,415,420],[1162,4,4,420,424],[1163,4,3,424,427]]],[62,4,4,427,431,[[1164,4,4,427,431]]],[63,2,2,431,433,[[1165,2,2,431,433]]],[64,3,3,433,436,[[1166,3,3,433,436]]],[65,18,18,436,454,[[1167,1,1,436,437],[1169,2,2,437,439],[1171,1,1,439,440],[1172,1,1,440,441],[1173,2,2,441,443],[1174,1,1,443,444],[1175,3,3,444,447],[1176,1,1,447,448],[1177,1,1,448,449],[1179,1,1,449,450],[1184,1,1,450,451],[1185,1,1,451,452],[1188,2,2,452,454]]]],[23163,23164,23181,23201,23251,23263,23264,23268,23273,23283,23284,23285,23290,23295,23297,23298,23300,23317,23322,23342,23422,23431,23443,23445,23448,23451,23465,23505,23519,23558,23700,23737,23743,23752,23768,23776,23847,23884,23901,23921,23926,23941,23963,23974,23977,23980,23983,24037,24095,24200,24264,24300,24308,24335,24371,24374,24416,24418,24441,24577,24597,24602,24603,24607,24663,24688,24697,24724,24732,24733,24735,24738,24879,24906,24913,24923,24983,24999,25018,25033,25105,25117,25126,25175,25183,25195,25201,25208,25218,25225,25255,25263,25273,25276,25294,25295,25297,25306,25334,25346,25351,25370,25373,25383,25409,25428,25440,25466,25488,25491,25506,25507,25532,25565,25682,25689,25690,25704,25705,25708,25757,25758,25786,25834,25835,25840,25847,25896,25904,25906,25963,26007,26014,26111,26127,26135,26136,26138,26171,26233,26238,26255,26284,26300,26307,26321,26351,26352,26377,26405,26479,26482,26518,26519,26560,26573,26595,26620,26626,26627,26628,26639,26669,26692,26695,26701,26721,26723,26727,26802,26810,26815,26821,26846,26849,26856,26884,26894,26927,26974,27019,27040,27066,27087,27099,27135,27176,27242,27254,27306,27356,27373,27432,27461,27529,27616,27642,27648,27655,27668,27676,27678,27685,27698,27743,27755,27820,27823,27855,27862,27870,27876,27879,27976,27983,27984,27999,28027,28039,28080,28117,28120,28185,28194,28208,28217,28219,28247,28248,28259,28261,28264,28266,28269,28279,28280,28281,28283,28295,28296,28300,28302,28304,28391,28399,28439,28440,28451,28462,28463,28465,28476,28488,28492,28497,28498,28499,28500,28505,28508,28510,28514,28517,28518,28535,28558,28561,28595,28600,28622,28629,28632,28666,28667,28668,28689,28698,28717,28751,28752,28809,28825,28829,28837,28848,28854,28861,28866,28896,28899,28901,28907,28912,28915,28960,28961,28963,28973,28980,28985,29043,29103,29149,29163,29169,29175,29177,29188,29195,29197,29264,29298,29302,29311,29319,29321,29331,29395,29403,29430,29488,29512,29515,29519,29526,29538,29539,29568,29579,29585,29608,29616,29627,29640,29641,29657,29663,29673,29684,29686,29693,29716,29725,29734,29739,29742,29761,29764,29772,29776,29779,29782,29789,29790,29791,29817,29886,29898,29899,29903,29911,29913,29917,29937,29952,29957,30003,30010,30013,30016,30021,30045,30056,30114,30175,30177,30180,30185,30199,30212,30217,30231,30237,30250,30257,30258,30271,30273,30282,30288,30292,30294,30304,30307,30309,30310,30320,30333,30339,30354,30363,30366,30371,30382,30388,30415,30431,30462,30467,30521,30531,30551,30554,30565,30578,30589,30592,30593,30597,30600,30604,30606,30611,30623,30634,30636,30640,30652,30653,30654,30655,30668,30669,30677,30678,30691,30714,30749,30764,30784,30799,30811,30813,30839,30844,30845,30860,30865,30874,30923,30997,31027,31089,31090]]],["nothing",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25237]]],["should",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26296]]],["that",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25652]]],["there",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28169]]],["they",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28220]]],["thou",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25898]]],["to",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27653]]],["was",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28376]]],["we",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28589]]],["will",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25416]]],["without",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27225]]],["ye",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[25141,27158]]]]},{"k":"G3362","v":[["*",[40,38,[[39,7,6,0,6,[[933,1,1,0,1],[938,1,1,1,2],[940,1,1,2,3],[946,3,2,3,5],[954,1,1,5,6]]],[40,4,4,6,10,[[959,1,1,6,7],[960,1,1,7,8],[963,2,2,8,10]]],[42,16,15,10,25,[[999,4,4,10,14],[1000,1,1,14,15],[1001,1,1,15,16],[1002,3,3,16,19],[1003,1,1,19,20],[1008,1,1,20,21],[1009,1,1,21,22],[1011,3,2,22,24],[1016,1,1,24,25]]],[43,3,3,25,28,[[1025,1,1,25,26],[1032,1,1,26,27],[1044,1,1,27,28]]],[44,2,2,28,30,[[1055,1,1,28,29],[1056,1,1,29,30]]],[45,3,3,30,33,[[1075,2,2,30,32],[1076,1,1,32,33]]],[47,1,1,33,34,[[1092,1,1,33,34]]],[52,1,1,34,35,[[1117,1,1,34,35]]],[54,1,1,35,36,[[1126,1,1,35,36]]],[65,2,2,36,38,[[1168,2,2,36,38]]]],[23254,23430,23518,23730,23762,24096,24315,24345,24466,24467,26122,26123,26125,26147,26204,26229,26301,26310,26322,26379,26604,26638,26703,26705,26892,27207,27443,27886,28203,28232,28684,28687,28754,29097,29664,29832,30722,30739]]],["+",[4,4,[[39,1,1,0,1,[[938,1,1,0,1]]],[42,2,2,1,3,[[1003,1,1,1,2],[1011,1,1,2,3]]],[44,1,1,3,4,[[1056,1,1,3,4]]]],[23430,26379,26705,28232]]],["Except",[9,9,[[39,1,1,0,1,[[946,1,1,0,1]]],[42,6,6,1,7,[[999,2,2,1,3],[1000,1,1,3,4],[1002,1,1,4,5],[1008,1,1,5,6],[1016,1,1,6,7]]],[43,2,2,7,9,[[1032,1,1,7,8],[1044,1,1,8,9]]]],[23730,26123,26125,26204,26310,26604,26892,27443,27886]]],["If",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26638]]],["but",[2,2,[[42,1,1,0,1,[[1001,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]]],[26229,29097]]],["except",[21,20,[[39,3,3,0,3,[[933,1,1,0,1],[940,1,1,1,2],[954,1,1,2,3]]],[40,3,3,3,6,[[959,1,1,3,4],[963,2,2,4,6]]],[42,6,5,6,11,[[999,2,2,6,8],[1002,2,2,8,10],[1011,2,1,10,11]]],[43,1,1,11,12,[[1025,1,1,11,12]]],[44,1,1,12,13,[[1055,1,1,12,13]]],[45,3,3,13,16,[[1075,2,2,13,15],[1076,1,1,15,16]]],[52,1,1,16,17,[[1117,1,1,16,17]]],[54,1,1,17,18,[[1126,1,1,17,18]]],[65,2,2,18,20,[[1168,2,2,18,20]]]],[23254,23518,24096,24315,24466,24467,26122,26147,26301,26322,26703,27207,28203,28684,28687,28754,29664,29832,30722,30739]]],["if",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23762]]],["not",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]]],[23762,24345]]]]},{"k":"G3363","v":[["*",[42,41,[[39,2,2,0,2,[[945,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[959,1,1,2,3],[970,1,1,3,4]]],[41,4,4,4,8,[[980,1,1,4,5],[988,1,1,5,6],[990,1,1,6,7],[994,1,1,7,8]]],[42,5,5,8,13,[[999,1,1,8,9],[1001,1,1,9,10],[1008,2,2,10,12],[1014,1,1,12,13]]],[43,1,1,13,14,[[1022,1,1,13,14]]],[44,2,2,14,16,[[1056,1,1,14,15],[1060,1,1,15,16]]],[45,4,4,16,20,[[1062,2,2,16,18],[1069,1,1,18,19],[1070,1,1,19,20]]],[46,6,5,20,25,[[1079,2,2,20,22],[1086,1,1,22,23],[1089,2,1,23,24],[1090,1,1,24,25]]],[47,1,1,25,26,[[1096,1,1,25,26]]],[48,1,1,26,27,[[1098,1,1,26,27]]],[49,1,1,27,28,[[1104,1,1,27,28]]],[50,2,2,28,30,[[1108,1,1,28,29],[1109,1,1,29,30]]],[53,2,2,30,32,[[1121,2,2,30,32]]],[57,5,5,32,37,[[1135,1,1,32,33],[1136,1,1,33,34],[1143,1,1,34,35],[1144,2,2,35,37]]],[58,2,2,37,39,[[1150,2,2,37,39]]],[60,1,1,39,40,[[1158,1,1,39,40]]],[65,1,1,40,41,[[1182,1,1,40,41]]]],[23727,24059,24297,24792,25257,25648,25693,25910,26140,26224,26615,26622,26813,27085,28234,28323,28378,28380,28540,28552,28827,28835,28959,29029,29053,29200,29238,29418,29498,29538,29737,29738,30008,30025,30200,30215,30225,30363,30366,30539,30969]]],["Lest",[2,2,[[45,1,1,0,1,[[1062,1,1,0,1]]],[46,1,1,1,2,[[1079,1,1,1,2]]]],[28378,28835]]],["lest",[40,39,[[39,2,2,0,2,[[945,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[959,1,1,2,3],[970,1,1,3,4]]],[41,4,4,4,8,[[980,1,1,4,5],[988,1,1,5,6],[990,1,1,6,7],[994,1,1,7,8]]],[42,5,5,8,13,[[999,1,1,8,9],[1001,1,1,9,10],[1008,2,2,10,12],[1014,1,1,12,13]]],[43,1,1,13,14,[[1022,1,1,13,14]]],[44,2,2,14,16,[[1056,1,1,14,15],[1060,1,1,15,16]]],[45,3,3,16,19,[[1062,1,1,16,17],[1069,1,1,17,18],[1070,1,1,18,19]]],[46,5,4,19,23,[[1079,1,1,19,20],[1086,1,1,20,21],[1089,2,1,21,22],[1090,1,1,22,23]]],[47,1,1,23,24,[[1096,1,1,23,24]]],[48,1,1,24,25,[[1098,1,1,24,25]]],[49,1,1,25,26,[[1104,1,1,25,26]]],[50,2,2,26,28,[[1108,1,1,26,27],[1109,1,1,27,28]]],[53,2,2,28,30,[[1121,2,2,28,30]]],[57,5,5,30,35,[[1135,1,1,30,31],[1136,1,1,31,32],[1143,1,1,32,33],[1144,2,2,33,35]]],[58,2,2,35,37,[[1150,2,2,35,37]]],[60,1,1,37,38,[[1158,1,1,37,38]]],[65,1,1,38,39,[[1182,1,1,38,39]]]],[23727,24059,24297,24792,25257,25648,25693,25910,26140,26224,26615,26622,26813,27085,28234,28323,28380,28540,28552,28827,28959,29029,29053,29200,29238,29418,29498,29538,29737,29738,30008,30025,30200,30215,30225,30363,30366,30539,30969]]]]},{"k":"G3364","v":[["*",[93,84,[[39,18,16,0,16,[[933,3,3,0,3],[938,2,2,3,5],[941,2,1,5,6],[943,1,1,6,7],[944,1,1,7,8],[946,1,1,8,9],[951,1,1,9,10],[952,5,4,10,14],[954,2,2,14,16]]],[40,11,10,16,26,[[965,2,2,16,18],[966,1,1,18,19],[969,5,4,19,23],[970,2,2,23,25],[972,1,1,25,26]]],[41,18,17,26,43,[[973,1,1,26,27],[978,2,1,27,28],[981,1,1,28,29],[982,1,1,29,30],[984,1,1,30,31],[985,1,1,31,32],[990,3,3,32,35],[993,3,3,35,38],[994,5,5,38,43]]],[42,16,15,43,58,[[1000,2,2,43,45],[1002,3,2,45,47],[1004,3,3,47,50],[1006,2,2,50,52],[1007,2,2,52,54],[1009,2,2,54,56],[1014,1,1,56,57],[1016,1,1,57,58]]],[43,3,2,58,60,[[1030,1,1,58,59],[1045,2,1,59,60]]],[44,1,1,60,61,[[1049,1,1,60,61]]],[45,1,1,61,62,[[1069,1,1,61,62]]],[47,2,2,62,64,[[1094,1,1,62,63],[1095,1,1,63,64]]],[51,2,2,64,66,[[1114,1,1,64,65],[1115,1,1,65,66]]],[57,4,4,66,70,[[1140,2,2,66,68],[1142,1,1,68,69],[1145,1,1,69,70]]],[59,1,1,70,71,[[1152,1,1,70,71]]],[60,1,1,71,72,[[1156,1,1,71,72]]],[65,15,12,72,84,[[1168,1,1,72,73],[1169,3,3,73,76],[1181,1,1,76,77],[1184,8,5,77,82],[1187,2,2,82,84]]]],[23252,23254,23260,23440,23459,23553,23639,23694,23730,23957,23959,23978,23991,23992,24083,24089,24539,24579,24603,24719,24736,24747,24748,24779,24785,24891,24908,25183,25328,25382,25518,25553,25695,25705,25718,25844,25858,25859,25880,25882,25898,25931,25932,26170,26204,26292,26294,26393,26432,26433,26486,26509,26549,26579,26638,26668,26796,26892,27403,27925,28030,28540,29161,29178,29618,29624,30103,30104,30150,30246,30405,30489,30728,30749,30751,30758,30950,31000,31007,31014,31015,31016,31078,31080]]],["+",[19,16,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,7,7,1,8,[[1000,1,1,1,2],[1002,1,1,2,3],[1004,2,2,3,5],[1006,1,1,5,6],[1007,1,1,6,7],[1009,1,1,7,8]]],[57,2,2,8,10,[[1140,1,1,8,9],[1142,1,1,9,10]]],[60,1,1,10,11,[[1156,1,1,10,11]]],[65,8,5,11,16,[[1184,7,4,11,15],[1187,1,1,15,16]]]],[24785,26170,26292,26432,26433,26509,26549,26638,30104,30150,30489,31007,31014,31015,31016,31078]]],["case",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23254]]],["ever",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23978]]],["means",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[23260,25382]]],["neither",[2,2,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]]],[24736,24908]]],["never",[2,2,[[42,1,1,0,1,[[1002,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[26292,30246]]],["no",[4,4,[[40,1,1,0,1,[[970,1,1,0,1]]],[45,1,1,1,2,[[1069,1,1,1,2]]],[65,2,2,2,4,[[1169,1,1,2,3],[1184,1,1,3,4]]]],[24779,28540,30758,31000]]],["not",[56,51,[[39,13,11,0,11,[[938,1,1,0,1],[941,2,1,1,2],[943,1,1,2,3],[944,1,1,3,4],[946,1,1,4,5],[951,1,1,5,6],[952,4,3,6,9],[954,2,2,9,11]]],[40,8,7,11,18,[[965,2,2,11,13],[966,1,1,13,14],[969,4,3,14,17],[972,1,1,17,18]]],[41,15,14,18,32,[[978,2,1,18,19],[981,1,1,19,20],[984,1,1,20,21],[985,1,1,21,22],[990,2,2,22,24],[993,3,3,24,27],[994,5,5,27,32]]],[42,7,7,32,39,[[1000,1,1,32,33],[1004,1,1,33,34],[1006,1,1,34,35],[1007,1,1,35,36],[1009,1,1,36,37],[1014,1,1,37,38],[1016,1,1,38,39]]],[43,2,1,39,40,[[1045,2,1,39,40]]],[44,1,1,40,41,[[1049,1,1,40,41]]],[47,2,2,41,43,[[1094,1,1,41,42],[1095,1,1,42,43]]],[51,2,2,43,45,[[1114,1,1,43,44],[1115,1,1,44,45]]],[57,1,1,45,46,[[1140,1,1,45,46]]],[59,1,1,46,47,[[1152,1,1,46,47]]],[65,4,4,47,51,[[1168,1,1,47,48],[1169,2,2,48,50],[1181,1,1,50,51]]]],[23440,23553,23639,23694,23730,23957,23959,23991,23992,24083,24089,24539,24579,24603,24719,24747,24748,24891,25183,25328,25518,25553,25695,25718,25844,25858,25859,25880,25882,25898,25931,25932,26204,26393,26486,26579,26668,26796,26892,27925,28030,29161,29178,29618,29624,30103,30405,30728,30749,30751,30950]]],["wise",[6,6,[[39,2,2,0,2,[[933,1,1,0,1],[938,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[42,1,1,3,4,[[1002,1,1,3,4]]],[43,1,1,4,5,[[1030,1,1,4,5]]],[65,1,1,5,6,[[1187,1,1,5,6]]]],[23252,23459,25705,26294,27403,31080]]]]},{"k":"G3365","v":[["so",[2,2,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]]],[27273,27315]]]]},{"k":"G3366","v":[["*",[57,49,[[39,11,8,0,8,[[934,1,1,0,1],[935,1,1,1,2],[938,6,3,2,5],[950,1,1,5,6],[951,1,1,6,7],[952,1,1,7,8]]],[40,7,6,8,14,[[958,1,1,8,9],[962,1,1,9,10],[964,2,1,10,11],[968,1,1,11,12],[969,2,2,12,14]]],[41,9,7,14,21,[[975,1,1,14,15],[982,1,1,15,16],[984,2,2,16,18],[986,3,1,18,19],[988,1,1,19,20],[989,1,1,20,21]]],[42,2,2,21,23,[[1000,1,1,21,22],[1010,1,1,22,23]]],[43,3,3,23,26,[[1021,1,1,23,24],[1038,1,1,24,25],[1040,1,1,25,26]]],[44,4,3,26,29,[[1051,1,1,26,27],[1054,1,1,27,28],[1059,2,1,28,29]]],[45,6,6,29,35,[[1066,2,2,29,31],[1071,4,4,31,35]]],[46,1,1,35,36,[[1081,1,1,35,36]]],[48,1,1,36,37,[[1101,1,1,36,37]]],[50,2,1,37,38,[[1108,2,1,37,38]]],[52,1,1,38,39,[[1118,1,1,38,39]]],[53,3,3,39,42,[[1119,1,1,39,40],[1123,1,1,40,41],[1124,1,1,41,42]]],[54,1,1,42,43,[[1125,1,1,42,43]]],[57,1,1,43,44,[[1144,1,1,43,44]]],[59,3,3,44,47,[[1153,1,1,44,45],[1155,2,2,45,47]]],[61,2,2,47,49,[[1160,1,1,47,48],[1161,1,1,48,49]]]],[23307,23322,23426,23427,23431,23901,23928,23977,24262,24418,24526,24697,24728,24732,25039,25367,25481,25506,25565,25646,25674,26171,26695,27040,27685,27742,28081,28166,28301,28462,28465,28574,28575,28576,28577,28861,29307,29515,29688,29700,29785,29805,29817,30217,30438,30467,30468,30565,30597]]],["+",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29307]]],["Neither",[9,9,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[44,1,1,2,3,[[1051,1,1,2,3]]],[45,4,4,3,7,[[1071,4,4,3,7]]],[53,1,1,7,8,[[1119,1,1,7,8]]],[59,1,1,8,9,[[1155,1,1,8,9]]]],[23928,24526,28081,28574,28575,28576,28577,29700,30468]]],["as",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24262]]],["neither",[23,22,[[39,4,3,0,3,[[935,1,1,0,1],[938,2,1,1,2],[952,1,1,2,3]]],[40,3,3,3,6,[[968,1,1,3,4],[969,2,2,4,6]]],[41,5,5,6,11,[[975,1,1,6,7],[984,2,2,7,9],[986,1,1,9,10],[988,1,1,10,11]]],[42,2,2,11,13,[[1000,1,1,11,12],[1010,1,1,12,13]]],[43,2,2,13,15,[[1038,1,1,13,14],[1040,1,1,14,15]]],[44,1,1,15,16,[[1054,1,1,15,16]]],[45,1,1,16,17,[[1066,1,1,16,17]]],[52,1,1,17,18,[[1118,1,1,17,18]]],[53,1,1,18,19,[[1123,1,1,18,19]]],[59,1,1,19,20,[[1153,1,1,19,20]]],[61,2,2,20,22,[[1160,1,1,20,21],[1161,1,1,21,22]]]],[23322,23427,23977,24697,24728,24732,25039,25481,25506,25565,25646,26171,26695,27685,27742,28166,28462,29688,29785,30438,30565,30597]]],["nor",[18,15,[[39,5,4,0,4,[[938,4,3,0,3],[950,1,1,3,4]]],[40,2,2,4,6,[[962,1,1,4,5],[964,1,1,5,6]]],[41,4,3,6,9,[[982,1,1,6,7],[986,2,1,7,8],[989,1,1,8,9]]],[43,1,1,9,10,[[1021,1,1,9,10]]],[44,2,1,10,11,[[1059,2,1,10,11]]],[46,1,1,11,12,[[1081,1,1,11,12]]],[53,1,1,12,13,[[1124,1,1,12,13]]],[54,1,1,13,14,[[1125,1,1,13,14]]],[57,1,1,14,15,[[1144,1,1,14,15]]]],[23426,23427,23431,23901,24418,24526,25367,25565,25674,27040,28301,28861,29805,29817,30217]]],["not",[4,3,[[45,1,1,0,1,[[1066,1,1,0,1]]],[50,2,1,1,2,[[1108,2,1,1,2]]],[59,1,1,2,3,[[1155,1,1,2,3]]]],[28465,29515,30467]]],["yet",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23307]]]]},{"k":"G3367","v":[["*",[91,88,[[39,5,5,0,5,[[936,1,1,0,1],[937,1,1,1,2],[944,1,1,2,3],[945,1,1,3,4],[955,1,1,4,5]]],[40,9,8,5,13,[[957,2,1,5,6],[961,2,2,6,8],[962,1,1,8,9],[963,1,1,9,10],[964,1,1,10,11],[965,1,1,11,12],[967,1,1,12,13]]],[41,9,9,13,22,[[975,2,2,13,15],[976,1,1,15,16],[977,1,1,16,17],[978,1,1,17,18],[980,1,1,18,19],[981,2,2,19,21],[982,1,1,21,22]]],[42,1,1,22,23,[[1004,1,1,22,23]]],[43,23,23,23,46,[[1021,2,2,23,25],[1025,1,1,25,26],[1026,1,1,26,27],[1027,2,2,27,29],[1028,2,2,29,31],[1030,1,1,31,32],[1032,1,1,32,33],[1033,1,1,33,34],[1036,2,2,34,36],[1038,1,1,36,37],[1040,3,3,37,40],[1041,1,1,40,41],[1042,2,2,41,43],[1044,1,1,43,44],[1045,2,2,44,46]]],[44,3,2,46,48,[[1057,1,1,46,47],[1058,2,1,47,48]]],[45,6,6,48,54,[[1062,1,1,48,49],[1064,2,2,49,51],[1071,3,3,51,54]]],[46,6,5,54,59,[[1083,3,2,54,56],[1084,1,1,56,57],[1088,1,1,57,58],[1090,1,1,58,59]]],[47,2,2,59,61,[[1096,2,2,59,61]]],[48,1,1,61,62,[[1101,1,1,61,62]]],[49,3,3,62,65,[[1103,1,1,62,63],[1104,1,1,63,64],[1106,1,1,64,65]]],[50,1,1,65,66,[[1108,1,1,65,66]]],[51,2,2,66,68,[[1113,1,1,66,67],[1114,1,1,67,68]]],[52,2,2,68,70,[[1117,1,1,68,69],[1118,1,1,69,70]]],[53,5,5,70,75,[[1122,1,1,70,71],[1123,3,3,71,74],[1124,1,1,74,75]]],[55,4,4,75,79,[[1130,2,2,75,77],[1131,2,2,77,79]]],[57,1,1,79,80,[[1142,1,1,79,80]]],[58,3,3,80,83,[[1146,3,3,80,83]]],[59,1,1,83,84,[[1153,1,1,83,84]]],[61,1,1,84,85,[[1161,1,1,84,85]]],[63,1,1,85,86,[[1165,1,1,85,86]]],[65,2,2,86,88,[[1168,1,1,86,87],[1169,1,1,87,88]]]],[23349,23409,23692,23709,24148,24259,24390,24407,24415,24499,24530,24547,24654,25038,25039,25098,25121,25181,25301,25304,25322,25367,26391,27039,27043,27200,27223,27279,27287,27319,27326,27390,27470,27511,27621,27625,27689,27748,27756,27763,27792,27813,27821,27888,27905,27917,28262,28274,28370,28428,28431,28591,28592,28594,28901,28908,28925,28994,29050,29191,29205,29310,29389,29394,29448,29512,29593,29615,29664,29689,29759,29777,29784,29785,29792,29916,29923,29925,29936,30135,30270,30272,30279,30430,30586,30665,30727,30757]]],["+",[7,7,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]],[45,2,2,3,5,[[1071,2,2,3,5]]],[46,1,1,5,6,[[1088,1,1,5,6]]],[57,1,1,6,7,[[1142,1,1,6,7]]]],[24148,25181,27905,28592,28594,28994,30135]]],["all",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29689]]],["any",[4,4,[[43,2,2,0,2,[[1027,1,1,0,1],[1042,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]],[59,1,1,3,4,[[1153,1,1,3,4]]]],[27287,27813,29664,30430]]],["man",[33,33,[[39,4,4,0,4,[[936,1,1,0,1],[937,1,1,1,2],[944,1,1,2,3],[945,1,1,3,4]]],[40,6,6,4,10,[[957,1,1,4,5],[961,1,1,5,6],[963,1,1,6,7],[964,1,1,7,8],[965,1,1,8,9],[967,1,1,9,10]]],[41,5,5,10,15,[[975,1,1,10,11],[977,1,1,11,12],[980,1,1,12,13],[981,1,1,13,14],[982,1,1,14,15]]],[43,2,2,15,17,[[1026,1,1,15,16],[1040,1,1,16,17]]],[44,2,2,17,19,[[1057,1,1,17,18],[1058,1,1,18,19]]],[45,3,3,19,22,[[1064,2,2,19,21],[1071,1,1,21,22]]],[47,1,1,22,23,[[1096,1,1,22,23]]],[48,1,1,23,24,[[1101,1,1,23,24]]],[50,1,1,24,25,[[1108,1,1,24,25]]],[51,1,1,25,26,[[1113,1,1,25,26]]],[53,2,2,26,28,[[1122,1,1,26,27],[1123,1,1,27,28]]],[55,2,2,28,30,[[1130,1,1,28,29],[1131,1,1,29,30]]],[58,1,1,30,31,[[1146,1,1,30,31]]],[61,1,1,31,32,[[1161,1,1,31,32]]],[65,1,1,32,33,[[1169,1,1,32,33]]]],[23349,23409,23692,23709,24259,24407,24499,24530,24547,24654,25039,25121,25301,25322,25367,27223,27756,28262,28274,28428,28431,28591,29205,29310,29512,29593,29759,29785,29923,29925,30279,30586,30757]]],["no",[12,12,[[41,1,1,0,1,[[975,1,1,0,1]]],[43,7,7,1,8,[[1021,1,1,1,2],[1030,1,1,2,3],[1032,1,1,3,4],[1033,1,1,4,5],[1036,1,1,5,6],[1038,1,1,6,7],[1045,1,1,7,8]]],[45,1,1,8,9,[[1062,1,1,8,9]]],[46,2,2,9,11,[[1083,1,1,9,10],[1090,1,1,10,11]]],[55,1,1,11,12,[[1130,1,1,11,12]]]],[25038,27039,27390,27470,27511,27625,27689,27917,28370,28901,29050,29916]]],["none",[6,6,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,3,3,1,4,[[1025,1,1,1,2],[1028,1,1,2,3],[1041,1,1,3,4]]],[53,1,1,4,5,[[1123,1,1,4,5]]],[65,1,1,5,6,[[1168,1,1,5,6]]]],[26391,27200,27326,27792,29777,30727]]],["not",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25098]]],["nothing",[25,25,[[40,3,3,0,3,[[957,1,1,0,1],[961,1,1,1,2],[962,1,1,2,3]]],[41,1,1,3,4,[[981,1,1,3,4]]],[43,8,8,4,12,[[1021,1,1,4,5],[1027,1,1,5,6],[1028,1,1,6,7],[1036,1,1,7,8],[1040,2,2,8,10],[1042,1,1,10,11],[1044,1,1,11,12]]],[46,2,2,12,14,[[1083,1,1,12,13],[1084,1,1,13,14]]],[47,1,1,14,15,[[1096,1,1,14,15]]],[49,3,3,15,18,[[1103,1,1,15,16],[1104,1,1,16,17],[1106,1,1,17,18]]],[51,1,1,18,19,[[1114,1,1,18,19]]],[53,2,2,19,21,[[1123,1,1,19,20],[1124,1,1,20,21]]],[55,1,1,21,22,[[1131,1,1,21,22]]],[58,2,2,22,24,[[1146,2,2,22,24]]],[63,1,1,24,25,[[1165,1,1,24,25]]]],[24259,24390,24415,25304,27043,27279,27319,27621,27748,27763,27821,27888,28908,28925,29191,29389,29394,29448,29615,29784,29792,29936,30270,30272,30665]]],["thing",[2,2,[[44,1,1,0,1,[[1058,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]]],[28274,28901]]]]},{"k":"G3368","v":[["never",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29860]]]]},{"k":"G3369","v":[["+",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30179]]]]},{"k":"G3370","v":[["Medes",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26958]]]]},{"k":"G3371","v":[["*",[21,21,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,4,4,1,5,[[957,1,1,1,2],[958,1,1,2,3],[965,1,1,3,4],[967,1,1,4,5]]],[42,2,2,5,7,[[1001,1,1,5,6],[1004,1,1,6,7]]],[43,3,3,7,10,[[1021,1,1,7,8],[1030,1,1,8,9],[1042,1,1,9,10]]],[44,3,3,10,13,[[1051,1,1,10,11],[1059,1,1,11,12],[1060,1,1,12,13]]],[46,1,1,13,14,[[1082,1,1,13,14]]],[48,3,3,14,17,[[1100,3,3,14,17]]],[51,2,2,17,19,[[1113,2,2,17,19]]],[53,1,1,19,20,[[1123,1,1,19,20]]],[59,1,1,20,21,[[1154,1,1,20,21]]]],[23845,24260,24262,24563,24654,26224,26392,27039,27396,27820,28074,28293,28326,28892,29286,29289,29300,29591,29595,29786,30448]]],["+",[3,3,[[40,1,1,0,1,[[958,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]]],[24262,29289,29786]]],["henceforth",[3,3,[[43,1,1,0,1,[[1021,1,1,0,1]]],[44,1,1,1,2,[[1051,1,1,1,2]]],[46,1,1,2,3,[[1082,1,1,2,3]]]],[27039,28074,28892]]],["henceforward",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23845]]],["hereafter",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24654]]],["longer",[4,4,[[43,1,1,0,1,[[1042,1,1,0,1]]],[51,2,2,1,3,[[1113,2,2,1,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]]],[27820,29591,29595,30448]]],["more",[9,9,[[40,2,2,0,2,[[957,1,1,0,1],[965,1,1,1,2]]],[42,2,2,2,4,[[1001,1,1,2,3],[1004,1,1,3,4]]],[43,1,1,4,5,[[1030,1,1,4,5]]],[44,2,2,5,7,[[1059,1,1,5,6],[1060,1,1,6,7]]],[48,2,2,7,9,[[1100,2,2,7,9]]]],[24260,24563,26224,26392,27396,28293,28326,29286,29300]]]]},{"k":"G3372","v":[["*",[3,2,[[48,1,1,0,1,[[1099,1,1,0,1]]],[65,2,1,1,2,[[1187,2,1,1,2]]]],[29269,31069]]],["+",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31069]]],["length",[2,2,[[48,1,1,0,1,[[1099,1,1,0,1]]],[65,1,1,1,2,[[1187,1,1,1,2]]]],[29269,31069]]]]},{"k":"G3373","v":[["up",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24350]]]]},{"k":"G3374","v":[["sheepskins",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30209]]]]},{"k":"G3375","v":[["+",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30058]]]]},{"k":"G3376","v":[["*",[18,18,[[41,5,5,0,5,[[973,4,4,0,4],[976,1,1,4,5]]],[43,5,5,5,10,[[1024,1,1,5,6],[1035,1,1,6,7],[1036,1,1,7,8],[1037,1,1,8,9],[1045,1,1,9,10]]],[47,1,1,10,11,[[1094,1,1,10,11]]],[58,1,1,11,12,[[1150,1,1,11,12]]],[65,6,6,12,18,[[1175,3,3,12,15],[1177,1,1,15,16],[1179,1,1,16,17],[1188,1,1,17,18]]]],[24917,24919,24929,24949,25088,27136,27568,27593,27629,27910,29141,30371,30845,30850,30855,30874,30913,31082]]],["month",[4,4,[[41,2,2,0,2,[[973,2,2,0,2]]],[65,2,2,2,4,[[1175,1,1,2,3],[1188,1,1,3,4]]]],[24919,24929,30855,31082]]],["months",[14,14,[[41,3,3,0,3,[[973,2,2,0,2],[976,1,1,2,3]]],[43,5,5,3,8,[[1024,1,1,3,4],[1035,1,1,4,5],[1036,1,1,5,6],[1037,1,1,6,7],[1045,1,1,7,8]]],[47,1,1,8,9,[[1094,1,1,8,9]]],[58,1,1,9,10,[[1150,1,1,9,10]]],[65,4,4,10,14,[[1175,2,2,10,12],[1177,1,1,12,13],[1179,1,1,13,14]]]],[24917,24949,25088,27136,27568,27593,27629,27910,29141,30371,30845,30850,30874,30913]]]]},{"k":"G3377","v":[["*",[4,4,[[41,1,1,0,1,[[992,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]],[43,1,1,2,3,[[1040,1,1,2,3]]],[45,1,1,3,4,[[1071,1,1,3,4]]]],[25816,26580,27764,28595]]],["shew",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26580]]],["shewed",[2,2,[[41,1,1,0,1,[[992,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]]],[25816,28595]]],["told",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27764]]]]},{"k":"G3378","v":[["not",[4,4,[[44,2,2,0,2,[[1055,2,2,0,2]]],[45,2,2,2,4,[[1070,2,2,2,4]]]],[28206,28207,28544,28545]]]]},{"k":"G3379","v":[["*",[25,25,[[39,8,8,0,8,[[932,1,1,0,1],[933,1,1,1,2],[935,1,1,2,3],[941,2,2,3,5],[943,1,1,5,6],[953,1,1,6,7],[955,1,1,7,8]]],[40,2,2,8,10,[[960,1,1,8,9],[970,1,1,9,10]]],[41,7,7,10,17,[[975,1,1,10,11],[976,1,1,11,12],[984,1,1,12,13],[986,3,3,13,16],[993,1,1,16,17]]],[42,1,1,17,18,[[1003,1,1,17,18]]],[43,2,2,18,20,[[1022,1,1,18,19],[1045,1,1,19,20]]],[54,1,1,20,21,[[1126,1,1,20,21]]],[57,4,4,21,25,[[1134,1,1,21,22],[1135,1,1,22,23],[1136,1,1,23,24],[1141,1,1,24,25]]]],[23215,23259,23322,23554,23568,23665,24017,24193,24335,24756,25040,25074,25517,25561,25565,25582,25860,26354,27098,27926,29852,29978,30007,30015,30122]]],["+",[3,3,[[41,1,1,0,1,[[975,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[25040,29852,30122]]],["Do",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26354]]],["haply",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[25582,27098]]],["lest",[12,12,[[39,5,5,0,5,[[935,1,1,0,1],[941,1,1,1,2],[943,1,1,2,3],[953,1,1,3,4],[955,1,1,4,5]]],[40,1,1,5,6,[[970,1,1,5,6]]],[41,3,3,6,9,[[984,1,1,6,7],[986,2,2,7,9]]],[43,1,1,9,10,[[1045,1,1,9,10]]],[57,2,2,10,12,[[1135,1,1,10,11],[1136,1,1,11,12]]]],[23322,23568,23665,24017,24193,24756,25517,25561,25565,27926,30007,30015]]],["time",[7,7,[[39,3,3,0,3,[[932,1,1,0,1],[933,1,1,1,2],[941,1,1,2,3]]],[40,1,1,3,4,[[960,1,1,3,4]]],[41,2,2,4,6,[[976,1,1,4,5],[993,1,1,5,6]]],[57,1,1,6,7,[[1134,1,1,6,7]]]],[23215,23259,23554,24335,25074,25860,29978]]]]},{"k":"G3380","v":[["yet",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[28166,30113]]]]},{"k":"G3381","v":[["*",[12,11,[[43,1,1,0,1,[[1044,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]],[45,2,2,2,4,[[1069,1,1,2,3],[1070,1,1,3,4]]],[46,5,4,4,8,[[1079,1,1,4,5],[1086,1,1,5,6],[1088,1,1,6,7],[1089,2,1,7,8]]],[47,2,2,8,10,[[1092,1,1,8,9],[1094,1,1,9,10]]],[51,1,1,10,11,[[1113,1,1,10,11]]]],[27884,28230,28536,28567,28831,28960,28992,29042,29083,29142,29595]]],["haply",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28960]]],["lest",[6,5,[[43,1,1,0,1,[[1044,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]],[46,3,2,2,4,[[1079,1,1,2,3],[1089,2,1,3,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]]],[27884,28230,28831,29042,29142]]],["means",[5,5,[[45,2,2,0,2,[[1069,1,1,0,1],[1070,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]],[47,1,1,3,4,[[1092,1,1,3,4]]],[51,1,1,4,5,[[1113,1,1,4,5]]]],[28536,28567,28992,29083,29595]]]]},{"k":"G3382","v":[["thigh",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31033]]]]},{"k":"G3383","v":[["*",[37,18,[[39,6,4,0,4,[[933,4,3,0,3],[939,2,1,3,4]]],[40,1,1,4,5,[[959,1,1,4,5]]],[41,7,2,5,7,[[979,2,1,5,6],[981,5,1,6,7]]],[43,7,4,7,11,[[1040,5,3,7,10],[1044,2,1,10,11]]],[48,1,1,11,12,[[1100,1,1,11,12]]],[52,4,1,12,13,[[1117,4,1,12,13]]],[53,2,1,13,14,[[1119,2,1,13,14]]],[57,2,1,14,15,[[1139,2,1,14,15]]],[58,3,1,15,16,[[1150,3,1,15,16]]],[65,4,2,16,18,[[1173,4,2,16,18]]]],[23268,23269,23270,23477,24308,25228,25304,27742,27746,27755,27875,29299,29663,29703,30067,30366,30811,30813]]],["Neither",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[23270,29299]]],["Nor",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23269]]],["as",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24308]]],["neither",[18,13,[[39,3,3,0,3,[[933,2,2,0,2],[939,1,1,2,3]]],[41,5,2,3,5,[[979,1,1,3,4],[981,4,1,4,5]]],[43,3,3,5,8,[[1040,2,2,5,7],[1044,1,1,7,8]]],[52,1,1,8,9,[[1117,1,1,8,9]]],[53,1,1,9,10,[[1119,1,1,9,10]]],[57,1,1,10,11,[[1139,1,1,10,11]]],[58,3,1,11,12,[[1150,3,1,11,12]]],[65,1,1,12,13,[[1173,1,1,12,13]]]],[23268,23269,23477,25228,25304,27746,27755,27875,29663,29703,30067,30366,30813]]],["nor",[14,12,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,2,2,1,3,[[979,1,1,1,2],[981,1,1,2,3]]],[43,4,4,3,7,[[1040,3,3,3,6],[1044,1,1,6,7]]],[52,2,1,7,8,[[1117,2,1,7,8]]],[53,1,1,8,9,[[1119,1,1,8,9]]],[57,1,1,9,10,[[1139,1,1,9,10]]],[65,3,2,10,12,[[1173,3,2,10,12]]]],[23477,25228,25304,27742,27746,27755,27875,29663,29703,30067,30811,30813]]],["or",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29663]]]]},{"k":"G3384","v":[["*",[85,79,[[39,27,25,0,25,[[929,1,1,0,1],[930,5,5,1,6],[938,2,2,6,8],[940,5,5,8,13],[941,1,1,13,14],[942,2,2,14,16],[943,4,3,16,19],[947,4,4,19,23],[948,1,1,23,24],[955,2,1,24,25]]],[40,17,16,25,41,[[959,5,5,25,30],[961,1,1,30,31],[962,2,2,31,33],[963,4,3,33,36],[966,4,4,36,40],[971,1,1,40,41]]],[41,18,17,41,58,[[973,3,3,41,44],[974,5,5,44,49],[979,2,2,49,51],[980,4,4,51,55],[984,2,1,55,56],[986,1,1,56,57],[990,1,1,57,58]]],[42,11,9,58,67,[[998,4,4,58,62],[999,1,1,62,63],[1002,1,1,63,64],[1015,5,3,64,67]]],[43,4,4,67,71,[[1018,1,1,67,68],[1020,1,1,68,69],[1029,1,1,69,70],[1031,1,1,70,71]]],[44,1,1,71,72,[[1061,1,1,71,72]]],[47,2,2,72,74,[[1091,1,1,72,73],[1094,1,1,73,74]]],[48,2,2,74,76,[[1101,1,1,74,75],[1102,1,1,75,76]]],[53,1,1,76,77,[[1123,1,1,76,77]]],[54,1,1,77,78,[[1125,1,1,77,78]]],[65,1,1,78,79,[[1183,1,1,78,79]]]],[23162,23180,23182,23183,23189,23190,23452,23454,23535,23536,23537,23538,23539,23594,23605,23608,23637,23638,23639,23767,23774,23781,23791,23812,24185,24319,24320,24321,24322,24323,24404,24431,24435,24473,24474,24475,24595,24607,24617,24618,24866,24908,24936,24953,25006,25007,25016,25021,25024,25207,25210,25264,25265,25266,25296,25512,25579,25708,26096,26098,26100,26107,26124,26299,26850,26851,26852,26937,26998,27349,27422,28349,29072,29157,29335,29339,29765,29814,30980]]],["MOTHER",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30980]]],["and",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23781]]],["mother",[74,69,[[39,25,23,0,23,[[929,1,1,0,1],[930,5,5,1,6],[938,2,2,6,8],[940,5,5,8,13],[941,1,1,13,14],[942,2,2,14,16],[943,4,3,16,19],[947,2,2,19,21],[948,1,1,21,22],[955,2,1,22,23]]],[40,16,15,23,38,[[959,5,5,23,28],[961,1,1,28,29],[962,2,2,29,31],[963,4,3,31,34],[966,3,3,34,37],[971,1,1,37,38]]],[41,17,16,38,54,[[973,2,2,38,40],[974,5,5,40,45],[979,2,2,45,47],[980,4,4,47,51],[984,2,1,51,52],[986,1,1,52,53],[990,1,1,53,54]]],[42,9,8,54,62,[[998,4,4,54,58],[1002,1,1,58,59],[1015,4,3,59,62]]],[43,2,2,62,64,[[1018,1,1,62,63],[1029,1,1,63,64]]],[44,1,1,64,65,[[1061,1,1,64,65]]],[47,1,1,65,66,[[1094,1,1,65,66]]],[48,2,2,66,68,[[1101,1,1,66,67],[1102,1,1,67,68]]],[54,1,1,68,69,[[1125,1,1,68,69]]]],[23162,23180,23182,23183,23189,23190,23452,23454,23535,23536,23537,23538,23539,23594,23605,23608,23637,23638,23639,23767,23791,23812,24185,24319,24320,24321,24322,24323,24404,24431,24435,24473,24474,24475,24595,24607,24617,24866,24936,24953,25006,25007,25016,25021,25024,25207,25210,25264,25265,25266,25296,25512,25579,25708,26096,26098,26100,26107,26299,26850,26851,26852,26937,27349,28349,29157,29335,29339,29814]]],["mother's",[7,7,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[42,2,2,2,4,[[999,1,1,2,3],[1015,1,1,3,4]]],[43,2,2,4,6,[[1020,1,1,4,5],[1031,1,1,5,6]]],[47,1,1,6,7,[[1091,1,1,6,7]]]],[23774,24908,26124,26850,26998,27422,29072]]],["mothers",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[24618,29765]]]]},{"k":"G3385","v":[["*",[15,14,[[39,4,4,0,4,[[935,1,1,0,1],[940,1,1,1,2],[954,2,2,2,4]]],[40,3,2,4,6,[[960,1,1,4,5],[970,2,1,5,6]]],[41,1,1,6,7,[[978,1,1,6,7]]],[42,4,4,7,11,[[1000,1,1,7,8],[1003,1,1,8,9],[1004,1,1,9,10],[1014,1,1,10,11]]],[43,1,1,11,12,[[1027,1,1,11,12]]],[46,1,1,12,13,[[1078,1,1,12,13]]],[58,1,1,13,14,[[1148,1,1,13,14]]]],[23332,23512,24076,24079,24344,24773,25185,26185,26359,26403,26820,27306,28817,30330]]],["+",[6,6,[[39,2,2,0,2,[[954,2,2,0,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]],[43,1,1,4,5,[[1027,1,1,4,5]]],[46,1,1,5,6,[[1078,1,1,5,6]]]],[24076,24079,25185,26820,27306,28817]]],["Doth",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30330]]],["Is",[2,1,[[40,2,1,0,1,[[970,2,1,0,1]]]],[24773]]],["Will",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26403]]],["a",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24344]]],["he",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26359]]],["men",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23332]]],["not",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]]],[23512,26185]]]]},{"k":"G3386","v":[["more",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28470]]]]},{"k":"G3387","v":[["*",[4,4,[[42,3,3,0,3,[[1000,1,1,0,1],[1003,1,1,1,2],[1017,1,1,2,3]]],[46,1,1,3,4,[[1089,1,1,3,4]]]],[26189,26376,26903,29040]]],["Did",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29040]]],["any",[2,2,[[42,2,2,0,2,[[1003,1,1,0,1],[1017,1,1,1,2]]]],[26376,26903]]],["man",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26189]]]]},{"k":"G3388","v":[["womb",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[44,1,1,1,2,[[1049,1,1,1,2]]]],[24996,28041]]]]},{"k":"G3389","v":[["mothers",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29705]]]]},{"k":"G3390","v":[]},{"k":"G3391","v":[["*",[79,70,[[39,15,12,0,12,[[933,3,3,0,3],[945,3,1,3,4],[947,2,2,4,6],[948,1,1,6,7],[949,1,1,7,8],[952,2,1,8,9],[954,2,2,9,11],[956,1,1,11,12]]],[40,9,6,12,18,[[965,3,1,12,13],[966,2,1,13,14],[968,1,1,14,15],[970,2,2,15,17],[972,1,1,17,18]]],[41,16,14,18,32,[[977,2,2,18,20],[980,1,1,20,21],[981,3,1,21,22],[985,1,1,22,23],[986,1,1,23,24],[987,1,1,24,25],[988,1,1,25,26],[989,3,3,26,29],[992,1,1,29,30],[994,1,1,30,31],[996,1,1,31,32]]],[42,3,3,32,35,[[1006,1,1,32,33],[1016,2,2,33,35]]],[43,7,7,35,42,[[1021,1,1,35,36],[1029,1,1,36,37],[1036,1,1,37,38],[1037,1,1,38,39],[1038,1,1,39,40],[1041,1,1,40,41],[1045,1,1,41,42]]],[45,3,3,42,45,[[1067,1,1,42,43],[1071,1,1,43,44],[1077,1,1,44,45]]],[46,1,1,45,46,[[1088,1,1,45,46]]],[47,1,1,46,47,[[1094,1,1,46,47]]],[48,3,3,47,50,[[1100,2,2,47,49],[1101,1,1,49,50]]],[49,1,1,50,51,[[1103,1,1,50,51]]],[53,2,2,51,53,[[1121,2,2,51,53]]],[55,2,2,53,55,[[1129,1,1,53,54],[1131,1,1,54,55]]],[57,3,3,55,58,[[1142,2,2,55,57],[1144,1,1,57,58]]],[60,2,1,58,59,[[1158,2,1,58,59]]],[65,11,11,59,70,[[1172,1,1,59,60],[1175,2,2,60,62],[1179,1,1,62,63],[1183,3,3,63,66],[1184,4,4,66,70]]]],[23252,23253,23270,23704,23767,23768,23804,23845,23998,24094,24123,24196,24543,24596,24715,24791,24820,24875,25119,25124,25267,25334,25528,25571,25596,25637,25673,25685,25686,25780,25923,25992,26497,26868,26886,27054,27347,27619,27633,27671,27790,27912,28483,28575,28778,29013,29155,29276,29277,29335,29388,29733,29743,29898,29933,30145,30147,30228,30530,30794,30852,30853,30911,30987,30988,30992,31001,31003,31010,31012]]],["+",[6,6,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[43,1,1,2,3,[[1036,1,1,2,3]]],[45,1,1,3,4,[[1077,1,1,3,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]],[65,1,1,5,6,[[1183,1,1,5,6]]]],[23767,25923,27619,28778,29155,30992]]],["One",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30852]]],["a",[3,3,[[39,2,2,0,2,[[949,1,1,0,1],[954,1,1,1,2]]],[65,1,1,2,3,[[1175,1,1,2,3]]]],[23845,24123,30853]]],["certain",[4,4,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,3,3,1,4,[[977,2,2,1,3],[980,1,1,3,4]]]],[24715,25119,25124,25267]]],["first",[7,7,[[39,1,1,0,1,[[956,1,1,0,1]]],[40,1,1,1,2,[[972,1,1,1,2]]],[41,1,1,2,3,[[996,1,1,2,3]]],[42,2,2,3,5,[[1016,2,2,3,5]]],[43,1,1,5,6,[[1037,1,1,5,6]]],[55,1,1,6,7,[[1131,1,1,6,7]]]],[24196,24875,25992,26868,26886,27633,29933]]],["one",[57,49,[[39,10,8,0,8,[[933,3,3,0,3],[945,3,1,3,4],[947,1,1,4,5],[948,1,1,5,6],[952,1,1,6,7],[954,1,1,7,8]]],[40,7,4,8,12,[[965,3,1,8,9],[966,2,1,9,10],[970,2,2,10,12]]],[41,11,9,12,21,[[981,3,1,12,13],[985,1,1,13,14],[986,1,1,14,15],[987,1,1,15,16],[988,1,1,16,17],[989,3,3,17,20],[992,1,1,20,21]]],[42,1,1,21,22,[[1006,1,1,21,22]]],[43,5,5,22,27,[[1021,1,1,22,23],[1029,1,1,23,24],[1038,1,1,24,25],[1041,1,1,25,26],[1045,1,1,26,27]]],[45,2,2,27,29,[[1067,1,1,27,28],[1071,1,1,28,29]]],[46,1,1,29,30,[[1088,1,1,29,30]]],[48,3,3,30,33,[[1100,2,2,30,32],[1101,1,1,32,33]]],[49,1,1,33,34,[[1103,1,1,33,34]]],[53,2,2,34,36,[[1121,2,2,34,36]]],[55,1,1,36,37,[[1129,1,1,36,37]]],[57,3,3,37,40,[[1142,2,2,37,39],[1144,1,1,39,40]]],[60,2,1,40,41,[[1158,2,1,40,41]]],[65,8,8,41,49,[[1172,1,1,41,42],[1179,1,1,42,43],[1183,2,2,43,45],[1184,4,4,45,49]]]],[23252,23253,23270,23704,23768,23804,23998,24094,24543,24596,24791,24820,25334,25528,25571,25596,25637,25673,25685,25686,25780,26497,27054,27347,27671,27790,27912,28483,28575,29013,29276,29277,29335,29388,29733,29743,29898,30145,30147,30228,30530,30794,30911,30987,30988,31001,31003,31010,31012]]],["other",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23998]]]]},{"k":"G3392","v":[["*",[5,4,[[42,1,1,0,1,[[1014,1,1,0,1]]],[55,2,1,1,2,[[1129,2,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[26813,29907,30227,30680]]],["defile",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30680]]],["defiled",[4,3,[[42,1,1,0,1,[[1014,1,1,0,1]]],[55,2,1,1,2,[[1129,2,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[26813,29907,30227]]]]},{"k":"G3393","v":[["pollutions",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30520]]]]},{"k":"G3394","v":[["uncleanness",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30510]]]]},{"k":"G3395","v":[["mixture",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26864]]]]},{"k":"G3396","v":[["mingled",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[65,2,2,2,4,[[1174,1,1,2,3],[1181,1,1,3,4]]]],[24163,25519,30834,30948]]]]},{"k":"G3397","v":[["*",[16,13,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,2,2,2,4,[[970,2,2,2,4]]],[42,9,6,4,10,[[1009,1,1,4,5],[1010,1,1,5,6],[1012,7,4,6,10]]],[46,2,2,10,12,[[1088,2,2,10,12]]],[57,1,1,12,13,[[1142,1,1,12,13]]]],[24093,24127,24789,24824,26663,26687,26742,26743,26744,26745,28990,29005,30170]]],["+",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[29005,30170]]],["further",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24093]]],["little",[3,3,[[40,2,2,0,2,[[970,2,2,0,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]]],[24789,24824,28990]]],["while",[10,7,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,9,6,1,7,[[1009,1,1,1,2],[1010,1,1,2,3],[1012,7,4,3,7]]]],[24127,26663,26687,26742,26743,26744,26745]]]]},{"k":"G3398","v":[["*",[30,30,[[39,6,6,0,6,[[938,1,1,0,1],[939,1,1,1,2],[941,1,1,2,3],[946,3,3,3,6]]],[40,3,3,6,9,[[960,1,1,6,7],[965,1,1,7,8],[971,1,1,8,9]]],[41,5,5,9,14,[[979,1,1,9,10],[981,1,1,10,11],[984,1,1,11,12],[989,1,1,12,13],[991,1,1,13,14]]],[42,2,2,14,16,[[1003,1,1,14,15],[1008,1,1,15,16]]],[43,2,2,16,18,[[1025,1,1,16,17],[1043,1,1,17,18]]],[45,1,1,18,19,[[1066,1,1,18,19]]],[47,1,1,19,20,[[1095,1,1,19,20]]],[57,1,1,20,21,[[1140,1,1,20,21]]],[58,1,1,21,22,[[1148,1,1,21,22]]],[65,8,8,22,30,[[1169,1,1,22,23],[1172,1,1,23,24],[1177,1,1,24,25],[1179,1,1,25,26],[1185,2,2,26,28],[1186,2,2,28,30]]]],[23459,23470,23571,23733,23737,23741,24354,24580,24866,25223,25349,25491,25653,25734,26361,26615,27186,27845,28460,29171,30103,30324,30754,30804,30890,30924,31022,31035,31041,31050]]],["+",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30103]]],["least",[5,5,[[39,2,2,0,2,[[939,1,1,0,1],[941,1,1,1,2]]],[41,2,2,2,4,[[979,1,1,2,3],[981,1,1,3,4]]],[43,1,1,4,5,[[1025,1,1,4,5]]]],[23470,23571,25223,25349,27186]]],["less",[2,2,[[40,2,2,0,2,[[960,1,1,0,1],[971,1,1,1,2]]]],[24354,24866]]],["little",[10,10,[[41,2,2,0,2,[[984,1,1,0,1],[991,1,1,1,2]]],[42,2,2,2,4,[[1003,1,1,2,3],[1008,1,1,3,4]]],[45,1,1,4,5,[[1066,1,1,4,5]]],[47,1,1,5,6,[[1095,1,1,5,6]]],[58,1,1,6,7,[[1148,1,1,6,7]]],[65,3,3,7,10,[[1169,1,1,7,8],[1172,1,1,8,9],[1186,1,1,9,10]]]],[25491,25734,26361,26615,28460,29171,30324,30754,30804,31041]]],["ones",[6,6,[[39,4,4,0,4,[[938,1,1,0,1],[946,3,3,1,4]]],[40,1,1,4,5,[[965,1,1,4,5]]],[41,1,1,5,6,[[989,1,1,5,6]]]],[23459,23733,23737,23741,24580,25653]]],["small",[6,6,[[43,1,1,0,1,[[1043,1,1,0,1]]],[65,5,5,1,6,[[1177,1,1,1,2],[1179,1,1,2,3],[1185,2,2,3,5],[1186,1,1,5,6]]]],[27845,30890,30924,31022,31035,31050]]]]},{"k":"G3399","v":[["*",[3,3,[[43,2,2,0,2,[[1037,2,2,0,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[27641,27643,29890]]],["Miletum",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29890]]],["Miletus",[2,2,[[43,2,2,0,2,[[1037,2,2,0,2]]]],[27641,27643]]]]},{"k":"G3400","v":[["mile",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23275]]]]},{"k":"G3401","v":[["follow",[4,4,[[52,2,2,0,2,[[1118,2,2,0,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]],[63,1,1,3,4,[[1165,1,1,3,4]]]],[29685,29687,30248,30669]]]]},{"k":"G3402","v":[["followers",[7,7,[[45,2,2,0,2,[[1065,1,1,0,1],[1072,1,1,1,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]],[51,2,2,3,5,[[1111,1,1,3,4],[1112,1,1,4,5]]],[57,1,1,5,6,[[1138,1,1,5,6]]],[59,1,1,6,7,[[1153,1,1,6,7]]]],[28449,28601,29305,29566,29584,30056,30437]]]]},{"k":"G3403","v":[["*",[2,2,[[57,2,2,0,2,[[1134,1,1,0,1],[1145,1,1,1,2]]]],[29983,30244]]],["Remember",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30244]]],["mindful",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29983]]]]},{"k":"G3404","v":[["*",[42,38,[[39,6,6,0,6,[[933,2,2,0,2],[934,1,1,2,3],[938,1,1,3,4],[952,2,2,4,6]]],[40,1,1,6,7,[[969,1,1,6,7]]],[41,7,7,7,14,[[973,1,1,7,8],[978,2,2,8,10],[986,1,1,10,11],[988,1,1,11,12],[991,1,1,12,13],[993,1,1,13,14]]],[42,12,9,14,23,[[999,1,1,14,15],[1003,2,1,15,16],[1008,1,1,16,17],[1011,7,5,17,22],[1013,1,1,22,23]]],[44,2,2,23,25,[[1052,1,1,23,24],[1054,1,1,24,25]]],[48,1,1,25,26,[[1101,1,1,25,26]]],[55,1,1,26,27,[[1131,1,1,26,27]]],[57,1,1,27,28,[[1133,1,1,27,28]]],[61,5,5,28,33,[[1160,2,2,28,30],[1161,2,2,30,32],[1162,1,1,32,33]]],[64,1,1,33,34,[[1166,1,1,33,34]]],[65,5,4,34,38,[[1168,3,2,34,36],[1183,1,1,36,37],[1184,1,1,37,38]]]],[23277,23278,23306,23439,23966,23967,24730,24964,25168,25173,25579,25633,25745,25843,26140,26335,26605,26717,26718,26722,26723,26724,26773,28106,28168,29333,29926,29972,30559,30561,30592,30594,30623,30695,30723,30732,30991,30995]]],["hate",[16,16,[[39,4,4,0,4,[[933,2,2,0,2],[934,1,1,2,3],[952,1,1,3,4]]],[41,5,5,4,9,[[973,1,1,4,5],[978,2,2,5,7],[986,1,1,7,8],[988,1,1,8,9]]],[42,2,2,9,11,[[1003,1,1,9,10],[1011,1,1,10,11]]],[44,1,1,11,12,[[1052,1,1,11,12]]],[61,1,1,12,13,[[1161,1,1,12,13]]],[65,3,3,13,16,[[1168,2,2,13,15],[1183,1,1,15,16]]]],[23277,23278,23306,23967,24964,25168,25173,25579,25633,26335,26717,28106,30592,30723,30732,30991]]],["hated",[12,12,[[39,2,2,0,2,[[938,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,2,2,3,5,[[991,1,1,3,4],[993,1,1,4,5]]],[42,4,4,5,9,[[1011,3,3,5,8],[1013,1,1,8,9]]],[44,1,1,9,10,[[1054,1,1,9,10]]],[48,1,1,10,11,[[1101,1,1,10,11]]],[57,1,1,11,12,[[1133,1,1,11,12]]]],[23439,23966,24730,25745,25843,26717,26723,26724,26773,28168,29333,29972]]],["hateful",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30995]]],["hatest",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30723]]],["hateth",[10,9,[[42,6,5,0,5,[[999,1,1,0,1],[1003,1,1,1,2],[1008,1,1,2,3],[1011,3,2,3,5]]],[61,4,4,5,9,[[1160,2,2,5,7],[1161,1,1,7,8],[1162,1,1,8,9]]]],[26140,26335,26605,26718,26722,30559,30561,30594,30623]]],["hating",[2,2,[[55,1,1,0,1,[[1131,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[29926,30695]]]]},{"k":"G3405","v":[["reward",[3,3,[[57,3,3,0,3,[[1134,1,1,0,1],[1142,1,1,1,2],[1143,1,1,2,3]]]],[29979,30168,30198]]]]},{"k":"G3406","v":[["rewarder",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30178]]]]},{"k":"G3407","v":[["servants",[2,2,[[41,2,2,0,2,[[987,2,2,0,2]]]],[25605,25607]]]]},{"k":"G3408","v":[["*",[29,28,[[39,10,9,0,9,[[933,2,2,0,2],[934,4,4,2,6],[938,3,2,6,8],[948,1,1,8,9]]],[40,1,1,9,10,[[965,1,1,9,10]]],[41,3,3,10,13,[[978,2,2,10,12],[982,1,1,12,13]]],[42,1,1,13,14,[[1000,1,1,13,14]]],[43,1,1,14,15,[[1018,1,1,14,15]]],[44,1,1,15,16,[[1049,1,1,15,16]]],[45,4,4,16,20,[[1064,2,2,16,18],[1070,2,2,18,20]]],[53,1,1,20,21,[[1123,1,1,20,21]]],[58,1,1,21,22,[[1150,1,1,21,22]]],[60,2,2,22,24,[[1157,2,2,22,24]]],[62,1,1,24,25,[[1164,1,1,24,25]]],[64,1,1,25,26,[[1166,1,1,25,26]]],[65,2,2,26,28,[[1177,1,1,26,27],[1188,1,1,27,28]]]],[23246,23280,23283,23284,23287,23298,23458,23459,23800,24579,25169,25181,25370,26192,26941,28026,28418,28424,28557,28558,29781,30358,30513,30515,30653,30683,30890,31092]]],["hire",[3,3,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[58,1,1,2,3,[[1150,1,1,2,3]]]],[23800,25370,30358]]],["reward",[24,23,[[39,9,8,0,8,[[933,2,2,0,2],[934,4,4,2,6],[938,3,2,6,8]]],[40,1,1,8,9,[[965,1,1,8,9]]],[41,2,2,9,11,[[978,2,2,9,11]]],[43,1,1,11,12,[[1018,1,1,11,12]]],[44,1,1,12,13,[[1049,1,1,12,13]]],[45,4,4,13,17,[[1064,2,2,13,15],[1070,2,2,15,17]]],[53,1,1,17,18,[[1123,1,1,17,18]]],[60,1,1,18,19,[[1157,1,1,18,19]]],[62,1,1,19,20,[[1164,1,1,19,20]]],[64,1,1,20,21,[[1166,1,1,20,21]]],[65,2,2,21,23,[[1177,1,1,21,22],[1188,1,1,22,23]]]],[23246,23280,23283,23284,23287,23298,23458,23459,24579,25169,25181,26941,28026,28418,28424,28557,28558,29781,30513,30653,30683,30890,31092]]],["wages",[2,2,[[42,1,1,0,1,[[1000,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[26192,30515]]]]},{"k":"G3409","v":[["*",[2,2,[[39,2,2,0,2,[[948,2,2,0,2]]]],[23793,23799]]],["hire",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23793]]],["hired",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23799]]]]},{"k":"G3410","v":[["house",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27929]]]]},{"k":"G3411","v":[["*",[4,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[42,3,2,1,3,[[1006,3,2,1,3]]]],[24235,26493,26494]]],["hireling",[3,2,[[42,3,2,0,2,[[1006,3,2,0,2]]]],[26493,26494]]],["servants",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24235]]]]},{"k":"G3412","v":[["Mitylene",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27640]]]]},{"k":"G3413","v":[["Michael",[2,2,[[64,1,1,0,1,[[1166,1,1,0,1]]],[65,1,1,1,2,[[1178,1,1,1,2]]]],[30681,30898]]]]},{"k":"G3414","v":[["*",[9,6,[[41,9,6,0,6,[[991,9,6,0,6]]]],[25744,25747,25749,25751,25755,25756]]],["pound",[4,4,[[41,4,4,0,4,[[991,4,4,0,4]]]],[25747,25749,25751,25755]]],["pounds",[5,5,[[41,5,5,0,5,[[991,5,5,0,5]]]],[25744,25747,25749,25755,25756]]]]},{"k":"G3415","v":[["*",[21,21,[[39,3,3,0,3,[[933,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[41,6,6,3,9,[[973,2,2,3,5],[988,1,1,5,6],[995,1,1,6,7],[996,2,2,7,9]]],[42,3,3,9,12,[[998,2,2,9,11],[1008,1,1,11,12]]],[43,2,2,12,14,[[1027,1,1,12,13],[1028,1,1,13,14]]],[45,1,1,14,15,[[1072,1,1,14,15]]],[54,1,1,15,16,[[1125,1,1,15,16]]],[57,2,2,16,18,[[1140,1,1,16,17],[1142,1,1,17,18]]],[60,1,1,18,19,[[1158,1,1,18,19]]],[64,1,1,19,20,[[1166,1,1,19,20]]],[65,1,1,20,21,[[1182,1,1,20,21]]]],[23257,24129,24192,24947,24965,25645,25977,25997,25999,26112,26117,26596,27290,27323,28602,29813,30104,30150,30524,30689,30973]]],["mindful",[2,2,[[54,1,1,0,1,[[1125,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[29813,30524]]],["remember",[9,9,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,4,4,1,5,[[973,1,1,1,2],[988,1,1,2,3],[995,1,1,3,4],[996,1,1,4,5]]],[45,1,1,5,6,[[1072,1,1,5,6]]],[57,2,2,6,8,[[1140,1,1,6,7],[1142,1,1,7,8]]],[64,1,1,8,9,[[1166,1,1,8,9]]]],[24192,24965,25645,25977,25997,28602,30104,30150,30689]]],["remembered",[6,6,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[42,3,3,2,5,[[998,2,2,2,4],[1008,1,1,4,5]]],[43,1,1,5,6,[[1028,1,1,5,6]]]],[24129,25999,26112,26117,26596,27323]]],["rememberest",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23257]]],["remembrance",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]],[65,1,1,2,3,[[1182,1,1,2,3]]]],[24947,27290,30973]]]]},{"k":"G3416","v":[["Mnason",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27680]]]]},{"k":"G3417","v":[["*",[7,7,[[44,1,1,0,1,[[1046,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[51,2,2,3,5,[[1111,1,1,3,4],[1113,1,1,4,5]]],[54,1,1,5,6,[[1125,1,1,5,6]]],[56,1,1,6,7,[[1132,1,1,6,7]]]],[27939,29222,29364,29562,29596,29812,29942]]],["mention",[4,4,[[44,1,1,0,1,[[1046,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]],[51,1,1,2,3,[[1111,1,1,2,3]]],[56,1,1,3,4,[[1132,1,1,3,4]]]],[27939,29222,29562,29942]]],["remembrance",[3,3,[[49,1,1,0,1,[[1103,1,1,0,1]]],[51,1,1,1,2,[[1113,1,1,1,2]]],[54,1,1,2,3,[[1125,1,1,2,3]]]],[29364,29596,29812]]]]},{"k":"G3418","v":[["*",[7,7,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,3,3,1,4,[[980,1,1,1,2],[995,1,1,2,3],[996,1,1,3,4]]],[43,2,2,4,6,[[1019,1,1,4,5],[1024,1,1,5,6]]],[65,1,1,6,7,[[1177,1,1,6,7]]]],[24369,25272,25988,25992,26978,27132,30881]]],["graves",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30881]]],["sepulchre",[4,4,[[41,2,2,0,2,[[995,1,1,0,1],[996,1,1,1,2]]],[43,2,2,2,4,[[1019,1,1,2,3],[1024,1,1,3,4]]]],[25988,25992,26978,27132]]],["tombs",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24369,25272]]]]},{"k":"G3419","v":[["*",[42,38,[[39,7,6,0,6,[[936,1,1,0,1],[951,1,1,1,2],[955,4,3,2,5],[956,1,1,5,6]]],[40,9,8,6,14,[[961,2,2,6,8],[962,1,1,8,9],[971,2,1,9,10],[972,4,4,10,14]]],[41,9,9,14,23,[[983,3,3,14,17],[995,1,1,17,18],[996,5,5,18,23]]],[42,16,14,23,37,[[1001,1,1,23,24],[1007,3,3,24,27],[1008,1,1,27,28],[1015,2,2,28,30],[1016,9,7,30,37]]],[43,1,1,37,38,[[1030,1,1,37,38]]]],[23373,23947,24181,24182,24189,24203,24366,24367,24436,24872,24875,24876,24878,24881,25449,25452,25453,25990,25993,26000,26003,26013,26015,26238,26540,26554,26561,26597,26866,26867,26868,26869,26870,26871,26873,26875,26878,27391]]],["grave",[4,4,[[42,4,4,0,4,[[1007,3,3,0,3],[1008,1,1,3,4]]]],[26540,26554,26561,26597]]],["graves",[4,4,[[39,2,2,0,2,[[955,2,2,0,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[42,1,1,3,4,[[1001,1,1,3,4]]]],[24181,24182,25449,26238]]],["sepulchre",[26,23,[[39,2,2,0,2,[[955,1,1,0,1],[956,1,1,1,2]]],[40,6,5,2,7,[[971,2,1,2,3],[972,4,4,3,7]]],[41,6,6,7,13,[[995,1,1,7,8],[996,5,5,8,13]]],[42,11,9,13,22,[[1015,2,2,13,15],[1016,9,7,15,22]]],[43,1,1,22,23,[[1030,1,1,22,23]]]],[24189,24203,24872,24875,24876,24878,24881,25990,25993,26000,26003,26013,26015,26866,26867,26868,26869,26870,26871,26873,26875,26878,27391]]],["sepulchres",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,2,2,1,3,[[983,2,2,1,3]]]],[23947,25452,25453]]],["tomb",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]]],[24189,24436]]],["tombs",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,2,2,1,3,[[961,2,2,1,3]]]],[23373,24366,24367]]]]},{"k":"G3420","v":[["+",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30494]]]]},{"k":"G3421","v":[["*",[21,21,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,1,1,2,3,[[989,1,1,2,3]]],[42,3,3,3,6,[[1011,1,1,3,4],[1012,2,2,4,6]]],[43,2,2,6,8,[[1037,2,2,6,8]]],[47,1,1,8,9,[[1092,1,1,8,9]]],[48,1,1,9,10,[[1098,1,1,9,10]]],[50,1,1,10,11,[[1110,1,1,10,11]]],[51,2,2,11,13,[[1111,1,1,11,12],[1112,1,1,12,13]]],[52,1,1,13,14,[[1117,1,1,13,14]]],[54,1,1,14,15,[[1126,1,1,14,15]]],[57,3,3,15,18,[[1143,2,2,15,17],[1145,1,1,17,18]]],[65,3,3,18,21,[[1168,1,1,18,19],[1169,1,1,19,20],[1184,1,1,20,21]]]],[23681,24518,25683,26719,26730,26747,27657,27661,29091,29240,29560,29563,29579,29666,29835,30187,30194,30248,30722,30749,30998]]],["Remember",[8,8,[[41,1,1,0,1,[[989,1,1,0,1]]],[42,1,1,1,2,[[1011,1,1,1,2]]],[50,1,1,2,3,[[1110,1,1,2,3]]],[52,1,1,3,4,[[1117,1,1,3,4]]],[54,1,1,4,5,[[1126,1,1,4,5]]],[57,1,1,5,6,[[1145,1,1,5,6]]],[65,2,2,6,8,[[1168,1,1,6,7],[1169,1,1,7,8]]]],[25683,26719,29560,29666,29835,30248,30722,30749]]],["Remembering",[1,1,[[51,1,1,0,1,[[1111,1,1,0,1]]]],[29563]]],["mention",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30194]]],["mindful",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30187]]],["remember",[8,8,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[42,1,1,2,3,[[1012,1,1,2,3]]],[43,2,2,3,5,[[1037,2,2,3,5]]],[47,1,1,5,6,[[1092,1,1,5,6]]],[48,1,1,6,7,[[1098,1,1,6,7]]],[51,1,1,7,8,[[1112,1,1,7,8]]]],[23681,24518,26730,27657,27661,29091,29240,29579]]],["remembered",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30998]]],["remembereth",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26747]]]]},{"k":"G3422","v":[["memorial",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]]],[24067,24763,27263]]]]},{"k":"G3423","v":[["espoused",[3,3,[[39,1,1,0,1,[[929,1,1,0,1]]],[41,2,2,1,3,[[973,1,1,1,2],[974,1,1,2,3]]]],[23162,24920,24978]]]]},{"k":"G3424","v":[["speech",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24495]]]]},{"k":"G3425","v":[["hardly",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25340]]]]},{"k":"G3426","v":[["bushel",[3,3,[[39,1,1,0,1,[[933,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]]],[23249,24344,25438]]]]},{"k":"G3427","v":[["*",[240,227,[[39,31,31,0,31,[[930,1,1,0,1],[932,1,1,1,2],[935,2,2,2,4],[936,2,2,4,6],[937,1,1,6,7],[939,1,1,7,8],[942,2,2,8,10],[943,3,3,10,13],[944,1,1,13,14],[945,1,1,14,15],[946,1,1,15,16],[947,2,2,16,18],[948,2,2,18,20],[949,2,2,20,22],[950,1,1,22,23],[953,4,4,23,27],[954,2,2,27,29],[955,1,1,29,30],[956,1,1,30,31]]],[40,9,9,31,40,[[958,1,1,31,32],[961,1,1,32,33],[962,1,1,33,34],[964,2,2,34,36],[966,1,1,36,37],[967,2,2,37,39],[968,1,1,39,40]]],[41,28,27,40,67,[[973,4,4,40,44],[976,1,1,44,45],[977,1,1,45,46],[979,1,1,46,47],[981,5,4,47,51],[982,2,2,51,53],[983,2,2,53,55],[987,3,3,55,58],[989,1,1,58,59],[990,3,3,59,62],[992,2,2,62,64],[994,2,2,64,66],[995,1,1,66,67]]],[42,41,38,67,105,[[997,2,2,67,69],[999,1,1,69,70],[1000,6,6,70,76],[1001,2,2,76,78],[1002,2,2,78,80],[1004,2,2,80,82],[1005,1,1,82,83],[1006,3,3,83,86],[1008,2,2,86,88],[1009,2,1,88,89],[1010,3,2,89,91],[1013,10,9,91,100],[1014,2,2,100,102],[1016,1,1,102,103],[1017,2,2,103,105]]],[43,36,35,105,140,[[1018,1,1,105,106],[1019,1,1,106,107],[1020,1,1,107,108],[1022,1,1,108,109],[1024,4,3,109,112],[1026,1,1,112,113],[1028,3,3,113,116],[1029,1,1,116,117],[1030,1,1,117,118],[1035,1,1,118,119],[1037,2,2,119,121],[1038,2,2,121,123],[1039,9,9,123,132],[1040,2,2,132,134],[1041,1,1,134,135],[1042,2,2,135,137],[1044,3,3,137,140]]],[44,9,9,140,149,[[1052,3,3,140,143],[1054,3,3,143,146],[1057,1,1,146,147],[1060,2,2,147,149]]],[45,15,11,149,160,[[1062,1,1,149,150],[1064,1,1,150,151],[1066,1,1,151,152],[1067,2,1,152,153],[1068,1,1,153,154],[1070,5,3,154,157],[1071,2,1,157,158],[1076,1,1,158,159],[1077,1,1,159,160]]],[46,11,10,160,170,[[1079,1,1,160,161],[1083,2,2,161,163],[1084,2,1,163,164],[1086,1,1,164,165],[1089,4,4,165,169],[1090,1,1,169,170]]],[47,5,5,170,175,[[1092,2,2,170,172],[1094,2,2,172,174],[1096,1,1,174,175]]],[48,4,4,175,179,[[1099,3,3,175,178],[1102,1,1,178,179]]],[49,7,7,179,186,[[1103,2,2,179,181],[1104,1,1,181,182],[1105,1,1,182,183],[1106,3,3,183,186]]],[50,2,2,186,188,[[1107,1,1,186,187],[1110,1,1,187,188]]],[54,7,6,188,194,[[1127,1,1,188,189],[1128,6,5,189,194]]],[56,3,3,194,197,[[1132,3,3,194,197]]],[57,5,5,197,202,[[1133,1,1,197,198],[1134,1,1,198,199],[1140,1,1,199,200],[1142,1,1,200,201],[1145,1,1,201,202]]],[58,1,1,202,203,[[1147,1,1,202,203]]],[60,1,1,203,204,[[1156,1,1,203,204]]],[65,25,23,204,227,[[1167,1,1,204,205],[1171,1,1,205,206],[1173,2,2,206,208],[1176,4,3,208,211],[1177,1,1,211,212],[1180,1,1,212,213],[1183,3,3,213,216],[1185,3,2,216,218],[1187,4,4,218,222],[1188,5,5,222,227]]]],[23177,23218,23337,23338,23366,23367,23388,23486,23605,23615,23641,23658,23665,23696,23717,23755,23783,23790,23805,23807,23828,23850,23891,24028,24030,24043,24050,24069,24107,24139,24213,24274,24373,24432,24502,24534,24609,24669,24670,24688,24918,24931,24936,24942,25086,25134,25240,25324,25339,25360,25362,25385,25403,25410,25412,25594,25597,25600,25659,25693,25701,25710,25782,25803,25893,25932,25949,26077,26087,26148,26163,26166,26171,26177,26185,26195,26221,26246,26294,26296,26426,26427,26451,26508,26510,26518,26629,26630,26666,26679,26699,26763,26765,26766,26767,26768,26770,26771,26781,26783,26794,26796,26882,26917,26920,26931,26977,27002,27067,27123,27158,27165,27231,27314,27316,27319,27345,27364,27567,27645,27648,27701,27703,27709,27710,27711,27713,27715,27717,27721,27722,27731,27753,27764,27780,27820,27823,27876,27878,27880,28101,28104,28109,28156,28157,28174,28248,28318,28333,28374,28420,28466,28479,28488,28555,28556,28558,28590,28750,28785,28836,28914,28916,28920,28957,29023,29029,29031,29035,29053,29087,29090,29146,29152,29205,29253,29254,29258,29356,29380,29383,29409,29428,29445,29457,29458,29490,29553,29864,29878,29881,29884,29886,29887,29951,29957,29960,29968,29990,30102,30138,30247,30311,30493,30714,30784,30823,30824,30865,30870,30872,30873,30939,30976,30982,30990,31026,31027,31058,31059,31060,31063,31081,31086,31088,31089,31090]]],["+",[11,11,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,3,3,2,5,[[999,1,1,2,3],[1000,1,1,3,4],[1010,1,1,4,5]]],[43,4,4,5,9,[[1030,1,1,5,6],[1039,2,2,6,8],[1041,1,1,8,9]]],[44,1,1,9,10,[[1054,1,1,9,10]]],[45,1,1,10,11,[[1066,1,1,10,11]]]],[23177,25412,26148,26177,26699,27364,27709,27731,27780,28156,28466]]],["I",[8,8,[[43,5,5,0,5,[[1020,1,1,0,1],[1035,1,1,1,2],[1038,1,1,2,3],[1039,2,2,3,5]]],[44,2,2,5,7,[[1052,1,1,5,6],[1054,1,1,6,7]]],[45,1,1,7,8,[[1070,1,1,7,8]]]],[27002,27567,27701,27710,27721,28101,28157,28556]]],["My",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24373]]],["he",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23388]]],["me",[208,198,[[39,29,29,0,29,[[932,1,1,0,1],[935,2,2,1,3],[936,2,2,3,5],[939,1,1,5,6],[942,2,2,6,8],[943,3,3,8,11],[944,1,1,11,12],[945,1,1,12,13],[946,1,1,13,14],[947,2,2,14,16],[948,2,2,16,18],[949,2,2,18,20],[950,1,1,20,21],[953,4,4,21,25],[954,2,2,25,27],[955,1,1,27,28],[956,1,1,28,29]]],[40,8,8,29,37,[[958,1,1,29,30],[962,1,1,30,31],[964,2,2,31,33],[966,1,1,33,34],[967,2,2,34,36],[968,1,1,36,37]]],[41,26,25,37,62,[[973,4,4,37,41],[976,1,1,41,42],[977,1,1,42,43],[979,1,1,43,44],[981,4,3,44,47],[982,2,2,47,49],[983,1,1,49,50],[987,3,3,50,53],[989,1,1,53,54],[990,3,3,54,57],[992,2,2,57,59],[994,2,2,59,61],[995,1,1,61,62]]],[42,38,35,62,97,[[997,2,2,62,64],[1000,5,5,64,69],[1001,2,2,69,71],[1002,2,2,71,73],[1004,2,2,73,75],[1005,1,1,75,76],[1006,3,3,76,79],[1008,2,2,79,81],[1009,2,1,81,82],[1010,2,1,82,83],[1013,10,9,83,92],[1014,2,2,92,94],[1016,1,1,94,95],[1017,2,2,95,97]]],[43,26,26,97,123,[[1018,1,1,97,98],[1019,1,1,98,99],[1022,1,1,99,100],[1024,3,3,100,103],[1026,1,1,103,104],[1028,3,3,104,107],[1029,1,1,107,108],[1037,2,2,108,110],[1038,1,1,110,111],[1039,5,5,111,116],[1040,2,2,116,118],[1042,2,2,118,120],[1044,3,3,120,123]]],[44,6,6,123,129,[[1052,2,2,123,125],[1054,1,1,125,126],[1057,1,1,126,127],[1060,2,2,127,129]]],[45,12,9,129,138,[[1062,1,1,129,130],[1064,1,1,130,131],[1067,2,1,131,132],[1068,1,1,132,133],[1070,3,2,133,135],[1071,2,1,135,136],[1076,1,1,136,137],[1077,1,1,137,138]]],[46,7,7,138,145,[[1079,1,1,138,139],[1086,1,1,139,140],[1089,4,4,140,144],[1090,1,1,144,145]]],[47,5,5,145,150,[[1092,2,2,145,147],[1094,2,2,147,149],[1096,1,1,149,150]]],[48,4,4,150,154,[[1099,3,3,150,153],[1102,1,1,153,154]]],[49,4,4,154,158,[[1104,1,1,154,155],[1105,1,1,155,156],[1106,2,2,156,158]]],[50,2,2,158,160,[[1107,1,1,158,159],[1110,1,1,159,160]]],[54,7,6,160,166,[[1127,1,1,160,161],[1128,6,5,161,166]]],[56,3,3,166,169,[[1132,3,3,166,169]]],[57,5,5,169,174,[[1133,1,1,169,170],[1134,1,1,170,171],[1140,1,1,171,172],[1142,1,1,172,173],[1145,1,1,173,174]]],[58,1,1,174,175,[[1147,1,1,174,175]]],[60,1,1,175,176,[[1156,1,1,175,176]]],[65,24,22,176,198,[[1167,1,1,176,177],[1171,1,1,177,178],[1173,2,2,178,180],[1176,4,3,180,183],[1177,1,1,183,184],[1180,1,1,184,185],[1183,3,3,185,188],[1185,3,2,188,190],[1187,3,3,190,193],[1188,5,5,193,198]]]],[23218,23337,23338,23366,23367,23486,23605,23615,23641,23658,23665,23696,23717,23755,23783,23790,23805,23807,23828,23850,23891,24028,24030,24043,24050,24069,24107,24139,24213,24274,24432,24502,24534,24609,24669,24670,24688,24918,24931,24936,24942,25086,25134,25240,25324,25360,25362,25385,25403,25410,25594,25597,25600,25659,25693,25701,25710,25782,25803,25893,25932,25949,26077,26087,26163,26166,26171,26185,26195,26221,26246,26294,26296,26426,26427,26451,26508,26510,26518,26629,26630,26666,26679,26763,26765,26766,26767,26768,26770,26771,26781,26783,26794,26796,26882,26917,26920,26931,26977,27067,27123,27158,27165,27231,27314,27316,27319,27345,27645,27648,27703,27711,27713,27715,27717,27722,27753,27764,27820,27823,27876,27878,27880,28104,28109,28174,28248,28318,28333,28374,28420,28479,28488,28555,28556,28590,28750,28785,28836,28957,29023,29029,29031,29035,29053,29087,29090,29146,29152,29205,29253,29254,29258,29356,29409,29428,29445,29457,29490,29553,29864,29878,29881,29884,29886,29887,29951,29957,29960,29968,29990,30102,30138,30247,30311,30493,30714,30784,30823,30824,30865,30870,30872,30873,30939,30976,30982,30990,31026,31027,31058,31059,31063,31081,31086,31088,31089,31090]]],["mine",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25339]]],["my",[10,9,[[43,1,1,0,1,[[1024,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[46,4,3,2,5,[[1083,2,2,2,4],[1084,2,1,4,5]]],[49,3,3,5,8,[[1103,2,2,5,7],[1106,1,1,7,8]]],[65,1,1,8,9,[[1187,1,1,8,9]]]],[27165,28558,28914,28916,28920,29380,29383,29458,31060]]]]},{"k":"G3428","v":[["*",[7,6,[[39,2,2,0,2,[[940,1,1,0,1],[944,1,1,1,2]]],[40,1,1,2,3,[[964,1,1,2,3]]],[44,2,1,3,4,[[1052,2,1,3,4]]],[58,1,1,4,5,[[1149,1,1,4,5]]],[60,1,1,5,6,[[1157,1,1,5,6]]]],[23528,23676,24538,28094,30341,30514]]],["adulteress",[2,1,[[44,2,1,0,1,[[1052,2,1,0,1]]]],[28094]]],["adulteresses",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30341]]],["adulterous",[3,3,[[39,2,2,0,2,[[940,1,1,0,1],[944,1,1,1,2]]],[40,1,1,2,3,[[964,1,1,2,3]]]],[23528,23676,24538]]],["adultery",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30514]]]]},{"k":"G3429","v":[["adultery",[6,4,[[39,4,2,0,2,[[933,2,1,0,1],[947,2,1,1,2]]],[40,2,2,2,4,[[966,2,2,2,4]]]],[23266,23771,24599,24600]]]]},{"k":"G3430","v":[["*",[4,4,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]]],[23652,24484,26384,29181]]],["Adultery",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29181]]],["adulteries",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[23652,24484]]],["adultery",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26384]]]]},{"k":"G3431","v":[["*",[14,11,[[39,3,3,0,3,[[933,2,2,0,2],[947,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,3,2,4,6,[[988,2,1,4,5],[990,1,1,5,6]]],[42,1,1,6,7,[[1004,1,1,6,7]]],[44,3,2,7,9,[[1047,2,1,7,8],[1058,1,1,8,9]]],[58,2,1,9,10,[[1147,2,1,9,10]]],[65,1,1,10,11,[[1168,1,1,10,11]]]],[23261,23262,23780,24607,25638,25708,26385,27984,28275,30304,30739]]],["+",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30304]]],["adultery",[13,11,[[39,3,3,0,3,[[933,2,2,0,2],[947,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,3,2,4,6,[[988,2,1,4,5],[990,1,1,5,6]]],[42,1,1,6,7,[[1004,1,1,6,7]]],[44,3,2,7,9,[[1047,2,1,7,8],[1058,1,1,8,9]]],[58,1,1,9,10,[[1147,1,1,9,10]]],[65,1,1,10,11,[[1168,1,1,10,11]]]],[23261,23262,23780,24607,25638,25708,26385,27984,28275,30304,30739]]]]},{"k":"G3432","v":[["adulterers",[4,4,[[41,1,1,0,1,[[990,1,1,0,1]]],[45,1,1,1,2,[[1067,1,1,1,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]]],[25699,28476,30245,30341]]]]},{"k":"G3433","v":[["*",[6,6,[[43,4,4,0,4,[[1031,1,1,0,1],[1044,3,3,1,4]]],[44,1,1,4,5,[[1050,1,1,4,5]]],[59,1,1,5,6,[[1154,1,1,5,6]]]],[27432,27862,27863,27871,28054,30464]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27871]]],["hardly",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27863]]],["scarce",[2,2,[[43,2,2,0,2,[[1031,1,1,0,1],[1044,1,1,1,2]]]],[27432,27862]]],["scarcely",[2,2,[[44,1,1,0,1,[[1050,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[28054,30464]]]]},{"k":"G3434","v":[["Moloch",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27159]]]]},{"k":"G3435","v":[["defiled",[3,3,[[45,1,1,0,1,[[1069,1,1,0,1]]],[65,2,2,1,3,[[1169,1,1,1,2],[1180,1,1,2,3]]]],[28534,30750,30930]]]]},{"k":"G3436","v":[["filthiness",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28917]]]]},{"k":"G3437","v":[["quarrel",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29530]]]]},{"k":"G3438","v":[["*",[2,2,[[42,2,2,0,2,[[1010,2,2,0,2]]]],[26670,26691]]],["abode",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26691]]],["mansions",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26670]]]]},{"k":"G3439","v":[["*",[9,9,[[41,3,3,0,3,[[979,1,1,0,1],[980,1,1,1,2],[981,1,1,2,3]]],[42,4,4,3,7,[[997,2,2,3,5],[999,2,2,5,7]]],[57,1,1,7,8,[[1143,1,1,7,8]]],[61,1,1,8,9,[[1162,1,1,8,9]]]],[25207,25287,25339,26058,26062,26136,26138,30189,30612]]],["begotten",[6,6,[[42,4,4,0,4,[[997,2,2,0,2],[999,2,2,2,4]]],[57,1,1,4,5,[[1143,1,1,4,5]]],[61,1,1,5,6,[[1162,1,1,5,6]]]],[26058,26062,26136,26138,30189,30612]]],["child",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25339]]],["only",[2,2,[[41,2,2,0,2,[[979,1,1,0,1],[980,1,1,1,2]]]],[25207,25287]]]]},{"k":"G3440","v":[["*",[68,68,[[39,7,7,0,7,[[933,1,1,0,1],[936,1,1,1,2],[937,1,1,2,3],[938,1,1,3,4],[942,1,1,4,5],[949,2,2,5,7]]],[40,3,3,7,10,[[961,1,1,7,8],[962,1,1,8,9],[965,1,1,9,10]]],[41,2,2,10,12,[[980,1,1,10,11],[982,1,1,11,12]]],[42,5,5,12,17,[[1001,1,1,12,13],[1007,1,1,13,14],[1008,1,1,14,15],[1009,1,1,15,16],[1013,1,1,16,17]]],[43,8,8,17,25,[[1025,1,1,17,18],[1028,1,1,18,19],[1035,1,1,19,20],[1036,2,2,20,22],[1038,1,1,22,23],[1043,1,1,23,24],[1044,1,1,24,25]]],[44,11,11,25,36,[[1046,1,1,25,26],[1048,1,1,26,27],[1049,3,3,27,30],[1050,2,2,30,32],[1053,1,1,32,33],[1054,2,2,33,35],[1058,1,1,35,36]]],[45,2,2,36,38,[[1068,1,1,36,37],[1076,1,1,37,38]]],[46,5,5,38,43,[[1084,1,1,38,39],[1085,3,3,39,42],[1086,1,1,42,43]]],[47,6,6,43,49,[[1091,1,1,43,44],[1092,1,1,44,45],[1093,1,1,45,46],[1094,1,1,46,47],[1095,1,1,47,48],[1096,1,1,48,49]]],[48,1,1,49,50,[[1097,1,1,49,50]]],[49,4,4,50,54,[[1103,2,2,50,52],[1104,2,2,52,54]]],[51,3,3,54,57,[[1111,2,2,54,56],[1112,1,1,56,57]]],[52,1,1,57,58,[[1117,1,1,57,58]]],[53,1,1,58,59,[[1123,1,1,58,59]]],[54,2,2,59,61,[[1126,1,1,59,60],[1128,1,1,60,61]]],[57,2,2,61,63,[[1141,1,1,61,62],[1144,1,1,62,63]]],[58,2,2,63,65,[[1146,1,1,63,64],[1147,1,1,64,65]]],[59,1,1,65,66,[[1152,1,1,65,66]]],[61,2,2,66,68,[[1160,1,1,66,67],[1163,1,1,67,68]]]],[23281,23353,23400,23459,23633,23845,23847,24400,24415,24546,25295,25403,26228,26575,26589,26639,26779,27192,27326,27582,27611,27612,27677,27852,27865,27962,28020,28034,28038,28045,28050,28058,28139,28165,28179,28271,28526,28737,28923,28942,28951,28953,28968,29080,29091,29104,29149,29175,29200,29227,29388,29390,29403,29418,29565,29568,29578,29668,29776,29847,29878,30115,30238,30288,30317,30417,30552,30630]]],["Only",[2,2,[[47,1,1,0,1,[[1092,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[29091,29388]]],["alone",[4,4,[[41,1,1,0,1,[[982,1,1,0,1]]],[42,1,1,1,2,[[1013,1,1,1,2]]],[43,1,1,2,3,[[1036,1,1,2,3]]],[44,1,1,3,4,[[1049,1,1,3,4]]]],[25403,26779,27611,28045]]],["but",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23400]]],["only",[61,61,[[39,6,6,0,6,[[933,1,1,0,1],[936,1,1,1,2],[938,1,1,2,3],[942,1,1,3,4],[949,2,2,4,6]]],[40,3,3,6,9,[[961,1,1,6,7],[962,1,1,7,8],[965,1,1,8,9]]],[41,1,1,9,10,[[980,1,1,9,10]]],[42,4,4,10,14,[[1001,1,1,10,11],[1007,1,1,11,12],[1008,1,1,12,13],[1009,1,1,13,14]]],[43,7,7,14,21,[[1025,1,1,14,15],[1028,1,1,15,16],[1035,1,1,16,17],[1036,1,1,17,18],[1038,1,1,18,19],[1043,1,1,19,20],[1044,1,1,20,21]]],[44,10,10,21,31,[[1046,1,1,21,22],[1048,1,1,22,23],[1049,2,2,23,25],[1050,2,2,25,27],[1053,1,1,27,28],[1054,2,2,28,30],[1058,1,1,30,31]]],[45,2,2,31,33,[[1068,1,1,31,32],[1076,1,1,32,33]]],[46,5,5,33,38,[[1084,1,1,33,34],[1085,3,3,34,37],[1086,1,1,37,38]]],[47,5,5,38,43,[[1091,1,1,38,39],[1093,1,1,39,40],[1094,1,1,40,41],[1095,1,1,41,42],[1096,1,1,42,43]]],[48,1,1,43,44,[[1097,1,1,43,44]]],[49,3,3,44,47,[[1103,1,1,44,45],[1104,2,2,45,47]]],[51,3,3,47,50,[[1111,2,2,47,49],[1112,1,1,49,50]]],[52,1,1,50,51,[[1117,1,1,50,51]]],[53,1,1,51,52,[[1123,1,1,51,52]]],[54,2,2,52,54,[[1126,1,1,52,53],[1128,1,1,53,54]]],[57,2,2,54,56,[[1141,1,1,54,55],[1144,1,1,55,56]]],[58,2,2,56,58,[[1146,1,1,56,57],[1147,1,1,57,58]]],[59,1,1,58,59,[[1152,1,1,58,59]]],[61,2,2,59,61,[[1160,1,1,59,60],[1163,1,1,60,61]]]],[23281,23353,23459,23633,23845,23847,24400,24415,24546,25295,26228,26575,26589,26639,27192,27326,27582,27612,27677,27852,27865,27962,28020,28034,28038,28050,28058,28139,28165,28179,28271,28526,28737,28923,28942,28951,28953,28968,29080,29104,29149,29175,29200,29227,29390,29403,29418,29565,29568,29578,29668,29776,29847,29878,30115,30238,30288,30317,30417,30552,30630]]]]},{"k":"G3441","v":[["*",[45,44,[[39,7,7,0,7,[[932,2,2,0,2],[940,1,1,2,3],[942,1,1,3,4],[945,1,1,4,5],[946,1,1,5,6],[952,1,1,6,7]]],[40,2,2,7,9,[[962,1,1,7,8],[965,1,1,8,9]]],[41,7,7,9,16,[[976,2,2,9,11],[977,1,1,11,12],[978,1,1,12,13],[981,1,1,13,14],[996,2,2,14,16]]],[42,10,9,16,25,[[1001,1,1,16,17],[1002,2,2,17,19],[1004,3,3,19,22],[1008,1,1,22,23],[1012,2,1,23,24],[1013,1,1,24,25]]],[44,3,3,25,28,[[1056,1,1,25,26],[1061,2,2,26,28]]],[45,2,2,28,30,[[1070,1,1,28,29],[1075,1,1,29,30]]],[47,1,1,30,31,[[1096,1,1,30,31]]],[49,1,1,31,32,[[1106,1,1,31,32]]],[50,1,1,32,33,[[1110,1,1,32,33]]],[51,1,1,33,34,[[1113,1,1,33,34]]],[53,3,3,34,37,[[1119,1,1,34,35],[1124,2,2,35,37]]],[54,1,1,37,38,[[1128,1,1,37,38]]],[57,1,1,38,39,[[1141,1,1,38,39]]],[62,1,1,39,40,[[1164,1,1,39,40]]],[64,2,2,40,42,[[1166,2,2,40,42]]],[65,2,2,42,44,[[1175,1,1,42,43],[1181,1,1,43,44]]]],[23213,23219,23493,23620,23708,23742,23993,24454,24540,25067,25071,25128,25150,25337,26003,26009,26254,26272,26279,26390,26397,26410,26604,26758,26762,28212,28340,28363,28546,28714,29192,29457,29553,29591,29713,29803,29804,29881,30112,30646,30676,30697,30844,30950]]],["+",[2,2,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]]],[24540,26009]]],["Only",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29881]]],["alone",[20,19,[[39,3,3,0,3,[[932,1,1,0,1],[942,1,1,1,2],[946,1,1,2,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[41,4,4,4,8,[[976,1,1,4,5],[977,1,1,5,6],[978,1,1,6,7],[981,1,1,7,8]]],[42,8,7,8,15,[[1002,2,2,8,10],[1004,3,3,10,13],[1008,1,1,13,14],[1012,2,1,14,15]]],[44,1,1,15,16,[[1056,1,1,15,16]]],[47,1,1,16,17,[[1096,1,1,16,17]]],[51,1,1,17,18,[[1113,1,1,17,18]]],[57,1,1,18,19,[[1141,1,1,18,19]]]],[23213,23620,23742,24454,25067,25128,25150,25337,26272,26279,26390,26397,26410,26604,26758,28212,29192,29591,30112]]],["only",[21,21,[[39,4,4,0,4,[[932,1,1,0,1],[940,1,1,1,2],[945,1,1,2,3],[952,1,1,3,4]]],[41,1,1,4,5,[[976,1,1,4,5]]],[42,2,2,5,7,[[1001,1,1,5,6],[1013,1,1,6,7]]],[44,2,2,7,9,[[1061,2,2,7,9]]],[45,2,2,9,11,[[1070,1,1,9,10],[1075,1,1,10,11]]],[49,1,1,11,12,[[1106,1,1,11,12]]],[50,1,1,12,13,[[1110,1,1,12,13]]],[53,3,3,13,16,[[1119,1,1,13,14],[1124,2,2,14,16]]],[62,1,1,16,17,[[1164,1,1,16,17]]],[64,2,2,17,19,[[1166,2,2,17,19]]],[65,2,2,19,21,[[1175,1,1,19,20],[1181,1,1,20,21]]]],[23219,23493,23708,23993,25071,26254,26762,28340,28363,28546,28714,29457,29553,29713,29803,29804,30646,30676,30697,30844,30950]]],["themselves",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26003]]]]},{"k":"G3442","v":[["eye",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]]],[23736,24585]]]]},{"k":"G3443","v":[["desolate",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29768]]]]},{"k":"G3444","v":[["form",[3,3,[[40,1,1,0,1,[[972,1,1,0,1]]],[49,2,2,1,3,[[1104,2,2,1,3]]]],[24885,29397,29398]]]]},{"k":"G3445","v":[["formed",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29150]]]]},{"k":"G3446","v":[["form",[2,2,[[44,1,1,0,1,[[1047,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[27982,29858]]]]},{"k":"G3447","v":[["calf",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27157]]]]},{"k":"G3448","v":[["*",[6,6,[[41,3,3,0,3,[[987,3,3,0,3]]],[57,2,2,3,5,[[1141,2,2,3,5]]],[65,1,1,5,6,[[1170,1,1,5,6]]]],[25611,25615,25618,30117,30124,30775]]],["calf",[4,4,[[41,3,3,0,3,[[987,3,3,0,3]]],[65,1,1,3,4,[[1170,1,1,3,4]]]],[25611,25615,25618,30775]]],["calves",[2,2,[[57,2,2,0,2,[[1141,2,2,0,2]]]],[30117,30124]]]]},{"k":"G3449","v":[["*",[3,3,[[46,1,1,0,1,[[1088,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]],[52,1,1,2,3,[[1118,1,1,2,3]]]],[29016,29579,29686]]],["painfulness",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29016]]],["travail",[2,2,[[51,1,1,0,1,[[1112,1,1,0,1]]],[52,1,1,1,2,[[1118,1,1,1,2]]]],[29579,29686]]]]},{"k":"G3450","v":[["*",[586,471,[[39,90,71,0,71,[[930,2,2,0,2],[931,3,2,2,4],[932,1,1,4,5],[935,3,3,5,8],[936,5,4,8,12],[937,1,1,12,13],[938,7,5,13,18],[939,5,4,18,22],[940,10,5,22,27],[941,2,2,27,29],[943,2,2,29,31],[944,5,4,31,35],[945,2,2,35,37],[946,5,5,37,42],[947,2,2,42,44],[948,5,2,44,46],[949,3,3,46,49],[950,4,2,49,51],[952,5,5,51,56],[953,3,3,56,59],[954,10,9,59,68],[955,4,2,68,70],[956,1,1,70,71]]],[40,42,35,71,106,[[957,5,4,71,75],[959,6,3,75,78],[961,3,3,78,81],[962,1,1,81,82],[963,1,1,82,83],[964,2,2,83,85],[965,6,6,85,91],[966,3,2,91,93],[967,1,1,93,94],[968,3,2,94,96],[969,3,3,96,99],[970,5,5,99,104],[971,2,1,104,105],[972,1,1,105,106]]],[41,93,80,106,186,[[973,9,7,106,113],[974,2,2,113,115],[975,2,2,115,117],[976,2,2,117,119],[978,1,1,119,120],[979,9,7,120,127],[980,5,3,127,130],[981,6,6,130,136],[982,3,3,136,139],[983,3,3,139,142],[984,8,6,142,148],[986,6,5,148,153],[987,5,5,153,158],[988,4,4,158,162],[990,2,2,162,164],[991,5,4,164,168],[992,3,2,168,170],[993,4,4,170,174],[994,9,8,174,182],[995,2,2,182,184],[996,3,2,184,186]]],[42,110,86,186,272,[[997,8,3,186,189],[998,2,2,189,191],[1000,1,1,191,192],[1001,4,4,192,196],[1002,9,6,196,202],[1004,11,9,202,211],[1005,3,3,211,214],[1006,11,10,214,224],[1007,4,4,224,228],[1008,4,4,228,232],[1009,4,4,232,236],[1010,14,11,236,247],[1011,13,11,247,258],[1012,4,4,258,262],[1014,1,1,262,263],[1015,2,1,263,264],[1016,12,5,264,269],[1017,3,3,269,272]]],[43,49,38,272,310,[[1018,1,1,272,273],[1019,13,7,273,280],[1024,5,4,280,284],[1026,2,2,284,286],[1027,2,1,286,287],[1028,1,1,287,288],[1030,3,2,288,290],[1032,3,3,290,293],[1033,1,1,293,294],[1037,5,4,294,298],[1038,1,1,298,299],[1039,2,2,299,301],[1041,3,3,301,304],[1042,2,2,304,306],[1043,4,3,306,309],[1045,1,1,309,310]]],[44,37,28,310,338,[[1046,4,2,310,312],[1047,1,1,312,313],[1052,5,3,313,316],[1054,9,6,316,322],[1055,1,1,322,323],[1056,3,3,323,326],[1060,2,2,326,328],[1061,12,10,328,338]]],[45,30,25,338,363,[[1062,2,2,338,340],[1063,2,1,340,341],[1065,5,4,341,345],[1069,2,1,345,346],[1070,4,4,346,350],[1071,2,2,350,352],[1072,4,4,352,356],[1074,2,1,356,357],[1075,5,4,357,361],[1076,1,1,361,362],[1077,1,1,362,363]]],[46,12,8,363,371,[[1079,2,1,363,364],[1088,5,4,364,368],[1089,5,3,368,371]]],[47,8,6,371,377,[[1091,3,2,371,373],[1094,4,3,373,376],[1096,1,1,376,377]]],[48,6,6,377,383,[[1097,1,1,377,378],[1099,3,3,378,381],[1102,2,2,381,383]]],[49,24,18,383,401,[[1103,10,8,383,391],[1104,6,3,391,394],[1105,3,3,394,397],[1106,5,4,397,401]]],[50,5,4,401,405,[[1107,2,1,401,402],[1108,1,1,402,403],[1110,2,2,403,405]]],[54,8,8,405,413,[[1125,4,4,405,409],[1126,2,2,409,411],[1127,1,1,411,412],[1128,1,1,412,413]]],[56,6,5,413,418,[[1132,6,5,413,418]]],[57,18,15,418,433,[[1133,2,2,418,420],[1134,1,1,420,421],[1135,4,3,421,424],[1136,3,2,424,426],[1137,1,1,426,427],[1140,3,2,427,429],[1142,3,3,429,432],[1144,1,1,432,433]]],[58,14,13,433,446,[[1146,3,3,433,436],[1147,6,5,436,441],[1148,3,3,441,444],[1150,2,2,444,446]]],[59,1,1,446,447,[[1155,1,1,446,447]]],[60,2,2,447,449,[[1156,2,2,447,449]]],[61,3,3,449,452,[[1160,1,1,449,450],[1161,2,2,450,452]]],[65,28,19,452,471,[[1167,2,2,452,454],[1168,7,5,454,459],[1169,13,7,459,466],[1176,2,1,466,467],[1177,1,1,467,468],[1184,1,1,468,469],[1188,2,2,469,471]]]],[23175,23184,23203,23209,23228,23337,23340,23342,23351,23353,23354,23366,23397,23439,23449,23450,23454,23455,23469,23486,23488,23489,23507,23533,23537,23538,23539,23569,23574,23646,23655,23689,23690,23695,23696,23705,23715,23732,23737,23746,23748,23762,23782,23791,23813,23815,23839,23854,23863,23876,23916,23962,23966,23992,23993,24005,24035,24042,24048,24066,24072,24080,24082,24083,24092,24093,24096,24107,24164,24175,24205,24217,24222,24226,24232,24321,24322,24323,24387,24394,24395,24430,24477,24533,24534,24545,24555,24562,24575,24577,24579,24608,24628,24657,24679,24709,24723,24730,24748,24762,24768,24776,24778,24788,24860,24890,24911,24913,24918,24936,24937,24939,24940,25003,25022,25041,25047,25070,25071,25193,25201,25202,25203,25222,25239,25240,25241,25266,25290,25291,25324,25336,25339,25349,25360,25362,25385,25392,25403,25411,25412,25429,25463,25472,25476,25477,25478,25504,25576,25577,25579,25580,25586,25594,25605,25606,25612,25617,25623,25625,25644,25647,25691,25709,25739,25754,25758,25777,25792,25821,25834,25838,25843,25859,25875,25883,25884,25892,25893,25894,25906,25917,25977,25981,26030,26040,26059,26071,26074,26099,26111,26205,26227,26234,26241,26253,26289,26308,26311,26312,26313,26322,26395,26400,26409,26412,26419,26430,26431,26433,26435,26451,26455,26470,26496,26497,26498,26499,26506,26508,26509,26510,26513,26518,26544,26555,26564,26565,26587,26607,26627,26628,26636,26638,26639,26667,26670,26675,26680,26681,26682,26688,26689,26691,26692,26694,26696,26700,26706,26707,26709,26713,26714,26715,26719,26720,26722,26723,26736,26749,26750,26752,26822,26849,26880,26884,26892,26894,26895,26913,26914,26915,26927,26963,26966,26967,26974,26975,26976,26983,27150,27165,27166,27175,27231,27232,27289,27315,27384,27395,27449,27455,27459,27498,27650,27651,27655,27660,27677,27705,27721,27782,27786,27789,27807,27811,27826,27827,27852,27918,27938,27939,27978,28095,28109,28114,28156,28157,28158,28172,28180,28181,28209,28212,28222,28223,28317,28334,28339,28340,28341,28343,28344,28345,28347,28357,28359,28361,28367,28374,28398,28447,28449,28450,28451,28540,28541,28555,28558,28567,28581,28596,28601,28602,28624,28633,28668,28692,28696,28697,28699,28776,28800,28837,28990,28998,29017,29019,29027,29031,29043,29071,29072,29145,29150,29151,29205,29222,29255,29264,29265,29347,29356,29364,29365,29368,29369,29374,29375,29377,29381,29393,29403,29416,29422,29429,29438,29443,29445,29456,29461,29489,29495,29552,29560,29812,29815,29821,29825,29828,29835,29863,29886,29942,29948,29958,29961,29962,29968,29976,29989,30004,30005,30006,30017,30019,30035,30101,30102,30149,30167,30171,30217,30268,30282,30285,30294,30296,30298,30307,30311,30320,30329,30331,30364,30366,30478,30493,30496,30551,30592,30597,30707,30717,30720,30730,30733,30743,30744,30751,30754,30756,30758,30762,30766,30767,30871,30875,30997,31092,31096]]],["+",[14,13,[[39,3,3,0,3,[[938,1,1,0,1],[947,1,1,1,2],[952,1,1,2,3]]],[40,1,1,3,4,[[969,1,1,3,4]]],[41,2,2,4,6,[[993,2,2,4,6]]],[42,1,1,6,7,[[1011,1,1,6,7]]],[43,1,1,7,8,[[1026,1,1,7,8]]],[45,4,3,8,11,[[1069,2,1,8,9],[1070,1,1,9,10],[1074,1,1,10,11]]],[54,1,1,11,12,[[1125,1,1,11,12]]],[65,1,1,12,13,[[1168,1,1,12,13]]]],[23439,23791,23966,24730,25838,25843,26720,27232,28540,28555,28668,29821,30720]]],["I",[10,10,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,2,2,2,4,[[975,1,1,2,3],[994,1,1,3,4]]],[42,1,1,4,5,[[1010,1,1,4,5]]],[43,3,3,5,8,[[1039,1,1,5,6],[1041,1,1,6,7],[1042,1,1,7,8]]],[45,1,1,8,9,[[1065,1,1,8,9]]],[57,1,1,9,10,[[1140,1,1,9,10]]]],[23203,24222,25041,25917,26696,27721,27789,27811,28451,30101]]],["My",[29,29,[[39,6,6,0,6,[[937,1,1,0,1],[949,1,1,1,2],[952,1,1,2,3],[954,2,2,3,5],[955,1,1,5,6]]],[40,4,4,6,10,[[961,1,1,6,7],[967,1,1,7,8],[970,1,1,8,9],[971,1,1,9,10]]],[41,5,5,10,15,[[973,1,1,10,11],[979,1,1,11,12],[980,1,1,12,13],[984,1,1,13,14],[991,1,1,14,15]]],[42,3,3,15,18,[[1001,1,1,15,16],[1006,1,1,16,17],[1016,1,1,17,18]]],[43,1,1,18,19,[[1043,1,1,18,19]]],[45,1,1,19,20,[[1077,1,1,19,20]]],[46,1,1,20,21,[[1089,1,1,20,21]]],[47,1,1,21,22,[[1094,1,1,21,22]]],[57,1,1,22,23,[[1144,1,1,22,23]]],[58,4,4,23,27,[[1146,1,1,23,24],[1147,1,1,24,25],[1148,2,2,25,27]]],[61,2,2,27,29,[[1160,1,1,27,28],[1161,1,1,28,29]]]],[23397,23839,24005,24072,24092,24175,24387,24657,24788,24860,24939,25241,25266,25504,25777,26227,26510,26895,27827,28800,29031,29150,30217,30268,30294,30320,30329,30551,30597]]],["face",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26974]]],["me",[52,42,[[39,9,6,0,6,[[931,1,1,0,1],[932,1,1,1,2],[938,4,2,2,4],[944,3,2,4,6]]],[40,6,6,6,12,[[957,2,2,6,8],[961,1,1,8,9],[963,1,1,9,10],[964,2,2,10,12]]],[41,9,8,12,20,[[976,2,2,12,14],[980,3,2,14,16],[981,1,1,16,17],[986,1,1,17,18],[991,1,1,18,19],[995,1,1,19,20]]],[42,11,6,20,26,[[997,8,3,20,23],[1007,2,2,23,25],[1016,1,1,25,26]]],[43,7,7,26,33,[[1018,1,1,26,27],[1027,1,1,27,28],[1032,1,1,28,29],[1041,1,1,29,30],[1042,1,1,30,31],[1043,2,2,31,33]]],[45,4,4,33,37,[[1065,1,1,33,34],[1072,2,2,34,36],[1075,1,1,36,37]]],[46,4,3,37,40,[[1088,4,3,37,40]]],[49,1,1,40,41,[[1105,1,1,40,41]]],[65,1,1,41,42,[[1167,1,1,41,42]]]],[23203,23228,23454,23455,23695,23696,24222,24232,24395,24477,24533,24534,25070,25071,25290,25291,25324,25580,25758,25977,26059,26071,26074,26564,26565,26884,26927,27289,27455,27782,27807,27826,27852,28449,28601,28602,28699,28990,28998,29017,29438,30707]]],["mine",[19,19,[[39,2,2,0,2,[[935,2,2,0,2]]],[40,1,1,2,3,[[965,1,1,2,3]]],[41,5,5,3,8,[[973,1,1,3,4],[974,1,1,4,5],[983,1,1,5,6],[990,1,1,6,7],[991,1,1,7,8]]],[42,4,4,8,12,[[998,1,1,8,9],[1005,3,3,9,12]]],[43,1,1,12,13,[[1038,1,1,12,13]]],[44,2,2,13,15,[[1056,1,1,13,14],[1061,1,1,14,15]]],[46,2,2,15,17,[[1088,1,1,15,16],[1089,1,1,16,17]]],[49,1,1,17,18,[[1103,1,1,17,18]]],[65,1,1,18,19,[[1188,1,1,18,19]]]],[23340,23342,24562,24937,25003,25411,25691,25758,26099,26451,26455,26470,27677,28222,28359,29019,29027,29365,31096]]],["my",[457,375,[[39,69,56,0,56,[[930,2,2,0,2],[931,1,1,2,3],[935,1,1,3,4],[936,5,4,4,8],[938,2,2,8,10],[939,5,4,10,14],[940,10,5,14,19],[941,2,2,19,21],[943,2,2,21,23],[944,2,2,23,25],[945,2,2,25,27],[946,5,5,27,32],[947,1,1,32,33],[948,5,2,33,35],[949,2,2,35,37],[950,4,2,37,39],[952,3,3,39,42],[953,3,3,42,45],[954,8,8,45,53],[955,3,2,53,55],[956,1,1,55,56]]],[40,29,24,56,80,[[957,2,2,56,58],[959,6,3,58,61],[961,1,1,61,62],[962,1,1,62,63],[965,5,5,63,68],[966,3,2,68,70],[968,3,2,70,72],[969,2,2,72,74],[970,4,4,74,78],[971,1,1,78,79],[972,1,1,79,80]]],[41,70,63,80,143,[[973,7,6,80,86],[974,1,1,86,87],[975,1,1,87,88],[978,1,1,88,89],[979,8,7,89,96],[980,1,1,96,97],[981,5,5,97,102],[982,3,3,102,105],[983,2,2,105,107],[984,7,5,107,112],[986,5,5,112,117],[987,5,5,117,122],[988,4,4,122,126],[990,1,1,126,127],[991,2,2,127,129],[992,3,2,129,131],[993,2,2,131,133],[994,8,7,133,140],[995,1,1,140,141],[996,3,2,141,143]]],[42,89,74,143,217,[[998,1,1,143,144],[1000,1,1,144,145],[1001,3,3,145,148],[1002,9,6,148,154],[1004,10,8,154,162],[1006,10,10,162,172],[1007,2,2,172,174],[1008,4,4,174,178],[1009,4,4,178,182],[1010,13,11,182,193],[1011,12,10,193,203],[1012,4,4,203,207],[1014,1,1,207,208],[1015,2,1,208,209],[1016,10,5,209,214],[1017,3,3,214,217]]],[43,33,26,217,243,[[1019,12,7,217,224],[1024,5,4,224,228],[1026,1,1,228,229],[1027,1,1,229,230],[1028,1,1,230,231],[1030,2,2,231,233],[1032,2,2,233,235],[1033,1,1,235,236],[1037,5,4,236,240],[1039,1,1,240,241],[1041,1,1,241,242],[1045,1,1,242,243]]],[44,35,26,243,269,[[1046,4,2,243,245],[1047,1,1,245,246],[1052,5,3,246,249],[1054,9,6,249,255],[1055,1,1,255,256],[1056,2,2,256,258],[1060,2,2,258,260],[1061,11,9,260,269]]],[45,20,17,269,286,[[1062,2,2,269,271],[1063,2,1,271,272],[1065,3,2,272,274],[1070,3,3,274,277],[1071,2,2,277,279],[1072,2,2,279,281],[1074,1,1,281,282],[1075,4,3,282,285],[1076,1,1,285,286]]],[46,5,3,286,289,[[1079,2,1,286,287],[1089,3,2,287,289]]],[47,6,5,289,294,[[1091,2,2,289,291],[1094,3,2,291,293],[1096,1,1,293,294]]],[48,6,6,294,300,[[1097,1,1,294,295],[1099,3,3,295,298],[1102,2,2,298,300]]],[49,22,16,300,316,[[1103,9,7,300,307],[1104,6,3,307,310],[1105,2,2,310,312],[1106,5,4,312,316]]],[50,5,4,316,320,[[1107,2,1,316,317],[1108,1,1,317,318],[1110,2,2,318,320]]],[54,7,7,320,327,[[1125,3,3,320,323],[1126,2,2,323,325],[1127,1,1,325,326],[1128,1,1,326,327]]],[56,6,5,327,332,[[1132,6,5,327,332]]],[57,16,14,332,346,[[1133,2,2,332,334],[1134,1,1,334,335],[1135,4,3,335,338],[1136,3,2,338,340],[1137,1,1,340,341],[1140,2,2,341,343],[1142,3,3,343,346]]],[58,10,9,346,355,[[1146,2,2,346,348],[1147,5,4,348,352],[1148,1,1,352,353],[1150,2,2,353,355]]],[59,1,1,355,356,[[1155,1,1,355,356]]],[60,2,2,356,358,[[1156,2,2,356,358]]],[61,1,1,358,359,[[1161,1,1,358,359]]],[65,25,16,359,375,[[1167,1,1,359,360],[1168,6,4,360,364],[1169,13,7,364,371],[1176,2,1,371,372],[1177,1,1,372,373],[1184,1,1,373,374],[1188,1,1,374,375]]]],[23175,23184,23209,23337,23351,23353,23354,23366,23449,23450,23469,23486,23488,23489,23507,23533,23537,23538,23539,23569,23574,23646,23655,23689,23690,23705,23715,23732,23737,23746,23748,23762,23782,23813,23815,23854,23863,23876,23916,23962,23992,23993,24035,24042,24048,24066,24072,24080,24082,24083,24093,24096,24107,24164,24175,24205,24217,24226,24321,24322,24323,24394,24430,24545,24555,24575,24577,24579,24608,24628,24679,24709,24723,24748,24762,24768,24776,24778,24860,24890,24911,24913,24918,24936,24937,24940,25022,25047,25193,25201,25202,25203,25222,25239,25240,25241,25266,25336,25339,25349,25360,25362,25385,25392,25403,25412,25429,25463,25472,25476,25477,25478,25576,25577,25579,25580,25586,25594,25605,25606,25612,25617,25623,25625,25644,25647,25709,25739,25754,25792,25821,25834,25859,25875,25883,25884,25892,25893,25894,25906,25981,26030,26040,26111,26205,26234,26241,26253,26289,26308,26311,26312,26313,26322,26395,26400,26409,26412,26419,26430,26433,26435,26496,26497,26498,26499,26506,26508,26509,26510,26513,26518,26544,26555,26587,26607,26627,26628,26636,26638,26639,26667,26670,26675,26680,26681,26682,26688,26689,26691,26692,26694,26696,26700,26706,26707,26709,26713,26714,26715,26719,26722,26723,26736,26749,26750,26752,26822,26849,26880,26884,26892,26894,26895,26913,26914,26915,26963,26966,26967,26974,26975,26976,26983,27150,27165,27166,27175,27231,27289,27315,27384,27395,27449,27459,27498,27650,27651,27655,27660,27705,27786,27918,27938,27939,27978,28095,28109,28114,28156,28157,28158,28172,28180,28181,28209,28212,28223,28317,28334,28339,28340,28341,28343,28344,28345,28347,28357,28361,28367,28374,28398,28447,28450,28541,28558,28567,28581,28596,28624,28633,28668,28692,28696,28697,28776,28837,29031,29043,29071,29072,29145,29151,29205,29222,29255,29264,29265,29347,29356,29364,29368,29369,29374,29375,29377,29381,29393,29403,29416,29422,29429,29443,29445,29456,29461,29489,29495,29552,29560,29812,29815,29825,29828,29835,29863,29886,29942,29948,29958,29961,29962,29968,29976,29989,30004,30005,30006,30017,30019,30035,30101,30102,30149,30167,30171,30282,30285,30296,30298,30307,30311,30331,30364,30366,30478,30493,30496,30592,30717,30730,30733,30743,30744,30751,30754,30756,30758,30762,30766,30767,30871,30875,30997,31092]]],["own",[4,4,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,2,2,1,3,[[1030,1,1,1,2],[1043,1,1,2,3]]],[47,1,1,3,4,[[1091,1,1,3,4]]]],[26431,27384,27827,29071]]]]},{"k":"G3451","v":[["musicians",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31015]]]]},{"k":"G3452","v":[["marrow",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30026]]]]},{"k":"G3453","v":[["instructed",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29454]]]]},{"k":"G3454","v":[["fables",[5,5,[[53,2,2,0,2,[[1119,1,1,0,1],[1122,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]],[55,1,1,3,4,[[1129,1,1,3,4]]],[60,1,1,4,5,[[1156,1,1,4,5]]]],[29700,29754,29874,29906,30495]]]]},{"k":"G3455","v":[["roareth",[1,1,[[65,1,1,0,1,[[1176,1,1,0,1]]]],[30864]]]]},{"k":"G3456","v":[["mocked",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29195]]]]},{"k":"G3457","v":[["+",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24580]]]]},{"k":"G3458","v":[["*",[4,4,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]],[65,2,2,2,4,[[1184,2,2,2,4]]]],[23733,25653,31014,31015]]],["+",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]]],[23733,25653]]],["millstone",[2,2,[[65,2,2,0,2,[[1184,2,2,0,2]]]],[31014,31015]]]]},{"k":"G3459","v":[["mill",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23998]]]]},{"k":"G3460","v":[["Myra",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27860]]]]},{"k":"G3461","v":[["*",[9,7,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,2,2,1,3,[[1036,1,1,1,2],[1038,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]],[65,4,2,5,7,[[1171,2,1,5,6],[1175,2,1,6,7]]]],[25460,27604,27684,30234,30686,30790,30856]]],["+",[5,3,[[43,1,1,0,1,[[1036,1,1,0,1]]],[65,4,2,1,3,[[1171,2,1,1,2],[1175,2,1,2,3]]]],[27604,30790,30856]]],["company",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30234]]],["multitude",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25460]]],["thousands",[2,2,[[43,1,1,0,1,[[1038,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[27684,30686]]]]},{"k":"G3462","v":[["anoint",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24762]]]]},{"k":"G3463","v":[["thousand",[3,3,[[39,1,1,0,1,[[946,1,1,0,1]]],[45,2,2,1,3,[[1065,1,1,1,2],[1075,1,1,2,3]]]],[23751,28448,28697]]]]},{"k":"G3464","v":[["*",[14,13,[[39,3,3,0,3,[[954,3,3,0,3]]],[40,2,2,3,5,[[970,2,2,3,5]]],[41,4,4,5,9,[[979,3,3,5,8],[995,1,1,8,9]]],[42,4,3,9,12,[[1007,1,1,9,10],[1008,3,2,10,12]]],[65,1,1,12,13,[[1184,1,1,12,13]]]],[24061,24063,24066,24757,24758,25232,25233,25241,25991,26525,26583,26585,31006]]],["ointment",[12,11,[[39,3,3,0,3,[[954,3,3,0,3]]],[40,2,2,3,5,[[970,2,2,3,5]]],[41,3,3,5,8,[[979,3,3,5,8]]],[42,4,3,8,11,[[1007,1,1,8,9],[1008,3,2,9,11]]]],[24061,24063,24066,24757,24758,25232,25233,25241,26525,26583,26585]]],["ointments",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[25991,31006]]]]},{"k":"G3465","v":[["Mysia",[2,2,[[43,2,2,0,2,[[1033,2,2,0,2]]]],[27490,27491]]]]},{"k":"G3466","v":[["*",[27,27,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[44,2,2,3,5,[[1056,1,1,3,4],[1061,1,1,4,5]]],[45,5,5,5,10,[[1063,1,1,5,6],[1065,1,1,6,7],[1074,1,1,7,8],[1075,1,1,8,9],[1076,1,1,9,10]]],[48,6,6,10,16,[[1097,1,1,10,11],[1099,3,3,11,14],[1101,1,1,14,15],[1102,1,1,15,16]]],[50,4,4,16,20,[[1107,2,2,16,18],[1108,1,1,18,19],[1110,1,1,19,20]]],[52,1,1,20,21,[[1117,1,1,20,21]]],[53,2,2,21,23,[[1121,2,2,21,23]]],[65,4,4,23,27,[[1167,1,1,23,24],[1176,1,1,24,25],[1183,2,2,25,27]]]],[23550,24334,25255,28234,28361,28401,28434,28667,28680,28769,29215,29254,29255,29260,29336,29356,29491,29492,29496,29545,29668,29740,29747,30717,30868,30980,30982]]],["MYSTERY",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30980]]],["mysteries",[5,5,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[45,3,3,2,5,[[1065,1,1,2,3],[1074,1,1,3,4],[1075,1,1,4,5]]]],[23550,25255,28434,28667,28680]]],["mystery",[21,21,[[40,1,1,0,1,[[960,1,1,0,1]]],[44,2,2,1,3,[[1056,1,1,1,2],[1061,1,1,2,3]]],[45,2,2,3,5,[[1063,1,1,3,4],[1076,1,1,4,5]]],[48,6,6,5,11,[[1097,1,1,5,6],[1099,3,3,6,9],[1101,1,1,9,10],[1102,1,1,10,11]]],[50,4,4,11,15,[[1107,2,2,11,13],[1108,1,1,13,14],[1110,1,1,14,15]]],[52,1,1,15,16,[[1117,1,1,15,16]]],[53,2,2,16,18,[[1121,2,2,16,18]]],[65,3,3,18,21,[[1167,1,1,18,19],[1176,1,1,19,20],[1183,1,1,20,21]]]],[24334,28234,28361,28401,28769,29215,29254,29255,29260,29336,29356,29491,29492,29496,29545,29668,29740,29747,30717,30868,30982]]]]},{"k":"G3467","v":[["off",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30488]]]]},{"k":"G3468","v":[["stripes",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30423]]]]},{"k":"G3469","v":[["*",[2,2,[[46,2,2,0,2,[[1083,1,1,0,1],[1085,1,1,1,2]]]],[28901,28952]]],["blame",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28952]]],["blamed",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28901]]]]},{"k":"G3470","v":[["blemishes",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30513]]]]},{"k":"G3471","v":[["*",[4,4,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[45,1,1,3,4,[[1062,1,1,3,4]]]],[23247,25587,27952,28383]]],["foolish",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28383]]],["fools",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27952]]],["savour",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]]],[23247,25587]]]]},{"k":"G3472","v":[["foolishness",[5,5,[[45,5,5,0,5,[[1062,3,3,0,3],[1063,1,1,3,4],[1064,1,1,4,5]]]],[28381,28384,28386,28408,28429]]]]},{"k":"G3473","v":[["talking",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29308]]]]},{"k":"G3474","v":[["*",[13,13,[[39,7,7,0,7,[[933,1,1,0,1],[935,1,1,1,2],[951,2,2,2,4],[953,3,3,4,7]]],[45,4,4,7,11,[[1062,2,2,7,9],[1064,1,1,9,10],[1065,1,1,10,11]]],[54,1,1,11,12,[[1126,1,1,11,12]]],[55,1,1,12,13,[[1131,1,1,12,13]]]],[23256,23342,23935,23937,24010,24011,24016,28388,28390,28428,28443,29850,29932]]],["fool",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]]],[23256,28428]]],["foolish",[6,6,[[39,4,4,0,4,[[935,1,1,0,1],[953,3,3,1,4]]],[54,1,1,4,5,[[1126,1,1,4,5]]],[55,1,1,5,6,[[1131,1,1,5,6]]]],[23342,24010,24011,24016,29850,29932]]],["foolishness",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28388]]],["fools",[3,3,[[39,2,2,0,2,[[951,2,2,0,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]]],[23935,23937,28443]]],["things",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28390]]]]},{"k":"G3475","v":[["*",[80,79,[[39,7,7,0,7,[[936,1,1,0,1],[945,2,2,1,3],[947,2,2,3,5],[950,1,1,5,6],[951,1,1,6,7]]],[40,8,8,7,15,[[957,1,1,7,8],[963,1,1,8,9],[965,2,2,9,11],[966,2,2,11,13],[968,2,2,13,15]]],[41,10,10,15,25,[[974,1,1,15,16],[977,1,1,16,17],[981,2,2,17,19],[988,2,2,19,21],[992,2,2,21,23],[996,2,2,23,25]]],[42,13,12,25,37,[[997,2,2,25,27],[999,1,1,27,28],[1001,2,2,28,30],[1002,1,1,30,31],[1003,4,3,31,34],[1004,1,1,34,35],[1005,2,2,35,37]]],[43,19,19,37,56,[[1020,1,1,37,38],[1023,2,2,38,40],[1024,9,9,40,49],[1030,1,1,49,50],[1032,3,3,50,53],[1038,1,1,53,54],[1043,1,1,54,55],[1045,1,1,55,56]]],[44,4,4,56,60,[[1050,1,1,56,57],[1054,1,1,57,58],[1055,2,2,58,60]]],[45,2,2,60,62,[[1070,1,1,60,61],[1071,1,1,61,62]]],[46,3,3,62,65,[[1080,3,3,62,65]]],[54,1,1,65,66,[[1127,1,1,65,66]]],[57,11,11,66,77,[[1135,4,4,66,70],[1139,1,1,70,71],[1140,1,1,71,72],[1141,1,1,72,73],[1142,1,1,73,74],[1143,2,2,74,76],[1144,1,1,76,77]]],[64,1,1,77,78,[[1166,1,1,77,78]]],[65,1,1,78,79,[[1181,1,1,78,79]]]],[23349,23703,23704,23769,23770,23896,23920,24259,24473,24542,24543,24591,24592,24692,24699,24995,25121,25331,25334,25649,25651,25807,25816,26018,26035,26061,26089,26134,26255,26256,26289,26347,26350,26351,26386,26468,26469,27018,27112,27115,27136,27138,27145,27147,27148,27151,27153,27156,27160,27401,27443,27447,27463,27685,27845,27922,28061,28170,28193,28207,28549,28569,28848,28854,28856,29861,29997,29998,30000,30011,30078,30097,30124,30161,30195,30196,30233,30681,30949]]],["Moses",[77,76,[[39,6,6,0,6,[[936,1,1,0,1],[945,2,2,1,3],[947,2,2,3,5],[950,1,1,5,6]]],[40,8,8,6,14,[[957,1,1,6,7],[963,1,1,7,8],[965,2,2,8,10],[966,2,2,10,12],[968,2,2,12,14]]],[41,10,10,14,24,[[974,1,1,14,15],[977,1,1,15,16],[981,2,2,16,18],[988,2,2,18,20],[992,2,2,20,22],[996,2,2,22,24]]],[42,12,11,24,35,[[997,2,2,24,26],[999,1,1,26,27],[1001,2,2,27,29],[1002,1,1,29,30],[1003,4,3,30,33],[1004,1,1,33,34],[1005,1,1,34,35]]],[43,19,19,35,54,[[1020,1,1,35,36],[1023,2,2,36,38],[1024,9,9,38,47],[1030,1,1,47,48],[1032,3,3,48,51],[1038,1,1,51,52],[1043,1,1,52,53],[1045,1,1,53,54]]],[44,4,4,54,58,[[1050,1,1,54,55],[1054,1,1,55,56],[1055,2,2,56,58]]],[45,2,2,58,60,[[1070,1,1,58,59],[1071,1,1,59,60]]],[46,3,3,60,63,[[1080,3,3,60,63]]],[54,1,1,63,64,[[1127,1,1,63,64]]],[57,10,10,64,74,[[1135,4,4,64,68],[1139,1,1,68,69],[1140,1,1,69,70],[1141,1,1,70,71],[1143,2,2,71,73],[1144,1,1,73,74]]],[64,1,1,74,75,[[1166,1,1,74,75]]],[65,1,1,75,76,[[1181,1,1,75,76]]]],[23349,23703,23704,23769,23770,23896,24259,24473,24542,24543,24591,24592,24692,24699,24995,25121,25331,25334,25649,25651,25807,25816,26018,26035,26061,26089,26134,26255,26256,26289,26347,26350,26351,26386,26469,27018,27112,27115,27136,27138,27145,27147,27148,27151,27153,27156,27160,27401,27443,27447,27463,27685,27845,27922,28061,28170,28193,28207,28549,28569,28848,28854,28856,29861,29997,29998,30000,30011,30078,30097,30124,30195,30196,30233,30681,30949]]],["Moses'",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[42,1,1,1,2,[[1005,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[23920,26468,30161]]]]},{"k":"G3476","v":[["Naasson",[3,2,[[39,2,1,0,1,[[929,2,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23148,25057]]]]},{"k":"G3477","v":[["Nagge",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25050]]]]},{"k":"G3478","v":[["Nazareth",[12,12,[[39,3,3,0,3,[[930,1,1,0,1],[932,1,1,1,2],[949,1,1,2,3]]],[40,1,1,3,4,[[957,1,1,3,4]]],[41,5,5,4,9,[[973,1,1,4,5],[974,3,3,5,8],[976,1,1,8,9]]],[42,2,2,9,11,[[997,2,2,9,11]]],[43,1,1,11,12,[[1027,1,1,11,12]]]],[23192,23222,23837,24224,24919,24977,25012,25024,25079,26089,26090,27297]]]]},{"k":"G3479","v":[["Nazareth",[4,4,[[40,3,3,0,3,[[957,1,1,0,1],[970,1,1,1,2],[972,1,1,2,3]]],[41,1,1,3,4,[[976,1,1,3,4]]]],[24239,24821,24879,25097]]]]},{"k":"G3480","v":[["*",[15,15,[[39,2,2,0,2,[[930,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[966,1,1,2,3]]],[41,2,2,3,5,[[990,1,1,3,4],[996,1,1,4,5]]],[42,3,3,5,8,[[1014,2,2,5,7],[1015,1,1,7,8]]],[43,7,7,8,15,[[1019,1,1,8,9],[1020,1,1,9,10],[1021,1,1,10,11],[1023,1,1,11,12],[1039,1,1,12,13],[1041,1,1,13,14],[1043,1,1,14,15]]]],[23192,24125,24635,25725,26010,26790,26792,26844,26971,27002,27032,27115,27712,27774,27832]]],["NAZARETH",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26844]]],["Nazarene",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23192]]],["Nazarenes",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27774]]],["Nazareth",[12,12,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,2,2,2,4,[[990,1,1,2,3],[996,1,1,3,4]]],[42,2,2,4,6,[[1014,2,2,4,6]]],[43,6,6,6,12,[[1019,1,1,6,7],[1020,1,1,7,8],[1021,1,1,8,9],[1023,1,1,9,10],[1039,1,1,10,11],[1043,1,1,11,12]]]],[24125,24635,25725,26010,26790,26792,26971,27002,27032,27115,27712,27832]]]]},{"k":"G3481","v":[["Nathan",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25056]]]]},{"k":"G3482","v":[["Nathanael",[6,6,[[42,6,6,0,6,[[997,5,5,0,5],[1017,1,1,5,6]]]],[26089,26090,26091,26092,26093,26900]]]]},{"k":"G3483","v":[["*",[34,29,[[39,9,8,0,8,[[933,2,1,0,1],[937,1,1,1,2],[939,2,2,2,4],[941,1,1,4,5],[943,1,1,5,6],[945,1,1,6,7],[949,1,1,7,8]]],[40,1,1,8,9,[[963,1,1,8,9]]],[41,4,4,9,13,[[979,1,1,9,10],[982,1,1,10,11],[983,1,1,11,12],[984,1,1,12,13]]],[42,3,3,13,16,[[1007,1,1,13,14],[1017,2,2,14,16]]],[43,2,2,16,18,[[1022,1,1,16,17],[1039,1,1,17,18]]],[44,1,1,18,19,[[1048,1,1,18,19]]],[46,6,4,19,23,[[1078,6,4,19,23]]],[56,1,1,23,24,[[1132,1,1,23,24]]],[58,2,1,24,25,[[1150,2,1,24,25]]],[65,5,4,25,29,[[1167,1,1,25,26],[1180,1,1,26,27],[1182,1,1,27,28],[1188,2,1,28,29]]]],[23271,23407,23468,23485,23590,23660,23725,23842,24491,25221,25384,25456,25464,26550,26913,26914,27067,27731,28020,28817,28818,28819,28820,29958,30366,30704,30939,30961,31100]]],["+",[2,2,[[46,2,2,0,2,[[1078,2,2,0,2]]]],[28818,28819]]],["Surely",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31100]]],["Truth",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23660]]],["Yea",[12,12,[[39,4,4,0,4,[[933,1,1,0,1],[937,1,1,1,2],[941,1,1,2,3],[949,1,1,3,4]]],[41,1,1,4,5,[[979,1,1,4,5]]],[42,3,3,5,8,[[1007,1,1,5,6],[1017,2,2,6,8]]],[43,2,2,8,10,[[1022,1,1,8,9],[1039,1,1,9,10]]],[56,1,1,10,11,[[1132,1,1,10,11]]],[65,1,1,11,12,[[1180,1,1,11,12]]]],[23271,23407,23590,23842,25221,26550,26913,26914,27067,27731,29958,30939]]],["Yes",[3,3,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]]],[23725,24491,28020]]],["so",[5,5,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[65,3,3,2,5,[[1167,1,1,2,3],[1182,1,1,3,4],[1188,1,1,4,5]]]],[23485,25384,30704,30961,31100]]],["verily",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25456]]],["yea",[9,7,[[39,2,2,0,2,[[933,1,1,0,1],[939,1,1,1,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[46,4,3,3,6,[[1078,4,3,3,6]]],[58,2,1,6,7,[[1150,2,1,6,7]]]],[23271,23468,25464,28817,28819,28820,30366]]]]},{"k":"G3484","v":[["Nain",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25206]]]]},{"k":"G3485","v":[["*",[46,40,[[39,9,8,0,8,[[951,5,4,0,4],[954,1,1,4,5],[955,3,3,5,8]]],[40,3,3,8,11,[[970,1,1,8,9],[971,2,2,9,11]]],[41,4,4,11,15,[[973,3,3,11,14],[995,1,1,14,15]]],[42,3,3,15,18,[[998,3,3,15,18]]],[43,3,3,18,21,[[1024,1,1,18,19],[1034,1,1,19,20],[1036,1,1,20,21]]],[45,4,3,21,24,[[1064,3,2,21,23],[1067,1,1,23,24]]],[46,2,1,24,25,[[1083,2,1,24,25]]],[48,1,1,25,26,[[1098,1,1,25,26]]],[52,1,1,26,27,[[1117,1,1,26,27]]],[65,16,13,27,40,[[1169,1,1,27,28],[1173,1,1,28,29],[1177,4,3,29,32],[1180,2,2,32,34],[1181,4,3,34,37],[1182,2,2,37,39],[1187,2,1,39,40]]]],[23934,23935,23939,23953,24115,24134,24169,24180,24812,24855,24864,24902,24914,24915,25980,26114,26115,26116,27164,27547,27609,28426,28427,28486,28914,29250,29665,30758,30825,30873,30874,30891,30941,30943,30951,30952,30954,30955,30971,31075]]],["+",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26115]]],["shrines",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27609]]],["temple",[42,36,[[39,9,8,0,8,[[951,5,4,0,4],[954,1,1,4,5],[955,3,3,5,8]]],[40,3,3,8,11,[[970,1,1,8,9],[971,2,2,9,11]]],[41,4,4,11,15,[[973,3,3,11,14],[995,1,1,14,15]]],[42,2,2,15,17,[[998,2,2,15,17]]],[45,4,3,17,20,[[1064,3,2,17,19],[1067,1,1,19,20]]],[46,2,1,20,21,[[1083,2,1,20,21]]],[48,1,1,21,22,[[1098,1,1,21,22]]],[52,1,1,22,23,[[1117,1,1,22,23]]],[65,16,13,23,36,[[1169,1,1,23,24],[1173,1,1,24,25],[1177,4,3,25,28],[1180,2,2,28,30],[1181,4,3,30,33],[1182,2,2,33,35],[1187,2,1,35,36]]]],[23934,23935,23939,23953,24115,24134,24169,24180,24812,24855,24864,24902,24914,24915,25980,26114,26116,28426,28427,28486,28914,29250,29665,30758,30825,30873,30874,30891,30941,30943,30951,30952,30954,30955,30971,31075]]],["temples",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1034,1,1,1,2]]]],[27164,27547]]]]},{"k":"G3486","v":[["Naum",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25050]]]]},{"k":"G3487","v":[["+",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]]],[24757,26583]]]]},{"k":"G3488","v":[["Narcissus",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28347]]]]},{"k":"G3489","v":[["shipwreck",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]]],[29014,29715]]]]},{"k":"G3490","v":[["ship",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27866]]]]},{"k":"G3491","v":[["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27896]]]]},{"k":"G3492","v":[["*",[3,3,[[43,2,2,0,2,[[1044,2,2,0,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[27882,27885,31010]]],["sailors",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31010]]],["shipmen",[2,2,[[43,2,2,0,2,[[1044,2,2,0,2]]]],[27882,27885]]]]},{"k":"G3493","v":[["Nachor",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25059]]]]},{"k":"G3494","v":[["*",[5,5,[[43,5,5,0,5,[[1024,1,1,0,1],[1037,1,1,1,2],[1040,3,3,2,5]]]],[27174,27635,27751,27752,27756]]],["+",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27756]]],["man",[3,3,[[43,3,3,0,3,[[1037,1,1,0,1],[1040,2,2,1,3]]]],[27635,27751,27752]]],["man's",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27174]]]]},{"k":"G3495","v":[["*",[10,9,[[39,2,2,0,2,[[947,2,2,0,2]]],[40,3,2,2,4,[[970,2,1,2,3],[972,1,1,3,4]]],[41,1,1,4,5,[[979,1,1,4,5]]],[43,2,2,5,7,[[1019,1,1,5,6],[1022,1,1,6,7]]],[61,2,2,7,9,[[1160,2,2,7,9]]]],[23782,23784,24805,24878,25209,26966,27069,30563,30564]]],["man",[5,5,[[39,2,2,0,2,[[947,2,2,0,2]]],[40,2,2,2,4,[[970,1,1,2,3],[972,1,1,3,4]]],[41,1,1,4,5,[[979,1,1,4,5]]]],[23782,23784,24805,24878,25209]]],["men",[5,5,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,2,2,1,3,[[1019,1,1,1,2],[1022,1,1,2,3]]],[61,2,2,3,5,[[1160,2,2,3,5]]]],[24805,26966,27069,30563,30564]]]]},{"k":"G3496","v":[["Neapolis",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27494]]]]},{"k":"G3497","v":[["Naaman",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25090]]]]},{"k":"G3498","v":[["*",[132,123,[[39,12,11,0,11,[[936,2,1,0,1],[938,1,1,1,2],[939,1,1,2,3],[942,1,1,3,4],[945,1,1,4,5],[950,2,2,5,7],[951,1,1,7,8],[955,1,1,8,9],[956,2,2,9,11]]],[40,8,8,11,19,[[962,2,2,11,13],[965,3,3,13,16],[968,3,3,16,19]]],[41,14,13,19,32,[[979,2,2,19,21],[981,3,2,21,23],[987,2,2,23,25],[988,2,2,25,27],[992,3,3,27,30],[996,2,2,30,32]]],[42,8,8,32,40,[[998,1,1,32,33],[1001,2,2,33,35],[1008,3,3,35,38],[1016,1,1,38,39],[1017,1,1,39,40]]],[43,18,18,40,58,[[1020,1,1,40,41],[1021,2,2,41,43],[1022,1,1,43,44],[1027,2,2,44,46],[1030,2,2,46,48],[1034,3,3,48,51],[1037,1,1,51,52],[1040,1,1,52,53],[1041,2,2,53,55],[1043,2,2,55,57],[1045,1,1,57,58]]],[44,16,15,58,73,[[1046,1,1,58,59],[1049,2,2,59,61],[1051,4,4,61,65],[1052,2,2,65,67],[1053,3,2,67,69],[1055,2,2,69,71],[1056,1,1,71,72],[1059,1,1,72,73]]],[45,14,11,73,84,[[1076,14,11,73,84]]],[46,1,1,84,85,[[1078,1,1,84,85]]],[47,1,1,85,86,[[1091,1,1,85,86]]],[48,4,4,86,90,[[1097,1,1,86,87],[1098,2,2,87,89],[1101,1,1,89,90]]],[49,1,1,90,91,[[1105,1,1,90,91]]],[50,3,3,91,94,[[1107,1,1,91,92],[1108,2,2,92,94]]],[51,2,2,94,96,[[1111,1,1,94,95],[1114,1,1,95,96]]],[54,2,2,96,98,[[1126,1,1,96,97],[1128,1,1,97,98]]],[57,7,7,98,105,[[1138,2,2,98,100],[1141,2,2,100,102],[1143,2,2,102,104],[1145,1,1,104,105]]],[58,4,3,105,108,[[1147,4,3,105,108]]],[59,4,4,108,112,[[1151,2,2,108,110],[1154,2,2,110,112]]],[65,13,11,112,123,[[1167,3,3,112,115],[1168,1,1,115,116],[1169,1,1,116,117],[1177,1,1,117,118],[1180,1,1,118,119],[1182,1,1,119,120],[1186,5,3,120,123]]]],[23367,23425,23464,23599,23709,23903,23904,23945,24193,24199,24202,24421,24423,24547,24548,24564,24698,24699,24700,25210,25217,25308,25361,25612,25620,25650,25651,25814,25816,25817,25996,26037,26117,26231,26235,26581,26589,26597,26876,26912,27011,27024,27032,27069,27300,27301,27392,27396,27526,27554,27555,27635,27740,27784,27790,27831,27846,27905,27934,28039,28046,28072,28077,28079,28081,28095,28099,28126,28127,28195,28197,28224,28289,28730,28731,28733,28734,28738,28739,28747,28750,28753,28760,28770,28809,29058,29226,29230,29234,29318,29432,29483,29506,29507,29570,29619,29835,29871,30045,30046,30119,30122,30191,30207,30261,30310,30313,30319,30377,30395,30451,30452,30702,30714,30715,30725,30747,30890,30939,30957,31043,31050,31051]]],["+",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30122]]],["dead",[131,122,[[39,12,11,0,11,[[936,2,1,0,1],[938,1,1,1,2],[939,1,1,2,3],[942,1,1,3,4],[945,1,1,4,5],[950,2,2,5,7],[951,1,1,7,8],[955,1,1,8,9],[956,2,2,9,11]]],[40,8,8,11,19,[[962,2,2,11,13],[965,3,3,13,16],[968,3,3,16,19]]],[41,14,13,19,32,[[979,2,2,19,21],[981,3,2,21,23],[987,2,2,23,25],[988,2,2,25,27],[992,3,3,27,30],[996,2,2,30,32]]],[42,8,8,32,40,[[998,1,1,32,33],[1001,2,2,33,35],[1008,3,3,35,38],[1016,1,1,38,39],[1017,1,1,39,40]]],[43,18,18,40,58,[[1020,1,1,40,41],[1021,2,2,41,43],[1022,1,1,43,44],[1027,2,2,44,46],[1030,2,2,46,48],[1034,3,3,48,51],[1037,1,1,51,52],[1040,1,1,52,53],[1041,2,2,53,55],[1043,2,2,55,57],[1045,1,1,57,58]]],[44,16,15,58,73,[[1046,1,1,58,59],[1049,2,2,59,61],[1051,4,4,61,65],[1052,2,2,65,67],[1053,3,2,67,69],[1055,2,2,69,71],[1056,1,1,71,72],[1059,1,1,72,73]]],[45,14,11,73,84,[[1076,14,11,73,84]]],[46,1,1,84,85,[[1078,1,1,84,85]]],[47,1,1,85,86,[[1091,1,1,85,86]]],[48,4,4,86,90,[[1097,1,1,86,87],[1098,2,2,87,89],[1101,1,1,89,90]]],[49,1,1,90,91,[[1105,1,1,90,91]]],[50,3,3,91,94,[[1107,1,1,91,92],[1108,2,2,92,94]]],[51,2,2,94,96,[[1111,1,1,94,95],[1114,1,1,95,96]]],[54,2,2,96,98,[[1126,1,1,96,97],[1128,1,1,97,98]]],[57,6,6,98,104,[[1138,2,2,98,100],[1141,1,1,100,101],[1143,2,2,101,103],[1145,1,1,103,104]]],[58,4,3,104,107,[[1147,4,3,104,107]]],[59,4,4,107,111,[[1151,2,2,107,109],[1154,2,2,109,111]]],[65,13,11,111,122,[[1167,3,3,111,114],[1168,1,1,114,115],[1169,1,1,115,116],[1177,1,1,116,117],[1180,1,1,117,118],[1182,1,1,118,119],[1186,5,3,119,122]]]],[23367,23425,23464,23599,23709,23903,23904,23945,24193,24199,24202,24421,24423,24547,24548,24564,24698,24699,24700,25210,25217,25308,25361,25612,25620,25650,25651,25814,25816,25817,25996,26037,26117,26231,26235,26581,26589,26597,26876,26912,27011,27024,27032,27069,27300,27301,27392,27396,27526,27554,27555,27635,27740,27784,27790,27831,27846,27905,27934,28039,28046,28072,28077,28079,28081,28095,28099,28126,28127,28195,28197,28224,28289,28730,28731,28733,28734,28738,28739,28747,28750,28753,28760,28770,28809,29058,29226,29230,29234,29318,29432,29483,29506,29507,29570,29619,29835,29871,30045,30046,30119,30191,30207,30261,30310,30313,30319,30377,30395,30451,30452,30702,30714,30715,30725,30747,30890,30939,30957,31043,31050,31051]]]]},{"k":"G3499","v":[["*",[3,3,[[44,1,1,0,1,[[1049,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[28041,29522,30184]]],["Mortify",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29522]]],["dead",[2,2,[[44,1,1,0,1,[[1049,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[28041,30184]]]]},{"k":"G3500","v":[["*",[2,2,[[44,1,1,0,1,[[1049,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]]],[28041,28869]]],["deadness",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28041]]],["dying",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28869]]]]},{"k":"G3501","v":[["*",[24,20,[[39,2,1,0,1,[[937,2,1,0,1]]],[40,3,1,1,2,[[958,3,1,1,2]]],[41,7,6,2,8,[[977,4,3,2,5],[987,2,2,5,7],[994,1,1,7,8]]],[42,1,1,8,9,[[1017,1,1,8,9]]],[43,1,1,9,10,[[1022,1,1,9,10]]],[45,1,1,10,11,[[1066,1,1,10,11]]],[50,1,1,11,12,[[1109,1,1,11,12]]],[53,4,4,12,16,[[1123,4,4,12,16]]],[55,2,2,16,18,[[1130,2,2,16,18]]],[57,1,1,18,19,[[1144,1,1,18,19]]],[59,1,1,19,20,[[1155,1,1,19,20]]]],[23396,24282,25144,25145,25146,25600,25601,25890,26916,27065,28461,29527,29764,29765,29774,29777,29912,29914,30236,30470]]],["+",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29912]]],["men",[3,3,[[43,1,1,0,1,[[1022,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]],[55,1,1,2,3,[[1130,1,1,2,3]]]],[27065,29764,29914]]],["new",[12,8,[[39,2,1,0,1,[[937,2,1,0,1]]],[40,3,1,1,2,[[958,3,1,1,2]]],[41,4,3,2,5,[[977,4,3,2,5]]],[45,1,1,5,6,[[1066,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[57,1,1,7,8,[[1144,1,1,7,8]]]],[23396,24282,25144,25145,25146,28461,29527,30236]]],["women",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29777]]],["young",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26916]]],["younger",[6,6,[[41,3,3,0,3,[[987,2,2,0,2],[994,1,1,2,3]]],[53,2,2,3,5,[[1123,2,2,3,5]]],[59,1,1,5,6,[[1155,1,1,5,6]]]],[25600,25601,25890,29765,29774,30470]]]]},{"k":"G3502","v":[["young",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24997]]]]},{"k":"G3503","v":[["youth",[5,5,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[43,1,1,3,4,[[1043,1,1,3,4]]],[53,1,1,4,5,[[1122,1,1,4,5]]]],[23782,24608,25709,27827,29759]]]]},{"k":"G3504","v":[["novice",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29737]]]]},{"k":"G3505","v":[]},{"k":"G3506","v":[["beckoned",[2,2,[[42,1,1,0,1,[[1009,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]]],[26654,27779]]]]},{"k":"G3507","v":[["*",[26,22,[[39,4,3,0,3,[[945,2,1,0,1],[952,1,1,1,2],[954,1,1,2,3]]],[40,4,3,3,6,[[965,2,1,3,4],[969,1,1,4,5],[970,1,1,5,6]]],[41,5,4,6,10,[[981,3,2,6,8],[984,1,1,8,9],[993,1,1,9,10]]],[43,1,1,10,11,[[1018,1,1,10,11]]],[45,2,2,11,13,[[1071,2,2,11,13]]],[51,1,1,13,14,[[1114,1,1,13,14]]],[60,1,1,14,15,[[1157,1,1,14,15]]],[64,1,1,15,16,[[1166,1,1,15,16]]],[65,7,6,16,22,[[1167,1,1,16,17],[1176,1,1,17,18],[1177,1,1,18,19],[1180,4,3,19,22]]]],[23705,23987,24118,24545,24743,24816,25335,25336,25513,25853,26932,28568,28569,29620,30517,30684,30704,30862,30884,30940,30941,30942]]],["cloud",[18,14,[[39,2,1,0,1,[[945,2,1,0,1]]],[40,2,1,1,2,[[965,2,1,1,2]]],[41,5,4,2,6,[[981,3,2,2,4],[984,1,1,4,5],[993,1,1,5,6]]],[43,1,1,6,7,[[1018,1,1,6,7]]],[45,2,2,7,9,[[1071,2,2,7,9]]],[65,6,5,9,14,[[1176,1,1,9,10],[1177,1,1,10,11],[1180,4,3,11,14]]]],[23705,24545,25335,25336,25513,25853,26932,28568,28569,30862,30884,30940,30941,30942]]],["clouds",[8,8,[[39,2,2,0,2,[[952,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[969,1,1,2,3],[970,1,1,3,4]]],[51,1,1,4,5,[[1114,1,1,4,5]]],[60,1,1,5,6,[[1157,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]],[65,1,1,7,8,[[1167,1,1,7,8]]]],[23987,24118,24743,24816,29620,30517,30684,30704]]]]},{"k":"G3508","v":[["*",[3,3,[[39,2,2,0,2,[[932,2,2,0,2]]],[65,1,1,2,3,[[1173,1,1,2,3]]]],[23222,23224,30816]]],["Nephthalim",[2,2,[[39,2,2,0,2,[[932,2,2,0,2]]]],[23222,23224]]],["Nepthalim",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30816]]]]},{"k":"G3509","v":[["cloud",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30213]]]]},{"k":"G3510","v":[["reins",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30740]]]]},{"k":"G3511","v":[["worshipper",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27620]]]]},{"k":"G3512","v":[["youthful",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29849]]]]},{"k":"G3513","v":[["protest",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28749]]]]},{"k":"G3514","v":[["spin",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23310,25486]]]]},{"k":"G3515","v":[["children",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28698]]]]},{"k":"G3516","v":[["*",[14,10,[[39,2,2,0,2,[[939,1,1,0,1],[949,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[44,1,1,3,4,[[1047,1,1,3,4]]],[45,6,2,4,6,[[1064,1,1,4,5],[1074,5,1,5,6]]],[47,2,2,6,8,[[1094,2,2,6,8]]],[48,1,1,8,9,[[1100,1,1,8,9]]],[57,1,1,9,10,[[1137,1,1,9,10]]]],[23484,23842,25384,27982,28411,28676,29132,29134,29286,30043]]],["+",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28676]]],["babe",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30043]]],["babes",[5,5,[[39,2,2,0,2,[[939,1,1,0,1],[949,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[44,1,1,3,4,[[1047,1,1,3,4]]],[45,1,1,4,5,[[1064,1,1,4,5]]]],[23484,23842,25384,27982,28411]]],["child",[5,2,[[45,4,1,0,1,[[1074,4,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]]],[28676,29132]]],["children",[2,2,[[47,1,1,0,1,[[1094,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[29134,29286]]]]},{"k":"G3517","v":[["Nereus",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28351]]]]},{"k":"G3518","v":[["Neri",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25052]]]]},{"k":"G3519","v":[["island",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27871]]]]},{"k":"G3520","v":[["*",[9,9,[[43,6,6,0,6,[[1030,1,1,0,1],[1044,1,1,1,2],[1045,4,4,2,6]]],[65,3,3,6,9,[[1167,1,1,6,7],[1172,1,1,7,8],[1182,1,1,8,9]]]],[27368,27881,27900,27906,27908,27910,30706,30807,30974]]],["island",[6,6,[[43,4,4,0,4,[[1044,1,1,0,1],[1045,3,3,1,4]]],[65,2,2,4,6,[[1172,1,1,4,5],[1182,1,1,5,6]]]],[27881,27900,27906,27908,30807,30974]]],["isle",[3,3,[[43,2,2,0,2,[[1030,1,1,0,1],[1045,1,1,1,2]]],[65,1,1,2,3,[[1167,1,1,2,3]]]],[27368,27910,30706]]]]},{"k":"G3521","v":[["*",[8,8,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,1,1,2,3,[[974,1,1,2,3]]],[43,2,2,3,5,[[1031,1,1,3,4],[1044,1,1,4,5]]],[45,1,1,5,6,[[1068,1,1,5,6]]],[46,2,2,6,8,[[1083,1,1,6,7],[1088,1,1,7,8]]]],[23721,24567,25010,27437,27864,28492,28903,29016]]],["fast",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27864]]],["fasting",[4,4,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[43,1,1,2,3,[[1031,1,1,2,3]]],[45,1,1,3,4,[[1068,1,1,3,4]]]],[23721,24567,27437,28492]]],["fastings",[3,3,[[41,1,1,0,1,[[974,1,1,0,1]]],[46,2,2,1,3,[[1083,1,1,1,2],[1088,1,1,2,3]]]],[25010,28903,29016]]]]},{"k":"G3522","v":[["*",[21,16,[[39,8,6,0,6,[[932,1,1,0,1],[934,4,3,1,4],[937,3,2,4,6]]],[40,6,3,6,9,[[958,6,3,6,9]]],[41,4,4,9,13,[[977,3,3,9,12],[990,1,1,12,13]]],[43,3,3,13,16,[[1027,1,1,13,14],[1030,2,2,14,16]]]],[23211,23298,23299,23300,23393,23394,24278,24279,24280,25140,25141,25142,25700,27289,27364,27365]]],["+",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24278]]],["fast",[15,11,[[39,6,4,0,4,[[934,3,2,0,2],[937,3,2,2,4]]],[40,5,3,4,7,[[958,5,3,4,7]]],[41,4,4,7,11,[[977,3,3,7,10],[990,1,1,10,11]]]],[23298,23300,23393,23394,24278,24279,24280,25140,25141,25142,25700]]],["fasted",[3,3,[[39,1,1,0,1,[[932,1,1,0,1]]],[43,2,2,1,3,[[1030,2,2,1,3]]]],[23211,27364,27365]]],["fastest",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23299]]],["fasting",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27289]]]]},{"k":"G3523","v":[["fasting",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]]],[23665,24503]]]]},{"k":"G3524","v":[["*",[3,3,[[53,2,2,0,2,[[1121,2,2,0,2]]],[55,1,1,2,3,[[1130,1,1,2,3]]]],[29733,29742,29910]]],["sober",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]]],[29742,29910]]],["vigilant",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29733]]]]},{"k":"G3525","v":[["*",[6,6,[[51,2,2,0,2,[[1115,2,2,0,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]],[59,3,3,3,6,[[1151,1,1,3,4],[1154,1,1,4,5],[1155,1,1,5,6]]]],[29627,29629,29875,30387,30453,30473]]],["sober",[4,4,[[51,2,2,0,2,[[1115,2,2,0,2]]],[59,2,2,2,4,[[1151,1,1,2,3],[1155,1,1,3,4]]]],[29627,29629,30387,30473]]],["watch",[2,2,[[54,1,1,0,1,[[1128,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[29875,30453]]]]},{"k":"G3526","v":[["Niger",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27363]]]]},{"k":"G3527","v":[["Nicanor",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27106]]]]},{"k":"G3528","v":[["*",[28,24,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,1,1,1,2,[[1012,1,1,1,2]]],[44,3,2,2,4,[[1048,1,1,2,3],[1057,2,1,3,4]]],[61,6,5,4,9,[[1160,2,2,4,6],[1162,1,1,6,7],[1163,3,2,7,9]]],[65,17,15,9,24,[[1168,4,4,9,13],[1169,4,3,13,16],[1171,1,1,16,17],[1172,2,1,17,18],[1177,1,1,18,19],[1178,1,1,19,20],[1179,1,1,20,21],[1181,1,1,21,22],[1183,1,1,22,23],[1187,1,1,23,24]]]],[25427,26759,27995,28266,30563,30564,30607,30628,30629,30724,30728,30734,30743,30751,30758,30767,30784,30795,30879,30902,30915,30948,30989,31060]]],["conquer",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30795]]],["conquering",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30795]]],["overcame",[2,2,[[65,2,2,0,2,[[1169,1,1,0,1],[1178,1,1,1,2]]]],[30767,30902]]],["overcome",[11,10,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,1,1,1,2,[[1012,1,1,1,2]]],[44,3,2,2,4,[[1048,1,1,2,3],[1057,2,1,3,4]]],[61,3,3,4,7,[[1160,2,2,4,6],[1162,1,1,6,7]]],[65,3,3,7,10,[[1177,1,1,7,8],[1179,1,1,8,9],[1183,1,1,9,10]]]],[25427,26759,27995,28266,30563,30564,30607,30879,30915,30989]]],["overcometh",[11,10,[[61,3,2,0,2,[[1163,3,2,0,2]]],[65,8,8,2,10,[[1168,4,4,2,6],[1169,3,3,6,9],[1187,1,1,9,10]]]],[30628,30629,30724,30728,30734,30743,30751,30758,30767,31060]]],["prevailed",[1,1,[[65,1,1,0,1,[[1171,1,1,0,1]]]],[30784]]],["victory",[1,1,[[65,1,1,0,1,[[1181,1,1,0,1]]]],[30948]]]]},{"k":"G3529","v":[["victory",[1,1,[[61,1,1,0,1,[[1163,1,1,0,1]]]],[30628]]]]},{"k":"G3530","v":[["Nicodemus",[5,5,[[42,5,5,0,5,[[999,3,3,0,3],[1003,1,1,3,4],[1015,1,1,4,5]]]],[26121,26124,26129,26378,26864]]]]},{"k":"G3531","v":[["Nicolaitans",[2,2,[[65,2,2,0,2,[[1168,2,2,0,2]]]],[30723,30732]]]]},{"k":"G3532","v":[["Nicolas",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27106]]]]},{"k":"G3533","v":[["Nicopolis",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29935]]]]},{"k":"G3534","v":[["victory",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[45,3,3,1,4,[[1076,3,3,1,4]]]],[23509,28772,28773,28775]]]]},{"k":"G3535","v":[["Nineve",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25437]]]]},{"k":"G3536","v":[["*",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23530,25435]]],["Nineveh",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23530]]],["Ninevites",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25435]]]]},{"k":"G3537","v":[["bason",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26635]]]]},{"k":"G3538","v":[["*",[17,13,[[39,2,2,0,2,[[934,1,1,0,1],[943,1,1,1,2]]],[40,1,1,2,3,[[963,1,1,2,3]]],[42,13,9,3,12,[[1005,5,3,3,6],[1009,8,6,6,12]]],[53,1,1,12,13,[[1123,1,1,12,13]]]],[23299,23635,24466,26447,26451,26455,26635,26636,26638,26640,26642,26644,29773]]],["wash",[11,10,[[39,2,2,0,2,[[934,1,1,0,1],[943,1,1,1,2]]],[40,1,1,2,3,[[963,1,1,2,3]]],[42,8,7,3,10,[[1005,2,2,3,5],[1009,6,5,5,10]]]],[23299,23635,24466,26447,26451,26635,26636,26638,26640,26644]]],["washed",[6,6,[[42,5,5,0,5,[[1005,3,3,0,3],[1009,2,2,3,5]]],[53,1,1,5,6,[[1123,1,1,5,6]]]],[26447,26451,26455,26642,26644,29773]]]]},{"k":"G3539","v":[["*",[14,14,[[39,4,4,0,4,[[943,1,1,0,1],[944,2,2,1,3],[952,1,1,3,4]]],[40,3,3,4,7,[[963,1,1,4,5],[964,1,1,5,6],[969,1,1,6,7]]],[42,1,1,7,8,[[1008,1,1,7,8]]],[44,1,1,8,9,[[1046,1,1,8,9]]],[48,2,2,9,11,[[1099,2,2,9,11]]],[53,1,1,11,12,[[1119,1,1,11,12]]],[54,1,1,12,13,[[1126,1,1,12,13]]],[57,1,1,13,14,[[1143,1,1,13,14]]]],[23650,23681,23683,23972,24481,24517,24731,26620,27950,29255,29271,29703,29834,30175]]],["Consider",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29834]]],["perceive",[2,2,[[40,2,2,0,2,[[963,1,1,0,1],[964,1,1,1,2]]]],[24481,24517]]],["think",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29271]]],["understand",[8,8,[[39,4,4,0,4,[[943,1,1,0,1],[944,2,2,1,3],[952,1,1,3,4]]],[40,1,1,4,5,[[969,1,1,4,5]]],[42,1,1,5,6,[[1008,1,1,5,6]]],[48,1,1,6,7,[[1099,1,1,6,7]]],[57,1,1,7,8,[[1143,1,1,7,8]]]],[23650,23681,23683,23972,24731,26620,29255,30175]]],["understanding",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29703]]],["understood",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27950]]]]},{"k":"G3540","v":[["*",[6,6,[[46,5,5,0,5,[[1079,1,1,0,1],[1080,1,1,1,2],[1081,1,1,2,3],[1087,1,1,3,4],[1088,1,1,4,5]]],[49,1,1,5,6,[[1106,1,1,5,6]]]],[28835,28855,28863,28976,28992,29449]]],["devices",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28835]]],["minds",[4,4,[[46,3,3,0,3,[[1080,1,1,0,1],[1081,1,1,1,2],[1088,1,1,2,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]]],[28855,28863,28992,29449]]],["thought",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28976]]]]},{"k":"G3541","v":[["bastards",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30220]]]]},{"k":"G3542","v":[["*",[2,2,[[42,1,1,0,1,[[1006,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[26490,29844]]],["+",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29844]]],["pasture",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26490]]]]},{"k":"G3543","v":[["*",[15,15,[[39,3,3,0,3,[[933,1,1,0,1],[938,1,1,1,2],[948,1,1,2,3]]],[41,2,2,3,5,[[974,1,1,3,4],[975,1,1,4,5]]],[43,7,7,5,12,[[1024,1,1,5,6],[1025,1,1,6,7],[1031,1,1,7,8],[1033,2,2,8,10],[1034,1,1,10,11],[1038,1,1,11,12]]],[45,2,2,12,14,[[1068,2,2,12,14]]],[53,1,1,14,15,[[1124,1,1,14,15]]]],[23251,23451,23802,25017,25048,27141,27196,27433,27496,27510,27552,27693,28513,28523,29793]]],["Think",[2,2,[[39,2,2,0,2,[[933,1,1,0,1],[938,1,1,1,2]]]],[23251,23451]]],["suppose",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28513]]],["supposed",[4,4,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[43,2,2,2,4,[[1024,1,1,2,3],[1038,1,1,3,4]]]],[23802,25048,27141,27693]]],["supposing",[4,4,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,2,2,1,3,[[1031,1,1,1,2],[1033,1,1,2,3]]],[53,1,1,3,4,[[1124,1,1,3,4]]]],[25017,27433,27510,29793]]],["think",[2,2,[[43,1,1,0,1,[[1034,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[27552,28523]]],["thought",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27196]]],["wont",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27496]]]]},{"k":"G3544","v":[["*",[9,9,[[39,1,1,0,1,[[950,1,1,0,1]]],[41,6,6,1,7,[[979,1,1,1,2],[982,1,1,2,3],[983,3,3,3,6],[986,1,1,6,7]]],[55,2,2,7,9,[[1131,2,2,7,9]]]],[23907,25225,25388,25450,25451,25457,25556,29932,29936]]],["+",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29936]]],["law",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29932]]],["lawyer",[2,2,[[39,1,1,0,1,[[950,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[23907,25388]]],["lawyers",[5,5,[[41,5,5,0,5,[[979,1,1,0,1],[983,3,3,1,4],[986,1,1,4,5]]]],[25225,25450,25451,25457,25556]]]]},{"k":"G3545","v":[["lawfully",[2,2,[[53,1,1,0,1,[[1119,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[29704,29832]]]]},{"k":"G3546","v":[["money",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23891]]]]},{"k":"G3547","v":[["law",[3,3,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]],[53,1,1,2,3,[[1119,1,1,2,3]]]],[25124,27093,29703]]]]},{"k":"G3548","v":[["law",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28159]]]]},{"k":"G3549","v":[["*",[2,2,[[57,2,2,0,2,[[1139,1,1,0,1],[1140,1,1,1,2]]]],[30075,30098]]],["established",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30098]]],["law",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30075]]]]},{"k":"G3550","v":[["lawgiver",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30349]]]]},{"k":"G3551","v":[["*",[197,158,[[39,8,8,0,8,[[933,2,2,0,2],[935,1,1,2,3],[939,1,1,3,4],[940,1,1,4,5],[950,2,2,5,7],[951,1,1,7,8]]],[41,9,9,8,17,[[974,5,5,8,13],[982,1,1,13,14],[988,2,2,14,16],[996,1,1,16,17]]],[42,15,13,17,30,[[997,2,2,17,19],[1003,5,4,19,23],[1004,2,2,23,25],[1006,1,1,25,26],[1008,1,1,26,27],[1011,1,1,27,28],[1014,1,1,28,29],[1015,2,1,29,30]]],[43,19,19,30,49,[[1023,1,1,30,31],[1024,1,1,31,32],[1030,2,2,32,34],[1032,2,2,34,36],[1035,2,2,36,38],[1038,3,3,38,41],[1039,2,2,41,43],[1040,2,2,43,45],[1041,2,2,45,47],[1042,1,1,47,48],[1045,1,1,48,49]]],[44,75,51,49,100,[[1047,19,11,49,60],[1048,11,6,60,66],[1049,5,4,66,70],[1050,3,2,70,72],[1051,2,2,72,74],[1052,23,16,74,90],[1053,5,4,90,94],[1054,3,2,94,96],[1055,2,2,96,98],[1058,2,2,98,100]]],[45,9,7,100,107,[[1068,1,1,100,101],[1070,5,3,101,104],[1075,2,2,104,106],[1076,1,1,106,107]]],[47,32,25,107,132,[[1092,6,3,107,110],[1093,15,12,110,122],[1094,4,3,122,125],[1095,5,5,125,130],[1096,2,2,130,132]]],[48,1,1,132,133,[[1098,1,1,132,133]]],[49,3,3,133,136,[[1105,3,3,133,136]]],[53,2,2,136,138,[[1119,2,2,136,138]]],[57,14,13,138,151,[[1139,6,5,138,143],[1140,2,2,143,145],[1141,2,2,145,147],[1142,4,4,147,151]]],[58,10,7,151,158,[[1146,1,1,151,152],[1147,5,5,152,157],[1149,4,1,157,158]]]],[23251,23252,23328,23472,23494,23908,23912,23941,24995,24996,24997,25000,25012,25389,25636,25637,26035,26061,26089,26347,26351,26377,26379,26386,26398,26515,26614,26724,26816,26832,27114,27169,27377,27401,27447,27466,27570,27572,27684,27688,27692,27707,27716,27737,27763,27775,27783,27804,27922,27974,27975,27976,27977,27979,27980,27982,27985,27987,27988,27989,28010,28011,28012,28018,28019,28022,28035,28036,28037,28038,28060,28067,28082,28083,28092,28093,28094,28095,28096,28097,28098,28099,28100,28103,28105,28107,28112,28113,28114,28116,28118,28119,28120,28123,28186,28187,28192,28193,28274,28276,28526,28548,28549,28560,28699,28712,28774,29097,29100,29102,29104,29107,29112,29113,29114,29115,29119,29120,29121,29123,29125,29126,29135,29136,29152,29165,29166,29176,29180,29185,29190,29201,29244,29426,29427,29430,29704,29705,30069,30076,30080,30083,30092,30096,30102,30124,30127,30134,30141,30149,30161,30291,30301,30302,30303,30304,30305,30348]]],["+",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26379]]],["law",[194,155,[[39,8,8,0,8,[[933,2,2,0,2],[935,1,1,2,3],[939,1,1,3,4],[940,1,1,4,5],[950,2,2,5,7],[951,1,1,7,8]]],[41,9,9,8,17,[[974,5,5,8,13],[982,1,1,13,14],[988,2,2,14,16],[996,1,1,16,17]]],[42,14,12,17,29,[[997,2,2,17,19],[1003,4,3,19,22],[1004,2,2,22,24],[1006,1,1,24,25],[1008,1,1,25,26],[1011,1,1,26,27],[1014,1,1,27,28],[1015,2,1,28,29]]],[43,19,19,29,48,[[1023,1,1,29,30],[1024,1,1,30,31],[1030,2,2,31,33],[1032,2,2,33,35],[1035,2,2,35,37],[1038,3,3,37,40],[1039,2,2,40,42],[1040,2,2,42,44],[1041,2,2,44,46],[1042,1,1,46,47],[1045,1,1,47,48]]],[44,75,51,48,99,[[1047,19,11,48,59],[1048,11,6,59,65],[1049,5,4,65,69],[1050,3,2,69,71],[1051,2,2,71,73],[1052,23,16,73,89],[1053,5,4,89,93],[1054,3,2,93,95],[1055,2,2,95,97],[1058,2,2,97,99]]],[45,9,7,99,106,[[1068,1,1,99,100],[1070,5,3,100,103],[1075,2,2,103,105],[1076,1,1,105,106]]],[47,32,25,106,131,[[1092,6,3,106,109],[1093,15,12,109,121],[1094,4,3,121,124],[1095,5,5,124,129],[1096,2,2,129,131]]],[48,1,1,131,132,[[1098,1,1,131,132]]],[49,3,3,132,135,[[1105,3,3,132,135]]],[53,2,2,135,137,[[1119,2,2,135,137]]],[57,12,11,137,148,[[1139,6,5,137,142],[1140,1,1,142,143],[1141,2,2,143,145],[1142,3,3,145,148]]],[58,10,7,148,155,[[1146,1,1,148,149],[1147,5,5,149,154],[1149,4,1,154,155]]]],[23251,23252,23328,23472,23494,23908,23912,23941,24995,24996,24997,25000,25012,25389,25636,25637,26035,26061,26089,26347,26351,26377,26386,26398,26515,26614,26724,26816,26832,27114,27169,27377,27401,27447,27466,27570,27572,27684,27688,27692,27707,27716,27737,27763,27775,27783,27804,27922,27974,27975,27976,27977,27979,27980,27982,27985,27987,27988,27989,28010,28011,28012,28018,28019,28022,28035,28036,28037,28038,28060,28067,28082,28083,28092,28093,28094,28095,28096,28097,28098,28099,28100,28103,28105,28107,28112,28113,28114,28116,28118,28119,28120,28123,28186,28187,28192,28193,28274,28276,28526,28548,28549,28560,28699,28712,28774,29097,29100,29102,29104,29107,29112,29113,29114,29115,29119,29120,29121,29123,29125,29126,29135,29136,29152,29165,29166,29176,29180,29185,29190,29201,29244,29426,29427,29430,29704,29705,30069,30076,30080,30083,30092,30096,30124,30127,30134,30141,30161,30291,30301,30302,30303,30304,30305,30348]]],["laws",[2,2,[[57,2,2,0,2,[[1140,1,1,0,1],[1142,1,1,1,2]]]],[30102,30149]]]]},{"k":"G3552","v":[["doting",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29792]]]]},{"k":"G3553","v":[["disease",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26214]]]]},{"k":"G3554","v":[["*",[12,12,[[39,5,5,0,5,[[932,2,2,0,2],[936,1,1,2,3],[937,1,1,3,4],[938,1,1,4,5]]],[40,2,2,5,7,[[957,1,1,5,6],[959,1,1,6,7]]],[41,4,4,7,11,[[976,1,1,7,8],[978,1,1,8,9],[979,1,1,9,10],[981,1,1,10,11]]],[43,1,1,11,12,[[1036,1,1,11,12]]]],[23232,23233,23362,23414,23418,24249,24303,25103,25163,25216,25302,27597]]],["diseases",[6,6,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,3,3,2,5,[[976,1,1,2,3],[978,1,1,3,4],[981,1,1,4,5]]],[43,1,1,5,6,[[1036,1,1,5,6]]]],[23233,24249,25103,25163,25302,27597]]],["infirmities",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25216]]],["sickness",[3,3,[[39,3,3,0,3,[[932,1,1,0,1],[937,1,1,1,2],[938,1,1,2,3]]]],[23232,23414,23418]]],["sicknesses",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]]],[23362,24303]]]]},{"k":"G3555","v":[["brood",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25552]]]]},{"k":"G3556","v":[["chickens",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23955]]]]},{"k":"G3557","v":[["*",[3,3,[[43,2,2,0,2,[[1022,2,2,0,2]]],[55,1,1,2,3,[[1130,1,1,2,3]]]],[27061,27062,29918]]],["back",[2,2,[[43,2,2,0,2,[[1022,2,2,0,2]]]],[27061,27062]]],["purloining",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29918]]]]},{"k":"G3558","v":[["*",[7,7,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,3,3,1,4,[[983,1,1,1,2],[984,1,1,2,3],[985,1,1,3,4]]],[43,2,2,4,6,[[1044,1,1,4,5],[1045,1,1,5,6]]],[65,1,1,6,7,[[1187,1,1,6,7]]]],[23531,25436,25514,25547,27868,27912,31066]]],["south",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[985,1,1,2,3]]],[65,1,1,3,4,[[1187,1,1,3,4]]]],[23531,25436,25547,31066]]],["wind",[3,3,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,2,2,1,3,[[1044,1,1,1,2],[1045,1,1,2,3]]]],[25514,27868,27912]]]]},{"k":"G3559","v":[["admonition",[3,3,[[45,1,1,0,1,[[1071,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]],[55,1,1,2,3,[[1131,1,1,2,3]]]],[28578,29341,29933]]]]},{"k":"G3560","v":[["*",[8,8,[[43,1,1,0,1,[[1037,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[50,2,2,3,5,[[1107,1,1,3,4],[1109,1,1,4,5]]],[51,2,2,5,7,[[1115,2,2,5,7]]],[52,1,1,7,8,[[1118,1,1,7,8]]]],[27657,28317,28447,29493,29533,29633,29635,29693]]],["admonish",[3,3,[[44,1,1,0,1,[[1060,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]],[52,1,1,2,3,[[1118,1,1,2,3]]]],[28317,29633,29693]]],["admonishing",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29533]]],["warn",[3,3,[[43,1,1,0,1,[[1037,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]],[51,1,1,2,3,[[1115,1,1,2,3]]]],[27657,28447,29635]]],["warning",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29493]]]]},{"k":"G3561","v":[["moon",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29510]]]]},{"k":"G3562","v":[["discreetly",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24707]]]]},{"k":"G3563","v":[["*",[24,22,[[41,1,1,0,1,[[996,1,1,0,1]]],[44,6,6,1,7,[[1046,1,1,1,2],[1052,2,2,2,4],[1056,1,1,4,5],[1057,1,1,5,6],[1059,1,1,6,7]]],[45,7,5,7,12,[[1062,1,1,7,8],[1063,2,1,8,9],[1075,4,3,9,12]]],[48,2,2,12,14,[[1100,2,2,12,14]]],[49,1,1,14,15,[[1106,1,1,14,15]]],[50,1,1,15,16,[[1108,1,1,15,16]]],[52,1,1,16,17,[[1117,1,1,16,17]]],[53,1,1,17,18,[[1124,1,1,17,18]]],[54,1,1,18,19,[[1127,1,1,18,19]]],[55,1,1,19,20,[[1129,1,1,19,20]]],[65,2,2,20,22,[[1179,1,1,20,21],[1183,1,1,21,22]]]],[26036,27958,28114,28116,28243,28247,28285,28373,28410,28692,28693,28697,29289,29295,29449,29512,29663,29793,29861,29907,30926,30984]]],["mind",[15,14,[[44,6,6,0,6,[[1046,1,1,0,1],[1052,2,2,1,3],[1056,1,1,3,4],[1057,1,1,4,5],[1059,1,1,5,6]]],[45,3,2,6,8,[[1062,1,1,6,7],[1063,2,1,7,8]]],[48,2,2,8,10,[[1100,2,2,8,10]]],[50,1,1,10,11,[[1108,1,1,10,11]]],[52,1,1,11,12,[[1117,1,1,11,12]]],[55,1,1,12,13,[[1129,1,1,12,13]]],[65,1,1,13,14,[[1183,1,1,13,14]]]],[27958,28114,28116,28243,28247,28285,28373,28410,29289,29295,29512,29663,29907,30984]]],["minds",[2,2,[[53,1,1,0,1,[[1124,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[29793,29861]]],["understanding",[7,6,[[41,1,1,0,1,[[996,1,1,0,1]]],[45,4,3,1,4,[[1075,4,3,1,4]]],[49,1,1,4,5,[[1106,1,1,4,5]]],[65,1,1,5,6,[[1179,1,1,5,6]]]],[26036,28692,28693,28697,29449,30926]]]]},{"k":"G3564","v":[["Nymphas",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29557]]]]},{"k":"G3565","v":[["*",[8,7,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,2,1,1,2,[[984,2,1,1,2]]],[42,1,1,2,3,[[999,1,1,2,3]]],[65,4,4,3,7,[[1184,1,1,3,4],[1187,2,2,4,6],[1188,1,1,6,7]]]],[23452,25512,26149,31016,31055,31062,31097]]],["bride",[5,5,[[42,1,1,0,1,[[999,1,1,0,1]]],[65,4,4,1,5,[[1184,1,1,1,2],[1187,2,2,2,4],[1188,1,1,4,5]]]],[26149,31016,31055,31062,31097]]],["law",[3,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,2,1,1,2,[[984,2,1,1,2]]]],[23452,25512]]]]},{"k":"G3566","v":[["*",[16,12,[[39,6,5,0,5,[[937,2,1,0,1],[953,4,4,1,5]]],[40,3,2,5,7,[[958,3,2,5,7]]],[41,2,2,7,9,[[977,2,2,7,9]]],[42,4,2,9,11,[[998,1,1,9,10],[999,3,1,10,11]]],[65,1,1,11,12,[[1184,1,1,11,12]]]],[23394,24009,24013,24014,24018,24279,24280,25141,25142,26104,26149,31016]]],["bridegroom",[15,12,[[39,6,5,0,5,[[937,2,1,0,1],[953,4,4,1,5]]],[40,3,2,5,7,[[958,3,2,5,7]]],[41,2,2,7,9,[[977,2,2,7,9]]],[42,3,2,9,11,[[998,1,1,9,10],[999,2,1,10,11]]],[65,1,1,11,12,[[1184,1,1,11,12]]]],[23394,24009,24013,24014,24018,24279,24280,25141,25142,26104,26149,31016]]],["bridegroom's",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26149]]]]},{"k":"G3567","v":[["bridechamber",[3,3,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,1,1,2,3,[[977,1,1,2,3]]]],[23394,24279,25141]]]]},{"k":"G3568","v":[["*",[138,133,[[39,4,4,0,4,[[952,1,1,0,1],[954,1,1,1,2],[955,2,2,2,4]]],[40,3,3,4,7,[[966,1,1,4,5],[969,1,1,5,6],[971,1,1,6,7]]],[41,12,11,7,18,[[973,1,1,7,8],[974,1,1,8,9],[977,1,1,9,10],[978,3,2,10,12],[983,1,1,12,13],[984,1,1,13,14],[988,1,1,14,15],[991,1,1,15,16],[994,2,2,16,18]]],[42,28,27,18,45,[[998,1,1,18,19],[1000,2,2,19,21],[1001,1,1,21,22],[1004,2,2,22,24],[1005,2,2,24,26],[1007,2,2,26,28],[1008,3,2,28,30],[1009,2,2,30,32],[1010,1,1,32,33],[1011,2,2,33,35],[1012,5,5,35,40],[1013,3,3,40,43],[1014,1,1,43,44],[1017,1,1,44,45]]],[43,23,23,45,68,[[1019,1,1,45,46],[1020,1,1,46,47],[1024,3,3,47,50],[1027,2,2,50,52],[1029,1,1,52,53],[1030,1,1,53,54],[1032,1,1,54,55],[1033,2,2,55,57],[1035,1,1,57,58],[1037,2,2,58,60],[1039,2,2,60,62],[1040,2,2,62,64],[1041,2,2,64,66],[1043,2,2,66,68]]],[44,13,13,68,81,[[1048,1,1,68,69],[1050,2,2,69,71],[1051,2,2,71,73],[1053,3,3,73,76],[1056,3,3,76,79],[1058,1,1,79,80],[1061,1,1,80,81]]],[45,4,4,81,85,[[1064,1,1,81,82],[1068,1,1,82,83],[1073,1,1,83,84],[1077,1,1,84,85]]],[46,7,5,85,90,[[1082,2,1,85,86],[1083,2,1,86,87],[1084,1,1,87,88],[1085,1,1,88,89],[1090,1,1,89,90]]],[47,6,6,90,96,[[1091,1,1,90,91],[1092,1,1,91,92],[1093,1,1,92,93],[1094,3,3,93,96]]],[48,4,4,96,100,[[1098,1,1,96,97],[1099,2,2,97,99],[1101,1,1,99,100]]],[49,5,5,100,105,[[1103,3,3,100,103],[1104,1,1,103,104],[1105,1,1,104,105]]],[50,1,1,105,106,[[1107,1,1,105,106]]],[51,1,1,106,107,[[1113,1,1,106,107]]],[52,1,1,107,108,[[1117,1,1,107,108]]],[53,2,2,108,110,[[1122,1,1,108,109],[1124,1,1,109,110]]],[54,2,2,110,112,[[1125,1,1,110,111],[1128,1,1,111,112]]],[55,1,1,112,113,[[1130,1,1,112,113]]],[57,5,5,113,118,[[1134,1,1,113,114],[1141,3,3,114,117],[1144,1,1,117,118]]],[58,3,3,118,121,[[1149,2,2,118,120],[1150,1,1,120,121]]],[59,5,4,121,125,[[1151,1,1,121,122],[1152,3,2,122,124],[1153,1,1,124,125]]],[60,2,2,125,127,[[1158,2,2,125,127]]],[61,4,4,127,131,[[1160,2,2,127,129],[1161,1,1,129,130],[1162,1,1,130,131]]],[62,1,1,131,132,[[1164,1,1,131,132]]],[64,1,1,132,133,[[1166,1,1,132,133]]]],[23978,24119,24171,24172,24618,24736,24858,24941,25002,25117,25167,25171,25444,25511,25645,25773,25900,25933,26103,26174,26179,26235,26421,26433,26461,26481,26531,26545,26607,26611,26661,26666,26697,26721,26723,26731,26748,26755,26756,26758,26764,26766,26772,26821,26908,26982,27013,27120,27150,27168,27264,27292,27348,27373,27452,27519,27520,27563,27648,27651,27705,27720,27749,27755,27782,27794,27829,27840,28017,28056,28058,28087,28089,28117,28134,28138,28214,28239,28240,28277,28362,28412,28501,28654,28788,28893,28900,28925,28946,29045,29080,29101,29105,29140,29156,29160,29231,29256,29261,29312,29366,29381,29391,29403,29439,29489,29598,29667,29755,29805,29819,29880,29920,29985,30110,30129,30131,30238,30350,30353,30355,30386,30409,30424,30445,30529,30540,30568,30578,30581,30606,30650,30697]]],["+",[7,7,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[43,1,1,2,3,[[1041,1,1,2,3]]],[44,1,1,3,4,[[1051,1,1,3,4]]],[46,1,1,4,5,[[1082,1,1,4,5]]],[48,1,1,5,6,[[1098,1,1,5,6]]],[53,1,1,6,7,[[1124,1,1,6,7]]]],[24736,25933,27794,28089,28893,29231,29805]]],["Now",[12,12,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,6,6,1,7,[[1004,1,1,1,2],[1008,2,2,2,4],[1009,1,1,4,5],[1012,1,1,5,6],[1013,1,1,6,7]]],[43,4,4,7,11,[[1027,1,1,7,8],[1029,1,1,8,9],[1032,1,1,9,10],[1040,1,1,10,11]]],[46,1,1,11,12,[[1084,1,1,11,12]]]],[25444,26433,26607,26611,26661,26756,26766,27292,27348,27452,27749,28925]]],["henceforth",[4,4,[[41,3,3,0,3,[[973,1,1,0,1],[977,1,1,1,2],[984,1,1,2,3]]],[43,1,1,3,4,[[1035,1,1,3,4]]]],[24941,25117,25511,27563]]],["is",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29755]]],["late",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26531]]],["now",[106,103,[[39,3,3,0,3,[[954,1,1,0,1],[955,2,2,1,3]]],[40,2,2,3,5,[[966,1,1,3,4],[971,1,1,4,5]]],[41,7,6,5,11,[[974,1,1,5,6],[978,3,2,6,8],[988,1,1,8,9],[991,1,1,9,10],[994,1,1,10,11]]],[42,21,21,11,32,[[998,1,1,11,12],[1000,2,2,12,14],[1001,1,1,14,15],[1004,1,1,15,16],[1005,2,2,16,18],[1007,1,1,18,19],[1008,1,1,19,20],[1009,1,1,20,21],[1010,1,1,21,22],[1011,2,2,22,24],[1012,4,4,24,28],[1013,2,2,28,30],[1014,1,1,30,31],[1017,1,1,31,32]]],[43,17,17,32,49,[[1019,1,1,32,33],[1020,1,1,33,34],[1024,3,3,34,37],[1027,1,1,37,38],[1030,1,1,38,39],[1033,2,2,39,41],[1037,2,2,41,43],[1039,2,2,43,45],[1040,1,1,45,46],[1041,1,1,46,47],[1043,2,2,47,49]]],[44,9,9,49,58,[[1050,2,2,49,51],[1051,1,1,51,52],[1053,2,2,52,54],[1056,2,2,54,56],[1058,1,1,56,57],[1061,1,1,57,58]]],[45,3,3,58,61,[[1064,1,1,58,59],[1068,1,1,59,60],[1073,1,1,60,61]]],[46,5,4,61,65,[[1082,1,1,61,62],[1083,2,1,62,63],[1085,1,1,63,64],[1090,1,1,64,65]]],[47,6,6,65,71,[[1091,1,1,65,66],[1092,1,1,66,67],[1093,1,1,67,68],[1094,3,3,68,71]]],[48,3,3,71,74,[[1099,2,2,71,73],[1101,1,1,73,74]]],[49,5,5,74,79,[[1103,3,3,74,77],[1104,1,1,77,78],[1105,1,1,78,79]]],[50,1,1,79,80,[[1107,1,1,79,80]]],[51,1,1,80,81,[[1113,1,1,80,81]]],[52,1,1,81,82,[[1117,1,1,81,82]]],[54,1,1,82,83,[[1125,1,1,82,83]]],[57,5,5,83,88,[[1134,1,1,83,84],[1141,3,3,84,87],[1144,1,1,87,88]]],[58,3,3,88,91,[[1149,2,2,88,90],[1150,1,1,90,91]]],[59,5,4,91,95,[[1151,1,1,91,92],[1152,3,2,92,94],[1153,1,1,94,95]]],[60,2,2,95,97,[[1158,2,2,95,97]]],[61,4,4,97,101,[[1160,2,2,97,99],[1161,1,1,99,100],[1162,1,1,100,101]]],[62,1,1,101,102,[[1164,1,1,101,102]]],[64,1,1,102,103,[[1166,1,1,102,103]]]],[24119,24171,24172,24618,24858,25002,25167,25171,25645,25773,25900,26103,26174,26179,26235,26421,26461,26481,26545,26611,26666,26697,26721,26723,26731,26748,26755,26758,26764,26772,26821,26908,26982,27013,27120,27150,27168,27264,27373,27519,27520,27648,27651,27705,27720,27755,27782,27829,27840,28056,28058,28087,28117,28138,28239,28240,28277,28362,28412,28501,28654,28893,28900,28946,29045,29080,29101,29105,29140,29156,29160,29256,29261,29312,29366,29381,29391,29403,29439,29489,29598,29667,29819,29985,30110,30129,30131,30238,30350,30353,30355,30386,30409,30424,30445,30529,30540,30568,30578,30581,30606,30650,30697]]],["present",[4,4,[[44,2,2,0,2,[[1053,1,1,0,1],[1056,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]],[55,1,1,3,4,[[1130,1,1,3,4]]]],[28134,28214,29880,29920]]],["this",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28017]]],["time",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[45,1,1,1,2,[[1077,1,1,1,2]]]],[23978,28788]]]]},{"k":"G3569","v":[["now",[5,5,[[43,5,5,0,5,[[1021,1,1,0,1],[1022,1,1,1,2],[1034,1,1,2,3],[1037,1,1,3,4],[1044,1,1,4,5]]]],[27051,27097,27553,27658,27877]]]]},{"k":"G3570","v":[["*",[21,21,[[44,6,6,0,6,[[1048,1,1,0,1],[1051,1,1,1,2],[1052,2,2,2,4],[1060,2,2,4,6]]],[45,5,5,6,11,[[1066,1,1,6,7],[1073,1,1,7,8],[1074,1,1,8,9],[1075,1,1,9,10],[1076,1,1,10,11]]],[46,2,2,11,13,[[1085,2,2,11,13]]],[48,1,1,13,14,[[1098,1,1,13,14]]],[50,3,3,14,17,[[1107,2,2,14,16],[1109,1,1,16,17]]],[56,2,2,17,19,[[1132,2,2,17,19]]],[57,2,2,19,21,[[1140,1,1,19,20],[1143,1,1,20,21]]]],[28012,28090,28097,28108,28326,28328,28465,28652,28678,28684,28738,28943,28954,29242,29486,29491,29525,29947,29949,30098,30188]]],["Now",[3,3,[[44,1,1,0,1,[[1052,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]]],[28108,28684,28943]]],["now",[18,18,[[44,5,5,0,5,[[1048,1,1,0,1],[1051,1,1,1,2],[1052,1,1,2,3],[1060,2,2,3,5]]],[45,4,4,5,9,[[1066,1,1,5,6],[1073,1,1,6,7],[1074,1,1,7,8],[1076,1,1,8,9]]],[46,1,1,9,10,[[1085,1,1,9,10]]],[48,1,1,10,11,[[1098,1,1,10,11]]],[50,3,3,11,14,[[1107,2,2,11,13],[1109,1,1,13,14]]],[56,2,2,14,16,[[1132,2,2,14,16]]],[57,2,2,16,18,[[1140,1,1,16,17],[1143,1,1,17,18]]]],[28012,28090,28097,28326,28328,28465,28652,28678,28738,28954,29242,29486,29491,29525,29947,29949,30098,30188]]]]},{"k":"G3571","v":[["*",[65,62,[[39,10,9,0,9,[[930,1,1,0,1],[932,1,1,1,2],[940,2,1,2,3],[942,1,1,3,4],[953,1,1,4,5],[954,2,2,5,7],[955,1,1,7,8],[956,1,1,8,9]]],[40,5,5,9,14,[[960,1,1,9,10],[961,1,1,10,11],[962,1,1,11,12],[970,2,2,12,14]]],[41,7,7,14,21,[[974,2,2,14,16],[977,1,1,16,17],[984,1,1,17,18],[989,1,1,18,19],[990,1,1,19,20],[993,1,1,20,21]]],[42,7,7,21,28,[[999,1,1,21,22],[1003,1,1,22,23],[1005,1,1,23,24],[1007,1,1,24,25],[1009,1,1,25,26],[1015,1,1,26,27],[1017,1,1,27,28]]],[43,16,15,28,43,[[1022,1,1,28,29],[1026,2,2,29,31],[1029,1,1,31,32],[1033,2,2,32,34],[1034,1,1,34,35],[1035,1,1,35,36],[1037,1,1,36,37],[1040,3,3,37,40],[1043,1,1,40,41],[1044,3,2,41,43]]],[44,1,1,43,44,[[1058,1,1,43,44]]],[45,1,1,44,45,[[1072,1,1,44,45]]],[51,6,5,45,50,[[1112,1,1,45,46],[1113,1,1,46,47],[1115,4,3,47,50]]],[52,1,1,50,51,[[1118,1,1,50,51]]],[53,1,1,51,52,[[1123,1,1,51,52]]],[54,1,1,52,53,[[1125,1,1,52,53]]],[60,1,1,53,54,[[1158,1,1,53,54]]],[65,8,8,54,62,[[1170,1,1,54,55],[1173,1,1,55,56],[1174,1,1,56,57],[1178,1,1,57,58],[1180,1,1,58,59],[1186,1,1,59,60],[1187,1,1,60,61],[1188,1,1,61,62]]]],[23183,23211,23529,23622,24014,24085,24088,24193,24208,24350,24369,24455,24781,24784,24981,25010,25112,25479,25685,25695,25863,26122,26378,26444,26533,26660,26864,26901,27078,27240,27241,27343,27492,27516,27533,27566,27657,27745,27757,27765,27830,27878,27882,28278,28623,29579,29600,29623,29626,29628,29686,29768,29812,30532,30776,30825,30839,30901,30937,31048,31078,31085]]],["+",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[24014,27882]]],["Night",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29600]]],["night",[59,58,[[39,6,6,0,6,[[930,1,1,0,1],[942,1,1,1,2],[954,2,2,2,4],[955,1,1,4,5],[956,1,1,5,6]]],[40,5,5,6,11,[[960,1,1,6,7],[961,1,1,7,8],[962,1,1,8,9],[970,2,2,9,11]]],[41,7,7,11,18,[[974,2,2,11,13],[977,1,1,13,14],[984,1,1,14,15],[989,1,1,15,16],[990,1,1,16,17],[993,1,1,17,18]]],[42,7,7,18,25,[[999,1,1,18,19],[1003,1,1,19,20],[1005,1,1,20,21],[1007,1,1,21,22],[1009,1,1,22,23],[1015,1,1,23,24],[1017,1,1,24,25]]],[43,15,15,25,40,[[1022,1,1,25,26],[1026,2,2,26,28],[1029,1,1,28,29],[1033,2,2,29,31],[1034,1,1,31,32],[1035,1,1,32,33],[1037,1,1,33,34],[1040,3,3,34,37],[1043,1,1,37,38],[1044,2,2,38,40]]],[44,1,1,40,41,[[1058,1,1,40,41]]],[45,1,1,41,42,[[1072,1,1,41,42]]],[51,5,4,42,46,[[1112,1,1,42,43],[1115,4,3,43,46]]],[52,1,1,46,47,[[1118,1,1,46,47]]],[53,1,1,47,48,[[1123,1,1,47,48]]],[54,1,1,48,49,[[1125,1,1,48,49]]],[60,1,1,49,50,[[1158,1,1,49,50]]],[65,8,8,50,58,[[1170,1,1,50,51],[1173,1,1,51,52],[1174,1,1,52,53],[1178,1,1,53,54],[1180,1,1,54,55],[1186,1,1,55,56],[1187,1,1,56,57],[1188,1,1,57,58]]]],[23183,23622,24085,24088,24193,24208,24350,24369,24455,24781,24784,24981,25010,25112,25479,25685,25695,25863,26122,26378,26444,26533,26660,26864,26901,27078,27240,27241,27343,27492,27516,27533,27566,27657,27745,27757,27765,27830,27878,27882,28278,28623,29579,29623,29626,29628,29686,29768,29812,30532,30776,30825,30839,30901,30937,31048,31078,31085]]],["nights",[3,2,[[39,3,2,0,2,[[932,1,1,0,1],[940,2,1,1,2]]]],[23211,23529]]]]},{"k":"G3572","v":[["pierced",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26859]]]]},{"k":"G3573","v":[["*",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[24013,30503]]],["slumbered",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24013]]],["slumbereth",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30503]]]]},{"k":"G3574","v":[["day",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29014]]]]},{"k":"G3575","v":[["*",[8,8,[[39,2,2,0,2,[[952,2,2,0,2]]],[41,3,3,2,5,[[975,1,1,2,3],[989,2,2,3,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]],[59,1,1,6,7,[[1153,1,1,6,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]]],[23994,23995,25061,25677,25678,30179,30444,30505]]],["Noah",[3,3,[[57,1,1,0,1,[[1143,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[30179,30444,30505]]],["Noe",[5,5,[[39,2,2,0,2,[[952,2,2,0,2]]],[41,3,3,2,5,[[975,1,1,2,3],[989,2,2,3,5]]]],[23994,23995,25061,25677,25678]]]]},{"k":"G3576","v":[["*",[2,2,[[57,2,2,0,2,[[1137,1,1,0,1],[1138,1,1,1,2]]]],[30041,30056]]],["dull",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30041]]],["slothful",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30056]]]]},{"k":"G3577","v":[["back",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28219]]]]},{"k":"G3578","v":[["lodging",[2,2,[[43,1,1,0,1,[[1045,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[27922,29960]]]]},{"k":"G3579","v":[["*",[10,10,[[43,7,7,0,7,[[1027,4,4,0,4],[1034,1,1,4,5],[1038,1,1,5,6],[1045,1,1,6,7]]],[57,1,1,7,8,[[1145,1,1,7,8]]],[59,2,2,8,10,[[1154,2,2,8,10]]]],[27265,27277,27282,27291,27543,27680,27906,30243,30450,30458]]],["+",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30458]]],["entertained",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30243]]],["lodge",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27680]]],["lodged",[4,4,[[43,4,4,0,4,[[1027,3,3,0,3],[1045,1,1,3,4]]]],[27277,27282,27291,27906]]],["lodgeth",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27265]]],["strange",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30450]]],["things",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27543]]]]},{"k":"G3580","v":[["strangers",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29773]]]]},{"k":"G3581","v":[["*",[14,14,[[39,5,5,0,5,[[953,4,4,0,4],[955,1,1,4,5]]],[43,2,2,5,7,[[1034,2,2,5,7]]],[44,1,1,7,8,[[1061,1,1,7,8]]],[48,2,2,8,10,[[1098,2,2,8,10]]],[57,2,2,10,12,[[1143,1,1,10,11],[1145,1,1,11,12]]],[59,1,1,12,13,[[1154,1,1,12,13]]],[63,1,1,13,14,[[1165,1,1,13,14]]]],[24043,24046,24051,24052,24136,27541,27544,28359,29241,29248,30185,30250,30458,30663]]],["+",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24136]]],["host",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28359]]],["strange",[2,2,[[43,1,1,0,1,[[1034,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[27541,30250]]],["stranger",[4,4,[[39,4,4,0,4,[[953,4,4,0,4]]]],[24043,24046,24051,24052]]],["strangers",[5,5,[[43,1,1,0,1,[[1034,1,1,0,1]]],[48,2,2,1,3,[[1098,2,2,1,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]],[63,1,1,4,5,[[1165,1,1,4,5]]]],[27544,29241,29248,30185,30663]]],["thing",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30458]]]]},{"k":"G3582","v":[["*",[2,2,[[40,2,2,0,2,[[963,2,2,0,2]]]],[24467,24471]]],["+",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24467]]],["pots",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24471]]]]},{"k":"G3583","v":[["*",[16,16,[[39,3,3,0,3,[[941,1,1,0,1],[949,2,2,1,3]]],[40,7,7,3,10,[[959,2,2,3,5],[960,1,1,5,6],[961,1,1,6,7],[965,1,1,7,8],[967,2,2,8,10]]],[41,1,1,10,11,[[980,1,1,10,11]]],[42,1,1,11,12,[[1011,1,1,11,12]]],[58,1,1,12,13,[[1146,1,1,12,13]]],[59,1,1,13,14,[[1151,1,1,13,14]]],[65,2,2,14,16,[[1180,1,1,14,15],[1182,1,1,15,16]]]],[23545,23845,23846,24289,24291,24329,24393,24556,24660,24661,25251,26705,30277,30398,30941,30966]]],["away",[7,7,[[39,3,3,0,3,[[941,1,1,0,1],[949,2,2,1,3]]],[40,3,3,3,6,[[960,1,1,3,4],[965,1,1,4,5],[967,1,1,5,6]]],[41,1,1,6,7,[[980,1,1,6,7]]]],[23545,23845,23846,24329,24556,24661,25251]]],["ripe",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30941]]],["up",[3,3,[[40,2,2,0,2,[[961,1,1,0,1],[967,1,1,1,2]]],[65,1,1,2,3,[[1182,1,1,2,3]]]],[24393,24660,30966]]],["withered",[3,3,[[40,2,2,0,2,[[959,2,2,0,2]]],[42,1,1,2,3,[[1011,1,1,2,3]]]],[24289,24291,26705]]],["withereth",[2,2,[[58,1,1,0,1,[[1146,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[30277,30398]]]]},{"k":"G3584","v":[["*",[7,7,[[39,2,2,0,2,[[940,1,1,0,1],[951,1,1,1,2]]],[41,3,3,2,5,[[978,2,2,2,4],[995,1,1,4,5]]],[42,1,1,5,6,[[1001,1,1,5,6]]],[57,1,1,6,7,[[1143,1,1,6,7]]]],[23499,23933,25152,25154,25966,26213,30201]]],["dry",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[25966,30201]]],["land",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23933]]],["withered",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,2,2,1,3,[[978,2,2,1,3]]],[42,1,1,3,4,[[1001,1,1,3,4]]]],[23499,25152,25154,26213]]]]},{"k":"G3585","v":[["wood",[2,2,[[54,1,1,0,1,[[1126,1,1,0,1]]],[65,1,1,1,2,[[1175,1,1,1,2]]]],[29847,30860]]]]},{"k":"G3586","v":[["*",[19,17,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,2,2,2,4,[[970,2,2,2,4]]],[41,2,2,4,6,[[994,1,1,4,5],[995,1,1,5,6]]],[43,4,4,6,10,[[1022,1,1,6,7],[1027,1,1,7,8],[1030,1,1,8,9],[1033,1,1,9,10]]],[45,1,1,10,11,[[1064,1,1,10,11]]],[47,1,1,11,12,[[1093,1,1,11,12]]],[59,1,1,12,13,[[1152,1,1,12,13]]],[65,6,4,13,17,[[1168,1,1,13,14],[1184,2,1,14,15],[1188,3,2,15,17]]]],[24101,24109,24797,24802,25916,25966,27089,27298,27391,27507,28422,29115,30423,30724,31005,31082,31094]]],["staves",[5,5,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,2,2,2,4,[[970,2,2,2,4]]],[41,1,1,4,5,[[994,1,1,4,5]]]],[24101,24109,24797,24802,25916]]],["stocks",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27507]]],["tree",[10,9,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,3,3,1,4,[[1022,1,1,1,2],[1027,1,1,2,3],[1030,1,1,3,4]]],[47,1,1,4,5,[[1093,1,1,4,5]]],[59,1,1,5,6,[[1152,1,1,5,6]]],[65,4,3,6,9,[[1168,1,1,6,7],[1188,3,2,7,9]]]],[25966,27089,27298,27391,29115,30423,30724,31082,31094]]],["wood",[3,2,[[45,1,1,0,1,[[1064,1,1,0,1]]],[65,2,1,1,2,[[1184,2,1,1,2]]]],[28422,31005]]]]},{"k":"G3587","v":[["*",[3,3,[[43,1,1,0,1,[[1038,1,1,0,1]]],[45,2,2,1,3,[[1072,2,2,1,3]]]],[27688,28605,28606]]],["shave",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27688]]],["shaven",[2,2,[[45,2,2,0,2,[[1072,2,2,0,2]]]],[28605,28606]]]]},{"k":"G3588","v":[["*",[8497,4721,[[39,1238,673,0,673,[[929,15,8,0,8],[930,41,20,8,28],[931,17,8,28,36],[932,27,15,36,51],[933,44,28,51,79],[934,39,19,79,98],[935,29,14,98,112],[936,39,20,112,132],[937,46,25,132,157],[938,24,17,157,174],[939,20,10,174,184],[940,69,36,184,220],[941,95,40,220,260],[942,49,28,260,288],[943,42,26,288,314],[944,44,22,314,336],[945,23,16,336,352],[946,26,18,352,370],[947,20,16,370,386],[948,42,25,386,411],[949,75,38,411,449],[950,48,30,449,479],[951,50,24,479,503],[952,65,29,503,532],[953,44,32,532,564],[954,87,49,564,613],[955,90,45,613,658],[956,28,15,658,673]]],[40,767,440,673,1113,[[957,49,30,673,703],[958,48,21,703,724],[959,26,17,724,741],[960,58,26,741,767],[961,56,32,767,799],[962,54,31,799,830],[963,45,25,830,855],[964,40,22,855,877],[965,37,30,877,907],[966,48,36,907,943],[967,37,23,943,966],[968,64,33,966,999],[969,34,20,999,1019],[970,94,48,1019,1067],[971,54,33,1067,1100],[972,23,13,1100,1113]]],[41,1098,659,1113,1772,[[973,59,41,1113,1154],[974,42,27,1154,1181],[975,27,18,1181,1199],[976,50,30,1199,1229],[977,48,20,1229,1249],[978,52,25,1249,1274],[979,47,30,1274,1304],[980,81,39,1304,1343],[981,58,39,1343,1382],[982,38,23,1382,1405],[983,59,32,1405,1437],[984,56,36,1437,1473],[985,34,21,1473,1494],[986,25,18,1494,1512],[987,23,18,1512,1530],[988,31,18,1530,1548],[989,41,20,1548,1568],[990,29,22,1568,1590],[991,41,27,1590,1617],[992,57,32,1617,1649],[993,29,17,1649,1666],[994,71,47,1666,1713],[995,52,32,1713,1745],[996,48,27,1745,1772]]],[42,891,524,1772,2296,[[997,50,30,1772,1802],[998,33,18,1802,1820],[999,39,20,1820,1840],[1000,50,34,1840,1874],[1001,54,28,1874,1902],[1002,76,45,1902,1947],[1003,52,33,1947,1980],[1004,49,35,1980,2015],[1005,28,19,2015,2034],[1006,45,27,2034,2061],[1007,53,33,2061,2094],[1008,46,30,2094,2124],[1009,20,12,2124,2136],[1010,35,19,2136,2155],[1011,23,13,2155,2168],[1012,25,18,2168,2186],[1013,29,19,2186,2205],[1014,51,28,2205,2233],[1015,58,29,2233,2262],[1016,48,20,2262,2282],[1017,27,14,2282,2296]]],[43,1270,703,2296,2999,[[1018,20,15,2296,2311],[1019,39,29,2311,2340],[1020,32,20,2340,2360],[1021,47,28,2360,2388],[1022,68,32,2388,2420],[1023,29,13,2420,2433],[1024,62,36,2433,2469],[1025,46,27,2469,2496],[1026,52,31,2496,2527],[1027,41,27,2527,2554],[1028,32,19,2554,2573],[1029,39,22,2573,2595],[1030,76,39,2595,2634],[1031,44,20,2634,2654],[1032,58,31,2654,2685],[1033,57,30,2685,2715],[1034,47,24,2715,2739],[1035,38,22,2739,2761],[1036,54,30,2761,2791],[1037,39,22,2791,2813],[1038,74,32,2813,2845],[1039,35,21,2845,2866],[1040,48,27,2866,2893],[1041,22,13,2893,2906],[1042,34,19,2906,2925],[1043,35,22,2925,2947],[1044,56,29,2947,2976],[1045,46,23,2976,2999]]],[44,375,223,2999,3222,[[1046,23,16,2999,3015],[1047,28,17,3015,3032],[1048,18,12,3032,3044],[1049,27,15,3044,3059],[1050,19,11,3059,3070],[1051,10,8,3070,3078],[1052,30,18,3078,3096],[1053,49,23,3096,3119],[1054,33,16,3119,3135],[1055,17,11,3135,3146],[1056,30,16,3146,3162],[1057,9,8,3162,3170],[1058,19,9,3170,3179],[1059,12,8,3179,3187],[1060,26,18,3187,3205],[1061,25,17,3205,3222]]],[45,370,211,3222,3433,[[1062,36,18,3222,3240],[1063,20,8,3240,3248],[1064,11,7,3248,3255],[1065,13,7,3255,3262],[1066,12,6,3262,3268],[1067,20,10,3268,3278],[1068,35,17,3278,3295],[1069,7,7,3295,3302],[1070,25,14,3302,3316],[1071,30,18,3316,3334],[1072,29,17,3334,3351],[1073,38,22,3351,3373],[1074,4,4,3373,3377],[1075,26,18,3377,3395],[1076,47,25,3395,3420],[1077,17,13,3420,3433]]],[46,195,119,3433,3552,[[1078,21,12,3433,3445],[1079,5,5,3445,3450],[1080,21,10,3450,3460],[1081,22,10,3460,3470],[1082,15,10,3470,3480],[1083,5,4,3480,3484],[1084,8,7,3484,3491],[1085,28,15,3491,3506],[1086,14,9,3506,3515],[1087,10,8,3515,3523],[1088,17,12,3523,3535],[1089,16,10,3535,3545],[1090,13,7,3545,3552]]],[47,128,79,3552,3631,[[1091,15,11,3552,3563],[1092,23,13,3563,3576],[1093,30,19,3576,3595],[1094,29,17,3595,3612],[1095,19,11,3612,3623],[1096,12,8,3623,3631]]],[48,177,101,3631,3732,[[1097,28,17,3631,3648],[1098,28,14,3648,3662],[1099,29,18,3662,3680],[1100,41,19,3680,3699],[1101,27,18,3699,3717],[1102,24,15,3717,3732]]],[49,61,43,3732,3775,[[1103,19,13,3732,3745],[1104,9,8,3745,3753],[1105,22,12,3753,3765],[1106,11,10,3765,3775]]],[50,106,58,3775,3833,[[1107,44,20,3775,3795],[1108,34,18,3795,3813],[1109,15,10,3813,3823],[1110,13,10,3823,3833]]],[51,42,31,3833,3864,[[1111,6,4,3833,3837],[1112,9,7,3837,3844],[1113,5,5,3844,3849],[1114,10,7,3849,3856],[1115,12,8,3856,3864]]],[52,34,24,3864,3888,[[1116,11,8,3864,3872],[1117,12,9,3872,3881],[1118,11,7,3881,3888]]],[53,52,40,3888,3928,[[1119,11,8,3888,3896],[1120,1,1,3896,3897],[1121,7,6,3897,3903],[1122,10,6,3903,3909],[1123,8,7,3909,3916],[1124,15,12,3916,3928]]],[54,59,40,3928,3968,[[1125,14,9,3928,3937],[1126,19,13,3937,3950],[1127,7,5,3950,3955],[1128,19,13,3955,3968]]],[55,18,15,3968,3983,[[1129,8,6,3968,3974],[1130,7,6,3974,3980],[1131,3,3,3980,3983]]],[56,10,7,3983,3990,[[1132,10,7,3983,3990]]],[57,300,178,3990,4168,[[1133,16,11,3990,4001],[1134,13,9,4001,4010],[1135,13,9,4010,4019],[1136,11,9,4019,4028],[1137,9,7,4028,4035],[1138,16,12,4035,4047],[1139,39,21,4047,4068],[1140,18,9,4068,4077],[1141,55,24,4077,4101],[1142,33,21,4101,4122],[1143,38,20,4122,4142],[1144,21,15,4142,4157],[1145,18,11,4157,4168]]],[58,94,57,4168,4225,[[1146,18,11,4168,4179],[1147,17,14,4179,4193],[1148,15,11,4193,4204],[1149,10,6,4204,4210],[1150,34,15,4210,4225]]],[59,75,56,4225,4281,[[1151,16,11,4225,4236],[1152,19,15,4236,4251],[1153,14,11,4251,4262],[1154,15,10,4262,4272],[1155,11,9,4272,4281]]],[60,51,28,4281,4309,[[1156,9,8,4281,4289],[1157,19,9,4289,4298],[1158,23,11,4298,4309]]],[61,134,67,4309,4376,[[1159,10,7,4309,4316],[1160,49,20,4316,4336],[1161,20,12,4336,4348],[1162,21,11,4348,4359],[1163,34,17,4359,4376]]],[62,13,8,4376,4384,[[1164,13,8,4376,4384]]],[63,11,9,4384,4393,[[1165,11,9,4384,4393]]],[64,20,10,4393,4403,[[1166,20,10,4393,4403]]],[65,908,318,4403,4721,[[1167,42,15,4403,4418],[1168,45,21,4418,4439],[1169,34,12,4439,4451],[1170,19,9,4451,4460],[1171,41,14,4460,4474],[1172,42,14,4474,4488],[1173,32,12,4488,4500],[1174,55,13,4500,4513],[1175,47,14,4513,4527],[1176,27,9,4527,4536],[1177,37,14,4536,4550],[1178,43,13,4550,4563],[1179,41,14,4563,4577],[1180,54,19,4577,4596],[1181,23,7,4596,4603],[1182,53,17,4603,4620],[1183,50,17,4620,4637],[1184,26,15,4637,4652],[1185,38,14,4652,4666],[1186,45,15,4666,4681],[1187,76,25,4681,4706],[1188,38,15,4706,4721]]]],[23150,23155,23156,23160,23161,23162,23166,23168,23170,23171,23172,23173,23174,23175,23176,23177,23178,23179,23180,23182,23183,23184,23185,23186,23189,23190,23191,23192,23193,23194,23195,23197,23199,23202,23204,23208,23210,23212,23213,23214,23217,23220,23223,23224,23225,23226,23227,23229,23230,23231,23232,23237,23239,23241,23242,23243,23244,23246,23247,23248,23249,23250,23251,23252,23253,23254,23255,23256,23257,23258,23259,23260,23267,23269,23273,23279,23280,23281,23282,23283,23284,23287,23288,23289,23291,23295,23298,23300,23304,23305,23306,23307,23308,23310,23312,23314,23315,23316,23319,23320,23321,23322,23327,23328,23329,23330,23337,23341,23342,23343,23344,23345,23346,23349,23353,23356,23357,23358,23360,23361,23362,23363,23365,23367,23369,23371,23372,23373,23376,23377,23378,23379,23381,23382,23385,23387,23388,23389,23390,23393,23394,23395,23396,23399,23401,23402,23403,23404,23405,23407,23410,23412,23413,23414,23415,23416,23417,23419,23420,23421,23424,23427,23430,23431,23435,23437,23440,23442,23444,23445,23446,23447,23449,23450,23461,23466,23470,23471,23472,23478,23479,23480,23482,23486,23490,23491,23492,23493,23494,23495,23496,23497,23499,23500,23501,23502,23503,23506,23507,23508,23511,23512,23513,23517,23518,23520,23521,23522,23523,23524,23527,23528,23529,23530,23531,23532,23534,23535,23537,23539,23540,23541,23543,23546,23549,23550,23553,23557,23558,23559,23560,23561,23562,23563,23564,23565,23566,23567,23568,23569,23570,23571,23572,23573,23574,23575,23576,23577,23578,23579,23580,23582,23583,23584,23586,23587,23588,23589,23591,23594,23598,23599,23602,23603,23605,23606,23607,23608,23609,23610,23612,23614,23615,23616,23617,23619,23620,23621,23622,23623,23625,23626,23627,23629,23630,23631,23632,23633,23634,23635,23636,23639,23643,23644,23645,23646,23650,23651,23652,23654,23655,23656,23657,23658,23659,23660,23662,23664,23665,23667,23668,23669,23670,23672,23673,23674,23675,23676,23677,23678,23679,23681,23682,23683,23684,23685,23686,23688,23689,23691,23692,23693,23695,23698,23699,23700,23702,23705,23706,23709,23710,23712,23713,23714,23715,23718,23719,23722,23723,23725,23726,23727,23728,23730,23731,23733,23734,23737,23738,23739,23740,23741,23744,23746,23750,23753,23754,23755,23757,23761,23763,23765,23766,23770,23772,23773,23774,23775,23776,23779,23780,23782,23784,23785,23786,23790,23793,23794,23795,23796,23798,23799,23800,23801,23802,23803,23804,23805,23808,23809,23810,23811,23812,23813,23814,23815,23816,23817,23820,23822,23823,23827,23828,23829,23830,23831,23832,23833,23834,23835,23836,23837,23838,23840,23841,23843,23844,23845,23846,23847,23849,23851,23852,23854,23855,23856,23857,23858,23860,23861,23862,23864,23865,23866,23867,23868,23869,23871,23872,23874,23875,23876,23877,23878,23879,23880,23881,23882,23883,23884,23885,23887,23888,23891,23893,23897,23898,23899,23900,23901,23902,23903,23904,23905,23906,23908,23912,23913,23916,23919,23920,23923,23924,23925,23927,23931,23934,23935,23936,23937,23938,23939,23940,23941,23943,23944,23947,23948,23949,23950,23951,23953,23955,23958,23960,23963,23969,23971,23972,23973,23974,23975,23979,23981,23983,23984,23985,23986,23987,23988,23989,23993,23994,23995,23996,23997,23998,24000,24001,24006,24007,24008,24009,24012,24013,24014,24016,24017,24018,24019,24020,24021,24024,24025,24026,24027,24028,24029,24031,24032,24033,24035,24036,24037,24038,24039,24040,24041,24042,24045,24048,24049,24053,24054,24056,24057,24059,24060,24064,24065,24067,24068,24069,24071,24072,24073,24074,24077,24078,24080,24081,24082,24083,24084,24085,24089,24090,24091,24094,24095,24098,24099,24101,24105,24108,24109,24110,24111,24112,24113,24115,24116,24117,24118,24119,24120,24121,24123,24124,24125,24126,24128,24129,24130,24131,24132,24133,24134,24135,24136,24138,24139,24140,24141,24143,24144,24148,24149,24150,24152,24153,24154,24156,24158,24159,24160,24164,24166,24169,24170,24171,24173,24174,24175,24178,24179,24180,24181,24182,24183,24185,24187,24188,24189,24190,24191,24193,24195,24196,24197,24199,24200,24201,24202,24203,24204,24206,24207,24210,24211,24212,24214,24215,24216,24217,24218,24219,24220,24222,24225,24227,24228,24229,24230,24231,24234,24235,24236,24237,24239,24241,24242,24243,24244,24246,24247,24248,24249,24251,24253,24257,24259,24260,24262,24264,24265,24266,24269,24270,24272,24273,24274,24276,24278,24279,24280,24281,24282,24283,24284,24285,24286,24287,24288,24289,24290,24291,24292,24293,24294,24295,24296,24297,24299,24305,24306,24310,24315,24316,24317,24323,24324,24327,24330,24333,24334,24337,24338,24339,24340,24341,24342,24343,24349,24350,24351,24352,24353,24354,24355,24356,24358,24359,24360,24361,24362,24364,24365,24366,24367,24368,24369,24371,24372,24374,24375,24376,24377,24378,24379,24380,24382,24383,24385,24386,24391,24393,24394,24395,24397,24398,24399,24400,24401,24402,24403,24404,24405,24406,24409,24410,24413,24414,24418,24421,24422,24429,24431,24432,24433,24434,24435,24437,24440,24443,24444,24445,24446,24448,24450,24451,24452,24454,24455,24456,24458,24459,24460,24461,24463,24464,24466,24468,24469,24471,24472,24476,24477,24478,24480,24481,24482,24483,24484,24486,24487,24489,24490,24491,24492,24493,24494,24496,24498,24500,24502,24503,24505,24506,24510,24511,24513,24514,24515,24519,24520,24523,24526,24527,24528,24529,24531,24533,24534,24535,24536,24538,24539,24545,24547,24548,24549,24550,24552,24553,24554,24555,24557,24558,24559,24562,24563,24565,24569,24570,24571,24572,24573,24574,24580,24581,24582,24583,24584,24585,24586,24588,24589,24590,24591,24592,24593,24598,24602,24603,24607,24608,24609,24610,24611,24612,24613,24614,24617,24618,24619,24620,24621,24622,24623,24624,24625,24626,24627,24629,24630,24633,24634,24636,24637,24638,24639,24640,24641,24642,24643,24644,24645,24646,24647,24648,24650,24651,24652,24655,24656,24658,24659,24660,24661,24663,24665,24666,24667,24670,24672,24675,24676,24678,24680,24681,24682,24683,24685,24686,24687,24688,24689,24690,24693,24694,24695,24696,24697,24698,24699,24700,24701,24702,24705,24706,24707,24708,24709,24710,24711,24712,24714,24716,24718,24720,24721,24724,24727,24728,24731,24732,24733,24737,24739,24741,24742,24743,24744,24745,24749,24750,24751,24752,24755,24756,24757,24758,24759,24761,24762,24763,24764,24765,24766,24767,24768,24770,24771,24773,24774,24775,24777,24778,24779,24780,24781,24785,24789,24792,24793,24795,24797,24800,24801,24803,24805,24806,24807,24808,24809,24814,24815,24816,24817,24818,24819,24820,24822,24824,24825,24826,24827,24828,24829,24833,24834,24835,24836,24837,24838,24839,24840,24841,24842,24844,24845,24846,24847,24849,24852,24854,24855,24856,24857,24858,24859,24860,24864,24865,24866,24869,24870,24871,24872,24874,24875,24876,24877,24878,24879,24881,24886,24887,24888,24890,24892,24893,24895,24897,24898,24899,24901,24902,24903,24904,24906,24908,24909,24911,24912,24914,24915,24916,24918,24919,24920,24921,24922,24923,24925,24926,24927,24928,24931,24932,24933,24934,24935,24936,24937,24939,24941,24952,24958,24962,24963,24968,24973,24974,24979,24980,24981,24983,24986,24988,24989,24990,24991,24993,24994,24995,24996,24999,25000,25010,25011,25012,25013,25014,25015,25016,25017,25019,25022,25023,25026,25027,25028,25029,25030,25031,25032,25034,25035,25038,25040,25041,25042,25043,25044,25046,25047,25048,25064,25065,25066,25068,25069,25072,25076,25077,25079,25080,25081,25083,25085,25088,25090,25091,25092,25094,25096,25097,25098,25099,25100,25101,25102,25103,25104,25105,25106,25107,25108,25109,25110,25111,25112,25114,25116,25120,25121,25123,25126,25128,25131,25134,25140,25141,25142,25143,25144,25146,25147,25148,25150,25151,25152,25153,25154,25155,25156,25161,25163,25165,25166,25168,25169,25172,25175,25179,25181,25184,25187,25188,25191,25194,25195,25196,25198,25199,25201,25204,25205,25206,25207,25208,25209,25212,25213,25215,25219,25220,25223,25224,25225,25226,25228,25229,25231,25232,25233,25234,25235,25236,25238,25239,25245,25246,25250,25252,25255,25256,25257,25258,25260,25261,25264,25266,25267,25268,25269,25270,25271,25272,25274,25275,25276,25277,25278,25279,25280,25282,25283,25284,25285,25286,25287,25289,25290,25292,25293,25294,25296,25297,25299,25301,25303,25306,25307,25308,25309,25311,25312,25313,25314,25315,25317,25319,25320,25321,25322,25323,25326,25327,25328,25330,25333,25335,25336,25337,25338,25339,25343,25344,25345,25346,25348,25352,25357,25358,25359,25360,25361,25362,25363,25364,25365,25367,25369,25370,25372,25373,25374,25376,25377,25379,25380,25382,25383,25385,25386,25389,25390,25392,25395,25398,25399,25400,25407,25412,25419,25420,25425,25429,25431,25432,25433,25434,25435,25436,25437,25438,25439,25440,25441,25443,25444,25445,25447,25448,25449,25450,25451,25452,25453,25454,25455,25456,25457,25458,25460,25462,25463,25466,25467,25468,25469,25470,25471,25472,25473,25475,25480,25481,25482,25483,25485,25486,25487,25489,25490,25491,25492,25495,25496,25497,25498,25499,25501,25504,25505,25508,25513,25515,25517,25518,25519,25520,25522,25525,25526,25528,25532,25533,25534,25535,25536,25537,25538,25541,25542,25543,25546,25547,25550,25551,25552,25554,25556,25557,25558,25560,25561,25562,25563,25567,25568,25569,25571,25574,25575,25576,25581,25585,25587,25589,25590,25592,25596,25597,25598,25600,25601,25604,25609,25610,25611,25613,25614,25615,25617,25618,25619,25623,25624,25625,25626,25627,25628,25629,25631,25633,25634,25636,25637,25641,25642,25644,25649,25650,25651,25652,25653,25656,25657,25658,25665,25668,25671,25672,25673,25675,25677,25678,25679,25681,25682,25685,25686,25687,25688,25694,25696,25698,25699,25700,25701,25704,25705,25708,25709,25711,25712,25713,25715,25717,25718,25719,25720,25721,25723,25729,25731,25734,25736,25739,25741,25742,25746,25747,25749,25754,25755,25760,25761,25762,25764,25765,25766,25767,25768,25769,25770,25771,25772,25773,25775,25776,25778,25779,25780,25783,25784,25785,25788,25789,25790,25791,25792,25793,25794,25795,25796,25798,25799,25800,25804,25805,25806,25808,25809,25810,25811,25812,25813,25814,25815,25816,25818,25821,25824,25825,25827,25830,25831,25834,25835,25846,25847,25849,25851,25852,25853,25855,25857,25861,25862,25863,25864,25865,25866,25867,25868,25871,25872,25873,25874,25875,25877,25878,25880,25882,25884,25885,25886,25889,25890,25894,25895,25897,25898,25899,25901,25902,25903,25904,25908,25911,25912,25913,25914,25916,25917,25918,25919,25920,25921,25924,25925,25927,25928,25930,25931,25933,25934,25935,25936,25937,25938,25939,25940,25941,25945,25948,25949,25954,25956,25957,25958,25961,25964,25965,25966,25968,25970,25971,25972,25973,25974,25975,25979,25980,25982,25983,25986,25987,25990,25991,25992,25993,25994,25996,25998,26000,26001,26003,26009,26010,26011,26013,26015,26016,26018,26019,26020,26023,26024,26025,26026,26033,26035,26036,26037,26040,26044,26045,26048,26049,26051,26053,26054,26058,26061,26062,26063,26064,26067,26068,26073,26076,26077,26078,26079,26080,26081,26084,26085,26086,26087,26088,26089,26092,26093,26094,26095,26096,26097,26098,26100,26101,26102,26103,26104,26105,26108,26109,26110,26112,26113,26115,26116,26117,26118,26121,26123,26125,26126,26128,26133,26134,26136,26137,26138,26139,26140,26141,26142,26148,26149,26151,26154,26155,26156,26157,26161,26162,26164,26165,26166,26167,26168,26170,26171,26173,26175,26176,26177,26178,26179,26181,26184,26185,26186,26187,26188,26189,26190,26191,26195,26196,26198,26201,26202,26205,26206,26208,26209,26211,26212,26213,26214,26217,26219,26220,26224,26225,26226,26228,26229,26230,26231,26232,26233,26235,26236,26238,26240,26242,26243,26246,26247,26249,26252,26254,26255,26258,26261,26267,26268,26269,26270,26271,26273,26274,26276,26277,26278,26279,26280,26281,26282,26283,26284,26285,26286,26288,26289,26290,26292,26294,26295,26296,26297,26298,26299,26301,26302,26303,26306,26307,26308,26309,26310,26311,26314,26319,26320,26324,26326,26328,26329,26330,26331,26332,26335,26338,26339,26340,26341,26342,26343,26345,26347,26348,26350,26351,26354,26356,26359,26360,26363,26365,26366,26367,26368,26369,26370,26371,26373,26374,26375,26376,26377,26382,26383,26384,26386,26387,26389,26390,26391,26392,26393,26394,26396,26397,26398,26399,26401,26403,26406,26407,26408,26409,26410,26413,26416,26417,26420,26421,26422,26425,26426,26429,26433,26434,26438,26440,26443,26444,26445,26446,26447,26448,26451,26453,26454,26455,26456,26457,26458,26462,26464,26470,26475,26478,26480,26482,26483,26484,26485,26486,26488,26489,26490,26491,26492,26493,26494,26495,26496,26500,26502,26503,26504,26505,26506,26512,26514,26516,26517,26518,26519,26521,26524,26525,26527,26531,26532,26533,26540,26542,26543,26547,26548,26550,26551,26553,26554,26556,26559,26560,26561,26562,26563,26564,26565,26568,26569,26570,26571,26573,26575,26577,26578,26579,26580,26581,26583,26586,26587,26588,26589,26590,26591,26592,26593,26597,26598,26599,26600,26601,26603,26604,26609,26611,26612,26614,26615,26616,26618,26622,26623,26626,26627,26628,26630,26631,26632,26633,26635,26648,26652,26656,26657,26659,26660,26661,26663,26672,26673,26674,26676,26677,26678,26679,26680,26681,26684,26685,26687,26690,26692,26694,26695,26696,26698,26699,26700,26702,26703,26704,26708,26714,26715,26717,26718,26719,26723,26724,26725,26729,26730,26733,26734,26737,26739,26741,26742,26743,26746,26747,26749,26751,26752,26753,26754,26758,26759,26760,26762,26763,26764,26765,26767,26768,26770,26771,26772,26773,26774,26775,26777,26780,26781,26782,26784,26785,26786,26787,26788,26792,26794,26795,26796,26797,26799,26800,26801,26802,26803,26804,26805,26807,26808,26809,26811,26813,26816,26817,26818,26820,26821,26822,26823,26824,26827,26828,26830,26831,26832,26834,26837,26838,26839,26840,26844,26845,26846,26848,26849,26850,26851,26852,26853,26854,26855,26856,26857,26859,26861,26863,26865,26866,26867,26868,26869,26870,26871,26872,26873,26874,26875,26876,26877,26878,26879,26882,26885,26886,26887,26891,26892,26893,26898,26899,26900,26902,26904,26905,26906,26908,26909,26910,26915,26918,26921,26922,26923,26924,26925,26926,26927,26929,26930,26931,26937,26938,26939,26941,26942,26944,26945,26949,26950,26951,26953,26955,26958,26959,26960,26963,26964,26965,26966,26968,26969,26970,26972,26973,26974,26978,26980,26982,26983,26986,26987,26988,26990,26991,26992,26995,26996,26997,26998,26999,27001,27002,27003,27004,27005,27006,27007,27008,27009,27010,27011,27012,27015,27018,27019,27020,27021,27023,27024,27025,27026,27027,27028,27029,27030,27032,27033,27035,27036,27037,27039,27040,27043,27044,27045,27046,27048,27052,27053,27054,27055,27056,27057,27058,27059,27061,27062,27065,27067,27068,27069,27070,27071,27072,27073,27074,27075,27076,27077,27078,27079,27080,27081,27082,27083,27084,27085,27086,27088,27089,27091,27092,27093,27096,27099,27100,27101,27102,27103,27105,27106,27107,27108,27109,27110,27111,27113,27114,27115,27116,27117,27118,27123,27124,27125,27127,27129,27132,27133,27139,27140,27141,27142,27144,27146,27147,27148,27149,27150,27151,27152,27153,27154,27157,27158,27159,27160,27161,27162,27164,27167,27168,27169,27170,27172,27174,27177,27179,27180,27182,27185,27186,27188,27190,27192,27194,27196,27198,27200,27201,27202,27204,27205,27206,27207,27208,27209,27210,27212,27213,27214,27215,27216,27217,27218,27220,27221,27222,27223,27224,27226,27227,27230,27231,27233,27235,27236,27237,27238,27239,27240,27241,27242,27243,27245,27246,27247,27248,27251,27254,27255,27256,27257,27258,27261,27262,27263,27266,27268,27270,27271,27275,27276,27278,27280,27281,27282,27283,27289,27295,27296,27297,27298,27299,27300,27301,27302,27303,27304,27306,27307,27308,27309,27313,27318,27319,27322,27323,27324,27325,27326,27327,27328,27329,27330,27331,27333,27335,27336,27337,27338,27339,27340,27341,27342,27343,27344,27345,27346,27347,27348,27349,27350,27351,27352,27354,27355,27356,27357,27359,27360,27361,27363,27364,27366,27367,27368,27369,27370,27371,27372,27373,27374,27376,27377,27379,27380,27382,27384,27386,27388,27389,27391,27393,27394,27395,27396,27398,27401,27402,27404,27405,27406,27407,27408,27409,27410,27411,27412,27413,27414,27415,27416,27417,27418,27419,27420,27425,27426,27427,27428,27429,27432,27433,27434,27436,27437,27439,27440,27441,27442,27443,27444,27445,27446,27447,27448,27449,27450,27452,27453,27454,27457,27458,27459,27461,27463,27464,27465,27466,27468,27469,27470,27472,27473,27474,27475,27477,27478,27480,27482,27483,27485,27486,27487,27488,27489,27490,27492,27493,27494,27496,27497,27498,27500,27501,27502,27503,27505,27506,27507,27508,27509,27510,27514,27515,27516,27518,27519,27521,27522,27523,27524,27525,27527,27528,27529,27530,27531,27532,27533,27534,27536,27537,27539,27540,27541,27542,27547,27549,27550,27552,27553,27554,27555,27557,27560,27561,27562,27563,27564,27565,27566,27568,27569,27570,27571,27573,27574,27575,27576,27579,27580,27581,27582,27583,27584,27585,27586,27587,27588,27589,27590,27591,27593,27594,27595,27596,27597,27598,27600,27601,27602,27604,27605,27606,27609,27610,27611,27612,27614,27615,27616,27617,27618,27620,27623,27626,27627,27629,27632,27633,27634,27635,27638,27641,27642,27643,27645,27648,27649,27650,27651,27652,27653,27654,27655,27658,27661,27664,27665,27667,27668,27669,27671,27672,27675,27677,27678,27680,27681,27682,27683,27684,27685,27688,27689,27690,27691,27692,27693,27694,27695,27696,27697,27698,27699,27700,27701,27702,27703,27704,27706,27707,27709,27711,27713,27714,27715,27716,27717,27718,27720,27721,27724,27726,27727,27728,27730,27731,27732,27733,27734,27735,27736,27737,27740,27741,27743,27744,27745,27746,27748,27749,27750,27751,27752,27753,27754,27756,27757,27758,27760,27761,27762,27764,27765,27766,27767,27768,27770,27774,27775,27776,27778,27779,27781,27783,27787,27789,27791,27793,27796,27797,27798,27799,27801,27802,27803,27804,27805,27808,27810,27811,27812,27813,27814,27817,27818,27819,27820,27823,27824,27827,27828,27829,27830,27832,27833,27835,27836,27837,27838,27840,27841,27842,27843,27844,27845,27846,27848,27849,27850,27853,27857,27858,27859,27860,27861,27862,27864,27865,27866,27867,27870,27871,27872,27873,27874,27877,27882,27885,27886,27887,27889,27892,27893,27894,27895,27896,27897,27898,27899,27900,27901,27902,27903,27904,27905,27906,27907,27908,27910,27914,27915,27916,27918,27919,27920,27922,27923,27924,27926,27927,27928,27930,27933,27938,27939,27940,27942,27945,27946,27947,27948,27950,27953,27954,27955,27956,27957,27962,27963,27964,27965,27966,27970,27975,27976,27977,27978,27979,27980,27981,27982,27985,27986,27988,27989,27992,27993,27994,27997,27998,28010,28012,28014,28015,28016,28017,28020,28025,28026,28027,28028,28031,28033,28034,28035,28036,28037,28038,28039,28041,28042,28046,28049,28052,28057,28058,28059,28061,28062,28063,28064,28066,28067,28072,28073,28074,28080,28087,28089,28090,28091,28092,28093,28095,28096,28097,28098,28099,28100,28101,28102,28103,28104,28105,28107,28113,28114,28115,28116,28117,28118,28119,28120,28121,28123,28126,28127,28128,28129,28132,28134,28135,28136,28137,28139,28142,28143,28144,28145,28151,28152,28155,28159,28160,28161,28163,28164,28166,28167,28172,28175,28176,28178,28180,28181,28182,28183,28185,28191,28193,28194,28195,28196,28199,28200,28201,28203,28204,28206,28211,28213,28216,28220,28221,28224,28225,28226,28227,28228,28230,28233,28234,28235,28237,28238,28246,28247,28248,28249,28251,28256,28258,28261,28267,28268,28269,28270,28273,28275,28277,28278,28280,28281,28282,28286,28288,28290,28297,28299,28300,28304,28306,28307,28308,28311,28312,28314,28316,28318,28319,28322,28328,28329,28330,28332,28333,28334,28336,28337,28340,28341,28343,28346,28347,28348,28350,28351,28352,28353,28354,28356,28359,28360,28361,28362,28365,28367,28369,28370,28371,28373,28374,28376,28379,28380,28381,28382,28383,28384,28388,28390,28391,28394,28395,28400,28401,28402,28404,28405,28406,28408,28415,28420,28423,28426,28427,28429,28430,28438,28442,28446,28448,28450,28452,28453,28455,28458,28459,28460,28461,28464,28468,28469,28471,28478,28480,28481,28482,28484,28485,28486,28490,28491,28495,28497,28499,28501,28502,28504,28507,28513,28515,28516,28518,28519,28520,28521,28522,28531,28533,28534,28537,28538,28539,28540,28542,28545,28547,28548,28549,28552,28553,28554,28558,28559,28560,28562,28563,28564,28568,28569,28570,28571,28572,28574,28577,28578,28580,28583,28585,28587,28589,28593,28595,28596,28599,28600,28602,28603,28606,28609,28610,28612,28616,28617,28618,28622,28623,28625,28626,28627,28629,28632,28634,28638,28639,28640,28641,28642,28643,28645,28646,28648,28649,28650,28651,28652,28653,28655,28656,28657,28658,28659,28660,28662,28665,28666,28671,28675,28676,28683,28685,28687,28689,28690,28693,28694,28695,28699,28701,28703,28705,28707,28708,28711,28712,28714,28715,28719,28721,28722,28723,28724,28725,28727,28728,28741,28742,28746,28747,28753,28757,28758,28760,28763,28765,28766,28767,28770,28772,28774,28775,28776,28777,28783,28786,28787,28788,28789,28791,28793,28795,28796,28797,28798,28799,28801,28803,28804,28805,28806,28807,28809,28812,28814,28819,28820,28822,28828,28830,28833,28838,28841,28847,28848,28849,28850,28851,28854,28855,28857,28858,28859,28861,28863,28865,28866,28869,28870,28872,28873,28874,28875,28878,28879,28882,28883,28885,28887,28888,28891,28895,28896,28899,28901,28905,28911,28922,28923,28924,28926,28929,28930,28931,28933,28934,28936,28937,28938,28940,28941,28943,28947,28948,28949,28950,28951,28954,28956,28957,28958,28959,28961,28965,28966,28968,28969,28970,28972,28975,28976,28978,28979,28984,28985,28989,28992,28994,28996,28998,28999,29007,29014,29017,29019,29020,29021,29022,29024,29025,29029,29030,29031,29033,29034,29036,29040,29043,29045,29048,29051,29053,29054,29056,29057,29059,29061,29064,29068,29070,29071,29073,29076,29078,29079,29080,29083,29084,29086,29087,29088,29089,29090,29091,29093,29094,29095,29101,29102,29103,29104,29107,29109,29110,29111,29112,29113,29114,29115,29116,29118,29119,29120,29121,29123,29124,29125,29126,29132,29133,29134,29135,29136,29137,29140,29144,29145,29146,29152,29154,29155,29158,29160,29161,29162,29163,29165,29169,29171,29173,29175,29176,29179,29181,29184,29186,29190,29194,29196,29200,29202,29204,29205,29206,29207,29209,29211,29212,29213,29215,29216,29217,29219,29220,29221,29223,29224,29225,29226,29228,29229,29231,29232,29236,29237,29240,29241,29242,29243,29244,29245,29247,29248,29249,29250,29252,29253,29254,29255,29256,29257,29258,29259,29260,29261,29262,29263,29265,29267,29269,29270,29271,29272,29273,29275,29278,29279,29281,29283,29284,29285,29286,29287,29288,29290,29294,29295,29296,29298,29299,29301,29302,29309,29310,29313,29314,29315,29317,29318,29320,29321,29323,29326,29327,29328,29329,29330,29333,29336,29337,29340,29343,29344,29345,29346,29347,29348,29349,29350,29351,29352,29353,29354,29356,29360,29362,29366,29368,29372,29373,29374,29375,29377,29378,29380,29385,29388,29391,29393,29400,29401,29408,29409,29412,29413,29421,29422,29423,29424,29427,29429,29430,29431,29432,29435,29437,29439,29442,29444,29445,29447,29449,29451,29457,29460,29463,29464,29465,29467,29469,29470,29471,29473,29474,29475,29477,29478,29479,29480,29481,29483,29485,29487,29488,29489,29490,29491,29492,29495,29496,29497,29499,29500,29501,29502,29503,29504,29505,29506,29507,29508,29511,29513,29514,29516,29517,29519,29522,29523,29526,29527,29532,29533,29537,29540,29541,29545,29547,29553,29554,29555,29556,29557,29558,29559,29560,29561,29566,29568,29570,29572,29574,29578,29579,29584,29585,29586,29592,29595,29599,29602,29603,29605,29608,29609,29613,29618,29619,29620,29622,29623,29635,29640,29644,29647,29648,29649,29650,29652,29653,29654,29656,29657,29658,29661,29662,29663,29664,29665,29668,29669,29671,29673,29676,29679,29681,29683,29684,29694,29695,29696,29700,29701,29704,29707,29710,29711,29713,29714,29730,29737,29738,29740,29744,29746,29747,29748,29750,29753,29759,29761,29763,29771,29777,29779,29780,29781,29784,29788,29789,29790,29791,29793,29798,29800,29802,29803,29804,29805,29807,29809,29810,29814,29815,29817,29819,29822,29824,29825,29827,29828,29831,29833,29834,29836,29837,29841,29842,29845,29846,29848,29849,29853,29858,29861,29864,29868,29870,29871,29872,29874,29876,29877,29878,29883,29884,29887,29888,29889,29891,29892,29893,29901,29902,29905,29906,29907,29912,29913,29916,29918,29919,29921,29927,29936,29938,29940,29943,29944,29945,29949,29951,29963,29964,29965,29966,29967,29968,29969,29970,29971,29973,29975,29976,29979,29980,29982,29984,29986,29987,29990,29991,29994,29996,29998,30001,30002,30003,30008,30009,30010,30012,30016,30017,30018,30023,30025,30026,30027,30028,30030,30031,30032,30033,30036,30037,30040,30042,30045,30048,30050,30051,30054,30055,30056,30059,30060,30061,30063,30064,30065,30067,30068,30069,30070,30071,30074,30075,30076,30077,30079,30081,30082,30083,30085,30087,30088,30089,30090,30091,30092,30093,30094,30096,30097,30100,30101,30102,30103,30105,30106,30107,30108,30109,30110,30111,30112,30113,30114,30117,30118,30119,30120,30121,30122,30123,30124,30125,30126,30127,30128,30129,30130,30131,30134,30135,30138,30141,30142,30143,30144,30148,30149,30152,30153,30154,30156,30158,30159,30160,30162,30165,30167,30169,30171,30174,30175,30179,30181,30184,30185,30189,30193,30194,30195,30197,30198,30199,30200,30201,30202,30203,30204,30210,30211,30213,30214,30217,30221,30222,30223,30224,30226,30227,30229,30232,30233,30237,30238,30239,30245,30248,30249,30250,30251,30252,30253,30254,30261,30263,30265,30267,30269,30273,30275,30276,30277,30278,30283,30287,30291,30293,30294,30296,30298,30299,30300,30301,30302,30303,30309,30312,30314,30316,30318,30319,30321,30322,30323,30324,30325,30327,30329,30330,30333,30336,30337,30341,30342,30344,30347,30351,30352,30357,30358,30359,30360,30361,30362,30363,30364,30365,30366,30368,30369,30371,30372,30373,30377,30381,30383,30384,30385,30387,30388,30391,30396,30398,30399,30401,30402,30405,30406,30407,30408,30409,30410,30411,30412,30414,30416,30417,30423,30424,30425,30427,30428,30429,30431,30436,30439,30441,30442,30443,30444,30447,30448,30449,30450,30453,30458,30460,30463,30464,30465,30466,30467,30468,30469,30471,30474,30475,30478,30479,30482,30483,30487,30490,30491,30495,30496,30497,30501,30502,30507,30515,30516,30517,30520,30521,30522,30524,30526,30527,30528,30529,30531,30532,30534,30537,30538,30539,30541,30542,30543,30545,30546,30547,30548,30551,30552,30554,30555,30557,30558,30559,30560,30563,30564,30565,30566,30567,30570,30571,30572,30573,30574,30575,30577,30580,30583,30587,30589,30590,30592,30593,30595,30596,30598,30602,30603,30604,30605,30606,30607,30608,30609,30612,30617,30618,30619,30620,30625,30626,30627,30628,30629,30630,30631,30632,30633,30634,30635,30636,30637,30638,30639,30643,30644,30646,30647,30648,30649,30651,30652,30654,30658,30659,30661,30663,30665,30666,30667,30668,30670,30672,30675,30676,30677,30679,30681,30683,30685,30689,30693,30695,30699,30700,30701,30702,30704,30705,30706,30707,30708,30709,30710,30713,30714,30715,30717,30718,30722,30723,30724,30725,30726,30727,30728,30729,30731,30732,30733,30734,30735,30736,30740,30741,30743,30744,30745,30746,30747,30751,30752,30753,30755,30756,30758,30759,30760,30764,30766,30768,30769,30770,30771,30772,30773,30774,30775,30777,30778,30780,30781,30782,30783,30784,30785,30786,30787,30788,30789,30790,30791,30792,30793,30794,30796,30797,30798,30799,30800,30801,30802,30803,30805,30806,30808,30809,30810,30811,30812,30813,30814,30819,30820,30821,30823,30824,30825,30826,30827,30828,30829,30830,30831,30832,30833,30834,30835,30836,30837,30838,30839,30840,30841,30842,30843,30844,30847,30849,30851,30853,30854,30855,30856,30857,30858,30860,30862,30863,30865,30866,30867,30868,30869,30870,30871,30873,30874,30876,30878,30879,30880,30881,30882,30885,30886,30887,30888,30890,30891,30892,30895,30897,30898,30900,30901,30902,30903,30904,30905,30906,30907,30908,30909,30910,30911,30912,30915,30916,30918,30919,30920,30921,30922,30923,30925,30926,30927,30929,30930,30931,30932,30933,30934,30935,30936,30937,30938,30939,30940,30941,30942,30943,30944,30945,30946,30947,30948,30949,30951,30952,30953,30954,30955,30956,30957,30958,30959,30961,30962,30963,30964,30965,30966,30967,30968,30971,30972,30973,30975,30976,30977,30979,30980,30981,30982,30983,30984,30985,30986,30987,30988,30989,30990,30991,30992,30993,30994,30995,30996,30999,31002,31003,31004,31007,31008,31010,31011,31012,31014,31016,31017,31019,31021,31022,31024,31025,31026,31027,31030,31031,31032,31034,31036,31037,31038,31039,31040,31041,31042,31043,31044,31045,31046,31047,31048,31049,31050,31051,31052,31053,31054,31055,31056,31057,31058,31059,31061,31062,31063,31064,31065,31067,31068,31069,31070,31071,31072,31073,31074,31075,31076,31077,31078,31079,31080,31081,31082,31083,31086,31087,31088,31089,31090,31093,31094,31096,31097,31098,31099,31101]]],["+",[96,90,[[39,16,15,0,15,[[941,2,2,0,2],[942,4,4,2,6],[943,1,1,6,7],[944,1,1,7,8],[947,1,1,8,9],[949,1,1,9,10],[950,3,2,10,12],[952,1,1,12,13],[953,1,1,13,14],[955,1,1,14,15]]],[40,4,4,15,19,[[960,1,1,15,16],[963,1,1,16,17],[968,1,1,17,18],[969,1,1,18,19]]],[41,9,9,19,28,[[974,1,1,19,20],[975,1,1,20,21],[978,2,2,21,23],[980,1,1,23,24],[981,1,1,24,25],[982,1,1,25,26],[990,1,1,26,27],[995,1,1,27,28]]],[42,5,5,28,33,[[1003,1,1,28,29],[1006,1,1,29,30],[1007,1,1,30,31],[1010,1,1,31,32],[1016,1,1,32,33]]],[43,19,18,33,51,[[1018,1,1,33,34],[1022,1,1,34,35],[1027,1,1,35,36],[1029,1,1,36,37],[1030,1,1,37,38],[1031,2,2,38,40],[1032,1,1,40,41],[1034,3,3,41,44],[1040,3,3,44,47],[1044,1,1,47,48],[1045,4,3,48,51]]],[44,4,4,51,55,[[1048,1,1,51,52],[1050,1,1,52,53],[1056,1,1,53,54],[1058,1,1,54,55]]],[45,7,7,55,62,[[1069,1,1,55,56],[1070,1,1,56,57],[1071,1,1,57,58],[1073,3,3,58,61],[1074,1,1,61,62]]],[46,3,3,62,65,[[1078,1,1,62,63],[1081,1,1,63,64],[1088,1,1,64,65]]],[47,2,2,65,67,[[1093,1,1,65,66],[1094,1,1,66,67]]],[48,1,1,67,68,[[1100,1,1,67,68]]],[49,2,2,68,70,[[1103,1,1,68,69],[1106,1,1,69,70]]],[53,1,1,70,71,[[1122,1,1,70,71]]],[54,2,2,71,73,[[1126,2,2,71,73]]],[55,2,2,73,75,[[1130,1,1,73,74],[1131,1,1,74,75]]],[57,7,7,75,82,[[1133,1,1,75,76],[1134,1,1,76,77],[1138,1,1,77,78],[1140,1,1,78,79],[1141,2,2,79,81],[1142,1,1,81,82]]],[58,1,1,82,83,[[1147,1,1,82,83]]],[59,1,1,83,84,[[1152,1,1,83,84]]],[62,1,1,84,85,[[1164,1,1,84,85]]],[65,9,5,85,90,[[1167,4,2,85,87],[1168,1,1,87,88],[1186,2,1,88,89],[1187,2,1,89,90]]]],[23562,23575,23606,23612,23619,23620,23639,23675,23774,23857,23877,23906,23979,24028,24195,24340,24476,24678,24737,25022,25040,25168,25195,25282,25313,25370,25717,25991,26340,26505,26578,26679,26887,26929,27080,27302,27357,27406,27418,27441,27472,27528,27529,27555,27751,27752,27756,27896,27904,27916,27923,27994,28063,28237,28275,28540,28563,28589,28648,28658,28659,28676,28820,28861,29021,29119,29154,29283,29377,29444,29753,29837,29848,29912,29936,29970,29987,30050,30105,30114,30128,30134,30300,30412,30647,30705,30708,30734,31047,31059]]],["He",[16,16,[[39,6,6,0,6,[[941,3,3,0,3],[942,1,1,3,4],[944,1,1,4,5],[949,1,1,5,6]]],[40,4,4,6,10,[[962,2,2,6,8],[963,1,1,8,9],[965,1,1,9,10]]],[41,1,1,10,11,[[982,1,1,10,11]]],[42,2,2,11,13,[[1005,2,2,11,13]]],[43,1,1,13,14,[[1039,1,1,13,14]]],[45,1,1,14,15,[[1062,1,1,14,15]]],[46,1,1,15,16,[[1085,1,1,15,16]]]],[23550,23567,23576,23615,23674,23855,24444,24445,24469,24557,25389,26455,26457,27731,28394,28947]]],["She",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26392]]],["Some",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23686]]],["THE",[11,5,[[39,2,1,0,1,[[955,2,1,0,1]]],[40,2,1,1,2,[[971,2,1,1,2]]],[41,2,1,2,3,[[995,2,1,2,3]]],[42,2,1,3,4,[[1015,2,1,3,4]]],[65,3,1,4,5,[[1183,3,1,4,5]]]],[24166,24852,25973,26844,30980]]],["The",[197,194,[[39,33,33,0,33,[[932,1,1,0,1],[934,1,1,1,2],[936,2,2,2,4],[937,1,1,4,5],[938,1,1,5,6],[939,1,1,6,7],[941,7,7,7,14],[944,1,1,14,15],[945,1,1,15,16],[946,1,1,16,17],[947,2,2,17,19],[949,4,4,19,23],[950,3,3,23,26],[951,1,1,26,27],[952,1,1,27,28],[954,2,2,28,30],[955,3,3,30,33]]],[40,12,12,33,45,[[957,1,1,33,34],[958,1,1,34,35],[960,1,1,35,36],[962,1,1,36,37],[963,1,1,37,38],[965,1,1,38,39],[966,1,1,39,40],[967,1,1,40,41],[968,1,1,41,42],[970,3,3,42,45]]],[41,24,24,45,69,[[977,1,1,45,46],[979,1,1,46,47],[980,1,1,47,48],[981,2,2,48,50],[982,2,2,50,52],[983,1,1,52,53],[984,3,3,53,56],[985,1,1,56,57],[986,1,1,57,58],[988,1,1,58,59],[989,1,1,59,60],[990,1,1,60,61],[991,1,1,61,62],[992,3,3,62,65],[994,2,2,65,67],[996,2,2,67,69]]],[42,46,45,69,114,[[997,2,2,69,71],[998,1,1,71,72],[999,2,2,72,74],[1000,7,7,74,81],[1001,4,4,81,85],[1002,3,3,85,88],[1003,4,4,88,92],[1004,1,1,92,93],[1005,2,2,93,95],[1006,3,3,95,98],[1007,2,2,98,100],[1008,6,5,100,105],[1014,3,3,105,108],[1015,4,4,108,112],[1016,2,2,112,114]]],[43,18,18,114,132,[[1018,1,1,114,115],[1019,2,2,115,117],[1020,1,1,117,118],[1021,1,1,118,119],[1022,2,2,119,121],[1024,1,1,121,122],[1025,1,1,122,123],[1027,1,1,123,124],[1030,1,1,124,125],[1031,1,1,125,126],[1032,1,1,126,127],[1033,1,1,127,128],[1038,1,1,128,129],[1039,2,2,129,131],[1040,1,1,131,132]]],[44,10,10,132,142,[[1046,1,1,132,133],[1053,1,1,133,134],[1054,1,1,134,135],[1055,1,1,135,136],[1056,1,1,136,137],[1058,1,1,137,138],[1060,1,1,138,139],[1061,3,3,139,142]]],[45,11,10,142,152,[[1068,2,2,142,144],[1071,3,2,144,146],[1076,3,3,146,149],[1077,3,3,149,152]]],[46,2,2,152,154,[[1088,1,1,152,153],[1090,1,1,153,154]]],[47,2,2,154,156,[[1093,2,2,154,156]]],[48,1,1,156,157,[[1097,1,1,156,157]]],[49,3,3,157,160,[[1106,3,3,157,160]]],[50,1,1,160,161,[[1110,1,1,160,161]]],[51,1,1,161,162,[[1115,1,1,161,162]]],[52,3,3,162,165,[[1118,3,3,162,165]]],[53,1,1,165,166,[[1123,1,1,165,166]]],[54,4,4,166,170,[[1125,2,2,166,168],[1128,2,2,168,170]]],[56,1,1,170,171,[[1132,1,1,170,171]]],[57,1,1,171,172,[[1141,1,1,171,172]]],[58,1,1,172,173,[[1149,1,1,172,173]]],[59,2,2,173,175,[[1151,1,1,173,174],[1155,1,1,174,175]]],[60,1,1,175,176,[[1158,1,1,175,176]]],[61,1,1,176,177,[[1160,1,1,176,177]]],[62,2,2,177,179,[[1164,2,2,177,179]]],[63,1,1,179,180,[[1165,1,1,179,180]]],[65,15,14,180,194,[[1167,2,1,180,181],[1170,1,1,181,182],[1174,1,1,182,183],[1177,2,2,183,185],[1183,3,3,185,188],[1184,1,1,188,189],[1185,1,1,189,190],[1187,3,3,190,193],[1188,1,1,193,194]]]],[23225,23304,23353,23365,23416,23424,23478,23563,23567,23570,23572,23577,23578,23580,23673,23722,23753,23765,23782,23829,23851,23857,23869,23874,23880,23916,23920,24007,24072,24078,24150,24173,24178,24230,24287,24337,24431,24489,24569,24639,24670,24709,24768,24775,24792,25146,25229,25256,25321,25323,25365,25372,25439,25475,25482,25505,25533,25571,25636,25671,25699,25765,25783,25813,25821,25875,25889,25998,26025,26073,26087,26112,26128,26155,26167,26171,26173,26175,26181,26184,26205,26217,26220,26225,26229,26279,26298,26309,26335,26348,26360,26374,26394,26448,26470,26491,26494,26514,26551,26554,26597,26599,26603,26609,26614,26795,26804,26816,26832,26840,26846,26856,26868,26892,26924,26969,26983,27009,27048,27082,27089,27118,27208,27295,27379,27425,27465,27519,27678,27718,27728,27754,27947,28132,28167,28196,28228,28278,28306,28352,28356,28360,28491,28521,28574,28583,28763,28765,28774,28795,28797,28799,29020,29057,29113,29114,29224,29447,29463,29465,29560,29649,29694,29695,29696,29781,29825,29827,29883,29892,29963,30113,30342,30398,30478,30531,30557,30646,30658,30659,30717,30778,30834,30886,30887,30983,30984,30990,31008,31030,31069,31072,31073,31101]]],["They",[6,6,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[966,1,1,2,3]]],[41,2,2,3,5,[[980,1,1,3,4],[981,1,1,4,5]]],[57,1,1,5,6,[[1145,1,1,5,6]]]],[24120,24150,24625,25258,25320,30265]]],["Those",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25257]]],["Which",[2,2,[[56,1,1,0,1,[[1132,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[29949,30409]]],["Who",[4,4,[[43,1,1,0,1,[[1038,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]],[50,1,1,2,3,[[1107,1,1,2,3]]],[53,1,1,3,4,[[1124,1,1,3,4]]]],[27701,28804,29473,29804]]],["according",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30522]]],["another",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28282]]],["are",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28820]]],["befallen",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23378]]],["conditions",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25585]]],["disciples",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25140]]],["for",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30091]]],["he",[127,126,[[39,29,29,0,29,[[930,2,2,0,2],[932,1,1,2,3],[940,4,4,3,7],[941,2,2,7,9],[942,1,1,9,10],[943,5,5,10,15],[944,1,1,15,16],[946,1,1,16,17],[947,3,3,17,20],[948,2,2,20,22],[949,1,1,22,23],[950,1,1,23,24],[953,2,2,24,26],[954,3,3,26,29]]],[40,25,25,29,54,[[957,1,1,29,30],[961,2,2,30,32],[962,1,1,32,33],[964,1,1,33,34],[965,2,2,34,36],[966,6,6,36,42],[968,1,1,42,43],[970,7,7,43,50],[971,3,3,50,53],[972,1,1,53,54]]],[41,52,52,54,106,[[975,1,1,54,55],[976,2,2,55,57],[977,1,1,57,58],[978,2,2,58,60],[979,2,2,60,62],[980,7,7,62,69],[981,3,3,69,72],[982,3,3,72,75],[983,1,1,75,76],[984,2,2,76,78],[985,2,2,78,80],[986,1,1,80,81],[987,3,3,81,84],[988,3,3,84,87],[989,2,2,87,89],[990,5,5,89,94],[992,2,2,94,96],[993,1,1,96,97],[994,7,7,97,104],[995,2,2,104,106]]],[42,6,6,106,112,[[1000,1,1,106,107],[1002,1,1,107,108],[1005,1,1,108,109],[1014,1,1,109,110],[1016,1,1,110,111],[1017,1,1,111,112]]],[43,9,9,112,121,[[1020,1,1,112,113],[1024,1,1,113,114],[1025,1,1,114,115],[1026,1,1,115,116],[1027,1,1,116,117],[1039,1,1,117,118],[1042,1,1,118,119],[1043,2,2,119,121]]],[46,1,1,121,122,[[1085,1,1,121,122]]],[47,1,1,122,123,[[1094,1,1,122,123]]],[55,1,1,123,124,[[1130,1,1,123,124]]],[57,1,1,124,125,[[1144,1,1,124,125]]],[61,2,1,125,126,[[1162,2,1,125,126]]]],[23183,23190,23213,23492,23500,23528,23537,23568,23591,23626,23636,23646,23656,23657,23659,23695,23757,23766,23773,23779,23805,23813,23856,23884,24020,24025,24072,24077,24124,24260,24398,24404,24434,24533,24550,24559,24591,24608,24610,24624,24636,24638,24688,24774,24785,24806,24815,24822,24824,24825,24828,24829,24849,24879,25038,25103,25106,25141,25154,25156,25235,25238,25255,25266,25269,25275,25293,25297,25301,25315,25322,25360,25390,25392,25400,25451,25473,25480,25526,25541,25569,25615,25617,25619,25626,25627,25650,25682,25688,25709,25711,25715,25717,25729,25796,25804,25834,25874,25889,25897,25898,25902,25921,25934,25938,25957,26188,26277,26478,26799,26892,26904,27001,27118,27207,27226,27263,27718,27818,27838,27848,28947,29154,29916,30222,30607]]],["her",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23150]]],["him",[12,12,[[39,3,3,0,3,[[952,2,2,0,2],[953,1,1,2,3]]],[40,1,1,3,4,[[969,1,1,3,4]]],[41,1,1,4,5,[[982,1,1,4,5]]],[44,2,2,5,7,[[1048,1,1,5,6],[1050,1,1,6,7]]],[47,1,1,7,8,[[1094,1,1,7,8]]],[57,1,1,8,9,[[1144,1,1,8,9]]],[59,1,1,9,10,[[1152,1,1,9,10]]],[61,2,2,10,12,[[1160,2,2,10,12]]]],[23974,23975,24037,24732,25379,28017,28061,29160,30237,30408,30563,30564]]],["it",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30008]]],["of",[8,7,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,3,2,1,3,[[958,2,1,1,2],[970,1,1,2,3]]],[45,2,2,3,5,[[1062,1,1,3,4],[1071,1,1,4,5]]],[47,1,1,5,6,[[1092,1,1,5,6]]],[58,1,1,6,7,[[1146,1,1,6,7]]]],[24082,24278,24778,28381,28596,29101,30291]]],["one",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]]],[24222,25675]]],["other",[3,3,[[41,1,1,0,1,[[989,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]]],[25675,27541,29378]]],["others",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]]],[24121,27555]]],["part",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27418]]],["same",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28507]]],["shalt",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23780]]],["she",[10,9,[[39,3,3,0,3,[[942,1,1,0,1],[943,2,2,1,3]]],[40,3,2,3,5,[[962,2,1,3,4],[963,1,1,4,5]]],[41,1,1,5,6,[[973,1,1,5,6]]],[43,3,3,6,9,[[1022,1,1,6,7],[1026,1,1,7,8],[1029,1,1,8,9]]]],[23605,23658,23660,24431,24491,24922,27067,27256,27352]]],["some",[8,5,[[39,3,2,0,2,[[941,2,1,0,1],[956,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[43,1,1,3,4,[[1045,1,1,3,4]]],[48,3,1,4,5,[[1100,3,1,4,5]]]],[23562,24212,24678,27923,29283]]],["that",[51,44,[[39,9,9,0,9,[[930,1,1,0,1],[933,1,1,1,2],[934,1,1,2,3],[935,1,1,3,4],[948,1,1,4,5],[951,2,2,5,7],[952,1,1,7,8],[955,1,1,8,9]]],[40,3,3,9,12,[[960,2,2,9,11],[969,1,1,11,12]]],[41,10,6,12,18,[[977,2,2,12,14],[978,5,2,14,16],[980,1,1,16,17],[983,2,1,17,18]]],[42,3,3,18,21,[[1001,2,2,18,20],[1004,1,1,20,21]]],[43,6,5,21,26,[[1019,1,1,21,22],[1021,1,1,22,23],[1031,1,1,23,24],[1033,1,1,24,25],[1043,2,1,25,26]]],[44,5,4,26,30,[[1046,2,2,26,28],[1048,1,1,28,29],[1049,2,1,29,30]]],[45,1,1,30,31,[[1074,1,1,30,31]]],[46,1,1,31,32,[[1088,1,1,31,32]]],[48,1,1,32,33,[[1100,1,1,32,33]]],[49,1,1,33,34,[[1105,1,1,33,34]]],[50,2,1,34,35,[[1107,2,1,34,35]]],[54,2,2,35,37,[[1125,1,1,35,36],[1126,1,1,36,37]]],[55,1,1,37,38,[[1131,1,1,37,38]]],[59,2,2,38,40,[[1153,1,1,38,39],[1155,1,1,39,40]]],[60,1,1,40,41,[[1156,1,1,40,41]]],[61,2,2,41,43,[[1160,1,1,41,42],[1162,1,1,42,43]]],[65,1,1,43,44,[[1171,1,1,43,44]]]],[23185,23249,23305,23319,23801,23936,23944,23995,24138,24334,24354,24742,25116,25143,25187,25188,25260,25445,26238,26254,26399,26988,27046,27429,27515,27841,27945,27956,28015,28038,28675,28992,29281,29430,29481,29814,29828,29938,30427,30479,30482,30566,30606,30792]]],["the",[7597,4362,[[39,1065,597,0,597,[[929,11,7,0,7],[930,35,20,7,27],[931,17,8,27,35],[932,22,12,35,47],[933,39,25,47,72],[934,32,15,72,87],[935,25,13,87,100],[936,36,19,100,119],[937,44,24,119,143],[938,21,14,143,157],[939,19,9,157,166],[940,62,34,166,200],[941,79,35,200,235],[942,40,24,235,259],[943,32,19,259,278],[944,34,18,278,296],[945,22,15,296,311],[946,21,15,311,326],[947,13,10,326,336],[948,37,23,336,359],[949,65,35,359,394],[950,37,24,394,418],[951,46,24,418,442],[952,59,27,442,469],[953,38,28,469,497],[954,76,45,497,542],[955,78,41,542,583],[956,25,14,583,597]]],[40,670,396,597,993,[[957,45,29,597,626],[958,44,20,626,646],[959,24,16,646,662],[960,52,25,662,687],[961,53,31,687,718],[962,47,29,718,747],[963,41,23,747,770],[964,34,20,770,790],[965,31,27,790,817],[966,37,26,817,843],[967,33,19,843,862],[968,53,27,862,889],[969,29,20,889,909],[970,79,42,909,951],[971,47,30,951,981],[972,21,12,981,993]]],[41,952,588,993,1581,[[973,57,39,993,1032],[974,41,26,1032,1058],[975,25,17,1058,1075],[976,48,30,1075,1105],[977,41,19,1105,1124],[978,42,24,1124,1148],[979,42,25,1148,1173],[980,68,35,1173,1208],[981,47,32,1208,1240],[982,30,19,1240,1259],[983,53,30,1259,1289],[984,51,33,1289,1322],[985,31,19,1322,1341],[986,21,14,1341,1355],[987,20,16,1355,1371],[988,27,15,1371,1386],[989,36,20,1386,1406],[990,22,16,1406,1422],[991,38,25,1422,1447],[992,47,25,1447,1472],[993,25,17,1472,1489],[994,56,38,1489,1527],[995,44,29,1527,1556],[996,40,25,1556,1581]]],[42,821,494,1581,2075,[[997,48,29,1581,1610],[998,32,17,1610,1627],[999,37,20,1627,1647],[1000,42,28,1647,1675],[1001,48,27,1675,1702],[1002,72,43,1702,1745],[1003,47,31,1745,1776],[1004,46,33,1776,1809],[1005,23,16,1809,1825],[1006,41,25,1825,1850],[1007,50,32,1850,1882],[1008,39,27,1882,1909],[1009,19,12,1909,1921],[1010,34,19,1921,1940],[1011,23,13,1940,1953],[1012,25,18,1953,1971],[1013,29,19,1971,1990],[1014,46,25,1990,2015],[1015,50,26,2015,2041],[1016,44,20,2041,2061],[1017,26,14,2061,2075]]],[43,1162,680,2075,2755,[[1018,17,14,2075,2089],[1019,36,29,2089,2118],[1020,29,19,2118,2137],[1021,42,28,2137,2165],[1022,60,30,2165,2195],[1023,28,13,2195,2208],[1024,58,34,2208,2242],[1025,40,26,2242,2268],[1026,49,31,2268,2299],[1027,37,25,2299,2324],[1028,30,18,2324,2342],[1029,35,21,2342,2363],[1030,72,38,2363,2401],[1031,38,20,2401,2421],[1032,53,31,2421,2452],[1033,53,30,2452,2482],[1034,40,22,2482,2504],[1035,37,22,2504,2526],[1036,50,27,2526,2553],[1037,39,22,2553,2575],[1038,69,32,2575,2607],[1039,31,20,2607,2627],[1040,43,27,2627,2654],[1041,22,13,2654,2667],[1042,32,18,2667,2685],[1043,29,20,2685,2705],[1044,55,29,2705,2734],[1045,38,21,2734,2755]]],[44,318,203,2755,2958,[[1046,19,13,2755,2768],[1047,26,16,2768,2784],[1048,14,10,2784,2794],[1049,21,14,2794,2808],[1050,16,11,2808,2819],[1051,10,8,2819,2827],[1052,28,18,2827,2845],[1053,43,21,2845,2866],[1054,28,14,2866,2880],[1055,15,11,2880,2891],[1056,27,15,2891,2906],[1057,9,8,2906,2914],[1058,12,7,2914,2921],[1059,9,6,2921,2927],[1060,23,17,2927,2944],[1061,18,14,2944,2958]]],[45,328,196,2958,3154,[[1062,31,16,2958,2974],[1063,14,8,2974,2982],[1064,11,7,2982,2989],[1065,12,6,2989,2995],[1066,12,6,2995,3001],[1067,20,10,3001,3011],[1068,28,16,3011,3027],[1069,6,6,3027,3033],[1070,22,13,3033,3046],[1071,25,16,3046,3062],[1072,29,17,3062,3079],[1073,35,20,3079,3099],[1074,2,2,3099,3101],[1075,26,18,3101,3119],[1076,41,24,3119,3143],[1077,14,11,3143,3154]]],[46,177,110,3154,3264,[[1078,17,11,3154,3165],[1079,4,4,3165,3169],[1080,21,10,3169,3179],[1081,21,10,3179,3189],[1082,13,9,3189,3198],[1083,5,4,3198,3202],[1084,7,6,3202,3208],[1085,25,13,3208,3221],[1086,14,9,3221,3230],[1087,9,7,3230,3237],[1088,13,10,3237,3247],[1089,16,10,3247,3257],[1090,12,7,3257,3264]]],[47,111,71,3264,3335,[[1091,14,11,3264,3275],[1092,19,11,3275,3286],[1093,25,16,3286,3302],[1094,24,15,3302,3317],[1095,17,10,3317,3327],[1096,12,8,3327,3335]]],[48,167,98,3335,3433,[[1097,25,17,3335,3352],[1098,27,13,3352,3365],[1099,29,18,3365,3383],[1100,35,17,3383,3400],[1101,27,18,3400,3418],[1102,24,15,3418,3433]]],[49,45,34,3433,3467,[[1103,15,11,3433,3444],[1104,7,6,3444,3450],[1105,18,12,3450,3462],[1106,5,5,3462,3467]]],[50,92,52,3467,3519,[[1107,37,18,3467,3485],[1108,33,17,3485,3502],[1109,13,10,3502,3512],[1110,9,7,3512,3519]]],[51,40,30,3519,3549,[[1111,6,4,3519,3523],[1112,9,7,3523,3530],[1113,5,5,3530,3535],[1114,9,7,3535,3542],[1115,11,7,3542,3549]]],[52,31,22,3549,3571,[[1116,11,8,3549,3557],[1117,12,9,3557,3566],[1118,8,5,3566,3571]]],[53,45,37,3571,3608,[[1119,9,7,3571,3578],[1120,1,1,3578,3579],[1121,6,5,3579,3584],[1122,9,6,3584,3590],[1123,7,7,3590,3597],[1124,13,11,3597,3608]]],[54,46,33,3608,3641,[[1125,8,5,3608,3613],[1126,15,11,3613,3624],[1127,6,5,3624,3629],[1128,17,12,3629,3641]]],[55,11,9,3641,3650,[[1129,5,4,3641,3645],[1130,5,4,3645,3649],[1131,1,1,3649,3650]]],[56,7,5,3650,3655,[[1132,7,5,3650,3655]]],[57,276,168,3655,3823,[[1133,15,10,3655,3665],[1134,12,8,3665,3673],[1135,12,8,3673,3681],[1136,11,9,3681,3690],[1137,8,6,3690,3696],[1138,15,11,3696,3707],[1139,33,19,3707,3726],[1140,17,8,3726,3734],[1141,51,24,3734,3758],[1142,32,21,3758,3779],[1143,37,20,3779,3799],[1144,16,13,3799,3812],[1145,17,11,3812,3823]]],[58,87,54,3823,3877,[[1146,16,10,3823,3833],[1147,16,13,3833,3846],[1148,14,10,3846,3856],[1149,8,6,3856,3862],[1150,33,15,3862,3877]]],[59,67,51,3877,3928,[[1151,15,11,3877,3888],[1152,16,13,3888,3901],[1153,13,10,3901,3911],[1154,15,10,3911,3921],[1155,8,7,3921,3928]]],[60,48,27,3928,3955,[[1156,8,8,3928,3936],[1157,18,9,3936,3945],[1158,22,10,3945,3955]]],[61,126,67,3955,4022,[[1159,10,7,3955,3962],[1160,44,20,3962,3982],[1161,20,12,3982,3994],[1162,18,11,3994,4005],[1163,34,17,4005,4022]]],[62,10,6,4022,4028,[[1164,10,6,4022,4028]]],[63,10,9,4028,4037,[[1165,10,9,4028,4037]]],[64,20,10,4037,4047,[[1166,20,10,4037,4047]]],[65,865,315,4047,4362,[[1167,34,15,4047,4062],[1168,44,21,4062,4083],[1169,32,12,4083,4095],[1170,18,9,4095,4104],[1171,40,14,4104,4118],[1172,42,14,4118,4132],[1173,31,12,4132,4144],[1174,52,13,4144,4157],[1175,46,14,4157,4171],[1176,24,9,4171,4180],[1177,35,14,4180,4194],[1178,43,13,4194,4207],[1179,41,14,4207,4221],[1180,53,19,4221,4240],[1181,23,7,4240,4247],[1182,53,17,4247,4264],[1183,43,16,4264,4280],[1184,25,15,4280,4295],[1185,37,13,4295,4308],[1186,42,15,4308,4323],[1187,71,25,4323,4348],[1188,36,14,4348,4362]]]],[23150,23155,23160,23161,23162,23166,23168,23170,23171,23172,23173,23174,23175,23176,23177,23178,23179,23180,23182,23183,23184,23185,23186,23189,23190,23191,23192,23193,23194,23195,23197,23199,23202,23204,23208,23210,23212,23214,23217,23220,23223,23224,23226,23227,23230,23231,23232,23237,23239,23241,23242,23243,23244,23246,23247,23248,23249,23251,23252,23253,23254,23255,23256,23257,23258,23259,23260,23267,23269,23273,23280,23281,23284,23287,23289,23295,23298,23304,23305,23306,23307,23308,23310,23312,23314,23315,23316,23319,23320,23321,23322,23328,23329,23330,23337,23341,23342,23343,23344,23345,23346,23349,23356,23357,23358,23360,23361,23362,23363,23365,23367,23369,23371,23372,23373,23376,23377,23378,23379,23381,23382,23385,23387,23388,23389,23390,23393,23394,23395,23396,23399,23401,23402,23403,23404,23405,23407,23412,23413,23414,23415,23416,23417,23419,23420,23421,23427,23430,23431,23435,23437,23440,23442,23444,23445,23446,23447,23461,23466,23470,23471,23472,23479,23480,23482,23486,23490,23491,23493,23494,23495,23496,23497,23499,23500,23501,23502,23503,23506,23507,23508,23511,23512,23513,23517,23518,23520,23521,23522,23523,23524,23527,23528,23529,23530,23531,23532,23534,23535,23539,23540,23541,23543,23546,23549,23550,23553,23557,23558,23559,23560,23561,23562,23564,23565,23566,23568,23569,23571,23573,23574,23575,23576,23577,23578,23579,23582,23583,23584,23586,23587,23588,23589,23591,23594,23598,23599,23602,23603,23606,23607,23608,23609,23610,23612,23616,23617,23619,23621,23622,23623,23625,23626,23627,23629,23630,23631,23632,23633,23635,23636,23643,23644,23645,23650,23651,23652,23654,23655,23659,23660,23662,23664,23665,23668,23669,23670,23672,23674,23675,23676,23677,23678,23681,23682,23683,23684,23685,23686,23688,23691,23692,23693,23698,23699,23700,23702,23705,23706,23709,23710,23712,23713,23714,23715,23718,23719,23723,23725,23726,23727,23728,23730,23731,23733,23734,23737,23738,23739,23740,23744,23750,23754,23755,23757,23761,23763,23770,23772,23775,23776,23779,23784,23785,23786,23790,23793,23794,23795,23796,23798,23799,23800,23801,23802,23803,23804,23808,23809,23810,23811,23812,23814,23815,23816,23817,23820,23822,23823,23827,23828,23830,23831,23832,23833,23834,23835,23836,23837,23838,23840,23841,23843,23844,23845,23846,23847,23849,23852,23854,23856,23857,23858,23860,23861,23862,23864,23865,23866,23867,23868,23869,23871,23872,23875,23876,23878,23879,23881,23882,23883,23885,23887,23888,23891,23897,23898,23899,23900,23901,23902,23903,23904,23905,23906,23908,23912,23913,23919,23920,23923,23924,23925,23927,23931,23934,23935,23936,23937,23938,23939,23940,23941,23943,23944,23947,23948,23949,23950,23951,23953,23955,23958,23960,23963,23969,23971,23972,23973,23974,23975,23981,23983,23984,23985,23986,23987,23988,23989,23993,23994,23995,23996,23997,23998,24000,24001,24006,24008,24009,24012,24013,24014,24016,24017,24018,24019,24021,24024,24026,24027,24029,24031,24032,24033,24035,24036,24038,24039,24040,24041,24042,24045,24048,24049,24053,24054,24056,24057,24059,24060,24064,24065,24067,24068,24071,24072,24073,24074,24077,24078,24080,24081,24082,24083,24084,24085,24089,24090,24091,24094,24095,24098,24099,24101,24105,24108,24109,24110,24111,24112,24113,24115,24116,24117,24118,24119,24123,24125,24126,24128,24129,24130,24131,24132,24134,24135,24136,24138,24139,24140,24141,24143,24144,24148,24149,24150,24152,24153,24154,24156,24158,24159,24160,24164,24169,24170,24171,24174,24175,24179,24180,24181,24182,24183,24185,24187,24188,24189,24190,24191,24193,24195,24196,24197,24199,24200,24201,24202,24203,24204,24206,24207,24210,24211,24214,24215,24216,24217,24218,24219,24220,24222,24225,24227,24228,24229,24230,24231,24234,24235,24236,24237,24239,24241,24242,24243,24244,24246,24247,24248,24249,24253,24257,24259,24260,24262,24264,24265,24266,24269,24270,24272,24273,24274,24276,24278,24279,24280,24281,24282,24283,24284,24286,24287,24288,24289,24290,24291,24292,24293,24294,24295,24297,24299,24305,24306,24310,24315,24316,24317,24323,24324,24327,24330,24333,24334,24337,24338,24339,24341,24342,24343,24349,24350,24351,24352,24353,24354,24355,24356,24358,24359,24360,24361,24362,24364,24365,24366,24367,24368,24369,24371,24372,24374,24375,24376,24377,24378,24379,24380,24382,24383,24385,24386,24391,24393,24394,24395,24397,24399,24400,24401,24402,24403,24404,24405,24406,24409,24410,24413,24414,24418,24421,24422,24429,24431,24432,24433,24434,24435,24437,24440,24443,24446,24448,24450,24451,24452,24454,24455,24456,24458,24459,24460,24461,24463,24464,24466,24468,24471,24472,24477,24478,24480,24481,24482,24483,24484,24486,24487,24489,24490,24491,24492,24493,24494,24496,24498,24500,24502,24503,24506,24510,24511,24513,24514,24515,24519,24520,24523,24526,24527,24528,24529,24531,24534,24535,24536,24538,24539,24545,24547,24548,24549,24550,24552,24553,24554,24555,24558,24562,24563,24565,24569,24571,24572,24573,24574,24580,24581,24582,24583,24584,24585,24586,24588,24589,24590,24593,24598,24602,24603,24607,24609,24611,24612,24613,24617,24618,24619,24620,24621,24622,24623,24626,24627,24629,24630,24633,24634,24637,24640,24641,24642,24643,24644,24645,24647,24648,24650,24651,24652,24655,24656,24658,24659,24660,24661,24663,24667,24672,24675,24680,24681,24682,24683,24685,24686,24687,24693,24694,24695,24696,24697,24699,24700,24701,24702,24705,24706,24707,24708,24709,24710,24711,24712,24714,24716,24718,24720,24721,24724,24727,24728,24731,24732,24733,24737,24739,24741,24742,24743,24744,24745,24749,24750,24751,24752,24755,24756,24757,24758,24759,24761,24762,24763,24764,24766,24767,24768,24770,24771,24774,24775,24777,24778,24779,24780,24781,24789,24792,24793,24795,24797,24801,24803,24805,24806,24807,24808,24809,24814,24815,24816,24817,24818,24819,24820,24822,24826,24827,24828,24829,24833,24834,24835,24836,24837,24838,24841,24842,24844,24845,24846,24847,24852,24854,24855,24856,24857,24858,24859,24860,24864,24865,24866,24869,24870,24871,24872,24874,24875,24876,24877,24878,24879,24881,24886,24887,24888,24892,24893,24895,24897,24898,24899,24901,24902,24903,24904,24906,24908,24909,24911,24912,24914,24915,24916,24918,24919,24920,24921,24923,24925,24926,24927,24928,24931,24932,24933,24934,24935,24936,24937,24939,24941,24952,24958,24962,24968,24973,24974,24979,24980,24981,24983,24986,24988,24989,24990,24991,24993,24994,24995,24996,24999,25000,25010,25011,25012,25013,25014,25015,25016,25017,25019,25023,25026,25027,25028,25029,25030,25031,25032,25034,25035,25040,25041,25042,25043,25044,25046,25047,25048,25064,25065,25066,25068,25069,25072,25076,25077,25079,25080,25081,25083,25085,25088,25090,25091,25092,25094,25096,25097,25098,25099,25100,25101,25102,25103,25104,25105,25106,25107,25108,25109,25110,25111,25112,25114,25116,25120,25121,25123,25126,25128,25131,25134,25140,25141,25142,25143,25144,25147,25148,25150,25151,25152,25153,25154,25155,25156,25161,25163,25165,25166,25169,25172,25175,25179,25181,25184,25187,25188,25191,25194,25195,25196,25198,25201,25204,25205,25206,25207,25208,25209,25212,25213,25215,25219,25223,25224,25225,25226,25228,25231,25232,25233,25234,25236,25239,25245,25246,25250,25252,25255,25256,25257,25258,25260,25261,25264,25266,25267,25268,25269,25270,25271,25272,25274,25276,25277,25278,25279,25280,25282,25283,25284,25285,25286,25287,25289,25290,25292,25294,25296,25299,25303,25306,25307,25308,25309,25311,25312,25313,25317,25319,25320,25323,25326,25327,25328,25330,25333,25335,25336,25337,25338,25339,25343,25344,25345,25348,25352,25357,25358,25359,25361,25363,25364,25365,25367,25369,25370,25372,25373,25374,25376,25377,25380,25382,25383,25385,25386,25389,25395,25398,25399,25412,25419,25420,25425,25429,25431,25432,25433,25434,25435,25436,25437,25438,25439,25440,25441,25443,25444,25447,25448,25449,25450,25451,25452,25453,25454,25455,25456,25457,25458,25460,25462,25463,25466,25467,25468,25469,25470,25471,25472,25481,25482,25483,25485,25486,25487,25489,25490,25491,25492,25495,25496,25497,25498,25499,25501,25504,25505,25508,25513,25515,25517,25518,25519,25520,25522,25525,25528,25532,25533,25534,25535,25536,25537,25538,25542,25543,25546,25547,25550,25551,25552,25554,25556,25558,25560,25561,25562,25563,25567,25568,25574,25575,25576,25581,25587,25589,25590,25592,25596,25597,25598,25600,25601,25604,25609,25610,25611,25613,25614,25615,25618,25623,25624,25625,25628,25629,25631,25633,25634,25636,25637,25641,25642,25644,25649,25651,25652,25653,25656,25657,25658,25665,25668,25671,25672,25673,25675,25677,25678,25679,25681,25682,25685,25686,25687,25688,25694,25696,25698,25700,25701,25704,25705,25708,25712,25713,25718,25719,25720,25721,25723,25731,25734,25736,25739,25741,25742,25746,25747,25749,25754,25755,25760,25761,25762,25764,25766,25767,25768,25769,25770,25771,25772,25775,25776,25778,25779,25780,25785,25788,25789,25792,25793,25794,25795,25796,25798,25799,25800,25805,25806,25808,25809,25810,25811,25812,25814,25815,25816,25818,25824,25825,25827,25830,25831,25834,25835,25846,25847,25849,25851,25852,25853,25855,25857,25861,25862,25863,25864,25865,25866,25867,25868,25871,25872,25874,25875,25877,25878,25880,25882,25884,25885,25886,25889,25890,25894,25895,25903,25904,25908,25911,25912,25914,25916,25917,25918,25919,25920,25924,25925,25927,25928,25930,25931,25933,25934,25936,25937,25938,25939,25940,25941,25945,25948,25949,25954,25958,25961,25964,25965,25966,25968,25970,25971,25972,25974,25975,25979,25980,25982,25983,25986,25987,25990,25991,25992,25993,25994,25996,25998,26000,26001,26003,26009,26010,26011,26013,26015,26016,26018,26019,26020,26023,26024,26026,26035,26036,26037,26040,26044,26045,26048,26049,26051,26053,26054,26058,26061,26062,26063,26064,26067,26068,26073,26076,26077,26078,26079,26080,26081,26084,26085,26086,26088,26089,26092,26093,26094,26095,26096,26097,26098,26100,26101,26102,26103,26104,26105,26108,26109,26110,26113,26115,26116,26117,26118,26121,26123,26125,26126,26128,26133,26134,26136,26137,26138,26139,26140,26141,26142,26148,26149,26151,26154,26155,26156,26157,26161,26162,26164,26165,26166,26167,26168,26170,26176,26177,26178,26179,26184,26185,26186,26187,26189,26190,26191,26195,26196,26198,26201,26202,26206,26208,26209,26211,26212,26213,26214,26217,26219,26224,26225,26226,26228,26229,26230,26231,26232,26233,26235,26236,26238,26240,26242,26243,26246,26247,26249,26252,26254,26255,26258,26261,26267,26268,26269,26270,26271,26273,26274,26276,26278,26279,26280,26281,26282,26283,26284,26285,26286,26288,26289,26290,26292,26294,26295,26296,26297,26298,26299,26301,26302,26303,26306,26307,26308,26310,26311,26314,26319,26320,26324,26326,26328,26329,26330,26331,26332,26335,26338,26339,26340,26341,26342,26343,26345,26347,26350,26351,26354,26356,26359,26360,26363,26365,26366,26367,26368,26369,26370,26371,26373,26375,26376,26377,26382,26383,26384,26386,26387,26389,26390,26391,26393,26396,26397,26398,26399,26401,26403,26406,26407,26408,26409,26410,26413,26416,26417,26420,26421,26422,26425,26426,26429,26433,26434,26438,26440,26443,26444,26445,26446,26447,26451,26453,26454,26455,26456,26457,26458,26462,26464,26475,26480,26482,26483,26484,26485,26486,26488,26489,26490,26492,26493,26494,26495,26496,26500,26502,26503,26504,26505,26506,26512,26516,26517,26518,26519,26521,26524,26525,26527,26531,26532,26533,26540,26542,26543,26547,26548,26550,26553,26554,26556,26559,26560,26561,26562,26563,26564,26565,26568,26569,26570,26571,26573,26575,26577,26578,26579,26580,26581,26583,26586,26587,26588,26589,26590,26591,26592,26593,26598,26599,26600,26603,26604,26611,26612,26614,26615,26616,26618,26622,26623,26626,26627,26628,26630,26631,26632,26633,26635,26648,26652,26656,26657,26659,26660,26661,26663,26672,26673,26674,26676,26677,26678,26679,26680,26681,26684,26685,26687,26690,26692,26694,26695,26696,26698,26699,26700,26702,26703,26704,26708,26714,26715,26717,26718,26719,26723,26724,26725,26729,26730,26733,26734,26737,26739,26741,26742,26743,26746,26747,26749,26751,26752,26753,26754,26758,26759,26760,26762,26763,26764,26765,26767,26768,26770,26771,26772,26773,26774,26775,26777,26780,26781,26782,26784,26785,26786,26787,26788,26794,26795,26796,26797,26799,26800,26801,26802,26803,26805,26807,26808,26809,26811,26813,26817,26818,26820,26821,26822,26823,26824,26827,26828,26830,26831,26834,26837,26838,26839,26844,26845,26846,26848,26849,26850,26851,26852,26853,26855,26856,26857,26859,26861,26863,26865,26866,26867,26868,26869,26870,26871,26872,26873,26874,26875,26876,26877,26878,26879,26882,26885,26886,26887,26891,26892,26893,26898,26899,26900,26902,26904,26905,26906,26908,26909,26910,26915,26918,26921,26922,26923,26925,26926,26927,26929,26930,26931,26937,26938,26939,26941,26942,26944,26945,26949,26950,26951,26953,26955,26958,26959,26960,26963,26964,26965,26966,26968,26969,26970,26972,26973,26974,26978,26980,26982,26983,26986,26987,26988,26990,26991,26992,26995,26996,26997,26998,26999,27002,27003,27004,27005,27006,27007,27008,27009,27010,27011,27012,27015,27018,27019,27020,27021,27023,27024,27025,27026,27027,27028,27029,27030,27032,27033,27035,27036,27037,27039,27040,27043,27044,27045,27046,27048,27052,27053,27054,27055,27056,27057,27058,27059,27061,27062,27065,27067,27068,27069,27070,27071,27072,27073,27074,27075,27076,27077,27078,27079,27080,27081,27082,27083,27084,27085,27086,27088,27091,27093,27096,27099,27100,27101,27102,27103,27105,27106,27107,27108,27109,27110,27111,27113,27114,27115,27116,27117,27123,27124,27125,27127,27129,27132,27133,27139,27140,27142,27144,27146,27147,27148,27149,27150,27151,27152,27153,27154,27157,27158,27159,27160,27161,27162,27164,27167,27168,27169,27170,27172,27174,27177,27179,27180,27182,27185,27186,27188,27190,27192,27194,27196,27198,27200,27201,27202,27204,27205,27206,27208,27209,27210,27212,27213,27214,27215,27216,27217,27218,27220,27221,27222,27223,27224,27226,27227,27230,27231,27233,27235,27236,27237,27238,27239,27240,27241,27242,27243,27245,27246,27247,27248,27251,27254,27255,27256,27257,27258,27261,27262,27266,27268,27270,27271,27275,27276,27278,27280,27281,27282,27283,27289,27295,27296,27297,27298,27299,27300,27301,27303,27304,27306,27307,27308,27313,27318,27319,27322,27323,27324,27325,27326,27327,27328,27329,27330,27331,27333,27335,27336,27337,27338,27339,27340,27341,27342,27343,27344,27345,27346,27347,27348,27349,27350,27351,27354,27355,27356,27357,27359,27360,27361,27363,27364,27366,27367,27368,27369,27370,27372,27373,27374,27376,27377,27379,27380,27382,27384,27386,27388,27389,27391,27393,27394,27395,27396,27398,27401,27402,27404,27405,27406,27407,27408,27409,27410,27411,27412,27413,27414,27415,27416,27417,27418,27419,27420,27425,27426,27427,27428,27429,27432,27433,27434,27436,27437,27439,27440,27441,27442,27443,27444,27445,27446,27447,27448,27449,27450,27452,27453,27454,27457,27458,27459,27461,27463,27464,27465,27466,27468,27469,27470,27472,27473,27474,27475,27477,27478,27480,27482,27483,27485,27486,27487,27488,27489,27490,27492,27493,27494,27496,27497,27498,27500,27501,27502,27503,27505,27506,27507,27508,27509,27510,27514,27515,27516,27518,27519,27521,27522,27523,27524,27525,27527,27528,27529,27530,27531,27532,27533,27534,27536,27537,27539,27540,27541,27547,27549,27550,27552,27553,27554,27557,27560,27561,27562,27563,27564,27565,27566,27568,27569,27570,27571,27573,27574,27575,27576,27579,27580,27581,27582,27583,27584,27585,27586,27589,27590,27591,27593,27594,27595,27596,27597,27598,27600,27601,27602,27604,27605,27606,27609,27610,27612,27614,27615,27616,27617,27618,27620,27623,27626,27627,27629,27632,27633,27634,27635,27638,27641,27642,27643,27645,27648,27649,27650,27651,27652,27653,27654,27655,27658,27661,27664,27665,27667,27668,27669,27671,27672,27675,27677,27678,27680,27681,27682,27683,27684,27685,27688,27689,27690,27691,27692,27693,27694,27695,27696,27697,27698,27699,27700,27701,27702,27703,27704,27706,27707,27709,27711,27713,27714,27715,27716,27717,27720,27721,27724,27726,27727,27728,27730,27731,27732,27733,27734,27735,27736,27737,27740,27741,27743,27744,27745,27746,27748,27749,27750,27751,27752,27753,27754,27756,27757,27758,27760,27761,27762,27764,27765,27766,27767,27768,27770,27774,27775,27776,27778,27779,27781,27783,27787,27789,27791,27793,27796,27797,27798,27799,27802,27803,27804,27805,27808,27810,27811,27812,27813,27814,27817,27818,27819,27820,27823,27824,27827,27828,27829,27830,27832,27833,27835,27836,27837,27840,27841,27842,27843,27844,27845,27846,27849,27850,27853,27857,27858,27859,27860,27861,27862,27864,27865,27866,27867,27870,27871,27872,27873,27874,27877,27882,27885,27886,27887,27889,27892,27893,27894,27895,27896,27897,27898,27899,27900,27901,27902,27903,27904,27906,27907,27908,27910,27914,27915,27916,27918,27919,27920,27922,27924,27926,27927,27928,27930,27938,27939,27940,27942,27946,27948,27950,27953,27954,27955,27956,27957,27962,27963,27964,27965,27966,27970,27975,27976,27977,27978,27979,27980,27982,27985,27986,27988,27989,27992,27993,27997,27998,28010,28012,28014,28015,28016,28020,28025,28026,28027,28028,28031,28033,28034,28035,28036,28037,28038,28039,28041,28042,28049,28052,28057,28058,28059,28061,28062,28063,28064,28066,28067,28072,28073,28074,28080,28087,28089,28090,28091,28092,28093,28095,28096,28097,28098,28099,28100,28101,28102,28103,28104,28105,28107,28113,28114,28115,28116,28118,28119,28120,28121,28123,28126,28127,28128,28129,28134,28135,28136,28137,28139,28142,28143,28144,28145,28151,28152,28155,28159,28160,28161,28163,28164,28166,28167,28172,28175,28176,28178,28181,28182,28183,28191,28193,28194,28195,28196,28199,28200,28201,28203,28204,28206,28211,28213,28216,28220,28221,28224,28225,28226,28227,28230,28233,28234,28235,28237,28238,28246,28247,28248,28249,28251,28256,28258,28261,28267,28268,28269,28270,28277,28278,28280,28281,28286,28288,28290,28297,28300,28304,28307,28308,28311,28312,28314,28316,28318,28319,28322,28328,28329,28330,28332,28333,28334,28336,28337,28340,28341,28343,28347,28348,28350,28351,28353,28354,28356,28359,28361,28362,28365,28367,28369,28370,28371,28373,28376,28379,28380,28381,28382,28383,28384,28388,28390,28391,28395,28400,28401,28402,28404,28405,28406,28408,28415,28420,28423,28426,28427,28429,28430,28438,28442,28446,28448,28452,28453,28455,28458,28459,28460,28461,28464,28468,28469,28471,28478,28480,28481,28482,28484,28485,28486,28490,28491,28495,28497,28499,28501,28502,28504,28513,28515,28516,28518,28519,28520,28521,28522,28531,28533,28534,28537,28538,28539,28542,28545,28547,28548,28549,28552,28553,28554,28558,28559,28560,28562,28564,28568,28569,28570,28571,28572,28577,28578,28580,28583,28585,28587,28593,28595,28596,28599,28600,28602,28603,28606,28609,28610,28612,28616,28617,28618,28622,28623,28625,28626,28627,28629,28632,28634,28638,28639,28640,28641,28642,28643,28645,28646,28649,28650,28651,28652,28653,28655,28656,28657,28659,28660,28662,28665,28666,28671,28683,28685,28687,28689,28690,28693,28694,28695,28699,28701,28703,28705,28707,28708,28711,28712,28714,28715,28719,28721,28722,28723,28724,28725,28727,28728,28742,28746,28747,28753,28757,28758,28760,28763,28765,28766,28767,28770,28772,28774,28775,28776,28777,28783,28786,28787,28788,28789,28791,28793,28795,28796,28798,28801,28803,28804,28805,28806,28807,28809,28812,28814,28819,28822,28828,28833,28838,28841,28847,28848,28849,28850,28851,28854,28855,28857,28858,28859,28861,28863,28865,28866,28869,28870,28872,28873,28874,28875,28878,28882,28883,28885,28887,28888,28891,28895,28896,28899,28901,28905,28911,28922,28923,28924,28926,28929,28931,28933,28934,28936,28937,28938,28940,28941,28943,28948,28949,28950,28951,28956,28957,28958,28959,28961,28965,28966,28968,28969,28970,28972,28975,28976,28979,28984,28985,28989,28992,28994,28996,28998,28999,29007,29014,29017,29021,29022,29024,29025,29029,29030,29031,29033,29034,29036,29040,29043,29045,29048,29051,29053,29054,29056,29057,29059,29061,29064,29068,29070,29071,29073,29076,29078,29079,29080,29083,29086,29088,29089,29090,29091,29093,29094,29095,29101,29102,29103,29104,29107,29110,29112,29114,29115,29116,29118,29119,29120,29121,29123,29124,29125,29126,29132,29133,29134,29135,29136,29137,29140,29144,29146,29152,29154,29155,29158,29161,29162,29163,29165,29169,29171,29173,29175,29179,29181,29184,29186,29190,29194,29196,29200,29202,29204,29205,29206,29207,29209,29211,29212,29213,29215,29216,29217,29219,29220,29221,29223,29224,29225,29226,29228,29229,29231,29232,29236,29237,29241,29242,29243,29244,29245,29247,29248,29249,29250,29252,29253,29254,29255,29256,29257,29258,29259,29260,29261,29262,29263,29265,29267,29269,29270,29271,29272,29273,29275,29279,29281,29284,29285,29286,29287,29288,29290,29294,29295,29296,29298,29299,29301,29302,29309,29310,29313,29314,29315,29317,29318,29320,29321,29323,29326,29327,29328,29329,29330,29333,29336,29337,29340,29343,29344,29345,29346,29347,29348,29349,29350,29351,29352,29353,29354,29356,29360,29362,29366,29368,29373,29374,29375,29378,29380,29385,29388,29391,29393,29401,29408,29409,29413,29421,29422,29423,29424,29427,29429,29430,29431,29432,29435,29437,29439,29442,29445,29449,29451,29457,29464,29467,29469,29470,29471,29474,29475,29477,29478,29479,29480,29483,29485,29487,29488,29489,29490,29491,29492,29496,29497,29499,29500,29501,29502,29503,29504,29505,29506,29507,29508,29511,29513,29514,29516,29517,29519,29522,29523,29526,29527,29532,29533,29537,29540,29541,29545,29547,29553,29556,29557,29558,29559,29561,29566,29568,29570,29572,29574,29578,29579,29584,29585,29586,29592,29595,29599,29602,29603,29605,29608,29609,29613,29618,29619,29620,29622,29623,29635,29640,29644,29647,29648,29650,29652,29653,29654,29656,29657,29658,29661,29662,29663,29664,29665,29668,29669,29671,29673,29676,29679,29681,29683,29684,29694,29701,29704,29707,29710,29711,29713,29714,29730,29737,29738,29740,29746,29747,29748,29750,29753,29759,29761,29763,29771,29777,29779,29780,29781,29784,29788,29789,29790,29791,29793,29798,29800,29802,29803,29805,29807,29809,29814,29815,29817,29819,29825,29828,29831,29833,29834,29836,29841,29842,29845,29846,29849,29853,29858,29861,29864,29868,29870,29871,29872,29874,29876,29877,29878,29883,29884,29887,29888,29889,29891,29901,29905,29906,29907,29913,29918,29919,29921,29927,29940,29943,29944,29945,29951,29964,29965,29966,29967,29968,29969,29971,29973,29975,29976,29979,29980,29982,29984,29986,29990,29991,29994,29996,29998,30001,30002,30003,30009,30010,30012,30016,30017,30018,30023,30025,30026,30027,30028,30030,30032,30033,30036,30037,30040,30042,30045,30048,30051,30054,30055,30056,30059,30060,30061,30063,30064,30065,30067,30068,30069,30070,30071,30074,30075,30076,30077,30079,30081,30082,30083,30085,30089,30090,30091,30092,30093,30094,30096,30097,30100,30101,30102,30103,30106,30107,30108,30109,30110,30111,30112,30113,30114,30117,30118,30119,30120,30121,30122,30123,30124,30125,30126,30127,30128,30129,30130,30131,30134,30135,30138,30141,30142,30143,30144,30148,30149,30152,30153,30154,30156,30158,30159,30160,30162,30165,30167,30169,30171,30174,30175,30179,30181,30184,30185,30189,30193,30194,30195,30197,30198,30199,30200,30201,30202,30203,30204,30210,30211,30213,30214,30217,30221,30223,30224,30226,30227,30229,30232,30233,30238,30239,30245,30248,30249,30250,30251,30252,30253,30254,30261,30263,30265,30267,30269,30273,30275,30276,30277,30278,30283,30287,30293,30294,30296,30298,30299,30301,30302,30303,30309,30312,30314,30316,30318,30319,30321,30322,30323,30324,30325,30327,30329,30330,30333,30336,30341,30342,30344,30347,30351,30352,30357,30358,30359,30360,30361,30362,30363,30364,30365,30366,30368,30369,30371,30372,30373,30377,30381,30383,30384,30385,30387,30388,30391,30396,30398,30399,30401,30402,30405,30406,30407,30408,30410,30411,30414,30416,30417,30423,30424,30425,30428,30429,30431,30436,30439,30441,30442,30443,30444,30447,30448,30449,30450,30453,30458,30460,30463,30464,30465,30466,30467,30468,30469,30471,30474,30475,30482,30483,30487,30490,30491,30495,30496,30497,30501,30502,30507,30515,30516,30517,30520,30521,30522,30524,30526,30527,30528,30529,30532,30534,30537,30538,30539,30541,30542,30543,30545,30546,30547,30548,30551,30552,30554,30555,30557,30558,30559,30560,30563,30564,30565,30566,30567,30570,30571,30572,30573,30574,30575,30577,30580,30583,30587,30589,30590,30592,30593,30595,30596,30598,30602,30603,30604,30605,30606,30607,30608,30609,30612,30617,30618,30619,30620,30625,30626,30627,30628,30629,30630,30631,30632,30633,30634,30635,30636,30637,30638,30639,30643,30644,30646,30648,30649,30651,30652,30654,30659,30661,30663,30665,30666,30667,30668,30670,30672,30675,30676,30677,30679,30681,30683,30685,30689,30693,30695,30699,30700,30701,30702,30704,30705,30706,30707,30708,30709,30710,30713,30714,30715,30717,30718,30722,30723,30724,30725,30726,30727,30728,30729,30731,30732,30733,30734,30735,30736,30740,30741,30743,30744,30745,30746,30747,30751,30752,30753,30755,30756,30758,30759,30760,30764,30766,30768,30769,30770,30771,30772,30773,30774,30775,30777,30778,30780,30781,30782,30783,30784,30785,30786,30787,30788,30789,30790,30791,30792,30793,30794,30796,30797,30798,30799,30800,30801,30802,30803,30805,30806,30808,30809,30810,30811,30812,30813,30814,30819,30820,30821,30823,30824,30825,30826,30827,30828,30829,30830,30831,30832,30833,30834,30835,30836,30837,30838,30839,30840,30841,30842,30843,30844,30847,30849,30851,30853,30854,30855,30856,30857,30858,30860,30862,30863,30865,30866,30867,30868,30869,30870,30871,30873,30874,30876,30878,30879,30880,30881,30882,30885,30886,30887,30888,30890,30891,30892,30895,30897,30898,30900,30901,30902,30903,30904,30905,30906,30907,30908,30909,30910,30911,30912,30915,30916,30918,30919,30920,30921,30922,30923,30925,30926,30927,30929,30930,30931,30932,30933,30934,30935,30936,30937,30938,30939,30940,30941,30942,30943,30944,30945,30946,30947,30948,30949,30951,30952,30953,30954,30955,30956,30957,30958,30959,30961,30962,30963,30964,30965,30966,30967,30968,30971,30972,30973,30975,30976,30977,30979,30981,30982,30983,30984,30985,30986,30987,30988,30989,30990,30991,30992,30993,30994,30995,30996,30999,31002,31003,31004,31007,31008,31010,31011,31012,31014,31016,31017,31019,31021,31022,31024,31025,31026,31027,31031,31032,31034,31036,31037,31038,31039,31040,31041,31042,31043,31044,31045,31046,31047,31048,31049,31050,31051,31052,31053,31054,31055,31056,31057,31058,31059,31061,31062,31063,31064,31065,31067,31068,31069,31070,31071,31072,31073,31074,31075,31076,31077,31078,31079,31080,31081,31082,31083,31086,31087,31088,31089,31090,31093,31094,31096,31097,31098,31099]]],["them",[39,35,[[39,7,7,0,7,[[940,1,1,0,1],[949,1,1,1,2],[952,1,1,2,3],[953,2,2,3,5],[954,2,2,5,7]]],[40,3,3,7,10,[[961,1,1,7,8],[969,1,1,8,9],[972,1,1,9,10]]],[41,6,4,10,14,[[978,1,1,10,11],[993,3,1,11,12],[996,2,2,12,14]]],[43,4,4,14,18,[[1023,1,1,14,15],[1042,1,1,15,16],[1043,2,2,16,18]]],[44,6,6,18,24,[[1047,1,1,18,19],[1048,1,1,19,20],[1049,1,1,20,21],[1053,1,1,21,22],[1061,2,2,22,24]]],[45,3,2,24,26,[[1062,1,1,24,25],[1070,2,1,25,26]]],[46,1,1,26,27,[[1078,1,1,26,27]]],[47,2,2,27,29,[[1092,1,1,27,28],[1094,1,1,28,29]]],[50,3,2,29,31,[[1108,1,1,29,30],[1110,2,1,30,31]]],[55,1,1,31,32,[[1129,1,1,31,32]]],[58,1,1,32,33,[[1148,1,1,32,33]]],[65,2,2,33,35,[[1169,2,2,33,35]]]],[23493,23857,23973,24042,24049,24105,24125,24404,24731,24890,25150,25847,26015,26024,27110,27801,27841,27843,27981,28010,28034,28117,28346,28347,28374,28560,28804,29093,29136,29495,29555,29907,30337,30755,30756]]],["these",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29087]]],["they",[109,107,[[39,23,23,0,23,[[929,1,1,0,1],[930,2,2,1,3],[932,1,1,3,4],[937,1,1,4,5],[940,1,1,5,6],[942,2,2,6,8],[943,1,1,8,9],[944,2,2,9,11],[948,2,2,11,13],[949,1,1,13,14],[950,2,2,14,16],[954,1,1,16,17],[955,4,4,17,21],[956,2,2,21,23]]],[40,26,25,23,48,[[957,1,1,23,24],[958,1,1,24,25],[959,2,2,25,27],[960,2,2,27,29],[962,1,1,29,30],[964,3,3,30,33],[965,2,2,33,35],[966,3,3,35,38],[967,1,1,38,39],[968,4,3,39,42],[970,4,4,42,46],[971,2,2,46,48]]],[41,22,22,48,70,[[977,1,1,48,49],[979,2,2,49,51],[980,1,1,51,52],[981,3,3,52,55],[986,1,1,55,56],[991,1,1,56,57],[992,3,3,57,60],[994,5,5,60,65],[995,3,3,65,68],[996,2,2,68,70]]],[42,3,3,70,73,[[1014,1,1,70,71],[1015,2,2,71,73]]],[43,23,22,73,95,[[1021,2,2,73,75],[1022,4,4,75,79],[1024,1,1,79,80],[1025,1,1,80,81],[1026,1,1,81,82],[1027,1,1,82,83],[1028,1,1,83,84],[1029,2,1,84,85],[1030,1,1,85,86],[1032,2,2,86,88],[1033,1,1,88,89],[1036,2,2,89,91],[1038,2,2,91,93],[1045,2,2,93,95]]],[44,2,2,95,97,[[1049,1,1,95,96],[1053,1,1,96,97]]],[45,1,1,97,98,[[1076,1,1,97,98]]],[47,3,3,98,101,[[1093,2,2,98,100],[1095,1,1,100,101]]],[49,1,1,101,102,[[1106,1,1,101,102]]],[55,1,1,102,103,[[1129,1,1,102,103]]],[57,3,3,103,106,[[1139,2,2,103,105],[1144,1,1,105,106]]],[65,1,1,106,107,[[1183,1,1,106,107]]]],[23156,23174,23178,23229,23410,23492,23614,23630,23667,23679,23686,23796,23823,23851,23877,23891,24069,24133,24152,24183,24195,24204,24210,24251,24285,24292,24296,24333,24338,24456,24505,24520,24528,24570,24572,24592,24614,24627,24646,24676,24687,24689,24765,24773,24800,24818,24839,24840,25140,25199,25220,25290,25314,25333,25346,25557,25765,25784,25790,25791,25873,25899,25902,25913,25935,25940,25956,25958,26010,26033,26792,26840,26854,27043,27046,27076,27080,27092,27100,27141,27201,27245,27281,27309,27352,27413,27445,27472,27514,27587,27588,27684,27696,27905,27920,28036,28121,28741,29109,29111,29186,29464,29902,30069,30087,30222,30989]]],["things",[48,37,[[39,4,3,0,3,[[934,1,1,0,1],[944,1,1,1,2],[950,2,1,2,3]]],[40,4,2,3,5,[[964,2,1,3,4],[968,2,1,4,5]]],[41,6,5,5,10,[[991,1,1,5,6],[992,2,1,6,7],[994,1,1,7,8],[996,2,2,8,10]]],[43,5,5,10,15,[[1018,1,1,10,11],[1025,1,1,11,12],[1035,1,1,12,13],[1036,1,1,13,14],[1045,1,1,14,15]]],[44,5,3,15,18,[[1047,1,1,15,16],[1053,2,1,16,17],[1059,2,1,17,18]]],[45,9,7,18,25,[[1062,1,1,18,19],[1063,4,3,19,22],[1068,4,3,22,25]]],[46,3,3,25,28,[[1082,1,1,25,26],[1087,1,1,26,27],[1088,1,1,27,28]]],[49,3,3,28,31,[[1103,1,1,28,29],[1104,1,1,29,30],[1106,1,1,30,31]]],[50,3,2,31,33,[[1107,2,1,31,32],[1109,1,1,32,33]]],[57,2,2,33,35,[[1137,1,1,33,34],[1141,1,1,34,35]]],[61,1,1,35,36,[[1160,1,1,35,36]]],[65,3,1,36,37,[[1176,3,1,36,37]]]],[23316,23695,23893,24533,24690,25773,25804,25901,26018,26026,26926,27188,27582,27593,27930,27976,28121,28299,28391,28405,28406,28408,28519,28520,28521,28887,28978,29019,29373,29412,29460,29485,29519,30031,30128,30565,30867]]],["this",[6,6,[[39,1,1,0,1,[[949,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]],[57,3,3,3,6,[[1139,2,2,3,5],[1144,1,1,5,6]]]],[23847,28275,29176,30085,30088,30239]]],["those",[2,2,[[39,1,1,0,1,[[944,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]]],[23695,27534]]],["we",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28046]]],["what",[2,2,[[43,1,1,0,1,[[1040,1,1,0,1]]],[58,1,1,1,2,[[1149,1,1,1,2]]]],[27764,30351]]],["whereby",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29442]]],["whereof",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27542]]],["which",[104,101,[[39,24,24,0,24,[[929,1,1,0,1],[930,1,1,1,2],[932,2,2,2,4],[933,4,4,4,8],[934,4,4,8,12],[935,3,3,12,15],[938,2,2,15,17],[940,1,1,17,18],[943,1,1,18,19],[944,1,1,19,20],[946,3,3,20,23],[951,1,1,23,24]]],[40,4,4,24,28,[[967,2,2,24,26],[968,1,1,26,27],[969,1,1,27,28]]],[41,5,5,28,33,[[973,1,1,28,29],[977,1,1,29,30],[981,1,1,30,31],[983,2,2,31,33]]],[42,2,2,33,35,[[1008,1,1,33,34],[1009,1,1,34,35]]],[43,10,10,35,45,[[1020,1,1,35,36],[1024,1,1,36,37],[1025,2,2,37,39],[1028,1,1,39,40],[1031,1,1,40,41],[1032,1,1,41,42],[1033,1,1,42,43],[1036,1,1,43,44],[1038,1,1,44,45]]],[44,15,14,45,59,[[1046,1,1,45,46],[1049,1,1,46,47],[1050,1,1,47,48],[1052,2,2,48,50],[1053,1,1,50,51],[1054,4,3,51,54],[1055,1,1,54,55],[1056,1,1,55,56],[1060,2,2,56,58],[1061,1,1,58,59]]],[45,6,5,59,64,[[1062,1,1,59,60],[1063,2,2,60,62],[1065,1,1,62,63],[1076,2,1,63,64]]],[46,4,4,64,68,[[1079,1,1,64,65],[1082,1,1,65,66],[1084,1,1,66,67],[1085,1,1,67,68]]],[47,2,2,68,70,[[1091,1,1,68,69],[1094,1,1,69,70]]],[48,2,1,70,71,[[1097,2,1,70,71]]],[49,4,4,71,75,[[1103,1,1,71,72],[1104,1,1,72,73],[1105,2,2,73,75]]],[50,2,2,75,77,[[1107,1,1,75,76],[1109,1,1,76,77]]],[51,1,1,77,78,[[1114,1,1,77,78]]],[53,3,3,78,81,[[1119,2,2,78,80],[1121,1,1,80,81]]],[54,5,5,81,86,[[1125,3,3,81,84],[1126,1,1,84,85],[1127,1,1,85,86]]],[55,1,1,86,87,[[1129,1,1,86,87]]],[56,1,1,87,88,[[1132,1,1,87,88]]],[57,3,3,88,91,[[1139,1,1,88,89],[1143,1,1,89,90],[1144,1,1,90,91]]],[58,1,1,91,92,[[1146,1,1,91,92]]],[59,1,1,92,93,[[1155,1,1,92,93]]],[65,8,8,93,101,[[1167,2,2,93,95],[1173,1,1,95,96],[1174,2,2,96,98],[1175,1,1,98,99],[1180,1,1,99,100],[1186,1,1,100,101]]]],[23166,23184,23223,23225,23246,23250,23279,23282,23283,23288,23291,23300,23327,23330,23337,23449,23450,23539,23634,23689,23737,23741,23746,23927,24665,24666,24698,24749,24963,25114,25362,25407,25440,26601,26631,27012,27150,27177,27190,27329,27417,27465,27487,27611,27685,27933,28033,28062,28096,28101,28155,28161,28180,28185,28193,28233,28329,28334,28337,28381,28405,28406,28450,28728,28830,28879,28930,28954,29079,29145,29216,29372,29400,29427,29430,29488,29522,29613,29700,29710,29744,29810,29822,29824,29837,29868,29893,29944,30092,30184,30224,30267,30466,30701,30708,30827,30830,30836,30853,30943,31046]]],["who",[8,8,[[39,1,1,0,1,[[929,1,1,0,1]]],[43,2,2,1,3,[[1021,1,1,1,2],[1030,1,1,2,3]]],[44,1,1,3,4,[[1061,1,1,3,4]]],[47,1,1,4,5,[[1092,1,1,4,5]]],[48,2,2,5,7,[[1098,1,1,5,6],[1100,1,1,6,7]]],[50,1,1,7,8,[[1110,1,1,7,8]]]],[23160,27058,27371,28348,29084,29240,29278,29554]]],["whom",[4,1,[[44,4,1,0,1,[[1058,4,1,0,1]]]],[28273]]],["whosoever",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31097]]],["words",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29791]]],["ye",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29469]]],["your",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30366]]]]},{"k":"G3589","v":[["*",[2,2,[[41,2,2,0,2,[[974,1,1,0,1],[988,1,1,1,2]]]],[25010,25627]]],["+",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25010]]],["fourscore",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25627]]]]},{"k":"G3590","v":[["eighth",[5,5,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]],[65,2,2,3,5,[[1183,1,1,3,4],[1187,1,1,4,5]]]],[24952,27124,30505,30986,31073]]]]},{"k":"G3591","v":[["weight",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30213]]]]},{"k":"G3592","v":[["*",[12,12,[[41,2,2,0,2,[[982,1,1,0,1],[988,1,1,1,2]]],[43,2,2,2,4,[[1032,1,1,2,3],[1038,1,1,3,4]]],[58,1,1,4,5,[[1149,1,1,4,5]]],[65,7,7,5,12,[[1168,4,4,5,9],[1169,3,3,9,12]]]],[25402,25645,27465,27675,30350,30718,30725,30729,30735,30747,30753,30760]]],["Thus",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27675]]],["he",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25645]]],["manner",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27465]]],["she",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25402]]],["such",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30350]]],["things",[7,7,[[65,7,7,0,7,[[1168,4,4,0,4],[1169,3,3,4,7]]]],[30718,30725,30729,30735,30747,30753,30760]]]]},{"k":"G3593","v":[["journeyed",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25396]]]]},{"k":"G3594","v":[["*",[5,5,[[39,1,1,0,1,[[943,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[42,1,1,2,3,[[1012,1,1,2,3]]],[43,1,1,3,4,[[1025,1,1,3,4]]],[65,1,1,4,5,[[1173,1,1,4,5]]]],[23647,25185,26739,27207,30827]]],["guide",[2,2,[[42,1,1,0,1,[[1012,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]]],[26739,27207]]],["lead",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[65,1,1,2,3,[[1173,1,1,2,3]]]],[23647,25185,30827]]]]},{"k":"G3595","v":[["*",[5,5,[[39,3,3,0,3,[[943,1,1,0,1],[951,2,2,1,3]]],[43,1,1,3,4,[[1018,1,1,3,4]]],[44,1,1,4,5,[[1047,1,1,4,5]]]],[23647,23934,23942,26939,27981]]],["guide",[2,2,[[43,1,1,0,1,[[1018,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]]],[26939,27981]]],["guides",[2,2,[[39,2,2,0,2,[[951,2,2,0,2]]]],[23934,23942]]],["leaders",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23647]]]]},{"k":"G3596","v":[["journey",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27268]]]]},{"k":"G3597","v":[["*",[2,2,[[42,1,1,0,1,[[1000,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[26162,29015]]],["journey",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26162]]],["journeyings",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29015]]]]},{"k":"G3598","v":[["*",[102,99,[[39,22,21,0,21,[[930,1,1,0,1],[931,1,1,1,2],[932,1,1,2,3],[933,1,1,3,4],[935,2,2,4,6],[936,1,1,6,7],[938,2,2,7,9],[939,1,1,9,10],[941,2,2,10,12],[943,1,1,12,13],[948,2,2,13,15],[949,4,3,15,18],[950,3,3,18,21]]],[40,17,16,21,37,[[957,2,2,21,23],[958,1,1,23,24],[960,2,2,24,26],[962,1,1,26,27],[964,2,2,27,29],[965,2,2,29,31],[966,4,4,31,35],[967,2,1,35,36],[968,1,1,36,37]]],[41,20,20,37,57,[[973,2,2,37,39],[974,1,1,39,40],[975,2,2,40,42],[979,1,1,42,43],[980,2,2,43,45],[981,2,2,45,47],[982,2,2,47,49],[983,1,1,49,50],[984,1,1,50,51],[986,1,1,51,52],[990,1,1,52,53],[991,1,1,53,54],[992,1,1,54,55],[996,2,2,55,57]]],[42,4,4,57,61,[[997,1,1,57,58],[1010,3,3,58,61]]],[43,20,20,61,81,[[1018,1,1,61,62],[1019,1,1,62,63],[1025,3,3,63,66],[1026,3,3,66,69],[1030,1,1,69,70],[1031,1,1,70,71],[1033,1,1,71,72],[1035,2,2,72,74],[1036,2,2,74,76],[1039,1,1,76,77],[1041,2,2,77,79],[1042,1,1,79,80],[1043,1,1,80,81]]],[44,3,3,81,84,[[1048,2,2,81,83],[1056,1,1,83,84]]],[45,2,2,84,86,[[1065,1,1,84,85],[1073,1,1,85,86]]],[51,1,1,86,87,[[1113,1,1,86,87]]],[57,3,3,87,90,[[1135,1,1,87,88],[1141,1,1,88,89],[1142,1,1,89,90]]],[58,3,3,90,93,[[1146,1,1,90,91],[1147,1,1,91,92],[1150,1,1,92,93]]],[60,4,3,93,96,[[1157,4,3,93,96]]],[64,1,1,96,97,[[1166,1,1,96,97]]],[65,2,2,97,99,[[1181,1,1,97,98],[1182,1,1,98,99]]]],[23181,23195,23224,23259,23329,23330,23373,23422,23427,23469,23543,23558,23665,23809,23822,23834,23845,23858,23881,23882,23888,24217,24218,24283,24327,24338,24415,24503,24527,24571,24572,24605,24620,24634,24640,24648,24687,24969,24972,25017,25029,25030,25222,25250,25257,25304,25358,25367,25394,25411,25517,25576,25723,25767,25800,26023,26026,26067,26672,26673,26674,26935,26977,27202,27212,27215,27218,27233,27243,27372,27430,27500,27582,27583,27594,27608,27708,27783,27791,27799,27836,28007,28008,28242,28450,28665,29601,30005,30113,30153,30274,30318,30374,30502,30515,30521,30683,30949,30966]]],["+",[4,4,[[39,2,2,0,2,[[949,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[958,1,1,2,3]]],[41,1,1,3,4,[[975,1,1,3,4]]]],[23834,23881,24283,25030]]],["highways",[2,2,[[39,1,1,0,1,[[950,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]]],[23882,25576]]],["journey",[6,6,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,3,3,2,5,[[974,1,1,2,3],[981,1,1,3,4],[983,1,1,4,5]]],[43,1,1,5,6,[[1018,1,1,5,6]]]],[23427,24415,25017,25304,25411,26935]]],["side",[9,9,[[39,3,3,0,3,[[941,2,2,0,2],[948,1,1,2,3]]],[40,3,3,3,6,[[960,2,2,3,5],[966,1,1,5,6]]],[41,3,3,6,9,[[980,2,2,6,8],[990,1,1,8,9]]]],[23543,23558,23822,24327,24338,24634,25250,25257,25723]]],["way",[71,69,[[39,15,15,0,15,[[930,1,1,0,1],[931,1,1,1,2],[932,1,1,2,3],[933,1,1,3,4],[935,2,2,4,6],[936,1,1,6,7],[938,1,1,7,8],[939,1,1,8,9],[943,1,1,9,10],[948,1,1,10,11],[949,3,3,11,14],[950,1,1,14,15]]],[40,12,11,15,26,[[957,2,2,15,17],[964,2,2,17,19],[965,2,2,19,21],[966,3,3,21,24],[967,2,1,24,25],[968,1,1,25,26]]],[41,11,11,26,37,[[973,1,1,26,27],[975,1,1,27,28],[979,1,1,28,29],[981,1,1,29,30],[982,2,2,30,32],[984,1,1,32,33],[991,1,1,33,34],[992,1,1,34,35],[996,2,2,35,37]]],[42,4,4,37,41,[[997,1,1,37,38],[1010,3,3,38,41]]],[43,16,16,41,57,[[1025,3,3,41,44],[1026,3,3,44,47],[1033,1,1,47,48],[1035,2,2,48,50],[1036,2,2,50,52],[1039,1,1,52,53],[1041,2,2,53,55],[1042,1,1,55,56],[1043,1,1,56,57]]],[44,1,1,57,58,[[1048,1,1,57,58]]],[45,1,1,58,59,[[1073,1,1,58,59]]],[51,1,1,59,60,[[1113,1,1,59,60]]],[57,2,2,60,62,[[1141,1,1,60,61],[1142,1,1,61,62]]],[58,2,2,62,64,[[1147,1,1,62,63],[1150,1,1,63,64]]],[60,4,3,64,67,[[1157,4,3,64,67]]],[64,1,1,67,68,[[1166,1,1,67,68]]],[65,1,1,68,69,[[1182,1,1,68,69]]]],[23181,23195,23224,23259,23329,23330,23373,23422,23469,23665,23809,23834,23845,23858,23888,24217,24218,24503,24527,24571,24572,24605,24620,24640,24648,24687,24972,25029,25222,25358,25367,25394,25517,25767,25800,26023,26026,26067,26672,26673,26674,27202,27212,27215,27218,27233,27243,27500,27582,27583,27594,27608,27708,27783,27791,27799,27836,28008,28665,29601,30113,30153,30318,30374,30502,30515,30521,30683,30966]]],["ways",[10,10,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,3,3,1,4,[[1019,1,1,1,2],[1030,1,1,2,3],[1031,1,1,3,4]]],[44,2,2,4,6,[[1048,1,1,4,5],[1056,1,1,5,6]]],[45,1,1,6,7,[[1065,1,1,6,7]]],[57,1,1,7,8,[[1135,1,1,7,8]]],[58,1,1,8,9,[[1146,1,1,8,9]]],[65,1,1,9,10,[[1181,1,1,9,10]]]],[24969,26977,27372,27430,28007,28242,28450,30005,30274,30949]]]]},{"k":"G3599","v":[["*",[12,11,[[39,8,7,0,7,[[933,2,1,0,1],[936,1,1,1,2],[941,2,2,2,4],[950,1,1,4,5],[952,1,1,5,6],[953,1,1,6,7]]],[40,1,1,7,8,[[965,1,1,7,8]]],[41,1,1,8,9,[[985,1,1,8,9]]],[43,1,1,9,10,[[1024,1,1,9,10]]],[65,1,1,10,11,[[1175,1,1,10,11]]]],[23272,23357,23581,23589,23885,24008,24038,24556,25546,27170,30848]]],["teeth",[10,10,[[39,6,6,0,6,[[936,1,1,0,1],[941,2,2,1,3],[950,1,1,3,4],[952,1,1,4,5],[953,1,1,5,6]]],[40,1,1,6,7,[[965,1,1,6,7]]],[41,1,1,7,8,[[985,1,1,7,8]]],[43,1,1,8,9,[[1024,1,1,8,9]]],[65,1,1,9,10,[[1175,1,1,9,10]]]],[23357,23581,23589,23885,24008,24038,24556,25546,27170,30848]]],["tooth",[2,1,[[39,2,1,0,1,[[933,2,1,0,1]]]],[23272]]]]},{"k":"G3600","v":[["*",[4,4,[[41,3,3,0,3,[[974,1,1,0,1],[988,2,2,1,3]]],[43,1,1,3,4,[[1037,1,1,3,4]]]],[25021,25644,25645,27664]]],["Sorrowing",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27664]]],["sorrowing",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25021]]],["tormented",[2,2,[[41,2,2,0,2,[[988,2,2,0,2]]]],[25644,25645]]]]},{"k":"G3601","v":[["*",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[28157,29798]]],["sorrow",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28157]]],["sorrows",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29798]]]]},{"k":"G3602","v":[["mourning",[2,2,[[39,1,1,0,1,[[930,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]]],[23187,28923]]]]},{"k":"G3603","v":[["*",[17,17,[[40,8,8,0,8,[[959,1,1,0,1],[963,2,2,1,3],[968,1,1,3,4],[971,4,4,4,8]]],[42,1,1,8,9,[[997,1,1,8,9]]],[43,2,2,9,11,[[1018,1,1,9,10],[1021,1,1,10,11]]],[48,1,1,11,12,[[1102,1,1,11,12]]],[50,1,1,12,13,[[1107,1,1,12,13]]],[57,1,1,13,14,[[1139,1,1,13,14]]],[65,3,3,14,17,[[1186,1,1,14,15],[1187,2,2,15,17]]]],[24305,24474,24497,24715,24842,24848,24860,24868,26085,26935,27058,29354,29489,30066,31050,31061,31070]]],["called",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24842]]],["is",[14,14,[[40,5,5,0,5,[[959,1,1,0,1],[963,1,1,1,2],[971,3,3,2,5]]],[42,1,1,5,6,[[997,1,1,5,6]]],[43,2,2,6,8,[[1018,1,1,6,7],[1021,1,1,7,8]]],[48,1,1,8,9,[[1102,1,1,8,9]]],[50,1,1,9,10,[[1107,1,1,9,10]]],[57,1,1,10,11,[[1139,1,1,10,11]]],[65,3,3,11,14,[[1186,1,1,11,12],[1187,2,2,12,14]]]],[24305,24497,24848,24860,24868,26085,26935,27058,29354,29489,30066,31050,31061,31070]]],["make",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24715]]],["say",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24474]]]]},{"k":"G3604","v":[["Ozias",[2,2,[[39,2,2,0,2,[[929,2,2,0,2]]]],[23152,23153]]]]},{"k":"G3605","v":[["stinketh",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26562]]]]},{"k":"G3606","v":[["*",[15,15,[[39,4,4,0,4,[[940,1,1,0,1],[942,1,1,1,2],[953,2,2,2,4]]],[41,1,1,4,5,[[983,1,1,4,5]]],[43,3,3,5,8,[[1031,1,1,5,6],[1043,1,1,6,7],[1045,1,1,7,8]]],[57,6,6,8,14,[[1134,1,1,8,9],[1135,1,1,9,10],[1139,1,1,10,11],[1140,1,1,11,12],[1141,1,1,12,13],[1143,1,1,13,14]]],[61,1,1,14,15,[[1160,1,1,14,15]]]],[23533,23604,24032,24034,25429,27440,27842,27912,29994,29996,30089,30095,30123,30191,30568]]],["Wherefore",[3,3,[[57,3,3,0,3,[[1134,1,1,0,1],[1135,1,1,1,2],[1139,1,1,2,3]]]],[29994,29996,30089]]],["Whereupon",[3,3,[[39,1,1,0,1,[[942,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[23604,27842,30123]]],["thence",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27912]]],["whence",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[43,1,1,2,3,[[1031,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[23533,25429,27440,30191]]],["where",[2,2,[[39,2,2,0,2,[[953,2,2,0,2]]]],[24032,24034]]],["whereby",[1,1,[[61,1,1,0,1,[[1160,1,1,0,1]]]],[30568]]],["wherefore",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30095]]]]},{"k":"G3607","v":[["sheet",[2,2,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]]],[27270,27312]]]]},{"k":"G3608","v":[["clothes",[5,5,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,4,4,1,5,[[1015,1,1,1,2],[1016,3,3,2,5]]]],[26003,26865,26872,26873,26874]]]]},{"k":"G3609","v":[["*",[3,3,[[47,1,1,0,1,[[1096,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]]],[29198,29248,29771]]],["house",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29771]]],["household",[2,2,[[47,1,1,0,1,[[1096,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]]],[29198,29248]]]]},{"k":"G3610","v":[["*",[4,4,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]],[44,1,1,2,3,[[1059,1,1,2,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[25633,27266,28284,30417]]],["Servants",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30417]]],["servant",[2,2,[[41,1,1,0,1,[[988,1,1,0,1]]],[44,1,1,1,2,[[1059,1,1,1,2]]]],[25633,28284]]],["servants",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27266]]]]},{"k":"G3611","v":[["*",[9,9,[[44,5,5,0,5,[[1052,3,3,0,3],[1053,2,2,3,5]]],[45,3,3,5,8,[[1064,1,1,5,6],[1068,2,2,6,8]]],[53,1,1,8,9,[[1124,1,1,8,9]]]],[28108,28109,28111,28125,28127,28426,28499,28500,29804]]],["dwell",[4,4,[[44,2,2,0,2,[[1053,2,2,0,2]]],[45,2,2,2,4,[[1068,2,2,2,4]]]],[28125,28127,28499,28500]]],["dwelleth",[4,4,[[44,3,3,0,3,[[1052,3,3,0,3]]],[45,1,1,3,4,[[1064,1,1,3,4]]]],[28108,28109,28111,28426]]],["dwelling",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29804]]]]},{"k":"G3612","v":[["prison",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27344]]]]},{"k":"G3613","v":[["*",[2,2,[[46,1,1,0,1,[[1082,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[28879,30678]]],["habitation",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30678]]],["house",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28879]]]]},{"k":"G3614","v":[["*",[95,85,[[39,26,25,0,25,[[930,1,1,0,1],[933,1,1,1,2],[935,4,4,2,6],[936,2,2,6,8],[937,3,3,8,11],[938,3,3,11,14],[940,3,2,14,16],[941,3,3,16,19],[945,1,1,19,20],[947,1,1,20,21],[951,1,1,21,22],[952,2,2,22,24],[954,1,1,24,25]]],[40,19,16,25,41,[[957,1,1,25,26],[958,1,1,26,27],[959,4,2,27,29],[962,2,2,29,31],[963,1,1,31,32],[965,1,1,32,33],[966,3,3,33,36],[968,1,1,36,37],[969,4,3,37,40],[970,1,1,40,41]]],[41,24,20,41,61,[[976,1,1,41,42],[977,1,1,42,43],[978,4,2,43,45],[979,4,4,45,49],[980,2,2,49,51],[981,1,1,51,52],[982,4,2,52,54],[987,2,2,54,56],[989,1,1,56,57],[990,1,1,57,58],[992,1,1,58,59],[994,2,2,59,61]]],[42,5,5,61,66,[[1000,1,1,61,62],[1004,1,1,62,63],[1007,1,1,63,64],[1008,1,1,64,65],[1010,1,1,65,66]]],[43,12,11,66,77,[[1021,1,1,66,67],[1026,2,2,67,69],[1027,3,3,69,72],[1028,1,1,72,73],[1029,1,1,73,74],[1033,1,1,74,75],[1034,1,1,75,76],[1035,2,1,76,77]]],[45,2,2,77,79,[[1072,1,1,77,78],[1077,1,1,78,79]]],[46,2,1,79,80,[[1082,2,1,79,80]]],[49,1,1,80,81,[[1106,1,1,80,81]]],[53,1,1,81,82,[[1123,1,1,81,82]]],[54,2,2,82,84,[[1126,1,1,82,83],[1127,1,1,83,84]]],[62,1,1,84,85,[[1164,1,1,84,85]]]],[23180,23249,23340,23341,23342,23343,23351,23359,23389,23402,23407,23429,23430,23431,23514,23518,23540,23575,23596,23725,23791,23932,23974,24000,24060,24244,24275,24313,24315,24411,24417,24487,24571,24598,24617,24618,24713,24732,24751,24752,24757,25101,25136,25194,25195,25201,25231,25232,25239,25272,25296,25305,25368,25370,25596,25613,25682,25717,25826,25874,25875,26209,26416,26554,26583,26670,27056,27227,27233,27265,27276,27291,27318,27349,27515,27528,27564,28622,28791,28878,29464,29776,29847,29859,30655]]],["+",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29776]]],["home",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23351]]],["house",[84,74,[[39,23,22,0,22,[[930,1,1,0,1],[933,1,1,1,2],[935,4,4,2,6],[936,1,1,6,7],[937,3,3,7,10],[938,3,3,10,13],[940,3,2,13,15],[941,3,3,15,18],[945,1,1,18,19],[952,2,2,19,21],[954,1,1,21,22]]],[40,17,14,22,36,[[957,1,1,22,23],[958,1,1,23,24],[959,4,2,24,26],[962,2,2,26,28],[963,1,1,28,29],[965,1,1,29,30],[966,2,2,30,32],[969,4,3,32,35],[970,1,1,35,36]]],[41,23,19,36,55,[[976,1,1,36,37],[977,1,1,37,38],[978,4,2,38,40],[979,4,4,40,44],[980,2,2,44,46],[981,1,1,46,47],[982,4,2,47,49],[987,2,2,49,51],[989,1,1,51,52],[990,1,1,52,53],[994,2,2,53,55]]],[42,5,5,55,60,[[1000,1,1,55,56],[1004,1,1,56,57],[1007,1,1,57,58],[1008,1,1,58,59],[1010,1,1,59,60]]],[43,11,10,60,70,[[1026,2,2,60,62],[1027,3,3,62,65],[1028,1,1,65,66],[1029,1,1,66,67],[1033,1,1,67,68],[1034,1,1,68,69],[1035,2,1,69,70]]],[45,1,1,70,71,[[1077,1,1,70,71]]],[46,2,1,71,72,[[1082,2,1,71,72]]],[54,1,1,72,73,[[1126,1,1,72,73]]],[62,1,1,73,74,[[1164,1,1,73,74]]]],[23180,23249,23340,23341,23342,23343,23359,23389,23402,23407,23429,23430,23431,23514,23518,23540,23575,23596,23725,23974,24000,24060,24244,24275,24313,24315,24411,24417,24487,24571,24598,24617,24732,24751,24752,24757,25101,25136,25194,25195,25201,25231,25232,25239,25272,25296,25305,25368,25370,25596,25613,25682,25717,25874,25875,26209,26416,26554,26583,26670,27227,27233,27265,27276,27291,27318,27349,27515,27528,27564,28791,28878,29847,30655]]],["household",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29464]]],["houses",[8,8,[[39,2,2,0,2,[[947,1,1,0,1],[951,1,1,1,2]]],[40,2,2,2,4,[[966,1,1,2,3],[968,1,1,3,4]]],[41,1,1,4,5,[[992,1,1,4,5]]],[43,1,1,5,6,[[1021,1,1,5,6]]],[45,1,1,6,7,[[1072,1,1,6,7]]],[54,1,1,7,8,[[1127,1,1,7,8]]]],[23791,23932,24618,24713,25826,27056,28622,29859]]]]},{"k":"G3615","v":[["+",[2,2,[[39,2,2,0,2,[[938,2,2,0,2]]]],[23442,23453]]]]},{"k":"G3616","v":[["house",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29777]]]]},{"k":"G3617","v":[["*",[12,12,[[39,7,7,0,7,[[938,1,1,0,1],[941,2,2,1,3],[948,2,2,3,5],[949,1,1,5,6],[952,1,1,6,7]]],[40,1,1,7,8,[[970,1,1,7,8]]],[41,4,4,8,12,[[984,1,1,8,9],[985,1,1,9,10],[986,1,1,10,11],[994,1,1,11,12]]]],[23442,23566,23591,23793,23803,23859,24000,24768,25498,25543,25574,25875]]],["goodman",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25875]]],["house",[7,7,[[39,3,3,0,3,[[938,1,1,0,1],[948,1,1,1,2],[952,1,1,2,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[41,3,3,4,7,[[984,1,1,4,5],[985,1,1,5,6],[986,1,1,6,7]]]],[23442,23803,24000,24768,25498,25543,25574]]],["householder",[4,4,[[39,4,4,0,4,[[941,2,2,0,2],[948,1,1,2,3],[949,1,1,3,4]]]],[23566,23591,23793,23859]]]]},{"k":"G3618","v":[["*",[39,38,[[39,8,8,0,8,[[935,2,2,0,2],[944,1,1,2,3],[949,2,2,3,5],[951,1,1,5,6],[954,1,1,6,7],[955,1,1,7,8]]],[40,4,4,8,12,[[968,2,2,8,10],[970,1,1,10,11],[971,1,1,11,12]]],[41,11,11,12,23,[[976,1,1,12,13],[978,2,2,13,15],[979,1,1,15,16],[983,2,2,16,18],[984,1,1,18,19],[986,2,2,19,21],[989,1,1,21,22],[992,1,1,22,23]]],[42,1,1,23,24,[[998,1,1,23,24]]],[43,4,4,24,28,[[1021,1,1,24,25],[1024,2,2,25,27],[1026,1,1,27,28]]],[44,1,1,28,29,[[1060,1,1,28,29]]],[45,6,5,29,34,[[1069,2,2,29,31],[1071,1,1,31,32],[1075,3,2,32,34]]],[47,1,1,34,35,[[1092,1,1,34,35]]],[51,1,1,35,36,[[1115,1,1,35,36]]],[59,2,2,36,38,[[1152,2,2,36,38]]]],[23340,23342,23690,23859,23868,23947,24115,24169,24674,24683,24812,24855,25092,25194,25195,25200,25452,25453,25477,25581,25583,25679,25796,26115,27033,27163,27165,27247,28323,28528,28537,28590,28682,28695,29099,29632,30404,30406]]],["+",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26115]]],["build",[12,12,[[39,3,3,0,3,[[944,1,1,0,1],[951,1,1,1,2],[954,1,1,2,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[41,5,5,4,9,[[983,2,2,4,6],[984,1,1,6,7],[986,2,2,7,9]]],[43,1,1,9,10,[[1024,1,1,9,10]]],[44,1,1,10,11,[[1060,1,1,10,11]]],[47,1,1,11,12,[[1092,1,1,11,12]]]],[23690,23947,24115,24812,25452,25453,25477,25581,25583,27165,28323,29099]]],["builded",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25679]]],["builders",[5,5,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[43,1,1,3,4,[[1021,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[23868,24683,25796,27033,30406]]],["buildest",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24169,24855]]],["built",[9,9,[[39,3,3,0,3,[[935,2,2,0,2],[949,1,1,2,3]]],[40,1,1,3,4,[[968,1,1,3,4]]],[41,4,4,4,8,[[976,1,1,4,5],[978,2,2,5,7],[979,1,1,7,8]]],[43,1,1,8,9,[[1024,1,1,8,9]]]],[23340,23342,23859,24674,25092,25194,25195,25200,27163]]],["edified",[2,2,[[43,1,1,0,1,[[1026,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[27247,28695]]],["edifieth",[3,2,[[45,3,2,0,2,[[1069,1,1,0,1],[1075,2,1,1,2]]]],[28528,28682]]],["edify",[2,2,[[45,1,1,0,1,[[1071,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]]],[28590,29632]]],["emboldened",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28537]]],["up",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30404]]]]},{"k":"G3619","v":[["*",[18,18,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,2,2,1,3,[[969,2,2,1,3]]],[44,2,2,3,5,[[1059,1,1,3,4],[1060,1,1,4,5]]],[45,5,5,5,10,[[1064,1,1,5,6],[1075,4,4,6,10]]],[46,4,4,10,14,[[1082,1,1,10,11],[1087,1,1,11,12],[1089,1,1,12,13],[1090,1,1,13,14]]],[48,4,4,14,18,[[1098,1,1,14,15],[1100,3,3,15,18]]]],[23958,24718,24719,28299,28305,28419,28681,28683,28690,28704,28878,28979,29041,29053,29250,29284,29288,29301]]],["+",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28299]]],["building",[3,3,[[45,1,1,0,1,[[1064,1,1,0,1]]],[46,1,1,1,2,[[1082,1,1,1,2]]],[48,1,1,2,3,[[1098,1,1,2,3]]]],[28419,28878,29250]]],["buildings",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,2,2,1,3,[[969,2,2,1,3]]]],[23958,24718,24719]]],["edification",[4,4,[[44,1,1,0,1,[[1060,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[46,2,2,2,4,[[1087,1,1,2,3],[1090,1,1,3,4]]]],[28305,28681,28979,29053]]],["edifying",[7,7,[[45,3,3,0,3,[[1075,3,3,0,3]]],[46,1,1,3,4,[[1089,1,1,3,4]]],[48,3,3,4,7,[[1100,3,3,4,7]]]],[28683,28690,28704,29041,29284,29288,29301]]]]},{"k":"G3620","v":[]},{"k":"G3621","v":[["+",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25622]]]]},{"k":"G3622","v":[["*",[8,8,[[41,3,3,0,3,[[988,3,3,0,3]]],[45,1,1,3,4,[[1070,1,1,3,4]]],[48,2,2,4,6,[[1097,1,1,4,5],[1099,1,1,5,6]]],[50,1,1,6,7,[[1107,1,1,6,7]]],[53,1,1,7,8,[[1119,1,1,7,8]]]],[25622,25623,25624,28557,29216,29253,29490,29700]]],["dispensation",[4,4,[[45,1,1,0,1,[[1070,1,1,0,1]]],[48,2,2,1,3,[[1097,1,1,1,2],[1099,1,1,2,3]]],[50,1,1,3,4,[[1107,1,1,3,4]]]],[28557,29216,29253,29490]]],["edifying",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29700]]],["stewardship",[3,3,[[41,3,3,0,3,[[988,3,3,0,3]]]],[25622,25623,25624]]]]},{"k":"G3623","v":[["*",[10,10,[[41,4,4,0,4,[[984,1,1,0,1],[988,3,3,1,4]]],[44,1,1,4,5,[[1061,1,1,4,5]]],[45,2,2,5,7,[[1065,2,2,5,7]]],[47,1,1,7,8,[[1094,1,1,7,8]]],[55,1,1,8,9,[[1129,1,1,8,9]]],[59,1,1,9,10,[[1154,1,1,9,10]]]],[25501,25621,25623,25628,28359,28434,28435,29133,29899,30456]]],["chamberlain",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28359]]],["governors",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29133]]],["steward",[5,5,[[41,4,4,0,4,[[984,1,1,0,1],[988,3,3,1,4]]],[55,1,1,4,5,[[1129,1,1,4,5]]]],[25501,25621,25623,25628,29899]]],["stewards",[3,3,[[45,2,2,0,2,[[1065,2,2,0,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[28434,28435,30456]]]]},{"k":"G3624","v":[["*",[114,106,[[39,10,9,0,9,[[937,2,2,0,2],[938,1,1,2,3],[939,1,1,3,4],[940,2,2,4,6],[943,1,1,6,7],[949,2,1,7,8],[951,1,1,8,9]]],[40,13,12,9,21,[[958,3,3,9,12],[959,1,1,12,13],[961,2,2,13,15],[963,2,2,15,17],[964,2,2,17,19],[965,1,1,19,20],[967,2,1,20,21]]],[41,34,32,21,53,[[973,6,6,21,27],[974,1,1,27,28],[977,2,2,28,30],[978,1,1,30,31],[979,1,1,31,32],[980,2,2,32,34],[981,1,1,34,35],[982,2,2,35,37],[983,4,3,37,40],[984,2,2,40,42],[985,1,1,42,43],[986,2,2,43,45],[987,1,1,45,46],[988,2,2,46,48],[990,1,1,48,49],[991,4,3,49,52],[994,1,1,52,53]]],[42,5,4,53,57,[[998,3,2,53,55],[1003,1,1,55,56],[1007,1,1,56,57]]],[43,24,23,57,80,[[1019,3,3,57,60],[1022,1,1,60,61],[1024,5,5,61,66],[1025,1,1,66,67],[1027,3,3,67,70],[1028,3,3,70,73],[1033,4,3,73,76],[1035,1,1,76,77],[1036,1,1,77,78],[1037,1,1,78,79],[1038,1,1,79,80]]],[44,1,1,80,81,[[1061,1,1,80,81]]],[45,4,4,81,85,[[1062,1,1,81,82],[1072,1,1,82,83],[1075,1,1,83,84],[1077,1,1,84,85]]],[50,1,1,85,86,[[1110,1,1,85,86]]],[53,5,5,86,91,[[1121,4,4,86,90],[1123,1,1,90,91]]],[54,2,2,91,93,[[1125,1,1,91,92],[1128,1,1,92,93]]],[55,1,1,93,94,[[1129,1,1,93,94]]],[56,1,1,94,95,[[1132,1,1,94,95]]],[57,11,9,95,104,[[1135,6,5,95,100],[1140,3,2,100,102],[1142,1,1,102,103],[1143,1,1,103,104]]],[59,2,2,104,106,[[1152,1,1,104,105],[1154,1,1,105,106]]]],[23385,23386,23423,23467,23493,23533,23657,23839,23956,24261,24271,24286,24307,24383,24402,24480,24493,24503,24526,24566,24657,24916,24920,24926,24933,24949,24962,24977,25131,25132,25150,25205,25284,25286,25362,25368,25401,25422,25429,25456,25498,25511,25553,25554,25576,25594,25624,25647,25702,25736,25740,25777,25918,26111,26112,26381,26543,26951,26985,26995,27101,27126,27136,27158,27163,27165,27179,27261,27281,27289,27319,27320,27321,27498,27514,27517,27565,27601,27646,27672,28341,28379,28634,28713,28795,29557,29735,29736,29743,29746,29767,29825,29889,29903,29940,29997,29998,29999,30000,30001,30100,30102,30154,30179,30404,30463]]],["+",[5,5,[[40,1,1,0,1,[[961,1,1,0,1]]],[43,4,4,1,5,[[1019,1,1,1,2],[1022,1,1,2,3],[1025,1,1,3,4],[1037,1,1,4,5]]]],[24383,26995,27101,27179,27646]]],["home",[4,4,[[41,1,1,0,1,[[987,1,1,0,1]]],[45,2,2,1,3,[[1072,1,1,1,2],[1075,1,1,2,3]]],[53,1,1,3,4,[[1123,1,1,3,4]]]],[25594,28634,28713,29767]]],["house",[96,89,[[39,9,8,0,8,[[937,2,2,0,2],[938,1,1,2,3],[940,2,2,3,5],[943,1,1,5,6],[949,2,1,6,7],[951,1,1,7,8]]],[40,11,10,8,18,[[958,3,3,8,11],[959,1,1,11,12],[961,1,1,12,13],[963,2,2,13,15],[964,1,1,15,16],[965,1,1,16,17],[967,2,1,17,18]]],[41,31,29,18,47,[[973,6,6,18,24],[974,1,1,24,25],[977,2,2,25,27],[978,1,1,27,28],[979,1,1,28,29],[980,2,2,29,31],[981,1,1,31,32],[982,2,2,32,34],[983,3,2,34,36],[984,2,2,36,38],[985,1,1,38,39],[986,2,2,39,41],[988,1,1,41,42],[990,1,1,42,43],[991,4,3,43,46],[994,1,1,46,47]]],[42,5,4,47,51,[[998,3,2,47,49],[1003,1,1,49,50],[1007,1,1,50,51]]],[43,19,19,51,70,[[1019,2,2,51,53],[1024,5,5,53,58],[1027,3,3,58,61],[1028,3,3,61,64],[1033,3,3,64,67],[1035,1,1,67,68],[1036,1,1,68,69],[1038,1,1,69,70]]],[44,1,1,70,71,[[1061,1,1,70,71]]],[45,1,1,71,72,[[1077,1,1,71,72]]],[50,1,1,72,73,[[1110,1,1,72,73]]],[53,3,3,73,76,[[1121,3,3,73,76]]],[54,1,1,76,77,[[1125,1,1,76,77]]],[56,1,1,77,78,[[1132,1,1,77,78]]],[57,11,9,78,87,[[1135,6,5,78,83],[1140,3,2,83,85],[1142,1,1,85,86],[1143,1,1,86,87]]],[59,2,2,87,89,[[1152,1,1,87,88],[1154,1,1,88,89]]]],[23385,23386,23423,23493,23533,23657,23839,23956,24261,24271,24286,24307,24402,24480,24493,24526,24566,24657,24916,24920,24926,24933,24949,24962,24977,25131,25132,25150,25205,25284,25286,25362,25368,25401,25422,25429,25498,25511,25553,25554,25576,25647,25702,25736,25740,25777,25918,26111,26112,26381,26543,26951,26985,27126,27136,27158,27163,27165,27261,27281,27289,27319,27320,27321,27498,27514,27517,27565,27601,27672,28341,28795,29557,29735,29736,29746,29825,29940,29997,29998,29999,30000,30001,30100,30102,30154,30179,30404,30463]]],["household",[3,3,[[43,1,1,0,1,[[1033,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[27498,28379,29889]]],["houses",[5,5,[[39,1,1,0,1,[[939,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[53,1,1,3,4,[[1121,1,1,3,4]]],[55,1,1,4,5,[[1129,1,1,4,5]]]],[23467,24503,25624,29743,29903]]],["temple",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25456]]]]},{"k":"G3625","v":[["*",[15,15,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,3,3,1,4,[[974,1,1,1,2],[976,1,1,2,3],[993,1,1,3,4]]],[43,5,5,4,9,[[1028,1,1,4,5],[1034,2,2,5,7],[1036,1,1,7,8],[1041,1,1,8,9]]],[44,1,1,9,10,[[1055,1,1,9,10]]],[57,2,2,10,12,[[1133,1,1,10,11],[1134,1,1,11,12]]],[65,3,3,12,15,[[1169,1,1,12,13],[1178,1,1,13,14],[1182,1,1,14,15]]]],[23971,24974,25068,25852,27335,27529,27554,27612,27774,28206,29969,29982,30756,30900,30968]]],["+",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27529]]],["earth",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25852]]],["world",[13,13,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[976,1,1,2,3]]],[43,4,4,3,7,[[1028,1,1,3,4],[1034,1,1,4,5],[1036,1,1,5,6],[1041,1,1,6,7]]],[44,1,1,7,8,[[1055,1,1,7,8]]],[57,2,2,8,10,[[1133,1,1,8,9],[1134,1,1,9,10]]],[65,3,3,10,13,[[1169,1,1,10,11],[1178,1,1,11,12],[1182,1,1,12,13]]]],[23971,24974,25068,27335,27554,27612,27774,28206,29969,29982,30756,30900,30968]]]]},{"k":"G3626","v":[["home",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29913]]]]},{"k":"G3627","v":[["compassion",[2,1,[[44,2,1,0,1,[[1054,2,1,0,1]]]],[28170]]]]},{"k":"G3628","v":[["*",[5,5,[[44,1,1,0,1,[[1057,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[50,1,1,3,4,[[1109,1,1,3,4]]],[57,1,1,4,5,[[1142,1,1,4,5]]]],[28246,28803,29392,29529,30161]]],["mercies",[4,4,[[44,1,1,0,1,[[1057,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[50,1,1,3,4,[[1109,1,1,3,4]]]],[28246,28803,29392,29529]]],["mercy",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30161]]]]},{"k":"G3629","v":[["*",[3,2,[[41,2,1,0,1,[[978,2,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[25182,30365]]],["merciful",[2,1,[[41,2,1,0,1,[[978,2,1,0,1]]]],[25182]]],["mercy",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30365]]]]},{"k":"G3630","v":[["winebibber",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]]],[23478,25229]]]]},{"k":"G3631","v":[["*",[33,25,[[39,3,1,0,1,[[937,3,1,0,1]]],[40,5,2,1,3,[[958,4,1,1,2],[971,1,1,2,3]]],[41,6,5,3,8,[[973,1,1,3,4],[977,3,2,4,6],[979,1,1,6,7],[982,1,1,7,8]]],[42,6,4,8,12,[[998,5,3,8,11],[1000,1,1,11,12]]],[44,1,1,12,13,[[1059,1,1,12,13]]],[48,1,1,13,14,[[1101,1,1,13,14]]],[53,2,2,14,16,[[1121,1,1,14,15],[1123,1,1,15,16]]],[55,1,1,16,17,[[1130,1,1,16,17]]],[65,8,8,17,25,[[1172,1,1,17,18],[1180,2,2,18,20],[1182,1,1,20,21],[1183,1,1,21,22],[1184,2,2,22,24],[1185,1,1,24,25]]]],[23396,24282,24849,24908,25144,25145,25228,25397,26098,26104,26105,26202,28301,29322,29739,29786,29911,30799,30934,30936,30973,30977,30996,31006,31032]]],["+",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31032]]],["wine",[32,24,[[39,3,1,0,1,[[937,3,1,0,1]]],[40,5,2,1,3,[[958,4,1,1,2],[971,1,1,2,3]]],[41,6,5,3,8,[[973,1,1,3,4],[977,3,2,4,6],[979,1,1,6,7],[982,1,1,7,8]]],[42,6,4,8,12,[[998,5,3,8,11],[1000,1,1,11,12]]],[44,1,1,12,13,[[1059,1,1,12,13]]],[48,1,1,13,14,[[1101,1,1,13,14]]],[53,2,2,14,16,[[1121,1,1,14,15],[1123,1,1,15,16]]],[55,1,1,16,17,[[1130,1,1,16,17]]],[65,7,7,17,24,[[1172,1,1,17,18],[1180,2,2,18,20],[1182,1,1,20,21],[1183,1,1,21,22],[1184,2,2,22,24]]]],[23396,24282,24849,24908,25144,25145,25228,25397,26098,26104,26105,26202,28301,29322,29739,29786,29911,30799,30934,30936,30973,30977,30996,31006]]]]},{"k":"G3632","v":[["wine",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30449]]]]},{"k":"G3633","v":[["*",[3,3,[[42,1,1,0,1,[[1017,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[26923,29377,30273]]],["suppose",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26923]]],["supposing",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29377]]],["think",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30273]]]]},{"k":"G3634","v":[["*",[15,12,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,2,2,1,3,[[965,1,1,1,2],[969,1,1,2,3]]],[41,1,1,3,4,[[981,1,1,3,4]]],[44,1,1,4,5,[[1054,1,1,4,5]]],[45,2,1,5,6,[[1076,2,1,5,6]]],[46,3,2,6,8,[[1087,1,1,6,7],[1089,2,1,7,8]]],[49,1,1,8,9,[[1103,1,1,8,9]]],[51,1,1,9,10,[[1111,1,1,9,10]]],[54,2,1,10,11,[[1127,2,1,10,11]]],[65,1,1,11,12,[[1182,1,1,11,12]]]],[23978,24541,24736,25356,28161,28766,28982,29042,29391,29565,29864,30972]]],["+",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28161]]],["As",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28766]]],["as",[6,6,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,2,2,1,3,[[965,1,1,1,2],[969,1,1,2,3]]],[45,1,1,3,4,[[1076,1,1,3,4]]],[46,1,1,4,5,[[1089,1,1,4,5]]],[65,1,1,5,6,[[1182,1,1,5,6]]]],[23978,24541,24736,28766,29042,30972]]],["manner",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25356]]],["men",[1,1,[[51,1,1,0,1,[[1111,1,1,0,1]]]],[29565]]],["such",[2,2,[[46,2,2,0,2,[[1087,1,1,0,1],[1089,1,1,1,2]]]],[28982,29042]]],["what",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29864]]],["which",[2,2,[[49,1,1,0,1,[[1103,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[29391,29864]]]]},{"k":"G3635","v":[["delay",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27254]]]]},{"k":"G3636","v":[["*",[3,3,[[39,1,1,0,1,[[953,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]]],[24034,28256,29422]]],["grievous",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29422]]],["slothful",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]]],[24034,28256]]]]},{"k":"G3637","v":[["day",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29426]]]]},{"k":"G3638","v":[["*",[9,9,[[41,5,5,0,5,[[974,1,1,0,1],[981,1,1,1,2],[985,3,3,2,5]]],[42,2,2,5,7,[[1001,1,1,5,6],[1016,1,1,6,7]]],[43,1,1,7,8,[[1026,1,1,7,8]]],[59,1,1,8,9,[[1153,1,1,8,9]]]],[24994,25329,25522,25529,25534,26215,26893,27249,30444]]],["+",[4,4,[[41,3,3,0,3,[[985,3,3,0,3]]],[42,1,1,3,4,[[1001,1,1,3,4]]]],[25522,25529,25534,26215]]],["eight",[5,5,[[41,2,2,0,2,[[974,1,1,0,1],[981,1,1,1,2]]],[42,1,1,2,3,[[1016,1,1,2,3]]],[43,1,1,3,4,[[1026,1,1,3,4]]],[59,1,1,4,5,[[1153,1,1,4,5]]]],[24994,25329,26893,27249,30444]]]]},{"k":"G3639","v":[["destruction",[4,4,[[45,1,1,0,1,[[1066,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]],[53,1,1,3,4,[[1124,1,1,3,4]]]],[28459,29624,29658,29797]]]]},{"k":"G3640","v":[["faith",[5,5,[[39,4,4,0,4,[[934,1,1,0,1],[936,1,1,1,2],[942,1,1,2,3],[944,1,1,3,4]]],[41,1,1,4,5,[[984,1,1,4,5]]]],[23312,23371,23628,23680,25487]]]]},{"k":"G3641","v":[["*",[43,42,[[39,7,7,0,7,[[935,1,1,0,1],[937,1,1,1,2],[943,1,1,2,3],[948,1,1,3,4],[950,1,1,4,5],[953,2,2,5,7]]],[40,4,4,7,11,[[957,1,1,7,8],[962,2,2,8,10],[964,1,1,10,11]]],[41,6,5,11,16,[[977,1,1,11,12],[979,2,1,12,13],[982,1,1,13,14],[984,1,1,14,15],[985,1,1,15,16]]],[43,10,10,16,26,[[1029,1,1,16,17],[1031,1,1,17,18],[1032,1,1,18,19],[1034,2,2,19,21],[1036,2,2,21,23],[1043,2,2,23,25],[1044,1,1,25,26]]],[46,1,1,26,27,[[1085,1,1,26,27]]],[48,1,1,27,28,[[1099,1,1,27,28]]],[53,2,2,28,30,[[1122,1,1,28,29],[1123,1,1,29,30]]],[57,1,1,30,31,[[1144,1,1,30,31]]],[58,2,2,31,33,[[1148,1,1,31,32],[1149,1,1,32,33]]],[59,4,4,33,37,[[1151,1,1,33,34],[1153,1,1,34,35],[1155,2,2,35,37]]],[65,5,5,37,42,[[1168,2,2,37,39],[1169,1,1,39,40],[1178,1,1,40,41],[1183,1,1,41,42]]]],[23330,23416,23667,23808,23886,24029,24031,24234,24412,24438,24507,25110,25242,25365,25507,25541,27355,27442,27444,27527,27535,27608,27609,27851,27852,27875,28947,29254,29755,29786,30222,30324,30351,30380,30444,30475,30477,30731,30737,30750,30903,30985]]],["+",[4,4,[[43,3,3,0,3,[[1031,1,1,0,1],[1043,2,2,1,3]]],[59,1,1,3,4,[[1155,1,1,3,4]]]],[27442,27851,27852,30477]]],["few",[15,15,[[39,5,5,0,5,[[935,1,1,0,1],[937,1,1,1,2],[943,1,1,2,3],[948,1,1,3,4],[950,1,1,4,5]]],[40,2,2,5,7,[[962,1,1,5,6],[964,1,1,6,7]]],[41,3,3,7,10,[[982,1,1,7,8],[984,1,1,8,9],[985,1,1,9,10]]],[43,2,2,10,12,[[1034,2,2,10,12]]],[57,1,1,12,13,[[1144,1,1,12,13]]],[59,1,1,13,14,[[1153,1,1,13,14]]],[65,1,1,14,15,[[1169,1,1,14,15]]]],[23330,23416,23667,23808,23886,24412,24507,25365,25507,25541,27527,27535,30222,30444,30750]]],["further",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24234]]],["little",[7,6,[[41,3,2,0,2,[[977,1,1,0,1],[979,2,1,1,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]],[53,2,2,3,5,[[1122,1,1,3,4],[1123,1,1,4,5]]],[58,1,1,5,6,[[1148,1,1,5,6]]]],[25110,25242,28947,29755,29786,30324]]],["season",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30380]]],["short",[1,1,[[65,1,1,0,1,[[1178,1,1,0,1]]]],[30903]]],["small",[5,5,[[43,5,5,0,5,[[1029,1,1,0,1],[1032,1,1,1,2],[1036,2,2,2,4],[1044,1,1,4,5]]]],[27355,27444,27608,27609,27875]]],["space",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30985]]],["things",[4,4,[[39,2,2,0,2,[[953,2,2,0,2]]],[65,2,2,2,4,[[1168,2,2,2,4]]]],[24029,24031,30731,30737]]],["time",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30351]]],["while",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[24438,30475]]],["words",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29254]]]]},{"k":"G3642","v":[["feebleminded",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29635]]]]},{"k":"G3643","v":[["despise",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30217]]]]},{"k":"G3644","v":[["destroyer",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28577]]]]},{"k":"G3645","v":[["destroyed",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30200]]]]},{"k":"G3646","v":[["offerings",[3,3,[[40,1,1,0,1,[[968,1,1,0,1]]],[57,2,2,1,3,[[1142,2,2,1,3]]]],[24706,30139,30141]]]]},{"k":"G3647","v":[["soundness",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27012]]]]},{"k":"G3648","v":[["*",[2,2,[[51,1,1,0,1,[[1115,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[29644,30270]]],["entire",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30270]]],["whole",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29644]]]]},{"k":"G3649","v":[["howl",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30355]]]]},{"k":"G3650","v":[["*",[112,99,[[39,23,21,0,21,[[929,1,1,0,1],[932,2,2,1,3],[933,2,2,3,5],[934,2,2,5,7],[937,2,2,7,9],[941,1,1,9,10],[942,1,1,10,11],[944,1,1,11,12],[948,1,1,12,13],[949,1,1,13,14],[950,4,2,14,16],[952,1,1,16,17],[954,3,3,17,20],[955,1,1,20,21]]],[40,19,13,21,34,[[957,3,3,21,24],[962,1,1,24,25],[964,1,1,25,26],[968,9,3,26,29],[970,2,2,29,31],[971,3,3,31,34]]],[41,17,13,34,47,[[973,1,1,34,35],[976,1,1,35,36],[977,1,1,36,37],[979,1,1,37,38],[980,2,2,38,40],[981,1,1,40,41],[982,4,1,41,42],[983,3,2,42,44],[985,1,1,44,45],[995,2,2,45,47]]],[42,6,6,47,53,[[1000,1,1,47,48],[1003,1,1,48,49],[1005,1,1,49,50],[1007,1,1,50,51],[1009,1,1,51,52],[1015,1,1,52,53]]],[43,21,21,53,74,[[1019,2,2,53,55],[1022,1,1,55,56],[1024,2,2,56,58],[1025,1,1,58,59],[1026,2,2,59,61],[1027,2,2,61,63],[1028,2,2,63,65],[1030,1,1,65,66],[1032,1,1,66,67],[1035,1,1,67,68],[1036,2,2,68,70],[1038,2,2,70,72],[1039,1,1,72,73],[1045,1,1,73,74]]],[44,4,4,74,78,[[1046,1,1,74,75],[1053,1,1,75,76],[1055,1,1,76,77],[1061,1,1,77,78]]],[45,4,3,78,81,[[1066,1,1,78,79],[1073,2,1,79,80],[1075,1,1,80,81]]],[46,1,1,81,82,[[1078,1,1,81,82]]],[47,2,2,82,84,[[1095,2,2,82,84]]],[49,1,1,84,85,[[1103,1,1,84,85]]],[51,1,1,85,86,[[1114,1,1,85,86]]],[55,1,1,86,87,[[1129,1,1,86,87]]],[57,2,2,87,89,[[1135,2,2,87,89]]],[58,4,4,89,93,[[1147,1,1,89,90],[1148,3,3,90,93]]],[61,2,2,93,95,[[1160,1,1,93,94],[1163,1,1,94,95]]],[65,4,4,95,99,[[1169,1,1,95,96],[1178,1,1,96,97],[1179,1,1,97,98],[1182,1,1,98,99]]]],[23166,23232,23233,23263,23264,23304,23305,23405,23410,23572,23632,23698,23798,23830,23909,23912,23971,24067,24110,24113,24156,24243,24248,24254,24462,24536,24703,24706,24717,24763,24809,24827,24842,24859,24958,25077,25112,25212,25284,25288,25326,25390,25439,25441,25539,25940,25979,26209,26351,26474,26573,26640,26848,26951,26996,27070,27126,27127,27213,27247,27258,27281,27296,27333,27335,27411,27464,27565,27612,27614,27694,27695,27734,27929,27938,28152,28209,28359,28460,28651,28701,28801,29165,29171,29374,29613,29903,29997,30000,30303,30321,30322,30325,30552,30643,30756,30900,30911,30968]]],["+",[2,2,[[42,1,1,0,1,[[1015,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]]],[26848,27929]]],["All",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]]],[23830,28209]]],["all",[63,52,[[39,14,12,0,12,[[929,1,1,0,1],[932,2,2,1,3],[937,2,2,3,5],[942,1,1,5,6],[948,1,1,6,7],[950,4,2,7,9],[952,1,1,9,10],[954,2,2,10,12]]],[40,13,7,12,19,[[957,3,3,12,15],[968,9,3,15,18],[970,1,1,18,19]]],[41,11,8,19,27,[[973,1,1,19,20],[976,1,1,20,21],[977,1,1,21,22],[979,1,1,22,23],[980,1,1,23,24],[982,4,1,24,25],[995,2,2,25,27]]],[43,17,17,27,44,[[1019,2,2,27,29],[1022,1,1,29,30],[1024,2,2,30,32],[1025,1,1,32,33],[1026,2,2,33,35],[1027,2,2,35,37],[1028,1,1,37,38],[1030,1,1,38,39],[1035,1,1,39,40],[1036,1,1,40,41],[1038,2,2,41,43],[1039,1,1,43,44]]],[44,1,1,44,45,[[1053,1,1,44,45]]],[46,1,1,45,46,[[1078,1,1,45,46]]],[49,1,1,46,47,[[1103,1,1,46,47]]],[51,1,1,47,48,[[1114,1,1,47,48]]],[57,2,2,48,50,[[1135,2,2,48,50]]],[65,2,2,50,52,[[1169,1,1,50,51],[1179,1,1,51,52]]]],[23166,23232,23233,23405,23410,23632,23798,23909,23912,23971,24110,24113,24243,24248,24254,24703,24706,24717,24809,24958,25077,25112,25212,25288,25390,25940,25979,26951,26996,27070,27126,27127,27213,27247,27258,27281,27296,27335,27411,27565,27612,27694,27695,27734,28152,28801,29374,29613,29997,30000,30756,30911]]],["altogether",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26474]]],["whit",[2,2,[[42,2,2,0,2,[[1003,1,1,0,1],[1009,1,1,1,2]]]],[26351,26640]]],["whole",[42,40,[[39,8,8,0,8,[[933,2,2,0,2],[934,2,2,2,4],[941,1,1,4,5],[944,1,1,5,6],[954,1,1,6,7],[955,1,1,7,8]]],[40,6,6,8,14,[[962,1,1,8,9],[964,1,1,9,10],[970,1,1,10,11],[971,3,3,11,14]]],[41,6,5,14,19,[[980,1,1,14,15],[981,1,1,15,16],[983,3,2,16,18],[985,1,1,18,19]]],[42,2,2,19,21,[[1000,1,1,19,20],[1007,1,1,20,21]]],[43,3,3,21,24,[[1028,1,1,21,22],[1032,1,1,22,23],[1036,1,1,23,24]]],[44,2,2,24,26,[[1046,1,1,24,25],[1061,1,1,25,26]]],[45,4,3,26,29,[[1066,1,1,26,27],[1073,2,1,27,28],[1075,1,1,28,29]]],[47,2,2,29,31,[[1095,2,2,29,31]]],[55,1,1,31,32,[[1129,1,1,31,32]]],[58,4,4,32,36,[[1147,1,1,32,33],[1148,3,3,33,36]]],[61,2,2,36,38,[[1160,1,1,36,37],[1163,1,1,37,38]]],[65,2,2,38,40,[[1178,1,1,38,39],[1182,1,1,39,40]]]],[23263,23264,23304,23305,23572,23698,24067,24156,24462,24536,24763,24827,24842,24859,25284,25326,25439,25441,25539,26209,26573,27333,27464,27614,27938,28359,28460,28651,28701,29165,29171,29903,30303,30321,30322,30325,30552,30643,30900,30968]]]]},{"k":"G3651","v":[["wholly",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29644]]]]},{"k":"G3652","v":[["Olympas",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28351]]]]},{"k":"G3653","v":[["figs",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30806]]]]},{"k":"G3654","v":[["*",[4,4,[[39,1,1,0,1,[[933,1,1,0,1]]],[45,3,3,1,4,[[1066,1,1,1,2],[1067,1,1,2,3],[1076,1,1,3,4]]]],[23268,28455,28474,28747]]],["all",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]]],[23268,28747]]],["commonly",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28455]]],["utterly",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28474]]]]},{"k":"G3655","v":[["shower",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25513]]]]},{"k":"G3656","v":[["*",[4,4,[[41,2,2,0,2,[[996,2,2,0,2]]],[43,2,2,2,4,[[1037,1,1,2,3],[1041,1,1,3,4]]]],[26005,26006,27637,27795]]],["communed",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]]],[26006,27795]]],["talked",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1037,1,1,1,2]]]],[26005,27637]]]]},{"k":"G3657","v":[["communications",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28751]]]]},{"k":"G3658","v":[["company",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31010]]]]},{"k":"G3659","v":[["eyes",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24523]]]]},{"k":"G3660","v":[["*",[27,21,[[39,13,8,0,8,[[933,2,2,0,2],[951,10,5,2,7],[954,1,1,7,8]]],[40,2,2,8,10,[[962,1,1,8,9],[970,1,1,9,10]]],[41,1,1,10,11,[[973,1,1,10,11]]],[43,2,2,11,13,[[1019,1,1,11,12],[1024,1,1,12,13]]],[57,7,6,13,19,[[1135,2,2,13,15],[1136,1,1,15,16],[1138,3,2,16,18],[1139,1,1,18,19]]],[58,1,1,19,20,[[1150,1,1,19,20]]],[65,1,1,20,21,[[1176,1,1,20,21]]]],[23268,23270,23934,23936,23938,23939,23940,24128,24430,24825,24966,26979,27133,30006,30013,30017,30057,30060,30085,30366,30867]]],["+",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23938]]],["Swear",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23268]]],["sware",[7,7,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[57,4,4,2,6,[[1135,2,2,2,4],[1138,1,1,4,5],[1139,1,1,5,6]]],[65,1,1,6,7,[[1176,1,1,6,7]]]],[24430,24966,30006,30013,30057,30085,30867]]],["swear",[11,10,[[39,7,6,0,6,[[933,1,1,0,1],[951,5,4,1,5],[954,1,1,5,6]]],[40,1,1,6,7,[[970,1,1,6,7]]],[57,2,2,7,9,[[1138,2,2,7,9]]],[58,1,1,9,10,[[1150,1,1,9,10]]]],[23270,23934,23936,23939,23940,24128,24825,30057,30060,30366]]],["sweareth",[4,4,[[39,4,4,0,4,[[951,4,4,0,4]]]],[23936,23938,23939,23940]]],["sworn",[3,3,[[43,2,2,0,2,[[1019,1,1,0,1],[1024,1,1,1,2]]],[57,1,1,2,3,[[1136,1,1,2,3]]]],[26979,27133,30017]]]]},{"k":"G3661","v":[["*",[12,12,[[43,11,11,0,11,[[1018,1,1,0,1],[1019,2,2,1,3],[1021,1,1,3,4],[1022,1,1,4,5],[1024,1,1,5,6],[1025,1,1,6,7],[1029,1,1,7,8],[1032,1,1,8,9],[1035,1,1,9,10],[1036,1,1,10,11]]],[44,1,1,11,12,[[1060,1,1,11,12]]]],[26937,26950,26995,27046,27071,27173,27182,27357,27467,27569,27614,28309]]],["+",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27569]]],["accord",[10,10,[[43,10,10,0,10,[[1018,1,1,0,1],[1019,2,2,1,3],[1021,1,1,3,4],[1022,1,1,4,5],[1024,1,1,5,6],[1025,1,1,6,7],[1029,1,1,7,8],[1032,1,1,8,9],[1036,1,1,9,10]]]],[26937,26950,26995,27046,27071,27173,27182,27357,27467,27614]]],["mind",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28309]]]]},{"k":"G3662","v":[["agreeth",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24824]]]]},{"k":"G3663","v":[["passions",[2,2,[[43,1,1,0,1,[[1031,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[27429,30371]]]]},{"k":"G3664","v":[["*",[47,43,[[39,9,9,0,9,[[939,1,1,0,1],[941,6,6,1,7],[948,1,1,7,8],[950,1,1,8,9]]],[40,1,1,9,10,[[968,1,1,9,10]]],[41,9,9,10,19,[[978,3,3,10,13],[979,2,2,13,15],[984,1,1,15,16],[985,3,3,16,19]]],[42,2,2,19,21,[[1004,1,1,19,20],[1005,1,1,20,21]]],[43,1,1,21,22,[[1034,1,1,21,22]]],[47,1,1,22,23,[[1095,1,1,22,23]]],[61,1,1,23,24,[[1161,1,1,23,24]]],[64,1,1,24,25,[[1166,1,1,24,25]]],[65,22,18,25,43,[[1167,2,2,25,27],[1168,1,1,27,28],[1170,6,3,28,31],[1175,4,3,31,34],[1177,1,1,34,35],[1179,3,3,35,38],[1180,1,1,38,39],[1182,1,1,39,40],[1184,1,1,40,41],[1187,2,2,41,43]]]],[23475,23570,23572,23583,23584,23586,23591,23793,23911,24704,25193,25194,25195,25226,25227,25495,25536,25537,25539,26436,26449,27552,29183,30581,30679,30710,30712,30735,30771,30774,30775,30847,30850,30859,30873,30910,30912,30919,30940,30967,31011,31064,31071]]],["+",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30679]]],["like",[19,17,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,7,7,1,8,[[978,3,3,1,4],[979,1,1,4,5],[985,3,3,5,8]]],[42,1,1,8,9,[[1005,1,1,8,9]]],[47,1,1,9,10,[[1095,1,1,9,10]]],[61,1,1,10,11,[[1161,1,1,10,11]]],[65,8,6,11,17,[[1168,1,1,11,12],[1170,4,2,12,14],[1175,1,1,14,15],[1179,1,1,15,16],[1182,1,1,16,17]]]],[24704,25193,25194,25195,25226,25536,25537,25539,26449,29183,30581,30735,30771,30775,30847,30919,30967]]],["to",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23570]]],["unto",[26,26,[[39,8,8,0,8,[[939,1,1,0,1],[941,5,5,1,6],[948,1,1,6,7],[950,1,1,7,8]]],[41,2,2,8,10,[[979,1,1,8,9],[984,1,1,9,10]]],[42,1,1,10,11,[[1004,1,1,10,11]]],[43,1,1,11,12,[[1034,1,1,11,12]]],[65,14,14,12,26,[[1167,2,2,12,14],[1170,2,2,14,16],[1175,3,3,16,19],[1177,1,1,19,20],[1179,2,2,20,22],[1180,1,1,22,23],[1184,1,1,23,24],[1187,2,2,24,26]]]],[23475,23572,23583,23584,23586,23591,23793,23911,25227,25495,26436,27552,30710,30712,30771,30774,30847,30850,30859,30873,30910,30912,30940,31011,31064,31071]]]]},{"k":"G3665","v":[["*",[2,2,[[57,2,2,0,2,[[1136,1,1,0,1],[1139,1,1,1,2]]]],[30029,30079]]],["+",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30029]]],["similitude",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30079]]]]},{"k":"G3666","v":[["*",[15,15,[[39,8,8,0,8,[[934,1,1,0,1],[935,2,2,1,3],[939,1,1,3,4],[941,1,1,4,5],[946,1,1,5,6],[950,1,1,6,7],[953,1,1,7,8]]],[40,1,1,8,9,[[960,1,1,8,9]]],[41,3,3,9,12,[[979,1,1,9,10],[985,2,2,10,12]]],[43,1,1,12,13,[[1031,1,1,12,13]]],[44,1,1,13,14,[[1054,1,1,13,14]]],[57,1,1,14,15,[[1134,1,1,14,15]]]],[23290,23340,23342,23475,23563,23750,23874,24009,24353,25226,25536,25538,27425,28184,29994]]],["+",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28184]]],["liken",[5,5,[[39,2,2,0,2,[[935,1,1,0,1],[939,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,2,2,3,5,[[979,1,1,3,4],[985,1,1,4,5]]]],[23340,23475,24353,25226,25538]]],["likened",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23342]]],["likeness",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27425]]],["resemble",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25536]]],["unto",[6,6,[[39,5,5,0,5,[[934,1,1,0,1],[941,1,1,1,2],[946,1,1,2,3],[950,1,1,3,4],[953,1,1,4,5]]],[57,1,1,5,6,[[1134,1,1,5,6]]]],[23290,23563,23750,23874,24009,29994]]]]},{"k":"G3667","v":[["*",[6,6,[[44,4,4,0,4,[[1046,1,1,0,1],[1050,1,1,1,2],[1051,1,1,2,3],[1053,1,1,3,4]]],[49,1,1,4,5,[[1104,1,1,4,5]]],[65,1,1,5,6,[[1175,1,1,5,6]]]],[27953,28061,28073,28119,29398,30847]]],["likeness",[3,3,[[44,2,2,0,2,[[1051,1,1,0,1],[1053,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[28073,28119,29398]]],["shapes",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30847]]],["similitude",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28061]]],["to",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27953]]]]},{"k":"G3668","v":[["*",[30,30,[[39,3,3,0,3,[[950,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[960,1,1,3,4],[971,1,1,4,5]]],[41,11,11,5,16,[[975,1,1,5,6],[977,2,2,6,8],[978,1,1,8,9],[982,2,2,9,11],[985,1,1,11,12],[988,1,1,12,13],[989,2,2,13,15],[994,1,1,15,16]]],[42,3,3,16,19,[[1001,1,1,16,17],[1002,1,1,17,18],[1017,1,1,18,19]]],[44,1,1,19,20,[[1046,1,1,19,20]]],[45,3,3,20,23,[[1068,3,3,20,23]]],[57,1,1,23,24,[[1141,1,1,23,24]]],[58,1,1,24,25,[[1147,1,1,24,25]]],[59,3,3,25,28,[[1153,2,2,25,27],[1155,1,1,27,28]]],[64,1,1,28,29,[[1166,1,1,28,29]]],[65,1,1,29,30,[[1174,1,1,29,30]]]],[23898,24089,24170,24339,24857,25036,25117,25140,25177,25395,25400,25523,25645,25679,25682,25900,26229,26268,26911,27957,28490,28491,28509,30126,30318,30425,30431,30470,30680,30839]]],["+",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24339]]],["Likewise",[10,10,[[39,3,3,0,3,[[950,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[40,1,1,3,4,[[971,1,1,3,4]]],[41,1,1,4,5,[[989,1,1,4,5]]],[58,1,1,5,6,[[1147,1,1,5,6]]],[59,3,3,6,9,[[1153,2,2,6,8],[1155,1,1,8,9]]],[64,1,1,9,10,[[1166,1,1,9,10]]]],[23898,24089,24170,24857,25679,30318,30425,30431,30470,30680]]],["Moreover",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30126]]],["likewise",[17,17,[[41,9,9,0,9,[[975,1,1,0,1],[977,1,1,1,2],[978,1,1,2,3],[982,2,2,3,5],[985,1,1,5,6],[988,1,1,6,7],[989,1,1,7,8],[994,1,1,8,9]]],[42,3,3,9,12,[[1001,1,1,9,10],[1002,1,1,10,11],[1017,1,1,11,12]]],[44,1,1,12,13,[[1046,1,1,12,13]]],[45,3,3,13,16,[[1068,3,3,13,16]]],[65,1,1,16,17,[[1174,1,1,16,17]]]],[25036,25140,25177,25395,25400,25523,25645,25682,25900,26229,26268,26911,27957,28490,28491,28509,30839]]],["so",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25117]]]]},{"k":"G3669","v":[["similitude",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30328]]]]},{"k":"G3670","v":[["*",[24,21,[[39,4,3,0,3,[[935,1,1,0,1],[938,2,1,1,2],[942,1,1,2,3]]],[41,2,1,3,4,[[984,2,1,3,4]]],[42,4,3,4,7,[[997,2,1,4,5],[1005,1,1,5,6],[1008,1,1,6,7]]],[43,2,2,7,9,[[1040,1,1,7,8],[1041,1,1,8,9]]],[44,2,2,9,11,[[1055,2,2,9,11]]],[53,1,1,11,12,[[1124,1,1,11,12]]],[55,1,1,12,13,[[1129,1,1,12,13]]],[57,2,2,13,15,[[1143,1,1,13,14],[1145,1,1,14,15]]],[61,5,5,15,20,[[1159,1,1,15,16],[1160,1,1,16,17],[1162,3,3,17,20]]],[62,1,1,20,21,[[1164,1,1,20,21]]]],[23339,23449,23604,25467,26064,26462,26622,27742,27783,28197,28198,29800,29908,30185,30256,30549,30573,30605,30606,30618,30652]]],["+",[2,1,[[39,2,1,0,1,[[938,2,1,0,1]]]],[23449]]],["acknowledgeth",[1,1,[[61,1,1,0,1,[[1160,1,1,0,1]]]],[30573]]],["confess",[10,9,[[41,2,1,0,1,[[984,2,1,0,1]]],[42,2,2,1,3,[[1005,1,1,1,2],[1008,1,1,2,3]]],[43,2,2,3,5,[[1040,1,1,3,4],[1041,1,1,4,5]]],[44,1,1,5,6,[[1055,1,1,5,6]]],[61,2,2,6,8,[[1159,1,1,6,7],[1162,1,1,7,8]]],[62,1,1,8,9,[[1164,1,1,8,9]]]],[25467,26462,26622,27742,27783,28197,30549,30618,30652]]],["confessed",[3,2,[[42,2,1,0,1,[[997,2,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[26064,30185]]],["confesseth",[2,2,[[61,2,2,0,2,[[1162,2,2,0,2]]]],[30605,30606]]],["made",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28198]]],["profess",[2,2,[[39,1,1,0,1,[[935,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[23339,29908]]],["professed",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29800]]],["promised",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23604]]],["thanks",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30256]]]]},{"k":"G3671","v":[["*",[6,6,[[46,1,1,0,1,[[1086,1,1,0,1]]],[53,2,2,1,3,[[1124,2,2,1,3]]],[57,3,3,3,6,[[1135,1,1,3,4],[1136,1,1,4,5],[1142,1,1,5,6]]]],[28969,29800,29801,29996,30028,30156]]],["confession",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29801]]],["professed",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28969]]],["profession",[4,4,[[53,1,1,0,1,[[1124,1,1,0,1]]],[57,3,3,1,4,[[1135,1,1,1,2],[1136,1,1,2,3],[1142,1,1,3,4]]]],[29800,29996,30028,30156]]]]},{"k":"G3672","v":[["controversy",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29747]]]]},{"k":"G3673","v":[["craft",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27560]]]]},{"k":"G3674","v":[["together",[3,3,[[42,3,3,0,3,[[1000,1,1,0,1],[1016,1,1,1,2],[1017,1,1,2,3]]]],[26192,26871,26900]]]]},{"k":"G3675","v":[["mind",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30432]]]]},{"k":"G3676","v":[["*",[3,3,[[42,1,1,0,1,[[1008,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[47,1,1,2,3,[[1093,1,1,2,3]]]],[26622,28685,29117]]],["+",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26622]]],["Though",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29117]]],["even",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28685]]]]},{"k":"G3677","v":[["dream",[6,6,[[39,6,6,0,6,[[929,1,1,0,1],[930,4,4,1,5],[955,1,1,5,6]]]],[23164,23181,23182,23188,23191,24148]]]]},{"k":"G3678","v":[["ass",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26594]]]]},{"k":"G3679","v":[["*",[10,10,[[39,3,3,0,3,[[933,1,1,0,1],[939,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[971,1,1,3,4],[972,1,1,4,5]]],[41,1,1,5,6,[[978,1,1,5,6]]],[44,1,1,6,7,[[1060,1,1,6,7]]],[53,1,1,7,8,[[1122,1,1,7,8]]],[58,1,1,8,9,[[1146,1,1,8,9]]],[59,1,1,9,10,[[1154,1,1,9,10]]]],[23245,23479,24173,24858,24887,25168,28306,29757,30271,30460]]],["+",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24173]]],["reproach",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[53,1,1,1,2,[[1122,1,1,1,2]]]],[25168,29757]]],["reproached",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[28306,30460]]],["revile",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23245]]],["reviled",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24858]]],["upbraid",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23479]]],["upbraided",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24887]]],["upbraideth",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30271]]]]},{"k":"G3680","v":[["*",[5,5,[[44,1,1,0,1,[[1060,1,1,0,1]]],[53,1,1,1,2,[[1121,1,1,1,2]]],[57,3,3,2,5,[[1142,1,1,2,3],[1143,1,1,3,4],[1145,1,1,4,5]]]],[28306,29738,30166,30198,30254]]],["reproach",[3,3,[[53,1,1,0,1,[[1121,1,1,0,1]]],[57,2,2,1,3,[[1143,1,1,1,2],[1145,1,1,2,3]]]],[29738,30198,30254]]],["reproaches",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[28306,30166]]]]},{"k":"G3681","v":[["reproach",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24918]]]]},{"k":"G3682","v":[["Onesimus",[2,2,[[50,1,1,0,1,[[1110,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[29551,29948]]]]},{"k":"G3683","v":[["Onesiphorus",[2,2,[[54,2,2,0,2,[[1125,1,1,0,1],[1128,1,1,1,2]]]],[29825,29889]]]]},{"k":"G3684","v":[["+",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]]],[23733,25653]]]]},{"k":"G3685","v":[["joy",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29958]]]]},{"k":"G3686","v":[["*",[229,214,[[39,22,19,0,19,[[929,3,3,0,3],[934,1,1,3,4],[935,3,1,4,5],[938,5,4,5,9],[940,1,1,9,10],[946,2,2,10,12],[947,1,1,12,13],[949,1,1,13,14],[951,1,1,14,15],[952,2,2,15,17],[955,1,1,17,18],[956,1,1,18,19]]],[40,16,15,19,34,[[959,2,2,19,21],[961,3,2,21,23],[962,1,1,23,24],[965,4,4,24,28],[967,2,2,28,30],[969,2,2,30,32],[970,1,1,32,33],[972,1,1,33,34]]],[41,34,32,34,66,[[973,11,9,34,43],[974,2,2,43,45],[977,1,1,45,46],[978,1,1,46,47],[980,2,2,47,49],[981,2,2,49,51],[982,3,3,51,54],[983,1,1,54,55],[985,1,1,55,56],[988,1,1,56,57],[991,2,2,57,59],[993,3,3,59,62],[995,1,1,62,63],[996,3,3,63,66]]],[42,25,24,66,90,[[997,2,2,66,68],[998,1,1,68,69],[999,2,2,69,71],[1001,2,1,71,72],[1006,2,2,72,74],[1008,2,2,74,76],[1010,3,3,76,79],[1011,2,2,79,81],[1012,3,3,81,84],[1013,4,4,84,88],[1014,1,1,88,89],[1016,1,1,89,90]]],[43,60,59,90,149,[[1018,1,1,90,91],[1019,2,2,91,93],[1020,3,2,93,95],[1021,6,6,95,101],[1022,5,5,101,106],[1025,3,3,106,109],[1026,11,11,109,120],[1027,3,3,120,123],[1028,1,1,123,124],[1029,1,1,124,125],[1030,2,2,125,127],[1032,3,3,127,130],[1033,3,3,130,133],[1034,1,1,133,134],[1035,4,4,134,138],[1036,4,4,138,142],[1037,1,1,142,143],[1038,2,2,143,145],[1039,1,1,145,146],[1043,1,1,146,147],[1044,1,1,147,148],[1045,1,1,148,149]]],[44,5,5,149,154,[[1046,1,1,149,150],[1047,1,1,150,151],[1054,1,1,151,152],[1055,1,1,152,153],[1060,1,1,153,154]]],[45,6,6,154,160,[[1062,4,4,154,158],[1066,1,1,158,159],[1067,1,1,159,160]]],[48,2,2,160,162,[[1097,1,1,160,161],[1101,1,1,161,162]]],[49,4,3,162,165,[[1104,3,2,162,164],[1106,1,1,164,165]]],[50,1,1,165,166,[[1109,1,1,165,166]]],[52,2,2,166,168,[[1116,1,1,166,167],[1118,1,1,167,168]]],[53,1,1,168,169,[[1124,1,1,168,169]]],[54,1,1,169,170,[[1126,1,1,169,170]]],[57,4,4,170,174,[[1133,1,1,170,171],[1134,1,1,171,172],[1138,1,1,172,173],[1145,1,1,173,174]]],[58,3,3,174,177,[[1147,1,1,174,175],[1150,2,2,175,177]]],[59,1,1,177,178,[[1154,1,1,177,178]]],[61,4,3,178,181,[[1160,1,1,178,179],[1161,1,1,179,180],[1163,2,1,180,181]]],[63,2,2,181,183,[[1165,2,2,181,183]]],[65,36,31,183,214,[[1168,3,3,183,186],[1169,8,5,186,191],[1172,1,1,191,192],[1174,1,1,192,193],[1175,2,1,193,194],[1177,2,2,194,196],[1179,5,4,196,200],[1180,2,2,200,202],[1181,2,2,202,204],[1182,1,1,204,205],[1183,3,3,205,208],[1185,3,3,208,211],[1187,2,2,211,213],[1188,1,1,213,214]]]],[23165,23167,23169,23291,23338,23419,23439,23458,23459,23510,23732,23747,23791,23835,23957,23962,23966,24161,24214,24304,24305,24373,24386,24421,24575,24576,24577,24579,24649,24650,24723,24730,24786,24890,24898,24906,24919,24920,24924,24942,24952,24954,24956,24994,24998,25134,25168,25275,25286,25349,25350,25380,25383,25401,25407,25553,25640,25733,25769,25834,25838,25843,25985,26004,26009,26038,26050,26056,26118,26121,26138,26253,26484,26506,26593,26608,26681,26682,26694,26715,26720,26749,26750,26752,26765,26770,26771,26785,26795,26898,26938,26970,26987,27002,27012,27029,27032,27034,27039,27040,27052,27060,27087,27093,27099,27100,27185,27188,27192,27226,27227,27228,27230,27231,27232,27237,27243,27245,27249,27252,27260,27302,27307,27335,27350,27368,27370,27456,27459,27468,27484,27497,27501,27557,27559,27564,27572,27581,27590,27598,27602,27609,27635,27674,27677,27720,27832,27856,27906,27935,27986,28172,28201,28312,28365,28373,28376,28378,28458,28478,29227,29324,29400,29401,29445,29534,29661,29684,29789,29846,29967,29989,30054,30256,30300,30364,30368,30460,30562,30602,30637,30665,30672,30720,30730,30734,30747,30750,30751,30754,30758,30801,30838,30851,30885,30890,30909,30914,30916,30925,30927,30937,30948,30950,30963,30978,30980,30983,31029,31030,31033,31065,31067,31084]]],["+",[15,15,[[39,3,3,0,3,[[938,1,1,0,1],[947,1,1,1,2],[952,1,1,2,3]]],[40,3,3,3,6,[[959,2,2,3,5],[969,1,1,5,6]]],[41,3,3,6,9,[[991,1,1,6,7],[993,2,2,7,9]]],[42,1,1,9,10,[[1011,1,1,9,10]]],[43,2,2,10,12,[[1026,1,1,10,11],[1030,1,1,11,12]]],[61,1,1,12,13,[[1160,1,1,12,13]]],[63,1,1,13,14,[[1165,1,1,13,14]]],[65,1,1,14,15,[[1168,1,1,14,15]]]],[23439,23791,23966,24304,24305,24730,25733,25838,25843,26720,27232,27370,30562,30665,30720]]],["called",[4,4,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,3,3,1,4,[[1025,1,1,1,2],[1026,1,1,2,3],[1027,1,1,3,4]]]],[26004,27185,27227,27260]]],["name",[171,157,[[39,18,15,0,15,[[929,3,3,0,3],[934,1,1,3,4],[935,3,1,4,5],[938,3,2,5,7],[940,1,1,7,8],[946,2,2,8,10],[949,1,1,10,11],[951,1,1,11,12],[952,1,1,12,13],[955,1,1,13,14],[956,1,1,14,15]]],[40,12,11,15,26,[[961,3,2,15,17],[962,1,1,17,18],[965,4,4,18,22],[967,2,2,22,24],[969,1,1,24,25],[972,1,1,25,26]]],[41,22,21,26,47,[[973,9,8,26,34],[974,2,2,34,36],[978,1,1,36,37],[980,1,1,37,38],[981,2,2,38,40],[982,1,1,40,41],[983,1,1,41,42],[985,1,1,42,43],[991,1,1,43,44],[993,1,1,44,45],[996,2,2,45,47]]],[42,23,22,47,69,[[997,2,2,47,49],[998,1,1,49,50],[999,1,1,50,51],[1001,2,1,51,52],[1006,2,2,52,54],[1008,2,2,54,56],[1010,3,3,56,59],[1011,1,1,59,60],[1012,3,3,60,63],[1013,4,4,63,67],[1014,1,1,67,68],[1016,1,1,68,69]]],[43,35,34,69,103,[[1019,2,2,69,71],[1020,3,2,71,73],[1021,6,6,73,79],[1022,3,3,79,82],[1025,2,2,82,84],[1026,5,5,84,89],[1027,2,2,89,91],[1030,1,1,91,92],[1032,3,3,92,95],[1033,1,1,95,96],[1036,3,3,96,99],[1038,1,1,99,100],[1039,1,1,100,101],[1043,1,1,101,102],[1045,1,1,102,103]]],[44,5,5,103,108,[[1046,1,1,103,104],[1047,1,1,104,105],[1054,1,1,105,106],[1055,1,1,106,107],[1060,1,1,107,108]]],[45,6,6,108,114,[[1062,4,4,108,112],[1066,1,1,112,113],[1067,1,1,113,114]]],[48,2,2,114,116,[[1097,1,1,114,115],[1101,1,1,115,116]]],[49,3,2,116,118,[[1104,3,2,116,118]]],[50,1,1,118,119,[[1109,1,1,118,119]]],[52,2,2,119,121,[[1116,1,1,119,120],[1118,1,1,120,121]]],[53,1,1,121,122,[[1124,1,1,121,122]]],[54,1,1,122,123,[[1126,1,1,122,123]]],[57,4,4,123,127,[[1133,1,1,123,124],[1134,1,1,124,125],[1138,1,1,125,126],[1145,1,1,126,127]]],[58,3,3,127,130,[[1147,1,1,127,128],[1150,2,2,128,130]]],[59,1,1,130,131,[[1154,1,1,130,131]]],[61,3,2,131,133,[[1161,1,1,131,132],[1163,2,1,132,133]]],[63,1,1,133,134,[[1165,1,1,133,134]]],[65,28,23,134,157,[[1168,2,2,134,136],[1169,7,4,136,140],[1172,1,1,140,141],[1174,1,1,141,142],[1175,2,1,142,143],[1177,1,1,143,144],[1179,4,3,144,147],[1180,2,2,147,149],[1181,2,2,149,151],[1182,1,1,151,152],[1183,1,1,152,153],[1185,3,3,153,156],[1188,1,1,156,157]]]],[23165,23167,23169,23291,23338,23458,23459,23510,23732,23747,23835,23957,23962,24161,24214,24373,24386,24421,24575,24576,24577,24579,24649,24650,24723,24890,24898,24906,24920,24924,24942,24952,24954,24956,24994,24998,25168,25275,25349,25350,25380,25407,25553,25769,25834,26009,26038,26050,26056,26118,26138,26253,26484,26506,26593,26608,26681,26682,26694,26715,26749,26750,26752,26765,26770,26771,26785,26795,26898,26970,26987,27002,27012,27029,27032,27034,27039,27040,27052,27087,27099,27100,27188,27192,27230,27231,27237,27243,27245,27302,27307,27368,27456,27459,27468,27501,27590,27598,27602,27677,27720,27832,27906,27935,27986,28172,28201,28312,28365,28373,28376,28378,28458,28478,29227,29324,29400,29401,29534,29661,29684,29789,29846,29967,29989,30054,30256,30300,30364,30368,30460,30602,30637,30672,30730,30734,30747,30751,30754,30758,30801,30838,30851,30890,30909,30914,30925,30927,30937,30948,30950,30963,30980,31029,31030,31033,31084]]],["named",[27,27,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,7,7,1,8,[[973,2,2,1,3],[977,1,1,3,4],[980,1,1,4,5],[982,1,1,5,6],[988,1,1,6,7],[995,1,1,7,8]]],[42,1,1,8,9,[[999,1,1,8,9]]],[43,18,18,9,27,[[1022,2,2,9,11],[1026,4,4,11,15],[1028,1,1,15,16],[1029,1,1,16,17],[1033,2,2,17,19],[1034,1,1,19,20],[1035,3,3,20,23],[1036,1,1,23,24],[1037,1,1,24,25],[1038,1,1,25,26],[1044,1,1,26,27]]]],[24786,24898,24919,25134,25286,25401,25640,25985,26121,27060,27093,27226,27228,27249,27252,27335,27350,27484,27497,27557,27559,27564,27581,27609,27635,27674,27856]]],["names",[11,11,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[43,2,2,2,4,[[1018,1,1,2,3],[1035,1,1,3,4]]],[49,1,1,4,5,[[1106,1,1,4,5]]],[65,6,6,5,11,[[1169,1,1,5,6],[1179,1,1,6,7],[1183,2,2,7,9],[1187,2,2,9,11]]]],[23419,25383,26938,27572,29445,30750,30916,30978,30983,31065,31067]]],["of",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30885]]]]},{"k":"G3687","v":[["*",[10,10,[[41,2,2,0,2,[[978,2,2,0,2]]],[43,1,1,2,3,[[1036,1,1,2,3]]],[44,1,1,3,4,[[1060,1,1,3,4]]],[45,2,2,4,6,[[1066,2,2,4,6]]],[48,3,3,6,9,[[1097,1,1,6,7],[1099,1,1,7,8],[1101,1,1,8,9]]],[54,1,1,9,10,[[1126,1,1,9,10]]]],[25159,25160,27598,28323,28455,28465,29227,29266,29307,29846]]],["+",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29307]]],["call",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27598]]],["called",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28465]]],["named",[6,6,[[41,2,2,0,2,[[978,2,2,0,2]]],[44,1,1,2,3,[[1060,1,1,2,3]]],[45,1,1,3,4,[[1066,1,1,3,4]]],[48,2,2,4,6,[[1097,1,1,4,5],[1099,1,1,5,6]]]],[25159,25160,28323,28455,29227,29266]]],["nameth",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29846]]]]},{"k":"G3688","v":[["*",[6,6,[[39,3,3,0,3,[[949,3,3,0,3]]],[41,2,2,3,5,[[985,1,1,3,4],[986,1,1,4,5]]],[42,1,1,5,6,[[1008,1,1,5,6]]]],[23828,23831,23833,25533,25558,26595]]],["ass",[5,5,[[39,3,3,0,3,[[949,3,3,0,3]]],[41,2,2,3,5,[[985,1,1,3,4],[986,1,1,4,5]]]],[23828,23831,23833,25533,25558]]],["ass's",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26595]]]]},{"k":"G3689","v":[["*",[10,10,[[40,1,1,0,1,[[967,1,1,0,1]]],[41,2,2,1,3,[[995,1,1,1,2],[996,1,1,2,3]]],[42,1,1,3,4,[[1004,1,1,3,4]]],[45,1,1,4,5,[[1075,1,1,4,5]]],[47,1,1,5,6,[[1093,1,1,5,6]]],[53,3,3,6,9,[[1123,3,3,6,9]]],[60,1,1,9,10,[[1157,1,1,9,10]]]],[24672,25982,26025,26417,28703,29123,29766,29768,29779,30518]]],["+",[2,2,[[47,1,1,0,1,[[1093,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[29123,30518]]],["Certainly",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25982]]],["indeed",[6,6,[[40,1,1,0,1,[[967,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]],[53,3,3,3,6,[[1123,3,3,3,6]]]],[24672,26025,26417,29766,29768,29779]]],["truth",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28703]]]]},{"k":"G3690","v":[["vinegar",[7,6,[[39,2,2,0,2,[[955,2,2,0,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[41,1,1,3,4,[[995,1,1,3,4]]],[42,3,2,4,6,[[1015,3,2,4,6]]]],[24163,24177,24862,25971,26854,26855]]]]},{"k":"G3691","v":[["*",[8,7,[[44,1,1,0,1,[[1048,1,1,0,1]]],[65,7,6,1,7,[[1167,1,1,1,2],[1168,1,1,2,3],[1180,4,3,3,6],[1185,1,1,6,7]]]],[28006,30713,30729,30940,30943,30944,31032]]],["sharp",[7,6,[[65,7,6,0,6,[[1167,1,1,0,1],[1168,1,1,1,2],[1180,4,3,2,5],[1185,1,1,5,6]]]],[30713,30729,30940,30943,30944,31032]]],["swift",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28006]]]]},{"k":"G3692","v":[["*",[2,2,[[57,1,1,0,1,[[1143,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[30210,30330]]],["caves",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30210]]],["place",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30330]]]]},{"k":"G3693","v":[["*",[7,7,[[39,2,2,0,2,[[937,1,1,0,1],[943,1,1,1,2]]],[40,1,1,2,3,[[961,1,1,2,3]]],[41,2,2,3,5,[[980,1,1,3,4],[995,1,1,4,5]]],[65,2,2,5,7,[[1170,1,1,5,6],[1171,1,1,6,7]]]],[23399,23656,24391,25289,25961,30774,30780]]],["after",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[23656,25961]]],["backside",[1,1,[[65,1,1,0,1,[[1171,1,1,0,1]]]],[30780]]],["behind",[4,4,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[65,1,1,3,4,[[1170,1,1,3,4]]]],[23399,24391,25289,30774]]]]},{"k":"G3694","v":[["*",[36,36,[[39,6,6,0,6,[[931,1,1,0,1],[932,1,1,1,2],[938,1,1,2,3],[944,2,2,3,5],[952,1,1,5,6]]],[40,6,6,6,12,[[957,3,3,6,9],[964,2,2,9,11],[969,1,1,11,12]]],[41,8,8,12,20,[[976,1,1,12,13],[979,1,1,13,14],[981,2,2,14,16],[986,1,1,16,17],[989,1,1,17,18],[991,1,1,18,19],[993,1,1,19,20]]],[42,7,7,20,27,[[997,3,3,20,23],[1002,1,1,23,24],[1008,1,1,24,25],[1014,1,1,25,26],[1016,1,1,26,27]]],[43,2,2,27,29,[[1022,1,1,27,28],[1037,1,1,28,29]]],[49,1,1,29,30,[[1105,1,1,29,30]]],[53,1,1,30,31,[[1123,1,1,30,31]]],[60,1,1,31,32,[[1157,1,1,31,32]]],[64,1,1,32,33,[[1166,1,1,32,33]]],[65,3,3,33,36,[[1167,1,1,33,34],[1178,1,1,34,35],[1179,1,1,35,36]]]],[23203,23228,23455,23695,23696,23975,24222,24232,24235,24533,24534,24733,25071,25233,25324,25363,25580,25682,25745,25834,26059,26071,26074,26323,26599,26791,26881,27096,27656,29434,29778,30510,30679,30707,30906,30911]]],["+",[8,8,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,2,2,2,4,[[981,1,1,2,3],[989,1,1,3,4]]],[42,3,3,4,7,[[1002,1,1,4,5],[1014,1,1,5,6],[1016,1,1,6,7]]],[49,1,1,7,8,[[1105,1,1,7,8]]]],[23228,24733,25363,25682,26323,26791,26881,29434]]],["After",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26074]]],["after",[21,21,[[39,3,3,0,3,[[931,1,1,0,1],[938,1,1,1,2],[944,1,1,2,3]]],[40,4,4,3,7,[[957,3,3,3,6],[964,1,1,6,7]]],[41,4,4,7,11,[[981,1,1,7,8],[986,1,1,8,9],[991,1,1,9,10],[993,1,1,10,11]]],[42,3,3,11,14,[[997,2,2,11,13],[1008,1,1,13,14]]],[43,2,2,14,16,[[1022,1,1,14,15],[1037,1,1,15,16]]],[53,1,1,16,17,[[1123,1,1,16,17]]],[60,1,1,17,18,[[1157,1,1,17,18]]],[64,1,1,18,19,[[1166,1,1,18,19]]],[65,2,2,19,21,[[1178,1,1,19,20],[1179,1,1,20,21]]]],[23203,23455,23696,24222,24232,24235,24534,25324,25580,25745,25834,26059,26071,26599,27096,27656,29778,30510,30679,30906,30911]]],["back",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23975]]],["behind",[5,5,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,2,2,2,4,[[976,1,1,2,3],[979,1,1,3,4]]],[65,1,1,4,5,[[1167,1,1,4,5]]]],[23695,24533,25071,25233,30707]]]]},{"k":"G3695","v":[["arm",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30447]]]]},{"k":"G3696","v":[["*",[6,5,[[42,1,1,0,1,[[1014,1,1,0,1]]],[44,3,2,1,3,[[1051,2,1,1,2],[1058,1,1,2,3]]],[46,2,2,3,5,[[1083,1,1,3,4],[1087,1,1,4,5]]]],[26788,28081,28278,28905,28975]]],["armour",[2,2,[[44,1,1,0,1,[[1058,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]]],[28278,28905]]],["instruments",[2,1,[[44,2,1,0,1,[[1051,2,1,0,1]]]],[28081]]],["weapons",[2,2,[[42,1,1,0,1,[[1014,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]]],[26788,28975]]]]},{"k":"G3697","v":[["*",[5,5,[[43,1,1,0,1,[[1043,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]],[51,1,1,3,4,[[1111,1,1,3,4]]],[58,1,1,4,5,[[1146,1,1,4,5]]]],[27852,28423,29087,29569,30290]]],["+",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29087]]],["as",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27852]]],["man",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30290]]],["manner",[1,1,[[51,1,1,0,1,[[1111,1,1,0,1]]]],[29569]]],["sort",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28423]]]]},{"k":"G3698","v":[["when",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25149]]]]},{"k":"G3699","v":[["*",[82,77,[[39,13,11,0,11,[[934,5,3,0,3],[936,1,1,3,4],[941,1,1,4,5],[952,1,1,5,6],[953,2,2,6,8],[954,2,2,8,10],[956,1,1,10,11]]],[40,16,15,11,26,[[958,1,1,11,12],[960,2,2,12,14],[961,1,1,14,15],[962,3,3,15,18],[965,4,4,18,22],[969,1,1,22,23],[970,3,2,23,25],[972,1,1,25,26]]],[41,5,5,26,31,[[981,1,1,26,27],[984,2,2,27,29],[989,1,1,29,30],[994,1,1,30,31]]],[42,30,29,31,60,[[997,1,1,31,32],[999,1,1,32,33],[1000,2,2,33,35],[1002,2,2,35,37],[1003,3,3,37,40],[1004,2,2,40,42],[1006,1,1,42,43],[1007,2,2,43,45],[1008,2,2,45,47],[1009,2,2,47,49],[1010,2,2,49,51],[1013,1,1,51,52],[1014,2,2,52,54],[1015,3,3,54,57],[1016,2,2,57,59],[1017,2,1,59,60]]],[43,1,1,60,61,[[1034,1,1,60,61]]],[44,1,1,61,62,[[1060,1,1,61,62]]],[45,1,1,62,63,[[1064,1,1,62,63]]],[50,1,1,63,64,[[1109,1,1,63,64]]],[57,3,3,64,67,[[1138,1,1,64,65],[1141,1,1,65,66],[1142,1,1,66,67]]],[58,2,2,67,69,[[1148,2,2,67,69]]],[60,1,1,69,70,[[1157,1,1,69,70]]],[65,8,7,70,77,[[1168,2,1,70,71],[1177,1,1,71,72],[1178,2,2,72,74],[1180,1,1,74,75],[1183,1,1,75,76],[1186,1,1,76,77]]]],[23301,23302,23303,23364,23544,23985,24032,24034,24067,24111,24201,24264,24328,24338,24404,24417,24462,24463,24556,24582,24584,24586,24731,24763,24768,24879,25358,25492,25493,25688,25875,26072,26128,26176,26202,26280,26319,26362,26364,26370,26402,26403,26521,26553,26555,26581,26606,26663,26666,26671,26672,26783,26786,26805,26843,26845,26866,26879,26886,26916,27524,28323,28413,29528,30064,30121,30151,30323,30335,30511,30730,30880,30897,30905,30930,30984,31048]]],["+",[12,12,[[39,3,3,0,3,[[936,1,1,0,1],[952,1,1,1,2],[954,1,1,2,3]]],[40,5,5,3,8,[[962,2,2,3,5],[965,1,1,5,6],[970,2,2,6,8]]],[41,1,1,8,9,[[981,1,1,8,9]]],[58,1,1,9,10,[[1148,1,1,9,10]]],[65,2,2,10,12,[[1180,1,1,10,11],[1183,1,1,11,12]]]],[23364,23985,24067,24417,24463,24556,24763,24768,25358,30323,30930,30984]]],["Where",[5,5,[[40,3,3,0,3,[[965,3,3,0,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]]],[24582,24584,24586,26843,29528]]],["Whereas",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30511]]],["Wheresoever",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25688]]],["Whither",[4,4,[[42,3,3,0,3,[[1004,1,1,0,1],[1009,2,2,1,3]]],[57,1,1,3,4,[[1138,1,1,3,4]]]],[26403,26663,26666,30064]]],["where",[53,50,[[39,10,8,0,8,[[934,5,3,0,3],[941,1,1,3,4],[953,2,2,4,6],[954,1,1,6,7],[956,1,1,7,8]]],[40,8,8,8,16,[[958,1,1,8,9],[960,2,2,9,11],[961,1,1,11,12],[962,1,1,12,13],[969,1,1,13,14],[970,1,1,14,15],[972,1,1,15,16]]],[41,3,3,16,19,[[984,2,2,16,18],[994,1,1,18,19]]],[42,21,21,19,40,[[997,1,1,19,20],[999,1,1,20,21],[1000,2,2,21,23],[1002,2,2,23,25],[1003,3,3,25,28],[1006,1,1,28,29],[1007,2,2,29,31],[1008,2,2,31,33],[1010,1,1,33,34],[1013,1,1,34,35],[1014,1,1,35,36],[1015,2,2,36,38],[1016,2,2,38,40]]],[43,1,1,40,41,[[1034,1,1,40,41]]],[44,1,1,41,42,[[1060,1,1,41,42]]],[57,2,2,42,44,[[1141,1,1,42,43],[1142,1,1,43,44]]],[58,1,1,44,45,[[1148,1,1,44,45]]],[65,6,5,45,50,[[1168,2,1,45,46],[1177,1,1,46,47],[1178,2,2,47,49],[1186,1,1,49,50]]]],[23301,23302,23303,23544,24032,24034,24111,24201,24264,24328,24338,24404,24462,24731,24768,24879,25492,25493,25875,26072,26128,26176,26202,26280,26319,26362,26364,26370,26521,26553,26555,26581,26606,26671,26783,26786,26845,26866,26879,26886,27524,28323,30121,30151,30335,30730,30880,30897,30905,31048]]],["whereas",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28413]]],["whither",[5,4,[[42,5,4,0,4,[[1004,1,1,0,1],[1010,1,1,1,2],[1014,1,1,2,3],[1017,2,1,3,4]]]],[26402,26672,26805,26916]]]]},{"k":"G3700","v":[["*",[58,57,[[39,8,8,0,8,[[933,1,1,0,1],[945,1,1,1,2],[952,1,1,2,3],[954,1,1,3,4],[955,2,2,4,6],[956,2,2,6,8]]],[40,4,4,8,12,[[965,1,1,8,9],[969,1,1,9,10],[970,1,1,10,11],[972,1,1,11,12]]],[41,8,8,12,20,[[973,1,1,12,13],[975,1,1,13,14],[981,1,1,14,15],[985,1,1,15,16],[989,1,1,16,17],[993,1,1,17,18],[994,1,1,18,19],[996,1,1,19,20]]],[42,9,9,20,29,[[997,2,2,20,22],[999,1,1,22,23],[1007,1,1,23,24],[1012,4,4,24,28],[1015,1,1,28,29]]],[43,14,13,29,42,[[1018,1,1,29,30],[1019,2,2,30,32],[1024,4,4,32,36],[1026,1,1,36,37],[1030,1,1,37,38],[1033,1,1,38,39],[1035,1,1,39,40],[1037,1,1,40,41],[1043,2,1,41,42]]],[44,1,1,42,43,[[1060,1,1,42,43]]],[45,4,4,43,47,[[1076,4,4,43,47]]],[53,1,1,47,48,[[1121,1,1,47,48]]],[57,3,3,48,51,[[1141,1,1,48,49],[1144,1,1,49,50],[1145,1,1,50,51]]],[61,1,1,51,52,[[1161,1,1,51,52]]],[65,5,5,52,57,[[1167,1,1,52,53],[1177,1,1,53,54],[1178,2,2,54,56],[1188,1,1,56,57]]]],[23242,23703,23987,24118,24133,24153,24202,24205,24542,24743,24816,24880,24904,25031,25332,25546,25673,25853,25907,26025,26094,26095,26156,26563,26742,26743,26745,26748,26862,26926,26952,26966,27118,27142,27146,27151,27233,27393,27492,27572,27651,27839,28324,28723,28724,28725,28726,29747,30133,30226,30264,30581,30704,30891,30892,30894,31084]]],["appear",[2,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[27839,30133]]],["appeared",[15,15,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,4,4,2,6,[[973,1,1,2,3],[981,1,1,3,4],[994,1,1,4,5],[996,1,1,5,6]]],[43,7,7,6,13,[[1019,1,1,6,7],[1024,3,3,7,10],[1026,1,1,10,11],[1033,1,1,11,12],[1043,1,1,12,13]]],[65,2,2,13,15,[[1178,2,2,13,15]]]],[23703,24542,24904,25332,25907,26025,26952,27118,27146,27151,27233,27492,27839,30892,30894]]],["himself",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27142]]],["look",[2,2,[[42,1,1,0,1,[[1015,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]]],[26862,27572]]],["see",[30,30,[[39,7,7,0,7,[[933,1,1,0,1],[952,1,1,1,2],[954,1,1,2,3],[955,2,2,3,5],[956,2,2,5,7]]],[40,3,3,7,10,[[969,1,1,7,8],[970,1,1,8,9],[972,1,1,9,10]]],[41,4,4,10,14,[[975,1,1,10,11],[985,1,1,11,12],[989,1,1,12,13],[993,1,1,13,14]]],[42,8,8,14,22,[[997,2,2,14,16],[999,1,1,16,17],[1007,1,1,17,18],[1012,4,4,18,22]]],[43,2,2,22,24,[[1019,1,1,22,23],[1037,1,1,23,24]]],[44,1,1,24,25,[[1060,1,1,24,25]]],[57,2,2,25,27,[[1144,1,1,25,26],[1145,1,1,26,27]]],[61,1,1,27,28,[[1161,1,1,27,28]]],[65,2,2,28,30,[[1167,1,1,28,29],[1188,1,1,29,30]]]],[23242,23987,24118,24133,24153,24202,24205,24743,24816,24880,25031,25546,25673,25853,26094,26095,26156,26563,26742,26743,26745,26748,26966,27651,28324,30226,30264,30581,30704,31084]]],["seen",[8,8,[[43,2,2,0,2,[[1018,1,1,0,1],[1030,1,1,1,2]]],[45,4,4,2,6,[[1076,4,4,2,6]]],[53,1,1,6,7,[[1121,1,1,6,7]]],[65,1,1,7,8,[[1177,1,1,7,8]]]],[26926,27393,28723,28724,28725,28726,29747,30891]]]]},{"k":"G3701","v":[["*",[4,4,[[41,2,2,0,2,[[973,1,1,0,1],[996,1,1,1,2]]],[43,1,1,2,3,[[1043,1,1,2,3]]],[46,1,1,3,4,[[1089,1,1,3,4]]]],[24915,26014,27842,29023]]],["vision",[3,3,[[41,2,2,0,2,[[973,1,1,0,1],[996,1,1,1,2]]],[43,1,1,2,3,[[1043,1,1,2,3]]]],[24915,26014,27842]]],["visions",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29023]]]]},{"k":"G3702","v":[["broiled",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26033]]]]},{"k":"G3703","v":[["fruits",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31007]]]]},{"k":"G3704","v":[["*",[56,55,[[39,18,18,0,18,[[930,2,2,0,2],[933,2,2,2,4],[934,5,5,4,9],[936,2,2,9,11],[937,1,1,11,12],[940,2,2,12,14],[941,1,1,14,15],[950,1,1,15,16],[951,1,1,16,17],[954,1,1,17,18]]],[40,2,2,18,20,[[959,1,1,18,19],[961,1,1,19,20]]],[41,7,7,20,27,[[974,1,1,20,21],[979,1,1,21,22],[982,1,1,22,23],[983,1,1,23,24],[988,2,2,24,26],[996,1,1,26,27]]],[42,1,1,27,28,[[1007,1,1,27,28]]],[43,15,15,28,43,[[1020,1,1,28,29],[1025,2,2,29,31],[1026,4,4,31,35],[1032,1,1,35,36],[1037,1,1,36,37],[1040,3,3,37,40],[1041,1,1,40,41],[1042,2,2,41,43]]],[44,3,2,43,45,[[1048,1,1,43,44],[1054,2,1,44,45]]],[45,1,1,45,46,[[1062,1,1,45,46]]],[46,2,2,46,48,[[1085,2,2,46,48]]],[47,1,1,48,49,[[1091,1,1,48,49]]],[52,1,1,49,50,[[1116,1,1,49,50]]],[56,1,1,50,51,[[1132,1,1,50,51]]],[57,2,2,51,53,[[1134,1,1,51,52],[1141,1,1,52,53]]],[58,1,1,53,54,[[1150,1,1,53,54]]],[59,1,1,54,55,[[1152,1,1,54,55]]]],[23177,23192,23250,23279,23284,23286,23287,23298,23300,23362,23379,23417,23503,23506,23574,23887,23953,24113,24294,24387,25008,25198,25365,25442,25646,25648,26011,26580,27015,27191,27200,27218,27228,27233,27240,27459,27642,27749,27754,27757,27795,27799,27822,27995,28172,28392,28943,28946,29061,29661,29944,29986,30120,30370,30408]]],["That",[12,12,[[39,7,7,0,7,[[933,1,1,0,1],[934,2,2,1,3],[936,1,1,3,4],[940,1,1,4,5],[941,1,1,5,6],[951,1,1,6,7]]],[43,1,1,7,8,[[1032,1,1,7,8]]],[44,1,1,8,9,[[1048,1,1,8,9]]],[45,1,1,9,10,[[1062,1,1,9,10]]],[52,1,1,10,11,[[1116,1,1,10,11]]],[56,1,1,11,12,[[1132,1,1,11,12]]]],[23279,23286,23300,23362,23506,23574,23953,27459,27995,28392,29661,29944]]],["because",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27642]]],["how",[4,4,[[39,2,2,0,2,[[940,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[959,1,1,2,3]]],[41,1,1,3,4,[[996,1,1,3,4]]]],[23503,23887,24294,26011]]],["that",[34,33,[[39,8,8,0,8,[[930,2,2,0,2],[933,1,1,2,3],[934,3,3,3,6],[936,1,1,6,7],[937,1,1,7,8]]],[40,1,1,8,9,[[961,1,1,8,9]]],[41,5,5,9,14,[[974,1,1,9,10],[979,1,1,10,11],[982,1,1,11,12],[988,2,2,12,14]]],[42,1,1,14,15,[[1007,1,1,14,15]]],[43,10,10,15,25,[[1025,2,2,15,17],[1026,3,3,17,20],[1040,2,2,20,22],[1041,1,1,22,23],[1042,2,2,23,25]]],[44,2,1,25,26,[[1054,2,1,25,26]]],[46,2,2,26,28,[[1085,2,2,26,28]]],[47,1,1,28,29,[[1091,1,1,28,29]]],[57,2,2,29,31,[[1134,1,1,29,30],[1141,1,1,30,31]]],[58,1,1,31,32,[[1150,1,1,31,32]]],[59,1,1,32,33,[[1152,1,1,32,33]]]],[23177,23192,23250,23284,23287,23298,23379,23417,24387,25008,25198,25365,25646,25648,26580,27191,27200,27218,27228,27233,27749,27754,27795,27799,27822,28172,28943,28946,29061,29986,30120,30370,30408]]],["to",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[43,2,2,2,4,[[1026,1,1,2,3],[1040,1,1,3,4]]]],[24113,25442,27240,27757]]],["when",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27015]]]]},{"k":"G3705","v":[["*",[12,12,[[39,1,1,0,1,[[945,1,1,0,1]]],[43,11,11,1,12,[[1024,1,1,1,2],[1026,2,2,2,4],[1027,3,3,4,7],[1028,1,1,7,8],[1029,1,1,8,9],[1033,2,2,9,11],[1035,1,1,11,12]]]],[23709,27147,27226,27228,27262,27276,27278,27312,27346,27492,27493,27566]]],["sight",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27147]]],["vision",[11,11,[[39,1,1,0,1,[[945,1,1,0,1]]],[43,10,10,1,11,[[1026,2,2,1,3],[1027,3,3,3,6],[1028,1,1,6,7],[1029,1,1,7,8],[1033,2,2,8,10],[1035,1,1,10,11]]]],[23709,27226,27228,27262,27276,27278,27312,27346,27492,27493,27566]]]]},{"k":"G3706","v":[["*",[4,3,[[43,1,1,0,1,[[1019,1,1,0,1]]],[65,3,2,1,3,[[1170,2,1,1,2],[1175,1,1,2,3]]]],[26966,30771,30857]]],["sight",[1,1,[[65,1,1,0,1,[[1170,1,1,0,1]]]],[30771]]],["upon",[1,1,[[65,1,1,0,1,[[1170,1,1,0,1]]]],[30771]]],["vision",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30857]]],["visions",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26966]]]]},{"k":"G3707","v":[["visible",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29481]]]]},{"k":"G3708","v":[["*",[58,54,[[39,5,5,0,5,[[936,1,1,0,1],[937,1,1,1,2],[944,1,1,2,3],[946,1,1,3,4],[952,1,1,4,5]]],[40,2,2,5,7,[[957,1,1,5,6],[964,1,1,6,7]]],[41,6,6,7,13,[[973,1,1,7,8],[981,1,1,8,9],[984,1,1,9,10],[988,1,1,10,11],[995,1,1,11,12],[996,1,1,12,13]]],[42,22,19,13,32,[[997,2,2,13,15],[999,2,2,15,17],[1000,1,1,17,18],[1001,1,1,18,19],[1002,4,3,19,22],[1004,3,2,22,24],[1005,1,1,24,25],[1010,3,2,25,27],[1011,1,1,27,28],[1015,1,1,28,29],[1016,3,3,29,32]]],[43,4,4,32,36,[[1024,1,1,32,33],[1025,1,1,33,34],[1039,2,2,34,36]]],[45,1,1,36,37,[[1070,1,1,36,37]]],[50,2,2,37,39,[[1108,2,2,37,39]]],[51,1,1,39,40,[[1115,1,1,39,40]]],[57,3,3,40,43,[[1134,1,1,40,41],[1140,1,1,41,42],[1143,1,1,42,43]]],[58,1,1,43,44,[[1147,1,1,43,44]]],[59,1,1,44,45,[[1151,1,1,44,45]]],[61,6,5,45,50,[[1159,3,3,45,48],[1161,1,1,48,49],[1162,2,1,49,50]]],[63,1,1,50,51,[[1165,1,1,50,51]]],[65,3,3,51,54,[[1184,1,1,51,52],[1185,1,1,52,53],[1188,1,1,53,54]]]],[23349,23409,23678,23737,23963,24259,24515,24915,25337,25474,25643,25984,26014,26062,26078,26131,26152,26201,26247,26259,26293,26303,26419,26438,26477,26675,26677,26723,26860,26885,26892,26896,27160,27199,27719,27730,28541,29495,29512,29636,29985,30097,30199,30317,30382,30541,30542,30543,30585,30623,30669,31011,31027,31089]]],["See",[7,7,[[39,2,2,0,2,[[936,1,1,0,1],[937,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[51,1,1,3,4,[[1115,1,1,3,4]]],[57,1,1,4,5,[[1140,1,1,4,5]]],[65,2,2,5,7,[[1185,1,1,5,6],[1188,1,1,6,7]]]],[23349,23409,24259,29636,30097,31027,31089]]],["beholding",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25984]]],["heed",[5,5,[[39,2,2,0,2,[[944,1,1,0,1],[946,1,1,1,2]]],[40,1,1,2,3,[[964,1,1,2,3]]],[41,1,1,3,4,[[984,1,1,3,4]]],[43,1,1,4,5,[[1039,1,1,4,5]]]],[23678,23737,24515,25474,27730]]],["perceive",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27199]]],["saw",[4,4,[[42,3,3,0,3,[[997,1,1,0,1],[1002,1,1,1,2],[1015,1,1,2,3]]],[65,1,1,3,4,[[1184,1,1,3,4]]]],[26078,26259,26860,31011]]],["see",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[23963,29985,30317,30382]]],["seeing",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30199]]],["seen",[34,30,[[41,3,3,0,3,[[973,1,1,0,1],[981,1,1,1,2],[996,1,1,2,3]]],[42,19,16,3,19,[[997,1,1,3,4],[999,2,2,4,6],[1000,1,1,6,7],[1001,1,1,7,8],[1002,3,2,8,10],[1004,3,2,10,12],[1005,1,1,12,13],[1010,3,2,13,15],[1011,1,1,15,16],[1016,3,3,16,19]]],[43,2,2,19,21,[[1024,1,1,19,20],[1039,1,1,20,21]]],[45,1,1,21,22,[[1070,1,1,21,22]]],[50,2,2,22,24,[[1108,2,2,22,24]]],[61,6,5,24,29,[[1159,3,3,24,27],[1161,1,1,27,28],[1162,2,1,28,29]]],[63,1,1,29,30,[[1165,1,1,29,30]]]],[24915,25337,26014,26062,26131,26152,26201,26247,26293,26303,26419,26438,26477,26675,26677,26723,26885,26892,26896,27160,27719,28541,29495,29512,30541,30542,30543,30585,30623,30669]]],["seeth",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25643]]]]},{"k":"G3709","v":[["*",[36,34,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[41,2,2,2,4,[[975,1,1,2,3],[993,1,1,3,4]]],[42,1,1,4,5,[[999,1,1,4,5]]],[44,12,10,5,15,[[1046,1,1,5,6],[1047,3,2,6,8],[1048,1,1,8,9],[1049,1,1,9,10],[1050,1,1,10,11],[1054,2,1,11,12],[1057,1,1,12,13],[1058,2,2,13,15]]],[48,3,3,15,18,[[1098,1,1,15,16],[1100,1,1,16,17],[1101,1,1,17,18]]],[50,2,2,18,20,[[1109,2,2,18,20]]],[51,3,3,20,23,[[1111,1,1,20,21],[1112,1,1,21,22],[1115,1,1,22,23]]],[53,1,1,23,24,[[1120,1,1,23,24]]],[57,2,2,24,26,[[1135,1,1,24,25],[1136,1,1,25,26]]],[58,2,2,26,28,[[1146,2,2,26,28]]],[65,6,6,28,34,[[1172,2,2,28,30],[1177,1,1,30,31],[1180,1,1,31,32],[1182,1,1,32,33],[1185,1,1,33,34]]]],[23199,24293,25032,25849,26156,27948,27967,27970,27996,28037,28056,28177,28264,28270,28271,29232,29303,29310,29523,29525,29570,29586,29630,29724,30006,30017,30285,30286,30809,30810,30890,30936,30973,31032]]],["I",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[27996]]],["anger",[3,3,[[40,1,1,0,1,[[959,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]]],[24293,29303,29525]]],["indignation",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30936]]],["wrath",[31,29,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,2,2,1,3,[[975,1,1,1,2],[993,1,1,2,3]]],[42,1,1,3,4,[[999,1,1,3,4]]],[44,11,9,4,13,[[1046,1,1,4,5],[1047,3,2,5,7],[1049,1,1,7,8],[1050,1,1,8,9],[1054,2,1,9,10],[1057,1,1,10,11],[1058,2,2,11,13]]],[48,2,2,13,15,[[1098,1,1,13,14],[1101,1,1,14,15]]],[50,1,1,15,16,[[1109,1,1,15,16]]],[51,3,3,16,19,[[1111,1,1,16,17],[1112,1,1,17,18],[1115,1,1,18,19]]],[53,1,1,19,20,[[1120,1,1,19,20]]],[57,2,2,20,22,[[1135,1,1,20,21],[1136,1,1,21,22]]],[58,2,2,22,24,[[1146,2,2,22,24]]],[65,5,5,24,29,[[1172,2,2,24,26],[1177,1,1,26,27],[1182,1,1,27,28],[1185,1,1,28,29]]]],[23199,25032,25849,26156,27948,27967,27970,28037,28056,28177,28264,28270,28271,29232,29310,29523,29570,29586,29630,29724,30006,30017,30285,30286,30809,30810,30890,30973,31032]]]]},{"k":"G3710","v":[["*",[8,8,[[39,3,3,0,3,[[933,1,1,0,1],[946,1,1,1,2],[950,1,1,2,3]]],[41,2,2,3,5,[[986,1,1,3,4],[987,1,1,4,5]]],[48,1,1,5,6,[[1100,1,1,5,6]]],[65,2,2,6,8,[[1177,1,1,6,7],[1178,1,1,7,8]]]],[23256,23761,23879,25574,25616,29298,30890,30908]]],["angry",[5,5,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,2,2,1,3,[[986,1,1,1,2],[987,1,1,2,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]],[65,1,1,4,5,[[1177,1,1,4,5]]]],[23256,25574,25616,29298,30890]]],["wroth",[3,3,[[39,2,2,0,2,[[946,1,1,0,1],[950,1,1,1,2]]],[65,1,1,2,3,[[1178,1,1,2,3]]]],[23761,23879,30908]]]]},{"k":"G3711","v":[["angry",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29899]]]]},{"k":"G3712","v":[["fathoms",[2,1,[[43,2,1,0,1,[[1044,2,1,0,1]]]],[27883]]]]},{"k":"G3713","v":[["*",[3,3,[[53,2,2,0,2,[[1121,1,1,0,1],[1124,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[29732,29798,30188]]],["after",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29798]]],["desire",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[29732,30188]]]]},{"k":"G3714","v":[["country",[2,2,[[41,2,2,0,2,[[973,2,2,0,2]]]],[24932,24958]]]]},{"k":"G3715","v":[["lust",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27957]]]]},{"k":"G3716","v":[["+",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29095]]]]},{"k":"G3717","v":[["*",[2,2,[[43,1,1,0,1,[[1031,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[27424,30225]]],["straight",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30225]]],["upright",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27424]]]]},{"k":"G3718","v":[["dividing",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29842]]]]},{"k":"G3719","v":[["morning",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25864]]]]},{"k":"G3720","v":[["morning",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31096]]]]},{"k":"G3721","v":[["early",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26013]]]]},{"k":"G3722","v":[["*",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,1,1,1,2,[[1004,1,1,1,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]]],[25992,26383,27080]]],["+",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[25992,27080]]],["morning",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26383]]]]},{"k":"G3723","v":[["*",[4,4,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,3,3,1,4,[[979,1,1,1,2],[982,1,1,2,3],[992,1,1,3,4]]]],[24498,25238,25391,25800]]],["plain",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24498]]],["right",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25391]]],["rightly",[2,2,[[41,2,2,0,2,[[979,1,1,0,1],[992,1,1,1,2]]]],[25238,25800]]]]},{"k":"G3724","v":[["*",[8,8,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,5,5,1,6,[[1019,1,1,1,2],[1027,1,1,2,3],[1028,1,1,3,4],[1034,2,2,4,6]]],[44,1,1,6,7,[[1046,1,1,6,7]]],[57,1,1,7,8,[[1136,1,1,7,8]]]],[25886,26972,27301,27336,27549,27554,27934,30021]]],["declared",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27934]]],["determinate",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26972]]],["determined",[3,3,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,2,2,1,3,[[1028,1,1,1,2],[1034,1,1,2,3]]]],[25886,27336,27549]]],["limiteth",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30021]]],["ordained",[2,2,[[43,2,2,0,2,[[1027,1,1,0,1],[1034,1,1,1,2]]]],[27301,27554]]]]},{"k":"G3725","v":[["*",[11,10,[[39,6,6,0,6,[[930,1,1,0,1],[932,1,1,1,2],[936,1,1,2,3],[943,2,2,3,5],[947,1,1,5,6]]],[40,4,3,6,9,[[961,1,1,6,7],[963,2,1,7,8],[966,1,1,8,9]]],[43,1,1,9,10,[[1030,1,1,9,10]]]],[23185,23222,23379,23655,23672,23763,24381,24494,24589,27412]]],["borders",[1,1,[[39,1,1,0,1,[[932,1,1,0,1]]]],[23222]]],["coasts",[10,9,[[39,5,5,0,5,[[930,1,1,0,1],[936,1,1,1,2],[943,2,2,2,4],[947,1,1,4,5]]],[40,4,3,5,8,[[961,1,1,5,6],[963,2,1,6,7],[966,1,1,7,8]]],[43,1,1,8,9,[[1030,1,1,8,9]]]],[23185,23379,23655,23672,23763,24381,24494,24589,27412]]]]},{"k":"G3726","v":[["*",[3,3,[[40,1,1,0,1,[[961,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]],[51,1,1,2,3,[[1115,1,1,2,3]]]],[24371,27598,29648]]],["adjure",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[24371,27598]]],["charge",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29648]]]]},{"k":"G3727","v":[["*",[10,10,[[39,4,4,0,4,[[933,1,1,0,1],[942,2,2,1,3],[954,1,1,3,4]]],[40,1,1,4,5,[[962,1,1,4,5]]],[41,1,1,5,6,[[973,1,1,5,6]]],[43,1,1,6,7,[[1019,1,1,6,7]]],[57,2,2,7,9,[[1138,2,2,7,9]]],[58,1,1,9,10,[[1150,1,1,9,10]]]],[23267,23604,23606,24126,24433,24966,26979,30060,30061,30366]]],["+",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]]],[23606,24433]]],["oath",[7,7,[[39,2,2,0,2,[[942,1,1,0,1],[954,1,1,1,2]]],[41,1,1,2,3,[[973,1,1,2,3]]],[43,1,1,3,4,[[1019,1,1,3,4]]],[57,2,2,4,6,[[1138,2,2,4,6]]],[58,1,1,6,7,[[1150,1,1,6,7]]]],[23604,24126,24966,26979,30060,30061,30366]]],["oaths",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23267]]]]},{"k":"G3728","v":[["oath",[4,3,[[57,4,3,0,3,[[1139,4,3,0,3]]]],[30084,30085,30092]]]]},{"k":"G3729","v":[["*",[5,5,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[43,2,2,3,5,[[1024,1,1,3,4],[1036,1,1,4,5]]]],[23377,24377,25278,27173,27614]]],["ran",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27173]]],["rushed",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27614]]],["violently",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[23377,24377,25278]]]]},{"k":"G3730","v":[["*",[2,2,[[43,1,1,0,1,[[1031,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[27419,30323]]],["+",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30323]]],["assault",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27419]]]]},{"k":"G3731","v":[["violence",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31014]]]]},{"k":"G3732","v":[["*",[3,3,[[65,3,3,0,3,[[1184,1,1,0,1],[1185,2,2,1,3]]]],[30995,31034,31038]]],["bird",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30995]]],["fowls",[2,2,[[65,2,2,0,2,[[1185,2,2,0,2]]]],[31034,31038]]]]},{"k":"G3733","v":[["hen",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23955,25552]]]]},{"k":"G3734","v":[["bounds",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27549]]]]},{"k":"G3735","v":[["*",[65,65,[[39,16,16,0,16,[[932,1,1,0,1],[933,2,2,1,3],[936,1,1,3,4],[942,1,1,4,5],[943,1,1,5,6],[945,3,3,6,9],[946,1,1,9,10],[949,2,2,10,12],[952,2,2,12,14],[954,1,1,14,15],[956,1,1,15,16]]],[40,11,11,16,27,[[959,1,1,16,17],[961,2,2,17,19],[962,1,1,19,20],[965,2,2,20,22],[967,2,2,22,24],[969,2,2,24,26],[970,1,1,26,27]]],[41,13,13,27,40,[[975,1,1,27,28],[976,2,2,28,30],[978,1,1,30,31],[980,1,1,31,32],[981,2,2,32,34],[991,2,2,34,36],[993,2,2,36,38],[994,1,1,38,39],[995,1,1,39,40]]],[42,5,5,40,45,[[1000,2,2,40,42],[1002,2,2,42,44],[1004,1,1,44,45]]],[43,3,3,45,48,[[1018,1,1,45,46],[1024,2,2,46,48]]],[45,1,1,48,49,[[1074,1,1,48,49]]],[47,2,2,49,51,[[1094,2,2,49,51]]],[57,5,5,51,56,[[1140,1,1,51,52],[1143,1,1,52,53],[1144,3,3,53,56]]],[60,1,1,56,57,[[1156,1,1,56,57]]],[65,8,8,57,65,[[1172,3,3,57,60],[1174,1,1,60,61],[1180,1,1,61,62],[1182,1,1,62,63],[1183,1,1,63,64],[1187,1,1,64,65]]]],[23217,23235,23248,23346,23620,23662,23701,23709,23720,23739,23827,23847,23960,23973,24084,24211,24301,24369,24375,24453,24540,24547,24641,24663,24720,24731,24780,25030,25068,25092,25158,25277,25329,25338,25760,25768,25847,25863,25903,25965,26176,26177,26260,26272,26382,26935,27146,27154,28667,29155,29156,30097,30210,30230,30232,30234,30497,30807,30808,30809,30835,30927,30974,30984,31063]]],["+",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30984]]],["hill",[3,3,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,2,2,1,3,[[976,1,1,1,2],[981,1,1,2,3]]]],[23248,25092,25338]]],["mount",[21,21,[[39,3,3,0,3,[[949,1,1,0,1],[952,1,1,1,2],[954,1,1,2,3]]],[40,3,3,3,6,[[967,1,1,3,4],[969,1,1,4,5],[970,1,1,5,6]]],[41,4,4,6,10,[[991,2,2,6,8],[993,1,1,8,9],[994,1,1,9,10]]],[42,1,1,10,11,[[1004,1,1,10,11]]],[43,3,3,11,14,[[1018,1,1,11,12],[1024,2,2,12,14]]],[47,2,2,14,16,[[1094,2,2,14,16]]],[57,3,3,16,19,[[1140,1,1,16,17],[1144,2,2,17,19]]],[60,1,1,19,20,[[1156,1,1,19,20]]],[65,1,1,20,21,[[1180,1,1,20,21]]]],[23827,23960,24084,24641,24720,24780,25760,25768,25863,25903,26382,26935,27146,27154,29155,29156,30097,30230,30234,30497,30927]]],["mountain",[28,28,[[39,10,10,0,10,[[932,1,1,0,1],[933,1,1,1,2],[936,1,1,2,3],[942,1,1,3,4],[943,1,1,4,5],[945,3,3,5,8],[949,1,1,8,9],[956,1,1,9,10]]],[40,5,5,10,15,[[959,1,1,10,11],[962,1,1,11,12],[965,2,2,12,14],[967,1,1,14,15]]],[41,5,5,15,20,[[975,1,1,15,16],[976,1,1,16,17],[978,1,1,17,18],[980,1,1,18,19],[981,1,1,19,20]]],[42,4,4,20,24,[[1000,2,2,20,22],[1002,2,2,22,24]]],[57,1,1,24,25,[[1144,1,1,24,25]]],[65,3,3,25,28,[[1172,1,1,25,26],[1174,1,1,26,27],[1187,1,1,27,28]]]],[23217,23235,23346,23620,23662,23701,23709,23720,23847,24211,24301,24453,24540,24547,24663,25030,25068,25158,25277,25329,26176,26177,26260,26272,30232,30807,30835,31063]]],["mountains",[12,12,[[39,2,2,0,2,[[946,1,1,0,1],[952,1,1,1,2]]],[40,3,3,2,5,[[961,2,2,2,4],[969,1,1,4,5]]],[41,2,2,5,7,[[993,1,1,5,6],[995,1,1,6,7]]],[45,1,1,7,8,[[1074,1,1,7,8]]],[57,1,1,8,9,[[1143,1,1,8,9]]],[65,3,3,9,12,[[1172,2,2,9,11],[1182,1,1,11,12]]]],[23739,23973,24369,24375,24731,25847,25965,28667,30210,30808,30809,30974]]]]},{"k":"G3736","v":[["digged",[3,3,[[39,2,2,0,2,[[949,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]]],[23859,24026,24674]]]]},{"k":"G3737","v":[["*",[2,2,[[42,1,1,0,1,[[1010,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[26686,30293]]],["comfortless",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26686]]],["fatherless",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30293]]]]},{"k":"G3738","v":[["danced",[4,4,[[39,2,2,0,2,[[939,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[41,1,1,3,4,[[979,1,1,3,4]]]],[23476,23603,24429,25227]]]]},{"k":"G3739","v":[["*",[1364,1189,[[39,123,98,0,98,[[929,2,2,0,2],[930,2,2,2,4],[931,3,3,4,7],[933,8,5,7,12],[934,1,1,12,13],[935,3,2,13,15],[936,1,1,15,16],[938,8,6,16,22],[939,6,5,22,27],[940,8,6,27,33],[941,15,11,33,44],[942,2,2,44,46],[943,3,2,46,48],[944,4,2,48,50],[945,1,1,50,51],[946,7,7,51,58],[947,4,4,58,62],[948,9,7,62,69],[949,7,5,69,74],[951,6,4,74,78],[952,7,6,78,84],[953,5,3,84,87],[954,5,5,87,92],[955,6,6,92,98]]],[40,77,69,98,167,[[957,4,4,98,102],[958,4,4,102,106],[959,4,4,106,110],[960,8,6,110,116],[961,3,3,116,119],[962,3,3,119,122],[963,5,5,122,127],[964,3,2,127,129],[965,8,7,129,136],[966,11,9,136,145],[967,5,3,145,148],[968,1,1,148,149],[969,5,5,149,154],[970,7,7,154,161],[971,5,5,161,166],[972,1,1,166,167]]],[41,181,155,167,322,[[973,8,7,167,174],[974,7,7,174,181],[975,3,3,181,184],[976,3,3,184,187],[977,9,9,187,196],[978,12,12,196,208],[979,11,9,208,217],[980,14,9,217,226],[981,14,11,226,237],[982,9,8,237,245],[983,3,3,245,248],[984,19,15,248,263],[985,10,9,263,272],[986,2,2,272,274],[987,2,2,274,276],[988,2,2,276,278],[989,9,8,278,286],[990,3,3,286,289],[991,11,8,289,297],[992,3,3,297,300],[993,5,3,300,303],[994,3,3,303,306],[995,10,7,306,313],[996,9,9,313,322]]],[42,155,140,322,462,[[997,13,12,322,334],[998,2,2,334,336],[999,7,5,336,341],[1000,16,13,341,354],[1001,11,10,354,364],[1002,16,15,364,379],[1003,6,6,379,385],[1004,6,4,385,389],[1005,3,3,389,392],[1006,7,7,392,399],[1007,5,5,399,404],[1008,5,5,404,409],[1009,8,8,409,417],[1010,6,5,417,422],[1011,7,6,422,428],[1012,2,2,428,430],[1013,13,12,430,442],[1014,9,8,442,450],[1015,5,5,450,455],[1016,4,4,455,459],[1017,4,3,459,462]]],[43,218,193,462,655,[[1018,14,12,462,474],[1019,7,7,474,481],[1020,11,9,481,490],[1021,7,6,490,496],[1022,6,5,496,501],[1023,4,4,501,505],[1024,20,18,505,523],[1025,8,7,523,530],[1026,6,5,530,535],[1027,14,11,535,546],[1028,7,6,546,552],[1029,2,2,552,554],[1030,11,10,554,564],[1031,7,7,564,571],[1032,6,6,571,577],[1033,4,4,577,581],[1034,7,5,581,586],[1035,2,2,586,588],[1036,6,6,588,594],[1037,6,5,594,599],[1038,7,7,599,606],[1039,6,6,606,612],[1040,3,3,612,615],[1041,11,9,615,624],[1042,9,8,624,632],[1043,11,9,632,641],[1044,9,7,641,648],[1045,7,7,648,655]]],[44,89,72,655,727,[[1046,8,8,655,663],[1047,4,4,663,667],[1048,4,4,667,671],[1049,10,9,671,680],[1050,5,4,680,684],[1051,6,4,684,688],[1052,8,5,688,693],[1053,11,8,693,701],[1054,11,7,701,708],[1055,4,3,708,711],[1056,2,2,711,713],[1057,1,1,713,714],[1059,7,6,714,720],[1060,3,2,720,722],[1061,5,5,722,727]]],[45,62,52,727,779,[[1062,3,3,727,730],[1063,6,5,730,735],[1064,3,3,735,738],[1065,6,5,738,743],[1067,3,3,743,746],[1068,8,7,746,753],[1069,3,2,753,755],[1071,8,6,755,761],[1072,5,3,761,764],[1073,3,3,764,767],[1075,1,1,767,768],[1076,12,10,768,778],[1077,1,1,778,779]]],[46,42,35,779,814,[[1078,6,5,779,784],[1079,6,4,784,788],[1080,1,1,788,789],[1081,3,2,789,791],[1082,2,2,791,793],[1084,1,1,793,794],[1085,2,2,794,796],[1086,1,1,796,797],[1087,5,5,797,802],[1088,8,5,802,807],[1089,5,5,807,812],[1090,2,2,812,814]]],[47,23,23,814,837,[[1091,6,6,814,820],[1092,6,6,820,826],[1093,4,4,826,830],[1094,2,2,830,832],[1095,3,3,832,835],[1096,2,2,835,837]]],[48,32,31,837,868,[[1097,9,8,837,845],[1098,6,6,845,851],[1099,7,7,851,858],[1100,4,4,858,862],[1101,2,2,862,864],[1102,4,4,864,868]]],[49,15,14,868,882,[[1104,3,3,868,871],[1105,8,7,871,878],[1106,4,4,878,882]]],[50,34,32,882,914,[[1107,16,14,882,896],[1108,9,9,896,905],[1109,4,4,905,909],[1110,5,5,909,914]]],[51,4,4,914,918,[[1111,1,1,914,915],[1112,1,1,915,916],[1113,1,1,916,917],[1115,1,1,917,918]]],[52,12,12,918,930,[[1116,3,3,918,921],[1117,5,5,921,926],[1118,4,4,926,930]]],[53,21,19,930,949,[[1119,7,6,930,936],[1120,3,3,936,939],[1122,4,4,939,943],[1124,7,6,943,949]]],[54,20,17,949,966,[[1125,8,6,949,955],[1126,6,5,955,960],[1127,2,2,960,962],[1128,4,4,962,966]]],[55,9,8,966,974,[[1129,5,4,966,970],[1130,2,2,970,972],[1131,2,2,972,974]]],[56,5,5,974,979,[[1132,5,5,974,979]]],[57,73,68,979,1047,[[1133,3,2,979,981],[1134,6,5,981,986],[1135,2,2,986,988],[1136,1,1,988,989],[1137,3,3,989,992],[1138,6,6,992,998],[1139,8,7,998,1005],[1140,5,5,1005,1010],[1141,8,7,1010,1017],[1142,6,6,1017,1023],[1143,9,9,1023,1032],[1144,10,9,1032,1041],[1145,6,6,1041,1047]]],[58,8,7,1047,1054,[[1146,3,2,1047,1049],[1147,1,1,1049,1050],[1149,3,3,1050,1053],[1150,1,1,1053,1054]]],[59,30,24,1054,1078,[[1151,7,4,1054,1058],[1152,9,7,1058,1065],[1153,8,8,1065,1073],[1154,4,3,1073,1076],[1155,2,2,1076,1078]]],[60,18,17,1078,1095,[[1156,4,4,1078,1082],[1157,6,6,1082,1088],[1158,8,7,1088,1095]]],[61,30,23,1095,1118,[[1159,6,3,1095,1098],[1160,7,6,1098,1104],[1161,4,4,1104,1108],[1162,8,6,1108,1114],[1163,5,4,1114,1118]]],[62,3,3,1118,1121,[[1164,3,3,1118,1121]]],[63,5,4,1121,1125,[[1165,5,4,1121,1125]]],[64,5,4,1125,1129,[[1166,5,4,1125,1129]]],[65,70,60,1129,1189,[[1167,10,6,1129,1135],[1168,10,9,1135,1144],[1169,4,4,1144,1148],[1170,3,2,1148,1150],[1171,4,3,1150,1153],[1172,1,1,1153,1154],[1173,2,2,1154,1156],[1174,1,1,1156,1157],[1175,3,2,1157,1159],[1176,4,4,1159,1163],[1178,2,2,1163,1165],[1179,6,5,1165,1170],[1180,1,1,1170,1171],[1182,2,2,1171,1173],[1183,8,7,1173,1180],[1184,2,2,1180,1182],[1185,2,2,1182,1184],[1186,3,3,1184,1187],[1187,1,1,1187,1188],[1188,1,1,1188,1189]]]],[23160,23167,23178,23185,23203,23204,23209,23253,23255,23256,23265,23266,23290,23318,23325,23349,23428,23431,23443,23444,23455,23459,23463,23465,23469,23479,23486,23491,23493,23500,23507,23521,23525,23543,23547,23551,23556,23562,23570,23571,23572,23583,23585,23587,23604,23619,23638,23646,23691,23697,23705,23732,23733,23734,23746,23750,23755,23761,23768,23771,23773,23791,23796,23799,23807,23814,23815,23818,23819,23841,23850,23861,23868,23870,23934,23936,23953,23955,23959,23995,24001,24002,24003,24007,24021,24023,24037,24067,24078,24090,24102,24104,24138,24144,24162,24185,24186,24189,24217,24222,24226,24259,24264,24279,24284,24286,24301,24307,24317,24323,24327,24339,24345,24347,24348,24354,24367,24397,24405,24423,24429,24430,24467,24474,24476,24478,24488,24535,24538,24547,24575,24576,24577,24578,24579,24580,24597,24599,24603,24623,24626,24627,24628,24631,24632,24642,24661,24663,24683,24719,24728,24736,24737,24754,24762,24763,24775,24786,24798,24825,24826,24838,24866,24867,24869,24872,24882,24897,24913,24918,24920,24954,24966,24971,24984,24988,24993,24998,25004,25010,25023,25041,25042,25044,25069,25081,25092,25110,25116,25117,25124,25125,25128,25132,25136,25141,25148,25149,25150,25159,25160,25162,25163,25180,25184,25192,25194,25195,25197,25199,25217,25218,25222,25238,25240,25242,25244,25247,25250,25258,25262,25263,25272,25280,25283,25292,25305,25310,25325,25327,25328,25332,25334,25337,25344,25349,25351,25368,25371,25373,25385,25386,25387,25393,25402,25411,25427,25432,25460,25461,25462,25467,25469,25471,25479,25483,25496,25499,25501,25502,25505,25507,25509,25519,25522,25532,25534,25537,25539,25543,25548,25552,25568,25586,25597,25604,25621,25640,25652,25661,25663,25678,25680,25681,25682,25684,25705,25717,25718,25746,25751,25752,25753,25757,25761,25768,25775,25796,25797,25826,25830,25832,25841,25871,25886,25924,25949,25960,25962,25964,25968,25976,25986,25992,26001,26008,26009,26010,26012,26014,26016,26035,26047,26053,26057,26059,26070,26071,26074,26077,26082,26086,26089,26091,26117,26118,26122,26131,26146,26152,26154,26161,26168,26170,26174,26178,26185,26188,26194,26201,26202,26206,26208,26209,26214,26217,26229,26230,26231,26238,26242,26246,26248,26255,26259,26266,26270,26271,26275,26278,26279,26284,26286,26294,26296,26299,26308,26320,26321,26331,26353,26356,26359,26364,26367,26407,26419,26421,26435,26447,26459,26464,26487,26493,26497,26506,26510,26516,26517,26525,26526,26529,26568,26569,26581,26589,26618,26628,26630,26635,26637,26648,26653,26654,26656,26657,26659,26678,26680,26685,26692,26694,26702,26706,26714,26719,26723,26725,26743,26744,26761,26762,26763,26764,26765,26767,26768,26770,26771,26781,26783,26785,26786,26794,26796,26798,26801,26806,26811,26817,26842,26847,26851,26862,26866,26869,26874,26883,26897,26905,26908,26918,26924,26925,26926,26927,26930,26934,26939,26944,26945,26946,26947,26948,26957,26970,26971,26973,26981,26982,26985,26998,26999,27002,27009,27011,27012,27014,27017,27021,27032,27034,27042,27044,27049,27053,27083,27084,27089,27091,27095,27104,27107,27111,27115,27119,27120,27123,27132,27133,27134,27136,27144,27149,27151,27154,27155,27156,27159,27160,27161,27162,27168,27182,27186,27195,27200,27203,27206,27208,27221,27233,27249,27252,27255,27264,27265,27271,27274,27276,27280,27291,27295,27296,27297,27298,27313,27316,27318,27321,27330,27337,27341,27360,27363,27364,27368,27369,27384,27387,27393,27399,27401,27403,27422,27423,27425,27429,27430,27437,27440,27452,27453,27459,27466,27471,27478,27485,27497,27504,27507,27526,27530,27546,27554,27557,27564,27584,27598,27601,27610,27612,27620,27625,27644,27650,27651,27654,27664,27675,27680,27683,27687,27688,27693,27696,27708,27709,27712,27714,27719,27728,27753,27762,27763,27775,27777,27780,27782,27783,27784,27787,27788,27790,27803,27807,27811,27812,27814,27815,27820,27822,27825,27830,27833,27835,27838,27839,27840,27845,27849,27863,27872,27878,27880,27888,27894,27899,27903,27906,27907,27909,27914,27921,27922,27932,27935,27936,27939,27950,27955,27956,27957,27963,27968,27985,27991,27999,28005,28016,28021,28028,28029,28030,28038,28039,28040,28043,28046,28047,28049,28058,28059,28061,28078,28084,28085,28089,28097,28106,28107,28110,28111,28119,28131,28140,28141,28145,28146,28148,28150,28159,28160,28170,28173,28176,28178,28179,28196,28201,28202,28211,28216,28248,28282,28285,28295,28301,28302,28303,28321,28324,28338,28340,28341,28343,28353,28371,28372,28393,28401,28402,28403,28407,28410,28415,28421,28424,28435,28438,28439,28440,28450,28472,28485,28486,28488,28494,28507,28511,28523,28524,28526,28533,28538,28578,28580,28582,28583,28587,28597,28621,28623,28627,28642,28657,28662,28715,28719,28720,28721,28724,28727,28728,28733,28749,28754,28755,28779,28804,28806,28810,28813,28817,28827,28828,28834,28840,28847,28863,28865,28881,28887,28923,28950,28954,28958,28972,28973,28979,28984,28989,28993,29001,29004,29006,29010,29026,29028,29035,29039,29043,29046,29053,29062,29064,29065,29066,29077,29080,29083,29085,29086,29091,29099,29101,29103,29112,29118,29121,29140,29150,29163,29179,29183,29195,29202,29212,29213,29214,29215,29217,29219,29220,29226,29231,29232,29233,29239,29250,29251,29255,29256,29258,29262,29263,29266,29271,29273,29287,29288,29302,29309,29322,29345,29353,29357,29359,29396,29397,29406,29429,29433,29437,29439,29440,29441,29442,29445,29451,29452,29453,29470,29471,29472,29474,29478,29479,29480,29483,29488,29489,29490,29492,29493,29494,29497,29504,29505,29506,29508,29511,29512,29513,29516,29523,29524,29532,29542,29545,29550,29551,29552,29559,29570,29583,29599,29645,29653,29654,29660,29669,29670,29671,29675,29676,29681,29682,29684,29695,29702,29703,29707,29711,29715,29716,29720,29723,29726,29750,29753,29757,29761,29792,29798,29800,29803,29804,29809,29812,29815,29820,29821,29822,29824,29829,29834,29836,29844,29847,29861,29867,29878,29883,29885,29888,29894,29895,29903,29905,29909,29922,29928,29929,29943,29948,29950,29951,29959,29965,29966,29982,29987,29988,29990,29995,30001,30012,30027,30037,30038,30041,30051,30052,30054,30061,30062,30063,30066,30068,30077,30078,30080,30083,30091,30093,30094,30095,30101,30102,30107,30109,30110,30112,30114,30119,30125,30134,30143,30149,30153,30162,30165,30176,30179,30180,30182,30187,30190,30201,30205,30210,30214,30218,30219,30220,30226,30228,30231,30238,30240,30248,30250,30251,30252,30262,30264,30278,30283,30298,30341,30342,30349,30364,30380,30382,30384,30386,30403,30406,30407,30411,30421,30422,30423,30427,30428,30430,30440,30443,30444,30445,30446,30450,30451,30457,30474,30477,30483,30488,30496,30498,30502,30503,30512,30515,30517,30519,30523,30526,30528,30532,30534,30535,30538,30541,30543,30545,30555,30557,30558,30574,30575,30577,30590,30596,30601,30603,30605,30606,30609,30618,30619,30623,30633,30634,30638,30639,30646,30650,30653,30659,30663,30664,30668,30685,30687,30694,30695,30698,30699,30701,30708,30716,30717,30723,30724,30725,30727,30730,30731,30732,30734,30742,30748,30750,30757,30758,30769,30773,30785,30787,30792,30802,30812,30819,30829,30854,30860,30865,30866,30867,30869,30896,30907,30910,30912,30916,30920,30922,30930,30968,30972,30977,30983,30986,30987,30990,30991,30993,30999,31012,31029,31037,31040,31046,31049,31065,31086]]],["+",[252,234,[[39,47,38,0,38,[[933,8,5,0,5],[938,3,3,5,8],[939,3,3,8,11],[940,3,2,11,13],[941,2,2,13,15],[942,2,2,15,17],[943,2,1,17,18],[944,4,2,18,20],[946,3,3,20,23],[947,1,1,23,24],[948,4,4,24,28],[949,2,2,28,30],[951,5,3,30,33],[953,2,2,33,35],[954,3,3,35,38]]],[40,26,23,38,61,[[958,2,2,38,40],[959,2,2,40,42],[960,2,2,42,44],[962,2,2,44,46],[963,1,1,46,47],[964,3,2,47,49],[965,4,3,49,52],[966,5,5,52,57],[967,3,2,57,59],[969,1,1,59,60],[970,1,1,60,61]]],[41,42,38,61,99,[[973,2,2,61,63],[976,3,3,63,66],[977,2,2,66,68],[978,1,1,68,69],[979,2,2,69,71],[980,3,2,71,73],[981,6,4,73,77],[982,5,5,77,82],[983,1,1,82,83],[984,5,5,83,88],[985,2,2,88,90],[989,2,1,90,91],[990,1,1,91,92],[991,2,2,92,94],[992,1,1,94,95],[994,1,1,95,96],[995,2,2,96,98],[996,1,1,98,99]]],[42,12,12,99,111,[[997,1,1,99,100],[1000,2,2,100,102],[1001,3,3,102,105],[1002,2,2,105,107],[1011,1,1,107,108],[1013,1,1,108,109],[1015,1,1,109,110],[1016,1,1,110,111]]],[43,34,34,111,145,[[1018,3,3,111,114],[1019,2,2,114,116],[1021,2,2,116,118],[1022,1,1,118,119],[1024,4,4,119,123],[1025,1,1,123,124],[1027,2,2,124,126],[1028,2,2,126,128],[1029,1,1,128,129],[1030,1,1,129,130],[1032,2,2,130,132],[1034,1,1,132,133],[1036,1,1,133,134],[1037,1,1,134,135],[1039,1,1,135,136],[1040,1,1,136,137],[1041,3,3,137,140],[1043,2,2,140,142],[1044,3,3,142,145]]],[44,17,16,145,161,[[1046,2,2,145,147],[1047,1,1,147,148],[1050,1,1,148,149],[1052,1,1,149,150],[1053,2,2,150,152],[1054,3,2,152,154],[1055,1,1,154,155],[1057,1,1,155,156],[1059,4,4,156,160],[1061,1,1,160,161]]],[45,10,10,161,171,[[1063,1,1,161,162],[1065,1,1,162,163],[1068,2,2,163,165],[1072,2,2,165,167],[1073,2,2,167,169],[1076,1,1,169,170],[1077,1,1,170,171]]],[46,4,4,171,175,[[1079,1,1,171,172],[1082,1,1,172,173],[1088,2,2,173,175]]],[47,2,2,175,177,[[1095,1,1,175,176],[1096,1,1,176,177]]],[48,7,7,177,184,[[1097,1,1,177,178],[1098,1,1,178,179],[1099,1,1,179,180],[1100,1,1,180,181],[1101,1,1,181,182],[1102,2,2,182,184]]],[49,2,2,184,186,[[1105,1,1,184,185],[1106,1,1,185,186]]],[50,4,4,186,190,[[1107,1,1,186,187],[1108,1,1,187,188],[1109,2,2,188,190]]],[52,3,3,190,193,[[1116,1,1,190,191],[1117,2,2,191,193]]],[53,3,3,193,196,[[1120,1,1,193,194],[1124,2,2,194,196]]],[54,5,5,196,201,[[1125,2,2,196,198],[1126,2,2,198,200],[1127,1,1,200,201]]],[55,1,1,201,202,[[1129,1,1,201,202]]],[56,1,1,202,203,[[1132,1,1,202,203]]],[57,9,8,203,211,[[1134,1,1,203,204],[1138,1,1,204,205],[1140,1,1,205,206],[1141,3,2,206,208],[1142,1,1,208,209],[1144,1,1,209,210],[1145,1,1,210,211]]],[58,1,1,211,212,[[1149,1,1,211,212]]],[59,7,7,212,219,[[1151,1,1,212,213],[1152,2,2,213,215],[1153,2,2,215,217],[1154,1,1,217,218],[1155,1,1,218,219]]],[60,5,5,219,224,[[1156,1,1,219,220],[1158,4,4,220,224]]],[61,5,5,224,229,[[1160,1,1,224,225],[1161,2,2,225,227],[1162,1,1,227,228],[1163,1,1,228,229]]],[63,1,1,229,230,[[1165,1,1,229,230]]],[64,1,1,230,231,[[1166,1,1,230,231]]],[65,3,3,231,234,[[1168,1,1,231,232],[1182,1,1,232,233],[1184,1,1,233,234]]]],[23253,23255,23256,23265,23266,23428,23431,23459,23465,23479,23486,23521,23525,23543,23547,23604,23619,23638,23691,23697,23732,23733,23746,23771,23796,23799,23818,23819,23861,23870,23934,23936,23955,24021,24023,24090,24102,24104,24264,24279,24317,24323,24327,24348,24429,24430,24474,24535,24538,24575,24579,24580,24599,24603,24623,24631,24632,24642,24663,24728,24798,24897,24971,25069,25081,25092,25132,25141,25195,25218,25242,25250,25263,25305,25325,25327,25349,25368,25371,25373,25385,25393,25427,25460,25462,25467,25469,25507,25543,25552,25684,25705,25761,25775,25797,25871,25968,25976,26012,26077,26170,26208,26214,26217,26229,26278,26279,26706,26761,26866,26883,26934,26944,26947,26957,26970,27034,27053,27083,27119,27120,27144,27149,27195,27271,27280,27318,27321,27360,27363,27453,27478,27546,27625,27644,27728,27762,27780,27782,27787,27835,27845,27880,27888,27899,27950,27956,27963,28049,28097,28131,28148,28170,28176,28201,28248,28282,28285,28301,28303,28338,28403,28435,28494,28511,28621,28627,28642,28662,28719,28779,28840,28881,29001,29010,29179,29195,29212,29231,29255,29302,29322,29345,29353,29437,29452,29494,29506,29523,29542,29660,29671,29675,29723,29792,29800,29815,29820,29836,29847,29861,29905,29959,29982,30061,30095,30107,30109,30162,30240,30251,30341,30380,30407,30411,30440,30444,30450,30477,30483,30526,30528,30534,30535,30555,30596,30601,30618,30639,30663,30694,30730,30972,31012]]],["I",[3,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[43,1,1,1,2,[[1039,1,1,1,2]]],[44,1,1,2,3,[[1052,1,1,2,3]]]],[24222,27708,28111]]],["That",[2,2,[[42,1,1,0,1,[[1009,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[26657,29006]]],["What",[8,8,[[39,2,2,0,2,[[938,1,1,0,1],[947,1,1,1,2]]],[40,1,1,2,3,[[966,1,1,2,3]]],[42,2,2,3,5,[[1009,1,1,3,4],[1015,1,1,4,5]]],[43,2,2,5,7,[[1027,1,1,5,6],[1028,1,1,6,7]]],[65,1,1,7,8,[[1167,1,1,7,8]]]],[23444,23768,24597,26637,26847,27274,27316,30708]]],["When",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27255]]],["Wherein",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29214]]],["Whereof",[2,2,[[48,1,1,0,1,[[1099,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[29258,29490]]],["Which",[24,24,[[39,2,2,0,2,[[941,2,2,0,2]]],[41,2,2,2,4,[[974,1,1,2,3],[992,1,1,3,4]]],[42,1,1,4,5,[[997,1,1,4,5]]],[43,6,6,5,11,[[1018,1,1,5,6],[1024,1,1,6,7],[1028,1,1,7,8],[1030,1,1,8,9],[1033,1,1,9,10],[1044,1,1,10,11]]],[44,1,1,11,12,[[1046,1,1,11,12]]],[45,1,1,12,13,[[1063,1,1,12,13]]],[47,1,1,13,14,[[1091,1,1,13,14]]],[48,3,3,14,17,[[1097,2,2,14,16],[1099,1,1,16,17]]],[50,2,2,17,19,[[1108,2,2,17,19]]],[53,2,2,19,21,[[1124,2,2,19,21]]],[55,1,1,21,22,[[1131,1,1,21,22]]],[57,1,1,22,23,[[1138,1,1,22,23]]],[63,1,1,23,24,[[1165,1,1,23,24]]]],[23571,23587,25004,25826,26057,26934,27161,27337,27369,27485,27872,27932,28402,29064,29220,29226,29256,29511,29516,29803,29809,29929,30063,30664]]],["Who",[39,39,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[971,1,1,2,3]]],[41,2,2,3,5,[[981,1,1,3,4],[990,1,1,4,5]]],[43,10,10,5,15,[[1020,1,1,5,6],[1024,1,1,6,7],[1028,2,2,7,9],[1031,1,1,9,10],[1033,1,1,10,11],[1038,1,1,11,12],[1041,2,2,12,14],[1045,1,1,14,15]]],[44,3,3,15,18,[[1047,1,1,15,16],[1049,2,2,16,18]]],[45,1,1,18,19,[[1062,1,1,18,19]]],[46,2,2,19,21,[[1078,1,1,19,20],[1080,1,1,20,21]]],[49,2,2,21,23,[[1104,1,1,21,22],[1105,1,1,22,23]]],[50,3,3,23,26,[[1107,3,3,23,26]]],[53,1,1,26,27,[[1120,1,1,26,27]]],[55,1,1,27,28,[[1130,1,1,27,28]]],[57,5,5,28,33,[[1133,1,1,28,29],[1137,1,1,29,30],[1139,2,2,30,32],[1143,1,1,32,33]]],[59,5,5,33,38,[[1152,3,3,33,36],[1153,1,1,36,37],[1154,1,1,37,38]]],[65,1,1,38,39,[[1167,1,1,38,39]]]],[23585,24367,24867,25332,25718,26999,27162,27321,27330,27430,27507,27696,27775,27788,27909,27968,28040,28047,28371,28810,28847,29397,29442,29478,29480,29489,29720,29922,29966,30037,30080,30091,30205,30421,30422,30423,30446,30451,30699]]],["Whom",[15,15,[[43,7,7,0,7,[[1019,1,1,0,1],[1020,1,1,1,2],[1023,1,1,2,3],[1034,2,2,3,5],[1036,1,1,5,6],[1040,1,1,6,7]]],[44,1,1,7,8,[[1048,1,1,7,8]]],[48,1,1,8,9,[[1102,1,1,8,9]]],[50,2,2,9,11,[[1107,1,1,9,10],[1110,1,1,10,11]]],[56,2,2,11,13,[[1132,2,2,11,13]]],[59,2,2,13,15,[[1151,1,1,13,14],[1155,1,1,14,15]]]],[26973,27017,27107,27530,27546,27610,27763,28016,29359,29493,29550,29950,29951,30382,30474]]],["Whose",[8,8,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[44,2,2,2,4,[[1048,1,1,2,3],[1054,1,1,3,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]],[55,1,1,5,6,[[1129,1,1,5,6]]],[57,1,1,6,7,[[1144,1,1,6,7]]],[59,1,1,7,8,[[1153,1,1,7,8]]]],[23204,25042,28005,28160,29440,29903,30238,30427]]],["and",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[25194,27249]]],["another",[8,6,[[39,4,2,0,2,[[949,2,1,0,1],[953,2,1,1,2]]],[44,2,2,2,4,[[1054,1,1,2,3],[1059,1,1,3,4]]],[45,2,2,4,6,[[1068,1,1,4,5],[1072,1,1,5,6]]]],[23861,24023,28176,28285,28494,28621]]],["as",[2,2,[[43,1,1,0,1,[[1026,1,1,0,1]]],[65,1,1,1,2,[[1171,1,1,1,2]]]],[27233,30792]]],["at",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25499]]],["had",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27203]]],["hath",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28865]]],["he",[11,11,[[39,2,2,0,2,[[938,1,1,0,1],[946,1,1,1,2]]],[40,3,3,2,5,[[960,1,1,2,3],[965,2,2,3,5]]],[41,2,2,5,7,[[981,1,1,5,6],[986,1,1,6,7]]],[43,2,2,7,9,[[1029,1,1,7,8],[1030,1,1,8,9]]],[45,1,1,9,10,[[1068,1,1,9,10]]],[60,1,1,10,11,[[1156,1,1,10,11]]]],[23455,23761,24348,24576,24578,25351,25568,27341,27393,28524,30488]]],["it",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25509]]],["other",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[46,1,1,1,2,[[1079,1,1,1,2]]]],[25968,28840]]],["others",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30695]]],["same",[2,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]]],[25680,26529]]],["some",[4,3,[[39,2,1,0,1,[[941,2,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]]],[23547,27899,29847]]],["state",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29453]]],["such",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[43,1,1,1,2,[[1020,1,1,1,2]]]],[24001,27002]]],["that",[134,123,[[39,14,12,0,12,[[936,1,1,0,1],[938,2,1,1,2],[940,1,1,2,3],[941,1,1,3,4],[947,1,1,4,5],[948,3,2,5,7],[949,1,1,7,8],[952,3,3,8,11],[955,1,1,11,12]]],[40,8,6,12,18,[[963,1,1,12,13],[966,4,2,13,15],[969,1,1,15,16],[970,2,2,16,18]]],[41,24,20,18,38,[[973,1,1,18,19],[974,1,1,19,20],[977,1,1,20,21],[978,1,1,21,22],[979,1,1,22,23],[980,2,1,23,24],[982,1,1,24,25],[984,2,1,25,26],[986,1,1,26,27],[987,1,1,27,28],[990,1,1,28,29],[991,6,4,29,33],[993,2,2,33,35],[995,1,1,35,36],[996,2,2,36,38]]],[42,33,31,38,69,[[997,1,1,38,39],[999,4,3,39,42],[1000,6,5,42,47],[1001,2,2,47,49],[1002,5,5,49,54],[1003,2,2,54,56],[1004,1,1,56,57],[1005,1,1,57,58],[1006,1,1,58,59],[1008,1,1,59,60],[1009,1,1,60,61],[1010,2,2,61,63],[1011,2,2,63,65],[1012,2,2,65,67],[1013,1,1,67,68],[1016,1,1,68,69]]],[43,9,9,69,78,[[1018,2,2,69,71],[1024,2,2,71,73],[1036,1,1,73,74],[1038,2,2,74,76],[1040,1,1,76,77],[1041,1,1,77,78]]],[44,7,6,78,84,[[1047,1,1,78,79],[1050,1,1,79,80],[1051,2,1,80,81],[1052,1,1,81,82],[1053,2,2,82,84]]],[45,8,8,84,92,[[1063,1,1,84,85],[1065,1,1,85,86],[1067,2,2,86,88],[1071,2,2,88,90],[1075,1,1,90,91],[1076,1,1,91,92]]],[46,3,3,92,95,[[1078,1,1,92,93],[1082,1,1,93,94],[1089,1,1,94,95]]],[47,3,3,95,98,[[1091,2,2,95,97],[1093,1,1,97,98]]],[48,1,1,98,99,[[1099,1,1,98,99]]],[52,1,1,99,100,[[1116,1,1,99,100]]],[54,2,2,100,102,[[1126,1,1,100,101],[1128,1,1,101,102]]],[57,4,4,102,106,[[1134,1,1,102,103],[1140,2,2,103,105],[1142,1,1,105,106]]],[58,3,3,106,109,[[1146,1,1,106,107],[1149,2,2,107,109]]],[60,1,1,109,110,[[1157,1,1,109,110]]],[61,9,9,110,119,[[1160,1,1,110,111],[1161,1,1,111,112],[1162,4,4,112,116],[1163,3,3,116,119]]],[65,4,4,119,123,[[1169,1,1,119,120],[1183,2,2,120,122],[1185,1,1,122,123]]]],[23349,23443,23500,23551,23791,23814,23815,23841,23959,23995,24007,24162,24478,24626,24627,24719,24763,24826,24954,24993,25136,25184,25244,25262,25386,25461,25586,25604,25717,25752,25753,25757,25768,25830,25832,25964,26008,26016,26047,26122,26131,26146,26161,26170,26188,26201,26206,26230,26246,26271,26294,26308,26320,26321,26331,26364,26421,26464,26506,26628,26659,26678,26680,26714,26719,26743,26744,26771,26874,26924,26945,27132,27160,27620,27675,27687,27753,27790,27985,28059,28078,28110,28119,28141,28410,28440,28472,28485,28580,28597,28715,28727,28817,28887,29028,29065,29066,29112,29271,29653,29829,29883,29995,30101,30102,30149,30278,30342,30349,30512,30575,30590,30605,30606,30609,30619,30634,30638,30639,30748,30983,30986,31029]]],["the",[7,7,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,3,3,1,4,[[973,1,1,1,2],[989,2,2,2,4]]],[42,1,1,4,5,[[1002,1,1,4,5]]],[50,2,2,5,7,[[1107,2,2,5,7]]]],[23572,24913,25678,25681,26275,29471,29474]]],["they",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28324]]],["thing",[3,3,[[43,1,1,0,1,[[1043,1,1,0,1]]],[61,1,1,1,2,[[1160,1,1,1,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[27833,30558,30732]]],["things",[12,12,[[39,2,2,0,2,[[934,1,1,0,1],[939,1,1,1,2]]],[40,1,1,2,3,[[965,1,1,2,3]]],[41,2,2,3,5,[[979,1,1,3,4],[984,1,1,4,5]]],[42,1,1,5,6,[[1007,1,1,5,6]]],[43,3,3,6,9,[[1020,1,1,6,7],[1038,1,1,7,8],[1042,1,1,8,9]]],[44,1,1,9,10,[[1060,1,1,9,10]]],[45,1,1,10,11,[[1063,1,1,10,11]]],[59,1,1,11,12,[[1151,1,1,11,12]]]],[23290,23463,24547,25217,25479,26569,27014,27683,27814,28321,28407,30386]]],["this",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24067]]],["thou",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24913]]],["time",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25240]]],["to",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[25411,27156]]],["what",[32,29,[[39,4,3,0,3,[[935,2,1,0,1],[938,1,1,1,2],[948,1,1,2,3]]],[40,4,4,3,7,[[960,1,1,3,4],[961,1,1,4,5],[969,1,1,5,6],[970,1,1,6,7]]],[41,5,5,7,12,[[978,1,1,7,8],[980,1,1,8,9],[981,1,1,9,10],[984,1,1,10,11],[994,1,1,11,12]]],[42,4,3,12,15,[[999,1,1,12,13],[1000,2,1,13,14],[1014,1,1,14,15]]],[43,4,4,15,19,[[1025,1,1,15,16],[1031,1,1,16,17],[1039,1,1,17,18],[1045,1,1,18,19]]],[44,4,3,19,22,[[1049,1,1,19,20],[1052,2,1,20,21],[1053,1,1,21,22]]],[45,3,3,22,25,[[1068,1,1,22,23],[1071,1,1,23,24],[1076,1,1,24,25]]],[46,2,2,25,27,[[1078,1,1,25,26],[1088,1,1,26,27]]],[53,1,1,27,28,[[1119,1,1,27,28]]],[54,1,1,28,29,[[1126,1,1,28,29]]]],[23318,23444,23807,24347,24397,24754,24762,25149,25292,25334,25471,25924,26152,26178,26806,27206,27425,27719,27921,28043,28106,28140,28523,28582,28728,28813,29001,29703,29834]]],["whatsoever",[2,2,[[42,2,2,0,2,[[1008,1,1,0,1],[1010,1,1,1,2]]]],[26630,26694]]],["when",[3,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,2,1,1,2,[[984,2,1,1,2]]]],[24007,25505]]],["whence",[2,2,[[49,1,1,0,1,[[1105,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[29441,30187]]],["wherein",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]],[46,1,1,2,3,[[1089,1,1,2,3]]]],[24918,28507,29035]]],["whereof",[13,13,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,6,6,1,7,[[1019,1,1,1,2],[1020,1,1,2,3],[1038,1,1,3,4],[1041,1,1,4,5],[1042,1,1,5,6],[1043,1,1,6,7]]],[44,1,1,7,8,[[1051,1,1,7,8]]],[45,1,1,8,9,[[1068,1,1,8,9]]],[50,2,2,9,11,[[1107,2,2,9,11]]],[57,1,1,11,12,[[1144,1,1,11,12]]],[61,1,1,12,13,[[1162,1,1,12,13]]]],[25949,26981,27011,27688,27777,27807,27825,28089,28488,29470,29488,30220,30606]]],["whereon",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26194]]],["whereunto",[6,6,[[43,2,2,0,2,[[1030,1,1,0,1],[1044,1,1,1,2]]],[47,1,1,2,3,[[1094,1,1,2,3]]],[53,1,1,3,4,[[1122,1,1,3,4]]],[59,1,1,4,5,[[1153,1,1,4,5]]],[60,1,1,5,6,[[1156,1,1,5,6]]]],[27364,27863,29140,29753,30445,30498]]],["wherewith",[9,9,[[42,2,2,0,2,[[1009,1,1,0,1],[1013,1,1,1,2]]],[46,3,3,2,5,[[1078,1,1,2,3],[1084,1,1,3,4],[1087,1,1,4,5]]],[47,1,1,5,6,[[1095,1,1,5,6]]],[48,2,2,6,8,[[1098,1,1,6,7],[1100,1,1,7,8]]],[51,1,1,8,9,[[1113,1,1,8,9]]]],[26635,26785,28804,28923,28973,29163,29233,29273,29599]]],["which",[394,365,[[39,20,19,0,19,[[929,1,1,0,1],[930,2,2,1,3],[939,1,1,3,4],[940,2,2,4,6],[941,6,5,6,11],[943,1,1,11,12],[946,2,2,12,14],[949,2,2,14,16],[953,1,1,16,17],[955,2,2,17,19]]],[40,19,19,19,38,[[957,2,2,19,21],[958,2,2,21,23],[959,1,1,23,24],[960,3,3,24,27],[961,1,1,27,28],[963,2,2,28,30],[965,1,1,30,31],[967,2,2,31,33],[968,1,1,33,34],[969,1,1,34,35],[970,1,1,35,36],[971,2,2,36,38]]],[41,58,53,38,91,[[973,1,1,38,39],[974,4,4,39,43],[975,1,1,43,44],[977,6,6,44,50],[978,5,5,50,55],[979,1,1,55,56],[980,5,4,56,60],[981,4,4,60,64],[982,3,2,64,66],[983,1,1,66,67],[984,2,2,67,69],[985,5,4,69,73],[987,1,1,73,74],[988,2,2,74,76],[989,3,3,76,79],[991,2,2,79,81],[992,1,1,81,82],[993,3,2,82,84],[995,3,2,84,86],[996,5,5,86,91]]],[42,52,50,91,141,[[997,4,4,91,95],[998,2,2,95,97],[1000,3,3,97,100],[1001,3,3,100,103],[1002,6,6,103,109],[1003,2,2,109,111],[1004,4,3,111,114],[1005,1,1,114,115],[1006,3,3,115,118],[1007,1,1,118,119],[1008,1,1,119,120],[1010,1,1,120,121],[1011,3,3,121,124],[1013,7,7,124,131],[1014,7,6,131,137],[1015,1,1,137,138],[1016,1,1,138,139],[1017,2,2,139,141]]],[43,50,46,141,187,[[1018,5,5,141,146],[1019,2,2,146,148],[1020,2,2,148,150],[1021,1,1,150,151],[1023,2,2,151,153],[1024,5,5,153,158],[1025,3,3,158,161],[1026,2,1,161,162],[1027,4,4,162,166],[1028,1,1,166,167],[1030,3,3,167,170],[1031,2,2,170,172],[1032,2,2,172,174],[1033,1,1,174,175],[1034,2,2,175,177],[1037,4,3,177,180],[1039,1,1,180,181],[1041,2,2,181,183],[1042,1,1,183,184],[1043,4,2,184,186],[1044,1,1,186,187]]],[44,12,12,187,199,[[1046,1,1,187,188],[1048,1,1,188,189],[1051,1,1,189,190],[1052,3,3,190,193],[1054,1,1,193,194],[1055,1,1,194,195],[1056,2,2,195,197],[1059,1,1,197,198],[1061,1,1,198,199]]],[45,19,16,199,215,[[1063,2,2,199,201],[1064,2,2,201,203],[1065,1,1,203,204],[1067,1,1,204,205],[1071,3,2,205,207],[1072,2,1,207,208],[1073,1,1,208,209],[1076,7,6,209,215]]],[46,11,10,215,225,[[1078,1,1,215,216],[1079,1,1,216,217],[1086,1,1,217,218],[1087,2,2,218,220],[1088,2,1,220,221],[1089,2,2,221,223],[1090,2,2,223,225]]],[47,9,9,225,234,[[1091,2,2,225,227],[1092,5,5,227,232],[1093,1,1,232,233],[1095,1,1,233,234]]],[48,5,5,234,239,[[1097,1,1,234,235],[1098,1,1,235,236],[1099,1,1,236,237],[1100,1,1,237,238],[1102,1,1,238,239]]],[49,3,3,239,242,[[1104,1,1,239,240],[1105,1,1,240,241],[1106,1,1,241,242]]],[50,10,10,242,252,[[1107,2,2,242,244],[1108,4,4,244,248],[1109,2,2,248,250],[1110,2,2,250,252]]],[51,1,1,252,253,[[1112,1,1,252,253]]],[52,5,5,253,258,[[1116,1,1,253,254],[1117,1,1,254,255],[1118,3,3,255,258]]],[53,7,7,258,265,[[1119,3,3,258,261],[1120,1,1,261,262],[1122,2,2,262,264],[1124,1,1,264,265]]],[54,5,5,265,270,[[1125,3,3,265,268],[1127,1,1,268,269],[1128,1,1,269,270]]],[55,5,5,270,275,[[1129,3,3,270,273],[1130,1,1,273,274],[1131,1,1,274,275]]],[56,1,1,275,276,[[1132,1,1,275,276]]],[57,24,24,276,300,[[1134,2,2,276,278],[1137,1,1,278,279],[1138,2,2,279,281],[1139,3,3,281,284],[1140,1,1,284,285],[1141,4,4,285,289],[1142,4,4,289,293],[1143,4,4,293,297],[1144,2,2,297,299],[1145,1,1,299,300]]],[58,2,2,300,302,[[1146,1,1,300,301],[1147,1,1,301,302]]],[59,7,7,302,309,[[1151,2,2,302,304],[1152,2,2,304,306],[1153,2,2,306,308],[1154,1,1,308,309]]],[60,4,3,309,312,[[1158,4,3,309,312]]],[61,12,8,312,320,[[1159,6,3,312,315],[1160,4,3,315,318],[1161,1,1,318,319],[1163,1,1,319,320]]],[62,2,2,320,322,[[1164,2,2,320,322]]],[63,1,1,322,323,[[1165,1,1,322,323]]],[64,2,1,323,324,[[1166,2,1,323,324]]],[65,48,41,324,365,[[1167,8,4,324,328],[1168,6,6,328,334],[1169,3,3,334,337],[1170,3,2,337,339],[1171,3,3,339,342],[1172,1,1,342,343],[1173,1,1,343,344],[1174,1,1,344,345],[1175,3,2,345,347],[1176,3,3,347,350],[1178,1,1,350,351],[1179,4,3,351,354],[1180,1,1,354,355],[1182,1,1,355,356],[1183,4,4,356,360],[1184,1,1,360,361],[1185,1,1,361,362],[1186,1,1,362,363],[1187,1,1,363,364],[1188,1,1,364,365]]]],[23167,23178,23185,23469,23491,23493,23556,23562,23570,23572,23583,23646,23750,23755,23850,23868,24037,24185,24189,24217,24259,24284,24286,24307,24345,24348,24354,24405,24467,24476,24577,24661,24663,24683,24736,24786,24869,24872,24966,24984,24988,25010,25023,25044,25110,25116,25117,25124,25125,25128,25148,25150,25162,25163,25192,25222,25247,25258,25263,25272,25328,25332,25337,25344,25387,25402,25432,25462,25483,25532,25537,25539,25548,25597,25621,25640,25661,25663,25682,25751,25761,25796,25832,25841,25962,25964,25992,26001,26010,26014,26035,26053,26074,26082,26086,26117,26118,26168,26185,26209,26238,26242,26246,26259,26266,26270,26284,26296,26308,26359,26367,26407,26419,26421,26447,26487,26497,26510,26568,26618,26692,26702,26723,26725,26763,26764,26765,26767,26768,26781,26783,26786,26794,26796,26798,26801,26817,26842,26897,26908,26918,26925,26927,26930,26939,26948,26971,26982,27017,27021,27042,27111,27115,27133,27134,27136,27156,27159,27182,27200,27208,27252,27276,27295,27296,27298,27313,27384,27401,27403,27429,27440,27452,27471,27504,27554,27557,27650,27654,27664,27714,27783,27784,27803,27830,27839,27894,27957,28021,28085,28106,28107,28110,28178,28196,28211,28216,28302,28353,28401,28403,28421,28424,28439,28486,28583,28587,28623,28657,28719,28720,28721,28749,28754,28755,28806,28828,28958,28979,28984,28993,29026,29043,29046,29053,29077,29080,29083,29085,29091,29099,29101,29118,29183,29215,29239,29262,29287,29357,29396,29433,29451,29488,29492,29504,29508,29512,29513,29524,29532,29545,29559,29583,29654,29676,29682,29684,29695,29702,29707,29715,29726,29750,29761,29798,29815,29821,29822,29867,29878,29894,29895,29903,29909,29928,29943,29988,29990,30038,30054,30062,30077,30078,30083,30094,30110,30112,30114,30125,30134,30143,30153,30165,30176,30179,30180,30201,30226,30231,30250,30278,30298,30384,30386,30406,30407,30428,30443,30457,30523,30532,30538,30541,30543,30545,30557,30574,30577,30603,30633,30650,30653,30668,30687,30698,30701,30716,30717,30723,30724,30725,30727,30734,30742,30750,30757,30758,30769,30773,30785,30787,30792,30802,30819,30829,30854,30860,30865,30866,30869,30907,30910,30912,30922,30930,30968,30987,30990,30991,30993,30999,31037,31040,31065,31086]]],["who",[46,44,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,2,2,2,4,[[979,1,1,2,3],[995,1,1,3,4]]],[42,1,1,4,5,[[1005,1,1,4,5]]],[43,10,10,5,15,[[1018,1,1,5,6],[1022,1,1,6,7],[1024,1,1,7,8],[1025,1,1,8,9],[1027,2,2,9,11],[1031,2,2,11,13],[1035,1,1,13,14],[1045,1,1,14,15]]],[44,7,6,15,21,[[1046,1,1,15,16],[1049,1,1,16,17],[1050,1,1,17,18],[1053,2,1,18,19],[1061,2,2,19,21]]],[45,5,4,21,25,[[1062,1,1,21,22],[1065,3,2,22,24],[1071,1,1,24,25]]],[46,2,2,25,27,[[1081,1,1,25,26],[1087,1,1,26,27]]],[48,1,1,27,28,[[1101,1,1,27,28]]],[50,3,3,28,31,[[1107,2,2,28,30],[1110,1,1,30,31]]],[51,1,1,31,32,[[1115,1,1,31,32]]],[52,1,1,32,33,[[1118,1,1,32,33]]],[53,1,1,33,34,[[1122,1,1,33,34]]],[57,4,4,34,38,[[1140,1,1,34,35],[1141,1,1,35,36],[1144,2,2,36,38]]],[58,1,1,38,39,[[1150,1,1,38,39]]],[60,1,1,39,40,[[1157,1,1,39,40]]],[65,4,4,40,44,[[1168,2,2,40,42],[1176,1,1,42,43],[1178,1,1,43,44]]]],[24186,24339,25197,25986,26459,26946,27095,27154,27203,27291,27297,27422,27423,27584,27906,27955,28038,28061,28150,28341,28343,28393,28438,28450,28580,28863,28972,29309,29472,29483,29551,29645,29681,29757,30093,30119,30214,30228,30364,30515,30730,30731,30867,30896]]],["whom",[253,237,[[39,16,15,0,15,[[929,1,1,0,1],[931,1,1,1,2],[935,1,1,2,3],[939,1,1,3,4],[940,2,1,4,5],[945,1,1,5,6],[946,1,1,6,7],[947,1,1,7,8],[948,1,1,8,9],[951,1,1,9,10],[952,2,2,10,12],[954,1,1,12,13],[955,2,2,13,15]]],[40,10,10,15,25,[[957,1,1,15,16],[959,1,1,16,17],[962,1,1,17,18],[966,1,1,18,19],[969,1,1,19,20],[970,2,2,20,22],[971,2,2,22,24],[972,1,1,24,25]]],[41,21,21,25,46,[[978,3,3,25,28],[979,4,4,28,32],[980,3,3,32,35],[981,1,1,35,36],[984,4,4,36,40],[985,2,2,40,42],[989,1,1,42,43],[991,1,1,43,44],[994,1,1,44,45],[995,1,1,45,46]]],[42,35,35,46,81,[[997,5,5,46,51],[999,2,2,51,53],[1000,1,1,53,54],[1001,3,3,54,57],[1002,1,1,57,58],[1003,2,2,58,60],[1004,1,1,60,61],[1006,2,2,61,63],[1007,1,1,63,64],[1008,2,2,64,66],[1009,4,4,66,70],[1010,2,2,70,72],[1011,1,1,72,73],[1013,3,3,73,76],[1015,2,2,76,78],[1016,1,1,78,79],[1017,2,2,79,81]]],[43,56,55,81,136,[[1018,2,2,81,83],[1019,1,1,83,84],[1020,4,4,84,88],[1021,4,3,88,91],[1022,4,4,91,95],[1023,1,1,95,96],[1024,5,5,96,101],[1025,1,1,101,102],[1026,1,1,102,103],[1027,2,2,103,105],[1030,2,2,105,107],[1031,1,1,107,108],[1032,2,2,108,110],[1034,2,2,110,112],[1036,3,3,112,115],[1037,1,1,115,116],[1038,2,2,116,118],[1039,2,2,118,120],[1041,2,2,120,122],[1042,6,6,122,128],[1043,3,3,128,131],[1044,1,1,131,132],[1045,4,4,132,136]]],[44,25,20,136,156,[[1046,3,3,136,139],[1049,4,4,139,143],[1050,2,2,143,145],[1051,2,1,145,146],[1053,4,2,146,148],[1054,5,4,148,152],[1055,2,1,152,153],[1059,1,1,153,154],[1060,1,1,154,155],[1061,1,1,155,156]]],[45,9,8,156,164,[[1062,1,1,156,157],[1064,1,1,157,158],[1068,1,1,158,159],[1069,3,2,159,161],[1071,1,1,161,162],[1076,2,2,162,164]]],[46,9,8,164,172,[[1078,1,1,164,165],[1079,3,2,165,167],[1081,1,1,167,168],[1085,1,1,168,169],[1087,1,1,169,170],[1088,1,1,170,171],[1089,1,1,171,172]]],[47,5,5,172,177,[[1091,1,1,172,173],[1092,1,1,173,174],[1093,1,1,174,175],[1094,1,1,175,176],[1096,1,1,176,177]]],[48,10,9,177,186,[[1097,4,3,177,180],[1098,3,3,180,183],[1099,2,2,183,185],[1100,1,1,185,186]]],[49,3,3,186,189,[[1104,1,1,186,187],[1105,2,2,187,189]]],[50,5,5,189,194,[[1107,2,2,189,191],[1108,2,2,191,193],[1110,1,1,193,194]]],[51,1,1,194,195,[[1111,1,1,194,195]]],[52,1,1,195,196,[[1117,1,1,195,196]]],[53,5,3,196,199,[[1119,3,2,196,198],[1124,2,1,198,199]]],[54,6,6,199,205,[[1125,3,3,199,202],[1126,1,1,202,203],[1128,2,2,203,205]]],[56,1,1,205,206,[[1132,1,1,205,206]]],[57,17,14,206,220,[[1133,2,1,206,207],[1134,2,1,207,208],[1136,1,1,208,209],[1137,1,1,209,210],[1138,1,1,210,211],[1139,3,3,211,214],[1143,2,2,214,216],[1144,3,2,216,218],[1145,2,2,218,220]]],[58,1,1,220,221,[[1146,1,1,220,221]]],[59,4,4,221,225,[[1151,2,2,221,223],[1152,1,1,223,224],[1154,1,1,224,225]]],[60,4,4,225,229,[[1156,1,1,225,226],[1157,3,3,226,229]]],[61,2,1,229,230,[[1162,2,1,229,230]]],[62,1,1,230,231,[[1164,1,1,230,231]]],[63,2,2,231,233,[[1165,2,2,231,233]]],[64,1,1,233,234,[[1166,1,1,233,234]]],[65,3,3,234,237,[[1173,1,1,234,235],[1183,1,1,235,236],[1186,1,1,236,237]]]],[23160,23209,23325,23469,23507,23705,23734,23773,23815,23953,24002,24003,24078,24138,24144,24226,24301,24423,24628,24737,24775,24825,24838,24866,24882,25159,25160,25180,25199,25222,25238,25242,25247,25280,25283,25310,25496,25501,25502,25507,25522,25534,25652,25746,25886,25960,26059,26070,26074,26089,26091,26146,26154,26174,26231,26248,26255,26286,26353,26356,26435,26516,26517,26526,26581,26589,26648,26653,26654,26656,26685,26694,26725,26762,26770,26783,26851,26862,26869,26905,26918,26925,26926,26985,26998,27009,27011,27012,27032,27044,27049,27084,27089,27091,27095,27104,27123,27151,27155,27161,27168,27186,27221,27280,27298,27384,27399,27437,27459,27466,27526,27554,27598,27601,27612,27651,27680,27693,27709,27712,27775,27777,27811,27812,27814,27815,27820,27822,27838,27840,27849,27878,27903,27907,27914,27922,27935,27936,27939,28028,28030,28039,28046,28049,28058,28084,28145,28146,28159,28160,28173,28179,28202,28295,28324,28340,28372,28415,28526,28533,28538,28578,28724,28733,28810,28827,28834,28863,28954,28989,28993,29039,29062,29086,29121,29150,29202,29213,29217,29219,29232,29250,29251,29263,29266,29288,29406,29429,29439,29479,29492,29497,29505,29552,29570,29669,29711,29716,29804,29812,29821,29824,29844,29885,29888,29948,29965,29987,30027,30041,30051,30066,30068,30077,30190,30210,30218,30219,30262,30264,30283,30382,30386,30403,30457,30496,30502,30517,30519,30623,30646,30659,30664,30685,30812,30977,31046]]],["whose",[44,43,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,5,5,2,7,[[973,1,1,2,3],[974,1,1,3,4],[975,1,1,4,5],[985,1,1,5,6],[996,1,1,6,7]]],[42,6,6,7,13,[[997,1,1,7,8],[1000,1,1,8,9],[1002,1,1,9,10],[1006,1,1,10,11],[1007,1,1,11,12],[1014,1,1,12,13]]],[43,8,8,13,21,[[1027,3,3,13,16],[1030,2,2,16,18],[1033,1,1,18,19],[1035,1,1,19,20],[1044,1,1,20,21]]],[44,4,3,21,24,[[1047,1,1,21,22],[1048,1,1,22,23],[1049,2,1,23,24]]],[46,2,2,24,26,[[1085,1,1,24,25],[1088,1,1,25,26]]],[47,1,1,26,27,[[1093,1,1,26,27]]],[49,2,2,27,29,[[1105,1,1,27,28],[1106,1,1,28,29]]],[52,1,1,29,30,[[1117,1,1,29,30]]],[57,6,6,30,36,[[1135,2,2,30,32],[1138,1,1,32,33],[1143,1,1,33,34],[1145,2,2,34,36]]],[59,2,2,36,38,[[1152,1,1,36,37],[1153,1,1,37,38]]],[60,1,1,38,39,[[1157,1,1,38,39]]],[65,4,4,39,43,[[1179,2,2,39,41],[1183,1,1,41,42],[1186,1,1,42,43]]]],[23203,24488,24920,24998,25041,25519,26009,26071,26202,26299,26493,26525,26811,27264,27265,27291,27368,27387,27497,27564,27878,27991,27999,28029,28950,29004,29103,29440,29445,29670,30001,30012,30052,30182,30248,30252,30423,30430,30503,30916,30920,30983,31049]]]]},{"k":"G3740","v":[["as",[3,3,[[45,2,2,0,2,[[1072,2,2,0,2]]],[65,1,1,2,3,[[1177,1,1,2,3]]]],[28625,28626,30878]]]]},{"k":"G3741","v":[["*",[7,7,[[43,3,3,0,3,[[1019,1,1,0,1],[1030,2,2,1,3]]],[53,1,1,3,4,[[1120,1,1,3,4]]],[55,1,1,4,5,[[1129,1,1,4,5]]],[57,1,1,5,6,[[1139,1,1,5,6]]],[65,1,1,6,7,[[1181,1,1,6,7]]]],[26976,27396,27397,29724,29900,30090,30950]]],["One",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1030,1,1,1,2]]]],[26976,27397]]],["holy",[4,4,[[53,1,1,0,1,[[1120,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]],[57,1,1,2,3,[[1139,1,1,2,3]]],[65,1,1,3,4,[[1181,1,1,3,4]]]],[29724,29900,30090,30950]]],["mercies",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27396]]]]},{"k":"G3742","v":[["holiness",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[24968,29296]]]]},{"k":"G3743","v":[["holily",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29580]]]]},{"k":"G3744","v":[["*",[6,5,[[42,1,1,0,1,[[1008,1,1,0,1]]],[46,3,2,1,3,[[1079,3,2,1,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]],[49,1,1,4,5,[[1106,1,1,4,5]]]],[26583,28838,28840,29306,29460]]],["odour",[2,2,[[42,1,1,0,1,[[1008,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]]],[26583,29460]]],["savour",[4,3,[[46,3,2,0,2,[[1079,3,2,0,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]]],[28838,28840,29306]]]]},{"k":"G3745","v":[["*",[115,104,[[39,16,15,0,15,[[935,1,1,0,1],[937,1,1,1,2],[941,2,2,2,4],[942,1,1,4,5],[945,1,1,5,6],[946,3,2,6,8],[949,1,1,8,9],[950,2,2,9,11],[951,1,1,11,12],[953,2,2,12,14],[956,1,1,14,15]]],[40,15,14,15,29,[[958,1,1,15,16],[959,3,3,16,19],[961,2,2,19,21],[962,4,3,21,24],[963,1,1,24,25],[965,1,1,25,26],[966,1,1,26,27],[967,1,1,27,28],[968,1,1,28,29]]],[41,10,9,29,38,[[976,2,2,29,31],[980,2,1,31,32],[981,2,2,32,34],[983,1,1,34,35],[984,1,1,35,36],[990,2,2,36,38]]],[42,13,13,38,51,[[997,1,1,38,39],[1000,2,2,39,41],[1002,1,1,41,42],[1006,2,2,42,44],[1007,1,1,44,45],[1011,1,1,45,46],[1012,3,3,46,49],[1013,1,1,49,50],[1017,1,1,50,51]]],[43,17,17,51,68,[[1019,1,1,51,52],[1020,2,2,52,54],[1021,4,4,54,58],[1022,2,2,58,60],[1026,3,3,60,63],[1027,1,1,63,64],[1030,1,1,64,65],[1031,1,1,65,66],[1032,2,2,66,68]]],[44,8,7,68,75,[[1047,2,1,68,69],[1048,1,1,69,70],[1051,1,1,70,71],[1052,1,1,71,72],[1053,1,1,72,73],[1056,1,1,73,74],[1060,1,1,74,75]]],[45,1,1,75,76,[[1068,1,1,75,76]]],[46,1,1,76,77,[[1078,1,1,76,77]]],[47,5,5,77,82,[[1093,2,2,77,79],[1094,1,1,79,80],[1096,2,2,80,82]]],[49,7,2,82,84,[[1105,1,1,82,83],[1106,6,1,83,84]]],[50,1,1,84,85,[[1108,1,1,84,85]]],[53,1,1,85,86,[[1124,1,1,85,86]]],[54,1,1,86,87,[[1125,1,1,86,87]]],[57,9,8,87,95,[[1133,1,1,87,88],[1134,1,1,88,89],[1135,1,1,89,90],[1139,1,1,90,91],[1140,1,1,91,92],[1141,1,1,92,93],[1142,3,2,93,95]]],[60,1,1,95,96,[[1156,1,1,95,96]]],[64,2,1,96,97,[[1166,2,1,96,97]]],[65,7,7,97,104,[[1167,1,1,97,98],[1168,1,1,98,99],[1169,1,1,99,100],[1179,1,1,100,101],[1184,2,2,101,103],[1187,1,1,103,104]]]],[23328,23394,23583,23585,23633,23712,23745,23752,23848,23881,23882,23921,24048,24053,24215,24279,24296,24298,24316,24383,24384,24418,24437,24463,24499,24551,24609,24664,24717,25086,25103,25284,25306,25311,25413,25462,25700,25710,26056,26185,26195,26268,26489,26522,26545,26713,26739,26741,26749,26766,26923,26988,27018,27020,27028,27045,27050,27056,27095,27096,27229,27232,27255,27304,27410,27441,27446,27454,27974,28010,28071,28092,28130,28222,28307,28526,28820,29112,29129,29132,29200,29204,29436,29450,29495,29789,29827,29967,29992,29998,30084,30098,30132,30158,30170,30492,30682,30699,30741,30765,30923,31000,31010,31069]]],["+",[29,27,[[39,9,8,0,8,[[935,1,1,0,1],[937,1,1,1,2],[946,2,1,2,3],[949,1,1,3,4],[950,1,1,4,5],[951,1,1,5,6],[953,2,2,6,8]]],[40,4,4,8,12,[[959,1,1,8,9],[962,2,2,9,11],[967,1,1,11,12]]],[41,1,1,12,13,[[981,1,1,12,13]]],[42,2,2,13,15,[[1012,2,2,13,15]]],[43,2,2,15,17,[[1019,1,1,15,16],[1020,1,1,16,17]]],[44,2,2,17,19,[[1052,1,1,17,18],[1056,1,1,18,19]]],[45,1,1,19,20,[[1068,1,1,19,20]]],[57,5,4,20,24,[[1135,1,1,20,21],[1139,1,1,21,22],[1141,1,1,22,23],[1142,2,1,23,24]]],[60,1,1,24,25,[[1156,1,1,24,25]]],[65,2,2,25,27,[[1169,1,1,25,26],[1179,1,1,26,27]]]],[23328,23394,23745,23848,23881,23921,24048,24053,24316,24418,24463,24664,25306,26739,26749,26988,27018,28092,28222,28526,29998,30084,30132,30170,30492,30765,30923]]],["all",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28820]]],["as",[29,28,[[39,2,2,0,2,[[942,1,1,0,1],[950,1,1,1,2]]],[40,2,2,2,4,[[958,1,1,2,3],[959,1,1,3,4]]],[41,1,1,4,5,[[983,1,1,4,5]]],[42,2,2,5,7,[[997,1,1,5,6],[1002,1,1,6,7]]],[43,7,7,7,14,[[1020,1,1,7,8],[1021,2,2,8,10],[1022,2,2,10,12],[1027,1,1,12,13],[1030,1,1,13,14]]],[44,4,3,14,17,[[1047,2,1,14,15],[1051,1,1,15,16],[1053,1,1,16,17]]],[47,4,4,17,21,[[1093,1,1,17,18],[1094,1,1,18,19],[1096,2,2,19,21]]],[49,1,1,21,22,[[1105,1,1,21,22]]],[50,1,1,22,23,[[1108,1,1,22,23]]],[57,2,2,23,25,[[1133,1,1,23,24],[1142,1,1,24,25]]],[65,3,3,25,28,[[1168,1,1,25,26],[1184,1,1,26,27],[1187,1,1,27,28]]]],[23633,23882,24279,24298,25413,26056,26268,27020,27028,27056,27095,27096,27304,27410,27974,28071,28130,29112,29132,29200,29204,29436,29495,29967,30158,30741,31010,31069]]],["ever",[2,2,[[42,2,2,0,2,[[1000,2,2,0,2]]]],[26185,26195]]],["he",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23752]]],["many",[2,2,[[47,1,1,0,1,[[1093,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[29129,29789]]],["more",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24499]]],["much",[3,3,[[43,1,1,0,1,[[1026,1,1,0,1]]],[57,1,1,1,2,[[1140,1,1,1,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[27229,30098,31000]]],["soever",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28010]]],["that",[13,13,[[39,2,2,0,2,[[941,2,2,0,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,3,3,3,6,[[981,1,1,3,4],[990,2,2,4,6]]],[42,3,3,6,9,[[1006,2,2,6,8],[1012,1,1,8,9]]],[43,3,3,9,12,[[1021,1,1,9,10],[1031,1,1,10,11],[1032,1,1,11,12]]],[65,1,1,12,13,[[1167,1,1,12,13]]]],[23583,23585,24717,25311,25700,25710,26489,26522,26741,27045,27441,27446,30699]]],["they",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25103]]],["things",[15,9,[[40,3,3,0,3,[[959,1,1,0,1],[961,2,2,1,3]]],[41,2,1,3,4,[[980,2,1,3,4]]],[43,1,1,4,5,[[1026,1,1,4,5]]],[44,1,1,5,6,[[1060,1,1,5,6]]],[49,6,1,6,7,[[1106,6,1,6,7]]],[54,1,1,7,8,[[1125,1,1,7,8]]],[64,1,1,8,9,[[1166,1,1,8,9]]]],[24296,24383,24384,25284,27232,28307,29450,29827,30682]]],["what",[4,3,[[40,2,1,0,1,[[962,2,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[24437,27454,30682]]],["whatsoever",[10,10,[[39,2,2,0,2,[[945,1,1,0,1],[956,1,1,1,2]]],[40,2,2,2,4,[[965,1,1,2,3],[966,1,1,3,4]]],[41,2,2,4,6,[[976,1,1,4,5],[984,1,1,5,6]]],[42,3,3,6,9,[[1007,1,1,6,7],[1011,1,1,7,8],[1013,1,1,8,9]]],[43,1,1,9,10,[[1021,1,1,9,10]]]],[23712,24215,24551,24609,25086,25462,26545,26713,26766,27050]]],["which",[2,2,[[42,1,1,0,1,[[1017,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[26923,27255]]],["who",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29992]]]]},{"k":"G3746","v":[["whomsoever",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24832]]]]},{"k":"G3747","v":[["*",[5,5,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]],[57,1,1,4,5,[[1143,1,1,4,5]]]],[23945,26030,26861,29334,30194]]],["bone",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26861]]],["bones",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[23945,26030,29334,30194]]]]},{"k":"G3748","v":[["*",[153,147,[[39,30,25,0,25,[[930,1,1,0,1],[933,2,2,1,3],[935,4,3,3,6],[938,2,2,6,8],[940,1,1,8,9],[941,3,2,9,11],[944,1,1,11,12],[946,2,2,12,14],[947,3,1,14,15],[948,1,1,15,16],[949,2,2,16,18],[950,1,1,18,19],[951,3,2,19,21],[953,2,2,21,23],[955,2,2,23,25]]],[40,5,5,25,30,[[960,1,1,25,26],[964,1,1,26,27],[965,1,1,27,28],[968,1,1,28,29],[971,1,1,29,30]]],[41,17,17,30,47,[[973,1,1,30,31],[974,2,2,31,33],[979,2,2,33,35],[980,4,4,35,39],[981,1,1,39,40],[982,2,2,40,42],[984,1,1,42,43],[986,1,1,43,44],[987,1,1,44,45],[995,2,2,45,47]]],[42,6,6,47,53,[[998,1,1,47,48],[1004,2,2,48,50],[1010,1,1,50,51],[1011,1,1,51,52],[1017,1,1,52,53]]],[43,23,23,53,76,[[1020,1,1,53,54],[1022,1,1,54,55],[1024,1,1,55,56],[1025,1,1,56,57],[1026,1,1,57,58],[1027,2,2,58,60],[1028,2,2,60,62],[1029,1,1,62,63],[1030,2,2,63,65],[1033,3,3,65,68],[1034,2,2,68,70],[1038,1,1,70,71],[1040,3,3,71,74],[1041,1,1,74,75],[1045,1,1,75,76]]],[44,10,10,76,86,[[1046,2,2,76,78],[1047,1,1,78,79],[1051,1,1,79,80],[1054,1,1,80,81],[1056,1,1,81,82],[1061,4,4,82,86]]],[45,5,5,86,91,[[1064,1,1,86,87],[1066,1,1,87,88],[1067,1,1,88,89],[1068,1,1,89,90],[1077,1,1,90,91]]],[46,3,3,91,94,[[1080,1,1,91,92],[1085,1,1,92,93],[1086,1,1,93,94]]],[47,7,6,94,100,[[1092,1,1,94,95],[1094,3,2,95,97],[1095,3,3,97,100]]],[48,4,4,100,104,[[1097,1,1,100,101],[1099,1,1,101,102],[1100,1,1,102,103],[1102,1,1,103,104]]],[49,4,4,104,108,[[1103,1,1,104,105],[1104,1,1,105,106],[1105,1,1,106,107],[1106,1,1,107,108]]],[50,6,6,108,114,[[1108,1,1,108,109],[1109,4,4,109,113],[1110,1,1,113,114]]],[52,1,1,114,115,[[1116,1,1,114,115]]],[53,3,3,115,118,[[1119,1,1,115,116],[1121,1,1,116,117],[1124,1,1,117,118]]],[54,3,3,118,121,[[1125,1,1,118,119],[1126,2,2,119,121]]],[55,1,1,121,122,[[1129,1,1,121,122]]],[57,10,10,122,132,[[1134,1,1,122,123],[1140,2,2,123,125],[1141,2,2,125,127],[1142,3,3,127,130],[1144,1,1,130,131],[1145,1,1,131,132]]],[58,2,2,132,134,[[1147,1,1,132,133],[1149,1,1,133,134]]],[59,1,1,134,135,[[1152,1,1,134,135]]],[60,1,1,135,136,[[1157,1,1,135,136]]],[61,1,1,136,137,[[1159,1,1,136,137]]],[65,10,10,137,147,[[1167,2,2,137,139],[1168,1,1,139,140],[1175,1,1,140,141],[1177,1,1,141,142],[1178,1,1,142,143],[1183,2,2,143,145],[1185,1,1,145,146],[1186,1,1,146,147]]]],[23175,23273,23275,23331,23340,23342,23449,23450,23539,23551,23591,23700,23731,23755,23774,23793,23859,23867,23874,23930,23945,24009,24011,24184,24191,24343,24534,24539,24691,24833,24913,24977,24983,25232,25234,25248,25260,25271,25288,25331,25398,25405,25460,25580,25595,25954,25990,26100,26406,26434,26681,26715,26923,27019,27075,27169,27191,27251,27300,27306,27327,27335,27347,27393,27405,27495,27499,27500,27533,27534,27668,27748,27755,27767,27770,27917,27955,27962,27977,28070,28159,28213,28340,28342,28343,28348,28427,28455,28487,28500,28778,28855,28942,28967,29085,29155,29157,29166,29172,29181,29229,29264,29291,29339,29389,29411,29428,29445,29517,29522,29531,29534,29540,29553,29658,29700,29746,29797,29814,29829,29845,29903,29980,30097,30098,30107,30114,30141,30144,30168,30217,30248,30303,30351,30410,30501,30542,30704,30709,30741,30844,30880,30904,30983,30987,31019,31042]]],["+",[12,12,[[39,3,3,0,3,[[935,1,1,0,1],[938,2,2,1,3]]],[41,1,1,3,4,[[982,1,1,3,4]]],[42,3,3,4,7,[[998,1,1,4,5],[1010,1,1,5,6],[1011,1,1,6,7]]],[43,1,1,7,8,[[1028,1,1,7,8]]],[45,1,1,8,9,[[1077,1,1,8,9]]],[47,1,1,9,10,[[1095,1,1,9,10]]],[50,2,2,10,12,[[1109,2,2,10,12]]]],[23340,23449,23450,25398,26100,26681,26715,27335,28778,29172,29534,29540]]],["Whereas",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30351]]],["Which",[3,3,[[44,1,1,0,1,[[1047,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[27977,29229,30114]]],["Who",[13,13,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,4,4,1,5,[[1024,1,1,1,2],[1025,1,1,2,3],[1040,1,1,3,4],[1045,1,1,4,5]]],[44,4,4,5,9,[[1046,2,2,5,7],[1054,1,1,7,8],[1061,1,1,8,9]]],[48,1,1,9,10,[[1100,1,1,9,10]]],[52,1,1,10,11,[[1116,1,1,10,11]]],[54,1,1,11,12,[[1126,1,1,11,12]]],[57,1,1,12,13,[[1140,1,1,12,13]]]],[25954,27169,27191,27767,27917,27955,27962,28159,28340,29291,29658,29845,30097]]],["Whosoever",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]]],[23731,24534]]],["and",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27251]]],["as",[2,2,[[40,1,1,0,1,[[960,1,1,0,1]]],[45,1,1,1,2,[[1066,1,1,1,2]]]],[24343,28455]]],["he",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23930]]],["that",[9,9,[[39,4,4,0,4,[[930,1,1,0,1],[946,1,1,1,2],[953,1,1,2,3],[955,1,1,3,4]]],[41,1,1,4,5,[[979,1,1,4,5]]],[42,1,1,5,6,[[1004,1,1,5,6]]],[44,1,1,6,7,[[1051,1,1,6,7]]],[65,2,2,7,9,[[1167,1,1,7,8],[1183,1,1,8,9]]]],[23175,23755,24011,24191,25234,26406,28070,30709,30983]]],["they",[4,4,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,3,3,1,4,[[1022,1,1,1,2],[1034,1,1,2,3],[1040,1,1,3,4]]]],[25260,27075,27534,27748]]],["things",[3,3,[[47,1,1,0,1,[[1094,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]]],[29155,29428,29517]]],["which",[76,74,[[39,15,13,0,13,[[935,3,3,0,3],[941,1,1,3,4],[944,1,1,4,5],[947,3,1,5,6],[948,1,1,6,7],[949,2,2,7,9],[950,1,1,9,10],[951,1,1,10,11],[953,1,1,11,12],[955,1,1,12,13]]],[40,2,2,13,15,[[965,1,1,13,14],[968,1,1,14,15]]],[41,12,12,15,27,[[973,1,1,15,16],[974,2,2,16,18],[979,1,1,18,19],[980,3,3,19,22],[981,1,1,22,23],[982,1,1,23,24],[984,1,1,24,25],[987,1,1,25,26],[995,1,1,26,27]]],[42,2,2,27,29,[[1004,1,1,27,28],[1017,1,1,28,29]]],[43,8,8,29,37,[[1020,1,1,29,30],[1027,1,1,30,31],[1028,1,1,31,32],[1029,1,1,32,33],[1033,3,3,33,36],[1040,1,1,36,37]]],[44,1,1,37,38,[[1061,1,1,37,38]]],[45,3,3,38,41,[[1064,1,1,38,39],[1067,1,1,39,40],[1068,1,1,40,41]]],[46,2,2,41,43,[[1080,1,1,41,42],[1086,1,1,42,43]]],[47,3,3,43,46,[[1094,2,2,43,45],[1095,1,1,45,46]]],[48,2,2,46,48,[[1099,1,1,46,47],[1102,1,1,47,48]]],[49,2,2,48,50,[[1103,1,1,48,49],[1106,1,1,49,50]]],[50,3,3,50,53,[[1109,2,2,50,52],[1110,1,1,52,53]]],[53,3,3,53,56,[[1119,1,1,53,54],[1121,1,1,54,55],[1124,1,1,55,56]]],[54,1,1,56,57,[[1125,1,1,56,57]]],[57,7,7,57,64,[[1134,1,1,57,58],[1140,1,1,58,59],[1141,1,1,59,60],[1142,3,3,60,63],[1144,1,1,63,64]]],[59,1,1,64,65,[[1152,1,1,64,65]]],[61,1,1,65,66,[[1159,1,1,65,66]]],[65,8,8,66,74,[[1167,1,1,66,67],[1168,1,1,67,68],[1175,1,1,68,69],[1177,1,1,69,70],[1178,1,1,70,71],[1183,1,1,71,72],[1185,1,1,72,73],[1186,1,1,73,74]]]],[23331,23340,23342,23591,23700,23774,23793,23859,23867,23874,23945,24009,24184,24539,24691,24913,24977,24983,25232,25248,25271,25288,25331,25405,25460,25595,25990,26434,26923,27019,27306,27327,27347,27495,27499,27500,27755,28348,28427,28487,28500,28855,28967,29155,29157,29181,29264,29339,29389,29445,29522,29531,29553,29700,29746,29797,29814,29980,30098,30107,30141,30144,30168,30217,30410,30542,30704,30741,30844,30880,30904,30987,31019,31042]]],["who",[17,17,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,6,6,1,7,[[1027,1,1,1,2],[1030,2,2,2,4],[1034,1,1,4,5],[1038,1,1,5,6],[1041,1,1,6,7]]],[44,3,3,7,10,[[1056,1,1,7,8],[1061,2,2,8,10]]],[46,1,1,10,11,[[1085,1,1,10,11]]],[47,1,1,11,12,[[1092,1,1,11,12]]],[49,1,1,12,13,[[1104,1,1,12,13]]],[54,1,1,13,14,[[1126,1,1,13,14]]],[55,1,1,14,15,[[1129,1,1,14,15]]],[57,1,1,15,16,[[1145,1,1,15,16]]],[60,1,1,16,17,[[1157,1,1,16,17]]]],[24833,27300,27393,27405,27533,27668,27770,28213,28342,28343,28942,29085,29411,29829,29903,30248,30501]]],["whosoever",[9,8,[[39,6,5,0,5,[[933,2,2,0,2],[940,1,1,2,3],[941,2,1,3,4],[951,1,1,4,5]]],[41,1,1,5,6,[[986,1,1,5,6]]],[47,1,1,6,7,[[1095,1,1,6,7]]],[58,1,1,7,8,[[1147,1,1,7,8]]]],[23273,23275,23539,23551,23930,25580,29166,30303]]]]},{"k":"G3749","v":[["*",[2,2,[[46,1,1,0,1,[[1081,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[28866,29847]]],["earth",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29847]]],["earthen",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28866]]]]},{"k":"G3750","v":[["smelling",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28651]]]]},{"k":"G3751","v":[["loins",[8,8,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[43,1,1,3,4,[[1019,1,1,3,4]]],[48,1,1,4,5,[[1102,1,1,4,5]]],[57,2,2,5,7,[[1139,2,2,5,7]]],[59,1,1,7,8,[[1151,1,1,7,8]]]],[23196,24221,25494,26979,29351,30069,30074,30387]]]]},{"k":"G3752","v":[["*",[124,120,[[39,20,20,0,20,[[933,1,1,0,1],[934,4,4,1,5],[937,1,1,5,6],[938,2,2,6,8],[940,1,1,8,9],[941,1,1,9,10],[943,1,1,10,11],[944,1,1,11,12],[947,1,1,12,13],[949,1,1,13,14],[951,1,1,14,15],[952,3,3,15,18],[953,1,1,18,19],[954,1,1,19,20]]],[40,20,20,20,40,[[958,1,1,20,21],[959,1,1,21,22],[960,5,5,22,27],[964,1,1,27,28],[965,1,1,28,29],[967,1,1,29,30],[968,2,2,30,32],[969,6,6,32,38],[970,2,2,38,40]]],[41,29,27,40,67,[[977,1,1,40,41],[978,3,2,41,43],[980,1,1,43,44],[981,1,1,44,45],[983,5,5,45,50],[984,3,3,50,53],[985,1,1,53,54],[986,5,4,54,58],[988,2,2,58,60],[989,1,1,60,61],[993,5,5,61,66],[995,1,1,66,67]]],[42,18,17,67,84,[[998,1,1,67,68],[1000,1,1,68,69],[1001,1,1,69,70],[1003,2,2,70,72],[1004,2,2,72,74],[1005,1,1,74,75],[1006,1,1,75,76],[1009,1,1,76,77],[1010,1,1,77,78],[1011,1,1,78,79],[1012,4,3,79,82],[1014,1,1,82,83],[1017,1,1,83,84]]],[43,2,2,84,86,[[1040,1,1,84,85],[1041,1,1,85,86]]],[44,2,2,86,88,[[1047,1,1,86,87],[1056,1,1,87,88]]],[45,12,11,88,99,[[1064,1,1,88,89],[1074,1,1,89,90],[1075,1,1,90,91],[1076,5,4,91,95],[1077,4,4,95,99]]],[46,3,3,99,102,[[1087,1,1,99,100],[1089,1,1,100,101],[1090,1,1,101,102]]],[50,2,2,102,104,[[1109,1,1,102,103],[1110,1,1,103,104]]],[51,1,1,104,105,[[1115,1,1,104,105]]],[52,1,1,105,106,[[1116,1,1,105,106]]],[53,1,1,106,107,[[1123,1,1,106,107]]],[55,1,1,107,108,[[1131,1,1,107,108]]],[57,1,1,108,109,[[1133,1,1,108,109]]],[58,1,1,109,110,[[1146,1,1,109,110]]],[61,2,2,110,112,[[1160,1,1,110,111],[1163,1,1,111,112]]],[65,8,8,112,120,[[1170,1,1,112,113],[1175,1,1,113,114],[1176,1,1,114,115],[1177,1,1,115,116],[1178,1,1,116,117],[1183,1,1,117,118],[1184,1,1,118,119],[1186,1,1,119,120]]]],[23245,23284,23287,23288,23298,23394,23436,23440,23532,23571,23635,23692,23790,23866,23933,23972,23989,23990,24039,24083,24280,24299,24338,24339,24352,24354,24355,24538,24547,24665,24696,24698,24721,24724,24728,24731,24745,24746,24761,24779,25142,25168,25172,25258,25327,25407,25426,25429,25439,25441,25470,25513,25514,25546,25561,25563,25565,25566,25624,25629,25661,25833,25835,25846,25856,25857,25977,26105,26181,26217,26355,26359,26409,26425,26445,26485,26649,26697,26725,26730,26739,26747,26805,26916,27769,27791,27976,28236,28414,28675,28704,28742,28745,28746,28772,28778,28779,28781,28788,28977,29032,29052,29521,29558,29624,29659,29774,29935,29969,30268,30578,30626,30777,30845,30868,30879,30895,30985,31002,31045]]],["+",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24547]]],["When",[20,20,[[39,5,5,0,5,[[940,1,1,0,1],[949,1,1,1,2],[952,2,2,2,4],[953,1,1,4,5]]],[40,1,1,5,6,[[969,1,1,5,6]]],[41,7,7,6,13,[[983,3,3,6,9],[984,1,1,9,10],[986,2,2,10,12],[993,1,1,12,13]]],[42,3,3,13,16,[[1003,1,1,13,14],[1004,2,2,14,16]]],[43,1,1,16,17,[[1041,1,1,16,17]]],[50,1,1,17,18,[[1109,1,1,17,18]]],[52,1,1,18,19,[[1116,1,1,18,19]]],[55,1,1,19,20,[[1131,1,1,19,20]]]],[23532,23866,23972,23989,24039,24745,25407,25426,25429,25513,25561,25565,25856,26359,26409,26425,27791,29521,29659,29935]]],["as",[3,3,[[42,2,2,0,2,[[1005,1,1,0,1],[1012,1,1,1,2]]],[65,1,1,2,3,[[1178,1,1,2,3]]]],[26445,26747,30895]]],["nothing",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26805]]],["that",[2,2,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[23692,24779]]],["when",[95,92,[[39,14,14,0,14,[[933,1,1,0,1],[934,4,4,1,5],[937,1,1,5,6],[938,2,2,6,8],[941,1,1,8,9],[943,1,1,9,10],[947,1,1,10,11],[951,1,1,11,12],[952,1,1,12,13],[954,1,1,13,14]]],[40,16,16,14,30,[[958,1,1,14,15],[959,1,1,15,16],[960,5,5,16,21],[964,1,1,21,22],[967,1,1,22,23],[968,2,2,23,25],[969,5,5,25,30]]],[41,22,20,30,50,[[977,1,1,30,31],[978,3,2,31,33],[980,1,1,33,34],[981,1,1,34,35],[983,2,2,35,37],[984,2,2,37,39],[985,1,1,39,40],[986,3,2,40,42],[988,2,2,42,44],[989,1,1,44,45],[993,4,4,45,49],[995,1,1,49,50]]],[42,12,12,50,62,[[998,1,1,50,51],[1000,1,1,51,52],[1001,1,1,52,53],[1003,1,1,53,54],[1006,1,1,54,55],[1009,1,1,55,56],[1010,1,1,56,57],[1011,1,1,57,58],[1012,3,3,58,61],[1017,1,1,61,62]]],[43,1,1,62,63,[[1040,1,1,62,63]]],[44,2,2,63,65,[[1047,1,1,63,64],[1056,1,1,64,65]]],[45,11,10,65,75,[[1074,1,1,65,66],[1075,1,1,66,67],[1076,5,4,67,71],[1077,4,4,71,75]]],[46,3,3,75,78,[[1087,1,1,75,76],[1089,1,1,76,77],[1090,1,1,77,78]]],[50,1,1,78,79,[[1110,1,1,78,79]]],[51,1,1,79,80,[[1115,1,1,79,80]]],[53,1,1,80,81,[[1123,1,1,80,81]]],[57,1,1,81,82,[[1133,1,1,81,82]]],[58,1,1,82,83,[[1146,1,1,82,83]]],[61,2,2,83,85,[[1160,1,1,83,84],[1163,1,1,84,85]]],[65,7,7,85,92,[[1170,1,1,85,86],[1175,1,1,86,87],[1176,1,1,87,88],[1177,1,1,88,89],[1183,1,1,89,90],[1184,1,1,90,91],[1186,1,1,91,92]]]],[23245,23284,23287,23288,23298,23394,23436,23440,23571,23635,23790,23933,23990,24083,24280,24299,24338,24339,24352,24354,24355,24538,24665,24696,24698,24721,24724,24728,24731,24746,25142,25168,25172,25258,25327,25439,25441,25470,25514,25546,25563,25566,25624,25629,25661,25833,25835,25846,25857,25977,26105,26181,26217,26355,26485,26649,26697,26725,26730,26739,26747,26916,27769,27976,28236,28675,28704,28742,28745,28746,28772,28778,28779,28781,28788,28977,29032,29052,29558,29624,29774,29969,30268,30578,30626,30777,30845,30868,30879,30985,31002,31045]]],["whensoever",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24761]]],["while",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28414]]]]},{"k":"G3753","v":[["*",[105,104,[[39,13,13,0,13,[[935,1,1,0,1],[937,1,1,1,2],[939,1,1,2,3],[940,1,1,3,4],[941,3,3,4,7],[945,1,1,7,8],[947,1,1,8,9],[949,2,2,9,11],[954,1,1,11,12],[955,1,1,12,13]]],[40,12,12,13,25,[[957,1,1,13,14],[958,1,1,14,15],[960,1,1,15,16],[962,1,1,16,17],[963,1,1,17,18],[964,2,2,18,20],[967,2,2,20,22],[970,1,1,22,23],[971,2,2,23,25]]],[41,11,11,25,36,[[974,3,3,25,28],[976,1,1,28,29],[978,1,1,29,30],[985,1,1,30,31],[987,1,1,31,32],[989,1,1,32,33],[994,2,2,33,35],[995,1,1,35,36]]],[42,23,23,36,59,[[997,1,1,36,37],[998,1,1,37,38],[1000,3,3,38,41],[1001,1,1,41,42],[1002,1,1,42,43],[1005,2,2,43,45],[1008,3,3,45,48],[1009,2,2,48,50],[1012,1,1,50,51],[1013,1,1,51,52],[1015,4,4,52,56],[1016,1,1,56,57],[1017,2,2,57,59]]],[43,10,10,59,69,[[1018,1,1,59,60],[1025,2,2,60,62],[1028,1,1,62,63],[1029,1,1,63,64],[1038,2,2,64,66],[1039,1,1,66,67],[1044,1,1,67,68],[1045,1,1,68,69]]],[44,4,4,69,73,[[1047,1,1,69,70],[1051,1,1,70,71],[1052,1,1,71,72],[1058,1,1,72,73]]],[45,2,1,73,74,[[1074,2,1,73,74]]],[47,6,6,74,80,[[1091,1,1,74,75],[1092,3,3,75,78],[1094,2,2,78,80]]],[49,1,1,80,81,[[1106,1,1,80,81]]],[50,1,1,81,82,[[1109,1,1,81,82]]],[51,1,1,82,83,[[1113,1,1,82,83]]],[52,1,1,83,84,[[1118,1,1,83,84]]],[54,1,1,84,85,[[1128,1,1,84,85]]],[55,1,1,85,86,[[1131,1,1,85,86]]],[57,2,2,86,88,[[1139,1,1,86,87],[1141,1,1,87,88]]],[59,1,1,88,89,[[1153,1,1,88,89]]],[64,1,1,89,90,[[1166,1,1,89,90]]],[65,14,14,90,104,[[1167,1,1,90,91],[1171,1,1,91,92],[1172,6,6,92,98],[1174,1,1,98,99],[1176,3,3,99,102],[1178,1,1,102,103],[1188,1,1,103,104]]]],[23344,23404,23460,23492,23565,23587,23592,23725,23763,23827,23860,24055,24160,24247,24285,24333,24428,24480,24519,24520,24641,24659,24766,24846,24867,24994,24995,25015,25088,25159,25553,25618,25673,25878,25899,25968,26063,26117,26177,26179,26201,26235,26281,26444,26454,26596,26597,26621,26642,26661,26751,26771,26831,26833,26848,26855,26891,26913,26916,26936,27188,27215,27309,27343,27669,27699,27724,27894,27915,27978,28088,28096,28277,28676,29072,29092,29093,29095,29134,29135,29457,29524,29594,29688,29873,29927,30074,30122,30444,30681,30714,30787,30794,30796,30798,30800,30802,30805,30828,30864,30865,30871,30904,31088]]],["Therefore",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26661]]],["When",[9,9,[[40,1,1,0,1,[[964,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[42,6,6,2,8,[[998,1,1,2,3],[1002,1,1,3,4],[1015,3,3,4,7],[1017,1,1,7,8]]],[45,1,1,8,9,[[1074,1,1,8,9]]]],[24519,25899,26117,26281,26831,26833,26855,26916,28676]]],["While",[1,1,[[42,1,1,0,1,[[1013,1,1,0,1]]]],[26771]]],["after",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,1,1,1,2,[[1009,1,1,1,2]]],[55,1,1,2,3,[[1131,1,1,2,3]]]],[24160,26642,29927]]],["as",[2,2,[[41,1,1,0,1,[[987,1,1,0,1]]],[65,1,1,1,2,[[1176,1,1,1,2]]]],[25618,30871]]],["that",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24428]]],["when",[87,87,[[39,12,12,0,12,[[935,1,1,0,1],[937,1,1,1,2],[939,1,1,2,3],[940,1,1,3,4],[941,3,3,4,7],[945,1,1,7,8],[947,1,1,8,9],[949,2,2,9,11],[954,1,1,11,12]]],[40,10,10,12,22,[[957,1,1,12,13],[958,1,1,13,14],[960,1,1,14,15],[963,1,1,15,16],[964,1,1,16,17],[967,2,2,17,19],[970,1,1,19,20],[971,2,2,20,22]]],[41,9,9,22,31,[[974,3,3,22,25],[976,1,1,25,26],[978,1,1,26,27],[985,1,1,27,28],[989,1,1,28,29],[994,1,1,29,30],[995,1,1,30,31]]],[42,14,14,31,45,[[997,1,1,31,32],[1000,3,3,32,35],[1001,1,1,35,36],[1005,2,2,36,38],[1008,3,3,38,41],[1012,1,1,41,42],[1015,1,1,42,43],[1016,1,1,43,44],[1017,1,1,44,45]]],[43,10,10,45,55,[[1018,1,1,45,46],[1025,2,2,46,48],[1028,1,1,48,49],[1029,1,1,49,50],[1038,2,2,50,52],[1039,1,1,52,53],[1044,1,1,53,54],[1045,1,1,54,55]]],[44,4,4,55,59,[[1047,1,1,55,56],[1051,1,1,56,57],[1052,1,1,57,58],[1058,1,1,58,59]]],[45,1,1,59,60,[[1074,1,1,59,60]]],[47,6,6,60,66,[[1091,1,1,60,61],[1092,3,3,61,64],[1094,2,2,64,66]]],[49,1,1,66,67,[[1106,1,1,66,67]]],[50,1,1,67,68,[[1109,1,1,67,68]]],[51,1,1,68,69,[[1113,1,1,68,69]]],[52,1,1,69,70,[[1118,1,1,69,70]]],[54,1,1,70,71,[[1128,1,1,70,71]]],[57,1,1,71,72,[[1139,1,1,71,72]]],[59,1,1,72,73,[[1153,1,1,72,73]]],[64,1,1,73,74,[[1166,1,1,73,74]]],[65,13,13,74,87,[[1167,1,1,74,75],[1171,1,1,75,76],[1172,6,6,76,82],[1174,1,1,82,83],[1176,2,2,83,85],[1178,1,1,85,86],[1188,1,1,86,87]]]],[23344,23404,23460,23492,23565,23587,23592,23725,23763,23827,23860,24055,24247,24285,24333,24480,24520,24641,24659,24766,24846,24867,24994,24995,25015,25088,25159,25553,25673,25878,25968,26063,26177,26179,26201,26235,26444,26454,26596,26597,26621,26751,26848,26891,26913,26936,27188,27215,27309,27343,27669,27699,27724,27894,27915,27978,28088,28096,28277,28676,29072,29092,29093,29095,29134,29135,29457,29524,29594,29688,29873,30074,30444,30681,30714,30787,30794,30796,30798,30800,30802,30805,30828,30864,30865,30904,31088]]],["while",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30122]]]]},{"k":"G3754","v":[["*",[1135,1052,[[39,121,119,0,119,[[930,3,3,0,3],[931,1,1,3,4],[932,1,1,4,5],[933,25,24,5,29],[934,6,6,29,35],[935,2,2,35,37],[936,2,2,37,39],[937,3,3,39,42],[938,1,1,42,43],[939,7,7,43,50],[940,5,5,50,55],[941,5,4,55,59],[942,1,1,59,60],[943,4,4,60,64],[944,8,8,64,72],[945,4,4,72,76],[946,3,3,76,79],[947,3,3,79,82],[948,5,5,82,87],[949,2,2,87,89],[950,2,2,89,91],[951,7,7,91,98],[952,6,6,98,104],[953,4,4,104,108],[954,5,5,108,113],[955,4,4,113,117],[956,2,2,117,119]]],[40,61,59,119,178,[[957,2,2,119,121],[958,4,4,121,125],[959,1,1,125,126],[960,3,3,126,129],[961,2,2,129,131],[962,7,6,131,137],[963,3,3,137,140],[964,5,5,140,145],[965,7,7,145,152],[966,2,2,152,154],[967,6,5,154,159],[968,8,8,159,167],[969,3,3,167,170],[970,2,2,170,172],[971,2,2,172,174],[972,4,4,174,178]]],[41,146,136,178,314,[[973,7,7,178,185],[974,4,3,185,188],[975,1,1,188,189],[976,6,6,189,195],[977,2,2,195,197],[978,9,7,197,204],[979,8,7,204,211],[980,6,6,211,217],[981,8,7,217,224],[982,9,7,224,231],[983,11,11,231,242],[984,10,10,242,252],[985,7,6,252,258],[986,4,4,258,262],[987,6,6,262,268],[988,6,5,268,273],[989,3,3,273,276],[990,5,5,276,281],[991,11,11,281,292],[992,3,3,292,295],[993,7,7,295,302],[994,4,4,302,306],[995,4,4,306,310],[996,5,4,310,314]]],[42,237,212,314,526,[[997,5,5,314,319],[998,4,4,319,323],[999,10,9,323,332],[1000,13,12,332,344],[1001,15,15,344,359],[1002,15,13,359,372],[1003,13,12,372,384],[1004,21,18,384,402],[1005,15,14,402,416],[1006,8,8,416,424],[1007,18,17,424,441],[1008,12,11,441,452],[1009,7,6,452,458],[1010,12,9,458,467],[1011,7,6,467,473],[1012,22,17,473,490],[1013,10,8,490,498],[1014,5,5,498,503],[1015,8,8,503,511],[1016,7,7,511,518],[1017,10,8,518,526]]],[43,105,99,526,625,[[1018,2,2,526,528],[1019,7,7,528,535],[1020,2,2,535,537],[1021,5,4,537,541],[1022,4,4,541,545],[1023,2,2,545,547],[1024,2,2,547,549],[1025,4,4,549,553],[1026,6,6,553,559],[1027,5,5,559,564],[1028,3,3,564,567],[1029,3,3,567,570],[1030,4,4,570,574],[1031,3,3,574,577],[1032,3,3,577,580],[1033,4,4,580,584],[1034,4,3,584,587],[1036,4,3,587,590],[1037,10,8,590,598],[1038,5,5,598,603],[1039,6,5,603,608],[1040,5,5,608,613],[1041,4,4,613,617],[1042,1,1,617,618],[1043,2,2,618,620],[1044,2,2,620,622],[1045,3,3,622,625]]],[44,52,51,625,676,[[1046,3,3,625,628],[1047,3,3,628,631],[1048,2,2,631,633],[1049,3,3,633,636],[1050,3,3,636,639],[1051,7,7,639,646],[1052,5,5,646,651],[1053,8,8,651,659],[1054,6,6,659,665],[1055,4,3,665,668],[1056,2,2,668,670],[1058,1,1,670,671],[1059,3,3,671,674],[1060,2,2,674,676]]],[45,59,52,676,728,[[1062,7,7,676,683],[1063,1,1,683,684],[1064,3,3,684,687],[1065,2,1,687,688],[1066,1,1,688,689],[1067,7,7,689,696],[1068,1,1,696,697],[1069,3,2,697,699],[1070,3,3,699,702],[1071,5,4,702,706],[1072,6,6,706,712],[1073,3,3,712,715],[1075,3,3,715,718],[1076,12,8,718,726],[1077,2,2,726,728]]],[46,49,46,728,774,[[1078,10,10,728,738],[1079,2,2,738,740],[1080,2,2,740,742],[1081,2,2,742,744],[1082,4,4,744,748],[1084,8,6,748,754],[1085,4,4,754,758],[1086,2,2,758,760],[1087,3,3,760,763],[1088,5,5,763,768],[1089,3,3,768,771],[1090,4,3,771,774]]],[47,24,23,774,797,[[1091,4,4,774,778],[1092,4,4,778,782],[1093,4,3,782,785],[1094,7,7,785,792],[1095,4,4,792,796],[1096,1,1,796,797]]],[48,13,13,797,810,[[1098,3,3,797,800],[1099,1,1,800,801],[1100,2,2,801,803],[1101,4,4,803,807],[1102,3,3,807,810]]],[49,21,20,810,830,[[1103,8,8,810,818],[1104,7,6,818,824],[1105,1,1,824,825],[1106,5,5,825,830]]],[50,6,6,830,836,[[1107,2,2,830,832],[1108,1,1,832,833],[1109,1,1,833,834],[1110,2,2,834,836]]],[51,13,13,836,849,[[1111,1,1,836,837],[1112,3,3,837,840],[1113,4,4,840,844],[1114,3,3,844,847],[1115,2,2,847,849]]],[52,11,11,849,860,[[1116,2,2,849,851],[1117,5,5,851,856],[1118,4,4,856,860]]],[53,12,11,860,871,[[1119,5,5,860,865],[1122,3,3,865,868],[1123,1,1,868,869],[1124,3,2,869,871]]],[54,7,7,871,878,[[1125,4,4,871,875],[1126,1,1,875,876],[1127,2,2,876,878]]],[55,1,1,878,879,[[1131,1,1,878,879]]],[56,4,4,879,883,[[1132,4,4,879,883]]],[57,16,15,883,898,[[1134,2,1,883,884],[1135,1,1,884,885],[1139,2,2,885,887],[1140,4,4,887,891],[1143,5,5,891,896],[1144,1,1,896,897],[1145,1,1,897,898]]],[58,15,15,898,913,[[1146,5,5,898,903],[1147,4,4,903,907],[1148,1,1,907,908],[1149,2,2,908,910],[1150,3,3,910,913]]],[59,16,16,913,929,[[1151,3,3,913,916],[1152,3,3,916,919],[1153,3,3,919,922],[1154,4,4,922,926],[1155,3,3,926,929]]],[60,5,5,929,934,[[1156,2,2,929,931],[1158,3,3,931,934]]],[61,73,59,934,993,[[1159,4,4,934,938],[1160,20,13,938,951],[1161,18,14,951,965],[1162,15,13,965,978],[1163,16,15,978,993]]],[62,2,2,993,995,[[1164,2,2,993,995]]],[63,1,1,995,996,[[1165,1,1,995,996]]],[64,4,3,996,999,[[1166,4,3,996,999]]],[65,61,53,999,1052,[[1168,6,6,999,1005],[1169,10,8,1005,1013],[1170,1,1,1013,1014],[1171,2,2,1014,1016],[1172,1,1,1016,1017],[1173,1,1,1017,1018],[1174,1,1,1018,1019],[1176,1,1,1019,1020],[1177,3,3,1020,1023],[1178,4,3,1023,1026],[1180,5,4,1026,1030],[1181,4,2,1030,1032],[1182,3,3,1032,1035],[1183,1,1,1035,1036],[1184,11,10,1036,1046],[1185,4,3,1046,1049],[1187,2,2,1049,1051],[1188,1,1,1051,1052]]]],[23185,23187,23191,23201,23221,23237,23238,23239,23240,23241,23242,23243,23244,23246,23251,23254,23255,23256,23257,23261,23262,23266,23267,23268,23269,23270,23272,23277,23279,23287,23289,23295,23308,23311,23314,23329,23330,23356,23372,23385,23407,23415,23451,23479,23480,23482,23483,23484,23485,23488,23494,23495,23525,23530,23531,23550,23552,23555,23556,23602,23645,23650,23656,23665,23679,23680,23683,23684,23689,23690,23693,23695,23710,23712,23713,23715,23737,23740,23746,23766,23785,23790,23799,23802,23807,23817,23822,23857,23871,23888,23906,23931,23932,23933,23943,23945,23947,23949,23989,23990,23999,24000,24001,24004,24016,24021,24032,24034,24056,24075,24088,24107,24108,24132,24147,24153,24192,24200,24202,24242,24249,24261,24268,24270,24276,24318,24352,24361,24364,24373,24393,24409,24421,24422,24424,24441,24462,24481,24482,24483,24502,24516,24517,24531,24533,24539,24549,24551,24563,24566,24576,24579,24630,24635,24643,24658,24663,24664,24672,24685,24687,24699,24701,24705,24707,24708,24716,24745,24746,24747,24781,24784,24836,24865,24877,24880,24884,24887,24915,24930,24938,24941,24942,24951,24961,24984,25003,25022,25033,25067,25069,25095,25099,25104,25106,25115,25131,25151,25165,25166,25167,25170,25171,25181,25199,25211,25217,25232,25234,25238,25242,25270,25275,25282,25287,25292,25298,25308,25309,25313,25320,25339,25350,25354,25374,25375,25376,25383,25384,25387,25403,25423,25436,25437,25443,25447,25448,25449,25451,25452,25453,25457,25474,25476,25483,25489,25491,25496,25498,25499,25503,25510,25520,25522,25532,25542,25549,25551,25564,25567,25570,25577,25594,25595,25597,25612,25615,25620,25623,25628,25635,25644,25645,25660,25661,25666,25696,25697,25699,25702,25725,25734,25735,25738,25742,25748,25752,25753,25757,25762,25771,25774,25798,25800,25816,25829,25831,25846,25848,25856,25857,25858,25880,25882,25901,25934,25942,25964,25966,25975,26012,26020,26030,26035,26059,26061,26074,26078,26094,26112,26113,26117,26120,26122,26127,26131,26138,26139,26141,26143,26148,26153,26157,26175,26176,26177,26178,26181,26183,26191,26198,26200,26203,26209,26216,26225,26226,26228,26234,26235,26237,26238,26240,26242,26246,26248,26249,26252,26255,26259,26262,26272,26279,26281,26283,26293,26295,26298,26303,26318,26322,26326,26329,26335,26336,26350,26351,26354,26357,26358,26363,26367,26370,26380,26395,26397,26398,26401,26403,26405,26408,26409,26410,26418,26424,26425,26426,26428,26429,26433,26435,26436,26448,26456,26457,26458,26459,26460,26462,26464,26465,26469,26470,26471,26472,26475,26485,26486,26488,26494,26498,26514,26517,26519,26529,26532,26533,26536,26538,26543,26545,26547,26550,26554,26563,26564,26565,26570,26573,26574,26579,26586,26589,26591,26592,26596,26598,26599,26614,26619,26629,26630,26631,26633,26649,26651,26659,26665,26678,26679,26680,26685,26687,26688,26690,26696,26699,26704,26714,26717,26718,26720,26726,26729,26730,26732,26735,26736,26737,26740,26741,26742,26743,26745,26746,26747,26752,26753,26756,26758,26766,26767,26768,26773,26780,26782,26783,26784,26787,26793,26799,26803,26822,26829,26832,26835,26845,26846,26853,26860,26867,26876,26880,26881,26882,26885,26896,26898,26902,26905,26910,26913,26914,26915,26921,26922,26928,26940,26955,26974,26976,26978,26979,26980,26985,27006,27013,27032,27035,27038,27043,27063,27068,27097,27100,27102,27115,27122,27141,27190,27194,27196,27209,27231,27236,27238,27242,27243,27254,27273,27293,27297,27301,27304,27308,27315,27331,27340,27346,27348,27395,27396,27400,27403,27423,27436,27441,27447,27449,27466,27486,27493,27502,27521,27526,27536,27541,27610,27611,27619,27649,27651,27652,27655,27657,27660,27661,27664,27685,27686,27688,27693,27695,27706,27719,27723,27725,27733,27739,27740,27756,27761,27768,27780,27783,27790,27795,27812,27828,27850,27865,27880,27900,27921,27927,27938,27943,27962,27964,27965,27966,27993,28010,28031,28043,28045,28050,28052,28055,28071,28074,28076,28077,28083,28084,28085,28092,28105,28107,28109,28112,28132,28134,28137,28138,28143,28144,28145,28154,28157,28161,28162,28183,28185,28187,28190,28193,28197,28234,28245,28277,28291,28294,28303,28317,28332,28368,28374,28375,28377,28378,28388,28389,28408,28423,28426,28430,28442,28460,28469,28470,28474,28476,28482,28483,28486,28513,28528,28531,28550,28553,28564,28568,28584,28586,28587,28602,28603,28614,28615,28617,28623,28636,28637,28650,28701,28703,28715,28721,28722,28723,28730,28733,28745,28768,28776,28791,28793,28805,28807,28808,28810,28812,28813,28814,28818,28823,28824,28827,28839,28844,28846,28865,28873,28878,28883,28891,28896,28919,28924,28925,28929,28930,28932,28934,28935,28941,28949,28958,28968,28978,28981,28982,28996,28999,29000,29010,29020,29026,29035,29041,29045,29048,29049,29063,29070,29077,29080,29088,29092,29095,29097,29109,29110,29113,29137,29143,29144,29146,29151,29153,29158,29164,29165,29172,29183,29196,29240,29241,29247,29254,29281,29297,29309,29320,29327,29334,29345,29346,29349,29367,29373,29378,29380,29381,29386,29388,29390,29402,29407,29413,29415,29417,29421,29433,29452,29453,29457,29458,29459,29481,29484,29503,29541,29543,29555,29565,29571,29583,29584,29593,29594,29596,29598,29617,29618,29619,29623,29630,29652,29659,29663,29664,29665,29666,29674,29682,29685,29687,29688,29704,29705,29708,29709,29711,29748,29751,29757,29775,29790,29795,29814,29821,29824,29825,29850,29854,29868,29934,29945,29957,29959,29960,29983,30014,30072,30078,30101,30102,30103,30104,30178,30185,30186,30190,30191,30229,30259,30269,30273,30276,30278,30289,30312,30313,30315,30317,30320,30341,30342,30362,30365,30374,30386,30390,30392,30402,30414,30420,30433,30436,30442,30447,30454,30460,30463,30470,30472,30473,30493,30499,30525,30527,30530,30545,30546,30548,30550,30553,30555,30558,30561,30562,30563,30564,30566,30568,30569,30571,30572,30579,30580,30581,30584,30587,30588,30590,30591,30593,30594,30595,30598,30599,30601,30603,30604,30606,30607,30610,30611,30612,30613,30616,30617,30618,30620,30621,30622,30625,30626,30628,30629,30630,30631,30633,30634,30635,30637,30638,30639,30642,30643,30644,30649,30652,30670,30677,30683,30690,30719,30721,30723,30731,30737,30740,30747,30750,30754,30755,30756,30761,30762,30763,30779,30783,30788,30810,30827,30838,30867,30874,30882,30889,30901,30903,30904,30933,30934,30941,30944,30947,30950,30959,30960,30975,30989,30996,30998,31000,31001,31003,31004,31010,31012,31013,31016,31019,31023,31024,31057,31058,31090]]],["+",[18,18,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]],[42,4,4,3,7,[[998,1,1,3,4],[1000,1,1,4,5],[1001,1,1,5,6],[1006,1,1,6,7]]],[43,2,2,7,9,[[1022,1,1,7,8],[1041,1,1,8,9]]],[44,3,3,9,12,[[1052,1,1,9,10],[1054,1,1,10,11],[1059,1,1,11,12]]],[45,2,2,12,14,[[1071,1,1,12,13],[1076,1,1,13,14]]],[46,2,2,14,16,[[1078,1,1,14,15],[1088,1,1,15,16]]],[47,1,1,16,17,[[1091,1,1,16,17]]],[53,1,1,17,18,[[1124,1,1,17,18]]]],[24088,24483,25858,26120,26177,26234,26488,27063,27790,28112,28161,28291,28586,28745,28818,28999,29077,29795]]],["-",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27395]]],["Because",[19,19,[[39,3,3,0,3,[[935,1,1,0,1],[941,1,1,1,2],[948,1,1,2,3]]],[40,2,2,3,5,[[959,1,1,3,4],[963,1,1,4,5]]],[41,1,1,5,6,[[991,1,1,5,6]]],[42,4,4,6,10,[[997,1,1,6,7],[1008,1,1,7,8],[1012,1,1,8,9],[1016,1,1,9,10]]],[43,1,1,10,11,[[1019,1,1,10,11]]],[44,2,2,11,13,[[1053,1,1,11,12],[1054,1,1,12,13]]],[45,2,2,13,15,[[1062,1,1,13,14],[1073,1,1,14,15]]],[49,1,1,15,16,[[1104,1,1,15,16]]],[61,1,1,16,17,[[1161,1,1,16,17]]],[65,2,2,17,19,[[1169,2,2,17,19]]]],[23330,23550,23799,24318,24482,25762,26094,26591,26743,26880,26976,28137,28187,28388,28650,29421,30591,30756,30763]]],["For",[68,68,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,12,12,1,13,[[973,3,3,1,4],[974,2,2,4,6],[980,1,1,6,7],[986,1,1,7,8],[987,1,1,8,9],[991,1,1,9,10],[993,1,1,10,11],[995,2,2,11,13]]],[42,4,4,13,17,[[997,1,1,13,14],[1002,1,1,14,15],[1008,1,1,15,16],[1013,1,1,16,17]]],[43,4,4,17,21,[[1018,2,2,17,19],[1028,1,1,19,20],[1039,1,1,20,21]]],[44,2,2,21,23,[[1053,1,1,21,22],[1056,1,1,22,23]]],[45,1,1,23,24,[[1071,1,1,23,24]]],[46,9,9,24,33,[[1078,1,1,24,25],[1079,1,1,25,26],[1081,1,1,26,27],[1084,2,2,27,29],[1085,2,2,29,31],[1086,1,1,31,32],[1087,1,1,32,33]]],[47,1,1,33,34,[[1096,1,1,33,34]]],[48,4,4,34,38,[[1098,1,1,34,35],[1101,2,2,35,37],[1102,1,1,37,38]]],[49,2,2,38,40,[[1103,1,1,38,39],[1106,1,1,39,40]]],[50,3,3,40,43,[[1107,2,2,40,42],[1108,1,1,42,43]]],[51,4,4,43,47,[[1111,1,1,43,44],[1113,1,1,44,45],[1114,1,1,45,46],[1115,1,1,46,47]]],[53,1,1,47,48,[[1122,1,1,47,48]]],[57,2,2,48,50,[[1140,2,2,48,50]]],[58,1,1,50,51,[[1146,1,1,50,51]]],[59,4,4,51,55,[[1152,1,1,51,52],[1153,2,2,52,54],[1154,1,1,54,55]]],[61,5,5,55,60,[[1160,1,1,55,56],[1161,2,2,56,58],[1163,2,2,58,60]]],[62,1,1,60,61,[[1164,1,1,60,61]]],[65,7,7,61,68,[[1172,1,1,61,62],[1173,1,1,62,63],[1182,1,1,63,64],[1184,3,3,64,67],[1185,1,1,67,68]]]],[23295,24930,24941,24942,24984,25003,25287,25564,25612,25774,25848,25964,25966,26061,26295,26629,26767,26928,26940,27331,27719,28145,28245,28584,28805,28839,28865,28924,28930,28935,28949,28968,28981,29196,29247,29327,29334,29349,29390,29458,29481,29484,29503,29565,29598,29619,29630,29751,30102,30104,30289,30414,30436,30442,30463,30566,30590,30599,30628,30631,30652,30810,30827,30960,30996,30998,31010,31019]]],["I",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26436]]],["It",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27812]]],["That",[49,47,[[39,18,18,0,18,[[933,4,4,0,4],[934,1,1,4,5],[936,1,1,5,6],[939,1,1,6,7],[940,2,2,7,9],[941,1,1,9,10],[944,1,1,10,11],[945,1,1,11,12],[946,2,2,12,14],[947,2,2,14,16],[949,1,1,16,17],[952,1,1,17,18]]],[40,8,7,18,25,[[962,3,2,18,20],[965,2,2,20,22],[967,1,1,22,23],[968,1,1,23,24],[970,1,1,24,25]]],[41,9,8,25,33,[[975,1,1,25,26],[976,1,1,26,27],[978,1,1,27,28],[979,3,2,28,30],[986,1,1,30,31],[991,2,2,31,33]]],[42,3,3,33,36,[[1002,1,1,33,34],[1003,1,1,34,35],[1012,1,1,35,36]]],[43,2,2,36,38,[[1024,1,1,36,37],[1032,1,1,37,38]]],[44,4,4,38,42,[[1054,2,2,38,40],[1055,2,2,40,42]]],[45,2,2,42,44,[[1062,1,1,42,43],[1072,1,1,43,44]]],[47,1,1,44,45,[[1091,1,1,44,45]]],[48,1,1,45,46,[[1098,1,1,45,46]]],[57,1,1,46,47,[[1143,1,1,46,47]]]],[23254,23256,23262,23266,23311,23356,23483,23495,23525,23556,23690,23712,23737,23746,23785,23790,23857,24004,24421,24422,24539,24551,24663,24716,24784,25033,25067,25151,25199,25211,25577,25738,25757,26293,26370,26746,27122,27447,28157,28185,28193,28197,28368,28623,29080,29241,30190]]],["The",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26235]]],["We",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26131]]],["Why",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24566]]],["a",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26262]]],["because",[161,155,[[39,13,13,0,13,[[930,1,1,0,1],[933,1,1,1,2],[937,1,1,2,3],[939,2,2,3,5],[940,1,1,5,6],[941,1,1,6,7],[942,1,1,7,8],[943,1,1,8,9],[944,2,2,9,11],[948,1,1,11,12],[951,1,1,12,13]]],[40,10,10,13,23,[[957,1,1,13,14],[960,1,1,14,15],[962,1,1,15,16],[964,3,3,16,19],[965,2,2,19,21],[967,1,1,21,22],[972,1,1,22,23]]],[41,14,14,23,37,[[980,1,1,23,24],[981,2,2,24,26],[982,1,1,26,27],[983,1,1,27,28],[984,1,1,28,29],[985,2,2,29,31],[987,1,1,31,32],[988,1,1,32,33],[989,1,1,33,34],[991,3,3,34,37]]],[42,53,52,37,89,[[999,2,2,37,39],[1001,4,4,39,43],[1002,4,3,43,46],[1003,6,6,46,52],[1004,6,6,52,58],[1005,2,2,58,60],[1006,4,4,60,64],[1007,2,2,64,66],[1008,2,2,66,68],[1010,4,4,68,72],[1011,3,3,72,75],[1012,10,10,75,85],[1013,1,1,85,86],[1015,1,1,86,87],[1016,1,1,87,88],[1017,1,1,88,89]]],[43,6,6,89,95,[[1019,1,1,89,90],[1023,1,1,90,91],[1025,1,1,91,92],[1027,1,1,92,93],[1034,1,1,93,94],[1039,1,1,94,95]]],[44,6,6,95,101,[[1050,1,1,95,96],[1051,1,1,96,97],[1053,1,1,97,98],[1054,2,2,98,100],[1059,1,1,100,101]]],[45,4,4,101,105,[[1063,1,1,101,102],[1064,1,1,102,103],[1067,1,1,103,104],[1076,1,1,104,105]]],[46,3,3,105,108,[[1084,1,1,105,106],[1088,2,2,106,108]]],[47,2,2,108,110,[[1092,1,1,108,109],[1094,1,1,109,110]]],[48,1,1,110,111,[[1101,1,1,110,111]]],[49,1,1,111,112,[[1106,1,1,111,112]]],[51,1,1,112,113,[[1112,1,1,112,113]]],[52,3,3,113,116,[[1116,1,1,113,114],[1117,1,1,114,115],[1118,1,1,115,116]]],[53,5,4,116,120,[[1119,1,1,116,117],[1122,1,1,117,118],[1123,1,1,118,119],[1124,2,1,119,120]]],[56,1,1,120,121,[[1132,1,1,120,121]]],[57,1,1,121,122,[[1140,1,1,121,122]]],[58,1,1,122,123,[[1146,1,1,122,123]]],[59,2,2,123,125,[[1152,1,1,123,124],[1155,1,1,124,125]]],[61,24,20,125,145,[[1160,10,6,125,131],[1161,5,5,131,136],[1162,7,7,136,143],[1163,2,2,143,145]]],[65,10,10,145,155,[[1168,3,3,145,148],[1169,1,1,148,149],[1171,1,1,149,150],[1174,1,1,150,151],[1177,2,2,151,153],[1180,1,1,153,154],[1182,1,1,154,155]]]],[23187,23270,23415,23479,23484,23530,23552,23602,23665,23679,23680,23807,23947,24249,24352,24441,24502,24516,24517,24576,24579,24658,24887,25275,25350,25354,25383,25423,25476,25520,25532,25615,25628,25660,25734,25748,25752,26138,26143,26226,26228,26237,26240,26259,26283,26298,26329,26335,26350,26351,26358,26367,26403,26418,26424,26425,26426,26428,26456,26462,26494,26498,26514,26517,26532,26533,26586,26619,26680,26685,26687,26696,26718,26720,26726,26729,26730,26732,26735,26736,26737,26742,26747,26753,26758,26773,26832,26896,26915,26955,27102,27196,27304,27541,27733,28052,28083,28143,28162,28183,28303,28408,28423,28474,28733,28929,28996,29000,29092,29137,29320,29459,29583,29659,29674,29687,29709,29757,29775,29790,29945,30101,30276,30420,30473,30558,30561,30562,30563,30564,30571,30580,30588,30593,30595,30601,30604,30607,30612,30616,30620,30621,30622,30630,30634,30721,30731,30737,30762,30783,30838,30882,30889,30934,30959]]],["for",[194,185,[[39,36,34,0,34,[[933,13,12,0,12],[934,2,2,12,14],[935,1,1,14,15],[939,4,4,15,19],[940,1,1,19,20],[941,2,1,20,21],[943,1,1,21,22],[944,2,2,22,24],[945,1,1,24,25],[951,5,5,25,30],[952,2,2,30,32],[953,2,2,32,34]]],[40,6,6,34,40,[[957,1,1,34,35],[961,1,1,35,36],[962,1,1,36,37],[964,1,1,37,38],[968,1,1,38,39],[970,1,1,39,40]]],[41,53,51,40,91,[[973,2,2,40,42],[976,5,5,42,47],[977,1,1,47,48],[978,8,6,48,54],[979,2,2,54,56],[980,2,2,56,58],[981,2,2,58,60],[982,2,2,60,62],[983,9,9,62,71],[984,4,4,71,75],[985,3,3,75,78],[986,2,2,78,80],[987,3,3,80,83],[988,4,4,83,87],[990,1,1,87,88],[991,1,1,88,89],[996,2,2,89,91]]],[42,30,29,91,120,[[997,1,1,91,92],[1000,2,2,92,94],[1001,3,3,94,97],[1003,3,3,97,100],[1004,5,5,100,105],[1006,2,2,105,107],[1007,1,1,107,108],[1008,1,1,108,109],[1010,2,2,109,111],[1011,3,2,111,113],[1012,1,1,113,114],[1013,2,2,114,116],[1014,2,2,116,118],[1015,2,2,118,120]]],[43,10,10,120,130,[[1019,1,1,120,121],[1021,1,1,121,122],[1022,1,1,122,123],[1025,1,1,123,124],[1026,1,1,124,125],[1027,2,2,125,127],[1028,1,1,127,128],[1030,1,1,128,129],[1039,1,1,129,130]]],[45,3,3,130,133,[[1065,1,1,130,131],[1072,1,1,131,132],[1077,1,1,132,133]]],[47,4,4,133,137,[[1093,1,1,133,134],[1094,3,3,134,137]]],[48,1,1,137,138,[[1100,1,1,137,138]]],[51,1,1,138,139,[[1112,1,1,138,139]]],[52,2,2,139,141,[[1117,1,1,139,140],[1118,1,1,140,141]]],[54,1,1,141,142,[[1125,1,1,141,142]]],[57,1,1,142,143,[[1140,1,1,142,143]]],[58,2,2,143,145,[[1146,1,1,143,144],[1150,1,1,144,145]]],[59,6,6,145,151,[[1151,1,1,145,146],[1154,3,3,146,149],[1155,2,2,149,151]]],[61,6,6,151,157,[[1161,3,3,151,154],[1162,2,2,154,156],[1163,1,1,156,157]]],[64,1,1,157,158,[[1166,1,1,157,158]]],[65,31,27,158,185,[[1169,2,2,158,160],[1170,1,1,160,161],[1171,1,1,161,162],[1177,1,1,162,163],[1178,2,2,163,165],[1180,4,3,165,168],[1181,4,2,168,170],[1182,1,1,170,171],[1183,1,1,171,172],[1184,8,7,172,179],[1185,3,3,179,182],[1187,2,2,182,184],[1188,1,1,184,185]]]],[23237,23238,23239,23240,23241,23242,23243,23244,23246,23268,23269,23279,23287,23308,23329,23480,23482,23485,23488,23531,23555,23656,23689,23695,23715,23931,23932,23933,23943,23945,23999,24001,24016,24021,24242,24373,24424,24533,24705,24781,24938,24961,25069,25095,25099,25104,25106,25115,25165,25166,25167,25170,25171,25181,25234,25242,25270,25282,25313,25339,25376,25384,25436,25437,25447,25448,25449,25451,25452,25453,25457,25474,25483,25491,25499,25542,25549,25551,25567,25570,25594,25597,25620,25623,25628,25635,25644,25702,25735,26020,26030,26074,26178,26191,26238,26248,26249,26336,26357,26380,26395,26397,26401,26410,26425,26485,26486,26570,26598,26685,26696,26704,26714,26740,26768,26783,26787,26803,26845,26867,26974,27043,27097,27209,27231,27273,27297,27315,27403,27725,28442,28615,28793,29113,29143,29151,29158,29297,29584,29664,29685,29825,30103,30278,30362,30390,30447,30454,30460,30470,30472,30581,30587,30588,30610,30611,30633,30683,30750,30754,30779,30788,30874,30901,30903,30933,30941,30944,30947,30950,30975,30989,31000,31001,31003,31004,31012,31013,31016,31019,31023,31024,31057,31058,31090]]],["he",[3,3,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[42,1,1,2,3,[[997,1,1,2,3]]]],[23740,24462,26059]]],["him",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26882]]],["how",[14,14,[[39,2,2,0,2,[[940,1,1,0,1],[944,1,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[993,1,1,3,4]]],[42,3,3,4,7,[[1000,1,1,4,5],[1008,1,1,5,6],[1010,1,1,6,7]]],[43,2,2,7,9,[[1031,1,1,7,8],[1037,1,1,8,9]]],[47,1,1,9,10,[[1094,1,1,9,10]]],[56,1,1,10,11,[[1132,1,1,10,11]]],[58,2,2,11,13,[[1147,2,2,11,13]]],[65,1,1,13,14,[[1168,1,1,13,14]]]],[23494,23684,24951,25831,26157,26599,26696,27441,27661,29144,29957,30315,30317,30719]]],["it",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27340]]],["seeing",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25975]]],["shall",[2,2,[[42,1,1,0,1,[[1017,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]]],[26921,28813]]],["should",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30690]]],["that",[587,560,[[39,46,46,0,46,[[930,2,2,0,2],[931,1,1,2,3],[932,1,1,3,4],[933,7,7,4,11],[934,2,2,11,13],[936,1,1,13,14],[937,2,2,14,16],[938,1,1,16,17],[943,2,2,17,19],[944,2,2,19,21],[945,2,2,21,23],[947,1,1,23,24],[948,3,3,24,27],[949,1,1,27,28],[950,2,2,28,30],[951,1,1,30,31],[952,3,3,31,34],[953,2,2,34,36],[954,4,4,36,40],[955,4,4,40,44],[956,2,2,44,46]]],[40,32,32,46,78,[[958,4,4,46,50],[960,2,2,50,52],[961,1,1,52,53],[962,1,1,53,54],[963,1,1,54,55],[964,1,1,55,56],[965,2,2,56,58],[966,2,2,58,60],[967,4,4,60,64],[968,6,6,64,70],[969,3,3,70,73],[971,2,2,73,75],[972,3,3,75,78]]],[41,50,48,78,126,[[973,1,1,78,79],[974,2,1,79,80],[977,1,1,80,81],[979,3,3,81,84],[980,2,2,84,86],[981,4,3,86,89],[982,6,6,89,95],[983,1,1,95,96],[984,5,5,96,101],[985,2,2,101,103],[987,1,1,103,104],[988,1,1,104,105],[989,1,1,105,106],[990,4,4,106,110],[991,3,3,110,113],[992,3,3,113,116],[993,4,4,116,120],[994,2,2,120,122],[995,1,1,122,123],[996,3,3,123,126]]],[42,128,119,126,245,[[997,1,1,126,127],[998,3,3,127,130],[999,7,6,130,136],[1000,9,9,136,145],[1001,6,6,145,151],[1002,8,7,151,158],[1003,3,3,158,161],[1004,9,8,161,169],[1005,12,11,169,180],[1006,1,1,180,181],[1007,15,14,181,195],[1008,6,6,195,201],[1009,7,6,201,207],[1010,5,5,207,212],[1011,1,1,212,213],[1012,9,7,213,220],[1013,6,5,220,225],[1014,3,3,225,228],[1015,5,5,228,233],[1016,4,4,233,237],[1017,8,8,237,245]]],[43,75,71,245,316,[[1019,4,4,245,249],[1020,2,2,249,251],[1021,4,3,251,254],[1022,2,2,254,256],[1023,1,1,256,257],[1024,1,1,257,258],[1025,2,2,258,260],[1026,5,5,260,265],[1027,2,2,265,267],[1028,1,1,267,268],[1029,2,2,268,270],[1030,2,2,270,272],[1031,2,2,272,274],[1032,2,2,274,276],[1033,4,4,276,280],[1034,3,2,280,282],[1036,4,3,282,285],[1037,9,8,285,293],[1038,5,5,293,298],[1039,3,3,298,301],[1040,5,5,301,306],[1041,3,3,306,309],[1043,2,2,309,311],[1044,2,2,311,313],[1045,3,3,313,316]]],[44,35,35,316,351,[[1046,3,3,316,319],[1047,3,3,319,322],[1048,2,2,322,324],[1049,3,3,324,327],[1050,2,2,327,329],[1051,6,6,329,335],[1052,4,4,335,339],[1053,5,5,339,344],[1055,2,2,344,346],[1056,1,1,346,347],[1058,1,1,347,348],[1059,1,1,348,349],[1060,2,2,349,351]]],[45,45,42,351,393,[[1062,5,5,351,356],[1064,2,2,356,358],[1065,1,1,358,359],[1066,1,1,359,360],[1067,6,6,360,366],[1068,1,1,366,367],[1069,3,2,367,369],[1070,3,3,369,372],[1071,3,3,372,375],[1072,4,4,375,379],[1073,2,2,379,381],[1075,3,3,381,384],[1076,10,8,384,392],[1077,1,1,392,393]]],[46,32,30,393,423,[[1078,7,7,393,400],[1079,1,1,400,401],[1080,1,1,401,402],[1081,1,1,402,403],[1082,4,4,403,407],[1084,5,4,407,411],[1085,2,2,411,413],[1086,1,1,413,414],[1087,2,2,414,416],[1088,1,1,416,417],[1089,3,3,417,420],[1090,4,3,420,423]]],[47,14,14,423,437,[[1091,2,2,423,425],[1092,3,3,425,428],[1093,3,3,428,431],[1094,2,2,431,433],[1095,4,4,433,437]]],[48,6,6,437,443,[[1098,1,1,437,438],[1099,1,1,438,439],[1100,1,1,439,440],[1101,1,1,440,441],[1102,2,2,441,443]]],[49,16,15,443,458,[[1103,7,7,443,450],[1104,6,5,450,455],[1106,3,3,455,458]]],[50,3,3,458,461,[[1109,1,1,458,459],[1110,2,2,459,461]]],[51,7,7,461,468,[[1112,1,1,461,462],[1113,3,3,462,465],[1114,2,2,465,467],[1115,1,1,467,468]]],[52,6,6,468,474,[[1116,1,1,468,469],[1117,3,3,469,472],[1118,2,2,472,474]]],[53,5,5,474,479,[[1119,4,4,474,478],[1122,1,1,478,479]]],[54,6,6,479,485,[[1125,3,3,479,482],[1126,1,1,482,483],[1127,2,2,483,485]]],[55,1,1,485,486,[[1131,1,1,485,486]]],[56,2,2,486,488,[[1132,2,2,486,488]]],[57,10,9,488,497,[[1134,2,1,488,489],[1135,1,1,489,490],[1139,2,2,490,492],[1143,4,4,492,496],[1144,1,1,496,497]]],[58,9,9,497,506,[[1146,2,2,497,499],[1147,2,2,499,501],[1148,1,1,501,502],[1149,2,2,502,504],[1150,2,2,504,506]]],[59,4,4,506,510,[[1151,2,2,506,508],[1152,1,1,508,509],[1153,1,1,509,510]]],[60,5,5,510,515,[[1156,2,2,510,512],[1158,3,3,512,515]]],[61,36,32,515,547,[[1159,4,4,515,519],[1160,9,7,519,526],[1161,6,6,526,532],[1162,6,5,532,537],[1163,11,10,537,547]]],[62,1,1,547,548,[[1164,1,1,547,548]]],[63,1,1,548,549,[[1165,1,1,548,549]]],[64,2,2,549,551,[[1166,2,2,549,551]]],[65,10,9,551,560,[[1168,2,2,551,553],[1169,5,4,553,557],[1176,1,1,557,558],[1178,2,2,558,560]]]],[23185,23191,23201,23221,23251,23255,23257,23261,23267,23272,23277,23289,23314,23372,23385,23407,23451,23645,23650,23683,23693,23710,23713,23766,23802,23817,23822,23871,23888,23906,23949,23989,23990,24000,24032,24034,24056,24075,24107,24108,24132,24147,24153,24192,24200,24202,24261,24268,24270,24276,24361,24364,24393,24409,24481,24531,24549,24563,24630,24635,24643,24663,24664,24672,24685,24687,24699,24701,24707,24708,24745,24746,24747,24836,24865,24877,24880,24884,24915,25022,25131,25217,25232,25238,25292,25298,25308,25309,25320,25374,25375,25383,25384,25387,25403,25443,25489,25496,25498,25503,25510,25520,25522,25595,25645,25666,25696,25697,25699,25725,25742,25753,25771,25798,25800,25816,25829,25846,25856,25857,25901,25934,25942,26012,26030,26035,26078,26112,26113,26117,26122,26127,26139,26141,26148,26153,26157,26175,26176,26181,26183,26198,26200,26203,26209,26216,26225,26242,26246,26252,26255,26272,26279,26281,26303,26318,26322,26326,26335,26354,26363,26398,26405,26408,26409,26418,26429,26433,26435,26448,26457,26458,26460,26464,26465,26469,26470,26471,26472,26475,26519,26529,26536,26538,26543,26545,26547,26550,26554,26563,26564,26565,26573,26574,26579,26586,26589,26592,26596,26614,26630,26631,26633,26649,26651,26659,26665,26678,26679,26688,26690,26699,26717,26730,26741,26745,26747,26752,26753,26756,26766,26767,26780,26782,26784,26793,26799,26822,26829,26835,26846,26853,26860,26876,26881,26885,26898,26902,26905,26910,26913,26914,26915,26921,26922,26978,26979,26980,26985,27006,27013,27032,27035,27038,27068,27100,27115,27141,27190,27194,27236,27238,27242,27243,27254,27293,27301,27308,27346,27348,27396,27400,27423,27436,27449,27466,27486,27493,27502,27521,27526,27536,27610,27611,27619,27649,27651,27652,27655,27657,27660,27661,27664,27685,27686,27688,27693,27695,27706,27723,27733,27739,27740,27756,27761,27768,27780,27783,27795,27828,27850,27865,27880,27900,27921,27927,27938,27943,27962,27964,27965,27966,27993,28010,28031,28043,28045,28050,28055,28071,28074,28076,28077,28084,28085,28092,28105,28107,28109,28132,28134,28138,28144,28154,28190,28197,28234,28277,28294,28317,28332,28374,28375,28377,28378,28389,28426,28430,28442,28460,28469,28470,28476,28482,28483,28486,28513,28528,28531,28550,28553,28564,28568,28586,28587,28602,28603,28614,28617,28636,28637,28701,28703,28715,28721,28722,28723,28730,28733,28745,28768,28776,28791,28807,28808,28810,28812,28814,28823,28824,28827,28846,28873,28878,28883,28891,28896,28919,28924,28925,28932,28934,28941,28958,28978,28982,29020,29026,29035,29041,29045,29048,29049,29063,29070,29088,29095,29097,29109,29110,29113,29146,29153,29164,29165,29172,29183,29240,29254,29281,29309,29345,29346,29367,29373,29378,29380,29381,29386,29388,29402,29407,29413,29415,29417,29452,29453,29457,29541,29543,29555,29571,29593,29594,29596,29617,29618,29623,29652,29663,29665,29666,29682,29688,29704,29705,29708,29711,29748,29814,29821,29824,29850,29854,29868,29934,29959,29960,29983,30014,30072,30078,30178,30185,30186,30191,30229,30269,30273,30312,30313,30320,30341,30342,30365,30374,30386,30392,30402,30433,30493,30499,30525,30527,30530,30545,30546,30548,30550,30553,30555,30568,30569,30571,30572,30579,30581,30584,30593,30594,30598,30603,30606,30613,30616,30617,30618,30625,30626,30629,30635,30637,30638,30639,30642,30643,30644,30649,30670,30677,30690,30723,30740,30747,30755,30761,30763,30867,30903,30904]]],["though",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[29010,29433]]],["to",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28844]]],["us",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30599]]],["was",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26459]]],["we",[2,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[25661,30259]]],["will",[2,2,[[41,2,2,0,2,[[994,2,2,0,2]]]],[25880,25882]]]]},{"k":"G3755","v":[["+",[6,6,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,4,4,1,5,[[985,1,1,1,2],[987,1,1,2,3],[994,2,2,3,5]]],[42,1,1,5,6,[[1005,1,1,5,6]]]],[23259,25526,25596,25880,25882,26458]]]]},{"k":"G3756","v":[["*",[1544,1333,[[39,183,159,0,159,[[929,1,1,0,1],[930,2,1,1,2],[931,1,1,2,3],[932,2,2,3,5],[933,8,7,5,12],[934,8,7,12,19],[935,6,6,19,25],[936,2,2,25,27],[937,5,4,27,31],[938,10,7,31,38],[939,4,3,38,41],[940,15,13,41,54],[941,13,11,54,65],[942,3,3,65,68],[943,9,8,68,76],[944,10,9,76,85],[945,5,5,85,90],[946,4,4,90,94],[947,7,5,94,99],[948,6,6,99,105],[949,7,6,105,111],[950,8,7,111,118],[951,5,5,118,123],[952,10,9,123,132],[953,14,10,132,142],[954,12,11,142,153],[955,5,5,153,158],[956,1,1,158,159]]],[40,115,104,159,263,[[957,3,3,159,162],[958,7,6,162,168],[959,5,5,168,173],[960,11,11,173,184],[961,2,2,184,186],[962,9,8,186,194],[963,8,7,194,201],[964,9,7,201,208],[965,15,11,208,219],[966,5,5,219,224],[967,6,6,224,230],[968,11,9,230,239],[969,7,7,239,246],[970,12,12,246,258],[971,3,3,258,261],[972,2,2,261,263]]],[41,162,141,263,404,[[973,6,6,263,269],[974,5,5,269,274],[975,1,1,274,275],[976,5,5,275,280],[977,3,3,280,283],[978,9,9,283,292],[979,8,5,292,297],[980,12,9,297,306],[981,8,8,306,314],[982,4,3,314,317],[983,9,9,317,326],[984,16,13,326,339],[985,9,9,339,348],[986,11,8,348,356],[987,4,4,356,360],[988,7,6,360,366],[989,4,4,366,370],[990,6,4,370,374],[991,10,7,374,381],[992,6,6,381,387],[993,4,3,387,390],[994,5,5,390,395],[995,5,4,395,399],[996,5,5,399,404]]],[42,274,244,404,648,[[997,15,13,404,417],[998,5,5,417,422],[999,13,13,422,435],[1000,10,9,435,444],[1001,19,17,444,461],[1002,16,15,461,476],[1003,18,15,476,491],[1004,25,21,491,512],[1005,15,13,512,525],[1006,17,15,525,540],[1007,12,12,540,552],[1008,15,14,552,566],[1009,9,8,566,574],[1010,14,10,574,584],[1011,10,9,584,593],[1012,18,18,593,611],[1013,9,7,611,618],[1014,9,8,618,626],[1015,9,8,626,634],[1016,7,7,634,641],[1017,9,7,641,648]]],[43,107,101,648,749,[[1018,2,2,648,650],[1019,6,6,650,656],[1020,1,1,656,657],[1021,3,3,657,660],[1022,6,6,660,666],[1023,3,3,666,669],[1024,11,10,669,679],[1025,4,3,679,682],[1026,2,2,682,684],[1027,2,2,684,686],[1029,5,5,686,691],[1030,7,6,691,697],[1031,2,2,697,699],[1032,3,3,699,702],[1033,3,3,702,705],[1034,5,5,705,710],[1035,2,2,710,712],[1036,9,8,712,720],[1037,3,3,720,723],[1038,3,3,723,726],[1039,4,4,726,730],[1040,2,1,730,731],[1041,2,2,731,733],[1042,4,4,733,737],[1043,5,4,737,741],[1044,5,5,741,746],[1045,3,3,746,749]]],[44,121,98,749,847,[[1046,5,5,749,754],[1047,6,5,754,759],[1048,10,8,759,767],[1049,10,10,767,777],[1050,6,6,777,783],[1051,4,3,783,786],[1052,12,7,786,793],[1053,14,12,793,805],[1054,15,13,805,818],[1055,8,7,818,825],[1056,7,6,825,831],[1057,1,1,831,832],[1058,10,6,832,838],[1059,5,3,838,841],[1060,6,4,841,845],[1061,2,2,845,847]]],[45,149,108,847,955,[[1062,7,4,847,851],[1063,12,9,851,860],[1064,3,3,860,863],[1065,6,6,863,869],[1066,3,2,869,871],[1067,15,10,871,881],[1068,12,10,881,891],[1069,2,2,891,893],[1070,16,11,893,904],[1071,10,6,904,910],[1072,11,9,910,919],[1073,14,6,919,925],[1074,8,3,925,928],[1075,8,7,928,935],[1076,19,17,935,952],[1077,3,3,952,955]]],[46,96,77,955,1032,[[1078,10,7,955,962],[1079,5,5,962,967],[1080,5,4,967,971],[1081,7,5,971,976],[1082,5,4,976,980],[1083,1,1,980,981],[1084,6,6,981,987],[1085,10,8,987,995],[1086,1,1,995,996],[1087,10,8,996,1004],[1088,13,10,1004,1014],[1089,16,11,1014,1025],[1090,7,7,1025,1032]]],[47,36,30,1032,1062,[[1091,7,7,1032,1039],[1092,8,5,1039,1044],[1093,8,6,1044,1050],[1094,7,6,1050,1056],[1095,4,4,1056,1060],[1096,2,2,1060,1062]]],[48,11,11,1062,1073,[[1097,2,2,1062,1064],[1098,2,2,1064,1066],[1099,1,1,1066,1067],[1100,1,1,1067,1068],[1101,2,2,1068,1070],[1102,3,3,1070,1073]]],[49,13,13,1073,1086,[[1103,3,3,1073,1076],[1104,4,4,1076,1080],[1105,4,4,1080,1084],[1106,2,2,1084,1086]]],[50,8,8,1086,1094,[[1107,1,1,1086,1087],[1108,4,4,1087,1091],[1109,3,3,1091,1094]]],[51,16,16,1094,1110,[[1111,2,2,1094,1096],[1112,6,6,1096,1102],[1114,4,4,1102,1106],[1115,4,4,1106,1110]]],[52,8,7,1110,1117,[[1117,2,2,1110,1112],[1118,6,5,1112,1117]]],[53,9,9,1117,1126,[[1119,1,1,1117,1118],[1120,3,3,1118,1121],[1121,1,1,1121,1122],[1123,4,4,1122,1126]]],[54,12,12,1126,1138,[[1125,4,4,1126,1130],[1126,5,5,1130,1135],[1127,1,1,1135,1136],[1128,2,2,1136,1138]]],[55,1,1,1138,1139,[[1131,1,1,1138,1139]]],[57,61,58,1139,1197,[[1133,1,1,1139,1140],[1134,3,3,1140,1143],[1135,3,3,1143,1146],[1136,5,5,1146,1151],[1137,3,3,1151,1154],[1138,1,1,1154,1155],[1139,5,5,1155,1160],[1140,4,3,1160,1163],[1141,6,5,1163,1168],[1142,8,8,1168,1176],[1143,8,8,1176,1184],[1144,9,9,1184,1193],[1145,5,4,1193,1197]]],[58,27,24,1197,1221,[[1146,4,4,1197,1201],[1147,8,8,1201,1209],[1148,3,3,1209,1212],[1149,8,6,1212,1218],[1150,4,3,1218,1221]]],[59,12,10,1221,1231,[[1151,4,4,1221,1225],[1152,6,4,1225,1229],[1153,2,2,1229,1231]]],[60,12,11,1231,1242,[[1156,5,5,1231,1236],[1157,6,5,1236,1241],[1158,1,1,1241,1242]]],[61,47,35,1242,1277,[[1159,6,4,1242,1246],[1160,15,11,1246,1257],[1161,10,7,1257,1264],[1162,8,6,1264,1270],[1163,8,7,1270,1277]]],[62,5,5,1277,1282,[[1164,5,5,1277,1282]]],[63,4,4,1282,1286,[[1165,4,4,1282,1286]]],[64,2,2,1286,1288,[[1166,2,2,1286,1288]]],[65,53,45,1288,1333,[[1168,9,6,1288,1294],[1169,5,5,1294,1299],[1170,1,1,1299,1300],[1172,1,1,1300,1301],[1173,1,1,1301,1302],[1175,4,4,1302,1306],[1176,1,1,1306,1307],[1177,1,1,1307,1308],[1178,2,2,1308,1310],[1179,1,1,1310,1311],[1180,3,3,1311,1314],[1182,4,4,1314,1318],[1183,4,2,1318,1320],[1184,1,1,1320,1321],[1186,6,5,1321,1326],[1187,6,5,1326,1331],[1188,3,2,1331,1333]]]],[23169,23187,23203,23213,23216,23248,23251,23255,23261,23267,23270,23271,23283,23287,23302,23306,23308,23310,23312,23319,23334,23337,23338,23341,23345,23353,23365,23391,23392,23393,23403,23437,23441,23443,23446,23451,23454,23455,23470,23476,23479,23491,23492,23493,23494,23496,23508,23509,23513,23514,23520,23521,23528,23532,23544,23550,23551,23552,23556,23560,23568,23573,23594,23596,23597,23601,23613,23614,23635,23644,23646,23653,23656,23657,23659,23665,23675,23676,23679,23680,23683,23684,23689,23690,23695,23712,23716,23719,23721,23724,23741,23749,23757,23760,23766,23770,23772,23773,23780,23805,23807,23814,23815,23818,23820,23847,23851,23853,23855,23856,23858,23875,23880,23883,23888,23889,23903,23904,23921,23922,23931,23948,23955,23959,23978,23979,23986,23996,23999,24000,24001,24007,24011,24017,24020,24021,24032,24034,24050,24051,24052,24053,24065,24078,24093,24094,24096,24107,24109,24114,24124,24126,24128,24135,24142,24143,24163,24171,24201,24222,24237,24249,24277,24278,24279,24284,24286,24287,24312,24313,24314,24315,24317,24328,24330,24336,24340,24344,24345,24348,24350,24357,24361,24363,24383,24403,24410,24411,24412,24425,24426,24433,24443,24459,24466,24467,24468,24481,24482,24487,24490,24502,24514,24516,24517,24518,24521,24533,24541,24544,24556,24566,24568,24575,24576,24578,24582,24584,24586,24615,24626,24628,24631,24633,24653,24656,24657,24666,24671,24673,24687,24693,24695,24697,24699,24700,24704,24705,24707,24728,24731,24736,24737,24741,24750,24752,24761,24775,24783,24790,24791,24794,24803,24809,24810,24814,24822,24825,24830,24849,24857,24879,24887,24900,24913,24915,24926,24927,24930,24980,25010,25016,25022,25023,25041,25065,25067,25075,25085,25104,25138,25139,25143,25148,25150,25186,25187,25188,25189,25190,25192,25194,25201,25227,25239,25240,25241,25258,25259,25262,25264,25272,25288,25292,25296,25297,25314,25341,25350,25351,25354,25356,25357,25359,25387,25403,25405,25411,25412,25413,25434,25443,25445,25449,25451,25457,25461,25465,25469,25474,25476,25483,25486,25492,25498,25499,25505,25515,25516,25524,25525,25533,25534,25542,25543,25545,25551,25552,25558,25559,25567,25573,25579,25580,25583,25586,25592,25595,25601,25616,25622,25623,25631,25632,25633,25651,25660,25669,25671,25673,25692,25699,25701,25722,25734,25745,25752,25753,25754,25775,25779,25784,25800,25801,25805,25810,25817,25832,25835,25841,25890,25917,25921,25922,25924,25964,25969,25986,25988,25994,25997,26009,26015,26030,26049,26052,26054,26055,26057,26064,26065,26069,26070,26071,26075,26077,26091,26098,26104,26107,26119,26120,26123,26125,26128,26130,26131,26132,26137,26138,26140,26147,26148,26154,26156,26158,26165,26173,26174,26178,26188,26191,26194,26200,26217,26220,26223,26228,26229,26233,26234,26240,26241,26244,26248,26250,26251,26252,26253,26254,26257,26264,26274,26279,26281,26283,26289,26293,26295,26299,26303,26310,26315,26320,26321,26327,26329,26335,26338,26340,26344,26346,26347,26350,26353,26356,26362,26363,26364,26373,26380,26394,26395,26397,26402,26403,26404,26408,26410,26416,26418,26421,26422,26424,26425,26426,26427,26428,26429,26430,26431,26436,26448,26452,26456,26458,26461,26465,26467,26469,26470,26471,26472,26473,26481,26486,26487,26489,26491,26493,26494,26497,26502,26506,26507,26509,26514,26515,26516,26518,26527,26532,26533,26538,26544,26555,26560,26563,26572,26574,26575,26577,26585,26586,26588,26589,26596,26599,26610,26615,26617,26619,26622,26624,26627,26629,26637,26638,26640,26646,26648,26663,26666,26667,26673,26677,26678,26685,26686,26687,26690,26692,26695,26698,26703,26704,26714,26715,26718,26719,26720,26721,26723,26729,26730,26733,26735,26736,26738,26739,26742,26743,26744,26745,26747,26749,26750,26751,26752,26756,26758,26768,26770,26773,26774,26775,26779,26784,26794,26802,26810,26811,26813,26815,26816,26821,26831,26834,26835,26836,26837,26840,26858,26861,26869,26872,26874,26880,26881,26891,26897,26902,26903,26904,26906,26909,26916,26921,26928,26930,26956,26964,26973,26976,26980,26983,27002,27034,27038,27042,27063,27081,27085,27087,27098,27101,27103,27111,27114,27121,27127,27134,27141,27148,27155,27156,27164,27168,27169,27197,27208,27215,27225,27237,27293,27300,27346,27351,27355,27359,27360,27372,27387,27397,27399,27401,27408,27431,27442,27443,27444,27466,27490,27504,27520,27527,27535,27547,27550,27552,27572,27577,27596,27608,27609,27611,27612,27615,27617,27620,27638,27653,27657,27677,27702,27703,27713,27715,27722,27726,27739,27780,27787,27803,27807,27812,27822,27842,27848,27849,27852,27865,27869,27875,27886,27894,27901,27903,27918,27943,27946,27951,27958,27962,27973,27975,27983,27990,27991,28000,28001,28002,28003,28008,28009,28011,28013,28024,28026,28032,28034,28035,28037,28038,28041,28042,28045,28050,28052,28058,28060,28062,28063,28082,28083,28084,28097,28098,28106,28107,28109,28110,28111,28123,28124,28125,28128,28131,28134,28136,28139,28140,28141,28142,28148,28156,28161,28163,28165,28166,28171,28176,28179,28180,28181,28186,28187,28188,28190,28191,28199,28200,28202,28204,28207,28211,28213,28216,28227,28230,28234,28249,28267,28269,28270,28271,28275,28276,28286,28297,28303,28306,28321,28323,28324,28340,28354,28379,28380,28384,28389,28395,28396,28398,28400,28402,28403,28406,28407,28408,28411,28412,28426,28437,28440,28447,28448,28452,28453,28460,28464,28469,28470,28472,28476,28477,28479,28480,28482,28483,28486,28491,28493,28496,28497,28499,28502,28512,28515,28522,28523,28534,28535,28541,28542,28546,28547,28549,28552,28553,28555,28556,28564,28566,28568,28572,28580,28587,28588,28590,28606,28607,28608,28609,28616,28617,28620,28622,28631,28635,28648,28649,28650,28655,28658,28669,28670,28671,28680,28694,28695,28700,28701,28711,28712,28727,28728,28730,28731,28732,28733,28734,28735,28747,28750,28754,28755,28757,28764,28768,28769,28776,28783,28788,28798,28808,28812,28813,28817,28818,28819,28824,28828,28829,28835,28837,28841,28844,28846,28847,28854,28860,28864,28867,28868,28875,28880,28881,28884,28889,28910,28919,28923,28924,28925,28928,28930,28937,28940,28942,28944,28945,28947,28951,28953,28968,28974,28975,28979,28983,28985,28986,28987,28989,28993,28995,28998,28999,29000,29003,29004,29006,29018,29020,29023,29024,29025,29026,29027,29028,29035,29036,29038,29040,29042,29045,29046,29048,29049,29050,29051,29053,29058,29064,29067,29068,29073,29076,29077,29087,29095,29096,29097,29102,29112,29114,29118,29119,29122,29130,29139,29145,29148,29152,29158,29162,29170,29180,29183,29185,29192,29195,29222,29227,29237,29238,29256,29292,29308,29309,29344,29346,29349,29377,29383,29390,29397,29407,29412,29418,29422,29424,29433,29434,29453,29459,29474,29495,29502,29513,29517,29528,29540,29542,29565,29568,29571,29573,29574,29578,29583,29587,29610,29611,29612,29616,29622,29625,29626,29630,29666,29671,29680,29685,29687,29688,29692,29705,29723,29728,29730,29736,29771,29776,29781,29788,29816,29818,29821,29825,29832,29836,29840,29847,29851,29862,29873,29878,29928,29975,29982,29988,29993,30005,30011,30014,30016,30020,30022,30027,30029,30034,30035,30042,30054,30075,30080,30084,30085,30091,30094,30099,30101,30110,30112,30116,30127,30129,30134,30135,30138,30139,30141,30170,30171,30172,30173,30177,30188,30195,30203,30207,30210,30211,30219,30220,30221,30223,30229,30230,30232,30237,30238,30247,30250,30251,30255,30283,30286,30289,30291,30297,30298,30299,30300,30304,30314,30317,30318,30321,30329,30334,30338,30339,30340,30341,30348,30351,30360,30366,30371,30382,30386,30392,30397,30409,30417,30421,30422,30427,30445,30487,30491,30495,30499,30500,30503,30504,30505,30510,30511,30531,30545,30546,30548,30550,30552,30554,30557,30560,30561,30565,30566,30569,30571,30572,30577,30580,30584,30585,30588,30589,30591,30594,30606,30609,30611,30613,30621,30623,30627,30630,30634,30636,30640,30641,30642,30646,30650,30654,30655,30657,30662,30667,30669,30671,30681,30682,30719,30720,30726,30730,30738,30741,30748,30750,30754,30755,30763,30776,30803,30826,30844,30846,30860,30861,30867,30881,30899,30902,30916,30930,30931,30937,30963,30965,30972,30974,30983,30986,31000,31042,31043,31044,31049,31053,31054,31057,31075,31076,31078,31083,31085]]],["+",[208,203,[[39,25,25,0,25,[[933,1,1,0,1],[934,2,2,1,3],[935,1,1,3,4],[937,1,1,4,5],[940,1,1,5,6],[942,2,2,6,8],[943,1,1,8,9],[945,1,1,9,10],[947,3,3,10,13],[948,2,2,13,15],[949,1,1,15,16],[950,2,2,16,18],[953,2,2,18,20],[954,2,2,20,22],[955,3,3,22,25]]],[40,22,22,25,47,[[958,3,3,25,28],[959,5,5,28,33],[960,1,1,33,34],[961,1,1,34,35],[962,2,2,35,37],[963,1,1,37,38],[964,1,1,38,39],[967,1,1,39,40],[968,1,1,40,41],[969,2,2,41,43],[970,3,3,43,46],[971,1,1,46,47]]],[41,29,28,47,75,[[973,1,1,47,48],[978,3,3,48,51],[980,4,4,51,55],[982,1,1,55,56],[983,3,3,56,59],[984,2,1,59,60],[985,1,1,60,61],[986,6,6,61,67],[988,3,3,67,70],[990,2,2,70,72],[991,2,2,72,74],[992,1,1,74,75]]],[42,37,37,75,112,[[999,5,5,75,80],[1000,2,2,80,82],[1001,3,3,82,85],[1002,3,3,85,88],[1003,3,3,88,91],[1004,5,5,91,96],[1006,2,2,96,98],[1007,1,1,98,99],[1008,1,1,99,100],[1009,2,2,100,102],[1010,2,2,102,104],[1011,2,2,104,106],[1012,2,2,106,108],[1013,1,1,108,109],[1014,1,1,109,110],[1016,1,1,110,111],[1017,1,1,111,112]]],[43,18,18,112,130,[[1021,3,3,112,115],[1022,2,2,115,117],[1023,1,1,117,118],[1025,1,1,118,119],[1030,1,1,119,120],[1031,1,1,120,121],[1032,2,2,121,123],[1033,1,1,123,124],[1036,1,1,124,125],[1039,1,1,125,126],[1041,1,1,126,127],[1043,2,2,127,129],[1044,1,1,129,130]]],[44,6,6,130,136,[[1048,2,2,130,132],[1050,1,1,132,133],[1053,2,2,133,135],[1054,1,1,135,136]]],[45,17,15,136,151,[[1063,2,2,136,138],[1067,1,1,138,139],[1068,3,2,139,141],[1070,1,1,141,142],[1071,4,3,142,145],[1072,1,1,145,146],[1073,1,1,146,147],[1074,1,1,147,148],[1076,2,2,148,150],[1077,1,1,150,151]]],[46,18,16,151,167,[[1078,2,2,151,153],[1079,1,1,153,154],[1084,1,1,154,155],[1085,2,1,155,156],[1087,2,2,156,158],[1088,2,2,158,160],[1089,6,5,160,165],[1090,2,2,165,167]]],[47,2,2,167,169,[[1092,1,1,167,168],[1093,1,1,168,169]]],[48,2,2,169,171,[[1101,1,1,169,170],[1102,1,1,170,171]]],[49,1,1,171,172,[[1105,1,1,171,172]]],[52,1,1,172,173,[[1118,1,1,172,173]]],[53,2,2,173,175,[[1123,2,2,173,175]]],[54,1,1,175,176,[[1126,1,1,175,176]]],[57,11,11,176,187,[[1134,1,1,176,177],[1136,3,3,177,180],[1137,1,1,180,181],[1140,1,1,181,182],[1141,1,1,182,183],[1142,2,2,183,185],[1143,1,1,185,186],[1144,1,1,186,187]]],[58,3,3,187,190,[[1147,2,2,187,189],[1149,1,1,189,190]]],[59,2,2,190,192,[[1152,2,2,190,192]]],[60,2,2,192,194,[[1156,1,1,192,193],[1158,1,1,193,194]]],[61,4,4,194,198,[[1160,2,2,194,196],[1161,2,2,196,198]]],[65,5,5,198,203,[[1175,1,1,198,199],[1186,2,2,199,201],[1187,1,1,201,202],[1188,1,1,202,203]]]],[23248,23306,23308,23334,23403,23491,23601,23614,23665,23721,23772,23773,23780,23805,23807,23853,23883,23888,24017,24051,24107,24109,24135,24143,24171,24279,24284,24286,24312,24313,24314,24315,24317,24345,24403,24425,24443,24481,24502,24673,24687,24736,24737,24794,24810,24814,24857,24930,25148,25150,25189,25259,25272,25296,25297,25403,25412,25449,25457,25505,25551,25567,25573,25579,25580,25583,25586,25622,25623,25633,25692,25722,25752,25753,25800,26123,26125,26128,26140,26147,26165,26194,26220,26229,26240,26264,26279,26320,26335,26362,26364,26395,26402,26403,26418,26424,26509,26516,26572,26599,26663,26667,26685,26698,26703,26704,26738,26744,26779,26816,26872,26904,27034,27038,27042,27085,27098,27111,27215,27408,27442,27443,27466,27504,27596,27726,27780,27848,27849,27886,28003,28011,28052,28123,28124,28180,28403,28408,28479,28491,28496,28555,28572,28588,28590,28609,28655,28669,28733,28768,28788,28818,28819,28835,28930,28947,28983,28985,28999,29018,29023,29024,29025,29026,29035,29046,29051,29095,29119,29308,29346,29424,29685,29771,29788,29840,29993,30020,30022,30027,30034,30099,30110,30139,30171,30195,30223,30297,30304,30339,30409,30422,30499,30531,30571,30572,30588,30594,30861,31042,31043,31057,31083]]],["I",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28998]]],["Nay",[3,3,[[39,2,2,0,2,[[933,1,1,0,1],[941,1,1,1,2]]],[42,1,1,2,3,[[1003,1,1,2,3]]]],[23271,23568,26340]]],["No",[3,3,[[42,2,2,0,2,[[997,1,1,0,1],[1017,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]]],[26065,26903,28000]]],["Not",[17,17,[[39,2,2,0,2,[[935,1,1,0,1],[943,1,1,1,2]]],[42,1,1,2,3,[[1002,1,1,2,3]]],[43,1,1,3,4,[[1027,1,1,3,4]]],[44,2,2,4,6,[[1049,1,1,4,5],[1054,1,1,5,6]]],[46,3,3,6,9,[[1078,1,1,6,7],[1080,1,1,7,8],[1087,1,1,8,9]]],[48,1,1,9,10,[[1098,1,1,9,10]]],[49,3,3,10,13,[[1105,1,1,10,11],[1106,2,2,11,13]]],[52,1,1,13,14,[[1118,1,1,13,14]]],[55,1,1,14,15,[[1131,1,1,14,15]]],[57,1,1,15,16,[[1140,1,1,15,16]]],[61,1,1,16,17,[[1161,1,1,16,17]]]],[23337,23644,26303,27300,28032,28161,28824,28846,28986,29238,29433,29453,29459,29687,29928,30101,30591]]],["Thou",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26836]]],["before",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25988]]],["did",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25065]]],["have",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26794]]],["it",[2,2,[[45,2,2,0,2,[[1073,2,2,0,2]]]],[28649,28650]]],["nay",[6,4,[[39,1,1,0,1,[[933,1,1,0,1]]],[43,1,1,1,2,[[1033,1,1,1,2]]],[46,2,1,2,3,[[1078,2,1,2,3]]],[58,2,1,3,4,[[1150,2,1,3,4]]]],[23271,27520,28817,30366]]],["neither",[15,12,[[39,2,2,0,2,[[951,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[964,1,1,2,3]]],[41,4,3,3,6,[[980,1,1,3,4],[984,2,1,4,5],[988,1,1,5,6]]],[43,3,3,6,9,[[1025,1,1,6,7],[1026,1,1,7,8],[1041,1,1,8,9]]],[47,3,1,9,10,[[1093,3,1,9,10]]],[50,1,1,10,11,[[1109,1,1,10,11]]],[60,1,1,11,12,[[1156,1,1,11,12]]]],[23931,24021,24514,25288,25483,25651,27197,27225,27787,29130,29528,30487]]],["never",[3,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,2,1,1,2,[[995,2,1,1,2]]]],[24775,25964]]],["no",[125,122,[[39,8,8,0,8,[[934,1,1,0,1],[940,1,1,1,2],[944,3,3,2,5],[952,1,1,5,6],[953,2,2,6,8]]],[40,10,10,8,18,[[958,1,1,8,9],[960,3,3,9,12],[962,1,1,12,13],[964,2,2,13,15],[965,1,1,15,16],[968,2,2,16,18]]],[41,15,15,18,33,[[973,2,2,18,20],[974,1,1,20,21],[979,2,2,21,23],[980,2,2,23,25],[981,1,1,25,26],[983,1,1,26,27],[984,2,2,27,29],[987,1,1,29,30],[992,2,2,30,32],[994,1,1,32,33]]],[42,23,22,33,55,[[997,1,1,33,34],[998,1,1,34,35],[1000,3,2,35,37],[1001,1,1,37,38],[1002,1,1,38,39],[1003,2,2,39,41],[1004,1,1,41,42],[1005,1,1,42,43],[1007,2,2,43,45],[1009,1,1,45,46],[1010,1,1,46,47],[1011,1,1,47,48],[1012,3,3,48,51],[1013,1,1,51,52],[1015,3,3,52,55]]],[43,14,14,55,69,[[1024,2,2,55,57],[1027,1,1,57,58],[1029,1,1,58,59],[1030,1,1,59,60],[1032,1,1,60,61],[1035,1,1,61,62],[1036,3,3,62,65],[1038,1,1,65,66],[1042,1,1,66,67],[1044,1,1,67,68],[1045,1,1,68,69]]],[44,9,9,69,78,[[1047,1,1,69,70],[1048,2,2,70,72],[1049,1,1,72,73],[1052,1,1,73,74],[1055,2,2,74,76],[1058,2,2,76,78]]],[45,9,8,78,86,[[1068,1,1,78,79],[1071,1,1,79,80],[1072,1,1,80,81],[1073,3,2,81,83],[1074,1,1,83,84],[1076,2,2,84,86]]],[46,3,3,86,89,[[1079,1,1,86,87],[1088,2,2,87,89]]],[47,3,3,89,92,[[1092,2,2,89,91],[1095,1,1,91,92]]],[48,1,1,92,93,[[1101,1,1,92,93]]],[50,1,1,93,94,[[1109,1,1,93,94]]],[51,1,1,94,95,[[1115,1,1,94,95]]],[54,1,1,95,96,[[1127,1,1,95,96]]],[57,4,4,96,100,[[1141,1,1,96,97],[1144,1,1,97,98],[1145,2,2,98,100]]],[58,1,1,100,101,[[1146,1,1,100,101]]],[59,1,1,101,102,[[1152,1,1,101,102]]],[61,6,6,102,108,[[1159,2,2,102,104],[1160,2,2,104,106],[1161,1,1,106,107],[1162,1,1,107,108]]],[63,1,1,108,109,[[1165,1,1,108,109]]],[65,14,13,109,122,[[1173,1,1,109,110],[1176,1,1,110,111],[1180,2,2,111,113],[1184,1,1,113,114],[1186,2,2,114,116],[1187,5,5,116,121],[1188,2,1,121,122]]]],[23283,23528,23676,23679,23680,23979,24011,24050,24277,24330,24340,24363,24412,24516,24517,24541,24693,24695,24900,24926,24980,25239,25240,25258,25272,25314,25434,25476,25492,25595,25801,25810,25917,26091,26098,26173,26200,26217,26310,26346,26380,26425,26481,26533,26577,26638,26687,26721,26736,26747,26751,26770,26831,26834,26840,27121,27127,27293,27355,27399,27444,27572,27608,27609,27611,27703,27822,27875,27901,27973,28009,28013,28037,28109,28200,28207,28267,28276,28512,28580,28616,28655,28658,28670,28730,28731,28837,29003,29004,29087,29097,29185,29309,29542,29622,29862,30127,30229,30251,30255,30283,30421,30545,30548,30557,30577,30584,30621,30662,30826,30867,30931,30937,31000,31044,31049,31054,31057,31075,31076,31078,31085]]],["none",[20,18,[[39,3,2,0,2,[[940,1,1,0,1],[954,2,1,1,2]]],[40,3,3,2,5,[[968,2,2,2,4],[970,1,1,4,5]]],[41,2,2,5,7,[[985,2,2,5,7]]],[42,1,1,7,8,[[1002,1,1,7,8]]],[43,2,2,8,10,[[1020,1,1,8,9],[1024,1,1,9,10]]],[44,5,4,10,14,[[1048,4,3,10,13],[1053,1,1,13,14]]],[46,1,1,14,15,[[1078,1,1,14,15]]],[47,1,1,15,16,[[1091,1,1,15,16]]],[61,1,1,16,17,[[1160,1,1,16,17]]],[65,1,1,17,18,[[1168,1,1,17,18]]]],[23532,24114,24704,24705,24809,25524,25525,26279,27002,27121,28001,28002,28003,28125,28813,29076,30560,30741]]],["nor",[3,2,[[45,3,2,0,2,[[1063,1,1,0,1],[1067,2,1,1,2]]]],[28403,28477]]],["not",[1127,1004,[[39,140,123,0,123,[[929,1,1,0,1],[930,2,1,1,2],[931,1,1,2,3],[932,2,2,3,5],[933,5,5,5,10],[934,5,5,10,15],[935,4,4,15,19],[936,2,2,19,21],[937,4,3,21,24],[938,10,7,24,31],[939,4,3,31,34],[940,12,10,34,44],[941,12,10,44,54],[942,1,1,54,55],[943,7,7,55,62],[944,7,6,62,68],[945,4,4,68,72],[946,4,4,72,76],[947,4,3,76,79],[948,4,4,79,83],[949,6,5,83,88],[950,6,6,88,94],[951,4,4,94,98],[952,9,8,98,106],[953,9,6,106,112],[954,8,8,112,120],[955,2,2,120,122],[956,1,1,122,123]]],[40,77,69,123,192,[[957,3,3,123,126],[958,3,3,126,129],[960,7,7,129,136],[961,1,1,136,137],[962,6,5,137,142],[963,7,7,142,149],[964,5,3,149,152],[965,14,10,152,162],[966,5,5,162,167],[967,5,5,167,172],[968,6,5,172,177],[969,5,5,177,182],[970,7,7,182,189],[971,1,1,189,190],[972,2,2,190,192]]],[41,106,98,192,290,[[973,3,3,192,195],[974,4,4,195,199],[975,1,1,199,200],[976,4,4,200,204],[977,3,3,204,207],[978,6,6,207,213],[979,6,4,213,217],[980,4,3,217,220],[981,7,7,220,227],[982,3,2,227,229],[983,4,4,229,233],[984,10,9,233,242],[985,6,6,242,248],[986,5,5,248,253],[987,3,3,253,256],[988,3,3,256,259],[989,4,4,259,263],[990,4,3,263,266],[991,8,7,266,273],[992,3,3,273,276],[993,4,3,276,279],[994,4,4,279,283],[995,2,2,283,285],[996,5,5,285,290]]],[42,205,187,290,477,[[997,13,12,290,302],[998,4,4,302,306],[999,8,8,306,314],[1000,5,5,314,319],[1001,15,14,319,333],[1002,10,10,333,343],[1003,12,11,343,354],[1004,19,17,354,371],[1005,14,12,371,383],[1006,15,13,383,396],[1007,9,9,396,405],[1008,14,13,405,418],[1009,6,6,418,424],[1010,11,9,424,433],[1011,7,7,433,440],[1012,11,11,440,451],[1013,7,5,451,456],[1014,7,6,456,462],[1015,5,4,462,466],[1016,6,6,466,472],[1017,7,5,472,477]]],[43,68,66,477,543,[[1018,2,2,477,479],[1019,6,6,479,485],[1022,4,4,485,489],[1023,2,2,489,491],[1024,8,8,491,499],[1025,2,2,499,501],[1026,1,1,501,502],[1029,4,4,502,506],[1030,5,4,506,510],[1031,1,1,510,511],[1033,1,1,511,512],[1034,5,5,512,517],[1035,1,1,517,518],[1036,5,5,518,523],[1037,3,3,523,526],[1038,2,2,526,528],[1039,3,3,528,531],[1040,2,1,531,532],[1042,3,3,532,535],[1043,3,3,535,538],[1044,3,3,538,541],[1045,2,2,541,543]]],[44,98,81,543,624,[[1046,5,5,543,548],[1047,5,4,548,552],[1048,1,1,552,553],[1049,8,8,553,561],[1050,5,5,561,566],[1051,4,3,566,569],[1052,11,7,569,576],[1053,11,10,576,586],[1054,13,13,586,599],[1055,6,5,599,604],[1056,7,6,604,610],[1057,1,1,610,611],[1058,8,4,611,615],[1059,5,3,615,618],[1060,6,4,618,622],[1061,2,2,622,624]]],[45,116,92,624,716,[[1062,7,4,624,628],[1063,9,9,628,637],[1064,3,3,637,640],[1065,6,6,640,646],[1066,3,2,646,648],[1067,11,9,648,657],[1068,8,7,657,664],[1069,2,2,664,666],[1070,14,9,666,675],[1071,5,4,675,679],[1072,9,7,679,686],[1073,8,4,686,690],[1074,6,3,690,693],[1075,8,7,693,700],[1076,15,14,700,714],[1077,2,2,714,716]]],[46,68,56,716,772,[[1078,4,4,716,720],[1079,3,3,720,723],[1080,4,3,723,726],[1081,7,5,726,731],[1082,5,4,731,735],[1083,1,1,735,736],[1084,5,5,736,741],[1085,8,7,741,748],[1086,1,1,748,749],[1087,7,6,749,755],[1088,8,6,755,761],[1089,10,6,761,767],[1090,5,5,767,772]]],[47,27,25,772,797,[[1091,6,6,772,778],[1092,5,4,778,782],[1093,4,4,782,786],[1094,7,6,786,792],[1095,3,3,792,795],[1096,2,2,795,797]]],[48,7,7,797,804,[[1097,2,2,797,799],[1098,1,1,799,800],[1099,1,1,800,801],[1100,1,1,801,802],[1102,2,2,802,804]]],[49,9,9,804,813,[[1103,3,3,804,807],[1104,4,4,807,811],[1105,2,2,811,813]]],[50,6,6,813,819,[[1107,1,1,813,814],[1108,4,4,814,818],[1109,1,1,818,819]]],[51,15,15,819,834,[[1111,2,2,819,821],[1112,6,6,821,827],[1114,4,4,827,831],[1115,3,3,831,834]]],[52,6,6,834,840,[[1117,2,2,834,836],[1118,4,4,836,840]]],[53,7,7,840,847,[[1119,1,1,840,841],[1120,3,3,841,844],[1121,1,1,844,845],[1123,2,2,845,847]]],[54,10,10,847,857,[[1125,4,4,847,851],[1126,4,4,851,855],[1128,2,2,855,857]]],[57,45,43,857,900,[[1133,1,1,857,858],[1134,2,2,858,860],[1135,3,3,860,863],[1136,2,2,863,865],[1137,2,2,865,867],[1138,1,1,867,868],[1139,5,5,868,873],[1140,2,2,873,875],[1141,4,3,875,878],[1142,6,6,878,884],[1143,7,7,884,891],[1144,7,7,891,898],[1145,3,2,898,900]]],[58,21,20,900,920,[[1146,3,3,900,903],[1147,6,6,903,909],[1148,3,3,909,912],[1149,7,6,912,918],[1150,2,2,918,920]]],[59,9,9,920,929,[[1151,4,4,920,924],[1152,3,3,924,927],[1153,2,2,927,929]]],[60,9,8,929,937,[[1156,3,3,929,932],[1157,6,5,932,937]]],[61,35,28,937,965,[[1159,4,3,937,940],[1160,10,8,940,948],[1161,6,4,948,952],[1162,7,6,952,958],[1163,8,7,958,965]]],[62,5,5,965,970,[[1164,5,5,965,970]]],[63,3,3,970,973,[[1165,3,3,970,973]]],[64,2,2,973,975,[[1166,2,2,973,975]]],[65,33,29,975,1004,[[1168,8,6,975,981],[1169,5,5,981,986],[1170,1,1,986,987],[1172,1,1,987,988],[1175,3,3,988,991],[1177,1,1,991,992],[1178,2,2,992,994],[1179,1,1,994,995],[1180,1,1,995,996],[1182,4,4,996,1000],[1183,4,2,1000,1002],[1186,2,2,1002,1004]]]],[23169,23187,23203,23213,23216,23251,23255,23261,23267,23270,23287,23302,23308,23310,23312,23319,23338,23341,23345,23353,23365,23391,23392,23393,23437,23441,23443,23446,23451,23454,23455,23470,23476,23479,23492,23493,23494,23496,23508,23509,23513,23514,23520,23521,23544,23550,23551,23552,23556,23560,23573,23594,23596,23597,23613,23635,23646,23653,23656,23657,23659,23665,23675,23683,23684,23689,23690,23695,23712,23716,23719,23724,23741,23749,23757,23760,23766,23770,23780,23814,23815,23818,23820,23847,23851,23855,23856,23858,23875,23880,23888,23889,23903,23904,23921,23922,23948,23955,23959,23978,23986,23996,23999,24000,24001,24007,24020,24032,24034,24051,24052,24053,24065,24078,24093,24094,24096,24124,24126,24128,24142,24163,24201,24222,24237,24249,24277,24278,24287,24328,24336,24344,24348,24350,24357,24361,24383,24410,24411,24426,24433,24459,24466,24467,24468,24481,24482,24487,24490,24518,24521,24533,24544,24556,24566,24568,24575,24576,24578,24582,24584,24586,24615,24626,24628,24631,24633,24653,24656,24657,24666,24671,24687,24697,24699,24700,24707,24728,24731,24741,24750,24752,24761,24783,24790,24791,24803,24822,24825,24849,24879,24887,24913,24915,24927,25010,25016,25022,25023,25041,25067,25075,25085,25104,25138,25139,25143,25186,25187,25188,25190,25192,25194,25201,25227,25240,25241,25262,25264,25292,25341,25350,25351,25354,25356,25357,25359,25387,25405,25413,25443,25445,25451,25461,25465,25469,25474,25486,25498,25499,25515,25516,25533,25534,25542,25543,25545,25552,25558,25559,25579,25580,25586,25592,25601,25616,25631,25632,25651,25660,25669,25671,25673,25692,25699,25701,25734,25745,25752,25753,25754,25775,25779,25784,25805,25817,25832,25835,25841,25890,25921,25922,25924,25969,25986,25994,25997,26009,26015,26030,26049,26052,26054,26055,26057,26064,26065,26069,26070,26071,26075,26077,26104,26107,26119,26120,26130,26131,26132,26137,26138,26148,26154,26156,26158,26174,26178,26188,26191,26223,26228,26233,26234,26240,26241,26244,26248,26250,26251,26252,26253,26254,26257,26274,26281,26283,26289,26293,26295,26299,26315,26321,26327,26329,26338,26344,26347,26350,26353,26356,26362,26363,26364,26373,26394,26397,26404,26408,26410,26416,26421,26422,26424,26425,26426,26427,26428,26429,26430,26431,26436,26448,26452,26456,26458,26461,26465,26467,26469,26470,26471,26472,26473,26486,26487,26489,26491,26493,26494,26497,26502,26506,26507,26514,26515,26518,26527,26532,26538,26544,26555,26560,26563,26574,26575,26585,26586,26588,26589,26596,26610,26615,26617,26619,26622,26624,26627,26629,26637,26638,26640,26646,26648,26666,26673,26677,26678,26685,26686,26690,26692,26695,26698,26714,26715,26718,26719,26720,26721,26723,26729,26730,26733,26735,26739,26742,26743,26745,26752,26756,26758,26768,26773,26774,26775,26784,26802,26810,26811,26813,26815,26821,26835,26837,26858,26861,26869,26874,26880,26881,26891,26897,26902,26906,26909,26916,26921,26928,26930,26956,26964,26973,26976,26980,26983,27063,27081,27087,27101,27103,27114,27134,27141,27148,27155,27156,27164,27168,27169,27197,27208,27237,27346,27351,27359,27360,27372,27387,27397,27401,27431,27490,27527,27535,27547,27550,27552,27577,27611,27612,27615,27617,27620,27638,27653,27657,27677,27702,27713,27715,27722,27739,27803,27807,27812,27842,27849,27852,27865,27869,27894,27903,27918,27943,27946,27951,27958,27962,27975,27983,27990,27991,28008,28024,28026,28034,28035,28038,28041,28042,28045,28050,28058,28060,28062,28063,28082,28083,28084,28097,28098,28106,28107,28109,28110,28111,28125,28128,28131,28134,28136,28139,28140,28141,28142,28148,28156,28161,28163,28165,28166,28171,28176,28179,28180,28181,28186,28187,28188,28190,28191,28199,28202,28204,28211,28213,28216,28227,28230,28234,28249,28269,28270,28271,28275,28286,28297,28303,28306,28321,28323,28324,28340,28354,28379,28380,28384,28389,28395,28396,28398,28400,28402,28403,28406,28407,28408,28411,28412,28426,28437,28440,28447,28448,28452,28453,28460,28464,28469,28470,28472,28476,28479,28480,28482,28483,28486,28493,28497,28499,28502,28515,28522,28523,28534,28535,28541,28542,28546,28547,28549,28552,28553,28564,28566,28568,28580,28587,28590,28606,28607,28608,28617,28620,28622,28631,28635,28648,28649,28650,28669,28670,28671,28680,28694,28695,28700,28701,28711,28712,28727,28728,28732,28733,28734,28735,28747,28750,28754,28755,28757,28764,28769,28776,28783,28798,28808,28812,28818,28819,28828,28829,28841,28844,28847,28854,28860,28864,28867,28868,28875,28880,28881,28884,28889,28910,28919,28923,28924,28925,28928,28937,28940,28942,28944,28945,28951,28953,28968,28974,28975,28979,28983,28987,28989,28993,28995,29000,29006,29018,29020,29027,29028,29036,29038,29040,29042,29045,29048,29049,29050,29053,29058,29064,29067,29068,29073,29077,29095,29096,29097,29102,29112,29114,29118,29122,29139,29145,29148,29152,29158,29162,29170,29180,29183,29192,29195,29222,29227,29237,29256,29292,29344,29349,29377,29383,29390,29397,29407,29412,29418,29422,29434,29474,29495,29502,29513,29517,29540,29565,29568,29571,29573,29574,29578,29583,29587,29610,29611,29612,29616,29625,29626,29630,29666,29671,29680,29687,29688,29692,29705,29723,29728,29730,29736,29776,29781,29816,29818,29821,29825,29832,29836,29847,29851,29873,29878,29975,29982,29988,30005,30011,30014,30016,30029,30035,30042,30054,30075,30080,30084,30085,30091,30094,30101,30112,30116,30129,30134,30135,30138,30141,30170,30172,30173,30177,30188,30203,30207,30210,30211,30219,30220,30221,30230,30232,30237,30238,30247,30250,30286,30289,30291,30298,30299,30300,30314,30317,30318,30321,30329,30334,30338,30339,30340,30341,30348,30351,30360,30371,30382,30386,30392,30397,30409,30417,30422,30427,30445,30491,30495,30500,30503,30504,30505,30510,30511,30546,30548,30550,30552,30554,30561,30565,30566,30569,30571,30577,30580,30585,30588,30589,30606,30609,30611,30613,30621,30623,30627,30630,30634,30636,30640,30641,30642,30646,30650,30654,30655,30657,30667,30669,30671,30681,30682,30719,30720,30726,30730,30738,30741,30748,30750,30754,30755,30763,30776,30803,30844,30846,30860,30881,30899,30902,30916,30930,30963,30965,30972,30974,30983,30986,31042,31053]]],["nothing",[3,3,[[41,2,2,0,2,[[980,1,1,0,1],[983,1,1,1,2]]],[45,1,1,2,3,[[1070,1,1,2,3]]]],[25262,25411,28556]]],["shall",[2,2,[[42,1,1,0,1,[[1012,1,1,0,1]]],[45,1,1,1,2,[[1067,1,1,1,2]]]],[26749,28477]]],["thou",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24830]]],["ye",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26750]]]]},{"k":"G3757","v":[["*",[47,47,[[39,3,3,0,3,[[930,1,1,0,1],[946,1,1,1,2],[956,1,1,2,3]]],[41,9,9,3,12,[[976,2,2,3,5],[982,1,1,5,6],[984,1,1,6,7],[985,1,1,7,8],[994,1,1,8,9],[995,1,1,9,10],[996,2,2,10,12]]],[42,2,2,12,14,[[1007,1,1,12,13],[1009,1,1,13,14]]],[43,15,15,14,29,[[1018,1,1,14,15],[1019,1,1,15,16],[1024,2,2,16,18],[1029,1,1,18,19],[1033,1,1,19,20],[1037,2,2,20,22],[1038,1,1,22,23],[1040,3,3,23,26],[1042,2,2,26,28],[1045,1,1,28,29]]],[44,4,4,29,33,[[1049,1,1,29,30],[1050,1,1,30,31],[1054,1,1,31,32],[1056,1,1,32,33]]],[45,3,3,33,36,[[1072,1,1,33,34],[1076,1,1,34,35],[1077,1,1,35,36]]],[46,1,1,36,37,[[1080,1,1,36,37]]],[47,2,2,37,39,[[1093,1,1,37,38],[1094,1,1,38,39]]],[50,1,1,39,40,[[1109,1,1,39,40]]],[57,2,2,40,42,[[1135,2,2,40,42]]],[60,1,1,42,43,[[1156,1,1,42,43]]],[65,4,4,43,47,[[1168,1,1,43,44],[1172,1,1,44,45],[1173,1,1,45,46],[1183,1,1,46,47]]]],[23178,23747,24211,25079,25080,25364,25518,25539,25874,25988,26019,26040,26564,26668,26936,26951,27134,27145,27349,27496,27632,27634,27690,27746,27748,27755,27806,27817,27913,28037,28067,28181,28234,28626,28743,28782,28858,29121,29150,29518,30004,30008,30498,30742,30804,30813,30990]]],["+",[21,21,[[41,3,3,0,3,[[984,1,1,0,1],[985,1,1,1,2],[996,1,1,2,3]]],[42,1,1,3,4,[[1009,1,1,3,4]]],[43,6,6,4,10,[[1024,1,1,4,5],[1038,1,1,5,6],[1040,3,3,6,9],[1042,1,1,9,10]]],[44,1,1,10,11,[[1056,1,1,10,11]]],[45,3,3,11,14,[[1072,1,1,11,12],[1076,1,1,12,13],[1077,1,1,13,14]]],[47,2,2,14,16,[[1093,1,1,14,15],[1094,1,1,15,16]]],[57,1,1,16,17,[[1135,1,1,16,17]]],[60,1,1,17,18,[[1156,1,1,17,18]]],[65,3,3,18,21,[[1168,1,1,18,19],[1172,1,1,19,20],[1173,1,1,20,21]]]],[25518,25539,26040,26668,27134,27690,27746,27748,27755,27817,28234,28626,28743,28782,29121,29150,30008,30498,30742,30804,30813]]],["When",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30004]]],["Where",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27913]]],["where",[21,21,[[39,3,3,0,3,[[930,1,1,0,1],[946,1,1,1,2],[956,1,1,2,3]]],[41,3,3,3,6,[[976,2,2,3,5],[994,1,1,5,6]]],[42,1,1,6,7,[[1007,1,1,6,7]]],[43,8,8,7,15,[[1018,1,1,7,8],[1019,1,1,8,9],[1024,1,1,9,10],[1029,1,1,10,11],[1033,1,1,11,12],[1037,2,2,12,14],[1042,1,1,14,15]]],[44,3,3,15,18,[[1049,1,1,15,16],[1050,1,1,16,17],[1054,1,1,17,18]]],[46,1,1,18,19,[[1080,1,1,18,19]]],[50,1,1,19,20,[[1109,1,1,19,20]]],[65,1,1,20,21,[[1183,1,1,20,21]]]],[23178,23747,24211,25079,25080,25874,26564,26936,26951,27145,27349,27496,27632,27634,27806,28037,28067,28181,28858,29518,30990]]],["wherein",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25988]]],["whither",[2,2,[[41,2,2,0,2,[[982,1,1,0,1],[996,1,1,1,2]]]],[25364,26019]]]]},{"k":"G3758","v":[["Ah",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24855]]]]},{"k":"G3759","v":[["*",[47,36,[[39,14,12,0,12,[[939,2,1,0,1],[946,2,1,1,2],[951,8,8,2,10],[952,1,1,10,11],[954,1,1,11,12]]],[40,2,2,12,14,[[969,1,1,12,13],[970,1,1,13,14]]],[41,15,13,14,27,[[978,4,3,14,17],[982,2,1,17,18],[983,6,6,18,24],[989,1,1,24,25],[993,1,1,25,26],[994,1,1,26,27]]],[45,1,1,27,28,[[1070,1,1,27,28]]],[64,1,1,28,29,[[1166,1,1,28,29]]],[65,14,7,29,36,[[1174,3,1,29,30],[1175,2,1,30,31],[1177,2,1,31,32],[1178,1,1,32,33],[1184,6,3,33,36]]]],[23480,23734,23931,23932,23933,23934,23941,23943,23945,23947,23976,24078,24734,24775,25170,25171,25172,25376,25447,25448,25449,25451,25452,25457,25652,25849,25886,28556,30683,30840,30852,30886,30903,31003,31009,31012]]],["Alas",[3,3,[[65,3,3,0,3,[[1184,3,3,0,3]]]],[31003,31009,31012]]],["Woe",[21,20,[[39,9,9,0,9,[[939,1,1,0,1],[946,1,1,1,2],[951,7,7,2,9]]],[41,9,8,9,17,[[978,3,2,9,11],[982,1,1,11,12],[983,5,5,12,17]]],[64,1,1,17,18,[[1166,1,1,17,18]]],[65,2,2,18,20,[[1174,1,1,18,19],[1178,1,1,19,20]]]],[23480,23734,23932,23933,23934,23941,23943,23945,23947,25171,25172,25376,25448,25449,25451,25452,25457,30683,30840,30903]]],["alas",[3,3,[[65,3,3,0,3,[[1184,3,3,0,3]]]],[31003,31009,31012]]],["woe",[19,17,[[39,5,5,0,5,[[939,1,1,0,1],[946,1,1,1,2],[951,1,1,2,3],[952,1,1,3,4],[954,1,1,4,5]]],[40,2,2,5,7,[[969,1,1,5,6],[970,1,1,6,7]]],[41,6,6,7,13,[[978,1,1,7,8],[982,1,1,8,9],[983,1,1,9,10],[989,1,1,10,11],[993,1,1,11,12],[994,1,1,12,13]]],[45,1,1,13,14,[[1070,1,1,13,14]]],[65,5,3,14,17,[[1174,2,1,14,15],[1175,1,1,15,16],[1177,2,1,16,17]]]],[23480,23734,23931,23976,24078,24734,24775,25170,25376,25447,25652,25849,25886,28556,30840,30852,30886]]],["woes",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30852]]]]},{"k":"G3760","v":[["not",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23175]]]]},{"k":"G3761","v":[["*",[137,125,[[39,26,24,0,24,[[933,1,1,0,1],[934,6,5,1,6],[935,1,1,6,7],[936,1,1,7,8],[937,1,1,8,9],[938,1,1,9,10],[939,1,1,10,11],[940,3,2,11,13],[941,1,1,13,14],[944,2,2,14,16],[949,1,1,16,17],[950,1,1,17,18],[951,1,1,18,19],[952,2,2,19,21],[953,2,2,21,23],[955,1,1,23,24]]],[40,12,11,24,35,[[960,1,1,24,25],[962,1,1,25,26],[964,1,1,26,27],[967,2,2,27,29],[968,2,2,29,31],[969,2,1,31,32],[970,2,2,32,34],[972,1,1,34,35]]],[41,19,17,35,52,[[978,3,3,35,38],[979,2,2,38,40],[980,1,1,40,41],[983,1,1,41,42],[984,5,3,42,45],[988,1,1,45,46],[989,1,1,46,47],[990,1,1,47,48],[992,1,1,48,49],[993,1,1,49,50],[995,2,2,50,52]]],[42,14,13,52,65,[[997,3,2,52,54],[1001,1,1,54,55],[1002,1,1,55,56],[1003,1,1,56,57],[1004,2,2,57,59],[1007,1,1,59,60],[1009,1,1,60,61],[1010,1,1,61,62],[1011,1,1,62,63],[1012,1,1,63,64],[1017,1,1,64,65]]],[43,12,12,65,77,[[1019,2,2,65,67],[1021,2,2,67,69],[1024,1,1,69,70],[1025,1,1,70,71],[1026,1,1,71,72],[1033,1,1,72,73],[1034,1,1,73,74],[1036,1,1,74,75],[1037,1,1,75,76],[1041,1,1,76,77]]],[44,7,7,77,84,[[1047,1,1,77,78],[1048,1,1,78,79],[1049,1,1,79,80],[1053,1,1,80,81],[1054,2,2,81,83],[1056,1,1,83,84]]],[45,10,10,84,94,[[1063,1,1,84,85],[1065,1,1,85,86],[1066,1,1,86,87],[1067,1,1,87,88],[1072,2,2,88,90],[1075,1,1,90,91],[1076,3,3,91,94]]],[46,2,2,94,96,[[1080,1,1,94,95],[1084,1,1,95,96]]],[47,9,8,96,104,[[1091,3,3,96,99],[1092,2,2,99,101],[1093,2,1,101,102],[1094,1,1,102,103],[1096,1,1,103,104]]],[49,1,1,104,105,[[1104,1,1,104,105]]],[51,2,2,105,107,[[1112,1,1,105,106],[1115,1,1,106,107]]],[52,1,1,107,108,[[1118,1,1,107,108]]],[53,3,3,108,111,[[1120,1,1,108,109],[1124,2,2,109,111]]],[57,6,6,111,117,[[1140,1,1,111,112],[1141,3,3,112,115],[1142,1,1,115,116],[1145,1,1,116,117]]],[59,1,1,117,118,[[1152,1,1,117,118]]],[60,1,1,118,119,[[1156,1,1,118,119]]],[61,2,2,119,121,[[1160,1,1,119,120],[1161,1,1,120,121]]],[65,9,4,121,125,[[1171,3,1,121,122],[1173,3,1,122,123],[1175,2,1,123,124],[1187,1,1,124,125]]]],[23249,23297,23302,23308,23310,23311,23334,23355,23396,23441,23486,23493,23508,23552,23681,23682,23853,23918,23931,23978,23993,24021,24053,24143,24345,24438,24517,24666,24673,24683,24694,24749,24813,24822,24886,25149,25189,25190,25202,25204,25262,25438,25483,25486,25492,25651,25672,25701,25787,25841,25950,25975,26047,26057,26232,26281,26333,26392,26423,26573,26646,26685,26703,26729,26923,26976,26980,27054,27056,27121,27197,27225,27504,27548,27587,27650,27787,27990,28001,28037,28123,28162,28171,28230,28400,28436,28455,28472,28614,28616,28699,28731,28734,28768,28851,28928,29058,29069,29074,29084,29086,29130,29145,29201,29407,29573,29626,29686,29728,29795,29804,30096,30117,30123,30130,30141,30246,30421,30487,30573,30585,30782,30826,30844,31076]]],["+",[8,8,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,2,2,1,3,[[978,1,1,1,2],[988,1,1,2,3]]],[42,1,1,3,4,[[1001,1,1,3,4]]],[43,2,2,4,6,[[1021,1,1,4,5],[1036,1,1,5,6]]],[46,1,1,6,7,[[1080,1,1,6,7]]],[65,1,1,7,8,[[1173,1,1,7,8]]]],[24438,25149,25651,26232,27054,27587,28851,30826]]],["Neither",[14,14,[[39,4,4,0,4,[[933,1,1,0,1],[937,1,1,1,2],[944,1,1,2,3],[949,1,1,3,4]]],[40,1,1,4,5,[[967,1,1,4,5]]],[41,2,2,5,7,[[989,1,1,5,6],[992,1,1,6,7]]],[42,1,1,7,8,[[1004,1,1,7,8]]],[43,2,2,8,10,[[1021,1,1,8,9],[1034,1,1,9,10]]],[44,1,1,10,11,[[1054,1,1,10,11]]],[47,1,1,11,12,[[1091,1,1,11,12]]],[52,1,1,12,13,[[1118,1,1,12,13]]],[57,1,1,13,14,[[1141,1,1,13,14]]]],[23249,23396,23682,23853,24673,25672,25787,26392,27056,27548,28162,29074,29686,30117]]],["Nor",[2,2,[[42,1,1,0,1,[[1007,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[26573,30130]]],["as",[2,2,[[41,1,1,0,1,[[990,1,1,0,1]]],[45,1,1,1,2,[[1066,1,1,1,2]]]],[25701,28455]]],["even",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[45,1,1,1,2,[[1072,1,1,1,2]]]],[23311,28614]]],["neither",[52,50,[[39,11,11,0,11,[[934,3,3,0,3],[935,1,1,3,4],[939,1,1,4,5],[940,2,2,5,7],[941,1,1,7,8],[944,1,1,8,9],[950,1,1,9,10],[951,1,1,10,11]]],[40,8,8,11,19,[[960,1,1,11,12],[964,1,1,12,13],[967,1,1,13,14],[968,1,1,14,15],[969,1,1,15,16],[970,2,2,16,18],[972,1,1,18,19]]],[41,5,5,19,24,[[978,1,1,19,20],[979,1,1,20,21],[980,1,1,21,22],[983,1,1,22,23],[984,1,1,23,24]]],[42,5,5,24,29,[[1002,1,1,24,25],[1003,1,1,25,26],[1004,1,1,26,27],[1009,1,1,27,28],[1010,1,1,28,29]]],[43,4,4,29,33,[[1019,2,2,29,31],[1033,1,1,31,32],[1037,1,1,32,33]]],[44,2,2,33,35,[[1047,1,1,33,34],[1053,1,1,34,35]]],[45,2,2,35,37,[[1072,1,1,35,36],[1076,1,1,36,37]]],[47,4,4,37,41,[[1091,2,2,37,39],[1092,1,1,39,40],[1096,1,1,40,41]]],[49,1,1,41,42,[[1104,1,1,41,42]]],[57,2,2,42,44,[[1141,1,1,42,43],[1142,1,1,43,44]]],[59,1,1,44,45,[[1152,1,1,44,45]]],[61,1,1,45,46,[[1161,1,1,45,46]]],[65,6,4,46,50,[[1171,2,1,46,47],[1173,1,1,47,48],[1175,2,1,48,49],[1187,1,1,49,50]]]],[23297,23308,23310,23334,23486,23493,23508,23552,23681,23918,23931,24345,24517,24666,24694,24749,24813,24822,24886,25189,25202,25262,25438,25492,26281,26333,26423,26646,26685,26976,26980,27504,27650,27990,28123,28616,28768,29058,29069,29084,29201,29407,30123,30141,30421,30585,30782,30826,30844,31076]]],["never",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24143]]],["no",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[42,1,1,1,2,[[1011,1,1,1,2]]],[44,1,1,2,3,[[1049,1,1,2,3]]]],[23978,26703,28037]]],["nor",[29,26,[[39,5,5,0,5,[[934,2,2,0,2],[938,1,1,2,3],[940,1,1,3,4],[953,1,1,4,5]]],[41,4,3,5,8,[[978,1,1,5,6],[984,2,1,6,7],[993,1,1,7,8]]],[42,3,2,8,10,[[997,2,1,8,9],[1012,1,1,9,10]]],[43,3,3,10,13,[[1025,1,1,10,11],[1026,1,1,11,12],[1041,1,1,12,13]]],[44,1,1,13,14,[[1054,1,1,13,14]]],[45,1,1,14,15,[[1063,1,1,14,15]]],[46,1,1,15,16,[[1084,1,1,15,16]]],[47,3,2,16,18,[[1093,2,1,16,17],[1094,1,1,17,18]]],[51,2,2,18,20,[[1112,1,1,18,19],[1115,1,1,19,20]]],[53,2,2,20,22,[[1120,1,1,20,21],[1124,1,1,21,22]]],[57,1,1,22,23,[[1145,1,1,22,23]]],[60,1,1,23,24,[[1156,1,1,23,24]]],[65,2,2,24,26,[[1171,1,1,24,25],[1173,1,1,25,26]]]],[23302,23308,23441,23508,24021,25190,25483,25841,26057,26729,27197,27225,27787,28171,28400,28928,29130,29145,29573,29626,29728,29804,30246,30487,30782,30826]]],["not",[22,21,[[39,3,3,0,3,[[936,1,1,0,1],[952,1,1,1,2],[953,1,1,2,3]]],[40,2,2,3,5,[[968,1,1,3,4],[969,1,1,4,5]]],[41,4,3,5,8,[[979,1,1,5,6],[984,2,1,6,7],[995,1,1,7,8]]],[42,2,2,8,10,[[997,1,1,8,9],[1017,1,1,9,10]]],[43,1,1,10,11,[[1024,1,1,10,11]]],[44,2,2,11,13,[[1048,1,1,11,12],[1056,1,1,12,13]]],[45,5,5,13,18,[[1065,1,1,13,14],[1067,1,1,14,15],[1075,1,1,15,16],[1076,2,2,16,18]]],[47,1,1,18,19,[[1092,1,1,18,19]]],[57,1,1,19,20,[[1140,1,1,19,20]]],[61,1,1,20,21,[[1160,1,1,20,21]]]],[23355,23993,24053,24683,24749,25204,25486,25975,26047,26923,27121,28001,28230,28436,28472,28699,28731,28734,29086,30096,30573]]],["we",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29795]]],["yet",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25950]]]]},{"k":"G3762","v":[["*",[233,221,[[39,18,18,0,18,[[933,1,1,0,1],[934,1,1,1,2],[937,1,1,2,3],[938,1,1,3,4],[939,1,1,4,5],[945,2,2,5,7],[947,1,1,7,8],[948,1,1,8,9],[949,1,1,9,10],[950,2,2,10,12],[951,2,2,12,14],[952,1,1,14,15],[954,1,1,15,16],[955,2,2,16,18]]],[40,26,25,18,43,[[958,2,2,18,20],[959,1,1,20,21],[961,3,3,21,24],[963,3,3,24,27],[965,3,3,27,30],[966,2,2,30,32],[967,2,2,32,34],[968,2,2,34,36],[969,1,1,36,37],[970,2,2,37,39],[971,3,3,39,42],[972,2,1,42,43]]],[41,36,35,43,78,[[973,1,1,43,44],[976,4,4,44,48],[977,4,4,48,52],[979,1,1,52,53],[980,3,3,53,56],[981,3,2,56,58],[982,2,2,58,60],[983,1,1,60,61],[984,1,1,61,62],[986,1,1,62,63],[987,1,1,63,64],[988,1,1,64,65],[990,3,3,65,68],[991,1,1,68,69],[992,1,1,69,70],[994,1,1,70,71],[995,7,7,71,78]]],[42,53,53,78,131,[[997,1,1,78,79],[999,4,4,79,83],[1000,1,1,83,84],[1001,3,3,84,87],[1002,3,3,87,90],[1003,7,7,90,97],[1004,7,7,97,104],[1005,2,2,104,106],[1006,3,3,106,109],[1007,1,1,109,110],[1008,1,1,110,111],[1009,1,1,111,112],[1010,2,2,112,114],[1011,3,3,114,117],[1012,5,5,117,122],[1013,1,1,122,123],[1014,3,3,123,126],[1015,3,3,126,129],[1017,2,2,129,131]]],[43,27,26,131,157,[[1021,2,2,131,133],[1022,3,3,133,136],[1025,1,1,136,137],[1026,1,1,137,138],[1032,1,1,138,139],[1034,1,1,139,140],[1035,2,2,140,142],[1036,1,1,142,143],[1037,3,3,143,146],[1038,1,1,146,147],[1040,1,1,147,148],[1042,4,3,148,151],[1043,2,2,151,153],[1044,2,2,153,155],[1045,2,2,155,157]]],[44,4,3,157,160,[[1053,1,1,157,158],[1059,3,2,158,160]]],[45,18,15,160,175,[[1062,1,1,160,161],[1063,3,3,161,164],[1064,1,1,164,165],[1065,1,1,165,166],[1068,2,1,166,167],[1069,3,2,167,169],[1070,1,1,169,170],[1073,2,1,170,171],[1074,2,2,171,173],[1075,2,2,173,175]]],[46,8,5,175,180,[[1082,1,1,175,176],[1084,4,2,176,178],[1088,1,1,178,179],[1089,2,1,179,180]]],[47,8,7,180,187,[[1092,2,1,180,181],[1093,2,2,181,183],[1094,2,2,183,185],[1095,2,2,185,187]]],[48,1,1,187,188,[[1101,1,1,187,188]]],[49,3,3,188,191,[[1103,1,1,188,189],[1104,1,1,189,190],[1106,1,1,190,191]]],[53,3,3,191,194,[[1122,1,1,191,192],[1124,2,2,192,194]]],[54,3,3,194,197,[[1126,2,2,194,196],[1128,1,1,196,197]]],[55,1,1,197,198,[[1129,1,1,197,198]]],[56,1,1,198,199,[[1132,1,1,198,199]]],[57,6,6,199,205,[[1134,1,1,199,200],[1138,1,1,200,201],[1139,3,3,201,204],[1144,1,1,204,205]]],[58,3,3,205,208,[[1146,1,1,205,206],[1148,2,2,206,208]]],[61,2,2,208,210,[[1159,1,1,208,209],[1162,1,1,209,210]]],[65,12,11,210,221,[[1168,1,1,210,211],[1169,4,3,211,214],[1171,2,2,214,216],[1173,1,1,216,217],[1180,1,1,217,218],[1181,1,1,218,219],[1184,1,1,219,220],[1185,1,1,220,221]]]],[23247,23306,23395,23443,23486,23708,23720,23779,23799,23845,23888,23918,23934,23936,23993,24116,24141,24153,24281,24282,24315,24367,24368,24401,24475,24478,24487,24546,24567,24577,24606,24617,24642,24653,24687,24707,24749,24814,24815,24829,24830,24831,24881,24954,25065,25087,25089,25090,25112,25143,25144,25146,25223,25261,25288,25296,25337,25363,25382,25385,25438,25461,25577,25604,25633,25707,25717,25722,25761,25819,25899,25939,25944,25949,25950,25957,25976,25988,26062,26122,26133,26147,26152,26183,26229,26232,26240,26301,26320,26322,26332,26341,26347,26354,26355,26358,26372,26391,26392,26396,26401,26409,26414,26435,26444,26473,26499,26510,26522,26572,26599,26658,26674,26698,26704,26712,26723,26731,26748,26749,26750,26755,26771,26794,26816,26823,26829,26836,26866,26901,26910,27034,27036,27072,27082,27095,27192,27224,27451,27544,27567,27574,27612,27646,27650,27659,27688,27743,27806,27807,27814,27845,27854,27877,27889,27904,27916,28117,28287,28294,28377,28402,28405,28409,28421,28437,28506,28529,28531,28555,28637,28667,28668,28680,28688,28893,28918,28921,28998,29033,29087,29113,29117,29132,29143,29164,29172,29333,29381,29411,29457,29751,29795,29804,29831,29841,29886,29907,29952,29985,30057,30077,30078,30083,30226,30279,30327,30331,30545,30615,30734,30753,30754,30763,30782,30783,30819,30929,30954,31004,31029]]],["+",[16,16,[[40,1,1,0,1,[[959,1,1,0,1]]],[41,3,3,1,4,[[980,1,1,1,2],[991,1,1,2,3],[995,1,1,3,4]]],[42,2,2,4,6,[[1014,1,1,4,5],[1015,1,1,5,6]]],[43,5,5,6,11,[[1021,1,1,6,7],[1032,1,1,7,8],[1036,1,1,8,9],[1037,1,1,9,10],[1042,1,1,10,11]]],[47,3,3,11,14,[[1092,1,1,11,12],[1094,1,1,12,13],[1095,1,1,13,14]]],[54,1,1,14,15,[[1126,1,1,14,15]]],[57,1,1,15,16,[[1139,1,1,15,16]]]],[24315,25296,25761,25988,26816,26866,27036,27451,27612,27650,27806,29087,29143,29172,29841,30083]]],["No",[2,2,[[41,2,2,0,2,[[976,1,1,0,1],[988,1,1,1,2]]]],[25087,25633]]],["Nothing",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25899]]],["all",[2,2,[[42,1,1,0,1,[[1007,1,1,0,1]]],[61,1,1,1,2,[[1159,1,1,1,2]]]],[26572,30545]]],["any",[7,7,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[972,1,1,2,3]]],[41,2,2,3,5,[[980,1,1,3,4],[992,1,1,4,5]]],[43,2,2,5,7,[[1021,1,1,5,6],[1044,1,1,6,7]]]],[23888,24368,24881,25288,25819,27034,27889]]],["man",[89,85,[[39,6,6,0,6,[[934,1,1,0,1],[937,1,1,1,2],[939,1,1,2,3],[945,1,1,3,4],[948,1,1,4,5],[950,1,1,5,6]]],[40,11,11,6,17,[[958,2,2,6,8],[961,2,2,8,10],[963,1,1,10,11],[965,2,2,11,13],[966,1,1,13,14],[968,2,2,14,16],[969,1,1,16,17]]],[41,10,10,17,27,[[977,3,3,17,20],[980,1,1,20,21],[981,2,2,21,23],[982,1,1,23,24],[983,1,1,24,25],[987,1,1,25,26],[990,1,1,26,27]]],[42,24,24,27,51,[[997,1,1,27,28],[999,3,3,28,31],[1000,1,1,31,32],[1001,1,1,32,33],[1002,2,2,33,35],[1003,5,5,35,40],[1004,5,5,40,45],[1005,1,1,45,46],[1006,1,1,46,47],[1009,1,1,47,48],[1010,1,1,48,49],[1011,1,1,49,50],[1012,1,1,50,51]]],[43,5,5,51,56,[[1022,2,2,51,53],[1026,1,1,53,54],[1035,1,1,54,55],[1042,1,1,55,56]]],[44,1,1,56,57,[[1059,1,1,56,57]]],[45,6,5,57,62,[[1063,2,2,57,59],[1064,1,1,59,60],[1073,2,1,60,61],[1075,1,1,61,62]]],[46,5,3,62,65,[[1082,1,1,62,63],[1084,3,1,63,64],[1088,1,1,64,65]]],[47,2,2,65,67,[[1093,2,2,65,67]]],[48,1,1,67,68,[[1101,1,1,67,68]]],[49,1,1,68,69,[[1104,1,1,68,69]]],[54,2,2,69,71,[[1126,1,1,69,70],[1128,1,1,70,71]]],[57,2,2,71,73,[[1139,1,1,71,72],[1144,1,1,72,73]]],[58,1,1,73,74,[[1146,1,1,73,74]]],[61,1,1,74,75,[[1162,1,1,74,75]]],[65,11,10,75,85,[[1168,1,1,75,76],[1169,3,2,76,78],[1171,2,2,78,80],[1173,1,1,80,81],[1180,1,1,81,82],[1181,1,1,82,83],[1184,1,1,83,84],[1185,1,1,84,85]]]],[23306,23395,23486,23708,23799,23918,24281,24282,24367,24401,24487,24546,24577,24617,24687,24707,24749,25143,25144,25146,25261,25337,25363,25385,25438,25604,25717,26062,26122,26133,26152,26183,26232,26301,26322,26332,26341,26355,26358,26372,26391,26392,26396,26401,26414,26444,26499,26658,26674,26712,26748,27072,27082,27224,27567,27807,28287,28405,28409,28421,28637,28680,28893,28918,28998,29113,29117,29333,29411,29831,29886,30077,30226,30279,30615,30734,30753,30754,30782,30783,30819,30929,30954,31004,31029]]],["man's",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27659]]],["never",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24642]]],["no",[20,20,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,3,3,1,4,[[995,3,3,1,4]]],[42,6,6,4,10,[[1006,2,2,4,6],[1012,1,1,6,7],[1014,1,1,7,8],[1015,2,2,8,10]]],[43,3,3,10,13,[[1040,1,1,10,11],[1044,1,1,11,12],[1045,1,1,12,13]]],[44,1,1,13,14,[[1053,1,1,13,14]]],[46,1,1,14,15,[[1084,1,1,14,15]]],[49,1,1,15,16,[[1106,1,1,15,16]]],[53,1,1,16,17,[[1124,1,1,16,17]]],[57,1,1,17,18,[[1138,1,1,17,18]]],[58,2,2,18,20,[[1148,2,2,18,20]]]],[23993,25939,25949,25957,26510,26522,26755,26823,26829,26836,27743,27877,27904,28117,28921,29457,29804,30057,30327,30331]]],["none",[25,25,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,6,6,2,8,[[973,1,1,2,3],[976,2,2,3,5],[986,1,1,5,6],[990,2,2,6,8]]],[42,6,6,8,14,[[1003,1,1,8,9],[1011,1,1,9,10],[1012,1,1,10,11],[1013,1,1,11,12],[1014,1,1,12,13],[1017,1,1,13,14]]],[43,5,5,14,19,[[1025,1,1,14,15],[1035,1,1,15,16],[1042,2,2,16,18],[1043,1,1,18,19]]],[44,1,1,19,20,[[1059,1,1,19,20]]],[45,5,5,20,25,[[1062,1,1,20,21],[1063,1,1,21,22],[1069,1,1,22,23],[1070,1,1,23,24],[1075,1,1,24,25]]]],[23779,24606,24954,25089,25090,25577,25707,25722,26347,26723,26731,26771,26794,26910,27192,27574,27807,27814,27845,28287,28377,28402,28531,28555,28688]]],["not",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25223]]],["nothing",[64,62,[[39,9,9,0,9,[[933,1,1,0,1],[938,1,1,1,2],[945,1,1,2,3],[949,1,1,3,4],[951,2,2,4,6],[954,1,1,6,7],[955,2,2,7,9]]],[40,8,8,9,17,[[963,1,1,9,10],[965,1,1,10,11],[967,1,1,11,12],[970,2,2,12,14],[971,3,3,14,17]]],[41,7,7,17,24,[[976,1,1,17,18],[977,1,1,18,19],[982,1,1,19,20],[984,1,1,20,21],[995,3,3,21,24]]],[42,14,14,24,38,[[999,1,1,24,25],[1001,2,2,25,27],[1002,1,1,27,28],[1003,1,1,28,29],[1004,2,2,29,31],[1005,1,1,31,32],[1008,1,1,32,33],[1010,1,1,33,34],[1011,1,1,34,35],[1012,2,2,35,37],[1017,1,1,37,38]]],[43,5,5,38,43,[[1034,1,1,38,39],[1037,1,1,39,40],[1038,1,1,40,41],[1043,1,1,41,42],[1045,1,1,42,43]]],[44,1,1,43,44,[[1059,1,1,43,44]]],[45,7,6,44,50,[[1065,1,1,44,45],[1068,2,1,45,46],[1069,2,2,46,48],[1074,2,2,48,50]]],[46,2,1,50,51,[[1089,2,1,50,51]]],[47,3,3,51,54,[[1092,1,1,51,52],[1094,1,1,52,53],[1095,1,1,53,54]]],[49,1,1,54,55,[[1103,1,1,54,55]]],[53,2,2,55,57,[[1122,1,1,55,56],[1124,1,1,56,57]]],[55,1,1,57,58,[[1129,1,1,57,58]]],[56,1,1,58,59,[[1132,1,1,58,59]]],[57,2,2,59,61,[[1134,1,1,59,60],[1139,1,1,60,61]]],[65,1,1,61,62,[[1169,1,1,61,62]]]],[23247,23443,23720,23845,23934,23936,24116,24141,24153,24478,24567,24653,24814,24815,24829,24830,24831,25065,25112,25382,25461,25944,25950,25976,26147,26229,26240,26320,26354,26409,26435,26473,26599,26698,26704,26749,26750,26901,27544,27646,27688,27854,27916,28294,28437,28506,28529,28531,28667,28668,29033,29087,29132,29164,29381,29751,29795,29907,29952,29985,30078,30763]]],["nought",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27095]]],["ought",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24475]]],["thing",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24881]]],["things",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25337]]]]},{"k":"G3763","v":[["*",[16,15,[[39,5,5,0,5,[[935,1,1,0,1],[937,1,1,1,2],[949,2,2,2,4],[954,1,1,4,5]]],[40,2,2,5,7,[[958,2,2,5,7]]],[41,2,1,7,8,[[987,2,1,7,8]]],[42,1,1,8,9,[[1003,1,1,8,9]]],[43,3,3,9,12,[[1027,1,1,9,10],[1028,1,1,10,11],[1031,1,1,11,12]]],[45,1,1,12,13,[[1074,1,1,12,13]]],[57,2,2,13,15,[[1142,2,2,13,15]]]],[23339,23412,23842,23868,24087,24272,24285,25617,26374,27273,27315,27422,28673,30134,30144]]],["Never",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26374]]],["never",[13,13,[[39,5,5,0,5,[[935,1,1,0,1],[937,1,1,1,2],[949,2,2,2,4],[954,1,1,4,5]]],[40,2,2,5,7,[[958,2,2,5,7]]],[41,1,1,7,8,[[987,1,1,7,8]]],[43,2,2,8,10,[[1027,1,1,8,9],[1031,1,1,9,10]]],[45,1,1,10,11,[[1074,1,1,10,11]]],[57,2,2,11,13,[[1142,2,2,11,13]]]],[23339,23412,23842,23868,24087,24272,24285,25617,27273,27422,28673,30134,30144]]],["time",[2,2,[[41,1,1,0,1,[[987,1,1,0,1]]],[43,1,1,1,2,[[1028,1,1,1,2]]]],[25617,27315]]]]},{"k":"G3764","v":[["*",[5,5,[[41,1,1,0,1,[[995,1,1,0,1]]],[42,3,3,1,4,[[1003,1,1,1,2],[1015,1,1,2,3],[1016,1,1,3,4]]],[45,1,1,4,5,[[1069,1,1,4,5]]]],[25988,26367,26866,26876,28529]]],["+",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[42,2,2,1,3,[[1015,1,1,1,2],[1016,1,1,2,3]]]],[25988,26866,26876]]],["yet",[2,2,[[42,1,1,0,1,[[1003,1,1,0,1]]],[45,1,1,1,2,[[1069,1,1,1,2]]]],[26367,28529]]]]},{"k":"G3765","v":[["*",[39,35,[[39,2,2,0,2,[[947,1,1,0,1],[950,1,1,1,2]]],[40,6,6,2,8,[[963,1,1,2,3],[965,1,1,3,4],[966,1,1,4,5],[968,1,1,5,6],[970,1,1,6,7],[971,1,1,7,8]]],[41,4,4,8,12,[[987,2,2,8,10],[992,1,1,10,11],[994,1,1,11,12]]],[42,3,3,12,15,[[1000,1,1,12,13],[1002,1,1,13,14],[1011,1,1,14,15]]],[43,3,3,15,18,[[1025,1,1,15,16],[1037,2,2,16,18]]],[44,9,5,18,23,[[1051,2,1,18,19],[1052,2,2,19,21],[1056,4,1,21,22],[1059,1,1,22,23]]],[46,2,2,23,25,[[1078,1,1,23,24],[1082,1,1,24,25]]],[47,4,4,25,29,[[1092,1,1,25,26],[1093,2,2,26,28],[1094,1,1,28,29]]],[48,1,1,29,30,[[1098,1,1,29,30]]],[56,1,1,30,31,[[1132,1,1,30,31]]],[57,2,2,31,33,[[1142,2,2,31,33]]],[65,2,2,33,35,[[1184,2,2,33,35]]]],[23768,23918,24475,24546,24596,24707,24779,24831,25607,25609,25819,25880,26198,26323,26714,27215,27651,27664,28077,28108,28111,28215,28295,28823,28893,29101,29120,29127,29138,29248,29954,30151,30159,31004,31007]]],["+",[4,4,[[42,1,1,0,1,[[1011,1,1,0,1]]],[44,2,2,1,3,[[1051,1,1,1,2],[1059,1,1,2,3]]],[65,1,1,3,4,[[1184,1,1,3,4]]]],[26714,28077,28295,31007]]],["Now",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26198]]],["longer",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29127]]],["more",[27,24,[[39,2,2,0,2,[[947,1,1,0,1],[950,1,1,1,2]]],[40,4,4,2,6,[[963,1,1,2,3],[965,1,1,3,4],[966,1,1,4,5],[970,1,1,5,6]]],[41,3,3,6,9,[[987,2,2,6,8],[994,1,1,8,9]]],[42,1,1,9,10,[[1002,1,1,9,10]]],[43,3,3,10,13,[[1025,1,1,10,11],[1037,2,2,11,13]]],[44,7,4,13,17,[[1051,1,1,13,14],[1052,2,2,14,16],[1056,4,1,16,17]]],[46,1,1,17,18,[[1082,1,1,17,18]]],[47,2,2,18,20,[[1093,1,1,18,19],[1094,1,1,19,20]]],[48,1,1,20,21,[[1098,1,1,20,21]]],[57,2,2,21,23,[[1142,2,2,21,23]]],[65,1,1,23,24,[[1184,1,1,23,24]]]],[23768,23918,24475,24546,24596,24779,25607,25609,25880,26323,27215,27651,27664,28077,28108,28111,28215,28893,29120,29138,29248,30151,30159,31004]]],["not",[2,2,[[41,1,1,0,1,[[992,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]]],[25819,29101]]],["now",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29954]]],["that",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24707]]],["yet",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]]],[24831,28823]]]]},{"k":"G3766","v":[["then",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26822]]]]},{"k":"G3767","v":[["*",[526,518,[[39,55,55,0,55,[[929,1,1,0,1],[931,2,2,1,3],[933,3,3,3,6],[934,7,7,6,13],[935,3,3,13,16],[937,1,1,16,17],[938,4,4,17,21],[940,2,2,21,23],[941,5,5,23,28],[945,1,1,28,29],[946,3,3,29,32],[947,2,2,32,34],[949,2,2,34,36],[950,6,6,36,42],[951,2,2,42,44],[952,3,3,44,47],[953,3,3,47,50],[954,1,1,50,51],[955,3,3,51,54],[956,1,1,54,55]]],[40,11,11,55,66,[[959,1,1,55,56],[966,1,1,56,57],[967,1,1,57,58],[968,5,5,58,63],[969,1,1,63,64],[971,1,1,64,65],[972,1,1,65,66]]],[41,45,44,66,110,[[975,5,5,66,71],[976,1,1,71,72],[978,2,2,72,74],[979,2,2,74,76],[980,1,1,76,77],[982,5,4,77,81],[983,4,4,81,85],[984,3,3,85,88],[985,2,2,88,90],[986,1,1,90,91],[987,1,1,91,92],[988,2,2,92,94],[991,1,1,94,95],[992,6,6,95,101],[993,4,4,101,105],[994,2,2,105,107],[995,3,3,107,110]]],[42,200,196,110,306,[[997,3,3,110,113],[998,3,3,113,116],[999,2,2,116,118],[1000,14,14,118,132],[1001,5,5,132,137],[1002,23,22,137,159],[1003,12,12,159,171],[1004,17,17,171,188],[1005,12,12,188,200],[1006,5,5,200,205],[1007,19,19,205,224],[1008,13,13,224,237],[1009,7,7,237,244],[1012,4,4,244,248],[1014,22,21,248,269],[1015,21,20,269,289],[1016,10,10,289,299],[1017,8,7,299,306]]],[43,68,66,306,372,[[1018,3,3,306,309],[1019,4,4,309,313],[1020,1,1,313,314],[1022,1,1,314,315],[1023,1,1,315,316],[1025,4,3,316,319],[1026,1,1,319,320],[1027,5,4,320,324],[1028,2,2,324,326],[1029,1,1,326,327],[1030,3,3,327,330],[1031,1,1,330,331],[1032,6,6,331,337],[1033,3,3,337,340],[1034,6,6,340,346],[1035,1,1,346,347],[1036,4,4,347,351],[1037,1,1,351,352],[1038,2,2,352,354],[1039,1,1,354,355],[1040,5,5,355,360],[1042,5,5,360,365],[1043,3,3,365,368],[1045,4,4,368,372]]],[44,49,49,372,421,[[1047,2,2,372,374],[1048,5,5,374,379],[1049,3,3,379,382],[1050,3,3,382,385],[1051,5,5,385,390],[1052,4,4,390,394],[1053,2,2,394,396],[1054,5,5,396,401],[1055,1,1,401,402],[1056,6,6,402,408],[1057,2,2,408,410],[1058,3,3,410,413],[1059,5,5,413,418],[1060,2,2,418,420],[1061,1,1,420,421]]],[45,20,20,421,441,[[1064,1,1,421,422],[1065,1,1,422,423],[1066,1,1,423,424],[1067,3,3,424,427],[1068,1,1,427,428],[1069,1,1,428,429],[1070,2,2,429,431],[1071,2,2,431,433],[1072,1,1,433,434],[1075,4,4,434,438],[1076,1,1,438,439],[1077,2,2,439,441]]],[46,11,11,441,452,[[1078,1,1,441,442],[1080,1,1,442,443],[1082,3,3,443,446],[1084,2,2,446,448],[1085,1,1,448,449],[1086,1,1,449,450],[1088,1,1,450,451],[1089,1,1,451,452]]],[47,6,6,452,458,[[1093,3,3,452,455],[1094,1,1,455,456],[1095,1,1,456,457],[1096,1,1,457,458]]],[48,7,7,458,465,[[1098,1,1,458,459],[1100,2,2,459,461],[1101,3,3,461,464],[1102,1,1,464,465]]],[49,5,5,465,470,[[1104,4,4,465,469],[1105,1,1,469,470]]],[50,6,6,470,476,[[1108,3,3,470,473],[1109,3,3,473,476]]],[51,2,2,476,478,[[1114,1,1,476,477],[1115,1,1,477,478]]],[52,1,1,478,479,[[1117,1,1,478,479]]],[53,4,4,479,483,[[1120,2,2,479,481],[1121,1,1,481,482],[1123,1,1,482,483]]],[54,5,5,483,488,[[1125,1,1,483,484],[1126,3,3,484,487],[1128,1,1,487,488]]],[56,1,1,488,489,[[1132,1,1,488,489]]],[57,12,12,489,501,[[1134,1,1,489,490],[1136,5,5,490,495],[1139,1,1,495,496],[1141,2,2,496,498],[1142,2,2,498,500],[1145,1,1,500,501]]],[58,4,4,501,505,[[1149,3,3,501,504],[1150,1,1,504,505]]],[59,6,6,505,511,[[1152,3,3,505,508],[1154,2,2,508,510],[1155,1,1,510,511]]],[60,2,2,511,513,[[1158,2,2,511,513]]],[61,1,1,513,514,[[1160,1,1,513,514]]],[63,1,1,514,515,[[1165,1,1,514,515]]],[65,4,3,515,518,[[1168,1,1,515,516],[1169,3,2,516,518]]]],[23161,23200,23202,23253,23257,23282,23284,23290,23291,23304,23305,23313,23316,23327,23328,23340,23417,23433,23443,23448,23449,23501,23515,23557,23566,23567,23579,23595,23710,23731,23753,23756,23768,23769,23851,23866,23881,23889,23893,23900,23915,23917,23921,23938,23972,23983,23999,24021,24035,24036,24108,24146,24151,24193,24214,24319,24597,24671,24679,24682,24696,24700,24710,24752,24838,24892,25032,25033,25034,25035,25043,25070,25155,25182,25226,25237,25263,25365,25399,25400,25403,25418,25439,25440,25441,25466,25485,25499,25532,25533,25586,25616,25631,25647,25743,25784,25794,25796,25808,25812,25823,25833,25834,25840,25862,25900,25934,25951,25955,25957,26065,26066,26069,26113,26115,26117,26145,26149,26157,26161,26162,26165,26167,26184,26186,26189,26196,26201,26202,26204,26208,26209,26214,26220,26222,26228,26229,26262,26267,26270,26271,26272,26276,26278,26281,26285,26287,26289,26291,26298,26299,26300,26302,26309,26310,26317,26319,26324,26325,26331,26334,26339,26353,26356,26358,26361,26363,26368,26371,26373,26375,26386,26393,26394,26400,26402,26403,26405,26406,26409,26412,26417,26419,26422,26429,26433,26438,26440,26447,26448,26450,26452,26455,26456,26458,26459,26464,26465,26468,26481,26488,26500,26505,26512,26520,26526,26529,26535,26537,26539,26540,26543,26544,26554,26555,26556,26559,26561,26564,26568,26570,26576,26577,26579,26581,26582,26583,26584,26587,26589,26597,26599,26601,26608,26609,26615,26630,26636,26642,26644,26652,26654,26657,26660,26743,26744,26745,26748,26788,26789,26791,26792,26793,26795,26796,26797,26801,26802,26804,26809,26810,26812,26813,26814,26816,26818,26822,26824,26825,26826,26829,26830,26831,26833,26835,26838,26841,26845,26846,26848,26849,26851,26854,26855,26856,26857,26863,26865,26867,26869,26870,26873,26875,26877,26878,26886,26887,26888,26892,26903,26904,26905,26907,26911,26913,26921,26929,26941,26944,26979,26982,26985,26990,27015,27100,27104,27180,27198,27201,27247,27282,27288,27291,27292,27324,27326,27342,27366,27400,27402,27417,27444,27445,27452,27469,27472,27481,27488,27494,27519,27535,27540,27543,27546,27552,27553,27571,27588,27617,27621,27623,27654,27686,27687,27733,27749,27752,27755,27756,27765,27797,27800,27801,27813,27819,27827,27832,27845,27904,27908,27919,27927,27983,27988,27992,28000,28018,28019,28022,28023,28031,28032,28048,28056,28065,28069,28072,28080,28083,28089,28094,28098,28104,28116,28128,28147,28169,28171,28173,28174,28185,28202,28210,28214,28216,28220,28228,28231,28246,28265,28273,28276,28278,28288,28292,28293,28296,28299,28320,28331,28355,28415,28449,28461,28471,28474,28482,28513,28531,28558,28565,28586,28598,28620,28689,28693,28701,28704,28729,28787,28794,28817,28853,28883,28888,28897,28917,28932,28956,28961,29004,29031,29107,29121,29123,29146,29163,29198,29248,29273,29289,29305,29311,29319,29351,29392,29414,29419,29420,29436,29500,29510,29514,29518,29522,29529,29604,29627,29676,29717,29724,29733,29777,29817,29828,29830,29848,29871,29955,29991,30015,30020,30025,30028,30030,30075,30106,30128,30152,30168,30256,30341,30344,30354,30361,30400,30406,30412,30447,30453,30471,30533,30539,30574,30666,30722,30749,30765]]],["+",[35,35,[[39,2,2,0,2,[[934,1,1,0,1],[951,1,1,1,2]]],[41,1,1,2,3,[[975,1,1,2,3]]],[42,7,7,3,10,[[1001,1,1,3,4],[1005,1,1,4,5],[1007,1,1,5,6],[1012,1,1,6,7],[1014,1,1,7,8],[1015,1,1,8,9],[1017,1,1,9,10]]],[43,11,11,10,21,[[1022,1,1,10,11],[1025,2,2,11,13],[1026,1,1,13,14],[1034,1,1,14,15],[1035,1,1,15,16],[1036,1,1,16,17],[1040,1,1,17,18],[1042,1,1,18,19],[1043,2,2,19,21]]],[44,7,7,21,28,[[1047,1,1,21,22],[1050,1,1,22,23],[1051,1,1,23,24],[1053,1,1,24,25],[1054,1,1,25,26],[1059,2,2,26,28]]],[45,1,1,28,29,[[1067,1,1,28,29]]],[47,2,2,29,31,[[1093,1,1,29,30],[1096,1,1,30,31]]],[49,1,1,31,32,[[1104,1,1,31,32]]],[51,1,1,32,33,[[1115,1,1,32,33]]],[52,1,1,33,34,[[1117,1,1,33,34]]],[59,1,1,34,35,[[1154,1,1,34,35]]]],[23316,23938,25043,26228,26465,26537,26748,26791,26849,26907,27100,27180,27201,27247,27553,27571,27617,27765,27800,27827,27832,27983,28065,28089,28128,28173,28293,28299,28474,29107,29198,29392,29627,29676,30453]]],["-",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26582]]],["And",[7,7,[[39,1,1,0,1,[[946,1,1,0,1]]],[43,6,6,1,7,[[1025,1,1,1,2],[1032,2,2,2,4],[1033,1,1,4,5],[1042,1,1,5,6],[1045,1,1,6,7]]]],[23756,27201,27445,27481,27488,27819,27904]]],["But",[2,2,[[42,1,1,0,1,[[1005,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[26458,27755]]],["Now",[8,8,[[42,4,4,0,4,[[1012,1,1,0,1],[1014,1,1,1,2],[1015,1,1,2,3],[1017,1,1,3,4]]],[43,3,3,4,7,[[1018,1,1,4,5],[1028,1,1,5,6],[1042,1,1,6,7]]],[45,1,1,7,8,[[1070,1,1,7,8]]]],[26745,26809,26854,26905,26941,27326,27797,28565]]],["So",[16,16,[[39,1,1,0,1,[[929,1,1,0,1]]],[40,1,1,1,2,[[972,1,1,1,2]]],[41,1,1,2,3,[[986,1,1,2,3]]],[42,8,8,3,11,[[1000,3,3,3,6],[1002,2,2,6,8],[1003,1,1,8,9],[1009,1,1,9,10],[1017,1,1,10,11]]],[43,5,5,11,16,[[1030,1,1,11,12],[1032,1,1,12,13],[1040,2,2,13,15],[1045,1,1,15,16]]]],[23161,24892,25586,26196,26202,26209,26267,26276,26371,26642,26913,27366,27472,27752,27756,27908]]],["Then",[102,102,[[41,4,4,0,4,[[975,1,1,0,1],[978,1,1,1,2],[982,1,1,2,3],[994,1,1,3,4]]],[42,94,94,4,98,[[997,1,1,4,5],[998,2,2,5,7],[999,1,1,7,8],[1000,6,6,8,14],[1001,2,2,14,16],[1002,8,8,16,24],[1003,9,9,24,33],[1004,12,12,33,45],[1005,4,4,45,49],[1006,3,3,49,52],[1007,12,12,52,64],[1008,6,6,64,70],[1009,3,3,70,73],[1012,1,1,73,74],[1014,10,10,74,84],[1015,6,6,84,90],[1016,6,6,90,96],[1017,2,2,96,98]]],[43,3,3,98,101,[[1019,1,1,98,99],[1027,1,1,99,100],[1039,1,1,100,101]]],[57,1,1,101,102,[[1141,1,1,101,102]]]],[25032,25155,25400,25900,26066,26113,26115,26145,26161,26165,26186,26201,26204,26208,26222,26229,26271,26278,26285,26289,26291,26310,26324,26325,26334,26339,26353,26356,26358,26361,26363,26373,26375,26393,26400,26402,26403,26406,26409,26412,26422,26429,26433,26438,26440,26452,26455,26464,26468,26488,26505,26512,26535,26539,26540,26543,26544,26555,26559,26564,26568,26570,26576,26579,26581,26583,26584,26587,26608,26615,26636,26652,26657,26743,26792,26795,26796,26797,26801,26802,26813,26816,26818,26825,26830,26835,26846,26848,26857,26865,26869,26873,26877,26886,26887,26888,26903,26921,26990,27282,27733,30106]]],["Therefore",[34,34,[[39,7,7,0,7,[[933,1,1,0,1],[934,2,2,1,3],[935,2,2,3,5],[950,1,1,5,6],[955,1,1,6,7]]],[41,2,2,7,9,[[982,1,1,7,8],[992,1,1,8,9]]],[42,7,7,9,16,[[1000,1,1,9,10],[1002,1,1,10,11],[1005,2,2,11,13],[1006,1,1,13,14],[1007,1,1,14,15],[1017,1,1,15,16]]],[43,7,7,16,23,[[1019,3,3,16,19],[1033,1,1,19,20],[1034,2,2,20,22],[1042,1,1,22,23]]],[44,5,5,23,28,[[1047,1,1,23,24],[1048,1,1,24,25],[1050,1,1,25,26],[1051,1,1,26,27],[1057,1,1,27,28]]],[45,2,2,28,30,[[1075,1,1,28,29],[1076,1,1,29,30]]],[46,3,3,30,33,[[1082,1,1,30,31],[1086,1,1,31,32],[1088,1,1,32,33]]],[58,1,1,33,34,[[1149,1,1,33,34]]]],[23257,23284,23313,23328,23340,23900,24146,25365,25812,26189,26270,26450,26456,26520,26526,26905,26979,26982,26985,27494,27535,27540,27813,27988,28019,28048,28072,28265,28689,28729,28883,28961,29004,30354]]],["Wherefore",[8,8,[[39,1,1,0,1,[[952,1,1,0,1]]],[43,3,3,1,4,[[1018,1,1,1,2],[1023,1,1,2,3],[1036,1,1,3,4]]],[45,1,1,4,5,[[1065,1,1,4,5]]],[46,1,1,5,6,[[1085,1,1,5,6]]],[50,1,1,6,7,[[1108,1,1,6,7]]],[59,1,1,7,8,[[1152,1,1,7,8]]]],[23983,26944,27104,27623,28449,28956,29514,30400]]],["and",[2,2,[[42,2,2,0,2,[[1002,1,1,0,1],[1016,1,1,1,2]]]],[26319,26878]]],["but",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26386]]],["have",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26419]]],["now",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25399]]],["shall",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25833]]],["that",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26875]]],["then",[94,94,[[39,13,13,0,13,[[935,1,1,0,1],[940,2,2,1,3],[941,3,3,3,6],[945,1,1,6,7],[947,1,1,7,8],[949,1,1,8,9],[950,2,2,9,11],[954,1,1,11,12],[955,1,1,12,13]]],[40,3,3,13,16,[[959,1,1,13,14],[967,1,1,14,15],[971,1,1,15,16]]],[41,8,8,16,24,[[975,1,1,16,17],[979,1,1,17,18],[983,1,1,18,19],[984,1,1,19,20],[985,1,1,20,21],[992,2,2,21,23],[994,1,1,23,24]]],[42,19,19,24,43,[[997,2,2,24,26],[1000,2,2,26,28],[1001,1,1,28,29],[1002,4,4,29,33],[1005,1,1,33,34],[1007,1,1,34,35],[1009,2,2,35,37],[1014,4,4,37,41],[1015,1,1,41,42],[1017,1,1,42,43]]],[43,4,4,43,47,[[1028,1,1,43,44],[1034,1,1,44,45],[1036,2,2,45,47]]],[44,27,27,47,74,[[1048,4,4,47,51],[1049,3,3,51,54],[1050,1,1,54,55],[1051,2,2,55,57],[1052,4,4,57,61],[1053,1,1,61,62],[1054,4,4,62,66],[1055,1,1,66,67],[1056,5,5,67,72],[1059,2,2,72,74]]],[45,7,7,74,81,[[1064,1,1,74,75],[1067,2,2,75,77],[1070,1,1,77,78],[1071,1,1,78,79],[1075,2,2,79,81]]],[46,2,2,81,83,[[1080,1,1,81,82],[1082,1,1,82,83]]],[47,3,3,83,86,[[1093,2,2,83,85],[1094,1,1,85,86]]],[48,1,1,86,87,[[1101,1,1,86,87]]],[50,1,1,87,88,[[1109,1,1,87,88]]],[51,1,1,88,89,[[1114,1,1,88,89]]],[53,1,1,89,90,[[1121,1,1,89,90]]],[57,2,2,90,92,[[1134,1,1,90,91],[1136,1,1,91,92]]],[59,1,1,92,93,[[1154,1,1,92,93]]],[60,1,1,93,94,[[1158,1,1,93,94]]]],[23327,23501,23515,23566,23567,23595,23710,23769,23851,23915,23917,24108,24151,24319,24671,24838,25035,25226,25418,25485,25533,25784,25796,25934,26065,26069,26167,26184,26214,26262,26287,26298,26299,26459,26554,26644,26660,26788,26804,26812,26814,26845,26911,27324,27552,27588,27621,27992,28000,28018,28022,28023,28031,28032,28056,28069,28083,28094,28098,28104,28116,28147,28169,28171,28174,28185,28202,28210,28214,28216,28220,28228,28292,28296,28415,28471,28482,28558,28586,28693,28704,28853,28897,29121,29123,29146,29319,29518,29604,29733,29991,30028,30447,30533]]],["therefore",[211,209,[[39,30,30,0,30,[[931,2,2,0,2],[933,2,2,2,4],[934,4,4,4,8],[937,1,1,8,9],[938,4,4,9,13],[941,2,2,13,15],[946,2,2,15,17],[947,1,1,17,18],[949,1,1,18,19],[950,3,3,19,22],[951,1,1,22,23],[952,2,2,23,25],[953,3,3,25,28],[955,1,1,28,29],[956,1,1,29,30]]],[40,7,7,30,37,[[966,1,1,30,31],[968,5,5,31,36],[969,1,1,36,37]]],[41,27,27,37,64,[[975,2,2,37,39],[976,1,1,39,40],[978,1,1,40,41],[979,1,1,41,42],[980,1,1,42,43],[982,2,2,43,45],[983,3,3,45,48],[984,2,2,48,50],[985,1,1,50,51],[987,1,1,51,52],[988,2,2,52,54],[991,1,1,54,55],[992,3,3,55,58],[993,3,3,58,61],[995,3,3,61,64]]],[42,54,54,64,118,[[998,1,1,64,65],[999,1,1,65,66],[1000,2,2,66,68],[1001,1,1,68,69],[1002,7,7,69,76],[1003,2,2,76,78],[1004,3,3,78,81],[1005,3,3,81,84],[1006,1,1,84,85],[1007,4,4,85,89],[1008,6,6,89,95],[1009,1,1,95,96],[1012,1,1,96,97],[1014,6,6,97,103],[1015,12,12,103,115],[1016,2,2,115,117],[1017,1,1,117,118]]],[43,25,24,118,142,[[1018,1,1,118,119],[1020,1,1,119,120],[1025,1,1,120,121],[1027,4,3,121,124],[1029,1,1,124,125],[1030,2,2,125,127],[1031,1,1,127,128],[1032,3,3,128,131],[1033,1,1,131,132],[1034,2,2,132,134],[1037,1,1,134,135],[1038,2,2,135,137],[1040,1,1,137,138],[1042,1,1,138,139],[1043,1,1,139,140],[1045,2,2,140,142]]],[44,10,10,142,152,[[1051,1,1,142,143],[1056,1,1,143,144],[1057,1,1,144,145],[1058,3,3,145,148],[1059,1,1,148,149],[1060,2,2,149,151],[1061,1,1,151,152]]],[45,8,8,152,160,[[1066,1,1,152,153],[1068,1,1,153,154],[1069,1,1,154,155],[1071,1,1,155,156],[1072,1,1,156,157],[1075,1,1,157,158],[1077,2,2,158,160]]],[46,5,5,160,165,[[1078,1,1,160,161],[1082,1,1,161,162],[1084,2,2,162,164],[1089,1,1,164,165]]],[47,1,1,165,166,[[1095,1,1,165,166]]],[48,6,6,166,172,[[1098,1,1,166,167],[1100,2,2,167,169],[1101,2,2,169,171],[1102,1,1,171,172]]],[49,4,4,172,176,[[1104,3,3,172,175],[1105,1,1,175,176]]],[50,4,4,176,180,[[1108,2,2,176,178],[1109,2,2,178,180]]],[53,3,3,180,183,[[1120,2,2,180,182],[1123,1,1,182,183]]],[54,5,5,183,188,[[1125,1,1,183,184],[1126,3,3,184,187],[1128,1,1,187,188]]],[56,1,1,188,189,[[1132,1,1,188,189]]],[57,9,9,189,198,[[1136,4,4,189,193],[1139,1,1,193,194],[1141,1,1,194,195],[1142,2,2,195,197],[1145,1,1,197,198]]],[58,3,3,198,201,[[1149,2,2,198,200],[1150,1,1,200,201]]],[59,2,2,201,203,[[1152,1,1,201,202],[1155,1,1,202,203]]],[60,1,1,203,204,[[1158,1,1,203,204]]],[61,1,1,204,205,[[1160,1,1,204,205]]],[63,1,1,205,206,[[1165,1,1,205,206]]],[65,4,3,206,209,[[1168,1,1,206,207],[1169,3,2,207,209]]]],[23200,23202,23253,23282,23290,23291,23304,23305,23417,23433,23443,23448,23449,23557,23579,23731,23753,23768,23866,23881,23889,23893,23921,23972,23999,24021,24035,24036,24193,24214,24597,24679,24682,24696,24700,24710,24752,25033,25034,25070,25182,25237,25263,25365,25403,25439,25440,25441,25466,25499,25532,25616,25631,25647,25743,25794,25808,25823,25834,25840,25862,25951,25955,25957,26117,26149,26157,26162,26220,26272,26281,26287,26300,26302,26309,26317,26331,26368,26394,26405,26417,26447,26448,26481,26500,26529,26556,26561,26577,26589,26597,26599,26601,26609,26630,26654,26744,26789,26793,26810,26816,26822,26824,26826,26829,26831,26833,26838,26841,26849,26851,26855,26856,26863,26867,26870,26892,26904,26929,27015,27198,27288,27291,27292,27342,27400,27402,27417,27444,27452,27469,27519,27543,27546,27654,27686,27687,27749,27801,27845,27919,27927,28080,28231,28246,28273,28276,28278,28288,28320,28331,28355,28461,28513,28531,28598,28620,28701,28787,28794,28817,28888,28917,28932,29031,29163,29248,29273,29289,29305,29311,29351,29414,29419,29420,29436,29500,29510,29522,29529,29717,29724,29777,29817,29828,29830,29848,29871,29955,30015,30020,30025,30030,30075,30128,30152,30168,30256,30341,30344,30361,30406,30471,30539,30574,30666,30722,30749,30765]]],["to",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30412]]]]},{"k":"G3768","v":[["*",[23,22,[[39,3,3,0,3,[[943,1,1,0,1],[944,1,1,1,2],[952,1,1,2,3]]],[40,2,2,3,5,[[964,1,1,3,4],[969,1,1,4,5]]],[42,11,10,5,15,[[998,1,1,5,6],[999,1,1,6,7],[1003,5,4,7,11],[1004,2,2,11,13],[1007,1,1,13,14],[1016,1,1,14,15]]],[43,1,1,15,16,[[1025,1,1,15,16]]],[45,1,1,16,17,[[1064,1,1,16,17]]],[57,2,2,17,19,[[1134,1,1,17,18],[1144,1,1,18,19]]],[61,1,1,19,20,[[1161,1,1,19,20]]],[65,2,2,20,22,[[1183,2,2,20,22]]]],[23650,23681,23963,24517,24724,26099,26144,26334,26336,26358,26367,26401,26438,26553,26884,27192,28412,29985,30216,30581,30985,30987]]],["+",[3,3,[[42,1,1,0,1,[[1003,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]],[65,1,1,2,3,[[1183,1,1,2,3]]]],[26336,28412,30987]]],["yet",[20,20,[[39,3,3,0,3,[[943,1,1,0,1],[944,1,1,1,2],[952,1,1,2,3]]],[40,2,2,3,5,[[964,1,1,3,4],[969,1,1,4,5]]],[42,10,10,5,15,[[998,1,1,5,6],[999,1,1,6,7],[1003,4,4,7,11],[1004,2,2,11,13],[1007,1,1,13,14],[1016,1,1,14,15]]],[43,1,1,15,16,[[1025,1,1,15,16]]],[57,2,2,16,18,[[1134,1,1,16,17],[1144,1,1,17,18]]],[61,1,1,18,19,[[1161,1,1,18,19]]],[65,1,1,19,20,[[1183,1,1,19,20]]]],[23650,23681,23963,24517,24724,26099,26144,26334,26336,26358,26367,26401,26438,26553,26884,27192,29985,30216,30581,30985]]]]},{"k":"G3769","v":[["*",[5,3,[[65,5,3,0,3,[[1175,4,2,0,2],[1178,1,1,2,3]]]],[30850,30859,30895]]],["tail",[1,1,[[65,1,1,0,1,[[1178,1,1,0,1]]]],[30895]]],["tails",[4,2,[[65,4,2,0,2,[[1175,4,2,0,2]]]],[30850,30859]]]]},{"k":"G3770","v":[["heavenly",[6,6,[[39,4,4,0,4,[[934,3,3,0,3],[943,1,1,3,4]]],[41,1,1,4,5,[[974,1,1,4,5]]],[43,1,1,5,6,[[1043,1,1,5,6]]]],[23296,23308,23314,23646,24986,27842]]]]},{"k":"G3771","v":[["heaven",[2,2,[[43,2,2,0,2,[[1031,1,1,0,1],[1043,1,1,1,2]]]],[27431,27836]]]]},{"k":"G3772","v":[["*",[284,264,[[39,84,74,0,74,[[931,3,3,0,3],[932,1,1,3,4],[933,11,10,4,14],[934,5,5,14,19],[935,3,2,19,21],[936,2,2,21,23],[938,3,3,23,26],[939,4,4,26,30],[940,1,1,30,31],[941,9,9,31,40],[942,1,1,40,41],[944,8,5,41,46],[946,10,8,46,54],[947,4,4,54,58],[948,1,1,58,59],[949,2,1,59,60],[950,2,2,60,62],[951,3,3,62,65],[952,7,5,65,70],[953,1,1,70,71],[954,1,1,71,72],[956,2,2,72,74]]],[40,20,19,74,93,[[957,2,2,74,76],[960,2,2,76,78],[962,1,1,78,79],[963,1,1,79,80],[964,1,1,80,81],[966,1,1,81,82],[967,4,4,82,86],[968,1,1,86,87],[969,5,4,87,91],[970,1,1,91,92],[972,1,1,92,93]]],[41,37,35,93,128,[[974,1,1,93,94],[975,2,2,94,96],[976,1,1,96,97],[978,1,1,97,98],[980,1,1,98,99],[981,3,3,99,102],[982,4,4,102,106],[983,4,3,106,109],[984,2,2,109,111],[985,1,1,111,112],[987,3,3,112,115],[988,1,1,115,116],[989,3,2,116,118],[990,2,2,118,120],[991,1,1,120,121],[992,2,2,121,123],[993,3,3,123,126],[994,1,1,126,127],[996,1,1,127,128]]],[42,19,16,128,144,[[997,2,2,128,130],[999,5,3,130,133],[1002,10,9,133,142],[1008,1,1,142,143],[1013,1,1,143,144]]],[43,26,24,144,168,[[1018,4,2,144,146],[1019,4,4,146,150],[1020,1,1,150,151],[1021,2,2,151,153],[1024,4,4,153,157],[1026,1,1,157,158],[1027,3,3,158,161],[1028,4,4,161,165],[1031,1,1,165,166],[1034,1,1,166,167],[1039,1,1,167,168]]],[44,2,2,168,170,[[1046,1,1,168,169],[1055,1,1,169,170]]],[45,2,2,170,172,[[1069,1,1,170,171],[1076,1,1,171,172]]],[46,3,3,172,175,[[1082,2,2,172,174],[1089,1,1,174,175]]],[47,1,1,175,176,[[1091,1,1,175,176]]],[48,4,4,176,180,[[1097,1,1,176,177],[1099,1,1,177,178],[1100,1,1,178,179],[1102,1,1,179,180]]],[49,1,1,180,181,[[1105,1,1,180,181]]],[50,5,5,181,186,[[1107,4,4,181,185],[1110,1,1,185,186]]],[51,2,2,186,188,[[1111,1,1,186,187],[1114,1,1,187,188]]],[52,1,1,188,189,[[1116,1,1,188,189]]],[57,11,11,189,200,[[1133,1,1,189,190],[1136,1,1,190,191],[1139,1,1,191,192],[1140,1,1,192,193],[1141,2,2,193,195],[1142,1,1,195,196],[1143,1,1,196,197],[1144,3,3,197,200]]],[58,2,2,200,202,[[1150,2,2,200,202]]],[59,3,3,202,205,[[1151,2,2,202,204],[1153,1,1,204,205]]],[60,6,6,205,211,[[1156,1,1,205,206],[1158,5,5,206,211]]],[61,1,1,211,212,[[1163,1,1,211,212]]],[65,54,52,212,264,[[1169,1,1,212,213],[1170,2,2,213,215],[1171,2,2,215,217],[1172,2,2,217,219],[1174,2,2,219,221],[1175,1,1,221,222],[1176,5,5,222,227],[1177,6,5,227,232],[1178,7,7,232,239],[1179,2,2,239,241],[1180,4,4,241,245],[1181,2,2,245,247],[1182,3,3,247,250],[1184,4,4,250,254],[1185,3,3,254,257],[1186,3,3,257,260],[1187,5,4,260,264]]]],[23194,23208,23209,23226,23237,23244,23246,23250,23252,23253,23254,23268,23279,23282,23283,23291,23292,23302,23308,23327,23337,23356,23365,23424,23449,23450,23470,23471,23482,23484,23539,23550,23563,23570,23571,23572,23583,23584,23586,23591,23616,23673,23674,23675,23689,23691,23728,23730,23731,23737,23741,23745,23746,23750,23774,23776,23783,23785,23793,23851,23874,23902,23927,23931,23940,23986,23987,23988,23992,23993,24009,24118,24197,24213,24225,24226,24327,24355,24448,24497,24511,24609,24665,24666,24670,24671,24698,24742,24744,24748,24749,24816,24892,24988,25046,25047,25088,25169,25250,25317,25355,25359,25378,25381,25383,25384,25407,25418,25421,25492,25515,25537,25595,25606,25609,25637,25675,25680,25701,25710,25769,25783,25784,25837,25852,25859,25907,26042,26076,26095,26133,26147,26151,26288,26289,26290,26295,26298,26299,26307,26308,26315,26608,26760,26933,26934,26951,26954,26968,26983,27017,27034,27046,27158,27165,27171,27172,27219,27270,27271,27275,27312,27313,27316,27317,27429,27547,27710,27948,28194,28532,28765,28878,28879,29024,29065,29216,29266,29282,29346,29441,29470,29481,29485,29488,29543,29570,29619,29656,29973,30028,30090,30093,30128,30129,30167,30184,30235,30237,30238,30366,30372,30378,30386,30446,30497,30527,30529,30532,30534,30535,30631,30758,30769,30770,30782,30792,30806,30807,30828,30837,30841,30862,30865,30866,30867,30869,30878,30884,30885,30887,30891,30892,30894,30895,30898,30899,30901,30903,30914,30921,30928,30933,30939,30943,30947,30951,30965,30971,30975,30994,30997,30998,31013,31018,31028,31031,31039,31047,31049,31054,31055,31056,31063]]],["+",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[983,1,1,2,3]]]],[23774,24988,25418]]],["Heaven",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]],[43,1,1,3,4,[[1024,1,1,3,4]]]],[23992,24748,25859,27165]]],["air",[10,10,[[39,3,3,0,3,[[934,1,1,0,1],[936,1,1,1,2],[941,1,1,2,3]]],[40,2,2,3,5,[[960,2,2,3,5]]],[41,3,3,5,8,[[980,1,1,5,6],[981,1,1,6,7],[985,1,1,7,8]]],[43,2,2,8,10,[[1027,1,1,8,9],[1028,1,1,9,10]]]],[23308,23365,23571,24327,24355,25250,25359,25537,27271,27313]]],["heaven",[243,225,[[39,74,66,0,66,[[931,2,2,0,2],[932,1,1,2,3],[933,11,10,3,13],[934,4,4,13,17],[935,3,2,17,19],[936,1,1,19,20],[938,3,3,20,23],[939,4,4,23,27],[940,1,1,27,28],[941,8,8,28,36],[942,1,1,36,37],[944,5,3,37,40],[946,10,8,40,48],[947,3,3,48,51],[948,1,1,51,52],[949,2,1,52,53],[950,2,2,53,55],[951,3,3,55,58],[952,5,4,58,62],[953,1,1,62,63],[954,1,1,63,64],[956,2,2,64,66]]],[40,16,15,66,81,[[957,1,1,66,67],[962,1,1,67,68],[963,1,1,68,69],[964,1,1,69,70],[966,1,1,70,71],[967,4,4,71,75],[968,1,1,75,76],[969,4,3,76,79],[970,1,1,79,80],[972,1,1,80,81]]],[41,29,27,81,108,[[975,2,2,81,83],[976,1,1,83,84],[978,1,1,84,85],[981,2,2,85,87],[982,4,4,87,91],[983,3,2,91,93],[987,3,3,93,96],[988,1,1,96,97],[989,3,2,97,99],[990,2,2,99,101],[991,1,1,101,102],[992,2,2,102,104],[993,2,2,104,106],[994,1,1,106,107],[996,1,1,107,108]]],[42,19,16,108,124,[[997,2,2,108,110],[999,5,3,110,113],[1002,10,9,113,122],[1008,1,1,122,123],[1013,1,1,123,124]]],[43,21,19,124,143,[[1018,4,2,124,126],[1019,3,3,126,129],[1020,1,1,129,130],[1021,2,2,130,132],[1024,2,2,132,134],[1026,1,1,134,135],[1027,2,2,135,137],[1028,3,3,137,140],[1031,1,1,140,141],[1034,1,1,141,142],[1039,1,1,142,143]]],[44,2,2,143,145,[[1046,1,1,143,144],[1055,1,1,144,145]]],[45,2,2,145,147,[[1069,1,1,145,146],[1076,1,1,146,147]]],[46,2,2,147,149,[[1082,1,1,147,148],[1089,1,1,148,149]]],[47,1,1,149,150,[[1091,1,1,149,150]]],[48,3,3,150,153,[[1097,1,1,150,151],[1099,1,1,151,152],[1102,1,1,152,153]]],[49,1,1,153,154,[[1105,1,1,153,154]]],[50,5,5,154,159,[[1107,4,4,154,158],[1110,1,1,158,159]]],[51,2,2,159,161,[[1111,1,1,159,160],[1114,1,1,160,161]]],[52,1,1,161,162,[[1116,1,1,161,162]]],[57,5,5,162,167,[[1141,1,1,162,163],[1142,1,1,163,164],[1144,3,3,164,167]]],[58,2,2,167,169,[[1150,2,2,167,169]]],[59,3,3,169,172,[[1151,2,2,169,171],[1153,1,1,171,172]]],[60,1,1,172,173,[[1156,1,1,172,173]]],[61,1,1,173,174,[[1163,1,1,173,174]]],[65,53,51,174,225,[[1169,1,1,174,175],[1170,2,2,175,177],[1171,2,2,177,179],[1172,2,2,179,181],[1174,2,2,181,183],[1175,1,1,183,184],[1176,5,5,184,189],[1177,6,5,189,194],[1178,6,6,194,200],[1179,2,2,200,202],[1180,4,4,202,206],[1181,2,2,206,208],[1182,3,3,208,211],[1184,4,4,211,215],[1185,3,3,215,218],[1186,3,3,218,221],[1187,5,4,221,225]]]],[23194,23209,23226,23237,23244,23246,23250,23252,23253,23254,23268,23279,23282,23283,23291,23292,23302,23327,23337,23356,23424,23449,23450,23470,23471,23482,23484,23539,23550,23563,23570,23572,23583,23584,23586,23591,23616,23673,23689,23691,23728,23730,23731,23737,23741,23745,23746,23750,23776,23783,23785,23793,23851,23874,23902,23927,23931,23940,23986,23987,23988,23993,24009,24118,24197,24213,24226,24448,24497,24511,24609,24665,24666,24670,24671,24698,24742,24744,24749,24816,24892,25046,25047,25088,25169,25317,25355,25378,25381,25383,25384,25407,25421,25595,25606,25609,25637,25675,25680,25701,25710,25769,25783,25784,25837,25852,25907,26042,26076,26095,26133,26147,26151,26288,26289,26290,26295,26298,26299,26307,26308,26315,26608,26760,26933,26934,26951,26954,26968,27017,27034,27046,27158,27171,27219,27270,27275,27312,27316,27317,27429,27547,27710,27948,28194,28532,28765,28879,29024,29065,29216,29266,29346,29441,29470,29481,29485,29488,29543,29570,29619,29656,30129,30167,30235,30237,30238,30366,30372,30378,30386,30446,30497,30631,30758,30769,30770,30782,30792,30806,30807,30828,30837,30841,30862,30865,30866,30867,30869,30878,30884,30885,30887,30891,30892,30894,30895,30898,30899,30901,30914,30921,30928,30933,30939,30943,30947,30951,30965,30971,30975,30994,30997,30998,31013,31018,31028,31031,31039,31047,31049,31054,31055,31056,31063]]],["heavens",[19,19,[[39,2,2,0,2,[[931,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,1,1,3,4,[[984,1,1,3,4]]],[43,2,2,4,6,[[1019,1,1,4,5],[1024,1,1,5,6]]],[46,1,1,6,7,[[1082,1,1,6,7]]],[48,1,1,7,8,[[1100,1,1,7,8]]],[57,5,5,8,13,[[1133,1,1,8,9],[1136,1,1,9,10],[1139,1,1,10,11],[1140,1,1,11,12],[1141,1,1,12,13]]],[60,5,5,13,18,[[1158,5,5,13,18]]],[65,1,1,18,19,[[1178,1,1,18,19]]]],[23208,23986,24225,25492,26983,27172,28878,29282,29973,30028,30090,30093,30128,30527,30529,30532,30534,30535,30903]]],["sky",[5,4,[[39,3,2,0,2,[[944,3,2,0,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[23674,23675,25515,30184]]]]},{"k":"G3773","v":[["Urbane",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28345]]]]},{"k":"G3774","v":[["Urias",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23150]]]]},{"k":"G3775","v":[["*",[37,35,[[39,7,6,0,6,[[938,1,1,0,1],[939,1,1,1,2],[941,5,4,2,6]]],[40,5,5,6,11,[[960,2,2,6,8],[963,2,2,8,10],[964,1,1,10,11]]],[41,7,7,11,18,[[973,1,1,11,12],[976,1,1,12,13],[980,1,1,13,14],[981,1,1,14,15],[984,1,1,15,16],[986,1,1,16,17],[994,1,1,17,18]]],[43,5,4,18,22,[[1024,2,2,18,20],[1028,1,1,20,21],[1045,2,1,21,22]]],[44,1,1,22,23,[[1056,1,1,22,23]]],[45,2,2,23,25,[[1063,1,1,23,24],[1073,1,1,24,25]]],[58,1,1,25,26,[[1150,1,1,25,26]]],[59,1,1,26,27,[[1153,1,1,26,27]]],[65,8,8,27,35,[[1168,4,4,27,31],[1169,3,3,31,34],[1179,1,1,34,35]]]],[23444,23474,23548,23554,23555,23582,24332,24346,24479,24496,24518,24937,25084,25253,25345,25462,25588,25914,27167,27173,27329,27926,28217,28403,28650,30358,30436,30724,30728,30734,30746,30752,30759,30768,30917]]],["ear",[13,13,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[994,1,1,2,3]]],[45,2,2,3,5,[[1063,1,1,3,4],[1073,1,1,4,5]]],[65,8,8,5,13,[[1168,4,4,5,9],[1169,3,3,9,12],[1179,1,1,12,13]]]],[23444,25462,25914,28403,28650,30724,30728,30734,30746,30752,30759,30768,30917]]],["ears",[24,22,[[39,6,5,0,5,[[939,1,1,0,1],[941,5,4,1,5]]],[40,5,5,5,10,[[960,2,2,5,7],[963,2,2,7,9],[964,1,1,9,10]]],[41,5,5,10,15,[[973,1,1,10,11],[976,1,1,11,12],[980,1,1,12,13],[981,1,1,13,14],[986,1,1,14,15]]],[43,5,4,15,19,[[1024,2,2,15,17],[1028,1,1,17,18],[1045,2,1,18,19]]],[44,1,1,19,20,[[1056,1,1,19,20]]],[58,1,1,20,21,[[1150,1,1,20,21]]],[59,1,1,21,22,[[1153,1,1,21,22]]]],[23474,23548,23554,23555,23582,24332,24346,24479,24496,24518,24937,25084,25253,25345,25588,27167,27173,27329,27926,28217,30358,30436]]]]},{"k":"G3776","v":[["*",[2,2,[[41,2,2,0,2,[[987,2,2,0,2]]]],[25600,25601]]],["goods",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25600]]],["substance",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25601]]]]},{"k":"G3777","v":[["*",[94,45,[[39,6,3,0,3,[[934,2,1,0,1],[940,2,1,1,2],[950,2,1,2,3]]],[40,3,2,3,5,[[961,1,1,3,4],[968,2,1,4,5]]],[41,6,4,5,9,[[984,1,1,5,6],[986,2,1,6,7],[992,3,2,7,9]]],[42,11,6,9,15,[[997,2,1,9,10],[1000,3,2,10,12],[1001,2,1,12,13],[1004,2,1,13,14],[1005,2,1,14,15]]],[43,14,7,15,22,[[1021,1,1,15,16],[1032,2,1,16,17],[1036,2,1,17,18],[1041,4,2,18,20],[1042,3,1,20,21],[1045,2,1,21,22]]],[44,10,2,22,24,[[1053,10,2,22,24]]],[45,15,6,24,30,[[1064,3,2,24,26],[1067,8,2,26,28],[1069,2,1,28,29],[1072,2,1,29,30]]],[47,5,3,30,33,[[1091,1,1,30,31],[1095,2,1,31,32],[1096,2,1,32,33]]],[51,6,3,33,36,[[1112,6,3,33,36]]],[63,1,1,36,37,[[1165,1,1,36,37]]],[65,17,8,37,45,[[1169,4,2,37,39],[1171,1,1,39,40],[1175,7,2,40,42],[1178,1,1,42,43],[1186,1,1,43,44],[1187,3,1,44,45]]]],[23302,23521,23902,24367,24698,25485,25588,25814,25815,26069,26167,26177,26247,26400,26443,27034,27452,27622,27781,27782,27804,27920,28154,28155,28412,28417,28476,28477,28535,28611,29069,29168,29203,29573,29575,29576,30668,30761,30762,30783,30860,30861,30899,31042,31057]]],["+",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[65,1,1,1,2,[[1175,1,1,1,2]]]],[25485,30860]]],["Neither",[4,4,[[41,1,1,0,1,[[992,1,1,0,1]]],[42,1,1,1,2,[[1005,1,1,1,2]]],[43,2,2,2,4,[[1041,1,1,2,3],[1042,1,1,3,4]]]],[25815,26443,27782,27804]]],["Nor",[3,3,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,1,1,1,2,[[1067,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]]],[28155,28477,29576]]],["neither",[41,34,[[39,4,3,0,3,[[934,1,1,0,1],[940,2,1,1,2],[950,1,1,2,3]]],[40,1,1,3,4,[[968,1,1,3,4]]],[41,2,2,4,6,[[986,1,1,4,5],[992,1,1,5,6]]],[42,4,4,6,10,[[997,1,1,6,7],[1000,1,1,7,8],[1001,1,1,8,9],[1004,1,1,9,10]]],[43,7,5,10,15,[[1032,1,1,10,11],[1036,1,1,11,12],[1041,2,1,12,13],[1042,1,1,13,14],[1045,2,1,14,15]]],[44,1,1,15,16,[[1053,1,1,15,16]]],[45,8,5,16,21,[[1064,3,2,16,18],[1067,1,1,18,19],[1069,2,1,19,20],[1072,2,1,20,21]]],[47,3,3,21,24,[[1091,1,1,21,22],[1095,1,1,22,23],[1096,1,1,23,24]]],[51,2,2,24,26,[[1112,2,2,24,26]]],[63,1,1,26,27,[[1165,1,1,26,27]]],[65,8,7,27,34,[[1169,2,2,27,29],[1171,1,1,29,30],[1175,1,1,30,31],[1178,1,1,31,32],[1186,1,1,32,33],[1187,2,1,33,34]]]],[23302,23521,23902,24698,25588,25814,26069,26177,26247,26400,27452,27622,27781,27804,27920,28154,28412,28417,28476,28535,28611,29069,29168,29203,29575,29576,30668,30761,30762,30783,30860,30899,31042,31057]]],["none",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27034]]],["nor",[39,26,[[39,2,2,0,2,[[934,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]],[42,4,4,4,8,[[997,1,1,4,5],[1001,1,1,5,6],[1004,1,1,6,7],[1005,1,1,7,8]]],[43,4,4,8,12,[[1032,1,1,8,9],[1036,1,1,9,10],[1041,1,1,10,11],[1042,1,1,11,12]]],[44,8,2,12,14,[[1053,8,2,12,14]]],[45,6,2,14,16,[[1067,6,2,14,16]]],[47,2,2,16,18,[[1095,1,1,16,17],[1096,1,1,17,18]]],[51,3,3,18,21,[[1112,3,3,18,21]]],[65,8,5,21,26,[[1169,2,2,21,23],[1175,5,2,23,25],[1187,1,1,25,26]]]],[23302,23902,24698,25814,26069,26247,26400,26443,27452,27622,27781,27804,28154,28155,28476,28477,29168,29203,29573,29575,29576,30761,30762,30860,30861,31057]]],["not",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24367]]],["nothing",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26167]]],["yet",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]]],[25588,26177]]]]},{"k":"G3778","v":[["*",[352,341,[[39,47,46,0,46,[[931,2,2,0,2],[932,1,1,2,3],[933,1,1,3,4],[935,1,1,4,5],[936,1,1,5,6],[937,2,2,6,8],[938,1,1,8,9],[939,1,1,9,10],[940,2,2,10,12],[941,6,6,12,18],[942,1,1,18,19],[943,1,1,19,20],[945,1,1,20,21],[946,1,1,21,22],[948,2,2,22,24],[949,6,5,24,29],[950,2,2,29,31],[952,2,2,31,33],[953,1,1,33,34],[954,7,7,34,41],[955,4,4,41,45],[956,1,1,45,46]]],[40,31,31,46,77,[[957,1,1,46,47],[958,1,1,47,48],[959,1,1,48,49],[960,5,5,49,54],[962,2,2,54,56],[963,1,1,56,57],[964,2,2,57,59],[965,1,1,59,60],[968,9,9,60,69],[969,2,2,69,71],[970,5,5,71,76],[971,1,1,76,77]]],[41,68,67,77,144,[[973,3,3,77,80],[974,6,6,80,86],[976,3,3,86,89],[977,1,1,89,90],[979,8,8,90,98],[980,7,7,98,105],[981,4,4,105,109],[983,1,1,109,110],[985,2,2,110,112],[986,1,1,112,113],[987,4,4,113,117],[988,1,1,117,118],[989,1,1,118,119],[990,2,2,119,121],[991,2,2,121,123],[992,5,5,123,128],[993,5,4,128,132],[994,3,3,132,135],[995,7,7,135,142],[996,2,2,142,144]]],[42,64,62,144,206,[[997,8,8,144,152],[998,1,1,152,153],[999,4,4,153,157],[1000,3,3,157,160],[1002,10,9,160,169],[1003,11,11,169,180],[1004,1,1,180,181],[1005,9,9,181,190],[1007,4,3,190,193],[1008,3,3,193,196],[1011,2,2,196,198],[1013,3,3,198,201],[1014,2,2,201,203],[1017,3,3,203,206]]],[43,59,57,206,263,[[1018,3,3,206,209],[1019,2,2,209,211],[1020,1,1,211,212],[1021,3,3,212,215],[1022,1,1,215,216],[1023,2,2,216,218],[1024,5,5,218,223],[1025,3,3,223,226],[1026,5,5,226,231],[1027,4,3,231,234],[1028,1,1,234,235],[1030,2,2,235,237],[1031,1,1,237,238],[1033,3,2,238,240],[1034,7,7,240,247],[1035,3,3,247,250],[1036,1,1,250,251],[1037,2,2,251,253],[1038,2,2,253,255],[1039,1,1,255,256],[1041,2,2,256,258],[1042,1,1,258,259],[1043,2,2,259,261],[1044,1,1,261,262],[1045,1,1,262,263]]],[44,11,11,263,274,[[1047,1,1,263,264],[1049,1,1,264,265],[1052,1,1,265,266],[1053,2,2,266,268],[1054,2,2,268,270],[1056,3,3,270,273],[1061,1,1,273,274]]],[45,4,4,274,278,[[1069,2,2,274,276],[1070,1,1,276,277],[1077,1,1,277,278]]],[46,3,3,278,281,[[1078,1,1,278,279],[1079,1,1,279,280],[1088,1,1,280,281]]],[47,3,3,281,284,[[1093,1,1,281,282],[1094,1,1,282,283],[1096,1,1,283,284]]],[48,1,1,284,285,[[1099,1,1,284,285]]],[50,1,1,285,286,[[1110,1,1,285,286]]],[53,1,1,286,287,[[1121,1,1,286,287]]],[54,1,1,287,288,[[1127,1,1,287,288]]],[55,1,1,288,289,[[1129,1,1,288,289]]],[57,7,7,289,296,[[1135,1,1,289,290],[1139,2,2,290,292],[1140,1,1,292,293],[1142,1,1,293,294],[1143,2,2,294,296]]],[58,6,5,296,301,[[1146,4,3,296,299],[1148,2,2,299,301]]],[59,1,1,301,302,[[1152,1,1,301,302]]],[60,3,3,302,305,[[1156,1,1,302,303],[1157,2,2,303,305]]],[61,14,13,305,318,[[1159,1,1,305,306],[1160,2,2,306,308],[1161,2,2,308,310],[1163,9,8,310,318]]],[62,4,3,318,321,[[1164,4,3,318,321]]],[64,5,5,321,326,[[1166,5,5,321,326]]],[65,17,15,326,341,[[1169,1,1,326,327],[1173,2,2,327,329],[1177,3,3,329,332],[1180,3,1,332,333],[1183,3,3,333,336],[1185,1,1,336,337],[1186,2,2,337,339],[1187,1,1,339,340],[1188,1,1,340,341]]]],[23195,23209,23212,23253,23328,23372,23382,23405,23439,23469,23512,23513,23558,23559,23561,23577,23593,23594,23599,23641,23705,23731,23804,23813,23836,23837,23842,23864,23868,23892,23910,23970,23991,24054,24062,24066,24067,24077,24115,24116,24125,24166,24176,24183,24187,24210,24242,24267,24323,24338,24339,24341,24343,24364,24410,24423,24469,24512,24535,24545,24680,24683,24684,24689,24703,24704,24713,24716,24717,24730,24747,24758,24762,24763,24814,24823,24865,24922,24925,24929,24975,24998,25007,25009,25010,25011,25084,25085,25099,25128,25207,25212,25222,25234,25239,25240,25241,25244,25253,25254,25256,25258,25266,25270,25287,25310,25325,25336,25349,25434,25520,25522,25583,25590,25612,25618,25620,25621,25669,25699,25702,25733,25771,25793,25796,25807,25809,25826,25829,25830,25848,25858,25917,25920,25923,25957,25970,25973,25976,25982,25986,25987,26008,26035,26046,26051,26059,26063,26074,26077,26078,26085,26115,26122,26139,26146,26149,26185,26198,26203,26262,26271,26299,26303,26307,26309,26315,26317,26328,26343,26346,26353,26354,26359,26363,26364,26368,26369,26374,26377,26385,26442,26443,26448,26449,26456,26459,26460,26464,26473,26527,26560,26570,26601,26610,26614,26704,26711,26762,26770,26784,26806,26815,26919,26921,26922,26934,26937,26941,26956,26964,27006,27031,27032,27033,27097,27114,27115,27135,27152,27153,27154,27156,27186,27202,27208,27231,27236,27237,27238,27252,27265,27291,27295,27319,27366,27369,27423,27500,27503,27526,27529,27530,27534,27541,27542,27547,27570,27582,27583,27611,27631,27660,27675,27692,27730,27784,27789,27807,27854,27855,27886,27903,27976,28031,28101,28125,28130,28161,28164,28233,28236,28240,28338,28530,28536,28543,28793,28812,28830,28999,29109,29155,29200,29259,29553,29741,29861,29905,29998,30065,30068,30102,30149,30185,30211,30289,30291,30293,30321,30334,30406,30496,30512,30517,30545,30572,30575,30590,30602,30627,30628,30630,30631,30633,30635,30638,30644,30651,30652,30654,30680,30682,30684,30688,30691,30751,30823,30824,30876,30878,30882,30930,30988,30989,30991,31026,31043,31052,31058,31086]]],["+",[5,5,[[39,2,2,0,2,[[941,2,2,0,2]]],[42,2,2,2,4,[[998,1,1,2,3],[1017,1,1,3,4]]],[43,1,1,4,5,[[1018,1,1,4,5]]]],[23561,23577,26115,26921,26941]]],["He",[6,6,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[42,1,1,2,3,[[997,1,1,2,3]]],[43,2,2,3,5,[[1024,1,1,3,4],[1027,1,1,4,5]]],[61,1,1,5,6,[[1160,1,1,5,6]]]],[24187,24925,26085,27152,27265,30572]]],["It",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24423]]],["THIS",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24166,25973]]],["These",[24,22,[[39,1,1,0,1,[[948,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[43,6,6,2,8,[[1018,1,1,2,3],[1033,2,2,3,5],[1034,2,2,5,7],[1037,1,1,7,8]]],[50,1,1,8,9,[[1110,1,1,8,9]]],[57,1,1,9,10,[[1143,1,1,9,10]]],[60,1,1,10,11,[[1157,1,1,10,11]]],[64,3,3,11,14,[[1166,3,3,11,14]]],[65,10,8,14,22,[[1173,1,1,14,15],[1177,2,2,15,17],[1180,3,1,17,18],[1183,2,2,18,20],[1185,1,1,20,21],[1188,1,1,21,22]]]],[23804,26035,26937,27500,27503,27529,27534,27631,29553,30185,30517,30684,30688,30691,30824,30876,30878,30930,30988,30989,31026,31086]]],["This",[58,58,[[39,14,14,0,14,[[931,1,1,0,1],[937,1,1,1,2],[940,1,1,2,3],[941,1,1,3,4],[942,1,1,4,5],[943,1,1,5,6],[945,1,1,6,7],[949,2,2,7,9],[950,1,1,9,10],[952,1,1,10,11],[954,2,2,11,13],[955,1,1,13,14]]],[40,5,5,14,19,[[963,1,1,14,15],[965,1,1,15,16],[968,2,2,16,18],[970,1,1,18,19]]],[41,7,7,19,26,[[979,1,1,19,20],[981,1,1,20,21],[983,1,1,21,22],[986,1,1,22,23],[992,1,1,23,24],[993,1,1,24,25],[995,1,1,25,26]]],[42,13,13,26,39,[[997,2,2,26,28],[1002,4,4,28,32],[1003,1,1,32,33],[1005,2,2,33,35],[1007,1,1,35,36],[1008,1,1,36,37],[1011,1,1,37,38],[1017,1,1,38,39]]],[43,8,8,39,47,[[1021,1,1,39,40],[1023,1,1,40,41],[1024,2,2,41,43],[1035,1,1,43,44],[1038,1,1,44,45],[1043,2,2,45,47]]],[55,1,1,47,48,[[1129,1,1,47,48]]],[57,1,1,48,49,[[1142,1,1,48,49]]],[58,1,1,49,50,[[1148,1,1,49,50]]],[60,1,1,50,51,[[1156,1,1,50,51]]],[61,3,3,51,54,[[1159,1,1,51,52],[1163,2,2,52,54]]],[62,2,2,54,56,[[1164,2,2,54,56]]],[65,2,2,56,58,[[1186,2,2,56,58]]]],[23209,23382,23513,23558,23599,23641,23705,23837,23864,23910,23991,24115,24125,24176,24469,24545,24680,24684,24823,25222,25336,25434,25583,25793,25858,25987,26059,26074,26271,26307,26315,26317,26369,26449,26456,26527,26610,26711,26922,27033,27114,27153,27154,27570,27692,27854,27855,29905,30149,30334,30496,30545,30630,30644,30651,30652,31043,31052]]],["be",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[44,1,1,1,2,[[1052,1,1,1,2]]]],[23439,28101]]],["he",[24,24,[[41,5,5,0,5,[[991,1,1,0,1],[992,2,2,1,3],[995,2,2,3,5]]],[42,6,6,5,11,[[1000,1,1,5,6],[1002,3,3,6,9],[1003,1,1,9,10],[1014,1,1,10,11]]],[43,9,9,11,20,[[1020,1,1,11,12],[1021,1,1,12,13],[1026,2,2,13,15],[1027,3,3,15,18],[1034,1,1,18,19],[1035,1,1,19,20]]],[44,1,1,20,21,[[1053,1,1,20,21]]],[58,2,2,21,23,[[1146,2,2,21,23]]],[62,1,1,23,24,[[1164,1,1,23,24]]]],[25733,25807,25809,25957,25970,26203,26299,26303,26328,26363,26815,27006,27031,27231,27236,27265,27291,27295,27547,27583,28125,30289,30291,30654]]],["hereof",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23405]]],["is",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24683]]],["man",[18,17,[[41,5,5,0,5,[[979,1,1,0,1],[987,1,1,1,2],[990,1,1,2,3],[994,1,1,3,4],[995,1,1,4,5]]],[42,8,7,5,12,[[1002,1,1,5,6],[1003,1,1,6,7],[1005,3,3,7,10],[1007,2,1,10,11],[1017,1,1,11,12]]],[43,3,3,12,15,[[1021,1,1,12,13],[1025,1,1,13,14],[1035,1,1,14,15]]],[57,1,1,15,16,[[1139,1,1,15,16]]],[58,1,1,16,17,[[1146,1,1,16,17]]]],[25234,25590,25702,25920,25976,26309,26343,26442,26443,26473,26560,26919,27032,27186,27582,30068,30291]]],["same",[33,33,[[39,6,6,0,6,[[933,1,1,0,1],[941,1,1,1,2],[946,1,1,2,3],[949,1,1,3,4],[952,1,1,4,5],[954,1,1,5,6]]],[40,3,3,6,9,[[959,1,1,6,7],[964,1,1,7,8],[969,1,1,8,9]]],[41,7,7,9,16,[[974,1,1,9,10],[981,2,2,10,12],[988,1,1,12,13],[992,2,2,13,15],[995,1,1,15,16]]],[42,8,8,16,24,[[997,3,3,16,19],[999,2,2,19,21],[1003,1,1,21,22],[1008,1,1,22,23],[1011,1,1,23,24]]],[43,4,4,24,28,[[1018,1,1,24,25],[1024,1,1,25,26],[1031,1,1,26,27],[1033,1,1,27,28]]],[45,1,1,28,29,[[1069,1,1,28,29]]],[47,1,1,29,30,[[1093,1,1,29,30]]],[58,1,1,30,31,[[1148,1,1,30,31]]],[59,1,1,31,32,[[1152,1,1,31,32]]],[65,1,1,32,33,[[1169,1,1,32,33]]]],[23253,23559,23731,23868,23970,24077,24323,24535,24730,24998,25325,25349,25621,25796,25826,25986,26046,26051,26077,26122,26146,26346,26601,26704,26934,27135,27423,27500,28530,29109,30321,30406,30751]]],["she",[11,11,[[40,3,3,0,3,[[968,1,1,0,1],[970,2,2,1,3]]],[41,7,7,3,10,[[974,3,3,3,6],[979,2,2,6,8],[980,1,1,8,9],[993,1,1,9,10]]],[44,1,1,10,11,[[1061,1,1,10,11]]]],[24717,24762,24763,25009,25010,25011,25207,25239,25287,25830,28338]]],["that",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24066]]],["these",[44,44,[[39,5,5,0,5,[[932,1,1,0,1],[948,1,1,1,2],[949,1,1,2,3],[953,1,1,3,4],[954,1,1,4,5]]],[40,6,6,5,11,[[960,4,4,5,9],[968,1,1,9,10],[970,1,1,10,11]]],[41,7,7,11,18,[[980,2,2,11,13],[985,1,1,13,14],[991,1,1,14,15],[993,2,2,15,17],[996,1,1,17,18]]],[42,3,3,18,21,[[1002,1,1,18,19],[1013,2,2,19,21]]],[43,8,8,21,29,[[1019,2,2,21,23],[1028,1,1,23,24],[1034,1,1,24,25],[1037,1,1,25,26],[1041,1,1,26,27],[1042,1,1,27,28],[1044,1,1,28,29]]],[44,3,3,29,32,[[1047,1,1,29,30],[1056,2,2,30,32]]],[47,1,1,32,33,[[1094,1,1,32,33]]],[53,1,1,33,34,[[1121,1,1,33,34]]],[54,1,1,34,35,[[1127,1,1,34,35]]],[57,1,1,35,36,[[1143,1,1,35,36]]],[60,1,1,36,37,[[1157,1,1,36,37]]],[61,1,1,37,38,[[1163,1,1,37,38]]],[64,2,2,38,40,[[1166,2,2,38,40]]],[65,4,4,40,44,[[1173,1,1,40,41],[1177,1,1,41,42],[1183,1,1,42,43],[1187,1,1,43,44]]]],[23212,23813,23842,24054,24116,24338,24339,24341,24343,24713,24814,25258,25266,25520,25771,25830,25848,26008,26262,26770,26784,26956,26964,27319,27530,27660,27789,27807,27886,27976,28233,28240,29155,29741,29861,30211,30512,30631,30680,30682,30823,30882,30991,31058]]],["they",[8,8,[[41,1,1,0,1,[[985,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[43,2,2,2,4,[[1030,1,1,2,3],[1041,1,1,3,4]]],[44,2,2,4,6,[[1053,1,1,4,5],[1054,1,1,5,6]]],[45,1,1,6,7,[[1077,1,1,6,7]]],[47,1,1,7,8,[[1096,1,1,7,8]]]],[25522,26806,27366,27784,28130,28161,28793,29200]]],["things",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25253]]],["this",[106,105,[[39,13,13,0,13,[[931,1,1,0,1],[935,1,1,1,2],[936,1,1,2,3],[939,1,1,3,4],[940,1,1,4,5],[941,2,2,5,7],[949,2,2,7,9],[950,1,1,9,10],[954,1,1,10,11],[955,1,1,11,12],[956,1,1,12,13]]],[40,12,12,13,25,[[957,1,1,13,14],[958,1,1,14,15],[960,1,1,15,16],[962,1,1,16,17],[964,1,1,17,18],[968,4,4,18,22],[969,1,1,22,23],[970,1,1,23,24],[971,1,1,24,25]]],[41,23,23,25,48,[[973,2,2,25,27],[974,2,2,27,29],[976,3,3,29,32],[977,1,1,32,33],[979,2,2,33,35],[980,3,3,35,38],[981,1,1,38,39],[987,3,3,39,42],[989,1,1,42,43],[990,1,1,43,44],[993,1,1,44,45],[994,2,2,45,47],[995,1,1,47,48]]],[42,22,22,48,70,[[997,2,2,48,50],[999,2,2,50,52],[1000,2,2,52,54],[1002,1,1,54,55],[1003,7,7,55,62],[1004,1,1,62,63],[1005,4,4,63,67],[1007,1,1,67,68],[1008,1,1,68,69],[1013,1,1,69,70]]],[43,13,13,70,83,[[1022,1,1,70,71],[1023,1,1,71,72],[1024,1,1,72,73],[1025,1,1,73,74],[1026,2,2,74,76],[1034,3,3,76,79],[1036,1,1,79,80],[1038,1,1,80,81],[1039,1,1,81,82],[1045,1,1,82,83]]],[44,3,3,83,86,[[1049,1,1,83,84],[1054,1,1,84,85],[1056,1,1,85,86]]],[45,2,2,86,88,[[1069,1,1,86,87],[1070,1,1,87,88]]],[46,3,3,88,91,[[1078,1,1,88,89],[1079,1,1,89,90],[1088,1,1,90,91]]],[48,1,1,91,92,[[1099,1,1,91,92]]],[57,3,3,92,95,[[1135,1,1,92,93],[1139,1,1,93,94],[1140,1,1,94,95]]],[58,1,1,95,96,[[1146,1,1,95,96]]],[61,9,8,96,104,[[1160,1,1,96,97],[1161,2,2,97,99],[1163,6,5,99,104]]],[62,1,1,104,105,[[1164,1,1,104,105]]]],[23195,23328,23372,23469,23512,23593,23594,23836,23868,23892,24062,24183,24210,24242,24267,24364,24410,24512,24689,24703,24704,24716,24747,24758,24865,24922,24929,24975,25007,25084,25085,25099,25128,25212,25244,25254,25256,25270,25310,25612,25618,25620,25669,25699,25829,25917,25923,25982,26063,26078,26139,26149,26185,26198,26299,26353,26354,26359,26364,26368,26374,26377,26385,26448,26459,26460,26464,26570,26614,26762,27097,27115,27156,27208,27237,27238,27526,27541,27542,27611,27675,27730,27903,28031,28164,28236,28536,28543,28812,28830,28999,29259,29998,30065,30102,30293,30575,30590,30602,30627,30628,30633,30635,30638,30651]]],["which",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27202]]],["who",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27369]]],["woman",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,2,2,1,3,[[979,2,2,1,3]]],[43,1,1,3,4,[[1026,1,1,3,4]]]],[24067,25240,25241,27252]]]]},{"k":"G3779","v":[["*",[212,205,[[39,33,33,0,33,[[929,1,1,0,1],[930,1,1,1,2],[931,1,1,2,3],[933,4,4,3,7],[934,2,2,7,9],[935,2,2,9,11],[937,1,1,11,12],[939,1,1,12,13],[940,2,2,13,15],[941,2,2,15,17],[945,1,1,17,18],[946,2,2,18,20],[947,3,3,20,23],[948,2,2,23,25],[951,1,1,25,26],[952,5,5,26,31],[954,2,2,31,33]]],[40,10,10,33,43,[[958,3,3,33,36],[960,2,2,36,38],[963,1,1,38,39],[966,1,1,39,40],[969,1,1,40,41],[970,1,1,41,42],[971,1,1,42,43]]],[41,23,22,43,65,[[973,1,1,43,44],[974,1,1,44,45],[978,1,1,45,46],[981,1,1,46,47],[982,1,1,47,48],[983,1,1,48,49],[984,5,5,49,54],[986,1,1,54,55],[987,2,2,55,57],[989,3,3,57,60],[991,1,1,60,61],[993,1,1,61,62],[994,1,1,62,63],[996,3,2,63,65]]],[42,13,13,65,78,[[999,3,3,65,68],[1000,1,1,68,69],[1001,2,2,69,71],[1004,1,1,71,72],[1007,1,1,72,73],[1008,1,1,73,74],[1010,1,1,74,75],[1011,1,1,75,76],[1014,1,1,76,77],[1017,1,1,77,78]]],[43,27,27,78,105,[[1018,1,1,78,79],[1020,1,1,79,80],[1024,3,3,80,83],[1025,1,1,83,84],[1029,2,2,84,86],[1030,3,3,86,89],[1031,1,1,89,90],[1034,2,2,90,92],[1036,1,1,92,93],[1037,3,3,93,96],[1038,1,1,96,97],[1039,1,1,97,98],[1040,1,1,98,99],[1041,2,2,99,101],[1044,3,3,101,104],[1045,1,1,104,105]]],[44,17,17,105,122,[[1046,1,1,105,106],[1049,1,1,106,107],[1050,5,5,107,112],[1051,3,3,112,115],[1054,1,1,115,116],[1055,1,1,116,117],[1056,3,3,117,120],[1057,1,1,120,121],[1060,1,1,121,122]]],[45,32,27,122,149,[[1063,1,1,122,123],[1064,1,1,123,124],[1065,1,1,124,125],[1066,1,1,125,126],[1067,1,1,126,127],[1068,7,5,127,132],[1069,1,1,132,133],[1070,5,4,133,137],[1072,2,2,137,139],[1073,1,1,139,140],[1075,5,4,140,144],[1076,5,4,144,148],[1077,1,1,148,149]]],[46,8,8,149,157,[[1078,2,2,149,151],[1084,1,1,151,152],[1085,2,2,152,154],[1086,1,1,154,155],[1087,1,1,155,156],[1088,1,1,156,157]]],[47,5,5,157,162,[[1091,1,1,157,158],[1093,1,1,158,159],[1094,2,2,159,161],[1096,1,1,161,162]]],[48,4,4,162,166,[[1100,1,1,162,163],[1101,3,3,163,166]]],[49,2,2,166,168,[[1105,1,1,166,167],[1106,1,1,167,168]]],[50,1,1,168,169,[[1109,1,1,168,169]]],[51,5,5,169,174,[[1112,2,2,169,171],[1114,2,2,171,173],[1115,1,1,173,174]]],[52,1,1,174,175,[[1118,1,1,174,175]]],[54,1,1,175,176,[[1127,1,1,175,176]]],[57,9,9,176,185,[[1136,1,1,176,177],[1137,2,2,177,179],[1138,2,2,179,181],[1141,2,2,181,183],[1142,1,1,183,184],[1144,1,1,184,185]]],[58,9,8,185,193,[[1146,1,1,185,186],[1147,4,3,186,189],[1148,4,4,189,193]]],[59,2,2,193,195,[[1152,1,1,193,194],[1153,1,1,194,195]]],[60,2,2,195,197,[[1156,1,1,195,196],[1158,1,1,196,197]]],[61,2,2,197,199,[[1160,1,1,197,198],[1162,1,1,198,199]]],[65,6,6,199,205,[[1168,1,1,199,200],[1169,1,1,200,201],[1175,1,1,201,202],[1177,1,1,202,203],[1182,1,1,203,204],[1184,1,1,204,205]]]],[23162,23174,23207,23246,23250,23253,23281,23291,23312,23328,23333,23412,23485,23529,23534,23579,23588,23712,23741,23762,23770,23772,23774,23808,23818,23946,23984,23990,23994,23996,24003,24094,24108,24267,24268,24272,24349,24363,24481,24631,24746,24813,24865,24918,25021,25156,25316,25384,25435,25480,25487,25497,25502,25513,25586,25595,25598,25661,25675,25677,25762,25857,25890,26015,26037,26128,26134,26136,26162,26231,26236,26440,26571,26630,26699,26703,26807,26899,26934,27014,27117,27122,27124,27208,27345,27352,27370,27396,27409,27415,27534,27556,27605,27637,27639,27661,27675,27728,27745,27778,27783,27872,27880,27899,27913,27945,28040,28059,28062,28065,28066,28068,28072,28079,28087,28175,28194,28214,28235,28240,28250,28323,28405,28425,28434,28457,28472,28494,28504,28513,28523,28527,28539,28554,28555,28564,28566,28612,28628,28646,28687,28690,28699,28703,28729,28740,28760,28763,28777,28805,28807,28930,28938,28943,28961,28978,28992,29063,29105,29134,29160,29190,29292,29328,29332,29337,29438,29443,29530,29574,29578,29617,29620,29623,29695,29861,30018,30033,30035,30053,30059,30111,30133,30166,30233,30277,30305,30310,30319,30324,30325,30329,30331,30414,30429,30490,30526,30556,30614,30732,30762,30857,30877,30972,31014]]],["+",[7,7,[[41,1,1,0,1,[[989,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]],[43,1,1,2,3,[[1039,1,1,2,3]]],[44,1,1,3,4,[[1050,1,1,3,4]]],[45,1,1,4,5,[[1066,1,1,4,5]]],[46,1,1,5,6,[[1086,1,1,5,6]]],[57,1,1,6,7,[[1142,1,1,6,7]]]],[25661,26571,27728,28066,28457,28961,30166]]],["Likewise",[3,3,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]],[44,1,1,2,3,[[1051,1,1,2,3]]]],[23712,25598,28079]]],["So",[21,21,[[39,3,3,0,3,[[941,1,1,0,1],[948,1,1,1,2],[952,1,1,2,3]]],[40,2,2,3,5,[[960,1,1,3,4],[969,1,1,4,5]]],[41,1,1,5,6,[[984,1,1,5,6]]],[43,3,3,6,9,[[1034,1,1,6,7],[1036,1,1,7,8],[1038,1,1,8,9]]],[44,3,3,9,12,[[1046,1,1,9,10],[1049,1,1,10,11],[1057,1,1,11,12]]],[45,3,3,12,15,[[1070,1,1,12,13],[1075,1,1,13,14],[1076,1,1,14,15]]],[48,1,1,15,16,[[1101,1,1,15,16]]],[51,1,1,16,17,[[1112,1,1,16,17]]],[57,2,2,17,19,[[1137,1,1,17,18],[1141,1,1,18,19]]],[58,1,1,19,20,[[1147,1,1,19,20]]],[65,1,1,20,21,[[1168,1,1,20,21]]]],[23588,23808,23990,24349,24746,25480,27556,27605,27675,27945,28040,28250,28564,28687,28760,29332,29578,30035,30133,30305,30732]]],["Thus",[3,3,[[41,2,2,0,2,[[973,1,1,0,1],[996,1,1,1,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[24918,26037,31014]]],["What",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24094]]],["as",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30526]]],["fashion",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24272]]],["it",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27880]]],["likewise",[4,4,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,3,3,1,4,[[986,1,1,1,2],[987,1,1,2,3],[993,1,1,3,4]]]],[23762,25586,25595,25857]]],["manner",[4,4,[[39,1,1,0,1,[[934,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]],[65,1,1,3,4,[[1177,1,1,3,4]]]],[23291,28494,30429,30877]]],["more",[1,1,[[42,1,1,0,1,[[1011,1,1,0,1]]]],[26703]]],["so",[143,140,[[39,22,22,0,22,[[933,4,4,0,4],[934,1,1,4,5],[935,2,2,5,7],[937,1,1,7,8],[939,1,1,8,9],[940,2,2,9,11],[941,1,1,11,12],[946,1,1,12,13],[947,3,3,13,16],[948,1,1,16,17],[951,1,1,17,18],[952,4,4,18,22]]],[40,6,6,22,28,[[958,1,1,22,23],[960,1,1,23,24],[963,1,1,24,25],[966,1,1,25,26],[970,1,1,26,27],[971,1,1,27,28]]],[41,12,12,28,40,[[978,1,1,28,29],[981,1,1,29,30],[982,1,1,30,31],[983,1,1,31,32],[984,4,4,32,36],[989,2,2,36,38],[994,1,1,38,39],[996,1,1,39,40]]],[42,9,9,40,49,[[999,3,3,40,43],[1001,2,2,43,45],[1004,1,1,45,46],[1008,1,1,46,47],[1010,1,1,47,48],[1014,1,1,48,49]]],[43,20,20,49,69,[[1018,1,1,49,50],[1020,1,1,50,51],[1024,2,2,51,53],[1025,1,1,53,54],[1029,2,2,54,56],[1030,2,2,56,58],[1031,1,1,58,59],[1034,1,1,59,60],[1037,3,3,60,63],[1040,1,1,63,64],[1041,2,2,64,66],[1044,2,2,66,68],[1045,1,1,68,69]]],[44,10,10,69,79,[[1050,4,4,69,73],[1051,2,2,73,75],[1056,3,3,75,78],[1060,1,1,78,79]]],[45,24,21,79,100,[[1063,1,1,79,80],[1064,1,1,80,81],[1065,1,1,81,82],[1067,1,1,82,83],[1068,5,4,83,87],[1069,1,1,87,88],[1070,4,3,88,91],[1072,2,2,91,93],[1073,1,1,93,94],[1075,2,2,94,96],[1076,4,3,96,99],[1077,1,1,99,100]]],[46,7,7,100,107,[[1078,2,2,100,102],[1084,1,1,102,103],[1085,2,2,103,105],[1087,1,1,105,106],[1088,1,1,106,107]]],[47,5,5,107,112,[[1091,1,1,107,108],[1093,1,1,108,109],[1094,2,2,109,111],[1096,1,1,111,112]]],[48,3,3,112,115,[[1100,1,1,112,113],[1101,2,2,113,115]]],[49,2,2,115,117,[[1105,1,1,115,116],[1106,1,1,116,117]]],[50,1,1,117,118,[[1109,1,1,117,118]]],[51,4,4,118,122,[[1112,1,1,118,119],[1114,2,2,119,121],[1115,1,1,121,122]]],[52,1,1,122,123,[[1118,1,1,122,123]]],[54,1,1,123,124,[[1127,1,1,123,124]]],[57,3,3,124,127,[[1137,1,1,124,125],[1138,1,1,125,126],[1144,1,1,126,127]]],[58,8,8,127,135,[[1146,1,1,127,128],[1147,3,3,128,131],[1148,4,4,131,135]]],[59,1,1,135,136,[[1152,1,1,135,136]]],[60,1,1,136,137,[[1156,1,1,136,137]]],[61,2,2,137,139,[[1160,1,1,137,138],[1162,1,1,138,139]]],[65,1,1,139,140,[[1182,1,1,139,140]]]],[23246,23250,23253,23281,23312,23328,23333,23412,23485,23529,23534,23579,23741,23770,23772,23774,23818,23946,23984,23994,23996,24003,24268,24363,24481,24631,24813,24865,25156,25316,25384,25435,25487,25497,25502,25513,25675,25677,25890,26015,26128,26134,26136,26231,26236,26440,26630,26699,26807,26934,27014,27117,27124,27208,27345,27352,27370,27409,27415,27534,27637,27639,27661,27745,27778,27783,27872,27899,27913,28059,28062,28065,28068,28072,28087,28214,28235,28240,28323,28405,28425,28434,28472,28504,28513,28523,28527,28539,28554,28555,28566,28612,28628,28646,28690,28703,28729,28740,28763,28777,28805,28807,28930,28938,28943,28978,28992,29063,29105,29134,29160,29190,29292,29328,29337,29438,29443,29530,29574,29617,29620,29623,29695,29861,30033,30059,30233,30277,30305,30310,30319,30324,30325,30329,30331,30414,30490,30556,30614,30972]]],["that",[2,2,[[45,2,2,0,2,[[1068,1,1,0,1],[1075,1,1,1,2]]]],[28494,28699]]],["then",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30762]]],["thus",[13,13,[[39,3,3,0,3,[[930,1,1,0,1],[931,1,1,1,2],[954,1,1,2,3]]],[40,1,1,3,4,[[958,1,1,3,4]]],[41,3,3,4,7,[[974,1,1,4,5],[991,1,1,5,6],[996,1,1,6,7]]],[42,1,1,7,8,[[1000,1,1,7,8]]],[44,1,1,8,9,[[1054,1,1,8,9]]],[45,1,1,9,10,[[1075,1,1,9,10]]],[57,2,2,10,12,[[1138,1,1,10,11],[1141,1,1,11,12]]],[65,1,1,12,13,[[1175,1,1,12,13]]]],[23174,23207,24108,24267,25021,25762,26037,26162,28175,28703,30053,30111,30857]]],["wise",[6,6,[[39,1,1,0,1,[[929,1,1,0,1]]],[42,1,1,1,2,[[1017,1,1,1,2]]],[43,2,2,2,4,[[1024,1,1,2,3],[1030,1,1,3,4]]],[44,1,1,4,5,[[1055,1,1,4,5]]],[57,1,1,5,6,[[1136,1,1,5,6]]]],[23162,26899,27122,27396,28194,30018]]]]},{"k":"G3780","v":[["*",[56,54,[[39,10,10,0,10,[[933,2,2,0,2],[934,1,1,2,3],[938,1,1,3,4],[940,1,1,4,5],[941,3,3,5,8],[946,1,1,8,9],[948,1,1,9,10]]],[41,15,15,10,25,[[973,1,1,10,11],[978,1,1,11,12],[984,2,2,12,14],[985,2,2,14,16],[986,2,2,16,18],[987,1,1,18,19],[988,1,1,19,20],[989,2,2,20,22],[994,1,1,22,23],[996,2,2,23,25]]],[42,5,5,25,30,[[1003,1,1,25,26],[1007,1,1,26,27],[1009,2,2,27,29],[1010,1,1,29,30]]],[43,2,2,30,32,[[1022,1,1,30,31],[1024,1,1,31,32]]],[44,4,4,32,36,[[1047,1,1,32,33],[1048,2,2,33,35],[1053,1,1,35,36]]],[45,15,13,36,49,[[1062,1,1,36,37],[1064,2,2,37,39],[1066,2,2,39,41],[1067,3,2,41,43],[1069,1,1,43,44],[1070,2,2,44,46],[1071,4,3,46,49]]],[46,2,2,49,51,[[1080,1,1,49,50],[1087,1,1,50,51]]],[51,1,1,51,52,[[1112,1,1,51,52]]],[57,2,2,52,54,[[1133,1,1,52,53],[1135,1,1,53,54]]]],[23280,23281,23307,23446,23500,23566,23594,23595,23739,23805,24953,25185,25465,25510,25521,25523,25581,25584,25596,25650,25659,25668,25891,26017,26023,26370,26532,26640,26641,26690,27063,27166,27988,28018,28020,28148,28383,28413,28414,28456,28466,28468,28474,28537,28541,28548,28583,28585,28596,28849,28984,29589,29977,30012]]],["+",[3,3,[[41,2,2,0,2,[[986,2,2,0,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]]],[25581,25584,27063]]],["Nay",[5,5,[[41,4,4,0,4,[[984,1,1,0,1],[985,2,2,1,3],[988,1,1,3,4]]],[44,1,1,4,5,[[1048,1,1,4,5]]]],[25510,25521,25523,25650,28018]]],["Not",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24953]]],["not",[47,45,[[39,10,10,0,10,[[933,2,2,0,2],[934,1,1,2,3],[938,1,1,3,4],[940,1,1,4,5],[941,3,3,5,8],[946,1,1,8,9],[948,1,1,9,10]]],[41,8,8,10,18,[[978,1,1,10,11],[984,1,1,11,12],[987,1,1,12,13],[989,2,2,13,15],[994,1,1,15,16],[996,2,2,16,18]]],[42,5,5,18,23,[[1003,1,1,18,19],[1007,1,1,19,20],[1009,2,2,20,22],[1010,1,1,22,23]]],[43,1,1,23,24,[[1024,1,1,23,24]]],[44,3,3,24,27,[[1047,1,1,24,25],[1048,1,1,25,26],[1053,1,1,26,27]]],[45,15,13,27,40,[[1062,1,1,27,28],[1064,2,2,28,30],[1066,2,2,30,32],[1067,3,2,32,34],[1069,1,1,34,35],[1070,2,2,35,37],[1071,4,3,37,40]]],[46,2,2,40,42,[[1080,1,1,40,41],[1087,1,1,41,42]]],[51,1,1,42,43,[[1112,1,1,42,43]]],[57,2,2,43,45,[[1133,1,1,43,44],[1135,1,1,44,45]]]],[23280,23281,23307,23446,23500,23566,23594,23595,23739,23805,25185,25465,25596,25659,25668,25891,26017,26023,26370,26532,26640,26641,26690,27166,27988,28020,28148,28383,28413,28414,28456,28466,28468,28474,28537,28541,28548,28583,28585,28596,28849,28984,29589,29977,30012]]]]},{"k":"G3781","v":[["*",[7,7,[[39,2,2,0,2,[[934,1,1,0,1],[946,1,1,1,2]]],[41,1,1,2,3,[[985,1,1,2,3]]],[44,3,3,3,6,[[1046,1,1,3,4],[1053,1,1,4,5],[1060,1,1,5,6]]],[47,1,1,6,7,[[1095,1,1,6,7]]]],[23294,23751,25522,27944,28128,28330,29165]]],["debtor",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]]],[27944,29165]]],["debtors",[3,3,[[39,1,1,0,1,[[934,1,1,0,1]]],[44,2,2,1,3,[[1053,1,1,1,2],[1060,1,1,2,3]]]],[23294,28128,28330]]],["owed",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23751]]],["sinners",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25522]]]]},{"k":"G3782","v":[["*",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]]],[23759,28273]]],["debt",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23759]]],["dues",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28273]]]]},{"k":"G3783","v":[["*",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[44,1,1,1,2,[[1049,1,1,1,2]]]],[23294,28026]]],["debt",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28026]]],["debts",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23294]]]]},{"k":"G3784","v":[["*",[36,35,[[39,6,5,0,5,[[946,4,3,0,3],[951,2,2,3,5]]],[41,5,5,5,10,[[979,1,1,5,6],[983,1,1,6,7],[988,2,2,7,9],[989,1,1,9,10]]],[42,2,2,10,12,[[1009,1,1,10,11],[1015,1,1,11,12]]],[43,1,1,12,13,[[1034,1,1,12,13]]],[44,3,3,13,16,[[1058,1,1,13,14],[1060,2,2,14,16]]],[45,6,6,16,22,[[1066,1,1,16,17],[1068,2,2,17,19],[1070,1,1,19,20],[1072,2,2,20,22]]],[46,2,2,22,24,[[1089,2,2,22,24]]],[48,1,1,24,25,[[1101,1,1,24,25]]],[52,2,2,25,27,[[1116,1,1,25,26],[1117,1,1,26,27]]],[56,1,1,27,28,[[1132,1,1,27,28]]],[57,3,3,28,31,[[1134,1,1,28,29],[1137,2,2,29,31]]],[61,3,3,31,34,[[1160,1,1,31,32],[1161,1,1,32,33],[1162,1,1,33,34]]],[63,1,1,34,35,[[1165,1,1,34,35]]]],[23755,23757,23761,23934,23936,25236,25409,25625,25627,25661,26644,26832,27552,28274,28304,28330,28464,28490,28523,28550,28607,28610,29033,29036,29332,29652,29674,29956,29994,30033,30042,30556,30595,30614,30666]]],["Owe",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28274]]],["behoved",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29994]]],["bound",[2,2,[[52,2,2,0,2,[[1116,1,1,0,1],[1117,1,1,1,2]]]],[29652,29674]]],["debt",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23757]]],["debtor",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23934]]],["due",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[23761,28490]]],["duty",[2,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]]],[25661,28330]]],["guilty",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23936]]],["indebted",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25409]]],["need",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28523]]],["needs",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28464]]],["ought",[15,15,[[42,2,2,0,2,[[1009,1,1,0,1],[1015,1,1,1,2]]],[43,1,1,2,3,[[1034,1,1,2,3]]],[44,1,1,3,4,[[1060,1,1,3,4]]],[45,2,2,4,6,[[1072,2,2,4,6]]],[46,2,2,6,8,[[1089,2,2,6,8]]],[48,1,1,8,9,[[1101,1,1,8,9]]],[57,2,2,9,11,[[1137,2,2,9,11]]],[61,3,3,11,14,[[1160,1,1,11,12],[1161,1,1,12,13],[1162,1,1,13,14]]],[63,1,1,14,15,[[1165,1,1,14,15]]]],[26644,26832,27552,28304,28607,28610,29033,29036,29332,30033,30042,30556,30595,30614,30666]]],["owed",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]]],[23755,25236]]],["owest",[3,3,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,2,2,1,3,[[988,2,2,1,3]]]],[23755,25625,25627]]],["oweth",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29956]]],["should",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28550]]]]},{"k":"G3785","v":[["*",[4,4,[[45,1,1,0,1,[[1065,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]],[65,1,1,3,4,[[1169,1,1,3,4]]]],[28441,28990,29174,30761]]],["+",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28441]]],["God",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28990]]],["would",[2,2,[[47,1,1,0,1,[[1095,1,1,0,1]]],[65,1,1,1,2,[[1169,1,1,1,2]]]],[29174,30761]]]]},{"k":"G3786","v":[["*",[3,3,[[45,1,1,0,1,[[1076,1,1,0,1]]],[58,2,2,1,3,[[1147,2,2,1,3]]]],[28750,30307,30309]]],["advantageth",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28750]]],["profit",[2,2,[[58,2,2,0,2,[[1147,2,2,0,2]]]],[30307,30309]]]]},{"k":"G3787","v":[["eyeservice",[2,2,[[48,1,1,0,1,[[1102,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29343,29539]]]]},{"k":"G3788","v":[["*",[102,86,[[39,26,18,0,18,[[933,3,2,0,2],[934,3,2,2,4],[935,6,3,4,7],[937,2,2,7,9],[941,3,2,9,11],[945,1,1,11,12],[946,2,1,12,13],[948,4,3,13,16],[949,1,1,16,17],[954,1,1,17,18]]],[40,7,6,18,24,[[963,1,1,18,19],[964,2,2,19,21],[965,2,1,21,22],[968,1,1,22,23],[970,1,1,23,24]]],[41,17,12,24,36,[[974,1,1,24,25],[976,1,1,25,26],[978,7,3,26,29],[982,1,1,29,30],[983,2,1,30,31],[988,1,1,31,32],[990,1,1,32,33],[991,1,1,33,34],[996,2,2,34,36]]],[42,18,17,36,53,[[1000,1,1,36,37],[1002,1,1,37,38],[1005,10,10,38,48],[1006,1,1,48,49],[1007,2,2,49,51],[1008,2,1,51,52],[1013,1,1,52,53]]],[43,7,6,53,59,[[1018,1,1,53,54],[1026,3,3,54,57],[1043,1,1,57,58],[1045,2,1,58,59]]],[44,3,3,59,62,[[1048,1,1,59,60],[1056,2,2,60,62]]],[45,5,5,62,67,[[1063,1,1,62,63],[1073,3,3,63,66],[1076,1,1,66,67]]],[47,2,2,67,69,[[1093,1,1,67,68],[1094,1,1,68,69]]],[48,1,1,69,70,[[1097,1,1,69,70]]],[57,1,1,70,71,[[1136,1,1,70,71]]],[59,1,1,71,72,[[1153,1,1,71,72]]],[60,1,1,72,73,[[1157,1,1,72,73]]],[61,3,3,73,76,[[1159,1,1,73,74],[1160,2,2,74,76]]],[65,10,10,76,86,[[1167,2,2,76,78],[1168,1,1,78,79],[1169,1,1,79,80],[1170,2,2,80,82],[1171,1,1,82,83],[1173,1,1,83,84],[1185,1,1,84,85],[1187,1,1,85,86]]]],[23263,23272,23304,23305,23319,23320,23321,23408,23409,23554,23555,23708,23736,23807,23825,23826,23868,24097,24485,24518,24525,24585,24684,24794,25003,25083,25166,25187,25188,25386,25439,25643,25701,25773,26007,26022,26191,26262,26446,26450,26451,26454,26455,26457,26461,26466,26470,26472,26502,26560,26564,26620,26760,26932,27224,27234,27256,27841,27926,28009,28217,28219,28403,28650,28651,28655,28770,29103,29146,29224,30027,30436,30514,30541,30561,30566,30704,30711,30735,30764,30774,30776,30785,30827,31029,31057]]],["+",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26457]]],["Eye",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28403]]],["eye",[29,19,[[39,14,9,0,9,[[933,3,2,0,2],[934,3,2,2,4],[935,6,3,4,7],[946,1,1,7,8],[948,1,1,8,9]]],[40,2,2,9,11,[[963,1,1,9,10],[965,1,1,10,11]]],[41,8,3,11,14,[[978,6,2,11,13],[983,2,1,13,14]]],[45,4,4,14,18,[[1073,3,3,14,17],[1076,1,1,17,18]]],[65,1,1,18,19,[[1167,1,1,18,19]]]],[23263,23272,23304,23305,23319,23320,23321,23736,23807,24485,24585,25187,25188,25439,28650,28651,28655,28770,30704]]],["eyes",[70,66,[[39,12,10,0,10,[[937,2,2,0,2],[941,3,2,2,4],[945,1,1,4,5],[946,1,1,5,6],[948,3,2,6,8],[949,1,1,8,9],[954,1,1,9,10]]],[40,5,5,10,15,[[964,2,2,10,12],[965,1,1,12,13],[968,1,1,13,14],[970,1,1,14,15]]],[41,9,9,15,24,[[974,1,1,15,16],[976,1,1,16,17],[978,1,1,17,18],[982,1,1,18,19],[988,1,1,19,20],[990,1,1,20,21],[991,1,1,21,22],[996,2,2,22,24]]],[42,17,16,24,40,[[1000,1,1,24,25],[1002,1,1,25,26],[1005,9,9,26,35],[1006,1,1,35,36],[1007,2,2,36,38],[1008,2,1,38,39],[1013,1,1,39,40]]],[43,6,5,40,45,[[1026,3,3,40,43],[1043,1,1,43,44],[1045,2,1,44,45]]],[44,3,3,45,48,[[1048,1,1,45,46],[1056,2,2,46,48]]],[47,2,2,48,50,[[1093,1,1,48,49],[1094,1,1,49,50]]],[48,1,1,50,51,[[1097,1,1,50,51]]],[57,1,1,51,52,[[1136,1,1,51,52]]],[59,1,1,52,53,[[1153,1,1,52,53]]],[60,1,1,53,54,[[1157,1,1,53,54]]],[61,3,3,54,57,[[1159,1,1,54,55],[1160,2,2,55,57]]],[65,9,9,57,66,[[1167,1,1,57,58],[1168,1,1,58,59],[1169,1,1,59,60],[1170,2,2,60,62],[1171,1,1,62,63],[1173,1,1,63,64],[1185,1,1,64,65],[1187,1,1,65,66]]]],[23408,23409,23554,23555,23708,23736,23825,23826,23868,24097,24518,24525,24585,24684,24794,25003,25083,25166,25386,25643,25701,25773,26007,26022,26191,26262,26446,26450,26451,26454,26455,26461,26466,26470,26472,26502,26560,26564,26620,26760,27224,27234,27256,27841,27926,28009,28217,28219,29103,29146,29224,30027,30436,30514,30541,30561,30566,30711,30735,30764,30774,30776,30785,30827,31029,31057]]],["sight",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26932]]]]},{"k":"G3789","v":[["*",[14,14,[[39,3,3,0,3,[[935,1,1,0,1],[938,1,1,1,2],[951,1,1,2,3]]],[40,1,1,3,4,[[972,1,1,3,4]]],[41,2,2,4,6,[[982,1,1,4,5],[983,1,1,5,6]]],[42,1,1,6,7,[[999,1,1,6,7]]],[45,1,1,7,8,[[1071,1,1,7,8]]],[46,1,1,8,9,[[1088,1,1,8,9]]],[65,5,5,9,14,[[1175,1,1,9,10],[1178,3,3,10,13],[1186,1,1,13,14]]]],[23326,23433,23951,24891,25382,25416,26134,28576,28992,30859,30900,30905,30906,31040]]],["serpent",[8,8,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,1,1,2,3,[[999,1,1,2,3]]],[46,1,1,3,4,[[1088,1,1,3,4]]],[65,4,4,4,8,[[1178,3,3,4,7],[1186,1,1,7,8]]]],[23326,25416,26134,28992,30900,30905,30906,31040]]],["serpents",[6,6,[[39,2,2,0,2,[[938,1,1,0,1],[951,1,1,1,2]]],[40,1,1,2,3,[[972,1,1,2,3]]],[41,1,1,3,4,[[982,1,1,3,4]]],[45,1,1,4,5,[[1071,1,1,4,5]]],[65,1,1,5,6,[[1175,1,1,5,6]]]],[23433,23951,24891,25382,28576,30859]]]]},{"k":"G3790","v":[["brow",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25092]]]]},{"k":"G3791","v":[["vexed",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[25164,27075]]]]},{"k":"G3792","v":[["company",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27528]]]]},{"k":"G3793","v":[["*",[176,170,[[39,51,48,0,48,[[932,1,1,0,1],[933,2,1,1,2],[935,1,1,2,3],[936,2,2,3,5],[937,5,5,5,10],[939,1,1,10,11],[940,3,3,11,14],[941,4,3,14,17],[942,8,7,17,24],[943,8,8,24,32],[945,1,1,32,33],[947,1,1,33,34],[948,2,2,34,36],[949,5,5,36,41],[950,1,1,41,42],[951,1,1,42,43],[954,2,2,43,45],[955,3,3,45,48]]],[40,38,36,48,84,[[958,2,2,48,50],[959,3,3,50,53],[960,3,2,53,55],[961,5,5,55,60],[962,3,3,60,63],[963,3,3,63,66],[964,5,4,66,70],[965,4,4,70,74],[966,2,2,74,76],[967,1,1,76,77],[968,3,3,77,80],[970,1,1,80,81],[971,3,3,81,84]]],[41,41,41,84,125,[[975,2,2,84,86],[976,1,1,86,87],[977,5,5,87,92],[978,2,2,92,94],[979,4,4,94,98],[980,5,5,98,103],[981,6,6,103,109],[983,3,3,109,112],[984,3,3,112,115],[985,2,2,115,117],[986,1,1,117,118],[990,1,1,118,119],[991,2,2,119,121],[994,2,2,121,123],[995,2,2,123,125]]],[42,20,19,125,144,[[1001,1,1,125,126],[1002,4,4,126,130],[1003,8,7,130,137],[1007,1,1,137,138],[1008,6,6,138,144]]],[43,22,22,144,166,[[1018,1,1,144,145],[1023,1,1,145,146],[1025,1,1,146,147],[1028,2,2,147,149],[1030,1,1,149,150],[1031,5,5,150,155],[1033,1,1,155,156],[1034,2,2,156,158],[1036,3,3,158,161],[1038,3,3,161,164],[1041,2,2,164,166]]],[65,4,4,166,170,[[1173,1,1,166,167],[1183,1,1,167,168],[1185,2,2,168,170]]]],[23234,23235,23344,23346,23363,23387,23402,23404,23412,23415,23466,23504,23512,23535,23541,23573,23575,23602,23610,23611,23612,23616,23619,23620,23643,23663,23664,23665,23666,23668,23669,23672,23714,23764,23821,23823,23834,23835,23837,23852,23872,23905,23919,24101,24109,24144,24149,24153,24264,24273,24297,24308,24320,24324,24359,24385,24388,24391,24394,24395,24440,24441,24452,24477,24480,24496,24501,24502,24506,24534,24552,24553,24555,24563,24589,24634,24658,24685,24710,24714,24797,24834,24837,24841,25032,25035,25105,25108,25110,25122,25126,25136,25163,25165,25204,25206,25207,25219,25249,25264,25285,25287,25290,25312,25313,25317,25319,25338,25339,25419,25432,25434,25460,25472,25513,25532,25535,25578,25724,25734,25770,25870,25911,25939,25983,26223,26259,26262,26279,26281,26340,26348,26359,26360,26368,26371,26377,26565,26589,26592,26597,26598,26609,26614,26938,27108,27182,27331,27333,27407,27425,27427,27428,27432,27433,27505,27531,27536,27611,27618,27620,27691,27698,27699,27781,27787,30819,30990,31018,31023]]],["+",[6,6,[[39,4,4,0,4,[[941,1,1,0,1],[942,3,3,1,4]]],[41,2,2,4,6,[[981,1,1,4,5],[986,1,1,5,6]]]],[23575,23612,23619,23620,25313,25578]]],["company",[7,7,[[41,5,5,0,5,[[977,1,1,0,1],[978,1,1,1,2],[981,1,1,2,3],[983,1,1,3,4],[984,1,1,4,5]]],[42,1,1,5,6,[[1002,1,1,5,6]]],[43,1,1,6,7,[[1023,1,1,6,7]]]],[25136,25163,25339,25432,25472,26262,27108]]],["multitude",[56,54,[[39,24,23,0,23,[[941,2,2,0,2],[942,4,3,2,5],[943,7,7,5,12],[945,1,1,12,13],[948,2,2,13,15],[949,3,3,15,18],[950,1,1,18,19],[951,1,1,19,20],[954,1,1,20,21],[955,2,2,21,23]]],[40,15,14,23,37,[[958,1,1,23,24],[959,3,3,24,27],[960,3,2,27,29],[961,1,1,29,30],[963,1,1,30,31],[964,2,2,31,33],[965,2,2,33,35],[970,1,1,35,36],[971,1,1,36,37]]],[41,9,9,37,46,[[975,1,1,37,38],[977,1,1,38,39],[978,1,1,39,40],[980,1,1,40,41],[981,1,1,41,42],[990,1,1,42,43],[991,1,1,43,44],[994,2,2,44,46]]],[42,2,2,46,48,[[1001,1,1,46,47],[1002,1,1,47,48]]],[43,4,4,48,52,[[1033,1,1,48,49],[1036,1,1,49,50],[1038,1,1,50,51],[1041,1,1,51,52]]],[65,2,2,52,54,[[1173,1,1,52,53],[1185,1,1,53,54]]]],[23541,23573,23602,23611,23616,23643,23664,23665,23666,23668,23669,23672,23714,23821,23823,23834,23837,23872,23905,23919,24101,24149,24153,24273,24297,24308,24320,24324,24359,24395,24496,24501,24502,24552,24555,24797,24834,25032,25126,25165,25290,25317,25724,25770,25870,25911,26223,26259,27505,27618,27698,27787,30819,31023]]],["multitudes",[16,16,[[39,13,13,0,13,[[933,1,1,0,1],[936,2,2,1,3],[937,3,3,3,6],[939,1,1,6,7],[940,1,1,7,8],[941,1,1,8,9],[943,1,1,9,10],[947,1,1,10,11],[949,1,1,11,12],[954,1,1,12,13]]],[41,1,1,13,14,[[977,1,1,13,14]]],[43,1,1,14,15,[[1030,1,1,14,15]]],[65,1,1,15,16,[[1183,1,1,15,16]]]],[23235,23346,23363,23387,23412,23415,23466,23504,23541,23663,23764,23835,24109,25122,27407,30990]]],["number",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26938]]],["people",[84,82,[[39,9,9,0,9,[[932,1,1,0,1],[935,1,1,1,2],[937,2,2,2,4],[940,2,2,4,6],[942,1,1,6,7],[949,1,1,7,8],[955,1,1,8,9]]],[40,20,19,9,28,[[961,2,2,9,11],[962,3,3,11,14],[963,2,2,14,16],[964,3,2,16,18],[965,2,2,18,20],[966,2,2,20,22],[967,1,1,22,23],[968,3,3,23,26],[971,2,2,26,28]]],[41,22,22,28,50,[[975,1,1,28,29],[976,1,1,29,30],[977,2,2,30,32],[979,4,4,32,36],[980,3,3,36,39],[981,3,3,39,42],[983,2,2,42,44],[984,2,2,44,46],[985,2,2,46,48],[995,2,2,48,50]]],[42,17,16,50,66,[[1002,2,2,50,52],[1003,8,7,52,59],[1007,1,1,59,60],[1008,6,6,60,66]]],[43,15,15,66,81,[[1025,1,1,66,67],[1028,2,2,67,69],[1031,5,5,69,74],[1034,2,2,74,76],[1036,2,2,76,78],[1038,2,2,78,80],[1041,1,1,80,81]]],[65,1,1,81,82,[[1185,1,1,81,82]]]],[23234,23344,23402,23404,23512,23535,23610,23852,24144,24385,24388,24440,24441,24452,24477,24480,24506,24534,24553,24563,24589,24634,24658,24685,24710,24714,24837,24841,25035,25105,25108,25110,25204,25206,25207,25219,25249,25285,25287,25312,25319,25338,25419,25434,25460,25513,25532,25535,25939,25983,26279,26281,26340,26348,26359,26360,26368,26371,26377,26565,26589,26592,26597,26598,26609,26614,27182,27331,27333,27425,27427,27428,27432,27433,27531,27536,27611,27620,27691,27699,27781,31018]]],["press",[5,5,[[40,3,3,0,3,[[958,1,1,0,1],[961,2,2,1,3]]],[41,2,2,3,5,[[980,1,1,3,4],[991,1,1,4,5]]]],[24264,24391,24394,25264,25734]]],["the",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23235]]]]},{"k":"G3794","v":[["holds",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28975]]]]},{"k":"G3795","v":[["*",[5,5,[[42,5,5,0,5,[[1002,2,2,0,2],[1017,3,3,2,5]]]],[26266,26268,26907,26908,26911]]],["fish",[3,3,[[42,3,3,0,3,[[1017,3,3,0,3]]]],[26907,26908,26911]]],["fishes",[2,2,[[42,2,2,0,2,[[1002,2,2,0,2]]]],[26266,26268]]]]},{"k":"G3796","v":[["*",[3,3,[[39,1,1,0,1,[[956,1,1,0,1]]],[40,2,2,1,3,[[967,1,1,1,2],[969,1,1,2,3]]]],[24196,24659,24752]]],["end",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24196]]],["even",[2,2,[[40,2,2,0,2,[[967,1,1,0,1],[969,1,1,1,2]]]],[24659,24752]]]]},{"k":"G3797","v":[["latter",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30361]]]]},{"k":"G3798","v":[["*",[15,15,[[39,7,7,0,7,[[936,1,1,0,1],[942,2,2,1,3],[944,1,1,3,4],[948,1,1,4,5],[954,1,1,5,6],[955,1,1,6,7]]],[40,6,6,7,13,[[957,1,1,7,8],[960,1,1,8,9],[962,1,1,9,10],[967,1,1,10,11],[970,1,1,11,12],[971,1,1,12,13]]],[42,2,2,13,15,[[1002,1,1,13,14],[1016,1,1,14,15]]]],[23361,23612,23620,23674,23800,24074,24186,24247,24358,24454,24651,24771,24868,26273,26886]]],["+",[2,2,[[40,2,2,0,2,[[957,1,1,0,1],[967,1,1,1,2]]]],[24247,24651]]],["even",[8,8,[[39,4,4,0,4,[[936,1,1,0,1],[948,1,1,1,2],[954,1,1,2,3],[955,1,1,3,4]]],[40,3,3,4,7,[[960,1,1,4,5],[962,1,1,5,6],[971,1,1,6,7]]],[42,1,1,7,8,[[1002,1,1,7,8]]]],[23361,23800,24074,24186,24358,24454,24868,26273]]],["evening",[5,5,[[39,3,3,0,3,[[942,2,2,0,2],[944,1,1,2,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[42,1,1,4,5,[[1016,1,1,4,5]]]],[23612,23620,23674,24771,26886]]]]},{"k":"G3799","v":[["*",[3,3,[[42,2,2,0,2,[[1003,1,1,0,1],[1007,1,1,1,2]]],[65,1,1,2,3,[[1167,1,1,2,3]]]],[26352,26567,30713]]],["appearance",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26352]]],["countenance",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30713]]],["face",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26567]]]]},{"k":"G3800","v":[["*",[4,4,[[41,1,1,0,1,[[975,1,1,0,1]]],[44,1,1,1,2,[[1051,1,1,1,2]]],[45,1,1,2,3,[[1070,1,1,2,3]]],[46,1,1,3,4,[[1088,1,1,3,4]]]],[25039,28091,28547,28997]]],["charges",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28547]]],["wages",[3,3,[[41,1,1,0,1,[[975,1,1,0,1]]],[44,1,1,1,2,[[1051,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]]],[25039,28091,28997]]]]},{"k":"G3801","v":[["come",[4,4,[[65,4,4,0,4,[[1167,2,2,0,2],[1170,1,1,2,3],[1177,1,1,3,4]]]],[30701,30705,30776,30889]]]]},{"k":"G3802","v":[["entangle",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23887]]]]},{"k":"G3803","v":[["snare",[5,5,[[41,1,1,0,1,[[993,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]],[53,2,2,2,4,[[1121,1,1,2,3],[1124,1,1,3,4]]],[54,1,1,4,5,[[1126,1,1,4,5]]]],[25861,28218,29738,29797,29853]]]]},{"k":"G3804","v":[["*",[16,16,[[44,2,2,0,2,[[1052,1,1,0,1],[1053,1,1,1,2]]],[46,3,3,2,5,[[1078,3,3,2,5]]],[47,1,1,5,6,[[1095,1,1,5,6]]],[49,1,1,6,7,[[1105,1,1,6,7]]],[50,1,1,7,8,[[1107,1,1,7,8]]],[54,1,1,8,9,[[1127,1,1,8,9]]],[57,3,3,9,12,[[1134,2,2,9,11],[1142,1,1,11,12]]],[59,4,4,12,16,[[1151,1,1,12,13],[1154,1,1,13,14],[1155,2,2,14,16]]]],[28096,28134,28805,28806,28807,29186,29431,29489,29864,29986,29987,30165,30385,30459,30466,30474]]],["affections",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29186]]],["afflictions",[3,3,[[54,1,1,0,1,[[1127,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]],[59,1,1,2,3,[[1155,1,1,2,3]]]],[29864,30165,30474]]],["motions",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28096]]],["suffering",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29986]]],["sufferings",[10,10,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,3,3,1,4,[[1078,3,3,1,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]],[50,1,1,5,6,[[1107,1,1,5,6]]],[57,1,1,6,7,[[1134,1,1,6,7]]],[59,3,3,7,10,[[1151,1,1,7,8],[1154,1,1,8,9],[1155,1,1,9,10]]]],[28134,28805,28806,28807,29431,29489,29987,30385,30459,30466]]]]},{"k":"G3805","v":[["suffer",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27846]]]]},{"k":"G3806","v":[["*",[3,3,[[44,1,1,0,1,[[1046,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]]],[27956,29522,29608]]],["affection",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29522]]],["affections",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27956]]],["lust",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29608]]]]},{"k":"G3807","v":[["*",[3,3,[[45,1,1,0,1,[[1065,1,1,0,1]]],[47,2,2,1,3,[[1093,2,2,1,3]]]],[28448,29126,29127]]],["instructors",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28448]]],["schoolmaster",[2,2,[[47,2,2,0,2,[[1093,2,2,0,2]]]],[29126,29127]]]]},{"k":"G3808","v":[["*",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]]],[23475,26266]]],["children",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23475]]],["lad",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26266]]]]},{"k":"G3809","v":[["*",[6,6,[[48,1,1,0,1,[[1102,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]],[57,4,4,2,6,[[1144,4,4,2,6]]]],[29341,29869,30217,30219,30220,30223]]],["chastening",[3,3,[[57,3,3,0,3,[[1144,3,3,0,3]]]],[30217,30219,30223]]],["chastisement",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30220]]],["instruction",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29869]]],["nurture",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29341]]]]},{"k":"G3810","v":[["*",[2,2,[[44,1,1,0,1,[[1047,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[27982,30221]]],["corrected",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30221]]],["instructor",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27982]]]]},{"k":"G3811","v":[["*",[13,13,[[41,2,2,0,2,[[995,2,2,0,2]]],[43,2,2,2,4,[[1024,1,1,2,3],[1039,1,1,3,4]]],[45,1,1,4,5,[[1072,1,1,4,5]]],[46,1,1,5,6,[[1083,1,1,5,6]]],[53,1,1,6,7,[[1119,1,1,6,7]]],[54,1,1,7,8,[[1126,1,1,7,8]]],[55,1,1,8,9,[[1130,1,1,8,9]]],[57,3,3,9,12,[[1144,3,3,9,12]]],[65,1,1,12,13,[[1169,1,1,12,13]]]],[25951,25957,27138,27707,28632,28907,29716,29852,29920,30218,30219,30222,30765]]],["Teaching",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29920]]],["chasten",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30765]]],["chastened",[3,3,[[45,1,1,0,1,[[1072,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[28632,28907,30222]]],["chasteneth",[2,2,[[57,2,2,0,2,[[1144,2,2,0,2]]]],[30218,30219]]],["chastise",[2,2,[[41,2,2,0,2,[[995,2,2,0,2]]]],[25951,25957]]],["instructing",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29852]]],["learn",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29716]]],["learned",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27138]]],["taught",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27707]]]]},{"k":"G3812","v":[["child",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24559]]]]},{"k":"G3813","v":[["*",[51,48,[[39,17,15,0,15,[[930,9,7,0,7],[942,1,1,7,8],[943,1,1,8,9],[946,4,4,9,13],[947,2,2,13,15]]],[40,11,10,15,25,[[961,4,3,15,18],[963,1,1,18,19],[965,3,3,19,22],[966,3,3,22,25]]],[41,14,14,25,39,[[973,4,4,25,29],[974,4,4,29,33],[979,1,1,33,34],[981,2,2,34,36],[983,1,1,36,37],[990,2,2,37,39]]],[42,3,3,39,42,[[1000,1,1,39,40],[1012,1,1,40,41],[1017,1,1,41,42]]],[45,1,1,42,43,[[1075,1,1,42,43]]],[57,3,3,43,46,[[1134,2,2,43,45],[1143,1,1,45,46]]],[61,2,2,46,48,[[1160,2,2,46,48]]]],[23177,23178,23180,23182,23183,23189,23190,23618,23671,23729,23730,23731,23732,23775,23776,24403,24404,24405,24491,24562,24574,24575,24601,24602,24603,24952,24959,24969,24973,24990,24994,25000,25013,25227,25348,25349,25412,25704,25705,26205,26747,26903,28698,29990,29991,30195,30563,30568]]],["+",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24994]]],["Children",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26903]]],["child",[27,26,[[39,11,10,0,10,[[930,8,7,0,7],[946,3,3,7,10]]],[40,3,3,10,13,[[965,2,2,10,12],[966,1,1,12,13]]],[41,10,10,13,23,[[973,4,4,13,17],[974,3,3,17,20],[981,2,2,20,22],[990,1,1,22,23]]],[42,2,2,23,25,[[1000,1,1,23,24],[1012,1,1,24,25]]],[57,1,1,25,26,[[1143,1,1,25,26]]]],[23177,23178,23180,23182,23183,23189,23190,23729,23731,23732,24562,24574,24603,24952,24959,24969,24973,24990,25000,25013,25348,25349,25705,26205,26747,30195]]],["child's",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23189]]],["children",[16,16,[[39,5,5,0,5,[[942,1,1,0,1],[943,1,1,1,2],[946,1,1,2,3],[947,2,2,3,5]]],[40,3,3,5,8,[[965,1,1,5,6],[966,2,2,6,8]]],[41,3,3,8,11,[[979,1,1,8,9],[983,1,1,9,10],[990,1,1,10,11]]],[45,1,1,11,12,[[1075,1,1,11,12]]],[57,2,2,12,14,[[1134,2,2,12,14]]],[61,2,2,14,16,[[1160,2,2,14,16]]]],[23618,23671,23730,23775,23776,24575,24601,24602,25227,25412,25704,28698,29990,29991,30563,30568]]],["children's",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24491]]],["damsel",[4,3,[[40,4,3,0,3,[[961,4,3,0,3]]]],[24403,24404,24405]]]]},{"k":"G3814","v":[["*",[13,12,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[970,2,2,1,3]]],[41,2,2,3,5,[[984,1,1,3,4],[994,1,1,4,5]]],[42,1,1,5,6,[[1014,1,1,5,6]]],[43,2,2,6,8,[[1029,1,1,6,7],[1033,1,1,7,8]]],[47,5,4,8,12,[[1094,5,4,8,12]]]],[24123,24820,24823,25504,25920,26802,27350,27499,29153,29154,29161,29162]]],["bondmaid",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29153]]],["bondwoman",[4,3,[[47,4,3,0,3,[[1094,4,3,0,3]]]],[29154,29161,29162]]],["damsel",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[43,2,2,2,4,[[1029,1,1,2,3],[1033,1,1,3,4]]]],[24123,26802,27350,27499]]],["maid",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24823,25920]]],["maidens",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25504]]],["maids",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24820]]]]},{"k":"G3815","v":[["play",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28574]]]]},{"k":"G3816","v":[["*",[24,24,[[39,8,8,0,8,[[930,1,1,0,1],[936,3,3,1,4],[940,1,1,4,5],[942,1,1,5,6],[945,1,1,6,7],[949,1,1,7,8]]],[41,9,9,8,17,[[973,2,2,8,10],[974,1,1,10,11],[979,1,1,11,12],[980,2,2,12,14],[981,1,1,14,15],[984,1,1,15,16],[987,1,1,16,17]]],[42,1,1,17,18,[[1000,1,1,17,18]]],[43,6,6,18,24,[[1020,2,2,18,20],[1021,3,3,20,23],[1037,1,1,23,24]]]],[23185,23351,23353,23358,23507,23599,23718,23841,24947,24962,25016,25202,25296,25299,25343,25504,25614,26207,27009,27022,27047,27049,27052,27638]]],["Maid",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25299]]],["Son",[2,2,[[43,2,2,0,2,[[1020,2,2,0,2]]]],[27009,27022]]],["child",[5,5,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[981,1,1,2,3]]],[43,2,2,3,5,[[1021,2,2,3,5]]]],[23718,25016,25343,27049,27052]]],["children",[2,2,[[39,2,2,0,2,[[930,1,1,0,1],[949,1,1,1,2]]]],[23185,23841]]],["maiden",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25296]]],["man",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27638]]],["menservants",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25504]]],["servant",[8,8,[[39,4,4,0,4,[[936,3,3,0,3],[940,1,1,3,4]]],[41,3,3,4,7,[[973,2,2,4,6],[979,1,1,6,7]]],[43,1,1,7,8,[[1021,1,1,7,8]]]],[23351,23353,23358,23507,24947,24962,25202,27047]]],["servants",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]]],[23599,25614]]],["son",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26207]]]]},{"k":"G3817","v":[["*",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]],[65,1,1,4,5,[[1175,1,1,4,5]]]],[24122,24801,25928,26795,30845]]],["smote",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]]],[24122,24801,25928,26795]]],["striketh",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30845]]]]},{"k":"G3818","v":[]},{"k":"G3819","v":[["*",[6,6,[[39,1,1,0,1,[[939,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[57,1,1,3,4,[[1133,1,1,3,4]]],[60,1,1,4,5,[[1156,1,1,4,5]]],[64,1,1,5,6,[[1166,1,1,5,6]]]],[23480,24870,25376,29964,30488,30676]]],["+",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[24870,30676]]],["ago",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[23480,25376]]],["old",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30488]]],["past",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29964]]]]},{"k":"G3820","v":[["old",[19,15,[[39,3,3,0,3,[[937,2,2,0,2],[941,1,1,2,3]]],[40,3,2,3,5,[[958,3,2,3,5]]],[41,5,3,5,8,[[977,5,3,5,8]]],[44,1,1,8,9,[[1051,1,1,8,9]]],[45,2,2,9,11,[[1066,2,2,9,11]]],[46,1,1,11,12,[[1080,1,1,11,12]]],[48,1,1,12,13,[[1100,1,1,12,13]]],[50,1,1,13,14,[[1109,1,1,13,14]]],[61,2,1,14,15,[[1160,2,1,14,15]]]],[23395,23396,23591,24281,24282,25143,25144,25146,28074,28461,28462,28855,29294,29526,30557]]]]},{"k":"G3821","v":[["oldness",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28097]]]]},{"k":"G3822","v":[["*",[4,3,[[41,1,1,0,1,[[984,1,1,0,1]]],[57,3,2,1,3,[[1133,1,1,1,2],[1140,2,1,2,3]]]],[25492,29974,30105]]],["+",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[57,1,1,1,2,[[1140,1,1,1,2]]]],[25492,30105]]],["decayeth",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30105]]],["old",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29974]]]]},{"k":"G3823","v":[["+",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29349]]]]},{"k":"G3824","v":[["regeneration",[2,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[23790,29928]]]]},{"k":"G3825","v":[["*",[142,138,[[39,17,17,0,17,[[932,2,2,0,2],[933,1,1,2,3],[941,3,3,3,6],[946,1,1,6,7],[947,1,1,7,8],[948,1,1,8,9],[949,1,1,9,10],[950,2,2,10,12],[954,4,4,12,16],[955,1,1,16,17]]],[40,26,24,17,41,[[958,2,2,17,19],[959,2,2,19,21],[960,1,1,21,22],[961,1,1,22,23],[963,1,1,23,24],[964,2,2,24,26],[966,5,4,26,30],[967,1,1,30,31],[968,2,2,31,33],[970,6,5,33,38],[971,3,3,38,41]]],[41,2,2,41,43,[[985,1,1,41,42],[995,1,1,42,43]]],[42,47,47,43,90,[[997,1,1,43,44],[1000,4,4,44,48],[1002,1,1,48,49],[1004,4,4,49,53],[1005,4,4,53,57],[1006,7,7,57,64],[1007,3,3,64,67],[1008,3,3,67,70],[1009,1,1,70,71],[1010,1,1,71,72],[1012,5,5,72,77],[1014,5,5,77,82],[1015,3,3,82,85],[1016,3,3,85,88],[1017,2,2,88,90]]],[43,6,6,90,96,[[1027,2,2,90,92],[1028,1,1,92,93],[1034,1,1,93,94],[1035,1,1,94,95],[1044,1,1,95,96]]],[44,5,5,96,101,[[1053,1,1,96,97],[1056,1,1,97,98],[1060,3,3,98,101]]],[45,3,3,101,104,[[1064,1,1,101,102],[1068,1,1,102,103],[1073,1,1,103,104]]],[46,9,9,104,113,[[1078,1,1,104,105],[1079,1,1,105,106],[1080,1,1,106,107],[1082,1,1,107,108],[1087,1,1,108,109],[1088,1,1,109,110],[1089,2,2,110,112],[1090,1,1,112,113]]],[47,9,8,113,121,[[1091,2,2,113,115],[1092,2,2,115,117],[1094,3,2,117,119],[1095,2,2,119,121]]],[49,3,3,121,124,[[1103,1,1,121,122],[1104,1,1,122,123],[1106,1,1,123,124]]],[57,10,9,124,133,[[1133,2,2,124,126],[1134,2,1,126,127],[1136,2,2,127,129],[1137,1,1,129,130],[1138,2,2,130,132],[1142,1,1,132,133]]],[58,1,1,133,134,[[1150,1,1,133,134]]],[60,1,1,134,135,[[1157,1,1,134,135]]],[61,1,1,135,136,[[1160,1,1,135,136]]],[65,2,2,136,138,[[1176,2,2,136,138]]]],[23216,23217,23267,23583,23584,23586,23746,23786,23797,23862,23873,23876,24096,24097,24098,24126,24179,24261,24273,24289,24308,24324,24385,24494,24513,24525,24589,24598,24612,24620,24667,24677,24678,24793,24794,24815,24823,24824,24830,24838,24839,25538,25955,26079,26159,26169,26202,26210,26272,26383,26389,26393,26402,26455,26457,26466,26467,26488,26498,26499,26500,26512,26520,26521,26530,26531,26561,26602,26608,26619,26642,26671,26742,26743,26745,26748,26754,26792,26812,26818,26823,26825,26829,26834,26862,26877,26888,26893,26899,26914,27274,27275,27317,27555,27578,27883,28131,28232,28313,28314,28315,28430,28492,28655,28816,28825,28842,28889,28978,29005,29041,29043,29045,29066,29074,29082,29099,29140,29150,29163,29165,29387,29419,29446,29968,29969,29990,30019,30021,30042,30045,30050,30163,30372,30520,30558,30869,30872]]],["+",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]]],[25955,29163]]],["Again",[14,14,[[39,9,9,0,9,[[932,1,1,0,1],[933,1,1,1,2],[941,3,3,2,5],[946,1,1,5,6],[948,1,1,6,7],[949,1,1,7,8],[950,1,1,8,9]]],[40,1,1,9,10,[[970,1,1,9,10]]],[42,1,1,10,11,[[997,1,1,10,11]]],[46,1,1,11,12,[[1089,1,1,11,12]]],[57,1,1,12,13,[[1136,1,1,12,13]]],[61,1,1,13,14,[[1160,1,1,13,14]]]],[23217,23267,23583,23584,23586,23746,23797,23862,23876,24815,26079,29041,30021,30558]]],["again",[125,122,[[39,8,8,0,8,[[932,1,1,0,1],[947,1,1,1,2],[950,1,1,2,3],[954,4,4,3,7],[955,1,1,7,8]]],[40,25,23,8,31,[[958,2,2,8,10],[959,2,2,10,12],[960,1,1,12,13],[961,1,1,13,14],[963,1,1,14,15],[964,2,2,15,17],[966,5,4,17,21],[967,1,1,21,22],[968,2,2,22,24],[970,5,4,24,28],[971,3,3,28,31]]],[41,1,1,31,32,[[985,1,1,31,32]]],[42,46,46,32,78,[[1000,4,4,32,36],[1002,1,1,36,37],[1004,4,4,37,41],[1005,4,4,41,45],[1006,7,7,45,52],[1007,3,3,52,55],[1008,3,3,55,58],[1009,1,1,58,59],[1010,1,1,59,60],[1012,5,5,60,65],[1014,5,5,65,70],[1015,3,3,70,73],[1016,3,3,73,76],[1017,2,2,76,78]]],[43,6,6,78,84,[[1027,2,2,78,80],[1028,1,1,80,81],[1034,1,1,81,82],[1035,1,1,82,83],[1044,1,1,83,84]]],[44,5,5,84,89,[[1053,1,1,84,85],[1056,1,1,85,86],[1060,3,3,86,89]]],[45,3,3,89,92,[[1064,1,1,89,90],[1068,1,1,90,91],[1073,1,1,91,92]]],[46,8,8,92,100,[[1078,1,1,92,93],[1079,1,1,93,94],[1080,1,1,94,95],[1082,1,1,95,96],[1087,1,1,96,97],[1088,1,1,97,98],[1089,1,1,98,99],[1090,1,1,99,100]]],[47,7,7,100,107,[[1091,2,2,100,102],[1092,2,2,102,104],[1094,2,2,104,106],[1095,1,1,106,107]]],[49,3,3,107,110,[[1103,1,1,107,108],[1104,1,1,108,109],[1106,1,1,109,110]]],[57,9,8,110,118,[[1133,2,2,110,112],[1134,2,1,112,113],[1136,1,1,113,114],[1137,1,1,114,115],[1138,2,2,115,117],[1142,1,1,117,118]]],[58,1,1,118,119,[[1150,1,1,118,119]]],[60,1,1,119,120,[[1157,1,1,119,120]]],[65,2,2,120,122,[[1176,2,2,120,122]]]],[23216,23786,23873,24096,24097,24098,24126,24179,24261,24273,24289,24308,24324,24385,24494,24513,24525,24589,24598,24612,24620,24667,24677,24678,24793,24794,24823,24824,24830,24838,24839,25538,26159,26169,26202,26210,26272,26383,26389,26393,26402,26455,26457,26466,26467,26488,26498,26499,26500,26512,26520,26521,26530,26531,26561,26602,26608,26619,26642,26671,26742,26743,26745,26748,26754,26792,26812,26818,26823,26825,26829,26834,26862,26877,26888,26893,26899,26914,27274,27275,27317,27555,27578,27883,28131,28232,28313,28314,28315,28430,28492,28655,28816,28825,28842,28889,28978,29005,29043,29045,29066,29074,29082,29099,29140,29150,29165,29387,29419,29446,29968,29969,29990,30019,30042,30045,30050,30163,30372,30520,30869,30872]]],["ye",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29140]]]]},{"k":"G3826","v":[["once",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25953]]]]},{"k":"G3827","v":[["great",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24501]]]]},{"k":"G3828","v":[["Pamphylia",[5,5,[[43,5,5,0,5,[[1019,1,1,0,1],[1030,1,1,1,2],[1031,1,1,2,3],[1032,1,1,3,4],[1044,1,1,4,5]]]],[26959,27375,27438,27480,27860]]]]},{"k":"G3829","v":[["inn",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25397]]]]},{"k":"G3830","v":[["host",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25398]]]]},{"k":"G3831","v":[["assembly",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30235]]]]},{"k":"G3832","v":[["house",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27517]]]]},{"k":"G3833","v":[["*",[3,3,[[41,1,1,0,1,[[983,1,1,0,1]]],[48,2,2,1,3,[[1102,2,2,1,3]]]],[25427,29348,29350]]],["+",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25427]]],["armour",[2,2,[[48,2,2,0,2,[[1102,2,2,0,2]]]],[29348,29350]]]]},{"k":"G3834","v":[["*",[5,5,[[41,1,1,0,1,[[992,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]],[46,2,2,2,4,[[1081,1,1,2,3],[1088,1,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]]],[25802,28429,28861,28992,29286]]],["craftiness",[4,4,[[41,1,1,0,1,[[992,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]],[46,1,1,2,3,[[1081,1,1,2,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]]],[25802,28429,28861,29286]]],["subtilty",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28992]]]]},{"k":"G3835","v":[["crafty",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29038]]]]},{"k":"G3836","v":[["quarter",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24260]]]]},{"k":"G3837","v":[["*",[7,7,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[43,4,4,2,6,[[1034,1,1,2,3],[1038,1,1,3,4],[1041,1,1,4,5],[1045,1,1,5,6]]],[45,1,1,6,7,[[1065,1,1,6,7]]]],[24893,25307,27553,27692,27772,27921,28450]]],["places",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27772]]],["where",[6,6,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[43,3,3,2,5,[[1034,1,1,2,3],[1038,1,1,3,4],[1045,1,1,4,5]]],[45,1,1,5,6,[[1065,1,1,5,6]]]],[24893,25307,27553,27692,27921,28450]]]]},{"k":"G3838","v":[["*",[2,2,[[41,1,1,0,1,[[985,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[25529,30089]]],["+",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25529]]],["uttermost",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30089]]]]},{"k":"G3839","v":[["always",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27772]]]]},{"k":"G3840","v":[["*",[2,2,[[41,1,1,0,1,[[991,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[25774,30109]]],["about",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30109]]],["side",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25774]]]]},{"k":"G3841","v":[["*",[10,10,[[46,1,1,0,1,[[1083,1,1,0,1]]],[65,9,9,1,10,[[1167,1,1,1,2],[1170,1,1,2,3],[1177,1,1,3,4],[1181,1,1,4,5],[1182,2,2,5,7],[1185,2,2,7,9],[1187,1,1,9,10]]]],[28916,30705,30776,30889,30949,30961,30968,31023,31032,31075]]],["Almighty",[9,9,[[46,1,1,0,1,[[1083,1,1,0,1]]],[65,8,8,1,9,[[1167,1,1,1,2],[1170,1,1,2,3],[1177,1,1,3,4],[1181,1,1,4,5],[1182,2,2,5,7],[1185,1,1,7,8],[1187,1,1,8,9]]]],[28916,30705,30776,30889,30949,30961,30968,31032,31075]]],["omnipotent",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31023]]]]},{"k":"G3842","v":[["*",[42,38,[[39,2,1,0,1,[[954,2,1,0,1]]],[40,2,1,1,2,[[970,2,1,1,2]]],[41,2,2,2,4,[[987,1,1,2,3],[990,1,1,3,4]]],[42,8,6,4,10,[[1002,1,1,4,5],[1003,1,1,5,6],[1004,1,1,6,7],[1007,1,1,7,8],[1008,2,1,8,9],[1014,2,1,9,10]]],[44,1,1,10,11,[[1046,1,1,10,11]]],[45,2,2,11,13,[[1062,1,1,11,12],[1076,1,1,12,13]]],[46,4,4,13,17,[[1079,1,1,13,14],[1081,1,1,14,15],[1082,1,1,15,16],[1086,1,1,16,17]]],[47,1,1,17,18,[[1094,1,1,17,18]]],[48,1,1,18,19,[[1101,1,1,18,19]]],[49,4,4,19,23,[[1103,2,2,19,21],[1104,1,1,21,22],[1106,1,1,22,23]]],[50,3,3,23,26,[[1107,1,1,23,24],[1110,2,2,24,26]]],[51,6,6,26,32,[[1111,1,1,26,27],[1112,1,1,27,28],[1113,1,1,28,29],[1114,1,1,29,30],[1115,2,2,30,32]]],[52,3,3,32,35,[[1116,2,2,32,34],[1117,1,1,34,35]]],[54,1,1,35,36,[[1127,1,1,35,36]]],[56,1,1,36,37,[[1132,1,1,36,37]]],[57,1,1,37,38,[[1139,1,1,37,38]]]],[24065,24761,25619,25689,26291,26334,26410,26565,26588,26805,27939,28367,28776,28838,28869,28883,28964,29149,29324,29365,29381,29403,29446,29468,29548,29554,29562,29586,29596,29620,29636,29637,29652,29660,29674,29860,29942,30089]]],["+",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28838]]],["Always",[2,2,[[46,1,1,0,1,[[1081,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[28869,29365]]],["Ever",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29860]]],["alway",[5,5,[[42,1,1,0,1,[[1003,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]],[50,1,1,2,3,[[1110,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]],[52,1,1,4,5,[[1117,1,1,4,5]]]],[26334,29446,29548,29586,29674]]],["always",[26,23,[[39,2,1,0,1,[[954,2,1,0,1]]],[40,2,1,1,2,[[970,2,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[42,5,4,3,7,[[1004,1,1,3,4],[1007,1,1,4,5],[1008,2,1,5,6],[1014,1,1,6,7]]],[44,1,1,7,8,[[1046,1,1,7,8]]],[45,2,2,8,10,[[1062,1,1,8,9],[1076,1,1,9,10]]],[46,2,2,10,12,[[1082,1,1,10,11],[1086,1,1,11,12]]],[47,1,1,12,13,[[1094,1,1,12,13]]],[48,1,1,13,14,[[1101,1,1,13,14]]],[49,2,2,14,16,[[1103,1,1,14,15],[1104,1,1,15,16]]],[50,2,2,16,18,[[1107,1,1,16,17],[1110,1,1,17,18]]],[51,2,2,18,20,[[1111,1,1,18,19],[1113,1,1,19,20]]],[52,2,2,20,22,[[1116,2,2,20,22]]],[56,1,1,22,23,[[1132,1,1,22,23]]]],[24065,24761,25689,26410,26565,26588,26805,27939,28367,28776,28883,28964,29149,29324,29381,29403,29468,29554,29562,29596,29652,29660,29942]]],["ever",[5,5,[[41,1,1,0,1,[[987,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[51,2,2,2,4,[[1114,1,1,2,3],[1115,1,1,3,4]]],[57,1,1,4,5,[[1139,1,1,4,5]]]],[25619,26805,29620,29636,30089]]],["evermore",[2,2,[[42,1,1,0,1,[[1002,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]]],[26291,29637]]]]},{"k":"G3843","v":[["*",[9,9,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,3,3,1,4,[[1035,1,1,1,2],[1038,1,1,2,3],[1045,1,1,3,4]]],[44,1,1,4,5,[[1048,1,1,4,5]]],[45,4,4,5,9,[[1066,1,1,5,6],[1070,2,2,6,8],[1077,1,1,8,9]]]],[25086,27578,27686,27903,28000,28464,28550,28562,28788]]],["+",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28788]]],["altogether",[2,2,[[45,2,2,0,2,[[1066,1,1,0,1],[1070,1,1,1,2]]]],[28464,28550]]],["doubt",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27903]]],["means",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]]],[27578,28562]]],["needs",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27686]]],["surely",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25086]]],["wise",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28000]]]]},{"k":"G3844","v":[["*",[198,187,[[39,19,18,0,18,[[930,3,3,0,3],[932,1,1,3,4],[934,1,1,4,5],[941,3,3,5,8],[943,2,2,8,10],[946,1,1,10,11],[947,2,1,11,12],[948,2,2,12,14],[949,2,2,14,16],[950,1,1,16,17],[956,1,1,17,18]]],[40,16,14,18,32,[[957,1,1,18,19],[958,1,1,19,20],[959,1,1,20,21],[960,3,3,21,24],[961,2,2,24,26],[964,1,1,26,27],[966,4,2,27,29],[968,2,2,29,31],[970,1,1,31,32]]],[41,29,28,32,60,[[973,3,3,32,35],[974,2,2,35,37],[975,1,1,37,38],[977,2,2,38,40],[978,2,2,40,42],[979,1,1,42,43],[980,5,5,43,48],[981,1,1,48,49],[982,2,2,49,51],[983,2,2,51,53],[984,1,1,53,54],[985,2,2,54,56],[989,1,1,56,57],[990,3,2,57,59],[991,1,1,59,60]]],[42,33,29,60,89,[[997,3,3,60,63],[1000,3,3,63,66],[1001,4,3,66,69],[1002,2,2,69,71],[1003,1,1,71,72],[1004,4,3,72,75],[1005,2,2,75,77],[1006,1,1,77,78],[1010,3,3,78,81],[1011,3,2,81,83],[1012,2,2,83,85],[1013,4,3,85,88],[1015,1,1,88,89]]],[43,34,33,89,122,[[1019,1,1,89,90],[1020,2,2,90,92],[1021,2,2,92,94],[1022,2,2,94,96],[1024,2,2,96,98],[1026,3,3,98,101],[1027,4,3,101,104],[1033,1,1,104,105],[1034,1,1,105,106],[1035,3,3,106,109],[1037,1,1,109,110],[1038,3,3,110,113],[1039,3,3,113,116],[1041,1,1,116,117],[1043,4,4,117,121],[1045,1,1,121,122]]],[44,13,13,122,135,[[1046,2,2,122,124],[1047,2,2,124,126],[1049,1,1,126,127],[1054,1,1,127,128],[1056,3,3,128,131],[1057,2,2,131,133],[1059,1,1,133,134],[1061,1,1,134,135]]],[45,6,6,135,141,[[1064,2,2,135,137],[1068,1,1,137,138],[1073,2,2,138,140],[1077,1,1,140,141]]],[46,2,2,141,143,[[1078,1,1,141,142],[1088,1,1,142,143]]],[47,4,4,143,147,[[1091,3,3,143,146],[1093,1,1,146,147]]],[48,2,2,147,149,[[1102,2,2,147,149]]],[49,2,1,149,150,[[1106,2,1,149,150]]],[50,1,1,150,151,[[1110,1,1,150,151]]],[51,2,2,151,153,[[1112,1,1,151,152],[1114,1,1,152,153]]],[52,3,3,153,156,[[1116,1,1,153,154],[1118,2,2,154,156]]],[54,5,5,156,161,[[1125,2,2,156,158],[1126,1,1,158,159],[1127,1,1,159,160],[1128,1,1,160,161]]],[57,10,10,161,171,[[1133,2,2,161,163],[1134,2,2,163,165],[1135,1,1,165,166],[1141,1,1,166,167],[1143,3,3,167,170],[1144,1,1,170,171]]],[58,4,4,171,175,[[1146,4,4,171,175]]],[59,2,2,175,177,[[1152,2,2,175,177]]],[60,3,3,177,180,[[1156,1,1,177,178],[1157,1,1,178,179],[1158,1,1,179,180]]],[61,2,2,180,182,[[1161,1,1,180,181],[1163,1,1,181,182]]],[62,3,2,182,184,[[1164,3,2,182,184]]],[65,3,3,184,187,[[1168,2,2,184,186],[1169,1,1,186,187]]]],[23173,23176,23185,23227,23283,23540,23543,23558,23662,23663,23746,23788,23812,23822,23851,23868,23897,24210,24231,24273,24309,24324,24327,24338,24385,24390,24511,24615,24634,24675,24684,24797,24923,24930,24938,24974,25025,25038,25108,25109,25165,25180,25233,25250,25257,25280,25286,25294,25348,25370,25402,25421,25442,25507,25520,25522,25667,25715,25723,25738,26050,26058,26083,26165,26196,26208,26244,26251,26254,26302,26303,26357,26407,26419,26421,26456,26473,26499,26685,26691,26693,26714,26725,26753,26754,26764,26766,26767,26850,26982,26998,27001,27057,27059,27061,27069,27132,27174,27218,27230,27259,27265,27281,27291,27496,27532,27560,27570,27577,27650,27671,27672,27680,27707,27709,27734,27777,27831,27833,27835,27845,27921,27955,27956,27973,27975,28040,28169,28233,28234,28236,28248,28261,28285,28353,28421,28429,28511,28649,28650,28778,28817,29013,29065,29066,29069,29113,29345,29346,29460,29558,29583,29604,29655,29684,29686,29822,29827,29829,29867,29883,29967,29972,29984,29986,29998,30128,30176,30183,30184,30236,30271,30273,30283,30293,30403,30419,30496,30511,30530,30601,30639,30648,30649,30730,30744,30764]]],["+",[12,12,[[39,2,2,0,2,[[930,1,1,0,1],[949,1,1,1,2]]],[40,3,3,2,5,[[959,1,1,2,3],[961,1,1,3,4],[968,1,1,4,5]]],[41,1,1,5,6,[[982,1,1,5,6]]],[42,1,1,6,7,[[1001,1,1,6,7]]],[44,2,2,7,9,[[1057,1,1,7,8],[1059,1,1,8,9]]],[45,2,2,9,11,[[1073,2,2,9,11]]],[57,1,1,11,12,[[1143,1,1,11,12]]]],[23176,23868,24309,24390,24684,25370,26254,28248,28285,28649,28650,30183]]],["With",[2,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]]],[23788,24615]]],["above",[3,3,[[41,2,2,0,2,[[985,2,2,0,2]]],[57,1,1,2,3,[[1133,1,1,2,3]]]],[25520,25522,29972]]],["against",[2,2,[[44,2,2,0,2,[[1046,1,1,0,1],[1049,1,1,1,2]]]],[27956,28040]]],["among",[3,3,[[39,1,1,0,1,[[956,1,1,0,1]]],[50,1,1,1,2,[[1110,1,1,1,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[24210,29558,30730]]],["any",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29686]]],["at",[12,12,[[39,1,1,0,1,[[943,1,1,0,1]]],[41,5,5,1,6,[[979,1,1,1,2],[980,2,2,2,4],[982,1,1,4,5],[989,1,1,5,6]]],[43,6,6,6,12,[[1021,2,2,6,8],[1022,2,2,8,10],[1024,1,1,10,11],[1039,1,1,11,12]]]],[23663,25233,25280,25286,25402,25667,27057,27059,27061,27069,27174,27707]]],["before",[3,3,[[44,1,1,0,1,[[1047,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[27975,30293,30511]]],["by",[23,23,[[39,5,5,0,5,[[932,1,1,0,1],[941,3,3,1,4],[948,1,1,4,5]]],[40,6,6,5,11,[[957,1,1,5,6],[958,1,1,6,7],[960,3,3,7,10],[966,1,1,10,11]]],[41,6,6,11,17,[[977,2,2,11,13],[980,2,2,13,15],[981,1,1,15,16],[990,1,1,16,17]]],[42,1,1,17,18,[[1015,1,1,17,18]]],[43,3,3,18,21,[[1027,2,2,18,20],[1033,1,1,20,21]]],[45,1,1,21,22,[[1077,1,1,21,22]]],[57,1,1,22,23,[[1143,1,1,22,23]]]],[23227,23540,23543,23558,23822,24231,24273,24324,24327,24338,24634,25108,25109,25250,25257,25348,25723,26850,27265,27291,27496,28778,30184]]],["contrary",[3,3,[[43,1,1,0,1,[[1035,1,1,0,1]]],[44,2,2,1,3,[[1056,1,1,1,2],[1061,1,1,2,3]]]],[27570,28233,28353]]],["from",[24,22,[[40,2,2,0,2,[[968,1,1,0,1],[970,1,1,1,2]]],[41,3,3,2,5,[[973,1,1,2,3],[974,1,1,3,4],[980,1,1,4,5]]],[42,10,9,5,14,[[997,1,1,5,6],[1001,3,3,6,9],[1003,1,1,9,10],[1011,2,1,10,11],[1012,2,2,11,13],[1013,1,1,13,14]]],[43,4,4,14,18,[[1026,1,1,14,15],[1039,1,1,15,16],[1043,2,2,16,18]]],[49,1,1,18,19,[[1106,1,1,18,19]]],[60,1,1,19,20,[[1156,1,1,19,20]]],[62,3,2,20,22,[[1164,3,2,20,22]]]],[24675,24797,24938,24974,25294,26050,26244,26251,26254,26357,26725,26753,26754,26767,27230,27709,27833,27835,29460,30496,30648,30649]]],["in",[2,2,[[44,2,2,0,2,[[1056,1,1,0,1],[1057,1,1,1,2]]]],[28234,28261]]],["is",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28236]]],["of",[51,51,[[39,5,5,0,5,[[930,2,2,0,2],[934,1,1,2,3],[946,1,1,3,4],[948,1,1,4,5]]],[40,1,1,5,6,[[964,1,1,5,6]]],[41,4,4,6,10,[[978,2,2,6,8],[983,1,1,8,9],[984,1,1,9,10]]],[42,12,12,10,22,[[997,1,1,10,11],[1000,2,2,11,13],[1002,2,2,13,15],[1004,2,2,15,17],[1005,2,2,17,19],[1006,1,1,19,20],[1011,1,1,20,21],[1013,1,1,21,22]]],[43,12,12,22,34,[[1019,1,1,22,23],[1020,2,2,23,25],[1024,1,1,25,26],[1026,1,1,26,27],[1027,1,1,27,28],[1034,1,1,28,29],[1037,1,1,29,30],[1039,1,1,30,31],[1041,1,1,31,32],[1043,1,1,32,33],[1045,1,1,33,34]]],[47,1,1,34,35,[[1091,1,1,34,35]]],[48,1,1,35,36,[[1102,1,1,35,36]]],[49,1,1,36,37,[[1106,1,1,36,37]]],[51,2,2,37,39,[[1112,1,1,37,38],[1114,1,1,38,39]]],[52,1,1,39,40,[[1118,1,1,39,40]]],[54,4,4,40,44,[[1125,2,2,40,42],[1126,1,1,42,43],[1127,1,1,43,44]]],[58,2,2,44,46,[[1146,2,2,44,46]]],[59,1,1,46,47,[[1152,1,1,46,47]]],[61,2,2,47,49,[[1161,1,1,47,48],[1163,1,1,48,49]]],[65,2,2,49,51,[[1168,1,1,49,50],[1169,1,1,50,51]]]],[23173,23185,23283,23746,23812,24511,25165,25180,25421,25507,26058,26165,26208,26302,26303,26407,26421,26456,26473,26499,26714,26766,26982,26998,27001,27132,27218,27281,27532,27650,27734,27777,27845,27921,29069,29345,29460,29583,29604,29684,29822,29827,29829,29867,30271,30273,30403,30601,30639,30744,30764]]],["save",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29013]]],["sight",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29113]]],["than",[12,12,[[41,1,1,0,1,[[975,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[45,1,1,2,3,[[1064,1,1,2,3]]],[47,2,2,3,5,[[1091,2,2,3,5]]],[57,7,7,5,12,[[1133,1,1,5,6],[1134,2,2,6,8],[1135,1,1,8,9],[1141,1,1,9,10],[1143,1,1,10,11],[1144,1,1,11,12]]]],[25038,27955,28421,29065,29066,29967,29984,29986,29998,30128,30176,30236]]],["unto",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]]],[23662,24385]]],["with",[40,36,[[39,3,3,0,3,[[947,1,1,0,1],[949,1,1,1,2],[950,1,1,2,3]]],[40,2,1,3,4,[[966,2,1,3,4]]],[41,7,6,4,10,[[973,2,2,4,6],[974,1,1,6,7],[983,1,1,7,8],[990,2,1,8,9],[991,1,1,9,10]]],[42,9,7,10,17,[[997,1,1,10,11],[1000,1,1,11,12],[1004,2,1,12,13],[1010,3,3,13,16],[1013,2,1,16,17]]],[43,8,8,17,25,[[1026,1,1,17,18],[1027,1,1,18,19],[1035,2,2,19,21],[1038,3,3,21,24],[1043,1,1,24,25]]],[44,2,2,25,27,[[1047,1,1,25,26],[1054,1,1,26,27]]],[45,2,2,27,29,[[1064,1,1,27,28],[1068,1,1,28,29]]],[46,1,1,29,30,[[1078,1,1,29,30]]],[48,1,1,30,31,[[1102,1,1,30,31]]],[52,1,1,31,32,[[1116,1,1,31,32]]],[54,1,1,32,33,[[1128,1,1,32,33]]],[58,1,1,33,34,[[1146,1,1,33,34]]],[59,1,1,34,35,[[1152,1,1,34,35]]],[60,1,1,35,36,[[1158,1,1,35,36]]]],[23788,23851,23897,24615,24923,24930,25025,25442,25715,25738,26083,26196,26419,26685,26691,26693,26764,27259,27265,27560,27577,27671,27672,27680,27831,27973,28169,28429,28511,28817,29346,29655,29883,30283,30419,30530]]]]},{"k":"G3845","v":[["*",[4,4,[[39,2,2,0,2,[[943,2,2,0,2]]],[43,1,1,2,3,[[1018,1,1,2,3]]],[62,1,1,3,4,[[1164,1,1,3,4]]]],[23635,23636,26948,30654]]],["fell",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26948]]],["transgress",[2,2,[[39,2,2,0,2,[[943,2,2,0,2]]]],[23635,23636]]],["transgresseth",[1,1,[[62,1,1,0,1,[[1164,1,1,0,1]]]],[30654]]]]},{"k":"G3846","v":[["*",[2,2,[[40,1,1,0,1,[[960,1,1,0,1]]],[43,1,1,1,2,[[1037,1,1,1,2]]]],[24353,27641]]],["arrived",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27641]]],["compare",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24353]]]]},{"k":"G3847","v":[["*",[7,7,[[44,3,3,0,3,[[1047,1,1,0,1],[1049,1,1,1,2],[1050,1,1,2,3]]],[47,1,1,3,4,[[1093,1,1,3,4]]],[53,1,1,4,5,[[1120,1,1,4,5]]],[57,2,2,5,7,[[1134,1,1,5,6],[1141,1,1,6,7]]]],[27985,28037,28061,29121,29730,29979,30120]]],["breaking",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27985]]],["transgression",[4,4,[[44,2,2,0,2,[[1049,1,1,0,1],[1050,1,1,1,2]]],[53,1,1,2,3,[[1120,1,1,2,3]]],[57,1,1,3,4,[[1134,1,1,3,4]]]],[28037,28061,29730,29979]]],["transgressions",[2,2,[[47,1,1,0,1,[[1093,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[29121,30120]]]]},{"k":"G3848","v":[["*",[5,5,[[44,2,2,0,2,[[1047,2,2,0,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]],[58,2,2,3,5,[[1147,2,2,3,5]]]],[27987,27989,29099,30302,30304]]],["breaker",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27987]]],["transgress",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27989]]],["transgressor",[2,2,[[47,1,1,0,1,[[1092,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[29099,30304]]],["transgressors",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30302]]]]},{"k":"G3849","v":[["constrained",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1033,1,1,1,2]]]],[26020,27498]]]]},{"k":"G3850","v":[["*",[50,48,[[39,17,16,0,16,[[941,12,11,0,11],[943,1,1,11,12],[949,2,2,12,14],[950,1,1,14,15],[952,1,1,15,16]]],[40,13,12,16,28,[[959,1,1,16,17],[960,8,7,17,24],[963,1,1,24,25],[968,2,2,25,27],[969,1,1,27,28]]],[41,18,18,28,46,[[976,1,1,28,29],[977,1,1,29,30],[978,1,1,30,31],[980,4,4,31,35],[984,2,2,35,37],[985,1,1,37,38],[986,1,1,38,39],[987,1,1,39,40],[990,2,2,40,42],[991,1,1,42,43],[992,2,2,43,45],[993,1,1,45,46]]],[57,2,2,46,48,[[1141,1,1,46,47],[1143,1,1,47,48]]]],[23542,23549,23552,23557,23563,23570,23572,23573,23574,23575,23592,23648,23859,23871,23873,23989,24311,24325,24333,24334,24336,24353,24356,24357,24480,24674,24685,24745,25086,25143,25185,25249,25254,25255,25256,25475,25500,25524,25560,25591,25689,25697,25742,25788,25798,25855,30114,30191]]],["comparison",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24353]]],["figure",[2,2,[[57,2,2,0,2,[[1141,1,1,0,1],[1143,1,1,1,2]]]],[30114,30191]]],["parable",[31,31,[[39,9,9,0,9,[[941,6,6,0,6],[943,1,1,6,7],[949,1,1,7,8],[952,1,1,8,9]]],[40,6,6,9,15,[[960,3,3,9,12],[963,1,1,12,13],[968,1,1,13,14],[969,1,1,14,15]]],[41,16,16,15,31,[[977,1,1,15,16],[978,1,1,16,17],[980,3,3,17,20],[984,2,2,20,22],[985,1,1,22,23],[986,1,1,23,24],[987,1,1,24,25],[990,2,2,25,27],[991,1,1,27,28],[992,2,2,28,30],[993,1,1,30,31]]]],[23557,23563,23570,23572,23573,23575,23648,23859,23989,24333,24336,24357,24480,24685,24745,25143,25185,25249,25254,25256,25475,25500,25524,25560,25591,25689,25697,25742,25788,25798,25855]]],["parables",[15,15,[[39,8,8,0,8,[[941,6,6,0,6],[949,1,1,6,7],[950,1,1,7,8]]],[40,6,6,8,14,[[959,1,1,8,9],[960,4,4,9,13],[968,1,1,13,14]]],[41,1,1,14,15,[[980,1,1,14,15]]]],[23542,23549,23552,23573,23574,23592,23871,23873,24311,24325,24334,24336,24356,24674,25255]]],["proverb",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25086]]]]},{"k":"G3851","v":[["regarding",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29421]]]]},{"k":"G3852","v":[["*",[5,5,[[43,2,2,0,2,[[1022,1,1,0,1],[1033,1,1,1,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]],[53,2,2,3,5,[[1119,2,2,3,5]]]],[27087,27507,29605,29701,29714]]],["+",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27087]]],["charge",[2,2,[[43,1,1,0,1,[[1033,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]]],[27507,29714]]],["commandment",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29701]]],["commandments",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29605]]]]},{"k":"G3853","v":[["*",[30,30,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[964,1,1,2,3]]],[41,4,4,3,7,[[977,1,1,3,4],[980,2,2,4,6],[981,1,1,6,7]]],[43,11,11,7,18,[[1018,1,1,7,8],[1021,1,1,8,9],[1022,2,2,9,11],[1027,1,1,11,12],[1032,1,1,12,13],[1033,2,2,13,15],[1034,1,1,15,16],[1040,2,2,16,18]]],[45,2,2,18,20,[[1068,1,1,18,19],[1072,1,1,19,20]]],[51,1,1,20,21,[[1114,1,1,20,21]]],[52,4,4,21,25,[[1118,4,4,21,25]]],[53,5,5,25,30,[[1119,1,1,25,26],[1122,1,1,26,27],[1123,1,1,27,28],[1124,2,2,28,30]]]],[23422,24415,24506,25121,25274,25301,25322,26927,27040,27087,27099,27301,27447,27501,27506,27553,27756,27764,28497,28617,29614,29682,29684,29688,29690,29699,29758,29770,29801,29805]]],["+",[2,2,[[43,1,1,0,1,[[1022,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[27087,29801]]],["Charge",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29805]]],["charge",[2,2,[[53,2,2,0,2,[[1119,1,1,0,1],[1123,1,1,1,2]]]],[29699,29770]]],["charged",[3,3,[[41,2,2,0,2,[[977,1,1,0,1],[980,1,1,1,2]]],[43,1,1,2,3,[[1040,1,1,2,3]]]],[25121,25301,27756]]],["charging",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27506]]],["command",[7,7,[[43,2,2,0,2,[[1032,1,1,0,1],[1033,1,1,1,2]]],[45,1,1,2,3,[[1068,1,1,2,3]]],[52,3,3,3,6,[[1118,3,3,3,6]]],[53,1,1,6,7,[[1122,1,1,6,7]]]],[27447,27501,28497,29682,29684,29690,29758]]],["commanded",[11,11,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[964,1,1,2,3]]],[41,2,2,3,5,[[980,1,1,3,4],[981,1,1,4,5]]],[43,4,4,5,9,[[1018,1,1,5,6],[1021,1,1,6,7],[1022,1,1,7,8],[1027,1,1,8,9]]],[51,1,1,9,10,[[1114,1,1,9,10]]],[52,1,1,10,11,[[1118,1,1,10,11]]]],[23422,24415,24506,25274,25322,26927,27040,27099,27301,29614,29688]]],["commandeth",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27553]]],["commandment",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27764]]],["declare",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28617]]]]},{"k":"G3854","v":[["*",[37,37,[[39,3,3,0,3,[[930,1,1,0,1],[931,2,2,1,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[41,8,8,4,12,[[979,2,2,4,6],[980,1,1,6,7],[983,1,1,7,8],[984,1,1,8,9],[986,1,1,9,10],[991,1,1,10,11],[994,1,1,11,12]]],[42,2,2,12,14,[[999,1,1,12,13],[1004,1,1,13,14]]],[43,21,21,14,35,[[1022,3,3,14,17],[1026,2,2,17,19],[1027,2,2,19,21],[1028,1,1,21,22],[1030,1,1,22,23],[1031,1,1,23,24],[1032,1,1,24,25],[1034,1,1,25,26],[1035,1,1,26,27],[1037,1,1,27,28],[1038,1,1,28,29],[1040,2,2,29,31],[1041,2,2,31,33],[1042,1,1,33,34],[1045,1,1,34,35]]],[45,1,1,35,36,[[1077,1,1,35,36]]],[57,1,1,36,37,[[1141,1,1,36,37]]]],[23170,23193,23205,24797,25199,25215,25264,25411,25510,25574,25747,25916,26143,26383,27080,27081,27084,27242,27255,27291,27292,27330,27376,27441,27446,27533,27584,27644,27682,27750,27769,27786,27793,27803,27920,28779,30116]]],["came",[16,16,[[39,2,2,0,2,[[930,1,1,0,1],[931,1,1,1,2]]],[41,4,4,2,6,[[979,1,1,2,3],[980,1,1,3,4],[986,1,1,4,5],[991,1,1,5,6]]],[42,2,2,6,8,[[999,1,1,6,7],[1004,1,1,7,8]]],[43,8,8,8,16,[[1022,3,3,8,11],[1028,1,1,11,12],[1030,1,1,12,13],[1041,2,2,13,15],[1045,1,1,15,16]]]],[23170,23193,25199,25264,25574,25747,26143,26383,27080,27081,27084,27330,27376,27786,27793,27920]]],["come",[15,15,[[41,4,4,0,4,[[979,1,1,0,1],[983,1,1,1,2],[984,1,1,2,3],[994,1,1,3,4]]],[43,9,9,4,13,[[1026,2,2,4,6],[1027,1,1,6,7],[1031,1,1,7,8],[1032,1,1,8,9],[1035,1,1,9,10],[1037,1,1,10,11],[1040,1,1,11,12],[1042,1,1,12,13]]],[45,1,1,13,14,[[1077,1,1,13,14]]],[57,1,1,14,15,[[1141,1,1,14,15]]]],[25215,25411,25510,25916,27242,27255,27292,27441,27446,27584,27644,27769,27803,28779,30116]]],["cometh",[3,3,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]]],[23205,24797,27291]]],["coming",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27533]]],["present",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27682]]],["went",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27750]]]]},{"k":"G3855","v":[["*",[10,10,[[39,3,3,0,3,[[937,2,2,0,2],[948,1,1,2,3]]],[40,2,2,3,5,[[958,1,1,3,4],[971,1,1,4,5]]],[42,2,2,5,7,[[1004,1,1,5,6],[1005,1,1,6,7]]],[45,1,1,7,8,[[1068,1,1,7,8]]],[61,2,2,8,10,[[1160,2,2,8,10]]]],[23388,23406,23822,24274,24847,26440,26441,28518,30558,30567]]],["away",[2,2,[[45,1,1,0,1,[[1068,1,1,0,1]]],[61,1,1,1,2,[[1160,1,1,1,2]]]],[28518,30567]]],["by",[5,5,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[971,1,1,2,3]]],[42,2,2,3,5,[[1004,1,1,3,4],[1005,1,1,4,5]]]],[23822,24274,24847,26440,26441]]],["departed",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23406]]],["forth",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23388]]],["past",[1,1,[[61,1,1,0,1,[[1160,1,1,0,1]]]],[30558]]]]},{"k":"G3856","v":[["*",[2,2,[[39,1,1,0,1,[[929,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[23163,30050]]],["+",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23163]]],["shame",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30050]]]]},{"k":"G3857","v":[["paradise",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[25978,29026,30724]]]]},{"k":"G3858","v":[["*",[5,5,[[40,1,1,0,1,[[960,1,1,0,1]]],[43,2,2,1,3,[[1033,1,1,1,2],[1039,1,1,2,3]]],[53,1,1,3,4,[[1123,1,1,3,4]]],[57,1,1,4,5,[[1144,1,1,4,5]]]],[24343,27504,27722,29782,30218]]],["receive",[4,4,[[40,1,1,0,1,[[960,1,1,0,1]]],[43,2,2,1,3,[[1033,1,1,1,2],[1039,1,1,2,3]]],[53,1,1,3,4,[[1123,1,1,3,4]]]],[24343,27504,27722,29782]]],["receiveth",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30218]]]]},{"k":"G3859","v":[["disputings",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29793]]]]},{"k":"G3860","v":[["*",[121,118,[[39,32,31,0,31,[[932,1,1,0,1],[933,2,1,1,2],[938,4,4,2,6],[939,1,1,6,7],[945,1,1,7,8],[946,1,1,8,9],[948,2,2,9,11],[952,2,2,11,13],[953,3,3,13,16],[954,10,10,16,26],[955,5,5,26,31]]],[40,20,19,31,50,[[957,1,1,31,32],[959,1,1,32,33],[960,1,1,33,34],[963,1,1,34,35],[965,1,1,35,36],[966,2,1,36,37],[969,3,3,37,40],[970,7,7,40,47],[971,3,3,47,50]]],[41,17,17,50,67,[[973,1,1,50,51],[976,1,1,51,52],[981,1,1,52,53],[982,1,1,53,54],[984,1,1,54,55],[990,1,1,55,56],[992,1,1,56,57],[993,2,2,57,59],[994,5,5,59,64],[995,1,1,64,65],[996,2,2,65,67]]],[42,15,15,67,82,[[1002,2,2,67,69],[1008,1,1,69,70],[1009,3,3,70,73],[1014,5,5,73,78],[1015,3,3,78,81],[1017,1,1,81,82]]],[43,14,14,82,96,[[1020,1,1,82,83],[1023,1,1,83,84],[1024,1,1,84,85],[1025,1,1,85,86],[1029,1,1,86,87],[1031,1,1,87,88],[1032,2,2,88,90],[1033,1,1,90,91],[1038,1,1,91,92],[1039,1,1,92,93],[1044,1,1,93,94],[1045,2,2,94,96]]],[44,6,6,96,102,[[1046,3,3,96,99],[1049,1,1,99,100],[1051,1,1,100,101],[1053,1,1,101,102]]],[45,7,6,102,108,[[1066,1,1,102,103],[1072,3,2,103,105],[1074,1,1,105,106],[1076,2,2,106,108]]],[46,1,1,108,109,[[1081,1,1,108,109]]],[47,1,1,109,110,[[1092,1,1,109,110]]],[48,3,3,110,113,[[1100,1,1,110,111],[1101,2,2,111,113]]],[53,1,1,113,114,[[1119,1,1,113,114]]],[59,1,1,114,115,[[1152,1,1,114,115]]],[60,2,2,115,117,[[1157,2,2,115,117]]],[64,1,1,117,118,[[1166,1,1,117,118]]]],[23221,23259,23421,23434,23436,23438,23486,23722,23761,23810,23811,23966,23967,24022,24028,24030,24056,24069,24070,24075,24077,24078,24079,24099,24100,24102,24131,24132,24133,24147,24155,24229,24307,24352,24476,24569,24621,24726,24728,24729,24764,24765,24772,24775,24795,24796,24798,24827,24836,24841,24895,25069,25345,25385,25517,25720,25799,25838,25842,25868,25870,25885,25886,25912,25960,25998,26011,26321,26328,26584,26632,26641,26651,26787,26790,26815,26820,26821,26836,26841,26855,26918,27009,27115,27158,27179,27341,27440,27468,27482,27487,27675,27708,27856,27915,27916,27954,27956,27958,28047,28085,28148,28459,28602,28623,28668,28721,28742,28870,29101,29291,29306,29329,29716,30422,30504,30521,30675]]],["+",[13,13,[[39,4,4,0,4,[[938,3,3,0,3],[952,1,1,3,4]]],[40,1,1,4,5,[[969,1,1,4,5]]],[42,1,1,5,6,[[1014,1,1,5,6]]],[43,2,2,6,8,[[1024,1,1,6,7],[1044,1,1,7,8]]],[44,4,4,8,12,[[1046,3,3,8,11],[1053,1,1,11,12]]],[48,1,1,12,13,[[1100,1,1,12,13]]]],[23421,23434,23436,23966,24726,26815,27158,27856,27954,27956,27958,28148,29291]]],["betray",[17,17,[[39,5,5,0,5,[[952,1,1,0,1],[954,4,4,1,5]]],[40,4,4,5,9,[[969,1,1,5,6],[970,3,3,6,9]]],[41,2,2,9,11,[[994,2,2,9,11]]],[42,6,6,11,17,[[1002,2,2,11,13],[1008,1,1,13,14],[1009,3,3,14,17]]]],[23967,24070,24075,24077,24100,24729,24764,24765,24772,25868,25870,26321,26328,26584,26632,26641,26651]]],["betrayed",[18,18,[[39,9,9,0,9,[[945,1,1,0,1],[948,1,1,1,2],[954,5,5,2,7],[955,2,2,7,9]]],[40,4,4,9,13,[[959,1,1,9,10],[970,3,3,10,13]]],[41,2,2,13,15,[[993,1,1,13,14],[994,1,1,14,15]]],[42,2,2,15,17,[[1014,2,2,15,17]]],[45,1,1,17,18,[[1072,1,1,17,18]]]],[23722,23810,24056,24078,24079,24099,24102,24132,24133,24307,24775,24795,24798,25842,25886,26787,26790,28623]]],["betrayest",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25912]]],["betrayeth",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]]],[24796,25885,26918]]],["committed",[2,2,[[43,1,1,0,1,[[1025,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[27179,30422]]],["deliver",[9,8,[[39,4,3,0,3,[[933,2,1,0,1],[948,1,1,1,2],[954,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,2,2,4,6,[[984,1,1,4,5],[992,1,1,5,6]]],[43,1,1,6,7,[[1038,1,1,6,7]]],[45,1,1,7,8,[[1066,1,1,7,8]]]],[23259,23811,24069,24621,25517,25799,27675,28459]]],["delivered",[39,39,[[39,6,6,0,6,[[939,1,1,0,1],[946,1,1,1,2],[953,1,1,2,3],[955,3,3,3,6]]],[40,6,6,6,12,[[963,1,1,6,7],[965,1,1,7,8],[966,1,1,8,9],[971,3,3,9,12]]],[41,8,8,12,20,[[973,1,1,12,13],[976,1,1,13,14],[981,1,1,14,15],[982,1,1,15,16],[990,1,1,16,17],[995,1,1,17,18],[996,2,2,18,20]]],[42,4,4,20,24,[[1014,2,2,20,22],[1015,2,2,22,24]]],[43,5,5,24,29,[[1023,1,1,24,25],[1029,1,1,25,26],[1033,1,1,26,27],[1045,2,2,27,29]]],[44,2,2,29,31,[[1049,1,1,29,30],[1051,1,1,30,31]]],[45,3,3,31,34,[[1072,2,2,31,33],[1076,1,1,33,34]]],[46,1,1,34,35,[[1081,1,1,34,35]]],[53,1,1,35,36,[[1119,1,1,35,36]]],[60,2,2,36,38,[[1157,2,2,36,38]]],[64,1,1,38,39,[[1166,1,1,38,39]]]],[23486,23761,24022,24131,24147,24155,24476,24569,24621,24827,24836,24841,24895,25069,25345,25385,25720,25960,25998,26011,26820,26821,26836,26841,27115,27341,27487,27915,27916,28047,28085,28602,28623,28721,28870,29716,30504,30521,30675]]],["deliveredst",[2,2,[[39,2,2,0,2,[[953,2,2,0,2]]]],[24028,24030]]],["delivering",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27708]]],["forth",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24352]]],["gave",[2,2,[[47,1,1,0,1,[[1092,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]]],[29101,29329]]],["give",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28668]]],["given",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29306]]],["hazarded",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27468]]],["prison",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23221,24229]]],["recommended",[2,2,[[43,2,2,0,2,[[1031,1,1,0,1],[1032,1,1,1,2]]]],[27440,27482]]],["up",[6,6,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[43,1,1,4,5,[[1020,1,1,4,5]]],[45,1,1,5,6,[[1076,1,1,5,6]]]],[23438,24728,25838,26855,27009,28742]]]]},{"k":"G3861","v":[["things",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25133]]]]},{"k":"G3862","v":[["*",[13,13,[[39,3,3,0,3,[[943,3,3,0,3]]],[40,5,5,3,8,[[963,5,5,3,8]]],[45,1,1,8,9,[[1072,1,1,8,9]]],[47,1,1,9,10,[[1091,1,1,9,10]]],[50,1,1,10,11,[[1108,1,1,10,11]]],[52,2,2,11,13,[[1117,1,1,11,12],[1118,1,1,12,13]]]],[23635,23636,23639,24466,24468,24471,24472,24476,28602,29071,29502,29676,29684]]],["ordinances",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28602]]],["tradition",[10,10,[[39,3,3,0,3,[[943,3,3,0,3]]],[40,5,5,3,8,[[963,5,5,3,8]]],[50,1,1,8,9,[[1108,1,1,8,9]]],[52,1,1,9,10,[[1118,1,1,9,10]]]],[23635,23636,23639,24466,24468,24471,24472,24476,29502,29684]]],["traditions",[2,2,[[47,1,1,0,1,[[1091,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]]],[29071,29676]]]]},{"k":"G3863","v":[["*",[4,4,[[44,3,3,0,3,[[1055,1,1,0,1],[1056,2,2,1,3]]],[45,1,1,3,4,[[1071,1,1,3,4]]]],[28207,28220,28223,28589]]],["+",[3,3,[[44,2,2,0,2,[[1055,1,1,0,1],[1056,1,1,1,2]]],[45,1,1,2,3,[[1071,1,1,2,3]]]],[28207,28220,28589]]],["emulation",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28223]]]]},{"k":"G3864","v":[["coast",[1,1,[[39,1,1,0,1,[[932,1,1,0,1]]]],[23222]]]]},{"k":"G3865","v":[["neglected",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27102]]]]},{"k":"G3866","v":[["+",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29821]]]]},{"k":"G3867","v":[["*",[2,2,[[43,2,2,0,2,[[1044,2,2,0,2]]]],[27864,27877]]],["admonished",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27864]]],["exhort",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27877]]]]},{"k":"G3868","v":[["*",[11,9,[[41,3,2,0,2,[[986,3,2,0,2]]],[43,1,1,2,3,[[1042,1,1,2,3]]],[53,2,2,3,5,[[1122,1,1,3,4],[1123,1,1,4,5]]],[54,1,1,5,6,[[1126,1,1,5,6]]],[55,1,1,6,7,[[1131,1,1,6,7]]],[57,3,2,7,9,[[1144,3,2,7,9]]]],[25571,25572,27807,29754,29774,29850,29933,30231,30237]]],["avoid",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29850]]],["excuse",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25571]]],["excused",[2,2,[[41,2,2,0,2,[[986,2,2,0,2]]]],[25571,25572]]],["intreated",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30231]]],["refuse",[4,4,[[43,1,1,0,1,[[1042,1,1,0,1]]],[53,2,2,1,3,[[1122,1,1,1,2],[1123,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]]],[27807,29754,29774,30237]]],["refused",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30237]]],["reject",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29933]]]]},{"k":"G3869","v":[["sat",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25402]]]]},{"k":"G3870","v":[["*",[108,104,[[39,9,9,0,9,[[930,1,1,0,1],[933,1,1,1,2],[936,3,3,2,5],[942,1,1,5,6],[946,2,2,6,8],[954,1,1,8,9]]],[40,9,9,9,18,[[957,1,1,9,10],[961,5,5,10,15],[962,1,1,15,16],[963,1,1,16,17],[964,1,1,17,18]]],[41,7,7,18,25,[[975,1,1,18,19],[979,1,1,19,20],[980,3,3,20,23],[987,1,1,23,24],[988,1,1,24,25]]],[43,21,21,25,46,[[1019,1,1,25,26],[1025,1,1,26,27],[1026,1,1,27,28],[1028,1,1,28,29],[1030,1,1,29,30],[1031,1,1,30,31],[1032,1,1,31,32],[1033,4,4,32,36],[1036,1,1,36,37],[1037,2,2,37,39],[1038,1,1,39,40],[1041,1,1,40,41],[1042,1,1,41,42],[1044,2,2,42,44],[1045,2,2,44,46]]],[44,4,4,46,50,[[1057,2,2,46,48],[1060,1,1,48,49],[1061,1,1,49,50]]],[45,6,6,50,56,[[1062,1,1,50,51],[1065,2,2,51,53],[1075,1,1,53,54],[1077,2,2,54,56]]],[46,18,15,56,71,[[1078,4,2,56,58],[1079,2,2,58,60],[1082,1,1,60,61],[1083,1,1,61,62],[1084,4,3,62,65],[1085,1,1,65,66],[1086,1,1,66,67],[1087,1,1,67,68],[1089,2,2,68,70],[1090,1,1,70,71]]],[48,2,2,71,73,[[1100,1,1,71,72],[1102,1,1,72,73]]],[49,2,1,73,74,[[1106,2,1,73,74]]],[50,2,2,74,76,[[1108,1,1,74,75],[1110,1,1,75,76]]],[51,8,8,76,84,[[1112,1,1,76,77],[1113,2,2,77,79],[1114,3,3,79,82],[1115,2,2,82,84]]],[52,2,2,84,86,[[1117,1,1,84,85],[1118,1,1,85,86]]],[53,4,4,86,90,[[1119,1,1,86,87],[1120,1,1,87,88],[1123,1,1,88,89],[1124,1,1,89,90]]],[54,1,1,90,91,[[1128,1,1,90,91]]],[55,3,3,91,94,[[1129,1,1,91,92],[1130,2,2,92,94]]],[56,2,2,94,96,[[1132,2,2,94,96]]],[57,4,4,96,100,[[1135,1,1,96,97],[1142,1,1,97,98],[1145,2,2,98,100]]],[59,3,3,100,103,[[1152,1,1,100,101],[1155,2,2,101,103]]],[64,1,1,103,104,[[1166,1,1,103,104]]]],[23187,23238,23350,23376,23379,23633,23756,23759,24107,24255,24374,24376,24381,24382,24387,24463,24495,24522,25043,25199,25276,25277,25286,25616,25645,26989,27207,27254,27330,27404,27436,27474,27492,27498,27522,27523,27616,27628,27638,27676,27773,27798,27888,27889,27913,27919,28246,28253,28333,28353,28373,28446,28449,28709,28788,28791,28804,28806,28831,28832,28897,28899,28922,28923,28929,28938,28961,28972,29030,29040,29054,29273,29359,29444,29496,29550,29581,29592,29597,29604,29613,29621,29632,29635,29678,29690,29699,29717,29764,29790,29872,29901,29914,29923,29947,29948,30008,30158,30260,30263,30410,30466,30477,30675]]],["+",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29581]]],["Comfort",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29678]]],["beseech",[20,19,[[40,1,1,0,1,[[963,1,1,0,1]]],[44,3,3,1,4,[[1057,1,1,1,2],[1060,1,1,2,3],[1061,1,1,3,4]]],[45,3,3,4,7,[[1062,1,1,4,5],[1065,1,1,5,6],[1077,1,1,6,7]]],[46,4,4,7,11,[[1079,1,1,7,8],[1082,1,1,8,9],[1083,1,1,9,10],[1087,1,1,10,11]]],[48,1,1,11,12,[[1100,1,1,11,12]]],[49,2,1,12,13,[[1106,2,1,12,13]]],[51,1,1,13,14,[[1114,1,1,13,14]]],[56,2,2,14,16,[[1132,2,2,14,16]]],[57,2,2,16,18,[[1145,2,2,16,18]]],[59,1,1,18,19,[[1152,1,1,18,19]]]],[24495,28246,28333,28353,28373,28449,28791,28832,28897,28899,28972,29273,29444,29613,29947,29948,30260,30263,30410]]],["beseeching",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23350,24255]]],["besought",[21,21,[[39,4,4,0,4,[[936,2,2,0,2],[942,1,1,2,3],[946,1,1,3,4]]],[40,5,5,4,9,[[961,3,3,4,7],[962,1,1,7,8],[964,1,1,8,9]]],[41,4,4,9,13,[[979,1,1,9,10],[980,3,3,10,13]]],[43,6,6,13,19,[[1030,1,1,13,14],[1033,2,2,14,16],[1038,1,1,16,17],[1042,1,1,17,18],[1044,1,1,18,19]]],[46,1,1,19,20,[[1089,1,1,19,20]]],[53,1,1,20,21,[[1119,1,1,20,21]]]],[23376,23379,23633,23756,24374,24376,24387,24463,24522,25199,25276,25277,25286,27404,27498,27522,27676,27798,27888,29030,29699]]],["called",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27919]]],["comfort",[8,8,[[46,3,3,0,3,[[1078,1,1,0,1],[1079,1,1,1,2],[1090,1,1,2,3]]],[48,1,1,3,4,[[1102,1,1,3,4]]],[50,1,1,4,5,[[1110,1,1,4,5]]],[51,3,3,5,8,[[1113,1,1,5,6],[1114,1,1,6,7],[1115,1,1,7,8]]]],[28804,28831,29054,29359,29550,29592,29621,29632]]],["comforted",[13,13,[[39,2,2,0,2,[[930,1,1,0,1],[933,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[43,2,2,3,5,[[1033,1,1,3,4],[1037,1,1,4,5]]],[45,1,1,5,6,[[1075,1,1,5,6]]],[46,5,5,6,11,[[1078,2,2,6,8],[1084,3,3,8,11]]],[50,1,1,11,12,[[1108,1,1,11,12]]],[51,1,1,12,13,[[1113,1,1,12,13]]]],[23187,23238,25645,27523,27638,28709,28804,28806,28922,28923,28929,29496,29597]]],["comforteth",[2,2,[[46,2,2,0,2,[[1078,1,1,0,1],[1084,1,1,1,2]]]],[28804,28922]]],["desired",[5,5,[[43,2,2,0,2,[[1025,1,1,0,1],[1045,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[46,2,2,3,5,[[1085,1,1,3,4],[1089,1,1,4,5]]]],[27207,27913,28788,28938,29040]]],["desiredst",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23759]]],["desiring",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1036,1,1,1,2]]]],[27254,27616]]],["exhort",[14,14,[[43,1,1,0,1,[[1019,1,1,0,1]]],[46,1,1,1,2,[[1086,1,1,1,2]]],[51,2,2,2,4,[[1114,1,1,2,3],[1115,1,1,3,4]]],[52,1,1,4,5,[[1118,1,1,4,5]]],[53,2,2,5,7,[[1120,1,1,5,6],[1124,1,1,6,7]]],[54,1,1,7,8,[[1128,1,1,7,8]]],[55,3,3,8,11,[[1129,1,1,8,9],[1130,2,2,9,11]]],[57,1,1,11,12,[[1135,1,1,11,12]]],[59,1,1,12,13,[[1155,1,1,12,13]]],[64,1,1,13,14,[[1166,1,1,13,14]]]],[26989,28961,29604,29635,29690,29717,29790,29872,29901,29914,29923,30008,30466,30675]]],["exhortation",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25043]]],["exhorted",[2,2,[[43,2,2,0,2,[[1028,1,1,0,1],[1032,1,1,1,2]]]],[27330,27474]]],["exhorteth",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28253]]],["exhorting",[3,3,[[43,1,1,0,1,[[1031,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]],[59,1,1,2,3,[[1155,1,1,2,3]]]],[27436,30158,30477]]],["given",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27628]]],["intreat",[2,2,[[45,1,1,0,1,[[1065,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[28446,29764]]],["intreated",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25616]]],["pray",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[43,2,2,2,4,[[1041,1,1,2,3],[1044,1,1,3,4]]]],[24107,24381,27773,27889]]],["prayed",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[43,1,1,1,2,[[1033,1,1,1,2]]]],[24382,27492]]]]},{"k":"G3871","v":[["hid",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25346]]]]},{"k":"G3872","v":[["*",[2,2,[[53,1,1,0,1,[[1124,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]]],[29808,29823]]],["thee",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29823]]],["trust",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29808]]]]},{"k":"G3873","v":[["present",[2,2,[[44,2,2,0,2,[[1052,2,2,0,2]]]],[28109,28112]]]]},{"k":"G3874","v":[["*",[29,28,[[41,2,2,0,2,[[974,1,1,0,1],[978,1,1,1,2]]],[43,4,4,2,6,[[1021,1,1,2,3],[1026,1,1,3,4],[1030,1,1,4,5],[1032,1,1,5,6]]],[44,3,3,6,9,[[1057,1,1,6,7],[1060,2,2,7,9]]],[45,1,1,9,10,[[1075,1,1,9,10]]],[46,11,10,10,20,[[1078,6,5,10,15],[1084,3,3,15,18],[1085,2,2,18,20]]],[49,1,1,20,21,[[1104,1,1,20,21]]],[51,1,1,21,22,[[1112,1,1,21,22]]],[52,1,1,22,23,[[1117,1,1,22,23]]],[53,1,1,23,24,[[1122,1,1,23,24]]],[56,1,1,24,25,[[1132,1,1,24,25]]],[57,3,3,25,28,[[1138,1,1,25,26],[1144,1,1,26,27],[1145,1,1,27,28]]]],[24998,25170,27058,27247,27377,27473,28253,28307,28308,28681,28803,28804,28805,28806,28807,28920,28923,28929,28936,28949,29392,29573,29677,29760,29945,30062,30217,30263]]],["a",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27058]]],["comfort",[6,6,[[43,1,1,0,1,[[1026,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[46,4,4,2,6,[[1078,2,2,2,4],[1084,2,2,4,6]]]],[27247,28307,28803,28804,28920,28929]]],["consolation",[13,12,[[41,2,2,0,2,[[974,1,1,0,1],[978,1,1,1,2]]],[43,1,1,2,3,[[1032,1,1,2,3]]],[44,1,1,3,4,[[1060,1,1,3,4]]],[46,5,4,4,8,[[1078,4,3,4,7],[1084,1,1,7,8]]],[49,1,1,8,9,[[1104,1,1,8,9]]],[52,1,1,9,10,[[1117,1,1,9,10]]],[56,1,1,10,11,[[1132,1,1,10,11]]],[57,1,1,11,12,[[1138,1,1,11,12]]]],[24998,25170,27473,28308,28805,28806,28807,28923,29392,29677,29945,30062]]],["exhortation",[8,8,[[43,1,1,0,1,[[1030,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]],[51,1,1,4,5,[[1112,1,1,4,5]]],[53,1,1,5,6,[[1122,1,1,5,6]]],[57,2,2,6,8,[[1144,1,1,6,7],[1145,1,1,7,8]]]],[27377,28253,28681,28949,29573,29760,30217,30263]]],["intreaty",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28936]]]]},{"k":"G3875","v":[["*",[5,5,[[42,4,4,0,4,[[1010,2,2,0,2],[1011,1,1,2,3],[1012,1,1,3,4]]],[61,1,1,4,5,[[1160,1,1,4,5]]]],[26684,26694,26725,26733,30551]]],["Comforter",[4,4,[[42,4,4,0,4,[[1010,2,2,0,2],[1011,1,1,2,3],[1012,1,1,3,4]]]],[26684,26694,26725,26733]]],["advocate",[1,1,[[61,1,1,0,1,[[1160,1,1,0,1]]]],[30551]]]]},{"k":"G3876","v":[["disobedience",[3,3,[[44,1,1,0,1,[[1050,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]],[57,1,1,2,3,[[1134,1,1,2,3]]]],[28066,28977,29979]]]]},{"k":"G3877","v":[["*",[4,4,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]],[54,1,1,3,4,[[1127,1,1,3,4]]]],[24890,24896,29753,29863]]],["attained",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29753]]],["follow",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24890]]],["known",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29863]]],["understanding",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24896]]]]},{"k":"G3878","v":[["hear",[2,1,[[39,2,1,0,1,[[946,2,1,0,1]]]],[23744]]]]},{"k":"G3879","v":[["*",[5,5,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,2,2,1,3,[[1016,2,2,1,3]]],[58,1,1,3,4,[[1146,1,1,3,4]]],[59,1,1,4,5,[[1151,1,1,4,5]]]],[26003,26872,26878,30291,30386]]],["down",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,2,2,1,3,[[1016,2,2,1,3]]]],[26003,26872,26878]]],["look",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30386]]],["looketh",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30291]]]]},{"k":"G3880","v":[["*",[50,50,[[39,16,16,0,16,[[929,2,2,0,2],[930,4,4,2,6],[932,2,2,6,8],[940,1,1,8,9],[945,1,1,9,10],[946,1,1,10,11],[948,1,1,11,12],[952,2,2,12,14],[954,1,1,14,15],[955,1,1,15,16]]],[40,6,6,16,22,[[960,1,1,16,17],[961,1,1,17,18],[963,1,1,18,19],[965,1,1,19,20],[966,1,1,20,21],[970,1,1,21,22]]],[41,7,7,22,29,[[981,2,2,22,24],[983,1,1,24,25],[989,3,3,25,28],[990,1,1,28,29]]],[42,3,3,29,32,[[997,1,1,29,30],[1010,1,1,30,31],[1015,1,1,31,32]]],[43,6,6,32,38,[[1032,1,1,32,33],[1033,1,1,33,34],[1038,3,3,34,37],[1040,1,1,37,38]]],[45,3,3,38,41,[[1072,1,1,38,39],[1076,2,2,39,41]]],[47,2,2,41,43,[[1091,2,2,41,43]]],[49,1,1,43,44,[[1106,1,1,43,44]]],[50,2,2,44,46,[[1108,1,1,44,45],[1110,1,1,45,46]]],[51,2,2,46,48,[[1112,1,1,46,47],[1114,1,1,47,48]]],[52,1,1,48,49,[[1118,1,1,48,49]]],[57,1,1,49,50,[[1144,1,1,49,50]]]],[23164,23168,23182,23183,23189,23190,23214,23217,23534,23701,23743,23809,23997,23998,24091,24156,24359,24404,24467,24540,24620,24787,25311,25329,25431,25685,25686,25687,25719,26055,26671,26841,27481,27516,27688,27690,27696,27752,28623,28719,28721,29066,29069,29451,29500,29559,29583,29604,29684,30240]]],["+",[2,2,[[39,2,2,0,2,[[932,2,2,0,2]]]],[23214,23217]]],["receive",[1,1,[[42,1,1,0,1,[[1010,1,1,0,1]]]],[26671]]],["received",[13,13,[[40,1,1,0,1,[[963,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]],[45,3,3,2,5,[[1072,1,1,2,3],[1076,2,2,3,5]]],[47,2,2,5,7,[[1091,2,2,5,7]]],[49,1,1,7,8,[[1106,1,1,7,8]]],[50,2,2,8,10,[[1108,1,1,8,9],[1110,1,1,9,10]]],[51,2,2,10,12,[[1112,1,1,10,11],[1114,1,1,11,12]]],[52,1,1,12,13,[[1118,1,1,12,13]]]],[24467,26055,28623,28719,28721,29066,29069,29451,29500,29559,29583,29604,29684]]],["receiving",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30240]]],["take",[5,5,[[39,4,4,0,4,[[929,1,1,0,1],[930,2,2,1,3],[946,1,1,3,4]]],[43,1,1,4,5,[[1038,1,1,4,5]]]],[23164,23182,23189,23743,27688]]],["taken",[5,5,[[39,2,2,0,2,[[952,2,2,0,2]]],[41,3,3,2,5,[[989,3,3,2,5]]]],[23997,23998,25685,25686,25687]]],["taketh",[6,6,[[39,2,2,0,2,[[940,1,1,0,1],[945,1,1,1,2]]],[40,3,3,2,5,[[961,1,1,2,3],[965,1,1,3,4],[970,1,1,4,5]]],[41,1,1,5,6,[[983,1,1,5,6]]]],[23534,23701,24404,24540,24787,25431]]],["took",[16,16,[[39,5,5,0,5,[[929,1,1,0,1],[930,2,2,1,3],[948,1,1,3,4],[955,1,1,4,5]]],[40,2,2,5,7,[[960,1,1,5,6],[966,1,1,6,7]]],[41,3,3,7,10,[[981,2,2,7,9],[990,1,1,9,10]]],[42,1,1,10,11,[[1015,1,1,10,11]]],[43,5,5,11,16,[[1032,1,1,11,12],[1033,1,1,12,13],[1038,2,2,13,15],[1040,1,1,15,16]]]],[23168,23183,23190,23809,24156,24359,24620,25311,25329,25719,26841,27481,27516,27690,27696,27752]]],["with",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24091]]]]},{"k":"G3881","v":[["*",[2,2,[[43,2,2,0,2,[[1044,2,2,0,2]]]],[27863,27868]]],["by",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27868]]],["passing",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27863]]]]},{"k":"G3882","v":[["coast",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25163]]]]},{"k":"G3883","v":[["variableness",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30283]]]]},{"k":"G3884","v":[["*",[2,2,[[50,1,1,0,1,[[1108,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[29498,30288]]],["beguile",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29498]]],["deceiving",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30288]]]]},{"k":"G3885","v":[["palsy",[10,9,[[39,5,4,0,4,[[932,1,1,0,1],[936,1,1,1,2],[937,3,2,2,4]]],[40,5,5,4,9,[[958,5,5,4,9]]]],[23233,23351,23381,23385,24263,24264,24265,24269,24270]]]]},{"k":"G3886","v":[["*",[5,5,[[41,2,2,0,2,[[977,2,2,0,2]]],[43,2,2,2,4,[[1025,1,1,2,3],[1026,1,1,3,4]]],[57,1,1,4,5,[[1144,1,1,4,5]]]],[25125,25131,27183,27249,30224]]],["feeble",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30224]]],["palsies",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27183]]],["palsy",[3,3,[[41,2,2,0,2,[[977,2,2,0,2]]],[43,1,1,2,3,[[1026,1,1,2,3]]]],[25125,25131,27249]]]]},{"k":"G3887","v":[["*",[3,3,[[45,1,1,0,1,[[1077,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[28782,30087,30291]]],["abide",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28782]]],["continue",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30087]]],["continueth",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30291]]]]},{"k":"G3888","v":[["*",[4,4,[[42,2,2,0,2,[[1007,2,2,0,2]]],[51,2,2,2,4,[[1112,1,1,2,3],[1115,1,1,3,4]]]],[26542,26554,29581,29635]]],["comfort",[2,2,[[42,1,1,0,1,[[1007,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]]],[26542,29635]]],["comforted",[2,2,[[42,1,1,0,1,[[1007,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]]],[26554,29581]]]]},{"k":"G3889","v":[["comfort",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28681]]]]},{"k":"G3890","v":[["comfort",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29392]]]]},{"k":"G3891","v":[["law",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27737]]]]},{"k":"G3892","v":[["iniquity",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30516]]]]},{"k":"G3893","v":[["provoke",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30011]]]]},{"k":"G3894","v":[["provocation",[2,2,[[57,2,2,0,2,[[1135,2,2,0,2]]]],[30003,30010]]]]},{"k":"G3895","v":[["away",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30050]]]]},{"k":"G3896","v":[["by",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27642]]]]},{"k":"G3897","v":[["unto",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29418]]]]},{"k":"G3898","v":[["likewise",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29991]]]]},{"k":"G3899","v":[["*",[5,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,4,4,1,5,[[958,1,1,1,2],[965,1,1,2,3],[967,1,1,3,4],[971,1,1,4,5]]]],[24168,24283,24568,24660,24855]]],["by",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,2,2,1,3,[[967,1,1,1,2],[971,1,1,2,3]]]],[24168,24660,24855]]],["passed",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24568]]],["went",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24283]]]]},{"k":"G3900","v":[["*",[23,20,[[39,4,3,0,3,[[934,3,2,0,2],[946,1,1,2,3]]],[40,2,2,3,5,[[967,2,2,3,5]]],[44,9,8,5,13,[[1049,1,1,5,6],[1050,6,5,6,11],[1056,2,2,11,13]]],[46,1,1,13,14,[[1082,1,1,13,14]]],[47,1,1,14,15,[[1096,1,1,14,15]]],[48,3,3,15,18,[[1097,1,1,15,16],[1098,2,2,16,18]]],[50,2,1,18,19,[[1108,2,1,18,19]]],[58,1,1,19,20,[[1150,1,1,19,20]]]],[23296,23297,23762,24665,24666,28047,28062,28063,28064,28065,28067,28220,28221,28896,29189,29213,29230,29234,29507,30370]]],["fall",[2,2,[[44,2,2,0,2,[[1056,2,2,0,2]]]],[28220,28221]]],["fault",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29189]]],["faults",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30370]]],["offence",[5,4,[[44,5,4,0,4,[[1050,5,4,0,4]]]],[28062,28064,28065,28067]]],["offences",[2,2,[[44,2,2,0,2,[[1049,1,1,0,1],[1050,1,1,1,2]]]],[28047,28063]]],["sins",[3,3,[[48,2,2,0,2,[[1097,1,1,0,1],[1098,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]]],[29213,29234,29507]]],["trespasses",[9,8,[[39,4,3,0,3,[[934,3,2,0,2],[946,1,1,2,3]]],[40,2,2,3,5,[[967,2,2,3,5]]],[46,1,1,5,6,[[1082,1,1,5,6]]],[48,1,1,6,7,[[1098,1,1,6,7]]],[50,1,1,7,8,[[1108,1,1,7,8]]]],[23296,23297,23762,24665,24666,28896,29230,29507]]]]},{"k":"G3901","v":[["slip",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29978]]]]},{"k":"G3902","v":[["sign",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27910]]]]},{"k":"G3903","v":[["*",[4,4,[[43,1,1,0,1,[[1027,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[46,2,2,2,4,[[1086,2,2,2,4]]]],[27269,28686,28958,28959]]],["prepare",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28686]]],["ready",[3,3,[[43,1,1,0,1,[[1027,1,1,0,1]]],[46,2,2,1,3,[[1086,2,2,1,3]]]],[27269,28958,28959]]]]},{"k":"G3904","v":[["preparation",[6,6,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,3,3,3,6,[[1015,3,3,3,6]]]],[24191,24868,25989,26839,26856,26867]]]]},{"k":"G3905","v":[["continued",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27633]]]]},{"k":"G3906","v":[["*",[6,6,[[40,1,1,0,1,[[959,1,1,0,1]]],[41,3,3,1,4,[[978,1,1,1,2],[986,1,1,2,3],[992,1,1,3,4]]],[43,1,1,4,5,[[1026,1,1,4,5]]],[47,1,1,5,6,[[1094,1,1,5,6]]]],[24290,25153,25554,25799,27240,29141]]],["+",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25554]]],["observe",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29141]]],["watched",[4,4,[[40,1,1,0,1,[[959,1,1,0,1]]],[41,2,2,1,3,[[978,1,1,1,2],[992,1,1,2,3]]],[43,1,1,3,4,[[1026,1,1,3,4]]]],[24290,25153,25799,27240]]]]},{"k":"G3907","v":[["observation",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25671]]]]},{"k":"G3908","v":[["*",[19,18,[[39,2,2,0,2,[[941,2,2,0,2]]],[40,4,3,2,5,[[962,1,1,2,3],[964,3,2,3,5]]],[41,5,5,5,10,[[981,1,1,5,6],[982,1,1,6,7],[983,1,1,7,8],[984,1,1,8,9],[995,1,1,9,10]]],[43,4,4,10,14,[[1031,1,1,10,11],[1033,1,1,11,12],[1034,1,1,12,13],[1037,1,1,13,14]]],[45,1,1,14,15,[[1071,1,1,14,15]]],[53,1,1,15,16,[[1119,1,1,15,16]]],[54,1,1,16,17,[[1126,1,1,16,17]]],[59,1,1,17,18,[[1154,1,1,17,18]]]],[23563,23570,24448,24506,24507,25317,25371,25411,25507,25981,27437,27517,27526,27658,28594,29714,29829,30465]]],["+",[2,2,[[40,1,1,0,1,[[964,1,1,0,1]]],[43,1,1,1,2,[[1033,1,1,1,2]]]],[24507,27517]]],["alleging",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27526]]],["before",[7,6,[[40,3,2,0,2,[[962,1,1,0,1],[964,2,1,1,2]]],[41,3,3,2,5,[[981,1,1,2,3],[982,1,1,3,4],[983,1,1,4,5]]],[45,1,1,5,6,[[1071,1,1,5,6]]]],[24448,24506,25317,25371,25411,28594]]],["commend",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,1,1,1,2,[[1037,1,1,1,2]]]],[25981,27658]]],["commended",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27437]]],["commit",[2,2,[[53,1,1,0,1,[[1119,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[29714,29829]]],["committed",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25507]]],["forth",[2,2,[[39,2,2,0,2,[[941,2,2,0,2]]]],[23563,23570]]],["of",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30465]]]]},{"k":"G3909","v":[["with",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27540]]]]},{"k":"G3910","v":[["moment",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28876]]]]},{"k":"G3911","v":[["*",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24790,25906]]],["away",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24790]]],["remove",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25906]]]]},{"k":"G3912","v":[["fool",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29012]]]]},{"k":"G3913","v":[["madness",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30516]]]]},{"k":"G3914","v":[["*",[4,4,[[43,2,2,0,2,[[1044,1,1,0,1],[1045,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[55,1,1,3,4,[[1131,1,1,3,4]]]],[27867,27910,28782,29935]]],["winter",[3,3,[[43,1,1,0,1,[[1044,1,1,0,1]]],[45,1,1,1,2,[[1077,1,1,1,2]]],[55,1,1,2,3,[[1131,1,1,2,3]]]],[27867,28782,29935]]],["wintered",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27910]]]]},{"k":"G3915","v":[["in",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27867]]]]},{"k":"G3916","v":[["*",[19,19,[[39,2,2,0,2,[[949,2,2,0,2]]],[41,10,10,2,12,[[973,1,1,2,3],[976,1,1,3,4],[977,1,1,4,5],[980,3,3,5,8],[985,1,1,8,9],[990,1,1,9,10],[991,1,1,10,11],[994,1,1,11,12]]],[43,7,7,12,19,[[1020,1,1,12,13],[1022,1,1,13,14],[1026,1,1,14,15],[1029,1,1,15,16],[1030,1,1,16,17],[1033,2,2,17,19]]]],[23845,23846,24957,25102,25132,25289,25292,25300,25531,25731,25742,25924,27003,27069,27234,27360,27373,27509,27516]]],["forthwith",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27234]]],["immediately",[13,13,[[41,9,9,0,9,[[973,1,1,0,1],[976,1,1,1,2],[977,1,1,2,3],[980,2,2,3,5],[985,1,1,5,6],[990,1,1,6,7],[991,1,1,7,8],[994,1,1,8,9]]],[43,4,4,9,13,[[1020,1,1,9,10],[1029,1,1,10,11],[1030,1,1,11,12],[1033,1,1,12,13]]]],[24957,25102,25132,25289,25292,25531,25731,25742,25924,27003,27360,27373,27509]]],["presently",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23845]]],["soon",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23846]]],["straightway",[3,3,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,2,2,1,3,[[1022,1,1,1,2],[1033,1,1,2,3]]]],[25300,27069,27516]]]]},{"k":"G3917","v":[["leopard",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30910]]]]},{"k":"G3918","v":[["*",[23,22,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[42,2,2,2,4,[[1003,1,1,2,3],[1007,1,1,3,4]]],[43,5,5,4,9,[[1027,2,2,4,6],[1029,1,1,6,7],[1034,1,1,7,8],[1041,1,1,8,9]]],[45,2,1,9,10,[[1066,2,1,9,10]]],[46,5,5,10,15,[[1087,2,2,10,12],[1088,1,1,12,13],[1090,2,2,13,15]]],[47,2,2,15,17,[[1094,2,2,15,17]]],[50,1,1,17,18,[[1107,1,1,17,18]]],[57,2,2,18,20,[[1144,1,1,18,19],[1145,1,1,19,20]]],[60,2,2,20,22,[[1156,2,2,20,22]]]],[24104,25519,26334,26551,27280,27292,27357,27529,27788,28457,28973,28982,28998,29045,29053,29149,29151,29471,30223,30246,30488,30491]]],["+",[2,2,[[43,1,1,0,1,[[1027,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[27292,30488]]],["Then",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24104]]],["came",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27357]]],["come",[5,5,[[42,2,2,0,2,[[1003,1,1,0,1],[1007,1,1,1,2]]],[43,2,2,2,4,[[1027,1,1,2,3],[1034,1,1,3,4]]],[50,1,1,4,5,[[1107,1,1,4,5]]]],[26334,26551,27280,27529,29471]]],["have",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30246]]],["here",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27788]]],["present",[12,11,[[41,1,1,0,1,[[985,1,1,0,1]]],[45,2,1,1,2,[[1066,2,1,1,2]]],[46,5,5,2,7,[[1087,2,2,2,4],[1088,1,1,4,5],[1090,2,2,5,7]]],[47,2,2,7,9,[[1094,2,2,7,9]]],[57,1,1,9,10,[[1144,1,1,9,10]]],[60,1,1,10,11,[[1156,1,1,10,11]]]],[25519,28457,28973,28982,28998,29045,29053,29149,29151,30223,30491]]]]},{"k":"G3919","v":[["in",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30501]]]]},{"k":"G3920","v":[["in",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29085]]]]},{"k":"G3921","v":[["unawares",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30676]]]]},{"k":"G3922","v":[["*",[2,2,[[44,1,1,0,1,[[1050,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]]],[28067,29085]]],["entered",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28067]]],["privily",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29085]]]]},{"k":"G3923","v":[["giving",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30484]]]]},{"k":"G3924","v":[["*",[3,3,[[39,1,1,0,1,[[933,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]]],[23266,27852,29017]]],["except",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27852]]],["for",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23266]]],["without",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29017]]]]},{"k":"G3925","v":[["*",[10,10,[[43,6,6,0,6,[[1038,2,2,0,2],[1039,1,1,2,3],[1040,3,3,3,6]]],[57,3,3,6,9,[[1143,1,1,6,7],[1145,2,2,7,9]]],[65,1,1,9,10,[[1186,1,1,9,10]]]],[27698,27701,27728,27744,27750,27766,30206,30252,30254,31047]]],["+",[1,1,[[65,1,1,0,1,[[1186,1,1,0,1]]]],[31047]]],["armies",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30206]]],["camp",[2,2,[[57,2,2,0,2,[[1145,2,2,0,2]]]],[30252,30254]]],["castle",[6,6,[[43,6,6,0,6,[[1038,2,2,0,2],[1039,1,1,2,3],[1040,3,3,3,6]]]],[27698,27701,27728,27744,27750,27766]]]]},{"k":"G3926","v":[["trouble",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27461]]]]},{"k":"G3927","v":[["*",[3,3,[[57,1,1,0,1,[[1143,1,1,0,1]]],[59,2,2,1,3,[[1151,1,1,1,2],[1152,1,1,2,3]]]],[30185,30375,30410]]],["pilgrims",[2,2,[[57,1,1,0,1,[[1143,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[30185,30410]]],["strangers",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30375]]]]},{"k":"G3928","v":[["*",[31,27,[[39,9,7,0,7,[[933,2,1,0,1],[936,1,1,1,2],[942,1,1,2,3],[952,3,2,3,5],[954,2,2,5,7]]],[40,5,4,7,11,[[962,1,1,7,8],[969,3,2,8,10],[970,1,1,10,11]]],[41,9,8,11,19,[[983,1,1,11,12],[984,1,1,12,13],[987,1,1,13,14],[988,1,1,14,15],[989,1,1,15,16],[990,1,1,16,17],[993,3,2,17,19]]],[43,3,3,19,22,[[1033,1,1,19,20],[1041,1,1,20,21],[1044,1,1,21,22]]],[46,1,1,22,23,[[1082,1,1,22,23]]],[58,1,1,23,24,[[1146,1,1,23,24]]],[59,1,1,24,25,[[1154,1,1,24,25]]],[60,1,1,25,26,[[1158,1,1,25,26]]],[65,1,1,26,27,[[1187,1,1,26,27]]]],[23252,23373,23612,23991,23992,24093,24096,24455,24747,24748,24789,25447,25496,25617,25637,25658,25725,25858,25859,27491,27776,27864,28894,30276,30449,30532,31054]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27864]]],["Go",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25658]]],["away",[12,9,[[39,3,2,0,2,[[952,2,1,0,1],[954,1,1,1,2]]],[40,2,1,2,3,[[969,2,1,2,3]]],[41,3,2,3,5,[[993,3,2,3,5]]],[46,1,1,5,6,[[1082,1,1,5,6]]],[58,1,1,6,7,[[1146,1,1,6,7]]],[60,1,1,7,8,[[1158,1,1,7,8]]],[65,1,1,8,9,[[1187,1,1,8,9]]]],[23992,24096,24748,25858,25859,28894,30276,30532,31054]]],["by",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]],[43,1,1,2,3,[[1033,1,1,2,3]]]],[24455,25725,27491]]],["came",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27776]]],["forth",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25496]]],["over",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25447]]],["pass",[8,7,[[39,5,4,0,4,[[933,2,1,0,1],[936,1,1,1,2],[952,1,1,2,3],[954,1,1,3,4]]],[40,2,2,4,6,[[969,1,1,4,5],[970,1,1,5,6]]],[41,1,1,6,7,[[988,1,1,6,7]]]],[23252,23373,23991,24093,24747,24789,25637]]],["past",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[23612,30449]]],["transgressed",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25617]]]]},{"k":"G3929","v":[["remission",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28016]]]]},{"k":"G3930","v":[["*",[16,16,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,4,4,2,6,[[978,1,1,2,3],[979,1,1,3,4],[983,1,1,4,5],[990,1,1,5,6]]],[43,5,5,6,11,[[1033,1,1,6,7],[1034,1,1,7,8],[1036,1,1,8,9],[1039,1,1,9,10],[1045,1,1,10,11]]],[47,1,1,11,12,[[1096,1,1,11,12]]],[50,1,1,12,13,[[1110,1,1,12,13]]],[53,2,2,13,15,[[1119,1,1,13,14],[1124,1,1,14,15]]],[55,1,1,15,16,[[1130,1,1,15,16]]]],[24064,24760,25175,25199,25412,25693,27499,27554,27609,27706,27901,29205,29543,29700,29805,29915]]],["+",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,2,2,2,4,[[983,1,1,2,3],[990,1,1,3,4]]],[47,1,1,4,5,[[1096,1,1,4,5]]]],[24064,24760,25412,25693,29205]]],["brought",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1036,1,1,1,2]]]],[27499,27609]]],["do",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25199]]],["give",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29543]]],["given",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27554]]],["giveth",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29805]]],["kept",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27706]]],["minister",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29700]]],["offer",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25175]]],["shewed",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27901]]],["shewing",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29915]]]]},{"k":"G3931","v":[["comfort",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29553]]]]},{"k":"G3932","v":[["virginity",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25009]]]]},{"k":"G3933","v":[["*",[14,13,[[39,4,4,0,4,[[929,1,1,0,1],[953,3,3,1,4]]],[41,2,1,4,5,[[973,2,1,4,5]]],[43,1,1,5,6,[[1038,1,1,5,6]]],[45,5,5,6,11,[[1068,5,5,6,11]]],[46,1,1,11,12,[[1088,1,1,11,12]]],[65,1,1,12,13,[[1180,1,1,12,13]]]],[23167,24009,24015,24019,24920,27673,28512,28515,28521,28523,28524,28991,30930]]],["virgin",[7,7,[[39,1,1,0,1,[[929,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[45,4,4,2,6,[[1068,4,4,2,6]]],[46,1,1,6,7,[[1088,1,1,6,7]]]],[23167,24920,28515,28521,28523,28524,28991]]],["virgin's",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24920]]],["virgins",[6,6,[[39,3,3,0,3,[[953,3,3,0,3]]],[43,1,1,3,4,[[1038,1,1,3,4]]],[45,1,1,4,5,[[1068,1,1,4,5]]],[65,1,1,5,6,[[1180,1,1,5,6]]]],[24009,24015,24019,27673,28512,30930]]]]},{"k":"G3934","v":[["Parthians",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26958]]]]},{"k":"G3935","v":[["down",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30224]]]]},{"k":"G3936","v":[["*",[41,39,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,6,6,1,7,[[960,1,1,1,2],[970,3,3,2,5],[971,2,2,5,7]]],[41,3,3,7,10,[[973,1,1,7,8],[974,1,1,8,9],[991,1,1,9,10]]],[42,2,2,10,12,[[1014,1,1,10,11],[1015,1,1,11,12]]],[43,13,13,12,25,[[1018,2,2,12,14],[1021,2,2,14,16],[1026,2,2,16,18],[1040,4,4,18,22],[1041,1,1,22,23],[1044,2,2,23,25]]],[44,8,6,25,31,[[1051,5,3,25,28],[1057,1,1,28,29],[1059,1,1,29,30],[1061,1,1,30,31]]],[45,1,1,31,32,[[1069,1,1,31,32]]],[46,2,2,32,34,[[1081,1,1,32,33],[1088,1,1,33,34]]],[48,1,1,34,35,[[1101,1,1,34,35]]],[50,2,2,35,37,[[1107,2,2,35,37]]],[54,2,2,37,39,[[1126,1,1,37,38],[1128,1,1,38,39]]]],[24107,24352,24801,24823,24824,24861,24865,24912,24995,25755,26807,26851,26926,26933,27032,27048,27255,27257,27736,27738,27758,27767,27782,27878,27879,28081,28084,28087,28246,28290,28338,28535,28873,28991,29331,29487,29493,29842,29887]]],["assist",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28338]]],["before",[2,2,[[43,1,1,0,1,[[1044,1,1,0,1]]],[44,1,1,1,2,[[1059,1,1,1,2]]]],[27879,28290]]],["by",[12,12,[[40,4,4,0,4,[[970,3,3,0,3],[971,1,1,3,4]]],[41,1,1,4,5,[[991,1,1,4,5]]],[42,2,2,5,7,[[1014,1,1,5,6],[1015,1,1,6,7]]],[43,5,5,7,12,[[1018,1,1,7,8],[1026,1,1,8,9],[1040,2,2,9,11],[1044,1,1,11,12]]]],[24801,24823,24824,24861,25755,26807,26851,26933,27255,27736,27738,27878]]],["come",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24352]]],["commendeth",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28535]]],["give",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24107]]],["present",[7,7,[[41,1,1,0,1,[[974,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]],[46,2,2,2,4,[[1081,1,1,2,3],[1088,1,1,3,4]]],[48,1,1,4,5,[[1101,1,1,4,5]]],[50,2,2,5,7,[[1107,2,2,5,7]]]],[24995,28246,28873,28991,29331,29487,29493]]],["presented",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1040,1,1,1,2]]]],[27257,27767]]],["prove",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27782]]],["provide",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27758]]],["shew",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29842]]],["shewed",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26926]]],["stand",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]]],[24912,27032]]],["stood",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24865]]],["up",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27048]]],["with",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29887]]],["yield",[4,3,[[44,4,3,0,3,[[1051,4,3,0,3]]]],[28081,28084,28087]]],["yielded",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28087]]]]},{"k":"G3937","v":[["Parmenas",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27106]]]]},{"k":"G3938","v":[["+",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28783]]]]},{"k":"G3939","v":[["*",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[26009,30181]]],["+",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26009]]],["sojourned",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30181]]]]},{"k":"G3940","v":[["*",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[27379,30391]]],["sojourning",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30391]]],["strangers",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27379]]]]},{"k":"G3941","v":[["*",[4,4,[[43,2,2,0,2,[[1024,2,2,0,2]]],[48,1,1,2,3,[[1098,1,1,2,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[27122,27145,29248,30410]]],["foreigners",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29248]]],["sojourn",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27122]]],["stranger",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27145]]],["strangers",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30410]]]]},{"k":"G3942","v":[["*",[5,4,[[42,4,3,0,3,[[1006,1,1,0,1],[1012,3,2,1,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]]],[26487,26751,26755,30522]]],["parable",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26487]]],["proverb",[2,2,[[42,1,1,0,1,[[1012,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[26755,30522]]],["proverbs",[2,1,[[42,2,1,0,1,[[1012,2,1,0,1]]]],[26751]]]]},{"k":"G3943","v":[["wine",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[29734,29899]]]]},{"k":"G3944","v":[["past",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27430]]]]},{"k":"G3945","v":[["unto",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23945]]]]},{"k":"G3946","v":[["things",[2,2,[[40,2,2,0,2,[[963,2,2,0,2]]]],[24471,24476]]]]},{"k":"G3947","v":[["*",[2,2,[[43,1,1,0,1,[[1034,1,1,0,1]]],[45,1,1,1,2,[[1074,1,1,1,2]]]],[27539,28670]]],["provoked",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28670]]],["stirred",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27539]]]]},{"k":"G3948","v":[["+",[2,2,[[43,1,1,0,1,[[1032,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[27481,30157]]]]},{"k":"G3949","v":[["*",[2,2,[[44,1,1,0,1,[[1055,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]]],[28207,29341]]],["+",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29341]]],["anger",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28207]]]]},{"k":"G3950","v":[["wrath",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29298]]]]},{"k":"G3951","v":[["up",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27412]]]]},{"k":"G3952","v":[["*",[24,24,[[39,4,4,0,4,[[952,4,4,0,4]]],[45,2,2,4,6,[[1076,1,1,4,5],[1077,1,1,5,6]]],[46,3,3,6,9,[[1084,2,2,6,8],[1087,1,1,8,9]]],[49,2,2,9,11,[[1103,1,1,9,10],[1104,1,1,10,11]]],[51,4,4,11,15,[[1112,1,1,11,12],[1113,1,1,12,13],[1114,1,1,13,14],[1115,1,1,14,15]]],[52,3,3,15,18,[[1117,3,3,15,18]]],[58,2,2,18,20,[[1150,2,2,18,20]]],[60,3,3,20,23,[[1156,1,1,20,21],[1158,2,2,21,23]]],[61,1,1,23,24,[[1160,1,1,23,24]]]],[23960,23984,23994,23996,28741,28793,28922,28923,28981,29387,29403,29589,29603,29618,29644,29662,29669,29670,30361,30362,30495,30526,30534,30578]]],["coming",[22,22,[[39,4,4,0,4,[[952,4,4,0,4]]],[45,2,2,4,6,[[1076,1,1,4,5],[1077,1,1,5,6]]],[46,2,2,6,8,[[1084,2,2,6,8]]],[49,1,1,8,9,[[1103,1,1,8,9]]],[51,4,4,9,13,[[1112,1,1,9,10],[1113,1,1,10,11],[1114,1,1,11,12],[1115,1,1,12,13]]],[52,3,3,13,16,[[1117,3,3,13,16]]],[58,2,2,16,18,[[1150,2,2,16,18]]],[60,3,3,18,21,[[1156,1,1,18,19],[1158,2,2,19,21]]],[61,1,1,21,22,[[1160,1,1,21,22]]]],[23960,23984,23994,23996,28741,28793,28922,28923,29387,29589,29603,29618,29644,29662,29669,29670,30361,30362,30495,30526,30534,30578]]],["presence",[2,2,[[46,1,1,0,1,[[1087,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[28981,29403]]]]},{"k":"G3953","v":[["platter",[2,2,[[39,2,2,0,2,[[951,2,2,0,2]]]],[23943,23944]]]]},{"k":"G3954","v":[["*",[31,31,[[40,1,1,0,1,[[964,1,1,0,1]]],[42,9,9,1,10,[[1003,3,3,1,4],[1006,1,1,4,5],[1007,2,2,5,7],[1012,2,2,7,9],[1014,1,1,9,10]]],[43,5,5,10,15,[[1019,1,1,10,11],[1021,3,3,11,14],[1045,1,1,14,15]]],[46,2,2,15,17,[[1080,1,1,15,16],[1084,1,1,16,17]]],[48,2,2,17,19,[[1099,1,1,17,18],[1102,1,1,18,19]]],[49,1,1,19,20,[[1103,1,1,19,20]]],[50,1,1,20,21,[[1108,1,1,20,21]]],[53,1,1,21,22,[[1121,1,1,21,22]]],[56,1,1,22,23,[[1132,1,1,22,23]]],[57,4,4,23,27,[[1135,1,1,23,24],[1136,1,1,24,25],[1142,2,2,25,27]]],[61,4,4,27,31,[[1160,1,1,27,28],[1161,1,1,28,29],[1162,1,1,29,30],[1163,1,1,30,31]]]],[24532,26332,26341,26354,26505,26537,26577,26751,26755,26805,26978,27035,27051,27053,27930,28853,28920,29263,29356,29381,29509,29744,29946,30001,30030,30152,30168,30578,30600,30620,30638]]],["+",[5,5,[[42,1,1,0,1,[[1003,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]],[50,1,1,3,4,[[1108,1,1,3,4]]],[57,1,1,4,5,[[1136,1,1,4,5]]]],[26332,26978,29356,29509,30030]]],["bold",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29946]]],["boldly",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26354]]],["boldness",[8,8,[[43,3,3,0,3,[[1021,3,3,0,3]]],[48,1,1,3,4,[[1099,1,1,3,4]]],[49,1,1,4,5,[[1103,1,1,4,5]]],[53,1,1,5,6,[[1121,1,1,5,6]]],[57,1,1,6,7,[[1142,1,1,6,7]]],[61,1,1,7,8,[[1162,1,1,7,8]]]],[27035,27051,27053,29263,29381,29744,30152,30620]]],["confidence",[6,6,[[43,1,1,0,1,[[1045,1,1,0,1]]],[57,2,2,1,3,[[1135,1,1,1,2],[1142,1,1,2,3]]],[61,3,3,3,6,[[1160,1,1,3,4],[1161,1,1,4,5],[1163,1,1,5,6]]]],[27930,30001,30168,30578,30600,30638]]],["openly",[4,4,[[40,1,1,0,1,[[964,1,1,0,1]]],[42,3,3,1,4,[[1003,1,1,1,2],[1007,1,1,2,3],[1014,1,1,3,4]]]],[24532,26341,26577,26805]]],["plainly",[4,4,[[42,4,4,0,4,[[1006,1,1,0,1],[1007,1,1,1,2],[1012,2,2,2,4]]]],[26505,26537,26751,26755]]],["speech",[2,2,[[46,2,2,0,2,[[1080,1,1,0,1],[1084,1,1,1,2]]]],[28853,28920]]]]},{"k":"G3955","v":[["*",[9,9,[[43,7,7,0,7,[[1026,2,2,0,2],[1030,1,1,2,3],[1031,1,1,3,4],[1035,1,1,4,5],[1036,1,1,5,6],[1043,1,1,6,7]]],[48,1,1,7,8,[[1102,1,1,7,8]]],[51,1,1,8,9,[[1112,1,1,8,9]]]],[27243,27245,27408,27417,27583,27593,27849,29357,29572]]],["bold",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]]],[27408,29572]]],["boldly",[6,6,[[43,5,5,0,5,[[1026,2,2,0,2],[1031,1,1,2,3],[1035,1,1,3,4],[1036,1,1,4,5]]],[48,1,1,5,6,[[1102,1,1,5,6]]]],[27243,27245,27417,27583,27593,29357]]],["freely",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27849]]]]},{"k":"G3956","v":[["*",[1238,1071,[[39,129,120,0,120,[[929,1,1,0,1],[930,4,3,1,4],[931,4,3,4,7],[932,6,5,7,12],[933,5,5,12,17],[934,3,3,17,20],[935,7,7,20,27],[936,4,4,27,31],[937,3,1,31,32],[938,5,4,32,36],[939,3,3,36,39],[940,6,5,39,44],[941,12,11,44,55],[942,2,2,55,57],[943,3,3,57,60],[945,1,1,60,61],[946,9,9,61,70],[947,6,6,70,76],[949,4,4,76,80],[950,4,4,80,84],[951,7,7,84,91],[952,9,9,91,100],[953,5,5,100,105],[954,8,8,105,113],[955,4,4,113,117],[956,4,3,117,120]]],[40,70,64,120,184,[[957,5,4,120,124],[958,3,2,124,126],[959,1,1,126,127],[960,6,6,127,133],[961,4,4,133,137],[962,6,6,137,143],[963,7,6,143,149],[965,7,5,149,154],[966,4,4,154,158],[967,4,4,158,162],[968,7,6,162,168],[969,7,7,168,175],[970,8,8,175,183],[972,1,1,183,184]]],[41,153,140,184,324,[[973,11,10,184,194],[974,11,11,194,205],[975,8,7,205,212],[976,12,12,212,224],[977,2,2,224,226],[978,8,7,226,233],[979,5,5,233,238],[980,5,5,238,243],[981,9,7,243,250],[982,3,3,250,253],[983,6,6,253,259],[984,10,10,259,269],[985,9,7,269,276],[986,6,5,276,281],[987,3,3,281,284],[988,5,4,284,288],[989,1,1,288,289],[990,7,7,289,296],[991,2,2,296,298],[992,5,5,298,303],[993,12,10,303,313],[994,1,1,313,314],[995,2,2,314,316],[996,10,8,316,324]]],[42,65,60,324,384,[[997,4,4,324,328],[998,3,3,328,331],[999,8,7,331,338],[1000,5,5,338,343],[1001,4,4,343,347],[1002,5,4,347,351],[1003,1,1,351,352],[1004,2,2,352,354],[1006,3,3,354,357],[1007,2,2,357,359],[1008,2,2,359,361],[1009,5,5,361,366],[1010,2,1,366,367],[1011,4,3,367,370],[1012,4,4,370,374],[1013,5,4,374,378],[1014,3,3,378,381],[1015,2,2,381,383],[1017,1,1,383,384]]],[43,170,156,384,540,[[1018,7,7,384,391],[1019,13,12,391,403],[1020,10,9,403,412],[1021,7,6,412,418],[1022,10,10,418,428],[1023,1,1,428,429],[1024,4,4,429,433],[1025,4,4,433,437],[1026,7,7,437,444],[1027,13,11,444,455],[1028,3,3,455,458],[1029,1,1,458,459],[1030,9,6,459,465],[1031,2,2,465,467],[1032,7,6,467,473],[1033,4,3,473,476],[1034,12,10,476,486],[1035,4,4,486,490],[1036,7,6,490,496],[1037,10,10,496,506],[1038,7,7,506,513],[1039,5,5,513,518],[1040,1,1,518,519],[1041,4,4,519,523],[1042,2,1,523,524],[1043,7,7,524,531],[1044,6,6,531,537],[1045,3,3,537,540]]],[44,71,61,540,601,[[1046,6,6,540,546],[1047,3,3,546,549],[1048,10,8,549,557],[1049,3,2,557,559],[1050,4,2,559,561],[1052,1,1,561,562],[1053,5,4,562,566],[1054,5,5,566,571],[1055,7,6,571,577],[1056,4,3,577,580],[1057,4,4,580,584],[1058,2,2,584,586],[1059,7,6,586,592],[1060,5,4,592,596],[1061,5,5,596,601]]],[45,112,73,601,674,[[1062,7,4,601,605],[1063,2,2,605,607],[1064,2,2,607,609],[1065,2,2,609,611],[1067,4,2,611,613],[1068,2,2,613,615],[1069,4,3,615,618],[1070,8,5,618,623],[1071,16,11,623,634],[1072,5,5,634,639],[1073,16,8,639,647],[1074,8,3,647,650],[1075,12,8,650,658],[1076,20,12,658,670],[1077,4,4,670,674]]],[46,53,43,674,717,[[1078,4,3,674,677],[1079,5,4,677,681],[1080,2,2,681,683],[1081,3,3,683,686],[1082,6,5,686,691],[1083,2,2,691,693],[1084,8,8,693,701],[1085,3,2,701,703],[1086,7,3,703,706],[1087,3,2,706,708],[1088,4,3,708,711],[1089,2,2,711,713],[1090,4,4,713,717]]],[47,15,14,717,731,[[1091,1,1,717,718],[1092,1,1,718,719],[1093,7,6,719,725],[1094,2,2,725,727],[1095,2,2,727,729],[1096,2,2,729,731]]],[48,52,37,731,768,[[1097,11,8,731,739],[1098,2,2,739,741],[1099,8,7,741,748],[1100,16,10,748,758],[1101,7,6,758,764],[1102,8,4,764,768]]],[49,34,30,768,798,[[1103,12,10,768,778],[1104,8,8,778,786],[1105,3,2,786,788],[1106,11,10,788,798]]],[50,38,30,798,828,[[1107,20,13,798,811],[1108,7,7,811,818],[1109,8,7,818,825],[1110,3,3,825,828]]],[51,18,18,828,846,[[1111,3,3,828,831],[1112,1,1,831,832],[1113,4,4,832,836],[1114,2,2,836,838],[1115,8,8,838,846]]],[52,16,14,846,860,[[1116,4,4,846,850],[1117,5,5,850,855],[1118,7,5,855,860]]],[53,24,22,860,882,[[1119,2,2,860,862],[1120,8,6,862,868],[1121,2,2,868,870],[1122,5,5,870,875],[1123,3,3,875,878],[1124,4,4,878,882]]],[54,18,18,882,900,[[1125,1,1,882,883],[1126,5,5,883,888],[1127,5,5,888,893],[1128,7,7,893,900]]],[55,14,11,900,911,[[1129,2,2,900,902],[1130,7,6,902,908],[1131,5,3,908,911]]],[56,2,2,911,913,[[1132,2,2,911,913]]],[57,51,44,913,957,[[1133,5,5,913,918],[1134,10,7,918,925],[1135,3,2,925,927],[1136,4,4,927,931],[1137,3,3,931,934],[1138,1,1,934,935],[1139,2,2,935,937],[1140,3,3,937,940],[1141,5,3,940,943],[1142,1,1,943,944],[1143,2,2,944,946],[1144,6,6,946,952],[1145,6,5,952,957]]],[58,12,11,957,968,[[1146,7,6,957,963],[1147,1,1,963,964],[1148,2,2,964,966],[1149,1,1,966,967],[1150,1,1,967,968]]],[59,18,15,968,983,[[1151,3,2,968,970],[1152,6,4,970,974],[1153,2,2,974,976],[1154,3,3,976,979],[1155,4,4,979,983]]],[60,7,7,983,990,[[1156,3,3,983,986],[1158,4,4,986,990]]],[61,27,24,990,1014,[[1159,2,2,990,992],[1160,7,7,992,999],[1161,9,7,999,1006],[1162,4,4,1006,1010],[1163,5,4,1010,1014]]],[62,2,2,1014,1016,[[1164,2,2,1014,1016]]],[63,2,2,1016,1018,[[1165,2,2,1016,1018]]],[64,6,3,1018,1021,[[1166,6,3,1018,1021]]],[65,59,50,1021,1071,[[1167,2,1,1021,1022],[1168,1,1,1022,1023],[1170,1,1,1023,1024],[1171,4,3,1024,1027],[1172,3,2,1027,1029],[1173,6,6,1029,1035],[1174,2,2,1035,1037],[1175,2,1,1037,1038],[1177,1,1,1038,1039],[1178,1,1,1039,1040],[1179,4,4,1040,1044],[1180,1,1,1044,1045],[1181,1,1,1045,1046],[1182,2,2,1046,1048],[1184,14,9,1048,1057],[1185,4,4,1057,1061],[1187,6,6,1061,1067],[1188,4,4,1067,1071]]]],[23161,23172,23173,23185,23197,23202,23207,23213,23217,23218,23232,23233,23245,23249,23252,23256,23262,23311,23314,23315,23324,23328,23333,23335,23337,23340,23342,23361,23377,23378,23379,23414,23418,23439,23447,23449,23472,23486,23487,23504,23512,23514,23520,23525,23541,23558,23571,23573,23580,23583,23585,23586,23590,23591,23595,23617,23632,23646,23650,23670,23711,23737,23743,23746,23752,23753,23756,23758,23759,23761,23765,23773,23782,23788,23789,23791,23836,23838,23848,23852,23876,23882,23899,23900,23921,23923,23926,23938,23945,23953,23954,23959,23963,23965,23966,23971,23987,23990,23991,24004,24013,24015,24037,24039,24040,24055,24081,24085,24087,24089,24106,24110,24124,24130,24151,24154,24174,24213,24214,24215,24220,24242,24247,24252,24272,24273,24316,24324,24334,24336,24354,24355,24357,24376,24384,24390,24397,24437,24440,24446,24448,24449,24457,24466,24477,24481,24482,24486,24500,24550,24553,24561,24573,24587,24608,24615,24616,24632,24651,24657,24658,24664,24695,24701,24702,24706,24716,24717,24721,24727,24730,24737,24740,24747,24754,24777,24781,24783,24785,24790,24804,24807,24818,24888,24896,24899,24903,24930,24941,24956,24958,24959,24964,24968,24974,24976,24983,24991,24992,24993,24996,25004,25011,25020,25024,25028,25030,25031,25034,25040,25044,25045,25067,25068,25070,25076,25078,25083,25085,25088,25091,25099,25100,25103,25116,25124,25156,25163,25165,25172,25176,25186,25193,25196,25212,25213,25224,25230,25285,25290,25292,25297,25299,25302,25308,25314,25318,25324,25344,25349,25364,25382,25385,25409,25415,25422,25446,25447,25455,25466,25467,25469,25477,25486,25489,25490,25500,25503,25507,25520,25521,25522,25523,25535,25545,25546,25564,25570,25571,25582,25586,25589,25602,25619,25634,25636,25638,25646,25661,25700,25702,25709,25710,25716,25719,25731,25757,25768,25785,25797,25811,25817,25824,25829,25841,25843,25848,25850,25855,25858,25861,25862,25864,25934,25983,25984,26000,26005,26010,26012,26016,26018,26035,26038,26047,26051,26053,26060,26105,26110,26119,26128,26135,26136,26140,26146,26151,26155,26169,26181,26185,26195,26201,26230,26232,26233,26238,26294,26296,26297,26302,26349,26383,26415,26489,26510,26522,26549,26571,26612,26626,26633,26640,26641,26648,26665,26694,26701,26714,26720,26728,26739,26741,26756,26761,26766,26769,26780,26789,26822,26825,26837,26853,26915,26924,26931,26937,26941,26942,26944,26947,26954,26956,26961,26966,26970,26974,26981,26985,26988,26992,26993,26994,27005,27007,27012,27014,27017,27018,27019,27020,27021,27032,27038,27043,27046,27051,27055,27064,27070,27076,27079,27080,27082,27093,27095,27096,27101,27106,27126,27130,27138,27166,27177,27186,27203,27216,27230,27237,27242,27248,27251,27255,27256,27261,27271,27273,27292,27294,27295,27297,27298,27300,27302,27303,27315,27321,27330,27348,27372,27384,27386,27389,27401,27406,27429,27430,27445,27454,27459,27460,27463,27478,27509,27515,27516,27530,27534,27540,27544,27545,27547,27548,27549,27553,27554,27559,27561,27574,27580,27592,27595,27602,27604,27611,27619,27644,27645,27651,27652,27653,27654,27658,27661,27662,27663,27669,27682,27684,27685,27688,27691,27692,27707,27709,27714,27716,27719,27735,27772,27774,27777,27783,27820,27825,27826,27827,27834,27837,27843,27852,27875,27879,27890,27891,27892,27899,27901,27929,27930,27935,27937,27938,27946,27948,27959,27963,27971,27972,27993,27995,28000,28003,28010,28011,28013,28014,28033,28038,28059,28065,28099,28138,28144,28148,28153,28160,28161,28162,28172,28188,28192,28199,28200,28201,28204,28206,28235,28241,28245,28248,28249,28262,28263,28267,28273,28282,28285,28290,28291,28300,28303,28314,28316,28317,28336,28340,28351,28355,28360,28362,28365,28368,28373,28392,28404,28409,28431,28432,28446,28450,28479,28485,28494,28504,28528,28533,28534,28552,28559,28562,28564,28565,28568,28569,28570,28571,28578,28584,28590,28592,28594,28598,28600,28602,28603,28604,28605,28612,28640,28645,28646,28647,28653,28660,28663,28664,28667,28668,28672,28683,28696,28701,28702,28704,28709,28711,28718,28725,28726,28728,28737,28740,28742,28743,28745,28746,28748,28757,28769,28790,28792,28796,28800,28801,28803,28804,28827,28829,28833,28838,28843,28859,28861,28867,28874,28887,28891,28892,28894,28895,28902,28908,28917,28920,28921,28927,28929,28930,28931,28932,28939,28950,28964,28967,28969,28976,28977,28995,28998,29017,29034,29041,29044,29045,29056,29057,29059,29095,29110,29112,29115,29124,29128,29130,29132,29157,29165,29176,29194,29198,29209,29214,29216,29217,29221,29227,29228,29229,29232,29250,29259,29260,29266,29269,29270,29271,29272,29274,29278,29282,29285,29286,29287,29288,29291,29301,29303,29307,29309,29313,29317,29324,29328,29353,29355,29358,29361,29362,29364,29365,29368,29369,29370,29374,29379,29381,29386,29400,29401,29402,29405,29408,29412,29417,29420,29429,29442,29447,29448,29449,29454,29455,29460,29461,29463,29464,29465,29469,29471,29474,29475,29476,29480,29481,29482,29483,29484,29485,29488,29493,29496,29497,29503,29504,29507,29513,29516,29525,29528,29531,29533,29534,29537,29539,29549,29551,29554,29562,29567,29568,29585,29597,29599,29602,29603,29609,29613,29626,29635,29636,29639,29642,29643,29647,29648,29652,29653,29659,29660,29665,29670,29671,29673,29678,29680,29684,29694,29695,29696,29711,29712,29717,29718,29720,29722,29724,29727,29735,29742,29751,29755,29756,29757,29762,29765,29773,29783,29789,29798,29801,29805,29824,29834,29837,29846,29848,29851,29862,29864,29865,29869,29870,29872,29875,29878,29886,29887,29888,29891,29907,29908,29915,29917,29918,29919,29922,29923,29924,29925,29938,29943,29944,29965,29966,29969,29974,29977,29979,29985,29986,29987,29988,29992,29994,29999,30011,30018,30026,30027,30029,30031,30039,30043,30060,30066,30071,30095,30097,30103,30124,30126,30127,30144,30185,30211,30213,30218,30220,30223,30226,30235,30245,30259,30262,30265,30266,30268,30271,30274,30283,30285,30287,30303,30326,30335,30353,30366,30389,30398,30400,30412,30416,30417,30432,30439,30453,30454,30457,30470,30472,30475,30479,30482,30484,30499,30526,30531,30533,30538,30547,30549,30566,30569,30570,30571,30573,30577,30579,30582,30583,30585,30588,30589,30594,30599,30604,30605,30606,30610,30625,30628,30641,30642,30646,30654,30660,30670,30675,30687,30697,30704,30740,30779,30785,30788,30792,30807,30808,30811,30814,30819,30821,30826,30827,30830,30834,30844,30878,30896,30915,30916,30920,30924,30932,30950,30957,30974,30995,30996,31005,31007,31010,31012,31015,31016,31017,31022,31034,31035,31038,31057,31058,31060,31061,31072,31080,31083,31095,31098,31101]]],["+",[59,58,[[39,5,5,0,5,[[933,1,1,0,1],[935,1,1,1,2],[938,1,1,2,3],[946,1,1,3,4],[956,1,1,4,5]]],[40,4,4,5,9,[[961,1,1,5,6],[962,1,1,6,7],[967,1,1,7,8],[969,1,1,8,9]]],[41,5,5,9,14,[[973,1,1,9,10],[984,3,3,10,13],[993,1,1,13,14]]],[42,2,2,14,16,[[1010,1,1,14,15],[1013,1,1,15,16]]],[43,16,16,16,32,[[1019,2,2,16,18],[1022,1,1,18,19],[1026,1,1,19,20],[1027,2,2,20,22],[1030,2,2,22,24],[1032,1,1,24,25],[1034,2,2,25,27],[1035,1,1,27,28],[1036,1,1,28,29],[1037,1,1,29,30],[1043,1,1,30,31],[1044,1,1,31,32]]],[44,4,4,32,36,[[1048,1,1,32,33],[1055,1,1,33,34],[1059,2,2,34,36]]],[45,7,7,36,43,[[1062,1,1,36,37],[1070,1,1,37,38],[1071,1,1,38,39],[1074,1,1,39,40],[1076,2,2,40,42],[1077,1,1,42,43]]],[46,3,3,43,46,[[1082,1,1,43,44],[1086,1,1,44,45],[1088,1,1,45,46]]],[48,3,3,46,49,[[1099,1,1,46,47],[1100,1,1,47,48],[1102,1,1,48,49]]],[52,1,1,49,50,[[1118,1,1,49,50]]],[57,4,3,50,53,[[1134,2,1,50,51],[1142,1,1,51,52],[1144,1,1,52,53]]],[60,1,1,53,54,[[1156,1,1,53,54]]],[61,2,2,54,56,[[1160,1,1,54,55],[1161,1,1,55,56]]],[64,1,1,56,57,[[1166,1,1,56,57]]],[65,1,1,57,58,[[1188,1,1,57,58]]]],[23245,23340,23449,23737,24215,24390,24446,24664,24737,24930,25467,25469,25507,25862,26694,26761,26970,26974,27101,27242,27292,27302,27389,27406,27463,27540,27548,27561,27619,27663,27834,27899,28011,28201,28282,28303,28392,28564,28584,28668,28745,28746,28790,28891,28964,28995,29260,29301,29355,29694,29985,30144,30223,30499,30571,30594,30697,31083]]],["All",[24,24,[[39,9,9,0,9,[[932,1,1,0,1],[941,1,1,1,2],[947,2,2,2,4],[951,2,2,4,6],[952,1,1,6,7],[954,1,1,7,8],[956,1,1,8,9]]],[40,4,4,9,13,[[957,1,1,9,10],[959,1,1,10,11],[963,1,1,11,12],[970,1,1,12,13]]],[41,1,1,13,14,[[990,1,1,13,14]]],[42,2,2,14,16,[[1002,1,1,14,15],[1006,1,1,15,16]]],[45,2,2,16,18,[[1076,1,1,16,17],[1077,1,1,17,18]]],[46,1,1,18,19,[[1090,1,1,18,19]]],[49,1,1,19,20,[[1106,1,1,19,20]]],[50,1,1,20,21,[[1110,1,1,20,21]]],[54,1,1,21,22,[[1127,1,1,21,22]]],[55,1,1,22,23,[[1131,1,1,22,23]]],[61,1,1,23,24,[[1163,1,1,23,24]]]],[23218,23573,23773,23782,23921,23954,23965,24085,24213,24252,24316,24486,24781,25709,26294,26489,28757,28796,29056,29464,29549,29869,29938,30641]]],["Every",[12,12,[[39,3,3,0,3,[[935,1,1,0,1],[940,1,1,1,2],[943,1,1,2,3]]],[41,3,3,3,6,[[974,1,1,3,4],[975,1,1,4,5],[983,1,1,5,6]]],[42,2,2,6,8,[[998,1,1,6,7],[1011,1,1,7,8]]],[45,2,2,8,10,[[1067,1,1,8,9],[1072,1,1,9,10]]],[58,1,1,10,11,[[1146,1,1,10,11]]],[61,1,1,11,12,[[1162,1,1,11,12]]]],[23335,23514,23646,24996,25030,25422,26105,26701,28485,28604,30283,30605]]],["Whatsoever",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28592]]],["Whosoever",[13,13,[[41,3,3,0,3,[[978,1,1,0,1],[988,1,1,1,2],[992,1,1,2,3]]],[42,2,2,3,5,[[1000,1,1,3,4],[1004,1,1,4,5]]],[44,1,1,5,6,[[1055,1,1,5,6]]],[61,6,6,6,12,[[1160,1,1,6,7],[1161,4,4,7,11],[1163,1,1,11,12]]],[62,1,1,12,13,[[1164,1,1,12,13]]]],[25193,25638,25797,26169,26415,28199,30573,30583,30585,30588,30594,30625,30654]]],["all",[762,686,[[39,73,70,0,70,[[929,1,1,0,1],[930,4,3,1,4],[931,3,2,4,6],[932,2,2,6,8],[933,2,2,8,10],[934,3,3,10,13],[936,1,1,13,14],[937,1,1,14,15],[938,2,2,15,17],[939,2,2,17,19],[940,2,2,19,21],[941,6,5,21,26],[942,2,2,26,28],[943,1,1,28,29],[946,6,6,29,35],[947,1,1,35,36],[949,3,3,36,39],[950,3,3,39,42],[951,4,4,42,46],[952,8,8,46,54],[953,4,4,54,58],[954,7,7,58,65],[955,4,4,65,69],[956,1,1,69,70]]],[40,46,42,70,112,[[957,4,3,70,73],[958,3,2,73,75],[960,3,3,75,78],[961,3,3,78,81],[962,4,4,81,85],[963,3,3,85,88],[965,3,2,88,90],[966,3,3,90,93],[967,2,2,93,95],[968,7,6,95,101],[969,5,5,101,106],[970,6,6,106,112]]],[41,111,106,112,218,[[973,8,7,112,119],[974,10,10,119,129],[975,4,4,129,133],[976,10,10,133,143],[977,1,1,143,144],[978,4,4,144,148],[979,5,5,148,153],[980,5,5,153,158],[981,7,7,158,165],[982,1,1,165,166],[983,1,1,166,167],[984,7,7,167,174],[985,9,7,174,181],[986,3,3,181,184],[987,3,3,184,187],[988,2,2,187,189],[989,1,1,189,190],[990,4,4,190,194],[991,1,1,194,195],[992,4,4,195,199],[993,9,9,199,208],[994,1,1,208,209],[995,2,2,209,211],[996,9,7,211,218]]],[42,28,27,218,245,[[997,2,2,218,220],[998,2,2,220,222],[999,3,2,222,224],[1000,1,1,224,225],[1001,3,3,225,228],[1002,2,2,228,230],[1003,1,1,230,231],[1004,1,1,231,232],[1006,1,1,232,233],[1007,1,1,233,234],[1008,1,1,234,235],[1009,4,4,235,239],[1011,1,1,239,240],[1012,1,1,240,241],[1013,3,3,241,244],[1014,1,1,244,245]]],[43,130,122,245,367,[[1018,7,7,245,252],[1019,9,8,252,260],[1020,7,7,260,267],[1021,7,6,267,273],[1022,8,8,273,281],[1024,4,4,281,285],[1025,4,4,285,289],[1026,6,6,289,295],[1027,5,5,295,300],[1028,2,2,300,302],[1029,1,1,302,303],[1030,6,4,303,307],[1031,1,1,307,308],[1032,5,4,308,312],[1033,3,3,312,315],[1034,8,7,315,322],[1035,3,3,322,325],[1036,6,5,325,330],[1037,8,8,330,338],[1038,7,7,338,345],[1039,4,4,345,349],[1040,1,1,349,350],[1041,3,3,350,353],[1042,2,1,353,354],[1043,6,6,354,360],[1044,5,5,360,365],[1045,2,2,365,367]]],[44,46,39,367,406,[[1046,5,5,367,372],[1048,6,5,372,377],[1049,3,2,377,379],[1050,4,2,379,381],[1053,2,2,381,383],[1054,4,4,383,387],[1055,4,3,387,390],[1056,3,2,390,392],[1057,3,3,392,395],[1058,1,1,395,396],[1059,1,1,396,397],[1060,5,4,397,401],[1061,5,5,401,406]]],[45,63,41,406,447,[[1062,4,3,406,409],[1064,1,1,409,410],[1068,2,2,410,412],[1069,1,1,412,413],[1070,3,2,413,415],[1071,9,7,415,422],[1073,16,8,422,430],[1074,3,1,430,431],[1075,10,6,431,437],[1076,13,9,437,446],[1077,1,1,446,447]]],[46,30,28,447,475,[[1078,3,3,447,450],[1079,3,2,450,452],[1080,2,2,452,454],[1082,3,3,454,457],[1083,1,1,457,458],[1084,6,6,458,464],[1085,2,2,464,466],[1086,4,3,466,469],[1087,1,1,469,470],[1088,2,2,470,472],[1089,1,1,472,473],[1090,2,2,473,475]]],[47,11,11,475,486,[[1091,1,1,475,476],[1092,1,1,476,477],[1093,4,4,477,481],[1094,2,2,481,483],[1095,1,1,483,484],[1096,2,2,484,486]]],[48,33,24,486,510,[[1097,8,6,486,492],[1098,2,2,492,494],[1099,5,5,494,499],[1100,10,6,499,505],[1101,2,2,505,507],[1102,6,3,507,510]]],[49,18,17,510,527,[[1103,9,8,510,518],[1104,4,4,518,522],[1106,5,5,522,527]]],[50,22,20,527,547,[[1107,9,8,527,535],[1108,7,7,535,542],[1109,5,4,542,546],[1110,1,1,546,547]]],[51,15,15,547,562,[[1111,2,2,547,549],[1112,1,1,549,550],[1113,4,4,550,554],[1114,2,2,554,556],[1115,6,6,556,562]]],[52,12,11,562,573,[[1116,4,4,562,566],[1117,4,4,566,570],[1118,4,3,570,573]]],[53,17,15,573,588,[[1119,2,2,573,575],[1120,7,5,575,580],[1121,1,1,580,581],[1122,3,3,581,584],[1123,2,2,584,586],[1124,2,2,586,588]]],[54,11,11,588,599,[[1125,1,1,588,589],[1126,1,1,589,590],[1127,4,4,590,594],[1128,5,5,594,599]]],[55,8,7,599,606,[[1130,5,5,599,604],[1131,3,2,604,606]]],[56,1,1,606,607,[[1132,1,1,606,607]]],[57,24,22,607,629,[[1133,3,3,607,610],[1134,2,2,610,612],[1135,1,1,612,613],[1136,1,1,613,614],[1137,1,1,614,615],[1138,1,1,615,616],[1139,2,2,616,618],[1140,1,1,618,619],[1141,3,2,619,621],[1143,2,2,621,623],[1144,3,3,623,626],[1145,4,3,626,629]]],[58,6,6,629,635,[[1146,4,4,629,633],[1147,1,1,633,634],[1149,1,1,634,635]]],[59,12,9,635,644,[[1151,2,1,635,636],[1152,5,3,636,639],[1153,1,1,639,640],[1155,4,4,640,644]]],[60,4,4,644,648,[[1156,1,1,644,645],[1158,3,3,645,648]]],[61,4,4,648,652,[[1159,2,2,648,650],[1160,2,2,650,652]]],[62,1,1,652,653,[[1164,1,1,652,653]]],[63,1,1,653,654,[[1165,1,1,653,654]]],[64,5,2,654,656,[[1166,5,2,654,656]]],[65,30,30,656,686,[[1167,1,1,656,657],[1168,1,1,657,658],[1171,2,2,658,660],[1173,4,4,660,664],[1174,2,2,664,666],[1177,1,1,666,667],[1178,1,1,667,668],[1179,4,4,668,672],[1181,1,1,672,673],[1184,6,6,673,679],[1185,4,4,679,683],[1187,2,2,683,685],[1188,1,1,685,686]]]],[23161,23172,23173,23185,23197,23207,23217,23233,23249,23252,23311,23314,23315,23361,23414,23439,23447,23472,23487,23504,23512,23571,23583,23585,23590,23595,23617,23632,23670,23752,23753,23756,23758,23759,23761,23789,23836,23838,23852,23882,23899,23900,23923,23926,23945,23953,23959,23963,23966,23971,23987,23990,23991,24004,24013,24015,24039,24040,24055,24081,24087,24089,24106,24110,24124,24130,24151,24154,24174,24214,24220,24242,24247,24272,24273,24336,24354,24355,24376,24384,24397,24440,24448,24449,24457,24466,24477,24482,24553,24573,24608,24616,24632,24657,24658,24695,24701,24702,24706,24716,24717,24721,24727,24730,24747,24754,24777,24783,24785,24804,24807,24818,24899,24941,24956,24958,24959,24964,24968,24974,24976,24983,24991,24992,24993,25004,25011,25020,25024,25028,25031,25044,25045,25068,25070,25076,25078,25083,25085,25088,25091,25099,25103,25116,25156,25163,25165,25172,25196,25212,25213,25224,25230,25285,25290,25292,25297,25299,25302,25308,25314,25318,25324,25344,25349,25382,25455,25466,25477,25486,25489,25490,25500,25503,25520,25521,25522,25523,25535,25545,25546,25571,25582,25586,25589,25602,25619,25634,25646,25661,25700,25710,25716,25731,25768,25785,25811,25817,25824,25829,25841,25843,25850,25855,25858,25861,25862,25864,25934,25983,25984,26000,26005,26010,26012,26016,26018,26038,26051,26060,26110,26119,26146,26151,26195,26232,26233,26238,26296,26302,26349,26383,26510,26571,26612,26640,26641,26648,26665,26720,26739,26761,26769,26780,26825,26924,26931,26937,26941,26942,26944,26947,26956,26961,26966,26981,26985,26988,26993,26994,27005,27007,27012,27014,27017,27020,27021,27032,27038,27043,27046,27051,27055,27064,27076,27079,27080,27082,27093,27095,27096,27126,27130,27138,27166,27177,27186,27203,27216,27230,27237,27248,27251,27255,27256,27261,27295,27297,27300,27303,27321,27330,27348,27372,27384,27386,27401,27430,27445,27454,27459,27460,27509,27515,27516,27530,27534,27544,27548,27549,27553,27554,27559,27574,27580,27592,27595,27602,27604,27611,27644,27645,27651,27652,27653,27654,27658,27662,27669,27682,27684,27685,27688,27691,27692,27707,27709,27716,27719,27735,27772,27774,27777,27820,27825,27826,27827,27837,27843,27852,27875,27879,27890,27891,27892,27929,27930,27935,27937,27938,27948,27959,28000,28003,28010,28013,28014,28033,28038,28059,28065,28148,28153,28160,28161,28162,28172,28200,28204,28206,28235,28241,28249,28262,28263,28273,28290,28314,28316,28317,28336,28340,28351,28355,28360,28362,28365,28368,28373,28432,28494,28504,28528,28559,28562,28568,28569,28570,28571,28578,28598,28600,28640,28645,28646,28647,28653,28660,28663,28664,28667,28683,28696,28701,28702,28709,28711,28725,28726,28728,28737,28740,28742,28743,28746,28769,28800,28801,28803,28804,28827,28829,28843,28859,28887,28891,28892,28902,28917,28920,28927,28929,28931,28932,28939,28950,28964,28967,28969,28977,28998,29017,29034,29045,29057,29059,29095,29110,29124,29128,29130,29132,29157,29176,29194,29198,29209,29214,29221,29227,29228,29229,29232,29250,29259,29269,29270,29271,29272,29274,29278,29282,29285,29291,29303,29307,29313,29353,29355,29361,29362,29365,29368,29369,29370,29374,29381,29386,29408,29412,29417,29420,29447,29449,29460,29461,29465,29469,29471,29474,29475,29476,29483,29484,29493,29496,29497,29503,29504,29507,29513,29516,29528,29531,29533,29534,29554,29562,29567,29585,29597,29599,29602,29603,29609,29613,29626,29635,29636,29643,29647,29648,29652,29653,29659,29660,29665,29670,29671,29673,29680,29694,29696,29711,29712,29717,29718,29720,29722,29727,29735,29756,29757,29762,29765,29783,29789,29798,29824,29851,29862,29864,29865,29870,29872,29878,29886,29887,29891,29917,29918,29919,29922,29923,29925,29938,29943,29969,29974,29977,29988,29992,30011,30018,30039,30060,30066,30071,30103,30124,30126,30185,30211,30220,30226,30235,30245,30265,30266,30268,30271,30274,30287,30303,30353,30398,30400,30416,30417,30432,30470,30472,30475,30479,30484,30531,30533,30538,30547,30549,30566,30569,30646,30670,30675,30687,30704,30740,30785,30792,30814,30819,30821,30827,30830,30834,30878,30896,30915,30916,30920,30924,30950,30996,31005,31010,31012,31016,31017,31022,31034,31035,31038,31057,31061,31101]]],["any",[8,7,[[39,1,1,0,1,[[946,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]],[57,1,1,3,4,[[1136,1,1,3,4]]],[65,4,3,4,7,[[1173,2,2,4,6],[1175,2,1,6,7]]]],[23746,28804,29309,30026,30811,30826,30844]]],["as",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27070]]],["every",[102,95,[[39,11,10,0,10,[[931,1,1,0,1],[932,1,1,1,2],[935,1,1,2,3],[937,2,1,3,4],[940,2,2,4,6],[941,2,2,6,8],[946,1,1,8,9],[947,1,1,9,10]]],[40,2,2,10,12,[[965,1,1,10,11],[972,1,1,11,12]]],[41,6,6,12,18,[[975,2,2,12,14],[976,2,2,14,16],[977,1,1,16,17],[982,1,1,17,18]]],[42,2,2,18,20,[[997,1,1,18,19],[1011,1,1,19,20]]],[43,5,5,20,25,[[1019,2,2,20,22],[1020,1,1,22,23],[1027,1,1,23,24],[1032,1,1,24,25]]],[44,8,7,25,32,[[1047,1,1,25,26],[1048,3,3,26,29],[1058,1,1,29,30],[1059,3,2,30,32]]],[45,5,5,32,37,[[1062,1,1,32,33],[1065,1,1,33,34],[1072,2,2,34,36],[1076,1,1,36,37]]],[46,7,6,37,43,[[1079,1,1,37,38],[1081,1,1,38,39],[1085,1,1,39,40],[1086,1,1,40,41],[1087,2,1,41,42],[1090,1,1,42,43]]],[47,1,1,43,44,[[1095,1,1,43,44]]],[48,3,3,44,47,[[1097,1,1,44,45],[1100,2,2,45,47]]],[49,7,7,47,54,[[1103,3,3,47,50],[1104,3,3,50,53],[1106,1,1,53,54]]],[50,6,4,54,58,[[1107,6,4,54,58]]],[51,1,1,58,59,[[1111,1,1,58,59]]],[52,3,3,59,62,[[1117,1,1,59,60],[1118,2,2,60,62]]],[53,3,3,62,65,[[1120,1,1,62,63],[1122,1,1,63,64],[1123,1,1,64,65]]],[54,2,2,65,67,[[1126,1,1,65,66],[1128,1,1,66,67]]],[55,2,2,67,69,[[1129,1,1,67,68],[1131,1,1,68,69]]],[56,1,1,69,70,[[1132,1,1,69,70]]],[57,8,8,70,78,[[1134,1,1,70,71],[1135,1,1,71,72],[1137,1,1,72,73],[1140,1,1,73,74],[1141,1,1,74,75],[1144,2,2,75,77],[1145,1,1,77,78]]],[58,4,4,78,82,[[1146,2,2,78,80],[1148,2,2,80,82]]],[59,1,1,82,83,[[1152,1,1,82,83]]],[61,2,2,83,85,[[1162,2,2,83,85]]],[65,12,10,85,95,[[1167,1,1,85,86],[1171,2,2,86,88],[1172,3,2,88,90],[1180,1,1,90,91],[1182,2,2,91,93],[1184,3,2,93,95]]]],[23202,23213,23333,23414,23514,23525,23586,23591,23743,23765,24587,24888,25030,25034,25067,25100,25124,25364,26053,26701,26954,26992,27019,27294,27478,27971,27993,27995,28010,28267,28285,28291,28365,28450,28603,28605,28748,28838,28861,28939,28964,28976,29044,29165,29227,29286,29288,29364,29365,29379,29400,29401,29402,29463,29475,29480,29488,29493,29568,29678,29684,29695,29724,29751,29773,29848,29888,29908,29924,29944,29979,29999,30031,30095,30124,30213,30218,30262,30283,30285,30326,30335,30412,30604,30606,30704,30788,30792,30807,30808,30932,30957,30974,30995,31010]]],["man",[11,11,[[41,2,2,0,2,[[978,1,1,0,1],[988,1,1,1,2]]],[42,1,1,2,3,[[1002,1,1,2,3]]],[44,2,2,3,5,[[1047,1,1,3,4],[1057,1,1,4,5]]],[45,2,2,5,7,[[1069,1,1,5,6],[1070,1,1,6,7]]],[57,1,1,7,8,[[1134,1,1,7,8]]],[59,1,1,8,9,[[1153,1,1,8,9]]],[61,1,1,9,10,[[1161,1,1,9,10]]],[65,1,1,10,11,[[1188,1,1,10,11]]]],[25176,25636,26302,27972,28248,28534,28565,29986,30439,30582,31098]]],["manner",[12,9,[[39,5,3,0,3,[[932,2,1,0,1],[938,2,1,1,2],[940,1,1,2,3]]],[41,1,1,3,4,[[983,1,1,3,4]]],[43,1,1,4,5,[[1027,1,1,4,5]]],[44,1,1,5,6,[[1052,1,1,5,6]]],[59,1,1,6,7,[[1151,1,1,6,7]]],[65,3,2,7,9,[[1184,2,1,7,8],[1187,1,1,8,9]]]],[23232,23418,23520,25447,27271,28099,30389,31005,31072]]],["men",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25040]]],["no",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31015]]],["nothing",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27315]]],["one",[29,29,[[39,6,6,0,6,[[935,3,3,0,3],[941,1,1,3,4],[947,1,1,4,5],[953,1,1,5,6]]],[40,2,2,6,8,[[963,1,1,6,7],[965,1,1,7,8]]],[41,6,6,8,14,[[978,1,1,8,9],[981,1,1,9,10],[983,2,2,10,12],[990,1,1,12,13],[991,1,1,13,14]]],[42,4,4,14,18,[[999,2,2,14,16],[1002,1,1,16,17],[1014,1,1,17,18]]],[43,1,1,18,19,[[1045,1,1,18,19]]],[44,2,2,19,21,[[1046,1,1,19,20],[1055,1,1,20,21]]],[45,1,1,21,22,[[1077,1,1,21,22]]],[47,2,2,22,24,[[1093,2,2,22,24]]],[54,1,1,24,25,[[1126,1,1,24,25]]],[57,1,1,25,26,[[1137,1,1,25,26]]],[61,3,3,26,29,[[1160,1,1,26,27],[1162,1,1,27,28],[1163,1,1,28,29]]]],[23324,23337,23342,23558,23791,24037,24477,24587,25186,25344,25409,25415,25702,25757,26128,26140,26297,26822,27901,27946,28192,28792,29112,29115,29846,30043,30579,30610,30625]]],["one's",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27509]]],["points",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30029]]],["side",[2,2,[[46,2,2,0,2,[[1081,1,1,0,1],[1084,1,1,1,2]]]],[28867,28921]]],["these",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29525]]],["thing",[9,9,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]],[45,1,1,3,4,[[1062,1,1,3,4]]],[46,1,1,4,5,[[1086,1,1,4,5]]],[48,1,1,5,6,[[1101,1,1,5,6]]],[49,1,1,6,7,[[1106,1,1,6,7]]],[51,1,1,7,8,[[1115,1,1,7,8]]],[65,1,1,8,9,[[1187,1,1,8,9]]]],[23378,24481,27273,28368,28967,29328,29448,29639,31080]]],["things",[152,138,[[39,9,9,0,9,[[935,1,1,0,1],[939,1,1,1,2],[941,1,1,2,3],[945,1,1,3,4],[947,1,1,4,5],[949,1,1,5,6],[950,1,1,6,7],[951,1,1,7,8],[956,1,1,8,9]]],[40,10,10,9,19,[[960,2,2,9,11],[962,1,1,11,12],[963,1,1,12,13],[965,2,2,13,15],[966,1,1,15,16],[967,1,1,16,17],[969,1,1,17,18],[970,1,1,18,19]]],[41,8,8,19,27,[[973,1,1,19,20],[981,1,1,20,21],[982,1,1,21,22],[983,1,1,22,23],[986,1,1,23,24],[990,1,1,24,25],[993,1,1,25,26],[996,1,1,26,27]]],[42,16,16,27,43,[[997,1,1,27,28],[999,1,1,28,29],[1000,3,3,29,32],[1001,1,1,32,33],[1006,1,1,33,34],[1009,1,1,34,35],[1010,1,1,35,36],[1011,1,1,36,37],[1012,2,2,37,39],[1013,1,1,39,40],[1014,1,1,40,41],[1015,1,1,41,42],[1017,1,1,42,43]]],[43,11,11,43,54,[[1020,2,2,43,45],[1027,2,2,45,47],[1030,1,1,47,48],[1031,1,1,48,49],[1034,2,2,49,51],[1037,1,1,51,52],[1039,1,1,52,53],[1041,1,1,53,54]]],[44,4,4,54,58,[[1053,2,2,54,56],[1056,1,1,56,57],[1059,1,1,57,58]]],[45,27,17,58,75,[[1063,2,2,58,60],[1064,1,1,60,61],[1065,1,1,61,62],[1067,3,1,62,63],[1069,2,1,63,64],[1070,3,3,64,67],[1071,4,1,67,68],[1072,2,2,68,70],[1074,4,1,70,71],[1075,2,2,71,73],[1076,3,2,73,75]]],[46,8,8,75,83,[[1079,1,1,75,76],[1081,1,1,76,77],[1082,2,2,77,79],[1083,1,1,79,80],[1084,1,1,80,81],[1088,1,1,81,82],[1089,1,1,82,83]]],[47,1,1,83,84,[[1093,1,1,83,84]]],[48,8,8,84,92,[[1097,2,2,84,86],[1099,1,1,86,87],[1100,2,2,87,89],[1101,2,2,89,91],[1102,1,1,91,92]]],[49,6,5,92,97,[[1104,1,1,92,93],[1105,3,2,93,95],[1106,2,2,95,97]]],[50,8,6,97,103,[[1107,5,3,97,100],[1109,2,2,100,102],[1110,1,1,102,103]]],[51,1,1,103,104,[[1115,1,1,103,104]]],[53,4,4,104,108,[[1121,1,1,104,105],[1122,1,1,105,106],[1124,2,2,106,108]]],[54,3,3,108,111,[[1126,2,2,108,110],[1128,1,1,110,111]]],[55,3,3,111,114,[[1129,1,1,111,112],[1130,2,2,112,114]]],[57,11,10,114,124,[[1133,2,2,114,116],[1134,4,3,116,119],[1135,1,1,119,120],[1136,1,1,120,121],[1140,1,1,121,122],[1141,1,1,122,123],[1145,1,1,123,124]]],[58,1,1,124,125,[[1150,1,1,124,125]]],[59,3,3,125,128,[[1154,3,3,125,128]]],[60,2,2,128,130,[[1156,1,1,128,129],[1158,1,1,129,130]]],[61,3,3,130,133,[[1160,2,2,130,132],[1161,1,1,132,133]]],[63,1,1,133,134,[[1165,1,1,133,134]]],[65,4,4,134,138,[[1170,1,1,134,135],[1184,1,1,135,136],[1187,2,2,136,138]]]],[23328,23486,23580,23711,23788,23848,23876,23938,24215,24334,24357,24437,24500,24550,24561,24615,24651,24740,24790,24896,25344,25385,25446,25570,25719,25848,26035,26047,26155,26181,26185,26201,26230,26522,26633,26694,26714,26741,26756,26766,26789,26853,26915,27017,27018,27292,27298,27401,27429,27545,27547,27661,27714,27783,28144,28148,28245,28300,28404,28409,28431,28446,28479,28533,28552,28562,28565,28590,28602,28612,28672,28704,28718,28745,28746,28833,28874,28894,28895,28908,28930,28995,29041,29112,29216,29217,29260,29282,29287,29317,29324,29358,29405,29429,29442,29454,29455,29481,29482,29485,29537,29539,29551,29642,29742,29755,29801,29805,29834,29837,29875,29907,29915,29918,29965,29966,29985,29987,29994,29999,30027,30097,30127,30259,30366,30453,30454,30457,30482,30526,30570,30577,30599,30660,30779,31007,31058,31060]]],["whatsoever",[5,5,[[39,1,1,0,1,[[943,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]],[61,1,1,3,4,[[1163,1,1,3,4]]],[65,1,1,4,5,[[1184,1,1,4,5]]]],[23650,28594,29317,30628,31015]]],["where",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29454]]],["whole",[11,11,[[39,3,3,0,3,[[936,2,2,0,2],[941,1,1,2,3]]],[40,1,1,3,4,[[960,1,1,3,4]]],[41,3,3,4,7,[[973,1,1,4,5],[978,1,1,5,6],[993,1,1,6,7]]],[43,1,1,7,8,[[1023,1,1,7,8]]],[44,1,1,8,9,[[1053,1,1,8,9]]],[48,2,2,9,11,[[1099,1,1,9,10],[1100,1,1,10,11]]]],[23377,23379,23541,24324,24903,25165,25861,27106,28138,29266,29288]]],["whosoever",[18,18,[[39,2,2,0,2,[[933,2,2,0,2]]],[41,3,3,2,5,[[986,2,2,2,4],[988,1,1,4,5]]],[42,6,6,5,11,[[999,2,2,5,7],[1007,1,1,7,8],[1008,1,1,8,9],[1012,1,1,9,10],[1015,1,1,10,11]]],[43,1,1,11,12,[[1027,1,1,11,12]]],[44,2,2,12,14,[[1047,1,1,12,13],[1054,1,1,13,14]]],[61,3,3,14,17,[[1161,2,2,14,16],[1163,1,1,16,17]]],[65,1,1,17,18,[[1188,1,1,17,18]]]],[23256,23262,25564,25586,25638,26135,26136,26549,26626,26728,26837,27302,27963,28188,30585,30589,30642,31095]]]]},{"k":"G3957","v":[["*",[29,27,[[39,4,4,0,4,[[954,4,4,0,4]]],[40,5,4,4,8,[[970,5,4,4,8]]],[41,7,7,8,15,[[974,1,1,8,9],[994,6,6,9,15]]],[42,10,9,15,24,[[998,2,2,15,17],[1002,1,1,17,18],[1007,2,1,18,19],[1008,1,1,19,20],[1009,1,1,20,21],[1014,2,2,21,23],[1015,1,1,23,24]]],[43,1,1,24,25,[[1029,1,1,24,25]]],[45,1,1,25,26,[[1066,1,1,25,26]]],[57,1,1,26,27,[[1143,1,1,26,27]]]],[24056,24071,24072,24073,24755,24766,24768,24770,25014,25865,25871,25872,25875,25877,25879,26108,26118,26261,26578,26581,26631,26813,26824,26839,27341,28461,30200]]],["Easter",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27341]]],["Passover",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25865]]],["passover",[27,25,[[39,4,4,0,4,[[954,4,4,0,4]]],[40,5,4,4,8,[[970,5,4,4,8]]],[41,6,6,8,14,[[974,1,1,8,9],[994,5,5,9,14]]],[42,10,9,14,23,[[998,2,2,14,16],[1002,1,1,16,17],[1007,2,1,17,18],[1008,1,1,18,19],[1009,1,1,19,20],[1014,2,2,20,22],[1015,1,1,22,23]]],[45,1,1,23,24,[[1066,1,1,23,24]]],[57,1,1,24,25,[[1143,1,1,24,25]]]],[24056,24071,24072,24073,24755,24766,24768,24770,25014,25871,25872,25875,25877,25879,26108,26118,26261,26578,26581,26631,26813,26824,26839,28461,30200]]]]},{"k":"G3958","v":[["*",[42,41,[[39,4,4,0,4,[[944,1,1,0,1],[945,2,2,1,3],[955,1,1,3,4]]],[40,3,3,4,7,[[961,1,1,4,5],[964,1,1,5,6],[965,1,1,6,7]]],[41,6,6,7,13,[[981,1,1,7,8],[985,1,1,8,9],[989,1,1,9,10],[994,1,1,10,11],[996,2,2,11,13]]],[43,5,5,13,18,[[1018,1,1,13,14],[1020,1,1,14,15],[1026,1,1,15,16],[1034,1,1,16,17],[1045,1,1,17,18]]],[45,1,1,18,19,[[1073,1,1,18,19]]],[46,1,1,19,20,[[1078,1,1,19,20]]],[47,1,1,20,21,[[1093,1,1,20,21]]],[49,1,1,21,22,[[1103,1,1,21,22]]],[51,1,1,22,23,[[1112,1,1,22,23]]],[52,1,1,23,24,[[1116,1,1,23,24]]],[54,1,1,24,25,[[1125,1,1,24,25]]],[57,4,4,25,29,[[1134,1,1,25,26],[1137,1,1,26,27],[1141,1,1,27,28],[1145,1,1,28,29]]],[59,12,11,29,40,[[1152,4,4,29,33],[1153,3,3,33,36],[1154,4,3,36,39],[1155,1,1,39,40]]],[65,1,1,40,41,[[1168,1,1,40,41]]]],[23693,23712,23715,24148,24390,24531,24550,25323,25520,25676,25879,26017,26037,26926,27014,27232,27526,27904,28660,28806,29106,29390,29584,29654,29821,29995,30038,30131,30253,30418,30419,30420,30422,30438,30441,30442,30447,30461,30465,30475,30727]]],["felt",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27904]]],["passion",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26926]]],["suffer",[21,21,[[39,2,2,0,2,[[944,1,1,0,1],[945,1,1,1,2]]],[40,2,2,2,4,[[964,1,1,2,3],[965,1,1,3,4]]],[41,4,4,4,8,[[981,1,1,4,5],[989,1,1,5,6],[994,1,1,6,7],[996,1,1,7,8]]],[43,2,2,8,10,[[1020,1,1,8,9],[1026,1,1,9,10]]],[45,1,1,10,11,[[1073,1,1,10,11]]],[46,1,1,11,12,[[1078,1,1,11,12]]],[49,1,1,12,13,[[1103,1,1,12,13]]],[52,1,1,13,14,[[1116,1,1,13,14]]],[54,1,1,14,15,[[1125,1,1,14,15]]],[59,5,5,15,20,[[1152,1,1,15,16],[1153,2,2,16,18],[1154,2,2,18,20]]],[65,1,1,20,21,[[1168,1,1,20,21]]]],[23693,23712,24531,24550,25323,25676,25879,26037,27014,27232,28660,28806,29390,29654,29821,30419,30438,30441,30461,30465,30727]]],["suffered",[17,16,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,2,2,2,4,[[985,1,1,2,3],[996,1,1,3,4]]],[43,1,1,4,5,[[1034,1,1,4,5]]],[47,1,1,5,6,[[1093,1,1,5,6]]],[51,1,1,6,7,[[1112,1,1,6,7]]],[57,4,4,7,11,[[1134,1,1,7,8],[1137,1,1,8,9],[1141,1,1,9,10],[1145,1,1,10,11]]],[59,6,5,11,16,[[1152,2,2,11,13],[1153,1,1,13,14],[1154,2,1,14,15],[1155,1,1,15,16]]]],[24148,24390,25520,26017,27526,29106,29584,29995,30038,30131,30253,30420,30422,30442,30447,30475]]],["suffering",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30418]]],["vexed",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23715]]]]},{"k":"G3959","v":[["Patara",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27665]]]]},{"k":"G3960","v":[["*",[10,10,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,2,2,3,5,[[994,2,2,3,5]]],[43,3,3,5,8,[[1024,1,1,5,6],[1029,2,2,6,8]]],[65,2,2,8,10,[[1177,1,1,8,9],[1185,1,1,9,10]]]],[24085,24105,24781,25913,25914,27140,27344,27360,30878,31032]]],["smite",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[65,2,2,3,5,[[1177,1,1,3,4],[1185,1,1,4,5]]]],[24085,24781,25913,30878,31032]]],["smote",[4,4,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,3,3,1,4,[[1024,1,1,1,2],[1029,2,2,2,4]]]],[25914,27140,27344,27360]]],["struck",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24105]]]]},{"k":"G3961","v":[["*",[5,5,[[41,2,2,0,2,[[982,1,1,0,1],[993,1,1,1,2]]],[65,3,3,2,5,[[1177,1,1,2,3],[1180,1,1,3,4],[1185,1,1,4,5]]]],[25382,25850,30874,30946,31032]]],["down",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25850]]],["foot",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30874]]],["tread",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25382]]],["treadeth",[1,1,[[65,1,1,0,1,[[1185,1,1,0,1]]]],[31032]]],["trodden",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30946]]]]},{"k":"G3962","v":[["*",[419,372,[[39,63,57,0,57,[[930,1,1,0,1],[931,1,1,1,2],[932,2,2,2,4],[933,3,3,4,7],[934,12,10,7,17],[935,2,2,17,19],[936,1,1,19,20],[938,7,7,20,27],[939,5,3,27,30],[940,1,1,30,31],[941,1,1,31,32],[943,5,4,32,36],[944,2,2,36,38],[946,4,4,38,42],[947,3,3,42,45],[948,1,1,45,46],[949,1,1,46,47],[951,4,3,47,50],[952,1,1,50,51],[953,1,1,51,52],[954,4,4,52,56],[956,1,1,56,57]]],[40,19,18,57,75,[[957,1,1,57,58],[961,1,1,58,59],[963,4,3,59,62],[964,1,1,62,63],[965,2,2,63,65],[966,3,3,65,68],[967,3,3,68,71],[969,2,2,71,73],[970,1,1,73,74],[971,1,1,74,75]]],[41,55,47,75,122,[[973,8,8,75,83],[974,2,2,83,85],[975,1,1,85,86],[978,3,3,86,89],[980,1,1,89,90],[981,3,3,90,93],[982,5,2,93,95],[983,5,5,95,100],[984,4,3,100,103],[986,1,1,103,104],[987,12,9,104,113],[988,4,3,113,116],[990,1,1,116,117],[994,2,2,117,119],[995,2,2,119,121],[996,1,1,121,122]]],[42,138,115,122,237,[[997,2,2,122,124],[998,1,1,124,125],[999,1,1,125,126],[1000,6,5,126,131],[1001,15,13,131,144],[1002,15,13,144,157],[1003,1,1,157,158],[1004,21,15,158,173],[1006,12,10,173,183],[1007,1,1,183,184],[1008,5,5,184,189],[1009,2,2,189,191],[1010,23,17,191,208],[1011,10,9,208,217],[1012,12,11,217,228],[1013,6,6,228,234],[1014,1,1,234,235],[1016,4,2,235,237]]],[43,35,33,237,270,[[1018,2,2,237,239],[1019,1,1,239,240],[1020,3,3,240,243],[1022,1,1,243,244],[1024,17,15,244,259],[1030,3,3,259,262],[1032,1,1,262,263],[1033,2,2,263,265],[1039,2,2,265,267],[1043,1,1,267,268],[1045,2,2,268,270]]],[44,15,14,270,284,[[1046,1,1,270,271],[1049,7,6,271,277],[1051,1,1,277,278],[1053,1,1,278,279],[1054,2,2,279,281],[1056,1,1,281,282],[1060,2,2,282,284]]],[45,6,6,284,290,[[1062,1,1,284,285],[1065,1,1,285,286],[1066,1,1,286,287],[1069,1,1,287,288],[1071,1,1,288,289],[1076,1,1,289,290]]],[46,5,4,290,294,[[1078,3,2,290,292],[1083,1,1,292,293],[1088,1,1,293,294]]],[47,5,5,294,299,[[1091,3,3,294,297],[1094,2,2,297,299]]],[48,11,11,299,310,[[1097,3,3,299,302],[1098,1,1,302,303],[1099,1,1,303,304],[1100,1,1,304,305],[1101,2,2,305,307],[1102,3,3,307,310]]],[49,4,4,310,314,[[1103,1,1,310,311],[1104,2,2,311,313],[1106,1,1,313,314]]],[50,6,6,314,320,[[1107,3,3,314,317],[1108,1,1,317,318],[1109,2,2,318,320]]],[51,6,5,320,325,[[1111,3,2,320,322],[1112,1,1,322,323],[1113,2,2,323,325]]],[52,3,3,325,328,[[1116,2,2,325,327],[1117,1,1,327,328]]],[53,2,2,328,330,[[1119,1,1,328,329],[1123,1,1,329,330]]],[54,1,1,330,331,[[1125,1,1,330,331]]],[55,1,1,331,332,[[1129,1,1,331,332]]],[56,1,1,332,333,[[1132,1,1,332,333]]],[57,9,8,333,341,[[1133,2,2,333,335],[1135,1,1,335,336],[1139,1,1,336,337],[1140,1,1,337,338],[1143,1,1,338,339],[1144,3,2,339,341]]],[58,4,4,341,345,[[1146,2,2,341,343],[1147,1,1,343,344],[1148,1,1,344,345]]],[59,3,3,345,348,[[1151,3,3,345,348]]],[60,2,2,348,350,[[1156,1,1,348,349],[1158,1,1,349,350]]],[61,15,13,350,363,[[1159,2,2,350,352],[1160,10,8,352,360],[1161,1,1,360,361],[1162,1,1,361,362],[1163,1,1,362,363]]],[62,4,3,363,366,[[1164,4,3,363,366]]],[64,1,1,366,367,[[1166,1,1,366,367]]],[65,5,5,367,372,[[1167,1,1,367,368],[1168,1,1,368,369],[1169,2,2,369,371],[1180,1,1,371,372]]]],[23191,23201,23230,23231,23250,23279,23282,23283,23286,23288,23290,23291,23296,23297,23300,23308,23314,23327,23337,23366,23437,23438,23446,23449,23450,23452,23454,23484,23485,23486,23539,23582,23637,23638,23639,23646,23689,23699,23737,23741,23746,23762,23767,23781,23791,23815,23857,23927,23948,23950,23993,24042,24083,24093,24096,24107,24214,24235,24404,24473,24474,24475,24538,24559,24562,24595,24607,24617,24650,24665,24666,24729,24749,24790,24847,24910,24925,24948,24952,24955,24960,24965,24966,25021,25022,25033,25169,25172,25182,25296,25327,25343,25360,25384,25385,25407,25416,25418,25452,25453,25489,25491,25512,25579,25600,25605,25606,25608,25609,25610,25615,25616,25617,25644,25647,25650,25708,25893,25906,25969,25981,26040,26058,26062,26111,26155,26168,26176,26177,26179,26209,26227,26228,26229,26230,26231,26232,26233,26236,26240,26246,26247,26253,26255,26284,26288,26289,26294,26296,26299,26301,26302,26303,26306,26314,26315,26322,26350,26397,26399,26400,26408,26409,26410,26419,26420,26422,26423,26425,26430,26434,26435,26437,26496,26498,26499,26506,26510,26511,26513,26517,26518,26519,26564,26606,26607,26608,26629,26630,26631,26633,26670,26674,26675,26676,26677,26678,26679,26680,26681,26684,26688,26689,26691,26692,26694,26696,26699,26700,26707,26708,26709,26714,26715,26722,26723,26725,26729,26736,26741,26742,26743,26749,26751,26752,26753,26754,26758,26760,26764,26770,26780,26783,26784,26796,26884,26888,26927,26930,26982,27009,27018,27021,27089,27118,27120,27127,27128,27130,27131,27135,27136,27148,27154,27155,27160,27161,27167,27168,27379,27394,27398,27452,27484,27486,27705,27718,27829,27907,27924,27937,28023,28033,28034,28038,28039,28040,28072,28131,28160,28165,28237,28309,28311,28366,28448,28455,28533,28568,28742,28802,28803,28916,29020,29058,29060,29061,29133,29137,29208,29209,29223,29247,29265,29278,29324,29335,29339,29341,29360,29363,29402,29413,29462,29467,29468,29477,29496,29534,29538,29561,29563,29581,29601,29603,29650,29651,29677,29698,29764,29811,29896,29941,29964,29968,30004,30074,30101,30195,30219,30221,30283,30293,30314,30328,30376,30377,30391,30496,30526,30542,30543,30551,30563,30564,30565,30566,30572,30573,30574,30580,30617,30631,30648,30649,30654,30673,30703,30744,30751,30767,30927]]],["+",[6,6,[[41,3,3,0,3,[[974,1,1,0,1],[984,1,1,1,2],[987,1,1,2,3]]],[42,2,2,3,5,[[1000,1,1,3,4],[1013,1,1,4,5]]],[44,1,1,5,6,[[1056,1,1,5,6]]]],[25022,25491,25616,26179,26784,28237]]],["Father",[255,227,[[39,43,39,0,39,[[933,3,3,0,3],[934,12,10,3,13],[935,2,2,13,15],[938,4,4,15,19],[939,5,3,19,22],[940,1,1,22,23],[941,1,1,23,24],[943,1,1,24,25],[944,2,2,25,27],[946,4,4,27,31],[948,1,1,31,32],[951,1,1,32,33],[952,1,1,33,34],[953,1,1,34,35],[954,3,3,35,38],[956,1,1,38,39]]],[40,5,5,39,44,[[964,1,1,39,40],[967,2,2,40,42],[969,1,1,42,43],[970,1,1,43,44]]],[41,18,15,44,59,[[978,1,1,44,45],[982,5,2,45,47],[983,2,2,47,49],[984,1,1,49,50],[987,3,3,50,53],[988,1,1,53,54],[994,2,2,54,56],[995,2,2,56,58],[996,1,1,58,59]]],[42,111,94,59,153,[[997,2,2,59,61],[999,1,1,61,62],[1000,2,2,62,64],[1001,14,12,64,76],[1002,10,8,76,84],[1004,13,11,84,95],[1006,10,9,95,104],[1007,1,1,104,105],[1008,5,5,105,110],[1009,2,2,110,112],[1010,21,15,112,127],[1011,8,7,127,134],[1012,12,11,134,145],[1013,5,5,145,150],[1014,1,1,150,151],[1016,4,2,151,153]]],[43,3,3,153,156,[[1018,2,2,153,155],[1019,1,1,155,156]]],[44,4,4,156,160,[[1046,1,1,156,157],[1051,1,1,157,158],[1053,1,1,158,159],[1060,1,1,159,160]]],[45,3,3,160,163,[[1062,1,1,160,161],[1069,1,1,161,162],[1076,1,1,162,163]]],[46,5,4,163,167,[[1078,3,2,163,165],[1083,1,1,165,166],[1088,1,1,166,167]]],[47,4,4,167,171,[[1091,3,3,167,170],[1094,1,1,170,171]]],[48,8,8,171,179,[[1097,3,3,171,174],[1098,1,1,174,175],[1099,1,1,175,176],[1100,1,1,176,177],[1101,1,1,177,178],[1102,1,1,178,179]]],[49,3,3,179,182,[[1103,1,1,179,180],[1104,1,1,180,181],[1106,1,1,181,182]]],[50,5,5,182,187,[[1107,3,3,182,185],[1108,1,1,185,186],[1109,1,1,186,187]]],[51,5,4,187,191,[[1111,3,2,187,189],[1113,2,2,189,191]]],[52,3,3,191,194,[[1116,2,2,191,193],[1117,1,1,193,194]]],[53,1,1,194,195,[[1119,1,1,194,195]]],[54,1,1,195,196,[[1125,1,1,195,196]]],[55,1,1,196,197,[[1129,1,1,196,197]]],[56,1,1,197,198,[[1132,1,1,197,198]]],[57,2,2,198,200,[[1133,1,1,198,199],[1144,1,1,199,200]]],[58,3,3,200,203,[[1146,2,2,200,202],[1148,1,1,202,203]]],[59,3,3,203,206,[[1151,3,3,203,206]]],[60,1,1,206,207,[[1156,1,1,206,207]]],[61,13,12,207,219,[[1159,2,2,207,209],[1160,8,7,209,216],[1161,1,1,216,217],[1162,1,1,217,218],[1163,1,1,218,219]]],[62,4,3,219,222,[[1164,4,3,219,222]]],[64,1,1,222,223,[[1166,1,1,222,223]]],[65,4,4,223,227,[[1167,1,1,223,224],[1168,1,1,224,225],[1169,2,2,225,227]]]],[23250,23279,23282,23283,23286,23288,23290,23291,23296,23297,23300,23308,23314,23327,23337,23437,23446,23449,23450,23484,23485,23486,23539,23582,23646,23689,23699,23737,23741,23746,23762,23815,23927,23993,24042,24093,24096,24107,24214,24538,24665,24666,24749,24790,25182,25384,25385,25407,25418,25489,25600,25606,25609,25644,25893,25906,25969,25981,26040,26058,26062,26155,26177,26179,26227,26228,26229,26230,26231,26232,26233,26236,26240,26246,26247,26255,26284,26289,26294,26301,26302,26303,26314,26322,26397,26399,26400,26408,26409,26410,26419,26422,26423,26430,26435,26496,26498,26499,26510,26511,26513,26517,26518,26519,26564,26606,26607,26608,26629,26630,26631,26633,26674,26675,26676,26677,26678,26679,26680,26681,26684,26688,26689,26691,26694,26696,26699,26700,26707,26714,26715,26722,26723,26725,26729,26736,26741,26742,26743,26749,26751,26752,26753,26754,26758,26760,26764,26770,26780,26783,26796,26884,26888,26927,26930,26982,27937,28072,28131,28309,28366,28533,28742,28802,28803,28916,29020,29058,29060,29061,29137,29208,29209,29223,29247,29265,29278,29324,29360,29363,29402,29462,29467,29468,29477,29496,29534,29561,29563,29601,29603,29650,29651,29677,29698,29811,29896,29941,29968,30221,30283,30293,30328,30376,30377,30391,30496,30542,30543,30551,30563,30565,30566,30572,30573,30574,30580,30617,30631,30648,30649,30654,30673,30703,30744,30751,30767]]],["Father's",[11,11,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[42,8,8,2,10,[[998,1,1,2,3],[1001,1,1,3,4],[1002,1,1,4,5],[1006,2,2,5,7],[1010,2,2,7,9],[1011,1,1,9,10]]],[65,1,1,10,11,[[1180,1,1,10,11]]]],[24083,25327,26111,26253,26296,26506,26510,26670,26692,26709,30927]]],["Fathers",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29538]]],["They",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23857]]],["father",[88,81,[[39,16,15,0,15,[[930,1,1,0,1],[931,1,1,1,2],[932,2,2,2,4],[936,1,1,4,5],[938,3,3,5,8],[943,4,3,8,11],[947,3,3,11,14],[951,1,1,14,15]]],[40,14,13,15,28,[[957,1,1,15,16],[961,1,1,16,17],[963,4,3,17,20],[965,2,2,20,22],[966,3,3,22,25],[967,1,1,25,26],[969,1,1,26,27],[971,1,1,27,28]]],[41,24,22,28,50,[[973,5,5,28,33],[974,1,1,33,34],[975,1,1,34,35],[980,1,1,35,36],[981,2,2,36,38],[983,1,1,38,39],[984,2,1,39,40],[986,1,1,40,41],[987,7,6,41,47],[988,2,2,47,49],[990,1,1,49,50]]],[42,11,9,50,59,[[1000,2,2,50,52],[1002,1,1,52,53],[1004,8,6,53,59]]],[43,6,6,59,65,[[1024,3,3,59,62],[1033,2,2,62,64],[1045,1,1,64,65]]],[44,8,7,65,72,[[1049,7,6,65,71],[1054,1,1,71,72]]],[47,1,1,72,73,[[1094,1,1,72,73]]],[48,2,2,73,75,[[1101,1,1,73,74],[1102,1,1,74,75]]],[49,1,1,75,76,[[1104,1,1,75,76]]],[51,1,1,76,77,[[1112,1,1,76,77]]],[53,1,1,77,78,[[1123,1,1,77,78]]],[57,2,2,78,80,[[1139,1,1,78,79],[1144,1,1,79,80]]],[58,1,1,80,81,[[1147,1,1,80,81]]]],[23191,23201,23230,23231,23366,23438,23452,23454,23637,23638,23639,23767,23781,23791,23927,24235,24404,24473,24474,24475,24559,24562,24595,24607,24617,24650,24729,24847,24925,24952,24955,24960,24966,25021,25033,25296,25343,25360,25416,25512,25579,25600,25606,25608,25610,25615,25617,25647,25650,25708,26168,26209,26299,26419,26420,26422,26425,26434,26437,27118,27120,27130,27484,27486,27907,28023,28033,28034,28038,28039,28040,28165,29133,29335,29339,29413,29581,29764,30074,30219,30314]]],["father's",[4,4,[[41,2,2,0,2,[[987,1,1,0,1],[988,1,1,1,2]]],[43,1,1,2,3,[[1024,1,1,2,3]]],[45,1,1,3,4,[[1066,1,1,3,4]]]],[25605,25647,27136,28455]]],["fathers",[51,50,[[39,2,2,0,2,[[951,2,2,0,2]]],[41,7,7,2,9,[[973,3,3,2,5],[978,2,2,5,7],[983,2,2,7,9]]],[42,5,5,9,14,[[1000,1,1,9,10],[1002,3,3,10,13],[1003,1,1,13,14]]],[43,25,24,14,38,[[1020,3,3,14,17],[1022,1,1,17,18],[1024,13,12,18,30],[1030,3,3,30,33],[1032,1,1,33,34],[1039,2,2,34,36],[1043,1,1,36,37],[1045,1,1,37,38]]],[44,2,2,38,40,[[1054,1,1,38,39],[1060,1,1,39,40]]],[45,2,2,40,42,[[1065,1,1,40,41],[1071,1,1,41,42]]],[48,1,1,42,43,[[1102,1,1,42,43]]],[57,4,4,43,47,[[1133,1,1,43,44],[1135,1,1,44,45],[1140,1,1,45,46],[1144,1,1,46,47]]],[60,1,1,47,48,[[1158,1,1,47,48]]],[61,2,2,48,50,[[1160,2,2,48,50]]]],[23948,23950,24910,24948,24965,25169,25172,25452,25453,26176,26288,26306,26315,26350,27009,27018,27021,27089,27118,27127,27128,27131,27135,27148,27154,27155,27160,27161,27167,27168,27379,27394,27398,27452,27705,27718,27829,27924,28160,28311,28448,28568,29341,29964,30004,30101,30221,30526,30563,30564]]],["hath",[1,1,[[42,1,1,0,1,[[1011,1,1,0,1]]]],[26708]]],["parents",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30195]]]]},{"k":"G3963","v":[["Patmos",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30706]]]]},{"k":"G3964","v":[["fathers",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29705]]]]},{"k":"G3965","v":[["*",[3,3,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1020,1,1,1,2]]],[48,1,1,2,3,[[1099,1,1,2,3]]]],[24977,27021,29266]]],["family",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29266]]],["kindreds",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27021]]],["lineage",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24977]]]]},{"k":"G3966","v":[["*",[4,4,[[43,3,3,0,3,[[1019,1,1,0,1],[1024,2,2,1,3]]],[57,1,1,3,4,[[1139,1,1,3,4]]]],[26978,27124,27125,30068]]],["patriarch",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[26978,30068]]],["patriarchs",[2,2,[[43,2,2,0,2,[[1024,2,2,0,2]]]],[27124,27125]]]]},{"k":"G3967","v":[["fathers",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29071]]]]},{"k":"G3968","v":[["country",[8,8,[[39,2,2,0,2,[[941,2,2,0,2]]],[40,2,2,2,4,[[962,2,2,2,4]]],[41,2,2,4,6,[[976,2,2,4,6]]],[42,1,1,6,7,[[1000,1,1,6,7]]],[57,1,1,7,8,[[1143,1,1,7,8]]]],[23593,23596,24408,24411,25086,25087,26200,30186]]]]},{"k":"G3969","v":[["Patrobas",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28350]]]]},{"k":"G3970","v":[["fathers",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30392]]]]},{"k":"G3971","v":[["fathers",[3,3,[[43,3,3,0,3,[[1039,1,1,0,1],[1041,1,1,1,2],[1045,1,1,2,3]]]],[27707,27783,27916]]]]},{"k":"G3972","v":[["*",[163,159,[[43,133,130,0,130,[[1030,8,8,0,8],[1031,5,5,8,13],[1032,9,8,13,21],[1033,11,11,21,32],[1034,9,9,32,41],[1035,6,6,41,47],[1036,10,10,47,57],[1037,7,7,57,64],[1038,12,12,64,76],[1039,3,3,76,79],[1040,16,15,79,94],[1041,6,6,94,100],[1042,10,10,100,110],[1043,5,4,110,114],[1044,9,9,114,123],[1045,7,7,123,130]]],[44,1,1,130,131,[[1046,1,1,130,131]]],[45,8,7,131,138,[[1062,4,3,131,134],[1064,3,3,134,137],[1077,1,1,137,138]]],[46,2,2,138,140,[[1078,1,1,138,139],[1087,1,1,139,140]]],[47,2,2,140,142,[[1091,1,1,140,141],[1095,1,1,141,142]]],[48,2,2,142,144,[[1097,1,1,142,143],[1099,1,1,143,144]]],[49,1,1,144,145,[[1103,1,1,144,145]]],[50,3,3,145,148,[[1107,2,2,145,147],[1110,1,1,147,148]]],[51,2,2,148,150,[[1111,1,1,148,149],[1112,1,1,149,150]]],[52,2,2,150,152,[[1116,1,1,150,151],[1118,1,1,151,152]]],[53,1,1,152,153,[[1119,1,1,152,153]]],[54,1,1,153,154,[[1125,1,1,153,154]]],[55,1,1,154,155,[[1129,1,1,154,155]]],[56,3,3,155,158,[[1132,3,3,155,158]]],[60,1,1,158,159,[[1158,1,1,158,159]]]],[27369,27371,27375,27378,27405,27407,27408,27412,27423,27425,27426,27428,27433,27444,27454,27464,27467,27477,27478,27480,27482,27486,27492,27497,27500,27501,27502,27508,27511,27512,27519,27520,27525,27527,27533,27536,27537,27538,27539,27545,27556,27558,27562,27566,27569,27571,27575,27586,27589,27591,27596,27598,27600,27606,27611,27614,27615,27627,27633,27635,27636,27639,27642,27663,27668,27672,27675,27677,27682,27690,27693,27694,27696,27701,27703,27704,27729,27732,27734,27735,27737,27739,27740,27744,27745,27746,27748,27750,27751,27752,27754,27758,27765,27767,27770,27779,27792,27793,27795,27796,27798,27800,27802,27803,27805,27806,27810,27815,27817,27819,27824,27847,27851,27852,27856,27858,27864,27866,27876,27879,27886,27888,27898,27902,27907,27914,27915,27916,27924,27929,27931,28364,28375,28376,28414,28415,28432,28797,28801,28972,29058,29164,29207,29252,29362,29466,29488,29560,29561,29588,29650,29695,29697,29810,29893,29939,29947,29957,30537]]],["+",[4,4,[[43,3,3,0,3,[[1038,1,1,0,1],[1039,1,1,1,2],[1040,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]]],[27672,27734,27758,29588]]],["Paul",[153,150,[[43,124,122,0,122,[[1030,7,7,0,7],[1031,5,5,7,12],[1032,9,8,12,20],[1033,11,11,20,31],[1034,9,9,31,40],[1035,6,6,40,46],[1036,9,9,46,55],[1037,6,6,55,61],[1038,10,10,61,71],[1039,2,2,71,73],[1040,14,14,73,87],[1041,6,6,87,93],[1042,9,9,93,102],[1043,5,4,102,106],[1044,9,9,106,115],[1045,7,7,115,122]]],[44,1,1,122,123,[[1046,1,1,122,123]]],[45,8,7,123,130,[[1062,4,3,123,126],[1064,3,3,126,129],[1077,1,1,129,130]]],[46,2,2,130,132,[[1078,1,1,130,131],[1087,1,1,131,132]]],[47,2,2,132,134,[[1091,1,1,132,133],[1095,1,1,133,134]]],[48,2,2,134,136,[[1097,1,1,134,135],[1099,1,1,135,136]]],[49,1,1,136,137,[[1103,1,1,136,137]]],[50,3,3,137,140,[[1107,2,2,137,139],[1110,1,1,139,140]]],[51,1,1,140,141,[[1111,1,1,140,141]]],[52,2,2,141,143,[[1116,1,1,141,142],[1118,1,1,142,143]]],[53,1,1,143,144,[[1119,1,1,143,144]]],[54,1,1,144,145,[[1125,1,1,144,145]]],[55,1,1,145,146,[[1129,1,1,145,146]]],[56,3,3,146,149,[[1132,3,3,146,149]]],[60,1,1,149,150,[[1158,1,1,149,150]]]],[27371,27375,27378,27405,27407,27408,27412,27423,27425,27426,27428,27433,27444,27454,27464,27467,27477,27478,27480,27482,27486,27492,27497,27500,27501,27502,27508,27511,27512,27519,27520,27525,27527,27533,27536,27537,27538,27539,27545,27556,27558,27562,27566,27569,27571,27575,27586,27589,27591,27596,27598,27600,27606,27611,27615,27627,27633,27635,27636,27639,27642,27668,27677,27682,27690,27693,27694,27696,27701,27703,27704,27729,27732,27735,27737,27739,27740,27744,27745,27746,27748,27750,27751,27752,27754,27765,27767,27770,27779,27792,27793,27795,27796,27798,27800,27802,27803,27805,27806,27815,27817,27819,27824,27847,27851,27852,27856,27858,27864,27866,27876,27879,27886,27888,27898,27902,27907,27914,27915,27916,27924,27929,27931,28364,28375,28376,28414,28415,28432,28797,28801,28972,29058,29164,29207,29252,29362,29466,29488,29560,29561,29650,29695,29697,29810,29893,29939,29947,29957,30537]]],["Paul's",[5,5,[[43,5,5,0,5,[[1036,1,1,0,1],[1037,1,1,1,2],[1038,1,1,2,3],[1040,1,1,3,4],[1042,1,1,4,5]]]],[27614,27663,27675,27750,27810]]],["Paulus",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27369]]]]},{"k":"G3973","v":[["*",[15,15,[[41,3,3,0,3,[[977,1,1,0,1],[980,1,1,1,2],[983,1,1,2,3]]],[43,6,6,3,9,[[1022,1,1,3,4],[1023,1,1,4,5],[1030,1,1,5,6],[1037,2,2,6,8],[1038,1,1,8,9]]],[45,1,1,9,10,[[1074,1,1,9,10]]],[48,1,1,10,11,[[1097,1,1,10,11]]],[50,1,1,11,12,[[1107,1,1,11,12]]],[57,1,1,12,13,[[1142,1,1,12,13]]],[59,2,2,13,15,[[1153,1,1,13,14],[1154,1,1,14,15]]]],[25111,25269,25406,27101,27114,27372,27627,27657,27696,28673,29222,29474,30135,30434,30447]]],["+",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30135]]],["Cease",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29222]]],["cease",[3,3,[[43,1,1,0,1,[[1030,1,1,0,1]]],[45,1,1,1,2,[[1074,1,1,1,2]]],[50,1,1,2,3,[[1107,1,1,2,3]]]],[27372,28673,29474]]],["ceased",[6,6,[[41,2,2,0,2,[[980,1,1,0,1],[983,1,1,1,2]]],[43,3,3,2,5,[[1022,1,1,2,3],[1037,2,2,3,5]]],[59,1,1,5,6,[[1154,1,1,5,6]]]],[25269,25406,27101,27627,27657,30447]]],["ceaseth",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27114]]],["left",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[25111,27696]]],["refrain",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30434]]]]},{"k":"G3974","v":[["Paphos",[2,2,[[43,2,2,0,2,[[1030,2,2,0,2]]]],[27368,27375]]]]},{"k":"G3975","v":[["gross",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]]],[23554,27926]]]]},{"k":"G3976","v":[["fetters",[3,2,[[40,2,1,0,1,[[961,2,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24368,25274]]]]},{"k":"G3977","v":[["+",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25163]]]]},{"k":"G3978","v":[["afoot",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27639]]]]},{"k":"G3979","v":[["*",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]]],[23610,24440]]],["afoot",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24440]]],["foot",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23610]]]]},{"k":"G3980","v":[["*",[4,4,[[43,3,3,0,3,[[1022,2,2,0,2],[1044,1,1,2,3]]],[55,1,1,3,4,[[1131,1,1,3,4]]]],[27088,27091,27876,29924]]],["hearkened",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27876]]],["magistrates",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29924]]],["obey",[2,2,[[43,2,2,0,2,[[1022,2,2,0,2]]]],[27088,27091]]]]},{"k":"G3981","v":[["enticing",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28398]]]]},{"k":"G3982","v":[["*",[55,55,[[39,3,3,0,3,[[955,2,2,0,2],[956,1,1,2,3]]],[40,1,1,3,4,[[966,1,1,3,4]]],[41,4,4,4,8,[[983,1,1,4,5],[988,1,1,5,6],[990,1,1,6,7],[992,1,1,7,8]]],[43,17,17,8,25,[[1022,3,3,8,11],[1029,1,1,11,12],[1030,1,1,12,13],[1031,1,1,13,14],[1034,1,1,14,15],[1035,1,1,15,16],[1036,2,2,16,18],[1038,1,1,18,19],[1040,1,1,19,20],[1043,2,2,20,22],[1044,1,1,22,23],[1045,2,2,23,25]]],[44,5,5,25,30,[[1047,2,2,25,27],[1053,1,1,27,28],[1059,1,1,28,29],[1060,1,1,29,30]]],[46,4,4,30,34,[[1078,1,1,30,31],[1079,1,1,31,32],[1082,1,1,32,33],[1087,1,1,33,34]]],[47,4,4,34,38,[[1091,1,1,34,35],[1093,1,1,35,36],[1095,2,2,36,38]]],[49,6,6,38,44,[[1103,3,3,38,41],[1104,1,1,41,42],[1105,2,2,42,44]]],[52,1,1,44,45,[[1118,1,1,44,45]]],[54,2,2,45,47,[[1125,2,2,45,47]]],[56,1,1,47,48,[[1132,1,1,47,48]]],[57,5,5,48,53,[[1134,1,1,48,49],[1138,1,1,49,50],[1143,1,1,50,51],[1145,2,2,51,53]]],[58,1,1,53,54,[[1148,1,1,53,54]]],[61,1,1,54,55,[[1161,1,1,54,55]]]],[24149,24172,24209,24612,25427,25651,25697,25785,27095,27096,27099,27357,27405,27433,27527,27561,27593,27611,27678,27755,27849,27851,27866,27922,27923,27970,27981,28154,28294,28317,28809,28827,28888,28978,29067,29103,29169,29172,29367,29375,29386,29415,29424,29425,29682,29814,29821,29959,29990,30053,30185,30258,30259,30322,30598]]],["+",[4,4,[[43,1,1,0,1,[[1029,1,1,0,1]]],[49,2,2,1,3,[[1103,1,1,1,2],[1105,1,1,2,3]]],[57,1,1,3,4,[[1134,1,1,3,4]]]],[27357,29386,29424,29990]]],["Obey",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30258]]],["agreed",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27099]]],["assure",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30598]]],["believed",[3,3,[[43,3,3,0,3,[[1034,1,1,0,1],[1044,1,1,1,2],[1045,1,1,2,3]]]],[27527,27866,27923]]],["confidence",[4,4,[[46,1,1,0,1,[[1079,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[52,1,1,2,3,[[1118,1,1,2,3]]],[56,1,1,3,4,[[1132,1,1,3,4]]]],[28827,29172,29682,29959]]],["confident",[3,3,[[44,1,1,0,1,[[1047,1,1,0,1]]],[49,2,2,1,3,[[1103,2,2,1,3]]]],[27981,29367,29375]]],["obey",[4,4,[[44,1,1,0,1,[[1047,1,1,0,1]]],[47,2,2,1,3,[[1093,1,1,1,2],[1095,1,1,2,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]]],[27970,29103,29169,30322]]],["obeyed",[2,2,[[43,2,2,0,2,[[1022,2,2,0,2]]]],[27095,27096]]],["persuade",[3,3,[[39,1,1,0,1,[[956,1,1,0,1]]],[46,1,1,1,2,[[1082,1,1,1,2]]],[47,1,1,2,3,[[1091,1,1,2,3]]]],[24209,28888,29067]]],["persuaded",[16,16,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,2,2,1,3,[[988,1,1,1,2],[992,1,1,2,3]]],[43,6,6,3,9,[[1030,1,1,3,4],[1031,1,1,4,5],[1035,1,1,5,6],[1036,1,1,6,7],[1038,1,1,7,8],[1043,1,1,8,9]]],[44,3,3,9,12,[[1053,1,1,9,10],[1059,1,1,10,11],[1060,1,1,11,12]]],[54,2,2,12,14,[[1125,2,2,12,14]]],[57,2,2,14,16,[[1138,1,1,14,15],[1143,1,1,15,16]]]],[24149,25651,25785,27405,27433,27561,27611,27678,27849,28154,28294,28317,29814,29821,30053,30185]]],["persuadest",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27851]]],["persuading",[2,2,[[43,2,2,0,2,[[1036,1,1,0,1],[1045,1,1,1,2]]]],[27593,27922]]],["trust",[6,6,[[40,1,1,0,1,[[966,1,1,0,1]]],[46,2,2,1,3,[[1078,1,1,1,2],[1087,1,1,2,3]]],[49,2,2,3,5,[[1104,1,1,3,4],[1105,1,1,4,5]]],[57,1,1,5,6,[[1145,1,1,5,6]]]],[24612,28809,28978,29415,29425,30259]]],["trusted",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[990,1,1,2,3]]]],[24172,25427,25697]]],["yield",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27755]]]]},{"k":"G3983","v":[["*",[23,23,[[39,9,9,0,9,[[932,1,1,0,1],[933,1,1,1,2],[940,2,2,2,4],[949,1,1,4,5],[953,4,4,5,9]]],[40,2,2,9,11,[[958,1,1,9,10],[967,1,1,10,11]]],[41,5,5,11,16,[[973,1,1,11,12],[976,1,1,12,13],[978,3,3,13,16]]],[42,1,1,16,17,[[1002,1,1,16,17]]],[44,1,1,17,18,[[1057,1,1,17,18]]],[45,3,3,18,21,[[1065,1,1,18,19],[1072,2,2,19,21]]],[49,1,1,21,22,[[1106,1,1,21,22]]],[65,1,1,22,23,[[1173,1,1,22,23]]]],[23211,23240,23490,23492,23844,24043,24045,24050,24052,24285,24652,24946,25065,25149,25167,25171,26292,28265,28444,28621,28634,29454,30826]]],["+",[1,1,[[39,1,1,0,1,[[932,1,1,0,1]]]],[23211]]],["hunger",[8,8,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,2,2,1,3,[[978,2,2,1,3]]],[42,1,1,3,4,[[1002,1,1,3,4]]],[44,1,1,4,5,[[1057,1,1,4,5]]],[45,2,2,5,7,[[1065,1,1,5,6],[1072,1,1,6,7]]],[65,1,1,7,8,[[1173,1,1,7,8]]]],[23240,25167,25171,26292,28265,28444,28634,30826]]],["hungered",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]]],[23844,25065]]],["hungred",[8,8,[[39,6,6,0,6,[[940,2,2,0,2],[953,4,4,2,6]]],[40,1,1,6,7,[[958,1,1,6,7]]],[41,1,1,7,8,[[978,1,1,7,8]]]],[23490,23492,24043,24045,24050,24052,24285,25149]]],["hungry",[4,4,[[40,1,1,0,1,[[967,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]]],[24652,24946,28621,29454]]]]},{"k":"G3984","v":[["*",[2,2,[[57,2,2,0,2,[[1143,2,2,0,2]]]],[30201,30208]]],["+",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30201]]],["trial",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30208]]]]},{"k":"G3985","v":[["*",[39,35,[[39,6,6,0,6,[[932,2,2,0,2],[944,1,1,2,3],[947,1,1,3,4],[950,2,2,4,6]]],[40,4,4,6,10,[[957,1,1,6,7],[964,1,1,7,8],[966,1,1,8,9],[968,1,1,9,10]]],[41,3,3,10,13,[[976,1,1,10,11],[983,1,1,11,12],[992,1,1,12,13]]],[42,2,2,13,15,[[1002,1,1,13,14],[1004,1,1,14,15]]],[43,4,4,15,19,[[1022,1,1,15,16],[1032,1,1,16,17],[1033,1,1,17,18],[1041,1,1,18,19]]],[45,3,3,19,22,[[1068,1,1,19,20],[1071,2,2,20,22]]],[46,1,1,22,23,[[1090,1,1,22,23]]],[47,1,1,23,24,[[1096,1,1,23,24]]],[51,2,1,24,25,[[1113,2,1,24,25]]],[57,6,5,25,30,[[1134,2,1,25,26],[1135,1,1,26,27],[1136,1,1,27,28],[1143,2,2,28,30]]],[58,4,2,30,32,[[1146,4,2,30,32]]],[65,3,3,32,35,[[1168,2,2,32,34],[1169,1,1,34,35]]]],[23210,23212,23673,23765,23890,23907,24228,24511,24590,24688,25065,25421,25802,26263,26387,27068,27452,27490,27775,28492,28576,28580,29048,29189,29595,29995,30004,30029,30189,30209,30279,30280,30719,30727,30756]]],["Examine",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29048]]],["about",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27775]]],["assayed",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27490]]],["prove",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26263]]],["tempt",[6,6,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[43,2,2,3,5,[[1022,1,1,3,4],[1032,1,1,4,5]]],[45,1,1,5,6,[[1068,1,1,5,6]]]],[23890,24688,25802,27068,27452,28492]]],["tempted",[15,13,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]],[45,2,2,3,5,[[1071,2,2,3,5]]],[47,1,1,5,6,[[1096,1,1,5,6]]],[51,1,1,6,7,[[1113,1,1,6,7]]],[57,5,4,7,11,[[1134,2,1,7,8],[1135,1,1,8,9],[1136,1,1,9,10],[1143,1,1,10,11]]],[58,3,2,11,13,[[1146,3,2,11,13]]]],[23210,24228,25065,28576,28580,29189,29595,29995,30004,30029,30209,30279,30280]]],["tempter",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[51,1,1,1,2,[[1113,1,1,1,2]]]],[23212,29595]]],["tempteth",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30279]]],["tempting",[7,7,[[39,3,3,0,3,[[944,1,1,0,1],[947,1,1,1,2],[950,1,1,2,3]]],[40,2,2,3,5,[[964,1,1,3,4],[966,1,1,4,5]]],[41,1,1,5,6,[[983,1,1,5,6]]],[42,1,1,6,7,[[1004,1,1,6,7]]]],[23673,23765,23907,24511,24590,25421,26387]]],["tried",[3,3,[[57,1,1,0,1,[[1143,1,1,0,1]]],[65,2,2,1,3,[[1168,2,2,1,3]]]],[30189,30719,30727]]],["try",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30756]]]]},{"k":"G3986","v":[["*",[21,20,[[39,2,2,0,2,[[934,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,6,6,3,9,[[976,1,1,3,4],[980,1,1,4,5],[983,1,1,5,6],[994,3,3,6,9]]],[43,1,1,9,10,[[1037,1,1,9,10]]],[45,2,1,10,11,[[1071,2,1,10,11]]],[47,1,1,11,12,[[1094,1,1,11,12]]],[53,1,1,12,13,[[1124,1,1,12,13]]],[57,1,1,13,14,[[1135,1,1,13,14]]],[58,2,2,14,16,[[1146,2,2,14,16]]],[59,2,2,16,18,[[1151,1,1,16,17],[1154,1,1,17,18]]],[60,1,1,18,19,[[1157,1,1,18,19]]],[65,1,1,19,20,[[1169,1,1,19,20]]]],[23295,24095,24792,25076,25258,25409,25892,25904,25910,27645,28580,29145,29797,30003,30268,30278,30380,30458,30509,30756]]],["+",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30458]]],["temptation",[15,14,[[39,2,2,0,2,[[934,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,5,5,3,8,[[976,1,1,3,4],[980,1,1,4,5],[983,1,1,5,6],[994,2,2,6,8]]],[45,2,1,8,9,[[1071,2,1,8,9]]],[47,1,1,9,10,[[1094,1,1,9,10]]],[53,1,1,10,11,[[1124,1,1,10,11]]],[57,1,1,11,12,[[1135,1,1,11,12]]],[58,1,1,12,13,[[1146,1,1,12,13]]],[65,1,1,13,14,[[1169,1,1,13,14]]]],[23295,24095,24792,25076,25258,25409,25904,25910,28580,29145,29797,30003,30278,30756]]],["temptations",[5,5,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,1,1,1,2,[[1037,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]],[60,1,1,4,5,[[1157,1,1,4,5]]]],[25892,27645,30268,30380,30509]]]]},{"k":"G3987","v":[["*",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1043,1,1,1,2]]]],[27242,27844]]],["about",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27844]]],["assayed",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27242]]]]},{"k":"G3988","v":[["persuasion",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29170]]]]},{"k":"G3989","v":[["*",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[23733,27860]]],["depth",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23733]]],["sea",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27860]]]]},{"k":"G3990","v":[["beheaded",[1,1,[[65,1,1,0,1,[[1186,1,1,0,1]]]],[31042]]]]},{"k":"G3991","v":[["fifth",[4,4,[[65,4,4,0,4,[[1172,1,1,0,1],[1175,1,1,1,2],[1182,1,1,2,3],[1187,1,1,3,4]]]],[30802,30841,30964,31073]]]]},{"k":"G3992","v":[["*",[81,80,[[39,4,4,0,4,[[930,1,1,0,1],[939,1,1,1,2],[942,1,1,2,3],[950,1,1,3,4]]],[40,1,1,4,5,[[961,1,1,4,5]]],[41,10,10,5,15,[[976,1,1,5,6],[979,3,3,6,9],[987,1,1,9,10],[988,2,2,10,12],[992,3,3,12,15]]],[42,33,32,15,47,[[997,2,2,15,17],[1000,1,1,17,18],[1001,4,4,18,22],[1002,4,4,22,26],[1003,4,4,26,30],[1004,4,4,30,34],[1005,1,1,34,35],[1008,3,3,35,38],[1009,3,2,38,40],[1010,2,2,40,42],[1011,2,2,42,44],[1012,2,2,44,46],[1016,1,1,46,47]]],[43,12,12,47,59,[[1027,3,3,47,50],[1028,1,1,50,51],[1032,2,2,51,53],[1036,1,1,53,54],[1037,1,1,54,55],[1040,1,1,55,56],[1042,3,3,56,59]]],[44,1,1,59,60,[[1053,1,1,59,60]]],[45,2,2,60,62,[[1065,1,1,60,61],[1077,1,1,61,62]]],[46,1,1,62,63,[[1086,1,1,62,63]]],[48,1,1,63,64,[[1102,1,1,63,64]]],[49,5,5,64,69,[[1104,4,4,64,68],[1106,1,1,68,69]]],[50,1,1,69,70,[[1110,1,1,69,70]]],[51,2,2,70,72,[[1113,2,2,70,72]]],[52,1,1,72,73,[[1117,1,1,72,73]]],[55,1,1,73,74,[[1131,1,1,73,74]]],[59,1,1,74,75,[[1152,1,1,74,75]]],[65,5,5,75,80,[[1167,1,1,75,76],[1177,1,1,76,77],[1180,2,2,77,79],[1188,1,1,79,80]]]],[23177,23461,23607,23879,24376,25089,25201,25205,25214,25603,25644,25647,25790,25791,25792,26066,26077,26190,26233,26234,26240,26247,26295,26296,26297,26301,26344,26346,26356,26361,26397,26399,26407,26410,26444,26624,26625,26629,26646,26650,26692,26694,26720,26725,26731,26733,26888,27264,27291,27292,27336,27464,27467,27616,27643,27764,27817,27821,27823,28119,28450,28779,28959,29359,29410,29414,29416,29419,29458,29550,29592,29595,29672,29935,30413,30708,30882,30941,30944,31096]]],["+",[4,4,[[41,2,2,0,2,[[992,2,2,0,2]]],[42,1,1,2,3,[[1016,1,1,2,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]]],[25790,25791,26888,29458]]],["Send",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]]],[24376,27291]]],["forth",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23879]]],["in",[2,2,[[65,2,2,0,2,[[1180,2,2,0,2]]]],[30941,30944]]],["send",[22,22,[[41,3,3,0,3,[[988,2,2,0,2],[992,1,1,2,3]]],[42,4,4,3,7,[[1009,1,1,3,4],[1010,1,1,4,5],[1011,1,1,5,6],[1012,1,1,6,7]]],[43,7,7,7,14,[[1027,1,1,7,8],[1028,1,1,8,9],[1032,2,2,9,11],[1042,3,3,11,14]]],[45,1,1,14,15,[[1077,1,1,14,15]]],[49,3,3,15,18,[[1104,3,3,15,18]]],[52,1,1,18,19,[[1117,1,1,18,19]]],[55,1,1,19,20,[[1131,1,1,19,20]]],[65,2,2,20,22,[[1167,1,1,20,21],[1177,1,1,21,22]]]],[25644,25647,25792,26650,26694,26725,26733,27264,27336,27464,27467,27817,27821,27823,28779,29410,29414,29416,29672,29935,30708,30882]]],["sending",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28119]]],["sent",[49,49,[[39,3,3,0,3,[[930,1,1,0,1],[939,1,1,1,2],[942,1,1,2,3]]],[41,5,5,3,8,[[976,1,1,3,4],[979,3,3,4,7],[987,1,1,7,8]]],[42,28,28,8,36,[[997,2,2,8,10],[1000,1,1,10,11],[1001,4,4,11,15],[1002,4,4,15,19],[1003,4,4,19,23],[1004,4,4,23,27],[1005,1,1,27,28],[1008,3,3,28,31],[1009,2,2,31,33],[1010,1,1,33,34],[1011,1,1,34,35],[1012,1,1,35,36]]],[43,4,4,36,40,[[1027,1,1,36,37],[1036,1,1,37,38],[1037,1,1,38,39],[1040,1,1,39,40]]],[45,1,1,40,41,[[1065,1,1,40,41]]],[46,1,1,41,42,[[1086,1,1,41,42]]],[48,1,1,42,43,[[1102,1,1,42,43]]],[49,1,1,43,44,[[1104,1,1,43,44]]],[50,1,1,44,45,[[1110,1,1,44,45]]],[51,2,2,45,47,[[1113,2,2,45,47]]],[59,1,1,47,48,[[1152,1,1,47,48]]],[65,1,1,48,49,[[1188,1,1,48,49]]]],[23177,23461,23607,25089,25201,25205,25214,25603,26066,26077,26190,26233,26234,26240,26247,26295,26296,26297,26301,26344,26346,26356,26361,26397,26399,26407,26410,26444,26624,26625,26629,26646,26650,26692,26720,26731,27292,27616,27643,27764,28450,28959,29359,29419,29550,29592,29595,30413,31096]]]]},{"k":"G3993","v":[["poor",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28965]]]]},{"k":"G3994","v":[["*",[6,5,[[39,2,2,0,2,[[936,1,1,0,1],[938,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,3,2,3,5,[[976,1,1,3,4],[984,2,1,4,5]]]],[23359,23452,24245,25101,25512]]],["law",[3,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,2,1,1,2,[[984,2,1,1,2]]]],[23452,25512]]],["mother",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]]],[23359,24245,25101]]]]},{"k":"G3995","v":[["law",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26798]]]]},{"k":"G3996","v":[["*",[10,10,[[39,2,2,0,2,[[933,1,1,0,1],[937,1,1,1,2]]],[40,1,1,2,3,[[972,1,1,2,3]]],[41,1,1,3,4,[[978,1,1,3,4]]],[45,1,1,4,5,[[1066,1,1,4,5]]],[46,1,1,5,6,[[1089,1,1,5,6]]],[58,1,1,6,7,[[1149,1,1,6,7]]],[65,3,3,7,10,[[1184,3,3,7,10]]]],[23238,23394,24883,25171,28456,29043,30346,31004,31008,31012]]],["bewail",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29043]]],["mourn",[5,5,[[39,2,2,0,2,[[933,1,1,0,1],[937,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]],[65,1,1,4,5,[[1184,1,1,4,5]]]],[23238,23394,25171,30346,31004]]],["mourned",[2,2,[[40,1,1,0,1,[[972,1,1,0,1]]],[45,1,1,1,2,[[1066,1,1,1,2]]]],[24883,28456]]],["wailing",[2,2,[[65,2,2,0,2,[[1184,2,2,0,2]]]],[31008,31012]]]]},{"k":"G3997","v":[["*",[5,4,[[58,1,1,0,1,[[1149,1,1,0,1]]],[65,4,3,1,4,[[1184,3,2,1,3],[1187,1,1,3,4]]]],[30346,31000,31001,31057]]],["mourning",[2,2,[[58,1,1,0,1,[[1149,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[30346,31001]]],["sorrow",[3,2,[[65,3,2,0,2,[[1184,2,1,0,1],[1187,1,1,1,2]]]],[31000,31057]]]]},{"k":"G3998","v":[["poor",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25828]]]]},{"k":"G3999","v":[["times",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29013]]]]},{"k":"G4000","v":[["thousand",[6,6,[[39,2,2,0,2,[[942,1,1,0,1],[944,1,1,1,2]]],[40,2,2,2,4,[[962,1,1,2,3],[964,1,1,3,4]]],[41,1,1,4,5,[[981,1,1,4,5]]],[42,1,1,5,6,[[1002,1,1,5,6]]]],[23618,23681,24451,24519,25315,26267]]]]},{"k":"G4001","v":[["hundred",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]]],[25236,28724]]]]},{"k":"G4002","v":[["*",[38,33,[[39,12,7,0,7,[[942,2,2,0,2],[944,1,1,2,3],[953,9,4,3,7]]],[40,3,3,7,10,[[962,2,2,7,9],[964,1,1,9,10]]],[41,9,9,10,19,[[973,1,1,10,11],[981,2,2,11,13],[984,2,2,13,15],[986,1,1,15,16],[988,1,1,16,17],[991,2,2,17,19]]],[42,5,5,19,24,[[1000,1,1,19,20],[1001,1,1,20,21],[1002,3,3,21,24]]],[43,5,5,24,29,[[1021,1,1,24,25],[1024,1,1,25,26],[1036,1,1,26,27],[1037,1,1,27,28],[1041,1,1,28,29]]],[45,1,1,29,30,[[1075,1,1,29,30]]],[65,3,3,30,33,[[1175,2,2,30,32],[1183,1,1,32,33]]]],[23614,23616,23681,24010,24023,24024,24028,24445,24448,24519,24917,25314,25317,25465,25511,25572,25648,25749,25750,26174,26212,26266,26270,26276,27026,27130,27604,27632,27770,28697,30845,30850,30985]]],["+",[4,4,[[39,1,1,0,1,[[953,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[43,2,2,2,4,[[1024,1,1,2,3],[1036,1,1,3,4]]]],[24028,26276,27130,27604]]],["Five",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24445]]],["five",[33,29,[[39,11,7,0,7,[[942,2,2,0,2],[944,1,1,2,3],[953,8,4,3,7]]],[40,2,2,7,9,[[962,1,1,7,8],[964,1,1,8,9]]],[41,9,9,9,18,[[973,1,1,9,10],[981,2,2,10,12],[984,2,2,12,14],[986,1,1,14,15],[988,1,1,15,16],[991,2,2,16,18]]],[42,4,4,18,22,[[1000,1,1,18,19],[1001,1,1,19,20],[1002,2,2,20,22]]],[43,3,3,22,25,[[1021,1,1,22,23],[1037,1,1,23,24],[1041,1,1,24,25]]],[45,1,1,25,26,[[1075,1,1,25,26]]],[65,3,3,26,29,[[1175,2,2,26,28],[1183,1,1,28,29]]]],[23614,23616,23681,24010,24023,24024,24028,24448,24519,24917,25314,25317,25465,25511,25572,25648,25749,25750,26174,26212,26266,26270,27026,27632,27770,28697,30845,30850,30985]]]]},{"k":"G4003","v":[["fifteenth",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25026]]]]},{"k":"G4004","v":[["*",[7,7,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,3,3,1,4,[[979,1,1,1,2],[981,1,1,2,3],[988,1,1,3,4]]],[42,2,2,4,6,[[1004,1,1,4,5],[1017,1,1,5,6]]],[43,1,1,6,7,[[1030,1,1,6,7]]]],[24447,25236,25315,25626,26438,26909,27382]]],["+",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[42,1,1,1,2,[[1017,1,1,1,2]]]],[24447,26909]]],["fifties",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25315]]],["fifty",[4,4,[[41,2,2,0,2,[[979,1,1,0,1],[988,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]],[43,1,1,3,4,[[1030,1,1,3,4]]]],[25236,25626,26438,27382]]]]},{"k":"G4005","v":[["Pentecost",[3,3,[[43,2,2,0,2,[[1019,1,1,0,1],[1037,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]]],[26950,27642,28784]]]]},{"k":"G4006","v":[["*",[6,6,[[46,4,4,0,4,[[1078,1,1,0,1],[1080,1,1,1,2],[1085,1,1,2,3],[1087,1,1,3,4]]],[48,1,1,4,5,[[1099,1,1,4,5]]],[49,1,1,5,6,[[1105,1,1,5,6]]]],[28815,28845,28954,28973,29263,29425]]],["confidence",[5,5,[[46,3,3,0,3,[[1078,1,1,0,1],[1085,1,1,1,2],[1087,1,1,2,3]]],[48,1,1,3,4,[[1099,1,1,3,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]]],[28815,28954,28973,29263,29425]]],["trust",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28845]]]]},{"k":"G4007","v":[["+",[3,3,[[57,3,3,0,3,[[1135,2,2,0,2],[1138,1,1,2,3]]]],[30001,30009,30047]]]]},{"k":"G4008","v":[["*",[23,23,[[39,7,7,0,7,[[932,2,2,0,2],[936,2,2,2,4],[942,1,1,4,5],[944,1,1,5,6],[947,1,1,6,7]]],[40,7,7,7,14,[[959,1,1,7,8],[960,1,1,8,9],[961,2,2,9,11],[962,1,1,11,12],[964,1,1,12,13],[966,1,1,13,14]]],[41,1,1,14,15,[[980,1,1,14,15]]],[42,8,8,15,23,[[997,1,1,15,16],[999,1,1,16,17],[1002,4,4,17,21],[1006,1,1,21,22],[1014,1,1,22,23]]]],[23224,23234,23363,23373,23619,23677,23763,24296,24358,24365,24385,24452,24513,24589,25267,26072,26146,26258,26274,26279,26282,26521,26786]]],["+",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24452]]],["beyond",[7,7,[[39,3,3,0,3,[[932,2,2,0,2],[947,1,1,2,3]]],[40,1,1,3,4,[[959,1,1,3,4]]],[42,3,3,4,7,[[997,1,1,4,5],[999,1,1,5,6],[1006,1,1,6,7]]]],[23224,23234,23763,24296,26072,26146,26521]]],["over",[3,3,[[42,3,3,0,3,[[1002,2,2,0,2],[1014,1,1,2,3]]]],[26258,26274,26786]]],["side",[12,12,[[39,4,4,0,4,[[936,2,2,0,2],[942,1,1,2,3],[944,1,1,3,4]]],[40,5,5,4,9,[[960,1,1,4,5],[961,2,2,5,7],[964,1,1,7,8],[966,1,1,8,9]]],[41,1,1,9,10,[[980,1,1,9,10]]],[42,2,2,10,12,[[1002,2,2,10,12]]]],[23363,23373,23619,23677,24358,24365,24385,24513,24589,25267,26279,26282]]]]},{"k":"G4009","v":[["*",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[44,1,1,2,3,[[1055,1,1,2,3]]],[57,1,1,3,4,[[1138,1,1,3,4]]]],[23531,25436,28206,30060]]],["end",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30060]]],["ends",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28206]]],["parts",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23531,25436]]]]},{"k":"G4010","v":[["Pergamos",[2,2,[[65,2,2,0,2,[[1167,1,1,0,1],[1168,1,1,1,2]]]],[30708,30729]]]]},{"k":"G4011","v":[["Perga",[3,3,[[43,3,3,0,3,[[1030,2,2,0,2],[1031,1,1,2,3]]]],[27375,27376,27439]]]]},{"k":"G4012","v":[["*",[329,303,[[39,26,26,0,26,[[930,1,1,0,1],[931,1,1,1,2],[932,1,1,2,3],[934,1,1,3,4],[936,1,1,4,5],[937,1,1,5,6],[939,2,2,6,8],[940,1,1,8,9],[943,1,1,9,10],[944,1,1,10,11],[945,1,1,11,12],[946,1,1,12,13],[948,5,5,13,18],[949,1,1,18,19],[950,3,3,19,22],[952,1,1,22,23],[954,2,2,23,25],[955,1,1,25,26]]],[40,24,24,26,50,[[957,3,3,26,29],[959,3,3,29,32],[960,2,2,32,34],[961,2,2,34,36],[962,1,1,36,37],[963,3,3,37,40],[964,1,1,40,41],[965,2,2,41,43],[966,2,2,43,45],[968,2,2,45,47],[969,1,1,47,48],[970,2,2,48,50]]],[41,44,42,50,92,[[973,2,2,50,52],[974,6,5,52,57],[975,3,2,57,59],[976,4,4,59,63],[977,2,2,63,65],[979,5,5,65,70],[981,3,3,70,73],[982,2,2,73,75],[983,1,1,75,76],[984,1,1,76,77],[985,2,2,77,79],[988,1,1,79,80],[989,1,1,80,81],[991,1,1,81,82],[993,1,1,82,83],[994,3,3,83,86],[995,1,1,86,87],[996,5,5,87,92]]],[42,68,58,92,150,[[997,6,6,92,98],[998,2,2,98,100],[999,1,1,100,101],[1001,7,6,101,107],[1002,2,2,107,109],[1003,6,6,109,115],[1004,6,5,115,120],[1005,3,3,120,123],[1006,5,4,123,127],[1007,3,2,127,129],[1008,2,2,129,131],[1009,3,3,131,134],[1011,2,2,134,136],[1012,9,7,136,143],[1013,5,2,143,145],[1014,4,3,145,148],[1015,1,1,148,149],[1017,1,1,149,150]]],[43,70,62,150,212,[[1018,3,3,150,153],[1019,2,2,153,155],[1022,1,1,155,156],[1024,1,1,156,157],[1025,5,3,157,160],[1026,1,1,160,161],[1027,2,2,161,163],[1028,1,1,163,164],[1030,2,2,164,166],[1032,2,2,166,168],[1034,1,1,168,169],[1035,2,2,169,171],[1036,6,5,171,176],[1038,4,4,176,180],[1039,4,3,180,183],[1040,5,5,183,188],[1041,8,7,188,195],[1042,10,8,195,203],[1043,3,3,203,206],[1045,7,6,206,212]]],[44,5,5,212,217,[[1046,1,1,212,213],[1053,1,1,213,214],[1059,1,1,214,215],[1060,2,2,215,217]]],[45,10,10,217,227,[[1062,2,2,217,219],[1068,3,3,219,222],[1069,2,2,222,224],[1073,1,1,224,225],[1077,2,2,225,227]]],[46,2,2,227,229,[[1086,1,1,227,228],[1087,1,1,228,229]]],[48,2,2,229,231,[[1102,2,2,229,231]]],[49,4,4,231,235,[[1103,1,1,231,232],[1104,3,3,232,235]]],[50,5,5,235,240,[[1107,1,1,235,236],[1108,1,1,236,237],[1110,3,3,237,240]]],[51,9,9,240,249,[[1111,2,2,240,242],[1113,2,2,242,244],[1114,3,3,244,247],[1115,2,2,247,249]]],[52,4,4,249,253,[[1116,2,2,249,251],[1117,1,1,251,252],[1118,1,1,252,253]]],[53,4,4,253,257,[[1119,2,2,253,255],[1124,2,2,255,257]]],[54,3,3,257,260,[[1125,1,1,257,258],[1126,1,1,258,259],[1127,1,1,259,260]]],[55,2,2,260,262,[[1130,2,2,260,262]]],[56,1,1,262,263,[[1132,1,1,262,263]]],[57,22,20,263,283,[[1134,1,1,263,264],[1136,2,2,264,266],[1137,3,2,266,268],[1138,1,1,268,269],[1139,1,1,269,270],[1141,1,1,270,271],[1142,5,5,271,276],[1143,6,5,276,281],[1145,2,2,281,283]]],[59,5,4,283,287,[[1151,2,1,283,284],[1153,2,2,284,286],[1155,1,1,286,287]]],[60,2,2,287,289,[[1156,1,1,287,288],[1158,1,1,288,289]]],[61,10,8,289,297,[[1159,1,1,289,290],[1160,5,3,290,293],[1162,1,1,293,294],[1163,3,3,294,297]]],[63,1,1,297,298,[[1165,1,1,297,298]]],[64,5,4,298,302,[[1166,5,4,298,302]]],[65,1,1,302,303,[[1181,1,1,302,303]]]],[23177,23196,23215,23310,23363,23415,23466,23469,23525,23640,23683,23713,23746,23795,23797,23798,23801,23816,23871,23888,23903,23914,23993,24078,24082,24175,24221,24245,24259,24296,24320,24322,24333,24342,24380,24391,24455,24469,24480,24488,24530,24552,24580,24598,24629,24687,24699,24749,24775,24778,24894,24897,24990,24991,25000,25006,25011,25040,25044,25073,25077,25100,25101,25121,25122,25198,25212,25213,25219,25222,25310,25312,25346,25403,25404,25458,25485,25519,25526,25622,25653,25768,25831,25896,25901,25913,25943,25995,26005,26010,26018,26035,26051,26052,26059,26066,26074,26091,26116,26120,26145,26241,26242,26246,26247,26249,26256,26298,26318,26335,26340,26341,26345,26360,26367,26394,26395,26399,26407,26427,26457,26458,26461,26494,26506,26514,26522,26536,26542,26586,26621,26648,26652,26654,26721,26725,26734,26735,26736,26737,26745,26751,26752,26768,26779,26804,26808,26819,26849,26922,26924,26926,26939,26978,26980,27083,27168,27188,27191,27210,27229,27268,27278,27329,27375,27391,27444,27448,27555,27572,27582,27593,27608,27610,27624,27625,27672,27685,27688,27689,27710,27714,27722,27740,27745,27749,27754,27763,27777,27779,27782,27790,27791,27793,27794,27805,27811,27812,27814,27815,27816,27820,27822,27825,27830,27849,27906,27914,27920,27921,27922,27930,27933,28119,28292,28317,28324,28367,28374,28488,28512,28524,28528,28531,28635,28777,28788,28957,28979,29355,29359,29388,29410,29411,29414,29468,29495,29545,29550,29552,29562,29569,29592,29599,29609,29612,29616,29622,29646,29652,29660,29674,29679,29703,29715,29792,29809,29812,29845,29861,29915,29916,29948,29982,30018,30022,30033,30041,30053,30078,30110,30139,30140,30141,30151,30159,30179,30192,30194,30204,30212,30252,30259,30384,30439,30442,30472,30491,30538,30541,30552,30576,30577,30613,30633,30634,30640,30660,30675,30679,30681,30687,30952]]],["+",[18,18,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,2,2,1,3,[[973,1,1,1,2],[996,1,1,2,3]]],[43,6,6,3,9,[[1028,1,1,3,4],[1036,1,1,4,5],[1038,1,1,5,6],[1041,1,1,6,7],[1042,1,1,7,8],[1045,1,1,8,9]]],[45,1,1,9,10,[[1062,1,1,9,10]]],[46,1,1,10,11,[[1086,1,1,10,11]]],[48,1,1,11,12,[[1102,1,1,11,12]]],[49,3,3,12,15,[[1103,1,1,12,13],[1104,2,2,13,15]]],[50,1,1,15,16,[[1110,1,1,15,16]]],[53,1,1,16,17,[[1119,1,1,16,17]]],[57,1,1,17,18,[[1134,1,1,17,18]]]],[23525,24897,25995,27329,27625,27672,27782,27816,27906,28367,28957,29359,29388,29410,29411,29550,29703,29982]]],["About",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27811]]],["Against",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27814]]],["Concerning",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[26010,27933]]],["For",[2,2,[[42,1,1,0,1,[[1006,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]]],[26514,27830]]],["In",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29915]]],["Of",[6,6,[[42,3,3,0,3,[[1012,3,3,0,3]]],[43,1,1,3,4,[[1042,1,1,3,4]]],[57,1,1,4,5,[[1137,1,1,4,5]]],[59,1,1,5,6,[[1151,1,1,5,6]]]],[26735,26736,26737,27822,30041,30384]]],["Touching",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27790]]],["about",[30,29,[[39,7,7,0,7,[[931,1,1,0,1],[936,1,1,1,2],[948,4,4,2,6],[955,1,1,6,7]]],[40,8,8,7,15,[[957,1,1,7,8],[959,3,3,8,11],[960,1,1,11,12],[962,1,1,12,13],[965,2,2,13,15]]],[41,5,5,15,20,[[982,2,2,15,17],[985,1,1,17,18],[989,1,1,18,19],[994,1,1,19,20]]],[42,1,1,20,21,[[999,1,1,20,21]]],[43,6,5,21,26,[[1027,1,1,21,22],[1032,1,1,22,23],[1036,1,1,23,24],[1039,2,1,24,25],[1042,1,1,25,26]]],[53,1,1,26,27,[[1124,1,1,26,27]]],[64,2,2,27,29,[[1166,2,2,27,29]]]],[23196,23363,23795,23797,23798,23801,24175,24221,24296,24320,24322,24333,24455,24552,24580,25403,25404,25526,25653,25913,26145,27268,27444,27608,27710,27820,29792,30679,30681]]],["above",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30660]]],["abroad",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24990]]],["against",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23816]]],["at",[3,3,[[41,1,1,0,1,[[974,1,1,0,1]]],[42,2,2,1,3,[[1002,2,2,1,3]]]],[24991,26298,26318]]],["company",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27375]]],["concern",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27930]]],["concerning",[41,41,[[39,3,3,0,3,[[932,1,1,0,1],[939,1,1,1,2],[944,1,1,2,3]]],[40,2,2,3,5,[[961,1,1,3,4],[963,1,1,4,5]]],[41,5,5,5,10,[[974,1,1,5,6],[979,1,1,6,7],[994,1,1,7,8],[996,2,2,8,10]]],[42,4,4,10,14,[[1003,2,2,10,12],[1005,1,1,12,13],[1007,1,1,13,14]]],[43,12,12,14,26,[[1018,1,1,14,15],[1025,1,1,15,16],[1036,2,2,16,18],[1038,1,1,18,19],[1039,1,1,19,20],[1040,1,1,20,21],[1041,1,1,21,22],[1042,1,1,22,23],[1045,3,3,23,26]]],[45,5,5,26,31,[[1068,2,2,26,28],[1069,1,1,28,29],[1073,1,1,29,30],[1077,1,1,30,31]]],[51,2,2,31,33,[[1113,1,1,31,32],[1114,1,1,32,33]]],[53,2,2,33,35,[[1119,1,1,33,34],[1124,1,1,34,35]]],[54,2,2,35,37,[[1126,1,1,35,36],[1127,1,1,36,37]]],[57,3,3,37,40,[[1139,1,1,37,38],[1143,2,2,38,40]]],[61,1,1,40,41,[[1160,1,1,40,41]]]],[23215,23466,23683,24380,24480,24990,25219,25901,26018,26035,26340,26360,26458,26542,26939,27188,27593,27624,27688,27722,27749,27793,27812,27920,27921,27922,28488,28512,28531,28635,28777,29592,29616,29715,29809,29845,29861,30078,30192,30194,30576]]],["for",[60,53,[[39,4,4,0,4,[[930,1,1,0,1],[934,1,1,1,2],[950,1,1,2,3],[954,1,1,3,4]]],[40,3,3,4,7,[[957,1,1,4,5],[968,1,1,5,6],[970,1,1,6,7]]],[41,8,7,7,14,[[974,1,1,7,8],[975,2,1,8,9],[976,1,1,9,10],[977,1,1,10,11],[984,1,1,11,12],[991,1,1,12,13],[994,1,1,13,14]]],[42,12,9,14,23,[[1005,1,1,14,15],[1006,2,2,15,17],[1008,1,1,17,18],[1011,1,1,18,19],[1012,1,1,19,20],[1013,5,2,20,22],[1015,1,1,22,23]]],[43,4,4,23,27,[[1025,1,1,23,24],[1036,1,1,24,25],[1041,2,2,25,27]]],[44,1,1,27,28,[[1053,1,1,27,28]]],[48,1,1,28,29,[[1102,1,1,28,29]]],[50,3,3,29,32,[[1107,1,1,29,30],[1108,1,1,30,31],[1110,1,1,31,32]]],[51,3,3,32,35,[[1111,1,1,32,33],[1113,1,1,33,34],[1115,1,1,34,35]]],[52,4,4,35,39,[[1116,2,2,35,37],[1117,1,1,37,38],[1118,1,1,38,39]]],[56,1,1,39,40,[[1132,1,1,39,40]]],[57,9,8,40,48,[[1137,2,1,40,41],[1142,4,4,41,45],[1143,1,1,45,46],[1145,2,2,46,48]]],[59,2,2,48,50,[[1153,1,1,48,49],[1155,1,1,49,50]]],[61,5,3,50,53,[[1160,3,1,50,51],[1162,1,1,51,52],[1163,1,1,52,53]]]],[23177,23310,23888,24082,24259,24687,24778,25000,25044,25101,25121,25485,25768,25896,26461,26494,26514,26586,26721,26752,26768,26779,26849,27191,27625,27779,27790,28119,29355,29468,29495,29545,29562,29599,29646,29652,29660,29674,29679,29948,30033,30139,30141,30151,30159,30212,30252,30259,30442,30472,30552,30613,30640]]],["of",[141,131,[[39,7,7,0,7,[[939,1,1,0,1],[943,1,1,1,2],[945,1,1,2,3],[949,1,1,3,4],[950,1,1,4,5],[952,1,1,5,6],[954,1,1,6,7]]],[40,9,9,7,16,[[957,1,1,7,8],[960,1,1,8,9],[961,1,1,9,10],[963,2,2,10,12],[964,1,1,12,13],[966,1,1,13,14],[969,1,1,14,15],[970,1,1,15,16]]],[41,20,20,16,36,[[973,1,1,16,17],[974,2,2,17,19],[975,1,1,19,20],[976,2,2,20,22],[977,1,1,22,23],[979,4,4,23,27],[981,3,3,27,30],[983,1,1,30,31],[985,1,1,31,32],[988,1,1,32,33],[993,1,1,33,34],[995,1,1,34,35],[996,1,1,35,36]]],[42,45,39,36,75,[[997,6,6,36,42],[998,2,2,42,44],[1001,7,6,44,50],[1003,4,4,50,54],[1004,6,5,54,59],[1005,1,1,59,60],[1006,2,2,60,62],[1007,2,1,62,63],[1008,1,1,63,64],[1009,3,3,64,67],[1011,1,1,67,68],[1012,5,3,68,71],[1014,4,3,71,74],[1017,1,1,74,75]]],[43,31,28,75,103,[[1018,1,1,75,76],[1019,2,2,76,78],[1022,1,1,78,79],[1024,1,1,79,80],[1025,3,1,80,81],[1026,1,1,81,82],[1030,1,1,82,83],[1032,1,1,83,84],[1034,1,1,84,85],[1035,2,2,85,87],[1036,1,1,87,88],[1038,1,1,88,89],[1039,1,1,89,90],[1040,4,4,90,94],[1041,3,3,94,97],[1042,4,3,97,100],[1043,1,1,100,101],[1045,2,2,101,103]]],[44,3,3,103,106,[[1059,1,1,103,104],[1060,2,2,104,106]]],[45,1,1,106,107,[[1062,1,1,106,107]]],[46,1,1,107,108,[[1087,1,1,107,108]]],[51,3,3,108,111,[[1111,1,1,108,109],[1114,1,1,109,110],[1115,1,1,110,111]]],[54,1,1,111,112,[[1125,1,1,111,112]]],[55,1,1,112,113,[[1130,1,1,112,113]]],[57,8,8,113,121,[[1136,2,2,113,115],[1138,1,1,115,116],[1141,1,1,116,117],[1142,1,1,117,118],[1143,3,3,118,121]]],[59,2,2,121,123,[[1151,1,1,121,122],[1153,1,1,122,123]]],[60,2,2,123,125,[[1156,1,1,123,124],[1158,1,1,124,125]]],[61,4,4,125,129,[[1159,1,1,125,126],[1160,1,1,126,127],[1163,2,2,127,129]]],[64,3,2,129,131,[[1166,3,2,129,131]]]],[23469,23640,23713,23871,23914,23993,24078,24245,24342,24391,24469,24488,24530,24598,24749,24775,24894,25006,25011,25040,25077,25100,25122,25198,25212,25213,25222,25310,25312,25346,25458,25519,25622,25831,25943,26005,26051,26052,26059,26066,26074,26091,26116,26120,26241,26242,26246,26247,26249,26256,26335,26341,26345,26367,26394,26395,26399,26407,26427,26457,26506,26522,26536,26621,26648,26652,26654,26725,26734,26745,26751,26804,26808,26819,26922,26924,26978,26980,27083,27168,27210,27229,27391,27448,27555,27572,27582,27610,27685,27714,27740,27745,27754,27763,27777,27791,27794,27805,27815,27816,27849,27914,27920,28292,28317,28324,28374,28979,29569,29609,29622,29812,29916,30018,30022,30053,30110,30140,30179,30194,30204,30384,30439,30491,30538,30541,30577,30633,30634,30675,30687]]],["on",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]]],[23415,27278]]],["over",[2,2,[[41,1,1,0,1,[[976,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[25073,28524]]],["pertaining",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26926]]],["their",[1,1,[[65,1,1,0,1,[[1181,1,1,0,1]]]],[30952]]],["touching",[9,9,[[39,2,2,0,2,[[946,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[43,2,2,3,5,[[1038,1,1,3,4],[1043,1,1,4,5]]],[45,2,2,5,7,[[1069,1,1,5,6],[1077,1,1,6,7]]],[50,1,1,7,8,[[1110,1,1,7,8]]],[51,1,1,8,9,[[1114,1,1,8,9]]]],[23746,23903,24699,27689,27825,28528,28788,29552,29612]]],["with",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[24629,29414]]]]},{"k":"G4013","v":[["*",[6,6,[[39,3,3,0,3,[[932,1,1,0,1],[937,1,1,1,2],[951,1,1,2,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[43,1,1,4,5,[[1030,1,1,4,5]]],[45,1,1,5,6,[[1070,1,1,5,6]]]],[23232,23414,23933,24413,27373,28545]]],["about",[4,4,[[39,2,2,0,2,[[932,1,1,0,1],[937,1,1,1,2]]],[43,1,1,2,3,[[1030,1,1,2,3]]],[45,1,1,3,4,[[1070,1,1,3,4]]]],[23232,23414,27373,28545]]],["compass",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23933]]],["went",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24413]]]]},{"k":"G4014","v":[["*",[4,4,[[43,2,2,0,2,[[1044,2,2,0,2]]],[46,1,1,2,3,[[1080,1,1,2,3]]],[57,1,1,3,4,[[1142,1,1,3,4]]]],[27875,27895,28857,30144]]],["away",[3,3,[[43,1,1,0,1,[[1044,1,1,0,1]]],[46,1,1,1,2,[[1080,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[27875,28857,30144]]],["up",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27895]]]]},{"k":"G4015","v":[["*",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1039,1,1,1,2]]]],[27219,27710]]],["about",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27219]]],["shone",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27710]]]]},{"k":"G4016","v":[["*",[24,24,[[39,5,5,0,5,[[934,2,2,0,2],[953,3,3,2,5]]],[40,2,2,5,7,[[970,1,1,5,6],[972,1,1,6,7]]],[41,3,3,7,10,[[984,1,1,7,8],[991,1,1,8,9],[995,1,1,9,10]]],[42,1,1,10,11,[[1015,1,1,10,11]]],[43,1,1,11,12,[[1029,1,1,11,12]]],[65,12,12,12,24,[[1169,2,2,12,14],[1170,1,1,14,15],[1173,2,2,15,17],[1176,1,1,17,18],[1177,1,1,18,19],[1178,1,1,19,20],[1183,1,1,20,21],[1184,1,1,21,22],[1185,2,2,22,24]]]],[23311,23313,24044,24046,24051,24805,24878,25486,25774,25946,26827,27345,30751,30764,30772,30819,30823,30862,30875,30892,30979,31009,31025,31030]]],["+",[2,2,[[41,1,1,0,1,[[991,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]]],[25774,27345]]],["arrayed",[6,6,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[995,1,1,2,3]]],[65,3,3,3,6,[[1173,1,1,3,4],[1183,1,1,4,5],[1185,1,1,5,6]]]],[23311,25486,25946,30823,30979,31025]]],["clothed",[10,10,[[39,4,4,0,4,[[934,1,1,0,1],[953,3,3,1,4]]],[65,6,6,4,10,[[1169,2,2,4,6],[1170,1,1,6,7],[1173,1,1,7,8],[1177,1,1,8,9],[1184,1,1,9,10]]]],[23313,24044,24046,24051,30751,30764,30772,30819,30875,31009]]],["having",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24805]]],["in",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24878]]],["on",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26827]]],["with",[3,3,[[65,3,3,0,3,[[1176,1,1,0,1],[1178,1,1,1,2],[1185,1,1,2,3]]]],[30862,30892,31030]]]]},{"k":"G4017","v":[["*",[7,7,[[40,6,6,0,6,[[959,2,2,0,2],[961,1,1,2,3],[965,1,1,3,4],[966,1,1,4,5],[967,1,1,5,6]]],[41,1,1,6,7,[[978,1,1,6,7]]]],[24293,24322,24396,24546,24611,24651,25156]]],["about",[5,5,[[40,5,5,0,5,[[959,1,1,0,1],[961,1,1,1,2],[965,1,1,2,3],[966,1,1,3,4],[967,1,1,4,5]]]],[24293,24396,24546,24611,24651]]],["looked",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24322]]],["upon",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25156]]]]},{"k":"G4018","v":[["*",[2,2,[[45,1,1,0,1,[[1072,1,1,0,1]]],[57,1,1,1,2,[[1133,1,1,1,2]]]],[28615,29975]]],["covering",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28615]]],["vesture",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29975]]]]},{"k":"G4019","v":[["about",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26567]]]]},{"k":"G4020","v":[["busybodies",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29689]]]]},{"k":"G4021","v":[["*",[2,2,[[43,1,1,0,1,[[1036,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[27604,29776]]],["arts",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27604]]],["busybodies",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29776]]]]},{"k":"G4022","v":[["*",[4,4,[[43,2,2,0,2,[[1036,1,1,0,1],[1045,1,1,1,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[27598,27912,29776,30209]]],["+",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29776]]],["about",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30209]]],["compass",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27912]]],["vagabond",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27598]]]]},{"k":"G4023","v":[["*",[3,3,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]]],[25116,27759,30405]]],["+",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25116]]],["after",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27759]]],["contained",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30405]]]]},{"k":"G4024","v":[["*",[7,7,[[41,3,3,0,3,[[984,2,2,0,2],[989,1,1,2,3]]],[43,1,1,3,4,[[1029,1,1,3,4]]],[48,1,1,4,5,[[1102,1,1,4,5]]],[65,2,2,5,7,[[1167,1,1,5,6],[1181,1,1,6,7]]]],[25494,25496,25659,27345,29351,30710,30952]]],["+",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30710]]],["about",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]]],[25494,29351]]],["gird",[2,2,[[41,2,2,0,2,[[984,1,1,0,1],[989,1,1,1,2]]]],[25496,25659]]],["girded",[1,1,[[65,1,1,0,1,[[1181,1,1,0,1]]]],[30952]]],["thyself",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27345]]]]},{"k":"G4025","v":[["wearing",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30427]]]]},{"k":"G4026","v":[["*",[4,4,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[55,1,1,3,4,[[1131,1,1,3,4]]]],[26565,27803,29843,29932]]],["about",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27803]]],["avoid",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29932]]],["by",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26565]]],["shun",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29843]]]]},{"k":"G4027","v":[["filth",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28446]]]]},{"k":"G4028","v":[["*",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[24819,25928,30109]]],["blindfolded",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25928]]],["cover",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24819]]],["overlaid",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30109]]]]},{"k":"G4029","v":[["*",[5,5,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]],[57,2,2,3,5,[[1137,1,1,3,4],[1144,1,1,4,5]]]],[24580,25653,27919,30032,30213]]],["about",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30213]]],["bound",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27919]]],["hanged",[2,2,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]]],[24580,25653]]],["with",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30032]]]]},{"k":"G4030","v":[["helmet",[2,2,[[48,1,1,0,1,[[1102,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]]],[29354,29629]]]]},{"k":"G4031","v":[["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27871]]]]},{"k":"G4032","v":[["hid",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24917]]]]},{"k":"G4033","v":[["+",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25774]]]]},{"k":"G4034","v":[["about",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]]],[24982,27836]]]]},{"k":"G4035","v":[["remain",[2,2,[[51,2,2,0,2,[[1114,2,2,0,2]]]],[29618,29620]]]]},{"k":"G4036","v":[["*",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[970,1,1,2,3]]],[41,2,2,3,5,[[990,2,2,3,5]]]],[24092,24433,24788,25711,25712]]],["sorrowful",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,2,2,2,4,[[990,2,2,2,4]]]],[24092,24788,25711,25712]]],["sorry",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24433]]]]},{"k":"G4037","v":[["for",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26927]]]]},{"k":"G4038","v":[["about",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27075]]]]},{"k":"G4039","v":[["about",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24958]]]]},{"k":"G4040","v":[["neighbours",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24951]]]]},{"k":"G4041","v":[["peculiar",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29922]]]]},{"k":"G4042","v":[["place",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27208]]]]},{"k":"G4043","v":[["*",[96,90,[[39,7,7,0,7,[[932,1,1,0,1],[937,1,1,1,2],[939,1,1,2,3],[942,3,3,3,6],[943,1,1,6,7]]],[40,10,10,7,17,[[957,1,1,7,8],[958,1,1,8,9],[961,1,1,9,10],[962,2,2,10,12],[963,1,1,12,13],[964,1,1,13,14],[967,1,1,14,15],[968,1,1,15,16],[972,1,1,16,17]]],[41,5,5,17,22,[[977,1,1,17,18],[979,1,1,18,19],[983,1,1,19,20],[992,1,1,20,21],[996,1,1,21,22]]],[42,17,15,22,37,[[997,1,1,22,23],[1001,4,4,23,27],[1002,2,2,27,29],[1003,2,1,29,30],[1004,1,1,30,31],[1006,1,1,31,32],[1007,3,3,32,35],[1008,2,1,35,36],[1017,1,1,36,37]]],[43,8,7,37,44,[[1020,5,4,37,41],[1031,2,2,41,43],[1038,1,1,43,44]]],[44,5,5,44,49,[[1051,1,1,44,45],[1053,2,2,45,47],[1058,1,1,47,48],[1059,1,1,48,49]]],[45,2,2,49,51,[[1064,1,1,49,50],[1068,1,1,50,51]]],[46,5,5,51,56,[[1081,1,1,51,52],[1082,1,1,52,53],[1087,2,2,53,55],[1089,1,1,55,56]]],[47,1,1,56,57,[[1095,1,1,56,57]]],[48,8,7,57,64,[[1098,2,2,57,59],[1100,3,2,59,61],[1101,3,3,61,64]]],[49,2,2,64,66,[[1105,2,2,64,66]]],[50,4,4,66,70,[[1107,1,1,66,67],[1108,1,1,67,68],[1109,1,1,68,69],[1110,1,1,69,70]]],[51,3,3,70,73,[[1112,1,1,70,71],[1114,2,2,71,73]]],[52,2,2,73,75,[[1118,2,2,73,75]]],[57,1,1,75,76,[[1145,1,1,75,76]]],[59,1,1,76,77,[[1155,1,1,76,77]]],[61,5,4,77,81,[[1159,2,2,77,79],[1160,3,2,79,81]]],[62,3,2,81,83,[[1164,3,2,81,83]]],[63,2,2,83,85,[[1165,2,2,83,85]]],[65,5,5,85,90,[[1168,1,1,85,86],[1169,1,1,86,87],[1175,1,1,87,88],[1182,1,1,88,89],[1187,1,1,89,90]]]],[23227,23384,23464,23622,23623,23626,23664,24231,24269,24406,24455,24456,24468,24524,24667,24711,24885,25130,25217,25449,25825,26008,26080,26218,26219,26221,26222,26276,26323,26329,26393,26504,26532,26533,26577,26615,26916,27002,27004,27005,27008,27422,27424,27685,28072,28117,28120,28279,28295,28413,28504,28861,28884,28973,28974,29040,29178,29231,29239,29273,29289,29306,29312,29319,29438,29439,29475,29500,29524,29547,29582,29604,29615,29684,29689,30250,30473,30546,30547,30556,30561,30649,30651,30661,30662,30718,30750,30860,30969,31077]]],["+",[2,2,[[44,1,1,0,1,[[1059,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[28295,29289]]],["Walk",[3,3,[[42,1,1,0,1,[[1008,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[50,1,1,2,3,[[1110,1,1,2,3]]]],[26615,29178,29547]]],["about",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30473]]],["go",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24711]]],["therein",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30250]]],["walk",[52,51,[[39,3,3,0,3,[[937,1,1,0,1],[939,1,1,1,2],[943,1,1,2,3]]],[40,2,2,3,5,[[958,1,1,3,4],[963,1,1,4,5]]],[41,5,5,5,10,[[977,1,1,5,6],[979,1,1,6,7],[983,1,1,7,8],[992,1,1,8,9],[996,1,1,9,10]]],[42,7,7,10,17,[[1001,3,3,10,13],[1003,1,1,13,14],[1004,1,1,14,15],[1007,2,2,15,17]]],[43,3,3,17,20,[[1020,2,2,17,19],[1038,1,1,19,20]]],[44,4,4,20,24,[[1051,1,1,20,21],[1053,2,2,21,23],[1058,1,1,23,24]]],[45,2,2,24,26,[[1064,1,1,24,25],[1068,1,1,25,26]]],[46,2,2,26,28,[[1082,1,1,26,27],[1087,1,1,27,28]]],[48,6,6,28,34,[[1098,1,1,28,29],[1100,2,2,29,31],[1101,3,3,31,34]]],[49,2,2,34,36,[[1105,2,2,34,36]]],[50,2,2,36,38,[[1107,1,1,36,37],[1108,1,1,37,38]]],[51,3,3,38,41,[[1112,1,1,38,39],[1114,2,2,39,41]]],[52,1,1,41,42,[[1118,1,1,41,42]]],[61,3,3,42,45,[[1159,2,2,42,44],[1160,1,1,44,45]]],[62,2,1,45,46,[[1164,2,1,45,46]]],[63,1,1,46,47,[[1165,1,1,46,47]]],[65,4,4,47,51,[[1169,1,1,47,48],[1175,1,1,48,49],[1182,1,1,49,50],[1187,1,1,50,51]]]],[23384,23464,23664,24269,24468,25130,25217,25449,25825,26008,26218,26221,26222,26329,26393,26532,26533,27002,27008,27685,28072,28117,28120,28279,28413,28504,28884,28974,29239,29273,29289,29306,29312,29319,29438,29439,29475,29500,29582,29604,29615,29689,30546,30547,30556,30651,30662,30750,30860,30969,31077]]],["walked",[18,18,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,3,3,1,4,[[957,1,1,1,2],[961,1,1,2,3],[972,1,1,3,4]]],[42,6,6,4,10,[[997,1,1,4,5],[1001,1,1,5,6],[1002,1,1,6,7],[1003,1,1,7,8],[1006,1,1,8,9],[1007,1,1,9,10]]],[43,3,3,10,13,[[1020,1,1,10,11],[1031,2,2,11,13]]],[46,2,2,13,15,[[1087,1,1,13,14],[1089,1,1,14,15]]],[48,1,1,15,16,[[1098,1,1,15,16]]],[50,1,1,16,17,[[1109,1,1,16,17]]],[61,1,1,17,18,[[1160,1,1,17,18]]]],[23626,24231,24406,24885,26080,26219,26323,26329,26504,26577,27004,27422,27424,28973,29040,29231,29524,30556]]],["walkedst",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26916]]],["walkest",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30661]]],["walketh",[4,4,[[42,1,1,0,1,[[1008,1,1,0,1]]],[52,1,1,1,2,[[1118,1,1,1,2]]],[61,1,1,2,3,[[1160,1,1,2,3]]],[65,1,1,3,4,[[1168,1,1,3,4]]]],[26615,29684,30561,30718]]],["walking",[12,12,[[39,3,3,0,3,[[932,1,1,0,1],[942,2,2,1,3]]],[40,4,4,3,7,[[962,2,2,3,5],[964,1,1,5,6],[967,1,1,6,7]]],[42,1,1,7,8,[[1002,1,1,7,8]]],[43,2,2,8,10,[[1020,2,2,8,10]]],[46,1,1,10,11,[[1081,1,1,10,11]]],[62,1,1,11,12,[[1164,1,1,11,12]]]],[23227,23622,23623,24455,24456,24524,24667,26276,27004,27005,28861,30649]]]]},{"k":"G4044","v":[["+",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29798]]]]},{"k":"G4045","v":[["*",[3,3,[[41,1,1,0,1,[[982,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[25393,27896,30268]]],["among",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25393]]],["falling",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27896]]],["into",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30268]]]]},{"k":"G4046","v":[["*",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[53,1,1,1,2,[[1121,1,1,1,2]]]],[27654,29744]]],["purchase",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29744]]],["purchased",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27654]]]]},{"k":"G4047","v":[["*",[5,5,[[48,1,1,0,1,[[1097,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]],[57,1,1,3,4,[[1142,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[29220,29630,29675,30172,30408]]],["+",[3,3,[[51,1,1,0,1,[[1115,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]]],[29630,30172,30408]]],["obtaining",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29675]]],["possession",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29220]]]]},{"k":"G4048","v":[["off",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27505]]]]},{"k":"G4049","v":[["cumbered",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25403]]]]},{"k":"G4050","v":[["*",[4,4,[[44,1,1,0,1,[[1050,1,1,0,1]]],[46,2,2,1,3,[[1085,1,1,1,2],[1087,1,1,2,3]]],[58,1,1,3,4,[[1146,1,1,3,4]]]],[28064,28934,28986,30287]]],["+",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28986]]],["abundance",[2,2,[[44,1,1,0,1,[[1050,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]]],[28064,28934]]],["superfluity",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30287]]]]},{"k":"G4051","v":[["*",[5,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[46,2,1,3,4,[[1085,2,1,3,4]]]],[23523,24508,25191,28946]]],["abundance",[4,3,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[46,2,1,2,3,[[1085,2,1,2,3]]]],[23523,25191,28946]]],["left",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24508]]]]},{"k":"G4052","v":[["*",[39,35,[[39,5,5,0,5,[[933,1,1,0,1],[941,1,1,1,2],[942,1,1,2,3],[943,1,1,3,4],[953,1,1,4,5]]],[40,1,1,5,6,[[968,1,1,5,6]]],[41,4,4,6,10,[[981,1,1,6,7],[984,1,1,7,8],[987,1,1,8,9],[993,1,1,9,10]]],[42,2,2,10,12,[[1002,2,2,10,12]]],[43,1,1,12,13,[[1033,1,1,12,13]]],[44,3,3,13,16,[[1048,1,1,13,14],[1050,1,1,14,15],[1060,1,1,15,16]]],[45,3,3,16,19,[[1069,1,1,16,17],[1075,1,1,17,18],[1076,1,1,18,19]]],[46,10,7,19,26,[[1078,2,1,19,20],[1080,1,1,20,21],[1081,1,1,21,22],[1085,3,2,22,24],[1086,3,2,24,26]]],[48,1,1,26,27,[[1097,1,1,26,27]]],[49,5,4,27,31,[[1103,2,2,27,29],[1106,3,2,29,31]]],[50,1,1,31,32,[[1108,1,1,31,32]]],[51,3,3,32,35,[[1113,1,1,32,33],[1114,2,2,33,35]]]],[23254,23551,23617,23670,24037,24717,25318,25474,25605,25830,26269,26270,27488,27998,28062,28316,28535,28690,28776,28805,28850,28874,28934,28939,28964,28968,29214,29370,29387,29454,29460,29501,29602,29604,29613]]],["+",[4,4,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]],[46,1,1,2,3,[[1086,1,1,2,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]]],[23254,25605,28964,29454]]],["abound",[10,9,[[44,1,1,0,1,[[1060,1,1,0,1]]],[46,4,3,1,4,[[1078,1,1,1,2],[1085,2,1,2,3],[1086,1,1,3,4]]],[49,3,3,4,7,[[1103,1,1,4,5],[1106,2,2,5,7]]],[51,2,2,7,9,[[1113,1,1,7,8],[1114,1,1,8,9]]]],[28316,28805,28939,28964,29370,29454,29460,29602,29604]]],["abounded",[4,4,[[44,2,2,0,2,[[1048,1,1,0,1],[1050,1,1,1,2]]],[46,1,1,2,3,[[1085,1,1,2,3]]],[48,1,1,3,4,[[1097,1,1,3,4]]]],[27998,28062,28934,29214]]],["aboundeth",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28805]]],["abounding",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[28776,29501]]],["above",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26270]]],["abundance",[5,5,[[39,2,2,0,2,[[941,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,2,2,3,5,[[984,1,1,3,4],[993,1,1,4,5]]]],[23551,24037,24717,25474,25830]]],["abundant",[2,2,[[46,1,1,0,1,[[1086,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[28968,29387]]],["better",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28535]]],["exceed",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28850]]],["excel",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28690]]],["increase",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29613]]],["increased",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27488]]],["left",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23670]]],["redound",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28874]]],["remain",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26269]]],["remained",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[23617,25318]]]]},{"k":"G4053","v":[["*",[10,10,[[39,2,2,0,2,[[933,2,2,0,2]]],[40,2,2,2,4,[[962,1,1,2,3],[970,1,1,3,4]]],[42,1,1,4,5,[[1006,1,1,4,5]]],[44,1,1,5,6,[[1048,1,1,5,6]]],[46,1,1,6,7,[[1086,1,1,6,7]]],[48,1,1,7,8,[[1099,1,1,7,8]]],[51,2,2,8,10,[[1113,1,1,8,9],[1115,1,1,9,10]]]],[23271,23281,24458,24785,26491,27992,28957,29271,29600,29634]]],["+",[4,4,[[40,1,1,0,1,[[970,1,1,0,1]]],[48,1,1,1,2,[[1099,1,1,1,2]]],[51,2,2,2,4,[[1113,1,1,2,3],[1115,1,1,3,4]]]],[24785,29271,29600,29634]]],["abundantly",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26491]]],["advantage",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[27992]]],["measure",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24458]]],["more",[2,2,[[39,2,2,0,2,[[933,2,2,0,2]]]],[23271,23281]]],["superfluous",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28957]]]]},{"k":"G4054","v":[["*",[4,4,[[40,1,1,0,1,[[963,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[57,2,2,2,4,[[1138,1,1,2,3],[1139,1,1,3,4]]]],[24499,28728,30061,30079]]],["abundantly",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[28728,30061]]],["deal",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24499]]],["more",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30079]]]]},{"k":"G4055","v":[["*",[11,10,[[39,1,1,0,1,[[939,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,4,4,2,6,[[979,1,1,2,3],[984,2,2,3,5],[992,1,1,5,6]]],[45,3,2,6,8,[[1073,3,2,6,8]]],[46,2,2,8,10,[[1079,1,1,8,9],[1087,1,1,9,10]]]],[23468,24713,25221,25463,25507,25826,28657,28658,28831,28979]]],["+",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25463]]],["abundant",[3,2,[[45,3,2,0,2,[[1073,3,2,0,2]]]],[28657,28658]]],["greater",[2,2,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[992,1,1,1,2]]]],[24713,25826]]],["more",[4,4,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,2,2,1,3,[[979,1,1,1,2],[984,1,1,2,3]]],[46,1,1,3,4,[[1087,1,1,3,4]]]],[23468,25221,25507,28979]]],["overmuch",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28831]]]]},{"k":"G4056","v":[["*",[14,13,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[46,7,6,2,8,[[1078,1,1,2,3],[1079,1,1,3,4],[1084,2,2,4,6],[1088,2,1,6,7],[1089,1,1,7,8]]],[47,1,1,8,9,[[1091,1,1,8,9]]],[49,1,1,9,10,[[1103,1,1,9,10]]],[51,1,1,10,11,[[1112,1,1,10,11]]],[57,2,2,11,13,[[1134,1,1,11,12],[1145,1,1,12,13]]]],[23932,24840,28812,28828,28929,28931,29012,29037,29071,29375,29587,29978,30260]]],["+",[2,2,[[49,1,1,0,1,[[1103,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]]],[29375,29978]]],["abundant",[2,2,[[46,2,2,0,2,[[1084,1,1,0,1],[1088,1,1,1,2]]]],[28931,29012]]],["abundantly",[4,4,[[46,3,3,0,3,[[1078,1,1,0,1],[1079,1,1,1,2],[1089,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]]],[28812,28828,29037,29587]]],["exceedingly",[3,3,[[40,1,1,0,1,[[971,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]],[47,1,1,2,3,[[1091,1,1,2,3]]]],[24840,28929,29071]]],["frequent",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29012]]],["greater",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23932]]],["rather",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30260]]]]},{"k":"G4057","v":[["*",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[43,1,1,2,3,[[1043,1,1,2,3]]]],[24152,24614,27834]]],["+",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27834]]],["measure",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24614]]],["more",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24152]]]]},{"k":"G4058","v":[["*",[10,10,[[39,3,3,0,3,[[931,1,1,0,1],[938,1,1,1,2],[949,1,1,2,3]]],[40,2,2,3,5,[[957,1,1,3,4],[967,1,1,4,5]]],[41,2,2,5,7,[[974,1,1,5,6],[975,1,1,6,7]]],[42,3,3,7,10,[[997,1,1,7,8],[998,2,2,8,10]]]],[23208,23433,23838,24225,24655,24997,25047,26076,26109,26111]]],["dove",[4,4,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[975,1,1,2,3]]],[42,1,1,3,4,[[997,1,1,3,4]]]],[23208,24225,25047,26076]]],["doves",[5,5,[[39,2,2,0,2,[[938,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[967,1,1,2,3]]],[42,2,2,3,5,[[998,2,2,3,5]]]],[23433,23838,24655,26109,26111]]],["pigeons",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24997]]]]},{"k":"G4059","v":[["*",[18,16,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]],[42,1,1,2,3,[[1003,1,1,2,3]]],[43,6,6,3,9,[[1024,1,1,3,4],[1032,3,3,4,7],[1033,1,1,7,8],[1038,1,1,8,9]]],[45,2,1,9,10,[[1068,2,1,9,10]]],[47,6,5,10,15,[[1092,1,1,10,11],[1095,2,2,11,13],[1096,3,2,13,15]]],[50,1,1,15,16,[[1108,1,1,15,16]]]],[24952,24994,26350,27124,27443,27447,27466,27486,27685,28505,29084,29164,29165,29200,29201,29505]]],["circumcise",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[42,1,1,1,2,[[1003,1,1,1,2]]],[43,2,2,2,4,[[1032,1,1,2,3],[1038,1,1,3,4]]]],[24952,26350,27447,27685]]],["circumcised",[13,11,[[43,4,4,0,4,[[1024,1,1,0,1],[1032,2,2,1,3],[1033,1,1,3,4]]],[45,2,1,4,5,[[1068,2,1,4,5]]],[47,6,5,5,10,[[1092,1,1,5,6],[1095,2,2,6,8],[1096,3,2,8,10]]],[50,1,1,10,11,[[1108,1,1,10,11]]]],[27124,27443,27466,27486,28505,29084,29164,29165,29200,29201,29505]]],["circumcising",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24994]]]]},{"k":"G4060","v":[["*",[8,8,[[39,3,3,0,3,[[949,1,1,0,1],[955,2,2,1,3]]],[40,3,3,3,6,[[968,1,1,3,4],[971,2,2,4,6]]],[42,1,1,6,7,[[1015,1,1,6,7]]],[45,1,1,7,8,[[1073,1,1,7,8]]]],[23859,24157,24177,24674,24843,24862,26854,28657]]],["+",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]]],[23859,24674]]],["about",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24843]]],["bestow",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28657]]],["on",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24157,24862]]],["put",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24177]]],["upon",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26854]]]]},{"k":"G4061","v":[["*",[36,32,[[42,2,2,0,2,[[1003,2,2,0,2]]],[43,3,3,2,5,[[1024,1,1,2,3],[1027,1,1,3,4],[1028,1,1,4,5]]],[44,15,12,5,17,[[1047,6,5,5,10],[1048,2,2,10,12],[1049,6,4,12,16],[1060,1,1,16,17]]],[45,1,1,17,18,[[1068,1,1,17,18]]],[47,7,7,18,25,[[1092,4,4,18,22],[1095,2,2,22,24],[1096,1,1,24,25]]],[48,1,1,25,26,[[1098,1,1,25,26]]],[49,2,2,26,28,[[1105,2,2,26,28]]],[50,4,3,28,31,[[1108,2,1,28,29],[1109,1,1,29,30],[1110,1,1,30,31]]],[55,1,1,31,32,[[1129,1,1,31,32]]]],[26350,26351,27124,27304,27309,27987,27988,27989,27990,27991,27992,28021,28031,28032,28033,28034,28311,28506,29088,29089,29090,29093,29168,29173,29203,29240,29424,29426,29505,29528,29553,29902]]],["+",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27304]]],["Circumcised",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29426]]],["Circumcision",[2,2,[[45,1,1,0,1,[[1068,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]]],[28506,29240]]],["circumcision",[32,28,[[42,2,2,0,2,[[1003,2,2,0,2]]],[43,2,2,2,4,[[1024,1,1,2,3],[1028,1,1,3,4]]],[44,15,12,4,16,[[1047,6,5,4,9],[1048,2,2,9,11],[1049,6,4,11,15],[1060,1,1,15,16]]],[47,7,7,16,23,[[1092,4,4,16,20],[1095,2,2,20,22],[1096,1,1,22,23]]],[49,1,1,23,24,[[1105,1,1,23,24]]],[50,4,3,24,27,[[1108,2,1,24,25],[1109,1,1,25,26],[1110,1,1,26,27]]],[55,1,1,27,28,[[1129,1,1,27,28]]]],[26350,26351,27124,27309,27987,27988,27989,27990,27991,27992,28021,28031,28032,28033,28034,28311,29088,29089,29090,29093,29168,29173,29203,29424,29505,29528,29553,29902]]]]},{"k":"G4062","v":[["make",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27847]]]]},{"k":"G4063","v":[["through",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24462]]]]},{"k":"G4064","v":[["about",[5,5,[[40,1,1,0,1,[[962,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[24462,28869,29286,30250,30684]]]]},{"k":"G4065","v":[["despise",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29923]]]]},{"k":"G4066","v":[["*",[10,10,[[39,2,2,0,2,[[931,1,1,0,1],[942,1,1,1,2]]],[40,2,2,2,4,[[957,1,1,2,3],[962,1,1,3,4]]],[41,5,5,4,9,[[975,1,1,4,5],[976,2,2,5,7],[979,1,1,7,8],[980,1,1,8,9]]],[43,1,1,9,10,[[1031,1,1,9,10]]]],[23197,23632,24243,24462,25028,25077,25100,25212,25282,27420]]],["+",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25282]]],["about",[9,9,[[39,2,2,0,2,[[931,1,1,0,1],[942,1,1,1,2]]],[40,2,2,2,4,[[957,1,1,2,3],[962,1,1,3,4]]],[41,4,4,4,8,[[975,1,1,4,5],[976,2,2,5,7],[979,1,1,7,8]]],[43,1,1,8,9,[[1031,1,1,8,9]]]],[23197,23632,24243,24462,25028,25077,25100,25212,27420]]]]},{"k":"G4067","v":[["offscouring",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28446]]]]},{"k":"G4068","v":[["+",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28669]]]]},{"k":"G4069","v":[["Persis",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28348]]]]},{"k":"G4070","v":[["+",[2,2,[[46,2,2,0,2,[[1085,1,1,0,1],[1086,1,1,1,2]]]],[28942,28958]]]]},{"k":"G4071","v":[["*",[14,14,[[39,4,4,0,4,[[934,1,1,0,1],[936,1,1,1,2],[941,2,2,2,4]]],[40,2,2,4,6,[[960,2,2,4,6]]],[41,4,4,6,10,[[980,1,1,6,7],[981,1,1,7,8],[984,1,1,8,9],[985,1,1,9,10]]],[43,2,2,10,12,[[1027,1,1,10,11],[1028,1,1,11,12]]],[44,1,1,12,13,[[1046,1,1,12,13]]],[58,1,1,13,14,[[1148,1,1,13,14]]]],[23308,23365,23543,23571,24327,24355,25250,25359,25483,25537,27271,27313,27953,30326]]],["birds",[5,5,[[39,2,2,0,2,[[936,1,1,0,1],[941,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[44,1,1,3,4,[[1046,1,1,3,4]]],[58,1,1,4,5,[[1148,1,1,4,5]]]],[23365,23571,25359,27953,30326]]],["fowls",[9,9,[[39,2,2,0,2,[[934,1,1,0,1],[941,1,1,1,2]]],[40,2,2,2,4,[[960,2,2,2,4]]],[41,3,3,4,7,[[980,1,1,4,5],[984,1,1,5,6],[985,1,1,6,7]]],[43,2,2,7,9,[[1027,1,1,7,8],[1028,1,1,8,9]]]],[23308,23543,24327,24355,25250,25483,25537,27271,27313]]]]},{"k":"G4072","v":[["*",[5,5,[[65,5,5,0,5,[[1170,1,1,0,1],[1174,1,1,1,2],[1178,1,1,2,3],[1180,1,1,3,4],[1185,1,1,4,5]]]],[30775,30840,30905,30932,31034]]],["fly",[3,3,[[65,3,3,0,3,[[1178,1,1,0,1],[1180,1,1,1,2],[1185,1,1,2,3]]]],[30905,30932,31034]]],["flying",[2,2,[[65,2,2,0,2,[[1170,1,1,0,1],[1174,1,1,1,2]]]],[30775,30840]]]]},{"k":"G4073","v":[["*",[16,14,[[39,5,5,0,5,[[935,2,2,0,2],[944,1,1,2,3],[955,2,2,3,5]]],[40,1,1,5,6,[[971,1,1,5,6]]],[41,4,3,6,9,[[978,2,1,6,7],[980,2,2,7,9]]],[44,1,1,9,10,[[1054,1,1,9,10]]],[45,2,1,10,11,[[1071,2,1,10,11]]],[59,1,1,11,12,[[1152,1,1,11,12]]],[65,2,2,12,14,[[1172,2,2,12,14]]]],[23340,23341,23690,24180,24189,24872,25194,25251,25258,28188,28571,30407,30808,30809]]],["Rock",[2,1,[[45,2,1,0,1,[[1071,2,1,0,1]]]],[28571]]],["rock",[11,10,[[39,4,4,0,4,[[935,2,2,0,2],[944,1,1,2,3],[955,1,1,3,4]]],[40,1,1,4,5,[[971,1,1,4,5]]],[41,4,3,5,8,[[978,2,1,5,6],[980,2,2,6,8]]],[44,1,1,8,9,[[1054,1,1,8,9]]],[59,1,1,9,10,[[1152,1,1,9,10]]]],[23340,23341,23690,24189,24872,25194,25251,25258,28188,30407]]],["rocks",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[65,2,2,1,3,[[1172,2,2,1,3]]]],[24180,30808,30809]]]]},{"k":"G4074","v":[["*",[162,157,[[39,24,24,0,24,[[932,1,1,0,1],[936,1,1,1,2],[938,1,1,2,3],[942,2,2,3,5],[943,1,1,5,6],[944,4,4,6,10],[945,4,4,10,14],[946,1,1,14,15],[947,1,1,15,16],[954,8,8,16,24]]],[40,19,19,24,43,[[959,1,1,24,25],[961,1,1,25,26],[964,3,3,26,29],[965,2,2,29,31],[966,1,1,31,32],[967,1,1,32,33],[969,1,1,33,34],[970,8,8,34,42],[972,1,1,42,43]]],[41,20,19,43,62,[[977,1,1,43,44],[978,1,1,44,45],[980,2,2,45,47],[981,4,4,47,51],[984,1,1,51,52],[990,1,1,52,53],[994,9,8,53,61],[996,1,1,61,62]]],[42,34,32,62,94,[[997,3,3,62,65],[1002,2,2,65,67],[1009,6,6,67,73],[1014,10,9,73,82],[1016,4,4,82,86],[1017,9,8,86,94]]],[43,58,56,94,150,[[1018,2,2,94,96],[1019,3,3,96,99],[1020,6,6,99,105],[1021,3,3,105,108],[1022,5,5,108,113],[1025,2,2,113,115],[1026,6,5,115,120],[1027,16,16,120,136],[1028,4,4,136,140],[1029,10,9,140,149],[1032,1,1,149,150]]],[47,5,5,150,155,[[1091,1,1,150,151],[1092,4,4,151,155]]],[59,1,1,155,156,[[1151,1,1,155,156]]],[60,1,1,156,157,[[1156,1,1,156,157]]]],[23227,23359,23419,23625,23626,23648,23688,23690,23694,23695,23701,23704,23724,23726,23748,23789,24087,24089,24091,24094,24112,24123,24127,24129,24304,24401,24529,24532,24533,24540,24543,24616,24661,24720,24783,24787,24791,24808,24820,24821,24824,24826,24880,25115,25160,25290,25296,25321,25329,25333,25334,25500,25716,25872,25898,25918,25919,25922,25924,25925,25926,26003,26084,26086,26088,26265,26325,26636,26638,26639,26654,26666,26667,26795,26796,26800,26801,26802,26803,26810,26811,26812,26869,26870,26871,26873,26900,26901,26905,26909,26913,26915,26918,26919,26936,26938,26963,26986,26987,26997,26999,27000,27002,27007,27008,27030,27035,27041,27062,27067,27068,27074,27088,27190,27196,27248,27250,27254,27255,27256,27264,27268,27272,27273,27276,27277,27278,27280,27282,27284,27285,27291,27293,27303,27304,27305,27309,27311,27314,27320,27340,27342,27343,27344,27348,27350,27351,27353,27355,27449,29075,29088,29089,29092,29095,30375,30480]]],["+",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23701]]],["Peter",[156,152,[[39,22,22,0,22,[[932,1,1,0,1],[938,1,1,1,2],[942,2,2,2,4],[943,1,1,4,5],[944,4,4,5,9],[945,3,3,9,12],[946,1,1,12,13],[947,1,1,13,14],[954,8,8,14,22]]],[40,19,19,22,41,[[959,1,1,22,23],[961,1,1,23,24],[964,3,3,24,27],[965,2,2,27,29],[966,1,1,29,30],[967,1,1,30,31],[969,1,1,31,32],[970,8,8,32,40],[972,1,1,40,41]]],[41,20,19,41,60,[[977,1,1,41,42],[978,1,1,42,43],[980,2,2,43,45],[981,4,4,45,49],[984,1,1,49,50],[990,1,1,50,51],[994,9,8,51,59],[996,1,1,59,60]]],[42,31,29,60,89,[[997,1,1,60,61],[1002,1,1,61,62],[1009,6,6,62,68],[1014,10,9,68,77],[1016,4,4,77,81],[1017,9,8,81,89]]],[43,57,56,89,145,[[1018,2,2,89,91],[1019,3,3,91,94],[1020,6,6,94,100],[1021,3,3,100,103],[1022,5,5,103,108],[1025,2,2,108,110],[1026,6,5,110,115],[1027,16,16,115,131],[1028,4,4,131,135],[1029,9,9,135,144],[1032,1,1,144,145]]],[47,5,5,145,150,[[1091,1,1,145,146],[1092,4,4,146,150]]],[59,1,1,150,151,[[1151,1,1,150,151]]],[60,1,1,151,152,[[1156,1,1,151,152]]]],[23227,23419,23625,23626,23648,23688,23690,23694,23695,23704,23724,23726,23748,23789,24087,24089,24091,24094,24112,24123,24127,24129,24304,24401,24529,24532,24533,24540,24543,24616,24661,24720,24783,24787,24791,24808,24820,24821,24824,24826,24880,25115,25160,25290,25296,25321,25329,25333,25334,25500,25716,25872,25898,25918,25919,25922,25924,25925,25926,26003,26088,26325,26636,26638,26639,26654,26666,26667,26795,26796,26800,26801,26802,26803,26810,26811,26812,26869,26870,26871,26873,26900,26901,26905,26909,26913,26915,26918,26919,26936,26938,26963,26986,26987,26997,26999,27000,27002,27007,27008,27030,27035,27041,27062,27067,27068,27074,27088,27190,27196,27248,27250,27254,27255,27256,27264,27268,27272,27273,27276,27277,27278,27280,27282,27284,27285,27291,27293,27303,27304,27305,27309,27311,27314,27320,27340,27342,27343,27344,27348,27350,27351,27353,27355,27449,29075,29088,29089,29092,29095,30375,30480]]],["Peter's",[4,4,[[39,1,1,0,1,[[936,1,1,0,1]]],[42,2,2,1,3,[[997,1,1,1,2],[1002,1,1,2,3]]],[43,1,1,3,4,[[1029,1,1,3,4]]]],[23359,26084,26265,27351]]],["stone",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26086]]]]},{"k":"G4075","v":[["*",[4,4,[[39,2,2,0,2,[[941,2,2,0,2]]],[40,2,2,2,4,[[960,2,2,2,4]]]],[23544,23559,24328,24339]]],["ground",[2,2,[[40,2,2,0,2,[[960,2,2,0,2]]]],[24328,24339]]],["places",[2,2,[[39,2,2,0,2,[[941,2,2,0,2]]]],[23544,23559]]]]},{"k":"G4076","v":[["rue",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25447]]]]},{"k":"G4077","v":[["*",[12,11,[[40,1,1,0,1,[[961,1,1,0,1]]],[42,3,2,1,3,[[1000,3,2,1,3]]],[58,2,2,3,5,[[1148,2,2,3,5]]],[60,1,1,5,6,[[1157,1,1,5,6]]],[65,5,5,6,11,[[1173,1,1,6,7],[1174,1,1,7,8],[1180,1,1,8,9],[1182,1,1,9,10],[1187,1,1,10,11]]]],[24393,26162,26170,30330,30331,30517,30827,30837,30933,30958,31059]]],["fountain",[4,4,[[40,1,1,0,1,[[961,1,1,0,1]]],[58,2,2,1,3,[[1148,2,2,1,3]]],[65,1,1,3,4,[[1187,1,1,3,4]]]],[24393,30330,30331,31059]]],["fountains",[4,4,[[65,4,4,0,4,[[1173,1,1,0,1],[1174,1,1,1,2],[1180,1,1,2,3],[1182,1,1,3,4]]]],[30827,30837,30933,30958]]],["well",[3,2,[[42,3,2,0,2,[[1000,3,2,0,2]]]],[26162,26170]]],["wells",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30517]]]]},{"k":"G4078","v":[["pitched",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30094]]]]},{"k":"G4079","v":[["*",[2,2,[[43,1,1,0,1,[[1044,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[27895,30323]]],["helm",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30323]]],["rudder",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27895]]]]},{"k":"G4080","v":[["*",[2,2,[[47,1,1,0,1,[[1096,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[29199,30068]]],["great",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30068]]],["large",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29199]]]]},{"k":"G4081","v":[["clay",[6,5,[[42,5,4,0,4,[[1005,5,4,0,4]]],[44,1,1,4,5,[[1054,1,1,4,5]]]],[26446,26451,26454,26455,28176]]]]},{"k":"G4082","v":[["scrip",[6,6,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,4,4,2,6,[[981,1,1,2,3],[982,1,1,3,4],[994,2,2,4,6]]]],[23427,24415,25304,25367,25899,25900]]]]},{"k":"G4083","v":[["*",[4,4,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]],[65,1,1,3,4,[[1187,1,1,3,4]]]],[23309,25484,26906,31070]]],["cubit",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23309,25484]]],["cubits",[2,2,[[42,1,1,0,1,[[1017,1,1,0,1]]],[65,1,1,1,2,[[1187,1,1,1,2]]]],[26906,31070]]]]},{"k":"G4084","v":[["*",[12,12,[[42,8,8,0,8,[[1003,3,3,0,3],[1004,1,1,3,4],[1006,1,1,4,5],[1007,1,1,5,6],[1017,2,2,6,8]]],[43,2,2,8,10,[[1020,1,1,8,9],[1029,1,1,9,10]]],[46,1,1,10,11,[[1088,1,1,10,11]]],[65,1,1,11,12,[[1185,1,1,11,12]]]],[26358,26360,26372,26401,26520,26580,26901,26908,27003,27341,29021,31037]]],["apprehend",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29021]]],["apprehended",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27341]]],["caught",[2,2,[[42,2,2,0,2,[[1017,2,2,0,2]]]],[26901,26908]]],["on",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26401]]],["take",[4,4,[[42,4,4,0,4,[[1003,2,2,0,2],[1006,1,1,2,3],[1007,1,1,3,4]]]],[26358,26360,26520,26580]]],["taken",[2,2,[[42,1,1,0,1,[[1003,1,1,0,1]]],[65,1,1,1,2,[[1185,1,1,1,2]]]],[26372,31037]]],["took",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27003]]]]},{"k":"G4085","v":[["down",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25184]]]]},{"k":"G4086","v":[["words",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29498]]]]},{"k":"G4087","v":[["*",[4,4,[[50,1,1,0,1,[[1109,1,1,0,1]]],[65,3,3,1,4,[[1174,1,1,1,2],[1176,2,2,2,4]]]],[29536,30838,30870,30871]]],["+",[2,2,[[50,1,1,0,1,[[1109,1,1,0,1]]],[65,1,1,1,2,[[1176,1,1,1,2]]]],[29536,30870]]],["bitter",[2,2,[[65,2,2,0,2,[[1174,1,1,0,1],[1176,1,1,1,2]]]],[30838,30871]]]]},{"k":"G4088","v":[["bitterness",[4,4,[[43,1,1,0,1,[[1025,1,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]]],[27199,28005,29303,30227]]]]},{"k":"G4089","v":[["bitter",[2,2,[[58,2,2,0,2,[[1148,2,2,0,2]]]],[30330,30333]]]]},{"k":"G4090","v":[["bitterly",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24129,25926]]]]},{"k":"G4091","v":[["Pilate",[55,53,[[39,9,8,0,8,[[955,9,8,0,8]]],[40,10,10,8,18,[[971,10,10,8,18]]],[41,12,12,18,30,[[975,1,1,18,19],[985,1,1,19,20],[995,10,10,20,30]]],[42,20,19,30,49,[[1014,6,6,30,36],[1015,14,13,36,49]]],[43,3,3,49,52,[[1020,1,1,49,50],[1021,1,1,50,51],[1030,1,1,51,52]]],[53,1,1,52,53,[[1124,1,1,52,53]]]],[24131,24142,24146,24151,24153,24187,24191,24194,24827,24828,24830,24831,24835,24838,24840,24841,24869,24870,25026,25519,25936,25938,25939,25941,25946,25947,25948,25955,25959,25987,26814,26816,26818,26820,26822,26823,26826,26829,26831,26833,26835,26837,26838,26840,26844,26846,26847,26856,26863,27009,27049,27390,29801]]]]},{"k":"G4092","v":[["swollen",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27905]]]]},{"k":"G4093","v":[["table",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24956]]]]},{"k":"G4094","v":[["*",[5,5,[[39,2,2,0,2,[[942,2,2,0,2]]],[40,2,2,2,4,[[962,2,2,2,4]]],[41,1,1,4,5,[[983,1,1,4,5]]]],[23605,23608,24432,24435,25444]]],["charger",[4,4,[[39,2,2,0,2,[[942,2,2,0,2]]],[40,2,2,2,4,[[962,2,2,2,4]]]],[23605,23608,24432,24435]]],["platter",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25444]]]]},{"k":"G4095","v":[["*",[75,66,[[39,15,12,0,12,[[934,2,2,0,2],[939,2,2,2,4],[948,3,2,4,6],[952,2,2,6,8],[954,4,3,8,11],[955,2,1,11,12]]],[40,10,7,12,19,[[958,1,1,12,13],[966,4,2,13,15],[970,3,2,15,17],[971,1,1,17,18],[972,1,1,18,19]]],[41,17,16,19,35,[[973,1,1,19,20],[977,3,3,20,23],[979,2,2,23,25],[982,1,1,25,26],[984,3,3,26,29],[985,1,1,29,30],[989,4,3,30,33],[994,2,2,33,35]]],[42,11,11,35,46,[[1000,6,6,35,41],[1002,3,3,41,44],[1003,1,1,44,45],[1014,1,1,45,46]]],[43,3,3,46,49,[[1026,1,1,46,47],[1040,2,2,47,49]]],[44,1,1,49,50,[[1059,1,1,49,50]]],[45,14,12,50,62,[[1070,1,1,50,51],[1071,5,4,51,55],[1072,7,6,55,61],[1076,1,1,61,62]]],[57,1,1,62,63,[[1138,1,1,62,63]]],[65,3,3,63,66,[[1180,1,1,63,64],[1182,1,1,64,65],[1184,1,1,65,66]]]],[23307,23313,23477,23478,23814,23815,23995,24006,24081,24083,24096,24163,24276,24626,24627,24777,24779,24849,24891,24908,25137,25140,25146,25228,25229,25370,25478,25488,25504,25544,25659,25678,25679,25882,25894,26163,26165,26166,26168,26169,26170,26310,26311,26313,26365,26796,27225,27746,27755,28301,28544,28571,28574,28588,28598,28622,28625,28626,28627,28628,28629,28750,30051,30936,30960,30996]]],["+",[2,2,[[45,2,2,0,2,[[1072,2,2,0,2]]]],[28625,28626]]],["Drink",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24081]]],["drank",[5,5,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,2,2,1,3,[[989,2,2,1,3]]],[42,1,1,3,4,[[1000,1,1,3,4]]],[45,1,1,4,5,[[1071,1,1,4,5]]]],[24777,25678,25679,26168,28571]]],["drink",[49,43,[[39,11,8,0,8,[[934,2,2,0,2],[948,3,2,2,4],[952,1,1,4,5],[954,3,2,5,7],[955,2,1,7,8]]],[40,8,5,8,13,[[966,4,2,8,10],[970,2,1,10,11],[971,1,1,11,12],[972,1,1,12,13]]],[41,9,9,13,22,[[973,1,1,13,14],[977,2,2,14,16],[984,3,3,16,19],[989,1,1,19,20],[994,2,2,20,22]]],[42,6,6,22,28,[[1000,3,3,22,25],[1002,1,1,25,26],[1003,1,1,26,27],[1014,1,1,27,28]]],[43,3,3,28,31,[[1026,1,1,28,29],[1040,2,2,29,31]]],[44,1,1,31,32,[[1059,1,1,31,32]]],[45,9,9,32,41,[[1070,1,1,32,33],[1071,4,4,33,37],[1072,3,3,37,40],[1076,1,1,40,41]]],[65,2,2,41,43,[[1180,1,1,41,42],[1182,1,1,42,43]]]],[23307,23313,23814,23815,24006,24083,24096,24163,24626,24627,24779,24849,24891,24908,25137,25140,25478,25488,25504,25659,25882,25894,26163,26165,26166,26310,26365,26796,27225,27746,27755,28301,28544,28571,28574,28588,28598,28622,28627,28628,28750,30936,30960]]],["drinketh",[7,6,[[40,1,1,0,1,[[958,1,1,0,1]]],[42,4,4,1,5,[[1000,2,2,1,3],[1002,2,2,3,5]]],[45,2,1,5,6,[[1072,2,1,5,6]]]],[24276,26169,26170,26311,26313,28629]]],["drinking",[6,6,[[39,3,3,0,3,[[939,2,2,0,2],[952,1,1,2,3]]],[41,3,3,3,6,[[979,2,2,3,5],[982,1,1,5,6]]]],[23477,23478,23995,25228,25229,25370]]],["drunk",[3,3,[[41,2,2,0,2,[[977,1,1,0,1],[985,1,1,1,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[25146,25544,30996]]],["drunken",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25659]]],["in",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30051]]]]},{"k":"G4096","v":[["fatness",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28226]]]]},{"k":"G4097","v":[["sold",[9,9,[[39,3,3,0,3,[[941,1,1,0,1],[946,1,1,1,2],[954,1,1,2,3]]],[40,1,1,3,4,[[970,1,1,3,4]]],[42,1,1,4,5,[[1008,1,1,4,5]]],[43,3,3,5,8,[[1019,1,1,5,6],[1021,1,1,6,7],[1022,1,1,7,8]]],[44,1,1,8,9,[[1052,1,1,8,9]]]],[23585,23752,24063,24759,26585,26994,27056,27063,28105]]]]},{"k":"G4098","v":[["*",[90,85,[[39,19,18,0,18,[[930,1,1,0,1],[932,1,1,1,2],[935,2,2,2,4],[938,1,1,4,5],[941,4,4,5,9],[943,2,2,9,11],[945,2,2,11,13],[946,2,2,13,15],[949,2,1,15,16],[952,1,1,16,17],[954,1,1,17,18]]],[40,7,7,18,25,[[960,4,4,18,22],[961,1,1,22,23],[965,1,1,23,24],[970,1,1,24,25]]],[41,19,18,25,43,[[977,1,1,25,26],[978,2,2,26,28],[980,6,6,28,34],[982,1,1,34,35],[983,1,1,35,36],[985,1,1,36,37],[988,2,2,37,39],[989,1,1,39,40],[992,2,1,40,41],[993,1,1,41,42],[995,1,1,42,43]]],[42,3,3,43,46,[[1007,1,1,43,44],[1008,1,1,44,45],[1014,1,1,45,46]]],[43,9,9,46,55,[[1018,1,1,46,47],[1022,2,2,47,49],[1026,1,1,49,50],[1027,1,1,50,51],[1032,1,1,51,52],[1037,1,1,52,53],[1039,1,1,53,54],[1044,1,1,54,55]]],[44,3,3,55,58,[[1056,2,2,55,57],[1059,1,1,57,58]]],[45,3,3,58,61,[[1071,2,2,58,60],[1075,1,1,60,61]]],[57,3,3,61,64,[[1135,1,1,61,62],[1136,1,1,62,63],[1143,1,1,63,64]]],[58,1,1,64,65,[[1150,1,1,64,65]]],[65,23,20,65,85,[[1167,1,1,65,66],[1170,1,1,66,67],[1171,2,2,67,69],[1172,2,2,69,71],[1173,2,2,71,73],[1174,2,1,73,74],[1175,1,1,74,75],[1177,3,3,75,78],[1180,2,1,78,79],[1182,1,1,79,80],[1183,1,1,80,81],[1184,2,1,81,82],[1185,2,2,82,84],[1188,1,1,84,85]]]],[23180,23218,23341,23343,23446,23543,23544,23546,23547,23647,23660,23706,23715,23753,23756,23870,23986,24093,24327,24328,24330,24331,24386,24558,24789,25119,25185,25195,25250,25251,25252,25253,25259,25286,25381,25422,25522,25637,25641,25667,25797,25850,25965,26555,26604,26791,26949,27064,27069,27220,27284,27458,27635,27711,27889,28220,28231,28284,28575,28579,28703,30012,30025,30202,30366,30714,30778,30787,30793,30806,30809,30821,30826,30837,30841,30883,30885,30888,30934,30973,30985,30995,31021,31027,31088]]],["Fall",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[65,1,1,1,2,[[1172,1,1,1,2]]]],[25965,30809]]],["down",[18,18,[[39,4,4,0,4,[[930,1,1,0,1],[932,1,1,1,2],[946,2,2,2,4]]],[41,2,2,4,6,[[980,1,1,4,5],[989,1,1,5,6]]],[42,1,1,6,7,[[1007,1,1,6,7]]],[43,4,4,7,11,[[1022,2,2,7,9],[1027,1,1,9,10],[1032,1,1,10,11]]],[45,1,1,11,12,[[1075,1,1,11,12]]],[57,1,1,12,13,[[1143,1,1,12,13]]],[65,5,5,13,18,[[1170,1,1,13,14],[1171,2,2,14,16],[1185,1,1,16,17],[1188,1,1,17,18]]]],[23180,23218,23753,23756,25286,25667,26555,27064,27069,27284,27458,28703,30202,30778,30787,30793,31021,31088]]],["fail",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25637]]],["fall",[18,16,[[39,6,5,0,5,[[938,1,1,0,1],[943,2,2,1,3],[949,2,1,3,4],[952,1,1,4,5]]],[41,5,4,5,9,[[978,1,1,5,6],[982,1,1,6,7],[992,2,1,7,8],[993,1,1,8,9]]],[42,1,1,9,10,[[1008,1,1,9,10]]],[43,1,1,10,11,[[1044,1,1,10,11]]],[44,1,1,11,12,[[1056,1,1,11,12]]],[45,1,1,12,13,[[1071,1,1,12,13]]],[57,1,1,13,14,[[1136,1,1,13,14]]],[58,1,1,14,15,[[1150,1,1,14,15]]],[65,1,1,15,16,[[1175,1,1,15,16]]]],[23446,23647,23660,23870,23986,25185,25381,25797,25850,26604,27889,28220,28579,30025,30366,30841]]],["fallen",[5,3,[[65,5,3,0,3,[[1180,2,1,0,1],[1183,1,1,1,2],[1184,2,1,2,3]]]],[30934,30985,30995]]],["falleth",[3,3,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[44,1,1,2,3,[[1059,1,1,2,3]]]],[23715,25422,28284]]],["fell",[42,41,[[39,8,8,0,8,[[935,2,2,0,2],[941,4,4,2,6],[945,1,1,6,7],[954,1,1,7,8]]],[40,7,7,8,15,[[960,4,4,8,12],[961,1,1,12,13],[965,1,1,13,14],[970,1,1,14,15]]],[41,9,9,15,24,[[977,1,1,15,16],[978,1,1,16,17],[980,5,5,17,22],[985,1,1,22,23],[988,1,1,23,24]]],[42,1,1,24,25,[[1014,1,1,24,25]]],[43,4,4,25,29,[[1018,1,1,25,26],[1026,1,1,26,27],[1037,1,1,27,28],[1039,1,1,28,29]]],[44,1,1,29,30,[[1056,1,1,29,30]]],[45,1,1,30,31,[[1071,1,1,30,31]]],[57,1,1,31,32,[[1135,1,1,31,32]]],[65,10,9,32,41,[[1167,1,1,32,33],[1172,1,1,33,34],[1173,1,1,34,35],[1174,2,1,35,36],[1177,3,3,36,39],[1182,1,1,39,40],[1185,1,1,40,41]]]],[23341,23343,23543,23544,23546,23547,23706,24093,24327,24328,24330,24331,24386,24558,24789,25119,25195,25250,25251,25252,25253,25259,25522,25641,26791,26949,27220,27635,27711,28231,28575,30012,30714,30806,30821,30837,30883,30885,30888,30973,31027]]],["light",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30826]]]]},{"k":"G4099","v":[["Pisidia",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1031,1,1,1,2]]]],[27376,27438]]]]},{"k":"G4100","v":[["*",[248,220,[[39,11,9,0,9,[[936,1,1,0,1],[937,1,1,1,2],[946,1,1,2,3],[949,5,3,3,6],[952,2,2,6,8],[955,1,1,8,9]]],[40,15,14,9,23,[[957,1,1,9,10],[961,1,1,10,11],[965,4,3,11,14],[967,3,3,14,17],[969,1,1,17,18],[971,1,1,18,19],[972,4,4,19,23]]],[41,9,9,23,32,[[973,2,2,23,25],[980,3,3,25,28],[988,1,1,28,29],[992,1,1,29,30],[994,1,1,30,31],[996,1,1,31,32]]],[42,100,86,32,118,[[997,3,3,32,35],[998,4,4,35,39],[999,8,5,39,44],[1000,7,7,44,51],[1001,7,5,51,56],[1002,9,8,56,64],[1003,5,5,64,69],[1004,5,5,69,74],[1005,4,4,74,78],[1006,7,5,78,83],[1007,9,8,83,91],[1008,10,9,91,100],[1009,1,1,100,101],[1010,7,5,101,106],[1012,4,4,106,110],[1013,3,3,110,113],[1015,1,1,113,114],[1016,6,4,114,118]]],[43,39,36,118,154,[[1019,1,1,118,119],[1021,2,2,119,121],[1022,1,1,121,122],[1025,4,3,122,125],[1026,2,2,125,127],[1027,1,1,127,128],[1028,2,2,128,130],[1030,4,4,130,134],[1031,2,2,134,136],[1032,3,3,136,139],[1033,2,2,139,141],[1034,2,2,141,143],[1035,3,2,143,145],[1036,3,3,145,148],[1038,2,2,148,150],[1039,1,1,150,151],[1041,1,1,151,152],[1043,2,1,152,153],[1044,1,1,153,154]]],[44,21,20,154,174,[[1046,1,1,154,155],[1048,2,2,155,157],[1049,6,6,157,163],[1051,1,1,163,164],[1054,1,1,164,165],[1055,7,6,165,171],[1058,1,1,171,172],[1059,1,1,172,173],[1060,1,1,173,174]]],[45,9,8,174,182,[[1062,1,1,174,175],[1064,1,1,175,176],[1070,1,1,176,177],[1072,1,1,177,178],[1074,1,1,178,179],[1075,2,1,179,180],[1076,2,2,180,182]]],[46,2,1,182,183,[[1081,2,1,182,183]]],[47,4,4,183,187,[[1092,2,2,183,185],[1093,2,2,185,187]]],[48,2,2,187,189,[[1097,2,2,187,189]]],[49,1,1,189,190,[[1103,1,1,189,190]]],[51,5,5,190,195,[[1111,1,1,190,191],[1112,3,3,191,194],[1114,1,1,194,195]]],[52,4,3,195,198,[[1116,2,1,195,196],[1117,2,2,196,198]]],[53,3,3,198,201,[[1119,2,2,198,200],[1121,1,1,200,201]]],[54,1,1,201,202,[[1125,1,1,201,202]]],[55,2,2,202,204,[[1129,1,1,202,203],[1131,1,1,203,204]]],[57,2,2,204,206,[[1136,1,1,204,205],[1143,1,1,205,206]]],[58,3,2,206,208,[[1147,3,2,206,208]]],[59,4,4,208,212,[[1151,2,2,208,210],[1152,2,2,210,212]]],[61,10,7,212,219,[[1161,1,1,212,213],[1162,2,2,213,215],[1163,7,4,215,219]]],[64,1,1,219,220,[[1166,1,1,219,220]]]],[23358,23407,23733,23848,23851,23858,23980,23983,24171,24230,24400,24561,24562,24580,24663,24664,24671,24738,24858,24886,24887,24889,24890,24913,24938,25257,25258,25295,25631,25784,25931,26016,26051,26056,26094,26106,26117,26118,26119,26132,26135,26136,26138,26156,26177,26195,26197,26198,26204,26206,26209,26234,26248,26254,26256,26257,26286,26287,26292,26293,26297,26304,26321,26326,26333,26359,26366,26367,26376,26405,26411,26412,26426,26427,26458,26475,26476,26478,26506,26507,26518,26519,26523,26538,26548,26549,26550,26563,26565,26568,26571,26591,26616,26617,26618,26619,26622,26624,26626,26627,26649,26669,26678,26679,26680,26697,26735,26753,26756,26757,26767,26779,26780,26860,26875,26892,26896,26898,26993,27026,27054,27073,27188,27189,27213,27242,27258,27302,27324,27328,27374,27401,27403,27410,27415,27437,27447,27449,27453,27514,27517,27535,27557,27565,27584,27587,27589,27603,27684,27689,27723,27783,27850,27880,27946,27993,28013,28025,28027,28033,28039,28040,28046,28076,28188,28192,28197,28198,28199,28202,28204,28277,28282,28316,28384,28415,28557,28618,28672,28700,28720,28729,28872,29088,29097,29108,29124,29219,29225,29390,29567,29574,29580,29583,29617,29659,29672,29673,29707,29712,29747,29821,29895,29931,30017,30178,30312,30316,30382,30395,30405,30406,30602,30604,30619,30625,30629,30634,30637,30677]]],["+",[3,3,[[41,1,1,0,1,[[988,1,1,0,1]]],[42,2,2,1,3,[[1001,1,1,1,2],[1013,1,1,2,3]]]],[25631,26256,26779]]],["Believe",[3,3,[[39,1,1,0,1,[[937,1,1,0,1]]],[42,1,1,1,2,[[1010,1,1,1,2]]],[43,1,1,2,3,[[1033,1,1,2,3]]]],[23407,26679,27514]]],["Believest",[2,2,[[42,2,2,0,2,[[1007,1,1,0,1],[1010,1,1,1,2]]]],[26549,26678]]],["believe",[110,103,[[39,6,6,0,6,[[946,1,1,0,1],[949,2,2,1,3],[952,2,2,3,5],[955,1,1,5,6]]],[40,11,11,6,17,[[957,1,1,6,7],[961,1,1,7,8],[965,3,3,8,11],[967,3,3,11,14],[969,1,1,14,15],[971,1,1,15,16],[972,1,1,16,17]]],[41,5,5,17,22,[[980,3,3,17,20],[994,1,1,20,21],[996,1,1,21,22]]],[42,50,45,22,67,[[997,2,2,22,24],[999,2,1,24,25],[1000,3,3,25,28],[1001,4,3,28,31],[1002,5,5,31,36],[1003,2,2,36,38],[1004,3,3,38,41],[1005,4,4,41,45],[1006,5,3,45,48],[1007,5,5,48,53],[1008,3,3,53,56],[1009,1,1,56,57],[1010,4,3,57,60],[1012,3,3,60,63],[1013,1,1,63,64],[1015,1,1,64,65],[1016,2,2,65,67]]],[43,9,9,67,76,[[1025,1,1,67,68],[1030,2,2,68,70],[1032,2,2,70,72],[1036,1,1,72,73],[1038,2,2,73,75],[1044,1,1,75,76]]],[44,6,6,76,82,[[1048,1,1,76,77],[1049,2,2,77,79],[1051,1,1,79,80],[1055,2,2,80,82]]],[45,4,3,82,85,[[1062,1,1,82,83],[1072,1,1,83,84],[1075,2,1,84,85]]],[46,1,1,85,86,[[1081,1,1,85,86]]],[47,1,1,86,87,[[1093,1,1,86,87]]],[48,1,1,87,88,[[1097,1,1,87,88]]],[49,1,1,88,89,[[1103,1,1,88,89]]],[51,4,4,89,93,[[1111,1,1,89,90],[1112,2,2,90,92],[1114,1,1,92,93]]],[52,2,2,93,95,[[1116,1,1,93,94],[1117,1,1,94,95]]],[53,1,1,95,96,[[1119,1,1,95,96]]],[57,1,1,96,97,[[1143,1,1,96,97]]],[58,1,1,97,98,[[1147,1,1,97,98]]],[59,2,2,98,100,[[1151,1,1,98,99],[1152,1,1,99,100]]],[61,4,3,100,103,[[1161,1,1,100,101],[1162,1,1,101,102],[1163,2,1,102,103]]]],[23733,23851,23858,23980,23983,24171,24230,24400,24561,24562,24580,24663,24664,24671,24738,24858,24890,25257,25258,25295,25931,26016,26051,26056,26132,26177,26198,26204,26248,26254,26257,26286,26287,26293,26321,26326,26333,26367,26405,26426,26427,26458,26475,26476,26478,26507,26518,26519,26538,26550,26563,26565,26571,26616,26619,26627,26649,26669,26679,26697,26735,26756,26757,26780,26860,26892,26898,27213,27401,27403,27449,27453,27589,27684,27689,27880,28013,28033,28046,28076,28197,28202,28384,28618,28700,28872,29124,29225,29390,29567,29580,29583,29617,29659,29672,29712,30178,30312,30395,30406,30602,30604,30637]]],["believed",[76,73,[[39,3,2,0,2,[[936,1,1,0,1],[949,2,1,1,2]]],[40,2,2,2,4,[[972,2,2,2,4]]],[41,2,2,4,6,[[973,1,1,4,5],[992,1,1,5,6]]],[42,26,25,6,31,[[998,3,3,6,9],[999,1,1,9,10],[1000,4,4,10,14],[1001,1,1,14,15],[1002,1,1,15,16],[1003,2,2,16,18],[1004,2,2,18,20],[1006,2,2,20,22],[1007,1,1,22,23],[1008,4,4,23,27],[1012,1,1,27,28],[1013,1,1,28,29],[1016,3,2,29,31]]],[43,22,21,31,52,[[1019,1,1,31,32],[1021,2,2,32,34],[1025,2,2,34,36],[1026,2,2,36,38],[1028,2,2,38,40],[1030,2,2,40,42],[1031,2,2,42,44],[1032,1,1,44,45],[1034,2,2,45,47],[1035,3,2,47,49],[1036,2,2,49,51],[1039,1,1,51,52]]],[44,6,6,52,58,[[1049,3,3,52,55],[1055,2,2,55,57],[1058,1,1,57,58]]],[45,3,3,58,61,[[1064,1,1,58,59],[1076,2,2,59,61]]],[46,1,1,61,62,[[1081,1,1,61,62]]],[47,2,2,62,64,[[1092,1,1,62,63],[1093,1,1,63,64]]],[48,1,1,64,65,[[1097,1,1,64,65]]],[52,2,2,65,67,[[1116,1,1,65,66],[1117,1,1,66,67]]],[54,1,1,67,68,[[1125,1,1,67,68]]],[55,1,1,68,69,[[1131,1,1,68,69]]],[57,1,1,69,70,[[1136,1,1,69,70]]],[58,1,1,70,71,[[1147,1,1,70,71]]],[61,1,1,71,72,[[1162,1,1,71,72]]],[64,1,1,72,73,[[1166,1,1,72,73]]]],[23358,23858,24886,24887,24938,25784,26106,26117,26118,26138,26195,26197,26206,26209,26256,26321,26359,26376,26411,26412,26506,26523,26568,26591,26617,26618,26622,26753,26767,26875,26896,26993,27026,27054,27188,27189,27242,27258,27324,27328,27374,27410,27415,27437,27447,27535,27557,27565,27584,27587,27603,27723,28025,28039,28040,28202,28204,28277,28415,28720,28729,28872,29097,29108,29219,29659,29673,29821,29931,30017,30316,30619,30677]]],["believers",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27073]]],["believest",[6,5,[[41,1,1,0,1,[[973,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]],[43,3,2,2,4,[[1025,1,1,2,3],[1043,2,1,3,4]]],[58,1,1,4,5,[[1147,1,1,4,5]]]],[24913,26094,27213,27850,30312]]],["believeth",[33,29,[[40,2,2,0,2,[[965,1,1,0,1],[972,1,1,1,2]]],[42,16,14,2,16,[[999,5,4,2,6],[1001,1,1,6,7],[1002,3,3,7,10],[1003,1,1,10,11],[1007,2,2,11,13],[1008,3,2,13,15],[1010,1,1,15,16]]],[43,1,1,16,17,[[1027,1,1,16,17]]],[44,7,7,17,24,[[1046,1,1,17,18],[1049,1,1,18,19],[1054,1,1,19,20],[1055,3,3,20,23],[1059,1,1,23,24]]],[45,1,1,24,25,[[1074,1,1,24,25]]],[59,1,1,25,26,[[1152,1,1,25,26]]],[61,5,3,26,29,[[1163,5,3,26,29]]]],[24561,24889,26135,26136,26138,26156,26234,26292,26297,26304,26366,26548,26549,26624,26626,26680,27302,27946,28027,28188,28192,28198,28199,28282,28672,30405,30625,30629,30634]]],["believing",[6,6,[[39,1,1,0,1,[[949,1,1,0,1]]],[42,1,1,1,2,[[1016,1,1,1,2]]],[43,2,2,2,4,[[1033,1,1,2,3],[1041,1,1,3,4]]],[44,1,1,4,5,[[1060,1,1,4,5]]],[59,1,1,5,6,[[1151,1,1,5,6]]]],[23848,26898,27517,27783,28316,30382]]],["commit",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26119]]],["committed",[5,5,[[44,1,1,0,1,[[1048,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]],[55,1,1,4,5,[[1129,1,1,4,5]]]],[27993,28557,29088,29707,29895]]],["on",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29747]]],["trust",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29574]]]]},{"k":"G4101","v":[["+",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]]],[24757,26583]]]]},{"k":"G4102","v":[["*",[244,228,[[39,8,8,0,8,[[936,1,1,0,1],[937,3,3,1,4],[943,1,1,4,5],[945,1,1,5,6],[949,1,1,6,7],[951,1,1,7,8]]],[40,5,5,8,13,[[958,1,1,8,9],[960,1,1,9,10],[961,1,1,10,11],[966,1,1,11,12],[967,1,1,12,13]]],[41,11,11,13,24,[[977,1,1,13,14],[979,2,2,14,16],[980,2,2,16,18],[989,3,3,18,21],[990,2,2,21,23],[994,1,1,23,24]]],[43,16,15,24,39,[[1020,2,1,24,25],[1023,3,3,25,28],[1028,1,1,28,29],[1030,1,1,29,30],[1031,3,3,30,33],[1032,1,1,33,34],[1033,1,1,34,35],[1034,1,1,35,36],[1037,1,1,36,37],[1041,1,1,37,38],[1043,1,1,38,39]]],[44,40,35,39,74,[[1046,6,4,39,43],[1048,9,8,43,51],[1049,10,9,51,60],[1050,2,2,60,62],[1054,2,2,62,64],[1055,3,3,64,67],[1056,1,1,67,68],[1057,2,2,68,70],[1059,4,3,70,73],[1061,1,1,73,74]]],[45,7,7,74,81,[[1063,1,1,74,75],[1073,1,1,75,76],[1074,2,2,76,78],[1076,2,2,78,80],[1077,1,1,80,81]]],[46,7,6,81,87,[[1078,2,1,81,82],[1081,1,1,82,83],[1082,1,1,83,84],[1085,1,1,84,85],[1087,1,1,85,86],[1090,1,1,86,87]]],[47,22,20,87,107,[[1091,1,1,87,88],[1092,3,2,88,90],[1093,14,13,90,103],[1095,3,3,103,106],[1096,1,1,106,107]]],[48,8,8,107,115,[[1097,1,1,107,108],[1098,1,1,108,109],[1099,2,2,109,111],[1100,2,2,111,113],[1102,2,2,113,115]]],[49,5,4,115,119,[[1103,2,2,115,117],[1104,1,1,117,118],[1105,2,1,118,119]]],[50,5,5,119,124,[[1107,2,2,119,121],[1108,3,3,121,124]]],[51,8,8,124,132,[[1111,2,2,124,126],[1113,5,5,126,131],[1115,1,1,131,132]]],[52,5,5,132,137,[[1116,3,3,132,135],[1117,1,1,135,136],[1118,1,1,136,137]]],[53,19,18,137,155,[[1119,6,5,137,142],[1120,2,2,142,144],[1121,2,2,144,146],[1122,3,3,146,149],[1123,2,2,149,151],[1124,4,4,151,155]]],[54,8,8,155,163,[[1125,2,2,155,157],[1126,2,2,157,159],[1127,3,3,159,162],[1128,1,1,162,163]]],[55,6,6,163,169,[[1129,3,3,163,166],[1130,2,2,166,168],[1131,1,1,168,169]]],[56,2,2,169,171,[[1132,2,2,169,171]]],[57,32,31,171,202,[[1136,1,1,171,172],[1138,2,2,172,174],[1142,3,3,174,177],[1143,24,23,177,200],[1144,1,1,200,201],[1145,1,1,201,202]]],[58,16,12,202,214,[[1146,2,2,202,204],[1147,13,9,204,213],[1150,1,1,213,214]]],[59,5,5,214,219,[[1151,4,4,214,218],[1155,1,1,218,219]]],[60,2,2,219,221,[[1156,2,2,219,221]]],[61,1,1,221,222,[[1163,1,1,221,222]]],[64,2,2,222,224,[[1166,2,2,222,224]]],[65,4,4,224,228,[[1168,2,2,224,226],[1179,1,1,226,227],[1180,1,1,227,228]]]],[23355,23381,23401,23408,23661,23720,23847,23941,24265,24363,24398,24640,24662,25127,25204,25245,25270,25293,25656,25657,25670,25696,25730,25896,27012,27106,27108,27109,27331,27370,27423,27436,27441,27451,27488,27554,27647,27793,27841,27935,27938,27942,27947,27994,28013,28016,28017,28018,28019,28021,28022,28027,28031,28033,28034,28035,28036,28038,28041,28042,28048,28049,28185,28187,28194,28196,28205,28229,28248,28251,28281,28302,28303,28362,28399,28643,28667,28678,28732,28735,28789,28824,28872,28884,28939,28986,29048,29080,29097,29101,29104,29107,29109,29110,29111,29113,29114,29116,29124,29125,29126,29127,29128,29167,29168,29184,29198,29221,29237,29263,29268,29277,29285,29353,29360,29386,29388,29408,29430,29469,29488,29499,29501,29506,29563,29568,29592,29595,29596,29597,29600,29629,29652,29653,29660,29674,29680,29698,29700,29701,29710,29715,29723,29731,29740,29744,29748,29753,29759,29771,29775,29798,29799,29800,29809,29814,29822,29845,29849,29861,29863,29868,29877,29893,29896,29905,29910,29918,29938,29943,29944,30016,30045,30056,30155,30171,30172,30173,30175,30176,30177,30178,30179,30180,30181,30183,30185,30189,30192,30193,30194,30195,30196,30199,30200,30201,30202,30203,30205,30211,30214,30248,30269,30272,30294,30298,30307,30310,30311,30313,30315,30317,30319,30369,30379,30381,30383,30395,30474,30480,30484,30628,30675,30692,30730,30736,30918,30938]]],["+",[2,2,[[44,2,2,0,2,[[1048,2,2,0,2]]]],[27994,28017]]],["assurance",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27554]]],["belief",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29674]]],["believe",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30172]]],["faith",[238,222,[[39,8,8,0,8,[[936,1,1,0,1],[937,3,3,1,4],[943,1,1,4,5],[945,1,1,5,6],[949,1,1,6,7],[951,1,1,7,8]]],[40,5,5,8,13,[[958,1,1,8,9],[960,1,1,9,10],[961,1,1,10,11],[966,1,1,11,12],[967,1,1,12,13]]],[41,11,11,13,24,[[977,1,1,13,14],[979,2,2,14,16],[980,2,2,16,18],[989,3,3,18,21],[990,2,2,21,23],[994,1,1,23,24]]],[43,15,14,24,38,[[1020,2,1,24,25],[1023,3,3,25,28],[1028,1,1,28,29],[1030,1,1,29,30],[1031,3,3,30,33],[1032,1,1,33,34],[1033,1,1,34,35],[1037,1,1,35,36],[1041,1,1,36,37],[1043,1,1,37,38]]],[44,38,33,38,71,[[1046,6,4,38,42],[1048,7,6,42,48],[1049,10,9,48,57],[1050,2,2,57,59],[1054,2,2,59,61],[1055,3,3,61,64],[1056,1,1,64,65],[1057,2,2,65,67],[1059,4,3,67,70],[1061,1,1,70,71]]],[45,7,7,71,78,[[1063,1,1,71,72],[1073,1,1,72,73],[1074,2,2,73,75],[1076,2,2,75,77],[1077,1,1,77,78]]],[46,7,6,78,84,[[1078,2,1,78,79],[1081,1,1,79,80],[1082,1,1,80,81],[1085,1,1,81,82],[1087,1,1,82,83],[1090,1,1,83,84]]],[47,22,20,84,104,[[1091,1,1,84,85],[1092,3,2,85,87],[1093,14,13,87,100],[1095,3,3,100,103],[1096,1,1,103,104]]],[48,8,8,104,112,[[1097,1,1,104,105],[1098,1,1,105,106],[1099,2,2,106,108],[1100,2,2,108,110],[1102,2,2,110,112]]],[49,5,4,112,116,[[1103,2,2,112,114],[1104,1,1,114,115],[1105,2,1,115,116]]],[50,5,5,116,121,[[1107,2,2,116,118],[1108,3,3,118,121]]],[51,8,8,121,129,[[1111,2,2,121,123],[1113,5,5,123,128],[1115,1,1,128,129]]],[52,4,4,129,133,[[1116,3,3,129,132],[1118,1,1,132,133]]],[53,19,18,133,151,[[1119,6,5,133,138],[1120,2,2,138,140],[1121,2,2,140,142],[1122,3,3,142,145],[1123,2,2,145,147],[1124,4,4,147,151]]],[54,8,8,151,159,[[1125,2,2,151,153],[1126,2,2,153,155],[1127,3,3,155,158],[1128,1,1,158,159]]],[55,5,5,159,164,[[1129,3,3,159,162],[1130,1,1,162,163],[1131,1,1,163,164]]],[56,2,2,164,166,[[1132,2,2,164,166]]],[57,31,30,166,196,[[1136,1,1,166,167],[1138,2,2,167,169],[1142,2,2,169,171],[1143,24,23,171,194],[1144,1,1,194,195],[1145,1,1,195,196]]],[58,16,12,196,208,[[1146,2,2,196,198],[1147,13,9,198,207],[1150,1,1,207,208]]],[59,5,5,208,213,[[1151,4,4,208,212],[1155,1,1,212,213]]],[60,2,2,213,215,[[1156,2,2,213,215]]],[61,1,1,215,216,[[1163,1,1,215,216]]],[64,2,2,216,218,[[1166,2,2,216,218]]],[65,4,4,218,222,[[1168,2,2,218,220],[1179,1,1,220,221],[1180,1,1,221,222]]]],[23355,23381,23401,23408,23661,23720,23847,23941,24265,24363,24398,24640,24662,25127,25204,25245,25270,25293,25656,25657,25670,25696,25730,25896,27012,27106,27108,27109,27331,27370,27423,27436,27441,27451,27488,27647,27793,27841,27935,27938,27942,27947,28013,28016,28018,28019,28021,28022,28027,28031,28033,28034,28035,28036,28038,28041,28042,28048,28049,28185,28187,28194,28196,28205,28229,28248,28251,28281,28302,28303,28362,28399,28643,28667,28678,28732,28735,28789,28824,28872,28884,28939,28986,29048,29080,29097,29101,29104,29107,29109,29110,29111,29113,29114,29116,29124,29125,29126,29127,29128,29167,29168,29184,29198,29221,29237,29263,29268,29277,29285,29353,29360,29386,29388,29408,29430,29469,29488,29499,29501,29506,29563,29568,29592,29595,29596,29597,29600,29629,29652,29653,29660,29680,29698,29700,29701,29710,29715,29723,29731,29740,29744,29748,29753,29759,29771,29775,29798,29799,29800,29809,29814,29822,29845,29849,29861,29863,29868,29877,29893,29896,29905,29910,29938,29943,29944,30016,30045,30056,30155,30171,30173,30175,30176,30177,30178,30179,30180,30181,30183,30185,30189,30192,30193,30194,30195,30196,30199,30200,30201,30202,30203,30205,30211,30214,30248,30269,30272,30294,30298,30307,30310,30311,30313,30315,30317,30319,30369,30379,30381,30383,30395,30474,30480,30484,30628,30675,30692,30730,30736,30918,30938]]],["fidelity",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29918]]]]},{"k":"G4103","v":[["*",[67,62,[[39,5,3,0,3,[[952,1,1,0,1],[953,4,2,1,3]]],[41,6,5,3,8,[[984,1,1,3,4],[988,4,3,4,7],[991,1,1,7,8]]],[42,1,1,8,9,[[1016,1,1,8,9]]],[43,4,4,9,13,[[1027,1,1,9,10],[1030,1,1,10,11],[1033,2,2,11,13]]],[45,5,5,13,18,[[1062,1,1,13,14],[1065,2,2,14,16],[1068,1,1,16,17],[1071,1,1,17,18]]],[46,2,2,18,20,[[1078,1,1,18,19],[1083,1,1,19,20]]],[47,1,1,20,21,[[1093,1,1,20,21]]],[48,2,2,21,23,[[1097,1,1,21,22],[1102,1,1,22,23]]],[50,4,4,23,27,[[1107,2,2,23,25],[1110,2,2,25,27]]],[51,1,1,27,28,[[1115,1,1,27,28]]],[52,1,1,28,29,[[1118,1,1,28,29]]],[53,12,10,29,39,[[1119,2,2,29,31],[1121,2,2,31,33],[1122,4,4,33,37],[1123,2,1,37,38],[1124,2,1,38,39]]],[54,3,3,39,42,[[1126,3,3,39,42]]],[55,3,3,42,45,[[1129,2,2,42,44],[1131,1,1,44,45]]],[57,5,5,45,50,[[1134,1,1,45,46],[1135,2,2,46,48],[1142,1,1,48,49],[1143,1,1,49,50]]],[59,2,2,50,52,[[1154,1,1,50,51],[1155,1,1,51,52]]],[61,1,1,52,53,[[1159,1,1,52,53]]],[63,1,1,53,54,[[1165,1,1,53,54]]],[65,8,8,54,62,[[1167,1,1,54,55],[1168,2,2,55,57],[1169,1,1,57,58],[1183,1,1,58,59],[1185,1,1,59,60],[1187,1,1,60,61],[1188,1,1,61,62]]]],[24002,24029,24031,25501,25630,25631,25632,25748,26894,27304,27396,27484,27498,28372,28435,28450,28512,28580,28818,28913,29111,29207,29358,29467,29472,29549,29551,29645,29681,29708,29711,29732,29742,29750,29756,29757,29759,29779,29790,29829,29838,29840,29898,29901,29931,29994,29997,30000,30156,30183,30465,30477,30549,30663,30702,30727,30730,30760,30989,31028,31058,31086]]],["+",[2,2,[[43,1,1,0,1,[[1027,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]]],[27304,28818]]],["Faithful",[2,2,[[51,1,1,0,1,[[1115,1,1,0,1]]],[65,1,1,1,2,[[1185,1,1,1,2]]]],[29645,31028]]],["believe",[2,2,[[53,2,2,0,2,[[1122,2,2,0,2]]]],[29750,29757]]],["believed",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27484]]],["believers",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29759]]],["believeth",[2,2,[[46,1,1,0,1,[[1083,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[28913,29779]]],["believing",[2,2,[[42,1,1,0,1,[[1016,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[26894,29790]]],["faithful",[51,48,[[39,5,3,0,3,[[952,1,1,0,1],[953,4,2,1,3]]],[41,6,5,3,8,[[984,1,1,3,4],[988,4,3,4,7],[991,1,1,7,8]]],[43,1,1,8,9,[[1033,1,1,8,9]]],[45,5,5,9,14,[[1062,1,1,9,10],[1065,2,2,10,12],[1068,1,1,12,13],[1071,1,1,13,14]]],[47,1,1,14,15,[[1093,1,1,14,15]]],[48,2,2,15,17,[[1097,1,1,15,16],[1102,1,1,16,17]]],[50,4,4,17,21,[[1107,2,2,17,19],[1110,2,2,19,21]]],[52,1,1,21,22,[[1118,1,1,21,22]]],[53,5,5,22,27,[[1119,2,2,22,24],[1121,1,1,24,25],[1122,1,1,25,26],[1124,1,1,26,27]]],[54,3,3,27,30,[[1126,3,3,27,30]]],[55,3,3,30,33,[[1129,2,2,30,32],[1131,1,1,32,33]]],[57,5,5,33,38,[[1134,1,1,33,34],[1135,2,2,34,36],[1142,1,1,36,37],[1143,1,1,37,38]]],[59,2,2,38,40,[[1154,1,1,38,39],[1155,1,1,39,40]]],[61,1,1,40,41,[[1159,1,1,40,41]]],[65,7,7,41,48,[[1167,1,1,41,42],[1168,2,2,42,44],[1169,1,1,44,45],[1183,1,1,45,46],[1187,1,1,46,47],[1188,1,1,47,48]]]],[24002,24029,24031,25501,25630,25631,25632,25748,27498,28372,28435,28450,28512,28580,29111,29207,29358,29467,29472,29549,29551,29681,29708,29711,29742,29756,29790,29829,29838,29840,29898,29901,29931,29994,29997,30000,30156,30183,30465,30477,30549,30702,30727,30730,30760,30989,31058,31086]]],["faithfully",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30663]]],["man",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29779]]],["sure",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27396]]],["true",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29732]]]]},{"k":"G4104","v":[["of",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29867]]]]},{"k":"G4105","v":[["*",[39,37,[[39,8,7,0,7,[[946,3,2,0,2],[950,1,1,2,3],[952,4,4,3,7]]],[40,4,4,7,11,[[968,2,2,7,9],[969,2,2,9,11]]],[41,1,1,11,12,[[993,1,1,11,12]]],[42,2,2,12,14,[[1003,2,2,12,14]]],[45,2,2,14,16,[[1067,1,1,14,15],[1076,1,1,15,16]]],[47,1,1,16,17,[[1096,1,1,16,17]]],[54,2,1,17,18,[[1127,2,1,17,18]]],[55,1,1,18,19,[[1131,1,1,18,19]]],[57,3,3,19,22,[[1135,1,1,19,20],[1137,1,1,20,21],[1143,1,1,21,22]]],[58,2,2,22,24,[[1146,1,1,22,23],[1150,1,1,23,24]]],[59,1,1,24,25,[[1152,1,1,24,25]]],[60,1,1,25,26,[[1157,1,1,25,26]]],[61,3,3,26,29,[[1159,1,1,26,27],[1160,1,1,27,28],[1161,1,1,28,29]]],[65,8,8,29,37,[[1168,1,1,29,30],[1178,1,1,30,31],[1179,1,1,31,32],[1184,1,1,32,33],[1185,1,1,33,34],[1186,3,3,34,37]]]],[23739,23740,23901,23961,23962,23968,23981,24697,24700,24722,24723,25834,26340,26375,28476,28751,29195,29866,29926,30005,30032,30210,30282,30373,30424,30515,30548,30576,30586,30737,30900,30922,31016,31037,31041,31046,31048]]],["+",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23740]]],["astray",[4,3,[[39,2,1,0,1,[[946,2,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[23739,30424,30515]]],["deceive",[10,10,[[39,4,4,0,4,[[952,4,4,0,4]]],[40,2,2,4,6,[[969,2,2,4,6]]],[61,2,2,6,8,[[1159,1,1,6,7],[1161,1,1,7,8]]],[65,2,2,8,10,[[1186,2,2,8,10]]]],[23961,23962,23968,23981,24722,24723,30548,30586,31041,31046]]],["deceived",[10,10,[[41,1,1,0,1,[[993,1,1,0,1]]],[42,1,1,1,2,[[1003,1,1,1,2]]],[45,2,2,2,4,[[1067,1,1,2,3],[1076,1,1,3,4]]],[47,1,1,4,5,[[1096,1,1,4,5]]],[54,1,1,5,6,[[1127,1,1,5,6]]],[55,1,1,6,7,[[1131,1,1,6,7]]],[65,3,3,7,10,[[1184,1,1,7,8],[1185,1,1,8,9],[1186,1,1,9,10]]]],[25834,26375,28476,28751,29195,29866,29926,31016,31037,31048]]],["deceiveth",[3,3,[[42,1,1,0,1,[[1003,1,1,0,1]]],[65,2,2,1,3,[[1178,1,1,1,2],[1179,1,1,2,3]]]],[26340,30900,30922]]],["deceiving",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29866]]],["err",[6,6,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,2,2,1,3,[[968,2,2,1,3]]],[57,1,1,3,4,[[1135,1,1,3,4]]],[58,2,2,4,6,[[1146,1,1,4,5],[1150,1,1,5,6]]]],[23901,24697,24700,30005,30282,30373]]],["seduce",[2,2,[[61,1,1,0,1,[[1160,1,1,0,1]]],[65,1,1,1,2,[[1168,1,1,1,2]]]],[30576,30737]]],["wandered",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30210]]],["way",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30032]]]]},{"k":"G4106","v":[["*",[10,10,[[39,1,1,0,1,[[955,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]],[52,1,1,4,5,[[1117,1,1,4,5]]],[58,1,1,5,6,[[1150,1,1,5,6]]],[60,2,2,6,8,[[1157,1,1,6,7],[1158,1,1,7,8]]],[61,1,1,8,9,[[1162,1,1,8,9]]],[64,1,1,9,10,[[1166,1,1,9,10]]]],[24193,27957,29286,29573,29672,30374,30518,30539,30609,30683]]],["+",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]]],[29286,29672]]],["deceit",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29573]]],["error",[7,7,[[39,1,1,0,1,[[955,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[58,1,1,2,3,[[1150,1,1,2,3]]],[60,2,2,3,5,[[1157,1,1,3,4],[1158,1,1,4,5]]],[61,1,1,5,6,[[1162,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[24193,27957,30374,30518,30539,30609,30683]]]]},{"k":"G4107","v":[["wandering",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30685]]]]},{"k":"G4108","v":[["*",[5,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]],[62,2,1,3,4,[[1164,2,1,3,4]]]],[24192,28906,29748,30652]]],["deceiver",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[62,1,1,1,2,[[1164,1,1,1,2]]]],[24192,30652]]],["deceivers",[2,2,[[46,1,1,0,1,[[1083,1,1,0,1]]],[62,1,1,1,2,[[1164,1,1,1,2]]]],[28906,30652]]],["seducing",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29748]]]]},{"k":"G4109","v":[["tables",[3,2,[[46,2,1,0,1,[[1080,2,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[28844,30109]]]]},{"k":"G4110","v":[["formed",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28175]]]]},{"k":"G4111","v":[["formed",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[53,1,1,1,2,[[1120,1,1,1,2]]]],[28175,29729]]]]},{"k":"G4112","v":[["feigned",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30503]]]]},{"k":"G4113","v":[["*",[9,9,[[39,2,2,0,2,[[934,1,1,0,1],[940,1,1,1,2]]],[41,3,3,2,5,[[982,1,1,2,3],[985,1,1,3,4],[986,1,1,4,5]]],[43,1,1,5,6,[[1022,1,1,5,6]]],[65,3,3,6,9,[[1177,1,1,6,7],[1187,1,1,7,8],[1188,1,1,8,9]]]],[23287,23508,25373,25544,25574,27074,30880,31074,31082]]],["street",[3,3,[[65,3,3,0,3,[[1177,1,1,0,1],[1187,1,1,1,2],[1188,1,1,2,3]]]],[30880,31074,31082]]],["streets",[6,6,[[39,2,2,0,2,[[934,1,1,0,1],[940,1,1,1,2]]],[41,3,3,2,5,[[982,1,1,2,3],[985,1,1,3,4],[986,1,1,4,5]]],[43,1,1,5,6,[[1022,1,1,5,6]]]],[23287,23508,25373,25544,25574,27074]]]]},{"k":"G4114","v":[["breadth",[4,3,[[48,1,1,0,1,[[1099,1,1,0,1]]],[65,3,2,1,3,[[1186,1,1,1,2],[1187,2,1,2,3]]]],[29269,31047,31069]]]]},{"k":"G4115","v":[["*",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[46,2,2,1,3,[[1083,2,2,1,3]]]],[23923,28909,28911]]],["broad",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23923]]],["enlarged",[2,2,[[46,2,2,0,2,[[1083,2,2,0,2]]]],[28909,28911]]]]},{"k":"G4116","v":[["wide",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23329]]]]},{"k":"G4117","v":[["hair",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29725]]]]},{"k":"G4118","v":[["*",[3,3,[[39,2,2,0,2,[[939,1,1,0,1],[949,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]]],[23479,23834,28705]]],["great",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23834]]],["most",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[23479,28705]]]]},{"k":"G4119","v":[["*",[56,55,[[39,7,7,0,7,[[933,1,1,0,1],[934,1,1,1,2],[940,2,2,2,4],[948,1,1,4,5],[949,1,1,5,6],[954,1,1,6,7]]],[40,2,2,7,9,[[968,2,2,7,9]]],[41,9,9,9,18,[[975,1,1,9,10],[979,2,2,10,12],[981,1,1,12,13],[983,3,3,13,16],[984,1,1,16,17],[993,1,1,17,18]]],[42,5,5,18,23,[[1000,2,2,18,20],[1003,1,1,20,21],[1011,1,1,21,22],[1017,1,1,22,23]]],[43,19,19,23,42,[[1019,1,1,23,24],[1021,2,2,24,26],[1030,1,1,26,27],[1032,1,1,27,28],[1035,1,1,28,29],[1036,1,1,29,30],[1037,1,1,30,31],[1038,1,1,31,32],[1040,2,2,32,34],[1041,3,3,34,37],[1042,2,2,37,39],[1044,2,2,39,41],[1045,1,1,41,42]]],[45,3,3,42,45,[[1070,1,1,42,43],[1071,1,1,43,44],[1076,1,1,44,45]]],[46,3,3,45,48,[[1079,1,1,45,46],[1081,1,1,46,47],[1086,1,1,47,48]]],[49,1,1,48,49,[[1103,1,1,48,49]]],[54,2,2,49,51,[[1126,1,1,49,50],[1127,1,1,50,51]]],[57,4,3,51,54,[[1135,2,1,51,52],[1139,1,1,52,53],[1143,1,1,53,54]]],[65,1,1,54,55,[[1168,1,1,54,55]]]],[23254,23307,23530,23531,23802,23862,24107,24706,24716,25038,25237,25238,25314,25436,25437,25458,25482,25829,26157,26197,26359,26701,26913,26989,27039,27044,27393,27470,27577,27617,27635,27674,27747,27755,27773,27780,27786,27802,27810,27867,27875,27922,28559,28572,28724,28830,28874,28958,29375,29843,29862,29998,30087,30176,30736]]],["+",[6,6,[[39,1,1,0,1,[[933,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[43,3,3,2,5,[[1021,1,1,2,3],[1041,2,2,3,5]]],[54,1,1,5,6,[[1127,1,1,5,6]]]],[23254,24716,27039,27773,27780,29862]]],["above",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27044]]],["excellent",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30176]]],["greater",[5,5,[[39,2,2,0,2,[[940,2,2,0,2]]],[41,2,2,2,4,[[983,2,2,2,4]]],[43,1,1,4,5,[[1032,1,1,4,5]]]],[23530,23531,25436,25437,27470]]],["long",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27635]]],["longer",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27577]]],["many",[13,13,[[43,7,7,0,7,[[1019,1,1,0,1],[1030,1,1,1,2],[1038,1,1,2,3],[1041,1,1,3,4],[1042,1,1,4,5],[1044,1,1,5,6],[1045,1,1,6,7]]],[45,1,1,7,8,[[1071,1,1,7,8]]],[46,3,3,8,11,[[1079,1,1,8,9],[1081,1,1,9,10],[1086,1,1,10,11]]],[49,1,1,11,12,[[1103,1,1,11,12]]],[57,1,1,12,13,[[1139,1,1,12,13]]]],[26989,27393,27674,27786,27810,27875,27922,28572,28830,28874,28958,29375,30087]]],["more",[22,21,[[39,4,4,0,4,[[934,1,1,0,1],[948,1,1,1,2],[949,1,1,2,3],[954,1,1,3,4]]],[40,1,1,4,5,[[968,1,1,4,5]]],[41,4,4,5,9,[[975,1,1,5,6],[981,1,1,6,7],[984,1,1,7,8],[993,1,1,8,9]]],[42,5,5,9,14,[[1000,2,2,9,11],[1003,1,1,11,12],[1011,1,1,12,13],[1017,1,1,13,14]]],[43,3,3,14,17,[[1040,2,2,14,16],[1042,1,1,16,17]]],[45,1,1,17,18,[[1070,1,1,17,18]]],[54,1,1,18,19,[[1126,1,1,18,19]]],[57,2,1,19,20,[[1135,2,1,19,20]]],[65,1,1,20,21,[[1168,1,1,20,21]]]],[23307,23802,23862,24107,24706,25038,25314,25482,25829,26157,26197,26359,26701,26913,27747,27755,27802,28559,29843,29998,30736]]],["most",[2,2,[[41,2,2,0,2,[[979,2,2,0,2]]]],[25237,25238]]],["part",[3,3,[[43,2,2,0,2,[[1036,1,1,0,1],[1044,1,1,1,2]]],[45,1,1,2,3,[[1076,1,1,2,3]]]],[27617,27867,28724]]],["things",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25458]]]]},{"k":"G4120","v":[["platted",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]]],[24158,24843,26827]]]]},{"k":"G4121","v":[["*",[9,8,[[44,3,2,0,2,[[1050,2,1,0,1],[1051,1,1,1,2]]],[46,2,2,2,4,[[1081,1,1,2,3],[1085,1,1,3,4]]],[49,1,1,4,5,[[1106,1,1,4,5]]],[51,1,1,5,6,[[1113,1,1,5,6]]],[52,1,1,6,7,[[1116,1,1,6,7]]],[60,1,1,7,8,[[1156,1,1,7,8]]]],[28067,28069,28874,28947,29459,29602,29652,30487]]],["+",[2,2,[[46,1,1,0,1,[[1085,1,1,0,1]]],[51,1,1,1,2,[[1113,1,1,1,2]]]],[28947,29602]]],["abound",[4,4,[[44,2,2,0,2,[[1050,1,1,0,1],[1051,1,1,1,2]]],[49,1,1,2,3,[[1106,1,1,2,3]]],[60,1,1,3,4,[[1156,1,1,3,4]]]],[28067,28069,29459,30487]]],["abounded",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28067]]],["aboundeth",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29652]]],["abundant",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28874]]]]},{"k":"G4122","v":[["*",[5,5,[[46,4,4,0,4,[[1079,1,1,0,1],[1084,1,1,1,2],[1089,2,2,2,4]]],[51,1,1,4,5,[[1114,1,1,4,5]]]],[28835,28918,29039,29040,29609]]],["advantage",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28835]]],["defraud",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29609]]],["defrauded",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28918]]],["gain",[2,2,[[46,2,2,0,2,[[1089,2,2,0,2]]]],[29039,29040]]]]},{"k":"G4123","v":[["*",[4,4,[[45,3,3,0,3,[[1066,2,2,0,2],[1067,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]]],[28464,28465,28477,29309]]],["covetous",[3,3,[[45,3,3,0,3,[[1066,2,2,0,2],[1067,1,1,2,3]]]],[28464,28465,28477]]],["man",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29309]]]]},{"k":"G4124","v":[["*",[10,10,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[46,1,1,3,4,[[1086,1,1,3,4]]],[48,2,2,4,6,[[1100,1,1,4,5],[1101,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[51,1,1,7,8,[[1112,1,1,7,8]]],[60,2,2,8,10,[[1157,2,2,8,10]]]],[24485,25474,27959,28961,29291,29307,29522,29575,30503,30514]]],["covetousness",[8,8,[[40,1,1,0,1,[[963,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[46,1,1,3,4,[[1086,1,1,3,4]]],[48,1,1,4,5,[[1101,1,1,4,5]]],[50,1,1,5,6,[[1109,1,1,5,6]]],[51,1,1,6,7,[[1112,1,1,6,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]]],[24485,25474,27959,28961,29307,29522,29575,30503]]],["greediness",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29291]]],["practices",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30514]]]]},{"k":"G4125","v":[["side",[5,5,[[42,4,4,0,4,[[1015,1,1,0,1],[1016,3,3,1,4]]],[43,1,1,4,5,[[1029,1,1,4,5]]]],[26859,26887,26892,26894,27344]]]]},{"k":"G4126","v":[["*",[5,5,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,4,4,1,5,[[1038,1,1,1,2],[1044,3,3,2,5]]]],[25268,27667,27857,27861,27879]]],["sail",[2,2,[[43,2,2,0,2,[[1044,2,2,0,2]]]],[27857,27879]]],["sailed",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[25268,27667]]],["sailing",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27861]]]]},{"k":"G4127","v":[["*",[21,20,[[41,2,2,0,2,[[982,1,1,0,1],[984,1,1,1,2]]],[43,2,2,2,4,[[1033,2,2,2,4]]],[46,2,2,4,6,[[1083,1,1,4,5],[1088,1,1,5,6]]],[65,15,14,6,20,[[1175,1,1,6,7],[1177,1,1,7,8],[1179,3,3,8,11],[1181,3,3,11,14],[1182,3,2,14,16],[1184,2,2,16,18],[1187,1,1,18,19],[1188,1,1,19,20]]]],[25393,25507,27506,27516,28903,29012,30860,30878,30911,30920,30922,30947,30952,30954,30963,30975,30997,31001,31062,31098]]],["+",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[65,1,1,1,2,[[1179,1,1,1,2]]]],[25393,30920]]],["plague",[2,1,[[65,2,1,0,1,[[1182,2,1,0,1]]]],[30975]]],["plagues",[10,10,[[65,10,10,0,10,[[1175,1,1,0,1],[1177,1,1,1,2],[1181,3,3,2,5],[1182,1,1,5,6],[1184,2,2,6,8],[1187,1,1,8,9],[1188,1,1,9,10]]]],[30860,30878,30947,30952,30954,30963,30997,31001,31062,31098]]],["stripes",[5,5,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,2,2,1,3,[[1033,2,2,1,3]]],[46,2,2,3,5,[[1083,1,1,3,4],[1088,1,1,4,5]]]],[25507,27506,27516,28903,29012]]],["wound",[2,2,[[65,2,2,0,2,[[1179,2,2,0,2]]]],[30911,30922]]]]},{"k":"G4128","v":[["*",[32,32,[[40,2,2,0,2,[[959,2,2,0,2]]],[41,8,8,2,10,[[973,1,1,2,3],[974,1,1,3,4],[977,1,1,4,5],[978,1,1,5,6],[980,1,1,6,7],[991,1,1,7,8],[995,2,2,8,10]]],[42,2,2,10,12,[[1001,1,1,10,11],[1017,1,1,11,12]]],[43,17,17,12,29,[[1019,1,1,12,13],[1021,1,1,13,14],[1022,2,2,14,16],[1023,2,2,16,18],[1031,2,2,18,20],[1032,2,2,20,22],[1034,1,1,22,23],[1036,1,1,23,24],[1038,2,2,24,26],[1040,1,1,26,27],[1042,1,1,27,28],[1045,1,1,28,29]]],[57,1,1,29,30,[[1143,1,1,29,30]]],[58,1,1,30,31,[[1150,1,1,30,31]]],[59,1,1,31,32,[[1154,1,1,31,32]]]],[24295,24296,24903,24986,25113,25163,25282,25768,25936,25962,26213,26904,26955,27054,27073,27075,27103,27106,27415,27418,27454,27472,27527,27594,27686,27700,27741,27820,27902,30184,30374,30454]]],["+",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27472]]],["bundle",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27902]]],["company",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25962]]],["multitude",[28,28,[[40,2,2,0,2,[[959,2,2,0,2]]],[41,7,7,2,9,[[973,1,1,2,3],[974,1,1,3,4],[977,1,1,4,5],[978,1,1,5,6],[980,1,1,6,7],[991,1,1,7,8],[995,1,1,8,9]]],[42,2,2,9,11,[[1001,1,1,9,10],[1017,1,1,10,11]]],[43,14,14,11,25,[[1019,1,1,11,12],[1021,1,1,12,13],[1022,1,1,13,14],[1023,2,2,14,16],[1031,2,2,16,18],[1032,1,1,18,19],[1034,1,1,19,20],[1036,1,1,20,21],[1038,2,2,21,23],[1040,1,1,23,24],[1042,1,1,24,25]]],[57,1,1,25,26,[[1143,1,1,25,26]]],[58,1,1,26,27,[[1150,1,1,26,27]]],[59,1,1,27,28,[[1154,1,1,27,28]]]],[24295,24296,24903,24986,25113,25163,25282,25768,25936,26213,26904,26955,27054,27075,27103,27106,27415,27418,27454,27527,27594,27686,27700,27741,27820,30184,30374,30454]]],["multitudes",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27073]]]]},{"k":"G4129","v":[["*",[12,11,[[39,1,1,0,1,[[952,1,1,0,1]]],[43,5,5,1,6,[[1023,2,2,1,3],[1024,1,1,3,4],[1026,1,1,4,5],[1029,1,1,5,6]]],[46,1,1,6,7,[[1086,1,1,6,7]]],[57,2,1,7,8,[[1138,2,1,7,8]]],[59,1,1,8,9,[[1151,1,1,8,9]]],[60,1,1,9,10,[[1156,1,1,9,10]]],[64,1,1,10,11,[[1166,1,1,10,11]]]],[23969,27102,27108,27133,27247,27361,28966,30058,30376,30481,30674]]],["abound",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23969]]],["multiplied",[8,8,[[43,5,5,0,5,[[1023,2,2,0,2],[1024,1,1,2,3],[1026,1,1,3,4],[1029,1,1,4,5]]],[59,1,1,5,6,[[1151,1,1,5,6]]],[60,1,1,6,7,[[1156,1,1,6,7]]],[64,1,1,7,8,[[1166,1,1,7,8]]]],[27102,27108,27133,27247,27361,30376,30481,30674]]],["multiply",[2,2,[[46,1,1,0,1,[[1086,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[28966,30058]]],["multiplying",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30058]]]]},{"k":"G4130","v":[["*",[24,24,[[39,2,2,0,2,[[950,1,1,0,1],[955,1,1,1,2]]],[41,12,12,2,14,[[973,5,5,2,7],[974,3,3,7,10],[976,1,1,10,11],[977,2,2,11,13],[978,1,1,13,14]]],[42,1,1,14,15,[[1015,1,1,14,15]]],[43,9,9,15,24,[[1019,1,1,15,16],[1020,1,1,16,17],[1021,2,2,17,19],[1022,1,1,19,20],[1026,1,1,20,21],[1030,2,2,21,23],[1036,1,1,23,24]]]],[23882,24177,24908,24916,24934,24950,24960,24979,24994,24995,25091,25114,25133,25157,26854,26953,27006,27030,27053,27076,27233,27371,27407,27614]]],["accomplished",[4,4,[[41,4,4,0,4,[[973,1,1,0,1],[974,3,3,1,4]]]],[24916,24979,24994,24995]]],["came",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24950]]],["filled",[18,18,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,7,7,1,8,[[973,3,3,1,4],[976,1,1,4,5],[977,2,2,5,7],[978,1,1,7,8]]],[42,1,1,8,9,[[1015,1,1,8,9]]],[43,9,9,9,18,[[1019,1,1,9,10],[1020,1,1,10,11],[1021,2,2,11,13],[1022,1,1,13,14],[1026,1,1,14,15],[1030,2,2,15,17],[1036,1,1,17,18]]]],[24177,24908,24934,24960,25091,25114,25133,25157,26854,26953,27006,27030,27053,27076,27233,27371,27407,27614]]],["furnished",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23882]]]]},{"k":"G4131","v":[["striker",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[29734,29899]]]]},{"k":"G4132","v":[["flood",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25194]]]]},{"k":"G4133","v":[["*",[31,31,[[39,5,5,0,5,[[939,2,2,0,2],[946,1,1,2,3],[954,2,2,3,5]]],[40,1,1,5,6,[[968,1,1,5,6]]],[41,14,14,6,20,[[978,2,2,6,8],[982,3,3,8,11],[983,1,1,11,12],[984,1,1,12,13],[985,1,1,13,14],[990,1,1,14,15],[991,1,1,15,16],[994,3,3,16,19],[995,1,1,19,20]]],[42,1,1,20,21,[[1004,1,1,20,21]]],[43,4,4,21,25,[[1025,1,1,21,22],[1032,1,1,22,23],[1037,1,1,23,24],[1044,1,1,24,25]]],[45,1,1,25,26,[[1072,1,1,25,26]]],[48,1,1,26,27,[[1101,1,1,26,27]]],[49,3,3,27,30,[[1103,1,1,27,28],[1105,1,1,28,29],[1106,1,1,29,30]]],[65,1,1,30,31,[[1168,1,1,30,31]]]],[23481,23483,23734,24093,24118,24705,25170,25181,25374,25377,25383,25446,25490,25551,25696,25758,25885,25886,25906,25963,26391,27177,27470,27649,27877,28611,29337,29379,29437,29456,30742]]],["But",[10,10,[[39,2,2,0,2,[[939,2,2,0,2]]],[41,7,7,2,9,[[978,2,2,2,4],[982,1,1,4,5],[983,1,1,5,6],[984,1,1,6,7],[991,1,1,7,8],[994,1,1,8,9]]],[65,1,1,9,10,[[1168,1,1,9,10]]]],[23481,23483,25170,25181,25377,25446,25490,25758,25885,30742]]],["Nevertheless",[5,5,[[41,2,2,0,2,[[985,1,1,0,1],[990,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]]],[25551,25696,28611,29337,29437]]],["Notwithstanding",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]]],[25383,29456]]],["Save",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27649]]],["but",[6,6,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,2,2,4,[[994,1,1,2,3],[995,1,1,3,4]]],[42,1,1,4,5,[[1004,1,1,4,5]]],[43,1,1,5,6,[[1044,1,1,5,6]]]],[23734,24705,25886,25963,26391,27877]]],["except",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27177]]],["nevertheless",[3,3,[[39,2,2,0,2,[[954,2,2,0,2]]],[41,1,1,2,3,[[994,1,1,2,3]]]],[24093,24118,25906]]],["notwithstanding",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[25374,29379]]],["than",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27470]]]]},{"k":"G4134","v":[["full",[17,17,[[39,2,2,0,2,[[942,1,1,0,1],[943,1,1,1,2]]],[40,3,3,2,5,[[960,1,1,2,3],[962,1,1,3,4],[964,1,1,4,5]]],[41,2,2,5,7,[[976,1,1,5,6],[977,1,1,6,7]]],[42,1,1,7,8,[[997,1,1,7,8]]],[43,8,8,8,16,[[1023,3,3,8,11],[1024,1,1,11,12],[1026,1,1,12,13],[1028,1,1,13,14],[1030,1,1,14,15],[1036,1,1,15,16]]],[62,1,1,16,17,[[1164,1,1,16,17]]]],[23617,23670,24351,24450,24519,25064,25119,26058,27104,27106,27109,27171,27252,27331,27372,27613,30653]]]]},{"k":"G4135","v":[["*",[5,5,[[41,1,1,0,1,[[973,1,1,0,1]]],[44,2,2,1,3,[[1049,1,1,1,2],[1059,1,1,2,3]]],[54,2,2,3,5,[[1128,2,2,3,5]]]],[24894,28043,28285,29875,29887]]],["believed",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24894]]],["known",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29887]]],["persuaded",[2,2,[[44,2,2,0,2,[[1049,1,1,0,1],[1059,1,1,1,2]]]],[28043,28285]]],["proof",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29875]]]]},{"k":"G4136","v":[["assurance",[4,4,[[50,1,1,0,1,[[1108,1,1,0,1]]],[51,1,1,1,2,[[1111,1,1,1,2]]],[57,2,2,2,4,[[1138,1,1,2,3],[1142,1,1,3,4]]]],[29496,29565,30055,30155]]]]},{"k":"G4137","v":[["*",[90,90,[[39,17,17,0,17,[[929,1,1,0,1],[930,3,3,1,4],[931,1,1,4,5],[932,1,1,5,6],[933,1,1,6,7],[936,1,1,7,8],[940,1,1,8,9],[941,2,2,9,11],[949,1,1,11,12],[951,1,1,12,13],[954,2,2,13,15],[955,2,2,15,17]]],[40,3,3,17,20,[[957,1,1,17,18],[970,1,1,18,19],[971,1,1,19,20]]],[41,10,10,20,30,[[973,1,1,20,21],[974,1,1,21,22],[975,1,1,22,23],[976,1,1,23,24],[979,1,1,24,25],[981,1,1,25,26],[993,2,2,26,28],[994,1,1,28,29],[996,1,1,29,30]]],[42,15,15,30,45,[[999,1,1,30,31],[1003,1,1,31,32],[1008,2,2,32,34],[1009,1,1,34,35],[1011,2,2,35,37],[1012,2,2,37,39],[1013,2,2,39,41],[1014,2,2,41,43],[1015,2,2,43,45]]],[43,16,16,45,61,[[1018,1,1,45,46],[1019,2,2,46,48],[1020,1,1,48,49],[1022,2,2,49,51],[1024,2,2,51,53],[1026,1,1,53,54],[1029,1,1,54,55],[1030,3,3,55,58],[1031,1,1,58,59],[1036,1,1,59,60],[1041,1,1,60,61]]],[44,6,6,61,67,[[1046,1,1,61,62],[1053,1,1,62,63],[1058,1,1,63,64],[1060,3,3,64,67]]],[46,2,2,67,69,[[1084,1,1,67,68],[1087,1,1,68,69]]],[47,1,1,69,70,[[1095,1,1,69,70]]],[48,4,4,70,74,[[1097,1,1,70,71],[1099,1,1,71,72],[1100,1,1,72,73],[1101,1,1,73,74]]],[49,4,4,74,78,[[1103,1,1,74,75],[1104,1,1,75,76],[1106,2,2,76,78]]],[50,5,5,78,83,[[1107,2,2,78,80],[1108,1,1,80,81],[1110,2,2,81,83]]],[52,1,1,83,84,[[1116,1,1,83,84]]],[54,1,1,84,85,[[1125,1,1,84,85]]],[58,1,1,85,86,[[1147,1,1,85,86]]],[61,1,1,86,87,[[1159,1,1,86,87]]],[62,1,1,87,88,[[1164,1,1,87,88]]],[65,2,2,88,90,[[1169,1,1,88,89],[1172,1,1,89,90]]]],[23166,23184,23186,23192,23207,23223,23251,23362,23506,23574,23587,23830,23950,24108,24110,24138,24164,24230,24803,24854,24913,25013,25030,25084,25196,25332,25848,25850,25880,26035,26149,26336,26583,26618,26648,26710,26724,26732,26750,26771,26772,26794,26817,26849,26861,26939,26951,26977,27014,27062,27087,27139,27146,27239,27362,27387,27389,27414,27440,27606,27796,27959,28120,28274,28316,28317,28322,28920,28977,29176,29229,29270,29282,29322,29372,29393,29460,29461,29474,29490,29504,29554,29559,29660,29813,30316,30544,30657,30748,30804]]],["+",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[43,2,2,1,3,[[1019,1,1,1,2],[1041,1,1,2,3]]]],[23950,26977,27796]]],["Fulfil",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29393]]],["accomplish",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25332]]],["come",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26336]]],["complete",[2,2,[[50,2,2,0,2,[[1108,1,1,0,1],[1110,1,1,1,2]]]],[29504,29554]]],["ended",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[25196,27606]]],["expired",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27146]]],["fill",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[28316,29282]]],["filled",[16,16,[[41,2,2,0,2,[[974,1,1,0,1],[975,1,1,1,2]]],[42,2,2,2,4,[[1008,1,1,2,3],[1012,1,1,3,4]]],[43,4,4,4,8,[[1019,1,1,4,5],[1022,2,2,5,7],[1030,1,1,7,8]]],[44,2,2,8,10,[[1046,1,1,8,9],[1060,1,1,9,10]]],[46,1,1,10,11,[[1084,1,1,10,11]]],[48,2,2,11,13,[[1099,1,1,11,12],[1101,1,1,12,13]]],[49,1,1,13,14,[[1103,1,1,13,14]]],[50,1,1,14,15,[[1107,1,1,14,15]]],[54,1,1,15,16,[[1125,1,1,15,16]]]],[25013,25030,26583,26732,26951,27062,27087,27414,27959,28317,28920,29270,29322,29372,29474,29813]]],["filleth",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29229]]],["fulfil",[5,5,[[39,2,2,0,2,[[931,1,1,0,1],[933,1,1,1,2]]],[50,2,2,2,4,[[1107,1,1,2,3],[1110,1,1,3,4]]],[52,1,1,4,5,[[1116,1,1,4,5]]]],[23207,23251,29490,29559,29660]]],["fulfilled",[45,45,[[39,13,13,0,13,[[929,1,1,0,1],[930,3,3,1,4],[932,1,1,4,5],[936,1,1,5,6],[940,1,1,6,7],[941,1,1,7,8],[949,1,1,8,9],[954,2,2,9,11],[955,2,2,11,13]]],[40,3,3,13,16,[[957,1,1,13,14],[970,1,1,14,15],[971,1,1,15,16]]],[41,6,6,16,22,[[973,1,1,16,17],[976,1,1,17,18],[993,2,2,18,20],[994,1,1,20,21],[996,1,1,21,22]]],[42,10,10,22,32,[[999,1,1,22,23],[1008,1,1,23,24],[1009,1,1,24,25],[1011,1,1,25,26],[1013,2,2,26,28],[1014,2,2,28,30],[1015,2,2,30,32]]],[43,7,7,32,39,[[1018,1,1,32,33],[1020,1,1,33,34],[1026,1,1,34,35],[1029,1,1,35,36],[1030,2,2,36,38],[1031,1,1,38,39]]],[44,2,2,39,41,[[1053,1,1,39,40],[1058,1,1,40,41]]],[46,1,1,41,42,[[1087,1,1,41,42]]],[47,1,1,42,43,[[1095,1,1,42,43]]],[58,1,1,43,44,[[1147,1,1,43,44]]],[65,1,1,44,45,[[1172,1,1,44,45]]]],[23166,23184,23186,23192,23223,23362,23506,23574,23830,24108,24110,24138,24164,24230,24803,24854,24913,25084,25848,25850,25880,26035,26149,26618,26648,26724,26771,26772,26794,26817,26849,26861,26939,27014,27239,27362,27387,27389,27440,28120,28274,28977,29176,30316,30804]]],["full",[7,7,[[39,1,1,0,1,[[941,1,1,0,1]]],[42,2,2,1,3,[[1011,1,1,1,2],[1012,1,1,2,3]]],[43,1,1,3,4,[[1024,1,1,3,4]]],[49,1,1,4,5,[[1106,1,1,4,5]]],[61,1,1,5,6,[[1159,1,1,5,6]]],[62,1,1,6,7,[[1164,1,1,6,7]]]],[23587,26710,26750,27139,29460,30544,30657]]],["perfect",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30748]]],["preached",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28322]]],["supply",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29461]]]]},{"k":"G4138","v":[["*",[17,17,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[964,1,1,2,3]]],[42,1,1,3,4,[[997,1,1,3,4]]],[44,4,4,4,8,[[1056,2,2,4,6],[1058,1,1,6,7],[1060,1,1,7,8]]],[45,2,2,8,10,[[1071,2,2,8,10]]],[47,1,1,10,11,[[1094,1,1,10,11]]],[48,4,4,11,15,[[1097,2,2,11,13],[1099,1,1,13,14],[1100,1,1,14,15]]],[50,2,2,15,17,[[1107,1,1,15,16],[1108,1,1,16,17]]]],[23395,24281,24520,26060,28221,28234,28276,28332,28593,28595,29135,29216,29229,29270,29285,29484,29503]]],["+",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]]],[23395,24281]]],["fulfilling",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28276]]],["full",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24520]]],["fulness",[13,13,[[42,1,1,0,1,[[997,1,1,0,1]]],[44,3,3,1,4,[[1056,2,2,1,3],[1060,1,1,3,4]]],[45,2,2,4,6,[[1071,2,2,4,6]]],[47,1,1,6,7,[[1094,1,1,6,7]]],[48,4,4,7,11,[[1097,2,2,7,9],[1099,1,1,9,10],[1100,1,1,10,11]]],[50,2,2,11,13,[[1107,1,1,11,12],[1108,1,1,12,13]]]],[26060,28221,28234,28332,28593,28595,29135,29216,29229,29270,29285,29484,29503]]]]},{"k":"G4139","v":[["*",[17,17,[[39,3,3,0,3,[[933,1,1,0,1],[947,1,1,1,2],[950,1,1,2,3]]],[40,2,2,3,5,[[968,2,2,3,5]]],[41,3,3,5,8,[[982,3,3,5,8]]],[42,1,1,8,9,[[1000,1,1,8,9]]],[43,1,1,9,10,[[1024,1,1,9,10]]],[44,3,3,10,13,[[1058,2,2,10,12],[1060,1,1,12,13]]],[47,1,1,13,14,[[1095,1,1,13,14]]],[48,1,1,14,15,[[1100,1,1,14,15]]],[57,1,1,15,16,[[1140,1,1,15,16]]],[58,1,1,16,17,[[1147,1,1,16,17]]]],[23277,23781,23911,24704,24706,25390,25392,25399,26161,27143,28275,28276,28305,29176,29297,30103,30301]]],["+",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27143]]],["near",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26161]]],["neighbour",[15,15,[[39,3,3,0,3,[[933,1,1,0,1],[947,1,1,1,2],[950,1,1,2,3]]],[40,2,2,3,5,[[968,2,2,3,5]]],[41,3,3,5,8,[[982,3,3,5,8]]],[44,3,3,8,11,[[1058,2,2,8,10],[1060,1,1,10,11]]],[47,1,1,11,12,[[1095,1,1,11,12]]],[48,1,1,12,13,[[1100,1,1,12,13]]],[57,1,1,13,14,[[1140,1,1,13,14]]],[58,1,1,14,15,[[1147,1,1,14,15]]]],[23277,23781,23911,24704,24706,25390,25392,25399,28275,28276,28305,29176,29297,30103,30301]]]]},{"k":"G4140","v":[["satisfying",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29517]]]]},{"k":"G4141","v":[["smitten",[1,1,[[65,1,1,0,1,[[1174,1,1,0,1]]]],[30839]]]]},{"k":"G4142","v":[["*",[6,5,[[40,2,2,0,2,[[959,1,1,0,1],[960,1,1,1,2]]],[42,4,3,2,5,[[1002,3,2,2,4],[1017,1,1,4,5]]]],[24297,24359,26279,26280,26906]]],["boat",[2,1,[[42,2,1,0,1,[[1002,2,1,0,1]]]],[26279]]],["boats",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26280]]],["ship",[2,2,[[40,1,1,0,1,[[959,1,1,0,1]]],[42,1,1,1,2,[[1017,1,1,1,2]]]],[24297,26906]]],["ships",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24359]]]]},{"k":"G4143","v":[["*",[67,64,[[39,13,13,0,13,[[932,2,2,0,2],[936,2,2,2,4],[937,1,1,4,5],[941,1,1,5,6],[942,6,6,6,12],[943,1,1,12,13]]],[40,16,16,13,29,[[957,2,2,13,15],[960,3,3,15,18],[961,3,3,18,21],[962,5,5,21,26],[964,3,3,26,29]]],[41,8,6,29,35,[[977,6,4,29,33],[980,2,2,33,35]]],[42,7,6,35,41,[[1002,5,4,35,39],[1017,2,2,39,41]]],[43,19,19,41,60,[[1037,2,2,41,43],[1038,3,3,43,46],[1044,13,13,46,59],[1045,1,1,59,60]]],[58,1,1,60,61,[[1148,1,1,60,61]]],[65,3,3,61,64,[[1174,1,1,61,62],[1184,2,2,62,64]]]],[23230,23231,23368,23369,23380,23541,23610,23619,23621,23626,23629,23630,23672,24234,24235,24324,24359,24360,24366,24382,24385,24439,24452,24454,24458,24461,24510,24513,24514,25109,25110,25114,25118,25267,25282,26274,26276,26278,26281,26901,26904,27639,27664,27666,27667,27670,27857,27861,27865,27870,27872,27874,27877,27885,27886,27892,27893,27894,27899,27910,30323,30836,31010,31012]]],["+",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[43,1,1,2,3,[[1038,1,1,2,3]]]],[23672,26281,27670]]],["ship",[56,55,[[39,12,12,0,12,[[932,2,2,0,2],[936,2,2,2,4],[937,1,1,4,5],[941,1,1,5,6],[942,6,6,6,12]]],[40,16,16,12,28,[[957,2,2,12,14],[960,3,3,14,17],[961,3,3,17,20],[962,5,5,20,25],[964,3,3,25,28]]],[41,4,4,28,32,[[977,2,2,28,30],[980,2,2,30,32]]],[42,6,5,32,37,[[1002,4,3,32,35],[1017,2,2,35,37]]],[43,18,18,37,55,[[1037,2,2,37,39],[1038,2,2,39,41],[1044,13,13,41,54],[1045,1,1,54,55]]]],[23230,23231,23368,23369,23380,23541,23610,23619,23621,23626,23629,23630,24234,24235,24324,24359,24360,24366,24382,24385,24439,24452,24454,24458,24461,24510,24513,24514,25110,25114,25267,25282,26274,26276,26278,26901,26904,27639,27664,27666,27667,27857,27861,27865,27870,27872,27874,27877,27885,27886,27892,27893,27894,27899,27910]]],["ships",[8,8,[[41,4,4,0,4,[[977,4,4,0,4]]],[58,1,1,4,5,[[1148,1,1,4,5]]],[65,3,3,5,8,[[1174,1,1,5,6],[1184,2,2,6,8]]]],[25109,25110,25114,25118,30323,30836,31010,31012]]]]},{"k":"G4144","v":[["*",[3,3,[[43,3,3,0,3,[[1038,1,1,0,1],[1044,2,2,1,3]]]],[27671,27864,27865]]],["course",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27671]]],["sailing",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27864]]],["voyage",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27865]]]]},{"k":"G4145","v":[["*",[28,28,[[39,3,3,0,3,[[947,2,2,0,2],[955,1,1,2,3]]],[40,2,2,3,5,[[966,1,1,3,4],[968,1,1,4,5]]],[41,11,11,5,16,[[978,1,1,5,6],[984,1,1,6,7],[986,1,1,7,8],[988,4,4,8,12],[990,2,2,12,14],[991,1,1,14,15],[993,1,1,15,16]]],[46,1,1,16,17,[[1085,1,1,16,17]]],[48,1,1,17,18,[[1098,1,1,17,18]]],[53,1,1,18,19,[[1124,1,1,18,19]]],[58,5,5,19,24,[[1146,2,2,19,21],[1147,2,2,21,23],[1150,1,1,23,24]]],[65,4,4,24,28,[[1168,1,1,24,25],[1169,1,1,25,26],[1172,1,1,26,27],[1179,1,1,27,28]]]],[23785,23786,24186,24613,24714,25170,25475,25565,25621,25639,25641,25642,25711,25713,25733,25827,28941,29233,29805,30276,30277,30298,30299,30355,30726,30763,30808,30924]]],["man",[6,6,[[39,2,2,0,2,[[947,2,2,0,2]]],[40,1,1,2,3,[[966,1,1,2,3]]],[41,2,2,3,5,[[988,1,1,3,4],[990,1,1,4,5]]],[58,1,1,5,6,[[1146,1,1,5,6]]]],[23785,23786,24613,25642,25713,30277]]],["man's",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25641]]],["men",[4,4,[[41,1,1,0,1,[[993,1,1,0,1]]],[58,2,2,1,3,[[1147,1,1,1,2],[1150,1,1,2,3]]],[65,1,1,3,4,[[1172,1,1,3,4]]]],[25827,30299,30355,30808]]],["rich",[17,17,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,7,7,2,9,[[978,1,1,2,3],[984,1,1,3,4],[986,1,1,4,5],[988,2,2,5,7],[990,1,1,7,8],[991,1,1,8,9]]],[46,1,1,9,10,[[1085,1,1,9,10]]],[48,1,1,10,11,[[1098,1,1,10,11]]],[53,1,1,11,12,[[1124,1,1,11,12]]],[58,2,2,12,14,[[1146,1,1,12,13],[1147,1,1,13,14]]],[65,3,3,14,17,[[1168,1,1,14,15],[1169,1,1,15,16],[1179,1,1,16,17]]]],[24186,24714,25170,25475,25565,25621,25639,25711,25733,28941,29233,29805,30276,30298,30726,30763,30924]]]]},{"k":"G4146","v":[["*",[4,4,[[50,1,1,0,1,[[1109,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]],[55,1,1,2,3,[[1131,1,1,2,3]]],[60,1,1,3,4,[[1156,1,1,3,4]]]],[29533,29805,29929,30490]]],["abundantly",[2,2,[[55,1,1,0,1,[[1131,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[29929,30490]]],["richly",[2,2,[[50,1,1,0,1,[[1109,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[29533,29805]]]]},{"k":"G4147","v":[["*",[12,12,[[41,2,2,0,2,[[973,1,1,0,1],[984,1,1,1,2]]],[44,1,1,2,3,[[1055,1,1,2,3]]],[45,1,1,3,4,[[1065,1,1,3,4]]],[46,1,1,4,5,[[1085,1,1,4,5]]],[53,2,2,5,7,[[1124,2,2,5,7]]],[65,5,5,7,12,[[1169,2,2,7,9],[1184,3,3,9,12]]]],[24946,25480,28200,28441,28941,29797,29806,30763,30764,30996,31008,31012]]],["+",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25480]]],["goods",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30763]]],["rich",[10,10,[[41,1,1,0,1,[[973,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]],[53,2,2,4,6,[[1124,2,2,4,6]]],[65,4,4,6,10,[[1169,1,1,6,7],[1184,3,3,7,10]]]],[24946,28200,28441,28941,29797,29806,30764,30996,31008,31012]]]]},{"k":"G4148","v":[["*",[3,3,[[45,1,1,0,1,[[1062,1,1,0,1]]],[46,2,2,1,3,[[1083,1,1,1,2],[1086,1,1,2,3]]]],[28368,28908,28967]]],["+",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28908]]],["enriched",[2,2,[[45,1,1,0,1,[[1062,1,1,0,1]]],[46,1,1,1,2,[[1086,1,1,1,2]]]],[28368,28967]]]]},{"k":"G4149","v":[["riches",[22,21,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[44,5,4,3,7,[[1047,1,1,3,4],[1054,1,1,4,5],[1056,3,2,5,7]]],[46,1,1,7,8,[[1085,1,1,7,8]]],[48,5,5,8,13,[[1097,2,2,8,10],[1098,1,1,10,11],[1099,2,2,11,13]]],[49,1,1,13,14,[[1106,1,1,13,14]]],[50,2,2,14,16,[[1107,1,1,14,15],[1108,1,1,15,16]]],[53,1,1,16,17,[[1124,1,1,16,17]]],[57,1,1,17,18,[[1143,1,1,17,18]]],[58,1,1,18,19,[[1150,1,1,18,19]]],[65,2,2,19,21,[[1171,1,1,19,20],[1184,1,1,20,21]]]],[23561,24342,25259,27966,28178,28221,28242,28934,29213,29224,29236,29259,29267,29461,29492,29496,29805,30198,30356,30791,31010]]]]},{"k":"G4150","v":[["washed",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30824]]]]},{"k":"G4151","v":[["*",[385,350,[[39,19,19,0,19,[[929,2,2,0,2],[931,2,2,2,4],[932,1,1,4,5],[933,1,1,5,6],[936,1,1,6,7],[938,2,2,7,9],[940,6,6,9,15],[950,1,1,15,16],[954,1,1,16,17],[955,1,1,17,18],[956,1,1,18,19]]],[40,23,22,19,41,[[957,6,6,19,25],[958,1,1,25,26],[959,3,3,26,29],[961,3,3,29,32],[962,1,1,32,33],[963,1,1,33,34],[964,1,1,34,35],[965,4,3,35,38],[968,1,1,38,39],[969,1,1,39,40],[970,1,1,40,41]]],[41,38,37,41,78,[[973,7,7,41,48],[974,4,4,48,52],[975,2,2,52,54],[976,6,5,54,59],[978,1,1,59,60],[979,1,1,60,61],[980,3,3,61,64],[981,3,3,64,67],[982,2,2,67,69],[983,3,3,69,72],[984,2,2,72,74],[985,1,1,74,75],[995,1,1,75,76],[996,2,2,76,78]]],[42,24,18,78,96,[[997,3,2,78,80],[999,6,4,80,84],[1000,3,2,84,86],[1002,2,1,86,87],[1003,2,1,87,88],[1007,1,1,88,89],[1009,1,1,89,90],[1010,2,2,90,92],[1011,1,1,92,93],[1012,1,1,93,94],[1015,1,1,94,95],[1016,1,1,95,96]]],[43,70,68,96,164,[[1018,4,4,96,100],[1019,6,5,100,105],[1021,2,2,105,107],[1022,4,4,107,111],[1023,3,3,111,114],[1024,3,3,114,117],[1025,7,7,117,124],[1026,2,2,124,126],[1027,5,5,126,131],[1028,5,5,131,136],[1030,4,4,136,140],[1032,2,2,140,142],[1033,4,4,142,146],[1034,1,1,146,147],[1035,2,2,147,149],[1036,8,7,149,156],[1037,3,3,156,159],[1038,2,2,159,161],[1040,2,2,161,163],[1045,1,1,163,164]]],[44,35,28,164,192,[[1046,2,2,164,166],[1047,1,1,166,167],[1050,1,1,167,168],[1052,1,1,168,169],[1053,22,15,169,184],[1054,1,1,184,185],[1056,1,1,185,186],[1057,1,1,186,187],[1059,1,1,187,188],[1060,4,4,188,192]]],[45,41,33,192,225,[[1063,9,6,192,198],[1064,1,1,198,199],[1065,1,1,199,200],[1066,3,3,200,203],[1067,4,4,203,207],[1068,2,2,207,209],[1073,12,8,209,217],[1075,7,6,217,223],[1076,1,1,223,224],[1077,1,1,224,225]]],[46,17,15,225,240,[[1078,1,1,225,226],[1079,1,1,226,227],[1080,7,5,227,232],[1081,1,1,232,233],[1082,1,1,233,234],[1083,1,1,234,235],[1084,2,2,235,237],[1088,1,1,237,238],[1089,1,1,238,239],[1090,1,1,239,240]]],[47,18,15,240,255,[[1093,4,4,240,244],[1094,2,2,244,246],[1095,8,6,246,252],[1096,4,3,252,255]]],[48,15,15,255,270,[[1097,2,2,255,257],[1098,3,3,257,260],[1099,2,2,260,262],[1100,4,4,262,266],[1101,2,2,266,268],[1102,2,2,268,270]]],[49,4,4,270,274,[[1103,2,2,270,272],[1104,1,1,272,273],[1105,1,1,273,274]]],[50,2,2,274,276,[[1107,1,1,274,275],[1108,1,1,275,276]]],[51,5,5,276,281,[[1111,2,2,276,278],[1114,1,1,278,279],[1115,2,2,279,281]]],[52,3,3,281,284,[[1117,3,3,281,284]]],[53,4,3,284,287,[[1121,1,1,284,285],[1122,3,2,285,287]]],[54,3,3,287,290,[[1125,2,2,287,289],[1128,1,1,289,290]]],[55,1,1,290,291,[[1131,1,1,290,291]]],[56,1,1,291,292,[[1132,1,1,291,292]]],[57,12,12,292,304,[[1133,2,2,292,294],[1134,1,1,294,295],[1135,1,1,295,296],[1136,1,1,296,297],[1138,1,1,297,298],[1141,2,2,298,300],[1142,2,2,300,302],[1144,2,2,302,304]]],[58,2,2,304,306,[[1147,1,1,304,305],[1149,1,1,305,306]]],[59,9,9,306,315,[[1151,4,4,306,310],[1153,3,3,310,313],[1154,2,2,313,315]]],[60,1,1,315,316,[[1156,1,1,315,316]]],[61,13,9,316,325,[[1161,1,1,316,317],[1162,8,5,317,322],[1163,4,3,322,325]]],[64,2,2,325,327,[[1166,2,2,325,327]]],[65,23,23,327,350,[[1167,2,2,327,329],[1168,4,4,329,333],[1169,4,4,333,337],[1170,2,2,337,339],[1171,1,1,339,340],[1177,1,1,340,341],[1179,1,1,341,342],[1180,1,1,342,343],[1182,2,2,343,345],[1183,1,1,345,346],[1184,1,1,346,347],[1185,1,1,347,348],[1187,1,1,348,349],[1188,1,1,349,350]]]],[23162,23164,23203,23208,23210,23237,23361,23418,23437,23507,23517,23520,23521,23532,23534,23915,24095,24179,24214,24223,24225,24227,24238,24241,24242,24268,24299,24317,24318,24366,24372,24377,24414,24488,24512,24555,24558,24563,24709,24728,24792,24908,24910,24928,24934,24940,24960,24973,24998,24999,25000,25013,25041,25047,25064,25077,25081,25096,25099,25164,25216,25247,25274,25300,25340,25343,25356,25383,25384,25418,25429,25431,25469,25471,25529,25981,26028,26030,26076,26077,26125,26126,26128,26154,26179,26180,26320,26367,26556,26651,26685,26694,26725,26739,26855,26889,26925,26928,26931,26939,26953,26966,26967,26982,26987,27030,27053,27062,27068,27075,27091,27104,27106,27111,27167,27171,27175,27183,27191,27193,27194,27195,27205,27215,27233,27247,27278,27297,27303,27304,27306,27319,27322,27323,27331,27335,27364,27366,27371,27414,27450,27470,27489,27490,27499,27501,27539,27562,27582,27587,27591,27597,27598,27600,27601,27606,27648,27649,27654,27668,27675,27742,27743,27924,27934,27939,27991,28052,28097,28117,28118,28120,28121,28122,28125,28126,28127,28129,28130,28131,28132,28139,28142,28143,28156,28217,28256,28297,28316,28319,28322,28333,28398,28404,28405,28406,28407,28408,28426,28454,28457,28458,28459,28478,28484,28486,28487,28521,28527,28637,28638,28641,28642,28643,28644,28645,28647,28680,28690,28692,28693,28694,28710,28763,28794,28822,28837,28844,28847,28849,28858,28859,28872,28882,28904,28917,28929,28993,29040,29057,29104,29105,29107,29116,29137,29160,29167,29178,29179,29180,29184,29187,29189,29196,29206,29219,29223,29231,29247,29251,29256,29267,29275,29276,29295,29302,29313,29322,29354,29355,29380,29388,29392,29424,29473,29499,29565,29566,29611,29640,29644,29663,29669,29674,29747,29748,29759,29816,29823,29892,29928,29963,29970,29977,29981,30002,30026,30048,30113,30119,30148,30162,30221,30235,30319,30342,30376,30385,30386,30396,30428,30442,30443,30452,30460,30500,30603,30604,30605,30606,30609,30616,30630,30631,30632,30691,30692,30701,30707,30724,30728,30734,30746,30747,30752,30759,30768,30770,30773,30785,30883,30923,30939,30967,30968,30978,30995,31027,31063,31097]]],["+",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27371]]],["Ghost",[89,88,[[39,6,6,0,6,[[929,2,2,0,2],[931,1,1,2,3],[940,2,2,3,5],[956,1,1,5,6]]],[40,4,4,6,10,[[957,1,1,6,7],[959,1,1,7,8],[968,1,1,8,9],[969,1,1,9,10]]],[41,11,11,10,21,[[973,4,4,10,14],[974,2,2,14,16],[975,2,2,16,18],[976,1,1,18,19],[984,2,2,19,21]]],[42,4,4,21,25,[[997,1,1,21,22],[1003,1,1,22,23],[1010,1,1,23,24],[1016,1,1,24,25]]],[43,41,40,25,65,[[1018,4,4,25,29],[1019,3,3,29,32],[1021,2,2,32,34],[1022,2,2,34,36],[1023,2,2,36,38],[1024,2,2,38,40],[1025,4,4,40,44],[1026,2,2,44,46],[1027,4,4,46,50],[1028,3,3,50,53],[1030,3,3,53,56],[1032,2,2,56,58],[1033,1,1,58,59],[1036,3,2,59,61],[1037,2,2,61,63],[1038,1,1,63,64],[1045,1,1,64,65]]],[44,5,5,65,70,[[1050,1,1,65,66],[1054,1,1,66,67],[1059,1,1,67,68],[1060,2,2,68,70]]],[45,3,3,70,73,[[1063,1,1,70,71],[1067,1,1,71,72],[1073,1,1,72,73]]],[46,2,2,73,75,[[1083,1,1,73,74],[1090,1,1,74,75]]],[51,2,2,75,77,[[1111,2,2,75,77]]],[54,1,1,77,78,[[1125,1,1,77,78]]],[55,1,1,78,79,[[1131,1,1,78,79]]],[57,5,5,79,84,[[1134,1,1,79,80],[1135,1,1,80,81],[1138,1,1,81,82],[1141,1,1,82,83],[1142,1,1,83,84]]],[59,1,1,84,85,[[1151,1,1,84,85]]],[60,1,1,85,86,[[1156,1,1,85,86]]],[61,1,1,86,87,[[1163,1,1,86,87]]],[64,1,1,87,88,[[1166,1,1,87,88]]]],[23162,23164,23203,23520,23521,24214,24223,24317,24709,24728,24908,24928,24934,24960,24998,24999,25041,25047,25064,25469,25471,26077,26367,26694,26889,26925,26928,26931,26939,26953,26982,26987,27030,27053,27062,27091,27104,27106,27167,27171,27191,27193,27194,27195,27233,27247,27297,27303,27304,27306,27322,27323,27331,27364,27366,27414,27450,27470,27489,27587,27591,27649,27654,27675,27924,28052,28156,28297,28316,28319,28407,28486,28637,28904,29057,29565,29566,29823,29928,29981,30002,30048,30113,30148,30386,30500,30631,30692]]],["Spirit",[138,124,[[39,4,4,0,4,[[931,1,1,0,1],[932,1,1,1,2],[938,1,1,2,3],[940,1,1,3,4]]],[40,2,2,4,6,[[957,2,2,4,6]]],[41,5,5,6,11,[[974,1,1,6,7],[976,3,3,7,10],[983,1,1,10,11]]],[42,11,11,11,22,[[997,2,2,11,13],[999,4,4,13,17],[1000,1,1,17,18],[1003,1,1,18,19],[1010,1,1,19,20],[1011,1,1,20,21],[1012,1,1,21,22]]],[43,11,11,22,33,[[1019,3,3,22,25],[1022,1,1,25,26],[1025,2,2,26,28],[1027,1,1,28,29],[1028,2,2,29,31],[1033,1,1,31,32],[1038,1,1,32,33]]],[44,21,16,33,49,[[1053,19,14,33,47],[1060,2,2,47,49]]],[45,18,14,49,63,[[1063,5,4,49,53],[1064,1,1,53,54],[1067,1,1,54,55],[1068,1,1,55,56],[1073,10,7,56,63]]],[46,6,5,63,68,[[1078,1,1,63,64],[1080,4,3,64,67],[1082,1,1,67,68]]],[47,16,13,68,81,[[1093,4,4,68,72],[1094,2,2,72,74],[1095,8,6,74,80],[1096,2,1,80,81]]],[48,12,12,81,93,[[1097,1,1,81,82],[1098,2,2,82,84],[1099,2,2,84,86],[1100,3,3,86,89],[1101,2,2,89,91],[1102,2,2,91,93]]],[49,2,2,93,95,[[1103,1,1,93,94],[1104,1,1,94,95]]],[50,1,1,95,96,[[1107,1,1,95,96]]],[51,2,2,96,98,[[1114,1,1,96,97],[1115,1,1,97,98]]],[52,1,1,98,99,[[1117,1,1,98,99]]],[53,2,2,99,101,[[1121,1,1,99,100],[1122,1,1,100,101]]],[57,2,2,101,103,[[1141,1,1,101,102],[1142,1,1,102,103]]],[59,4,4,103,107,[[1151,3,3,103,106],[1153,1,1,106,107]]],[61,6,5,107,112,[[1161,1,1,107,108],[1162,2,2,108,110],[1163,3,2,110,112]]],[64,1,1,112,113,[[1166,1,1,112,113]]],[65,11,11,113,124,[[1167,1,1,113,114],[1168,4,4,114,118],[1169,3,3,118,121],[1177,1,1,121,122],[1180,1,1,122,123],[1188,1,1,123,124]]]],[23208,23210,23437,23517,24225,24227,25000,25064,25077,25081,25418,26076,26077,26125,26126,26128,26154,26180,26367,26685,26725,26739,26953,26966,26967,27068,27205,27215,27278,27319,27335,27490,27668,28117,28118,28120,28121,28125,28126,28127,28129,28130,28131,28132,28139,28142,28143,28322,28333,28398,28404,28405,28408,28426,28478,28527,28637,28638,28641,28642,28643,28645,28647,28822,28844,28858,28859,28882,29104,29105,29107,29116,29137,29160,29167,29178,29179,29180,29184,29187,29196,29219,29247,29251,29256,29267,29275,29276,29302,29313,29322,29354,29355,29380,29392,29473,29611,29640,29674,29747,29748,30119,30162,30376,30385,30396,30442,30603,30605,30616,30630,30632,30691,30707,30724,30728,30734,30746,30752,30759,30768,30883,30939,31097]]],["Spirits",[4,4,[[65,4,4,0,4,[[1167,1,1,0,1],[1169,1,1,1,2],[1170,1,1,2,3],[1171,1,1,3,4]]]],[30701,30747,30773,30785]]],["ghost",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]]],[24179,26855]]],["life",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30923]]],["spirit",[119,113,[[39,5,5,0,5,[[933,1,1,0,1],[940,2,2,1,3],[950,1,1,3,4],[954,1,1,4,5]]],[40,13,12,5,17,[[957,2,2,5,7],[958,1,1,7,8],[959,1,1,8,9],[961,2,2,9,11],[963,1,1,11,12],[964,1,1,12,13],[965,4,3,13,16],[970,1,1,16,17]]],[41,16,16,17,33,[[973,3,3,17,20],[974,1,1,20,21],[976,1,1,21,22],[980,2,2,22,24],[981,3,3,24,27],[982,1,1,27,28],[983,1,1,28,29],[985,1,1,29,30],[995,1,1,30,31],[996,2,2,31,33]]],[42,7,6,33,39,[[999,1,1,33,34],[1000,2,2,34,36],[1002,2,1,36,37],[1007,1,1,37,38],[1009,1,1,38,39]]],[43,13,13,39,52,[[1023,1,1,39,40],[1024,1,1,40,41],[1033,2,2,41,43],[1034,1,1,43,44],[1035,2,2,44,46],[1036,3,3,46,49],[1037,1,1,49,50],[1040,2,2,50,52]]],[44,8,8,52,60,[[1046,2,2,52,54],[1047,1,1,54,55],[1052,1,1,55,56],[1053,2,2,56,58],[1056,1,1,58,59],[1057,1,1,59,60]]],[45,17,15,60,75,[[1063,3,2,60,62],[1065,1,1,62,63],[1066,3,3,63,66],[1067,2,2,66,68],[1068,1,1,68,69],[1075,5,4,69,73],[1076,1,1,73,74],[1077,1,1,74,75]]],[46,9,8,75,83,[[1079,1,1,75,76],[1080,3,2,76,78],[1081,1,1,78,79],[1084,2,2,79,81],[1088,1,1,81,82],[1089,1,1,82,83]]],[47,2,2,83,85,[[1096,2,2,83,85]]],[48,3,3,85,88,[[1097,1,1,85,86],[1098,1,1,86,87],[1100,1,1,87,88]]],[49,2,2,88,90,[[1103,1,1,88,89],[1105,1,1,89,90]]],[50,1,1,90,91,[[1108,1,1,90,91]]],[51,1,1,91,92,[[1115,1,1,91,92]]],[52,2,2,92,94,[[1117,2,2,92,94]]],[53,1,1,94,95,[[1122,1,1,94,95]]],[54,2,2,95,97,[[1125,1,1,95,96],[1128,1,1,96,97]]],[56,1,1,97,98,[[1132,1,1,97,98]]],[57,1,1,98,99,[[1136,1,1,98,99]]],[58,2,2,99,101,[[1147,1,1,99,100],[1149,1,1,100,101]]],[59,3,3,101,104,[[1153,1,1,101,102],[1154,2,2,102,104]]],[61,5,4,104,108,[[1162,5,4,104,108]]],[65,5,5,108,113,[[1170,1,1,108,109],[1183,1,1,109,110],[1184,1,1,110,111],[1185,1,1,111,112],[1187,1,1,112,113]]]],[23237,23507,23532,23915,24095,24238,24241,24268,24318,24366,24372,24488,24512,24555,24558,24563,24792,24910,24940,24973,25013,25096,25274,25300,25340,25343,25356,25384,25429,25529,25981,26028,26030,26126,26179,26180,26320,26556,26651,27111,27175,27499,27501,27539,27562,27582,27600,27601,27606,27648,27742,27743,27934,27939,27991,28097,28131,28132,28217,28256,28405,28406,28454,28457,28458,28459,28484,28487,28521,28680,28692,28693,28694,28763,28794,28837,28847,28849,28872,28917,28929,28993,29040,29189,29206,29223,29231,29295,29388,29424,29499,29644,29663,29669,29759,29816,29892,29963,30026,30319,30342,30428,30452,30460,30604,30605,30606,30609,30770,30978,30995,31027,31063]]],["spirits",[28,28,[[39,3,3,0,3,[[936,1,1,0,1],[938,1,1,1,2],[940,1,1,2,3]]],[40,4,4,3,7,[[957,1,1,3,4],[959,1,1,4,5],[961,1,1,5,6],[962,1,1,6,7]]],[41,6,6,7,13,[[976,1,1,7,8],[978,1,1,8,9],[979,1,1,9,10],[980,1,1,10,11],[982,1,1,11,12],[983,1,1,12,13]]],[43,4,4,13,17,[[1022,1,1,13,14],[1025,1,1,14,15],[1036,2,2,15,17]]],[45,2,2,17,19,[[1073,1,1,17,18],[1075,1,1,18,19]]],[53,1,1,19,20,[[1122,1,1,19,20]]],[57,4,4,20,24,[[1133,2,2,20,22],[1144,2,2,22,24]]],[59,1,1,24,25,[[1153,1,1,24,25]]],[61,1,1,25,26,[[1162,1,1,25,26]]],[65,2,2,26,28,[[1182,2,2,26,28]]]],[23361,23418,23534,24242,24299,24377,24414,25099,25164,25216,25247,25383,25431,27075,27183,27597,27598,28644,28710,29748,29970,29977,30221,30235,30443,30604,30967,30968]]],["spiritual",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28690]]],["spiritually",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28122]]],["wind",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26128]]]]},{"k":"G4152","v":[["*",[26,21,[[44,3,3,0,3,[[1046,1,1,0,1],[1052,1,1,1,2],[1060,1,1,2,3]]],[45,15,11,3,14,[[1063,3,2,3,5],[1064,1,1,5,6],[1070,1,1,6,7],[1071,3,2,7,9],[1073,1,1,9,10],[1075,2,2,10,12],[1076,4,2,12,14]]],[47,1,1,14,15,[[1096,1,1,14,15]]],[48,3,3,15,18,[[1097,1,1,15,16],[1101,1,1,16,17],[1102,1,1,17,18]]],[50,2,2,18,20,[[1107,1,1,18,19],[1109,1,1,19,20]]],[59,2,1,20,21,[[1152,2,1,20,21]]]],[27941,28105,28330,28407,28409,28411,28551,28570,28571,28635,28679,28715,28762,28764,29189,29209,29323,29349,29474,29533,30404]]],["+",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28409]]],["spiritual",[22,18,[[44,2,2,0,2,[[1046,1,1,0,1],[1052,1,1,1,2]]],[45,12,9,2,11,[[1063,1,1,2,3],[1064,1,1,3,4],[1071,3,2,4,6],[1073,1,1,6,7],[1075,2,2,7,9],[1076,4,2,9,11]]],[47,1,1,11,12,[[1096,1,1,11,12]]],[48,3,3,12,15,[[1097,1,1,12,13],[1101,1,1,13,14],[1102,1,1,14,15]]],[50,2,2,15,17,[[1107,1,1,15,16],[1109,1,1,16,17]]],[59,2,1,17,18,[[1152,2,1,17,18]]]],[27941,28105,28407,28411,28570,28571,28635,28679,28715,28762,28764,29189,29209,29323,29349,29474,29533,30404]]],["things",[3,3,[[44,1,1,0,1,[[1060,1,1,0,1]]],[45,2,2,1,3,[[1063,1,1,1,2],[1070,1,1,2,3]]]],[28330,28407,28551]]]]},{"k":"G4153","v":[["spiritually",[2,2,[[45,1,1,0,1,[[1063,1,1,0,1]]],[65,1,1,1,2,[[1177,1,1,1,2]]]],[28408,30880]]]]},{"k":"G4154","v":[["*",[7,7,[[39,2,2,0,2,[[935,2,2,0,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[42,2,2,3,5,[[999,1,1,3,4],[1002,1,1,4,5]]],[43,1,1,5,6,[[1044,1,1,5,6]]],[65,1,1,6,7,[[1173,1,1,6,7]]]],[23341,23343,25514,26128,26275,27895,30811]]],["blew",[3,3,[[39,2,2,0,2,[[935,2,2,0,2]]],[42,1,1,2,3,[[1002,1,1,2,3]]]],[23341,23343,26275]]],["blow",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[65,1,1,1,2,[[1173,1,1,1,2]]]],[25514,30811]]],["bloweth",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26128]]],["wind",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27895]]]]},{"k":"G4155","v":[["*",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]]],[23755,24377]]],["choked",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24377]]],["throat",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23755]]]]},{"k":"G4156","v":[["strangled",[3,3,[[43,3,3,0,3,[[1032,2,2,0,2],[1038,1,1,2,3]]]],[27462,27471,27689]]]]},{"k":"G4157","v":[["*",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1034,1,1,1,2]]]],[26951,27548]]],["breath",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27548]]],["wind",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26951]]]]},{"k":"G4158","v":[["foot",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30710]]]]},{"k":"G4159","v":[["*",[28,26,[[39,5,5,0,5,[[941,3,3,0,3],[943,1,1,3,4],[949,1,1,4,5]]],[40,3,3,5,8,[[962,1,1,5,6],[964,1,1,6,7],[968,1,1,7,8]]],[41,4,4,8,12,[[973,1,1,8,9],[985,2,2,9,11],[992,1,1,11,12]]],[42,13,11,12,23,[[997,1,1,12,13],[998,1,1,13,14],[999,1,1,14,15],[1000,1,1,15,16],[1002,1,1,16,17],[1003,3,2,17,19],[1004,2,1,19,20],[1005,2,2,20,22],[1015,1,1,22,23]]],[58,1,1,23,24,[[1149,1,1,23,24]]],[65,2,2,24,26,[[1168,1,1,24,25],[1173,1,1,25,26]]]],[23566,23593,23595,23666,23851,24409,24504,24710,24936,25543,25545,25786,26092,26104,26128,26167,26262,26355,26356,26395,26469,26470,26834,30338,30722,30823]]],["Whence",[6,6,[[39,3,3,0,3,[[941,2,2,0,2],[943,1,1,2,3]]],[42,3,3,3,6,[[997,1,1,3,4],[1002,1,1,4,5],[1015,1,1,5,6]]]],[23593,23595,23666,26092,26262,26834]]],["whence",[22,20,[[39,2,2,0,2,[[941,1,1,0,1],[949,1,1,1,2]]],[40,3,3,2,5,[[962,1,1,2,3],[964,1,1,3,4],[968,1,1,4,5]]],[41,4,4,5,9,[[973,1,1,5,6],[985,2,2,6,8],[992,1,1,8,9]]],[42,10,8,9,17,[[998,1,1,9,10],[999,1,1,10,11],[1000,1,1,11,12],[1003,3,2,12,14],[1004,2,1,14,15],[1005,2,2,15,17]]],[58,1,1,17,18,[[1149,1,1,17,18]]],[65,2,2,18,20,[[1168,1,1,18,19],[1173,1,1,19,20]]]],[23566,23851,24409,24504,24710,24936,25543,25545,25786,26104,26128,26167,26355,26356,26395,26469,26470,30338,30722,30823]]]]},{"k":"G4160","v":[["*",[576,518,[[39,89,73,0,73,[[929,1,1,0,1],[931,3,3,1,4],[932,1,1,4,5],[933,7,6,5,11],[934,5,3,11,14],[935,11,8,14,22],[936,2,1,22,23],[937,1,1,23,24],[940,8,6,24,30],[941,5,5,30,35],[945,2,2,35,37],[946,1,1,37,38],[947,3,2,38,40],[948,5,4,40,44],[949,11,11,44,55],[950,1,1,55,56],[951,7,4,56,60],[952,1,1,60,61],[953,5,3,61,64],[954,5,5,64,69],[955,2,2,69,71],[956,2,2,71,73]]],[40,49,47,73,120,[[957,2,2,73,75],[958,3,3,75,78],[959,5,5,78,83],[960,1,1,83,84],[961,3,3,84,87],[962,4,4,87,91],[963,5,4,91,95],[964,1,1,95,96],[965,3,3,96,99],[966,5,5,99,104],[967,7,6,104,110],[968,1,1,110,111],[970,3,3,111,114],[971,6,6,114,120]]],[41,90,81,120,201,[[973,5,5,120,125],[974,2,2,125,127],[975,8,8,127,135],[976,1,1,135,136],[977,4,4,136,140],[978,16,13,140,153],[979,2,1,153,154],[980,4,3,154,157],[981,5,5,157,162],[982,4,3,162,165],[983,3,2,165,167],[984,7,7,167,174],[985,2,2,174,176],[986,3,3,176,179],[987,1,1,179,180],[988,4,4,180,184],[989,4,2,184,186],[990,4,4,186,190],[991,3,3,190,193],[992,4,4,193,197],[994,1,1,197,198],[995,3,3,198,201]]],[42,110,97,201,298,[[998,6,6,201,207],[999,3,2,207,209],[1000,7,7,209,216],[1001,13,10,216,226],[1002,8,8,226,234],[1003,10,8,234,242],[1004,9,9,242,251],[1005,7,7,251,258],[1006,5,5,258,263],[1007,5,4,263,267],[1008,5,4,267,271],[1009,7,5,271,276],[1010,8,6,276,282],[1011,6,5,282,287],[1012,2,2,287,289],[1013,1,1,289,290],[1014,2,2,290,292],[1015,4,4,292,296],[1016,1,1,296,297],[1017,1,1,297,298]]],[43,69,65,298,363,[[1018,2,1,298,299],[1019,3,3,299,302],[1020,1,1,302,303],[1021,4,4,303,307],[1022,1,1,307,308],[1023,1,1,308,309],[1024,7,7,309,316],[1025,2,2,316,318],[1026,5,4,318,322],[1027,4,4,322,326],[1028,1,1,326,327],[1029,1,1,327,328],[1030,1,1,328,329],[1031,4,3,329,332],[1032,5,5,332,337],[1033,3,3,337,340],[1034,2,2,340,342],[1035,2,2,342,344],[1036,3,3,344,347],[1037,2,2,347,349],[1038,4,4,349,353],[1039,3,2,353,355],[1040,2,2,355,357],[1041,2,2,357,359],[1042,1,1,359,360],[1043,1,1,360,361],[1044,1,1,361,362],[1045,1,1,362,363]]],[44,23,23,363,386,[[1046,3,3,363,366],[1047,2,2,366,368],[1048,2,2,368,370],[1049,1,1,370,371],[1052,5,5,371,376],[1054,3,3,376,379],[1055,1,1,379,380],[1057,1,1,380,381],[1058,3,3,381,384],[1060,1,1,384,385],[1061,1,1,385,386]]],[45,15,13,386,399,[[1066,1,1,386,387],[1067,2,2,387,389],[1068,4,3,389,392],[1070,1,1,392,393],[1071,3,2,393,395],[1072,2,2,395,397],[1076,1,1,397,398],[1077,1,1,398,399]]],[46,9,7,399,406,[[1082,1,1,399,400],[1085,2,2,400,402],[1088,4,3,402,405],[1090,2,1,405,406]]],[47,6,6,406,412,[[1092,1,1,406,407],[1093,2,2,407,409],[1095,2,2,409,411],[1096,1,1,411,412]]],[48,10,10,412,422,[[1097,1,1,412,413],[1098,3,3,413,416],[1099,2,2,416,418],[1100,1,1,418,419],[1102,3,3,419,422]]],[49,3,3,422,425,[[1103,1,1,422,423],[1104,1,1,423,424],[1106,1,1,424,425]]],[50,3,3,425,428,[[1109,2,2,425,427],[1110,1,1,427,428]]],[51,4,4,428,432,[[1111,1,1,428,429],[1114,1,1,429,430],[1115,2,2,430,432]]],[52,2,1,432,433,[[1118,2,1,432,433]]],[53,4,4,433,437,[[1119,1,1,433,434],[1120,1,1,434,435],[1122,1,1,435,436],[1123,1,1,436,437]]],[54,1,1,437,438,[[1128,1,1,437,438]]],[55,1,1,438,439,[[1131,1,1,438,439]]],[56,3,3,439,442,[[1132,3,3,439,442]]],[57,19,18,442,460,[[1133,3,3,442,445],[1135,1,1,445,446],[1138,1,1,446,447],[1139,1,1,447,448],[1140,2,2,448,450],[1142,3,3,450,453],[1143,1,1,453,454],[1144,2,2,454,456],[1145,5,4,456,460]]],[58,12,10,460,470,[[1147,4,4,460,464],[1148,3,2,464,466],[1149,4,3,466,469],[1150,1,1,469,470]]],[59,3,3,470,473,[[1152,1,1,470,471],[1153,2,2,471,473]]],[60,4,3,473,476,[[1156,4,3,473,476]]],[61,12,11,476,487,[[1159,2,2,476,478],[1160,2,2,478,480],[1161,7,6,480,486],[1163,1,1,486,487]]],[63,3,3,487,490,[[1165,3,3,487,490]]],[64,2,2,490,492,[[1166,2,2,490,492]]],[65,30,26,492,518,[[1167,1,1,492,493],[1168,1,1,493,494],[1169,2,2,494,496],[1171,1,1,496,497],[1177,1,1,497,498],[1178,2,2,498,500],[1179,10,7,500,507],[1180,1,1,507,508],[1182,1,1,508,509],[1183,3,2,509,511],[1185,2,2,511,513],[1187,2,2,513,515],[1188,3,3,515,518]]]],[23168,23195,23200,23202,23228,23253,23266,23270,23278,23280,23281,23283,23284,23285,23328,23333,23334,23335,23337,23338,23340,23342,23354,23407,23491,23492,23501,23505,23522,23539,23562,23565,23567,23580,23597,23704,23712,23762,23766,23778,23797,23804,23807,23824,23832,23839,23841,23847,23849,23850,23853,23857,23862,23866,23869,23874,23921,23923,23933,23941,24003,24024,24048,24053,24066,24067,24072,24073,24127,24151,24152,24209,24210,24218,24232,24283,24284,24285,24294,24296,24300,24302,24323,24355,24383,24384,24396,24412,24427,24428,24437,24471,24475,24476,24500,24525,24543,24551,24577,24594,24605,24623,24624,24639,24643,24645,24657,24668,24669,24673,24682,24761,24762,24763,24827,24833,24834,24838,24840,24841,24918,24942,24944,24961,24965,25000,25021,25029,25033,25034,25035,25036,25037,25039,25044,25086,25113,25136,25140,25141,25148,25149,25156,25157,25169,25172,25173,25177,25179,25189,25192,25193,25195,25203,25253,25266,25284,25311,25316,25334,25344,25355,25388,25391,25400,25445,25447,25463,25476,25477,25492,25502,25506,25507,25527,25540,25565,25566,25569,25607,25623,25624,25628,25629,25660,25661,25695,25696,25706,25729,25749,25777,25779,25781,25787,25792,25794,25883,25957,25966,25969,26100,26106,26110,26111,26113,26118,26122,26141,26157,26185,26190,26195,26201,26202,26210,26221,26225,26226,26228,26229,26230,26237,26239,26240,26246,26259,26263,26267,26271,26272,26285,26287,26295,26331,26332,26345,26347,26349,26351,26359,26379,26409,26410,26415,26419,26420,26421,26422,26425,26434,26446,26451,26454,26456,26466,26471,26473,26506,26514,26518,26519,26522,26560,26568,26569,26570,26582,26596,26598,26617,26637,26642,26645,26647,26657,26678,26680,26681,26682,26691,26699,26704,26713,26714,26720,26723,26728,26729,26763,26803,26820,26832,26837,26848,26849,26897,26923,26924,26971,26985,26986,27008,27029,27038,27046,27050,27093,27109,27135,27140,27152,27156,27159,27160,27166,27178,27182,27222,27229,27252,27255,27261,27265,27292,27298,27337,27345,27384,27425,27429,27441,27445,27446,27454,27459,27475,27501,27504,27513,27547,27549,27578,27580,27596,27599,27609,27629,27650,27677,27683,27687,27697,27714,27730,27746,27747,27781,27786,27799,27833,27873,27916,27939,27958,27962,27965,27976,27999,28003,28043,28106,28107,28110,28111,28112,28175,28176,28183,28193,28265,28269,28270,28280,28329,28353,28456,28482,28485,28523,28524,28525,28563,28580,28598,28624,28625,28747,28777,28898,28942,28943,28996,29001,29014,29050,29091,29112,29114,29165,29179,29197,29222,29232,29243,29244,29262,29271,29288,29343,29345,29346,29365,29405,29456,29534,29540,29558,29562,29613,29632,29645,29682,29709,29717,29763,29784,29875,29928,29942,29952,29959,29965,29966,29970,29997,30047,30091,30097,30101,30140,30142,30169,30200,30225,30239,30247,30258,30260,30262,30301,30305,30306,30312,30331,30337,30350,30352,30354,30369,30421,30435,30436,30489,30494,30498,30546,30550,30567,30579,30583,30586,30587,30588,30589,30601,30634,30663,30664,30668,30675,30687,30703,30722,30755,30758,30789,30879,30906,30908,30913,30915,30920,30921,30922,30923,30924,30933,30968,30991,30992,31036,31037,31058,31080,31082,31094,31095]]],["+",[28,28,[[39,4,4,0,4,[[931,1,1,0,1],[935,1,1,1,2],[954,1,1,2,3],[956,1,1,3,4]]],[40,3,3,4,7,[[958,1,1,4,5],[959,1,1,5,6],[971,1,1,6,7]]],[41,7,7,7,14,[[973,1,1,7,8],[975,1,1,8,9],[978,2,2,9,11],[985,1,1,11,12],[990,2,2,12,14]]],[42,2,2,14,16,[[1004,1,1,14,15],[1010,1,1,15,16]]],[43,7,7,16,23,[[1024,2,2,16,18],[1037,1,1,18,19],[1040,1,1,19,20],[1041,1,1,20,21],[1042,1,1,21,22],[1044,1,1,22,23]]],[45,1,1,23,24,[[1067,1,1,23,24]]],[57,1,1,24,25,[[1133,1,1,24,25]]],[60,1,1,25,26,[[1156,1,1,25,26]]],[61,1,1,26,27,[[1161,1,1,26,27]]],[65,1,1,27,28,[[1183,1,1,27,28]]]],[23202,23335,24127,24209,24283,24294,24841,24961,25034,25157,25189,25540,25695,25696,26420,26680,27135,27140,27650,27746,27781,27799,27873,28485,29966,30494,30583,30992]]],["Do",[4,4,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[43,1,1,2,3,[[1038,1,1,2,3]]],[49,1,1,3,4,[[1104,1,1,3,4]]]],[23354,25203,27687,29405]]],["Make",[3,3,[[41,1,1,0,1,[[988,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[43,1,1,2,3,[[1024,1,1,2,3]]]],[25629,26267,27156]]],["abode",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27629]]],["appointed",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[29997]]],["bare",[2,2,[[41,1,1,0,1,[[980,1,1,0,1]]],[65,1,1,1,2,[[1188,1,1,1,2]]]],[25253,31082]]],["bear",[2,2,[[41,1,1,0,1,[[985,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[25527,30331]]],["been",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29014]]],["bring",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27786]]],["cause",[4,4,[[44,1,1,0,1,[[1061,1,1,0,1]]],[50,1,1,1,2,[[1110,1,1,1,2]]],[65,2,2,2,4,[[1178,1,1,2,3],[1179,1,1,3,4]]]],[28353,29558,30906,30923]]],["caused",[2,2,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]]],[26560,27445]]],["causeth",[3,3,[[39,1,1,0,1,[[933,1,1,0,1]]],[65,2,2,1,3,[[1179,2,2,1,3]]]],[23266,30920,30924]]],["commit",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[61,1,1,1,2,[[1161,1,1,1,2]]]],[25507,30588]]],["committed",[4,4,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]]],[24833,27916,28996,30369]]],["committeth",[3,3,[[42,1,1,0,1,[[1004,1,1,0,1]]],[61,2,2,1,3,[[1161,2,2,1,3]]]],[26415,30583,30587]]],["continue",[2,2,[[58,1,1,0,1,[[1149,1,1,0,1]]],[65,1,1,1,2,[[1179,1,1,1,2]]]],[30350,30913]]],["dealt",[2,2,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]]],[24918,25021]]],["did",[54,53,[[39,13,12,0,12,[[929,1,1,0,1],[940,1,1,1,2],[941,1,1,2,3],[948,1,1,3,4],[949,4,4,4,8],[953,2,1,8,9],[954,2,2,9,11],[956,1,1,11,12]]],[40,3,3,12,15,[[958,1,1,12,13],[959,1,1,13,14],[962,1,1,14,15]]],[41,9,9,15,24,[[978,4,4,15,19],[981,3,3,19,22],[984,1,1,22,23],[989,1,1,23,24]]],[42,16,16,24,40,[[998,2,2,24,26],[1000,4,4,26,30],[1002,2,2,30,32],[1004,1,1,32,33],[1005,1,1,33,34],[1006,1,1,34,35],[1007,1,1,35,36],[1011,1,1,36,37],[1015,1,1,37,38],[1016,1,1,38,39],[1017,1,1,39,40]]],[43,10,10,40,50,[[1019,1,1,40,41],[1023,1,1,41,42],[1025,1,1,42,43],[1026,1,1,43,44],[1027,1,1,44,45],[1028,1,1,45,46],[1029,1,1,46,47],[1033,1,1,47,48],[1036,1,1,48,49],[1043,1,1,49,50]]],[53,1,1,50,51,[[1119,1,1,50,51]]],[57,1,1,51,52,[[1139,1,1,51,52]]],[59,1,1,52,53,[[1152,1,1,52,53]]]],[23168,23492,23597,23797,23832,23841,23857,23862,24053,24066,24073,24210,24285,24296,24427,25149,25156,25169,25172,25316,25344,25355,25506,25660,26106,26118,26185,26195,26201,26210,26259,26271,26421,26466,26522,26568,26723,26849,26897,26923,26971,27109,27182,27252,27298,27337,27345,27501,27599,27833,29709,30091,30421]]],["do",[189,174,[[39,28,23,0,23,[[933,5,4,0,4],[934,2,2,4,6],[935,2,1,6,7],[937,1,1,7,8],[940,4,3,8,11],[941,1,1,11,12],[946,1,1,12,13],[947,1,1,13,14],[948,2,2,14,16],[949,4,4,16,20],[951,4,2,20,22],[955,1,1,22,23]]],[40,19,19,23,42,[[958,1,1,23,24],[959,1,1,24,25],[962,1,1,25,26],[963,3,3,26,29],[965,1,1,29,30],[966,4,4,30,34],[967,5,5,34,39],[968,1,1,39,40],[970,1,1,40,41],[971,1,1,41,42]]],[41,32,30,42,72,[[974,1,1,42,43],[975,4,4,43,47],[976,1,1,47,48],[978,7,5,48,53],[980,1,1,53,54],[982,3,3,54,57],[984,3,3,57,60],[988,2,2,60,62],[989,1,1,62,63],[990,2,2,63,65],[991,1,1,65,66],[992,3,3,66,69],[994,1,1,69,70],[995,2,2,70,72]]],[42,38,36,72,108,[[998,1,1,72,73],[999,1,1,73,74],[1000,1,1,74,75],[1001,4,3,75,78],[1002,3,3,78,81],[1003,3,3,81,84],[1004,5,5,84,89],[1005,2,2,89,91],[1006,3,3,91,94],[1007,1,1,94,95],[1009,4,4,95,99],[1010,5,4,99,103],[1011,3,3,103,106],[1012,1,1,106,107],[1013,1,1,107,108]]],[43,11,9,108,117,[[1018,1,1,108,109],[1019,1,1,109,110],[1021,2,2,110,112],[1026,2,1,112,113],[1027,1,1,113,114],[1031,1,1,114,115],[1033,1,1,115,116],[1039,2,1,116,117]]],[44,11,11,117,128,[[1046,2,2,117,119],[1047,1,1,119,120],[1048,1,1,120,121],[1052,5,5,121,126],[1058,2,2,126,128]]],[45,8,7,128,135,[[1068,1,1,128,129],[1070,1,1,129,130],[1071,2,1,130,131],[1072,2,2,131,133],[1076,1,1,133,134],[1077,1,1,134,135]]],[46,5,3,135,138,[[1085,1,1,135,136],[1088,2,1,136,137],[1090,2,1,137,138]]],[47,4,4,138,142,[[1092,1,1,138,139],[1093,1,1,139,140],[1095,2,2,140,142]]],[48,2,2,142,144,[[1099,1,1,142,143],[1102,1,1,143,144]]],[50,2,2,144,146,[[1109,2,2,144,146]]],[51,3,3,146,149,[[1114,1,1,146,147],[1115,2,2,147,149]]],[52,2,1,149,150,[[1118,2,1,149,150]]],[54,1,1,150,151,[[1128,1,1,150,151]]],[56,2,2,151,153,[[1132,2,2,151,153]]],[57,7,7,153,160,[[1138,1,1,153,154],[1142,2,2,154,156],[1145,4,4,156,160]]],[58,4,4,160,164,[[1147,2,2,160,162],[1149,2,2,162,164]]],[59,2,2,164,166,[[1153,2,2,164,166]]],[60,2,2,166,168,[[1156,2,2,166,168]]],[61,2,2,168,170,[[1159,1,1,168,169],[1161,1,1,169,170]]],[63,1,1,170,171,[[1165,1,1,170,171]]],[65,3,3,171,174,[[1168,1,1,171,172],[1179,1,1,172,173],[1188,1,1,173,174]]]],[23253,23278,23280,23281,23283,23284,23328,23407,23491,23501,23539,23580,23762,23778,23807,23824,23847,23850,23853,23866,23921,23923,24151,24284,24323,24412,24471,24475,24476,24577,24605,24623,24624,24639,24643,24645,24668,24669,24673,24682,24761,24838,25000,25035,25036,25037,25039,25086,25148,25173,25177,25179,25192,25266,25388,25391,25400,25463,25476,25477,25623,25624,25661,25706,25729,25779,25787,25792,25794,25883,25966,25969,26100,26122,26190,26229,26240,26246,26263,26285,26295,26332,26345,26359,26409,26410,26419,26422,26425,26456,26473,26506,26518,26519,26570,26637,26645,26647,26657,26680,26681,26682,26699,26704,26713,26720,26729,26763,26924,26986,27038,27050,27222,27265,27429,27513,27714,27958,27962,27976,27999,28106,28107,28110,28111,28112,28269,28270,28523,28563,28598,28624,28625,28747,28777,28942,29001,29050,29091,29112,29165,29179,29271,29346,29534,29540,29613,29632,29645,29682,29875,29952,29959,30047,30140,30142,30247,30258,30260,30262,30301,30305,30352,30354,30435,30436,30489,30498,30546,30601,30664,30722,30922,31094]]],["doest",[13,13,[[39,3,3,0,3,[[934,2,2,0,2],[949,1,1,2,3]]],[40,1,1,3,4,[[967,1,1,3,4]]],[41,1,1,4,5,[[992,1,1,4,5]]],[42,4,4,5,9,[[998,1,1,5,6],[999,1,1,6,7],[1003,1,1,7,8],[1009,1,1,8,9]]],[43,1,1,9,10,[[1039,1,1,9,10]]],[44,1,1,10,11,[[1047,1,1,10,11]]],[58,1,1,11,12,[[1147,1,1,11,12]]],[63,1,1,12,13,[[1165,1,1,12,13]]]],[23284,23285,23849,24668,25781,26113,26122,26331,26657,27730,27965,30312,30663]]],["doeth",[33,31,[[39,5,5,0,5,[[934,1,1,0,1],[935,3,3,1,4],[936,1,1,4,5]]],[41,3,3,5,8,[[978,2,2,5,7],[979,1,1,7,8]]],[42,10,9,8,17,[[999,1,1,8,9],[1001,3,2,9,11],[1003,2,2,11,13],[1005,1,1,13,14],[1007,1,1,14,15],[1010,1,1,15,16],[1011,1,1,16,17]]],[43,1,1,17,18,[[1032,1,1,17,18]]],[44,2,2,18,20,[[1048,1,1,18,19],[1055,1,1,19,20]]],[45,3,2,20,22,[[1068,3,2,20,22]]],[47,1,1,22,23,[[1093,1,1,22,23]]],[48,1,1,23,24,[[1102,1,1,23,24]]],[58,1,1,24,25,[[1149,1,1,24,25]]],[61,4,4,25,29,[[1160,2,2,25,27],[1161,2,2,27,29]]],[63,1,1,29,30,[[1165,1,1,29,30]]],[65,1,1,30,31,[[1179,1,1,30,31]]]],[23285,23337,23340,23342,23354,25193,25195,25203,26141,26229,26230,26332,26379,26471,26570,26678,26714,27459,28003,28193,28524,28525,29114,29345,30354,30567,30579,30586,30589,30668,30921]]],["doing",[8,8,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]],[47,1,1,4,5,[[1096,1,1,4,5]]],[48,1,1,5,6,[[1102,1,1,5,6]]],[53,2,2,6,8,[[1122,1,1,6,7],[1123,1,1,7,8]]]],[24003,25502,28265,28943,29197,29343,29763,29784]]],["done",[52,49,[[39,8,7,0,7,[[935,1,1,0,1],[941,1,1,1,2],[945,1,1,2,3],[951,1,1,3,4],[953,2,1,4,5],[954,1,1,5,6],[955,1,1,6,7]]],[40,10,10,7,17,[[961,3,3,7,10],[962,1,1,10,11],[963,1,1,11,12],[965,1,1,12,13],[970,2,2,13,15],[971,2,2,15,17]]],[41,11,9,17,26,[[973,1,1,17,18],[975,1,1,18,19],[977,1,1,19,20],[980,2,1,20,21],[981,1,1,21,22],[983,1,1,22,23],[988,1,1,23,24],[989,2,1,24,25],[995,1,1,25,26]]],[42,12,12,26,38,[[1001,2,2,26,28],[1003,2,2,28,30],[1007,1,1,30,31],[1008,3,3,31,34],[1009,2,2,34,36],[1011,1,1,36,37],[1014,1,1,37,38]]],[43,7,7,38,45,[[1021,1,1,38,39],[1026,1,1,39,40],[1027,1,1,40,41],[1031,2,2,41,43],[1032,1,1,43,44],[1038,1,1,44,45]]],[45,1,1,45,46,[[1066,1,1,45,46]]],[49,1,1,46,47,[[1106,1,1,46,47]]],[55,1,1,47,48,[[1131,1,1,47,48]]],[57,1,1,48,49,[[1142,1,1,48,49]]]],[23338,23567,23712,23941,24048,24067,24152,24383,24384,24396,24437,24500,24551,24762,24763,24834,24840,24942,25044,25113,25284,25311,25447,25628,25661,25957,26226,26239,26349,26359,26569,26596,26598,26617,26642,26645,26723,26820,27029,27229,27292,27425,27441,27446,27697,28456,29456,29928,30169]]],["execute",[2,2,[[42,1,1,0,1,[[1001,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[26237,30687]]],["exerciseth",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30920]]],["forth",[10,8,[[39,8,6,0,6,[[931,1,1,0,1],[935,4,2,1,3],[941,2,2,3,5],[949,1,1,5,6]]],[41,2,2,6,8,[[975,1,1,6,7],[978,1,1,7,8]]]],[23200,23333,23334,23562,23565,23869,25033,25189]]],["fulfil",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[65,1,1,1,2,[[1183,1,1,1,2]]]],[27384,30992]]],["fulfilling",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29232]]],["gained",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25749]]],["gave",[2,2,[[43,1,1,0,1,[[1027,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[27261,30675]]],["held",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24827]]],["him",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26582]]],["keep",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]]],[24072,27578]]],["keepeth",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26347]]],["kept",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30200]]],["made",[51,50,[[39,6,5,0,5,[[947,2,1,0,1],[948,1,1,1,2],[949,1,1,2,3],[950,1,1,3,4],[953,1,1,4,5]]],[40,4,4,5,9,[[962,1,1,5,6],[964,1,1,6,7],[966,1,1,7,8],[967,1,1,8,9]]],[41,4,4,9,13,[[977,1,1,9,10],[983,1,1,10,11],[986,1,1,11,12],[991,1,1,12,13]]],[42,13,13,13,26,[[998,1,1,13,14],[1000,2,2,14,16],[1001,2,2,16,18],[1003,1,1,18,19],[1005,3,3,19,22],[1008,1,1,22,23],[1014,1,1,23,24],[1015,2,2,24,26]]],[43,13,13,26,39,[[1018,1,1,26,27],[1019,1,1,27,28],[1020,1,1,28,29],[1021,1,1,29,30],[1024,2,2,30,32],[1025,1,1,32,33],[1026,1,1,33,34],[1031,1,1,34,35],[1034,2,2,35,37],[1036,1,1,37,38],[1040,1,1,38,39]]],[44,1,1,39,40,[[1054,1,1,39,40]]],[46,1,1,40,41,[[1082,1,1,40,41]]],[48,1,1,41,42,[[1098,1,1,41,42]]],[53,1,1,42,43,[[1120,1,1,42,43]]],[57,3,3,43,46,[[1133,1,1,43,44],[1140,1,1,44,45],[1144,1,1,45,46]]],[61,1,1,46,47,[[1163,1,1,46,47]]],[65,3,3,47,50,[[1167,1,1,47,48],[1171,1,1,48,49],[1180,1,1,49,50]]]],[23766,23804,23839,23874,24024,24428,24525,24594,24657,25136,25445,25569,25777,26110,26157,26202,26221,26225,26351,26446,26451,26454,26582,26803,26832,26848,26924,26985,27008,27046,27159,27166,27178,27255,27429,27547,27549,27609,27747,28175,28898,29243,29717,29965,30101,30239,30634,30703,30789,30933]]],["make",[44,42,[[39,9,7,0,7,[[931,1,1,0,1],[932,1,1,1,2],[933,1,1,2,3],[940,3,2,3,5],[945,1,1,5,6],[951,2,1,6,7]]],[40,4,4,7,11,[[957,2,2,7,9],[959,1,1,9,10],[965,1,1,10,11]]],[41,6,6,11,17,[[975,1,1,11,12],[977,2,2,12,14],[981,1,1,14,15],[983,1,1,15,16],[987,1,1,16,17]]],[42,3,3,17,20,[[998,1,1,17,18],[1002,1,1,18,19],[1010,1,1,19,20]]],[43,1,1,20,21,[[1024,1,1,20,21]]],[44,5,5,21,26,[[1046,1,1,21,22],[1054,2,2,22,24],[1058,1,1,24,25],[1060,1,1,25,26]]],[45,2,2,26,28,[[1067,1,1,26,27],[1071,1,1,27,28]]],[57,2,2,28,30,[[1140,1,1,28,29],[1144,1,1,29,30]]],[58,1,1,30,31,[[1148,1,1,30,31]]],[60,1,1,31,32,[[1156,1,1,31,32]]],[61,1,1,32,33,[[1159,1,1,32,33]]],[65,9,9,33,42,[[1169,2,2,33,35],[1177,1,1,35,36],[1178,1,1,36,37],[1179,2,2,37,39],[1183,1,1,39,40],[1185,1,1,40,41],[1187,1,1,41,42]]]],[23195,23228,23270,23505,23522,23704,23933,24218,24232,24300,24543,25029,25140,25141,25334,25445,25607,26111,26272,26691,27160,27939,28176,28183,28280,28329,28482,28580,30097,30225,30337,30489,30550,30755,30758,30879,30908,30915,30922,30991,31036,31058]]],["makest",[4,4,[[41,2,2,0,2,[[986,2,2,0,2]]],[42,2,2,2,4,[[1004,1,1,2,3],[1006,1,1,3,4]]]],[25565,25566,26434,26514]]],["maketh",[6,6,[[40,1,1,0,1,[[963,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]],[57,1,1,3,4,[[1133,1,1,3,4]]],[65,2,2,4,6,[[1179,1,1,4,5],[1188,1,1,5,6]]]],[24500,26837,29288,29970,30921,31095]]],["making",[6,6,[[42,1,1,0,1,[[1001,1,1,0,1]]],[48,2,2,1,3,[[1097,1,1,1,2],[1098,1,1,2,3]]],[49,1,1,3,4,[[1103,1,1,3,4]]],[51,1,1,4,5,[[1111,1,1,4,5]]],[56,1,1,5,6,[[1132,1,1,5,6]]]],[26228,29222,29244,29365,29562,29942]]],["mean",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27677]]],["observe",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27504]]],["ordained",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24302]]],["out",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24355]]],["perform",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[44,1,1,1,2,[[1049,1,1,1,2]]]],[24965,28043]]],["provide",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25492]]],["purposed",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29262]]],["put",[2,2,[[42,1,1,0,1,[[1012,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[26728,27093]]],["shewed",[4,4,[[41,2,2,0,2,[[973,1,1,0,1],[982,1,1,1,2]]],[43,1,1,2,3,[[1024,1,1,2,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[24944,25400,27152,30306]]],["shewest",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26287]]],["spent",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27580]]],["tarried",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27475]]],["worketh",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31080]]],["working",[2,2,[[57,1,1,0,1,[[1145,1,1,0,1]]],[65,1,1,1,2,[[1182,1,1,1,2]]]],[30262,30968]]],["wrought",[5,5,[[39,1,1,0,1,[[948,1,1,0,1]]],[43,3,3,1,4,[[1032,1,1,1,2],[1036,1,1,2,3],[1038,1,1,3,4]]],[65,1,1,4,5,[[1185,1,1,4,5]]]],[23804,27454,27596,27683,31037]]],["yield",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30331]]]]},{"k":"G4161","v":[["*",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]]],[27950,29239]]],["are",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27950]]],["workmanship",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29239]]]]},{"k":"G4162","v":[["deed",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30291]]]]},{"k":"G4163","v":[["*",[6,6,[[43,1,1,0,1,[[1034,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]],[58,4,4,2,6,[[1146,3,3,2,5],[1149,1,1,5,6]]]],[27551,27975,30288,30289,30291,30348]]],["doer",[3,3,[[58,3,3,0,3,[[1146,2,2,0,2],[1149,1,1,2,3]]]],[30289,30291,30348]]],["doers",[2,2,[[44,1,1,0,1,[[1047,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[27975,30288]]],["poets",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27551]]]]},{"k":"G4164","v":[["*",[10,10,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]],[54,1,1,3,4,[[1127,1,1,3,4]]],[55,1,1,4,5,[[1131,1,1,4,5]]],[57,2,2,5,7,[[1134,1,1,5,6],[1145,1,1,6,7]]],[58,1,1,7,8,[[1146,1,1,7,8]]],[59,2,2,8,10,[[1151,1,1,8,9],[1154,1,1,9,10]]]],[23233,24249,25103,29859,29926,29981,30250,30268,30380,30456]]],["divers",[8,8,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]],[54,1,1,3,4,[[1127,1,1,3,4]]],[55,1,1,4,5,[[1131,1,1,4,5]]],[57,2,2,5,7,[[1134,1,1,5,6],[1145,1,1,6,7]]],[58,1,1,7,8,[[1146,1,1,7,8]]]],[23233,24249,25103,29859,29926,29981,30250,30268]]],["manifold",[2,2,[[59,2,2,0,2,[[1151,1,1,0,1],[1154,1,1,1,2]]]],[30380,30456]]]]},{"k":"G4165","v":[["*",[11,11,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]],[43,1,1,3,4,[[1037,1,1,3,4]]],[45,1,1,4,5,[[1070,1,1,4,5]]],[59,1,1,5,6,[[1155,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]],[65,4,4,7,11,[[1168,1,1,7,8],[1173,1,1,8,9],[1178,1,1,9,10],[1185,1,1,10,11]]]],[23175,25658,26914,27654,28547,30467,30684,30744,30827,30896,31032]]],["Feed",[2,2,[[42,1,1,0,1,[[1017,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[26914,30467]]],["cattle",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25658]]],["feed",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[65,1,1,1,2,[[1173,1,1,1,2]]]],[27654,30827]]],["feedeth",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28547]]],["feeding",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30684]]],["rule",[4,4,[[39,1,1,0,1,[[930,1,1,0,1]]],[65,3,3,1,4,[[1168,1,1,1,2],[1178,1,1,2,3],[1185,1,1,3,4]]]],[23175,30744,30896,31032]]]]},{"k":"G4166","v":[["*",[18,17,[[39,3,3,0,3,[[937,1,1,0,1],[953,1,1,1,2],[954,1,1,2,3]]],[40,2,2,3,5,[[962,1,1,3,4],[970,1,1,4,5]]],[41,4,4,5,9,[[974,4,4,5,9]]],[42,6,5,9,14,[[1006,6,5,9,14]]],[48,1,1,14,15,[[1100,1,1,14,15]]],[57,1,1,15,16,[[1145,1,1,15,16]]],[59,1,1,16,17,[[1152,1,1,16,17]]]],[23415,24040,24085,24441,24781,24981,24988,24991,24993,26483,26492,26493,26495,26497,29283,30261,30424]]],["Shepherd",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30424]]],["pastors",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29283]]],["shepherd",[12,11,[[39,3,3,0,3,[[937,1,1,0,1],[953,1,1,1,2],[954,1,1,2,3]]],[40,2,2,3,5,[[962,1,1,3,4],[970,1,1,4,5]]],[42,6,5,5,10,[[1006,6,5,5,10]]],[57,1,1,10,11,[[1145,1,1,10,11]]]],[23415,24040,24085,24441,24781,26483,26492,26493,26495,26497,30261]]],["shepherds",[4,4,[[41,4,4,0,4,[[974,4,4,0,4]]]],[24981,24988,24991,24993]]]]},{"k":"G4167","v":[["*",[5,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[42,1,1,2,3,[[1006,1,1,2,3]]],[45,2,1,3,4,[[1070,2,1,3,4]]]],[24085,24981,26497,28547]]],["flock",[4,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[45,2,1,2,3,[[1070,2,1,2,3]]]],[24085,24981,28547]]],["fold",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26497]]]]},{"k":"G4168","v":[["flock",[5,5,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,2,2,1,3,[[1037,2,2,1,3]]],[59,2,2,3,5,[[1155,2,2,3,5]]]],[25491,27654,27655,30467,30468]]]]},{"k":"G4169","v":[["*",[34,33,[[39,7,7,0,7,[[947,1,1,0,1],[949,3,3,1,4],[950,1,1,4,5],[952,2,2,5,7]]],[40,5,5,7,12,[[960,1,1,7,8],[967,3,3,8,11],[968,1,1,11,12]]],[41,8,8,12,20,[[977,1,1,12,13],[978,3,3,13,16],[984,1,1,16,17],[992,2,2,17,19],[996,1,1,19,20]]],[42,4,4,20,24,[[1006,1,1,20,21],[1008,1,1,21,22],[1014,1,1,22,23],[1017,1,1,23,24]]],[43,4,3,24,27,[[1021,2,1,24,25],[1024,1,1,25,26],[1040,1,1,26,27]]],[44,1,1,27,28,[[1048,1,1,27,28]]],[45,1,1,28,29,[[1076,1,1,28,29]]],[58,1,1,29,30,[[1149,1,1,29,30]]],[59,2,2,30,32,[[1151,1,1,30,31],[1152,1,1,31,32]]],[65,1,1,32,33,[[1169,1,1,32,33]]]],[23780,23849,23850,23853,23908,23999,24000,24353,24668,24669,24673,24701,25126,25178,25179,25180,25498,25781,25787,26010,26513,26613,26817,26917,27029,27165,27768,28018,28753,30351,30385,30419,30749]]],["Which",[2,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]]],[23780,24701]]],["manner",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30385]]],["things",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26010]]],["what",[28,27,[[39,5,5,0,5,[[949,3,3,0,3],[952,2,2,3,5]]],[40,4,4,5,9,[[960,1,1,5,6],[967,3,3,6,9]]],[41,7,7,9,16,[[977,1,1,9,10],[978,3,3,10,13],[984,1,1,13,14],[992,2,2,14,16]]],[42,3,3,16,19,[[1008,1,1,16,17],[1014,1,1,17,18],[1017,1,1,18,19]]],[43,4,3,19,22,[[1021,2,1,19,20],[1024,1,1,20,21],[1040,1,1,21,22]]],[44,1,1,22,23,[[1048,1,1,22,23]]],[45,1,1,23,24,[[1076,1,1,23,24]]],[58,1,1,24,25,[[1149,1,1,24,25]]],[59,1,1,25,26,[[1152,1,1,25,26]]],[65,1,1,26,27,[[1169,1,1,26,27]]]],[23849,23850,23853,23999,24000,24353,24668,24669,24673,25126,25178,25179,25180,25498,25781,25787,26613,26817,26917,27029,27165,27768,28018,28753,30351,30419,30749]]],["which",[2,2,[[39,1,1,0,1,[[950,1,1,0,1]]],[42,1,1,1,2,[[1006,1,1,1,2]]]],[23908,26513]]]]},{"k":"G4170","v":[["*",[7,6,[[58,1,1,0,1,[[1149,1,1,0,1]]],[65,6,5,1,6,[[1168,1,1,1,2],[1178,2,1,2,3],[1179,1,1,3,4],[1183,1,1,4,5],[1185,1,1,5,6]]]],[30339,30733,30898,30912,30989,31028]]],["fight",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30733]]],["fought",[2,1,[[65,2,1,0,1,[[1178,2,1,0,1]]]],[30898]]],["war",[4,4,[[58,1,1,0,1,[[1149,1,1,0,1]]],[65,3,3,1,4,[[1179,1,1,1,2],[1183,1,1,2,3],[1185,1,1,3,4]]]],[30339,30912,30989,31028]]]]},{"k":"G4171","v":[["*",[18,16,[[39,2,1,0,1,[[952,2,1,0,1]]],[40,2,1,1,2,[[969,2,1,1,2]]],[41,2,2,2,4,[[986,1,1,2,3],[993,1,1,3,4]]],[45,1,1,4,5,[[1075,1,1,4,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]],[58,1,1,6,7,[[1149,1,1,6,7]]],[65,9,9,7,16,[[1175,2,2,7,9],[1177,1,1,9,10],[1178,2,2,10,12],[1179,1,1,12,13],[1182,1,1,13,14],[1185,1,1,14,15],[1186,1,1,15,16]]]],[23963,24724,25584,25835,28686,30206,30338,30847,30849,30879,30898,30908,30915,30968,31036,31046]]],["+",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25584]]],["battle",[5,5,[[45,1,1,0,1,[[1075,1,1,0,1]]],[65,4,4,1,5,[[1175,2,2,1,3],[1182,1,1,3,4],[1186,1,1,4,5]]]],[28686,30847,30849,30968,31046]]],["fight",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30206]]],["war",[5,5,[[65,5,5,0,5,[[1177,1,1,0,1],[1178,2,2,1,3],[1179,1,1,3,4],[1185,1,1,4,5]]]],[30879,30898,30908,30915,31036]]],["wars",[6,4,[[39,2,1,0,1,[[952,2,1,0,1]]],[40,2,1,1,2,[[969,2,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]]],[23963,24724,25835,30338]]]]},{"k":"G4172","v":[["*",[164,155,[[39,27,25,0,25,[[930,1,1,0,1],[932,1,1,1,2],[933,2,2,2,4],[936,2,2,4,6],[937,2,2,6,8],[938,6,5,8,13],[939,2,2,13,15],[940,1,1,15,16],[942,1,1,16,17],[949,3,3,17,20],[950,1,1,20,21],[951,2,1,21,22],[954,1,1,22,23],[955,1,1,23,24],[956,1,1,24,25]]],[40,9,9,25,34,[[957,2,2,25,27],[961,1,1,27,28],[962,3,3,28,31],[967,1,1,31,32],[970,2,2,32,34]]],[41,39,36,34,70,[[973,2,2,34,36],[974,5,4,36,40],[976,4,3,40,43],[977,1,1,43,44],[979,4,3,44,47],[980,5,5,47,52],[981,2,2,52,54],[982,5,5,54,59],[985,1,1,59,60],[986,1,1,60,61],[990,2,2,61,63],[991,3,3,63,66],[994,1,1,66,67],[995,2,2,67,69],[996,1,1,69,70]]],[42,8,8,70,78,[[997,1,1,70,71],[1000,5,5,71,76],[1007,1,1,76,77],[1015,1,1,77,78]]],[43,42,41,78,119,[[1022,1,1,78,79],[1024,1,1,79,80],[1025,4,4,80,84],[1026,1,1,84,85],[1027,1,1,85,86],[1028,1,1,86,87],[1029,1,1,87,88],[1030,2,2,88,90],[1031,6,6,90,96],[1032,2,2,96,98],[1033,7,6,98,104],[1034,2,2,104,106],[1035,1,1,106,107],[1036,2,2,107,109],[1037,1,1,109,110],[1038,4,4,110,114],[1039,1,1,114,115],[1041,1,1,115,116],[1042,1,1,116,117],[1043,1,1,117,118],[1044,1,1,118,119]]],[44,1,1,119,120,[[1061,1,1,119,120]]],[46,2,2,120,122,[[1088,2,2,120,122]]],[55,1,1,122,123,[[1129,1,1,122,123]]],[57,4,4,123,127,[[1143,2,2,123,125],[1144,1,1,125,126],[1145,1,1,126,127]]],[58,1,1,127,128,[[1149,1,1,127,128]]],[60,1,1,128,129,[[1157,1,1,128,129]]],[64,1,1,129,130,[[1166,1,1,129,130]]],[65,28,25,130,155,[[1169,1,1,130,131],[1177,3,3,131,134],[1180,2,2,134,136],[1182,2,1,136,137],[1183,1,1,137,138],[1184,6,5,138,143],[1186,1,1,143,144],[1187,10,9,144,153],[1188,2,2,153,155]]]],[23192,23214,23248,23269,23378,23379,23380,23414,23422,23428,23431,23432,23440,23460,23479,23514,23610,23836,23843,23844,23879,23952,24072,24182,24206,24248,24260,24378,24418,24440,24463,24659,24767,24770,24919,24932,24976,24977,24984,25012,25092,25094,25106,25119,25206,25207,25232,25246,25249,25272,25279,25284,25306,25311,25364,25371,25373,25374,25375,25540,25574,25690,25691,25748,25750,25772,25874,25954,25986,26040,26088,26161,26164,26184,26186,26195,26577,26845,27075,27174,27181,27184,27185,27216,27222,27268,27312,27347,27406,27412,27418,27420,27427,27433,27434,27435,27463,27478,27487,27495,27496,27497,27503,27522,27528,27539,27567,27614,27620,27649,27669,27693,27694,27703,27707,27781,27819,27834,27863,28359,29015,29021,29897,30182,30188,30234,30255,30350,30506,30679,30758,30874,30880,30885,30934,30946,30973,30993,31003,31009,31011,31012,31014,31047,31055,31063,31067,31068,31069,31071,31072,31074,31076,31094,31099]]],["+",[11,11,[[41,4,4,0,4,[[977,1,1,0,1],[979,1,1,1,2],[980,2,2,2,4]]],[43,4,4,4,8,[[1030,1,1,4,5],[1032,1,1,5,6],[1034,1,1,6,7],[1037,1,1,7,8]]],[46,1,1,8,9,[[1088,1,1,8,9]]],[55,1,1,9,10,[[1129,1,1,9,10]]],[60,1,1,10,11,[[1157,1,1,10,11]]]],[25119,25207,25246,25249,27406,27463,27528,27649,29021,29897,30506]]],["cities",[18,18,[[39,5,5,0,5,[[937,1,1,0,1],[938,1,1,1,2],[939,2,2,2,4],[942,1,1,4,5]]],[40,2,2,5,7,[[962,2,2,5,7]]],[41,4,4,7,11,[[976,1,1,7,8],[985,1,1,8,9],[991,2,2,9,11]]],[43,5,5,11,16,[[1022,1,1,11,12],[1025,1,1,12,13],[1031,1,1,13,14],[1033,1,1,14,15],[1043,1,1,15,16]]],[64,1,1,16,17,[[1166,1,1,16,17]]],[65,1,1,17,18,[[1182,1,1,17,18]]]],[23414,23440,23460,23479,23610,24440,24463,25106,25540,25748,25750,27075,27216,27420,27487,27834,30679,30973]]],["city",[135,129,[[39,22,21,0,21,[[930,1,1,0,1],[932,1,1,1,2],[933,2,2,2,4],[936,2,2,4,6],[937,1,1,6,7],[938,5,5,7,12],[940,1,1,12,13],[949,3,3,13,16],[950,1,1,16,17],[951,2,1,17,18],[954,1,1,18,19],[955,1,1,19,20],[956,1,1,20,21]]],[40,7,7,21,28,[[957,2,2,21,23],[961,1,1,23,24],[962,1,1,24,25],[967,1,1,25,26],[970,2,2,26,28]]],[41,31,29,28,57,[[973,2,2,28,30],[974,5,4,30,34],[976,3,2,34,36],[979,3,3,36,39],[980,3,3,39,42],[981,2,2,42,44],[982,5,5,44,49],[986,1,1,49,50],[990,2,2,50,52],[991,1,1,52,53],[994,1,1,53,54],[995,2,2,54,56],[996,1,1,56,57]]],[42,8,8,57,65,[[997,1,1,57,58],[1000,5,5,58,63],[1007,1,1,63,64],[1015,1,1,64,65]]],[43,33,32,65,97,[[1024,1,1,65,66],[1025,3,3,66,69],[1026,1,1,69,70],[1027,1,1,70,71],[1028,1,1,71,72],[1029,1,1,72,73],[1030,1,1,73,74],[1031,5,5,74,79],[1032,1,1,79,80],[1033,6,5,80,85],[1034,1,1,85,86],[1035,1,1,86,87],[1036,2,2,87,89],[1038,4,4,89,93],[1039,1,1,93,94],[1041,1,1,94,95],[1042,1,1,95,96],[1044,1,1,96,97]]],[44,1,1,97,98,[[1061,1,1,97,98]]],[46,1,1,98,99,[[1088,1,1,98,99]]],[57,4,4,99,103,[[1143,2,2,99,101],[1144,1,1,101,102],[1145,1,1,102,103]]],[58,1,1,103,104,[[1149,1,1,103,104]]],[65,27,25,104,129,[[1169,1,1,104,105],[1177,3,3,105,108],[1180,2,2,108,110],[1182,1,1,110,111],[1183,1,1,111,112],[1184,6,5,112,117],[1186,1,1,117,118],[1187,10,9,118,127],[1188,2,2,127,129]]]],[23192,23214,23248,23269,23378,23379,23380,23422,23428,23431,23432,23440,23514,23836,23843,23844,23879,23952,24072,24182,24206,24248,24260,24378,24418,24659,24767,24770,24919,24932,24976,24977,24984,25012,25092,25094,25206,25207,25232,25272,25279,25284,25306,25311,25364,25371,25373,25374,25375,25574,25690,25691,25772,25874,25954,25986,26040,26088,26161,26164,26184,26186,26195,26577,26845,27174,27181,27184,27185,27222,27268,27312,27347,27412,27418,27427,27433,27434,27435,27478,27495,27496,27497,27503,27522,27539,27567,27614,27620,27669,27693,27694,27703,27707,27781,27819,27863,28359,29015,30182,30188,30234,30255,30350,30758,30874,30880,30885,30934,30946,30973,30993,31003,31009,31011,31012,31014,31047,31055,31063,31067,31068,31069,31071,31072,31074,31076,31094,31099]]]]},{"k":"G4173","v":[["city",[2,2,[[43,2,2,0,2,[[1034,2,2,0,2]]]],[27529,27531]]]]},{"k":"G4174","v":[["*",[2,2,[[43,1,1,0,1,[[1039,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]]],[27732,29241]]],["commonwealth",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29241]]],["freedom",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27732]]]]},{"k":"G4175","v":[["conversation",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29441]]]]},{"k":"G4176","v":[["*",[2,2,[[43,1,1,0,1,[[1040,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[27735,29388]]],["be",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29388]]],["lived",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27735]]]]},{"k":"G4177","v":[["*",[3,3,[[41,2,2,0,2,[[987,1,1,0,1],[991,1,1,1,2]]],[43,1,1,2,3,[[1038,1,1,2,3]]]],[25603,25745,27703]]],["citizen",[2,2,[[41,1,1,0,1,[[987,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[25603,27703]]],["citizens",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25745]]]]},{"k":"G4178","v":[["*",[18,16,[[39,2,1,0,1,[[945,2,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[965,1,1,2,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]],[43,1,1,4,5,[[1043,1,1,4,5]]],[44,1,1,5,6,[[1046,1,1,5,6]]],[46,5,4,6,10,[[1085,1,1,6,7],[1088,4,3,7,10]]],[49,1,1,10,11,[[1105,1,1,10,11]]],[54,1,1,11,12,[[1125,1,1,11,12]]],[57,4,4,12,16,[[1138,1,1,12,13],[1141,2,2,13,15],[1142,1,1,15,16]]]],[23715,24368,24560,26787,27834,27943,28954,29012,29015,29016,29439,29825,30051,30130,30131,30144]]],["oft",[5,5,[[39,1,1,0,1,[[945,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]],[54,1,1,3,4,[[1125,1,1,3,4]]],[57,1,1,4,5,[[1138,1,1,4,5]]]],[23715,27834,29012,29825,30051]]],["often",[7,6,[[40,1,1,0,1,[[961,1,1,0,1]]],[46,3,2,1,3,[[1088,3,2,1,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]],[57,2,2,4,6,[[1141,2,2,4,6]]]],[24368,29015,29016,29439,30130,30131]]],["oftentimes",[3,3,[[44,1,1,0,1,[[1046,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[27943,28954,30144]]],["ofttimes",[3,3,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[42,1,1,2,3,[[1014,1,1,2,3]]]],[23715,24560,26787]]]]},{"k":"G4179","v":[["more",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25718]]]]},{"k":"G4180","v":[["speaking",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23289]]]]},{"k":"G4181","v":[["times",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29964]]]]},{"k":"G4182","v":[["manifold",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29261]]]]},{"k":"G4183","v":[["*",[365,331,[[39,52,48,0,48,[[930,1,1,0,1],[931,1,1,1,2],[932,1,1,2,3],[933,1,1,3,4],[934,1,1,4,5],[935,3,2,5,7],[936,5,5,7,12],[937,3,3,12,15],[938,1,1,15,16],[940,1,1,16,17],[941,5,5,17,22],[942,1,1,22,23],[943,2,1,23,24],[944,1,1,24,25],[947,3,3,25,28],[948,3,3,28,31],[950,1,1,31,32],[952,7,5,32,37],[953,3,3,37,40],[954,4,4,40,44],[955,4,4,44,48]]],[40,60,50,48,98,[[957,3,2,48,50],[958,3,2,50,52],[959,4,4,52,56],[960,4,4,56,60],[961,9,8,60,68],[962,10,7,68,75],[963,3,3,75,78],[964,1,1,78,79],[965,4,3,79,82],[966,5,4,82,86],[967,1,1,86,87],[968,5,4,87,91],[969,3,2,91,93],[970,3,3,93,96],[971,2,2,96,98]]],[41,51,45,98,143,[[973,3,3,98,101],[974,3,3,101,104],[975,1,1,104,105],[976,3,3,105,108],[977,3,3,108,111],[978,3,3,111,114],[979,5,3,114,117],[980,4,4,117,121],[981,2,2,121,123],[982,4,4,123,127],[984,7,4,127,131],[985,1,1,131,132],[986,2,2,132,134],[987,1,1,134,135],[988,2,1,135,136],[989,1,1,136,137],[990,1,1,137,138],[993,2,2,138,140],[994,1,1,140,141],[995,2,2,141,143]]],[42,38,38,143,181,[[998,2,2,143,145],[999,1,1,145,146],[1000,2,2,146,148],[1001,2,2,148,150],[1002,5,5,150,155],[1003,3,3,155,158],[1004,2,2,158,160],[1006,4,4,160,164],[1007,4,4,164,168],[1008,5,5,168,173],[1010,2,2,173,175],[1011,2,2,175,177],[1012,1,1,177,178],[1015,1,1,178,179],[1016,1,1,179,180],[1017,1,1,180,181]]],[43,49,48,181,229,[[1018,2,2,181,183],[1019,1,1,183,184],[1021,1,1,184,185],[1022,1,1,185,186],[1023,1,1,186,187],[1025,3,2,187,189],[1026,2,2,189,191],[1027,2,2,191,193],[1028,1,1,193,194],[1030,1,1,194,195],[1031,2,2,195,197],[1032,3,3,197,200],[1033,3,3,200,203],[1034,2,2,203,205],[1035,3,3,205,208],[1036,1,1,208,209],[1037,2,2,209,211],[1038,1,1,211,212],[1039,1,1,212,213],[1040,1,1,213,214],[1041,3,3,214,217],[1042,2,2,217,219],[1043,4,4,219,223],[1044,3,3,223,226],[1045,3,3,226,229]]],[44,21,18,229,247,[[1048,1,1,229,230],[1049,2,2,230,232],[1050,9,6,232,238],[1053,1,1,238,239],[1054,1,1,239,240],[1057,2,2,240,242],[1060,2,2,242,244],[1061,3,3,244,247]]],[45,18,14,247,261,[[1062,3,1,247,248],[1063,1,1,248,249],[1065,1,1,249,250],[1069,2,1,250,251],[1071,2,2,251,253],[1072,1,1,253,254],[1073,5,4,254,258],[1077,3,3,258,261]]],[46,21,16,261,277,[[1078,2,1,261,262],[1079,3,2,262,264],[1080,3,3,264,267],[1083,2,2,267,269],[1084,2,1,269,270],[1085,6,4,270,274],[1086,1,1,274,275],[1088,1,1,275,276],[1089,1,1,276,277]]],[47,3,3,277,280,[[1091,1,1,277,278],[1093,1,1,278,279],[1094,1,1,279,280]]],[48,1,1,280,281,[[1098,1,1,280,281]]],[49,3,3,281,284,[[1103,1,1,281,282],[1104,1,1,282,283],[1105,1,1,283,284]]],[50,1,1,284,285,[[1110,1,1,284,285]]],[51,4,4,285,289,[[1111,2,2,285,287],[1112,2,2,287,289]]],[53,5,5,289,294,[[1121,2,2,289,291],[1124,3,3,291,294]]],[54,2,2,294,296,[[1126,1,1,294,295],[1128,1,1,295,296]]],[55,2,2,296,298,[[1129,1,1,296,297],[1130,1,1,297,298]]],[56,2,2,298,300,[[1132,2,2,298,300]]],[57,7,7,300,307,[[1134,1,1,300,301],[1137,1,1,301,302],[1141,1,1,302,303],[1142,1,1,303,304],[1144,3,3,304,307]]],[58,3,3,307,310,[[1148,2,2,307,309],[1150,1,1,309,310]]],[59,2,2,310,312,[[1151,2,2,310,312]]],[60,1,1,312,313,[[1157,1,1,312,313]]],[61,2,2,313,315,[[1160,1,1,313,314],[1162,1,1,314,315]]],[62,2,2,315,317,[[1164,2,2,315,317]]],[63,1,1,317,318,[[1165,1,1,317,318]]],[65,14,13,318,331,[[1167,1,1,318,319],[1171,2,2,319,321],[1173,1,1,321,322],[1174,2,2,322,324],[1175,1,1,324,325],[1176,1,1,325,326],[1180,1,1,326,327],[1183,1,1,327,328],[1185,4,3,328,331]]]],[23187,23199,23234,23246,23312,23329,23338,23346,23356,23361,23363,23375,23389,23393,23416,23448,23504,23541,23542,23544,23556,23597,23611,23663,23693,23764,23784,23792,23808,23820,23821,23886,23962,23967,23968,23969,23987,24027,24029,24031,24063,24082,24101,24114,24148,24181,24182,24184,24249,24260,24262,24275,24295,24296,24298,24300,24324,24325,24328,24356,24373,24374,24385,24387,24388,24390,24402,24407,24409,24420,24427,24438,24440,24441,24442,24467,24471,24476,24531,24550,24552,24564,24610,24619,24633,24636,24648,24678,24700,24710,24714,24723,24743,24778,24797,24810,24829,24867,24894,24907,24909,25007,25008,25009,25043,25088,25090,25104,25113,25122,25136,25163,25169,25181,25206,25216,25242,25248,25249,25274,25275,25323,25338,25365,25387,25403,25404,25466,25478,25506,25507,25542,25569,25578,25601,25630,25676,25727,25834,25853,25929,25943,25962,26107,26118,26143,26195,26197,26213,26216,26259,26262,26267,26317,26323,26340,26359,26368,26407,26411,26501,26513,26522,26523,26542,26568,26570,26578,26589,26591,26592,26604,26622,26670,26698,26704,26707,26738,26845,26897,26923,26926,26928,26992,27026,27071,27108,27183,27201,27229,27258,27261,27286,27328,27405,27415,27436,27449,27474,27477,27499,27501,27506,27527,27535,27565,27567,27584,27603,27628,27645,27704,27732,27744,27771,27776,27779,27803,27819,27832,27833,27847,27852,27865,27869,27876,27905,27909,27928,27993,28039,28040,28056,28057,28062,28063,28064,28066,28145,28177,28249,28250,28325,28326,28338,28342,28348,28389,28397,28448,28532,28584,28600,28630,28646,28648,28654,28656,28785,28788,28795,28811,28828,28841,28850,28852,28853,28902,28908,28920,28934,28936,28947,28954,28968,29007,29043,29071,29118,29158,29233,29384,29403,29439,29555,29565,29566,29572,29587,29739,29744,29797,29798,29800,29829,29884,29902,29911,29945,29946,29987,30041,30133,30165,30221,30227,30237,30320,30321,30370,30377,30381,30502,30568,30604,30652,30657,30671,30712,30783,30790,30819,30830,30838,30849,30872,30928,30976,31018,31023,31029]]],["+",[12,11,[[40,2,1,0,1,[[962,2,1,0,1]]],[41,3,3,1,4,[[974,1,1,1,2],[980,1,1,2,3],[986,1,1,3,4]]],[43,3,3,4,7,[[1034,1,1,4,5],[1043,1,1,5,6],[1045,1,1,6,7]]],[44,1,1,7,8,[[1061,1,1,7,8]]],[46,1,1,8,9,[[1083,1,1,8,9]]],[49,1,1,9,10,[[1103,1,1,9,10]]],[57,1,1,10,11,[[1137,1,1,10,11]]]],[24442,25009,25274,25578,27535,27852,27905,28342,28908,29384,30041]]],["Great",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28920]]],["Many",[4,4,[[39,1,1,0,1,[[935,1,1,0,1]]],[42,3,3,1,4,[[1002,1,1,1,2],[1003,1,1,2,3],[1006,1,1,3,4]]]],[23338,26317,26368,26513]]],["Much",[3,3,[[42,1,1,0,1,[[1008,1,1,0,1]]],[44,2,2,1,3,[[1048,1,1,1,2],[1050,1,1,2,3]]]],[26589,27993,28056]]],["abundant",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30377]]],["common",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24710]]],["great",[56,56,[[39,14,14,0,14,[[930,1,1,0,1],[932,1,1,1,2],[933,1,1,2,3],[936,2,2,3,5],[940,1,1,5,6],[941,1,1,6,7],[942,1,1,7,8],[943,1,1,8,9],[947,2,2,9,11],[948,1,1,11,12],[952,1,1,12,13],[954,1,1,13,14]]],[40,7,7,14,21,[[959,2,2,14,16],[960,1,1,16,17],[965,1,1,17,18],[966,1,1,18,19],[969,1,1,19,20],[970,1,1,20,21]]],[41,9,9,21,30,[[977,3,3,21,24],[978,3,3,24,27],[982,1,1,27,28],[993,1,1,28,29],[995,1,1,29,30]]],[42,3,3,30,33,[[1001,1,1,30,31],[1002,2,2,31,33]]],[43,11,11,33,44,[[1023,1,1,33,34],[1028,1,1,34,35],[1031,1,1,35,36],[1034,1,1,36,37],[1038,1,1,37,38],[1039,1,1,38,39],[1040,1,1,39,40],[1041,2,2,40,42],[1042,1,1,42,43],[1045,1,1,43,44]]],[46,4,4,44,48,[[1080,1,1,44,45],[1084,1,1,45,46],[1085,2,2,46,48]]],[48,1,1,48,49,[[1098,1,1,48,49]]],[50,1,1,49,50,[[1110,1,1,49,50]]],[51,1,1,50,51,[[1112,1,1,50,51]]],[53,1,1,51,52,[[1121,1,1,51,52]]],[56,1,1,52,53,[[1132,1,1,52,53]]],[57,1,1,53,54,[[1142,1,1,53,54]]],[65,2,2,54,56,[[1173,1,1,54,55],[1185,1,1,55,56]]]],[23187,23234,23246,23346,23363,23504,23541,23611,23663,23764,23784,23821,23987,24101,24295,24296,24324,24552,24610,24743,24797,25113,25122,25136,25163,25169,25181,25365,25853,25962,26213,26259,26262,27108,27328,27415,27527,27704,27732,27744,27771,27776,27819,27928,28853,28920,28934,28954,29233,29555,29587,29744,29945,30165,30819,31023]]],["greatly",[4,4,[[40,3,3,0,3,[[961,2,2,0,2],[968,1,1,2,3]]],[45,1,1,3,4,[[1077,1,1,3,4]]]],[24387,24402,24700,28788]]],["long",[4,4,[[39,1,1,0,1,[[953,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[43,2,2,2,4,[[1044,2,2,2,4]]]],[24027,26216,27869,27876]]],["many",[180,165,[[39,26,24,0,24,[[931,1,1,0,1],[935,2,2,1,3],[936,3,3,3,6],[937,1,1,6,7],[938,1,1,7,8],[941,2,2,8,10],[943,1,1,10,11],[947,1,1,11,12],[948,2,2,12,14],[950,1,1,14,15],[952,6,4,15,19],[954,2,2,19,21],[955,3,3,21,24]]],[40,29,25,24,49,[[957,2,1,24,25],[958,3,2,25,27],[959,1,1,27,28],[960,1,1,28,29],[961,2,2,29,31],[962,5,4,31,35],[963,3,3,35,38],[965,1,1,38,39],[966,3,3,39,42],[967,1,1,42,43],[968,2,2,43,45],[969,2,1,45,46],[970,2,2,46,48],[971,1,1,48,49]]],[41,23,22,49,71,[[973,3,3,49,52],[974,2,2,52,54],[975,1,1,54,55],[976,3,3,55,58],[979,3,2,58,60],[980,2,2,60,62],[982,1,1,62,63],[984,3,3,63,66],[985,1,1,66,67],[986,1,1,67,68],[987,1,1,68,69],[993,1,1,69,70],[994,1,1,70,71]]],[42,20,20,71,91,[[998,2,2,71,73],[1000,2,2,73,75],[1002,1,1,75,76],[1003,1,1,76,77],[1004,1,1,77,78],[1006,3,3,78,81],[1007,4,4,81,85],[1008,2,2,85,87],[1010,1,1,87,88],[1015,1,1,88,89],[1016,1,1,89,90],[1017,1,1,90,91]]],[43,23,22,91,113,[[1018,2,2,91,93],[1019,1,1,93,94],[1021,1,1,94,95],[1022,1,1,95,96],[1025,3,2,96,98],[1026,2,2,98,100],[1027,1,1,100,101],[1030,1,1,101,102],[1032,2,2,102,104],[1033,2,2,104,106],[1035,1,1,106,107],[1036,1,1,107,108],[1037,1,1,108,109],[1041,1,1,109,110],[1042,1,1,110,111],[1043,1,1,111,112],[1045,1,1,112,113]]],[44,12,10,113,123,[[1049,2,2,113,115],[1050,5,3,115,118],[1053,1,1,118,119],[1057,2,2,119,121],[1060,1,1,121,122],[1061,1,1,122,123]]],[45,14,10,123,133,[[1062,3,1,123,124],[1065,1,1,124,125],[1069,2,1,125,126],[1071,2,2,126,128],[1072,1,1,128,129],[1073,4,3,129,132],[1077,1,1,132,133]]],[46,7,6,133,139,[[1078,2,1,133,134],[1079,2,2,134,136],[1086,1,1,136,137],[1088,1,1,137,138],[1089,1,1,138,139]]],[47,3,3,139,142,[[1091,1,1,139,140],[1093,1,1,140,141],[1094,1,1,141,142]]],[49,1,1,142,143,[[1105,1,1,142,143]]],[53,3,3,143,146,[[1124,3,3,143,146]]],[54,1,1,146,147,[[1126,1,1,146,147]]],[55,1,1,147,148,[[1129,1,1,147,148]]],[57,3,3,148,151,[[1134,1,1,148,149],[1141,1,1,149,150],[1144,1,1,150,151]]],[58,1,1,151,152,[[1148,1,1,151,152]]],[60,1,1,152,153,[[1157,1,1,152,153]]],[61,2,2,153,155,[[1160,1,1,153,154],[1162,1,1,154,155]]],[62,1,1,155,156,[[1164,1,1,155,156]]],[65,9,9,156,165,[[1167,1,1,156,157],[1171,1,1,157,158],[1174,1,1,158,159],[1175,1,1,159,160],[1176,1,1,160,161],[1180,1,1,161,162],[1183,1,1,162,163],[1185,2,2,163,165]]]],[23199,23329,23338,23356,23361,23375,23389,23448,23556,23597,23663,23792,23808,23820,23886,23962,23967,23968,23969,24082,24114,24181,24182,24184,24249,24262,24275,24298,24356,24373,24390,24409,24420,24438,24440,24467,24471,24476,24564,24619,24633,24636,24648,24678,24714,24723,24778,24810,24867,24894,24907,24909,25007,25008,25043,25088,25090,25104,25216,25242,25248,25275,25387,25466,25478,25506,25542,25569,25601,25834,25929,26107,26118,26195,26197,26323,26359,26411,26501,26522,26523,26542,26568,26570,26578,26591,26622,26670,26845,26897,26923,26926,26928,26992,27026,27071,27183,27201,27229,27258,27286,27405,27474,27477,27501,27506,27565,27603,27645,27779,27803,27833,27909,28039,28040,28062,28063,28066,28145,28249,28250,28326,28338,28389,28448,28532,28584,28600,28630,28646,28648,28654,28785,28811,28828,28841,28968,29007,29043,29071,29118,29158,29439,29797,29798,29800,29829,29902,29987,30133,30227,30320,30502,30568,30604,30652,30712,30790,30838,30849,30872,30928,30976,31023,31029]]],["more",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24636]]],["much",[70,67,[[39,3,3,0,3,[[934,1,1,0,1],[941,1,1,1,2],[954,1,1,2,3]]],[40,7,7,3,10,[[957,1,1,3,4],[960,1,1,4,5],[961,3,3,5,8],[962,1,1,8,9],[968,1,1,9,10]]],[41,12,9,10,19,[[979,2,2,10,12],[980,1,1,12,13],[981,1,1,13,14],[982,1,1,14,15],[984,4,2,15,17],[988,2,1,17,18],[990,1,1,18,19]]],[42,8,8,19,27,[[999,1,1,19,20],[1002,1,1,20,21],[1003,1,1,21,22],[1008,2,2,22,24],[1010,1,1,24,25],[1011,2,2,25,27]]],[43,9,9,27,36,[[1027,1,1,27,28],[1031,1,1,28,29],[1032,1,1,29,30],[1033,1,1,30,31],[1035,2,2,31,33],[1037,1,1,33,34],[1043,1,1,34,35],[1044,1,1,35,36]]],[44,6,6,36,42,[[1050,3,3,36,39],[1054,1,1,39,40],[1060,1,1,40,41],[1061,1,1,41,42]]],[45,3,3,42,45,[[1063,1,1,42,43],[1073,1,1,43,44],[1077,1,1,44,45]]],[46,7,7,45,52,[[1079,1,1,45,46],[1080,2,2,46,48],[1083,1,1,48,49],[1085,3,3,49,52]]],[49,1,1,52,53,[[1104,1,1,52,53]]],[51,3,3,53,56,[[1111,2,2,53,55],[1112,1,1,55,56]]],[53,1,1,56,57,[[1121,1,1,56,57]]],[54,1,1,57,58,[[1128,1,1,57,58]]],[55,1,1,58,59,[[1130,1,1,58,59]]],[56,1,1,59,60,[[1132,1,1,59,60]]],[57,2,2,60,62,[[1144,2,2,60,62]]],[58,1,1,62,63,[[1150,1,1,62,63]]],[59,1,1,63,64,[[1151,1,1,63,64]]],[65,3,3,64,67,[[1171,1,1,64,65],[1174,1,1,65,66],[1185,1,1,66,67]]]],[23312,23544,24063,24260,24328,24374,24385,24388,24441,24714,25206,25242,25249,25338,25403,25478,25507,25630,25727,26143,26267,26340,26592,26604,26698,26704,26707,27261,27436,27449,27499,27567,27584,27628,27847,27865,28057,28062,28064,28177,28325,28348,28397,28656,28795,28828,28850,28852,28902,28936,28947,28954,29403,29565,29566,29572,29739,29884,29911,29946,30221,30237,30370,30381,30783,30830,31018]]],["oft",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23393]]],["plenteous",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23416]]],["sore",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24564]]],["straitly",[2,2,[[40,2,2,0,2,[[959,1,1,0,1],[961,1,1,1,2]]]],[24300,24407]]],["things",[23,23,[[39,5,5,0,5,[[941,1,1,0,1],[944,1,1,1,2],[953,2,2,2,4],[955,1,1,4,5]]],[40,7,7,5,12,[[960,1,1,5,6],[961,1,1,6,7],[962,2,2,7,9],[964,1,1,9,10],[965,1,1,10,11],[971,1,1,11,12]]],[41,4,4,12,16,[[981,1,1,12,13],[982,1,1,13,14],[989,1,1,14,15],[995,1,1,15,16]]],[42,2,2,16,18,[[1004,1,1,16,17],[1012,1,1,17,18]]],[43,1,1,18,19,[[1043,1,1,18,19]]],[46,1,1,19,20,[[1085,1,1,19,20]]],[58,1,1,20,21,[[1148,1,1,20,21]]],[62,1,1,21,22,[[1164,1,1,21,22]]],[63,1,1,22,23,[[1165,1,1,22,23]]]],[23542,23693,24029,24031,24148,24325,24390,24427,24441,24531,24550,24829,25323,25404,25676,25943,26407,26738,27832,28954,30321,30657,30671]]]]},{"k":"G4184","v":[["pitiful",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30365]]]]},{"k":"G4185","v":[["*",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[53,1,1,1,2,[[1120,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[24757,29725,30428]]],["costly",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29725]]],["precious",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24757]]],["price",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30428]]]]},{"k":"G4186","v":[["*",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]]],[23585,26583]]],["costly",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26583]]],["price",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23585]]]]},{"k":"G4187","v":[["manners",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29964]]]]},{"k":"G4188","v":[["*",[2,2,[[45,1,1,0,1,[[1071,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[28571,30115]]],["drink",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28571]]],["drinks",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30115]]]]},{"k":"G4189","v":[["*",[7,7,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[43,1,1,3,4,[[1020,1,1,3,4]]],[44,1,1,4,5,[[1046,1,1,4,5]]],[45,1,1,5,6,[[1066,1,1,5,6]]],[48,1,1,6,7,[[1102,1,1,6,7]]]],[23890,24485,25444,27022,27959,28462,29349]]],["iniquities",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27022]]],["wickedness",[6,6,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[44,1,1,3,4,[[1046,1,1,3,4]]],[45,1,1,4,5,[[1066,1,1,4,5]]],[48,1,1,5,6,[[1102,1,1,5,6]]]],[23890,24485,25444,27959,28462,29349]]]]},{"k":"G4190","v":[["*",[76,71,[[39,25,23,0,23,[[933,4,4,0,4],[934,2,2,4,6],[935,3,3,6,9],[937,1,1,9,10],[940,6,4,10,14],[941,3,3,14,17],[943,1,1,17,18],[944,1,1,18,19],[946,1,1,19,20],[948,1,1,20,21],[950,1,1,21,22],[953,1,1,22,23]]],[40,2,2,23,25,[[963,2,2,23,25]]],[41,13,11,25,36,[[975,1,1,25,26],[978,5,3,26,29],[979,1,1,29,30],[980,1,1,30,31],[983,4,4,31,35],[991,1,1,35,36]]],[42,3,3,36,39,[[999,1,1,36,37],[1003,1,1,37,38],[1013,1,1,38,39]]],[43,7,7,39,46,[[1034,1,1,39,40],[1035,1,1,40,41],[1036,4,4,41,45],[1045,1,1,45,46]]],[44,1,1,46,47,[[1057,1,1,46,47]]],[45,1,1,47,48,[[1066,1,1,47,48]]],[47,1,1,48,49,[[1091,1,1,48,49]]],[48,3,3,49,52,[[1101,1,1,49,50],[1102,2,2,50,52]]],[50,1,1,52,53,[[1107,1,1,52,53]]],[51,1,1,53,54,[[1115,1,1,53,54]]],[52,2,2,54,56,[[1118,2,2,54,56]]],[53,1,1,56,57,[[1124,1,1,56,57]]],[54,2,2,57,59,[[1127,1,1,57,58],[1128,1,1,58,59]]],[57,2,2,59,61,[[1135,1,1,59,60],[1142,1,1,60,61]]],[58,2,2,61,63,[[1147,1,1,61,62],[1149,1,1,62,63]]],[61,6,5,63,68,[[1160,2,2,63,65],[1161,2,1,65,66],[1163,2,2,66,68]]],[62,1,1,68,69,[[1164,1,1,68,69]]],[63,1,1,69,70,[[1165,1,1,69,70]]],[65,1,1,70,71,[[1182,1,1,70,71]]]],[23245,23271,23273,23279,23295,23305,23327,23333,23334,23383,23523,23524,23528,23534,23558,23577,23588,23652,23676,23759,23807,23882,24034,24485,24486,25044,25168,25181,25191,25216,25247,25409,25418,25434,25439,25753,26139,26335,26774,27528,27571,27597,27598,27600,27601,27920,28254,28467,29061,29320,29350,29353,29486,29643,29680,29681,29792,29866,29888,30007,30155,30297,30353,30563,30564,30591,30642,30643,30656,30668,30956]]],["+",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23245]]],["bad",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23882]]],["evil",[49,46,[[39,15,14,0,14,[[933,3,3,0,3],[934,2,2,3,5],[935,3,3,5,8],[937,1,1,8,9],[940,4,3,9,12],[943,1,1,12,13],[948,1,1,13,14]]],[40,1,1,14,15,[[963,1,1,14,15]]],[41,11,9,15,24,[[978,5,3,15,18],[979,1,1,18,19],[980,1,1,19,20],[983,4,4,20,24]]],[42,3,3,24,27,[[999,1,1,24,25],[1003,1,1,25,26],[1013,1,1,26,27]]],[43,4,4,27,31,[[1036,4,4,27,31]]],[44,1,1,31,32,[[1057,1,1,31,32]]],[47,1,1,32,33,[[1091,1,1,32,33]]],[48,2,2,33,35,[[1101,1,1,33,34],[1102,1,1,34,35]]],[51,1,1,35,36,[[1115,1,1,35,36]]],[52,1,1,36,37,[[1118,1,1,36,37]]],[53,1,1,37,38,[[1124,1,1,37,38]]],[54,2,2,38,40,[[1127,1,1,38,39],[1128,1,1,39,40]]],[57,2,2,40,42,[[1135,1,1,40,41],[1142,1,1,41,42]]],[58,2,2,42,44,[[1147,1,1,42,43],[1149,1,1,43,44]]],[61,1,1,44,45,[[1161,1,1,44,45]]],[62,1,1,45,46,[[1164,1,1,45,46]]]],[23271,23273,23279,23295,23305,23327,23333,23334,23383,23523,23524,23528,23652,23807,24485,25168,25181,25191,25216,25247,25409,25418,25434,25439,26139,26335,26774,27597,27598,27600,27601,28254,29061,29320,29350,29643,29681,29792,29866,29888,30007,30155,30297,30353,30591,30656]]],["evils",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25044]]],["grievous",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30956]]],["harm",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27920]]],["lewd",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27528]]],["malicious",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30668]]],["one",[4,4,[[61,4,4,0,4,[[1160,2,2,0,2],[1161,1,1,2,3],[1163,1,1,3,4]]]],[30563,30564,30591,30642]]],["person",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28467]]],["things",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[23524,24486]]],["wicked",[12,12,[[39,7,7,0,7,[[940,1,1,0,1],[941,3,3,1,4],[944,1,1,4,5],[946,1,1,5,6],[953,1,1,6,7]]],[41,1,1,7,8,[[991,1,1,7,8]]],[43,1,1,8,9,[[1035,1,1,8,9]]],[48,1,1,9,10,[[1102,1,1,9,10]]],[50,1,1,10,11,[[1107,1,1,10,11]]],[52,1,1,11,12,[[1118,1,1,11,12]]]],[23534,23558,23577,23588,23676,23759,24034,25753,27571,29353,29486,29680]]],["wickedness",[1,1,[[61,1,1,0,1,[[1163,1,1,0,1]]]],[30643]]]]},{"k":"G4191","v":[["wicked",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23534,25431]]]]},{"k":"G4192","v":[["*",[3,3,[[65,3,3,0,3,[[1182,2,2,0,2],[1187,1,1,2,3]]]],[30964,30965,31057]]],["pain",[2,2,[[65,2,2,0,2,[[1182,1,1,0,1],[1187,1,1,1,2]]]],[30964,31057]]],["pains",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30965]]]]},{"k":"G4193","v":[["Pontus",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27559]]]]},{"k":"G4194","v":[["Pontius",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[43,1,1,2,3,[[1021,1,1,2,3]]],[53,1,1,3,4,[[1124,1,1,3,4]]]],[24131,25026,27049,29801]]]]},{"k":"G4195","v":[["Pontus",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[26958,30375]]]]},{"k":"G4196","v":[["Publius",[2,2,[[43,2,2,0,2,[[1045,2,2,0,2]]]],[27906,27907]]]]},{"k":"G4197","v":[["*",[2,2,[[41,1,1,0,1,[[985,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[25540,30277]]],["+",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25540]]],["ways",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30277]]]]},{"k":"G4198","v":[["*",[154,147,[[39,30,29,0,29,[[930,3,3,0,3],[936,2,1,3,4],[937,1,1,4,5],[938,2,2,5,7],[939,2,2,7,9],[940,2,2,9,11],[945,1,1,11,12],[946,1,1,12,13],[947,1,1,13,14],[949,2,2,14,16],[950,2,2,16,18],[952,1,1,18,19],[953,3,3,19,22],[954,1,1,22,23],[955,1,1,23,24],[956,5,5,24,29]]],[40,3,3,29,32,[[972,3,3,29,32]]],[41,50,47,32,79,[[973,2,2,32,34],[974,2,2,34,36],[976,3,2,36,38],[977,1,1,38,39],[979,6,5,39,44],[980,2,2,44,46],[981,6,6,46,52],[982,2,2,52,54],[983,2,2,54,56],[985,3,3,56,59],[986,3,3,59,62],[987,3,3,62,65],[988,1,1,65,66],[989,3,3,66,69],[991,3,3,69,72],[993,1,1,72,73],[994,4,4,73,77],[996,3,2,77,79]]],[42,16,14,79,93,[[1000,2,1,79,80],[1003,3,2,80,82],[1004,2,2,82,84],[1006,1,1,84,85],[1007,1,1,85,86],[1010,4,4,86,90],[1012,2,2,90,92],[1016,1,1,92,93]]],[43,38,38,93,131,[[1018,3,3,93,96],[1022,2,2,96,98],[1025,4,4,98,102],[1026,4,4,102,106],[1027,1,1,106,107],[1029,1,1,107,108],[1031,1,1,108,109],[1033,3,3,109,112],[1034,1,1,112,113],[1035,1,1,113,114],[1036,1,1,114,115],[1037,2,2,115,117],[1038,1,1,117,118],[1039,4,4,118,122],[1040,2,2,122,124],[1041,1,1,124,125],[1042,2,2,125,127],[1043,2,2,127,129],[1044,1,1,129,130],[1045,1,1,130,131]]],[44,2,2,131,133,[[1060,2,2,131,133]]],[45,4,3,133,136,[[1071,1,1,133,134],[1077,3,2,134,136]]],[53,1,1,136,137,[[1119,1,1,136,137]]],[54,1,1,137,138,[[1128,1,1,137,138]]],[58,1,1,138,139,[[1149,1,1,138,139]]],[59,3,3,139,142,[[1153,2,2,139,141],[1154,1,1,141,142]]],[60,2,2,142,144,[[1157,1,1,142,143],[1158,1,1,143,144]]],[64,3,3,144,147,[[1166,3,3,144,147]]]],[23177,23178,23189,23354,23392,23423,23424,23463,23466,23490,23534,23727,23739,23777,23828,23832,23881,23887,23958,24017,24024,24049,24068,24195,24202,24204,24206,24211,24214,24883,24885,24888,24899,24932,24976,25014,25093,25105,25131,25201,25203,25206,25217,25245,25259,25293,25314,25352,25353,25354,25357,25358,25400,25401,25410,25431,25549,25550,25551,25563,25572,25584,25592,25603,25606,25650,25662,25665,25670,25743,25759,25767,25834,25872,25886,25897,25903,26004,26019,26206,26363,26381,26382,26392,26485,26534,26670,26671,26680,26696,26733,26754,26884,26933,26934,26948,27079,27100,27202,27203,27212,27215,27219,27227,27231,27247,27279,27354,27430,27490,27499,27519,27537,27563,27606,27627,27648,27669,27709,27710,27714,27725,27757,27766,27794,27808,27816,27835,27836,27858,27925,28327,28328,28594,28780,28782,29699,29880,30350,30443,30446,30449,30510,30525,30683,30688,30690]]],["+",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]]],[26004,27079,28780]]],["Depart",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[43,1,1,1,2,[[1039,1,1,1,2]]]],[24049,27725]]],["Go",[13,13,[[39,6,6,0,6,[[930,1,1,0,1],[936,1,1,1,2],[939,1,1,2,3],[949,1,1,3,4],[950,1,1,4,5],[956,1,1,5,6]]],[40,1,1,6,7,[[972,1,1,6,7]]],[41,5,5,7,12,[[979,1,1,7,8],[982,1,1,8,9],[985,1,1,9,10],[989,1,1,10,11],[994,1,1,11,12]]],[43,1,1,12,13,[[1045,1,1,12,13]]]],[23177,23354,23463,23828,23881,24214,24888,25203,25400,25550,25665,25872,27925]]],["away",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24211]]],["depart",[3,3,[[41,2,2,0,2,[[976,1,1,0,1],[985,1,1,1,2]]],[42,1,1,2,3,[[1012,1,1,2,3]]]],[25105,25549,26733]]],["departed",[6,6,[[39,4,4,0,4,[[930,1,1,0,1],[939,1,1,1,2],[947,1,1,2,3],[952,1,1,3,4]]],[43,1,1,4,5,[[1022,1,1,4,5]]],[54,1,1,5,6,[[1128,1,1,5,6]]]],[23178,23466,23777,23958,27100,29880]]],["forth",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25259]]],["go",[53,52,[[39,7,7,0,7,[[930,1,1,0,1],[937,1,1,1,2],[938,2,2,2,4],[945,1,1,4,5],[953,1,1,5,6],[956,1,1,6,7]]],[41,13,13,7,20,[[977,1,1,7,8],[979,1,1,8,9],[980,1,1,9,10],[981,3,3,10,13],[983,1,1,13,14],[986,2,2,14,16],[987,2,2,16,18],[993,1,1,18,19],[994,1,1,19,20]]],[42,10,9,20,29,[[1003,2,1,20,21],[1004,1,1,21,22],[1007,1,1,22,23],[1010,4,4,23,27],[1012,1,1,27,28],[1016,1,1,28,29]]],[43,18,18,29,47,[[1018,2,2,29,31],[1025,1,1,31,32],[1026,1,1,32,33],[1027,1,1,33,34],[1033,2,2,34,36],[1034,1,1,36,37],[1035,1,1,37,38],[1036,1,1,38,39],[1037,2,2,39,41],[1039,1,1,41,42],[1040,2,2,42,44],[1042,2,2,44,46],[1044,1,1,46,47]]],[44,1,1,47,48,[[1060,1,1,47,48]]],[45,3,3,48,51,[[1071,1,1,48,49],[1077,2,2,49,51]]],[58,1,1,51,52,[[1149,1,1,51,52]]]],[23189,23392,23423,23424,23727,24017,24202,25131,25245,25293,25314,25352,25354,25410,25563,25572,25592,25606,25834,25897,26363,26392,26534,26670,26671,26680,26696,26754,26884,26934,26948,27202,27227,27279,27490,27519,27537,27563,27606,27627,27648,27714,27757,27766,27808,27816,27858,28328,28594,28780,28782,30350]]],["goeth",[7,7,[[39,3,3,0,3,[[936,1,1,0,1],[940,1,1,1,2],[946,1,1,2,3]]],[41,3,3,3,6,[[979,1,1,3,4],[983,1,1,4,5],[994,1,1,5,6]]],[42,1,1,6,7,[[1006,1,1,6,7]]]],[23354,23534,23739,25203,25431,25886,26485]]],["going",[2,2,[[39,1,1,0,1,[[956,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]]],[24206,25584]]],["gone",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]],[64,1,1,2,3,[[1166,1,1,2,3]]]],[26019,30446,30683]]],["journey",[2,2,[[43,1,1,0,1,[[1039,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]]],[27710,28327]]],["journeyed",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1043,1,1,1,2]]]],[27219,27836]]],["up",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26933]]],["walk",[4,4,[[41,1,1,0,1,[[985,1,1,0,1]]],[43,1,1,1,2,[[1031,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[25551,27430,30510,30690]]],["walked",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30449]]],["walking",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]],[60,1,1,2,3,[[1158,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[24899,27247,30525,30688]]],["way",[8,7,[[41,3,3,0,3,[[976,1,1,0,1],[979,1,1,1,2],[989,1,1,2,3]]],[42,2,1,3,4,[[1000,2,1,3,4]]],[43,3,3,4,7,[[1026,1,1,4,5],[1038,1,1,5,6],[1041,1,1,6,7]]]],[25093,25217,25670,26206,27231,27669,27794]]],["went",[38,38,[[39,7,7,0,7,[[940,1,1,0,1],[949,1,1,1,2],[950,1,1,2,3],[953,1,1,3,4],[954,1,1,4,5],[955,1,1,5,6],[956,1,1,6,7]]],[40,2,2,7,9,[[972,2,2,7,9]]],[41,18,18,9,27,[[973,1,1,9,10],[974,2,2,10,12],[976,1,1,12,13],[979,2,2,13,15],[981,3,3,15,18],[982,1,1,18,19],[987,1,1,19,20],[988,1,1,20,21],[989,1,1,21,22],[991,3,3,22,25],[994,1,1,25,26],[996,1,1,26,27]]],[42,2,2,27,29,[[1003,1,1,27,28],[1004,1,1,28,29]]],[43,7,7,29,36,[[1025,3,3,29,32],[1029,1,1,32,33],[1033,1,1,33,34],[1039,1,1,34,35],[1043,1,1,35,36]]],[53,1,1,36,37,[[1119,1,1,36,37]]],[59,1,1,37,38,[[1153,1,1,37,38]]]],[23490,23832,23887,24024,24068,24195,24204,24883,24885,24932,24976,25014,25105,25201,25206,25353,25357,25358,25401,25603,25650,25662,25743,25759,25767,25903,26019,26381,26382,27203,27212,27215,27354,27499,27709,27835,29699,30443]]]]},{"k":"G4199","v":[["*",[3,3,[[43,1,1,0,1,[[1026,1,1,0,1]]],[47,2,2,1,3,[[1091,2,2,1,3]]]],[27237,29070,29080]]],["destroyed",[2,2,[[43,1,1,0,1,[[1026,1,1,0,1]]],[47,1,1,1,2,[[1091,1,1,1,2]]]],[27237,29080]]],["wasted",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29070]]]]},{"k":"G4200","v":[["gain",[2,2,[[53,2,2,0,2,[[1124,2,2,0,2]]]],[29793,29794]]]]},{"k":"G4201","v":[["Porcius",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27796]]]]},{"k":"G4202","v":[["*",[26,25,[[39,3,3,0,3,[[933,1,1,0,1],[943,1,1,1,2],[947,1,1,2,3]]],[40,1,1,3,4,[[963,1,1,3,4]]],[42,1,1,4,5,[[1004,1,1,4,5]]],[43,3,3,5,8,[[1032,2,2,5,7],[1038,1,1,7,8]]],[44,1,1,8,9,[[1046,1,1,8,9]]],[45,5,4,9,13,[[1066,2,1,9,10],[1067,2,2,10,12],[1068,1,1,12,13]]],[46,1,1,13,14,[[1089,1,1,13,14]]],[47,1,1,14,15,[[1095,1,1,14,15]]],[48,1,1,15,16,[[1101,1,1,15,16]]],[50,1,1,16,17,[[1109,1,1,16,17]]],[51,1,1,17,18,[[1114,1,1,17,18]]],[65,7,7,18,25,[[1168,1,1,18,19],[1175,1,1,19,20],[1180,1,1,20,21],[1183,2,2,21,23],[1184,1,1,23,24],[1185,1,1,24,25]]]],[23266,23652,23771,24484,26422,27462,27471,27689,27959,28455,28480,28485,28489,29043,29181,29307,29522,29606,30738,30861,30934,30977,30979,30996,31019]]],["fornication",[24,23,[[39,2,2,0,2,[[933,1,1,0,1],[947,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]],[43,3,3,3,6,[[1032,2,2,3,5],[1038,1,1,5,6]]],[44,1,1,6,7,[[1046,1,1,6,7]]],[45,5,4,7,11,[[1066,2,1,7,8],[1067,2,2,8,10],[1068,1,1,10,11]]],[46,1,1,11,12,[[1089,1,1,11,12]]],[47,1,1,12,13,[[1095,1,1,12,13]]],[48,1,1,13,14,[[1101,1,1,13,14]]],[50,1,1,14,15,[[1109,1,1,14,15]]],[51,1,1,15,16,[[1114,1,1,15,16]]],[65,7,7,16,23,[[1168,1,1,16,17],[1175,1,1,17,18],[1180,1,1,18,19],[1183,2,2,19,21],[1184,1,1,21,22],[1185,1,1,22,23]]]],[23266,23771,26422,27462,27471,27689,27959,28455,28480,28485,28489,29043,29181,29307,29522,29606,30738,30861,30934,30977,30979,30996,31019]]],["fornications",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[23652,24484]]]]},{"k":"G4203","v":[["*",[8,7,[[45,3,2,0,2,[[1067,1,1,0,1],[1071,2,1,1,2]]],[65,5,5,2,7,[[1168,2,2,2,4],[1183,1,1,4,5],[1184,2,2,5,7]]]],[28485,28575,30731,30737,30977,30996,31002]]],["committed",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28575]]],["fornication",[7,7,[[45,2,2,0,2,[[1067,1,1,0,1],[1071,1,1,1,2]]],[65,5,5,2,7,[[1168,2,2,2,4],[1183,1,1,4,5],[1184,2,2,5,7]]]],[28485,28575,30731,30737,30977,30996,31002]]]]},{"k":"G4204","v":[["*",[12,12,[[39,2,2,0,2,[[949,2,2,0,2]]],[41,1,1,2,3,[[987,1,1,2,3]]],[45,2,2,3,5,[[1067,2,2,3,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]],[58,1,1,6,7,[[1147,1,1,6,7]]],[65,5,5,7,12,[[1183,4,4,7,11],[1185,1,1,11,12]]]],[23857,23858,25618,28482,28483,30203,30318,30976,30980,30990,30991,31019]]],["HARLOTS",[1,1,[[65,1,1,0,1,[[1183,1,1,0,1]]]],[30980]]],["harlot",[4,4,[[45,2,2,0,2,[[1067,2,2,0,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[28482,28483,30203,30318]]],["harlots",[3,3,[[39,2,2,0,2,[[949,2,2,0,2]]],[41,1,1,2,3,[[987,1,1,2,3]]]],[23857,23858,25618]]],["whore",[4,4,[[65,4,4,0,4,[[1183,3,3,0,3],[1185,1,1,3,4]]]],[30976,30990,30991,31019]]]]},{"k":"G4205","v":[["*",[10,10,[[45,4,4,0,4,[[1066,3,3,0,3],[1067,1,1,3,4]]],[48,1,1,4,5,[[1101,1,1,4,5]]],[53,1,1,5,6,[[1119,1,1,5,6]]],[57,2,2,6,8,[[1144,1,1,6,7],[1145,1,1,7,8]]],[65,2,2,8,10,[[1187,1,1,8,9],[1188,1,1,9,10]]]],[28463,28464,28465,28476,29309,29706,30228,30245,31061,31095]]],["fornicator",[2,2,[[45,1,1,0,1,[[1066,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[28465,30228]]],["fornicators",[3,3,[[45,3,3,0,3,[[1066,2,2,0,2],[1067,1,1,2,3]]]],[28463,28464,28476]]],["whoremonger",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29309]]],["whoremongers",[4,4,[[53,1,1,0,1,[[1119,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]],[65,2,2,2,4,[[1187,1,1,2,3],[1188,1,1,3,4]]]],[29706,30245,31061,31095]]]]},{"k":"G4206","v":[["*",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,1,1,2,3,[[986,1,1,2,3]]]],[23641,24469,25585]]],["+",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24469]]],["far",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23641]]],["off",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25585]]]]},{"k":"G4207","v":[["off",[2,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[25663,30185]]]]},{"k":"G4208","v":[["further",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26019]]]]},{"k":"G4209","v":[["purple",[5,5,[[40,2,2,0,2,[[971,2,2,0,2]]],[41,1,1,2,3,[[988,1,1,2,3]]],[65,2,2,3,5,[[1183,1,1,3,4],[1184,1,1,4,5]]]],[24843,24846,25639,30979,31005]]]]},{"k":"G4210","v":[["purple",[3,3,[[42,2,2,0,2,[[1015,2,2,0,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[26827,26830,31009]]]]},{"k":"G4211","v":[["purple",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27497]]]]},{"k":"G4212","v":[["*",[3,3,[[39,2,2,0,2,[[946,1,1,0,1],[951,1,1,1,2]]],[41,1,1,2,3,[[985,1,1,2,3]]]],[23748,23955,25552]]],["oft",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23748]]],["often",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23955,25552]]]]},{"k":"G4213","v":[["drink",[3,3,[[42,1,1,0,1,[[1002,1,1,0,1]]],[44,1,1,1,2,[[1059,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]]],[26312,28297,29510]]]]},{"k":"G4214","v":[["*",[27,27,[[39,8,8,0,8,[[934,1,1,0,1],[935,1,1,1,2],[938,1,1,2,3],[940,1,1,3,4],[943,1,1,4,5],[944,2,2,5,7],[955,1,1,7,8]]],[40,6,6,8,14,[[962,1,1,8,9],[964,3,3,9,12],[965,1,1,12,13],[971,1,1,13,14]]],[41,6,6,14,20,[[983,1,1,14,15],[984,2,2,15,17],[987,1,1,17,18],[988,2,2,18,20]]],[43,1,1,20,21,[[1038,1,1,20,21]]],[44,2,2,21,23,[[1056,2,2,21,23]]],[46,1,1,23,24,[[1084,1,1,23,24]]],[56,1,1,24,25,[[1132,1,1,24,25]]],[57,2,2,25,27,[[1141,1,1,25,26],[1142,1,1,26,27]]]],[23305,23327,23442,23501,23667,23681,23682,24142,24445,24505,24519,24520,24559,24830,25418,25483,25487,25605,25625,25627,27684,28221,28233,28927,29954,30119,30162]]],["+",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24559]]],["great",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23305]]],["many",[9,9,[[39,3,3,0,3,[[943,1,1,0,1],[944,2,2,1,3]]],[40,4,4,3,7,[[962,1,1,3,4],[964,3,3,4,7]]],[41,1,1,7,8,[[987,1,1,7,8]]],[43,1,1,8,9,[[1038,1,1,8,9]]]],[23667,23681,23682,24445,24505,24519,24520,25605,27684]]],["much",[13,13,[[39,3,3,0,3,[[935,1,1,0,1],[938,1,1,1,2],[940,1,1,2,3]]],[41,5,5,3,8,[[983,1,1,3,4],[984,2,2,4,6],[988,2,2,6,8]]],[44,2,2,8,10,[[1056,2,2,8,10]]],[56,1,1,10,11,[[1132,1,1,10,11]]],[57,2,2,11,13,[[1141,1,1,11,12],[1142,1,1,12,13]]]],[23327,23442,23501,25418,25483,25487,25625,25627,28221,28233,29954,30119,30162]]],["things",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24142,24830]]],["what",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28927]]]]},{"k":"G4215","v":[["*",[16,16,[[39,2,2,0,2,[[935,2,2,0,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,2,2,3,5,[[978,2,2,3,5]]],[42,1,1,5,6,[[1003,1,1,5,6]]],[43,1,1,6,7,[[1033,1,1,6,7]]],[46,1,1,7,8,[[1088,1,1,7,8]]],[65,8,8,8,16,[[1174,1,1,8,9],[1175,1,1,9,10],[1178,2,2,10,12],[1182,2,2,12,14],[1188,2,2,14,16]]]],[23341,23343,24220,25194,25195,26366,27496,29015,30837,30854,30906,30907,30958,30966,31081,31082]]],["+",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25195]]],["flood",[2,2,[[65,2,2,0,2,[[1178,2,2,0,2]]]],[30906,30907]]],["floods",[2,2,[[39,2,2,0,2,[[935,2,2,0,2]]]],[23341,23343]]],["river",[5,5,[[40,1,1,0,1,[[957,1,1,0,1]]],[65,4,4,1,5,[[1175,1,1,1,2],[1182,1,1,2,3],[1188,2,2,3,5]]]],[24220,30854,30966,31081,31082]]],["rivers",[3,3,[[42,1,1,0,1,[[1003,1,1,0,1]]],[65,2,2,1,3,[[1174,1,1,1,2],[1182,1,1,2,3]]]],[26366,30837,30958]]],["side",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27496]]],["stream",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25194]]],["waters",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29015]]]]},{"k":"G4216","v":[["flood",[1,1,[[65,1,1,0,1,[[1178,1,1,0,1]]]],[30906]]]]},{"k":"G4217","v":[["*",[7,6,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,2,1,1,2,[[969,2,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[979,1,1,3,4]]],[60,1,1,4,5,[[1158,1,1,4,5]]],[61,1,1,5,6,[[1161,1,1,5,6]]]],[23372,24718,24922,25234,30533,30580]]],["man",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23372]]],["manner",[5,5,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,2,2,1,3,[[973,1,1,1,2],[979,1,1,2,3]]],[60,1,1,3,4,[[1158,1,1,3,4]]],[61,1,1,4,5,[[1161,1,1,4,5]]]],[24718,24922,25234,30533,30580]]],["what",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24718]]]]},{"k":"G4218","v":[["*",[29,28,[[41,1,1,0,1,[[994,1,1,0,1]]],[42,1,1,1,2,[[1005,1,1,1,2]]],[44,3,3,2,5,[[1046,1,1,2,3],[1052,1,1,3,4],[1056,1,1,4,5]]],[45,1,1,5,6,[[1070,1,1,5,6]]],[47,4,3,6,9,[[1091,3,2,6,8],[1092,1,1,8,9]]],[48,6,6,9,15,[[1098,4,4,9,13],[1101,2,2,13,15]]],[49,1,1,15,16,[[1106,1,1,15,16]]],[50,2,2,16,18,[[1107,1,1,16,17],[1109,1,1,17,18]]],[51,1,1,18,19,[[1112,1,1,18,19]]],[55,1,1,19,20,[[1131,1,1,19,20]]],[56,1,1,20,21,[[1132,1,1,20,21]]],[57,2,2,21,23,[[1133,2,2,21,23]]],[59,3,3,23,26,[[1152,1,1,23,24],[1153,2,2,24,26]]],[60,2,2,26,28,[[1156,2,2,26,28]]]],[25896,26453,27940,28100,28239,28547,29070,29080,29087,29231,29232,29240,29242,29312,29333,29452,29486,29524,29575,29926,29949,29968,29976,30409,30429,30444,30489,30500]]],["+",[3,3,[[47,1,1,0,1,[[1092,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]],[60,1,1,2,3,[[1156,1,1,2,3]]]],[29087,29242,30489]]],["aforetime",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26453]]],["last",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29452]]],["length",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27940]]],["once",[2,2,[[44,1,1,0,1,[[1052,1,1,0,1]]],[47,1,1,1,2,[[1091,1,1,1,2]]]],[28100,29080]]],["past",[8,8,[[44,1,1,0,1,[[1056,1,1,0,1]]],[47,2,2,1,3,[[1091,2,2,1,3]]],[48,3,3,3,6,[[1098,3,3,3,6]]],[56,1,1,6,7,[[1132,1,1,6,7]]],[59,1,1,7,8,[[1152,1,1,7,8]]]],[28239,29070,29080,29231,29232,29240,29949,30409]]],["sometime",[2,2,[[50,1,1,0,1,[[1107,1,1,0,1]]],[59,1,1,1,2,[[1153,1,1,1,2]]]],[29486,30444]]],["sometimes",[2,2,[[48,1,1,0,1,[[1101,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[29312,29926]]],["time",[7,7,[[45,1,1,0,1,[[1070,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]],[57,2,2,3,5,[[1133,2,2,3,5]]],[59,1,1,5,6,[[1153,1,1,5,6]]],[60,1,1,6,7,[[1156,1,1,6,7]]]],[28547,29524,29575,29968,29976,30429,30500]]],["when",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25896]]],["yet",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29333]]]]},{"k":"G4219","v":[["*",[19,17,[[39,7,6,0,6,[[945,2,1,0,1],[952,1,1,1,2],[953,4,4,2,6]]],[40,5,4,6,10,[[965,2,1,6,7],[969,3,3,7,10]]],[41,4,4,10,14,[[981,1,1,10,11],[984,1,1,11,12],[989,1,1,12,13],[993,1,1,13,14]]],[42,2,2,14,16,[[1002,1,1,14,15],[1006,1,1,15,16]]],[65,1,1,16,17,[[1172,1,1,16,17]]]],[23717,23960,24045,24046,24047,24052,24557,24721,24750,24752,25342,25495,25671,25833,26282,26505,30803]]],["+",[7,5,[[39,2,1,0,1,[[945,2,1,0,1]]],[40,2,1,1,2,[[965,2,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[42,1,1,3,4,[[1006,1,1,3,4]]],[65,1,1,4,5,[[1172,1,1,4,5]]]],[23717,24557,25342,26505,30803]]],["When",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24046]]],["when",[11,11,[[39,4,4,0,4,[[952,1,1,0,1],[953,3,3,1,4]]],[40,3,3,4,7,[[969,3,3,4,7]]],[41,3,3,7,10,[[984,1,1,7,8],[989,1,1,8,9],[993,1,1,9,10]]],[42,1,1,10,11,[[1002,1,1,10,11]]]],[23960,24045,24047,24052,24721,24750,24752,25495,25671,25833,26282]]]]},{"k":"G4220","v":[["whether",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26345]]]]},{"k":"G4221","v":[["*",[33,30,[[39,8,8,0,8,[[938,1,1,0,1],[948,2,2,1,3],[951,2,2,3,5],[954,3,3,5,8]]],[40,7,7,8,15,[[963,2,2,8,10],[965,1,1,10,11],[966,2,2,11,13],[970,2,2,13,15]]],[41,5,4,15,19,[[983,1,1,15,16],[994,4,3,16,19]]],[42,1,1,19,20,[[1014,1,1,19,20]]],[45,8,6,20,26,[[1071,3,2,20,22],[1072,5,4,22,26]]],[65,4,4,26,30,[[1180,1,1,26,27],[1182,1,1,27,28],[1183,1,1,28,29],[1184,1,1,29,30]]]],[23459,23814,23815,23943,23944,24081,24093,24096,24467,24471,24579,24626,24627,24777,24790,25444,25881,25884,25906,26796,28583,28588,28625,28626,28627,28628,30936,30973,30979,30999]]],["+",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24579]]],["cup",[29,27,[[39,8,8,0,8,[[938,1,1,0,1],[948,2,2,1,3],[951,2,2,3,5],[954,3,3,5,8]]],[40,4,4,8,12,[[966,2,2,8,10],[970,2,2,10,12]]],[41,4,4,12,16,[[983,1,1,12,13],[994,3,3,13,16]]],[42,1,1,16,17,[[1014,1,1,16,17]]],[45,8,6,17,23,[[1071,3,2,17,19],[1072,5,4,19,23]]],[65,4,4,23,27,[[1180,1,1,23,24],[1182,1,1,24,25],[1183,1,1,25,26],[1184,1,1,26,27]]]],[23459,23814,23815,23943,23944,24081,24093,24096,24626,24627,24777,24790,25444,25881,25884,25906,26796,28583,28588,28625,28626,28627,28628,30936,30973,30979,30999]]],["cups",[2,2,[[40,2,2,0,2,[[963,2,2,0,2]]]],[24467,24471]]],["is",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25884]]]]},{"k":"G4222","v":[["*",[15,15,[[39,5,5,0,5,[[938,1,1,0,1],[953,3,3,1,4],[955,1,1,4,5]]],[40,2,2,5,7,[[965,1,1,5,6],[971,1,1,6,7]]],[41,1,1,7,8,[[985,1,1,7,8]]],[44,1,1,8,9,[[1057,1,1,8,9]]],[45,5,5,9,14,[[1064,4,4,9,13],[1073,1,1,13,14]]],[65,1,1,14,15,[[1180,1,1,14,15]]]],[23459,24043,24045,24050,24177,24579,24862,25533,28265,28412,28416,28417,28418,28647,30934]]],["+",[7,7,[[39,3,3,0,3,[[953,2,2,0,2],[955,1,1,2,3]]],[40,2,2,3,5,[[965,1,1,3,4],[971,1,1,4,5]]],[44,1,1,5,6,[[1057,1,1,5,6]]],[65,1,1,6,7,[[1180,1,1,6,7]]]],[24043,24050,24177,24579,24862,28265,30934]]],["drink",[3,3,[[39,2,2,0,2,[[938,1,1,0,1],[953,1,1,1,2]]],[45,1,1,2,3,[[1073,1,1,2,3]]]],[23459,24045,28647]]],["fed",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28412]]],["watered",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28416]]],["watereth",[2,2,[[45,2,2,0,2,[[1064,2,2,0,2]]]],[28417,28418]]],["watering",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25533]]]]},{"k":"G4223","v":[["Puteoli",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27912]]]]},{"k":"G4224","v":[["banquetings",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30449]]]]},{"k":"G4225","v":[["*",[3,3,[[44,1,1,0,1,[[1049,1,1,0,1]]],[57,2,2,1,3,[[1134,1,1,1,2],[1136,1,1,2,3]]]],[28041,29983,30018]]],["about",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28041]]],["place",[2,2,[[57,2,2,0,2,[[1134,1,1,0,1],[1136,1,1,1,2]]]],[29983,30018]]]]},{"k":"G4226","v":[["*",[47,42,[[39,4,4,0,4,[[930,2,2,0,2],[936,1,1,2,3],[954,1,1,3,4]]],[40,3,3,4,7,[[970,2,2,4,6],[971,1,1,6,7]]],[41,7,7,7,14,[[980,1,1,7,8],[981,1,1,8,9],[984,1,1,9,10],[989,2,2,10,12],[994,2,2,12,14]]],[42,19,18,14,32,[[997,2,2,14,16],[999,1,1,16,17],[1003,2,2,17,19],[1004,4,3,19,22],[1005,1,1,22,23],[1007,2,2,23,25],[1008,1,1,25,26],[1009,1,1,26,27],[1010,1,1,27,28],[1012,1,1,28,29],[1016,3,3,29,32]]],[44,1,1,32,33,[[1048,1,1,32,33]]],[45,8,4,33,37,[[1062,3,1,33,34],[1073,3,2,34,36],[1076,2,1,36,37]]],[57,1,1,37,38,[[1143,1,1,37,38]]],[59,1,1,38,39,[[1154,1,1,38,39]]],[60,1,1,39,40,[[1158,1,1,39,40]]],[61,1,1,40,41,[[1160,1,1,40,41]]],[65,1,1,41,42,[[1168,1,1,41,42]]]],[23171,23173,23365,24071,24766,24768,24873,25270,25359,25476,25668,25688,25873,25875,26082,26083,26128,26339,26363,26391,26395,26400,26452,26557,26580,26615,26666,26673,26731,26869,26880,26882,28018,28383,28651,28653,28773,30180,30464,30526,30561,30730]]],["Where",[15,15,[[39,2,2,0,2,[[930,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[970,2,2,2,4]]],[41,4,4,4,8,[[980,1,1,4,5],[989,1,1,5,6],[994,2,2,6,8]]],[42,4,4,8,12,[[1003,1,1,8,9],[1004,1,1,9,10],[1005,1,1,10,11],[1007,1,1,11,12]]],[44,1,1,12,13,[[1048,1,1,12,13]]],[45,1,1,13,14,[[1062,1,1,13,14]]],[60,1,1,14,15,[[1158,1,1,14,15]]]],[23171,24071,24766,24768,25270,25688,25873,25875,26339,26400,26452,26557,28018,28383,30526]]],["Whither",[2,2,[[42,2,2,0,2,[[1003,1,1,0,1],[1012,1,1,1,2]]]],[26363,26731]]],["where",[22,19,[[39,2,2,0,2,[[930,1,1,0,1],[936,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[41,3,3,3,6,[[981,1,1,3,4],[984,1,1,4,5],[989,1,1,5,6]]],[42,7,7,6,13,[[997,2,2,6,8],[1004,1,1,8,9],[1007,1,1,9,10],[1016,3,3,10,13]]],[45,7,4,13,17,[[1062,2,1,13,14],[1073,3,2,14,16],[1076,2,1,16,17]]],[59,1,1,17,18,[[1154,1,1,17,18]]],[65,1,1,18,19,[[1168,1,1,18,19]]]],[23173,23365,24873,25359,25476,25668,26082,26083,26391,26580,26869,26880,26882,28383,28651,28653,28773,30464,30730]]],["whither",[8,7,[[42,6,5,0,5,[[999,1,1,0,1],[1004,2,1,1,2],[1008,1,1,2,3],[1009,1,1,3,4],[1010,1,1,4,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]],[61,1,1,6,7,[[1160,1,1,6,7]]]],[26128,26395,26615,26666,26673,30180,30561]]]]},{"k":"G4227","v":[["Pudens",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29891]]]]},{"k":"G4228","v":[["*",[93,86,[[39,11,10,0,10,[[932,1,1,0,1],[933,1,1,1,2],[935,1,1,2,3],[938,1,1,3,4],[943,1,1,4,5],[946,3,2,5,7],[950,2,2,7,9],[956,1,1,9,10]]],[40,6,5,10,15,[[961,1,1,10,11],[962,1,1,11,12],[963,1,1,12,13],[965,2,1,13,14],[968,1,1,14,15]]],[41,18,15,15,30,[[973,1,1,15,16],[976,1,1,16,17],[979,7,4,17,21],[980,2,2,21,23],[981,1,1,23,24],[982,1,1,24,25],[987,1,1,25,26],[989,1,1,26,27],[992,1,1,27,28],[996,2,2,28,30]]],[42,14,12,30,42,[[1007,3,3,30,33],[1008,2,1,33,34],[1009,8,7,34,41],[1016,1,1,41,42]]],[43,19,19,42,61,[[1019,1,1,42,43],[1021,2,2,43,45],[1022,3,3,45,48],[1024,4,4,48,52],[1027,1,1,52,53],[1030,2,2,53,55],[1031,2,2,55,57],[1033,1,1,57,58],[1038,1,1,58,59],[1039,1,1,59,60],[1043,1,1,60,61]]],[44,3,3,61,64,[[1048,1,1,61,62],[1055,1,1,62,63],[1061,1,1,63,64]]],[45,4,4,64,68,[[1073,2,2,64,66],[1076,2,2,66,68]]],[48,2,2,68,70,[[1097,1,1,68,69],[1102,1,1,69,70]]],[53,1,1,70,71,[[1123,1,1,70,71]]],[57,4,4,71,75,[[1133,1,1,71,72],[1134,1,1,72,73],[1142,1,1,73,74],[1144,1,1,74,75]]],[65,11,11,75,86,[[1167,2,2,75,77],[1168,1,1,77,78],[1169,1,1,78,79],[1176,2,2,79,81],[1177,1,1,81,82],[1178,1,1,82,83],[1179,1,1,83,84],[1185,1,1,84,85],[1188,1,1,85,86]]]],[23215,23269,23322,23431,23663,23735,23756,23885,23916,24204,24386,24418,24488,24583,24709,24972,25074,25233,25239,25240,25241,25280,25286,25306,25402,25610,25667,25822,26030,26031,26525,26555,26567,26583,26635,26636,26638,26639,26640,26642,26644,26879,26984,27057,27059,27061,27068,27069,27121,27149,27165,27174,27284,27387,27413,27422,27424,27507,27675,27707,27839,28006,28203,28356,28649,28655,28743,28745,29228,29352,29773,29976,29985,30146,30225,30712,30714,30735,30755,30862,30863,30883,30892,30910,31027,31088]]],["+",[10,10,[[39,2,2,0,2,[[933,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]],[43,4,4,4,8,[[1019,1,1,4,5],[1024,2,2,5,7],[1033,1,1,7,8]]],[57,2,2,8,10,[[1133,1,1,8,9],[1142,1,1,9,10]]]],[23269,23916,24709,25822,26984,27121,27165,27507,29976,30146]]],["feet",[75,70,[[39,6,6,0,6,[[935,1,1,0,1],[938,1,1,1,2],[943,1,1,2,3],[946,2,2,3,5],[956,1,1,5,6]]],[40,4,4,6,10,[[961,1,1,6,7],[962,1,1,7,8],[963,1,1,8,9],[965,1,1,9,10]]],[41,16,13,10,23,[[973,1,1,10,11],[979,7,4,11,15],[980,2,2,15,17],[981,1,1,17,18],[982,1,1,18,19],[987,1,1,19,20],[989,1,1,20,21],[996,2,2,21,23]]],[42,13,11,23,34,[[1007,2,2,23,25],[1008,2,1,25,26],[1009,8,7,26,33],[1016,1,1,33,34]]],[43,15,15,34,49,[[1021,2,2,34,36],[1022,3,3,36,39],[1024,2,2,39,41],[1027,1,1,41,42],[1030,2,2,42,44],[1031,2,2,44,46],[1038,1,1,46,47],[1039,1,1,47,48],[1043,1,1,48,49]]],[44,3,3,49,52,[[1048,1,1,49,50],[1055,1,1,50,51],[1061,1,1,51,52]]],[45,3,3,52,55,[[1073,1,1,52,53],[1076,2,2,53,55]]],[48,2,2,55,57,[[1097,1,1,55,56],[1102,1,1,56,57]]],[53,1,1,57,58,[[1123,1,1,57,58]]],[57,2,2,58,60,[[1134,1,1,58,59],[1144,1,1,59,60]]],[65,10,10,60,70,[[1167,2,2,60,62],[1168,1,1,62,63],[1169,1,1,63,64],[1176,1,1,64,65],[1177,1,1,65,66],[1178,1,1,66,67],[1179,1,1,67,68],[1185,1,1,68,69],[1188,1,1,69,70]]]],[23322,23431,23663,23735,23756,24204,24386,24418,24488,24583,24972,25233,25239,25240,25241,25280,25286,25306,25402,25610,25667,26030,26031,26525,26555,26583,26635,26636,26638,26639,26640,26642,26644,26879,27057,27059,27061,27068,27069,27149,27174,27284,27387,27413,27422,27424,27675,27707,27839,28006,28203,28356,28655,28743,28745,29228,29352,29773,29985,30225,30712,30714,30735,30755,30862,30883,30892,30910,31027,31088]]],["foot",[8,8,[[39,3,3,0,3,[[932,1,1,0,1],[946,1,1,1,2],[950,1,1,2,3]]],[40,1,1,3,4,[[965,1,1,3,4]]],[41,1,1,4,5,[[976,1,1,4,5]]],[42,1,1,5,6,[[1007,1,1,5,6]]],[45,1,1,6,7,[[1073,1,1,6,7]]],[65,1,1,7,8,[[1176,1,1,7,8]]]],[23215,23735,23885,24583,25074,26567,28649,30863]]]]},{"k":"G4229","v":[["*",[11,11,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]],[44,1,1,3,4,[[1061,1,1,3,4]]],[45,1,1,4,5,[[1067,1,1,4,5]]],[46,1,1,5,6,[[1084,1,1,5,6]]],[51,1,1,6,7,[[1114,1,1,6,7]]],[57,3,3,7,10,[[1138,1,1,7,8],[1142,1,1,8,9],[1143,1,1,9,10]]],[58,1,1,10,11,[[1148,1,1,10,11]]]],[23746,24894,27063,28338,28468,28927,29609,30062,30134,30173,30335]]],["business",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28338]]],["matter",[3,3,[[45,1,1,0,1,[[1067,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]]],[28468,28927,29609]]],["thing",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[23746,27063]]],["things",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[57,3,3,1,4,[[1138,1,1,1,2],[1142,1,1,2,3],[1143,1,1,3,4]]]],[24894,30062,30134,30173]]],["work",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30335]]]]},{"k":"G4230","v":[["affairs",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29831]]]]},{"k":"G4231","v":[["Occupy",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25744]]]]},{"k":"G4232","v":[["*",[8,7,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,4,3,2,5,[[1014,3,2,2,4],[1015,1,1,4,5]]],[43,1,1,5,6,[[1040,1,1,5,6]]],[49,1,1,6,7,[[1103,1,1,6,7]]]],[24156,24842,26813,26818,26834,27769,29374]]],["Praetorium",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24842]]],["hall",[5,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,3,3,1,4,[[1014,2,2,1,3],[1015,1,1,3,4]]],[43,1,1,4,5,[[1040,1,1,4,5]]]],[24156,26813,26818,26834,27769]]],["judgment",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26813]]],["palace",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29374]]]]},{"k":"G4233","v":[["officer",[2,1,[[41,2,1,0,1,[[984,2,1,0,1]]]],[25517]]]]},{"k":"G4234","v":[["*",[6,6,[[39,1,1,0,1,[[944,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]],[43,1,1,2,3,[[1036,1,1,2,3]]],[44,2,2,3,5,[[1053,1,1,3,4],[1057,1,1,4,5]]],[50,1,1,5,6,[[1109,1,1,5,6]]]],[23699,25986,27603,28129,28249,29526]]],["deed",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25986]]],["deeds",[3,3,[[43,1,1,0,1,[[1036,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]]],[27603,28129,29526]]],["office",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28249]]],["works",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23699]]]]},{"k":"G4235","v":[["meek",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23488]]]]},{"k":"G4236","v":[["*",[9,9,[[45,1,1,0,1,[[1065,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]],[47,2,2,2,4,[[1095,1,1,2,3],[1096,1,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]],[50,1,1,5,6,[[1109,1,1,5,6]]],[53,1,1,6,7,[[1124,1,1,6,7]]],[54,1,1,7,8,[[1126,1,1,7,8]]],[55,1,1,8,9,[[1131,1,1,8,9]]]],[28454,28972,29185,29189,29274,29529,29799,29852,29925]]],["Meekness",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29185]]],["meekness",[8,8,[[45,1,1,0,1,[[1065,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]],[47,1,1,2,3,[[1096,1,1,2,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]],[53,1,1,5,6,[[1124,1,1,5,6]]],[54,1,1,6,7,[[1126,1,1,6,7]]],[55,1,1,7,8,[[1131,1,1,7,8]]]],[28454,28972,29189,29274,29529,29799,29852,29925]]]]},{"k":"G4237","v":[["+",[2,1,[[40,2,1,0,1,[[962,2,1,0,1]]]],[24447]]]]},{"k":"G4238","v":[["*",[38,36,[[41,6,5,0,5,[[975,1,1,0,1],[991,1,1,1,2],[994,1,1,2,3],[995,3,2,3,5]]],[42,2,2,5,7,[[999,1,1,5,6],[1001,1,1,6,7]]],[43,13,13,7,20,[[1020,1,1,7,8],[1022,1,1,8,9],[1032,1,1,9,10],[1033,1,1,10,11],[1034,1,1,11,12],[1036,2,2,12,14],[1042,2,2,14,16],[1043,4,4,16,20]]],[44,10,9,20,29,[[1046,2,1,20,21],[1047,4,4,21,25],[1052,2,2,25,27],[1054,1,1,27,28],[1058,1,1,28,29]]],[45,1,1,29,30,[[1070,1,1,29,30]]],[46,2,2,30,32,[[1082,1,1,30,31],[1089,1,1,31,32]]],[47,1,1,32,33,[[1095,1,1,32,33]]],[48,1,1,33,34,[[1102,1,1,33,34]]],[49,1,1,34,35,[[1106,1,1,34,35]]],[51,1,1,35,36,[[1114,1,1,35,36]]]],[25038,25754,25887,25950,25976,26140,26239,27013,27094,27471,27511,27530,27604,27621,27807,27821,27832,27843,27849,27854,27962,27963,27964,27965,27987,28106,28110,28166,28270,28557,28887,29043,29183,29358,29451,29614]]],["+",[3,3,[[41,2,2,0,2,[[991,1,1,0,1],[995,1,1,1,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]]],[25754,25976,29614]]],["Do",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27511]]],["Exact",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25038]]],["commit",[2,2,[[44,2,2,0,2,[[1046,1,1,0,1],[1047,1,1,1,2]]]],[27962,27964]]],["committed",[3,3,[[43,2,2,0,2,[[1042,2,2,0,2]]],[46,1,1,2,3,[[1089,1,1,2,3]]]],[27807,27821,29043]]],["did",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27013]]],["do",[15,15,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,6,6,1,7,[[1022,1,1,1,2],[1032,1,1,2,3],[1034,1,1,3,4],[1036,1,1,4,5],[1043,2,2,5,7]]],[44,4,4,7,11,[[1046,1,1,7,8],[1047,1,1,8,9],[1052,2,2,9,11]]],[45,1,1,11,12,[[1070,1,1,11,12]]],[47,1,1,12,13,[[1095,1,1,12,13]]],[48,1,1,13,14,[[1102,1,1,13,14]]],[49,1,1,14,15,[[1106,1,1,14,15]]]],[25887,27094,27471,27530,27621,27832,27843,27962,27965,28106,28110,28557,29183,29358,29451]]],["doest",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27963]]],["doeth",[3,3,[[42,1,1,0,1,[[999,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[44,1,1,2,3,[[1058,1,1,2,3]]]],[26140,27854,28270]]],["done",[6,6,[[41,2,2,0,2,[[995,2,2,0,2]]],[42,1,1,2,3,[[1001,1,1,2,3]]],[43,1,1,3,4,[[1043,1,1,3,4]]],[44,1,1,4,5,[[1054,1,1,4,5]]],[46,1,1,5,6,[[1082,1,1,5,6]]]],[25950,25976,26239,27849,28166,28887]]],["keep",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27987]]],["used",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27604]]]]},{"k":"G4239","v":[["meek",[3,3,[[39,2,2,0,2,[[933,1,1,0,1],[949,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[23239,23831,30428]]]]},{"k":"G4240","v":[["meekness",[3,3,[[58,2,2,0,2,[[1146,1,1,0,1],[1148,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[30287,30332,30439]]]]},{"k":"G4241","v":[["*",[7,7,[[39,1,1,0,1,[[931,1,1,0,1]]],[45,1,1,1,2,[[1072,1,1,1,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]],[53,1,1,3,4,[[1120,1,1,3,4]]],[55,1,1,4,5,[[1130,1,1,4,5]]],[57,2,2,5,7,[[1134,1,1,5,6],[1139,1,1,6,7]]]],[23207,28613,29307,29726,29909,29987,30090]]],["became",[2,2,[[57,2,2,0,2,[[1134,1,1,0,1],[1139,1,1,1,2]]]],[29987,30090]]],["become",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29909]]],["becometh",[3,3,[[39,1,1,0,1,[[931,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]],[53,1,1,2,3,[[1120,1,1,2,3]]]],[23207,29307,29726]]],["comely",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28613]]]]},{"k":"G4242","v":[["*",[2,2,[[41,2,2,0,2,[[986,1,1,0,1],[991,1,1,1,2]]]],[25585,25745]]],["ambassage",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25585]]],["message",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25745]]]]},{"k":"G4243","v":[["*",[2,2,[[46,1,1,0,1,[[1082,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]]],[28897,29357]]],["ambassador",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29357]]],["ambassadors",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28897]]]]},{"k":"G4244","v":[["*",[3,3,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,1,1,1,2,[[1039,1,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]]],[25930,27709,29761]]],["elders",[2,2,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,1,1,1,2,[[1039,1,1,1,2]]]],[25930,27709]]],["presbytery",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29761]]]]},{"k":"G4245","v":[["*",[67,67,[[39,13,13,0,13,[[943,1,1,0,1],[944,1,1,1,2],[949,1,1,2,3],[954,4,4,3,7],[955,5,5,7,12],[956,1,1,12,13]]],[40,7,7,13,20,[[963,2,2,13,15],[964,1,1,15,16],[967,1,1,16,17],[970,2,2,17,19],[971,1,1,19,20]]],[41,5,5,20,25,[[979,1,1,20,21],[981,1,1,21,22],[987,1,1,22,23],[992,1,1,23,24],[994,1,1,24,25]]],[42,1,1,25,26,[[1004,1,1,25,26]]],[43,18,18,26,44,[[1019,1,1,26,27],[1021,3,3,27,30],[1023,1,1,30,31],[1028,1,1,31,32],[1031,1,1,32,33],[1032,5,5,33,38],[1033,1,1,38,39],[1037,1,1,39,40],[1038,1,1,40,41],[1040,1,1,41,42],[1041,1,1,42,43],[1042,1,1,43,44]]],[53,4,4,44,48,[[1123,4,4,44,48]]],[55,1,1,48,49,[[1129,1,1,48,49]]],[57,1,1,49,50,[[1143,1,1,49,50]]],[58,1,1,50,51,[[1150,1,1,50,51]]],[59,2,2,51,53,[[1155,2,2,51,53]]],[62,1,1,53,54,[[1164,1,1,53,54]]],[63,1,1,54,55,[[1165,1,1,54,55]]],[65,12,12,55,67,[[1170,2,2,55,57],[1171,5,5,57,62],[1173,2,2,62,64],[1177,1,1,64,65],[1180,1,1,65,66],[1185,1,1,66,67]]]],[23635,23693,23849,24057,24101,24111,24113,24130,24132,24141,24149,24170,24207,24466,24468,24531,24667,24797,24807,24827,25198,25323,25613,25780,25916,26390,26966,27027,27030,27045,27113,27337,27437,27444,27446,27448,27464,27465,27487,27643,27682,27748,27770,27811,29764,29765,29780,29782,29897,30174,30368,30466,30470,30646,30659,30772,30778,30784,30785,30787,30790,30793,30821,30823,30888,30929,31021]]],["elder",[6,6,[[41,1,1,0,1,[[987,1,1,0,1]]],[53,2,2,1,3,[[1123,2,2,1,3]]],[59,1,1,3,4,[[1155,1,1,3,4]]],[62,1,1,4,5,[[1164,1,1,4,5]]],[63,1,1,5,6,[[1165,1,1,5,6]]]],[25613,29764,29782,30470,30646,30659]]],["elders",[58,58,[[39,13,13,0,13,[[943,1,1,0,1],[944,1,1,1,2],[949,1,1,2,3],[954,4,4,3,7],[955,5,5,7,12],[956,1,1,12,13]]],[40,7,7,13,20,[[963,2,2,13,15],[964,1,1,15,16],[967,1,1,16,17],[970,2,2,17,19],[971,1,1,19,20]]],[41,4,4,20,24,[[979,1,1,20,21],[981,1,1,21,22],[992,1,1,22,23],[994,1,1,23,24]]],[43,17,17,24,41,[[1021,3,3,24,27],[1023,1,1,27,28],[1028,1,1,28,29],[1031,1,1,29,30],[1032,5,5,30,35],[1033,1,1,35,36],[1037,1,1,36,37],[1038,1,1,37,38],[1040,1,1,38,39],[1041,1,1,39,40],[1042,1,1,40,41]]],[53,1,1,41,42,[[1123,1,1,41,42]]],[55,1,1,42,43,[[1129,1,1,42,43]]],[57,1,1,43,44,[[1143,1,1,43,44]]],[58,1,1,44,45,[[1150,1,1,44,45]]],[59,1,1,45,46,[[1155,1,1,45,46]]],[65,12,12,46,58,[[1170,2,2,46,48],[1171,5,5,48,53],[1173,2,2,53,55],[1177,1,1,55,56],[1180,1,1,56,57],[1185,1,1,57,58]]]],[23635,23693,23849,24057,24101,24111,24113,24130,24132,24141,24149,24170,24207,24466,24468,24531,24667,24797,24807,24827,25198,25323,25780,25916,27027,27030,27045,27113,27337,27437,27444,27446,27448,27464,27465,27487,27643,27682,27748,27770,27811,29780,29897,30174,30368,30466,30772,30778,30784,30785,30787,30790,30793,30821,30823,30888,30929,31021]]],["eldest",[1,1,[[42,1,1,0,1,[[1004,1,1,0,1]]]],[26390]]],["men",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26966]]],["women",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29765]]]]},{"k":"G4246","v":[["*",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]]],[24911,29910,29947]]],["aged",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29947]]],["man",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24911]]],["men",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29910]]]]},{"k":"G4247","v":[["women",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29911]]]]},{"k":"G4248","v":[["headlong",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26941]]]]},{"k":"G4249","v":[["asunder",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30209]]]]},{"k":"G4250","v":[["*",[14,14,[[39,3,3,0,3,[[929,1,1,0,1],[954,2,2,1,3]]],[40,2,2,3,5,[[970,2,2,3,5]]],[41,3,3,5,8,[[974,1,1,5,6],[994,2,2,6,8]]],[42,3,3,8,11,[[1000,1,1,8,9],[1004,1,1,9,10],[1010,1,1,10,11]]],[43,3,3,11,14,[[1019,1,1,11,12],[1024,1,1,12,13],[1042,1,1,13,14]]]],[23162,24088,24129,24784,24826,24999,25898,25925,26205,26439,26697,26969,27118,27812]]],["+",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27118]]],["Before",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,1,1,3,4,[[1004,1,1,3,4]]]],[24129,24826,25925,26439]]],["before",[8,8,[[39,2,2,0,2,[[929,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,2,2,3,5,[[974,1,1,3,4],[994,1,1,4,5]]],[42,1,1,5,6,[[1010,1,1,5,6]]],[43,2,2,6,8,[[1019,1,1,6,7],[1042,1,1,7,8]]]],[23162,24088,24784,24999,25898,26697,26969,27812]]],["ere",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26205]]]]},{"k":"G4251","v":[["Prisca",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29889]]]]},{"k":"G4252","v":[["Priscilla",[5,5,[[43,3,3,0,3,[[1035,3,3,0,3]]],[44,1,1,3,4,[[1061,1,1,3,4]]],[45,1,1,4,5,[[1077,1,1,4,5]]]],[27559,27575,27583,28339,28795]]]]},{"k":"G4253","v":[["*",[46,46,[[39,5,5,0,5,[[933,1,1,0,1],[934,1,1,1,2],[936,1,1,2,3],[939,1,1,3,4],[952,1,1,4,5]]],[40,1,1,5,6,[[957,1,1,5,6]]],[41,8,8,6,14,[[973,1,1,6,7],[974,1,1,7,8],[979,1,1,8,9],[981,1,1,9,10],[982,1,1,10,11],[983,1,1,11,12],[993,1,1,12,13],[994,1,1,13,14]]],[42,9,9,14,23,[[997,1,1,14,15],[1001,1,1,15,16],[1006,1,1,16,17],[1007,1,1,17,18],[1008,1,1,18,19],[1009,2,2,19,21],[1013,2,2,21,23]]],[43,8,8,23,31,[[1022,2,2,23,25],[1029,2,2,25,27],[1030,1,1,27,28],[1031,1,1,28,29],[1038,1,1,29,30],[1040,1,1,30,31]]],[44,1,1,31,32,[[1061,1,1,31,32]]],[45,2,2,32,34,[[1063,1,1,32,33],[1065,1,1,33,34]]],[46,1,1,34,35,[[1089,1,1,34,35]]],[47,1,1,35,36,[[1091,1,1,35,36]]],[48,1,1,36,37,[[1097,1,1,36,37]]],[50,1,1,37,38,[[1107,1,1,37,38]]],[54,2,2,38,40,[[1125,1,1,38,39],[1128,1,1,39,40]]],[55,1,1,40,41,[[1129,1,1,40,41]]],[57,1,1,41,42,[[1143,1,1,41,42]]],[58,2,2,42,44,[[1150,2,2,42,44]]],[59,2,2,44,46,[[1151,1,1,44,45],[1154,1,1,45,46]]]],[23246,23290,23374,23469,23995,24217,24969,24994,25222,25353,25364,25443,25838,25879,26092,26217,26489,26578,26581,26631,26649,26764,26783,27082,27095,27343,27351,27386,27427,27702,27749,28343,28401,28438,29024,29074,29210,29482,29818,29891,29894,30177,30363,30366,30394,30454]]],["Before",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26092]]],["above",[3,3,[[46,1,1,0,1,[[1089,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[29024,30366,30454]]],["before",[41,41,[[39,5,5,0,5,[[933,1,1,0,1],[934,1,1,1,2],[936,1,1,2,3],[939,1,1,3,4],[952,1,1,4,5]]],[40,1,1,5,6,[[957,1,1,5,6]]],[41,8,8,6,14,[[973,1,1,6,7],[974,1,1,7,8],[979,1,1,8,9],[981,1,1,9,10],[982,1,1,10,11],[983,1,1,11,12],[993,1,1,12,13],[994,1,1,13,14]]],[42,8,8,14,22,[[1001,1,1,14,15],[1006,1,1,15,16],[1007,1,1,16,17],[1008,1,1,17,18],[1009,2,2,18,20],[1013,2,2,20,22]]],[43,7,7,22,29,[[1022,2,2,22,24],[1029,2,2,24,26],[1030,1,1,26,27],[1031,1,1,27,28],[1038,1,1,28,29]]],[44,1,1,29,30,[[1061,1,1,29,30]]],[45,2,2,30,32,[[1063,1,1,30,31],[1065,1,1,31,32]]],[47,1,1,32,33,[[1091,1,1,32,33]]],[48,1,1,33,34,[[1097,1,1,33,34]]],[50,1,1,34,35,[[1107,1,1,34,35]]],[54,2,2,35,37,[[1125,1,1,35,36],[1128,1,1,36,37]]],[55,1,1,37,38,[[1129,1,1,37,38]]],[57,1,1,38,39,[[1143,1,1,38,39]]],[58,1,1,39,40,[[1150,1,1,39,40]]],[59,1,1,40,41,[[1151,1,1,40,41]]]],[23246,23290,23374,23469,23995,24217,24969,24994,25222,25353,25364,25443,25838,25879,26217,26489,26578,26581,26631,26649,26764,26783,27082,27095,27343,27351,27386,27427,27702,28343,28401,28438,29074,29210,29482,29818,29891,29894,30177,30363,30394]]],["ever",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27749]]]]},{"k":"G4254","v":[["*",[18,18,[[39,6,6,0,6,[[930,1,1,0,1],[942,1,1,1,2],[949,2,2,2,4],[954,1,1,4,5],[956,1,1,5,6]]],[40,5,5,6,11,[[962,1,1,6,7],[966,1,1,7,8],[967,1,1,8,9],[970,1,1,9,10],[972,1,1,10,11]]],[41,1,1,11,12,[[990,1,1,11,12]]],[43,3,3,12,15,[[1029,1,1,12,13],[1033,1,1,13,14],[1042,1,1,14,15]]],[53,2,2,15,17,[[1119,1,1,15,16],[1123,1,1,16,17]]],[57,1,1,17,18,[[1139,1,1,17,18]]]],[23178,23619,23835,23857,24086,24202,24452,24620,24649,24782,24880,25727,27343,27513,27822,29714,29787,30082]]],["+",[5,5,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[966,1,1,2,3]]],[43,2,2,3,5,[[1029,1,1,3,4],[1042,1,1,4,5]]]],[23857,24452,24620,27343,27822]]],["before",[12,12,[[39,5,5,0,5,[[930,1,1,0,1],[942,1,1,1,2],[949,1,1,2,3],[954,1,1,3,4],[956,1,1,4,5]]],[40,3,3,5,8,[[967,1,1,5,6],[970,1,1,6,7],[972,1,1,7,8]]],[41,1,1,8,9,[[990,1,1,8,9]]],[53,2,2,9,11,[[1119,1,1,9,10],[1123,1,1,10,11]]],[57,1,1,11,12,[[1139,1,1,11,12]]]],[23178,23619,23835,24086,24202,24649,24782,24880,25727,29714,29787,30082]]],["brought",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27513]]]]},{"k":"G4255","v":[["purposeth",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28963]]]]},{"k":"G4256","v":[["proved",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28000]]]]},{"k":"G4257","v":[["before",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29470]]]]},{"k":"G4258","v":[["*",[2,2,[[46,2,2,0,2,[[1089,1,1,0,1],[1090,1,1,1,2]]]],[29043,29045]]],["already",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29043]]],["sinned",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29045]]]]},{"k":"G4259","v":[["porch",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24822]]]]},{"k":"G4260","v":[["*",[5,5,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,3,3,2,5,[[973,2,2,2,4],[974,1,1,4,5]]]],[23230,24234,24900,24911,25009]]],["+",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25009]]],["gone",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24234]]],["on",[1,1,[[39,1,1,0,1,[[932,1,1,0,1]]]],[23230]]],["stricken",[2,2,[[41,2,2,0,2,[[973,2,2,0,2]]]],[24900,24911]]]]},{"k":"G4261","v":[["*",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[25856,27618]]],["+",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27618]]],["forth",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25856]]]]},{"k":"G4262","v":[["sheep",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26212]]]]},{"k":"G4263","v":[["*",[41,37,[[39,11,11,0,11,[[935,1,1,0,1],[937,1,1,1,2],[938,2,2,2,4],[940,2,2,4,6],[943,1,1,6,7],[946,1,1,7,8],[953,2,2,8,10],[954,1,1,10,11]]],[40,2,2,11,13,[[962,1,1,11,12],[970,1,1,12,13]]],[41,2,2,13,15,[[987,2,2,13,15]]],[42,21,17,15,32,[[998,2,2,15,17],[1006,17,13,17,30],[1017,2,2,30,32]]],[43,1,1,32,33,[[1025,1,1,32,33]]],[44,1,1,33,34,[[1053,1,1,33,34]]],[57,1,1,34,35,[[1145,1,1,34,35]]],[59,1,1,35,36,[[1152,1,1,35,36]]],[65,1,1,36,37,[[1184,1,1,36,37]]]],[23331,23415,23423,23433,23500,23501,23657,23739,24040,24041,24085,24441,24781,25592,25594,26109,26110,26482,26483,26484,26485,26488,26489,26492,26493,26494,26496,26497,26507,26508,26914,26915,27208,28152,30261,30424,31006]]],["+",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26482]]],["sheep",[39,35,[[39,10,10,0,10,[[937,1,1,0,1],[938,2,2,1,3],[940,2,2,3,5],[943,1,1,5,6],[946,1,1,6,7],[953,2,2,7,9],[954,1,1,9,10]]],[40,2,2,10,12,[[962,1,1,10,11],[970,1,1,11,12]]],[41,2,2,12,14,[[987,2,2,12,14]]],[42,20,16,14,30,[[998,2,2,14,16],[1006,16,12,16,28],[1017,2,2,28,30]]],[43,1,1,30,31,[[1025,1,1,30,31]]],[44,1,1,31,32,[[1053,1,1,31,32]]],[57,1,1,32,33,[[1145,1,1,32,33]]],[59,1,1,33,34,[[1152,1,1,33,34]]],[65,1,1,34,35,[[1184,1,1,34,35]]]],[23415,23423,23433,23500,23501,23657,23739,24040,24041,24085,24441,24781,25592,25594,26109,26110,26483,26484,26485,26488,26489,26492,26493,26494,26496,26497,26507,26508,26914,26915,27208,28152,30261,30424,31006]]],["sheep's",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23331]]]]},{"k":"G4264","v":[["*",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[23605,27618]]],["drew",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27618]]],["instructed",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23605]]]]},{"k":"G4265","v":[["provided",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30212]]]]},{"k":"G4266","v":[["past",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28016]]]]},{"k":"G4267","v":[["*",[5,5,[[43,1,1,0,1,[[1043,1,1,0,1]]],[44,2,2,1,3,[[1053,1,1,1,2],[1056,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]],[60,1,1,4,5,[[1158,1,1,4,5]]]],[27828,28145,28211,30394,30539]]],["+",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28211]]],["before",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30539]]],["foreknow",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28145]]],["foreordained",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30394]]],["knew",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27828]]]]},{"k":"G4268","v":[["foreknowledge",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[26972,30376]]]]},{"k":"G4269","v":[["*",[2,2,[[53,1,1,0,1,[[1123,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]]],[29767,29812]]],["forefathers",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29812]]],["parents",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29767]]]]},{"k":"G4270","v":[["*",[5,4,[[44,2,1,0,1,[[1060,2,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]],[48,1,1,2,3,[[1099,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[28307,29103,29254,30676]]],["+",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30676]]],["afore",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29254]]],["aforetime",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28307]]],["forth",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29103]]],["written",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28307]]]]},{"k":"G4271","v":[["*",[3,3,[[53,2,2,0,2,[[1123,2,2,0,2]]],[57,1,1,2,3,[[1139,1,1,2,3]]]],[29787,29788,30078]]],["beforehand",[2,2,[[53,2,2,0,2,[[1123,2,2,0,2]]]],[29787,29788]]],["evident",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30078]]]]},{"k":"G4272","v":[["given",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28244]]]]},{"k":"G4273","v":[["*",[3,3,[[41,1,1,0,1,[[978,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[54,1,1,2,3,[[1127,1,1,2,3]]]],[25162,27168,29857]]],["Traitors",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29857]]],["betrayers",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27168]]],["traitor",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25162]]]]},{"k":"G4274","v":[["forerunner",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30064]]]]},{"k":"G4275","v":[["*",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]]],[26980,29110]]],["before",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26980]]],["foreseeing",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29110]]]]},{"k":"G4276","v":[["trusted",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29218]]]]},{"k":"G4277","v":[["*",[3,3,[[43,1,1,0,1,[[1018,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]]],[26939,29183,29609]]],["before",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26939]]],["forewarned",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29609]]],["past",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29183]]]]},{"k":"G4278","v":[["*",[2,2,[[46,2,2,0,2,[[1085,2,2,0,2]]]],[28938,28942]]],["before",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28942]]],["begun",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28938]]]]},{"k":"G4279","v":[["afore",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27932]]]]},{"k":"G4280","v":[["*",[9,9,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]],[46,2,2,3,5,[[1084,1,1,3,4],[1090,1,1,4,5]]],[47,1,1,5,6,[[1091,1,1,5,6]]],[57,1,1,6,7,[[1142,1,1,6,7]]],[60,1,1,7,8,[[1158,1,1,7,8]]],[64,1,1,8,9,[[1166,1,1,8,9]]]],[23982,24740,28184,28919,29045,29066,30148,30524,30689]]],["+",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23982]]],["before",[7,7,[[44,1,1,0,1,[[1054,1,1,0,1]]],[46,2,2,1,3,[[1084,1,1,1,2],[1090,1,1,2,3]]],[47,1,1,3,4,[[1091,1,1,3,4]]],[57,1,1,4,5,[[1142,1,1,4,5]]],[60,1,1,5,6,[[1158,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[28184,28919,29045,29066,30148,30524,30689]]],["foretold",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24740]]]]},{"k":"G4281","v":[["*",[9,9,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[970,1,1,2,3]]],[41,2,2,3,5,[[973,1,1,3,4],[994,1,1,4,5]]],[43,3,3,5,8,[[1029,1,1,5,6],[1037,2,2,6,8]]],[46,1,1,8,9,[[1086,1,1,8,9]]]],[24093,24440,24789,24910,25911,27347,27631,27639,28961]]],["before",[4,4,[[41,1,1,0,1,[[994,1,1,0,1]]],[43,2,2,1,3,[[1037,2,2,1,3]]],[46,1,1,3,4,[[1086,1,1,3,4]]]],[25911,27631,27639,28961]]],["forward",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24789]]],["go",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24910]]],["on",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27347]]],["outwent",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24440]]],["went",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24093]]]]},{"k":"G4282","v":[["*",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]]],[28178,29239]]],["ordained",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29239]]],["prepared",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28178]]]]},{"k":"G4283","v":[["gospel",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29110]]]]},{"k":"G4284","v":[["better",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28000]]]]},{"k":"G4285","v":[["preferring",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28255]]]]},{"k":"G4286","v":[["*",[12,12,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[43,2,2,3,5,[[1028,1,1,3,4],[1044,1,1,4,5]]],[44,2,2,5,7,[[1053,1,1,5,6],[1054,1,1,6,7]]],[48,2,2,7,9,[[1097,1,1,7,8],[1099,1,1,8,9]]],[54,2,2,9,11,[[1125,1,1,9,10],[1127,1,1,10,11]]],[57,1,1,11,12,[[1141,1,1,11,12]]]],[23493,24286,25150,27330,27868,28144,28166,29217,29262,29818,29863,30107]]],["+",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[57,1,1,3,4,[[1141,1,1,3,4]]]],[23493,24286,25150,30107]]],["purpose",[8,8,[[43,2,2,0,2,[[1028,1,1,0,1],[1044,1,1,1,2]]],[44,2,2,2,4,[[1053,1,1,2,3],[1054,1,1,3,4]]],[48,2,2,4,6,[[1097,1,1,4,5],[1099,1,1,5,6]]],[54,2,2,6,8,[[1125,1,1,6,7],[1127,1,1,7,8]]]],[27330,27868,28144,28166,29217,29262,29818,29863]]]]},{"k":"G4287","v":[["appointed",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29133]]]]},{"k":"G4288","v":[["*",[5,5,[[43,1,1,0,1,[[1034,1,1,0,1]]],[46,4,4,1,5,[[1085,3,3,1,4],[1086,1,1,4,5]]]],[27534,28943,28944,28951,28958]]],["+",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28958]]],["mind",[3,3,[[43,1,1,0,1,[[1034,1,1,0,1]]],[46,2,2,1,3,[[1085,2,2,1,3]]]],[27534,28944,28951]]],["readiness",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28943]]]]},{"k":"G4289","v":[["*",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]]],[24095,24792,27945]]],["ready",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]]],[24792,27945]]],["willing",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24095]]]]},{"k":"G4290","v":[["mind",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30467]]]]},{"k":"G4291","v":[["*",[8,8,[[44,1,1,0,1,[[1057,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]],[53,4,4,2,6,[[1121,3,3,2,5],[1123,1,1,5,6]]],[55,2,2,6,8,[[1131,2,2,6,8]]]],[28253,29633,29735,29736,29743,29780,29931,29937]]],["maintain",[2,2,[[55,2,2,0,2,[[1131,2,2,0,2]]]],[29931,29937]]],["over",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29633]]],["rule",[2,2,[[53,2,2,0,2,[[1121,1,1,0,1],[1123,1,1,1,2]]]],[29736,29780]]],["ruleth",[2,2,[[44,1,1,0,1,[[1057,1,1,0,1]]],[53,1,1,1,2,[[1121,1,1,1,2]]]],[28253,29735]]],["ruling",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29743]]]]},{"k":"G4292","v":[["provoking",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29188]]]]},{"k":"G4293","v":[["*",[4,4,[[43,3,3,0,3,[[1020,2,2,0,2],[1024,1,1,2,3]]],[46,1,1,3,4,[[1086,1,1,3,4]]]],[27014,27020,27168,28961]]],["before",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[46,1,1,1,2,[[1086,1,1,1,2]]]],[27168,28961]]],["foretold",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27020]]],["shewed",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27014]]]]},{"k":"G4294","v":[["beforehand",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28961]]]]},{"k":"G4295","v":[["*",[5,5,[[46,1,1,0,1,[[1085,1,1,0,1]]],[57,3,3,1,4,[[1138,1,1,1,2],[1144,2,2,2,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[28944,30062,30213,30214,30679]]],["before",[3,3,[[57,3,3,0,3,[[1138,1,1,0,1],[1144,2,2,1,3]]]],[30062,30213,30214]]],["first",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28944]]],["forth",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30679]]]]},{"k":"G4296","v":[["preached",[2,2,[[43,2,2,0,2,[[1020,1,1,0,1],[1030,1,1,1,2]]]],[27016,27386]]]]},{"k":"G4297","v":[["*",[3,3,[[49,2,2,0,2,[[1103,2,2,0,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]]],[29373,29386,29762]]],["furtherance",[2,2,[[49,2,2,0,2,[[1103,2,2,0,2]]]],[29373,29386]]],["profiting",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29762]]]]},{"k":"G4298","v":[["*",[6,6,[[41,1,1,0,1,[[974,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]],[47,1,1,2,3,[[1091,1,1,2,3]]],[54,3,3,3,6,[[1126,1,1,3,4],[1127,2,2,4,6]]]],[25025,28278,29071,29843,29862,29866]]],["+",[2,2,[[44,1,1,0,1,[[1058,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[28278,29866]]],["increase",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29843]]],["increased",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25025]]],["proceed",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29862]]],["profited",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29071]]]]},{"k":"G4299","v":[["another",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29784]]]]},{"k":"G4300","v":[["before",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29119]]]]},{"k":"G4301","v":[["*",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[45,1,1,1,2,[[1072,1,1,1,2]]],[47,1,1,2,3,[[1096,1,1,2,3]]]],[24762,28621,29189]]],["aforehand",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24762]]],["before",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28621]]],["overtaken",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29189]]]]},{"k":"G4302","v":[["*",[3,3,[[46,1,1,0,1,[[1090,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[51,1,1,2,3,[[1113,1,1,2,3]]]],[29045,29183,29594]]],["+",[2,2,[[47,1,1,0,1,[[1095,1,1,0,1]]],[51,1,1,1,2,[[1113,1,1,1,2]]]],[29183,29594]]],["foretell",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29045]]]]},{"k":"G4303","v":[["beforehand",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30385]]]]},{"k":"G4304","v":[["before",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25840]]]]},{"k":"G4305","v":[["+",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24728]]]]},{"k":"G4306","v":[["*",[3,3,[[44,1,1,0,1,[[1057,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]]],[28262,28953,29771]]],["+",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29771]]],["Provide",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28262]]],["for",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28953]]]]},{"k":"G4307","v":[["*",[2,2,[[43,1,1,0,1,[[1041,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]]],[27771,28280]]],["providence",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27771]]],["provision",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28280]]]]},{"k":"G4308","v":[["*",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1038,1,1,1,2]]]],[26974,27693]]],["before",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27693]]],["foresaw",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26974]]]]},{"k":"G4309","v":[["*",[6,6,[[43,1,1,0,1,[[1021,1,1,0,1]]],[44,2,2,1,3,[[1053,2,2,1,3]]],[45,1,1,3,4,[[1063,1,1,3,4]]],[48,2,2,4,6,[[1097,2,2,4,6]]]],[27050,28145,28146,28401,29211,29217]]],["before",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27050]]],["ordained",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28401]]],["predestinate",[2,2,[[44,2,2,0,2,[[1053,2,2,0,2]]]],[28145,28146]]],["predestinated",[2,2,[[48,2,2,0,2,[[1097,2,2,0,2]]]],[29211,29217]]]]},{"k":"G4310","v":[["before",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29572]]]]},{"k":"G4311","v":[["*",[9,9,[[43,3,3,0,3,[[1032,1,1,0,1],[1037,1,1,1,2],[1038,1,1,2,3]]],[44,1,1,3,4,[[1060,1,1,3,4]]],[45,2,2,4,6,[[1077,2,2,4,6]]],[46,1,1,6,7,[[1078,1,1,6,7]]],[55,1,1,7,8,[[1131,1,1,7,8]]],[63,1,1,8,9,[[1165,1,1,8,9]]]],[27445,27664,27669,28327,28782,28787,28816,29936,30664]]],["+",[4,4,[[43,1,1,0,1,[[1038,1,1,0,1]]],[45,2,2,1,3,[[1077,2,2,1,3]]],[55,1,1,3,4,[[1131,1,1,3,4]]]],[27669,28782,28787,29936]]],["accompanied",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27664]]],["journey",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30664]]],["way",[3,3,[[43,1,1,0,1,[[1032,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[46,1,1,2,3,[[1078,1,1,2,3]]]],[27445,28327,28816]]]]},{"k":"G4312","v":[["*",[2,2,[[43,1,1,0,1,[[1036,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[27621,29857]]],["heady",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29857]]],["rashly",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27621]]]]},{"k":"G4313","v":[["*",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[24969,27156]]],["before",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27156]]],["go",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24969]]]]},{"k":"G4314","v":[["*",[695,646,[[39,39,38,0,38,[[930,1,1,0,1],[931,5,5,1,6],[932,1,1,6,7],[935,1,1,7,8],[938,2,2,8,10],[939,1,1,10,11],[941,2,2,11,13],[942,3,3,13,16],[945,1,1,16,17],[947,2,2,17,19],[949,4,4,19,23],[951,2,2,23,25],[953,3,3,25,28],[954,7,6,28,34],[955,4,4,34,38]]],[40,66,64,38,102,[[957,6,6,38,44],[958,3,3,44,47],[959,4,4,47,51],[960,3,2,51,53],[961,4,4,53,57],[962,7,7,57,64],[963,3,3,64,67],[964,1,1,67,68],[965,9,8,68,76],[966,6,6,76,82],[967,5,5,82,87],[968,7,7,87,94],[970,5,5,94,99],[971,2,2,99,101],[972,1,1,101,102]]],[41,163,156,102,258,[[973,11,11,102,113],[974,5,5,113,118],[975,4,4,118,122],[976,9,8,122,130],[977,8,8,130,138],[978,4,4,138,142],[979,11,10,142,152],[980,7,7,152,159],[981,11,11,159,170],[982,4,4,170,174],[983,6,5,174,179],[984,9,8,179,187],[985,3,3,187,190],[986,9,8,190,198],[987,4,4,198,202],[988,5,4,202,206],[989,2,2,206,208],[990,7,7,208,215],[991,10,10,215,225],[992,9,9,225,234],[993,1,1,234,235],[994,6,6,235,241],[995,7,7,241,248],[996,11,10,248,258]]],[42,101,90,258,348,[[997,5,5,258,263],[998,1,1,263,264],[999,6,5,264,269],[1000,8,8,269,277],[1001,4,4,277,281],[1002,13,11,281,292],[1003,7,6,292,298],[1004,5,5,298,303],[1005,1,1,303,304],[1006,2,2,304,306],[1007,8,8,306,314],[1008,2,2,314,316],[1009,4,4,316,320],[1010,7,6,320,326],[1012,8,6,326,332],[1013,2,2,332,334],[1014,5,5,334,339],[1015,2,2,339,341],[1016,9,5,341,346],[1017,2,2,346,348]]],[43,137,125,348,473,[[1018,1,1,348,349],[1019,6,6,349,355],[1020,8,6,355,361],[1021,7,6,361,367],[1022,3,3,367,370],[1023,1,1,370,371],[1024,2,2,371,373],[1025,4,4,373,377],[1026,11,11,377,388],[1027,7,6,388,394],[1028,5,5,394,399],[1029,5,5,399,404],[1030,5,4,404,408],[1031,1,1,408,409],[1032,6,5,409,414],[1033,2,2,414,416],[1034,4,3,416,419],[1035,3,3,419,422],[1036,5,4,422,426],[1037,2,2,426,428],[1038,4,4,428,432],[1039,8,8,432,440],[1040,9,7,440,447],[1041,3,3,447,450],[1042,4,4,450,454],[1043,8,7,454,461],[1044,3,3,461,464],[1045,10,9,464,473]]],[44,18,17,473,490,[[1046,2,2,473,475],[1048,1,1,475,476],[1049,1,1,476,477],[1050,1,1,477,478],[1053,2,2,478,480],[1055,3,2,480,482],[1060,8,8,482,490]]],[45,24,23,490,513,[[1063,2,2,490,492],[1065,3,3,492,495],[1067,2,2,495,497],[1068,3,2,497,499],[1071,1,1,499,500],[1073,2,2,500,502],[1074,1,1,502,503],[1075,3,3,503,506],[1076,1,1,506,507],[1077,6,6,507,513]]],[46,32,32,513,545,[[1078,5,5,513,518],[1079,2,2,518,520],[1080,3,3,520,523],[1081,2,2,523,525],[1082,3,3,525,528],[1083,3,3,528,531],[1084,4,4,531,535],[1085,2,2,535,537],[1087,1,1,537,538],[1088,2,2,538,540],[1089,3,3,540,543],[1090,2,2,543,545]]],[47,9,7,545,552,[[1091,2,2,545,547],[1092,3,2,547,549],[1094,2,2,549,551],[1096,2,1,551,552]]],[48,15,11,552,563,[[1098,1,1,552,553],[1099,2,2,553,555],[1100,3,3,555,558],[1101,1,1,558,559],[1102,8,4,559,563]]],[49,4,4,563,567,[[1103,1,1,563,564],[1104,2,2,564,566],[1106,1,1,566,567]]],[50,6,6,567,573,[[1108,1,1,567,568],[1109,2,2,568,570],[1110,3,3,570,573]]],[51,12,11,573,584,[[1111,3,2,573,575],[1112,4,4,575,579],[1113,3,3,579,582],[1114,1,1,582,583],[1115,1,1,583,584]]],[52,3,3,584,587,[[1117,1,1,584,585],[1118,2,2,585,587]]],[53,4,4,587,591,[[1119,1,1,587,588],[1121,1,1,588,589],[1122,2,2,589,591]]],[54,7,4,591,595,[[1126,1,1,591,592],[1127,5,2,592,594],[1128,1,1,594,595]]],[55,5,4,595,599,[[1129,1,1,595,596],[1131,4,3,596,599]]],[56,3,3,599,602,[[1132,3,3,599,602]]],[57,19,19,602,621,[[1133,3,3,602,605],[1134,1,1,605,606],[1136,1,1,606,607],[1137,4,4,607,611],[1138,1,1,611,612],[1139,1,1,612,613],[1141,2,2,613,615],[1142,1,1,615,616],[1143,1,1,616,617],[1144,3,3,617,620],[1145,1,1,620,621]]],[58,2,2,621,623,[[1149,2,2,621,623]]],[59,3,3,623,626,[[1152,1,1,623,624],[1153,1,1,624,625],[1154,1,1,625,626]]],[60,2,2,626,628,[[1156,1,1,626,627],[1158,1,1,627,628]]],[61,8,6,628,634,[[1159,1,1,628,629],[1160,1,1,629,630],[1161,1,1,630,631],[1163,5,3,631,634]]],[62,3,2,634,636,[[1164,3,2,634,636]]],[63,1,1,636,637,[[1165,1,1,636,637]]],[65,9,9,637,646,[[1167,2,2,637,639],[1169,1,1,639,640],[1176,1,1,640,641],[1178,2,2,641,643],[1179,1,1,643,644],[1187,1,1,644,645],[1188,1,1,645,646]]]],[23181,23197,23202,23205,23206,23207,23215,23331,23423,23430,23487,23541,23595,23622,23625,23626,23714,23770,23776,23827,23858,23860,23863,23952,23955,24017,24044,24047,24068,24072,24094,24099,24109,24111,24133,24143,24148,24191,24220,24242,24247,24248,24255,24260,24262,24263,24273,24295,24296,24301,24319,24324,24364,24375,24379,24383,24386,24410,24432,24437,24440,24452,24455,24458,24464,24488,24494,24516,24548,24552,24554,24555,24557,24558,24571,24572,24589,24593,24595,24602,24614,24638,24641,24644,24647,24667,24671,24675,24677,24679,24680,24685,24686,24691,24758,24764,24803,24807,24808,24857,24869,24876,24906,24911,24912,24920,24921,24927,24936,24948,24954,24966,24973,24988,24993,25007,25021,25022,25034,25037,25038,25039,25067,25074,25084,25086,25089,25099,25103,25106,25111,25117,25129,25137,25138,25140,25141,25143,25149,25155,25157,25193,25198,25199,25201,25202,25214,25215,25219,25235,25239,25245,25249,25258,25264,25266,25267,25270,25280,25304,25314,25315,25324,25334,25342,25344,25351,25358,25360,25363,25365,25386,25389,25392,25406,25410,25411,25444,25458,25460,25462,25474,25475,25481,25500,25506,25517,25525,25541,25552,25556,25559,25560,25576,25578,25579,25581,25585,25591,25606,25608,25610,25621,25640,25646,25650,25652,25673,25691,25695,25697,25699,25704,25719,25728,25736,25739,25740,25744,25760,25764,25766,25768,25770,25773,25781,25782,25784,25788,25789,25793,25798,25802,25820,25864,25879,25887,25909,25916,25920,25934,25939,25942,25947,25949,25950,25957,25963,25996,26001,26003,26005,26008,26009,26016,26020,26023,26035,26045,26046,26073,26086,26091,26098,26122,26124,26140,26141,26146,26171,26186,26189,26191,26196,26203,26204,26205,26243,26245,26250,26255,26262,26274,26285,26291,26292,26294,26301,26302,26309,26322,26325,26331,26361,26363,26365,26373,26378,26383,26384,26388,26412,26438,26453,26516,26522,26526,26527,26538,26542,26544,26552,26568,26569,26599,26612,26631,26633,26636,26658,26671,26674,26680,26686,26691,26696,26731,26733,26736,26742,26743,26754,26770,26772,26798,26801,26809,26814,26823,26849,26864,26869,26877,26878,26879,26884,26920,26921,26930,26956,26961,26978,26986,26987,26996,26998,27006,27007,27008,27018,27021,27023,27030,27037,27041,27045,27046,27068,27069,27094,27102,27119,27147,27190,27196,27200,27202,27218,27221,27222,27226,27227,27231,27243,27245,27248,27254,27256,27262,27272,27274,27280,27287,27292,27309,27310,27318,27327,27337,27342,27345,27352,27357,27358,27377,27393,27394,27398,27425,27444,27449,27467,27475,27478,27519,27520,27525,27538,27540,27563,27571,27578,27587,27588,27616,27623,27632,27644,27675,27682,27701,27703,27705,27709,27712,27714,27717,27719,27725,27729,27737,27749,27751,27752,27756,27758,27764,27781,27785,27788,27812,27815,27817,27818,27824,27829,27832,27837,27849,27851,27854,27858,27867,27889,27903,27907,27909,27916,27920,27922,27924,27925,27929,27940,27943,28017,28024,28048,28134,28147,28189,28209,28305,28320,28325,28326,28327,28332,28333,28335,28395,28397,28451,28452,28454,28468,28472,28492,28522,28578,28636,28641,28677,28684,28690,28704,28752,28781,28782,28783,28786,28787,28788,28812,28815,28816,28818,28820,28825,28840,28842,28845,28857,28861,28865,28885,28887,28889,28909,28912,28913,28919,28920,28924,28928,28949,28951,28975,28997,28998,29036,29039,29043,29044,29050,29074,29075,29086,29095,29149,29151,29198,29247,29255,29265,29284,29286,29301,29335,29346,29348,29349,29359,29387,29416,29421,29448,29517,29530,29536,29547,29550,29552,29568,29569,29571,29572,29587,29588,29594,29596,29601,29615,29635,29666,29679,29688,29712,29745,29754,29755,29851,29869,29870,29879,29908,29924,29925,29935,29943,29951,29953,29970,29971,29976,29994,30027,30031,30035,30037,30044,30055,30085,30118,30125,30149,30190,30216,30222,30223,30254,30342,30351,30403,30439,30458,30482,30538,30542,30551,30600,30638,30640,30641,30655,30657,30672,30710,30714,30766,30870,30896,30903,30914,31062,31098]]],["+",[24,24,[[40,3,3,0,3,[[960,1,1,0,1],[961,1,1,1,2],[964,1,1,2,3]]],[41,9,9,3,12,[[974,1,1,3,4],[976,1,1,4,5],[978,2,2,5,7],[980,1,1,7,8],[986,1,1,8,9],[996,3,3,9,12]]],[42,1,1,12,13,[[1000,1,1,12,13]]],[43,4,4,13,17,[[1019,2,2,13,15],[1043,1,1,15,16],[1045,1,1,16,17]]],[48,1,1,17,18,[[1099,1,1,17,18]]],[57,1,1,18,19,[[1133,1,1,18,19]]],[59,2,2,19,21,[[1153,1,1,19,20],[1154,1,1,20,21]]],[62,1,1,21,22,[[1164,1,1,21,22]]],[63,1,1,22,23,[[1165,1,1,22,23]]],[65,1,1,23,24,[[1167,1,1,23,24]]]],[24364,24383,24516,24988,25067,25149,25157,25270,25581,26005,26008,26023,26189,26956,26961,27854,27909,29255,29970,30439,30458,30657,30672,30710]]],["For",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[24593,29284]]],["Of",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30190]]],["To",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[24920,27812,28017,30403]]],["about",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24262]]],["according",[2,2,[[46,1,1,0,1,[[1082,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]]],[28887,29095]]],["against",[24,20,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,3,3,2,5,[[976,1,1,2,3],[977,1,1,3,4],[992,1,1,4,5]]],[43,8,8,5,13,[[1023,1,1,5,6],[1026,2,2,6,8],[1036,1,1,8,9],[1040,1,1,9,10],[1041,1,1,10,11],[1042,1,1,11,12],[1043,1,1,12,13]]],[45,1,1,13,14,[[1067,1,1,13,14]]],[48,6,2,14,16,[[1102,6,2,14,16]]],[50,2,2,16,18,[[1109,2,2,16,18]]],[57,1,1,18,19,[[1144,1,1,18,19]]],[65,1,1,19,20,[[1179,1,1,19,20]]]],[23215,24685,25074,25137,25798,27102,27221,27245,27623,27764,27788,27815,27837,28468,29348,29349,29530,29536,30216,30914]]],["among",[19,19,[[40,7,7,0,7,[[957,1,1,0,1],[965,2,2,1,3],[966,1,1,3,4],[968,1,1,4,5],[971,1,1,5,6],[972,1,1,6,7]]],[41,3,3,7,10,[[976,1,1,7,8],[992,1,1,8,9],[994,1,1,9,10]]],[42,5,5,10,15,[[1002,1,1,10,11],[1003,1,1,11,12],[1008,1,1,12,13],[1012,1,1,13,14],[1015,1,1,14,15]]],[43,3,3,15,18,[[1021,1,1,15,16],[1045,2,2,16,18]]],[46,1,1,18,19,[[1089,1,1,18,19]]]],[24242,24571,24572,24614,24680,24857,24876,25099,25793,25887,26309,26363,26599,26743,26849,27037,27903,27924,29043]]],["at",[15,14,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,5,5,1,6,[[957,1,1,1,2],[961,1,1,2,3],[963,1,1,3,4],[967,1,1,4,5],[970,1,1,5,6]]],[41,3,3,6,9,[[988,1,1,6,7],[991,2,2,7,9]]],[42,4,3,9,12,[[1014,1,1,9,10],[1016,3,2,10,12]]],[43,1,1,12,13,[[1020,1,1,12,13]]],[65,1,1,13,14,[[1167,1,1,13,14]]]],[24072,24248,24386,24488,24641,24808,25640,25760,25768,26801,26878,26879,26998,30714]]],["because",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23770]]],["before",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]],[44,1,1,2,3,[[1049,1,1,2,3]]]],[24452,27849,28024]]],["between",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25947]]],["by",[4,4,[[40,2,2,0,2,[[960,1,1,0,1],[967,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[43,1,1,3,4,[[1022,1,1,3,4]]]],[24324,24644,25920,27069]]],["for",[23,19,[[41,1,1,0,1,[[980,1,1,0,1]]],[42,2,2,1,3,[[1001,1,1,1,2],[1009,1,1,2,3]]],[43,3,3,3,6,[[1020,1,1,3,4],[1030,1,1,4,5],[1044,1,1,5,6]]],[45,4,3,6,9,[[1068,3,2,6,8],[1071,1,1,8,9]]],[46,2,2,9,11,[[1079,1,1,9,10],[1084,1,1,10,11]]],[47,1,1,11,12,[[1092,1,1,11,12]]],[51,1,1,12,13,[[1112,1,1,12,13]]],[53,1,1,13,14,[[1119,1,1,13,14]]],[54,4,1,14,15,[[1127,4,1,14,15]]],[56,1,1,15,16,[[1132,1,1,15,16]]],[57,2,2,16,18,[[1144,2,2,16,18]]],[58,1,1,18,19,[[1149,1,1,18,19]]]],[25258,26245,26658,27006,27377,27889,28492,28522,28578,28840,28924,29086,29587,29712,29869,29953,30222,30223,30351]]],["in",[3,3,[[41,2,2,0,2,[[984,1,1,0,1],[996,1,1,1,2]]],[61,1,1,2,3,[[1163,1,1,2,3]]]],[25462,26003,30638]]],["of",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25585]]],["pertain",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28320]]],["things",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29994]]],["to",[172,168,[[39,15,15,0,15,[[930,1,1,0,1],[931,2,2,1,3],[935,1,1,3,4],[938,2,2,4,6],[942,1,1,6,7],[945,1,1,7,8],[949,1,1,8,9],[953,1,1,9,10],[954,3,3,10,13],[955,2,2,13,15]]],[40,11,11,15,26,[[957,2,2,15,17],[959,1,1,17,18],[961,1,1,18,19],[965,1,1,19,20],[966,2,2,20,22],[967,2,2,22,24],[968,1,1,24,25],[970,1,1,25,26]]],[41,34,33,26,59,[[973,3,3,26,29],[978,1,1,29,30],[979,5,5,30,35],[980,3,3,35,38],[981,2,2,38,40],[983,1,1,40,41],[984,3,3,41,44],[986,3,3,44,47],[987,3,3,47,50],[988,2,1,50,51],[991,1,1,51,52],[992,2,2,52,54],[993,1,1,54,55],[994,1,1,55,56],[995,3,3,56,59]]],[42,40,37,59,96,[[997,2,2,59,61],[999,4,4,61,65],[1000,1,1,65,66],[1001,2,2,66,68],[1002,6,5,68,73],[1003,2,2,73,75],[1004,1,1,75,76],[1005,1,1,76,77],[1007,3,3,77,80],[1009,2,2,80,82],[1010,1,1,82,83],[1012,5,5,83,88],[1013,2,2,88,90],[1014,1,1,90,91],[1015,1,1,91,92],[1016,4,2,92,94],[1017,2,2,94,96]]],[43,27,27,96,123,[[1021,2,2,96,98],[1025,1,1,98,99],[1026,5,5,99,104],[1027,4,4,104,108],[1028,2,2,108,110],[1029,1,1,110,111],[1031,1,1,111,112],[1033,1,1,112,113],[1034,1,1,113,114],[1037,1,1,114,115],[1040,3,3,115,118],[1042,1,1,118,119],[1043,1,1,119,120],[1044,1,1,120,121],[1045,2,2,121,123]]],[44,7,7,123,130,[[1053,1,1,123,124],[1055,2,2,124,126],[1060,4,4,126,130]]],[45,8,8,130,138,[[1063,1,1,130,131],[1065,2,2,131,133],[1067,1,1,133,134],[1073,1,1,134,135],[1074,1,1,135,136],[1075,1,1,136,137],[1076,1,1,137,138]]],[46,15,15,138,153,[[1078,1,1,138,139],[1079,1,1,139,140],[1080,3,3,140,143],[1081,2,2,143,145],[1082,1,1,145,146],[1084,1,1,146,147],[1085,1,1,147,148],[1087,1,1,148,149],[1088,1,1,149,150],[1089,1,1,150,151],[1090,2,2,151,153]]],[47,1,1,153,154,[[1091,1,1,153,154]]],[48,1,1,154,155,[[1100,1,1,154,155]]],[49,2,2,155,157,[[1103,1,1,155,156],[1104,1,1,156,157]]],[50,1,1,157,158,[[1108,1,1,157,158]]],[51,2,2,158,160,[[1111,2,2,158,160]]],[55,1,1,160,161,[[1131,1,1,160,161]]],[57,5,5,161,166,[[1133,1,1,161,162],[1137,2,2,162,164],[1138,1,1,164,165],[1141,1,1,165,166]]],[58,1,1,166,167,[[1149,1,1,166,167]]],[65,1,1,167,168,[[1169,1,1,167,168]]]],[23181,23197,23206,23331,23423,23430,23626,23714,23860,24017,24072,24099,24111,24133,24143,24255,24260,24295,24379,24552,24595,24638,24647,24667,24675,24807,24936,24948,24966,25193,25199,25201,25214,25239,25245,25249,25264,25280,25315,25324,25411,25500,25506,25517,25559,25560,25579,25606,25608,25610,25646,25766,25788,25789,25864,25909,25939,25942,25950,26086,26091,26122,26140,26141,26146,26191,26250,26255,26274,26292,26294,26301,26325,26373,26378,26412,26453,26542,26568,26569,26633,26636,26686,26731,26736,26742,26743,26754,26770,26772,26798,26864,26869,26884,26920,26921,27045,27046,27200,27218,27226,27243,27248,27256,27262,27272,27280,27292,27310,27337,27357,27425,27519,27538,27644,27752,27756,27764,27817,27832,27867,27907,27922,28147,28189,28209,28305,28325,28327,28333,28395,28451,28452,28472,28641,28677,28690,28752,28812,28825,28842,28845,28857,28861,28865,28889,28919,28951,28975,28997,29036,29044,29050,29074,29301,29387,29416,29517,29568,29569,29924,29976,30031,30044,30055,30118,30342,30766]]],["toward",[10,10,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]],[46,2,2,2,4,[[1078,1,1,2,3],[1084,1,1,3,4]]],[49,1,1,4,5,[[1104,1,1,4,5]]],[50,1,1,5,6,[[1110,1,1,5,6]]],[51,2,2,6,8,[[1114,1,1,6,7],[1115,1,1,7,8]]],[56,1,1,8,9,[[1132,1,1,8,9]]],[61,1,1,9,10,[[1161,1,1,9,10]]]],[26020,27785,28818,28920,29421,29547,29615,29635,29943,30600]]],["unto",[339,327,[[39,19,19,0,19,[[931,3,3,0,3],[939,1,1,3,4],[941,1,1,4,5],[942,2,2,5,7],[947,1,1,7,8],[949,3,3,8,11],[951,2,2,11,13],[953,2,2,13,15],[954,2,2,15,17],[955,2,2,17,19]]],[40,27,27,19,46,[[957,2,2,19,21],[958,2,2,21,23],[959,3,3,23,26],[960,1,1,26,27],[961,1,1,27,28],[962,5,5,28,33],[963,2,2,33,35],[965,3,3,35,38],[966,2,2,38,40],[968,4,4,40,44],[970,1,1,44,45],[971,1,1,45,46]]],[41,100,97,46,143,[[973,7,7,46,53],[974,4,4,53,57],[975,4,4,57,61],[976,6,5,61,66],[977,7,7,66,73],[978,1,1,73,74],[979,6,5,74,79],[980,2,2,79,81],[981,8,8,81,89],[982,4,4,89,93],[983,5,4,93,97],[984,5,5,97,102],[985,3,3,102,105],[986,4,4,105,109],[987,1,1,109,110],[988,2,2,110,112],[989,2,2,112,114],[990,6,6,114,120],[991,7,7,120,127],[992,4,4,127,131],[994,3,3,131,134],[995,3,3,134,137],[996,6,6,137,143]]],[42,47,44,143,187,[[997,1,1,143,144],[998,1,1,144,145],[999,2,2,145,147],[1000,6,6,147,153],[1001,1,1,153,154],[1002,6,5,154,159],[1003,4,4,159,163],[1004,4,4,163,167],[1006,2,2,167,169],[1007,5,5,169,174],[1008,1,1,174,175],[1009,1,1,175,176],[1010,6,5,176,181],[1012,2,1,181,182],[1014,3,3,182,185],[1016,2,2,185,187]]],[43,81,79,187,266,[[1018,1,1,187,188],[1019,3,3,188,191],[1020,5,4,191,195],[1021,4,4,195,199],[1022,2,2,199,201],[1024,2,2,201,203],[1025,3,3,203,206],[1026,4,4,206,210],[1027,3,3,210,213],[1028,2,2,213,215],[1029,4,4,215,219],[1030,4,4,219,223],[1032,5,5,223,228],[1033,1,1,228,229],[1034,2,2,229,231],[1035,3,3,231,234],[1036,4,3,234,237],[1037,1,1,237,238],[1038,4,4,238,242],[1039,8,8,242,250],[1040,5,5,250,255],[1042,1,1,255,256],[1043,4,4,256,260],[1044,1,1,260,261],[1045,5,5,261,266]]],[44,6,6,266,272,[[1046,2,2,266,268],[1055,1,1,268,269],[1060,3,3,269,272]]],[45,7,7,272,279,[[1065,1,1,272,273],[1073,1,1,273,274],[1075,2,2,274,276],[1077,3,3,276,279]]],[46,7,7,279,286,[[1078,3,3,279,282],[1083,1,1,282,283],[1084,1,1,283,284],[1085,1,1,284,285],[1089,1,1,285,286]]],[47,2,1,286,287,[[1096,2,1,286,287]]],[48,5,5,287,292,[[1098,1,1,287,288],[1099,1,1,288,289],[1101,1,1,289,290],[1102,2,2,290,292]]],[49,1,1,292,293,[[1106,1,1,292,293]]],[50,2,2,293,295,[[1110,2,2,293,295]]],[51,6,6,295,301,[[1111,1,1,295,296],[1112,3,3,296,299],[1113,2,2,299,301]]],[53,3,3,301,304,[[1121,1,1,301,302],[1122,2,2,302,304]]],[54,3,3,304,307,[[1126,1,1,304,305],[1127,1,1,305,306],[1128,1,1,306,307]]],[55,4,3,307,310,[[1129,1,1,307,308],[1131,3,2,308,310]]],[57,6,6,310,316,[[1133,1,1,310,311],[1137,2,2,311,313],[1139,1,1,313,314],[1141,1,1,314,315],[1145,1,1,315,316]]],[60,2,2,316,318,[[1156,1,1,316,317],[1158,1,1,317,318]]],[61,4,2,318,320,[[1163,4,2,318,320]]],[62,2,2,320,322,[[1164,2,2,320,322]]],[65,5,5,322,327,[[1176,1,1,322,323],[1178,2,2,323,325],[1187,1,1,325,326],[1188,1,1,326,327]]]],[23202,23205,23207,23487,23541,23622,23625,23776,23827,23858,23863,23952,23955,24044,24047,24068,24094,24148,24191,24220,24247,24263,24273,24296,24301,24319,24324,24375,24432,24437,24440,24455,24458,24464,24494,24555,24557,24558,24589,24602,24677,24679,24686,24691,24764,24869,24906,24911,24912,24921,24927,24954,24973,24993,25007,25021,25022,25034,25037,25038,25039,25084,25086,25089,25103,25106,25111,25117,25129,25138,25140,25141,25143,25155,25198,25202,25215,25219,25235,25266,25267,25304,25314,25334,25344,25351,25358,25360,25363,25365,25386,25389,25392,25406,25410,25444,25458,25460,25474,25475,25481,25500,25525,25541,25552,25556,25560,25576,25578,25591,25621,25650,25652,25673,25691,25695,25697,25704,25719,25728,25736,25739,25740,25744,25764,25770,25773,25781,25782,25802,25820,25879,25916,25934,25949,25957,25963,25996,26001,26008,26009,26016,26035,26073,26098,26124,26146,26171,26186,26196,26203,26204,26205,26243,26262,26285,26291,26302,26322,26331,26361,26365,26378,26383,26384,26388,26438,26516,26522,26526,26527,26538,26544,26552,26612,26631,26671,26674,26680,26691,26696,26733,26809,26814,26823,26877,26884,26930,26978,26986,26987,27007,27008,27018,27021,27023,27030,27041,27045,27068,27094,27119,27147,27190,27196,27202,27222,27227,27231,27254,27274,27280,27287,27318,27327,27342,27345,27352,27358,27377,27393,27394,27398,27444,27449,27467,27475,27478,27520,27525,27538,27563,27571,27578,27587,27588,27616,27632,27675,27682,27701,27703,27705,27709,27712,27714,27717,27719,27725,27729,27737,27749,27751,27752,27758,27818,27824,27829,27837,27851,27858,27916,27920,27924,27925,27929,27940,27943,28209,28326,28332,28335,28454,28636,28684,28704,28781,28787,28788,28815,28816,28820,28909,28928,28949,29039,29198,29247,29265,29335,29346,29359,29448,29550,29552,29569,29571,29572,29588,29596,29601,29745,29754,29755,29851,29870,29879,29908,29925,29935,29971,30035,30037,30085,30125,30254,30482,30538,30640,30641,30655,30657,30870,30896,30903,31062,31098]]],["whereby",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29286]]],["with",[42,42,[[39,2,2,0,2,[[941,1,1,0,1],[954,1,1,1,2]]],[40,6,6,2,8,[[962,1,1,2,3],[965,3,3,3,6],[967,1,1,6,7],[970,1,1,7,8]]],[41,3,3,8,11,[[981,1,1,8,9],[990,1,1,9,10],[992,1,1,10,11]]],[42,2,2,11,13,[[997,2,2,11,13]]],[43,6,6,13,19,[[1019,1,1,13,14],[1020,1,1,14,15],[1028,1,1,15,16],[1032,1,1,16,17],[1034,1,1,17,18],[1041,1,1,18,19]]],[44,2,2,19,21,[[1050,1,1,19,20],[1053,1,1,20,21]]],[45,4,4,21,25,[[1063,1,1,21,22],[1077,3,3,22,25]]],[46,4,4,25,29,[[1082,1,1,25,26],[1083,2,2,26,28],[1088,1,1,28,29]]],[47,4,4,29,33,[[1091,1,1,29,30],[1092,1,1,30,31],[1094,2,2,31,33]]],[51,1,1,33,34,[[1113,1,1,33,34]]],[52,3,3,34,37,[[1117,1,1,34,35],[1118,2,2,35,37]]],[56,1,1,37,38,[[1132,1,1,37,38]]],[57,2,2,38,40,[[1136,1,1,38,39],[1142,1,1,39,40]]],[61,2,2,40,42,[[1159,1,1,40,41],[1160,1,1,41,42]]]],[23595,24109,24410,24548,24554,24557,24671,24803,25342,25699,25784,26045,26046,26996,27021,27309,27444,27540,27781,28048,28134,28397,28782,28783,28786,28885,28912,28913,28998,29075,29086,29149,29151,29594,29666,29679,29688,29951,30027,30149,30542,30551]]],["within",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24758]]]]},{"k":"G4315","v":[["sabbath",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24868]]]]},{"k":"G4316","v":[["Called",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30040]]]]},{"k":"G4317","v":[["*",[4,4,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,2,2,1,3,[[1033,1,1,1,2],[1044,1,1,2,3]]],[59,1,1,3,4,[[1153,1,1,3,4]]]],[25342,27503,27882,30442]]],["Bring",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25342]]],["bring",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30442]]],["brought",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27503]]],["near",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27882]]]]},{"k":"G4318","v":[["access",[3,3,[[44,1,1,0,1,[[1050,1,1,0,1]]],[48,2,2,1,3,[[1098,1,1,1,2],[1099,1,1,2,3]]]],[28049,29247,29263]]]]},{"k":"G4319","v":[["*",[3,3,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]],[42,1,1,2,3,[[1005,1,1,2,3]]]],[24634,25723,26448]]],["begged",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26448]]],["begging",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]]],[24634,25723]]]]},{"k":"G4320","v":[["up",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25563]]]]},{"k":"G4321","v":[["spent",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25288]]]]},{"k":"G4322","v":[["*",[2,2,[[46,2,2,0,2,[[1086,1,1,0,1],[1088,1,1,1,2]]]],[28968,28998]]],["+",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28968]]],["supplied",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28998]]]]},{"k":"G4323","v":[["*",[2,2,[[47,2,2,0,2,[[1091,1,1,0,1],[1092,1,1,1,2]]]],[29073,29087]]],["added",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29087]]],["conferred",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29073]]]]},{"k":"G4324","v":[["threatened",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27043]]]]},{"k":"G4325","v":[["more",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25398]]]]},{"k":"G4326","v":[["needed",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27548]]]]},{"k":"G4327","v":[["*",[14,14,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,5,5,1,6,[[974,2,2,1,3],[984,1,1,3,4],[987,1,1,4,5],[995,1,1,5,6]]],[43,2,2,6,8,[[1040,1,1,6,7],[1041,1,1,7,8]]],[44,1,1,8,9,[[1061,1,1,8,9]]],[49,1,1,9,10,[[1104,1,1,9,10]]],[55,1,1,10,11,[[1130,1,1,10,11]]],[57,2,2,11,13,[[1142,1,1,11,12],[1143,1,1,12,13]]],[64,1,1,13,14,[[1166,1,1,13,14]]]],[24869,24998,25011,25495,25590,25986,27755,27784,28338,29420,29921,30167,30207,30693]]],["+",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24869]]],["Receive",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29420]]],["accepting",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30207]]],["allow",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27784]]],["for",[7,7,[[41,4,4,0,4,[[974,2,2,0,2],[984,1,1,2,3],[995,1,1,3,4]]],[43,1,1,4,5,[[1040,1,1,4,5]]],[55,1,1,5,6,[[1130,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[24998,25011,25495,25986,27755,29921,30693]]],["receive",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28338]]],["receiveth",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25590]]],["took",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30167]]]]},{"k":"G4328","v":[["*",[16,15,[[39,2,2,0,2,[[939,1,1,0,1],[952,1,1,1,2]]],[41,6,6,2,8,[[973,1,1,2,3],[975,1,1,3,4],[979,2,2,4,6],[980,1,1,6,7],[984,1,1,7,8]]],[43,5,4,8,12,[[1020,1,1,8,9],[1027,1,1,9,10],[1044,1,1,10,11],[1045,2,1,11,12]]],[60,3,3,12,15,[[1158,3,3,12,15]]]],[23462,24007,24914,25040,25214,25215,25285,25505,27001,27283,27888,27905,30534,30535,30536]]],["+",[3,3,[[41,2,2,0,2,[[973,1,1,0,1],[984,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]]],[24914,25505,27283]]],["expectation",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25040]]],["expecting",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27001]]],["for",[6,6,[[41,3,3,0,3,[[979,2,2,0,2],[980,1,1,2,3]]],[60,3,3,3,6,[[1158,3,3,3,6]]]],[25214,25215,25285,30534,30535,30536]]],["look",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23462]]],["looked",[2,1,[[43,2,1,0,1,[[1045,2,1,0,1]]]],[27905]]],["looketh",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[24007]]],["tarried",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27888]]]]},{"k":"G4329","v":[["*",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]]],[25852,27348]]],["after",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25852]]],["expectation",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27348]]]]},{"k":"G4330","v":[["suffering",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27862]]]]},{"k":"G4331","v":[["nigh",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24264]]]]},{"k":"G4332","v":[["wait",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28553]]]]},{"k":"G4333","v":[["gained",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25747]]]]},{"k":"G4334","v":[["*",[86,85,[[39,50,49,0,49,[[932,2,2,0,2],[933,1,1,2,3],[936,3,3,3,6],[937,3,3,6,9],[941,3,3,9,12],[942,2,2,12,14],[943,4,4,14,18],[944,1,1,18,19],[945,4,4,19,23],[946,2,2,23,25],[947,2,2,25,27],[948,1,1,27,28],[949,4,4,28,32],[950,1,1,32,33],[952,2,2,33,35],[953,3,3,35,38],[954,8,7,38,45],[955,1,1,45,46],[956,3,3,46,49]]],[40,5,5,49,54,[[957,1,1,49,50],[962,1,1,50,51],[966,1,1,51,52],[968,1,1,52,53],[970,1,1,53,54]]],[41,10,10,54,64,[[979,1,1,54,55],[980,2,2,55,57],[981,2,2,57,59],[982,1,1,59,60],[985,1,1,60,61],[992,1,1,61,62],[995,2,2,62,64]]],[42,1,1,64,65,[[1008,1,1,64,65]]],[43,11,11,65,76,[[1024,1,1,65,66],[1025,1,1,66,67],[1026,1,1,67,68],[1027,1,1,68,69],[1029,1,1,69,70],[1035,1,1,70,71],[1039,2,2,71,73],[1040,1,1,73,74],[1041,1,1,74,75],[1045,1,1,75,76]]],[53,1,1,76,77,[[1124,1,1,76,77]]],[57,7,7,77,84,[[1136,1,1,77,78],[1139,1,1,78,79],[1142,2,2,79,81],[1143,1,1,81,82],[1144,2,2,82,84]]],[59,1,1,84,85,[[1152,1,1,84,85]]]],[23212,23220,23235,23350,23364,23370,23393,23399,23407,23549,23566,23575,23609,23612,23634,23645,23656,23663,23673,23707,23714,23719,23724,23728,23748,23765,23778,23812,23840,23849,23854,23856,23895,23958,23960,24028,24030,24032,24061,24071,24103,24104,24114,24123,24127,24187,24197,24204,24213,24246,24442,24590,24701,24799,25209,25269,25289,25313,25343,25397,25549,25806,25971,25987,26601,27147,27205,27217,27287,27350,27559,27730,27731,27748,27792,27908,29791,30030,30089,30134,30155,30178,30230,30234,30403]]],["+",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[24032,30134]]],["Came",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25289]]],["came",[62,61,[[39,48,47,0,47,[[932,2,2,0,2],[933,1,1,2,3],[936,3,3,3,6],[937,3,3,6,9],[941,3,3,9,12],[942,2,2,12,14],[943,4,4,14,18],[944,1,1,18,19],[945,4,4,19,23],[946,2,2,23,25],[947,2,2,25,27],[948,1,1,27,28],[949,4,4,28,32],[950,1,1,32,33],[952,2,2,33,35],[953,2,2,35,37],[954,8,7,37,44],[956,3,3,44,47]]],[40,3,3,47,50,[[957,1,1,47,48],[962,1,1,48,49],[968,1,1,49,50]]],[41,5,5,50,55,[[979,1,1,50,51],[980,1,1,51,52],[981,1,1,52,53],[985,1,1,53,54],[992,1,1,54,55]]],[42,1,1,55,56,[[1008,1,1,55,56]]],[43,5,5,56,61,[[1029,1,1,56,57],[1035,1,1,57,58],[1039,1,1,58,59],[1040,1,1,59,60],[1045,1,1,60,61]]]],[23212,23220,23235,23350,23364,23370,23393,23399,23407,23549,23566,23575,23609,23612,23634,23645,23656,23663,23673,23707,23714,23719,23724,23728,23748,23765,23778,23812,23840,23849,23854,23856,23895,23958,23960,24028,24030,24061,24071,24103,24104,24114,24123,24127,24197,24204,24213,24246,24442,24701,25209,25269,25313,25549,25806,26601,27350,27559,27731,27748,27908]]],["come",[3,3,[[57,3,3,0,3,[[1136,1,1,0,1],[1139,1,1,1,2],[1144,1,1,2,3]]]],[30030,30089,30230]]],["cometh",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30178]]],["coming",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[25343,30403]]],["consent",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29791]]],["goeth",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24799]]],["near",[3,3,[[43,2,2,0,2,[[1024,1,1,0,1],[1025,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[27147,27205,30155]]],["to",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24590,25971]]],["unto",[3,3,[[43,2,2,0,2,[[1027,1,1,0,1],[1041,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[27287,27792,30234]]],["went",[5,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,2,2,1,3,[[982,1,1,1,2],[995,1,1,2,3]]],[43,2,2,3,5,[[1026,1,1,3,4],[1039,1,1,4,5]]]],[24187,25397,25987,27217,27730]]]]},{"k":"G4335","v":[["*",[37,37,[[39,3,3,0,3,[[945,1,1,0,1],[949,2,2,1,3]]],[40,2,2,3,5,[[965,1,1,3,4],[967,1,1,4,5]]],[41,3,3,5,8,[[978,1,1,5,6],[991,1,1,6,7],[994,1,1,7,8]]],[43,9,9,8,17,[[1018,1,1,8,9],[1019,1,1,9,10],[1020,1,1,10,11],[1023,1,1,11,12],[1027,2,2,12,14],[1029,1,1,14,15],[1033,2,2,15,17]]],[44,3,3,17,20,[[1046,1,1,17,18],[1057,1,1,18,19],[1060,1,1,19,20]]],[45,1,1,20,21,[[1068,1,1,20,21]]],[48,2,2,21,23,[[1097,1,1,21,22],[1102,1,1,22,23]]],[49,1,1,23,24,[[1106,1,1,23,24]]],[50,2,2,24,26,[[1110,2,2,24,26]]],[51,1,1,26,27,[[1111,1,1,26,27]]],[53,2,2,27,29,[[1120,1,1,27,28],[1123,1,1,28,29]]],[56,2,2,29,31,[[1132,2,2,29,31]]],[58,1,1,31,32,[[1150,1,1,31,32]]],[59,2,2,32,34,[[1153,1,1,32,33],[1154,1,1,33,34]]],[65,3,3,34,37,[[1171,1,1,34,35],[1174,2,2,35,37]]]],[23721,23839,23848,24567,24657,25158,25777,25909,26937,26991,26997,27105,27263,27290,27342,27496,27499,27939,28257,28333,28492,29222,29355,29448,29544,29554,29562,29717,29768,29942,29960,30371,30431,30453,30787,30830,30831]]],["+",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30371]]],["prayer",[21,21,[[39,3,3,0,3,[[945,1,1,0,1],[949,2,2,1,3]]],[40,2,2,3,5,[[965,1,1,3,4],[967,1,1,4,5]]],[41,3,3,5,8,[[978,1,1,5,6],[991,1,1,6,7],[994,1,1,7,8]]],[43,7,7,8,15,[[1018,1,1,8,9],[1020,1,1,9,10],[1023,1,1,10,11],[1027,1,1,11,12],[1029,1,1,12,13],[1033,2,2,13,15]]],[44,1,1,15,16,[[1057,1,1,15,16]]],[45,1,1,16,17,[[1068,1,1,16,17]]],[48,1,1,17,18,[[1102,1,1,17,18]]],[49,1,1,18,19,[[1106,1,1,18,19]]],[50,1,1,19,20,[[1110,1,1,19,20]]],[59,1,1,20,21,[[1154,1,1,20,21]]]],[23721,23839,23848,24567,24657,25158,25777,25909,26937,26997,27105,27290,27342,27496,27499,28257,28492,29355,29448,29544,30453]]],["prayers",[15,15,[[43,2,2,0,2,[[1019,1,1,0,1],[1027,1,1,1,2]]],[44,2,2,2,4,[[1046,1,1,2,3],[1060,1,1,3,4]]],[48,1,1,4,5,[[1097,1,1,4,5]]],[50,1,1,5,6,[[1110,1,1,5,6]]],[51,1,1,6,7,[[1111,1,1,6,7]]],[53,2,2,7,9,[[1120,1,1,7,8],[1123,1,1,8,9]]],[56,2,2,9,11,[[1132,2,2,9,11]]],[59,1,1,11,12,[[1153,1,1,11,12]]],[65,3,3,12,15,[[1171,1,1,12,13],[1174,2,2,13,15]]]],[26991,27263,27939,28333,29222,29554,29562,29717,29768,29942,29960,30431,30787,30830,30831]]]]},{"k":"G4336","v":[["*",[87,82,[[39,16,14,0,14,[[933,1,1,0,1],[934,6,4,1,5],[942,1,1,5,6],[947,1,1,6,7],[951,1,1,7,8],[952,1,1,8,9],[954,5,5,9,14]]],[40,11,11,14,25,[[957,1,1,14,15],[962,1,1,15,16],[967,2,2,16,18],[968,1,1,18,19],[969,2,2,19,21],[970,4,4,21,25]]],[41,19,18,25,43,[[973,1,1,25,26],[975,1,1,26,27],[977,1,1,27,28],[978,2,2,28,30],[981,3,3,30,33],[983,3,2,33,35],[990,3,3,35,38],[992,1,1,38,39],[994,4,4,39,43]]],[43,16,16,43,59,[[1018,1,1,43,44],[1023,1,1,44,45],[1025,1,1,45,46],[1026,2,2,46,48],[1027,2,2,48,50],[1028,1,1,50,51],[1029,1,1,51,52],[1030,1,1,52,53],[1031,1,1,53,54],[1033,1,1,54,55],[1037,1,1,55,56],[1038,1,1,56,57],[1039,1,1,57,58],[1045,1,1,58,59]]],[44,1,1,59,60,[[1053,1,1,59,60]]],[45,8,6,60,66,[[1072,3,3,60,63],[1075,5,3,63,66]]],[48,1,1,66,67,[[1102,1,1,66,67]]],[49,1,1,67,68,[[1103,1,1,67,68]]],[50,3,3,68,71,[[1107,2,2,68,70],[1110,1,1,70,71]]],[51,2,2,71,73,[[1115,2,2,71,73]]],[52,2,2,73,75,[[1116,1,1,73,74],[1118,1,1,74,75]]],[53,1,1,75,76,[[1120,1,1,75,76]]],[57,1,1,76,77,[[1145,1,1,76,77]]],[58,4,4,77,81,[[1150,4,4,77,81]]],[64,1,1,81,82,[[1166,1,1,81,82]]]],[23278,23287,23288,23289,23291,23620,23775,23932,23977,24090,24093,24095,24096,24098,24250,24453,24664,24665,24713,24735,24750,24786,24789,24792,24793,24903,25046,25123,25158,25174,25319,25329,25330,25406,25407,25689,25698,25699,25826,25904,25905,25908,25910,26947,27107,27191,27227,27256,27268,27289,27312,27349,27365,27437,27508,27662,27669,27721,27907,28142,28604,28605,28613,28691,28692,28693,29355,29370,29468,29474,29545,29638,29646,29660,29679,29724,30259,30367,30368,30371,30372,30692]]],["+",[5,5,[[39,2,2,0,2,[[951,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]],[58,1,1,4,5,[[1150,1,1,4,5]]]],[23932,24093,24713,25826,30371]]],["Pray",[3,3,[[41,1,1,0,1,[[994,1,1,0,1]]],[51,1,1,1,2,[[1115,1,1,1,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]]],[25904,29638,30259]]],["Praying",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29355]]],["for",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28142]]],["pray",[38,37,[[39,10,10,0,10,[[933,1,1,0,1],[934,4,4,1,5],[942,1,1,5,6],[947,1,1,6,7],[952,1,1,7,8],[954,2,2,8,10]]],[40,6,6,10,16,[[962,1,1,10,11],[967,1,1,11,12],[969,2,2,12,14],[970,2,2,14,16]]],[41,8,8,16,24,[[978,2,2,16,18],[981,1,1,18,19],[983,2,2,19,21],[990,2,2,21,23],[994,1,1,23,24]]],[43,1,1,24,25,[[1027,1,1,24,25]]],[45,5,4,25,29,[[1072,1,1,25,26],[1075,4,3,26,29]]],[49,1,1,29,30,[[1103,1,1,29,30]]],[50,1,1,30,31,[[1107,1,1,30,31]]],[51,1,1,31,32,[[1115,1,1,31,32]]],[52,2,2,32,34,[[1116,1,1,32,33],[1118,1,1,33,34]]],[53,1,1,34,35,[[1120,1,1,34,35]]],[58,2,2,35,37,[[1150,2,2,35,37]]]],[23278,23287,23288,23289,23291,23620,23775,23977,24090,24095,24453,24664,24735,24750,24786,24792,25158,25174,25329,25406,25407,25689,25698,25910,27268,28613,28691,28692,28693,29370,29474,29646,29660,29679,29724,30367,30368]]],["prayed",[23,23,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,3,3,2,5,[[957,1,1,2,3],[970,2,2,3,5]]],[41,5,5,5,10,[[977,1,1,5,6],[981,1,1,6,7],[990,1,1,7,8],[994,2,2,8,10]]],[43,12,12,10,22,[[1018,1,1,10,11],[1023,1,1,11,12],[1025,1,1,12,13],[1026,1,1,13,14],[1027,1,1,14,15],[1030,1,1,15,16],[1031,1,1,16,17],[1033,1,1,17,18],[1037,1,1,18,19],[1038,1,1,19,20],[1039,1,1,20,21],[1045,1,1,21,22]]],[58,1,1,22,23,[[1150,1,1,22,23]]]],[24096,24098,24250,24789,24793,25123,25330,25699,25905,25908,26947,27107,27191,27256,27289,27365,27437,27508,27662,27669,27721,27907,30372]]],["prayest",[2,2,[[39,2,2,0,2,[[934,2,2,0,2]]]],[23287,23288]]],["prayeth",[3,3,[[43,1,1,0,1,[[1026,1,1,0,1]]],[45,2,2,1,3,[[1072,1,1,1,2],[1075,1,1,2,3]]]],[27227,28605,28692]]],["praying",[11,11,[[40,1,1,0,1,[[967,1,1,0,1]]],[41,4,4,1,5,[[973,1,1,1,2],[975,1,1,2,3],[981,1,1,3,4],[983,1,1,4,5]]],[43,2,2,5,7,[[1028,1,1,5,6],[1029,1,1,6,7]]],[45,1,1,7,8,[[1072,1,1,7,8]]],[50,2,2,8,10,[[1107,1,1,8,9],[1110,1,1,9,10]]],[64,1,1,10,11,[[1166,1,1,10,11]]]],[24665,24903,25046,25319,25406,27312,27349,28604,29468,29545,30692]]]]},{"k":"G4337","v":[["*",[24,24,[[39,6,6,0,6,[[934,1,1,0,1],[935,1,1,1,2],[938,1,1,2,3],[944,3,3,3,6]]],[41,4,4,6,10,[[984,1,1,6,7],[989,1,1,7,8],[992,1,1,8,9],[993,1,1,9,10]]],[43,6,6,10,16,[[1022,1,1,10,11],[1025,3,3,11,14],[1033,1,1,14,15],[1037,1,1,15,16]]],[53,4,4,16,20,[[1119,1,1,16,17],[1121,1,1,17,18],[1122,2,2,18,20]]],[55,1,1,20,21,[[1129,1,1,20,21]]],[57,2,2,21,23,[[1134,1,1,21,22],[1139,1,1,22,23]]],[60,1,1,23,24,[[1156,1,1,23,24]]]],[23283,23331,23434,23678,23683,23684,25460,25654,25825,25860,27094,27182,27186,27187,27497,27654,29700,29739,29748,29760,29906,29978,30077,30498]]],["+",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29978]]],["Beware",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[992,1,1,2,3]]]],[23331,25460,25825]]],["attendance",[2,2,[[53,1,1,0,1,[[1122,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[29760,30077]]],["attended",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27497]]],["beware",[4,4,[[39,4,4,0,4,[[938,1,1,0,1],[944,3,3,1,4]]]],[23434,23678,23683,23684]]],["given",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29739]]],["heed",[11,11,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,2,2,1,3,[[989,1,1,1,2],[993,1,1,2,3]]],[43,4,4,3,7,[[1022,1,1,3,4],[1025,2,2,4,6],[1037,1,1,6,7]]],[53,2,2,7,9,[[1119,1,1,7,8],[1122,1,1,8,9]]],[55,1,1,9,10,[[1129,1,1,9,10]]],[60,1,1,10,11,[[1156,1,1,10,11]]]],[23283,25654,25860,27094,27182,27186,27654,29700,29748,29906,30498]]],["regard",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27187]]]]},{"k":"G4338","v":[["nailing",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29508]]]]},{"k":"G4339","v":[["*",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[43,3,3,1,4,[[1019,1,1,1,2],[1023,1,1,2,3],[1030,1,1,3,4]]]],[23933,26959,27106,27405]]],["proselyte",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[43,1,1,1,2,[[1023,1,1,1,2]]]],[23933,27106]]],["proselytes",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1030,1,1,1,2]]]],[26959,27405]]]]},{"k":"G4340","v":[["*",[4,4,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[46,1,1,2,3,[[1081,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[23560,24340,28877,30197]]],["+",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23560]]],["season",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30197]]],["temporal",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28877]]],["time",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24340]]]]},{"k":"G4341","v":[["*",[30,30,[[39,6,6,0,6,[[938,1,1,0,1],[943,2,2,1,3],[946,2,2,3,5],[948,1,1,5,6]]],[40,9,9,6,15,[[959,2,2,6,8],[962,1,1,8,9],[963,1,1,9,10],[964,2,2,10,12],[966,1,1,12,13],[968,1,1,13,14],[971,1,1,14,15]]],[41,4,4,15,19,[[979,1,1,15,16],[987,1,1,16,17],[988,1,1,17,18],[990,1,1,18,19]]],[43,10,10,19,29,[[1019,1,1,19,20],[1022,1,1,20,21],[1023,1,1,21,22],[1030,2,2,22,24],[1033,1,1,24,25],[1037,1,1,25,26],[1040,3,3,26,29]]],[58,1,1,29,30,[[1150,1,1,29,30]]]],[23418,23643,23665,23729,23759,23817,24301,24311,24414,24477,24501,24534,24630,24716,24870,25214,25614,25625,25704,26988,27099,27103,27364,27369,27493,27627,27751,27752,27757,30368]]],["+",[2,2,[[43,2,2,0,2,[[1040,2,2,0,2]]]],[27751,27752]]],["call",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26988]]],["called",[19,19,[[39,5,5,0,5,[[943,2,2,0,2],[946,2,2,2,4],[948,1,1,4,5]]],[40,7,7,5,12,[[959,1,1,5,6],[962,1,1,6,7],[963,1,1,7,8],[964,2,2,8,10],[966,1,1,10,11],[968,1,1,11,12]]],[41,3,3,12,15,[[987,1,1,12,13],[988,1,1,13,14],[990,1,1,14,15]]],[43,4,4,15,19,[[1022,1,1,15,16],[1023,1,1,16,17],[1030,1,1,17,18],[1033,1,1,18,19]]]],[23643,23665,23729,23759,23817,24311,24414,24477,24501,24534,24630,24716,25614,25625,25704,27099,27103,27364,27493]]],["calleth",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24301]]],["calling",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]]],[24870,25214]]],["for",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[27369,30368]]],["unto",[3,3,[[39,1,1,0,1,[[938,1,1,0,1]]],[43,2,2,1,3,[[1037,1,1,1,2],[1040,1,1,2,3]]]],[23418,27627,27757]]]]},{"k":"G4342","v":[["*",[10,10,[[40,1,1,0,1,[[959,1,1,0,1]]],[43,6,6,1,7,[[1018,1,1,1,2],[1019,2,2,2,4],[1023,1,1,4,5],[1025,1,1,5,6],[1027,1,1,6,7]]],[44,2,2,7,9,[[1057,1,1,7,8],[1058,1,1,8,9]]],[50,1,1,9,10,[[1110,1,1,9,10]]]],[24297,26937,26991,26995,27105,27189,27266,28257,28272,29544]]],["+",[4,4,[[43,4,4,0,4,[[1018,1,1,0,1],[1019,1,1,1,2],[1025,1,1,2,3],[1027,1,1,3,4]]]],[26937,26991,27189,27266]]],["Continue",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29544]]],["continually",[2,2,[[43,1,1,0,1,[[1023,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]]],[27105,28272]]],["continuing",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26995]]],["instant",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28257]]],["on",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24297]]]]},{"k":"G4343","v":[["perseverance",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29355]]]]},{"k":"G4344","v":[["pillow",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24361]]]]},{"k":"G4345","v":[["with",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27527]]]]},{"k":"G4346","v":[["partiality",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29784]]]]},{"k":"G4347","v":[["*",[4,4,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]]],[23767,24595,27095,29335]]],["cleave",[2,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]]],[23767,24595]]],["joined",[2,2,[[43,1,1,0,1,[[1022,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]]],[27095,29335]]]]},{"k":"G4348","v":[["*",[6,6,[[44,4,4,0,4,[[1054,2,2,0,2],[1059,2,2,2,4]]],[45,1,1,4,5,[[1069,1,1,4,5]]],[59,1,1,5,6,[[1152,1,1,5,6]]]],[28187,28188,28293,28300,28536,30407]]],["+",[2,2,[[44,2,2,0,2,[[1054,2,2,0,2]]]],[28187,28188]]],["offence",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28300]]],["stumbling",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30407]]],["stumblingblock",[2,2,[[44,1,1,0,1,[[1059,1,1,0,1]]],[45,1,1,1,2,[[1069,1,1,1,2]]]],[28293,28536]]]]},{"k":"G4349","v":[["offence",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28901]]]]},{"k":"G4350","v":[["*",[8,8,[[39,2,2,0,2,[[932,1,1,0,1],[935,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]],[42,2,2,3,5,[[1007,2,2,3,5]]],[44,2,2,5,7,[[1054,1,1,5,6],[1059,1,1,6,7]]],[59,1,1,7,8,[[1152,1,1,7,8]]]],[23215,23343,25074,26532,26533,28187,28301,30407]]],["dash",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]]],[23215,25074]]],["stumble",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30407]]],["stumbled",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28187]]],["stumbleth",[3,3,[[42,2,2,0,2,[[1007,2,2,0,2]]],[44,1,1,2,3,[[1059,1,1,2,3]]]],[26532,26533,28301]]],["upon",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23343]]]]},{"k":"G4351","v":[["rolled",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24189,24872]]]]},{"k":"G4352","v":[["*",[60,54,[[39,13,13,0,13,[[930,3,3,0,3],[932,2,2,3,5],[936,1,1,5,6],[937,1,1,6,7],[942,1,1,7,8],[943,1,1,8,9],[946,1,1,9,10],[948,1,1,10,11],[956,2,2,11,13]]],[40,2,2,13,15,[[961,1,1,13,14],[971,1,1,14,15]]],[41,3,3,15,18,[[976,2,2,15,17],[996,1,1,17,18]]],[42,11,7,18,25,[[1000,9,5,18,23],[1005,1,1,23,24],[1008,1,1,24,25]]],[43,4,4,25,29,[[1024,1,1,25,26],[1025,1,1,26,27],[1027,1,1,27,28],[1041,1,1,28,29]]],[45,1,1,29,30,[[1075,1,1,29,30]]],[57,2,2,30,32,[[1133,1,1,30,31],[1143,1,1,31,32]]],[65,24,22,32,54,[[1169,1,1,32,33],[1170,1,1,33,34],[1171,1,1,34,35],[1173,1,1,35,36],[1175,1,1,36,37],[1177,2,2,37,39],[1179,5,4,39,43],[1180,3,3,43,46],[1181,1,1,46,47],[1182,1,1,47,48],[1185,4,3,48,51],[1186,1,1,51,52],[1188,2,2,52,54]]]],[23171,23177,23180,23218,23219,23347,23397,23630,23658,23753,23812,24204,24212,24370,24845,25070,25071,26043,26176,26177,26178,26179,26180,26478,26600,27159,27203,27284,27780,28703,29969,30193,30755,30778,30793,30821,30860,30873,30888,30912,30916,30920,30923,30933,30935,30937,30950,30956,31021,31027,31037,31042,31088,31089]]],["worship",[35,31,[[39,4,4,0,4,[[930,2,2,0,2],[932,2,2,2,4]]],[41,2,2,4,6,[[976,2,2,4,6]]],[42,9,6,6,12,[[1000,8,5,6,11],[1008,1,1,11,12]]],[43,3,3,12,15,[[1024,1,1,12,13],[1025,1,1,13,14],[1041,1,1,14,15]]],[45,1,1,15,16,[[1075,1,1,15,16]]],[57,1,1,16,17,[[1133,1,1,16,17]]],[65,15,14,17,31,[[1169,1,1,17,18],[1170,1,1,18,19],[1175,1,1,19,20],[1177,1,1,20,21],[1179,3,3,21,24],[1180,3,3,24,27],[1181,1,1,27,28],[1185,2,1,28,29],[1188,2,2,29,31]]]],[23171,23177,23218,23219,25070,25071,26176,26177,26178,26179,26180,26600,27159,27203,27780,28703,29969,30755,30778,30860,30873,30916,30920,30923,30933,30935,30937,30950,31027,31088,31089]]],["worshipped",[24,23,[[39,8,8,0,8,[[930,1,1,0,1],[936,1,1,1,2],[937,1,1,2,3],[942,1,1,3,4],[943,1,1,4,5],[946,1,1,5,6],[956,2,2,6,8]]],[40,2,2,8,10,[[961,1,1,8,9],[971,1,1,9,10]]],[41,1,1,10,11,[[996,1,1,10,11]]],[42,2,2,11,13,[[1000,1,1,11,12],[1005,1,1,12,13]]],[43,1,1,13,14,[[1027,1,1,13,14]]],[57,1,1,14,15,[[1143,1,1,14,15]]],[65,9,8,15,23,[[1171,1,1,15,16],[1173,1,1,16,17],[1177,1,1,17,18],[1179,2,1,18,19],[1182,1,1,19,20],[1185,2,2,20,22],[1186,1,1,22,23]]]],[23180,23347,23397,23630,23658,23753,24204,24212,24370,24845,26043,26176,26478,27284,30193,30793,30821,30888,30912,30956,31021,31037,31042]]],["worshipping",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23812]]]]},{"k":"G4353","v":[["worshippers",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26179]]]]},{"k":"G4354","v":[["*",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1045,1,1,1,2]]]],[27405,27919]]],["to",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27405]]],["with",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27919]]]]},{"k":"G4355","v":[["*",[14,13,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[43,6,6,2,8,[[1034,1,1,2,3],[1035,1,1,3,4],[1044,3,3,4,7],[1045,1,1,7,8]]],[44,4,3,8,11,[[1059,2,2,8,10],[1060,2,1,10,11]]],[56,2,2,11,13,[[1132,2,2,11,13]]]],[23694,24532,27528,27583,27888,27889,27891,27901,28281,28283,28310,29950,29955]]],["+",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27583]]],["receive",[4,4,[[44,2,2,0,2,[[1059,1,1,0,1],[1060,1,1,1,2]]],[56,2,2,2,4,[[1132,2,2,2,4]]]],[28281,28310,29950,29955]]],["received",[3,3,[[43,1,1,0,1,[[1045,1,1,0,1]]],[44,2,2,1,3,[[1059,1,1,1,2],[1060,1,1,2,3]]]],[27901,28283,28310]]],["take",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27889]]],["taken",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27888]]],["took",[3,3,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[43,1,1,2,3,[[1044,1,1,2,3]]]],[23694,24532,27891]]],["unto",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27528]]]]},{"k":"G4356","v":[["receiving",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28224]]]]},{"k":"G4357","v":[["*",[6,6,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[43,2,2,2,4,[[1028,1,1,2,3],[1035,1,1,3,4]]],[53,2,2,4,6,[[1119,1,1,4,5],[1123,1,1,5,6]]]],[23665,24502,27330,27575,29699,29768]]],["been",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24502]]],["continueth",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29768]]],["still",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29699]]],["tarried",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27575]]],["unto",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27330]]],["with",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23665]]]]},{"k":"G4358","v":[["shore",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24460]]]]},{"k":"G4359","v":[["owest",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29957]]]]},{"k":"G4360","v":[["grieved",[2,2,[[57,2,2,0,2,[[1135,2,2,0,2]]]],[30005,30012]]]]},{"k":"G4361","v":[["hungry",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27269]]]]},{"k":"G4362","v":[["crucified",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26972]]]]},{"k":"G4363","v":[["*",[8,8,[[39,1,1,0,1,[[935,1,1,0,1]]],[40,3,3,1,4,[[959,1,1,1,2],[961,1,1,2,3],[963,1,1,3,4]]],[41,3,3,4,7,[[977,1,1,4,5],[980,2,2,5,7]]],[43,1,1,7,8,[[1033,1,1,7,8]]]],[23341,24299,24397,24488,25115,25273,25292,27512]]],["before",[5,5,[[40,2,2,0,2,[[959,1,1,0,1],[961,1,1,1,2]]],[41,2,2,2,4,[[980,2,2,2,4]]],[43,1,1,4,5,[[1033,1,1,4,5]]]],[24299,24397,25273,25292,27512]]],["down",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25115]]],["fell",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24488]]],["upon",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23341]]]]},{"k":"G4364","v":[["though",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26019]]]]},{"k":"G4365","v":[["come",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24623]]]]},{"k":"G4366","v":[["*",[2,2,[[41,2,2,0,2,[[978,2,2,0,2]]]],[25194,25195]]],["+",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25195]]],["upon",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25194]]]]},{"k":"G4367","v":[["*",[7,7,[[39,3,3,0,3,[[929,1,1,0,1],[936,1,1,1,2],[949,1,1,2,3]]],[40,1,1,3,4,[[957,1,1,3,4]]],[41,1,1,4,5,[[977,1,1,4,5]]],[43,2,2,5,7,[[1027,2,2,5,7]]]],[23168,23349,23832,24259,25121,27292,27307]]],["bidden",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23168]]],["commanded",[6,6,[[39,2,2,0,2,[[936,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,1,1,3,4,[[977,1,1,3,4]]],[43,2,2,4,6,[[1027,2,2,4,6]]]],[23349,23832,24259,25121,27292,27307]]]]},{"k":"G4368","v":[["succourer",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28338]]]]},{"k":"G4369","v":[["*",[18,18,[[39,2,2,0,2,[[934,2,2,0,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,7,7,3,10,[[975,1,1,3,4],[984,2,2,4,6],[989,1,1,6,7],[991,1,1,7,8],[992,2,2,8,10]]],[43,6,6,10,16,[[1019,2,2,10,12],[1022,1,1,12,13],[1028,1,1,13,14],[1029,1,1,14,15],[1030,1,1,15,16]]],[47,1,1,16,17,[[1093,1,1,16,17]]],[57,1,1,17,18,[[1144,1,1,17,18]]]],[23309,23315,24347,25045,25484,25490,25656,25742,25790,25791,26990,26996,27073,27331,27340,27398,29121,30231]]],["+",[3,3,[[41,2,2,0,2,[[992,2,2,0,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[25790,25791,30231]]],["Added",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25045]]],["Increase",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25656]]],["add",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23309,25484]]],["added",[8,8,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[991,1,1,2,3]]],[43,4,4,3,7,[[1019,2,2,3,5],[1022,1,1,5,6],[1028,1,1,6,7]]],[47,1,1,7,8,[[1093,1,1,7,8]]]],[23315,25490,25742,26990,26996,27073,27331,29121]]],["further",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27340]]],["given",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24347]]],["laid",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27398]]]]},{"k":"G4370","v":[["*",[3,3,[[40,2,2,0,2,[[965,1,1,0,1],[966,1,1,1,2]]],[43,1,1,2,3,[[1025,1,1,2,3]]]],[24553,24605,27206]]],["him",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24553]]],["running",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24605]]],["thither",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27206]]]]},{"k":"G4371","v":[["meat",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26903]]]]},{"k":"G4372","v":[["new",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30153]]]]},{"k":"G4373","v":[["lately",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27559]]]]},{"k":"G4374","v":[["*",[48,45,[[39,15,15,0,15,[[930,1,1,0,1],[932,1,1,1,2],[933,2,2,2,4],[936,2,2,4,6],[937,2,2,6,8],[940,1,1,8,9],[942,1,1,9,10],[945,1,1,10,11],[946,1,1,11,12],[947,1,1,12,13],[950,1,1,13,14],[953,1,1,14,15]]],[40,3,2,15,17,[[957,1,1,15,16],[966,2,1,16,17]]],[41,5,5,17,22,[[977,1,1,17,18],[984,1,1,18,19],[990,1,1,19,20],[995,2,2,20,22]]],[42,2,2,22,24,[[1012,1,1,22,23],[1015,1,1,23,24]]],[43,3,3,24,27,[[1024,1,1,24,25],[1025,1,1,25,26],[1038,1,1,26,27]]],[57,20,18,27,45,[[1137,3,3,27,30],[1140,3,2,30,32],[1141,5,5,32,37],[1142,5,5,37,42],[1143,3,2,42,44],[1144,1,1,44,45]]]],[23180,23233,23257,23258,23349,23361,23381,23411,23511,23632,23716,23751,23775,23891,24028,24259,24601,25121,25470,25703,25949,25971,26728,26854,27158,27194,27690,30031,30033,30037,30095,30096,30112,30114,30119,30130,30133,30134,30135,30141,30144,30145,30176,30189,30219]]],["+",[2,2,[[57,2,2,0,2,[[1137,1,1,0,1],[1140,1,1,1,2]]]],[30037,30095]]],["bring",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23257,25470]]],["brought",[15,14,[[39,11,11,0,11,[[932,1,1,0,1],[936,1,1,1,2],[937,2,2,2,4],[940,1,1,4,5],[942,1,1,5,6],[945,1,1,6,7],[946,1,1,7,8],[947,1,1,8,9],[950,1,1,9,10],[953,1,1,10,11]]],[40,2,1,11,12,[[966,2,1,11,12]]],[41,2,2,12,14,[[990,1,1,12,13],[995,1,1,13,14]]]],[23233,23361,23381,23411,23511,23632,23716,23751,23775,23891,24028,24601,25703,25949]]],["dealeth",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30219]]],["doeth",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26728]]],["it",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26854]]],["offer",[9,9,[[39,2,2,0,2,[[933,1,1,0,1],[936,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,1,1,3,4,[[977,1,1,3,4]]],[57,5,5,4,9,[[1137,2,2,4,6],[1140,2,2,6,8],[1141,1,1,8,9]]]],[23258,23349,24259,25121,30031,30033,30095,30096,30130]]],["offered",[11,11,[[43,3,3,0,3,[[1024,1,1,0,1],[1025,1,1,1,2],[1038,1,1,2,3]]],[57,8,8,3,11,[[1141,4,4,3,7],[1142,3,3,7,10],[1143,1,1,10,11]]]],[27158,27194,27690,30112,30114,30119,30133,30134,30135,30145,30176]]],["offering",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[57,2,2,1,3,[[1142,2,2,1,3]]]],[25971,30141,30144]]],["presented",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23180]]],["up",[2,1,[[57,2,1,0,1,[[1143,2,1,0,1]]]],[30189]]]]},{"k":"G4375","v":[["lovely",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29450]]]]},{"k":"G4376","v":[["*",[9,9,[[43,2,2,0,2,[[1038,1,1,0,1],[1041,1,1,1,2]]],[44,1,1,2,3,[[1060,1,1,2,3]]],[48,1,1,3,4,[[1101,1,1,3,4]]],[57,5,5,4,9,[[1142,5,5,4,9]]]],[27690,27786,28319,29306,30138,30141,30143,30147,30151]]],["offered",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30141]]],["offering",[6,6,[[43,1,1,0,1,[[1038,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]],[57,4,4,2,6,[[1142,4,4,2,6]]]],[27690,29306,30138,30143,30147,30151]]],["offerings",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27786]]],["up",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28319]]]]},{"k":"G4377","v":[["*",[7,7,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,4,4,1,5,[[978,1,1,1,2],[979,1,1,2,3],[985,1,1,3,4],[995,1,1,4,5]]],[43,2,2,5,7,[[1038,1,1,5,6],[1039,1,1,6,7]]]],[23475,25159,25227,25530,25955,27704,27706]]],["+",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25955]]],["called",[2,2,[[41,2,2,0,2,[[978,1,1,0,1],[985,1,1,1,2]]]],[25159,25530]]],["calling",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]]],[23475,25227]]],["spake",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27706]]],["unto",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27704]]]]},{"k":"G4378","v":[["sprinkling",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30200]]]]},{"k":"G4379","v":[["touch",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25451]]]]},{"k":"G4380","v":[["persons",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30302]]]]},{"k":"G4381","v":[["persons",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27293]]]]},{"k":"G4382","v":[["persons",[4,4,[[44,1,1,0,1,[[1047,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[27973,29346,29542,30294]]]]},{"k":"G4383","v":[["*",[78,73,[[39,10,10,0,10,[[934,2,2,0,2],[939,1,1,2,3],[944,1,1,3,4],[945,2,2,4,6],[946,1,1,6,7],[950,1,1,7,8],[954,2,2,8,10]]],[40,3,3,10,13,[[957,1,1,10,11],[968,1,1,11,12],[970,1,1,12,13]]],[41,15,15,13,28,[[973,1,1,13,14],[974,1,1,14,15],[977,1,1,15,16],[979,1,1,16,17],[981,4,4,17,21],[982,1,1,21,22],[984,1,1,22,23],[989,1,1,23,24],[992,1,1,24,25],[993,1,1,25,26],[994,1,1,26,27],[996,1,1,27,28]]],[43,12,11,28,39,[[1019,1,1,28,29],[1020,2,2,29,31],[1022,1,1,31,32],[1023,2,1,32,33],[1024,1,1,33,34],[1030,1,1,34,35],[1034,1,1,35,36],[1037,2,2,36,38],[1042,1,1,38,39]]],[45,3,2,39,41,[[1074,2,1,39,40],[1075,1,1,40,41]]],[46,12,11,41,52,[[1078,1,1,41,42],[1079,1,1,42,43],[1080,4,3,43,46],[1081,1,1,46,47],[1082,1,1,47,48],[1085,1,1,48,49],[1087,2,2,49,51],[1088,1,1,51,52]]],[47,3,3,52,55,[[1091,1,1,52,53],[1092,2,2,53,55]]],[50,1,1,55,56,[[1108,1,1,55,56]]],[51,3,2,56,58,[[1112,2,1,56,57],[1113,1,1,57,58]]],[52,1,1,58,59,[[1116,1,1,58,59]]],[57,1,1,59,60,[[1141,1,1,59,60]]],[58,2,2,60,62,[[1146,2,2,60,62]]],[59,1,1,62,63,[[1153,1,1,62,63]]],[64,1,1,63,64,[[1166,1,1,63,64]]],[65,10,9,64,73,[[1170,1,1,64,65],[1172,1,1,65,66],[1173,1,1,66,67],[1175,2,1,67,68],[1176,1,1,68,69],[1177,1,1,69,70],[1178,1,1,70,71],[1186,1,1,71,72],[1188,1,1,72,73]]]],[23298,23299,23469,23675,23702,23706,23737,23888,24093,24121,24217,24687,24819,24969,25004,25119,25222,25330,25352,25353,25354,25364,25515,25667,25800,25861,25928,25996,26977,27009,27015,27100,27116,27161,27386,27549,27651,27664,27812,28677,28703,28811,28834,28848,28854,28859,28865,28889,28956,28972,28978,29009,29079,29087,29092,29495,29587,29600,29658,30129,30277,30289,30436,30688,30775,30809,30821,30847,30862,30888,30905,31049,31084]]],["+",[5,5,[[43,3,3,0,3,[[1020,1,1,0,1],[1030,1,1,1,2],[1042,1,1,2,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[27009,27386,27812,28956,30688]]],["appearance",[2,2,[[46,2,2,0,2,[[1082,1,1,0,1],[1087,1,1,1,2]]]],[28889,28978]]],["countenance",[3,3,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]],[46,1,1,2,3,[[1080,1,1,2,3]]]],[25330,26977,28848]]],["face",[49,47,[[39,8,8,0,8,[[934,1,1,0,1],[939,1,1,1,2],[944,1,1,2,3],[945,2,2,3,5],[946,1,1,5,6],[954,2,2,6,8]]],[40,2,2,8,10,[[957,1,1,8,9],[970,1,1,9,10]]],[41,12,12,10,22,[[973,1,1,10,11],[974,1,1,11,12],[977,1,1,12,13],[979,1,1,13,14],[981,3,3,14,17],[982,1,1,17,18],[984,1,1,18,19],[989,1,1,19,20],[993,1,1,20,21],[994,1,1,21,22]]],[43,6,5,22,27,[[1023,2,1,22,23],[1024,1,1,23,24],[1034,1,1,24,25],[1037,2,2,25,27]]],[45,3,2,27,29,[[1074,2,1,27,28],[1075,1,1,28,29]]],[46,5,5,29,34,[[1080,3,3,29,32],[1081,1,1,32,33],[1088,1,1,33,34]]],[47,2,2,34,36,[[1091,1,1,34,35],[1092,1,1,35,36]]],[50,1,1,36,37,[[1108,1,1,36,37]]],[51,2,2,37,39,[[1112,1,1,37,38],[1113,1,1,38,39]]],[58,1,1,39,40,[[1146,1,1,39,40]]],[59,1,1,40,41,[[1153,1,1,40,41]]],[65,6,6,41,47,[[1170,1,1,41,42],[1172,1,1,42,43],[1176,1,1,43,44],[1178,1,1,44,45],[1186,1,1,45,46],[1188,1,1,46,47]]]],[23299,23469,23675,23702,23706,23737,24093,24121,24217,24819,24969,25004,25119,25222,25352,25353,25354,25364,25515,25667,25861,25928,27116,27161,27549,27651,27664,28677,28703,28848,28854,28859,28865,29009,29079,29092,29495,29587,29600,30289,30436,30775,30809,30862,30905,31049,31084]]],["faces",[6,5,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[65,4,3,2,5,[[1173,1,1,2,3],[1175,2,1,3,4],[1177,1,1,4,5]]]],[23298,25996,30821,30847,30888]]],["fashion",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30277]]],["person",[5,5,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[46,1,1,3,4,[[1079,1,1,3,4]]],[47,1,1,4,5,[[1092,1,1,4,5]]]],[23888,24687,25800,28834,29087]]],["persons",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28811]]],["presence",[6,6,[[43,2,2,0,2,[[1020,1,1,0,1],[1022,1,1,1,2]]],[46,1,1,2,3,[[1087,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]],[52,1,1,4,5,[[1116,1,1,4,5]]],[57,1,1,5,6,[[1141,1,1,5,6]]]],[27015,27100,28972,29587,29658,30129]]]]},{"k":"G4384","v":[["appointed",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27549]]]]},{"k":"G4385","v":[["bound",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27729]]]]},{"k":"G4386","v":[["*",[10,10,[[42,3,3,0,3,[[1002,1,1,0,1],[1003,1,1,1,2],[1005,1,1,2,3]]],[46,1,1,3,4,[[1078,1,1,3,4]]],[47,1,1,4,5,[[1094,1,1,4,5]]],[53,1,1,5,6,[[1119,1,1,5,6]]],[57,3,3,6,9,[[1136,1,1,6,7],[1139,1,1,7,8],[1142,1,1,8,9]]],[59,1,1,9,10,[[1151,1,1,9,10]]]],[26319,26379,26448,28815,29144,29709,30020,30091,30165,30388]]],["+",[2,2,[[42,1,1,0,1,[[1003,1,1,0,1]]],[57,1,1,1,2,[[1136,1,1,1,2]]]],[26379,30020]]],["before",[4,4,[[42,2,2,0,2,[[1002,1,1,0,1],[1005,1,1,1,2]]],[46,1,1,2,3,[[1078,1,1,2,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]]],[26319,26448,28815,29709]]],["first",[2,2,[[47,1,1,0,1,[[1094,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[29144,30091]]],["former",[2,2,[[57,1,1,0,1,[[1142,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[30165,30388]]]]},{"k":"G4387","v":[["former",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29294]]]]},{"k":"G4388","v":[["*",[3,3,[[44,2,2,0,2,[[1046,1,1,0,1],[1048,1,1,1,2]]],[48,1,1,2,3,[[1097,1,1,2,3]]]],[27943,28016,29215]]],["forth",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28016]]],["purposed",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]]],[27943,29215]]]]},{"k":"G4389","v":[["exhorting",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27584]]]]},{"k":"G4390","v":[["*",[2,2,[[41,1,1,0,1,[[991,1,1,0,1]]],[42,1,1,1,2,[[1016,1,1,1,2]]]],[25735,26871]]],["+",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26871]]],["ran",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25735]]]]},{"k":"G4391","v":[["*",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]]],[25947,27185]]],["before",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25947]]],["beforetime",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27185]]]]},{"k":"G4392","v":[["*",[7,7,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[42,1,1,3,4,[[1011,1,1,3,4]]],[43,1,1,4,5,[[1044,1,1,4,5]]],[49,1,1,5,6,[[1103,1,1,5,6]]],[51,1,1,6,7,[[1112,1,1,6,7]]]],[23932,24713,25826,26721,27885,29379,29575]]],["cloke",[2,2,[[42,1,1,0,1,[[1011,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]]],[26721,29575]]],["colour",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27885]]],["pretence",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]]],[23932,24713,29379]]],["shew",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25826]]]]},{"k":"G4393","v":[["forth",[2,1,[[41,2,1,0,1,[[978,2,1,0,1]]]],[25191]]]]},{"k":"G4394","v":[["*",[19,19,[[39,1,1,0,1,[[941,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]],[45,5,5,2,7,[[1073,1,1,2,3],[1074,2,2,3,5],[1075,2,2,5,7]]],[51,1,1,7,8,[[1115,1,1,7,8]]],[53,2,2,8,10,[[1119,1,1,8,9],[1122,1,1,9,10]]],[60,2,2,10,12,[[1156,2,2,10,12]]],[65,7,7,12,19,[[1167,1,1,12,13],[1177,1,1,13,14],[1185,1,1,14,15],[1188,4,4,15,19]]]],[23553,28251,28644,28667,28673,28684,28700,29641,29714,29761,30499,30500,30700,30878,31027,31087,31090,31098,31099]]],["prophecies",[2,2,[[45,1,1,0,1,[[1074,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]]],[28673,29714]]],["prophecy",[14,14,[[39,1,1,0,1,[[941,1,1,0,1]]],[44,1,1,1,2,[[1057,1,1,1,2]]],[45,2,2,2,4,[[1073,1,1,2,3],[1074,1,1,3,4]]],[53,1,1,4,5,[[1122,1,1,4,5]]],[60,2,2,5,7,[[1156,2,2,5,7]]],[65,7,7,7,14,[[1167,1,1,7,8],[1177,1,1,8,9],[1185,1,1,9,10],[1188,4,4,10,14]]]],[23553,28251,28644,28667,29761,30499,30500,30700,30878,31027,31087,31090,31098,31099]]],["prophesying",[2,2,[[45,2,2,0,2,[[1075,2,2,0,2]]]],[28684,28700]]],["prophesyings",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29641]]]]},{"k":"G4395","v":[["*",[28,27,[[39,4,4,0,4,[[935,1,1,0,1],[939,1,1,1,2],[943,1,1,2,3],[954,1,1,3,4]]],[40,2,2,4,6,[[963,1,1,4,5],[970,1,1,5,6]]],[41,2,2,6,8,[[973,1,1,6,7],[994,1,1,7,8]]],[42,1,1,8,9,[[1007,1,1,8,9]]],[43,4,4,9,13,[[1019,2,2,9,11],[1036,1,1,11,12],[1038,1,1,12,13]]],[45,11,10,13,23,[[1072,2,2,13,15],[1074,1,1,15,16],[1075,8,7,16,23]]],[59,1,1,23,24,[[1151,1,1,23,24]]],[64,1,1,24,25,[[1166,1,1,24,25]]],[65,2,2,25,27,[[1176,1,1,25,26],[1177,1,1,26,27]]]],[23338,23472,23640,24122,24469,24819,24960,25928,26574,26966,26967,27591,27673,28604,28605,28674,28679,28681,28682,28683,28702,28709,28717,30384,30686,30872,30875]]],["Prophesy",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]]],[24122,24819,25928]]],["prophesied",[9,9,[[39,2,2,0,2,[[935,1,1,0,1],[939,1,1,1,2]]],[40,1,1,2,3,[[963,1,1,2,3]]],[41,1,1,3,4,[[973,1,1,3,4]]],[42,1,1,4,5,[[1007,1,1,4,5]]],[43,1,1,5,6,[[1036,1,1,5,6]]],[45,1,1,6,7,[[1075,1,1,6,7]]],[59,1,1,7,8,[[1151,1,1,7,8]]],[64,1,1,8,9,[[1166,1,1,8,9]]]],[23338,23472,24469,24960,26574,27591,28683,30384,30686]]],["prophesieth",[4,4,[[45,4,4,0,4,[[1072,1,1,0,1],[1075,3,3,1,4]]]],[28605,28681,28682,28683]]],["prophesy",[11,11,[[39,1,1,0,1,[[943,1,1,0,1]]],[43,3,3,1,4,[[1019,2,2,1,3],[1038,1,1,3,4]]],[45,5,5,4,9,[[1074,1,1,4,5],[1075,4,4,5,9]]],[65,2,2,9,11,[[1176,1,1,9,10],[1177,1,1,10,11]]]],[23640,26966,26967,27673,28674,28679,28702,28709,28717,30872,30875]]],["prophesying",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28604]]]]},{"k":"G4396","v":[["*",[149,143,[[39,39,36,0,36,[[929,1,1,0,1],[930,4,4,1,5],[931,1,1,5,6],[932,1,1,6,7],[933,2,2,7,9],[935,1,1,9,10],[936,1,1,10,11],[938,3,1,11,12],[939,3,2,12,14],[940,2,2,14,16],[941,3,3,16,19],[942,1,1,19,20],[944,2,2,20,22],[949,4,4,22,26],[950,1,1,26,27],[951,5,5,27,32],[952,1,1,32,33],[954,1,1,33,34],[955,2,2,34,36]]],[40,7,6,36,42,[[957,1,1,36,37],[962,3,2,37,39],[964,1,1,39,40],[967,1,1,40,41],[969,1,1,41,42]]],[41,31,30,42,72,[[973,2,2,42,44],[975,1,1,44,45],[976,3,3,45,48],[978,1,1,48,49],[979,5,4,49,53],[981,2,2,53,55],[982,1,1,55,56],[983,4,4,56,60],[985,3,3,60,63],[988,3,3,63,66],[990,1,1,66,67],[992,1,1,67,68],[996,4,4,68,72]]],[42,14,14,72,86,[[997,4,4,72,76],[1000,2,2,76,78],[1002,2,2,78,80],[1003,2,2,80,82],[1004,2,2,82,84],[1005,1,1,84,85],[1008,1,1,85,86]]],[43,30,30,86,116,[[1019,2,2,86,88],[1020,6,6,88,94],[1024,4,4,94,98],[1025,3,3,98,101],[1027,1,1,101,102],[1028,1,1,102,103],[1030,5,5,103,108],[1032,2,2,108,110],[1038,1,1,110,111],[1041,1,1,111,112],[1043,2,2,112,114],[1045,2,2,114,116]]],[44,3,3,116,119,[[1046,1,1,116,117],[1048,1,1,117,118],[1056,1,1,118,119]]],[45,6,5,119,124,[[1073,2,2,119,121],[1075,4,3,121,124]]],[48,3,3,124,127,[[1098,1,1,124,125],[1099,1,1,125,126],[1100,1,1,126,127]]],[51,1,1,127,128,[[1112,1,1,127,128]]],[55,1,1,128,129,[[1129,1,1,128,129]]],[57,2,2,129,131,[[1133,1,1,129,130],[1143,1,1,130,131]]],[58,1,1,131,132,[[1150,1,1,131,132]]],[59,1,1,132,133,[[1151,1,1,132,133]]],[60,2,2,133,135,[[1157,1,1,133,134],[1158,1,1,134,135]]],[65,8,8,135,143,[[1176,1,1,135,136],[1177,2,2,136,138],[1182,1,1,138,139],[1184,2,2,139,141],[1188,2,2,141,143]]]],[23166,23174,23184,23186,23192,23195,23223,23246,23251,23328,23362,23458,23468,23472,23506,23528,23556,23574,23596,23602,23676,23686,23830,23837,23852,23872,23912,23947,23948,23949,23952,23955,23972,24110,24138,24164,24217,24411,24422,24528,24672,24731,24963,24969,25029,25080,25087,25090,25169,25211,25221,25223,25234,25309,25320,25387,25434,25452,25454,25455,25546,25551,25552,25636,25649,25651,25719,25785,26010,26016,26018,26035,26065,26067,26069,26089,26175,26200,26271,26302,26368,26380,26433,26434,26457,26618,26965,26979,27014,27017,27018,27019,27020,27021,27153,27158,27164,27168,27204,27206,27210,27302,27334,27363,27377,27382,27389,27402,27457,27474,27674,27783,27845,27850,27922,27924,27932,28012,28212,28662,28663,28707,28710,28715,29249,29256,29283,29585,29904,29964,30204,30364,30384,30516,30524,30868,30882,30890,30960,31013,31017,31086,31089]]],["+",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27302]]],["Prophet",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26368]]],["prophet",[66,63,[[39,24,22,0,22,[[929,1,1,0,1],[930,3,3,1,4],[931,1,1,4,5],[932,1,1,5,6],[936,1,1,6,7],[938,2,1,7,8],[939,2,1,8,9],[940,2,2,9,11],[941,2,2,11,13],[942,1,1,13,14],[944,1,1,14,15],[949,4,4,15,19],[952,1,1,19,20],[955,2,2,20,22]]],[40,4,4,22,26,[[962,2,2,22,24],[967,1,1,24,25],[969,1,1,25,26]]],[41,14,13,26,39,[[973,1,1,26,27],[975,1,1,27,28],[976,3,3,28,31],[979,5,4,31,35],[983,1,1,35,36],[985,1,1,36,37],[992,1,1,37,38],[996,1,1,38,39]]],[42,9,9,39,48,[[997,3,3,39,42],[1000,2,2,42,44],[1002,1,1,44,45],[1003,1,1,45,46],[1005,1,1,46,47],[1008,1,1,47,48]]],[43,12,12,48,60,[[1019,2,2,48,50],[1020,2,2,50,52],[1024,2,2,52,54],[1025,3,3,54,57],[1030,1,1,57,58],[1038,1,1,58,59],[1045,1,1,59,60]]],[45,1,1,60,61,[[1075,1,1,60,61]]],[55,1,1,61,62,[[1129,1,1,61,62]]],[60,1,1,62,63,[[1157,1,1,62,63]]]],[23166,23174,23184,23186,23195,23223,23362,23458,23468,23506,23528,23574,23596,23602,23676,23830,23837,23852,23872,23972,24138,24164,24411,24422,24672,24731,24969,25029,25080,25087,25090,25211,25221,25223,25234,25434,25551,25785,26010,26065,26067,26069,26175,26200,26271,26380,26457,26618,26965,26979,27018,27019,27153,27164,27204,27206,27210,27382,27674,27924,28715,29904,30516]]],["prophet's",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23458]]],["prophets",[80,79,[[39,14,14,0,14,[[930,1,1,0,1],[933,2,2,1,3],[935,1,1,3,4],[939,1,1,4,5],[941,1,1,5,6],[944,1,1,6,7],[950,1,1,7,8],[951,5,5,8,13],[954,1,1,13,14]]],[40,3,3,14,17,[[957,1,1,14,15],[962,1,1,15,16],[964,1,1,16,17]]],[41,17,17,17,34,[[973,1,1,17,18],[978,1,1,18,19],[981,2,2,19,21],[982,1,1,21,22],[983,3,3,22,25],[985,2,2,25,27],[988,3,3,27,30],[990,1,1,30,31],[996,3,3,31,34]]],[42,4,4,34,38,[[997,1,1,34,35],[1002,1,1,35,36],[1004,2,2,36,38]]],[43,17,17,38,55,[[1020,4,4,38,42],[1024,2,2,42,44],[1028,1,1,44,45],[1030,4,4,45,49],[1032,2,2,49,51],[1041,1,1,51,52],[1043,2,2,52,54],[1045,1,1,54,55]]],[44,3,3,55,58,[[1046,1,1,55,56],[1048,1,1,56,57],[1056,1,1,57,58]]],[45,5,4,58,62,[[1073,2,2,58,60],[1075,3,2,60,62]]],[48,3,3,62,65,[[1098,1,1,62,63],[1099,1,1,63,64],[1100,1,1,64,65]]],[51,1,1,65,66,[[1112,1,1,65,66]]],[57,2,2,66,68,[[1133,1,1,66,67],[1143,1,1,67,68]]],[58,1,1,68,69,[[1150,1,1,68,69]]],[59,1,1,69,70,[[1151,1,1,69,70]]],[60,1,1,70,71,[[1158,1,1,70,71]]],[65,8,8,71,79,[[1176,1,1,71,72],[1177,2,2,72,74],[1182,1,1,74,75],[1184,2,2,75,77],[1188,2,2,77,79]]]],[23192,23246,23251,23328,23472,23556,23686,23912,23947,23948,23949,23952,23955,24110,24217,24422,24528,24963,25169,25309,25320,25387,25452,25454,25455,25546,25552,25636,25649,25651,25719,26016,26018,26035,26089,26302,26433,26434,27014,27017,27020,27021,27158,27168,27334,27363,27377,27389,27402,27457,27474,27783,27845,27850,27922,27932,28012,28212,28662,28663,28707,28710,29249,29256,29283,29585,29964,30204,30364,30384,30524,30868,30882,30890,30960,31013,31017,31086,31089]]]]},{"k":"G4397","v":[["*",[2,2,[[44,1,1,0,1,[[1061,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[28362,30498]]],["prophecy",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30498]]],["prophets",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28362]]]]},{"k":"G4398","v":[["prophetess",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[65,1,1,1,2,[[1168,1,1,1,2]]]],[25009,30737]]]]},{"k":"G4399","v":[["prevented",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23725]]]]},{"k":"G4400","v":[["*",[2,2,[[43,2,2,0,2,[[1039,1,1,0,1],[1043,1,1,1,2]]]],[27718,27839]]],["chosen",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27718]]],["make",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27839]]]]},{"k":"G4401","v":[["before",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27300]]]]},{"k":"G4402","v":[["Prochorus",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27106]]]]},{"k":"G4403","v":[["*",[3,3,[[40,1,1,0,1,[[960,1,1,0,1]]],[43,2,2,1,3,[[1044,2,2,1,3]]]],[24361,27884,27896]]],["part",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27896]]],["ship",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24361]]],["stern",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27884]]]]},{"k":"G4404","v":[["*",[10,10,[[39,2,2,0,2,[[944,1,1,0,1],[948,1,1,1,2]]],[40,6,6,2,8,[[957,1,1,2,3],[967,1,1,3,4],[969,1,1,4,5],[971,1,1,5,6],[972,2,2,6,8]]],[42,1,1,8,9,[[1016,1,1,8,9]]],[43,1,1,9,10,[[1045,1,1,9,10]]]],[23675,23793,24250,24660,24752,24827,24875,24882,26868,27922]]],["+",[2,2,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23793,24250]]],["early",[2,2,[[40,1,1,0,1,[[972,1,1,0,1]]],[42,1,1,1,2,[[1016,1,1,1,2]]]],[24882,26868]]],["morning",[6,6,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,4,4,1,5,[[967,1,1,1,2],[969,1,1,2,3],[971,1,1,3,4],[972,1,1,4,5]]],[43,1,1,5,6,[[1045,1,1,5,6]]]],[23675,24660,24752,24827,24875,27922]]]]},{"k":"G4405","v":[["*",[4,4,[[39,2,2,0,2,[[949,1,1,0,1],[955,1,1,1,2]]],[42,2,2,2,4,[[1014,1,1,2,3],[1017,1,1,3,4]]]],[23844,24130,26813,26902]]],["early",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26813]]],["morning",[3,3,[[39,2,2,0,2,[[949,1,1,0,1],[955,1,1,1,2]]],[42,1,1,2,3,[[1017,1,1,2,3]]]],[23844,24130,26902]]]]},{"k":"G4406","v":[["early",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30361]]]]},{"k":"G4407","v":[["morning",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30745]]]]},{"k":"G4408","v":[["*",[2,2,[[43,2,2,0,2,[[1044,2,2,0,2]]]],[27885,27896]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27896]]],["foreship",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27885]]]]},{"k":"G4409","v":[["preeminence",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29483]]]]},{"k":"G4410","v":[["seats",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,2,2,4,[[983,1,1,2,3],[992,1,1,3,4]]]],[23924,24712,25448,25825]]]]},{"k":"G4411","v":[["*",[5,5,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,3,3,2,5,[[986,2,2,2,4],[992,1,1,4,5]]]],[23924,24712,25560,25561,25825]]],["room",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25561]]],["rooms",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,2,2,4,[[986,1,1,2,3],[992,1,1,3,4]]]],[23924,24712,25560,25825]]]]},{"k":"G4412","v":[["*",[60,60,[[39,9,9,0,9,[[933,1,1,0,1],[934,1,1,1,2],[935,1,1,2,3],[936,1,1,3,4],[940,1,1,4,5],[941,1,1,5,6],[945,2,2,6,8],[951,1,1,8,9]]],[40,7,7,9,16,[[959,1,1,9,10],[960,1,1,10,11],[963,1,1,11,12],[965,2,2,12,14],[969,1,1,14,15],[972,1,1,15,16]]],[41,10,10,16,26,[[978,1,1,16,17],[981,2,2,17,19],[982,1,1,19,20],[983,1,1,20,21],[984,1,1,21,22],[986,2,2,22,24],[989,1,1,24,25],[993,1,1,25,26]]],[42,6,6,26,32,[[998,1,1,26,27],[1006,1,1,27,28],[1008,1,1,28,29],[1011,1,1,29,30],[1014,1,1,30,31],[1015,1,1,31,32]]],[43,6,6,32,38,[[1020,1,1,32,33],[1024,1,1,33,34],[1028,1,1,34,35],[1030,1,1,35,36],[1032,1,1,36,37],[1043,1,1,37,38]]],[44,6,6,38,44,[[1046,2,2,38,40],[1047,2,2,40,42],[1048,1,1,42,43],[1060,1,1,43,44]]],[45,3,3,44,47,[[1072,1,1,44,45],[1073,1,1,45,46],[1076,1,1,46,47]]],[46,1,1,47,48,[[1085,1,1,47,48]]],[48,1,1,48,49,[[1100,1,1,48,49]]],[51,1,1,49,50,[[1114,1,1,49,50]]],[52,1,1,50,51,[[1117,1,1,50,51]]],[53,3,3,51,54,[[1120,1,1,51,52],[1121,1,1,52,53],[1123,1,1,53,54]]],[54,1,1,54,55,[[1125,1,1,54,55]]],[57,1,1,55,56,[[1139,1,1,55,56]]],[58,1,1,56,57,[[1148,1,1,56,57]]],[59,1,1,57,58,[[1154,1,1,57,58]]],[60,2,2,58,60,[[1156,1,1,58,59],[1158,1,1,59,60]]]],[23258,23315,23321,23366,23518,23569,23710,23711,23944,24315,24351,24490,24549,24550,24727,24882,25188,25360,25362,25368,25443,25460,25581,25584,25676,25835,26105,26521,26596,26717,26798,26864,27022,27128,27333,27408,27456,27843,27938,27946,27971,27972,27993,28327,28618,28662,28764,28937,29281,29619,29664,29717,29741,29767,29814,30066,30336,30463,30499,30525]]],["+",[4,4,[[42,1,1,0,1,[[1015,1,1,0,1]]],[44,1,1,1,2,[[1048,1,1,1,2]]],[57,1,1,2,3,[[1139,1,1,2,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]]],[26864,27993,30066,30336]]],["First",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27938]]],["all",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[45,1,1,1,2,[[1072,1,1,1,2]]]],[25460,28618]]],["before",[1,1,[[42,1,1,0,1,[[1011,1,1,0,1]]]],[26717]]],["beginning",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26105]]],["first",[51,51,[[39,9,9,0,9,[[933,1,1,0,1],[934,1,1,1,2],[935,1,1,2,3],[936,1,1,3,4],[940,1,1,4,5],[941,1,1,5,6],[945,2,2,6,8],[951,1,1,8,9]]],[40,7,7,9,16,[[959,1,1,9,10],[960,1,1,10,11],[963,1,1,11,12],[965,2,2,12,14],[969,1,1,14,15],[972,1,1,15,16]]],[41,9,9,16,25,[[978,1,1,16,17],[981,2,2,17,19],[982,1,1,19,20],[983,1,1,20,21],[986,2,2,21,23],[989,1,1,23,24],[993,1,1,24,25]]],[42,3,3,25,28,[[1006,1,1,25,26],[1008,1,1,26,27],[1014,1,1,27,28]]],[43,6,6,28,34,[[1020,1,1,28,29],[1024,1,1,29,30],[1028,1,1,30,31],[1030,1,1,31,32],[1032,1,1,32,33],[1043,1,1,33,34]]],[44,4,4,34,38,[[1046,1,1,34,35],[1047,2,2,35,37],[1060,1,1,37,38]]],[45,2,2,38,40,[[1073,1,1,38,39],[1076,1,1,39,40]]],[46,1,1,40,41,[[1085,1,1,40,41]]],[48,1,1,41,42,[[1100,1,1,41,42]]],[51,1,1,42,43,[[1114,1,1,42,43]]],[52,1,1,43,44,[[1117,1,1,43,44]]],[53,3,3,44,47,[[1120,1,1,44,45],[1121,1,1,45,46],[1123,1,1,46,47]]],[54,1,1,47,48,[[1125,1,1,47,48]]],[59,1,1,48,49,[[1154,1,1,48,49]]],[60,2,2,49,51,[[1156,1,1,49,50],[1158,1,1,50,51]]]],[23258,23315,23321,23366,23518,23569,23710,23711,23944,24315,24351,24490,24549,24550,24727,24882,25188,25360,25362,25368,25443,25581,25584,25676,25835,26521,26596,26798,27022,27128,27333,27408,27456,27843,27946,27971,27972,28327,28662,28764,28937,29281,29619,29664,29717,29741,29767,29814,30463,30499,30525]]]]},{"k":"G4413","v":[["*",[100,94,[[39,17,15,0,15,[[938,1,1,0,1],[940,1,1,1,2],[945,1,1,2,3],[947,2,1,3,4],[948,5,4,4,8],[949,3,3,8,11],[950,2,2,11,13],[954,1,1,13,14],[955,1,1,14,15]]],[40,11,10,15,25,[[962,1,1,15,16],[965,1,1,16,17],[966,3,2,17,19],[968,4,4,19,23],[970,1,1,23,24],[972,1,1,24,25]]],[41,10,9,25,34,[[974,1,1,25,26],[983,1,1,26,27],[985,2,1,27,28],[986,1,1,28,29],[987,1,1,29,30],[988,1,1,30,31],[991,2,2,31,33],[992,1,1,33,34]]],[42,8,8,34,42,[[997,3,3,34,37],[1001,1,1,37,38],[1004,1,1,38,39],[1015,1,1,39,40],[1016,2,2,40,42]]],[43,11,11,42,53,[[1018,1,1,42,43],[1029,1,1,43,44],[1030,1,1,44,45],[1033,1,1,45,46],[1034,1,1,46,47],[1037,1,1,47,48],[1042,1,1,48,49],[1043,1,1,49,50],[1044,1,1,50,51],[1045,2,2,51,53]]],[44,1,1,53,54,[[1055,1,1,53,54]]],[45,4,4,54,58,[[1075,1,1,54,55],[1076,3,3,55,58]]],[48,1,1,58,59,[[1102,1,1,58,59]]],[49,1,1,59,60,[[1103,1,1,59,60]]],[53,4,4,60,64,[[1119,2,2,60,62],[1120,1,1,62,63],[1123,1,1,63,64]]],[54,2,2,64,66,[[1126,1,1,64,65],[1128,1,1,65,66]]],[57,9,9,66,75,[[1140,2,2,66,68],[1141,6,6,68,74],[1142,1,1,74,75]]],[60,1,1,75,76,[[1157,1,1,75,76]]],[61,1,1,76,77,[[1162,1,1,76,77]]],[65,19,17,77,94,[[1167,2,2,77,79],[1168,4,4,79,83],[1170,2,2,83,85],[1174,1,1,85,86],[1179,2,1,86,87],[1182,1,1,87,88],[1186,2,2,88,90],[1187,4,3,90,93],[1188,1,1,93,94]]]],[23419,23534,23727,23792,23800,23802,23808,23819,23854,23857,23862,23897,23910,24071,24193,24428,24573,24619,24632,24693,24701,24702,24703,24766,24882,24975,25431,25548,25571,25610,25625,25747,25778,25808,26059,26074,26085,26214,26388,26857,26871,26875,26924,27347,27412,27495,27527,27644,27798,27846,27898,27906,27916,28207,28708,28721,28763,28765,29339,29366,29711,29712,29729,29775,29833,29886,30099,30105,30106,30107,30111,30113,30120,30123,30142,30520,30622,30708,30714,30721,30722,30725,30736,30769,30775,30834,30920,30956,31043,31044,31054,31057,31072,31093]]],["+",[4,4,[[43,1,1,0,1,[[1045,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[57,1,1,3,4,[[1140,1,1,3,4]]]],[27916,28721,29833,30105]]],["First",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28207]]],["before",[2,2,[[42,2,2,0,2,[[997,2,2,0,2]]]],[26059,26074]]],["beginning",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30520]]],["best",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25610]]],["chief",[7,7,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,1,1,2,3,[[991,1,1,2,3]]],[43,3,3,3,6,[[1033,1,1,3,4],[1034,1,1,4,5],[1042,1,1,5,6]]],[53,1,1,6,7,[[1119,1,1,6,7]]]],[23819,24428,25778,27495,27527,27798,29711]]],["chiefest",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24632]]],["first",[79,73,[[39,16,14,0,14,[[938,1,1,0,1],[940,1,1,1,2],[945,1,1,2,3],[947,2,1,3,4],[948,4,3,4,7],[949,3,3,7,10],[950,2,2,10,12],[954,1,1,12,13],[955,1,1,13,14]]],[40,9,8,14,22,[[965,1,1,14,15],[966,2,1,15,16],[968,4,4,16,20],[970,1,1,20,21],[972,1,1,21,22]]],[41,8,7,22,29,[[974,1,1,22,23],[983,1,1,23,24],[985,2,1,24,25],[986,1,1,25,26],[988,1,1,26,27],[991,1,1,27,28],[992,1,1,28,29]]],[42,6,6,29,35,[[997,1,1,29,30],[1001,1,1,30,31],[1004,1,1,31,32],[1015,1,1,32,33],[1016,2,2,33,35]]],[43,4,4,35,39,[[1029,1,1,35,36],[1037,1,1,36,37],[1043,1,1,37,38],[1044,1,1,38,39]]],[45,3,3,39,42,[[1075,1,1,39,40],[1076,2,2,40,42]]],[48,1,1,42,43,[[1102,1,1,42,43]]],[49,1,1,43,44,[[1103,1,1,43,44]]],[53,3,3,44,47,[[1119,1,1,44,45],[1120,1,1,45,46],[1123,1,1,46,47]]],[54,1,1,47,48,[[1128,1,1,47,48]]],[57,8,8,48,56,[[1140,1,1,48,49],[1141,6,6,49,55],[1142,1,1,55,56]]],[61,1,1,56,57,[[1162,1,1,56,57]]],[65,18,16,57,73,[[1167,2,2,57,59],[1168,4,4,59,63],[1170,2,2,63,65],[1174,1,1,65,66],[1179,2,1,66,67],[1182,1,1,67,68],[1186,2,2,68,70],[1187,3,2,70,72],[1188,1,1,72,73]]]],[23419,23534,23727,23792,23800,23802,23808,23854,23857,23862,23897,23910,24071,24193,24573,24619,24693,24701,24702,24703,24766,24882,24975,25431,25548,25571,25625,25747,25808,26085,26214,26388,26857,26871,26875,27347,27644,27846,27898,28708,28763,28765,29339,29366,29712,29729,29775,29886,30099,30106,30107,30111,30113,30120,30123,30142,30622,30708,30714,30721,30722,30725,30736,30769,30775,30834,30920,30956,31043,31044,31054,31072,31093]]],["former",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26924]]],["man",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27906]]],["men",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27412]]],["things",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31057]]]]},{"k":"G4414","v":[["ringleader",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27774]]]]},{"k":"G4415","v":[["birthright",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30228]]]]},{"k":"G4416","v":[["*",[9,9,[[39,1,1,0,1,[[929,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[44,1,1,2,3,[[1053,1,1,2,3]]],[50,2,2,3,5,[[1107,2,2,3,5]]],[57,3,3,5,8,[[1133,1,1,5,6],[1143,1,1,6,7],[1144,1,1,7,8]]],[65,1,1,8,9,[[1167,1,1,8,9]]]],[23169,24980,28145,29480,29483,29969,30200,30235,30702]]],["begotten",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30702]]],["firstbegotten",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29969]]],["firstborn",[7,7,[[39,1,1,0,1,[[929,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[44,1,1,2,3,[[1053,1,1,2,3]]],[50,2,2,3,5,[[1107,2,2,3,5]]],[57,2,2,5,7,[[1143,1,1,5,6],[1144,1,1,6,7]]]],[23169,24980,28145,29480,29483,30200,30235]]]]},{"k":"G4417","v":[["*",[5,4,[[44,1,1,0,1,[[1056,1,1,0,1]]],[58,3,2,1,3,[[1147,1,1,1,2],[1148,2,1,2,3]]],[60,1,1,3,4,[[1156,1,1,3,4]]]],[28220,30303,30321,30489]]],["fall",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30489]]],["offend",[3,2,[[58,3,2,0,2,[[1147,1,1,0,1],[1148,2,1,1,2]]]],[30303,30321]]],["stumbled",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28220]]]]},{"k":"G4418","v":[["heel",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26648]]]]},{"k":"G4419","v":[["pinnacle",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]]],[23214,25072]]]]},{"k":"G4420","v":[["wings",[5,5,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[65,3,3,2,5,[[1170,1,1,2,3],[1175,1,1,3,4],[1178,1,1,4,5]]]],[23955,25552,30776,30849,30905]]]]},{"k":"G4421","v":[["birds",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28757]]]]},{"k":"G4422","v":[["terrified",[2,2,[[41,2,2,0,2,[[993,1,1,0,1],[996,1,1,1,2]]]],[25835,26028]]]]},{"k":"G4423","v":[["amazement",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30430]]]]},{"k":"G4424","v":[["Ptolemais",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27671]]]]},{"k":"G4425","v":[["fan",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23204,25042]]]]},{"k":"G4426","v":[["+",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29389]]]]},{"k":"G4427","v":[["spittle",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26446]]]]},{"k":"G4428","v":[["closed",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25083]]]]},{"k":"G4429","v":[["*",[3,3,[[40,2,2,0,2,[[963,1,1,0,1],[964,1,1,1,2]]],[42,1,1,2,3,[[1005,1,1,2,3]]]],[24496,24523,26446]]],["spat",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26446]]],["spit",[2,2,[[40,2,2,0,2,[[963,1,1,0,1],[964,1,1,1,2]]]],[24496,24523]]]]},{"k":"G4430","v":[["*",[5,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[65,3,2,2,4,[[1177,3,2,2,4]]]],[23985,24436,30880,30881]]],["bodies",[3,2,[[65,3,2,0,2,[[1177,3,2,0,2]]]],[30880,30881]]],["carcase",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23985]]],["corpse",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24436]]]]},{"k":"G4431","v":[["fall",[2,2,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]]],[23343,25007]]]]},{"k":"G4432","v":[["poverty",[3,3,[[46,2,2,0,2,[[1085,2,2,0,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[28934,28941,30726]]]]},{"k":"G4433","v":[["poor",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28941]]]]},{"k":"G4434","v":[["*",[34,34,[[39,5,5,0,5,[[933,1,1,0,1],[939,1,1,1,2],[947,1,1,2,3],[954,2,2,3,5]]],[40,5,5,5,10,[[966,1,1,5,6],[968,2,2,6,8],[970,2,2,8,10]]],[41,10,10,10,20,[[976,1,1,10,11],[978,1,1,11,12],[979,1,1,12,13],[986,2,2,13,15],[988,2,2,15,17],[990,1,1,17,18],[991,1,1,18,19],[993,1,1,19,20]]],[42,4,4,20,24,[[1008,3,3,20,23],[1009,1,1,23,24]]],[44,1,1,24,25,[[1060,1,1,24,25]]],[46,1,1,25,26,[[1083,1,1,25,26]]],[47,2,2,26,28,[[1092,1,1,26,27],[1094,1,1,27,28]]],[58,4,4,28,32,[[1147,4,4,28,32]]],[65,2,2,32,34,[[1169,1,1,32,33],[1179,1,1,33,34]]]],[23237,23464,23783,24063,24065,24609,24715,24716,24759,24761,25081,25166,25217,25566,25574,25640,25642,25710,25739,25829,26585,26586,26588,26659,28329,28908,29091,29140,30295,30296,30298,30299,30763,30924]]],["+",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30924]]],["beggar",[2,2,[[41,2,2,0,2,[[988,2,2,0,2]]]],[25640,25642]]],["beggarly",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29140]]],["man",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30295]]],["poor",[29,29,[[39,5,5,0,5,[[933,1,1,0,1],[939,1,1,1,2],[947,1,1,2,3],[954,2,2,3,5]]],[40,5,5,5,10,[[966,1,1,5,6],[968,2,2,6,8],[970,2,2,8,10]]],[41,8,8,10,18,[[976,1,1,10,11],[978,1,1,11,12],[979,1,1,12,13],[986,2,2,13,15],[990,1,1,15,16],[991,1,1,16,17],[993,1,1,17,18]]],[42,4,4,18,22,[[1008,3,3,18,21],[1009,1,1,21,22]]],[44,1,1,22,23,[[1060,1,1,22,23]]],[46,1,1,23,24,[[1083,1,1,23,24]]],[47,1,1,24,25,[[1092,1,1,24,25]]],[58,3,3,25,28,[[1147,3,3,25,28]]],[65,1,1,28,29,[[1169,1,1,28,29]]]],[23237,23464,23783,24063,24065,24609,24715,24716,24759,24761,25081,25166,25217,25566,25574,25710,25739,25829,26585,26586,26588,26659,28329,28908,29091,30296,30298,30299,30763]]]]},{"k":"G4435","v":[["oft",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24466]]]]},{"k":"G4436","v":[["divination",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27499]]]]},{"k":"G4437","v":[["*",[3,3,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1041,1,1,1,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]]],[25140,27795,29786]]],["often",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[25140,29786]]],["oftener",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27795]]]]},{"k":"G4438","v":[["fight",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28566]]]]},{"k":"G4439","v":[["*",[10,9,[[39,4,3,0,3,[[935,3,2,0,2],[944,1,1,2,3]]],[41,2,2,3,5,[[979,1,1,3,4],[985,1,1,4,5]]],[43,3,3,5,8,[[1020,1,1,5,6],[1026,1,1,6,7],[1029,1,1,7,8]]],[57,1,1,8,9,[[1145,1,1,8,9]]]],[23329,23330,23690,25207,25542,27006,27240,27347,30253]]],["+",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27240]]],["gate",[8,7,[[39,3,2,0,2,[[935,3,2,0,2]]],[41,2,2,2,4,[[979,1,1,2,3],[985,1,1,3,4]]],[43,2,2,4,6,[[1020,1,1,4,5],[1029,1,1,5,6]]],[57,1,1,6,7,[[1145,1,1,6,7]]]],[23329,23330,25207,25542,27006,27347,30253]]],["gates",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23690]]]]},{"k":"G4440","v":[["*",[18,12,[[39,1,1,0,1,[[954,1,1,0,1]]],[41,1,1,1,2,[[988,1,1,1,2]]],[43,5,4,2,6,[[1027,1,1,2,3],[1029,3,2,3,5],[1031,1,1,5,6]]],[65,11,6,6,12,[[1187,10,5,6,11],[1188,1,1,11,12]]]],[24125,25640,27276,27350,27351,27427,31065,31066,31068,31074,31078,31094]]],["gate",[6,5,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,4,3,1,4,[[1027,1,1,1,2],[1029,3,2,2,4]]],[65,1,1,4,5,[[1187,1,1,4,5]]]],[25640,27276,27350,27351,31074]]],["gates",[11,7,[[43,1,1,0,1,[[1031,1,1,0,1]]],[65,10,6,1,7,[[1187,9,5,1,6],[1188,1,1,6,7]]]],[27427,31065,31066,31068,31074,31078,31094]]],["porch",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24125]]]]},{"k":"G4441","v":[["*",[12,12,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,2,2,1,3,[[987,1,1,1,2],[990,1,1,2,3]]],[42,2,2,3,5,[[1000,1,1,3,4],[1009,1,1,4,5]]],[43,7,7,5,12,[[1021,1,1,5,6],[1027,2,2,6,8],[1038,1,1,8,9],[1040,3,3,9,12]]]],[23173,25614,25724,26208,26654,27029,27277,27288,27697,27753,27754,27768]]],["ask",[2,2,[[42,1,1,0,1,[[1009,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]]],[26654,27288]]],["asked",[5,5,[[41,2,2,0,2,[[987,1,1,0,1],[990,1,1,1,2]]],[43,3,3,2,5,[[1021,1,1,2,3],[1027,1,1,3,4],[1040,1,1,4,5]]]],[25614,25724,27029,27277,27753]]],["demanded",[2,2,[[39,1,1,0,1,[[930,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[23173,27697]]],["enquire",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27754]]],["enquired",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26208]]],["understood",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27768]]]]},{"k":"G4442","v":[["*",[74,73,[[39,12,12,0,12,[[931,3,3,0,3],[933,1,1,3,4],[935,1,1,4,5],[941,3,3,5,8],[945,1,1,8,9],[946,2,2,9,11],[953,1,1,11,12]]],[40,8,8,12,20,[[965,8,8,12,20]]],[41,7,7,20,27,[[975,3,3,20,23],[981,1,1,23,24],[984,1,1,24,25],[989,1,1,25,26],[994,1,1,26,27]]],[42,1,1,27,28,[[1011,1,1,27,28]]],[43,4,4,28,32,[[1019,2,2,28,30],[1024,1,1,30,31],[1045,1,1,31,32]]],[44,1,1,32,33,[[1057,1,1,32,33]]],[45,3,2,33,35,[[1064,3,2,33,35]]],[52,1,1,35,36,[[1116,1,1,35,36]]],[57,5,5,36,41,[[1133,1,1,36,37],[1142,1,1,37,38],[1143,1,1,38,39],[1144,2,2,39,41]]],[58,3,3,41,44,[[1148,2,2,41,43],[1150,1,1,43,44]]],[59,1,1,44,45,[[1151,1,1,44,45]]],[60,1,1,45,46,[[1158,1,1,45,46]]],[64,2,2,46,48,[[1166,2,2,46,48]]],[65,25,25,48,73,[[1167,1,1,48,49],[1168,1,1,49,50],[1169,1,1,50,51],[1170,1,1,51,52],[1174,3,3,52,55],[1175,2,2,55,57],[1176,1,1,57,58],[1177,1,1,58,59],[1179,1,1,59,60],[1180,2,2,60,62],[1181,1,1,62,63],[1182,1,1,63,64],[1183,1,1,64,65],[1184,1,1,65,66],[1185,2,2,66,68],[1186,4,4,68,72],[1187,1,1,72,73]]]],[23202,23203,23204,23256,23335,23579,23581,23589,23715,23735,23736,24049,24560,24581,24582,24583,24584,24585,24586,24587,25034,25041,25042,25355,25508,25680,25919,26705,26952,26968,27146,27904,28265,28423,28425,29657,29970,30160,30206,30230,30241,30324,30325,30357,30381,30529,30679,30695,30711,30735,30764,30773,30832,30834,30835,30857,30858,30862,30877,30921,30936,30944,30948,30962,30991,31001,31029,31037,31047,31048,31052,31053,31061]]],["fiery",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30160]]],["fire",[73,72,[[39,12,12,0,12,[[931,3,3,0,3],[933,1,1,3,4],[935,1,1,4,5],[941,3,3,5,8],[945,1,1,8,9],[946,2,2,9,11],[953,1,1,11,12]]],[40,8,8,12,20,[[965,8,8,12,20]]],[41,7,7,20,27,[[975,3,3,20,23],[981,1,1,23,24],[984,1,1,24,25],[989,1,1,25,26],[994,1,1,26,27]]],[42,1,1,27,28,[[1011,1,1,27,28]]],[43,4,4,28,32,[[1019,2,2,28,30],[1024,1,1,30,31],[1045,1,1,31,32]]],[44,1,1,32,33,[[1057,1,1,32,33]]],[45,3,2,33,35,[[1064,3,2,33,35]]],[52,1,1,35,36,[[1116,1,1,35,36]]],[57,4,4,36,40,[[1133,1,1,36,37],[1143,1,1,37,38],[1144,2,2,38,40]]],[58,3,3,40,43,[[1148,2,2,40,42],[1150,1,1,42,43]]],[59,1,1,43,44,[[1151,1,1,43,44]]],[60,1,1,44,45,[[1158,1,1,44,45]]],[64,2,2,45,47,[[1166,2,2,45,47]]],[65,25,25,47,72,[[1167,1,1,47,48],[1168,1,1,48,49],[1169,1,1,49,50],[1170,1,1,50,51],[1174,3,3,51,54],[1175,2,2,54,56],[1176,1,1,56,57],[1177,1,1,57,58],[1179,1,1,58,59],[1180,2,2,59,61],[1181,1,1,61,62],[1182,1,1,62,63],[1183,1,1,63,64],[1184,1,1,64,65],[1185,2,2,65,67],[1186,4,4,67,71],[1187,1,1,71,72]]]],[23202,23203,23204,23256,23335,23579,23581,23589,23715,23735,23736,24049,24560,24581,24582,24583,24584,24585,24586,24587,25034,25041,25042,25355,25508,25680,25919,26705,26952,26968,27146,27904,28265,28423,28425,29657,29970,30206,30230,30241,30324,30325,30357,30381,30529,30679,30695,30711,30735,30764,30773,30832,30834,30835,30857,30858,30862,30877,30921,30936,30944,30948,30962,30991,31001,31029,31037,31047,31048,31052,31053,31061]]]]},{"k":"G4443","v":[["fire",[2,2,[[43,2,2,0,2,[[1045,2,2,0,2]]]],[27901,27902]]]]},{"k":"G4444","v":[["tower",[4,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,2,2,2,4,[[985,1,1,2,3],[986,1,1,3,4]]]],[23859,24674,25522,25581]]]]},{"k":"G4445","v":[["fever",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]]],[23359,24245]]]]},{"k":"G4446","v":[["fever",[6,6,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,2,2,2,4,[[976,2,2,2,4]]],[42,1,1,4,5,[[1000,1,1,4,5]]],[43,1,1,5,6,[[1045,1,1,5,6]]]],[23360,24246,25101,25102,26208,27907]]]]},{"k":"G4447","v":[["fire",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30857]]]]},{"k":"G4448","v":[["*",[6,6,[[45,1,1,0,1,[[1068,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]],[60,1,1,3,4,[[1158,1,1,3,4]]],[65,2,2,4,6,[[1167,1,1,4,5],[1169,1,1,5,6]]]],[28496,29018,29353,30534,30712,30764]]],["burn",[2,2,[[45,1,1,0,1,[[1068,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[28496,29018]]],["burned",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30712]]],["fiery",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29353]]],["fire",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30534]]],["tried",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30764]]]]},{"k":"G4449","v":[["red",[2,2,[[39,2,2,0,2,[[944,2,2,0,2]]]],[23674,23675]]]]},{"k":"G4450","v":[["red",[2,2,[[65,2,2,0,2,[[1172,1,1,0,1],[1178,1,1,1,2]]]],[30797,30894]]]]},{"k":"G4451","v":[["*",[3,3,[[59,1,1,0,1,[[1154,1,1,0,1]]],[65,2,2,1,3,[[1184,2,2,1,3]]]],[30458,31002,31011]]],["burning",[2,2,[[65,2,2,0,2,[[1184,2,2,0,2]]]],[31002,31011]]],["trial",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30458]]]]},{"k":"G4452","v":[]},{"k":"G4453","v":[["*",[22,20,[[39,6,5,0,5,[[938,1,1,0,1],[941,1,1,1,2],[947,1,1,2,3],[949,2,1,3,4],[953,1,1,4,5]]],[40,3,2,5,7,[[966,1,1,5,6],[967,2,1,6,7]]],[41,6,6,7,13,[[984,2,2,7,9],[989,1,1,9,10],[990,1,1,10,11],[991,1,1,11,12],[994,1,1,12,13]]],[42,2,2,13,15,[[998,2,2,13,15]]],[43,3,3,15,18,[[1021,2,2,15,17],[1022,1,1,17,18]]],[45,1,1,18,19,[[1071,1,1,18,19]]],[65,1,1,19,20,[[1179,1,1,19,20]]]],[23446,23583,23783,23838,24017,24609,24655,25465,25492,25679,25710,25776,25900,26109,26111,27056,27059,27060,28592,30925]]],["Sell",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25492]]],["sell",[6,6,[[39,2,2,0,2,[[947,1,1,0,1],[953,1,1,1,2]]],[40,1,1,2,3,[[966,1,1,2,3]]],[41,2,2,3,5,[[990,1,1,3,4],[994,1,1,4,5]]],[65,1,1,5,6,[[1179,1,1,5,6]]]],[23783,24017,24609,25710,25900,30925]]],["selleth",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23583]]],["sold",[14,12,[[39,3,2,0,2,[[938,1,1,0,1],[949,2,1,1,2]]],[40,2,1,2,3,[[967,2,1,2,3]]],[41,3,3,3,6,[[984,1,1,3,4],[989,1,1,4,5],[991,1,1,5,6]]],[42,2,2,6,8,[[998,2,2,6,8]]],[43,3,3,8,11,[[1021,2,2,8,10],[1022,1,1,10,11]]],[45,1,1,11,12,[[1071,1,1,11,12]]]],[23446,23838,24655,25465,25679,25776,26109,26111,27056,27059,27060,28592]]]]},{"k":"G4454","v":[["colt",[12,11,[[39,3,3,0,3,[[949,3,3,0,3]]],[40,4,4,3,7,[[967,4,4,3,7]]],[41,4,3,7,10,[[991,4,3,7,10]]],[42,1,1,10,11,[[1008,1,1,10,11]]]],[23828,23831,23833,24642,24644,24645,24647,25761,25764,25766,26595]]]]},{"k":"G4455","v":[["*",[6,6,[[41,1,1,0,1,[[991,1,1,0,1]]],[42,4,4,1,5,[[997,1,1,1,2],[1001,1,1,2,3],[1002,1,1,3,4],[1004,1,1,4,5]]],[61,1,1,5,6,[[1162,1,1,5,6]]]],[25761,26062,26247,26292,26414,30615]]],["+",[3,3,[[41,1,1,0,1,[[991,1,1,0,1]]],[42,2,2,1,3,[[1002,1,1,1,2],[1004,1,1,2,3]]]],[25761,26292,26414]]],["time",[3,3,[[42,2,2,0,2,[[997,1,1,0,1],[1001,1,1,1,2]]],[61,1,1,2,3,[[1162,1,1,2,3]]]],[26062,26247,30615]]]]},{"k":"G4456","v":[["*",[5,5,[[40,2,2,0,2,[[962,1,1,0,1],[964,1,1,1,2]]],[42,1,1,2,3,[[1008,1,1,2,3]]],[44,1,1,3,4,[[1056,1,1,3,4]]],[46,1,1,4,5,[[1080,1,1,4,5]]]],[24459,24517,26620,28216,28855]]],["blinded",[2,2,[[44,1,1,0,1,[[1056,1,1,0,1]]],[46,1,1,1,2,[[1080,1,1,1,2]]]],[28216,28855]]],["hardened",[3,3,[[40,2,2,0,2,[[962,1,1,0,1],[964,1,1,1,2]]],[42,1,1,2,3,[[1008,1,1,2,3]]]],[24459,24517,26620]]]]},{"k":"G4457","v":[["*",[3,3,[[40,1,1,0,1,[[959,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]]],[24293,28234,29290]]],["blindness",[2,2,[[44,1,1,0,1,[[1056,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[28234,29290]]],["hardness",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24293]]]]},{"k":"G4458","v":[]},{"k":"G4459","v":[["*",[105,102,[[39,14,14,0,14,[[934,1,1,0,1],[935,1,1,1,2],[938,1,1,2,3],[940,4,4,3,7],[944,1,1,7,8],[949,1,1,8,9],[950,3,3,9,12],[951,1,1,12,13],[954,1,1,13,14]]],[40,14,14,14,28,[[958,1,1,14,15],[959,1,1,15,16],[960,2,2,16,18],[961,1,1,18,19],[964,1,1,19,20],[965,1,1,20,21],[966,2,2,21,23],[967,1,1,23,24],[968,2,2,24,26],[970,2,2,26,28]]],[41,16,16,28,44,[[973,1,1,28,29],[978,1,1,29,30],[980,2,2,30,32],[982,1,1,32,33],[983,1,1,33,34],[984,4,4,34,38],[986,1,1,38,39],[990,1,1,39,40],[992,2,2,40,42],[994,2,2,42,44]]],[42,20,20,44,64,[[999,3,3,44,47],[1000,1,1,47,48],[1001,2,2,48,50],[1002,2,2,50,52],[1003,1,1,52,53],[1004,1,1,53,54],[1005,6,6,54,60],[1007,1,1,60,61],[1008,1,1,61,62],[1010,2,2,62,64]]],[43,9,8,64,72,[[1019,1,1,64,65],[1021,1,1,65,66],[1025,1,1,66,67],[1026,2,1,67,68],[1028,1,1,68,69],[1029,1,1,69,70],[1032,1,1,70,71],[1037,1,1,71,72]]],[44,9,7,72,79,[[1048,1,1,72,73],[1049,1,1,73,74],[1051,1,1,74,75],[1053,1,1,75,76],[1055,4,2,76,78],[1056,1,1,78,79]]],[45,9,9,79,88,[[1064,1,1,79,80],[1068,3,3,80,83],[1075,3,3,83,86],[1076,2,2,86,88]]],[46,1,1,88,89,[[1080,1,1,88,89]]],[47,1,1,89,90,[[1094,1,1,89,90]]],[48,1,1,90,91,[[1101,1,1,90,91]]],[49,1,1,91,92,[[1105,1,1,91,92]]],[50,1,1,92,93,[[1110,1,1,92,93]]],[51,2,2,93,95,[[1111,1,1,93,94],[1114,1,1,94,95]]],[52,1,1,95,96,[[1118,1,1,95,96]]],[53,2,2,96,98,[[1121,2,2,96,98]]],[57,1,1,98,99,[[1134,1,1,98,99]]],[61,2,2,99,101,[[1161,1,1,99,100],[1162,1,1,100,101]]],[65,1,1,101,102,[[1169,1,1,101,102]]]],[23310,23320,23436,23493,23515,23518,23523,23683,23846,23884,23915,23917,23951,24108,24286,24311,24336,24363,24380,24521,24550,24611,24612,24658,24708,24714,24755,24765,24927,25188,25263,25281,25389,25423,25470,25486,25509,25515,25560,25712,25820,25823,25866,25868,26124,26129,26132,26165,26254,26257,26299,26309,26343,26414,26450,26455,26456,26459,26461,26466,26559,26614,26673,26677,26957,27043,27207,27243,27320,27354,27478,27644,27997,28032,28070,28148,28202,28203,28223,28420,28519,28520,28521,28685,28687,28694,28730,28753,28849,29140,29319,29432,29548,29569,29604,29685,29736,29746,29980,30596,30623,30749]]],["How",[27,27,[[39,4,4,0,4,[[940,1,1,0,1],[944,1,1,1,2],[949,1,1,2,3],[950,1,1,3,4]]],[40,5,5,4,9,[[958,1,1,4,5],[959,1,1,5,6],[964,1,1,6,7],[966,1,1,7,8],[968,1,1,8,9]]],[41,3,3,9,12,[[973,1,1,9,10],[990,1,1,10,11],[992,1,1,11,12]]],[42,8,8,12,20,[[999,2,2,12,14],[1000,1,1,14,15],[1001,1,1,15,16],[1002,1,1,16,17],[1003,1,1,17,18],[1005,2,2,18,20]]],[43,1,1,20,21,[[1025,1,1,20,21]]],[44,3,3,21,24,[[1049,1,1,21,22],[1051,1,1,22,23],[1055,1,1,23,24]]],[45,1,1,24,25,[[1076,1,1,24,25]]],[46,1,1,25,26,[[1080,1,1,25,26]]],[57,1,1,26,27,[[1134,1,1,26,27]]]],[23493,23683,23846,23915,24286,24311,24521,24611,24708,24927,25712,25820,26124,26129,26165,26254,26309,26343,26450,26456,27207,28032,28070,28202,28753,28849,29980]]],["how",[72,70,[[39,10,10,0,10,[[934,1,1,0,1],[935,1,1,1,2],[938,1,1,2,3],[940,3,3,3,6],[950,2,2,6,8],[951,1,1,8,9],[954,1,1,9,10]]],[40,9,9,10,19,[[960,2,2,10,12],[961,1,1,12,13],[965,1,1,13,14],[966,1,1,14,15],[967,1,1,15,16],[968,1,1,16,17],[970,2,2,17,19]]],[41,12,12,19,31,[[978,1,1,19,20],[980,1,1,20,21],[982,1,1,21,22],[983,1,1,22,23],[984,4,4,23,27],[986,1,1,27,28],[992,1,1,28,29],[994,2,2,29,31]]],[42,11,11,31,42,[[999,1,1,31,32],[1001,1,1,32,33],[1002,1,1,33,34],[1004,1,1,34,35],[1005,3,3,35,38],[1007,1,1,38,39],[1008,1,1,39,40],[1010,2,2,40,42]]],[43,7,6,42,48,[[1019,1,1,42,43],[1021,1,1,43,44],[1026,2,1,44,45],[1028,1,1,45,46],[1029,1,1,46,47],[1032,1,1,47,48]]],[44,5,4,48,52,[[1048,1,1,48,49],[1053,1,1,49,50],[1055,3,2,50,52]]],[45,8,8,52,60,[[1064,1,1,52,53],[1068,3,3,53,56],[1075,3,3,56,59],[1076,1,1,59,60]]],[47,1,1,60,61,[[1094,1,1,60,61]]],[50,1,1,61,62,[[1110,1,1,61,62]]],[51,2,2,62,64,[[1111,1,1,62,63],[1114,1,1,63,64]]],[52,1,1,64,65,[[1118,1,1,64,65]]],[53,2,2,65,67,[[1121,2,2,65,67]]],[61,2,2,67,69,[[1161,1,1,67,68],[1162,1,1,68,69]]],[65,1,1,69,70,[[1169,1,1,69,70]]]],[23310,23320,23436,23515,23518,23523,23884,23917,23951,24108,24336,24363,24380,24550,24612,24658,24714,24755,24765,25188,25263,25389,25423,25470,25486,25509,25515,25560,25823,25866,25868,26132,26257,26299,26414,26455,26459,26466,26559,26614,26673,26677,26957,27043,27243,27320,27354,27478,27997,28148,28202,28203,28420,28519,28520,28521,28685,28687,28694,28730,29140,29548,29569,29604,29685,29736,29746,30596,30623,30749]]],["manner",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27644]]],["means",[4,4,[[41,1,1,0,1,[[980,1,1,0,1]]],[42,1,1,1,2,[[1005,1,1,1,2]]],[44,1,1,2,3,[[1056,1,1,2,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]]],[25281,26461,28223,29432]]],["that",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29319]]]]},{"k":"G4460","v":[["Rahab",[2,2,[[57,1,1,0,1,[[1143,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[30203,30318]]]]},{"k":"G4461","v":[["*",[17,15,[[39,5,4,0,4,[[951,3,2,0,2],[954,2,2,2,4]]],[40,4,3,4,7,[[965,1,1,4,5],[967,1,1,5,6],[970,2,1,6,7]]],[42,8,8,7,15,[[997,2,2,7,9],[999,2,2,9,11],[1000,1,1,11,12],[1002,1,1,12,13],[1005,1,1,13,14],[1007,1,1,14,15]]]],[23925,23926,24079,24103,24543,24661,24799,26082,26093,26122,26146,26187,26282,26442,26531]]],["+",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24079]]],["Master",[6,6,[[40,3,3,0,3,[[965,1,1,0,1],[967,1,1,1,2],[970,1,1,2,3]]],[42,3,3,3,6,[[1000,1,1,3,4],[1005,1,1,4,5],[1007,1,1,5,6]]]],[24543,24661,24799,26187,26442,26531]]],["Rabbi",[8,7,[[39,3,2,0,2,[[951,3,2,0,2]]],[42,5,5,2,7,[[997,2,2,2,4],[999,2,2,4,6],[1002,1,1,6,7]]]],[23925,23926,26082,26093,26122,26146,26282]]],["master",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24103,24799]]]]},{"k":"G4462","v":[["*",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[42,1,1,1,2,[[1016,1,1,1,2]]]],[24639,26883]]],["Lord",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24639]]],["Rabboni",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26883]]]]},{"k":"G4463","v":[["*",[2,2,[[43,1,1,0,1,[[1033,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[27505,29014]]],["beat",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27505]]],["rods",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29014]]]]},{"k":"G4464","v":[["*",[12,11,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[45,1,1,3,4,[[1065,1,1,3,4]]],[57,4,3,4,7,[[1133,2,1,4,5],[1141,1,1,5,6],[1143,1,1,6,7]]],[65,4,4,7,11,[[1168,1,1,7,8],[1177,1,1,8,9],[1178,1,1,9,10],[1185,1,1,10,11]]]],[23427,24415,25304,28454,29971,30109,30193,30744,30873,30896,31032]]],["rod",[6,6,[[45,1,1,0,1,[[1065,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]],[65,4,4,2,6,[[1168,1,1,2,3],[1177,1,1,3,4],[1178,1,1,4,5],[1185,1,1,5,6]]]],[28454,30109,30744,30873,30896,31032]]],["sceptre",[2,1,[[57,2,1,0,1,[[1133,2,1,0,1]]]],[29971]]],["staff",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[24415,30193]]],["staves",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[23427,25304]]]]},{"k":"G4465","v":[["serjeants",[2,2,[[43,2,2,0,2,[[1033,2,2,0,2]]]],[27518,27521]]]]},{"k":"G4466","v":[["Ragau",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25060]]]]},{"k":"G4467","v":[["lewdness",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27571]]]]},{"k":"G4468","v":[["mischief",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27372]]]]},{"k":"G4469","v":[["Raca",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23256]]]]},{"k":"G4470","v":[["cloth",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]]],[23395,24281]]]]},{"k":"G4471","v":[["Rama",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23187]]]]},{"k":"G4472","v":[["*",[4,4,[[57,4,4,0,4,[[1141,3,3,0,3],[1142,1,1,3,4]]]],[30118,30124,30126,30155]]],["sprinkled",[3,3,[[57,3,3,0,3,[[1141,2,2,0,2],[1142,1,1,2,3]]]],[30124,30126,30155]]],["sprinkling",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30118]]]]},{"k":"G4473","v":[["sprinkling",[2,2,[[57,1,1,0,1,[[1144,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[30236,30376]]]]},{"k":"G4474","v":[["*",[2,2,[[39,2,2,0,2,[[933,1,1,0,1],[954,1,1,1,2]]]],[23273,24121]]],["hands",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24121]]],["smite",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23273]]]]},{"k":"G4475","v":[["*",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,2,2,1,3,[[1014,1,1,1,2],[1015,1,1,2,3]]]],[24819,26807,26828]]],["+",[2,2,[[42,2,2,0,2,[[1014,1,1,0,1],[1015,1,1,1,2]]]],[26807,26828]]],["hands",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24819]]]]},{"k":"G4476","v":[["*",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]]],[23786,24613,25713]]],["needle",[2,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]]],[23786,24613]]],["needle's",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25713]]]]},{"k":"G4477","v":[["Rachab",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23149]]]]},{"k":"G4478","v":[["Rachel",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23187]]]]},{"k":"G4479","v":[["Rebecca",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28165]]]]},{"k":"G4480","v":[["chariots",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31006]]]]},{"k":"G4481","v":[["Remphan",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27159]]]]},{"k":"G4482","v":[["flow",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26366]]]]},{"k":"G4483","v":[["*",[26,26,[[39,20,20,0,20,[[929,1,1,0,1],[930,3,3,1,4],[931,1,1,4,5],[932,1,1,5,6],[933,6,6,6,12],[936,1,1,12,13],[940,1,1,13,14],[941,1,1,14,15],[949,1,1,15,16],[950,1,1,16,17],[952,1,1,17,18],[955,2,2,18,20]]],[40,1,1,20,21,[[969,1,1,20,21]]],[44,2,2,21,23,[[1054,2,2,21,23]]],[47,1,1,23,24,[[1093,1,1,23,24]]],[65,2,2,24,26,[[1172,1,1,24,25],[1175,1,1,25,26]]]],[23166,23184,23186,23192,23195,23223,23255,23261,23265,23267,23272,23277,23362,23506,23574,23830,23903,23972,24138,24164,24731,28167,28181,29118,30804,30844]]],["commanded",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30844]]],["made",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29118]]],["of",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23195,24731]]],["said",[9,9,[[39,6,6,0,6,[[933,6,6,0,6]]],[44,2,2,6,8,[[1054,2,2,6,8]]],[65,1,1,8,9,[[1172,1,1,8,9]]]],[23255,23261,23265,23267,23272,23277,28167,28181,30804]]],["spoken",[13,13,[[39,13,13,0,13,[[929,1,1,0,1],[930,3,3,1,4],[932,1,1,4,5],[936,1,1,5,6],[940,1,1,6,7],[941,1,1,7,8],[949,1,1,8,9],[950,1,1,9,10],[952,1,1,10,11],[955,2,2,11,13]]]],[23166,23184,23186,23192,23223,23362,23506,23574,23830,23903,23972,24138,24164]]]]},{"k":"G4484","v":[["Rhegium",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27912]]]]},{"k":"G4485","v":[["ruin",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25195]]]]},{"k":"G4486","v":[["*",[7,7,[[39,2,2,0,2,[[935,1,1,0,1],[937,1,1,1,2]]],[40,2,2,2,4,[[958,1,1,2,3],[965,1,1,3,4]]],[41,2,2,4,6,[[977,1,1,4,5],[981,1,1,5,6]]],[47,1,1,6,7,[[1094,1,1,6,7]]]],[23322,23396,24282,24556,25144,25343,29158]]],["+",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25343]]],["break",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23396]]],["burst",[2,2,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]]],[24282,25144]]],["forth",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29158]]],["rend",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23322]]],["teareth",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24556]]]]},{"k":"G4487","v":[["*",[70,67,[[39,6,6,0,6,[[932,1,1,0,1],[933,1,1,1,2],[940,1,1,2,3],[946,1,1,3,4],[954,1,1,4,5],[955,1,1,5,6]]],[40,2,2,6,8,[[965,1,1,6,7],[970,1,1,7,8]]],[41,19,18,8,26,[[973,3,3,8,11],[974,6,6,11,17],[975,1,1,17,18],[976,1,1,18,19],[977,1,1,19,20],[979,1,1,20,21],[981,2,1,21,22],[990,1,1,22,23],[992,1,1,23,24],[996,2,2,24,26]]],[42,12,12,26,38,[[999,1,1,26,27],[1001,1,1,27,28],[1002,2,2,28,30],[1004,2,2,30,32],[1006,1,1,32,33],[1008,2,2,33,35],[1010,1,1,35,36],[1011,1,1,36,37],[1013,1,1,37,38]]],[43,14,14,38,52,[[1019,1,1,38,39],[1022,2,2,39,41],[1023,2,2,41,43],[1027,3,3,43,46],[1028,2,2,46,48],[1030,1,1,48,49],[1033,1,1,49,50],[1043,1,1,50,51],[1045,1,1,51,52]]],[44,4,3,52,55,[[1055,4,3,52,55]]],[46,2,2,55,57,[[1089,1,1,55,56],[1090,1,1,56,57]]],[48,2,2,57,59,[[1101,1,1,57,58],[1102,1,1,58,59]]],[57,4,4,59,63,[[1133,1,1,59,60],[1138,1,1,60,61],[1143,1,1,61,62],[1144,1,1,62,63]]],[59,2,1,63,64,[[1151,2,1,63,64]]],[60,1,1,64,65,[[1158,1,1,64,65]]],[64,1,1,65,66,[[1166,1,1,65,66]]],[65,1,1,66,67,[[1183,1,1,66,67]]]],[23213,23245,23525,23743,24129,24143,24570,24826,24930,24931,24958,24988,24990,24992,25002,25023,25024,25027,25067,25112,25196,25346,25722,25805,25999,26002,26154,26257,26320,26325,26401,26428,26502,26627,26628,26678,26706,26767,26963,27079,27091,27112,27114,27281,27296,27303,27321,27323,27404,27521,27848,27924,28196,28205,28206,29026,29044,29330,29354,29966,30049,30175,30231,30399,30524,30689,30992]]],["+",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]]],[23245,24930]]],["saying",[6,5,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,5,4,1,5,[[974,2,2,1,3],[981,2,1,3,4],[990,1,1,4,5]]]],[24570,24990,25023,25346,25722]]],["sayings",[3,3,[[41,3,3,0,3,[[973,1,1,0,1],[974,1,1,1,2],[979,1,1,2,3]]]],[24958,25024,25196]]],["thing",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24988]]],["things",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1022,1,1,1,2]]]],[24992,27091]]],["word",[25,23,[[39,5,5,0,5,[[932,1,1,0,1],[940,1,1,1,2],[946,1,1,2,3],[954,1,1,3,4],[955,1,1,4,5]]],[40,1,1,5,6,[[970,1,1,5,6]]],[41,5,5,6,11,[[973,1,1,6,7],[974,1,1,7,8],[975,1,1,8,9],[976,1,1,9,10],[977,1,1,10,11]]],[43,3,3,11,14,[[1027,1,1,11,12],[1028,1,1,12,13],[1045,1,1,13,14]]],[44,3,2,14,16,[[1055,3,2,14,16]]],[46,1,1,16,17,[[1090,1,1,16,17]]],[48,2,2,17,19,[[1101,1,1,17,18],[1102,1,1,18,19]]],[57,3,3,19,22,[[1133,1,1,19,20],[1138,1,1,20,21],[1143,1,1,21,22]]],[59,2,1,22,23,[[1151,2,1,22,23]]]],[23213,23525,23743,24129,24143,24826,24931,25002,25027,25067,25112,27296,27323,27924,28196,28205,29044,29330,29354,29966,30049,30175,30399]]],["words",[31,31,[[41,3,3,0,3,[[992,1,1,0,1],[996,2,2,1,3]]],[42,12,12,3,15,[[999,1,1,3,4],[1001,1,1,4,5],[1002,2,2,5,7],[1004,2,2,7,9],[1006,1,1,9,10],[1008,2,2,10,12],[1010,1,1,12,13],[1011,1,1,13,14],[1013,1,1,14,15]]],[43,10,10,15,25,[[1019,1,1,15,16],[1022,1,1,16,17],[1023,2,2,17,19],[1027,2,2,19,21],[1028,1,1,21,22],[1030,1,1,22,23],[1033,1,1,23,24],[1043,1,1,24,25]]],[44,1,1,25,26,[[1055,1,1,25,26]]],[46,1,1,26,27,[[1089,1,1,26,27]]],[57,1,1,27,28,[[1144,1,1,27,28]]],[60,1,1,28,29,[[1158,1,1,28,29]]],[64,1,1,29,30,[[1166,1,1,29,30]]],[65,1,1,30,31,[[1183,1,1,30,31]]]],[25805,25999,26002,26154,26257,26320,26325,26401,26428,26502,26627,26628,26678,26706,26767,26963,27079,27112,27114,27281,27303,27321,27404,27521,27848,28206,29026,30231,30524,30689,30992]]]]},{"k":"G4488","v":[["Rhesa",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25052]]]]},{"k":"G4489","v":[["orator",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27770]]]]},{"k":"G4490","v":[["expressly",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29748]]]]},{"k":"G4491","v":[["*",[17,16,[[39,3,3,0,3,[[931,1,1,0,1],[941,2,2,1,3]]],[40,3,3,3,6,[[960,2,2,3,5],[967,1,1,5,6]]],[41,2,2,6,8,[[975,1,1,6,7],[980,1,1,7,8]]],[44,5,4,8,12,[[1056,4,3,8,11],[1060,1,1,11,12]]],[53,1,1,12,13,[[1124,1,1,12,13]]],[57,1,1,13,14,[[1144,1,1,13,14]]],[65,2,2,14,16,[[1171,1,1,14,15],[1188,1,1,15,16]]]],[23202,23545,23560,24329,24340,24660,25034,25258,28225,28226,28227,28315,29798,30227,30784,31096]]],["Root",[1,1,[[65,1,1,0,1,[[1171,1,1,0,1]]]],[30784]]],["root",[15,14,[[39,3,3,0,3,[[931,1,1,0,1],[941,2,2,1,3]]],[40,2,2,3,5,[[960,2,2,3,5]]],[41,2,2,5,7,[[975,1,1,5,6],[980,1,1,6,7]]],[44,5,4,7,11,[[1056,4,3,7,10],[1060,1,1,10,11]]],[53,1,1,11,12,[[1124,1,1,11,12]]],[57,1,1,12,13,[[1144,1,1,12,13]]],[65,1,1,13,14,[[1188,1,1,13,14]]]],[23202,23545,23560,24329,24340,25034,25258,28225,28226,28227,28315,29798,30227,31096]]],["roots",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24660]]]]},{"k":"G4492","v":[["*",[2,2,[[48,1,1,0,1,[[1099,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[29268,29501]]],["Rooted",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29501]]],["rooted",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29268]]]]},{"k":"G4493","v":[["twinkling",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28770]]]]},{"k":"G4494","v":[["tossed",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30272]]]]},{"k":"G4495","v":[["off",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27727]]]]},{"k":"G4496","v":[["*",[7,7,[[39,3,3,0,3,[[937,1,1,0,1],[943,1,1,1,2],[955,1,1,2,3]]],[41,2,2,3,5,[[976,1,1,3,4],[989,1,1,4,5]]],[43,2,2,5,7,[[1044,2,2,5,7]]]],[23415,23663,24134,25098,25653,27874,27884]]],["+",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23663]]],["abroad",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23415]]],["cast",[2,2,[[41,1,1,0,1,[[989,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[25653,27884]]],["down",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24134]]],["out",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27874]]],["thrown",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25098]]]]},{"k":"G4497","v":[["Roboam",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23151]]]]},{"k":"G4498","v":[["Rhoda",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27350]]]]},{"k":"G4499","v":[["Rhodes",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27665]]]]},{"k":"G4500","v":[["noise",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30532]]]]},{"k":"G4501","v":[["sword",[7,7,[[41,1,1,0,1,[[974,1,1,0,1]]],[65,6,6,1,7,[[1167,1,1,1,2],[1168,2,2,2,4],[1172,1,1,4,5],[1185,2,2,5,7]]]],[25008,30713,30729,30733,30801,31032,31038]]]]},{"k":"G4502","v":[["Reuben",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30815]]]]},{"k":"G4503","v":[["Ruth",[1,1,[[39,1,1,0,1,[[929,1,1,0,1]]]],[23149]]]]},{"k":"G4504","v":[["Rufus",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]]],[24847,28349]]]]},{"k":"G4505","v":[["*",[4,4,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]],[43,2,2,2,4,[[1026,1,1,2,3],[1029,1,1,3,4]]]],[23284,25574,27227,27347]]],["lanes",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25574]]],["street",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1029,1,1,1,2]]]],[27227,27347]]],["streets",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23284]]]]},{"k":"G4506","v":[["*",[18,16,[[39,2,2,0,2,[[934,1,1,0,1],[955,1,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[983,1,1,3,4]]],[44,3,3,4,7,[[1052,1,1,4,5],[1056,1,1,5,6],[1060,1,1,6,7]]],[46,3,1,7,8,[[1078,3,1,7,8]]],[50,1,1,8,9,[[1107,1,1,8,9]]],[51,1,1,9,10,[[1111,1,1,9,10]]],[52,1,1,10,11,[[1118,1,1,10,11]]],[54,3,3,11,14,[[1127,1,1,11,12],[1128,2,2,12,14]]],[60,2,2,14,16,[[1157,2,2,14,16]]]],[23295,24172,24967,25409,28115,28235,28334,28810,29478,29570,29680,29864,29887,29888,30507,30509]]],["Deliverer",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28235]]],["deliver",[8,7,[[39,2,2,0,2,[[934,1,1,0,1],[955,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]],[44,1,1,3,4,[[1052,1,1,3,4]]],[46,2,1,4,5,[[1078,2,1,4,5]]],[54,1,1,5,6,[[1128,1,1,5,6]]],[60,1,1,6,7,[[1157,1,1,6,7]]]],[23295,24172,25409,28115,28810,29888,30509]]],["delivered",[9,9,[[41,1,1,0,1,[[973,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[46,1,1,2,3,[[1078,1,1,2,3]]],[50,1,1,3,4,[[1107,1,1,3,4]]],[51,1,1,4,5,[[1111,1,1,4,5]]],[52,1,1,5,6,[[1118,1,1,5,6]]],[54,2,2,6,8,[[1127,1,1,6,7],[1128,1,1,7,8]]],[60,1,1,8,9,[[1157,1,1,8,9]]]],[24967,28334,28810,29478,29570,29680,29864,29887,30507]]]]},{"k":"G4507","v":[["filthiness",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30287]]]]},{"k":"G4508","v":[["vile",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30295]]]]},{"k":"G4509","v":[["filth",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30445]]]]},{"k":"G4510","v":[["filthy",[2,1,[[65,2,1,0,1,[[1188,2,1,0,1]]]],[31091]]]]},{"k":"G4511","v":[["issue",[3,3,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,2,2,1,3,[[980,2,2,1,3]]]],[24389,25288,25289]]]]},{"k":"G4512","v":[["wrinkle",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29331]]]]},{"k":"G4513","v":[["Latin",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25973]]]]},{"k":"G4514","v":[["*",[12,12,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,11,11,1,12,[[1019,1,1,1,2],[1033,3,3,2,5],[1039,4,4,5,9],[1040,1,1,9,10],[1042,1,1,10,11],[1045,1,1,11,12]]]],[26571,26959,27504,27520,27521,27729,27730,27731,27733,27761,27812,27916]]],["+",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1039,1,1,1,2]]]],[26959,27731]]],["Roman",[4,4,[[43,4,4,0,4,[[1039,3,3,0,3],[1040,1,1,3,4]]]],[27729,27730,27733,27761]]],["Romans",[6,6,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,5,5,1,6,[[1033,3,3,1,4],[1042,1,1,4,5],[1045,1,1,5,6]]]],[26571,27504,27520,27521,27812,27916]]]]},{"k":"G4515","v":[["Latin",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26845]]]]},{"k":"G4516","v":[["Rome",[8,8,[[43,5,5,0,5,[[1035,1,1,0,1],[1036,1,1,1,2],[1040,1,1,2,3],[1045,2,2,3,5]]],[44,2,2,5,7,[[1046,2,2,5,7]]],[54,1,1,7,8,[[1125,1,1,7,8]]]],[27559,27606,27745,27913,27915,27937,27945,29826]]]]},{"k":"G4517","v":[["*",[2,2,[[43,2,2,0,2,[[1032,1,1,0,1],[1040,1,1,1,2]]]],[27471,27764]]],["Farewell",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27764]]],["well",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27471]]]]},{"k":"G4518","v":[["sabachthani",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24175,24860]]]]},{"k":"G4519","v":[["*",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[28184,30358]]],["Sabaoth",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28184]]],["sabaoth",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30358]]]]},{"k":"G4520","v":[["rest",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30023]]]]},{"k":"G4521","v":[["*",[68,62,[[39,11,9,0,9,[[940,8,7,0,7],[952,1,1,7,8],[956,2,1,8,9]]],[40,12,11,9,20,[[957,1,1,9,10],[958,5,4,10,14],[959,2,2,14,16],[962,1,1,16,17],[972,3,3,17,20]]],[41,20,19,20,39,[[976,2,2,20,22],[978,6,6,22,28],[985,5,4,28,32],[986,3,3,32,35],[990,1,1,35,36],[995,2,2,36,38],[996,1,1,38,39]]],[42,13,11,39,50,[[1001,4,4,39,43],[1003,3,2,43,45],[1005,2,2,45,47],[1015,2,1,47,48],[1016,2,2,48,50]]],[43,10,10,50,60,[[1018,1,1,50,51],[1030,4,4,51,55],[1032,1,1,55,56],[1033,1,1,56,57],[1034,1,1,57,58],[1035,1,1,58,59],[1037,1,1,59,60]]],[45,1,1,60,61,[[1077,1,1,60,61]]],[50,1,1,61,62,[[1108,1,1,61,62]]]],[23490,23491,23494,23497,23499,23500,23501,23977,24196,24236,24283,24284,24287,24288,24290,24292,24409,24874,24875,24882,25079,25094,25147,25148,25151,25152,25153,25155,25528,25532,25533,25534,25554,25556,25558,25700,25989,25991,25992,26219,26220,26226,26228,26350,26351,26454,26456,26856,26868,26886,26935,27376,27389,27404,27406,27463,27496,27525,27561,27633,28778,29510]]],["+",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25147]]],["day",[25,24,[[39,5,5,0,5,[[940,4,4,0,4],[952,1,1,4,5]]],[40,4,4,5,9,[[957,1,1,5,6],[958,1,1,6,7],[959,1,1,7,8],[962,1,1,8,9]]],[41,5,5,9,14,[[978,1,1,9,10],[985,1,1,10,11],[986,2,2,11,13],[995,1,1,13,14]]],[42,8,7,14,21,[[1001,2,2,14,16],[1003,3,2,16,18],[1005,2,2,18,20],[1015,1,1,20,21]]],[43,3,3,21,24,[[1030,2,2,21,23],[1032,1,1,23,24]]]],[23490,23491,23497,23500,23977,24236,24283,24290,24409,25153,25532,25554,25556,25991,26220,26226,26350,26351,26454,26456,26856,27389,27406,27463]]],["day's",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26935]]],["days",[8,8,[[39,3,3,0,3,[[940,3,3,0,3]]],[40,1,1,3,4,[[959,1,1,3,4]]],[41,3,3,4,7,[[976,1,1,4,5],[978,2,2,5,7]]],[43,1,1,7,8,[[1034,1,1,7,8]]]],[23494,23499,23501,24292,25094,25148,25155,27525]]],["sabbath",[24,23,[[39,2,2,0,2,[[940,1,1,0,1],[956,1,1,1,2]]],[40,5,4,2,6,[[958,4,3,2,5],[972,1,1,5,6]]],[41,9,9,6,15,[[976,1,1,6,7],[978,2,2,7,9],[985,4,4,9,13],[986,1,1,13,14],[995,1,1,14,15]]],[42,3,3,15,18,[[1001,2,2,15,17],[1015,1,1,17,18]]],[43,4,4,18,22,[[1030,2,2,18,20],[1033,1,1,20,21],[1035,1,1,21,22]]],[50,1,1,22,23,[[1108,1,1,22,23]]]],[23494,24196,24284,24287,24288,24874,25079,25151,25152,25528,25532,25533,25534,25558,25989,26219,26228,26856,27376,27404,27496,27561,29510]]],["week",[9,9,[[39,1,1,0,1,[[956,1,1,0,1]]],[40,2,2,1,3,[[972,2,2,1,3]]],[41,2,2,3,5,[[990,1,1,3,4],[996,1,1,4,5]]],[42,2,2,5,7,[[1016,2,2,5,7]]],[43,1,1,7,8,[[1037,1,1,7,8]]],[45,1,1,8,9,[[1077,1,1,8,9]]]],[24196,24875,24882,25700,25992,26868,26886,27633,28778]]]]},{"k":"G4522","v":[["net",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23586]]]]},{"k":"G4523","v":[["*",[14,14,[[39,7,7,0,7,[[931,1,1,0,1],[944,4,4,1,5],[950,2,2,5,7]]],[40,1,1,7,8,[[968,1,1,7,8]]],[41,1,1,8,9,[[992,1,1,8,9]]],[43,5,5,9,14,[[1021,1,1,9,10],[1022,1,1,10,11],[1040,3,3,11,14]]]],[23199,23673,23678,23683,23684,23895,23906,24691,25806,27023,27076,27740,27741,27742]]],["+",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23906]]],["Sadducees",[13,13,[[39,6,6,0,6,[[931,1,1,0,1],[944,4,4,1,5],[950,1,1,5,6]]],[40,1,1,6,7,[[968,1,1,6,7]]],[41,1,1,7,8,[[992,1,1,7,8]]],[43,5,5,8,13,[[1021,1,1,8,9],[1022,1,1,9,10],[1040,3,3,10,13]]]],[23199,23673,23678,23683,23684,23895,24691,25806,27023,27076,27740,27741,27742]]]]},{"k":"G4524","v":[["Sadoc",[2,1,[[39,2,1,0,1,[[929,2,1,0,1]]]],[23158]]]]},{"k":"G4525","v":[["moved",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29593]]]]},{"k":"G4526","v":[["sackcloth",[4,4,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[65,2,2,2,4,[[1172,1,1,2,3],[1177,1,1,3,4]]]],[23480,25376,30805,30875]]]]},{"k":"G4527","v":[["Sala",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25060]]]]},{"k":"G4528","v":[["Salathiel",[3,2,[[39,2,1,0,1,[[929,2,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23156,25052]]]]},{"k":"G4529","v":[["Salamis",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27367]]]]},{"k":"G4530","v":[["Salim",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26143]]]]},{"k":"G4531","v":[["*",[15,14,[[39,2,2,0,2,[[939,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,4,4,3,7,[[978,2,2,3,5],[979,1,1,5,6],[993,1,1,6,7]]],[43,4,4,7,11,[[1019,1,1,7,8],[1021,1,1,8,9],[1033,1,1,9,10],[1034,1,1,10,11]]],[52,1,1,11,12,[[1117,1,1,11,12]]],[57,3,2,12,14,[[1144,3,2,12,14]]]],[23466,23986,24742,25184,25194,25219,25852,26974,27053,27509,27536,29663,30238,30239]]],["+",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30239]]],["moved",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26974]]],["shake",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25194]]],["shaken",[9,9,[[39,2,2,0,2,[[939,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,2,2,3,5,[[979,1,1,3,4],[993,1,1,4,5]]],[43,2,2,5,7,[[1021,1,1,5,6],[1033,1,1,6,7]]],[52,1,1,7,8,[[1117,1,1,7,8]]],[57,1,1,8,9,[[1144,1,1,8,9]]]],[23466,23986,24742,25219,25852,27053,27509,29663,30239]]],["shook",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30238]]],["together",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25184]]],["up",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27536]]]]},{"k":"G4532","v":[["Salem",[2,2,[[57,2,2,0,2,[[1139,2,2,0,2]]]],[30065,30066]]]]},{"k":"G4533","v":[["Salmon",[3,3,[[39,2,2,0,2,[[929,2,2,0,2]]],[41,1,1,2,3,[[975,1,1,2,3]]]],[23148,23149,25057]]]]},{"k":"G4534","v":[["Salmone",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27862]]]]},{"k":"G4535","v":[["waves",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25851]]]]},{"k":"G4536","v":[["*",[11,11,[[39,1,1,0,1,[[952,1,1,0,1]]],[45,2,2,1,3,[[1075,1,1,1,2],[1076,1,1,2,3]]],[51,1,1,3,4,[[1114,1,1,3,4]]],[57,1,1,4,5,[[1144,1,1,4,5]]],[65,6,6,5,11,[[1167,1,1,5,6],[1170,1,1,6,7],[1174,3,3,7,10],[1175,1,1,10,11]]]],[23988,28686,28770,29619,30231,30707,30769,30829,30833,30840,30854]]],["trump",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[51,1,1,1,2,[[1114,1,1,1,2]]]],[28770,29619]]],["trumpet",[7,7,[[39,1,1,0,1,[[952,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]],[65,4,4,3,7,[[1167,1,1,3,4],[1170,1,1,4,5],[1174,1,1,5,6],[1175,1,1,6,7]]]],[23988,28686,30231,30707,30769,30840,30854]]],["trumpets",[2,2,[[65,2,2,0,2,[[1174,2,2,0,2]]]],[30829,30833]]]]},{"k":"G4537","v":[["*",[12,12,[[39,1,1,0,1,[[934,1,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]],[65,10,10,2,12,[[1174,6,6,2,8],[1175,2,2,8,10],[1176,1,1,10,11],[1177,1,1,11,12]]]],[23284,28770,30833,30834,30835,30837,30839,30840,30841,30853,30868,30887]]],["sound",[4,4,[[45,1,1,0,1,[[1076,1,1,0,1]]],[65,3,3,1,4,[[1174,2,2,1,3],[1176,1,1,3,4]]]],[28770,30833,30840,30868]]],["sounded",[7,7,[[65,7,7,0,7,[[1174,4,4,0,4],[1175,2,2,4,6],[1177,1,1,6,7]]]],[30834,30835,30837,30839,30841,30853,30887]]],["trumpet",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23284]]]]},{"k":"G4538","v":[["trumpeters",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31015]]]]},{"k":"G4539","v":[["Salome",[2,2,[[40,2,2,0,2,[[971,1,1,0,1],[972,1,1,1,2]]]],[24866,24874]]]]},{"k":"G4540","v":[["Samaria",[11,11,[[41,1,1,0,1,[[989,1,1,0,1]]],[42,3,3,1,4,[[1000,3,3,1,4]]],[43,7,7,4,11,[[1018,1,1,4,5],[1025,4,4,5,9],[1026,1,1,9,10],[1032,1,1,10,11]]]],[25662,26160,26161,26163,26931,27177,27181,27185,27190,27247,27445]]]]},{"k":"G4541","v":[["*",[9,9,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,3,3,1,4,[[981,1,1,1,2],[982,1,1,2,3],[989,1,1,3,4]]],[42,4,4,4,8,[[1000,3,3,4,7],[1004,1,1,7,8]]],[43,1,1,8,9,[[1025,1,1,8,9]]]],[23422,25353,25396,25667,26165,26195,26196,26429,27201]]],["Samaritan",[3,3,[[41,2,2,0,2,[[982,1,1,0,1],[989,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]]],[25396,25667,26429]]],["Samaritans",[6,6,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[42,3,3,2,5,[[1000,3,3,2,5]]],[43,1,1,5,6,[[1025,1,1,5,6]]]],[23422,25353,26165,26195,26196,27201]]]]},{"k":"G4542","v":[["Samaria",[2,1,[[42,2,1,0,1,[[1000,2,1,0,1]]]],[26165]]]]},{"k":"G4543","v":[["Samothracia",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27494]]]]},{"k":"G4544","v":[["Samos",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27641]]]]},{"k":"G4545","v":[["Samuel",[3,3,[[43,2,2,0,2,[[1020,1,1,0,1],[1030,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[27020,27382,30204]]]]},{"k":"G4546","v":[["Samson",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30204]]]]},{"k":"G4547","v":[["sandals",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]]],[24416,27345]]]]},{"k":"G4548","v":[["boards",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27899]]]]},{"k":"G4549","v":[["Saul",[9,6,[[43,9,6,0,6,[[1026,3,2,0,2],[1030,1,1,2,3],[1039,3,2,3,5],[1043,2,1,5,6]]]],[27220,27233,27383,27711,27717,27837]]]]},{"k":"G4550","v":[["*",[8,6,[[39,5,4,0,4,[[935,2,2,0,2],[940,2,1,2,3],[941,1,1,3,4]]],[41,2,1,4,5,[[978,2,1,4,5]]],[48,1,1,5,6,[[1100,1,1,5,6]]]],[23333,23334,23522,23587,25189,29301]]],["bad",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23587]]],["corrupt",[7,5,[[39,4,3,0,3,[[935,2,2,0,2],[940,2,1,2,3]]],[41,2,1,3,4,[[978,2,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]]],[23333,23334,23522,25189,29301]]]]},{"k":"G4551","v":[["Sapphira",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27060]]]]},{"k":"G4552","v":[["sapphire",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31072]]]]},{"k":"G4553","v":[["basket",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29022]]]]},{"k":"G4554","v":[["Sardis",[3,3,[[65,3,3,0,3,[[1167,1,1,0,1],[1169,2,2,1,3]]]],[30708,30747,30750]]]]},{"k":"G4555","v":[["sardine",[1,1,[[65,1,1,0,1,[[1170,1,1,0,1]]]],[30771]]]]},{"k":"G4556","v":[["sardius",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31073]]]]},{"k":"G4557","v":[["sardonyx",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31073]]]]},{"k":"G4558","v":[["Sarepta",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25089]]]]},{"k":"G4559","v":[["*",[11,10,[[44,2,2,0,2,[[1052,1,1,0,1],[1060,1,1,1,2]]],[45,5,4,2,6,[[1064,4,3,2,5],[1070,1,1,5,6]]],[46,2,2,6,8,[[1078,1,1,6,7],[1087,1,1,7,8]]],[57,1,1,8,9,[[1139,1,1,8,9]]],[59,1,1,9,10,[[1152,1,1,9,10]]]],[28105,28330,28411,28413,28414,28551,28812,28975,30080,30410]]],["carnal",[7,6,[[44,1,1,0,1,[[1052,1,1,0,1]]],[45,4,3,1,4,[[1064,4,3,1,4]]],[46,1,1,4,5,[[1087,1,1,4,5]]],[57,1,1,5,6,[[1139,1,1,5,6]]]],[28105,28411,28413,28414,28975,30080]]],["fleshly",[2,2,[[46,1,1,0,1,[[1078,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[28812,30410]]],["things",[2,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]]],[28330,28551]]]]},{"k":"G4560","v":[["fleshy",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28844]]]]},{"k":"G4561","v":[["*",[151,130,[[39,5,5,0,5,[[944,1,1,0,1],[947,2,2,1,3],[952,1,1,3,4],[954,1,1,4,5]]],[40,4,3,5,8,[[966,2,1,5,6],[969,1,1,6,7],[970,1,1,7,8]]],[41,2,2,8,10,[[975,1,1,8,9],[996,1,1,9,10]]],[42,13,12,10,22,[[997,2,2,10,12],[999,2,1,12,13],[1002,7,7,13,20],[1004,1,1,20,21],[1013,1,1,21,22]]],[43,4,4,22,26,[[1019,4,4,22,26]]],[44,27,23,26,49,[[1046,1,1,26,27],[1047,1,1,27,28],[1048,1,1,28,29],[1049,1,1,29,30],[1051,1,1,30,31],[1052,3,3,31,34],[1053,14,10,34,44],[1054,3,3,44,47],[1056,1,1,47,48],[1058,1,1,48,49]]],[45,11,8,49,57,[[1062,2,2,49,51],[1066,1,1,51,52],[1067,1,1,52,53],[1068,1,1,53,54],[1071,1,1,54,55],[1076,5,2,55,57]]],[46,11,9,57,66,[[1078,1,1,57,58],[1081,1,1,58,59],[1082,2,1,59,60],[1084,2,2,60,62],[1087,3,2,62,64],[1088,1,1,64,65],[1089,1,1,65,66]]],[47,18,16,66,82,[[1091,1,1,66,67],[1092,2,2,67,69],[1093,1,1,69,70],[1094,4,4,70,74],[1095,6,5,74,79],[1096,4,3,79,82]]],[48,10,8,82,90,[[1098,5,3,82,85],[1101,3,3,85,88],[1102,2,2,88,90]]],[49,5,4,90,94,[[1103,2,2,90,92],[1105,3,2,92,94]]],[50,9,9,94,103,[[1107,2,2,94,96],[1108,6,6,96,102],[1109,1,1,102,103]]],[53,1,1,103,104,[[1121,1,1,103,104]]],[56,1,1,104,105,[[1132,1,1,104,105]]],[57,6,6,105,111,[[1134,1,1,105,106],[1137,1,1,106,107],[1141,2,2,107,109],[1142,1,1,109,110],[1144,1,1,110,111]]],[58,1,1,111,112,[[1150,1,1,111,112]]],[59,7,6,112,118,[[1151,1,1,112,113],[1153,2,2,113,115],[1154,4,3,115,118]]],[60,2,2,118,120,[[1157,2,2,118,120]]],[61,3,3,120,123,[[1160,1,1,120,121],[1162,2,2,121,123]]],[62,1,1,123,124,[[1164,1,1,123,124]]],[64,3,3,124,127,[[1166,3,3,124,127]]],[65,7,3,127,130,[[1183,1,1,127,128],[1185,6,2,128,130]]]],[23689,23767,23768,23979,24095,24596,24737,24792,25031,26030,26057,26058,26126,26308,26309,26310,26311,26312,26313,26320,26396,26761,26966,26975,26979,26980,27933,27990,28011,28023,28087,28096,28109,28116,28117,28119,28120,28121,28122,28123,28124,28125,28128,28129,28158,28160,28163,28223,28280,28389,28392,28459,28483,28515,28585,28757,28768,28817,28870,28893,28917,28921,28973,28974,29007,29029,29073,29097,29101,29105,29144,29145,29154,29160,29175,29178,29179,29181,29186,29196,29200,29201,29232,29240,29244,29333,29334,29335,29342,29349,29383,29385,29424,29425,29487,29489,29495,29499,29505,29507,29512,29517,29539,29747,29954,29991,30037,30115,30118,30153,30221,30357,30398,30442,30445,30447,30448,30452,30510,30518,30566,30605,30606,30652,30679,30680,30695,30991,31035,31038]]],["+",[2,2,[[42,1,1,0,1,[[1002,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[26320,30680]]],["carnal",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[28123,30115]]],["carnally",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28122]]],["flesh",[145,124,[[39,5,5,0,5,[[944,1,1,0,1],[947,2,2,1,3],[952,1,1,3,4],[954,1,1,4,5]]],[40,4,3,5,8,[[966,2,1,5,6],[969,1,1,6,7],[970,1,1,7,8]]],[41,2,2,8,10,[[975,1,1,8,9],[996,1,1,9,10]]],[42,12,11,10,21,[[997,2,2,10,12],[999,2,1,12,13],[1002,6,6,13,19],[1004,1,1,19,20],[1013,1,1,20,21]]],[43,4,4,21,25,[[1019,4,4,21,25]]],[44,25,21,25,46,[[1046,1,1,25,26],[1047,1,1,26,27],[1048,1,1,27,28],[1049,1,1,28,29],[1051,1,1,29,30],[1052,3,3,30,33],[1053,12,8,33,41],[1054,3,3,41,44],[1056,1,1,44,45],[1058,1,1,45,46]]],[45,11,8,46,54,[[1062,2,2,46,48],[1066,1,1,48,49],[1067,1,1,49,50],[1068,1,1,50,51],[1071,1,1,51,52],[1076,5,2,52,54]]],[46,11,9,54,63,[[1078,1,1,54,55],[1081,1,1,55,56],[1082,2,1,56,57],[1084,2,2,57,59],[1087,3,2,59,61],[1088,1,1,61,62],[1089,1,1,62,63]]],[47,18,16,63,79,[[1091,1,1,63,64],[1092,2,2,64,66],[1093,1,1,66,67],[1094,4,4,67,71],[1095,6,5,71,76],[1096,4,3,76,79]]],[48,10,8,79,87,[[1098,5,3,79,82],[1101,3,3,82,85],[1102,2,2,85,87]]],[49,5,4,87,91,[[1103,2,2,87,89],[1105,3,2,89,91]]],[50,8,8,91,99,[[1107,2,2,91,93],[1108,5,5,93,98],[1109,1,1,98,99]]],[53,1,1,99,100,[[1121,1,1,99,100]]],[56,1,1,100,101,[[1132,1,1,100,101]]],[57,5,5,101,106,[[1134,1,1,101,102],[1137,1,1,102,103],[1141,1,1,103,104],[1142,1,1,104,105],[1144,1,1,105,106]]],[58,1,1,106,107,[[1150,1,1,106,107]]],[59,7,6,107,113,[[1151,1,1,107,108],[1153,2,2,108,110],[1154,4,3,110,113]]],[60,2,2,113,115,[[1157,2,2,113,115]]],[61,3,3,115,118,[[1160,1,1,115,116],[1162,2,2,116,118]]],[62,1,1,118,119,[[1164,1,1,118,119]]],[64,2,2,119,121,[[1166,2,2,119,121]]],[65,7,3,121,124,[[1183,1,1,121,122],[1185,6,2,122,124]]]],[23689,23767,23768,23979,24095,24596,24737,24792,25031,26030,26057,26058,26126,26308,26309,26310,26311,26312,26313,26396,26761,26966,26975,26979,26980,27933,27990,28011,28023,28087,28096,28109,28116,28117,28119,28120,28121,28124,28125,28128,28129,28158,28160,28163,28223,28280,28389,28392,28459,28483,28515,28585,28757,28768,28817,28870,28893,28917,28921,28973,28974,29007,29029,29073,29097,29101,29105,29144,29145,29154,29160,29175,29178,29179,29181,29186,29196,29200,29201,29232,29240,29244,29333,29334,29335,29342,29349,29383,29385,29424,29425,29487,29489,29495,29499,29505,29507,29517,29539,29747,29954,29991,30037,30118,30153,30221,30357,30398,30442,30445,30447,30448,30452,30510,30518,30566,30605,30606,30652,30679,30695,30991,31035,31038]]],["fleshly",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29512]]]]},{"k":"G4562","v":[["Saruch",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25060]]]]},{"k":"G4563","v":[["*",[3,3,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[987,1,1,2,3]]]],[23533,25430,25596]]],["sweep",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25596]]],["swept",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23533,25430]]]]},{"k":"G4564","v":[["*",[4,4,[[44,2,2,0,2,[[1049,1,1,0,1],[1054,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]],[59,1,1,3,4,[[1153,1,1,3,4]]]],[28041,28164,30183,30430]]],["Sara",[3,3,[[44,1,1,0,1,[[1054,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[28164,30183,30430]]],["Sara's",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28041]]]]},{"k":"G4565","v":[["Saron",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27251]]]]},{"k":"G4566","v":[["Satan",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29029]]]]},{"k":"G4567","v":[["*",[36,33,[[39,4,3,0,3,[[932,1,1,0,1],[940,2,1,1,2],[944,1,1,2,3]]],[40,6,5,3,8,[[957,1,1,3,4],[959,3,2,4,6],[960,1,1,6,7],[964,1,1,7,8]]],[41,6,6,8,14,[[976,1,1,8,9],[982,1,1,9,10],[983,1,1,10,11],[985,1,1,11,12],[994,2,2,12,14]]],[42,1,1,14,15,[[1009,1,1,14,15]]],[43,2,2,15,17,[[1022,1,1,15,16],[1043,1,1,16,17]]],[44,1,1,17,18,[[1061,1,1,17,18]]],[45,2,2,18,20,[[1066,1,1,18,19],[1068,1,1,19,20]]],[46,2,2,20,22,[[1079,1,1,20,21],[1088,1,1,21,22]]],[51,1,1,22,23,[[1112,1,1,22,23]]],[52,1,1,23,24,[[1117,1,1,23,24]]],[53,2,2,24,26,[[1119,1,1,24,25],[1123,1,1,25,26]]],[65,8,7,26,33,[[1168,4,3,26,29],[1169,1,1,29,30],[1178,1,1,30,31],[1186,2,2,31,33]]]],[23219,23515,23695,24228,24311,24314,24338,24533,25071,25381,25423,25534,25867,25895,26657,27062,27841,28356,28459,28492,28835,29003,29588,29670,29716,29778,30726,30730,30741,30755,30900,31040,31045]]],["Satan",[35,33,[[39,4,3,0,3,[[932,1,1,0,1],[940,2,1,1,2],[944,1,1,2,3]]],[40,6,5,3,8,[[957,1,1,3,4],[959,3,2,4,6],[960,1,1,6,7],[964,1,1,7,8]]],[41,6,6,8,14,[[976,1,1,8,9],[982,1,1,9,10],[983,1,1,10,11],[985,1,1,11,12],[994,2,2,12,14]]],[42,1,1,14,15,[[1009,1,1,14,15]]],[43,2,2,15,17,[[1022,1,1,15,16],[1043,1,1,16,17]]],[44,1,1,17,18,[[1061,1,1,17,18]]],[45,2,2,18,20,[[1066,1,1,18,19],[1068,1,1,19,20]]],[46,2,2,20,22,[[1079,1,1,20,21],[1088,1,1,21,22]]],[51,1,1,22,23,[[1112,1,1,22,23]]],[52,1,1,23,24,[[1117,1,1,23,24]]],[53,2,2,24,26,[[1119,1,1,24,25],[1123,1,1,25,26]]],[65,7,7,26,33,[[1168,3,3,26,29],[1169,1,1,29,30],[1178,1,1,30,31],[1186,2,2,31,33]]]],[23219,23515,23695,24228,24311,24314,24338,24533,25071,25381,25423,25534,25867,25895,26657,27062,27841,28356,28459,28492,28835,29003,29588,29670,29716,29778,30726,30730,30741,30755,30900,31040,31045]]],["Satan's",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30730]]]]},{"k":"G4568","v":[["measures",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]]],[23572,25539]]]]},{"k":"G4569","v":[["Saul",[17,17,[[43,17,17,0,17,[[1024,1,1,0,1],[1025,2,2,1,3],[1026,7,7,3,10],[1028,2,2,10,12],[1029,1,1,12,13],[1030,4,4,13,17]]]],[27174,27177,27179,27217,27224,27227,27235,27238,27240,27242,27332,27337,27362,27363,27364,27369,27371]]]]},{"k":"G4570","v":[["*",[8,8,[[39,2,2,0,2,[[940,1,1,0,1],[953,1,1,1,2]]],[40,3,3,2,5,[[965,3,3,2,5]]],[48,1,1,5,6,[[1102,1,1,5,6]]],[51,1,1,6,7,[[1115,1,1,6,7]]],[57,1,1,7,8,[[1143,1,1,7,8]]]],[23509,24016,24582,24584,24586,29353,29640,30206]]],["Quench",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29640]]],["Quenched",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30206]]],["out",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24016]]],["quench",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]]],[23509,29353]]],["quenched",[3,3,[[40,3,3,0,3,[[965,3,3,0,3]]]],[24582,24584,24586]]]]},{"k":"G4571","v":[["*",[197,177,[[39,30,27,0,27,[[932,1,1,0,1],[933,7,6,1,7],[937,1,1,7,8],[942,1,1,8,9],[946,5,4,9,13],[948,1,1,13,14],[953,9,8,14,22],[954,5,5,22,27]]],[40,14,14,27,41,[[957,2,2,27,29],[959,1,1,29,30],[961,4,4,30,34],[965,4,4,34,38],[966,2,2,38,40],[970,1,1,40,41]]],[41,39,33,41,74,[[973,2,2,41,43],[974,1,1,43,44],[976,3,3,44,47],[978,2,2,47,49],[979,3,3,49,52],[980,3,3,52,55],[983,2,2,55,57],[984,3,1,57,58],[985,1,1,58,59],[986,5,5,59,64],[988,1,1,64,65],[989,4,3,65,68],[990,1,1,68,69],[991,7,4,69,73],[994,1,1,73,74]]],[42,31,27,74,101,[[997,3,2,74,76],[1003,1,1,76,77],[1004,2,2,77,79],[1006,1,1,79,80],[1007,2,2,80,82],[1009,1,1,82,83],[1012,1,1,83,84],[1013,7,6,84,90],[1014,2,2,90,92],[1015,4,2,92,94],[1017,7,7,94,101]]],[43,38,35,101,136,[[1021,1,1,101,102],[1022,1,1,102,103],[1024,3,3,103,106],[1025,1,1,106,107],[1026,1,1,107,108],[1027,4,4,108,112],[1028,1,1,112,113],[1030,4,3,113,116],[1035,1,1,116,117],[1038,1,1,117,118],[1039,3,3,118,121],[1040,5,5,121,126],[1041,5,4,126,130],[1043,6,5,130,135],[1044,1,1,135,136]]],[44,8,8,136,144,[[1047,2,2,136,138],[1048,1,1,138,139],[1049,1,1,139,140],[1054,1,1,140,141],[1056,2,2,141,143],[1060,1,1,143,144]]],[45,2,2,144,146,[[1065,1,1,144,145],[1069,1,1,145,146]]],[49,1,1,146,147,[[1106,1,1,146,147]]],[53,4,4,147,151,[[1119,2,2,147,149],[1121,1,1,149,150],[1124,1,1,150,151]]],[54,3,3,151,154,[[1125,1,1,151,152],[1127,1,1,152,153],[1128,1,1,153,154]]],[55,4,4,154,158,[[1129,1,1,154,155],[1131,3,3,155,158]]],[56,3,3,158,161,[[1132,3,3,158,161]]],[57,8,6,161,167,[[1133,2,2,161,163],[1134,1,1,163,164],[1137,1,1,164,165],[1138,2,1,165,166],[1145,2,1,166,167]]],[62,2,2,167,169,[[1164,2,2,167,169]]],[63,3,2,169,171,[[1165,3,2,169,171]]],[65,7,6,171,177,[[1169,5,4,171,175],[1176,1,1,175,176],[1181,1,1,176,177]]]],[23215,23259,23263,23264,23273,23275,23276,23401,23625,23735,23736,23742,23760,23805,24029,24031,24032,24035,24045,24046,24047,24052,24072,24089,24117,24122,24127,24239,24252,24320,24371,24383,24395,24398,24555,24581,24583,24585,24637,24640,24785,24912,24928,25021,25073,25074,25097,25175,25176,25202,25215,25245,25265,25290,25293,25432,25441,25517,25549,25562,25563,25565,25571,25572,25647,25654,25655,25670,25730,25752,25753,25774,25775,25928,26092,26094,26348,26391,26392,26514,26531,26551,26638,26756,26760,26762,26763,26770,26772,26784,26811,26820,26835,26836,26913,26914,26915,26916,26918,26920,26921,27052,27068,27143,27150,27151,27199,27250,27265,27278,27281,27292,27321,27373,27395,27409,27567,27701,27718,27723,27725,27737,27745,27752,27754,27764,27773,27777,27779,27794,27826,27839,27840,27847,27852,27879,27966,27989,27995,28039,28172,28227,28231,28306,28440,28537,29445,29699,29714,29745,29802,29813,29868,29891,29897,29931,29935,29938,29948,29956,29961,29968,29972,29989,30035,30058,30246,30650,30658,30660,30672,30749,30755,30756,30762,30872,30950]]],["+",[23,22,[[39,6,6,0,6,[[932,1,1,0,1],[933,1,1,1,2],[937,1,1,2,3],[948,1,1,3,4],[953,2,2,4,6]]],[40,3,3,6,9,[[961,1,1,6,7],[966,1,1,7,8],[970,1,1,8,9]]],[41,8,7,9,16,[[976,1,1,9,10],[980,1,1,10,11],[983,1,1,11,12],[986,1,1,12,13],[989,1,1,13,14],[991,3,2,14,16]]],[43,3,3,16,19,[[1022,1,1,16,17],[1026,1,1,17,18],[1038,1,1,18,19]]],[44,1,1,19,20,[[1054,1,1,19,20]]],[45,1,1,20,21,[[1065,1,1,20,21]]],[54,1,1,21,22,[[1127,1,1,21,22]]]],[23215,23275,23401,23805,24029,24031,24398,24640,24785,25074,25293,25441,25565,25670,25774,25775,27068,27250,27701,28172,28440,29868]]],["By",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27052]]],["Thou",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[65,1,1,1,2,[[1176,1,1,1,2]]]],[24035,30872]]],["house",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24072]]],["thee",[157,142,[[39,21,19,0,19,[[933,6,5,0,5],[942,1,1,5,6],[946,4,4,6,10],[953,6,5,10,15],[954,4,4,15,19]]],[40,11,11,19,30,[[957,2,2,19,21],[959,1,1,21,22],[961,3,3,22,25],[965,4,4,25,29],[966,1,1,29,30]]],[41,31,27,30,57,[[973,2,2,30,32],[974,1,1,32,33],[976,2,2,33,35],[978,2,2,35,37],[979,3,3,37,40],[980,2,2,40,42],[983,1,1,42,43],[984,3,1,43,44],[985,1,1,44,45],[986,4,4,45,49],[988,1,1,49,50],[989,3,2,50,52],[990,1,1,52,53],[991,4,3,53,56],[994,1,1,56,57]]],[42,31,27,57,84,[[997,3,2,57,59],[1003,1,1,59,60],[1004,2,2,60,62],[1006,1,1,62,63],[1007,2,2,63,65],[1009,1,1,65,66],[1012,1,1,66,67],[1013,7,6,67,73],[1014,2,2,73,75],[1015,4,2,75,77],[1017,7,7,77,84]]],[43,26,25,84,109,[[1024,3,3,84,87],[1027,3,3,87,90],[1028,1,1,90,91],[1030,3,3,91,94],[1035,1,1,94,95],[1039,3,3,95,98],[1040,4,4,98,102],[1041,3,3,102,105],[1043,5,4,105,109]]],[44,6,6,109,115,[[1047,2,2,109,111],[1049,1,1,111,112],[1056,2,2,112,114],[1060,1,1,114,115]]],[45,1,1,115,116,[[1069,1,1,115,116]]],[49,1,1,116,117,[[1106,1,1,116,117]]],[53,3,3,117,120,[[1119,2,2,117,119],[1121,1,1,119,120]]],[54,2,2,120,122,[[1125,1,1,120,121],[1128,1,1,121,122]]],[55,3,3,122,125,[[1129,1,1,122,123],[1131,2,2,123,125]]],[56,3,3,125,128,[[1132,3,3,125,128]]],[57,8,6,128,134,[[1133,2,2,128,130],[1134,1,1,130,131],[1137,1,1,131,132],[1138,2,1,132,133],[1145,2,1,133,134]]],[62,2,2,134,136,[[1164,2,2,134,136]]],[63,2,1,136,137,[[1165,2,1,136,137]]],[65,6,5,137,142,[[1169,5,4,137,141],[1181,1,1,141,142]]]],[23259,23263,23264,23273,23276,23625,23735,23736,23742,23760,24032,24045,24046,24047,24052,24089,24117,24122,24127,24239,24252,24320,24371,24383,24395,24555,24581,24583,24585,24637,24912,24928,25021,25073,25097,25175,25176,25202,25215,25245,25265,25290,25432,25517,25549,25562,25563,25571,25572,25647,25654,25655,25730,25752,25753,25774,25928,26092,26094,26348,26391,26392,26514,26531,26551,26638,26756,26760,26762,26763,26770,26772,26784,26811,26820,26835,26836,26913,26914,26915,26916,26918,26920,26921,27143,27150,27151,27278,27281,27292,27321,27373,27395,27409,27567,27718,27723,27725,27737,27752,27754,27764,27773,27777,27794,27826,27839,27840,27847,27966,27989,28039,28227,28231,28306,28537,29445,29699,29714,29745,29813,29891,29897,29935,29938,29948,29956,29961,29968,29972,29989,30035,30058,30246,30650,30658,30672,30749,30755,30756,30762,30950]]],["thou",[13,13,[[39,1,1,0,1,[[946,1,1,0,1]]],[43,8,8,1,9,[[1025,1,1,1,2],[1027,1,1,2,3],[1030,1,1,3,4],[1040,1,1,4,5],[1041,2,2,5,7],[1043,1,1,7,8],[1044,1,1,8,9]]],[44,1,1,9,10,[[1048,1,1,9,10]]],[53,1,1,10,11,[[1124,1,1,10,11]]],[55,1,1,11,12,[[1131,1,1,11,12]]],[63,1,1,12,13,[[1165,1,1,12,13]]]],[23760,27199,27265,27409,27745,27773,27779,27852,27879,27995,29802,29931,30660]]]]},{"k":"G4572","v":[["*",[40,39,[[39,5,5,0,5,[[932,1,1,0,1],[936,1,1,1,2],[947,1,1,2,3],[950,1,1,3,4],[955,1,1,4,5]]],[40,3,3,5,8,[[957,1,1,5,6],[968,1,1,6,7],[971,1,1,7,8]]],[41,6,6,8,14,[[976,2,2,8,10],[977,1,1,10,11],[982,1,1,11,12],[995,2,2,12,14]]],[42,8,8,14,22,[[997,1,1,14,15],[1003,1,1,15,16],[1004,2,2,16,18],[1006,1,1,18,19],[1010,1,1,19,20],[1013,1,1,20,21],[1017,1,1,21,22]]],[43,3,3,22,25,[[1026,1,1,22,23],[1033,1,1,23,24],[1043,1,1,24,25]]],[44,5,5,25,30,[[1047,4,4,25,29],[1059,1,1,29,30]]],[47,1,1,30,31,[[1096,1,1,30,31]]],[53,4,3,31,34,[[1122,3,2,31,33],[1123,1,1,33,34]]],[54,2,2,34,36,[[1126,1,1,34,35],[1128,1,1,35,36]]],[55,1,1,36,37,[[1130,1,1,36,37]]],[56,1,1,37,38,[[1132,1,1,37,38]]],[58,1,1,38,39,[[1147,1,1,38,39]]]],[23215,23349,23781,23911,24169,24259,24704,24856,25072,25086,25121,25390,25972,25974,26066,26332,26394,26434,26514,26690,26764,26916,27250,27511,27824,27963,27967,27981,27983,28302,29189,29754,29763,29785,29842,29881,29915,29957,30301]]],["+",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27250]]],["self",[2,2,[[42,1,1,0,1,[[1013,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[26764,29957]]],["thee",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29881]]],["thyself",[36,35,[[39,5,5,0,5,[[932,1,1,0,1],[936,1,1,1,2],[947,1,1,2,3],[950,1,1,3,4],[955,1,1,4,5]]],[40,3,3,5,8,[[957,1,1,5,6],[968,1,1,6,7],[971,1,1,7,8]]],[41,6,6,8,14,[[976,2,2,8,10],[977,1,1,10,11],[982,1,1,11,12],[995,2,2,12,14]]],[42,7,7,14,21,[[997,1,1,14,15],[1003,1,1,15,16],[1004,2,2,16,18],[1006,1,1,18,19],[1010,1,1,19,20],[1017,1,1,20,21]]],[43,2,2,21,23,[[1033,1,1,21,22],[1043,1,1,22,23]]],[44,5,5,23,28,[[1047,4,4,23,27],[1059,1,1,27,28]]],[47,1,1,28,29,[[1096,1,1,28,29]]],[53,4,3,29,32,[[1122,3,2,29,31],[1123,1,1,31,32]]],[54,1,1,32,33,[[1126,1,1,32,33]]],[55,1,1,33,34,[[1130,1,1,33,34]]],[58,1,1,34,35,[[1147,1,1,34,35]]]],[23215,23349,23781,23911,24169,24259,24704,24856,25072,25086,25121,25390,25972,25974,26066,26332,26394,26434,26514,26690,26916,27511,27824,27963,27967,27981,27983,28302,29189,29754,29763,29785,29842,29915,30301]]]]},{"k":"G4573","v":[["worshipped",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27955]]]]},{"k":"G4574","v":[["*",[2,2,[[43,1,1,0,1,[[1034,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]]],[27546,29665]]],["devotions",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27546]]],["worshipped",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29665]]]]},{"k":"G4575","v":[["*",[3,3,[[43,3,3,0,3,[[1042,2,2,0,2],[1044,1,1,2,3]]]],[27817,27821,27856]]],["Augustus",[2,2,[[43,2,2,0,2,[[1042,2,2,0,2]]]],[27817,27821]]],["Augustus'",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27856]]]]},{"k":"G4576","v":[["*",[10,10,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[43,8,8,2,10,[[1030,2,2,2,4],[1033,1,1,4,5],[1034,2,2,5,7],[1035,2,2,7,9],[1036,1,1,9,10]]]],[23642,24470,27405,27412,27497,27527,27540,27564,27570,27612]]],["devout",[2,2,[[43,2,2,0,2,[[1030,1,1,0,1],[1034,1,1,1,2]]]],[27412,27527]]],["persons",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27540]]],["religious",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27405]]],["worship",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[43,1,1,2,3,[[1035,1,1,2,3]]]],[23642,24470,27570]]],["worshipped",[2,2,[[43,2,2,0,2,[[1033,1,1,0,1],[1035,1,1,1,2]]]],[27497,27564]]],["worshippeth",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27612]]]]},{"k":"G4577","v":[["chains",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30504]]]]},{"k":"G4578","v":[["*",[14,12,[[39,4,4,0,4,[[936,1,1,0,1],[952,1,1,1,2],[955,1,1,2,3],[956,1,1,3,4]]],[40,1,1,4,5,[[969,1,1,4,5]]],[41,1,1,5,6,[[993,1,1,5,6]]],[43,1,1,6,7,[[1033,1,1,6,7]]],[65,7,5,7,12,[[1172,1,1,7,8],[1174,1,1,8,9],[1177,3,2,9,11],[1182,2,1,11,12]]]],[23369,23964,24183,24197,24725,25837,27509,30805,30832,30885,30891,30972]]],["earthquake",[10,8,[[39,2,2,0,2,[[955,1,1,0,1],[956,1,1,1,2]]],[43,1,1,2,3,[[1033,1,1,2,3]]],[65,7,5,3,8,[[1172,1,1,3,4],[1174,1,1,4,5],[1177,3,2,5,7],[1182,2,1,7,8]]]],[24183,24197,27509,30805,30832,30885,30891,30972]]],["earthquakes",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]]],[23964,24725,25837]]],["tempest",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23369]]]]},{"k":"G4579","v":[["*",[5,5,[[39,3,3,0,3,[[949,1,1,0,1],[955,1,1,1,2],[956,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]],[65,1,1,4,5,[[1172,1,1,4,5]]]],[23836,24180,24199,30238,30806]]],["moved",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23836]]],["quake",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24180]]],["shake",[2,2,[[39,1,1,0,1,[[956,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[24199,30238]]],["shaken",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30806]]]]},{"k":"G4580","v":[["Secundus",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27630]]]]},{"k":"G4581","v":[["Seleucia",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27366]]]]},{"k":"G4582","v":[["moon",[9,9,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[993,1,1,2,3]]],[43,1,1,3,4,[[1019,1,1,3,4]]],[45,1,1,4,5,[[1076,1,1,4,5]]],[65,4,4,5,9,[[1172,1,1,5,6],[1174,1,1,6,7],[1178,1,1,7,8],[1187,1,1,8,9]]]],[23986,24741,25851,26969,28759,30805,30839,30892,31076]]]]},{"k":"G4583","v":[["lunatick",[2,2,[[39,2,2,0,2,[[932,1,1,0,1],[945,1,1,1,2]]]],[23233,23715]]]]},{"k":"G4584","v":[["Semei",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25051]]]]},{"k":"G4585","v":[["flour",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31006]]]]},{"k":"G4586","v":[["*",[4,4,[[49,1,1,0,1,[[1106,1,1,0,1]]],[53,2,2,1,3,[[1121,2,2,1,3]]],[55,1,1,3,4,[[1130,1,1,3,4]]]],[29450,29739,29742,29910]]],["grave",[3,3,[[53,2,2,0,2,[[1121,2,2,0,2]]],[55,1,1,2,3,[[1130,1,1,2,3]]]],[29739,29742,29910]]],["honest",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29450]]]]},{"k":"G4587","v":[["*",[3,3,[[53,2,2,0,2,[[1120,1,1,0,1],[1121,1,1,1,2]]],[55,1,1,2,3,[[1130,1,1,2,3]]]],[29718,29735,29915]]],["gravity",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[55,1,1,1,2,[[1130,1,1,1,2]]]],[29735,29915]]],["honesty",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29718]]]]},{"k":"G4588","v":[["Sergius",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27369]]]]},{"k":"G4589","v":[["Seth",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25063]]]]},{"k":"G4590","v":[["Sem",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25061]]]]},{"k":"G4591","v":[["*",[6,6,[[42,3,3,0,3,[[1008,1,1,0,1],[1014,1,1,1,2],[1017,1,1,2,3]]],[43,2,2,3,5,[[1028,1,1,3,4],[1042,1,1,4,5]]],[65,1,1,5,6,[[1167,1,1,5,6]]]],[26613,26817,26917,27335,27823,30698]]],["signified",[2,2,[[43,1,1,0,1,[[1028,1,1,0,1]]],[65,1,1,1,2,[[1167,1,1,1,2]]]],[27335,30698]]],["signify",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27823]]],["signifying",[3,3,[[42,3,3,0,3,[[1008,1,1,0,1],[1014,1,1,1,2],[1017,1,1,2,3]]]],[26613,26817,26917]]]]},{"k":"G4592","v":[["*",[77,69,[[39,13,9,0,9,[[940,4,2,0,2],[944,5,3,2,5],[952,3,3,5,8],[954,1,1,8,9]]],[40,7,6,9,15,[[964,3,2,9,11],[969,2,2,11,13],[972,2,2,13,15]]],[41,11,9,15,24,[[974,2,2,15,17],[983,5,3,17,20],[993,3,3,20,23],[995,1,1,23,24]]],[42,17,17,24,41,[[998,3,3,24,27],[999,1,1,27,28],[1000,2,2,28,30],[1002,4,4,30,34],[1003,1,1,34,35],[1005,1,1,35,36],[1006,1,1,36,37],[1007,1,1,37,38],[1008,2,2,38,40],[1016,1,1,40,41]]],[43,13,13,41,54,[[1019,3,3,41,44],[1021,3,3,44,47],[1022,1,1,47,48],[1023,1,1,48,49],[1024,1,1,49,50],[1025,2,2,50,52],[1031,1,1,52,53],[1032,1,1,53,54]]],[44,2,2,54,56,[[1049,1,1,54,55],[1060,1,1,55,56]]],[45,2,2,56,58,[[1062,1,1,56,57],[1075,1,1,57,58]]],[46,2,1,58,59,[[1089,2,1,58,59]]],[52,2,2,59,61,[[1117,1,1,59,60],[1118,1,1,60,61]]],[57,1,1,61,62,[[1134,1,1,61,62]]],[65,7,7,62,69,[[1178,2,2,62,64],[1179,2,2,64,66],[1181,1,1,66,67],[1182,1,1,67,68],[1185,1,1,68,69]]]],[23527,23528,23673,23675,23676,23960,23981,23987,24102,24511,24512,24721,24739,24890,24893,24985,25007,25421,25434,25435,25833,25837,25851,25943,26106,26113,26118,26122,26204,26210,26259,26271,26283,26287,26359,26456,26522,26570,26598,26617,26897,26968,26971,26992,27038,27044,27052,27071,27109,27152,27182,27189,27417,27454,28033,28322,28385,28700,29034,29670,29695,29981,30892,30894,30921,30922,30947,30968,31037]]],["miracle",[7,7,[[41,1,1,0,1,[[995,1,1,0,1]]],[42,4,4,1,5,[[1000,1,1,1,2],[1002,1,1,2,3],[1006,1,1,3,4],[1008,1,1,4,5]]],[43,2,2,5,7,[[1021,2,2,5,7]]]],[25943,26210,26271,26522,26598,27038,27044]]],["miracles",[15,15,[[42,9,9,0,9,[[998,2,2,0,2],[999,1,1,2,3],[1002,2,2,3,5],[1003,1,1,5,6],[1005,1,1,6,7],[1007,1,1,7,8],[1008,1,1,8,9]]],[43,3,3,9,12,[[1023,1,1,9,10],[1025,1,1,10,11],[1032,1,1,11,12]]],[65,3,3,12,15,[[1179,1,1,12,13],[1182,1,1,13,14],[1185,1,1,14,15]]]],[26106,26118,26122,26259,26283,26359,26456,26570,26617,27109,27182,27454,30922,30968,31037]]],["sign",[29,22,[[39,11,7,0,7,[[940,4,2,0,2],[944,4,2,2,4],[952,2,2,4,6],[954,1,1,6,7]]],[40,4,3,7,10,[[964,3,2,7,9],[969,1,1,9,10]]],[41,8,6,10,16,[[974,2,2,10,12],[983,5,3,12,15],[993,1,1,15,16]]],[42,2,2,16,18,[[998,1,1,16,17],[1002,1,1,17,18]]],[44,1,1,18,19,[[1049,1,1,18,19]]],[45,2,2,19,21,[[1062,1,1,19,20],[1075,1,1,20,21]]],[65,1,1,21,22,[[1181,1,1,21,22]]]],[23527,23528,23673,23676,23960,23987,24102,24511,24512,24721,24985,25007,25421,25434,25435,25833,26113,26287,28033,28385,28700,30947]]],["signs",[22,21,[[39,2,2,0,2,[[944,1,1,0,1],[952,1,1,1,2]]],[40,3,3,2,5,[[969,1,1,2,3],[972,2,2,3,5]]],[41,2,2,5,7,[[993,2,2,5,7]]],[42,2,2,7,9,[[1000,1,1,7,8],[1016,1,1,8,9]]],[43,8,8,9,17,[[1019,3,3,9,12],[1021,1,1,12,13],[1022,1,1,13,14],[1024,1,1,14,15],[1025,1,1,15,16],[1031,1,1,16,17]]],[44,1,1,17,18,[[1060,1,1,17,18]]],[46,2,1,18,19,[[1089,2,1,18,19]]],[52,1,1,19,20,[[1117,1,1,19,20]]],[57,1,1,20,21,[[1134,1,1,20,21]]]],[23675,23981,24739,24890,24893,25837,25851,26204,26897,26968,26971,26992,27052,27071,27152,27189,27417,28322,29034,29670,29981]]],["token",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29695]]],["wonder",[2,2,[[65,2,2,0,2,[[1178,2,2,0,2]]]],[30892,30894]]],["wonders",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30921]]]]},{"k":"G4593","v":[["note",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29692]]]]},{"k":"G4594","v":[["*",[41,40,[[39,8,8,0,8,[[934,2,2,0,2],[939,1,1,2,3],[944,1,1,3,4],[949,1,1,4,5],[955,2,2,5,7],[956,1,1,7,8]]],[40,1,1,8,9,[[970,1,1,8,9]]],[41,11,11,9,20,[[974,1,1,9,10],[976,1,1,10,11],[977,1,1,11,12],[984,1,1,12,13],[985,2,2,13,15],[991,2,2,15,17],[994,1,1,17,18],[995,1,1,18,19],[996,1,1,19,20]]],[43,9,9,20,29,[[1021,1,1,20,21],[1030,1,1,21,22],[1036,1,1,22,23],[1037,1,1,23,24],[1039,1,1,24,25],[1041,1,1,25,26],[1043,2,2,26,28],[1044,1,1,28,29]]],[44,1,1,29,30,[[1056,1,1,29,30]]],[46,2,2,30,32,[[1080,2,2,30,32]]],[57,8,7,32,39,[[1133,1,1,32,33],[1135,3,3,33,36],[1136,2,1,36,37],[1137,1,1,37,38],[1145,1,1,38,39]]],[58,1,1,39,40,[[1149,1,1,39,40]]]],[23293,23312,23482,23675,23854,24137,24148,24210,24784,24984,25084,25133,25487,25550,25551,25736,25740,25898,25978,26012,27031,27395,27625,27652,27707,27790,27825,27852,27888,28217,28855,28856,29968,30002,30008,30010,30021,30035,30249,30350]]],["day",[38,37,[[39,8,8,0,8,[[934,2,2,0,2],[939,1,1,2,3],[944,1,1,3,4],[949,1,1,4,5],[955,2,2,5,7],[956,1,1,7,8]]],[40,1,1,8,9,[[970,1,1,8,9]]],[41,11,11,9,20,[[974,1,1,9,10],[976,1,1,10,11],[977,1,1,11,12],[984,1,1,12,13],[985,2,2,13,15],[991,2,2,15,17],[994,1,1,17,18],[995,1,1,18,19],[996,1,1,19,20]]],[43,7,7,20,27,[[1021,1,1,20,21],[1030,1,1,21,22],[1039,1,1,22,23],[1041,1,1,23,24],[1043,2,2,24,26],[1044,1,1,26,27]]],[46,2,2,27,29,[[1080,2,2,27,29]]],[57,8,7,29,36,[[1133,1,1,29,30],[1135,3,3,30,33],[1136,2,1,33,34],[1137,1,1,34,35],[1145,1,1,35,36]]],[58,1,1,36,37,[[1149,1,1,36,37]]]],[23293,23312,23482,23675,23854,24137,24148,24210,24784,24984,25084,25133,25487,25550,25551,25736,25740,25898,25978,26012,27031,27395,27707,27790,27825,27852,27888,28855,28856,29968,30002,30008,30010,30021,30035,30249,30350]]],["day's",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27625]]],["this",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]]],[27652,28217]]]]},{"k":"G4595","v":[["corrupted",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30356]]]]},{"k":"G4596","v":[["silk",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31005]]]]},{"k":"G4597","v":[["moth",[3,3,[[39,2,2,0,2,[[934,2,2,0,2]]],[41,1,1,2,3,[[984,1,1,2,3]]]],[23301,23302,25492]]]]},{"k":"G4598","v":[["motheaten",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30356]]]]},{"k":"G4599","v":[["strengthen",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30475]]]]},{"k":"G4600","v":[["cheek",[2,2,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]]],[23273,25175]]]]},{"k":"G4601","v":[["*",[9,9,[[41,2,2,0,2,[[981,1,1,0,1],[992,1,1,1,2]]],[43,3,3,2,5,[[1029,1,1,2,3],[1032,2,2,3,5]]],[44,1,1,5,6,[[1061,1,1,5,6]]],[45,3,3,6,9,[[1075,3,3,6,9]]]],[25337,25805,27354,27454,27455,28361,28706,28708,28712]]],["close",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25337]]],["peace",[4,4,[[41,1,1,0,1,[[992,1,1,0,1]]],[43,2,2,1,3,[[1029,1,1,1,2],[1032,1,1,2,3]]],[45,1,1,3,4,[[1075,1,1,3,4]]]],[25805,27354,27455,28708]]],["secret",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28361]]],["silence",[3,3,[[43,1,1,0,1,[[1032,1,1,0,1]]],[45,2,2,1,3,[[1075,2,2,1,3]]]],[27454,28706,28712]]]]},{"k":"G4602","v":[["silence",[2,2,[[43,1,1,0,1,[[1038,1,1,0,1]]],[65,1,1,1,2,[[1174,1,1,1,2]]]],[27704,30828]]]]},{"k":"G4603","v":[["iron",[5,5,[[43,1,1,0,1,[[1029,1,1,0,1]]],[65,4,4,1,5,[[1168,1,1,1,2],[1175,1,1,2,3],[1178,1,1,3,4],[1185,1,1,4,5]]]],[27347,30744,30849,30896,31032]]]]},{"k":"G4604","v":[["iron",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31005]]]]},{"k":"G4605","v":[["Sidon",[11,11,[[39,3,3,0,3,[[939,2,2,0,2],[943,1,1,2,3]]],[40,3,3,3,6,[[959,1,1,3,4],[963,2,2,4,6]]],[41,4,4,6,10,[[976,1,1,6,7],[978,1,1,7,8],[982,2,2,8,10]]],[43,1,1,10,11,[[1044,1,1,10,11]]]],[23480,23481,23654,24296,24487,24494,25089,25163,25376,25377,27858]]]]},{"k":"G4606","v":[["Sidon",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27357]]]]},{"k":"G4607","v":[["murderers",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27702]]]]},{"k":"G4608","v":[["drink",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24908]]]]},{"k":"G4609","v":[["Silas",[13,13,[[43,13,13,0,13,[[1032,5,5,0,5],[1033,3,3,5,8],[1034,4,4,8,12],[1035,1,1,12,13]]]],[27464,27469,27474,27476,27482,27502,27508,27512,27527,27533,27537,27538,27562]]]]},{"k":"G4610","v":[["Silvanus",[4,4,[[46,1,1,0,1,[[1078,1,1,0,1]]],[51,1,1,1,2,[[1111,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]],[59,1,1,3,4,[[1155,1,1,3,4]]]],[28819,29561,29650,30477]]]]},{"k":"G4611","v":[["Siloam",[3,3,[[41,1,1,0,1,[[985,1,1,0,1]]],[42,2,2,1,3,[[1005,2,2,1,3]]]],[25522,26447,26451]]]]},{"k":"G4612","v":[["aprons",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27597]]]]},{"k":"G4613","v":[["*",[75,70,[[39,9,9,0,9,[[932,1,1,0,1],[938,2,2,1,3],[941,1,1,3,4],[944,2,2,4,6],[945,1,1,6,7],[954,1,1,7,8],[955,1,1,8,9]]],[40,10,10,9,19,[[957,4,4,9,13],[959,2,2,13,15],[962,1,1,15,16],[970,2,2,16,18],[971,1,1,18,19]]],[41,17,14,19,33,[[976,2,1,19,20],[977,6,5,20,25],[978,2,2,25,27],[979,3,3,27,30],[994,2,1,30,31],[995,1,1,31,32],[996,1,1,32,33]]],[42,26,25,33,58,[[997,3,3,33,36],[1002,3,3,36,39],[1008,1,1,39,40],[1009,6,6,40,46],[1014,3,3,46,49],[1016,2,2,49,51],[1017,8,7,51,58]]],[43,13,12,58,70,[[1018,1,1,58,59],[1025,4,4,59,63],[1026,1,1,63,64],[1027,6,5,64,69],[1028,1,1,69,70]]]],[23227,23419,23421,23594,23688,23689,23725,24060,24161,24231,24244,24245,24251,24304,24306,24410,24757,24791,24847,25101,25110,25111,25112,25115,25117,25160,25161,25235,25238,25239,25895,25961,26025,26084,26085,26086,26265,26325,26328,26584,26632,26636,26639,26654,26656,26666,26795,26800,26810,26869,26873,26900,26901,26905,26909,26913,26914,26915,26936,27185,27189,27194,27200,27259,27264,27265,27276,27277,27291,27320]]],["Simon",[68,64,[[39,9,9,0,9,[[932,1,1,0,1],[938,2,2,1,3],[941,1,1,3,4],[944,2,2,4,6],[945,1,1,6,7],[954,1,1,7,8],[955,1,1,8,9]]],[40,9,9,9,18,[[957,3,3,9,12],[959,2,2,12,14],[962,1,1,14,15],[970,2,2,15,17],[971,1,1,17,18]]],[41,14,12,18,30,[[977,5,4,18,22],[978,2,2,22,24],[979,3,3,24,27],[994,2,1,27,28],[995,1,1,28,29],[996,1,1,29,30]]],[42,24,23,30,53,[[997,3,3,30,33],[1002,3,3,33,36],[1009,5,5,36,41],[1014,3,3,41,44],[1016,2,2,44,46],[1017,8,7,46,53]]],[43,12,11,53,64,[[1018,1,1,53,54],[1025,4,4,54,58],[1026,1,1,58,59],[1027,5,4,59,63],[1028,1,1,63,64]]]],[23227,23419,23421,23594,23688,23689,23725,24060,24161,24231,24244,24251,24304,24306,24410,24757,24791,24847,25111,25112,25115,25117,25160,25161,25235,25238,25239,25895,25961,26025,26084,26085,26086,26265,26325,26328,26636,26639,26654,26656,26666,26795,26800,26810,26869,26873,26900,26901,26905,26909,26913,26914,26915,26936,27185,27189,27194,27200,27259,27264,27265,27277,27291,27320]]],["Simon's",[7,6,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,3,2,1,3,[[976,2,1,1,2],[977,1,1,2,3]]],[42,2,2,3,5,[[1008,1,1,3,4],[1009,1,1,4,5]]],[43,1,1,5,6,[[1027,1,1,5,6]]]],[24245,25101,25110,26584,26632,27276]]]]},{"k":"G4614","v":[["*",[4,4,[[43,2,2,0,2,[[1024,2,2,0,2]]],[47,2,2,2,4,[[1094,2,2,2,4]]]],[27146,27154,29155,29156]]],["Sina",[2,2,[[43,2,2,0,2,[[1024,2,2,0,2]]]],[27146,27154]]],["Sinai",[2,2,[[47,2,2,0,2,[[1094,2,2,0,2]]]],[29155,29156]]]]},{"k":"G4615","v":[["seed",[5,5,[[39,2,2,0,2,[[941,1,1,0,1],[945,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,2,2,3,5,[[985,1,1,3,4],[989,1,1,4,5]]]],[23570,23720,24354,25537,25657]]]]},{"k":"G4616","v":[["*",[6,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,4,3,1,4,[[970,2,2,1,3],[971,2,1,3,4]]],[41,1,1,4,5,[[995,1,1,4,5]]]],[24188,24805,24806,24872,25988]]],["cloth",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,2,2,1,3,[[970,2,2,1,3]]]],[24188,24805,24806]]],["linen",[3,2,[[40,2,1,0,1,[[971,2,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24872,25988]]]]},{"k":"G4617","v":[["sift",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25895]]]]},{"k":"G4618","v":[["fatted",[3,3,[[41,3,3,0,3,[[987,3,3,0,3]]]],[25611,25615,25618]]]]},{"k":"G4619","v":[["fatlings",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23876]]]]},{"k":"G4620","v":[["meat",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25501]]]]},{"k":"G4621","v":[["*",[14,14,[[39,4,4,0,4,[[931,1,1,0,1],[941,3,3,1,4]]],[40,1,1,4,5,[[960,1,1,4,5]]],[41,3,3,5,8,[[975,1,1,5,6],[988,1,1,6,7],[994,1,1,7,8]]],[42,1,1,8,9,[[1008,1,1,8,9]]],[43,2,2,9,11,[[1024,1,1,9,10],[1044,1,1,10,11]]],[45,1,1,11,12,[[1076,1,1,11,12]]],[65,2,2,12,14,[[1172,1,1,12,13],[1184,1,1,13,14]]]],[23204,23564,23568,23569,24351,25042,25627,25895,26604,27128,27893,28755,30799,31006]]],["corn",[2,2,[[40,1,1,0,1,[[960,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[24351,27128]]],["wheat",[12,12,[[39,4,4,0,4,[[931,1,1,0,1],[941,3,3,1,4]]],[41,3,3,4,7,[[975,1,1,4,5],[988,1,1,5,6],[994,1,1,6,7]]],[42,1,1,7,8,[[1008,1,1,7,8]]],[43,1,1,8,9,[[1044,1,1,8,9]]],[45,1,1,9,10,[[1076,1,1,9,10]]],[65,2,2,10,12,[[1172,1,1,10,11],[1184,1,1,11,12]]]],[23204,23564,23568,23569,25042,25627,25895,26604,27893,28755,30799,31006]]]]},{"k":"G4622","v":[["Sion",[7,7,[[39,1,1,0,1,[[949,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]],[44,2,2,2,4,[[1054,1,1,2,3],[1056,1,1,3,4]]],[57,1,1,4,5,[[1144,1,1,4,5]]],[59,1,1,5,6,[[1152,1,1,5,6]]],[65,1,1,6,7,[[1180,1,1,6,7]]]],[23831,26595,28188,28235,30234,30405,30927]]]]},{"k":"G4623","v":[["*",[11,11,[[39,2,2,0,2,[[948,1,1,0,1],[954,1,1,1,2]]],[40,5,5,2,7,[[959,1,1,2,3],[960,1,1,3,4],[965,1,1,4,5],[966,1,1,5,6],[970,1,1,6,7]]],[41,3,3,7,10,[[973,1,1,7,8],[990,1,1,8,9],[991,1,1,9,10]]],[43,1,1,10,11,[[1035,1,1,10,11]]]],[23823,24117,24292,24362,24572,24636,24815,24913,25727,25771,27566]]],["+",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27566]]],["Peace",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24362]]],["dumb",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24913]]],["peace",[8,8,[[39,2,2,0,2,[[948,1,1,0,1],[954,1,1,1,2]]],[40,4,4,2,6,[[959,1,1,2,3],[965,1,1,3,4],[966,1,1,4,5],[970,1,1,5,6]]],[41,2,2,6,8,[[990,1,1,6,7],[991,1,1,7,8]]]],[23823,24117,24292,24572,24636,24815,25727,25771]]]]},{"k":"G4624","v":[["*",[30,28,[[39,14,13,0,13,[[933,2,2,0,2],[939,1,1,2,3],[941,2,2,3,5],[943,1,1,5,6],[945,1,1,6,7],[946,3,3,7,10],[952,1,1,10,11],[954,3,2,11,13]]],[40,8,8,13,21,[[960,1,1,13,14],[962,1,1,14,15],[965,4,4,15,19],[970,2,2,19,21]]],[41,2,2,21,23,[[979,1,1,21,22],[989,1,1,22,23]]],[42,2,2,23,25,[[1002,1,1,23,24],[1012,1,1,24,25]]],[44,1,1,25,26,[[1059,1,1,25,26]]],[45,2,1,26,27,[[1069,2,1,26,27]]],[46,1,1,27,28,[[1088,1,1,27,28]]]],[23263,23264,23465,23560,23596,23645,23727,23733,23735,23736,23967,24085,24087,24340,24410,24580,24581,24583,24585,24781,24783,25218,25653,26318,26727,28301,28540,29018]]],["+",[2,1,[[45,2,1,0,1,[[1069,2,1,0,1]]]],[28540]]],["offend",[12,12,[[39,6,6,0,6,[[933,2,2,0,2],[945,1,1,2,3],[946,3,3,3,6]]],[40,4,4,6,10,[[965,4,4,6,10]]],[41,1,1,10,11,[[989,1,1,10,11]]],[42,1,1,11,12,[[1002,1,1,11,12]]]],[23263,23264,23727,23733,23735,23736,24580,24581,24583,24585,25653,26318]]],["offended",[16,15,[[39,8,7,0,7,[[939,1,1,0,1],[941,2,2,1,3],[943,1,1,3,4],[952,1,1,4,5],[954,3,2,5,7]]],[40,4,4,7,11,[[960,1,1,7,8],[962,1,1,8,9],[970,2,2,9,11]]],[41,1,1,11,12,[[979,1,1,11,12]]],[42,1,1,12,13,[[1012,1,1,12,13]]],[44,1,1,13,14,[[1059,1,1,13,14]]],[46,1,1,14,15,[[1088,1,1,14,15]]]],[23465,23560,23596,23645,23967,24085,24087,24340,24410,24781,24783,25218,26727,28301,29018]]]]},{"k":"G4625","v":[["*",[15,13,[[39,5,3,0,3,[[941,1,1,0,1],[944,1,1,1,2],[946,3,1,2,3]]],[41,1,1,3,4,[[989,1,1,3,4]]],[44,4,4,4,8,[[1054,1,1,4,5],[1056,1,1,5,6],[1059,1,1,6,7],[1061,1,1,7,8]]],[45,1,1,8,9,[[1062,1,1,8,9]]],[47,1,1,9,10,[[1095,1,1,9,10]]],[59,1,1,10,11,[[1152,1,1,10,11]]],[61,1,1,11,12,[[1160,1,1,11,12]]],[65,1,1,12,13,[[1168,1,1,12,13]]]],[23580,23695,23734,25652,28188,28218,28293,28353,28386,29173,30407,30560,30731]]],["fall",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28293]]],["offence",[5,5,[[39,2,2,0,2,[[944,1,1,0,1],[946,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[23695,23734,28188,29173,30407]]],["offences",[4,3,[[39,2,1,0,1,[[946,2,1,0,1]]],[41,1,1,1,2,[[989,1,1,1,2]]],[44,1,1,2,3,[[1061,1,1,2,3]]]],[23734,25652,28353]]],["offend",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23580]]],["stumbling",[1,1,[[61,1,1,0,1,[[1160,1,1,0,1]]]],[30560]]],["stumblingblock",[3,3,[[44,1,1,0,1,[[1056,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]],[65,1,1,2,3,[[1168,1,1,2,3]]]],[28218,28386,30731]]]]},{"k":"G4626","v":[["*",[3,3,[[41,3,3,0,3,[[978,1,1,0,1],[985,1,1,1,2],[988,1,1,2,3]]]],[25194,25526,25623]]],["dig",[2,2,[[41,2,2,0,2,[[985,1,1,0,1],[988,1,1,1,2]]]],[25526,25623]]],["digged",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25194]]]]},{"k":"G4627","v":[["boat",[3,3,[[43,3,3,0,3,[[1044,3,3,0,3]]]],[27871,27885,27887]]]]},{"k":"G4628","v":[["legs",[3,3,[[42,3,3,0,3,[[1015,3,3,0,3]]]],[26856,26857,26858]]]]},{"k":"G4629","v":[["raiment",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29796]]]]},{"k":"G4630","v":[["Sceva",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27599]]]]},{"k":"G4631","v":[["tackling",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27874]]]]},{"k":"G4632","v":[["*",[23,22,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,2,2,1,3,[[959,1,1,1,2],[967,1,1,2,3]]],[41,2,2,3,5,[[980,1,1,3,4],[989,1,1,4,5]]],[42,1,1,5,6,[[1015,1,1,5,6]]],[43,5,5,6,11,[[1026,1,1,6,7],[1027,2,2,7,9],[1028,1,1,9,10],[1044,1,1,10,11]]],[44,3,3,11,14,[[1054,3,3,11,14]]],[46,1,1,14,15,[[1081,1,1,14,15]]],[51,1,1,15,16,[[1114,1,1,15,16]]],[54,2,2,16,18,[[1126,2,2,16,18]]],[57,1,1,18,19,[[1141,1,1,18,19]]],[59,1,1,19,20,[[1153,1,1,19,20]]],[65,3,2,20,22,[[1168,1,1,20,21],[1184,2,1,21,22]]]],[23518,24315,24656,25261,25682,26854,27231,27270,27275,27312,27872,28176,28177,28178,28866,29607,29847,29848,30126,30431,30744,31005]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27872]]],["goods",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]]],[23518,24315]]],["stuff",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25682]]],["vessel",[11,11,[[40,1,1,0,1,[[967,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]],[43,4,4,3,7,[[1026,1,1,3,4],[1027,2,2,4,6],[1028,1,1,6,7]]],[44,1,1,7,8,[[1054,1,1,7,8]]],[51,1,1,8,9,[[1114,1,1,8,9]]],[54,1,1,9,10,[[1126,1,1,9,10]]],[59,1,1,10,11,[[1153,1,1,10,11]]]],[24656,25261,26854,27231,27270,27275,27312,28176,29607,29848,30431]]],["vessels",[8,7,[[44,2,2,0,2,[[1054,2,2,0,2]]],[46,1,1,2,3,[[1081,1,1,2,3]]],[54,1,1,3,4,[[1126,1,1,3,4]]],[57,1,1,4,5,[[1141,1,1,4,5]]],[65,3,2,5,7,[[1168,1,1,5,6],[1184,2,1,6,7]]]],[28177,28178,28866,29847,30126,30744,31005]]]]},{"k":"G4633","v":[["*",[20,20,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,2,2,2,4,[[981,1,1,2,3],[988,1,1,3,4]]],[43,3,3,4,7,[[1024,2,2,4,6],[1032,1,1,6,7]]],[57,10,10,7,17,[[1140,2,2,7,9],[1141,6,6,9,15],[1143,1,1,15,16],[1145,1,1,16,17]]],[65,3,3,17,20,[[1179,1,1,17,18],[1181,1,1,18,19],[1187,1,1,19,20]]]],[23704,24543,25334,25629,27159,27160,27458,30094,30097,30107,30108,30111,30113,30116,30126,30181,30251,30914,30951,31056]]],["habitations",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25629]]],["tabernacle",[15,15,[[43,3,3,0,3,[[1024,2,2,0,2],[1032,1,1,2,3]]],[57,9,9,3,12,[[1140,2,2,3,5],[1141,6,6,5,11],[1145,1,1,11,12]]],[65,3,3,12,15,[[1179,1,1,12,13],[1181,1,1,13,14],[1187,1,1,14,15]]]],[27159,27160,27458,30094,30097,30107,30108,30111,30113,30116,30126,30251,30914,30951,31056]]],["tabernacles",[4,4,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]]],[23704,24543,25334,30181]]]]},{"k":"G4634","v":[["tabernacles",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26330]]]]},{"k":"G4635","v":[["tentmakers",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27560]]]]},{"k":"G4636","v":[["tabernacle",[2,2,[[46,2,2,0,2,[[1082,2,2,0,2]]]],[28878,28881]]]]},{"k":"G4637","v":[["*",[5,5,[[42,1,1,0,1,[[997,1,1,0,1]]],[65,4,4,1,5,[[1173,1,1,1,2],[1178,1,1,2,3],[1179,1,1,3,4],[1187,1,1,4,5]]]],[26058,30825,30903,30914,31056]]],["dwell",[4,4,[[65,4,4,0,4,[[1173,1,1,0,1],[1178,1,1,1,2],[1179,1,1,2,3],[1187,1,1,3,4]]]],[30825,30903,30914,31056]]],["dwelt",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26058]]]]},{"k":"G4638","v":[["tabernacle",[3,3,[[43,1,1,0,1,[[1024,1,1,0,1]]],[60,2,2,1,3,[[1156,2,2,1,3]]]],[27162,30492,30493]]]]},{"k":"G4639","v":[["shadow",[7,7,[[39,1,1,0,1,[[932,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[973,1,1,2,3]]],[43,1,1,3,4,[[1022,1,1,3,4]]],[50,1,1,4,5,[[1108,1,1,4,5]]],[57,2,2,5,7,[[1140,1,1,5,6],[1142,1,1,6,7]]]],[23225,24355,24972,27074,29511,30097,30134]]]]},{"k":"G4640","v":[["*",[3,3,[[41,3,3,0,3,[[973,2,2,0,2],[978,1,1,2,3]]]],[24934,24937,25169]]],["joy",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25169]]],["leaped",[2,2,[[41,2,2,0,2,[[973,2,2,0,2]]]],[24934,24937]]]]},{"k":"G4641","v":[["*",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,2,2,1,3,[[966,1,1,1,2],[972,1,1,2,3]]]],[23770,24593,24887]]],["+",[2,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]]],[23770,24593]]],["heart",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24887]]]]},{"k":"G4642","v":[["*",[6,6,[[39,1,1,0,1,[[953,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[43,2,2,2,4,[[1026,1,1,2,3],[1043,1,1,3,4]]],[58,1,1,4,5,[[1148,1,1,4,5]]],[64,1,1,5,6,[[1166,1,1,5,6]]]],[24032,26317,27221,27837,30323,30687]]],["fierce",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30323]]],["hard",[5,5,[[39,1,1,0,1,[[953,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]],[43,2,2,2,4,[[1026,1,1,2,3],[1043,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[24032,26317,27221,27837,30687]]]]},{"k":"G4643","v":[["hardness",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27967]]]]},{"k":"G4644","v":[["stiffnecked",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27167]]]]},{"k":"G4645","v":[["*",[6,6,[[43,1,1,0,1,[[1036,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]],[57,4,4,2,6,[[1135,3,3,2,5],[1136,1,1,5,6]]]],[27594,28173,30003,30008,30010,30021]]],["Harden",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30003]]],["harden",[2,2,[[57,2,2,0,2,[[1135,1,1,0,1],[1136,1,1,1,2]]]],[30010,30021]]],["hardened",[2,2,[[43,1,1,0,1,[[1036,1,1,0,1]]],[57,1,1,1,2,[[1135,1,1,1,2]]]],[27594,30008]]],["hardeneth",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28173]]]]},{"k":"G4646","v":[["*",[4,4,[[41,1,1,0,1,[[975,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[25030,26989,29406,30417]]],["crooked",[2,2,[[41,1,1,0,1,[[975,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[25030,29406]]],["froward",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30417]]],["untoward",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26989]]]]},{"k":"G4647","v":[["thorn",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29029]]]]},{"k":"G4648","v":[["*",[6,6,[[41,1,1,0,1,[[983,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]],[46,1,1,2,3,[[1081,1,1,2,3]]],[47,1,1,3,4,[[1096,1,1,3,4]]],[49,2,2,4,6,[[1104,1,1,4,5],[1105,1,1,5,6]]]],[25440,28353,28877,29189,29395,29438]]],["+",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28877]]],["Look",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29395]]],["considering",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29189]]],["heed",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25440]]],["mark",[2,2,[[44,1,1,0,1,[[1061,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[28353,29438]]]]},{"k":"G4649","v":[["mark",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29435]]]]},{"k":"G4650","v":[["*",[5,5,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,2,2,2,4,[[1006,1,1,2,3],[1012,1,1,3,4]]],[46,1,1,4,5,[[1086,1,1,4,5]]]],[23519,25428,26493,26758,28965]]],["abroad",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[46,1,1,1,2,[[1086,1,1,1,2]]]],[23519,28965]]],["scattered",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26758]]],["scattereth",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,1,1,1,2,[[1006,1,1,1,2]]]],[25428,26493]]]]},{"k":"G4651","v":[["*",[5,5,[[41,2,2,0,2,[[982,1,1,0,1],[983,1,1,1,2]]],[65,3,3,2,5,[[1175,3,3,2,5]]]],[25382,25417,30843,30845,30850]]],["scorpion",[2,2,[[41,1,1,0,1,[[983,1,1,0,1]]],[65,1,1,1,2,[[1175,1,1,1,2]]]],[25417,30845]]],["scorpions",[3,3,[[41,1,1,0,1,[[982,1,1,0,1]]],[65,2,2,1,3,[[1175,2,2,1,3]]]],[25382,30843,30850]]]]},{"k":"G4652","v":[["*",[3,3,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,2,2,1,3,[[983,2,2,1,3]]]],[23305,25439,25441]]],["dark",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25441]]],["darkness",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23305,25439]]]]},{"k":"G4653","v":[["*",[16,12,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[42,8,6,2,8,[[997,2,1,2,3],[1002,1,1,3,4],[1004,1,1,4,5],[1008,3,2,5,7],[1016,1,1,7,8]]],[61,6,4,8,12,[[1159,1,1,8,9],[1160,5,3,9,12]]]],[23444,25462,26049,26274,26393,26615,26626,26868,30545,30558,30559,30561]]],["dark",[2,2,[[42,2,2,0,2,[[1002,1,1,0,1],[1016,1,1,1,2]]]],[26274,26868]]],["darkness",[14,10,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[42,6,4,2,6,[[997,2,1,2,3],[1004,1,1,3,4],[1008,3,2,4,6]]],[61,6,4,6,10,[[1159,1,1,6,7],[1160,5,3,7,10]]]],[23444,25462,26049,26393,26615,26626,30545,30558,30559,30561]]]]},{"k":"G4654","v":[["darkened",[8,8,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[44,2,2,3,5,[[1046,1,1,3,4],[1056,1,1,4,5]]],[48,1,1,5,6,[[1100,1,1,5,6]]],[65,2,2,6,8,[[1174,1,1,6,7],[1175,1,1,7,8]]]],[23986,24741,25980,27951,28219,29290,30839,30842]]]]},{"k":"G4655","v":[["darkness",[32,31,[[39,7,6,0,6,[[932,1,1,0,1],[934,2,1,1,2],[936,1,1,2,3],[950,1,1,3,4],[953,1,1,4,5],[955,1,1,5,6]]],[40,1,1,6,7,[[971,1,1,6,7]]],[41,4,4,7,11,[[973,1,1,7,8],[983,1,1,8,9],[994,1,1,9,10],[995,1,1,10,11]]],[42,1,1,11,12,[[999,1,1,11,12]]],[43,3,3,12,15,[[1019,1,1,12,13],[1030,1,1,13,14],[1043,1,1,14,15]]],[44,2,2,15,17,[[1047,1,1,15,16],[1058,1,1,16,17]]],[45,1,1,17,18,[[1065,1,1,17,18]]],[46,2,2,18,20,[[1081,1,1,18,19],[1083,1,1,19,20]]],[48,3,3,20,23,[[1101,2,2,20,22],[1102,1,1,22,23]]],[50,1,1,23,24,[[1107,1,1,23,24]]],[51,2,2,24,26,[[1115,2,2,24,26]]],[57,1,1,26,27,[[1144,1,1,26,27]]],[59,1,1,27,28,[[1152,1,1,27,28]]],[60,1,1,28,29,[[1157,1,1,28,29]]],[61,1,1,29,30,[[1159,1,1,29,30]]],[64,1,1,30,31,[[1166,1,1,30,31]]]],[23225,23305,23357,23885,24038,24174,24859,24972,25440,25917,25979,26139,26969,27373,27841,27981,28278,28438,28865,28912,29312,29315,29349,29478,29625,29626,30230,30408,30517,30546,30685]]]]},{"k":"G4656","v":[["darkness",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30964]]]]},{"k":"G4657","v":[["dung",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29429]]]]},{"k":"G4658","v":[["Scythian",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29528]]]]},{"k":"G4659","v":[["*",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]]],[23298,26008]]],["countenance",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23298]]],["sad",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26008]]]]},{"k":"G4660","v":[["*",[3,3,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,2,2,1,3,[[979,1,1,1,2],[980,1,1,2,3]]]],[24399,25201,25294]]],["trouble",[2,2,[[41,2,2,0,2,[[979,1,1,0,1],[980,1,1,1,2]]]],[25201,25294]]],["troublest",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24399]]]]},{"k":"G4661","v":[["spoils",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25427]]]]},{"k":"G4662","v":[["worms",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27360]]]]},{"k":"G4663","v":[["worm",[3,3,[[40,3,3,0,3,[[965,3,3,0,3]]]],[24582,24584,24586]]]]},{"k":"G4664","v":[["emerald",[1,1,[[65,1,1,0,1,[[1170,1,1,0,1]]]],[30771]]]]},{"k":"G4665","v":[["emerald",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31072]]]]},{"k":"G4666","v":[["myrrh",[2,2,[[39,1,1,0,1,[[930,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]]],[23180,26864]]]]},{"k":"G4667","v":[["Smyrna",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30708]]]]},{"k":"G4668","v":[["Smyrna",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30725]]]]},{"k":"G4669","v":[["myrrh",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24849]]]]},{"k":"G4670","v":[["*",[10,10,[[39,3,3,0,3,[[938,1,1,0,1],[939,2,2,1,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[41,2,2,4,6,[[982,1,1,4,5],[989,1,1,5,6]]],[44,1,1,6,7,[[1054,1,1,6,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]],[64,1,1,8,9,[[1166,1,1,8,9]]],[65,1,1,9,10,[[1177,1,1,9,10]]]],[23432,23482,23483,24418,25375,25680,28184,30506,30679,30880]]],["+",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30506]]],["Sodom",[8,8,[[39,3,3,0,3,[[938,1,1,0,1],[939,2,2,1,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[41,2,2,4,6,[[982,1,1,4,5],[989,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]],[65,1,1,7,8,[[1177,1,1,7,8]]]],[23432,23482,23483,24418,25375,25680,30679,30880]]],["Sodoma",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28184]]]]},{"k":"G4671","v":[["*",[220,203,[[39,49,47,0,47,[[930,1,1,0,1],[932,1,1,1,2],[933,4,4,2,6],[934,4,4,6,10],[936,3,3,10,13],[937,2,2,13,15],[939,5,4,15,19],[940,1,1,19,20],[942,1,1,20,21],[943,1,1,21,22],[944,5,4,22,26],[945,2,2,26,28],[946,7,7,28,35],[947,1,1,35,36],[948,1,1,36,37],[949,2,2,37,39],[950,2,2,39,41],[953,1,1,41,42],[954,4,4,42,46],[955,1,1,46,47]]],[40,26,26,47,73,[[957,1,1,47,48],[958,4,4,48,52],[960,1,1,52,53],[961,4,4,53,57],[962,3,3,57,60],[965,5,5,60,65],[966,3,3,65,68],[967,1,1,68,69],[968,1,1,69,70],[970,3,3,70,73]]],[41,46,41,73,114,[[973,5,5,73,78],[975,1,1,78,79],[976,2,2,79,81],[977,3,3,81,84],[979,2,2,84,86],[980,3,3,86,89],[981,3,3,89,92],[982,6,5,92,97],[983,2,2,97,99],[984,1,1,99,100],[986,7,4,100,104],[987,1,1,104,105],[990,4,4,105,109],[991,2,1,109,110],[992,1,1,110,111],[994,2,2,111,113],[995,1,1,113,114]]],[42,26,25,114,139,[[997,1,1,114,115],[998,1,1,115,116],[999,4,4,116,120],[1000,3,2,120,122],[1001,3,3,122,125],[1002,1,1,125,126],[1005,1,1,126,127],[1007,3,3,127,130],[1009,2,2,130,132],[1013,3,3,132,135],[1014,2,2,135,137],[1017,2,2,137,139]]],[43,24,22,139,161,[[1020,1,1,139,140],[1022,1,1,140,141],[1024,1,1,141,142],[1025,3,3,142,145],[1026,3,3,145,148],[1027,3,3,148,151],[1033,1,1,151,152],[1035,1,1,152,153],[1038,1,1,153,154],[1039,2,1,154,155],[1040,1,1,155,156],[1041,1,1,156,157],[1043,4,3,157,160],[1044,1,1,160,161]]],[44,4,4,161,165,[[1054,2,2,161,163],[1058,1,1,163,164],[1060,1,1,164,165]]],[45,1,1,165,166,[[1068,1,1,165,166]]],[46,2,2,166,168,[[1083,1,1,166,167],[1089,1,1,167,168]]],[47,1,1,168,169,[[1093,1,1,168,169]]],[48,2,2,169,171,[[1101,1,1,169,170],[1102,1,1,170,171]]],[53,5,4,171,175,[[1119,1,1,171,172],[1121,1,1,172,173],[1122,2,1,173,174],[1124,1,1,174,175]]],[54,5,3,175,178,[[1125,4,2,175,177],[1126,1,1,177,178]]],[55,1,1,178,179,[[1129,1,1,178,179]]],[56,6,5,179,184,[[1132,6,5,179,184]]],[57,2,2,184,186,[[1140,1,1,184,185],[1143,1,1,185,186]]],[58,1,1,186,187,[[1147,1,1,186,187]]],[62,1,1,187,188,[[1164,1,1,187,188]]],[63,2,2,188,190,[[1165,2,2,188,190]]],[64,1,1,190,191,[[1166,1,1,190,191]]],[65,15,12,191,203,[[1168,3,3,191,194],[1169,1,1,194,195],[1170,1,1,195,196],[1177,1,1,196,197],[1180,1,1,197,198],[1183,2,2,198,200],[1184,5,2,200,202],[1187,1,1,202,203]]]],[23182,23218,23260,23263,23264,23274,23286,23288,23300,23305,23358,23364,23374,23381,23384,23480,23482,23483,23484,23536,23601,23661,23689,23690,23691,23694,23704,23725,23735,23736,23744,23749,23753,23756,23759,23789,23806,23831,23849,23888,23889,24052,24071,24087,24088,24089,24148,24239,24265,24269,24271,24278,24361,24371,24373,24383,24405,24425,24429,24430,24543,24563,24581,24583,24585,24609,24616,24639,24668,24687,24784,24785,24790,24896,24906,24907,24912,24928,25047,25069,25097,25127,25130,25131,25209,25235,25273,25275,25284,25334,25358,25362,25376,25384,25398,25399,25403,25412,25440,25518,25562,25563,25565,25567,25617,25699,25710,25716,25729,25775,25781,25875,25898,25978,26094,26099,26123,26125,26127,26131,26166,26182,26220,26222,26224,26287,26466,26545,26563,26564,26667,26668,26764,26768,26780,26815,26819,26901,26916,27002,27063,27119,27196,27197,27198,27221,27222,27233,27265,27291,27292,27501,27567,27687,27714,27752,27783,27824,27837,27839,27879,28162,28172,28270,28312,28508,28900,29031,29110,29318,29340,29714,29745,29761,29801,29814,29815,29834,29897,29946,29949,29954,29957,29959,30097,30190,30311,30650,30671,30672,30681,30722,30727,30733,30764,30769,30889,30941,30976,30982,31015,31016,31062]]],["+",[18,18,[[39,4,4,0,4,[[930,1,1,0,1],[933,1,1,1,2],[936,1,1,2,3],[955,1,1,3,4]]],[40,4,4,4,8,[[957,1,1,4,5],[961,1,1,5,6],[966,1,1,6,7],[968,1,1,7,8]]],[41,4,4,8,12,[[973,1,1,8,9],[976,1,1,9,10],[980,1,1,10,11],[982,1,1,11,12]]],[42,1,1,12,13,[[998,1,1,12,13]]],[43,1,1,13,14,[[1022,1,1,13,14]]],[48,1,1,14,15,[[1101,1,1,14,15]]],[53,1,1,15,16,[[1124,1,1,15,16]]],[54,1,1,16,17,[[1125,1,1,16,17]]],[65,1,1,17,18,[[1177,1,1,17,18]]]],[23182,23274,23374,24148,24239,24371,24639,24687,24912,25097,25273,25403,26099,27063,29318,29801,29815,30889]]],["Thou",[2,2,[[43,2,2,0,2,[[1025,1,1,0,1],[1043,1,1,1,2]]]],[27197,27824]]],["for",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28508]]],["thee",[183,169,[[39,42,40,0,40,[[932,1,1,0,1],[933,3,3,1,4],[934,4,4,4,8],[936,2,2,8,10],[937,2,2,10,12],[939,5,4,12,16],[940,1,1,16,17],[942,1,1,17,18],[943,1,1,18,19],[944,5,4,19,23],[945,1,1,23,24],[946,7,7,24,31],[947,1,1,31,32],[948,1,1,32,33],[949,2,2,33,35],[953,1,1,35,36],[954,4,4,36,40]]],[40,18,18,40,58,[[958,3,3,40,43],[961,2,2,43,45],[962,3,3,45,48],[965,5,5,48,53],[966,1,1,53,54],[967,1,1,54,55],[970,3,3,55,58]]],[41,36,33,58,91,[[973,3,3,58,61],[975,1,1,61,62],[976,1,1,62,63],[977,3,3,63,66],[979,2,2,66,68],[980,1,1,68,69],[981,3,3,69,72],[982,4,3,72,75],[983,2,2,75,77],[984,1,1,77,78],[986,5,4,78,82],[987,1,1,82,83],[990,3,3,83,86],[991,2,1,86,87],[992,1,1,87,88],[994,2,2,88,90],[995,1,1,90,91]]],[42,24,23,91,114,[[997,1,1,91,92],[999,4,4,92,96],[1000,3,2,96,98],[1001,3,3,98,101],[1002,1,1,101,102],[1005,1,1,102,103],[1007,3,3,103,106],[1009,2,2,106,108],[1013,2,2,108,110],[1014,2,2,110,112],[1017,2,2,112,114]]],[43,21,19,114,133,[[1020,1,1,114,115],[1024,1,1,115,116],[1025,2,2,116,118],[1026,3,3,118,121],[1027,3,3,121,124],[1033,1,1,124,125],[1035,1,1,125,126],[1038,1,1,126,127],[1039,2,1,127,128],[1040,1,1,128,129],[1041,1,1,129,130],[1043,3,2,130,132],[1044,1,1,132,133]]],[44,3,3,133,136,[[1054,1,1,133,134],[1058,1,1,134,135],[1060,1,1,135,136]]],[46,2,2,136,138,[[1083,1,1,136,137],[1089,1,1,137,138]]],[47,1,1,138,139,[[1093,1,1,138,139]]],[48,1,1,139,140,[[1102,1,1,139,140]]],[53,4,3,140,143,[[1119,1,1,140,141],[1121,1,1,141,142],[1122,2,1,142,143]]],[54,4,3,143,146,[[1125,3,2,143,145],[1126,1,1,145,146]]],[55,1,1,146,147,[[1129,1,1,146,147]]],[56,6,5,147,152,[[1132,6,5,147,152]]],[57,1,1,152,153,[[1140,1,1,152,153]]],[58,1,1,153,154,[[1147,1,1,153,154]]],[62,1,1,154,155,[[1164,1,1,154,155]]],[63,2,2,155,157,[[1165,2,2,155,157]]],[64,1,1,157,158,[[1166,1,1,157,158]]],[65,14,11,158,169,[[1168,3,3,158,161],[1169,1,1,161,162],[1170,1,1,162,163],[1180,1,1,163,164],[1183,2,2,164,166],[1184,5,2,166,168],[1187,1,1,168,169]]]],[23218,23260,23263,23264,23286,23288,23300,23305,23358,23364,23381,23384,23480,23482,23483,23484,23536,23601,23661,23689,23690,23691,23694,23704,23735,23736,23744,23749,23753,23756,23759,23789,23806,23831,23849,24052,24071,24087,24088,24089,24265,24269,24271,24383,24405,24425,24429,24430,24543,24563,24581,24583,24585,24616,24668,24784,24785,24790,24896,24906,24928,25047,25069,25127,25130,25131,25209,25235,25284,25334,25358,25362,25376,25384,25398,25412,25440,25518,25562,25563,25565,25567,25617,25699,25716,25729,25775,25781,25875,25898,25978,26094,26123,26125,26127,26131,26166,26182,26220,26222,26224,26287,26466,26545,26563,26564,26667,26668,26764,26780,26815,26819,26901,26916,27002,27119,27196,27198,27221,27222,27233,27265,27291,27292,27501,27567,27687,27714,27752,27783,27837,27839,27879,28172,28270,28312,28900,29031,29110,29340,29714,29745,29761,29814,29815,29834,29897,29946,29949,29954,29957,29959,30097,30311,30650,30671,30672,30681,30722,30727,30733,30764,30769,30941,30976,30982,31015,31016,31062]]],["thine",[1,1,[[42,1,1,0,1,[[1013,1,1,0,1]]]],[26768]]],["thou",[10,10,[[39,3,3,0,3,[[945,1,1,0,1],[950,2,2,1,3]]],[40,2,2,3,5,[[960,1,1,3,4],[966,1,1,4,5]]],[41,5,5,5,10,[[973,1,1,5,6],[982,1,1,6,7],[986,2,2,7,9],[990,1,1,9,10]]]],[23725,23888,23889,24361,24609,24907,25399,25563,25567,25710]]],["thy",[5,5,[[40,2,2,0,2,[[958,1,1,0,1],[961,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[44,1,1,3,4,[[1054,1,1,3,4]]],[57,1,1,4,5,[[1143,1,1,4,5]]]],[24278,24373,25275,28162,30190]]]]},{"k":"G4672","v":[["*",[12,10,[[39,5,4,0,4,[[929,2,2,0,2],[934,1,1,2,3],[940,2,1,3,4]]],[41,3,2,4,6,[[983,2,1,4,5],[984,1,1,5,6]]],[42,1,1,6,7,[[1006,1,1,6,7]]],[43,3,3,7,10,[[1020,1,1,7,8],[1022,1,1,8,9],[1024,1,1,9,10]]]],[23150,23151,23311,23531,25436,25486,26504,27007,27071,27163]]],["Solomon",[9,7,[[39,5,4,0,4,[[929,2,2,0,2],[934,1,1,2,3],[940,2,1,3,4]]],[41,3,2,4,6,[[983,2,1,4,5],[984,1,1,5,6]]],[43,1,1,6,7,[[1024,1,1,6,7]]]],[23150,23151,23311,23531,25436,25486,27163]]],["Solomon's",[3,3,[[42,1,1,0,1,[[1006,1,1,0,1]]],[43,2,2,1,3,[[1020,1,1,1,2],[1022,1,1,2,3]]]],[26504,27007,27071]]]]},{"k":"G4673","v":[["bier",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25209]]]]},{"k":"G4674","v":[["*",[25,22,[[39,8,6,0,6,[[935,4,2,0,2],[941,1,1,2,3],[948,1,1,3,4],[952,1,1,4,5],[953,1,1,5,6]]],[40,1,1,6,7,[[961,1,1,6,7]]],[41,4,4,7,11,[[977,1,1,7,8],[978,1,1,8,9],[987,1,1,9,10],[994,1,1,10,11]]],[42,6,5,11,16,[[1000,1,1,11,12],[1013,4,3,12,15],[1014,1,1,15,16]]],[43,3,3,16,19,[[1022,1,1,16,17],[1041,2,2,17,19]]],[45,2,2,19,21,[[1069,1,1,19,20],[1075,1,1,20,21]]],[56,1,1,21,22,[[1132,1,1,21,22]]]],[23319,23338,23566,23806,23960,24033,24383,25140,25176,25619,25906,26198,26765,26769,26776,26820,27063,27771,27773,28538,28694,29952]]],["+",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24383]]],["goods",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25176]]],["own",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]]],[23319,26820,27063]]],["thine",[8,7,[[39,2,2,0,2,[[948,1,1,0,1],[953,1,1,1,2]]],[41,3,3,2,5,[[977,1,1,2,3],[987,1,1,3,4],[994,1,1,4,5]]],[42,3,2,5,7,[[1013,3,2,5,7]]]],[23806,24033,25140,25619,25906,26765,26769]]],["thy",[12,10,[[39,5,3,0,3,[[935,3,1,0,1],[941,1,1,1,2],[952,1,1,2,3]]],[42,2,2,3,5,[[1000,1,1,3,4],[1013,1,1,4,5]]],[43,2,2,5,7,[[1041,2,2,5,7]]],[45,2,2,7,9,[[1069,1,1,7,8],[1075,1,1,8,9]]],[56,1,1,9,10,[[1132,1,1,9,10]]]],[23338,23566,23960,26198,26776,27771,27773,28538,28694,29952]]]]},{"k":"G4675","v":[["*",[495,359,[[39,114,71,0,71,[[929,1,1,0,1],[930,1,1,1,2],[931,1,1,2,3],[932,4,3,3,6],[933,22,11,6,17],[934,22,11,17,28],[935,6,3,28,31],[937,6,5,31,36],[939,4,2,36,38],[940,7,5,38,43],[943,3,3,43,46],[945,2,2,46,48],[946,11,5,48,53],[947,3,2,53,55],[948,3,2,55,57],[949,2,2,57,59],[950,7,3,59,62],[951,1,1,62,63],[953,3,3,63,66],[954,4,4,66,70],[955,1,1,70,71]]],[40,42,29,71,100,[[957,4,2,71,73],[958,4,3,73,76],[959,3,2,76,78],[961,4,3,78,81],[962,1,1,81,82],[963,4,3,82,85],[965,5,5,85,90],[966,5,3,90,93],[967,1,1,93,94],[968,8,3,94,97],[970,2,2,97,99],[971,1,1,99,100]]],[41,116,82,100,182,[[973,9,8,100,108],[974,5,4,108,112],[976,6,6,112,118],[977,6,5,118,123],[978,8,4,123,127],[979,6,4,127,131],[980,6,5,131,136],[981,4,4,136,140],[982,8,3,140,143],[983,7,3,143,146],[984,3,2,146,148],[985,3,3,148,151],[986,4,2,151,153],[987,10,7,153,160],[988,6,4,160,164],[989,2,2,164,166],[990,3,2,166,168],[991,12,9,168,177],[992,2,1,177,178],[994,4,2,178,180],[995,2,2,180,182]]],[42,40,37,182,219,[[998,1,1,182,183],[999,1,1,183,184],[1000,5,5,184,189],[1001,3,3,189,192],[1003,1,1,192,193],[1004,3,3,193,196],[1005,4,4,196,200],[1007,1,1,200,201],[1008,2,2,201,203],[1009,2,2,203,205],[1013,11,9,205,214],[1014,1,1,214,215],[1015,2,2,215,217],[1016,2,1,217,218],[1017,1,1,218,219]]],[43,63,52,219,271,[[1019,4,3,219,222],[1020,1,1,222,223],[1021,8,5,223,228],[1022,3,3,228,231],[1024,4,3,231,234],[1025,5,4,234,238],[1026,2,2,238,240],[1027,5,3,240,243],[1028,1,1,243,244],[1029,2,1,244,245],[1030,1,1,245,246],[1031,1,1,246,247],[1033,1,1,247,248],[1034,2,2,248,250],[1035,1,1,250,251],[1038,3,3,251,254],[1039,3,3,254,257],[1040,5,4,257,261],[1041,3,3,261,264],[1042,1,1,264,265],[1043,3,3,265,268],[1044,1,1,268,269],[1045,3,2,269,271]]],[44,22,16,271,287,[[1047,2,2,271,273],[1048,1,1,273,274],[1049,1,1,274,275],[1053,1,1,275,276],[1055,6,3,276,279],[1056,3,2,279,281],[1057,1,1,281,282],[1058,1,1,282,283],[1059,5,3,283,286],[1060,1,1,286,287]]],[45,3,2,287,289,[[1073,1,1,287,288],[1076,2,1,288,289]]],[46,1,1,289,290,[[1083,1,1,289,290]]],[47,2,2,290,292,[[1093,1,1,290,291],[1095,1,1,291,292]]],[48,1,1,292,293,[[1102,1,1,292,293]]],[53,6,5,293,298,[[1122,3,3,293,296],[1123,2,1,296,297],[1124,1,1,297,298]]],[54,6,5,298,303,[[1125,4,3,298,301],[1128,2,2,301,303]]],[55,1,1,303,304,[[1130,1,1,303,304]]],[56,10,9,304,313,[[1132,10,9,304,313]]],[57,12,9,313,322,[[1133,8,5,313,318],[1134,2,2,318,320],[1142,2,2,320,322]]],[58,3,2,322,324,[[1147,3,2,322,324]]],[62,2,2,324,326,[[1164,2,2,324,326]]],[63,3,3,326,329,[[1165,3,3,326,329]]],[65,48,30,329,359,[[1168,13,8,329,337],[1169,9,7,337,344],[1170,1,1,344,345],[1171,1,1,345,346],[1176,2,1,346,347],[1177,4,2,347,349],[1180,2,2,349,351],[1181,5,2,351,353],[1182,1,1,353,354],[1184,6,3,354,357],[1185,2,1,357,358],[1188,2,1,358,359]]]],[23164,23175,23206,23215,23216,23219,23257,23258,23259,23263,23264,23267,23270,23273,23274,23276,23277,23284,23285,23286,23288,23291,23292,23295,23299,23300,23304,23305,23319,23320,23321,23381,23385,23393,23397,23401,23469,23485,23491,23502,23526,23527,23536,23635,23637,23661,23716,23727,23735,23736,23742,23743,23760,23781,23783,23807,23813,23831,23845,23909,23911,23916,23955,24029,24031,24033,24096,24106,24116,24127,24142,24217,24259,24265,24269,24271,24293,24320,24383,24398,24399,24425,24468,24473,24492,24556,24576,24581,24583,24585,24607,24625,24640,24654,24703,24704,24709,24814,24824,24830,24906,24921,24928,24929,24931,24935,24937,24954,25002,25003,25005,25021,25070,25071,25073,25074,25075,25086,25112,25121,25127,25130,25131,25156,25175,25187,25188,25222,25239,25243,25245,25265,25273,25284,25293,25294,25339,25341,25342,25350,25380,25384,25390,25407,25439,25441,25479,25517,25530,25544,25552,25561,25565,25606,25607,25609,25615,25617,25618,25620,25622,25626,25627,25645,25654,25670,25708,25730,25736,25747,25749,25751,25753,25770,25773,25774,25775,25822,25896,25897,25977,25981,26112,26146,26172,26174,26206,26207,26209,26218,26221,26222,26331,26391,26394,26400,26450,26457,26466,26477,26546,26595,26608,26667,26668,26760,26765,26766,26767,26770,26771,26773,26776,26785,26796,26851,26852,26894,26916,26976,26977,26984,27021,27047,27049,27050,27051,27052,27062,27063,27068,27119,27148,27149,27196,27197,27198,27210,27229,27230,27263,27281,27290,27321,27345,27397,27424,27514,27542,27555,27567,27685,27688,27703,27720,27722,27724,27739,27755,27764,27769,27771,27780,27788,27822,27825,27826,27839,27879,27920,27921,27967,27987,27995,28040,28152,28194,28196,28197,28212,28230,28265,28275,28290,28295,28301,28312,28655,28773,28900,29118,29176,29339,29759,29762,29763,29786,29809,29812,29813,29814,29875,29892,29923,29940,29942,29943,29944,29945,29951,29952,29958,29959,29971,29972,29973,29975,29976,29984,29989,30140,30142,30301,30311,30649,30658,30660,30661,30664,30719,30721,30722,30726,30730,30731,30736,30737,30747,30748,30754,30755,30757,30761,30764,30779,30788,30870,30889,30890,30941,30944,30949,30950,30961,31003,31007,31016,31027,31089]]],["+",[17,17,[[39,3,3,0,3,[[939,1,1,0,1],[947,1,1,1,2],[951,1,1,2,3]]],[40,2,2,3,5,[[961,1,1,3,4],[968,1,1,4,5]]],[41,4,4,5,9,[[982,1,1,5,6],[985,2,2,6,8],[987,1,1,8,9]]],[42,1,1,9,10,[[1009,1,1,9,10]]],[43,2,2,10,12,[[1019,1,1,10,11],[1029,1,1,11,12]]],[44,1,1,12,13,[[1053,1,1,12,13]]],[53,1,1,13,14,[[1123,1,1,13,14]]],[56,1,1,14,15,[[1132,1,1,14,15]]],[57,1,1,15,16,[[1133,1,1,15,16]]],[65,1,1,16,17,[[1176,1,1,16,17]]]],[23485,23783,23955,24383,24709,25384,25544,25552,25609,26667,26984,27345,28152,29786,29951,29976,30870]]],["Thy",[17,15,[[39,2,1,0,1,[[934,2,1,0,1]]],[40,1,1,1,2,[[961,1,1,1,2]]],[41,8,7,2,9,[[977,1,1,2,3],[979,2,2,3,5],[980,2,2,5,7],[983,2,1,7,8],[987,1,1,8,9]]],[42,3,3,9,12,[[1000,2,2,9,11],[1007,1,1,11,12]]],[43,2,2,12,14,[[1025,1,1,12,13],[1027,1,1,13,14]]],[57,1,1,14,15,[[1133,1,1,14,15]]]],[23292,24399,25130,25243,25245,25265,25294,25407,25615,26207,26209,26546,27196,27263,29971]]],["own",[6,5,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,4,3,1,4,[[978,2,1,1,2],[980,1,1,2,3],[991,1,1,3,4]]],[42,1,1,4,5,[[1013,1,1,4,5]]]],[23321,25188,25284,25753,26770]]],["thee",[76,73,[[39,19,18,0,18,[[930,1,1,0,1],[931,1,1,1,2],[932,1,1,2,3],[933,4,4,3,7],[934,1,1,7,8],[939,1,1,8,9],[940,1,1,9,10],[945,1,1,10,11],[946,5,4,11,15],[949,1,1,15,16],[954,1,1,16,17],[955,1,1,17,18]]],[40,4,4,18,22,[[957,1,1,18,19],[967,1,1,19,20],[970,1,1,20,21],[971,1,1,21,22]]],[41,11,11,22,33,[[973,2,2,22,24],[976,1,1,24,25],[979,1,1,25,26],[980,1,1,26,27],[981,1,1,27,28],[984,1,1,28,29],[987,1,1,29,30],[988,1,1,30,31],[994,2,2,31,33]]],[42,4,4,33,37,[[999,1,1,33,34],[1005,1,1,34,35],[1013,2,2,35,37]]],[43,19,18,37,55,[[1025,1,1,37,38],[1027,1,1,38,39],[1034,1,1,39,40],[1035,1,1,40,41],[1038,3,3,41,44],[1040,3,3,44,47],[1041,2,2,47,49],[1042,1,1,49,50],[1043,2,2,50,52],[1044,1,1,52,53],[1045,3,2,53,55]]],[44,2,2,55,57,[[1055,1,1,55,56],[1056,1,1,56,57]]],[45,1,1,57,58,[[1073,1,1,57,58]]],[46,1,1,58,59,[[1083,1,1,58,59]]],[53,2,2,59,61,[[1122,1,1,59,60],[1124,1,1,60,61]]],[54,1,1,61,62,[[1125,1,1,61,62]]],[55,1,1,62,63,[[1130,1,1,62,63]]],[56,3,3,63,66,[[1132,3,3,63,66]]],[63,1,1,66,67,[[1165,1,1,66,67]]],[65,7,6,67,73,[[1168,3,3,67,70],[1169,1,1,70,71],[1181,1,1,71,72],[1184,2,1,72,73]]]],[23175,23206,23215,23257,23263,23264,23276,23284,23469,23527,23727,23735,23736,23742,23743,23845,24116,24142,24217,24654,24814,24830,24921,24928,25073,25222,25273,25339,25479,25606,25622,25896,25897,26146,26477,26766,26767,27210,27281,27555,27567,27685,27688,27703,27755,27764,27769,27771,27788,27822,27825,27826,27879,27920,27921,28196,28230,28655,28900,29763,29809,29812,29923,29942,29945,29958,30661,30721,30731,30737,30754,30950,31007]]],["thine",[51,50,[[39,15,14,0,14,[[933,3,3,0,3],[934,5,5,3,8],[935,2,1,8,9],[937,1,1,9,10],[940,1,1,10,11],[946,1,1,11,12],[948,1,1,12,13],[950,1,1,13,14]]],[40,4,4,14,18,[[958,1,1,14,15],[959,1,1,15,16],[965,1,1,16,17],[968,1,1,17,18]]],[41,10,10,18,28,[[976,1,1,18,19],[977,1,1,19,20],[978,1,1,20,21],[979,1,1,21,22],[983,1,1,22,23],[984,1,1,23,24],[985,1,1,24,25],[991,2,2,25,27],[992,1,1,27,28]]],[42,5,5,28,33,[[998,1,1,28,29],[1004,1,1,29,30],[1005,3,3,30,33]]],[43,9,9,33,42,[[1019,1,1,33,34],[1021,1,1,34,35],[1022,2,2,35,37],[1025,1,1,37,38],[1027,2,2,38,40],[1030,1,1,40,41],[1040,1,1,41,42]]],[44,4,4,42,46,[[1055,2,2,42,44],[1056,1,1,44,45],[1057,1,1,45,46]]],[53,1,1,46,47,[[1123,1,1,46,47]]],[57,2,2,47,49,[[1133,2,2,47,49]]],[65,1,1,49,50,[[1169,1,1,49,50]]]],[23259,23267,23277,23286,23295,23299,23304,23305,23320,23385,23502,23736,23807,23916,24271,24293,24585,24709,25070,25131,25188,25239,25439,25517,25530,25773,25774,25822,26112,26391,26450,26457,26466,26976,27052,27062,27063,27198,27263,27290,27397,27769,28194,28197,28212,28265,29786,29973,29976,30764]]],["thou",[4,4,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]],[43,2,2,2,4,[[1034,1,1,2,3],[1041,1,1,3,4]]]],[23285,25561,27542,27780]]],["thy",[324,250,[[39,73,51,0,51,[[929,1,1,0,1],[932,3,3,1,4],[933,15,8,4,12],[934,13,8,12,20],[935,3,3,20,23],[937,5,5,23,28],[939,2,1,28,29],[940,5,3,29,32],[943,3,3,32,35],[945,1,1,35,36],[946,5,3,36,39],[947,2,1,39,40],[948,2,1,40,41],[949,1,1,41,42],[950,6,3,42,45],[953,3,3,45,48],[954,3,3,48,51]]],[40,31,21,51,72,[[957,3,2,51,53],[958,3,3,53,56],[959,2,1,56,57],[961,2,1,57,58],[962,1,1,58,59],[963,4,3,59,62],[965,4,4,62,66],[966,5,3,66,69],[968,6,2,69,71],[970,1,1,71,72]]],[41,78,60,72,132,[[973,7,6,72,78],[974,5,4,78,82],[976,4,4,82,86],[977,4,4,86,90],[978,5,4,90,94],[979,2,1,94,95],[980,2,2,95,97],[981,3,3,97,100],[982,7,2,100,102],[983,4,3,102,105],[984,1,1,105,106],[986,3,1,106,107],[987,7,6,107,113],[988,5,4,113,117],[989,2,2,117,119],[990,3,2,119,121],[991,9,7,121,128],[992,1,1,128,129],[994,2,1,129,130],[995,2,2,130,132]]],[42,26,23,132,155,[[1000,3,3,132,135],[1001,3,3,135,138],[1003,1,1,138,139],[1004,2,2,139,141],[1008,2,2,141,143],[1009,1,1,143,144],[1013,8,6,144,150],[1014,1,1,150,151],[1015,2,2,151,153],[1016,2,1,153,154],[1017,1,1,154,155]]],[43,29,26,155,181,[[1019,2,2,155,157],[1020,1,1,157,158],[1021,7,5,158,163],[1022,1,1,163,164],[1024,4,3,164,167],[1025,2,2,167,169],[1026,2,2,169,171],[1027,1,1,171,172],[1028,1,1,172,173],[1029,1,1,173,174],[1031,1,1,174,175],[1033,1,1,175,176],[1039,3,3,176,179],[1040,1,1,179,180],[1043,1,1,180,181]]],[44,15,12,181,193,[[1047,2,2,181,183],[1048,1,1,183,184],[1049,1,1,184,185],[1055,3,2,185,187],[1056,1,1,187,188],[1058,1,1,188,189],[1059,5,3,189,192],[1060,1,1,192,193]]],[45,2,1,193,194,[[1076,2,1,193,194]]],[47,2,2,194,196,[[1093,1,1,194,195],[1095,1,1,195,196]]],[48,1,1,196,197,[[1102,1,1,196,197]]],[53,2,2,197,199,[[1122,2,2,197,199]]],[54,5,4,199,203,[[1125,3,2,199,201],[1128,2,2,201,203]]],[56,6,6,203,209,[[1132,6,6,203,209]]],[57,8,7,209,216,[[1133,4,3,209,212],[1134,2,2,212,214],[1142,2,2,214,216]]],[58,3,2,216,218,[[1147,3,2,216,218]]],[62,2,2,218,220,[[1164,2,2,218,220]]],[63,2,2,220,222,[[1165,2,2,220,222]]],[65,39,28,222,250,[[1168,10,6,222,228],[1169,7,7,228,235],[1170,1,1,235,236],[1171,1,1,236,237],[1176,1,1,237,238],[1177,4,2,238,240],[1180,2,2,240,242],[1181,4,2,242,244],[1182,1,1,244,245],[1184,4,3,245,248],[1185,2,1,248,249],[1188,2,1,249,250]]]],[23164,23215,23216,23219,23257,23258,23263,23264,23270,23273,23274,23277,23285,23286,23288,23291,23299,23300,23304,23305,23319,23320,23321,23381,23385,23393,23397,23401,23469,23491,23526,23536,23635,23637,23661,23716,23735,23742,23760,23781,23813,23831,23909,23911,23916,24029,24031,24033,24096,24106,24127,24217,24259,24265,24269,24271,24320,24398,24425,24468,24473,24492,24556,24576,24581,24583,24607,24625,24640,24703,24704,24824,24906,24929,24931,24935,24937,24954,25002,25003,25005,25021,25071,25074,25075,25086,25112,25121,25127,25131,25156,25175,25187,25188,25222,25265,25293,25341,25342,25350,25380,25390,25407,25439,25441,25479,25565,25607,25609,25615,25617,25618,25620,25622,25626,25627,25645,25654,25670,25708,25730,25736,25747,25749,25751,25770,25773,25775,25822,25896,25977,25981,26172,26174,26206,26218,26221,26222,26331,26394,26400,26595,26608,26668,26760,26765,26771,26773,26776,26785,26796,26851,26852,26894,26916,26977,26984,27021,27047,27049,27050,27051,27052,27068,27119,27148,27149,27197,27198,27229,27230,27290,27321,27345,27424,27514,27720,27722,27724,27739,27839,27967,27987,27995,28040,28196,28197,28212,28275,28290,28295,28301,28312,28773,29118,29176,29339,29759,29762,29813,29814,29875,29892,29940,29943,29944,29945,29952,29959,29971,29972,29975,29984,29989,30140,30142,30301,30311,30649,30658,30660,30664,30719,30721,30722,30726,30730,30736,30747,30748,30754,30755,30757,30761,30764,30779,30788,30870,30889,30890,30941,30944,30949,30950,30961,31003,31007,31016,31027,31089]]]]},{"k":"G4676","v":[["*",[4,4,[[41,1,1,0,1,[[991,1,1,0,1]]],[42,2,2,1,3,[[1007,1,1,1,2],[1016,1,1,2,3]]],[43,1,1,3,4,[[1036,1,1,3,4]]]],[25751,26567,26874,27597]]],["handkerchiefs",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27597]]],["napkin",[3,3,[[41,1,1,0,1,[[991,1,1,0,1]]],[42,2,2,1,3,[[1007,1,1,1,2],[1016,1,1,2,3]]]],[25751,26567,26874]]]]},{"k":"G4677","v":[["Susanna",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25248]]]]},{"k":"G4678","v":[["wisdom",[51,49,[[39,3,3,0,3,[[939,1,1,0,1],[940,1,1,1,2],[941,1,1,2,3]]],[40,1,1,3,4,[[962,1,1,3,4]]],[41,6,6,4,10,[[974,2,2,4,6],[979,1,1,6,7],[983,2,2,7,9],[993,1,1,9,10]]],[43,4,4,10,14,[[1023,2,2,10,12],[1024,2,2,12,14]]],[44,1,1,14,15,[[1056,1,1,14,15]]],[45,17,15,15,30,[[1062,8,7,15,22],[1063,7,6,22,28],[1064,1,1,28,29],[1073,1,1,29,30]]],[46,1,1,30,31,[[1078,1,1,30,31]]],[48,3,3,31,34,[[1097,2,2,31,33],[1099,1,1,33,34]]],[50,6,6,34,40,[[1107,2,2,34,36],[1108,2,2,36,38],[1109,1,1,38,39],[1110,1,1,39,40]]],[58,4,4,40,44,[[1146,1,1,40,41],[1148,3,3,41,44]]],[60,1,1,44,45,[[1158,1,1,44,45]]],[65,4,4,45,49,[[1171,1,1,45,46],[1173,1,1,46,47],[1179,1,1,47,48],[1183,1,1,48,49]]]],[23478,23531,23593,24409,25013,25025,25230,25436,25454,25841,27104,27111,27126,27138,28242,28380,28382,28383,28384,28385,28387,28393,28395,28398,28399,28400,28401,28407,28429,28642,28812,29214,29223,29261,29474,29493,29497,29517,29533,29547,30271,30332,30334,30336,30537,30791,30822,30926,30984]]]]},{"k":"G4679","v":[["*",[2,2,[[54,1,1,0,1,[[1127,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[29868,30495]]],["+",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29868]]],["devised",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30495]]]]},{"k":"G4680","v":[["*",[22,21,[[39,2,2,0,2,[[939,1,1,0,1],[951,1,1,1,2]]],[41,1,1,2,3,[[982,1,1,2,3]]],[44,4,4,3,7,[[1046,2,2,3,5],[1061,2,2,5,7]]],[45,11,10,7,17,[[1062,5,5,7,12],[1064,5,4,12,16],[1067,1,1,16,17]]],[48,1,1,17,18,[[1101,1,1,17,18]]],[53,1,1,18,19,[[1119,1,1,18,19]]],[58,1,1,19,20,[[1148,1,1,19,20]]],[64,1,1,20,21,[[1166,1,1,20,21]]]],[23484,23952,25384,27944,27952,28355,28363,28382,28383,28388,28389,28390,28420,28428,28429,28430,28472,29319,29713,30332,30697]]],["+",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28355]]],["man",[2,2,[[45,1,1,0,1,[[1067,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]]],[28472,30332]]],["men",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]]],[23952,28389]]],["wise",[16,15,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[44,3,3,2,5,[[1046,2,2,2,4],[1061,1,1,4,5]]],[45,8,7,5,12,[[1062,3,3,5,8],[1064,5,4,8,12]]],[48,1,1,12,13,[[1101,1,1,12,13]]],[53,1,1,13,14,[[1119,1,1,13,14]]],[64,1,1,14,15,[[1166,1,1,14,15]]]],[23484,25384,27944,27952,28363,28382,28383,28390,28420,28428,28429,28430,29319,29713,30697]]],["wiser",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28388]]]]},{"k":"G4681","v":[["Spain",[2,2,[[44,2,2,0,2,[[1060,2,2,0,2]]]],[28327,28331]]]]},{"k":"G4682","v":[["*",[4,4,[[40,3,3,0,3,[[957,1,1,0,1],[965,2,2,1,3]]],[41,1,1,3,4,[[981,1,1,3,4]]]],[24241,24558,24564,25340]]],["rent",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24564]]],["tare",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24558]]],["teareth",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25340]]],["torn",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24241]]]]},{"k":"G4683","v":[["*",[2,2,[[41,2,2,0,2,[[974,2,2,0,2]]]],[24980,24985]]],["+",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24980]]],["clothes",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24985]]]]},{"k":"G4684","v":[["*",[2,2,[[53,1,1,0,1,[[1123,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[29769,30359]]],["pleasure",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29769]]],["wanton",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30359]]]]},{"k":"G4685","v":[["*",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,1,1,1,2,[[1033,1,1,1,2]]]],[24801,27510]]],["drew",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24801]]],["out",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27510]]]]},{"k":"G4686","v":[["band",[7,7,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,2,2,2,4,[[1014,2,2,2,4]]],[43,3,3,4,7,[[1027,1,1,4,5],[1038,1,1,5,6],[1044,1,1,6,7]]]],[24156,24842,26788,26797,27260,27695,27856]]]]},{"k":"G4687","v":[["*",[53,42,[[39,18,16,0,16,[[934,1,1,0,1],[941,15,13,1,14],[953,2,2,14,16]]],[40,12,9,16,25,[[960,12,9,16,25]]],[41,6,4,25,29,[[980,3,1,25,26],[984,1,1,26,27],[991,2,2,27,29]]],[42,2,2,29,31,[[1000,2,2,29,31]]],[45,8,6,31,37,[[1070,1,1,31,32],[1076,7,5,32,37]]],[46,3,2,37,39,[[1086,3,2,37,39]]],[47,3,2,39,41,[[1096,3,2,39,41]]],[58,1,1,41,42,[[1148,1,1,41,42]]]],[23308,23542,23543,23557,23558,23559,23561,23562,23563,23564,23566,23570,23576,23578,24032,24034,24326,24327,24337,24338,24339,24341,24343,24354,24355,25250,25483,25752,25753,26192,26193,28551,28754,28755,28760,28761,28762,28962,28966,29195,29196,30337]]],["+",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]]],[23561,24339]]],["seed",[3,3,[[39,3,3,0,3,[[941,3,3,0,3]]]],[23558,23559,23562]]],["sow",[8,8,[[39,3,3,0,3,[[934,1,1,0,1],[941,2,2,1,3]]],[40,1,1,3,4,[[960,1,1,3,4]]],[41,4,4,4,8,[[980,1,1,4,5],[984,1,1,5,6],[991,2,2,6,8]]]],[23308,23542,23566,24326,25250,25483,25752,25753]]],["sowed",[8,8,[[39,6,6,0,6,[[941,5,5,0,5],[953,1,1,5,6]]],[40,1,1,6,7,[[960,1,1,6,7]]],[41,1,1,7,8,[[980,1,1,7,8]]]],[23543,23563,23564,23570,23578,24034,24327,25250]]],["sower",[6,6,[[39,2,2,0,2,[[941,2,2,0,2]]],[40,2,2,2,4,[[960,2,2,2,4]]],[41,1,1,4,5,[[980,1,1,4,5]]],[46,1,1,5,6,[[1086,1,1,5,6]]]],[23542,23557,24326,24337,25250,28966]]],["sowest",[3,2,[[45,3,2,0,2,[[1076,3,2,0,2]]]],[28754,28755]]],["soweth",[9,7,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[42,2,2,2,4,[[1000,2,2,2,4]]],[46,2,1,4,5,[[1086,2,1,4,5]]],[47,3,2,5,7,[[1096,3,2,5,7]]]],[23576,24337,26192,26193,28962,29195,29196]]],["sown",[14,12,[[39,2,2,0,2,[[941,1,1,0,1],[953,1,1,1,2]]],[40,6,5,2,7,[[960,6,5,2,7]]],[45,5,4,7,11,[[1070,1,1,7,8],[1076,4,3,8,11]]],[58,1,1,11,12,[[1148,1,1,11,12]]]],[23558,24032,24338,24341,24343,24354,24355,28551,28760,28761,28762,30337]]]]},{"k":"G4688","v":[["executioner",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24434]]]]},{"k":"G4689","v":[["*",[2,2,[[49,1,1,0,1,[[1104,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]]],[29408,29876]]],["+",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29876]]],["offered",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29408]]]]},{"k":"G4690","v":[["*",[44,41,[[39,7,7,0,7,[[941,5,5,0,5],[950,2,2,5,7]]],[40,5,5,7,12,[[960,1,1,7,8],[968,4,4,8,12]]],[41,2,2,12,14,[[973,1,1,12,13],[992,1,1,13,14]]],[42,3,3,14,17,[[1003,1,1,14,15],[1004,2,2,15,17]]],[43,4,4,17,21,[[1020,1,1,17,18],[1024,2,2,18,20],[1030,1,1,20,21]]],[44,9,8,21,29,[[1046,1,1,21,22],[1049,3,3,22,25],[1054,4,3,25,28],[1056,1,1,28,29]]],[45,1,1,29,30,[[1076,1,1,29,30]]],[46,2,2,30,32,[[1086,1,1,30,31],[1088,1,1,31,32]]],[47,5,3,32,35,[[1093,5,3,32,35]]],[54,1,1,35,36,[[1126,1,1,35,36]]],[57,3,3,36,39,[[1134,1,1,36,37],[1143,2,2,37,39]]],[61,1,1,39,40,[[1161,1,1,39,40]]],[65,1,1,40,41,[[1178,1,1,40,41]]]],[23563,23566,23571,23576,23577,23896,23897,24354,24692,24693,24694,24695,24948,25807,26370,26414,26418,27021,27121,27122,27385,27933,28035,28038,28040,28162,28163,28184,28210,28756,28966,29011,29118,29121,29131,29835,29993,30183,30190,30588,30908]]],["issue",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23897]]],["seed",[40,38,[[39,5,5,0,5,[[941,4,4,0,4],[950,1,1,4,5]]],[40,4,4,5,9,[[968,4,4,5,9]]],[41,2,2,9,11,[[973,1,1,9,10],[992,1,1,10,11]]],[42,3,3,11,14,[[1003,1,1,11,12],[1004,2,2,12,14]]],[43,4,4,14,18,[[1020,1,1,14,15],[1024,2,2,15,17],[1030,1,1,17,18]]],[44,9,8,18,26,[[1046,1,1,18,19],[1049,3,3,19,22],[1054,4,3,22,25],[1056,1,1,25,26]]],[45,1,1,26,27,[[1076,1,1,26,27]]],[46,2,2,27,29,[[1086,1,1,27,28],[1088,1,1,28,29]]],[47,4,3,29,32,[[1093,4,3,29,32]]],[54,1,1,32,33,[[1126,1,1,32,33]]],[57,3,3,33,36,[[1134,1,1,33,34],[1143,2,2,34,36]]],[61,1,1,36,37,[[1161,1,1,36,37]]],[65,1,1,37,38,[[1178,1,1,37,38]]]],[23563,23566,23576,23577,23896,24692,24693,24694,24695,24948,25807,26370,26414,26418,27021,27121,27122,27385,27933,28035,28038,28040,28162,28163,28184,28210,28756,28966,29011,29118,29121,29131,29835,29993,30183,30190,30588,30908]]],["seeds",[3,3,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[47,1,1,2,3,[[1093,1,1,2,3]]]],[23571,24354,29118]]]]},{"k":"G4691","v":[["babbler",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27541]]]]},{"k":"G4692","v":[["*",[6,6,[[41,3,3,0,3,[[974,1,1,0,1],[991,2,2,1,3]]],[43,2,2,3,5,[[1037,1,1,3,4],[1039,1,1,4,5]]],[60,1,1,5,6,[[1158,1,1,5,6]]]],[24989,25736,25737,27642,27722,30534]]],["haste",[4,4,[[41,3,3,0,3,[[974,1,1,0,1],[991,2,2,1,3]]],[43,1,1,3,4,[[1039,1,1,3,4]]]],[24989,25736,25737,27722]]],["hasted",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27642]]],["hasting",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30534]]]]},{"k":"G4693","v":[["*",[6,6,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,1,1,2,3,[[991,1,1,2,3]]],[42,1,1,3,4,[[1007,1,1,3,4]]],[57,1,1,4,5,[[1143,1,1,4,5]]],[65,1,1,5,6,[[1172,1,1,5,6]]]],[23839,24657,25777,26561,30210,30808]]],["cave",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26561]]],["den",[3,3,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,1,1,2,3,[[991,1,1,2,3]]]],[23839,24657,25777]]],["dens",[2,2,[[57,1,1,0,1,[[1143,1,1,0,1]]],[65,1,1,1,2,[[1172,1,1,1,2]]]],[30210,30808]]]]},{"k":"G4694","v":[["spots",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30684]]]]},{"k":"G4695","v":[["*",[3,3,[[48,1,1,0,1,[[1101,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[29331,30325,30513]]],["Spots",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30513]]],["defileth",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30325]]],["spot",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29331]]]]},{"k":"G4696","v":[["spotted",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30695]]]]},{"k":"G4697","v":[["compassion",[12,12,[[39,5,5,0,5,[[937,1,1,0,1],[942,1,1,1,2],[943,1,1,2,3],[946,1,1,3,4],[948,1,1,4,5]]],[40,4,4,5,9,[[957,1,1,5,6],[962,1,1,6,7],[964,1,1,7,8],[965,1,1,8,9]]],[41,3,3,9,12,[[979,1,1,9,10],[982,1,1,10,11],[987,1,1,11,12]]]],[23415,23611,23665,23754,23826,24256,24441,24502,24560,25208,25396,25608]]]]},{"k":"G4698","v":[["*",[11,11,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]],[46,2,2,2,4,[[1083,1,1,2,3],[1084,1,1,3,4]]],[49,2,2,4,6,[[1103,1,1,4,5],[1104,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[56,3,3,7,10,[[1132,3,3,7,10]]],[61,1,1,10,11,[[1161,1,1,10,11]]]],[24971,26941,28910,28931,29369,29392,29529,29945,29950,29958,30596]]],["+",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24971]]],["affection",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28931]]],["bowels",[9,9,[[43,1,1,0,1,[[1018,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]],[49,2,2,2,4,[[1103,1,1,2,3],[1104,1,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]],[56,3,3,5,8,[[1132,3,3,5,8]]],[61,1,1,8,9,[[1161,1,1,8,9]]]],[26941,28910,29369,29392,29529,29945,29950,29958,30596]]]]},{"k":"G4699","v":[["*",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]]],[24177,24862,26854]]],["+",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24862]]],["spunge",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]]],[24177,26854]]]]},{"k":"G4700","v":[["ashes",[3,3,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[23480,25376,30118]]]]},{"k":"G4701","v":[["seed",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30397]]]]},{"k":"G4702","v":[["*",[3,3,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]]],[23490,24283,25147]]],["corn",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23490]]],["fields",[2,2,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]]],[24283,25147]]]]},{"k":"G4703","v":[["*",[5,5,[[40,2,2,0,2,[[960,2,2,0,2]]],[41,2,2,2,4,[[980,2,2,2,4]]],[46,1,1,4,5,[[1086,1,1,4,5]]]],[24349,24350,25250,25256,28966]]],["seed",[4,4,[[40,2,2,0,2,[[960,2,2,0,2]]],[41,2,2,2,4,[[980,2,2,2,4]]]],[24349,24350,25250,25256]]],["sown",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28966]]]]},{"k":"G4704","v":[["*",[11,11,[[47,1,1,0,1,[[1092,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[51,1,1,2,3,[[1112,1,1,2,3]]],[54,3,3,3,6,[[1126,1,1,3,4],[1128,2,2,4,6]]],[55,1,1,6,7,[[1131,1,1,6,7]]],[57,1,1,7,8,[[1136,1,1,7,8]]],[60,3,3,8,11,[[1156,2,2,8,10],[1158,1,1,10,11]]]],[29091,29275,29587,29842,29879,29891,29935,30025,30489,30494,30536]]],["Endeavouring",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29275]]],["Study",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29842]]],["diligence",[3,3,[[54,2,2,0,2,[[1128,2,2,0,2]]],[60,1,1,2,3,[[1156,1,1,2,3]]]],[29879,29891,30489]]],["diligent",[2,2,[[55,1,1,0,1,[[1131,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[29935,30536]]],["endeavour",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30494]]],["endeavoured",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29587]]],["forward",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29091]]],["labour",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30025]]]]},{"k":"G4705","v":[["diligent",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28954]]]]},{"k":"G4706","v":[["*",[2,2,[[46,1,1,0,1,[[1085,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]]],[28954,29826]]],["diligent",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28954]]],["diligently",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29826]]]]},{"k":"G4707","v":[["forward",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28949]]]]},{"k":"G4708","v":[["carefully",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29419]]]]},{"k":"G4709","v":[["*",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[25199,29936]]],["diligently",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29936]]],["instantly",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25199]]]]},{"k":"G4710","v":[["*",[12,12,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[44,2,2,2,4,[[1057,2,2,2,4]]],[46,5,5,4,9,[[1084,2,2,4,6],[1085,3,3,6,9]]],[57,1,1,9,10,[[1138,1,1,9,10]]],[60,1,1,10,11,[[1156,1,1,10,11]]],[64,1,1,11,12,[[1166,1,1,11,12]]]],[24432,24932,28253,28256,28927,28928,28939,28940,28948,30055,30484,30675]]],["business",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28256]]],["care",[2,2,[[46,2,2,0,2,[[1084,1,1,0,1],[1085,1,1,1,2]]]],[28928,28948]]],["carefulness",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28927]]],["diligence",[5,5,[[44,1,1,0,1,[[1057,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]],[60,1,1,3,4,[[1156,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[28253,28939,30055,30484,30675]]],["forwardness",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28940]]],["haste",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]]],[24432,24932]]]]},{"k":"G4711","v":[["*",[5,5,[[39,2,2,0,2,[[943,1,1,0,1],[944,1,1,1,2]]],[40,2,2,2,4,[[964,2,2,2,4]]],[43,1,1,4,5,[[1026,1,1,4,5]]]],[23670,23682,24508,24520,27241]]],["basket",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27241]]],["baskets",[4,4,[[39,2,2,0,2,[[943,1,1,0,1],[944,1,1,1,2]]],[40,2,2,2,4,[[964,2,2,2,4]]]],[23670,23682,24508,24520]]]]},{"k":"G4712","v":[["*",[6,6,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,2,2,1,3,[[1002,1,1,1,2],[1007,1,1,2,3]]],[45,1,1,3,4,[[1070,1,1,3,4]]],[65,2,2,4,6,[[1180,1,1,4,5],[1187,1,1,5,6]]]],[26004,26276,26541,28564,30946,31069]]],["furlongs",[5,5,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,2,2,1,3,[[1002,1,1,1,2],[1007,1,1,2,3]]],[65,2,2,3,5,[[1180,1,1,3,4],[1187,1,1,4,5]]]],[26004,26276,26541,30946,31069]]],["race",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28564]]]]},{"k":"G4713","v":[["pot",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30109]]]]},{"k":"G4714","v":[["*",[9,9,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,2,2,1,3,[[995,2,2,1,3]]],[43,5,5,3,8,[[1032,1,1,3,4],[1036,1,1,4,5],[1040,2,2,5,7],[1041,1,1,7,8]]],[57,1,1,8,9,[[1141,1,1,8,9]]]],[24833,25954,25960,27444,27625,27741,27744,27774,30113]]],["dissension",[3,3,[[43,3,3,0,3,[[1032,1,1,0,1],[1040,2,2,1,3]]]],[27444,27741,27744]]],["insurrection",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24833]]],["sedition",[3,3,[[41,2,2,0,2,[[995,2,2,0,2]]],[43,1,1,2,3,[[1041,1,1,2,3]]]],[25954,25960,27774]]],["standing",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30113]]],["uproar",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27625]]]]},{"k":"G4715","v":[["money",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23727]]]]},{"k":"G4716","v":[["cross",[28,28,[[39,5,5,0,5,[[938,1,1,0,1],[944,1,1,1,2],[955,3,3,2,5]]],[40,5,5,5,10,[[964,1,1,5,6],[966,1,1,6,7],[971,3,3,7,10]]],[41,3,3,10,13,[[981,1,1,10,11],[986,1,1,11,12],[995,1,1,12,13]]],[42,4,4,13,17,[[1015,4,4,13,17]]],[45,2,2,17,19,[[1062,2,2,17,19]]],[47,3,3,19,22,[[1095,1,1,19,20],[1096,2,2,20,22]]],[48,1,1,22,23,[[1098,1,1,22,23]]],[49,2,2,23,25,[[1104,1,1,23,24],[1105,1,1,24,25]]],[50,2,2,25,27,[[1107,1,1,25,26],[1108,1,1,26,27]]],[57,1,1,27,28,[[1144,1,1,27,28]]]],[23455,23696,24161,24169,24171,24534,24609,24847,24856,24858,25324,25580,25961,26842,26844,26850,26856,28380,28381,29173,29200,29202,29245,29399,29439,29485,29508,30214]]]]},{"k":"G4717","v":[["*",[46,42,[[39,10,10,0,10,[[948,1,1,0,1],[951,1,1,1,2],[954,1,1,2,3],[955,6,6,3,9],[956,1,1,9,10]]],[40,8,8,10,18,[[971,7,7,10,17],[972,1,1,17,18]]],[41,6,5,18,23,[[995,4,3,18,21],[996,2,2,21,23]]],[42,11,8,23,31,[[1015,11,8,23,31]]],[43,2,2,31,33,[[1019,1,1,31,32],[1021,1,1,32,33]]],[45,4,4,33,37,[[1062,2,2,33,35],[1063,2,2,35,37]]],[46,1,1,37,38,[[1090,1,1,37,38]]],[47,3,3,38,41,[[1093,1,1,38,39],[1095,1,1,39,40],[1096,1,1,40,41]]],[65,1,1,41,42,[[1177,1,1,41,42]]]],[23811,23952,24056,24151,24152,24155,24160,24164,24167,24200,24839,24840,24841,24846,24850,24851,24853,24879,25956,25958,25968,25998,26011,26831,26835,26840,26841,26843,26845,26848,26866,26985,27032,28376,28386,28396,28402,29047,29103,29186,29202,30880]]],["Crucify",[4,4,[[40,2,2,0,2,[[971,2,2,0,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]]],[24839,24840,25956,26831]]],["crucified",[31,31,[[39,7,7,0,7,[[954,1,1,0,1],[955,5,5,1,6],[956,1,1,6,7]]],[40,4,4,7,11,[[971,3,3,7,10],[972,1,1,10,11]]],[41,4,4,11,15,[[995,2,2,11,13],[996,2,2,13,15]]],[42,5,5,15,20,[[1015,5,5,15,20]]],[43,2,2,20,22,[[1019,1,1,20,21],[1021,1,1,21,22]]],[45,4,4,22,26,[[1062,2,2,22,24],[1063,2,2,24,26]]],[46,1,1,26,27,[[1090,1,1,26,27]]],[47,3,3,27,30,[[1093,1,1,27,28],[1095,1,1,28,29],[1096,1,1,29,30]]],[65,1,1,30,31,[[1177,1,1,30,31]]]],[24056,24151,24152,24155,24164,24167,24200,24841,24850,24851,24879,25958,25968,25998,26011,26841,26843,26845,26848,26866,26985,27032,28376,28386,28396,28402,29047,29103,29186,29202,30880]]],["crucify",[11,9,[[39,3,3,0,3,[[948,1,1,0,1],[951,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[971,2,2,3,5]]],[41,1,1,5,6,[[995,1,1,5,6]]],[42,5,3,6,9,[[1015,5,3,6,9]]]],[23811,23952,24160,24846,24853,25956,26831,26835,26840]]]]},{"k":"G4718","v":[["grapes",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[65,1,1,2,3,[[1180,1,1,2,3]]]],[23332,25190,30944]]]]},{"k":"G4719","v":[["*",[5,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,3,2,1,3,[[958,1,1,1,2],[960,2,1,2,3]]],[41,1,1,3,4,[[978,1,1,3,4]]]],[23490,24283,24351,25147]]],["corn",[3,3,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]]],[23490,24283,25147]]],["ear",[2,1,[[40,2,1,0,1,[[960,2,1,0,1]]]],[24351]]]]},{"k":"G4720","v":[["Stachys",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28345]]]]},{"k":"G4721","v":[["roof",[3,3,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,1,1,2,3,[[979,1,1,2,3]]]],[23353,24264,25201]]]]},{"k":"G4722","v":[["*",[4,4,[[45,2,2,0,2,[[1070,1,1,0,1],[1074,1,1,1,2]]],[51,2,2,2,4,[[1113,2,2,2,4]]]],[28552,28672,29591,29595]]],["Beareth",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28672]]],["forbear",[2,2,[[51,2,2,0,2,[[1113,2,2,0,2]]]],[29591,29595]]],["suffer",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28552]]]]},{"k":"G4723","v":[["barren",[4,4,[[41,3,3,0,3,[[973,2,2,0,2],[995,1,1,2,3]]],[47,1,1,3,4,[[1094,1,1,3,4]]]],[24900,24929,25964,29158]]]]},{"k":"G4724","v":[["*",[2,2,[[46,1,1,0,1,[[1085,1,1,0,1]]],[52,1,1,1,2,[[1118,1,1,1,2]]]],[28952,29684]]],["Avoiding",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28952]]],["yourselves",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29684]]]]},{"k":"G4725","v":[["garlands",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27427]]]]},{"k":"G4726","v":[["*",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]]],[27150,28142]]],["groaning",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27150]]],["groanings",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28142]]]]},{"k":"G4727","v":[["*",[6,6,[[40,1,1,0,1,[[963,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]],[46,2,2,2,4,[[1082,2,2,2,4]]],[57,1,1,4,5,[[1145,1,1,4,5]]],[58,1,1,5,6,[[1150,1,1,5,6]]]],[24497,28139,28879,28881,30258,30363]]],["Grudge",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30363]]],["grief",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30258]]],["groan",[3,3,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,2,2,1,3,[[1082,2,2,1,3]]]],[28139,28879,28881]]],["sighed",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24497]]]]},{"k":"G4728","v":[["strait",[3,3,[[39,2,2,0,2,[[935,2,2,0,2]]],[41,1,1,2,3,[[985,1,1,2,3]]]],[23329,23330,25542]]]]},{"k":"G4729","v":[["*",[3,2,[[46,3,2,0,2,[[1081,1,1,0,1],[1083,2,1,1,2]]]],[28867,28910]]],["distressed",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28867]]],["straitened",[2,1,[[46,2,1,0,1,[[1083,2,1,0,1]]]],[28910]]]]},{"k":"G4730","v":[["*",[4,4,[[44,2,2,0,2,[[1047,1,1,0,1],[1053,1,1,1,2]]],[46,2,2,2,4,[[1083,1,1,2,3],[1089,1,1,3,4]]]],[27971,28151,28902,29032]]],["anguish",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27971]]],["distress",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28151]]],["distresses",[2,2,[[46,2,2,0,2,[[1083,1,1,0,1],[1089,1,1,1,2]]]],[28902,29032]]]]},{"k":"G4731","v":[["*",[4,4,[[54,1,1,0,1,[[1126,1,1,0,1]]],[57,2,2,1,3,[[1137,2,2,1,3]]],[59,1,1,3,4,[[1155,1,1,3,4]]]],[29846,30042,30044,30474]]],["+",[2,2,[[57,2,2,0,2,[[1137,2,2,0,2]]]],[30042,30044]]],["stedfast",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30474]]],["sure",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29846]]]]},{"k":"G4732","v":[["*",[3,3,[[43,3,3,0,3,[[1020,2,2,0,2],[1033,1,1,2,3]]]],[27003,27012,27488]]],["+",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27012]]],["established",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27488]]],["strength",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27003]]]]},{"k":"G4733","v":[["stedfastness",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29499]]]]},{"k":"G4734","v":[["Stephanas",[3,3,[[45,3,3,0,3,[[1062,1,1,0,1],[1077,2,2,1,3]]]],[28379,28791,28793]]]]},{"k":"G4735","v":[["*",[18,18,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,2,2,2,4,[[1015,2,2,2,4]]],[45,1,1,4,5,[[1070,1,1,4,5]]],[49,1,1,5,6,[[1106,1,1,5,6]]],[51,1,1,6,7,[[1112,1,1,6,7]]],[54,1,1,7,8,[[1128,1,1,7,8]]],[58,1,1,8,9,[[1146,1,1,8,9]]],[59,1,1,9,10,[[1155,1,1,9,10]]],[65,8,8,10,18,[[1168,1,1,10,11],[1169,1,1,11,12],[1170,2,2,12,14],[1172,1,1,14,15],[1175,1,1,15,16],[1178,1,1,16,17],[1180,1,1,17,18]]]],[24158,24843,26827,26830,28565,29443,29589,29878,30278,30469,30727,30757,30772,30778,30795,30847,30892,30940]]],["crown",[15,15,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,2,2,2,4,[[1015,2,2,2,4]]],[45,1,1,4,5,[[1070,1,1,4,5]]],[49,1,1,5,6,[[1106,1,1,5,6]]],[51,1,1,6,7,[[1112,1,1,6,7]]],[54,1,1,7,8,[[1128,1,1,7,8]]],[58,1,1,8,9,[[1146,1,1,8,9]]],[59,1,1,9,10,[[1155,1,1,9,10]]],[65,5,5,10,15,[[1168,1,1,10,11],[1169,1,1,11,12],[1172,1,1,12,13],[1178,1,1,13,14],[1180,1,1,14,15]]]],[24158,24843,26827,26830,28565,29443,29589,29878,30278,30469,30727,30757,30795,30892,30940]]],["crowns",[3,3,[[65,3,3,0,3,[[1170,2,2,0,2],[1175,1,1,2,3]]]],[30772,30778,30847]]]]},{"k":"G4736","v":[["Stephen",[7,7,[[43,7,7,0,7,[[1023,3,3,0,3],[1024,1,1,3,4],[1025,1,1,4,5],[1028,1,1,5,6],[1039,1,1,6,7]]]],[27106,27109,27110,27175,27178,27326,27724]]]]},{"k":"G4737","v":[["*",[3,3,[[54,1,1,0,1,[[1126,1,1,0,1]]],[57,2,2,1,3,[[1134,2,2,1,3]]]],[29832,29984,29986]]],["crowned",[2,2,[[54,1,1,0,1,[[1126,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]]],[29832,29986]]],["crownedst",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29984]]]]},{"k":"G4738","v":[["*",[5,5,[[41,2,2,0,2,[[990,1,1,0,1],[995,1,1,1,2]]],[42,2,2,2,4,[[1009,1,1,2,3],[1017,1,1,3,4]]],[65,1,1,4,5,[[1181,1,1,4,5]]]],[25701,25983,26655,26918,30952]]],["breast",[3,3,[[41,1,1,0,1,[[990,1,1,0,1]]],[42,2,2,1,3,[[1009,1,1,1,2],[1017,1,1,2,3]]]],[25701,26655,26918]]],["breasts",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[65,1,1,1,2,[[1181,1,1,1,2]]]],[25983,30952]]]]},{"k":"G4739","v":[["*",[8,8,[[40,1,1,0,1,[[967,1,1,0,1]]],[44,1,1,1,2,[[1059,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]],[49,2,2,4,6,[[1103,1,1,4,5],[1106,1,1,5,6]]],[51,1,1,6,7,[[1113,1,1,6,7]]],[52,1,1,7,8,[[1117,1,1,7,8]]]],[24665,28284,28789,29163,29388,29443,29598,29676]]],["fast",[6,6,[[45,1,1,0,1,[[1077,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[49,2,2,2,4,[[1103,1,1,2,3],[1106,1,1,3,4]]],[51,1,1,4,5,[[1113,1,1,4,5]]],[52,1,1,5,6,[[1117,1,1,5,6]]]],[28789,29163,29388,29443,29598,29676]]],["stand",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24665]]],["standeth",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28284]]]]},{"k":"G4740","v":[["stedfastness",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30539]]]]},{"k":"G4741","v":[["*",[13,13,[[41,3,3,0,3,[[981,1,1,0,1],[988,1,1,1,2],[994,1,1,2,3]]],[44,2,2,3,5,[[1046,1,1,3,4],[1061,1,1,4,5]]],[51,2,2,5,7,[[1113,2,2,5,7]]],[52,2,2,7,9,[[1117,1,1,7,8],[1118,1,1,8,9]]],[58,1,1,9,10,[[1150,1,1,9,10]]],[59,1,1,10,11,[[1155,1,1,10,11]]],[60,1,1,11,12,[[1156,1,1,11,12]]],[65,1,1,12,13,[[1169,1,1,12,13]]]],[25352,25646,25896,27941,28361,29592,29603,29678,29681,30362,30475,30491,30748]]],["establish",[1,1,[[51,1,1,0,1,[[1113,1,1,0,1]]]],[29592]]],["established",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[27941,30491]]],["fixed",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25646]]],["set",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25352]]],["stablish",[6,6,[[44,1,1,0,1,[[1061,1,1,0,1]]],[51,1,1,1,2,[[1113,1,1,1,2]]],[52,2,2,2,4,[[1117,1,1,2,3],[1118,1,1,3,4]]],[58,1,1,4,5,[[1150,1,1,4,5]]],[59,1,1,5,6,[[1155,1,1,5,6]]]],[28361,29603,29678,29681,30362,30475]]],["strengthen",[2,2,[[41,1,1,0,1,[[994,1,1,0,1]]],[65,1,1,1,2,[[1169,1,1,1,2]]]],[25896,30748]]]]},{"k":"G4742","v":[["marks",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29205]]]]},{"k":"G4743","v":[["moment",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25068]]]]},{"k":"G4744","v":[["shining",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24541]]]]},{"k":"G4745","v":[["*",[4,4,[[42,2,2,0,2,[[1001,1,1,0,1],[1006,1,1,1,2]]],[43,2,2,2,4,[[1020,1,1,2,3],[1022,1,1,3,4]]]],[26212,26504,27007,27071]]],["porch",[3,3,[[42,1,1,0,1,[[1006,1,1,0,1]]],[43,2,2,1,3,[[1020,1,1,1,2],[1022,1,1,2,3]]]],[26504,27007,27071]]],["porches",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26212]]]]},{"k":"G4746","v":[["branches",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24648]]]]},{"k":"G4747","v":[["*",[7,7,[[47,2,2,0,2,[[1094,2,2,0,2]]],[50,2,2,2,4,[[1108,2,2,2,4]]],[57,1,1,4,5,[[1137,1,1,4,5]]],[60,2,2,5,7,[[1158,2,2,5,7]]]],[29134,29140,29502,29514,30042,30532,30534]]],["elements",[4,4,[[47,2,2,0,2,[[1094,2,2,0,2]]],[60,2,2,2,4,[[1158,2,2,2,4]]]],[29134,29140,30532,30534]]],["principles",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30042]]],["rudiments",[2,2,[[50,2,2,0,2,[[1108,2,2,0,2]]]],[29502,29514]]]]},{"k":"G4748","v":[["*",[5,5,[[43,1,1,0,1,[[1038,1,1,0,1]]],[44,1,1,1,2,[[1049,1,1,1,2]]],[47,2,2,2,4,[[1095,1,1,2,3],[1096,1,1,3,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]]],[27688,28034,29187,29204,29437]]],["+",[1,1,[[44,1,1,0,1,[[1049,1,1,0,1]]]],[28034]]],["orderly",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27688]]],["walk",[3,3,[[47,2,2,0,2,[[1095,1,1,0,1],[1096,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]]],[29187,29204,29437]]]]},{"k":"G4749","v":[["*",[8,8,[[40,2,2,0,2,[[968,1,1,0,1],[972,1,1,1,2]]],[41,2,2,2,4,[[987,1,1,2,3],[992,1,1,3,4]]],[65,4,4,4,8,[[1172,1,1,4,5],[1173,3,3,5,8]]]],[24711,24878,25610,25825,30804,30819,30823,30824]]],["+",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24878]]],["clothing",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24711]]],["robe",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25610]]],["robes",[5,5,[[41,1,1,0,1,[[992,1,1,0,1]]],[65,4,4,1,5,[[1172,1,1,1,2],[1173,3,3,2,5]]]],[25825,30804,30819,30823,30824]]]]},{"k":"G4750","v":[["*",[79,72,[[39,12,11,0,11,[[932,1,1,0,1],[933,1,1,1,2],[940,1,1,2,3],[941,1,1,3,4],[943,5,4,4,8],[945,1,1,8,9],[946,1,1,9,10],[949,1,1,10,11]]],[41,9,9,11,20,[[973,2,2,11,13],[976,1,1,13,14],[978,1,1,14,15],[983,1,1,15,16],[991,1,1,16,17],[993,2,2,17,19],[994,1,1,19,20]]],[42,1,1,20,21,[[1015,1,1,20,21]]],[43,12,12,21,33,[[1018,1,1,21,22],[1020,2,2,22,24],[1021,1,1,24,25],[1025,2,2,25,27],[1027,1,1,27,28],[1028,1,1,28,29],[1032,1,1,29,30],[1035,1,1,30,31],[1039,1,1,31,32],[1040,1,1,32,33]]],[44,6,6,33,39,[[1048,2,2,33,35],[1055,3,3,35,38],[1060,1,1,38,39]]],[46,2,2,39,41,[[1083,1,1,39,40],[1090,1,1,40,41]]],[48,2,2,41,43,[[1100,1,1,41,42],[1102,1,1,42,43]]],[50,1,1,43,44,[[1109,1,1,43,44]]],[52,1,1,44,45,[[1117,1,1,44,45]]],[54,1,1,45,46,[[1128,1,1,45,46]]],[57,2,2,46,48,[[1143,2,2,46,48]]],[58,2,2,48,50,[[1148,2,2,48,50]]],[59,1,1,50,51,[[1152,1,1,50,51]]],[62,2,1,51,52,[[1164,2,1,51,52]]],[63,2,1,52,53,[[1165,2,1,52,53]]],[64,1,1,53,54,[[1166,1,1,53,54]]],[65,22,18,54,72,[[1167,1,1,54,55],[1168,1,1,55,56],[1169,1,1,56,57],[1175,3,3,57,60],[1176,2,2,60,62],[1177,1,1,62,63],[1178,3,2,63,65],[1179,4,3,65,68],[1180,1,1,68,69],[1182,3,1,69,70],[1185,2,2,70,72]]]],[23213,23236,23523,23574,23641,23644,23650,23651,23727,23743,23842,24957,24963,25085,25191,25459,25753,25841,25850,25935,26854,26939,27014,27017,27047,27208,27211,27293,27315,27449,27571,27718,27736,28005,28010,28196,28197,28198,28309,28909,29044,29301,29356,29525,29669,29887,30205,30206,30322,30329,30421,30657,30672,30688,30713,30733,30762,30857,30858,30859,30870,30871,30877,30906,30907,30910,30913,30914,30931,30967,31032,31038]]],["+",[4,2,[[62,2,1,0,1,[[1164,2,1,0,1]]],[63,2,1,1,2,[[1165,2,1,1,2]]]],[30657,30672]]],["edge",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[25850,30206]]],["mouth",[69,64,[[39,12,11,0,11,[[932,1,1,0,1],[933,1,1,1,2],[940,1,1,2,3],[941,1,1,3,4],[943,5,4,4,8],[945,1,1,8,9],[946,1,1,9,10],[949,1,1,10,11]]],[41,8,8,11,19,[[973,2,2,11,13],[976,1,1,13,14],[978,1,1,14,15],[983,1,1,15,16],[991,1,1,16,17],[993,1,1,17,18],[994,1,1,18,19]]],[42,1,1,19,20,[[1015,1,1,19,20]]],[43,12,12,20,32,[[1018,1,1,20,21],[1020,2,2,21,23],[1021,1,1,23,24],[1025,2,2,24,26],[1027,1,1,26,27],[1028,1,1,27,28],[1032,1,1,28,29],[1035,1,1,29,30],[1039,1,1,30,31],[1040,1,1,31,32]]],[44,6,6,32,38,[[1048,2,2,32,34],[1055,3,3,34,37],[1060,1,1,37,38]]],[46,2,2,38,40,[[1083,1,1,38,39],[1090,1,1,39,40]]],[48,2,2,40,42,[[1100,1,1,40,41],[1102,1,1,41,42]]],[50,1,1,42,43,[[1109,1,1,42,43]]],[52,1,1,43,44,[[1117,1,1,43,44]]],[54,1,1,44,45,[[1128,1,1,44,45]]],[58,1,1,45,46,[[1148,1,1,45,46]]],[59,1,1,46,47,[[1152,1,1,46,47]]],[64,1,1,47,48,[[1166,1,1,47,48]]],[65,20,16,48,64,[[1167,1,1,48,49],[1168,1,1,49,50],[1169,1,1,50,51],[1175,1,1,51,52],[1176,2,2,52,54],[1177,1,1,54,55],[1178,3,2,55,57],[1179,4,3,57,60],[1180,1,1,60,61],[1182,3,1,61,62],[1185,2,2,62,64]]]],[23213,23236,23523,23574,23641,23644,23650,23651,23727,23743,23842,24957,24963,25085,25191,25459,25753,25841,25935,26854,26939,27014,27017,27047,27208,27211,27293,27315,27449,27571,27718,27736,28005,28010,28196,28197,28198,28309,28909,29044,29301,29356,29525,29669,29887,30329,30421,30688,30713,30733,30762,30859,30870,30871,30877,30906,30907,30910,30913,30914,30931,30967,31032,31038]]],["mouths",[4,4,[[57,1,1,0,1,[[1143,1,1,0,1]]],[58,1,1,1,2,[[1148,1,1,1,2]]],[65,2,2,2,4,[[1175,2,2,2,4]]]],[30205,30322,30857,30858]]]]},{"k":"G4751","v":[["+",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29786]]]]},{"k":"G4752","v":[["warfare",[2,2,[[46,1,1,0,1,[[1087,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]]],[28975,29714]]]]},{"k":"G4753","v":[["*",[8,7,[[39,1,1,0,1,[[950,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]],[43,2,2,2,4,[[1040,2,2,2,4]]],[65,4,3,4,7,[[1175,1,1,4,5],[1185,3,2,5,7]]]],[23879,25946,27744,27761,30856,31031,31036]]],["armies",[3,3,[[39,1,1,0,1,[[950,1,1,0,1]]],[65,2,2,1,3,[[1185,2,2,1,3]]]],[23879,31031,31036]]],["army",[3,3,[[43,1,1,0,1,[[1040,1,1,0,1]]],[65,2,2,1,3,[[1175,1,1,1,2],[1185,1,1,2,3]]]],[27761,30856,31036]]],["soldiers",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27744]]],["war",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25946]]]]},{"k":"G4754","v":[["*",[7,7,[[41,1,1,0,1,[[975,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[46,1,1,2,3,[[1087,1,1,2,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]],[54,1,1,4,5,[[1126,1,1,4,5]]],[58,1,1,5,6,[[1149,1,1,5,6]]],[59,1,1,6,7,[[1152,1,1,6,7]]]],[25039,28547,28974,29714,29831,30338,30410]]],["soldiers",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25039]]],["war",[4,4,[[46,1,1,0,1,[[1087,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]],[58,1,1,2,3,[[1149,1,1,2,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[28974,29714,30338,30410]]],["warfare",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28547]]],["warreth",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29831]]]]},{"k":"G4755","v":[["*",[10,10,[[41,2,2,0,2,[[994,2,2,0,2]]],[43,8,8,2,10,[[1021,1,1,2,3],[1022,2,2,3,5],[1033,5,5,5,10]]]],[25868,25916,27023,27083,27085,27503,27505,27518,27519,27521]]],["captain",[3,3,[[43,3,3,0,3,[[1021,1,1,0,1],[1022,2,2,1,3]]]],[27023,27083,27085]]],["captains",[2,2,[[41,2,2,0,2,[[994,2,2,0,2]]]],[25868,25916]]],["magistrates",[5,5,[[43,5,5,0,5,[[1033,5,5,0,5]]]],[27503,27505,27518,27519,27521]]]]},{"k":"G4756","v":[["host",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[24986,27158]]]]},{"k":"G4757","v":[["*",[26,24,[[39,3,3,0,3,[[936,1,1,0,1],[955,1,1,1,2],[956,1,1,2,3]]],[40,1,1,3,4,[[971,1,1,3,4]]],[41,2,2,4,6,[[979,1,1,4,5],[995,1,1,5,6]]],[42,6,5,6,11,[[1015,6,5,6,11]]],[43,13,12,11,23,[[1027,1,1,11,12],[1029,3,3,12,15],[1038,3,2,15,17],[1040,2,2,17,19],[1044,3,3,19,22],[1045,1,1,22,23]]],[54,1,1,23,24,[[1126,1,1,23,24]]]],[23354,24156,24207,24842,25203,25971,26827,26848,26849,26857,26859,27266,27341,27343,27355,27696,27699,27757,27765,27886,27887,27897,27915,29830]]],["soldier",[4,4,[[42,1,1,0,1,[[1015,1,1,0,1]]],[43,2,2,1,3,[[1027,1,1,1,2],[1045,1,1,2,3]]],[54,1,1,3,4,[[1126,1,1,3,4]]]],[26848,27266,27915,29830]]],["soldiers",[21,20,[[39,3,3,0,3,[[936,1,1,0,1],[955,1,1,1,2],[956,1,1,2,3]]],[40,1,1,3,4,[[971,1,1,3,4]]],[41,2,2,4,6,[[979,1,1,4,5],[995,1,1,5,6]]],[42,5,5,6,11,[[1015,5,5,6,11]]],[43,10,9,11,20,[[1029,3,3,11,14],[1038,3,2,14,16],[1040,2,2,16,18],[1044,2,2,18,20]]]],[23354,24156,24207,24842,25203,25971,26827,26848,26849,26857,26859,27341,27343,27355,27696,27699,27757,27765,27886,27887]]],["soldiers'",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27897]]]]},{"k":"G4758","v":[["soldier",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29831]]]]},{"k":"G4759","v":[["guard",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27915]]]]},{"k":"G4760","v":[["armies",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25846]]]]},{"k":"G4761","v":[["wrest",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30538]]]]},{"k":"G4762","v":[["*",[18,18,[[39,4,4,0,4,[[933,1,1,0,1],[935,1,1,1,2],[944,1,1,2,3],[946,1,1,3,4]]],[41,7,7,4,11,[[979,2,2,4,6],[981,1,1,6,7],[982,1,1,7,8],[986,1,1,8,9],[994,1,1,9,10],[995,1,1,10,11]]],[42,3,3,11,14,[[997,1,1,11,12],[1016,2,2,12,14]]],[43,3,3,14,17,[[1024,2,2,14,16],[1030,1,1,16,17]]],[65,1,1,17,18,[[1177,1,1,17,18]]]],[23273,23322,23695,23730,25204,25239,25356,25386,25578,25925,25963,26082,26881,26883,27155,27158,27408,30878]]],["about",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25204]]],["again",[2,2,[[39,1,1,0,1,[[935,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[23322,27155]]],["converted",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23730]]],["turn",[3,3,[[39,1,1,0,1,[[933,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]],[65,1,1,2,3,[[1177,1,1,2,3]]]],[23273,27408,30878]]],["turned",[10,10,[[39,1,1,0,1,[[944,1,1,0,1]]],[41,5,5,1,6,[[979,1,1,1,2],[981,1,1,2,3],[982,1,1,3,4],[986,1,1,4,5],[994,1,1,5,6]]],[42,3,3,6,9,[[997,1,1,6,7],[1016,2,2,7,9]]],[43,1,1,9,10,[[1024,1,1,9,10]]]],[23695,25239,25356,25386,25578,25925,26082,26881,26883,27158]]],["turning",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25963]]]]},{"k":"G4763","v":[["deliciously",[2,2,[[65,2,2,0,2,[[1184,2,2,0,2]]]],[31000,31002]]]]},{"k":"G4764","v":[["delicacies",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30996]]]]},{"k":"G4765","v":[["sparrows",[4,4,[[39,2,2,0,2,[[938,2,2,0,2]]],[41,2,2,2,4,[[984,2,2,2,4]]]],[23446,23448,25465,25466]]]]},{"k":"G4766","v":[["*",[7,5,[[39,2,1,0,1,[[949,2,1,0,1]]],[40,3,2,1,3,[[967,2,1,1,2],[970,1,1,2,3]]],[41,1,1,3,4,[[994,1,1,3,4]]],[43,1,1,4,5,[[1026,1,1,4,5]]]],[23834,24648,24769,25876,27250]]],["+",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27250]]],["furnished",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24769,25876]]],["spread",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]]],[23834,24648]]],["strawed",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]]],[23834,24648]]]]},{"k":"G4767","v":[["hateful",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29926]]]]},{"k":"G4768","v":[["*",[2,2,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]]],[23675,24610]]],["lowring",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23675]]],["sad",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24610]]]]},{"k":"G4769","v":[["*",[4,4,[[47,1,1,0,1,[[1092,1,1,0,1]]],[53,1,1,1,2,[[1121,1,1,1,2]]],[65,2,2,2,4,[[1169,1,1,2,3],[1176,1,1,3,4]]]],[29090,29746,30758,30862]]],["pillar",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[65,1,1,1,2,[[1169,1,1,1,2]]]],[29746,30758]]],["pillars",[2,2,[[47,1,1,0,1,[[1092,1,1,0,1]]],[65,1,1,1,2,[[1176,1,1,1,2]]]],[29090,30862]]]]},{"k":"G4770","v":[["Stoicks",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27541]]]]},{"k":"G4771","v":[["*",[178,163,[[39,18,17,0,17,[[930,1,1,0,1],[931,1,1,1,2],[934,2,2,2,4],[939,2,2,4,6],[942,1,1,6,7],[944,2,2,7,9],[954,6,6,9,15],[955,3,2,15,17]]],[40,9,8,17,25,[[957,1,1,17,18],[959,1,1,18,19],[964,1,1,19,20],[970,4,4,20,24],[971,2,1,24,25]]],[41,28,26,25,51,[[973,3,3,25,28],[975,1,1,28,29],[976,2,2,29,31],[979,2,2,31,33],[981,1,1,33,34],[982,2,2,34,36],[987,1,1,36,37],[988,3,2,37,39],[989,1,1,39,40],[991,2,2,40,42],[994,4,4,42,46],[995,5,4,46,50],[996,1,1,50,51]]],[42,62,53,51,104,[[997,8,5,51,56],[998,2,2,56,58],[999,3,3,58,61],[1000,4,4,61,65],[1002,2,2,65,67],[1003,1,1,67,68],[1004,8,7,68,75],[1005,5,4,75,79],[1006,2,2,79,81],[1007,2,2,81,83],[1008,1,1,83,84],[1009,2,2,84,86],[1010,1,1,86,87],[1013,7,5,87,92],[1014,6,5,92,97],[1015,1,1,97,98],[1016,1,1,98,99],[1017,6,5,99,104]]],[43,17,17,104,121,[[1018,1,1,104,105],[1021,1,1,105,106],[1024,1,1,106,107],[1026,1,1,107,108],[1027,2,2,108,110],[1028,2,2,110,112],[1030,1,1,112,113],[1033,1,1,113,114],[1038,1,1,114,115],[1039,2,2,115,117],[1040,2,2,117,119],[1042,1,1,119,120],[1043,1,1,120,121]]],[44,12,11,121,132,[[1047,2,2,121,123],[1054,1,1,123,124],[1056,5,5,124,129],[1059,4,3,129,132]]],[45,2,2,132,134,[[1075,1,1,132,133],[1076,1,1,133,134]]],[47,2,2,134,136,[[1092,1,1,134,135],[1096,1,1,135,136]]],[53,1,1,136,137,[[1124,1,1,136,137]]],[54,7,7,137,144,[[1125,1,1,137,138],[1126,2,2,138,140],[1127,2,2,140,142],[1128,2,2,142,144]]],[55,1,1,144,145,[[1130,1,1,144,145]]],[56,1,1,145,146,[[1132,1,1,145,146]]],[57,8,8,146,154,[[1133,4,4,146,150],[1137,2,2,150,152],[1139,2,2,152,154]]],[58,5,4,154,158,[[1147,4,3,154,157],[1149,1,1,157,158]]],[63,1,1,158,159,[[1165,1,1,158,159]]],[65,4,4,159,163,[[1168,1,1,159,160],[1169,1,1,160,161],[1170,1,1,161,162],[1173,1,1,162,163]]]],[23175,23206,23288,23299,23462,23482,23625,23688,23690,24079,24093,24117,24118,24123,24127,24133,24140,24226,24299,24529,24790,24815,24821,24822,24828,24921,24935,24969,25047,25070,25104,25214,25215,25361,25378,25400,25619,25627,25645,25659,25750,25773,25896,25922,25931,25934,25938,25972,25974,25975,26009,26063,26065,26069,26086,26093,26105,26115,26122,26130,26146,26165,26166,26168,26175,26287,26326,26380,26386,26394,26406,26414,26429,26433,26434,26457,26468,26474,26475,26505,26514,26550,26565,26614,26636,26637,26677,26764,26767,26780,26782,26784,26802,26810,26818,26819,26822,26834,26882,26910,26913,26914,26915,26920,26947,27046,27144,27221,27274,27292,27316,27321,27395,27514,27702,27712,27731,27737,27755,27806,27838,27965,27979,28175,28226,28227,28229,28231,28233,28284,28290,28302,28695,28754,29095,29189,29799,29827,29828,29830,29863,29867,29875,29885,29909,29950,29968,29973,29974,29975,30035,30036,30081,30085,30296,30311,30312,30349,30661,30732,30763,30779,30824]]],["+",[5,5,[[41,1,1,0,1,[[996,1,1,0,1]]],[42,1,1,1,2,[[1000,1,1,1,2]]],[43,2,2,2,4,[[1027,1,1,2,3],[1028,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]]],[26009,26168,27274,27316,29885]]],["Thou",[30,30,[[39,5,5,0,5,[[944,1,1,0,1],[954,3,3,1,4],[955,1,1,4,5]]],[40,4,4,5,9,[[957,1,1,5,6],[959,1,1,6,7],[964,1,1,7,8],[971,1,1,8,9]]],[41,4,4,9,13,[[975,1,1,9,10],[976,1,1,10,11],[994,1,1,11,12],[995,1,1,12,13]]],[42,5,5,13,18,[[997,1,1,13,14],[1004,1,1,14,15],[1005,2,2,15,17],[1014,1,1,17,18]]],[43,2,2,18,20,[[1018,1,1,18,19],[1030,1,1,19,20]]],[54,2,2,20,22,[[1126,2,2,20,22]]],[57,6,6,22,28,[[1133,2,2,22,24],[1137,2,2,24,26],[1139,2,2,26,28]]],[58,2,2,28,30,[[1147,2,2,28,30]]]],[23688,24079,24118,24123,24140,24226,24299,24529,24828,25047,25104,25922,25938,26086,26394,26468,26474,26822,26947,27395,29828,29830,29968,29973,30035,30036,30081,30085,30311,30312]]],["thou",[143,134,[[39,13,13,0,13,[[930,1,1,0,1],[931,1,1,1,2],[934,2,2,2,4],[939,2,2,4,6],[942,1,1,6,7],[944,1,1,7,8],[954,3,3,8,11],[955,2,2,11,13]]],[40,5,5,13,18,[[970,4,4,13,17],[971,1,1,17,18]]],[41,23,22,18,40,[[973,3,3,18,21],[976,1,1,21,22],[979,2,2,22,24],[981,1,1,24,25],[982,2,2,25,27],[987,1,1,27,28],[988,3,2,28,30],[989,1,1,30,31],[991,2,2,31,33],[994,3,3,33,36],[995,4,4,36,40]]],[42,56,50,40,90,[[997,7,5,40,45],[998,2,2,45,47],[999,3,3,47,50],[1000,3,3,50,53],[1002,2,2,53,55],[1003,1,1,55,56],[1004,7,6,56,62],[1005,3,3,62,65],[1006,2,2,65,67],[1007,2,2,67,69],[1008,1,1,69,70],[1009,2,2,70,72],[1010,1,1,72,73],[1013,7,5,73,78],[1014,5,5,78,83],[1015,1,1,83,84],[1016,1,1,84,85],[1017,6,5,85,90]]],[43,13,13,90,103,[[1021,1,1,90,91],[1024,1,1,91,92],[1026,1,1,92,93],[1027,1,1,93,94],[1028,1,1,94,95],[1033,1,1,95,96],[1038,1,1,96,97],[1039,2,2,97,99],[1040,2,2,99,101],[1042,1,1,101,102],[1043,1,1,102,103]]],[44,12,11,103,114,[[1047,2,2,103,105],[1054,1,1,105,106],[1056,5,5,106,111],[1059,4,3,111,114]]],[45,2,2,114,116,[[1075,1,1,114,115],[1076,1,1,115,116]]],[47,2,2,116,118,[[1092,1,1,116,117],[1096,1,1,117,118]]],[53,1,1,118,119,[[1124,1,1,118,119]]],[54,4,4,119,123,[[1125,1,1,119,120],[1127,2,2,120,122],[1128,1,1,122,123]]],[55,1,1,123,124,[[1130,1,1,123,124]]],[56,1,1,124,125,[[1132,1,1,124,125]]],[57,2,2,125,127,[[1133,2,2,125,127]]],[58,3,2,127,129,[[1147,2,1,127,128],[1149,1,1,128,129]]],[63,1,1,129,130,[[1165,1,1,129,130]]],[65,4,4,130,134,[[1168,1,1,130,131],[1169,1,1,131,132],[1170,1,1,132,133],[1173,1,1,133,134]]]],[23175,23206,23288,23299,23462,23482,23625,23690,24093,24117,24127,24133,24140,24790,24815,24821,24822,24828,24921,24935,24969,25070,25214,25215,25361,25378,25400,25619,25627,25645,25659,25750,25773,25896,25931,25934,25938,25972,25974,25975,26063,26065,26069,26086,26093,26105,26115,26122,26130,26146,26165,26166,26175,26287,26326,26380,26386,26406,26414,26429,26433,26434,26457,26474,26475,26505,26514,26550,26565,26614,26636,26637,26677,26764,26767,26780,26782,26784,26802,26810,26818,26819,26822,26834,26882,26910,26913,26914,26915,26920,27046,27144,27221,27292,27321,27514,27702,27712,27731,27737,27755,27806,27838,27965,27979,28175,28226,28227,28229,28231,28233,28284,28290,28302,28695,28754,29095,29189,29799,29827,29863,29867,29875,29909,29950,29974,29975,30296,30349,30661,30732,30763,30779,30824]]]]},{"k":"G4772","v":[["kindred",[3,3,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,2,2,1,3,[[1024,2,2,1,3]]]],[24954,27119,27130]]]]},{"k":"G4773","v":[["*",[12,12,[[40,1,1,0,1,[[962,1,1,0,1]]],[41,5,5,1,6,[[973,2,2,1,3],[974,1,1,3,4],[986,1,1,4,5],[993,1,1,5,6]]],[42,1,1,6,7,[[1014,1,1,6,7]]],[43,1,1,7,8,[[1027,1,1,7,8]]],[44,4,4,8,12,[[1054,1,1,8,9],[1061,3,3,9,12]]]],[24411,24929,24951,25017,25565,25842,26811,27283,28158,28343,28347,28357]]],["cousin",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24929]]],["cousins",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24951]]],["kin",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24411]]],["kinsfolk",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25017]]],["kinsfolks",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25842]]],["kinsman",[2,2,[[42,1,1,0,1,[[1014,1,1,0,1]]],[44,1,1,1,2,[[1061,1,1,1,2]]]],[26811,28347]]],["kinsmen",[5,5,[[41,1,1,0,1,[[986,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]],[44,3,3,2,5,[[1054,1,1,2,3],[1061,2,2,3,5]]]],[25565,27283,28158,28343,28357]]]]},{"k":"G4774","v":[["permission",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28493]]]]},{"k":"G4775","v":[["*",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,1,1,1,2,[[1043,1,1,1,2]]]],[24808,27853]]],["+",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24808]]],["with",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27853]]]]},{"k":"G4776","v":[["together",[2,2,[[41,1,1,0,1,[[994,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]]],[25919,29235]]]]},{"k":"G4777","v":[["afflictions",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29817]]]]},{"k":"G4778","v":[["with",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30197]]]]},{"k":"G4779","v":[["*",[8,8,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,4,4,1,5,[[981,1,1,1,2],[987,2,2,2,4],[995,1,1,4,5]]],[43,3,3,5,8,[[1022,1,1,5,6],[1027,1,1,6,7],[1045,1,1,7,8]]]],[24842,25302,25594,25597,25948,27080,27283,27916]]],["+",[4,4,[[41,2,2,0,2,[[981,1,1,0,1],[987,1,1,1,2]]],[43,2,2,2,4,[[1022,1,1,2,3],[1045,1,1,3,4]]]],[25302,25597,27080,27916]]],["together",[4,4,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,2,2,1,3,[[987,1,1,1,2],[995,1,1,2,3]]],[43,1,1,3,4,[[1027,1,1,3,4]]]],[24842,25594,25948,27283]]]]},{"k":"G4780","v":[["covered",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25461]]]]},{"k":"G4781","v":[["down",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28219]]]]},{"k":"G4782","v":[["with",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27801]]]]},{"k":"G4783","v":[["agreement",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28914]]]]},{"k":"G4784","v":[["consented",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25986]]]]},{"k":"G4785","v":[["numbered",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26949]]]]},{"k":"G4786","v":[["*",[2,2,[[45,1,1,0,1,[[1073,1,1,0,1]]],[57,1,1,1,2,[[1136,1,1,1,2]]]],[28658,30016]]],["+",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28658]]],["with",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30016]]]]},{"k":"G4787","v":[["up",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27113]]]]},{"k":"G4788","v":[["*",[4,4,[[41,1,1,0,1,[[977,1,1,0,1]]],[44,1,1,1,2,[[1056,1,1,1,2]]],[47,2,2,2,4,[[1093,2,2,2,4]]]],[25113,28241,29124,29125]]],["concluded",[2,2,[[44,1,1,0,1,[[1056,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]]],[28241,29124]]],["inclosed",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25113]]],["up",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29125]]]]},{"k":"G4789","v":[["*",[4,4,[[44,1,1,0,1,[[1053,1,1,0,1]]],[48,1,1,1,2,[[1099,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]],[59,1,1,3,4,[[1153,1,1,3,4]]]],[28133,29257,30181,30431]]],["fellowheirs",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29257]]],["him",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30181]]],["jointheirs",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28133]]],["together",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30431]]]]},{"k":"G4790","v":[["*",[3,3,[[48,1,1,0,1,[[1101,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[29315,29456,30997]]],["+",[2,2,[[48,1,1,0,1,[[1101,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[29315,30997]]],["with",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29456]]]]},{"k":"G4791","v":[["*",[4,4,[[44,1,1,0,1,[[1056,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[65,1,1,3,4,[[1167,1,1,3,4]]]],[28226,28563,29368,30706]]],["+",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28563]]],["companion",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30706]]],["partakers",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29368]]],["partakest",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28226]]]]},{"k":"G4792","v":[["carried",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27178]]]]},{"k":"G4793","v":[["*",[3,2,[[45,1,1,0,1,[[1063,1,1,0,1]]],[46,2,1,1,2,[[1087,2,1,1,2]]]],[28407,28983]]],["compare",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28983]]],["comparing",[2,2,[[45,1,1,0,1,[[1063,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]]],[28407,28983]]]]},{"k":"G4794","v":[["together",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25529]]]]},{"k":"G4795","v":[["chance",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25394]]]]},{"k":"G4796","v":[["*",[7,7,[[41,3,3,0,3,[[973,1,1,0,1],[987,2,2,1,3]]],[45,2,2,3,5,[[1073,1,1,3,4],[1074,1,1,4,5]]],[49,2,2,5,7,[[1104,2,2,5,7]]]],[24951,25594,25597,28660,28671,29408,29409]]],["rejoiceth",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28671]]],["with",[6,6,[[41,3,3,0,3,[[973,1,1,0,1],[987,2,2,1,3]]],[45,1,1,3,4,[[1073,1,1,3,4]]],[49,2,2,4,6,[[1104,2,2,4,6]]]],[24951,25594,25597,28660,29408,29409]]]]},{"k":"G4797","v":[["*",[5,5,[[43,5,5,0,5,[[1019,1,1,0,1],[1026,1,1,1,2],[1036,1,1,2,3],[1038,2,2,3,5]]]],[26955,27238,27617,27691,27695]]],["confounded",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1026,1,1,1,2]]]],[26955,27238]]],["confused",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27617]]],["up",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27691]]],["uproar",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27695]]]]},{"k":"G4798","v":[["+",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26165]]]]},{"k":"G4799","v":[["confusion",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27614]]]]},{"k":"G4800","v":[["with",[3,3,[[44,1,1,0,1,[[1051,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]]],[28076,28919,29838]]]]},{"k":"G4801","v":[["together",[2,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]]],[23768,24597]]]]},{"k":"G4802","v":[["*",[10,10,[[40,6,6,0,6,[[957,1,1,0,1],[964,1,1,1,2],[965,3,3,2,5],[968,1,1,5,6]]],[41,2,2,6,8,[[994,1,1,6,7],[996,1,1,7,8]]],[43,2,2,8,10,[[1023,1,1,8,9],[1026,1,1,9,10]]]],[24242,24511,24548,24552,24554,24701,25887,26006,27110,27245]]],["+",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[26006,27245]]],["another",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24548]]],["enquire",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25887]]],["question",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24554]]],["questioned",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24242]]],["questioning",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24552]]],["together",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24701]]],["with",[2,2,[[40,1,1,0,1,[[964,1,1,0,1]]],[43,1,1,1,2,[[1023,1,1,1,2]]]],[24511,27110]]]]},{"k":"G4803","v":[["*",[3,3,[[43,3,3,0,3,[[1032,2,2,0,2],[1045,1,1,2,3]]]],[27444,27449,27928]]],["disputation",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27444]]],["disputing",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27449]]],["reasoning",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27928]]]]},{"k":"G4804","v":[["disputer",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28383]]]]},{"k":"G4805","v":[["yokefellow",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29445]]]]},{"k":"G4806","v":[["together",[2,2,[[48,1,1,0,1,[[1098,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[29234,29507]]]]},{"k":"G4807","v":[["tree",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25657]]]]},{"k":"G4808","v":[["tree",[16,15,[[39,5,4,0,4,[[949,4,3,0,3],[952,1,1,3,4]]],[40,4,4,4,8,[[967,3,3,4,7],[969,1,1,7,8]]],[41,3,3,8,11,[[985,2,2,8,10],[993,1,1,10,11]]],[42,2,2,11,13,[[997,2,2,11,13]]],[58,1,1,13,14,[[1148,1,1,13,14]]],[65,1,1,14,15,[[1172,1,1,14,15]]]],[23845,23846,23847,23989,24653,24660,24661,24745,25524,25525,25855,26092,26094,30331,30806]]]]},{"k":"G4809","v":[["tree",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25735]]]]},{"k":"G4810","v":[["figs",[4,4,[[39,1,1,0,1,[[935,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]]],[23332,24653,25190,30331]]]]},{"k":"G4811","v":[["*",[2,2,[[41,2,2,0,2,[[975,1,1,0,1],[991,1,1,1,2]]]],[25039,25739]]],["+",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25739]]],["falsely",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25039]]]]},{"k":"G4812","v":[["spoil",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29502]]]]},{"k":"G4813","v":[["robbed",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28997]]]]},{"k":"G4814","v":[["*",[6,6,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,3,3,2,5,[[976,1,1,2,3],[981,1,1,3,4],[994,1,1,4,5]]],[43,1,1,5,6,[[1042,1,1,5,6]]]],[23703,24542,25099,25331,25868,27808]]],["conferred",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27808]]],["spake",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25099]]],["talking",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23703]]],["with",[3,3,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[994,1,1,2,3]]]],[24542,25331,25868]]]]},{"k":"G4815","v":[["*",[16,16,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,7,7,2,9,[[973,3,3,2,5],[974,1,1,5,6],[977,2,2,6,8],[994,1,1,8,9]]],[42,1,1,9,10,[[1014,1,1,9,10]]],[43,4,4,10,14,[[1018,1,1,10,11],[1029,1,1,11,12],[1040,1,1,12,13],[1043,1,1,13,14]]],[49,1,1,14,15,[[1106,1,1,14,15]]],[58,1,1,15,16,[[1146,1,1,15,16]]]],[24109,24802,24917,24924,24929,24994,25114,25116,25918,26797,26939,27340,27761,27844,29445,30281]]],["caught",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27844]]],["conceive",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24924]]],["conceived",[4,4,[[41,3,3,0,3,[[973,2,2,0,2],[974,1,1,2,3]]],[58,1,1,3,4,[[1146,1,1,3,4]]]],[24917,24929,24994,30281]]],["help",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]]],[25114,29445]]],["take",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[43,1,1,2,3,[[1029,1,1,2,3]]]],[24109,24802,27340]]],["taken",[2,2,[[41,1,1,0,1,[[977,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[25116,27761]]],["took",[3,3,[[41,1,1,0,1,[[994,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[43,1,1,2,3,[[1018,1,1,2,3]]]],[25918,26797,26939]]]]},{"k":"G4816","v":[["*",[8,8,[[39,7,7,0,7,[[935,1,1,0,1],[941,6,6,1,7]]],[41,1,1,7,8,[[978,1,1,7,8]]]],[23332,23567,23568,23569,23579,23580,23587,25190]]],["+",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23567]]],["gather",[3,3,[[39,2,2,0,2,[[935,1,1,0,1],[941,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]]],[23332,23580,25190]]],["gathered",[2,2,[[39,2,2,0,2,[[941,2,2,0,2]]]],[23579,23587]]],["together",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23569]]],["up",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23568]]]]},{"k":"G4817","v":[["reasoned",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25784]]]]},{"k":"G4818","v":[["grieved",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24293]]]]},{"k":"G4819","v":[["*",[8,8,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[43,3,3,2,5,[[1020,1,1,2,3],[1037,1,1,3,4],[1038,1,1,4,5]]],[45,1,1,5,6,[[1071,1,1,5,6]]],[59,1,1,6,7,[[1154,1,1,6,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]]],[24620,26005,27006,27645,27699,28578,30458,30522]]],["befell",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27645]]],["happen",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24620]]],["happened",[5,5,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1020,1,1,1,2]]],[45,1,1,2,3,[[1071,1,1,2,3]]],[59,1,1,3,4,[[1154,1,1,3,4]]],[60,1,1,4,5,[[1157,1,1,4,5]]]],[26005,27006,28578,30458,30522]]],["was",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27699]]]]},{"k":"G4820","v":[["*",[6,6,[[41,2,2,0,2,[[974,1,1,0,1],[986,1,1,1,2]]],[43,4,4,2,6,[[1021,1,1,2,3],[1034,1,1,3,4],[1035,1,1,4,5],[1037,1,1,5,6]]]],[24992,25584,27037,27541,27584,27640]]],["+",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25584]]],["conferred",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27037]]],["encountered",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27541]]],["helped",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27584]]],["met",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27640]]],["pondered",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24992]]]]},{"k":"G4821","v":[["with",[2,2,[[45,1,1,0,1,[[1065,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[28441,29839]]]]},{"k":"G4822","v":[["*",[6,6,[[43,2,2,0,2,[[1026,1,1,0,1],[1033,1,1,1,2]]],[45,1,1,2,3,[[1063,1,1,2,3]]],[48,1,1,3,4,[[1100,1,1,3,4]]],[50,2,2,4,6,[[1108,2,2,4,6]]]],[27238,27493,28410,29288,29496,29513]]],["compacted",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29288]]],["gathering",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27493]]],["instruct",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28410]]],["proving",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27238]]],["together",[2,2,[[50,2,2,0,2,[[1108,2,2,0,2]]]],[29496,29513]]]]},{"k":"G4823","v":[["*",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[42,2,2,1,3,[[1007,1,1,1,2],[1014,1,1,2,3]]],[43,1,1,3,4,[[1026,1,1,3,4]]],[65,1,1,4,5,[[1169,1,1,4,5]]]],[24058,26576,26799,27239,30764]]],["consulted",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24058]]],["counsel",[3,3,[[42,1,1,0,1,[[1014,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]],[65,1,1,2,3,[[1169,1,1,2,3]]]],[26799,27239,30764]]],["together",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26576]]]]},{"k":"G4824","v":[["*",[8,8,[[39,5,5,0,5,[[940,1,1,0,1],[950,1,1,1,2],[955,2,2,2,4],[956,1,1,4,5]]],[40,2,2,5,7,[[959,1,1,5,6],[971,1,1,6,7]]],[43,1,1,7,8,[[1042,1,1,7,8]]]],[23503,23887,24130,24136,24207,24294,24827,27808]]],["+",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24294]]],["consultation",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24827]]],["council",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]]],[23503,27808]]],["counsel",[4,4,[[39,4,4,0,4,[[950,1,1,0,1],[955,2,2,1,3],[956,1,1,3,4]]]],[23887,24130,24136,24207]]]]},{"k":"G4825","v":[["counsellor",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28243]]]]},{"k":"G4826","v":[["*",[7,7,[[41,3,3,0,3,[[974,2,2,0,2],[975,1,1,2,3]]],[43,2,2,3,5,[[1030,1,1,3,4],[1032,1,1,4,5]]],[60,1,1,5,6,[[1156,1,1,5,6]]],[65,1,1,6,7,[[1173,1,1,6,7]]]],[24998,25007,25055,27363,27456,30480,30817]]],["Simeon",[6,6,[[41,3,3,0,3,[[974,2,2,0,2],[975,1,1,2,3]]],[43,2,2,3,5,[[1030,1,1,3,4],[1032,1,1,4,5]]],[65,1,1,5,6,[[1173,1,1,5,6]]]],[24998,25007,25055,27363,27456,30817]]],["Simon",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30480]]]]},{"k":"G4827","v":[["fellowdisciples",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26539]]]]},{"k":"G4828","v":[["*",[4,4,[[44,3,3,0,3,[[1047,1,1,0,1],[1053,1,1,1,2],[1054,1,1,2,3]]],[65,1,1,3,4,[[1188,1,1,3,4]]]],[27977,28132,28156,31098]]],["+",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28156]]],["testify",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31098]]],["with",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28132]]],["witness",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27977]]]]},{"k":"G4829","v":[["with",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28553]]]]},{"k":"G4830","v":[["partakers",[2,2,[[48,2,2,0,2,[[1099,1,1,0,1],[1101,1,1,1,2]]]],[29257,29311]]]]},{"k":"G4831","v":[["together",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29438]]]]},{"k":"G4832","v":[["*",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[28145,29442]]],["to",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28145]]],["unto",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29442]]]]},{"k":"G4833","v":[["conformable",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29431]]]]},{"k":"G4834","v":[["*",[2,2,[[57,2,2,0,2,[[1136,1,1,0,1],[1142,1,1,1,2]]]],[30029,30167]]],["+",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30167]]],["of",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30029]]]]},{"k":"G4835","v":[["another",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30432]]]]},{"k":"G4836","v":[["*",[2,2,[[41,1,1,0,1,[[995,1,1,0,1]]],[54,1,1,1,2,[[1128,1,1,1,2]]]],[25983,29886]]],["together",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25983]]],["with",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29886]]]]},{"k":"G4837","v":[["together",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27942]]]]},{"k":"G4838","v":[["*",[4,4,[[43,3,3,0,3,[[1029,1,1,0,1],[1032,2,2,1,3]]],[47,1,1,3,4,[[1092,1,1,3,4]]]],[27362,27479,27480,29082]]],["+",[2,2,[[43,1,1,0,1,[[1032,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]]],[27480,29082]]],["with",[2,2,[[43,2,2,0,2,[[1029,1,1,0,1],[1032,1,1,1,2]]]],[27362,27479]]]]},{"k":"G4839","v":[["with",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29386]]]]},{"k":"G4840","v":[["present",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27820]]]]},{"k":"G4841","v":[["with",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]]],[28133,28660]]]]},{"k":"G4842","v":[["*",[2,2,[[46,2,2,0,2,[[1085,2,2,0,2]]]],[28950,28954]]],["sent",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28950]]],["with",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28954]]]]},{"k":"G4843","v":[["embracing",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27636]]]]},{"k":"G4844","v":[["with",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27300]]]]},{"k":"G4845","v":[["*",[3,3,[[41,2,2,0,2,[[980,1,1,0,1],[981,1,1,1,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]]],[25268,25352,26950]]],["come",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[25352,26950]]],["filled",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25268]]]]},{"k":"G4846","v":[["*",[5,5,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,2,2,1,3,[[960,2,2,1,3]]],[41,2,2,3,5,[[980,2,2,3,5]]]],[23561,24330,24342,25259,25287]]],["choke",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]]],[23561,24342]]],["choked",[2,2,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24330,25259]]],["thronged",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25287]]]]},{"k":"G4847","v":[["fellowcitizens",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29248]]]]},{"k":"G4848","v":[["*",[4,4,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,3,3,1,4,[[979,1,1,1,2],[986,1,1,2,3],[996,1,1,3,4]]]],[24589,25206,25578,26006]]],["+",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25578]]],["resort",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24589]]],["with",[2,2,[[41,2,2,0,2,[[979,1,1,0,1],[996,1,1,1,2]]]],[25206,26006]]]]},{"k":"G4849","v":[["+",[2,1,[[40,2,1,0,1,[[962,2,1,0,1]]]],[24446]]]]},{"k":"G4850","v":[["elder",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30466]]]]},{"k":"G4851","v":[["*",[17,17,[[39,4,4,0,4,[[933,2,2,0,2],[946,1,1,2,3],[947,1,1,3,4]]],[42,3,3,4,7,[[1007,1,1,4,5],[1012,1,1,5,6],[1014,1,1,6,7]]],[43,2,2,7,9,[[1036,1,1,7,8],[1037,1,1,8,9]]],[45,5,5,9,14,[[1067,1,1,9,10],[1068,1,1,10,11],[1071,2,2,11,13],[1073,1,1,13,14]]],[46,2,2,14,16,[[1085,1,1,14,15],[1089,1,1,15,16]]],[57,1,1,16,17,[[1144,1,1,16,17]]]],[23263,23264,23733,23772,26573,26733,26799,27604,27646,28479,28522,28590,28600,28641,28942,29023,30222]]],["+",[5,5,[[39,1,1,0,1,[[947,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]],[45,2,2,2,4,[[1067,1,1,2,3],[1071,1,1,3,4]]],[46,1,1,4,5,[[1089,1,1,4,5]]]],[23772,27604,28479,28590,29023]]],["better",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23733]]],["expedient",[4,4,[[42,3,3,0,3,[[1007,1,1,0,1],[1012,1,1,1,2],[1014,1,1,2,3]]],[46,1,1,3,4,[[1085,1,1,3,4]]]],[26573,26733,26799,28942]]],["profit",[4,4,[[45,3,3,0,3,[[1068,1,1,0,1],[1071,1,1,1,2],[1073,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]]],[28522,28600,28641,30222]]],["profitable",[3,3,[[39,2,2,0,2,[[933,2,2,0,2]]],[43,1,1,2,3,[[1037,1,1,2,3]]]],[23263,23264,27646]]]]},{"k":"G4852","v":[["consent",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28107]]]]},{"k":"G4853","v":[["countrymen",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29584]]]]},{"k":"G4854","v":[["together",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28073]]]]},{"k":"G4855","v":[["with",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25252]]]]},{"k":"G4856","v":[["*",[6,6,[[39,3,3,0,3,[[946,1,1,0,1],[948,2,2,1,3]]],[41,1,1,3,4,[[977,1,1,3,4]]],[43,2,2,4,6,[[1022,1,1,4,5],[1032,1,1,5,6]]]],[23746,23794,23805,25143,27068,27457]]],["agree",[3,3,[[39,2,2,0,2,[[946,1,1,0,1],[948,1,1,1,2]]],[43,1,1,2,3,[[1032,1,1,2,3]]]],[23746,23805,27457]]],["agreed",[1,1,[[39,1,1,0,1,[[948,1,1,0,1]]]],[23794]]],["agreeth",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25143]]],["together",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27068]]]]},{"k":"G4857","v":[["concord",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28913]]]]},{"k":"G4858","v":[["musick",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25613]]]]},{"k":"G4859","v":[["consent",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28492]]]]},{"k":"G4860","v":[["counted",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27604]]]]},{"k":"G4861","v":[["accord",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29393]]]]},{"k":"G4862","v":[["*",[125,121,[[39,3,3,0,3,[[953,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[40,5,5,3,8,[[958,1,1,3,4],[960,1,1,4,5],[964,1,1,5,6],[965,1,1,6,7],[971,1,1,7,8]]],[41,24,24,8,32,[[973,1,1,8,9],[974,2,2,9,11],[977,2,2,11,13],[979,2,2,13,15],[980,2,2,15,17],[981,1,1,17,18],[991,1,1,18,19],[992,1,1,19,20],[994,2,2,20,22],[995,3,3,22,25],[996,7,7,25,32]]],[42,2,2,32,34,[[1014,1,1,32,33],[1017,1,1,33,34]]],[43,51,48,34,82,[[1018,4,3,34,37],[1019,1,1,37,38],[1020,2,2,38,40],[1021,3,3,40,43],[1022,4,4,43,47],[1025,2,2,47,49],[1027,3,3,49,52],[1028,1,1,52,53],[1030,1,1,53,54],[1031,6,5,54,59],[1032,3,2,59,61],[1033,1,1,61,62],[1034,1,1,62,63],[1035,2,2,63,65],[1036,1,1,65,66],[1037,1,1,66,67],[1038,6,6,67,73],[1039,1,1,73,74],[1040,3,3,74,77],[1041,1,1,77,78],[1042,1,1,78,79],[1043,1,1,79,80],[1044,1,1,80,81],[1045,1,1,81,82]]],[44,4,4,82,86,[[1051,1,1,82,83],[1053,1,1,83,84],[1061,2,2,84,86]]],[45,7,7,86,93,[[1062,1,1,86,87],[1066,1,1,87,88],[1071,1,1,88,89],[1072,1,1,89,90],[1076,1,1,90,91],[1077,2,2,91,93]]],[46,6,6,93,99,[[1078,2,2,93,95],[1081,1,1,95,96],[1085,1,1,96,97],[1086,1,1,97,98],[1090,1,1,98,99]]],[47,4,4,99,103,[[1091,1,1,99,100],[1092,1,1,100,101],[1093,1,1,101,102],[1095,1,1,102,103]]],[48,2,2,103,105,[[1099,1,1,103,104],[1100,1,1,104,105]]],[49,4,4,105,109,[[1103,2,2,105,107],[1104,1,1,107,108],[1106,1,1,108,109]]],[50,7,7,109,116,[[1108,3,3,109,112],[1109,3,3,112,115],[1110,1,1,115,116]]],[51,4,3,116,119,[[1114,3,2,116,118],[1115,1,1,118,119]]],[58,1,1,119,120,[[1146,1,1,119,120]]],[60,1,1,120,121,[[1156,1,1,120,121]]]],[24035,24089,24167,24286,24333,24534,24542,24853,24949,24978,24986,25116,25126,25201,25207,25246,25283,25333,25754,25780,25878,25920,25946,25967,25970,25992,26001,26012,26015,26020,26024,26035,26786,26901,26937,26940,26945,26963,27000,27004,27035,27036,27049,27060,27076,27080,27085,27196,27207,27261,27279,27282,27319,27369,27418,27419,27427,27434,27442,27464,27467,27486,27557,27565,27575,27623,27662,27669,27680,27682,27688,27690,27693,27713,27749,27761,27766,27793,27819,27836,27857,27915,28076,28148,28350,28351,28365,28458,28580,28632,28728,28780,28795,28801,28821,28873,28951,28960,29047,29059,29084,29111,29186,29269,29303,29362,29384,29413,29463,29499,29507,29514,29520,29521,29526,29551,29617,29620,29631,30277,30497]]],["+",[2,2,[[43,2,2,0,2,[[1028,1,1,0,1],[1042,1,1,1,2]]]],[27319,27819]]],["With",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29551]]],["beside",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26012]]],["with",[121,117,[[39,3,3,0,3,[[953,1,1,0,1],[954,1,1,1,2],[955,1,1,2,3]]],[40,5,5,3,8,[[958,1,1,3,4],[960,1,1,4,5],[964,1,1,5,6],[965,1,1,6,7],[971,1,1,7,8]]],[41,23,23,8,31,[[973,1,1,8,9],[974,2,2,9,11],[977,2,2,11,13],[979,2,2,13,15],[980,2,2,15,17],[981,1,1,17,18],[991,1,1,18,19],[992,1,1,19,20],[994,2,2,20,22],[995,3,3,22,25],[996,6,6,25,31]]],[42,2,2,31,33,[[1014,1,1,31,32],[1017,1,1,32,33]]],[43,49,46,33,79,[[1018,4,3,33,36],[1019,1,1,36,37],[1020,2,2,37,39],[1021,3,3,39,42],[1022,4,4,42,46],[1025,2,2,46,48],[1027,3,3,48,51],[1030,1,1,51,52],[1031,6,5,52,57],[1032,3,2,57,59],[1033,1,1,59,60],[1034,1,1,60,61],[1035,2,2,61,63],[1036,1,1,63,64],[1037,1,1,64,65],[1038,6,6,65,71],[1039,1,1,71,72],[1040,3,3,72,75],[1041,1,1,75,76],[1043,1,1,76,77],[1044,1,1,77,78],[1045,1,1,78,79]]],[44,4,4,79,83,[[1051,1,1,79,80],[1053,1,1,80,81],[1061,2,2,81,83]]],[45,7,7,83,90,[[1062,1,1,83,84],[1066,1,1,84,85],[1071,1,1,85,86],[1072,1,1,86,87],[1076,1,1,87,88],[1077,2,2,88,90]]],[46,6,6,90,96,[[1078,2,2,90,92],[1081,1,1,92,93],[1085,1,1,93,94],[1086,1,1,94,95],[1090,1,1,95,96]]],[47,4,4,96,100,[[1091,1,1,96,97],[1092,1,1,97,98],[1093,1,1,98,99],[1095,1,1,99,100]]],[48,2,2,100,102,[[1099,1,1,100,101],[1100,1,1,101,102]]],[49,4,4,102,106,[[1103,2,2,102,104],[1104,1,1,104,105],[1106,1,1,105,106]]],[50,6,6,106,112,[[1108,3,3,106,109],[1109,3,3,109,112]]],[51,4,3,112,115,[[1114,3,2,112,114],[1115,1,1,114,115]]],[58,1,1,115,116,[[1146,1,1,115,116]]],[60,1,1,116,117,[[1156,1,1,116,117]]]],[24035,24089,24167,24286,24333,24534,24542,24853,24949,24978,24986,25116,25126,25201,25207,25246,25283,25333,25754,25780,25878,25920,25946,25967,25970,25992,26001,26015,26020,26024,26035,26786,26901,26937,26940,26945,26963,27000,27004,27035,27036,27049,27060,27076,27080,27085,27196,27207,27261,27279,27282,27369,27418,27419,27427,27434,27442,27464,27467,27486,27557,27565,27575,27623,27662,27669,27680,27682,27688,27690,27693,27713,27749,27761,27766,27793,27836,27857,27915,28076,28148,28350,28351,28365,28458,28580,28632,28728,28780,28795,28801,28821,28873,28951,28960,29047,29059,29084,29111,29186,29269,29303,29362,29384,29413,29463,29499,29507,29514,29520,29521,29526,29617,29620,29631,30277,30497]]]]},{"k":"G4863","v":[["*",[62,62,[[39,24,24,0,24,[[930,1,1,0,1],[931,1,1,1,2],[934,1,1,2,3],[940,1,1,3,4],[941,3,3,4,7],[946,1,1,7,8],[950,3,3,8,11],[952,1,1,11,12],[953,6,6,12,18],[954,2,2,18,20],[955,3,3,20,23],[956,1,1,23,24]]],[40,5,5,24,29,[[958,1,1,24,25],[960,1,1,25,26],[961,1,1,26,27],[962,1,1,27,28],[963,1,1,28,29]]],[41,7,7,29,36,[[975,1,1,29,30],[983,1,1,30,31],[984,2,2,31,33],[987,1,1,33,34],[989,1,1,34,35],[994,1,1,35,36]]],[42,8,8,36,44,[[1000,1,1,36,37],[1002,2,2,37,39],[1007,2,2,39,41],[1011,1,1,41,42],[1014,1,1,42,43],[1016,1,1,43,44]]],[43,11,11,44,55,[[1021,4,4,44,48],[1028,1,1,48,49],[1030,1,1,49,50],[1031,1,1,50,51],[1032,2,2,51,53],[1037,2,2,53,55]]],[45,1,1,55,56,[[1066,1,1,55,56]]],[65,6,6,56,62,[[1179,1,1,56,57],[1182,2,2,57,59],[1185,2,2,59,61],[1186,1,1,61,62]]]],[23173,23204,23308,23519,23541,23569,23586,23747,23882,23906,23913,23985,24032,24034,24040,24043,24046,24051,24057,24111,24146,24156,24191,24207,24262,24324,24385,24437,24464,25042,25428,25476,25477,25601,25688,25930,26192,26269,26270,26570,26575,26705,26787,26886,27028,27048,27049,27053,27333,27406,27441,27448,27472,27633,27634,28458,30918,30968,30970,31034,31036,31046]]],["+",[8,8,[[39,2,2,0,2,[[953,2,2,0,2]]],[41,1,1,2,3,[[987,1,1,2,3]]],[43,3,3,3,6,[[1030,1,1,3,4],[1031,1,1,4,5],[1032,1,1,5,6]]],[65,2,2,6,8,[[1182,1,1,6,7],[1186,1,1,7,8]]]],[24043,24051,25601,27406,27441,27472,30970,31046]]],["assembled",[3,3,[[39,2,2,0,2,[[954,1,1,0,1],[956,1,1,1,2]]],[42,1,1,2,3,[[1016,1,1,2,3]]]],[24111,24207,26886]]],["bestow",[2,2,[[41,2,2,0,2,[[984,2,2,0,2]]]],[25476,25477]]],["gather",[7,7,[[39,4,4,0,4,[[931,1,1,0,1],[934,1,1,1,2],[941,1,1,2,3],[953,1,1,3,4]]],[41,1,1,4,5,[[975,1,1,4,5]]],[42,1,1,5,6,[[1011,1,1,5,6]]],[65,1,1,6,7,[[1182,1,1,6,7]]]],[23204,23308,23569,24034,25042,26705,30968]]],["gathered",[9,9,[[39,5,5,0,5,[[930,1,1,0,1],[941,1,1,1,2],[950,1,1,2,3],[953,1,1,3,4],[955,1,1,4,5]]],[40,2,2,5,7,[[960,1,1,5,6],[961,1,1,6,7]]],[42,1,1,7,8,[[1007,1,1,7,8]]],[43,1,1,8,9,[[1021,1,1,8,9]]]],[23173,23586,23906,24040,24156,24324,24385,26570,27048]]],["gathereth",[3,3,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[42,1,1,2,3,[[1000,1,1,2,3]]]],[23519,25428,26192]]],["gathering",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24032]]],["in",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24046]]],["into",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30918]]],["resorted",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26787]]],["themselves",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27333]]],["together",[24,24,[[39,8,8,0,8,[[941,1,1,0,1],[946,1,1,1,2],[950,2,2,2,4],[952,1,1,4,5],[954,1,1,5,6],[955,2,2,6,8]]],[40,3,3,8,11,[[958,1,1,8,9],[962,1,1,9,10],[963,1,1,10,11]]],[41,2,2,11,13,[[989,1,1,11,12],[994,1,1,12,13]]],[42,2,2,13,15,[[1002,1,1,13,14],[1007,1,1,14,15]]],[43,6,6,15,21,[[1021,3,3,15,18],[1032,1,1,18,19],[1037,2,2,19,21]]],[45,1,1,21,22,[[1066,1,1,21,22]]],[65,2,2,22,24,[[1185,2,2,22,24]]]],[23541,23747,23882,23913,23985,24057,24146,24191,24262,24437,24464,25688,25930,26270,26575,27028,27049,27053,27448,27633,27634,28458,31034,31036]]],["up",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26269]]]]},{"k":"G4864","v":[["*",[57,57,[[39,9,9,0,9,[[932,1,1,0,1],[934,2,2,1,3],[937,1,1,3,4],[938,1,1,4,5],[940,1,1,5,6],[941,1,1,6,7],[951,2,2,7,9]]],[40,8,8,9,17,[[957,4,4,9,13],[959,1,1,13,14],[962,1,1,14,15],[968,1,1,15,16],[969,1,1,16,17]]],[41,15,15,17,32,[[976,7,7,17,24],[978,1,1,24,25],[979,1,1,25,26],[980,1,1,26,27],[983,1,1,27,28],[984,1,1,28,29],[985,1,1,29,30],[992,1,1,30,31],[993,1,1,31,32]]],[42,2,2,32,34,[[1002,1,1,32,33],[1014,1,1,33,34]]],[43,20,20,34,54,[[1023,1,1,34,35],[1026,2,2,35,37],[1030,4,4,37,41],[1031,1,1,41,42],[1032,1,1,42,43],[1034,3,3,43,46],[1035,4,4,46,50],[1036,1,1,50,51],[1039,1,1,51,52],[1041,1,1,52,53],[1043,1,1,53,54]]],[58,1,1,54,55,[[1147,1,1,54,55]]],[65,2,2,55,57,[[1168,1,1,55,56],[1169,1,1,56,57]]]],[23232,23284,23287,23414,23434,23498,23593,23924,23952,24236,24238,24244,24254,24289,24409,24712,24726,25078,25079,25083,25091,25096,25101,25107,25152,25200,25286,25448,25470,25528,25825,25838,26316,26805,27110,27218,27236,27367,27376,27404,27405,27415,27463,27524,27533,27540,27561,27564,27576,27583,27593,27723,27781,27834,30295,30726,30755]]],["+",[2,2,[[43,2,2,0,2,[[1035,1,1,0,1],[1039,1,1,1,2]]]],[27583,27723]]],["assembly",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30295]]],["congregation",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27405]]],["synagogue",[31,31,[[39,2,2,0,2,[[940,1,1,0,1],[941,1,1,1,2]]],[40,5,5,2,7,[[957,3,3,2,5],[959,1,1,5,6],[962,1,1,6,7]]],[41,8,8,7,15,[[976,5,5,7,12],[978,1,1,12,13],[979,1,1,13,14],[980,1,1,14,15]]],[42,2,2,15,17,[[1002,1,1,15,16],[1014,1,1,16,17]]],[43,12,12,17,29,[[1023,1,1,17,18],[1030,2,2,18,20],[1031,1,1,20,21],[1034,3,3,21,24],[1035,3,3,24,27],[1036,1,1,27,28],[1043,1,1,28,29]]],[65,2,2,29,31,[[1168,1,1,29,30],[1169,1,1,30,31]]]],[23498,23593,24236,24238,24244,24289,24409,25079,25083,25091,25096,25101,25152,25200,25286,26316,26805,27110,27376,27404,27415,27524,27533,27540,27561,27564,27576,27593,27834,30726,30755]]],["synagogues",[22,22,[[39,7,7,0,7,[[932,1,1,0,1],[934,2,2,1,3],[937,1,1,3,4],[938,1,1,4,5],[951,2,2,5,7]]],[40,3,3,7,10,[[957,1,1,7,8],[968,1,1,8,9],[969,1,1,9,10]]],[41,7,7,10,17,[[976,2,2,10,12],[983,1,1,12,13],[984,1,1,13,14],[985,1,1,14,15],[992,1,1,15,16],[993,1,1,16,17]]],[43,5,5,17,22,[[1026,2,2,17,19],[1030,1,1,19,20],[1032,1,1,20,21],[1041,1,1,21,22]]]],[23232,23284,23287,23414,23434,23924,23952,24254,24712,24726,25078,25107,25448,25470,25528,25825,25838,27218,27236,27367,27463,27781]]]]},{"k":"G4865","v":[["with",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28333]]]]},{"k":"G4866","v":[["*",[2,2,[[49,2,2,0,2,[[1103,1,1,0,1],[1106,1,1,1,2]]]],[29388,29445]]],["together",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29388]]],["with",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29445]]]]},{"k":"G4867","v":[["*",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,2,2,1,3,[[1029,1,1,1,2],[1036,1,1,2,3]]]],[26024,27349,27610]]],["+",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27349]]],["together",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[26024,27610]]]]},{"k":"G4868","v":[["*",[3,3,[[39,3,3,0,3,[[946,2,2,0,2],[953,1,1,2,3]]]],[23750,23751,24027]]],["+",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24027]]],["reckon",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23751]]],["take",[1,1,[[39,1,1,0,1,[[946,1,1,0,1]]]],[23750]]]]},{"k":"G4869","v":[["*",[3,3,[[44,1,1,0,1,[[1061,1,1,0,1]]],[50,1,1,1,2,[[1110,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]]],[28343,29552,29961]]],["fellowprisoner",[2,2,[[50,1,1,0,1,[[1110,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[29552,29961]]],["fellowprisoners",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28343]]]]},{"k":"G4870","v":[["*",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[24401,25984]]],["follow",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24401]]],["followed",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25984]]]]},{"k":"G4871","v":[["with",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26927]]]]},{"k":"G4872","v":[["with",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]]],[24867,27393]]]]},{"k":"G4873","v":[["*",[9,9,[[39,2,2,0,2,[[937,1,1,0,1],[942,1,1,1,2]]],[40,3,3,2,5,[[958,1,1,2,3],[962,2,2,3,5]]],[41,3,3,5,8,[[979,1,1,5,6],[986,2,2,6,8]]],[42,1,1,8,9,[[1008,1,1,8,9]]]],[23389,23606,24275,24429,24433,25244,25563,25568,26582]]],["+",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24275]]],["down",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23389]]],["meat",[1,1,[[39,1,1,0,1,[[942,1,1,0,1]]]],[23606]]],["with",[6,6,[[40,2,2,0,2,[[962,2,2,0,2]]],[41,3,3,2,5,[[979,1,1,2,3],[986,2,2,3,5]]],[42,1,1,5,6,[[1008,1,1,5,6]]]],[24429,24433,25244,25563,25568,26582]]]]},{"k":"G4874","v":[["*",[3,3,[[45,2,2,0,2,[[1066,2,2,0,2]]],[52,1,1,2,3,[[1118,1,1,2,3]]]],[28463,28465,29692]]],["+",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29692]]],["company",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28465]]],["with",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28463]]]]},{"k":"G4875","v":[["refreshed",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28335]]]]},{"k":"G4876","v":[["*",[6,6,[[41,2,2,0,2,[[981,1,1,0,1],[994,1,1,1,2]]],[43,2,2,2,4,[[1027,1,1,2,3],[1037,1,1,3,4]]],[57,2,2,4,6,[[1139,2,2,4,6]]]],[25338,25874,27284,27648,30065,30074]]],["befall",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27648]]],["meet",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25874]]],["met",[4,4,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]],[57,2,2,2,4,[[1139,2,2,2,4]]]],[25338,27284,30065,30074]]]]},{"k":"G4877","v":[["+",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23379]]]]},{"k":"G4878","v":[["*",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]]],[25403,28142]]],["help",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25403]]],["helpeth",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28142]]]]},{"k":"G4879","v":[["*",[3,3,[[44,1,1,0,1,[[1057,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]],[60,1,1,2,3,[[1158,1,1,2,3]]]],[28261,29094,30539]]],["condescend",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28261]]],["with",[2,2,[[47,1,1,0,1,[[1092,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[29094,30539]]]]},{"k":"G4880","v":[["*",[3,3,[[40,1,1,0,1,[[970,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]]],[24785,28919,29838]]],["die",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28919]]],["with",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[24785,29838]]]]},{"k":"G4881","v":[["perished",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30203]]]]},{"k":"G4882","v":[["sent",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29040]]]]},{"k":"G4883","v":[["together",[2,2,[[48,2,2,0,2,[[1098,1,1,0,1],[1100,1,1,1,2]]]],[29250,29288]]]]},{"k":"G4884","v":[["caught",[4,4,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,3,3,1,4,[[1023,1,1,1,2],[1036,1,1,2,3],[1044,1,1,3,4]]]],[25274,27113,27614,27870]]]]},{"k":"G4885","v":[["together",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23569]]]]},{"k":"G4886","v":[["*",[4,4,[[43,1,1,0,1,[[1025,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[50,2,2,2,4,[[1108,1,1,2,3],[1109,1,1,3,4]]]],[27199,29275,29513,29531]]],["bands",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29513]]],["bond",[3,3,[[43,1,1,0,1,[[1025,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]]],[27199,29275,29531]]]]},{"k":"G4887","v":[["with",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30244]]]]},{"k":"G4888","v":[["together",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28133]]]]},{"k":"G4889","v":[["*",[10,10,[[39,5,5,0,5,[[946,4,4,0,4],[952,1,1,4,5]]],[50,2,2,5,7,[[1107,1,1,5,6],[1110,1,1,6,7]]],[65,3,3,7,10,[[1172,1,1,7,8],[1185,1,1,8,9],[1188,1,1,9,10]]]],[23755,23756,23758,23760,24006,29472,29549,30804,31027,31089]]],["fellowservant",[6,6,[[39,2,2,0,2,[[946,2,2,0,2]]],[50,2,2,2,4,[[1107,1,1,2,3],[1110,1,1,3,4]]],[65,2,2,4,6,[[1185,1,1,4,5],[1188,1,1,5,6]]]],[23756,23760,29472,29549,31027,31089]]],["fellowservants",[4,4,[[39,3,3,0,3,[[946,2,2,0,2],[952,1,1,2,3]]],[65,1,1,3,4,[[1172,1,1,3,4]]]],[23755,23758,24006,30804]]]]},{"k":"G4890","v":[["+",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27694]]]]},{"k":"G4891","v":[["*",[3,3,[[48,1,1,0,1,[[1098,1,1,0,1]]],[50,2,2,1,3,[[1108,1,1,1,2],[1109,1,1,2,3]]]],[29235,29506,29518]]],["together",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29235]]],["with",[2,2,[[50,2,2,0,2,[[1108,1,1,0,1],[1109,1,1,1,2]]]],[29506,29518]]]]},{"k":"G4892","v":[["*",[22,22,[[39,3,3,0,3,[[933,1,1,0,1],[938,1,1,1,2],[954,1,1,2,3]]],[40,3,3,3,6,[[969,1,1,3,4],[970,1,1,4,5],[971,1,1,5,6]]],[41,1,1,6,7,[[994,1,1,6,7]]],[42,1,1,7,8,[[1007,1,1,7,8]]],[43,14,14,8,22,[[1021,1,1,8,9],[1022,4,4,9,13],[1023,2,2,13,15],[1039,1,1,15,16],[1040,5,5,16,21],[1041,1,1,21,22]]]],[23256,23434,24113,24726,24809,24827,25930,26570,27037,27080,27086,27093,27100,27113,27116,27734,27735,27740,27749,27754,27762,27789]]],["+",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27080]]],["council",[19,19,[[39,2,2,0,2,[[933,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[970,1,1,2,3],[971,1,1,3,4]]],[41,1,1,4,5,[[994,1,1,4,5]]],[42,1,1,5,6,[[1007,1,1,5,6]]],[43,13,13,6,19,[[1021,1,1,6,7],[1022,3,3,7,10],[1023,2,2,10,12],[1039,1,1,12,13],[1040,5,5,13,18],[1041,1,1,18,19]]]],[23256,24113,24809,24827,25930,26570,27037,27086,27093,27100,27113,27116,27734,27735,27740,27749,27754,27762,27789]]],["councils",[2,2,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23434,24726]]]]},{"k":"G4893","v":[["*",[32,30,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,2,2,1,3,[[1040,1,1,1,2],[1041,1,1,2,3]]],[44,3,3,3,6,[[1047,1,1,3,4],[1054,1,1,4,5],[1058,1,1,5,6]]],[45,9,7,6,13,[[1069,4,3,6,9],[1071,5,4,9,13]]],[46,3,3,13,16,[[1078,1,1,13,14],[1081,1,1,14,15],[1082,1,1,15,16]]],[53,4,4,16,20,[[1119,2,2,16,18],[1121,1,1,18,19],[1122,1,1,19,20]]],[54,1,1,20,21,[[1125,1,1,20,21]]],[55,1,1,21,22,[[1129,1,1,21,22]]],[57,5,5,22,27,[[1141,2,2,22,24],[1142,2,2,24,26],[1145,1,1,26,27]]],[59,3,3,27,30,[[1152,1,1,27,28],[1153,2,2,28,30]]]],[26390,27735,27785,27977,28156,28271,28534,28537,28539,28592,28594,28595,28596,28812,28861,28888,29701,29715,29740,29749,29812,29907,30114,30119,30135,30155,30259,30418,30440,30445]]],["+",[3,3,[[44,1,1,0,1,[[1058,1,1,0,1]]],[45,2,2,1,3,[[1071,2,2,1,3]]]],[28271,28592,28594]]],["Conscience",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28596]]],["conscience",[27,26,[[42,1,1,0,1,[[1004,1,1,0,1]]],[43,2,2,1,3,[[1040,1,1,1,2],[1041,1,1,2,3]]],[44,2,2,3,5,[[1047,1,1,3,4],[1054,1,1,4,5]]],[45,6,5,5,10,[[1069,4,3,5,8],[1071,2,2,8,10]]],[46,2,2,10,12,[[1078,1,1,10,11],[1081,1,1,11,12]]],[53,4,4,12,16,[[1119,2,2,12,14],[1121,1,1,14,15],[1122,1,1,15,16]]],[54,1,1,16,17,[[1125,1,1,16,17]]],[55,1,1,17,18,[[1129,1,1,17,18]]],[57,5,5,18,23,[[1141,2,2,18,20],[1142,2,2,20,22],[1145,1,1,22,23]]],[59,3,3,23,26,[[1152,1,1,23,24],[1153,2,2,24,26]]]],[26390,27735,27785,27977,28156,28534,28537,28539,28595,28596,28812,28861,29701,29715,29740,29749,29812,29907,30114,30119,30135,30155,30259,30418,30440,30445]]],["consciences",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28888]]]]},{"k":"G4894","v":[["*",[4,4,[[43,3,3,0,3,[[1022,1,1,0,1],[1029,1,1,1,2],[1031,1,1,2,3]]],[45,1,1,3,4,[[1065,1,1,3,4]]]],[27061,27349,27420,28437]]],["considered",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27349]]],["know",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28437]]],["of",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27420]]],["privy",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27061]]]]},{"k":"G4895","v":[["with",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,1,1,1,2,[[1039,1,1,1,2]]]],[25319,27715]]]]},{"k":"G4896","v":[["together",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25249]]]]},{"k":"G4897","v":[["*",[2,2,[[42,2,2,0,2,[[1002,1,1,0,1],[1014,1,1,1,2]]]],[26279,26800]]],["+",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26279]]],["with",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26800]]]]},{"k":"G4898","v":[["*",[2,2,[[43,1,1,0,1,[[1036,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]]],[27614,28951]]],["travel",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27614]]],["with",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28951]]]]},{"k":"G4899","v":[["with",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30478]]]]},{"k":"G4900","v":[["+",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27142]]]]},{"k":"G4901","v":[["witness",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29981]]]]},{"k":"G4902","v":[["accompanied",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27630]]]]},{"k":"G4903","v":[["*",[5,5,[[40,1,1,0,1,[[972,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]],[45,1,1,2,3,[[1077,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]],[58,1,1,4,5,[[1147,1,1,4,5]]]],[24893,28144,28792,28899,30315]]],["together",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,1,1,1,2,[[1083,1,1,1,2]]]],[28144,28899]]],["with",[3,3,[[40,1,1,0,1,[[972,1,1,0,1]]],[45,1,1,1,2,[[1077,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[24893,28792,30315]]]]},{"k":"G4904","v":[["*",[13,13,[[44,3,3,0,3,[[1061,3,3,0,3]]],[45,1,1,3,4,[[1064,1,1,3,4]]],[46,2,2,4,6,[[1078,1,1,4,5],[1085,1,1,5,6]]],[49,2,2,6,8,[[1104,1,1,6,7],[1106,1,1,7,8]]],[50,1,1,8,9,[[1110,1,1,8,9]]],[51,1,1,9,10,[[1113,1,1,9,10]]],[56,2,2,10,12,[[1132,2,2,10,12]]],[63,1,1,12,13,[[1165,1,1,12,13]]]],[28339,28345,28357,28419,28824,28955,29416,29445,29553,29592,29939,29962,30666]]],["fellowhelper",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28955]]],["fellowhelpers",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30666]]],["fellowlabourer",[2,2,[[51,1,1,0,1,[[1113,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[29592,29939]]],["fellowlabourers",[2,2,[[49,1,1,0,1,[[1106,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[29445,29962]]],["fellowworkers",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29553]]],["helper",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28345]]],["helpers",[2,2,[[44,1,1,0,1,[[1061,1,1,0,1]]],[46,1,1,1,2,[[1078,1,1,1,2]]]],[28339,28824]]],["labour",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29416]]],["with",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28419]]],["workfellow",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28357]]]]},{"k":"G4905","v":[["*",[32,32,[[39,1,1,0,1,[[929,1,1,0,1]]],[40,3,3,1,4,[[959,1,1,1,2],[962,1,1,2,3],[970,1,1,3,4]]],[41,2,2,4,6,[[977,1,1,4,5],[995,1,1,5,6]]],[42,2,2,6,8,[[1007,1,1,6,7],[1014,1,1,7,8]]],[43,16,16,8,24,[[1018,2,2,8,10],[1019,1,1,10,11],[1022,1,1,11,12],[1026,1,1,12,13],[1027,3,3,13,16],[1028,1,1,16,17],[1032,1,1,17,18],[1033,1,1,18,19],[1036,1,1,19,20],[1038,2,2,20,22],[1042,1,1,22,23],[1045,1,1,23,24]]],[45,8,8,24,32,[[1068,1,1,24,25],[1072,5,5,25,30],[1075,2,2,30,32]]]],[23162,24308,24440,24807,25122,25990,26556,26805,26929,26944,26955,27075,27255,27282,27286,27304,27319,27480,27496,27617,27680,27686,27813,27916,28492,28617,28618,28620,28633,28634,28701,28704]]],["+",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[43,1,1,1,2,[[1032,1,1,1,2]]],[45,1,1,2,3,[[1072,1,1,2,3]]]],[25990,27480,28634]]],["accompanied",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27282]]],["assembled",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24807]]],["came",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27075]]],["come",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27813]]],["companied",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26944]]],["resort",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26805]]],["resorted",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27496]]],["together",[17,17,[[39,1,1,0,1,[[929,1,1,0,1]]],[40,2,2,1,3,[[959,1,1,1,2],[962,1,1,2,3]]],[41,1,1,3,4,[[977,1,1,3,4]]],[43,6,6,4,10,[[1018,1,1,4,5],[1019,1,1,5,6],[1027,1,1,6,7],[1036,1,1,7,8],[1038,1,1,8,9],[1045,1,1,9,10]]],[45,7,7,10,17,[[1068,1,1,10,11],[1072,4,4,11,15],[1075,2,2,15,17]]]],[23162,24308,24440,25122,26929,26955,27286,27617,27686,27916,28492,28617,28618,28620,28633,28701,28704]]],["went",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27680]]],["with",[4,4,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,3,3,1,4,[[1026,1,1,1,2],[1027,1,1,2,3],[1028,1,1,3,4]]]],[26556,27255,27304,27319]]]]},{"k":"G4906","v":[["*",[5,5,[[41,1,1,0,1,[[987,1,1,0,1]]],[43,2,2,1,3,[[1027,1,1,1,2],[1028,1,1,2,3]]],[45,1,1,3,4,[[1066,1,1,3,4]]],[47,1,1,4,5,[[1092,1,1,4,5]]]],[25590,27300,27310,28465,29093]]],["eat",[3,3,[[43,1,1,0,1,[[1027,1,1,0,1]]],[45,1,1,1,2,[[1066,1,1,1,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]]],[27300,28465,29093]]],["with",[2,2,[[41,1,1,0,1,[[987,1,1,0,1]]],[43,1,1,1,2,[[1028,1,1,1,2]]]],[25590,27310]]]]},{"k":"G4907","v":[["*",[7,7,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[45,1,1,2,3,[[1062,1,1,2,3]]],[48,1,1,3,4,[[1099,1,1,3,4]]],[50,2,2,4,6,[[1107,1,1,4,5],[1108,1,1,5,6]]],[54,1,1,6,7,[[1126,1,1,6,7]]]],[24706,25020,28382,29255,29474,29496,29834]]],["knowledge",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29255]]],["understanding",[6,6,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[45,1,1,2,3,[[1062,1,1,2,3]]],[50,2,2,3,5,[[1107,1,1,3,4],[1108,1,1,4,5]]],[54,1,1,5,6,[[1126,1,1,5,6]]]],[24706,25020,28382,29474,29496,29834]]]]},{"k":"G4908","v":[["prudent",[4,4,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]],[43,1,1,2,3,[[1030,1,1,2,3]]],[45,1,1,3,4,[[1062,1,1,3,4]]]],[23484,25384,27369,28382]]]]},{"k":"G4909","v":[["*",[6,6,[[41,1,1,0,1,[[983,1,1,0,1]]],[43,2,2,1,3,[[1025,1,1,1,2],[1039,1,1,2,3]]],[44,1,1,3,4,[[1046,1,1,3,4]]],[45,2,2,4,6,[[1068,2,2,4,6]]]],[25453,27177,27724,27962,28499,28500]]],["allow",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25453]]],["consenting",[2,2,[[43,2,2,0,2,[[1025,1,1,0,1],[1039,1,1,1,2]]]],[27177,27724]]],["pleased",[2,2,[[45,2,2,0,2,[[1068,2,2,0,2]]]],[28499,28500]]],["pleasure",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27962]]]]},{"k":"G4910","v":[["*",[2,2,[[60,1,1,0,1,[[1157,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[30513,30684]]],["feast",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30513]]],["with",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30684]]]]},{"k":"G4911","v":[["together",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27505]]]]},{"k":"G4912","v":[["*",[12,12,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,6,6,1,7,[[976,1,1,1,2],[980,2,2,2,4],[984,1,1,4,5],[991,1,1,5,6],[994,1,1,6,7]]],[43,3,3,7,10,[[1024,1,1,7,8],[1035,1,1,8,9],[1045,1,1,9,10]]],[46,1,1,10,11,[[1082,1,1,10,11]]],[49,1,1,11,12,[[1103,1,1,11,12]]]],[23233,25101,25282,25290,25509,25774,25927,27173,27562,27907,28891,29384]]],["+",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25774]]],["constraineth",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28891]]],["held",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25927]]],["pressed",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27562]]],["sick",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27907]]],["stopped",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27173]]],["strait",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29384]]],["straitened",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25509]]],["taken",[2,2,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[23233,25282]]],["throng",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25290]]],["with",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25101]]]]},{"k":"G4913","v":[["delight",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28113]]]]},{"k":"G4914","v":[["custom",[2,2,[[42,1,1,0,1,[[1014,1,1,0,1]]],[45,1,1,1,2,[[1072,1,1,1,2]]]],[26824,28616]]]]},{"k":"G4915","v":[["equals",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29071]]]]},{"k":"G4916","v":[["*",[2,2,[[44,1,1,0,1,[[1051,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[28072,29506]]],["buried",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28072]]],["with",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29506]]]]},{"k":"G4917","v":[["broken",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[41,1,1,1,2,[[992,1,1,1,2]]]],[23870,25797]]]]},{"k":"G4918","v":[["*",[2,2,[[40,2,2,0,2,[[961,2,2,0,2]]]],[24388,24395]]],["thronged",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24388]]],["thronging",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24395]]]]},{"k":"G4919","v":[["break",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27677]]]]},{"k":"G4920","v":[["*",[26,25,[[39,9,9,0,9,[[941,6,6,0,6],[943,1,1,6,7],[944,1,1,7,8],[945,1,1,8,9]]],[40,5,5,9,14,[[960,1,1,9,10],[962,1,1,10,11],[963,1,1,11,12],[964,2,2,12,14]]],[41,4,4,14,18,[[974,1,1,14,15],[980,1,1,15,16],[990,1,1,16,17],[996,1,1,17,18]]],[43,4,3,18,21,[[1024,2,1,18,19],[1045,2,2,19,21]]],[44,2,2,21,23,[[1048,1,1,21,22],[1060,1,1,22,23]]],[46,1,1,23,24,[[1087,1,1,23,24]]],[48,1,1,24,25,[[1101,1,1,24,25]]]],[23552,23553,23554,23558,23562,23590,23643,23684,23713,24335,24459,24477,24517,24521,25023,25255,25722,26036,27141,27925,27926,28002,28324,28983,29321]]],["+",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28983]]],["considered",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24459]]],["understand",[13,13,[[39,4,4,0,4,[[941,3,3,0,3],[943,1,1,3,4]]],[40,4,4,4,8,[[960,1,1,4,5],[963,1,1,5,6],[964,2,2,6,8]]],[41,2,2,8,10,[[980,1,1,8,9],[996,1,1,9,10]]],[43,2,2,10,12,[[1045,2,2,10,12]]],[44,1,1,12,13,[[1060,1,1,12,13]]]],[23552,23553,23554,23643,24335,24477,24517,24521,25255,26036,27925,27926,28324]]],["understandeth",[3,3,[[39,2,2,0,2,[[941,2,2,0,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]]],[23558,23562,28002]]],["understanding",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29321]]],["understood",[7,6,[[39,3,3,0,3,[[941,1,1,0,1],[944,1,1,1,2],[945,1,1,2,3]]],[41,2,2,3,5,[[974,1,1,3,4],[990,1,1,4,5]]],[43,2,1,5,6,[[1024,2,1,5,6]]]],[23590,23684,23713,25023,25722,27141]]]]},{"k":"G4921","v":[["*",[16,15,[[41,1,1,0,1,[[981,1,1,0,1]]],[44,3,3,1,4,[[1048,1,1,1,2],[1050,1,1,2,3],[1061,1,1,3,4]]],[46,9,8,4,12,[[1080,1,1,4,5],[1081,1,1,5,6],[1082,1,1,6,7],[1083,1,1,7,8],[1084,1,1,8,9],[1087,3,2,9,11],[1089,1,1,11,12]]],[47,1,1,12,13,[[1092,1,1,12,13]]],[50,1,1,13,14,[[1107,1,1,13,14]]],[60,1,1,14,15,[[1158,1,1,14,15]]]],[25333,27996,28055,28337,28842,28861,28889,28902,28927,28983,28989,29033,29099,29482,30527]]],["approved",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28927]]],["approving",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28902]]],["commend",[5,5,[[44,2,2,0,2,[[1048,1,1,0,1],[1061,1,1,1,2]]],[46,3,3,2,5,[[1080,1,1,2,3],[1082,1,1,3,4],[1087,1,1,4,5]]]],[27996,28337,28842,28889,28983]]],["commended",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29033]]],["commendeth",[3,2,[[44,1,1,0,1,[[1050,1,1,0,1]]],[46,2,1,1,2,[[1087,2,1,1,2]]]],[28055,28989]]],["commending",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28861]]],["consist",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29482]]],["make",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29099]]],["standing",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30527]]],["with",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25333]]]]},{"k":"G4922","v":[["with",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27223]]]]},{"k":"G4923","v":[["company",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25017]]]]},{"k":"G4924","v":[["with",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30431]]]]},{"k":"G4925","v":[["together",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29251]]]]},{"k":"G4926","v":[["with",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27286]]]]},{"k":"G4927","v":[["+",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27564]]]]},{"k":"G4928","v":[["*",[2,2,[[41,1,1,0,1,[[993,1,1,0,1]]],[46,1,1,1,2,[[1079,1,1,1,2]]]],[25851,28828]]],["anguish",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28828]]],["distress",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25851]]]]},{"k":"G4929","v":[["appointed",[2,2,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]]],[24073,24139]]]]},{"k":"G4930","v":[["end",[6,6,[[39,5,5,0,5,[[941,3,3,0,3],[952,1,1,3,4],[956,1,1,4,5]]],[57,1,1,5,6,[[1141,1,1,5,6]]]],[23578,23579,23588,23960,24215,30131]]]]},{"k":"G4931","v":[["*",[7,7,[[39,1,1,0,1,[[935,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,2,2,2,4,[[976,2,2,2,4]]],[43,1,1,4,5,[[1038,1,1,4,5]]],[44,1,1,5,6,[[1054,1,1,5,6]]],[57,1,1,6,7,[[1140,1,1,6,7]]]],[23344,24721,25065,25076,27691,28183,30100]]],["ended",[4,4,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,2,2,1,3,[[976,2,2,1,3]]],[43,1,1,3,4,[[1038,1,1,3,4]]]],[23344,25065,25076,27691]]],["finish",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28183]]],["fulfilled",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24721]]],["make",[1,1,[[57,1,1,0,1,[[1140,1,1,0,1]]]],[30100]]]]},{"k":"G4932","v":[["short",[2,1,[[44,2,1,0,1,[[1054,2,1,0,1]]]],[28183]]]]},{"k":"G4933","v":[["*",[4,4,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,2,2,2,4,[[974,1,1,2,3],[977,1,1,3,4]]]],[23396,24427,24992,25145]]],["kept",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24992]]],["observed",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24427]]],["preserved",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[41,1,1,1,2,[[977,1,1,1,2]]]],[23396,25145]]]]},{"k":"G4934","v":[["*",[4,4,[[41,1,1,0,1,[[994,1,1,0,1]]],[42,1,1,1,2,[[1005,1,1,1,2]]],[43,2,2,2,4,[[1040,1,1,2,3],[1041,1,1,3,4]]]],[25869,26462,27754,27778]]],["agreed",[2,2,[[42,1,1,0,1,[[1005,1,1,0,1]]],[43,1,1,1,2,[[1040,1,1,1,2]]]],[26462,27754]]],["assented",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27778]]],["covenanted",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25869]]]]},{"k":"G4935","v":[["words",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27773]]]]},{"k":"G4936","v":[["*",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[43,1,1,1,2,[[1020,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[24440,27007,30450]]],["+",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30450]]],["ran",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24440]]],["together",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27007]]]]},{"k":"G4937","v":[["*",[8,8,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[970,1,1,2,3]]],[41,2,2,3,5,[[976,1,1,3,4],[981,1,1,4,5]]],[42,1,1,5,6,[[1015,1,1,5,6]]],[44,1,1,6,7,[[1061,1,1,6,7]]],[65,1,1,7,8,[[1168,1,1,7,8]]]],[23509,24368,24757,25081,25340,26861,28356,30744]]],["+",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25081]]],["brake",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24757]]],["broken",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26861]]],["bruise",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28356]]],["bruised",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23509]]],["bruising",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25340]]],["pieces",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24368]]],["shivers",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30744]]]]},{"k":"G4938","v":[["Destruction",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28007]]]]},{"k":"G4939","v":[["with",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27363]]]]},{"k":"G4940","v":[["at",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25264]]]]},{"k":"G4941","v":[["Syntyche",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29444]]]]},{"k":"G4942","v":[["+",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29094]]]]},{"k":"G4943","v":[["together",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28811]]]]},{"k":"G4944","v":[["together",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28138]]]]},{"k":"G4945","v":[["conspiracy",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27747]]]]},{"k":"G4946","v":[["Syracuse",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27911]]]]},{"k":"G4947","v":[["Syria",[8,8,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[43,5,5,2,7,[[1032,2,2,2,4],[1035,1,1,4,5],[1037,1,1,5,6],[1038,1,1,6,7]]],[47,1,1,7,8,[[1091,1,1,7,8]]]],[23233,24975,27465,27483,27575,27629,27667,29078]]]]},{"k":"G4948","v":[["Syrian",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25090]]]]},{"k":"G4949","v":[["Syrophenician",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24489]]]]},{"k":"G4950","v":[["quicksands",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27872]]]]},{"k":"G4951","v":[["*",[5,5,[[42,1,1,0,1,[[1017,1,1,0,1]]],[43,3,3,1,4,[[1025,1,1,1,2],[1031,1,1,2,3],[1034,1,1,3,4]]],[65,1,1,4,5,[[1178,1,1,4,5]]]],[26906,27179,27433,27529,30895]]],["dragging",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26906]]],["drew",[3,3,[[43,2,2,0,2,[[1031,1,1,0,1],[1034,1,1,1,2]]],[65,1,1,2,3,[[1178,1,1,2,3]]]],[27433,27529,30895]]],["haling",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27179]]]]},{"k":"G4952","v":[["tare",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25343]]]]},{"k":"G4953","v":[["token",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24798]]]]},{"k":"G4954","v":[["body",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29257]]]]},{"k":"G4955","v":[["him",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24833]]]]},{"k":"G4956","v":[["commendation",[2,1,[[46,2,1,0,1,[[1080,2,1,0,1]]]],[28842]]]]},{"k":"G4957","v":[["with",[5,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[42,1,1,2,3,[[1015,1,1,2,3]]],[44,1,1,3,4,[[1051,1,1,3,4]]],[47,1,1,4,5,[[1092,1,1,4,5]]]],[24173,24858,26857,28074,29101]]]]},{"k":"G4958","v":[["*",[2,2,[[43,1,1,0,1,[[1022,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[27065,28516]]],["+",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27065]]],["short",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28516]]]]},{"k":"G4959","v":[["groaneth",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28138]]]]},{"k":"G4960","v":[["to",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29156]]]]},{"k":"G4961","v":[["fellowsoldier",[2,2,[[49,1,1,0,1,[[1104,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[29416,29940]]]]},{"k":"G4962","v":[["gathered",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27902]]]]},{"k":"G4963","v":[["*",[2,2,[[43,2,2,0,2,[[1036,1,1,0,1],[1040,1,1,1,2]]]],[27625,27746]]],["+",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27746]]],["concourse",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27625]]]]},{"k":"G4964","v":[["*",[2,2,[[44,1,1,0,1,[[1057,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[28247,30388]]],["conformed",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28247]]],["yourselves",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30388]]]]},{"k":"G4965","v":[["Sychar",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26161]]]]},{"k":"G4966","v":[["Sychem",[2,1,[[43,2,1,0,1,[[1024,2,1,0,1]]]],[27132]]]]},{"k":"G4967","v":[["slaughter",[3,3,[[43,1,1,0,1,[[1025,1,1,0,1]]],[44,1,1,1,2,[[1053,1,1,1,2]]],[58,1,1,2,3,[[1150,1,1,2,3]]]],[27208,28152,30359]]]]},{"k":"G4968","v":[["beasts",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27158]]]]},{"k":"G4969","v":[["*",[10,9,[[61,2,1,0,1,[[1161,2,1,0,1]]],[65,8,8,1,9,[[1171,3,3,1,4],[1172,2,2,4,6],[1179,2,2,6,8],[1184,1,1,8,9]]]],[30591,30785,30788,30791,30797,30802,30911,30916,31017]]],["kill",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30797]]],["slain",[6,6,[[65,6,6,0,6,[[1171,3,3,0,3],[1172,1,1,3,4],[1179,1,1,4,5],[1184,1,1,5,6]]]],[30785,30788,30791,30802,30916,31017]]],["slew",[2,1,[[61,2,1,0,1,[[1161,2,1,0,1]]]],[30591]]],["wounded",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30911]]]]},{"k":"G4970","v":[["*",[11,11,[[39,7,7,0,7,[[930,1,1,0,1],[945,2,2,1,3],[946,1,1,3,4],[947,1,1,4,5],[954,1,1,5,6],[955,1,1,6,7]]],[40,1,1,7,8,[[972,1,1,7,8]]],[41,1,1,8,9,[[990,1,1,8,9]]],[43,1,1,9,10,[[1023,1,1,9,10]]],[65,1,1,10,11,[[1182,1,1,10,11]]]],[23179,23706,23723,23758,23787,24076,24183,24877,25711,27108,30975]]],["+",[4,4,[[39,4,4,0,4,[[945,2,2,0,2],[946,1,1,2,3],[954,1,1,3,4]]]],[23706,23723,23758,24076]]],["exceeding",[2,2,[[39,1,1,0,1,[[930,1,1,0,1]]],[65,1,1,1,2,[[1182,1,1,1,2]]]],[23179,30975]]],["exceedingly",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23787]]],["greatly",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[43,1,1,1,2,[[1023,1,1,1,2]]]],[24183,27108]]],["very",[2,2,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]]],[24877,25711]]]]},{"k":"G4971","v":[["exceedingly",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27873]]]]},{"k":"G4972","v":[["*",[26,17,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,2,2,1,3,[[999,1,1,1,2],[1002,1,1,2,3]]],[44,1,1,3,4,[[1060,1,1,3,4]]],[46,2,2,4,6,[[1078,1,1,4,5],[1088,1,1,5,6]]],[48,2,2,6,8,[[1097,1,1,6,7],[1100,1,1,7,8]]],[65,18,9,8,17,[[1173,15,6,8,14],[1176,1,1,14,15],[1186,1,1,15,16],[1188,1,1,16,17]]]],[24195,26153,26284,28331,28822,28999,29219,29302,30813,30814,30815,30816,30817,30818,30865,31041,31090]]],["+",[2,2,[[46,2,2,0,2,[[1078,1,1,0,1],[1088,1,1,1,2]]]],[28822,28999]]],["Seal",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31090]]],["seal",[2,2,[[42,1,1,0,1,[[999,1,1,0,1]]],[65,1,1,1,2,[[1186,1,1,1,2]]]],[26153,31041]]],["sealed",[19,10,[[42,1,1,0,1,[[1002,1,1,0,1]]],[44,1,1,1,2,[[1060,1,1,1,2]]],[48,2,2,2,4,[[1097,1,1,2,3],[1100,1,1,3,4]]],[65,15,6,4,10,[[1173,15,6,4,10]]]],[26284,28331,29219,29302,30813,30814,30815,30816,30817,30818]]],["sealing",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24195]]],["up",[1,1,[[65,1,1,0,1,[[1176,1,1,0,1]]]],[30865]]]]},{"k":"G4973","v":[["*",[16,16,[[44,1,1,0,1,[[1049,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[65,13,13,3,16,[[1171,4,4,3,7],[1172,6,6,7,13],[1173,1,1,13,14],[1174,1,1,14,15],[1175,1,1,15,16]]]],[28033,28542,29846,30780,30781,30784,30788,30794,30796,30798,30800,30802,30805,30812,30828,30844]]],["seal",[11,11,[[44,1,1,0,1,[[1049,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[65,8,8,3,11,[[1172,5,5,3,8],[1173,1,1,8,9],[1174,1,1,9,10],[1175,1,1,10,11]]]],[28033,28542,29846,30796,30798,30800,30802,30805,30812,30828,30844]]],["seals",[5,5,[[65,5,5,0,5,[[1171,4,4,0,4],[1172,1,1,4,5]]]],[30780,30781,30784,30788,30794]]]]},{"k":"G4974","v":[["bones",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27003]]]]},{"k":"G4975","v":[["*",[3,3,[[43,2,2,0,2,[[1030,1,1,0,1],[1036,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[27406,27611,30127]]],["+",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27406]]],["almost",[2,2,[[43,1,1,0,1,[[1036,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[27611,30127]]]]},{"k":"G4976","v":[["fashion",[2,2,[[45,1,1,0,1,[[1068,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[28518,29399]]]]},{"k":"G4977","v":[["*",[10,9,[[39,2,1,0,1,[[955,2,1,0,1]]],[40,2,2,1,3,[[957,1,1,1,2],[971,1,1,2,3]]],[41,2,2,3,5,[[977,1,1,3,4],[995,1,1,4,5]]],[42,2,2,5,7,[[1015,1,1,5,6],[1017,1,1,6,7]]],[43,2,2,7,9,[[1031,1,1,7,8],[1040,1,1,8,9]]]],[24180,24225,24864,25143,25980,26849,26909,27418,27741]]],["broken",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26909]]],["divided",[2,2,[[43,2,2,0,2,[[1031,1,1,0,1],[1040,1,1,1,2]]]],[27418,27741]]],["opened",[1,1,[[40,1,1,0,1,[[957,1,1,0,1]]]],[24225]]],["rend",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26849]]],["rent",[5,4,[[39,2,1,0,1,[[955,2,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,2,2,2,4,[[977,1,1,2,3],[995,1,1,3,4]]]],[24180,24864,25143,25980]]]]},{"k":"G4978","v":[["*",[8,8,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[42,3,3,2,5,[[1003,1,1,2,3],[1005,1,1,3,4],[1006,1,1,4,5]]],[45,3,3,5,8,[[1062,1,1,5,6],[1072,1,1,6,7],[1073,1,1,7,8]]]],[23395,24281,26371,26456,26500,28373,28618,28659]]],["division",[3,3,[[42,3,3,0,3,[[1003,1,1,0,1],[1005,1,1,1,2],[1006,1,1,2,3]]]],[26371,26456,26500]]],["divisions",[2,2,[[45,2,2,0,2,[[1062,1,1,0,1],[1072,1,1,1,2]]]],[28373,28618]]],["rent",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]]],[23395,24281]]],["schism",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28659]]]]},{"k":"G4979","v":[["*",[2,2,[[42,1,1,0,1,[[998,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[26110,27887]]],["cords",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26110]]],["ropes",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27887]]]]},{"k":"G4980","v":[["*",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]]],[23533,28492]]],["empty",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23533]]],["yourselves",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28492]]]]},{"k":"G4981","v":[["school",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27594]]]]},{"k":"G4982","v":[["*",[110,103,[[39,16,14,0,14,[[929,1,1,0,1],[936,1,1,1,2],[937,3,2,2,4],[938,1,1,4,5],[942,1,1,5,6],[944,1,1,6,7],[946,1,1,7,8],[947,1,1,8,9],[952,2,2,9,11],[955,4,3,11,14]]],[40,15,13,14,27,[[959,1,1,14,15],[961,3,3,15,18],[962,1,1,18,19],[964,2,1,19,20],[966,2,2,20,22],[969,2,2,22,24],[971,3,2,24,26],[972,1,1,26,27]]],[41,19,17,27,44,[[978,1,1,27,28],[979,1,1,28,29],[980,4,4,29,33],[981,3,2,33,35],[985,1,1,35,36],[989,2,2,36,38],[990,2,2,38,40],[991,1,1,40,41],[995,4,3,41,44]]],[42,6,6,44,50,[[999,1,1,44,45],[1001,1,1,45,46],[1006,1,1,46,47],[1007,1,1,47,48],[1008,2,2,48,50]]],[43,13,13,50,63,[[1019,3,3,50,53],[1021,2,2,53,55],[1028,1,1,55,56],[1031,1,1,56,57],[1032,2,2,57,59],[1033,2,2,59,61],[1044,2,2,61,63]]],[44,8,8,63,71,[[1050,2,2,63,65],[1053,1,1,65,66],[1054,1,1,66,67],[1055,2,2,67,69],[1056,2,2,69,71]]],[45,9,8,71,79,[[1062,2,2,71,73],[1064,1,1,73,74],[1066,1,1,74,75],[1068,2,1,75,76],[1070,1,1,76,77],[1071,1,1,77,78],[1076,1,1,78,79]]],[46,1,1,79,80,[[1079,1,1,79,80]]],[48,2,2,80,82,[[1098,2,2,80,82]]],[51,1,1,82,83,[[1112,1,1,82,83]]],[52,1,1,83,84,[[1117,1,1,83,84]]],[53,4,4,84,88,[[1119,1,1,84,85],[1120,2,2,85,87],[1122,1,1,87,88]]],[54,2,2,88,90,[[1125,1,1,88,89],[1128,1,1,89,90]]],[55,1,1,90,91,[[1131,1,1,90,91]]],[57,2,2,91,93,[[1137,1,1,91,92],[1139,1,1,92,93]]],[58,5,5,93,98,[[1146,1,1,93,94],[1147,1,1,94,95],[1149,1,1,95,96],[1150,2,2,96,98]]],[59,2,2,98,100,[[1153,1,1,98,99],[1154,1,1,99,100]]],[64,2,2,100,102,[[1166,2,2,100,102]]],[65,1,1,102,103,[[1187,1,1,102,103]]]],[23165,23370,23400,23401,23439,23627,23697,23738,23787,23970,23979,24169,24171,24178,24292,24387,24392,24398,24463,24535,24614,24640,24730,24737,24856,24857,24889,25155,25245,25257,25281,25293,25295,25325,25357,25541,25670,25684,25714,25730,25741,25970,25972,25974,26137,26244,26490,26535,26607,26627,26970,26989,26996,27031,27034,27321,27423,27443,27453,27513,27514,27875,27886,28056,28057,28140,28182,28197,28201,28223,28235,28381,28384,28425,28459,28503,28562,28600,28720,28839,29234,29237,29586,29671,29711,29720,29731,29763,29818,29888,29928,30037,30089,30287,30307,30349,30369,30374,30445,30464,30677,30695,31077]]],["+",[7,7,[[39,2,2,0,2,[[937,1,1,0,1],[952,1,1,1,2]]],[40,3,3,2,5,[[961,1,1,2,3],[966,1,1,3,4],[969,1,1,4,5]]],[41,2,2,5,7,[[980,1,1,5,6],[989,1,1,6,7]]]],[23401,23979,24398,24640,24737,25293,25670]]],["Save",[2,2,[[40,1,1,0,1,[[971,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[24856,26989]]],["healed",[3,3,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[43,1,1,2,3,[[1031,1,1,2,3]]]],[24387,25281,27423]]],["preserve",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29888]]],["save",[39,36,[[39,8,8,0,8,[[929,1,1,0,1],[936,1,1,1,2],[942,1,1,2,3],[944,1,1,3,4],[946,1,1,4,5],[955,3,3,5,8]]],[40,4,3,8,11,[[959,1,1,8,9],[964,2,1,9,10],[971,1,1,10,11]]],[41,9,8,11,19,[[978,1,1,11,12],[981,3,2,12,14],[989,1,1,14,15],[991,1,1,15,16],[995,3,3,16,19]]],[42,2,2,19,21,[[1008,2,2,19,21]]],[44,1,1,21,22,[[1056,1,1,21,22]]],[45,4,3,22,25,[[1062,1,1,22,23],[1068,2,1,23,24],[1070,1,1,24,25]]],[53,2,2,25,27,[[1119,1,1,25,26],[1122,1,1,26,27]]],[57,2,2,27,29,[[1137,1,1,27,28],[1139,1,1,28,29]]],[58,5,5,29,34,[[1146,1,1,29,30],[1147,1,1,30,31],[1149,1,1,31,32],[1150,2,2,32,34]]],[59,1,1,34,35,[[1153,1,1,34,35]]],[64,1,1,35,36,[[1166,1,1,35,36]]]],[23165,23370,23627,23697,23738,24169,24171,24178,24292,24535,24857,25155,25325,25357,25684,25741,25970,25972,25974,26607,26627,28223,28384,28503,28562,29711,29763,30037,30089,30287,30307,30349,30369,30374,30445,30695]]],["saved",[51,51,[[39,4,4,0,4,[[938,1,1,0,1],[947,1,1,1,2],[952,1,1,2,3],[955,1,1,3,4]]],[40,4,4,4,8,[[966,1,1,4,5],[969,1,1,5,6],[971,1,1,6,7],[972,1,1,7,8]]],[41,6,6,8,14,[[979,1,1,8,9],[980,1,1,9,10],[985,1,1,10,11],[990,2,2,11,13],[995,1,1,13,14]]],[42,3,3,14,17,[[999,1,1,14,15],[1001,1,1,15,16],[1006,1,1,16,17]]],[43,10,10,17,27,[[1019,2,2,17,19],[1021,1,1,19,20],[1028,1,1,20,21],[1032,2,2,21,23],[1033,2,2,23,25],[1044,2,2,25,27]]],[44,7,7,27,34,[[1050,2,2,27,29],[1053,1,1,29,30],[1054,1,1,30,31],[1055,2,2,31,33],[1056,1,1,33,34]]],[45,5,5,34,39,[[1062,1,1,34,35],[1064,1,1,35,36],[1066,1,1,36,37],[1071,1,1,37,38],[1076,1,1,38,39]]],[46,1,1,39,40,[[1079,1,1,39,40]]],[48,2,2,40,42,[[1098,2,2,40,42]]],[51,1,1,42,43,[[1112,1,1,42,43]]],[52,1,1,43,44,[[1117,1,1,43,44]]],[53,2,2,44,46,[[1120,2,2,44,46]]],[54,1,1,46,47,[[1125,1,1,46,47]]],[55,1,1,47,48,[[1131,1,1,47,48]]],[59,1,1,48,49,[[1154,1,1,48,49]]],[64,1,1,49,50,[[1166,1,1,49,50]]],[65,1,1,50,51,[[1187,1,1,50,51]]]],[23439,23787,23970,24171,24614,24730,24857,24889,25245,25257,25541,25714,25730,25970,26137,26244,26490,26970,26996,27034,27321,27443,27453,27513,27514,27875,27886,28056,28057,28140,28182,28197,28201,28235,28381,28425,28459,28600,28720,28839,29234,29237,29586,29671,29720,29731,29818,29928,30464,30677,31077]]],["well",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26535]]],["whole",[6,6,[[39,2,2,0,2,[[937,2,2,0,2]]],[40,2,2,2,4,[[961,1,1,2,3],[962,1,1,3,4]]],[41,1,1,4,5,[[980,1,1,4,5]]],[43,1,1,5,6,[[1021,1,1,5,6]]]],[23400,23401,24392,24463,25295,27031]]]]},{"k":"G4983","v":[["*",[146,122,[[39,16,12,0,12,[[933,2,2,0,2],[934,5,3,2,5],[938,2,1,5,6],[942,1,1,6,7],[954,2,2,7,9],[955,4,3,9,12]]],[40,5,5,12,17,[[961,1,1,12,13],[970,2,2,13,15],[971,2,2,15,17]]],[41,13,11,17,28,[[983,4,2,17,19],[984,3,3,19,22],[989,1,1,22,23],[994,1,1,23,24],[995,2,2,24,26],[996,2,2,26,28]]],[42,6,5,28,33,[[998,1,1,28,29],[1015,4,3,29,32],[1016,1,1,32,33]]],[43,1,1,33,34,[[1026,1,1,33,34]]],[44,13,13,34,47,[[1046,1,1,34,35],[1049,1,1,35,36],[1051,2,2,36,38],[1052,2,2,38,40],[1053,4,4,40,44],[1057,3,3,44,47]]],[45,47,35,47,82,[[1066,1,1,47,48],[1067,8,6,48,54],[1068,3,2,54,56],[1070,1,1,56,57],[1071,2,2,57,59],[1072,3,3,59,62],[1073,18,14,62,76],[1074,1,1,76,77],[1076,10,5,77,82]]],[46,10,7,82,89,[[1081,2,1,82,83],[1082,3,3,83,86],[1087,1,1,86,87],[1089,4,2,87,89]]],[47,1,1,89,90,[[1096,1,1,89,90]]],[48,9,8,90,98,[[1097,1,1,90,91],[1098,1,1,91,92],[1100,4,3,92,95],[1101,3,3,95,98]]],[49,3,2,98,100,[[1103,1,1,98,99],[1105,2,1,99,100]]],[50,8,8,100,108,[[1107,3,3,100,103],[1108,4,4,103,107],[1109,1,1,107,108]]],[51,1,1,108,109,[[1115,1,1,108,109]]],[57,5,5,109,114,[[1142,3,3,109,112],[1145,2,2,112,114]]],[58,5,5,114,119,[[1147,2,2,114,116],[1148,3,3,116,119]]],[59,1,1,119,120,[[1152,1,1,119,120]]],[64,1,1,120,121,[[1166,1,1,120,121]]],[65,1,1,121,122,[[1184,1,1,121,122]]]],[23263,23264,23304,23305,23307,23445,23609,24066,24080,24181,24187,24188,24393,24762,24776,24869,24871,25439,25441,25463,25481,25482,25688,25883,25987,25990,25994,26014,26116,26856,26863,26865,26879,27256,27954,28041,28074,28080,28095,28115,28126,28127,28129,28139,28246,28249,28250,28457,28480,28482,28483,28485,28486,28487,28491,28521,28567,28583,28584,28624,28627,28629,28646,28647,28648,28649,28650,28651,28652,28653,28654,28656,28657,28658,28659,28661,28668,28753,28755,28756,28758,28762,28869,28883,28885,28887,28981,29024,29025,29205,29229,29245,29276,29284,29288,29327,29332,29334,29381,29442,29483,29487,29489,29505,29511,29513,29517,29532,29644,30138,30143,30155,30244,30252,30309,30319,30321,30322,30325,30423,30681,31006]]],["+",[2,2,[[45,1,1,0,1,[[1073,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]]],[28658,29489]]],["bodies",[11,10,[[39,1,1,0,1,[[955,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]],[44,3,3,2,5,[[1046,1,1,2,3],[1053,1,1,3,4],[1057,1,1,4,5]]],[45,3,2,5,7,[[1067,1,1,5,6],[1076,2,1,6,7]]],[48,1,1,7,8,[[1101,1,1,7,8]]],[57,2,2,8,10,[[1142,1,1,8,9],[1145,1,1,9,10]]]],[24181,26856,27954,28127,28246,28482,28758,29332,30155,30252]]],["bodily",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28981]]],["body",[131,108,[[39,15,11,0,11,[[933,2,2,0,2],[934,5,3,2,5],[938,2,1,5,6],[942,1,1,6,7],[954,2,2,7,9],[955,3,2,9,11]]],[40,5,5,11,16,[[961,1,1,11,12],[970,2,2,12,14],[971,2,2,14,16]]],[41,13,11,16,27,[[983,4,2,16,18],[984,3,3,18,21],[989,1,1,21,22],[994,1,1,22,23],[995,2,2,23,25],[996,2,2,25,27]]],[42,5,4,27,31,[[998,1,1,27,28],[1015,3,2,28,30],[1016,1,1,30,31]]],[43,1,1,31,32,[[1026,1,1,31,32]]],[44,10,10,32,42,[[1049,1,1,32,33],[1051,2,2,33,35],[1052,2,2,35,37],[1053,3,3,37,40],[1057,2,2,40,42]]],[45,43,32,42,74,[[1066,1,1,42,43],[1067,7,5,43,48],[1068,3,2,48,50],[1070,1,1,50,51],[1071,2,2,51,53],[1072,3,3,53,56],[1073,17,13,56,69],[1074,1,1,69,70],[1076,8,4,70,74]]],[46,9,6,74,80,[[1081,2,1,74,75],[1082,3,3,75,78],[1089,4,2,78,80]]],[47,1,1,80,81,[[1096,1,1,80,81]]],[48,8,7,81,88,[[1097,1,1,81,82],[1098,1,1,82,83],[1100,4,3,83,86],[1101,2,2,86,88]]],[49,3,2,88,90,[[1103,1,1,88,89],[1105,2,1,89,90]]],[50,7,7,90,97,[[1107,2,2,90,92],[1108,4,4,92,96],[1109,1,1,96,97]]],[51,1,1,97,98,[[1115,1,1,97,98]]],[57,3,3,98,101,[[1142,2,2,98,100],[1145,1,1,100,101]]],[58,5,5,101,106,[[1147,2,2,101,103],[1148,3,3,103,106]]],[59,1,1,106,107,[[1152,1,1,106,107]]],[64,1,1,107,108,[[1166,1,1,107,108]]]],[23263,23264,23304,23305,23307,23445,23609,24066,24080,24187,24188,24393,24762,24776,24869,24871,25439,25441,25463,25481,25482,25688,25883,25987,25990,25994,26014,26116,26863,26865,26879,27256,28041,28074,28080,28095,28115,28126,28129,28139,28249,28250,28457,28480,28483,28485,28486,28487,28491,28521,28567,28583,28584,28624,28627,28629,28646,28647,28648,28649,28650,28651,28652,28653,28654,28656,28657,28659,28661,28668,28753,28755,28756,28762,28869,28883,28885,28887,29024,29025,29205,29229,29245,29276,29284,29288,29327,29334,29381,29442,29483,29487,29505,29511,29513,29517,29532,29644,30138,30143,30244,30309,30319,30321,30322,30325,30423,30681]]],["slaves",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31006]]]]},{"k":"G4984","v":[["bodily",[2,2,[[41,1,1,0,1,[[975,1,1,0,1]]],[53,1,1,1,2,[[1122,1,1,1,2]]]],[25047,29755]]]]},{"k":"G4985","v":[["bodily",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29503]]]]},{"k":"G4986","v":[["Sopater",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27630]]]]},{"k":"G4987","v":[["*",[2,2,[[44,1,1,0,1,[[1057,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[28265,29859]]],["heap",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28265]]],["laden",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29859]]]]},{"k":"G4988","v":[["Sosthenes",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]]],[27574,28364]]]]},{"k":"G4989","v":[["Sosipater",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28357]]]]},{"k":"G4990","v":[["*",[24,24,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]],[42,1,1,2,3,[[1000,1,1,2,3]]],[43,2,2,3,5,[[1022,1,1,3,4],[1030,1,1,4,5]]],[48,1,1,5,6,[[1101,1,1,5,6]]],[49,1,1,6,7,[[1105,1,1,6,7]]],[53,3,3,7,10,[[1119,1,1,7,8],[1120,1,1,8,9],[1122,1,1,9,10]]],[54,1,1,10,11,[[1125,1,1,10,11]]],[55,6,6,11,17,[[1129,2,2,11,13],[1130,2,2,13,15],[1131,2,2,15,17]]],[60,5,5,17,22,[[1156,2,2,17,19],[1157,1,1,19,20],[1158,2,2,20,22]]],[61,1,1,22,23,[[1162,1,1,22,23]]],[64,1,1,23,24,[[1166,1,1,23,24]]]],[24940,24984,26198,27090,27385,29327,29441,29697,29719,29757,29819,29895,29896,29918,29921,29927,29929,30480,30490,30520,30524,30540,30617,30697]]],["+",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29927]]],["Saviour",[22,22,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]],[42,1,1,2,3,[[1000,1,1,2,3]]],[43,2,2,3,5,[[1022,1,1,3,4],[1030,1,1,4,5]]],[49,1,1,5,6,[[1105,1,1,5,6]]],[53,3,3,6,9,[[1119,1,1,6,7],[1120,1,1,7,8],[1122,1,1,8,9]]],[54,1,1,9,10,[[1125,1,1,9,10]]],[55,5,5,10,15,[[1129,2,2,10,12],[1130,2,2,12,14],[1131,1,1,14,15]]],[60,5,5,15,20,[[1156,2,2,15,17],[1157,1,1,17,18],[1158,2,2,18,20]]],[61,1,1,20,21,[[1162,1,1,20,21]]],[64,1,1,21,22,[[1166,1,1,21,22]]]],[24940,24984,26198,27090,27385,29441,29697,29719,29757,29819,29895,29896,29918,29921,29929,30480,30490,30520,30524,30540,30617,30697]]],["saviour",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29327]]]]},{"k":"G4991","v":[["*",[45,43,[[41,4,4,0,4,[[973,3,3,0,3],[991,1,1,3,4]]],[42,1,1,4,5,[[1000,1,1,4,5]]],[43,6,6,5,11,[[1021,1,1,5,6],[1024,1,1,6,7],[1030,2,2,7,9],[1033,1,1,9,10],[1044,1,1,10,11]]],[44,5,5,11,16,[[1046,1,1,11,12],[1055,2,2,12,14],[1056,1,1,14,15],[1058,1,1,15,16]]],[46,5,3,16,19,[[1078,2,1,16,17],[1083,2,1,17,18],[1084,1,1,18,19]]],[48,1,1,19,20,[[1097,1,1,19,20]]],[49,3,3,20,23,[[1103,2,2,20,22],[1104,1,1,22,23]]],[51,2,2,23,25,[[1115,2,2,23,25]]],[52,1,1,25,26,[[1117,1,1,25,26]]],[54,2,2,26,28,[[1126,1,1,26,27],[1127,1,1,27,28]]],[57,7,7,28,35,[[1133,1,1,28,29],[1134,2,2,29,31],[1137,1,1,31,32],[1138,1,1,32,33],[1141,1,1,33,34],[1143,1,1,34,35]]],[59,3,3,35,38,[[1151,3,3,35,38]]],[60,1,1,38,39,[[1158,1,1,38,39]]],[64,1,1,39,40,[[1166,1,1,39,40]]],[65,3,3,40,43,[[1173,1,1,40,41],[1178,1,1,41,42],[1185,1,1,42,43]]]],[24962,24964,24970,25740,26178,27034,27141,27388,27409,27500,27889,27946,28189,28198,28220,28277,28806,28900,28926,29219,29380,29389,29403,29629,29630,29674,29837,29868,29977,29980,29987,30039,30053,30133,30179,30379,30383,30384,30537,30675,30820,30901,31018]]],["+",[4,4,[[43,1,1,0,1,[[1024,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]],[57,2,2,2,4,[[1134,1,1,2,3],[1143,1,1,3,4]]]],[27141,28189,29987,30179]]],["Salvation",[2,2,[[65,2,2,0,2,[[1173,1,1,0,1],[1185,1,1,1,2]]]],[30820,31018]]],["health",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27889]]],["salvation",[37,35,[[41,3,3,0,3,[[973,2,2,0,2],[991,1,1,2,3]]],[42,1,1,3,4,[[1000,1,1,3,4]]],[43,4,4,4,8,[[1021,1,1,4,5],[1030,2,2,5,7],[1033,1,1,7,8]]],[44,4,4,8,12,[[1046,1,1,8,9],[1055,1,1,9,10],[1056,1,1,10,11],[1058,1,1,11,12]]],[46,5,3,12,15,[[1078,2,1,12,13],[1083,2,1,13,14],[1084,1,1,14,15]]],[48,1,1,15,16,[[1097,1,1,15,16]]],[49,3,3,16,19,[[1103,2,2,16,18],[1104,1,1,18,19]]],[51,2,2,19,21,[[1115,2,2,19,21]]],[52,1,1,21,22,[[1117,1,1,21,22]]],[54,2,2,22,24,[[1126,1,1,22,23],[1127,1,1,23,24]]],[57,5,5,24,29,[[1133,1,1,24,25],[1134,1,1,25,26],[1137,1,1,26,27],[1138,1,1,27,28],[1141,1,1,28,29]]],[59,3,3,29,32,[[1151,3,3,29,32]]],[60,1,1,32,33,[[1158,1,1,32,33]]],[64,1,1,33,34,[[1166,1,1,33,34]]],[65,1,1,34,35,[[1178,1,1,34,35]]]],[24962,24970,25740,26178,27034,27388,27409,27500,27946,28198,28220,28277,28806,28900,28926,29219,29380,29389,29403,29629,29630,29674,29837,29868,29977,29980,30039,30053,30133,30379,30383,30384,30537,30675,30901]]],["saved",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24964]]]]},{"k":"G4992","v":[["salvation",[5,5,[[41,2,2,0,2,[[974,1,1,0,1],[975,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]],[48,1,1,3,4,[[1102,1,1,3,4]]],[55,1,1,4,5,[[1130,1,1,4,5]]]],[25003,25031,27927,29354,29919]]]]},{"k":"G4993","v":[["*",[6,6,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[46,1,1,3,4,[[1082,1,1,3,4]]],[55,1,1,4,5,[[1130,1,1,4,5]]],[59,1,1,5,6,[[1154,1,1,5,6]]]],[24379,25280,28248,28890,29914,30453]]],["+",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30453]]],["mind",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]]],[24379,25280]]],["minded",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29914]]],["sober",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28890]]],["soberly",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28248]]]]},{"k":"G4994","v":[["+",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29912]]]]},{"k":"G4995","v":[["mind",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29816]]]]},{"k":"G4996","v":[["+",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29920]]]]},{"k":"G4997","v":[["*",[3,3,[[43,1,1,0,1,[[1043,1,1,0,1]]],[53,2,2,1,3,[[1120,2,2,1,3]]]],[27848,29725,29731]]],["soberness",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27848]]],["sobriety",[2,2,[[53,2,2,0,2,[[1120,2,2,0,2]]]],[29725,29731]]]]},{"k":"G4998","v":[["*",[4,4,[[53,1,1,0,1,[[1121,1,1,0,1]]],[55,3,3,1,4,[[1129,1,1,1,2],[1130,2,2,2,4]]]],[29733,29900,29910,29913]]],["discreet",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29913]]],["sober",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[29733,29900]]],["temperate",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29910]]]]},{"k":"G4999","v":[["taverns",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27914]]]]},{"k":"G5000","v":[["Tabitha",[2,2,[[43,2,2,0,2,[[1026,2,2,0,2]]]],[27252,27256]]]]},{"k":"G5001","v":[["order",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28741]]]]},{"k":"G5002","v":[["set",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27358]]]]},{"k":"G5003","v":[["afflicted",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30346]]]]},{"k":"G5004","v":[["*",[2,2,[[44,1,1,0,1,[[1048,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[28007,30355]]],["miseries",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30355]]],["misery",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28007]]]]},{"k":"G5005","v":[["wretched",[2,2,[[44,1,1,0,1,[[1052,1,1,0,1]]],[65,1,1,1,2,[[1169,1,1,1,2]]]],[28115,30763]]]]},{"k":"G5006","v":[["talent",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30975]]]]},{"k":"G5007","v":[["*",[15,8,[[39,15,8,0,8,[[946,1,1,0,1],[953,14,7,1,8]]]],[23751,24023,24024,24028,24030,24032,24033,24036]]],["talent",[3,3,[[39,3,3,0,3,[[953,3,3,0,3]]]],[24032,24033,24036]]],["talents",[12,6,[[39,12,6,0,6,[[946,1,1,0,1],[953,11,5,1,6]]]],[23751,24023,24024,24028,24030,24036]]]]},{"k":"G5008","v":[["Talitha",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24405]]]]},{"k":"G5009","v":[["*",[4,4,[[39,2,2,0,2,[[934,1,1,0,1],[952,1,1,1,2]]],[41,2,2,2,4,[[984,2,2,2,4]]]],[23288,23983,25462,25483]]],["chambers",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23983]]],["closet",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23288]]],["closets",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25462]]],["storehouse",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25483]]]]},{"k":"G5010","v":[["order",[10,9,[[41,1,1,0,1,[[973,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[50,1,1,2,3,[[1108,1,1,2,3]]],[57,7,6,3,9,[[1137,2,2,3,5],[1138,1,1,5,6],[1139,4,3,6,9]]]],[24901,28718,29499,30036,30040,30064,30075,30081,30085]]]]},{"k":"G5011","v":[["*",[8,8,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[46,2,2,3,5,[[1084,1,1,3,4],[1087,1,1,4,5]]],[58,2,2,5,7,[[1146,1,1,5,6],[1149,1,1,6,7]]],[59,1,1,7,8,[[1155,1,1,7,8]]]],[23488,24945,28261,28922,28972,30275,30343,30470]]],["base",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28972]]],["degree",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[24945,30275]]],["down",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28922]]],["estate",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28261]]],["humble",[2,2,[[58,1,1,0,1,[[1149,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[30343,30470]]],["lowly",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23488]]]]},{"k":"G5012","v":[["*",[7,7,[[43,1,1,0,1,[[1037,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[50,3,3,3,6,[[1108,2,2,3,5],[1109,1,1,5,6]]],[59,1,1,6,7,[[1155,1,1,6,7]]]],[27645,29274,29394,29512,29517,29529,30470]]],["+",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29512]]],["humility",[2,2,[[50,1,1,0,1,[[1108,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[29517,30470]]],["lowliness",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29274]]],["mind",[3,3,[[43,1,1,0,1,[[1037,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]]],[27645,29394,29529]]]]},{"k":"G5013","v":[["*",[14,11,[[39,3,2,0,2,[[946,1,1,0,1],[951,2,1,1,2]]],[41,5,3,2,5,[[975,1,1,2,3],[986,2,1,3,4],[990,2,1,4,5]]],[46,2,2,5,7,[[1088,1,1,5,6],[1089,1,1,6,7]]],[49,2,2,7,9,[[1104,1,1,7,8],[1106,1,1,8,9]]],[58,1,1,9,10,[[1149,1,1,9,10]]],[59,1,1,10,11,[[1155,1,1,10,11]]]],[23731,23930,25030,25564,25702,28996,29043,29399,29454,30347,30471]]],["abased",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,2,2,1,3,[[986,1,1,1,2],[990,1,1,2,3]]],[49,1,1,3,4,[[1106,1,1,3,4]]]],[23930,25564,25702,29454]]],["abasing",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28996]]],["humble",[3,3,[[39,2,2,0,2,[[946,1,1,0,1],[951,1,1,1,2]]],[46,1,1,2,3,[[1089,1,1,2,3]]]],[23731,23930,29043]]],["humbled",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29399]]],["humbleth",[2,2,[[41,2,2,0,2,[[986,1,1,0,1],[990,1,1,1,2]]]],[25564,25702]]],["low",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25030]]],["yourselves",[2,2,[[58,1,1,0,1,[[1149,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[30347,30471]]]]},{"k":"G5014","v":[["*",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]],[49,1,1,2,3,[[1105,1,1,2,3]]],[58,1,1,3,4,[[1146,1,1,3,4]]]],[24941,27209,29442,30276]]],["estate",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24941]]],["humiliation",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27209]]],["low",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30276]]],["vile",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29442]]]]},{"k":"G5015","v":[["*",[17,17,[[39,2,2,0,2,[[930,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[41,2,2,3,5,[[973,1,1,3,4],[996,1,1,4,5]]],[42,7,7,5,12,[[1001,2,2,5,7],[1007,1,1,7,8],[1008,1,1,8,9],[1009,1,1,9,10],[1010,2,2,10,12]]],[43,2,2,12,14,[[1032,1,1,12,13],[1034,1,1,13,14]]],[47,2,2,14,16,[[1091,1,1,14,15],[1095,1,1,15,16]]],[59,1,1,16,17,[[1153,1,1,16,17]]]],[23172,23623,24457,24905,26029,26214,26217,26556,26607,26651,26669,26695,27466,27531,29064,29172,30438]]],["+",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26556]]],["trouble",[1,1,[[47,1,1,0,1,[[1091,1,1,0,1]]]],[29064]]],["troubled",[14,14,[[39,2,2,0,2,[[930,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[41,2,2,3,5,[[973,1,1,3,4],[996,1,1,4,5]]],[42,6,6,5,11,[[1001,2,2,5,7],[1008,1,1,7,8],[1009,1,1,8,9],[1010,2,2,9,11]]],[43,2,2,11,13,[[1032,1,1,11,12],[1034,1,1,12,13]]],[59,1,1,13,14,[[1153,1,1,13,14]]]],[23172,23623,24457,24905,26029,26214,26217,26607,26651,26669,26695,27466,27531,30438]]],["troubleth",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29172]]]]},{"k":"G5016","v":[["*",[2,2,[[40,1,1,0,1,[[969,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]]],[24725,26214]]],["troubles",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24725]]],["troubling",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26214]]]]},{"k":"G5017","v":[["stir",[2,2,[[43,2,2,0,2,[[1029,1,1,0,1],[1036,1,1,1,2]]]],[27355,27608]]]]},{"k":"G5018","v":[["Tarsus",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1038,1,1,1,2]]]],[27227,27703]]]]},{"k":"G5019","v":[["Tarsus",[3,3,[[43,3,3,0,3,[[1026,1,1,0,1],[1028,1,1,1,2],[1039,1,1,2,3]]]],[27246,27332,27707]]]]},{"k":"G5020","v":[["hell",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30504]]]]},{"k":"G5021","v":[["*",[8,8,[[39,1,1,0,1,[[956,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[43,4,4,2,6,[[1030,1,1,2,3],[1032,1,1,3,4],[1039,1,1,4,5],[1045,1,1,5,6]]],[44,1,1,6,7,[[1058,1,1,6,7]]],[45,1,1,7,8,[[1077,1,1,7,8]]]],[24211,25203,27410,27444,27714,27922,28267,28791]]],["addicted",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28791]]],["appointed",[3,3,[[39,1,1,0,1,[[956,1,1,0,1]]],[43,2,2,1,3,[[1039,1,1,1,2],[1045,1,1,2,3]]]],[24211,27714,27922]]],["determined",[1,1,[[43,1,1,0,1,[[1032,1,1,0,1]]]],[27444]]],["ordained",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]]],[27410,28267]]],["set",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25203]]]]},{"k":"G5022","v":[["*",[4,4,[[39,1,1,0,1,[[950,1,1,0,1]]],[43,1,1,1,2,[[1031,1,1,1,2]]],[57,2,2,2,4,[[1141,1,1,2,3],[1142,1,1,3,4]]]],[23876,27427,30118,30137]]],["bulls",[2,2,[[57,2,2,0,2,[[1141,1,1,0,1],[1142,1,1,1,2]]]],[30118,30137]]],["oxen",[2,2,[[39,1,1,0,1,[[950,1,1,0,1]]],[43,1,1,1,2,[[1031,1,1,1,2]]]],[23876,27427]]]]},{"k":"G5023","v":[["*",[247,236,[[39,22,22,0,22,[[929,1,1,0,1],[932,1,1,1,2],[934,2,2,2,4],[937,1,1,4,5],[938,1,1,5,6],[939,1,1,6,7],[941,3,3,7,10],[943,1,1,10,11],[947,1,1,11,12],[949,3,3,12,15],[951,2,2,15,17],[952,5,5,17,22]]],[40,15,13,22,35,[[958,1,1,22,23],[962,1,1,23,24],[963,1,1,24,25],[966,1,1,25,26],[967,4,3,26,29],[969,5,4,29,33],[972,2,2,33,35]]],[41,48,47,35,82,[[973,3,3,35,38],[974,2,2,38,40],[976,1,1,40,41],[977,1,1,41,42],[979,1,1,42,43],[981,1,1,43,44],[982,2,2,44,46],[983,4,4,46,50],[984,3,3,50,53],[985,1,1,53,54],[986,3,3,54,57],[987,1,1,57,58],[988,1,1,58,59],[989,1,1,59,60],[990,5,5,60,65],[991,2,2,65,67],[992,2,2,67,69],[993,6,5,69,74],[995,3,3,74,77],[996,5,5,77,82]]],[42,63,59,82,141,[[997,1,1,82,83],[998,2,2,83,85],[999,4,4,85,89],[1001,5,5,89,94],[1002,3,3,94,97],[1003,4,4,97,101],[1004,4,4,101,105],[1005,3,3,105,108],[1006,2,2,108,110],[1007,3,3,110,113],[1008,5,3,113,116],[1009,3,3,116,119],[1010,1,1,119,120],[1011,3,3,120,123],[1012,7,6,123,129],[1013,2,2,129,131],[1014,2,2,131,133],[1015,3,3,133,136],[1016,3,3,136,139],[1017,3,2,139,141]]],[43,32,32,141,173,[[1018,1,1,141,142],[1022,2,2,142,144],[1024,4,4,144,148],[1027,1,1,148,149],[1028,1,1,149,150],[1029,1,1,150,151],[1030,2,2,151,153],[1031,2,2,153,155],[1032,2,2,155,157],[1033,1,1,157,158],[1034,3,3,158,161],[1035,1,1,161,162],[1036,2,2,162,164],[1037,1,1,164,165],[1038,1,1,165,166],[1040,1,1,166,167],[1041,2,2,167,169],[1043,2,2,169,171],[1044,1,1,171,172],[1045,1,1,172,173]]],[44,2,2,173,175,[[1053,1,1,173,174],[1054,1,1,174,175]]],[45,12,11,175,186,[[1065,2,2,175,177],[1067,3,3,177,180],[1070,3,2,180,182],[1071,2,2,182,184],[1073,1,1,184,185],[1074,1,1,185,186]]],[46,2,2,186,188,[[1079,1,1,186,187],[1090,1,1,187,188]]],[47,3,2,188,190,[[1092,1,1,188,189],[1095,2,1,189,190]]],[48,1,1,190,191,[[1101,1,1,190,191]]],[49,3,3,191,194,[[1105,1,1,191,192],[1106,2,2,192,194]]],[52,1,1,194,195,[[1117,1,1,194,195]]],[53,8,8,195,203,[[1121,1,1,195,196],[1122,3,3,196,199],[1123,2,2,199,201],[1124,2,2,201,203]]],[54,3,3,203,206,[[1125,1,1,203,204],[1126,2,2,204,206]]],[55,2,2,206,208,[[1130,1,1,206,207],[1131,1,1,207,208]]],[57,3,3,208,211,[[1136,1,1,208,209],[1139,1,1,209,210],[1143,1,1,210,211]]],[58,1,1,211,212,[[1148,1,1,211,212]]],[59,1,1,212,213,[[1151,1,1,212,213]]],[60,4,4,213,217,[[1156,3,3,213,216],[1158,1,1,216,217]]],[61,4,4,217,221,[[1159,1,1,217,218],[1160,2,2,218,220],[1163,1,1,220,221]]],[65,17,15,221,236,[[1167,1,1,221,222],[1170,2,1,222,223],[1173,2,2,223,225],[1175,1,1,225,226],[1176,1,1,226,227],[1181,1,1,227,228],[1182,1,1,228,229],[1184,1,1,229,230],[1185,1,1,230,231],[1186,1,1,231,232],[1188,5,4,232,236]]]],[23164,23218,23314,23315,23397,23419,23484,23573,23590,23595,23653,23782,23849,23850,23853,23941,23954,23959,23960,23965,23990,23991,24268,24409,24486,24608,24668,24669,24673,24721,24725,24746,24747,24885,24890,24912,24913,24958,24992,25024,25091,25134,25204,25335,25364,25384,25432,25447,25450,25458,25463,25489,25490,25535,25559,25568,25574,25614,25634,25659,25692,25699,25709,25710,25711,25742,25759,25781,25787,25832,25833,25835,25857,25862,25966,25981,25984,26000,26001,26012,26017,26027,26072,26111,26113,26122,26129,26130,26142,26211,26224,26226,26229,26244,26258,26266,26316,26329,26332,26337,26360,26401,26407,26409,26411,26446,26462,26480,26502,26506,26534,26551,26566,26596,26616,26621,26637,26647,26651,26693,26710,26716,26720,26727,26729,26730,26732,26751,26759,26760,26772,26786,26807,26849,26861,26863,26881,26885,26898,26899,26922,26932,27064,27070,27117,27123,27166,27170,27303,27325,27354,27382,27404,27429,27432,27458,27459,27521,27531,27534,27543,27558,27606,27626,27662,27676,27756,27778,27791,27847,27853,27890,27928,28147,28163,28439,28447,28475,28478,28480,28548,28555,28573,28578,28645,28678,28840,29053,29099,29179,29310,29428,29450,29451,29666,29745,29753,29758,29762,29770,29784,29790,29799,29821,29829,29841,29923,29931,30022,30077,30184,30329,30385,30487,30488,30489,30536,30544,30551,30576,30637,30716,30769,30811,30819,30852,30865,30951,30959,30994,31018,31041,31088,31096,31098,31100]]],["+",[11,11,[[41,3,3,0,3,[[973,1,1,0,1],[989,1,1,1,2],[990,1,1,2,3]]],[42,2,2,3,5,[[1001,1,1,3,4],[1009,1,1,4,5]]],[45,1,1,5,6,[[1070,1,1,5,6]]],[57,1,1,6,7,[[1136,1,1,6,7]]],[59,1,1,7,8,[[1151,1,1,7,8]]],[65,3,3,8,11,[[1167,1,1,8,9],[1170,1,1,9,10],[1175,1,1,10,11]]]],[24912,25659,25692,26224,26637,28548,30022,30385,30716,30769,30852]]],["These",[5,5,[[39,1,1,0,1,[[943,1,1,0,1]]],[42,3,3,1,4,[[1004,1,1,1,2],[1005,1,1,2,3],[1006,1,1,3,4]]],[61,1,1,4,5,[[1160,1,1,4,5]]]],[23653,26401,26462,26502,30576]]],["They",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23590]]],["him",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30184]]],["same",[2,2,[[45,1,1,0,1,[[1070,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[28548,29829]]],["so",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26551]]],["such",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28478]]],["that",[7,7,[[40,1,1,0,1,[[972,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[43,2,2,2,4,[[1024,1,1,2,3],[1030,1,1,3,4]]],[45,1,1,4,5,[[1067,1,1,4,5]]],[65,2,2,5,7,[[1181,1,1,5,6],[1186,1,1,6,7]]]],[24885,25463,27123,27382,28475,30951,31041]]],["them",[2,2,[[45,1,1,0,1,[[1067,1,1,0,1]]],[65,1,1,1,2,[[1176,1,1,1,2]]]],[28480,30865]]],["these",[25,25,[[39,3,3,0,3,[[938,1,1,0,1],[951,1,1,1,2],[952,1,1,2,3]]],[40,4,4,3,7,[[963,1,1,3,4],[966,1,1,4,5],[969,1,1,5,6],[972,1,1,6,7]]],[41,5,5,7,12,[[973,1,1,7,8],[974,2,2,8,10],[983,1,1,10,11],[990,1,1,11,12]]],[42,3,3,12,15,[[999,1,1,12,13],[1001,1,1,13,14],[1016,1,1,14,15]]],[43,5,5,15,20,[[1024,1,1,15,16],[1027,1,1,16,17],[1030,1,1,17,18],[1031,1,1,18,19],[1033,1,1,19,20]]],[44,2,2,20,22,[[1053,1,1,20,21],[1054,1,1,21,22]]],[45,2,2,22,24,[[1073,1,1,22,23],[1074,1,1,23,24]]],[47,1,1,24,25,[[1095,1,1,24,25]]]],[23419,23941,23965,24486,24608,24725,24890,24958,24992,25024,25447,25709,26122,26229,26898,27117,27303,27404,27432,27521,28147,28163,28645,28678,29179]]],["they",[2,2,[[42,2,2,0,2,[[1002,1,1,0,1],[1006,1,1,1,2]]]],[26266,26506]]],["things",[159,151,[[39,17,17,0,17,[[929,1,1,0,1],[932,1,1,1,2],[934,2,2,2,4],[937,1,1,4,5],[939,1,1,5,6],[941,2,2,6,8],[947,1,1,8,9],[949,3,3,9,12],[951,1,1,12,13],[952,4,4,13,17]]],[40,10,8,17,25,[[958,1,1,17,18],[962,1,1,18,19],[967,4,3,19,22],[969,4,3,22,25]]],[41,32,31,25,56,[[973,1,1,25,26],[976,1,1,26,27],[977,1,1,27,28],[979,1,1,28,29],[982,2,2,29,31],[983,2,2,31,33],[984,2,2,33,35],[985,1,1,35,36],[986,3,3,36,39],[987,1,1,39,40],[988,1,1,40,41],[990,1,1,41,42],[991,1,1,42,43],[992,2,2,43,45],[993,6,5,45,50],[995,2,2,50,52],[996,4,4,52,56]]],[42,40,36,56,92,[[997,1,1,56,57],[998,2,2,57,59],[999,3,3,59,62],[1001,2,2,62,64],[1002,2,2,64,66],[1003,3,3,66,69],[1004,2,2,69,71],[1007,1,1,71,72],[1008,5,3,72,75],[1009,1,1,75,76],[1010,1,1,76,77],[1011,3,3,77,80],[1012,7,6,80,86],[1013,1,1,86,87],[1015,2,2,87,89],[1016,1,1,89,90],[1017,3,2,90,92]]],[43,18,18,92,110,[[1018,1,1,92,93],[1022,2,2,93,95],[1024,2,2,95,97],[1028,1,1,97,98],[1029,1,1,98,99],[1031,1,1,99,100],[1032,1,1,100,101],[1034,3,3,101,104],[1035,1,1,104,105],[1036,1,1,105,106],[1038,1,1,106,107],[1040,1,1,107,108],[1041,2,2,108,110]]],[45,5,5,110,115,[[1065,2,2,110,112],[1070,1,1,112,113],[1071,2,2,113,115]]],[46,2,2,115,117,[[1079,1,1,115,116],[1090,1,1,116,117]]],[47,2,2,117,119,[[1092,1,1,117,118],[1095,1,1,118,119]]],[48,1,1,119,120,[[1101,1,1,119,120]]],[49,2,2,120,122,[[1106,2,2,120,122]]],[52,1,1,122,123,[[1117,1,1,122,123]]],[53,8,8,123,131,[[1121,1,1,123,124],[1122,3,3,124,127],[1123,2,2,127,129],[1124,2,2,129,131]]],[54,2,2,131,133,[[1125,1,1,131,132],[1126,1,1,132,133]]],[55,2,2,133,135,[[1130,1,1,133,134],[1131,1,1,134,135]]],[57,1,1,135,136,[[1139,1,1,135,136]]],[58,1,1,136,137,[[1148,1,1,136,137]]],[60,4,4,137,141,[[1156,3,3,137,140],[1158,1,1,140,141]]],[61,3,3,141,144,[[1159,1,1,141,142],[1160,1,1,142,143],[1163,1,1,143,144]]],[65,8,7,144,151,[[1173,1,1,144,145],[1184,1,1,145,146],[1185,1,1,146,147],[1188,5,4,147,151]]]],[23164,23218,23314,23315,23397,23484,23573,23595,23782,23849,23850,23853,23954,23959,23960,23990,23991,24268,24409,24668,24669,24673,24721,24746,24747,24913,25091,25134,25204,25364,25384,25432,25458,25489,25490,25535,25559,25568,25574,25614,25634,25710,25742,25781,25787,25832,25833,25835,25857,25862,25966,25984,26000,26001,26012,26017,26072,26111,26113,26129,26130,26142,26226,26244,26258,26316,26329,26332,26360,26407,26409,26534,26596,26616,26621,26647,26693,26710,26716,26720,26727,26729,26730,26732,26751,26759,26772,26849,26861,26885,26899,26922,26932,27064,27070,27166,27170,27325,27354,27429,27459,27531,27534,27543,27558,27606,27676,27756,27778,27791,28439,28447,28555,28573,28578,28840,29053,29099,29179,29310,29450,29451,29666,29745,29753,29758,29762,29770,29784,29790,29799,29821,29841,29923,29931,30077,30329,30487,30488,30489,30536,30544,30551,30637,30811,30994,31018,31088,31096,31098,31100]]],["this",[6,6,[[41,1,1,0,1,[[990,1,1,0,1]]],[42,2,2,1,3,[[1001,1,1,1,2],[1015,1,1,2,3]]],[43,1,1,3,4,[[1032,1,1,3,4]]],[65,2,2,4,6,[[1170,1,1,4,5],[1173,1,1,5,6]]]],[25711,26211,26863,27458,30769,30819]]],["those",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29428]]],["thus",[17,17,[[41,6,6,0,6,[[981,1,1,0,1],[983,1,1,1,2],[990,1,1,2,3],[991,1,1,3,4],[995,1,1,4,5],[996,1,1,5,6]]],[42,5,5,6,11,[[1005,1,1,6,7],[1007,1,1,7,8],[1009,1,1,8,9],[1014,1,1,9,10],[1016,1,1,10,11]]],[43,5,5,11,16,[[1036,1,1,11,12],[1037,1,1,12,13],[1043,2,2,13,15],[1044,1,1,15,16]]],[65,1,1,16,17,[[1182,1,1,16,17]]]],[25335,25450,25699,25759,25981,26027,26446,26566,26651,26807,26881,27626,27662,27847,27853,27890,30959]]],["words",[6,6,[[42,5,5,0,5,[[1003,1,1,0,1],[1004,1,1,1,2],[1005,1,1,2,3],[1013,1,1,3,4],[1014,1,1,4,5]]],[43,1,1,5,6,[[1045,1,1,5,6]]]],[26337,26411,26480,26760,26786,27928]]]]},{"k":"G5024","v":[["*",[4,4,[[41,3,3,0,3,[[978,2,2,0,2],[989,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]]],[25169,25172,25681,29584]]],["+",[3,3,[[41,3,3,0,3,[[978,2,2,0,2],[989,1,1,2,3]]]],[25169,25172,25681]]],["things",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29584]]]]},{"k":"G5025","v":[["*",[21,21,[[39,2,2,0,2,[[941,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,6,6,3,9,[[973,2,2,3,5],[978,1,1,5,6],[985,1,1,6,7],[995,1,1,7,8],[996,1,1,8,9]]],[42,1,1,9,10,[[1001,1,1,9,10]]],[43,6,6,10,16,[[1018,2,2,10,12],[1020,1,1,12,13],[1023,1,1,13,14],[1028,1,1,14,15],[1038,1,1,15,16]]],[46,1,1,16,17,[[1084,1,1,16,17]]],[51,1,1,17,18,[[1113,1,1,17,18]]],[57,1,1,18,19,[[1141,1,1,18,19]]],[65,2,2,19,21,[[1175,1,1,19,20],[1182,1,1,20,21]]]],[23592,23912,24719,24917,24932,25158,25532,25942,26009,26213,26928,26938,27020,27102,27334,27679,28917,29593,30128,30860,30963]]],["hence",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26928]]],["that",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25942]]],["them",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25532]]],["these",[12,12,[[39,2,2,0,2,[[941,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,1,1,3,4,[[996,1,1,3,4]]],[42,1,1,4,5,[[1001,1,1,4,5]]],[43,2,2,5,7,[[1020,1,1,5,6],[1028,1,1,6,7]]],[46,1,1,7,8,[[1084,1,1,7,8]]],[51,1,1,8,9,[[1113,1,1,8,9]]],[57,1,1,9,10,[[1141,1,1,9,10]]],[65,2,2,10,12,[[1175,1,1,10,11],[1182,1,1,11,12]]]],[23592,23912,24719,26009,26213,27020,27334,28917,29593,30128,30860,30963]]],["those",[6,6,[[41,3,3,0,3,[[973,2,2,0,2],[978,1,1,2,3]]],[43,3,3,3,6,[[1018,1,1,3,4],[1023,1,1,4,5],[1038,1,1,5,6]]]],[24917,24932,25158,26938,27102,27679]]]]},{"k":"G5026","v":[["*",[122,119,[[39,11,11,0,11,[[938,1,1,0,1],[939,1,1,1,2],[940,3,3,2,5],[943,1,1,5,6],[944,1,1,6,7],[949,1,1,7,8],[951,1,1,8,9],[954,2,2,9,11]]],[40,8,8,11,19,[[960,1,1,11,12],[964,2,2,12,14],[966,1,1,14,15],[967,1,1,15,16],[968,1,1,16,17],[970,2,2,17,19]]],[41,28,28,19,47,[[976,2,2,19,21],[979,2,2,21,23],[983,5,5,23,28],[984,2,2,28,30],[985,4,4,30,34],[987,1,1,34,35],[988,1,1,35,36],[989,3,3,36,39],[990,2,2,39,41],[991,1,1,41,42],[992,3,3,42,45],[995,1,1,45,46],[996,1,1,46,47]]],[42,9,7,47,54,[[998,1,1,47,48],[1003,2,1,48,49],[1006,3,3,49,52],[1008,2,1,52,53],[1011,1,1,53,54]]],[43,33,32,54,86,[[1018,3,3,54,57],[1019,3,3,57,60],[1020,1,1,60,61],[1022,1,1,61,62],[1023,1,1,62,63],[1024,2,2,63,65],[1025,3,3,65,68],[1027,1,1,68,69],[1030,2,2,69,71],[1033,1,1,71,72],[1035,1,1,72,73],[1036,2,2,73,75],[1039,3,3,75,78],[1040,2,2,78,80],[1041,1,1,80,81],[1043,1,1,81,82],[1044,2,2,82,84],[1045,3,2,84,86]]],[44,1,1,86,87,[[1050,1,1,86,87]]],[45,4,4,87,91,[[1067,1,1,87,88],[1068,1,1,88,89],[1070,1,1,89,90],[1076,1,1,90,91]]],[46,12,12,91,103,[[1078,1,1,91,92],[1081,1,1,92,93],[1085,4,4,93,97],[1086,4,4,97,101],[1088,1,1,101,102],[1089,1,1,102,103]]],[53,1,1,103,104,[[1119,1,1,103,104]]],[54,1,1,104,105,[[1126,1,1,104,105]]],[57,5,5,105,110,[[1137,1,1,105,106],[1141,1,1,106,107],[1143,1,1,107,108],[1144,1,1,108,109],[1145,1,1,109,110]]],[59,1,1,110,111,[[1155,1,1,110,111]]],[60,2,2,111,113,[[1156,1,1,111,112],[1158,1,1,112,113]]],[61,2,2,113,115,[[1161,1,1,113,114],[1162,1,1,114,115]]],[62,1,1,115,116,[[1164,1,1,115,116]]],[65,3,3,116,119,[[1168,1,1,116,117],[1178,1,1,117,118],[1188,1,1,118,119]]]],[23440,23475,23530,23531,23534,23648,23690,23849,23954,24085,24088,24336,24512,24538,24593,24668,24683,24781,24784,25069,25086,25226,25239,25435,25436,25437,25455,25456,25479,25500,25524,25525,25534,25550,25591,25644,25657,25676,25685,25693,25697,25773,25781,25788,25798,25983,26012,26106,26336,26487,26497,26499,26607,26712,26939,26940,26948,26955,26978,26989,27012,27079,27104,27120,27176,27195,27198,27211,27289,27388,27395,27495,27567,27610,27625,27707,27708,27732,27735,27747,27790,27845,27876,27878,27919,27921,28049,28480,28507,28552,28737,28815,28860,28938,28939,28951,28952,28960,28961,28968,28969,29006,29035,29714,29846,30033,30116,30174,30227,30243,30477,30497,30523,30582,30624,30655,30741,30906,31099]]],["+",[4,4,[[45,1,1,0,1,[[1068,1,1,0,1]]],[57,3,3,1,4,[[1137,1,1,1,2],[1144,1,1,2,3],[1145,1,1,3,4]]]],[28507,30033,30227,30243]]],["This",[5,5,[[42,3,3,0,3,[[998,1,1,0,1],[1006,2,2,1,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]],[60,1,1,4,5,[[1158,1,1,4,5]]]],[26106,26487,26499,29714,30523]]],["her",[1,1,[[65,1,1,0,1,[[1178,1,1,0,1]]]],[30906]]],["it",[2,2,[[45,1,1,0,1,[[1067,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[28480,30174]]],["same",[5,5,[[43,2,2,0,2,[[1025,1,1,0,1],[1030,1,1,1,2]]],[46,3,3,2,5,[[1085,1,1,2,3],[1086,2,2,3,5]]]],[27211,27395,28938,28960,28961]]],["that",[4,4,[[41,3,3,0,3,[[985,1,1,0,1],[989,1,1,1,2],[995,1,1,2,3]]],[43,1,1,3,4,[[1033,1,1,3,4]]]],[25550,25685,25983,27495]]],["the",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26012]]],["this",[99,96,[[39,11,11,0,11,[[938,1,1,0,1],[939,1,1,1,2],[940,3,3,2,5],[943,1,1,5,6],[944,1,1,6,7],[949,1,1,7,8],[951,1,1,8,9],[954,2,2,9,11]]],[40,8,8,11,19,[[960,1,1,11,12],[964,2,2,12,14],[966,1,1,14,15],[967,1,1,15,16],[968,1,1,16,17],[970,2,2,17,19]]],[41,23,23,19,42,[[976,2,2,19,21],[979,2,2,21,23],[983,5,5,23,28],[984,2,2,28,30],[985,2,2,30,32],[987,1,1,32,33],[988,1,1,33,34],[989,2,2,34,36],[990,2,2,36,38],[991,1,1,38,39],[992,3,3,39,42]]],[42,6,4,42,46,[[1003,2,1,42,43],[1006,1,1,43,44],[1008,2,1,44,45],[1011,1,1,45,46]]],[43,30,29,46,75,[[1018,3,3,46,49],[1019,3,3,49,52],[1020,1,1,52,53],[1022,1,1,53,54],[1023,1,1,54,55],[1024,2,2,55,57],[1025,2,2,57,59],[1027,1,1,59,60],[1030,1,1,60,61],[1035,1,1,61,62],[1036,2,2,62,64],[1039,3,3,64,67],[1040,2,2,67,69],[1041,1,1,69,70],[1043,1,1,70,71],[1044,2,2,71,73],[1045,3,2,73,75]]],[44,1,1,75,76,[[1050,1,1,75,76]]],[45,2,2,76,78,[[1070,1,1,76,77],[1076,1,1,77,78]]],[46,9,9,78,87,[[1078,1,1,78,79],[1081,1,1,79,80],[1085,3,3,80,83],[1086,2,2,83,85],[1088,1,1,85,86],[1089,1,1,86,87]]],[54,1,1,87,88,[[1126,1,1,87,88]]],[57,1,1,88,89,[[1141,1,1,88,89]]],[59,1,1,89,90,[[1155,1,1,89,90]]],[60,1,1,90,91,[[1156,1,1,90,91]]],[61,2,2,91,93,[[1161,1,1,91,92],[1162,1,1,92,93]]],[62,1,1,93,94,[[1164,1,1,93,94]]],[65,2,2,94,96,[[1168,1,1,94,95],[1188,1,1,95,96]]]],[23440,23475,23530,23531,23534,23648,23690,23849,23954,24085,24088,24336,24512,24538,24593,24668,24683,24781,24784,25069,25086,25226,25239,25435,25436,25437,25455,25456,25479,25500,25524,25525,25591,25644,25657,25676,25693,25697,25773,25781,25788,25798,26336,26497,26607,26712,26939,26940,26948,26955,26978,26989,27012,27079,27104,27120,27176,27195,27198,27289,27388,27567,27610,27625,27707,27708,27732,27735,27747,27790,27845,27876,27878,27919,27921,28049,28552,28737,28815,28860,28939,28951,28952,28968,28969,29006,29035,29846,30116,30477,30497,30582,30624,30655,30741,31099]]],["woman",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25534]]]]},{"k":"G5027","v":[["+",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24136]]]]},{"k":"G5028","v":[["*",[7,7,[[39,6,6,0,6,[[951,2,2,0,2],[955,3,3,2,5],[956,1,1,5,6]]],[44,1,1,6,7,[[1048,1,1,6,7]]]],[23945,23947,24190,24193,24195,24196,28004]]],["+",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24195]]],["sepulchre",[4,4,[[39,3,3,0,3,[[955,2,2,0,2],[956,1,1,2,3]]],[44,1,1,3,4,[[1048,1,1,3,4]]]],[24190,24193,24196,28004]]],["sepulchres",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23945]]],["tombs",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23947]]]]},{"k":"G5029","v":[["*",[2,2,[[44,1,1,0,1,[[1050,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[28054,29953]]],["peradventure",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28054]]],["perhaps",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29953]]]]},{"k":"G5030","v":[["*",[10,10,[[41,2,2,0,2,[[986,1,1,0,1],[988,1,1,1,2]]],[42,1,1,2,3,[[1007,1,1,2,3]]],[45,1,1,3,4,[[1065,1,1,3,4]]],[47,1,1,4,5,[[1091,1,1,4,5]]],[49,2,2,5,7,[[1104,2,2,5,7]]],[52,1,1,7,8,[[1117,1,1,7,8]]],[53,1,1,8,9,[[1123,1,1,8,9]]],[54,1,1,9,10,[[1128,1,1,9,10]]]],[25574,25626,26554,28452,29063,29410,29415,29663,29785,29879]]],["hastily",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26554]]],["quickly",[2,2,[[41,2,2,0,2,[[986,1,1,0,1],[988,1,1,1,2]]]],[25574,25626]]],["shortly",[4,4,[[45,1,1,0,1,[[1065,1,1,0,1]]],[49,2,2,1,3,[[1104,2,2,1,3]]],[54,1,1,3,4,[[1128,1,1,3,4]]]],[28452,29410,29415,29879]]],["soon",[2,2,[[47,1,1,0,1,[[1091,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]]],[29063,29663]]],["suddenly",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29785]]]]},{"k":"G5031","v":[["*",[2,2,[[60,2,2,0,2,[[1156,1,1,0,1],[1157,1,1,1,2]]]],[30493,30501]]],["shortly",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30493]]],["swift",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30501]]]]},{"k":"G5032","v":[["*",[5,5,[[42,2,2,0,2,[[1009,1,1,0,1],[1016,1,1,1,2]]],[53,1,1,2,3,[[1121,1,1,2,3]]],[57,2,2,3,5,[[1145,2,2,3,5]]]],[26657,26871,29745,30260,30264]]],["+",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26871]]],["quickly",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26657]]],["shortly",[2,2,[[53,1,1,0,1,[[1121,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[29745,30264]]],["sooner",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30260]]]]},{"k":"G5033","v":[["+",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27538]]]]},{"k":"G5034","v":[["*",[8,8,[[41,1,1,0,1,[[990,1,1,0,1]]],[43,3,3,1,4,[[1029,1,1,1,2],[1039,1,1,2,3],[1042,1,1,3,4]]],[44,1,1,4,5,[[1061,1,1,4,5]]],[65,3,3,5,8,[[1167,1,1,5,6],[1168,1,1,6,7],[1188,1,1,7,8]]]],[25696,27344,27722,27800,28356,30698,30722,31086]]],["+",[7,7,[[41,1,1,0,1,[[990,1,1,0,1]]],[43,3,3,1,4,[[1029,1,1,1,2],[1039,1,1,2,3],[1042,1,1,3,4]]],[44,1,1,4,5,[[1061,1,1,4,5]]],[65,2,2,5,7,[[1167,1,1,5,6],[1188,1,1,6,7]]]],[25696,27344,27722,27800,28356,30698,31086]]],["quickly",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30722]]]]},{"k":"G5035","v":[["*",[12,12,[[39,3,3,0,3,[[933,1,1,0,1],[956,2,2,1,3]]],[40,2,2,3,5,[[965,1,1,3,4],[972,1,1,4,5]]],[42,1,1,5,6,[[1007,1,1,5,6]]],[65,6,6,6,12,[[1168,1,1,6,7],[1169,1,1,7,8],[1177,1,1,8,9],[1188,3,3,9,12]]]],[23259,24202,24203,24577,24881,26552,30733,30757,30886,31087,31092,31100]]],["lightly",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24577]]],["quickly",[11,11,[[39,3,3,0,3,[[933,1,1,0,1],[956,2,2,1,3]]],[40,1,1,3,4,[[972,1,1,3,4]]],[42,1,1,4,5,[[1007,1,1,4,5]]],[65,6,6,5,11,[[1168,1,1,5,6],[1169,1,1,6,7],[1177,1,1,7,8],[1188,3,3,8,11]]]],[23259,24202,24203,24881,26552,30733,30757,30886,31087,31092,31100]]]]},{"k":"G5036","v":[["swift",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30285]]]]},{"k":"G5037","v":[["*",[210,192,[[39,4,4,0,4,[[950,1,1,0,1],[951,1,1,1,2],[955,1,1,2,3],[956,1,1,3,4]]],[40,1,1,4,5,[[971,1,1,4,5]]],[41,6,5,5,10,[[974,1,1,5,6],[984,1,1,6,7],[993,2,1,7,8],[994,1,1,8,9],[996,1,1,9,10]]],[42,3,3,10,13,[[998,1,1,10,11],[1000,1,1,11,12],[1002,1,1,12,13]]],[43,144,134,13,147,[[1018,4,4,13,17],[1019,10,8,17,25],[1020,1,1,25,26],[1021,3,3,26,29],[1022,5,5,29,34],[1023,3,3,34,37],[1024,1,1,37,38],[1025,9,9,38,47],[1026,7,6,47,53],[1027,6,6,53,59],[1028,3,3,59,62],[1029,3,3,62,65],[1030,4,3,65,68],[1031,4,4,68,72],[1032,5,5,72,77],[1033,6,6,77,83],[1034,7,6,83,89],[1035,4,4,89,93],[1036,8,8,93,101],[1037,5,5,101,106],[1038,8,8,106,114],[1039,4,4,114,118],[1040,4,4,118,122],[1041,6,5,122,127],[1042,3,3,127,130],[1043,9,7,130,137],[1044,10,9,137,146],[1045,2,1,146,147]]],[44,18,14,147,161,[[1046,7,6,147,153],[1047,3,3,153,156],[1048,1,1,156,157],[1052,1,1,157,158],[1055,1,1,158,159],[1059,4,1,159,160],[1061,1,1,160,161]]],[45,4,4,161,165,[[1062,3,3,161,164],[1065,1,1,164,165]]],[46,1,1,165,166,[[1087,1,1,165,166]]],[48,2,2,166,168,[[1097,1,1,166,167],[1099,1,1,167,168]]],[49,1,1,168,169,[[1103,1,1,168,169]]],[57,22,19,169,188,[[1133,1,1,169,170],[1134,2,2,170,172],[1136,2,1,172,173],[1137,3,3,173,176],[1138,5,4,176,180],[1140,1,1,180,181],[1141,4,4,181,185],[1142,1,1,185,186],[1143,2,1,186,187],[1144,1,1,187,188]]],[58,1,1,188,189,[[1148,1,1,188,189]]],[64,1,1,189,190,[[1166,1,1,189,190]]],[65,2,2,190,192,[[1167,1,1,190,191],[1187,1,1,191,192]]]],[23882,23924,24177,24207,24862,24989,25504,25837,25930,26011,26110,26198,26275,26924,26931,26936,26938,26952,26958,26959,26982,26986,26989,26992,26995,27006,27035,27049,27055,27073,27078,27083,27094,27101,27108,27113,27114,27142,27177,27179,27182,27188,27189,27201,27204,27207,27214,27218,27222,27231,27234,27240,27245,27261,27281,27287,27292,27298,27307,27320,27328,27333,27343,27345,27349,27363,27364,27366,27415,27419,27426,27435,27446,27447,27451,27474,27481,27494,27495,27496,27506,27509,27517,27527,27528,27533,27537,27542,27549,27561,27562,27568,27583,27588,27591,27595,27596,27597,27602,27603,27614,27629,27633,27637,27647,27661,27675,27676,27682,27684,27689,27692,27694,27701,27708,27711,27712,27732,27739,27744,27758,27769,27772,27774,27784,27792,27796,27812,27819,27820,27826,27833,27834,27839,27843,27845,27853,27856,27858,27860,27863,27872,27875,27876,27884,27898,27922,27942,27944,27946,27950,27956,27957,27971,27972,27981,28000,28098,28200,28288,28362,28365,28387,28393,28454,28979,29216,29270,29368,29966,29981,29988,30026,30031,30037,30044,30046,30048,30049,30063,30095,30106,30107,30114,30124,30166,30204,30214,30326,30678,30699,31065]]],["+",[23,22,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,14,14,1,15,[[1019,1,1,1,2],[1022,1,1,2,3],[1026,1,1,3,4],[1030,2,2,4,6],[1032,1,1,6,7],[1034,2,2,7,9],[1035,1,1,9,10],[1042,1,1,10,11],[1043,2,2,11,13],[1044,1,1,13,14],[1045,1,1,14,15]]],[44,4,3,15,18,[[1046,2,2,15,17],[1059,2,1,17,18]]],[46,1,1,18,19,[[1087,1,1,18,19]]],[57,3,3,19,22,[[1137,1,1,19,20],[1140,1,1,20,21],[1141,1,1,21,22]]]],[24989,26959,27083,27240,27363,27364,27451,27533,27537,27562,27819,27826,27845,27856,27922,27950,27956,28288,28979,30037,30095,30107]]],["-",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1025,1,1,1,2]]]],[26959,27204]]],["And",[55,54,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,2,2,1,3,[[993,1,1,1,2],[996,1,1,2,3]]],[42,2,2,3,5,[[1000,1,1,3,4],[1002,1,1,4,5]]],[43,45,44,5,49,[[1019,2,2,5,7],[1020,1,1,7,8],[1022,2,2,8,10],[1023,2,2,10,12],[1024,1,1,12,13],[1025,2,2,13,15],[1026,2,2,15,17],[1027,2,2,17,19],[1028,2,2,19,21],[1029,2,2,21,23],[1031,2,2,23,25],[1032,1,1,25,26],[1033,4,4,26,30],[1034,2,2,30,32],[1035,2,2,32,34],[1036,3,3,34,37],[1037,1,1,37,38],[1038,2,2,38,40],[1039,3,3,40,43],[1040,2,2,43,45],[1041,1,1,45,46],[1044,4,3,46,49]]],[44,2,2,49,51,[[1046,1,1,49,50],[1047,1,1,50,51]]],[48,1,1,51,52,[[1099,1,1,51,52]]],[64,1,1,52,53,[[1166,1,1,52,53]]],[65,1,1,53,54,[[1187,1,1,53,54]]]],[23924,25837,26011,26198,26275,26989,26995,27006,27094,27101,27113,27114,27142,27182,27207,27222,27240,27287,27307,27320,27333,27345,27349,27426,27435,27474,27495,27496,27506,27517,27542,27549,27568,27583,27588,27596,27603,27629,27694,27701,27711,27712,27732,27758,27769,27792,27858,27860,27863,27957,27981,29270,30678,31065]]],["Then",[2,2,[[43,2,2,0,2,[[1040,1,1,0,1],[1044,1,1,1,2]]]],[27739,27884]]],["also",[3,3,[[43,1,1,0,1,[[1036,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[27602,27946,30204]]],["and",[78,76,[[39,2,2,0,2,[[955,1,1,0,1],[956,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[41,3,3,3,6,[[984,1,1,3,4],[993,1,1,4,5],[994,1,1,5,6]]],[42,1,1,6,7,[[998,1,1,6,7]]],[43,56,55,7,62,[[1019,6,6,7,13],[1021,2,2,13,15],[1022,1,1,15,16],[1023,1,1,16,17],[1025,4,4,17,21],[1026,3,3,21,24],[1027,2,2,24,26],[1028,1,1,26,27],[1029,1,1,27,28],[1030,2,2,28,30],[1032,3,3,30,33],[1033,2,2,33,35],[1034,3,2,35,37],[1035,1,1,37,38],[1036,3,3,38,41],[1037,3,3,41,44],[1038,4,4,44,48],[1040,1,1,48,49],[1041,3,3,49,52],[1042,1,1,52,53],[1043,5,5,53,58],[1044,4,4,58,62]]],[44,2,2,62,64,[[1059,1,1,62,63],[1061,1,1,63,64]]],[45,2,2,64,66,[[1062,1,1,64,65],[1065,1,1,65,66]]],[57,9,8,66,74,[[1133,1,1,66,67],[1136,1,1,67,68],[1138,4,3,68,71],[1141,1,1,71,72],[1143,1,1,72,73],[1144,1,1,73,74]]],[58,1,1,74,75,[[1148,1,1,74,75]]],[65,1,1,75,76,[[1167,1,1,75,76]]]],[24177,24207,24862,25504,25837,25930,26110,26952,26958,26982,26986,26992,26995,27035,27055,27078,27108,27177,27179,27189,27201,27231,27234,27245,27281,27292,27328,27343,27363,27366,27446,27447,27481,27494,27509,27527,27528,27561,27591,27597,27614,27633,27637,27661,27675,27682,27684,27692,27744,27774,27792,27796,27812,27833,27834,27839,27843,27853,27872,27875,27876,27898,28288,28362,28393,28454,29966,30026,30046,30048,30049,30106,30204,30214,30326,30699]]],["between",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28200]]],["both",[36,35,[[39,1,1,0,1,[[950,1,1,0,1]]],[43,19,19,1,20,[[1018,3,3,1,4],[1021,1,1,4,5],[1022,1,1,5,6],[1025,2,2,6,8],[1027,1,1,8,9],[1031,2,2,9,11],[1036,1,1,11,12],[1037,1,1,12,13],[1038,1,1,13,14],[1039,1,1,14,15],[1041,1,1,15,16],[1042,1,1,16,17],[1043,2,2,17,19],[1045,1,1,19,20]]],[44,4,3,20,23,[[1046,3,2,20,22],[1048,1,1,22,23]]],[45,2,2,23,25,[[1062,2,2,23,25]]],[48,1,1,25,26,[[1097,1,1,25,26]]],[49,1,1,26,27,[[1103,1,1,26,27]]],[57,8,8,27,35,[[1134,2,2,27,29],[1137,2,2,29,31],[1138,1,1,31,32],[1141,2,2,32,34],[1142,1,1,34,35]]]],[23882,26924,26931,26936,27049,27073,27188,27214,27298,27415,27419,27595,27647,27676,27708,27784,27820,27839,27845,27922,27942,27944,28000,28365,28387,29216,29368,29981,29988,30031,30044,30063,30114,30124,30166]]],["from",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27689]]],["had",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28098]]],["it",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27772]]],["of",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30026]]],["the",[3,3,[[43,1,1,0,1,[[1018,1,1,0,1]]],[44,2,2,1,3,[[1047,2,2,1,3]]]],[26938,27971,27972]]],["we",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28288]]],["whether",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27218]]],["which",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27261]]]]},{"k":"G5038","v":[["*",[9,9,[[43,1,1,0,1,[[1026,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]],[65,6,6,3,9,[[1187,6,6,3,9]]]],[27241,29022,30202,31065,31067,31068,31070,31071,31072]]],["wall",[8,8,[[43,1,1,0,1,[[1026,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[65,6,6,2,8,[[1187,6,6,2,8]]]],[27241,29022,31065,31067,31068,31070,31071,31072]]],["walls",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30202]]]]},{"k":"G5039","v":[["proofs",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26926]]]]},{"k":"G5040","v":[["children",[9,9,[[42,1,1,0,1,[[1009,1,1,0,1]]],[47,1,1,1,2,[[1094,1,1,1,2]]],[61,7,7,2,9,[[1160,3,3,2,5],[1161,2,2,5,7],[1162,1,1,7,8],[1163,1,1,8,9]]]],[26663,29150,30551,30562,30578,30586,30597,30607,30645]]]]},{"k":"G5041","v":[["children",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29777]]]]},{"k":"G5042","v":[["childbearing",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29731]]]]},{"k":"G5043","v":[["*",[99,91,[[39,15,13,0,13,[[930,1,1,0,1],[931,1,1,1,2],[935,1,1,2,3],[937,1,1,3,4],[938,2,1,4,5],[939,1,1,5,6],[943,1,1,6,7],[946,1,1,7,8],[947,1,1,8,9],[949,2,1,9,10],[950,1,1,10,11],[951,1,1,11,12],[955,1,1,12,13]]],[40,9,7,13,20,[[958,1,1,13,14],[963,2,1,14,15],[966,3,3,15,18],[968,1,1,18,19],[969,2,1,19,20]]],[41,14,14,20,34,[[973,2,2,20,22],[974,1,1,22,23],[975,1,1,23,24],[979,1,1,24,25],[983,1,1,25,26],[985,1,1,26,27],[986,1,1,27,28],[987,1,1,28,29],[988,1,1,29,30],[990,1,1,30,31],[991,1,1,31,32],[992,1,1,32,33],[995,1,1,33,34]]],[42,3,3,34,37,[[997,1,1,34,35],[1004,1,1,35,36],[1007,1,1,36,37]]],[43,5,5,37,42,[[1019,1,1,37,38],[1024,1,1,38,39],[1030,1,1,39,40],[1038,2,2,40,42]]],[44,7,5,42,47,[[1053,3,3,42,45],[1054,4,2,45,47]]],[45,3,3,47,50,[[1065,2,2,47,49],[1068,1,1,49,50]]],[46,3,2,50,52,[[1083,1,1,50,51],[1089,2,1,51,52]]],[47,4,4,52,56,[[1094,4,4,52,56]]],[48,5,5,56,61,[[1098,1,1,56,57],[1101,2,2,57,59],[1102,2,2,59,61]]],[49,2,2,61,63,[[1104,2,2,61,63]]],[50,2,2,63,65,[[1109,2,2,63,65]]],[51,2,2,65,67,[[1112,2,2,65,67]]],[53,5,5,67,72,[[1119,2,2,67,69],[1121,2,2,69,71],[1123,1,1,71,72]]],[54,2,2,72,74,[[1125,1,1,72,73],[1126,1,1,73,74]]],[55,2,2,74,76,[[1129,2,2,74,76]]],[56,1,1,76,77,[[1132,1,1,76,77]]],[59,2,2,77,79,[[1151,1,1,77,78],[1153,1,1,78,79]]],[60,1,1,79,80,[[1157,1,1,79,80]]],[61,5,4,80,84,[[1161,4,3,80,83],[1163,1,1,83,84]]],[62,3,3,84,87,[[1164,3,3,84,87]]],[63,1,1,87,88,[[1165,1,1,87,88]]],[65,3,3,88,91,[[1168,1,1,88,89],[1178,2,2,89,91]]]],[23187,23201,23327,23381,23438,23478,23659,23752,23791,23854,23896,23955,24154,24265,24490,24612,24617,24618,24692,24729,24900,24910,25021,25033,25230,25418,25552,25579,25619,25645,25717,25775,25810,25963,26056,26420,26575,26988,27121,27395,27669,27685,28132,28133,28137,28162,28163,28447,28450,28501,28911,29036,29156,29158,29159,29162,29232,29305,29312,29338,29341,29406,29413,29537,29538,29577,29581,29698,29714,29735,29743,29767,29811,29828,29896,29898,29948,30388,30430,30514,30580,30581,30589,30626,30646,30649,30658,30662,30740,30895,30896]]],["+",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]]],[23955,25552,29341]]],["Children",[3,3,[[40,1,1,0,1,[[966,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]]],[24612,29338,29537]]],["Son",[6,6,[[39,2,2,0,2,[[937,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[958,1,1,2,3]]],[41,3,3,3,6,[[974,1,1,3,4],[987,1,1,4,5],[988,1,1,5,6]]]],[23381,23854,24265,25021,25619,25645]]],["child",[5,5,[[39,1,1,0,1,[[938,1,1,0,1]]],[41,1,1,1,2,[[973,1,1,1,2]]],[43,1,1,2,3,[[1024,1,1,2,3]]],[65,2,2,3,5,[[1178,2,2,3,5]]]],[23438,24900,27121,30895,30896]]],["children",[64,60,[[39,9,9,0,9,[[930,1,1,0,1],[931,1,1,1,2],[935,1,1,2,3],[938,1,1,3,4],[939,1,1,4,5],[946,1,1,5,6],[947,1,1,6,7],[950,1,1,7,8],[955,1,1,8,9]]],[40,5,5,9,14,[[963,1,1,9,10],[966,2,2,10,12],[968,1,1,12,13],[969,1,1,13,14]]],[41,9,9,14,23,[[973,1,1,14,15],[975,1,1,15,16],[979,1,1,16,17],[983,1,1,17,18],[986,1,1,18,19],[990,1,1,19,20],[991,1,1,20,21],[992,1,1,21,22],[995,1,1,22,23]]],[42,2,2,23,25,[[1004,1,1,23,24],[1007,1,1,24,25]]],[43,4,4,25,29,[[1019,1,1,25,26],[1030,1,1,26,27],[1038,2,2,27,29]]],[44,7,5,29,34,[[1053,3,3,29,32],[1054,4,2,32,34]]],[45,1,1,34,35,[[1068,1,1,34,35]]],[46,3,2,35,37,[[1083,1,1,35,36],[1089,2,1,36,37]]],[47,4,4,37,41,[[1094,4,4,37,41]]],[48,3,3,41,44,[[1098,1,1,41,42],[1101,2,2,42,44]]],[50,1,1,44,45,[[1109,1,1,44,45]]],[51,2,2,45,47,[[1112,2,2,45,47]]],[53,3,3,47,50,[[1121,2,2,47,49],[1123,1,1,49,50]]],[55,1,1,50,51,[[1129,1,1,50,51]]],[59,1,1,51,52,[[1151,1,1,51,52]]],[60,1,1,52,53,[[1157,1,1,52,53]]],[61,3,2,53,55,[[1161,2,1,53,54],[1163,1,1,54,55]]],[62,3,3,55,58,[[1164,3,3,55,58]]],[63,1,1,58,59,[[1165,1,1,58,59]]],[65,1,1,59,60,[[1168,1,1,59,60]]]],[23187,23201,23327,23438,23478,23752,23791,23896,24154,24490,24617,24618,24692,24729,24910,25033,25230,25418,25579,25717,25775,25810,25963,26420,26575,26988,27395,27669,27685,28132,28133,28137,28162,28163,28501,28911,29036,29156,29158,29159,29162,29232,29305,29312,29538,29577,29581,29735,29743,29767,29898,30388,30514,30589,30626,30646,30649,30658,30662,30740]]],["children's",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]]],[23659,24490]]],["daughters",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30430]]],["son",[9,9,[[40,1,1,0,1,[[969,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[53,2,2,3,5,[[1119,2,2,3,5]]],[54,2,2,5,7,[[1125,1,1,5,6],[1126,1,1,6,7]]],[55,1,1,7,8,[[1129,1,1,7,8]]],[56,1,1,8,9,[[1132,1,1,8,9]]]],[24729,28450,29413,29698,29714,29811,29828,29896,29948]]],["sons",[6,6,[[39,1,1,0,1,[[949,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[49,1,1,3,4,[[1104,1,1,3,4]]],[61,2,2,4,6,[[1161,2,2,4,6]]]],[23854,26056,28447,29406,30580,30581]]]]},{"k":"G5044","v":[["children",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29773]]]]},{"k":"G5045","v":[["*",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]]],[23594,24410]]],["carpenter",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24410]]],["carpenter's",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23594]]]]},{"k":"G5046","v":[["*",[19,17,[[39,3,2,0,2,[[933,2,1,0,1],[947,1,1,1,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[45,3,3,3,6,[[1063,1,1,3,4],[1074,1,1,4,5],[1075,1,1,5,6]]],[48,1,1,6,7,[[1100,1,1,6,7]]],[49,1,1,7,8,[[1105,1,1,7,8]]],[50,2,2,8,10,[[1107,1,1,8,9],[1110,1,1,9,10]]],[57,2,2,10,12,[[1137,1,1,10,11],[1141,1,1,11,12]]],[58,5,4,12,16,[[1146,4,3,12,15],[1148,1,1,15,16]]],[61,1,1,16,17,[[1162,1,1,16,17]]]],[23282,23783,28247,28400,28675,28698,29285,29436,29493,29554,30044,30116,30270,30283,30291,30321,30621]]],["age",[1,1,[[57,1,1,0,1,[[1137,1,1,0,1]]]],[30044]]],["men",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28698]]],["perfect",[17,15,[[39,3,2,0,2,[[933,2,1,0,1],[947,1,1,1,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[45,2,2,3,5,[[1063,1,1,3,4],[1074,1,1,4,5]]],[48,1,1,5,6,[[1100,1,1,5,6]]],[49,1,1,6,7,[[1105,1,1,6,7]]],[50,2,2,7,9,[[1107,1,1,7,8],[1110,1,1,8,9]]],[57,1,1,9,10,[[1141,1,1,9,10]]],[58,5,4,10,14,[[1146,4,3,10,13],[1148,1,1,13,14]]],[61,1,1,14,15,[[1162,1,1,14,15]]]],[23282,23783,28247,28400,28675,29285,29436,29493,29554,30116,30270,30283,30291,30321,30621]]]]},{"k":"G5047","v":[["*",[2,2,[[50,1,1,0,1,[[1109,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[29531,30045]]],["perfection",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30045]]],["perfectness",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29531]]]]},{"k":"G5048","v":[["*",[24,24,[[41,2,2,0,2,[[974,1,1,0,1],[985,1,1,1,2]]],[42,5,5,2,7,[[1000,1,1,2,3],[1001,1,1,3,4],[1013,2,2,4,6],[1015,1,1,6,7]]],[43,1,1,7,8,[[1037,1,1,7,8]]],[46,1,1,8,9,[[1089,1,1,8,9]]],[49,1,1,9,10,[[1105,1,1,9,10]]],[57,9,9,10,19,[[1134,1,1,10,11],[1137,1,1,11,12],[1139,2,2,12,14],[1141,1,1,14,15],[1142,2,2,15,17],[1143,1,1,17,18],[1144,1,1,18,19]]],[58,1,1,19,20,[[1147,1,1,19,20]]],[61,4,4,20,24,[[1160,1,1,20,21],[1162,3,3,21,24]]]],[25016,25550,26190,26246,26763,26782,26853,27650,29031,29433,29987,30039,30083,30092,30114,30134,30147,30212,30235,30315,30555,30615,30620,30621]]],["+",[5,5,[[49,1,1,0,1,[[1105,1,1,0,1]]],[57,4,4,1,5,[[1134,1,1,1,2],[1139,1,1,2,3],[1141,1,1,3,4],[1142,1,1,4,5]]]],[29433,29987,30083,30114,30134]]],["consecrated",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30092]]],["finish",[3,3,[[42,2,2,0,2,[[1000,1,1,0,1],[1001,1,1,1,2]]],[43,1,1,2,3,[[1037,1,1,2,3]]]],[26190,26246,27650]]],["finished",[1,1,[[42,1,1,0,1,[[1013,1,1,0,1]]]],[26763]]],["fulfilled",[2,2,[[41,1,1,0,1,[[974,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]]],[25016,26853]]],["perfect",[8,8,[[42,1,1,0,1,[[1013,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]],[57,3,3,2,5,[[1137,1,1,2,3],[1143,1,1,3,4],[1144,1,1,4,5]]],[58,1,1,5,6,[[1147,1,1,5,6]]],[61,2,2,6,8,[[1162,2,2,6,8]]]],[26782,29031,30039,30212,30235,30315,30620,30621]]],["perfected",[4,4,[[41,1,1,0,1,[[985,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]],[61,2,2,2,4,[[1160,1,1,2,3],[1162,1,1,3,4]]]],[25550,30147,30555,30615]]]]},{"k":"G5049","v":[["end",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30387]]]]},{"k":"G5050","v":[["*",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[57,1,1,1,2,[[1139,1,1,1,2]]]],[24938,30075]]],["perfection",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30075]]],["performance",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24938]]]]},{"k":"G5051","v":[["finisher",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30214]]]]},{"k":"G5052","v":[["+",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25259]]]]},{"k":"G5053","v":[["*",[12,12,[[39,4,4,0,4,[[930,1,1,0,1],[937,1,1,1,2],[943,1,1,2,3],[950,1,1,3,4]]],[40,4,4,4,8,[[963,1,1,4,5],[965,3,3,5,8]]],[41,1,1,8,9,[[979,1,1,8,9]]],[43,2,2,9,11,[[1019,1,1,9,10],[1024,1,1,10,11]]],[57,1,1,11,12,[[1143,1,1,11,12]]]],[23188,23397,23637,23897,24473,24582,24584,24586,25197,26978,27131,30194]]],["+",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[23397,26978]]],["dead",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23188]]],["deceased",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23897]]],["die",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,1,1,2,3,[[979,1,1,2,3]]]],[23637,24473,25197]]],["died",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[27131,30194]]],["dieth",[3,3,[[40,3,3,0,3,[[965,3,3,0,3]]]],[24582,24584,24586]]]]},{"k":"G5054","v":[["death",[1,1,[[39,1,1,0,1,[[930,1,1,0,1]]]],[23184]]]]},{"k":"G5055","v":[["*",[26,26,[[39,6,6,0,6,[[938,1,1,0,1],[939,1,1,1,2],[941,1,1,2,3],[945,1,1,3,4],[947,1,1,4,5],[954,1,1,5,6]]],[41,4,4,6,10,[[974,1,1,6,7],[984,1,1,7,8],[990,1,1,8,9],[994,1,1,9,10]]],[42,2,2,10,12,[[1015,2,2,10,12]]],[43,1,1,12,13,[[1030,1,1,12,13]]],[44,2,2,13,15,[[1047,1,1,13,14],[1058,1,1,14,15]]],[47,1,1,15,16,[[1095,1,1,15,16]]],[54,1,1,16,17,[[1128,1,1,16,17]]],[58,1,1,17,18,[[1147,1,1,17,18]]],[65,8,8,18,26,[[1176,1,1,18,19],[1177,1,1,19,20],[1181,2,2,20,22],[1183,1,1,22,23],[1186,3,3,23,26]]]],[23440,23460,23592,23724,23763,24055,25012,25509,25719,25901,26853,26855,27391,27989,28272,29178,29877,30301,30868,30879,30947,30954,30992,31041,31043,31045]]],["accomplished",[4,4,[[41,3,3,0,3,[[984,1,1,0,1],[990,1,1,1,2],[994,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]]],[25509,25719,25901,26853]]],["end",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23460]]],["expired",[1,1,[[65,1,1,0,1,[[1186,1,1,0,1]]]],[31045]]],["finished",[8,8,[[39,3,3,0,3,[[941,1,1,0,1],[947,1,1,1,2],[954,1,1,2,3]]],[42,1,1,3,4,[[1015,1,1,3,4]]],[54,1,1,4,5,[[1128,1,1,4,5]]],[65,3,3,5,8,[[1176,1,1,5,6],[1177,1,1,6,7],[1186,1,1,7,8]]]],[23592,23763,24055,26855,29877,30868,30879,31043]]],["fulfil",[3,3,[[44,1,1,0,1,[[1047,1,1,0,1]]],[47,1,1,1,2,[[1095,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[27989,29178,30301]]],["fulfilled",[4,4,[[43,1,1,0,1,[[1030,1,1,0,1]]],[65,3,3,1,4,[[1181,1,1,1,2],[1183,1,1,2,3],[1186,1,1,3,4]]]],[27391,30954,30992,31041]]],["over",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23440]]],["pay",[2,2,[[39,1,1,0,1,[[945,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]]],[23724,28272]]],["performed",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25012]]],["up",[1,1,[[65,1,1,0,1,[[1181,1,1,0,1]]]],[30947]]]]},{"k":"G5056","v":[["*",[42,41,[[39,6,6,0,6,[[938,1,1,0,1],[945,1,1,1,2],[952,3,3,2,5],[954,1,1,5,6]]],[40,3,3,6,9,[[959,1,1,6,7],[969,2,2,7,9]]],[41,4,4,9,13,[[973,1,1,9,10],[990,1,1,10,11],[993,1,1,11,12],[994,1,1,12,13]]],[42,1,1,13,14,[[1009,1,1,13,14]]],[44,5,4,14,18,[[1051,2,2,14,16],[1055,1,1,16,17],[1058,2,1,17,18]]],[45,3,3,18,21,[[1062,1,1,18,19],[1071,1,1,19,20],[1076,1,1,20,21]]],[46,3,3,21,24,[[1078,1,1,21,22],[1080,1,1,22,23],[1088,1,1,23,24]]],[49,1,1,24,25,[[1105,1,1,24,25]]],[51,1,1,25,26,[[1112,1,1,25,26]]],[53,1,1,26,27,[[1119,1,1,26,27]]],[57,5,5,27,32,[[1135,2,2,27,29],[1138,2,2,29,31],[1139,1,1,31,32]]],[58,1,1,32,33,[[1150,1,1,32,33]]],[59,4,4,33,37,[[1151,1,1,33,34],[1153,1,1,34,35],[1154,2,2,35,37]]],[65,4,4,37,41,[[1167,1,1,37,38],[1168,1,1,38,39],[1187,1,1,39,40],[1188,1,1,40,41]]]],[23439,23725,23963,23970,23971,24112,24314,24724,24730,24926,25693,25835,25901,26631,28089,28090,28192,28273,28371,28578,28742,28813,28854,29004,29440,29586,29701,30001,30009,30052,30055,30067,30365,30383,30432,30453,30463,30705,30743,31059,31093]]],["+",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25693]]],["Finally",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30432]]],["custom",[3,2,[[39,1,1,0,1,[[945,1,1,0,1]]],[44,2,1,1,2,[[1058,2,1,1,2]]]],[23725,28273]]],["end",[34,34,[[39,5,5,0,5,[[938,1,1,0,1],[952,3,3,1,4],[954,1,1,4,5]]],[40,3,3,5,8,[[959,1,1,5,6],[969,2,2,6,8]]],[41,3,3,8,11,[[973,1,1,8,9],[993,1,1,9,10],[994,1,1,10,11]]],[42,1,1,11,12,[[1009,1,1,11,12]]],[44,3,3,12,15,[[1051,2,2,12,14],[1055,1,1,14,15]]],[45,2,2,15,17,[[1062,1,1,15,16],[1076,1,1,16,17]]],[46,3,3,17,20,[[1078,1,1,17,18],[1080,1,1,18,19],[1088,1,1,19,20]]],[49,1,1,20,21,[[1105,1,1,20,21]]],[53,1,1,21,22,[[1119,1,1,21,22]]],[57,5,5,22,27,[[1135,2,2,22,24],[1138,2,2,24,26],[1139,1,1,26,27]]],[58,1,1,27,28,[[1150,1,1,27,28]]],[59,3,3,28,31,[[1151,1,1,28,29],[1154,2,2,29,31]]],[65,3,3,31,34,[[1168,1,1,31,32],[1187,1,1,32,33],[1188,1,1,33,34]]]],[23439,23963,23970,23971,24112,24314,24724,24730,24926,25835,25901,26631,28089,28090,28192,28371,28742,28813,28854,29004,29440,29701,30001,30009,30052,30055,30067,30365,30383,30453,30463,30743,31059,31093]]],["ending",[1,1,[[65,1,1,0,1,[[1167,1,1,0,1]]]],[30705]]],["ends",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28578]]],["uttermost",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29586]]]]},{"k":"G5057","v":[["*",[22,21,[[39,9,9,0,9,[[933,2,2,0,2],[937,2,2,2,4],[938,1,1,4,5],[939,1,1,5,6],[946,1,1,6,7],[949,2,2,7,9]]],[40,3,2,9,11,[[958,3,2,9,11]]],[41,10,10,11,21,[[975,1,1,11,12],[977,3,3,12,15],[979,2,2,15,17],[987,1,1,17,18],[990,3,3,18,21]]]],[23280,23281,23389,23390,23420,23478,23744,23857,23858,24275,24276,25037,25134,25136,25137,25224,25229,25589,25698,25699,25701]]],["publican",[6,6,[[39,2,2,0,2,[[938,1,1,0,1],[946,1,1,1,2]]],[41,4,4,2,6,[[977,1,1,2,3],[990,3,3,3,6]]]],[23420,23744,25134,25698,25699,25701]]],["publicans",[16,15,[[39,7,7,0,7,[[933,2,2,0,2],[937,2,2,2,4],[939,1,1,4,5],[949,2,2,5,7]]],[40,3,2,7,9,[[958,3,2,7,9]]],[41,6,6,9,15,[[975,1,1,9,10],[977,2,2,10,12],[979,2,2,12,14],[987,1,1,14,15]]]],[23280,23281,23389,23390,23478,23857,23858,24275,24276,25037,25136,25137,25224,25229,25589]]]]},{"k":"G5058","v":[["custom",[3,3,[[39,1,1,0,1,[[937,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,1,1,2,3,[[977,1,1,2,3]]]],[23388,24274,25134]]]]},{"k":"G5059","v":[["wonders",[16,16,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[42,1,1,2,3,[[1000,1,1,2,3]]],[43,9,9,3,12,[[1019,3,3,3,6],[1021,1,1,6,7],[1022,1,1,7,8],[1023,1,1,8,9],[1024,1,1,9,10],[1031,1,1,10,11],[1032,1,1,11,12]]],[44,1,1,12,13,[[1060,1,1,12,13]]],[46,1,1,13,14,[[1089,1,1,13,14]]],[52,1,1,14,15,[[1117,1,1,14,15]]],[57,1,1,15,16,[[1134,1,1,15,16]]]],[23981,24739,26204,26968,26971,26992,27052,27071,27109,27152,27417,27454,28322,29034,29670,29981]]]]},{"k":"G5060","v":[["Tertius",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28358]]]]},{"k":"G5061","v":[["Tertullus",[2,2,[[43,2,2,0,2,[[1041,2,2,0,2]]]],[27770,27771]]]]},{"k":"G5062","v":[["*",[22,21,[[39,2,1,0,1,[[932,2,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]],[42,1,1,3,4,[[998,1,1,3,4]]],[43,8,8,4,12,[[1018,1,1,4,5],[1021,1,1,5,6],[1024,3,3,6,9],[1030,1,1,9,10],[1040,2,2,10,12]]],[46,1,1,12,13,[[1088,1,1,12,13]]],[57,2,2,13,15,[[1135,2,2,13,15]]],[65,6,6,15,21,[[1173,1,1,15,16],[1177,1,1,16,17],[1179,1,1,17,18],[1180,2,2,18,20],[1187,1,1,20,21]]]],[23211,24228,25065,26115,26926,27044,27146,27152,27158,27383,27747,27755,29013,30004,30012,30814,30874,30913,30927,30929,31070]]],["+",[7,7,[[42,1,1,0,1,[[998,1,1,0,1]]],[65,6,6,1,7,[[1173,1,1,1,2],[1177,1,1,2,3],[1179,1,1,3,4],[1180,2,2,4,6],[1187,1,1,6,7]]]],[26115,30814,30874,30913,30927,30929,31070]]],["forty",[15,14,[[39,2,1,0,1,[[932,2,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]],[43,8,8,3,11,[[1018,1,1,3,4],[1021,1,1,4,5],[1024,3,3,5,8],[1030,1,1,8,9],[1040,2,2,9,11]]],[46,1,1,11,12,[[1088,1,1,11,12]]],[57,2,2,12,14,[[1135,2,2,12,14]]]],[23211,24228,25065,26926,27044,27146,27152,27158,27383,27747,27755,29013,30004,30012]]]]},{"k":"G5063","v":[["*",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1030,1,1,1,2]]]],[27139,27380]]],["forty",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27139]]],["years",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27380]]]]},{"k":"G5064","v":[["*",[42,35,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[969,1,1,2,3]]],[41,1,1,3,4,[[974,1,1,3,4]]],[42,2,2,4,6,[[1007,1,1,4,5],[1015,1,1,5,6]]],[43,6,6,6,12,[[1027,1,1,6,7],[1028,1,1,7,8],[1029,1,1,8,9],[1038,2,2,9,11],[1044,1,1,11,12]]],[65,30,23,12,35,[[1170,5,4,12,16],[1171,5,3,16,19],[1172,2,2,19,21],[1173,6,4,21,25],[1175,3,3,25,28],[1177,1,1,28,29],[1180,3,2,29,31],[1181,1,1,31,32],[1185,2,1,32,33],[1186,1,1,33,34],[1187,1,1,34,35]]]],[23988,24263,24744,25010,26540,26848,27270,27312,27341,27673,27687,27884,30772,30774,30776,30778,30785,30787,30793,30794,30799,30811,30812,30814,30821,30853,30854,30855,30888,30927,30929,30953,31021,31046,31070]]],["+",[12,11,[[41,1,1,0,1,[[974,1,1,0,1]]],[65,11,10,1,11,[[1170,3,2,1,3],[1171,2,2,3,5],[1173,1,1,5,6],[1177,1,1,6,7],[1180,2,2,7,9],[1185,1,1,9,10],[1187,1,1,10,11]]]],[25010,30772,30778,30787,30793,30814,30888,30927,30929,31021,31070]]],["four",[30,28,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,2,2,1,3,[[958,1,1,1,2],[969,1,1,2,3]]],[42,2,2,3,5,[[1007,1,1,3,4],[1015,1,1,4,5]]],[43,6,6,5,11,[[1027,1,1,5,6],[1028,1,1,6,7],[1029,1,1,7,8],[1038,2,2,8,10],[1044,1,1,10,11]]],[65,19,17,11,28,[[1170,2,2,11,13],[1171,3,3,13,16],[1172,2,2,16,18],[1173,5,3,18,21],[1175,3,3,21,24],[1180,1,1,24,25],[1181,1,1,25,26],[1185,1,1,26,27],[1186,1,1,27,28]]]],[23988,24263,24744,26540,26848,27270,27312,27341,27673,27687,27884,30774,30776,30785,30787,30793,30794,30799,30811,30812,30821,30853,30854,30855,30929,30953,31021,31046]]]]},{"k":"G5065","v":[["fourteenth",[2,2,[[43,2,2,0,2,[[1044,2,2,0,2]]]],[27882,27888]]]]},{"k":"G5066","v":[["days",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26562]]]]},{"k":"G5067","v":[["*",[10,9,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]],[65,7,6,3,9,[[1170,1,1,3,4],[1172,3,2,4,6],[1174,1,1,6,7],[1182,1,1,7,8],[1187,1,1,8,9]]]],[23622,24455,27289,30775,30800,30801,30839,30962,31072]]],["Four",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27289]]],["fourth",[8,7,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[65,6,5,2,7,[[1170,1,1,2,3],[1172,2,1,3,4],[1174,1,1,4,5],[1182,1,1,5,6],[1187,1,1,6,7]]]],[23622,24455,30775,30800,30839,30962,31072]]],["part",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30801]]]]},{"k":"G5068","v":[["foursquare",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31069]]]]},{"k":"G5069","v":[["quaternions",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27341]]]]},{"k":"G5070","v":[["thousand",[5,5,[[39,2,2,0,2,[[943,1,1,0,1],[944,1,1,1,2]]],[40,2,2,2,4,[[964,2,2,2,4]]],[43,1,1,4,5,[[1038,1,1,4,5]]]],[23671,23682,24509,24520,27702]]]]},{"k":"G5071","v":[["hundred",[4,4,[[43,3,3,0,3,[[1022,1,1,0,1],[1024,1,1,1,2],[1030,1,1,2,3]]],[47,1,1,3,4,[[1093,1,1,3,4]]]],[27095,27122,27382,29119]]]]},{"k":"G5072","v":[["months",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26191]]]]},{"k":"G5073","v":[["fourfold",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25739]]]]},{"k":"G5074","v":[["beasts",[3,3,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]]],[27271,27313,27953]]]]},{"k":"G5075","v":[["tetrarch",[3,1,[[41,3,1,0,1,[[975,3,1,0,1]]]],[25026]]]]},{"k":"G5076","v":[["tetrarch",[4,4,[[39,1,1,0,1,[[942,1,1,0,1]]],[41,2,2,1,3,[[975,1,1,1,2],[981,1,1,2,3]]],[43,1,1,3,4,[[1030,1,1,3,4]]]],[23598,25044,25308,27363]]]]},{"k":"G5077","v":[["+",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30506]]]]},{"k":"G5078","v":[["*",[3,3,[[43,2,2,0,2,[[1034,1,1,0,1],[1035,1,1,1,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[27552,27560,31015]]],["art",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27552]]],["craft",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31015]]],["occupation",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27560]]]]},{"k":"G5079","v":[["*",[4,4,[[43,2,2,0,2,[[1036,2,2,0,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]],[65,1,1,3,4,[[1184,1,1,3,4]]]],[27609,27623,30182,31015]]],["builder",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30182]]],["craftsman",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31015]]],["craftsmen",[2,2,[[43,2,2,0,2,[[1036,2,2,0,2]]]],[27609,27623]]]]},{"k":"G5080","v":[["melt",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30534]]]]},{"k":"G5081","v":[["clearly",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24525]]]]},{"k":"G5082","v":[["*",[4,4,[[46,1,1,0,1,[[1078,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]],[58,1,1,2,3,[[1148,1,1,2,3]]],[65,1,1,3,4,[[1182,1,1,3,4]]]],[28810,29980,30323,30972]]],["great",[3,3,[[46,1,1,0,1,[[1078,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]],[58,1,1,2,3,[[1148,1,1,2,3]]]],[28810,29980,30323]]],["mighty",[1,1,[[65,1,1,0,1,[[1182,1,1,0,1]]]],[30972]]]]},{"k":"G5083","v":[["*",[75,68,[[39,7,6,0,6,[[947,1,1,0,1],[951,2,1,1,2],[955,2,2,2,4],[956,2,2,4,6]]],[40,1,1,6,7,[[963,1,1,6,7]]],[42,18,16,7,23,[[998,1,1,7,8],[1004,3,3,8,11],[1005,1,1,11,12],[1008,1,1,12,13],[1010,4,4,13,17],[1011,4,2,17,19],[1013,4,4,19,23]]],[43,10,9,23,32,[[1029,2,2,23,25],[1032,2,2,25,27],[1033,1,1,27,28],[1038,1,1,28,29],[1041,1,1,29,30],[1042,3,2,30,32]]],[45,1,1,32,33,[[1068,1,1,32,33]]],[46,2,1,33,34,[[1088,2,1,33,34]]],[48,1,1,34,35,[[1100,1,1,34,35]]],[51,1,1,35,36,[[1115,1,1,35,36]]],[53,2,2,36,38,[[1123,1,1,36,37],[1124,1,1,37,38]]],[54,1,1,38,39,[[1128,1,1,38,39]]],[58,2,2,39,41,[[1146,1,1,39,40],[1147,1,1,40,41]]],[59,1,1,41,42,[[1151,1,1,41,42]]],[60,4,4,42,46,[[1157,3,3,42,45],[1158,1,1,45,46]]],[61,8,8,46,54,[[1160,3,3,46,49],[1161,2,2,49,51],[1163,3,3,51,54]]],[64,5,4,54,58,[[1166,5,4,54,58]]],[65,11,10,58,68,[[1167,1,1,58,59],[1168,1,1,59,60],[1169,4,3,60,63],[1178,1,1,63,64],[1180,1,1,64,65],[1182,1,1,65,66],[1188,2,2,66,68]]]],[23779,23921,24165,24183,24199,24215,24472,26105,26432,26433,26436,26456,26587,26683,26689,26691,26692,26709,26719,26765,26770,26771,26774,27342,27343,27447,27466,27506,27689,27792,27800,27817,28524,28998,29275,29644,29785,29802,29877,30293,30303,30378,30504,30509,30517,30529,30553,30554,30555,30601,30603,30626,30627,30642,30673,30678,30685,30693,30700,30743,30749,30754,30756,30908,30938,30969,31087,31089]]],["Keep",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30693]]],["fast",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30749]]],["keep",[31,31,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[42,9,9,2,11,[[1004,3,3,2,5],[1010,2,2,5,7],[1011,2,2,7,9],[1013,2,2,9,11]]],[43,4,4,11,15,[[1032,2,2,11,13],[1033,1,1,13,14],[1041,1,1,14,15]]],[45,1,1,15,16,[[1068,1,1,15,16]]],[46,1,1,16,17,[[1088,1,1,16,17]]],[48,1,1,17,18,[[1100,1,1,17,18]]],[53,2,2,18,20,[[1123,1,1,18,19],[1124,1,1,19,20]]],[58,2,2,20,22,[[1146,1,1,20,21],[1147,1,1,21,22]]],[61,4,4,22,26,[[1160,1,1,22,23],[1161,1,1,23,24],[1163,2,2,24,26]]],[65,5,5,26,31,[[1167,1,1,26,27],[1169,1,1,27,28],[1178,1,1,28,29],[1180,1,1,29,30],[1188,1,1,30,31]]]],[23779,24472,26432,26433,26436,26683,26691,26709,26719,26770,26774,27447,27466,27506,27792,28524,28998,29275,29785,29802,30293,30303,30553,30601,30626,30627,30700,30756,30908,30938,31089]]],["keepers",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24199]]],["keepeth",[10,10,[[42,3,3,0,3,[[1005,1,1,0,1],[1010,2,2,1,3]]],[61,4,4,3,7,[[1160,2,2,3,5],[1161,1,1,5,6],[1163,1,1,6,7]]],[65,3,3,7,10,[[1168,1,1,7,8],[1182,1,1,8,9],[1188,1,1,9,10]]]],[26456,26689,26692,30554,30555,30603,30642,30743,30969,31087]]],["kept",[15,15,[[42,6,6,0,6,[[998,1,1,0,1],[1008,1,1,1,2],[1011,2,2,2,4],[1013,2,2,4,6]]],[43,4,4,6,10,[[1029,2,2,6,8],[1042,2,2,8,10]]],[46,1,1,10,11,[[1088,1,1,10,11]]],[54,1,1,11,12,[[1128,1,1,11,12]]],[64,1,1,12,13,[[1166,1,1,12,13]]],[65,2,2,13,15,[[1169,2,2,13,15]]]],[26105,26587,26709,26719,26765,26771,27342,27343,27800,27817,28998,29877,30678,30754,30756]]],["observe",[4,3,[[39,3,2,0,2,[[951,2,1,0,1],[956,1,1,1,2]]],[43,1,1,2,3,[[1038,1,1,2,3]]]],[23921,24215,27689]]],["preserved",[2,2,[[51,1,1,0,1,[[1115,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[29644,30673]]],["reserve",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30509]]],["reserved",[7,7,[[43,1,1,0,1,[[1042,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]],[60,3,3,2,5,[[1157,2,2,2,4],[1158,1,1,4,5]]],[64,2,2,5,7,[[1166,2,2,5,7]]]],[27817,30378,30504,30517,30529,30678,30685]]],["watched",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24165]]],["watching",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24183]]]]},{"k":"G5084","v":[["*",[3,3,[[43,2,2,0,2,[[1021,1,1,0,1],[1022,1,1,1,2]]],[45,1,1,2,3,[[1068,1,1,2,3]]]],[27025,27077,28506]]],["hold",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27025]]],["keeping",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28506]]],["prison",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27077]]]]},{"k":"G5085","v":[["Tiberias",[3,3,[[42,3,3,0,3,[[1002,2,2,0,2],[1017,1,1,2,3]]]],[26258,26280,26899]]]]},{"k":"G5086","v":[["Tiberius",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25026]]]]},{"k":"G5087","v":[["*",[96,94,[[39,6,6,0,6,[[933,1,1,0,1],[940,1,1,1,2],[942,1,1,2,3],[950,1,1,3,4],[952,1,1,4,5],[955,1,1,5,6]]],[40,8,8,6,14,[[960,1,1,6,7],[962,2,2,7,9],[966,1,1,9,10],[968,1,1,10,11],[971,2,2,11,13],[972,1,1,13,14]]],[41,15,15,14,29,[[973,1,1,14,15],[977,1,1,15,16],[978,1,1,16,17],[980,1,1,17,18],[981,1,1,18,19],[983,1,1,19,20],[984,1,1,20,21],[986,1,1,21,22],[991,2,2,22,24],[992,1,1,24,25],[993,1,1,25,26],[994,1,1,26,27],[995,2,2,27,29]]],[42,18,17,29,46,[[998,1,1,29,30],[1006,5,4,30,34],[1007,1,1,34,35],[1009,3,3,35,38],[1011,2,2,38,40],[1015,3,3,40,43],[1016,3,3,43,46]]],[43,23,23,46,69,[[1018,1,1,46,47],[1019,1,1,47,48],[1020,1,1,48,49],[1021,3,3,49,52],[1022,5,5,52,57],[1024,2,2,57,59],[1026,2,2,59,61],[1029,1,1,61,62],[1030,2,2,62,64],[1036,1,1,64,65],[1037,2,2,65,67],[1038,1,1,67,68],[1044,1,1,68,69]]],[44,3,3,69,72,[[1049,1,1,69,70],[1054,1,1,70,71],[1059,1,1,71,72]]],[45,7,7,72,79,[[1064,2,2,72,74],[1070,1,1,74,75],[1073,2,2,75,77],[1076,1,1,77,78],[1077,1,1,78,79]]],[46,2,2,79,81,[[1080,1,1,79,80],[1082,1,1,80,81]]],[51,1,1,81,82,[[1115,1,1,81,82]]],[53,2,2,82,84,[[1119,1,1,82,83],[1120,1,1,83,84]]],[54,1,1,84,85,[[1125,1,1,84,85]]],[57,3,3,85,88,[[1133,2,2,85,87],[1142,1,1,87,88]]],[59,2,2,88,90,[[1152,2,2,88,90]]],[60,1,1,90,91,[[1157,1,1,90,91]]],[61,2,1,91,92,[[1161,2,1,91,92]]],[65,2,2,92,94,[[1176,1,1,92,93],[1177,1,1,93,94]]]],[23249,23507,23600,23916,24008,24189,24344,24436,24463,24604,24709,24845,24873,24879,24959,25125,25194,25261,25345,25438,25505,25582,25752,25753,25822,25840,25905,25988,25990,26105,26492,26496,26498,26499,26557,26634,26667,26668,26712,26715,26844,26866,26867,26869,26880,26882,26930,26984,26998,27025,27057,27059,27061,27063,27074,27077,27084,27132,27176,27253,27256,27341,27391,27409,27606,27654,27662,27669,27867,28039,28188,28293,28420,28421,28558,28652,28662,28743,28778,28854,28896,29630,29708,29723,29820,29965,29976,30146,30405,30407,30506,30595,30863,30881]]],["+",[11,10,[[41,3,3,0,3,[[991,2,2,0,2],[994,1,1,2,3]]],[42,2,1,3,4,[[1006,2,1,3,4]]],[43,6,6,4,10,[[1019,1,1,4,5],[1024,1,1,5,6],[1026,1,1,6,7],[1037,1,1,7,8],[1038,1,1,8,9],[1044,1,1,9,10]]]],[25752,25753,25905,26499,26984,27176,27256,27662,27669,27867]]],["Settle",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25840]]],["appoint",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[24008,25505]]],["appointed",[4,4,[[51,1,1,0,1,[[1115,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]],[57,1,1,2,3,[[1133,1,1,2,3]]],[59,1,1,3,4,[[1152,1,1,3,4]]]],[29630,29820,29965,30407]]],["aside",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26634]]],["bowing",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24845]]],["committed",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28896]]],["conceived",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27063]]],["down",[9,8,[[41,1,1,0,1,[[981,1,1,0,1]]],[42,5,5,1,6,[[1006,2,2,1,3],[1009,2,2,3,5],[1011,1,1,5,6]]],[43,1,1,6,7,[[1021,1,1,6,7]]],[61,2,1,7,8,[[1161,2,1,7,8]]]],[25345,26496,26498,26667,26668,26712,27057,30595]]],["forth",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26105]]],["giveth",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26492]]],["laid",[23,23,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,4,4,1,5,[[962,2,2,1,3],[971,1,1,3,4],[972,1,1,4,5]]],[41,4,4,5,9,[[978,1,1,5,6],[986,1,1,6,7],[995,2,2,7,9]]],[42,6,6,9,15,[[1007,1,1,9,10],[1015,2,2,10,12],[1016,3,3,12,15]]],[43,7,7,15,22,[[1020,1,1,15,16],[1021,1,1,16,17],[1022,2,2,17,19],[1024,1,1,19,20],[1026,1,1,20,21],[1030,1,1,21,22]]],[45,1,1,22,23,[[1064,1,1,22,23]]]],[24189,24436,24463,24873,24879,25194,25582,25988,25990,26557,26866,26867,26869,26880,26882,26998,27059,27061,27074,27132,27253,27391,28420]]],["lay",[5,5,[[41,1,1,0,1,[[977,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]],[45,2,2,2,4,[[1064,1,1,2,3],[1077,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[25125,28188,28421,28778,30405]]],["made",[3,3,[[43,1,1,0,1,[[1037,1,1,0,1]]],[44,1,1,1,2,[[1049,1,1,1,2]]],[57,1,1,2,3,[[1142,1,1,2,3]]]],[27654,28039,30146]]],["make",[5,5,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[45,1,1,3,4,[[1070,1,1,3,4]]],[57,1,1,4,5,[[1133,1,1,4,5]]]],[23916,24709,25822,28558,29976]]],["making",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30506]]],["ordained",[2,2,[[42,1,1,0,1,[[1011,1,1,0,1]]],[53,1,1,1,2,[[1120,1,1,1,2]]]],[26715,29723]]],["purposed",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27606]]],["put",[15,15,[[39,3,3,0,3,[[933,1,1,0,1],[940,1,1,1,2],[942,1,1,2,3]]],[40,2,2,3,5,[[960,1,1,3,4],[966,1,1,4,5]]],[42,1,1,5,6,[[1015,1,1,5,6]]],[43,5,5,6,11,[[1018,1,1,6,7],[1021,1,1,7,8],[1022,2,2,8,10],[1029,1,1,10,11]]],[44,1,1,11,12,[[1059,1,1,11,12]]],[45,1,1,12,13,[[1076,1,1,12,13]]],[46,1,1,13,14,[[1080,1,1,13,14]]],[65,1,1,14,15,[[1177,1,1,14,15]]]],[23249,23507,23600,24344,24604,26844,26930,27025,27077,27084,27341,28293,28743,28854,30881]]],["putteth",[2,2,[[41,2,2,0,2,[[980,1,1,0,1],[983,1,1,1,2]]]],[25261,25438]]],["putting",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29708]]],["set",[4,4,[[43,1,1,0,1,[[1030,1,1,0,1]]],[45,2,2,1,3,[[1073,2,2,1,3]]],[65,1,1,3,4,[[1176,1,1,3,4]]]],[27409,28652,28662,30863]]],["up",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24959]]]]},{"k":"G5088","v":[["*",[19,18,[[39,4,4,0,4,[[929,3,3,0,3],[930,1,1,3,4]]],[41,5,5,4,9,[[973,2,2,4,6],[974,3,3,6,9]]],[42,1,1,9,10,[[1012,1,1,9,10]]],[47,1,1,10,11,[[1094,1,1,10,11]]],[57,2,2,11,13,[[1138,1,1,11,12],[1143,1,1,12,13]]],[58,1,1,13,14,[[1146,1,1,13,14]]],[65,5,4,14,18,[[1178,5,4,14,18]]]],[23165,23167,23169,23171,24924,24950,24979,24980,24984,26747,29158,30051,30183,30281,30893,30895,30896,30904]]],["bearest",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29158]]],["born",[3,3,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[974,1,1,1,2]]],[65,1,1,2,3,[[1178,1,1,2,3]]]],[23171,24984,30895]]],["child",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30183]]],["delivered",[4,4,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]],[65,2,2,2,4,[[1178,2,2,2,4]]]],[24950,24979,30893,30895]]],["forth",[9,9,[[39,3,3,0,3,[[929,3,3,0,3]]],[41,2,2,3,5,[[973,1,1,3,4],[974,1,1,4,5]]],[57,1,1,5,6,[[1138,1,1,5,6]]],[58,1,1,6,7,[[1146,1,1,6,7]]],[65,2,2,7,9,[[1178,2,2,7,9]]]],[23165,23167,23169,24924,24980,30051,30281,30896,30904]]],["travail",[1,1,[[42,1,1,0,1,[[1012,1,1,0,1]]]],[26747]]]]},{"k":"G5089","v":[["*",[3,3,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]]],[23490,24283,25147]]],["pluck",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]]],[23490,24283]]],["plucked",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25147]]]]},{"k":"G5090","v":[["Timaeus",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24634]]]]},{"k":"G5091","v":[["*",[21,16,[[39,6,5,0,5,[[943,3,3,0,3],[947,1,1,3,4],[955,2,1,4,5]]],[40,3,3,5,8,[[963,2,2,5,7],[966,1,1,7,8]]],[41,1,1,8,9,[[990,1,1,8,9]]],[42,6,3,9,12,[[1001,4,1,9,10],[1004,1,1,10,11],[1008,1,1,11,12]]],[43,1,1,12,13,[[1045,1,1,12,13]]],[48,1,1,13,14,[[1102,1,1,13,14]]],[53,1,1,14,15,[[1123,1,1,14,15]]],[59,2,1,15,16,[[1152,2,1,15,16]]]],[23637,23639,23641,23781,24138,24469,24473,24607,25708,26233,26430,26606,27909,29339,29766,30416]]],["Honour",[9,8,[[39,2,2,0,2,[[943,1,1,0,1],[947,1,1,1,2]]],[40,2,2,2,4,[[963,1,1,2,3],[966,1,1,3,4]]],[41,1,1,4,5,[[990,1,1,4,5]]],[48,1,1,5,6,[[1102,1,1,5,6]]],[53,1,1,6,7,[[1123,1,1,6,7]]],[59,2,1,7,8,[[1152,2,1,7,8]]]],[23637,23781,24473,24607,25708,29339,29766,30416]]],["honour",[5,4,[[39,1,1,0,1,[[943,1,1,0,1]]],[42,4,3,1,4,[[1001,2,1,1,2],[1004,1,1,2,3],[1008,1,1,3,4]]]],[23639,26233,26430,26606]]],["honoureth",[4,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[42,2,1,2,3,[[1001,2,1,2,3]]]],[23641,24469,26233]]],["honours",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27909]]],["value",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24138]]],["valued",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24138]]]]},{"k":"G5092","v":[["*",[43,42,[[39,2,2,0,2,[[955,2,2,0,2]]],[42,1,1,2,3,[[1000,1,1,2,3]]],[43,6,6,3,9,[[1021,1,1,3,4],[1022,2,2,4,6],[1024,1,1,6,7],[1036,1,1,7,8],[1045,1,1,8,9]]],[44,6,5,9,14,[[1047,2,2,9,11],[1054,1,1,11,12],[1057,1,1,12,13],[1058,2,1,13,14]]],[45,4,4,14,18,[[1067,1,1,14,15],[1068,1,1,15,16],[1073,2,2,16,18]]],[50,1,1,18,19,[[1108,1,1,18,19]]],[51,1,1,19,20,[[1114,1,1,19,20]]],[53,4,4,20,24,[[1119,1,1,20,21],[1123,1,1,21,22],[1124,2,2,22,24]]],[54,2,2,24,26,[[1126,2,2,24,26]]],[57,4,4,26,30,[[1134,2,2,26,28],[1135,1,1,28,29],[1137,1,1,29,30]]],[59,3,3,30,33,[[1151,1,1,30,31],[1152,1,1,31,32],[1153,1,1,32,33]]],[60,1,1,33,34,[[1156,1,1,33,34]]],[65,8,8,34,42,[[1170,2,2,34,36],[1171,2,2,36,38],[1173,1,1,38,39],[1185,1,1,39,40],[1187,2,2,40,42]]]],[24135,24138,26200,27056,27061,27062,27132,27604,27909,27969,27972,28176,28255,28273,28487,28510,28657,28658,29517,29607,29713,29780,29789,29804,29847,29848,29984,29986,29998,30034,30381,30406,30431,30496,30777,30779,30791,30792,30822,31018,31077,31079]]],["honour",[32,31,[[42,1,1,0,1,[[1000,1,1,0,1]]],[44,6,5,1,6,[[1047,2,2,1,3],[1054,1,1,3,4],[1057,1,1,4,5],[1058,2,1,5,6]]],[45,2,2,6,8,[[1073,2,2,6,8]]],[50,1,1,8,9,[[1108,1,1,8,9]]],[51,1,1,9,10,[[1114,1,1,9,10]]],[53,4,4,10,14,[[1119,1,1,10,11],[1123,1,1,11,12],[1124,2,2,12,14]]],[54,2,2,14,16,[[1126,2,2,14,16]]],[57,4,4,16,20,[[1134,2,2,16,18],[1135,1,1,18,19],[1137,1,1,19,20]]],[59,2,2,20,22,[[1151,1,1,20,21],[1153,1,1,21,22]]],[60,1,1,22,23,[[1156,1,1,22,23]]],[65,8,8,23,31,[[1170,2,2,23,25],[1171,2,2,25,27],[1173,1,1,27,28],[1185,1,1,28,29],[1187,2,2,29,31]]]],[26200,27969,27972,28176,28255,28273,28657,28658,29517,29607,29713,29780,29789,29804,29847,29848,29984,29986,29998,30034,30381,30431,30496,30777,30779,30791,30792,30822,31018,31077,31079]]],["honoured",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27909]]],["precious",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30406]]],["price",[7,7,[[39,2,2,0,2,[[955,2,2,0,2]]],[43,3,3,2,5,[[1022,2,2,2,4],[1036,1,1,4,5]]],[45,2,2,5,7,[[1067,1,1,5,6],[1068,1,1,6,7]]]],[24135,24138,27061,27062,27604,28487,28510]]],["prices",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27056]]],["sum",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27132]]]]},{"k":"G5093","v":[["*",[14,13,[[43,2,2,0,2,[[1022,1,1,0,1],[1037,1,1,1,2]]],[45,1,1,2,3,[[1064,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]],[58,1,1,4,5,[[1150,1,1,4,5]]],[59,2,2,5,7,[[1151,2,2,5,7]]],[60,1,1,7,8,[[1156,1,1,7,8]]],[65,6,5,8,13,[[1183,1,1,8,9],[1184,3,2,9,11],[1187,2,2,11,13]]]],[27093,27650,28422,30245,30361,30381,30393,30483,30979,31005,31009,31064,31072]]],["dear",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27650]]],["honourable",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30245]]],["precious",[11,10,[[45,1,1,0,1,[[1064,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]],[59,2,2,2,4,[[1151,2,2,2,4]]],[60,1,1,4,5,[[1156,1,1,4,5]]],[65,6,5,5,10,[[1183,1,1,5,6],[1184,3,2,6,8],[1187,2,2,8,10]]]],[28422,30361,30381,30393,30483,30979,31005,31009,31064,31072]]],["reputation",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27093]]]]},{"k":"G5094","v":[["costliness",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[31012]]]]},{"k":"G5095","v":[["*",[24,24,[[43,6,6,0,6,[[1033,1,1,0,1],[1034,2,2,1,3],[1035,1,1,3,4],[1036,1,1,4,5],[1037,1,1,5,6]]],[44,1,1,6,7,[[1061,1,1,6,7]]],[45,2,2,7,9,[[1065,1,1,7,8],[1077,1,1,8,9]]],[46,2,2,9,11,[[1078,2,2,9,11]]],[49,2,2,11,13,[[1103,1,1,11,12],[1104,1,1,12,13]]],[50,1,1,13,14,[[1107,1,1,13,14]]],[51,3,3,14,17,[[1111,1,1,14,15],[1113,2,2,15,17]]],[52,1,1,17,18,[[1116,1,1,17,18]]],[53,3,3,18,21,[[1119,2,2,18,20],[1124,1,1,20,21]]],[54,1,1,21,22,[[1125,1,1,21,22]]],[56,1,1,22,23,[[1132,1,1,22,23]]],[57,1,1,23,24,[[1145,1,1,23,24]]]],[27484,27537,27538,27562,27607,27630,28357,28450,28786,28801,28819,29362,29410,29466,29561,29592,29596,29650,29698,29714,29808,29811,29939,30264]]],["Timotheus",[17,17,[[43,6,6,0,6,[[1033,1,1,0,1],[1034,2,2,1,3],[1035,1,1,3,4],[1036,1,1,4,5],[1037,1,1,5,6]]],[44,1,1,6,7,[[1061,1,1,6,7]]],[45,2,2,7,9,[[1065,1,1,7,8],[1077,1,1,8,9]]],[46,1,1,9,10,[[1078,1,1,9,10]]],[49,2,2,10,12,[[1103,1,1,10,11],[1104,1,1,11,12]]],[50,1,1,12,13,[[1107,1,1,12,13]]],[51,3,3,13,16,[[1111,1,1,13,14],[1113,2,2,14,16]]],[52,1,1,16,17,[[1116,1,1,16,17]]]],[27484,27537,27538,27562,27607,27630,28357,28450,28786,28819,29362,29410,29466,29561,29592,29596,29650]]],["Timothy",[7,7,[[46,1,1,0,1,[[1078,1,1,0,1]]],[53,3,3,1,4,[[1119,2,2,1,3],[1124,1,1,3,4]]],[54,1,1,4,5,[[1125,1,1,4,5]]],[56,1,1,5,6,[[1132,1,1,5,6]]],[57,1,1,6,7,[[1145,1,1,6,7]]]],[28801,29698,29714,29808,29811,29939,30264]]]]},{"k":"G5096","v":[["Timon",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27106]]]]},{"k":"G5097","v":[["punished",[2,2,[[43,2,2,0,2,[[1039,1,1,0,1],[1043,1,1,1,2]]]],[27709,27834]]]]},{"k":"G5098","v":[["punishment",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30162]]]]},{"k":"G5099","v":[["+",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29658]]]]},{"k":"G5100","v":[["*",[457,424,[[39,21,20,0,20,[[933,1,1,0,1],[936,1,1,1,2],[937,1,1,2,3],[939,1,1,3,4],[940,4,4,4,8],[944,1,1,8,9],[946,1,1,9,10],[948,1,1,10,11],[949,3,2,11,13],[950,2,2,13,15],[952,3,3,15,18],[955,1,1,18,19],[956,1,1,19,20]]],[40,29,28,20,48,[[958,1,1,20,21],[960,1,1,21,22],[961,1,1,22,23],[963,2,2,23,25],[964,3,3,25,28],[965,3,3,28,31],[967,6,5,31,36],[968,2,2,36,38],[969,3,3,38,41],[970,4,4,41,45],[971,2,2,45,47],[972,1,1,47,48]]],[41,79,75,48,123,[[973,1,1,48,49],[978,1,1,49,50],[979,5,5,50,55],[980,4,4,55,59],[981,7,7,59,66],[982,6,5,66,71],[983,8,7,71,78],[984,4,4,78,82],[985,4,4,82,86],[986,5,5,86,91],[987,1,1,91,92],[988,5,5,92,97],[989,1,1,97,98],[990,5,4,98,102],[991,6,5,102,107],[992,4,4,107,111],[993,2,2,111,113],[994,3,3,113,116],[995,3,3,116,119],[996,4,4,119,123]]],[42,48,45,123,168,[[997,1,1,123,124],[998,1,1,124,125],[999,2,2,125,127],[1000,1,1,127,128],[1001,3,3,128,131],[1002,6,6,131,137],[1003,5,5,137,142],[1004,2,2,142,144],[1005,4,4,144,148],[1006,2,2,148,150],[1007,7,7,150,157],[1008,4,3,157,160],[1009,3,2,160,162],[1010,2,2,162,164],[1011,2,2,164,166],[1012,1,1,166,167],[1016,2,1,167,168]]],[43,107,99,168,267,[[1019,1,1,168,169],[1020,2,2,169,171],[1021,3,3,171,174],[1022,7,6,174,180],[1023,1,1,180,181],[1024,1,1,181,182],[1025,4,3,182,185],[1026,6,6,185,191],[1027,6,6,191,197],[1028,3,3,197,200],[1029,1,1,200,201],[1030,3,3,201,204],[1031,1,1,204,205],[1032,5,5,205,210],[1033,5,4,210,214],[1034,10,9,214,223],[1035,5,5,223,228],[1036,9,8,228,236],[1037,1,1,236,237],[1038,3,3,237,240],[1039,1,1,240,241],[1040,4,4,241,245],[1041,4,4,245,249],[1042,9,7,249,256],[1043,1,1,256,257],[1044,8,8,257,265],[1045,3,2,265,267]]],[44,14,13,267,280,[[1046,2,2,267,269],[1048,2,2,269,271],[1050,2,1,271,272],[1053,2,2,272,274],[1054,1,1,274,275],[1056,2,2,275,277],[1059,1,1,277,278],[1060,2,2,278,280]]],[45,46,43,280,323,[[1062,1,1,280,281],[1063,1,1,281,282],[1064,2,2,282,284],[1065,3,3,284,287],[1066,2,2,287,289],[1067,3,3,289,292],[1068,3,2,292,294],[1069,5,4,294,298],[1070,3,3,298,301],[1071,9,8,301,309],[1072,3,3,309,312],[1075,4,4,312,316],[1076,5,5,316,321],[1077,2,2,321,323]]],[46,16,14,323,337,[[1079,2,2,323,325],[1080,2,2,325,327],[1085,2,2,327,329],[1087,3,3,329,332],[1088,3,2,332,334],[1089,3,2,334,336],[1090,1,1,336,337]]],[47,8,7,337,344,[[1091,1,1,337,338],[1092,2,2,338,340],[1095,1,1,340,341],[1096,4,3,341,344]]],[48,3,3,344,347,[[1098,1,1,344,345],[1101,1,1,345,346],[1102,1,1,346,347]]],[49,2,1,347,348,[[1103,2,1,347,348]]],[50,6,5,348,353,[[1108,4,4,348,352],[1109,2,1,352,353]]],[51,4,3,353,356,[[1111,1,1,353,354],[1112,1,1,354,355],[1115,2,1,355,356]]],[52,5,4,356,360,[[1117,1,1,356,357],[1118,4,3,357,360]]],[53,14,13,360,373,[[1119,4,4,360,364],[1121,1,1,364,365],[1122,1,1,365,366],[1123,5,4,366,370],[1124,3,3,370,373]]],[54,3,3,373,376,[[1126,3,3,373,376]]],[55,1,1,376,377,[[1129,1,1,376,377]]],[56,1,1,377,378,[[1132,1,1,377,378]]],[57,21,20,378,398,[[1134,3,3,378,381],[1135,4,4,381,385],[1136,4,4,385,389],[1137,1,1,389,390],[1140,1,1,390,391],[1142,3,3,391,394],[1143,1,1,394,395],[1144,3,2,395,397],[1145,1,1,397,398]]],[58,12,10,398,408,[[1146,3,3,398,401],[1147,3,3,401,404],[1150,6,4,404,408]]],[59,2,2,408,410,[[1152,1,1,408,409],[1154,1,1,409,410]]],[60,4,3,410,413,[[1157,1,1,410,411],[1158,3,2,411,413]]],[61,6,6,413,419,[[1160,3,3,413,416],[1162,1,1,416,417],[1163,2,2,417,419]]],[64,1,1,419,420,[[1166,1,1,419,420]]],[65,4,4,420,424,[[1169,1,1,420,421],[1179,1,1,421,422],[1188,2,2,422,424]]]],[23257,23373,23382,23486,23508,23518,23527,23536,23700,23739,23812,23829,23859,23896,23918,23961,23974,23980,24176,24206,24266,24345,24389,24464,24465,24503,24504,24526,24539,24568,24576,24643,24645,24653,24656,24665,24686,24692,24722,24732,24738,24758,24805,24811,24819,24847,24861,24891,24898,25148,25197,25214,25231,25235,25236,25247,25272,25291,25294,25308,25309,25320,25324,25328,25350,25358,25388,25393,25394,25396,25401,25406,25420,25432,25441,25442,25450,25459,25463,25472,25474,25475,25519,25524,25541,25549,25554,25555,25561,25568,25569,25599,25621,25639,25640,25650,25651,25663,25690,25697,25706,25723,25739,25743,25746,25762,25770,25788,25806,25807,25818,25828,25831,25899,25914,25920,25943,25954,25961,25992,26013,26015,26032,26090,26120,26123,26125,26202,26215,26224,26229,26264,26269,26303,26307,26308,26321,26332,26345,26353,26365,26372,26432,26433,26456,26462,26471,26472,26490,26509,26524,26532,26533,26560,26569,26572,26580,26600,26606,26627,26650,26659,26682,26691,26705,26712,26756,26890,26994,26998,27001,27054,27056,27057,27060,27061,27074,27084,27093,27095,27110,27140,27185,27207,27212,27218,27226,27235,27249,27252,27259,27260,27265,27270,27282,27306,27307,27312,27327,27336,27338,27363,27368,27403,27422,27443,27444,27447,27466,27478,27484,27495,27497,27499,27527,27528,27529,27541,27543,27544,27548,27551,27557,27559,27564,27571,27580,27581,27586,27594,27598,27609,27616,27617,27623,27624,27635,27674,27680,27698,27716,27746,27751,27752,27754,27770,27781,27787,27793,27804,27807,27809,27810,27812,27815,27822,27849,27856,27863,27871,27881,27882,27894,27897,27899,27918,27920,27941,27943,27994,27999,28054,28140,28155,28166,28223,28226,28294,28321,28329,28378,28396,28414,28417,28435,28438,28451,28455,28465,28468,28478,28479,28505,28523,28529,28530,28534,28537,28552,28555,28562,28574,28575,28576,28577,28586,28594,28595,28598,28616,28618,28634,28702,28705,28713,28716,28724,28730,28752,28753,28755,28783,28787,28829,28834,28842,28846,28944,28952,28973,28979,28983,29005,29010,29028,29039,29051,29064,29087,29093,29168,29189,29191,29203,29238,29331,29345,29376,29498,29502,29510,29517,29530,29568,29579,29636,29664,29686,29689,29692,29699,29702,29704,29715,29736,29748,29767,29771,29778,29787,29795,29798,29809,29832,29845,29848,29904,29956,29983,29984,29986,29999,30007,30008,30011,30015,30020,30021,30025,30034,30095,30158,30160,30161,30212,30227,30228,30243,30271,30273,30284,30307,30309,30311,30366,30367,30368,30373,30418,30461,30519,30531,30538,30551,30565,30577,30623,30638,30640,30676,30766,30925,31098,31099]]],["+",[38,35,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,5,4,1,5,[[983,1,1,1,2],[984,1,1,2,3],[991,2,1,3,4],[994,1,1,4,5]]],[42,7,6,5,11,[[1002,2,2,5,7],[1007,1,1,7,8],[1009,1,1,8,9],[1011,1,1,9,10],[1016,2,1,10,11]]],[43,7,7,11,18,[[1019,1,1,11,12],[1022,1,1,12,13],[1028,1,1,13,14],[1038,1,1,14,15],[1042,1,1,15,16],[1043,1,1,16,17],[1044,1,1,17,18]]],[45,4,4,18,22,[[1065,1,1,18,19],[1070,1,1,19,20],[1072,1,1,20,21],[1077,1,1,21,22]]],[46,3,3,22,25,[[1088,1,1,22,23],[1089,1,1,23,24],[1090,1,1,24,25]]],[48,1,1,25,26,[[1102,1,1,25,26]]],[51,1,1,26,27,[[1115,1,1,26,27]]],[53,1,1,27,28,[[1124,1,1,27,28]]],[57,4,4,28,32,[[1134,2,2,28,30],[1137,1,1,30,31],[1140,1,1,31,32]]],[58,3,2,32,34,[[1150,3,2,32,34]]],[59,1,1,34,35,[[1154,1,1,34,35]]]],[24345,25441,25463,25739,25914,26264,26269,26572,26650,26705,26890,26994,27093,27336,27698,27822,27849,27897,28438,28552,28618,28783,29005,29028,29051,29345,29636,29795,29984,29986,30034,30095,30367,30368,30461]]],["He",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30161]]],["One",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29904]]],["Some",[3,3,[[39,1,1,0,1,[[955,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]],[53,1,1,2,3,[[1123,1,1,2,3]]]],[24176,29376,29787]]],["Somebody",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25291]]],["a",[6,5,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,2,1,1,2,[[990,2,1,1,2]]],[43,2,2,2,4,[[1035,1,1,2,3],[1044,1,1,3,4]]],[47,1,1,4,5,[[1096,1,1,4,5]]]],[23739,25690,27571,27863,29189]]],["another",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27617]]],["any",[44,43,[[39,2,2,0,2,[[949,1,1,0,1],[950,1,1,1,2]]],[40,4,4,2,6,[[964,1,1,2,3],[967,1,1,3,4],[969,1,1,4,5],[972,1,1,5,6]]],[41,3,3,6,9,[[981,1,1,6,7],[986,1,1,7,8],[996,1,1,8,9]]],[42,3,3,9,12,[[997,1,1,9,10],[998,1,1,10,11],[1006,1,1,11,12]]],[43,5,4,12,16,[[1021,1,1,12,13],[1026,1,1,13,14],[1042,1,1,14,15],[1045,2,1,15,16]]],[44,3,3,16,19,[[1053,1,1,16,17],[1054,1,1,17,18],[1060,1,1,18,19]]],[45,5,5,19,24,[[1062,1,1,19,20],[1067,2,2,20,22],[1068,1,1,22,23],[1071,1,1,23,24]]],[46,3,3,24,27,[[1079,1,1,24,25],[1088,1,1,25,26],[1089,1,1,26,27]]],[48,1,1,27,28,[[1101,1,1,27,28]]],[50,2,2,28,30,[[1108,1,1,28,29],[1109,1,1,29,30]]],[51,2,2,30,32,[[1112,1,1,30,31],[1115,1,1,31,32]]],[52,1,1,32,33,[[1118,1,1,32,33]]],[53,2,2,33,35,[[1123,2,2,33,35]]],[57,5,5,35,40,[[1135,2,2,35,37],[1136,1,1,37,38],[1144,2,2,38,40]]],[58,2,2,40,42,[[1146,1,1,40,41],[1150,1,1,41,42]]],[60,1,1,42,43,[[1158,1,1,42,43]]]],[23829,23918,24526,24665,24722,24891,25324,25561,26032,26090,26120,26509,27056,27218,27812,27920,28155,28166,28321,28378,28468,28479,28505,28594,28829,29010,29039,29331,29517,29530,29579,29636,29686,29767,29771,30007,30008,30015,30227,30228,30271,30373,30531]]],["certain",[111,109,[[39,3,3,0,3,[[937,1,1,0,1],[940,1,1,1,2],[949,1,1,2,3]]],[40,7,7,3,10,[[958,1,1,3,4],[961,1,1,4,5],[963,1,1,5,6],[967,1,1,6,7],[968,1,1,7,8],[970,2,2,8,10]]],[41,39,38,10,48,[[973,1,1,10,11],[978,1,1,11,12],[979,2,2,12,14],[980,2,2,14,16],[981,1,1,16,17],[982,6,5,17,22],[983,3,3,22,25],[984,1,1,25,26],[985,2,2,26,28],[986,2,2,28,30],[987,1,1,30,31],[988,3,3,31,34],[989,1,1,34,35],[990,3,3,35,38],[991,1,1,38,39],[992,3,3,39,42],[993,1,1,42,43],[994,1,1,43,44],[995,1,1,44,45],[996,3,3,45,48]]],[42,4,4,48,52,[[1000,1,1,48,49],[1001,1,1,49,50],[1007,1,1,50,51],[1008,1,1,51,52]]],[43,53,52,52,104,[[1020,1,1,52,53],[1022,2,2,53,55],[1023,1,1,55,56],[1025,2,2,56,58],[1026,4,4,58,62],[1027,4,4,62,66],[1028,1,1,66,67],[1029,1,1,67,68],[1030,2,2,68,70],[1031,1,1,70,71],[1032,3,3,71,74],[1033,5,4,74,78],[1034,6,6,78,84],[1035,3,3,84,87],[1036,4,4,87,91],[1037,1,1,91,92],[1038,1,1,92,93],[1040,1,1,93,94],[1041,3,3,94,97],[1042,3,3,97,100],[1044,4,4,100,104]]],[44,1,1,104,105,[[1060,1,1,104,105]]],[47,1,1,105,106,[[1092,1,1,105,106]]],[57,2,2,106,108,[[1136,1,1,106,107],[1142,1,1,107,108]]],[64,1,1,108,109,[[1166,1,1,108,109]]]],[23382,23527,23859,24266,24389,24464,24645,24686,24805,24811,24898,25148,25197,25236,25247,25272,25358,25388,25393,25394,25396,25401,25406,25432,25442,25475,25524,25549,25555,25569,25599,25621,25639,25640,25663,25697,25706,25723,25743,25788,25806,25818,25828,25920,25954,25992,26013,26015,26202,26215,26524,26600,26998,27060,27061,27110,27185,27212,27226,27235,27249,27252,27260,27270,27282,27307,27312,27338,27363,27368,27422,27444,27447,27466,27484,27495,27497,27499,27528,27529,27541,27543,27551,27557,27559,27564,27581,27586,27598,27609,27616,27635,27674,27746,27770,27787,27793,27809,27810,27815,27856,27871,27881,27894,28329,29093,30021,30160,30676]]],["divers",[2,2,[[40,1,1,0,1,[[964,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[24503,27594]]],["he",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27057]]],["him",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25214]]],["kind",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30284]]],["man",[86,85,[[39,6,6,0,6,[[936,1,1,0,1],[939,1,1,1,2],[940,1,1,2,3],[950,1,1,3,4],[952,2,2,4,6]]],[40,5,5,6,11,[[964,1,1,6,7],[965,1,1,7,8],[967,2,2,8,10],[969,1,1,10,11]]],[41,2,2,11,13,[[991,2,2,11,13]]],[42,22,21,13,34,[[999,2,2,13,15],[1002,3,3,15,18],[1003,2,2,18,20],[1004,2,2,20,22],[1005,3,3,22,25],[1006,1,1,25,26],[1007,3,3,26,29],[1008,3,2,29,31],[1010,1,1,31,32],[1011,1,1,32,33],[1012,1,1,33,34]]],[43,5,5,34,39,[[1025,1,1,34,35],[1027,1,1,35,36],[1030,1,1,36,37],[1036,1,1,37,38],[1041,1,1,38,39]]],[44,1,1,39,40,[[1053,1,1,39,40]]],[45,14,14,40,54,[[1065,1,1,40,41],[1066,1,1,41,42],[1068,2,2,42,44],[1069,3,3,44,47],[1070,1,1,47,48],[1071,1,1,48,49],[1072,2,2,49,51],[1075,2,2,51,53],[1077,1,1,53,54]]],[46,4,4,54,58,[[1085,2,2,54,56],[1088,1,1,56,57],[1089,1,1,57,58]]],[47,1,1,58,59,[[1096,1,1,58,59]]],[48,1,1,59,60,[[1098,1,1,59,60]]],[50,4,4,60,64,[[1108,3,3,60,63],[1109,1,1,63,64]]],[52,2,2,64,66,[[1117,1,1,64,65],[1118,1,1,65,66]]],[53,2,2,66,68,[[1119,1,1,66,67],[1121,1,1,67,68]]],[54,2,2,68,70,[[1126,2,2,68,70]]],[57,2,2,70,72,[[1136,1,1,70,71],[1144,1,1,71,72]]],[58,2,2,72,74,[[1147,2,2,72,74]]],[59,1,1,74,75,[[1152,1,1,74,75]]],[60,1,1,75,76,[[1157,1,1,75,76]]],[61,5,5,76,81,[[1160,3,3,76,79],[1162,1,1,79,80],[1163,1,1,80,81]]],[65,4,4,81,85,[[1169,1,1,81,82],[1179,1,1,82,83],[1188,2,2,83,85]]]],[23373,23486,23508,23896,23961,23980,24504,24568,24643,24656,24738,25746,25762,26123,26125,26303,26307,26308,26345,26365,26432,26433,26462,26471,26472,26490,26532,26533,26580,26606,26627,26691,26712,26756,27207,27306,27403,27623,27781,28140,28435,28465,28505,28523,28529,28530,28537,28555,28595,28616,28634,28705,28716,28787,28944,28952,29005,29028,29191,29238,29498,29502,29510,29530,29664,29692,29704,29736,29832,29848,30025,30227,30307,30311,30418,30519,30551,30565,30577,30623,30640,30766,30925,31098,31099]]],["man's",[4,4,[[40,1,1,0,1,[[968,1,1,0,1]]],[41,2,2,1,3,[[984,1,1,1,2],[992,1,1,2,3]]],[52,1,1,3,4,[[1118,1,1,3,4]]]],[24692,25474,25807,29686]]],["men",[2,2,[[43,1,1,0,1,[[1032,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[27443,30531]]],["one",[33,33,[[39,2,2,0,2,[[940,2,2,0,2]]],[40,2,2,2,4,[[965,1,1,2,3],[971,1,1,3,4]]],[41,13,13,4,17,[[979,1,1,4,5],[980,1,1,5,6],[981,2,2,6,8],[983,2,2,8,10],[984,1,1,10,11],[985,1,1,11,12],[986,2,2,12,14],[988,2,2,14,16],[995,1,1,16,17]]],[43,9,9,17,26,[[1022,2,2,17,19],[1024,1,1,19,20],[1026,1,1,20,21],[1027,1,1,21,22],[1036,1,1,22,23],[1038,1,1,23,24],[1039,1,1,24,25],[1042,1,1,25,26]]],[44,1,1,26,27,[[1050,1,1,26,27]]],[45,3,3,27,30,[[1064,1,1,27,28],[1066,1,1,28,29],[1075,1,1,29,30]]],[57,1,1,30,31,[[1134,1,1,30,31]]],[58,2,2,31,33,[[1147,1,1,31,32],[1150,1,1,32,33]]]],[23518,23536,24576,24847,25231,25294,25320,25350,25406,25450,25472,25541,25554,25568,25650,25651,25961,27084,27093,27140,27259,27265,27594,27680,27716,27815,28054,28414,28455,28702,29983,30309,30373]]],["other",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30366]]],["ought",[6,6,[[39,2,2,0,2,[[933,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[967,1,1,2,3]]],[43,2,2,3,5,[[1021,1,1,3,4],[1045,1,1,4,5]]],[56,1,1,5,6,[[1132,1,1,5,6]]]],[23257,23829,24665,27054,27918,29956]]],["pieces",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27899]]],["some",[72,72,[[39,2,2,0,2,[[944,1,1,0,1],[956,1,1,1,2]]],[40,5,5,2,7,[[963,1,1,2,3],[965,1,1,3,4],[970,2,2,4,6],[971,1,1,6,7]]],[41,8,8,7,15,[[981,3,3,7,10],[983,1,1,10,11],[985,1,1,11,12],[991,1,1,12,13],[993,1,1,13,14],[995,1,1,14,15]]],[42,7,7,15,22,[[1002,1,1,15,16],[1003,2,2,16,18],[1005,1,1,18,19],[1007,2,2,19,21],[1009,1,1,21,22]]],[43,9,9,22,31,[[1022,1,1,22,23],[1025,1,1,23,24],[1028,1,1,24,25],[1032,1,1,25,26],[1034,3,3,26,29],[1035,1,1,29,30],[1044,1,1,30,31]]],[44,7,7,31,38,[[1046,2,2,31,33],[1048,2,2,33,35],[1050,1,1,35,36],[1056,2,2,36,38]]],[45,13,13,38,51,[[1065,1,1,38,39],[1067,1,1,39,40],[1069,1,1,40,41],[1070,1,1,41,42],[1071,4,4,42,46],[1076,5,5,46,51]]],[46,3,3,51,54,[[1080,1,1,51,52],[1087,2,2,52,54]]],[47,1,1,54,55,[[1091,1,1,54,55]]],[49,1,1,55,56,[[1103,1,1,55,56]]],[52,1,1,56,57,[[1118,1,1,56,57]]],[53,8,8,57,65,[[1119,3,3,57,60],[1122,1,1,60,61],[1123,2,2,61,63],[1124,2,2,63,65]]],[54,1,1,65,66,[[1126,1,1,65,66]]],[57,6,6,66,72,[[1135,2,2,66,68],[1136,1,1,68,69],[1142,1,1,69,70],[1143,1,1,70,71],[1145,1,1,71,72]]]],[23700,24206,24465,24539,24758,24819,24861,25308,25309,25328,25420,25519,25770,25831,25943,26321,26353,26372,26456,26560,26569,26659,27074,27185,27327,27478,27527,27541,27544,27580,27882,27941,27943,27994,27999,28054,28223,28226,28451,28478,28534,28562,28574,28575,28576,28577,28724,28730,28752,28753,28755,28842,28973,28983,29064,29376,29689,29699,29702,29715,29748,29778,29787,29798,29809,29845,29999,30011,30020,30158,30212,30243]]],["somebody",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27095]]],["something",[5,5,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,1,1,1,2,[[1009,1,1,1,2]]],[43,2,2,2,4,[[1020,1,1,2,3],[1040,1,1,3,4]]],[47,1,1,4,5,[[1096,1,1,4,5]]]],[25459,26659,27001,27752,29191]]],["somewhat",[5,5,[[41,1,1,0,1,[[979,1,1,0,1]]],[43,2,2,1,3,[[1040,1,1,1,2],[1042,1,1,2,3]]],[46,1,1,3,4,[[1087,1,1,3,4]]],[47,1,1,4,5,[[1092,1,1,4,5]]]],[25235,27754,27822,28979,29087]]],["thing",[27,26,[[39,2,2,0,2,[[948,1,1,0,1],[952,1,1,1,2]]],[40,2,2,2,4,[[967,1,1,2,3],[969,1,1,3,4]]],[41,1,1,4,5,[[994,1,1,4,5]]],[42,3,3,5,8,[[1001,1,1,5,6],[1003,1,1,6,7],[1010,1,1,7,8]]],[43,5,5,8,13,[[1034,1,1,8,9],[1036,1,1,9,10],[1040,1,1,10,11],[1042,2,2,11,13]]],[44,1,1,13,14,[[1059,1,1,13,14]]],[45,6,5,14,19,[[1063,1,1,14,15],[1064,1,1,15,16],[1069,1,1,16,17],[1071,2,1,17,18],[1075,1,1,18,19]]],[46,2,2,19,21,[[1079,1,1,19,20],[1080,1,1,20,21]]],[47,2,2,21,23,[[1095,1,1,21,22],[1096,1,1,22,23]]],[51,1,1,23,24,[[1111,1,1,23,24]]],[58,1,1,24,25,[[1146,1,1,24,25]]],[61,1,1,25,26,[[1163,1,1,25,26]]]],[23812,23974,24653,24732,25899,26224,26332,26682,27548,27624,27751,27804,27807,28294,28396,28417,28529,28586,28713,28834,28846,29168,29203,29568,30273,30638]]],["things",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30538]]],["what",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26229]]],["whatsoever",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28598]]]]},{"k":"G5101","v":[["*",[536,483,[[39,83,74,0,74,[[931,1,1,0,1],[933,3,3,1,4],[934,9,5,4,9],[935,2,2,9,11],[936,2,2,11,13],[937,2,2,13,15],[938,3,2,15,17],[939,4,4,17,21],[940,6,5,21,26],[942,1,1,26,27],[943,1,1,27,28],[944,5,4,28,32],[945,3,2,32,34],[946,2,2,34,36],[947,6,6,36,42],[948,4,4,42,46],[949,6,6,46,52],[950,6,5,52,57],[951,2,2,57,59],[952,2,2,59,61],[954,8,8,61,69],[955,5,5,69,74]]],[40,71,66,74,140,[[957,4,2,74,76],[958,7,6,76,82],[959,1,1,82,83],[960,4,4,83,87],[961,7,7,87,94],[962,3,3,94,97],[964,8,8,97,105],[965,6,6,105,111],[966,7,7,111,118],[967,3,3,118,121],[968,4,4,121,125],[969,2,2,125,127],[970,9,8,127,135],[971,5,4,135,139],[972,1,1,139,140]]],[41,112,103,140,243,[[973,3,3,140,143],[974,2,2,143,145],[975,4,4,145,149],[976,3,2,149,151],[977,4,3,151,154],[978,6,6,154,160],[979,8,7,160,167],[980,6,5,167,172],[981,5,5,172,177],[982,6,5,177,182],[983,3,3,182,185],[984,15,12,185,197],[985,3,2,197,199],[986,4,4,199,203],[987,3,3,203,206],[988,5,5,206,211],[989,2,2,211,213],[990,6,6,213,219],[991,4,4,219,223],[992,7,7,223,230],[993,1,1,230,231],[994,6,6,231,237],[995,3,3,237,240],[996,3,3,240,243]]],[42,74,65,243,308,[[997,6,5,243,248],[998,3,3,248,251],[1000,3,2,251,253],[1001,2,2,253,255],[1002,9,7,255,262],[1003,4,4,262,266],[1004,4,4,266,270],[1005,6,6,270,276],[1006,2,2,276,278],[1007,2,2,278,280],[1008,6,4,280,284],[1009,5,5,284,289],[1010,1,1,289,290],[1011,1,1,290,291],[1012,3,2,291,293],[1014,8,7,293,300],[1015,1,1,300,301],[1016,3,2,301,303],[1017,5,5,303,308]]],[43,56,52,308,360,[[1018,1,1,308,309],[1019,2,2,309,311],[1020,2,1,311,312],[1021,2,2,312,314],[1022,4,4,314,318],[1024,5,5,318,323],[1025,4,3,323,326],[1026,4,3,326,329],[1027,5,5,329,334],[1028,1,1,334,335],[1029,1,1,335,336],[1030,1,1,336,337],[1031,1,1,337,338],[1032,1,1,338,339],[1033,1,1,339,340],[1034,3,3,340,343],[1036,4,4,343,347],[1038,4,3,347,350],[1039,6,6,350,356],[1040,1,1,356,357],[1043,3,3,357,360]]],[44,42,36,360,396,[[1048,6,5,360,365],[1049,2,2,365,367],[1051,3,3,367,370],[1052,2,2,370,372],[1053,8,7,372,379],[1054,6,4,379,383],[1055,4,4,383,387],[1056,7,6,387,393],[1057,1,1,393,394],[1059,3,2,394,396]]],[45,28,21,396,417,[[1063,2,2,396,398],[1064,2,1,398,399],[1065,4,2,399,401],[1066,1,1,401,402],[1068,2,1,402,403],[1070,4,2,403,405],[1071,2,2,405,407],[1072,1,1,407,408],[1075,5,5,408,413],[1076,5,4,413,417]]],[46,9,7,417,424,[[1079,2,2,417,419],[1083,4,3,419,422],[1088,2,1,422,423],[1089,1,1,423,424]]],[47,7,7,424,431,[[1092,1,1,424,425],[1093,2,2,425,427],[1094,2,2,427,429],[1095,2,2,429,431]]],[48,9,8,431,439,[[1097,3,2,431,433],[1099,2,2,433,435],[1100,1,1,435,436],[1101,2,2,436,438],[1102,1,1,438,439]]],[49,2,2,439,441,[[1103,2,2,439,441]]],[50,2,2,441,443,[[1107,1,1,441,442],[1108,1,1,442,443]]],[51,3,3,443,446,[[1112,1,1,443,444],[1113,1,1,444,445],[1114,1,1,445,446]]],[53,1,1,446,447,[[1119,1,1,446,447]]],[54,1,1,447,448,[[1127,1,1,447,448]]],[57,10,10,448,458,[[1133,2,2,448,450],[1134,1,1,450,451],[1135,2,2,451,453],[1137,1,1,453,454],[1139,1,1,454,455],[1143,1,1,455,456],[1144,1,1,456,457],[1145,1,1,457,458]]],[58,4,4,458,462,[[1147,2,2,458,460],[1148,1,1,460,461],[1149,1,1,461,462]]],[59,4,4,462,466,[[1151,1,1,462,463],[1153,1,1,463,464],[1154,1,1,464,465],[1155,1,1,465,466]]],[61,4,4,466,470,[[1160,1,1,466,467],[1161,2,2,467,469],[1163,1,1,469,470]]],[65,14,13,470,483,[[1168,4,4,470,474],[1169,3,3,474,477],[1171,1,1,477,478],[1172,1,1,478,479],[1173,1,1,479,480],[1179,2,1,480,481],[1181,1,1,481,482],[1184,1,1,482,483]]]],[23199,23247,23280,23281,23285,23307,23309,23310,23313,23319,23325,23371,23374,23384,23392,23428,23436,23466,23467,23468,23475,23492,23496,23500,23516,23537,23628,23665,23680,23685,23687,23698,23710,23725,23728,23739,23769,23778,23779,23782,23787,23789,23798,23813,23814,23824,23836,23842,23849,23854,23857,23866,23889,23890,23892,23900,23914,23935,23937,23960,24002,24062,24064,24069,24116,24119,24120,24122,24124,24133,24146,24150,24151,24152,24239,24242,24267,24268,24269,24276,24284,24285,24321,24347,24353,24363,24364,24371,24373,24378,24394,24395,24399,24403,24409,24431,24443,24501,24502,24512,24517,24527,24529,24536,24537,24544,24548,24554,24571,24572,24588,24591,24605,24606,24614,24624,24626,24639,24643,24645,24668,24682,24688,24689,24696,24721,24728,24758,24760,24790,24794,24814,24817,24818,24822,24838,24840,24850,24860,24876,24911,24955,24959,25021,25022,25032,25035,25037,25039,25097,25099,25128,25129,25130,25148,25155,25157,25187,25192,25193,25219,25220,25221,25226,25234,25237,25244,25254,25270,25273,25275,25290,25310,25319,25321,25326,25347,25385,25388,25389,25392,25399,25410,25416,25424,25464,25470,25473,25476,25479,25481,25484,25485,25488,25501,25508,25516,25536,25538,25558,25581,25584,25587,25592,25596,25614,25622,25623,25624,25631,25632,25658,25659,25694,25706,25707,25714,25724,25729,25734,25746,25764,25779,25781,25792,25794,25796,25802,25803,25812,25833,25887,25888,25891,25910,25928,25935,25957,25966,25969,25996,26008,26029,26063,26065,26066,26069,26082,26099,26113,26120,26166,26183,26222,26223,26263,26266,26285,26287,26317,26321,26325,26347,26348,26364,26379,26386,26406,26427,26434,26442,26457,26461,26466,26467,26476,26487,26501,26570,26579,26607,26614,26618,26629,26642,26652,26654,26655,26658,26690,26714,26743,26744,26789,26792,26806,26808,26814,26820,26823,26849,26880,26882,26910,26918,26919,26920,26921,26934,26961,26986,27008,27031,27038,27063,27068,27083,27094,27143,27151,27156,27165,27168,27209,27210,27212,27220,27221,27222,27263,27265,27276,27280,27288,27324,27355,27387,27429,27452,27513,27541,27542,27543,27588,27600,27617,27620,27677,27686,27697,27711,27712,27714,27720,27730,27734,27753,27831,27837,27838,27992,27994,27996,27998,28000,28023,28025,28069,28083,28089,28098,28115,28140,28142,28143,28147,28149,28150,28151,28169,28174,28175,28185,28194,28195,28196,28204,28211,28213,28216,28224,28243,28244,28247,28284,28290,28405,28410,28415,28440,28454,28466,28503,28547,28558,28586,28597,28622,28684,28686,28693,28694,28704,28720,28747,28748,28750,28826,28840,28912,28913,28914,29018,29035,29095,29103,29121,29146,29161,29169,29173,29224,29225,29260,29269,29281,29314,29321,29358,29379,29383,29492,29514,29589,29599,29605,29703,29867,29968,29976,29983,30012,30013,30042,30075,30204,30219,30247,30307,30309,30332,30349,30385,30437,30463,30473,30572,30581,30591,30629,30724,30728,30734,30746,30752,30759,30768,30781,30810,30823,30912,30950,31011]]],["+",[27,26,[[39,5,5,0,5,[[933,1,1,0,1],[936,1,1,1,2],[942,1,1,2,3],[943,1,1,3,4],[946,1,1,4,5]]],[40,9,8,5,13,[[957,1,1,5,6],[960,1,1,6,7],[961,1,1,7,8],[962,1,1,8,9],[964,2,2,9,11],[965,1,1,11,12],[971,2,1,12,13]]],[41,6,6,13,19,[[973,1,1,13,14],[976,1,1,14,15],[980,2,2,15,17],[986,1,1,17,18],[994,1,1,18,19]]],[42,1,1,19,20,[[998,1,1,19,20]]],[43,2,2,20,22,[[1025,1,1,20,21],[1036,1,1,21,22]]],[45,1,1,22,23,[[1066,1,1,22,23]]],[46,1,1,23,24,[[1079,1,1,23,24]]],[53,1,1,24,25,[[1119,1,1,24,25]]],[61,1,1,25,26,[[1161,1,1,25,26]]]],[23247,23374,23628,23665,23728,24239,24364,24371,24443,24501,24502,24588,24850,24911,25097,25270,25273,25587,25887,26099,27210,27617,28466,28826,29703,30591]]],["How",[5,5,[[39,1,1,0,1,[[946,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[988,1,1,2,3]]],[43,1,1,3,4,[[1022,1,1,3,4]]],[45,1,1,4,5,[[1075,1,1,4,5]]]],[23739,25022,25622,27068,28704]]],["What",[85,84,[[39,13,12,0,12,[[934,2,1,0,1],[939,1,1,1,2],[940,1,1,2,3],[945,1,1,3,4],[948,2,2,4,6],[950,2,2,6,8],[954,2,2,8,10],[955,2,2,10,12]]],[40,11,11,12,23,[[961,1,1,12,13],[962,1,1,13,14],[965,2,2,14,16],[966,3,3,16,19],[967,1,1,19,20],[968,1,1,20,21],[970,1,1,21,22],[971,1,1,22,23]]],[41,15,15,23,38,[[975,1,1,23,24],[976,1,1,24,25],[977,1,1,25,26],[979,1,1,26,27],[980,2,2,27,29],[982,1,1,29,30],[984,1,1,30,31],[987,1,1,31,32],[988,1,1,32,33],[990,1,1,33,34],[992,3,3,34,37],[994,1,1,37,38]]],[42,17,17,38,55,[[997,3,3,38,41],[998,1,1,41,42],[1000,1,1,42,43],[1001,1,1,43,44],[1002,2,2,44,46],[1003,1,1,46,47],[1005,2,2,47,49],[1007,2,2,49,51],[1012,2,2,51,53],[1014,2,2,53,55]]],[43,8,8,55,63,[[1019,1,1,55,56],[1021,1,1,56,57],[1027,1,1,57,58],[1034,1,1,58,59],[1038,2,2,59,61],[1039,1,1,61,62],[1040,1,1,62,63]]],[44,11,11,63,74,[[1048,2,2,63,65],[1049,1,1,65,66],[1051,3,3,66,69],[1052,1,1,69,70],[1053,1,1,70,71],[1054,2,2,71,73],[1056,1,1,73,74]]],[45,5,5,74,79,[[1065,1,1,74,75],[1070,1,1,75,76],[1071,1,1,76,77],[1072,1,1,77,78],[1075,1,1,78,79]]],[49,1,1,79,80,[[1103,1,1,79,80]]],[57,1,1,80,81,[[1134,1,1,80,81]]],[58,1,1,81,82,[[1147,1,1,81,82]]],[65,2,2,82,84,[[1173,1,1,82,83],[1184,1,1,83,84]]]],[23313,23466,23500,23725,23813,23824,23889,23914,24069,24120,24133,24151,24373,24431,24554,24571,24591,24624,24639,24645,24682,24817,24838,25035,25099,25129,25219,25254,25275,25389,25476,25592,25623,25729,25792,25794,25796,25935,26065,26066,26082,26113,26183,26222,26285,26287,26364,26457,26466,26570,26579,26743,26744,26814,26823,26961,27038,27263,27541,27677,27686,27714,27753,27992,28000,28023,28069,28083,28089,28098,28147,28169,28185,28216,28454,28558,28586,28622,28693,29379,29983,30307,30823,31011]]],["Where",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29146]]],["Wherefore",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29121]]],["Whereunto",[3,3,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,2,2,1,3,[[979,1,1,1,2],[985,1,1,2,3]]]],[24353,25226,25538]]],["Wherewithal",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23313]]],["Whether",[4,4,[[39,2,2,0,2,[[949,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[958,1,1,2,3]]],[41,1,1,3,4,[[977,1,1,3,4]]]],[23857,24150,24269,25130]]],["Which",[6,6,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,3,3,1,4,[[982,1,1,1,2],[983,1,1,2,3],[986,1,1,3,4]]],[42,1,1,4,5,[[1004,1,1,4,5]]],[43,1,1,5,6,[[1024,1,1,5,6]]]],[23309,25399,25410,25558,26427,27168]]],["Who",[42,40,[[39,5,5,0,5,[[940,1,1,0,1],[947,1,1,1,2],[949,1,1,2,3],[952,1,1,3,4],[954,1,1,4,5]]],[40,5,5,5,10,[[959,1,1,5,6],[961,2,2,6,8],[966,1,1,8,9],[972,1,1,9,10]]],[41,7,5,10,15,[[977,2,1,10,11],[979,1,1,11,12],[980,2,1,12,13],[984,1,1,13,14],[990,1,1,14,15]]],[42,5,5,15,20,[[997,2,2,15,17],[1004,1,1,17,18],[1005,1,1,18,19],[1017,1,1,19,20]]],[43,5,5,20,25,[[1024,2,2,20,22],[1026,1,1,22,23],[1039,1,1,23,24],[1043,1,1,24,25]]],[44,6,6,25,31,[[1053,3,3,25,28],[1055,2,2,28,30],[1059,1,1,30,31]]],[45,2,2,31,33,[[1064,1,1,31,32],[1070,1,1,32,33]]],[46,1,1,33,34,[[1088,1,1,33,34]]],[58,1,1,34,35,[[1148,1,1,34,35]]],[61,2,2,35,37,[[1160,1,1,35,36],[1163,1,1,36,37]]],[65,3,3,37,40,[[1171,1,1,37,38],[1179,1,1,38,39],[1181,1,1,39,40]]]],[23537,23787,23836,24002,24122,24321,24394,24395,24614,24876,25128,25244,25290,25501,25714,26063,26066,26406,26476,26910,27143,27151,27221,27712,27838,28149,28150,28151,28194,28195,28284,28415,28547,29018,30332,30572,30629,30781,30912,30950]]],["Whom",[7,7,[[39,2,2,0,2,[[944,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[964,1,1,2,3]]],[41,1,1,3,4,[[981,1,1,3,4]]],[42,2,2,4,6,[[1014,2,2,4,6]]],[43,1,1,6,7,[[1030,1,1,6,7]]]],[23685,24146,24527,25319,26789,26792,27387]]],["Whose",[3,3,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]]],[23892,24689,25803]]],["Why",[31,31,[[39,7,7,0,7,[[936,1,1,0,1],[945,1,1,1,2],[947,2,2,2,4],[948,1,1,4,5],[950,1,1,5,6],[954,1,1,6,7]]],[40,10,10,7,17,[[958,2,2,7,9],[960,1,1,9,10],[961,1,1,10,11],[964,2,2,11,13],[966,1,1,13,14],[967,1,1,14,15],[968,1,1,15,16],[970,1,1,16,17]]],[41,7,7,17,24,[[978,1,1,17,18],[990,1,1,18,19],[991,1,1,19,20],[992,1,1,20,21],[994,1,1,21,22],[996,2,2,22,24]]],[42,4,4,24,28,[[997,1,1,24,25],[1000,1,1,25,26],[1003,1,1,26,27],[1014,1,1,27,28]]],[43,1,1,28,29,[[1043,1,1,28,29]]],[44,2,2,29,31,[[1054,2,2,29,31]]]],[23371,23710,23769,23779,23798,23890,24064,24267,24268,24363,24403,24512,24517,24606,24643,24688,24758,25148,25707,25764,25802,25910,25996,26029,26069,26183,26347,26806,27831,28174,28175]]],["any",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25416]]],["how",[4,4,[[41,1,1,0,1,[[973,1,1,0,1]]],[42,1,1,1,2,[[1010,1,1,1,2]]],[45,1,1,2,3,[[1068,1,1,2,3]]],[48,1,1,3,4,[[1102,1,1,3,4]]]],[24955,26690,28503,29358]]],["intent",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26658]]],["it",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24276]]],["manner",[2,2,[[41,2,2,0,2,[[973,1,1,0,1],[996,1,1,1,2]]]],[24959,26008]]],["means",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27031]]],["much",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25746]]],["purpose",[1,1,[[39,1,1,0,1,[[954,1,1,0,1]]]],[24062]]],["thing",[3,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,2,2,1,3,[[978,1,1,1,2],[984,1,1,2,3]]]],[24242,25155,25470]]],["things",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26487]]],["what",[165,154,[[39,28,24,0,24,[[933,2,2,0,2],[934,4,2,2,4],[935,1,1,4,5],[937,1,1,5,6],[938,2,1,6,7],[939,2,2,7,9],[940,2,2,9,11],[944,2,1,11,12],[947,3,3,12,15],[948,1,1,15,16],[949,3,3,16,19],[952,1,1,19,20],[954,3,3,20,23],[955,1,1,23,24]]],[40,20,19,24,43,[[957,1,1,24,25],[958,1,1,25,26],[960,1,1,26,27],[961,1,1,27,28],[962,1,1,28,29],[964,2,2,29,31],[965,2,2,31,33],[966,2,2,33,35],[969,2,2,35,37],[970,6,5,37,42],[971,1,1,42,43]]],[41,27,25,43,68,[[975,2,2,43,45],[978,1,1,45,46],[979,3,3,46,49],[981,1,1,49,50],[982,1,1,50,51],[984,6,4,51,55],[985,1,1,55,56],[986,1,1,56,57],[987,2,2,57,59],[988,1,1,59,60],[990,3,3,60,63],[991,1,1,63,64],[993,1,1,64,65],[995,3,3,65,68]]],[42,17,16,68,84,[[998,1,1,68,69],[1002,3,3,69,72],[1003,1,1,72,73],[1004,1,1,73,74],[1008,3,2,74,76],[1009,1,1,76,77],[1011,1,1,77,78],[1012,1,1,78,79],[1014,2,2,79,81],[1017,3,3,81,84]]],[43,20,19,84,103,[[1019,1,1,84,85],[1022,1,1,85,86],[1024,2,2,86,88],[1025,1,1,88,89],[1026,2,1,89,90],[1027,4,4,90,94],[1028,1,1,94,95],[1029,1,1,95,96],[1033,1,1,96,97],[1034,2,2,97,99],[1036,2,2,99,101],[1038,1,1,101,102],[1039,1,1,102,103]]],[44,11,11,103,114,[[1048,3,3,103,106],[1049,1,1,106,107],[1053,2,2,107,109],[1055,1,1,109,110],[1056,3,3,110,113],[1057,1,1,113,114]]],[45,8,8,114,122,[[1063,1,1,114,115],[1065,1,1,115,116],[1068,1,1,116,117],[1075,2,2,117,119],[1076,3,3,119,122]]],[46,5,4,122,126,[[1083,4,3,122,125],[1089,1,1,125,126]]],[47,1,1,126,127,[[1094,1,1,126,127]]],[48,8,7,127,134,[[1097,3,2,127,129],[1099,2,2,129,131],[1100,1,1,131,132],[1101,2,2,132,134]]],[49,1,1,134,135,[[1103,1,1,134,135]]],[50,1,1,135,136,[[1107,1,1,135,136]]],[51,3,3,136,139,[[1112,1,1,136,137],[1113,1,1,137,138],[1114,1,1,138,139]]],[57,4,4,139,143,[[1139,1,1,139,140],[1143,1,1,140,141],[1144,1,1,141,142],[1145,1,1,142,143]]],[58,1,1,143,144,[[1147,1,1,143,144]]],[59,2,2,144,146,[[1151,1,1,144,145],[1154,1,1,145,146]]],[61,1,1,146,147,[[1161,1,1,146,147]]],[65,7,7,147,154,[[1168,4,4,147,151],[1169,3,3,151,154]]]],[23280,23281,23285,23307,23325,23392,23436,23467,23468,23492,23496,23698,23778,23782,23789,23814,23842,23854,23866,23960,24116,24119,24124,24152,24242,24285,24347,24378,24409,24536,24537,24544,24548,24605,24626,24721,24728,24790,24794,24814,24818,24822,24840,25037,25039,25157,25220,25221,25226,25326,25388,25470,25481,25488,25508,25536,25584,25596,25614,25624,25694,25706,25724,25779,25833,25957,25966,25969,26120,26263,26266,26287,26379,26386,26607,26629,26642,26714,26744,26806,26820,26919,26920,26921,26986,27094,27156,27165,27212,27222,27265,27276,27280,27288,27324,27355,27513,27542,27543,27588,27620,27697,27730,27992,27994,27996,28025,28142,28143,28196,28211,28213,28224,28247,28405,28440,28503,28684,28694,28720,28747,28750,28912,28913,28914,29035,29161,29224,29225,29260,29269,29281,29314,29321,29383,29492,29589,29599,29605,30075,30204,30219,30247,30309,30385,30463,30581,30724,30728,30734,30746,30752,30759,30768]]],["wherefore",[2,2,[[42,1,1,0,1,[[1005,1,1,0,1]]],[43,1,1,1,2,[[1039,1,1,1,2]]]],[26467,27734]]],["whereunto",[3,3,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]]],[23475,25536,27083]]],["wherewith",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25659]]],["whether",[4,4,[[39,3,3,0,3,[[937,1,1,0,1],[951,2,2,1,3]]],[41,1,1,3,4,[[994,1,1,3,4]]]],[23384,23935,23937,25891]]],["which",[10,10,[[41,6,6,0,6,[[979,1,1,0,1],[981,1,1,1,2],[984,1,1,2,3],[986,1,1,3,4],[989,1,1,4,5],[994,1,1,5,6]]],[42,1,1,6,7,[[1017,1,1,6,7]]],[57,3,3,7,10,[[1133,2,2,7,9],[1137,1,1,9,10]]]],[25237,25347,25484,25581,25658,25888,26918,29968,29976,30042]]],["who",[58,54,[[39,4,4,0,4,[[931,1,1,0,1],[938,1,1,1,2],[940,1,1,2,3],[949,1,1,3,4]]],[40,4,4,4,8,[[957,1,1,4,5],[958,1,1,5,6],[965,1,1,6,7],[967,1,1,7,8]]],[41,13,12,8,20,[[975,1,1,8,9],[976,1,1,9,10],[979,1,1,10,11],[981,1,1,11,12],[982,3,2,12,14],[984,1,1,14,15],[988,2,2,15,17],[991,1,1,17,18],[992,1,1,18,19],[994,1,1,19,20]]],[42,12,11,20,31,[[1000,1,1,20,21],[1001,1,1,21,22],[1002,3,2,22,24],[1003,1,1,24,25],[1005,2,2,25,27],[1008,2,2,27,29],[1009,2,2,29,31]]],[43,3,3,31,34,[[1025,1,1,31,32],[1036,1,1,32,33],[1038,1,1,33,34]]],[44,8,7,34,41,[[1052,1,1,34,35],[1053,1,1,35,36],[1054,2,2,36,38],[1055,1,1,38,39],[1056,3,2,39,41]]],[45,6,5,41,46,[[1063,1,1,41,42],[1064,1,1,42,43],[1065,1,1,43,44],[1070,2,1,44,45],[1075,1,1,45,46]]],[46,2,2,46,48,[[1079,1,1,46,47],[1088,1,1,47,48]]],[47,2,2,48,50,[[1093,1,1,48,49],[1095,1,1,49,50]]],[58,1,1,50,51,[[1149,1,1,50,51]]],[59,1,1,51,52,[[1153,1,1,51,52]]],[65,2,2,52,54,[[1172,1,1,52,53],[1179,1,1,53,54]]]],[23199,23428,23537,23849,24239,24267,24572,24668,25032,25097,25234,25310,25385,25392,25473,25631,25632,25734,25781,25928,26166,26223,26317,26321,26348,26442,26461,26614,26618,26654,26655,27209,27600,27697,28115,28147,28174,28175,28204,28243,28244,28410,28415,28440,28547,28686,28840,29018,29103,29169,30349,30437,30810,30912]]],["whom",[18,18,[[39,3,3,0,3,[[940,1,1,0,1],[944,1,1,1,2],[945,1,1,2,3]]],[40,1,1,3,4,[[964,1,1,3,4]]],[41,4,4,4,8,[[978,1,1,4,5],[981,1,1,5,6],[983,1,1,6,7],[984,1,1,7,8]]],[42,5,5,8,13,[[1002,1,1,8,9],[1004,1,1,9,10],[1008,1,1,10,11],[1009,1,1,11,12],[1016,1,1,12,13]]],[43,1,1,13,14,[[1025,1,1,13,14]]],[54,1,1,14,15,[[1127,1,1,14,15]]],[57,2,2,15,17,[[1135,2,2,15,17]]],[59,1,1,17,18,[[1155,1,1,17,18]]]],[23516,23687,23725,24529,25193,25321,25424,25464,26325,26434,26618,26652,26882,27210,29867,30012,30013,30473]]],["whose",[6,6,[[39,2,2,0,2,[[950,2,2,0,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,2,2,3,5,[[984,1,1,3,4],[992,1,1,4,5]]],[42,1,1,5,6,[[1015,1,1,5,6]]]],[23900,23914,24696,25479,25812,26849]]],["why",[37,35,[[39,3,3,0,3,[[934,1,1,0,1],[935,1,1,1,2],[944,1,1,2,3]]],[40,4,4,3,7,[[958,1,1,3,4],[961,1,1,4,5],[970,1,1,5,6],[971,1,1,6,7]]],[41,5,5,7,12,[[974,1,1,7,8],[978,2,2,8,10],[984,2,2,10,12]]],[42,4,4,12,16,[[1006,1,1,12,13],[1014,1,1,13,14],[1016,2,2,14,16]]],[43,10,9,16,25,[[1018,1,1,16,17],[1020,2,1,17,18],[1022,1,1,18,19],[1026,1,1,19,20],[1031,1,1,20,21],[1032,1,1,21,22],[1039,2,2,22,24],[1043,1,1,24,25]]],[44,4,3,25,28,[[1048,1,1,25,26],[1053,1,1,26,27],[1059,2,1,27,28]]],[45,4,4,28,32,[[1065,1,1,28,29],[1071,1,1,29,30],[1076,2,2,30,32]]],[47,2,2,32,34,[[1092,1,1,32,33],[1095,1,1,33,34]]],[50,1,1,34,35,[[1108,1,1,34,35]]]],[23310,23319,23680,24284,24399,24760,24860,25021,25187,25192,25485,25516,26501,26808,26880,26882,26934,27008,27063,27220,27429,27452,27711,27720,27837,27998,28140,28290,28440,28597,28747,28748,29095,29173,29514]]]]},{"k":"G5102","v":[["title",[2,2,[[42,2,2,0,2,[[1015,2,2,0,2]]]],[26844,26845]]]]},{"k":"G5103","v":[["*",[13,12,[[46,9,8,0,8,[[1079,1,1,0,1],[1084,3,3,1,4],[1085,3,3,4,7],[1089,2,1,7,8]]],[47,2,2,8,10,[[1092,2,2,8,10]]],[54,1,1,10,11,[[1128,1,1,10,11]]],[55,1,1,11,12,[[1129,1,1,11,12]]]],[28837,28922,28929,28930,28938,28948,28955,29040,29082,29084,29880,29896]]],["+",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29082]]],["Titus",[12,11,[[46,9,8,0,8,[[1079,1,1,0,1],[1084,3,3,1,4],[1085,3,3,4,7],[1089,2,1,7,8]]],[47,1,1,8,9,[[1092,1,1,8,9]]],[54,1,1,9,10,[[1128,1,1,9,10]]],[55,1,1,10,11,[[1129,1,1,10,11]]]],[28837,28922,28929,28930,28938,28948,28955,29040,29084,29880,29896]]]]},{"k":"G5104","v":[]},{"k":"G5105","v":[["*",[2,2,[[51,1,1,0,1,[[1114,1,1,0,1]]],[57,1,1,1,2,[[1144,1,1,1,2]]]],[29611,30213]]],["+",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29611]]],["Wherefore",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30213]]]]},{"k":"G5106","v":[["*",[4,4,[[41,1,1,0,1,[[992,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[25804,28566,30254,30317]]],["then",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30317]]],["therefore",[3,3,[[41,1,1,0,1,[[992,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]]],[25804,28566,30254]]]]},{"k":"G5107","v":[["such",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30496]]]]},{"k":"G5108","v":[["*",[61,59,[[39,3,3,0,3,[[937,1,1,0,1],[946,1,1,1,2],[947,1,1,2,3]]],[40,7,7,3,10,[[960,1,1,3,4],[962,1,1,4,5],[963,2,2,5,7],[965,1,1,7,8],[966,1,1,8,9],[969,1,1,9,10]]],[41,3,3,10,13,[[981,1,1,10,11],[985,1,1,11,12],[990,1,1,12,13]]],[42,3,3,13,16,[[1000,1,1,13,14],[1004,1,1,14,15],[1005,1,1,15,16]]],[43,5,5,16,21,[[1033,1,1,16,17],[1036,1,1,17,18],[1038,1,1,18,19],[1039,1,1,19,20],[1043,1,1,20,21]]],[44,4,4,21,25,[[1046,1,1,21,22],[1047,2,2,22,24],[1061,1,1,24,25]]],[45,10,9,25,34,[[1066,3,3,25,28],[1068,2,2,28,30],[1072,1,1,30,31],[1076,2,1,31,32],[1077,2,2,32,34]]],[46,10,9,34,43,[[1079,2,2,34,36],[1080,2,2,36,38],[1087,2,1,38,39],[1088,1,1,39,40],[1089,3,3,40,43]]],[47,3,3,43,46,[[1095,2,2,43,45],[1096,1,1,45,46]]],[48,1,1,46,47,[[1101,1,1,46,47]]],[49,1,1,47,48,[[1104,1,1,47,48]]],[52,1,1,48,49,[[1118,1,1,48,49]]],[53,1,1,49,50,[[1124,1,1,49,50]]],[55,1,1,50,51,[[1131,1,1,50,51]]],[56,1,1,51,52,[[1132,1,1,51,52]]],[57,5,5,52,57,[[1139,1,1,52,53],[1140,1,1,53,54],[1143,1,1,54,55],[1144,1,1,55,56],[1145,1,1,56,57]]],[58,1,1,57,58,[[1149,1,1,57,58]]],[63,1,1,58,59,[[1165,1,1,58,59]]]],[23387,23732,23776,24356,24409,24471,24476,24575,24602,24736,25310,25520,25704,26179,26386,26456,27507,27610,27689,27726,27852,27962,27964,27965,28354,28455,28459,28465,28502,28515,28616,28766,28792,28794,28830,28831,28845,28853,28982,29002,29024,29025,29027,29183,29185,29189,29331,29420,29690,29793,29934,29947,30090,30093,30186,30215,30257,30353,30666]]],["+",[1,1,[[40,1,1,0,1,[[969,1,1,0,1]]]],[24736]]],["man",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28830]]],["occupation",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27610]]],["one",[8,8,[[45,2,2,0,2,[[1066,2,2,0,2]]],[46,4,4,2,6,[[1079,1,1,2,3],[1087,1,1,3,4],[1089,2,2,4,6]]],[47,1,1,6,7,[[1096,1,1,6,7]]],[56,1,1,7,8,[[1132,1,1,7,8]]]],[28459,28465,28831,28982,29024,29027,29189,29947]]],["such",[41,40,[[39,3,3,0,3,[[937,1,1,0,1],[946,1,1,1,2],[947,1,1,2,3]]],[40,6,6,3,9,[[960,1,1,3,4],[962,1,1,4,5],[963,2,2,5,7],[965,1,1,7,8],[966,1,1,8,9]]],[41,1,1,9,10,[[990,1,1,9,10]]],[42,3,3,10,13,[[1000,1,1,10,11],[1004,1,1,11,12],[1005,1,1,12,13]]],[43,3,3,13,16,[[1033,1,1,13,14],[1039,1,1,14,15],[1043,1,1,15,16]]],[44,1,1,16,17,[[1061,1,1,16,17]]],[45,8,7,17,24,[[1066,1,1,17,18],[1068,2,2,18,20],[1072,1,1,20,21],[1076,2,1,21,22],[1077,2,2,22,24]]],[46,5,5,24,29,[[1080,2,2,24,26],[1087,1,1,26,27],[1088,1,1,27,28],[1089,1,1,28,29]]],[47,1,1,29,30,[[1095,1,1,29,30]]],[49,1,1,30,31,[[1104,1,1,30,31]]],[52,1,1,31,32,[[1118,1,1,31,32]]],[53,1,1,32,33,[[1124,1,1,32,33]]],[55,1,1,33,34,[[1131,1,1,33,34]]],[57,4,4,34,38,[[1139,1,1,34,35],[1140,1,1,35,36],[1144,1,1,36,37],[1145,1,1,37,38]]],[58,1,1,38,39,[[1149,1,1,38,39]]],[63,1,1,39,40,[[1165,1,1,39,40]]]],[23387,23732,23776,24356,24409,24471,24476,24575,24602,25704,26179,26386,26456,27507,27726,27852,28354,28455,28502,28515,28616,28766,28792,28794,28845,28853,28982,29002,29025,29185,29420,29690,29793,29934,30090,30093,30215,30257,30353,30666]]],["thing",[2,2,[[43,1,1,0,1,[[1038,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]]],[27689,29331]]],["things",[7,7,[[41,2,2,0,2,[[981,1,1,0,1],[985,1,1,1,2]]],[44,3,3,2,5,[[1046,1,1,2,3],[1047,2,2,3,5]]],[47,1,1,5,6,[[1095,1,1,5,6]]],[57,1,1,6,7,[[1143,1,1,6,7]]]],[25310,25520,27962,27964,27965,29183,30186]]]]},{"k":"G5109","v":[["wall",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27737]]]]},{"k":"G5110","v":[["usury",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[41,1,1,1,2,[[991,1,1,1,2]]]],[24035,25754]]]]},{"k":"G5111","v":[["*",[16,15,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,2,2,1,3,[[968,1,1,1,2],[971,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]],[42,1,1,4,5,[[1017,1,1,4,5]]],[43,2,2,5,7,[[1022,1,1,5,6],[1024,1,1,6,7]]],[44,2,2,7,9,[[1050,1,1,7,8],[1060,1,1,8,9]]],[45,1,1,9,10,[[1067,1,1,9,10]]],[46,4,3,10,13,[[1087,2,2,10,12],[1088,2,1,12,13]]],[49,1,1,13,14,[[1103,1,1,13,14]]],[64,1,1,14,15,[[1166,1,1,14,15]]]],[23918,24707,24869,25819,26910,27072,27148,28054,28321,28468,28973,28983,29010,29375,30681]]],["+",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[29010,29375]]],["Dare",[1,1,[[45,1,1,0,1,[[1067,1,1,0,1]]]],[28468]]],["I",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29010]]],["bold",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28973]]],["boldly",[1,1,[[40,1,1,0,1,[[971,1,1,0,1]]]],[24869]]],["dare",[3,3,[[44,2,2,0,2,[[1050,1,1,0,1],[1060,1,1,1,2]]],[46,1,1,2,3,[[1087,1,1,2,3]]]],[28054,28321,28983]]],["durst",[7,7,[[39,1,1,0,1,[[950,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[42,1,1,3,4,[[1017,1,1,3,4]]],[43,2,2,4,6,[[1022,1,1,4,5],[1024,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[23918,24707,25819,26910,27072,27148,30681]]]]},{"k":"G5112","v":[["boldly",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28318]]]]},{"k":"G5113","v":[["Presumptuous",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30510]]]]},{"k":"G5114","v":[["sharper",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30026]]]]},{"k":"G5115","v":[["bow",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30795]]]]},{"k":"G5116","v":[["topaz",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31073]]]]},{"k":"G5117","v":[["*",[92,88,[[39,10,9,0,9,[[940,1,1,0,1],[942,3,3,1,4],[952,2,2,4,6],[954,1,1,6,7],[955,2,1,7,8],[956,1,1,8,9]]],[40,9,8,9,17,[[957,2,2,9,11],[962,3,3,11,14],[969,1,1,14,15],[971,2,1,15,16],[972,1,1,16,17]]],[41,20,19,17,36,[[974,1,1,17,18],[976,3,3,18,21],[978,1,1,21,22],[981,2,2,22,24],[982,2,2,24,26],[983,2,2,26,28],[986,4,3,28,31],[988,1,1,31,32],[991,1,1,32,33],[993,1,1,33,34],[994,1,1,34,35],[995,1,1,35,36]]],[42,16,16,36,52,[[1000,1,1,36,37],[1001,1,1,37,38],[1002,2,2,38,40],[1006,1,1,40,41],[1007,3,3,41,44],[1010,2,2,44,46],[1014,1,1,46,47],[1015,4,4,47,51],[1016,1,1,51,52]]],[43,17,16,52,68,[[1018,1,1,52,53],[1021,1,1,53,54],[1023,2,2,54,56],[1024,3,3,56,59],[1029,1,1,59,60],[1033,1,1,60,61],[1038,2,1,61,62],[1042,1,1,62,63],[1044,4,4,63,67],[1045,1,1,67,68]]],[44,3,3,68,71,[[1054,1,1,68,69],[1057,1,1,69,70],[1060,1,1,70,71]]],[45,2,2,71,73,[[1062,1,1,71,72],[1075,1,1,72,73]]],[46,1,1,73,74,[[1079,1,1,73,74]]],[48,1,1,74,75,[[1100,1,1,74,75]]],[51,1,1,75,76,[[1111,1,1,75,76]]],[53,1,1,76,77,[[1120,1,1,76,77]]],[57,3,3,77,80,[[1140,1,1,77,78],[1143,1,1,78,79],[1144,1,1,79,80]]],[60,1,1,80,81,[[1156,1,1,80,81]]],[65,7,7,81,88,[[1168,1,1,81,82],[1172,1,1,82,83],[1178,3,3,83,86],[1182,1,1,86,87],[1186,1,1,87,88]]]],[23532,23610,23612,23632,23964,23972,24106,24162,24201,24250,24260,24438,24439,24442,24725,24848,24879,24980,25080,25100,25105,25163,25311,25313,25364,25395,25406,25429,25562,25563,25575,25648,25736,25837,25904,25968,26176,26223,26267,26280,26521,26529,26553,26571,26670,26671,26787,26838,26842,26845,26866,26874,26948,27053,27114,27115,27123,27149,27165,27354,27486,27692,27812,27857,27863,27884,27896,27906,28181,28264,28326,28365,28694,28838,29299,29568,29724,30099,30180,30229,30498,30722,30807,30897,30899,30905,30970,31049]]],["+",[6,6,[[40,1,1,0,1,[[969,1,1,0,1]]],[41,2,2,1,3,[[978,1,1,1,2],[993,1,1,2,3]]],[43,3,3,3,6,[[1042,1,1,3,4],[1044,1,1,4,5],[1045,1,1,5,6]]]],[24725,25163,25837,27812,27884,27906]]],["coasts",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27857]]],["place",[73,70,[[39,8,7,0,7,[[942,3,3,0,3],[952,1,1,3,4],[954,1,1,4,5],[955,2,1,5,6],[956,1,1,6,7]]],[40,7,6,7,13,[[957,1,1,7,8],[962,3,3,8,11],[971,2,1,11,12],[972,1,1,12,13]]],[41,13,13,13,26,[[976,3,3,13,16],[981,2,2,16,18],[982,2,2,18,20],[983,1,1,20,21],[986,1,1,21,22],[988,1,1,22,23],[991,1,1,23,24],[994,1,1,24,25],[995,1,1,25,26]]],[42,16,16,26,42,[[1000,1,1,26,27],[1001,1,1,27,28],[1002,2,2,28,30],[1006,1,1,30,31],[1007,3,3,31,34],[1010,2,2,34,36],[1014,1,1,36,37],[1015,4,4,37,41],[1016,1,1,41,42]]],[43,12,11,42,53,[[1018,1,1,42,43],[1021,1,1,43,44],[1023,2,2,44,46],[1024,3,3,46,49],[1029,1,1,49,50],[1038,2,1,50,51],[1044,2,2,51,53]]],[44,3,3,53,56,[[1054,1,1,53,54],[1057,1,1,54,55],[1060,1,1,55,56]]],[45,1,1,56,57,[[1062,1,1,56,57]]],[46,1,1,57,58,[[1079,1,1,57,58]]],[48,1,1,58,59,[[1100,1,1,58,59]]],[51,1,1,59,60,[[1111,1,1,59,60]]],[57,3,3,60,63,[[1140,1,1,60,61],[1143,1,1,61,62],[1144,1,1,62,63]]],[60,1,1,63,64,[[1156,1,1,63,64]]],[65,6,6,64,70,[[1168,1,1,64,65],[1178,3,3,65,68],[1182,1,1,68,69],[1186,1,1,69,70]]]],[23610,23612,23632,23972,24106,24162,24201,24250,24438,24439,24442,24848,24879,25080,25100,25105,25311,25313,25364,25395,25406,25562,25648,25736,25904,25968,26176,26223,26267,26280,26521,26529,26553,26571,26670,26671,26787,26838,26842,26845,26866,26874,26948,27053,27114,27115,27123,27149,27165,27354,27692,27863,27896,28181,28264,28326,28365,28838,29299,29568,30099,30180,30229,30498,30722,30897,30899,30905,30970,31049]]],["places",[5,5,[[39,2,2,0,2,[[940,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,1,1,3,4,[[983,1,1,3,4]]],[65,1,1,4,5,[[1172,1,1,4,5]]]],[23532,23964,24260,25429,30807]]],["quarters",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27486]]],["room",[5,5,[[41,4,4,0,4,[[974,1,1,0,1],[986,3,3,1,4]]],[45,1,1,4,5,[[1075,1,1,4,5]]]],[24980,25562,25563,25575,28694]]],["where",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29724]]]]},{"k":"G5118","v":[["*",[21,19,[[39,3,2,0,2,[[936,1,1,0,1],[943,2,1,1,2]]],[41,2,2,2,4,[[979,1,1,2,3],[987,1,1,3,4]]],[42,4,4,4,8,[[1002,1,1,4,5],[1008,1,1,5,6],[1010,1,1,6,7],[1017,1,1,7,8]]],[43,2,1,8,9,[[1022,2,1,8,9]]],[45,1,1,9,10,[[1075,1,1,9,10]]],[47,1,1,10,11,[[1093,1,1,10,11]]],[57,5,5,11,16,[[1133,1,1,11,12],[1136,1,1,12,13],[1139,1,1,13,14],[1142,1,1,14,15],[1144,1,1,15,16]]],[65,3,3,16,19,[[1184,2,2,16,18],[1187,1,1,18,19]]]],[23355,23666,25204,25617,26266,26617,26677,26909,27067,28688,29106,29967,30021,30086,30158,30213,31000,31010,31069]]],["great",[5,5,[[39,2,2,0,2,[[936,1,1,0,1],[943,1,1,1,2]]],[41,1,1,2,3,[[979,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]],[65,1,1,4,5,[[1184,1,1,4,5]]]],[23355,23666,25204,30213,31010]]],["large",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31069]]],["long",[2,2,[[42,1,1,0,1,[[1010,1,1,0,1]]],[57,1,1,1,2,[[1136,1,1,1,2]]]],[26677,30021]]],["many",[5,5,[[41,1,1,0,1,[[987,1,1,0,1]]],[42,3,3,1,4,[[1002,1,1,1,2],[1008,1,1,2,3],[1017,1,1,3,4]]],[45,1,1,4,5,[[1075,1,1,4,5]]]],[25617,26266,26617,26909,28688]]],["much",[7,6,[[39,1,1,0,1,[[943,1,1,0,1]]],[43,2,1,1,2,[[1022,2,1,1,2]]],[57,3,3,2,5,[[1133,1,1,2,3],[1139,1,1,3,4],[1142,1,1,4,5]]],[65,1,1,5,6,[[1184,1,1,5,6]]]],[23666,27067,29967,30086,30158,31000]]],["things",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29106]]]]},{"k":"G5119","v":[["*",[155,153,[[39,89,88,0,88,[[930,3,3,0,3],[931,3,3,3,6],[932,5,5,6,11],[933,1,1,11,12],[935,2,2,12,14],[936,1,1,14,15],[937,5,5,15,20],[939,1,1,20,21],[940,6,6,21,27],[941,3,3,27,30],[943,3,3,30,33],[944,5,5,33,38],[945,2,2,38,40],[946,2,2,40,42],[947,2,2,42,44],[948,1,1,44,45],[949,1,1,45,46],[950,4,4,46,50],[951,1,1,50,51],[952,9,8,51,59],[953,8,8,59,67],[954,12,12,67,79],[955,8,8,79,87],[956,1,1,87,88]]],[40,6,6,88,94,[[958,1,1,88,89],[959,1,1,89,90],[969,4,4,90,94]]],[41,14,14,94,108,[[977,1,1,94,95],[978,1,1,95,96],[983,1,1,96,97],[985,1,1,97,98],[986,3,3,98,101],[988,1,1,101,102],[993,4,4,102,106],[995,1,1,106,107],[996,1,1,107,108]]],[42,9,9,108,117,[[998,1,1,108,109],[1003,1,1,109,110],[1004,1,1,110,111],[1007,2,2,111,113],[1008,1,1,113,114],[1015,2,2,114,116],[1016,1,1,116,117]]],[43,19,19,117,136,[[1018,1,1,117,118],[1021,1,1,118,119],[1022,1,1,119,120],[1023,1,1,120,121],[1024,1,1,121,122],[1025,1,1,122,123],[1027,2,2,123,125],[1030,2,2,125,127],[1032,1,1,127,128],[1034,1,1,128,129],[1038,2,2,129,131],[1040,1,1,131,132],[1042,1,1,132,133],[1043,1,1,133,134],[1044,1,1,134,135],[1045,1,1,135,136]]],[44,1,1,136,137,[[1051,1,1,136,137]]],[45,6,5,137,142,[[1065,1,1,137,138],[1074,3,2,138,140],[1076,2,2,140,142]]],[46,1,1,142,143,[[1089,1,1,142,143]]],[47,3,3,143,146,[[1094,2,2,143,145],[1096,1,1,145,146]]],[50,1,1,146,147,[[1109,1,1,146,147]]],[51,1,1,147,148,[[1115,1,1,147,148]]],[52,1,1,148,149,[[1117,1,1,148,149]]],[57,3,3,149,152,[[1142,2,2,149,151],[1144,1,1,151,152]]],[60,1,1,152,153,[[1158,1,1,152,153]]]],[23176,23185,23186,23197,23205,23207,23210,23214,23219,23220,23226,23258,23321,23339,23371,23385,23393,23394,23408,23416,23479,23502,23511,23518,23527,23533,23534,23565,23575,23582,23634,23645,23661,23684,23692,23693,23696,23699,23713,23719,23748,23759,23775,23789,23812,23827,23880,23885,23887,23893,23919,23966,23967,23971,23973,23978,23980,23987,23997,24009,24015,24039,24042,24045,24049,24052,24053,24057,24068,24070,24085,24090,24092,24099,24106,24110,24119,24121,24128,24132,24138,24142,24145,24155,24156,24167,24187,24205,24280,24315,24731,24738,24743,24744,25142,25188,25431,25544,25562,25563,25574,25636,25836,25846,25847,25853,25965,26036,26105,26338,26409,26529,26537,26596,26826,26841,26875,26935,27030,27085,27112,27120,27193,27305,27307,27365,27374,27464,27537,27690,27697,27737,27808,27824,27887,27900,28089,28438,28675,28677,28746,28772,29032,29139,29160,29192,29521,29624,29669,30140,30142,30238,30528]]],["+",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26537]]],["Then",[98,98,[[39,70,70,0,70,[[930,3,3,0,3],[931,3,3,3,6],[932,4,4,6,10],[936,1,1,10,11],[937,3,3,11,14],[939,1,1,14,15],[940,5,5,15,20],[941,2,2,20,22],[943,3,3,22,25],[944,3,3,25,28],[945,2,2,28,30],[946,2,2,30,32],[947,2,2,32,34],[948,1,1,34,35],[950,4,4,35,39],[951,1,1,39,40],[952,4,4,40,44],[953,7,7,44,51],[954,11,11,51,62],[955,7,7,62,69],[956,1,1,69,70]]],[41,7,7,70,77,[[983,1,1,70,71],[985,1,1,71,72],[986,1,1,72,73],[993,2,2,73,75],[995,1,1,75,76],[996,1,1,76,77]]],[42,3,3,77,80,[[1015,2,2,77,79],[1016,1,1,79,80]]],[43,16,16,80,96,[[1018,1,1,80,81],[1021,1,1,81,82],[1022,1,1,82,83],[1023,1,1,83,84],[1024,1,1,84,85],[1025,1,1,85,86],[1027,2,2,86,88],[1030,1,1,88,89],[1032,1,1,89,90],[1038,2,2,90,92],[1040,1,1,92,93],[1042,1,1,93,94],[1043,1,1,94,95],[1044,1,1,95,96]]],[57,2,2,96,98,[[1142,2,2,96,98]]]],[23176,23185,23186,23197,23205,23207,23210,23214,23219,23220,23371,23393,23408,23416,23479,23502,23511,23527,23533,23534,23575,23582,23634,23645,23661,23684,23692,23696,23713,23719,23748,23759,23775,23789,23812,23880,23885,23887,23893,23919,23966,23973,23980,23997,24009,24015,24042,24045,24049,24052,24053,24057,24068,24085,24090,24092,24099,24106,24110,24119,24121,24128,24132,24138,24142,24155,24156,24167,24187,24205,25431,25544,25574,25836,25847,25965,26036,26826,26841,26875,26935,27030,27085,27112,27120,27193,27305,27307,27374,27464,27690,27697,27737,27808,27824,27887,30140,30142]]],["forth",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23693]]],["still",[1,1,[[42,1,1,0,1,[[1007,1,1,0,1]]]],[26529]]],["then",[49,47,[[39,16,15,0,15,[[933,1,1,0,1],[935,2,2,1,3],[937,2,2,3,5],[940,1,1,5,6],[941,1,1,6,7],[944,1,1,7,8],[949,1,1,8,9],[952,5,4,9,13],[953,1,1,13,14],[955,1,1,14,15]]],[40,6,6,15,21,[[958,1,1,15,16],[959,1,1,16,17],[969,4,4,17,21]]],[41,5,5,21,26,[[977,1,1,21,22],[978,1,1,22,23],[986,1,1,23,24],[993,2,2,24,26]]],[42,4,4,26,30,[[998,1,1,26,27],[1003,1,1,27,28],[1004,1,1,28,29],[1008,1,1,29,30]]],[43,2,2,30,32,[[1034,1,1,30,31],[1045,1,1,31,32]]],[44,1,1,32,33,[[1051,1,1,32,33]]],[45,6,5,33,38,[[1065,1,1,33,34],[1074,3,2,34,36],[1076,2,2,36,38]]],[46,1,1,38,39,[[1089,1,1,38,39]]],[47,3,3,39,42,[[1094,2,2,39,41],[1096,1,1,41,42]]],[50,1,1,42,43,[[1109,1,1,42,43]]],[51,1,1,43,44,[[1115,1,1,43,44]]],[52,1,1,44,45,[[1117,1,1,44,45]]],[57,1,1,45,46,[[1144,1,1,45,46]]],[60,1,1,46,47,[[1158,1,1,46,47]]]],[23258,23321,23339,23385,23394,23518,23565,23699,23827,23967,23971,23978,23987,24039,24145,24280,24315,24731,24738,24743,24744,25142,25188,25563,25846,25853,26105,26338,26409,26596,27537,27900,28089,28438,28675,28677,28746,28772,29032,29139,29160,29192,29521,29624,29669,30238,30528]]],["thou",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25562]]],["time",[3,3,[[39,2,2,0,2,[[932,1,1,0,1],[954,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]]],[23226,24070,25636]]],["when",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27365]]]]},{"k":"G5120","v":[["his",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27551]]]]},{"k":"G5121","v":[["contrariwise",[3,3,[[46,1,1,0,1,[[1079,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[28831,29088,30433]]]]},{"k":"G5122","v":[["named",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24186]]]]},{"k":"G5123","v":[["*",[17,17,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[43,2,2,2,4,[[1018,1,1,2,3],[1036,1,1,3,4]]],[44,5,5,4,9,[[1052,1,1,4,5],[1054,1,1,5,6],[1055,3,3,6,9]]],[56,1,1,9,10,[[1132,1,1,9,10]]],[57,6,6,10,16,[[1134,1,1,10,11],[1139,1,1,11,12],[1141,1,1,12,13],[1142,1,1,13,14],[1143,1,1,14,15],[1145,1,1,15,16]]],[59,1,1,16,17,[[1153,1,1,16,17]]]],[24175,24465,26942,27589,28109,28163,28194,28195,28196,29950,29991,30069,30116,30153,30188,30256,30444]]],["is",[12,12,[[43,1,1,0,1,[[1036,1,1,0,1]]],[44,5,5,1,6,[[1052,1,1,1,2],[1054,1,1,2,3],[1055,3,3,3,6]]],[56,1,1,6,7,[[1132,1,1,6,7]]],[57,4,4,7,11,[[1134,1,1,7,8],[1139,1,1,8,9],[1143,1,1,9,10],[1145,1,1,10,11]]],[59,1,1,11,12,[[1153,1,1,11,12]]]],[27589,28109,28163,28194,28195,28196,29950,29991,30069,30188,30256,30444]]],["say",[5,5,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[43,1,1,2,3,[[1018,1,1,2,3]]],[57,2,2,3,5,[[1141,1,1,3,4],[1142,1,1,4,5]]]],[24175,24465,26942,30116,30153]]]]},{"k":"G5124","v":[["*",[316,302,[[39,32,32,0,32,[[929,1,1,0,1],[934,1,1,1,2],[936,1,1,2,3],[937,1,1,3,4],[940,3,3,4,7],[941,3,3,7,10],[942,1,1,10,11],[943,1,1,11,12],[944,1,1,12,13],[945,1,1,13,14],[946,2,2,14,16],[947,1,1,16,17],[949,2,2,17,19],[951,2,2,19,21],[952,2,2,21,23],[954,8,8,23,31],[956,1,1,31,32]]],[40,16,16,32,48,[[957,2,2,32,34],[961,2,2,34,36],[962,1,1,36,37],[965,2,2,37,39],[967,2,2,39,41],[968,1,1,41,42],[969,1,1,42,43],[970,5,5,43,48]]],[41,37,36,48,84,[[973,4,4,48,52],[974,2,2,52,54],[975,1,1,54,55],[976,1,1,55,56],[977,1,1,56,57],[978,1,1,57,58],[979,2,2,58,60],[981,3,3,60,63],[982,2,2,63,65],[983,2,2,65,67],[984,3,3,67,70],[985,1,1,70,71],[986,1,1,71,72],[988,1,1,72,73],[990,2,2,73,75],[992,1,1,75,76],[994,8,7,76,83],[996,1,1,83,84]]],[42,52,49,84,133,[[997,1,1,84,85],[998,2,2,85,87],[999,1,1,87,88],[1000,3,3,88,91],[1001,3,3,91,94],[1002,6,6,94,100],[1003,2,2,100,102],[1004,3,3,102,105],[1005,1,1,105,106],[1006,1,1,106,107],[1007,4,4,107,111],[1008,7,6,111,117],[1009,2,2,117,119],[1010,1,1,119,120],[1011,1,1,120,121],[1012,3,3,121,124],[1014,4,3,124,127],[1015,2,2,127,129],[1016,2,2,129,131],[1017,3,2,131,133]]],[43,28,27,133,160,[[1019,5,5,133,138],[1021,2,2,138,140],[1022,3,3,140,143],[1024,1,1,143,144],[1025,1,1,144,145],[1026,2,1,145,146],[1027,1,1,146,147],[1028,1,1,147,148],[1033,1,1,148,149],[1036,4,4,149,153],[1037,1,1,153,154],[1038,1,1,154,155],[1040,1,1,155,156],[1041,1,1,156,157],[1043,2,2,157,159],[1044,1,1,159,160]]],[44,21,19,160,179,[[1046,2,2,160,162],[1047,1,1,162,163],[1049,1,1,163,164],[1050,1,1,164,165],[1051,1,1,165,166],[1052,5,4,166,170],[1054,1,1,170,171],[1056,1,1,171,172],[1057,1,1,172,173],[1058,3,2,173,175],[1059,2,2,175,177],[1060,2,2,177,179]]],[45,28,24,179,203,[[1062,1,1,179,180],[1065,1,1,180,181],[1066,2,2,181,183],[1067,1,1,183,184],[1068,5,5,184,189],[1070,2,2,189,191],[1071,1,1,191,192],[1072,8,6,192,198],[1073,2,2,198,200],[1076,5,3,200,203]]],[46,17,17,203,220,[[1078,1,1,203,204],[1079,3,3,204,207],[1081,1,1,207,208],[1082,2,2,208,210],[1084,2,2,210,212],[1085,2,2,212,214],[1086,1,1,214,215],[1087,2,2,215,217],[1090,3,3,217,220]]],[47,4,4,220,224,[[1092,1,1,220,221],[1093,2,2,221,223],[1096,1,1,223,224]]],[48,11,11,224,235,[[1097,1,1,224,225],[1098,1,1,225,226],[1100,1,1,226,227],[1101,3,3,227,230],[1102,5,5,230,235]]],[49,10,9,235,244,[[1103,7,7,235,242],[1104,1,1,242,243],[1105,2,1,243,244]]],[50,4,4,244,248,[[1107,1,1,244,245],[1108,1,1,245,246],[1109,1,1,246,247],[1110,1,1,247,248]]],[51,7,7,248,255,[[1112,1,1,248,249],[1113,3,3,249,252],[1114,2,2,252,254],[1115,1,1,254,255]]],[52,2,2,255,257,[[1117,1,1,255,256],[1118,1,1,256,257]]],[53,6,6,257,263,[[1119,2,2,257,259],[1120,1,1,259,260],[1122,2,2,260,262],[1123,1,1,262,263]]],[54,3,3,263,266,[[1125,1,1,263,264],[1126,1,1,264,265],[1127,1,1,265,266]]],[56,2,2,266,268,[[1132,2,2,266,268]]],[57,13,11,268,279,[[1133,1,1,268,269],[1134,1,1,269,270],[1138,1,1,270,271],[1139,1,1,271,272],[1141,4,4,272,276],[1142,2,1,276,277],[1145,3,2,277,279]]],[58,1,1,279,280,[[1149,1,1,279,280]]],[59,6,6,280,286,[[1151,1,1,280,281],[1152,3,3,281,284],[1153,1,1,284,285],[1154,1,1,285,286]]],[60,5,5,286,291,[[1156,2,2,286,288],[1158,3,3,288,291]]],[61,4,4,291,295,[[1161,2,2,291,293],[1162,2,2,293,295]]],[63,1,1,295,296,[[1165,1,1,295,296]]],[64,2,2,296,298,[[1166,2,2,296,298]]],[65,4,4,298,302,[[1168,1,1,298,299],[1173,1,1,299,300],[1178,1,1,300,301],[1184,1,1,301,302]]]],[23166,23307,23354,23407,23500,23516,23520,23552,23567,23591,23599,23644,23694,23721,23731,23750,23788,23830,23869,23932,23952,23971,24001,24063,24066,24067,24080,24082,24093,24096,24110,24209,24242,24253,24396,24407,24421,24559,24567,24643,24664,24697,24728,24759,24763,24776,24778,24790,24911,24927,24936,24959,24985,24988,25045,25106,25113,25149,25199,25203,25322,25346,25349,25374,25391,25424,25454,25477,25481,25498,25526,25573,25622,25722,25724,25796,25879,25881,25883,25884,25887,25901,25906,26031,26075,26107,26117,26152,26171,26174,26210,26226,26228,26238,26263,26286,26296,26297,26318,26322,26350,26367,26387,26421,26428,26463,26498,26530,26534,26549,26574,26585,26586,26598,26607,26613,26619,26641,26658,26681,26718,26741,26743,26744,26819,26822,26823,26836,26853,26887,26889,26912,26917,26961,26963,26965,26975,26982,27029,27044,27063,27083,27097,27176,27210,27237,27275,27317,27501,27595,27599,27602,27612,27655,27687,27741,27783,27839,27849,27889,27942,27956,27965,28038,28059,28074,28106,28107,28110,28111,28172,28234,28265,28272,28277,28289,28293,28312,28331,28375,28450,28456,28457,28473,28493,28513,28516,28522,28524,28557,28563,28595,28610,28617,28624,28625,28626,28630,28649,28650,28768,28771,28772,28817,28825,28827,28833,28860,28882,28891,28927,28929,28942,28952,28962,28978,28982,29044,29052,29053,29091,29104,29119,29195,29221,29237,29289,29309,29321,29336,29338,29345,29350,29355,29359,29367,29368,29370,29380,29383,29386,29389,29396,29436,29474,29498,29537,29550,29583,29593,29595,29597,29606,29618,29639,29672,29688,29705,29712,29719,29757,29763,29767,29824,29837,29854,29953,29956,29972,29978,30047,30091,30113,30120,30125,30132,30166,30258,30260,30352,30399,30418,30419,30420,30433,30452,30484,30499,30525,30527,30530,30580,30587,30606,30608,30668,30676,30677,30723,30825,30903,31001]]],["+",[87,86,[[39,11,11,0,11,[[934,1,1,0,1],[940,2,2,1,3],[941,2,2,3,5],[942,1,1,5,6],[946,1,1,6,7],[949,1,1,7,8],[951,2,2,8,10],[952,1,1,10,11]]],[40,4,4,11,15,[[957,1,1,11,12],[962,1,1,12,13],[967,1,1,13,14],[968,1,1,14,15]]],[41,5,5,15,20,[[976,1,1,15,16],[983,2,2,16,18],[984,1,1,18,19],[986,1,1,19,20]]],[42,15,15,20,35,[[997,1,1,20,21],[1001,2,2,21,23],[1002,1,1,23,24],[1003,1,1,24,25],[1004,1,1,25,26],[1005,1,1,26,27],[1006,1,1,27,28],[1008,3,3,28,31],[1009,1,1,31,32],[1011,1,1,32,33],[1012,1,1,33,34],[1015,1,1,34,35]]],[43,1,1,35,36,[[1019,1,1,35,36]]],[44,7,6,36,42,[[1046,1,1,36,37],[1049,1,1,37,38],[1050,1,1,38,39],[1054,1,1,39,40],[1058,2,1,40,41],[1060,1,1,41,42]]],[45,5,5,42,47,[[1065,1,1,42,43],[1072,2,2,43,45],[1073,2,2,45,47]]],[46,5,5,47,52,[[1078,1,1,47,48],[1081,1,1,48,49],[1082,1,1,49,50],[1084,1,1,50,51],[1090,1,1,51,52]]],[47,1,1,52,53,[[1092,1,1,52,53]]],[48,5,5,53,58,[[1097,1,1,53,54],[1101,1,1,54,55],[1102,3,3,55,58]]],[49,4,4,58,62,[[1103,2,2,58,60],[1104,1,1,60,61],[1105,1,1,61,62]]],[50,1,1,62,63,[[1110,1,1,62,63]]],[51,4,4,63,67,[[1112,1,1,63,64],[1113,3,3,64,67]]],[52,1,1,67,68,[[1117,1,1,67,68]]],[53,2,2,68,70,[[1119,1,1,68,69],[1122,1,1,69,70]]],[54,1,1,70,71,[[1126,1,1,70,71]]],[56,2,2,71,73,[[1132,2,2,71,73]]],[57,4,4,73,77,[[1133,1,1,73,74],[1134,1,1,74,75],[1141,1,1,75,76],[1142,1,1,76,77]]],[59,2,2,77,79,[[1152,1,1,77,78],[1153,1,1,78,79]]],[60,1,1,79,80,[[1156,1,1,79,80]]],[61,2,2,80,82,[[1161,1,1,80,81],[1162,1,1,81,82]]],[63,1,1,82,83,[[1165,1,1,82,83]]],[65,3,3,83,86,[[1173,1,1,83,84],[1178,1,1,84,85],[1184,1,1,85,86]]]],[23307,23516,23520,23552,23591,23599,23750,23869,23932,23952,24001,24253,24421,24664,24697,25106,25424,25454,25481,25573,26075,26226,26228,26322,26350,26428,26463,26498,26598,26607,26619,26641,26718,26741,26836,26975,27956,28038,28059,28172,28272,28312,28450,28610,28630,28649,28650,28817,28860,28882,28929,29053,29091,29221,29321,29350,29355,29359,29367,29386,29396,29436,29550,29583,29593,29595,29597,29672,29712,29757,29837,29953,29956,29972,29978,30120,30166,30420,30433,30484,30580,30608,30668,30825,30903,31001]]],["That",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27942]]],["They",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23407]]],["This",[22,22,[[40,2,2,0,2,[[965,1,1,0,1],[970,1,1,1,2]]],[41,3,3,2,5,[[984,1,1,2,3],[994,2,2,3,5]]],[42,7,7,5,12,[[1000,1,1,5,6],[1002,1,1,6,7],[1004,1,1,7,8],[1008,2,2,8,10],[1017,2,2,10,12]]],[43,1,1,12,13,[[1027,1,1,12,13]]],[45,2,2,13,15,[[1071,1,1,13,14],[1072,1,1,14,15]]],[46,1,1,15,16,[[1090,1,1,15,16]]],[47,1,1,16,17,[[1093,1,1,16,17]]],[48,2,2,17,19,[[1100,1,1,17,18],[1101,1,1,18,19]]],[54,2,2,19,21,[[1125,1,1,19,20],[1127,1,1,20,21]]],[57,1,1,21,22,[[1141,1,1,21,22]]]],[24567,24778,25477,25883,25884,26210,26286,26387,26586,26613,26912,26917,27275,28595,28625,29044,29104,29289,29336,29824,29854,30125]]],["cause",[3,3,[[42,1,1,0,1,[[1014,1,1,0,1]]],[50,1,1,1,2,[[1107,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[26822,29474,30452]]],["deed",[1,1,[[45,1,1,0,1,[[1066,1,1,0,1]]]],[28457]]],["end",[3,3,[[42,1,1,0,1,[[1014,1,1,0,1]]],[44,1,1,1,2,[[1059,1,1,1,2]]],[46,1,1,2,3,[[1079,1,1,2,3]]]],[26822,28289,28833]]],["intent",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27237]]],["it",[5,5,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[970,1,1,2,3]]],[41,1,1,3,4,[[990,1,1,3,4]]],[57,1,1,4,5,[[1145,1,1,4,5]]]],[23500,24407,24759,25724,30258]]],["partly",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30166]]],["purpose",[1,1,[[61,1,1,0,1,[[1161,1,1,0,1]]]],[30587]]],["same",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29345]]],["so",[5,5,[[42,1,1,0,1,[[1016,1,1,0,1]]],[43,2,2,1,3,[[1036,1,1,1,2],[1040,1,1,2,3]]],[44,1,1,3,4,[[1057,1,1,3,4]]],[45,1,1,4,5,[[1068,1,1,4,5]]]],[26887,27599,27741,28265,28524]]],["that",[18,17,[[40,1,1,0,1,[[969,1,1,0,1]]],[42,5,5,1,6,[[999,1,1,1,2],[1000,1,1,2,3],[1007,2,2,3,5],[1010,1,1,5,6]]],[44,6,5,6,11,[[1052,5,4,6,10],[1058,1,1,10,11]]],[45,1,1,11,12,[[1067,1,1,11,12]]],[47,1,1,12,13,[[1096,1,1,12,13]]],[48,1,1,13,14,[[1098,1,1,13,14]]],[49,1,1,14,15,[[1103,1,1,14,15]]],[53,1,1,15,16,[[1123,1,1,15,16]]],[57,1,1,16,17,[[1145,1,1,16,17]]]],[24728,26152,26174,26530,26534,26681,28106,28107,28110,28111,28277,28473,29195,29237,29389,29767,30258]]],["thing",[6,6,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,2,2,1,3,[[981,1,1,1,2],[994,1,1,2,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]],[43,1,1,4,5,[[1043,1,1,4,5]]],[45,1,1,5,6,[[1070,1,1,5,6]]]],[24396,25322,25887,26819,27849,28557]]],["this",[158,155,[[39,19,19,0,19,[[929,1,1,0,1],[936,1,1,1,2],[941,1,1,2,3],[943,1,1,3,4],[944,1,1,4,5],[945,1,1,5,6],[946,1,1,6,7],[947,1,1,7,8],[949,1,1,8,9],[952,1,1,9,10],[954,8,8,10,18],[956,1,1,18,19]]],[40,6,6,19,25,[[957,1,1,19,20],[965,1,1,20,21],[967,1,1,21,22],[970,3,3,22,25]]],[41,25,25,25,50,[[973,4,4,25,29],[974,2,2,29,31],[975,1,1,31,32],[977,1,1,32,33],[978,1,1,33,34],[979,2,2,34,36],[981,2,2,36,38],[982,2,2,38,40],[984,1,1,40,41],[985,1,1,41,42],[988,1,1,42,43],[990,1,1,43,44],[992,1,1,44,45],[994,5,5,45,50]]],[42,21,21,50,71,[[998,2,2,50,52],[1000,1,1,52,53],[1001,1,1,53,54],[1002,4,4,54,58],[1003,1,1,58,59],[1004,1,1,59,60],[1007,2,2,60,62],[1008,2,2,62,64],[1009,1,1,64,65],[1012,2,2,65,67],[1014,1,1,67,68],[1015,1,1,68,69],[1016,1,1,69,70],[1017,1,1,70,71]]],[43,22,22,71,93,[[1019,4,4,71,75],[1021,2,2,75,77],[1022,3,3,77,80],[1024,1,1,80,81],[1025,1,1,81,82],[1026,1,1,82,83],[1028,1,1,83,84],[1033,1,1,84,85],[1036,3,3,85,88],[1037,1,1,88,89],[1038,1,1,89,90],[1041,1,1,90,91],[1043,1,1,91,92],[1044,1,1,92,93]]],[44,5,5,93,98,[[1047,1,1,93,94],[1051,1,1,94,95],[1056,1,1,95,96],[1059,1,1,96,97],[1060,1,1,97,98]]],[45,17,14,98,112,[[1062,1,1,98,99],[1066,1,1,99,100],[1068,4,4,100,104],[1070,1,1,104,105],[1072,5,4,105,109],[1076,5,3,109,112]]],[46,9,9,112,121,[[1079,2,2,112,114],[1084,1,1,114,115],[1085,2,2,115,117],[1086,1,1,117,118],[1087,2,2,118,120],[1090,1,1,120,121]]],[47,1,1,121,122,[[1093,1,1,121,122]]],[48,2,2,122,124,[[1101,1,1,122,123],[1102,1,1,123,124]]],[49,5,5,124,129,[[1103,4,4,124,128],[1105,1,1,128,129]]],[50,2,2,129,131,[[1108,1,1,129,130],[1109,1,1,130,131]]],[51,3,3,131,134,[[1114,2,2,131,133],[1115,1,1,133,134]]],[52,1,1,134,135,[[1118,1,1,134,135]]],[53,3,3,135,138,[[1119,1,1,135,136],[1120,1,1,136,137],[1122,1,1,137,138]]],[57,5,5,138,143,[[1138,1,1,138,139],[1139,1,1,139,140],[1141,2,2,140,142],[1145,1,1,142,143]]],[58,1,1,143,144,[[1149,1,1,143,144]]],[59,3,3,144,147,[[1151,1,1,144,145],[1152,2,2,145,147]]],[60,4,4,147,151,[[1156,1,1,147,148],[1158,3,3,148,151]]],[61,1,1,151,152,[[1162,1,1,151,152]]],[64,2,2,152,154,[[1166,2,2,152,154]]],[65,1,1,154,155,[[1168,1,1,154,155]]]],[23166,23354,23567,23644,23694,23721,23731,23788,23830,23971,24063,24066,24067,24080,24082,24093,24096,24110,24209,24242,24559,24643,24763,24776,24790,24911,24927,24936,24959,24985,24988,25045,25113,25149,25199,25203,25346,25349,25374,25391,25498,25526,25622,25722,25796,25879,25881,25883,25901,25906,26107,26117,26171,26238,26263,26296,26297,26318,26367,26421,26549,26574,26585,26598,26658,26743,26744,26823,26853,26889,26917,26961,26963,26965,26982,27029,27044,27063,27083,27097,27176,27210,27237,27317,27501,27595,27602,27612,27655,27687,27783,27839,27889,27965,28074,28234,28293,28331,28375,28456,28493,28513,28516,28522,28563,28617,28624,28625,28626,28768,28771,28772,28825,28827,28927,28942,28952,28962,28978,28982,29052,29119,29309,29338,29368,29370,29380,29383,29436,29498,29537,29606,29618,29639,29688,29705,29719,29763,30047,30091,30113,30132,30260,30352,30399,30418,30419,30499,30525,30527,30530,30606,30676,30677,30723]]],["thus",[2,2,[[41,1,1,0,1,[[996,1,1,0,1]]],[46,1,1,1,2,[[1082,1,1,1,2]]]],[26031,28891]]]]},{"k":"G5125","v":[["*",[18,18,[[41,2,2,0,2,[[988,1,1,0,1],[996,1,1,1,2]]],[43,2,2,2,4,[[1021,1,1,2,3],[1022,1,1,3,4]]],[44,3,3,4,7,[[1053,1,1,4,5],[1059,1,1,5,6],[1060,1,1,6,7]]],[45,1,1,7,8,[[1073,1,1,7,8]]],[47,1,1,8,9,[[1095,1,1,8,9]]],[50,1,1,9,10,[[1109,1,1,9,10]]],[51,1,1,10,11,[[1114,1,1,10,11]]],[53,2,2,11,13,[[1122,1,1,11,12],[1124,1,1,12,13]]],[57,1,1,13,14,[[1141,1,1,13,14]]],[60,1,1,14,15,[[1157,1,1,14,15]]],[63,1,1,15,16,[[1165,1,1,15,16]]],[64,2,2,16,18,[[1166,2,2,16,18]]]],[25646,26012,27038,27094,28153,28298,28326,28657,29183,29531,29621,29762,29796,30128,30520,30668,30682,30686]]],["+",[2,2,[[53,1,1,0,1,[[1124,1,1,0,1]]],[63,1,1,1,2,[[1165,1,1,1,2]]]],[29796,30668]]],["such",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29183]]],["them",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29762]]],["therein",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30520]]],["these",[7,7,[[43,2,2,0,2,[[1021,1,1,0,1],[1022,1,1,1,2]]],[44,1,1,2,3,[[1060,1,1,2,3]]],[45,1,1,3,4,[[1073,1,1,3,4]]],[51,1,1,4,5,[[1114,1,1,4,5]]],[57,1,1,5,6,[[1141,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[27038,27094,28326,28657,29621,30128,30686]]],["things",[4,4,[[44,2,2,0,2,[[1053,1,1,0,1],[1059,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[28153,28298,29531,30682]]],["this",[2,2,[[41,2,2,0,2,[[988,1,1,0,1],[996,1,1,1,2]]]],[25646,26012]]]]},{"k":"G5126","v":[["*",[64,63,[[39,3,3,0,3,[[947,1,1,0,1],[949,1,1,1,2],[955,1,1,2,3]]],[40,3,3,3,6,[[963,1,1,3,4],[970,2,2,4,6]]],[41,11,11,6,17,[[981,2,2,6,8],[984,2,2,8,10],[988,1,1,10,11],[991,1,1,11,12],[992,2,2,12,14],[995,3,3,14,17]]],[42,14,14,17,31,[[998,1,1,17,18],[1001,1,1,18,19],[1002,3,3,19,22],[1003,1,1,22,23],[1005,2,2,23,25],[1014,1,1,25,26],[1015,4,4,26,30],[1017,1,1,30,31]]],[43,22,21,31,52,[[1019,3,3,31,34],[1020,1,1,34,35],[1022,2,2,35,37],[1023,1,1,37,38],[1024,2,1,38,39],[1027,1,1,39,40],[1030,1,1,40,41],[1032,1,1,41,42],[1033,1,1,42,43],[1034,1,1,43,44],[1038,1,1,44,45],[1040,4,4,45,49],[1041,1,1,49,50],[1042,1,1,50,51],[1045,1,1,51,52]]],[44,2,2,52,54,[[1054,1,1,52,53],[1060,1,1,53,54]]],[45,5,5,54,59,[[1063,1,1,54,55],[1064,2,2,55,57],[1072,2,2,57,59]]],[46,1,1,59,60,[[1081,1,1,59,60]]],[49,1,1,60,61,[[1104,1,1,60,61]]],[52,1,1,61,62,[[1118,1,1,61,62]]],[57,1,1,62,63,[[1140,1,1,62,63]]]],[23773,23870,24161,24492,24812,24825,25314,25327,25464,25515,25648,25745,25791,25792,25937,25949,25953,26114,26216,26284,26291,26315,26355,26469,26479,26825,26833,26837,26838,26845,26919,26972,26981,26985,27012,27090,27096,27115,27151,27299,27389,27480,27486,27546,27692,27751,27752,27759,27761,27774,27820,27925,28164,28331,28396,28422,28427,28626,28627,28866,29414,29692,30095]]],["+",[4,4,[[42,1,1,0,1,[[1015,1,1,0,1]]],[43,3,3,1,4,[[1020,1,1,1,2],[1030,1,1,2,3],[1032,1,1,3,4]]]],[26837,27012,27389,27480]]],["Him",[5,5,[[43,4,4,0,4,[[1019,1,1,0,1],[1022,1,1,1,2],[1027,1,1,2,3],[1033,1,1,3,4]]],[49,1,1,4,5,[[1104,1,1,4,5]]]],[26972,27090,27299,27486,29414]]],["This",[4,4,[[42,1,1,0,1,[[1015,1,1,0,1]]],[43,3,3,1,4,[[1019,1,1,1,2],[1024,1,1,2,3],[1040,1,1,3,4]]]],[26845,26981,27151,27761]]],["him",[11,11,[[39,1,1,0,1,[[955,1,1,0,1]]],[41,4,4,1,5,[[981,1,1,1,2],[984,1,1,2,3],[992,2,2,3,5]]],[42,3,3,5,8,[[1001,1,1,5,6],[1002,1,1,6,7],[1017,1,1,7,8]]],[43,1,1,8,9,[[1034,1,1,8,9]]],[45,2,2,9,11,[[1063,1,1,9,10],[1064,1,1,10,11]]]],[24161,25327,25464,25791,25792,26216,26284,26919,27546,28396,28427]]],["man",[6,6,[[42,2,2,0,2,[[1003,1,1,0,1],[1014,1,1,1,2]]],[43,2,2,2,4,[[1022,1,1,2,3],[1042,1,1,3,4]]],[52,1,1,4,5,[[1118,1,1,4,5]]],[57,1,1,5,6,[[1140,1,1,5,6]]]],[26355,26825,27096,27820,29692,30095]]],["same",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1024,1,1,1,2]]]],[26985,27151]]],["that",[2,2,[[42,2,2,0,2,[[1015,2,2,0,2]]]],[26833,26838]]],["this",[30,30,[[39,2,2,0,2,[[947,1,1,0,1],[949,1,1,1,2]]],[40,3,3,2,5,[[963,1,1,2,3],[970,2,2,3,5]]],[41,7,7,5,12,[[981,1,1,5,6],[984,1,1,6,7],[988,1,1,7,8],[991,1,1,8,9],[995,3,3,9,12]]],[42,5,5,12,17,[[998,1,1,12,13],[1002,2,2,13,15],[1005,2,2,15,17]]],[43,7,7,17,24,[[1023,1,1,17,18],[1038,1,1,18,19],[1040,3,3,19,22],[1041,1,1,22,23],[1045,1,1,23,24]]],[44,2,2,24,26,[[1054,1,1,24,25],[1060,1,1,25,26]]],[45,3,3,26,29,[[1064,1,1,26,27],[1072,2,2,27,29]]],[46,1,1,29,30,[[1081,1,1,29,30]]]],[23773,23870,24492,24812,24825,25314,25515,25648,25745,25937,25949,25953,26114,26291,26315,26469,26479,27115,27692,27751,27752,27759,27774,27925,28164,28331,28422,28626,28627,28866]]]]},{"k":"G5127","v":[["*",[77,72,[[39,6,6,0,6,[[941,3,3,0,3],[947,1,1,3,4],[954,1,1,4,5],[955,1,1,5,6]]],[40,2,2,6,8,[[960,1,1,6,7],[966,1,1,7,8]]],[41,7,7,8,15,[[974,1,1,8,9],[981,1,1,9,10],[985,1,1,10,11],[988,1,1,11,12],[992,1,1,12,13],[994,1,1,13,14],[996,1,1,14,15]]],[42,19,16,15,31,[[1000,1,1,15,16],[1002,3,3,16,19],[1004,2,1,19,20],[1005,1,1,20,21],[1006,1,1,21,22],[1007,1,1,22,23],[1008,2,1,23,24],[1009,1,1,24,25],[1010,1,1,25,26],[1012,1,1,26,27],[1014,4,3,27,30],[1015,1,1,30,31]]],[43,16,16,31,47,[[1021,1,1,31,32],[1022,1,1,32,33],[1023,1,1,33,34],[1026,1,1,34,35],[1030,3,3,35,38],[1032,2,2,38,40],[1034,1,1,40,41],[1038,1,1,41,42],[1039,1,1,42,43],[1042,2,2,43,45],[1045,2,2,45,47]]],[44,2,2,47,49,[[1052,1,1,47,48],[1056,1,1,48,49]]],[45,8,6,49,55,[[1062,2,1,49,50],[1063,3,2,50,52],[1064,1,1,52,53],[1066,1,1,53,54],[1068,1,1,54,55]]],[46,2,2,55,57,[[1081,1,1,55,56],[1089,1,1,56,57]]],[48,5,5,57,62,[[1098,1,1,57,58],[1099,2,2,58,60],[1101,1,1,60,61],[1102,1,1,61,62]]],[50,1,1,62,63,[[1107,1,1,62,63]]],[55,1,1,63,64,[[1129,1,1,63,64]]],[58,2,2,64,66,[[1146,1,1,64,65],[1147,1,1,65,66]]],[61,1,1,66,67,[[1162,1,1,66,67]]],[65,5,5,67,72,[[1185,1,1,67,68],[1188,4,4,68,72]]]],[23554,23561,23579,23767,24083,24153,24342,24595,24990,25346,25534,25628,25813,25915,25995,26169,26308,26318,26323,26404,26471,26522,26532,26611,26631,26698,26737,26802,26814,26821,26837,27039,27087,27114,27229,27379,27385,27400,27444,27448,27555,27692,27726,27816,27821,27908,27926,28115,28216,28383,28400,28402,28429,28464,28518,28863,29030,29231,29252,29265,29335,29349,29492,29897,30292,30298,30609,31037,31087,31089,31090,31098]]],["+",[10,10,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,2,2,2,4,[[994,1,1,2,3],[996,1,1,3,4]]],[43,1,1,4,5,[[1042,1,1,4,5]]],[48,3,3,5,8,[[1099,2,2,5,7],[1101,1,1,7,8]]],[55,1,1,8,9,[[1129,1,1,8,9]]],[61,1,1,9,10,[[1162,1,1,9,10]]]],[23767,24595,25915,25995,27816,29252,29265,29335,29897,30609]]],["hath",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28216]]],["he",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27821]]],["him",[2,2,[[42,1,1,0,1,[[1005,1,1,0,1]]],[65,1,1,1,2,[[1185,1,1,1,2]]]],[26471,31037]]],["it",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26318]]],["man",[2,2,[[42,1,1,0,1,[[1006,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]]],[26522,27400]]],["man's",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[58,1,1,1,2,[[1146,1,1,1,2]]]],[27385,30292]]],["that",[2,2,[[41,1,1,0,1,[[981,1,1,0,1]]],[42,1,1,1,2,[[1002,1,1,1,2]]]],[25346,26323]]],["thenceforth",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26837]]],["thing",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29030]]],["this",[54,49,[[39,5,5,0,5,[[941,3,3,0,3],[954,1,1,3,4],[955,1,1,4,5]]],[40,1,1,5,6,[[960,1,1,5,6]]],[41,4,4,6,10,[[974,1,1,6,7],[985,1,1,7,8],[988,1,1,8,9],[992,1,1,9,10]]],[42,14,11,10,21,[[1000,1,1,10,11],[1002,1,1,11,12],[1004,2,1,12,13],[1007,1,1,13,14],[1008,2,1,14,15],[1009,1,1,15,16],[1010,1,1,16,17],[1012,1,1,17,18],[1014,4,3,18,21]]],[43,12,12,21,33,[[1021,1,1,21,22],[1022,1,1,22,23],[1023,1,1,23,24],[1026,1,1,24,25],[1030,1,1,25,26],[1032,2,2,26,28],[1034,1,1,28,29],[1038,1,1,29,30],[1039,1,1,30,31],[1045,2,2,31,33]]],[44,1,1,33,34,[[1052,1,1,33,34]]],[45,8,6,34,40,[[1062,2,1,34,35],[1063,3,2,35,37],[1064,1,1,37,38],[1066,1,1,38,39],[1068,1,1,39,40]]],[46,1,1,40,41,[[1081,1,1,40,41]]],[48,2,2,41,43,[[1098,1,1,41,42],[1102,1,1,42,43]]],[50,1,1,43,44,[[1107,1,1,43,44]]],[58,1,1,44,45,[[1147,1,1,44,45]]],[65,4,4,45,49,[[1188,4,4,45,49]]]],[23554,23561,23579,24083,24153,24342,24990,25534,25628,25813,26169,26308,26404,26532,26611,26631,26698,26737,26802,26814,26821,27039,27087,27114,27229,27379,27444,27448,27555,27692,27726,27908,27926,28115,28383,28400,28402,28429,28464,28518,28863,29231,29349,29492,30298,31087,31089,31090,31098]]]]},{"k":"G5128","v":[["*",[27,25,[[39,6,6,0,6,[[935,3,3,0,3],[938,1,1,3,4],[947,1,1,4,5],[954,1,1,5,6]]],[40,1,1,6,7,[[964,1,1,6,7]]],[41,4,4,7,11,[[981,2,2,7,9],[991,1,1,9,10],[992,1,1,10,11]]],[42,2,2,11,13,[[1006,1,1,11,12],[1014,1,1,12,13]]],[43,7,7,13,20,[[1019,1,1,13,14],[1022,2,2,14,16],[1027,1,1,16,17],[1033,1,1,17,18],[1036,1,1,18,19],[1038,1,1,19,20]]],[44,3,1,20,21,[[1053,3,1,20,21]]],[45,2,2,21,23,[[1067,1,1,21,22],[1077,1,1,22,23]]],[54,1,1,23,24,[[1127,1,1,23,24]]],[57,1,1,24,25,[[1134,1,1,24,25]]]],[23340,23342,23344,23422,23763,24055,24504,25329,25345,25746,25795,26500,26793,26971,27064,27083,27306,27519,27622,27688,28146,28471,28779,29858,29992]]],["+",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29858]]],["Them",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27688]]],["These",[1,1,[[39,1,1,0,1,[[938,1,1,0,1]]]],[23422]]],["them",[6,4,[[44,3,1,0,1,[[1053,3,1,0,1]]],[45,2,2,1,3,[[1067,1,1,1,2],[1077,1,1,2,3]]],[57,1,1,3,4,[[1134,1,1,3,4]]]],[28146,28471,28779,29992]]],["these",[17,17,[[39,5,5,0,5,[[935,3,3,0,3],[947,1,1,3,4],[954,1,1,4,5]]],[40,1,1,5,6,[[964,1,1,5,6]]],[41,4,4,6,10,[[981,2,2,6,8],[991,1,1,8,9],[992,1,1,9,10]]],[42,2,2,10,12,[[1006,1,1,10,11],[1014,1,1,11,12]]],[43,5,5,12,17,[[1019,1,1,12,13],[1022,2,2,13,15],[1027,1,1,15,16],[1036,1,1,16,17]]]],[23340,23342,23344,23763,24055,24504,25329,25345,25746,25795,26500,26793,26971,27064,27083,27306,27622]]],["this",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27519]]]]},{"k":"G5129","v":[["*",[88,86,[[39,7,7,0,7,[[936,1,1,0,1],[940,1,1,1,2],[941,2,2,2,4],[945,1,1,4,5],[948,1,1,5,6],[949,1,1,6,7]]],[40,3,3,7,10,[[962,1,1,7,8],[966,1,1,8,9],[967,1,1,9,10]]],[41,12,12,10,22,[[973,1,1,10,11],[976,1,1,11,12],[979,1,1,12,13],[982,2,2,13,15],[986,1,1,15,16],[990,1,1,16,17],[991,2,2,17,19],[993,1,1,19,20],[995,2,2,20,22]]],[42,13,13,22,35,[[1000,4,4,22,26],[1001,1,1,26,27],[1005,1,1,27,28],[1006,1,1,28,29],[1008,1,1,29,30],[1009,2,2,30,32],[1011,1,1,32,33],[1012,1,1,33,34],[1016,1,1,34,35]]],[43,17,17,35,52,[[1018,1,1,35,36],[1020,1,1,36,37],[1021,1,1,37,38],[1022,1,1,38,39],[1024,2,2,39,41],[1025,2,2,41,43],[1027,1,1,43,44],[1030,1,1,44,45],[1032,1,1,45,46],[1038,1,1,46,47],[1040,1,1,47,48],[1041,3,3,48,51],[1042,1,1,51,52]]],[44,2,2,52,54,[[1057,1,1,52,53],[1058,1,1,53,54]]],[45,6,6,54,60,[[1064,1,1,54,55],[1065,1,1,55,56],[1068,2,2,56,58],[1072,1,1,58,59],[1075,1,1,59,60]]],[46,4,4,60,64,[[1080,1,1,60,61],[1082,1,1,61,62],[1085,1,1,62,63],[1086,1,1,63,64]]],[47,1,1,64,65,[[1096,1,1,64,65]]],[48,1,1,65,66,[[1097,1,1,65,66]]],[49,1,1,66,67,[[1103,1,1,66,67]]],[57,1,1,67,68,[[1136,1,1,67,68]]],[59,1,1,68,69,[[1154,1,1,68,69]]],[60,2,2,69,71,[[1156,1,1,69,70],[1157,1,1,70,71]]],[61,15,13,71,84,[[1160,4,3,71,74],[1161,4,4,74,78],[1162,6,5,78,83],[1163,1,1,83,84]]],[65,2,2,84,86,[[1188,2,2,84,86]]]],[23354,23521,23593,23595,23720,23806,23847,24409,24618,24663,24954,25066,25203,25368,25383,25562,25718,25740,25750,25849,25939,25949,26176,26177,26183,26193,26248,26470,26484,26605,26654,26665,26707,26756,26897,26929,27008,27032,27087,27123,27145,27197,27205,27302,27401,27457,27673,27743,27771,27779,27785,27801,28247,28275,28428,28437,28511,28518,28622,28699,28851,28879,28942,28959,29204,29227,29379,30019,30462,30492,30519,30553,30554,30555,30589,30595,30598,30603,30605,30612,30613,30616,30620,30626,31098,31099]]],["+",[17,17,[[42,3,3,0,3,[[1000,1,1,0,1],[1005,1,1,1,2],[1011,1,1,2,3]]],[43,1,1,3,4,[[1041,1,1,3,4]]],[45,2,2,4,6,[[1065,1,1,4,5],[1068,1,1,5,6]]],[46,1,1,6,7,[[1085,1,1,6,7]]],[49,1,1,7,8,[[1103,1,1,7,8]]],[61,9,9,8,17,[[1160,2,2,8,10],[1161,3,3,10,13],[1162,4,4,13,17]]]],[26193,26470,26707,27785,28437,28511,28942,29379,30553,30555,30595,30598,30603,30605,30613,30616,30620]]],["him",[9,9,[[41,1,1,0,1,[[991,1,1,0,1]]],[42,3,3,1,4,[[1001,1,1,1,2],[1006,1,1,2,3],[1009,1,1,3,4]]],[43,3,3,4,7,[[1021,1,1,4,5],[1027,1,1,5,6],[1030,1,1,6,7]]],[61,2,2,7,9,[[1160,2,2,7,9]]]],[25750,26248,26484,26654,27032,27302,27401,30554,30555]]],["man",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[43,1,1,1,2,[[1038,1,1,1,2]]]],[25562,27673]]],["one",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25203]]],["same",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30519]]],["this",[58,58,[[39,7,7,0,7,[[936,1,1,0,1],[940,1,1,1,2],[941,2,2,2,4],[945,1,1,4,5],[948,1,1,5,6],[949,1,1,6,7]]],[40,3,3,7,10,[[962,1,1,7,8],[966,1,1,8,9],[967,1,1,9,10]]],[41,9,9,10,19,[[973,1,1,10,11],[976,1,1,11,12],[982,2,2,12,14],[990,1,1,14,15],[991,1,1,15,16],[993,1,1,16,17],[995,2,2,17,19]]],[42,7,7,19,26,[[1000,3,3,19,22],[1008,1,1,22,23],[1009,1,1,23,24],[1012,1,1,24,25],[1016,1,1,25,26]]],[43,12,12,26,38,[[1018,1,1,26,27],[1020,1,1,27,28],[1022,1,1,28,29],[1024,2,2,29,31],[1025,2,2,31,33],[1032,1,1,33,34],[1040,1,1,34,35],[1041,2,2,35,37],[1042,1,1,37,38]]],[44,2,2,38,40,[[1057,1,1,38,39],[1058,1,1,39,40]]],[45,4,4,40,44,[[1064,1,1,40,41],[1068,1,1,41,42],[1072,1,1,42,43],[1075,1,1,43,44]]],[46,3,3,44,47,[[1080,1,1,44,45],[1082,1,1,45,46],[1086,1,1,46,47]]],[47,1,1,47,48,[[1096,1,1,47,48]]],[48,1,1,48,49,[[1097,1,1,48,49]]],[57,1,1,49,50,[[1136,1,1,49,50]]],[59,1,1,50,51,[[1154,1,1,50,51]]],[60,1,1,51,52,[[1156,1,1,51,52]]],[61,4,4,52,56,[[1161,1,1,52,53],[1162,2,2,53,55],[1163,1,1,55,56]]],[65,2,2,56,58,[[1188,2,2,56,58]]]],[23354,23521,23593,23595,23720,23806,23847,24409,24618,24663,24954,25066,25368,25383,25718,25740,25849,25939,25949,26176,26177,26183,26605,26665,26756,26897,26929,27008,27087,27123,27145,27197,27205,27457,27743,27771,27779,27801,28247,28275,28428,28518,28622,28699,28851,28879,28959,29204,29227,30019,30462,30492,30589,30612,30620,30626,31098,31099]]]]},{"k":"G5130","v":[["*",[68,67,[[39,12,12,0,12,[[931,1,1,0,1],[933,2,2,1,3],[934,2,2,3,5],[938,1,1,5,6],[939,1,1,6,7],[946,3,3,7,10],[953,2,2,10,12]]],[40,1,1,12,13,[[968,1,1,12,13]]],[41,11,11,13,24,[[975,1,1,13,14],[979,1,1,14,15],[982,1,1,15,16],[984,2,2,16,18],[989,1,1,18,19],[990,1,1,19,20],[993,2,2,20,22],[996,2,2,22,24]]],[42,6,6,24,30,[[997,1,1,24,25],[1001,1,1,25,26],[1003,1,1,26,27],[1010,1,1,27,28],[1013,1,1,28,29],[1017,1,1,29,30]]],[43,18,17,30,47,[[1018,2,2,30,32],[1022,3,3,32,35],[1031,1,1,35,36],[1032,1,1,36,37],[1035,2,2,37,39],[1036,1,1,39,40],[1038,1,1,40,41],[1041,1,1,41,42],[1042,2,2,42,44],[1043,4,3,44,47]]],[44,1,1,47,48,[[1056,1,1,47,48]]],[45,2,2,48,50,[[1070,1,1,48,49],[1074,1,1,49,50]]],[51,1,1,50,51,[[1114,1,1,50,51]]],[54,2,2,51,53,[[1126,1,1,51,52],[1127,1,1,52,53]]],[55,1,1,53,54,[[1131,1,1,53,54]]],[57,4,4,54,58,[[1133,1,1,54,55],[1141,1,1,55,56],[1142,1,1,56,57],[1145,1,1,57,58]]],[60,5,5,58,63,[[1156,3,3,58,61],[1158,2,2,61,63]]],[63,1,1,63,64,[[1165,1,1,63,64]]],[65,3,3,64,67,[[1175,1,1,64,65],[1184,1,1,65,66],[1186,1,1,66,67]]]],[23201,23253,23271,23311,23314,23459,23466,23733,23737,23741,24048,24053,24704,25033,25213,25399,25486,25489,25653,25722,25838,25854,26005,26039,26094,26230,26359,26680,26779,26913,26945,26947,27091,27095,27097,27429,27470,27572,27574,27621,27702,27777,27805,27816,27844,27849,27852,28239,28555,28678,29609,29848,29859,29931,29965,30111,30151,30252,30483,30491,30494,30533,30538,30662,30858,31008,31044]]],["+",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27844]]],["He",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26913]]],["be",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26945]]],["matters",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27816]]],["sort",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29859]]],["such",[3,3,[[43,1,1,0,1,[[1035,1,1,0,1]]],[51,1,1,1,2,[[1114,1,1,1,2]]],[65,1,1,2,3,[[1186,1,1,2,3]]]],[27572,29609,31044]]],["than",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30662]]],["their",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28239]]],["these",[35,35,[[39,10,10,0,10,[[931,1,1,0,1],[933,2,2,1,3],[934,1,1,3,4],[938,1,1,4,5],[946,3,3,5,8],[953,2,2,8,10]]],[40,1,1,10,11,[[968,1,1,10,11]]],[41,5,5,11,16,[[975,1,1,11,12],[982,1,1,12,13],[984,1,1,13,14],[989,1,1,14,15],[993,1,1,15,16]]],[42,5,5,16,21,[[997,1,1,16,17],[1001,1,1,17,18],[1003,1,1,18,19],[1010,1,1,19,20],[1013,1,1,20,21]]],[43,8,8,21,29,[[1018,1,1,21,22],[1022,3,3,22,25],[1031,1,1,25,26],[1032,1,1,26,27],[1038,1,1,27,28],[1043,1,1,28,29]]],[45,1,1,29,30,[[1074,1,1,29,30]]],[54,1,1,30,31,[[1126,1,1,30,31]]],[57,2,2,31,33,[[1133,1,1,31,32],[1142,1,1,32,33]]],[60,1,1,33,34,[[1156,1,1,33,34]]],[65,1,1,34,35,[[1175,1,1,34,35]]]],[23201,23253,23271,23311,23459,23733,23737,23741,24048,24053,24704,25033,25399,25486,25653,25838,26094,26230,26359,26680,26779,26947,27091,27095,27097,27429,27470,27702,27852,28678,29848,29965,30151,30483,30858]]],["they",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23466]]],["things",[21,20,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,6,6,1,7,[[979,1,1,1,2],[984,1,1,2,3],[990,1,1,3,4],[993,1,1,4,5],[996,2,2,5,7]]],[43,6,5,7,12,[[1035,1,1,7,8],[1036,1,1,8,9],[1041,1,1,9,10],[1042,1,1,10,11],[1043,2,1,11,12]]],[45,1,1,12,13,[[1070,1,1,12,13]]],[55,1,1,13,14,[[1131,1,1,13,14]]],[57,1,1,14,15,[[1141,1,1,14,15]]],[60,4,4,15,19,[[1156,2,2,15,17],[1158,2,2,17,19]]],[65,1,1,19,20,[[1184,1,1,19,20]]]],[23314,25213,25489,25722,25854,26005,26039,27574,27621,27777,27805,27849,28555,29931,30111,30491,30494,30533,30538,31008]]],["those",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30252]]]]},{"k":"G5131","v":[["goats",[4,4,[[57,4,4,0,4,[[1141,3,3,0,3],[1142,1,1,3,4]]]],[30117,30118,30124,30137]]]]},{"k":"G5132","v":[["*",[15,14,[[39,2,2,0,2,[[943,1,1,0,1],[949,1,1,1,2]]],[40,2,2,2,4,[[963,1,1,2,3],[967,1,1,3,4]]],[41,4,4,4,8,[[988,1,1,4,5],[991,1,1,5,6],[994,2,2,6,8]]],[42,1,1,8,9,[[998,1,1,8,9]]],[43,2,2,9,11,[[1023,1,1,9,10],[1033,1,1,10,11]]],[44,1,1,11,12,[[1056,1,1,11,12]]],[45,2,1,12,13,[[1071,2,1,12,13]]],[57,1,1,13,14,[[1141,1,1,13,14]]]],[23660,23838,24491,24655,25641,25754,25885,25894,26110,27103,27517,28218,28588,30107]]],["+",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27517]]],["bank",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25754]]],["table",[9,8,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,3,3,2,5,[[988,1,1,2,3],[994,2,2,3,5]]],[44,1,1,5,6,[[1056,1,1,5,6]]],[45,2,1,6,7,[[1071,2,1,6,7]]],[57,1,1,7,8,[[1141,1,1,7,8]]]],[23660,24491,25641,25885,25894,28218,28588,30107]]],["tables",[4,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[42,1,1,2,3,[[998,1,1,2,3]]],[43,1,1,3,4,[[1023,1,1,3,4]]]],[23838,24655,26110,27103]]]]},{"k":"G5133","v":[["exchangers",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24035]]]]},{"k":"G5134","v":[["wounds",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25397]]]]},{"k":"G5135","v":[["wounded",[2,2,[[41,1,1,0,1,[[992,1,1,0,1]]],[43,1,1,1,2,[[1036,1,1,1,2]]]],[25791,27601]]]]},{"k":"G5136","v":[["opened",[1,1,[[57,1,1,0,1,[[1136,1,1,0,1]]]],[30027]]]]},{"k":"G5137","v":[["*",[7,7,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,2,2,2,4,[[987,1,1,2,3],[989,1,1,3,4]]],[43,2,2,4,6,[[1032,1,1,4,5],[1037,1,1,5,6]]],[44,1,1,6,7,[[1061,1,1,6,7]]]],[23733,24580,25608,25653,27452,27663,28340]]],["neck",[6,6,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,2,2,2,4,[[987,1,1,2,3],[989,1,1,3,4]]],[43,2,2,4,6,[[1032,1,1,4,5],[1037,1,1,5,6]]]],[23733,24580,25608,25653,27452,27663]]],["necks",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28340]]]]},{"k":"G5138","v":[["*",[2,2,[[41,1,1,0,1,[[975,1,1,0,1]]],[43,1,1,1,2,[[1044,1,1,1,2]]]],[25030,27884]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27884]]],["ways",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25030]]]]},{"k":"G5139","v":[["Trachonitis",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25026]]]]},{"k":"G5140","v":[["*",[69,60,[[39,12,9,0,9,[[940,4,1,0,1],[941,1,1,1,2],[943,1,1,2,3],[945,1,1,3,4],[946,2,2,4,6],[954,1,1,6,7],[955,2,2,7,9]]],[40,5,5,9,14,[[964,2,2,9,11],[965,1,1,11,12],[970,1,1,12,13],[971,1,1,13,14]]],[41,10,9,14,23,[[973,1,1,14,15],[974,1,1,15,16],[976,1,1,16,17],[981,1,1,17,18],[982,1,1,18,19],[983,1,1,19,20],[984,2,1,20,21],[985,2,2,21,23]]],[42,4,4,23,27,[[998,3,3,23,26],[1017,1,1,26,27]]],[43,14,14,27,41,[[1022,1,1,27,28],[1024,1,1,28,29],[1026,1,1,29,30],[1027,1,1,30,31],[1028,1,1,31,32],[1034,1,1,32,33],[1036,1,1,33,34],[1037,1,1,34,35],[1042,1,1,35,36],[1045,5,5,36,41]]],[45,4,4,41,45,[[1071,1,1,41,42],[1074,1,1,42,43],[1075,2,2,43,45]]],[46,1,1,45,46,[[1090,1,1,45,46]]],[47,1,1,46,47,[[1091,1,1,46,47]]],[53,1,1,47,48,[[1123,1,1,47,48]]],[57,1,1,48,49,[[1142,1,1,48,49]]],[58,1,1,49,50,[[1150,1,1,49,50]]],[61,4,2,50,52,[[1163,4,2,50,52]]],[65,11,8,52,60,[[1172,1,1,52,53],[1174,1,1,53,54],[1175,1,1,54,55],[1177,2,2,55,57],[1182,2,2,57,59],[1187,4,1,59,60]]]],[23529,23572,23665,23704,23743,23747,24115,24169,24192,24502,24531,24543,24812,24855,24949,25019,25088,25334,25399,25410,25511,25525,25539,26101,26114,26115,26909,27066,27136,27225,27278,27318,27525,27593,27629,27797,27906,27910,27911,27914,27916,28575,28678,28705,28707,29044,29075,29782,30161,30371,30631,30632,30799,30840,30858,30881,30883,30967,30973,31066]]],["+",[2,2,[[42,1,1,0,1,[[1017,1,1,0,1]]],[45,1,1,1,2,[[1071,1,1,1,2]]]],[26909,28575]]],["three",[67,58,[[39,12,9,0,9,[[940,4,1,0,1],[941,1,1,1,2],[943,1,1,2,3],[945,1,1,3,4],[946,2,2,4,6],[954,1,1,6,7],[955,2,2,7,9]]],[40,5,5,9,14,[[964,2,2,9,11],[965,1,1,11,12],[970,1,1,12,13],[971,1,1,13,14]]],[41,10,9,14,23,[[973,1,1,14,15],[974,1,1,15,16],[976,1,1,16,17],[981,1,1,17,18],[982,1,1,18,19],[983,1,1,19,20],[984,2,1,20,21],[985,2,2,21,23]]],[42,3,3,23,26,[[998,3,3,23,26]]],[43,14,14,26,40,[[1022,1,1,26,27],[1024,1,1,27,28],[1026,1,1,28,29],[1027,1,1,29,30],[1028,1,1,30,31],[1034,1,1,31,32],[1036,1,1,32,33],[1037,1,1,33,34],[1042,1,1,34,35],[1045,5,5,35,40]]],[45,3,3,40,43,[[1074,1,1,40,41],[1075,2,2,41,43]]],[46,1,1,43,44,[[1090,1,1,43,44]]],[47,1,1,44,45,[[1091,1,1,44,45]]],[53,1,1,45,46,[[1123,1,1,45,46]]],[57,1,1,46,47,[[1142,1,1,46,47]]],[58,1,1,47,48,[[1150,1,1,47,48]]],[61,4,2,48,50,[[1163,4,2,48,50]]],[65,11,8,50,58,[[1172,1,1,50,51],[1174,1,1,51,52],[1175,1,1,52,53],[1177,2,2,53,55],[1182,2,2,55,57],[1187,4,1,57,58]]]],[23529,23572,23665,23704,23743,23747,24115,24169,24192,24502,24531,24543,24812,24855,24949,25019,25088,25334,25399,25410,25511,25525,25539,26101,26114,26115,27066,27136,27225,27278,27318,27525,27593,27629,27797,27906,27910,27911,27914,27916,28678,28705,28707,29044,29075,29782,30161,30371,30631,30632,30799,30840,30858,30881,30883,30967,30973,31066]]]]},{"k":"G5141","v":[["*",[4,4,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[43,1,1,2,3,[[1026,1,1,2,3]]],[60,1,1,3,4,[[1157,1,1,3,4]]]],[24397,25292,27222,30510]]],["afraid",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30510]]],["trembling",[3,3,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[43,1,1,2,3,[[1026,1,1,2,3]]]],[24397,25292,27222]]]]},{"k":"G5142","v":[["*",[8,8,[[39,2,2,0,2,[[934,1,1,0,1],[953,1,1,1,2]]],[41,2,2,2,4,[[976,1,1,2,3],[984,1,1,3,4]]],[43,1,1,4,5,[[1029,1,1,4,5]]],[58,1,1,5,6,[[1150,1,1,5,6]]],[65,2,2,6,8,[[1178,2,2,6,8]]]],[23308,24045,25079,25483,27357,30359,30897,30905]]],["fed",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24045]]],["feed",[1,1,[[65,1,1,0,1,[[1178,1,1,0,1]]]],[30897]]],["feedeth",[2,2,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[23308,25483]]],["nourished",[3,3,[[43,1,1,0,1,[[1029,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]],[65,1,1,2,3,[[1178,1,1,2,3]]]],[27357,30359,30905]]],["up",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25079]]]]},{"k":"G5143","v":[["*",[20,17,[[39,2,2,0,2,[[955,1,1,0,1],[956,1,1,1,2]]],[40,2,2,2,4,[[961,1,1,2,3],[971,1,1,3,4]]],[41,2,2,4,6,[[987,1,1,4,5],[996,1,1,5,6]]],[42,2,2,6,8,[[1016,2,2,6,8]]],[44,1,1,8,9,[[1054,1,1,8,9]]],[45,4,2,9,11,[[1070,4,2,9,11]]],[47,3,2,11,13,[[1092,2,1,11,12],[1095,1,1,12,13]]],[49,1,1,13,14,[[1104,1,1,13,14]]],[52,1,1,14,15,[[1118,1,1,14,15]]],[57,1,1,15,16,[[1144,1,1,15,16]]],[65,1,1,16,17,[[1175,1,1,16,17]]]],[24177,24203,24370,24862,25608,26003,26869,26871,28171,28564,28566,29083,29169,29407,29679,30213,30849]]],["course",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29679]]],["ran",[6,6,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[971,1,1,2,3]]],[41,2,2,3,5,[[987,1,1,3,4],[996,1,1,4,5]]],[42,1,1,5,6,[[1016,1,1,5,6]]]],[24177,24370,24862,25608,26003,26871]]],["run",[10,7,[[39,1,1,0,1,[[956,1,1,0,1]]],[45,4,2,1,3,[[1070,4,2,1,3]]],[47,3,2,3,5,[[1092,2,1,3,4],[1095,1,1,4,5]]],[49,1,1,5,6,[[1104,1,1,5,6]]],[57,1,1,6,7,[[1144,1,1,6,7]]]],[24203,28564,28566,29083,29169,29407,30213]]],["runneth",[2,2,[[42,1,1,0,1,[[1016,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]]],[26869,28171]]],["running",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30849]]]]},{"k":"G5144","v":[["*",[11,11,[[39,5,5,0,5,[[941,2,2,0,2],[954,1,1,2,3],[955,2,2,3,5]]],[40,2,2,5,7,[[960,2,2,5,7]]],[41,1,1,7,8,[[975,1,1,7,8]]],[42,2,2,8,10,[[1001,1,1,8,9],[1002,1,1,9,10]]],[47,1,1,10,11,[[1093,1,1,10,11]]]],[23547,23562,24069,24132,24138,24331,24343,25048,26215,26276,29119]]],["+",[3,3,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[42,1,1,2,3,[[1001,1,1,2,3]]]],[24343,25048,26215]]],["thirty",[7,7,[[39,4,4,0,4,[[941,1,1,0,1],[954,1,1,1,2],[955,2,2,2,4]]],[40,1,1,4,5,[[960,1,1,4,5]]],[42,1,1,5,6,[[1002,1,1,5,6]]],[47,1,1,6,7,[[1093,1,1,6,7]]]],[23562,24069,24132,24138,24331,26276,29119]]],["thirtyfold",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23547]]]]},{"k":"G5145","v":[["hundred",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]]],[24759,26585]]]]},{"k":"G5146","v":[["*",[2,2,[[39,1,1,0,1,[[935,1,1,0,1]]],[57,1,1,1,2,[[1138,1,1,1,2]]]],[23332,30052]]],["briers",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30052]]],["thistles",[1,1,[[39,1,1,0,1,[[935,1,1,0,1]]]],[23332]]]]},{"k":"G5147","v":[["paths",[3,3,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[975,1,1,2,3]]]],[23195,24218,25029]]]]},{"k":"G5148","v":[["years",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27657]]]]},{"k":"G5149","v":[["gnasheth",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24556]]]]},{"k":"G5150","v":[["months",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30195]]]]},{"k":"G5151","v":[["*",[12,11,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,2,2,2,4,[[970,2,2,2,4]]],[41,2,2,4,6,[[994,2,2,4,6]]],[42,1,1,6,7,[[1009,1,1,6,7]]],[43,2,2,7,9,[[1027,1,1,7,8],[1028,1,1,8,9]]],[46,3,2,9,11,[[1088,2,1,9,10],[1089,1,1,10,11]]]],[24088,24129,24784,24826,25898,25925,26668,27275,27317,29014,29030]]],["Thrice",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29014]]],["thrice",[10,10,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,2,2,2,4,[[970,2,2,2,4]]],[41,2,2,4,6,[[994,2,2,4,6]]],[42,1,1,6,7,[[1009,1,1,6,7]]],[43,1,1,7,8,[[1027,1,1,7,8]]],[46,2,2,8,10,[[1088,1,1,8,9],[1089,1,1,9,10]]]],[24088,24129,24784,24826,25898,25925,26668,27275,29014,29030]]],["times",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27317]]]]},{"k":"G5152","v":[["loft",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27635]]]]},{"k":"G5153","v":[["thousand",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26990]]]]},{"k":"G5154","v":[["*",[57,49,[[39,7,7,0,7,[[944,1,1,0,1],[945,1,1,1,2],[948,2,2,2,4],[950,1,1,4,5],[954,1,1,5,6],[955,1,1,6,7]]],[40,5,5,7,12,[[965,1,1,7,8],[966,1,1,8,9],[968,1,1,9,10],[970,1,1,10,11],[971,1,1,11,12]]],[41,10,10,12,22,[[981,1,1,12,13],[984,1,1,13,14],[985,1,1,14,15],[990,1,1,15,16],[992,2,2,16,18],[995,1,1,18,19],[996,3,3,19,22]]],[42,4,3,22,25,[[998,1,1,22,23],[1017,3,2,23,25]]],[43,4,4,25,29,[[1019,1,1,25,26],[1027,1,1,26,27],[1040,1,1,27,28],[1044,1,1,28,29]]],[45,2,2,29,31,[[1073,1,1,29,30],[1076,1,1,30,31]]],[46,3,3,31,34,[[1089,2,2,31,33],[1090,1,1,33,34]]],[65,22,15,34,49,[[1170,1,1,34,35],[1172,2,1,35,36],[1174,12,6,36,42],[1175,2,2,42,44],[1177,1,1,44,45],[1178,1,1,45,46],[1180,1,1,46,47],[1182,1,1,47,48],[1187,1,1,48,49]]]],[23693,23723,23795,23811,23898,24098,24193,24569,24622,24694,24795,24851,25323,25497,25550,25721,25791,25810,25957,25998,26012,26037,26096,26912,26915,26964,27299,27757,27874,28662,28722,29024,29036,29044,30775,30798,30834,30835,30836,30837,30838,30839,30855,30858,30886,30895,30935,30958,31072]]],["part",[14,9,[[65,14,9,0,9,[[1174,11,6,0,6],[1175,2,2,6,8],[1178,1,1,8,9]]]],[30834,30835,30836,30837,30838,30839,30855,30858,30895]]],["third",[34,33,[[39,6,6,0,6,[[944,1,1,0,1],[945,1,1,1,2],[948,2,2,2,4],[950,1,1,4,5],[955,1,1,5,6]]],[40,4,4,6,10,[[965,1,1,6,7],[966,1,1,7,8],[968,1,1,8,9],[971,1,1,9,10]]],[41,9,9,10,19,[[981,1,1,10,11],[984,1,1,11,12],[985,1,1,12,13],[990,1,1,13,14],[992,2,2,14,16],[996,3,3,16,19]]],[42,1,1,19,20,[[998,1,1,19,20]]],[43,4,4,20,24,[[1019,1,1,20,21],[1027,1,1,21,22],[1040,1,1,22,23],[1044,1,1,23,24]]],[45,1,1,24,25,[[1076,1,1,24,25]]],[46,1,1,25,26,[[1089,1,1,25,26]]],[65,8,7,26,33,[[1170,1,1,26,27],[1172,2,1,27,28],[1174,1,1,28,29],[1177,1,1,29,30],[1180,1,1,30,31],[1182,1,1,31,32],[1187,1,1,32,33]]]],[23693,23723,23795,23811,23898,24193,24569,24622,24694,24851,25323,25497,25550,25721,25791,25810,25998,26012,26037,26096,26964,27299,27757,27874,28722,29024,30775,30798,30837,30886,30935,30958,31072]]],["thirdly",[1,1,[[45,1,1,0,1,[[1073,1,1,0,1]]]],[28662]]],["time",[8,7,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[995,1,1,2,3]]],[42,3,2,3,5,[[1017,3,2,3,5]]],[46,2,2,5,7,[[1089,1,1,5,6],[1090,1,1,6,7]]]],[24098,24795,25957,26912,26915,29036,29044]]]]},{"k":"G5155","v":[["hair",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30805]]]]},{"k":"G5156","v":[["*",[5,5,[[40,1,1,0,1,[[972,1,1,0,1]]],[45,1,1,1,2,[[1063,1,1,1,2]]],[46,1,1,2,3,[[1084,1,1,2,3]]],[48,1,1,3,4,[[1102,1,1,3,4]]],[49,1,1,4,5,[[1104,1,1,4,5]]]],[24881,28397,28931,29342,29403]]],["+",[1,1,[[40,1,1,0,1,[[972,1,1,0,1]]]],[24881]]],["trembling",[4,4,[[45,1,1,0,1,[[1063,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]],[49,1,1,3,4,[[1104,1,1,3,4]]]],[28397,28931,29342,29403]]]]},{"k":"G5157","v":[["turning",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30283]]]]},{"k":"G5158","v":[["*",[13,13,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[43,4,4,2,6,[[1018,1,1,2,3],[1024,1,1,3,4],[1032,1,1,4,5],[1044,1,1,5,6]]],[44,1,1,6,7,[[1048,1,1,6,7]]],[49,1,1,7,8,[[1103,1,1,7,8]]],[52,2,2,8,10,[[1117,1,1,8,9],[1118,1,1,9,10]]],[54,1,1,10,11,[[1127,1,1,10,11]]],[57,1,1,11,12,[[1145,1,1,11,12]]],[64,1,1,12,13,[[1166,1,1,12,13]]]],[23955,25552,26934,27144,27453,27880,27993,29379,29664,29694,29861,30246,30679]]],["+",[8,8,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[43,4,4,2,6,[[1018,1,1,2,3],[1024,1,1,3,4],[1032,1,1,4,5],[1044,1,1,5,6]]],[54,1,1,6,7,[[1127,1,1,6,7]]],[64,1,1,7,8,[[1166,1,1,7,8]]]],[23955,25552,26934,27144,27453,27880,29861,30679]]],["conversation",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30246]]],["means",[2,2,[[52,2,2,0,2,[[1117,1,1,0,1],[1118,1,1,1,2]]]],[29664,29694]]],["way",[2,2,[[44,1,1,0,1,[[1048,1,1,0,1]]],[49,1,1,1,2,[[1103,1,1,1,2]]]],[27993,29379]]]]},{"k":"G5159","v":[["+",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27380]]]]},{"k":"G5160","v":[["*",[16,16,[[39,4,4,0,4,[[931,1,1,0,1],[934,1,1,1,2],[938,1,1,2,3],[952,1,1,3,4]]],[41,1,1,4,5,[[984,1,1,4,5]]],[42,1,1,5,6,[[1000,1,1,5,6]]],[43,7,7,6,13,[[1019,1,1,6,7],[1026,1,1,7,8],[1031,1,1,8,9],[1044,4,4,9,13]]],[57,2,2,13,15,[[1137,2,2,13,15]]],[58,1,1,15,16,[[1147,1,1,15,16]]]],[23196,23307,23427,24002,25482,26164,26995,27235,27431,27888,27889,27891,27893,30042,30044,30308]]],["+",[3,3,[[43,1,1,0,1,[[1044,1,1,0,1]]],[57,2,2,1,3,[[1137,2,2,1,3]]]],[27893,30042,30044]]],["food",[2,2,[[43,1,1,0,1,[[1031,1,1,0,1]]],[58,1,1,1,2,[[1147,1,1,1,2]]]],[27431,30308]]],["meat",[11,11,[[39,4,4,0,4,[[931,1,1,0,1],[934,1,1,1,2],[938,1,1,2,3],[952,1,1,3,4]]],[41,1,1,4,5,[[984,1,1,4,5]]],[42,1,1,5,6,[[1000,1,1,5,6]]],[43,5,5,6,11,[[1019,1,1,6,7],[1026,1,1,7,8],[1044,3,3,8,11]]]],[23196,23307,23427,24002,25482,26164,26995,27235,27888,27889,27891]]]]},{"k":"G5161","v":[["Trophimus",[3,3,[[43,2,2,0,2,[[1037,1,1,0,1],[1038,1,1,1,2]]],[54,1,1,2,3,[[1128,1,1,2,3]]]],[27630,27693,29890]]]]},{"k":"G5162","v":[["nurse",[1,1,[[51,1,1,0,1,[[1112,1,1,0,1]]]],[29577]]]]},{"k":"G5163","v":[["paths",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30225]]]]},{"k":"G5164","v":[["course",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30325]]]]},{"k":"G5165","v":[["dish",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24077,24774]]]]},{"k":"G5166","v":[["*",[3,3,[[41,1,1,0,1,[[978,1,1,0,1]]],[65,2,2,1,3,[[1180,2,2,1,3]]]],[25190,30944,30945]]],["gather",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[65,1,1,1,2,[[1180,1,1,1,2]]]],[25190,30944]]],["gathered",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30945]]]]},{"k":"G5167","v":[["turtledoves",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24997]]]]},{"k":"G5168","v":[["eye",[2,2,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[990,1,1,1,2]]]],[24613,25713]]]]},{"k":"G5169","v":[["eye",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23786]]]]},{"k":"G5170","v":[["Tryphena",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28348]]]]},{"k":"G5171","v":[["pleasure",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30359]]]]},{"k":"G5172","v":[["*",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[25220,30513]]],["delicately",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25220]]],["riot",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30513]]]]},{"k":"G5173","v":[["Tryphosa",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28348]]]]},{"k":"G5174","v":[["Troas",[6,6,[[43,4,4,0,4,[[1033,2,2,0,2],[1037,2,2,2,4]]],[46,1,1,4,5,[[1079,1,1,4,5]]],[54,1,1,5,6,[[1128,1,1,5,6]]]],[27491,27494,27631,27632,28836,29883]]]]},{"k":"G5175","v":[["Trogyllium",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27641]]]]},{"k":"G5176","v":[["*",[6,6,[[39,1,1,0,1,[[952,1,1,0,1]]],[42,5,5,1,6,[[1002,4,4,1,5],[1009,1,1,5,6]]]],[23995,26311,26313,26314,26315,26648]]],["eateth",[5,5,[[42,5,5,0,5,[[1002,4,4,0,4],[1009,1,1,4,5]]]],[26311,26313,26314,26315,26648]]],["eating",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23995]]]]},{"k":"G5177","v":[["*",[13,13,[[41,2,2,0,2,[[982,1,1,0,1],[992,1,1,1,2]]],[43,5,5,2,7,[[1036,1,1,2,3],[1041,1,1,3,4],[1043,1,1,4,5],[1044,1,1,5,6],[1045,1,1,6,7]]],[45,3,3,7,10,[[1075,1,1,7,8],[1076,1,1,8,9],[1077,1,1,9,10]]],[54,1,1,10,11,[[1126,1,1,10,11]]],[57,2,2,11,13,[[1140,1,1,11,12],[1143,1,1,12,13]]]],[25393,25814,27596,27771,27845,27858,27901,28688,28755,28782,29837,30098,30207]]],["+",[3,3,[[43,2,2,0,2,[[1036,1,1,0,1],[1044,1,1,1,2]]],[45,1,1,2,3,[[1075,1,1,2,3]]]],[27596,27858,28688]]],["be",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28782]]],["chance",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28755]]],["enjoy",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27771]]],["him",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25393]]],["little",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27901]]],["obtain",[3,3,[[41,1,1,0,1,[[992,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]],[57,1,1,2,3,[[1143,1,1,2,3]]]],[25814,29837,30207]]],["obtained",[2,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[57,1,1,1,2,[[1140,1,1,1,2]]]],[27845,30098]]]]},{"k":"G5178","v":[["tortured",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30207]]]]},{"k":"G5179","v":[["*",[16,15,[[42,2,1,0,1,[[1016,2,1,0,1]]],[43,3,3,1,4,[[1024,2,2,1,3],[1040,1,1,3,4]]],[44,2,2,4,6,[[1050,1,1,4,5],[1051,1,1,5,6]]],[45,2,2,6,8,[[1071,2,2,6,8]]],[49,1,1,8,9,[[1105,1,1,8,9]]],[51,1,1,9,10,[[1111,1,1,9,10]]],[52,1,1,10,11,[[1118,1,1,10,11]]],[53,1,1,11,12,[[1122,1,1,11,12]]],[55,1,1,12,13,[[1130,1,1,12,13]]],[57,1,1,13,14,[[1140,1,1,13,14]]],[59,1,1,14,15,[[1155,1,1,14,15]]]],[26892,27159,27160,27759,28061,28085,28573,28578,29438,29567,29687,29759,29915,30097,30468]]],["ensample",[2,2,[[49,1,1,0,1,[[1105,1,1,0,1]]],[52,1,1,1,2,[[1118,1,1,1,2]]]],[29438,29687]]],["ensamples",[3,3,[[45,1,1,0,1,[[1071,1,1,0,1]]],[51,1,1,1,2,[[1111,1,1,1,2]]],[59,1,1,2,3,[[1155,1,1,2,3]]]],[28578,29567,30468]]],["example",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29759]]],["examples",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28573]]],["fashion",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27160]]],["figure",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28061]]],["figures",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27159]]],["form",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28085]]],["manner",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27759]]],["pattern",[2,2,[[55,1,1,0,1,[[1130,1,1,0,1]]],[57,1,1,1,2,[[1140,1,1,1,2]]]],[29915,30097]]],["print",[2,1,[[42,2,1,0,1,[[1016,2,1,0,1]]]],[26892]]]]},{"k":"G5180","v":[["*",[14,13,[[39,2,2,0,2,[[952,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[41,5,5,3,8,[[978,1,1,3,4],[984,1,1,4,5],[990,1,1,5,6],[994,1,1,6,7],[995,1,1,7,8]]],[43,5,4,8,12,[[1035,1,1,8,9],[1038,1,1,9,10],[1040,3,2,10,12]]],[45,1,1,12,13,[[1069,1,1,12,13]]]],[24006,24159,24845,25175,25504,25701,25928,25983,27574,27696,27736,27737,28539]]],["beat",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]]],[25504,27574]]],["beating",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27696]]],["smite",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[43,2,2,1,3,[[1040,2,2,1,3]]]],[24006,27736,27737]]],["smiteth",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25175]]],["smitten",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27737]]],["smote",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[41,2,2,2,4,[[990,1,1,2,3],[995,1,1,3,4]]]],[24159,24845,25701,25983]]],["struck",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25928]]],["wound",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28539]]]]},{"k":"G5181","v":[["Tyrannus",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27594]]]]},{"k":"G5182","v":[["troubled",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25404]]]]},{"k":"G5183","v":[["Tyre",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27357]]]]},{"k":"G5184","v":[["Tyre",[11,11,[[39,3,3,0,3,[[939,2,2,0,2],[943,1,1,2,3]]],[40,3,3,3,6,[[959,1,1,3,4],[963,2,2,4,6]]],[41,3,3,6,9,[[978,1,1,6,7],[982,2,2,7,9]]],[43,2,2,9,11,[[1038,2,2,9,11]]]],[23480,23481,23654,24296,24487,24494,25163,25376,25377,27667,27671]]]]},{"k":"G5185","v":[["*",[53,48,[[39,18,14,0,14,[[937,2,2,0,2],[939,1,1,2,3],[940,2,1,3,4],[943,6,3,4,7],[948,1,1,7,8],[949,1,1,8,9],[951,5,5,9,14]]],[40,5,5,14,19,[[964,2,2,14,16],[966,3,3,16,19]]],[41,8,7,19,26,[[976,1,1,19,20],[978,2,1,20,21],[979,2,2,21,23],[986,2,2,23,25],[990,1,1,25,26]]],[42,18,18,26,44,[[1001,1,1,26,27],[1005,15,15,27,42],[1006,1,1,42,43],[1007,1,1,43,44]]],[43,1,1,44,45,[[1030,1,1,44,45]]],[44,1,1,45,46,[[1047,1,1,45,46]]],[60,1,1,46,47,[[1156,1,1,46,47]]],[65,1,1,47,48,[[1169,1,1,47,48]]]],[23406,23407,23464,23511,23647,23663,23664,23822,23840,23934,23935,23937,23942,23944,24522,24523,24634,24637,24639,25081,25185,25216,25217,25566,25574,25723,26213,26441,26442,26446,26448,26453,26457,26458,26459,26460,26464,26465,26472,26479,26480,26481,26502,26560,27373,27981,30488,30763]]],["blind",[43,38,[[39,15,11,0,11,[[939,1,1,0,1],[940,2,1,1,2],[943,6,3,2,5],[949,1,1,5,6],[951,5,5,6,11]]],[40,1,1,11,12,[[966,1,1,11,12]]],[41,7,6,12,18,[[976,1,1,12,13],[978,2,1,13,14],[979,2,2,14,16],[986,2,2,16,18]]],[42,16,16,18,34,[[1001,1,1,18,19],[1005,13,13,19,32],[1006,1,1,32,33],[1007,1,1,33,34]]],[43,1,1,34,35,[[1030,1,1,34,35]]],[44,1,1,35,36,[[1047,1,1,35,36]]],[60,1,1,36,37,[[1156,1,1,36,37]]],[65,1,1,37,38,[[1169,1,1,37,38]]]],[23464,23511,23647,23663,23664,23840,23934,23935,23937,23942,23944,24634,25081,25185,25216,25217,25566,25574,26213,26441,26442,26448,26453,26458,26459,26460,26464,26465,26472,26479,26480,26481,26502,26560,27373,27981,30488,30763]]],["man",[7,7,[[40,4,4,0,4,[[964,2,2,0,2],[966,2,2,2,4]]],[41,1,1,4,5,[[990,1,1,4,5]]],[42,2,2,5,7,[[1005,2,2,5,7]]]],[24522,24523,24637,24639,25723,26446,26457]]],["men",[3,3,[[39,3,3,0,3,[[937,2,2,0,2],[948,1,1,2,3]]]],[23406,23407,23822]]]]},{"k":"G5186","v":[["blinded",[3,3,[[42,1,1,0,1,[[1008,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]],[61,1,1,2,3,[[1160,1,1,2,3]]]],[26620,28863,30561]]]]},{"k":"G5187","v":[["*",[3,3,[[53,2,2,0,2,[[1121,1,1,0,1],[1124,1,1,1,2]]],[54,1,1,2,3,[[1127,1,1,2,3]]]],[29737,29792,29857]]],["highminded",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29857]]],["pride",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29737]]],["proud",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29792]]]]},{"k":"G5188","v":[["smoking",[1,1,[[39,1,1,0,1,[[940,1,1,0,1]]]],[23509]]]]},{"k":"G5189","v":[["tempestuous",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27869]]]]},{"k":"G5190","v":[["Tychicus",[5,5,[[43,1,1,0,1,[[1037,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]],[50,1,1,2,3,[[1110,1,1,2,3]]],[54,1,1,3,4,[[1128,1,1,3,4]]],[55,1,1,4,5,[[1131,1,1,4,5]]]],[27630,29358,29549,29882,29935]]]]},{"k":"G5191","v":[["jacinth",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30857]]]]},{"k":"G5192","v":[["jacinth",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31073]]]]},{"k":"G5193","v":[["glass",[3,2,[[65,3,2,0,2,[[1170,1,1,0,1],[1181,2,1,1,2]]]],[30774,30948]]]]},{"k":"G5194","v":[["glass",[2,2,[[65,2,2,0,2,[[1187,2,2,0,2]]]],[31071,31074]]]]},{"k":"G5195","v":[["*",[5,5,[[39,1,1,0,1,[[950,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[990,1,1,2,3]]],[43,1,1,3,4,[[1031,1,1,3,4]]],[51,1,1,4,5,[[1112,1,1,4,5]]]],[23878,25450,25720,27419,29572]]],["despitefully",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27419]]],["entreated",[2,2,[[41,1,1,0,1,[[990,1,1,0,1]]],[51,1,1,1,2,[[1112,1,1,1,2]]]],[25720,29572]]],["reproachest",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25450]]],["spitefully",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23878]]]]},{"k":"G5196","v":[["*",[3,3,[[43,2,2,0,2,[[1044,2,2,0,2]]],[46,1,1,2,3,[[1089,1,1,2,3]]]],[27865,27876,29032]]],["harm",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27876]]],["hurt",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27865]]],["reproaches",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29032]]]]},{"k":"G5197","v":[["*",[2,2,[[44,1,1,0,1,[[1046,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]]],[27960,29709]]],["despiteful",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27960]]],["injurious",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29709]]]]},{"k":"G5198","v":[["*",[12,12,[[41,3,3,0,3,[[977,1,1,0,1],[979,1,1,1,2],[987,1,1,2,3]]],[53,2,2,3,5,[[1119,1,1,3,4],[1124,1,1,4,5]]],[54,2,2,5,7,[[1125,1,1,5,6],[1128,1,1,6,7]]],[55,4,4,7,11,[[1129,2,2,7,9],[1130,2,2,9,11]]],[63,1,1,11,12,[[1165,1,1,11,12]]]],[25138,25205,25615,29706,29791,29822,29873,29901,29905,29909,29910,30660]]],["health",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30660]]],["sound",[8,8,[[41,1,1,0,1,[[987,1,1,0,1]]],[53,1,1,1,2,[[1119,1,1,1,2]]],[54,2,2,2,4,[[1125,1,1,2,3],[1128,1,1,3,4]]],[55,4,4,4,8,[[1129,2,2,4,6],[1130,2,2,6,8]]]],[25615,29706,29822,29873,29901,29905,29909,29910]]],["whole",[2,2,[[41,2,2,0,2,[[977,1,1,0,1],[979,1,1,1,2]]]],[25138,25205]]],["wholesome",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29791]]]]},{"k":"G5199","v":[["*",[14,14,[[39,2,2,0,2,[[940,1,1,0,1],[943,1,1,1,2]]],[40,2,2,2,4,[[959,1,1,2,3],[961,1,1,3,4]]],[41,1,1,4,5,[[978,1,1,4,5]]],[42,7,7,5,12,[[1001,6,6,5,11],[1003,1,1,11,12]]],[43,1,1,12,13,[[1021,1,1,12,13]]],[55,1,1,13,14,[[1130,1,1,13,14]]]],[23502,23664,24293,24398,25156,26214,26216,26219,26221,26224,26225,26351,27032,29916]]],["Sound",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29916]]],["whole",[13,13,[[39,2,2,0,2,[[940,1,1,0,1],[943,1,1,1,2]]],[40,2,2,2,4,[[959,1,1,2,3],[961,1,1,3,4]]],[41,1,1,4,5,[[978,1,1,4,5]]],[42,7,7,5,12,[[1001,6,6,5,11],[1003,1,1,11,12]]],[43,1,1,12,13,[[1021,1,1,12,13]]]],[23502,23664,24293,24398,25156,26214,26216,26219,26221,26224,26225,26351,27032]]]]},{"k":"G5200","v":[["green",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25966]]]]},{"k":"G5201","v":[["*",[3,3,[[42,3,3,0,3,[[998,2,2,0,2],[1000,1,1,2,3]]]],[26101,26102,26184]]],["waterpot",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26184]]],["waterpots",[2,2,[[42,2,2,0,2,[[998,2,2,0,2]]]],[26101,26102]]]]},{"k":"G5202","v":[["+",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29786]]]]},{"k":"G5203","v":[["dropsy",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25555]]]]},{"k":"G5204","v":[["*",[79,70,[[39,7,7,0,7,[[931,2,2,0,2],[936,1,1,2,3],[942,2,2,3,5],[945,1,1,5,6],[955,1,1,6,7]]],[40,5,5,7,12,[[957,2,2,7,9],[965,2,2,9,11],[970,1,1,11,12]]],[41,6,6,12,18,[[975,1,1,12,13],[979,1,1,13,14],[980,2,2,14,16],[988,1,1,16,17],[994,1,1,17,18]]],[42,24,20,18,38,[[997,3,3,18,21],[998,3,2,21,23],[999,2,2,23,25],[1000,9,7,25,32],[1001,4,3,32,35],[1003,1,1,35,36],[1009,1,1,36,37],[1015,1,1,37,38]]],[43,7,6,38,44,[[1018,1,1,38,39],[1025,4,3,39,42],[1027,1,1,42,43],[1028,1,1,43,44]]],[48,1,1,44,45,[[1101,1,1,44,45]]],[57,2,2,45,47,[[1141,1,1,45,46],[1142,1,1,46,47]]],[58,1,1,47,48,[[1148,1,1,47,48]]],[59,1,1,48,49,[[1153,1,1,48,49]]],[60,3,2,49,51,[[1158,3,2,49,51]]],[61,4,2,51,53,[[1163,4,2,51,53]]],[65,18,17,53,70,[[1167,1,1,53,54],[1173,1,1,54,55],[1174,3,2,55,57],[1177,1,1,57,58],[1178,1,1,58,59],[1180,2,2,59,61],[1182,3,3,61,64],[1183,2,2,64,66],[1185,1,1,66,67],[1187,1,1,67,68],[1188,2,2,68,70]]]],[23203,23208,23377,23625,23626,23715,24153,24223,24225,24560,24579,24767,25041,25239,25269,25270,25644,25874,26070,26075,26077,26102,26104,26125,26143,26163,26166,26167,26169,26170,26171,26202,26213,26214,26217,26366,26635,26859,26928,27212,27214,27215,27306,27323,29330,30124,30155,30331,30444,30527,30528,30630,30632,30712,30827,30837,30838,30878,30906,30928,30933,30958,30959,30966,30976,30990,31023,31059,31081,31097]]],["+",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24579]]],["water",[63,55,[[39,6,6,0,6,[[931,2,2,0,2],[942,2,2,2,4],[945,1,1,4,5],[955,1,1,5,6]]],[40,3,3,6,9,[[957,2,2,6,8],[970,1,1,8,9]]],[41,6,6,9,15,[[975,1,1,9,10],[979,1,1,10,11],[980,2,2,11,13],[988,1,1,13,14],[994,1,1,14,15]]],[42,24,20,15,35,[[997,3,3,15,18],[998,3,2,18,20],[999,2,2,20,22],[1000,9,7,22,29],[1001,4,3,29,32],[1003,1,1,32,33],[1009,1,1,33,34],[1015,1,1,34,35]]],[43,7,6,35,41,[[1018,1,1,35,36],[1025,4,3,36,39],[1027,1,1,39,40],[1028,1,1,40,41]]],[48,1,1,41,42,[[1101,1,1,41,42]]],[57,2,2,42,44,[[1141,1,1,42,43],[1142,1,1,43,44]]],[58,1,1,44,45,[[1148,1,1,44,45]]],[59,1,1,45,46,[[1153,1,1,45,46]]],[60,3,2,46,48,[[1158,3,2,46,48]]],[61,4,2,48,50,[[1163,4,2,48,50]]],[65,5,5,50,55,[[1178,1,1,50,51],[1182,1,1,51,52],[1187,1,1,52,53],[1188,2,2,53,55]]]],[23203,23208,23625,23626,23715,24153,24223,24225,24767,25041,25239,25269,25270,25644,25874,26070,26075,26077,26102,26104,26125,26143,26163,26166,26167,26169,26170,26171,26202,26213,26214,26217,26366,26635,26859,26928,27212,27214,27215,27306,27323,29330,30124,30155,30331,30444,30527,30528,30630,30632,30906,30966,31059,31081,31097]]],["waters",[15,14,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[65,13,12,2,14,[[1167,1,1,2,3],[1173,1,1,3,4],[1174,3,2,4,6],[1177,1,1,6,7],[1180,2,2,7,9],[1182,2,2,9,11],[1183,2,2,11,13],[1185,1,1,13,14]]]],[23377,24560,30712,30827,30837,30838,30878,30928,30933,30958,30959,30976,30990,31023]]]]},{"k":"G5205","v":[["*",[6,6,[[43,2,2,0,2,[[1031,1,1,0,1],[1045,1,1,1,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]],[58,2,2,3,5,[[1150,2,2,3,5]]],[65,1,1,5,6,[[1177,1,1,5,6]]]],[27431,27901,30051,30361,30372,30878]]],["+",[1,1,[[65,1,1,0,1,[[1177,1,1,0,1]]]],[30878]]],["rain",[5,5,[[43,2,2,0,2,[[1031,1,1,0,1],[1045,1,1,1,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]],[58,2,2,3,5,[[1150,2,2,3,5]]]],[27431,27901,30051,30361,30372]]]]},{"k":"G5206","v":[["*",[5,5,[[44,3,3,0,3,[[1053,2,2,0,2],[1054,1,1,2,3]]],[47,1,1,3,4,[[1094,1,1,3,4]]],[48,1,1,4,5,[[1097,1,1,4,5]]]],[28131,28139,28159,29136,29211]]],["adoption",[3,3,[[44,3,3,0,3,[[1053,2,2,0,2],[1054,1,1,2,3]]]],[28131,28139,28159]]],["children",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29211]]],["sons",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29136]]]]},{"k":"G5207","v":[["*",[382,348,[[39,90,82,0,82,[[929,6,5,0,5],[930,1,1,5,6],[931,1,1,6,7],[932,2,2,7,9],[933,2,2,9,11],[935,1,1,11,12],[936,3,3,12,15],[937,3,3,15,18],[938,2,2,18,20],[939,4,2,20,22],[940,5,5,22,27],[941,5,4,27,31],[942,1,1,31,32],[943,1,1,32,33],[944,4,4,33,37],[945,7,7,37,44],[946,1,1,44,45],[947,1,1,45,46],[948,7,6,46,52],[949,6,5,52,57],[950,3,3,57,60],[951,3,3,60,63],[952,6,5,63,68],[953,2,2,68,70],[954,7,6,70,76],[955,5,5,76,81],[956,1,1,81,82]]],[40,35,33,82,115,[[957,2,2,82,84],[958,3,3,84,87],[959,3,3,87,90],[961,1,1,90,91],[962,1,1,91,92],[964,2,2,92,94],[965,5,5,94,99],[966,6,6,99,105],[968,4,3,105,108],[969,2,2,108,110],[970,5,4,110,114],[971,1,1,114,115]]],[41,77,71,115,186,[[973,7,7,115,122],[974,1,1,122,123],[975,3,3,123,126],[976,4,4,126,130],[977,3,3,130,133],[978,3,3,133,136],[979,2,2,136,138],[980,1,1,138,139],[981,8,8,139,147],[982,4,2,147,149],[983,3,3,149,152],[984,5,4,152,156],[987,8,7,156,163],[988,2,1,163,164],[989,4,4,164,168],[990,4,4,168,172],[991,2,2,172,174],[992,6,5,174,179],[993,2,2,179,181],[994,4,4,181,185],[996,1,1,185,186]]],[42,57,52,186,238,[[997,6,6,186,192],[999,8,7,192,199],[1000,6,6,199,205],[1001,10,8,205,213],[1002,6,6,213,219],[1004,3,3,219,222],[1005,3,3,222,225],[1006,1,1,225,226],[1007,2,2,226,228],[1008,4,3,228,231],[1009,1,1,231,232],[1010,1,1,232,233],[1013,3,2,233,235],[1015,2,2,235,237],[1016,1,1,237,238]]],[43,22,22,238,260,[[1019,1,1,238,239],[1020,1,1,239,240],[1021,1,1,240,241],[1022,1,1,241,242],[1024,6,6,242,248],[1025,1,1,248,249],[1026,2,2,249,251],[1027,1,1,251,252],[1030,4,4,252,256],[1033,1,1,256,257],[1036,1,1,257,258],[1040,2,2,258,260]]],[44,12,12,260,272,[[1046,3,3,260,263],[1050,1,1,263,264],[1053,5,5,264,269],[1054,3,3,269,272]]],[45,2,2,272,274,[[1062,1,1,272,273],[1076,1,1,273,274]]],[46,4,4,274,278,[[1078,1,1,274,275],[1080,2,2,275,277],[1083,1,1,277,278]]],[47,13,9,278,287,[[1091,1,1,278,279],[1092,1,1,279,280],[1093,2,2,280,282],[1094,9,5,282,287]]],[48,4,4,287,291,[[1098,1,1,287,288],[1099,1,1,288,289],[1100,1,1,289,290],[1101,1,1,290,291]]],[50,2,2,291,293,[[1107,1,1,291,292],[1109,1,1,292,293]]],[51,3,2,293,295,[[1111,1,1,293,294],[1115,2,1,294,295]]],[52,1,1,295,296,[[1117,1,1,295,296]]],[57,24,21,296,317,[[1133,4,3,296,299],[1134,2,2,299,301],[1135,1,1,301,302],[1136,1,1,302,303],[1137,2,2,303,305],[1138,1,1,305,306],[1139,3,3,306,309],[1142,1,1,309,310],[1143,3,3,310,313],[1144,6,4,313,317]]],[58,1,1,317,318,[[1147,1,1,317,318]]],[59,1,1,318,319,[[1155,1,1,318,319]]],[60,1,1,319,320,[[1156,1,1,319,320]]],[61,23,18,320,338,[[1159,2,2,320,322],[1160,4,3,322,325],[1161,2,2,325,327],[1162,4,4,327,331],[1163,11,7,331,338]]],[62,2,2,338,340,[[1164,2,2,338,340]]],[65,8,8,340,348,[[1167,1,1,340,341],[1168,2,2,341,343],[1173,1,1,343,344],[1178,1,1,344,345],[1180,1,1,345,346],[1187,2,2,346,348]]]],[23145,23164,23165,23167,23169,23184,23209,23212,23215,23243,23279,23325,23357,23365,23374,23385,23394,23406,23440,23454,23478,23486,23497,23512,23516,23521,23529,23576,23577,23580,23594,23630,23655,23685,23688,23699,23700,23705,23709,23712,23715,23722,23725,23726,23738,23790,23810,23812,23813,23820,23822,23823,23831,23835,23841,23863,23864,23874,23914,23917,23933,23949,23953,23984,23987,23994,23996,24001,24021,24039,24056,24078,24091,24099,24117,24118,24138,24169,24172,24183,24185,24214,24216,24226,24270,24279,24288,24299,24305,24316,24371,24410,24531,24538,24545,24547,24550,24555,24569,24621,24623,24633,24634,24635,24636,24679,24708,24710,24743,24749,24775,24795,24815,24816,24865,24906,24909,24924,24925,24928,24929,24950,24980,25027,25047,25048,25066,25072,25085,25104,25117,25131,25141,25151,25168,25181,25207,25229,25273,25323,25327,25336,25339,25342,25345,25357,25359,25369,25385,25416,25424,25435,25467,25469,25499,25512,25599,25601,25607,25609,25612,25613,25618,25628,25673,25675,25677,25681,25696,25719,25726,25727,25740,25741,25792,25813,25815,25820,25823,25853,25862,25886,25912,25933,25934,25998,26062,26078,26086,26089,26093,26095,26133,26134,26136,26137,26138,26155,26156,26161,26168,26202,26203,26206,26209,26229,26230,26231,26232,26233,26235,26236,26237,26284,26297,26299,26310,26319,26326,26409,26416,26417,26459,26460,26475,26517,26527,26550,26603,26614,26616,26661,26681,26760,26771,26832,26851,26898,26966,27021,27058,27080,27132,27137,27139,27145,27153,27172,27213,27231,27236,27295,27372,27383,27388,27395,27484,27599,27740,27750,27933,27934,27939,28057,28119,28130,28135,28145,28148,28164,28181,28182,28372,28746,28819,28848,28854,28916,29073,29101,29109,29128,29135,29137,29138,29153,29161,29231,29256,29285,29310,29478,29523,29570,29626,29664,29965,29968,29971,29983,29987,30001,30028,30035,30038,30050,30067,30069,30092,30162,30193,30194,30196,30217,30218,30219,30220,30314,30478,30496,30543,30547,30572,30573,30574,30587,30602,30612,30613,30617,30618,30629,30633,30634,30635,30636,30637,30644,30648,30654,30710,30731,30735,30814,30896,30940,31060,31065]]],["+",[3,3,[[41,1,1,0,1,[[978,1,1,0,1]]],[42,1,1,1,2,[[1001,1,1,1,2]]],[57,1,1,2,3,[[1138,1,1,2,3]]]],[25168,26231,30050]]],["Son",[218,200,[[39,52,48,0,48,[[931,1,1,0,1],[932,1,1,1,2],[936,2,2,2,4],[937,2,2,4,6],[938,1,1,6,7],[939,4,2,7,9],[940,3,3,9,12],[941,2,2,12,14],[942,1,1,14,15],[943,1,1,15,16],[944,4,4,16,20],[945,4,4,20,24],[946,1,1,24,25],[947,1,1,25,26],[948,4,4,26,30],[949,2,2,30,32],[952,6,5,32,37],[953,2,2,37,39],[954,6,5,39,44],[955,3,3,44,47],[956,1,1,47,48]]],[40,25,24,48,72,[[957,2,2,48,50],[958,2,2,50,52],[959,1,1,52,53],[961,1,1,53,54],[964,2,2,54,56],[965,4,4,56,60],[966,4,4,60,64],[968,1,1,64,65],[969,2,2,65,67],[970,5,4,67,71],[971,1,1,71,72]]],[41,39,37,72,109,[[973,2,2,72,74],[975,1,1,74,75],[976,3,3,75,78],[977,1,1,78,79],[978,1,1,79,80],[979,1,1,80,81],[980,1,1,81,82],[981,6,6,82,88],[982,3,1,88,89],[983,1,1,89,90],[984,3,3,90,93],[989,4,4,93,97],[990,4,4,97,101],[991,1,1,101,102],[993,2,2,102,104],[994,4,4,104,108],[996,1,1,108,109]]],[42,42,37,109,146,[[997,4,4,109,113],[999,8,7,113,120],[1001,9,7,120,127],[1002,5,5,127,132],[1004,3,3,132,135],[1005,1,1,135,136],[1006,1,1,136,137],[1007,2,2,137,139],[1008,3,2,139,141],[1009,1,1,141,142],[1010,1,1,142,143],[1013,2,1,143,144],[1015,1,1,144,145],[1016,1,1,145,146]]],[43,4,4,146,150,[[1024,1,1,146,147],[1025,1,1,147,148],[1026,1,1,148,149],[1030,1,1,149,150]]],[44,7,7,150,157,[[1046,3,3,150,153],[1050,1,1,153,154],[1053,3,3,154,157]]],[45,2,2,157,159,[[1062,1,1,157,158],[1076,1,1,158,159]]],[46,1,1,159,160,[[1078,1,1,159,160]]],[47,4,4,160,164,[[1091,1,1,160,161],[1092,1,1,161,162],[1094,2,2,162,164]]],[48,1,1,164,165,[[1100,1,1,164,165]]],[50,1,1,165,166,[[1107,1,1,165,166]]],[51,1,1,166,167,[[1111,1,1,166,167]]],[57,10,9,167,176,[[1133,4,3,167,170],[1136,1,1,170,171],[1137,2,2,171,173],[1139,2,2,173,175],[1142,1,1,175,176]]],[60,1,1,176,177,[[1156,1,1,176,177]]],[61,23,18,177,195,[[1159,2,2,177,179],[1160,4,3,179,182],[1161,2,2,182,184],[1162,4,4,184,188],[1163,11,7,188,195]]],[62,2,2,195,197,[[1164,2,2,195,197]]],[65,3,3,197,200,[[1167,1,1,197,198],[1168,1,1,198,199],[1180,1,1,199,200]]]],[23209,23215,23365,23374,23385,23406,23440,23478,23486,23497,23521,23529,23576,23580,23630,23655,23685,23688,23699,23700,23705,23709,23712,23722,23738,23790,23810,23820,23822,23823,23835,23841,23984,23987,23994,23996,24001,24021,24039,24056,24078,24099,24117,24118,24169,24172,24183,24214,24216,24226,24270,24288,24299,24371,24531,24538,24545,24547,24550,24569,24621,24633,24635,24636,24708,24743,24749,24775,24795,24815,24816,24865,24925,24928,25047,25066,25072,25104,25131,25151,25229,25273,25323,25327,25336,25345,25357,25359,25385,25435,25467,25469,25499,25673,25675,25677,25681,25696,25719,25726,25727,25741,25853,25862,25886,25912,25933,25934,25998,26062,26078,26093,26095,26133,26134,26136,26137,26138,26155,26156,26229,26230,26232,26233,26235,26236,26237,26284,26297,26310,26319,26326,26409,26416,26417,26475,26517,26527,26550,26603,26614,26661,26681,26760,26832,26898,27172,27213,27236,27395,27933,27934,27939,28057,28119,28145,28148,28372,28746,28819,29073,29101,29135,29137,29285,29478,29570,29965,29968,29971,30028,30035,30038,30067,30092,30162,30496,30543,30547,30572,30573,30574,30587,30602,30612,30613,30617,30618,30629,30633,30634,30635,30636,30637,30644,30648,30654,30710,30735,30940]]],["child",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]],[65,1,1,2,3,[[1178,1,1,2,3]]]],[23933,27372,30896]]],["children",[47,43,[[39,13,12,0,12,[[933,2,2,0,2],[936,1,1,2,3],[937,1,1,3,4],[940,1,1,4,5],[941,2,1,5,6],[945,2,2,6,8],[948,1,1,8,9],[951,1,1,9,10],[955,2,2,10,12]]],[40,1,1,12,13,[[958,1,1,12,13]]],[41,8,6,13,19,[[973,1,1,13,14],[977,1,1,14,15],[978,1,1,15,16],[988,2,1,16,17],[992,3,2,17,19]]],[42,2,2,19,21,[[1000,1,1,19,20],[1008,1,1,20,21]]],[43,7,7,21,28,[[1020,1,1,21,22],[1022,1,1,22,23],[1024,2,2,23,25],[1026,1,1,25,26],[1027,1,1,26,27],[1030,1,1,27,28]]],[44,2,2,28,30,[[1054,2,2,28,30]]],[46,2,2,30,32,[[1080,2,2,30,32]]],[47,2,2,32,34,[[1093,2,2,32,34]]],[48,2,2,34,36,[[1098,1,1,34,35],[1101,1,1,35,36]]],[50,1,1,36,37,[[1109,1,1,36,37]]],[51,2,1,37,38,[[1115,2,1,37,38]]],[57,2,2,38,40,[[1143,1,1,38,39],[1144,1,1,39,40]]],[65,3,3,40,43,[[1168,1,1,40,41],[1173,1,1,41,42],[1187,1,1,42,43]]]],[23243,23279,23357,23394,23516,23577,23725,23726,23812,23949,24138,24185,24279,24909,25141,25181,25628,25813,25815,26168,26616,27021,27080,27139,27153,27231,27295,27388,28181,28182,28848,28854,29109,29128,29231,29310,29523,29626,30194,30217,30731,30814,31065]]],["foal",[1,1,[[39,1,1,0,1,[[949,1,1,0,1]]]],[23831]]],["of",[1,1,[[39,1,1,0,1,[[932,1,1,0,1]]]],[23212]]],["son",[85,77,[[39,19,17,0,17,[[929,6,5,0,5],[930,1,1,5,6],[935,1,1,6,7],[938,1,1,7,8],[940,1,1,8,9],[941,1,1,9,10],[945,1,1,10,11],[949,3,2,11,13],[950,3,3,13,16],[951,1,1,16,17]]],[40,6,5,17,22,[[962,1,1,17,18],[965,1,1,18,19],[966,1,1,19,20],[968,3,2,20,22]]],[41,26,24,22,46,[[973,4,4,22,26],[974,1,1,26,27],[975,2,2,27,29],[976,1,1,29,30],[979,1,1,30,31],[981,2,2,31,33],[982,1,1,33,34],[983,1,1,34,35],[984,2,1,35,36],[987,7,6,36,42],[991,1,1,42,43],[992,3,3,43,46]]],[42,12,12,46,58,[[997,2,2,46,48],[1000,5,5,48,53],[1002,1,1,53,54],[1005,2,2,54,56],[1013,1,1,56,57],[1015,1,1,57,58]]],[43,6,6,58,64,[[1021,1,1,58,59],[1024,1,1,59,60],[1030,1,1,60,61],[1033,1,1,61,62],[1040,2,2,62,64]]],[44,1,1,64,65,[[1054,1,1,64,65]]],[47,5,2,65,67,[[1094,5,2,65,67]]],[52,1,1,67,68,[[1117,1,1,67,68]]],[57,6,6,68,74,[[1134,1,1,68,69],[1135,1,1,69,70],[1143,1,1,70,71],[1144,3,3,71,74]]],[58,1,1,74,75,[[1147,1,1,74,75]]],[59,1,1,75,76,[[1155,1,1,75,76]]],[65,1,1,76,77,[[1187,1,1,76,77]]]],[23145,23164,23165,23167,23169,23184,23325,23454,23512,23594,23715,23863,23864,23874,23914,23917,23953,24410,24555,24634,24679,24710,24906,24924,24929,24950,24980,25027,25048,25085,25207,25339,25342,25369,25416,25512,25601,25607,25609,25612,25613,25618,25740,25792,25820,25823,26086,26089,26161,26202,26203,26206,26209,26299,26459,26460,26771,26851,27058,27137,27383,27484,27740,27750,28164,29138,29161,29664,29983,30001,30196,30217,30218,30219,30314,30478,31060]]],["sons",[24,24,[[39,3,3,0,3,[[948,2,2,0,2],[954,1,1,2,3]]],[40,3,3,3,6,[[959,2,2,3,5],[966,1,1,5,6]]],[41,3,3,6,9,[[977,1,1,6,7],[983,1,1,7,8],[987,1,1,8,9]]],[43,4,4,9,13,[[1019,1,1,9,10],[1024,2,2,10,12],[1036,1,1,12,13]]],[44,2,2,13,15,[[1053,2,2,13,15]]],[46,1,1,15,16,[[1083,1,1,15,16]]],[47,2,2,16,18,[[1094,2,2,16,18]]],[48,1,1,18,19,[[1099,1,1,18,19]]],[57,5,5,19,24,[[1134,1,1,19,20],[1139,1,1,20,21],[1143,1,1,21,22],[1144,2,2,22,24]]]],[23812,23813,24091,24305,24316,24623,25117,25424,25599,26966,27132,27145,27599,28130,28135,28916,29137,29153,29256,29987,30069,30193,30219,30220]]]]},{"k":"G5208","v":[["matter",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30324]]]]},{"k":"G5209","v":[["*",[435,386,[[39,38,32,0,32,[[931,2,1,0,1],[932,1,1,1,2],[933,6,3,2,5],[934,2,2,5,7],[935,3,3,7,10],[938,8,7,10,17],[939,2,2,17,19],[940,1,1,19,20],[949,3,3,20,23],[951,2,2,23,25],[952,3,2,25,27],[953,1,1,27,28],[954,2,2,28,30],[956,2,2,30,32]]],[40,14,13,32,45,[[957,3,2,32,34],[962,1,1,34,35],[965,2,2,35,37],[967,1,1,37,38],[969,4,4,38,42],[970,2,2,42,44],[972,1,1,44,45]]],[41,39,37,45,82,[[975,2,1,45,46],[978,8,7,46,53],[981,2,2,53,55],[982,8,8,55,63],[983,1,1,63,64],[984,4,4,64,68],[985,3,3,68,71],[988,2,2,71,73],[991,1,1,73,74],[992,1,1,74,75],[993,2,2,75,77],[994,2,2,77,79],[995,1,1,79,80],[996,2,2,80,82]]],[42,36,29,82,111,[[999,1,1,82,83],[1000,1,1,83,84],[1001,1,1,84,85],[1002,2,2,85,87],[1003,1,1,87,88],[1004,2,2,88,90],[1007,1,1,90,91],[1008,2,2,91,93],[1009,1,1,93,94],[1010,6,4,94,98],[1011,10,7,98,105],[1012,7,5,105,110],[1016,1,1,110,111]]],[43,27,27,111,138,[[1018,1,1,111,112],[1019,2,2,112,114],[1020,2,2,114,116],[1024,1,1,116,117],[1030,2,2,117,119],[1031,1,1,119,120],[1032,2,2,120,122],[1034,2,2,122,124],[1035,2,2,124,126],[1036,2,2,126,128],[1037,4,4,128,132],[1039,1,1,132,133],[1040,1,1,133,134],[1041,1,1,134,135],[1044,2,2,135,137],[1045,1,1,137,138]]],[44,32,26,138,164,[[1046,5,3,138,141],[1047,1,1,141,142],[1052,1,1,142,143],[1055,2,1,143,144],[1056,2,2,144,146],[1057,3,3,146,149],[1060,10,8,149,157],[1061,8,7,157,164]]],[45,41,36,164,200,[[1062,3,3,164,167],[1063,2,2,167,169],[1064,1,1,169,170],[1065,8,8,170,178],[1068,2,2,178,180],[1071,6,4,180,184],[1072,4,4,184,188],[1073,1,1,188,189],[1075,4,3,189,192],[1077,10,8,192,200]]],[46,59,52,200,252,[[1078,5,5,200,205],[1079,8,8,205,213],[1080,1,1,213,214],[1081,1,1,214,215],[1083,3,3,215,218],[1084,6,5,218,223],[1085,5,5,223,228],[1086,4,4,228,232],[1087,4,3,232,235],[1088,7,5,235,240],[1089,10,7,240,247],[1090,5,5,247,252]]],[47,19,16,252,268,[[1091,3,3,252,255],[1092,1,1,255,256],[1093,1,1,256,257],[1094,6,4,257,261],[1095,6,5,261,266],[1096,2,2,266,268]]],[48,10,10,268,278,[[1097,2,2,268,270],[1098,1,1,270,271],[1099,1,1,271,272],[1100,3,3,272,275],[1101,1,1,275,276],[1102,2,2,276,278]]],[49,12,11,278,289,[[1103,8,7,278,285],[1104,2,2,285,287],[1106,2,2,287,289]]],[50,17,16,289,305,[[1107,5,5,289,294],[1108,6,6,294,300],[1110,6,5,300,305]]],[51,33,27,305,332,[[1111,4,3,305,308],[1112,7,6,308,314],[1113,9,7,314,321],[1114,5,4,321,325],[1115,8,7,325,332]]],[52,16,16,332,348,[[1116,4,4,332,336],[1117,7,7,336,343],[1118,5,5,343,348]]],[57,6,6,348,354,[[1137,1,1,348,349],[1141,1,1,349,350],[1145,4,4,350,354]]],[58,5,5,354,359,[[1147,2,2,354,356],[1149,3,3,356,359]]],[59,13,12,359,371,[[1151,5,5,359,364],[1152,1,1,364,365],[1153,2,2,365,367],[1154,2,1,367,368],[1155,3,3,368,371]]],[60,5,5,371,376,[[1156,3,3,371,374],[1157,1,1,374,375],[1158,1,1,375,376]]],[61,6,4,376,380,[[1160,4,2,376,378],[1161,2,2,378,380]]],[62,2,2,380,382,[[1164,2,2,380,382]]],[64,3,2,382,384,[[1166,3,2,382,384]]],[65,2,2,384,386,[[1168,1,1,384,385],[1178,1,1,385,386]]]],[23203,23228,23245,23278,23280,23290,23312,23322,23331,23339,23430,23431,23433,23434,23436,23440,23457,23487,23488,23517,23850,23857,23858,23952,23953,23961,23966,24020,24086,24109,24202,24209,24223,24232,24418,24557,24579,24669,24722,24726,24728,24753,24782,24803,24880,25041,25155,25168,25172,25173,25174,25178,25179,25306,25342,25366,25369,25371,25372,25373,25374,25379,25382,25425,25470,25471,25473,25487,25543,25545,25546,25629,25646,25762,25782,25838,25860,25895,25899,25950,26035,26040,26127,26194,26252,26318,26327,26335,26413,26417,26538,26610,26615,26664,26671,26686,26694,26696,26708,26711,26714,26715,26717,26718,26719,26728,26733,26739,26748,26753,26888,26931,26971,26978,27018,27022,27159,27394,27402,27429,27466,27467,27545,27551,27572,27578,27598,27621,27646,27654,27655,27658,27705,27749,27791,27877,27889,27919,27940,27941,27943,27986,28095,28207,28234,28237,28246,28247,28259,28316,28318,28325,28326,28327,28332,28333,28335,28352,28353,28355,28357,28358,28359,28361,28370,28371,28373,28395,28397,28412,28439,28447,28448,28449,28450,28451,28452,28454,28492,28519,28568,28580,28587,28594,28602,28603,28614,28622,28635,28683,28684,28714,28781,28782,28783,28786,28788,28791,28795,28796,28808,28812,28815,28816,28818,28825,28826,28827,28828,28829,28831,28832,28834,28842,28874,28899,28909,28915,28920,28924,28927,28928,28931,28938,28941,28949,28954,28955,28960,28961,28964,28970,28972,28980,28985,28991,28995,28998,29000,29009,29036,29037,29038,29039,29040,29042,29043,29044,29046,29047,29050,29056,29063,29064,29066,29086,29103,29142,29148,29149,29151,29164,29169,29170,29172,29174,29200,29201,29221,29224,29230,29253,29273,29289,29294,29310,29348,29359,29368,29369,29371,29373,29385,29387,29388,29416,29417,29463,29464,29471,29475,29486,29487,29490,29495,29498,29502,29507,29510,29512,29548,29550,29552,29554,29556,29565,29567,29569,29571,29572,29579,29581,29582,29588,29592,29594,29595,29596,29599,29601,29602,29604,29606,29613,29616,29625,29633,29635,29639,29644,29645,29648,29654,29655,29659,29660,29662,29663,29664,29666,29674,29675,29678,29679,29681,29682,29684,29688,30042,30125,30262,30263,30264,30265,30299,30300,30339,30347,30352,30384,30386,30389,30394,30399,30408,30437,30439,30460,30471,30475,30478,30491,30492,30494,30503,30533,30576,30577,30586,30592,30655,30657,30677,30696,30741,30903]]],["+",[51,50,[[39,5,5,0,5,[[938,3,3,0,3],[939,1,1,3,4],[952,1,1,4,5]]],[40,2,2,5,7,[[965,1,1,5,6],[969,1,1,6,7]]],[41,2,2,7,9,[[982,2,2,7,9]]],[42,6,6,9,15,[[1004,2,2,9,11],[1007,1,1,11,12],[1008,1,1,12,13],[1010,1,1,13,14],[1011,1,1,14,15]]],[43,5,5,15,20,[[1024,1,1,15,16],[1030,1,1,16,17],[1034,1,1,17,18],[1036,1,1,18,19],[1041,1,1,19,20]]],[44,4,4,20,24,[[1046,1,1,20,21],[1055,1,1,21,22],[1056,1,1,22,23],[1060,1,1,23,24]]],[45,3,3,24,27,[[1062,1,1,24,25],[1065,2,2,25,27]]],[46,9,8,27,35,[[1078,1,1,27,28],[1079,2,2,28,30],[1081,1,1,30,31],[1084,2,1,31,32],[1085,1,1,32,33],[1088,1,1,33,34],[1090,1,1,34,35]]],[47,1,1,35,36,[[1094,1,1,35,36]]],[49,1,1,36,37,[[1106,1,1,36,37]]],[50,1,1,37,38,[[1108,1,1,37,38]]],[51,4,4,38,42,[[1111,1,1,38,39],[1112,1,1,39,40],[1113,2,2,40,42]]],[52,1,1,42,43,[[1116,1,1,42,43]]],[57,1,1,43,44,[[1145,1,1,43,44]]],[58,1,1,44,45,[[1149,1,1,44,45]]],[59,2,2,45,47,[[1154,1,1,45,46],[1155,1,1,46,47]]],[60,2,2,47,49,[[1156,2,2,47,49]]],[64,1,1,49,50,[[1166,1,1,49,50]]]],[23433,23434,23436,23487,23966,24579,24726,25366,25369,26413,26417,26538,26610,26694,26714,27159,27394,27551,27621,27791,27943,28207,28237,28318,28370,28439,28450,28808,28826,28834,28874,28924,28941,29009,29050,29142,29464,29512,29565,29581,29599,29602,29660,30262,30347,30460,30475,30491,30492,30677]]],["Ye",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26127]]],["ye",[37,37,[[39,1,1,0,1,[[934,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[44,5,5,2,7,[[1046,1,1,2,3],[1052,1,1,3,4],[1056,1,1,4,5],[1057,1,1,5,6],[1060,1,1,6,7]]],[45,4,4,7,11,[[1071,3,3,7,10],[1075,1,1,10,11]]],[46,3,3,11,14,[[1079,1,1,11,12],[1083,1,1,12,13],[1084,1,1,13,14]]],[48,4,4,14,18,[[1097,1,1,14,15],[1100,2,2,15,17],[1102,1,1,17,18]]],[49,3,3,18,21,[[1103,3,3,18,21]]],[50,3,3,21,24,[[1107,1,1,21,22],[1108,1,1,22,23],[1110,1,1,23,24]]],[51,4,4,24,28,[[1111,1,1,24,25],[1112,1,1,25,26],[1114,2,2,26,28]]],[52,3,3,28,31,[[1116,1,1,28,29],[1117,1,1,29,30],[1118,1,1,30,31]]],[58,3,3,31,34,[[1147,1,1,31,32],[1149,2,2,32,34]]],[60,2,2,34,36,[[1156,1,1,34,35],[1158,1,1,35,36]]],[64,1,1,36,37,[[1166,1,1,36,37]]]],[23290,27545,27941,28095,28234,28247,28316,28568,28580,28587,28683,28831,28899,28927,29224,29289,29294,29348,29368,29371,29373,29475,29495,29548,29567,29582,29604,29606,29654,29663,29684,30300,30339,30352,30494,30533,30677]]],["you",[341,311,[[39,32,28,0,28,[[931,2,1,0,1],[932,1,1,1,2],[933,6,3,2,5],[934,1,1,5,6],[935,3,3,6,9],[938,5,5,9,14],[939,1,1,14,15],[940,1,1,15,16],[949,3,3,16,19],[951,2,2,19,21],[952,2,2,21,23],[953,1,1,23,24],[954,2,2,24,26],[956,2,2,26,28]]],[40,12,11,28,39,[[957,3,2,28,30],[962,1,1,30,31],[965,1,1,31,32],[967,1,1,32,33],[969,3,3,33,36],[970,2,2,36,38],[972,1,1,38,39]]],[41,37,35,39,74,[[975,2,1,39,40],[978,8,7,40,47],[981,2,2,47,49],[982,6,6,49,55],[983,1,1,55,56],[984,4,4,56,60],[985,3,3,60,63],[988,2,2,63,65],[991,1,1,65,66],[992,1,1,66,67],[993,2,2,67,69],[994,2,2,69,71],[995,1,1,71,72],[996,2,2,72,74]]],[42,29,24,74,98,[[1000,1,1,74,75],[1001,1,1,75,76],[1002,2,2,76,78],[1003,1,1,78,79],[1008,1,1,79,80],[1009,1,1,80,81],[1010,5,4,81,85],[1011,9,7,85,92],[1012,7,5,92,97],[1016,1,1,97,98]]],[43,20,20,98,118,[[1018,1,1,98,99],[1019,2,2,99,101],[1020,2,2,101,103],[1030,1,1,103,104],[1031,1,1,104,105],[1032,2,2,105,107],[1035,1,1,107,108],[1036,1,1,108,109],[1037,4,4,109,113],[1039,1,1,113,114],[1040,1,1,114,115],[1044,2,2,115,117],[1045,1,1,117,118]]],[44,23,21,118,139,[[1046,3,3,118,121],[1047,1,1,121,122],[1055,1,1,122,123],[1057,2,2,123,125],[1060,8,7,125,132],[1061,8,7,132,139]]],[45,34,30,139,169,[[1062,2,2,139,141],[1063,2,2,141,143],[1064,1,1,143,144],[1065,6,6,144,150],[1068,2,2,150,152],[1071,3,2,152,154],[1072,4,4,154,158],[1073,1,1,158,159],[1075,3,2,159,161],[1077,10,8,161,169]]],[46,45,40,169,209,[[1078,3,3,169,172],[1079,5,5,172,177],[1080,1,1,177,178],[1083,2,2,178,180],[1084,3,3,180,183],[1085,4,4,183,187],[1086,4,4,187,191],[1087,4,3,191,194],[1088,6,5,194,199],[1089,10,7,199,206],[1090,3,3,206,209]]],[47,18,16,209,225,[[1091,3,3,209,212],[1092,1,1,212,213],[1093,1,1,213,214],[1094,5,4,214,218],[1095,6,5,218,223],[1096,2,2,223,225]]],[48,4,4,225,229,[[1098,1,1,225,226],[1100,1,1,226,227],[1101,1,1,227,228],[1102,1,1,228,229]]],[49,8,8,229,237,[[1103,5,5,229,234],[1104,2,2,234,236],[1106,1,1,236,237]]],[50,13,12,237,249,[[1107,4,4,237,241],[1108,4,4,241,245],[1110,5,4,245,249]]],[51,25,23,249,272,[[1111,2,2,249,251],[1112,5,5,251,256],[1113,7,6,256,262],[1114,3,3,262,265],[1115,8,7,265,272]]],[52,12,12,272,284,[[1116,2,2,272,274],[1117,6,6,274,280],[1118,4,4,280,284]]],[57,5,5,284,289,[[1137,1,1,284,285],[1141,1,1,285,286],[1145,3,3,286,289]]],[58,1,1,289,290,[[1147,1,1,289,290]]],[59,11,11,290,301,[[1151,5,5,290,295],[1152,1,1,295,296],[1153,2,2,296,298],[1154,1,1,298,299],[1155,2,2,299,301]]],[60,1,1,301,302,[[1157,1,1,301,302]]],[61,6,4,302,306,[[1160,4,2,302,304],[1161,2,2,304,306]]],[62,2,2,306,308,[[1164,2,2,306,308]]],[64,1,1,308,309,[[1166,1,1,308,309]]],[65,2,2,309,311,[[1168,1,1,309,310],[1178,1,1,310,311]]]],[23203,23228,23245,23278,23280,23312,23322,23331,23339,23430,23431,23434,23440,23457,23488,23517,23850,23857,23858,23952,23953,23961,23966,24020,24086,24109,24202,24209,24223,24232,24418,24557,24669,24722,24728,24753,24782,24803,24880,25041,25155,25168,25172,25173,25174,25178,25179,25306,25342,25371,25372,25373,25374,25379,25382,25425,25470,25471,25473,25487,25543,25545,25546,25629,25646,25762,25782,25838,25860,25895,25899,25950,26035,26040,26194,26252,26318,26327,26335,26615,26664,26671,26686,26694,26696,26708,26711,26714,26715,26717,26718,26719,26728,26733,26739,26748,26753,26888,26931,26971,26978,27018,27022,27402,27429,27466,27467,27578,27598,27646,27654,27655,27658,27705,27749,27877,27889,27919,27940,27941,27943,27986,28207,28246,28259,28316,28325,28326,28327,28332,28333,28335,28352,28353,28355,28357,28358,28359,28361,28371,28373,28395,28397,28412,28447,28448,28449,28451,28452,28454,28492,28519,28580,28594,28602,28603,28614,28622,28635,28684,28714,28781,28782,28783,28786,28788,28791,28795,28796,28815,28816,28818,28825,28827,28828,28829,28832,28842,28909,28915,28920,28928,28931,28938,28949,28954,28955,28960,28961,28964,28970,28972,28980,28985,28991,28995,28998,29000,29009,29036,29037,29038,29039,29040,29042,29043,29044,29047,29056,29063,29064,29066,29086,29103,29142,29148,29149,29151,29164,29169,29170,29172,29174,29200,29201,29230,29273,29310,29359,29368,29369,29385,29387,29388,29416,29417,29463,29471,29486,29487,29490,29498,29502,29507,29510,29550,29552,29554,29556,29565,29569,29571,29572,29579,29582,29588,29592,29594,29595,29596,29601,29602,29604,29613,29616,29625,29633,29635,29639,29644,29645,29648,29655,29659,29662,29664,29666,29674,29675,29678,29679,29681,29682,29688,30042,30125,30263,30264,30265,30299,30384,30386,30389,30394,30399,30408,30437,30439,30460,30471,30478,30503,30576,30577,30586,30592,30655,30657,30696,30741,30903]]],["your",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]]],[27572,29221]]],["youward",[3,3,[[46,2,2,0,2,[[1078,1,1,0,1],[1090,1,1,1,2]]],[48,1,1,2,3,[[1099,1,1,2,3]]]],[28812,29046,29253]]]]},{"k":"G5210","v":[["*",[241,227,[[39,32,30,0,30,[[933,3,3,0,3],[934,2,2,3,5],[935,2,2,5,7],[937,1,1,7,8],[938,2,2,8,10],[941,1,1,10,11],[942,1,1,11,12],[943,3,3,12,15],[944,1,1,15,16],[947,2,1,16,17],[948,2,2,17,19],[949,2,2,19,21],[951,5,4,21,25],[952,2,2,25,27],[954,1,1,27,28],[955,1,1,28,29],[956,1,1,29,30]]],[40,11,11,30,41,[[962,2,2,30,32],[963,2,2,32,34],[964,1,1,34,35],[967,2,2,35,37],[968,1,1,37,38],[969,3,3,38,41]]],[41,22,22,41,63,[[978,1,1,41,42],[981,4,4,42,46],[982,1,1,46,47],[983,3,3,47,50],[984,4,4,50,54],[988,1,1,54,55],[989,1,1,55,56],[991,1,1,56,57],[993,1,1,57,58],[994,3,3,58,61],[996,2,2,61,63]]],[42,68,62,63,125,[[997,1,1,63,64],[999,1,1,64,65],[1000,6,5,65,70],[1001,8,8,70,78],[1002,1,1,78,79],[1003,5,5,79,84],[1004,14,13,84,97],[1005,3,3,97,100],[1006,2,2,100,102],[1007,1,1,102,103],[1009,6,6,103,109],[1010,6,4,109,113],[1011,7,6,113,119],[1012,4,3,119,122],[1014,1,1,122,123],[1015,2,2,123,125]]],[43,26,25,125,150,[[1018,1,1,125,126],[1019,3,3,126,129],[1020,3,3,129,132],[1021,2,2,132,134],[1022,1,1,134,135],[1024,5,4,135,139],[1025,1,1,139,140],[1027,2,2,140,142],[1028,1,1,142,143],[1032,1,1,143,144],[1036,1,1,144,145],[1037,2,2,145,147],[1039,1,1,147,148],[1040,1,1,148,149],[1044,1,1,149,150]]],[44,7,7,150,157,[[1046,1,1,150,151],[1051,1,1,151,152],[1052,1,1,152,153],[1053,1,1,153,154],[1054,1,1,154,155],[1056,1,1,155,156],[1061,1,1,156,157]]],[45,18,16,157,173,[[1062,1,1,157,158],[1064,2,2,158,160],[1065,3,1,160,161],[1066,2,2,161,163],[1067,1,1,163,164],[1070,2,2,164,166],[1071,1,1,166,167],[1073,1,1,167,168],[1075,2,2,168,170],[1077,3,3,170,173]]],[46,11,11,173,184,[[1078,1,1,173,174],[1080,1,1,174,175],[1083,3,3,175,178],[1085,1,1,178,179],[1086,1,1,179,180],[1088,1,1,180,181],[1089,1,1,181,182],[1090,2,2,182,184]]],[47,5,5,184,189,[[1093,2,2,184,186],[1094,1,1,186,187],[1095,1,1,187,188],[1096,1,1,188,189]]],[48,7,7,189,196,[[1097,1,1,189,190],[1098,3,3,190,193],[1100,1,1,193,194],[1101,1,1,194,195],[1102,1,1,195,196]]],[49,3,2,196,198,[[1104,1,1,196,197],[1106,2,1,197,198]]],[50,6,6,198,204,[[1109,4,4,198,202],[1110,2,2,202,204]]],[51,10,9,204,213,[[1111,1,1,204,205],[1112,5,4,205,209],[1113,1,1,209,210],[1114,1,1,210,211],[1115,2,2,211,213]]],[52,2,2,213,215,[[1116,1,1,213,214],[1118,1,1,214,215]]],[58,2,2,215,217,[[1147,1,1,215,216],[1150,1,1,216,217]]],[59,2,2,217,219,[[1152,1,1,217,218],[1154,1,1,218,219]]],[60,1,1,219,220,[[1158,1,1,219,220]]],[61,6,5,220,225,[[1159,1,1,220,221],[1160,4,3,221,224],[1162,1,1,224,225]]],[64,2,2,225,227,[[1166,2,2,225,227]]]],[23247,23248,23282,23291,23308,23327,23328,23383,23437,23448,23557,23613,23636,23638,23649,23687,23790,23796,23799,23839,23858,23926,23931,23946,23950,23990,24001,24085,24153,24200,24438,24444,24474,24481,24529,24657,24666,24700,24728,24740,24746,25177,25314,25321,25345,25356,25387,25418,25444,25453,25483,25488,25495,25499,25635,25661,25777,25857,25890,25892,25934,26039,26040,26070,26148,26176,26178,26188,26191,26194,26230,26243,26244,26245,26248,26249,26254,26255,26324,26336,26356,26362,26364,26375,26395,26396,26402,26403,26404,26412,26419,26422,26425,26427,26428,26430,26435,26459,26467,26470,26507,26517,26572,26640,26643,26644,26645,26663,26664,26671,26685,26687,26688,26702,26703,26704,26713,26715,26726,26746,26748,26753,26816,26831,26860,26928,26964,26982,26985,27009,27010,27021,27029,27032,27089,27120,27142,27167,27168,27200,27287,27296,27323,27449,27600,27644,27651,27707,27749,27886,27936,28079,28095,28125,28181,28239,28353,28393,28427,28433,28443,28456,28466,28475,28541,28542,28582,28661,28687,28690,28777,28782,28792,28814,28843,28911,28914,28916,28941,28960,28996,29033,29050,29052,29130,29131,29143,29175,29189,29219,29240,29242,29251,29292,29337,29358,29409,29457,29521,29524,29525,29530,29543,29558,29566,29580,29584,29589,29590,29598,29612,29625,29626,29661,29691,30299,30362,30408,30447,30539,30543,30570,30574,30577,30607,30689,30692]]],["+",[7,7,[[39,2,2,0,2,[[934,1,1,0,1],[951,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,1,1,3,4,[[984,1,1,3,4]]],[42,1,1,4,5,[[1003,1,1,4,5]]],[48,1,1,5,6,[[1101,1,1,5,6]]],[58,1,1,6,7,[[1150,1,1,6,7]]]],[23308,23950,24740,25483,26336,29337,30362]]],["Let",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25345]]],["Ye",[25,25,[[39,2,2,0,2,[[933,2,2,0,2]]],[41,3,3,2,5,[[988,1,1,2,3],[994,2,2,3,5]]],[42,11,11,5,16,[[999,1,1,5,6],[1000,1,1,6,7],[1001,1,1,7,8],[1004,4,4,8,12],[1007,1,1,12,13],[1009,1,1,13,14],[1011,2,2,14,16]]],[43,3,3,16,19,[[1020,1,1,16,17],[1027,1,1,17,18],[1037,1,1,18,19]]],[44,1,1,19,20,[[1054,1,1,19,20]]],[46,1,1,20,21,[[1080,1,1,20,21]]],[51,2,2,21,23,[[1112,1,1,21,22],[1115,1,1,22,23]]],[60,1,1,23,24,[[1158,1,1,23,24]]],[61,1,1,24,25,[[1162,1,1,24,25]]]],[23247,23248,25635,25892,25934,26148,26178,26243,26396,26404,26422,26425,26572,26643,26713,26715,27021,27287,27644,28181,28843,29580,29626,30539,30607]]],["be",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28960]]],["ye",[205,193,[[39,28,26,0,26,[[933,1,1,0,1],[934,1,1,1,2],[935,2,2,2,4],[937,1,1,4,5],[938,2,2,5,7],[941,1,1,7,8],[942,1,1,8,9],[943,3,3,9,12],[944,1,1,12,13],[947,2,1,13,14],[948,2,2,14,16],[949,2,2,16,18],[951,4,3,18,21],[952,2,2,21,23],[954,1,1,23,24],[955,1,1,24,25],[956,1,1,25,26]]],[40,10,10,26,36,[[962,2,2,26,28],[963,2,2,28,30],[964,1,1,30,31],[967,2,2,31,33],[968,1,1,33,34],[969,2,2,34,36]]],[41,16,16,36,52,[[978,1,1,36,37],[981,3,3,37,40],[982,1,1,40,41],[983,3,3,41,44],[984,2,2,44,46],[989,1,1,46,47],[991,1,1,47,48],[993,1,1,48,49],[994,1,1,49,50],[996,2,2,50,52]]],[42,56,52,52,104,[[997,1,1,52,53],[1000,5,4,53,57],[1001,7,7,57,64],[1002,1,1,64,65],[1003,4,4,65,69],[1004,10,10,69,79],[1005,3,3,79,82],[1006,2,2,82,84],[1009,5,5,84,89],[1010,6,4,89,93],[1011,5,5,93,98],[1012,4,3,98,101],[1014,1,1,101,102],[1015,2,2,102,104]]],[43,23,22,104,126,[[1018,1,1,104,105],[1019,3,3,105,108],[1020,2,2,108,110],[1021,2,2,110,112],[1022,1,1,112,113],[1024,5,4,113,117],[1025,1,1,117,118],[1027,1,1,118,119],[1028,1,1,119,120],[1032,1,1,120,121],[1036,1,1,121,122],[1037,1,1,122,123],[1039,1,1,123,124],[1040,1,1,124,125],[1044,1,1,125,126]]],[44,6,6,126,132,[[1046,1,1,126,127],[1051,1,1,127,128],[1052,1,1,128,129],[1053,1,1,129,130],[1056,1,1,130,131],[1061,1,1,131,132]]],[45,18,16,132,148,[[1062,1,1,132,133],[1064,2,2,133,135],[1065,3,1,135,136],[1066,2,2,136,138],[1067,1,1,138,139],[1070,2,2,139,141],[1071,1,1,141,142],[1073,1,1,142,143],[1075,2,2,143,145],[1077,3,3,145,148]]],[46,9,9,148,157,[[1078,1,1,148,149],[1083,3,3,149,152],[1085,1,1,152,153],[1088,1,1,153,154],[1089,1,1,154,155],[1090,2,2,155,157]]],[47,5,5,157,162,[[1093,2,2,157,159],[1094,1,1,159,160],[1095,1,1,160,161],[1096,1,1,161,162]]],[48,6,6,162,168,[[1097,1,1,162,163],[1098,3,3,163,166],[1100,1,1,166,167],[1102,1,1,167,168]]],[49,3,2,168,170,[[1104,1,1,168,169],[1106,2,1,169,170]]],[50,6,6,170,176,[[1109,4,4,170,174],[1110,2,2,174,176]]],[51,8,7,176,183,[[1111,1,1,176,177],[1112,4,3,177,180],[1113,1,1,180,181],[1114,1,1,181,182],[1115,1,1,182,183]]],[52,2,2,183,185,[[1116,1,1,183,184],[1118,1,1,184,185]]],[58,1,1,185,186,[[1147,1,1,185,186]]],[59,1,1,186,187,[[1152,1,1,186,187]]],[61,5,4,187,191,[[1159,1,1,187,188],[1160,4,3,188,191]]],[64,2,2,191,193,[[1166,2,2,191,193]]]],[23282,23291,23327,23328,23383,23437,23448,23557,23613,23636,23638,23649,23687,23790,23796,23799,23839,23858,23926,23931,23946,23990,24001,24085,24153,24200,24438,24444,24474,24481,24529,24657,24666,24700,24728,24746,25177,25314,25321,25356,25387,25418,25444,25453,25488,25499,25661,25777,25857,25890,26039,26040,26070,26176,26188,26191,26194,26230,26244,26245,26248,26249,26254,26255,26324,26356,26362,26364,26375,26395,26402,26403,26404,26412,26419,26427,26428,26430,26435,26459,26467,26470,26507,26517,26640,26644,26645,26663,26664,26671,26685,26687,26688,26702,26703,26704,26715,26726,26746,26748,26753,26816,26831,26860,26928,26964,26982,26985,27009,27010,27029,27032,27089,27120,27142,27167,27168,27200,27296,27323,27449,27600,27651,27707,27749,27886,27936,28079,28095,28125,28239,28353,28393,28427,28433,28443,28456,28466,28475,28541,28542,28582,28661,28687,28690,28777,28782,28792,28814,28911,28914,28916,28941,28996,29033,29050,29052,29130,29131,29143,29175,29189,29219,29240,29242,29251,29292,29358,29409,29457,29521,29524,29525,29530,29543,29558,29566,29584,29589,29590,29598,29612,29625,29661,29691,30299,30408,30543,30570,30574,30577,30689,30692]]],["yourselves",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[25495,30447]]]]},{"k":"G5211","v":[["Hymenaeus",[2,2,[[53,1,1,0,1,[[1119,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[29716,29844]]]]},{"k":"G5212","v":[["*",[9,9,[[41,2,2,0,2,[[978,1,1,0,1],[988,1,1,1,2]]],[42,3,3,2,5,[[1003,1,1,2,3],[1004,1,1,3,4],[1011,1,1,4,5]]],[43,1,1,5,6,[[1044,1,1,5,6]]],[44,1,1,6,7,[[1056,1,1,6,7]]],[46,1,1,7,8,[[1085,1,1,7,8]]],[47,1,1,8,9,[[1096,1,1,8,9]]]],[25166,25632,26334,26398,26719,27889,28240,28940,29201]]],["own",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25632]]],["your",[6,6,[[42,2,2,0,2,[[1003,1,1,0,1],[1004,1,1,1,2]]],[43,1,1,2,3,[[1044,1,1,2,3]]],[44,1,1,3,4,[[1056,1,1,3,4]]],[46,1,1,4,5,[[1085,1,1,4,5]]],[47,1,1,5,6,[[1096,1,1,5,6]]]],[26334,26398,27889,28240,28940,29201]]],["yours",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[42,1,1,1,2,[[1011,1,1,1,2]]]],[25166,26719]]]]},{"k":"G5213","v":[["*",[623,568,[[39,109,104,0,104,[[931,2,2,0,2],[933,8,8,2,10],[934,9,9,10,19],[935,4,3,19,22],[936,2,2,22,24],[937,1,1,24,25],[938,6,6,25,31],[939,8,6,31,37],[940,3,3,37,40],[941,2,2,40,42],[944,2,2,42,44],[945,3,2,44,46],[946,7,7,46,53],[947,5,5,53,58],[948,5,4,58,62],[949,7,7,62,69],[950,2,2,69,71],[951,12,12,71,83],[952,6,6,83,89],[953,5,5,89,94],[954,6,6,94,100],[955,2,2,100,102],[956,2,2,102,104]]],[40,37,34,104,138,[[959,1,1,104,105],[960,3,2,105,107],[962,1,1,107,108],[964,1,1,108,109],[965,3,3,109,112],[966,7,6,112,118],[967,7,6,118,124],[968,1,1,124,125],[969,5,5,125,130],[970,6,6,130,136],[971,1,1,136,137],[972,1,1,137,138]]],[41,101,93,138,231,[[974,3,3,138,141],[975,3,3,141,144],[976,2,2,144,146],[978,13,11,146,157],[979,6,5,157,162],[980,1,1,162,163],[981,2,2,163,165],[982,8,8,165,173],[983,12,10,173,183],[984,11,10,183,193],[985,7,6,193,199],[986,1,1,199,200],[987,2,2,200,202],[988,3,3,202,205],[989,4,4,205,209],[990,4,4,209,213],[991,2,2,213,215],[992,1,1,215,216],[993,5,4,216,220],[994,8,8,220,228],[996,3,3,228,231]]],[42,103,84,231,315,[[997,1,1,231,232],[998,1,1,232,233],[999,2,1,233,234],[1000,1,1,234,235],[1001,4,4,235,239],[1002,10,8,239,247],[1003,2,2,247,249],[1004,7,7,249,256],[1005,1,1,256,257],[1006,5,5,257,262],[1007,1,1,262,263],[1008,1,1,263,264],[1009,9,8,264,272],[1010,17,12,272,284],[1011,13,11,284,295],[1012,20,14,295,309],[1014,4,2,309,311],[1015,1,1,311,312],[1016,3,3,312,315]]],[43,32,30,315,345,[[1019,2,2,315,317],[1020,4,4,317,321],[1021,1,1,321,322],[1022,3,3,322,325],[1024,1,1,325,326],[1030,8,6,326,332],[1031,1,1,332,333],[1032,1,1,333,334],[1034,2,2,334,336],[1037,5,5,336,341],[1039,1,1,341,342],[1042,1,1,342,343],[1043,1,1,343,344],[1045,1,1,344,345]]],[44,16,15,345,360,[[1046,5,5,345,350],[1053,4,3,350,353],[1056,1,1,353,354],[1057,1,1,354,355],[1060,3,3,355,358],[1061,2,2,358,360]]],[45,46,43,360,403,[[1062,5,5,360,365],[1063,2,2,365,367],[1064,4,4,367,371],[1065,2,2,371,373],[1066,3,3,373,376],[1067,5,4,376,380],[1068,1,1,380,381],[1070,2,2,381,383],[1071,2,2,383,385],[1072,8,7,385,392],[1073,2,2,392,394],[1075,3,3,394,397],[1076,7,6,397,403]]],[46,31,30,403,433,[[1078,4,4,403,407],[1079,2,2,407,409],[1081,2,2,409,411],[1082,3,2,411,413],[1083,1,1,413,414],[1084,5,5,414,419],[1085,3,3,419,422],[1086,2,2,422,424],[1087,2,2,424,426],[1088,2,2,426,428],[1089,3,3,428,431],[1090,2,2,431,433]]],[47,16,14,433,447,[[1091,5,4,433,437],[1093,3,2,437,439],[1094,5,5,439,444],[1095,2,2,444,446],[1096,1,1,446,447]]],[48,8,8,447,455,[[1097,2,2,447,449],[1098,1,1,449,450],[1099,1,1,450,451],[1100,2,2,451,453],[1101,1,1,453,454],[1102,1,1,454,455]]],[49,13,12,455,467,[[1103,5,5,455,460],[1104,4,4,460,464],[1105,4,3,464,467]]],[50,11,11,467,478,[[1107,4,4,467,471],[1108,2,2,471,473],[1109,2,2,473,475],[1110,3,3,475,478]]],[51,14,14,478,492,[[1111,2,2,478,480],[1112,3,3,480,483],[1113,2,2,483,485],[1114,5,5,485,490],[1115,2,2,490,492]]],[52,12,12,492,504,[[1116,4,4,492,496],[1117,1,1,496,497],[1118,7,7,497,504]]],[56,3,3,504,507,[[1132,3,3,504,507]]],[57,7,7,507,514,[[1144,2,2,507,509],[1145,5,5,509,514]]],[58,9,9,514,523,[[1146,1,1,514,515],[1148,1,1,515,516],[1149,2,2,516,518],[1150,5,5,518,523]]],[59,12,10,523,533,[[1151,3,3,523,526],[1152,1,1,526,527],[1153,1,1,527,528],[1154,3,1,528,529],[1155,4,4,529,533]]],[60,8,8,533,541,[[1156,4,4,533,537],[1157,2,2,537,539],[1158,2,2,539,541]]],[61,23,16,541,557,[[1159,4,4,541,545],[1160,17,10,545,555],[1162,1,1,555,556],[1163,1,1,556,557]]],[62,1,1,557,558,[[1164,1,1,557,558]]],[64,5,4,558,562,[[1166,5,4,558,562]]],[65,6,6,562,568,[[1167,1,1,562,563],[1168,3,3,563,566],[1184,1,1,566,567],[1188,1,1,567,568]]]],[23199,23201,23252,23254,23256,23262,23266,23268,23273,23278,23284,23287,23296,23298,23301,23302,23307,23311,23315,23318,23323,23328,23355,23356,23408,23432,23436,23437,23440,23444,23459,23468,23470,23476,23480,23481,23483,23495,23520,23525,23550,23556,23683,23700,23712,23720,23730,23737,23739,23740,23745,23746,23762,23770,23771,23785,23786,23790,23796,23818,23819,23824,23829,23847,23850,23853,23854,23857,23869,23903,23914,23921,23931,23932,23933,23934,23941,23943,23945,23947,23954,23956,23957,23959,23980,23982,23983,23991,24004,24017,24020,24042,24048,24053,24067,24069,24075,24083,24118,24120,24146,24150,24202,24215,24316,24334,24347,24418,24512,24539,24551,24579,24591,24593,24603,24617,24624,24631,24643,24663,24664,24665,24669,24673,24716,24728,24738,24740,24747,24754,24763,24767,24769,24772,24779,24818,24835,24880,24983,24984,24985,25032,25033,25038,25087,25088,25170,25171,25172,25173,25174,25177,25178,25179,25180,25184,25193,25204,25221,25223,25227,25242,25255,25328,25349,25371,25374,25375,25376,25377,25382,25383,25387,25413,25414,25446,25447,25448,25449,25451,25452,25456,25457,25463,25464,25467,25481,25486,25490,25491,25496,25503,25510,25521,25523,25542,25543,25545,25553,25577,25595,25598,25629,25631,25632,25657,25661,25674,25685,25696,25702,25705,25717,25757,25771,25787,25829,25839,25841,25858,25874,25876,25880,25882,25890,25893,25901,25931,25997,26027,26035,26095,26100,26132,26191,26229,26234,26235,26248,26283,26284,26289,26293,26304,26310,26320,26322,26347,26350,26405,26406,26415,26418,26421,26432,26439,26467,26482,26488,26506,26507,26513,26579,26604,26642,26645,26646,26649,26650,26651,26663,26664,26670,26671,26678,26680,26684,26685,26688,26693,26694,26695,26696,26697,26702,26703,26706,26710,26713,26714,26715,26716,26719,26720,26725,26727,26729,26730,26732,26733,26738,26739,26740,26741,26746,26749,26751,26752,26759,26793,26824,26829,26886,26888,26893,26963,26988,27010,27016,27018,27022,27032,27068,27087,27097,27153,27377,27388,27396,27400,27403,27408,27429,27470,27526,27546,27646,27652,27653,27658,27661,27729,27801,27831,27927,27937,27941,27942,27943,27945,28125,28126,28127,28222,28248,28308,28318,28335,28337,28355,28366,28367,28369,28373,28374,28395,28396,28411,28413,28426,28428,28441,28450,28455,28463,28465,28469,28472,28474,28486,28522,28542,28551,28594,28595,28602,28613,28618,28619,28622,28623,28630,28637,28665,28684,28703,28715,28719,28720,28721,28730,28752,28769,28802,28813,28819,28821,28827,28828,28871,28873,28889,28890,28916,28923,28927,28928,28930,28932,28933,28942,28945,28957,28970,28972,28986,28996,28998,29034,29041,29042,29046,29048,29060,29065,29068,29077,29103,29107,29144,29146,29147,29150,29151,29164,29183,29199,29208,29223,29246,29267,29278,29304,29307,29358,29363,29367,29386,29389,29390,29396,29404,29408,29410,29422,29436,29439,29467,29470,29471,29492,29499,29507,29530,29533,29549,29551,29558,29561,29565,29578,29580,29583,29594,29597,29605,29609,29612,29614,29618,29622,29633,29651,29653,29656,29661,29666,29682,29684,29685,29687,29688,29689,29694,29941,29944,29960,30217,30219,30248,30258,30260,30262,30263,30292,30332,30338,30345,30357,30360,30367,30368,30373,30376,30386,30387,30406,30439,30458,30466,30467,30477,30479,30481,30487,30490,30495,30501,30513,30523,30537,30542,30543,30544,30545,30551,30557,30558,30562,30563,30564,30571,30574,30576,30577,30607,30637,30657,30674,30675,30684,30690,30701,30730,30740,30741,30999,31096]]],["+",[22,22,[[39,4,4,0,4,[[935,1,1,0,1],[952,1,1,1,2],[954,1,1,2,3],[955,1,1,3,4]]],[41,4,4,4,8,[[974,1,1,4,5],[978,1,1,5,6],[988,1,1,6,7],[993,1,1,7,8]]],[42,2,2,8,10,[[1001,1,1,8,9],[1006,1,1,9,10]]],[43,2,2,10,12,[[1030,1,1,10,11],[1037,1,1,11,12]]],[44,1,1,12,13,[[1061,1,1,12,13]]],[45,2,2,13,15,[[1072,1,1,13,14],[1073,1,1,14,15]]],[46,1,1,15,16,[[1085,1,1,15,16]]],[47,3,3,16,19,[[1094,2,2,16,18],[1095,1,1,18,19]]],[51,1,1,19,20,[[1113,1,1,19,20]]],[58,1,1,20,21,[[1150,1,1,20,21]]],[59,1,1,21,22,[[1154,1,1,21,22]]]],[23318,23982,24120,24150,24983,25184,25631,25858,26234,26488,27377,27652,28355,28613,28637,28933,29146,29147,29183,29594,30367,30458]]],["cause",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28890]]],["thee",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25242]]],["ye",[12,12,[[39,3,3,0,3,[[946,1,1,0,1],[949,1,1,1,2],[950,1,1,2,3]]],[40,2,2,3,5,[[967,1,1,3,4],[970,1,1,4,5]]],[41,3,3,5,8,[[978,3,3,5,8]]],[42,2,2,8,10,[[1007,1,1,8,9],[1014,1,1,9,10]]],[43,1,1,10,11,[[1022,1,1,10,11]]],[46,1,1,11,12,[[1085,1,1,11,12]]]],[23739,23854,23914,24664,24818,25178,25179,25180,26579,26824,27068,28945]]],["you",[582,533,[[39,100,95,0,95,[[931,2,2,0,2],[933,8,8,2,10],[934,7,7,10,17],[935,3,2,17,19],[936,2,2,19,21],[937,1,1,21,22],[938,6,6,22,28],[939,8,6,28,34],[940,3,3,34,37],[941,2,2,37,39],[944,2,2,39,41],[945,3,2,41,43],[946,6,6,43,49],[947,5,5,49,54],[948,5,4,54,58],[949,6,6,58,64],[950,1,1,64,65],[951,12,12,65,77],[952,5,5,77,82],[953,5,5,82,87],[954,5,5,87,92],[955,1,1,92,93],[956,2,2,93,95]]],[40,35,33,95,128,[[959,1,1,95,96],[960,3,2,96,98],[962,1,1,98,99],[964,1,1,99,100],[965,3,3,100,103],[966,7,6,103,109],[967,6,6,109,115],[968,1,1,115,116],[969,5,5,116,121],[970,5,5,121,126],[971,1,1,126,127],[972,1,1,127,128]]],[41,92,86,128,214,[[974,2,2,128,130],[975,3,3,130,133],[976,2,2,133,135],[978,9,8,135,143],[979,5,4,143,147],[980,1,1,147,148],[981,2,2,148,150],[982,8,8,150,158],[983,12,10,158,168],[984,11,10,168,178],[985,7,6,178,184],[986,1,1,184,185],[987,2,2,185,187],[988,2,2,187,189],[989,4,4,189,193],[990,4,4,193,197],[991,2,2,197,199],[992,1,1,199,200],[993,3,3,200,203],[994,8,8,203,211],[996,3,3,211,214]]],[42,99,81,214,295,[[997,1,1,214,215],[998,1,1,215,216],[999,2,1,216,217],[1000,1,1,217,218],[1001,3,3,218,221],[1002,10,8,221,229],[1003,2,2,229,231],[1004,7,7,231,238],[1005,1,1,238,239],[1006,4,4,239,243],[1008,1,1,243,244],[1009,9,8,244,252],[1010,17,12,252,264],[1011,13,11,264,275],[1012,20,14,275,289],[1014,3,2,289,291],[1015,1,1,291,292],[1016,3,3,292,295]]],[43,29,27,295,322,[[1019,2,2,295,297],[1020,4,4,297,301],[1021,1,1,301,302],[1022,2,2,302,304],[1024,1,1,304,305],[1030,7,5,305,310],[1031,1,1,310,311],[1032,1,1,311,312],[1034,2,2,312,314],[1037,4,4,314,318],[1039,1,1,318,319],[1042,1,1,319,320],[1043,1,1,320,321],[1045,1,1,321,322]]],[44,15,14,322,336,[[1046,5,5,322,327],[1053,4,3,327,330],[1056,1,1,330,331],[1057,1,1,331,332],[1060,3,3,332,335],[1061,1,1,335,336]]],[45,42,40,336,376,[[1062,5,5,336,341],[1063,2,2,341,343],[1064,4,4,343,347],[1065,2,2,347,349],[1066,3,3,349,352],[1067,4,4,352,356],[1068,1,1,356,357],[1070,2,2,357,359],[1071,2,2,359,361],[1072,7,6,361,367],[1073,1,1,367,368],[1075,3,3,368,371],[1076,6,5,371,376]]],[46,28,27,376,403,[[1078,4,4,376,380],[1079,2,2,380,382],[1081,2,2,382,384],[1082,2,1,384,385],[1083,1,1,385,386],[1084,5,5,386,391],[1085,1,1,391,392],[1086,2,2,392,394],[1087,2,2,394,396],[1088,2,2,396,398],[1089,3,3,398,401],[1090,2,2,401,403]]],[47,13,11,403,414,[[1091,5,4,403,407],[1093,3,2,407,409],[1094,3,3,409,412],[1095,1,1,412,413],[1096,1,1,413,414]]],[48,8,8,414,422,[[1097,2,2,414,416],[1098,1,1,416,417],[1099,1,1,417,418],[1100,2,2,418,420],[1101,1,1,420,421],[1102,1,1,421,422]]],[49,13,12,422,434,[[1103,5,5,422,427],[1104,4,4,427,431],[1105,4,3,431,434]]],[50,11,11,434,445,[[1107,4,4,434,438],[1108,2,2,438,440],[1109,2,2,440,442],[1110,3,3,442,445]]],[51,13,13,445,458,[[1111,2,2,445,447],[1112,3,3,447,450],[1113,1,1,450,451],[1114,5,5,451,456],[1115,2,2,456,458]]],[52,12,12,458,470,[[1116,4,4,458,462],[1117,1,1,462,463],[1118,7,7,463,470]]],[56,3,3,470,473,[[1132,3,3,470,473]]],[57,7,7,473,480,[[1144,2,2,473,475],[1145,5,5,475,480]]],[58,8,8,480,488,[[1146,1,1,480,481],[1148,1,1,481,482],[1149,2,2,482,484],[1150,4,4,484,488]]],[59,11,10,488,498,[[1151,3,3,488,491],[1152,1,1,491,492],[1153,1,1,492,493],[1154,2,1,493,494],[1155,4,4,494,498]]],[60,8,8,498,506,[[1156,4,4,498,502],[1157,2,2,502,504],[1158,2,2,504,506]]],[61,23,16,506,522,[[1159,4,4,506,510],[1160,17,10,510,520],[1162,1,1,520,521],[1163,1,1,521,522]]],[62,1,1,522,523,[[1164,1,1,522,523]]],[64,5,4,523,527,[[1166,5,4,523,527]]],[65,6,6,527,533,[[1167,1,1,527,528],[1168,3,3,528,531],[1184,1,1,531,532],[1188,1,1,532,533]]]],[23199,23201,23252,23254,23256,23262,23266,23268,23273,23278,23284,23287,23296,23298,23307,23311,23315,23323,23328,23355,23356,23408,23432,23436,23437,23440,23444,23459,23468,23470,23476,23480,23481,23483,23495,23520,23525,23550,23556,23683,23700,23712,23720,23730,23737,23740,23745,23746,23762,23770,23771,23785,23786,23790,23796,23818,23819,23824,23829,23847,23850,23853,23857,23869,23903,23921,23931,23932,23933,23934,23941,23943,23945,23947,23954,23956,23957,23959,23980,23983,23991,24004,24017,24020,24042,24048,24053,24067,24069,24075,24083,24118,24146,24202,24215,24316,24334,24347,24418,24512,24539,24551,24579,24591,24593,24603,24617,24624,24631,24643,24663,24664,24665,24669,24673,24716,24728,24738,24740,24747,24754,24763,24767,24769,24772,24779,24835,24880,24984,24985,25032,25033,25038,25087,25088,25170,25171,25172,25173,25174,25177,25184,25193,25204,25221,25223,25227,25255,25328,25349,25371,25374,25375,25376,25377,25382,25383,25387,25413,25414,25446,25447,25448,25449,25451,25452,25456,25457,25463,25464,25467,25481,25486,25490,25491,25496,25503,25510,25521,25523,25542,25543,25545,25553,25577,25595,25598,25629,25632,25657,25661,25674,25685,25696,25702,25705,25717,25757,25771,25787,25829,25839,25841,25874,25876,25880,25882,25890,25893,25901,25931,25997,26027,26035,26095,26100,26132,26191,26229,26235,26248,26283,26284,26289,26293,26304,26310,26320,26322,26347,26350,26405,26406,26415,26418,26421,26432,26439,26467,26482,26506,26507,26513,26604,26642,26645,26646,26649,26650,26651,26663,26664,26670,26671,26678,26680,26684,26685,26688,26693,26694,26695,26696,26697,26702,26703,26706,26710,26713,26714,26715,26716,26719,26720,26725,26727,26729,26730,26732,26733,26738,26739,26740,26741,26746,26749,26751,26752,26759,26793,26824,26829,26886,26888,26893,26963,26988,27010,27016,27018,27022,27032,27087,27097,27153,27388,27396,27400,27403,27408,27429,27470,27526,27546,27646,27653,27658,27661,27729,27801,27831,27927,27937,27941,27942,27943,27945,28125,28126,28127,28222,28248,28308,28318,28335,28337,28366,28367,28369,28373,28374,28395,28396,28411,28413,28426,28428,28441,28450,28455,28463,28465,28469,28472,28474,28486,28522,28542,28551,28594,28595,28602,28618,28619,28622,28623,28630,28665,28684,28703,28715,28719,28720,28721,28730,28769,28802,28813,28819,28821,28827,28828,28871,28873,28889,28916,28923,28927,28928,28930,28932,28942,28957,28970,28972,28986,28996,28998,29034,29041,29042,29046,29048,29060,29065,29068,29077,29103,29107,29144,29150,29151,29164,29199,29208,29223,29246,29267,29278,29304,29307,29358,29363,29367,29386,29389,29390,29396,29404,29408,29410,29422,29436,29439,29467,29470,29471,29492,29499,29507,29530,29533,29549,29551,29558,29561,29565,29578,29580,29583,29597,29605,29609,29612,29614,29618,29622,29633,29651,29653,29656,29661,29666,29682,29684,29685,29687,29688,29689,29694,29941,29944,29960,30217,30219,30248,30258,30260,30262,30263,30292,30332,30338,30345,30357,30360,30368,30373,30376,30386,30387,30406,30439,30458,30466,30467,30477,30479,30481,30487,30490,30495,30501,30513,30523,30537,30542,30543,30544,30545,30551,30557,30558,30562,30563,30564,30571,30574,30576,30577,30607,30637,30657,30674,30675,30684,30690,30701,30730,30740,30741,30999,31096]]],["your",[3,3,[[41,1,1,0,1,[[993,1,1,0,1]]],[45,2,2,1,3,[[1067,1,1,1,2],[1076,1,1,2,3]]]],[25841,28472,28752]]],["yourselves",[2,2,[[39,2,2,0,2,[[934,2,2,0,2]]]],[23301,23302]]]]},{"k":"G5214","v":[["*",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[43,1,1,2,3,[[1033,1,1,2,3]]],[57,1,1,3,4,[[1134,1,1,3,4]]]],[24084,24780,27508,29989]]],["hymn",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24084,24780]]],["praise",[1,1,[[57,1,1,0,1,[[1134,1,1,0,1]]]],[29989]]],["praises",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27508]]]]},{"k":"G5215","v":[["hymns",[2,2,[[48,1,1,0,1,[[1101,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29323,29533]]]]},{"k":"G5216","v":[["*",[583,504,[[39,78,62,0,62,[[933,12,9,0,9],[934,13,9,9,18],[935,4,3,18,21],[937,3,3,21,24],[938,8,6,24,30],[939,1,1,30,31],[940,3,2,31,33],[941,2,1,33,34],[943,3,3,34,37],[945,4,3,37,40],[946,3,3,40,43],[947,2,1,43,44],[948,2,2,44,46],[949,2,2,46,48],[951,10,8,48,56],[952,2,2,56,58],[953,1,1,58,59],[954,2,2,59,61],[956,1,1,61,62]]],[40,20,16,62,78,[[958,1,1,62,63],[962,2,1,63,64],[963,3,3,64,67],[964,1,1,67,68],[965,3,2,68,70],[966,3,3,70,73],[967,5,3,73,76],[969,1,1,76,77],[970,1,1,77,78]]],[41,66,60,78,138,[[975,1,1,78,79],[976,1,1,79,80],[977,2,2,80,82],[978,8,7,82,89],[980,1,1,89,90],[981,3,3,90,93],[982,4,4,93,97],[983,9,8,97,105],[984,9,8,105,113],[985,2,2,113,115],[986,3,3,115,118],[987,1,1,118,119],[988,2,2,119,121],[989,2,2,121,123],[993,8,6,123,129],[994,7,6,129,135],[995,2,2,135,137],[996,1,1,137,138]]],[42,53,48,138,186,[[997,1,1,138,139],[1000,1,1,139,140],[1001,2,1,140,141],[1002,4,4,141,145],[1003,2,2,145,147],[1004,13,12,147,159],[1005,2,2,159,161],[1006,1,1,161,162],[1008,1,1,162,163],[1009,4,4,163,167],[1010,5,5,167,172],[1011,3,3,172,175],[1012,9,7,175,182],[1014,1,1,182,183],[1015,2,2,183,185],[1016,2,1,185,186]]],[43,38,32,186,218,[[1018,2,2,186,188],[1019,7,4,188,192],[1020,6,5,192,197],[1021,3,3,197,200],[1022,1,1,200,201],[1023,1,1,201,202],[1024,5,4,202,206],[1030,1,1,206,207],[1032,1,1,207,208],[1034,1,1,208,209],[1035,3,2,209,211],[1036,1,1,211,212],[1037,2,2,212,214],[1041,1,1,214,215],[1042,1,1,215,216],[1044,2,2,216,218]]],[44,27,21,218,239,[[1046,4,3,218,221],[1051,8,5,221,226],[1053,1,1,226,227],[1057,4,3,227,230],[1059,1,1,230,231],[1060,5,4,231,235],[1061,4,4,235,239]]],[45,45,43,239,282,[[1062,6,6,239,245],[1063,1,1,245,246],[1064,2,2,246,248],[1065,1,1,248,249],[1066,4,4,249,253],[1067,5,4,253,257],[1068,4,4,257,261],[1069,1,1,261,262],[1070,2,2,262,264],[1072,3,3,264,267],[1073,1,1,267,268],[1075,4,4,268,272],[1076,4,3,272,275],[1077,7,7,275,282]]],[46,58,46,282,328,[[1078,10,7,282,289],[1079,2,2,289,291],[1080,1,1,291,292],[1081,1,1,292,293],[1082,1,1,293,294],[1083,1,1,294,295],[1084,9,6,295,301],[1085,7,5,301,306],[1086,9,6,306,312],[1087,6,6,312,318],[1088,2,2,318,320],[1089,6,5,320,325],[1090,3,3,325,328]]],[47,7,6,328,334,[[1093,1,1,328,329],[1094,5,4,329,333],[1096,1,1,333,334]]],[48,21,19,334,353,[[1097,4,3,334,337],[1098,1,1,337,338],[1099,4,3,338,341],[1100,5,5,341,346],[1101,1,1,346,347],[1102,6,6,347,353]]],[49,22,22,353,375,[[1103,9,9,353,362],[1104,5,5,362,367],[1106,8,8,367,375]]],[50,24,21,375,396,[[1107,6,6,375,381],[1108,4,3,381,384],[1109,6,6,384,390],[1110,8,6,390,396]]],[51,28,23,396,419,[[1111,6,4,396,400],[1112,7,6,400,406],[1113,9,7,406,413],[1114,3,3,413,416],[1115,3,3,416,419]]],[52,12,9,419,428,[[1116,6,3,419,422],[1117,2,2,422,424],[1118,4,4,424,428]]],[54,1,1,428,429,[[1128,1,1,428,429]]],[55,2,2,429,431,[[1130,1,1,429,430],[1131,1,1,430,431]]],[56,2,2,431,433,[[1132,2,2,431,433]]],[57,20,19,433,452,[[1135,5,5,433,438],[1136,2,2,438,440],[1138,3,3,440,443],[1141,1,1,443,444],[1142,2,2,444,446],[1144,2,2,446,448],[1145,5,4,448,452]]],[58,24,20,452,472,[[1146,3,3,452,455],[1147,3,3,455,458],[1148,1,1,458,459],[1149,7,6,459,465],[1150,10,7,465,472]]],[59,22,19,472,491,[[1151,8,8,472,480],[1152,3,2,480,482],[1153,5,4,482,486],[1154,2,2,486,488],[1155,4,3,488,491]]],[60,4,4,491,495,[[1156,3,3,491,494],[1158,1,1,494,495]]],[61,1,1,495,496,[[1159,1,1,495,496]]],[62,1,1,496,497,[[1164,1,1,496,497]]],[64,2,2,497,499,[[1166,2,2,497,499]]],[65,5,5,499,504,[[1167,1,1,499,500],[1168,2,2,500,502],[1184,1,1,502,503],[1188,1,1,503,504]]]],[23245,23246,23250,23254,23271,23278,23279,23281,23282,23283,23290,23296,23297,23303,23307,23308,23309,23314,23322,23325,23327,23383,23390,23408,23426,23430,23431,23437,23446,23447,23488,23500,23516,23555,23636,23639,23640,23717,23720,23724,23741,23746,23762,23770,23818,23819,23828,23869,23926,23927,23928,23929,23933,23950,23952,23956,23977,23999,24016,24075,24083,24215,24268,24418,24469,24472,24476,24517,24557,24578,24593,24631,24632,24642,24665,24666,24735,24772,25039,25084,25111,25129,25168,25169,25170,25173,25181,25182,25184,25270,25306,25342,25345,25369,25374,25379,25383,25410,25416,25418,25424,25444,25451,25452,25453,25466,25481,25484,25489,25491,25492,25493,25494,25533,25553,25558,25581,25586,25592,25635,25646,25658,25672,25840,25842,25844,25845,25854,25860,25874,25879,25883,25884,25891,25917,25949,25963,26029,26070,26191,26255,26306,26315,26321,26327,26347,26361,26388,26402,26405,26407,26419,26422,26423,26425,26427,26435,26436,26437,26459,26481,26515,26615,26644,26648,26651,26663,26669,26677,26684,26695,26698,26710,26715,26717,26730,26731,26732,26746,26748,26750,26752,26816,26839,26840,26884,26930,26934,26966,26971,26987,26988,27012,27013,27015,27018,27022,27032,27033,27041,27087,27104,27153,27159,27167,27168,27403,27466,27546,27563,27571,27622,27644,27656,27790,27822,27877,27889,27938,27939,27942,28080,28081,28082,28087,28090,28127,28246,28247,28263,28296,28317,28327,28331,28336,28338,28355,28356,28360,28367,28374,28375,28376,28377,28389,28399,28431,28432,28436,28456,28458,28460,28467,28468,28482,28486,28487,28492,28501,28515,28522,28536,28551,28552,28618,28620,28624,28655,28696,28704,28712,28714,28732,28735,28776,28778,28779,28790,28793,28794,28799,28800,28806,28807,28811,28814,28816,28823,28824,28827,28833,28842,28864,28888,28910,28920,28923,28928,28929,28930,28931,28939,28946,28948,28951,28956,28958,28959,28961,28966,28969,28970,28977,28979,28984,28985,28986,28987,28992,28997,29033,29035,29036,29037,29041,29052,29054,29057,29104,29137,29143,29146,29147,29206,29219,29222,29224,29237,29252,29264,29268,29276,29295,29298,29301,29303,29323,29338,29341,29342,29346,29351,29359,29364,29365,29366,29368,29370,29380,29386,29387,29388,29408,29410,29411,29416,29421,29447,29448,29449,29451,29459,29460,29461,29465,29468,29469,29472,29473,29474,29489,29495,29499,29507,29520,29522,29525,29532,29533,29538,29548,29550,29551,29554,29555,29560,29562,29563,29564,29568,29576,29577,29578,29579,29581,29587,29592,29595,29596,29597,29599,29600,29603,29606,29607,29614,29633,29644,29649,29652,29653,29660,29674,29678,29683,29686,29694,29696,29892,29916,29938,29960,29963,30003,30004,30007,30008,30010,30015,30021,30053,30054,30055,30119,30167,30168,30215,30225,30248,30258,30265,30266,30269,30271,30287,30295,30299,30309,30333,30338,30340,30344,30346,30351,30353,30355,30356,30357,30358,30359,30362,30366,30381,30383,30387,30388,30391,30392,30395,30396,30411,30424,30426,30431,30439,30440,30450,30461,30472,30473,30474,30484,30489,30498,30523,30544,30648,30684,30692,30706,30727,30740,31013,31101]]],["+",[18,18,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,2,2,1,3,[[965,1,1,1,2],[966,1,1,2,3]]],[41,2,2,3,5,[[984,2,2,3,5]]],[43,1,1,5,6,[[1037,1,1,5,6]]],[44,1,1,6,7,[[1057,1,1,6,7]]],[45,4,4,7,11,[[1062,1,1,7,8],[1066,1,1,8,9],[1068,1,1,9,10],[1077,1,1,10,11]]],[46,2,2,11,13,[[1085,1,1,11,12],[1086,1,1,12,13]]],[48,1,1,13,14,[[1102,1,1,13,14]]],[49,3,3,14,17,[[1103,1,1,14,15],[1104,2,2,15,17]]],[50,1,1,17,18,[[1110,1,1,17,18]]]],[23770,24578,24593,25491,25492,27656,28263,28367,28467,28522,28790,28956,28958,29341,29388,29410,29411,29550]]],["Ye",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28811]]],["Your",[6,6,[[42,2,2,0,2,[[1002,1,1,0,1],[1004,1,1,1,2]]],[43,1,1,2,3,[[1035,1,1,2,3]]],[45,1,1,3,4,[[1066,1,1,3,4]]],[58,2,2,4,6,[[1150,2,2,4,6]]]],[26306,26437,27563,28460,30356,30357]]],["his",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27022]]],["own",[4,4,[[40,1,1,0,1,[[963,1,1,0,1]]],[43,1,1,1,2,[[1035,1,1,1,2]]],[46,1,1,2,3,[[1083,1,1,2,3]]],[47,1,1,3,4,[[1094,1,1,3,4]]]],[24472,27563,28910,29146]]],["part",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28793]]],["us",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24578]]],["ye",[7,7,[[41,1,1,0,1,[[994,1,1,0,1]]],[45,4,4,1,5,[[1066,1,1,1,2],[1072,2,2,2,4],[1075,1,1,4,5]]],[47,1,1,5,6,[[1094,1,1,5,6]]],[59,1,1,6,7,[[1154,1,1,6,7]]]],[25874,28458,28618,28620,28696,29146,30450]]],["you",[201,194,[[39,15,14,0,14,[[933,2,2,0,2],[934,1,1,2,3],[935,1,1,3,4],[940,1,1,4,5],[943,1,1,5,6],[945,2,1,6,7],[946,1,1,7,8],[949,2,2,8,10],[951,1,1,10,11],[954,2,2,11,13],[956,1,1,13,14]]],[40,6,6,14,20,[[962,1,1,14,15],[963,1,1,15,16],[965,1,1,16,17],[966,1,1,17,18],[967,1,1,18,19],[970,1,1,19,20]]],[41,20,20,20,40,[[981,1,1,20,21],[982,1,1,21,22],[983,2,2,22,24],[984,1,1,24,25],[985,1,1,25,26],[986,3,3,26,29],[987,1,1,29,30],[988,1,1,30,31],[989,2,2,31,33],[993,1,1,33,34],[994,5,5,34,39],[995,1,1,39,40]]],[42,23,22,40,62,[[997,1,1,40,41],[1001,2,1,41,42],[1002,2,2,42,44],[1003,2,2,44,46],[1004,4,4,46,50],[1008,1,1,50,51],[1009,3,3,51,54],[1010,3,3,54,57],[1011,1,1,57,58],[1012,4,4,58,62]]],[43,15,15,62,77,[[1018,2,2,62,64],[1019,2,2,64,66],[1020,1,1,66,67],[1021,3,3,67,70],[1023,1,1,70,71],[1035,1,1,71,72],[1037,1,1,72,73],[1041,1,1,73,74],[1042,1,1,74,75],[1044,2,2,75,77]]],[44,11,11,77,88,[[1046,3,3,77,80],[1051,1,1,80,81],[1060,4,4,81,85],[1061,3,3,85,88]]],[45,16,16,88,104,[[1062,4,4,88,92],[1065,1,1,92,93],[1066,1,1,93,94],[1067,1,1,94,95],[1068,1,1,95,96],[1070,1,1,96,97],[1072,1,1,97,98],[1073,1,1,98,99],[1075,2,2,99,101],[1077,3,3,101,104]]],[46,26,25,104,129,[[1078,4,3,104,107],[1079,2,2,107,109],[1080,1,1,109,110],[1084,5,5,110,115],[1085,1,1,115,116],[1086,3,3,116,119],[1087,3,3,119,122],[1088,1,1,122,123],[1089,4,4,123,127],[1090,2,2,127,129]]],[47,2,2,129,131,[[1093,1,1,129,130],[1094,1,1,130,131]]],[48,5,4,131,135,[[1097,2,1,131,132],[1099,2,2,132,134],[1100,1,1,134,135]]],[49,6,6,135,141,[[1103,3,3,135,138],[1106,3,3,138,141]]],[50,10,9,141,150,[[1107,4,4,141,145],[1108,1,1,145,146],[1110,5,4,146,150]]],[51,14,13,150,163,[[1111,3,2,150,152],[1112,6,6,152,158],[1113,2,2,158,160],[1114,1,1,160,161],[1115,2,2,161,163]]],[52,7,6,163,169,[[1116,3,2,163,165],[1117,1,1,165,166],[1118,3,3,166,169]]],[54,1,1,169,170,[[1128,1,1,169,170]]],[55,2,2,170,172,[[1130,1,1,170,171],[1131,1,1,171,172]]],[57,9,9,172,181,[[1135,2,2,172,174],[1136,1,1,174,175],[1138,2,2,175,177],[1145,4,4,177,181]]],[58,5,5,181,186,[[1146,1,1,181,182],[1147,2,2,182,184],[1149,1,1,184,185],[1150,1,1,185,186]]],[59,4,4,186,190,[[1152,1,1,186,187],[1153,1,1,187,188],[1154,1,1,188,189],[1155,1,1,189,190]]],[62,1,1,190,191,[[1164,1,1,190,191]]],[65,3,3,191,194,[[1168,1,1,191,192],[1184,1,1,192,193],[1188,1,1,193,194]]]],[23245,23246,23309,23325,23500,23640,23717,23746,23828,23869,23929,24075,24083,24215,24418,24469,24557,24632,24642,24772,25342,25379,25410,25416,25484,25533,25558,25581,25586,25592,25646,25658,25672,25842,25879,25883,25884,25891,25917,25949,26070,26255,26321,26327,26347,26361,26388,26407,26427,26436,26615,26648,26651,26663,26677,26684,26698,26717,26730,26731,26748,26752,26930,26934,26971,26987,27012,27032,27033,27041,27104,27571,27644,27790,27822,27877,27889,27938,27939,27942,28082,28317,28327,28331,28336,28338,28356,28360,28374,28375,28376,28377,28436,28456,28468,28515,28552,28624,28655,28704,28714,28778,28799,28800,28807,28816,28823,28827,28833,28842,28920,28928,28929,28930,28931,28948,28958,28959,28970,28984,28985,28987,28997,29033,29035,29036,29037,29054,29057,29104,29143,29222,29252,29264,29303,29364,29365,29368,29451,29460,29465,29468,29472,29474,29489,29495,29551,29554,29555,29560,29562,29568,29576,29577,29578,29579,29581,29587,29596,29599,29607,29633,29649,29652,29660,29674,29686,29694,29696,29892,29916,29938,30007,30008,30015,30053,30055,30248,30258,30265,30266,30271,30299,30309,30344,30358,30411,30440,30461,30472,30648,30727,31013,31101]]],["your",[336,293,[[39,61,49,0,49,[[933,10,8,0,8],[934,12,8,8,16],[935,3,2,16,18],[937,3,3,18,21],[938,8,6,21,27],[939,1,1,27,28],[940,2,1,28,29],[941,2,1,29,30],[943,2,2,30,32],[945,2,2,32,34],[946,2,2,34,36],[947,1,1,36,37],[948,2,2,37,39],[951,8,7,39,46],[952,2,2,46,48],[953,1,1,48,49]]],[40,10,8,49,57,[[958,1,1,49,50],[962,1,1,50,51],[963,1,1,51,52],[964,1,1,52,53],[966,1,1,53,54],[967,4,2,54,56],[969,1,1,56,57]]],[41,43,38,57,95,[[975,1,1,57,58],[976,1,1,58,59],[977,2,2,59,61],[978,8,7,61,68],[980,1,1,68,69],[981,2,2,69,71],[982,3,3,71,74],[983,7,6,74,80],[984,6,5,80,85],[985,1,1,85,86],[988,1,1,86,87],[993,7,5,87,92],[994,1,1,92,93],[995,1,1,93,94],[996,1,1,94,95]]],[42,28,25,95,120,[[1000,1,1,95,96],[1002,1,1,96,97],[1004,8,7,97,104],[1005,2,2,104,106],[1006,1,1,106,107],[1009,1,1,107,108],[1010,2,2,108,110],[1011,2,2,110,112],[1012,5,4,112,116],[1014,1,1,116,117],[1015,2,2,117,119],[1016,2,1,119,120]]],[43,19,14,120,134,[[1019,5,2,120,122],[1020,4,3,122,125],[1022,1,1,125,126],[1024,5,4,126,130],[1030,1,1,130,131],[1032,1,1,131,132],[1034,1,1,132,133],[1036,1,1,133,134]]],[44,15,11,134,145,[[1046,1,1,134,135],[1051,7,4,135,139],[1053,1,1,139,140],[1057,3,2,140,142],[1059,1,1,142,143],[1060,1,1,143,144],[1061,1,1,144,145]]],[45,15,13,145,158,[[1062,1,1,145,146],[1063,1,1,146,147],[1067,4,3,147,150],[1068,2,2,150,152],[1070,1,1,152,153],[1075,1,1,153,154],[1076,4,3,154,157],[1077,1,1,157,158]]],[46,27,21,158,179,[[1078,5,3,158,161],[1081,1,1,161,162],[1082,1,1,162,163],[1084,4,2,163,165],[1085,5,4,165,169],[1086,5,4,169,173],[1087,3,3,173,176],[1088,1,1,176,177],[1089,1,1,177,178],[1090,1,1,178,179]]],[47,3,3,179,182,[[1094,2,2,179,181],[1096,1,1,181,182]]],[48,14,14,182,196,[[1097,2,2,182,184],[1099,2,2,184,186],[1100,4,4,186,190],[1101,1,1,190,191],[1102,5,5,191,196]]],[49,13,13,196,209,[[1103,5,5,196,201],[1104,3,3,201,204],[1106,5,5,204,209]]],[50,13,12,209,221,[[1107,2,2,209,211],[1108,3,2,211,213],[1109,6,6,213,219],[1110,2,2,219,221]]],[51,14,13,221,234,[[1111,3,3,221,224],[1112,1,1,224,225],[1113,7,6,225,231],[1114,2,2,231,233],[1115,1,1,233,234]]],[52,5,4,234,238,[[1116,3,2,234,236],[1117,1,1,236,237],[1118,1,1,237,238]]],[56,2,2,238,240,[[1132,2,2,238,240]]],[57,11,11,240,251,[[1135,3,3,240,243],[1136,1,1,243,244],[1138,1,1,244,245],[1141,1,1,245,246],[1142,2,2,246,248],[1144,2,2,248,250],[1145,1,1,250,251]]],[58,17,16,251,267,[[1146,2,2,251,253],[1147,1,1,253,254],[1148,1,1,254,255],[1149,6,5,255,260],[1150,7,7,260,267]]],[59,17,17,267,284,[[1151,8,8,267,275],[1152,2,2,275,277],[1153,4,4,277,281],[1155,3,3,281,284]]],[60,4,4,284,288,[[1156,3,3,284,287],[1158,1,1,287,288]]],[61,1,1,288,289,[[1159,1,1,288,289]]],[64,2,2,289,291,[[1166,2,2,289,291]]],[65,2,2,291,293,[[1167,1,1,291,292],[1168,1,1,292,293]]]],[23246,23250,23254,23271,23278,23279,23281,23282,23283,23290,23296,23297,23303,23307,23308,23314,23322,23327,23383,23390,23408,23426,23430,23431,23437,23446,23447,23488,23516,23555,23636,23639,23720,23724,23741,23762,23770,23818,23819,23926,23927,23928,23929,23950,23952,23956,23977,23999,24016,24268,24418,24476,24517,24631,24665,24666,24735,25039,25084,25111,25129,25168,25169,25170,25173,25181,25182,25184,25270,25306,25345,25369,25374,25383,25418,25424,25444,25451,25452,25453,25466,25481,25489,25493,25494,25553,25635,25840,25844,25845,25854,25860,25917,25963,26029,26191,26315,26402,26405,26419,26422,26423,26425,26435,26459,26481,26515,26644,26669,26695,26710,26715,26732,26746,26748,26750,26816,26839,26840,26884,26966,26988,27013,27015,27018,27087,27153,27159,27167,27168,27403,27466,27546,27622,27938,28080,28081,28087,28090,28127,28246,28247,28296,28327,28355,28389,28399,28482,28486,28487,28492,28501,28551,28712,28732,28735,28776,28779,28806,28814,28824,28864,28888,28923,28929,28939,28946,28951,28956,28958,28961,28966,28969,28977,28979,28986,28992,29041,29052,29137,29147,29206,29219,29224,29264,29268,29276,29295,29298,29301,29323,29338,29342,29346,29351,29359,29366,29370,29380,29386,29387,29408,29416,29421,29447,29448,29449,29459,29461,29469,29473,29499,29507,29520,29522,29525,29532,29533,29538,29548,29550,29563,29564,29568,29587,29592,29595,29596,29597,29600,29603,29606,29614,29644,29652,29653,29678,29683,29960,29963,30003,30004,30010,30021,30054,30119,30167,30168,30215,30225,30258,30269,30287,30295,30333,30338,30340,30346,30351,30353,30355,30356,30357,30358,30359,30362,30366,30381,30383,30387,30388,30391,30392,30395,30396,30411,30424,30426,30431,30439,30440,30472,30473,30474,30484,30489,30498,30523,30544,30684,30692,30706,30740]]],["yours",[5,5,[[45,4,4,0,4,[[1064,2,2,0,2],[1069,1,1,2,3],[1077,1,1,3,4]]],[46,1,1,4,5,[[1089,1,1,4,5]]]],[28431,28432,28536,28794,29036]]],["yourselves",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]]],[23933,29237]]]]},{"k":"G5217","v":[["*",[81,77,[[39,19,19,0,19,[[932,1,1,0,1],[933,2,2,1,3],[936,3,3,3,6],[937,1,1,6,7],[941,1,1,7,8],[944,1,1,8,9],[946,1,1,9,10],[947,1,1,10,11],[948,3,3,11,14],[949,1,1,14,15],[954,2,2,15,17],[955,1,1,17,18],[956,1,1,18,19]]],[40,15,15,19,34,[[957,1,1,19,20],[958,1,1,20,21],[961,2,2,21,23],[962,3,3,23,26],[963,1,1,26,27],[964,1,1,27,28],[966,2,2,28,30],[967,1,1,30,31],[970,2,2,31,33],[972,1,1,33,34]]],[41,6,6,34,40,[[976,1,1,34,35],[980,1,1,35,36],[982,1,1,36,37],[984,1,1,37,38],[989,1,1,38,39],[991,1,1,39,40]]],[42,33,29,40,69,[[999,1,1,40,41],[1000,1,1,41,42],[1002,2,2,42,44],[1003,2,2,44,46],[1004,5,3,46,49],[1005,2,2,49,51],[1007,3,3,51,54],[1008,2,2,54,56],[1009,4,3,56,59],[1010,3,3,59,62],[1011,1,1,62,63],[1012,5,4,63,67],[1014,1,1,67,68],[1017,1,1,68,69]]],[58,1,1,69,70,[[1147,1,1,69,70]]],[61,1,1,70,71,[[1160,1,1,70,71]]],[65,6,6,71,77,[[1176,1,1,71,72],[1179,1,1,72,73],[1180,1,1,73,74],[1182,1,1,74,75],[1183,2,2,75,77]]]],[23219,23258,23275,23349,23358,23377,23385,23583,23695,23742,23783,23796,23799,23806,23854,24072,24078,24194,24205,24259,24271,24383,24398,24438,24440,24445,24492,24533,24609,24640,24642,24767,24775,24880,25071,25287,25366,25517,25665,25761,26128,26172,26278,26324,26331,26361,26395,26402,26403,26447,26451,26531,26554,26567,26591,26615,26633,26663,26666,26672,26673,26696,26715,26731,26736,26742,26743,26793,26901,30309,30561,30869,30918,30930,30955,30983,30986]]],["Depart",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30309]]],["Get",[3,3,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[41,1,1,2,3,[[976,1,1,2,3]]]],[23695,24533,25071]]],["Go",[11,11,[[39,4,4,0,4,[[936,1,1,0,1],[948,2,2,1,3],[954,1,1,3,4]]],[40,2,2,4,6,[[961,1,1,4,5],[970,1,1,5,6]]],[41,1,1,6,7,[[991,1,1,6,7]]],[42,3,3,7,10,[[1000,1,1,7,8],[1005,2,2,8,10]]],[65,1,1,10,11,[[1176,1,1,10,11]]]],[23377,23796,23799,24072,24383,24767,25761,26172,26447,26451,30869]]],["away",[3,3,[[42,3,3,0,3,[[1002,1,1,0,1],[1008,1,1,1,2],[1010,1,1,2,3]]]],[26324,26591,26696]]],["departing",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24440]]],["go",[25,24,[[39,6,6,0,6,[[933,1,1,0,1],[937,1,1,1,2],[946,1,1,2,3],[947,1,1,3,4],[949,1,1,4,5],[956,1,1,5,6]]],[40,2,2,6,8,[[961,1,1,6,7],[962,1,1,7,8]]],[42,15,14,8,22,[[1003,2,2,8,10],[1004,4,3,10,13],[1007,1,1,13,14],[1009,2,2,14,16],[1010,1,1,16,17],[1011,1,1,17,18],[1012,3,3,18,21],[1017,1,1,21,22]]],[65,2,2,22,24,[[1179,1,1,22,23],[1183,1,1,23,24]]]],[23275,23385,23742,23783,23854,24205,24398,24445,26331,26361,26395,26402,26403,26567,26663,26666,26672,26715,26736,26742,26743,26901,30918,30983]]],["goest",[5,5,[[41,1,1,0,1,[[984,1,1,0,1]]],[42,4,4,1,5,[[1007,1,1,1,2],[1009,1,1,2,3],[1010,1,1,3,4],[1012,1,1,4,5]]]],[25517,26531,26666,26673,26731]]],["goeth",[9,9,[[39,2,2,0,2,[[941,1,1,0,1],[954,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[42,3,3,3,6,[[999,1,1,3,4],[1007,1,1,4,5],[1008,1,1,5,6]]],[61,1,1,6,7,[[1160,1,1,6,7]]],[65,2,2,7,9,[[1180,1,1,7,8],[1183,1,1,8,9]]]],[23583,24078,24775,26128,26554,26615,30561,30930,30986]]],["going",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24438]]],["hence",[1,1,[[39,1,1,0,1,[[932,1,1,0,1]]]],[23219]]],["way",[15,15,[[39,5,5,0,5,[[933,1,1,0,1],[936,2,2,1,3],[948,1,1,3,4],[955,1,1,4,5]]],[40,7,7,5,12,[[957,1,1,5,6],[958,1,1,6,7],[963,1,1,7,8],[966,2,2,8,10],[967,1,1,10,11],[972,1,1,11,12]]],[42,3,3,12,15,[[1004,1,1,12,13],[1012,1,1,13,14],[1014,1,1,14,15]]]],[23258,23349,23358,23806,24194,24259,24271,24492,24609,24640,24642,24880,26402,26731,26793]]],["ways",[2,2,[[41,1,1,0,1,[[982,1,1,0,1]]],[65,1,1,1,2,[[1182,1,1,1,2]]]],[25366,30955]]],["went",[4,4,[[41,2,2,0,2,[[980,1,1,0,1],[989,1,1,1,2]]],[42,2,2,2,4,[[1002,1,1,2,3],[1009,1,1,3,4]]]],[25287,25665,26278,26633]]]]},{"k":"G5218","v":[["*",[15,14,[[44,7,6,0,6,[[1046,1,1,0,1],[1050,1,1,1,2],[1051,2,1,2,3],[1060,1,1,3,4],[1061,2,2,4,6]]],[46,3,3,6,9,[[1084,1,1,6,7],[1087,2,2,7,9]]],[56,1,1,9,10,[[1132,1,1,9,10]]],[57,1,1,10,11,[[1137,1,1,10,11]]],[59,3,3,11,14,[[1151,3,3,11,14]]]],[27935,28066,28084,28321,28355,28362,28931,28976,28977,29959,30038,30376,30388,30396]]],["+",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28321]]],["obedience",[11,11,[[44,5,5,0,5,[[1046,1,1,0,1],[1050,1,1,1,2],[1051,1,1,2,3],[1061,2,2,3,5]]],[46,3,3,5,8,[[1084,1,1,5,6],[1087,2,2,6,8]]],[56,1,1,8,9,[[1132,1,1,8,9]]],[57,1,1,9,10,[[1137,1,1,9,10]]],[59,1,1,10,11,[[1151,1,1,10,11]]]],[27935,28066,28084,28355,28362,28931,28976,28977,29959,30038,30376]]],["obedient",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30388]]],["obey",[1,1,[[44,1,1,0,1,[[1051,1,1,0,1]]]],[28084]]],["obeying",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30396]]]]},{"k":"G5219","v":[["*",[21,21,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,2,2,1,3,[[957,1,1,1,2],[960,1,1,2,3]]],[41,2,2,3,5,[[980,1,1,3,4],[989,1,1,4,5]]],[43,2,2,5,7,[[1023,1,1,5,6],[1029,1,1,6,7]]],[44,4,4,7,11,[[1051,3,3,7,10],[1055,1,1,10,11]]],[48,2,2,11,13,[[1102,2,2,11,13]]],[49,1,1,13,14,[[1104,1,1,13,14]]],[50,2,2,14,16,[[1109,2,2,14,16]]],[52,2,2,16,18,[[1116,1,1,16,17],[1118,1,1,17,18]]],[57,2,2,18,20,[[1137,1,1,18,19],[1143,1,1,19,20]]],[59,1,1,20,21,[[1153,1,1,20,21]]]],[23372,24242,24364,25270,25657,27108,27350,28080,28084,28085,28204,29338,29342,29403,29537,29539,29657,29692,30039,30180,30430]]],["+",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25657]]],["hearken",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27350]]],["obedient",[2,2,[[43,1,1,0,1,[[1023,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]]],[27108,29342]]],["obey",[12,12,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,2,2,1,3,[[957,1,1,1,2],[960,1,1,2,3]]],[41,1,1,3,4,[[980,1,1,3,4]]],[44,2,2,4,6,[[1051,2,2,4,6]]],[48,1,1,6,7,[[1102,1,1,6,7]]],[50,2,2,7,9,[[1109,2,2,7,9]]],[52,2,2,9,11,[[1116,1,1,9,10],[1118,1,1,10,11]]],[57,1,1,11,12,[[1137,1,1,11,12]]]],[23372,24242,24364,25270,28080,28084,29338,29537,29539,29657,29692,30039]]],["obeyed",[5,5,[[44,2,2,0,2,[[1051,1,1,0,1],[1055,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]],[57,1,1,3,4,[[1143,1,1,3,4]]],[59,1,1,4,5,[[1153,1,1,4,5]]]],[28085,28204,29403,30180,30430]]]]},{"k":"G5220","v":[["husband",[1,1,[[44,1,1,0,1,[[1052,1,1,0,1]]]],[28093]]]]},{"k":"G5221","v":[["met",[5,5,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[42,3,3,2,5,[[1007,2,2,2,4],[1008,1,1,4,5]]]],[23373,25272,26543,26553,26598]]]]},{"k":"G5222","v":[["meet",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26593]]]]},{"k":"G5223","v":[["*",[2,2,[[43,1,1,0,1,[[1019,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[26994,30167]]],["goods",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26994]]],["substance",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30167]]]]},{"k":"G5224","v":[["*",[14,14,[[39,3,3,0,3,[[947,1,1,0,1],[952,1,1,1,2],[953,1,1,2,3]]],[41,8,8,3,11,[[980,1,1,3,4],[983,1,1,4,5],[984,3,3,5,8],[986,1,1,8,9],[988,1,1,9,10],[991,1,1,10,11]]],[43,1,1,11,12,[[1021,1,1,11,12]]],[45,1,1,12,13,[[1074,1,1,12,13]]],[57,1,1,13,14,[[1142,1,1,13,14]]]],[23783,24004,24022,25248,25426,25474,25492,25503,25586,25621,25739,27054,28668,30167]]],["+",[7,7,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,4,4,1,5,[[984,3,3,1,4],[986,1,1,4,5]]],[43,1,1,5,6,[[1021,1,1,5,6]]],[45,1,1,6,7,[[1074,1,1,6,7]]]],[23783,25474,25492,25503,25586,27054,28668]]],["goods",[6,6,[[39,2,2,0,2,[[952,1,1,0,1],[953,1,1,1,2]]],[41,3,3,2,5,[[983,1,1,2,3],[988,1,1,3,4],[991,1,1,4,5]]],[57,1,1,5,6,[[1142,1,1,5,6]]]],[24004,24022,25426,25621,25739,30167]]],["substance",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25248]]]]},{"k":"G5225","v":[["*",[47,46,[[41,7,7,0,7,[[979,1,1,0,1],[980,1,1,1,2],[981,1,1,2,3],[983,1,1,3,4],[988,2,2,4,6],[995,1,1,6,7]]],[43,25,24,7,31,[[1019,1,1,7,8],[1020,1,1,8,9],[1021,3,2,9,11],[1022,1,1,11,12],[1024,1,1,12,13],[1025,1,1,13,14],[1027,1,1,14,15],[1031,1,1,15,16],[1033,3,3,16,19],[1034,3,3,19,22],[1036,2,2,22,24],[1038,1,1,24,25],[1039,1,1,25,26],[1044,3,3,26,29],[1045,2,2,29,31]]],[44,1,1,31,32,[[1049,1,1,31,32]]],[45,4,4,32,36,[[1068,1,1,32,33],[1072,2,2,33,35],[1073,1,1,35,36]]],[46,2,2,36,38,[[1085,1,1,36,37],[1089,1,1,37,38]]],[47,2,2,38,40,[[1091,1,1,38,39],[1092,1,1,39,40]]],[49,2,2,40,42,[[1104,1,1,40,41],[1105,1,1,41,42]]],[58,1,1,42,43,[[1147,1,1,42,43]]],[60,3,3,43,46,[[1156,1,1,43,44],[1157,1,1,44,45],[1158,1,1,45,46]]]],[25220,25286,25349,25418,25634,25643,25985,26979,27002,27056,27059,27063,27171,27192,27271,27422,27486,27503,27520,27547,27550,27552,27621,27625,27684,27707,27867,27876,27889,27906,27917,28041,28513,28607,28618,28656,28949,29038,29071,29095,29397,29441,30308,30487,30519,30533]]],["Having",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27059]]],["a",[1,1,[[41,1,1,0,1,[[995,1,1,0,1]]]],[25985]]],["after",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27876]]],["are",[3,3,[[43,2,2,0,2,[[1034,1,1,0,1],[1038,1,1,1,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[27552,27684,30519]]],["be",[7,7,[[43,2,2,0,2,[[1034,1,1,0,1],[1036,1,1,1,2]]],[45,2,2,2,4,[[1072,1,1,2,3],[1073,1,1,3,4]]],[58,1,1,4,5,[[1147,1,1,4,5]]],[60,2,2,5,7,[[1156,1,1,5,6],[1158,1,1,6,7]]]],[27550,27621,28618,28656,30308,30487,30533]]],["being",[13,13,[[41,2,2,0,2,[[983,1,1,0,1],[988,1,1,1,2]]],[43,6,6,2,8,[[1019,1,1,2,3],[1024,1,1,3,4],[1031,1,1,4,5],[1033,2,2,5,7],[1036,1,1,7,8]]],[46,2,2,8,10,[[1085,1,1,8,9],[1089,1,1,9,10]]],[47,2,2,10,12,[[1091,1,1,10,11],[1092,1,1,11,12]]],[49,1,1,12,13,[[1104,1,1,12,13]]]],[25418,25643,26979,27171,27422,27503,27520,27625,28949,29038,29071,29095,29397]]],["have",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27002]]],["is",[6,6,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,2,2,1,3,[[1034,1,1,1,2],[1044,1,1,2,3]]],[45,2,2,3,5,[[1068,1,1,3,4],[1072,1,1,4,5]]],[49,1,1,5,6,[[1105,1,1,5,6]]]],[25349,27547,27889,28513,28607,29441]]],["live",[1,1,[[41,1,1,0,1,[[979,1,1,0,1]]]],[25220]]],["was",[8,8,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,6,6,1,7,[[1021,1,1,1,2],[1022,1,1,2,3],[1033,1,1,3,4],[1039,1,1,4,5],[1044,1,1,5,6],[1045,1,1,6,7]]],[44,1,1,7,8,[[1049,1,1,7,8]]]],[25286,27056,27063,27486,27707,27867,27917,28041]]],["were",[5,5,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,4,4,1,5,[[1021,1,1,1,2],[1025,1,1,2,3],[1027,1,1,3,4],[1045,1,1,4,5]]]],[25634,27056,27192,27271,27906]]]]},{"k":"G5226","v":[["submit",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30258]]]]},{"k":"G5227","v":[["*",[2,2,[[50,1,1,0,1,[[1108,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[29508,30160]]],["adversaries",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30160]]],["contrary",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29508]]]]},{"k":"G5228","v":[["*",[160,144,[[39,5,3,0,3,[[933,1,1,0,1],[938,4,2,1,3]]],[40,1,1,3,4,[[965,1,1,3,4]]],[41,6,6,4,10,[[978,2,2,4,6],[981,1,1,6,7],[988,1,1,7,8],[994,2,2,8,10]]],[42,12,12,10,22,[[1002,1,1,10,11],[1006,2,2,11,13],[1007,4,4,13,17],[1009,2,2,17,19],[1011,1,1,19,20],[1013,1,1,20,21],[1014,1,1,21,22]]],[43,9,9,22,31,[[1022,1,1,22,23],[1025,1,1,23,24],[1026,1,1,24,25],[1029,1,1,25,26],[1032,1,1,26,27],[1038,2,2,27,29],[1043,2,2,29,31]]],[44,19,18,31,49,[[1046,2,2,31,33],[1050,4,3,33,36],[1053,5,5,36,41],[1054,2,2,41,43],[1055,1,1,43,44],[1059,1,1,44,45],[1060,3,3,45,48],[1061,1,1,48,49]]],[45,11,9,49,58,[[1062,1,1,49,50],[1065,2,1,50,51],[1066,1,1,51,52],[1071,2,2,52,54],[1072,1,1,54,55],[1073,1,1,55,56],[1076,3,2,56,58]]],[46,37,31,58,89,[[1078,7,4,58,62],[1082,7,5,62,67],[1084,4,4,67,71],[1085,4,4,71,75],[1086,3,3,75,78],[1088,2,2,78,80],[1089,9,8,80,88],[1090,1,1,88,89]]],[47,4,4,89,93,[[1091,2,2,89,91],[1092,1,1,91,92],[1093,1,1,92,93]]],[48,11,10,93,103,[[1097,2,2,93,95],[1099,4,3,95,98],[1101,3,3,98,101],[1102,2,2,101,103]]],[49,7,6,103,109,[[1103,4,3,103,106],[1104,2,2,106,108],[1106,1,1,108,109]]],[50,6,5,109,114,[[1107,4,3,109,112],[1110,2,2,112,114]]],[51,3,3,114,117,[[1113,1,1,114,115],[1115,2,2,115,117]]],[52,3,3,117,120,[[1116,2,2,117,119],[1117,1,1,119,120]]],[53,3,3,120,123,[[1120,3,3,120,123]]],[55,1,1,123,124,[[1130,1,1,123,124]]],[56,3,3,124,127,[[1132,3,3,124,127]]],[57,12,11,127,138,[[1134,1,1,127,128],[1136,1,1,128,129],[1137,3,2,129,131],[1138,1,1,131,132],[1139,2,2,132,134],[1141,2,2,134,136],[1142,1,1,136,137],[1145,1,1,137,138]]],[58,1,1,138,139,[[1150,1,1,138,139]]],[59,3,3,139,142,[[1152,1,1,139,140],[1153,1,1,140,141],[1154,1,1,141,142]]],[61,2,1,142,143,[[1161,2,1,142,143]]],[63,1,1,143,144,[[1165,1,1,143,144]]]],[23278,23441,23454,24578,25174,25186,25351,25628,25883,25884,26308,26492,26496,26527,26573,26574,26575,26667,26668,26712,26778,26799,27100,27200,27232,27342,27468,27677,27690,27824,27836,27935,27938,28053,28054,28055,28142,28143,28147,28148,28150,28158,28182,28189,28295,28311,28312,28333,28340,28376,28439,28461,28580,28597,28624,28659,28721,28747,28806,28807,28808,28811,28889,28891,28892,28897,28898,28920,28923,28928,28930,28935,28948,28955,28956,28958,28959,28970,28994,29012,29027,29028,29030,29032,29033,29035,29037,29041,29051,29061,29071,29101,29115,29222,29228,29252,29264,29271,29306,29324,29329,29356,29357,29365,29368,29390,29400,29404,29452,29472,29474,29489,29554,29555,29600,29631,29634,29653,29654,29662,29717,29718,29722,29922,29951,29954,29959,29986,30026,30031,30033,30064,30089,30091,30112,30129,30145,30258,30370,30420,30442,30447,30595,30665]]],["+",[21,21,[[40,1,1,0,1,[[965,1,1,0,1]]],[42,3,3,1,4,[[1009,2,2,1,3],[1013,1,1,3,4]]],[45,1,1,4,5,[[1073,1,1,4,5]]],[46,7,7,5,12,[[1078,1,1,5,6],[1082,2,2,6,8],[1085,1,1,8,9],[1088,1,1,9,10],[1089,2,2,10,12]]],[48,1,1,12,13,[[1099,1,1,12,13]]],[49,1,1,13,14,[[1103,1,1,13,14]]],[50,1,1,14,15,[[1107,1,1,14,15]]],[51,2,2,15,17,[[1113,1,1,15,16],[1115,1,1,16,17]]],[56,2,2,17,19,[[1132,2,2,17,19]]],[58,1,1,19,20,[[1150,1,1,19,20]]],[63,1,1,20,21,[[1165,1,1,20,21]]]],[24578,26667,26668,26778,28659,28811,28889,28897,28956,28994,29032,29033,29271,29390,29489,29600,29634,29951,29959,30370,30665]]],["For",[3,3,[[46,1,1,0,1,[[1089,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]],[53,1,1,2,3,[[1120,1,1,2,3]]]],[29030,29357,29718]]],["Of",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29027]]],["above",[12,11,[[39,2,1,0,1,[[938,2,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[43,1,1,2,3,[[1043,1,1,2,3]]],[45,2,2,3,5,[[1065,1,1,3,4],[1071,1,1,4,5]]],[46,2,2,5,7,[[1078,1,1,5,6],[1089,1,1,6,7]]],[47,1,1,7,8,[[1091,1,1,7,8]]],[48,1,1,8,9,[[1099,1,1,8,9]]],[49,1,1,9,10,[[1104,1,1,9,10]]],[56,1,1,10,11,[[1132,1,1,10,11]]]],[23441,25186,27836,28439,28580,28808,29028,29071,29271,29400,29954]]],["behalf",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29390]]],["beyond",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28935]]],["by",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29662]]],["concerning",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28182]]],["for",[100,94,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,4,4,1,5,[[978,1,1,1,2],[981,1,1,2,3],[994,2,2,3,5]]],[42,9,9,5,14,[[1002,1,1,5,6],[1006,2,2,6,8],[1007,4,4,8,12],[1011,1,1,12,13],[1014,1,1,13,14]]],[43,8,8,14,22,[[1022,1,1,14,15],[1025,1,1,15,16],[1026,1,1,16,17],[1029,1,1,17,18],[1032,1,1,18,19],[1038,2,2,19,21],[1043,1,1,21,22]]],[44,18,17,22,39,[[1046,2,2,22,24],[1050,4,3,24,27],[1053,5,5,27,32],[1054,1,1,32,33],[1055,1,1,33,34],[1059,1,1,34,35],[1060,3,3,35,38],[1061,1,1,38,39]]],[45,8,7,39,46,[[1062,1,1,39,40],[1065,1,1,40,41],[1066,1,1,41,42],[1071,1,1,42,43],[1072,1,1,43,44],[1076,3,2,44,46]]],[46,14,12,46,58,[[1078,3,2,46,48],[1082,5,4,48,52],[1084,1,1,52,53],[1085,1,1,53,54],[1086,1,1,54,55],[1089,2,2,55,57],[1090,1,1,57,58]]],[47,3,3,58,61,[[1091,1,1,58,59],[1092,1,1,59,60],[1093,1,1,60,61]]],[48,7,7,61,68,[[1097,1,1,61,62],[1099,2,2,62,64],[1101,3,3,64,67],[1102,1,1,67,68]]],[49,1,1,68,69,[[1103,1,1,68,69]]],[50,5,5,69,74,[[1107,3,3,69,72],[1110,2,2,72,74]]],[51,1,1,74,75,[[1115,1,1,74,75]]],[52,2,2,75,77,[[1116,2,2,75,77]]],[53,2,2,77,79,[[1120,2,2,77,79]]],[55,1,1,79,80,[[1130,1,1,79,80]]],[57,11,10,80,90,[[1134,1,1,80,81],[1137,3,2,81,83],[1138,1,1,83,84],[1139,2,2,84,86],[1141,2,2,86,88],[1142,1,1,88,89],[1145,1,1,89,90]]],[59,3,3,90,93,[[1152,1,1,90,91],[1153,1,1,91,92],[1154,1,1,92,93]]],[61,2,1,93,94,[[1161,2,1,93,94]]]],[23278,25174,25351,25883,25884,26308,26492,26496,26527,26573,26574,26575,26712,26799,27100,27200,27232,27342,27468,27677,27690,27824,27935,27938,28053,28054,28055,28142,28143,28147,28148,28150,28158,28189,28295,28311,28312,28333,28340,28376,28439,28461,28597,28624,28721,28747,28806,28811,28891,28892,28897,28898,28928,28948,28970,29037,29041,29051,29061,29101,29115,29222,29252,29264,29306,29324,29329,29356,29365,29472,29474,29489,29554,29555,29631,29653,29654,29717,29722,29922,29986,30031,30033,30064,30089,30091,30112,30129,30145,30258,30420,30442,30447,30595]]],["his",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29404]]],["more",[3,2,[[39,2,1,0,1,[[938,2,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[23454,29012]]],["of",[10,10,[[46,8,8,0,8,[[1078,2,2,0,2],[1084,2,2,2,4],[1085,1,1,4,5],[1086,2,2,5,7],[1089,1,1,7,8]]],[49,2,2,8,10,[[1103,1,1,8,9],[1106,1,1,9,10]]]],[28807,28808,28920,28930,28955,28958,28959,29027,29368,29452]]],["over",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29228]]],["than",[2,2,[[41,1,1,0,1,[[988,1,1,0,1]]],[57,1,1,1,2,[[1136,1,1,1,2]]]],[25628,30026]]],["to",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29035]]],["toward",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28923]]]]},{"k":"G5229","v":[["*",[3,2,[[46,2,1,0,1,[[1089,2,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]]],[29029,29665]]],["himself",[1,1,[[52,1,1,0,1,[[1117,1,1,0,1]]]],[29665]]],["measure",[2,1,[[46,2,1,0,1,[[1089,2,1,0,1]]]],[29029]]]]},{"k":"G5230","v":[["+",[1,1,[[45,1,1,0,1,[[1068,1,1,0,1]]]],[28523]]]]},{"k":"G5231","v":[["*",[3,3,[[48,2,2,0,2,[[1097,1,1,0,1],[1100,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[29227,29282,30110]]],["above",[2,2,[[48,2,2,0,2,[[1097,1,1,0,1],[1100,1,1,1,2]]]],[29227,29282]]],["over",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30110]]]]},{"k":"G5232","v":[["exceedingly",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29652]]]]},{"k":"G5233","v":[["beyond",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29609]]]]},{"k":"G5234","v":[["measure",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29012]]]]},{"k":"G5235","v":[["*",[5,5,[[46,2,2,0,2,[[1080,1,1,0,1],[1086,1,1,1,2]]],[48,3,3,2,5,[[1097,1,1,2,3],[1098,1,1,3,4],[1099,1,1,4,5]]]],[28851,28970,29225,29236,29270]]],["exceeding",[3,3,[[46,1,1,0,1,[[1086,1,1,0,1]]],[48,2,2,1,3,[[1097,1,1,1,2],[1098,1,1,2,3]]]],[28970,29225,29236]]],["excelleth",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28851]]],["passeth",[1,1,[[48,1,1,0,1,[[1099,1,1,0,1]]]],[29270]]]]},{"k":"G5236","v":[["*",[8,7,[[44,1,1,0,1,[[1052,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]],[46,5,4,2,6,[[1078,1,1,2,3],[1081,3,2,3,5],[1089,1,1,5,6]]],[47,1,1,6,7,[[1091,1,1,6,7]]]],[28104,28665,28808,28866,28876,29029,29070]]],["+",[6,5,[[44,1,1,0,1,[[1052,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]],[46,3,2,2,4,[[1078,1,1,2,3],[1081,2,1,3,4]]],[47,1,1,4,5,[[1091,1,1,4,5]]]],[28104,28665,28808,28876,29070]]],["abundance",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29029]]],["excellency",[1,1,[[46,1,1,0,1,[[1081,1,1,0,1]]]],[28866]]]]},{"k":"G5237","v":[["winked",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27553]]]]},{"k":"G5238","v":[["beyond",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28987]]]]},{"k":"G5239","v":[["+",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28985]]]]},{"k":"G5240","v":[["over",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25184]]]]},{"k":"G5241","v":[["intercession",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28142]]]]},{"k":"G5242","v":[["*",[5,5,[[44,1,1,0,1,[[1058,1,1,0,1]]],[49,3,3,1,4,[[1104,1,1,1,2],[1105,1,1,2,3],[1106,1,1,3,4]]],[59,1,1,4,5,[[1152,1,1,4,5]]]],[28267,29394,29429,29449,30412]]],["better",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29394]]],["excellency",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29429]]],["higher",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28267]]],["passeth",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29449]]],["supreme",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30412]]]]},{"k":"G5243","v":[["pride",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24485]]]]},{"k":"G5244","v":[["proud",[5,5,[[41,1,1,0,1,[[973,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[54,1,1,2,3,[[1127,1,1,2,3]]],[58,1,1,3,4,[[1149,1,1,3,4]]],[59,1,1,4,5,[[1155,1,1,4,5]]]],[24944,27960,29855,30343,30470]]]]},{"k":"G5245","v":[["conquerors",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28153]]]]},{"k":"G5246","v":[["swelling",[2,2,[[60,1,1,0,1,[[1157,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[30518,30688]]]]},{"k":"G5247","v":[["*",[2,2,[[45,1,1,0,1,[[1063,1,1,0,1]]],[53,1,1,1,2,[[1120,1,1,1,2]]]],[28395,29718]]],["authority",[1,1,[[53,1,1,0,1,[[1120,1,1,0,1]]]],[29718]]],["excellency",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28395]]]]},{"k":"G5248","v":[["*",[2,2,[[44,1,1,0,1,[[1050,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]]],[28067,28920]]],["abound",[1,1,[[44,1,1,0,1,[[1050,1,1,0,1]]]],[28067]]],["exceeding",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28920]]]]},{"k":"G5249","v":[["measure",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24500]]]]},{"k":"G5250","v":[["abundant",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29710]]]]},{"k":"G5251","v":[["exalted",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29400]]]]},{"k":"G5252","v":[["+",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28248]]]]},{"k":"G5253","v":[["*",[4,4,[[43,4,4,0,4,[[1018,1,1,0,1],[1026,2,2,1,3],[1037,1,1,3,4]]]],[26936,27253,27255,27634]]],["chamber",[3,3,[[43,3,3,0,3,[[1026,2,2,0,2],[1037,1,1,2,3]]]],[27253,27255,27634]]],["room",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26936]]]]},{"k":"G5254","v":[["suffering",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30679]]]]},{"k":"G5255","v":[["*",[3,3,[[43,1,1,0,1,[[1024,1,1,0,1]]],[46,1,1,1,2,[[1079,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[27155,28833,29399]]],["+",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27155]]],["obedient",[2,2,[[46,1,1,0,1,[[1079,1,1,0,1]]],[49,1,1,1,2,[[1104,1,1,1,2]]]],[28833,29399]]]]},{"k":"G5256","v":[["*",[3,3,[[43,3,3,0,3,[[1030,1,1,0,1],[1037,1,1,1,2],[1041,1,1,2,3]]]],[27398,27660,27792]]],["minister",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27792]]],["ministered",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27660]]],["served",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27398]]]]},{"k":"G5257","v":[["*",[20,20,[[39,2,2,0,2,[[933,1,1,0,1],[954,1,1,1,2]]],[40,2,2,2,4,[[970,2,2,2,4]]],[41,2,2,4,6,[[973,1,1,4,5],[976,1,1,5,6]]],[42,9,9,6,15,[[1003,3,3,6,9],[1014,5,5,9,14],[1015,1,1,14,15]]],[43,4,4,15,19,[[1022,2,2,15,17],[1030,1,1,17,18],[1043,1,1,18,19]]],[45,1,1,19,20,[[1065,1,1,19,20]]]],[23259,24112,24808,24819,24895,25083,26360,26373,26374,26788,26797,26803,26807,26821,26831,27081,27085,27367,27839,28434]]],["minister",[3,3,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,2,2,1,3,[[1030,1,1,1,2],[1043,1,1,2,3]]]],[25083,27367,27839]]],["ministers",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]]],[24895,28434]]],["officer",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23259]]],["officers",[10,10,[[42,8,8,0,8,[[1003,3,3,0,3],[1014,4,4,3,7],[1015,1,1,7,8]]],[43,2,2,8,10,[[1022,2,2,8,10]]]],[26360,26373,26374,26788,26797,26803,26807,26831,27081,27085]]],["servants",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[970,2,2,1,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]]],[24112,24808,24819,26821]]]]},{"k":"G5258","v":[["sleep",[6,5,[[39,1,1,0,1,[[929,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]],[42,1,1,2,3,[[1007,1,1,2,3]]],[43,2,1,3,4,[[1037,2,1,3,4]]],[44,1,1,4,5,[[1058,1,1,4,5]]]],[23168,25333,26536,27635,28277]]]]},{"k":"G5259","v":[["*",[227,208,[[39,31,29,0,29,[[929,1,1,0,1],[930,3,3,1,4],[931,4,4,4,8],[932,2,1,8,9],[933,2,2,9,11],[934,1,1,11,12],[936,4,3,12,15],[938,1,1,15,16],[939,2,2,16,18],[942,2,2,18,20],[945,1,1,20,21],[947,1,1,21,22],[948,1,1,22,23],[950,1,1,23,24],[951,2,2,24,26],[952,1,1,26,27],[955,2,2,27,29]]],[40,12,11,29,40,[[957,3,3,29,32],[958,1,1,32,33],[960,3,2,33,35],[961,2,2,35,37],[969,2,2,37,39],[972,1,1,39,40]]],[41,36,32,40,72,[[973,1,1,40,41],[974,3,3,41,44],[975,2,2,44,46],[976,2,2,46,48],[977,1,1,48,49],[978,1,1,49,50],[979,5,4,50,54],[980,3,3,54,57],[981,3,2,57,59],[982,1,1,59,60],[983,1,1,60,61],[985,2,2,61,63],[986,2,1,63,64],[988,1,1,64,65],[989,3,2,65,67],[993,4,4,67,71],[995,1,1,71,72]]],[42,4,4,72,76,[[997,1,1,72,73],[1004,1,1,73,74],[1006,1,1,74,75],[1010,1,1,75,76]]],[43,42,40,76,116,[[1019,2,2,76,78],[1021,3,3,78,81],[1022,2,2,81,83],[1025,1,1,83,84],[1027,6,5,84,89],[1029,1,1,89,90],[1030,2,2,90,92],[1032,3,3,92,95],[1033,4,4,95,99],[1034,2,2,99,101],[1037,1,1,101,102],[1038,1,1,102,103],[1039,2,2,103,105],[1040,4,3,105,108],[1041,2,2,108,110],[1042,1,1,110,111],[1043,3,3,111,114],[1044,2,2,114,116]]],[44,13,11,116,127,[[1048,3,3,116,119],[1051,4,2,119,121],[1052,1,1,121,122],[1057,1,1,122,123],[1058,1,1,123,124],[1060,2,2,124,126],[1061,1,1,126,127]]],[45,20,16,127,143,[[1062,1,1,127,128],[1063,2,2,128,130],[1065,2,1,130,131],[1067,1,1,131,132],[1068,1,1,132,133],[1069,1,1,133,134],[1070,3,1,134,135],[1071,4,4,135,139],[1072,1,1,139,140],[1075,2,1,140,141],[1076,2,2,141,143]]],[46,11,10,143,153,[[1078,2,2,143,145],[1079,1,1,145,146],[1080,2,2,146,148],[1082,1,1,148,149],[1085,3,2,149,151],[1088,1,1,151,152],[1089,1,1,152,153]]],[47,13,13,153,166,[[1091,1,1,153,154],[1093,5,5,154,159],[1094,6,6,159,165],[1095,1,1,165,166]]],[48,4,4,166,170,[[1097,1,1,166,167],[1098,1,1,167,168],[1101,2,2,168,170]]],[49,2,2,170,172,[[1103,1,1,170,171],[1105,1,1,171,172]]],[50,2,2,172,174,[[1107,1,1,172,173],[1108,1,1,173,174]]],[51,4,3,174,177,[[1111,1,1,174,175],[1112,3,2,175,177]]],[52,1,1,177,178,[[1117,1,1,177,178]]],[53,1,1,178,179,[[1124,1,1,178,179]]],[54,1,1,179,180,[[1126,1,1,179,180]]],[57,9,9,180,189,[[1134,1,1,180,181],[1135,1,1,181,182],[1137,2,2,182,184],[1139,1,1,184,185],[1141,1,1,185,186],[1143,1,1,186,187],[1144,2,2,187,189]]],[58,6,5,189,194,[[1146,1,1,189,190],[1147,2,2,190,192],[1148,3,2,192,194]]],[59,2,2,194,196,[[1152,1,1,194,195],[1155,1,1,195,196]]],[60,5,5,196,201,[[1156,2,2,196,198],[1157,2,2,198,200],[1158,1,1,200,201]]],[63,2,1,201,202,[[1165,2,1,201,202]]],[64,3,3,202,205,[[1166,3,3,202,205]]],[65,3,3,205,208,[[1172,2,2,205,207],[1175,1,1,207,208]]]],[23166,23184,23185,23186,23195,23198,23205,23206,23210,23247,23249,23284,23353,23354,23369,23439,23466,23486,23605,23621,23712,23774,23815,23903,23925,23955,23966,24141,24164,24220,24224,24228,24263,24344,24355,24368,24390,24730,24731,24884,24919,24991,24994,24999,25032,25044,25065,25078,25122,25164,25201,25203,25219,25225,25259,25274,25288,25308,25309,25385,25438,25535,25552,25561,25642,25671,25675,25842,25843,25846,25850,25943,26092,26390,26495,26689,26954,26973,27033,27034,27058,27075,27080,27182,27281,27292,27297,27300,27301,27342,27366,27407,27445,27446,27482,27485,27487,27489,27497,27536,27548,27629,27699,27715,27716,27744,27761,27764,27790,27795,27810,27825,27829,27830,27866,27896,28000,28004,28012,28082,28083,28105,28266,28267,28318,28327,28356,28374,28406,28409,28436,28479,28512,28530,28560,28568,28576,28577,28596,28632,28702,28743,28745,28804,28816,28830,28843,28844,28881,28951,28952,29013,29033,29068,29112,29119,29124,29125,29127,29133,29134,29135,29136,29140,29152,29180,29228,29240,29316,29317,29389,29433,29488,29512,29564,29574,29584,29674,29789,29853,29980,29999,30034,30040,30071,30124,30195,30215,30217,30280,30296,30302,30323,30325,30403,30471,30496,30500,30507,30517,30524,30670,30678,30684,30689,30801,30806,30858]]],["+",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27080]]],["By",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30858]]],["Of",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29013]]],["among",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27281]]],["by",[41,41,[[39,4,4,0,4,[[930,1,1,0,1],[931,1,1,1,2],[950,1,1,2,3],[955,1,1,3,4]]],[40,2,2,4,6,[[961,1,1,4,5],[969,1,1,5,6]]],[41,9,9,6,15,[[974,2,2,6,8],[975,1,1,8,9],[977,1,1,9,10],[981,1,1,10,11],[985,1,1,11,12],[988,1,1,12,13],[993,1,1,13,14],[995,1,1,14,15]]],[42,1,1,15,16,[[1004,1,1,15,16]]],[43,10,10,16,26,[[1021,1,1,16,17],[1027,1,1,17,18],[1030,2,2,18,20],[1032,2,2,20,22],[1033,1,1,22,23],[1041,1,1,23,24],[1042,1,1,24,25],[1044,1,1,25,26]]],[44,2,2,26,28,[[1048,1,1,26,27],[1060,1,1,27,28]]],[45,1,1,28,29,[[1062,1,1,28,29]]],[46,3,3,29,32,[[1080,1,1,29,30],[1085,2,2,30,32]]],[48,2,2,32,34,[[1098,1,1,32,33],[1101,1,1,33,34]]],[49,1,1,34,35,[[1103,1,1,34,35]]],[50,1,1,35,36,[[1108,1,1,35,36]]],[54,1,1,36,37,[[1126,1,1,36,37]]],[57,2,2,37,39,[[1134,1,1,37,38],[1135,1,1,38,39]]],[60,2,2,39,41,[[1156,1,1,39,40],[1158,1,1,40,41]]]],[23186,23195,23903,24164,24368,24731,24991,24999,25044,25122,25308,25535,25642,25842,25943,26390,27058,27281,27366,27407,27445,27482,27485,27790,27810,27866,28012,28327,28374,28844,28951,28952,29240,29317,29389,29512,29853,29980,29999,30500,30524]]],["from",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[60,1,1,1,2,[[1156,1,1,1,2]]]],[24919,30496]]],["of",[114,107,[[39,19,18,0,18,[[929,1,1,0,1],[930,2,2,1,3],[931,3,3,3,6],[932,2,1,6,7],[933,1,1,7,8],[934,1,1,8,9],[938,1,1,9,10],[939,1,1,10,11],[942,1,1,11,12],[945,1,1,12,13],[947,1,1,13,14],[948,1,1,14,15],[951,1,1,15,16],[952,1,1,16,17],[955,1,1,17,18]]],[40,7,7,18,25,[[957,3,3,18,21],[958,1,1,21,22],[961,1,1,22,23],[969,1,1,23,24],[972,1,1,24,25]]],[41,15,14,25,39,[[974,1,1,25,26],[975,1,1,26,27],[976,2,2,27,29],[979,1,1,29,30],[980,2,2,30,32],[981,2,2,32,34],[982,1,1,34,35],[986,2,1,35,36],[989,1,1,36,37],[993,2,2,37,39]]],[42,2,2,39,41,[[1006,1,1,39,40],[1010,1,1,40,41]]],[43,22,21,41,62,[[1019,1,1,41,42],[1021,1,1,42,43],[1027,4,4,43,47],[1029,1,1,47,48],[1032,1,1,48,49],[1033,3,3,49,52],[1034,1,1,52,53],[1038,1,1,53,54],[1039,2,2,54,56],[1040,3,2,56,58],[1041,1,1,58,59],[1043,3,3,59,62]]],[44,3,3,62,65,[[1057,1,1,62,63],[1058,1,1,63,64],[1060,1,1,64,65]]],[45,13,11,65,76,[[1063,2,2,65,67],[1065,2,1,67,68],[1067,1,1,68,69],[1068,1,1,69,70],[1069,1,1,70,71],[1071,3,3,71,74],[1072,1,1,74,75],[1075,2,1,75,76]]],[46,7,7,76,83,[[1078,2,2,76,78],[1079,1,1,78,79],[1080,1,1,79,80],[1082,1,1,80,81],[1085,1,1,81,82],[1089,1,1,82,83]]],[47,3,3,83,86,[[1091,1,1,83,84],[1093,1,1,84,85],[1094,1,1,85,86]]],[48,1,1,86,87,[[1101,1,1,86,87]]],[49,1,1,87,88,[[1105,1,1,87,88]]],[51,4,3,88,91,[[1111,1,1,88,89],[1112,3,2,89,91]]],[52,1,1,91,92,[[1117,1,1,91,92]]],[57,6,6,92,98,[[1137,2,2,92,94],[1139,1,1,94,95],[1143,1,1,95,96],[1144,2,2,96,98]]],[58,4,4,98,102,[[1146,1,1,98,99],[1147,1,1,99,100],[1148,2,2,100,102]]],[59,1,1,102,103,[[1152,1,1,102,103]]],[63,2,1,103,104,[[1165,2,1,103,104]]],[64,2,2,104,106,[[1166,2,2,104,106]]],[65,1,1,106,107,[[1172,1,1,106,107]]]],[23166,23184,23185,23198,23205,23206,23210,23247,23284,23439,23486,23605,23712,23774,23815,23925,23966,24141,24220,24224,24228,24263,24390,24730,24884,24994,25032,25065,25078,25225,25274,25288,25308,25309,25385,25561,25671,25843,25850,26495,26689,26973,27033,27292,27297,27300,27301,27342,27446,27487,27489,27497,27536,27699,27715,27716,27744,27761,27795,27825,27829,27830,28266,28267,28318,28406,28409,28436,28479,28512,28530,28576,28577,28596,28632,28702,28804,28816,28830,28843,28881,28951,29033,29068,29119,29140,29316,29433,29564,29574,29584,29674,30034,30040,30071,30195,30215,30217,30280,30302,30323,30325,30403,30670,30684,30689,30806]]],["that",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27764]]],["under",[48,40,[[39,5,4,0,4,[[933,1,1,0,1],[936,3,2,1,3],[951,1,1,3,4]]],[40,3,2,4,6,[[960,3,2,4,6]]],[41,7,5,6,11,[[979,3,2,6,8],[983,1,1,8,9],[985,1,1,9,10],[989,2,1,10,11]]],[42,1,1,11,12,[[997,1,1,11,12]]],[43,2,2,12,14,[[1019,1,1,12,13],[1021,1,1,13,14]]],[44,8,6,14,20,[[1048,2,2,14,16],[1051,4,2,16,18],[1052,1,1,18,19],[1061,1,1,19,20]]],[45,6,4,20,24,[[1070,3,1,20,21],[1071,1,1,21,22],[1076,2,2,22,24]]],[47,10,10,24,34,[[1093,4,4,24,28],[1094,5,5,28,33],[1095,1,1,33,34]]],[48,1,1,34,35,[[1097,1,1,34,35]]],[50,1,1,35,36,[[1107,1,1,35,36]]],[53,1,1,36,37,[[1124,1,1,36,37]]],[58,1,1,37,38,[[1147,1,1,37,38]]],[59,1,1,38,39,[[1155,1,1,38,39]]],[64,1,1,39,40,[[1166,1,1,39,40]]]],[23249,23353,23354,23955,24344,24355,25201,25203,25438,25552,25675,26092,26954,27034,28000,28004,28082,28083,28105,28356,28560,28568,28743,28745,29112,29124,29125,29127,29133,29134,29135,29136,29152,29180,29228,29488,29789,30296,30471,30678]]],["when",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[27629,30124]]],["which",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27182]]],["with",[14,14,[[39,3,3,0,3,[[936,1,1,0,1],[939,1,1,1,2],[942,1,1,2,3]]],[41,4,4,3,7,[[978,1,1,3,4],[979,1,1,4,5],[980,1,1,5,6],[993,1,1,6,7]]],[43,3,3,7,10,[[1022,1,1,7,8],[1034,1,1,8,9],[1044,1,1,9,10]]],[58,1,1,10,11,[[1148,1,1,10,11]]],[60,2,2,11,13,[[1157,2,2,11,13]]],[65,1,1,13,14,[[1172,1,1,13,14]]]],[23369,23466,23621,25164,25219,25259,25846,27075,27548,27896,30323,30507,30517,30801]]]]},{"k":"G5260","v":[["suborned",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27112]]]]},{"k":"G5261","v":[["example",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30420]]]]},{"k":"G5262","v":[["*",[6,6,[[42,1,1,0,1,[[1009,1,1,0,1]]],[57,3,3,1,4,[[1136,1,1,1,2],[1140,1,1,2,3],[1141,1,1,3,4]]],[58,1,1,4,5,[[1150,1,1,4,5]]],[60,1,1,5,6,[[1157,1,1,5,6]]]],[26645,30025,30097,30128,30364,30506]]],["ensample",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30506]]],["example",[4,4,[[42,1,1,0,1,[[1009,1,1,0,1]]],[57,2,2,1,3,[[1136,1,1,1,2],[1140,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]]],[26645,30025,30097,30364]]],["patterns",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30128]]]]},{"k":"G5263","v":[["*",[6,6,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,3,3,1,4,[[975,1,1,1,2],[978,1,1,2,3],[984,1,1,3,4]]],[43,2,2,4,6,[[1026,1,1,4,5],[1037,1,1,5,6]]]],[23199,25032,25193,25464,27232,27661]]],["forewarn",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25464]]],["shew",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[43,1,1,1,2,[[1026,1,1,1,2]]]],[25193,27232]]],["shewed",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27661]]],["warned",[2,2,[[39,1,1,0,1,[[931,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23199,25032]]]]},{"k":"G5264","v":[["received",[4,4,[[41,2,2,0,2,[[982,1,1,0,1],[991,1,1,1,2]]],[43,1,1,2,3,[[1034,1,1,2,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[25401,25737,27530,30318]]]]},{"k":"G5265","v":[["*",[3,3,[[40,1,1,0,1,[[962,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]],[48,1,1,2,3,[[1102,1,1,2,3]]]],[24416,27345,29352]]],["bind",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27345]]],["shod",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[48,1,1,1,2,[[1102,1,1,1,2]]]],[24416,29352]]]]},{"k":"G5266","v":[["*",[10,10,[[39,2,2,0,2,[[931,1,1,0,1],[938,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,4,4,3,7,[[975,1,1,3,4],[982,1,1,4,5],[987,1,1,5,6],[994,1,1,6,7]]],[42,1,1,7,8,[[997,1,1,7,8]]],[43,2,2,8,10,[[1024,1,1,8,9],[1030,1,1,9,10]]]],[23203,23427,24222,25041,25367,25610,25899,26071,27149,27387]]],["+",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25899]]],["shoe's",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26071]]],["shoes",[8,8,[[39,2,2,0,2,[[931,1,1,0,1],[938,1,1,1,2]]],[40,1,1,2,3,[[957,1,1,2,3]]],[41,3,3,3,6,[[975,1,1,3,4],[982,1,1,4,5],[987,1,1,5,6]]],[43,2,2,6,8,[[1024,1,1,6,7],[1030,1,1,7,8]]]],[23203,23427,24222,25041,25367,25610,27149,27387]]]]},{"k":"G5267","v":[["guilty",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28010]]]]},{"k":"G5268","v":[["ass",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[23831,30516]]]]},{"k":"G5269","v":[["undergirding",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27872]]]]},{"k":"G5270","v":[["under",[9,9,[[40,2,2,0,2,[[962,1,1,0,1],[963,1,1,1,2]]],[41,1,1,2,3,[[980,1,1,2,3]]],[42,1,1,3,4,[[997,1,1,3,4]]],[57,1,1,4,5,[[1134,1,1,4,5]]],[65,4,4,5,9,[[1171,2,2,5,7],[1172,1,1,7,8],[1178,1,1,8,9]]]],[24418,24491,25261,26094,29985,30782,30792,30802,30892]]]]},{"k":"G5271","v":[["feign",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25799]]]]},{"k":"G5272","v":[["*",[7,7,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[47,1,1,3,4,[[1092,1,1,3,4]]],[53,1,1,4,5,[[1122,1,1,4,5]]],[58,1,1,5,6,[[1150,1,1,5,6]]],[59,1,1,6,7,[[1152,1,1,6,7]]]],[23946,24688,25460,29094,29749,30366,30400]]],["condemnation",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30366]]],["dissimulation",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29094]]],["hypocrisies",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30400]]],["hypocrisy",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[984,1,1,2,3]]],[53,1,1,3,4,[[1122,1,1,3,4]]]],[23946,24688,25460,29749]]]]},{"k":"G5273","v":[["*",[20,20,[[39,15,15,0,15,[[934,3,3,0,3],[935,1,1,3,4],[943,1,1,4,5],[944,1,1,5,6],[950,1,1,6,7],[951,7,7,7,14],[952,1,1,14,15]]],[40,1,1,15,16,[[963,1,1,15,16]]],[41,4,4,16,20,[[978,1,1,16,17],[983,1,1,17,18],[984,1,1,18,19],[985,1,1,19,20]]]],[23284,23287,23298,23321,23640,23675,23890,23931,23932,23933,23941,23943,23945,23947,24008,24469,25188,25449,25515,25533]]],["hypocrite",[3,3,[[39,1,1,0,1,[[935,1,1,0,1]]],[41,2,2,1,3,[[978,1,1,1,2],[985,1,1,2,3]]]],[23321,25188,25533]]],["hypocrites",[17,17,[[39,14,14,0,14,[[934,3,3,0,3],[943,1,1,3,4],[944,1,1,4,5],[950,1,1,5,6],[951,7,7,6,13],[952,1,1,13,14]]],[40,1,1,14,15,[[963,1,1,14,15]]],[41,2,2,15,17,[[983,1,1,15,16],[984,1,1,16,17]]]],[23284,23287,23298,23640,23675,23890,23931,23932,23933,23941,23943,23945,23947,24008,24469,25449,25515]]]]},{"k":"G5274","v":[["*",[4,4,[[41,2,2,0,2,[[979,1,1,0,1],[982,1,1,1,2]]],[43,2,2,2,4,[[1018,1,1,2,3],[1019,1,1,3,4]]]],[25238,25393,26932,26964]]],["answering",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25393]]],["received",[1,1,[[43,1,1,0,1,[[1018,1,1,0,1]]]],[26932]]],["suppose",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[43,1,1,1,2,[[1019,1,1,1,2]]]],[25238,26964]]]]},{"k":"G5275","v":[["left",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28212]]]]},{"k":"G5276","v":[["winefat",[1,1,[[40,1,1,0,1,[[968,1,1,0,1]]]],[24674]]]]},{"k":"G5277","v":[["leaving",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30420]]]]},{"k":"G5278","v":[["*",[17,16,[[39,2,2,0,2,[[938,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,1,1,3,4,[[974,1,1,3,4]]],[43,1,1,4,5,[[1034,1,1,4,5]]],[44,1,1,5,6,[[1057,1,1,5,6]]],[45,1,1,6,7,[[1074,1,1,6,7]]],[54,2,2,7,9,[[1126,2,2,7,9]]],[57,4,4,9,13,[[1142,1,1,9,10],[1144,3,3,10,13]]],[58,2,2,13,15,[[1146,1,1,13,14],[1150,1,1,14,15]]],[59,2,1,15,16,[[1152,2,1,15,16]]]],[23439,23970,24730,25016,27537,28257,28672,29837,29839,30165,30214,30215,30219,30278,30365,30419]]],["abode",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27537]]],["behind",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25016]]],["endure",[5,5,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]],[58,1,1,4,5,[[1150,1,1,4,5]]]],[23970,24730,29837,30219,30365]]],["endured",[3,3,[[57,3,3,0,3,[[1142,1,1,0,1],[1144,2,2,1,3]]]],[30165,30214,30215]]],["endureth",[3,3,[[39,1,1,0,1,[[938,1,1,0,1]]],[45,1,1,1,2,[[1074,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[23439,28672,30278]]],["patient",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28257]]],["patiently",[2,1,[[59,2,1,0,1,[[1152,2,1,0,1]]]],[30419]]],["suffer",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29839]]]]},{"k":"G5279","v":[["*",[7,7,[[41,1,1,0,1,[[994,1,1,0,1]]],[42,1,1,1,2,[[1010,1,1,1,2]]],[54,1,1,2,3,[[1126,1,1,2,3]]],[55,1,1,3,4,[[1131,1,1,3,4]]],[60,1,1,4,5,[[1156,1,1,4,5]]],[63,1,1,5,6,[[1165,1,1,5,6]]],[64,1,1,6,7,[[1166,1,1,6,7]]]],[25925,26694,29841,29924,30491,30668,30677]]],["+",[4,4,[[42,1,1,0,1,[[1010,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]],[60,1,1,2,3,[[1156,1,1,2,3]]],[64,1,1,3,4,[[1166,1,1,3,4]]]],[26694,29924,30491,30677]]],["remember",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30668]]],["remembered",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25925]]],["remembrance",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29841]]]]},{"k":"G5280","v":[["*",[3,3,[[54,1,1,0,1,[[1125,1,1,0,1]]],[60,2,2,1,3,[[1156,1,1,1,2],[1158,1,1,2,3]]]],[29814,30492,30523]]],["+",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30492]]],["remembrance",[2,2,[[54,1,1,0,1,[[1125,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[29814,30523]]]]},{"k":"G5281","v":[["*",[32,31,[[41,2,2,0,2,[[980,1,1,0,1],[993,1,1,1,2]]],[44,6,6,2,8,[[1047,1,1,2,3],[1050,2,2,3,5],[1053,1,1,5,6],[1060,2,2,6,8]]],[46,3,3,8,11,[[1078,1,1,8,9],[1083,1,1,9,10],[1089,1,1,10,11]]],[50,1,1,11,12,[[1107,1,1,11,12]]],[51,1,1,12,13,[[1111,1,1,12,13]]],[52,2,2,13,15,[[1116,1,1,13,14],[1118,1,1,14,15]]],[53,1,1,15,16,[[1124,1,1,15,16]]],[54,1,1,16,17,[[1127,1,1,16,17]]],[55,1,1,17,18,[[1130,1,1,17,18]]],[57,2,2,18,20,[[1142,1,1,18,19],[1144,1,1,19,20]]],[58,3,3,20,23,[[1146,2,2,20,22],[1150,1,1,22,23]]],[60,2,1,23,24,[[1156,2,1,23,24]]],[65,7,7,24,31,[[1167,1,1,24,25],[1168,3,3,25,28],[1169,1,1,28,29],[1179,1,1,29,30],[1180,1,1,30,31]]]],[25260,25845,27969,28050,28051,28141,28307,28308,28806,28902,29034,29476,29563,29653,29683,29799,29863,29910,30169,30213,30269,30270,30365,30485,30706,30719,30720,30736,30756,30918,30938]]],["continuance",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27969]]],["enduring",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28806]]],["patience",[29,28,[[41,2,2,0,2,[[980,1,1,0,1],[993,1,1,1,2]]],[44,5,5,2,7,[[1050,2,2,2,4],[1053,1,1,4,5],[1060,2,2,5,7]]],[46,2,2,7,9,[[1083,1,1,7,8],[1089,1,1,8,9]]],[50,1,1,9,10,[[1107,1,1,9,10]]],[51,1,1,10,11,[[1111,1,1,10,11]]],[52,1,1,11,12,[[1116,1,1,11,12]]],[53,1,1,12,13,[[1124,1,1,12,13]]],[54,1,1,13,14,[[1127,1,1,13,14]]],[55,1,1,14,15,[[1130,1,1,14,15]]],[57,2,2,15,17,[[1142,1,1,15,16],[1144,1,1,16,17]]],[58,3,3,17,20,[[1146,2,2,17,19],[1150,1,1,19,20]]],[60,2,1,20,21,[[1156,2,1,20,21]]],[65,7,7,21,28,[[1167,1,1,21,22],[1168,3,3,22,25],[1169,1,1,25,26],[1179,1,1,26,27],[1180,1,1,27,28]]]],[25260,25845,28050,28051,28141,28307,28308,28902,29034,29476,29563,29653,29799,29863,29910,30169,30213,30269,30270,30365,30485,30706,30719,30720,30736,30756,30918,30938]]],["waiting",[1,1,[[52,1,1,0,1,[[1118,1,1,0,1]]]],[29683]]]]},{"k":"G5282","v":[["*",[3,3,[[43,3,3,0,3,[[1030,1,1,0,1],[1042,1,1,1,2],[1044,1,1,2,3]]]],[27387,27814,27882]]],["deemed",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27882]]],["supposed",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27814]]],["think",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27387]]]]},{"k":"G5283","v":[["surmisings",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29792]]]]},{"k":"G5284","v":[["under",[2,2,[[43,2,2,0,2,[[1044,2,2,0,2]]]],[27859,27862]]]]},{"k":"G5285","v":[["softly",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27868]]]]},{"k":"G5286","v":[["*",[9,9,[[39,2,2,0,2,[[933,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]],[43,2,2,4,6,[[1019,1,1,4,5],[1024,1,1,5,6]]],[57,2,2,6,8,[[1133,1,1,6,7],[1142,1,1,7,8]]],[58,1,1,8,9,[[1147,1,1,8,9]]]],[23269,23916,24709,25822,26984,27165,29976,30146,30296]]],["+",[8,8,[[39,2,2,0,2,[[933,1,1,0,1],[950,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,1,1,3,4,[[992,1,1,3,4]]],[43,2,2,4,6,[[1019,1,1,4,5],[1024,1,1,5,6]]],[57,2,2,6,8,[[1133,1,1,6,7],[1142,1,1,7,8]]]],[23269,23916,24709,25822,26984,27165,29976,30146]]],["footstool",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30296]]]]},{"k":"G5287","v":[["*",[5,5,[[46,2,2,0,2,[[1086,1,1,0,1],[1088,1,1,1,2]]],[57,3,3,2,5,[[1133,1,1,2,3],[1135,1,1,3,4],[1143,1,1,4,5]]]],[28960,29006,29966,30009,30173]]],["confidence",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[57,1,1,1,2,[[1135,1,1,1,2]]]],[29006,30009]]],["confident",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28960]]],["person",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29966]]],["substance",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30173]]]]},{"k":"G5288","v":[["*",[4,4,[[43,2,2,0,2,[[1037,2,2,0,2]]],[47,1,1,2,3,[[1092,1,1,2,3]]],[57,1,1,3,4,[[1142,1,1,3,4]]]],[27646,27653,29093,30171]]],["back",[2,2,[[43,1,1,0,1,[[1037,1,1,0,1]]],[57,1,1,1,2,[[1142,1,1,1,2]]]],[27646,30171]]],["shunned",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27653]]],["withdrew",[1,1,[[47,1,1,0,1,[[1092,1,1,0,1]]]],[29093]]]]},{"k":"G5289","v":[["back",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30172]]]]},{"k":"G5290","v":[["*",[35,35,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,21,21,1,22,[[973,1,1,1,2],[974,3,3,2,5],[976,2,2,5,7],[979,1,1,7,8],[980,3,3,8,11],[981,1,1,11,12],[982,1,1,12,13],[983,1,1,13,14],[989,2,2,14,16],[991,1,1,16,17],[995,2,2,17,19],[996,3,3,19,22]]],[43,11,11,22,33,[[1018,1,1,22,23],[1025,2,2,23,25],[1029,1,1,25,26],[1030,2,2,26,28],[1031,1,1,28,29],[1037,1,1,29,30],[1038,1,1,30,31],[1039,1,1,31,32],[1040,1,1,32,33]]],[47,1,1,33,34,[[1091,1,1,33,34]]],[57,1,1,34,35,[[1139,1,1,34,35]]]],[24794,24949,25012,25016,25018,25064,25077,25205,25282,25284,25285,25311,25380,25429,25666,25669,25743,25983,25991,26000,26024,26043,26935,27201,27204,27362,27375,27396,27435,27629,27670,27721,27766,29074,30065]]],["Return",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25284]]],["again",[5,5,[[41,3,3,0,3,[[974,1,1,0,1],[980,1,1,1,2],[982,1,1,2,3]]],[43,2,2,3,5,[[1031,1,1,3,4],[1039,1,1,4,5]]]],[25018,25282,25380,27435,27721]]],["back",[1,1,[[41,1,1,0,1,[[989,1,1,0,1]]]],[25666]]],["return",[4,4,[[41,2,2,0,2,[[983,1,1,0,1],[991,1,1,1,2]]],[43,2,2,2,4,[[1030,1,1,2,3],[1037,1,1,3,4]]]],[25429,25743,27396,27629]]],["returned",[21,21,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,13,13,1,14,[[973,1,1,1,2],[974,2,2,2,4],[976,2,2,4,6],[980,1,1,6,7],[981,1,1,7,8],[989,1,1,8,9],[995,2,2,9,11],[996,3,3,11,14]]],[43,6,6,14,20,[[1018,1,1,14,15],[1025,1,1,15,16],[1029,1,1,16,17],[1030,1,1,17,18],[1038,1,1,18,19],[1040,1,1,19,20]]],[47,1,1,20,21,[[1091,1,1,20,21]]]],[24794,24949,25012,25016,25064,25077,25285,25311,25669,25983,25991,26000,26024,26043,26935,27201,27362,27375,27670,27766,29074]]],["returning",[3,3,[[41,1,1,0,1,[[979,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]],[57,1,1,2,3,[[1139,1,1,2,3]]]],[25205,27204,30065]]]]},{"k":"G5291","v":[["spread",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25767]]]]},{"k":"G5292","v":[["subjection",[4,4,[[46,1,1,0,1,[[1086,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]],[53,2,2,2,4,[[1120,1,1,2,3],[1121,1,1,3,4]]]],[28969,29086,29727,29735]]]]},{"k":"G5293","v":[["*",[40,32,[[41,3,3,0,3,[[974,1,1,0,1],[982,2,2,1,3]]],[44,6,5,3,8,[[1053,3,2,3,5],[1055,1,1,5,6],[1058,2,2,6,8]]],[45,9,5,8,13,[[1075,2,2,8,10],[1076,6,2,10,12],[1077,1,1,12,13]]],[48,4,4,13,17,[[1097,1,1,13,14],[1101,3,3,14,17]]],[49,1,1,17,18,[[1105,1,1,17,18]]],[50,1,1,18,19,[[1109,1,1,18,19]]],[55,3,3,19,22,[[1130,2,2,19,21],[1131,1,1,21,22]]],[57,5,3,22,25,[[1134,4,2,22,24],[1144,1,1,24,25]]],[58,1,1,25,26,[[1149,1,1,25,26]]],[59,7,6,26,32,[[1152,2,2,26,28],[1153,3,3,28,31],[1155,2,1,31,32]]]],[25024,25380,25383,28123,28136,28191,28267,28271,28710,28712,28745,28746,28792,29228,29325,29326,29328,29442,29535,29913,29917,29924,29982,29985,30221,30344,30412,30417,30425,30429,30446,30470]]],["+",[5,4,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,2,2,1,3,[[1076,2,2,1,3]]],[57,2,1,3,4,[[1134,2,1,3,4]]]],[28123,28745,28746,29985]]],["Submit",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30344]]],["obedience",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28712]]],["obedient",[2,2,[[55,2,2,0,2,[[1130,2,2,0,2]]]],[29913,29917]]],["put",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]]],[28745,29228]]],["subdue",[1,1,[[49,1,1,0,1,[[1105,1,1,0,1]]]],[29442]]],["subject",[8,8,[[41,1,1,0,1,[[982,1,1,0,1]]],[44,3,3,1,4,[[1053,1,1,1,2],[1058,2,2,2,4]]],[45,2,2,4,6,[[1075,1,1,4,5],[1076,1,1,5,6]]],[55,1,1,6,7,[[1131,1,1,6,7]]],[59,1,1,7,8,[[1155,1,1,7,8]]]],[25383,28136,28267,28271,28710,28746,29924,30470]]],["subjected",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28136]]],["subjection",[4,4,[[57,2,2,0,2,[[1134,1,1,0,1],[1144,1,1,1,2]]],[59,2,2,2,4,[[1153,2,2,2,4]]]],[29982,30221,30425,30429]]],["themselves",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28191]]],["to",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30417]]],["under",[2,2,[[45,1,1,0,1,[[1076,1,1,0,1]]],[57,1,1,1,2,[[1134,1,1,1,2]]]],[28745,29985]]],["unto",[6,6,[[41,2,2,0,2,[[974,1,1,0,1],[982,1,1,1,2]]],[45,2,2,2,4,[[1076,1,1,2,3],[1077,1,1,3,4]]],[48,1,1,4,5,[[1101,1,1,4,5]]],[59,1,1,5,6,[[1153,1,1,5,6]]]],[25024,25380,28746,28792,29328,30446]]],["yourselves",[5,5,[[48,2,2,0,2,[[1101,2,2,0,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]],[59,2,2,3,5,[[1152,1,1,3,4],[1155,1,1,4,5]]]],[29325,29326,29535,30412,30470]]]]},{"k":"G5294","v":[["*",[2,2,[[44,1,1,0,1,[[1061,1,1,0,1]]],[53,1,1,1,2,[[1122,1,1,1,2]]]],[28340,29753]]],["+",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29753]]],["down",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28340]]]]},{"k":"G5295","v":[["under",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27871]]]]},{"k":"G5296","v":[["*",[2,2,[[53,1,1,0,1,[[1119,1,1,0,1]]],[54,1,1,1,2,[[1125,1,1,1,2]]]],[29712,29822]]],["form",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29822]]],["pattern",[1,1,[[53,1,1,0,1,[[1119,1,1,0,1]]]],[29712]]]]},{"k":"G5297","v":[["*",[3,3,[[45,1,1,0,1,[[1071,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]],[59,1,1,2,3,[[1152,1,1,2,3]]]],[28580,29864,30418]]],["bear",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28580]]],["endure",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30418]]],["endured",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29864]]]]},{"k":"G5298","v":[["*",[2,2,[[41,2,2,0,2,[[977,1,1,0,1],[981,1,1,1,2]]]],[25123,25311]]],["+",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25123]]],["aside",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25311]]]]},{"k":"G5299","v":[["*",[2,2,[[41,1,1,0,1,[[990,1,1,0,1]]],[45,1,1,1,2,[[1070,1,1,1,2]]]],[25693,28567]]],["under",[1,1,[[45,1,1,0,1,[[1070,1,1,0,1]]]],[28567]]],["weary",[1,1,[[41,1,1,0,1,[[990,1,1,0,1]]]],[25693]]]]},{"k":"G5300","v":[["sow",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30522]]]]},{"k":"G5301","v":[["hyssop",[2,2,[[42,1,1,0,1,[[1015,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]]],[26854,30124]]]]},{"k":"G5302","v":[["*",[16,16,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,2,2,2,4,[[987,1,1,2,3],[994,1,1,3,4]]],[42,1,1,4,5,[[998,1,1,4,5]]],[44,1,1,5,6,[[1048,1,1,5,6]]],[45,3,3,6,9,[[1062,1,1,6,7],[1069,1,1,7,8],[1073,1,1,8,9]]],[46,3,3,9,12,[[1088,2,2,9,11],[1089,1,1,11,12]]],[49,1,1,12,13,[[1106,1,1,12,13]]],[57,3,3,13,16,[[1136,1,1,13,14],[1143,1,1,14,15],[1144,1,1,15,16]]]],[23782,24609,25602,25899,26098,28014,28370,28535,28658,28994,28998,29033,29454,30015,30209,30227]]],["+",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[28994]]],["behind",[2,2,[[45,1,1,0,1,[[1062,1,1,0,1]]],[46,1,1,1,2,[[1089,1,1,1,2]]]],[28370,29033]]],["destitute",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30209]]],["fail",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30227]]],["lack",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23782]]],["lacked",[2,2,[[41,1,1,0,1,[[994,1,1,0,1]]],[45,1,1,1,2,[[1073,1,1,1,2]]]],[25899,28658]]],["lackest",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24609]]],["need",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29454]]],["short",[2,2,[[44,1,1,0,1,[[1048,1,1,0,1]]],[57,1,1,1,2,[[1136,1,1,1,2]]]],[28014,30015]]],["want",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25602]]],["wanted",[2,2,[[42,1,1,0,1,[[998,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]]],[26098,28998]]],["worse",[1,1,[[45,1,1,0,1,[[1069,1,1,0,1]]]],[28535]]]]},{"k":"G5303","v":[["*",[9,8,[[41,1,1,0,1,[[993,1,1,0,1]]],[45,1,1,1,2,[[1077,1,1,1,2]]],[46,4,3,2,5,[[1085,2,1,2,3],[1086,1,1,3,4],[1088,1,1,4,5]]],[49,1,1,5,6,[[1104,1,1,5,6]]],[50,1,1,6,7,[[1107,1,1,6,7]]],[51,1,1,7,8,[[1113,1,1,7,8]]]],[25830,28793,28946,28968,28998,29421,29489,29600]]],["behind",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29489]]],["lack",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29421]]],["lacking",[3,3,[[45,1,1,0,1,[[1077,1,1,0,1]]],[46,1,1,1,2,[[1088,1,1,1,2]]],[51,1,1,2,3,[[1113,1,1,2,3]]]],[28793,28998,29600]]],["penury",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25830]]],["want",[3,2,[[46,3,2,0,2,[[1085,2,1,0,1],[1086,1,1,1,2]]]],[28946,28968]]]]},{"k":"G5304","v":[["want",[2,2,[[40,1,1,0,1,[[968,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]]],[24717,29453]]]]},{"k":"G5305","v":[["*",[12,12,[[39,7,7,0,7,[[932,1,1,0,1],[949,3,3,1,4],[950,1,1,4,5],[953,1,1,5,6],[954,1,1,6,7]]],[40,1,1,7,8,[[972,1,1,7,8]]],[41,2,2,8,10,[[976,1,1,8,9],[992,1,1,9,10]]],[42,1,1,10,11,[[1009,1,1,10,11]]],[57,1,1,11,12,[[1144,1,1,11,12]]]],[23211,23855,23858,23863,23899,24019,24114,24887,25065,25811,26666,30223]]],["+",[2,2,[[39,2,2,0,2,[[932,1,1,0,1],[954,1,1,1,2]]]],[23211,24114]]],["Afterward",[2,2,[[39,1,1,0,1,[[953,1,1,0,1]]],[40,1,1,1,2,[[972,1,1,1,2]]]],[24019,24887]]],["Last",[1,1,[[41,1,1,0,1,[[992,1,1,0,1]]]],[25811]]],["afterward",[4,4,[[39,2,2,0,2,[[949,2,2,0,2]]],[41,1,1,2,3,[[976,1,1,2,3]]],[57,1,1,3,4,[[1144,1,1,3,4]]]],[23855,23858,25065,30223]]],["afterwards",[1,1,[[42,1,1,0,1,[[1009,1,1,0,1]]]],[26666]]],["last",[2,2,[[39,2,2,0,2,[[949,1,1,0,1],[950,1,1,1,2]]]],[23863,23899]]]]},{"k":"G5306","v":[["latter",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29748]]]]},{"k":"G5307","v":[["woven",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26848]]]]},{"k":"G5308","v":[["*",[11,11,[[39,2,2,0,2,[[932,1,1,0,1],[945,1,1,1,2]]],[40,1,1,2,3,[[965,1,1,2,3]]],[41,2,2,3,5,[[976,1,1,3,4],[988,1,1,4,5]]],[43,1,1,5,6,[[1030,1,1,5,6]]],[44,1,1,6,7,[[1057,1,1,6,7]]],[57,2,2,7,9,[[1133,1,1,7,8],[1139,1,1,8,9]]],[65,2,2,9,11,[[1187,2,2,9,11]]]],[23217,23701,24540,25068,25635,27379,28261,29966,30090,31063,31065]]],["esteemed",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25635]]],["high",[8,8,[[39,2,2,0,2,[[932,1,1,0,1],[945,1,1,1,2]]],[40,1,1,2,3,[[965,1,1,2,3]]],[41,1,1,3,4,[[976,1,1,3,4]]],[43,1,1,4,5,[[1030,1,1,4,5]]],[57,1,1,5,6,[[1133,1,1,5,6]]],[65,2,2,6,8,[[1187,2,2,6,8]]]],[23217,23701,24540,25068,27379,29966,31063,31065]]],["higher",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30090]]],["things",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28261]]]]},{"k":"G5309","v":[["+",[2,2,[[44,1,1,0,1,[[1056,1,1,0,1]]],[53,1,1,1,2,[[1124,1,1,1,2]]]],[28229,29805]]]]},{"k":"G5310","v":[["*",[13,13,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,2,2,1,3,[[961,1,1,1,2],[967,1,1,2,3]]],[41,7,7,3,10,[[973,3,3,3,6],[974,1,1,6,7],[978,1,1,7,8],[980,1,1,8,9],[991,1,1,9,10]]],[43,2,2,10,12,[[1024,1,1,10,11],[1033,1,1,11,12]]],[57,1,1,12,13,[[1139,1,1,12,13]]]],[23835,24371,24650,24925,24928,24969,24987,25181,25273,25769,27164,27500,30065]]],["High",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27164]]],["Highest",[4,4,[[41,4,4,0,4,[[973,3,3,0,3],[978,1,1,3,4]]]],[24925,24928,24969,25181]]],["high",[4,4,[[40,1,1,0,1,[[961,1,1,0,1]]],[41,1,1,1,2,[[980,1,1,1,2]]],[43,1,1,2,3,[[1033,1,1,2,3]]],[57,1,1,3,4,[[1139,1,1,3,4]]]],[24371,25273,27500,30065]]],["highest",[4,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[967,1,1,1,2]]],[41,2,2,2,4,[[974,1,1,2,3],[991,1,1,3,4]]]],[23835,24650,24987,25769]]]]},{"k":"G5311","v":[["*",[6,6,[[41,2,2,0,2,[[973,1,1,0,1],[996,1,1,1,2]]],[48,2,2,2,4,[[1099,1,1,2,3],[1100,1,1,3,4]]],[58,1,1,4,5,[[1146,1,1,4,5]]],[65,1,1,5,6,[[1187,1,1,5,6]]]],[24971,26040,29269,29280,30275,31069]]],["exalted",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30275]]],["height",[2,2,[[48,1,1,0,1,[[1099,1,1,0,1]]],[65,1,1,1,2,[[1187,1,1,1,2]]]],[29269,31069]]],["high",[3,3,[[41,2,2,0,2,[[973,1,1,0,1],[996,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]]],[24971,26040,29280]]]]},{"k":"G5312","v":[["*",[20,16,[[39,3,2,0,2,[[939,1,1,0,1],[951,2,1,1,2]]],[41,6,4,2,6,[[973,1,1,2,3],[982,1,1,3,4],[986,2,1,4,5],[990,2,1,5,6]]],[42,5,4,6,10,[[999,2,1,6,7],[1004,1,1,7,8],[1008,2,2,8,10]]],[43,3,3,10,13,[[1019,1,1,10,11],[1022,1,1,11,12],[1030,1,1,12,13]]],[46,1,1,13,14,[[1088,1,1,13,14]]],[58,1,1,14,15,[[1149,1,1,14,15]]],[59,1,1,15,16,[[1155,1,1,15,16]]]],[23482,23930,24945,25378,25564,25702,26134,26409,26612,26614,26982,27090,27379,28996,30347,30471]]],["+",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30347]]],["exalt",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[59,1,1,1,2,[[1155,1,1,1,2]]]],[23930,30471]]],["exalted",[10,10,[[39,2,2,0,2,[[939,1,1,0,1],[951,1,1,1,2]]],[41,4,4,2,6,[[973,1,1,2,3],[982,1,1,3,4],[986,1,1,4,5],[990,1,1,5,6]]],[43,3,3,6,9,[[1019,1,1,6,7],[1022,1,1,7,8],[1030,1,1,8,9]]],[46,1,1,9,10,[[1088,1,1,9,10]]]],[23482,23930,24945,25378,25564,25702,26982,27090,27379,28996]]],["exalteth",[2,2,[[41,2,2,0,2,[[986,1,1,0,1],[990,1,1,1,2]]]],[25564,25702]]],["up",[5,4,[[42,5,4,0,4,[[999,2,1,0,1],[1004,1,1,1,2],[1008,2,2,2,4]]]],[26134,26409,26612,26614]]]]},{"k":"G5313","v":[["*",[2,2,[[44,1,1,0,1,[[1053,1,1,0,1]]],[46,1,1,1,2,[[1087,1,1,1,2]]]],[28155,28976]]],["height",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28155]]],["thing",[1,1,[[46,1,1,0,1,[[1087,1,1,0,1]]]],[28976]]]]},{"k":"G5314","v":[["gluttonous",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]]],[23478,25229]]]]},{"k":"G5315","v":[["*",[97,90,[[39,13,12,0,12,[[934,2,2,0,2],[940,2,1,2,3],[942,2,2,3,5],[943,3,3,5,8],[953,2,2,8,10],[954,2,2,10,12]]],[40,18,16,12,28,[[958,2,1,12,13],[959,1,1,13,14],[961,1,1,14,15],[962,6,5,15,20],[964,4,4,20,24],[967,1,1,24,25],[970,3,3,25,28]]],[41,21,19,28,47,[[976,1,1,28,29],[978,2,1,29,30],[979,1,1,30,31],[980,1,1,31,32],[981,2,2,32,34],[984,3,3,34,37],[985,1,1,37,38],[986,2,2,38,40],[987,1,1,40,41],[989,2,1,41,42],[994,4,4,42,46],[996,1,1,46,47]]],[42,15,14,47,61,[[1000,3,3,47,50],[1002,11,10,50,60],[1014,1,1,60,61]]],[43,6,6,61,67,[[1026,1,1,61,62],[1027,2,2,62,64],[1028,1,1,64,65],[1040,2,2,65,67]]],[44,3,3,67,70,[[1059,3,3,67,70]]],[45,11,10,70,80,[[1069,3,2,70,72],[1070,1,1,72,73],[1071,2,2,73,75],[1072,4,4,75,79],[1076,1,1,79,80]]],[52,1,1,80,81,[[1118,1,1,80,81]]],[57,1,1,81,82,[[1145,1,1,81,82]]],[58,1,1,82,83,[[1150,1,1,82,83]]],[65,7,7,83,90,[[1168,4,4,83,87],[1176,1,1,87,88],[1183,1,1,88,89],[1185,1,1,89,90]]]],[23307,23313,23493,23613,23617,23653,23665,23670,24043,24050,24071,24080,24286,24308,24407,24438,24443,24444,24449,24451,24501,24502,24508,24509,24654,24766,24768,24776,25065,25150,25231,25300,25314,25318,25478,25481,25488,25544,25554,25568,25611,25659,25872,25875,25879,25880,26034,26187,26188,26189,26262,26280,26283,26288,26306,26307,26308,26309,26310,26315,26813,27225,27272,27273,27314,27746,27755,28282,28301,28303,28535,28540,28544,28570,28574,28620,28621,28624,28633,28750,29686,30251,30357,30724,30731,30734,30737,30871,30991,31035]]],["And",[1,1,[[40,1,1,0,1,[[962,1,1,0,1]]]],[24444]]],["eat",[87,82,[[39,11,10,0,10,[[934,2,2,0,2],[940,2,1,2,3],[942,2,2,3,5],[943,3,3,5,8],[954,2,2,8,10]]],[40,16,15,10,25,[[958,2,1,10,11],[959,1,1,11,12],[961,1,1,12,13],[962,5,5,13,18],[964,3,3,18,21],[967,1,1,21,22],[970,3,3,22,25]]],[41,18,17,25,42,[[976,1,1,25,26],[978,2,1,26,27],[979,1,1,27,28],[981,2,2,28,30],[984,3,3,30,33],[986,2,2,33,35],[987,1,1,35,36],[989,1,1,36,37],[994,4,4,37,41],[996,1,1,41,42]]],[42,15,14,42,56,[[1000,3,3,42,45],[1002,11,10,45,55],[1014,1,1,55,56]]],[43,5,5,56,61,[[1026,1,1,56,57],[1027,1,1,57,58],[1028,1,1,58,59],[1040,2,2,59,61]]],[44,3,3,61,64,[[1059,3,3,61,64]]],[45,10,9,64,73,[[1069,3,2,64,66],[1070,1,1,66,67],[1071,2,2,67,69],[1072,3,3,69,72],[1076,1,1,72,73]]],[52,1,1,73,74,[[1118,1,1,73,74]]],[57,1,1,74,75,[[1145,1,1,74,75]]],[58,1,1,75,76,[[1150,1,1,75,76]]],[65,6,6,76,82,[[1168,4,4,76,80],[1183,1,1,80,81],[1185,1,1,81,82]]]],[23307,23313,23493,23613,23617,23653,23665,23670,24071,24080,24286,24308,24407,24438,24443,24444,24449,24451,24501,24502,24508,24654,24766,24768,24776,25065,25150,25231,25314,25318,25478,25481,25488,25554,25568,25611,25659,25872,25875,25879,25880,26034,26187,26188,26189,26262,26280,26283,26288,26306,26307,26308,26309,26310,26315,26813,27225,27272,27314,27746,27755,28282,28301,28303,28535,28540,28544,28570,28574,28620,28624,28633,28750,29686,30251,30357,30724,30731,30734,30737,30991,31035]]],["eaten",[5,5,[[40,1,1,0,1,[[964,1,1,0,1]]],[41,2,2,1,3,[[985,1,1,1,2],[989,1,1,2,3]]],[43,1,1,3,4,[[1027,1,1,3,4]]],[65,1,1,4,5,[[1176,1,1,4,5]]]],[24509,25544,25659,27273,30871]]],["eating",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28621]]],["meat",[3,3,[[39,2,2,0,2,[[953,2,2,0,2]]],[41,1,1,2,3,[[980,1,1,2,3]]]],[24043,24050,25300]]]]},{"k":"G5316","v":[["*",[31,31,[[39,13,13,0,13,[[929,1,1,0,1],[930,3,3,1,4],[934,3,3,4,7],[937,1,1,7,8],[941,1,1,8,9],[951,2,2,9,11],[952,2,2,11,13]]],[40,2,2,13,15,[[970,1,1,13,14],[972,1,1,14,15]]],[41,2,2,15,17,[[981,1,1,15,16],[996,1,1,16,17]]],[42,2,2,17,19,[[997,1,1,17,18],[1001,1,1,18,19]]],[44,1,1,19,20,[[1052,1,1,19,20]]],[46,1,1,20,21,[[1090,1,1,20,21]]],[49,1,1,21,22,[[1104,1,1,21,22]]],[57,1,1,22,23,[[1143,1,1,22,23]]],[58,1,1,23,24,[[1149,1,1,23,24]]],[59,1,1,24,25,[[1154,1,1,24,25]]],[60,1,1,25,26,[[1156,1,1,25,26]]],[61,1,1,26,27,[[1160,1,1,26,27]]],[65,4,4,27,31,[[1167,1,1,27,28],[1174,1,1,28,29],[1184,1,1,29,30],[1187,1,1,30,31]]]],[23164,23176,23182,23188,23287,23298,23300,23412,23565,23945,23946,23984,23987,24818,24882,25309,26002,26049,26245,28104,29050,29406,30175,30351,30464,30498,30558,30713,30839,31016,31076]]],["+",[1,1,[[39,1,1,0,1,[[934,1,1,0,1]]]],[23287]]],["appear",[9,9,[[39,5,5,0,5,[[934,2,2,0,2],[951,2,2,2,4],[952,1,1,4,5]]],[44,1,1,5,6,[[1052,1,1,5,6]]],[46,1,1,6,7,[[1090,1,1,6,7]]],[57,1,1,7,8,[[1143,1,1,7,8]]],[59,1,1,8,9,[[1154,1,1,8,9]]]],[23298,23300,23945,23946,23987,28104,29050,30175,30464]]],["appeared",[5,5,[[39,3,3,0,3,[[929,1,1,0,1],[930,1,1,1,2],[941,1,1,2,3]]],[40,1,1,3,4,[[972,1,1,3,4]]],[41,1,1,4,5,[[981,1,1,4,5]]]],[23164,23176,23565,24882,25309]]],["appeareth",[3,3,[[39,2,2,0,2,[[930,2,2,0,2]]],[58,1,1,2,3,[[1149,1,1,2,3]]]],[23182,23188,30351]]],["seemed",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26002]]],["seen",[1,1,[[39,1,1,0,1,[[937,1,1,0,1]]]],[23412]]],["shine",[3,3,[[49,1,1,0,1,[[1104,1,1,0,1]]],[65,2,2,1,3,[[1184,1,1,1,2],[1187,1,1,2,3]]]],[29406,31016,31076]]],["shineth",[5,5,[[39,1,1,0,1,[[952,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]],[60,1,1,2,3,[[1156,1,1,2,3]]],[61,1,1,3,4,[[1160,1,1,3,4]]],[65,1,1,4,5,[[1167,1,1,4,5]]]],[23984,26049,30498,30558,30713]]],["shining",[1,1,[[42,1,1,0,1,[[1001,1,1,0,1]]]],[26245]]],["shone",[1,1,[[65,1,1,0,1,[[1174,1,1,0,1]]]],[30839]]],["think",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24818]]]]},{"k":"G5317","v":[["Phalec",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25060]]]]},{"k":"G5318","v":[["*",[21,19,[[39,4,4,0,4,[[934,3,3,0,3],[940,1,1,3,4]]],[40,3,3,4,7,[[959,1,1,4,5],[960,1,1,5,6],[962,1,1,6,7]]],[41,2,1,7,8,[[980,2,1,7,8]]],[43,2,2,8,10,[[1021,1,1,8,9],[1024,1,1,9,10]]],[44,3,2,10,12,[[1046,1,1,10,11],[1047,2,1,11,12]]],[45,3,3,12,15,[[1064,1,1,12,13],[1072,1,1,13,14],[1075,1,1,14,15]]],[47,1,1,15,16,[[1095,1,1,15,16]]],[49,1,1,16,17,[[1103,1,1,16,17]]],[53,1,1,17,18,[[1122,1,1,17,18]]],[61,1,1,18,19,[[1161,1,1,18,19]]]],[23286,23288,23300,23505,24300,24345,24421,25262,27038,27129,27949,27990,28423,28619,28703,29181,29374,29762,30589]]],["+",[9,8,[[39,3,3,0,3,[[934,3,3,0,3]]],[40,2,2,3,5,[[960,1,1,3,4],[962,1,1,4,5]]],[41,1,1,5,6,[[980,1,1,5,6]]],[44,2,1,6,7,[[1047,2,1,6,7]]],[53,1,1,7,8,[[1122,1,1,7,8]]]],[23286,23288,23300,24345,24421,25262,27990,29762]]],["known",[3,3,[[39,1,1,0,1,[[940,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[43,1,1,2,3,[[1024,1,1,2,3]]]],[23505,24300,27129]]],["manifest",[9,9,[[41,1,1,0,1,[[980,1,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[45,3,3,3,6,[[1064,1,1,3,4],[1072,1,1,4,5],[1075,1,1,5,6]]],[47,1,1,6,7,[[1095,1,1,6,7]]],[49,1,1,7,8,[[1103,1,1,7,8]]],[61,1,1,8,9,[[1161,1,1,8,9]]]],[25262,27038,27949,28423,28619,28703,29181,29374,30589]]]]},{"k":"G5319","v":[["*",[49,43,[[40,3,3,0,3,[[960,1,1,0,1],[972,2,2,1,3]]],[42,9,8,3,11,[[997,1,1,3,4],[998,1,1,4,5],[999,1,1,5,6],[1003,1,1,6,7],[1005,1,1,7,8],[1013,1,1,8,9],[1017,3,2,9,11]]],[44,3,3,11,14,[[1046,1,1,11,12],[1048,1,1,12,13],[1061,1,1,13,14]]],[45,1,1,14,15,[[1065,1,1,14,15]]],[46,9,8,15,23,[[1079,1,1,15,16],[1080,1,1,16,17],[1081,2,2,17,19],[1082,3,2,19,21],[1084,1,1,21,22],[1088,1,1,22,23]]],[48,2,1,23,24,[[1101,2,1,23,24]]],[50,4,3,24,27,[[1107,1,1,24,25],[1109,2,1,25,26],[1110,1,1,26,27]]],[53,1,1,27,28,[[1121,1,1,27,28]]],[54,1,1,28,29,[[1125,1,1,28,29]]],[55,1,1,29,30,[[1129,1,1,29,30]]],[57,2,2,30,32,[[1141,2,2,30,32]]],[59,2,2,32,34,[[1151,1,1,32,33],[1155,1,1,33,34]]],[61,9,7,34,41,[[1159,2,1,34,35],[1160,2,2,35,37],[1161,4,3,37,40],[1162,1,1,40,41]]],[65,2,2,41,43,[[1169,1,1,41,42],[1181,1,1,42,43]]]],[24345,24885,24887,26075,26106,26141,26332,26443,26765,26899,26912,27949,28012,28362,28438,28838,28844,28869,28870,28887,28888,28928,28995,29317,29491,29521,29546,29747,29819,29895,30113,30131,30394,30469,30542,30569,30578,30581,30584,30587,30612,30764,30950]]],["+",[1,1,[[50,1,1,0,1,[[1110,1,1,0,1]]]],[29546]]],["appear",[9,7,[[46,2,2,0,2,[[1082,1,1,0,1],[1084,1,1,1,2]]],[50,2,1,2,3,[[1109,2,1,2,3]]],[59,1,1,3,4,[[1155,1,1,3,4]]],[61,3,2,4,6,[[1160,1,1,4,5],[1161,2,1,5,6]]],[65,1,1,6,7,[[1169,1,1,6,7]]]],[28887,28928,29521,30469,30578,30581,30764]]],["appeared",[3,3,[[40,2,2,0,2,[[972,2,2,0,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]]],[24885,24887,30131]]],["declared",[1,1,[[46,1,1,0,1,[[1080,1,1,0,1]]]],[28844]]],["forth",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26106]]],["manifest",[20,18,[[42,3,3,0,3,[[997,1,1,0,1],[999,1,1,1,2],[1005,1,1,2,3]]],[44,1,1,3,4,[[1061,1,1,3,4]]],[45,1,1,4,5,[[1065,1,1,4,5]]],[46,6,5,5,10,[[1079,1,1,5,6],[1081,2,2,6,8],[1082,2,1,8,9],[1088,1,1,9,10]]],[48,2,1,10,11,[[1101,2,1,10,11]]],[50,1,1,11,12,[[1107,1,1,11,12]]],[53,1,1,12,13,[[1121,1,1,12,13]]],[54,1,1,13,14,[[1125,1,1,13,14]]],[57,1,1,14,15,[[1141,1,1,14,15]]],[59,1,1,15,16,[[1151,1,1,15,16]]],[61,1,1,16,17,[[1160,1,1,16,17]]],[65,1,1,17,18,[[1181,1,1,17,18]]]],[26075,26141,26443,28362,28438,28838,28869,28870,28888,28995,29317,29491,29747,29819,30113,30394,30569,30950]]],["manifested",[9,8,[[40,1,1,0,1,[[960,1,1,0,1]]],[42,1,1,1,2,[[1013,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[55,1,1,3,4,[[1129,1,1,3,4]]],[61,5,4,4,8,[[1159,2,1,4,5],[1161,2,2,5,7],[1162,1,1,7,8]]]],[24345,26765,28012,29895,30542,30584,30587,30612]]],["shew",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26332]]],["shewed",[4,3,[[42,3,2,0,2,[[1017,3,2,0,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]]],[26899,26912,27949]]]]},{"k":"G5320","v":[["*",[3,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[42,1,1,1,2,[[1003,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]]],[24260,26338,27262]]],["evidently",[1,1,[[43,1,1,0,1,[[1027,1,1,0,1]]]],[27262]]],["openly",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[42,1,1,1,2,[[1003,1,1,1,2]]]],[24260,26338]]]]},{"k":"G5321","v":[["manifestation",[2,2,[[45,1,1,0,1,[[1073,1,1,0,1]]],[46,1,1,1,2,[[1081,1,1,1,2]]]],[28641,28861]]]]},{"k":"G5322","v":[["lanterns",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26788]]]]},{"k":"G5323","v":[["Phanuel",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[25009]]]]},{"k":"G5324","v":[["sight",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30233]]]]},{"k":"G5325","v":[["pomp",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27819]]]]},{"k":"G5326","v":[["spirit",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]]],[23623,24456]]]]},{"k":"G5327","v":[["valley",[1,1,[[41,1,1,0,1,[[975,1,1,0,1]]]],[25030]]]]},{"k":"G5328","v":[["*",[5,5,[[43,3,3,0,3,[[1024,3,3,0,3]]],[44,1,1,3,4,[[1054,1,1,3,4]]],[57,1,1,4,5,[[1143,1,1,4,5]]]],[27126,27129,27137,28172,30196]]],["Pharaoh",[3,3,[[43,2,2,0,2,[[1024,2,2,0,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]]],[27126,27129,28172]]],["Pharaoh's",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[27137,30196]]]]},{"k":"G5329","v":[["Phares",[3,2,[[39,2,1,0,1,[[929,2,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23147,25058]]]]},{"k":"G5330","v":[["*",[100,95,[[39,30,30,0,30,[[931,1,1,0,1],[933,1,1,1,2],[937,3,3,2,5],[940,4,4,5,9],[943,2,2,9,11],[944,4,4,11,15],[947,1,1,15,16],[949,1,1,16,17],[950,3,3,17,20],[951,9,9,20,29],[955,1,1,29,30]]],[40,12,11,30,41,[[958,4,3,30,33],[959,1,1,33,34],[963,3,3,34,37],[964,2,2,37,39],[966,1,1,39,40],[968,1,1,40,41]]],[41,28,27,41,68,[[977,4,4,41,45],[978,2,2,45,47],[979,5,4,47,51],[983,7,7,51,58],[984,1,1,58,59],[985,1,1,59,60],[986,2,2,60,62],[987,1,1,62,63],[988,1,1,63,64],[989,1,1,64,65],[990,2,2,65,67],[991,1,1,67,68]]],[42,20,19,68,87,[[997,1,1,68,69],[999,1,1,69,70],[1000,1,1,70,71],[1003,5,4,71,75],[1004,2,2,75,77],[1005,4,4,77,81],[1007,3,3,81,84],[1008,2,2,84,86],[1014,1,1,86,87]]],[43,9,7,87,94,[[1022,1,1,87,88],[1032,1,1,88,89],[1040,6,4,89,93],[1043,1,1,93,94]]],[49,1,1,94,95,[[1105,1,1,94,95]]]],[23199,23254,23390,23393,23413,23491,23503,23513,23527,23634,23645,23673,23678,23683,23684,23765,23871,23887,23906,23913,23920,23931,23932,23933,23941,23943,23944,23945,23947,24191,24276,24278,24284,24294,24464,24466,24468,24511,24515,24590,24686,25124,25128,25137,25140,25148,25153,25225,25231,25232,25234,25442,25443,25444,25447,25448,25449,25458,25460,25549,25554,25556,25590,25634,25671,25698,25699,25770,26068,26121,26157,26360,26373,26375,26376,26384,26394,26453,26455,26456,26480,26569,26570,26580,26599,26622,26788,27093,27447,27740,27741,27742,27743,27828,29426]]],["Pharisee",[11,10,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,5,5,1,6,[[979,1,1,1,2],[983,2,2,2,4],[990,2,2,4,6]]],[43,4,3,6,9,[[1022,1,1,6,7],[1040,2,1,7,8],[1043,1,1,8,9]]],[49,1,1,9,10,[[1105,1,1,9,10]]]],[23944,25234,25442,25443,25698,25699,27093,27740,27828,29426]]],["Pharisee's",[2,2,[[41,2,2,0,2,[[979,2,2,0,2]]]],[25231,25232]]],["Pharisees",[86,84,[[39,29,29,0,29,[[931,1,1,0,1],[933,1,1,1,2],[937,3,3,2,5],[940,4,4,5,9],[943,2,2,9,11],[944,4,4,11,15],[947,1,1,15,16],[949,1,1,16,17],[950,3,3,17,20],[951,8,8,20,28],[955,1,1,28,29]]],[40,12,11,29,40,[[958,4,3,29,32],[959,1,1,32,33],[963,3,3,33,36],[964,2,2,36,38],[966,1,1,38,39],[968,1,1,39,40]]],[41,21,21,40,61,[[977,4,4,40,44],[978,2,2,44,46],[979,2,2,46,48],[983,5,5,48,53],[984,1,1,53,54],[985,1,1,54,55],[986,2,2,55,57],[987,1,1,57,58],[988,1,1,58,59],[989,1,1,59,60],[991,1,1,60,61]]],[42,20,19,61,80,[[997,1,1,61,62],[999,1,1,62,63],[1000,1,1,63,64],[1003,5,4,64,68],[1004,2,2,68,70],[1005,4,4,70,74],[1007,3,3,74,77],[1008,2,2,77,79],[1014,1,1,79,80]]],[43,4,4,80,84,[[1032,1,1,80,81],[1040,3,3,81,84]]]],[23199,23254,23390,23393,23413,23491,23503,23513,23527,23634,23645,23673,23678,23683,23684,23765,23871,23887,23906,23913,23920,23931,23932,23933,23941,23943,23945,23947,24191,24276,24278,24284,24294,24464,24466,24468,24511,24515,24590,24686,25124,25128,25137,25140,25148,25153,25225,25231,25444,25447,25448,25449,25458,25460,25549,25554,25556,25590,25634,25671,25770,26068,26121,26157,26360,26373,26375,26376,26384,26394,26453,26455,26456,26480,26569,26570,26580,26599,26622,26788,27447,27740,27741,27742]]],["Pharisees'",[1,1,[[43,1,1,0,1,[[1040,1,1,0,1]]]],[27743]]]]},{"k":"G5331","v":[["*",[3,3,[[47,1,1,0,1,[[1095,1,1,0,1]]],[65,2,2,1,3,[[1175,1,1,1,2],[1184,1,1,2,3]]]],[29182,30861,31016]]],["sorceries",[2,2,[[65,2,2,0,2,[[1175,1,1,0,1],[1184,1,1,1,2]]]],[30861,31016]]],["witchcraft",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29182]]]]},{"k":"G5332","v":[["sorcerers",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31061]]]]},{"k":"G5333","v":[["sorcerers",[1,1,[[65,1,1,0,1,[[1188,1,1,0,1]]]],[31095]]]]},{"k":"G5334","v":[["tidings",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27695]]]]},{"k":"G5335","v":[["*",[4,4,[[43,2,2,0,2,[[1041,1,1,0,1],[1042,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[65,1,1,3,4,[[1168,1,1,3,4]]]],[27778,27815,27952,30719]]],["Professing",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27952]]],["affirmed",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27815]]],["say",[1,1,[[65,1,1,0,1,[[1168,1,1,0,1]]]],[30719]]],["saying",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27778]]]]},{"k":"G5336","v":[["*",[4,4,[[41,4,4,0,4,[[974,3,3,0,3],[985,1,1,3,4]]]],[24980,24985,24989,25533]]],["manger",[3,3,[[41,3,3,0,3,[[974,3,3,0,3]]]],[24980,24985,24989]]],["stall",[1,1,[[41,1,1,0,1,[[985,1,1,0,1]]]],[25533]]]]},{"k":"G5337","v":[["*",[4,4,[[42,2,2,0,2,[[999,1,1,0,1],[1001,1,1,1,2]]],[55,1,1,2,3,[[1130,1,1,2,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]]],[26140,26239,29916,30335]]],["evil",[3,3,[[42,2,2,0,2,[[999,1,1,0,1],[1001,1,1,1,2]]],[58,1,1,2,3,[[1148,1,1,2,3]]]],[26140,26239,30335]]],["thing",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29916]]]]},{"k":"G5338","v":[["light",[3,3,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[41,1,1,2,3,[[983,1,1,2,3]]]],[23986,24741,25438]]]]},{"k":"G5339","v":[["*",[10,9,[[43,1,1,0,1,[[1037,1,1,0,1]]],[44,3,2,1,3,[[1053,1,1,1,2],[1056,2,1,2,3]]],[45,1,1,3,4,[[1068,1,1,3,4]]],[46,3,3,4,7,[[1078,1,1,4,5],[1089,1,1,5,6],[1090,1,1,6,7]]],[60,2,2,7,9,[[1157,2,2,7,9]]]],[27655,28148,28230,28515,28823,29028,29045,30504,30505]]],["forbear",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29028]]],["spare",[4,4,[[44,1,1,0,1,[[1056,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]],[46,2,2,2,4,[[1078,1,1,2,3],[1090,1,1,3,4]]]],[28230,28515,28823,29045]]],["spared",[4,4,[[44,2,2,0,2,[[1053,1,1,0,1],[1056,1,1,1,2]]],[60,2,2,2,4,[[1157,2,2,2,4]]]],[28148,28230,30504,30505]]],["sparing",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27655]]]]},{"k":"G5340","v":[["sparingly",[2,1,[[46,2,1,0,1,[[1086,2,1,0,1]]]],[28962]]]]},{"k":"G5341","v":[["cloke",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29883]]]]},{"k":"G5342","v":[["*",[64,58,[[39,4,3,0,3,[[942,3,2,0,2],[945,1,1,2,3]]],[40,13,13,3,16,[[957,1,1,3,4],[958,1,1,4,5],[960,1,1,5,6],[962,2,2,6,8],[963,1,1,8,9],[964,1,1,9,10],[965,3,3,10,13],[968,2,2,13,15],[971,1,1,15,16]]],[41,4,4,16,20,[[977,1,1,16,17],[987,1,1,17,18],[995,1,1,18,19],[996,1,1,19,20]]],[42,17,13,20,33,[[998,2,1,20,21],[1000,1,1,21,22],[1008,1,1,22,23],[1011,7,5,23,28],[1014,1,1,28,29],[1015,1,1,29,30],[1016,2,1,30,31],[1017,2,2,31,33]]],[43,10,10,33,43,[[1019,1,1,33,34],[1021,2,2,34,36],[1022,2,2,36,38],[1029,1,1,38,39],[1031,1,1,39,40],[1042,1,1,40,41],[1044,2,2,41,43]]],[44,1,1,43,44,[[1054,1,1,43,44]]],[54,1,1,44,45,[[1128,1,1,44,45]]],[57,5,5,45,50,[[1133,1,1,45,46],[1138,1,1,46,47],[1141,1,1,47,48],[1144,1,1,48,49],[1145,1,1,49,50]]],[59,1,1,50,51,[[1151,1,1,50,51]]],[60,5,4,51,55,[[1156,4,3,51,54],[1157,1,1,54,55]]],[62,1,1,55,56,[[1164,1,1,55,56]]],[65,2,2,56,58,[[1187,2,2,56,58]]]],[23608,23615,23717,24247,24263,24331,24434,24435,24495,24522,24555,24557,24558,24688,24689,24848,25125,25611,25961,25992,26103,26189,26604,26701,26703,26704,26707,26715,26814,26864,26894,26908,26916,26951,27056,27059,27061,27075,27347,27427,27803,27870,27872,28177,29883,29966,30045,30121,30232,30254,30387,30496,30497,30500,30511,30655,31077,31079]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27870]]],["Bring",[2,2,[[39,1,1,0,1,[[942,1,1,0,1]]],[42,1,1,1,2,[[1017,1,1,1,2]]]],[23615,26908]]],["Reach",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26894]]],["bare",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26103]]],["be",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30121]]],["bear",[4,4,[[41,1,1,0,1,[[995,1,1,0,1]]],[42,3,3,1,4,[[998,1,1,1,2],[1011,2,2,2,4]]]],[25961,26103,26703,26707]]],["beareth",[2,1,[[42,2,1,0,1,[[1011,2,1,0,1]]]],[26701]]],["bearing",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30254]]],["bring",[12,12,[[39,1,1,0,1,[[945,1,1,0,1]]],[40,5,5,1,6,[[963,1,1,1,2],[964,1,1,2,3],[965,1,1,3,4],[968,1,1,4,5],[971,1,1,5,6]]],[42,1,1,6,7,[[1014,1,1,6,7]]],[54,1,1,7,8,[[1128,1,1,7,8]]],[60,1,1,8,9,[[1157,1,1,8,9]]],[62,1,1,9,10,[[1164,1,1,9,10]]],[65,2,2,10,12,[[1187,2,2,10,12]]]],[23717,24495,24522,24557,24688,24848,26814,29883,30511,30655,31077,31079]]],["bringing",[3,3,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,1,1,1,2,[[996,1,1,1,2]]],[43,1,1,2,3,[[1022,1,1,2,3]]]],[24263,25992,27075]]],["brought",[16,15,[[39,2,1,0,1,[[942,2,1,0,1]]],[40,6,6,1,7,[[957,1,1,1,2],[962,2,2,2,4],[965,2,2,4,6],[968,1,1,6,7]]],[41,1,1,7,8,[[977,1,1,7,8]]],[42,2,2,8,10,[[1000,1,1,8,9],[1015,1,1,9,10]]],[43,4,4,10,14,[[1021,2,2,10,12],[1022,1,1,12,13],[1031,1,1,13,14]]],[59,1,1,14,15,[[1151,1,1,14,15]]]],[23608,24247,24434,24435,24555,24558,24689,25125,26189,26864,27056,27059,27061,27427,30387]]],["came",[3,3,[[60,3,3,0,3,[[1156,3,3,0,3]]]],[30496,30497,30500]]],["carry",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26916]]],["driven",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27872]]],["endure",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30232]]],["endured",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28177]]],["forth",[5,5,[[40,1,1,0,1,[[960,1,1,0,1]]],[42,4,4,1,5,[[1008,1,1,1,2],[1011,3,3,2,5]]]],[24331,26604,26701,26704,26715]]],["hither",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25611]]],["laid",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27803]]],["leadeth",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27347]]],["moved",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30500]]],["on",[1,1,[[57,1,1,0,1,[[1138,1,1,0,1]]]],[30045]]],["reach",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26894]]],["rushing",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26951]]],["upholding",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29966]]]]},{"k":"G5343","v":[["*",[31,31,[[39,7,7,0,7,[[930,1,1,0,1],[931,1,1,1,2],[936,1,1,2,3],[938,1,1,3,4],[951,1,1,4,5],[952,1,1,5,6],[954,1,1,6,7]]],[40,5,5,7,12,[[961,1,1,7,8],[969,1,1,8,9],[970,2,2,9,11],[972,1,1,11,12]]],[41,3,3,12,15,[[975,1,1,12,13],[980,1,1,13,14],[993,1,1,14,15]]],[42,3,3,15,18,[[1006,3,3,15,18]]],[43,2,2,18,20,[[1024,1,1,18,19],[1044,1,1,19,20]]],[45,2,2,20,22,[[1067,1,1,20,21],[1071,1,1,21,22]]],[53,1,1,22,23,[[1124,1,1,22,23]]],[54,1,1,23,24,[[1126,1,1,23,24]]],[57,2,2,24,26,[[1143,1,1,24,25],[1144,1,1,25,26]]],[58,1,1,26,27,[[1149,1,1,26,27]]],[65,4,4,27,31,[[1175,1,1,27,28],[1178,1,1,28,29],[1182,1,1,29,30],[1186,1,1,30,31]]]],[23182,23199,23378,23440,23951,23973,24110,24378,24731,24804,24806,24881,25032,25279,25847,26486,26493,26494,27145,27885,28485,28581,29799,29849,30206,30237,30344,30846,30897,30974,31049]]],["+",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23951]]],["Flee",[2,2,[[45,1,1,0,1,[[1067,1,1,0,1]]],[54,1,1,1,2,[[1126,1,1,1,2]]]],[28485,29849]]],["away",[2,2,[[65,2,2,0,2,[[1182,1,1,0,1],[1186,1,1,1,2]]]],[30974,31049]]],["escaped",[2,2,[[57,2,2,0,2,[[1143,1,1,0,1],[1144,1,1,1,2]]]],[30206,30237]]],["fled",[9,9,[[39,2,2,0,2,[[936,1,1,0,1],[954,1,1,1,2]]],[40,4,4,2,6,[[961,1,1,2,3],[970,2,2,3,5],[972,1,1,5,6]]],[41,1,1,6,7,[[980,1,1,6,7]]],[43,1,1,7,8,[[1024,1,1,7,8]]],[65,1,1,8,9,[[1178,1,1,8,9]]]],[23378,24110,24378,24804,24806,24881,25279,27145,30897]]],["flee",[13,13,[[39,4,4,0,4,[[930,1,1,0,1],[931,1,1,1,2],[938,1,1,2,3],[952,1,1,3,4]]],[40,1,1,4,5,[[969,1,1,4,5]]],[41,2,2,5,7,[[975,1,1,5,6],[993,1,1,6,7]]],[42,1,1,7,8,[[1006,1,1,7,8]]],[43,1,1,8,9,[[1044,1,1,8,9]]],[45,1,1,9,10,[[1071,1,1,9,10]]],[53,1,1,10,11,[[1124,1,1,10,11]]],[58,1,1,11,12,[[1149,1,1,11,12]]],[65,1,1,12,13,[[1175,1,1,12,13]]]],[23182,23199,23440,23973,24731,25032,25847,26486,27885,28581,29799,30344,30846]]],["fleeth",[2,2,[[42,2,2,0,2,[[1006,2,2,0,2]]]],[26493,26494]]]]},{"k":"G5344","v":[["*",[9,8,[[43,9,8,0,8,[[1040,2,2,0,2],[1041,6,5,2,7],[1042,1,1,7,8]]]],[27758,27760,27772,27791,27793,27794,27796,27810]]],["+",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27796]]],["Felix",[8,8,[[43,8,8,0,8,[[1040,2,2,0,2],[1041,5,5,2,7],[1042,1,1,7,8]]]],[27758,27760,27772,27791,27793,27794,27796,27810]]]]},{"k":"G5345","v":[["fame",[2,2,[[39,1,1,0,1,[[937,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]]],[23405,25077]]]]},{"k":"G5346","v":[["*",[58,57,[[39,15,15,0,15,[[932,1,1,0,1],[936,1,1,1,2],[941,2,2,2,4],[942,1,1,4,5],[945,1,1,5,6],[947,1,1,6,7],[949,1,1,7,8],[953,2,2,8,10],[954,2,2,10,12],[955,3,3,12,15]]],[40,1,1,15,16,[[970,1,1,15,16]]],[41,5,5,16,21,[[979,2,2,16,18],[994,2,2,18,20],[995,1,1,20,21]]],[42,2,2,21,23,[[997,1,1,21,22],[1005,1,1,22,23]]],[43,27,26,23,49,[[1019,1,1,23,24],[1024,1,1,24,25],[1025,1,1,25,26],[1027,3,3,26,29],[1033,2,2,29,31],[1034,1,1,31,32],[1036,1,1,32,33],[1038,1,1,33,34],[1039,3,3,34,37],[1040,4,4,37,41],[1042,4,3,41,44],[1043,5,5,44,49]]],[44,1,1,49,50,[[1048,1,1,49,50]]],[45,5,5,50,55,[[1067,1,1,50,51],[1068,1,1,51,52],[1071,2,2,52,54],[1076,1,1,54,55]]],[46,1,1,55,56,[[1087,1,1,55,56]]],[57,1,1,56,57,[[1140,1,1,56,57]]]],[23216,23353,23567,23568,23605,23726,23783,23853,24029,24031,24088,24115,24140,24152,24194,24783,25235,25239,25922,25934,25938,26067,26478,26987,27118,27212,27287,27289,27290,27513,27520,27545,27620,27701,27706,27731,27732,27739,27751,27752,27769,27801,27818,27820,27824,27847,27848,27851,27855,27999,28483,28516,28582,28586,28768,28981,30097]]],["affirm",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[27999]]],["said",[47,46,[[39,14,14,0,14,[[932,1,1,0,1],[936,1,1,1,2],[941,2,2,2,4],[942,1,1,4,5],[947,1,1,5,6],[949,1,1,6,7],[953,2,2,7,9],[954,2,2,9,11],[955,3,3,11,14]]],[40,1,1,14,15,[[970,1,1,14,15]]],[41,4,4,15,19,[[979,1,1,15,16],[994,2,2,16,18],[995,1,1,18,19]]],[42,2,2,19,21,[[997,1,1,19,20],[1005,1,1,20,21]]],[43,26,25,21,46,[[1019,1,1,21,22],[1024,1,1,22,23],[1025,1,1,23,24],[1027,3,3,24,27],[1033,2,2,27,29],[1034,1,1,29,30],[1036,1,1,30,31],[1038,1,1,31,32],[1039,2,2,32,34],[1040,4,4,34,38],[1042,4,3,38,41],[1043,5,5,41,46]]]],[23216,23353,23567,23568,23605,23783,23853,24029,24031,24088,24115,24140,24152,24194,24783,25239,25922,25934,25938,26067,26478,26987,27118,27212,27287,27289,27290,27513,27520,27545,27620,27701,27731,27732,27739,27751,27752,27769,27801,27818,27820,27824,27847,27848,27851,27855]]],["saith",[5,5,[[39,1,1,0,1,[[945,1,1,0,1]]],[41,1,1,1,2,[[979,1,1,1,2]]],[43,1,1,2,3,[[1039,1,1,2,3]]],[45,1,1,3,4,[[1067,1,1,3,4]]],[57,1,1,4,5,[[1140,1,1,4,5]]]],[23726,25235,27706,28483,30097]]],["say",[5,5,[[45,4,4,0,4,[[1068,1,1,0,1],[1071,2,2,1,3],[1076,1,1,3,4]]],[46,1,1,4,5,[[1087,1,1,4,5]]]],[28516,28582,28586,28768,28981]]]]},{"k":"G5347","v":[["*",[13,13,[[43,13,13,0,13,[[1041,1,1,0,1],[1042,9,9,1,10],[1043,3,3,10,13]]]],[27796,27797,27800,27805,27808,27809,27810,27818,27819,27820,27847,27848,27855]]],["Festus",[12,12,[[43,12,12,0,12,[[1041,1,1,0,1],[1042,8,8,1,9],[1043,3,3,9,12]]]],[27796,27797,27800,27805,27808,27809,27810,27818,27820,27847,27848,27855]]],["Festus'",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27819]]]]},{"k":"G5348","v":[["*",[7,7,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]],[46,1,1,3,4,[[1087,1,1,3,4]]],[49,1,1,4,5,[[1105,1,1,4,5]]],[51,2,2,5,7,[[1112,1,1,5,6],[1114,1,1,6,7]]]],[23517,25425,28186,28985,29437,29586,29618]]],["attained",[2,2,[[44,1,1,0,1,[[1054,1,1,0,1]]],[49,1,1,1,2,[[1105,1,1,1,2]]]],[28186,29437]]],["come",[4,4,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]],[46,1,1,2,3,[[1087,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]]],[23517,25425,28985,29586]]],["prevent",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29618]]]]},{"k":"G5349","v":[["*",[6,6,[[44,1,1,0,1,[[1046,1,1,0,1]]],[45,3,3,1,4,[[1070,1,1,1,2],[1076,2,2,2,4]]],[59,2,2,4,6,[[1151,2,2,4,6]]]],[27953,28565,28771,28772,30392,30397]]],["corruptible",[5,5,[[44,1,1,0,1,[[1046,1,1,0,1]]],[45,3,3,1,4,[[1070,1,1,1,2],[1076,2,2,2,4]]],[59,1,1,4,5,[[1151,1,1,4,5]]]],[27953,28565,28771,28772,30397]]],["things",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30392]]]]},{"k":"G5350","v":[["*",[3,3,[[43,1,1,0,1,[[1021,1,1,0,1]]],[60,2,2,1,3,[[1157,2,2,1,3]]]],[27040,30516,30518]]],["speak",[2,2,[[43,1,1,0,1,[[1021,1,1,0,1]]],[60,1,1,1,2,[[1157,1,1,1,2]]]],[27040,30518]]],["speaking",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30516]]]]},{"k":"G5351","v":[["*",[8,7,[[45,3,2,0,2,[[1064,2,1,0,1],[1076,1,1,1,2]]],[46,2,2,2,4,[[1084,1,1,2,3],[1088,1,1,3,4]]],[48,1,1,4,5,[[1100,1,1,4,5]]],[64,1,1,5,6,[[1166,1,1,5,6]]],[65,1,1,6,7,[[1185,1,1,6,7]]]],[28427,28751,28918,28992,29294,30682,31019]]],["corrupt",[3,3,[[45,1,1,0,1,[[1076,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]],[65,1,1,2,3,[[1185,1,1,2,3]]]],[28751,29294,31019]]],["corrupted",[2,2,[[46,2,2,0,2,[[1084,1,1,0,1],[1088,1,1,1,2]]]],[28918,28992]]],["defile",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28427]]],["destroy",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28427]]],["themselves",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30682]]]]},{"k":"G5352","v":[["withereth",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30684]]]]},{"k":"G5353","v":[["*",[2,2,[[44,1,1,0,1,[[1055,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[28206,28685]]],["sound",[1,1,[[44,1,1,0,1,[[1055,1,1,0,1]]]],[28206]]],["sounds",[1,1,[[45,1,1,0,1,[[1075,1,1,0,1]]]],[28685]]]]},{"k":"G5354","v":[["envying",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29188]]]]},{"k":"G5355","v":[["*",[9,9,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]],[49,1,1,4,5,[[1103,1,1,4,5]]],[53,1,1,5,6,[[1124,1,1,5,6]]],[55,1,1,6,7,[[1131,1,1,6,7]]],[58,1,1,7,8,[[1149,1,1,7,8]]],[59,1,1,8,9,[[1152,1,1,8,9]]]],[24147,24836,27959,29183,29376,29792,29926,30342,30400]]],["Envyings",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29183]]],["envies",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30400]]],["envy",[7,7,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]],[44,1,1,2,3,[[1046,1,1,2,3]]],[49,1,1,3,4,[[1103,1,1,3,4]]],[53,1,1,4,5,[[1124,1,1,4,5]]],[55,1,1,5,6,[[1131,1,1,5,6]]],[58,1,1,6,7,[[1149,1,1,6,7]]]],[24147,24836,27959,29376,29792,29926,30342]]]]},{"k":"G5356","v":[["*",[9,8,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,2,2,1,3,[[1076,2,2,1,3]]],[47,1,1,3,4,[[1096,1,1,3,4]]],[50,1,1,4,5,[[1108,1,1,4,5]]],[60,4,3,5,8,[[1156,1,1,5,6],[1157,3,2,6,8]]]],[28137,28760,28768,29196,29516,30483,30512,30519]]],["+",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29516]]],["corruption",[7,7,[[44,1,1,0,1,[[1053,1,1,0,1]]],[45,2,2,1,3,[[1076,2,2,1,3]]],[47,1,1,3,4,[[1096,1,1,3,4]]],[60,3,3,4,7,[[1156,1,1,4,5],[1157,2,2,5,7]]]],[28137,28760,28768,29196,30483,30512,30519]]],["destroyed",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30512]]]]},{"k":"G5357","v":[["*",[12,12,[[65,12,12,0,12,[[1171,1,1,0,1],[1181,1,1,1,2],[1182,8,8,2,10],[1183,1,1,10,11],[1187,1,1,11,12]]]],[30787,30953,30955,30956,30957,30958,30962,30964,30966,30971,30976,31062]]],["vial",[7,7,[[65,7,7,0,7,[[1182,7,7,0,7]]]],[30956,30957,30958,30962,30964,30966,30971]]],["vials",[5,5,[[65,5,5,0,5,[[1171,1,1,0,1],[1181,1,1,1,2],[1182,1,1,2,3],[1183,1,1,3,4],[1187,1,1,4,5]]]],[30787,30953,30955,30976,31062]]]]},{"k":"G5358","v":[["men",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29900]]]]},{"k":"G5359","v":[["Philadelphia",[2,2,[[65,2,2,0,2,[[1167,1,1,0,1],[1169,1,1,1,2]]]],[30708,30753]]]]},{"k":"G5360","v":[["*",[6,5,[[44,1,1,0,1,[[1057,1,1,0,1]]],[51,1,1,1,2,[[1114,1,1,1,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]],[60,2,1,4,5,[[1156,2,1,4,5]]]],[28255,29612,30242,30396,30486]]],["brethren",[1,1,[[59,1,1,0,1,[[1151,1,1,0,1]]]],[30396]]],["kindness",[2,1,[[60,2,1,0,1,[[1156,2,1,0,1]]]],[30486]]],["love",[3,3,[[44,1,1,0,1,[[1057,1,1,0,1]]],[51,1,1,1,2,[[1114,1,1,1,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]]],[28255,29612,30242]]]]},{"k":"G5361","v":[["brethren",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30432]]]]},{"k":"G5362","v":[["husbands",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29912]]]]},{"k":"G5363","v":[["*",[2,2,[[43,1,1,0,1,[[1045,1,1,0,1]]],[55,1,1,1,2,[[1131,1,1,1,2]]]],[27901,29927]]],["+",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29927]]],["kindness",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27901]]]]},{"k":"G5364","v":[["courteously",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27858]]]]},{"k":"G5365","v":[["money",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29798]]]]},{"k":"G5366","v":[["covetous",[2,2,[[41,1,1,0,1,[[988,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[25634,29855]]]]},{"k":"G5367","v":[["selves",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29855]]]]},{"k":"G5368","v":[["*",[25,21,[[39,5,4,0,4,[[934,1,1,0,1],[938,2,1,1,2],[951,1,1,2,3],[954,1,1,3,4]]],[40,1,1,4,5,[[970,1,1,4,5]]],[41,2,2,5,7,[[992,1,1,5,6],[994,1,1,6,7]]],[42,13,10,7,17,[[1001,1,1,7,8],[1007,2,2,8,10],[1008,1,1,10,11],[1011,1,1,11,12],[1012,2,1,12,13],[1016,1,1,13,14],[1017,5,3,14,17]]],[45,1,1,17,18,[[1077,1,1,17,18]]],[55,1,1,18,19,[[1131,1,1,18,19]]],[65,2,2,19,21,[[1169,1,1,19,20],[1188,1,1,20,21]]]],[23287,23454,23924,24102,24798,25825,25911,26230,26526,26559,26605,26718,26753,26869,26913,26914,26915,28798,29938,30765,31095]]],["+",[1,1,[[42,1,1,0,1,[[1011,1,1,0,1]]]],[26718]]],["Lovest",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26915]]],["kiss",[3,3,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]]],[24102,24798,25911]]],["love",[9,9,[[39,2,2,0,2,[[934,1,1,0,1],[951,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]],[42,3,3,3,6,[[1017,3,3,3,6]]],[45,1,1,6,7,[[1077,1,1,6,7]]],[55,1,1,7,8,[[1131,1,1,7,8]]],[65,1,1,8,9,[[1169,1,1,8,9]]]],[23287,23924,25825,26913,26914,26915,28798,29938,30765]]],["loved",[3,3,[[42,3,3,0,3,[[1007,1,1,0,1],[1012,1,1,1,2],[1016,1,1,2,3]]]],[26559,26753,26869]]],["lovest",[2,2,[[42,2,2,0,2,[[1007,1,1,0,1],[1017,1,1,1,2]]]],[26526,26915]]],["loveth",[6,5,[[39,2,1,0,1,[[938,2,1,0,1]]],[42,3,3,1,4,[[1001,1,1,1,2],[1008,1,1,2,3],[1012,1,1,3,4]]],[65,1,1,4,5,[[1188,1,1,4,5]]]],[23454,26230,26605,26753,31095]]]]},{"k":"G5369","v":[["pleasures",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29857]]]]},{"k":"G5370","v":[["kiss",[7,7,[[41,2,2,0,2,[[979,1,1,0,1],[994,1,1,1,2]]],[44,1,1,2,3,[[1061,1,1,2,3]]],[45,1,1,3,4,[[1077,1,1,3,4]]],[46,1,1,4,5,[[1090,1,1,4,5]]],[51,1,1,5,6,[[1115,1,1,5,6]]],[59,1,1,6,7,[[1155,1,1,6,7]]]],[25240,25912,28352,28796,29055,29647,30479]]]]},{"k":"G5371","v":[["Philemon",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29939]]]]},{"k":"G5372","v":[["Philetus",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29844]]]]},{"k":"G5373","v":[["friendship",[1,1,[[58,1,1,0,1,[[1149,1,1,0,1]]]],[30341]]]]},{"k":"G5374","v":[["Philippians",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29457]]]]},{"k":"G5375","v":[["Philippi",[4,4,[[43,2,2,0,2,[[1033,1,1,0,1],[1037,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]]],[27495,27632,29362,29572]]]]},{"k":"G5376","v":[["*",[38,37,[[39,3,3,0,3,[[938,1,1,0,1],[942,1,1,1,2],[944,1,1,2,3]]],[40,3,3,3,6,[[959,1,1,3,4],[962,1,1,4,5],[964,1,1,5,6]]],[41,3,3,6,9,[[975,2,2,6,8],[978,1,1,8,9]]],[42,12,11,9,20,[[997,5,5,9,14],[1002,2,2,14,16],[1008,3,2,16,18],[1010,2,2,18,20]]],[43,17,17,20,37,[[1018,1,1,20,21],[1023,1,1,21,22],[1025,14,14,22,36],[1038,1,1,36,37]]]],[23420,23600,23685,24306,24424,24527,25026,25044,25160,26087,26088,26089,26090,26092,26262,26264,26601,26602,26676,26677,26936,27106,27181,27182,27188,27189,27202,27205,27206,27207,27210,27211,27213,27214,27215,27216,27672]]],["Philip",[33,32,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[959,1,1,1,2]]],[41,2,2,2,4,[[975,1,1,2,3],[978,1,1,3,4]]],[42,12,11,4,15,[[997,5,5,4,9],[1002,2,2,9,11],[1008,3,2,11,13],[1010,2,2,13,15]]],[43,17,17,15,32,[[1018,1,1,15,16],[1023,1,1,16,17],[1025,14,14,17,31],[1038,1,1,31,32]]]],[23420,24306,25026,25160,26087,26088,26089,26090,26092,26262,26264,26601,26602,26676,26677,26936,27106,27181,27182,27188,27189,27202,27205,27206,27207,27210,27211,27213,27214,27215,27216,27672]]],["Philip's",[3,3,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,1,1,2,3,[[975,1,1,2,3]]]],[23600,24424,25044]]],["Philippi",[2,2,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]]],[23685,24527]]]]},{"k":"G5377","v":[["God",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29857]]]]},{"k":"G5378","v":[["Philologus",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28351]]]]},{"k":"G5379","v":[["strife",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25888]]]]},{"k":"G5380","v":[["contentious",[1,1,[[45,1,1,0,1,[[1072,1,1,0,1]]]],[28616]]]]},{"k":"G5381","v":[["*",[2,2,[[44,1,1,0,1,[[1057,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[28258,30243]]],["hospitality",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28258]]],["strangers",[1,1,[[57,1,1,0,1,[[1145,1,1,0,1]]]],[30243]]]]},{"k":"G5382","v":[["hospitality",[3,3,[[53,1,1,0,1,[[1121,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[29733,29900,30455]]]]},{"k":"G5383","v":[["preeminence",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30667]]]]},{"k":"G5384","v":[["*",[29,27,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,15,14,1,15,[[979,2,2,1,3],[983,4,3,3,6],[984,1,1,6,7],[986,2,2,7,9],[987,3,3,9,12],[988,1,1,12,13],[993,1,1,13,14],[995,1,1,14,15]]],[42,6,6,15,21,[[999,1,1,15,16],[1007,1,1,16,17],[1011,3,3,17,20],[1015,1,1,20,21]]],[43,3,3,21,24,[[1027,1,1,21,22],[1036,1,1,22,23],[1044,1,1,23,24]]],[58,2,2,24,26,[[1147,1,1,24,25],[1149,1,1,25,26]]],[63,2,1,26,27,[[1165,2,1,26,27]]]],[23478,25201,25229,25410,25411,25413,25463,25563,25565,25594,25597,25617,25629,25842,25947,26149,26534,26712,26713,26714,26837,27283,27616,27858,30316,30341,30672]]],["+",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25597]]],["Friend",[3,3,[[41,2,2,0,2,[[983,1,1,0,1],[986,1,1,1,2]]],[58,1,1,2,3,[[1147,1,1,2,3]]]],[25410,25563,30316]]],["friend",[9,9,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,4,4,1,5,[[979,1,1,1,2],[983,3,3,2,5]]],[42,3,3,5,8,[[999,1,1,5,6],[1007,1,1,6,7],[1015,1,1,7,8]]],[58,1,1,8,9,[[1149,1,1,8,9]]]],[23478,25229,25410,25411,25413,26149,26534,26837,30341]]],["friends",[16,15,[[41,8,8,0,8,[[979,1,1,0,1],[984,1,1,1,2],[986,1,1,2,3],[987,2,2,3,5],[988,1,1,5,6],[993,1,1,6,7],[995,1,1,7,8]]],[42,3,3,8,11,[[1011,3,3,8,11]]],[43,3,3,11,14,[[1027,1,1,11,12],[1036,1,1,12,13],[1044,1,1,13,14]]],[63,2,1,14,15,[[1165,2,1,14,15]]]],[25201,25463,25565,25594,25617,25629,25842,25947,26712,26713,26714,27283,27616,27858,30672]]]]},{"k":"G5385","v":[["philosophy",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29502]]]]},{"k":"G5386","v":[["philosophers",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27541]]]]},{"k":"G5387","v":[["affectioned",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28255]]]]},{"k":"G5388","v":[["children",[1,1,[[55,1,1,0,1,[[1130,1,1,0,1]]]],[29912]]]]},{"k":"G5389","v":[["*",[3,3,[[44,1,1,0,1,[[1060,1,1,0,1]]],[46,1,1,1,2,[[1082,1,1,1,2]]],[51,1,1,2,3,[[1114,1,1,2,3]]]],[28323,28886,29614]]],["labour",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28886]]],["strived",[1,1,[[44,1,1,0,1,[[1060,1,1,0,1]]]],[28323]]],["study",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29614]]]]},{"k":"G5390","v":[["courteously",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27906]]]]},{"k":"G5391","v":[["courteous",[1,1,[[59,1,1,0,1,[[1153,1,1,0,1]]]],[30432]]]]},{"k":"G5392","v":[["*",[8,8,[[39,2,2,0,2,[[950,2,2,0,2]]],[40,2,2,2,4,[[957,1,1,2,3],[960,1,1,3,4]]],[41,1,1,4,5,[[976,1,1,4,5]]],[45,1,1,5,6,[[1070,1,1,5,6]]],[53,1,1,6,7,[[1123,1,1,6,7]]],[59,1,1,7,8,[[1152,1,1,7,8]]]],[23884,23906,24240,24362,25098,28549,29781,30414]]],["+",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23906]]],["muzzle",[2,2,[[45,1,1,0,1,[[1070,1,1,0,1]]],[53,1,1,1,2,[[1123,1,1,1,2]]]],[28549,29781]]],["peace",[2,2,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[976,1,1,1,2]]]],[24240,25098]]],["silence",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30414]]],["speechless",[1,1,[[39,1,1,0,1,[[950,1,1,0,1]]]],[23884]]],["still",[1,1,[[40,1,1,0,1,[[960,1,1,0,1]]]],[24362]]]]},{"k":"G5393","v":[["Phlegon",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28350]]]]},{"k":"G5394","v":[["fire",[2,1,[[58,2,1,0,1,[[1148,2,1,0,1]]]],[30325]]]]},{"k":"G5395","v":[["*",[7,7,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[52,1,1,2,3,[[1116,1,1,2,3]]],[57,1,1,3,4,[[1133,1,1,3,4]]],[65,3,3,4,7,[[1167,1,1,4,5],[1168,1,1,5,6],[1185,1,1,6,7]]]],[25644,27146,29657,29970,30711,30735,31029]]],["flame",[6,6,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[57,1,1,2,3,[[1133,1,1,2,3]]],[65,3,3,3,6,[[1167,1,1,3,4],[1168,1,1,4,5],[1185,1,1,5,6]]]],[25644,27146,29970,30711,30735,31029]]],["flaming",[1,1,[[52,1,1,0,1,[[1116,1,1,0,1]]]],[29657]]]]},{"k":"G5396","v":[["against",[1,1,[[63,1,1,0,1,[[1165,1,1,0,1]]]],[30668]]]]},{"k":"G5397","v":[["tattlers",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29776]]]]},{"k":"G5398","v":[["*",[3,3,[[57,3,3,0,3,[[1142,2,2,0,2],[1144,1,1,2,3]]]],[30160,30164,30233]]],["fearful",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30160]]],["terrible",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30233]]],["thing",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30164]]]]},{"k":"G5399","v":[["*",[93,90,[[39,17,16,0,16,[[929,1,1,0,1],[930,1,1,1,2],[938,4,3,2,5],[942,3,3,5,8],[945,2,2,8,10],[949,2,2,10,12],[953,1,1,12,13],[955,1,1,13,14],[956,2,2,14,16]]],[40,12,12,16,28,[[960,1,1,16,17],[961,3,3,17,20],[962,2,2,20,22],[965,1,1,22,23],[966,1,1,23,24],[967,2,2,24,26],[968,1,1,26,27],[972,1,1,27,28]]],[41,23,21,28,49,[[973,3,3,28,31],[974,2,2,31,33],[977,1,1,33,34],[980,3,3,34,37],[981,2,2,37,39],[984,6,4,39,43],[990,2,2,43,45],[991,1,1,45,46],[992,1,1,46,47],[994,1,1,47,48],[995,1,1,48,49]]],[42,5,5,49,54,[[1002,2,2,49,51],[1005,1,1,51,52],[1008,1,1,52,53],[1015,1,1,53,54]]],[43,13,13,54,67,[[1022,1,1,54,55],[1026,1,1,55,56],[1027,3,3,56,59],[1030,2,2,59,61],[1033,1,1,61,62],[1035,1,1,62,63],[1039,1,1,63,64],[1044,3,3,64,67]]],[44,3,3,67,70,[[1056,1,1,67,68],[1058,2,2,68,70]]],[46,2,2,70,72,[[1088,1,1,70,71],[1089,1,1,71,72]]],[47,2,2,72,74,[[1092,1,1,72,73],[1094,1,1,73,74]]],[48,1,1,74,75,[[1101,1,1,74,75]]],[50,1,1,75,76,[[1109,1,1,75,76]]],[57,4,4,76,80,[[1136,1,1,76,77],[1143,2,2,77,79],[1145,1,1,79,80]]],[59,3,3,80,83,[[1152,1,1,80,81],[1153,2,2,81,83]]],[61,1,1,83,84,[[1162,1,1,83,84]]],[65,6,6,84,90,[[1167,1,1,84,85],[1168,1,1,85,86],[1177,1,1,86,87],[1180,1,1,87,88],[1181,1,1,88,89],[1185,1,1,89,90]]]],[23164,23191,23443,23445,23448,23602,23624,23627,23706,23707,23852,23872,24033,24183,24200,24205,24364,24379,24397,24400,24427,24457,24570,24620,24658,24672,24685,24881,24906,24923,24943,24982,24983,25117,25270,25280,25295,25335,25346,25463,25464,25466,25491,25690,25692,25752,25798,25866,25975,26276,26277,26462,26595,26833,27085,27242,27261,27281,27294,27378,27388,27521,27566,27733,27872,27879,27884,28229,28269,28270,28992,29042,29093,29142,29337,29539,30015,30195,30199,30247,30416,30430,30438,30621,30714,30727,30890,30933,30950,31022]]],["+",[15,15,[[39,4,4,0,4,[[942,1,1,0,1],[945,2,2,1,3],[956,1,1,3,4]]],[40,2,2,4,6,[[961,1,1,4,5],[962,1,1,5,6]]],[41,2,2,6,8,[[974,1,1,6,7],[984,1,1,7,8]]],[42,2,2,8,10,[[1002,1,1,8,9],[1015,1,1,9,10]]],[43,2,2,10,12,[[1026,1,1,10,11],[1035,1,1,11,12]]],[57,1,1,12,13,[[1143,1,1,12,13]]],[59,2,2,13,15,[[1153,2,2,13,15]]]],[23624,23706,23707,24205,24400,24457,24982,25463,26277,26833,27242,27566,30195,30430,30438]]],["Fear",[18,17,[[39,3,3,0,3,[[938,2,2,0,2],[956,1,1,2,3]]],[41,9,8,3,11,[[973,2,2,3,5],[974,1,1,5,6],[977,1,1,6,7],[980,1,1,7,8],[984,4,3,8,11]]],[42,1,1,11,12,[[1008,1,1,11,12]]],[43,1,1,12,13,[[1044,1,1,12,13]]],[59,1,1,13,14,[[1152,1,1,13,14]]],[65,3,3,14,17,[[1167,1,1,14,15],[1168,1,1,15,16],[1180,1,1,16,17]]]],[23443,23448,24200,24906,24923,24983,25117,25295,25464,25466,25491,26595,27879,30416,30714,30727,30933]]],["afraid",[14,14,[[39,3,3,0,3,[[930,1,1,0,1],[942,1,1,1,2],[953,1,1,2,3]]],[40,4,4,3,7,[[961,1,1,3,4],[965,1,1,4,5],[966,1,1,5,6],[972,1,1,6,7]]],[41,2,2,7,9,[[980,2,2,7,9]]],[42,1,1,9,10,[[1002,1,1,9,10]]],[43,1,1,10,11,[[1039,1,1,10,11]]],[44,2,2,11,13,[[1058,2,2,11,13]]],[47,1,1,13,14,[[1094,1,1,13,14]]]],[23191,23627,24033,24379,24570,24620,24881,25270,25280,26276,27733,28269,28270,29142]]],["fear",[17,16,[[39,4,3,0,3,[[929,1,1,0,1],[938,2,1,1,2],[949,1,1,2,3]]],[41,4,4,3,7,[[973,1,1,3,4],[984,1,1,4,5],[990,1,1,5,6],[995,1,1,6,7]]],[43,1,1,7,8,[[1030,1,1,7,8]]],[44,1,1,8,9,[[1056,1,1,8,9]]],[46,2,2,9,11,[[1088,1,1,9,10],[1089,1,1,10,11]]],[57,2,2,11,13,[[1136,1,1,11,12],[1145,1,1,12,13]]],[65,3,3,13,16,[[1177,1,1,13,14],[1181,1,1,14,15],[1185,1,1,15,16]]]],[23164,23445,23852,24943,25464,25692,25975,27378,28229,28992,29042,30015,30247,30890,30950,31022]]],["feared",[18,18,[[39,3,3,0,3,[[942,1,1,0,1],[949,1,1,1,2],[955,1,1,2,3]]],[40,5,5,3,8,[[960,1,1,3,4],[962,1,1,4,5],[967,2,2,5,7],[968,1,1,7,8]]],[41,6,6,8,14,[[981,2,2,8,10],[990,1,1,10,11],[991,1,1,11,12],[992,1,1,12,13],[994,1,1,13,14]]],[42,1,1,14,15,[[1005,1,1,14,15]]],[43,3,3,15,18,[[1022,1,1,15,16],[1027,1,1,16,17],[1033,1,1,17,18]]]],[23602,23872,24183,24364,24427,24658,24672,24685,25335,25346,25690,25752,25798,25866,26462,27085,27261,27521]]],["feareth",[4,4,[[43,3,3,0,3,[[1027,2,2,0,2],[1030,1,1,2,3]]],[61,1,1,3,4,[[1162,1,1,3,4]]]],[27281,27294,27388,30621]]],["fearing",[6,6,[[40,1,1,0,1,[[961,1,1,0,1]]],[43,2,2,1,3,[[1044,2,2,1,3]]],[47,1,1,3,4,[[1092,1,1,3,4]]],[50,1,1,4,5,[[1109,1,1,4,5]]],[57,1,1,5,6,[[1143,1,1,5,6]]]],[24397,27872,27884,29093,29539,30199]]],["reverence",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29337]]]]},{"k":"G5400","v":[["sights",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25837]]]]},{"k":"G5401","v":[["*",[47,44,[[39,3,3,0,3,[[942,1,1,0,1],[956,2,2,1,3]]],[40,1,1,3,4,[[960,1,1,3,4]]],[41,7,7,4,11,[[973,2,2,4,6],[974,1,1,6,7],[977,1,1,7,8],[979,1,1,8,9],[980,1,1,9,10],[993,1,1,10,11]]],[42,3,3,11,14,[[1003,1,1,11,12],[1015,1,1,12,13],[1016,1,1,13,14]]],[43,5,5,14,19,[[1019,1,1,14,15],[1022,2,2,15,17],[1026,1,1,17,18],[1036,1,1,18,19]]],[44,5,4,19,23,[[1048,1,1,19,20],[1053,1,1,20,21],[1058,3,2,21,23]]],[45,1,1,23,24,[[1063,1,1,23,24]]],[46,5,5,24,29,[[1082,1,1,24,25],[1084,4,4,25,29]]],[48,2,2,29,31,[[1101,1,1,29,30],[1102,1,1,30,31]]],[49,1,1,31,32,[[1104,1,1,31,32]]],[53,1,1,32,33,[[1123,1,1,32,33]]],[57,1,1,33,34,[[1134,1,1,33,34]]],[59,5,5,34,39,[[1151,1,1,34,35],[1152,1,1,35,36],[1153,3,3,36,39]]],[61,3,1,39,40,[[1162,3,1,39,40]]],[64,1,1,40,41,[[1166,1,1,40,41]]],[65,3,3,41,44,[[1177,1,1,41,42],[1184,2,2,42,44]]]],[23623,24199,24203,24364,24905,24958,24982,25133,25211,25282,25852,26341,26863,26886,26992,27064,27070,27247,27602,28009,28131,28269,28273,28397,28888,28917,28921,28927,28931,29325,29342,29403,29783,29992,30391,30417,30426,30438,30439,30621,30695,30883,31003,31008]]],["+",[4,4,[[40,1,1,0,1,[[960,1,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[979,1,1,2,3]]],[53,1,1,3,4,[[1123,1,1,3,4]]]],[24364,24982,25211,29783]]],["fear",[39,36,[[39,3,3,0,3,[[942,1,1,0,1],[956,2,2,1,3]]],[41,5,5,3,8,[[973,2,2,3,5],[977,1,1,5,6],[980,1,1,6,7],[993,1,1,7,8]]],[42,3,3,8,11,[[1003,1,1,8,9],[1015,1,1,9,10],[1016,1,1,10,11]]],[43,5,5,11,16,[[1019,1,1,11,12],[1022,2,2,12,14],[1026,1,1,14,15],[1036,1,1,15,16]]],[44,4,3,16,19,[[1048,1,1,16,17],[1053,1,1,17,18],[1058,2,1,18,19]]],[45,1,1,19,20,[[1063,1,1,19,20]]],[46,3,3,20,23,[[1084,3,3,20,23]]],[48,2,2,23,25,[[1101,1,1,23,24],[1102,1,1,24,25]]],[49,1,1,25,26,[[1104,1,1,25,26]]],[57,1,1,26,27,[[1134,1,1,26,27]]],[59,4,4,27,31,[[1151,1,1,27,28],[1152,1,1,28,29],[1153,2,2,29,31]]],[61,3,1,31,32,[[1162,3,1,31,32]]],[64,1,1,32,33,[[1166,1,1,32,33]]],[65,3,3,33,36,[[1177,1,1,33,34],[1184,2,2,34,36]]]],[23623,24199,24203,24905,24958,25133,25282,25852,26341,26863,26886,26992,27064,27070,27247,27602,28009,28131,28273,28397,28917,28927,28931,29325,29342,29403,29992,30391,30417,30426,30439,30621,30695,30883,31003,31008]]],["fears",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28921]]],["terror",[3,3,[[44,1,1,0,1,[[1058,1,1,0,1]]],[46,1,1,1,2,[[1082,1,1,1,2]]],[59,1,1,2,3,[[1153,1,1,2,3]]]],[28269,28888,30438]]]]},{"k":"G5402","v":[["Phebe",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28337]]]]},{"k":"G5403","v":[["*",[3,3,[[43,3,3,0,3,[[1028,1,1,0,1],[1032,1,1,1,2],[1038,1,1,2,3]]]],[27326,27445,27666]]],["Phenice",[2,2,[[43,2,2,0,2,[[1028,1,1,0,1],[1032,1,1,1,2]]]],[27326,27445]]],["Phenicia",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27666]]]]},{"k":"G5404","v":[["*",[2,2,[[42,1,1,0,1,[[1008,1,1,0,1]]],[65,1,1,1,2,[[1173,1,1,1,2]]]],[26593,30819]]],["palms",[1,1,[[65,1,1,0,1,[[1173,1,1,0,1]]]],[30819]]],["trees",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26593]]]]},{"k":"G5405","v":[["Phenice",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27867]]]]},{"k":"G5406","v":[["*",[7,7,[[39,1,1,0,1,[[950,1,1,0,1]]],[43,3,3,1,4,[[1020,1,1,1,2],[1024,1,1,2,3],[1045,1,1,3,4]]],[59,1,1,4,5,[[1154,1,1,4,5]]],[65,2,2,5,7,[[1187,1,1,5,6],[1188,1,1,6,7]]]],[23879,27010,27168,27903,30461,31061,31095]]],["murderer",[3,3,[[43,2,2,0,2,[[1020,1,1,0,1],[1045,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[27010,27903,30461]]],["murderers",[4,4,[[39,1,1,0,1,[[950,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[65,2,2,2,4,[[1187,1,1,2,3],[1188,1,1,3,4]]]],[23879,27168,31061,31095]]]]},{"k":"G5407","v":[["*",[12,10,[[39,5,4,0,4,[[933,2,1,0,1],[947,1,1,1,2],[951,2,2,2,4]]],[40,1,1,4,5,[[966,1,1,4,5]]],[41,1,1,5,6,[[990,1,1,5,6]]],[44,1,1,6,7,[[1058,1,1,6,7]]],[58,4,3,7,10,[[1147,2,1,7,8],[1149,1,1,8,9],[1150,1,1,9,10]]]],[23255,23780,23949,23953,24607,25708,28275,30304,30339,30360]]],["+",[1,1,[[39,1,1,0,1,[[947,1,1,0,1]]]],[23780]]],["kill",[8,6,[[39,2,1,0,1,[[933,2,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[44,1,1,3,4,[[1058,1,1,3,4]]],[58,3,2,4,6,[[1147,2,1,4,5],[1149,1,1,5,6]]]],[23255,24607,25708,28275,30304,30339]]],["killed",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[23949,30360]]],["slew",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23953]]]]},{"k":"G5408","v":[["*",[10,10,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,2,2,1,3,[[963,1,1,1,2],[971,1,1,2,3]]],[41,2,2,3,5,[[995,2,2,3,5]]],[43,1,1,5,6,[[1026,1,1,5,6]]],[44,1,1,6,7,[[1046,1,1,6,7]]],[47,1,1,7,8,[[1095,1,1,7,8]]],[57,1,1,8,9,[[1143,1,1,8,9]]],[65,1,1,9,10,[[1175,1,1,9,10]]]],[23652,24484,24833,25954,25960,27217,27959,29183,30209,30861]]],["murder",[4,4,[[40,1,1,0,1,[[971,1,1,0,1]]],[41,2,2,1,3,[[995,2,2,1,3]]],[44,1,1,3,4,[[1046,1,1,3,4]]]],[24833,25954,25960,27959]]],["murders",[4,4,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]],[65,1,1,3,4,[[1175,1,1,3,4]]]],[23652,24484,29183,30861]]],["slaughter",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27217]]],["the",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30209]]]]},{"k":"G5409","v":[["*",[6,5,[[39,1,1,0,1,[[939,1,1,0,1]]],[42,1,1,1,2,[[1015,1,1,1,2]]],[44,1,1,2,3,[[1058,1,1,2,3]]],[45,2,1,3,4,[[1076,2,1,3,4]]],[58,1,1,4,5,[[1147,1,1,4,5]]]],[23467,26830,28270,28767,30296]]],["bear",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28767]]],["beareth",[1,1,[[44,1,1,0,1,[[1058,1,1,0,1]]]],[28270]]],["borne",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28767]]],["wear",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23467]]],["weareth",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30296]]],["wearing",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26830]]]]},{"k":"G5410","v":[["forum",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27914]]]]},{"k":"G5411","v":[["tribute",[5,4,[[41,2,2,0,2,[[992,1,1,0,1],[995,1,1,1,2]]],[44,3,2,2,4,[[1058,3,2,2,4]]]],[25801,25937,28272,28273]]]]},{"k":"G5412","v":[["*",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[983,1,1,1,2]]]],[23487,25451]]],["lade",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25451]]],["laden",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23487]]]]},{"k":"G5413","v":[["*",[5,4,[[39,2,2,0,2,[[939,1,1,0,1],[951,1,1,1,2]]],[41,2,1,2,3,[[983,2,1,2,3]]],[47,1,1,3,4,[[1096,1,1,3,4]]]],[23489,23922,25451,29193]]],["burden",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[47,1,1,1,2,[[1096,1,1,1,2]]]],[23489,29193]]],["burdens",[3,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,2,1,1,2,[[983,2,1,1,2]]]],[23922,25451]]]]},{"k":"G5414","v":[["lading",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27865]]]]},{"k":"G5415","v":[["Fortunatus",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28793]]]]},{"k":"G5416","v":[["scourge",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26110]]]]},{"k":"G5417","v":[["scourged",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,1,1,1,2,[[971,1,1,1,2]]]],[24155,24841]]]]},{"k":"G5418","v":[["*",[4,4,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[986,1,1,2,3]]],[48,1,1,3,4,[[1098,1,1,3,4]]]],[23859,24674,25576,29243]]],["+",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]]],[23859,24674]]],["hedges",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25576]]],["partition",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29243]]]]},{"k":"G5419","v":[["Declare",[2,2,[[39,2,2,0,2,[[941,1,1,0,1],[943,1,1,1,2]]]],[23575,23648]]]]},{"k":"G5420","v":[["stopped",[2,2,[[44,1,1,0,1,[[1048,1,1,0,1]]],[57,1,1,1,2,[[1143,1,1,1,2]]]],[28010,30205]]]]},{"k":"G5421","v":[["*",[7,5,[[41,1,1,0,1,[[986,1,1,0,1]]],[42,2,2,1,3,[[1000,2,2,1,3]]],[65,4,2,3,5,[[1175,4,2,3,5]]]],[25558,26167,26168,30841,30842]]],["pit",[5,3,[[41,1,1,0,1,[[986,1,1,0,1]]],[65,4,2,1,3,[[1175,4,2,1,3]]]],[25558,30841,30842]]],["well",[2,2,[[42,2,2,0,2,[[1000,2,2,0,2]]]],[26167,26168]]]]},{"k":"G5422","v":[["deceiveth",[1,1,[[47,1,1,0,1,[[1096,1,1,0,1]]]],[29191]]]]},{"k":"G5423","v":[["deceivers",[1,1,[[55,1,1,0,1,[[1129,1,1,0,1]]]],[29902]]]]},{"k":"G5424","v":[["understanding",[2,1,[[45,2,1,0,1,[[1075,2,1,0,1]]]],[28698]]]]},{"k":"G5425","v":[["tremble",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30312]]]]},{"k":"G5426","v":[["*",[29,21,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]],[43,1,1,2,3,[[1045,1,1,2,3]]],[44,10,5,3,8,[[1053,1,1,3,4],[1057,4,2,4,6],[1059,4,1,6,7],[1060,1,1,7,8]]],[45,2,2,8,10,[[1065,1,1,8,9],[1074,1,1,9,10]]],[46,1,1,10,11,[[1090,1,1,10,11]]],[47,1,1,11,12,[[1095,1,1,11,12]]],[49,11,8,12,20,[[1103,1,1,12,13],[1104,3,2,13,15],[1105,4,3,15,18],[1106,3,2,18,20]]],[50,1,1,20,21,[[1109,1,1,20,21]]]],[23695,24533,27921,28121,28248,28261,28286,28308,28439,28676,29054,29172,29368,29393,29396,29436,29437,29440,29444,29452,29519]]],["+",[9,8,[[44,2,2,0,2,[[1059,1,1,0,1],[1060,1,1,1,2]]],[46,1,1,2,3,[[1090,1,1,2,3]]],[47,1,1,3,4,[[1095,1,1,3,4]]],[49,5,4,4,8,[[1104,2,2,4,6],[1105,2,1,6,7],[1106,1,1,7,8]]]],[28286,28308,29054,29172,29393,29396,29436,29444]]],["Mind",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28261]]],["care",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29452]]],["careful",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29452]]],["mind",[5,5,[[44,2,2,0,2,[[1053,1,1,0,1],[1057,1,1,1,2]]],[49,3,3,2,5,[[1104,1,1,2,3],[1105,2,2,3,5]]]],[28121,28261,29393,29437,29440]]],["on",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29519]]],["regard",[1,1,[[44,1,1,0,1,[[1059,1,1,0,1]]]],[28286]]],["regardeth",[2,1,[[44,2,1,0,1,[[1059,2,1,0,1]]]],[28286]]],["savourest",[2,2,[[39,1,1,0,1,[[944,1,1,0,1]]],[40,1,1,1,2,[[964,1,1,1,2]]]],[23695,24533]]],["think",[4,3,[[44,2,1,0,1,[[1057,2,1,0,1]]],[45,1,1,1,2,[[1065,1,1,1,2]]],[49,1,1,2,3,[[1103,1,1,2,3]]]],[28248,28439,29368]]],["thinkest",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27921]]],["understood",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28676]]]]},{"k":"G5427","v":[["*",[4,3,[[44,4,3,0,3,[[1053,4,3,0,3]]]],[28122,28123,28143]]],["mind",[2,2,[[44,2,2,0,2,[[1053,2,2,0,2]]]],[28123,28143]]],["minded",[2,1,[[44,2,1,0,1,[[1053,2,1,0,1]]]],[28122]]]]},{"k":"G5428","v":[["*",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]]],[24910,29214]]],["prudence",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29214]]],["wisdom",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24910]]]]},{"k":"G5429","v":[["*",[14,14,[[39,7,7,0,7,[[935,1,1,0,1],[938,1,1,1,2],[952,1,1,2,3],[953,4,4,3,7]]],[41,2,2,7,9,[[984,1,1,7,8],[988,1,1,8,9]]],[44,2,2,9,11,[[1056,1,1,9,10],[1057,1,1,10,11]]],[45,2,2,11,13,[[1065,1,1,11,12],[1071,1,1,12,13]]],[46,1,1,13,14,[[1088,1,1,13,14]]]],[23340,23433,24002,24010,24012,24016,24017,25501,25628,28234,28261,28443,28582,29008]]],["men",[1,1,[[45,1,1,0,1,[[1071,1,1,0,1]]]],[28582]]],["wise",[12,12,[[39,7,7,0,7,[[935,1,1,0,1],[938,1,1,1,2],[952,1,1,2,3],[953,4,4,3,7]]],[41,1,1,7,8,[[984,1,1,7,8]]],[44,2,2,8,10,[[1056,1,1,8,9],[1057,1,1,9,10]]],[45,1,1,10,11,[[1065,1,1,10,11]]],[46,1,1,11,12,[[1088,1,1,11,12]]]],[23340,23433,24002,24010,24012,24016,24017,25501,28234,28261,28443,29008]]],["wiser",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25628]]]]},{"k":"G5430","v":[["wisely",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25628]]]]},{"k":"G5431","v":[["careful",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29931]]]]},{"k":"G5432","v":[["*",[4,4,[[46,1,1,0,1,[[1088,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]],[49,1,1,2,3,[[1106,1,1,2,3]]],[59,1,1,3,4,[[1151,1,1,3,4]]]],[29021,29125,29449,30379]]],["+",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29021]]],["keep",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29449]]],["kept",[2,2,[[47,1,1,0,1,[[1093,1,1,0,1]]],[59,1,1,1,2,[[1151,1,1,1,2]]]],[29125,30379]]]]},{"k":"G5433","v":[["rage",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27047]]]]},{"k":"G5434","v":[["sticks",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27902]]]]},{"k":"G5435","v":[["Phrygia",[3,3,[[43,3,3,0,3,[[1019,1,1,0,1],[1033,1,1,1,2],[1035,1,1,2,3]]]],[26959,27489,27580]]]]},{"k":"G5436","v":[["Phygellus",[1,1,[[54,1,1,0,1,[[1125,1,1,0,1]]]],[29824]]]]},{"k":"G5437","v":[["flight",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23977,24735]]]]},{"k":"G5438","v":[["*",[47,45,[[39,10,10,0,10,[[933,1,1,0,1],[942,3,3,1,4],[946,1,1,4,5],[952,1,1,5,6],[953,4,4,6,10]]],[40,3,3,10,13,[[962,3,3,10,13]]],[41,9,8,13,21,[[974,1,1,13,14],[975,1,1,14,15],[984,3,2,15,17],[993,1,1,17,18],[994,1,1,18,19],[995,2,2,19,21]]],[42,1,1,21,22,[[999,1,1,21,22]]],[43,16,16,22,38,[[1022,3,3,22,25],[1025,1,1,25,26],[1029,5,5,26,31],[1033,5,5,31,36],[1039,1,1,36,37],[1043,1,1,37,38]]],[46,2,2,38,40,[[1083,1,1,38,39],[1088,1,1,39,40]]],[57,1,1,40,41,[[1143,1,1,40,41]]],[59,1,1,41,42,[[1153,1,1,41,42]]],[65,4,3,42,45,[[1168,1,1,42,43],[1184,2,1,43,44],[1186,1,1,44,45]]]],[23259,23600,23607,23622,23757,24000,24044,24047,24051,24052,24424,24434,24455,24981,25045,25497,25517,25838,25897,25954,25960,26144,27078,27081,27084,27179,27341,27342,27343,27347,27354,27506,27507,27510,27520,27523,27708,27833,28903,29012,30208,30443,30727,30995,31045]]],["cage",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30995]]],["hold",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30995]]],["imprisonment",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30208]]],["imprisonments",[1,1,[[46,1,1,0,1,[[1083,1,1,0,1]]]],[28903]]],["prison",[33,33,[[39,8,8,0,8,[[933,1,1,0,1],[942,2,2,1,3],[946,1,1,3,4],[953,4,4,4,8]]],[40,2,2,8,10,[[962,2,2,8,10]]],[41,5,5,10,15,[[975,1,1,10,11],[984,1,1,11,12],[994,1,1,12,13],[995,2,2,13,15]]],[42,1,1,15,16,[[999,1,1,15,16]]],[43,14,14,16,30,[[1022,3,3,16,19],[1025,1,1,19,20],[1029,4,4,20,24],[1033,5,5,24,29],[1043,1,1,29,30]]],[59,1,1,30,31,[[1153,1,1,30,31]]],[65,2,2,31,33,[[1168,1,1,31,32],[1186,1,1,32,33]]]],[23259,23600,23607,23757,24044,24047,24051,24052,24424,24434,25045,25517,25897,25954,25960,26144,27078,27081,27084,27179,27341,27342,27343,27354,27506,27507,27510,27520,27523,27833,30443,30727,31045]]],["prisons",[3,3,[[41,1,1,0,1,[[993,1,1,0,1]]],[43,1,1,1,2,[[1039,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]]],[25838,27708,29012]]],["ward",[1,1,[[43,1,1,0,1,[[1029,1,1,0,1]]]],[27347]]],["watch",[6,5,[[39,2,2,0,2,[[942,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[41,3,2,3,5,[[974,1,1,3,4],[984,2,1,4,5]]]],[23622,24000,24455,24981,25497]]]]},{"k":"G5439","v":[["+",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27723]]]]},{"k":"G5440","v":[["phylacteries",[1,1,[[39,1,1,0,1,[[951,1,1,0,1]]]],[23923]]]]},{"k":"G5441","v":[["keepers",[3,3,[[43,3,3,0,3,[[1022,1,1,0,1],[1029,2,2,1,3]]]],[27082,27343,27356]]]]},{"k":"G5442","v":[["*",[30,30,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[41,6,6,2,8,[[974,1,1,2,3],[980,1,1,3,4],[983,2,2,4,6],[984,1,1,6,7],[990,1,1,7,8]]],[42,2,2,8,10,[[1008,1,1,8,9],[1013,1,1,9,10]]],[43,8,8,10,18,[[1024,1,1,10,11],[1029,1,1,11,12],[1033,1,1,12,13],[1038,2,2,13,15],[1039,1,1,15,16],[1040,1,1,16,17],[1045,1,1,17,18]]],[44,1,1,18,19,[[1047,1,1,18,19]]],[47,1,1,19,20,[[1096,1,1,19,20]]],[52,1,1,20,21,[[1118,1,1,20,21]]],[53,2,2,21,23,[[1123,1,1,21,22],[1124,1,1,22,23]]],[54,3,3,23,26,[[1125,2,2,23,25],[1128,1,1,25,26]]],[60,2,2,26,28,[[1157,1,1,26,27],[1158,1,1,27,28]]],[61,1,1,28,29,[[1163,1,1,28,29]]],[64,1,1,29,30,[[1166,1,1,29,30]]]],[23782,24608,24981,25274,25426,25433,25474,25709,26605,26771,27169,27341,27487,27688,27689,27724,27769,27915,27988,29201,29681,29784,29808,29821,29823,29885,30505,30539,30645,30696]]],["+",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29885]]],["beware",[2,2,[[41,1,1,0,1,[[984,1,1,0,1]]],[60,1,1,1,2,[[1158,1,1,1,2]]]],[25474,30539]]],["keep",[13,13,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,1,1,1,2,[[1008,1,1,1,2]]],[43,3,3,2,5,[[1029,1,1,2,3],[1033,1,1,3,4],[1038,1,1,4,5]]],[44,1,1,5,6,[[1047,1,1,5,6]]],[47,1,1,6,7,[[1096,1,1,6,7]]],[52,1,1,7,8,[[1118,1,1,7,8]]],[53,1,1,8,9,[[1124,1,1,8,9]]],[54,2,2,9,11,[[1125,2,2,9,11]]],[61,1,1,11,12,[[1163,1,1,11,12]]],[64,1,1,12,13,[[1166,1,1,12,13]]]],[25433,26605,27341,27487,27689,27988,29201,29681,29808,29821,29823,30645,30696]]],["keepest",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27688]]],["keepeth",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25426]]],["keeping",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24981]]],["kept",[8,8,[[39,1,1,0,1,[[947,1,1,0,1]]],[41,2,2,1,3,[[980,1,1,1,2],[990,1,1,2,3]]],[42,1,1,3,4,[[1013,1,1,3,4]]],[43,4,4,4,8,[[1024,1,1,4,5],[1039,1,1,5,6],[1040,1,1,6,7],[1045,1,1,7,8]]]],[23782,25274,25709,26771,27169,27724,27769,27915]]],["observe",[1,1,[[53,1,1,0,1,[[1123,1,1,0,1]]]],[29784]]],["observed",[1,1,[[40,1,1,0,1,[[966,1,1,0,1]]]],[24608]]],["saved",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30505]]]]},{"k":"G5443","v":[["*",[31,23,[[39,2,2,0,2,[[947,1,1,0,1],[952,1,1,1,2]]],[41,2,2,2,4,[[974,1,1,2,3],[994,1,1,3,4]]],[43,1,1,4,5,[[1030,1,1,4,5]]],[44,1,1,5,6,[[1056,1,1,5,6]]],[49,1,1,6,7,[[1105,1,1,6,7]]],[57,2,2,7,9,[[1139,2,2,7,9]]],[58,1,1,9,10,[[1146,1,1,9,10]]],[65,21,13,10,23,[[1167,1,1,10,11],[1171,2,2,11,13],[1173,14,6,13,19],[1177,1,1,19,20],[1179,1,1,20,21],[1180,1,1,21,22],[1187,1,1,22,23]]]],[23790,23987,25009,25894,27383,28210,29426,30077,30078,30267,30704,30784,30788,30814,30815,30816,30817,30818,30819,30881,30915,30932,31065]]],["kindred",[2,2,[[65,2,2,0,2,[[1171,1,1,0,1],[1180,1,1,1,2]]]],[30788,30932]]],["kindreds",[4,4,[[65,4,4,0,4,[[1167,1,1,0,1],[1173,1,1,1,2],[1177,1,1,2,3],[1179,1,1,3,4]]]],[30704,30819,30881,30915]]],["tribe",[19,11,[[41,1,1,0,1,[[974,1,1,0,1]]],[43,1,1,1,2,[[1030,1,1,1,2]]],[44,1,1,2,3,[[1056,1,1,2,3]]],[49,1,1,3,4,[[1105,1,1,3,4]]],[57,2,2,4,6,[[1139,2,2,4,6]]],[65,13,5,6,11,[[1171,1,1,6,7],[1173,12,4,7,11]]]],[25009,27383,28210,29426,30077,30078,30784,30815,30816,30817,30818]]],["tribes",[6,6,[[39,2,2,0,2,[[947,1,1,0,1],[952,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[58,1,1,3,4,[[1146,1,1,3,4]]],[65,2,2,4,6,[[1173,1,1,4,5],[1187,1,1,5,6]]]],[23790,23987,25894,30267,30814,31065]]]]},{"k":"G5444","v":[["leaves",[6,5,[[39,2,2,0,2,[[949,1,1,0,1],[952,1,1,1,2]]],[40,3,2,2,4,[[967,2,1,2,3],[969,1,1,3,4]]],[65,1,1,4,5,[[1188,1,1,4,5]]]],[23845,23989,24653,24745,31082]]]]},{"k":"G5445","v":[["lump",[5,5,[[44,2,2,0,2,[[1054,1,1,0,1],[1056,1,1,1,2]]],[45,2,2,2,4,[[1066,2,2,2,4]]],[47,1,1,4,5,[[1095,1,1,4,5]]]],[28176,28225,28460,28461,29171]]]]},{"k":"G5446","v":[["natural",[3,3,[[44,2,2,0,2,[[1046,2,2,0,2]]],[60,1,1,2,3,[[1157,1,1,2,3]]]],[27956,27957,30512]]]]},{"k":"G5447","v":[["naturally",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30682]]]]},{"k":"G5448","v":[["up",[7,7,[[45,6,6,0,6,[[1065,3,3,0,3],[1066,1,1,3,4],[1069,1,1,4,5],[1074,1,1,5,6]]],[50,1,1,6,7,[[1108,1,1,6,7]]]],[28439,28451,28452,28456,28528,28669,29512]]]]},{"k":"G5449","v":[["*",[14,11,[[44,7,5,0,5,[[1046,1,1,0,1],[1047,2,2,1,3],[1056,4,2,3,5]]],[45,1,1,5,6,[[1072,1,1,5,6]]],[47,2,2,6,8,[[1092,1,1,6,7],[1094,1,1,7,8]]],[48,1,1,8,9,[[1098,1,1,8,9]]],[58,2,1,9,10,[[1148,2,1,9,10]]],[60,1,1,10,11,[[1156,1,1,10,11]]]],[27956,27976,27989,28230,28233,28614,29096,29139,29232,30326,30483]]],["+",[3,3,[[44,2,2,0,2,[[1056,2,2,0,2]]],[58,1,1,2,3,[[1148,1,1,2,3]]]],[28230,28233,30326]]],["kind",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30326]]],["nature",[10,9,[[44,5,4,0,4,[[1046,1,1,0,1],[1047,2,2,1,3],[1056,2,1,3,4]]],[45,1,1,4,5,[[1072,1,1,4,5]]],[47,2,2,5,7,[[1092,1,1,5,6],[1094,1,1,6,7]]],[48,1,1,7,8,[[1098,1,1,7,8]]],[60,1,1,8,9,[[1156,1,1,8,9]]]],[27956,27976,27989,28233,28614,29096,29139,29232,30483]]]]},{"k":"G5450","v":[["swellings",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29042]]]]},{"k":"G5451","v":[["plant",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23646]]]]},{"k":"G5452","v":[["*",[11,11,[[39,2,2,0,2,[[943,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,4,4,3,7,[[985,1,1,3,4],[989,2,2,4,6],[992,1,1,6,7]]],[45,4,4,7,11,[[1064,3,3,7,10],[1070,1,1,10,11]]]],[23646,23859,24674,25524,25657,25679,25788,28416,28417,28418,28547]]],["planted",[8,8,[[39,2,2,0,2,[[943,1,1,0,1],[949,1,1,1,2]]],[40,1,1,2,3,[[968,1,1,2,3]]],[41,4,4,3,7,[[985,1,1,3,4],[989,2,2,4,6],[992,1,1,6,7]]],[45,1,1,7,8,[[1064,1,1,7,8]]]],[23646,23859,24674,25524,25657,25679,25788,28416]]],["planteth",[3,3,[[45,3,3,0,3,[[1064,2,2,0,2],[1070,1,1,2,3]]]],[28417,28418,28547]]]]},{"k":"G5453","v":[["*",[3,3,[[41,2,2,0,2,[[980,2,2,0,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]]],[25251,25253,30227]]],["springing",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30227]]],["up",[2,2,[[41,2,2,0,2,[[980,2,2,0,2]]]],[25251,25253]]]]},{"k":"G5454","v":[["holes",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[41,1,1,1,2,[[981,1,1,1,2]]]],[23365,25359]]]]},{"k":"G5455","v":[["*",[42,38,[[39,5,5,0,5,[[948,1,1,0,1],[954,3,3,1,4],[955,1,1,4,5]]],[40,10,7,5,12,[[959,1,1,5,6],[965,1,1,6,7],[966,3,1,7,8],[970,4,3,8,11],[971,1,1,11,12]]],[41,10,10,12,22,[[980,2,2,12,14],[986,1,1,14,15],[988,2,2,15,17],[991,1,1,17,18],[994,3,3,18,21],[995,1,1,21,22]]],[42,12,11,22,33,[[997,1,1,22,23],[998,1,1,23,24],[1000,1,1,24,25],[1005,2,2,25,27],[1007,2,1,27,28],[1008,1,1,28,29],[1009,2,2,29,31],[1014,2,2,31,33]]],[43,4,4,33,37,[[1026,1,1,33,34],[1027,2,2,34,36],[1033,1,1,36,37]]],[65,1,1,37,38,[[1180,1,1,37,38]]]],[23824,24088,24128,24129,24176,24319,24573,24637,24784,24822,24826,24861,25253,25299,25565,25622,25644,25746,25898,25924,25925,25981,26092,26104,26172,26458,26464,26551,26597,26643,26668,26812,26818,27257,27266,27277,27511,30944]]],["call",[4,4,[[40,1,1,0,1,[[966,1,1,0,1]]],[41,1,1,1,2,[[986,1,1,1,2]]],[42,2,2,2,4,[[1000,1,1,2,3],[1009,1,1,3,4]]]],[24637,25565,26172,26643]]],["called",[16,16,[[39,1,1,0,1,[[948,1,1,0,1]]],[40,2,2,1,3,[[965,1,1,1,2],[966,1,1,2,3]]],[41,3,3,3,6,[[980,1,1,3,4],[988,1,1,4,5],[991,1,1,5,6]]],[42,7,7,6,13,[[997,1,1,6,7],[998,1,1,7,8],[1005,2,2,8,10],[1007,1,1,10,11],[1008,1,1,11,12],[1014,1,1,12,13]]],[43,3,3,13,16,[[1026,1,1,13,14],[1027,2,2,14,16]]]],[23824,24573,24637,25299,25622,25746,26092,26104,26458,26464,26551,26597,26818,27257,27266,27277]]],["calleth",[4,4,[[39,1,1,0,1,[[955,1,1,0,1]]],[40,2,2,1,3,[[966,1,1,1,2],[971,1,1,2,3]]],[42,1,1,3,4,[[1007,1,1,3,4]]]],[24176,24637,24861,26551]]],["calling",[1,1,[[40,1,1,0,1,[[959,1,1,0,1]]]],[24319]]],["crew",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,2,2,1,3,[[970,2,2,1,3]]],[41,1,1,3,4,[[994,1,1,3,4]]],[42,1,1,4,5,[[1014,1,1,4,5]]]],[24128,24822,24826,25924,26812]]],["cried",[5,5,[[41,3,3,0,3,[[980,1,1,0,1],[988,1,1,1,2],[995,1,1,2,3]]],[43,1,1,3,4,[[1033,1,1,3,4]]],[65,1,1,4,5,[[1180,1,1,4,5]]]],[25253,25644,25981,27511,30944]]],["crow",[7,7,[[39,2,2,0,2,[[954,2,2,0,2]]],[40,2,2,2,4,[[970,2,2,2,4]]],[41,2,2,4,6,[[994,2,2,4,6]]],[42,1,1,6,7,[[1009,1,1,6,7]]]],[24088,24129,24784,24826,25898,25925,26668]]]]},{"k":"G5456","v":[["*",[141,129,[[39,8,8,0,8,[[930,1,1,0,1],[931,2,2,1,3],[940,1,1,3,4],[945,1,1,4,5],[952,1,1,5,6],[955,2,2,6,8]]],[40,7,7,8,15,[[957,3,3,8,11],[961,1,1,11,12],[965,1,1,12,13],[971,2,2,13,15]]],[41,15,14,15,29,[[973,2,2,15,17],[975,2,2,17,19],[976,1,1,19,20],[980,1,1,20,21],[981,2,2,21,23],[983,1,1,23,24],[989,2,2,24,26],[991,1,1,26,27],[995,3,2,27,29]]],[42,15,15,29,44,[[997,1,1,29,30],[999,2,2,30,32],[1001,3,3,32,35],[1006,5,5,35,40],[1007,1,1,40,41],[1008,2,2,41,43],[1014,1,1,43,44]]],[43,27,27,44,71,[[1019,2,2,44,46],[1021,1,1,46,47],[1024,3,3,47,50],[1025,1,1,50,51],[1026,2,2,51,53],[1027,2,2,53,55],[1028,2,2,55,57],[1029,2,2,57,59],[1030,1,1,59,60],[1031,2,2,60,62],[1033,1,1,62,63],[1036,1,1,63,64],[1039,4,4,64,68],[1041,1,1,68,69],[1043,2,2,69,71]]],[45,4,4,71,75,[[1075,4,4,71,75]]],[47,1,1,75,76,[[1094,1,1,75,76]]],[51,1,1,76,77,[[1114,1,1,76,77]]],[57,5,5,77,82,[[1135,2,2,77,79],[1136,1,1,79,80],[1144,2,2,80,82]]],[60,3,3,82,85,[[1156,2,2,82,84],[1157,1,1,84,85]]],[65,55,44,85,129,[[1167,4,3,85,88],[1169,1,1,88,89],[1170,2,2,89,91],[1171,3,3,91,94],[1172,4,4,94,98],[1173,2,2,98,100],[1174,3,2,100,102],[1175,3,2,102,104],[1176,6,4,104,108],[1177,3,3,108,111],[1178,1,1,111,112],[1180,8,5,112,117],[1182,3,3,117,120],[1184,5,4,120,124],[1185,6,4,124,128],[1187,1,1,128,129]]]],[23187,23195,23209,23508,23705,23988,24175,24179,24218,24226,24241,24371,24545,24860,24863,24935,24937,25029,25047,25096,25273,25336,25337,25432,25664,25666,25768,25958,25981,26067,26128,26149,26235,26238,26247,26484,26485,26486,26497,26508,26566,26608,26610,26822,26955,26963,27046,27147,27173,27176,27183,27220,27223,27272,27274,27314,27316,27351,27359,27389,27424,27425,27511,27619,27711,27713,27718,27726,27790,27837,27847,28685,28686,28688,28689,29151,29619,30002,30010,30021,30231,30238,30496,30497,30516,30707,30709,30712,30766,30769,30773,30781,30790,30791,30794,30799,30800,30803,30812,30820,30832,30840,30849,30853,30864,30865,30868,30869,30884,30887,30891,30901,30928,30933,30935,30939,30941,30955,30971,30972,30995,30997,31015,31016,31018,31022,31023,31034,31056]]],["+",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1036,1,1,1,2]]]],[26955,27619]]],["noise",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30794]]],["sound",[8,7,[[39,1,1,0,1,[[952,1,1,0,1]]],[42,1,1,1,2,[[999,1,1,1,2]]],[45,2,2,2,4,[[1075,2,2,2,4]]],[65,4,3,4,7,[[1167,1,1,4,5],[1175,2,1,5,6],[1184,1,1,6,7]]]],[23988,26128,28685,28686,30712,30849,31015]]],["voice",[115,110,[[39,7,7,0,7,[[930,1,1,0,1],[931,2,2,1,3],[940,1,1,3,4],[945,1,1,4,5],[955,2,2,5,7]]],[40,7,7,7,14,[[957,3,3,7,10],[961,1,1,10,11],[965,1,1,11,12],[971,2,2,12,14]]],[41,12,12,14,26,[[973,2,2,14,16],[975,2,2,16,18],[976,1,1,18,19],[980,1,1,19,20],[981,2,2,20,22],[983,1,1,22,23],[989,1,1,23,24],[991,1,1,24,25],[995,1,1,25,26]]],[42,14,14,26,40,[[997,1,1,26,27],[999,1,1,27,28],[1001,3,3,28,31],[1006,5,5,31,36],[1007,1,1,36,37],[1008,2,2,37,39],[1014,1,1,39,40]]],[43,22,22,40,62,[[1019,1,1,40,41],[1021,1,1,41,42],[1024,3,3,42,45],[1025,1,1,45,46],[1026,2,2,46,48],[1027,2,2,48,50],[1028,2,2,50,52],[1029,2,2,52,54],[1031,1,1,54,55],[1033,1,1,55,56],[1039,3,3,56,59],[1041,1,1,59,60],[1043,2,2,60,62]]],[45,1,1,62,63,[[1075,1,1,62,63]]],[47,1,1,63,64,[[1094,1,1,63,64]]],[51,1,1,64,65,[[1114,1,1,64,65]]],[57,5,5,65,70,[[1135,2,2,65,67],[1136,1,1,67,68],[1144,2,2,68,70]]],[60,3,3,70,73,[[1156,2,2,70,72],[1157,1,1,72,73]]],[65,42,37,73,110,[[1167,3,3,73,76],[1169,1,1,76,77],[1170,1,1,77,78],[1171,3,3,78,81],[1172,3,3,81,84],[1173,2,2,84,86],[1174,1,1,86,87],[1175,1,1,87,88],[1176,4,4,88,92],[1177,1,1,92,93],[1178,1,1,93,94],[1180,8,5,94,99],[1182,2,2,99,101],[1184,4,4,101,105],[1185,6,4,105,109],[1187,1,1,109,110]]]],[23187,23195,23209,23508,23705,24175,24179,24218,24226,24241,24371,24545,24860,24863,24935,24937,25029,25047,25096,25273,25336,25337,25432,25666,25768,25981,26067,26149,26235,26238,26247,26484,26485,26486,26497,26508,26566,26608,26610,26822,26963,27046,27147,27173,27176,27183,27220,27223,27272,27274,27314,27316,27351,27359,27424,27511,27711,27713,27718,27790,27837,27847,28689,29151,29619,30002,30010,30021,30231,30238,30496,30497,30516,30707,30709,30712,30766,30769,30781,30790,30791,30799,30800,30803,30812,30820,30840,30853,30864,30865,30868,30869,30884,30901,30928,30933,30935,30939,30941,30955,30971,30995,30997,31015,31016,31018,31022,31023,31034,31056]]],["voices",[15,14,[[41,3,2,0,2,[[989,1,1,0,1],[995,2,1,1,2]]],[43,3,3,2,5,[[1030,1,1,2,3],[1031,1,1,3,4],[1039,1,1,4,5]]],[45,1,1,5,6,[[1075,1,1,5,6]]],[65,8,8,6,14,[[1170,1,1,6,7],[1174,2,2,7,9],[1176,2,2,9,11],[1177,2,2,11,13],[1182,1,1,13,14]]]],[25664,25958,27389,27425,27726,28688,30773,30832,30840,30864,30865,30887,30891,30972]]]]},{"k":"G5457","v":[["*",[70,59,[[39,7,6,0,6,[[932,2,1,0,1],[933,2,2,1,3],[934,1,1,3,4],[938,1,1,4,5],[945,1,1,5,6]]],[40,1,1,6,7,[[970,1,1,6,7]]],[41,6,6,7,13,[[974,1,1,7,8],[980,1,1,8,9],[983,1,1,9,10],[984,1,1,10,11],[988,1,1,11,12],[994,1,1,12,13]]],[42,23,16,13,29,[[997,6,5,13,18],[999,5,3,18,21],[1001,1,1,21,22],[1004,2,1,22,23],[1005,1,1,23,24],[1007,2,2,24,26],[1008,6,3,26,29]]],[43,10,10,29,39,[[1026,1,1,29,30],[1029,1,1,30,31],[1030,1,1,31,32],[1033,1,1,32,33],[1039,3,3,33,36],[1043,3,3,36,39]]],[44,2,2,39,41,[[1047,1,1,39,40],[1058,1,1,40,41]]],[46,3,3,41,44,[[1081,1,1,41,42],[1083,1,1,42,43],[1088,1,1,43,44]]],[48,4,2,44,46,[[1101,4,2,44,46]]],[50,1,1,46,47,[[1107,1,1,46,47]]],[51,1,1,47,48,[[1115,1,1,47,48]]],[53,1,1,48,49,[[1124,1,1,48,49]]],[58,1,1,49,50,[[1146,1,1,49,50]]],[59,1,1,50,51,[[1152,1,1,50,51]]],[61,6,5,51,56,[[1159,3,2,51,53],[1160,3,3,53,56]]],[65,3,3,56,59,[[1184,1,1,56,57],[1187,1,1,57,58],[1188,1,1,58,59]]]],[23225,23248,23250,23305,23444,23702,24808,25005,25261,25440,25462,25628,25920,26048,26049,26051,26052,26053,26139,26140,26141,26245,26393,26445,26532,26533,26615,26616,26626,27219,27344,27409,27512,27710,27713,27715,27836,27841,27846,27981,28278,28865,28912,29003,29312,29317,29477,29626,29804,30283,30408,30545,30547,30558,30559,30560,31016,31077,31085]]],["+",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27409]]],["Light",[4,3,[[42,4,3,0,3,[[997,4,3,0,3]]]],[26051,26052,26053]]],["fire",[2,2,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]]],[24808,25920]]],["light",[62,52,[[39,7,6,0,6,[[932,2,1,0,1],[933,2,2,1,3],[934,1,1,3,4],[938,1,1,4,5],[945,1,1,5,6]]],[41,5,5,6,11,[[974,1,1,6,7],[980,1,1,7,8],[983,1,1,8,9],[984,1,1,9,10],[988,1,1,10,11]]],[42,19,13,11,24,[[997,2,2,11,13],[999,5,3,13,16],[1001,1,1,16,17],[1004,2,1,17,18],[1005,1,1,18,19],[1007,2,2,19,21],[1008,6,3,21,24]]],[43,9,9,24,33,[[1026,1,1,24,25],[1029,1,1,25,26],[1033,1,1,26,27],[1039,3,3,27,30],[1043,3,3,30,33]]],[44,2,2,33,35,[[1047,1,1,33,34],[1058,1,1,34,35]]],[46,3,3,35,38,[[1081,1,1,35,36],[1083,1,1,36,37],[1088,1,1,37,38]]],[48,4,2,38,40,[[1101,4,2,38,40]]],[50,1,1,40,41,[[1107,1,1,40,41]]],[51,1,1,41,42,[[1115,1,1,41,42]]],[53,1,1,42,43,[[1124,1,1,42,43]]],[59,1,1,43,44,[[1152,1,1,43,44]]],[61,6,5,44,49,[[1159,3,2,44,46],[1160,3,3,46,49]]],[65,3,3,49,52,[[1184,1,1,49,50],[1187,1,1,50,51],[1188,1,1,51,52]]]],[23225,23248,23250,23305,23444,23702,25005,25261,25440,25462,25628,26048,26049,26139,26140,26141,26245,26393,26445,26532,26533,26615,26616,26626,27219,27344,27512,27710,27713,27715,27836,27841,27846,27981,28278,28865,28912,29003,29312,29317,29477,29626,29804,30408,30545,30547,30558,30559,30560,31016,31077,31085]]],["lights",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30283]]]]},{"k":"G5458","v":[["*",[2,2,[[49,1,1,0,1,[[1104,1,1,0,1]]],[65,1,1,1,2,[[1187,1,1,1,2]]]],[29406,31064]]],["light",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31064]]],["lights",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29406]]]]},{"k":"G5459","v":[["star",[1,1,[[60,1,1,0,1,[[1156,1,1,0,1]]]],[30498]]]]},{"k":"G5460","v":[["*",[5,4,[[39,2,2,0,2,[[934,1,1,0,1],[945,1,1,1,2]]],[41,3,2,2,4,[[983,3,2,2,4]]]],[23304,23705,25439,25441]]],["bright",[1,1,[[39,1,1,0,1,[[945,1,1,0,1]]]],[23705]]],["light",[4,3,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,3,2,1,3,[[983,3,2,1,3]]]],[23304,25439,25441]]]]},{"k":"G5461","v":[["*",[11,11,[[41,1,1,0,1,[[983,1,1,0,1]]],[42,1,1,1,2,[[997,1,1,1,2]]],[45,1,1,2,3,[[1065,1,1,2,3]]],[48,2,2,3,5,[[1097,1,1,3,4],[1099,1,1,4,5]]],[54,1,1,5,6,[[1125,1,1,5,6]]],[57,2,2,6,8,[[1138,1,1,6,7],[1142,1,1,7,8]]],[65,3,3,8,11,[[1184,1,1,8,9],[1187,1,1,9,10],[1188,1,1,10,11]]]],[25441,26053,28438,29224,29260,29819,30048,30165,30994,31076,31085]]],["+",[5,5,[[41,1,1,0,1,[[983,1,1,0,1]]],[48,1,1,1,2,[[1099,1,1,1,2]]],[54,1,1,2,3,[[1125,1,1,2,3]]],[57,1,1,3,4,[[1138,1,1,3,4]]],[65,1,1,4,5,[[1188,1,1,4,5]]]],[25441,29260,29819,30048,31085]]],["enlightened",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29224]]],["illuminated",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30165]]],["light",[1,1,[[45,1,1,0,1,[[1065,1,1,0,1]]]],[28438]]],["lighten",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31076]]],["lightened",[1,1,[[65,1,1,0,1,[[1184,1,1,0,1]]]],[30994]]],["lighteth",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26053]]]]},{"k":"G5462","v":[["light",[2,2,[[46,2,2,0,2,[[1081,2,2,0,2]]]],[28863,28865]]]]},{"k":"G5463","v":[["*",[74,68,[[39,6,6,0,6,[[930,1,1,0,1],[933,1,1,1,2],[946,1,1,2,3],[954,1,1,3,4],[955,1,1,4,5],[956,1,1,5,6]]],[40,2,2,6,8,[[970,1,1,6,7],[971,1,1,7,8]]],[41,12,11,8,19,[[973,2,2,8,10],[978,1,1,10,11],[982,2,1,11,12],[985,1,1,12,13],[987,2,2,13,15],[991,2,2,15,17],[994,1,1,17,18],[995,1,1,18,19]]],[42,9,9,19,28,[[999,1,1,19,20],[1000,1,1,20,21],[1004,1,1,21,22],[1007,1,1,22,23],[1010,1,1,23,24],[1012,2,2,24,26],[1015,1,1,26,27],[1016,1,1,27,28]]],[43,7,7,28,35,[[1022,1,1,28,29],[1025,1,1,29,30],[1028,1,1,30,31],[1030,1,1,31,32],[1032,2,2,32,34],[1040,1,1,34,35]]],[44,4,3,35,38,[[1057,3,2,35,37],[1061,1,1,37,38]]],[45,4,3,38,41,[[1068,2,1,38,39],[1074,1,1,39,40],[1077,1,1,40,41]]],[46,8,8,41,49,[[1079,1,1,41,42],[1083,1,1,42,43],[1084,4,4,43,47],[1090,2,2,47,49]]],[49,9,7,49,56,[[1103,2,1,49,50],[1104,3,3,50,53],[1105,1,1,53,54],[1106,3,2,54,56]]],[50,2,2,56,58,[[1107,1,1,56,57],[1108,1,1,57,58]]],[51,2,2,58,60,[[1113,1,1,58,59],[1115,1,1,59,60]]],[58,1,1,60,61,[[1146,1,1,60,61]]],[59,2,1,61,62,[[1154,2,1,61,62]]],[62,3,3,62,65,[[1164,3,3,62,65]]],[63,1,1,65,66,[[1165,1,1,65,66]]],[65,2,2,66,68,[[1177,1,1,66,67],[1185,1,1,67,68]]]],[23179,23246,23740,24103,24158,24204,24765,24844,24907,24921,25169,25383,25535,25593,25620,25737,25768,25869,25943,26149,26192,26437,26538,26696,26746,26748,26828,26887,27100,27215,27330,27410,27465,27473,27760,28257,28260,28355,28517,28671,28793,28827,28908,28923,28925,28929,28932,29052,29054,29379,29408,29409,29419,29422,29446,29452,29489,29499,29599,29637,30267,30459,30649,30655,30656,30661,30882,31024]]],["+",[3,3,[[41,1,1,0,1,[[995,1,1,0,1]]],[42,2,2,1,3,[[1010,1,1,1,2],[1016,1,1,2,3]]]],[25943,26696,26887]]],["Hail",[5,5,[[39,2,2,0,2,[[954,1,1,0,1],[955,1,1,1,2]]],[40,1,1,2,3,[[971,1,1,2,3]]],[41,1,1,3,4,[[973,1,1,3,4]]],[42,1,1,4,5,[[1015,1,1,4,5]]]],[24103,24158,24844,24921,26828]]],["Rejoice",[6,5,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[44,1,1,2,3,[[1057,1,1,2,3]]],[49,2,1,3,4,[[1106,2,1,3,4]]],[51,1,1,4,5,[[1115,1,1,4,5]]]],[23246,25169,28260,29446,29637]]],["Rejoiceth",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28671]]],["Rejoicing",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28257]]],["farewell",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29054]]],["glad",[12,12,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,2,2,1,3,[[987,1,1,1,2],[994,1,1,2,3]]],[42,2,2,3,5,[[1004,1,1,3,4],[1007,1,1,4,5]]],[43,2,2,5,7,[[1028,1,1,5,6],[1030,1,1,6,7]]],[44,1,1,7,8,[[1061,1,1,7,8]]],[45,1,1,8,9,[[1077,1,1,8,9]]],[46,1,1,9,10,[[1090,1,1,9,10]]],[59,1,1,10,11,[[1154,1,1,10,11]]],[65,1,1,11,12,[[1185,1,1,11,12]]]],[24765,25620,25869,26437,26538,27330,27410,28355,28793,29052,30459,31024]]],["greeting",[3,3,[[43,2,2,0,2,[[1032,1,1,0,1],[1040,1,1,1,2]]],[58,1,1,2,3,[[1146,1,1,2,3]]]],[27465,27760,30267]]],["hail",[1,1,[[39,1,1,0,1,[[956,1,1,0,1]]]],[24204]]],["joy",[3,3,[[49,2,2,0,2,[[1104,2,2,0,2]]],[51,1,1,2,3,[[1113,1,1,2,3]]]],[29408,29409,29599]]],["joyed",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28929]]],["joyfully",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25737]]],["joying",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29499]]],["rejoice",[19,17,[[41,4,3,0,3,[[973,1,1,0,1],[982,2,1,1,2],[991,1,1,2,3]]],[42,3,3,3,6,[[1000,1,1,3,4],[1012,2,2,4,6]]],[44,1,1,6,7,[[1057,1,1,6,7]]],[45,1,1,7,8,[[1068,1,1,7,8]]],[46,3,3,8,11,[[1079,1,1,8,9],[1084,2,2,9,11]]],[49,4,3,11,14,[[1103,2,1,11,12],[1104,1,1,12,13],[1105,1,1,13,14]]],[50,1,1,14,15,[[1107,1,1,14,15]]],[59,1,1,15,16,[[1154,1,1,15,16]]],[65,1,1,16,17,[[1177,1,1,16,17]]]],[24907,25383,25768,26192,26746,26748,28260,28517,28827,28925,28932,29379,29419,29422,29489,30459,30882]]],["rejoiced",[8,8,[[39,1,1,0,1,[[930,1,1,0,1]]],[41,1,1,1,2,[[985,1,1,1,2]]],[43,1,1,2,3,[[1032,1,1,2,3]]],[45,1,1,3,4,[[1068,1,1,3,4]]],[46,1,1,4,5,[[1084,1,1,4,5]]],[49,1,1,5,6,[[1106,1,1,5,6]]],[62,1,1,6,7,[[1164,1,1,6,7]]],[63,1,1,7,8,[[1165,1,1,7,8]]]],[23179,25535,27473,28517,28923,29452,30649,30661]]],["rejoiceth",[2,2,[[39,1,1,0,1,[[946,1,1,0,1]]],[42,1,1,1,2,[[999,1,1,1,2]]]],[23740,26149]]],["rejoicing",[4,4,[[41,1,1,0,1,[[987,1,1,0,1]]],[43,2,2,1,3,[[1022,1,1,1,2],[1025,1,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]]],[25593,27100,27215,28908]]],["speed",[2,2,[[62,2,2,0,2,[[1164,2,2,0,2]]]],[30655,30656]]]]},{"k":"G5464","v":[["hail",[4,3,[[65,4,3,0,3,[[1174,1,1,0,1],[1177,1,1,1,2],[1182,2,1,2,3]]]],[30834,30891,30975]]]]},{"k":"G5465","v":[["*",[7,7,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,2,2,1,3,[[977,2,2,1,3]]],[43,3,3,3,6,[[1026,1,1,3,4],[1044,2,2,4,6]]],[46,1,1,6,7,[[1088,1,1,6,7]]]],[24264,25111,25112,27241,27872,27885,29022]]],["+",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1044,1,1,1,2]]]],[27241,27872]]],["down",[5,5,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,2,2,1,3,[[977,2,2,1,3]]],[43,1,1,3,4,[[1044,1,1,3,4]]],[46,1,1,4,5,[[1088,1,1,4,5]]]],[24264,25111,25112,27885,29022]]]]},{"k":"G5466","v":[["Chaldaeans",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27120]]]]},{"k":"G5467","v":[["*",[2,2,[[39,1,1,0,1,[[936,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[23373,29854]]],["fierce",[1,1,[[39,1,1,0,1,[[936,1,1,0,1]]]],[23373]]],["perilous",[1,1,[[54,1,1,0,1,[[1127,1,1,0,1]]]],[29854]]]]},{"k":"G5468","v":[["*",[2,2,[[58,2,2,0,2,[[1146,1,1,0,1],[1148,1,1,1,2]]]],[30292,30321]]],["bridle",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30321]]],["bridleth",[1,1,[[58,1,1,0,1,[[1146,1,1,0,1]]]],[30292]]]]},{"k":"G5469","v":[["*",[2,2,[[58,1,1,0,1,[[1148,1,1,0,1]]],[65,1,1,1,2,[[1180,1,1,1,2]]]],[30322,30946]]],["bits",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30322]]],["bridles",[1,1,[[65,1,1,0,1,[[1180,1,1,0,1]]]],[30946]]]]},{"k":"G5470","v":[["brass",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30860]]]]},{"k":"G5471","v":[["coppersmith",[1,1,[[54,1,1,0,1,[[1128,1,1,0,1]]]],[29884]]]]},{"k":"G5472","v":[["chalcedony",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31072]]]]},{"k":"G5473","v":[["vessels",[1,1,[[40,1,1,0,1,[[963,1,1,0,1]]]],[24467]]]]},{"k":"G5474","v":[["brass",[2,2,[[65,2,2,0,2,[[1167,1,1,0,1],[1168,1,1,1,2]]]],[30712,30735]]]]},{"k":"G5475","v":[["*",[5,5,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,2,2,1,3,[[962,1,1,1,2],[968,1,1,2,3]]],[45,1,1,3,4,[[1074,1,1,3,4]]],[65,1,1,4,5,[[1184,1,1,4,5]]]],[23426,24415,24714,28666,31005]]],["brass",[3,3,[[39,1,1,0,1,[[938,1,1,0,1]]],[45,1,1,1,2,[[1074,1,1,1,2]]],[65,1,1,2,3,[[1184,1,1,2,3]]]],[23426,28666,31005]]],["money",[2,2,[[40,2,2,0,2,[[962,1,1,0,1],[968,1,1,1,2]]]],[24415,24714]]]]},{"k":"G5476","v":[["ground",[2,2,[[42,2,2,0,2,[[1005,1,1,0,1],[1014,1,1,1,2]]]],[26446,26791]]]]},{"k":"G5477","v":[["Chanaan",[2,2,[[43,2,2,0,2,[[1024,1,1,0,1],[1030,1,1,1,2]]]],[27127,27381]]]]},{"k":"G5478","v":[["Canaan",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23655]]]]},{"k":"G5479","v":[["*",[59,57,[[39,6,6,0,6,[[930,1,1,0,1],[941,2,2,1,3],[953,2,2,3,5],[956,1,1,5,6]]],[40,1,1,6,7,[[960,1,1,6,7]]],[41,8,8,7,15,[[973,1,1,7,8],[974,1,1,8,9],[980,1,1,9,10],[982,1,1,10,11],[987,2,2,11,13],[996,2,2,13,15]]],[42,9,7,15,22,[[999,2,1,15,16],[1011,2,1,16,17],[1012,4,4,17,21],[1013,1,1,21,22]]],[43,5,5,22,27,[[1025,1,1,22,23],[1029,1,1,23,24],[1030,1,1,24,25],[1032,1,1,25,26],[1037,1,1,26,27]]],[44,3,3,27,30,[[1059,1,1,27,28],[1060,2,2,28,30]]],[46,5,5,30,35,[[1078,1,1,30,31],[1079,1,1,31,32],[1084,2,2,32,34],[1085,1,1,34,35]]],[47,1,1,35,36,[[1095,1,1,35,36]]],[49,5,5,36,41,[[1103,2,2,36,38],[1104,2,2,38,40],[1106,1,1,40,41]]],[50,1,1,41,42,[[1107,1,1,41,42]]],[51,4,4,42,46,[[1111,1,1,42,43],[1112,2,2,43,45],[1113,1,1,45,46]]],[54,1,1,46,47,[[1125,1,1,46,47]]],[57,4,4,47,51,[[1142,1,1,47,48],[1144,2,2,48,50],[1145,1,1,50,51]]],[58,2,2,51,53,[[1146,1,1,51,52],[1149,1,1,52,53]]],[59,1,1,53,54,[[1151,1,1,53,54]]],[61,1,1,54,55,[[1159,1,1,54,55]]],[62,1,1,55,56,[[1164,1,1,55,56]]],[63,1,1,56,57,[[1165,1,1,56,57]]]],[23179,23559,23583,24029,24031,24203,24339,24907,24983,25258,25380,25595,25598,26032,26043,26149,26710,26746,26747,26748,26750,26772,27184,27351,27414,27445,27650,28297,28316,28335,28824,28827,28920,28929,28934,29184,29365,29386,29393,29420,29443,29476,29566,29589,29590,29599,29813,30167,30214,30223,30258,30268,30346,30382,30544,30657,30662]]],["+",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30167]]],["gladness",[3,3,[[40,1,1,0,1,[[960,1,1,0,1]]],[43,1,1,1,2,[[1029,1,1,1,2]]],[49,1,1,2,3,[[1104,1,1,2,3]]]],[24339,27351,29420]]],["greatly",[1,1,[[42,1,1,0,1,[[999,1,1,0,1]]]],[26149]]],["joy",[51,50,[[39,6,6,0,6,[[930,1,1,0,1],[941,2,2,1,3],[953,2,2,3,5],[956,1,1,5,6]]],[41,8,8,6,14,[[973,1,1,6,7],[974,1,1,7,8],[980,1,1,8,9],[982,1,1,9,10],[987,2,2,10,12],[996,2,2,12,14]]],[42,8,7,14,21,[[999,1,1,14,15],[1011,2,1,15,16],[1012,4,4,16,20],[1013,1,1,20,21]]],[43,4,4,21,25,[[1025,1,1,21,22],[1030,1,1,22,23],[1032,1,1,23,24],[1037,1,1,24,25]]],[44,3,3,25,28,[[1059,1,1,25,26],[1060,2,2,26,28]]],[46,4,4,28,32,[[1078,1,1,28,29],[1079,1,1,29,30],[1084,1,1,30,31],[1085,1,1,31,32]]],[47,1,1,32,33,[[1095,1,1,32,33]]],[49,4,4,33,37,[[1103,2,2,33,35],[1104,1,1,35,36],[1106,1,1,36,37]]],[51,4,4,37,41,[[1111,1,1,37,38],[1112,2,2,38,40],[1113,1,1,40,41]]],[54,1,1,41,42,[[1125,1,1,41,42]]],[57,2,2,42,44,[[1144,1,1,42,43],[1145,1,1,43,44]]],[58,2,2,44,46,[[1146,1,1,44,45],[1149,1,1,45,46]]],[59,1,1,46,47,[[1151,1,1,46,47]]],[61,1,1,47,48,[[1159,1,1,47,48]]],[62,1,1,48,49,[[1164,1,1,48,49]]],[63,1,1,49,50,[[1165,1,1,49,50]]]],[23179,23559,23583,24029,24031,24203,24907,24983,25258,25380,25595,25598,26032,26043,26149,26710,26746,26747,26748,26750,26772,27184,27414,27445,27650,28297,28316,28335,28824,28827,28929,28934,29184,29365,29386,29393,29443,29566,29589,29590,29599,29813,30214,30258,30268,30346,30382,30544,30657,30662]]],["joyful",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28920]]],["joyfulness",[1,1,[[50,1,1,0,1,[[1107,1,1,0,1]]]],[29476]]],["joyous",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30223]]]]},{"k":"G5480","v":[["*",[9,9,[[43,1,1,0,1,[[1034,1,1,0,1]]],[65,8,8,1,9,[[1179,2,2,1,3],[1180,2,2,3,5],[1181,1,1,5,6],[1182,1,1,6,7],[1185,1,1,7,8],[1186,1,1,8,9]]]],[27552,30924,30925,30935,30937,30948,30956,31037,31042]]],["graven",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27552]]],["mark",[8,8,[[65,8,8,0,8,[[1179,2,2,0,2],[1180,2,2,2,4],[1181,1,1,4,5],[1182,1,1,5,6],[1185,1,1,6,7],[1186,1,1,7,8]]]],[30924,30925,30935,30937,30948,30956,31037,31042]]]]},{"k":"G5481","v":[["image",[1,1,[[57,1,1,0,1,[[1133,1,1,0,1]]]],[29966]]]]},{"k":"G5482","v":[["+",[1,1,[[41,1,1,0,1,[[991,1,1,0,1]]]],[25774]]]]},{"k":"G5483","v":[["*",[23,19,[[41,3,3,0,3,[[979,3,3,0,3]]],[43,4,4,3,7,[[1020,1,1,3,4],[1042,2,2,4,6],[1044,1,1,6,7]]],[44,1,1,7,8,[[1053,1,1,7,8]]],[45,1,1,8,9,[[1063,1,1,8,9]]],[46,5,3,9,12,[[1079,4,2,9,11],[1089,1,1,11,12]]],[47,1,1,12,13,[[1093,1,1,12,13]]],[48,2,1,13,14,[[1100,2,1,13,14]]],[49,2,2,14,16,[[1103,1,1,14,15],[1104,1,1,15,16]]],[50,3,2,16,18,[[1108,1,1,16,17],[1109,2,1,17,18]]],[56,1,1,18,19,[[1132,1,1,18,19]]]],[25216,25237,25238,27010,27807,27812,27879,28148,28406,28831,28834,29035,29120,29304,29390,29400,29507,29530,29960]]],["+",[1,1,[[46,1,1,0,1,[[1079,1,1,0,1]]]],[28834]]],["deliver",[2,2,[[43,2,2,0,2,[[1042,2,2,0,2]]]],[27807,27812]]],["forgave",[4,4,[[41,2,2,0,2,[[979,2,2,0,2]]],[46,1,1,2,3,[[1079,1,1,2,3]]],[50,1,1,3,4,[[1109,1,1,3,4]]]],[25237,25238,28834,29530]]],["forgive",[3,3,[[46,3,3,0,3,[[1079,2,2,0,2],[1089,1,1,2,3]]]],[28831,28834,29035]]],["forgiven",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[50,1,1,1,2,[[1108,1,1,1,2]]]],[29304,29507]]],["forgiving",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29304,29530]]],["gave",[2,2,[[41,1,1,0,1,[[979,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]]],[25216,29120]]],["give",[1,1,[[44,1,1,0,1,[[1053,1,1,0,1]]]],[28148]]],["given",[5,5,[[43,1,1,0,1,[[1044,1,1,0,1]]],[45,1,1,1,2,[[1063,1,1,1,2]]],[49,2,2,2,4,[[1103,1,1,2,3],[1104,1,1,3,4]]],[56,1,1,4,5,[[1132,1,1,4,5]]]],[27879,28406,29390,29400,29960]]],["granted",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27010]]]]},{"k":"G5484","v":[["*",[9,9,[[41,1,1,0,1,[[979,1,1,0,1]]],[47,1,1,1,2,[[1093,1,1,1,2]]],[48,2,2,2,4,[[1099,2,2,2,4]]],[53,1,1,4,5,[[1123,1,1,4,5]]],[55,2,2,5,7,[[1129,2,2,5,7]]],[61,1,1,7,8,[[1161,1,1,7,8]]],[64,1,1,8,9,[[1166,1,1,8,9]]]],[25242,29121,29252,29265,29777,29897,29903,30591,30688]]],["+",[7,7,[[41,1,1,0,1,[[979,1,1,0,1]]],[48,2,2,1,3,[[1099,2,2,1,3]]],[53,1,1,3,4,[[1123,1,1,3,4]]],[55,2,2,4,6,[[1129,2,2,4,6]]],[61,1,1,6,7,[[1161,1,1,6,7]]]],[25242,29252,29265,29777,29897,29903,30591]]],["because",[1,1,[[47,1,1,0,1,[[1093,1,1,0,1]]]],[29121]]],["of",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30688]]]]},{"k":"G5485","v":[["*",[156,147,[[41,8,8,0,8,[[973,1,1,0,1],[974,2,2,1,3],[976,1,1,3,4],[978,3,3,4,7],[989,1,1,7,8]]],[42,4,3,8,11,[[997,4,3,8,11]]],[43,16,16,11,27,[[1019,1,1,11,12],[1021,1,1,12,13],[1024,2,2,13,15],[1028,1,1,15,16],[1030,1,1,16,17],[1031,2,2,17,19],[1032,2,2,19,21],[1035,1,1,21,22],[1037,2,2,22,24],[1041,1,1,24,25],[1042,2,2,25,27]]],[44,25,21,27,48,[[1046,2,2,27,29],[1048,1,1,29,30],[1049,2,2,30,32],[1050,6,5,32,37],[1051,4,4,37,41],[1056,5,2,41,43],[1057,2,2,43,45],[1060,1,1,45,46],[1061,2,2,46,48]]],[45,10,8,48,56,[[1062,2,2,48,50],[1064,1,1,50,51],[1071,1,1,51,52],[1076,4,2,52,54],[1077,2,2,54,56]]],[46,18,18,56,74,[[1078,3,3,56,59],[1079,1,1,59,60],[1081,1,1,60,61],[1083,1,1,61,62],[1085,7,7,62,69],[1086,3,3,69,72],[1089,1,1,72,73],[1090,1,1,73,74]]],[47,7,7,74,81,[[1091,3,3,74,77],[1092,2,2,77,79],[1095,1,1,79,80],[1096,1,1,80,81]]],[48,12,12,81,93,[[1097,3,3,81,84],[1098,3,3,84,87],[1099,3,3,87,90],[1100,2,2,90,92],[1102,1,1,92,93]]],[49,3,3,93,96,[[1103,2,2,93,95],[1106,1,1,95,96]]],[50,5,5,96,101,[[1107,2,2,96,98],[1109,1,1,98,99],[1110,2,2,99,101]]],[51,2,2,101,103,[[1111,1,1,101,102],[1115,1,1,102,103]]],[52,4,4,103,107,[[1116,2,2,103,105],[1117,1,1,105,106],[1118,1,1,106,107]]],[53,4,4,107,111,[[1119,3,3,107,110],[1124,1,1,110,111]]],[54,5,5,111,116,[[1125,3,3,111,114],[1126,1,1,114,115],[1128,1,1,115,116]]],[55,4,4,116,120,[[1129,1,1,116,117],[1130,1,1,117,118],[1131,2,2,118,120]]],[56,3,3,120,123,[[1132,3,3,120,123]]],[57,8,7,123,130,[[1134,1,1,123,124],[1136,2,1,124,125],[1142,1,1,125,126],[1144,2,2,126,128],[1145,2,2,128,130]]],[58,2,1,130,131,[[1149,2,1,130,131]]],[59,10,10,131,141,[[1151,3,3,131,134],[1152,2,2,134,136],[1153,1,1,136,137],[1154,1,1,137,138],[1155,3,3,138,141]]],[60,2,2,141,143,[[1156,1,1,141,142],[1158,1,1,142,143]]],[62,1,1,143,144,[[1164,1,1,143,144]]],[64,1,1,144,145,[[1166,1,1,144,145]]],[65,2,2,145,147,[[1167,1,1,145,146],[1188,1,1,146,147]]]],[24923,25013,25025,25085,25178,25179,25180,25660,26058,26060,26061,26996,27055,27126,27162,27330,27405,27417,27440,27453,27482,27584,27650,27658,27796,27799,27805,27935,27937,28015,28026,28038,28049,28062,28064,28067,28068,28069,28082,28083,28085,28214,28215,28248,28251,28318,28356,28360,28366,28367,28420,28597,28728,28775,28779,28799,28802,28812,28815,28838,28874,28899,28933,28936,28938,28939,28941,28948,28951,28964,28970,28971,29031,29057,29060,29063,29072,29090,29102,29166,29206,29208,29212,29213,29234,29236,29237,29253,29258,29259,29279,29301,29361,29363,29368,29465,29467,29471,29533,29548,29560,29561,29649,29651,29661,29677,29696,29698,29708,29710,29809,29811,29812,29818,29828,29892,29896,29919,29930,29938,29941,29945,29963,29986,30030,30162,30227,30240,30250,30266,30343,30376,30384,30387,30418,30419,30431,30456,30470,30475,30477,30481,30540,30648,30676,30701,31101]]],["+",[5,5,[[41,1,1,0,1,[[989,1,1,0,1]]],[44,1,1,1,2,[[1051,1,1,1,2]]],[46,1,1,2,3,[[1086,1,1,2,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]],[54,1,1,4,5,[[1125,1,1,4,5]]]],[25660,28085,28964,29708,29812]]],["Grace",[23,23,[[44,1,1,0,1,[[1046,1,1,0,1]]],[45,1,1,1,2,[[1062,1,1,1,2]]],[46,1,1,2,3,[[1078,1,1,2,3]]],[47,1,1,3,4,[[1091,1,1,3,4]]],[48,2,2,4,6,[[1097,1,1,4,5],[1102,1,1,5,6]]],[49,1,1,6,7,[[1103,1,1,6,7]]],[50,2,2,7,9,[[1107,1,1,7,8],[1110,1,1,8,9]]],[51,1,1,9,10,[[1111,1,1,9,10]]],[52,1,1,10,11,[[1116,1,1,10,11]]],[53,2,2,11,13,[[1119,1,1,11,12],[1124,1,1,12,13]]],[54,2,2,13,15,[[1125,1,1,13,14],[1128,1,1,14,15]]],[55,2,2,15,17,[[1129,1,1,15,16],[1131,1,1,16,17]]],[56,1,1,17,18,[[1132,1,1,17,18]]],[57,1,1,18,19,[[1145,1,1,18,19]]],[59,1,1,19,20,[[1151,1,1,19,20]]],[60,1,1,20,21,[[1156,1,1,20,21]]],[62,1,1,21,22,[[1164,1,1,21,22]]],[65,1,1,22,23,[[1167,1,1,22,23]]]],[27937,28366,28802,29060,29208,29361,29363,29467,29560,29561,29651,29698,29809,29811,29892,29896,29938,29941,30266,30376,30481,30648,30701]]],["Thanks",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28971]]],["acceptable",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30419]]],["benefit",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28815]]],["favour",[6,6,[[41,2,2,0,2,[[973,1,1,0,1],[974,1,1,1,2]]],[43,4,4,2,6,[[1019,1,1,2,3],[1024,2,2,3,5],[1042,1,1,5,6]]]],[24923,25025,26996,27126,27162,27799]]],["gift",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28936]]],["grace",[106,97,[[41,1,1,0,1,[[974,1,1,0,1]]],[42,4,3,1,4,[[997,4,3,1,4]]],[43,10,10,4,14,[[1021,1,1,4,5],[1028,1,1,5,6],[1030,1,1,6,7],[1031,2,2,7,9],[1032,2,2,9,11],[1035,1,1,11,12],[1037,2,2,12,14]]],[44,23,19,14,33,[[1046,1,1,14,15],[1048,1,1,15,16],[1049,2,2,16,18],[1050,6,5,18,23],[1051,3,3,23,26],[1056,5,2,26,28],[1057,2,2,28,30],[1060,1,1,30,31],[1061,2,2,31,33]]],[45,7,5,33,38,[[1062,1,1,33,34],[1064,1,1,34,35],[1071,1,1,35,36],[1076,3,1,36,37],[1077,1,1,37,38]]],[46,11,11,38,49,[[1078,1,1,38,39],[1081,1,1,39,40],[1083,1,1,40,41],[1085,5,5,41,46],[1086,1,1,46,47],[1089,1,1,47,48],[1090,1,1,48,49]]],[47,6,6,49,55,[[1091,2,2,49,51],[1092,2,2,51,53],[1095,1,1,53,54],[1096,1,1,54,55]]],[48,10,10,55,65,[[1097,2,2,55,57],[1098,3,3,57,60],[1099,3,3,60,63],[1100,2,2,63,65]]],[49,2,2,65,67,[[1103,1,1,65,66],[1106,1,1,66,67]]],[50,3,3,67,70,[[1107,1,1,67,68],[1109,1,1,68,69],[1110,1,1,69,70]]],[51,1,1,70,71,[[1115,1,1,70,71]]],[52,3,3,71,74,[[1116,1,1,71,72],[1117,1,1,72,73],[1118,1,1,73,74]]],[53,1,1,74,75,[[1119,1,1,74,75]]],[54,2,2,75,77,[[1125,1,1,75,76],[1126,1,1,76,77]]],[55,2,2,77,79,[[1130,1,1,77,78],[1131,1,1,78,79]]],[56,1,1,79,80,[[1132,1,1,79,80]]],[57,7,6,80,86,[[1134,1,1,80,81],[1136,2,1,81,82],[1142,1,1,82,83],[1144,2,2,83,85],[1145,1,1,85,86]]],[58,2,1,86,87,[[1149,2,1,86,87]]],[59,7,7,87,94,[[1151,2,2,87,89],[1153,1,1,89,90],[1154,1,1,90,91],[1155,3,3,91,94]]],[60,1,1,94,95,[[1158,1,1,94,95]]],[64,1,1,95,96,[[1166,1,1,95,96]]],[65,1,1,96,97,[[1188,1,1,96,97]]]],[25013,26058,26060,26061,27055,27330,27405,27417,27440,27453,27482,27584,27650,27658,27935,28015,28026,28038,28049,28062,28064,28067,28068,28069,28082,28083,28214,28215,28248,28251,28318,28356,28360,28367,28420,28597,28728,28799,28812,28874,28899,28933,28938,28939,28941,28951,28970,29031,29057,29063,29072,29090,29102,29166,29206,29212,29213,29234,29236,29237,29253,29258,29259,29279,29301,29368,29465,29471,29533,29548,29649,29661,29677,29696,29710,29818,29828,29919,29930,29963,29986,30030,30162,30227,30240,30250,30343,30384,30387,30431,30456,30470,30475,30477,30540,30676,31101]]],["gracious",[1,1,[[41,1,1,0,1,[[976,1,1,0,1]]]],[25085]]],["joy",[1,1,[[56,1,1,0,1,[[1132,1,1,0,1]]]],[29945]]],["liberality",[1,1,[[45,1,1,0,1,[[1077,1,1,0,1]]]],[28779]]],["pleasure",[2,2,[[43,2,2,0,2,[[1041,1,1,0,1],[1042,1,1,1,2]]]],[27796,27805]]],["thank",[3,3,[[41,3,3,0,3,[[978,3,3,0,3]]]],[25178,25179,25180]]],["thanks",[3,3,[[45,1,1,0,1,[[1076,1,1,0,1]]],[46,2,2,1,3,[[1079,1,1,1,2],[1085,1,1,2,3]]]],[28775,28838,28948]]],["thankworthy",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30418]]]]},{"k":"G5486","v":[["*",[17,17,[[44,6,6,0,6,[[1046,1,1,0,1],[1050,2,2,1,3],[1051,1,1,3,4],[1056,1,1,4,5],[1057,1,1,5,6]]],[45,7,7,6,13,[[1062,1,1,6,7],[1068,1,1,7,8],[1073,5,5,8,13]]],[46,1,1,13,14,[[1078,1,1,13,14]]],[53,1,1,14,15,[[1122,1,1,14,15]]],[54,1,1,15,16,[[1125,1,1,15,16]]],[59,1,1,16,17,[[1154,1,1,16,17]]]],[27941,28062,28063,28091,28238,28251,28370,28494,28638,28643,28662,28664,28665,28811,29761,29815,30456]]],["gift",[10,10,[[44,4,4,0,4,[[1046,1,1,0,1],[1050,2,2,1,3],[1051,1,1,3,4]]],[45,2,2,4,6,[[1062,1,1,4,5],[1068,1,1,5,6]]],[46,1,1,6,7,[[1078,1,1,6,7]]],[53,1,1,7,8,[[1122,1,1,7,8]]],[54,1,1,8,9,[[1125,1,1,8,9]]],[59,1,1,9,10,[[1154,1,1,9,10]]]],[27941,28062,28063,28091,28370,28494,28811,29761,29815,30456]]],["gifts",[7,7,[[44,2,2,0,2,[[1056,1,1,0,1],[1057,1,1,1,2]]],[45,5,5,2,7,[[1073,5,5,2,7]]]],[28238,28251,28638,28643,28662,28664,28665]]]]},{"k":"G5487","v":[["*",[2,2,[[41,1,1,0,1,[[973,1,1,0,1]]],[48,1,1,1,2,[[1097,1,1,1,2]]]],[24921,29212]]],["+",[1,1,[[48,1,1,0,1,[[1097,1,1,0,1]]]],[29212]]],["favoured",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24921]]]]},{"k":"G5488","v":[["Charran",[2,2,[[43,2,2,0,2,[[1024,2,2,0,2]]]],[27118,27120]]]]},{"k":"G5489","v":[["paper",[1,1,[[62,1,1,0,1,[[1164,1,1,0,1]]]],[30657]]]]},{"k":"G5490","v":[["gulf",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25646]]]]},{"k":"G5491","v":[["*",[7,7,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[45,1,1,3,4,[[1075,1,1,3,4]]],[57,2,2,4,6,[[1143,1,1,4,5],[1145,1,1,5,6]]],[59,1,1,6,7,[[1153,1,1,6,7]]]],[23641,24469,28004,28699,30184,30256,30434]]],["+",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30184]]],["lips",[6,6,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[45,1,1,3,4,[[1075,1,1,3,4]]],[57,1,1,4,5,[[1145,1,1,4,5]]],[59,1,1,5,6,[[1153,1,1,5,6]]]],[23641,24469,28004,28699,30256,30434]]]]},{"k":"G5492","v":[["tempest",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27873]]]]},{"k":"G5493","v":[["brook",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26786]]]]},{"k":"G5494","v":[["*",[6,6,[[39,2,2,0,2,[[944,1,1,0,1],[952,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[42,1,1,3,4,[[1006,1,1,3,4]]],[43,1,1,4,5,[[1044,1,1,4,5]]],[54,1,1,5,6,[[1128,1,1,5,6]]]],[23675,23977,24735,26503,27875,29891]]],["tempest",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27875]]],["weather",[1,1,[[39,1,1,0,1,[[944,1,1,0,1]]]],[23675]]],["winter",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[42,1,1,2,3,[[1006,1,1,2,3]]],[54,1,1,3,4,[[1128,1,1,3,4]]]],[23977,24735,26503,29891]]]]},{"k":"G5495","v":[["*",[178,170,[[39,24,23,0,23,[[931,1,1,0,1],[932,1,1,1,2],[933,1,1,2,3],[936,2,2,3,5],[937,2,2,5,7],[940,3,3,7,10],[942,1,1,10,11],[943,2,2,11,13],[945,1,1,13,14],[946,2,1,14,15],[947,2,2,15,17],[950,1,1,17,18],[954,4,4,18,22],[955,1,1,22,23]]],[40,25,22,23,45,[[957,2,2,23,25],[959,4,3,25,28],[961,2,2,28,30],[962,2,2,30,32],[963,4,4,32,36],[964,3,2,36,38],[965,4,3,38,41],[966,1,1,41,42],[970,2,2,42,44],[972,1,1,44,45]]],[41,26,25,45,70,[[973,3,3,45,48],[975,1,1,48,49],[976,2,2,49,51],[977,1,1,51,52],[978,5,4,52,56],[980,1,1,56,57],[981,2,2,57,59],[985,1,1,59,60],[987,1,1,60,61],[992,1,1,61,62],[993,1,1,62,63],[994,2,2,63,65],[995,1,1,65,66],[996,4,4,66,70]]],[42,15,13,70,83,[[999,1,1,70,71],[1003,2,2,71,73],[1006,3,3,73,76],[1007,1,1,76,77],[1009,2,2,77,79],[1016,5,3,79,82],[1017,1,1,82,83]]],[43,45,44,83,127,[[1019,1,1,83,84],[1020,1,1,84,85],[1021,3,3,85,88],[1022,2,2,88,90],[1023,1,1,90,91],[1024,4,4,91,95],[1025,3,3,95,98],[1026,3,3,98,101],[1028,2,2,101,103],[1029,4,4,103,107],[1030,3,3,107,110],[1031,1,1,110,111],[1034,1,1,111,112],[1036,4,4,112,116],[1037,1,1,116,117],[1038,4,3,117,120],[1040,1,1,120,121],[1041,1,1,121,122],[1043,1,1,122,123],[1045,4,4,123,127]]],[44,1,1,127,128,[[1055,1,1,127,128]]],[45,4,4,128,132,[[1065,1,1,128,129],[1073,2,2,129,131],[1077,1,1,131,132]]],[46,1,1,132,133,[[1088,1,1,132,133]]],[47,2,2,133,135,[[1093,1,1,133,134],[1096,1,1,134,135]]],[48,1,1,135,136,[[1100,1,1,135,136]]],[50,1,1,136,137,[[1110,1,1,136,137]]],[51,1,1,137,138,[[1114,1,1,137,138]]],[52,1,1,138,139,[[1118,1,1,138,139]]],[53,3,3,139,142,[[1120,1,1,139,140],[1122,1,1,140,141],[1123,1,1,141,142]]],[54,1,1,142,143,[[1125,1,1,142,143]]],[56,1,1,143,144,[[1132,1,1,143,144]]],[57,6,6,144,150,[[1133,1,1,144,145],[1134,1,1,145,146],[1138,1,1,146,147],[1140,1,1,147,148],[1142,1,1,148,149],[1144,1,1,149,150]]],[58,1,1,150,151,[[1149,1,1,150,151]]],[59,1,1,151,152,[[1155,1,1,151,152]]],[61,1,1,152,153,[[1159,1,1,152,153]]],[65,17,17,153,170,[[1167,2,2,153,155],[1172,1,1,155,156],[1173,1,1,156,157],[1174,1,1,157,158],[1175,1,1,158,159],[1176,4,4,159,163],[1179,1,1,163,164],[1180,2,2,164,166],[1183,1,1,166,167],[1185,1,1,167,168],[1186,2,2,168,170]]]],[23204,23215,23264,23348,23360,23397,23404,23499,23502,23538,23628,23635,23653,23722,23735,23775,23777,23885,24077,24099,24104,24105,24153,24246,24256,24289,24291,24293,24387,24405,24409,24412,24465,24466,24468,24495,24523,24525,24565,24569,24581,24604,24795,24800,24891,24959,24964,24967,25042,25074,25103,25120,25147,25152,25154,25156,25299,25345,25363,25531,25610,25798,25838,25885,25917,25981,25998,26030,26031,26041,26155,26358,26372,26509,26510,26520,26567,26633,26639,26887,26892,26894,26916,26972,27003,27025,27050,27052,27071,27077,27107,27141,27151,27157,27166,27193,27194,27195,27228,27233,27257,27328,27337,27338,27344,27348,27354,27365,27373,27378,27417,27548,27591,27596,27611,27618,27660,27675,27691,27704,27753,27776,27824,27902,27903,27907,27916,28209,28445,28649,28655,28797,29022,29121,29199,29300,29560,29614,29695,29724,29761,29785,29815,29957,29973,29984,30046,30101,30164,30224,30345,30471,30541,30713,30714,30798,30819,30831,30860,30863,30866,30869,30871,30924,30935,30940,30979,31019,31039,31042]]],["+",[6,6,[[40,3,3,0,3,[[962,1,1,0,1],[963,1,1,1,2],[964,1,1,2,3]]],[41,1,1,3,4,[[976,1,1,3,4]]],[43,2,2,4,6,[[1021,1,1,4,5],[1023,1,1,5,6]]]],[24412,24495,24523,25103,27025,27107]]],["hand",[87,85,[[39,14,14,0,14,[[931,1,1,0,1],[933,1,1,1,2],[936,2,2,2,4],[937,2,2,4,6],[940,3,3,6,9],[942,1,1,9,10],[946,1,1,10,11],[950,1,1,11,12],[954,2,2,12,14]]],[40,10,9,14,23,[[957,2,2,14,16],[959,4,3,16,19],[961,1,1,19,20],[964,1,1,20,21],[965,2,2,21,23]]],[41,13,12,23,35,[[973,3,3,23,26],[975,1,1,26,27],[977,1,1,27,28],[978,4,3,28,31],[980,1,1,31,32],[981,1,1,32,33],[987,1,1,33,34],[994,1,1,34,35]]],[42,7,7,35,42,[[999,1,1,35,36],[1006,3,3,36,39],[1007,1,1,39,40],[1016,2,2,40,42]]],[43,19,19,42,61,[[1020,1,1,42,43],[1021,2,2,43,45],[1024,3,3,45,48],[1026,2,2,48,50],[1028,1,1,50,51],[1029,2,2,51,53],[1030,2,2,53,55],[1036,1,1,55,56],[1038,1,1,56,57],[1040,1,1,57,58],[1043,1,1,58,59],[1045,2,2,59,61]]],[45,3,3,61,64,[[1073,2,2,61,63],[1077,1,1,63,64]]],[47,2,2,64,66,[[1093,1,1,64,65],[1096,1,1,65,66]]],[50,1,1,66,67,[[1110,1,1,66,67]]],[52,1,1,67,68,[[1118,1,1,67,68]]],[56,1,1,68,69,[[1132,1,1,68,69]]],[57,1,1,69,70,[[1140,1,1,69,70]]],[59,1,1,70,71,[[1155,1,1,70,71]]],[65,14,14,71,85,[[1167,2,2,71,73],[1172,1,1,73,74],[1174,1,1,74,75],[1176,4,4,75,79],[1179,1,1,79,80],[1180,2,2,80,82],[1183,1,1,82,83],[1185,1,1,83,84],[1186,1,1,84,85]]]],[23204,23264,23348,23360,23397,23404,23499,23502,23538,23628,23735,23885,24077,24105,24246,24256,24289,24291,24293,24405,24523,24565,24581,24959,24964,24967,25042,25120,25152,25154,25156,25299,25363,25610,25885,26155,26509,26510,26520,26567,26892,26894,27003,27050,27052,27141,27151,27166,27228,27257,27328,27348,27354,27373,27378,27618,27704,27753,27824,27902,27903,28649,28655,28797,29121,29199,29560,29695,29957,30101,30471,30713,30714,30798,30831,30863,30866,30869,30871,30924,30935,30940,30979,31019,31039]]],["hands",[85,84,[[39,10,10,0,10,[[932,1,1,0,1],[943,2,2,1,3],[945,1,1,3,4],[946,1,1,4,5],[947,2,2,5,7],[954,2,2,7,9],[955,1,1,9,10]]],[40,12,12,10,22,[[961,1,1,10,11],[962,1,1,11,12],[963,3,3,12,15],[964,1,1,15,16],[965,2,2,16,18],[966,1,1,18,19],[970,2,2,19,21],[972,1,1,21,22]]],[41,12,12,22,34,[[976,1,1,22,23],[978,1,1,23,24],[981,1,1,24,25],[985,1,1,25,26],[992,1,1,26,27],[993,1,1,27,28],[994,1,1,28,29],[995,1,1,29,30],[996,4,4,30,34]]],[42,8,8,34,42,[[1003,2,2,34,36],[1009,2,2,36,38],[1016,3,3,38,41],[1017,1,1,41,42]]],[43,24,23,42,65,[[1019,1,1,42,43],[1022,2,2,43,45],[1024,1,1,45,46],[1025,3,3,46,49],[1026,1,1,49,50],[1028,1,1,50,51],[1029,2,2,51,53],[1030,1,1,53,54],[1031,1,1,54,55],[1034,1,1,55,56],[1036,3,3,56,59],[1037,1,1,59,60],[1038,3,2,60,62],[1041,1,1,62,63],[1045,2,2,63,65]]],[44,1,1,65,66,[[1055,1,1,65,66]]],[45,1,1,66,67,[[1065,1,1,66,67]]],[46,1,1,67,68,[[1088,1,1,67,68]]],[48,1,1,68,69,[[1100,1,1,68,69]]],[51,1,1,69,70,[[1114,1,1,69,70]]],[53,3,3,70,73,[[1120,1,1,70,71],[1122,1,1,71,72],[1123,1,1,72,73]]],[54,1,1,73,74,[[1125,1,1,73,74]]],[57,5,5,74,79,[[1133,1,1,74,75],[1134,1,1,75,76],[1138,1,1,76,77],[1142,1,1,77,78],[1144,1,1,78,79]]],[58,1,1,79,80,[[1149,1,1,79,80]]],[61,1,1,80,81,[[1159,1,1,80,81]]],[65,3,3,81,84,[[1173,1,1,81,82],[1175,1,1,82,83],[1186,1,1,83,84]]]],[23215,23635,23653,23722,23735,23775,23777,24099,24104,24153,24387,24409,24465,24466,24468,24525,24569,24581,24604,24795,24800,24891,25074,25147,25345,25531,25798,25838,25917,25981,25998,26030,26031,26041,26358,26372,26633,26639,26887,26892,26894,26916,26972,27071,27077,27157,27193,27194,27195,27233,27337,27338,27344,27365,27417,27548,27591,27596,27611,27660,27675,27691,27776,27907,27916,28209,28445,29022,29300,29614,29724,29761,29785,29815,29973,29984,30046,30164,30224,30345,30541,30819,30860,31042]]]]},{"k":"G5496","v":[["*",[2,2,[[43,2,2,0,2,[[1026,1,1,0,1],[1039,1,1,1,2]]]],[27224,27715]]],["+",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27224]]],["hand",[1,1,[[43,1,1,0,1,[[1039,1,1,0,1]]]],[27715]]]]},{"k":"G5497","v":[["hand",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27373]]]]},{"k":"G5498","v":[["handwriting",[1,1,[[50,1,1,0,1,[[1108,1,1,0,1]]]],[29508]]]]},{"k":"G5499","v":[["hands",[6,6,[[40,1,1,0,1,[[970,1,1,0,1]]],[43,2,2,1,3,[[1024,1,1,1,2],[1034,1,1,2,3]]],[48,1,1,3,4,[[1098,1,1,3,4]]],[57,2,2,4,6,[[1141,2,2,4,6]]]],[24812,27164,27547,29240,30116,30129]]]]},{"k":"G5500","v":[["*",[2,2,[[43,1,1,0,1,[[1031,1,1,0,1]]],[46,1,1,1,2,[[1085,1,1,1,2]]]],[27437,28951]]],["chosen",[1,1,[[46,1,1,0,1,[[1085,1,1,0,1]]]],[28951]]],["ordained",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27437]]]]},{"k":"G5501","v":[["*",[11,11,[[39,3,3,0,3,[[937,1,1,0,1],[940,1,1,1,2],[955,1,1,2,3]]],[40,2,2,3,5,[[958,1,1,3,4],[961,1,1,4,5]]],[41,1,1,5,6,[[983,1,1,5,6]]],[42,1,1,6,7,[[1001,1,1,6,7]]],[53,1,1,7,8,[[1123,1,1,7,8]]],[54,1,1,8,9,[[1127,1,1,8,9]]],[57,1,1,9,10,[[1142,1,1,9,10]]],[60,1,1,10,11,[[1157,1,1,10,11]]]],[23395,23534,24193,24281,24390,25431,26224,29771,29866,30162,30520]]],["+",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]]],[24390,29866]]],["sorer",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30162]]],["worse",[8,8,[[39,3,3,0,3,[[937,1,1,0,1],[940,1,1,1,2],[955,1,1,2,3]]],[40,1,1,3,4,[[958,1,1,3,4]]],[41,1,1,4,5,[[983,1,1,4,5]]],[42,1,1,5,6,[[1001,1,1,5,6]]],[53,1,1,6,7,[[1123,1,1,6,7]]],[60,1,1,7,8,[[1157,1,1,7,8]]]],[23395,23534,24193,24281,25431,26224,29771,30520]]]]},{"k":"G5502","v":[["cherubims",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30110]]]]},{"k":"G5503","v":[["*",[27,25,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,3,3,1,4,[[968,3,3,1,4]]],[41,9,9,4,13,[[974,1,1,4,5],[976,2,2,5,7],[979,1,1,7,8],[990,2,2,8,10],[992,1,1,10,11],[993,2,2,11,13]]],[43,3,3,13,16,[[1023,1,1,13,14],[1026,2,2,14,16]]],[45,1,1,16,17,[[1068,1,1,16,17]]],[53,8,6,17,23,[[1123,8,6,17,23]]],[58,1,1,23,24,[[1146,1,1,23,24]]],[65,1,1,24,25,[[1184,1,1,24,25]]]],[23932,24713,24715,24716,25010,25088,25089,25207,25691,25693,25826,25828,25829,27102,27255,27257,28495,29766,29767,29768,29772,29774,29779,30293,31000]]],["widow",[13,13,[[40,2,2,0,2,[[968,2,2,0,2]]],[41,7,7,2,9,[[974,1,1,2,3],[976,1,1,3,4],[979,1,1,4,5],[990,2,2,5,7],[993,2,2,7,9]]],[53,3,3,9,12,[[1123,3,3,9,12]]],[65,1,1,12,13,[[1184,1,1,12,13]]]],[24715,24716,25010,25089,25207,25691,25693,25828,25829,29767,29768,29772,31000]]],["widows",[11,9,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,3,3,1,4,[[1023,1,1,1,2],[1026,2,2,2,4]]],[45,1,1,4,5,[[1068,1,1,4,5]]],[53,5,3,5,8,[[1123,5,3,5,8]]],[58,1,1,8,9,[[1146,1,1,8,9]]]],[25088,27102,27255,27257,28495,29766,29774,29779,30293]]],["widows'",[3,3,[[39,1,1,0,1,[[951,1,1,0,1]]],[40,1,1,1,2,[[968,1,1,1,2]]],[41,1,1,2,3,[[992,1,1,2,3]]]],[23932,24713,25826]]]]},{"k":"G5504","v":[["*",[3,3,[[42,1,1,0,1,[[1000,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]],[57,1,1,2,3,[[1145,1,1,2,3]]]],[26208,27144,30249]]],["Yesterday",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26208]]],["yesterday",[2,2,[[43,1,1,0,1,[[1024,1,1,0,1]]],[57,1,1,1,2,[[1145,1,1,1,2]]]],[27144,30249]]]]},{"k":"G5505","v":[["*",[23,13,[[41,2,1,0,1,[[986,2,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]],[45,1,1,2,3,[[1071,1,1,2,3]]],[65,19,10,3,13,[[1171,2,1,3,4],[1173,13,5,4,9],[1177,1,1,9,10],[1180,2,2,10,12],[1187,1,1,12,13]]]],[25584,27026,28575,30790,30814,30815,30816,30817,30818,30885,30927,30929,31069]]],["+",[7,6,[[45,1,1,0,1,[[1071,1,1,0,1]]],[65,6,5,1,6,[[1171,2,1,1,2],[1173,1,1,2,3],[1180,2,2,3,5],[1187,1,1,5,6]]]],[28575,30790,30814,30927,30929,31069]]],["thousand",[16,7,[[41,2,1,0,1,[[986,2,1,0,1]]],[43,1,1,1,2,[[1021,1,1,1,2]]],[65,13,5,2,7,[[1173,12,4,2,6],[1177,1,1,6,7]]]],[25584,27026,30815,30816,30817,30818,30885]]]]},{"k":"G5506","v":[["*",[22,22,[[40,1,1,0,1,[[962,1,1,0,1]]],[42,1,1,1,2,[[1014,1,1,1,2]]],[43,18,18,2,20,[[1038,4,4,2,6],[1039,5,5,6,11],[1040,6,6,11,17],[1041,2,2,17,19],[1042,1,1,19,20]]],[65,2,2,20,22,[[1172,1,1,20,21],[1185,1,1,21,22]]]],[24428,26797,27695,27696,27697,27701,27728,27730,27731,27732,27733,27744,27749,27751,27752,27753,27756,27776,27791,27819,30808,31035]]],["+",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27701]]],["captain",[17,17,[[42,1,1,0,1,[[1014,1,1,0,1]]],[43,16,16,1,17,[[1038,3,3,1,4],[1039,5,5,4,9],[1040,6,6,9,15],[1041,2,2,15,17]]]],[26797,27695,27696,27697,27728,27730,27731,27732,27733,27744,27749,27751,27752,27753,27756,27776,27791]]],["captains",[4,4,[[40,1,1,0,1,[[962,1,1,0,1]]],[43,1,1,1,2,[[1042,1,1,1,2]]],[65,2,2,2,4,[[1172,1,1,2,3],[1185,1,1,3,4]]]],[24428,27819,30808,31035]]]]},{"k":"G5507","v":[["*",[11,10,[[60,2,1,0,1,[[1158,2,1,0,1]]],[65,9,9,1,10,[[1177,1,1,1,2],[1178,1,1,2,3],[1180,1,1,3,4],[1186,6,6,4,10]]]],[30530,30875,30897,30946,31040,31041,31042,31043,31044,31045]]],["+",[3,3,[[65,3,3,0,3,[[1177,1,1,0,1],[1178,1,1,1,2],[1180,1,1,2,3]]]],[30875,30897,30946]]],["thousand",[8,7,[[60,2,1,0,1,[[1158,2,1,0,1]]],[65,6,6,1,7,[[1186,6,6,1,7]]]],[30530,31040,31041,31042,31043,31044,31045]]]]},{"k":"G5508","v":[["Chios",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27641]]]]},{"k":"G5509","v":[["*",[11,10,[[39,2,2,0,2,[[933,1,1,0,1],[938,1,1,1,2]]],[40,2,2,2,4,[[962,1,1,2,3],[970,1,1,3,4]]],[41,3,3,4,7,[[975,1,1,4,5],[978,1,1,5,6],[981,1,1,6,7]]],[42,2,1,7,8,[[1015,2,1,7,8]]],[43,1,1,8,9,[[1026,1,1,8,9]]],[64,1,1,9,10,[[1166,1,1,9,10]]]],[23274,23427,24416,24817,25036,25175,25304,26848,27255,30695]]],["clothes",[1,1,[[40,1,1,0,1,[[970,1,1,0,1]]]],[24817]]],["coat",[4,3,[[39,1,1,0,1,[[933,1,1,0,1]]],[41,1,1,1,2,[[978,1,1,1,2]]],[42,2,1,2,3,[[1015,2,1,2,3]]]],[23274,25175,26848]]],["coats",[5,5,[[39,1,1,0,1,[[938,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,2,2,2,4,[[975,1,1,2,3],[981,1,1,3,4]]],[43,1,1,4,5,[[1026,1,1,4,5]]]],[23427,24416,25036,25304,27255]]],["garment",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30695]]]]},{"k":"G5510","v":[["snow",[3,3,[[39,1,1,0,1,[[956,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[65,1,1,2,3,[[1167,1,1,2,3]]]],[24198,24541,30711]]]]},{"k":"G5511","v":[["robe",[2,2,[[39,2,2,0,2,[[955,2,2,0,2]]]],[24157,24160]]]]},{"k":"G5512","v":[["*",[2,2,[[43,2,2,0,2,[[1019,1,1,0,1],[1034,1,1,1,2]]]],[26962,27555]]],["mocked",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27555]]],["mocking",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26962]]]]},{"k":"G5513","v":[["lukewarm",[1,1,[[65,1,1,0,1,[[1169,1,1,0,1]]]],[30762]]]]},{"k":"G5514","v":[["Chloe",[1,1,[[45,1,1,0,1,[[1062,1,1,0,1]]]],[28374]]]]},{"k":"G5515","v":[["*",[4,4,[[40,1,1,0,1,[[962,1,1,0,1]]],[65,3,3,1,4,[[1172,1,1,1,2],[1174,1,1,2,3],[1175,1,1,3,4]]]],[24446,30801,30834,30844]]],["green",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[65,1,1,1,2,[[1174,1,1,1,2]]]],[24446,30834]]],["pale",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30801]]],["thing",[1,1,[[65,1,1,0,1,[[1175,1,1,0,1]]]],[30844]]]]},{"k":"G5516","v":[["six",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30926]]]]},{"k":"G5517","v":[["*",[4,3,[[45,4,3,0,3,[[1076,4,3,0,3]]]],[28765,28766,28767]]],["+",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28766]]],["earthy",[3,3,[[45,3,3,0,3,[[1076,3,3,0,3]]]],[28765,28766,28767]]]]},{"k":"G5518","v":[["*",[2,1,[[65,2,1,0,1,[[1172,2,1,0,1]]]],[30799]]],["measure",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30799]]],["measures",[1,1,[[65,1,1,0,1,[[1172,1,1,0,1]]]],[30799]]]]},{"k":"G5519","v":[["swine",[14,13,[[39,5,4,0,4,[[935,1,1,0,1],[936,4,3,1,4]]],[40,5,5,4,9,[[961,5,5,4,9]]],[41,4,4,9,13,[[980,2,2,9,11],[987,2,2,11,13]]]],[23322,23375,23376,23377,24375,24376,24377,24378,24380,25277,25278,25603,25604]]]]},{"k":"G5520","v":[["angry",[1,1,[[42,1,1,0,1,[[1003,1,1,0,1]]]],[26351]]]]},{"k":"G5521","v":[["gall",[2,2,[[39,1,1,0,1,[[955,1,1,0,1]]],[43,1,1,1,2,[[1025,1,1,1,2]]]],[24163,27199]]]]},{"k":"G5522","v":[["dust",[2,2,[[40,1,1,0,1,[[962,1,1,0,1]]],[65,1,1,1,2,[[1184,1,1,1,2]]]],[24418,31012]]]]},{"k":"G5523","v":[["Chorazin",[2,2,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[982,1,1,1,2]]]],[23480,25376]]]]},{"k":"G5524","v":[["*",[2,2,[[46,1,1,0,1,[[1086,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[28966,30457]]],["giveth",[1,1,[[59,1,1,0,1,[[1154,1,1,0,1]]]],[30457]]],["minister",[1,1,[[46,1,1,0,1,[[1086,1,1,0,1]]]],[28966]]]]},{"k":"G5525","v":[["dancing",[1,1,[[41,1,1,0,1,[[987,1,1,0,1]]]],[25613]]]]},{"k":"G5526","v":[["*",[15,15,[[39,4,4,0,4,[[933,1,1,0,1],[942,1,1,1,2],[943,2,2,2,4]]],[40,4,4,4,8,[[962,1,1,4,5],[963,1,1,5,6],[964,2,2,6,8]]],[41,3,3,8,11,[[978,1,1,8,9],[981,1,1,9,10],[988,1,1,10,11]]],[42,1,1,11,12,[[1002,1,1,11,12]]],[49,1,1,12,13,[[1106,1,1,12,13]]],[58,1,1,13,14,[[1147,1,1,13,14]]],[65,1,1,14,15,[[1185,1,1,14,15]]]],[23240,23617,23666,23670,24449,24490,24504,24508,25167,25318,25641,26283,29454,30309,31038]]],["fed",[1,1,[[41,1,1,0,1,[[988,1,1,0,1]]]],[25641]]],["fill",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23666]]],["filled",[11,11,[[39,3,3,0,3,[[933,1,1,0,1],[942,1,1,1,2],[943,1,1,2,3]]],[40,3,3,3,6,[[962,1,1,3,4],[963,1,1,4,5],[964,1,1,5,6]]],[41,2,2,6,8,[[978,1,1,6,7],[981,1,1,7,8]]],[42,1,1,8,9,[[1002,1,1,8,9]]],[58,1,1,9,10,[[1147,1,1,9,10]]],[65,1,1,10,11,[[1185,1,1,10,11]]]],[23240,23617,23670,24449,24490,24508,25167,25318,26283,30309,31038]]],["full",[1,1,[[49,1,1,0,1,[[1106,1,1,0,1]]]],[29454]]],["satisfy",[1,1,[[40,1,1,0,1,[[964,1,1,0,1]]]],[24504]]]]},{"k":"G5527","v":[["sustenance",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27127]]]]},{"k":"G5528","v":[["*",[15,13,[[39,3,3,0,3,[[934,1,1,0,1],[941,1,1,1,2],[942,1,1,2,3]]],[40,2,2,3,5,[[960,1,1,3,4],[962,1,1,4,5]]],[41,1,1,5,6,[[984,1,1,5,6]]],[42,1,1,6,7,[[1002,1,1,6,7]]],[45,1,1,7,8,[[1064,1,1,7,8]]],[58,2,2,8,10,[[1146,2,2,8,10]]],[59,3,1,10,11,[[1151,3,1,10,11]]],[65,2,2,11,13,[[1174,1,1,11,12],[1175,1,1,12,13]]]],[23312,23565,23616,24351,24446,25487,26267,28422,30276,30277,30398,30834,30844]]],["blade",[2,2,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]]],[23565,24351]]],["grass",[12,10,[[39,2,2,0,2,[[934,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[962,1,1,2,3]]],[41,1,1,3,4,[[984,1,1,3,4]]],[42,1,1,4,5,[[1002,1,1,4,5]]],[58,2,2,5,7,[[1146,2,2,5,7]]],[59,3,1,7,8,[[1151,3,1,7,8]]],[65,2,2,8,10,[[1174,1,1,8,9],[1175,1,1,9,10]]]],[23312,23616,24446,25487,26267,30276,30277,30398,30834,30844]]],["hay",[1,1,[[45,1,1,0,1,[[1064,1,1,0,1]]]],[28422]]]]},{"k":"G5529","v":[["Chuza",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25248]]]]},{"k":"G5530","v":[["*",[11,11,[[43,2,2,0,2,[[1044,2,2,0,2]]],[45,4,4,2,6,[[1068,2,2,2,4],[1070,2,2,4,6]]],[46,3,3,6,9,[[1078,1,1,6,7],[1080,1,1,7,8],[1090,1,1,8,9]]],[53,2,2,9,11,[[1119,1,1,9,10],[1123,1,1,10,11]]]],[27858,27872,28508,28518,28552,28555,28817,28853,29053,29704,29786]]],["entreated",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27858]]],["use",[7,7,[[45,2,2,0,2,[[1068,2,2,0,2]]],[46,3,3,2,5,[[1078,1,1,2,3],[1080,1,1,3,4],[1090,1,1,4,5]]],[53,2,2,5,7,[[1119,1,1,5,6],[1123,1,1,6,7]]]],[28508,28518,28817,28853,29053,29704,29786]]],["used",[3,3,[[43,1,1,0,1,[[1044,1,1,0,1]]],[45,2,2,1,3,[[1070,2,2,1,3]]]],[27872,28552,28555]]]]},{"k":"G5531","v":[["lend",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25410]]]]},{"k":"G5532","v":[["*",[49,47,[[39,6,6,0,6,[[931,1,1,0,1],[934,1,1,1,2],[937,1,1,2,3],[942,1,1,3,4],[949,1,1,4,5],[954,1,1,5,6]]],[40,4,4,6,10,[[958,2,2,6,8],[967,1,1,8,9],[970,1,1,9,10]]],[41,7,7,10,17,[[977,1,1,10,11],[981,1,1,11,12],[982,1,1,12,13],[987,1,1,13,14],[991,2,2,14,16],[994,1,1,16,17]]],[42,4,4,17,21,[[998,1,1,17,18],[1009,2,2,18,20],[1012,1,1,20,21]]],[43,5,5,21,26,[[1019,1,1,21,22],[1021,1,1,22,23],[1023,1,1,23,24],[1037,1,1,24,25],[1045,1,1,25,26]]],[44,1,1,26,27,[[1057,1,1,26,27]]],[45,3,2,27,29,[[1073,3,2,27,29]]],[48,2,2,29,31,[[1100,2,2,29,31]]],[49,3,3,31,34,[[1104,1,1,31,32],[1106,2,2,32,34]]],[51,4,4,34,38,[[1111,1,1,34,35],[1114,2,2,35,37],[1115,1,1,37,38]]],[55,1,1,38,39,[[1131,1,1,38,39]]],[57,4,3,39,42,[[1137,2,1,39,40],[1139,1,1,40,41],[1142,1,1,41,42]]],[61,2,2,42,44,[[1160,1,1,42,43],[1161,1,1,43,44]]],[65,3,3,44,47,[[1169,1,1,44,45],[1187,1,1,45,46],[1188,1,1,46,47]]]],[23206,23290,23391,23613,23829,24119,24277,24285,24643,24817,25138,25312,25405,25595,25762,25765,25935,26120,26640,26659,26756,26994,27057,27104,27660,27909,28258,28655,28658,29300,29301,29416,29458,29461,29568,29612,29615,29622,29937,30042,30075,30169,30577,30596,30763,31076,31085]]],["+",[15,15,[[39,2,2,0,2,[[937,1,1,0,1],[942,1,1,1,2]]],[40,1,1,2,3,[[970,1,1,2,3]]],[41,3,3,3,6,[[977,1,1,3,4],[987,1,1,4,5],[994,1,1,5,6]]],[42,3,3,6,9,[[998,1,1,6,7],[1009,1,1,7,8],[1012,1,1,8,9]]],[43,1,1,9,10,[[1045,1,1,9,10]]],[48,1,1,10,11,[[1100,1,1,10,11]]],[51,2,2,11,13,[[1111,1,1,11,12],[1114,1,1,12,13]]],[61,1,1,13,14,[[1160,1,1,13,14]]],[65,1,1,14,15,[[1188,1,1,14,15]]]],[23391,23613,24817,25138,25595,25935,26120,26640,26756,27909,29300,29568,29612,30577,31085]]],["business",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27104]]],["lack",[1,1,[[51,1,1,0,1,[[1114,1,1,0,1]]]],[29615]]],["necessities",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27660]]],["necessity",[2,2,[[44,1,1,0,1,[[1057,1,1,0,1]]],[49,1,1,1,2,[[1106,1,1,1,2]]]],[28258,29458]]],["need",[25,23,[[39,4,4,0,4,[[931,1,1,0,1],[934,1,1,1,2],[949,1,1,2,3],[954,1,1,3,4]]],[40,3,3,4,7,[[958,2,2,4,6],[967,1,1,6,7]]],[41,3,3,7,10,[[981,1,1,7,8],[991,2,2,8,10]]],[42,1,1,10,11,[[1009,1,1,10,11]]],[43,2,2,11,13,[[1019,1,1,11,12],[1021,1,1,12,13]]],[45,3,2,13,15,[[1073,3,2,13,15]]],[49,1,1,15,16,[[1106,1,1,15,16]]],[51,1,1,16,17,[[1115,1,1,16,17]]],[57,4,3,17,20,[[1137,2,1,17,18],[1139,1,1,18,19],[1142,1,1,19,20]]],[61,1,1,20,21,[[1161,1,1,20,21]]],[65,2,2,21,23,[[1169,1,1,21,22],[1187,1,1,22,23]]]],[23206,23290,23829,24119,24277,24285,24643,25312,25762,25765,26659,26994,27057,28655,28658,29461,29622,30042,30075,30169,30596,30763,31076]]],["needful",[1,1,[[41,1,1,0,1,[[982,1,1,0,1]]]],[25405]]],["use",[1,1,[[48,1,1,0,1,[[1100,1,1,0,1]]]],[29301]]],["uses",[1,1,[[55,1,1,0,1,[[1131,1,1,0,1]]]],[29937]]],["wants",[1,1,[[49,1,1,0,1,[[1104,1,1,0,1]]]],[29416]]]]},{"k":"G5533","v":[["debtors",[2,2,[[41,2,2,0,2,[[979,1,1,0,1],[988,1,1,1,2]]]],[25236,25625]]]]},{"k":"G5534","v":[["ought",[1,1,[[58,1,1,0,1,[[1148,1,1,0,1]]]],[30329]]]]},{"k":"G5535","v":[["*",[5,5,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,2,2,1,3,[[983,1,1,1,2],[984,1,1,2,3]]],[44,1,1,3,4,[[1061,1,1,3,4]]],[46,1,1,4,5,[[1080,1,1,4,5]]]],[23314,25413,25489,28338,28842]]],["need",[4,4,[[39,1,1,0,1,[[934,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]],[44,1,1,2,3,[[1061,1,1,2,3]]],[46,1,1,3,4,[[1080,1,1,3,4]]]],[23314,25489,28338,28842]]],["needeth",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25413]]]]},{"k":"G5536","v":[["*",[7,7,[[40,2,2,0,2,[[966,2,2,0,2]]],[41,1,1,2,3,[[990,1,1,2,3]]],[43,4,4,3,7,[[1021,1,1,3,4],[1025,2,2,4,6],[1041,1,1,6,7]]]],[24611,24612,25712,27059,27194,27196,27795]]],["money",[4,4,[[43,4,4,0,4,[[1021,1,1,0,1],[1025,2,2,1,3],[1041,1,1,3,4]]]],[27059,27194,27196,27795]]],["riches",[3,3,[[40,2,2,0,2,[[966,2,2,0,2]]],[41,1,1,2,3,[[990,1,1,2,3]]]],[24611,24612,25712]]]]},{"k":"G5537","v":[["*",[9,9,[[39,2,2,0,2,[[930,2,2,0,2]]],[41,1,1,2,3,[[974,1,1,2,3]]],[43,2,2,3,5,[[1027,1,1,3,4],[1028,1,1,4,5]]],[44,1,1,5,6,[[1052,1,1,5,6]]],[57,3,3,6,9,[[1140,1,1,6,7],[1143,1,1,7,8],[1144,1,1,8,9]]]],[23181,23191,24999,27281,27333,28094,30097,30179,30237]]],["God",[5,5,[[39,2,2,0,2,[[930,2,2,0,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]],[57,2,2,3,5,[[1140,1,1,3,4],[1143,1,1,4,5]]]],[23181,23191,27281,30097,30179]]],["called",[2,2,[[43,1,1,0,1,[[1028,1,1,0,1]]],[44,1,1,1,2,[[1052,1,1,1,2]]]],[27333,28094]]],["revealed",[1,1,[[41,1,1,0,1,[[974,1,1,0,1]]]],[24999]]],["spake",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30237]]]]},{"k":"G5538","v":[["God",[1,1,[[44,1,1,0,1,[[1056,1,1,0,1]]]],[28213]]]]},{"k":"G5539","v":[["+",[1,1,[[54,1,1,0,1,[[1126,1,1,0,1]]]],[29841]]]]},{"k":"G5540","v":[["use",[2,2,[[44,2,2,0,2,[[1046,2,2,0,2]]]],[27956,27957]]]]},{"k":"G5541","v":[["kind",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28669]]]]},{"k":"G5542","v":[["words",[1,1,[[44,1,1,0,1,[[1061,1,1,0,1]]]],[28354]]]]},{"k":"G5543","v":[["*",[7,7,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,2,2,1,3,[[977,1,1,1,2],[978,1,1,2,3]]],[44,1,1,3,4,[[1047,1,1,3,4]]],[45,1,1,4,5,[[1076,1,1,4,5]]],[48,1,1,5,6,[[1100,1,1,5,6]]],[59,1,1,6,7,[[1152,1,1,6,7]]]],[23489,25146,25181,27966,28751,29304,30402]]],["better",[1,1,[[41,1,1,0,1,[[977,1,1,0,1]]]],[25146]]],["easy",[1,1,[[39,1,1,0,1,[[939,1,1,0,1]]]],[23489]]],["good",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28751]]],["goodness",[1,1,[[44,1,1,0,1,[[1047,1,1,0,1]]]],[27966]]],["gracious",[1,1,[[59,1,1,0,1,[[1152,1,1,0,1]]]],[30402]]],["kind",[2,2,[[41,1,1,0,1,[[978,1,1,0,1]]],[48,1,1,1,2,[[1100,1,1,1,2]]]],[25181,29304]]]]},{"k":"G5544","v":[["*",[10,8,[[44,5,3,0,3,[[1047,1,1,0,1],[1048,1,1,1,2],[1056,3,1,2,3]]],[46,1,1,3,4,[[1083,1,1,3,4]]],[47,1,1,4,5,[[1095,1,1,4,5]]],[48,1,1,5,6,[[1098,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[55,1,1,7,8,[[1131,1,1,7,8]]]],[27966,28003,28231,28904,29184,29236,29529,29927]]],["gentleness",[1,1,[[47,1,1,0,1,[[1095,1,1,0,1]]]],[29184]]],["good",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[28003]]],["goodness",[4,2,[[44,4,2,0,2,[[1047,1,1,0,1],[1056,3,1,1,2]]]],[27966,28231]]],["kindness",[4,4,[[46,1,1,0,1,[[1083,1,1,0,1]]],[48,1,1,1,2,[[1098,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]],[55,1,1,3,4,[[1131,1,1,3,4]]]],[28904,29236,29529,29927]]]]},{"k":"G5545","v":[["*",[3,2,[[61,3,2,0,2,[[1160,3,2,0,2]]]],[30570,30577]]],["anointing",[2,1,[[61,2,1,0,1,[[1160,2,1,0,1]]]],[30577]]],["unction",[1,1,[[61,1,1,0,1,[[1160,1,1,0,1]]]],[30570]]]]},{"k":"G5546","v":[["*",[3,3,[[43,2,2,0,2,[[1028,1,1,0,1],[1043,1,1,1,2]]],[59,1,1,2,3,[[1154,1,1,2,3]]]],[27333,27851,30462]]],["Christian",[2,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[59,1,1,1,2,[[1154,1,1,1,2]]]],[27851,30462]]],["Christians",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27333]]]]},{"k":"G5547","v":[["*",[569,530,[[39,17,17,0,17,[[929,4,4,0,4],[930,1,1,4,5],[939,1,1,5,6],[944,2,2,6,8],[950,1,1,8,9],[951,2,2,9,11],[952,2,2,11,13],[954,2,2,13,15],[955,2,2,15,17]]],[40,7,7,17,24,[[957,1,1,17,18],[964,1,1,18,19],[965,1,1,19,20],[968,1,1,20,21],[969,1,1,21,22],[970,1,1,22,23],[971,1,1,23,24]]],[41,13,12,24,36,[[974,2,2,24,26],[975,1,1,26,27],[976,2,1,27,28],[981,1,1,28,29],[992,1,1,29,30],[994,1,1,30,31],[995,3,3,31,34],[996,2,2,34,36]]],[42,21,20,36,56,[[997,4,4,36,40],[999,1,1,40,41],[1000,3,3,41,44],[1002,1,1,44,45],[1003,6,5,45,50],[1005,1,1,50,51],[1006,1,1,51,52],[1007,1,1,52,53],[1008,1,1,53,54],[1013,1,1,54,55],[1016,1,1,55,56]]],[43,31,30,56,86,[[1019,4,4,56,60],[1020,3,3,60,63],[1021,2,2,63,65],[1022,1,1,65,66],[1025,3,3,66,69],[1026,3,3,69,72],[1027,1,1,72,73],[1028,1,1,73,74],[1032,2,2,74,76],[1033,2,2,76,78],[1034,2,1,78,79],[1035,2,2,79,81],[1036,1,1,81,82],[1037,1,1,82,83],[1041,1,1,83,84],[1043,1,1,84,85],[1045,1,1,85,86]]],[44,68,68,86,154,[[1046,6,6,86,92],[1047,1,1,92,93],[1048,2,2,93,95],[1050,7,7,95,102],[1051,6,6,102,108],[1052,2,2,108,110],[1053,9,9,110,119],[1054,3,3,119,122],[1055,3,3,122,125],[1057,1,1,125,126],[1058,1,1,126,127],[1059,4,4,127,131],[1060,12,12,131,143],[1061,11,11,143,154]]],[45,69,59,154,213,[[1062,17,15,154,169],[1063,2,2,169,171],[1064,4,3,171,174],[1065,6,4,174,178],[1066,3,2,178,180],[1067,2,1,180,181],[1068,1,1,181,182],[1069,3,3,182,185],[1070,4,4,185,189],[1071,4,3,189,192],[1072,3,2,192,194],[1073,2,2,194,196],[1076,15,14,196,210],[1077,3,3,210,213]]],[46,49,45,213,258,[[1078,7,6,213,219],[1079,5,5,219,224],[1080,3,3,224,227],[1081,3,3,227,230],[1082,8,7,230,237],[1083,1,1,237,238],[1085,2,2,238,240],[1086,1,1,240,241],[1087,6,4,241,245],[1088,6,6,245,251],[1089,4,4,251,255],[1090,3,3,255,258]]],[47,41,36,258,294,[[1091,7,7,258,265],[1092,9,5,265,270],[1093,12,11,270,281],[1094,3,3,281,284],[1095,5,5,284,289],[1096,5,5,289,294]]],[48,46,43,294,337,[[1097,10,8,294,302],[1098,8,7,302,309],[1099,10,10,309,319],[1100,6,6,319,325],[1101,8,8,325,333],[1102,4,4,333,337]]],[49,38,36,337,373,[[1103,18,17,337,354],[1104,6,6,354,360],[1105,9,8,360,368],[1106,5,5,368,373]]],[50,26,24,373,397,[[1107,9,8,373,381],[1108,7,7,381,388],[1109,8,7,388,395],[1110,2,2,395,397]]],[51,14,13,397,410,[[1111,3,2,397,399],[1112,3,3,399,402],[1113,3,3,402,405],[1114,1,1,405,406],[1115,4,4,406,410]]],[52,13,12,410,422,[[1116,5,4,410,414],[1117,4,4,414,418],[1118,4,4,418,422]]],[53,16,15,422,437,[[1119,7,6,422,428],[1120,2,2,428,430],[1121,1,1,430,431],[1122,1,1,431,432],[1123,2,2,432,434],[1124,3,3,434,437]]],[54,15,14,437,451,[[1125,6,5,437,442],[1126,5,5,442,447],[1127,2,2,447,449],[1128,2,2,449,451]]],[55,4,4,451,455,[[1129,2,2,451,453],[1130,1,1,453,454],[1131,1,1,454,455]]],[56,7,7,455,462,[[1132,7,7,455,462]]],[57,13,13,462,475,[[1135,3,3,462,465],[1137,1,1,465,466],[1138,1,1,466,467],[1141,4,4,467,471],[1142,1,1,471,472],[1143,1,1,472,473],[1145,2,2,473,475]]],[58,2,2,475,477,[[1146,1,1,475,476],[1147,1,1,476,477]]],[59,21,19,477,496,[[1151,9,7,477,484],[1152,2,2,484,486],[1153,3,3,486,489],[1154,4,4,489,493],[1155,3,3,493,496]]],[60,8,7,496,503,[[1156,6,5,496,501],[1157,1,1,501,502],[1158,1,1,502,503]]],[61,10,10,503,513,[[1159,2,2,503,505],[1160,2,2,505,507],[1161,1,1,507,508],[1162,2,2,508,510],[1163,3,3,510,513]]],[62,4,3,513,516,[[1164,4,3,513,516]]],[64,5,4,516,520,[[1166,5,4,516,520]]],[65,11,10,520,530,[[1167,5,4,520,524],[1177,1,1,524,525],[1178,2,2,525,527],[1186,2,2,527,529],[1188,1,1,529,530]]]],[23145,23160,23161,23162,23173,23461,23688,23692,23914,23926,23928,23962,23980,24117,24122,24146,24151,24216,24529,24579,24708,24738,24815,24858,24984,24999,25040,25104,25321,25820,25931,25937,25970,25974,26017,26037,26061,26064,26069,26085,26148,26181,26185,26198,26326,26354,26355,26359,26369,26370,26462,26505,26550,26614,26762,26898,26979,26980,26985,26987,27002,27014,27016,27032,27048,27101,27181,27188,27213,27236,27238,27250,27295,27324,27453,27468,27501,27514,27526,27562,27585,27589,27647,27793,27846,27930,27931,27933,27936,27937,27938,27946,27978,28013,28015,28048,28053,28055,28058,28062,28064,28068,28071,28072,28076,28077,28079,28091,28095,28116,28117,28118,28125,28126,28127,28133,28150,28151,28155,28156,28158,28160,28192,28194,28195,28250,28280,28289,28290,28295,28298,28306,28308,28309,28310,28311,28319,28320,28321,28322,28323,28332,28333,28339,28341,28343,28345,28346,28352,28354,28356,28360,28361,28363,28364,28365,28366,28367,28369,28370,28371,28372,28373,28375,28376,28380,28386,28387,28393,28396,28410,28411,28421,28433,28434,28443,28448,28450,28458,28461,28482,28509,28533,28538,28539,28541,28552,28558,28561,28571,28576,28583,28601,28603,28646,28661,28721,28730,28731,28732,28733,28734,28735,28736,28737,28738,28740,28741,28749,28775,28798,28799,28800,28801,28802,28803,28805,28819,28821,28834,28836,28838,28839,28841,28844,28845,28855,28863,28864,28865,28887,28891,28893,28894,28895,28896,28897,28913,28941,28955,28969,28972,28976,28978,28985,28991,28992,28999,29002,29012,29020,29024,29031,29032,29041,29046,29048,29057,29058,29060,29063,29064,29067,29069,29079,29085,29097,29098,29101,29102,29103,29115,29116,29118,29119,29124,29126,29128,29129,29130,29131,29138,29145,29150,29163,29164,29166,29168,29186,29190,29200,29202,29203,29206,29207,29208,29209,29211,29216,29218,29223,29226,29234,29235,29236,29239,29241,29242,29249,29252,29255,29257,29259,29260,29262,29265,29268,29270,29272,29279,29284,29285,29287,29292,29304,29306,29309,29318,29324,29327,29328,29329,29336,29342,29343,29360,29361,29362,29363,29367,29369,29371,29372,29374,29376,29377,29379,29380,29381,29382,29384,29387,29388,29390,29392,29396,29402,29407,29412,29421,29424,29428,29429,29430,29433,29435,29439,29441,29449,29455,29461,29463,29465,29466,29467,29468,29469,29472,29489,29492,29493,29496,29499,29500,29502,29505,29511,29514,29518,29520,29521,29528,29530,29533,29541,29545,29554,29561,29563,29576,29584,29589,29592,29601,29603,29619,29630,29639,29644,29649,29650,29651,29657,29661,29662,29663,29675,29677,29683,29684,29690,29696,29697,29698,29708,29710,29711,29712,29721,29723,29744,29753,29774,29784,29791,29801,29802,29810,29811,29818,29819,29822,29828,29830,29835,29837,29846,29865,29868,29871,29892,29893,29896,29921,29929,29939,29941,29944,29946,29947,29961,29963,29996,30001,30009,30035,30045,30116,30119,30129,30133,30143,30198,30249,30262,30267,30294,30375,30376,30377,30381,30385,30387,30393,30404,30420,30440,30442,30445,30447,30457,30459,30460,30466,30475,30479,30480,30487,30490,30493,30495,30520,30540,30543,30547,30551,30572,30602,30605,30606,30625,30630,30644,30648,30652,30654,30673,30676,30689,30693,30698,30699,30702,30706,30887,30901,30908,31042,31044,31101]]],["+",[8,8,[[41,1,1,0,1,[[975,1,1,0,1]]],[44,3,3,1,4,[[1055,2,2,1,3],[1060,1,1,3,4]]],[45,1,1,4,5,[[1065,1,1,4,5]]],[46,2,2,5,7,[[1082,1,1,5,6],[1089,1,1,6,7]]],[48,1,1,7,8,[[1100,1,1,7,8]]]],[25040,28194,28195,28333,28443,28897,29032,29304]]],["Christ",[548,515,[[39,17,17,0,17,[[929,4,4,0,4],[930,1,1,4,5],[939,1,1,5,6],[944,2,2,6,8],[950,1,1,8,9],[951,2,2,9,11],[952,2,2,11,13],[954,2,2,13,15],[955,2,2,15,17]]],[40,7,7,17,24,[[957,1,1,17,18],[964,1,1,18,19],[965,1,1,19,20],[968,1,1,20,21],[969,1,1,21,22],[970,1,1,22,23],[971,1,1,23,24]]],[41,12,11,24,35,[[974,2,2,24,26],[976,2,1,26,27],[981,1,1,27,28],[992,1,1,28,29],[994,1,1,29,30],[995,3,3,30,33],[996,2,2,33,35]]],[42,21,20,35,55,[[997,4,4,35,39],[999,1,1,39,40],[1000,3,3,40,43],[1002,1,1,43,44],[1003,6,5,44,49],[1005,1,1,49,50],[1006,1,1,50,51],[1007,1,1,51,52],[1008,1,1,52,53],[1013,1,1,53,54],[1016,1,1,54,55]]],[43,31,30,55,85,[[1019,4,4,55,59],[1020,3,3,59,62],[1021,2,2,62,64],[1022,1,1,64,65],[1025,3,3,65,68],[1026,3,3,68,71],[1027,1,1,71,72],[1028,1,1,72,73],[1032,2,2,73,75],[1033,2,2,75,77],[1034,2,1,77,78],[1035,2,2,78,80],[1036,1,1,80,81],[1037,1,1,81,82],[1041,1,1,82,83],[1043,1,1,83,84],[1045,1,1,84,85]]],[44,65,65,85,150,[[1046,6,6,85,91],[1047,1,1,91,92],[1048,2,2,92,94],[1050,7,7,94,101],[1051,6,6,101,107],[1052,2,2,107,109],[1053,9,9,109,118],[1054,3,3,118,121],[1055,1,1,121,122],[1057,1,1,122,123],[1058,1,1,123,124],[1059,4,4,124,128],[1060,11,11,128,139],[1061,11,11,139,150]]],[45,65,58,150,208,[[1062,17,15,150,165],[1063,2,2,165,167],[1064,3,3,167,170],[1065,5,4,170,174],[1066,3,2,174,176],[1067,2,1,176,177],[1069,3,3,177,180],[1070,4,4,180,184],[1071,4,3,184,187],[1072,3,2,187,189],[1073,2,2,189,191],[1076,14,14,191,205],[1077,3,3,205,208]]],[46,42,41,208,249,[[1078,7,6,208,214],[1079,4,4,214,218],[1080,3,3,218,221],[1081,3,3,221,224],[1082,7,7,224,231],[1083,1,1,231,232],[1085,2,2,232,234],[1086,1,1,234,235],[1087,3,3,235,238],[1088,5,5,238,243],[1089,3,3,243,246],[1090,3,3,246,249]]],[47,39,34,249,283,[[1091,7,7,249,256],[1092,9,5,256,261],[1093,11,10,261,271],[1094,3,3,271,274],[1095,4,4,274,278],[1096,5,5,278,283]]],[48,44,41,283,324,[[1097,10,8,283,291],[1098,7,6,291,297],[1099,10,10,297,307],[1100,5,5,307,312],[1101,8,8,312,320],[1102,4,4,320,324]]],[49,37,35,324,359,[[1103,18,17,324,341],[1104,5,5,341,346],[1105,9,8,346,354],[1106,5,5,354,359]]],[50,26,24,359,383,[[1107,9,8,359,367],[1108,7,7,367,374],[1109,8,7,374,381],[1110,2,2,381,383]]],[51,14,13,383,396,[[1111,3,2,383,385],[1112,3,3,385,388],[1113,3,3,388,391],[1114,1,1,391,392],[1115,4,4,392,396]]],[52,13,12,396,408,[[1116,5,4,396,400],[1117,4,4,400,404],[1118,4,4,404,408]]],[53,16,15,408,423,[[1119,7,6,408,414],[1120,2,2,414,416],[1121,1,1,416,417],[1122,1,1,417,418],[1123,2,2,418,420],[1124,3,3,420,423]]],[54,15,14,423,437,[[1125,6,5,423,428],[1126,5,5,428,433],[1127,2,2,433,435],[1128,2,2,435,437]]],[55,4,4,437,441,[[1129,2,2,437,439],[1130,1,1,439,440],[1131,1,1,440,441]]],[56,7,7,441,448,[[1132,7,7,441,448]]],[57,13,13,448,461,[[1135,3,3,448,451],[1137,1,1,451,452],[1138,1,1,452,453],[1141,4,4,453,457],[1142,1,1,457,458],[1143,1,1,458,459],[1145,2,2,459,461]]],[58,2,2,461,463,[[1146,1,1,461,462],[1147,1,1,462,463]]],[59,20,18,463,481,[[1151,9,7,463,470],[1152,2,2,470,472],[1153,3,3,472,475],[1154,3,3,475,478],[1155,3,3,478,481]]],[60,8,7,481,488,[[1156,6,5,481,486],[1157,1,1,486,487],[1158,1,1,487,488]]],[61,10,10,488,498,[[1159,2,2,488,490],[1160,2,2,490,492],[1161,1,1,492,493],[1162,2,2,493,495],[1163,3,3,495,498]]],[62,4,3,498,501,[[1164,4,3,498,501]]],[64,5,4,501,505,[[1166,5,4,501,505]]],[65,11,10,505,515,[[1167,5,4,505,509],[1177,1,1,509,510],[1178,2,2,510,512],[1186,2,2,512,514],[1188,1,1,514,515]]]],[23145,23160,23161,23162,23173,23461,23688,23692,23914,23926,23928,23962,23980,24117,24122,24146,24151,24216,24529,24579,24708,24738,24815,24858,24984,24999,25104,25321,25820,25931,25937,25970,25974,26017,26037,26061,26064,26069,26085,26148,26181,26185,26198,26326,26354,26355,26359,26369,26370,26462,26505,26550,26614,26762,26898,26979,26980,26985,26987,27002,27014,27016,27032,27048,27101,27181,27188,27213,27236,27238,27250,27295,27324,27453,27468,27501,27514,27526,27562,27585,27589,27647,27793,27846,27930,27931,27933,27936,27937,27938,27946,27978,28013,28015,28048,28053,28055,28058,28062,28064,28068,28071,28072,28076,28077,28079,28091,28095,28116,28117,28118,28125,28126,28127,28133,28150,28151,28155,28156,28158,28160,28192,28250,28280,28289,28290,28295,28298,28306,28308,28309,28310,28311,28319,28320,28321,28322,28323,28332,28339,28341,28343,28345,28346,28352,28354,28356,28360,28361,28363,28364,28365,28366,28367,28369,28370,28371,28372,28373,28375,28376,28380,28386,28387,28393,28396,28410,28411,28421,28433,28434,28443,28448,28450,28458,28461,28482,28533,28538,28539,28541,28552,28558,28561,28571,28576,28583,28601,28603,28646,28661,28721,28730,28731,28732,28733,28734,28735,28736,28737,28738,28740,28741,28749,28775,28798,28799,28800,28801,28802,28803,28805,28819,28821,28834,28838,28839,28841,28844,28845,28855,28863,28864,28865,28887,28891,28893,28894,28895,28896,28897,28913,28941,28955,28969,28972,28976,28985,28991,28992,28999,29002,29020,29024,29031,29041,29046,29048,29057,29058,29060,29063,29064,29067,29069,29079,29085,29097,29098,29101,29102,29103,29115,29116,29118,29119,29124,29126,29128,29129,29130,29138,29145,29150,29163,29164,29166,29168,29190,29200,29202,29203,29206,29207,29208,29209,29211,29216,29218,29223,29226,29235,29236,29239,29241,29242,29249,29252,29255,29257,29259,29260,29262,29265,29268,29270,29272,29279,29284,29285,29287,29292,29306,29309,29318,29324,29327,29328,29329,29336,29342,29343,29360,29361,29362,29363,29367,29369,29371,29372,29374,29376,29377,29379,29380,29381,29382,29384,29387,29388,29390,29392,29396,29402,29407,29421,29424,29428,29429,29430,29433,29435,29439,29441,29449,29455,29461,29463,29465,29466,29467,29468,29469,29472,29489,29492,29493,29496,29499,29500,29502,29505,29511,29514,29518,29520,29521,29528,29530,29533,29541,29545,29554,29561,29563,29576,29584,29589,29592,29601,29603,29619,29630,29639,29644,29649,29650,29651,29657,29661,29662,29663,29675,29677,29683,29684,29690,29696,29697,29698,29708,29710,29711,29712,29721,29723,29744,29753,29774,29784,29791,29801,29802,29810,29811,29818,29819,29822,29828,29830,29835,29837,29846,29865,29868,29871,29892,29893,29896,29921,29929,29939,29941,29944,29946,29947,29961,29963,29996,30001,30009,30035,30045,30116,30119,30129,30133,30143,30198,30249,30262,30267,30294,30375,30376,30377,30381,30385,30387,30393,30404,30420,30440,30442,30445,30447,30457,30460,30466,30475,30479,30480,30487,30490,30493,30495,30520,30540,30543,30547,30551,30572,30602,30605,30606,30625,30630,30644,30648,30652,30654,30673,30676,30689,30693,30698,30699,30702,30706,30887,30901,30908,31042,31044,31101]]],["Christ's",[11,9,[[45,3,3,0,3,[[1064,1,1,0,1],[1068,1,1,1,2],[1076,1,1,2,3]]],[46,4,2,3,5,[[1079,1,1,3,4],[1087,3,1,4,5]]],[47,2,2,5,7,[[1093,1,1,5,6],[1095,1,1,6,7]]],[49,1,1,7,8,[[1104,1,1,7,8]]],[59,1,1,8,9,[[1154,1,1,8,9]]]],[28433,28509,28741,28836,28978,29131,29186,29412,30459]]],["I",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29012]]],["by",[1,1,[[48,1,1,0,1,[[1098,1,1,0,1]]]],[29234]]]]},{"k":"G5548","v":[["anointed",[5,5,[[41,1,1,0,1,[[976,1,1,0,1]]],[43,2,2,1,3,[[1021,1,1,1,2],[1027,1,1,2,3]]],[46,1,1,3,4,[[1078,1,1,3,4]]],[57,1,1,4,5,[[1133,1,1,4,5]]]],[25081,27049,27297,28821,29972]]]]},{"k":"G5549","v":[["*",[5,5,[[39,2,2,0,2,[[952,1,1,0,1],[953,1,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[984,1,1,3,4]]],[57,1,1,4,5,[[1142,1,1,4,5]]]],[24005,24013,24914,25504,30170]]],["delayeth",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[41,1,1,1,2,[[984,1,1,1,2]]]],[24005,25504]]],["long",[1,1,[[41,1,1,0,1,[[973,1,1,0,1]]]],[24914]]],["tarried",[1,1,[[39,1,1,0,1,[[953,1,1,0,1]]]],[24013]]],["tarry",[1,1,[[57,1,1,0,1,[[1142,1,1,0,1]]]],[30170]]]]},{"k":"G5550","v":[["*",[53,53,[[39,3,3,0,3,[[930,2,2,0,2],[953,1,1,2,3]]],[40,2,2,3,5,[[958,1,1,3,4],[965,1,1,4,5]]],[41,6,6,5,11,[[973,1,1,5,6],[976,1,1,6,7],[980,2,2,7,9],[990,1,1,9,10],[992,1,1,10,11]]],[42,4,4,11,15,[[1001,1,1,11,12],[1003,1,1,12,13],[1008,1,1,13,14],[1010,1,1,14,15]]],[43,17,17,15,32,[[1018,3,3,15,18],[1020,1,1,18,19],[1024,2,2,19,21],[1025,1,1,21,22],[1030,1,1,22,23],[1031,2,2,23,25],[1032,1,1,25,26],[1034,1,1,26,27],[1035,2,2,27,29],[1036,1,1,29,30],[1037,1,1,30,31],[1044,1,1,31,32]]],[44,2,2,32,34,[[1052,1,1,32,33],[1061,1,1,33,34]]],[45,2,2,34,36,[[1068,1,1,34,35],[1077,1,1,35,36]]],[47,2,2,36,38,[[1094,2,2,36,38]]],[51,1,1,38,39,[[1115,1,1,38,39]]],[54,1,1,39,40,[[1125,1,1,39,40]]],[55,1,1,40,41,[[1129,1,1,40,41]]],[57,3,3,41,44,[[1136,1,1,41,42],[1137,1,1,42,43],[1143,1,1,43,44]]],[59,4,4,44,48,[[1151,2,2,44,46],[1154,2,2,46,48]]],[64,1,1,48,49,[[1166,1,1,48,49]]],[65,4,4,49,53,[[1168,1,1,49,50],[1172,1,1,50,51],[1176,1,1,51,52],[1186,1,1,52,53]]]],[23176,23185,24027,24279,24559,24950,25068,25272,25274,25692,25788,26216,26361,26615,26677,26929,26930,26944,27017,27133,27139,27187,27380,27417,27442,27475,27553,27577,27580,27607,27644,27864,28092,28361,28526,28783,29132,29135,29622,29818,29894,30021,30042,30204,30391,30394,30448,30449,30690,30738,30804,30867,31041]]],["+",[11,11,[[40,1,1,0,1,[[965,1,1,0,1]]],[41,3,3,1,4,[[980,2,2,1,3],[990,1,1,3,4]]],[43,1,1,4,5,[[1031,1,1,4,5]]],[44,2,2,5,7,[[1052,1,1,5,6],[1061,1,1,6,7]]],[45,2,2,7,9,[[1068,1,1,7,8],[1077,1,1,8,9]]],[54,1,1,9,10,[[1125,1,1,9,10]]],[55,1,1,10,11,[[1129,1,1,10,11]]]],[24559,25272,25274,25692,27417,28092,28361,28526,28783,29818,29894]]],["he",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29132]]],["old",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27139]]],["season",[3,3,[[43,1,1,0,1,[[1036,1,1,0,1]]],[65,2,2,1,3,[[1172,1,1,1,2],[1186,1,1,2,3]]]],[27607,30804,31041]]],["seasons",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27644]]],["space",[2,2,[[43,1,1,0,1,[[1032,1,1,0,1]]],[65,1,1,1,2,[[1168,1,1,1,2]]]],[27475,30738]]],["they",[1,1,[[40,1,1,0,1,[[958,1,1,0,1]]]],[24279]]],["time",[26,26,[[39,3,3,0,3,[[930,2,2,0,2],[953,1,1,2,3]]],[41,3,3,3,6,[[973,1,1,3,4],[976,1,1,4,5],[992,1,1,5,6]]],[42,2,2,6,8,[[1001,1,1,6,7],[1010,1,1,7,8]]],[43,9,9,8,17,[[1018,2,2,8,10],[1024,1,1,10,11],[1025,1,1,11,12],[1030,1,1,12,13],[1031,1,1,13,14],[1035,2,2,14,16],[1044,1,1,16,17]]],[47,1,1,17,18,[[1094,1,1,17,18]]],[57,3,3,18,21,[[1136,1,1,18,19],[1137,1,1,19,20],[1143,1,1,20,21]]],[59,3,3,21,24,[[1151,1,1,21,22],[1154,2,2,22,24]]],[64,1,1,24,25,[[1166,1,1,24,25]]],[65,1,1,25,26,[[1176,1,1,25,26]]]],[23176,23185,24027,24950,25068,25788,26216,26677,26929,26944,27133,27187,27380,27442,27577,27580,27864,29135,30021,30042,30204,30391,30448,30449,30690,30867]]],["times",[5,5,[[43,3,3,0,3,[[1018,1,1,0,1],[1020,1,1,1,2],[1034,1,1,2,3]]],[51,1,1,3,4,[[1115,1,1,3,4]]],[59,1,1,4,5,[[1151,1,1,4,5]]]],[26930,27017,27553,29622,30394]]],["while",[2,2,[[42,2,2,0,2,[[1003,1,1,0,1],[1008,1,1,1,2]]]],[26361,26615]]]]},{"k":"G5551","v":[["time",[1,1,[[43,1,1,0,1,[[1037,1,1,0,1]]]],[27642]]]]},{"k":"G5552","v":[["*",[18,16,[[54,1,1,0,1,[[1126,1,1,0,1]]],[57,2,1,1,2,[[1141,2,1,1,2]]],[65,15,14,2,16,[[1167,3,3,2,5],[1168,1,1,5,6],[1170,1,1,6,7],[1171,1,1,7,8],[1174,2,1,8,9],[1175,2,2,9,11],[1180,1,1,11,12],[1181,2,2,12,14],[1183,1,1,14,15],[1187,1,1,15,16]]]],[29847,30109,30709,30710,30717,30718,30772,30787,30830,30853,30860,30940,30952,30953,30979,31068]]],["gold",[4,4,[[54,1,1,0,1,[[1126,1,1,0,1]]],[57,1,1,1,2,[[1141,1,1,1,2]]],[65,2,2,2,4,[[1170,1,1,2,3],[1175,1,1,3,4]]]],[29847,30109,30772,30860]]],["golden",[14,13,[[57,1,1,0,1,[[1141,1,1,0,1]]],[65,13,12,1,13,[[1167,3,3,1,4],[1168,1,1,4,5],[1171,1,1,5,6],[1174,2,1,6,7],[1175,1,1,7,8],[1180,1,1,8,9],[1181,2,2,9,11],[1183,1,1,11,12],[1187,1,1,12,13]]]],[30109,30709,30710,30717,30718,30787,30830,30853,30940,30952,30953,30979,31068]]]]},{"k":"G5553","v":[["*",[9,9,[[43,2,2,0,2,[[1020,1,1,0,1],[1037,1,1,1,2]]],[57,1,1,2,3,[[1141,1,1,2,3]]],[59,3,3,3,6,[[1151,2,2,3,5],[1153,1,1,5,6]]],[65,3,3,6,9,[[1169,1,1,6,7],[1187,2,2,7,9]]]],[27002,27659,30109,30381,30392,30427,30764,31071,31074]]],["gold",[8,8,[[43,2,2,0,2,[[1020,1,1,0,1],[1037,1,1,1,2]]],[59,3,3,2,5,[[1151,2,2,2,4],[1153,1,1,4,5]]],[65,3,3,5,8,[[1169,1,1,5,6],[1187,2,2,6,8]]]],[27002,27659,30381,30392,30427,30764,31071,31074]]],["golden",[1,1,[[57,1,1,0,1,[[1141,1,1,0,1]]]],[30109]]]]},{"k":"G5554","v":[["ring",[1,1,[[58,1,1,0,1,[[1147,1,1,0,1]]]],[30295]]]]},{"k":"G5555","v":[["chrysolite",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31073]]]]},{"k":"G5556","v":[["chrysoprasus",[1,1,[[65,1,1,0,1,[[1187,1,1,0,1]]]],[31073]]]]},{"k":"G5557","v":[["gold",[13,12,[[39,5,4,0,4,[[930,1,1,0,1],[938,1,1,1,2],[951,3,2,2,4]]],[43,1,1,4,5,[[1034,1,1,4,5]]],[45,1,1,5,6,[[1064,1,1,5,6]]],[53,1,1,6,7,[[1120,1,1,6,7]]],[58,1,1,7,8,[[1150,1,1,7,8]]],[65,4,4,8,12,[[1175,1,1,8,9],[1183,1,1,9,10],[1184,2,2,10,12]]]],[23180,23426,23934,23935,27552,28422,29725,30357,30847,30979,31005,31009]]]]},{"k":"G5558","v":[["decked",[2,2,[[65,2,2,0,2,[[1183,1,1,0,1],[1184,1,1,1,2]]]],[30979,31009]]]]},{"k":"G5559","v":[["body",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27597]]]]},{"k":"G5560","v":[["*",[15,15,[[39,5,5,0,5,[[939,1,1,0,1],[943,2,2,1,3],[946,1,1,3,4],[949,1,1,4,5]]],[40,1,1,5,6,[[965,1,1,5,6]]],[41,3,3,6,9,[[979,1,1,6,7],[986,2,2,7,9]]],[42,1,1,9,10,[[1001,1,1,9,10]]],[43,4,4,10,14,[[1020,2,2,10,12],[1025,1,1,12,13],[1031,1,1,13,14]]],[57,1,1,14,15,[[1144,1,1,14,15]]]],[23464,23663,23664,23735,23840,24583,25217,25566,25574,26213,26998,27007,27183,27422,30225]]],["cripple",[1,1,[[43,1,1,0,1,[[1031,1,1,0,1]]]],[27422]]],["halt",[4,4,[[39,1,1,0,1,[[946,1,1,0,1]]],[40,1,1,1,2,[[965,1,1,1,2]]],[41,1,1,2,3,[[986,1,1,2,3]]],[42,1,1,3,4,[[1001,1,1,3,4]]]],[23735,24583,25574,26213]]],["lame",[9,9,[[39,4,4,0,4,[[939,1,1,0,1],[943,2,2,1,3],[949,1,1,3,4]]],[41,2,2,4,6,[[979,1,1,4,5],[986,1,1,5,6]]],[43,2,2,6,8,[[1020,1,1,6,7],[1025,1,1,7,8]]],[57,1,1,8,9,[[1144,1,1,8,9]]]],[23464,23663,23664,23840,25217,25566,26998,27183,30225]]],["man",[1,1,[[43,1,1,0,1,[[1020,1,1,0,1]]]],[27007]]]]},{"k":"G5561","v":[["*",[27,27,[[39,3,3,0,3,[[930,1,1,0,1],[932,1,1,1,2],[936,1,1,2,3]]],[40,3,3,3,6,[[957,1,1,3,4],[961,2,2,4,6]]],[41,9,9,6,15,[[974,1,1,6,7],[975,1,1,7,8],[980,1,1,8,9],[984,1,1,9,10],[987,3,3,10,13],[991,1,1,13,14],[993,1,1,14,15]]],[42,3,3,15,18,[[1000,1,1,15,16],[1007,2,2,16,18]]],[43,8,8,18,26,[[1025,1,1,18,19],[1027,1,1,19,20],[1029,1,1,20,21],[1030,1,1,21,22],[1033,1,1,22,23],[1035,1,1,23,24],[1043,1,1,24,25],[1044,1,1,25,26]]],[58,1,1,26,27,[[1150,1,1,26,27]]]],[23181,23225,23373,24220,24365,24374,24981,25026,25271,25475,25601,25602,25603,25743,25847,26191,26577,26578,27177,27298,27357,27411,27489,27580,27843,27882,30358]]],["+",[2,2,[[39,1,1,0,1,[[930,1,1,0,1]]],[42,1,1,1,2,[[1007,1,1,1,2]]]],[23181,26578]]],["coasts",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27843]]],["countries",[1,1,[[41,1,1,0,1,[[993,1,1,0,1]]]],[25847]]],["country",[12,12,[[39,1,1,0,1,[[936,1,1,0,1]]],[40,2,2,1,3,[[961,2,2,1,3]]],[41,5,5,3,8,[[974,1,1,3,4],[980,1,1,4,5],[987,2,2,5,7],[991,1,1,7,8]]],[42,1,1,8,9,[[1007,1,1,8,9]]],[43,3,3,9,12,[[1029,1,1,9,10],[1035,1,1,10,11],[1044,1,1,11,12]]]],[23373,24365,24374,24981,25271,25601,25603,25743,26577,27357,27580,27882]]],["fields",[2,2,[[42,1,1,0,1,[[1000,1,1,0,1]]],[58,1,1,1,2,[[1150,1,1,1,2]]]],[26191,30358]]],["ground",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25475]]],["land",[3,3,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]],[43,1,1,2,3,[[1027,1,1,2,3]]]],[24220,25602,27298]]],["region",[4,4,[[39,1,1,0,1,[[932,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[43,2,2,2,4,[[1030,1,1,2,3],[1033,1,1,3,4]]]],[23225,25026,27411,27489]]],["regions",[1,1,[[43,1,1,0,1,[[1025,1,1,0,1]]]],[27177]]]]},{"k":"G5562","v":[["*",[10,9,[[39,4,3,0,3,[[943,1,1,0,1],[947,3,2,1,3]]],[40,1,1,3,4,[[958,1,1,3,4]]],[42,3,3,4,7,[[998,1,1,4,5],[1004,1,1,5,6],[1017,1,1,6,7]]],[46,1,1,7,8,[[1084,1,1,7,8]]],[60,1,1,8,9,[[1158,1,1,8,9]]]],[23650,23773,23774,24262,26101,26418,26923,28918,30531]]],["+",[3,3,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[958,1,1,1,2]]],[42,1,1,2,3,[[1004,1,1,2,3]]]],[23773,24262,26418]]],["Receive",[1,1,[[46,1,1,0,1,[[1084,1,1,0,1]]]],[28918]]],["come",[1,1,[[60,1,1,0,1,[[1158,1,1,0,1]]]],[30531]]],["contain",[1,1,[[42,1,1,0,1,[[1017,1,1,0,1]]]],[26923]]],["containing",[1,1,[[42,1,1,0,1,[[998,1,1,0,1]]]],[26101]]],["goeth",[1,1,[[39,1,1,0,1,[[943,1,1,0,1]]]],[23650]]],["receive",[2,1,[[39,2,1,0,1,[[947,2,1,0,1]]]],[23774]]]]},{"k":"G5563","v":[["*",[13,12,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]],[43,3,3,2,5,[[1018,1,1,2,3],[1035,2,2,3,5]]],[44,2,2,5,7,[[1053,2,2,5,7]]],[45,4,3,7,10,[[1068,4,3,7,10]]],[56,1,1,10,11,[[1132,1,1,10,11]]],[57,1,1,11,12,[[1139,1,1,11,12]]]],[23768,24597,26927,27558,27559,28151,28155,28497,28498,28502,29953,30090]]],["asunder",[2,2,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,1,1,1,2,[[966,1,1,1,2]]]],[23768,24597]]],["depart",[6,5,[[43,2,2,0,2,[[1018,1,1,0,1],[1035,1,1,1,2]]],[45,4,3,2,5,[[1068,4,3,2,5]]]],[26927,27559,28497,28498,28502]]],["departed",[2,2,[[43,1,1,0,1,[[1035,1,1,0,1]]],[56,1,1,1,2,[[1132,1,1,1,2]]]],[27558,29953]]],["separate",[3,3,[[44,2,2,0,2,[[1053,2,2,0,2]]],[57,1,1,2,3,[[1139,1,1,2,3]]]],[28151,28155,30090]]]]},{"k":"G5564","v":[["*",[10,9,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[42,1,1,2,3,[[1000,1,1,2,3]]],[43,7,6,3,9,[[1018,3,2,3,5],[1021,1,1,5,6],[1022,2,2,6,8],[1045,1,1,8,9]]]],[24090,24786,26161,26941,26942,27056,27062,27067,27906]]],["field",[3,2,[[43,3,2,0,2,[[1018,3,2,0,2]]]],[26941,26942]]],["ground",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26161]]],["land",[2,2,[[43,2,2,0,2,[[1022,2,2,0,2]]]],[27062,27067]]],["lands",[1,1,[[43,1,1,0,1,[[1021,1,1,0,1]]]],[27056]]],["place",[2,2,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]]],[24090,24786]]],["possessions",[1,1,[[43,1,1,0,1,[[1045,1,1,0,1]]]],[27906]]]]},{"k":"G5565","v":[["*",[40,38,[[39,3,3,0,3,[[941,1,1,0,1],[942,1,1,1,2],[943,1,1,2,3]]],[40,1,1,3,4,[[960,1,1,3,4]]],[41,1,1,4,5,[[978,1,1,4,5]]],[42,3,3,5,8,[[997,1,1,5,6],[1011,1,1,6,7],[1016,1,1,7,8]]],[44,6,6,8,14,[[1048,2,2,8,10],[1049,1,1,10,11],[1052,2,2,11,13],[1055,1,1,13,14]]],[45,3,2,14,16,[[1065,1,1,14,15],[1072,2,1,15,16]]],[46,1,1,16,17,[[1088,1,1,16,17]]],[48,1,1,17,18,[[1098,1,1,17,18]]],[49,1,1,18,19,[[1104,1,1,18,19]]],[53,2,2,19,21,[[1120,1,1,19,20],[1123,1,1,20,21]]],[56,1,1,21,22,[[1132,1,1,21,22]]],[57,13,13,22,35,[[1136,1,1,22,23],[1139,3,3,23,26],[1141,4,4,26,30],[1142,1,1,30,31],[1143,2,2,31,33],[1144,2,2,33,35]]],[58,4,3,35,38,[[1147,4,3,35,38]]]],[23573,23618,23671,24357,25195,26047,26704,26874,28012,28019,28028,28099,28100,28202,28441,28611,29017,29241,29405,29724,29784,29952,30029,30071,30084,30085,30112,30123,30127,30133,30161,30178,30212,30220,30226,30311,30313,30319]]],["Beside",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29017]]],["beside",[2,2,[[39,2,2,0,2,[[942,1,1,0,1],[943,1,1,1,2]]]],[23618,23671]]],["itself",[1,1,[[42,1,1,0,1,[[1016,1,1,0,1]]]],[26874]]],["without",[36,34,[[39,1,1,0,1,[[941,1,1,0,1]]],[40,1,1,1,2,[[960,1,1,1,2]]],[41,1,1,2,3,[[978,1,1,2,3]]],[42,2,2,3,5,[[997,1,1,3,4],[1011,1,1,4,5]]],[44,6,6,5,11,[[1048,2,2,5,7],[1049,1,1,7,8],[1052,2,2,8,10],[1055,1,1,10,11]]],[45,3,2,11,13,[[1065,1,1,11,12],[1072,2,1,12,13]]],[48,1,1,13,14,[[1098,1,1,13,14]]],[49,1,1,14,15,[[1104,1,1,14,15]]],[53,2,2,15,17,[[1120,1,1,15,16],[1123,1,1,16,17]]],[56,1,1,17,18,[[1132,1,1,17,18]]],[57,13,13,18,31,[[1136,1,1,18,19],[1139,3,3,19,22],[1141,4,4,22,26],[1142,1,1,26,27],[1143,2,2,27,29],[1144,2,2,29,31]]],[58,4,3,31,34,[[1147,4,3,31,34]]]],[23573,24357,25195,26047,26704,28012,28019,28028,28099,28100,28202,28441,28611,29241,29405,29724,29784,29952,30029,30071,30084,30085,30112,30123,30127,30133,30161,30178,30212,30220,30226,30311,30313,30319]]]]},{"k":"G5566","v":[["west",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27867]]]]},{"k":"G5567","v":[["*",[5,4,[[44,1,1,0,1,[[1060,1,1,0,1]]],[45,2,1,1,2,[[1075,2,1,1,2]]],[48,1,1,2,3,[[1101,1,1,2,3]]],[58,1,1,3,4,[[1150,1,1,3,4]]]],[28312,28693,29323,30367]]],["melody",[1,1,[[48,1,1,0,1,[[1101,1,1,0,1]]]],[29323]]],["psalms",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30367]]],["sing",[3,2,[[44,1,1,0,1,[[1060,1,1,0,1]]],[45,2,1,1,2,[[1075,2,1,1,2]]]],[28312,28693]]]]},{"k":"G5568","v":[["*",[7,7,[[41,2,2,0,2,[[992,1,1,0,1],[996,1,1,1,2]]],[43,2,2,2,4,[[1018,1,1,2,3],[1030,1,1,3,4]]],[45,1,1,4,5,[[1075,1,1,4,5]]],[48,1,1,5,6,[[1101,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]]],[25821,26035,26943,27395,28704,29323,29533]]],["Psalms",[2,2,[[41,1,1,0,1,[[992,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]]],[25821,26943]]],["psalm",[2,2,[[43,1,1,0,1,[[1030,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]]],[27395,28704]]],["psalms",[3,3,[[41,1,1,0,1,[[996,1,1,0,1]]],[48,1,1,1,2,[[1101,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]]],[26035,29323,29533]]]]},{"k":"G5569","v":[["brethren",[2,2,[[46,1,1,0,1,[[1088,1,1,0,1]]],[47,1,1,1,2,[[1092,1,1,1,2]]]],[29015,29085]]]]},{"k":"G5570","v":[["apostles",[1,1,[[46,1,1,0,1,[[1088,1,1,0,1]]]],[29002]]]]},{"k":"G5571","v":[["*",[3,3,[[43,1,1,0,1,[[1023,1,1,0,1]]],[65,2,2,1,3,[[1168,1,1,1,2],[1187,1,1,2,3]]]],[27114,30719,31061]]],["false",[1,1,[[43,1,1,0,1,[[1023,1,1,0,1]]]],[27114]]],["liars",[2,2,[[65,2,2,0,2,[[1168,1,1,0,1],[1187,1,1,1,2]]]],[30719,31061]]]]},{"k":"G5572","v":[["teachers",[1,1,[[60,1,1,0,1,[[1157,1,1,0,1]]]],[30501]]]]},{"k":"G5573","v":[["lies",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29749]]]]},{"k":"G5574","v":[["*",[12,12,[[39,1,1,0,1,[[933,1,1,0,1]]],[43,2,2,1,3,[[1022,2,2,1,3]]],[44,1,1,3,4,[[1054,1,1,3,4]]],[46,1,1,4,5,[[1088,1,1,4,5]]],[47,1,1,5,6,[[1091,1,1,5,6]]],[50,1,1,6,7,[[1109,1,1,6,7]]],[53,1,1,7,8,[[1120,1,1,7,8]]],[57,1,1,8,9,[[1138,1,1,8,9]]],[58,1,1,9,10,[[1148,1,1,9,10]]],[61,1,1,10,11,[[1159,1,1,10,11]]],[65,1,1,11,12,[[1169,1,1,11,12]]]],[23245,27062,27063,28156,29020,29077,29526,29723,30062,30333,30546,30755]]],["Lie",[1,1,[[50,1,1,0,1,[[1109,1,1,0,1]]]],[29526]]],["falsely",[1,1,[[39,1,1,0,1,[[933,1,1,0,1]]]],[23245]]],["lie",[9,9,[[43,1,1,0,1,[[1022,1,1,0,1]]],[44,1,1,1,2,[[1054,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]],[47,1,1,3,4,[[1091,1,1,3,4]]],[53,1,1,4,5,[[1120,1,1,4,5]]],[57,1,1,5,6,[[1138,1,1,5,6]]],[58,1,1,6,7,[[1148,1,1,6,7]]],[61,1,1,7,8,[[1159,1,1,7,8]]],[65,1,1,8,9,[[1169,1,1,8,9]]]],[27062,28156,29020,29077,29723,30062,30333,30546,30755]]],["lied",[1,1,[[43,1,1,0,1,[[1022,1,1,0,1]]]],[27063]]]]},{"k":"G5575","v":[["witnesses",[3,2,[[39,2,1,0,1,[[954,2,1,0,1]]],[45,1,1,1,2,[[1076,1,1,1,2]]]],[24114,28733]]]]},{"k":"G5576","v":[["witness",[6,6,[[39,1,1,0,1,[[947,1,1,0,1]]],[40,3,3,1,4,[[966,1,1,1,2],[970,2,2,2,4]]],[41,1,1,4,5,[[990,1,1,4,5]]],[44,1,1,5,6,[[1058,1,1,5,6]]]],[23780,24607,24810,24811,25708,28275]]]]},{"k":"G5577","v":[["witness",[2,2,[[39,2,2,0,2,[[943,1,1,0,1],[954,1,1,1,2]]]],[23652,24113]]]]},{"k":"G5578","v":[["*",[11,11,[[39,3,3,0,3,[[935,1,1,0,1],[952,2,2,1,3]]],[40,1,1,3,4,[[969,1,1,3,4]]],[41,1,1,4,5,[[978,1,1,4,5]]],[43,1,1,5,6,[[1030,1,1,5,6]]],[60,1,1,6,7,[[1157,1,1,6,7]]],[61,1,1,7,8,[[1162,1,1,7,8]]],[65,3,3,8,11,[[1182,1,1,8,9],[1185,1,1,9,10],[1186,1,1,10,11]]]],[23331,23968,23981,24739,25172,27368,30501,30604,30967,31037,31048]]],["prophet",[4,4,[[43,1,1,0,1,[[1030,1,1,0,1]]],[65,3,3,1,4,[[1182,1,1,1,2],[1185,1,1,2,3],[1186,1,1,3,4]]]],[27368,30967,31037,31048]]],["prophets",[7,7,[[39,3,3,0,3,[[935,1,1,0,1],[952,2,2,1,3]]],[40,1,1,3,4,[[969,1,1,3,4]]],[41,1,1,4,5,[[978,1,1,4,5]]],[60,1,1,5,6,[[1157,1,1,5,6]]],[61,1,1,6,7,[[1162,1,1,6,7]]]],[23331,23968,23981,24739,25172,30501,30604]]]]},{"k":"G5579","v":[["*",[9,9,[[42,1,1,0,1,[[1004,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[48,1,1,2,3,[[1100,1,1,2,3]]],[52,2,2,3,5,[[1117,2,2,3,5]]],[61,2,2,5,7,[[1160,2,2,5,7]]],[65,2,2,7,9,[[1187,1,1,7,8],[1188,1,1,8,9]]]],[26425,27955,29297,29670,29672,30571,30577,31080,31095]]],["lie",[7,7,[[42,1,1,0,1,[[1004,1,1,0,1]]],[44,1,1,1,2,[[1046,1,1,1,2]]],[52,1,1,2,3,[[1117,1,1,2,3]]],[61,2,2,3,5,[[1160,2,2,3,5]]],[65,2,2,5,7,[[1187,1,1,5,6],[1188,1,1,6,7]]]],[26425,27955,29672,30571,30577,31080,31095]]],["lying",[2,2,[[48,1,1,0,1,[[1100,1,1,0,1]]],[52,1,1,1,2,[[1117,1,1,1,2]]]],[29297,29670]]]]},{"k":"G5580","v":[["Christs",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23981,24739]]]]},{"k":"G5581","v":[["called",[1,1,[[53,1,1,0,1,[[1124,1,1,0,1]]]],[29808]]]]},{"k":"G5582","v":[["lie",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[27998]]]]},{"k":"G5583","v":[["*",[10,10,[[42,2,2,0,2,[[1004,2,2,0,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[53,1,1,3,4,[[1119,1,1,3,4]]],[55,1,1,4,5,[[1129,1,1,4,5]]],[61,5,5,5,10,[[1159,1,1,5,6],[1160,2,2,6,8],[1162,1,1,8,9],[1163,1,1,9,10]]]],[26425,26436,27995,29706,29904,30550,30554,30572,30623,30634]]],["liar",[8,8,[[42,2,2,0,2,[[1004,2,2,0,2]]],[44,1,1,2,3,[[1048,1,1,2,3]]],[61,5,5,3,8,[[1159,1,1,3,4],[1160,2,2,4,6],[1162,1,1,6,7],[1163,1,1,7,8]]]],[26425,26436,27995,30550,30554,30572,30623,30634]]],["liars",[2,2,[[53,1,1,0,1,[[1119,1,1,0,1]]],[55,1,1,1,2,[[1129,1,1,1,2]]]],[29706,29904]]]]},{"k":"G5584","v":[["*",[4,4,[[41,1,1,0,1,[[996,1,1,0,1]]],[43,1,1,1,2,[[1034,1,1,1,2]]],[57,1,1,2,3,[[1144,1,1,2,3]]],[61,1,1,3,4,[[1159,1,1,3,4]]]],[26030,27550,30230,30541]]],["after",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27550]]],["handle",[1,1,[[41,1,1,0,1,[[996,1,1,0,1]]]],[26030]]],["handled",[1,1,[[61,1,1,0,1,[[1159,1,1,0,1]]]],[30541]]],["touched",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30230]]]]},{"k":"G5585","v":[["*",[2,2,[[41,1,1,0,1,[[986,1,1,0,1]]],[65,1,1,1,2,[[1179,1,1,1,2]]]],[25581,30926]]],["count",[1,1,[[65,1,1,0,1,[[1179,1,1,0,1]]]],[30926]]],["counteth",[1,1,[[41,1,1,0,1,[[986,1,1,0,1]]]],[25581]]]]},{"k":"G5586","v":[["*",[3,2,[[43,1,1,0,1,[[1043,1,1,0,1]]],[65,2,1,1,2,[[1168,2,1,1,2]]]],[27833,30734]]],["+",[1,1,[[43,1,1,0,1,[[1043,1,1,0,1]]]],[27833]]],["stone",[2,1,[[65,2,1,0,1,[[1168,2,1,0,1]]]],[30734]]]]},{"k":"G5587","v":[["whisperings",[1,1,[[46,1,1,0,1,[[1089,1,1,0,1]]]],[29042]]]]},{"k":"G5588","v":[["whisperers",[1,1,[[44,1,1,0,1,[[1046,1,1,0,1]]]],[27959]]]]},{"k":"G5589","v":[["crumbs",[3,3,[[39,1,1,0,1,[[943,1,1,0,1]]],[40,1,1,1,2,[[963,1,1,1,2]]],[41,1,1,2,3,[[988,1,1,2,3]]]],[23660,24491,25641]]]]},{"k":"G5590","v":[["*",[104,94,[[39,16,11,0,11,[[930,1,1,0,1],[934,2,1,1,2],[938,4,2,2,4],[939,1,1,4,5],[940,1,1,5,6],[944,4,2,6,8],[948,1,1,8,9],[950,1,1,9,10],[954,1,1,10,11]]],[40,9,8,11,19,[[959,1,1,11,12],[964,4,3,12,15],[966,1,1,15,16],[968,2,2,16,18],[970,1,1,18,19]]],[41,15,13,19,32,[[973,1,1,19,20],[974,1,1,20,21],[978,1,1,21,22],[981,3,2,22,24],[982,1,1,24,25],[984,5,4,25,29],[986,1,1,29,30],[989,1,1,30,31],[993,1,1,31,32]]],[42,10,9,32,41,[[1006,4,4,32,36],[1008,3,2,36,38],[1009,2,2,38,40],[1011,1,1,40,41]]],[43,16,16,41,57,[[1019,4,4,41,45],[1020,1,1,45,46],[1021,1,1,46,47],[1024,1,1,47,48],[1031,2,2,48,50],[1032,2,2,50,52],[1037,2,2,52,54],[1044,3,3,54,57]]],[44,4,4,57,61,[[1047,1,1,57,58],[1056,1,1,58,59],[1058,1,1,59,60],[1061,1,1,60,61]]],[45,1,1,61,62,[[1076,1,1,61,62]]],[46,1,1,62,63,[[1078,1,1,62,63]]],[48,1,1,63,64,[[1102,1,1,63,64]]],[49,2,2,64,66,[[1103,1,1,64,65],[1104,1,1,65,66]]],[50,1,1,66,67,[[1109,1,1,66,67]]],[51,2,2,67,69,[[1112,1,1,67,68],[1115,1,1,68,69]]],[57,6,6,69,75,[[1136,1,1,69,70],[1138,1,1,70,71],[1142,2,2,71,73],[1144,1,1,73,74],[1145,1,1,74,75]]],[58,2,2,75,77,[[1146,1,1,75,76],[1150,1,1,76,77]]],[59,6,6,77,83,[[1151,2,2,77,79],[1152,2,2,79,81],[1153,1,1,81,82],[1154,1,1,82,83]]],[60,2,2,83,85,[[1157,2,2,83,85]]],[61,2,1,85,86,[[1161,2,1,85,86]]],[63,1,1,86,87,[[1165,1,1,86,87]]],[65,7,7,87,94,[[1172,1,1,87,88],[1174,1,1,88,89],[1178,1,1,89,90],[1182,1,1,90,91],[1184,2,2,91,93],[1186,1,1,93,94]]]],[23189,23307,23445,23456,23488,23507,23697,23698,23820,23909,24092,24292,24535,24536,24537,24633,24703,24706,24788,24939,25008,25155,25325,25357,25390,25478,25479,25481,25482,25579,25684,25845,26492,26496,26498,26505,26605,26607,26667,26668,26712,26976,26980,26990,26992,27019,27054,27130,27416,27436,27466,27468,27636,27650,27865,27877,27892,27971,28212,28267,28340,28763,28823,29343,29388,29421,29540,29578,29644,30026,30063,30171,30172,30215,30258,30287,30374,30383,30396,30410,30424,30444,30465,30508,30514,30595,30660,30802,30836,30902,30957,31006,31007,31042]]],["+",[3,3,[[42,1,1,0,1,[[1006,1,1,0,1]]],[43,1,1,1,2,[[1031,1,1,1,2]]],[50,1,1,2,3,[[1109,1,1,2,3]]]],[26505,27416,29540]]],["Soul",[1,1,[[41,1,1,0,1,[[984,1,1,0,1]]]],[25478]]],["heart",[1,1,[[48,1,1,0,1,[[1102,1,1,0,1]]]],[29343]]],["life",[35,29,[[39,8,5,0,5,[[930,1,1,0,1],[934,2,1,1,2],[938,2,1,2,3],[944,2,1,3,4],[948,1,1,4,5]]],[40,4,3,5,8,[[959,1,1,5,6],[964,2,1,6,7],[966,1,1,7,8]]],[41,7,6,8,14,[[978,1,1,8,9],[981,2,1,9,10],[984,2,2,10,12],[986,1,1,12,13],[989,1,1,13,14]]],[42,8,7,14,21,[[1006,3,3,14,17],[1008,2,1,17,18],[1009,2,2,18,20],[1011,1,1,20,21]]],[43,3,3,21,24,[[1037,2,2,21,23],[1044,1,1,23,24]]],[44,2,2,24,26,[[1056,1,1,24,25],[1061,1,1,25,26]]],[49,1,1,26,27,[[1104,1,1,26,27]]],[61,1,1,27,28,[[1161,1,1,27,28]]],[65,1,1,28,29,[[1174,1,1,28,29]]]],[23189,23307,23456,23697,23820,24292,24535,24633,25155,25325,25481,25482,25579,25684,26492,26496,26498,26605,26667,26668,26712,27636,27650,27877,28212,28340,29421,30595,30836]]],["lives",[5,5,[[41,1,1,0,1,[[981,1,1,0,1]]],[43,2,2,1,3,[[1032,1,1,1,2],[1044,1,1,2,3]]],[61,1,1,3,4,[[1161,1,1,3,4]]],[65,1,1,4,5,[[1178,1,1,4,5]]]],[25357,27468,27865,30595,30902]]],["mind",[1,1,[[49,1,1,0,1,[[1103,1,1,0,1]]]],[29388]]],["minds",[1,1,[[57,1,1,0,1,[[1144,1,1,0,1]]]],[30215]]],["soul",[38,36,[[39,7,5,0,5,[[938,2,1,0,1],[940,1,1,1,2],[944,2,1,2,3],[950,1,1,3,4],[954,1,1,4,5]]],[40,5,5,5,10,[[964,2,2,5,7],[968,2,2,7,9],[970,1,1,9,10]]],[41,5,5,10,15,[[973,1,1,10,11],[974,1,1,11,12],[982,1,1,12,13],[984,2,2,13,15]]],[42,1,1,15,16,[[1008,1,1,15,16]]],[43,5,5,16,21,[[1019,3,3,16,19],[1020,1,1,19,20],[1021,1,1,20,21]]],[44,2,2,21,23,[[1047,1,1,21,22],[1058,1,1,22,23]]],[45,1,1,23,24,[[1076,1,1,23,24]]],[46,1,1,24,25,[[1078,1,1,24,25]]],[51,1,1,25,26,[[1115,1,1,25,26]]],[57,4,4,26,30,[[1136,1,1,26,27],[1138,1,1,27,28],[1142,2,2,28,30]]],[58,1,1,30,31,[[1150,1,1,30,31]]],[59,1,1,31,32,[[1152,1,1,31,32]]],[60,1,1,32,33,[[1157,1,1,32,33]]],[63,1,1,33,34,[[1165,1,1,33,34]]],[65,2,2,34,36,[[1182,1,1,34,35],[1184,1,1,35,36]]]],[23445,23507,23698,23909,24092,24536,24537,24703,24706,24788,24939,25008,25390,25478,25479,26607,26976,26980,26992,27019,27054,27971,28267,28763,28823,29644,30026,30063,30171,30172,30374,30410,30508,30660,30957,31007]]],["souls",[19,19,[[39,1,1,0,1,[[939,1,1,0,1]]],[41,1,1,1,2,[[993,1,1,1,2]]],[43,5,5,2,7,[[1019,1,1,2,3],[1024,1,1,3,4],[1031,1,1,4,5],[1032,1,1,5,6],[1044,1,1,6,7]]],[51,1,1,7,8,[[1112,1,1,7,8]]],[57,1,1,8,9,[[1145,1,1,8,9]]],[58,1,1,9,10,[[1146,1,1,9,10]]],[59,5,5,10,15,[[1151,2,2,10,12],[1152,1,1,12,13],[1153,1,1,13,14],[1154,1,1,14,15]]],[60,1,1,15,16,[[1157,1,1,15,16]]],[65,3,3,16,19,[[1172,1,1,16,17],[1184,1,1,17,18],[1186,1,1,18,19]]]],[23488,25845,26990,27130,27436,27466,27892,29578,30258,30287,30383,30396,30424,30444,30465,30514,30802,31006,31042]]]]},{"k":"G5591","v":[["*",[6,5,[[45,4,3,0,3,[[1063,1,1,0,1],[1076,3,2,1,3]]],[58,1,1,3,4,[[1148,1,1,3,4]]],[64,1,1,4,5,[[1166,1,1,4,5]]]],[28408,28762,28764,30334,30691]]],["natural",[4,3,[[45,4,3,0,3,[[1063,1,1,0,1],[1076,3,2,1,3]]]],[28408,28762,28764]]],["sensual",[2,2,[[58,1,1,0,1,[[1148,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[30334,30691]]]]},{"k":"G5592","v":[["cold",[3,3,[[42,1,1,0,1,[[1014,1,1,0,1]]],[43,1,1,1,2,[[1045,1,1,1,2]]],[46,1,1,2,3,[[1088,1,1,2,3]]]],[26803,27901,29016]]]]},{"k":"G5593","v":[["cold",[4,3,[[39,1,1,0,1,[[938,1,1,0,1]]],[65,3,2,1,3,[[1169,3,2,1,3]]]],[23459,30761,30762]]]]},{"k":"G5594","v":[["cold",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23969]]]]},{"k":"G5595","v":[["*",[2,2,[[44,1,1,0,1,[[1057,1,1,0,1]]],[45,1,1,1,2,[[1074,1,1,1,2]]]],[28265,28668]]],["+",[1,1,[[45,1,1,0,1,[[1074,1,1,0,1]]]],[28668]]],["feed",[1,1,[[44,1,1,0,1,[[1057,1,1,0,1]]]],[28265]]]]},{"k":"G5596","v":[["sop",[4,3,[[42,4,3,0,3,[[1009,4,3,0,3]]]],[26656,26657,26660]]]]},{"k":"G5597","v":[["rubbing",[1,1,[[41,1,1,0,1,[[978,1,1,0,1]]]],[25147]]]]},{"k":"G5598","v":[["Omega",[4,4,[[65,4,4,0,4,[[1167,2,2,0,2],[1187,1,1,2,3],[1188,1,1,3,4]]]],[30705,30708,31059,31093]]]]},{"k":"G5599","v":[["*",[17,17,[[39,2,2,0,2,[[943,1,1,0,1],[945,1,1,1,2]]],[40,1,1,2,3,[[965,1,1,2,3]]],[41,2,2,3,5,[[981,1,1,3,4],[996,1,1,4,5]]],[43,4,4,5,9,[[1018,1,1,5,6],[1030,1,1,6,7],[1035,1,1,7,8],[1044,1,1,8,9]]],[44,4,4,9,13,[[1047,2,2,9,11],[1054,1,1,11,12],[1056,1,1,12,13]]],[47,1,1,13,14,[[1093,1,1,13,14]]],[53,2,2,14,16,[[1124,2,2,14,16]]],[58,1,1,16,17,[[1147,1,1,16,17]]]],[23661,23717,24557,25342,26016,26924,27372,27571,27876,27963,27965,28175,28242,29103,29799,29808,30313]]],["+",[1,1,[[43,1,1,0,1,[[1044,1,1,0,1]]]],[27876]]],["O",[16,16,[[39,2,2,0,2,[[943,1,1,0,1],[945,1,1,1,2]]],[40,1,1,2,3,[[965,1,1,2,3]]],[41,2,2,3,5,[[981,1,1,3,4],[996,1,1,4,5]]],[43,3,3,5,8,[[1018,1,1,5,6],[1030,1,1,6,7],[1035,1,1,7,8]]],[44,4,4,8,12,[[1047,2,2,8,10],[1054,1,1,10,11],[1056,1,1,11,12]]],[47,1,1,12,13,[[1093,1,1,12,13]]],[53,2,2,13,15,[[1124,2,2,13,15]]],[58,1,1,15,16,[[1147,1,1,15,16]]]],[23661,23717,24557,25342,26016,26924,27372,27571,27963,27965,28175,28242,29103,29799,29808,30313]]]]},{"k":"G5600","v":[["*",[65,61,[[39,8,7,0,7,[[934,3,3,0,3],[938,2,1,3,4],[948,2,2,4,6],[952,1,1,6,7]]],[40,2,2,7,9,[[959,1,1,7,8],[961,1,1,8,9]]],[41,4,3,9,12,[[982,1,1,9,10],[983,2,1,10,11],[986,1,1,11,12]]],[42,15,14,12,26,[[999,2,2,12,14],[1002,1,1,14,15],[1005,2,2,15,17],[1010,1,1,17,18],[1012,1,1,18,19],[1013,8,7,19,26]]],[43,1,1,26,27,[[1022,1,1,26,27]]],[44,2,2,27,29,[[1054,1,1,27,28],[1056,1,1,28,29]]],[45,11,10,29,39,[[1062,2,1,29,30],[1063,1,1,30,31],[1066,1,1,31,32],[1068,3,3,32,35],[1073,1,1,35,36],[1075,1,1,36,37],[1076,1,1,37,38],[1077,1,1,38,39]]],[46,6,6,39,45,[[1078,2,2,39,41],[1081,1,1,41,42],[1086,1,1,42,43],[1090,2,2,43,45]]],[47,1,1,45,46,[[1095,1,1,45,46]]],[48,2,2,46,48,[[1100,1,1,46,47],[1101,1,1,47,48]]],[49,2,2,48,50,[[1103,1,1,48,49],[1104,1,1,49,50]]],[53,2,2,50,52,[[1122,1,1,50,51],[1123,1,1,51,52]]],[54,1,1,52,53,[[1127,1,1,52,53]]],[55,2,2,53,55,[[1129,1,1,53,54],[1131,1,1,54,55]]],[56,1,1,55,56,[[1132,1,1,55,56]]],[58,3,3,56,59,[[1146,1,1,56,57],[1147,1,1,57,58],[1150,1,1,58,59]]],[61,1,1,59,60,[[1159,1,1,59,60]]],[62,1,1,60,61,[[1164,1,1,60,61]]]],[23286,23304,23305,23430,23796,23799,23985,24302,24382,25369,25439,25561,26122,26147,26322,26445,26471,26671,26750,26770,26778,26780,26781,26782,26783,26785,27097,28182,28234,28373,28399,28461,28516,28521,28523,28659,28706,28746,28780,28809,28817,28866,28959,29050,29052,29172,29286,29331,29371,29419,29762,29770,29870,29901,29937,29952,30270,30308,30369,30544,30657]]],["+",[4,4,[[39,1,1,0,1,[[938,1,1,0,1]]],[45,1,1,1,2,[[1068,1,1,1,2]]],[53,1,1,2,3,[[1122,1,1,2,3]]],[58,1,1,3,4,[[1147,1,1,3,4]]]],[23430,28523,29762,30308]]],["am",[1,1,[[42,1,1,0,1,[[1005,1,1,0,1]]]],[26445]]],["are",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29052]]],["be",[50,48,[[39,4,4,0,4,[[934,3,3,0,3],[938,1,1,3,4]]],[40,2,2,4,6,[[959,1,1,4,5],[961,1,1,5,6]]],[41,2,2,6,8,[[982,1,1,6,7],[986,1,1,7,8]]],[42,13,12,8,20,[[999,2,2,8,10],[1005,1,1,10,11],[1010,1,1,11,12],[1012,1,1,12,13],[1013,8,7,13,20]]],[43,1,1,20,21,[[1022,1,1,20,21]]],[44,2,2,21,23,[[1054,1,1,21,22],[1056,1,1,22,23]]],[45,9,8,23,31,[[1062,2,1,23,24],[1066,1,1,24,25],[1068,2,2,25,27],[1073,1,1,27,28],[1075,1,1,28,29],[1076,1,1,29,30],[1077,1,1,30,31]]],[46,4,4,31,35,[[1078,1,1,31,32],[1081,1,1,32,33],[1086,1,1,33,34],[1090,1,1,34,35]]],[47,1,1,35,36,[[1095,1,1,35,36]]],[48,2,2,36,38,[[1100,1,1,36,37],[1101,1,1,37,38]]],[49,2,2,38,40,[[1103,1,1,38,39],[1104,1,1,39,40]]],[53,1,1,40,41,[[1123,1,1,40,41]]],[54,1,1,41,42,[[1127,1,1,41,42]]],[55,2,2,42,44,[[1129,1,1,42,43],[1131,1,1,43,44]]],[56,1,1,44,45,[[1132,1,1,44,45]]],[58,1,1,45,46,[[1146,1,1,45,46]]],[61,1,1,46,47,[[1159,1,1,46,47]]],[62,1,1,47,48,[[1164,1,1,47,48]]]],[23286,23304,23305,23430,24302,24382,25369,25561,26122,26147,26471,26671,26750,26770,26778,26780,26781,26782,26783,26785,27097,28182,28234,28373,28461,28516,28521,28659,28706,28746,28780,28817,28866,28959,29050,29172,29286,29331,29371,29419,29770,29870,29901,29937,29952,30270,30544,30657]]],["have",[1,1,[[58,1,1,0,1,[[1150,1,1,0,1]]]],[30369]]],["is",[5,4,[[39,3,3,0,3,[[948,2,2,0,2],[952,1,1,2,3]]],[41,2,1,3,4,[[983,2,1,3,4]]]],[23796,23799,23985,25439]]],["should",[1,1,[[46,1,1,0,1,[[1078,1,1,0,1]]]],[28809]]],["stand",[1,1,[[45,1,1,0,1,[[1063,1,1,0,1]]]],[28399]]],["were",[1,1,[[42,1,1,0,1,[[1002,1,1,0,1]]]],[26322]]]]},{"k":"G5601","v":[["Obed",[3,2,[[39,2,1,0,1,[[929,2,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]]],[23149,25057]]]]},{"k":"G5602","v":[["*",[60,56,[[39,18,16,0,16,[[936,1,1,0,1],[940,3,3,1,4],[942,3,3,4,7],[944,1,1,7,8],[945,3,2,8,10],[948,1,1,10,11],[950,1,1,11,12],[952,3,2,12,14],[954,1,1,14,15],[956,1,1,15,16]]],[40,9,9,16,25,[[962,1,1,16,17],[964,1,1,17,18],[965,2,2,18,20],[967,1,1,20,21],[969,1,1,21,22],[970,2,2,22,24],[972,1,1,24,25]]],[41,14,14,25,39,[[976,1,1,25,26],[981,4,4,26,30],[983,2,2,30,32],[986,1,1,32,33],[989,2,2,33,35],[991,1,1,35,36],[994,1,1,36,37],[995,1,1,37,38],[996,1,1,38,39]]],[42,5,5,39,44,[[1002,2,2,39,41],[1007,2,2,41,43],[1016,1,1,43,44]]],[43,2,2,44,46,[[1026,2,2,44,46]]],[50,1,1,46,47,[[1110,1,1,46,47]]],[57,2,2,47,49,[[1139,1,1,47,48],[1145,1,1,48,49]]],[58,2,1,49,50,[[1147,2,1,49,50]]],[65,7,6,50,56,[[1170,1,1,50,51],[1177,1,1,51,52],[1179,2,2,52,54],[1180,2,1,54,55],[1183,1,1,55,56]]]],[23374,23495,23530,23531,23605,23614,23615,23700,23704,23717,23798,23884,23959,23980,24092,24201,24410,24504,24539,24543,24643,24738,24786,24788,24879,25086,25313,25328,25334,25342,25436,25437,25574,25672,25674,25758,25902,25940,25997,26266,26282,26544,26555,26894,27230,27237,29551,30072,30255,30296,30769,30884,30918,30926,30938,30984]]],["+",[1,1,[[57,1,1,0,1,[[1139,1,1,0,1]]]],[30072]]],["Here",[3,3,[[65,3,3,0,3,[[1179,2,2,0,2],[1180,1,1,2,3]]]],[30918,30926,30938]]],["here",[40,38,[[39,12,11,0,11,[[940,2,2,0,2],[942,2,2,2,4],[944,1,1,4,5],[945,2,1,5,6],[948,1,1,6,7],[952,2,2,7,9],[954,1,1,9,10],[956,1,1,10,11]]],[40,8,8,11,19,[[962,1,1,11,12],[964,1,1,12,13],[965,2,2,13,15],[969,1,1,15,16],[970,2,2,16,18],[972,1,1,18,19]]],[41,10,10,19,29,[[976,1,1,19,20],[981,3,3,20,23],[983,2,2,23,25],[989,2,2,25,27],[994,1,1,27,28],[996,1,1,28,29]]],[42,3,3,29,32,[[1002,1,1,29,30],[1007,2,2,30,32]]],[43,1,1,32,33,[[1026,1,1,32,33]]],[50,1,1,33,34,[[1110,1,1,33,34]]],[57,1,1,34,35,[[1145,1,1,34,35]]],[58,2,1,35,36,[[1147,2,1,35,36]]],[65,2,2,36,38,[[1180,1,1,36,37],[1183,1,1,37,38]]]],[23530,23531,23605,23614,23700,23704,23798,23959,23980,24092,24201,24410,24504,24539,24543,24738,24786,24788,24879,25086,25313,25328,25334,25436,25437,25672,25674,25902,25997,26266,26544,26555,27230,29551,30255,30296,30938,30984]]],["hither",[13,13,[[39,4,4,0,4,[[936,1,1,0,1],[942,1,1,1,2],[945,1,1,2,3],[950,1,1,3,4]]],[40,1,1,4,5,[[967,1,1,4,5]]],[41,3,3,5,8,[[981,1,1,5,6],[986,1,1,6,7],[991,1,1,7,8]]],[42,2,2,8,10,[[1002,1,1,8,9],[1016,1,1,9,10]]],[43,1,1,10,11,[[1026,1,1,10,11]]],[65,2,2,11,13,[[1170,1,1,11,12],[1177,1,1,12,13]]]],[23374,23615,23717,23884,24643,25342,25574,25758,26282,26894,27237,30769,30884]]],["place",[2,2,[[39,1,1,0,1,[[940,1,1,0,1]]],[41,1,1,1,2,[[995,1,1,1,2]]]],[23495,25940]]],["there",[1,1,[[39,1,1,0,1,[[952,1,1,0,1]]]],[23980]]]]},{"k":"G5603","v":[["*",[7,5,[[48,1,1,0,1,[[1101,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]],[65,5,3,2,5,[[1171,1,1,2,3],[1180,2,1,3,4],[1181,2,1,4,5]]]],[29323,29533,30788,30929,30949]]],["song",[5,3,[[65,5,3,0,3,[[1171,1,1,0,1],[1180,2,1,1,2],[1181,2,1,2,3]]]],[30788,30929,30949]]],["songs",[2,2,[[48,1,1,0,1,[[1101,1,1,0,1]]],[50,1,1,1,2,[[1109,1,1,1,2]]]],[29323,29533]]]]},{"k":"G5604","v":[["*",[4,4,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]],[43,1,1,2,3,[[1019,1,1,2,3]]],[51,1,1,3,4,[[1115,1,1,3,4]]]],[23965,24725,26973,29624]]],["pains",[1,1,[[43,1,1,0,1,[[1019,1,1,0,1]]]],[26973]]],["sorrows",[2,2,[[39,1,1,0,1,[[952,1,1,0,1]]],[40,1,1,1,2,[[969,1,1,1,2]]]],[23965,24725]]],["travail",[1,1,[[51,1,1,0,1,[[1115,1,1,0,1]]]],[29624]]]]},{"k":"G5605","v":[["*",[3,3,[[47,2,2,0,2,[[1094,2,2,0,2]]],[65,1,1,2,3,[[1178,1,1,2,3]]]],[29150,29158,30893]]],["birth",[2,2,[[47,1,1,0,1,[[1094,1,1,0,1]]],[65,1,1,1,2,[[1178,1,1,1,2]]]],[29150,30893]]],["travailest",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29158]]]]},{"k":"G5606","v":[["shoulders",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[41,1,1,1,2,[[987,1,1,1,2]]]],[23922,25593]]]]},{"k":"G5607","v":[["*",[153,148,[[39,5,5,0,5,[[929,1,1,0,1],[934,1,1,1,2],[935,1,1,2,3],[940,2,2,3,5]]],[40,7,7,5,12,[[958,1,1,5,6],[961,1,1,6,7],[964,1,1,7,8],[967,1,1,8,9],[969,1,1,9,10],[970,2,2,10,12]]],[41,15,15,12,27,[[974,1,1,12,13],[975,1,1,13,14],[978,1,1,14,15],[980,1,1,15,16],[983,1,1,16,17],[984,1,1,17,18],[985,1,1,18,19],[986,1,1,19,20],[992,1,1,20,21],[994,2,2,21,23],[995,2,2,23,25],[996,2,2,25,27]]],[42,26,25,27,52,[[997,2,2,27,29],[999,3,3,29,32],[1000,2,1,32,33],[1001,1,1,33,34],[1002,2,2,34,36],[1003,1,1,36,37],[1004,1,1,37,38],[1005,2,2,38,40],[1006,2,2,40,42],[1007,3,3,42,45],[1008,1,1,45,46],[1014,2,2,46,48],[1015,1,1,48,49],[1016,2,2,49,51],[1017,1,1,51,52]]],[43,30,30,52,82,[[1022,1,1,52,53],[1024,3,3,53,56],[1025,1,1,56,57],[1026,3,3,57,60],[1028,1,1,60,61],[1030,1,1,61,62],[1031,1,1,62,63],[1032,1,1,63,64],[1033,2,2,64,66],[1035,1,1,66,67],[1036,3,3,67,70],[1037,1,1,70,71],[1038,1,1,71,72],[1039,2,2,72,74],[1041,2,2,74,76],[1042,1,1,76,77],[1043,1,1,77,78],[1044,2,2,78,80],[1045,2,2,80,82]]],[44,18,17,82,99,[[1046,1,1,82,83],[1049,3,2,83,85],[1050,4,4,85,89],[1052,1,1,89,90],[1053,3,3,90,93],[1054,1,1,93,94],[1056,1,1,94,95],[1057,1,1,95,96],[1058,1,1,96,97],[1061,2,2,97,99]]],[45,8,7,99,106,[[1062,3,2,99,101],[1069,2,2,101,103],[1070,2,2,103,105],[1073,1,1,105,106]]],[46,7,6,106,112,[[1078,2,1,106,107],[1082,1,1,107,108],[1085,2,2,108,110],[1088,2,2,110,112]]],[47,4,4,112,116,[[1092,1,1,112,113],[1094,2,2,113,115],[1096,1,1,115,116]]],[48,8,7,116,123,[[1097,1,1,116,117],[1098,5,5,117,122],[1100,2,1,122,123]]],[49,2,2,123,125,[[1103,2,2,123,125]]],[50,3,3,125,128,[[1107,1,1,125,126],[1108,1,1,126,127],[1110,1,1,127,128]]],[51,2,2,128,130,[[1112,1,1,128,129],[1115,1,1,129,130]]],[52,1,1,130,131,[[1117,1,1,130,131]]],[53,3,3,131,134,[[1119,1,1,131,132],[1120,1,1,132,133],[1121,1,1,133,134]]],[54,1,1,134,135,[[1126,1,1,134,135]]],[55,2,2,135,137,[[1129,1,1,135,136],[1131,1,1,136,137]]],[56,1,1,137,138,[[1132,1,1,137,138]]],[57,5,5,138,143,[[1133,1,1,138,139],[1135,1,1,139,140],[1137,1,1,140,141],[1140,1,1,141,142],[1145,1,1,142,143]]],[58,1,1,143,144,[[1148,1,1,143,144]]],[60,2,2,144,146,[[1156,1,1,144,145],[1157,1,1,145,146]]],[65,2,2,146,148,[[1171,1,1,146,147],[1182,1,1,147,148]]]],[23163,23312,23327,23519,23523,24286,24389,24501,24651,24733,24757,24820,24978,25048,25149,25288,25428,25487,25534,25585,25815,25867,25917,25942,25947,25997,26035,26062,26092,26124,26133,26151,26165,26223,26303,26328,26378,26428,26465,26480,26493,26514,26554,26572,26574,26597,26811,26822,26863,26868,26886,26909,27076,27118,27121,27128,27199,27218,27254,27255,27308,27363,27427,27474,27486,27504,27581,27616,27620,27621,27660,27672,27709,27713,27779,27793,27819,27826,27857,27864,27916,27924,27937,28032,28039,28053,28055,28057,28060,28114,28121,28124,28144,28160,28226,28248,28267,28337,28347,28365,28391,28534,28537,28559,28561,28646,28801,28881,28941,28954,29008,29020,29084,29132,29139,29191,29207,29230,29233,29234,29242,29249,29290,29362,29368,29486,29507,29553,29584,29629,29666,29709,29718,29741,29846,29908,29934,29947,29966,29997,30038,30096,30244,30323,30497,30511,30784,30959]]],["+",[7,7,[[40,1,1,0,1,[[967,1,1,0,1]]],[43,3,3,1,4,[[1036,1,1,1,2],[1045,2,2,2,4]]],[46,1,1,4,5,[[1085,1,1,4,5]]],[48,1,1,5,6,[[1098,1,1,5,6]]],[65,1,1,6,7,[[1171,1,1,6,7]]]],[24651,27621,27916,27924,28954,29242,30784]]],["am",[1,1,[[42,1,1,0,1,[[1000,1,1,0,1]]]],[26165]]],["and",[1,1,[[43,1,1,0,1,[[1035,1,1,0,1]]]],[27581]]],["are",[20,19,[[44,4,4,0,4,[[1053,3,3,0,3],[1061,1,1,3,4]]],[45,2,1,4,5,[[1062,2,1,4,5]]],[46,3,3,5,8,[[1078,1,1,5,6],[1082,1,1,6,7],[1088,1,1,7,8]]],[47,1,1,8,9,[[1094,1,1,8,9]]],[48,1,1,9,10,[[1097,1,1,9,10]]],[49,2,2,10,12,[[1103,2,2,10,12]]],[50,1,1,12,13,[[1110,1,1,12,13]]],[51,2,2,13,15,[[1112,1,1,13,14],[1115,1,1,14,15]]],[53,1,1,15,16,[[1120,1,1,15,16]]],[54,1,1,16,17,[[1126,1,1,16,17]]],[57,1,1,17,18,[[1140,1,1,17,18]]],[60,1,1,18,19,[[1157,1,1,18,19]]]],[28121,28124,28144,28347,28391,28801,28881,29008,29139,29207,29362,29368,29553,29584,29629,29718,29846,30096,30511]]],["art",[2,2,[[43,1,1,0,1,[[1025,1,1,0,1]]],[65,1,1,1,2,[[1182,1,1,1,2]]]],[27199,30959]]],["be",[7,7,[[43,1,1,0,1,[[1043,1,1,0,1]]],[44,3,3,1,4,[[1046,1,1,1,2],[1049,1,1,2,3],[1058,1,1,3,4]]],[45,1,1,4,5,[[1070,1,1,4,5]]],[47,1,1,5,6,[[1094,1,1,5,6]]],[58,1,1,6,7,[[1148,1,1,6,7]]]],[27826,27937,28039,28267,28559,29132,30323]]],["been",[1,1,[[43,1,1,0,1,[[1041,1,1,0,1]]]],[27779]]],["being",[37,37,[[39,3,3,0,3,[[929,1,1,0,1],[935,1,1,1,2],[940,1,1,2,3]]],[40,2,2,3,5,[[964,1,1,3,4],[970,1,1,4,5]]],[41,5,5,5,10,[[974,1,1,5,6],[975,1,1,6,7],[985,1,1,7,8],[992,1,1,8,9],[994,1,1,9,10]]],[42,10,10,10,20,[[1000,1,1,10,11],[1001,1,1,11,12],[1002,1,1,12,13],[1003,1,1,13,14],[1006,1,1,14,15],[1007,2,2,15,17],[1014,1,1,17,18],[1015,1,1,18,19],[1016,1,1,19,20]]],[43,3,3,20,23,[[1032,1,1,20,21],[1033,1,1,21,22],[1044,1,1,22,23]]],[44,1,1,23,24,[[1056,1,1,23,24]]],[45,3,3,24,27,[[1069,1,1,24,25],[1070,1,1,25,26],[1073,1,1,26,27]]],[47,1,1,27,28,[[1092,1,1,27,28]]],[48,2,2,28,30,[[1098,1,1,28,29],[1100,1,1,29,30]]],[50,1,1,30,31,[[1108,1,1,30,31]]],[53,1,1,31,32,[[1121,1,1,31,32]]],[55,2,2,32,34,[[1129,1,1,32,33],[1131,1,1,33,34]]],[56,1,1,34,35,[[1132,1,1,34,35]]],[57,2,2,35,37,[[1133,1,1,35,36],[1145,1,1,36,37]]]],[23163,23327,23523,24501,24757,24978,25048,25534,25815,25867,26165,26223,26328,26378,26514,26572,26574,26811,26863,26886,27474,27504,27857,28226,28534,28561,28646,29084,29249,29290,29507,29741,29908,29934,29947,29966,30244]]],["had",[2,2,[[40,1,1,0,1,[[961,1,1,0,1]]],[43,1,1,1,2,[[1024,1,1,1,2]]]],[24389,27121]]],["having",[1,1,[[41,1,1,0,1,[[980,1,1,0,1]]]],[25288]]],["is",[27,27,[[39,2,2,0,2,[[934,1,1,0,1],[940,1,1,1,2]]],[40,1,1,2,3,[[969,1,1,2,3]]],[41,3,3,3,6,[[983,1,1,3,4],[984,1,1,4,5],[986,1,1,5,6]]],[42,7,7,6,13,[[997,1,1,6,7],[999,3,3,7,10],[1002,1,1,10,11],[1004,1,1,11,12],[1014,1,1,12,13]]],[43,2,2,13,15,[[1022,1,1,13,14],[1036,1,1,14,15]]],[44,5,5,15,20,[[1050,1,1,15,16],[1052,1,1,16,17],[1054,1,1,17,18],[1057,1,1,18,19],[1061,1,1,19,20]]],[45,2,2,20,22,[[1062,1,1,20,21],[1069,1,1,21,22]]],[46,2,2,22,24,[[1078,1,1,22,23],[1088,1,1,23,24]]],[47,1,1,24,25,[[1096,1,1,24,25]]],[48,2,2,25,27,[[1098,1,1,25,26],[1100,1,1,26,27]]]],[23312,23519,24733,25428,25487,25585,26062,26124,26133,26151,26303,26428,26822,27076,27620,28060,28114,28160,28248,28337,28365,28537,28801,29020,29191,29233,29290]]],["of",[1,1,[[43,1,1,0,1,[[1042,1,1,0,1]]]],[27819]]],["the",[1,1,[[42,1,1,0,1,[[1006,1,1,0,1]]]],[26493]]],["this",[1,1,[[43,1,1,0,1,[[1026,1,1,0,1]]]],[27218]]],["was",[22,22,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,4,4,1,5,[[994,1,1,1,2],[995,1,1,2,3],[996,2,2,3,5]]],[42,3,3,5,8,[[1005,1,1,5,6],[1008,1,1,6,7],[1016,1,1,7,8]]],[43,9,9,8,17,[[1024,2,2,8,10],[1026,2,2,10,12],[1030,1,1,12,13],[1031,1,1,13,14],[1038,1,1,14,15],[1041,1,1,15,16],[1044,1,1,16,17]]],[44,1,1,17,18,[[1049,1,1,17,18]]],[46,1,1,18,19,[[1085,1,1,18,19]]],[52,1,1,19,20,[[1117,1,1,19,20]]],[53,1,1,20,21,[[1119,1,1,20,21]]],[57,1,1,21,22,[[1135,1,1,21,22]]]],[24820,25917,25942,25997,26035,26465,26597,26868,27118,27128,27254,27255,27363,27427,27672,27793,27864,28032,28941,29666,29709,29997]]],["wast",[1,1,[[42,1,1,0,1,[[997,1,1,0,1]]]],[26092]]],["were",[21,21,[[40,1,1,0,1,[[958,1,1,0,1]]],[41,2,2,1,3,[[978,1,1,1,2],[995,1,1,2,3]]],[42,3,3,3,6,[[1005,1,1,3,4],[1007,1,1,4,5],[1017,1,1,5,6]]],[43,6,6,6,12,[[1028,1,1,6,7],[1033,1,1,7,8],[1036,1,1,8,9],[1037,1,1,9,10],[1039,2,2,10,12]]],[44,4,4,12,16,[[1049,1,1,12,13],[1050,3,3,13,16]]],[48,2,2,16,18,[[1098,2,2,16,18]]],[50,1,1,18,19,[[1107,1,1,18,19]]],[57,1,1,19,20,[[1137,1,1,19,20]]],[60,1,1,20,21,[[1156,1,1,20,21]]]],[24286,25149,25947,26480,26554,26909,27308,27486,27616,27660,27709,27713,28039,28053,28055,28057,29230,29234,29486,30038,30497]]]]},{"k":"G5608","v":[["bought",[1,1,[[43,1,1,0,1,[[1024,1,1,0,1]]]],[27132]]]]},{"k":"G5609","v":[["egg",[1,1,[[41,1,1,0,1,[[983,1,1,0,1]]]],[25417]]]]},{"k":"G5610","v":[["*",[108,100,[[39,23,22,0,22,[[936,1,1,0,1],[937,1,1,1,2],[938,1,1,2,3],[942,1,1,3,4],[943,1,1,4,5],[945,1,1,5,6],[946,1,1,6,7],[948,5,5,7,12],[952,4,4,12,16],[953,1,1,16,17],[954,3,3,17,20],[955,3,2,20,22]]],[40,12,10,22,32,[[962,2,1,22,23],[967,1,1,23,24],[969,2,2,24,26],[970,3,3,26,29],[971,4,3,29,32]]],[41,16,15,32,47,[[973,1,1,32,33],[974,1,1,33,34],[979,1,1,34,35],[982,1,1,35,36],[984,4,4,36,40],[986,1,1,40,41],[992,1,1,41,42],[994,3,3,42,45],[995,2,1,45,46],[996,1,1,46,47]]],[42,26,24,47,71,[[997,1,1,47,48],[998,1,1,48,49],[1000,6,5,49,54],[1001,3,3,54,57],[1003,1,1,57,58],[1004,1,1,58,59],[1007,1,1,59,60],[1008,3,2,60,62],[1009,1,1,62,63],[1012,5,5,63,68],[1013,1,1,68,69],[1015,2,2,69,71]]],[43,12,11,71,82,[[1019,1,1,71,72],[1020,1,1,72,73],[1022,1,1,73,74],[1027,4,3,74,77],[1033,2,2,77,79],[1036,1,1,79,80],[1039,1,1,80,81],[1040,1,1,81,82]]],[44,1,1,82,83,[[1058,1,1,82,83]]],[45,2,2,83,85,[[1065,1,1,83,84],[1076,1,1,84,85]]],[46,1,1,85,86,[[1084,1,1,85,86]]],[47,1,1,86,87,[[1092,1,1,86,87]]],[51,1,1,87,88,[[1112,1,1,87,88]]],[56,1,1,88,89,[[1132,1,1,88,89]]],[61,2,1,89,90,[[1160,2,1,89,90]]],[65,10,10,90,100,[[1169,2,2,90,92],[1175,1,1,92,93],[1177,1,1,93,94],[1180,2,2,94,96],[1183,1,1,96,97],[1184,3,3,97,100]]]],[23358,23401,23436,23612,23661,23718,23728,23795,23797,23798,23801,23804,23993,23999,24001,24007,24021,24094,24099,24109,24174,24175,24442,24651,24728,24749,24789,24791,24795,24851,24859,24860,24903,25011,25216,25384,25471,25498,25499,25505,25570,25798,25878,25917,25923,25979,26024,26083,26099,26162,26177,26179,26208,26209,26235,26238,26245,26358,26401,26532,26603,26607,26631,26728,26730,26747,26751,26758,26760,26839,26852,26964,26997,27066,27262,27268,27289,27501,27516,27619,27717,27757,28277,28444,28748,28924,29086,29587,29953,30568,30749,30756,30855,30885,30933,30941,30987,31003,31010,31012]]],["+",[5,4,[[40,2,1,0,1,[[962,2,1,0,1]]],[41,2,2,1,3,[[974,1,1,1,2],[994,1,1,2,3]]],[51,1,1,3,4,[[1112,1,1,3,4]]]],[24442,25011,25923,29587]]],["eventide",[1,1,[[40,1,1,0,1,[[967,1,1,0,1]]]],[24651]]],["hour",[85,79,[[39,21,20,0,20,[[936,1,1,0,1],[937,1,1,1,2],[938,1,1,2,3],[943,1,1,3,4],[945,1,1,4,5],[948,5,5,5,10],[952,4,4,10,14],[953,1,1,14,15],[954,3,3,15,18],[955,3,2,18,20]]],[40,9,8,20,28,[[969,2,2,20,22],[970,3,3,22,25],[971,4,3,25,28]]],[41,12,11,28,39,[[979,1,1,28,29],[982,1,1,29,30],[984,4,4,30,34],[992,1,1,34,35],[994,2,2,35,37],[995,2,1,37,38],[996,1,1,38,39]]],[42,21,19,39,58,[[997,1,1,39,40],[998,1,1,40,41],[1000,6,5,41,46],[1001,2,2,46,48],[1003,1,1,48,49],[1004,1,1,49,50],[1008,3,2,50,52],[1009,1,1,52,53],[1012,2,2,53,55],[1013,1,1,55,56],[1015,2,2,56,58]]],[43,10,9,58,67,[[1019,1,1,58,59],[1020,1,1,59,60],[1027,4,3,60,63],[1033,2,2,63,65],[1039,1,1,65,66],[1040,1,1,66,67]]],[45,2,2,67,69,[[1065,1,1,67,68],[1076,1,1,68,69]]],[47,1,1,69,70,[[1092,1,1,69,70]]],[65,9,9,70,79,[[1169,2,2,70,72],[1175,1,1,72,73],[1177,1,1,73,74],[1180,1,1,74,75],[1183,1,1,75,76],[1184,3,3,76,79]]]],[23358,23401,23436,23661,23718,23795,23797,23798,23801,23804,23993,23999,24001,24007,24021,24094,24099,24109,24174,24175,24728,24749,24789,24791,24795,24851,24859,24860,25216,25384,25471,25498,25499,25505,25798,25878,25917,25979,26024,26083,26099,26162,26177,26179,26208,26209,26235,26238,26358,26401,26603,26607,26631,26747,26758,26760,26839,26852,26964,26997,27262,27268,27289,27501,27516,27717,27757,28444,28748,29086,30749,30756,30855,30885,30933,30987,31003,31010,31012]]],["hours",[3,3,[[42,1,1,0,1,[[1007,1,1,0,1]]],[43,2,2,1,3,[[1022,1,1,1,2],[1036,1,1,2,3]]]],[26532,27066,27619]]],["season",[3,3,[[42,1,1,0,1,[[1001,1,1,0,1]]],[46,1,1,1,2,[[1084,1,1,1,2]]],[56,1,1,2,3,[[1132,1,1,2,3]]]],[26245,28924,29953]]],["time",[11,10,[[39,2,2,0,2,[[942,1,1,0,1],[946,1,1,1,2]]],[41,2,2,2,4,[[973,1,1,2,3],[986,1,1,3,4]]],[42,3,3,4,7,[[1012,3,3,4,7]]],[44,1,1,7,8,[[1058,1,1,7,8]]],[61,2,1,8,9,[[1160,2,1,8,9]]],[65,1,1,9,10,[[1180,1,1,9,10]]]],[23612,23728,24903,25570,26728,26730,26751,28277,30568,30941]]]]},{"k":"G5611","v":[["*",[4,4,[[39,1,1,0,1,[[951,1,1,0,1]]],[43,2,2,1,3,[[1020,2,2,1,3]]],[44,1,1,3,4,[[1055,1,1,3,4]]]],[23945,26998,27006,28203]]],["Beautiful",[2,2,[[43,2,2,0,2,[[1020,2,2,0,2]]]],[26998,27006]]],["beautiful",[2,2,[[39,1,1,0,1,[[951,1,1,0,1]]],[44,1,1,1,2,[[1055,1,1,1,2]]]],[23945,28203]]]]},{"k":"G5612","v":[["roaring",[1,1,[[59,1,1,0,1,[[1155,1,1,0,1]]]],[30473]]]]},{"k":"G5613","v":[["*",[491,433,[[39,36,30,0,30,[[929,1,1,0,1],[934,3,3,1,4],[935,2,1,4,5],[936,1,1,5,6],[938,5,2,6,8],[940,1,1,8,9],[941,1,1,9,10],[942,1,1,10,11],[943,1,1,11,12],[945,3,2,12,14],[946,3,3,14,17],[947,1,1,17,18],[948,1,1,18,19],[949,2,2,19,21],[950,2,2,21,23],[954,4,3,23,26],[955,1,1,26,27],[956,3,3,27,30]]],[40,24,23,30,53,[[957,3,2,30,32],[959,1,1,32,33],[960,4,4,33,37],[961,1,1,37,38],[962,2,2,38,40],[963,1,1,40,41],[964,2,2,41,43],[965,2,2,43,45],[966,2,2,45,47],[968,4,4,47,51],[969,1,1,51,52],[970,1,1,52,53]]],[41,54,52,53,105,[[973,3,3,53,56],[974,3,3,56,59],[975,2,2,59,61],[976,1,1,61,62],[977,1,1,62,63],[978,4,4,63,67],[979,1,1,67,68],[980,2,2,68,70],[981,1,1,70,71],[982,3,3,71,74],[983,4,4,74,78],[984,2,2,78,80],[986,1,1,80,81],[987,2,2,81,83],[988,1,1,83,84],[989,2,2,84,86],[990,2,2,86,88],[991,3,3,88,91],[992,1,1,91,92],[993,1,1,92,93],[994,7,6,93,99],[995,3,3,99,102],[996,4,3,102,105]]],[42,25,24,105,129,[[997,2,2,105,107],[998,2,2,107,109],[1000,2,2,109,111],[1002,3,3,111,114],[1003,3,2,114,116],[1004,1,1,116,117],[1007,6,6,117,123],[1011,1,1,123,124],[1014,1,1,124,125],[1015,1,1,125,126],[1016,1,1,126,127],[1017,2,2,127,129]]],[43,61,60,129,189,[[1018,2,2,129,131],[1019,1,1,131,132],[1020,2,2,132,134],[1022,2,2,134,136],[1024,3,3,136,139],[1025,3,2,139,141],[1026,1,1,141,142],[1027,6,6,142,148],[1028,3,3,148,151],[1030,5,5,151,156],[1031,1,1,156,157],[1033,3,3,157,160],[1034,5,5,160,165],[1035,1,1,165,166],[1036,3,3,166,169],[1037,4,4,169,173],[1038,3,3,173,176],[1039,3,3,176,179],[1040,3,3,179,182],[1042,2,2,182,184],[1044,3,3,184,187],[1045,2,2,187,189]]],[44,22,21,189,210,[[1046,2,2,189,191],[1048,1,1,191,192],[1049,1,1,192,193],[1050,3,3,193,196],[1051,1,1,196,197],[1053,1,1,197,198],[1054,5,4,198,202],[1055,1,1,202,203],[1056,2,2,203,205],[1057,1,1,205,206],[1058,2,2,206,208],[1060,2,2,208,210]]],[45,41,31,210,241,[[1064,6,4,210,214],[1065,6,6,214,220],[1066,2,1,220,221],[1068,10,7,221,228],[1069,1,1,228,229],[1070,7,5,229,234],[1071,2,2,234,236],[1072,1,1,236,237],[1073,1,1,237,238],[1074,3,1,238,239],[1075,1,1,239,240],[1077,1,1,240,241]]],[46,29,23,241,264,[[1079,3,1,241,242],[1080,2,2,242,244],[1082,2,2,244,246],[1083,9,5,246,251],[1084,2,2,251,253],[1086,1,1,253,254],[1087,3,3,254,257],[1088,5,5,257,262],[1090,2,2,262,264]]],[47,9,6,264,270,[[1091,1,1,264,265],[1093,2,1,265,266],[1094,4,2,266,268],[1095,1,1,268,269],[1096,1,1,269,270]]],[48,15,13,270,283,[[1098,1,1,270,271],[1099,1,1,271,272],[1101,8,7,272,279],[1102,5,4,279,283]]],[49,7,7,283,290,[[1103,2,2,283,285],[1104,5,5,285,290]]],[50,7,7,290,297,[[1108,2,2,290,292],[1109,4,4,292,296],[1110,1,1,296,297]]],[51,9,8,297,305,[[1112,6,5,297,302],[1115,3,3,302,305]]],[52,4,3,305,308,[[1117,2,2,305,307],[1118,2,1,307,308]]],[53,4,2,308,310,[[1123,4,2,308,310]]],[54,5,5,310,315,[[1125,1,1,310,311],[1126,3,3,311,314],[1127,1,1,314,315]]],[55,2,2,315,317,[[1129,2,2,315,317]]],[56,4,4,317,321,[[1132,4,4,317,321]]],[57,20,19,321,340,[[1133,1,1,321,322],[1135,6,6,322,328],[1136,1,1,328,329],[1138,1,1,329,330],[1139,1,1,330,331],[1143,3,3,331,334],[1144,4,4,334,338],[1145,3,2,338,340]]],[58,5,5,340,345,[[1146,1,1,340,341],[1147,3,3,341,344],[1150,1,1,344,345]]],[59,29,23,345,368,[[1151,4,3,345,348],[1152,10,8,348,356],[1153,4,3,356,359],[1154,8,6,359,365],[1155,3,3,365,368]]],[60,10,8,368,376,[[1156,2,2,368,370],[1157,2,2,370,372],[1158,6,4,372,376]]],[61,2,2,376,378,[[1159,1,1,376,377],[1160,1,1,377,378]]],[62,1,1,378,379,[[1164,1,1,378,379]]],[64,2,2,379,381,[[1166,2,2,379,381]]],[65,64,52,381,433,[[1167,7,5,381,386],[1168,4,3,386,389],[1169,2,2,389,391],[1170,2,2,391,393],[1171,1,1,393,394],[1172,6,5,394,399],[1174,3,3,399,402],[1175,9,6,402,408],[1176,5,4,408,412],[1178,1,1,412,413],[1179,4,3,413,416],[1180,3,2,416,418],[1181,1,1,418,419],[1182,3,3,419,422],[1183,1,1,422,423],[1184,2,2,423,425],[1185,4,2,425,427],[1186,1,1,427,428],[1187,3,3,428,431],[1188,2,2,431,433]]]],[23168,23292,23294,23311,23345,23358,23433,23442,23502,23582,23602,23661,23702,23720,23730,23731,23760,23781,23806,23852,23872,23902,23911,24073,24093,24109,24194,24198,24204,24210,24217,24237,24293,24349,24350,24354,24359,24377,24422,24441,24469,24509,24524,24541,24559,24589,24603,24698,24699,24704,24706,24751,24802,24916,24934,24937,24988,25010,25012,25029,25048,25088,25111,25150,25156,25168,25186,25207,25287,25292,25355,25366,25381,25390,25406,25407,25441,25449,25486,25517,25575,25607,25613,25621,25657,25679,25699,25705,25736,25760,25772,25816,25861,25890,25891,25895,25916,25925,25930,25949,25961,25990,25997,26023,26026,26058,26083,26104,26118,26157,26196,26269,26273,26276,26338,26374,26388,26529,26541,26543,26552,26555,26556,26705,26791,26858,26878,26906,26907,26933,26938,26964,27008,27018,27066,27083,27139,27153,27167,27208,27212,27239,27266,27270,27276,27284,27287,27297,27312,27323,27324,27380,27382,27387,27391,27395,27419,27487,27493,27498,27536,27537,27538,27545,27551,27562,27594,27606,27619,27640,27644,27646,27650,27665,27676,27691,27709,27715,27729,27745,27749,27754,27806,27810,27856,27882,27885,27903,27918,27939,27951,27998,28039,28062,28063,28065,28081,28152,28180,28182,28184,28187,28203,28211,28242,28248,28275,28279,28318,28327,28411,28415,28420,28425,28434,28440,28442,28446,28447,28451,28457,28494,28495,28504,28512,28516,28517,28518,28534,28545,28560,28561,28562,28566,28574,28582,28634,28636,28676,28711,28786,28841,28842,28846,28896,28897,28902,28906,28907,28908,28911,28930,28931,28961,28973,28980,28985,28992,29004,29005,29006,29010,29045,29050,29066,29118,29143,29145,29176,29198,29232,29256,29305,29312,29319,29326,29327,29332,29337,29342,29343,29344,29357,29369,29381,29399,29403,29406,29413,29414,29500,29514,29529,29535,29539,29540,29546,29574,29576,29577,29580,29581,29623,29625,29627,29663,29665,29693,29764,29765,29812,29830,29836,29844,29862,29897,29899,29947,29952,29954,29955,29974,29997,30000,30001,30003,30006,30010,30017,30063,30073,30181,30199,30201,30217,30219,30228,30239,30244,30258,30276,30301,30302,30305,30357,30388,30393,30398,30401,30404,30410,30411,30412,30413,30415,30424,30430,30431,30440,30456,30457,30458,30461,30462,30465,30468,30473,30477,30482,30498,30501,30512,30530,30531,30532,30538,30547,30577,30650,30679,30682,30707,30711,30712,30713,30714,30735,30741,30744,30749,30767,30769,30775,30785,30794,30804,30805,30806,30807,30828,30835,30837,30842,30843,30847,30848,30849,30857,30862,30868,30870,30871,30906,30910,30911,30919,30928,30929,30948,30957,30969,30975,30987,30999,31014,31023,31029,31046,31055,31064,31074,31081,31092]]],["+",[14,14,[[42,2,2,0,2,[[1014,1,1,0,1],[1017,1,1,1,2]]],[43,4,4,2,6,[[1034,1,1,2,3],[1035,1,1,3,4],[1036,1,1,4,5],[1042,1,1,5,6]]],[44,1,1,6,7,[[1060,1,1,6,7]]],[45,4,4,7,11,[[1068,2,2,7,9],[1070,1,1,9,10],[1072,1,1,10,11]]],[46,1,1,11,12,[[1087,1,1,11,12]]],[51,1,1,12,13,[[1112,1,1,12,13]]],[57,1,1,13,14,[[1139,1,1,13,14]]]],[26791,26907,27538,27562,27619,27806,28327,28494,28495,28545,28634,28980,29577,30073]]],["After",[1,1,[[43,1,1,0,1,[[1036,1,1,0,1]]]],[27606]]],["As",[14,14,[[40,1,1,0,1,[[957,1,1,0,1]]],[41,1,1,1,2,[[975,1,1,1,2]]],[43,1,1,2,3,[[1039,1,1,2,3]]],[44,1,1,3,4,[[1054,1,1,3,4]]],[46,2,2,4,6,[[1083,2,2,4,6]]],[47,2,2,6,8,[[1091,1,1,6,7],[1096,1,1,7,8]]],[50,1,1,8,9,[[1108,1,1,8,9]]],[57,1,1,9,10,[[1136,1,1,9,10]]],[59,3,3,10,13,[[1151,1,1,10,11],[1152,2,2,11,13]]],[60,1,1,13,14,[[1158,1,1,13,14]]]],[24217,25029,27709,28180,28907,28908,29066,29198,29500,30017,30388,30401,30415,30538]]],["How",[3,3,[[41,1,1,0,1,[[978,1,1,0,1]]],[43,1,1,1,2,[[1027,1,1,1,2]]],[44,1,1,2,3,[[1055,1,1,2,3]]]],[25150,27297,28203]]],["So",[1,1,[[57,1,1,0,1,[[1135,1,1,0,1]]]],[30006]]],["When",[6,6,[[41,1,1,0,1,[[984,1,1,0,1]]],[42,5,5,1,6,[[998,1,1,1,2],[1000,1,1,2,3],[1002,1,1,3,4],[1007,2,2,4,6]]]],[25517,26104,26157,26269,26529,26556]]],["about",[12,12,[[40,2,2,0,2,[[961,1,1,0,1],[964,1,1,1,2]]],[41,2,2,2,4,[[974,1,1,2,3],[980,1,1,3,4]]],[42,3,3,4,7,[[997,1,1,4,5],[1002,1,1,5,6],[1007,1,1,6,7]]],[43,3,3,7,10,[[1018,1,1,7,8],[1022,1,1,8,9],[1030,1,1,9,10]]],[65,2,2,10,12,[[1174,1,1,10,11],[1182,1,1,11,12]]]],[24377,24509,25010,25287,26083,26276,26541,26938,27066,27380,30828,30975]]],["after",[1,1,[[43,1,1,0,1,[[1033,1,1,0,1]]]],[27493]]],["and",[1,1,[[42,1,1,0,1,[[1015,1,1,0,1]]]],[26858]]],["are",[1,1,[[43,1,1,0,1,[[1034,1,1,0,1]]]],[27545]]],["as",[321,280,[[39,33,27,0,27,[[929,1,1,0,1],[934,2,2,1,3],[935,2,1,3,4],[936,1,1,4,5],[938,5,2,5,7],[940,1,1,7,8],[941,1,1,8,9],[942,1,1,9,10],[943,1,1,10,11],[945,3,2,11,13],[946,3,3,13,16],[947,1,1,16,17],[948,1,1,17,18],[949,1,1,18,19],[950,2,2,19,21],[954,4,3,21,24],[955,1,1,24,25],[956,2,2,25,27]]],[40,17,16,27,43,[[957,2,1,27,28],[959,1,1,28,29],[960,2,2,29,31],[962,2,2,31,33],[963,1,1,33,34],[964,1,1,34,35],[965,1,1,35,36],[966,2,2,36,38],[968,3,3,38,41],[969,1,1,41,42],[970,1,1,42,43]]],[41,30,29,43,72,[[973,2,2,43,45],[974,1,1,45,46],[975,1,1,46,47],[978,3,3,47,50],[981,1,1,50,51],[982,3,3,51,54],[983,3,3,54,57],[986,1,1,57,58],[987,2,2,58,60],[989,2,2,60,62],[990,2,2,62,64],[993,1,1,64,65],[994,6,5,65,70],[995,2,2,70,72]]],[42,5,5,72,77,[[997,1,1,72,73],[1007,2,2,73,75],[1011,1,1,75,76],[1016,1,1,76,77]]],[43,12,12,77,89,[[1019,1,1,77,78],[1024,1,1,78,79],[1025,2,2,79,81],[1027,1,1,81,82],[1028,1,1,82,83],[1030,2,2,83,85],[1033,1,1,85,86],[1034,1,1,86,87],[1039,1,1,87,88],[1040,1,1,88,89]]],[44,13,13,89,102,[[1046,1,1,89,90],[1048,1,1,90,91],[1050,3,3,91,94],[1051,1,1,94,95],[1053,1,1,95,96],[1054,2,2,96,98],[1057,1,1,98,99],[1058,2,2,99,101],[1060,1,1,101,102]]],[45,30,23,102,125,[[1064,6,4,102,106],[1065,4,4,106,110],[1066,1,1,110,111],[1068,4,3,111,114],[1069,1,1,114,115],[1070,6,4,115,119],[1071,2,2,119,121],[1073,1,1,121,122],[1074,3,1,122,123],[1075,1,1,123,124],[1077,1,1,124,125]]],[46,20,16,125,141,[[1079,3,1,125,126],[1080,2,2,126,128],[1083,7,5,128,133],[1084,1,1,133,134],[1086,1,1,134,135],[1087,1,1,135,136],[1088,4,4,136,140],[1090,1,1,140,141]]],[47,7,4,141,145,[[1093,2,1,141,142],[1094,4,2,142,144],[1095,1,1,144,145]]],[48,15,13,145,158,[[1098,1,1,145,146],[1099,1,1,146,147],[1101,8,7,147,154],[1102,5,4,154,158]]],[49,6,6,158,164,[[1103,1,1,158,159],[1104,5,5,159,164]]],[50,5,5,164,169,[[1109,4,4,164,168],[1110,1,1,168,169]]],[51,6,6,169,175,[[1112,3,3,169,172],[1115,3,3,172,175]]],[52,4,3,175,178,[[1117,2,2,175,177],[1118,2,1,177,178]]],[53,4,2,178,180,[[1123,4,2,178,180]]],[54,4,4,180,184,[[1126,3,3,180,183],[1127,1,1,183,184]]],[55,2,2,184,186,[[1129,2,2,184,186]]],[56,3,3,186,189,[[1132,3,3,186,189]]],[57,16,15,189,204,[[1133,1,1,189,190],[1135,5,5,190,195],[1138,1,1,195,196],[1143,2,2,196,198],[1144,4,4,198,202],[1145,3,2,202,204]]],[58,4,4,204,208,[[1146,1,1,204,205],[1147,3,3,205,208]]],[59,25,21,208,229,[[1151,3,2,208,210],[1152,7,7,210,217],[1153,4,3,217,220],[1154,8,6,220,226],[1155,3,3,226,229]]],[60,9,8,229,237,[[1156,2,2,229,231],[1157,2,2,231,233],[1158,5,4,233,237]]],[61,2,2,237,239,[[1159,1,1,237,238],[1160,1,1,238,239]]],[64,2,2,239,241,[[1166,2,2,239,241]]],[65,47,39,241,280,[[1167,7,5,241,246],[1168,3,2,246,248],[1169,2,2,248,250],[1170,1,1,250,251],[1171,1,1,251,252],[1172,5,4,252,256],[1175,7,6,256,262],[1176,4,4,262,266],[1178,1,1,266,267],[1179,3,2,267,269],[1180,2,1,269,270],[1182,2,2,270,272],[1183,1,1,272,273],[1184,1,1,273,274],[1185,3,2,274,276],[1186,1,1,276,277],[1187,1,1,277,278],[1188,2,2,278,280]]]],[23168,23292,23294,23345,23358,23433,23442,23502,23582,23602,23661,23702,23720,23730,23731,23760,23781,23806,23852,23902,23911,24073,24093,24109,24194,24204,24210,24237,24293,24349,24359,24422,24441,24469,24524,24541,24589,24603,24698,24704,24706,24751,24802,24916,24937,24988,25048,25156,25168,25186,25355,25366,25381,25390,25407,25441,25449,25575,25607,25613,25657,25679,25699,25705,25861,25890,25891,25895,25916,25930,25949,25961,26058,26543,26552,26705,26878,26964,27167,27208,27212,27284,27324,27387,27395,27487,27551,27729,27745,27951,27998,28062,28063,28065,28081,28152,28182,28184,28248,28275,28279,28318,28411,28415,28420,28425,28434,28440,28446,28447,28457,28504,28512,28518,28534,28560,28561,28562,28566,28574,28582,28636,28676,28711,28786,28841,28842,28846,28902,28906,28907,28908,28911,28930,28961,28973,28992,29004,29005,29010,29050,29118,29143,29145,29176,29232,29256,29305,29312,29319,29326,29327,29332,29337,29342,29343,29344,29357,29381,29399,29403,29406,29413,29414,29529,29535,29539,29540,29546,29574,29576,29581,29623,29625,29627,29663,29665,29693,29764,29765,29830,29836,29844,29862,29897,29899,29947,29954,29955,29974,29997,30000,30001,30003,30010,30063,30199,30201,30217,30219,30228,30239,30244,30258,30276,30301,30302,30305,30393,30398,30404,30410,30411,30412,30413,30415,30424,30430,30431,30440,30456,30457,30458,30461,30462,30465,30468,30473,30477,30482,30498,30501,30512,30530,30531,30532,30538,30547,30577,30679,30682,30707,30711,30712,30713,30714,30741,30744,30749,30767,30775,30785,30804,30805,30806,30807,30842,30843,30847,30848,30849,30857,30862,30868,30870,30871,30906,30910,30919,30928,30957,30969,30987,30999,31023,31029,31046,31055,31081,31092]]],["been",[2,2,[[43,2,2,0,2,[[1027,1,1,0,1],[1028,1,1,1,2]]]],[27270,27312]]],["for",[2,2,[[39,1,1,0,1,[[949,1,1,0,1]]],[59,1,1,1,2,[[1152,1,1,1,2]]]],[23872,30415]]],["how",[16,16,[[40,2,2,0,2,[[960,1,1,0,1],[968,1,1,1,2]]],[41,5,5,2,7,[[980,1,1,2,3],[994,1,1,3,4],[995,1,1,4,5],[996,2,2,5,7]]],[43,3,3,7,10,[[1027,1,1,7,8],[1028,1,1,8,9],[1037,1,1,9,10]]],[44,2,2,10,12,[[1056,2,2,10,12]]],[46,1,1,12,13,[[1084,1,1,12,13]]],[49,1,1,13,14,[[1103,1,1,13,14]]],[51,2,2,14,16,[[1112,2,2,14,16]]]],[24350,24699,25292,25925,25990,25997,26026,27287,27323,27646,28211,28242,28931,29369,29580,29581]]],["if",[1,1,[[46,1,1,0,1,[[1090,1,1,0,1]]]],[29045]]],["in",[1,1,[[57,1,1,0,1,[[1143,1,1,0,1]]]],[30181]]],["it",[1,1,[[43,1,1,0,1,[[1038,1,1,0,1]]]],[27665]]],["like",[8,8,[[39,2,2,0,2,[[934,1,1,0,1],[956,1,1,1,2]]],[40,1,1,2,3,[[960,1,1,2,3]]],[41,1,1,3,4,[[984,1,1,3,4]]],[42,1,1,4,5,[[1003,1,1,4,5]]],[43,1,1,5,6,[[1025,1,1,5,6]]],[65,2,2,6,8,[[1184,1,1,6,7],[1187,1,1,7,8]]]],[23311,24198,24354,25486,26374,27208,31014,31064]]],["of",[1,1,[[43,1,1,0,1,[[1030,1,1,0,1]]]],[27382]]],["since",[1,1,[[40,1,1,0,1,[[965,1,1,0,1]]]],[24559]]],["that",[6,6,[[41,1,1,0,1,[[988,1,1,0,1]]],[43,3,3,1,4,[[1026,1,1,1,2],[1037,1,1,2,3],[1045,1,1,3,4]]],[44,1,1,4,5,[[1046,1,1,4,5]]],[54,1,1,5,6,[[1125,1,1,5,6]]]],[25621,27239,27650,27918,27939,29812]]],["though",[15,13,[[43,4,4,0,4,[[1020,1,1,0,1],[1040,2,2,1,3],[1044,1,1,3,4]]],[44,1,1,4,5,[[1049,1,1,4,5]]],[45,6,4,5,9,[[1065,1,1,5,6],[1066,1,1,6,7],[1068,4,2,7,9]]],[46,2,2,9,11,[[1082,1,1,9,10],[1087,1,1,10,11]]],[50,1,1,11,12,[[1108,1,1,11,12]]],[62,1,1,12,13,[[1164,1,1,12,13]]]],[27008,27749,27754,27885,28039,28451,28457,28516,28517,28897,28985,29514,30650]]],["unto",[4,4,[[43,2,2,0,2,[[1020,1,1,0,1],[1024,1,1,1,2]]],[44,1,1,2,3,[[1054,1,1,2,3]]],[65,1,1,3,4,[[1168,1,1,3,4]]]],[27018,27153,28184,30735]]],["were",[20,20,[[42,2,2,0,2,[[1003,1,1,0,1],[1017,1,1,1,2]]],[43,1,1,2,3,[[1034,1,1,2,3]]],[44,1,1,3,4,[[1054,1,1,3,4]]],[45,1,1,4,5,[[1065,1,1,4,5]]],[46,1,1,5,6,[[1088,1,1,5,6]]],[56,1,1,6,7,[[1132,1,1,6,7]]],[58,1,1,7,8,[[1150,1,1,7,8]]],[65,12,12,8,20,[[1170,1,1,8,9],[1172,1,1,9,10],[1174,2,2,10,12],[1175,2,2,12,14],[1176,1,1,14,15],[1179,1,1,15,16],[1180,1,1,16,17],[1181,1,1,17,18],[1185,1,1,18,19],[1187,1,1,19,20]]]],[26338,26906,27537,28187,28442,29006,29952,30357,30769,30794,30835,30837,30847,30849,30862,30911,30929,30948,31023,31074]]],["when",[33,33,[[41,10,10,0,10,[[973,1,1,0,1],[974,1,1,1,2],[976,1,1,2,3],[977,1,1,3,4],[979,1,1,4,5],[983,1,1,5,6],[991,3,3,6,9],[992,1,1,9,10]]],[42,6,6,10,16,[[998,1,1,10,11],[1000,1,1,11,12],[1002,1,1,12,13],[1003,1,1,13,14],[1004,1,1,14,15],[1007,1,1,15,16]]],[43,17,17,16,33,[[1022,1,1,16,17],[1024,1,1,17,18],[1027,1,1,18,19],[1030,1,1,19,20],[1031,1,1,20,21],[1033,1,1,21,22],[1034,1,1,22,23],[1036,1,1,23,24],[1037,2,2,24,26],[1038,2,2,26,28],[1039,1,1,28,29],[1042,1,1,29,30],[1044,2,2,30,32],[1045,1,1,32,33]]]],[24934,25012,25088,25111,25207,25406,25736,25760,25772,25816,26118,26196,26273,26338,26388,26555,27083,27139,27266,27391,27419,27498,27536,27594,27640,27644,27676,27691,27715,27810,27856,27882,27903]]],["while",[4,3,[[41,2,1,0,1,[[996,2,1,0,1]]],[43,2,2,1,3,[[1018,1,1,1,2],[1027,1,1,2,3]]]],[26023,26933,27276]]],["wit",[1,1,[[46,1,1,0,1,[[1082,1,1,0,1]]]],[28896]]]]},{"k":"G5614","v":[["Hosanna",[6,5,[[39,3,2,0,2,[[949,3,2,0,2]]],[40,2,2,2,4,[[967,2,2,2,4]]],[42,1,1,4,5,[[1008,1,1,4,5]]]],[23835,23841,24649,24650,26593]]]]},{"k":"G5615","v":[["*",[17,17,[[39,4,4,0,4,[[948,1,1,0,1],[949,2,2,1,3],[953,1,1,3,4]]],[40,2,2,4,6,[[968,1,1,4,5],[970,1,1,5,6]]],[41,3,3,6,9,[[985,1,1,6,7],[992,1,1,7,8],[994,1,1,8,9]]],[44,1,1,9,10,[[1053,1,1,9,10]]],[45,1,1,10,11,[[1072,1,1,10,11]]],[53,4,4,11,15,[[1120,1,1,11,12],[1121,2,2,12,14],[1123,1,1,14,15]]],[55,2,2,15,17,[[1130,2,2,15,17]]]],[23797,23856,23862,24025,24694,24785,25521,25810,25884,28142,28625,29725,29739,29742,29788,29911,29914]]],["Likewise",[5,5,[[40,1,1,0,1,[[970,1,1,0,1]]],[41,1,1,1,2,[[994,1,1,1,2]]],[44,1,1,2,3,[[1053,1,1,2,3]]],[53,2,2,3,5,[[1121,1,1,3,4],[1123,1,1,4,5]]]],[24785,25884,28142,29739,29788]]],["likewise",[8,8,[[39,4,4,0,4,[[948,1,1,0,1],[949,2,2,1,3],[953,1,1,3,4]]],[40,1,1,4,5,[[968,1,1,4,5]]],[41,1,1,5,6,[[985,1,1,5,6]]],[55,2,2,6,8,[[1130,2,2,6,8]]]],[23797,23856,23862,24025,24694,25521,29911,29914]]],["manner",[3,3,[[41,1,1,0,1,[[992,1,1,0,1]]],[45,1,1,1,2,[[1072,1,1,1,2]]],[53,1,1,2,3,[[1120,1,1,2,3]]]],[25810,28625,29725]]],["so",[1,1,[[53,1,1,0,1,[[1121,1,1,0,1]]]],[29742]]]]},{"k":"G5616","v":[["*",[34,34,[[39,5,5,0,5,[[931,1,1,0,1],[937,1,1,1,2],[942,1,1,2,3],[956,2,2,3,5]]],[40,3,3,5,8,[[957,1,1,5,6],[962,1,1,6,7],[965,1,1,7,8]]],[41,10,10,8,18,[[973,1,1,8,9],[975,2,2,9,11],[981,2,2,11,13],[994,3,3,13,16],[995,1,1,16,17],[996,1,1,17,18]]],[42,5,5,18,23,[[997,1,1,18,19],[1000,1,1,19,20],[1002,1,1,20,21],[1015,2,2,21,23]]],[43,8,8,23,31,[[1019,2,2,23,25],[1021,1,1,25,26],[1022,1,1,26,27],[1023,1,1,27,28],[1026,1,1,28,29],[1027,1,1,29,30],[1036,1,1,30,31]]],[57,2,2,31,33,[[1133,1,1,31,32],[1143,1,1,32,33]]],[65,1,1,33,34,[[1167,1,1,33,34]]]],[23208,23415,23618,24198,24199,24225,24451,24564,24949,25047,25048,25315,25329,25905,25908,25923,25979,26002,26076,26162,26267,26839,26864,26952,26990,27026,27095,27116,27234,27262,27592,29975,30184,30711]]],["about",[18,18,[[39,1,1,0,1,[[942,1,1,0,1]]],[40,1,1,1,2,[[962,1,1,1,2]]],[41,7,7,2,9,[[973,1,1,2,3],[975,1,1,3,4],[981,2,2,4,6],[994,2,2,6,8],[995,1,1,8,9]]],[42,4,4,9,13,[[1000,1,1,9,10],[1002,1,1,10,11],[1015,2,2,11,13]]],[43,5,5,13,18,[[1019,1,1,13,14],[1021,1,1,14,15],[1022,1,1,15,16],[1027,1,1,16,17],[1036,1,1,17,18]]]],[23618,24451,24949,25048,25315,25329,25905,25923,25979,26162,26267,26839,26864,26990,27026,27095,27262,27592]]],["as",[8,8,[[39,3,3,0,3,[[937,1,1,0,1],[956,2,2,1,3]]],[40,1,1,3,4,[[965,1,1,3,4]]],[41,1,1,4,5,[[996,1,1,4,5]]],[43,1,1,5,6,[[1019,1,1,5,6]]],[57,2,2,6,8,[[1133,1,1,6,7],[1143,1,1,7,8]]]],[23415,24198,24199,24564,26002,26952,29975,30184]]],["been",[2,2,[[43,2,2,0,2,[[1023,1,1,0,1],[1026,1,1,1,2]]]],[27116,27234]]],["like",[5,5,[[39,1,1,0,1,[[931,1,1,0,1]]],[40,1,1,1,2,[[957,1,1,1,2]]],[41,1,1,2,3,[[975,1,1,2,3]]],[42,1,1,3,4,[[997,1,1,3,4]]],[65,1,1,4,5,[[1167,1,1,4,5]]]],[23208,24225,25047,26076,30711]]],["were",[1,1,[[41,1,1,0,1,[[994,1,1,0,1]]]],[25908]]]]},{"k":"G5617","v":[["Osee",[1,1,[[44,1,1,0,1,[[1054,1,1,0,1]]]],[28180]]]]},{"k":"G5618","v":[["*",[42,42,[[39,14,14,0,14,[[933,1,1,0,1],[934,4,4,1,5],[940,1,1,5,6],[941,1,1,6,7],[946,1,1,7,8],[948,1,1,8,9],[952,3,3,9,12],[953,2,2,12,14]]],[41,2,2,14,16,[[989,1,1,14,15],[990,1,1,15,16]]],[42,2,2,16,18,[[1001,2,2,16,18]]],[43,3,3,18,21,[[1019,1,1,18,19],[1020,1,1,19,20],[1028,1,1,20,21]]],[44,6,6,21,27,[[1050,3,3,21,24],[1051,2,2,24,26],[1056,1,1,26,27]]],[45,4,4,27,31,[[1069,1,1,27,28],[1072,1,1,28,29],[1076,1,1,29,30],[1077,1,1,30,31]]],[46,3,3,31,34,[[1078,1,1,31,32],[1085,1,1,32,33],[1086,1,1,33,34]]],[47,1,1,34,35,[[1094,1,1,34,35]]],[48,1,1,35,36,[[1101,1,1,35,36]]],[51,1,1,36,37,[[1115,1,1,36,37]]],[57,3,3,37,40,[[1136,1,1,37,38],[1139,1,1,38,39],[1141,1,1,39,40]]],[58,1,1,40,41,[[1147,1,1,40,41]]],[65,1,1,41,42,[[1176,1,1,41,42]]]],[23282,23284,23287,23289,23298,23529,23579,23744,23820,23984,23994,23995,24022,24040,25675,25699,26231,26236,26951,27013,27322,28059,28066,28068,28072,28087,28239,28532,28612,28740,28777,28807,28939,28961,29160,29328,29624,30024,30091,30130,30319,30864]]],["+",[1,1,[[43,1,1,0,1,[[1028,1,1,0,1]]]],[27322]]],["As",[1,1,[[39,1,1,0,1,[[941,1,1,0,1]]]],[23579]]],["as",[40,40,[[39,13,13,0,13,[[933,1,1,0,1],[934,4,4,1,5],[940,1,1,5,6],[946,1,1,6,7],[948,1,1,7,8],[952,3,3,8,11],[953,2,2,11,13]]],[41,2,2,13,15,[[989,1,1,13,14],[990,1,1,14,15]]],[42,2,2,15,17,[[1001,2,2,15,17]]],[43,2,2,17,19,[[1019,1,1,17,18],[1020,1,1,18,19]]],[44,6,6,19,25,[[1050,3,3,19,22],[1051,2,2,22,24],[1056,1,1,24,25]]],[45,4,4,25,29,[[1069,1,1,25,26],[1072,1,1,26,27],[1076,1,1,27,28],[1077,1,1,28,29]]],[46,3,3,29,32,[[1078,1,1,29,30],[1085,1,1,30,31],[1086,1,1,31,32]]],[47,1,1,32,33,[[1094,1,1,32,33]]],[48,1,1,33,34,[[1101,1,1,33,34]]],[51,1,1,34,35,[[1115,1,1,34,35]]],[57,3,3,35,38,[[1136,1,1,35,36],[1139,1,1,36,37],[1141,1,1,37,38]]],[58,1,1,38,39,[[1147,1,1,38,39]]],[65,1,1,39,40,[[1176,1,1,39,40]]]],[23282,23284,23287,23289,23298,23529,23744,23820,23984,23994,23995,24022,24040,25675,25699,26231,26236,26951,27013,28059,28066,28068,28072,28087,28239,28532,28612,28740,28777,28807,28939,28961,29160,29328,29624,30024,30091,30130,30319,30864]]]]},{"k":"G5619","v":[["as",[1,1,[[45,1,1,0,1,[[1076,1,1,0,1]]]],[28726]]]]},{"k":"G5620","v":[["*",[83,83,[[39,15,15,0,15,[[936,2,2,0,2],[938,1,1,2,3],[940,2,2,3,5],[941,3,3,5,8],[943,2,2,8,10],[947,1,1,10,11],[951,1,1,11,12],[952,1,1,12,13],[955,2,2,13,15]]],[40,13,13,15,28,[[957,2,2,15,17],[958,3,3,17,20],[959,2,2,20,22],[960,3,3,22,25],[965,1,1,25,26],[966,1,1,26,27],[971,1,1,27,28]]],[41,3,3,28,31,[[977,1,1,28,29],[981,1,1,29,30],[984,1,1,30,31]]],[42,1,1,31,32,[[999,1,1,31,32]]],[43,8,8,32,40,[[1018,1,1,32,33],[1022,1,1,33,34],[1031,1,1,34,35],[1032,1,1,35,36],[1033,1,1,36,37],[1036,3,3,37,40]]],[44,5,5,40,45,[[1052,3,3,40,43],[1058,1,1,43,44],[1060,1,1,44,45]]],[45,14,14,45,59,[[1062,1,1,45,46],[1064,2,2,46,48],[1065,1,1,48,49],[1066,2,2,49,51],[1068,1,1,51,52],[1071,1,1,52,53],[1072,2,2,53,55],[1074,1,1,55,56],[1075,2,2,56,58],[1076,1,1,58,59]]],[46,7,7,59,66,[[1078,1,1,59,60],[1079,1,1,60,61],[1080,1,1,61,62],[1081,1,1,62,63],[1082,2,2,63,65],[1084,1,1,65,66]]],[47,5,5,66,71,[[1092,1,1,66,67],[1093,2,2,67,69],[1094,2,2,69,71]]],[49,3,3,71,74,[[1103,1,1,71,72],[1104,1,1,72,73],[1106,1,1,73,74]]],[51,3,3,74,77,[[1111,2,2,74,76],[1114,1,1,76,77]]],[52,2,2,77,79,[[1116,1,1,77,78],[1117,1,1,78,79]]],[57,1,1,79,80,[[1145,1,1,79,80]]],[58,1,1,80,81,[[1146,1,1,80,81]]],[59,2,2,81,83,[[1151,1,1,81,82],[1154,1,1,82,83]]]],[23369,23373,23418,23501,23511,23541,23571,23593,23664,23666,23768,23949,23981,24130,24143,24242,24260,24262,24272,24288,24298,24308,24324,24355,24360,24564,24596,24831,25114,25353,25460,26136,26942,27074,27415,27481,27509,27595,27597,27601,28095,28097,28103,28268,28322,28370,28417,28431,28438,28455,28462,28525,28579,28627,28633,28667,28700,28717,28776,28808,28831,28848,28871,28893,28894,28923,29094,29111,29126,29138,29147,29374,29403,29443,29567,29568,29621,29653,29665,30247,30285,30395,30465]]],["+",[4,4,[[43,1,1,0,1,[[1036,1,1,0,1]]],[44,1,1,1,2,[[1058,1,1,1,2]]],[45,1,1,2,3,[[1068,1,1,2,3]]],[46,1,1,3,4,[[1081,1,1,3,4]]]],[27597,28268,28525,28871]]],["Therefore",[7,7,[[40,1,1,0,1,[[958,1,1,0,1]]],[45,4,4,1,5,[[1064,1,1,1,2],[1065,1,1,2,3],[1066,1,1,3,4],[1076,1,1,4,5]]],[46,1,1,5,6,[[1082,1,1,5,6]]],[49,1,1,6,7,[[1106,1,1,6,7]]]],[24288,28431,28438,28462,28776,28894,29443]]],["Wherefore",[17,17,[[39,3,3,0,3,[[940,1,1,0,1],[947,1,1,1,2],[951,1,1,2,3]]],[44,2,2,3,5,[[1052,2,2,3,5]]],[45,5,5,5,10,[[1071,1,1,5,6],[1072,2,2,6,8],[1075,2,2,8,10]]],[46,1,1,10,11,[[1082,1,1,10,11]]],[47,2,2,11,13,[[1093,1,1,11,12],[1094,1,1,12,13]]],[49,1,1,13,14,[[1104,1,1,13,14]]],[51,1,1,14,15,[[1114,1,1,14,15]]],[58,1,1,15,16,[[1146,1,1,15,16]]],[59,1,1,16,17,[[1154,1,1,16,17]]]],[23501,23768,23949,28095,28103,28579,28627,28633,28700,28717,28893,29126,29138,29403,29621,30285,30465]]],["as",[2,2,[[39,1,1,0,1,[[943,1,1,0,1]]],[43,1,1,1,2,[[1018,1,1,1,2]]]],[23666,26942]]],["insomuch",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24143]]],["that",[45,45,[[39,8,8,0,8,[[936,2,2,0,2],[940,1,1,2,3],[941,3,3,3,6],[943,1,1,6,7],[952,1,1,7,8]]],[40,11,11,8,19,[[957,2,2,8,10],[958,2,2,10,12],[959,2,2,12,14],[960,3,3,14,17],[965,1,1,17,18],[971,1,1,18,19]]],[41,2,2,19,21,[[977,1,1,19,20],[984,1,1,20,21]]],[42,1,1,21,22,[[999,1,1,21,22]]],[43,6,6,22,28,[[1022,1,1,22,23],[1031,1,1,23,24],[1032,1,1,24,25],[1033,1,1,25,26],[1036,2,2,26,28]]],[44,2,2,28,30,[[1052,1,1,28,29],[1060,1,1,29,30]]],[45,3,3,30,33,[[1062,1,1,30,31],[1066,1,1,31,32],[1074,1,1,32,33]]],[46,4,4,33,37,[[1078,1,1,33,34],[1079,1,1,34,35],[1080,1,1,35,36],[1084,1,1,36,37]]],[47,1,1,37,38,[[1092,1,1,37,38]]],[49,1,1,38,39,[[1103,1,1,38,39]]],[51,2,2,39,41,[[1111,2,2,39,41]]],[52,2,2,41,43,[[1116,1,1,41,42],[1117,1,1,42,43]]],[57,1,1,43,44,[[1145,1,1,43,44]]],[59,1,1,44,45,[[1151,1,1,44,45]]]],[23369,23373,23511,23541,23571,23593,23664,23981,24242,24260,24262,24272,24298,24308,24324,24355,24360,24564,24831,25114,25460,26136,27074,27415,27481,27509,27595,27601,28097,28322,28370,28455,28667,28808,28831,28848,28923,29094,29374,29567,29568,29653,29665,30247,30395]]],["then",[3,3,[[40,1,1,0,1,[[966,1,1,0,1]]],[45,1,1,1,2,[[1064,1,1,1,2]]],[47,1,1,2,3,[[1093,1,1,2,3]]]],[24596,28417,29111]]],["therefore",[1,1,[[47,1,1,0,1,[[1094,1,1,0,1]]]],[29147]]],["to",[3,3,[[39,2,2,0,2,[[938,1,1,0,1],[955,1,1,1,2]]],[41,1,1,2,3,[[981,1,1,2,3]]]],[23418,24130,25353]]]]},{"k":"G5621","v":[["*",[5,5,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,2,2,3,5,[[1014,2,2,3,5]]]],[24105,24801,25915,26795,26811]]],["+",[1,1,[[42,1,1,0,1,[[1014,1,1,0,1]]]],[26795]]],["ear",[4,4,[[39,1,1,0,1,[[954,1,1,0,1]]],[40,1,1,1,2,[[970,1,1,1,2]]],[41,1,1,2,3,[[994,1,1,2,3]]],[42,1,1,3,4,[[1014,1,1,3,4]]]],[24105,24801,25915,26811]]]]},{"k":"G5622","v":[["*",[2,2,[[44,1,1,0,1,[[1048,1,1,0,1]]],[64,1,1,1,2,[[1166,1,1,1,2]]]],[27992,30688]]],["advantage",[1,1,[[64,1,1,0,1,[[1166,1,1,0,1]]]],[30688]]],["profit",[1,1,[[44,1,1,0,1,[[1048,1,1,0,1]]]],[27992]]]]},{"k":"G5623","v":[["*",[15,15,[[39,3,3,0,3,[[943,1,1,0,1],[944,1,1,1,2],[955,1,1,2,3]]],[40,3,3,3,6,[[961,1,1,3,4],[963,1,1,4,5],[964,1,1,5,6]]],[41,1,1,6,7,[[981,1,1,6,7]]],[42,2,2,7,9,[[1002,1,1,7,8],[1008,1,1,8,9]]],[44,1,1,9,10,[[1047,1,1,9,10]]],[45,2,2,10,12,[[1074,1,1,10,11],[1075,1,1,11,12]]],[47,1,1,12,13,[[1095,1,1,12,13]]],[57,2,2,13,15,[[1136,1,1,13,14],[1145,1,1,14,15]]]],[23638,23698,24153,24390,24474,24536,25326,26320,26599,27987,28668,28684,29164,30016,30250]]],["+",[1,1,[[42,1,1,0,1,[[1008,1,1,0,1]]]],[26599]]],["advantaged",[1,1,[[41,1,1,0,1,[[981,1,1,0,1]]]],[25326]]],["bettered",[1,1,[[40,1,1,0,1,[[961,1,1,0,1]]]],[24390]]],["prevail",[1,1,[[39,1,1,0,1,[[955,1,1,0,1]]]],[24153]]],["profit",[4,4,[[40,1,1,0,1,[[964,1,1,0,1]]],[45,1,1,1,2,[[1075,1,1,1,2]]],[47,1,1,2,3,[[1095,1,1,2,3]]],[57,1,1,3,4,[[1136,1,1,3,4]]]],[24536,28684,29164,30016]]],["profited",[4,4,[[39,2,2,0,2,[[943,1,1,0,1],[944,1,1,1,2]]],[40,1,1,2,3,[[963,1,1,2,3]]],[57,1,1,3,4,[[1145,1,1,3,4]]]],[23638,23698,24474,30250]]],["profiteth",[3,3,[[42,1,1,0,1,[[1002,1,1,0,1]]],[44,1,1,1,2,[[1047,1,1,1,2]]],[45,1,1,2,3,[[1074,1,1,2,3]]]],[26320,27987,28668]]]]},{"k":"G5624","v":[["*",[4,3,[[53,2,1,0,1,[[1122,2,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]],[55,1,1,2,3,[[1131,1,1,2,3]]]],[29755,29869,29931]]],["+",[1,1,[[53,1,1,0,1,[[1122,1,1,0,1]]]],[29755]]],["profitable",[3,3,[[53,1,1,0,1,[[1122,1,1,0,1]]],[54,1,1,1,2,[[1127,1,1,1,2]]],[55,1,1,2,3,[[1131,1,1,2,3]]]],[29755,29869,29931]]]]}]} diff --git a/sw.js b/sw.js index 4b2c556..edf37ac 100644 --- a/sw.js +++ b/sw.js @@ -2,7 +2,7 @@ let appPrefix = 'kjs'; let appCaches = [ { - name: 'kjs-core-20220414.01', + name: 'kjs-core-20220807.01', urls: [ './', './bundle.js', @@ -37,7 +37,7 @@ let appCaches = [ ] }, { - name: 'kjs-help-20220414.01', + name: 'kjs-help-20220807.01', urls: [ './help/bookmark.html', './help/help.html', @@ -51,7 +51,7 @@ let appCaches = [ ] }, { - name: 'kjs-json-20220221.01', + name: 'kjs-json-20220807.01', urls: [ './json/strong.json', './json/tome.kjv.json'